commit ea4bcfbbeb2d02715616c7efebbd912b2e506a75 Author: roman Date: Tue Dec 30 14:03:14 2025 +0100 Correction texture diamond shard ore diff --git a/CONFIG_INTEGRATION_GUIDE.md b/CONFIG_INTEGRATION_GUIDE.md new file mode 100644 index 000000000..26d7f8f1e --- /dev/null +++ b/CONFIG_INTEGRATION_GUIDE.md @@ -0,0 +1,158 @@ +# Guide d'IntĂ©gration de la Configuration + +## 📋 Vue d'Ensemble + +Le systĂšme de configuration est maintenant en place. Voici ce qui a Ă©tĂ© implĂ©mentĂ© : + +## ✅ DĂ©jĂ  Fonctionnel + +### 1. Stats des Outils (Shard Diamond) +Les outils utilisent **dĂ©jĂ ** les valeurs de configuration ! + +Fichier : `src/main/java/net/mcreator/customoregen/item/Sharddiamond*Item.java` + +```java +// La durabilitĂ© est lue depuis la configuration +public int getUses() { + return ModConfigs.TOOL_STATS.shardDiamondPickaxeDurability.get(); +} +``` + +**Pour tester :** Modifiez `pickaxeDurability` dans `config/custom_ore_gen-common.toml` aprĂšs le premier lancement. + +### 2. ProcĂ©dure de Drops Configurables +Une procĂ©dure Java a Ă©tĂ© créée pour gĂ©rer les drops configurables. + +Fichier : `src/main/java/net/mcreator/customoregen/procedures/ConfigurableOreDropsProcedure.java` + +## 🔧 IntĂ©gration Restante (Requiert MCreator) + +Pour que les drops de minerais utilisent la configuration, vous devez lier la procĂ©dure aux blocs via MCreator. + +### Étape 1 : Ouvrir MCreator + +Ouvrez votre workspace MCreator pour ce mod. + +### Étape 2 : CrĂ©er une ProcĂ©dure + +1. Allez dans **Workspace procedures** +2. Cliquez sur **Add new procedure** +3. Nommez-la : `configurable_ore_drops` +4. Dans la procĂ©dure, ajoutez un appel Ă  la procĂ©dure Java : + +**Dans MCreator, utilisez les blocs suivants :** +- **Event trigger**: `On block destroyed by player/explosion` +- **Condition**: `Has ore data` → vĂ©rifiez si c'est un de vos minerais +- **Action**: Call custom procedure → `ConfigurableOreDropsProcedure` + +### Étape 3 : Lier la ProcĂ©dure aux Blocs + +Pour chaque minerai que vous voulez rendre configurable : + +1. Ouvrez le bloc dans MCreator (ex: `Shard Diamond Ore`) +2. Allez dans l'onglet **Triggers** +3. Pour **"When block destroyed by player"** ou **"After block destroyed by explosion"** +4. Ajoutez la procĂ©dure avec le paramĂštre `oreType` : + - Pour Shard Diamond Ore : `oreType = "shard_diamond"` + - Pour Concentrated Diamond Ore : `oreType = "concentrated_diamond"` + - Pour Ash Coal Ore : `oreType = "ash_coal"` + - Etc. + +### Étape 4 : Rebuild le Mod + +AprĂšs avoir modifiĂ© les blocs dans MCreator : +1. Cliquez sur **Build** → **Build mod** +2. Le code sera rĂ©gĂ©nĂ©rĂ© avec vos liaisons + +## 📊 Configuration des Features Toggles + +Les options d'activation/dĂ©sactivation des fonctionnalitĂ©s sont dĂ©finies dans `ModConfigs.java` : + +```java +enableShardDiamondTools = true +enableShardDiamondOre = true +enableConcentratedOres = true +etc. +``` + +Pour implĂ©menter ces toggles, vous devrez ajouter des conditions dans : +- L'enregistrement des blocs (pour la gĂ©nĂ©ration) +- L'enregistrement des items (pour les outils) +- Les recettes de craft + +### Exemple d'ImplĂ©mentation des Toggles + +Dans `CustomOreGenModBlocks.java` ou votre classe d'enregistrement : + +```java +// Au lieu d'enregistrer directement : +// SHARDDIAMONDBLOCKORE.register(bus); + +// Faites : +if (ModConfigs.FEATURES.enableShardDiamondOre.get()) { + SHARDDIAMONDBLOCKORE.register(bus); +} +``` + +## 🎯 Ce Que Vous Poulez Faire Maintenant + +### Option 1 : Utiliser MCreator pour IntĂ©grer les Drops +- Ouvrez MCreator +- Liez la procĂ©dure `ConfigurableOreDropsProcedure` Ă  vos blocs +- Rebuild + +### Option 2 : Modifier Directement les Blocs Java +Pour chaque bloc de minerai, modifiez la mĂ©thode `onDestroy` pour appeler la procĂ©dure. + +Exemple pour `SharddiamondblockoreBlock.java` : + +```java +@Override +public void onDestroy(Level world, BlockPos pos, BlockState state) { + Entity entity = // obtenir l'entitĂ© qui mine + ConfigurableOreDropsProcedure.execute( + world, + pos.getX(), + pos.getY(), + pos.getZ(), + entity, + "shard_diamond" + ); +} +``` + +### Option 3 : Continuer avec les Loot Tables Actuelles +Les loot tables JSON actuelles continueront de fonctionner. La configuration des drops n'affectera le jeu que si vous intĂ©grez la procĂ©dure. + +## 📝 RĂ©sumĂ© des Fichiers ModifiĂ©s + +| Fichier | Statut | Description | +|---------|--------|-------------| +| `ModConfigs.java` | ✅ Créé | Classe de configuration principale | +| `ConfigHelper.java` | ✅ Créé | Classe utilitaire pour accĂ©der aux configs | +| `ConfigurableOreDropsProcedure.java` | ✅ Créé | ProcĂ©dure pour les drops configurables | +| `SharddiamondpickaxeItem.java` | ✅ ModifiĂ© | Utilise les configs | +| `SharddiamondshovelItem.java` | ✅ ModifiĂ© | Utilise les configs | +| `SharddiamondaxeItem.java` | ✅ ModifiĂ© | Utilise les configs (et bug de rĂ©paration corrigĂ©) | +| `CustomOreGenMod.java` | ✅ ModifiĂ© | Enregistre la configuration | +| `custom_ore_gen-common.toml` | ✅ Créé | Fichier de config par dĂ©faut | + +## 🚀 Test + +Pour tester que les outils utilisent bien les configs : + +1. Lancez le mod une fois pour gĂ©nĂ©rer le fichier de config +2. Fermez le jeu +3. Ouvrez `config/custom_ore_gen-common.toml` +4. Modifiez `pickaxeDurability = 500` +5. Relancez le jeu +6. Craft une pioche en Shard Diamond +7. VĂ©rifiez qu'elle a bien 500 de durabilitĂ© (F3 + H pour voir les stats avancĂ©es) + +## 💡 Besoin d'Aide ? + +Si vous avez besoin d'aide pour intĂ©grer la configuration via MCreator, n'hĂ©sitez pas Ă  demander ! + +--- + +**Note** : Le systĂšme de configuration est en place et fonctionne pour les outils. Pour les drops et la gĂ©nĂ©ration des minerais, l'intĂ©gration dĂ©pend de comment vous voulez procĂ©der (via MCreator ou modification directe du code). diff --git a/README.md b/README.md new file mode 100644 index 000000000..781373ba3 --- /dev/null +++ b/README.md @@ -0,0 +1,230 @@ +# Custom Ore Gem Mod + +## Description + +Custom Ore Gem est un mod Minecraft dĂ©veloppĂ© avec MCreator pour Forge 1.20.1. Ce mod enrichit l'expĂ©rience miniĂšre du jeu en ajoutant une variĂ©tĂ© de nouveaux minerais, de nouveaux objets et d'outils personnalisĂ©s, offrant aux joueurs plus de possibilitĂ©s et une progression plus intĂ©ressante. + +## Informations Techniques + +- **Version de Minecraft** : 1.20.1 +- **Mod Loader** : Forge (version 47.3.0) +- **Version de Java** : Java 17 +- **Mod ID** : `custom_ore_gen` +- **Outil de dĂ©veloppement** : MCreator + +## FonctionnalitĂ©s Principales + +### Nouveaux Minerais (23 au total) + +Le mod ajoute plusieurs variantes de minerais personnalisĂ©s : + +#### Variantes de Diamant +- **Shard Diamond Ore** : Un minerai de diamant qui droppe des Ă©clats de diamant (tous biomes) +- **Deepslate Shard Diamond Ore** : Version deepslate du minerai d'Ă©clats de diamant +- **Concentrated Diamond Ore** : Un minerai de diamant plus concentrĂ© (zones froides uniquement) + +#### Variantes d'Or +- **Impure Gold Ore** (normal & deepslate) : Un minerai d'or impur +- **Pure Golden Ore** (normal & deepslate) : Un minerai d'or pur de haute qualitĂ© (zones chaudes uniquement) + +#### Variantes de Charbon +- **Ash Coal Ore** : Un type de charbon spĂ©cial +- **Concentrated Coal Ore** : Charbon plus concentrĂ© (biomes tempĂ©rĂ©s uniquement) + +#### Variantes de Fer +- **Impure Iron Ore** (normal & deepslate) : Un minerai de fer impur (biomes tempĂ©rĂ©s) + +#### Variantes d'Émeraude +- **High Emerald Ore** : Émeraude de haute qualitĂ© (montagnes uniquement) +- **Lower Emerald Ore** : Émeraude de basse qualitĂ© (biomes trĂšs rares uniquement) + +#### Minerais Additionnels +- Iron Ore (normal & deepslate) +- Redstone Ore (normal & deepslate) +- Lapis Lazuli Ore (normal & deepslate) +- Copper Ore (variantes haute et basse) + +### Nouveaux Objets + +#### Diamond Shard (Éclat de Diamant) +- **Description** : Un Ă©clat de diamant avec des Ă©tincelles +- **Utilisation** : + - Peut ĂȘtre craftĂ© en diamant complet (9 Ă©clats = 1 diamant) + - Permet de crĂ©er des outils en Ă©clats de diamant +- **RaretĂ©** : Plus commun que le diamant complet, mais nĂ©cessite d'ĂȘtre accumulĂ© + +#### Autres Objets +- **Ash Coal** : Charbon spĂ©cial dropĂ© par l'Ash Coal Ore + +### Outils en Diamond Shard + +Le mod introduit une nouvelle catĂ©gorie d'outils situĂ©e entre le fer et le diamant : + +#### Pioche en Éclat de Diamant (Shard Diamond Pickaxe) +- **DurabilitĂ©** : 200 utilisations +- **Vitesse de minage** : 7f +- **EnchantabilitĂ©** : 9 niveaux +- **RĂ©paration** : Utilise des Diamond Shards + +#### Pelle en Éclat de Diamant (Shard Diamond Shovel) +- **DurabilitĂ©** : 200 utilisations +- **Vitesse de minage** : 4f +- **EnchantabilitĂ©** : 9 niveaux + +#### Hache en Éclat de Diamant (Shard Diamond Axe) +- **DurabilitĂ©** : 200 utilisations +- **Vitesse de minage** : 7f +- **EnchantabilitĂ©** : 9 niveaux +- **DĂ©gĂąts** : ÉquilibrĂ© pour le combat + +## 📍 Distribution des Minerais par Biomes + +Le mod utilise une classification logique des biomes pour la gĂ©nĂ©ration des minerais : + +### đŸ”ïž mountain_biomes (7 biomes) +**UtilisĂ© par** : High Emerald Ore + +Biomes de montagne et hauts plateaux : +- windswept_hills, windswept_gravelly_hills, snowy_slopes +- frozen_peaks, jagged_peaks, stony_peaks +- meadow + +### ❄ cold_biomes (16 biomes) +**UtilisĂ© par** : Concentrated Diamond, Lapis, Redstone (deepslate) + +Zones froides et montagnes enneigĂ©es : +- snowy_slopes, snowy_beach, snowy_plains, snowy_taiga, ice_spikes +- old_growth_pine_taiga, old_growth_spruce_taiga, taiga +- cold_ocean, deep_cold_ocean +- frozen_peaks, jagged_peaks, stony_peaks +- dripstone_caves, deep_dark + +### đŸ”„ hot_biomes (15 biomes) +**UtilisĂ© par** : Pure Golden, Redstone, Copper (toutes variantes) + +Zones chaudes et tropicales : +- desert, badlands, eroded_badlands, wooded_badlands +- deep_lukewarm_ocean, lukewarm_ocean +- mangrove_swamp, warm_ocean +- bamboo_jungle, jungle, sparse_jungle +- deep_dark + +### đŸŒ€ïž tempered_biomes (13 biomes) +**UtilisĂ© par** : Concentrated Coal, Iron (toutes variantes) + +Biomes tempĂ©rĂ©s de surface et souterrains : +- birch_forest, dark_forest, flower_forest, forest +- old_growth_birch_forest, windswept_forest, swamp +- cherry_grove, windswept_gravelly_hills +- deep_ocean, ocean +- lush_caves, deep_dark + +### ⭐ rare_biomes (2 biomes) +**UtilisĂ© par** : Lower Emerald Ore + +Biomes trĂšs rares : +- mushroom_fields +- ice_spikes + +### đŸ”” forge:any +**UtilisĂ© par** : Shard Diamond Ore (toutes les variantes) + +- **TOUS les biomes** + +## MĂ©caniques de Jeu + +### GĂ©nĂ©ration du Monde + +- **Distribution des minerais** : Utilise le systĂšme de gĂ©nĂ©ration de minerais de Minecraft avec des tags de biomes personnalisĂ©s +- **Profondeur** : ConfigurĂ© pour la gĂ©nĂ©ration souterraine +- **Taille des filons** : Varie selon le type de minerai + +### MĂ©caniques de Drop + +- **ExpĂ©rience** : Tous les minerais personnalisĂ©s dropent des orbes d'expĂ©rience lorsqu'ils sont minĂ©s +- **Silk Touch** : Les minerais peuvent ĂȘtre minĂ©s avec l'enchantement Silk Touch pour obtenir le bloc entier +- **Fortune** : L'enchantement Fortune est supportĂ© pour augmenter les drops + +### SystĂšme de Progression + +Le mod introduit une progression intĂ©ressante : + +1. **DĂ©but de jeu** : Utilisation des outils en fer, exploration des surface pour Shard Diamond Ore +2. **Milieu de jeu** : Acquisition des Diamond Shards et craft des outils en Diamond Shard +3. **Fin de jeu** : Exploration des zones froides pour Concentrated Diamond, accumulation de diamants complets + +## Recettes de Craft + +### Diamant Ă  partir d'Éclats +``` +[Éclat] [Éclat] [Éclat] +[Éclat] [Éclat] [Éclat] +[Éclat] [Éclat] [Éclat] + = 1 Diamant +``` + +### Outils en Diamond Shard +Les recettes suivent le pattern standard des outils Minecraft : +- **Pioche** : 2 Diamond Shards + 3 bĂątons +- **Pelle** : 1 Diamond Shard + 2 bĂątons +- **Hache** : 3 Diamond Shards + 2 bĂątons + +## IntĂ©gration + +### Mode CrĂ©atif +- **Onglet IngrĂ©dients** : Diamond Shards et blocs de minerais +- **Onglet Outils** : Outils en Diamond Shard +- **Onglets Standard Minecraft** : IntĂ©gration native dans les onglets vanilla + +### Langue +Le mod inclut des fichiers de localisation en anglais et français avec des noms descriptifs pour tous les blocs et objets. + +## Configuration + +Le mod inclut un systĂšme de configuration qui permet aux utilisateurs et aux pack makers de personnaliser certains aspects du mod. + +> **Note** : Les stats des outils (durabilitĂ©, vitesse) ne sont pas configurables car les items sont créés avant le chargement de la configuration par Forge. + +### Emplacement du Fichier de Configuration + +AprĂšs le premier lancement du mod, un fichier de configuration est gĂ©nĂ©rĂ© Ă  : +``` +config/custom_ore_gen-common.toml +``` + +### Options de Configuration + +#### đŸȘš GĂ©nĂ©ration des Minerais +ContrĂŽlez oĂč et comment les minerais se gĂ©nĂšrent + +#### 💎 Drops des Minerais +ContrĂŽlez ce que les minerais dropent + +#### đŸŽ›ïž Activation des FonctionnalitĂ©s +Activez ou dĂ©sactivez facilement les fonctionnalitĂ©s du mod + +## Installation + +1. Assurez-vous d'avoir Minecraft 1.20.1 installĂ© avec Forge 47.3.0+ +2. Placez le fichier .jar du mod dans le dossier `mods` de votre installation Minecraft +3. Lancez le jeu avec le profil Forge + +## Philosophie du Mod + +Custom Ore Gem est conçu pour : +- **Augmenter la variĂ©tĂ© des minerais** avec de nouvelles variantes et raretĂ©s +- **Introduire un systĂšme de progression** Ă  travers les Diamond Shards +- **Équilibrer la collecte de ressources** avec des rĂ©compenses d'expĂ©rience +- **Fournir des options d'outils personnalisĂ©s** entre les niveaux fer et diamant +- **Enrichir le gameplay** avec une distribution logique des minerais par biome + +## CrĂ©dits + +- DĂ©veloppĂ© avec MCreator +- Framework Minecraft Forge 1.20.1 + +--- + +**Version** : 1.0.0 +**Pour Minecraft** : 1.20.1 +**License** : Consultez le fichier license.txt pour plus d'informations diff --git a/build.gradle b/build.gradle new file mode 100644 index 000000000..f4a39f21e --- /dev/null +++ b/build.gradle @@ -0,0 +1,54 @@ +plugins { + id 'eclipse' + id 'net.minecraftforge.gradle' version '[6.0.16,6.2)' +} + +version = '1.0' +group = 'com.yourname.modid' +archivesBaseName = 'modid' + +java.toolchain.languageVersion = JavaLanguageVersion.of(17) + +minecraft { + mappings channel: 'official', version: '1.20.1' + + accessTransformer = file('src/main/resources/META-INF/accesstransformer.cfg') + + copyIdeResources = true + + runs { + client { + def mcreatorJvmOptions = System.getenv('MCREATOR_JVM_OPTIONS') + if (mcreatorJvmOptions) { + jvmArgs += mcreatorJvmOptions.split("\\s+").findAll { it.trim() }.toList() + } + } + + server { + } + + configureEach { + workingDirectory project.file('run') + + property 'forge.logging.markers', 'REGISTRIES' + property 'forge.logging.console.level', 'debug' + + mods { + examplemod { + source sourceSets.main + } + } + } + } +} + +dependencies { + minecraft 'net.minecraftforge:forge:1.20.1-47.3.0' +} + +tasks.withType(JavaCompile).configureEach { + options.encoding = 'UTF-8' // Use the UTF-8 charset for Java compilation +} + +apply from: 'mcreator.gradle' + diff --git a/build/_applyBinpatches_2/log.txt b/build/_applyBinpatches_2/log.txt new file mode 100644 index 000000000..8bbd9a02e --- /dev/null +++ b/build/_applyBinpatches_2/log.txt @@ -0,0 +1,4261 @@ +Java Launcher: C:\Users\polar\.mcreator\gradle\jdks\eclipse_adoptium-17-amd64-windows\jdk-17.0.17+10\bin\java.exe +Arguments: '--clean, C:\Users\polar\.mcreator\gradle\caches\forge_gradle\mcp_repo\net\minecraft\joined\1.20.1-20230612.114412\joined-1.20.1-20230612.114412-srg.jar, --output, C:\Users\polar\.mcreator\gradle\caches\forge_gradle\minecraft_user_repo\net\minecraftforge\forge\1.20.1-47.3.0\forge-1.20.1-47.3.0-binpatched.jar, --apply, C:\Users\polar\.mcreator\gradle\caches\forge_gradle\minecraft_user_repo\net\minecraftforge\forge\1.20.1-47.3.0\forge-1.20.1-47.3.0-binpatches.lzma' +Classpath: + - C:\Users\polar\.mcreator\gradle\caches\forge_gradle\maven_downloader\net\minecraftforge\binarypatcher\1.1.1\binarypatcher-1.1.1-fatjar.jar +Working directory: C:\Users\polar\Nextcloud\DocumentsRoman\mods_mc\custom_ore_gem\build\_applyBinpatches_2 +Main class: net.minecraftforge.binarypatcher.ConsoleTool +==================================== +Applying: + Clean: C:\Users\polar\.mcreator\gradle\caches\forge_gradle\mcp_repo\net\minecraft\joined\1.20.1-20230612.114412\joined-1.20.1-20230612.114412-srg.jar + Output: C:\Users\polar\.mcreator\gradle\caches\forge_gradle\minecraft_user_repo\net\minecraftforge\forge\1.20.1-47.3.0\forge-1.20.1-47.3.0-binpatched.jar + KeepData: false + Unpatched: false + Pack200: false + Legacy: false +Loading patches file: C:\Users\polar\.mcreator\gradle\caches\forge_gradle\minecraft_user_repo\net\minecraftforge\forge\1.20.1-47.3.0\forge-1.20.1-47.3.0-binpatches.lzma + Reading patch com.mojang.blaze3d.pipeline.RenderTarget.binpatch + Checksum: 151eb55a Exists: true + Reading patch com.mojang.blaze3d.platform.GlStateManager$BlendState.binpatch + Checksum: 3bc8e9aa Exists: true + Reading patch com.mojang.blaze3d.platform.GlStateManager$BooleanState.binpatch + Checksum: c4950296 Exists: true + Reading patch com.mojang.blaze3d.platform.GlStateManager$ColorLogicState.binpatch + Checksum: 93b2e343 Exists: true + Reading patch com.mojang.blaze3d.platform.GlStateManager$ColorMask.binpatch + Checksum: 6859aff1 Exists: true + Reading patch com.mojang.blaze3d.platform.GlStateManager$CullState.binpatch + Checksum: bcf5db39 Exists: true + Reading patch com.mojang.blaze3d.platform.GlStateManager$DepthState.binpatch + Checksum: a0ce153 Exists: true + Reading patch com.mojang.blaze3d.platform.GlStateManager$DestFactor.binpatch + Checksum: fe62320f Exists: true + Reading patch com.mojang.blaze3d.platform.GlStateManager$LogicOp.binpatch + Checksum: 816908f1 Exists: true + Reading patch com.mojang.blaze3d.platform.GlStateManager$PolygonOffsetState.binpatch + Checksum: ad1dee6a Exists: true + Reading patch com.mojang.blaze3d.platform.GlStateManager$ScissorState.binpatch + Checksum: 66e4da99 Exists: true + Reading patch com.mojang.blaze3d.platform.GlStateManager$SourceFactor.binpatch + Checksum: 19cd45a0 Exists: true + Reading patch com.mojang.blaze3d.platform.GlStateManager$StencilFunc.binpatch + Checksum: 3cfac1f Exists: true + Reading patch com.mojang.blaze3d.platform.GlStateManager$StencilState.binpatch + Checksum: 93f2ea53 Exists: true + Reading patch com.mojang.blaze3d.platform.GlStateManager$TextureState.binpatch + Checksum: 158ea551 Exists: true + Reading patch com.mojang.blaze3d.platform.GlStateManager$Viewport.binpatch + Checksum: 89507bca Exists: true + Reading patch com.mojang.blaze3d.platform.GlStateManager.binpatch + Checksum: 9186d623 Exists: true + Reading patch com.mojang.blaze3d.platform.Window$WindowInitFailed.binpatch + Checksum: b185b82e Exists: true + Reading patch com.mojang.blaze3d.platform.Window.binpatch + Checksum: d875272 Exists: true + Reading patch com.mojang.blaze3d.vertex.BufferBuilder$1.binpatch + Checksum: 121ef57a Exists: true + Reading patch com.mojang.blaze3d.vertex.BufferBuilder$DrawState.binpatch + Checksum: 44f9322c Exists: true + Reading patch com.mojang.blaze3d.vertex.BufferBuilder$RenderedBuffer.binpatch + Checksum: 3467c7ae Exists: true + Reading patch com.mojang.blaze3d.vertex.BufferBuilder$SortState.binpatch + Checksum: 6d814a1d Exists: true + Reading patch com.mojang.blaze3d.vertex.BufferBuilder.binpatch + Checksum: b5b46af8 Exists: true + Reading patch com.mojang.blaze3d.vertex.PoseStack$Pose.binpatch + Checksum: d183d4c0 Exists: true + Reading patch com.mojang.blaze3d.vertex.PoseStack.binpatch + Checksum: b0ec261e Exists: true + Reading patch com.mojang.blaze3d.vertex.SheetedDecalTextureGenerator.binpatch + Checksum: 7017e14 Exists: true + Reading patch com.mojang.blaze3d.vertex.VertexConsumer.binpatch + Checksum: c545de6e Exists: true + Reading patch com.mojang.blaze3d.vertex.VertexFormat$1.binpatch + Checksum: 1103184b Exists: true + Reading patch com.mojang.blaze3d.vertex.VertexFormat$IndexType.binpatch + Checksum: 4ea99d23 Exists: true + Reading patch com.mojang.blaze3d.vertex.VertexFormat$Mode.binpatch + Checksum: 29d804eb Exists: true + Reading patch com.mojang.blaze3d.vertex.VertexFormat.binpatch + Checksum: c211c930 Exists: true + Reading patch com.mojang.blaze3d.vertex.VertexFormatElement$Type.binpatch + Checksum: 2054ff9e Exists: true + Reading patch com.mojang.blaze3d.vertex.VertexFormatElement$Usage$ClearState.binpatch + Checksum: 456ba23f Exists: true + Reading patch com.mojang.blaze3d.vertex.VertexFormatElement$Usage$SetupState.binpatch + Checksum: 8940a3b6 Exists: true + Reading patch com.mojang.blaze3d.vertex.VertexFormatElement$Usage.binpatch + Checksum: dcdc5729 Exists: true + Reading patch com.mojang.blaze3d.vertex.VertexFormatElement.binpatch + Checksum: 7d2e7644 Exists: true + Reading patch com.mojang.math.Transformation.binpatch + Checksum: b77a96f1 Exists: true + Reading patch com.mojang.realmsclient.gui.screens.RealmsGenericErrorScreen$ErrorMessage.binpatch + Checksum: 8ee62175 Exists: true + Reading patch com.mojang.realmsclient.gui.screens.RealmsGenericErrorScreen.binpatch + Checksum: d3917634 Exists: true + Reading patch com.mojang.realmsclient.gui.screens.RealmsNotificationsScreen$1.binpatch + Checksum: 40feff53 Exists: true + Reading patch com.mojang.realmsclient.gui.screens.RealmsNotificationsScreen$2.binpatch + Checksum: 211527f3 Exists: true + Reading patch com.mojang.realmsclient.gui.screens.RealmsNotificationsScreen$3.binpatch + Checksum: 6b5c217b Exists: true + Reading patch com.mojang.realmsclient.gui.screens.RealmsNotificationsScreen$DataFetcherConfiguration.binpatch + Checksum: abf6f0fe Exists: true + Reading patch com.mojang.realmsclient.gui.screens.RealmsNotificationsScreen.binpatch + Checksum: e9e2db81 Exists: true + Reading patch net.minecraft.CrashReport.binpatch + Checksum: 9838e3cd Exists: true + Reading patch net.minecraft.CrashReportCategory$Entry.binpatch + Checksum: 96bf9d63 Exists: true + Reading patch net.minecraft.CrashReportCategory.binpatch + Checksum: 88366084 Exists: true + Reading patch net.minecraft.SharedConstants.binpatch + Checksum: 2cae0de8 Exists: true + Reading patch net.minecraft.Util$1.binpatch + Checksum: 1f4792c1 Exists: true + Reading patch net.minecraft.Util$10.binpatch + Checksum: 7d0bc3e4 Exists: true + Reading patch net.minecraft.Util$11.binpatch + Checksum: fb52fd58 Exists: true + Reading patch net.minecraft.Util$2.binpatch + Checksum: e67d04df Exists: true + Reading patch net.minecraft.Util$3.binpatch + Checksum: 0 Exists: false + Reading patch net.minecraft.Util$4.binpatch + Checksum: 0 Exists: false + Reading patch net.minecraft.Util$5.binpatch + Checksum: cbaec50b Exists: true + Reading patch net.minecraft.Util$6.binpatch + Checksum: 11b8942 Exists: true + Reading patch net.minecraft.Util$7.binpatch + Checksum: d60660d8 Exists: true + Reading patch net.minecraft.Util$8.binpatch + Checksum: af805bad Exists: true + Reading patch net.minecraft.Util$9.binpatch + Checksum: daccbd05 Exists: true + Reading patch net.minecraft.Util$IdentityStrategy.binpatch + Checksum: 4bd5774c Exists: true + Reading patch net.minecraft.Util$OS$1.binpatch + Checksum: 649ea8d4 Exists: true + Reading patch net.minecraft.Util$OS$2.binpatch + Checksum: 7ea29bd9 Exists: true + Reading patch net.minecraft.Util$OS.binpatch + Checksum: 2bc3bd18 Exists: true + Reading patch net.minecraft.Util.binpatch + Checksum: d4b32655 Exists: true + Reading patch net.minecraft.advancements.Advancement$Builder.binpatch + Checksum: 8d6c34ba Exists: true + Reading patch net.minecraft.advancements.Advancement.binpatch + Checksum: 7470dfa9 Exists: true + Reading patch net.minecraft.advancements.AdvancementRewards$Builder.binpatch + Checksum: 45ed9111 Exists: true + Reading patch net.minecraft.advancements.AdvancementRewards.binpatch + Checksum: 2f5166cd Exists: true + Reading patch net.minecraft.advancements.critereon.ItemPredicate$Builder.binpatch + Checksum: 93f01b43 Exists: true + Reading patch net.minecraft.advancements.critereon.ItemPredicate.binpatch + Checksum: df52f46f Exists: true + Reading patch net.minecraft.client.Camera$NearPlane.binpatch + Checksum: 98f06239 Exists: true + Reading patch net.minecraft.client.Camera.binpatch + Checksum: b7912691 Exists: true + Reading patch net.minecraft.client.ClientBrandRetriever.binpatch + Checksum: 5223b89a Exists: true + Reading patch net.minecraft.client.ClientRecipeBook$1.binpatch + Checksum: de3c5c6f Exists: true + Reading patch net.minecraft.client.ClientRecipeBook.binpatch + Checksum: c9388dbc Exists: true + Reading patch net.minecraft.client.KeyMapping.binpatch + Checksum: 988a1761 Exists: true + Reading patch net.minecraft.client.KeyboardHandler$1.binpatch + Checksum: 4750e831 Exists: true + Reading patch net.minecraft.client.KeyboardHandler.binpatch + Checksum: 54612b32 Exists: true + Reading patch net.minecraft.client.Minecraft$1.binpatch + Checksum: 5046e7da Exists: true + Reading patch net.minecraft.client.Minecraft$ChatStatus$1.binpatch + Checksum: 3f59d3b1 Exists: true + Reading patch net.minecraft.client.Minecraft$ChatStatus$2.binpatch + Checksum: 500cd3c1 Exists: true + Reading patch net.minecraft.client.Minecraft$ChatStatus$3.binpatch + Checksum: 69a4d3ea Exists: true + Reading patch net.minecraft.client.Minecraft$ChatStatus$4.binpatch + Checksum: 6b67d3f2 Exists: true + Reading patch net.minecraft.client.Minecraft$ChatStatus.binpatch + Checksum: d9116739 Exists: true + Reading patch net.minecraft.client.Minecraft.binpatch + Checksum: d03327c Exists: true + Reading patch net.minecraft.client.MouseHandler.binpatch + Checksum: 84e11639 Exists: true + Reading patch net.minecraft.client.Options$1.binpatch + Checksum: 2056ae67 Exists: true + Reading patch net.minecraft.client.Options$2.binpatch + Checksum: 62d74d4a Exists: true + Reading patch net.minecraft.client.Options$3.binpatch + Checksum: cc7f4706 Exists: true + Reading patch net.minecraft.client.Options$4.binpatch + Checksum: 7e667420 Exists: true + Reading patch net.minecraft.client.Options$FieldAccess.binpatch + Checksum: 60923e2e Exists: true + Reading patch net.minecraft.client.Options.binpatch + Checksum: 9d775808 Exists: true + Reading patch net.minecraft.client.RecipeBookCategories$1.binpatch + Checksum: 65b2f66b Exists: true + Reading patch net.minecraft.client.RecipeBookCategories.binpatch + Checksum: f17a65de Exists: true + Reading patch net.minecraft.client.Screenshot.binpatch + Checksum: 96c33c8a Exists: true + Reading patch net.minecraft.client.ToggleKeyMapping.binpatch + Checksum: ea5c5b19 Exists: true + Reading patch net.minecraft.client.User$Type.binpatch + Checksum: 3f1722e5 Exists: true + Reading patch net.minecraft.client.User.binpatch + Checksum: 510bd5e0 Exists: true + Reading patch net.minecraft.client.color.block.BlockColors.binpatch + Checksum: 29980e77 Exists: true + Reading patch net.minecraft.client.color.item.ItemColors.binpatch + Checksum: fc3e450f Exists: true + Reading patch net.minecraft.client.gui.Font$DisplayMode.binpatch + Checksum: edf84e84 Exists: true + Reading patch net.minecraft.client.gui.Font$StringRenderOutput.binpatch + Checksum: 7d6f7f94 Exists: true + Reading patch net.minecraft.client.gui.Font.binpatch + Checksum: af880cd Exists: true + Reading patch net.minecraft.client.gui.Gui$HeartType.binpatch + Checksum: 8e85463 Exists: true + Reading patch net.minecraft.client.gui.Gui.binpatch + Checksum: 8f6ef8a8 Exists: true + Reading patch net.minecraft.client.gui.GuiGraphics$ScissorStack.binpatch + Checksum: 9fba05a6 Exists: true + Reading patch net.minecraft.client.gui.GuiGraphics.binpatch + Checksum: 53940604 Exists: true + Reading patch net.minecraft.client.gui.MapRenderer$MapInstance.binpatch + Checksum: a511cb56 Exists: true + Reading patch net.minecraft.client.gui.MapRenderer.binpatch + Checksum: 4b66848c Exists: true + Reading patch net.minecraft.client.gui.components.AbstractButton.binpatch + Checksum: d48fd4dc Exists: true + Reading patch net.minecraft.client.gui.components.AbstractSelectionList$1.binpatch + Checksum: 52a106cc Exists: true + Reading patch net.minecraft.client.gui.components.AbstractSelectionList$Entry.binpatch + Checksum: de002e16 Exists: true + Reading patch net.minecraft.client.gui.components.AbstractSelectionList$TrackedList.binpatch + Checksum: 8e819b27 Exists: true + Reading patch net.minecraft.client.gui.components.AbstractSelectionList.binpatch + Checksum: 1e965480 Exists: true + Reading patch net.minecraft.client.gui.components.AbstractWidget.binpatch + Checksum: c03bb30d Exists: true + Reading patch net.minecraft.client.gui.components.BossHealthOverlay$1.binpatch + Checksum: 428a826c Exists: true + Reading patch net.minecraft.client.gui.components.BossHealthOverlay.binpatch + Checksum: 55919e96 Exists: true + Reading patch net.minecraft.client.gui.components.Button$Builder.binpatch + Checksum: d383f4f8 Exists: true + Reading patch net.minecraft.client.gui.components.Button$CreateNarration.binpatch + Checksum: 225dc9d6 Exists: true + Reading patch net.minecraft.client.gui.components.Button$OnPress.binpatch + Checksum: bd03848e Exists: true + Reading patch net.minecraft.client.gui.components.Button.binpatch + Checksum: 70a2abc1 Exists: true + Reading patch net.minecraft.client.gui.components.DebugScreenOverlay$1.binpatch + Checksum: b84ae880 Exists: true + Reading patch net.minecraft.client.gui.components.DebugScreenOverlay$AllocationRateCalculator.binpatch + Checksum: ae0315d6 Exists: true + Reading patch net.minecraft.client.gui.components.DebugScreenOverlay.binpatch + Checksum: 8a8d8e8f Exists: true + Reading patch net.minecraft.client.gui.components.toasts.ToastComponent$ToastInstance.binpatch + Checksum: b6428f4a Exists: true + Reading patch net.minecraft.client.gui.components.toasts.ToastComponent.binpatch + Checksum: 9d2d7977 Exists: true + Reading patch net.minecraft.client.gui.screens.ChatScreen$1.binpatch + Checksum: a818c7b1 Exists: true + Reading patch net.minecraft.client.gui.screens.ChatScreen.binpatch + Checksum: 2bf944d3 Exists: true + Reading patch net.minecraft.client.gui.screens.ConnectScreen$1.binpatch + Checksum: dfe2288e Exists: true + Reading patch net.minecraft.client.gui.screens.ConnectScreen.binpatch + Checksum: 9505c31e Exists: true + Reading patch net.minecraft.client.gui.screens.LoadingOverlay$LogoTexture.binpatch + Checksum: 1f24802d Exists: true + Reading patch net.minecraft.client.gui.screens.LoadingOverlay.binpatch + Checksum: eb8ee5f0 Exists: true + Reading patch net.minecraft.client.gui.screens.MenuScreens$ScreenConstructor.binpatch + Checksum: 32151aa0 Exists: true + Reading patch net.minecraft.client.gui.screens.MenuScreens.binpatch + Checksum: c5cd0d3b Exists: true + Reading patch net.minecraft.client.gui.screens.OptionsScreen.binpatch + Checksum: f1e43890 Exists: true + Reading patch net.minecraft.client.gui.screens.PauseScreen.binpatch + Checksum: c9ee4466 Exists: true + Reading patch net.minecraft.client.gui.screens.Screen$DeferredTooltipRendering.binpatch + Checksum: e210acb5 Exists: true + Reading patch net.minecraft.client.gui.screens.Screen$NarratableSearchResult.binpatch + Checksum: 3d7857b0 Exists: true + Reading patch net.minecraft.client.gui.screens.Screen.binpatch + Checksum: 4fbb9e76 Exists: true + Reading patch net.minecraft.client.gui.screens.TitleScreen$WarningLabel.binpatch + Checksum: f7ddd6d4 Exists: true + Reading patch net.minecraft.client.gui.screens.TitleScreen.binpatch + Checksum: 2626ffa0 Exists: true + Reading patch net.minecraft.client.gui.screens.advancements.AdvancementTab.binpatch + Checksum: b894dbe6 Exists: true + Reading patch net.minecraft.client.gui.screens.advancements.AdvancementTabType$1.binpatch + Checksum: 418005c Exists: true + Reading patch net.minecraft.client.gui.screens.advancements.AdvancementTabType.binpatch + Checksum: ab4b5e3c Exists: true + Reading patch net.minecraft.client.gui.screens.advancements.AdvancementsScreen.binpatch + Checksum: aad36eed Exists: true + Reading patch net.minecraft.client.gui.screens.controls.KeyBindsList$CategoryEntry$1.binpatch + Checksum: 32014f77 Exists: true + Reading patch net.minecraft.client.gui.screens.controls.KeyBindsList$CategoryEntry.binpatch + Checksum: 71a817c Exists: true + Reading patch net.minecraft.client.gui.screens.controls.KeyBindsList$Entry.binpatch + Checksum: 673d136d Exists: true + Reading patch net.minecraft.client.gui.screens.controls.KeyBindsList$KeyEntry.binpatch + Checksum: 1e3d46dc Exists: true + Reading patch net.minecraft.client.gui.screens.controls.KeyBindsList.binpatch + Checksum: 42b18ba1 Exists: true + Reading patch net.minecraft.client.gui.screens.controls.KeyBindsScreen.binpatch + Checksum: 92fa15a Exists: true + Reading patch net.minecraft.client.gui.screens.inventory.AbstractContainerScreen.binpatch + Checksum: cd37e02d Exists: true + Reading patch net.minecraft.client.gui.screens.inventory.CreativeModeInventoryScreen$CustomCreativeSlot.binpatch + Checksum: efe0e64f Exists: true + Reading patch net.minecraft.client.gui.screens.inventory.CreativeModeInventoryScreen$ItemPickerMenu.binpatch + Checksum: 256b9419 Exists: true + Reading patch net.minecraft.client.gui.screens.inventory.CreativeModeInventoryScreen$SlotWrapper.binpatch + Checksum: 672d88ef Exists: true + Reading patch net.minecraft.client.gui.screens.inventory.CreativeModeInventoryScreen.binpatch + Checksum: 7ac34e6c Exists: true + Reading patch net.minecraft.client.gui.screens.inventory.EffectRenderingInventoryScreen.binpatch + Checksum: e16297f8 Exists: true + Reading patch net.minecraft.client.gui.screens.inventory.EnchantmentScreen.binpatch + Checksum: cc22251c Exists: true + Reading patch net.minecraft.client.gui.screens.inventory.HangingSignEditScreen.binpatch + Checksum: d1b53a6e Exists: true + Reading patch net.minecraft.client.gui.screens.inventory.InventoryScreen.binpatch + Checksum: 51f73f45 Exists: true + Reading patch net.minecraft.client.gui.screens.inventory.MerchantScreen$TradeOfferButton.binpatch + Checksum: 6128965a Exists: true + Reading patch net.minecraft.client.gui.screens.inventory.MerchantScreen.binpatch + Checksum: 1165cdec Exists: true + Reading patch net.minecraft.client.gui.screens.inventory.tooltip.ClientTooltipComponent.binpatch + Checksum: 64f3bf90 Exists: true + Reading patch net.minecraft.client.gui.screens.inventory.tooltip.TooltipRenderUtil.binpatch + Checksum: ee24e5e5 Exists: true + Reading patch net.minecraft.client.gui.screens.multiplayer.JoinMultiplayerScreen.binpatch + Checksum: 1e4a4c47 Exists: true + Reading patch net.minecraft.client.gui.screens.multiplayer.ServerSelectionList$Entry.binpatch + Checksum: 4e5b3131 Exists: true + Reading patch net.minecraft.client.gui.screens.multiplayer.ServerSelectionList$LANHeader.binpatch + Checksum: 28e59732 Exists: true + Reading patch net.minecraft.client.gui.screens.multiplayer.ServerSelectionList$NetworkServerEntry.binpatch + Checksum: a2de496c Exists: true + Reading patch net.minecraft.client.gui.screens.multiplayer.ServerSelectionList$OnlineServerEntry.binpatch + Checksum: 5440508d Exists: true + Reading patch net.minecraft.client.gui.screens.multiplayer.ServerSelectionList.binpatch + Checksum: 6056b2e9 Exists: true + Reading patch net.minecraft.client.gui.screens.packs.PackSelectionModel$Entry.binpatch + Checksum: 6f4575b2 Exists: true + Reading patch net.minecraft.client.gui.screens.packs.PackSelectionModel$EntryBase.binpatch + Checksum: 457cb42c Exists: true + Reading patch net.minecraft.client.gui.screens.packs.PackSelectionModel$SelectedPackEntry.binpatch + Checksum: 85427e31 Exists: true + Reading patch net.minecraft.client.gui.screens.packs.PackSelectionModel$UnselectedPackEntry.binpatch + Checksum: a12e7dee Exists: true + Reading patch net.minecraft.client.gui.screens.packs.PackSelectionModel.binpatch + Checksum: 58e6cf9e Exists: true + Reading patch net.minecraft.client.gui.screens.packs.PackSelectionScreen$Watcher.binpatch + Checksum: 3ee0324b Exists: true + Reading patch net.minecraft.client.gui.screens.packs.PackSelectionScreen.binpatch + Checksum: e38890fe Exists: true + Reading patch net.minecraft.client.gui.screens.recipebook.RecipeBookComponent.binpatch + Checksum: d8c50b8c Exists: true + Reading patch net.minecraft.client.gui.screens.worldselection.CreateWorldScreen$DataPackReloadCookie.binpatch + Checksum: 8bd78744 Exists: true + Reading patch net.minecraft.client.gui.screens.worldselection.CreateWorldScreen$GameTab.binpatch + Checksum: f7074475 Exists: true + Reading patch net.minecraft.client.gui.screens.worldselection.CreateWorldScreen$MoreTab.binpatch + Checksum: dd6774b7 Exists: true + Reading patch net.minecraft.client.gui.screens.worldselection.CreateWorldScreen$WorldTab$1.binpatch + Checksum: 34ad519f Exists: true + Reading patch net.minecraft.client.gui.screens.worldselection.CreateWorldScreen$WorldTab$2.binpatch + Checksum: 5671bcf5 Exists: true + Reading patch net.minecraft.client.gui.screens.worldselection.CreateWorldScreen$WorldTab.binpatch + Checksum: 65af223d Exists: true + Reading patch net.minecraft.client.gui.screens.worldselection.CreateWorldScreen.binpatch + Checksum: cff9d7d2 Exists: true + Reading patch net.minecraft.client.gui.screens.worldselection.PresetEditor.binpatch + Checksum: 72fded31 Exists: true + Reading patch net.minecraft.client.gui.screens.worldselection.WorldCreationContext$DimensionsUpdater.binpatch + Checksum: 17481aa5 Exists: true + Reading patch net.minecraft.client.gui.screens.worldselection.WorldCreationContext$OptionsModifier.binpatch + Checksum: 575fca48 Exists: true + Reading patch net.minecraft.client.gui.screens.worldselection.WorldCreationContext.binpatch + Checksum: 12d74d40 Exists: true + Reading patch net.minecraft.client.gui.screens.worldselection.WorldCreationUiState$SelectedGameMode.binpatch + Checksum: 9cda4a0e Exists: true + Reading patch net.minecraft.client.gui.screens.worldselection.WorldCreationUiState$WorldTypeEntry.binpatch + Checksum: f01f02da Exists: true + Reading patch net.minecraft.client.gui.screens.worldselection.WorldCreationUiState.binpatch + Checksum: 4fcdcd01 Exists: true + Reading patch net.minecraft.client.gui.screens.worldselection.WorldOpenFlows$1Data.binpatch + Checksum: e7ad7556 Exists: true + Reading patch net.minecraft.client.gui.screens.worldselection.WorldOpenFlows.binpatch + Checksum: 1728bfe Exists: true + Reading patch net.minecraft.client.gui.screens.worldselection.WorldSelectionList$Entry.binpatch + Checksum: c4c9383a Exists: true + Reading patch net.minecraft.client.gui.screens.worldselection.WorldSelectionList$LoadingHeader.binpatch + Checksum: 16cded4b Exists: true + Reading patch net.minecraft.client.gui.screens.worldselection.WorldSelectionList$WorldListEntry.binpatch + Checksum: 30fea66 Exists: true + Reading patch net.minecraft.client.gui.screens.worldselection.WorldSelectionList.binpatch + Checksum: 3f1868db Exists: true + Reading patch net.minecraft.client.main.Main$1.binpatch + Checksum: 2cbaf3e8 Exists: true + Reading patch net.minecraft.client.main.Main$2.binpatch + Checksum: 8c2f21b8 Exists: true + Reading patch net.minecraft.client.main.Main$3.binpatch + Checksum: 3a1a423e Exists: true + Reading patch net.minecraft.client.main.Main.binpatch + Checksum: bee550a9 Exists: true + Reading patch net.minecraft.client.model.HumanoidModel$1.binpatch + Checksum: 466231a1 Exists: true + Reading patch net.minecraft.client.model.HumanoidModel$ArmPose.binpatch + Checksum: 113dc462 Exists: true + Reading patch net.minecraft.client.model.HumanoidModel.binpatch + Checksum: efa59e31 Exists: true + Reading patch net.minecraft.client.model.geom.LayerDefinitions.binpatch + Checksum: beafbb11 Exists: true + Reading patch net.minecraft.client.model.geom.ModelLayers.binpatch + Checksum: 62d57099 Exists: true + Reading patch net.minecraft.client.multiplayer.AccountProfileKeyPairManager.binpatch + Checksum: 5a3eb1da Exists: true + Reading patch net.minecraft.client.multiplayer.ClientChunkCache$Storage.binpatch + Checksum: 98d6eeff Exists: true + Reading patch net.minecraft.client.multiplayer.ClientChunkCache.binpatch + Checksum: 6c4fe551 Exists: true + Reading patch net.minecraft.client.multiplayer.ClientHandshakePacketListenerImpl.binpatch + Checksum: 4eb9c823 Exists: true + Reading patch net.minecraft.client.multiplayer.ClientLevel$1.binpatch + Checksum: f13dec8f Exists: true + Reading patch net.minecraft.client.multiplayer.ClientLevel$ClientLevelData.binpatch + Checksum: 62880a46 Exists: true + Reading patch net.minecraft.client.multiplayer.ClientLevel$EntityCallbacks.binpatch + Checksum: 812e2f8a Exists: true + Reading patch net.minecraft.client.multiplayer.ClientLevel.binpatch + Checksum: 2cdaf75a Exists: true + Reading patch net.minecraft.client.multiplayer.ClientPacketListener$1.binpatch + Checksum: 8cd24c40 Exists: true + Reading patch net.minecraft.client.multiplayer.ClientPacketListener$DeferredPacket.binpatch + Checksum: 83e8df7a Exists: true + Reading patch net.minecraft.client.multiplayer.ClientPacketListener.binpatch + Checksum: 1f8f6810 Exists: true + Reading patch net.minecraft.client.multiplayer.MultiPlayerGameMode.binpatch + Checksum: 3dd5871c Exists: true + Reading patch net.minecraft.client.multiplayer.PlayerInfo.binpatch + Checksum: 27a5ea8e Exists: true + Reading patch net.minecraft.client.multiplayer.ServerData$ServerPackStatus.binpatch + Checksum: 7d059512 Exists: true + Reading patch net.minecraft.client.multiplayer.ServerData.binpatch + Checksum: 16e7df8a Exists: true + Reading patch net.minecraft.client.multiplayer.ServerStatusPinger$1.binpatch + Checksum: a25829de Exists: true + Reading patch net.minecraft.client.multiplayer.ServerStatusPinger$2$1.binpatch + Checksum: b74e05c Exists: true + Reading patch net.minecraft.client.multiplayer.ServerStatusPinger$2.binpatch + Checksum: 4b8a8889 Exists: true + Reading patch net.minecraft.client.multiplayer.ServerStatusPinger.binpatch + Checksum: 83f43793 Exists: true + Reading patch net.minecraft.client.multiplayer.chat.ChatListener$Message.binpatch + Checksum: fce5996 Exists: true + Reading patch net.minecraft.client.multiplayer.chat.ChatListener.binpatch + Checksum: 855e5ada Exists: true + Reading patch net.minecraft.client.multiplayer.resolver.AddressCheck$1.binpatch + Checksum: c6741f11 Exists: true + Reading patch net.minecraft.client.multiplayer.resolver.AddressCheck.binpatch + Checksum: 3471e9a4 Exists: true + Reading patch net.minecraft.client.particle.BreakingItemParticle$Provider.binpatch + Checksum: 8a2fecc4 Exists: true + Reading patch net.minecraft.client.particle.BreakingItemParticle$SlimeProvider.binpatch + Checksum: 58f51a07 Exists: true + Reading patch net.minecraft.client.particle.BreakingItemParticle$SnowballProvider.binpatch + Checksum: c1e61e0b Exists: true + Reading patch net.minecraft.client.particle.BreakingItemParticle.binpatch + Checksum: 3b158c33 Exists: true + Reading patch net.minecraft.client.particle.EnchantmentTableParticle$NautilusProvider.binpatch + Checksum: 1aaf258d Exists: true + Reading patch net.minecraft.client.particle.EnchantmentTableParticle$Provider.binpatch + Checksum: 7341b19 Exists: true + Reading patch net.minecraft.client.particle.EnchantmentTableParticle.binpatch + Checksum: 5bdaf794 Exists: true + Reading patch net.minecraft.client.particle.FireworkParticles$1.binpatch + Checksum: 7c491ac5 Exists: true + Reading patch net.minecraft.client.particle.FireworkParticles$FlashProvider.binpatch + Checksum: 50e938f3 Exists: true + Reading patch net.minecraft.client.particle.FireworkParticles$OverlayParticle.binpatch + Checksum: 2d4ac99 Exists: true + Reading patch net.minecraft.client.particle.FireworkParticles$SparkParticle.binpatch + Checksum: 7face5ba Exists: true + Reading patch net.minecraft.client.particle.FireworkParticles$SparkProvider.binpatch + Checksum: ccf49191 Exists: true + Reading patch net.minecraft.client.particle.FireworkParticles$Starter.binpatch + Checksum: ba84202c Exists: true + Reading patch net.minecraft.client.particle.FireworkParticles.binpatch + Checksum: 6231311e Exists: true + Reading patch net.minecraft.client.particle.Particle.binpatch + Checksum: 49461123 Exists: true + Reading patch net.minecraft.client.particle.ParticleEngine$1ParticleDefinition.binpatch + Checksum: 66a562fd Exists: true + Reading patch net.minecraft.client.particle.ParticleEngine$MutableSpriteSet.binpatch + Checksum: c1cfebbe Exists: true + Reading patch net.minecraft.client.particle.ParticleEngine$SpriteParticleRegistration.binpatch + Checksum: 8000f884 Exists: true + Reading patch net.minecraft.client.particle.ParticleEngine.binpatch + Checksum: 12b2df3a Exists: true + Reading patch net.minecraft.client.particle.PortalParticle$Provider.binpatch + Checksum: 3b8007a1 Exists: true + Reading patch net.minecraft.client.particle.PortalParticle.binpatch + Checksum: e88fc7db Exists: true + Reading patch net.minecraft.client.particle.ReversePortalParticle$ReversePortalProvider.binpatch + Checksum: 457e247f Exists: true + Reading patch net.minecraft.client.particle.ReversePortalParticle.binpatch + Checksum: 4f5b7ba2 Exists: true + Reading patch net.minecraft.client.particle.TerrainParticle$Provider.binpatch + Checksum: 9aa573a7 Exists: true + Reading patch net.minecraft.client.particle.TerrainParticle.binpatch + Checksum: 954ad509 Exists: true + Reading patch net.minecraft.client.particle.VibrationSignalParticle$Provider.binpatch + Checksum: 5bb95cd3 Exists: true + Reading patch net.minecraft.client.particle.VibrationSignalParticle.binpatch + Checksum: afa52b84 Exists: true + Reading patch net.minecraft.client.player.AbstractClientPlayer.binpatch + Checksum: ea76a939 Exists: true + Reading patch net.minecraft.client.player.LocalPlayer.binpatch + Checksum: 7f1b1ccb Exists: true + Reading patch net.minecraft.client.player.RemotePlayer.binpatch + Checksum: 56dd24df Exists: true + Reading patch net.minecraft.client.renderer.DimensionSpecialEffects$EndEffects.binpatch + Checksum: 65e16dbe Exists: true + Reading patch net.minecraft.client.renderer.DimensionSpecialEffects$NetherEffects.binpatch + Checksum: 396e3c42 Exists: true + Reading patch net.minecraft.client.renderer.DimensionSpecialEffects$OverworldEffects.binpatch + Checksum: ff87574 Exists: true + Reading patch net.minecraft.client.renderer.DimensionSpecialEffects$SkyType.binpatch + Checksum: bf8c85c4 Exists: true + Reading patch net.minecraft.client.renderer.DimensionSpecialEffects.binpatch + Checksum: 8df6db87 Exists: true + Reading patch net.minecraft.client.renderer.EffectInstance.binpatch + Checksum: a8933587 Exists: true + Reading patch net.minecraft.client.renderer.FogRenderer$BlindnessFogFunction.binpatch + Checksum: 3f62543 Exists: true + Reading patch net.minecraft.client.renderer.FogRenderer$DarknessFogFunction.binpatch + Checksum: cbeaafb0 Exists: true + Reading patch net.minecraft.client.renderer.FogRenderer$FogData.binpatch + Checksum: 1736081d Exists: true + Reading patch net.minecraft.client.renderer.FogRenderer$FogMode.binpatch + Checksum: 405a5838 Exists: true + Reading patch net.minecraft.client.renderer.FogRenderer$MobEffectFogFunction.binpatch + Checksum: db1febdd Exists: true + Reading patch net.minecraft.client.renderer.FogRenderer.binpatch + Checksum: 84e9bff2 Exists: true + Reading patch net.minecraft.client.renderer.GameRenderer$1.binpatch + Checksum: 85a59982 Exists: true + Reading patch net.minecraft.client.renderer.GameRenderer$ResourceCache.binpatch + Checksum: 92658a2e Exists: true + Reading patch net.minecraft.client.renderer.GameRenderer.binpatch + Checksum: 7185b98f Exists: true + Reading patch net.minecraft.client.renderer.ItemBlockRenderTypes.binpatch + Checksum: 9efe741e Exists: true + Reading patch net.minecraft.client.renderer.ItemInHandRenderer$1.binpatch + Checksum: 3fdefd4a Exists: true + Reading patch net.minecraft.client.renderer.ItemInHandRenderer$HandRenderSelection.binpatch + Checksum: 59e842c9 Exists: true + Reading patch net.minecraft.client.renderer.ItemInHandRenderer.binpatch + Checksum: 8d3a07f3 Exists: true + Reading patch net.minecraft.client.renderer.ItemModelShaper.binpatch + Checksum: 66552979 Exists: true + Reading patch net.minecraft.client.renderer.LevelRenderer$RenderChunkInfo.binpatch + Checksum: 4461714d Exists: true + Reading patch net.minecraft.client.renderer.LevelRenderer$RenderChunkStorage.binpatch + Checksum: 6eb94946 Exists: true + Reading patch net.minecraft.client.renderer.LevelRenderer$RenderInfoMap.binpatch + Checksum: e2ddeeeb Exists: true + Reading patch net.minecraft.client.renderer.LevelRenderer$TransparencyShaderException.binpatch + Checksum: 9d9fdef0 Exists: true + Reading patch net.minecraft.client.renderer.LevelRenderer.binpatch + Checksum: 57826829 Exists: true + Reading patch net.minecraft.client.renderer.LightTexture.binpatch + Checksum: 4be21dee Exists: true + Reading patch net.minecraft.client.renderer.PostChain.binpatch + Checksum: e83b5eef Exists: true + Reading patch net.minecraft.client.renderer.RenderType$CompositeRenderType.binpatch + Checksum: 85be13a8 Exists: true + Reading patch net.minecraft.client.renderer.RenderType$CompositeState$CompositeStateBuilder.binpatch + Checksum: 125a6039 Exists: true + Reading patch net.minecraft.client.renderer.RenderType$CompositeState.binpatch + Checksum: a92bda2f Exists: true + Reading patch net.minecraft.client.renderer.RenderType$OutlineProperty.binpatch + Checksum: 5c16b52c Exists: true + Reading patch net.minecraft.client.renderer.RenderType.binpatch + Checksum: e93e4f55 Exists: true + Reading patch net.minecraft.client.renderer.ScreenEffectRenderer.binpatch + Checksum: c1b859ed Exists: true + Reading patch net.minecraft.client.renderer.ShaderInstance$1.binpatch + Checksum: 8a26a750 Exists: true + Reading patch net.minecraft.client.renderer.ShaderInstance.binpatch + Checksum: 760a945d Exists: true + Reading patch net.minecraft.client.renderer.Sheets$1.binpatch + Checksum: dbeff234 Exists: true + Reading patch net.minecraft.client.renderer.Sheets.binpatch + Checksum: cb0b37e Exists: true + Reading patch net.minecraft.client.renderer.SpriteCoordinateExpander.binpatch + Checksum: c35e454d Exists: true + Reading patch net.minecraft.client.renderer.block.BlockModelShaper.binpatch + Checksum: 88b622ce Exists: true + Reading patch net.minecraft.client.renderer.block.BlockRenderDispatcher$1.binpatch + Checksum: 494ff2fc Exists: true + Reading patch net.minecraft.client.renderer.block.BlockRenderDispatcher.binpatch + Checksum: 5b7fef4a Exists: true + Reading patch net.minecraft.client.renderer.block.LiquidBlockRenderer$1.binpatch + Checksum: 19b5e28d Exists: true + Reading patch net.minecraft.client.renderer.block.LiquidBlockRenderer.binpatch + Checksum: 9f7205d9 Exists: true + Reading patch net.minecraft.client.renderer.block.ModelBlockRenderer$1.binpatch + Checksum: 9fa6f644 Exists: true + Reading patch net.minecraft.client.renderer.block.ModelBlockRenderer$AdjacencyInfo.binpatch + Checksum: cd509d33 Exists: true + Reading patch net.minecraft.client.renderer.block.ModelBlockRenderer$AmbientOcclusionFace.binpatch + Checksum: 67a28dce Exists: true + Reading patch net.minecraft.client.renderer.block.ModelBlockRenderer$AmbientVertexRemap.binpatch + Checksum: b59c5acf Exists: true + Reading patch net.minecraft.client.renderer.block.ModelBlockRenderer$Cache$1.binpatch + Checksum: 2dc31e9d Exists: true + Reading patch net.minecraft.client.renderer.block.ModelBlockRenderer$Cache$2.binpatch + Checksum: c3701f7f Exists: true + Reading patch net.minecraft.client.renderer.block.ModelBlockRenderer$Cache.binpatch + Checksum: 1a865e32 Exists: true + Reading patch net.minecraft.client.renderer.block.ModelBlockRenderer$SizeInfo.binpatch + Checksum: 296962cd Exists: true + Reading patch net.minecraft.client.renderer.block.ModelBlockRenderer.binpatch + Checksum: 689a533 Exists: true + Reading patch net.minecraft.client.renderer.block.model.BakedQuad.binpatch + Checksum: 24013c6c Exists: true + Reading patch net.minecraft.client.renderer.block.model.BlockElement$1.binpatch + Checksum: f5bef322 Exists: true + Reading patch net.minecraft.client.renderer.block.model.BlockElement$Deserializer.binpatch + Checksum: 4c2e03db Exists: true + Reading patch net.minecraft.client.renderer.block.model.BlockElement.binpatch + Checksum: bbfa9726 Exists: true + Reading patch net.minecraft.client.renderer.block.model.BlockElementFace$Deserializer.binpatch + Checksum: feb174de Exists: true + Reading patch net.minecraft.client.renderer.block.model.BlockElementFace.binpatch + Checksum: b9d34495 Exists: true + Reading patch net.minecraft.client.renderer.block.model.BlockModel$Deserializer.binpatch + Checksum: c93e93d8 Exists: true + Reading patch net.minecraft.client.renderer.block.model.BlockModel$GuiLight.binpatch + Checksum: 5ffa7e69 Exists: true + Reading patch net.minecraft.client.renderer.block.model.BlockModel$LoopException.binpatch + Checksum: dae4c3ac Exists: true + Reading patch net.minecraft.client.renderer.block.model.BlockModel.binpatch + Checksum: 2e40712 Exists: true + Reading patch net.minecraft.client.renderer.block.model.FaceBakery$1.binpatch + Checksum: d8e0eaf1 Exists: true + Reading patch net.minecraft.client.renderer.block.model.FaceBakery.binpatch + Checksum: c2ecf822 Exists: true + Reading patch net.minecraft.client.renderer.block.model.ItemModelGenerator$1.binpatch + Checksum: 4432187 Exists: true + Reading patch net.minecraft.client.renderer.block.model.ItemModelGenerator$Span.binpatch + Checksum: c41173fe Exists: true + Reading patch net.minecraft.client.renderer.block.model.ItemModelGenerator$SpanFacing.binpatch + Checksum: 1043418d Exists: true + Reading patch net.minecraft.client.renderer.block.model.ItemModelGenerator.binpatch + Checksum: cde810de Exists: true + Reading patch net.minecraft.client.renderer.block.model.ItemOverrides$BakedOverride.binpatch + Checksum: bf33a782 Exists: true + Reading patch net.minecraft.client.renderer.block.model.ItemOverrides$PropertyMatcher.binpatch + Checksum: da65c805 Exists: true + Reading patch net.minecraft.client.renderer.block.model.ItemOverrides.binpatch + Checksum: fa3a4fe3 Exists: true + Reading patch net.minecraft.client.renderer.block.model.ItemTransform$Deserializer.binpatch + Checksum: 617622df Exists: true + Reading patch net.minecraft.client.renderer.block.model.ItemTransform.binpatch + Checksum: d7960186 Exists: true + Reading patch net.minecraft.client.renderer.block.model.ItemTransforms$1.binpatch + Checksum: 48db2ecd Exists: true + Reading patch net.minecraft.client.renderer.block.model.ItemTransforms$Deserializer.binpatch + Checksum: 8da905e8 Exists: true + Reading patch net.minecraft.client.renderer.block.model.ItemTransforms.binpatch + Checksum: b248d282 Exists: true + Reading patch net.minecraft.client.renderer.block.model.MultiVariant$Deserializer.binpatch + Checksum: 25c5e9cc Exists: true + Reading patch net.minecraft.client.renderer.block.model.MultiVariant.binpatch + Checksum: 3a0deaec Exists: true + Reading patch net.minecraft.client.renderer.blockentity.BlockEntityRenderers.binpatch + Checksum: 99ca63c Exists: true + Reading patch net.minecraft.client.renderer.blockentity.ChestRenderer.binpatch + Checksum: 6327806 Exists: true + Reading patch net.minecraft.client.renderer.blockentity.PistonHeadRenderer.binpatch + Checksum: 6c6efe01 Exists: true + Reading patch net.minecraft.client.renderer.blockentity.SkullBlockRenderer.binpatch + Checksum: 19ef2968 Exists: true + Reading patch net.minecraft.client.renderer.chunk.ChunkRenderDispatcher$ChunkTaskResult.binpatch + Checksum: 44f1a651 Exists: true + Reading patch net.minecraft.client.renderer.chunk.ChunkRenderDispatcher$CompiledChunk$1.binpatch + Checksum: 58bd03e7 Exists: true + Reading patch net.minecraft.client.renderer.chunk.ChunkRenderDispatcher$CompiledChunk.binpatch + Checksum: c56babbb Exists: true + Reading patch net.minecraft.client.renderer.chunk.ChunkRenderDispatcher$RenderChunk$ChunkCompileTask.binpatch + Checksum: 7b4a8a68 Exists: true + Reading patch net.minecraft.client.renderer.chunk.ChunkRenderDispatcher$RenderChunk$RebuildTask$CompileResults.binpatch + Checksum: 37f52e54 Exists: true + Reading patch net.minecraft.client.renderer.chunk.ChunkRenderDispatcher$RenderChunk$RebuildTask.binpatch + Checksum: aacd8332 Exists: true + Reading patch net.minecraft.client.renderer.chunk.ChunkRenderDispatcher$RenderChunk$ResortTransparencyTask.binpatch + Checksum: 22a0d686 Exists: true + Reading patch net.minecraft.client.renderer.chunk.ChunkRenderDispatcher$RenderChunk.binpatch + Checksum: 90b9bb68 Exists: true + Reading patch net.minecraft.client.renderer.chunk.ChunkRenderDispatcher.binpatch + Checksum: 9437cc34 Exists: true + Reading patch net.minecraft.client.renderer.chunk.RenderChunkRegion.binpatch + Checksum: b198ac04 Exists: true + Reading patch net.minecraft.client.renderer.culling.Frustum.binpatch + Checksum: 87c8d2c9 Exists: true + Reading patch net.minecraft.client.renderer.entity.BoatRenderer.binpatch + Checksum: af040ed1 Exists: true + Reading patch net.minecraft.client.renderer.entity.EntityRenderDispatcher.binpatch + Checksum: 12f42194 Exists: true + Reading patch net.minecraft.client.renderer.entity.EntityRenderer.binpatch + Checksum: 5f7547ef Exists: true + Reading patch net.minecraft.client.renderer.entity.FallingBlockRenderer.binpatch + Checksum: 339ffba9 Exists: true + Reading patch net.minecraft.client.renderer.entity.FishingHookRenderer.binpatch + Checksum: 2f0ab464 Exists: true + Reading patch net.minecraft.client.renderer.entity.ItemEntityRenderer.binpatch + Checksum: ff1eedca Exists: true + Reading patch net.minecraft.client.renderer.entity.ItemFrameRenderer.binpatch + Checksum: 58c782c2 Exists: true + Reading patch net.minecraft.client.renderer.entity.ItemRenderer.binpatch + Checksum: 9905657b Exists: true + Reading patch net.minecraft.client.renderer.entity.LivingEntityRenderer$1.binpatch + Checksum: ef7963ff Exists: true + Reading patch net.minecraft.client.renderer.entity.LivingEntityRenderer.binpatch + Checksum: bae80113 Exists: true + Reading patch net.minecraft.client.renderer.entity.layers.ElytraLayer.binpatch + Checksum: dd8974f5 Exists: true + Reading patch net.minecraft.client.renderer.entity.layers.HumanoidArmorLayer$1.binpatch + Checksum: 2768fd23 Exists: true + Reading patch net.minecraft.client.renderer.entity.layers.HumanoidArmorLayer.binpatch + Checksum: c4d31c6c Exists: true + Reading patch net.minecraft.client.renderer.entity.player.PlayerRenderer.binpatch + Checksum: cd26407a Exists: true + Reading patch net.minecraft.client.renderer.item.ItemProperties$1.binpatch + Checksum: 5e5f90ed Exists: true + Reading patch net.minecraft.client.renderer.item.ItemProperties.binpatch + Checksum: 9efbc6e8 Exists: true + Reading patch net.minecraft.client.renderer.texture.AbstractTexture.binpatch + Checksum: b2cb6b89 Exists: true + Reading patch net.minecraft.client.renderer.texture.MipmapGenerator.binpatch + Checksum: d3cb81ec Exists: true + Reading patch net.minecraft.client.renderer.texture.SpriteContents$AnimatedTexture.binpatch + Checksum: 7b491a8d Exists: true + Reading patch net.minecraft.client.renderer.texture.SpriteContents$FrameInfo.binpatch + Checksum: 1784bc4e Exists: true + Reading patch net.minecraft.client.renderer.texture.SpriteContents$InterpolationData.binpatch + Checksum: 53aac82 Exists: true + Reading patch net.minecraft.client.renderer.texture.SpriteContents$Ticker.binpatch + Checksum: a7c7a183 Exists: true + Reading patch net.minecraft.client.renderer.texture.SpriteContents.binpatch + Checksum: ad37e565 Exists: true + Reading patch net.minecraft.client.renderer.texture.SpriteLoader$Preparations.binpatch + Checksum: 9329bc5f Exists: true + Reading patch net.minecraft.client.renderer.texture.SpriteLoader.binpatch + Checksum: 628b5c66 Exists: true + Reading patch net.minecraft.client.renderer.texture.Stitcher$Entry.binpatch + Checksum: fd578c56 Exists: true + Reading patch net.minecraft.client.renderer.texture.Stitcher$Holder.binpatch + Checksum: 8358a099 Exists: true + Reading patch net.minecraft.client.renderer.texture.Stitcher$Region.binpatch + Checksum: ff8498e3 Exists: true + Reading patch net.minecraft.client.renderer.texture.Stitcher$SpriteLoader.binpatch + Checksum: 17d2cb96 Exists: true + Reading patch net.minecraft.client.renderer.texture.Stitcher.binpatch + Checksum: 5fa618a4 Exists: true + Reading patch net.minecraft.client.renderer.texture.TextureAtlas.binpatch + Checksum: f4306fe7 Exists: true + Reading patch net.minecraft.client.renderer.texture.TextureAtlasSprite$1.binpatch + Checksum: ba9280b8 Exists: true + Reading patch net.minecraft.client.renderer.texture.TextureAtlasSprite$Ticker.binpatch + Checksum: 72a8ea9 Exists: true + Reading patch net.minecraft.client.renderer.texture.TextureAtlasSprite.binpatch + Checksum: f1153381 Exists: true + Reading patch net.minecraft.client.renderer.texture.TextureManager.binpatch + Checksum: f3e54e4a Exists: true + Reading patch net.minecraft.client.resources.language.ClientLanguage.binpatch + Checksum: 5cee9a69 Exists: true + Reading patch net.minecraft.client.resources.language.I18n.binpatch + Checksum: b4eac433 Exists: true + Reading patch net.minecraft.client.resources.language.LanguageManager.binpatch + Checksum: 4976111b Exists: true + Reading patch net.minecraft.client.resources.model.BakedModel.binpatch + Checksum: 3001406a Exists: true + Reading patch net.minecraft.client.resources.model.ModelBaker.binpatch + Checksum: a9f0bfb1 Exists: true + Reading patch net.minecraft.client.resources.model.ModelBakery$BakedCacheKey.binpatch + Checksum: afba3200 Exists: true + Reading patch net.minecraft.client.resources.model.ModelBakery$BlockStateDefinitionException.binpatch + Checksum: 5898d42d Exists: true + Reading patch net.minecraft.client.resources.model.ModelBakery$LoadedJson.binpatch + Checksum: 47b8eae8 Exists: true + Reading patch net.minecraft.client.resources.model.ModelBakery$ModelBakerImpl.binpatch + Checksum: 60dfd2d3 Exists: true + Reading patch net.minecraft.client.resources.model.ModelBakery$ModelGroupKey.binpatch + Checksum: 4ba6edd5 Exists: true + Reading patch net.minecraft.client.resources.model.ModelBakery.binpatch + Checksum: caae3beb Exists: true + Reading patch net.minecraft.client.resources.model.ModelManager$ReloadState.binpatch + Checksum: cdfa7625 Exists: true + Reading patch net.minecraft.client.resources.model.ModelManager.binpatch + Checksum: e1b423a0 Exists: true + Reading patch net.minecraft.client.resources.model.MultiPartBakedModel$Builder.binpatch + Checksum: 888e24ef Exists: true + Reading patch net.minecraft.client.resources.model.MultiPartBakedModel.binpatch + Checksum: f861e935 Exists: true + Reading patch net.minecraft.client.resources.model.SimpleBakedModel$Builder.binpatch + Checksum: 5e7ef915 Exists: true + Reading patch net.minecraft.client.resources.model.SimpleBakedModel.binpatch + Checksum: 20d8f0f4 Exists: true + Reading patch net.minecraft.client.resources.model.WeightedBakedModel$Builder.binpatch + Checksum: 4344275d Exists: true + Reading patch net.minecraft.client.resources.model.WeightedBakedModel.binpatch + Checksum: 8fc2e555 Exists: true + Reading patch net.minecraft.client.resources.sounds.SoundInstance$Attenuation.binpatch + Checksum: 8bfb8199 Exists: true + Reading patch net.minecraft.client.resources.sounds.SoundInstance.binpatch + Checksum: bdc76873 Exists: true + Reading patch net.minecraft.client.server.IntegratedServer.binpatch + Checksum: 3da10743 Exists: true + Reading patch net.minecraft.client.server.LanServerDetection$LanServerDetector.binpatch + Checksum: ccfe01ea Exists: true + Reading patch net.minecraft.client.server.LanServerDetection$LanServerList.binpatch + Checksum: b1e8e2bb Exists: true + Reading patch net.minecraft.client.server.LanServerDetection.binpatch + Checksum: 46d16a7 Exists: true + Reading patch net.minecraft.client.server.LanServerPinger.binpatch + Checksum: c5aa348a Exists: true + Reading patch net.minecraft.client.sounds.SoundEngine$DeviceCheckState.binpatch + Checksum: 25b476fa Exists: true + Reading patch net.minecraft.client.sounds.SoundEngine.binpatch + Checksum: 1b1415f4 Exists: true + Reading patch net.minecraft.commands.CommandSourceStack.binpatch + Checksum: e97831b1 Exists: true + Reading patch net.minecraft.commands.Commands$1$1.binpatch + Checksum: 623391d1 Exists: true + Reading patch net.minecraft.commands.Commands$1.binpatch + Checksum: 83040d25 Exists: true + Reading patch net.minecraft.commands.Commands$CommandSelection.binpatch + Checksum: a1894dc1 Exists: true + Reading patch net.minecraft.commands.Commands$ParseFunction.binpatch + Checksum: 424d7f36 Exists: true + Reading patch net.minecraft.commands.Commands.binpatch + Checksum: 46dd7307 Exists: true + Reading patch net.minecraft.commands.arguments.EntityArgument$Info$Template.binpatch + Checksum: 8299f2e2 Exists: true + Reading patch net.minecraft.commands.arguments.EntityArgument$Info.binpatch + Checksum: 6dcda73f Exists: true + Reading patch net.minecraft.commands.arguments.EntityArgument.binpatch + Checksum: bc45a694 Exists: true + Reading patch net.minecraft.commands.arguments.MessageArgument$Message.binpatch + Checksum: aae819c5 Exists: true + Reading patch net.minecraft.commands.arguments.MessageArgument$Part.binpatch + Checksum: 43cc98e8 Exists: true + Reading patch net.minecraft.commands.arguments.MessageArgument.binpatch + Checksum: 6a356cb3 Exists: true + Reading patch net.minecraft.commands.arguments.ObjectiveArgument.binpatch + Checksum: 5e13e5a1 Exists: true + Reading patch net.minecraft.commands.arguments.ResourceLocationArgument.binpatch + Checksum: e98283b2 Exists: true + Reading patch net.minecraft.commands.arguments.TeamArgument.binpatch + Checksum: 72ccda8f Exists: true + Reading patch net.minecraft.commands.arguments.coordinates.BlockPosArgument.binpatch + Checksum: 58f7cfa6 Exists: true + Reading patch net.minecraft.commands.arguments.selector.EntitySelector$1.binpatch + Checksum: ade33ab1 Exists: true + Reading patch net.minecraft.commands.arguments.selector.EntitySelector.binpatch + Checksum: b06e5c6a Exists: true + Reading patch net.minecraft.commands.arguments.selector.EntitySelectorParser.binpatch + Checksum: c7989fac Exists: true + Reading patch net.minecraft.commands.synchronization.ArgumentTypeInfos.binpatch + Checksum: a51bf21c Exists: true + Reading patch net.minecraft.core.Holder$Direct.binpatch + Checksum: b19b51b6 Exists: true + Reading patch net.minecraft.core.Holder$Kind.binpatch + Checksum: c41df0b0 Exists: true + Reading patch net.minecraft.core.Holder$Reference$Type.binpatch + Checksum: 61401d9b Exists: true + Reading patch net.minecraft.core.Holder$Reference.binpatch + Checksum: c5522ceb Exists: true + Reading patch net.minecraft.core.Holder.binpatch + Checksum: 61c4ff96 Exists: true + Reading patch net.minecraft.core.HolderSet$Direct.binpatch + Checksum: e995d23d Exists: true + Reading patch net.minecraft.core.HolderSet$ListBacked.binpatch + Checksum: eb8d27a6 Exists: true + Reading patch net.minecraft.core.HolderSet$Named.binpatch + Checksum: b7df8999 Exists: true + Reading patch net.minecraft.core.HolderSet.binpatch + Checksum: 2248e4bf Exists: true + Reading patch net.minecraft.core.MappedRegistry$1.binpatch + Checksum: fd927692 Exists: true + Reading patch net.minecraft.core.MappedRegistry$2.binpatch + Checksum: 8e2c6381 Exists: true + Reading patch net.minecraft.core.MappedRegistry.binpatch + Checksum: eb391811 Exists: true + Reading patch net.minecraft.core.RegistryCodecs$RegistryEntry.binpatch + Checksum: f21626e9 Exists: true + Reading patch net.minecraft.core.RegistryCodecs.binpatch + Checksum: 67842945 Exists: true + Reading patch net.minecraft.core.RegistrySetBuilder$1.binpatch + Checksum: d361ccbb Exists: true + Reading patch net.minecraft.core.RegistrySetBuilder$BuildState$1.binpatch + Checksum: 5045522 Exists: true + Reading patch net.minecraft.core.RegistrySetBuilder$BuildState.binpatch + Checksum: 1e448a0 Exists: true + Reading patch net.minecraft.core.RegistrySetBuilder$CompositeOwner.binpatch + Checksum: 46d66eb6 Exists: true + Reading patch net.minecraft.core.RegistrySetBuilder$EmptyTagLookup.binpatch + Checksum: b512ad5f Exists: true + Reading patch net.minecraft.core.RegistrySetBuilder$RegisteredValue.binpatch + Checksum: 463d083c Exists: true + Reading patch net.minecraft.core.RegistrySetBuilder$RegistryBootstrap.binpatch + Checksum: 18079c58 Exists: true + Reading patch net.minecraft.core.RegistrySetBuilder$RegistryContents$1.binpatch + Checksum: 283b8731 Exists: true + Reading patch net.minecraft.core.RegistrySetBuilder$RegistryContents.binpatch + Checksum: d9f5ca8b Exists: true + Reading patch net.minecraft.core.RegistrySetBuilder$RegistryStub.binpatch + Checksum: 7054e5c Exists: true + Reading patch net.minecraft.core.RegistrySetBuilder$UniversalLookup.binpatch + Checksum: 51f4674d Exists: true + Reading patch net.minecraft.core.RegistrySetBuilder$ValueAndHolder.binpatch + Checksum: f779dc99 Exists: true + Reading patch net.minecraft.core.RegistrySetBuilder.binpatch + Checksum: 8290db35 Exists: true + Reading patch net.minecraft.core.RegistrySynchronization$NetworkedRegistryData.binpatch + Checksum: b20ab32b Exists: true + Reading patch net.minecraft.core.RegistrySynchronization.binpatch + Checksum: a9ce9598 Exists: true + Reading patch net.minecraft.core.dispenser.BoatDispenseItemBehavior.binpatch + Checksum: b9bf43fd Exists: true + Reading patch net.minecraft.core.dispenser.DispenseItemBehavior$1.binpatch + Checksum: bd0795ad Exists: true + Reading patch net.minecraft.core.dispenser.DispenseItemBehavior$10.binpatch + Checksum: dcb46069 Exists: true + Reading patch net.minecraft.core.dispenser.DispenseItemBehavior$11.binpatch + Checksum: 602d00a Exists: true + Reading patch net.minecraft.core.dispenser.DispenseItemBehavior$12.binpatch + Checksum: 6239fbba Exists: true + Reading patch net.minecraft.core.dispenser.DispenseItemBehavior$13.binpatch + Checksum: 76baeda6 Exists: true + Reading patch net.minecraft.core.dispenser.DispenseItemBehavior$14.binpatch + Checksum: 13e2a1ca Exists: true + Reading patch net.minecraft.core.dispenser.DispenseItemBehavior$15.binpatch + Checksum: af25173 Exists: true + Reading patch net.minecraft.core.dispenser.DispenseItemBehavior$16.binpatch + Checksum: 3f88f40a Exists: true + Reading patch net.minecraft.core.dispenser.DispenseItemBehavior$17.binpatch + Checksum: 8fcbfc41 Exists: true + Reading patch net.minecraft.core.dispenser.DispenseItemBehavior$18.binpatch + Checksum: 37ccdde0 Exists: true + Reading patch net.minecraft.core.dispenser.DispenseItemBehavior$19.binpatch + Checksum: e018a19a Exists: true + Reading patch net.minecraft.core.dispenser.DispenseItemBehavior$2.binpatch + Checksum: 5041a981 Exists: true + Reading patch net.minecraft.core.dispenser.DispenseItemBehavior$20.binpatch + Checksum: a4b74407 Exists: true + Reading patch net.minecraft.core.dispenser.DispenseItemBehavior$21.binpatch + Checksum: 549207e1 Exists: true + Reading patch net.minecraft.core.dispenser.DispenseItemBehavior$22.binpatch + Checksum: ffb17729 Exists: true + Reading patch net.minecraft.core.dispenser.DispenseItemBehavior$23.binpatch + Checksum: 6c0441db Exists: true + Reading patch net.minecraft.core.dispenser.DispenseItemBehavior$24.binpatch + Checksum: 19d34842 Exists: true + Reading patch net.minecraft.core.dispenser.DispenseItemBehavior$25.binpatch + Checksum: c73e0ff7 Exists: true + Reading patch net.minecraft.core.dispenser.DispenseItemBehavior$26.binpatch + Checksum: 1a15f412 Exists: true + Reading patch net.minecraft.core.dispenser.DispenseItemBehavior$27.binpatch + Checksum: 590adccd Exists: true + Reading patch net.minecraft.core.dispenser.DispenseItemBehavior$3.binpatch + Checksum: ab9b9c81 Exists: true + Reading patch net.minecraft.core.dispenser.DispenseItemBehavior$4.binpatch + Checksum: ebc482ad Exists: true + Reading patch net.minecraft.core.dispenser.DispenseItemBehavior$5.binpatch + Checksum: 95648174 Exists: true + Reading patch net.minecraft.core.dispenser.DispenseItemBehavior$6.binpatch + Checksum: 6248abe5 Exists: true + Reading patch net.minecraft.core.dispenser.DispenseItemBehavior$7$1.binpatch + Checksum: 66ca0ccf Exists: true + Reading patch net.minecraft.core.dispenser.DispenseItemBehavior$7.binpatch + Checksum: de23f590 Exists: true + Reading patch net.minecraft.core.dispenser.DispenseItemBehavior$8$1.binpatch + Checksum: 5d1f0d29 Exists: true + Reading patch net.minecraft.core.dispenser.DispenseItemBehavior$8.binpatch + Checksum: 974f5e8 Exists: true + Reading patch net.minecraft.core.dispenser.DispenseItemBehavior$9.binpatch + Checksum: 2c0bcd90 Exists: true + Reading patch net.minecraft.core.dispenser.DispenseItemBehavior.binpatch + Checksum: 54f608dd Exists: true + Reading patch net.minecraft.core.particles.BlockParticleOption$1.binpatch + Checksum: eff15861 Exists: true + Reading patch net.minecraft.core.particles.BlockParticleOption.binpatch + Checksum: 64feb03a Exists: true + Reading patch net.minecraft.core.particles.ItemParticleOption$1.binpatch + Checksum: d1cb8335 Exists: true + Reading patch net.minecraft.core.particles.ItemParticleOption.binpatch + Checksum: 1ca8e7c Exists: true + Reading patch net.minecraft.core.registries.BuiltInRegistries$RegistryBootstrap.binpatch + Checksum: 36439de6 Exists: true + Reading patch net.minecraft.core.registries.BuiltInRegistries.binpatch + Checksum: a9bce562 Exists: true + Reading patch net.minecraft.data.DataGenerator$PackGenerator.binpatch + Checksum: f871b2e4 Exists: true + Reading patch net.minecraft.data.DataGenerator.binpatch + Checksum: 9319310b Exists: true + Reading patch net.minecraft.data.HashCache$CacheUpdater.binpatch + Checksum: d6ee63af Exists: true + Reading patch net.minecraft.data.HashCache$ProviderCache.binpatch + Checksum: d9158cd3 Exists: true + Reading patch net.minecraft.data.HashCache$ProviderCacheBuilder.binpatch + Checksum: 425a1d39 Exists: true + Reading patch net.minecraft.data.HashCache$UpdateFunction.binpatch + Checksum: 39569320 Exists: true + Reading patch net.minecraft.data.HashCache$UpdateResult.binpatch + Checksum: 2127c76d Exists: true + Reading patch net.minecraft.data.HashCache.binpatch + Checksum: ebd89836 Exists: true + Reading patch net.minecraft.data.Main.binpatch + Checksum: 972bad52 Exists: true + Reading patch net.minecraft.data.advancements.AdvancementProvider.binpatch + Checksum: 7206af91 Exists: true + Reading patch net.minecraft.data.loot.BlockLootSubProvider.binpatch + Checksum: 581430fd Exists: true + Reading patch net.minecraft.data.loot.EntityLootSubProvider.binpatch + Checksum: e9efb1c9 Exists: true + Reading patch net.minecraft.data.loot.LootTableProvider$1.binpatch + Checksum: 7810f493 Exists: true + Reading patch net.minecraft.data.loot.LootTableProvider$SubProviderEntry.binpatch + Checksum: 32c68b9c Exists: true + Reading patch net.minecraft.data.loot.LootTableProvider.binpatch + Checksum: c71cf618 Exists: true + Reading patch net.minecraft.data.recipes.RecipeProvider.binpatch + Checksum: d2b7536d Exists: true + Reading patch net.minecraft.data.registries.RegistriesDatapackGenerator.binpatch + Checksum: 42d6d5bd Exists: true + Reading patch net.minecraft.data.registries.VanillaRegistries.binpatch + Checksum: 42921d4a Exists: true + Reading patch net.minecraft.data.tags.BannerPatternTagsProvider.binpatch + Checksum: df69954 Exists: true + Reading patch net.minecraft.data.tags.BiomeTagsProvider.binpatch + Checksum: f6ab2a19 Exists: true + Reading patch net.minecraft.data.tags.CatVariantTagsProvider.binpatch + Checksum: d9d1b842 Exists: true + Reading patch net.minecraft.data.tags.DamageTypeTagsProvider.binpatch + Checksum: 52936007 Exists: true + Reading patch net.minecraft.data.tags.EntityTypeTagsProvider.binpatch + Checksum: ddd996aa Exists: true + Reading patch net.minecraft.data.tags.FlatLevelGeneratorPresetTagsProvider.binpatch + Checksum: 67e89401 Exists: true + Reading patch net.minecraft.data.tags.FluidTagsProvider.binpatch + Checksum: fc43c748 Exists: true + Reading patch net.minecraft.data.tags.GameEventTagsProvider.binpatch + Checksum: d5427a42 Exists: true + Reading patch net.minecraft.data.tags.InstrumentTagsProvider.binpatch + Checksum: 1a1f7736 Exists: true + Reading patch net.minecraft.data.tags.IntrinsicHolderTagsProvider$IntrinsicTagAppender.binpatch + Checksum: fa8a4474 Exists: true + Reading patch net.minecraft.data.tags.IntrinsicHolderTagsProvider.binpatch + Checksum: e7429bd3 Exists: true + Reading patch net.minecraft.data.tags.ItemTagsProvider.binpatch + Checksum: eaea8b34 Exists: true + Reading patch net.minecraft.data.tags.PaintingVariantTagsProvider.binpatch + Checksum: d079ee46 Exists: true + Reading patch net.minecraft.data.tags.PoiTypeTagsProvider.binpatch + Checksum: 4276c055 Exists: true + Reading patch net.minecraft.data.tags.StructureTagsProvider.binpatch + Checksum: 476f3782 Exists: true + Reading patch net.minecraft.data.tags.TagsProvider$1CombinedData.binpatch + Checksum: 7fd2c43f Exists: true + Reading patch net.minecraft.data.tags.TagsProvider$TagAppender.binpatch + Checksum: a1e4058b Exists: true + Reading patch net.minecraft.data.tags.TagsProvider$TagLookup.binpatch + Checksum: 180a14b7 Exists: true + Reading patch net.minecraft.data.tags.TagsProvider.binpatch + Checksum: b2cdf6bb Exists: true + Reading patch net.minecraft.data.tags.WorldPresetTagsProvider.binpatch + Checksum: 5d257246 Exists: true + Reading patch net.minecraft.data.worldgen.BootstapContext.binpatch + Checksum: e9c3e060 Exists: true + Reading patch net.minecraft.data.worldgen.biome.OverworldBiomes.binpatch + Checksum: 8c54ec55 Exists: true + Reading patch net.minecraft.gametest.framework.GameTest.binpatch + Checksum: 7d64a40c Exists: true + Reading patch net.minecraft.gametest.framework.GameTestRegistry.binpatch + Checksum: aae8be4e Exists: true + Reading patch net.minecraft.gametest.framework.GameTestServer$1.binpatch + Checksum: cbd27e89 Exists: true + Reading patch net.minecraft.gametest.framework.GameTestServer.binpatch + Checksum: cd586331 Exists: true + Reading patch net.minecraft.gametest.framework.StructureUtils$1.binpatch + Checksum: 7b36c8d7 Exists: true + Reading patch net.minecraft.gametest.framework.StructureUtils.binpatch + Checksum: 3d5ebeb0 Exists: true + Reading patch net.minecraft.locale.Language$1.binpatch + Checksum: 636c68cb Exists: true + Reading patch net.minecraft.locale.Language.binpatch + Checksum: af0c38f5 Exists: true + Reading patch net.minecraft.nbt.CompoundTag$1.binpatch + Checksum: 18d77cfb Exists: true + Reading patch net.minecraft.nbt.CompoundTag$2.binpatch + Checksum: d13515d9 Exists: true + Reading patch net.minecraft.nbt.CompoundTag.binpatch + Checksum: e99e51c0 Exists: true + Reading patch net.minecraft.nbt.NbtAccounter$1.binpatch + Checksum: ff6960de Exists: true + Reading patch net.minecraft.nbt.NbtAccounter.binpatch + Checksum: 16235d5c Exists: true + Reading patch net.minecraft.nbt.NbtIo$1.binpatch + Checksum: 3cb9bc1e Exists: true + Reading patch net.minecraft.nbt.NbtIo.binpatch + Checksum: ac6702d7 Exists: true + Reading patch net.minecraft.nbt.StringTag$1.binpatch + Checksum: c2200de0 Exists: true + Reading patch net.minecraft.nbt.StringTag.binpatch + Checksum: fb8be140 Exists: true + Reading patch net.minecraft.network.CompressionEncoder.binpatch + Checksum: 3b58f971 Exists: true + Reading patch net.minecraft.network.Connection$1.binpatch + Checksum: c774343d Exists: true + Reading patch net.minecraft.network.Connection$2.binpatch + Checksum: a64040c6 Exists: true + Reading patch net.minecraft.network.Connection$PacketHolder.binpatch + Checksum: 7c4f1ac8 Exists: true + Reading patch net.minecraft.network.Connection.binpatch + Checksum: 686b3bd6 Exists: true + Reading patch net.minecraft.network.FriendlyByteBuf$1.binpatch + Checksum: e548ab0f Exists: true + Reading patch net.minecraft.network.FriendlyByteBuf$Reader.binpatch + Checksum: cd44093a Exists: true + Reading patch net.minecraft.network.FriendlyByteBuf$Writer.binpatch + Checksum: c7591655 Exists: true + Reading patch net.minecraft.network.FriendlyByteBuf.binpatch + Checksum: 346f8ad5 Exists: true + Reading patch net.minecraft.network.chat.contents.TranslatableContents.binpatch + Checksum: e1b7f5c2 Exists: true + Reading patch net.minecraft.network.protocol.game.ClientboundCustomPayloadPacket.binpatch + Checksum: 6d04e9d1 Exists: true + Reading patch net.minecraft.network.protocol.game.ServerboundContainerClickPacket.binpatch + Checksum: bd49cdd2 Exists: true + Reading patch net.minecraft.network.protocol.game.ServerboundCustomPayloadPacket.binpatch + Checksum: 31a8aeac Exists: true + Reading patch net.minecraft.network.protocol.game.ServerboundSetCreativeModeSlotPacket.binpatch + Checksum: 1dc60d16 Exists: true + Reading patch net.minecraft.network.protocol.handshake.ClientIntentionPacket.binpatch + Checksum: 6edcbf4d Exists: true + Reading patch net.minecraft.network.protocol.login.ClientboundCustomQueryPacket.binpatch + Checksum: 34bcc053 Exists: true + Reading patch net.minecraft.network.protocol.login.ServerboundCustomQueryPacket.binpatch + Checksum: 7a981625 Exists: true + Reading patch net.minecraft.network.protocol.status.ClientboundStatusResponsePacket.binpatch + Checksum: 836e3294 Exists: true + Reading patch net.minecraft.network.protocol.status.ServerStatus$Favicon.binpatch + Checksum: ed74064a Exists: true + Reading patch net.minecraft.network.protocol.status.ServerStatus$Players.binpatch + Checksum: 35c4c8e8 Exists: true + Reading patch net.minecraft.network.protocol.status.ServerStatus$Version.binpatch + Checksum: 17a0dec8 Exists: true + Reading patch net.minecraft.network.protocol.status.ServerStatus.binpatch + Checksum: 3132b563 Exists: true + Reading patch net.minecraft.network.syncher.EntityDataSerializers$1.binpatch + Checksum: 61cfe691 Exists: true + Reading patch net.minecraft.network.syncher.EntityDataSerializers$2.binpatch + Checksum: ecbbc07 Exists: true + Reading patch net.minecraft.network.syncher.EntityDataSerializers$3.binpatch + Checksum: 3b425044 Exists: true + Reading patch net.minecraft.network.syncher.EntityDataSerializers$4.binpatch + Checksum: 9355c126 Exists: true + Reading patch net.minecraft.network.syncher.EntityDataSerializers$5.binpatch + Checksum: 5eb1d7c7 Exists: true + Reading patch net.minecraft.network.syncher.EntityDataSerializers$6.binpatch + Checksum: 80e5add0 Exists: true + Reading patch net.minecraft.network.syncher.EntityDataSerializers$7.binpatch + Checksum: a353cb27 Exists: true + Reading patch net.minecraft.network.syncher.EntityDataSerializers.binpatch + Checksum: 23feb723 Exists: true + Reading patch net.minecraft.network.syncher.SynchedEntityData$DataItem.binpatch + Checksum: 3f42b73 Exists: true + Reading patch net.minecraft.network.syncher.SynchedEntityData$DataValue.binpatch + Checksum: 264d374b Exists: true + Reading patch net.minecraft.network.syncher.SynchedEntityData.binpatch + Checksum: 862e3f12 Exists: true + Reading patch net.minecraft.recipebook.PlaceRecipe.binpatch + Checksum: 32b5adab Exists: true + Reading patch net.minecraft.resources.HolderSetCodec.binpatch + Checksum: 3036d1d3 Exists: true + Reading patch net.minecraft.resources.RegistryDataLoader$1.binpatch + Checksum: 5cf7bbd2 Exists: true + Reading patch net.minecraft.resources.RegistryDataLoader$Loader.binpatch + Checksum: 75919fe4 Exists: true + Reading patch net.minecraft.resources.RegistryDataLoader$RegistryData.binpatch + Checksum: de75e8b8 Exists: true + Reading patch net.minecraft.resources.RegistryDataLoader.binpatch + Checksum: d407d4df Exists: true + Reading patch net.minecraft.resources.RegistryOps$1.binpatch + Checksum: 8c0e0d2 Exists: true + Reading patch net.minecraft.resources.RegistryOps$2.binpatch + Checksum: f2380a95 Exists: true + Reading patch net.minecraft.resources.RegistryOps$RegistryInfo.binpatch + Checksum: a18d9adb Exists: true + Reading patch net.minecraft.resources.RegistryOps$RegistryInfoLookup.binpatch + Checksum: fac0be53 Exists: true + Reading patch net.minecraft.resources.RegistryOps.binpatch + Checksum: ee410bc7 Exists: true + Reading patch net.minecraft.resources.ResourceKey$InternKey.binpatch + Checksum: 27a7b20b Exists: true + Reading patch net.minecraft.resources.ResourceKey.binpatch + Checksum: 6348f78f Exists: true + Reading patch net.minecraft.resources.ResourceLocation$Dummy.binpatch + Checksum: 70a54306 Exists: true + Reading patch net.minecraft.resources.ResourceLocation$Serializer.binpatch + Checksum: 69a26a6e Exists: true + Reading patch net.minecraft.resources.ResourceLocation.binpatch + Checksum: 2f3fb42f Exists: true + Reading patch net.minecraft.server.Bootstrap$1.binpatch + Checksum: 2292e5f3 Exists: true + Reading patch net.minecraft.server.Bootstrap.binpatch + Checksum: 24315bb4 Exists: true + Reading patch net.minecraft.server.Eula.binpatch + Checksum: 406d806f Exists: true + Reading patch net.minecraft.server.Main$1.binpatch + Checksum: e468bd46 Exists: true + Reading patch net.minecraft.server.Main.binpatch + Checksum: 1f8df5b7 Exists: true + Reading patch net.minecraft.server.MinecraftServer$1.binpatch + Checksum: b6ff5aa8 Exists: true + Reading patch net.minecraft.server.MinecraftServer$ReloadableResources.binpatch + Checksum: 30dd431a Exists: true + Reading patch net.minecraft.server.MinecraftServer$ServerResourcePackInfo.binpatch + Checksum: fad1711 Exists: true + Reading patch net.minecraft.server.MinecraftServer$TimeProfiler$1.binpatch + Checksum: 531a85ef Exists: true + Reading patch net.minecraft.server.MinecraftServer$TimeProfiler.binpatch + Checksum: 57bfcbad Exists: true + Reading patch net.minecraft.server.MinecraftServer.binpatch + Checksum: 3e327d7e Exists: true + Reading patch net.minecraft.server.PlayerAdvancements$1.binpatch + Checksum: a37dad7a Exists: true + Reading patch net.minecraft.server.PlayerAdvancements.binpatch + Checksum: 871cb196 Exists: true + Reading patch net.minecraft.server.ReloadableServerResources.binpatch + Checksum: 49a143a3 Exists: true + Reading patch net.minecraft.server.ServerAdvancementManager.binpatch + Checksum: d7138b04 Exists: true + Reading patch net.minecraft.server.WorldLoader$DataLoadContext.binpatch + Checksum: 695b7ba2 Exists: true + Reading patch net.minecraft.server.WorldLoader$DataLoadOutput.binpatch + Checksum: 177420df Exists: true + Reading patch net.minecraft.server.WorldLoader$InitConfig.binpatch + Checksum: cb943161 Exists: true + Reading patch net.minecraft.server.WorldLoader$PackConfig.binpatch + Checksum: e9678230 Exists: true + Reading patch net.minecraft.server.WorldLoader$ResultFactory.binpatch + Checksum: 47f4093e Exists: true + Reading patch net.minecraft.server.WorldLoader$WorldDataSupplier.binpatch + Checksum: e8e3eea3 Exists: true + Reading patch net.minecraft.server.WorldLoader.binpatch + Checksum: f7311eb8 Exists: true + Reading patch net.minecraft.server.advancements.AdvancementVisibilityEvaluator$Output.binpatch + Checksum: 301a86ef Exists: true + Reading patch net.minecraft.server.advancements.AdvancementVisibilityEvaluator$VisibilityRule.binpatch + Checksum: 2b078ff9 Exists: true + Reading patch net.minecraft.server.advancements.AdvancementVisibilityEvaluator.binpatch + Checksum: ca7ebeb4 Exists: true + Reading patch net.minecraft.server.commands.SpreadPlayersCommand$Position.binpatch + Checksum: aa473085 Exists: true + Reading patch net.minecraft.server.commands.SpreadPlayersCommand.binpatch + Checksum: cceaa617 Exists: true + Reading patch net.minecraft.server.commands.TeleportCommand$LookAt.binpatch + Checksum: 3cd353ed Exists: true + Reading patch net.minecraft.server.commands.TeleportCommand.binpatch + Checksum: e09f005a Exists: true + Reading patch net.minecraft.server.dedicated.DedicatedServer$1.binpatch + Checksum: 5db2c787 Exists: true + Reading patch net.minecraft.server.dedicated.DedicatedServer.binpatch + Checksum: 7d2622a1 Exists: true + Reading patch net.minecraft.server.dedicated.ServerWatchdog$1.binpatch + Checksum: 7289bcc0 Exists: true + Reading patch net.minecraft.server.dedicated.ServerWatchdog.binpatch + Checksum: c8a5ebb3 Exists: true + Reading patch net.minecraft.server.dedicated.Settings$MutableValue.binpatch + Checksum: a41d3d79 Exists: true + Reading patch net.minecraft.server.dedicated.Settings.binpatch + Checksum: 1ff6335b Exists: true + Reading patch net.minecraft.server.gui.MinecraftServerGui$1.binpatch + Checksum: ed1195ee Exists: true + Reading patch net.minecraft.server.gui.MinecraftServerGui$2.binpatch + Checksum: 75b1ca05 Exists: true + Reading patch net.minecraft.server.gui.MinecraftServerGui.binpatch + Checksum: c16149ba Exists: true + Reading patch net.minecraft.server.level.ChunkHolder$1.binpatch + Checksum: b1597ecd Exists: true + Reading patch net.minecraft.server.level.ChunkHolder$ChunkLoadingFailure$1.binpatch + Checksum: 9d65a4e7 Exists: true + Reading patch net.minecraft.server.level.ChunkHolder$ChunkLoadingFailure.binpatch + Checksum: 2b458d39 Exists: true + Reading patch net.minecraft.server.level.ChunkHolder$ChunkSaveDebug.binpatch + Checksum: 5f2fd01 Exists: true + Reading patch net.minecraft.server.level.ChunkHolder$LevelChangeListener.binpatch + Checksum: 68e889ce Exists: true + Reading patch net.minecraft.server.level.ChunkHolder$PlayerProvider.binpatch + Checksum: e7d985b5 Exists: true + Reading patch net.minecraft.server.level.ChunkHolder.binpatch + Checksum: 26f0188f Exists: true + Reading patch net.minecraft.server.level.ChunkMap$1.binpatch + Checksum: e2faa520 Exists: true + Reading patch net.minecraft.server.level.ChunkMap$2.binpatch + Checksum: df14087f Exists: true + Reading patch net.minecraft.server.level.ChunkMap$DistanceManager.binpatch + Checksum: bd639102 Exists: true + Reading patch net.minecraft.server.level.ChunkMap$TrackedEntity.binpatch + Checksum: 83944f2e Exists: true + Reading patch net.minecraft.server.level.ChunkMap.binpatch + Checksum: b601020a Exists: true + Reading patch net.minecraft.server.level.DistanceManager$ChunkTicketTracker.binpatch + Checksum: c166540a Exists: true + Reading patch net.minecraft.server.level.DistanceManager$FixedPlayerDistanceChunkTracker.binpatch + Checksum: 4d709c95 Exists: true + Reading patch net.minecraft.server.level.DistanceManager$PlayerTicketTracker.binpatch + Checksum: 196e49f0 Exists: true + Reading patch net.minecraft.server.level.DistanceManager.binpatch + Checksum: c2d043e1 Exists: true + Reading patch net.minecraft.server.level.ServerChunkCache$ChunkAndHolder.binpatch + Checksum: def0ee66 Exists: true + Reading patch net.minecraft.server.level.ServerChunkCache$MainThreadExecutor.binpatch + Checksum: a7bace92 Exists: true + Reading patch net.minecraft.server.level.ServerChunkCache.binpatch + Checksum: 12b6ab4f Exists: true + Reading patch net.minecraft.server.level.ServerEntity.binpatch + Checksum: 134f8384 Exists: true + Reading patch net.minecraft.server.level.ServerLevel$EntityCallbacks.binpatch + Checksum: e04f4207 Exists: true + Reading patch net.minecraft.server.level.ServerLevel.binpatch + Checksum: 24c8faf7 Exists: true + Reading patch net.minecraft.server.level.ServerPlayer$1.binpatch + Checksum: 721b32fa Exists: true + Reading patch net.minecraft.server.level.ServerPlayer$2.binpatch + Checksum: bdae35d6 Exists: true + Reading patch net.minecraft.server.level.ServerPlayer.binpatch + Checksum: 1a26f547 Exists: true + Reading patch net.minecraft.server.level.ServerPlayerGameMode.binpatch + Checksum: dd427335 Exists: true + Reading patch net.minecraft.server.level.Ticket.binpatch + Checksum: 2e7512e2 Exists: true + Reading patch net.minecraft.server.level.WorldGenRegion.binpatch + Checksum: 2501dc14 Exists: true + Reading patch net.minecraft.server.network.MemoryServerHandshakePacketListenerImpl.binpatch + Checksum: 9949ba6a Exists: true + Reading patch net.minecraft.server.network.ServerConnectionListener$1.binpatch + Checksum: d04456c0 Exists: true + Reading patch net.minecraft.server.network.ServerConnectionListener$2.binpatch + Checksum: fbb63f6b Exists: true + Reading patch net.minecraft.server.network.ServerConnectionListener$LatencySimulator$DelayedMessage.binpatch + Checksum: 5c31f89f Exists: true + Reading patch net.minecraft.server.network.ServerConnectionListener$LatencySimulator.binpatch + Checksum: 467c496c Exists: true + Reading patch net.minecraft.server.network.ServerConnectionListener.binpatch + Checksum: 2075b5ca Exists: true + Reading patch net.minecraft.server.network.ServerGamePacketListenerImpl$1.binpatch + Checksum: b460569 Exists: true + Reading patch net.minecraft.server.network.ServerGamePacketListenerImpl$2.binpatch + Checksum: 5d8659bf Exists: true + Reading patch net.minecraft.server.network.ServerGamePacketListenerImpl$EntityInteraction.binpatch + Checksum: 5190b3ab Exists: true + Reading patch net.minecraft.server.network.ServerGamePacketListenerImpl.binpatch + Checksum: 2184ebb5 Exists: true + Reading patch net.minecraft.server.network.ServerHandshakePacketListenerImpl$1.binpatch + Checksum: 5f7c6da Exists: true + Reading patch net.minecraft.server.network.ServerHandshakePacketListenerImpl.binpatch + Checksum: ae62a979 Exists: true + Reading patch net.minecraft.server.network.ServerLoginPacketListenerImpl$1.binpatch + Checksum: 3b602e39 Exists: true + Reading patch net.minecraft.server.network.ServerLoginPacketListenerImpl$State.binpatch + Checksum: 73499163 Exists: true + Reading patch net.minecraft.server.network.ServerLoginPacketListenerImpl.binpatch + Checksum: 454dbf46 Exists: true + Reading patch net.minecraft.server.network.ServerStatusPacketListenerImpl.binpatch + Checksum: 17897393 Exists: true + Reading patch net.minecraft.server.packs.AbstractPackResources.binpatch + Checksum: 2a50f0a2 Exists: true + Reading patch net.minecraft.server.packs.PackResources$ResourceOutput.binpatch + Checksum: 1aceade7 Exists: true + Reading patch net.minecraft.server.packs.PackResources.binpatch + Checksum: b56a2086 Exists: true + Reading patch net.minecraft.server.packs.metadata.pack.PackMetadataSection.binpatch + Checksum: c8f210ef Exists: true + Reading patch net.minecraft.server.packs.metadata.pack.PackMetadataSectionSerializer.binpatch + Checksum: 74eafa84 Exists: true + Reading patch net.minecraft.server.packs.repository.Pack$Info.binpatch + Checksum: ebe45cf4 Exists: true + Reading patch net.minecraft.server.packs.repository.Pack$Position.binpatch + Checksum: a737a188 Exists: true + Reading patch net.minecraft.server.packs.repository.Pack$ResourcesSupplier.binpatch + Checksum: c1df7988 Exists: true + Reading patch net.minecraft.server.packs.repository.Pack.binpatch + Checksum: 216a263c Exists: true + Reading patch net.minecraft.server.packs.repository.PackRepository.binpatch + Checksum: 2f0ea59 Exists: true + Reading patch net.minecraft.server.packs.repository.ServerPacksSource.binpatch + Checksum: 59b67a7d Exists: true + Reading patch net.minecraft.server.packs.resources.FallbackResourceManager$1ResourceWithSourceAndIndex.binpatch + Checksum: ae0eefa9 Exists: true + Reading patch net.minecraft.server.packs.resources.FallbackResourceManager$EntryStack.binpatch + Checksum: b965023e Exists: true + Reading patch net.minecraft.server.packs.resources.FallbackResourceManager$LeakedResourceWarningInputStream.binpatch + Checksum: d6d97291 Exists: true + Reading patch net.minecraft.server.packs.resources.FallbackResourceManager$PackEntry.binpatch + Checksum: d18d79f9 Exists: true + Reading patch net.minecraft.server.packs.resources.FallbackResourceManager$ResourceWithSource.binpatch + Checksum: 22b9a547 Exists: true + Reading patch net.minecraft.server.packs.resources.FallbackResourceManager.binpatch + Checksum: 47d995e3 Exists: true + Reading patch net.minecraft.server.packs.resources.ReloadableResourceManager.binpatch + Checksum: bc2f5ad5 Exists: true + Reading patch net.minecraft.server.packs.resources.SimpleJsonResourceReloadListener.binpatch + Checksum: 763b25b1 Exists: true + Reading patch net.minecraft.server.players.PlayerList$1.binpatch + Checksum: 7ac63508 Exists: true + Reading patch net.minecraft.server.players.PlayerList.binpatch + Checksum: 4bd3646e Exists: true + Reading patch net.minecraft.server.rcon.RconConsoleSource.binpatch + Checksum: 938d831b Exists: true + Reading patch net.minecraft.server.rcon.thread.RconClient.binpatch + Checksum: cd218977 Exists: true + Reading patch net.minecraft.stats.RecipeBookSettings$TypeSettings.binpatch + Checksum: a1b4719e Exists: true + Reading patch net.minecraft.stats.RecipeBookSettings.binpatch + Checksum: a2818960 Exists: true + Reading patch net.minecraft.tags.BlockTags.binpatch + Checksum: b0a47708 Exists: true + Reading patch net.minecraft.tags.FluidTags.binpatch + Checksum: 424e3059 Exists: true + Reading patch net.minecraft.tags.ItemTags.binpatch + Checksum: 1383cd0 Exists: true + Reading patch net.minecraft.tags.TagBuilder.binpatch + Checksum: f7b97245 Exists: true + Reading patch net.minecraft.tags.TagEntry$Lookup.binpatch + Checksum: c98abf83 Exists: true + Reading patch net.minecraft.tags.TagEntry.binpatch + Checksum: 7070dec2 Exists: true + Reading patch net.minecraft.tags.TagFile.binpatch + Checksum: ba01a2a6 Exists: true + Reading patch net.minecraft.tags.TagLoader$1.binpatch + Checksum: aef1b685 Exists: true + Reading patch net.minecraft.tags.TagLoader$EntryWithSource.binpatch + Checksum: 4c79f032 Exists: true + Reading patch net.minecraft.tags.TagLoader$SortingEntry.binpatch + Checksum: c136ae9e Exists: true + Reading patch net.minecraft.tags.TagLoader.binpatch + Checksum: fcf65b7a Exists: true + Reading patch net.minecraft.tags.TagManager$LoadResult.binpatch + Checksum: e29fa5fd Exists: true + Reading patch net.minecraft.tags.TagManager.binpatch + Checksum: f1e5f470 Exists: true + Reading patch net.minecraft.util.SpawnUtil$Strategy.binpatch + Checksum: 6f8872c6 Exists: true + Reading patch net.minecraft.util.SpawnUtil.binpatch + Checksum: 160632bf Exists: true + Reading patch net.minecraft.util.datafix.fixes.StructuresBecomeConfiguredFix$Conversion.binpatch + Checksum: 1b57269 Exists: true + Reading patch net.minecraft.util.datafix.fixes.StructuresBecomeConfiguredFix.binpatch + Checksum: e36b28 Exists: true + Reading patch net.minecraft.util.datafix.schemas.V2832.binpatch + Checksum: 1da01ebe Exists: true + Reading patch net.minecraft.world.effect.MobEffect.binpatch + Checksum: b6b6a31f Exists: true + Reading patch net.minecraft.world.effect.MobEffectInstance$FactorData.binpatch + Checksum: 5e8b87f3 Exists: true + Reading patch net.minecraft.world.effect.MobEffectInstance.binpatch + Checksum: 384fa7b8 Exists: true + Reading patch net.minecraft.world.entity.Entity$1.binpatch + Checksum: c7effbf6 Exists: true + Reading patch net.minecraft.world.entity.Entity$MoveFunction.binpatch + Checksum: d39366a4 Exists: true + Reading patch net.minecraft.world.entity.Entity$MovementEmission.binpatch + Checksum: f8db77b1 Exists: true + Reading patch net.minecraft.world.entity.Entity$RemovalReason.binpatch + Checksum: 69527650 Exists: true + Reading patch net.minecraft.world.entity.Entity.binpatch + Checksum: de2fcb6f Exists: true + Reading patch net.minecraft.world.entity.EntityType$1.binpatch + Checksum: deb675d3 Exists: true + Reading patch net.minecraft.world.entity.EntityType$Builder.binpatch + Checksum: 6bd893c9 Exists: true + Reading patch net.minecraft.world.entity.EntityType$EntityFactory.binpatch + Checksum: fc3ca8a9 Exists: true + Reading patch net.minecraft.world.entity.EntityType.binpatch + Checksum: 4e7d2adb Exists: true + Reading patch net.minecraft.world.entity.ExperienceOrb.binpatch + Checksum: 3ab915b6 Exists: true + Reading patch net.minecraft.world.entity.FlyingMob.binpatch + Checksum: 15a3ca6a Exists: true + Reading patch net.minecraft.world.entity.LightningBolt.binpatch + Checksum: d8223172 Exists: true + Reading patch net.minecraft.world.entity.LivingEntity$1.binpatch + Checksum: 24371c3b Exists: true + Reading patch net.minecraft.world.entity.LivingEntity$Fallsounds.binpatch + Checksum: 9090b1b7 Exists: true + Reading patch net.minecraft.world.entity.LivingEntity.binpatch + Checksum: 3a88a3ad Exists: true + Reading patch net.minecraft.world.entity.Mob$1.binpatch + Checksum: 37cfffe7 Exists: true + Reading patch net.minecraft.world.entity.Mob.binpatch + Checksum: cf567dd5 Exists: true + Reading patch net.minecraft.world.entity.MobCategory.binpatch + Checksum: 202629c7 Exists: true + Reading patch net.minecraft.world.entity.Shearable.binpatch + Checksum: 9c033426 Exists: true + Reading patch net.minecraft.world.entity.SpawnPlacements$Data.binpatch + Checksum: 630abdac Exists: true + Reading patch net.minecraft.world.entity.SpawnPlacements$SpawnPredicate.binpatch + Checksum: b0f412e5 Exists: true + Reading patch net.minecraft.world.entity.SpawnPlacements$Type.binpatch + Checksum: 54b14042 Exists: true + Reading patch net.minecraft.world.entity.SpawnPlacements.binpatch + Checksum: 66f85384 Exists: true + Reading patch net.minecraft.world.entity.TamableAnimal.binpatch + Checksum: 81d387e7 Exists: true + Reading patch net.minecraft.world.entity.ai.Brain$1.binpatch + Checksum: 99f3604c Exists: true + Reading patch net.minecraft.world.entity.ai.Brain$MemoryValue.binpatch + Checksum: 8442dcee Exists: true + Reading patch net.minecraft.world.entity.ai.Brain$Provider.binpatch + Checksum: 4077211f Exists: true + Reading patch net.minecraft.world.entity.ai.Brain.binpatch + Checksum: c6fac287 Exists: true + Reading patch net.minecraft.world.entity.ai.attributes.AttributeSupplier$Builder.binpatch + Checksum: 51df5b04 Exists: true + Reading patch net.minecraft.world.entity.ai.attributes.AttributeSupplier.binpatch + Checksum: 691186f1 Exists: true + Reading patch net.minecraft.world.entity.ai.attributes.DefaultAttributes.binpatch + Checksum: 2468e783 Exists: true + Reading patch net.minecraft.world.entity.ai.behavior.CrossbowAttack$CrossbowState.binpatch + Checksum: dcab70d8 Exists: true + Reading patch net.minecraft.world.entity.ai.behavior.CrossbowAttack.binpatch + Checksum: f6904dd2 Exists: true + Reading patch net.minecraft.world.entity.ai.behavior.HarvestFarmland.binpatch + Checksum: c498a460 Exists: true + Reading patch net.minecraft.world.entity.ai.behavior.StartAttacking.binpatch + Checksum: c42b72a3 Exists: true + Reading patch net.minecraft.world.entity.ai.behavior.Swim.binpatch + Checksum: 76355c2e Exists: true + Reading patch net.minecraft.world.entity.ai.control.MoveControl$Operation.binpatch + Checksum: b2025a6b Exists: true + Reading patch net.minecraft.world.entity.ai.control.MoveControl.binpatch + Checksum: 99b7d887 Exists: true + Reading patch net.minecraft.world.entity.ai.goal.BreakDoorGoal.binpatch + Checksum: d2ccf34d Exists: true + Reading patch net.minecraft.world.entity.ai.goal.EatBlockGoal.binpatch + Checksum: 534466ba Exists: true + Reading patch net.minecraft.world.entity.ai.goal.FloatGoal.binpatch + Checksum: 4903b345 Exists: true + Reading patch net.minecraft.world.entity.ai.goal.MeleeAttackGoal.binpatch + Checksum: 24d4092 Exists: true + Reading patch net.minecraft.world.entity.ai.goal.RangedBowAttackGoal.binpatch + Checksum: 9dd75e33 Exists: true + Reading patch net.minecraft.world.entity.ai.goal.RangedCrossbowAttackGoal$CrossbowState.binpatch + Checksum: c58083d0 Exists: true + Reading patch net.minecraft.world.entity.ai.goal.RangedCrossbowAttackGoal.binpatch + Checksum: 1fdc4c98 Exists: true + Reading patch net.minecraft.world.entity.ai.goal.RemoveBlockGoal.binpatch + Checksum: a0c6870b Exists: true + Reading patch net.minecraft.world.entity.ai.goal.RunAroundLikeCrazyGoal.binpatch + Checksum: 9952ee4e Exists: true + Reading patch net.minecraft.world.entity.ai.navigation.PathNavigation.binpatch + Checksum: 673b57ee Exists: true + Reading patch net.minecraft.world.entity.ai.navigation.WallClimberNavigation.binpatch + Checksum: 9e8772dd Exists: true + Reading patch net.minecraft.world.entity.ai.village.VillageSiege$State.binpatch + Checksum: ae848f4 Exists: true + Reading patch net.minecraft.world.entity.ai.village.VillageSiege.binpatch + Checksum: e6214f83 Exists: true + Reading patch net.minecraft.world.entity.ai.village.poi.PoiTypes.binpatch + Checksum: d35a58ad Exists: true + Reading patch net.minecraft.world.entity.animal.Animal.binpatch + Checksum: 4bc68621 Exists: true + Reading patch net.minecraft.world.entity.animal.Bee$1.binpatch + Checksum: 39e9ddef Exists: true + Reading patch net.minecraft.world.entity.animal.Bee$BaseBeeGoal.binpatch + Checksum: 293cb4be Exists: true + Reading patch net.minecraft.world.entity.animal.Bee$BeeAttackGoal.binpatch + Checksum: 4ee1fe11 Exists: true + Reading patch net.minecraft.world.entity.animal.Bee$BeeBecomeAngryTargetGoal.binpatch + Checksum: 97ac798e Exists: true + Reading patch net.minecraft.world.entity.animal.Bee$BeeEnterHiveGoal.binpatch + Checksum: af4ac2dd Exists: true + Reading patch net.minecraft.world.entity.animal.Bee$BeeGoToHiveGoal.binpatch + Checksum: dbb10865 Exists: true + Reading patch net.minecraft.world.entity.animal.Bee$BeeGoToKnownFlowerGoal.binpatch + Checksum: 414881a8 Exists: true + Reading patch net.minecraft.world.entity.animal.Bee$BeeGrowCropGoal.binpatch + Checksum: 1b278bb6 Exists: true + Reading patch net.minecraft.world.entity.animal.Bee$BeeHurtByOtherGoal.binpatch + Checksum: 9d8269c7 Exists: true + Reading patch net.minecraft.world.entity.animal.Bee$BeeLocateHiveGoal.binpatch + Checksum: e4adaa7a Exists: true + Reading patch net.minecraft.world.entity.animal.Bee$BeeLookControl.binpatch + Checksum: 183f173c Exists: true + Reading patch net.minecraft.world.entity.animal.Bee$BeePollinateGoal.binpatch + Checksum: 6898773e Exists: true + Reading patch net.minecraft.world.entity.animal.Bee$BeeWanderGoal.binpatch + Checksum: f84552b1 Exists: true + Reading patch net.minecraft.world.entity.animal.Bee.binpatch + Checksum: af6d8659 Exists: true + Reading patch net.minecraft.world.entity.animal.Cat$CatAvoidEntityGoal.binpatch + Checksum: 532b78cd Exists: true + Reading patch net.minecraft.world.entity.animal.Cat$CatRelaxOnOwnerGoal.binpatch + Checksum: 46343813 Exists: true + Reading patch net.minecraft.world.entity.animal.Cat$CatTemptGoal.binpatch + Checksum: d4dbb7a2 Exists: true + Reading patch net.minecraft.world.entity.animal.Cat.binpatch + Checksum: e98b07ca Exists: true + Reading patch net.minecraft.world.entity.animal.Fox$DefendTrustedTargetGoal.binpatch + Checksum: ddf8f512 Exists: true + Reading patch net.minecraft.world.entity.animal.Fox$FaceplantGoal.binpatch + Checksum: f19f2c63 Exists: true + Reading patch net.minecraft.world.entity.animal.Fox$FoxAlertableEntitiesSelector.binpatch + Checksum: 99d8bc9b Exists: true + Reading patch net.minecraft.world.entity.animal.Fox$FoxBehaviorGoal.binpatch + Checksum: 5d4a825e Exists: true + Reading patch net.minecraft.world.entity.animal.Fox$FoxBreedGoal.binpatch + Checksum: 96eac6b6 Exists: true + Reading patch net.minecraft.world.entity.animal.Fox$FoxEatBerriesGoal.binpatch + Checksum: 81461569 Exists: true + Reading patch net.minecraft.world.entity.animal.Fox$FoxFloatGoal.binpatch + Checksum: b9b5f2d9 Exists: true + Reading patch net.minecraft.world.entity.animal.Fox$FoxFollowParentGoal.binpatch + Checksum: 1924fed5 Exists: true + Reading patch net.minecraft.world.entity.animal.Fox$FoxGroupData.binpatch + Checksum: 8efccbae Exists: true + Reading patch net.minecraft.world.entity.animal.Fox$FoxLookAtPlayerGoal.binpatch + Checksum: 3f43542f Exists: true + Reading patch net.minecraft.world.entity.animal.Fox$FoxLookControl.binpatch + Checksum: faf1df29 Exists: true + Reading patch net.minecraft.world.entity.animal.Fox$FoxMeleeAttackGoal.binpatch + Checksum: 3387a889 Exists: true + Reading patch net.minecraft.world.entity.animal.Fox$FoxMoveControl.binpatch + Checksum: 469fbc1c Exists: true + Reading patch net.minecraft.world.entity.animal.Fox$FoxPanicGoal.binpatch + Checksum: df63bf37 Exists: true + Reading patch net.minecraft.world.entity.animal.Fox$FoxPounceGoal.binpatch + Checksum: aa528710 Exists: true + Reading patch net.minecraft.world.entity.animal.Fox$FoxSearchForItemsGoal.binpatch + Checksum: 95ce29b2 Exists: true + Reading patch net.minecraft.world.entity.animal.Fox$FoxStrollThroughVillageGoal.binpatch + Checksum: 220d1c90 Exists: true + Reading patch net.minecraft.world.entity.animal.Fox$PerchAndSearchGoal.binpatch + Checksum: e7fd9769 Exists: true + Reading patch net.minecraft.world.entity.animal.Fox$SeekShelterGoal.binpatch + Checksum: 9aa3a39f Exists: true + Reading patch net.minecraft.world.entity.animal.Fox$SleepGoal.binpatch + Checksum: cf2b8f7d Exists: true + Reading patch net.minecraft.world.entity.animal.Fox$StalkPreyGoal.binpatch + Checksum: 8c1ebdb5 Exists: true + Reading patch net.minecraft.world.entity.animal.Fox$Type.binpatch + Checksum: e813892b Exists: true + Reading patch net.minecraft.world.entity.animal.Fox.binpatch + Checksum: 37670b31 Exists: true + Reading patch net.minecraft.world.entity.animal.MushroomCow$MushroomType.binpatch + Checksum: 60326b14 Exists: true + Reading patch net.minecraft.world.entity.animal.MushroomCow.binpatch + Checksum: 9cac41e3 Exists: true + Reading patch net.minecraft.world.entity.animal.Ocelot$OcelotAvoidEntityGoal.binpatch + Checksum: a22884d5 Exists: true + Reading patch net.minecraft.world.entity.animal.Ocelot$OcelotTemptGoal.binpatch + Checksum: dfbb0999 Exists: true + Reading patch net.minecraft.world.entity.animal.Ocelot.binpatch + Checksum: 7ebd3635 Exists: true + Reading patch net.minecraft.world.entity.animal.Parrot$1.binpatch + Checksum: 2953170d Exists: true + Reading patch net.minecraft.world.entity.animal.Parrot$ParrotWanderGoal.binpatch + Checksum: 68f5ea54 Exists: true + Reading patch net.minecraft.world.entity.animal.Parrot$Variant.binpatch + Checksum: 679ee236 Exists: true + Reading patch net.minecraft.world.entity.animal.Parrot.binpatch + Checksum: aed940a0 Exists: true + Reading patch net.minecraft.world.entity.animal.Pig.binpatch + Checksum: e674643c Exists: true + Reading patch net.minecraft.world.entity.animal.Rabbit$EvilRabbitAttackGoal.binpatch + Checksum: efbafc49 Exists: true + Reading patch net.minecraft.world.entity.animal.Rabbit$RabbitAvoidEntityGoal.binpatch + Checksum: ad08a380 Exists: true + Reading patch net.minecraft.world.entity.animal.Rabbit$RabbitGroupData.binpatch + Checksum: ee06deca Exists: true + Reading patch net.minecraft.world.entity.animal.Rabbit$RabbitJumpControl.binpatch + Checksum: 6c02ecfa Exists: true + Reading patch net.minecraft.world.entity.animal.Rabbit$RabbitMoveControl.binpatch + Checksum: a4126010 Exists: true + Reading patch net.minecraft.world.entity.animal.Rabbit$RabbitPanicGoal.binpatch + Checksum: 649bca98 Exists: true + Reading patch net.minecraft.world.entity.animal.Rabbit$RaidGardenGoal.binpatch + Checksum: 833090c7 Exists: true + Reading patch net.minecraft.world.entity.animal.Rabbit$Variant.binpatch + Checksum: ba0dbc2b Exists: true + Reading patch net.minecraft.world.entity.animal.Rabbit.binpatch + Checksum: 53e89ac Exists: true + Reading patch net.minecraft.world.entity.animal.Sheep$1.binpatch + Checksum: 6a7753d4 Exists: true + Reading patch net.minecraft.world.entity.animal.Sheep$2.binpatch + Checksum: 2c10144c Exists: true + Reading patch net.minecraft.world.entity.animal.Sheep.binpatch + Checksum: 6460d912 Exists: true + Reading patch net.minecraft.world.entity.animal.SnowGolem.binpatch + Checksum: ac1f62aa Exists: true + Reading patch net.minecraft.world.entity.animal.Wolf$WolfAvoidEntityGoal.binpatch + Checksum: 4dac3252 Exists: true + Reading patch net.minecraft.world.entity.animal.Wolf$WolfPanicGoal.binpatch + Checksum: 8e0aeab7 Exists: true + Reading patch net.minecraft.world.entity.animal.Wolf.binpatch + Checksum: b3c18163 Exists: true + Reading patch net.minecraft.world.entity.animal.allay.Allay$JukeboxListener.binpatch + Checksum: 856931fa Exists: true + Reading patch net.minecraft.world.entity.animal.allay.Allay$VibrationUser.binpatch + Checksum: 847085cf Exists: true + Reading patch net.minecraft.world.entity.animal.allay.Allay.binpatch + Checksum: 3321b494 Exists: true + Reading patch net.minecraft.world.entity.animal.camel.Camel$CamelBodyRotationControl.binpatch + Checksum: ba4f2ec Exists: true + Reading patch net.minecraft.world.entity.animal.camel.Camel$CamelMoveControl.binpatch + Checksum: b1bf1e75 Exists: true + Reading patch net.minecraft.world.entity.animal.camel.Camel.binpatch + Checksum: dd6b2f38 Exists: true + Reading patch net.minecraft.world.entity.animal.horse.AbstractHorse$1.binpatch + Checksum: eba7a333 Exists: true + Reading patch net.minecraft.world.entity.animal.horse.AbstractHorse.binpatch + Checksum: ab0e4787 Exists: true + Reading patch net.minecraft.world.entity.animal.horse.Horse$HorseGroupData.binpatch + Checksum: 186fca9c Exists: true + Reading patch net.minecraft.world.entity.animal.horse.Horse.binpatch + Checksum: f71d7714 Exists: true + Reading patch net.minecraft.world.entity.animal.horse.SkeletonTrapGoal.binpatch + Checksum: 3a3ef037 Exists: true + Reading patch net.minecraft.world.entity.animal.sniffer.Sniffer$1.binpatch + Checksum: a790f01e Exists: true + Reading patch net.minecraft.world.entity.animal.sniffer.Sniffer$State.binpatch + Checksum: be9568d3 Exists: true + Reading patch net.minecraft.world.entity.animal.sniffer.Sniffer.binpatch + Checksum: 175f23d9 Exists: true + Reading patch net.minecraft.world.entity.boss.EnderDragonPart.binpatch + Checksum: 3c26d30a Exists: true + Reading patch net.minecraft.world.entity.boss.enderdragon.EnderDragon.binpatch + Checksum: 4509bbf2 Exists: true + Reading patch net.minecraft.world.entity.boss.wither.WitherBoss$WitherDoNothingGoal.binpatch + Checksum: d5c62601 Exists: true + Reading patch net.minecraft.world.entity.boss.wither.WitherBoss.binpatch + Checksum: fb95d67d Exists: true + Reading patch net.minecraft.world.entity.decoration.ArmorStand$1.binpatch + Checksum: 5c8c99e Exists: true + Reading patch net.minecraft.world.entity.decoration.ArmorStand.binpatch + Checksum: fc5f510 Exists: true + Reading patch net.minecraft.world.entity.decoration.HangingEntity$1.binpatch + Checksum: 7742c44d Exists: true + Reading patch net.minecraft.world.entity.decoration.HangingEntity.binpatch + Checksum: fa0b97d5 Exists: true + Reading patch net.minecraft.world.entity.item.FallingBlockEntity.binpatch + Checksum: d25bdcb6 Exists: true + Reading patch net.minecraft.world.entity.item.ItemEntity.binpatch + Checksum: 2f9fe60a Exists: true + Reading patch net.minecraft.world.entity.monster.AbstractSkeleton$1.binpatch + Checksum: 4f3f0739 Exists: true + Reading patch net.minecraft.world.entity.monster.AbstractSkeleton.binpatch + Checksum: e24258e6 Exists: true + Reading patch net.minecraft.world.entity.monster.CrossbowAttackMob.binpatch + Checksum: 126589ff Exists: true + Reading patch net.minecraft.world.entity.monster.EnderMan$EndermanFreezeWhenLookedAt.binpatch + Checksum: 820c305f Exists: true + Reading patch net.minecraft.world.entity.monster.EnderMan$EndermanLeaveBlockGoal.binpatch + Checksum: f3755bb4 Exists: true + Reading patch net.minecraft.world.entity.monster.EnderMan$EndermanLookForPlayerGoal.binpatch + Checksum: f9bc8a56 Exists: true + Reading patch net.minecraft.world.entity.monster.EnderMan$EndermanTakeBlockGoal.binpatch + Checksum: 2e44fa6d Exists: true + Reading patch net.minecraft.world.entity.monster.EnderMan.binpatch + Checksum: 56427901 Exists: true + Reading patch net.minecraft.world.entity.monster.Evoker$EvokerAttackSpellGoal.binpatch + Checksum: e309fad6 Exists: true + Reading patch net.minecraft.world.entity.monster.Evoker$EvokerCastingSpellGoal.binpatch + Checksum: af128582 Exists: true + Reading patch net.minecraft.world.entity.monster.Evoker$EvokerSummonSpellGoal.binpatch + Checksum: 9cb7f484 Exists: true + Reading patch net.minecraft.world.entity.monster.Evoker$EvokerWololoSpellGoal.binpatch + Checksum: 6794b26a Exists: true + Reading patch net.minecraft.world.entity.monster.Evoker.binpatch + Checksum: e5f47908 Exists: true + Reading patch net.minecraft.world.entity.monster.Illusioner$IllusionerBlindnessSpellGoal.binpatch + Checksum: 57310821 Exists: true + Reading patch net.minecraft.world.entity.monster.Illusioner$IllusionerMirrorSpellGoal.binpatch + Checksum: 503d3da8 Exists: true + Reading patch net.minecraft.world.entity.monster.Illusioner.binpatch + Checksum: 6d58b1f3 Exists: true + Reading patch net.minecraft.world.entity.monster.MagmaCube.binpatch + Checksum: 6409262a Exists: true + Reading patch net.minecraft.world.entity.monster.Monster.binpatch + Checksum: 9df980f1 Exists: true + Reading patch net.minecraft.world.entity.monster.Pillager.binpatch + Checksum: ad239c76 Exists: true + Reading patch net.minecraft.world.entity.monster.Ravager$RavagerMeleeAttackGoal.binpatch + Checksum: b75309c6 Exists: true + Reading patch net.minecraft.world.entity.monster.Ravager.binpatch + Checksum: ad5ca4f3 Exists: true + Reading patch net.minecraft.world.entity.monster.Shulker$ShulkerAttackGoal.binpatch + Checksum: 59849610 Exists: true + Reading patch net.minecraft.world.entity.monster.Shulker$ShulkerBodyRotationControl.binpatch + Checksum: db93b5d6 Exists: true + Reading patch net.minecraft.world.entity.monster.Shulker$ShulkerDefenseAttackGoal.binpatch + Checksum: 1a5ee1a6 Exists: true + Reading patch net.minecraft.world.entity.monster.Shulker$ShulkerLookControl.binpatch + Checksum: 822e91cf Exists: true + Reading patch net.minecraft.world.entity.monster.Shulker$ShulkerNearestAttackGoal.binpatch + Checksum: 712a5241 Exists: true + Reading patch net.minecraft.world.entity.monster.Shulker$ShulkerPeekGoal.binpatch + Checksum: c1cb7e36 Exists: true + Reading patch net.minecraft.world.entity.monster.Shulker.binpatch + Checksum: d36c0242 Exists: true + Reading patch net.minecraft.world.entity.monster.Silverfish$SilverfishMergeWithStoneGoal.binpatch + Checksum: c8d95209 Exists: true + Reading patch net.minecraft.world.entity.monster.Silverfish$SilverfishWakeUpFriendsGoal.binpatch + Checksum: d03d30da Exists: true + Reading patch net.minecraft.world.entity.monster.Silverfish.binpatch + Checksum: 52ebf41 Exists: true + Reading patch net.minecraft.world.entity.monster.Slime$SlimeAttackGoal.binpatch + Checksum: aa131428 Exists: true + Reading patch net.minecraft.world.entity.monster.Slime$SlimeFloatGoal.binpatch + Checksum: a10b092f Exists: true + Reading patch net.minecraft.world.entity.monster.Slime$SlimeKeepOnJumpingGoal.binpatch + Checksum: 82b36dd8 Exists: true + Reading patch net.minecraft.world.entity.monster.Slime$SlimeMoveControl.binpatch + Checksum: 4b4d83af Exists: true + Reading patch net.minecraft.world.entity.monster.Slime$SlimeRandomDirectionGoal.binpatch + Checksum: fe450d49 Exists: true + Reading patch net.minecraft.world.entity.monster.Slime.binpatch + Checksum: c3d1c5d6 Exists: true + Reading patch net.minecraft.world.entity.monster.Spider$SpiderAttackGoal.binpatch + Checksum: 7e688128 Exists: true + Reading patch net.minecraft.world.entity.monster.Spider$SpiderEffectsGroupData.binpatch + Checksum: 2f4e221b Exists: true + Reading patch net.minecraft.world.entity.monster.Spider$SpiderTargetGoal.binpatch + Checksum: dfad7969 Exists: true + Reading patch net.minecraft.world.entity.monster.Spider.binpatch + Checksum: efa09ea Exists: true + Reading patch net.minecraft.world.entity.monster.Zombie$ZombieAttackTurtleEggGoal.binpatch + Checksum: d8af8a40 Exists: true + Reading patch net.minecraft.world.entity.monster.Zombie$ZombieGroupData.binpatch + Checksum: 2f17944a Exists: true + Reading patch net.minecraft.world.entity.monster.Zombie.binpatch + Checksum: 927dd978 Exists: true + Reading patch net.minecraft.world.entity.monster.ZombieVillager.binpatch + Checksum: cb0f12e7 Exists: true + Reading patch net.minecraft.world.entity.monster.hoglin.Hoglin.binpatch + Checksum: 88f163b2 Exists: true + Reading patch net.minecraft.world.entity.monster.piglin.AbstractPiglin.binpatch + Checksum: 7b6e644d Exists: true + Reading patch net.minecraft.world.entity.monster.piglin.Piglin.binpatch + Checksum: b24bd980 Exists: true + Reading patch net.minecraft.world.entity.monster.piglin.PiglinAi.binpatch + Checksum: 9f0e370e Exists: true + Reading patch net.minecraft.world.entity.monster.piglin.StopHoldingItemIfNoLongerAdmiring.binpatch + Checksum: cf7d692e Exists: true + Reading patch net.minecraft.world.entity.npc.AbstractVillager.binpatch + Checksum: 9b7b3129 Exists: true + Reading patch net.minecraft.world.entity.npc.CatSpawner.binpatch + Checksum: ab04472f Exists: true + Reading patch net.minecraft.world.entity.npc.Villager.binpatch + Checksum: dd609e65 Exists: true + Reading patch net.minecraft.world.entity.player.Inventory.binpatch + Checksum: 464033c8 Exists: true + Reading patch net.minecraft.world.entity.player.Player$1.binpatch + Checksum: 4046b21c Exists: true + Reading patch net.minecraft.world.entity.player.Player$BedSleepingProblem.binpatch + Checksum: 3c854cca Exists: true + Reading patch net.minecraft.world.entity.player.Player.binpatch + Checksum: 45a1590e Exists: true + Reading patch net.minecraft.world.entity.projectile.AbstractArrow$1.binpatch + Checksum: 1c4fd05c Exists: true + Reading patch net.minecraft.world.entity.projectile.AbstractArrow$Pickup.binpatch + Checksum: 1f1f7cf5 Exists: true + Reading patch net.minecraft.world.entity.projectile.AbstractArrow.binpatch + Checksum: 25e1e821 Exists: true + Reading patch net.minecraft.world.entity.projectile.AbstractHurtingProjectile.binpatch + Checksum: 19683696 Exists: true + Reading patch net.minecraft.world.entity.projectile.FireworkRocketEntity.binpatch + Checksum: 65e147a7 Exists: true + Reading patch net.minecraft.world.entity.projectile.FishingHook$1.binpatch + Checksum: 90a4df07 Exists: true + Reading patch net.minecraft.world.entity.projectile.FishingHook$FishHookState.binpatch + Checksum: 42fa5a99 Exists: true + Reading patch net.minecraft.world.entity.projectile.FishingHook$OpenWaterType.binpatch + Checksum: f39c5e24 Exists: true + Reading patch net.minecraft.world.entity.projectile.FishingHook.binpatch + Checksum: ffe5c35 Exists: true + Reading patch net.minecraft.world.entity.projectile.LargeFireball.binpatch + Checksum: a96275f5 Exists: true + Reading patch net.minecraft.world.entity.projectile.LlamaSpit.binpatch + Checksum: c0efa09e Exists: true + Reading patch net.minecraft.world.entity.projectile.Projectile.binpatch + Checksum: b43787fe Exists: true + Reading patch net.minecraft.world.entity.projectile.ProjectileUtil.binpatch + Checksum: f4befab5 Exists: true + Reading patch net.minecraft.world.entity.projectile.ShulkerBullet.binpatch + Checksum: 53c087d7 Exists: true + Reading patch net.minecraft.world.entity.projectile.SmallFireball.binpatch + Checksum: 278328da Exists: true + Reading patch net.minecraft.world.entity.projectile.ThrowableProjectile.binpatch + Checksum: 37680a71 Exists: true + Reading patch net.minecraft.world.entity.projectile.ThrownEnderpearl.binpatch + Checksum: f2621e6c Exists: true + Reading patch net.minecraft.world.entity.projectile.WitherSkull.binpatch + Checksum: bada3fd6 Exists: true + Reading patch net.minecraft.world.entity.raid.Raid$1.binpatch + Checksum: b4fe07b2 Exists: true + Reading patch net.minecraft.world.entity.raid.Raid$RaidStatus.binpatch + Checksum: be7aa2c3 Exists: true + Reading patch net.minecraft.world.entity.raid.Raid$RaiderType.binpatch + Checksum: cc800e91 Exists: true + Reading patch net.minecraft.world.entity.raid.Raid.binpatch + Checksum: 76b97449 Exists: true + Reading patch net.minecraft.world.entity.vehicle.AbstractMinecart$1.binpatch + Checksum: 94a45f95 Exists: true + Reading patch net.minecraft.world.entity.vehicle.AbstractMinecart$Type.binpatch + Checksum: a496c8a Exists: true + Reading patch net.minecraft.world.entity.vehicle.AbstractMinecart.binpatch + Checksum: 8759b206 Exists: true + Reading patch net.minecraft.world.entity.vehicle.AbstractMinecartContainer.binpatch + Checksum: 1e9c1301 Exists: true + Reading patch net.minecraft.world.entity.vehicle.Boat$1.binpatch + Checksum: 8edb59bc Exists: true + Reading patch net.minecraft.world.entity.vehicle.Boat$Status.binpatch + Checksum: cd7a4309 Exists: true + Reading patch net.minecraft.world.entity.vehicle.Boat$Type.binpatch + Checksum: 2c3ce4a6 Exists: true + Reading patch net.minecraft.world.entity.vehicle.Boat.binpatch + Checksum: fe1e4db3 Exists: true + Reading patch net.minecraft.world.entity.vehicle.ChestBoat$1.binpatch + Checksum: a973f2cd Exists: true + Reading patch net.minecraft.world.entity.vehicle.ChestBoat.binpatch + Checksum: 4188dea0 Exists: true + Reading patch net.minecraft.world.entity.vehicle.ContainerEntity$1.binpatch + Checksum: c135346c Exists: true + Reading patch net.minecraft.world.entity.vehicle.ContainerEntity.binpatch + Checksum: 9144bd00 Exists: true + Reading patch net.minecraft.world.entity.vehicle.Minecart.binpatch + Checksum: 49cfc926 Exists: true + Reading patch net.minecraft.world.entity.vehicle.MinecartCommandBlock$MinecartCommandBase.binpatch + Checksum: e799b258 Exists: true + Reading patch net.minecraft.world.entity.vehicle.MinecartCommandBlock.binpatch + Checksum: 622e7a7d Exists: true + Reading patch net.minecraft.world.entity.vehicle.MinecartFurnace.binpatch + Checksum: 486d80ff Exists: true + Reading patch net.minecraft.world.entity.vehicle.MinecartSpawner$1.binpatch + Checksum: f7f70cb5 Exists: true + Reading patch net.minecraft.world.entity.vehicle.MinecartSpawner.binpatch + Checksum: c81ee233 Exists: true + Reading patch net.minecraft.world.food.FoodData.binpatch + Checksum: 2cde10a1 Exists: true + Reading patch net.minecraft.world.food.FoodProperties$Builder.binpatch + Checksum: 4bcfe864 Exists: true + Reading patch net.minecraft.world.food.FoodProperties.binpatch + Checksum: f7a610c Exists: true + Reading patch net.minecraft.world.inventory.AbstractContainerMenu$1.binpatch + Checksum: c1861c61 Exists: true + Reading patch net.minecraft.world.inventory.AbstractContainerMenu.binpatch + Checksum: a5f4a399 Exists: true + Reading patch net.minecraft.world.inventory.AbstractFurnaceMenu.binpatch + Checksum: 3f11159c Exists: true + Reading patch net.minecraft.world.inventory.AnvilMenu$1.binpatch + Checksum: fb9be2eb Exists: true + Reading patch net.minecraft.world.inventory.AnvilMenu.binpatch + Checksum: 258e6a74 Exists: true + Reading patch net.minecraft.world.inventory.BeaconMenu$1.binpatch + Checksum: 6350fb73 Exists: true + Reading patch net.minecraft.world.inventory.BeaconMenu$PaymentSlot.binpatch + Checksum: 65e12ddd Exists: true + Reading patch net.minecraft.world.inventory.BeaconMenu.binpatch + Checksum: 916e1fdd Exists: true + Reading patch net.minecraft.world.inventory.BrewingStandMenu$FuelSlot.binpatch + Checksum: 59010de7 Exists: true + Reading patch net.minecraft.world.inventory.BrewingStandMenu$IngredientsSlot.binpatch + Checksum: d5ffea17 Exists: true + Reading patch net.minecraft.world.inventory.BrewingStandMenu$PotionSlot.binpatch + Checksum: 177c2ce3 Exists: true + Reading patch net.minecraft.world.inventory.BrewingStandMenu.binpatch + Checksum: b41ffc1 Exists: true + Reading patch net.minecraft.world.inventory.EnchantmentMenu$1.binpatch + Checksum: 1ba8c0fd Exists: true + Reading patch net.minecraft.world.inventory.EnchantmentMenu$2.binpatch + Checksum: 145925d2 Exists: true + Reading patch net.minecraft.world.inventory.EnchantmentMenu$3.binpatch + Checksum: 72f65b16 Exists: true + Reading patch net.minecraft.world.inventory.EnchantmentMenu.binpatch + Checksum: c0550011 Exists: true + Reading patch net.minecraft.world.inventory.FurnaceResultSlot.binpatch + Checksum: 1e1655e0 Exists: true + Reading patch net.minecraft.world.inventory.GrindstoneMenu$1.binpatch + Checksum: 9673bf02 Exists: true + Reading patch net.minecraft.world.inventory.GrindstoneMenu$2.binpatch + Checksum: ba936bab Exists: true + Reading patch net.minecraft.world.inventory.GrindstoneMenu$3.binpatch + Checksum: a3076bb0 Exists: true + Reading patch net.minecraft.world.inventory.GrindstoneMenu$4.binpatch + Checksum: 6b56690a Exists: true + Reading patch net.minecraft.world.inventory.GrindstoneMenu.binpatch + Checksum: 2e693e80 Exists: true + Reading patch net.minecraft.world.inventory.InventoryMenu$1.binpatch + Checksum: 77762aa0 Exists: true + Reading patch net.minecraft.world.inventory.InventoryMenu$2.binpatch + Checksum: 243b440a Exists: true + Reading patch net.minecraft.world.inventory.InventoryMenu.binpatch + Checksum: aec2a52a Exists: true + Reading patch net.minecraft.world.inventory.MenuType$MenuSupplier.binpatch + Checksum: 9ea7a14d Exists: true + Reading patch net.minecraft.world.inventory.MenuType.binpatch + Checksum: a0220062 Exists: true + Reading patch net.minecraft.world.inventory.RecipeBookMenu.binpatch + Checksum: 2f621792 Exists: true + Reading patch net.minecraft.world.inventory.RecipeBookType.binpatch + Checksum: 80f91509 Exists: true + Reading patch net.minecraft.world.inventory.ResultSlot.binpatch + Checksum: cb2e5583 Exists: true + Reading patch net.minecraft.world.inventory.Slot.binpatch + Checksum: 8bf5b32b Exists: true + Reading patch net.minecraft.world.item.ArmorItem$1.binpatch + Checksum: 3a86f1b1 Exists: true + Reading patch net.minecraft.world.item.ArmorItem$Type.binpatch + Checksum: 4496ccb6 Exists: true + Reading patch net.minecraft.world.item.ArmorItem.binpatch + Checksum: 72437192 Exists: true + Reading patch net.minecraft.world.item.ArrowItem.binpatch + Checksum: 8ba65290 Exists: true + Reading patch net.minecraft.world.item.AxeItem.binpatch + Checksum: 2420e29e Exists: true + Reading patch net.minecraft.world.item.BannerItem.binpatch + Checksum: 15dc363c Exists: true + Reading patch net.minecraft.world.item.BlockItem.binpatch + Checksum: eb73992f Exists: true + Reading patch net.minecraft.world.item.BoneMealItem.binpatch + Checksum: ecc379a9 Exists: true + Reading patch net.minecraft.world.item.BowItem.binpatch + Checksum: 1aa7805 Exists: true + Reading patch net.minecraft.world.item.BucketItem.binpatch + Checksum: 75cde665 Exists: true + Reading patch net.minecraft.world.item.BundleItem.binpatch + Checksum: 68f84d70 Exists: true + Reading patch net.minecraft.world.item.ChorusFruitItem.binpatch + Checksum: 1a56a7c7 Exists: true + Reading patch net.minecraft.world.item.CreativeModeTab$1.binpatch + Checksum: dc5dd3bd Exists: true + Reading patch net.minecraft.world.item.CreativeModeTab$Builder.binpatch + Checksum: b629a4e5 Exists: true + Reading patch net.minecraft.world.item.CreativeModeTab$DisplayItemsGenerator.binpatch + Checksum: 43eeca04 Exists: true + Reading patch net.minecraft.world.item.CreativeModeTab$ItemDisplayBuilder.binpatch + Checksum: d419814f Exists: true + Reading patch net.minecraft.world.item.CreativeModeTab$ItemDisplayParameters.binpatch + Checksum: 90148061 Exists: true + Reading patch net.minecraft.world.item.CreativeModeTab$Output.binpatch + Checksum: db801822 Exists: true + Reading patch net.minecraft.world.item.CreativeModeTab$Row.binpatch + Checksum: 594b1ca1 Exists: true + Reading patch net.minecraft.world.item.CreativeModeTab$TabVisibility.binpatch + Checksum: a414910 Exists: true + Reading patch net.minecraft.world.item.CreativeModeTab$Type.binpatch + Checksum: b765338a Exists: true + Reading patch net.minecraft.world.item.CreativeModeTab.binpatch + Checksum: 41d06a4e Exists: true + Reading patch net.minecraft.world.item.CreativeModeTabs.binpatch + Checksum: 2b913416 Exists: true + Reading patch net.minecraft.world.item.CrossbowItem.binpatch + Checksum: 80b18658 Exists: true + Reading patch net.minecraft.world.item.DiggerItem.binpatch + Checksum: 4bb54df4 Exists: true + Reading patch net.minecraft.world.item.DispensibleContainerItem.binpatch + Checksum: fd7b1f86 Exists: true + Reading patch net.minecraft.world.item.DyeColor.binpatch + Checksum: c45bb6f5 Exists: true + Reading patch net.minecraft.world.item.DyeableHorseArmorItem.binpatch + Checksum: a1c2c76d Exists: true + Reading patch net.minecraft.world.item.ElytraItem.binpatch + Checksum: 88da0826 Exists: true + Reading patch net.minecraft.world.item.FireworkRocketItem$Shape.binpatch + Checksum: 4c033c46 Exists: true + Reading patch net.minecraft.world.item.FireworkRocketItem.binpatch + Checksum: bf919d2c Exists: true + Reading patch net.minecraft.world.item.FireworkStarItem.binpatch + Checksum: 55165bf9 Exists: true + Reading patch net.minecraft.world.item.FishingRodItem.binpatch + Checksum: 4e9635ab Exists: true + Reading patch net.minecraft.world.item.HoeItem.binpatch + Checksum: 7d2d6efb Exists: true + Reading patch net.minecraft.world.item.HorseArmorItem.binpatch + Checksum: b4d79895 Exists: true + Reading patch net.minecraft.world.item.Item$1.binpatch + Checksum: 4963a316 Exists: true + Reading patch net.minecraft.world.item.Item$Properties.binpatch + Checksum: c9c56440 Exists: true + Reading patch net.minecraft.world.item.Item.binpatch + Checksum: 24cab0b1 Exists: true + Reading patch net.minecraft.world.item.ItemDisplayContext.binpatch + Checksum: 3f9ff49f Exists: true + Reading patch net.minecraft.world.item.ItemStack$TooltipPart.binpatch + Checksum: a20872ad Exists: true + Reading patch net.minecraft.world.item.ItemStack.binpatch + Checksum: f941119b Exists: true + Reading patch net.minecraft.world.item.Items$1.binpatch + Checksum: 0 Exists: false + Reading patch net.minecraft.world.item.Items.binpatch + Checksum: 28165aa1 Exists: true + Reading patch net.minecraft.world.item.MapItem.binpatch + Checksum: 687e160f Exists: true + Reading patch net.minecraft.world.item.MilkBucketItem.binpatch + Checksum: d41bbdf2 Exists: true + Reading patch net.minecraft.world.item.MinecartItem$1.binpatch + Checksum: bcd1f1ff Exists: true + Reading patch net.minecraft.world.item.MinecartItem.binpatch + Checksum: e6975cd3 Exists: true + Reading patch net.minecraft.world.item.MobBucketItem.binpatch + Checksum: 2be84fec Exists: true + Reading patch net.minecraft.world.item.PickaxeItem.binpatch + Checksum: 116ff76e Exists: true + Reading patch net.minecraft.world.item.Rarity.binpatch + Checksum: 16e73e86 Exists: true + Reading patch net.minecraft.world.item.RecordItem.binpatch + Checksum: 96677be5 Exists: true + Reading patch net.minecraft.world.item.ShearsItem.binpatch + Checksum: 33dcea29 Exists: true + Reading patch net.minecraft.world.item.ShieldItem.binpatch + Checksum: 7b94d871 Exists: true + Reading patch net.minecraft.world.item.ShovelItem.binpatch + Checksum: b20813a6 Exists: true + Reading patch net.minecraft.world.item.SpawnEggItem.binpatch + Checksum: 661cc3a Exists: true + Reading patch net.minecraft.world.item.StandingAndWallBlockItem.binpatch + Checksum: 2c9d1132 Exists: true + Reading patch net.minecraft.world.item.SuspiciousStewItem.binpatch + Checksum: 65ef5686 Exists: true + Reading patch net.minecraft.world.item.SwordItem.binpatch + Checksum: 699d48df Exists: true + Reading patch net.minecraft.world.item.Tier.binpatch + Checksum: 5f383c85 Exists: true + Reading patch net.minecraft.world.item.Tiers.binpatch + Checksum: f7980cff Exists: true + Reading patch net.minecraft.world.item.UseAnim.binpatch + Checksum: a850255b Exists: true + Reading patch net.minecraft.world.item.alchemy.Potion.binpatch + Checksum: 58d67bff Exists: true + Reading patch net.minecraft.world.item.alchemy.PotionBrewing$Mix.binpatch + Checksum: 222c060a Exists: true + Reading patch net.minecraft.world.item.alchemy.PotionBrewing.binpatch + Checksum: ef0e13b4 Exists: true + Reading patch net.minecraft.world.item.crafting.BannerDuplicateRecipe.binpatch + Checksum: ffbf8768 Exists: true + Reading patch net.minecraft.world.item.crafting.BookCloningRecipe.binpatch + Checksum: 7e23cab6 Exists: true + Reading patch net.minecraft.world.item.crafting.FireworkStarRecipe.binpatch + Checksum: 650a3f10 Exists: true + Reading patch net.minecraft.world.item.crafting.Ingredient$ItemValue.binpatch + Checksum: 646fbdf4 Exists: true + Reading patch net.minecraft.world.item.crafting.Ingredient$TagValue.binpatch + Checksum: a0f1ad63 Exists: true + Reading patch net.minecraft.world.item.crafting.Ingredient$Value.binpatch + Checksum: c94b7598 Exists: true + Reading patch net.minecraft.world.item.crafting.Ingredient.binpatch + Checksum: a49a99e1 Exists: true + Reading patch net.minecraft.world.item.crafting.Recipe.binpatch + Checksum: e5a9b1d0 Exists: true + Reading patch net.minecraft.world.item.crafting.RecipeManager$1.binpatch + Checksum: bf06f702 Exists: true + Reading patch net.minecraft.world.item.crafting.RecipeManager$CachedCheck.binpatch + Checksum: 7f42ae11 Exists: true + Reading patch net.minecraft.world.item.crafting.RecipeManager.binpatch + Checksum: 486cb39d Exists: true + Reading patch net.minecraft.world.item.crafting.RecipeSerializer.binpatch + Checksum: 1e8d30a0 Exists: true + Reading patch net.minecraft.world.item.crafting.RecipeType$1.binpatch + Checksum: 7df4c55d Exists: true + Reading patch net.minecraft.world.item.crafting.RecipeType$2.binpatch + Checksum: 0 Exists: false + Reading patch net.minecraft.world.item.crafting.RecipeType.binpatch + Checksum: ce5aa21c Exists: true + Reading patch net.minecraft.world.item.crafting.RepairItemRecipe.binpatch + Checksum: 637dba4d Exists: true + Reading patch net.minecraft.world.item.crafting.ShapedRecipe$Serializer.binpatch + Checksum: d5f0f3ad Exists: true + Reading patch net.minecraft.world.item.crafting.ShapedRecipe.binpatch + Checksum: e5104173 Exists: true + Reading patch net.minecraft.world.item.crafting.ShapelessRecipe$Serializer.binpatch + Checksum: a15747c0 Exists: true + Reading patch net.minecraft.world.item.crafting.ShapelessRecipe.binpatch + Checksum: 79f89cd7 Exists: true + Reading patch net.minecraft.world.item.crafting.ShulkerBoxColoring.binpatch + Checksum: 8037abf3 Exists: true + Reading patch net.minecraft.world.item.crafting.SimpleCookingSerializer$CookieBaker.binpatch + Checksum: b5b52bd1 Exists: true + Reading patch net.minecraft.world.item.crafting.SimpleCookingSerializer.binpatch + Checksum: 67f85f84 Exists: true + Reading patch net.minecraft.world.item.crafting.SmithingTransformRecipe$Serializer.binpatch + Checksum: ea043ad7 Exists: true + Reading patch net.minecraft.world.item.crafting.SmithingTransformRecipe.binpatch + Checksum: 9202389c Exists: true + Reading patch net.minecraft.world.item.crafting.SmithingTrimRecipe$Serializer.binpatch + Checksum: b17a6545 Exists: true + Reading patch net.minecraft.world.item.crafting.SmithingTrimRecipe.binpatch + Checksum: c8bcc4e8 Exists: true + Reading patch net.minecraft.world.item.enchantment.DiggingEnchantment.binpatch + Checksum: 1bbc418 Exists: true + Reading patch net.minecraft.world.item.enchantment.Enchantment$Rarity.binpatch + Checksum: 18d264c8 Exists: true + Reading patch net.minecraft.world.item.enchantment.Enchantment.binpatch + Checksum: 88f1b440 Exists: true + Reading patch net.minecraft.world.item.enchantment.EnchantmentCategory$1.binpatch + Checksum: 480cae2b Exists: true + Reading patch net.minecraft.world.item.enchantment.EnchantmentCategory$10.binpatch + Checksum: 6c8fb062 Exists: true + Reading patch net.minecraft.world.item.enchantment.EnchantmentCategory$11.binpatch + Checksum: aff0ae34 Exists: true + Reading patch net.minecraft.world.item.enchantment.EnchantmentCategory$12.binpatch + Checksum: b6f9e5f1 Exists: true + Reading patch net.minecraft.world.item.enchantment.EnchantmentCategory$13.binpatch + Checksum: 10a3b080 Exists: true + Reading patch net.minecraft.world.item.enchantment.EnchantmentCategory$14.binpatch + Checksum: 48fa0371 Exists: true + Reading patch net.minecraft.world.item.enchantment.EnchantmentCategory$2.binpatch + Checksum: ba10ff40 Exists: true + Reading patch net.minecraft.world.item.enchantment.EnchantmentCategory$3.binpatch + Checksum: cdc3ff51 Exists: true + Reading patch net.minecraft.world.item.enchantment.EnchantmentCategory$4.binpatch + Checksum: 1617ffb1 Exists: true + Reading patch net.minecraft.world.item.enchantment.EnchantmentCategory$5.binpatch + Checksum: c29aff5c Exists: true + Reading patch net.minecraft.world.item.enchantment.EnchantmentCategory$6.binpatch + Checksum: 8aa9ae80 Exists: true + Reading patch net.minecraft.world.item.enchantment.EnchantmentCategory$7.binpatch + Checksum: 6b41aed7 Exists: true + Reading patch net.minecraft.world.item.enchantment.EnchantmentCategory$8.binpatch + Checksum: 8213b080 Exists: true + Reading patch net.minecraft.world.item.enchantment.EnchantmentCategory$9.binpatch + Checksum: b216af7d Exists: true + Reading patch net.minecraft.world.item.enchantment.EnchantmentCategory.binpatch + Checksum: 77522169 Exists: true + Reading patch net.minecraft.world.item.enchantment.EnchantmentHelper$EnchantmentVisitor.binpatch + Checksum: 76f1860a Exists: true + Reading patch net.minecraft.world.item.enchantment.EnchantmentHelper.binpatch + Checksum: b6732a98 Exists: true + Reading patch net.minecraft.world.item.enchantment.FrostWalkerEnchantment.binpatch + Checksum: 9f62235e Exists: true + Reading patch net.minecraft.world.item.trading.MerchantOffer.binpatch + Checksum: b62d4b6a Exists: true + Reading patch net.minecraft.world.level.BaseSpawner.binpatch + Checksum: 50f5824e Exists: true + Reading patch net.minecraft.world.level.BlockAndTintGetter.binpatch + Checksum: 85fa8cc3 Exists: true + Reading patch net.minecraft.world.level.BlockGetter.binpatch + Checksum: 8991c0d8 Exists: true + Reading patch net.minecraft.world.level.ClipContext$Block.binpatch + Checksum: 47260a3a Exists: true + Reading patch net.minecraft.world.level.ClipContext$Fluid.binpatch + Checksum: cc41f426 Exists: true + Reading patch net.minecraft.world.level.ClipContext$ShapeGetter.binpatch + Checksum: 70e396e0 Exists: true + Reading patch net.minecraft.world.level.ClipContext.binpatch + Checksum: ba1067f4 Exists: true + Reading patch net.minecraft.world.level.DataPackConfig.binpatch + Checksum: 24e926e0 Exists: true + Reading patch net.minecraft.world.level.Explosion$BlockInteraction.binpatch + Checksum: f8993d61 Exists: true + Reading patch net.minecraft.world.level.Explosion.binpatch + Checksum: 34cb5523 Exists: true + Reading patch net.minecraft.world.level.ExplosionDamageCalculator.binpatch + Checksum: 98c75eda Exists: true + Reading patch net.minecraft.world.level.ForcedChunksSavedData.binpatch + Checksum: 81a3564e Exists: true + Reading patch net.minecraft.world.level.Level$1.binpatch + Checksum: 38a12447 Exists: true + Reading patch net.minecraft.world.level.Level$2.binpatch + Checksum: daa8c4fb Exists: true + Reading patch net.minecraft.world.level.Level$ExplosionInteraction.binpatch + Checksum: cb77459f Exists: true + Reading patch net.minecraft.world.level.Level.binpatch + Checksum: 63796266 Exists: true + Reading patch net.minecraft.world.level.LevelReader.binpatch + Checksum: 1f46fe29 Exists: true + Reading patch net.minecraft.world.level.LevelSettings.binpatch + Checksum: 4ce33d92 Exists: true + Reading patch net.minecraft.world.level.NaturalSpawner$1.binpatch + Checksum: e961d29a Exists: true + Reading patch net.minecraft.world.level.NaturalSpawner$AfterSpawnCallback.binpatch + Checksum: f73682d0 Exists: true + Reading patch net.minecraft.world.level.NaturalSpawner$ChunkGetter.binpatch + Checksum: 39598d01 Exists: true + Reading patch net.minecraft.world.level.NaturalSpawner$SpawnPredicate.binpatch + Checksum: 56d7beb5 Exists: true + Reading patch net.minecraft.world.level.NaturalSpawner$SpawnState.binpatch + Checksum: b9b516a4 Exists: true + Reading patch net.minecraft.world.level.NaturalSpawner.binpatch + Checksum: c5c8c985 Exists: true + Reading patch net.minecraft.world.level.SignalGetter.binpatch + Checksum: 757abb69 Exists: true + Reading patch net.minecraft.world.level.biome.Biome$1.binpatch + Checksum: 27b21597 Exists: true + Reading patch net.minecraft.world.level.biome.Biome$BiomeBuilder.binpatch + Checksum: 3feb81a4 Exists: true + Reading patch net.minecraft.world.level.biome.Biome$ClimateSettings.binpatch + Checksum: a6f84944 Exists: true + Reading patch net.minecraft.world.level.biome.Biome$Precipitation.binpatch + Checksum: 45a2322f Exists: true + Reading patch net.minecraft.world.level.biome.Biome$TemperatureModifier$1.binpatch + Checksum: 7eb6c2fb Exists: true + Reading patch net.minecraft.world.level.biome.Biome$TemperatureModifier$2.binpatch + Checksum: b7e1518a Exists: true + Reading patch net.minecraft.world.level.biome.Biome$TemperatureModifier.binpatch + Checksum: 93f5e8cd Exists: true + Reading patch net.minecraft.world.level.biome.Biome.binpatch + Checksum: e2e47aab Exists: true + Reading patch net.minecraft.world.level.biome.BiomeGenerationSettings$Builder.binpatch + Checksum: d8095bee Exists: true + Reading patch net.minecraft.world.level.biome.BiomeGenerationSettings$PlainBuilder.binpatch + Checksum: b91bcef1 Exists: true + Reading patch net.minecraft.world.level.biome.BiomeGenerationSettings.binpatch + Checksum: e9f64d07 Exists: true + Reading patch net.minecraft.world.level.biome.BiomeSpecialEffects$Builder.binpatch + Checksum: 1066284 Exists: true + Reading patch net.minecraft.world.level.biome.BiomeSpecialEffects$GrassColorModifier$1.binpatch + Checksum: f263cae4 Exists: true + Reading patch net.minecraft.world.level.biome.BiomeSpecialEffects$GrassColorModifier$2.binpatch + Checksum: 4643d057 Exists: true + Reading patch net.minecraft.world.level.biome.BiomeSpecialEffects$GrassColorModifier$3.binpatch + Checksum: dcf52c83 Exists: true + Reading patch net.minecraft.world.level.biome.BiomeSpecialEffects$GrassColorModifier$ColorModifier.binpatch + Checksum: 0 Exists: false + Reading patch net.minecraft.world.level.biome.BiomeSpecialEffects$GrassColorModifier.binpatch + Checksum: e84a4b22 Exists: true + Reading patch net.minecraft.world.level.biome.BiomeSpecialEffects.binpatch + Checksum: 6b4aa458 Exists: true + Reading patch net.minecraft.world.level.biome.MobSpawnSettings$Builder.binpatch + Checksum: 384b63d5 Exists: true + Reading patch net.minecraft.world.level.biome.MobSpawnSettings$MobSpawnCost.binpatch + Checksum: 6b05a19a Exists: true + Reading patch net.minecraft.world.level.biome.MobSpawnSettings$SpawnerData.binpatch + Checksum: b213b4e4 Exists: true + Reading patch net.minecraft.world.level.biome.MobSpawnSettings.binpatch + Checksum: ffd63041 Exists: true + Reading patch net.minecraft.world.level.block.BambooSaplingBlock.binpatch + Checksum: 7af83977 Exists: true + Reading patch net.minecraft.world.level.block.BambooStalkBlock.binpatch + Checksum: 394cb2a2 Exists: true + Reading patch net.minecraft.world.level.block.BaseFireBlock.binpatch + Checksum: 759881ae Exists: true + Reading patch net.minecraft.world.level.block.BaseRailBlock$1.binpatch + Checksum: 1af8dd09 Exists: true + Reading patch net.minecraft.world.level.block.BaseRailBlock.binpatch + Checksum: 72e650d9 Exists: true + Reading patch net.minecraft.world.level.block.BeehiveBlock.binpatch + Checksum: 27edb3cc Exists: true + Reading patch net.minecraft.world.level.block.Block$1.binpatch + Checksum: fc738df8 Exists: true + Reading patch net.minecraft.world.level.block.Block$2.binpatch + Checksum: e3eed41a Exists: true + Reading patch net.minecraft.world.level.block.Block$BlockStatePairKey.binpatch + Checksum: 8c1e2ade Exists: true + Reading patch net.minecraft.world.level.block.Block.binpatch + Checksum: 9617557b Exists: true + Reading patch net.minecraft.world.level.block.Blocks.binpatch + Checksum: 58c431fe Exists: true + Reading patch net.minecraft.world.level.block.BucketPickup.binpatch + Checksum: c21e87ca Exists: true + Reading patch net.minecraft.world.level.block.BushBlock.binpatch + Checksum: b4b1e8a5 Exists: true + Reading patch net.minecraft.world.level.block.CactusBlock.binpatch + Checksum: 3d17e6df Exists: true + Reading patch net.minecraft.world.level.block.CampfireBlock.binpatch + Checksum: fe4ae0fd Exists: true + Reading patch net.minecraft.world.level.block.ChestBlock$1.binpatch + Checksum: 36778837 Exists: true + Reading patch net.minecraft.world.level.block.ChestBlock$2$1.binpatch + Checksum: 5ac8d8bc Exists: true + Reading patch net.minecraft.world.level.block.ChestBlock$2.binpatch + Checksum: 715cf54f Exists: true + Reading patch net.minecraft.world.level.block.ChestBlock$3.binpatch + Checksum: 57d77140 Exists: true + Reading patch net.minecraft.world.level.block.ChestBlock$4.binpatch + Checksum: 2a73aad1 Exists: true + Reading patch net.minecraft.world.level.block.ChestBlock.binpatch + Checksum: 7b63e54a Exists: true + Reading patch net.minecraft.world.level.block.ChorusFlowerBlock.binpatch + Checksum: 8aca2cca Exists: true + Reading patch net.minecraft.world.level.block.CocoaBlock$1.binpatch + Checksum: b466aa81 Exists: true + Reading patch net.minecraft.world.level.block.CocoaBlock.binpatch + Checksum: ef745227 Exists: true + Reading patch net.minecraft.world.level.block.ComparatorBlock.binpatch + Checksum: 6fc0010b Exists: true + Reading patch net.minecraft.world.level.block.ConcretePowderBlock.binpatch + Checksum: a77a05f2 Exists: true + Reading patch net.minecraft.world.level.block.CoralBlock.binpatch + Checksum: 1ebf975e Exists: true + Reading patch net.minecraft.world.level.block.CropBlock.binpatch + Checksum: e41745bc Exists: true + Reading patch net.minecraft.world.level.block.DeadBushBlock.binpatch + Checksum: 7b8c2886 Exists: true + Reading patch net.minecraft.world.level.block.DetectorRailBlock$1.binpatch + Checksum: 1459cf3b Exists: true + Reading patch net.minecraft.world.level.block.DetectorRailBlock.binpatch + Checksum: 3f4a7779 Exists: true + Reading patch net.minecraft.world.level.block.DiodeBlock.binpatch + Checksum: 567aac4f Exists: true + Reading patch net.minecraft.world.level.block.DoublePlantBlock.binpatch + Checksum: 8ba67818 Exists: true + Reading patch net.minecraft.world.level.block.DropExperienceBlock.binpatch + Checksum: 3a661784 Exists: true + Reading patch net.minecraft.world.level.block.DropperBlock.binpatch + Checksum: c6ceb2a Exists: true + Reading patch net.minecraft.world.level.block.EnchantmentTableBlock.binpatch + Checksum: 92ae62ac Exists: true + Reading patch net.minecraft.world.level.block.FarmBlock.binpatch + Checksum: 41fd4169 Exists: true + Reading patch net.minecraft.world.level.block.FenceGateBlock$1.binpatch + Checksum: bba4c950 Exists: true + Reading patch net.minecraft.world.level.block.FenceGateBlock.binpatch + Checksum: 2dcebd6 Exists: true + Reading patch net.minecraft.world.level.block.FireBlock.binpatch + Checksum: acb24d97 Exists: true + Reading patch net.minecraft.world.level.block.FlowerBlock.binpatch + Checksum: b1e1d660 Exists: true + Reading patch net.minecraft.world.level.block.FlowerPotBlock.binpatch + Checksum: 76171bba Exists: true + Reading patch net.minecraft.world.level.block.FungusBlock.binpatch + Checksum: b7bdf13c Exists: true + Reading patch net.minecraft.world.level.block.GrowingPlantHeadBlock.binpatch + Checksum: 45bbcae0 Exists: true + Reading patch net.minecraft.world.level.block.LeavesBlock.binpatch + Checksum: 5858c4f1 Exists: true + Reading patch net.minecraft.world.level.block.LiquidBlock.binpatch + Checksum: 73d0374e Exists: true + Reading patch net.minecraft.world.level.block.MushroomBlock.binpatch + Checksum: 9380741c Exists: true + Reading patch net.minecraft.world.level.block.NetherWartBlock.binpatch + Checksum: 51c517af Exists: true + Reading patch net.minecraft.world.level.block.NoteBlock.binpatch + Checksum: 4b629588 Exists: true + Reading patch net.minecraft.world.level.block.PitcherCropBlock$PosAndState.binpatch + Checksum: 14e3edba Exists: true + Reading patch net.minecraft.world.level.block.PitcherCropBlock.binpatch + Checksum: 1651d816 Exists: true + Reading patch net.minecraft.world.level.block.PowderSnowBlock.binpatch + Checksum: f535fc3e Exists: true + Reading patch net.minecraft.world.level.block.PoweredRailBlock$1.binpatch + Checksum: eeface2f Exists: true + Reading patch net.minecraft.world.level.block.PoweredRailBlock.binpatch + Checksum: ac8e708f Exists: true + Reading patch net.minecraft.world.level.block.PumpkinBlock.binpatch + Checksum: a71a8371 Exists: true + Reading patch net.minecraft.world.level.block.RailBlock$1.binpatch + Checksum: afa4c4a9 Exists: true + Reading patch net.minecraft.world.level.block.RailBlock.binpatch + Checksum: 1d419b0e Exists: true + Reading patch net.minecraft.world.level.block.RailState$1.binpatch + Checksum: 750f1206 Exists: true + Reading patch net.minecraft.world.level.block.RailState.binpatch + Checksum: b1b239e8 Exists: true + Reading patch net.minecraft.world.level.block.RedStoneOreBlock.binpatch + Checksum: 24c0302 Exists: true + Reading patch net.minecraft.world.level.block.RedStoneWireBlock$1.binpatch + Checksum: b3b478e0 Exists: true + Reading patch net.minecraft.world.level.block.RedStoneWireBlock.binpatch + Checksum: 3f5f0e21 Exists: true + Reading patch net.minecraft.world.level.block.SaplingBlock.binpatch + Checksum: 9e30add1 Exists: true + Reading patch net.minecraft.world.level.block.SculkCatalystBlock.binpatch + Checksum: 430088b7 Exists: true + Reading patch net.minecraft.world.level.block.SculkSensorBlock.binpatch + Checksum: 566bad17 Exists: true + Reading patch net.minecraft.world.level.block.SculkShriekerBlock.binpatch + Checksum: 1190dcbc Exists: true + Reading patch net.minecraft.world.level.block.SeagrassBlock.binpatch + Checksum: abf36a25 Exists: true + Reading patch net.minecraft.world.level.block.SoundType.binpatch + Checksum: 1b964767 Exists: true + Reading patch net.minecraft.world.level.block.SpawnerBlock.binpatch + Checksum: e9a0d44f Exists: true + Reading patch net.minecraft.world.level.block.SpongeBlock.binpatch + Checksum: d9291f7f Exists: true + Reading patch net.minecraft.world.level.block.SpreadingSnowyDirtBlock.binpatch + Checksum: b2162647 Exists: true + Reading patch net.minecraft.world.level.block.StairBlock$1.binpatch + Checksum: c5fa2d9a Exists: true + Reading patch net.minecraft.world.level.block.StairBlock.binpatch + Checksum: eebc817c Exists: true + Reading patch net.minecraft.world.level.block.StemBlock.binpatch + Checksum: 65d493a6 Exists: true + Reading patch net.minecraft.world.level.block.StemGrownBlock.binpatch + Checksum: 5145ec7f Exists: true + Reading patch net.minecraft.world.level.block.SugarCaneBlock.binpatch + Checksum: d8295cc3 Exists: true + Reading patch net.minecraft.world.level.block.SweetBerryBushBlock.binpatch + Checksum: 7f7b1505 Exists: true + Reading patch net.minecraft.world.level.block.TallGrassBlock.binpatch + Checksum: 1f20bd5 Exists: true + Reading patch net.minecraft.world.level.block.TntBlock.binpatch + Checksum: a440ead8 Exists: true + Reading patch net.minecraft.world.level.block.TrapDoorBlock$1.binpatch + Checksum: 6561135d Exists: true + Reading patch net.minecraft.world.level.block.TrapDoorBlock.binpatch + Checksum: 7ac044e7 Exists: true + Reading patch net.minecraft.world.level.block.TripWireBlock$1.binpatch + Checksum: 233a088b Exists: true + Reading patch net.minecraft.world.level.block.TripWireBlock.binpatch + Checksum: b864ed27 Exists: true + Reading patch net.minecraft.world.level.block.TripWireHookBlock$1.binpatch + Checksum: bcc2b317 Exists: true + Reading patch net.minecraft.world.level.block.TripWireHookBlock.binpatch + Checksum: a4fbaaa4 Exists: true + Reading patch net.minecraft.world.level.block.TurtleEggBlock.binpatch + Checksum: 79a19dac Exists: true + Reading patch net.minecraft.world.level.block.VineBlock$1.binpatch + Checksum: b3c002c9 Exists: true + Reading patch net.minecraft.world.level.block.VineBlock.binpatch + Checksum: dcbd4a2b Exists: true + Reading patch net.minecraft.world.level.block.WebBlock.binpatch + Checksum: d8f38117 Exists: true + Reading patch net.minecraft.world.level.block.entity.AbstractFurnaceBlockEntity$1.binpatch + Checksum: bd132a43 Exists: true + Reading patch net.minecraft.world.level.block.entity.AbstractFurnaceBlockEntity$2.binpatch + Checksum: 0 Exists: false + Reading patch net.minecraft.world.level.block.entity.AbstractFurnaceBlockEntity.binpatch + Checksum: c45d3403 Exists: true + Reading patch net.minecraft.world.level.block.entity.BaseContainerBlockEntity.binpatch + Checksum: 8beee5fa Exists: true + Reading patch net.minecraft.world.level.block.entity.BeaconBlockEntity$1.binpatch + Checksum: d122e71e Exists: true + Reading patch net.minecraft.world.level.block.entity.BeaconBlockEntity$BeaconBeamSection.binpatch + Checksum: 4213ad4b Exists: true + Reading patch net.minecraft.world.level.block.entity.BeaconBlockEntity.binpatch + Checksum: f556b2bf Exists: true + Reading patch net.minecraft.world.level.block.entity.BlockEntity.binpatch + Checksum: be7a1deb Exists: true + Reading patch net.minecraft.world.level.block.entity.BrewingStandBlockEntity$1.binpatch + Checksum: 1b5c09e8 Exists: true + Reading patch net.minecraft.world.level.block.entity.BrewingStandBlockEntity$2.binpatch + Checksum: 0 Exists: false + Reading patch net.minecraft.world.level.block.entity.BrewingStandBlockEntity.binpatch + Checksum: 8339d487 Exists: true + Reading patch net.minecraft.world.level.block.entity.ChestBlockEntity$1.binpatch + Checksum: 9f659169 Exists: true + Reading patch net.minecraft.world.level.block.entity.ChestBlockEntity.binpatch + Checksum: cdb10e7d Exists: true + Reading patch net.minecraft.world.level.block.entity.ChiseledBookShelfBlockEntity.binpatch + Checksum: e19ac5ed Exists: true + Reading patch net.minecraft.world.level.block.entity.ConduitBlockEntity.binpatch + Checksum: 95d05496 Exists: true + Reading patch net.minecraft.world.level.block.entity.HopperBlockEntity.binpatch + Checksum: e1155c60 Exists: true + Reading patch net.minecraft.world.level.block.entity.ShulkerBoxBlockEntity$1.binpatch + Checksum: 4bda004e Exists: true + Reading patch net.minecraft.world.level.block.entity.ShulkerBoxBlockEntity$AnimationStatus.binpatch + Checksum: 1ffd8b1b Exists: true + Reading patch net.minecraft.world.level.block.entity.ShulkerBoxBlockEntity.binpatch + Checksum: de479dbf Exists: true + Reading patch net.minecraft.world.level.block.entity.SignBlockEntity.binpatch + Checksum: 2a97812a Exists: true + Reading patch net.minecraft.world.level.block.entity.SpawnerBlockEntity$1.binpatch + Checksum: ead21d22 Exists: true + Reading patch net.minecraft.world.level.block.entity.SpawnerBlockEntity.binpatch + Checksum: 38a77916 Exists: true + Reading patch net.minecraft.world.level.block.grower.AbstractMegaTreeGrower.binpatch + Checksum: 1c9ab043 Exists: true + Reading patch net.minecraft.world.level.block.grower.AbstractTreeGrower.binpatch + Checksum: 539e9766 Exists: true + Reading patch net.minecraft.world.level.block.piston.PistonBaseBlock$1.binpatch + Checksum: d48b2235 Exists: true + Reading patch net.minecraft.world.level.block.piston.PistonBaseBlock.binpatch + Checksum: 4c4382f2 Exists: true + Reading patch net.minecraft.world.level.block.piston.PistonMovingBlockEntity$1.binpatch + Checksum: 57501878 Exists: true + Reading patch net.minecraft.world.level.block.piston.PistonMovingBlockEntity.binpatch + Checksum: b9b5d5a7 Exists: true + Reading patch net.minecraft.world.level.block.piston.PistonStructureResolver.binpatch + Checksum: 8e38f0f1 Exists: true + Reading patch net.minecraft.world.level.block.state.BlockBehaviour$1.binpatch + Checksum: 61b436b9 Exists: true + Reading patch net.minecraft.world.level.block.state.BlockBehaviour$BlockStateBase$Cache.binpatch + Checksum: 18e8a4c Exists: true + Reading patch net.minecraft.world.level.block.state.BlockBehaviour$BlockStateBase.binpatch + Checksum: 579551e6 Exists: true + Reading patch net.minecraft.world.level.block.state.BlockBehaviour$OffsetFunction.binpatch + Checksum: 5c2b8d7f Exists: true + Reading patch net.minecraft.world.level.block.state.BlockBehaviour$OffsetType.binpatch + Checksum: dfd459ac Exists: true + Reading patch net.minecraft.world.level.block.state.BlockBehaviour$Properties.binpatch + Checksum: 7ff2246b Exists: true + Reading patch net.minecraft.world.level.block.state.BlockBehaviour$StateArgumentPredicate.binpatch + Checksum: e05bcfaa Exists: true + Reading patch net.minecraft.world.level.block.state.BlockBehaviour$StatePredicate.binpatch + Checksum: fdea81c5 Exists: true + Reading patch net.minecraft.world.level.block.state.BlockBehaviour.binpatch + Checksum: adc75a55 Exists: true + Reading patch net.minecraft.world.level.block.state.BlockState.binpatch + Checksum: d0e545c3 Exists: true + Reading patch net.minecraft.world.level.chunk.ChunkAccess$TicksToSave.binpatch + Checksum: a96ac5eb Exists: true + Reading patch net.minecraft.world.level.chunk.ChunkAccess.binpatch + Checksum: 75f9f02 Exists: true + Reading patch net.minecraft.world.level.chunk.ImposterProtoChunk.binpatch + Checksum: d47704f1 Exists: true + Reading patch net.minecraft.world.level.chunk.LevelChunk$1.binpatch + Checksum: 121bc163 Exists: true + Reading patch net.minecraft.world.level.chunk.LevelChunk$BoundTickingBlockEntity.binpatch + Checksum: 79018395 Exists: true + Reading patch net.minecraft.world.level.chunk.LevelChunk$EntityCreationType.binpatch + Checksum: d3ae5291 Exists: true + Reading patch net.minecraft.world.level.chunk.LevelChunk$PostLoadProcessor.binpatch + Checksum: 976d7570 Exists: true + Reading patch net.minecraft.world.level.chunk.LevelChunk$RebindableTickingBlockEntityWrapper.binpatch + Checksum: 780eecf5 Exists: true + Reading patch net.minecraft.world.level.chunk.LevelChunk.binpatch + Checksum: 811ed9f0 Exists: true + Reading patch net.minecraft.world.level.chunk.PalettedContainer$Configuration.binpatch + Checksum: 428b187c Exists: true + Reading patch net.minecraft.world.level.chunk.PalettedContainer$CountConsumer.binpatch + Checksum: aea984ce Exists: true + Reading patch net.minecraft.world.level.chunk.PalettedContainer$Data.binpatch + Checksum: 82aaaad Exists: true + Reading patch net.minecraft.world.level.chunk.PalettedContainer$Strategy$1.binpatch + Checksum: 5157c902 Exists: true + Reading patch net.minecraft.world.level.chunk.PalettedContainer$Strategy$2.binpatch + Checksum: 45fdbd25 Exists: true + Reading patch net.minecraft.world.level.chunk.PalettedContainer$Strategy.binpatch + Checksum: 383f8d1b Exists: true + Reading patch net.minecraft.world.level.chunk.PalettedContainer.binpatch + Checksum: 50415f33 Exists: true + Reading patch net.minecraft.world.level.chunk.storage.ChunkSerializer.binpatch + Checksum: be068819 Exists: true + Reading patch net.minecraft.world.level.chunk.storage.EntityStorage.binpatch + Checksum: a5b9d250 Exists: true + Reading patch net.minecraft.world.level.dimension.end.EndDragonFight$Data.binpatch + Checksum: 6e0b8b0f Exists: true + Reading patch net.minecraft.world.level.dimension.end.EndDragonFight.binpatch + Checksum: eca2f97 Exists: true + Reading patch net.minecraft.world.level.entity.PersistentEntitySectionManager$Callback.binpatch + Checksum: bcff89a9 Exists: true + Reading patch net.minecraft.world.level.entity.PersistentEntitySectionManager$ChunkLoadStatus.binpatch + Checksum: 94b18ec1 Exists: true + Reading patch net.minecraft.world.level.entity.PersistentEntitySectionManager.binpatch + Checksum: 4e6a6450 Exists: true + Reading patch net.minecraft.world.level.entity.TransientEntitySectionManager$Callback.binpatch + Checksum: 5876d60c Exists: true + Reading patch net.minecraft.world.level.entity.TransientEntitySectionManager.binpatch + Checksum: 77b9e4d Exists: true + Reading patch net.minecraft.world.level.levelgen.Beardifier$1.binpatch + Checksum: 7abdd9c3 Exists: true + Reading patch net.minecraft.world.level.levelgen.Beardifier$Rigid.binpatch + Checksum: 82f23e09 Exists: true + Reading patch net.minecraft.world.level.levelgen.Beardifier.binpatch + Checksum: fe0a954d Exists: true + Reading patch net.minecraft.world.level.levelgen.DebugLevelSource.binpatch + Checksum: 104b53e9 Exists: true + Reading patch net.minecraft.world.level.levelgen.PhantomSpawner.binpatch + Checksum: caa3fb97 Exists: true + Reading patch net.minecraft.world.level.levelgen.feature.Feature.binpatch + Checksum: f77ac98a Exists: true + Reading patch net.minecraft.world.level.levelgen.feature.MonsterRoomFeature.binpatch + Checksum: d3e2f15f Exists: true + Reading patch net.minecraft.world.level.levelgen.feature.configurations.TreeConfiguration$TreeConfigurationBuilder.binpatch + Checksum: ed8e5c47 Exists: true + Reading patch net.minecraft.world.level.levelgen.feature.configurations.TreeConfiguration.binpatch + Checksum: bc563b01 Exists: true + Reading patch net.minecraft.world.level.levelgen.feature.treedecorators.AlterGroundDecorator.binpatch + Checksum: 19c1b076 Exists: true + Reading patch net.minecraft.world.level.levelgen.feature.trunkplacers.TrunkPlacer.binpatch + Checksum: ed91de4a Exists: true + Reading patch net.minecraft.world.level.levelgen.structure.Structure$GenerationContext.binpatch + Checksum: 730955e3 Exists: true + Reading patch net.minecraft.world.level.levelgen.structure.Structure$GenerationStub.binpatch + Checksum: 31a5708f Exists: true + Reading patch net.minecraft.world.level.levelgen.structure.Structure$StructureSettings.binpatch + Checksum: 70757777 Exists: true + Reading patch net.minecraft.world.level.levelgen.structure.Structure.binpatch + Checksum: 32c8105b Exists: true + Reading patch net.minecraft.world.level.levelgen.structure.StructurePiece$1.binpatch + Checksum: 4d38bb71 Exists: true + Reading patch net.minecraft.world.level.levelgen.structure.StructurePiece$BlockSelector.binpatch + Checksum: c297ffb6 Exists: true + Reading patch net.minecraft.world.level.levelgen.structure.StructurePiece.binpatch + Checksum: 5882e4bd Exists: true + Reading patch net.minecraft.world.level.levelgen.structure.StructureStart.binpatch + Checksum: a8e1622f Exists: true + Reading patch net.minecraft.world.level.levelgen.structure.templatesystem.StructureProcessor.binpatch + Checksum: 2096e562 Exists: true + Reading patch net.minecraft.world.level.levelgen.structure.templatesystem.StructureTemplate$1.binpatch + Checksum: f8642da2 Exists: true + Reading patch net.minecraft.world.level.levelgen.structure.templatesystem.StructureTemplate$Palette.binpatch + Checksum: 3365bbd7 Exists: true + Reading patch net.minecraft.world.level.levelgen.structure.templatesystem.StructureTemplate$SimplePalette.binpatch + Checksum: e35a5e96 Exists: true + Reading patch net.minecraft.world.level.levelgen.structure.templatesystem.StructureTemplate$StructureBlockInfo.binpatch + Checksum: 40bdc2ac Exists: true + Reading patch net.minecraft.world.level.levelgen.structure.templatesystem.StructureTemplate$StructureEntityInfo.binpatch + Checksum: 3bca09b5 Exists: true + Reading patch net.minecraft.world.level.levelgen.structure.templatesystem.StructureTemplate.binpatch + Checksum: b2cfd292 Exists: true + Reading patch net.minecraft.world.level.lighting.BlockLightEngine.binpatch + Checksum: 8c9c452a Exists: true + Reading patch net.minecraft.world.level.lighting.LightEngine$QueueEntry.binpatch + Checksum: 3272fc1a Exists: true + Reading patch net.minecraft.world.level.lighting.LightEngine.binpatch + Checksum: 6d5a0082 Exists: true + Reading patch net.minecraft.world.level.material.FlowingFluid$1.binpatch + Checksum: a626ebe8 Exists: true + Reading patch net.minecraft.world.level.material.FlowingFluid.binpatch + Checksum: a8642ad8 Exists: true + Reading patch net.minecraft.world.level.material.Fluid.binpatch + Checksum: f97ac7d0 Exists: true + Reading patch net.minecraft.world.level.material.FluidState.binpatch + Checksum: c403268f Exists: true + Reading patch net.minecraft.world.level.material.LavaFluid$Flowing.binpatch + Checksum: 11134f20 Exists: true + Reading patch net.minecraft.world.level.material.LavaFluid$Source.binpatch + Checksum: cd17ad22 Exists: true + Reading patch net.minecraft.world.level.material.LavaFluid.binpatch + Checksum: 52652e9a Exists: true + Reading patch net.minecraft.world.level.pathfinder.AmphibiousNodeEvaluator.binpatch + Checksum: f0da0c57 Exists: true + Reading patch net.minecraft.world.level.pathfinder.BlockPathTypes.binpatch + Checksum: 589939c7 Exists: true + Reading patch net.minecraft.world.level.pathfinder.WalkNodeEvaluator.binpatch + Checksum: 6c6d5623 Exists: true + Reading patch net.minecraft.world.level.portal.PortalForcer.binpatch + Checksum: bb47ed50 Exists: true + Reading patch net.minecraft.world.level.portal.PortalShape.binpatch + Checksum: 6732745f Exists: true + Reading patch net.minecraft.world.level.saveddata.maps.MapDecoration$Type.binpatch + Checksum: 1cb63e29 Exists: true + Reading patch net.minecraft.world.level.saveddata.maps.MapDecoration.binpatch + Checksum: df0ddb38 Exists: true + Reading patch net.minecraft.world.level.storage.DimensionDataStorage.binpatch + Checksum: d9f19e8f Exists: true + Reading patch net.minecraft.world.level.storage.LevelStorageSource$LevelCandidates.binpatch + Checksum: 9712bd60 Exists: true + Reading patch net.minecraft.world.level.storage.LevelStorageSource$LevelDirectory.binpatch + Checksum: 7e992811 Exists: true + Reading patch net.minecraft.world.level.storage.LevelStorageSource$LevelStorageAccess$1.binpatch + Checksum: 7214181e Exists: true + Reading patch net.minecraft.world.level.storage.LevelStorageSource$LevelStorageAccess$2.binpatch + Checksum: 54a21f5e Exists: true + Reading patch net.minecraft.world.level.storage.LevelStorageSource$LevelStorageAccess.binpatch + Checksum: c1dc149c Exists: true + Reading patch net.minecraft.world.level.storage.LevelStorageSource.binpatch + Checksum: e65392a0 Exists: true + Reading patch net.minecraft.world.level.storage.LevelSummary$BackupStatus.binpatch + Checksum: afdab190 Exists: true + Reading patch net.minecraft.world.level.storage.LevelSummary$SymlinkLevelSummary.binpatch + Checksum: 419692cd Exists: true + Reading patch net.minecraft.world.level.storage.LevelSummary.binpatch + Checksum: 8dfdb713 Exists: true + Reading patch net.minecraft.world.level.storage.PlayerDataStorage.binpatch + Checksum: 706affcc Exists: true + Reading patch net.minecraft.world.level.storage.PrimaryLevelData$SpecialWorldProperty.binpatch + Checksum: a1de87d5 Exists: true + Reading patch net.minecraft.world.level.storage.PrimaryLevelData.binpatch + Checksum: a5fe766f Exists: true + Reading patch net.minecraft.world.level.storage.loot.LootContext$Builder.binpatch + Checksum: a76c80f4 Exists: true + Reading patch net.minecraft.world.level.storage.loot.LootContext$EntityTarget$Serializer.binpatch + Checksum: e11615a0 Exists: true + Reading patch net.minecraft.world.level.storage.loot.LootContext$EntityTarget.binpatch + Checksum: 2fd0b4bc Exists: true + Reading patch net.minecraft.world.level.storage.loot.LootContext$VisitedEntry.binpatch + Checksum: 91c6b16 Exists: true + Reading patch net.minecraft.world.level.storage.loot.LootContext.binpatch + Checksum: db60f1fa Exists: true + Reading patch net.minecraft.world.level.storage.loot.LootDataManager$1.binpatch + Checksum: 98857e1f Exists: true + Reading patch net.minecraft.world.level.storage.loot.LootDataManager$CompositePredicate.binpatch + Checksum: 9693eff3 Exists: true + Reading patch net.minecraft.world.level.storage.loot.LootDataManager$FunctionSequence.binpatch + Checksum: bc8254cc Exists: true + Reading patch net.minecraft.world.level.storage.loot.LootDataManager.binpatch + Checksum: fb53c218 Exists: true + Reading patch net.minecraft.world.level.storage.loot.LootDataType$Validator.binpatch + Checksum: 55dbd643 Exists: true + Reading patch net.minecraft.world.level.storage.loot.LootDataType.binpatch + Checksum: a9c4f38c Exists: true + Reading patch net.minecraft.world.level.storage.loot.LootParams$Builder.binpatch + Checksum: 789354c7 Exists: true + Reading patch net.minecraft.world.level.storage.loot.LootParams$DynamicDrop.binpatch + Checksum: 15fb8e82 Exists: true + Reading patch net.minecraft.world.level.storage.loot.LootParams.binpatch + Checksum: 51173c2f Exists: true + Reading patch net.minecraft.world.level.storage.loot.LootPool$Builder.binpatch + Checksum: f5f4251e Exists: true + Reading patch net.minecraft.world.level.storage.loot.LootPool$Serializer.binpatch + Checksum: c7963aad Exists: true + Reading patch net.minecraft.world.level.storage.loot.LootPool.binpatch + Checksum: 7fe0026e Exists: true + Reading patch net.minecraft.world.level.storage.loot.LootTable$Builder.binpatch + Checksum: a1af8c69 Exists: true + Reading patch net.minecraft.world.level.storage.loot.LootTable$Serializer.binpatch + Checksum: d91dcfe5 Exists: true + Reading patch net.minecraft.world.level.storage.loot.LootTable.binpatch + Checksum: 3a1c7f50 Exists: true + Reading patch net.minecraft.world.level.storage.loot.functions.LootingEnchantFunction$Builder.binpatch + Checksum: 63454a20 Exists: true + Reading patch net.minecraft.world.level.storage.loot.functions.LootingEnchantFunction$Serializer.binpatch + Checksum: b11a3769 Exists: true + Reading patch net.minecraft.world.level.storage.loot.functions.LootingEnchantFunction.binpatch + Checksum: 321c8b43 Exists: true + Reading patch net.minecraft.world.level.storage.loot.functions.SmeltItemFunction$Serializer.binpatch + Checksum: a1cd1ce1 Exists: true + Reading patch net.minecraft.world.level.storage.loot.functions.SmeltItemFunction.binpatch + Checksum: 2f6e2a66 Exists: true + Reading patch net.minecraft.world.level.storage.loot.parameters.LootContextParamSets.binpatch + Checksum: d4a35427 Exists: true + Reading patch net.minecraft.world.level.storage.loot.predicates.LootItemRandomChanceWithLootingCondition$Serializer.binpatch + Checksum: facdb2c3 Exists: true + Reading patch net.minecraft.world.level.storage.loot.predicates.LootItemRandomChanceWithLootingCondition.binpatch + Checksum: 71cfad2 Exists: true + Reading patch net.minecraft.world.level.storage.loot.providers.nbt.ContextNbtProvider$1.binpatch + Checksum: 4c091861 Exists: true + Reading patch net.minecraft.world.level.storage.loot.providers.nbt.ContextNbtProvider$2.binpatch + Checksum: 3b1dbe29 Exists: true + Reading patch net.minecraft.world.level.storage.loot.providers.nbt.ContextNbtProvider$Getter.binpatch + Checksum: e3f0c904 Exists: true + Reading patch net.minecraft.world.level.storage.loot.providers.nbt.ContextNbtProvider$InlineSerializer.binpatch + Checksum: f2a9e31c Exists: true + Reading patch net.minecraft.world.level.storage.loot.providers.nbt.ContextNbtProvider$Serializer.binpatch + Checksum: 5054d5d6 Exists: true + Reading patch net.minecraft.world.level.storage.loot.providers.nbt.ContextNbtProvider.binpatch + Checksum: 33daf11e Exists: true +Processing: C:\Users\polar\.mcreator\gradle\caches\forge_gradle\mcp_repo\net\minecraft\joined\1.20.1-20230612.114412\joined-1.20.1-20230612.114412-srg.jar + Patching com/mojang/blaze3d/pipeline/RenderTarget 1/1 + Patching com/mojang/blaze3d/platform/GlStateManager$BlendState 1/1 + Patching com/mojang/blaze3d/platform/GlStateManager$BooleanState 1/1 + Patching com/mojang/blaze3d/platform/GlStateManager$ColorLogicState 1/1 + Patching com/mojang/blaze3d/platform/GlStateManager$ColorMask 1/1 + Patching com/mojang/blaze3d/platform/GlStateManager$CullState 1/1 + Patching com/mojang/blaze3d/platform/GlStateManager$DepthState 1/1 + Patching com/mojang/blaze3d/platform/GlStateManager$DestFactor 1/1 + Patching com/mojang/blaze3d/platform/GlStateManager$LogicOp 1/1 + Patching com/mojang/blaze3d/platform/GlStateManager$PolygonOffsetState 1/1 + Patching com/mojang/blaze3d/platform/GlStateManager$ScissorState 1/1 + Patching com/mojang/blaze3d/platform/GlStateManager$SourceFactor 1/1 + Patching com/mojang/blaze3d/platform/GlStateManager$StencilFunc 1/1 + Patching com/mojang/blaze3d/platform/GlStateManager$StencilState 1/1 + Patching com/mojang/blaze3d/platform/GlStateManager$TextureState 1/1 + Patching com/mojang/blaze3d/platform/GlStateManager$Viewport 1/1 + Patching com/mojang/blaze3d/platform/GlStateManager 1/1 + Patching com/mojang/blaze3d/platform/Window$WindowInitFailed 1/1 + Patching com/mojang/blaze3d/platform/Window 1/1 + Patching com/mojang/blaze3d/vertex/BufferBuilder$1 1/1 + Patching com/mojang/blaze3d/vertex/BufferBuilder$DrawState 1/1 + Patching com/mojang/blaze3d/vertex/BufferBuilder$RenderedBuffer 1/1 + Patching com/mojang/blaze3d/vertex/BufferBuilder$SortState 1/1 + Patching com/mojang/blaze3d/vertex/BufferBuilder 1/1 + Patching com/mojang/blaze3d/vertex/PoseStack$Pose 1/1 + Patching com/mojang/blaze3d/vertex/PoseStack 1/1 + Patching com/mojang/blaze3d/vertex/SheetedDecalTextureGenerator 1/1 + Patching com/mojang/blaze3d/vertex/VertexConsumer 1/1 + Patching com/mojang/blaze3d/vertex/VertexFormat$1 1/1 + Patching com/mojang/blaze3d/vertex/VertexFormat$IndexType 1/1 + Patching com/mojang/blaze3d/vertex/VertexFormat$Mode 1/1 + Patching com/mojang/blaze3d/vertex/VertexFormat 1/1 + Patching com/mojang/blaze3d/vertex/VertexFormatElement$Type 1/1 + Patching com/mojang/blaze3d/vertex/VertexFormatElement$Usage$ClearState 1/1 + Patching com/mojang/blaze3d/vertex/VertexFormatElement$Usage$SetupState 1/1 + Patching com/mojang/blaze3d/vertex/VertexFormatElement$Usage 1/1 + Patching com/mojang/blaze3d/vertex/VertexFormatElement 1/1 + Patching com/mojang/math/Transformation 1/1 + Patching com/mojang/realmsclient/gui/screens/RealmsGenericErrorScreen$ErrorMessage 1/1 + Patching com/mojang/realmsclient/gui/screens/RealmsGenericErrorScreen 1/1 + Patching com/mojang/realmsclient/gui/screens/RealmsNotificationsScreen$1 1/1 + Patching com/mojang/realmsclient/gui/screens/RealmsNotificationsScreen$2 1/1 + Patching com/mojang/realmsclient/gui/screens/RealmsNotificationsScreen$3 1/1 + Patching com/mojang/realmsclient/gui/screens/RealmsNotificationsScreen$DataFetcherConfiguration 1/1 + Patching com/mojang/realmsclient/gui/screens/RealmsNotificationsScreen 1/1 + Patching net/minecraft/CrashReport 1/1 + Patching net/minecraft/CrashReportCategory$Entry 1/1 + Patching net/minecraft/CrashReportCategory 1/1 + Patching net/minecraft/SharedConstants 1/1 + Patching net/minecraft/Util$1 1/1 + Patching net/minecraft/Util$10 1/1 + Patching net/minecraft/Util$11 1/1 + Patching net/minecraft/Util$2 1/1 + Patching net/minecraft/Util$5 1/1 + Patching net/minecraft/Util$6 1/1 + Patching net/minecraft/Util$7 1/1 + Patching net/minecraft/Util$8 1/1 + Patching net/minecraft/Util$9 1/1 + Patching net/minecraft/Util$IdentityStrategy 1/1 + Patching net/minecraft/Util$OS$1 1/1 + Patching net/minecraft/Util$OS$2 1/1 + Patching net/minecraft/Util$OS 1/1 + Patching net/minecraft/Util 1/1 + Patching net/minecraft/advancements/Advancement$Builder 1/1 + Patching net/minecraft/advancements/Advancement 1/1 + Patching net/minecraft/advancements/AdvancementRewards$Builder 1/1 + Patching net/minecraft/advancements/AdvancementRewards 1/1 + Patching net/minecraft/advancements/critereon/ItemPredicate$Builder 1/1 + Patching net/minecraft/advancements/critereon/ItemPredicate 1/1 + Patching net/minecraft/client/Camera$NearPlane 1/1 + Patching net/minecraft/client/Camera 1/1 + Patching net/minecraft/client/ClientBrandRetriever 1/1 + Patching net/minecraft/client/ClientRecipeBook$1 1/1 + Patching net/minecraft/client/ClientRecipeBook 1/1 + Patching net/minecraft/client/KeyMapping 1/1 + Patching net/minecraft/client/KeyboardHandler$1 1/1 + Patching net/minecraft/client/KeyboardHandler 1/1 + Patching net/minecraft/client/Minecraft$1 1/1 + Patching net/minecraft/client/Minecraft$ChatStatus$1 1/1 + Patching net/minecraft/client/Minecraft$ChatStatus$2 1/1 + Patching net/minecraft/client/Minecraft$ChatStatus$3 1/1 + Patching net/minecraft/client/Minecraft$ChatStatus$4 1/1 + Patching net/minecraft/client/Minecraft$ChatStatus 1/1 + Patching net/minecraft/client/Minecraft 1/1 + Patching net/minecraft/client/MouseHandler 1/1 + Patching net/minecraft/client/Options$1 1/1 + Patching net/minecraft/client/Options$2 1/1 + Patching net/minecraft/client/Options$3 1/1 + Patching net/minecraft/client/Options$4 1/1 + Patching net/minecraft/client/Options$FieldAccess 1/1 + Patching net/minecraft/client/Options 1/1 + Patching net/minecraft/client/RecipeBookCategories$1 1/1 + Patching net/minecraft/client/RecipeBookCategories 1/1 + Patching net/minecraft/client/Screenshot 1/1 + Patching net/minecraft/client/ToggleKeyMapping 1/1 + Patching net/minecraft/client/User$Type 1/1 + Patching net/minecraft/client/User 1/1 + Patching net/minecraft/client/color/block/BlockColors 1/1 + Patching net/minecraft/client/color/item/ItemColors 1/1 + Patching net/minecraft/client/gui/Font$DisplayMode 1/1 + Patching net/minecraft/client/gui/Font$StringRenderOutput 1/1 + Patching net/minecraft/client/gui/Font 1/1 + Patching net/minecraft/client/gui/Gui$HeartType 1/1 + Patching net/minecraft/client/gui/Gui 1/1 + Patching net/minecraft/client/gui/GuiGraphics$ScissorStack 1/1 + Patching net/minecraft/client/gui/GuiGraphics 1/1 + Patching net/minecraft/client/gui/MapRenderer$MapInstance 1/1 + Patching net/minecraft/client/gui/MapRenderer 1/1 + Patching net/minecraft/client/gui/components/AbstractButton 1/1 + Patching net/minecraft/client/gui/components/AbstractSelectionList$1 1/1 + Patching net/minecraft/client/gui/components/AbstractSelectionList$Entry 1/1 + Patching net/minecraft/client/gui/components/AbstractSelectionList$TrackedList 1/1 + Patching net/minecraft/client/gui/components/AbstractSelectionList 1/1 + Patching net/minecraft/client/gui/components/AbstractWidget 1/1 + Patching net/minecraft/client/gui/components/BossHealthOverlay$1 1/1 + Patching net/minecraft/client/gui/components/BossHealthOverlay 1/1 + Patching net/minecraft/client/gui/components/Button$Builder 1/1 + Patching net/minecraft/client/gui/components/Button$CreateNarration 1/1 + Patching net/minecraft/client/gui/components/Button$OnPress 1/1 + Patching net/minecraft/client/gui/components/Button 1/1 + Patching net/minecraft/client/gui/components/DebugScreenOverlay$1 1/1 + Patching net/minecraft/client/gui/components/DebugScreenOverlay$AllocationRateCalculator 1/1 + Patching net/minecraft/client/gui/components/DebugScreenOverlay 1/1 + Patching net/minecraft/client/gui/components/toasts/ToastComponent$ToastInstance 1/1 + Patching net/minecraft/client/gui/components/toasts/ToastComponent 1/1 + Patching net/minecraft/client/gui/screens/ChatScreen$1 1/1 + Patching net/minecraft/client/gui/screens/ChatScreen 1/1 + Patching net/minecraft/client/gui/screens/ConnectScreen$1 1/1 + Patching net/minecraft/client/gui/screens/ConnectScreen 1/1 + Patching net/minecraft/client/gui/screens/LoadingOverlay$LogoTexture 1/1 + Patching net/minecraft/client/gui/screens/LoadingOverlay 1/1 + Patching net/minecraft/client/gui/screens/MenuScreens$ScreenConstructor 1/1 + Patching net/minecraft/client/gui/screens/MenuScreens 1/1 + Patching net/minecraft/client/gui/screens/OptionsScreen 1/1 + Patching net/minecraft/client/gui/screens/PauseScreen 1/1 + Patching net/minecraft/client/gui/screens/Screen$DeferredTooltipRendering 1/1 + Patching net/minecraft/client/gui/screens/Screen$NarratableSearchResult 1/1 + Patching net/minecraft/client/gui/screens/Screen 1/1 + Patching net/minecraft/client/gui/screens/TitleScreen$WarningLabel 1/1 + Patching net/minecraft/client/gui/screens/TitleScreen 1/1 + Patching net/minecraft/client/gui/screens/advancements/AdvancementTab 1/1 + Patching net/minecraft/client/gui/screens/advancements/AdvancementTabType$1 1/1 + Patching net/minecraft/client/gui/screens/advancements/AdvancementTabType 1/1 + Patching net/minecraft/client/gui/screens/advancements/AdvancementsScreen 1/1 + Patching net/minecraft/client/gui/screens/controls/KeyBindsList$CategoryEntry$1 1/1 + Patching net/minecraft/client/gui/screens/controls/KeyBindsList$CategoryEntry 1/1 + Patching net/minecraft/client/gui/screens/controls/KeyBindsList$Entry 1/1 + Patching net/minecraft/client/gui/screens/controls/KeyBindsList$KeyEntry 1/1 + Patching net/minecraft/client/gui/screens/controls/KeyBindsList 1/1 + Patching net/minecraft/client/gui/screens/controls/KeyBindsScreen 1/1 + Patching net/minecraft/client/gui/screens/inventory/AbstractContainerScreen 1/1 + Patching net/minecraft/client/gui/screens/inventory/CreativeModeInventoryScreen$CustomCreativeSlot 1/1 + Patching net/minecraft/client/gui/screens/inventory/CreativeModeInventoryScreen$ItemPickerMenu 1/1 + Patching net/minecraft/client/gui/screens/inventory/CreativeModeInventoryScreen$SlotWrapper 1/1 + Patching net/minecraft/client/gui/screens/inventory/CreativeModeInventoryScreen 1/1 + Patching net/minecraft/client/gui/screens/inventory/EffectRenderingInventoryScreen 1/1 + Patching net/minecraft/client/gui/screens/inventory/EnchantmentScreen 1/1 + Patching net/minecraft/client/gui/screens/inventory/HangingSignEditScreen 1/1 + Patching net/minecraft/client/gui/screens/inventory/InventoryScreen 1/1 + Patching net/minecraft/client/gui/screens/inventory/MerchantScreen$TradeOfferButton 1/1 + Patching net/minecraft/client/gui/screens/inventory/MerchantScreen 1/1 + Patching net/minecraft/client/gui/screens/inventory/tooltip/ClientTooltipComponent 1/1 + Patching net/minecraft/client/gui/screens/inventory/tooltip/TooltipRenderUtil 1/1 + Patching net/minecraft/client/gui/screens/multiplayer/JoinMultiplayerScreen 1/1 + Patching net/minecraft/client/gui/screens/multiplayer/ServerSelectionList$Entry 1/1 + Patching net/minecraft/client/gui/screens/multiplayer/ServerSelectionList$LANHeader 1/1 + Patching net/minecraft/client/gui/screens/multiplayer/ServerSelectionList$NetworkServerEntry 1/1 + Patching net/minecraft/client/gui/screens/multiplayer/ServerSelectionList$OnlineServerEntry 1/1 + Patching net/minecraft/client/gui/screens/multiplayer/ServerSelectionList 1/1 + Patching net/minecraft/client/gui/screens/packs/PackSelectionModel$Entry 1/1 + Patching net/minecraft/client/gui/screens/packs/PackSelectionModel$EntryBase 1/1 + Patching net/minecraft/client/gui/screens/packs/PackSelectionModel$SelectedPackEntry 1/1 + Patching net/minecraft/client/gui/screens/packs/PackSelectionModel$UnselectedPackEntry 1/1 + Patching net/minecraft/client/gui/screens/packs/PackSelectionModel 1/1 + Patching net/minecraft/client/gui/screens/packs/PackSelectionScreen$Watcher 1/1 + Patching net/minecraft/client/gui/screens/packs/PackSelectionScreen 1/1 + Patching net/minecraft/client/gui/screens/recipebook/RecipeBookComponent 1/1 + Patching net/minecraft/client/gui/screens/worldselection/CreateWorldScreen$DataPackReloadCookie 1/1 + Patching net/minecraft/client/gui/screens/worldselection/CreateWorldScreen$GameTab 1/1 + Patching net/minecraft/client/gui/screens/worldselection/CreateWorldScreen$MoreTab 1/1 + Patching net/minecraft/client/gui/screens/worldselection/CreateWorldScreen$WorldTab$1 1/1 + Patching net/minecraft/client/gui/screens/worldselection/CreateWorldScreen$WorldTab$2 1/1 + Patching net/minecraft/client/gui/screens/worldselection/CreateWorldScreen$WorldTab 1/1 + Patching net/minecraft/client/gui/screens/worldselection/CreateWorldScreen 1/1 + Patching net/minecraft/client/gui/screens/worldselection/PresetEditor 1/1 + Patching net/minecraft/client/gui/screens/worldselection/WorldCreationContext$DimensionsUpdater 1/1 + Patching net/minecraft/client/gui/screens/worldselection/WorldCreationContext$OptionsModifier 1/1 + Patching net/minecraft/client/gui/screens/worldselection/WorldCreationContext 1/1 + Patching net/minecraft/client/gui/screens/worldselection/WorldCreationUiState$SelectedGameMode 1/1 + Patching net/minecraft/client/gui/screens/worldselection/WorldCreationUiState$WorldTypeEntry 1/1 + Patching net/minecraft/client/gui/screens/worldselection/WorldCreationUiState 1/1 + Patching net/minecraft/client/gui/screens/worldselection/WorldOpenFlows$1Data 1/1 + Patching net/minecraft/client/gui/screens/worldselection/WorldOpenFlows 1/1 + Patching net/minecraft/client/gui/screens/worldselection/WorldSelectionList$Entry 1/1 + Patching net/minecraft/client/gui/screens/worldselection/WorldSelectionList$LoadingHeader 1/1 + Patching net/minecraft/client/gui/screens/worldselection/WorldSelectionList$WorldListEntry 1/1 + Patching net/minecraft/client/gui/screens/worldselection/WorldSelectionList 1/1 + Patching net/minecraft/client/main/Main$1 1/1 + Patching net/minecraft/client/main/Main$2 1/1 + Patching net/minecraft/client/main/Main$3 1/1 + Patching net/minecraft/client/main/Main 1/1 + Patching net/minecraft/client/model/HumanoidModel$1 1/1 + Patching net/minecraft/client/model/HumanoidModel$ArmPose 1/1 + Patching net/minecraft/client/model/HumanoidModel 1/1 + Patching net/minecraft/client/model/geom/LayerDefinitions 1/1 + Patching net/minecraft/client/model/geom/ModelLayers 1/1 + Patching net/minecraft/client/multiplayer/AccountProfileKeyPairManager 1/1 + Patching net/minecraft/client/multiplayer/ClientChunkCache$Storage 1/1 + Patching net/minecraft/client/multiplayer/ClientChunkCache 1/1 + Patching net/minecraft/client/multiplayer/ClientHandshakePacketListenerImpl 1/1 + Patching net/minecraft/client/multiplayer/ClientLevel$1 1/1 + Patching net/minecraft/client/multiplayer/ClientLevel$ClientLevelData 1/1 + Patching net/minecraft/client/multiplayer/ClientLevel$EntityCallbacks 1/1 + Patching net/minecraft/client/multiplayer/ClientLevel 1/1 + Patching net/minecraft/client/multiplayer/ClientPacketListener$1 1/1 + Patching net/minecraft/client/multiplayer/ClientPacketListener$DeferredPacket 1/1 + Patching net/minecraft/client/multiplayer/ClientPacketListener 1/1 + Patching net/minecraft/client/multiplayer/MultiPlayerGameMode 1/1 + Patching net/minecraft/client/multiplayer/PlayerInfo 1/1 + Patching net/minecraft/client/multiplayer/ServerData$ServerPackStatus 1/1 + Patching net/minecraft/client/multiplayer/ServerData 1/1 + Patching net/minecraft/client/multiplayer/ServerStatusPinger$1 1/1 + Patching net/minecraft/client/multiplayer/ServerStatusPinger$2$1 1/1 + Patching net/minecraft/client/multiplayer/ServerStatusPinger$2 1/1 + Patching net/minecraft/client/multiplayer/ServerStatusPinger 1/1 + Patching net/minecraft/client/multiplayer/chat/ChatListener$Message 1/1 + Patching net/minecraft/client/multiplayer/chat/ChatListener 1/1 + Patching net/minecraft/client/multiplayer/resolver/AddressCheck$1 1/1 + Patching net/minecraft/client/multiplayer/resolver/AddressCheck 1/1 + Patching net/minecraft/client/particle/BreakingItemParticle$Provider 1/1 + Patching net/minecraft/client/particle/BreakingItemParticle$SlimeProvider 1/1 + Patching net/minecraft/client/particle/BreakingItemParticle$SnowballProvider 1/1 + Patching net/minecraft/client/particle/BreakingItemParticle 1/1 + Patching net/minecraft/client/particle/EnchantmentTableParticle$NautilusProvider 1/1 + Patching net/minecraft/client/particle/EnchantmentTableParticle$Provider 1/1 + Patching net/minecraft/client/particle/EnchantmentTableParticle 1/1 + Patching net/minecraft/client/particle/FireworkParticles$1 1/1 + Patching net/minecraft/client/particle/FireworkParticles$FlashProvider 1/1 + Patching net/minecraft/client/particle/FireworkParticles$OverlayParticle 1/1 + Patching net/minecraft/client/particle/FireworkParticles$SparkParticle 1/1 + Patching net/minecraft/client/particle/FireworkParticles$SparkProvider 1/1 + Patching net/minecraft/client/particle/FireworkParticles$Starter 1/1 + Patching net/minecraft/client/particle/FireworkParticles 1/1 + Patching net/minecraft/client/particle/Particle 1/1 + Patching net/minecraft/client/particle/ParticleEngine$1ParticleDefinition 1/1 + Patching net/minecraft/client/particle/ParticleEngine$MutableSpriteSet 1/1 + Patching net/minecraft/client/particle/ParticleEngine$SpriteParticleRegistration 1/1 + Patching net/minecraft/client/particle/ParticleEngine 1/1 + Patching net/minecraft/client/particle/PortalParticle$Provider 1/1 + Patching net/minecraft/client/particle/PortalParticle 1/1 + Patching net/minecraft/client/particle/ReversePortalParticle$ReversePortalProvider 1/1 + Patching net/minecraft/client/particle/ReversePortalParticle 1/1 + Patching net/minecraft/client/particle/TerrainParticle$Provider 1/1 + Patching net/minecraft/client/particle/TerrainParticle 1/1 + Patching net/minecraft/client/particle/VibrationSignalParticle$Provider 1/1 + Patching net/minecraft/client/particle/VibrationSignalParticle 1/1 + Patching net/minecraft/client/player/AbstractClientPlayer 1/1 + Patching net/minecraft/client/player/LocalPlayer 1/1 + Patching net/minecraft/client/player/RemotePlayer 1/1 + Patching net/minecraft/client/renderer/DimensionSpecialEffects$EndEffects 1/1 + Patching net/minecraft/client/renderer/DimensionSpecialEffects$NetherEffects 1/1 + Patching net/minecraft/client/renderer/DimensionSpecialEffects$OverworldEffects 1/1 + Patching net/minecraft/client/renderer/DimensionSpecialEffects$SkyType 1/1 + Patching net/minecraft/client/renderer/DimensionSpecialEffects 1/1 + Patching net/minecraft/client/renderer/EffectInstance 1/1 + Patching net/minecraft/client/renderer/FogRenderer$BlindnessFogFunction 1/1 + Patching net/minecraft/client/renderer/FogRenderer$DarknessFogFunction 1/1 + Patching net/minecraft/client/renderer/FogRenderer$FogData 1/1 + Patching net/minecraft/client/renderer/FogRenderer$FogMode 1/1 + Patching net/minecraft/client/renderer/FogRenderer$MobEffectFogFunction 1/1 + Patching net/minecraft/client/renderer/FogRenderer 1/1 + Patching net/minecraft/client/renderer/GameRenderer$1 1/1 + Patching net/minecraft/client/renderer/GameRenderer$ResourceCache 1/1 + Patching net/minecraft/client/renderer/GameRenderer 1/1 + Patching net/minecraft/client/renderer/ItemBlockRenderTypes 1/1 + Patching net/minecraft/client/renderer/ItemInHandRenderer$1 1/1 + Patching net/minecraft/client/renderer/ItemInHandRenderer$HandRenderSelection 1/1 + Patching net/minecraft/client/renderer/ItemInHandRenderer 1/1 + Patching net/minecraft/client/renderer/ItemModelShaper 1/1 + Patching net/minecraft/client/renderer/LevelRenderer$RenderChunkInfo 1/1 + Patching net/minecraft/client/renderer/LevelRenderer$RenderChunkStorage 1/1 + Patching net/minecraft/client/renderer/LevelRenderer$RenderInfoMap 1/1 + Patching net/minecraft/client/renderer/LevelRenderer$TransparencyShaderException 1/1 + Patching net/minecraft/client/renderer/LevelRenderer 1/1 + Patching net/minecraft/client/renderer/LightTexture 1/1 + Patching net/minecraft/client/renderer/PostChain 1/1 + Patching net/minecraft/client/renderer/RenderType$CompositeRenderType 1/1 + Patching net/minecraft/client/renderer/RenderType$CompositeState$CompositeStateBuilder 1/1 + Patching net/minecraft/client/renderer/RenderType$CompositeState 1/1 + Patching net/minecraft/client/renderer/RenderType$OutlineProperty 1/1 + Patching net/minecraft/client/renderer/RenderType 1/1 + Patching net/minecraft/client/renderer/ScreenEffectRenderer 1/1 + Patching net/minecraft/client/renderer/ShaderInstance$1 1/1 + Patching net/minecraft/client/renderer/ShaderInstance 1/1 + Patching net/minecraft/client/renderer/Sheets$1 1/1 + Patching net/minecraft/client/renderer/Sheets 1/1 + Patching net/minecraft/client/renderer/SpriteCoordinateExpander 1/1 + Patching net/minecraft/client/renderer/block/BlockModelShaper 1/1 + Patching net/minecraft/client/renderer/block/BlockRenderDispatcher$1 1/1 + Patching net/minecraft/client/renderer/block/BlockRenderDispatcher 1/1 + Patching net/minecraft/client/renderer/block/LiquidBlockRenderer$1 1/1 + Patching net/minecraft/client/renderer/block/LiquidBlockRenderer 1/1 + Patching net/minecraft/client/renderer/block/ModelBlockRenderer$1 1/1 + Patching net/minecraft/client/renderer/block/ModelBlockRenderer$AdjacencyInfo 1/1 + Patching net/minecraft/client/renderer/block/ModelBlockRenderer$AmbientOcclusionFace 1/1 + Patching net/minecraft/client/renderer/block/ModelBlockRenderer$AmbientVertexRemap 1/1 + Patching net/minecraft/client/renderer/block/ModelBlockRenderer$Cache$1 1/1 + Patching net/minecraft/client/renderer/block/ModelBlockRenderer$Cache$2 1/1 + Patching net/minecraft/client/renderer/block/ModelBlockRenderer$Cache 1/1 + Patching net/minecraft/client/renderer/block/ModelBlockRenderer$SizeInfo 1/1 + Patching net/minecraft/client/renderer/block/ModelBlockRenderer 1/1 + Patching net/minecraft/client/renderer/block/model/BakedQuad 1/1 + Patching net/minecraft/client/renderer/block/model/BlockElement$1 1/1 + Patching net/minecraft/client/renderer/block/model/BlockElement$Deserializer 1/1 + Patching net/minecraft/client/renderer/block/model/BlockElement 1/1 + Patching net/minecraft/client/renderer/block/model/BlockElementFace$Deserializer 1/1 + Patching net/minecraft/client/renderer/block/model/BlockElementFace 1/1 + Patching net/minecraft/client/renderer/block/model/BlockModel$Deserializer 1/1 + Patching net/minecraft/client/renderer/block/model/BlockModel$GuiLight 1/1 + Patching net/minecraft/client/renderer/block/model/BlockModel$LoopException 1/1 + Patching net/minecraft/client/renderer/block/model/BlockModel 1/1 + Patching net/minecraft/client/renderer/block/model/FaceBakery$1 1/1 + Patching net/minecraft/client/renderer/block/model/FaceBakery 1/1 + Patching net/minecraft/client/renderer/block/model/ItemModelGenerator$1 1/1 + Patching net/minecraft/client/renderer/block/model/ItemModelGenerator$Span 1/1 + Patching net/minecraft/client/renderer/block/model/ItemModelGenerator$SpanFacing 1/1 + Patching net/minecraft/client/renderer/block/model/ItemModelGenerator 1/1 + Patching net/minecraft/client/renderer/block/model/ItemOverrides$BakedOverride 1/1 + Patching net/minecraft/client/renderer/block/model/ItemOverrides$PropertyMatcher 1/1 + Patching net/minecraft/client/renderer/block/model/ItemOverrides 1/1 + Patching net/minecraft/client/renderer/block/model/ItemTransform$Deserializer 1/1 + Patching net/minecraft/client/renderer/block/model/ItemTransform 1/1 + Patching net/minecraft/client/renderer/block/model/ItemTransforms$1 1/1 + Patching net/minecraft/client/renderer/block/model/ItemTransforms$Deserializer 1/1 + Patching net/minecraft/client/renderer/block/model/ItemTransforms 1/1 + Patching net/minecraft/client/renderer/block/model/MultiVariant$Deserializer 1/1 + Patching net/minecraft/client/renderer/block/model/MultiVariant 1/1 + Patching net/minecraft/client/renderer/blockentity/BlockEntityRenderers 1/1 + Patching net/minecraft/client/renderer/blockentity/ChestRenderer 1/1 + Patching net/minecraft/client/renderer/blockentity/PistonHeadRenderer 1/1 + Patching net/minecraft/client/renderer/blockentity/SkullBlockRenderer 1/1 + Patching net/minecraft/client/renderer/chunk/ChunkRenderDispatcher$ChunkTaskResult 1/1 + Patching net/minecraft/client/renderer/chunk/ChunkRenderDispatcher$CompiledChunk$1 1/1 + Patching net/minecraft/client/renderer/chunk/ChunkRenderDispatcher$CompiledChunk 1/1 + Patching net/minecraft/client/renderer/chunk/ChunkRenderDispatcher$RenderChunk$ChunkCompileTask 1/1 + Patching net/minecraft/client/renderer/chunk/ChunkRenderDispatcher$RenderChunk$RebuildTask$CompileResults 1/1 + Patching net/minecraft/client/renderer/chunk/ChunkRenderDispatcher$RenderChunk$RebuildTask 1/1 + Patching net/minecraft/client/renderer/chunk/ChunkRenderDispatcher$RenderChunk$ResortTransparencyTask 1/1 + Patching net/minecraft/client/renderer/chunk/ChunkRenderDispatcher$RenderChunk 1/1 + Patching net/minecraft/client/renderer/chunk/ChunkRenderDispatcher 1/1 + Patching net/minecraft/client/renderer/chunk/RenderChunkRegion 1/1 + Patching net/minecraft/client/renderer/culling/Frustum 1/1 + Patching net/minecraft/client/renderer/entity/BoatRenderer 1/1 + Patching net/minecraft/client/renderer/entity/EntityRenderDispatcher 1/1 + Patching net/minecraft/client/renderer/entity/EntityRenderer 1/1 + Patching net/minecraft/client/renderer/entity/FallingBlockRenderer 1/1 + Patching net/minecraft/client/renderer/entity/FishingHookRenderer 1/1 + Patching net/minecraft/client/renderer/entity/ItemEntityRenderer 1/1 + Patching net/minecraft/client/renderer/entity/ItemFrameRenderer 1/1 + Patching net/minecraft/client/renderer/entity/ItemRenderer 1/1 + Patching net/minecraft/client/renderer/entity/LivingEntityRenderer$1 1/1 + Patching net/minecraft/client/renderer/entity/LivingEntityRenderer 1/1 + Patching net/minecraft/client/renderer/entity/layers/ElytraLayer 1/1 + Patching net/minecraft/client/renderer/entity/layers/HumanoidArmorLayer$1 1/1 + Patching net/minecraft/client/renderer/entity/layers/HumanoidArmorLayer 1/1 + Patching net/minecraft/client/renderer/entity/player/PlayerRenderer 1/1 + Patching net/minecraft/client/renderer/item/ItemProperties$1 1/1 + Patching net/minecraft/client/renderer/item/ItemProperties 1/1 + Patching net/minecraft/client/renderer/texture/AbstractTexture 1/1 + Patching net/minecraft/client/renderer/texture/MipmapGenerator 1/1 + Patching net/minecraft/client/renderer/texture/SpriteContents$AnimatedTexture 1/1 + Patching net/minecraft/client/renderer/texture/SpriteContents$FrameInfo 1/1 + Patching net/minecraft/client/renderer/texture/SpriteContents$InterpolationData 1/1 + Patching net/minecraft/client/renderer/texture/SpriteContents$Ticker 1/1 + Patching net/minecraft/client/renderer/texture/SpriteContents 1/1 + Patching net/minecraft/client/renderer/texture/SpriteLoader$Preparations 1/1 + Patching net/minecraft/client/renderer/texture/SpriteLoader 1/1 + Patching net/minecraft/client/renderer/texture/Stitcher$Entry 1/1 + Patching net/minecraft/client/renderer/texture/Stitcher$Holder 1/1 + Patching net/minecraft/client/renderer/texture/Stitcher$Region 1/1 + Patching net/minecraft/client/renderer/texture/Stitcher$SpriteLoader 1/1 + Patching net/minecraft/client/renderer/texture/Stitcher 1/1 + Patching net/minecraft/client/renderer/texture/TextureAtlas 1/1 + Patching net/minecraft/client/renderer/texture/TextureAtlasSprite$1 1/1 + Patching net/minecraft/client/renderer/texture/TextureAtlasSprite$Ticker 1/1 + Patching net/minecraft/client/renderer/texture/TextureAtlasSprite 1/1 + Patching net/minecraft/client/renderer/texture/TextureManager 1/1 + Patching net/minecraft/client/resources/language/ClientLanguage 1/1 + Patching net/minecraft/client/resources/language/I18n 1/1 + Patching net/minecraft/client/resources/language/LanguageManager 1/1 + Patching net/minecraft/client/resources/model/BakedModel 1/1 + Patching net/minecraft/client/resources/model/ModelBaker 1/1 + Patching net/minecraft/client/resources/model/ModelBakery$BakedCacheKey 1/1 + Patching net/minecraft/client/resources/model/ModelBakery$BlockStateDefinitionException 1/1 + Patching net/minecraft/client/resources/model/ModelBakery$LoadedJson 1/1 + Patching net/minecraft/client/resources/model/ModelBakery$ModelBakerImpl 1/1 + Patching net/minecraft/client/resources/model/ModelBakery$ModelGroupKey 1/1 + Patching net/minecraft/client/resources/model/ModelBakery 1/1 + Patching net/minecraft/client/resources/model/ModelManager$ReloadState 1/1 + Patching net/minecraft/client/resources/model/ModelManager 1/1 + Patching net/minecraft/client/resources/model/MultiPartBakedModel$Builder 1/1 + Patching net/minecraft/client/resources/model/MultiPartBakedModel 1/1 + Patching net/minecraft/client/resources/model/SimpleBakedModel$Builder 1/1 + Patching net/minecraft/client/resources/model/SimpleBakedModel 1/1 + Patching net/minecraft/client/resources/model/WeightedBakedModel$Builder 1/1 + Patching net/minecraft/client/resources/model/WeightedBakedModel 1/1 + Patching net/minecraft/client/resources/sounds/SoundInstance$Attenuation 1/1 + Patching net/minecraft/client/resources/sounds/SoundInstance 1/1 + Patching net/minecraft/client/server/IntegratedServer 1/1 + Patching net/minecraft/client/server/LanServerDetection$LanServerDetector 1/1 + Patching net/minecraft/client/server/LanServerDetection$LanServerList 1/1 + Patching net/minecraft/client/server/LanServerDetection 1/1 + Patching net/minecraft/client/server/LanServerPinger 1/1 + Patching net/minecraft/client/sounds/SoundEngine$DeviceCheckState 1/1 + Patching net/minecraft/client/sounds/SoundEngine 1/1 + Patching net/minecraft/commands/CommandSourceStack 1/1 + Patching net/minecraft/commands/Commands$1$1 1/1 + Patching net/minecraft/commands/Commands$1 1/1 + Patching net/minecraft/commands/Commands$CommandSelection 1/1 + Patching net/minecraft/commands/Commands$ParseFunction 1/1 + Patching net/minecraft/commands/Commands 1/1 + Patching net/minecraft/commands/arguments/EntityArgument$Info$Template 1/1 + Patching net/minecraft/commands/arguments/EntityArgument$Info 1/1 + Patching net/minecraft/commands/arguments/EntityArgument 1/1 + Patching net/minecraft/commands/arguments/MessageArgument$Message 1/1 + Patching net/minecraft/commands/arguments/MessageArgument$Part 1/1 + Patching net/minecraft/commands/arguments/MessageArgument 1/1 + Patching net/minecraft/commands/arguments/ObjectiveArgument 1/1 + Patching net/minecraft/commands/arguments/ResourceLocationArgument 1/1 + Patching net/minecraft/commands/arguments/TeamArgument 1/1 + Patching net/minecraft/commands/arguments/coordinates/BlockPosArgument 1/1 + Patching net/minecraft/commands/arguments/selector/EntitySelector$1 1/1 + Patching net/minecraft/commands/arguments/selector/EntitySelector 1/1 + Patching net/minecraft/commands/arguments/selector/EntitySelectorParser 1/1 + Patching net/minecraft/commands/synchronization/ArgumentTypeInfos 1/1 + Patching net/minecraft/core/Holder$Direct 1/1 + Patching net/minecraft/core/Holder$Kind 1/1 + Patching net/minecraft/core/Holder$Reference$Type 1/1 + Patching net/minecraft/core/Holder$Reference 1/1 + Patching net/minecraft/core/Holder 1/1 + Patching net/minecraft/core/HolderSet$Direct 1/1 + Patching net/minecraft/core/HolderSet$ListBacked 1/1 + Patching net/minecraft/core/HolderSet$Named 1/1 + Patching net/minecraft/core/HolderSet 1/1 + Patching net/minecraft/core/MappedRegistry$1 1/1 + Patching net/minecraft/core/MappedRegistry$2 1/1 + Patching net/minecraft/core/MappedRegistry 1/1 + Patching net/minecraft/core/RegistryCodecs$RegistryEntry 1/1 + Patching net/minecraft/core/RegistryCodecs 1/1 + Patching net/minecraft/core/RegistrySetBuilder$1 1/1 + Patching net/minecraft/core/RegistrySetBuilder$BuildState$1 1/1 + Patching net/minecraft/core/RegistrySetBuilder$BuildState 1/1 + Patching net/minecraft/core/RegistrySetBuilder$CompositeOwner 1/1 + Patching net/minecraft/core/RegistrySetBuilder$EmptyTagLookup 1/1 + Patching net/minecraft/core/RegistrySetBuilder$RegisteredValue 1/1 + Patching net/minecraft/core/RegistrySetBuilder$RegistryBootstrap 1/1 + Patching net/minecraft/core/RegistrySetBuilder$RegistryContents$1 1/1 + Patching net/minecraft/core/RegistrySetBuilder$RegistryContents 1/1 + Patching net/minecraft/core/RegistrySetBuilder$RegistryStub 1/1 + Patching net/minecraft/core/RegistrySetBuilder$UniversalLookup 1/1 + Patching net/minecraft/core/RegistrySetBuilder$ValueAndHolder 1/1 + Patching net/minecraft/core/RegistrySetBuilder 1/1 + Patching net/minecraft/core/RegistrySynchronization$NetworkedRegistryData 1/1 + Patching net/minecraft/core/RegistrySynchronization 1/1 + Patching net/minecraft/core/dispenser/BoatDispenseItemBehavior 1/1 + Patching net/minecraft/core/dispenser/DispenseItemBehavior$1 1/1 + Patching net/minecraft/core/dispenser/DispenseItemBehavior$10 1/1 + Patching net/minecraft/core/dispenser/DispenseItemBehavior$11 1/1 + Patching net/minecraft/core/dispenser/DispenseItemBehavior$12 1/1 + Patching net/minecraft/core/dispenser/DispenseItemBehavior$13 1/1 + Patching net/minecraft/core/dispenser/DispenseItemBehavior$14 1/1 + Patching net/minecraft/core/dispenser/DispenseItemBehavior$15 1/1 + Patching net/minecraft/core/dispenser/DispenseItemBehavior$16 1/1 + Patching net/minecraft/core/dispenser/DispenseItemBehavior$17 1/1 + Patching net/minecraft/core/dispenser/DispenseItemBehavior$18 1/1 + Patching net/minecraft/core/dispenser/DispenseItemBehavior$19 1/1 + Patching net/minecraft/core/dispenser/DispenseItemBehavior$2 1/1 + Patching net/minecraft/core/dispenser/DispenseItemBehavior$20 1/1 + Patching net/minecraft/core/dispenser/DispenseItemBehavior$21 1/1 + Patching net/minecraft/core/dispenser/DispenseItemBehavior$22 1/1 + Patching net/minecraft/core/dispenser/DispenseItemBehavior$23 1/1 + Patching net/minecraft/core/dispenser/DispenseItemBehavior$24 1/1 + Patching net/minecraft/core/dispenser/DispenseItemBehavior$25 1/1 + Patching net/minecraft/core/dispenser/DispenseItemBehavior$26 1/1 + Patching net/minecraft/core/dispenser/DispenseItemBehavior$27 1/1 + Patching net/minecraft/core/dispenser/DispenseItemBehavior$3 1/1 + Patching net/minecraft/core/dispenser/DispenseItemBehavior$4 1/1 + Patching net/minecraft/core/dispenser/DispenseItemBehavior$5 1/1 + Patching net/minecraft/core/dispenser/DispenseItemBehavior$6 1/1 + Patching net/minecraft/core/dispenser/DispenseItemBehavior$7$1 1/1 + Patching net/minecraft/core/dispenser/DispenseItemBehavior$7 1/1 + Patching net/minecraft/core/dispenser/DispenseItemBehavior$8$1 1/1 + Patching net/minecraft/core/dispenser/DispenseItemBehavior$8 1/1 + Patching net/minecraft/core/dispenser/DispenseItemBehavior$9 1/1 + Patching net/minecraft/core/dispenser/DispenseItemBehavior 1/1 + Patching net/minecraft/core/particles/BlockParticleOption$1 1/1 + Patching net/minecraft/core/particles/BlockParticleOption 1/1 + Patching net/minecraft/core/particles/ItemParticleOption$1 1/1 + Patching net/minecraft/core/particles/ItemParticleOption 1/1 + Patching net/minecraft/core/registries/BuiltInRegistries$RegistryBootstrap 1/1 + Patching net/minecraft/core/registries/BuiltInRegistries 1/1 + Patching net/minecraft/data/DataGenerator$PackGenerator 1/1 + Patching net/minecraft/data/DataGenerator 1/1 + Patching net/minecraft/data/HashCache$CacheUpdater 1/1 + Patching net/minecraft/data/HashCache$ProviderCache 1/1 + Patching net/minecraft/data/HashCache$ProviderCacheBuilder 1/1 + Patching net/minecraft/data/HashCache$UpdateFunction 1/1 + Patching net/minecraft/data/HashCache$UpdateResult 1/1 + Patching net/minecraft/data/HashCache 1/1 + Patching net/minecraft/data/Main 1/1 + Patching net/minecraft/data/advancements/AdvancementProvider 1/1 + Patching net/minecraft/data/loot/BlockLootSubProvider 1/1 + Patching net/minecraft/data/loot/EntityLootSubProvider 1/1 + Patching net/minecraft/data/loot/LootTableProvider$1 1/1 + Patching net/minecraft/data/loot/LootTableProvider$SubProviderEntry 1/1 + Patching net/minecraft/data/loot/LootTableProvider 1/1 + Patching net/minecraft/data/recipes/RecipeProvider 1/1 + Patching net/minecraft/data/registries/RegistriesDatapackGenerator 1/1 + Patching net/minecraft/data/registries/VanillaRegistries 1/1 + Patching net/minecraft/data/tags/BannerPatternTagsProvider 1/1 + Patching net/minecraft/data/tags/BiomeTagsProvider 1/1 + Patching net/minecraft/data/tags/CatVariantTagsProvider 1/1 + Patching net/minecraft/data/tags/DamageTypeTagsProvider 1/1 + Patching net/minecraft/data/tags/EntityTypeTagsProvider 1/1 + Patching net/minecraft/data/tags/FlatLevelGeneratorPresetTagsProvider 1/1 + Patching net/minecraft/data/tags/FluidTagsProvider 1/1 + Patching net/minecraft/data/tags/GameEventTagsProvider 1/1 + Patching net/minecraft/data/tags/InstrumentTagsProvider 1/1 + Patching net/minecraft/data/tags/IntrinsicHolderTagsProvider$IntrinsicTagAppender 1/1 + Patching net/minecraft/data/tags/IntrinsicHolderTagsProvider 1/1 + Patching net/minecraft/data/tags/ItemTagsProvider 1/1 + Patching net/minecraft/data/tags/PaintingVariantTagsProvider 1/1 + Patching net/minecraft/data/tags/PoiTypeTagsProvider 1/1 + Patching net/minecraft/data/tags/StructureTagsProvider 1/1 + Patching net/minecraft/data/tags/TagsProvider$1CombinedData 1/1 + Patching net/minecraft/data/tags/TagsProvider$TagAppender 1/1 + Patching net/minecraft/data/tags/TagsProvider$TagLookup 1/1 + Patching net/minecraft/data/tags/TagsProvider 1/1 + Patching net/minecraft/data/tags/WorldPresetTagsProvider 1/1 + Patching net/minecraft/data/worldgen/BootstapContext 1/1 + Patching net/minecraft/data/worldgen/biome/OverworldBiomes 1/1 + Patching net/minecraft/gametest/framework/GameTest 1/1 + Patching net/minecraft/gametest/framework/GameTestRegistry 1/1 + Patching net/minecraft/gametest/framework/GameTestServer$1 1/1 + Patching net/minecraft/gametest/framework/GameTestServer 1/1 + Patching net/minecraft/gametest/framework/StructureUtils$1 1/1 + Patching net/minecraft/gametest/framework/StructureUtils 1/1 + Patching net/minecraft/locale/Language$1 1/1 + Patching net/minecraft/locale/Language 1/1 + Patching net/minecraft/nbt/CompoundTag$1 1/1 + Patching net/minecraft/nbt/CompoundTag$2 1/1 + Patching net/minecraft/nbt/CompoundTag 1/1 + Patching net/minecraft/nbt/NbtAccounter$1 1/1 + Patching net/minecraft/nbt/NbtAccounter 1/1 + Patching net/minecraft/nbt/NbtIo$1 1/1 + Patching net/minecraft/nbt/NbtIo 1/1 + Patching net/minecraft/nbt/StringTag$1 1/1 + Patching net/minecraft/nbt/StringTag 1/1 + Patching net/minecraft/network/CompressionEncoder 1/1 + Patching net/minecraft/network/Connection$1 1/1 + Patching net/minecraft/network/Connection$2 1/1 + Patching net/minecraft/network/Connection$PacketHolder 1/1 + Patching net/minecraft/network/Connection 1/1 + Patching net/minecraft/network/FriendlyByteBuf$1 1/1 + Patching net/minecraft/network/FriendlyByteBuf$Reader 1/1 + Patching net/minecraft/network/FriendlyByteBuf$Writer 1/1 + Patching net/minecraft/network/FriendlyByteBuf 1/1 + Patching net/minecraft/network/chat/contents/TranslatableContents 1/1 + Patching net/minecraft/network/protocol/game/ClientboundCustomPayloadPacket 1/1 + Patching net/minecraft/network/protocol/game/ServerboundContainerClickPacket 1/1 + Patching net/minecraft/network/protocol/game/ServerboundCustomPayloadPacket 1/1 + Patching net/minecraft/network/protocol/game/ServerboundSetCreativeModeSlotPacket 1/1 + Patching net/minecraft/network/protocol/handshake/ClientIntentionPacket 1/1 + Patching net/minecraft/network/protocol/login/ClientboundCustomQueryPacket 1/1 + Patching net/minecraft/network/protocol/login/ServerboundCustomQueryPacket 1/1 + Patching net/minecraft/network/protocol/status/ClientboundStatusResponsePacket 1/1 + Patching net/minecraft/network/protocol/status/ServerStatus$Favicon 1/1 + Patching net/minecraft/network/protocol/status/ServerStatus$Players 1/1 + Patching net/minecraft/network/protocol/status/ServerStatus$Version 1/1 + Patching net/minecraft/network/protocol/status/ServerStatus 1/1 + Patching net/minecraft/network/syncher/EntityDataSerializers$1 1/1 + Patching net/minecraft/network/syncher/EntityDataSerializers$2 1/1 + Patching net/minecraft/network/syncher/EntityDataSerializers$3 1/1 + Patching net/minecraft/network/syncher/EntityDataSerializers$4 1/1 + Patching net/minecraft/network/syncher/EntityDataSerializers$5 1/1 + Patching net/minecraft/network/syncher/EntityDataSerializers$6 1/1 + Patching net/minecraft/network/syncher/EntityDataSerializers$7 1/1 + Patching net/minecraft/network/syncher/EntityDataSerializers 1/1 + Patching net/minecraft/network/syncher/SynchedEntityData$DataItem 1/1 + Patching net/minecraft/network/syncher/SynchedEntityData$DataValue 1/1 + Patching net/minecraft/network/syncher/SynchedEntityData 1/1 + Patching net/minecraft/recipebook/PlaceRecipe 1/1 + Patching net/minecraft/resources/HolderSetCodec 1/1 + Patching net/minecraft/resources/RegistryDataLoader$1 1/1 + Patching net/minecraft/resources/RegistryDataLoader$Loader 1/1 + Patching net/minecraft/resources/RegistryDataLoader$RegistryData 1/1 + Patching net/minecraft/resources/RegistryDataLoader 1/1 + Patching net/minecraft/resources/RegistryOps$1 1/1 + Patching net/minecraft/resources/RegistryOps$2 1/1 + Patching net/minecraft/resources/RegistryOps$RegistryInfo 1/1 + Patching net/minecraft/resources/RegistryOps$RegistryInfoLookup 1/1 + Patching net/minecraft/resources/RegistryOps 1/1 + Patching net/minecraft/resources/ResourceKey$InternKey 1/1 + Patching net/minecraft/resources/ResourceKey 1/1 + Patching net/minecraft/resources/ResourceLocation$Dummy 1/1 + Patching net/minecraft/resources/ResourceLocation$Serializer 1/1 + Patching net/minecraft/resources/ResourceLocation 1/1 + Patching net/minecraft/server/Bootstrap$1 1/1 + Patching net/minecraft/server/Bootstrap 1/1 + Patching net/minecraft/server/Eula 1/1 + Patching net/minecraft/server/Main$1 1/1 + Patching net/minecraft/server/Main 1/1 + Patching net/minecraft/server/MinecraftServer$1 1/1 + Patching net/minecraft/server/MinecraftServer$ReloadableResources 1/1 + Patching net/minecraft/server/MinecraftServer$ServerResourcePackInfo 1/1 + Patching net/minecraft/server/MinecraftServer$TimeProfiler$1 1/1 + Patching net/minecraft/server/MinecraftServer$TimeProfiler 1/1 + Patching net/minecraft/server/MinecraftServer 1/1 + Patching net/minecraft/server/PlayerAdvancements$1 1/1 + Patching net/minecraft/server/PlayerAdvancements 1/1 + Patching net/minecraft/server/ReloadableServerResources 1/1 + Patching net/minecraft/server/ServerAdvancementManager 1/1 + Patching net/minecraft/server/WorldLoader$DataLoadContext 1/1 + Patching net/minecraft/server/WorldLoader$DataLoadOutput 1/1 + Patching net/minecraft/server/WorldLoader$InitConfig 1/1 + Patching net/minecraft/server/WorldLoader$PackConfig 1/1 + Patching net/minecraft/server/WorldLoader$ResultFactory 1/1 + Patching net/minecraft/server/WorldLoader$WorldDataSupplier 1/1 + Patching net/minecraft/server/WorldLoader 1/1 + Patching net/minecraft/server/advancements/AdvancementVisibilityEvaluator$Output 1/1 + Patching net/minecraft/server/advancements/AdvancementVisibilityEvaluator$VisibilityRule 1/1 + Patching net/minecraft/server/advancements/AdvancementVisibilityEvaluator 1/1 + Patching net/minecraft/server/commands/SpreadPlayersCommand$Position 1/1 + Patching net/minecraft/server/commands/SpreadPlayersCommand 1/1 + Patching net/minecraft/server/commands/TeleportCommand$LookAt 1/1 + Patching net/minecraft/server/commands/TeleportCommand 1/1 + Patching net/minecraft/server/dedicated/DedicatedServer$1 1/1 + Patching net/minecraft/server/dedicated/DedicatedServer 1/1 + Patching net/minecraft/server/dedicated/ServerWatchdog$1 1/1 + Patching net/minecraft/server/dedicated/ServerWatchdog 1/1 + Patching net/minecraft/server/dedicated/Settings$MutableValue 1/1 + Patching net/minecraft/server/dedicated/Settings 1/1 + Patching net/minecraft/server/gui/MinecraftServerGui$1 1/1 + Patching net/minecraft/server/gui/MinecraftServerGui$2 1/1 + Patching net/minecraft/server/gui/MinecraftServerGui 1/1 + Patching net/minecraft/server/level/ChunkHolder$1 1/1 + Patching net/minecraft/server/level/ChunkHolder$ChunkLoadingFailure$1 1/1 + Patching net/minecraft/server/level/ChunkHolder$ChunkLoadingFailure 1/1 + Patching net/minecraft/server/level/ChunkHolder$ChunkSaveDebug 1/1 + Patching net/minecraft/server/level/ChunkHolder$LevelChangeListener 1/1 + Patching net/minecraft/server/level/ChunkHolder$PlayerProvider 1/1 + Patching net/minecraft/server/level/ChunkHolder 1/1 + Patching net/minecraft/server/level/ChunkMap$1 1/1 + Patching net/minecraft/server/level/ChunkMap$2 1/1 + Patching net/minecraft/server/level/ChunkMap$DistanceManager 1/1 + Patching net/minecraft/server/level/ChunkMap$TrackedEntity 1/1 + Patching net/minecraft/server/level/ChunkMap 1/1 + Patching net/minecraft/server/level/DistanceManager$ChunkTicketTracker 1/1 + Patching net/minecraft/server/level/DistanceManager$FixedPlayerDistanceChunkTracker 1/1 + Patching net/minecraft/server/level/DistanceManager$PlayerTicketTracker 1/1 + Patching net/minecraft/server/level/DistanceManager 1/1 + Patching net/minecraft/server/level/ServerChunkCache$ChunkAndHolder 1/1 + Patching net/minecraft/server/level/ServerChunkCache$MainThreadExecutor 1/1 + Patching net/minecraft/server/level/ServerChunkCache 1/1 + Patching net/minecraft/server/level/ServerEntity 1/1 + Patching net/minecraft/server/level/ServerLevel$EntityCallbacks 1/1 + Patching net/minecraft/server/level/ServerLevel 1/1 + Patching net/minecraft/server/level/ServerPlayer$1 1/1 + Patching net/minecraft/server/level/ServerPlayer$2 1/1 + Patching net/minecraft/server/level/ServerPlayer 1/1 + Patching net/minecraft/server/level/ServerPlayerGameMode 1/1 + Patching net/minecraft/server/level/Ticket 1/1 + Patching net/minecraft/server/level/WorldGenRegion 1/1 + Patching net/minecraft/server/network/MemoryServerHandshakePacketListenerImpl 1/1 + Patching net/minecraft/server/network/ServerConnectionListener$1 1/1 + Patching net/minecraft/server/network/ServerConnectionListener$2 1/1 + Patching net/minecraft/server/network/ServerConnectionListener$LatencySimulator$DelayedMessage 1/1 + Patching net/minecraft/server/network/ServerConnectionListener$LatencySimulator 1/1 + Patching net/minecraft/server/network/ServerConnectionListener 1/1 + Patching net/minecraft/server/network/ServerGamePacketListenerImpl$1 1/1 + Patching net/minecraft/server/network/ServerGamePacketListenerImpl$2 1/1 + Patching net/minecraft/server/network/ServerGamePacketListenerImpl$EntityInteraction 1/1 + Patching net/minecraft/server/network/ServerGamePacketListenerImpl 1/1 + Patching net/minecraft/server/network/ServerHandshakePacketListenerImpl$1 1/1 + Patching net/minecraft/server/network/ServerHandshakePacketListenerImpl 1/1 + Patching net/minecraft/server/network/ServerLoginPacketListenerImpl$1 1/1 + Patching net/minecraft/server/network/ServerLoginPacketListenerImpl$State 1/1 + Patching net/minecraft/server/network/ServerLoginPacketListenerImpl 1/1 + Patching net/minecraft/server/network/ServerStatusPacketListenerImpl 1/1 + Patching net/minecraft/server/packs/AbstractPackResources 1/1 + Patching net/minecraft/server/packs/PackResources$ResourceOutput 1/1 + Patching net/minecraft/server/packs/PackResources 1/1 + Patching net/minecraft/server/packs/metadata/pack/PackMetadataSection 1/1 + Patching net/minecraft/server/packs/metadata/pack/PackMetadataSectionSerializer 1/1 + Patching net/minecraft/server/packs/repository/Pack$Info 1/1 + Patching net/minecraft/server/packs/repository/Pack$Position 1/1 + Patching net/minecraft/server/packs/repository/Pack$ResourcesSupplier 1/1 + Patching net/minecraft/server/packs/repository/Pack 1/1 + Patching net/minecraft/server/packs/repository/PackRepository 1/1 + Patching net/minecraft/server/packs/repository/ServerPacksSource 1/1 + Patching net/minecraft/server/packs/resources/FallbackResourceManager$1ResourceWithSourceAndIndex 1/1 + Patching net/minecraft/server/packs/resources/FallbackResourceManager$EntryStack 1/1 + Patching net/minecraft/server/packs/resources/FallbackResourceManager$LeakedResourceWarningInputStream 1/1 + Patching net/minecraft/server/packs/resources/FallbackResourceManager$PackEntry 1/1 + Patching net/minecraft/server/packs/resources/FallbackResourceManager$ResourceWithSource 1/1 + Patching net/minecraft/server/packs/resources/FallbackResourceManager 1/1 + Patching net/minecraft/server/packs/resources/ReloadableResourceManager 1/1 + Patching net/minecraft/server/packs/resources/SimpleJsonResourceReloadListener 1/1 + Patching net/minecraft/server/players/PlayerList$1 1/1 + Patching net/minecraft/server/players/PlayerList 1/1 + Patching net/minecraft/server/rcon/RconConsoleSource 1/1 + Patching net/minecraft/server/rcon/thread/RconClient 1/1 + Patching net/minecraft/stats/RecipeBookSettings$TypeSettings 1/1 + Patching net/minecraft/stats/RecipeBookSettings 1/1 + Patching net/minecraft/tags/BlockTags 1/1 + Patching net/minecraft/tags/FluidTags 1/1 + Patching net/minecraft/tags/ItemTags 1/1 + Patching net/minecraft/tags/TagBuilder 1/1 + Patching net/minecraft/tags/TagEntry$Lookup 1/1 + Patching net/minecraft/tags/TagEntry 1/1 + Patching net/minecraft/tags/TagFile 1/1 + Patching net/minecraft/tags/TagLoader$1 1/1 + Patching net/minecraft/tags/TagLoader$EntryWithSource 1/1 + Patching net/minecraft/tags/TagLoader$SortingEntry 1/1 + Patching net/minecraft/tags/TagLoader 1/1 + Patching net/minecraft/tags/TagManager$LoadResult 1/1 + Patching net/minecraft/tags/TagManager 1/1 + Patching net/minecraft/util/SpawnUtil$Strategy 1/1 + Patching net/minecraft/util/SpawnUtil 1/1 + Patching net/minecraft/util/datafix/fixes/StructuresBecomeConfiguredFix$Conversion 1/1 + Patching net/minecraft/util/datafix/fixes/StructuresBecomeConfiguredFix 1/1 + Patching net/minecraft/util/datafix/schemas/V2832 1/1 + Patching net/minecraft/world/effect/MobEffect 1/1 + Patching net/minecraft/world/effect/MobEffectInstance$FactorData 1/1 + Patching net/minecraft/world/effect/MobEffectInstance 1/1 + Patching net/minecraft/world/entity/Entity$1 1/1 + Patching net/minecraft/world/entity/Entity$MoveFunction 1/1 + Patching net/minecraft/world/entity/Entity$MovementEmission 1/1 + Patching net/minecraft/world/entity/Entity$RemovalReason 1/1 + Patching net/minecraft/world/entity/Entity 1/1 + Patching net/minecraft/world/entity/EntityType$1 1/1 + Patching net/minecraft/world/entity/EntityType$Builder 1/1 + Patching net/minecraft/world/entity/EntityType$EntityFactory 1/1 + Patching net/minecraft/world/entity/EntityType 1/1 + Patching net/minecraft/world/entity/ExperienceOrb 1/1 + Patching net/minecraft/world/entity/FlyingMob 1/1 + Patching net/minecraft/world/entity/LightningBolt 1/1 + Patching net/minecraft/world/entity/LivingEntity$1 1/1 + Patching net/minecraft/world/entity/LivingEntity$Fallsounds 1/1 + Patching net/minecraft/world/entity/LivingEntity 1/1 + Patching net/minecraft/world/entity/Mob$1 1/1 + Patching net/minecraft/world/entity/Mob 1/1 + Patching net/minecraft/world/entity/MobCategory 1/1 + Patching net/minecraft/world/entity/Shearable 1/1 + Patching net/minecraft/world/entity/SpawnPlacements$Data 1/1 + Patching net/minecraft/world/entity/SpawnPlacements$SpawnPredicate 1/1 + Patching net/minecraft/world/entity/SpawnPlacements$Type 1/1 + Patching net/minecraft/world/entity/SpawnPlacements 1/1 + Patching net/minecraft/world/entity/TamableAnimal 1/1 + Patching net/minecraft/world/entity/ai/Brain$1 1/1 + Patching net/minecraft/world/entity/ai/Brain$MemoryValue 1/1 + Patching net/minecraft/world/entity/ai/Brain$Provider 1/1 + Patching net/minecraft/world/entity/ai/Brain 1/1 + Patching net/minecraft/world/entity/ai/attributes/AttributeSupplier$Builder 1/1 + Patching net/minecraft/world/entity/ai/attributes/AttributeSupplier 1/1 + Patching net/minecraft/world/entity/ai/attributes/DefaultAttributes 1/1 + Patching net/minecraft/world/entity/ai/behavior/CrossbowAttack$CrossbowState 1/1 + Patching net/minecraft/world/entity/ai/behavior/CrossbowAttack 1/1 + Patching net/minecraft/world/entity/ai/behavior/HarvestFarmland 1/1 + Patching net/minecraft/world/entity/ai/behavior/StartAttacking 1/1 + Patching net/minecraft/world/entity/ai/behavior/Swim 1/1 + Patching net/minecraft/world/entity/ai/control/MoveControl$Operation 1/1 + Patching net/minecraft/world/entity/ai/control/MoveControl 1/1 + Patching net/minecraft/world/entity/ai/goal/BreakDoorGoal 1/1 + Patching net/minecraft/world/entity/ai/goal/EatBlockGoal 1/1 + Patching net/minecraft/world/entity/ai/goal/FloatGoal 1/1 + Patching net/minecraft/world/entity/ai/goal/MeleeAttackGoal 1/1 + Patching net/minecraft/world/entity/ai/goal/RangedBowAttackGoal 1/1 + Patching net/minecraft/world/entity/ai/goal/RangedCrossbowAttackGoal$CrossbowState 1/1 + Patching net/minecraft/world/entity/ai/goal/RangedCrossbowAttackGoal 1/1 + Patching net/minecraft/world/entity/ai/goal/RemoveBlockGoal 1/1 + Patching net/minecraft/world/entity/ai/goal/RunAroundLikeCrazyGoal 1/1 + Patching net/minecraft/world/entity/ai/navigation/PathNavigation 1/1 + Patching net/minecraft/world/entity/ai/navigation/WallClimberNavigation 1/1 + Patching net/minecraft/world/entity/ai/village/VillageSiege$State 1/1 + Patching net/minecraft/world/entity/ai/village/VillageSiege 1/1 + Patching net/minecraft/world/entity/ai/village/poi/PoiTypes 1/1 + Patching net/minecraft/world/entity/animal/Animal 1/1 + Patching net/minecraft/world/entity/animal/Bee$1 1/1 + Patching net/minecraft/world/entity/animal/Bee$BaseBeeGoal 1/1 + Patching net/minecraft/world/entity/animal/Bee$BeeAttackGoal 1/1 + Patching net/minecraft/world/entity/animal/Bee$BeeBecomeAngryTargetGoal 1/1 + Patching net/minecraft/world/entity/animal/Bee$BeeEnterHiveGoal 1/1 + Patching net/minecraft/world/entity/animal/Bee$BeeGoToHiveGoal 1/1 + Patching net/minecraft/world/entity/animal/Bee$BeeGoToKnownFlowerGoal 1/1 + Patching net/minecraft/world/entity/animal/Bee$BeeGrowCropGoal 1/1 + Patching net/minecraft/world/entity/animal/Bee$BeeHurtByOtherGoal 1/1 + Patching net/minecraft/world/entity/animal/Bee$BeeLocateHiveGoal 1/1 + Patching net/minecraft/world/entity/animal/Bee$BeeLookControl 1/1 + Patching net/minecraft/world/entity/animal/Bee$BeePollinateGoal 1/1 + Patching net/minecraft/world/entity/animal/Bee$BeeWanderGoal 1/1 + Patching net/minecraft/world/entity/animal/Bee 1/1 + Patching net/minecraft/world/entity/animal/Cat$CatAvoidEntityGoal 1/1 + Patching net/minecraft/world/entity/animal/Cat$CatRelaxOnOwnerGoal 1/1 + Patching net/minecraft/world/entity/animal/Cat$CatTemptGoal 1/1 + Patching net/minecraft/world/entity/animal/Cat 1/1 + Patching net/minecraft/world/entity/animal/Fox$DefendTrustedTargetGoal 1/1 + Patching net/minecraft/world/entity/animal/Fox$FaceplantGoal 1/1 + Patching net/minecraft/world/entity/animal/Fox$FoxAlertableEntitiesSelector 1/1 + Patching net/minecraft/world/entity/animal/Fox$FoxBehaviorGoal 1/1 + Patching net/minecraft/world/entity/animal/Fox$FoxBreedGoal 1/1 + Patching net/minecraft/world/entity/animal/Fox$FoxEatBerriesGoal 1/1 + Patching net/minecraft/world/entity/animal/Fox$FoxFloatGoal 1/1 + Patching net/minecraft/world/entity/animal/Fox$FoxFollowParentGoal 1/1 + Patching net/minecraft/world/entity/animal/Fox$FoxGroupData 1/1 + Patching net/minecraft/world/entity/animal/Fox$FoxLookAtPlayerGoal 1/1 + Patching net/minecraft/world/entity/animal/Fox$FoxLookControl 1/1 + Patching net/minecraft/world/entity/animal/Fox$FoxMeleeAttackGoal 1/1 + Patching net/minecraft/world/entity/animal/Fox$FoxMoveControl 1/1 + Patching net/minecraft/world/entity/animal/Fox$FoxPanicGoal 1/1 + Patching net/minecraft/world/entity/animal/Fox$FoxPounceGoal 1/1 + Patching net/minecraft/world/entity/animal/Fox$FoxSearchForItemsGoal 1/1 + Patching net/minecraft/world/entity/animal/Fox$FoxStrollThroughVillageGoal 1/1 + Patching net/minecraft/world/entity/animal/Fox$PerchAndSearchGoal 1/1 + Patching net/minecraft/world/entity/animal/Fox$SeekShelterGoal 1/1 + Patching net/minecraft/world/entity/animal/Fox$SleepGoal 1/1 + Patching net/minecraft/world/entity/animal/Fox$StalkPreyGoal 1/1 + Patching net/minecraft/world/entity/animal/Fox$Type 1/1 + Patching net/minecraft/world/entity/animal/Fox 1/1 + Patching net/minecraft/world/entity/animal/MushroomCow$MushroomType 1/1 + Patching net/minecraft/world/entity/animal/MushroomCow 1/1 + Patching net/minecraft/world/entity/animal/Ocelot$OcelotAvoidEntityGoal 1/1 + Patching net/minecraft/world/entity/animal/Ocelot$OcelotTemptGoal 1/1 + Patching net/minecraft/world/entity/animal/Ocelot 1/1 + Patching net/minecraft/world/entity/animal/Parrot$1 1/1 + Patching net/minecraft/world/entity/animal/Parrot$ParrotWanderGoal 1/1 + Patching net/minecraft/world/entity/animal/Parrot$Variant 1/1 + Patching net/minecraft/world/entity/animal/Parrot 1/1 + Patching net/minecraft/world/entity/animal/Pig 1/1 + Patching net/minecraft/world/entity/animal/Rabbit$EvilRabbitAttackGoal 1/1 + Patching net/minecraft/world/entity/animal/Rabbit$RabbitAvoidEntityGoal 1/1 + Patching net/minecraft/world/entity/animal/Rabbit$RabbitGroupData 1/1 + Patching net/minecraft/world/entity/animal/Rabbit$RabbitJumpControl 1/1 + Patching net/minecraft/world/entity/animal/Rabbit$RabbitMoveControl 1/1 + Patching net/minecraft/world/entity/animal/Rabbit$RabbitPanicGoal 1/1 + Patching net/minecraft/world/entity/animal/Rabbit$RaidGardenGoal 1/1 + Patching net/minecraft/world/entity/animal/Rabbit$Variant 1/1 + Patching net/minecraft/world/entity/animal/Rabbit 1/1 + Patching net/minecraft/world/entity/animal/Sheep$1 1/1 + Patching net/minecraft/world/entity/animal/Sheep$2 1/1 + Patching net/minecraft/world/entity/animal/Sheep 1/1 + Patching net/minecraft/world/entity/animal/SnowGolem 1/1 + Patching net/minecraft/world/entity/animal/Wolf$WolfAvoidEntityGoal 1/1 + Patching net/minecraft/world/entity/animal/Wolf$WolfPanicGoal 1/1 + Patching net/minecraft/world/entity/animal/Wolf 1/1 + Patching net/minecraft/world/entity/animal/allay/Allay$JukeboxListener 1/1 + Patching net/minecraft/world/entity/animal/allay/Allay$VibrationUser 1/1 + Patching net/minecraft/world/entity/animal/allay/Allay 1/1 + Patching net/minecraft/world/entity/animal/camel/Camel$CamelBodyRotationControl 1/1 + Patching net/minecraft/world/entity/animal/camel/Camel$CamelMoveControl 1/1 + Patching net/minecraft/world/entity/animal/camel/Camel 1/1 + Patching net/minecraft/world/entity/animal/horse/AbstractHorse$1 1/1 + Patching net/minecraft/world/entity/animal/horse/AbstractHorse 1/1 + Patching net/minecraft/world/entity/animal/horse/Horse$HorseGroupData 1/1 + Patching net/minecraft/world/entity/animal/horse/Horse 1/1 + Patching net/minecraft/world/entity/animal/horse/SkeletonTrapGoal 1/1 + Patching net/minecraft/world/entity/animal/sniffer/Sniffer$1 1/1 + Patching net/minecraft/world/entity/animal/sniffer/Sniffer$State 1/1 + Patching net/minecraft/world/entity/animal/sniffer/Sniffer 1/1 + Patching net/minecraft/world/entity/boss/EnderDragonPart 1/1 + Patching net/minecraft/world/entity/boss/enderdragon/EnderDragon 1/1 + Patching net/minecraft/world/entity/boss/wither/WitherBoss$WitherDoNothingGoal 1/1 + Patching net/minecraft/world/entity/boss/wither/WitherBoss 1/1 + Patching net/minecraft/world/entity/decoration/ArmorStand$1 1/1 + Patching net/minecraft/world/entity/decoration/ArmorStand 1/1 + Patching net/minecraft/world/entity/decoration/HangingEntity$1 1/1 + Patching net/minecraft/world/entity/decoration/HangingEntity 1/1 + Patching net/minecraft/world/entity/item/FallingBlockEntity 1/1 + Patching net/minecraft/world/entity/item/ItemEntity 1/1 + Patching net/minecraft/world/entity/monster/AbstractSkeleton$1 1/1 + Patching net/minecraft/world/entity/monster/AbstractSkeleton 1/1 + Patching net/minecraft/world/entity/monster/CrossbowAttackMob 1/1 + Patching net/minecraft/world/entity/monster/EnderMan$EndermanFreezeWhenLookedAt 1/1 + Patching net/minecraft/world/entity/monster/EnderMan$EndermanLeaveBlockGoal 1/1 + Patching net/minecraft/world/entity/monster/EnderMan$EndermanLookForPlayerGoal 1/1 + Patching net/minecraft/world/entity/monster/EnderMan$EndermanTakeBlockGoal 1/1 + Patching net/minecraft/world/entity/monster/EnderMan 1/1 + Patching net/minecraft/world/entity/monster/Evoker$EvokerAttackSpellGoal 1/1 + Patching net/minecraft/world/entity/monster/Evoker$EvokerCastingSpellGoal 1/1 + Patching net/minecraft/world/entity/monster/Evoker$EvokerSummonSpellGoal 1/1 + Patching net/minecraft/world/entity/monster/Evoker$EvokerWololoSpellGoal 1/1 + Patching net/minecraft/world/entity/monster/Evoker 1/1 + Patching net/minecraft/world/entity/monster/Illusioner$IllusionerBlindnessSpellGoal 1/1 + Patching net/minecraft/world/entity/monster/Illusioner$IllusionerMirrorSpellGoal 1/1 + Patching net/minecraft/world/entity/monster/Illusioner 1/1 + Patching net/minecraft/world/entity/monster/MagmaCube 1/1 + Patching net/minecraft/world/entity/monster/Monster 1/1 + Patching net/minecraft/world/entity/monster/Pillager 1/1 + Patching net/minecraft/world/entity/monster/Ravager$RavagerMeleeAttackGoal 1/1 + Patching net/minecraft/world/entity/monster/Ravager 1/1 + Patching net/minecraft/world/entity/monster/Shulker$ShulkerAttackGoal 1/1 + Patching net/minecraft/world/entity/monster/Shulker$ShulkerBodyRotationControl 1/1 + Patching net/minecraft/world/entity/monster/Shulker$ShulkerDefenseAttackGoal 1/1 + Patching net/minecraft/world/entity/monster/Shulker$ShulkerLookControl 1/1 + Patching net/minecraft/world/entity/monster/Shulker$ShulkerNearestAttackGoal 1/1 + Patching net/minecraft/world/entity/monster/Shulker$ShulkerPeekGoal 1/1 + Patching net/minecraft/world/entity/monster/Shulker 1/1 + Patching net/minecraft/world/entity/monster/Silverfish$SilverfishMergeWithStoneGoal 1/1 + Patching net/minecraft/world/entity/monster/Silverfish$SilverfishWakeUpFriendsGoal 1/1 + Patching net/minecraft/world/entity/monster/Silverfish 1/1 + Patching net/minecraft/world/entity/monster/Slime$SlimeAttackGoal 1/1 + Patching net/minecraft/world/entity/monster/Slime$SlimeFloatGoal 1/1 + Patching net/minecraft/world/entity/monster/Slime$SlimeKeepOnJumpingGoal 1/1 + Patching net/minecraft/world/entity/monster/Slime$SlimeMoveControl 1/1 + Patching net/minecraft/world/entity/monster/Slime$SlimeRandomDirectionGoal 1/1 + Patching net/minecraft/world/entity/monster/Slime 1/1 + Patching net/minecraft/world/entity/monster/Spider$SpiderAttackGoal 1/1 + Patching net/minecraft/world/entity/monster/Spider$SpiderEffectsGroupData 1/1 + Patching net/minecraft/world/entity/monster/Spider$SpiderTargetGoal 1/1 + Patching net/minecraft/world/entity/monster/Spider 1/1 + Patching net/minecraft/world/entity/monster/Zombie$ZombieAttackTurtleEggGoal 1/1 + Patching net/minecraft/world/entity/monster/Zombie$ZombieGroupData 1/1 + Patching net/minecraft/world/entity/monster/Zombie 1/1 + Patching net/minecraft/world/entity/monster/ZombieVillager 1/1 + Patching net/minecraft/world/entity/monster/hoglin/Hoglin 1/1 + Patching net/minecraft/world/entity/monster/piglin/AbstractPiglin 1/1 + Patching net/minecraft/world/entity/monster/piglin/Piglin 1/1 + Patching net/minecraft/world/entity/monster/piglin/PiglinAi 1/1 + Patching net/minecraft/world/entity/monster/piglin/StopHoldingItemIfNoLongerAdmiring 1/1 + Patching net/minecraft/world/entity/npc/AbstractVillager 1/1 + Patching net/minecraft/world/entity/npc/CatSpawner 1/1 + Patching net/minecraft/world/entity/npc/Villager 1/1 + Patching net/minecraft/world/entity/player/Inventory 1/1 + Patching net/minecraft/world/entity/player/Player$1 1/1 + Patching net/minecraft/world/entity/player/Player$BedSleepingProblem 1/1 + Patching net/minecraft/world/entity/player/Player 1/1 + Patching net/minecraft/world/entity/projectile/AbstractArrow$1 1/1 + Patching net/minecraft/world/entity/projectile/AbstractArrow$Pickup 1/1 + Patching net/minecraft/world/entity/projectile/AbstractArrow 1/1 + Patching net/minecraft/world/entity/projectile/AbstractHurtingProjectile 1/1 + Patching net/minecraft/world/entity/projectile/FireworkRocketEntity 1/1 + Patching net/minecraft/world/entity/projectile/FishingHook$1 1/1 + Patching net/minecraft/world/entity/projectile/FishingHook$FishHookState 1/1 + Patching net/minecraft/world/entity/projectile/FishingHook$OpenWaterType 1/1 + Patching net/minecraft/world/entity/projectile/FishingHook 1/1 + Patching net/minecraft/world/entity/projectile/LargeFireball 1/1 + Patching net/minecraft/world/entity/projectile/LlamaSpit 1/1 + Patching net/minecraft/world/entity/projectile/Projectile 1/1 + Patching net/minecraft/world/entity/projectile/ProjectileUtil 1/1 + Patching net/minecraft/world/entity/projectile/ShulkerBullet 1/1 + Patching net/minecraft/world/entity/projectile/SmallFireball 1/1 + Patching net/minecraft/world/entity/projectile/ThrowableProjectile 1/1 + Patching net/minecraft/world/entity/projectile/ThrownEnderpearl 1/1 + Patching net/minecraft/world/entity/projectile/WitherSkull 1/1 + Patching net/minecraft/world/entity/raid/Raid$1 1/1 + Patching net/minecraft/world/entity/raid/Raid$RaidStatus 1/1 + Patching net/minecraft/world/entity/raid/Raid$RaiderType 1/1 + Patching net/minecraft/world/entity/raid/Raid 1/1 + Patching net/minecraft/world/entity/vehicle/AbstractMinecart$1 1/1 + Patching net/minecraft/world/entity/vehicle/AbstractMinecart$Type 1/1 + Patching net/minecraft/world/entity/vehicle/AbstractMinecart 1/1 + Patching net/minecraft/world/entity/vehicle/AbstractMinecartContainer 1/1 + Patching net/minecraft/world/entity/vehicle/Boat$1 1/1 + Patching net/minecraft/world/entity/vehicle/Boat$Status 1/1 + Patching net/minecraft/world/entity/vehicle/Boat$Type 1/1 + Patching net/minecraft/world/entity/vehicle/Boat 1/1 + Patching net/minecraft/world/entity/vehicle/ChestBoat$1 1/1 + Patching net/minecraft/world/entity/vehicle/ChestBoat 1/1 + Patching net/minecraft/world/entity/vehicle/ContainerEntity$1 1/1 + Patching net/minecraft/world/entity/vehicle/ContainerEntity 1/1 + Patching net/minecraft/world/entity/vehicle/Minecart 1/1 + Patching net/minecraft/world/entity/vehicle/MinecartCommandBlock$MinecartCommandBase 1/1 + Patching net/minecraft/world/entity/vehicle/MinecartCommandBlock 1/1 + Patching net/minecraft/world/entity/vehicle/MinecartFurnace 1/1 + Patching net/minecraft/world/entity/vehicle/MinecartSpawner$1 1/1 + Patching net/minecraft/world/entity/vehicle/MinecartSpawner 1/1 + Patching net/minecraft/world/food/FoodData 1/1 + Patching net/minecraft/world/food/FoodProperties$Builder 1/1 + Patching net/minecraft/world/food/FoodProperties 1/1 + Patching net/minecraft/world/inventory/AbstractContainerMenu$1 1/1 + Patching net/minecraft/world/inventory/AbstractContainerMenu 1/1 + Patching net/minecraft/world/inventory/AbstractFurnaceMenu 1/1 + Patching net/minecraft/world/inventory/AnvilMenu$1 1/1 + Patching net/minecraft/world/inventory/AnvilMenu 1/1 + Patching net/minecraft/world/inventory/BeaconMenu$1 1/1 + Patching net/minecraft/world/inventory/BeaconMenu$PaymentSlot 1/1 + Patching net/minecraft/world/inventory/BeaconMenu 1/1 + Patching net/minecraft/world/inventory/BrewingStandMenu$FuelSlot 1/1 + Patching net/minecraft/world/inventory/BrewingStandMenu$IngredientsSlot 1/1 + Patching net/minecraft/world/inventory/BrewingStandMenu$PotionSlot 1/1 + Patching net/minecraft/world/inventory/BrewingStandMenu 1/1 + Patching net/minecraft/world/inventory/EnchantmentMenu$1 1/1 + Patching net/minecraft/world/inventory/EnchantmentMenu$2 1/1 + Patching net/minecraft/world/inventory/EnchantmentMenu$3 1/1 + Patching net/minecraft/world/inventory/EnchantmentMenu 1/1 + Patching net/minecraft/world/inventory/FurnaceResultSlot 1/1 + Patching net/minecraft/world/inventory/GrindstoneMenu$1 1/1 + Patching net/minecraft/world/inventory/GrindstoneMenu$2 1/1 + Patching net/minecraft/world/inventory/GrindstoneMenu$3 1/1 + Patching net/minecraft/world/inventory/GrindstoneMenu$4 1/1 + Patching net/minecraft/world/inventory/GrindstoneMenu 1/1 + Patching net/minecraft/world/inventory/InventoryMenu$1 1/1 + Patching net/minecraft/world/inventory/InventoryMenu$2 1/1 + Patching net/minecraft/world/inventory/InventoryMenu 1/1 + Patching net/minecraft/world/inventory/MenuType$MenuSupplier 1/1 + Patching net/minecraft/world/inventory/MenuType 1/1 + Patching net/minecraft/world/inventory/RecipeBookMenu 1/1 + Patching net/minecraft/world/inventory/RecipeBookType 1/1 + Patching net/minecraft/world/inventory/ResultSlot 1/1 + Patching net/minecraft/world/inventory/Slot 1/1 + Patching net/minecraft/world/item/ArmorItem$1 1/1 + Patching net/minecraft/world/item/ArmorItem$Type 1/1 + Patching net/minecraft/world/item/ArmorItem 1/1 + Patching net/minecraft/world/item/ArrowItem 1/1 + Patching net/minecraft/world/item/AxeItem 1/1 + Patching net/minecraft/world/item/BannerItem 1/1 + Patching net/minecraft/world/item/BlockItem 1/1 + Patching net/minecraft/world/item/BoneMealItem 1/1 + Patching net/minecraft/world/item/BowItem 1/1 + Patching net/minecraft/world/item/BucketItem 1/1 + Patching net/minecraft/world/item/BundleItem 1/1 + Patching net/minecraft/world/item/ChorusFruitItem 1/1 + Patching net/minecraft/world/item/CreativeModeTab$1 1/1 + Patching net/minecraft/world/item/CreativeModeTab$Builder 1/1 + Patching net/minecraft/world/item/CreativeModeTab$DisplayItemsGenerator 1/1 + Patching net/minecraft/world/item/CreativeModeTab$ItemDisplayBuilder 1/1 + Patching net/minecraft/world/item/CreativeModeTab$ItemDisplayParameters 1/1 + Patching net/minecraft/world/item/CreativeModeTab$Output 1/1 + Patching net/minecraft/world/item/CreativeModeTab$Row 1/1 + Patching net/minecraft/world/item/CreativeModeTab$TabVisibility 1/1 + Patching net/minecraft/world/item/CreativeModeTab$Type 1/1 + Patching net/minecraft/world/item/CreativeModeTab 1/1 + Patching net/minecraft/world/item/CreativeModeTabs 1/1 + Patching net/minecraft/world/item/CrossbowItem 1/1 + Patching net/minecraft/world/item/DiggerItem 1/1 + Patching net/minecraft/world/item/DispensibleContainerItem 1/1 + Patching net/minecraft/world/item/DyeColor 1/1 + Patching net/minecraft/world/item/DyeableHorseArmorItem 1/1 + Patching net/minecraft/world/item/ElytraItem 1/1 + Patching net/minecraft/world/item/FireworkRocketItem$Shape 1/1 + Patching net/minecraft/world/item/FireworkRocketItem 1/1 + Patching net/minecraft/world/item/FireworkStarItem 1/1 + Patching net/minecraft/world/item/FishingRodItem 1/1 + Patching net/minecraft/world/item/HoeItem 1/1 + Patching net/minecraft/world/item/HorseArmorItem 1/1 + Patching net/minecraft/world/item/Item$1 1/1 + Patching net/minecraft/world/item/Item$Properties 1/1 + Patching net/minecraft/world/item/Item 1/1 + Patching net/minecraft/world/item/ItemDisplayContext 1/1 + Patching net/minecraft/world/item/ItemStack$TooltipPart 1/1 + Patching net/minecraft/world/item/ItemStack 1/1 + Patching net/minecraft/world/item/Items 1/1 + Patching net/minecraft/world/item/MapItem 1/1 + Patching net/minecraft/world/item/MilkBucketItem 1/1 + Patching net/minecraft/world/item/MinecartItem$1 1/1 + Patching net/minecraft/world/item/MinecartItem 1/1 + Patching net/minecraft/world/item/MobBucketItem 1/1 + Patching net/minecraft/world/item/PickaxeItem 1/1 + Patching net/minecraft/world/item/Rarity 1/1 + Patching net/minecraft/world/item/RecordItem 1/1 + Patching net/minecraft/world/item/ShearsItem 1/1 + Patching net/minecraft/world/item/ShieldItem 1/1 + Patching net/minecraft/world/item/ShovelItem 1/1 + Patching net/minecraft/world/item/SpawnEggItem 1/1 + Patching net/minecraft/world/item/StandingAndWallBlockItem 1/1 + Patching net/minecraft/world/item/SuspiciousStewItem 1/1 + Patching net/minecraft/world/item/SwordItem 1/1 + Patching net/minecraft/world/item/Tier 1/1 + Patching net/minecraft/world/item/Tiers 1/1 + Patching net/minecraft/world/item/UseAnim 1/1 + Patching net/minecraft/world/item/alchemy/Potion 1/1 + Patching net/minecraft/world/item/alchemy/PotionBrewing$Mix 1/1 + Patching net/minecraft/world/item/alchemy/PotionBrewing 1/1 + Patching net/minecraft/world/item/crafting/BannerDuplicateRecipe 1/1 + Patching net/minecraft/world/item/crafting/BookCloningRecipe 1/1 + Patching net/minecraft/world/item/crafting/FireworkStarRecipe 1/1 + Patching net/minecraft/world/item/crafting/Ingredient$ItemValue 1/1 + Patching net/minecraft/world/item/crafting/Ingredient$TagValue 1/1 + Patching net/minecraft/world/item/crafting/Ingredient$Value 1/1 + Patching net/minecraft/world/item/crafting/Ingredient 1/1 + Patching net/minecraft/world/item/crafting/Recipe 1/1 + Patching net/minecraft/world/item/crafting/RecipeManager$1 1/1 + Patching net/minecraft/world/item/crafting/RecipeManager$CachedCheck 1/1 + Patching net/minecraft/world/item/crafting/RecipeManager 1/1 + Patching net/minecraft/world/item/crafting/RecipeSerializer 1/1 + Patching net/minecraft/world/item/crafting/RecipeType$1 1/1 + Patching net/minecraft/world/item/crafting/RecipeType 1/1 + Patching net/minecraft/world/item/crafting/RepairItemRecipe 1/1 + Patching net/minecraft/world/item/crafting/ShapedRecipe$Serializer 1/1 + Patching net/minecraft/world/item/crafting/ShapedRecipe 1/1 + Patching net/minecraft/world/item/crafting/ShapelessRecipe$Serializer 1/1 + Patching net/minecraft/world/item/crafting/ShapelessRecipe 1/1 + Patching net/minecraft/world/item/crafting/ShulkerBoxColoring 1/1 + Patching net/minecraft/world/item/crafting/SimpleCookingSerializer$CookieBaker 1/1 + Patching net/minecraft/world/item/crafting/SimpleCookingSerializer 1/1 + Patching net/minecraft/world/item/crafting/SmithingTransformRecipe$Serializer 1/1 + Patching net/minecraft/world/item/crafting/SmithingTransformRecipe 1/1 + Patching net/minecraft/world/item/crafting/SmithingTrimRecipe$Serializer 1/1 + Patching net/minecraft/world/item/crafting/SmithingTrimRecipe 1/1 + Patching net/minecraft/world/item/enchantment/DiggingEnchantment 1/1 + Patching net/minecraft/world/item/enchantment/Enchantment$Rarity 1/1 + Patching net/minecraft/world/item/enchantment/Enchantment 1/1 + Patching net/minecraft/world/item/enchantment/EnchantmentCategory$1 1/1 + Patching net/minecraft/world/item/enchantment/EnchantmentCategory$10 1/1 + Patching net/minecraft/world/item/enchantment/EnchantmentCategory$11 1/1 + Patching net/minecraft/world/item/enchantment/EnchantmentCategory$12 1/1 + Patching net/minecraft/world/item/enchantment/EnchantmentCategory$13 1/1 + Patching net/minecraft/world/item/enchantment/EnchantmentCategory$14 1/1 + Patching net/minecraft/world/item/enchantment/EnchantmentCategory$2 1/1 + Patching net/minecraft/world/item/enchantment/EnchantmentCategory$3 1/1 + Patching net/minecraft/world/item/enchantment/EnchantmentCategory$4 1/1 + Patching net/minecraft/world/item/enchantment/EnchantmentCategory$5 1/1 + Patching net/minecraft/world/item/enchantment/EnchantmentCategory$6 1/1 + Patching net/minecraft/world/item/enchantment/EnchantmentCategory$7 1/1 + Patching net/minecraft/world/item/enchantment/EnchantmentCategory$8 1/1 + Patching net/minecraft/world/item/enchantment/EnchantmentCategory$9 1/1 + Patching net/minecraft/world/item/enchantment/EnchantmentCategory 1/1 + Patching net/minecraft/world/item/enchantment/EnchantmentHelper$EnchantmentVisitor 1/1 + Patching net/minecraft/world/item/enchantment/EnchantmentHelper 1/1 + Patching net/minecraft/world/item/enchantment/FrostWalkerEnchantment 1/1 + Patching net/minecraft/world/item/trading/MerchantOffer 1/1 + Patching net/minecraft/world/level/BaseSpawner 1/1 + Patching net/minecraft/world/level/BlockAndTintGetter 1/1 + Patching net/minecraft/world/level/BlockGetter 1/1 + Patching net/minecraft/world/level/ClipContext$Block 1/1 + Patching net/minecraft/world/level/ClipContext$Fluid 1/1 + Patching net/minecraft/world/level/ClipContext$ShapeGetter 1/1 + Patching net/minecraft/world/level/ClipContext 1/1 + Patching net/minecraft/world/level/DataPackConfig 1/1 + Patching net/minecraft/world/level/Explosion$BlockInteraction 1/1 + Patching net/minecraft/world/level/Explosion 1/1 + Patching net/minecraft/world/level/ExplosionDamageCalculator 1/1 + Patching net/minecraft/world/level/ForcedChunksSavedData 1/1 + Patching net/minecraft/world/level/Level$1 1/1 + Patching net/minecraft/world/level/Level$2 1/1 + Patching net/minecraft/world/level/Level$ExplosionInteraction 1/1 + Patching net/minecraft/world/level/Level 1/1 + Patching net/minecraft/world/level/LevelReader 1/1 + Patching net/minecraft/world/level/LevelSettings 1/1 + Patching net/minecraft/world/level/NaturalSpawner$1 1/1 + Patching net/minecraft/world/level/NaturalSpawner$AfterSpawnCallback 1/1 + Patching net/minecraft/world/level/NaturalSpawner$ChunkGetter 1/1 + Patching net/minecraft/world/level/NaturalSpawner$SpawnPredicate 1/1 + Patching net/minecraft/world/level/NaturalSpawner$SpawnState 1/1 + Patching net/minecraft/world/level/NaturalSpawner 1/1 + Patching net/minecraft/world/level/SignalGetter 1/1 + Patching net/minecraft/world/level/biome/Biome$1 1/1 + Patching net/minecraft/world/level/biome/Biome$BiomeBuilder 1/1 + Patching net/minecraft/world/level/biome/Biome$ClimateSettings 1/1 + Patching net/minecraft/world/level/biome/Biome$Precipitation 1/1 + Patching net/minecraft/world/level/biome/Biome$TemperatureModifier$1 1/1 + Patching net/minecraft/world/level/biome/Biome$TemperatureModifier$2 1/1 + Patching net/minecraft/world/level/biome/Biome$TemperatureModifier 1/1 + Patching net/minecraft/world/level/biome/Biome 1/1 + Patching net/minecraft/world/level/biome/BiomeGenerationSettings$Builder 1/1 + Patching net/minecraft/world/level/biome/BiomeGenerationSettings$PlainBuilder 1/1 + Patching net/minecraft/world/level/biome/BiomeGenerationSettings 1/1 + Patching net/minecraft/world/level/biome/BiomeSpecialEffects$Builder 1/1 + Patching net/minecraft/world/level/biome/BiomeSpecialEffects$GrassColorModifier$1 1/1 + Patching net/minecraft/world/level/biome/BiomeSpecialEffects$GrassColorModifier$2 1/1 + Patching net/minecraft/world/level/biome/BiomeSpecialEffects$GrassColorModifier$3 1/1 + Patching net/minecraft/world/level/biome/BiomeSpecialEffects$GrassColorModifier 1/1 + Patching net/minecraft/world/level/biome/BiomeSpecialEffects 1/1 + Patching net/minecraft/world/level/biome/MobSpawnSettings$Builder 1/1 + Patching net/minecraft/world/level/biome/MobSpawnSettings$MobSpawnCost 1/1 + Patching net/minecraft/world/level/biome/MobSpawnSettings$SpawnerData 1/1 + Patching net/minecraft/world/level/biome/MobSpawnSettings 1/1 + Patching net/minecraft/world/level/block/BambooSaplingBlock 1/1 + Patching net/minecraft/world/level/block/BambooStalkBlock 1/1 + Patching net/minecraft/world/level/block/BaseFireBlock 1/1 + Patching net/minecraft/world/level/block/BaseRailBlock$1 1/1 + Patching net/minecraft/world/level/block/BaseRailBlock 1/1 + Patching net/minecraft/world/level/block/BeehiveBlock 1/1 + Patching net/minecraft/world/level/block/Block$1 1/1 + Patching net/minecraft/world/level/block/Block$2 1/1 + Patching net/minecraft/world/level/block/Block$BlockStatePairKey 1/1 + Patching net/minecraft/world/level/block/Block 1/1 + Patching net/minecraft/world/level/block/Blocks 1/1 + Patching net/minecraft/world/level/block/BucketPickup 1/1 + Patching net/minecraft/world/level/block/BushBlock 1/1 + Patching net/minecraft/world/level/block/CactusBlock 1/1 + Patching net/minecraft/world/level/block/CampfireBlock 1/1 + Patching net/minecraft/world/level/block/ChestBlock$1 1/1 + Patching net/minecraft/world/level/block/ChestBlock$2$1 1/1 + Patching net/minecraft/world/level/block/ChestBlock$2 1/1 + Patching net/minecraft/world/level/block/ChestBlock$3 1/1 + Patching net/minecraft/world/level/block/ChestBlock$4 1/1 + Patching net/minecraft/world/level/block/ChestBlock 1/1 + Patching net/minecraft/world/level/block/ChorusFlowerBlock 1/1 + Patching net/minecraft/world/level/block/CocoaBlock$1 1/1 + Patching net/minecraft/world/level/block/CocoaBlock 1/1 + Patching net/minecraft/world/level/block/ComparatorBlock 1/1 + Patching net/minecraft/world/level/block/ConcretePowderBlock 1/1 + Patching net/minecraft/world/level/block/CoralBlock 1/1 + Patching net/minecraft/world/level/block/CropBlock 1/1 + Patching net/minecraft/world/level/block/DeadBushBlock 1/1 + Patching net/minecraft/world/level/block/DetectorRailBlock$1 1/1 + Patching net/minecraft/world/level/block/DetectorRailBlock 1/1 + Patching net/minecraft/world/level/block/DiodeBlock 1/1 + Patching net/minecraft/world/level/block/DoublePlantBlock 1/1 + Patching net/minecraft/world/level/block/DropExperienceBlock 1/1 + Patching net/minecraft/world/level/block/DropperBlock 1/1 + Patching net/minecraft/world/level/block/EnchantmentTableBlock 1/1 + Patching net/minecraft/world/level/block/FarmBlock 1/1 + Patching net/minecraft/world/level/block/FenceGateBlock$1 1/1 + Patching net/minecraft/world/level/block/FenceGateBlock 1/1 + Patching net/minecraft/world/level/block/FireBlock 1/1 + Patching net/minecraft/world/level/block/FlowerBlock 1/1 + Patching net/minecraft/world/level/block/FlowerPotBlock 1/1 + Patching net/minecraft/world/level/block/FungusBlock 1/1 + Patching net/minecraft/world/level/block/GrowingPlantHeadBlock 1/1 + Patching net/minecraft/world/level/block/LeavesBlock 1/1 + Patching net/minecraft/world/level/block/LiquidBlock 1/1 + Patching net/minecraft/world/level/block/MushroomBlock 1/1 + Patching net/minecraft/world/level/block/NetherWartBlock 1/1 + Patching net/minecraft/world/level/block/NoteBlock 1/1 + Patching net/minecraft/world/level/block/PitcherCropBlock$PosAndState 1/1 + Patching net/minecraft/world/level/block/PitcherCropBlock 1/1 + Patching net/minecraft/world/level/block/PowderSnowBlock 1/1 + Patching net/minecraft/world/level/block/PoweredRailBlock$1 1/1 + Patching net/minecraft/world/level/block/PoweredRailBlock 1/1 + Patching net/minecraft/world/level/block/PumpkinBlock 1/1 + Patching net/minecraft/world/level/block/RailBlock$1 1/1 + Patching net/minecraft/world/level/block/RailBlock 1/1 + Patching net/minecraft/world/level/block/RailState$1 1/1 + Patching net/minecraft/world/level/block/RailState 1/1 + Patching net/minecraft/world/level/block/RedStoneOreBlock 1/1 + Patching net/minecraft/world/level/block/RedStoneWireBlock$1 1/1 + Patching net/minecraft/world/level/block/RedStoneWireBlock 1/1 + Patching net/minecraft/world/level/block/SaplingBlock 1/1 + Patching net/minecraft/world/level/block/SculkCatalystBlock 1/1 + Patching net/minecraft/world/level/block/SculkSensorBlock 1/1 + Patching net/minecraft/world/level/block/SculkShriekerBlock 1/1 + Patching net/minecraft/world/level/block/SeagrassBlock 1/1 + Patching net/minecraft/world/level/block/SoundType 1/1 + Patching net/minecraft/world/level/block/SpawnerBlock 1/1 + Patching net/minecraft/world/level/block/SpongeBlock 1/1 + Patching net/minecraft/world/level/block/SpreadingSnowyDirtBlock 1/1 + Patching net/minecraft/world/level/block/StairBlock$1 1/1 + Patching net/minecraft/world/level/block/StairBlock 1/1 + Patching net/minecraft/world/level/block/StemBlock 1/1 + Patching net/minecraft/world/level/block/StemGrownBlock 1/1 + Patching net/minecraft/world/level/block/SugarCaneBlock 1/1 + Patching net/minecraft/world/level/block/SweetBerryBushBlock 1/1 + Patching net/minecraft/world/level/block/TallGrassBlock 1/1 + Patching net/minecraft/world/level/block/TntBlock 1/1 + Patching net/minecraft/world/level/block/TrapDoorBlock$1 1/1 + Patching net/minecraft/world/level/block/TrapDoorBlock 1/1 + Patching net/minecraft/world/level/block/TripWireBlock$1 1/1 + Patching net/minecraft/world/level/block/TripWireBlock 1/1 + Patching net/minecraft/world/level/block/TripWireHookBlock$1 1/1 + Patching net/minecraft/world/level/block/TripWireHookBlock 1/1 + Patching net/minecraft/world/level/block/TurtleEggBlock 1/1 + Patching net/minecraft/world/level/block/VineBlock$1 1/1 + Patching net/minecraft/world/level/block/VineBlock 1/1 + Patching net/minecraft/world/level/block/WebBlock 1/1 + Patching net/minecraft/world/level/block/entity/AbstractFurnaceBlockEntity$1 1/1 + Patching net/minecraft/world/level/block/entity/AbstractFurnaceBlockEntity 1/1 + Patching net/minecraft/world/level/block/entity/BaseContainerBlockEntity 1/1 + Patching net/minecraft/world/level/block/entity/BeaconBlockEntity$1 1/1 + Patching net/minecraft/world/level/block/entity/BeaconBlockEntity$BeaconBeamSection 1/1 + Patching net/minecraft/world/level/block/entity/BeaconBlockEntity 1/1 + Patching net/minecraft/world/level/block/entity/BlockEntity 1/1 + Patching net/minecraft/world/level/block/entity/BrewingStandBlockEntity$1 1/1 + Patching net/minecraft/world/level/block/entity/BrewingStandBlockEntity 1/1 + Patching net/minecraft/world/level/block/entity/ChestBlockEntity$1 1/1 + Patching net/minecraft/world/level/block/entity/ChestBlockEntity 1/1 + Patching net/minecraft/world/level/block/entity/ChiseledBookShelfBlockEntity 1/1 + Patching net/minecraft/world/level/block/entity/ConduitBlockEntity 1/1 + Patching net/minecraft/world/level/block/entity/HopperBlockEntity 1/1 + Patching net/minecraft/world/level/block/entity/ShulkerBoxBlockEntity$1 1/1 + Patching net/minecraft/world/level/block/entity/ShulkerBoxBlockEntity$AnimationStatus 1/1 + Patching net/minecraft/world/level/block/entity/ShulkerBoxBlockEntity 1/1 + Patching net/minecraft/world/level/block/entity/SignBlockEntity 1/1 + Patching net/minecraft/world/level/block/entity/SpawnerBlockEntity$1 1/1 + Patching net/minecraft/world/level/block/entity/SpawnerBlockEntity 1/1 + Patching net/minecraft/world/level/block/grower/AbstractMegaTreeGrower 1/1 + Patching net/minecraft/world/level/block/grower/AbstractTreeGrower 1/1 + Patching net/minecraft/world/level/block/piston/PistonBaseBlock$1 1/1 + Patching net/minecraft/world/level/block/piston/PistonBaseBlock 1/1 + Patching net/minecraft/world/level/block/piston/PistonMovingBlockEntity$1 1/1 + Patching net/minecraft/world/level/block/piston/PistonMovingBlockEntity 1/1 + Patching net/minecraft/world/level/block/piston/PistonStructureResolver 1/1 + Patching net/minecraft/world/level/block/state/BlockBehaviour$1 1/1 + Patching net/minecraft/world/level/block/state/BlockBehaviour$BlockStateBase$Cache 1/1 + Patching net/minecraft/world/level/block/state/BlockBehaviour$BlockStateBase 1/1 + Patching net/minecraft/world/level/block/state/BlockBehaviour$OffsetFunction 1/1 + Patching net/minecraft/world/level/block/state/BlockBehaviour$OffsetType 1/1 + Patching net/minecraft/world/level/block/state/BlockBehaviour$Properties 1/1 + Patching net/minecraft/world/level/block/state/BlockBehaviour$StateArgumentPredicate 1/1 + Patching net/minecraft/world/level/block/state/BlockBehaviour$StatePredicate 1/1 + Patching net/minecraft/world/level/block/state/BlockBehaviour 1/1 + Patching net/minecraft/world/level/block/state/BlockState 1/1 + Patching net/minecraft/world/level/chunk/ChunkAccess$TicksToSave 1/1 + Patching net/minecraft/world/level/chunk/ChunkAccess 1/1 + Patching net/minecraft/world/level/chunk/ImposterProtoChunk 1/1 + Patching net/minecraft/world/level/chunk/LevelChunk$1 1/1 + Patching net/minecraft/world/level/chunk/LevelChunk$BoundTickingBlockEntity 1/1 + Patching net/minecraft/world/level/chunk/LevelChunk$EntityCreationType 1/1 + Patching net/minecraft/world/level/chunk/LevelChunk$PostLoadProcessor 1/1 + Patching net/minecraft/world/level/chunk/LevelChunk$RebindableTickingBlockEntityWrapper 1/1 + Patching net/minecraft/world/level/chunk/LevelChunk 1/1 + Patching net/minecraft/world/level/chunk/PalettedContainer$Configuration 1/1 + Patching net/minecraft/world/level/chunk/PalettedContainer$CountConsumer 1/1 + Patching net/minecraft/world/level/chunk/PalettedContainer$Data 1/1 + Patching net/minecraft/world/level/chunk/PalettedContainer$Strategy$1 1/1 + Patching net/minecraft/world/level/chunk/PalettedContainer$Strategy$2 1/1 + Patching net/minecraft/world/level/chunk/PalettedContainer$Strategy 1/1 + Patching net/minecraft/world/level/chunk/PalettedContainer 1/1 + Patching net/minecraft/world/level/chunk/storage/ChunkSerializer 1/1 + Patching net/minecraft/world/level/chunk/storage/EntityStorage 1/1 + Patching net/minecraft/world/level/dimension/end/EndDragonFight$Data 1/1 + Patching net/minecraft/world/level/dimension/end/EndDragonFight 1/1 + Patching net/minecraft/world/level/entity/PersistentEntitySectionManager$Callback 1/1 + Patching net/minecraft/world/level/entity/PersistentEntitySectionManager$ChunkLoadStatus 1/1 + Patching net/minecraft/world/level/entity/PersistentEntitySectionManager 1/1 + Patching net/minecraft/world/level/entity/TransientEntitySectionManager$Callback 1/1 + Patching net/minecraft/world/level/entity/TransientEntitySectionManager 1/1 + Patching net/minecraft/world/level/levelgen/Beardifier$1 1/1 + Patching net/minecraft/world/level/levelgen/Beardifier$Rigid 1/1 + Patching net/minecraft/world/level/levelgen/Beardifier 1/1 + Patching net/minecraft/world/level/levelgen/DebugLevelSource 1/1 + Patching net/minecraft/world/level/levelgen/PhantomSpawner 1/1 + Patching net/minecraft/world/level/levelgen/feature/Feature 1/1 + Patching net/minecraft/world/level/levelgen/feature/MonsterRoomFeature 1/1 + Patching net/minecraft/world/level/levelgen/feature/configurations/TreeConfiguration$TreeConfigurationBuilder 1/1 + Patching net/minecraft/world/level/levelgen/feature/configurations/TreeConfiguration 1/1 + Patching net/minecraft/world/level/levelgen/feature/treedecorators/AlterGroundDecorator 1/1 + Patching net/minecraft/world/level/levelgen/feature/trunkplacers/TrunkPlacer 1/1 + Patching net/minecraft/world/level/levelgen/structure/Structure$GenerationContext 1/1 + Patching net/minecraft/world/level/levelgen/structure/Structure$GenerationStub 1/1 + Patching net/minecraft/world/level/levelgen/structure/Structure$StructureSettings 1/1 + Patching net/minecraft/world/level/levelgen/structure/Structure 1/1 + Patching net/minecraft/world/level/levelgen/structure/StructurePiece$1 1/1 + Patching net/minecraft/world/level/levelgen/structure/StructurePiece$BlockSelector 1/1 + Patching net/minecraft/world/level/levelgen/structure/StructurePiece 1/1 + Patching net/minecraft/world/level/levelgen/structure/StructureStart 1/1 + Patching net/minecraft/world/level/levelgen/structure/templatesystem/StructureProcessor 1/1 + Patching net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate$1 1/1 + Patching net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate$Palette 1/1 + Patching net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate$SimplePalette 1/1 + Patching net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate$StructureBlockInfo 1/1 + Patching net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate$StructureEntityInfo 1/1 + Patching net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate 1/1 + Patching net/minecraft/world/level/lighting/BlockLightEngine 1/1 + Patching net/minecraft/world/level/lighting/LightEngine$QueueEntry 1/1 + Patching net/minecraft/world/level/lighting/LightEngine 1/1 + Patching net/minecraft/world/level/material/FlowingFluid$1 1/1 + Patching net/minecraft/world/level/material/FlowingFluid 1/1 + Patching net/minecraft/world/level/material/Fluid 1/1 + Patching net/minecraft/world/level/material/FluidState 1/1 + Patching net/minecraft/world/level/material/LavaFluid$Flowing 1/1 + Patching net/minecraft/world/level/material/LavaFluid$Source 1/1 + Patching net/minecraft/world/level/material/LavaFluid 1/1 + Patching net/minecraft/world/level/pathfinder/AmphibiousNodeEvaluator 1/1 + Patching net/minecraft/world/level/pathfinder/BlockPathTypes 1/1 + Patching net/minecraft/world/level/pathfinder/WalkNodeEvaluator 1/1 + Patching net/minecraft/world/level/portal/PortalForcer 1/1 + Patching net/minecraft/world/level/portal/PortalShape 1/1 + Patching net/minecraft/world/level/saveddata/maps/MapDecoration$Type 1/1 + Patching net/minecraft/world/level/saveddata/maps/MapDecoration 1/1 + Patching net/minecraft/world/level/storage/DimensionDataStorage 1/1 + Patching net/minecraft/world/level/storage/LevelStorageSource$LevelCandidates 1/1 + Patching net/minecraft/world/level/storage/LevelStorageSource$LevelDirectory 1/1 + Patching net/minecraft/world/level/storage/LevelStorageSource$LevelStorageAccess$1 1/1 + Patching net/minecraft/world/level/storage/LevelStorageSource$LevelStorageAccess$2 1/1 + Patching net/minecraft/world/level/storage/LevelStorageSource$LevelStorageAccess 1/1 + Patching net/minecraft/world/level/storage/LevelStorageSource 1/1 + Patching net/minecraft/world/level/storage/LevelSummary$BackupStatus 1/1 + Patching net/minecraft/world/level/storage/LevelSummary$SymlinkLevelSummary 1/1 + Patching net/minecraft/world/level/storage/LevelSummary 1/1 + Patching net/minecraft/world/level/storage/PlayerDataStorage 1/1 + Patching net/minecraft/world/level/storage/PrimaryLevelData$SpecialWorldProperty 1/1 + Patching net/minecraft/world/level/storage/PrimaryLevelData 1/1 + Patching net/minecraft/world/level/storage/loot/LootContext$Builder 1/1 + Patching net/minecraft/world/level/storage/loot/LootContext$EntityTarget$Serializer 1/1 + Patching net/minecraft/world/level/storage/loot/LootContext$EntityTarget 1/1 + Patching net/minecraft/world/level/storage/loot/LootContext$VisitedEntry 1/1 + Patching net/minecraft/world/level/storage/loot/LootContext 1/1 + Patching net/minecraft/world/level/storage/loot/LootDataManager$1 1/1 + Patching net/minecraft/world/level/storage/loot/LootDataManager$CompositePredicate 1/1 + Patching net/minecraft/world/level/storage/loot/LootDataManager$FunctionSequence 1/1 + Patching net/minecraft/world/level/storage/loot/LootDataManager 1/1 + Patching net/minecraft/world/level/storage/loot/LootDataType$Validator 1/1 + Patching net/minecraft/world/level/storage/loot/LootDataType 1/1 + Patching net/minecraft/world/level/storage/loot/LootParams$Builder 1/1 + Patching net/minecraft/world/level/storage/loot/LootParams$DynamicDrop 1/1 + Patching net/minecraft/world/level/storage/loot/LootParams 1/1 + Patching net/minecraft/world/level/storage/loot/LootPool$Builder 1/1 + Patching net/minecraft/world/level/storage/loot/LootPool$Serializer 1/1 + Patching net/minecraft/world/level/storage/loot/LootPool 1/1 + Patching net/minecraft/world/level/storage/loot/LootTable$Builder 1/1 + Patching net/minecraft/world/level/storage/loot/LootTable$Serializer 1/1 + Patching net/minecraft/world/level/storage/loot/LootTable 1/1 + Patching net/minecraft/world/level/storage/loot/functions/LootingEnchantFunction$Builder 1/1 + Patching net/minecraft/world/level/storage/loot/functions/LootingEnchantFunction$Serializer 1/1 + Patching net/minecraft/world/level/storage/loot/functions/LootingEnchantFunction 1/1 + Patching net/minecraft/world/level/storage/loot/functions/SmeltItemFunction$Serializer 1/1 + Patching net/minecraft/world/level/storage/loot/functions/SmeltItemFunction 1/1 + Patching net/minecraft/world/level/storage/loot/parameters/LootContextParamSets 1/1 + Patching net/minecraft/world/level/storage/loot/predicates/LootItemRandomChanceWithLootingCondition$Serializer 1/1 + Patching net/minecraft/world/level/storage/loot/predicates/LootItemRandomChanceWithLootingCondition 1/1 + Patching net/minecraft/world/level/storage/loot/providers/nbt/ContextNbtProvider$1 1/1 + Patching net/minecraft/world/level/storage/loot/providers/nbt/ContextNbtProvider$2 1/1 + Patching net/minecraft/world/level/storage/loot/providers/nbt/ContextNbtProvider$Getter 1/1 + Patching net/minecraft/world/level/storage/loot/providers/nbt/ContextNbtProvider$InlineSerializer 1/1 + Patching net/minecraft/world/level/storage/loot/providers/nbt/ContextNbtProvider$Serializer 1/1 + Patching net/minecraft/world/level/storage/loot/providers/nbt/ContextNbtProvider 1/1 + Patching net/minecraft/world/item/crafting/RecipeType$2 1/1 + Patching net/minecraft/world/level/block/entity/BrewingStandBlockEntity$2 1/1 + Patching net/minecraft/world/level/biome/BiomeSpecialEffects$GrassColorModifier$ColorModifier 1/1 + Patching net/minecraft/Util$3 1/1 + Patching net/minecraft/Util$4 1/1 + Patching net/minecraft/world/level/block/entity/AbstractFurnaceBlockEntity$2 1/1 + Patching net/minecraft/world/item/Items$1 1/1 diff --git a/build/_atJar_4/accesstransform.log b/build/_atJar_4/accesstransform.log new file mode 100644 index 000000000..11ab3c6a1 --- /dev/null +++ b/build/_atJar_4/accesstransform.log @@ -0,0 +1,9123 @@ +[13:03:40] [main/INFO]: Writing debug log file accesstransform.log +[13:03:40] [main/INFO]: Access Transformer processor running version 8.2.1 +[13:03:40] [main/INFO]: Command line arguments [--inJar, C:\Users\polar\.mcreator\gradle\caches\forge_gradle\minecraft_user_repo\net\minecraftforge\forge\1.20.1-47.3.0\forge-1.20.1-47.3.0-injected.jar, --outJar, C:\Users\polar\.mcreator\gradle\caches\forge_gradle\minecraft_user_repo\net\minecraftforge\forge\1.20.1-47.3.0_mapped_official_1.20.1\forge-1.20.1-47.3.0_mapped_official_1.20.1.jar, --logFile, accesstransform.log, --atFile, C:\Users\polar\Nextcloud\DocumentsRoman\mods_mc\custom_ore_gem\build\_atJar_4\parent_at.cfg] +[13:03:40] [main/INFO]: Reading from C:\Users\polar\.mcreator\gradle\caches\forge_gradle\minecraft_user_repo\net\minecraftforge\forge\1.20.1-47.3.0\forge-1.20.1-47.3.0-injected.jar +[13:03:40] [main/INFO]: Writing to C:\Users\polar\.mcreator\gradle\caches\forge_gradle\minecraft_user_repo\net\minecraftforge\forge\1.20.1-47.3.0_mapped_official_1.20.1\forge-1.20.1-47.3.0_mapped_official_1.20.1.jar +[13:03:40] [main/INFO]: Transformer file C:\Users\polar\Nextcloud\DocumentsRoman\mods_mc\custom_ore_gem\build\_atJar_4\parent_at.cfg +[13:03:40] [main/WARN]: Found existing output jar C:\Users\polar\.mcreator\gradle\caches\forge_gradle\minecraft_user_repo\net\minecraftforge\forge\1.20.1-47.3.0_mapped_official_1.20.1\forge-1.20.1-47.3.0_mapped_official_1.20.1.jar, overwriting +[13:03:40] [main/DEBUG]: Loading access transformer parent_at.cfg from path C:\Users\polar\Nextcloud\DocumentsRoman\mods_mc\custom_ore_gem\build\_atJar_4\parent_at.cfg +[13:03:40] [main/DEBUG]: Loaded access transformer parent_at.cfg from path C:\Users\polar\Nextcloud\DocumentsRoman\mods_mc\custom_ore_gem\build\_atJar_4\parent_at.cfg +[13:03:40] [main/DEBUG]: Loaded access transformer file C:\Users\polar\Nextcloud\DocumentsRoman\mods_mc\custom_ore_gem\build\_atJar_4\parent_at.cfg +[13:03:40] [main/DEBUG]: Skipping Lmcp/client/Start; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/versions/mcp/MCPVersion; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/versions/forge/ForgeVersion; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/server/timings/TimeTracker; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/server/timings/ForgeTimings; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/server/permission/package-info; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/server/permission/nodes/PermissionTypes; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/server/permission/nodes/PermissionType; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/server/permission/nodes/PermissionNode; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/server/permission/nodes/PermissionNode$PermissionResolver; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/server/permission/nodes/PermissionDynamicContextKey; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/server/permission/nodes/PermissionDynamicContext; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/server/permission/handler/IPermissionHandlerFactory; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/server/permission/handler/IPermissionHandler; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/server/permission/handler/DefaultPermissionHandler; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/server/permission/exceptions/UnregisteredPermissionException; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/server/permission/events/PermissionGatherEvent; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/server/permission/events/PermissionGatherEvent$Nodes; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/server/permission/events/PermissionGatherEvent$Handler; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/server/permission/PermissionAPI; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/server/loading/ServerModLoader; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/server/console/TerminalHandler; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/server/console/ConsoleCommandCompleter; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/server/command/package-info; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/server/command/TrackCommand; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/server/command/TrackCommand$TrackResultsEntity; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/server/command/TrackCommand$TrackResultsBlockEntity; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/server/command/TrackCommand$TrackResults; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/server/command/TrackCommand$StartTrackingCommand; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/server/command/TrackCommand$ResetTrackingCommand; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/server/command/TextComponentHelper; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/server/command/TagsCommand; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/server/command/TPSCommand; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/server/command/ModListCommand; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/server/command/ModIdArgument; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/server/command/GenerateCommand; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/server/command/ForgeCommand; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/server/command/EnumArgument; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/server/command/EnumArgument$Info; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/server/command/EnumArgument$Info$Template; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/server/command/EntityCommand; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/server/command/EntityCommand$EntityListCommand; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/server/command/DimensionsCommand; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/server/command/ConfigCommand; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/server/command/ConfigCommand$ShowFile; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/server/command/CommandHelper; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/server/command/ChunkGenWorker; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/server/ServerLifecycleHooks; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/server/LanguageHook; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/resource/package-info; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/resource/ResourcePackLoader; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/resource/ResourcePackLoader$1; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/resource/PathPackResources; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/resource/DelegatingPackResources; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/registries/tags/ITagManager; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/registries/tags/ITag; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/registries/tags/IReverseTag; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/registries/holdersets/OrHolderSet; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/registries/holdersets/NotHolderSet; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/registries/holdersets/ICustomHolderSet; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/registries/holdersets/HolderSetType; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/registries/holdersets/CompositeHolderSet; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/registries/holdersets/AnyHolderSet; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/registries/holdersets/AndHolderSet; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/registries/RegistryObject; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/registries/RegistryObject$1; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/registries/RegistryManager; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/registries/RegistryBuilder; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/registries/RegisterEvent; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/registries/RegisterEvent$RegisterHelper; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/registries/ObjectHolderRegistry; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/registries/ObjectHolderRegistry$VanillaObjectHolderData; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/registries/ObjectHolderRef; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/registries/ObjectHolder; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/registries/NewRegistryEvent; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/registries/NewRegistryEvent$RegistryHolder; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/registries/NewRegistryEvent$RegistryData; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/registries/NamespacedWrapper; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/registries/NamespacedWrapper$Factory; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/registries/NamespacedWrapper$1; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/registries/NamespacedDefaultedWrapper; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/registries/NamespacedDefaultedWrapper$Factory; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/registries/MissingMappingsEvent; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/registries/MissingMappingsEvent$Mapping; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/registries/MissingMappingsEvent$Action; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/registries/IdMappingEvent; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/registries/IdMappingEvent$ModRemapping; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/registries/IdMappingEvent$IdRemapping; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/registries/ILockableRegistry; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/registries/IForgeRegistryModifiable; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/registries/IForgeRegistryInternal; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/registries/IForgeRegistry; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/registries/IForgeRegistry$ValidateCallback; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/registries/IForgeRegistry$MissingFactory; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/registries/IForgeRegistry$CreateCallback; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/registries/IForgeRegistry$ClearCallback; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/registries/IForgeRegistry$BakeCallback; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/registries/IForgeRegistry$AddCallback; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/registries/GameData; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/registries/GameData$PointOfInterestTypeCallbacks; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/registries/GameData$ItemCallbacks; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/registries/GameData$ClearableObjectIntIdentityMap; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/registries/GameData$BlockCallbacks; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/registries/GameData$BlockCallbacks$1; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/registries/GameData$AttributeCallbacks; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/registries/GameData$1; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/registries/ForgeRegistryTagManager; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/registries/ForgeRegistryTag; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/registries/ForgeRegistry; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/registries/ForgeRegistry$Snapshot; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/registries/ForgeRegistry$RegistryCodec; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/registries/ForgeRegistry$OverrideOwner; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/registries/ForgeRegistry$DumpRow; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/registries/ForgeRegistry$1; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/registries/ForgeRegistries; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/registries/ForgeRegistries$Keys; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/registries/ForgeDeferredRegistriesSetup; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/registries/DeferredRegister; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/registries/DeferredRegister$RegistryHolder; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/registries/DeferredRegister$EventDispatcher; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/registries/DataPackRegistryEvent; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/registries/DataPackRegistryEvent$NewRegistry; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/registries/DataPackRegistryEvent$DataPackRegistryData; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/registries/DataPackRegistriesHooks; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/network/simple/SimpleChannel; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/network/simple/SimpleChannel$MessageBuilder; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/network/simple/SimpleChannel$MessageBuilder$ToBooleanBiFunction; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/network/simple/IndexedMessageCodec; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/network/simple/IndexedMessageCodec$MessageHandler; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/network/filters/VanillaPacketSplitter; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/network/filters/VanillaPacketSplitter$RemoteCompatibility; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/network/filters/VanillaPacketFilter; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/network/filters/VanillaConnectionNetworkFilter; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/network/filters/NetworkFilters; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/network/filters/ForgeConnectionNetworkFilter; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/network/filters/CommandTreeCleaner; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/network/event/EventNetworkChannel; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/network/ServerStatusPing; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/network/ServerStatusPing$ModInfo; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/network/ServerStatusPing$ChannelData; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/network/PlayMessages; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/network/PlayMessages$SpawnEntity; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/network/PlayMessages$OpenContainer; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/network/PacketDistributor; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/network/PacketDistributor$TargetPoint; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/network/PacketDistributor$PacketTarget; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/network/NetworkRegistry; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/network/NetworkRegistry$LoginPayload; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/network/NetworkRegistry$ChannelBuilder; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/network/NetworkInstance; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/network/NetworkInitialization; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/network/NetworkHooks; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/network/NetworkEvent; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/network/NetworkEvent$ServerCustomPayloadLoginEvent; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/network/NetworkEvent$ServerCustomPayloadEvent; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/network/NetworkEvent$RegistrationChangeType; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/network/NetworkEvent$PacketDispatcher; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/network/NetworkEvent$PacketDispatcher$NetworkManagerDispatcher; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/network/NetworkEvent$LoginPayloadEvent; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/network/NetworkEvent$GatherLoginPayloadsEvent; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/network/NetworkEvent$Context; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/network/NetworkEvent$ClientCustomPayloadLoginEvent; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/network/NetworkEvent$ClientCustomPayloadEvent; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/network/NetworkEvent$ChannelRegistrationChangeEvent; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/network/NetworkDirection; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/network/NetworkDirection$Factory; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/network/NetworkConstants; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/network/MCRegisterPacketHandler; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/network/MCRegisterPacketHandler$ChannelList; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/network/LoginWrapper; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/network/ICustomPacket; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/network/IContainerFactory; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/network/HandshakeMessages; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/network/HandshakeMessages$S2CRegistry; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/network/HandshakeMessages$S2CModList; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/network/HandshakeMessages$S2CModData; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/network/HandshakeMessages$S2CConfigData; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/network/HandshakeMessages$S2CChannelMismatchData; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/network/HandshakeMessages$LoginIndexedMessage; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/network/HandshakeMessages$C2SModListReply; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/network/HandshakeMessages$C2SAcknowledge; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/network/HandshakeHandler; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/network/HandshakeHandler$HandshakeConsumer; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/network/DualStackUtils; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/network/ConnectionType; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/network/ConnectionData; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/network/ConnectionData$ModMismatchData; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/network/ConfigSync; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/logging/PacketDump; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/logging/CrashReportExtender; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/logging/CrashReportAnalyser; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/items/wrapper/SidedInvWrapper; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/items/wrapper/SidedInvWrapper$InsertLimit; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/items/wrapper/ShulkerItemStackInvWrapper; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/items/wrapper/RecipeWrapper; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/items/wrapper/RangedWrapper; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/items/wrapper/PlayerOffhandInvWrapper; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/items/wrapper/PlayerMainInvWrapper; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/items/wrapper/PlayerInvWrapper; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/items/wrapper/PlayerArmorInvWrapper; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/items/wrapper/InvWrapper; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/items/wrapper/EntityHandsInvWrapper; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/items/wrapper/EntityEquipmentInvWrapper; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/items/wrapper/EntityArmorInvWrapper; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/items/wrapper/EmptyHandler; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/items/wrapper/CombinedInvWrapper; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/items/VanillaInventoryCodeHooks; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/items/VanillaHopperItemHandler; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/items/SlotItemHandler; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/items/ItemStackHandler; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/items/ItemHandlerHelper; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/items/IItemHandlerModifiable; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/items/IItemHandler; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/internal/TextComponentMessageFormatHandler; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/internal/ForgeBindings; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/internal/ForgeBindings$1; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/internal/BrandingControl; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/gametest/PrefixGameTestTemplate; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/gametest/GameTestMain; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/gametest/GameTestHolder; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/gametest/ForgeGameTestHooks; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/gametest/BlockPosValueConverter; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/forge/snapshots/ForgeSnapshotsModClient; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/forge/snapshots/ForgeSnapshotsMod; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/fml/event/lifecycle/ParallelDispatchEvent; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/fml/event/lifecycle/ModLifecycleEvent; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/fml/event/lifecycle/InterModProcessEvent; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/fml/event/lifecycle/InterModEnqueueEvent; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/fml/event/lifecycle/FMLLoadCompleteEvent; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/fml/event/lifecycle/FMLDedicatedServerSetupEvent; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/fml/event/lifecycle/FMLConstructModEvent; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/fml/event/lifecycle/FMLCommonSetupEvent; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/fml/event/lifecycle/FMLClientSetupEvent; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/fml/event/config/ModConfigEvent; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/fml/event/config/ModConfigEvent$Unloading; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/fml/event/config/ModConfigEvent$Reloading; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/fml/event/config/ModConfigEvent$Loading; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/fml/core/ParallelTransition; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/fml/core/ModStateProvider; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/fluids/capability/wrappers/FluidBucketWrapper; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/fluids/capability/wrappers/FluidBlockWrapper; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/fluids/capability/wrappers/BucketPickupHandlerWrapper; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/fluids/capability/wrappers/BlockWrapper; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/fluids/capability/wrappers/BlockWrapper$LiquidContainerBlockWrapper; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/fluids/capability/templates/VoidFluidHandler; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/fluids/capability/templates/FluidTank; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/fluids/capability/templates/FluidHandlerItemStackSimple; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/fluids/capability/templates/FluidHandlerItemStackSimple$SwapEmpty; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/fluids/capability/templates/FluidHandlerItemStackSimple$Consumable; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/fluids/capability/templates/FluidHandlerItemStack; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/fluids/capability/templates/FluidHandlerItemStack$SwapEmpty; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/fluids/capability/templates/FluidHandlerItemStack$Consumable; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/fluids/capability/templates/EmptyFluidHandler; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/fluids/capability/ItemFluidContainer; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/fluids/capability/IFluidHandlerItem; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/fluids/capability/IFluidHandler; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/fluids/capability/IFluidHandler$FluidAction; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/fluids/capability/FluidHandlerBlockEntity; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/fluids/IFluidTank; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/fluids/IFluidBlock; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/fluids/ForgeFlowingFluid; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/fluids/ForgeFlowingFluid$Source; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/fluids/ForgeFlowingFluid$Properties; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/fluids/ForgeFlowingFluid$Flowing; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/fluids/FluidUtil; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/fluids/FluidType; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/fluids/FluidType$Properties; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/fluids/FluidStack; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/fluids/FluidInteractionRegistry; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/fluids/FluidInteractionRegistry$InteractionInformation; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/fluids/FluidInteractionRegistry$HasFluidInteraction; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/fluids/FluidInteractionRegistry$FluidInteraction; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/fluids/FluidActionResult; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/fluids/DispenseFluidContainer; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/event/village/WandererTradesEvent; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/event/village/VillagerTradesEvent; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/event/village/VillageSiegeEvent; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/event/server/ServerStoppingEvent; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/event/server/ServerStoppedEvent; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/event/server/ServerStartingEvent; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/event/server/ServerStartedEvent; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/event/server/ServerLifecycleEvent; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/event/server/ServerAboutToStartEvent; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/event/level/SleepFinishedTimeEvent; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/event/level/SaplingGrowTreeEvent; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/event/level/PistonEvent; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/event/level/PistonEvent$Pre; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/event/level/PistonEvent$Post; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/event/level/PistonEvent$PistonMoveType; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/event/level/NoteBlockEvent; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/event/level/NoteBlockEvent$Play; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/event/level/NoteBlockEvent$Octave; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/event/level/NoteBlockEvent$Note; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/event/level/NoteBlockEvent$Change; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/event/level/LevelEvent; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/event/level/LevelEvent$Unload; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/event/level/LevelEvent$Save; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/event/level/LevelEvent$PotentialSpawns; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/event/level/LevelEvent$Load; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/event/level/LevelEvent$CreateSpawnPosition; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/event/level/ExplosionEvent; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/event/level/ExplosionEvent$Start; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/event/level/ExplosionEvent$Detonate; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/event/level/ChunkWatchEvent; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/event/level/ChunkWatchEvent$Watch; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/event/level/ChunkWatchEvent$UnWatch; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/event/level/ChunkTicketLevelUpdatedEvent; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/event/level/ChunkEvent; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/event/level/ChunkEvent$Unload; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/event/level/ChunkEvent$Load; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/event/level/ChunkDataEvent; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/event/level/ChunkDataEvent$Save; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/event/level/ChunkDataEvent$Load; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/event/level/BlockEvent; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/event/level/BlockEvent$PortalSpawnEvent; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/event/level/BlockEvent$NeighborNotifyEvent; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/event/level/BlockEvent$FluidPlaceBlockEvent; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/event/level/BlockEvent$FarmlandTrampleEvent; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/event/level/BlockEvent$EntityPlaceEvent; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/event/level/BlockEvent$EntityMultiPlaceEvent; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/event/level/BlockEvent$CropGrowEvent; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/event/level/BlockEvent$CropGrowEvent$Pre; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/event/level/BlockEvent$CropGrowEvent$Post; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/event/level/BlockEvent$CreateFluidSourceEvent; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/event/level/BlockEvent$BreakEvent; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/event/level/BlockEvent$BlockToolModificationEvent; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/event/level/AlterGroundEvent; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/event/furnace/FurnaceFuelBurnTimeEvent; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/event/entity/player/TradeWithVillagerEvent; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/event/entity/player/SleepingTimeCheckEvent; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/event/entity/player/SleepingLocationCheckEvent; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/event/entity/player/PlayerXpEvent; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/event/entity/player/PlayerXpEvent$XpChange; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/event/entity/player/PlayerXpEvent$PickupXp; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/event/entity/player/PlayerXpEvent$LevelChange; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/event/entity/player/PlayerWakeUpEvent; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/event/entity/player/PlayerSpawnPhantomsEvent; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/event/entity/player/PlayerSleepInBedEvent; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/event/entity/player/PlayerSetSpawnEvent; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/event/entity/player/PlayerNegotiationEvent; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/event/entity/player/PlayerInteractEvent; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/event/entity/player/PlayerInteractEvent$RightClickItem; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/event/entity/player/PlayerInteractEvent$RightClickEmpty; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/event/entity/player/PlayerInteractEvent$RightClickBlock; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/event/entity/player/PlayerInteractEvent$LeftClickEmpty; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/event/entity/player/PlayerInteractEvent$LeftClickBlock; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/event/entity/player/PlayerInteractEvent$LeftClickBlock$Action; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/event/entity/player/PlayerInteractEvent$EntityInteractSpecific; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/event/entity/player/PlayerInteractEvent$EntityInteract; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/event/entity/player/PlayerInteractEvent$1; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/event/entity/player/PlayerFlyableFallEvent; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/event/entity/player/PlayerEvent; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/event/entity/player/PlayerEvent$TabListNameFormat; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/event/entity/player/PlayerEvent$StopTracking; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/event/entity/player/PlayerEvent$StartTracking; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/event/entity/player/PlayerEvent$SaveToFile; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/event/entity/player/PlayerEvent$PlayerRespawnEvent; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/event/entity/player/PlayerEvent$PlayerLoggedOutEvent; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/event/entity/player/PlayerEvent$PlayerLoggedInEvent; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/event/entity/player/PlayerEvent$PlayerChangedDimensionEvent; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/event/entity/player/PlayerEvent$PlayerChangeGameModeEvent; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/event/entity/player/PlayerEvent$NameFormat; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/event/entity/player/PlayerEvent$LoadFromFile; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/event/entity/player/PlayerEvent$ItemSmeltedEvent; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/event/entity/player/PlayerEvent$ItemPickupEvent; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/event/entity/player/PlayerEvent$ItemCraftedEvent; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/event/entity/player/PlayerEvent$HarvestCheck; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/event/entity/player/PlayerEvent$Clone; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/event/entity/player/PlayerEvent$BreakSpeed; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/event/entity/player/PlayerDestroyItemEvent; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/event/entity/player/PlayerContainerEvent; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/event/entity/player/PlayerContainerEvent$Open; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/event/entity/player/PlayerContainerEvent$Close; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/event/entity/player/PermissionsChangedEvent; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/event/entity/player/ItemTooltipEvent; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/event/entity/player/ItemFishedEvent; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/event/entity/player/FillBucketEvent; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/event/entity/player/EntityItemPickupEvent; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/event/entity/player/CriticalHitEvent; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/event/entity/player/BonemealEvent; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/event/entity/player/AttackEntityEvent; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/event/entity/player/ArrowNockEvent; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/event/entity/player/ArrowLooseEvent; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/event/entity/player/AnvilRepairEvent; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/event/entity/player/AdvancementEvent; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/event/entity/player/AdvancementEvent$AdvancementProgressEvent; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/event/entity/player/AdvancementEvent$AdvancementProgressEvent$ProgressType; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/event/entity/player/AdvancementEvent$AdvancementEarnEvent; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/event/entity/living/ZombieEvent; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/event/entity/living/ZombieEvent$SummonAidEvent; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/event/entity/living/ShieldBlockEvent; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/event/entity/living/PotionColorCalculationEvent; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/event/entity/living/MobSpawnEvent; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/event/entity/living/MobSpawnEvent$SpawnPlacementCheck; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/event/entity/living/MobSpawnEvent$PositionCheck; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/event/entity/living/MobSpawnEvent$FinalizeSpawn; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/event/entity/living/MobSpawnEvent$AllowDespawn; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/event/entity/living/MobEffectEvent; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/event/entity/living/MobEffectEvent$Remove; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/event/entity/living/MobEffectEvent$Expired; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/event/entity/living/MobEffectEvent$Applicable; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/event/entity/living/MobEffectEvent$Added; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/event/entity/living/LootingLevelEvent; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/event/entity/living/LivingUseTotemEvent; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/event/entity/living/LivingSwapItemsEvent; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/event/entity/living/LivingSwapItemsEvent$Hands; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/event/entity/living/LivingPackSizeEvent; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/event/entity/living/LivingMakeBrainEvent; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/event/entity/living/LivingKnockBackEvent; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/event/entity/living/LivingHurtEvent; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/event/entity/living/LivingHealEvent; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/event/entity/living/LivingGetProjectileEvent; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/event/entity/living/LivingFallEvent; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/event/entity/living/LivingExperienceDropEvent; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/event/entity/living/LivingEvent; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/event/entity/living/LivingEvent$LivingVisibilityEvent; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/event/entity/living/LivingEvent$LivingTickEvent; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/event/entity/living/LivingEvent$LivingJumpEvent; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/event/entity/living/LivingEquipmentChangeEvent; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/event/entity/living/LivingEntityUseItemEvent; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/event/entity/living/LivingEntityUseItemEvent$Tick; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/event/entity/living/LivingEntityUseItemEvent$Stop; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/event/entity/living/LivingEntityUseItemEvent$Start; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/event/entity/living/LivingEntityUseItemEvent$Finish; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/event/entity/living/LivingDrownEvent; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/event/entity/living/LivingDropsEvent; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/event/entity/living/LivingDestroyBlockEvent; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/event/entity/living/LivingDeathEvent; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/event/entity/living/LivingDamageEvent; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/event/entity/living/LivingConversionEvent; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/event/entity/living/LivingConversionEvent$Pre; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/event/entity/living/LivingConversionEvent$Post; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/event/entity/living/LivingChangeTargetEvent; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/event/entity/living/LivingChangeTargetEvent$LivingTargetType; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/event/entity/living/LivingChangeTargetEvent$ILivingTargetType; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/event/entity/living/LivingBreatheEvent; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/event/entity/living/LivingAttackEvent; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/event/entity/living/EnderManAngerEvent; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/event/entity/living/BabyEntitySpawnEvent; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/event/entity/living/AnimalTameEvent; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/event/entity/item/ItemTossEvent; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/event/entity/item/ItemExpireEvent; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/event/entity/item/ItemEvent; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/event/entity/SpawnPlacementRegisterEvent; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/event/entity/SpawnPlacementRegisterEvent$Operation; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/event/entity/SpawnPlacementRegisterEvent$MergedSpawnPredicate; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/event/entity/ProjectileImpactEvent; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/event/entity/ProjectileImpactEvent$ImpactResult; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/event/entity/EntityTravelToDimensionEvent; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/event/entity/EntityTeleportEvent; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/event/entity/EntityTeleportEvent$TeleportCommand; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/event/entity/EntityTeleportEvent$SpreadPlayersCommand; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/event/entity/EntityTeleportEvent$EnderPearl; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/event/entity/EntityTeleportEvent$EnderEntity; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/event/entity/EntityTeleportEvent$ChorusFruit; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/event/entity/EntityStruckByLightningEvent; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/event/entity/EntityMountEvent; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/event/entity/EntityMobGriefingEvent; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/event/entity/EntityLeaveLevelEvent; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/event/entity/EntityJoinLevelEvent; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/event/entity/EntityEvent; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/event/entity/EntityEvent$Size; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/event/entity/EntityEvent$EyeHeight; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/event/entity/EntityEvent$EntityConstructing; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/event/entity/EntityEvent$EnteringSection; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/event/entity/EntityAttributeModificationEvent; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/event/entity/EntityAttributeCreationEvent; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/event/enchanting/EnchantmentLevelSetEvent; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/event/brewing/PotionBrewEvent; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/event/brewing/PotionBrewEvent$Pre; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/event/brewing/PotionBrewEvent$Post; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/event/brewing/PlayerBrewedPotionEvent; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/event/VanillaGameEvent; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/event/TickEvent; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/event/TickEvent$Type; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/event/TickEvent$ServerTickEvent; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/event/TickEvent$RenderTickEvent; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/event/TickEvent$PlayerTickEvent; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/event/TickEvent$Phase; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/event/TickEvent$LevelTickEvent; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/event/TickEvent$ClientTickEvent; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/event/TagsUpdatedEvent; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/event/TagsUpdatedEvent$UpdateCause; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/event/ServerChatEvent; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/event/RegisterStructureConversionsEvent; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/event/RegisterGameTestsEvent; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/event/RegisterCommandsEvent; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/event/PlayLevelSoundEvent; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/event/PlayLevelSoundEvent$AtPosition; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/event/PlayLevelSoundEvent$AtEntity; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/event/OnDatapackSyncEvent; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/event/ModMismatchEvent; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/event/ModMismatchEvent$MismatchedVersionInfo; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/event/ModMismatchEvent$MismatchResolutionResult; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/event/LootTableLoadEvent; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/event/ItemStackedOnOtherEvent; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/event/ItemAttributeModifierEvent; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/event/GrindstoneEvent; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/event/GrindstoneEvent$OnTakeItem; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/event/GrindstoneEvent$OnPlaceItem; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/event/GameShuttingDownEvent; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/event/ForgeEventFactory; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/event/DifficultyChangeEvent; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/event/CommandEvent; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/event/BuildCreativeModeTabContentsEvent; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/event/AttachCapabilitiesEvent; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/event/AnvilUpdateEvent; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/event/AddReloadListenerEvent; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/event/AddReloadListenerEvent$WrappedStateAwareListener; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/event/AddPackFindersEvent; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/entity/PartEntity; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/entity/IEntityAdditionalSpawnData; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/energy/IEnergyStorage; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/energy/EnergyStorage; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/energy/EmptyEnergyStorage; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/data/loading/DatagenModLoader; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/data/event/GatherDataEvent; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/data/event/GatherDataEvent$DataGeneratorConfig; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/common/world/StructureSettingsBuilder; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/common/world/StructureSettingsBuilder$StructureSpawnOverrideBuilder; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/common/world/StructureModifier; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/common/world/StructureModifier$Phase; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/common/world/PieceBeardifierModifier; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/common/world/NoneStructureModifier; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/common/world/NoneBiomeModifier; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/common/world/ModifiableStructureInfo; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/common/world/ModifiableStructureInfo$StructureInfo; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/common/world/ModifiableStructureInfo$StructureInfo$Builder; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/common/world/ModifiableBiomeInfo; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/common/world/ModifiableBiomeInfo$BiomeInfo; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/common/world/ModifiableBiomeInfo$BiomeInfo$Builder; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/common/world/MobSpawnSettingsBuilder; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/common/world/ForgeChunkManager; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/common/world/ForgeChunkManager$TicketTracker; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/common/world/ForgeChunkManager$TicketOwner; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/common/world/ForgeChunkManager$TicketHelper; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/common/world/ForgeChunkManager$LoadingValidationCallback; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/common/world/ForgeBiomeModifiers; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/common/world/ForgeBiomeModifiers$RemoveSpawnsBiomeModifier; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/common/world/ForgeBiomeModifiers$RemoveFeaturesBiomeModifier; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/common/world/ForgeBiomeModifiers$AddSpawnsBiomeModifier; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/common/world/ForgeBiomeModifiers$AddFeaturesBiomeModifier; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/common/world/ClimateSettingsBuilder; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/common/world/BiomeSpecialEffectsBuilder; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/common/world/BiomeModifier; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/common/world/BiomeModifier$Phase; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/common/world/BiomeGenerationSettingsBuilder; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/common/util/TriPredicate; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/common/util/TransformationHelper; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/common/util/TransformationHelper$TransformOrigin; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/common/util/TransformationHelper$Deserializer; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/common/util/TextTable; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/common/util/TextTable$Row; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/common/util/TextTable$Column; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/common/util/TextTable$Alignment; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/common/util/TextTable$1; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/common/util/TablePrinter; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/common/util/TablePrinter$Header; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/common/util/SortedProperties; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/common/util/Size2i; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/common/util/RecipeMatcher; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/common/util/NonNullSupplier; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/common/util/NonNullPredicate; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/common/util/NonNullLazy; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/common/util/NonNullFunction; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/common/util/NonNullConsumer; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/common/util/MutableHashedLinkedMap; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/common/util/MutableHashedLinkedMap$MergeFunction; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/common/util/MutableHashedLinkedMap$IdentityStrategy; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/common/util/MutableHashedLinkedMap$Entry; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/common/util/MutableHashedLinkedMap$BasicStrategy; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/common/util/MutableHashedLinkedMap$1; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/common/util/MavenVersionStringHelper; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/common/util/LogicalSidedProvider; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/common/util/LogMessageAdapter; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/common/util/LevelCapabilityData; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/common/util/LazyOptional; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/common/util/Lazy; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/common/util/Lazy$Fast; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/common/util/Lazy$Concurrent; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/common/util/JsonUtils; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/common/util/JsonUtils$ImmutableMapTypeAdapter; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/common/util/JsonUtils$ImmutableListTypeAdapter; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/common/util/JsonUtils$4; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/common/util/JsonUtils$3; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/common/util/JsonUtils$2; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/common/util/JsonUtils$1; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/common/util/ItemStackMap; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/common/util/ITeleporter; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/common/util/INBTSerializable; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/common/util/HexDumper; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/common/util/HexDumper$Instance; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/common/util/ForgeSoundType; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/common/util/FakePlayerFactory; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/common/util/FakePlayerFactory$FakePlayerKey; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/common/util/FakePlayer; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/common/util/FakePlayer$FakePlayerNetHandler; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/common/util/DummySavedData; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/common/util/ConcatenatedListView; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/common/util/CenterChunkPosComparator; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/common/util/BrainBuilder; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/common/util/BlockSnapshot; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/common/ticket/SimpleTicket; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/common/ticket/ITicketManager; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/common/ticket/ITicketGetter; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/common/ticket/ChunkTicketManager; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/common/ticket/AABBTicket; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/common/property/Properties; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/common/loot/LootTableIdCondition; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/common/loot/LootTableIdCondition$Serializer; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/common/loot/LootTableIdCondition$Builder; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/common/loot/LootModifierManager; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/common/loot/LootModifier; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/common/loot/IGlobalLootModifier; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/common/loot/CanToolPerformAction; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/common/loot/CanToolPerformAction$Serializer; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/common/extensions/IForgeTransformation; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/common/extensions/IForgeTagAppender; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/common/extensions/IForgeRecipeSerializer; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/common/extensions/IForgeRawTagBuilder; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/common/extensions/IForgePotion; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/common/extensions/IForgePlayer; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/common/extensions/IForgePackResources; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/common/extensions/IForgeMobEffectInstance; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/common/extensions/IForgeMobEffect; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/common/extensions/IForgeMenuType; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/common/extensions/IForgeLivingEntity; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/common/extensions/IForgeLevelChunk; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/common/extensions/IForgeLevel; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/common/extensions/IForgeItemStack; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/common/extensions/IForgeItem; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/common/extensions/IForgeIntrinsicHolderTagAppender; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/common/extensions/IForgeHolderSet; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/common/extensions/IForgeHolderSet$SerializationType; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/common/extensions/IForgeFriendlyByteBuf; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/common/extensions/IForgeFluidState; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/common/extensions/IForgeFluid; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/common/extensions/IForgeEntity; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/common/extensions/IForgeEnchantment; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/common/extensions/IForgeDispensibleContainerItem; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/common/extensions/IForgeCommandSourceStack; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/common/extensions/IForgeBucketPickup; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/common/extensions/IForgeBoat; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/common/extensions/IForgeBlockState; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/common/extensions/IForgeBlockGetter; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/common/extensions/IForgeBlockEntity; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/common/extensions/IForgeBlock; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/common/extensions/IForgeBaseRailBlock; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/common/extensions/IForgeAdvancementBuilder; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/common/extensions/IForgeAbstractMinecart; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/common/data/package-info; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/common/data/VanillaSoundDefinitionsProvider; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/common/data/SpriteSourceProvider; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/common/data/SpriteSourceProvider$SourceList; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/common/data/SoundDefinitionsProvider; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/common/data/SoundDefinitionsProvider$1; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/common/data/SoundDefinition; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/common/data/SoundDefinition$SoundType; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/common/data/SoundDefinition$Sound; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/common/data/ParticleDescriptionProvider; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/common/data/ParticleDescriptionProvider$1; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/common/data/LanguageProvider; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/common/data/JsonCodecProvider; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/common/data/GlobalLootModifierProvider; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/common/data/ForgeSpriteSourceProvider; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/common/data/ForgeRecipeProvider; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/common/data/ForgeLootTableProvider; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/common/data/ForgeItemTagsProvider; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/common/data/ForgeFluidTagsProvider; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/common/data/ForgeEntityTypeTagsProvider; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/common/data/ForgeBlockTagsProvider; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/common/data/ForgeBiomeTagsProvider; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/common/data/ForgeAdvancementProvider; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/common/data/ForgeAdvancementProvider$AdvancementGenerator; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/common/data/ExistingFileHelper; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/common/data/ExistingFileHelper$ResourceType; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/common/data/ExistingFileHelper$IResourceType; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/common/data/DatapackBuiltinEntriesProvider; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/common/data/BlockTagsProvider; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/common/crafting/package-info; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/common/crafting/conditions/TrueCondition; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/common/crafting/conditions/TrueCondition$Serializer; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/common/crafting/conditions/TagEmptyCondition; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/common/crafting/conditions/TagEmptyCondition$Serializer; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/common/crafting/conditions/OrCondition; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/common/crafting/conditions/OrCondition$Serializer; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/common/crafting/conditions/NotCondition; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/common/crafting/conditions/NotCondition$Serializer; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/common/crafting/conditions/ModLoadedCondition; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/common/crafting/conditions/ModLoadedCondition$Serializer; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/common/crafting/conditions/ItemExistsCondition; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/common/crafting/conditions/ItemExistsCondition$Serializer; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/common/crafting/conditions/IConditionSerializer; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/common/crafting/conditions/IConditionBuilder; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/common/crafting/conditions/ICondition; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/common/crafting/conditions/ICondition$IContext; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/common/crafting/conditions/ICondition$IContext$2; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/common/crafting/conditions/ICondition$IContext$1; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/common/crafting/conditions/FalseCondition; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/common/crafting/conditions/FalseCondition$Serializer; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/common/crafting/conditions/ConditionContext; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/common/crafting/conditions/AndCondition; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/common/crafting/conditions/AndCondition$Serializer; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/common/crafting/VanillaIngredientSerializer; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/common/crafting/StrictNBTIngredient; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/common/crafting/StrictNBTIngredient$Serializer; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/common/crafting/PartialNBTIngredient; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/common/crafting/PartialNBTIngredient$Serializer; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/common/crafting/MultiItemValue; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/common/crafting/IntersectionIngredient; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/common/crafting/IntersectionIngredient$Serializer; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/common/crafting/IShapedRecipe; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/common/crafting/IRecipeContainer; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/common/crafting/IIngredientSerializer; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/common/crafting/DifferenceIngredient; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/common/crafting/DifferenceIngredient$Serializer; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/common/crafting/CraftingHelper; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/common/crafting/ConditionalRecipe; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/common/crafting/ConditionalRecipe$Serializer; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/common/crafting/ConditionalRecipe$Finished; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/common/crafting/ConditionalRecipe$Builder; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/common/crafting/ConditionalAdvancement; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/common/crafting/ConditionalAdvancement$Builder; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/common/crafting/CompoundIngredient; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/common/crafting/CompoundIngredient$Serializer; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/common/crafting/AbstractIngredient; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/common/command/IEntitySelectorType; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/common/command/EntitySelectorManager; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/common/capabilities/RegisterCapabilitiesEvent; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/common/capabilities/ICapabilitySerializable; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/common/capabilities/ICapabilityProviderImpl; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/common/capabilities/ICapabilityProvider; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/common/capabilities/ForgeCapabilities; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/common/capabilities/ForgeCapabilities$4; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/common/capabilities/ForgeCapabilities$3; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/common/capabilities/ForgeCapabilities$2; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/common/capabilities/ForgeCapabilities$1; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/common/capabilities/CapabilityToken; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/common/capabilities/CapabilityProvider; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/common/capabilities/CapabilityProvider$AsField; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/common/capabilities/CapabilityManager; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/common/capabilities/CapabilityDispatcher; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/common/capabilities/Capability; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/common/capabilities/AutoRegisterCapability; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/common/brewing/package-info; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/common/brewing/VanillaBrewingRecipe; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/common/brewing/IBrewingRecipe; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/common/brewing/BrewingRecipeRegistry; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/common/brewing/BrewingRecipe; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/common/WorldWorkerManager; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/common/WorldWorkerManager$IWorker; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/common/VillagerTradingManager; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/common/UsernameCache; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/common/UsernameCache$SaveThread; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/common/UsernameCache$1; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/common/ToolActions; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/common/ToolAction; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/common/TierSortingRegistry; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/common/TierSortingRegistry$SyncPacket; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/common/TierSortingRegistry$ClientEvents; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/common/TierSortingRegistry$1; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/common/Tags; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/common/Tags$Items; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/common/Tags$Fluids; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/common/Tags$EntityTypes; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/common/Tags$Blocks; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/common/Tags$Biomes; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/common/SoundActions; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/common/SoundAction; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/common/PlantType; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/common/MinecraftForge; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/common/LenientUnboundedMapCodec; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/common/IPlantable; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/common/IMinecartCollisionHandler; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/common/IForgeShearable; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/common/IExtensibleEnum; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/common/ForgeTier; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/common/ForgeStatesProvider; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/common/ForgeSpawnEggItem; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/common/ForgeSpawnEggItem$CommonHandler; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/common/ForgeSpawnEggItem$ColorRegisterHandler; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/common/ForgeMod; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/common/ForgeMod$4; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/common/ForgeMod$4$1; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/common/ForgeMod$3; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/common/ForgeMod$3$1; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/common/ForgeMod$2; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/common/ForgeMod$2$1; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/common/ForgeMod$1; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/common/ForgeInternalHandler; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/common/ForgeI18n; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/common/ForgeI18n$CustomReadOnlyFormat; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/common/ForgeHooks; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/common/ForgeHooks$LootTableContext; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/common/ForgeHooks$BiomeCallbackFunction; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/common/ForgeHooks$2; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/common/ForgeHooks$1; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/common/ForgeConfigSpec; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/common/ForgeConfigSpec$ValueSpec; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/common/ForgeConfigSpec$Range; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/common/ForgeConfigSpec$LongValue; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/common/ForgeConfigSpec$IntValue; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/common/ForgeConfigSpec$EnumValue; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/common/ForgeConfigSpec$DoubleValue; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/common/ForgeConfigSpec$ConfigValue; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/common/ForgeConfigSpec$BuilderContext; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/common/ForgeConfigSpec$Builder; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/common/ForgeConfigSpec$Builder$BuilderConsumer; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/common/ForgeConfigSpec$Builder$2; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/common/ForgeConfigSpec$Builder$1; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/common/ForgeConfigSpec$BooleanValue; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/common/ForgeConfig; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/common/ForgeConfig$Server; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/common/ForgeConfig$Common; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/common/ForgeConfig$Client; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/common/FarmlandWaterManager; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/common/DungeonHooks; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/common/DungeonHooks$DungeonMob; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/common/CreativeModeTabRegistry; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/common/CreativeModeTabRegistry$1; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/common/BiomeManager; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/common/BiomeManager$TrackedList; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/common/BiomeManager$BiomeType; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/common/BiomeManager$BiomeEntry; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/common/BasicItemListing; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/client/textures/UnitTextureAtlasSprite; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/client/textures/TextureAtlasSpriteLoaderManager; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/client/textures/ITextureAtlasSpriteLoader; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/client/textures/ForgeTextureMetadata; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/client/textures/ForgeTextureMetadata$Serializer; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/client/settings/KeyModifier; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/client/settings/KeyModifier$4; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/client/settings/KeyModifier$3; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/client/settings/KeyModifier$2; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/client/settings/KeyModifier$1; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/client/settings/KeyMappingLookup; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/client/settings/KeyConflictContext; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/client/settings/KeyConflictContext$3; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/client/settings/KeyConflictContext$2; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/client/settings/KeyConflictContext$1; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/client/settings/IKeyConflictContext; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/client/model/renderable/ITextureRenderTypeLookup; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/client/model/renderable/IRenderable; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/client/model/renderable/CompositeRenderable; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/client/model/renderable/CompositeRenderable$Transforms; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/client/model/renderable/CompositeRenderable$PartBuilder; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/client/model/renderable/CompositeRenderable$Mesh; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/client/model/renderable/CompositeRenderable$Component; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/client/model/renderable/CompositeRenderable$Builder; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/client/model/renderable/BakedModelRenderable; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/client/model/renderable/BakedModelRenderable$Context; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/client/model/pipeline/package-info; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/client/model/pipeline/VertexConsumerWrapper; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/client/model/pipeline/TransformingVertexPipeline; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/client/model/pipeline/RemappingVertexPipeline; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/client/model/pipeline/QuadBakingVertexConsumer; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/client/model/pipeline/QuadBakingVertexConsumer$Buffered; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/client/model/package-info; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/client/model/obj/package-info; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/client/model/obj/ObjTokenizer; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/client/model/obj/ObjModel; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/client/model/obj/ObjModel$ModelSettings; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/client/model/obj/ObjModel$ModelObject; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/client/model/obj/ObjModel$ModelMesh; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/client/model/obj/ObjModel$ModelGroup; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/client/model/obj/ObjMaterialLibrary; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/client/model/obj/ObjMaterialLibrary$Material; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/client/model/obj/ObjLoader; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/client/model/lighting/SmoothQuadLighter; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/client/model/lighting/QuadLighter; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/client/model/lighting/ForgeModelBlockRenderer; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/client/model/lighting/FlatQuadLighter; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/client/model/geometry/UnbakedGeometryHelper; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/client/model/geometry/StandaloneGeometryBakingContext; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/client/model/geometry/StandaloneGeometryBakingContext$Builder; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/client/model/geometry/SimpleUnbakedGeometry; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/client/model/geometry/IUnbakedGeometry; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/client/model/geometry/IGeometryLoader; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/client/model/geometry/IGeometryBakingContext; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/client/model/geometry/GeometryLoaderManager; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/client/model/geometry/BlockGeometryBakingContext; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/client/model/geometry/BlockGeometryBakingContext$VisibilityData; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/client/model/generators/loaders/SeparateTransformsModelBuilder; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/client/model/generators/loaders/ObjModelBuilder; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/client/model/generators/loaders/ItemLayerModelBuilder; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/client/model/generators/loaders/DynamicFluidContainerModelBuilder; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/client/model/generators/loaders/CompositeModelBuilder; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/client/model/generators/VariantBlockStateBuilder; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/client/model/generators/VariantBlockStateBuilder$PartialBlockstate; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/client/model/generators/MultiPartBlockStateBuilder; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/client/model/generators/MultiPartBlockStateBuilder$PartBuilder; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/client/model/generators/MultiPartBlockStateBuilder$PartBuilder$ConditionGroup; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/client/model/generators/ModelProvider; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/client/model/generators/ModelFile; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/client/model/generators/ModelFile$UncheckedModelFile; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/client/model/generators/ModelFile$ExistingModelFile; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/client/model/generators/ModelBuilder; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/client/model/generators/ModelBuilder$TransformsBuilder; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/client/model/generators/ModelBuilder$TransformsBuilder$TransformVecBuilder; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/client/model/generators/ModelBuilder$RootTransformsBuilder; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/client/model/generators/ModelBuilder$FaceRotation; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/client/model/generators/ModelBuilder$ElementBuilder; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/client/model/generators/ModelBuilder$ElementBuilder$RotationBuilder; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/client/model/generators/ModelBuilder$ElementBuilder$FaceBuilder; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/client/model/generators/ItemModelProvider; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/client/model/generators/ItemModelBuilder; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/client/model/generators/ItemModelBuilder$OverrideBuilder; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/client/model/generators/IGeneratedBlockState; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/client/model/generators/CustomLoaderBuilder; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/client/model/generators/ConfiguredModel; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/client/model/generators/ConfiguredModel$Builder; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/client/model/generators/BlockStateProvider; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/client/model/generators/BlockStateProvider$ConfiguredModelList; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/client/model/generators/BlockStateProvider$2; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/client/model/generators/BlockStateProvider$1; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/client/model/generators/BlockModelProvider; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/client/model/generators/BlockModelBuilder; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/client/model/data/MultipartModelData; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/client/model/data/MultipartModelData$Builder; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/client/model/data/ModelProperty; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/client/model/data/ModelDataManager; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/client/model/data/ModelData; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/client/model/data/ModelData$Builder; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/client/model/SimpleModelState; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/client/model/SeparateTransformsModel; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/client/model/SeparateTransformsModel$Loader; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/client/model/SeparateTransformsModel$Baked; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/client/model/QuadTransformers; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/client/model/ItemLayerModel; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/client/model/ItemLayerModel$Loader; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/client/model/IQuadTransformer; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/client/model/IModelBuilder; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/client/model/IModelBuilder$Simple; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/client/model/IModelBuilder$Collecting; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/client/model/IDynamicBakedModel; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/client/model/ForgeItemModelShaper; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/client/model/ForgeFaceData; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/client/model/ExtendedBlockModelDeserializer; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/client/model/EmptyModel; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/client/model/EmptyModel$Baked; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/client/model/ElementsModel; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/client/model/ElementsModel$Loader; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/client/model/DynamicFluidContainerModel; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/client/model/DynamicFluidContainerModel$Loader; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/client/model/DynamicFluidContainerModel$ContainedFluidOverrideHandler; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/client/model/DynamicFluidContainerModel$Colors; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/client/model/CompositeModel; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/client/model/CompositeModel$Loader; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/client/model/CompositeModel$Data; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/client/model/CompositeModel$Data$Builder; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/client/model/CompositeModel$Baked; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/client/model/CompositeModel$Baked$Builder; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/client/model/BakedModelWrapper; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/client/loading/NoVizFallback; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/client/loading/ForgeLoadingOverlay; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/client/loading/ClientModLoader; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/client/gui/widget/UnicodeGlyphButton; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/client/gui/widget/ScrollPanel; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/client/gui/widget/ModListWidget; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/client/gui/widget/ModListWidget$ModEntry; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/client/gui/widget/ForgeSlider; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/client/gui/widget/ExtendedButton; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/client/gui/overlay/VanillaGuiOverlay; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/client/gui/overlay/NamedGuiOverlay; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/client/gui/overlay/IGuiOverlay; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/client/gui/overlay/GuiOverlayManager; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/client/gui/overlay/ForgeGui; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/client/gui/overlay/ForgeGui$ForgeDebugScreenOverlay; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/client/gui/TitleScreenModUpdateIndicator; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/client/gui/ScreenUtils; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/client/gui/ModMismatchDisconnectedScreen; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/client/gui/ModMismatchDisconnectedScreen$MismatchInfoPanel; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/client/gui/ModListScreen; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/client/gui/ModListScreen$SortType; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/client/gui/ModListScreen$SortType$2; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/client/gui/ModListScreen$SortType$1; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/client/gui/ModListScreen$InfoPanel; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/client/gui/ModListScreen$1; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/client/gui/LoadingErrorScreen; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/client/gui/LoadingErrorScreen$LoadingEntryList; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/client/gui/LoadingErrorScreen$LoadingEntryList$LoadingMessageEntry; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/client/gui/CreativeTabsScreenPage; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/client/gui/ClientTooltipComponentManager; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/client/extensions/package-info; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/client/extensions/common/IClientMobEffectExtensions; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/client/extensions/common/IClientMobEffectExtensions$1; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/client/extensions/common/IClientItemExtensions; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/client/extensions/common/IClientItemExtensions$FontContext; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/client/extensions/common/IClientItemExtensions$1; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/client/extensions/common/IClientFluidTypeExtensions; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/client/extensions/common/IClientFluidTypeExtensions$1; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/client/extensions/common/IClientBlockExtensions; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/client/extensions/common/IClientBlockExtensions$1; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/client/extensions/IForgeVertexConsumer; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/client/extensions/IForgePoseStack; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/client/extensions/IForgeModelBaker; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/client/extensions/IForgeMinecraft; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/client/extensions/IForgeKeyMapping; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/client/extensions/IForgeGuiGraphics; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/client/extensions/IForgeFont; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/client/extensions/IForgeDimensionSpecialEffects; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/client/extensions/IForgeBlockAndTintGetter; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/client/extensions/IForgeBakedModel; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/client/event/sound/package-info; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/client/event/sound/SoundEvent; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/client/event/sound/SoundEvent$SoundSourceEvent; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/client/event/sound/SoundEngineLoadEvent; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/client/event/sound/PlayStreamingSourceEvent; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/client/event/sound/PlaySoundSourceEvent; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/client/event/sound/PlaySoundEvent; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/client/event/package-info; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/client/event/ViewportEvent; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/client/event/ViewportEvent$RenderFog; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/client/event/ViewportEvent$ComputeFov; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/client/event/ViewportEvent$ComputeFogColor; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/client/event/ViewportEvent$ComputeCameraAngles; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/client/event/ToastAddEvent; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/client/event/TextureStitchEvent; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/client/event/TextureStitchEvent$Post; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/client/event/ScreenshotEvent; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/client/event/ScreenEvent; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/client/event/ScreenEvent$RenderInventoryMobEffects; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/client/event/ScreenEvent$Render; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/client/event/ScreenEvent$Render$Pre; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/client/event/ScreenEvent$Render$Post; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/client/event/ScreenEvent$Opening; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/client/event/ScreenEvent$MouseScrolled; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/client/event/ScreenEvent$MouseScrolled$Pre; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/client/event/ScreenEvent$MouseScrolled$Post; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/client/event/ScreenEvent$MouseInput; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/client/event/ScreenEvent$MouseDragged; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/client/event/ScreenEvent$MouseDragged$Pre; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/client/event/ScreenEvent$MouseDragged$Post; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/client/event/ScreenEvent$MouseButtonReleased; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/client/event/ScreenEvent$MouseButtonReleased$Pre; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/client/event/ScreenEvent$MouseButtonReleased$Post; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/client/event/ScreenEvent$MouseButtonPressed; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/client/event/ScreenEvent$MouseButtonPressed$Pre; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/client/event/ScreenEvent$MouseButtonPressed$Post; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/client/event/ScreenEvent$KeyReleased; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/client/event/ScreenEvent$KeyReleased$Pre; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/client/event/ScreenEvent$KeyReleased$Post; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/client/event/ScreenEvent$KeyPressed; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/client/event/ScreenEvent$KeyPressed$Pre; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/client/event/ScreenEvent$KeyPressed$Post; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/client/event/ScreenEvent$KeyInput; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/client/event/ScreenEvent$Init; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/client/event/ScreenEvent$Init$Pre; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/client/event/ScreenEvent$Init$Post; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/client/event/ScreenEvent$Closing; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/client/event/ScreenEvent$CharacterTyped; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/client/event/ScreenEvent$CharacterTyped$Pre; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/client/event/ScreenEvent$CharacterTyped$Post; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/client/event/ScreenEvent$BackgroundRendered; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/client/event/RenderTooltipEvent; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/client/event/RenderTooltipEvent$Pre; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/client/event/RenderTooltipEvent$GatherComponents; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/client/event/RenderTooltipEvent$Color; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/client/event/RenderPlayerEvent; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/client/event/RenderPlayerEvent$Pre; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/client/event/RenderPlayerEvent$Post; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/client/event/RenderNameTagEvent; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/client/event/RenderLivingEvent; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/client/event/RenderLivingEvent$Pre; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/client/event/RenderLivingEvent$Post; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/client/event/RenderLevelStageEvent; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/client/event/RenderLevelStageEvent$Stage; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/client/event/RenderLevelStageEvent$RegisterStageEvent; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/client/event/RenderItemInFrameEvent; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/client/event/RenderHighlightEvent; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/client/event/RenderHighlightEvent$Entity; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/client/event/RenderHighlightEvent$Block; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/client/event/RenderHandEvent; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/client/event/RenderGuiOverlayEvent; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/client/event/RenderGuiOverlayEvent$Pre; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/client/event/RenderGuiOverlayEvent$Post; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/client/event/RenderGuiEvent; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/client/event/RenderGuiEvent$Pre; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/client/event/RenderGuiEvent$Post; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/client/event/RenderBlockScreenEffectEvent; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/client/event/RenderBlockScreenEffectEvent$OverlayType; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/client/event/RenderArmEvent; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/client/event/RegisterTextureAtlasSpriteLoadersEvent; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/client/event/RegisterShadersEvent; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/client/event/RegisterRecipeBookCategoriesEvent; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/client/event/RegisterPresetEditorsEvent; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/client/event/RegisterParticleProvidersEvent; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/client/event/RegisterNamedRenderTypesEvent; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/client/event/RegisterKeyMappingsEvent; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/client/event/RegisterItemDecorationsEvent; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/client/event/RegisterGuiOverlaysEvent; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/client/event/RegisterGuiOverlaysEvent$Ordering; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/client/event/RegisterEntitySpectatorShadersEvent; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/client/event/RegisterDimensionSpecialEffectsEvent; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/client/event/RegisterColorHandlersEvent; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/client/event/RegisterColorHandlersEvent$Item; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/client/event/RegisterColorHandlersEvent$ColorResolvers; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/client/event/RegisterColorHandlersEvent$Block; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/client/event/RegisterClientTooltipComponentFactoriesEvent; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/client/event/RegisterClientReloadListenersEvent; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/client/event/RegisterClientCommandsEvent; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/client/event/RecipesUpdatedEvent; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/client/event/MovementInputUpdateEvent; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/client/event/ModelEvent; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/client/event/ModelEvent$RegisterGeometryLoaders; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/client/event/ModelEvent$RegisterAdditional; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/client/event/ModelEvent$ModifyBakingResult; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/client/event/ModelEvent$BakingCompleted; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/client/event/InputEvent; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/client/event/InputEvent$MouseScrollingEvent; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/client/event/InputEvent$MouseButton; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/client/event/InputEvent$MouseButton$Pre; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/client/event/InputEvent$MouseButton$Post; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/client/event/InputEvent$Key; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/client/event/InputEvent$InteractionKeyMappingTriggered; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/client/event/EntityRenderersEvent; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/client/event/EntityRenderersEvent$RegisterRenderers; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/client/event/EntityRenderersEvent$RegisterLayerDefinitions; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/client/event/EntityRenderersEvent$CreateSkullModels; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/client/event/EntityRenderersEvent$AddLayers; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/client/event/CustomizeGuiOverlayEvent; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/client/event/CustomizeGuiOverlayEvent$DebugText; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/client/event/CustomizeGuiOverlayEvent$Chat; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/client/event/CustomizeGuiOverlayEvent$BossEventProgress; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/client/event/ContainerScreenEvent; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/client/event/ContainerScreenEvent$Render; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/client/event/ContainerScreenEvent$Render$Foreground; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/client/event/ContainerScreenEvent$Render$Background; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/client/event/ComputeFovModifierEvent; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/client/event/ClientPlayerNetworkEvent; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/client/event/ClientPlayerNetworkEvent$LoggingOut; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/client/event/ClientPlayerNetworkEvent$LoggingIn; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/client/event/ClientPlayerNetworkEvent$Clone; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/client/event/ClientPlayerChangeGameTypeEvent; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/client/event/ClientChatReceivedEvent; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/client/event/ClientChatReceivedEvent$System; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/client/event/ClientChatReceivedEvent$Player; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/client/event/ClientChatEvent; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/client/StencilManager; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/client/RenderTypeHelper; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/client/RenderTypeGroup; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/client/RecipeBookManager; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/client/PresetEditorManager; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/client/NamedRenderTypeManager; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/client/ItemDecoratorHandler; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/client/IItemDecorator; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/client/IArmPoseTransformer; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/client/ForgeRenderTypes; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/client/ForgeRenderTypes$Internal; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/client/ForgeRenderTypes$CustomizableTextureState; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/client/ForgeHooksClient; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/client/ForgeHooksClient$ClientEvents; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/client/ForgeHooksClient$1; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/client/FireworkShapeFactoryRegistry; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/client/FireworkShapeFactoryRegistry$Factory; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/client/ExtendedServerListData; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/client/EntitySpectatorShaderManager; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/client/DimensionSpecialEffectsManager; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/client/CreativeModeTabSearchRegistry; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/client/ConfigScreenHandler; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/client/ConfigScreenHandler$ConfigScreenFactory; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/client/ColorResolverManager; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/client/ClientForgeMod; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/client/ClientCommandSourceStack; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/client/ClientCommandHandler; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/client/ChunkRenderTypeSet; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/client/ChunkRenderTypeSet$None; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/client/ChunkRenderTypeSet$IteratorImpl; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraftforge/client/ChunkRenderTypeSet$All; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraft/world/ticks/package-info; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraft/world/ticks/WorldGenTickAccess; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraft/world/ticks/TickPriority; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraft/world/ticks/TickContainerAccess; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraft/world/ticks/TickAccess; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraft/world/ticks/SerializableTickContainer; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraft/world/ticks/ScheduledTick; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraft/world/ticks/ScheduledTick$1; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraft/world/ticks/SavedTick; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraft/world/ticks/SavedTick$1; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraft/world/ticks/ProtoChunkTicks; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraft/world/ticks/LevelTicks; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraft/world/ticks/LevelTicks$PosAndContainerConsumer; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraft/world/ticks/LevelTickAccess; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraft/world/ticks/LevelChunkTicks; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraft/world/ticks/ContainerSingleItem; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraft/world/ticks/BlackholeTickAccess; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraft/world/ticks/BlackholeTickAccess$2; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraft/world/ticks/BlackholeTickAccess$1; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraft/world/scores/package-info; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraft/world/scores/criteria/package-info; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraft/world/scores/criteria/ObjectiveCriteria; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraft/world/scores/criteria/ObjectiveCriteria$RenderType; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraft/world/scores/Team; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraft/world/scores/Team$Visibility; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraft/world/scores/Team$CollisionRule; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraft/world/scores/ScoreboardSaveData; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraft/world/scores/Scoreboard; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraft/world/scores/Score; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraft/world/scores/PlayerTeam; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraft/world/scores/Objective; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraft/world/phys/shapes/package-info; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraft/world/phys/shapes/VoxelShape; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraft/world/phys/shapes/SubShape; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraft/world/phys/shapes/SliceShape; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraft/world/phys/shapes/Shapes; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraft/world/phys/shapes/Shapes$DoubleLineConsumer; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraft/world/phys/shapes/OffsetDoubleList; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraft/world/phys/shapes/NonOverlappingMerger; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraft/world/phys/shapes/IndirectMerger; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraft/world/phys/shapes/IndexMerger; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraft/world/phys/shapes/IndexMerger$IndexConsumer; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraft/world/phys/shapes/IdenticalMerger; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraft/world/phys/shapes/EntityCollisionContext; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraft/world/phys/shapes/EntityCollisionContext$1; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraft/world/phys/shapes/DiscreteVoxelShape; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraft/world/phys/shapes/DiscreteVoxelShape$IntLineConsumer; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraft/world/phys/shapes/DiscreteVoxelShape$IntFaceConsumer; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraft/world/phys/shapes/DiscreteCubeMerger; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraft/world/phys/shapes/CubeVoxelShape; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraft/world/phys/shapes/CubePointRange; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraft/world/phys/shapes/CollisionContext; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraft/world/phys/shapes/BooleanOp; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraft/world/phys/shapes/BitSetDiscreteVoxelShape; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraft/world/phys/shapes/ArrayVoxelShape; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraft/world/phys/shapes/ArrayVoxelShape$1; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraft/world/phys/package-info; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraft/world/phys/Vec3; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraft/world/phys/Vec2; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraft/world/phys/HitResult; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraft/world/phys/HitResult$Type; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraft/world/phys/EntityHitResult; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraft/world/phys/BlockHitResult; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraft/world/phys/AABB; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraft/world/package-info; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraft/world/level/validation/package-info; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraft/world/level/validation/PathAllowList; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraft/world/level/validation/PathAllowList$EntryType; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraft/world/level/validation/PathAllowList$ConfigEntry; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraft/world/level/validation/ForbiddenSymlinkInfo; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraft/world/level/validation/DirectoryValidator; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraft/world/level/validation/DirectoryValidator$1; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraft/world/level/validation/ContentValidationException; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraft/world/level/timers/package-info; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraft/world/level/timers/TimerQueue; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraft/world/level/timers/TimerQueue$Event; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraft/world/level/timers/TimerCallbacks; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraft/world/level/timers/TimerCallback; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraft/world/level/timers/TimerCallback$Serializer; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraft/world/level/timers/FunctionTagCallback; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraft/world/level/timers/FunctionTagCallback$Serializer; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraft/world/level/timers/FunctionCallback; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraft/world/level/timers/FunctionCallback$Serializer; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraft/world/level/storage/package-info; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraft/world/level/storage/loot/providers/score/package-info; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraft/world/level/storage/loot/providers/score/ScoreboardNameProviders; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraft/world/level/storage/loot/providers/score/ScoreboardNameProvider; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraft/world/level/storage/loot/providers/score/LootScoreProviderType; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraft/world/level/storage/loot/providers/score/FixedScoreboardNameProvider; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraft/world/level/storage/loot/providers/score/FixedScoreboardNameProvider$Serializer; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraft/world/level/storage/loot/providers/score/ContextScoreboardNameProvider; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraft/world/level/storage/loot/providers/score/ContextScoreboardNameProvider$Serializer; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraft/world/level/storage/loot/providers/score/ContextScoreboardNameProvider$InlineSerializer; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraft/world/level/storage/loot/providers/number/package-info; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraft/world/level/storage/loot/providers/number/UniformGenerator; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraft/world/level/storage/loot/providers/number/UniformGenerator$Serializer; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraft/world/level/storage/loot/providers/number/ScoreboardValue; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraft/world/level/storage/loot/providers/number/ScoreboardValue$Serializer; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraft/world/level/storage/loot/providers/number/NumberProviders; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraft/world/level/storage/loot/providers/number/NumberProvider; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraft/world/level/storage/loot/providers/number/LootNumberProviderType; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraft/world/level/storage/loot/providers/number/ConstantValue; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraft/world/level/storage/loot/providers/number/ConstantValue$Serializer; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraft/world/level/storage/loot/providers/number/ConstantValue$InlineSerializer; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraft/world/level/storage/loot/providers/number/BinomialDistributionGenerator; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraft/world/level/storage/loot/providers/number/BinomialDistributionGenerator$Serializer; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraft/world/level/storage/loot/providers/nbt/package-info; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraft/world/level/storage/loot/providers/nbt/StorageNbtProvider; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraft/world/level/storage/loot/providers/nbt/StorageNbtProvider$Serializer; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraft/world/level/storage/loot/providers/nbt/NbtProviders; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraft/world/level/storage/loot/providers/nbt/NbtProvider; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraft/world/level/storage/loot/providers/nbt/LootNbtProviderType; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraft/world/level/storage/loot/providers/nbt/ContextNbtProvider; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraft/world/level/storage/loot/providers/nbt/ContextNbtProvider$Serializer; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraft/world/level/storage/loot/providers/nbt/ContextNbtProvider$InlineSerializer; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraft/world/level/storage/loot/providers/nbt/ContextNbtProvider$Getter; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraft/world/level/storage/loot/providers/nbt/ContextNbtProvider$2; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraft/world/level/storage/loot/providers/nbt/ContextNbtProvider$1; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraft/world/level/storage/loot/predicates/package-info; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraft/world/level/storage/loot/predicates/WeatherCheck; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraft/world/level/storage/loot/predicates/WeatherCheck$Serializer; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraft/world/level/storage/loot/predicates/WeatherCheck$Builder; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraft/world/level/storage/loot/predicates/ValueCheckCondition; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraft/world/level/storage/loot/predicates/ValueCheckCondition$Serializer; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraft/world/level/storage/loot/predicates/TimeCheck; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraft/world/level/storage/loot/predicates/TimeCheck$Serializer; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraft/world/level/storage/loot/predicates/TimeCheck$Builder; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraft/world/level/storage/loot/predicates/MatchTool; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraft/world/level/storage/loot/predicates/MatchTool$Serializer; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraft/world/level/storage/loot/predicates/LootItemRandomChanceCondition; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraft/world/level/storage/loot/predicates/LootItemRandomChanceCondition$Serializer; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraft/world/level/storage/loot/predicates/LootItemKilledByPlayerCondition; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraft/world/level/storage/loot/predicates/LootItemKilledByPlayerCondition$Serializer; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraft/world/level/storage/loot/predicates/LootItemEntityPropertyCondition; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraft/world/level/storage/loot/predicates/LootItemEntityPropertyCondition$Serializer; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraft/world/level/storage/loot/predicates/LootItemConditions; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraft/world/level/storage/loot/predicates/LootItemConditionType; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition$Builder; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraft/world/level/storage/loot/predicates/LootItemBlockStatePropertyCondition; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraft/world/level/storage/loot/predicates/LootItemBlockStatePropertyCondition$Serializer; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraft/world/level/storage/loot/predicates/LootItemBlockStatePropertyCondition$Builder; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraft/world/level/storage/loot/predicates/LocationCheck; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraft/world/level/storage/loot/predicates/LocationCheck$Serializer; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraft/world/level/storage/loot/predicates/InvertedLootItemCondition; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraft/world/level/storage/loot/predicates/InvertedLootItemCondition$Serializer; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraft/world/level/storage/loot/predicates/ExplosionCondition; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraft/world/level/storage/loot/predicates/ExplosionCondition$Serializer; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraft/world/level/storage/loot/predicates/EntityHasScoreCondition; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraft/world/level/storage/loot/predicates/EntityHasScoreCondition$Serializer; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraft/world/level/storage/loot/predicates/EntityHasScoreCondition$Builder; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraft/world/level/storage/loot/predicates/DamageSourceCondition; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraft/world/level/storage/loot/predicates/DamageSourceCondition$Serializer; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraft/world/level/storage/loot/predicates/ConditionUserBuilder; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraft/world/level/storage/loot/predicates/ConditionReference; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraft/world/level/storage/loot/predicates/ConditionReference$Serializer; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraft/world/level/storage/loot/predicates/CompositeLootItemCondition; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraft/world/level/storage/loot/predicates/CompositeLootItemCondition$Serializer; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraft/world/level/storage/loot/predicates/CompositeLootItemCondition$Builder; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraft/world/level/storage/loot/predicates/BonusLevelTableCondition; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraft/world/level/storage/loot/predicates/BonusLevelTableCondition$Serializer; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraft/world/level/storage/loot/predicates/AnyOfCondition; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraft/world/level/storage/loot/predicates/AnyOfCondition$Serializer; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraft/world/level/storage/loot/predicates/AnyOfCondition$Builder; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraft/world/level/storage/loot/predicates/AllOfCondition; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraft/world/level/storage/loot/predicates/AllOfCondition$Serializer; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraft/world/level/storage/loot/predicates/AllOfCondition$Builder; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraft/world/level/storage/loot/predicates/LootItemRandomChanceWithLootingCondition; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraft/world/level/storage/loot/predicates/LootItemRandomChanceWithLootingCondition$Serializer; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraft/world/level/storage/loot/parameters/package-info; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraft/world/level/storage/loot/parameters/LootContextParams; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraft/world/level/storage/loot/parameters/LootContextParamSet; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraft/world/level/storage/loot/parameters/LootContextParamSet$Builder; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraft/world/level/storage/loot/parameters/LootContextParam; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraft/world/level/storage/loot/parameters/LootContextParamSets; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraft/world/level/storage/loot/package-info; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraft/world/level/storage/loot/functions/package-info; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraft/world/level/storage/loot/functions/SetStewEffectFunction; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraft/world/level/storage/loot/functions/SetStewEffectFunction$Serializer; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraft/world/level/storage/loot/functions/SetStewEffectFunction$Builder; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraft/world/level/storage/loot/functions/SetPotionFunction; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraft/world/level/storage/loot/functions/SetPotionFunction$Serializer; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraft/world/level/storage/loot/functions/SetNbtFunction; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraft/world/level/storage/loot/functions/SetNbtFunction$Serializer; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraft/world/level/storage/loot/functions/SetNameFunction; +[13:03:41] [main/DEBUG]: Skipping Lnet/minecraft/world/level/storage/loot/functions/SetNameFunction$Serializer; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/storage/loot/functions/SetLoreFunction; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/storage/loot/functions/SetLoreFunction$Serializer; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/storage/loot/functions/SetLoreFunction$Builder; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/storage/loot/functions/SetItemDamageFunction; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/storage/loot/functions/SetItemDamageFunction$Serializer; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/storage/loot/functions/SetItemCountFunction; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/storage/loot/functions/SetItemCountFunction$Serializer; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/storage/loot/functions/SetInstrumentFunction; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/storage/loot/functions/SetInstrumentFunction$Serializer; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/storage/loot/functions/SetEnchantmentsFunction; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/storage/loot/functions/SetEnchantmentsFunction$Serializer; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/storage/loot/functions/SetEnchantmentsFunction$Builder; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/storage/loot/functions/SetContainerLootTable; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/storage/loot/functions/SetContainerLootTable$Serializer; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/storage/loot/functions/SetContainerContents; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/storage/loot/functions/SetContainerContents$Serializer; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/storage/loot/functions/SetContainerContents$Builder; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/storage/loot/functions/SetBannerPatternFunction; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/storage/loot/functions/SetBannerPatternFunction$Serializer; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/storage/loot/functions/SetBannerPatternFunction$Builder; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/storage/loot/functions/SetAttributesFunction; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/storage/loot/functions/SetAttributesFunction$Serializer; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/storage/loot/functions/SetAttributesFunction$ModifierBuilder; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/storage/loot/functions/SetAttributesFunction$Modifier; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/storage/loot/functions/SetAttributesFunction$Builder; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/storage/loot/functions/SetAttributesFunction$1; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/storage/loot/functions/LootItemFunctions; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/storage/loot/functions/LootItemFunctionType; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/storage/loot/functions/LootItemFunction; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/storage/loot/functions/LootItemFunction$Builder; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/storage/loot/functions/LootItemConditionalFunction; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/storage/loot/functions/LootItemConditionalFunction$Serializer; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/storage/loot/functions/LootItemConditionalFunction$DummyBuilder; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/storage/loot/functions/LootItemConditionalFunction$Builder; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/storage/loot/functions/LimitCount; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/storage/loot/functions/LimitCount$Serializer; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/storage/loot/functions/FunctionUserBuilder; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/storage/loot/functions/FunctionReference; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/storage/loot/functions/FunctionReference$Serializer; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/storage/loot/functions/FillPlayerHead; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/storage/loot/functions/FillPlayerHead$Serializer; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/storage/loot/functions/ExplorationMapFunction; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/storage/loot/functions/ExplorationMapFunction$Serializer; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/storage/loot/functions/ExplorationMapFunction$Builder; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/storage/loot/functions/EnchantWithLevelsFunction; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/storage/loot/functions/EnchantWithLevelsFunction$Serializer; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/storage/loot/functions/EnchantWithLevelsFunction$Builder; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/storage/loot/functions/EnchantRandomlyFunction; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/storage/loot/functions/EnchantRandomlyFunction$Serializer; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/storage/loot/functions/EnchantRandomlyFunction$Builder; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/storage/loot/functions/CopyNbtFunction; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/storage/loot/functions/CopyNbtFunction$Serializer; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/storage/loot/functions/CopyNbtFunction$MergeStrategy; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/storage/loot/functions/CopyNbtFunction$MergeStrategy$3; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/storage/loot/functions/CopyNbtFunction$MergeStrategy$2; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/storage/loot/functions/CopyNbtFunction$MergeStrategy$1; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/storage/loot/functions/CopyNbtFunction$CopyOperation; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/storage/loot/functions/CopyNbtFunction$Builder; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/storage/loot/functions/CopyNameFunction; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/storage/loot/functions/CopyNameFunction$Serializer; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/storage/loot/functions/CopyNameFunction$NameSource; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/storage/loot/functions/CopyBlockState; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/storage/loot/functions/CopyBlockState$Serializer; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/storage/loot/functions/CopyBlockState$Builder; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/storage/loot/functions/ApplyExplosionDecay; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/storage/loot/functions/ApplyExplosionDecay$Serializer; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/storage/loot/functions/ApplyBonusCount; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/storage/loot/functions/ApplyBonusCount$UniformBonusCount; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/storage/loot/functions/ApplyBonusCount$Serializer; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/storage/loot/functions/ApplyBonusCount$OreDrops; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/storage/loot/functions/ApplyBonusCount$FormulaDeserializer; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/storage/loot/functions/ApplyBonusCount$Formula; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/storage/loot/functions/ApplyBonusCount$BinomialWithBonusCount; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/storage/loot/functions/SmeltItemFunction; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/storage/loot/functions/SmeltItemFunction$Serializer; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/storage/loot/functions/LootingEnchantFunction; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/storage/loot/functions/LootingEnchantFunction$Serializer; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/storage/loot/functions/LootingEnchantFunction$Builder; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/storage/loot/entries/package-info; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/storage/loot/entries/TagEntry; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/storage/loot/entries/TagEntry$Serializer; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/storage/loot/entries/TagEntry$1; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/storage/loot/entries/SequentialEntry; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/storage/loot/entries/SequentialEntry$Builder; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/storage/loot/entries/LootTableReference; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/storage/loot/entries/LootTableReference$Serializer; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/storage/loot/entries/LootPoolSingletonContainer; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/storage/loot/entries/LootPoolSingletonContainer$Serializer; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/storage/loot/entries/LootPoolSingletonContainer$EntryConstructor; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/storage/loot/entries/LootPoolSingletonContainer$EntryBase; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/storage/loot/entries/LootPoolSingletonContainer$DummyBuilder; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/storage/loot/entries/LootPoolSingletonContainer$Builder; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/storage/loot/entries/LootPoolSingletonContainer$1; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/storage/loot/entries/LootPoolEntryType; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/storage/loot/entries/LootPoolEntryContainer; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/storage/loot/entries/LootPoolEntryContainer$Serializer; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/storage/loot/entries/LootPoolEntryContainer$Builder; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/storage/loot/entries/LootPoolEntry; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/storage/loot/entries/LootPoolEntries; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/storage/loot/entries/LootItem; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/storage/loot/entries/LootItem$Serializer; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/storage/loot/entries/EntryGroup; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/storage/loot/entries/EntryGroup$Builder; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/storage/loot/entries/EmptyLootItem; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/storage/loot/entries/EmptyLootItem$Serializer; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/storage/loot/entries/DynamicLoot; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/storage/loot/entries/DynamicLoot$Serializer; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/storage/loot/entries/CompositeEntryBase; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/storage/loot/entries/CompositeEntryBase$CompositeEntryConstructor; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/storage/loot/entries/CompositeEntryBase$1; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/storage/loot/entries/ComposableEntryContainer; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/storage/loot/entries/AlternativesEntry; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/storage/loot/entries/AlternativesEntry$Builder; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/storage/loot/ValidationContext; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/storage/loot/SerializerType; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/storage/loot/Serializer; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/storage/loot/LootDataResolver; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/storage/loot/LootDataId; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/storage/loot/LootContextUser; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/storage/loot/IntRange; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/storage/loot/IntRange$Serializer; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/storage/loot/IntRange$IntLimiter; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/storage/loot/IntRange$IntChecker; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/storage/loot/GsonAdapterFactory; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/storage/loot/GsonAdapterFactory$JsonAdapter; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/storage/loot/GsonAdapterFactory$InlineSerializer; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/storage/loot/GsonAdapterFactory$Builder; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/storage/loot/Deserializers; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/storage/loot/BuiltInLootTables; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/storage/loot/LootTable; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/storage/loot/LootTable$Serializer; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/storage/loot/LootTable$Builder; +[13:03:42] [main/DEBUG]: Transforming class Lnet/minecraft/world/level/storage/loot/LootPool; +[13:03:42] [main/DEBUG]: Transforming net/minecraft/world/level/storage/loot/LootPool FIELD f_79028_ to access PRIVATE and REMOVEFINAL +[13:03:42] [main/DEBUG]: Transforming net/minecraft/world/level/storage/loot/LootPool FIELD f_79029_ to access PRIVATE and REMOVEFINAL +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/storage/loot/LootPool$Serializer; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/storage/loot/LootPool$Builder; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/storage/loot/LootParams; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/storage/loot/LootParams$DynamicDrop; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/storage/loot/LootParams$Builder; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/storage/loot/LootDataType; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/storage/loot/LootDataType$Validator; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/storage/loot/LootDataManager; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/storage/loot/LootDataManager$FunctionSequence; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/storage/loot/LootDataManager$CompositePredicate; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/storage/loot/LootDataManager$1; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/storage/loot/LootContext; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/storage/loot/LootContext$VisitedEntry; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/storage/loot/LootContext$EntityTarget; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/storage/loot/LootContext$EntityTarget$Serializer; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/storage/loot/LootContext$Builder; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/storage/WritableLevelData; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/storage/WorldData; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/storage/ServerLevelData; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/storage/LevelVersion; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/storage/LevelStorageException; +[13:03:42] [main/DEBUG]: Transforming class Lnet/minecraft/world/level/storage/LevelResource; +[13:03:42] [main/DEBUG]: Transforming net/minecraft/world/level/storage/LevelResource METHOD (Ljava/lang/String;)V to access PUBLIC and LEAVE +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/storage/LevelData; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/storage/DerivedLevelData; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/storage/DataVersion; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/storage/CommandStorage; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/storage/CommandStorage$Container; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/storage/PrimaryLevelData; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/storage/PrimaryLevelData$SpecialWorldProperty; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/storage/PlayerDataStorage; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/storage/LevelSummary; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/storage/LevelSummary$SymlinkLevelSummary; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/storage/LevelSummary$BackupStatus; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/storage/LevelStorageSource; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/storage/LevelStorageSource$LevelStorageAccess; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/storage/LevelStorageSource$LevelStorageAccess$2; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/storage/LevelStorageSource$LevelStorageAccess$1; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/storage/LevelStorageSource$LevelDirectory; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/storage/LevelStorageSource$LevelCandidates; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/storage/DimensionDataStorage; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/saveddata/package-info; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/saveddata/maps/package-info; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/saveddata/maps/MapItemSavedData; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/saveddata/maps/MapItemSavedData$MapPatch; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/saveddata/maps/MapItemSavedData$HoldingPlayer; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/saveddata/maps/MapIndex; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/saveddata/maps/MapFrame; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/saveddata/maps/MapBanner; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/saveddata/maps/MapBanner$1; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/saveddata/maps/MapDecoration; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/saveddata/maps/MapDecoration$Type; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/saveddata/SavedData; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/redstone/package-info; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/redstone/Redstone; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/redstone/NeighborUpdater; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/redstone/InstantNeighborUpdater; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/redstone/CollectingNeighborUpdater; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/redstone/CollectingNeighborUpdater$SimpleNeighborUpdate; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/redstone/CollectingNeighborUpdater$ShapeUpdate; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/redstone/CollectingNeighborUpdater$NeighborUpdates; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/redstone/CollectingNeighborUpdater$MultiNeighborUpdate; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/redstone/CollectingNeighborUpdater$FullNeighborUpdate; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/portal/package-info; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/portal/PortalInfo; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/portal/PortalShape; +[13:03:42] [main/DEBUG]: Transforming class Lnet/minecraft/world/level/portal/PortalForcer; +[13:03:42] [main/DEBUG]: Transforming net/minecraft/world/level/portal/PortalForcer FIELD f_77648_ to access PROTECTED and LEAVE +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/pathfinder/package-info; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/pathfinder/Target; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/pathfinder/SwimNodeEvaluator; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/pathfinder/PathFinder; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/pathfinder/PathComputationType; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/pathfinder/Path; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/pathfinder/NodeEvaluator; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/pathfinder/Node; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/pathfinder/FlyNodeEvaluator; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/pathfinder/BinaryHeap; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/pathfinder/WalkNodeEvaluator; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/pathfinder/BlockPathTypes; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/pathfinder/AmphibiousNodeEvaluator; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/package-info; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/material/package-info; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/material/WaterFluid; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/material/WaterFluid$Source; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/material/WaterFluid$Flowing; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/material/PushReaction; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/material/MapColor; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/material/MapColor$Brightness; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/material/FogType; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/material/Fluids; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/material/EmptyFluid; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/material/LavaFluid; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/material/LavaFluid$Source; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/material/LavaFluid$Flowing; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/material/FluidState; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/material/Fluid; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/material/FlowingFluid; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/material/FlowingFluid$1; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/lighting/package-info; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/lighting/SpatialLongSet; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/lighting/SpatialLongSet$InternalMap; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/lighting/SkyLightSectionStorage; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/lighting/SkyLightSectionStorage$SkyDataLayerStorageMap; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/lighting/SkyLightEngine; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/lighting/SkyLightEngine$1; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/lighting/LightEventListener; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/lighting/LeveledPriorityQueue; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/lighting/LeveledPriorityQueue$1; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/lighting/LevelLightEngine; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/lighting/LayerLightSectionStorage; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/lighting/LayerLightSectionStorage$SectionType; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/lighting/LayerLightSectionStorage$SectionState; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/lighting/LayerLightEventListener; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/lighting/LayerLightEventListener$DummyLightLayerEventListener; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/lighting/DynamicGraphMinFixedPoint; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/lighting/DynamicGraphMinFixedPoint$1; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/lighting/DataLayerStorageMap; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/lighting/ChunkSkyLightSources; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/lighting/BlockLightSectionStorage; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/lighting/BlockLightSectionStorage$BlockDataLayerStorageMap; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/lighting/LightEngine; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/lighting/LightEngine$QueueEntry; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/lighting/BlockLightEngine; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/synth/package-info; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/synth/SimplexNoise; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/synth/PerlinSimplexNoise; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/synth/PerlinNoise; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/synth/NormalNoise; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/synth/NormalNoise$NoiseParameters; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/synth/NoiseUtils; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/synth/ImprovedNoise; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/synth/BlendedNoise; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/structure/templatesystem/rule/blockentity/package-info; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/structure/templatesystem/rule/blockentity/RuleBlockEntityModifierType; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/structure/templatesystem/rule/blockentity/RuleBlockEntityModifier; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/structure/templatesystem/rule/blockentity/Passthrough; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/structure/templatesystem/rule/blockentity/Clear; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/structure/templatesystem/rule/blockentity/AppendStatic; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/structure/templatesystem/rule/blockentity/AppendLoot; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/structure/templatesystem/package-info; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/structure/templatesystem/TagMatchTest; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager$Source; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager$InputStreamOpener; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureProcessorType; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureProcessorList; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructurePlaceSettings; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/structure/templatesystem/RuleTestType; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/structure/templatesystem/RuleTest; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/structure/templatesystem/RuleProcessor; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/structure/templatesystem/RandomBlockStateMatchTest; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/structure/templatesystem/RandomBlockMatchTest; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/structure/templatesystem/ProtectedBlockProcessor; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/structure/templatesystem/ProcessorRule; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/structure/templatesystem/PosRuleTestType; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/structure/templatesystem/PosRuleTest; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/structure/templatesystem/PosAlwaysTrueTest; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/structure/templatesystem/NopProcessor; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/structure/templatesystem/LinearPosTest; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/structure/templatesystem/LavaSubmergedBlockProcessor; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/structure/templatesystem/JigsawReplacementProcessor; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/structure/templatesystem/GravityProcessor; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/structure/templatesystem/CappedProcessor; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/structure/templatesystem/BlockStateMatchTest; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/structure/templatesystem/BlockRotProcessor; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/structure/templatesystem/BlockMatchTest; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/structure/templatesystem/BlockIgnoreProcessor; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/structure/templatesystem/BlockAgeProcessor; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/structure/templatesystem/BlackstoneReplaceProcessor; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/structure/templatesystem/AxisAlignedLinearPosTest; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/structure/templatesystem/AlwaysTrueTest; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate$StructureEntityInfo; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate$StructureBlockInfo; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate$SimplePalette; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate$Palette; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate$1; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureProcessor; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/structure/structures/package-info; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/structure/structures/WoodlandMansionStructure; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/structure/structures/WoodlandMansionPieces; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/structure/structures/WoodlandMansionPieces$WoodlandMansionPiece; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/structure/structures/WoodlandMansionPieces$ThirdFloorRoomCollection; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/structure/structures/WoodlandMansionPieces$SimpleGrid; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/structure/structures/WoodlandMansionPieces$SecondFloorRoomCollection; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/structure/structures/WoodlandMansionPieces$PlacementData; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/structure/structures/WoodlandMansionPieces$MansionPiecePlacer; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/structure/structures/WoodlandMansionPieces$MansionGrid; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/structure/structures/WoodlandMansionPieces$FloorRoomCollection; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/structure/structures/WoodlandMansionPieces$FirstFloorRoomCollection; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/structure/structures/SwampHutStructure; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/structure/structures/SwampHutPiece; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/structure/structures/StrongholdStructure; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/structure/structures/StrongholdPieces; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$Turn; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$StrongholdPiece; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$StrongholdPiece$SmallDoorType; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$StraightStairsDown; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$Straight; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$StartPiece; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$StairsDown; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$SmoothStoneSelector; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$RoomCrossing; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$RightTurn; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$PrisonHall; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$PortalRoom; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$PieceWeight; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$Library; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$LeftTurn; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$FiveCrossing; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$FillerCorridor; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$ChestCorridor; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$3; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$2; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$1; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/structure/structures/ShipwreckStructure; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/structure/structures/ShipwreckPieces; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/structure/structures/ShipwreckPieces$ShipwreckPiece; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/structure/structures/RuinedPortalStructure; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/structure/structures/RuinedPortalStructure$Setup; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/structure/structures/RuinedPortalPiece; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/structure/structures/RuinedPortalPiece$VerticalPlacement; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/structure/structures/RuinedPortalPiece$Properties; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/structure/structures/OceanRuinStructure; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/structure/structures/OceanRuinStructure$Type; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/structure/structures/OceanRuinPieces; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/structure/structures/OceanRuinPieces$OceanRuinPiece; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/structure/structures/OceanRuinPieces$1; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/structure/structures/OceanMonumentStructure; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$RoomDefinition; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$OceanMonumentWingRoom; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$OceanMonumentSimpleTopRoom; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$OceanMonumentSimpleRoom; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$OceanMonumentPiece; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$OceanMonumentPenthouse; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$OceanMonumentEntryRoom; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$OceanMonumentDoubleZRoom; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$OceanMonumentDoubleYZRoom; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$OceanMonumentDoubleYRoom; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$OceanMonumentDoubleXYRoom; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$OceanMonumentDoubleXRoom; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$OceanMonumentCoreRoom; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$MonumentRoomFitter; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$MonumentBuilding; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$FitSimpleTopRoom; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$FitSimpleRoom; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$FitDoubleZRoom; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$FitDoubleYZRoom; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$FitDoubleYRoom; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$FitDoubleXYRoom; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$FitDoubleXRoom; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$1; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/structure/structures/NetherFossilStructure; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/structure/structures/NetherFossilPieces; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/structure/structures/NetherFossilPieces$NetherFossilPiece; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/structure/structures/NetherFortressStructure; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$StartPiece; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$StairsRoom; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$RoomCrossing; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$PieceWeight; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$NetherBridgePiece; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$MonsterThrone; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$CastleStalkRoom; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$CastleSmallCorridorRightTurnPiece; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$CastleSmallCorridorPiece; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$CastleSmallCorridorLeftTurnPiece; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$CastleSmallCorridorCrossingPiece; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$CastleEntrance; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$CastleCorridorTBalconyPiece; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$CastleCorridorStairsPiece; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$BridgeStraight; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$BridgeEndFiller; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$BridgeCrossing; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$1; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/structure/structures/MineshaftStructure; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/structure/structures/MineshaftStructure$Type; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/structure/structures/MineshaftPieces; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/structure/structures/MineshaftPieces$MineShaftStairs; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/structure/structures/MineshaftPieces$MineShaftRoom; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/structure/structures/MineshaftPieces$MineShaftPiece; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/structure/structures/MineshaftPieces$MineShaftCrossing; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/structure/structures/MineshaftPieces$MineShaftCorridor; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/structure/structures/MineshaftPieces$1; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/structure/structures/JungleTempleStructure; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/structure/structures/JungleTemplePiece; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/structure/structures/JungleTemplePiece$MossStoneSelector; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/structure/structures/JigsawStructure; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/structure/structures/JigsawStructure$1; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/structure/structures/IglooStructure; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/structure/structures/IglooPieces; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/structure/structures/IglooPieces$IglooPiece; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/structure/structures/EndCityStructure; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/structure/structures/EndCityPieces; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/structure/structures/EndCityPieces$SectionGenerator; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/structure/structures/EndCityPieces$EndCityPiece; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/structure/structures/EndCityPieces$4; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/structure/structures/EndCityPieces$3; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/structure/structures/EndCityPieces$2; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/structure/structures/EndCityPieces$1; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/structure/structures/DesertPyramidStructure; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/structure/structures/DesertPyramidPiece; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/structure/structures/BuriedTreasureStructure; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/structure/structures/BuriedTreasurePieces; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/structure/structures/BuriedTreasurePieces$BuriedTreasurePiece; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/structure/pools/package-info; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/structure/pools/StructureTemplatePool; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/structure/pools/StructureTemplatePool$Projection; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/structure/pools/StructurePoolElementType; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/structure/pools/StructurePoolElement; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/structure/pools/SinglePoolElement; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/structure/pools/ListPoolElement; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/structure/pools/LegacySinglePoolElement; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/structure/pools/JigsawPlacement; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/structure/pools/JigsawPlacement$Placer; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/structure/pools/JigsawPlacement$PieceState; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/structure/pools/JigsawJunction; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/structure/pools/FeaturePoolElement; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/structure/pools/EmptyPoolElement; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/structure/placement/package-info; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/structure/placement/StructurePlacementType; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/structure/placement/StructurePlacement; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/structure/placement/StructurePlacement$FrequencyReductionMethod; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/structure/placement/StructurePlacement$FrequencyReducer; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/structure/placement/StructurePlacement$ExclusionZone; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/structure/placement/RandomSpreadType; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/structure/placement/RandomSpreadType$1; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/structure/placement/RandomSpreadStructurePlacement; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/structure/placement/ConcentricRingsStructurePlacement; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/structure/pieces/package-info; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/structure/pieces/StructurePiecesBuilder; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/structure/pieces/StructurePieceType; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/structure/pieces/StructurePieceType$StructureTemplateType; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/structure/pieces/StructurePieceType$ContextlessType; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/structure/pieces/StructurePieceSerializationContext; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/structure/pieces/PiecesContainer; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/structure/pieces/PieceGeneratorSupplier; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/structure/pieces/PieceGeneratorSupplier$Context; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/structure/pieces/PieceGenerator; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/structure/pieces/PieceGenerator$Context; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/structure/package-info; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/structure/TerrainAdjustment; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/structure/TemplateStructurePiece; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/structure/StructureType; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/structure/StructureSpawnOverride; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/structure/StructureSpawnOverride$BoundingBoxType; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/structure/StructureSet; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/structure/StructureSet$StructureSelectionEntry; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/structure/StructurePieceAccessor; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/structure/StructureFeatureIndexSavedData; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/structure/StructureCheckResult; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/structure/StructureCheck; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/structure/SinglePieceStructure; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/structure/SinglePieceStructure$PieceConstructor; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/structure/ScatteredFeaturePiece; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/structure/PostPlacementProcessor; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/structure/PoolElementStructurePiece; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/structure/LegacyStructureDataHandler; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/structure/BuiltinStructures; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/structure/BuiltinStructureSets; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/structure/BoundingBox; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/structure/BoundingBox$1; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/structure/StructureStart; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/structure/StructurePiece; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/structure/StructurePiece$BlockSelector; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/structure/StructurePiece$1; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/structure/Structure; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/structure/Structure$StructureSettings; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/structure/Structure$GenerationStub; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/structure/Structure$GenerationContext; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/presets/package-info; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/presets/WorldPresets; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/presets/WorldPresets$Bootstrap; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/presets/WorldPreset; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/placement/package-info; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/placement/SurfaceWaterDepthFilter; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/placement/SurfaceRelativeThresholdFilter; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/placement/RepeatingPlacement; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/placement/RarityFilter; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/placement/RandomOffsetPlacement; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/placement/PlacementModifierType; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/placement/PlacementModifier; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/placement/PlacementFilter; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/placement/PlacementContext; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/placement/PlacedFeature; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/placement/NoiseThresholdCountPlacement; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/placement/NoiseBasedCountPlacement; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/placement/InSquarePlacement; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/placement/HeightmapPlacement; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/placement/HeightRangePlacement; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/placement/EnvironmentScanPlacement; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/placement/CountPlacement; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/placement/CountOnEveryLayerPlacement; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/placement/CaveSurface; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/placement/CarvingMaskPlacement; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/placement/BlockPredicateFilter; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/placement/BiomeFilter; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/package-info; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/material/package-info; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/material/WorldGenMaterialRule; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/material/MaterialRuleList; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/heightproviders/package-info; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/heightproviders/WeightedListHeight; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/heightproviders/VeryBiasedToBottomHeight; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/heightproviders/UniformHeight; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/heightproviders/TrapezoidHeight; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/heightproviders/HeightProviderType; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/heightproviders/HeightProvider; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/heightproviders/ConstantHeight; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/heightproviders/BiasedToBottomHeight; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/flat/package-info; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/flat/FlatLevelGeneratorSettings; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/flat/FlatLevelGeneratorPresets; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/flat/FlatLevelGeneratorPresets$Bootstrap; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/flat/FlatLevelGeneratorPreset; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/flat/FlatLayerInfo; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/feature/trunkplacers/package-info; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/feature/trunkplacers/UpwardsBranchingTrunkPlacer; +[13:03:42] [main/DEBUG]: Transforming class Lnet/minecraft/world/level/levelgen/feature/trunkplacers/TrunkPlacerType; +[13:03:42] [main/DEBUG]: Transforming net/minecraft/world/level/levelgen/feature/trunkplacers/TrunkPlacerType METHOD (Lcom/mojang/serialization/Codec;)V to access PUBLIC and LEAVE +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/feature/trunkplacers/StraightTrunkPlacer; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/feature/trunkplacers/MegaJungleTrunkPlacer; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/feature/trunkplacers/GiantTrunkPlacer; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/feature/trunkplacers/ForkingTrunkPlacer; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/feature/trunkplacers/FancyTrunkPlacer; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/feature/trunkplacers/FancyTrunkPlacer$FoliageCoords; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/feature/trunkplacers/DarkOakTrunkPlacer; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/feature/trunkplacers/CherryTrunkPlacer; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/feature/trunkplacers/BendingTrunkPlacer; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/feature/trunkplacers/TrunkPlacer; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/feature/treedecorators/package-info; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/feature/treedecorators/TrunkVineDecorator; +[13:03:42] [main/DEBUG]: Transforming class Lnet/minecraft/world/level/levelgen/feature/treedecorators/TreeDecoratorType; +[13:03:42] [main/DEBUG]: Transforming net/minecraft/world/level/levelgen/feature/treedecorators/TreeDecoratorType METHOD (Lcom/mojang/serialization/Codec;)V to access PUBLIC and LEAVE +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/feature/treedecorators/TreeDecorator; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/feature/treedecorators/TreeDecorator$Context; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/feature/treedecorators/LeaveVineDecorator; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/feature/treedecorators/CocoaDecorator; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/feature/treedecorators/BeehiveDecorator; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/feature/treedecorators/AttachedToLeavesDecorator; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/feature/treedecorators/AlterGroundDecorator; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/feature/stateproviders/package-info; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/feature/stateproviders/WeightedStateProvider; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/feature/stateproviders/SimpleStateProvider; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/feature/stateproviders/RuleBasedBlockStateProvider; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/feature/stateproviders/RuleBasedBlockStateProvider$Rule; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/feature/stateproviders/RotatedBlockProvider; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/feature/stateproviders/RandomizedIntStateProvider; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/feature/stateproviders/NoiseThresholdProvider; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/feature/stateproviders/NoiseProvider; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/feature/stateproviders/NoiseBasedStateProvider; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/feature/stateproviders/DualNoiseProvider; +[13:03:42] [main/DEBUG]: Transforming class Lnet/minecraft/world/level/levelgen/feature/stateproviders/BlockStateProviderType; +[13:03:42] [main/DEBUG]: Transforming net/minecraft/world/level/levelgen/feature/stateproviders/BlockStateProviderType METHOD (Lcom/mojang/serialization/Codec;)V to access PUBLIC and LEAVE +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/feature/stateproviders/BlockStateProvider; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/feature/rootplacers/package-info; +[13:03:42] [main/DEBUG]: Transforming class Lnet/minecraft/world/level/levelgen/feature/rootplacers/RootPlacerType; +[13:03:42] [main/DEBUG]: Transforming net/minecraft/world/level/levelgen/feature/rootplacers/RootPlacerType METHOD (Lcom/mojang/serialization/Codec;)V to access PUBLIC and LEAVE +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/feature/rootplacers/RootPlacer; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/feature/rootplacers/MangroveRootPlacer; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/feature/rootplacers/MangroveRootPlacement; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/feature/rootplacers/AboveRootPlacement; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/feature/package-info; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/feature/foliageplacers/package-info; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/feature/foliageplacers/SpruceFoliagePlacer; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/feature/foliageplacers/RandomSpreadFoliagePlacer; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/feature/foliageplacers/PineFoliagePlacer; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/feature/foliageplacers/MegaPineFoliagePlacer; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/feature/foliageplacers/MegaJungleFoliagePlacer; +[13:03:42] [main/DEBUG]: Transforming class Lnet/minecraft/world/level/levelgen/feature/foliageplacers/FoliagePlacerType; +[13:03:42] [main/DEBUG]: Transforming net/minecraft/world/level/levelgen/feature/foliageplacers/FoliagePlacerType METHOD (Lcom/mojang/serialization/Codec;)V to access PUBLIC and LEAVE +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/feature/foliageplacers/FoliagePlacer; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/feature/foliageplacers/FoliagePlacer$FoliageSetter; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/feature/foliageplacers/FoliagePlacer$FoliageAttachment; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/feature/foliageplacers/FancyFoliagePlacer; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/feature/foliageplacers/DarkOakFoliagePlacer; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/feature/foliageplacers/CherryFoliagePlacer; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/feature/foliageplacers/BushFoliagePlacer; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/feature/foliageplacers/BlobFoliagePlacer; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/feature/foliageplacers/AcaciaFoliagePlacer; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/feature/featuresize/package-info; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/feature/featuresize/TwoLayersFeatureSize; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/feature/featuresize/ThreeLayersFeatureSize; +[13:03:42] [main/DEBUG]: Transforming class Lnet/minecraft/world/level/levelgen/feature/featuresize/FeatureSizeType; +[13:03:42] [main/DEBUG]: Transforming net/minecraft/world/level/levelgen/feature/featuresize/FeatureSizeType METHOD (Lcom/mojang/serialization/Codec;)V to access PUBLIC and LEAVE +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/feature/featuresize/FeatureSize; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/feature/configurations/package-info; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/feature/configurations/VegetationPatchConfiguration; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/feature/configurations/UnderwaterMagmaConfiguration; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/feature/configurations/TwistingVinesConfig; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/feature/configurations/SpringConfiguration; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/feature/configurations/SpikeConfiguration; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/feature/configurations/SimpleRandomFeatureConfiguration; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/feature/configurations/SimpleBlockConfiguration; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/feature/configurations/SculkPatchConfiguration; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/feature/configurations/RootSystemConfiguration; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/feature/configurations/ReplaceSphereConfiguration; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/feature/configurations/ReplaceBlockConfiguration; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/feature/configurations/RandomPatchConfiguration; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/feature/configurations/RandomFeatureConfiguration; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/feature/configurations/RandomBooleanFeatureConfiguration; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/feature/configurations/ProbabilityFeatureConfiguration; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/feature/configurations/PointedDripstoneConfiguration; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/feature/configurations/OreConfiguration; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/feature/configurations/OreConfiguration$TargetBlockState; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/feature/configurations/NoneFeatureConfiguration; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/feature/configurations/NetherForestVegetationConfig; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/feature/configurations/MultifaceGrowthConfiguration; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/feature/configurations/LayerConfiguration; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/feature/configurations/LargeDripstoneConfiguration; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/feature/configurations/HugeMushroomFeatureConfiguration; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/feature/configurations/GeodeConfiguration; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/feature/configurations/FeatureConfiguration; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/feature/configurations/EndGatewayConfiguration; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/feature/configurations/DripstoneClusterConfiguration; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/feature/configurations/DiskConfiguration; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/feature/configurations/DeltaFeatureConfiguration; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/feature/configurations/CountConfiguration; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/feature/configurations/ColumnFeatureConfiguration; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/feature/configurations/BlockStateConfiguration; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/feature/configurations/BlockPileConfiguration; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/feature/configurations/BlockColumnConfiguration; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/feature/configurations/BlockColumnConfiguration$Layer; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/feature/configurations/TreeConfiguration; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/feature/configurations/TreeConfiguration$TreeConfigurationBuilder; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/feature/WeightedPlacedFeature; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/feature/WeepingVinesFeature; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/feature/WaterloggedVegetationPatchFeature; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/feature/VoidStartPlatformFeature; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/feature/VinesFeature; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/feature/VegetationPatchFeature; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/feature/UnderwaterMagmaFeature; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/feature/TwistingVinesFeature; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/feature/TreeFeature; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/feature/TreeFeature$1; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/feature/SpringFeature; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/feature/SpikeFeature; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/feature/SpikeFeature$SpikeCacheLoader; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/feature/SpikeFeature$EndSpike; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/feature/SnowAndFreezeFeature; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/feature/SimpleRandomSelectorFeature; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/feature/SimpleBlockFeature; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/feature/SeagrassFeature; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/feature/SeaPickleFeature; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/feature/SculkPatchFeature; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/feature/ScatteredOreFeature; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/feature/RootSystemFeature; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/feature/ReplaceBlockFeature; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/feature/ReplaceBlobsFeature; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/feature/RandomSelectorFeature; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/feature/RandomPatchFeature; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/feature/RandomBooleanSelectorFeature; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/feature/PointedDripstoneFeature; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/feature/OreFeature; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/feature/NoOpFeature; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/feature/NetherForestVegetationFeature; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/feature/MultifaceGrowthFeature; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/feature/LargeDripstoneFeature; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/feature/LargeDripstoneFeature$WindOffsetter; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/feature/LargeDripstoneFeature$LargeDripstone; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/feature/LakeFeature; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/feature/LakeFeature$Configuration; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/feature/KelpFeature; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/feature/IcebergFeature; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/feature/IceSpikeFeature; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/feature/HugeRedMushroomFeature; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/feature/HugeFungusFeature; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/feature/HugeFungusConfiguration; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/feature/HugeBrownMushroomFeature; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/feature/GlowstoneFeature; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/feature/GeodeFeature; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/feature/FossilFeatureConfiguration; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/feature/FossilFeature; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/feature/FillLayerFeature; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/feature/FeaturePlaceContext; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/feature/FeatureCountTracker; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/feature/FeatureCountTracker$LevelData; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/feature/FeatureCountTracker$FeatureData; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/feature/FeatureCountTracker$1; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/feature/EndPodiumFeature; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/feature/EndIslandFeature; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/feature/EndGatewayFeature; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/feature/DripstoneUtils; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/feature/DripstoneClusterFeature; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/feature/DiskFeature; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/feature/DesertWellFeature; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/feature/DeltaFeature; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/feature/CoralTreeFeature; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/feature/CoralMushroomFeature; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/feature/CoralFeature; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/feature/CoralClawFeature; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/feature/ConfiguredFeature; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/feature/ChorusPlantFeature; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/feature/BonusChestFeature; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/feature/BlueIceFeature; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/feature/BlockPileFeature; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/feature/BlockColumnFeature; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/feature/BlockBlobFeature; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/feature/BasaltPillarFeature; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/feature/BasaltColumnsFeature; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/feature/BambooFeature; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/feature/AbstractHugeMushroomFeature; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/feature/MonsterRoomFeature; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/feature/Feature; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/carver/package-info; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/carver/WorldCarver; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/carver/WorldCarver$CarveSkipChecker; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/carver/NetherWorldCarver; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/carver/ConfiguredWorldCarver; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/carver/CaveWorldCarver; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/carver/CaveCarverConfiguration; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/carver/CarvingContext; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/carver/CarverDebugSettings; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/carver/CarverConfiguration; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/carver/CanyonWorldCarver; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/carver/CanyonCarverConfiguration; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/carver/CanyonCarverConfiguration$CanyonShapeConfiguration; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/blockpredicates/package-info; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/blockpredicates/WouldSurvivePredicate; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/blockpredicates/TrueBlockPredicate; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/blockpredicates/StateTestingPredicate; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/blockpredicates/SolidPredicate; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/blockpredicates/ReplaceablePredicate; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/blockpredicates/NotPredicate; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/blockpredicates/MatchingFluidsPredicate; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/blockpredicates/MatchingBlocksPredicate; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/blockpredicates/MatchingBlockTagPredicate; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/blockpredicates/InsideWorldBoundsPredicate; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/blockpredicates/HasSturdyFacePredicate; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/blockpredicates/CombiningPredicate; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/blockpredicates/BlockPredicateType; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/blockpredicates/BlockPredicate; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/blockpredicates/AnyOfPredicate; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/blockpredicates/AllOfPredicate; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/blending/package-info; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/blending/BlendingData; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/blending/BlendingData$HeightConsumer; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/blending/BlendingData$DensityConsumer; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/blending/BlendingData$BiomeConsumer; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/blending/Blender; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/blending/Blender$DistanceGetter; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/blending/Blender$CellValueGetter; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/blending/Blender$BlendingOutput; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/blending/Blender$1; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/XoroshiroRandomSource; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/XoroshiroRandomSource$XoroshiroPositionalRandomFactory; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/Xoroshiro128PlusPlus; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/WorldgenRandom; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/WorldgenRandom$Algorithm; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/WorldOptions; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/WorldGenerationContext; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/WorldGenSettings; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/WorldDimensions; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/WorldDimensions$Complete; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/WorldDimensions$1Entry; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/VerticalAnchor; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/VerticalAnchor$BelowTop; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/VerticalAnchor$Absolute; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/VerticalAnchor$AboveBottom; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/ThreadSafeLegacyRandomSource; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/SurfaceSystem; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/SurfaceSystem$1; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/SurfaceRules; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/SurfaceRules$YConditionSource; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/SurfaceRules$YConditionSource$1YCondition; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/SurfaceRules$WaterConditionSource; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/SurfaceRules$WaterConditionSource$1WaterCondition; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/SurfaceRules$VerticalGradientConditionSource; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/SurfaceRules$VerticalGradientConditionSource$1VerticalGradientCondition; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/SurfaceRules$TestRuleSource; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/SurfaceRules$TestRule; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/SurfaceRules$Temperature; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/SurfaceRules$SurfaceRule; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/SurfaceRules$StoneDepthCheck; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/SurfaceRules$StoneDepthCheck$1StoneDepthCondition; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/SurfaceRules$Steep; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/SurfaceRules$StateRule; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/SurfaceRules$SequenceRuleSource; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/SurfaceRules$SequenceRule; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/SurfaceRules$RuleSource; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/SurfaceRules$NotConditionSource; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/SurfaceRules$NotCondition; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/SurfaceRules$NoiseThresholdConditionSource; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/SurfaceRules$NoiseThresholdConditionSource$1NoiseThresholdCondition; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/SurfaceRules$LazyYCondition; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/SurfaceRules$LazyXZCondition; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/SurfaceRules$LazyCondition; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/SurfaceRules$Hole; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/SurfaceRules$Context; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/SurfaceRules$Context$TemperatureHelperCondition; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/SurfaceRules$Context$SteepMaterialCondition; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/SurfaceRules$Context$HoleCondition; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/SurfaceRules$Context$AbovePreliminarySurfaceCondition; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/SurfaceRules$ConditionSource; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/SurfaceRules$Condition; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/SurfaceRules$BlockRuleSource; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/SurfaceRules$BiomeConditionSource; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/SurfaceRules$BiomeConditionSource$1BiomeCondition; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/SurfaceRules$Bandlands; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/SurfaceRules$AbovePreliminarySurface; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/SingleThreadedRandomSource; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/RandomSupport; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/RandomSupport$Seed128bit; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/RandomState; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/RandomState$1NoiseWiringHelper; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/RandomState$1; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/PositionalRandomFactory; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/PatrolSpawner; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/OreVeinifier; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/OreVeinifier$VeinType; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/Noises; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/NoiseSettings; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/NoiseRouterData; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/NoiseRouterData$QuantizedSpaghettiRarity; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/NoiseRouter; +[13:03:42] [main/DEBUG]: Transforming class Lnet/minecraft/world/level/levelgen/NoiseGeneratorSettings; +[13:03:42] [main/DEBUG]: Transforming net/minecraft/world/level/levelgen/NoiseGeneratorSettings METHOD m_255186_(Lnet/minecraft/data/worldgen/BootstapContext;)Lnet/minecraft/world/level/levelgen/NoiseGeneratorSettings; to access PUBLIC and LEAVE +[13:03:42] [main/DEBUG]: Transforming net/minecraft/world/level/levelgen/NoiseGeneratorSettings METHOD m_255410_(Lnet/minecraft/data/worldgen/BootstapContext;)Lnet/minecraft/world/level/levelgen/NoiseGeneratorSettings; to access PUBLIC and LEAVE +[13:03:42] [main/DEBUG]: Transforming net/minecraft/world/level/levelgen/NoiseGeneratorSettings METHOD m_255226_(Lnet/minecraft/data/worldgen/BootstapContext;ZZ)Lnet/minecraft/world/level/levelgen/NoiseGeneratorSettings; to access PUBLIC and LEAVE +[13:03:42] [main/DEBUG]: Transforming net/minecraft/world/level/levelgen/NoiseGeneratorSettings METHOD m_255038_(Lnet/minecraft/data/worldgen/BootstapContext;)Lnet/minecraft/world/level/levelgen/NoiseGeneratorSettings; to access PUBLIC and LEAVE +[13:03:42] [main/DEBUG]: Transforming net/minecraft/world/level/levelgen/NoiseGeneratorSettings METHOD m_255230_(Lnet/minecraft/data/worldgen/BootstapContext;)Lnet/minecraft/world/level/levelgen/NoiseGeneratorSettings; to access PUBLIC and LEAVE +[13:03:42] [main/DEBUG]: Transforming net/minecraft/world/level/levelgen/NoiseGeneratorSettings METHOD m_64474_(Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; to access PUBLIC and LEAVE +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/NoiseChunk; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/NoiseChunk$NoiseInterpolator; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/NoiseChunk$NoiseChunkDensityFunction; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/NoiseChunk$FlatCache; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/NoiseChunk$CacheOnce; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/NoiseChunk$CacheAllInCell; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/NoiseChunk$Cache2D; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/NoiseChunk$BlockStateFiller; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/NoiseChunk$BlendOffset; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/NoiseChunk$BlendAlpha; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/NoiseChunk$2; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/NoiseChunk$1; +[13:03:42] [main/DEBUG]: Transforming class Lnet/minecraft/world/level/levelgen/NoiseBasedChunkGenerator; +[13:03:42] [main/DEBUG]: Transforming net/minecraft/world/level/levelgen/NoiseBasedChunkGenerator CLASS to access PUBLIC and REMOVEFINAL +[13:03:42] [main/DEBUG]: Transforming net/minecraft/world/level/levelgen/NoiseBasedChunkGenerator METHOD m_224239_(Lnet/minecraft/world/level/LevelHeightAccessor;Lnet/minecraft/world/level/levelgen/RandomState;IILorg/apache/commons/lang3/mutable/MutableObject;Ljava/util/function/Predicate;)Ljava/util/OptionalInt; to access PROTECTED and LEAVE +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/MarsagliaPolarGaussian; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/LegacyRandomSource; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/LegacyRandomSource$LegacyPositionalRandomFactory; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/Heightmap; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/Heightmap$Usage; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/Heightmap$Types; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/GeodeLayerSettings; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/GeodeCrackSettings; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/GeodeBlockSettings; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/GenerationStep; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/GenerationStep$Decoration; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/GenerationStep$Carving; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/FlatLevelSource; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/DensityFunctions; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/DensityFunctions$YClampedGradient; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/DensityFunctions$WeirdScaledSampler; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/DensityFunctions$WeirdScaledSampler$RarityValueMapper; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/DensityFunctions$TwoArgumentSimpleFunction; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/DensityFunctions$TwoArgumentSimpleFunction$Type; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/DensityFunctions$TransformerWithContext; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/DensityFunctions$Spline; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/DensityFunctions$Spline$Point; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/DensityFunctions$Spline$Coordinate; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/DensityFunctions$ShiftedNoise; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/DensityFunctions$ShiftNoise; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/DensityFunctions$ShiftB; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/DensityFunctions$ShiftA; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/DensityFunctions$Shift; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/DensityFunctions$RangeChoice; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/DensityFunctions$PureTransformer; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/DensityFunctions$Noise; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/DensityFunctions$MulOrAdd; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/DensityFunctions$MulOrAdd$Type; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/DensityFunctions$MarkerOrMarked; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/DensityFunctions$Marker; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/DensityFunctions$Marker$Type; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/DensityFunctions$Mapped; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/DensityFunctions$Mapped$Type; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/DensityFunctions$HolderHolder; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/DensityFunctions$EndIslandDensityFunction; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/DensityFunctions$Constant; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/DensityFunctions$Clamp; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/DensityFunctions$BlendOffset; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/DensityFunctions$BlendDensity; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/DensityFunctions$BlendAlpha; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/DensityFunctions$BeardifierOrMarker; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/DensityFunctions$BeardifierMarker; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/DensityFunctions$Ap2; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/DensityFunctions$1; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/DensityFunction; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/DensityFunction$Visitor; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/DensityFunction$SinglePointContext; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/DensityFunction$SimpleFunction; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/DensityFunction$NoiseHolder; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/DensityFunction$FunctionContext; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/DensityFunction$ContextProvider; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/Density; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/Column; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/Column$Ray; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/Column$Range; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/Column$Line; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/BitRandomSource; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/BelowZeroRetrogen; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/BelowZeroRetrogen$1; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/Aquifer; +[13:03:42] [main/DEBUG]: Transforming class Lnet/minecraft/world/level/levelgen/Aquifer$NoiseBasedAquifer; +[13:03:42] [main/DEBUG]: Transforming net/minecraft/world/level/levelgen/Aquifer$NoiseBasedAquifer FIELD f_157994_ to access PROTECTED and LEAVE +[13:03:42] [main/DEBUG]: Transforming net/minecraft/world/level/levelgen/Aquifer$NoiseBasedAquifer FIELD f_157996_ to access PROTECTED and LEAVE +[13:03:42] [main/DEBUG]: Transforming net/minecraft/world/level/levelgen/Aquifer$NoiseBasedAquifer FIELD f_157998_ to access PROTECTED and LEAVE +[13:03:42] [main/DEBUG]: Transforming net/minecraft/world/level/levelgen/Aquifer$NoiseBasedAquifer FIELD f_157999_ to access PROTECTED and LEAVE +[13:03:42] [main/DEBUG]: Transforming net/minecraft/world/level/levelgen/Aquifer$NoiseBasedAquifer FIELD f_158000_ to access PROTECTED and LEAVE +[13:03:42] [main/DEBUG]: Transforming net/minecraft/world/level/levelgen/Aquifer$NoiseBasedAquifer FIELD f_158002_ to access PROTECTED and LEAVE +[13:03:42] [main/DEBUG]: Transforming net/minecraft/world/level/levelgen/Aquifer$NoiseBasedAquifer FIELD f_158003_ to access PROTECTED and LEAVE +[13:03:42] [main/DEBUG]: Transforming net/minecraft/world/level/levelgen/Aquifer$NoiseBasedAquifer FIELD f_158004_ to access PROTECTED and LEAVE +[13:03:42] [main/DEBUG]: Transforming net/minecraft/world/level/levelgen/Aquifer$NoiseBasedAquifer FIELD f_158005_ to access PROTECTED and LEAVE +[13:03:42] [main/DEBUG]: Transforming net/minecraft/world/level/levelgen/Aquifer$NoiseBasedAquifer FIELD f_158006_ to access PROTECTED and LEAVE +[13:03:42] [main/DEBUG]: Transforming net/minecraft/world/level/levelgen/Aquifer$NoiseBasedAquifer METHOD m_158027_(III)I to access PROTECTED and LEAVE +[13:03:42] [main/DEBUG]: Transforming net/minecraft/world/level/levelgen/Aquifer$NoiseBasedAquifer METHOD m_158024_(II)D to access PROTECTED and LEAVE +[13:03:42] [main/DEBUG]: Transforming net/minecraft/world/level/levelgen/Aquifer$NoiseBasedAquifer METHOD m_158039_(I)I to access PROTECTED and LEAVE +[13:03:42] [main/DEBUG]: Transforming net/minecraft/world/level/levelgen/Aquifer$NoiseBasedAquifer METHOD m_158045_(I)I to access PROTECTED and LEAVE +[13:03:42] [main/DEBUG]: Transforming net/minecraft/world/level/levelgen/Aquifer$NoiseBasedAquifer METHOD m_158047_(I)I to access PROTECTED and LEAVE +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/Aquifer$FluidStatus; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/Aquifer$FluidPicker; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/Aquifer$1; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/PhantomSpawner; +[13:03:42] [main/DEBUG]: Transforming class Lnet/minecraft/world/level/levelgen/DebugLevelSource; +[13:03:42] [main/DEBUG]: Transforming net/minecraft/world/level/levelgen/DebugLevelSource FIELD f_64114_ to access PRIVATE and REMOVEFINAL +[13:03:42] [main/DEBUG]: Transforming net/minecraft/world/level/levelgen/DebugLevelSource FIELD f_64115_ to access PRIVATE and REMOVEFINAL +[13:03:42] [main/DEBUG]: Transforming net/minecraft/world/level/levelgen/DebugLevelSource FIELD f_64116_ to access PRIVATE and REMOVEFINAL +[13:03:42] [main/DEBUG]: Transforming class Lnet/minecraft/world/level/levelgen/Beardifier; +[13:03:42] [main/DEBUG]: Transforming net/minecraft/world/level/levelgen/Beardifier FIELD f_158065_ to access PROTECTED and LEAVE +[13:03:42] [main/DEBUG]: Transforming net/minecraft/world/level/levelgen/Beardifier FIELD f_158066_ to access PROTECTED and LEAVE +[13:03:42] [main/DEBUG]: Transforming net/minecraft/world/level/levelgen/Beardifier METHOD m_158083_(III)D to access PROTECTED and LEAVE +[13:03:42] [main/DEBUG]: Transforming net/minecraft/world/level/levelgen/Beardifier METHOD m_223925_(IIII)D to access PROTECTED and LEAVE +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/Beardifier$Rigid; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/levelgen/Beardifier$1; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/gameevent/vibrations/package-info; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/gameevent/vibrations/VibrationSystem; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/gameevent/vibrations/VibrationSystem$User; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/gameevent/vibrations/VibrationSystem$Ticker; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/gameevent/vibrations/VibrationSystem$Listener; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/gameevent/vibrations/VibrationSystem$Data; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/gameevent/vibrations/VibrationSelector; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/gameevent/vibrations/VibrationInfo; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/gameevent/package-info; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/gameevent/PositionSourceType; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/gameevent/PositionSource; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/gameevent/GameEventListenerRegistry; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/gameevent/GameEventListenerRegistry$ListenerVisitor; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/gameevent/GameEventListenerRegistry$1; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/gameevent/GameEventListener; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/gameevent/GameEventListener$Holder; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/gameevent/GameEventListener$DeliveryMode; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/gameevent/GameEventDispatcher; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/gameevent/GameEvent; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/gameevent/GameEvent$ListenerInfo; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/gameevent/GameEvent$Context; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/gameevent/EuclideanGameEventListenerRegistry; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/gameevent/EuclideanGameEventListenerRegistry$OnEmptyAction; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/gameevent/EntityPositionSource; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/gameevent/EntityPositionSource$Type; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/gameevent/DynamicGameEventListener; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/gameevent/BlockPositionSource; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/gameevent/BlockPositionSource$Type; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/entity/package-info; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/entity/Visibility; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/entity/LevelEntityGetterAdapter; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/entity/LevelEntityGetter; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/entity/LevelCallback; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/entity/EntityTypeTest; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/entity/EntityTypeTest$1; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/entity/EntityTickList; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/entity/EntitySectionStorage; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/entity/EntitySection; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/entity/EntityPersistentStorage; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/entity/EntityLookup; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/entity/EntityInLevelCallback; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/entity/EntityInLevelCallback$1; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/entity/EntityAccess; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/entity/ChunkStatusUpdateListener; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/entity/ChunkEntities; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/entity/TransientEntitySectionManager; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/entity/TransientEntitySectionManager$Callback; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/entity/PersistentEntitySectionManager; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/entity/PersistentEntitySectionManager$ChunkLoadStatus; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/entity/PersistentEntitySectionManager$Callback; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/dimension/package-info; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/dimension/end/package-info; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/dimension/end/DragonRespawnAnimation; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/dimension/end/DragonRespawnAnimation$5; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/dimension/end/DragonRespawnAnimation$4; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/dimension/end/DragonRespawnAnimation$3; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/dimension/end/DragonRespawnAnimation$2; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/dimension/end/DragonRespawnAnimation$1; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/dimension/end/EndDragonFight; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/dimension/end/EndDragonFight$Data; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/dimension/LevelStem; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/dimension/DimensionType; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/dimension/DimensionType$MonsterSettings; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/dimension/DimensionDefaults; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/dimension/BuiltinDimensionTypes; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/chunk/storage/package-info; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/chunk/storage/SectionStorage; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/chunk/storage/RegionFileVersion; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/chunk/storage/RegionFileVersion$StreamWrapper; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/chunk/storage/RegionFileStorage; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/chunk/storage/RegionFile; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/chunk/storage/RegionFile$CommitOp; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/chunk/storage/RegionFile$ChunkBuffer; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/chunk/storage/RegionBitmap; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/chunk/storage/IOWorker; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/chunk/storage/IOWorker$Priority; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/chunk/storage/IOWorker$PendingStore; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/chunk/storage/ChunkStorage; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/chunk/storage/ChunkScanAccess; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/chunk/storage/EntityStorage; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/chunk/storage/ChunkSerializer; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/chunk/package-info; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/chunk/UpgradeData; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/chunk/UpgradeData$BlockFixers; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/chunk/UpgradeData$BlockFixers$5; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/chunk/UpgradeData$BlockFixers$4; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/chunk/UpgradeData$BlockFixers$3; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/chunk/UpgradeData$BlockFixers$2; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/chunk/UpgradeData$BlockFixers$1; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/chunk/UpgradeData$BlockFixer; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/chunk/StructureAccess; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/chunk/SingleValuePalette; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/chunk/ProtoChunk; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/chunk/PalettedContainerRO; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/chunk/PalettedContainerRO$Unpacker; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/chunk/PalettedContainerRO$PackedData; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/chunk/PaletteResize; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/chunk/Palette; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/chunk/Palette$Factory; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/chunk/MissingPaletteEntryException; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/chunk/LinearPalette; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/chunk/LightChunkGetter; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/chunk/LightChunk; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/chunk/LevelChunkSection; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/chunk/LevelChunkSection$1BlockCounter; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/chunk/HashMapPalette; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/chunk/GlobalPalette; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/chunk/EmptyLevelChunk; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/chunk/DataLayer; +[13:03:42] [main/DEBUG]: Transforming class Lnet/minecraft/world/level/chunk/ChunkStatus; +[13:03:42] [main/DEBUG]: Transforming net/minecraft/world/level/chunk/ChunkStatus METHOD (Lnet/minecraft/world/level/chunk/ChunkStatus;IZLjava/util/EnumSet;Lnet/minecraft/world/level/chunk/ChunkStatus$ChunkType;Lnet/minecraft/world/level/chunk/ChunkStatus$GenerationTask;Lnet/minecraft/world/level/chunk/ChunkStatus$LoadingTask;)V to access PUBLIC and LEAVE +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/chunk/ChunkStatus$SimpleGenerationTask; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/chunk/ChunkStatus$LoadingTask; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/chunk/ChunkStatus$GenerationTask; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/chunk/ChunkStatus$ChunkType; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/chunk/ChunkSource; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/chunk/ChunkGenerators; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/chunk/ChunkGeneratorStructureState; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/chunk/ChunkGenerator; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/chunk/CarvingMask; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/chunk/CarvingMask$Mask; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/chunk/BulkSectionAccess; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/chunk/BlockColumn; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/chunk/PalettedContainer; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/chunk/PalettedContainer$Strategy; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/chunk/PalettedContainer$Strategy$2; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/chunk/PalettedContainer$Strategy$1; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/chunk/PalettedContainer$Data; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/chunk/PalettedContainer$CountConsumer; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/chunk/PalettedContainer$Configuration; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/chunk/LevelChunk; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/chunk/LevelChunk$RebindableTickingBlockEntityWrapper; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/chunk/LevelChunk$PostLoadProcessor; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/chunk/LevelChunk$EntityCreationType; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/chunk/LevelChunk$BoundTickingBlockEntity; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/chunk/LevelChunk$1; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/chunk/ImposterProtoChunk; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/chunk/ChunkAccess; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/chunk/ChunkAccess$TicksToSave; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/border/package-info; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/border/WorldBorder; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/border/WorldBorder$StaticBorderExtent; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/border/WorldBorder$Settings; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/border/WorldBorder$MovingBorderExtent; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/border/WorldBorder$BorderExtent; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/border/BorderStatus; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/border/BorderChangeListener; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/border/BorderChangeListener$DelegateBorderChangeListener; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/block/state/properties/package-info; +[13:03:42] [main/DEBUG]: Transforming class Lnet/minecraft/world/level/block/state/properties/WoodType; +[13:03:42] [main/DEBUG]: Transforming net/minecraft/world/level/block/state/properties/WoodType METHOD m_61844_(Lnet/minecraft/world/level/block/state/properties/WoodType;)Lnet/minecraft/world/level/block/state/properties/WoodType; to access PUBLIC and LEAVE +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/block/state/properties/WallSide; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/block/state/properties/Tilt; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/block/state/properties/StructureMode; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/block/state/properties/StairsShape; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/block/state/properties/SlabType; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/block/state/properties/SculkSensorPhase; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/block/state/properties/RotationSegment; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/block/state/properties/RedstoneSide; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/block/state/properties/RailShape; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/block/state/properties/Property; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/block/state/properties/Property$Value; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/block/state/properties/PistonType; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/block/state/properties/NoteBlockInstrument; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/block/state/properties/NoteBlockInstrument$Type; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/block/state/properties/IntegerProperty; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/block/state/properties/Half; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/block/state/properties/EnumProperty; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/block/state/properties/DripstoneThickness; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/block/state/properties/DoubleBlockHalf; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/block/state/properties/DoorHingeSide; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/block/state/properties/DirectionProperty; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/block/state/properties/ComparatorMode; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/block/state/properties/ChestType; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/block/state/properties/ChestType$1; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/block/state/properties/BooleanProperty; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/block/state/properties/BlockStateProperties; +[13:03:42] [main/DEBUG]: Transforming class Lnet/minecraft/world/level/block/state/properties/BlockSetType; +[13:03:42] [main/DEBUG]: Transforming net/minecraft/world/level/block/state/properties/BlockSetType METHOD m_272115_(Lnet/minecraft/world/level/block/state/properties/BlockSetType;)Lnet/minecraft/world/level/block/state/properties/BlockSetType; to access PUBLIC and LEAVE +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/block/state/properties/BellAttachType; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/block/state/properties/BedPart; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/block/state/properties/BambooLeaves; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/block/state/properties/AttachFace; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/block/state/predicate/package-info; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/block/state/predicate/BlockStatePredicate; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/block/state/predicate/BlockPredicate; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/block/state/pattern/package-info; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/block/state/pattern/BlockPatternBuilder; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/block/state/pattern/BlockPattern; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/block/state/pattern/BlockPattern$BlockPatternMatch; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/block/state/pattern/BlockPattern$BlockCacheLoader; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/block/state/pattern/BlockInWorld; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/block/state/package-info; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/block/state/StateHolder; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/block/state/StateHolder$1; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/block/state/StateDefinition; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/block/state/StateDefinition$Factory; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/block/state/StateDefinition$Builder; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/block/state/BlockState; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/block/state/BlockBehaviour; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/block/state/BlockBehaviour$StatePredicate; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/block/state/BlockBehaviour$StateArgumentPredicate; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/block/state/BlockBehaviour$OffsetType; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/block/state/BlockBehaviour$OffsetFunction; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/block/state/BlockBehaviour$BlockStateBase; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/block/state/BlockBehaviour$BlockStateBase$Cache; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/block/state/BlockBehaviour$1; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/block/piston/package-info; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/block/piston/PistonMath; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/block/piston/PistonMath$1; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/block/piston/PistonHeadBlock; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/block/piston/PistonHeadBlock$1; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/block/piston/MovingPistonBlock; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/block/piston/PistonStructureResolver; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/block/piston/PistonMovingBlockEntity; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/block/piston/PistonMovingBlockEntity$1; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/block/piston/PistonBaseBlock; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/block/piston/PistonBaseBlock$1; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/block/package-info; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/block/grower/package-info; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/block/grower/SpruceTreeGrower; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/block/grower/OakTreeGrower; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/block/grower/MangroveTreeGrower; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/block/grower/JungleTreeGrower; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/block/grower/DarkOakTreeGrower; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/block/grower/CherryTreeGrower; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/block/grower/BirchTreeGrower; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/block/grower/AzaleaTreeGrower; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/block/grower/AcaciaTreeGrower; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/block/grower/AbstractTreeGrower; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/block/grower/AbstractMegaTreeGrower; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/block/entity/package-info; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/block/entity/TrappedChestBlockEntity; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/block/entity/TickingBlockEntity; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/block/entity/TheEndPortalBlockEntity; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/block/entity/TheEndGatewayBlockEntity; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/block/entity/StructureBlockEntity; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/block/entity/StructureBlockEntity$UpdateType; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/block/entity/SmokerBlockEntity; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/block/entity/SkullBlockEntity; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/block/entity/SignText; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/block/entity/SculkShriekerBlockEntity; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/block/entity/SculkShriekerBlockEntity$VibrationUser; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/block/entity/SculkSensorBlockEntity; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/block/entity/SculkSensorBlockEntity$VibrationUser; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/block/entity/SculkCatalystBlockEntity; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/block/entity/SculkCatalystBlockEntity$CatalystListener; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/block/entity/RandomizableContainerBlockEntity; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/block/entity/LidBlockEntity; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/block/entity/LecternBlockEntity; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/block/entity/LecternBlockEntity$2; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/block/entity/LecternBlockEntity$1; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/block/entity/JukeboxBlockEntity; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/block/entity/JigsawBlockEntity; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/block/entity/JigsawBlockEntity$JointType; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/block/entity/Hopper; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/block/entity/HangingSignBlockEntity; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/block/entity/FurnaceBlockEntity; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/block/entity/EnderChestBlockEntity; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/block/entity/EnderChestBlockEntity$1; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/block/entity/EnchantmentTableBlockEntity; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/block/entity/DropperBlockEntity; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/block/entity/DispenserBlockEntity; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/block/entity/DecoratedPotPatterns; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/block/entity/DecoratedPotBlockEntity; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/block/entity/DecoratedPotBlockEntity$Decorations; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/block/entity/DaylightDetectorBlockEntity; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/block/entity/ContainerOpenersCounter; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/block/entity/ComparatorBlockEntity; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/block/entity/CommandBlockEntity; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/block/entity/CommandBlockEntity$Mode; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/block/entity/CommandBlockEntity$1; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/block/entity/ChestLidController; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/block/entity/CampfireBlockEntity; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/block/entity/CalibratedSculkSensorBlockEntity; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/block/entity/CalibratedSculkSensorBlockEntity$VibrationUser; +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/block/entity/BrushableBlockEntity; +[13:03:42] [main/DEBUG]: Transforming class Lnet/minecraft/world/level/block/entity/BlockEntityType; +[13:03:42] [main/DEBUG]: Transforming net/minecraft/world/level/block/entity/BlockEntityType INNERCLASS BlockEntitySupplier to access PUBLIC and LEAVE +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/block/entity/BlockEntityType$Builder; +[13:03:42] [main/DEBUG]: Transforming class Lnet/minecraft/world/level/block/entity/BlockEntityType$BlockEntitySupplier; +[13:03:42] [main/DEBUG]: Transforming net/minecraft/world/level/block/entity/BlockEntityType$BlockEntitySupplier CLASS to access PUBLIC and LEAVE +[13:03:42] [main/DEBUG]: Skipping Lnet/minecraft/world/level/block/entity/BlockEntityTicker; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/level/block/entity/BlastFurnaceBlockEntity; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/level/block/entity/BellBlockEntity; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/level/block/entity/BellBlockEntity$ResonationEndAction; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/level/block/entity/BeehiveBlockEntity; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/level/block/entity/BeehiveBlockEntity$BeeReleaseStatus; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/level/block/entity/BeehiveBlockEntity$BeeData; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/level/block/entity/BedBlockEntity; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/level/block/entity/BarrelBlockEntity; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/level/block/entity/BarrelBlockEntity$1; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/level/block/entity/BannerPatterns; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/level/block/entity/BannerPattern; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/level/block/entity/BannerPattern$Builder; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/level/block/entity/BannerBlockEntity; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/level/block/entity/AbstractFurnaceBlockEntity$2; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/level/block/entity/BrewingStandBlockEntity$2; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/level/block/entity/SpawnerBlockEntity; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/level/block/entity/SpawnerBlockEntity$1; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/level/block/entity/SignBlockEntity; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/level/block/entity/ShulkerBoxBlockEntity; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/level/block/entity/ShulkerBoxBlockEntity$AnimationStatus; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/level/block/entity/ShulkerBoxBlockEntity$1; +[13:03:43] [main/DEBUG]: Transforming class Lnet/minecraft/world/level/block/entity/HopperBlockEntity; +[13:03:43] [main/DEBUG]: Transforming net/minecraft/world/level/block/entity/HopperBlockEntity METHOD m_59395_(I)V to access PUBLIC and LEAVE +[13:03:43] [main/DEBUG]: Transforming net/minecraft/world/level/block/entity/HopperBlockEntity METHOD m_59409_()Z to access PUBLIC and LEAVE +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/level/block/entity/ConduitBlockEntity; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/level/block/entity/ChiseledBookShelfBlockEntity; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/level/block/entity/ChestBlockEntity; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/level/block/entity/ChestBlockEntity$1; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/level/block/entity/BrewingStandBlockEntity; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/level/block/entity/BrewingStandBlockEntity$1; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/level/block/entity/BlockEntity; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/level/block/entity/BeaconBlockEntity; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/level/block/entity/BeaconBlockEntity$BeaconBeamSection; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/level/block/entity/BeaconBlockEntity$1; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/level/block/entity/BaseContainerBlockEntity; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/level/block/entity/AbstractFurnaceBlockEntity; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/level/block/entity/AbstractFurnaceBlockEntity$1; +[13:03:43] [main/DEBUG]: Transforming class Lnet/minecraft/world/level/block/WoolCarpetBlock; +[13:03:43] [main/DEBUG]: Transforming net/minecraft/world/level/block/WoolCarpetBlock METHOD (Lnet/minecraft/world/item/DyeColor;Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V to access PUBLIC and LEAVE +[13:03:43] [main/DEBUG]: Transforming class Lnet/minecraft/world/level/block/WitherWallSkullBlock; +[13:03:43] [main/DEBUG]: Transforming net/minecraft/world/level/block/WitherWallSkullBlock METHOD (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V to access PUBLIC and LEAVE +[13:03:43] [main/DEBUG]: Transforming class Lnet/minecraft/world/level/block/WitherSkullBlock; +[13:03:43] [main/DEBUG]: Transforming net/minecraft/world/level/block/WitherSkullBlock METHOD (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V to access PUBLIC and LEAVE +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/level/block/WitherRoseBlock; +[13:03:43] [main/DEBUG]: Transforming class Lnet/minecraft/world/level/block/WetSpongeBlock; +[13:03:43] [main/DEBUG]: Transforming net/minecraft/world/level/block/WetSpongeBlock METHOD (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V to access PUBLIC and LEAVE +[13:03:43] [main/DEBUG]: Transforming class Lnet/minecraft/world/level/block/WeightedPressurePlateBlock; +[13:03:43] [main/DEBUG]: Transforming net/minecraft/world/level/block/WeightedPressurePlateBlock METHOD (ILnet/minecraft/world/level/block/state/BlockBehaviour$Properties;Lnet/minecraft/world/level/block/state/properties/BlockSetType;)V to access PUBLIC and LEAVE +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/level/block/WeepingVinesPlantBlock; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/level/block/WeepingVinesBlock; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/level/block/WeatheringCopperStairBlock; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/level/block/WeatheringCopperSlabBlock; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/level/block/WeatheringCopperFullBlock; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/level/block/WeatheringCopper; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/level/block/WeatheringCopper$WeatherState; +[13:03:43] [main/DEBUG]: Transforming class Lnet/minecraft/world/level/block/WaterlilyBlock; +[13:03:43] [main/DEBUG]: Transforming net/minecraft/world/level/block/WaterlilyBlock METHOD (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V to access PUBLIC and LEAVE +[13:03:43] [main/DEBUG]: Transforming class Lnet/minecraft/world/level/block/WallTorchBlock; +[13:03:43] [main/DEBUG]: Transforming net/minecraft/world/level/block/WallTorchBlock METHOD (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;Lnet/minecraft/core/particles/ParticleOptions;)V to access PUBLIC and LEAVE +[13:03:43] [main/DEBUG]: Transforming class Lnet/minecraft/world/level/block/WallSkullBlock; +[13:03:43] [main/DEBUG]: Transforming net/minecraft/world/level/block/WallSkullBlock METHOD (Lnet/minecraft/world/level/block/SkullBlock$Type;Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V to access PUBLIC and LEAVE +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/level/block/WallSignBlock; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/level/block/WallHangingSignBlock; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/level/block/WallHangingSignBlock$1; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/level/block/WallBlock; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/level/block/WallBlock$1; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/level/block/WallBannerBlock; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/level/block/TwistingVinesPlantBlock; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/level/block/TwistingVinesBlock; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/level/block/TrappedChestBlock; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/level/block/TorchflowerCropBlock; +[13:03:43] [main/DEBUG]: Transforming class Lnet/minecraft/world/level/block/TorchBlock; +[13:03:43] [main/DEBUG]: Transforming net/minecraft/world/level/block/TorchBlock METHOD (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;Lnet/minecraft/core/particles/ParticleOptions;)V to access PUBLIC and LEAVE +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/level/block/TintedGlassBlock; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/level/block/TargetBlock; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/level/block/TallSeagrassBlock; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/level/block/TallFlowerBlock; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/level/block/SuspiciousEffectHolder; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/level/block/SupportType; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/level/block/SupportType$3; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/level/block/SupportType$2; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/level/block/SupportType$1; +[13:03:43] [main/DEBUG]: Transforming class Lnet/minecraft/world/level/block/StructureVoidBlock; +[13:03:43] [main/DEBUG]: Transforming net/minecraft/world/level/block/StructureVoidBlock METHOD (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V to access PUBLIC and LEAVE +[13:03:43] [main/DEBUG]: Transforming class Lnet/minecraft/world/level/block/StructureBlock; +[13:03:43] [main/DEBUG]: Transforming net/minecraft/world/level/block/StructureBlock METHOD (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V to access PUBLIC and LEAVE +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/level/block/StructureBlock$1; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/level/block/StonecutterBlock; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/level/block/StandingSignBlock; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/level/block/StainedGlassPaneBlock; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/level/block/StainedGlassBlock; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/level/block/SporeBlossomBlock; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/level/block/SoulSandBlock; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/level/block/SoulFireBlock; +[13:03:43] [main/DEBUG]: Transforming class Lnet/minecraft/world/level/block/SnowyDirtBlock; +[13:03:43] [main/DEBUG]: Transforming net/minecraft/world/level/block/SnowyDirtBlock METHOD (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V to access PUBLIC and LEAVE +[13:03:43] [main/DEBUG]: Transforming class Lnet/minecraft/world/level/block/SnowLayerBlock; +[13:03:43] [main/DEBUG]: Transforming net/minecraft/world/level/block/SnowLayerBlock METHOD (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V to access PUBLIC and LEAVE +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/level/block/SnowLayerBlock$1; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/level/block/SnifferEggBlock; +[13:03:43] [main/DEBUG]: Transforming class Lnet/minecraft/world/level/block/SmokerBlock; +[13:03:43] [main/DEBUG]: Transforming net/minecraft/world/level/block/SmokerBlock METHOD (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V to access PUBLIC and LEAVE +[13:03:43] [main/DEBUG]: Transforming class Lnet/minecraft/world/level/block/SmithingTableBlock; +[13:03:43] [main/DEBUG]: Transforming net/minecraft/world/level/block/SmithingTableBlock METHOD (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V to access PUBLIC and LEAVE +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/level/block/SmallDripleafBlock; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/level/block/SlimeBlock; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/level/block/SlabBlock; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/level/block/SlabBlock$1; +[13:03:43] [main/DEBUG]: Transforming class Lnet/minecraft/world/level/block/SkullBlock; +[13:03:43] [main/DEBUG]: Transforming net/minecraft/world/level/block/SkullBlock METHOD (Lnet/minecraft/world/level/block/SkullBlock$Type;Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V to access PUBLIC and LEAVE +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/level/block/SkullBlock$Types; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/level/block/SkullBlock$Type; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/level/block/SimpleWaterloggedBlock; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/level/block/SignBlock; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/level/block/ShulkerBoxBlock; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/level/block/ShulkerBoxBlock$1; +[13:03:43] [main/DEBUG]: Transforming class Lnet/minecraft/world/level/block/SeaPickleBlock; +[13:03:43] [main/DEBUG]: Transforming net/minecraft/world/level/block/SeaPickleBlock METHOD (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V to access PUBLIC and LEAVE +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/level/block/SculkVeinBlock; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/level/block/SculkVeinBlock$SculkVeinSpreaderConfig; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/level/block/SculkSpreader; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/level/block/SculkSpreader$ChargeCursor; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/level/block/SculkBlock; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/level/block/SculkBehaviour; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/level/block/SculkBehaviour$1; +[13:03:43] [main/DEBUG]: Transforming class Lnet/minecraft/world/level/block/ScaffoldingBlock; +[13:03:43] [main/DEBUG]: Transforming net/minecraft/world/level/block/ScaffoldingBlock METHOD (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V to access PUBLIC and LEAVE +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/level/block/SandBlock; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/level/block/Rotation; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/level/block/Rotation$1; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/level/block/RotatedPillarBlock; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/level/block/RotatedPillarBlock$1; +[13:03:43] [main/DEBUG]: Transforming class Lnet/minecraft/world/level/block/RootsBlock; +[13:03:43] [main/DEBUG]: Transforming net/minecraft/world/level/block/RootsBlock METHOD (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V to access PUBLIC and LEAVE +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/level/block/RootedDirtBlock; +[13:03:43] [main/DEBUG]: Transforming class Lnet/minecraft/world/level/block/RodBlock; +[13:03:43] [main/DEBUG]: Transforming net/minecraft/world/level/block/RodBlock METHOD (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V to access PUBLIC and LEAVE +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/level/block/RodBlock$1; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/level/block/RespawnAnchorBlock; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/level/block/RespawnAnchorBlock$1; +[13:03:43] [main/DEBUG]: Transforming class Lnet/minecraft/world/level/block/RepeaterBlock; +[13:03:43] [main/DEBUG]: Transforming net/minecraft/world/level/block/RepeaterBlock METHOD (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V to access PUBLIC and LEAVE +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/level/block/RenderShape; +[13:03:43] [main/DEBUG]: Transforming class Lnet/minecraft/world/level/block/RedstoneWallTorchBlock; +[13:03:43] [main/DEBUG]: Transforming net/minecraft/world/level/block/RedstoneWallTorchBlock METHOD (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V to access PUBLIC and LEAVE +[13:03:43] [main/DEBUG]: Transforming class Lnet/minecraft/world/level/block/RedstoneTorchBlock; +[13:03:43] [main/DEBUG]: Transforming net/minecraft/world/level/block/RedstoneTorchBlock METHOD (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V to access PUBLIC and LEAVE +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/level/block/RedstoneTorchBlock$Toggle; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/level/block/RedstoneLampBlock; +[13:03:43] [main/DEBUG]: Transforming class Lnet/minecraft/world/level/block/PressurePlateBlock; +[13:03:43] [main/DEBUG]: Transforming net/minecraft/world/level/block/PressurePlateBlock METHOD (Lnet/minecraft/world/level/block/PressurePlateBlock$Sensitivity;Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;Lnet/minecraft/world/level/block/state/properties/BlockSetType;)V to access PUBLIC and LEAVE +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/level/block/PressurePlateBlock$Sensitivity; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/level/block/PressurePlateBlock$1; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/level/block/PoweredBlock; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/level/block/PowderSnowCauldronBlock; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/level/block/PotatoBlock; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/level/block/PointedDripstoneBlock; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/level/block/PointedDripstoneBlock$FluidInfo; +[13:03:43] [main/DEBUG]: Transforming class Lnet/minecraft/world/level/block/PlayerWallHeadBlock; +[13:03:43] [main/DEBUG]: Transforming net/minecraft/world/level/block/PlayerWallHeadBlock METHOD (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V to access PUBLIC and LEAVE +[13:03:43] [main/DEBUG]: Transforming class Lnet/minecraft/world/level/block/PlayerHeadBlock; +[13:03:43] [main/DEBUG]: Transforming net/minecraft/world/level/block/PlayerHeadBlock METHOD (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V to access PUBLIC and LEAVE +[13:03:43] [main/DEBUG]: Transforming class Lnet/minecraft/world/level/block/PipeBlock; +[13:03:43] [main/DEBUG]: Transforming net/minecraft/world/level/block/PipeBlock METHOD (FLnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V to access PUBLIC and LEAVE +[13:03:43] [main/DEBUG]: Transforming class Lnet/minecraft/world/level/block/PinkPetalsBlock; +[13:03:43] [main/DEBUG]: Transforming net/minecraft/world/level/block/PinkPetalsBlock METHOD (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V to access PUBLIC and LEAVE +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/level/block/PiglinWallSkullBlock; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/level/block/ObserverBlock; +[13:03:43] [main/DEBUG]: Transforming class Lnet/minecraft/world/level/block/NyliumBlock; +[13:03:43] [main/DEBUG]: Transforming net/minecraft/world/level/block/NyliumBlock METHOD (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V to access PUBLIC and LEAVE +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/level/block/NetherrackBlock; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/level/block/NetherVines; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/level/block/NetherSproutsBlock; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/level/block/NetherPortalBlock; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/level/block/NetherPortalBlock$1; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/level/block/MyceliumBlock; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/level/block/MultifaceSpreader; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/level/block/MultifaceSpreader$SpreadType; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/level/block/MultifaceSpreader$SpreadType$3; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/level/block/MultifaceSpreader$SpreadType$2; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/level/block/MultifaceSpreader$SpreadType$1; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/level/block/MultifaceSpreader$SpreadPredicate; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/level/block/MultifaceSpreader$SpreadPos; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/level/block/MultifaceSpreader$SpreadConfig; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/level/block/MultifaceSpreader$DefaultSpreaderConfig; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/level/block/MultifaceBlock; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/level/block/MudBlock; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/level/block/MossBlock; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/level/block/Mirror; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/level/block/Mirror$1; +[13:03:43] [main/DEBUG]: Transforming class Lnet/minecraft/world/level/block/MelonBlock; +[13:03:43] [main/DEBUG]: Transforming net/minecraft/world/level/block/MelonBlock METHOD (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V to access PUBLIC and LEAVE +[13:03:43] [main/DEBUG]: Transforming class Lnet/minecraft/world/level/block/MangroveRootsBlock; +[13:03:43] [main/DEBUG]: Transforming net/minecraft/world/level/block/MangroveRootsBlock METHOD (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V to access PUBLIC and LEAVE +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/level/block/MangrovePropaguleBlock; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/level/block/MangroveLeavesBlock; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/level/block/MagmaBlock; +[13:03:43] [main/DEBUG]: Transforming class Lnet/minecraft/world/level/block/LoomBlock; +[13:03:43] [main/DEBUG]: Transforming net/minecraft/world/level/block/LoomBlock METHOD (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V to access PUBLIC and LEAVE +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/level/block/LiquidBlockContainer; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/level/block/LightningRodBlock; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/level/block/LightBlock; +[13:03:43] [main/DEBUG]: Transforming class Lnet/minecraft/world/level/block/LeverBlock; +[13:03:43] [main/DEBUG]: Transforming net/minecraft/world/level/block/LeverBlock METHOD (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V to access PUBLIC and LEAVE +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/level/block/LeverBlock$1; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/level/block/LevelEvent; +[13:03:43] [main/DEBUG]: Transforming class Lnet/minecraft/world/level/block/LecternBlock; +[13:03:43] [main/DEBUG]: Transforming net/minecraft/world/level/block/LecternBlock METHOD (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V to access PUBLIC and LEAVE +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/level/block/LecternBlock$1; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/level/block/LayeredCauldronBlock; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/level/block/LavaCauldronBlock; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/level/block/LanternBlock; +[13:03:43] [main/DEBUG]: Transforming class Lnet/minecraft/world/level/block/LadderBlock; +[13:03:43] [main/DEBUG]: Transforming net/minecraft/world/level/block/LadderBlock METHOD (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V to access PUBLIC and LEAVE +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/level/block/LadderBlock$1; +[13:03:43] [main/DEBUG]: Transforming class Lnet/minecraft/world/level/block/KelpPlantBlock; +[13:03:43] [main/DEBUG]: Transforming net/minecraft/world/level/block/KelpPlantBlock METHOD (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V to access PUBLIC and LEAVE +[13:03:43] [main/DEBUG]: Transforming class Lnet/minecraft/world/level/block/KelpBlock; +[13:03:43] [main/DEBUG]: Transforming net/minecraft/world/level/block/KelpBlock METHOD (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V to access PUBLIC and LEAVE +[13:03:43] [main/DEBUG]: Transforming class Lnet/minecraft/world/level/block/JukeboxBlock; +[13:03:43] [main/DEBUG]: Transforming net/minecraft/world/level/block/JukeboxBlock METHOD (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V to access PUBLIC and LEAVE +[13:03:43] [main/DEBUG]: Transforming class Lnet/minecraft/world/level/block/JigsawBlock; +[13:03:43] [main/DEBUG]: Transforming net/minecraft/world/level/block/JigsawBlock METHOD (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V to access PUBLIC and LEAVE +[13:03:43] [main/DEBUG]: Transforming class Lnet/minecraft/world/level/block/IronBarsBlock; +[13:03:43] [main/DEBUG]: Transforming net/minecraft/world/level/block/IronBarsBlock METHOD (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V to access PUBLIC and LEAVE +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/level/block/InfestedRotatedPillarBlock; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/level/block/InfestedBlock; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/level/block/IceBlock; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/level/block/HugeMushroomBlock; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/level/block/HorizontalDirectionalBlock; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/level/block/HopperBlock; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/level/block/HopperBlock$1; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/level/block/HoneyBlock; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/level/block/HayBlock; +[13:03:43] [main/DEBUG]: Transforming class Lnet/minecraft/world/level/block/HangingRootsBlock; +[13:03:43] [main/DEBUG]: Transforming net/minecraft/world/level/block/HangingRootsBlock METHOD (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V to access PUBLIC and LEAVE +[13:03:43] [main/DEBUG]: Transforming class Lnet/minecraft/world/level/block/HalfTransparentBlock; +[13:03:43] [main/DEBUG]: Transforming net/minecraft/world/level/block/HalfTransparentBlock METHOD (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V to access PUBLIC and LEAVE +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/level/block/GrowingPlantBodyBlock; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/level/block/GrowingPlantBlock; +[13:03:43] [main/DEBUG]: Transforming class Lnet/minecraft/world/level/block/GrindstoneBlock; +[13:03:43] [main/DEBUG]: Transforming net/minecraft/world/level/block/GrindstoneBlock METHOD (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V to access PUBLIC and LEAVE +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/level/block/GrindstoneBlock$1; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/level/block/GravelBlock; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/level/block/GrassBlock; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/level/block/GlowLichenBlock; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/level/block/GlazedTerracottaBlock; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/level/block/GlassBlock; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/level/block/GameMasterBlock; +[13:03:43] [main/DEBUG]: Transforming class Lnet/minecraft/world/level/block/FurnaceBlock; +[13:03:43] [main/DEBUG]: Transforming net/minecraft/world/level/block/FurnaceBlock METHOD (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V to access PUBLIC and LEAVE +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/level/block/FrostedIceBlock; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/level/block/FrogspawnBlock; +[13:03:43] [main/DEBUG]: Transforming class Lnet/minecraft/world/level/block/FletchingTableBlock; +[13:03:43] [main/DEBUG]: Transforming net/minecraft/world/level/block/FletchingTableBlock METHOD (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V to access PUBLIC and LEAVE +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/level/block/FenceBlock; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/level/block/FallingBlock; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/level/block/Fallable; +[13:03:43] [main/DEBUG]: Transforming class Lnet/minecraft/world/level/block/FaceAttachedHorizontalDirectionalBlock; +[13:03:43] [main/DEBUG]: Transforming net/minecraft/world/level/block/FaceAttachedHorizontalDirectionalBlock METHOD (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V to access PUBLIC and LEAVE +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/level/block/FaceAttachedHorizontalDirectionalBlock$1; +[13:03:43] [main/DEBUG]: Transforming class Lnet/minecraft/world/level/block/EquipableCarvedPumpkinBlock; +[13:03:43] [main/DEBUG]: Transforming net/minecraft/world/level/block/EquipableCarvedPumpkinBlock METHOD (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V to access PUBLIC and LEAVE +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/level/block/EntityBlock; +[13:03:43] [main/DEBUG]: Transforming class Lnet/minecraft/world/level/block/EnderChestBlock; +[13:03:43] [main/DEBUG]: Transforming net/minecraft/world/level/block/EnderChestBlock METHOD (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V to access PUBLIC and LEAVE +[13:03:43] [main/DEBUG]: Transforming class Lnet/minecraft/world/level/block/EndRodBlock; +[13:03:43] [main/DEBUG]: Transforming net/minecraft/world/level/block/EndRodBlock METHOD (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V to access PUBLIC and LEAVE +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/level/block/EndPortalFrameBlock; +[13:03:43] [main/DEBUG]: Transforming class Lnet/minecraft/world/level/block/EndPortalBlock; +[13:03:43] [main/DEBUG]: Transforming net/minecraft/world/level/block/EndPortalBlock METHOD (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V to access PUBLIC and LEAVE +[13:03:43] [main/DEBUG]: Transforming class Lnet/minecraft/world/level/block/EndGatewayBlock; +[13:03:43] [main/DEBUG]: Transforming net/minecraft/world/level/block/EndGatewayBlock METHOD (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V to access PUBLIC and LEAVE +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/level/block/DragonEggBlock; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/level/block/DoubleBlockCombiner; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/level/block/DoubleBlockCombiner$NeighborCombineResult; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/level/block/DoubleBlockCombiner$NeighborCombineResult$Single; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/level/block/DoubleBlockCombiner$NeighborCombineResult$Double; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/level/block/DoubleBlockCombiner$Combiner; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/level/block/DoubleBlockCombiner$BlockType; +[13:03:43] [main/DEBUG]: Transforming class Lnet/minecraft/world/level/block/DoorBlock; +[13:03:43] [main/DEBUG]: Transforming net/minecraft/world/level/block/DoorBlock METHOD (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;Lnet/minecraft/world/level/block/state/properties/BlockSetType;)V to access PUBLIC and LEAVE +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/level/block/DoorBlock$1; +[13:03:43] [main/DEBUG]: Transforming class Lnet/minecraft/world/level/block/DispenserBlock; +[13:03:43] [main/DEBUG]: Transforming net/minecraft/world/level/block/DispenserBlock METHOD (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V to access PUBLIC and LEAVE +[13:03:43] [main/DEBUG]: Transforming class Lnet/minecraft/world/level/block/DirtPathBlock; +[13:03:43] [main/DEBUG]: Transforming net/minecraft/world/level/block/DirtPathBlock METHOD (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V to access PUBLIC and LEAVE +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/level/block/DirectionalBlock; +[13:03:43] [main/DEBUG]: Transforming class Lnet/minecraft/world/level/block/DecoratedPotBlock; +[13:03:43] [main/DEBUG]: Transforming net/minecraft/world/level/block/DecoratedPotBlock METHOD (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V to access PUBLIC and LEAVE +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/level/block/DaylightDetectorBlock; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/level/block/CryingObsidianBlock; +[13:03:43] [main/DEBUG]: Transforming class Lnet/minecraft/world/level/block/CrossCollisionBlock; +[13:03:43] [main/DEBUG]: Transforming net/minecraft/world/level/block/CrossCollisionBlock METHOD (FFFFFLnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V to access PUBLIC and LEAVE +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/level/block/CrossCollisionBlock$1; +[13:03:43] [main/DEBUG]: Transforming class Lnet/minecraft/world/level/block/CraftingTableBlock; +[13:03:43] [main/DEBUG]: Transforming net/minecraft/world/level/block/CraftingTableBlock METHOD (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V to access PUBLIC and LEAVE +[13:03:43] [main/DEBUG]: Transforming class Lnet/minecraft/world/level/block/CoralWallFanBlock; +[13:03:43] [main/DEBUG]: Transforming net/minecraft/world/level/block/CoralWallFanBlock METHOD (Lnet/minecraft/world/level/block/Block;Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V to access PUBLIC and LEAVE +[13:03:43] [main/DEBUG]: Transforming class Lnet/minecraft/world/level/block/CoralPlantBlock; +[13:03:43] [main/DEBUG]: Transforming net/minecraft/world/level/block/CoralPlantBlock METHOD (Lnet/minecraft/world/level/block/Block;Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V to access PUBLIC and LEAVE +[13:03:43] [main/DEBUG]: Transforming class Lnet/minecraft/world/level/block/CoralFanBlock; +[13:03:43] [main/DEBUG]: Transforming net/minecraft/world/level/block/CoralFanBlock METHOD (Lnet/minecraft/world/level/block/Block;Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V to access PUBLIC and LEAVE +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/level/block/ConduitBlock; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/level/block/ComposterBlock; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/level/block/ComposterBlock$OutputContainer; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/level/block/ComposterBlock$InputContainer; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/level/block/ComposterBlock$EmptyContainer; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/level/block/CommandBlock; +[13:03:43] [main/DEBUG]: Transforming class Lnet/minecraft/world/level/block/ChorusPlantBlock; +[13:03:43] [main/DEBUG]: Transforming net/minecraft/world/level/block/ChorusPlantBlock METHOD (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V to access PUBLIC and LEAVE +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/level/block/ChiseledBookShelfBlock; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/level/block/ChiseledBookShelfBlock$1; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/level/block/CherryLeavesBlock; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/level/block/ChangeOverTimeBlock; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/level/block/ChainBlock; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/level/block/ChainBlock$1; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/level/block/CeilingHangingSignBlock; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/level/block/CaveVinesPlantBlock; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/level/block/CaveVinesBlock; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/level/block/CaveVines; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/level/block/CauldronBlock; +[13:03:43] [main/DEBUG]: Transforming class Lnet/minecraft/world/level/block/CarvedPumpkinBlock; +[13:03:43] [main/DEBUG]: Transforming net/minecraft/world/level/block/CarvedPumpkinBlock METHOD (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V to access PUBLIC and LEAVE +[13:03:43] [main/DEBUG]: Transforming class Lnet/minecraft/world/level/block/CartographyTableBlock; +[13:03:43] [main/DEBUG]: Transforming net/minecraft/world/level/block/CartographyTableBlock METHOD (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V to access PUBLIC and LEAVE +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/level/block/CarrotBlock; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/level/block/CarpetBlock; +[13:03:43] [main/DEBUG]: Transforming class Lnet/minecraft/world/level/block/CandleCakeBlock; +[13:03:43] [main/DEBUG]: Transforming net/minecraft/world/level/block/CandleCakeBlock METHOD (Lnet/minecraft/world/level/block/Block;Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V to access PUBLIC and LEAVE +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/level/block/CandleBlock; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/level/block/CalibratedSculkSensorBlock; +[13:03:43] [main/DEBUG]: Transforming class Lnet/minecraft/world/level/block/CakeBlock; +[13:03:43] [main/DEBUG]: Transforming net/minecraft/world/level/block/CakeBlock METHOD (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V to access PUBLIC and LEAVE +[13:03:43] [main/DEBUG]: Transforming class Lnet/minecraft/world/level/block/ButtonBlock; +[13:03:43] [main/DEBUG]: Transforming net/minecraft/world/level/block/ButtonBlock METHOD (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;Lnet/minecraft/world/level/block/state/properties/BlockSetType;IZ)V to access PUBLIC and LEAVE +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/level/block/ButtonBlock$1; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/level/block/BuddingAmethystBlock; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/level/block/BubbleColumnBlock; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/level/block/BrushableBlock; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/level/block/BrewingStandBlock; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/level/block/BonemealableBlock; +[13:03:43] [main/DEBUG]: Transforming class Lnet/minecraft/world/level/block/BlastFurnaceBlock; +[13:03:43] [main/DEBUG]: Transforming net/minecraft/world/level/block/BlastFurnaceBlock METHOD (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V to access PUBLIC and LEAVE +[13:03:43] [main/DEBUG]: Transforming class Lnet/minecraft/world/level/block/BigDripleafStemBlock; +[13:03:43] [main/DEBUG]: Transforming net/minecraft/world/level/block/BigDripleafStemBlock METHOD (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V to access PUBLIC and LEAVE +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/level/block/BigDripleafStemBlock$1; +[13:03:43] [main/DEBUG]: Transforming class Lnet/minecraft/world/level/block/BigDripleafBlock; +[13:03:43] [main/DEBUG]: Transforming net/minecraft/world/level/block/BigDripleafBlock METHOD (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V to access PUBLIC and LEAVE +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/level/block/BellBlock; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/level/block/BellBlock$1; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/level/block/BeetrootBlock; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/level/block/BedBlock; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/level/block/BedBlock$1; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/level/block/BeaconBlock; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/level/block/BeaconBeamBlock; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/level/block/BasePressurePlateBlock; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/level/block/BaseEntityBlock; +[13:03:43] [main/DEBUG]: Transforming class Lnet/minecraft/world/level/block/BaseCoralWallFanBlock; +[13:03:43] [main/DEBUG]: Transforming net/minecraft/world/level/block/BaseCoralWallFanBlock METHOD (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V to access PUBLIC and LEAVE +[13:03:43] [main/DEBUG]: Transforming class Lnet/minecraft/world/level/block/BaseCoralPlantTypeBlock; +[13:03:43] [main/DEBUG]: Transforming net/minecraft/world/level/block/BaseCoralPlantTypeBlock METHOD (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V to access PUBLIC and LEAVE +[13:03:43] [main/DEBUG]: Transforming class Lnet/minecraft/world/level/block/BaseCoralPlantBlock; +[13:03:43] [main/DEBUG]: Transforming net/minecraft/world/level/block/BaseCoralPlantBlock METHOD (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V to access PUBLIC and LEAVE +[13:03:43] [main/DEBUG]: Transforming class Lnet/minecraft/world/level/block/BaseCoralFanBlock; +[13:03:43] [main/DEBUG]: Transforming net/minecraft/world/level/block/BaseCoralFanBlock METHOD (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V to access PUBLIC and LEAVE +[13:03:43] [main/DEBUG]: Transforming class Lnet/minecraft/world/level/block/BarrierBlock; +[13:03:43] [main/DEBUG]: Transforming net/minecraft/world/level/block/BarrierBlock METHOD (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V to access PUBLIC and LEAVE +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/level/block/BarrelBlock; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/level/block/BannerBlock; +[13:03:43] [main/DEBUG]: Transforming class Lnet/minecraft/world/level/block/AzaleaBlock; +[13:03:43] [main/DEBUG]: Transforming net/minecraft/world/level/block/AzaleaBlock METHOD (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V to access PUBLIC and LEAVE +[13:03:43] [main/DEBUG]: Transforming class Lnet/minecraft/world/level/block/AttachedStemBlock; +[13:03:43] [main/DEBUG]: Transforming net/minecraft/world/level/block/AttachedStemBlock METHOD (Lnet/minecraft/world/level/block/StemGrownBlock;Ljava/util/function/Supplier;Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V to access PUBLIC and LEAVE +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/level/block/AnvilBlock; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/level/block/AmethystClusterBlock; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/level/block/AmethystClusterBlock$1; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/level/block/AmethystBlock; +[13:03:43] [main/DEBUG]: Transforming class Lnet/minecraft/world/level/block/AirBlock; +[13:03:43] [main/DEBUG]: Transforming net/minecraft/world/level/block/AirBlock METHOD (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V to access PUBLIC and LEAVE +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/level/block/AbstractSkullBlock; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/level/block/AbstractGlassBlock; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/level/block/AbstractFurnaceBlock; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/level/block/AbstractChestBlock; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/level/block/AbstractCauldronBlock; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/level/block/AbstractCandleBlock; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/level/block/AbstractBannerBlock; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/level/block/WebBlock; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/level/block/VineBlock; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/level/block/VineBlock$1; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/level/block/TurtleEggBlock; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/level/block/TripWireHookBlock; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/level/block/TripWireHookBlock$1; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/level/block/TripWireBlock; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/level/block/TripWireBlock$1; +[13:03:43] [main/DEBUG]: Transforming class Lnet/minecraft/world/level/block/TrapDoorBlock; +[13:03:43] [main/DEBUG]: Transforming net/minecraft/world/level/block/TrapDoorBlock METHOD (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;Lnet/minecraft/world/level/block/state/properties/BlockSetType;)V to access PUBLIC and LEAVE +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/level/block/TrapDoorBlock$1; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/level/block/TntBlock; +[13:03:43] [main/DEBUG]: Transforming class Lnet/minecraft/world/level/block/TallGrassBlock; +[13:03:43] [main/DEBUG]: Transforming net/minecraft/world/level/block/TallGrassBlock METHOD (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V to access PUBLIC and LEAVE +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/level/block/SweetBerryBushBlock; +[13:03:43] [main/DEBUG]: Transforming class Lnet/minecraft/world/level/block/SugarCaneBlock; +[13:03:43] [main/DEBUG]: Transforming net/minecraft/world/level/block/SugarCaneBlock METHOD (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V to access PUBLIC and LEAVE +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/level/block/StemGrownBlock; +[13:03:43] [main/DEBUG]: Transforming class Lnet/minecraft/world/level/block/StemBlock; +[13:03:43] [main/DEBUG]: Transforming net/minecraft/world/level/block/StemBlock METHOD (Lnet/minecraft/world/level/block/StemGrownBlock;Ljava/util/function/Supplier;Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V to access PUBLIC and LEAVE +[13:03:43] [main/DEBUG]: Transforming class Lnet/minecraft/world/level/block/StairBlock; +[13:03:43] [main/DEBUG]: Transforming net/minecraft/world/level/block/StairBlock METHOD (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V to access PUBLIC and LEAVE +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/level/block/StairBlock$1; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/level/block/SpreadingSnowyDirtBlock; +[13:03:43] [main/DEBUG]: Transforming class Lnet/minecraft/world/level/block/SpongeBlock; +[13:03:43] [main/DEBUG]: Transforming net/minecraft/world/level/block/SpongeBlock METHOD (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V to access PUBLIC and LEAVE +[13:03:43] [main/DEBUG]: Transforming class Lnet/minecraft/world/level/block/SpawnerBlock; +[13:03:43] [main/DEBUG]: Transforming net/minecraft/world/level/block/SpawnerBlock METHOD (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V to access PUBLIC and LEAVE +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/level/block/SoundType; +[13:03:43] [main/DEBUG]: Transforming class Lnet/minecraft/world/level/block/SeagrassBlock; +[13:03:43] [main/DEBUG]: Transforming net/minecraft/world/level/block/SeagrassBlock METHOD (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V to access PUBLIC and LEAVE +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/level/block/SculkShriekerBlock; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/level/block/SculkSensorBlock; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/level/block/SculkCatalystBlock; +[13:03:43] [main/DEBUG]: Transforming class Lnet/minecraft/world/level/block/SaplingBlock; +[13:03:43] [main/DEBUG]: Transforming net/minecraft/world/level/block/SaplingBlock METHOD (Lnet/minecraft/world/level/block/grower/AbstractTreeGrower;Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V to access PUBLIC and LEAVE +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/level/block/RedStoneWireBlock; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/level/block/RedStoneWireBlock$1; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/level/block/RedStoneOreBlock; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/level/block/RailState; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/level/block/RailState$1; +[13:03:43] [main/DEBUG]: Transforming class Lnet/minecraft/world/level/block/RailBlock; +[13:03:43] [main/DEBUG]: Transforming net/minecraft/world/level/block/RailBlock METHOD (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V to access PUBLIC and LEAVE +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/level/block/RailBlock$1; +[13:03:43] [main/DEBUG]: Transforming class Lnet/minecraft/world/level/block/PumpkinBlock; +[13:03:43] [main/DEBUG]: Transforming net/minecraft/world/level/block/PumpkinBlock METHOD (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V to access PUBLIC and LEAVE +[13:03:43] [main/DEBUG]: Transforming class Lnet/minecraft/world/level/block/PoweredRailBlock; +[13:03:43] [main/DEBUG]: Transforming net/minecraft/world/level/block/PoweredRailBlock METHOD (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V to access PUBLIC and LEAVE +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/level/block/PoweredRailBlock$1; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/level/block/PowderSnowBlock; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/level/block/PitcherCropBlock; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/level/block/PitcherCropBlock$PosAndState; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/level/block/NoteBlock; +[13:03:43] [main/DEBUG]: Transforming class Lnet/minecraft/world/level/block/NetherWartBlock; +[13:03:43] [main/DEBUG]: Transforming net/minecraft/world/level/block/NetherWartBlock METHOD (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V to access PUBLIC and LEAVE +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/level/block/MushroomBlock; +[13:03:43] [main/DEBUG]: Transforming class Lnet/minecraft/world/level/block/LiquidBlock; +[13:03:43] [main/DEBUG]: Transforming net/minecraft/world/level/block/LiquidBlock METHOD (Lnet/minecraft/world/level/material/FlowingFluid;Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V to access PUBLIC and LEAVE +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/level/block/LeavesBlock; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/level/block/GrowingPlantHeadBlock; +[13:03:43] [main/DEBUG]: Transforming class Lnet/minecraft/world/level/block/FungusBlock; +[13:03:43] [main/DEBUG]: Transforming net/minecraft/world/level/block/FungusBlock METHOD (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;Lnet/minecraft/resources/ResourceKey;Lnet/minecraft/world/level/block/Block;)V to access PUBLIC and LEAVE +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/level/block/FlowerPotBlock; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/level/block/FlowerBlock; +[13:03:43] [main/DEBUG]: Transforming class Lnet/minecraft/world/level/block/FireBlock; +[13:03:43] [main/DEBUG]: Transforming net/minecraft/world/level/block/FireBlock METHOD m_221164_(Lnet/minecraft/world/level/block/state/BlockState;)I to access PUBLIC and LEAVE +[13:03:43] [main/DEBUG]: Transforming net/minecraft/world/level/block/FireBlock METHOD m_221166_(Lnet/minecraft/world/level/block/state/BlockState;)I to access PUBLIC and LEAVE +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/level/block/FenceGateBlock; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/level/block/FenceGateBlock$1; +[13:03:43] [main/DEBUG]: Transforming class Lnet/minecraft/world/level/block/FarmBlock; +[13:03:43] [main/DEBUG]: Transforming net/minecraft/world/level/block/FarmBlock METHOD (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V to access PUBLIC and LEAVE +[13:03:43] [main/DEBUG]: Transforming class Lnet/minecraft/world/level/block/EnchantmentTableBlock; +[13:03:43] [main/DEBUG]: Transforming net/minecraft/world/level/block/EnchantmentTableBlock METHOD (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V to access PUBLIC and LEAVE +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/level/block/DropperBlock; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/level/block/DropExperienceBlock; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/level/block/DoublePlantBlock; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/level/block/DiodeBlock; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/level/block/DetectorRailBlock; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/level/block/DetectorRailBlock$1; +[13:03:43] [main/DEBUG]: Transforming class Lnet/minecraft/world/level/block/DeadBushBlock; +[13:03:43] [main/DEBUG]: Transforming net/minecraft/world/level/block/DeadBushBlock METHOD (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V to access PUBLIC and LEAVE +[13:03:43] [main/DEBUG]: Transforming class Lnet/minecraft/world/level/block/CropBlock; +[13:03:43] [main/DEBUG]: Transforming net/minecraft/world/level/block/CropBlock METHOD (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V to access PUBLIC and LEAVE +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/level/block/CoralBlock; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/level/block/ConcretePowderBlock; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/level/block/ComparatorBlock; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/level/block/CocoaBlock; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/level/block/CocoaBlock$1; +[13:03:43] [main/DEBUG]: Transforming class Lnet/minecraft/world/level/block/ChorusFlowerBlock; +[13:03:43] [main/DEBUG]: Transforming net/minecraft/world/level/block/ChorusFlowerBlock METHOD (Lnet/minecraft/world/level/block/ChorusPlantBlock;Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V to access PUBLIC and LEAVE +[13:03:43] [main/DEBUG]: Transforming class Lnet/minecraft/world/level/block/ChestBlock; +[13:03:43] [main/DEBUG]: Transforming net/minecraft/world/level/block/ChestBlock METHOD (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;Ljava/util/function/Supplier;)V to access PUBLIC and LEAVE +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/level/block/ChestBlock$4; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/level/block/ChestBlock$3; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/level/block/ChestBlock$2; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/level/block/ChestBlock$2$1; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/level/block/ChestBlock$1; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/level/block/CampfireBlock; +[13:03:43] [main/DEBUG]: Transforming class Lnet/minecraft/world/level/block/CactusBlock; +[13:03:43] [main/DEBUG]: Transforming net/minecraft/world/level/block/CactusBlock METHOD (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V to access PUBLIC and LEAVE +[13:03:43] [main/DEBUG]: Transforming class Lnet/minecraft/world/level/block/BushBlock; +[13:03:43] [main/DEBUG]: Transforming net/minecraft/world/level/block/BushBlock METHOD (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V to access PUBLIC and LEAVE +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/level/block/BucketPickup; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/level/block/Blocks; +[13:03:43] [main/DEBUG]: Transforming class Lnet/minecraft/world/level/block/Block; +[13:03:43] [main/DEBUG]: Transforming net/minecraft/world/level/block/Block METHOD m_49805_(Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;I)V to access PUBLIC and LEAVE +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/level/block/Block$BlockStatePairKey; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/level/block/Block$2; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/level/block/Block$1; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/level/block/BeehiveBlock; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/level/block/BaseRailBlock; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/level/block/BaseRailBlock$1; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/level/block/BaseFireBlock; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/level/block/BambooStalkBlock; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/level/block/BambooSaplingBlock; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/level/biome/package-info; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/level/biome/TheEndBiomeSource; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/level/biome/OverworldBiomeBuilder; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/level/biome/MultiNoiseBiomeSourceParameterLists; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/level/biome/MultiNoiseBiomeSourceParameterList; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/level/biome/MultiNoiseBiomeSourceParameterList$Preset; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/level/biome/MultiNoiseBiomeSourceParameterList$Preset$SourceProvider; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/level/biome/MultiNoiseBiomeSourceParameterList$Preset$2; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/level/biome/MultiNoiseBiomeSourceParameterList$Preset$1; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/level/biome/MultiNoiseBiomeSource; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/level/biome/FixedBiomeSource; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/level/biome/FeatureSorter; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/level/biome/FeatureSorter$StepFeatureData; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/level/biome/FeatureSorter$1FeatureData; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/level/biome/Climate; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/level/biome/Climate$TargetPoint; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/level/biome/Climate$SpawnFinder; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/level/biome/Climate$SpawnFinder$Result; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/level/biome/Climate$Sampler; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/level/biome/Climate$RTree; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/level/biome/Climate$RTree$SubTree; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/level/biome/Climate$RTree$Node; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/level/biome/Climate$RTree$Leaf; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/level/biome/Climate$ParameterPoint; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/level/biome/Climate$ParameterList; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/level/biome/Climate$Parameter; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/level/biome/Climate$DistanceMetric; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/level/biome/CheckerboardColumnBiomeSource; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/level/biome/Biomes; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/level/biome/BiomeSources; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/level/biome/BiomeSource; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/level/biome/BiomeResolver; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/level/biome/BiomeManager; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/level/biome/BiomeManager$NoiseBiomeSource; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/level/biome/AmbientParticleSettings; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/level/biome/AmbientMoodSettings; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/level/biome/AmbientAdditionsSettings; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/level/biome/BiomeSpecialEffects$GrassColorModifier$ColorModifier; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/level/biome/MobSpawnSettings; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/level/biome/MobSpawnSettings$SpawnerData; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/level/biome/MobSpawnSettings$MobSpawnCost; +[13:03:43] [main/DEBUG]: Transforming class Lnet/minecraft/world/level/biome/MobSpawnSettings$Builder; +[13:03:43] [main/DEBUG]: Transforming net/minecraft/world/level/biome/MobSpawnSettings$Builder FIELD f_48362_ to access PROTECTED and LEAVE +[13:03:43] [main/DEBUG]: Transforming net/minecraft/world/level/biome/MobSpawnSettings$Builder FIELD f_48363_ to access PROTECTED and LEAVE +[13:03:43] [main/DEBUG]: Transforming net/minecraft/world/level/biome/MobSpawnSettings$Builder FIELD f_48364_ to access PROTECTED and LEAVE +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/level/biome/BiomeSpecialEffects; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/level/biome/BiomeSpecialEffects$GrassColorModifier; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/level/biome/BiomeSpecialEffects$GrassColorModifier$3; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/level/biome/BiomeSpecialEffects$GrassColorModifier$2; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/level/biome/BiomeSpecialEffects$GrassColorModifier$1; +[13:03:43] [main/DEBUG]: Transforming class Lnet/minecraft/world/level/biome/BiomeSpecialEffects$Builder; +[13:03:43] [main/DEBUG]: Transforming net/minecraft/world/level/biome/BiomeSpecialEffects$Builder FIELD f_48005_ to access PROTECTED and LEAVE +[13:03:43] [main/DEBUG]: Transforming net/minecraft/world/level/biome/BiomeSpecialEffects$Builder FIELD f_48006_ to access PROTECTED and LEAVE +[13:03:43] [main/DEBUG]: Transforming net/minecraft/world/level/biome/BiomeSpecialEffects$Builder FIELD f_48007_ to access PROTECTED and LEAVE +[13:03:43] [main/DEBUG]: Transforming net/minecraft/world/level/biome/BiomeSpecialEffects$Builder FIELD f_48008_ to access PROTECTED and LEAVE +[13:03:43] [main/DEBUG]: Transforming net/minecraft/world/level/biome/BiomeSpecialEffects$Builder FIELD f_48009_ to access PROTECTED and LEAVE +[13:03:43] [main/DEBUG]: Transforming net/minecraft/world/level/biome/BiomeSpecialEffects$Builder FIELD f_48010_ to access PROTECTED and LEAVE +[13:03:43] [main/DEBUG]: Transforming net/minecraft/world/level/biome/BiomeSpecialEffects$Builder FIELD f_48011_ to access PROTECTED and LEAVE +[13:03:43] [main/DEBUG]: Transforming net/minecraft/world/level/biome/BiomeSpecialEffects$Builder FIELD f_48012_ to access PROTECTED and LEAVE +[13:03:43] [main/DEBUG]: Transforming net/minecraft/world/level/biome/BiomeSpecialEffects$Builder FIELD f_48013_ to access PROTECTED and LEAVE +[13:03:43] [main/DEBUG]: Transforming net/minecraft/world/level/biome/BiomeSpecialEffects$Builder FIELD f_48014_ to access PROTECTED and LEAVE +[13:03:43] [main/DEBUG]: Transforming net/minecraft/world/level/biome/BiomeSpecialEffects$Builder FIELD f_48015_ to access PROTECTED and LEAVE +[13:03:43] [main/DEBUG]: Transforming net/minecraft/world/level/biome/BiomeSpecialEffects$Builder FIELD f_48016_ to access PROTECTED and LEAVE +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/level/biome/BiomeGenerationSettings; +[13:03:43] [main/DEBUG]: Transforming class Lnet/minecraft/world/level/biome/BiomeGenerationSettings$PlainBuilder; +[13:03:43] [main/DEBUG]: Transforming net/minecraft/world/level/biome/BiomeGenerationSettings$PlainBuilder FIELD f_254678_ to access PROTECTED and LEAVE +[13:03:43] [main/DEBUG]: Transforming net/minecraft/world/level/biome/BiomeGenerationSettings$PlainBuilder FIELD f_254648_ to access PROTECTED and LEAVE +[13:03:43] [main/DEBUG]: Transforming net/minecraft/world/level/biome/BiomeGenerationSettings$PlainBuilder METHOD m_255276_(I)V to access PROTECTED and LEAVE +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/level/biome/BiomeGenerationSettings$Builder; +[13:03:43] [main/DEBUG]: Transforming class Lnet/minecraft/world/level/biome/Biome; +[13:03:43] [main/DEBUG]: Transforming net/minecraft/world/level/biome/Biome INNERCLASS ClimateSettings to access PUBLIC and LEAVE +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/level/biome/Biome$TemperatureModifier; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/level/biome/Biome$TemperatureModifier$2; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/level/biome/Biome$TemperatureModifier$1; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/level/biome/Biome$Precipitation; +[13:03:43] [main/DEBUG]: Transforming class Lnet/minecraft/world/level/biome/Biome$ClimateSettings; +[13:03:43] [main/DEBUG]: Transforming net/minecraft/world/level/biome/Biome$ClimateSettings CLASS to access PUBLIC and LEAVE +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/level/biome/Biome$BiomeBuilder; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/level/biome/Biome$1; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/level/WorldGenLevel; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/level/WorldDataConfiguration; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/level/StructureManager; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/level/SpawnData; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/level/SpawnData$CustomSpawnRules; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/level/ServerLevelAccessor; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/level/PotentialCalculator; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/level/PotentialCalculator$PointCharge; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/level/PathNavigationRegion; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/level/NoiseColumn; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/level/LocalMobCapCalculator; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/level/LocalMobCapCalculator$MobCounts; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/level/LightLayer; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/level/LevelWriter; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/level/LevelTimeAccess; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/level/LevelSimulatedReader; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/level/LevelSimulatedRW; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/level/LevelHeightAccessor; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/level/LevelHeightAccessor$1; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/level/LevelAccessor; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/level/ItemLike; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/level/GrassColor; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/level/GameType; +[13:03:43] [main/DEBUG]: Transforming class Lnet/minecraft/world/level/GameRules; +[13:03:43] [main/DEBUG]: Transforming net/minecraft/world/level/GameRules METHOD m_46189_(Ljava/lang/String;Lnet/minecraft/world/level/GameRules$Category;Lnet/minecraft/world/level/GameRules$Type;)Lnet/minecraft/world/level/GameRules$Key; to access PUBLIC and LEAVE +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/level/GameRules$VisitorCaller; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/level/GameRules$Value; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/level/GameRules$Type; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/level/GameRules$Key; +[13:03:43] [main/DEBUG]: Transforming class Lnet/minecraft/world/level/GameRules$IntegerValue; +[13:03:43] [main/DEBUG]: Transforming net/minecraft/world/level/GameRules$IntegerValue METHOD m_46294_(ILjava/util/function/BiConsumer;)Lnet/minecraft/world/level/GameRules$Type; to access PUBLIC and LEAVE +[13:03:43] [main/DEBUG]: Transforming net/minecraft/world/level/GameRules$IntegerValue METHOD m_46312_(I)Lnet/minecraft/world/level/GameRules$Type; to access PUBLIC and LEAVE +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/level/GameRules$GameRuleTypeVisitor; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/level/GameRules$Category; +[13:03:43] [main/DEBUG]: Transforming class Lnet/minecraft/world/level/GameRules$BooleanValue; +[13:03:43] [main/DEBUG]: Transforming net/minecraft/world/level/GameRules$BooleanValue METHOD m_46252_(ZLjava/util/function/BiConsumer;)Lnet/minecraft/world/level/GameRules$Type; to access PUBLIC and LEAVE +[13:03:43] [main/DEBUG]: Transforming net/minecraft/world/level/GameRules$BooleanValue METHOD m_46250_(Z)Lnet/minecraft/world/level/GameRules$Type; to access PUBLIC and LEAVE +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/level/FoliageColor; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/level/EntityGetter; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/level/EntityBasedExplosionDamageCalculator; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/level/EmptyBlockGetter; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/level/CustomSpawner; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/level/CommonLevelAccessor; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/level/ColorResolver; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/level/CollisionGetter; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/level/ClipBlockStateContext; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/level/ChunkPos; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/level/ChunkPos$1; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/level/BlockEventData; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/level/BlockCollisions; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/level/BaseCommandBlock; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/level/SignalGetter; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/level/NaturalSpawner; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/level/NaturalSpawner$SpawnState; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/level/NaturalSpawner$SpawnPredicate; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/level/NaturalSpawner$ChunkGetter; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/level/NaturalSpawner$AfterSpawnCallback; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/level/NaturalSpawner$1; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/level/LevelSettings; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/level/LevelReader; +[13:03:43] [main/DEBUG]: Transforming class Lnet/minecraft/world/level/Level; +[13:03:43] [main/DEBUG]: Transforming net/minecraft/world/level/Level FIELD f_46437_ to access PUBLIC and LEAVE +[13:03:43] [main/DEBUG]: Transforming net/minecraft/world/level/Level FIELD f_46438_ to access PUBLIC and LEAVE +[13:03:43] [main/DEBUG]: Transforming net/minecraft/world/level/Level FIELD f_46439_ to access PUBLIC and LEAVE +[13:03:43] [main/DEBUG]: Transforming net/minecraft/world/level/Level FIELD f_46440_ to access PUBLIC and LEAVE +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/level/Level$ExplosionInteraction; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/level/Level$2; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/level/Level$1; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/level/ForcedChunksSavedData; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/level/ExplosionDamageCalculator; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/level/Explosion; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/level/Explosion$BlockInteraction; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/level/DataPackConfig; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/level/ClipContext; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/level/ClipContext$ShapeGetter; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/level/ClipContext$Fluid; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/level/ClipContext$Block; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/level/BlockGetter; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/level/BlockAndTintGetter; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/level/BaseSpawner; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/item/trading/package-info; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/item/trading/MerchantOffers; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/item/trading/Merchant; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/item/trading/MerchantOffer; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/item/package-info; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/item/enchantment/package-info; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/item/enchantment/WaterWorkerEnchantment; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/item/enchantment/WaterWalkerEnchantment; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/item/enchantment/VanishingCurseEnchantment; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/item/enchantment/UntouchingEnchantment; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/item/enchantment/TridentRiptideEnchantment; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/item/enchantment/TridentLoyaltyEnchantment; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/item/enchantment/TridentImpalerEnchantment; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/item/enchantment/TridentChannelingEnchantment; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/item/enchantment/ThornsEnchantment; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/item/enchantment/SwiftSneakEnchantment; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/item/enchantment/SweepingEdgeEnchantment; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/item/enchantment/SoulSpeedEnchantment; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/item/enchantment/QuickChargeEnchantment; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/item/enchantment/ProtectionEnchantment; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/item/enchantment/ProtectionEnchantment$Type; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/item/enchantment/OxygenEnchantment; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/item/enchantment/MultiShotEnchantment; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/item/enchantment/MendingEnchantment; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/item/enchantment/LootBonusEnchantment; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/item/enchantment/KnockbackEnchantment; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/item/enchantment/FishingSpeedEnchantment; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/item/enchantment/FireAspectEnchantment; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/item/enchantment/Enchantments; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/item/enchantment/EnchantmentInstance; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/item/enchantment/DigDurabilityEnchantment; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/item/enchantment/DamageEnchantment; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/item/enchantment/BindingCurseEnchantment; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/item/enchantment/ArrowPiercingEnchantment; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/item/enchantment/ArrowKnockbackEnchantment; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/item/enchantment/ArrowInfiniteEnchantment; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/item/enchantment/ArrowFireEnchantment; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/item/enchantment/ArrowDamageEnchantment; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/item/enchantment/FrostWalkerEnchantment; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/item/enchantment/EnchantmentHelper; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/item/enchantment/EnchantmentHelper$EnchantmentVisitor; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/item/enchantment/EnchantmentCategory; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/item/enchantment/EnchantmentCategory$9; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/item/enchantment/EnchantmentCategory$8; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/item/enchantment/EnchantmentCategory$7; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/item/enchantment/EnchantmentCategory$6; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/item/enchantment/EnchantmentCategory$5; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/item/enchantment/EnchantmentCategory$4; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/item/enchantment/EnchantmentCategory$3; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/item/enchantment/EnchantmentCategory$2; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/item/enchantment/EnchantmentCategory$14; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/item/enchantment/EnchantmentCategory$13; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/item/enchantment/EnchantmentCategory$12; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/item/enchantment/EnchantmentCategory$11; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/item/enchantment/EnchantmentCategory$10; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/item/enchantment/EnchantmentCategory$1; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/item/enchantment/Enchantment; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/item/enchantment/Enchantment$Rarity; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/item/enchantment/DiggingEnchantment; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/item/crafting/package-info; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/item/crafting/TippedArrowRecipe; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/item/crafting/SuspiciousStewRecipe; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/item/crafting/StonecutterRecipe; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/item/crafting/SmokingRecipe; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/item/crafting/SmithingRecipe; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/item/crafting/SmeltingRecipe; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/item/crafting/SingleItemRecipe; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/item/crafting/SingleItemRecipe$Serializer; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/item/crafting/SingleItemRecipe$Serializer$SingleItemMaker; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/item/crafting/SimpleCraftingRecipeSerializer; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/item/crafting/SimpleCraftingRecipeSerializer$Factory; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/item/crafting/ShieldDecorationRecipe; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/item/crafting/MapExtendingRecipe; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/item/crafting/MapCloningRecipe; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/item/crafting/FireworkStarFadeRecipe; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/item/crafting/FireworkRocketRecipe; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/item/crafting/DecoratedPotRecipe; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/item/crafting/CustomRecipe; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/item/crafting/CraftingRecipe; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/item/crafting/CraftingBookCategory; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/item/crafting/CookingBookCategory; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/item/crafting/CampfireCookingRecipe; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/item/crafting/BlastingRecipe; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/item/crafting/ArmorDyeRecipe; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/item/crafting/AbstractCookingRecipe; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/item/crafting/RecipeType$2; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/item/crafting/SmithingTrimRecipe; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/item/crafting/SmithingTrimRecipe$Serializer; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/item/crafting/SmithingTransformRecipe; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/item/crafting/SmithingTransformRecipe$Serializer; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/item/crafting/SimpleCookingSerializer; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/item/crafting/SimpleCookingSerializer$CookieBaker; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/item/crafting/ShulkerBoxColoring; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/item/crafting/ShapelessRecipe; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/item/crafting/ShapelessRecipe$Serializer; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/item/crafting/ShapedRecipe; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/item/crafting/ShapedRecipe$Serializer; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/item/crafting/RepairItemRecipe; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/item/crafting/RecipeType; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/item/crafting/RecipeType$1; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/item/crafting/RecipeSerializer; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/item/crafting/RecipeManager; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/item/crafting/RecipeManager$CachedCheck; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/item/crafting/RecipeManager$1; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/item/crafting/Recipe; +[13:03:43] [main/DEBUG]: Transforming class Lnet/minecraft/world/item/crafting/Ingredient; +[13:03:43] [main/DEBUG]: Transforming net/minecraft/world/item/crafting/Ingredient INNERCLASS Value to access PUBLIC and LEAVE +[13:03:43] [main/DEBUG]: Transforming net/minecraft/world/item/crafting/Ingredient INNERCLASS TagValue to access PUBLIC and LEAVE +[13:03:43] [main/DEBUG]: Transforming net/minecraft/world/item/crafting/Ingredient INNERCLASS ItemValue to access PUBLIC and LEAVE +[13:03:43] [main/DEBUG]: Transforming net/minecraft/world/item/crafting/Ingredient CLASS to access PUBLIC and REMOVEFINAL +[13:03:43] [main/DEBUG]: Transforming net/minecraft/world/item/crafting/Ingredient METHOD (Ljava/util/stream/Stream;)V to access PROTECTED and LEAVE +[13:03:43] [main/DEBUG]: Transforming net/minecraft/world/item/crafting/Ingredient METHOD m_43923_(Lnet/minecraft/network/FriendlyByteBuf;)V to access PUBLIC and MAKEFINAL +[13:03:43] [main/DEBUG]: Transforming net/minecraft/world/item/crafting/Ingredient METHOD m_43938_(Ljava/util/stream/Stream;)Lnet/minecraft/world/item/crafting/Ingredient; to access PUBLIC and LEAVE +[13:03:43] [main/DEBUG]: Transforming net/minecraft/world/item/crafting/Ingredient METHOD m_43919_(Lcom/google/gson/JsonObject;)Lnet/minecraft/world/item/crafting/Ingredient$Value; to access PUBLIC and LEAVE +[13:03:43] [main/DEBUG]: Transforming class Lnet/minecraft/world/item/crafting/Ingredient$Value; +[13:03:43] [main/DEBUG]: Transforming net/minecraft/world/item/crafting/Ingredient$Value CLASS to access PUBLIC and LEAVE +[13:03:43] [main/DEBUG]: Transforming class Lnet/minecraft/world/item/crafting/Ingredient$TagValue; +[13:03:43] [main/DEBUG]: Transforming net/minecraft/world/item/crafting/Ingredient$TagValue CLASS to access PUBLIC and LEAVE +[13:03:43] [main/DEBUG]: Transforming net/minecraft/world/item/crafting/Ingredient$TagValue METHOD (Lnet/minecraft/tags/TagKey;)V to access PUBLIC and LEAVE +[13:03:43] [main/DEBUG]: Transforming class Lnet/minecraft/world/item/crafting/Ingredient$ItemValue; +[13:03:43] [main/DEBUG]: Transforming net/minecraft/world/item/crafting/Ingredient$ItemValue CLASS to access PUBLIC and LEAVE +[13:03:43] [main/DEBUG]: Transforming net/minecraft/world/item/crafting/Ingredient$ItemValue METHOD (Lnet/minecraft/world/item/ItemStack;)V to access PUBLIC and LEAVE +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/item/crafting/FireworkStarRecipe; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/item/crafting/BookCloningRecipe; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/item/crafting/BannerDuplicateRecipe; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/item/context/package-info; +[13:03:43] [main/DEBUG]: Transforming class Lnet/minecraft/world/item/context/UseOnContext; +[13:03:43] [main/DEBUG]: Transforming net/minecraft/world/item/context/UseOnContext METHOD (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/phys/BlockHitResult;)V to access PUBLIC and LEAVE +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/item/context/DirectionalPlaceContext; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/item/context/DirectionalPlaceContext$1; +[13:03:43] [main/DEBUG]: Transforming class Lnet/minecraft/world/item/context/BlockPlaceContext; +[13:03:43] [main/DEBUG]: Transforming net/minecraft/world/item/context/BlockPlaceContext METHOD (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/phys/BlockHitResult;)V to access PUBLIC and LEAVE +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/item/armortrim/package-info; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/item/armortrim/TrimPatterns; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/item/armortrim/TrimPattern; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/item/armortrim/TrimMaterials; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/item/armortrim/TrimMaterial; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/item/armortrim/ArmorTrim; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/item/alchemy/package-info; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/item/alchemy/Potions; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/item/alchemy/PotionUtils; +[13:03:43] [main/DEBUG]: Transforming class Lnet/minecraft/world/item/alchemy/PotionBrewing; +[13:03:43] [main/DEBUG]: Transforming net/minecraft/world/item/alchemy/PotionBrewing INNERCLASS Mix to access PUBLIC and LEAVE +[13:03:43] [main/DEBUG]: Transforming class Lnet/minecraft/world/item/alchemy/PotionBrewing$Mix; +[13:03:43] [main/DEBUG]: Transforming net/minecraft/world/item/alchemy/PotionBrewing$Mix CLASS to access PUBLIC and LEAVE +[13:03:43] [main/DEBUG]: Transforming net/minecraft/world/item/alchemy/PotionBrewing$Mix FIELD f_43533_ to access PUBLIC and LEAVE +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/item/alchemy/Potion; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/item/WrittenBookItem; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/item/WritableBookItem; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/item/Vanishable; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/item/TridentItem; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/item/TooltipFlag; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/item/TooltipFlag$Default; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/item/TippedArrowItem; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/item/TieredItem; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/item/ThrowablePotionItem; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/item/SpyglassItem; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/item/SplashPotionItem; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/item/SpectralArrowItem; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/item/SolidBucketItem; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/item/SnowballItem; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/item/SmithingTemplateItem; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/item/SimpleFoiledItem; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/item/SignItem; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/item/SignApplicator; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/item/ServerItemCooldowns; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/item/ScaffoldingBlockItem; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/item/SaddleItem; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/item/ProjectileWeaponItem; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/item/PotionItem; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/item/PlayerHeadItem; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/item/PlaceOnWaterBlockItem; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/item/NameTagItem; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/item/LingeringPotionItem; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/item/LeadItem; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/item/KnowledgeBookItem; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/item/ItemUtils; +[13:03:43] [main/DEBUG]: Transforming class Lnet/minecraft/world/item/ItemStackLinkedSet; +[13:03:43] [main/DEBUG]: Transforming net/minecraft/world/item/ItemStackLinkedSet FIELD f_260558_ to access PUBLIC and LEAVE +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/item/ItemStackLinkedSet$1; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/item/ItemNameBlockItem; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/item/ItemFrameItem; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/item/ItemCooldowns; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/item/ItemCooldowns$CooldownInstance; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/item/Instruments; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/item/InstrumentItem; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/item/Instrument; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/item/InkSacItem; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/item/HoneycombItem; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/item/HoneyBottleItem; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/item/HangingSignItem; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/item/HangingEntityItem; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/item/GlowInkSacItem; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/item/GameMasterBlockItem; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/item/FoodOnAStickItem; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/item/FlintAndSteelItem; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/item/FireChargeItem; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/item/ExperienceBottleItem; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/item/Equipable; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/item/EnderpearlItem; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/item/EnderEyeItem; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/item/EndCrystalItem; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/item/EnchantedGoldenAppleItem; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/item/EnchantedBookItem; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/item/EmptyMapItem; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/item/EggItem; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/item/DyeableLeatherItem; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/item/DyeableArmorItem; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/item/DyeItem; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/item/DoubleHighBlockItem; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/item/DiscFragmentItem; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/item/DebugStickItem; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/item/ComplexItem; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/item/CompassItem; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/item/BrushItem; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/item/BrushItem$DustParticlesDelta; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/item/BrushItem$1; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/item/BowlFoodItem; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/item/BottleItem; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/item/BookItem; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/item/BoatItem; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/item/BedItem; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/item/BannerPatternItem; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/item/ArmorStandItem; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/item/ArmorMaterials; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/item/ArmorMaterial; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/item/AirItem; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/item/AdventureModeCheck; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/item/Items$1; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/item/UseAnim; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/item/Tiers; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/item/Tier; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/item/SwordItem; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/item/SuspiciousStewItem; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/item/StandingAndWallBlockItem; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/item/SpawnEggItem; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/item/ShovelItem; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/item/ShieldItem; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/item/ShearsItem; +[13:03:43] [main/DEBUG]: Transforming class Lnet/minecraft/world/item/RecordItem; +[13:03:43] [main/DEBUG]: Transforming net/minecraft/world/item/RecordItem METHOD (ILnet/minecraft/sounds/SoundEvent;Lnet/minecraft/world/item/Item$Properties;I)V to access PUBLIC and LEAVE +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/item/Rarity; +[13:03:43] [main/DEBUG]: Transforming class Lnet/minecraft/world/item/PickaxeItem; +[13:03:43] [main/DEBUG]: Transforming net/minecraft/world/item/PickaxeItem METHOD (Lnet/minecraft/world/item/Tier;IFLnet/minecraft/world/item/Item$Properties;)V to access PUBLIC and LEAVE +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/item/MobBucketItem; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/item/MinecartItem; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/item/MinecartItem$1; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/item/MilkBucketItem; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/item/MapItem; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/item/Items; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/item/ItemStack; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/item/ItemStack$TooltipPart; +[13:03:43] [main/DEBUG]: Transforming class Lnet/minecraft/world/item/ItemDisplayContext; +[13:03:43] [main/DEBUG]: Transforming net/minecraft/world/item/ItemDisplayContext FIELD f_268735_ to access PRIVATE and REMOVEFINAL +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/item/Item; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/item/Item$Properties; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/item/Item$1; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/item/HorseArmorItem; +[13:03:43] [main/DEBUG]: Transforming class Lnet/minecraft/world/item/HoeItem; +[13:03:43] [main/DEBUG]: Transforming net/minecraft/world/item/HoeItem METHOD (Lnet/minecraft/world/item/Tier;IFLnet/minecraft/world/item/Item$Properties;)V to access PUBLIC and LEAVE +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/item/FishingRodItem; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/item/FireworkStarItem; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/item/FireworkRocketItem; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/item/FireworkRocketItem$Shape; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/item/ElytraItem; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/item/DyeableHorseArmorItem; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/item/DyeColor; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/item/DispensibleContainerItem; +[13:03:43] [main/DEBUG]: Transforming class Lnet/minecraft/world/item/DiggerItem; +[13:03:43] [main/DEBUG]: Transforming net/minecraft/world/item/DiggerItem METHOD (FFLnet/minecraft/world/item/Tier;Lnet/minecraft/tags/TagKey;Lnet/minecraft/world/item/Item$Properties;)V to access PUBLIC and LEAVE +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/item/CrossbowItem; +[13:03:43] [main/DEBUG]: Transforming class Lnet/minecraft/world/item/CreativeModeTabs; +[13:03:43] [main/DEBUG]: Transforming net/minecraft/world/item/CreativeModeTabs FIELD f_256788_ to access PUBLIC and LEAVE +[13:03:43] [main/DEBUG]: Transforming net/minecraft/world/item/CreativeModeTabs FIELD f_256725_ to access PUBLIC and LEAVE +[13:03:43] [main/DEBUG]: Transforming net/minecraft/world/item/CreativeModeTabs FIELD f_256776_ to access PUBLIC and LEAVE +[13:03:43] [main/DEBUG]: Transforming net/minecraft/world/item/CreativeModeTabs FIELD f_256791_ to access PUBLIC and LEAVE +[13:03:43] [main/DEBUG]: Transforming net/minecraft/world/item/CreativeModeTabs FIELD f_257028_ to access PUBLIC and LEAVE +[13:03:43] [main/DEBUG]: Transforming net/minecraft/world/item/CreativeModeTabs FIELD f_256917_ to access PUBLIC and LEAVE +[13:03:43] [main/DEBUG]: Transforming net/minecraft/world/item/CreativeModeTabs FIELD f_256750_ to access PUBLIC and LEAVE +[13:03:43] [main/DEBUG]: Transforming net/minecraft/world/item/CreativeModeTabs FIELD f_256869_ to access PUBLIC and LEAVE +[13:03:43] [main/DEBUG]: Transforming net/minecraft/world/item/CreativeModeTabs FIELD f_256797_ to access PUBLIC and LEAVE +[13:03:43] [main/DEBUG]: Transforming net/minecraft/world/item/CreativeModeTabs FIELD f_256839_ to access PUBLIC and LEAVE +[13:03:43] [main/DEBUG]: Transforming net/minecraft/world/item/CreativeModeTabs FIELD f_256968_ to access PUBLIC and LEAVE +[13:03:43] [main/DEBUG]: Transforming net/minecraft/world/item/CreativeModeTabs FIELD f_256731_ to access PUBLIC and LEAVE +[13:03:43] [main/DEBUG]: Transforming net/minecraft/world/item/CreativeModeTabs FIELD f_256837_ to access PUBLIC and LEAVE +[13:03:43] [main/DEBUG]: Transforming net/minecraft/world/item/CreativeModeTabs FIELD f_257039_ to access PUBLIC and LEAVE +[13:03:43] [main/DEBUG]: Transforming class Lnet/minecraft/world/item/CreativeModeTab; +[13:03:43] [main/DEBUG]: Transforming net/minecraft/world/item/CreativeModeTab INNERCLASS Output to access PUBLIC and LEAVE +[13:03:43] [main/DEBUG]: Transforming net/minecraft/world/item/CreativeModeTab INNERCLASS TabVisibility to access PUBLIC and LEAVE +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/item/CreativeModeTab$Type; +[13:03:43] [main/DEBUG]: Transforming class Lnet/minecraft/world/item/CreativeModeTab$TabVisibility; +[13:03:43] [main/DEBUG]: Transforming net/minecraft/world/item/CreativeModeTab$TabVisibility CLASS to access PUBLIC and LEAVE +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/item/CreativeModeTab$Row; +[13:03:43] [main/DEBUG]: Transforming class Lnet/minecraft/world/item/CreativeModeTab$Output; +[13:03:43] [main/DEBUG]: Transforming net/minecraft/world/item/CreativeModeTab$Output CLASS to access PUBLIC and LEAVE +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/item/CreativeModeTab$ItemDisplayParameters; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/item/CreativeModeTab$ItemDisplayBuilder; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/item/CreativeModeTab$DisplayItemsGenerator; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/item/CreativeModeTab$Builder; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/item/CreativeModeTab$1; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/item/ChorusFruitItem; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/item/BundleItem; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/item/BucketItem; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/item/BowItem; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/item/BoneMealItem; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/item/BlockItem; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/item/BannerItem; +[13:03:43] [main/DEBUG]: Transforming class Lnet/minecraft/world/item/AxeItem; +[13:03:43] [main/DEBUG]: Transforming net/minecraft/world/item/AxeItem METHOD (Lnet/minecraft/world/item/Tier;FFLnet/minecraft/world/item/Item$Properties;)V to access PUBLIC and LEAVE +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/item/ArrowItem; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/item/ArmorItem; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/item/ArmorItem$Type; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/item/ArmorItem$1; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/inventory/tooltip/package-info; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/inventory/tooltip/TooltipComponent; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/inventory/tooltip/BundleTooltip; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/inventory/package-info; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/inventory/TransientCraftingContainer; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/inventory/StonecutterMenu; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/inventory/StonecutterMenu$2; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/inventory/StonecutterMenu$1; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/inventory/StackedContentsCompatible; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/inventory/SmokerMenu; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/inventory/SmithingMenu; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/inventory/SimpleContainerData; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/inventory/ShulkerBoxSlot; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/inventory/ShulkerBoxMenu; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/inventory/ResultContainer; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/inventory/RecipeHolder; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/inventory/PlayerEnderChestContainer; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/inventory/MerchantResultSlot; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/inventory/MerchantMenu; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/inventory/MerchantContainer; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/inventory/MenuConstructor; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/inventory/LoomMenu; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/inventory/LoomMenu$6; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/inventory/LoomMenu$5; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/inventory/LoomMenu$4; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/inventory/LoomMenu$3; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/inventory/LoomMenu$2; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/inventory/LoomMenu$1; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/inventory/LecternMenu; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/inventory/LecternMenu$1; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/inventory/ItemCombinerMenuSlotDefinition; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/inventory/ItemCombinerMenuSlotDefinition$SlotDefinition; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/inventory/ItemCombinerMenuSlotDefinition$Builder; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/inventory/ItemCombinerMenu; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/inventory/ItemCombinerMenu$3; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/inventory/ItemCombinerMenu$2; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/inventory/ItemCombinerMenu$1; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/inventory/HorseInventoryMenu; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/inventory/HorseInventoryMenu$2; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/inventory/HorseInventoryMenu$1; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/inventory/HopperMenu; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/inventory/FurnaceMenu; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/inventory/FurnaceFuelSlot; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/inventory/DispenserMenu; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/inventory/DataSlot; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/inventory/DataSlot$3; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/inventory/DataSlot$2; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/inventory/DataSlot$1; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/inventory/CraftingMenu; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/inventory/CraftingContainer; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/inventory/ContainerSynchronizer; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/inventory/ContainerListener; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/inventory/ContainerLevelAccess; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/inventory/ContainerLevelAccess$2; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/inventory/ContainerLevelAccess$1; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/inventory/ContainerData; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/inventory/ClickType; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/inventory/ClickAction; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/inventory/ChestMenu; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/inventory/CartographyTableMenu; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/inventory/CartographyTableMenu$5; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/inventory/CartographyTableMenu$4; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/inventory/CartographyTableMenu$3; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/inventory/CartographyTableMenu$2; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/inventory/CartographyTableMenu$1; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/inventory/BlastFurnaceMenu; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/inventory/Slot; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/inventory/ResultSlot; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/inventory/RecipeBookType; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/inventory/RecipeBookMenu; +[13:03:43] [main/DEBUG]: Transforming class Lnet/minecraft/world/inventory/MenuType; +[13:03:43] [main/DEBUG]: Transforming net/minecraft/world/inventory/MenuType INNERCLASS MenuSupplier to access PUBLIC and LEAVE +[13:03:43] [main/DEBUG]: Transforming net/minecraft/world/inventory/MenuType METHOD (Lnet/minecraft/world/inventory/MenuType$MenuSupplier;Lnet/minecraft/world/flag/FeatureFlagSet;)V to access PUBLIC and LEAVE +[13:03:43] [main/DEBUG]: Transforming class Lnet/minecraft/world/inventory/MenuType$MenuSupplier; +[13:03:43] [main/DEBUG]: Transforming net/minecraft/world/inventory/MenuType$MenuSupplier CLASS to access PUBLIC and LEAVE +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/inventory/InventoryMenu; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/inventory/InventoryMenu$2; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/inventory/InventoryMenu$1; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/inventory/GrindstoneMenu; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/inventory/GrindstoneMenu$4; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/inventory/GrindstoneMenu$3; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/inventory/GrindstoneMenu$2; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/inventory/GrindstoneMenu$1; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/inventory/FurnaceResultSlot; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/inventory/EnchantmentMenu; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/inventory/EnchantmentMenu$3; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/inventory/EnchantmentMenu$2; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/inventory/EnchantmentMenu$1; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/inventory/BrewingStandMenu; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/inventory/BrewingStandMenu$PotionSlot; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/inventory/BrewingStandMenu$IngredientsSlot; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/inventory/BrewingStandMenu$FuelSlot; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/inventory/BeaconMenu; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/inventory/BeaconMenu$PaymentSlot; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/inventory/BeaconMenu$1; +[13:03:43] [main/DEBUG]: Transforming class Lnet/minecraft/world/inventory/AnvilMenu; +[13:03:43] [main/DEBUG]: Transforming net/minecraft/world/inventory/AnvilMenu FIELD f_39000_ to access PUBLIC and LEAVE +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/inventory/AnvilMenu$1; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/inventory/AbstractFurnaceMenu; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/inventory/AbstractContainerMenu; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/inventory/AbstractContainerMenu$1; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/food/package-info; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/food/Foods; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/food/FoodConstants; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/food/FoodProperties; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/food/FoodProperties$Builder; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/food/FoodData; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/flag/package-info; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/flag/FeatureFlags; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/flag/FeatureFlagUniverse; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/flag/FeatureFlagSet; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/flag/FeatureFlagRegistry; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/flag/FeatureFlagRegistry$Builder; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/flag/FeatureFlag; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/flag/FeatureElement; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/vehicle/package-info; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/vehicle/MinecartTNT; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/vehicle/MinecartHopper; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/vehicle/MinecartChest; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/vehicle/DismountHelper; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/vehicle/MinecartSpawner; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/vehicle/MinecartSpawner$1; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/vehicle/MinecartFurnace; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/vehicle/MinecartCommandBlock; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/vehicle/MinecartCommandBlock$MinecartCommandBase; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/vehicle/Minecart; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/vehicle/ContainerEntity; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/vehicle/ContainerEntity$1; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/vehicle/ChestBoat; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/vehicle/ChestBoat$1; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/vehicle/Boat; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/vehicle/Boat$Type; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/vehicle/Boat$Status; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/vehicle/Boat$1; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/vehicle/AbstractMinecartContainer; +[13:03:43] [main/DEBUG]: Transforming class Lnet/minecraft/world/entity/vehicle/AbstractMinecart; +[13:03:43] [main/DEBUG]: Transforming net/minecraft/world/entity/vehicle/AbstractMinecart METHOD m_213728_()Lnet/minecraft/world/item/Item; to access PROTECTED and LEAVE +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/vehicle/AbstractMinecart$Type; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/vehicle/AbstractMinecart$1; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/schedule/package-info; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/schedule/Timeline; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/schedule/ScheduleBuilder; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/schedule/ScheduleBuilder$ActivityTransition; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/schedule/Schedule; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/schedule/Keyframe; +[13:03:43] [main/DEBUG]: Transforming class Lnet/minecraft/world/entity/schedule/Activity; +[13:03:43] [main/DEBUG]: Transforming net/minecraft/world/entity/schedule/Activity METHOD (Ljava/lang/String;)V to access PUBLIC and LEAVE +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/raid/package-info; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/raid/Raids; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/raid/Raider; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/raid/Raider$RaiderMoveThroughVillageGoal; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/raid/Raider$RaiderCelebration; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/raid/Raider$ObtainRaidLeaderBannerGoal; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/raid/Raider$HoldGroundAttackGoal; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/raid/Raid; +[13:03:43] [main/DEBUG]: Transforming class Lnet/minecraft/world/entity/raid/Raid$RaiderType; +[13:03:43] [main/DEBUG]: Transforming net/minecraft/world/entity/raid/Raid$RaiderType FIELD f_37813_ to access PRIVATE and REMOVEFINAL +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/raid/Raid$RaidStatus; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/raid/Raid$1; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/projectile/package-info; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/projectile/ThrownTrident; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/projectile/ThrownPotion; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/projectile/ThrownExperienceBottle; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/projectile/ThrownEgg; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/projectile/ThrowableItemProjectile; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/projectile/SpectralArrow; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/projectile/Snowball; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/projectile/ItemSupplier; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/projectile/Fireball; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/projectile/EyeOfEnder; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/projectile/EvokerFangs; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/projectile/DragonFireball; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/projectile/Arrow; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/projectile/WitherSkull; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/projectile/ThrownEnderpearl; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/projectile/ThrowableProjectile; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/projectile/SmallFireball; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/projectile/ShulkerBullet; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/projectile/ProjectileUtil; +[13:03:43] [main/DEBUG]: Transforming class Lnet/minecraft/world/entity/projectile/Projectile; +[13:03:43] [main/DEBUG]: Transforming net/minecraft/world/entity/projectile/Projectile METHOD (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V to access PROTECTED and LEAVE +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/projectile/LlamaSpit; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/projectile/LargeFireball; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/projectile/FishingHook; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/projectile/FishingHook$OpenWaterType; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/projectile/FishingHook$FishHookState; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/projectile/FishingHook$1; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/projectile/FireworkRocketEntity; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/projectile/AbstractHurtingProjectile; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/projectile/AbstractArrow; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/projectile/AbstractArrow$Pickup; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/projectile/AbstractArrow$1; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/player/package-info; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/player/StackedContents; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/player/StackedContents$RecipePicker; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/player/ProfilePublicKey; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/player/ProfilePublicKey$ValidationException; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/player/ProfilePublicKey$Data; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/player/ProfileKeyPair; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/player/PlayerModelPart; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/player/ChatVisiblity; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/player/Abilities; +[13:03:43] [main/DEBUG]: Transforming class Lnet/minecraft/world/entity/player/Player; +[13:03:43] [main/DEBUG]: Transforming net/minecraft/world/entity/player/Player METHOD m_6915_()V to access PUBLIC and LEAVE +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/player/Player$BedSleepingProblem; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/player/Player$1; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/player/Inventory; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/package-info; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/npc/package-info; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/npc/WanderingTraderSpawner; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/npc/WanderingTrader; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/npc/WanderingTrader$WanderToPositionGoal; +[13:03:43] [main/DEBUG]: Transforming class Lnet/minecraft/world/entity/npc/VillagerType; +[13:03:43] [main/DEBUG]: Transforming net/minecraft/world/entity/npc/VillagerType METHOD (Ljava/lang/String;)V to access PUBLIC and LEAVE +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/npc/VillagerTrades; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/npc/VillagerTrades$TreasureMapForEmeralds; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/npc/VillagerTrades$TippedArrowForItemsAndEmeralds; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/npc/VillagerTrades$SuspiciousStewForEmerald; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/npc/VillagerTrades$ItemsForEmeralds; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/npc/VillagerTrades$ItemsAndEmeraldsToItems; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/npc/VillagerTrades$ItemListing; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/npc/VillagerTrades$EnchantedItemForEmeralds; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/npc/VillagerTrades$EnchantBookForEmeralds; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/npc/VillagerTrades$EmeraldsForVillagerTypeItem; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/npc/VillagerTrades$EmeraldForItems; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/npc/VillagerTrades$DyedArmorForEmeralds; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/npc/VillagerProfession; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/npc/VillagerDataHolder; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/npc/VillagerData; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/npc/Npc; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/npc/InventoryCarrier; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/npc/ClientSideMerchant; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/npc/Villager; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/npc/CatSpawner; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/npc/AbstractVillager; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/monster/warden/package-info; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/monster/warden/WardenSpawnTracker; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/monster/warden/WardenAi; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/monster/warden/Warden; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/monster/warden/Warden$VibrationUser; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/monster/warden/Warden$2; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/monster/warden/Warden$1; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/monster/warden/Warden$1$1; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/monster/warden/AngerManagement; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/monster/warden/AngerManagement$Sorter; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/monster/warden/AngerManagement$1; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/monster/warden/AngerLevel; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/monster/piglin/package-info; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/monster/piglin/StopAdmiringIfTiredOfTryingToReachItem; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/monster/piglin/StopAdmiringIfItemTooFarAway; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/monster/piglin/StartHuntingHoglin; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/monster/piglin/StartAdmiringItemIfSeen; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/monster/piglin/RememberIfHoglinWasKilled; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/monster/piglin/PiglinBruteAi; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/monster/piglin/PiglinBrute; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/monster/piglin/PiglinArmPose; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/monster/piglin/StopHoldingItemIfNoLongerAdmiring; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/monster/piglin/PiglinAi; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/monster/piglin/Piglin; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/monster/piglin/AbstractPiglin; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/monster/package-info; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/monster/hoglin/package-info; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/monster/hoglin/HoglinBase; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/monster/hoglin/HoglinAi; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/monster/hoglin/Hoglin; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/monster/ZombifiedPiglin; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/monster/Zoglin; +[13:03:43] [main/DEBUG]: Transforming class Lnet/minecraft/world/entity/monster/WitherSkeleton; +[13:03:43] [main/DEBUG]: Transforming net/minecraft/world/entity/monster/WitherSkeleton METHOD m_7878_()Lnet/minecraft/sounds/SoundEvent; to access PROTECTED and LEAVE +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/monster/Witch; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/monster/Vindicator; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/monster/Vindicator$VindicatorMeleeAttackGoal; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/monster/Vindicator$VindicatorJohnnyAttackGoal; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/monster/Vindicator$VindicatorBreakDoorGoal; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/monster/Vex; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/monster/Vex$VexRandomMoveGoal; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/monster/Vex$VexMoveControl; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/monster/Vex$VexCopyOwnerTargetGoal; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/monster/Vex$VexChargeAttackGoal; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/monster/Strider; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/monster/Strider$StriderPathNavigation; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/monster/Strider$StriderGoToLavaGoal; +[13:03:43] [main/DEBUG]: Transforming class Lnet/minecraft/world/entity/monster/Stray; +[13:03:43] [main/DEBUG]: Transforming net/minecraft/world/entity/monster/Stray METHOD m_7878_()Lnet/minecraft/sounds/SoundEvent; to access PROTECTED and LEAVE +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/monster/SpellcasterIllager; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/monster/SpellcasterIllager$SpellcasterUseSpellGoal; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/monster/SpellcasterIllager$SpellcasterCastingSpellGoal; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/monster/SpellcasterIllager$IllagerSpell; +[13:03:43] [main/DEBUG]: Transforming class Lnet/minecraft/world/entity/monster/Skeleton; +[13:03:43] [main/DEBUG]: Transforming net/minecraft/world/entity/monster/Skeleton METHOD m_7878_()Lnet/minecraft/sounds/SoundEvent; to access PROTECTED and LEAVE +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/monster/RangedAttackMob; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/monster/Phantom; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/monster/Phantom$PhantomSweepAttackGoal; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/monster/Phantom$PhantomMoveTargetGoal; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/monster/Phantom$PhantomMoveControl; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/monster/Phantom$PhantomLookControl; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/monster/Phantom$PhantomCircleAroundAnchorGoal; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/monster/Phantom$PhantomBodyRotationControl; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/monster/Phantom$PhantomAttackStrategyGoal; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/monster/Phantom$PhantomAttackPlayerTargetGoal; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/monster/Phantom$AttackPhase; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/monster/PatrollingMonster; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/monster/PatrollingMonster$LongDistancePatrolGoal; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/monster/Husk; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/monster/Guardian; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/monster/Guardian$GuardianMoveControl; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/monster/Guardian$GuardianAttackSelector; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/monster/Guardian$GuardianAttackGoal; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/monster/Giant; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/monster/Ghast; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/monster/Ghast$RandomFloatAroundGoal; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/monster/Ghast$GhastShootFireballGoal; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/monster/Ghast$GhastMoveControl; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/monster/Ghast$GhastLookGoal; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/monster/Enemy; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/monster/Endermite; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/monster/ElderGuardian; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/monster/Drowned; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/monster/Drowned$DrownedTridentAttackGoal; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/monster/Drowned$DrownedSwimUpGoal; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/monster/Drowned$DrownedMoveControl; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/monster/Drowned$DrownedGoToWaterGoal; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/monster/Drowned$DrownedGoToBeachGoal; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/monster/Drowned$DrownedAttackGoal; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/monster/Creeper; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/monster/CaveSpider; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/monster/Blaze; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/monster/Blaze$BlazeAttackGoal; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/monster/AbstractIllager; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/monster/AbstractIllager$RaiderOpenDoorGoal; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/monster/AbstractIllager$IllagerArmPose; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/monster/ZombieVillager; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/monster/Zombie; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/monster/Zombie$ZombieGroupData; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/monster/Zombie$ZombieAttackTurtleEggGoal; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/monster/Spider; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/monster/Spider$SpiderTargetGoal; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/monster/Spider$SpiderEffectsGroupData; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/monster/Spider$SpiderAttackGoal; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/monster/Slime; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/monster/Slime$SlimeRandomDirectionGoal; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/monster/Slime$SlimeMoveControl; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/monster/Slime$SlimeKeepOnJumpingGoal; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/monster/Slime$SlimeFloatGoal; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/monster/Slime$SlimeAttackGoal; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/monster/Silverfish; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/monster/Silverfish$SilverfishWakeUpFriendsGoal; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/monster/Silverfish$SilverfishMergeWithStoneGoal; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/monster/Shulker; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/monster/Shulker$ShulkerPeekGoal; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/monster/Shulker$ShulkerNearestAttackGoal; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/monster/Shulker$ShulkerLookControl; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/monster/Shulker$ShulkerDefenseAttackGoal; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/monster/Shulker$ShulkerBodyRotationControl; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/monster/Shulker$ShulkerAttackGoal; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/monster/Ravager; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/monster/Ravager$RavagerMeleeAttackGoal; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/monster/Pillager; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/monster/Monster; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/monster/MagmaCube; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/monster/Illusioner; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/monster/Illusioner$IllusionerMirrorSpellGoal; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/monster/Illusioner$IllusionerBlindnessSpellGoal; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/monster/Evoker; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/monster/Evoker$EvokerWololoSpellGoal; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/monster/Evoker$EvokerSummonSpellGoal; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/monster/Evoker$EvokerCastingSpellGoal; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/monster/Evoker$EvokerAttackSpellGoal; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/monster/EnderMan; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/monster/EnderMan$EndermanTakeBlockGoal; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/monster/EnderMan$EndermanLookForPlayerGoal; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/monster/EnderMan$EndermanLeaveBlockGoal; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/monster/EnderMan$EndermanFreezeWhenLookedAt; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/monster/CrossbowAttackMob; +[13:03:43] [main/DEBUG]: Transforming class Lnet/minecraft/world/entity/monster/AbstractSkeleton; +[13:03:43] [main/DEBUG]: Transforming net/minecraft/world/entity/monster/AbstractSkeleton METHOD m_7878_()Lnet/minecraft/sounds/SoundEvent; to access PROTECTED and LEAVE +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/monster/AbstractSkeleton$1; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/item/package-info; +[13:03:43] [main/DEBUG]: Transforming class Lnet/minecraft/world/entity/item/PrimedTnt; +[13:03:43] [main/DEBUG]: Transforming net/minecraft/world/entity/item/PrimedTnt METHOD m_32103_()V to access PROTECTED and LEAVE +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/item/ItemEntity; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/item/FallingBlockEntity; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/decoration/package-info; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/decoration/PaintingVariants; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/decoration/PaintingVariant; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/decoration/Painting; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/decoration/LeashFenceKnotEntity; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/decoration/ItemFrame; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/decoration/ItemFrame$2; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/decoration/ItemFrame$1; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/decoration/GlowItemFrame; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/decoration/HangingEntity; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/decoration/HangingEntity$1; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/decoration/ArmorStand; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/decoration/ArmorStand$1; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/boss/wither/package-info; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/boss/wither/WitherBoss; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/boss/wither/WitherBoss$WitherDoNothingGoal; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/boss/package-info; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/boss/enderdragon/phases/package-info; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/boss/enderdragon/phases/EnderDragonPhaseManager; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/boss/enderdragon/phases/EnderDragonPhase; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/boss/enderdragon/phases/DragonTakeoffPhase; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/boss/enderdragon/phases/DragonStrafePlayerPhase; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/boss/enderdragon/phases/DragonSittingScanningPhase; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/boss/enderdragon/phases/DragonSittingFlamingPhase; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/boss/enderdragon/phases/DragonSittingAttackingPhase; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/boss/enderdragon/phases/DragonPhaseInstance; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/boss/enderdragon/phases/DragonLandingPhase; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/boss/enderdragon/phases/DragonLandingApproachPhase; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/boss/enderdragon/phases/DragonHoverPhase; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/boss/enderdragon/phases/DragonHoldingPatternPhase; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/boss/enderdragon/phases/DragonDeathPhase; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/boss/enderdragon/phases/DragonChargePlayerPhase; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/boss/enderdragon/phases/AbstractDragonSittingPhase; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/boss/enderdragon/phases/AbstractDragonPhaseInstance; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/boss/enderdragon/package-info; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/boss/enderdragon/EndCrystal; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/boss/enderdragon/EnderDragon; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/boss/EnderDragonPart; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/animal/sniffer/SnifferAi; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/animal/sniffer/SnifferAi$Sniffing; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/animal/sniffer/SnifferAi$Searching; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/animal/sniffer/SnifferAi$Scenting; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/animal/sniffer/SnifferAi$FinishedDigging; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/animal/sniffer/SnifferAi$FeelingHappy; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/animal/sniffer/SnifferAi$Digging; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/animal/sniffer/SnifferAi$3; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/animal/sniffer/SnifferAi$2; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/animal/sniffer/SnifferAi$1; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/animal/sniffer/Sniffer; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/animal/sniffer/Sniffer$State; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/animal/sniffer/Sniffer$1; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/animal/package-info; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/animal/horse/package-info; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/animal/horse/ZombieHorse; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/animal/horse/Variant; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/animal/horse/TraderLlama; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/animal/horse/TraderLlama$TraderLlamaDefendWanderingTraderGoal; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/animal/horse/SkeletonHorse; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/animal/horse/Mule; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/animal/horse/Markings; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/animal/horse/Llama; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/animal/horse/Llama$Variant; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/animal/horse/Llama$LlamaHurtByTargetGoal; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/animal/horse/Llama$LlamaGroupData; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/animal/horse/Llama$LlamaAttackWolfGoal; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/animal/horse/Donkey; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/animal/horse/AbstractChestedHorse; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/animal/horse/AbstractChestedHorse$1; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/animal/horse/SkeletonTrapGoal; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/animal/horse/Horse; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/animal/horse/Horse$HorseGroupData; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/animal/horse/AbstractHorse; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/animal/horse/AbstractHorse$1; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/animal/goat/package-info; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/animal/goat/GoatAi; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/animal/goat/Goat; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/animal/frog/package-info; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/animal/frog/TadpoleAi; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/animal/frog/Tadpole; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/animal/frog/ShootTongue; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/animal/frog/ShootTongue$State; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/animal/frog/ShootTongue$1; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/animal/frog/FrogAi; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/animal/frog/Frog; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/animal/frog/Frog$FrogPathNavigation; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/animal/frog/Frog$FrogNodeEvaluator; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/animal/frog/Frog$FrogLookControl; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/animal/camel/package-info; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/animal/camel/CamelAi; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/animal/camel/CamelAi$RandomSitting; +[13:03:43] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/animal/camel/CamelAi$CamelPanic; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/animal/camel/Camel; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/animal/camel/Camel$CamelMoveControl; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/animal/camel/Camel$CamelBodyRotationControl; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/animal/axolotl/package-info; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/animal/axolotl/ValidatePlayDead; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/animal/axolotl/PlayDead; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/animal/axolotl/AxolotlAi; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/animal/axolotl/Axolotl; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/animal/axolotl/Axolotl$Variant; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/animal/axolotl/Axolotl$AxolotlMoveControl; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/animal/axolotl/Axolotl$AxolotlLookControl; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/animal/axolotl/Axolotl$AxolotlGroupData; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/animal/allay/package-info; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/animal/allay/AllayAi; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/animal/allay/Allay; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/animal/allay/Allay$VibrationUser; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/animal/allay/Allay$JukeboxListener; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/animal/WaterAnimal; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/animal/Turtle; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/animal/Turtle$TurtleTravelGoal; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/animal/Turtle$TurtleRandomStrollGoal; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/animal/Turtle$TurtlePathNavigation; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/animal/Turtle$TurtlePanicGoal; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/animal/Turtle$TurtleMoveControl; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/animal/Turtle$TurtleLayEggGoal; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/animal/Turtle$TurtleGoToWaterGoal; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/animal/Turtle$TurtleGoHomeGoal; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/animal/Turtle$TurtleBreedGoal; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/animal/TropicalFish; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/animal/TropicalFish$Variant; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/animal/TropicalFish$TropicalFishGroupData; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/animal/TropicalFish$Pattern; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/animal/TropicalFish$Base; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/animal/Squid; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/animal/Squid$SquidRandomMovementGoal; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/animal/Squid$SquidFleeGoal; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/animal/ShoulderRidingEntity; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/animal/Salmon; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/animal/Pufferfish; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/animal/Pufferfish$PufferfishPuffGoal; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/animal/PolarBear; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/animal/PolarBear$PolarBearPanicGoal; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/animal/PolarBear$PolarBearMeleeAttackGoal; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/animal/PolarBear$PolarBearHurtByTargetGoal; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/animal/PolarBear$PolarBearAttackPlayersGoal; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/animal/Panda; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/animal/Panda$PandaSneezeGoal; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/animal/Panda$PandaSitGoal; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/animal/Panda$PandaRollGoal; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/animal/Panda$PandaPanicGoal; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/animal/Panda$PandaMoveControl; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/animal/Panda$PandaLookAtPlayerGoal; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/animal/Panda$PandaLieOnBackGoal; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/animal/Panda$PandaHurtByTargetGoal; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/animal/Panda$PandaBreedGoal; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/animal/Panda$PandaAvoidGoal; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/animal/Panda$PandaAttackGoal; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/animal/Panda$Gene; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/animal/IronGolem; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/animal/IronGolem$Crackiness; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/animal/FrogVariant; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/animal/FlyingAnimal; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/animal/Dolphin; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/animal/Dolphin$PlayWithItemsGoal; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/animal/Dolphin$DolphinSwimWithPlayerGoal; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/animal/Dolphin$DolphinSwimToTreasureGoal; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/animal/Cow; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/animal/Cod; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/animal/Chicken; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/animal/CatVariant; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/animal/Bucketable; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/animal/AbstractSchoolingFish; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/animal/AbstractSchoolingFish$SchoolSpawnGroupData; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/animal/AbstractGolem; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/animal/AbstractFish; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/animal/AbstractFish$FishSwimGoal; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/animal/AbstractFish$FishMoveControl; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/animal/Wolf; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/animal/Wolf$WolfPanicGoal; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/animal/Wolf$WolfAvoidEntityGoal; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/animal/SnowGolem; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/animal/Sheep; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/animal/Sheep$2; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/animal/Sheep$1; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/animal/Rabbit; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/animal/Rabbit$Variant; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/animal/Rabbit$RaidGardenGoal; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/animal/Rabbit$RabbitPanicGoal; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/animal/Rabbit$RabbitMoveControl; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/animal/Rabbit$RabbitJumpControl; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/animal/Rabbit$RabbitGroupData; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/animal/Rabbit$RabbitAvoidEntityGoal; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/animal/Rabbit$EvilRabbitAttackGoal; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/animal/Pig; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/animal/Parrot; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/animal/Parrot$Variant; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/animal/Parrot$ParrotWanderGoal; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/animal/Parrot$1; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/animal/Ocelot; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/animal/Ocelot$OcelotTemptGoal; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/animal/Ocelot$OcelotAvoidEntityGoal; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/animal/MushroomCow; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/animal/MushroomCow$MushroomType; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/animal/Fox; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/animal/Fox$Type; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/animal/Fox$StalkPreyGoal; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/animal/Fox$SleepGoal; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/animal/Fox$SeekShelterGoal; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/animal/Fox$PerchAndSearchGoal; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/animal/Fox$FoxStrollThroughVillageGoal; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/animal/Fox$FoxSearchForItemsGoal; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/animal/Fox$FoxPounceGoal; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/animal/Fox$FoxPanicGoal; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/animal/Fox$FoxMoveControl; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/animal/Fox$FoxMeleeAttackGoal; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/animal/Fox$FoxLookControl; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/animal/Fox$FoxLookAtPlayerGoal; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/animal/Fox$FoxGroupData; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/animal/Fox$FoxFollowParentGoal; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/animal/Fox$FoxFloatGoal; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/animal/Fox$FoxEatBerriesGoal; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/animal/Fox$FoxBreedGoal; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/animal/Fox$FoxBehaviorGoal; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/animal/Fox$FoxAlertableEntitiesSelector; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/animal/Fox$FaceplantGoal; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/animal/Fox$DefendTrustedTargetGoal; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/animal/Cat; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/animal/Cat$CatTemptGoal; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/animal/Cat$CatRelaxOnOwnerGoal; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/animal/Cat$CatAvoidEntityGoal; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/animal/Bee; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/animal/Bee$BeeWanderGoal; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/animal/Bee$BeePollinateGoal; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/animal/Bee$BeeLookControl; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/animal/Bee$BeeLocateHiveGoal; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/animal/Bee$BeeHurtByOtherGoal; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/animal/Bee$BeeGrowCropGoal; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/animal/Bee$BeeGoToKnownFlowerGoal; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/animal/Bee$BeeGoToHiveGoal; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/animal/Bee$BeeEnterHiveGoal; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/animal/Bee$BeeBecomeAngryTargetGoal; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/animal/Bee$BeeAttackGoal; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/animal/Bee$BaseBeeGoal; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/animal/Bee$1; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/animal/Animal; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/ambient/package-info; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/ambient/Bat; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/ambient/AmbientCreature; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/ai/village/poi/package-info; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/ai/village/poi/PoiType; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/ai/village/poi/PoiSection; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/ai/village/poi/PoiRecord; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/ai/village/poi/PoiManager; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/ai/village/poi/PoiManager$Occupancy; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/ai/village/poi/PoiManager$DistanceTracker; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/ai/village/poi/PoiTypes; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/ai/village/package-info; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/ai/village/ReputationEventType; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/ai/village/ReputationEventType$1; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/ai/village/VillageSiege; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/ai/village/VillageSiege$State; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/ai/util/package-info; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/ai/util/RandomPos; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/ai/util/LandRandomPos; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/ai/util/HoverRandomPos; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/ai/util/GoalUtils; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/ai/util/DefaultRandomPos; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/ai/util/AirRandomPos; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/ai/util/AirAndWaterRandomPos; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/ai/targeting/package-info; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/ai/targeting/TargetingConditions; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/ai/sensing/package-info; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/ai/sensing/WardenEntitySensor; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/ai/sensing/VillagerHostilesSensor; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/ai/sensing/VillagerBabiesSensor; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/ai/sensing/TemptingSensor; +[13:03:44] [main/DEBUG]: Transforming class Lnet/minecraft/world/entity/ai/sensing/SensorType; +[13:03:44] [main/DEBUG]: Transforming net/minecraft/world/entity/ai/sensing/SensorType METHOD (Ljava/util/function/Supplier;)V to access PUBLIC and LEAVE +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/ai/sensing/Sensor; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/ai/sensing/Sensing; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/ai/sensing/SecondaryPoiSensor; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/ai/sensing/PlayerSensor; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/ai/sensing/PiglinSpecificSensor; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/ai/sensing/PiglinBruteSpecificSensor; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/ai/sensing/NearestVisibleLivingEntitySensor; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/ai/sensing/NearestLivingEntitySensor; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/ai/sensing/NearestItemSensor; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/ai/sensing/NearestBedSensor; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/ai/sensing/IsInWaterSensor; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/ai/sensing/HurtBySensor; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/ai/sensing/HoglinSpecificSensor; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/ai/sensing/GolemSensor; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/ai/sensing/FrogAttackablesSensor; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/ai/sensing/DummySensor; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/ai/sensing/AxolotlAttackablesSensor; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/ai/sensing/AdultSensor; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/ai/package-info; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/ai/navigation/package-info; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/ai/navigation/WaterBoundPathNavigation; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/ai/navigation/GroundPathNavigation; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/ai/navigation/FlyingPathNavigation; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/ai/navigation/AmphibiousPathNavigation; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/ai/navigation/WallClimberNavigation; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/ai/navigation/PathNavigation; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/ai/memory/package-info; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/ai/memory/WalkTarget; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/ai/memory/NearestVisibleLivingEntities; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/ai/memory/MemoryStatus; +[13:03:44] [main/DEBUG]: Transforming class Lnet/minecraft/world/entity/ai/memory/MemoryModuleType; +[13:03:44] [main/DEBUG]: Transforming net/minecraft/world/entity/ai/memory/MemoryModuleType METHOD (Ljava/util/Optional;)V to access PUBLIC and LEAVE +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/ai/memory/ExpirableValue; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/ai/gossip/package-info; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/ai/gossip/GossipType; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/ai/gossip/GossipContainer; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/ai/gossip/GossipContainer$GossipEntry; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/ai/gossip/GossipContainer$EntityGossips; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/ai/goal/target/package-info; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/ai/goal/target/TargetGoal; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/ai/goal/target/ResetUniversalAngerTargetGoal; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/ai/goal/target/OwnerHurtTargetGoal; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/ai/goal/target/OwnerHurtByTargetGoal; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/ai/goal/target/NonTameRandomTargetGoal; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/ai/goal/target/NearestHealableRaiderTargetGoal; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/ai/goal/target/NearestAttackableWitchTargetGoal; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/ai/goal/target/NearestAttackableTargetGoal; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/ai/goal/target/HurtByTargetGoal; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/ai/goal/target/DefendVillageTargetGoal; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/ai/goal/package-info; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/ai/goal/ZombieAttackGoal; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/ai/goal/WrappedGoal; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/ai/goal/WaterAvoidingRandomStrollGoal; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/ai/goal/WaterAvoidingRandomFlyingGoal; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/ai/goal/UseItemGoal; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/ai/goal/TryFindWaterGoal; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/ai/goal/TradeWithPlayerGoal; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/ai/goal/TemptGoal; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/ai/goal/SwellGoal; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/ai/goal/StrollThroughVillageGoal; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/ai/goal/SitWhenOrderedToGoal; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/ai/goal/RestrictSunGoal; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/ai/goal/RangedAttackGoal; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/ai/goal/RandomSwimmingGoal; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/ai/goal/RandomStrollGoal; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/ai/goal/RandomStandGoal; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/ai/goal/RandomLookAroundGoal; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/ai/goal/PathfindToRaidGoal; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/ai/goal/PanicGoal; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/ai/goal/OpenDoorGoal; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/ai/goal/OfferFlowerGoal; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/ai/goal/OcelotAttackGoal; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/ai/goal/MoveTowardsTargetGoal; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/ai/goal/MoveTowardsRestrictionGoal; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/ai/goal/MoveToBlockGoal; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/ai/goal/MoveThroughVillageGoal; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/ai/goal/MoveBackToVillageGoal; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/ai/goal/LookAtTradingPlayerGoal; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/ai/goal/LookAtPlayerGoal; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/ai/goal/LlamaFollowCaravanGoal; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/ai/goal/LeapAtTargetGoal; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/ai/goal/LandOnOwnersShoulderGoal; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/ai/goal/JumpGoal; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/ai/goal/InteractGoal; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/ai/goal/GolemRandomStrollInVillageGoal; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/ai/goal/GoalSelector; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/ai/goal/GoalSelector$2; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/ai/goal/GoalSelector$1; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/ai/goal/Goal; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/ai/goal/Goal$Flag; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/ai/goal/FollowParentGoal; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/ai/goal/FollowOwnerGoal; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/ai/goal/FollowMobGoal; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/ai/goal/FollowFlockLeaderGoal; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/ai/goal/FollowBoatGoal; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/ai/goal/FleeSunGoal; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/ai/goal/DoorInteractGoal; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/ai/goal/DolphinJumpGoal; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/ai/goal/ClimbOnTopOfPowderSnowGoal; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/ai/goal/CatSitOnBlockGoal; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/ai/goal/CatLieOnBedGoal; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/ai/goal/BreedGoal; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/ai/goal/BreathAirGoal; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/ai/goal/BoatGoals; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/ai/goal/BegGoal; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/ai/goal/AvoidEntityGoal; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/ai/goal/RunAroundLikeCrazyGoal; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/ai/goal/RemoveBlockGoal; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/ai/goal/RangedCrossbowAttackGoal; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/ai/goal/RangedCrossbowAttackGoal$CrossbowState; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/ai/goal/RangedBowAttackGoal; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/ai/goal/MeleeAttackGoal; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/ai/goal/FloatGoal; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/ai/goal/EatBlockGoal; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/ai/goal/BreakDoorGoal; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/ai/control/package-info; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/ai/control/SmoothSwimmingMoveControl; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/ai/control/SmoothSwimmingLookControl; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/ai/control/LookControl; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/ai/control/JumpControl; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/ai/control/FlyingMoveControl; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/ai/control/Control; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/ai/control/BodyRotationControl; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/ai/control/MoveControl; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/ai/control/MoveControl$Operation; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/ai/behavior/warden/package-info; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/ai/behavior/warden/TryToSniff; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/ai/behavior/warden/SonicBoom; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/ai/behavior/warden/Sniffing; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/ai/behavior/warden/SetWardenLookTarget; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/ai/behavior/warden/SetRoarTarget; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/ai/behavior/warden/Roar; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/ai/behavior/warden/ForceUnmount; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/ai/behavior/warden/Emerging; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/ai/behavior/warden/Digging; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/ai/behavior/package-info; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/ai/behavior/declarative/package-info; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/ai/behavior/declarative/Trigger; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryCondition; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryCondition$Registered; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryCondition$Present; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryCondition$Absent; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$TriggerWrapper; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$TriggerWrapper$1; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$TriggerWithResult; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$PureMemory; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$PureMemory$1; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Mu; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance$Mu; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance$5; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance$4; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance$3; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance$2; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance$1; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Constant; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Constant$1; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$1; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/ai/behavior/YieldJobSite; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/ai/behavior/WorkAtPoi; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/ai/behavior/WorkAtComposter; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/ai/behavior/WakeUp; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/ai/behavior/VillagerPanicTrigger; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/ai/behavior/VillagerMakeLove; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/ai/behavior/VillagerGoalPackages; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/ai/behavior/VillagerCalmDown; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/ai/behavior/VillageBoundRandomStroll; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/ai/behavior/ValidateNearbyPoi; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/ai/behavior/UseBonemeal; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/ai/behavior/UpdateActivityFromSchedule; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/ai/behavior/TryLaySpawnOnWaterNearLand; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/ai/behavior/TryFindWater; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/ai/behavior/TryFindLandNearWater; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/ai/behavior/TryFindLand; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/ai/behavior/TriggerGate; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/ai/behavior/TradeWithVillager; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/ai/behavior/StrollToPoiList; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/ai/behavior/StrollToPoi; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/ai/behavior/StrollAroundPoi; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/ai/behavior/StopBeingAngryIfTargetDead; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/ai/behavior/StopAttackingIfTargetInvalid; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/ai/behavior/StayCloseToTarget; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/ai/behavior/StartCelebratingIfTargetDead; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/ai/behavior/SocializeAtBell; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/ai/behavior/SleepInBed; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/ai/behavior/ShufflingList; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/ai/behavior/ShufflingList$WeightedEntry; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/ai/behavior/ShufflingList$WeightedEntry$1; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/ai/behavior/ShowTradesToPlayer; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/ai/behavior/SetWalkTargetFromLookTarget; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/ai/behavior/SetWalkTargetFromBlockMemory; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/ai/behavior/SetWalkTargetFromAttackTargetIfTargetOutOfReach; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/ai/behavior/SetWalkTargetAwayFrom; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/ai/behavior/SetRaidStatus; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/ai/behavior/SetLookAndInteract; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/ai/behavior/SetHiddenState; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/ai/behavior/SetEntityLookTargetSometimes; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/ai/behavior/SetEntityLookTargetSometimes$Ticker; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/ai/behavior/SetEntityLookTarget; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/ai/behavior/SetClosestHomeAsWalkTarget; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/ai/behavior/RunOne; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/ai/behavior/RingBell; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/ai/behavior/ResetRaidStatus; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/ai/behavior/ResetProfession; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/ai/behavior/ReactToBell; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/ai/behavior/RandomStroll; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/ai/behavior/RandomLookAround; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/ai/behavior/RamTarget; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/ai/behavior/PrepareRamNearestTarget; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/ai/behavior/PrepareRamNearestTarget$RamCandidate; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/ai/behavior/PositionTracker; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/ai/behavior/PoiCompetitorScan; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/ai/behavior/PlayTagWithOtherKids; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/ai/behavior/OneShot; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/ai/behavior/MoveToTargetSink; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/ai/behavior/MoveToSkySeeingSpot; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/ai/behavior/Mount; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/ai/behavior/MeleeAttack; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/ai/behavior/LookAtTargetSink; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/ai/behavior/LookAndFollowTradingPlayerSink; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/ai/behavior/LongJumpToRandomPos; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/ai/behavior/LongJumpToRandomPos$PossibleJump; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/ai/behavior/LongJumpToPreferredBlock; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/ai/behavior/LongJumpMidJump; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/ai/behavior/LocateHidingPlace; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/ai/behavior/JumpOnBed; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/ai/behavior/InteractWithDoor; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/ai/behavior/InteractWith; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/ai/behavior/InsideBrownianWalk; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/ai/behavior/GoToWantedItem; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/ai/behavior/GoToTargetLocation; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/ai/behavior/GoToPotentialJobSite; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/ai/behavior/GoToClosestVillage; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/ai/behavior/GoAndGiveItemsToTarget; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/ai/behavior/GiveGiftToHero; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/ai/behavior/GateBehavior; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/ai/behavior/GateBehavior$RunningPolicy; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/ai/behavior/GateBehavior$RunningPolicy$2; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/ai/behavior/GateBehavior$RunningPolicy$1; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/ai/behavior/GateBehavior$OrderPolicy; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/ai/behavior/FollowTemptation; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/ai/behavior/EraseMemoryIf; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/ai/behavior/EntityTracker; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/ai/behavior/DoNothing; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/ai/behavior/DismountOrSkipMounting; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/ai/behavior/Croak; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/ai/behavior/CountDownCooldownTicks; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/ai/behavior/CopyMemoryWithExpiry; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/ai/behavior/CelebrateVillagersSurvivedRaid; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/ai/behavior/BlockPosTracker; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/ai/behavior/BehaviorUtils; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/ai/behavior/BehaviorControl; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/ai/behavior/Behavior; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/ai/behavior/Behavior$Status; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/ai/behavior/BecomePassiveIfMemoryPresent; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/ai/behavior/BackUpIfTooClose; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/ai/behavior/BabyFollowAdult; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/ai/behavior/AssignProfessionFromJobSite; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/ai/behavior/AnimalPanic; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/ai/behavior/AnimalMakeLove; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/ai/behavior/AcquirePoi; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/ai/behavior/AcquirePoi$JitteredLinearRetry; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/ai/behavior/Swim; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/ai/behavior/StartAttacking; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/ai/behavior/HarvestFarmland; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/ai/behavior/CrossbowAttack; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/ai/behavior/CrossbowAttack$CrossbowState; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/ai/attributes/package-info; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/ai/attributes/RangedAttribute; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/ai/attributes/Attributes; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/ai/attributes/AttributeModifier; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/ai/attributes/AttributeModifier$Operation; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/ai/attributes/AttributeMap; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/ai/attributes/AttributeInstance; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/ai/attributes/Attribute; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/ai/attributes/DefaultAttributes; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/ai/attributes/AttributeSupplier; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/ai/attributes/AttributeSupplier$Builder; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/ai/Brain; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/ai/Brain$Provider; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/ai/Brain$MemoryValue; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/ai/Brain$1; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/WalkAnimationState; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/VariantHolder; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/TraceableEntity; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/Targeting; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/SpawnGroupData; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/SlotAccess; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/SlotAccess$3; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/SlotAccess$2; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/SlotAccess$1; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/Saddleable; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/RiderShieldingMount; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/ReputationEventHandler; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/RelativeMovement; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/PowerableMob; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/Pose; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/PlayerRideableJumping; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/PlayerRideable; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/PathfinderMob; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/OwnableEntity; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/NeutralMob; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/MoverType; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/MobType; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/MobSpawnType; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/Marker; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/LerpingModel; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/ItemSteerable; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/ItemBasedSteering; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/Interaction; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/Interaction$PlayerAction; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/HumanoidArm; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/HasCustomInventoryScreen; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/GlowSquid; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/EquipmentSlot; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/EquipmentSlot$Type; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/EntitySelector; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/EntitySelector$MobCanWearArmorEntitySelector; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/EntityEvent; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/EntityDimensions; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/Display; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/Display$TransformationInterpolator; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/Display$TextDisplay; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/Display$TextDisplay$TextRenderState; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/Display$TextDisplay$LineSplitter; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/Display$TextDisplay$CachedLine; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/Display$TextDisplay$CachedInfo; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/Display$TextDisplay$Align; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/Display$RenderState; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/Display$LinearIntInterpolator; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/Display$LinearFloatInterpolator; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/Display$ItemDisplay; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/Display$ItemDisplay$ItemRenderState; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/Display$ItemDisplay$1; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/Display$IntInterpolator; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/Display$GenericInterpolator; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/Display$FloatInterpolator; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/Display$ColorInterpolator; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/Display$BlockDisplay; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/Display$BlockDisplay$BlockRenderState; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/Display$BillboardConstraints; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/Display$1; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/Attackable; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/AreaEffectCloud; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/AnimationState; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/AgeableMob; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/AgeableMob$AgeableMobGroupData; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/TamableAnimal; +[13:03:44] [main/DEBUG]: Transforming class Lnet/minecraft/world/entity/SpawnPlacements; +[13:03:44] [main/DEBUG]: Transforming net/minecraft/world/entity/SpawnPlacements METHOD m_21754_(Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/entity/SpawnPlacements$Type;Lnet/minecraft/world/level/levelgen/Heightmap$Types;Lnet/minecraft/world/entity/SpawnPlacements$SpawnPredicate;)V to access PUBLIC and LEAVE +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/SpawnPlacements$Type; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/SpawnPlacements$SpawnPredicate; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/SpawnPlacements$Data; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/Shearable; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/MobCategory; +[13:03:44] [main/DEBUG]: Transforming class Lnet/minecraft/world/entity/Mob; +[13:03:44] [main/DEBUG]: Transforming net/minecraft/world/entity/Mob FIELD f_21345_ to access PUBLIC and LEAVE +[13:03:44] [main/DEBUG]: Transforming net/minecraft/world/entity/Mob FIELD f_21346_ to access PUBLIC and LEAVE +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/Mob$1; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/LivingEntity; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/LivingEntity$Fallsounds; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/LivingEntity$1; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/LightningBolt; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/FlyingMob; +[13:03:44] [main/DEBUG]: Transforming class Lnet/minecraft/world/entity/ExperienceOrb; +[13:03:44] [main/DEBUG]: Transforming net/minecraft/world/entity/ExperienceOrb FIELD f_20770_ to access PUBLIC and LEAVE +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/EntityType; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/EntityType$EntityFactory; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/EntityType$Builder; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/EntityType$1; +[13:03:44] [main/DEBUG]: Transforming class Lnet/minecraft/world/entity/Entity; +[13:03:44] [main/DEBUG]: Transforming net/minecraft/world/entity/Entity FIELD f_19843_ to access PROTECTED and LEAVE +[13:03:44] [main/DEBUG]: Transforming net/minecraft/world/entity/Entity METHOD m_20078_()Ljava/lang/String; to access PUBLIC and LEAVE +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/Entity$RemovalReason; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/Entity$MovementEmission; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/Entity$MoveFunction; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/world/entity/Entity$1; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/world/effect/package-info; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/world/effect/MobEffects; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/world/effect/MobEffects$1; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/world/effect/MobEffectUtil; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/world/effect/MobEffectCategory; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/world/effect/InstantenousMobEffect; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/world/effect/HealthBoostMobEffect; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/world/effect/AttackDamageMobEffect; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/world/effect/AbsoptionMobEffect; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/world/effect/MobEffectInstance; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/world/effect/MobEffectInstance$FactorData; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/world/effect/MobEffect; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/world/damagesource/package-info; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/world/damagesource/FallLocation; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/world/damagesource/DeathMessageType; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/world/damagesource/DamageTypes; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/world/damagesource/DamageType; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/world/damagesource/DamageSources; +[13:03:44] [main/DEBUG]: Transforming class Lnet/minecraft/world/damagesource/DamageSource; +[13:03:44] [main/DEBUG]: Transforming net/minecraft/world/damagesource/DamageSource METHOD (Lnet/minecraft/core/Holder;Lnet/minecraft/world/entity/Entity;Lnet/minecraft/world/entity/Entity;Lnet/minecraft/world/phys/Vec3;)V to access PUBLIC and LEAVE +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/world/damagesource/DamageSource$1; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/world/damagesource/DamageScaling; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/world/damagesource/DamageEffects; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/world/damagesource/CombatTracker; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/world/damagesource/CombatRules; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/world/damagesource/CombatEntry; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/world/WorldlyContainerHolder; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/world/WorldlyContainer; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/world/SimpleMenuProvider; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/world/SimpleContainer; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/world/RandomSequences; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/world/RandomSequences$1; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/world/RandomSequence; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/world/Nameable; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/world/MenuProvider; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/world/LockCode; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/world/InteractionResultHolder; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/world/InteractionResult; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/world/InteractionHand; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/world/DifficultyInstance; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/world/Difficulty; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/world/Containers; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/world/ContainerListener; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/world/ContainerHelper; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/world/Container; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/world/CompoundContainer; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/world/Clearable; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/world/BossEvent; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/world/BossEvent$BossBarOverlay; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/world/BossEvent$BossBarColor; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/util/worldupdate/package-info; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/util/worldupdate/WorldUpgrader; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/util/valueproviders/package-info; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/util/valueproviders/WeightedListInt; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/util/valueproviders/UniformInt; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/util/valueproviders/UniformFloat; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/util/valueproviders/TrapezoidFloat; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/util/valueproviders/SampledFloat; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/util/valueproviders/MultipliedFloats; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/util/valueproviders/IntProviderType; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/util/valueproviders/IntProvider; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/util/valueproviders/FloatProviderType; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/util/valueproviders/FloatProvider; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/util/valueproviders/ConstantInt; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/util/valueproviders/ConstantFloat; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/util/valueproviders/ClampedNormalInt; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/util/valueproviders/ClampedNormalFloat; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/util/valueproviders/ClampedInt; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/util/valueproviders/BiasedToBottomInt; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/util/thread/package-info; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/util/thread/StrictQueue; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/util/thread/StrictQueue$QueueStrictQueue; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/util/thread/StrictQueue$IntRunnable; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/util/thread/StrictQueue$FixedPriorityQueue; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/util/thread/ReentrantBlockableEventLoop; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/util/thread/ProcessorMailbox; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/util/thread/ProcessorHandle; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/util/thread/ProcessorHandle$1; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/util/thread/NamedThreadFactory; +[13:03:44] [main/DEBUG]: Transforming class Lnet/minecraft/util/thread/BlockableEventLoop; +[13:03:44] [main/DEBUG]: Transforming net/minecraft/util/thread/BlockableEventLoop METHOD m_18689_(Ljava/lang/Runnable;)Ljava/util/concurrent/CompletableFuture; to access PUBLIC and LEAVE +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/util/random/package-info; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/util/random/WeightedRandomList; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/util/random/WeightedRandom; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/util/random/WeightedEntry; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/util/random/WeightedEntry$Wrapper; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/util/random/WeightedEntry$IntrusiveBase; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/util/random/Weight; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/util/random/SimpleWeightedRandomList; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/util/random/SimpleWeightedRandomList$Builder; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/util/profiling/package-info; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/util/profiling/metrics/storage/package-info; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/util/profiling/metrics/storage/RecordedDeviation; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/util/profiling/metrics/storage/MetricsPersister; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/util/profiling/metrics/profiling/package-info; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/util/profiling/metrics/profiling/ServerMetricsSamplersProvider; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/util/profiling/metrics/profiling/ServerMetricsSamplersProvider$CpuStats; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/util/profiling/metrics/profiling/ServerMetricsSamplersProvider$1; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/util/profiling/metrics/profiling/ProfilerSamplerAdapter; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/util/profiling/metrics/profiling/MetricsRecorder; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/util/profiling/metrics/profiling/InactiveMetricsRecorder; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/util/profiling/metrics/profiling/ActiveMetricsRecorder; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/util/profiling/metrics/package-info; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/util/profiling/metrics/ProfilerMeasured; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/util/profiling/metrics/MetricsSamplerProvider; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/util/profiling/metrics/MetricsRegistry; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/util/profiling/metrics/MetricsRegistry$AggregatedMetricSampler; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/util/profiling/metrics/MetricSampler; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/util/profiling/metrics/MetricSampler$ValueIncreasedByPercentage; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/util/profiling/metrics/MetricSampler$ThresholdTest; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/util/profiling/metrics/MetricSampler$SamplerResult; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/util/profiling/metrics/MetricSampler$MetricSamplerBuilder; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/util/profiling/metrics/MetricCategory; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/util/profiling/jfr/stats/package-info; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/util/profiling/jfr/stats/TimedStatSummary; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/util/profiling/jfr/stats/TimedStat; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/util/profiling/jfr/stats/TimeStamped; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/util/profiling/jfr/stats/TickTimeStat; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/util/profiling/jfr/stats/ThreadAllocationStat; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/util/profiling/jfr/stats/ThreadAllocationStat$Summary; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/util/profiling/jfr/stats/NetworkPacketSummary; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/util/profiling/jfr/stats/NetworkPacketSummary$PacketIdentification; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/util/profiling/jfr/stats/NetworkPacketSummary$PacketCountAndSize; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/util/profiling/jfr/stats/GcHeapStat; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/util/profiling/jfr/stats/GcHeapStat$Timing; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/util/profiling/jfr/stats/GcHeapStat$Summary; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/util/profiling/jfr/stats/FileIOStat; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/util/profiling/jfr/stats/FileIOStat$Summary; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/util/profiling/jfr/stats/CpuLoadStat; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/util/profiling/jfr/stats/ChunkGenStat; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/util/profiling/jfr/serialize/package-info; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/util/profiling/jfr/serialize/JfrResultJsonSerializer; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/util/profiling/jfr/parse/package-info; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/util/profiling/jfr/parse/JfrStatsResult; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/util/profiling/jfr/parse/JfrStatsParser; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/util/profiling/jfr/parse/JfrStatsParser$MutableCountAndSize; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/util/profiling/jfr/parse/JfrStatsParser$1; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/util/profiling/jfr/package-info; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/util/profiling/jfr/event/package-info; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/util/profiling/jfr/event/WorldLoadFinishedEvent; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/util/profiling/jfr/event/ServerTickTimeEvent; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/util/profiling/jfr/event/ServerTickTimeEvent$Fields; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/util/profiling/jfr/event/PacketSentEvent; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/util/profiling/jfr/event/PacketReceivedEvent; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/util/profiling/jfr/event/PacketEvent; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/util/profiling/jfr/event/PacketEvent$Fields; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/util/profiling/jfr/event/NetworkSummaryEvent; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/util/profiling/jfr/event/NetworkSummaryEvent$SumAggregation; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/util/profiling/jfr/event/NetworkSummaryEvent$Fields; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/util/profiling/jfr/event/ChunkGenerationEvent; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/util/profiling/jfr/event/ChunkGenerationEvent$Fields; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/util/profiling/jfr/callback/package-info; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/util/profiling/jfr/callback/ProfiledDuration; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/util/profiling/jfr/SummaryReporter; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/util/profiling/jfr/Percentiles; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/util/profiling/jfr/JvmProfiler; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/util/profiling/jfr/JvmProfiler$NoOpProfiler; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/util/profiling/jfr/JfrProfiler; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/util/profiling/jfr/JfrProfiler$1; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/util/profiling/jfr/Environment; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/util/profiling/SingleTickProfiler; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/util/profiling/ResultField; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/util/profiling/ProfilerPathEntry; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/util/profiling/ProfilerFiller; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/util/profiling/ProfilerFiller$1; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/util/profiling/ProfileResults; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/util/profiling/ProfileCollector; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/util/profiling/InactiveProfiler; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/util/profiling/FilledProfileResults; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/util/profiling/FilledProfileResults$CounterCollector; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/util/profiling/FilledProfileResults$1; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/util/profiling/EmptyProfileResults; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/util/profiling/ContinuousProfiler; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/util/profiling/ActiveProfiler; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/util/profiling/ActiveProfiler$PathEntry; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/util/package-info; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/util/monitoring/jmx/package-info; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/util/monitoring/jmx/MinecraftServerStatistics; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/util/monitoring/jmx/MinecraftServerStatistics$AttributeDescription; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/util/eventlog/package-info; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/util/eventlog/JsonEventLogReader; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/util/eventlog/JsonEventLogReader$1; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/util/eventlog/JsonEventLog; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/util/eventlog/JsonEventLog$1; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/util/eventlog/EventLogDirectory; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/util/eventlog/EventLogDirectory$RawFile; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/util/eventlog/EventLogDirectory$FileList; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/util/eventlog/EventLogDirectory$FileId; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/util/eventlog/EventLogDirectory$File; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/util/eventlog/EventLogDirectory$CompressedFile; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/util/datafix/schemas/package-info; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/util/datafix/schemas/V99; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/util/datafix/schemas/V99$1; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/util/datafix/schemas/V808; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/util/datafix/schemas/V705; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/util/datafix/schemas/V705$1; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/util/datafix/schemas/V704; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/util/datafix/schemas/V704$1; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/util/datafix/schemas/V703; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/util/datafix/schemas/V702; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/util/datafix/schemas/V701; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/util/datafix/schemas/V700; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/util/datafix/schemas/V501; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/util/datafix/schemas/V3448; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/util/datafix/schemas/V3438; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/util/datafix/schemas/V3328; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/util/datafix/schemas/V3327; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/util/datafix/schemas/V3326; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/util/datafix/schemas/V3325; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/util/datafix/schemas/V3204; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/util/datafix/schemas/V3203; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/util/datafix/schemas/V3202; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/util/datafix/schemas/V3083; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/util/datafix/schemas/V3082; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/util/datafix/schemas/V3081; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/util/datafix/schemas/V3078; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/util/datafix/schemas/V3076; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/util/datafix/schemas/V2842; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/util/datafix/schemas/V2831; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/util/datafix/schemas/V2707; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/util/datafix/schemas/V2704; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/util/datafix/schemas/V2688; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/util/datafix/schemas/V2686; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/util/datafix/schemas/V2684; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/util/datafix/schemas/V2571; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/util/datafix/schemas/V2568; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/util/datafix/schemas/V2551; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/util/datafix/schemas/V2522; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/util/datafix/schemas/V2519; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/util/datafix/schemas/V2509; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/util/datafix/schemas/V2505; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/util/datafix/schemas/V2502; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/util/datafix/schemas/V2501; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/util/datafix/schemas/V2100; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/util/datafix/schemas/V1931; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/util/datafix/schemas/V1929; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/util/datafix/schemas/V1928; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/util/datafix/schemas/V1920; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/util/datafix/schemas/V1909; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/util/datafix/schemas/V1906; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/util/datafix/schemas/V1904; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/util/datafix/schemas/V1801; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/util/datafix/schemas/V1800; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/util/datafix/schemas/V1510; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/util/datafix/schemas/V1486; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/util/datafix/schemas/V1483; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/util/datafix/schemas/V1481; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/util/datafix/schemas/V1470; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/util/datafix/schemas/V1466; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/util/datafix/schemas/V1460; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/util/datafix/schemas/V1451_6; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/util/datafix/schemas/V1451_6$2; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/util/datafix/schemas/V1451_6$1; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/util/datafix/schemas/V1451_5; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/util/datafix/schemas/V1451_4; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/util/datafix/schemas/V1451_3; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/util/datafix/schemas/V1451_2; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/util/datafix/schemas/V1451_1; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/util/datafix/schemas/V1451; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/util/datafix/schemas/V143; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/util/datafix/schemas/V135; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/util/datafix/schemas/V1125; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/util/datafix/schemas/V107; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/util/datafix/schemas/V106; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/util/datafix/schemas/V1022; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/util/datafix/schemas/V102; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/util/datafix/schemas/V100; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/util/datafix/schemas/NamespacedSchema; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/util/datafix/schemas/NamespacedSchema$1; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/util/datafix/schemas/V2832; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/util/datafix/package-info; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/util/datafix/fixes/package-info; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/util/datafix/fixes/ZombieVillagerRebuildXpFix; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/util/datafix/fixes/WriteAndReadFix; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/util/datafix/fixes/WorldGenSettingsHeightAndBiomeFix; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/util/datafix/fixes/WorldGenSettingsFix; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/util/datafix/fixes/WorldGenSettingsFix$StructureFeatureConfiguration; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/util/datafix/fixes/WorldGenSettingsDisallowOldCustomWorldsFix; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/util/datafix/fixes/WeaponSmithChestLootTableFix; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/util/datafix/fixes/WallPropertyFix; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/util/datafix/fixes/VillagerTradeFix; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/util/datafix/fixes/VillagerRebuildLevelAndXpFix; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/util/datafix/fixes/VillagerFollowRangeFix; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/util/datafix/fixes/VillagerDataFix; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/util/datafix/fixes/VariantRenameFix; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/util/datafix/fixes/TrappedChestBlockEntityFix; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/util/datafix/fixes/TrappedChestBlockEntityFix$TrappedChestSection; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/util/datafix/fixes/TeamDisplayNameFix; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/util/datafix/fixes/StructureSettingsFlattenFix; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/util/datafix/fixes/StructureReferenceCountFix; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/util/datafix/fixes/StriderGravityFix; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/util/datafix/fixes/StatsRenameFix; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/util/datafix/fixes/StatsCounterFix; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/util/datafix/fixes/SpawnerDataFix; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/util/datafix/fixes/SimplestEntityRenameFix; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/util/datafix/fixes/SimpleEntityRenameFix; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/util/datafix/fixes/SavedDataUUIDFix; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/util/datafix/fixes/SavedDataFeaturePoolElementFix; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/util/datafix/fixes/ReorganizePoi; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/util/datafix/fixes/RenamedCoralFix; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/util/datafix/fixes/RenamedCoralFansFix; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/util/datafix/fixes/RemoveGolemGossipFix; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/util/datafix/fixes/RemapChunkStatusFix; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/util/datafix/fixes/References; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/util/datafix/fixes/RedstoneWireConnectionsFix; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/util/datafix/fixes/RecipesRenameningFix; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/util/datafix/fixes/RecipesFix; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/util/datafix/fixes/PoiTypeRenameFix; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/util/datafix/fixes/PoiTypeRemoveFix; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/util/datafix/fixes/PlayerUUIDFix; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/util/datafix/fixes/OverreachingTickFix; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/util/datafix/fixes/OptionsRenameFieldFix; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/util/datafix/fixes/OptionsProgrammerArtFix; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/util/datafix/fixes/OptionsLowerCaseLanguageFix; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/util/datafix/fixes/OptionsKeyTranslationFix; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/util/datafix/fixes/OptionsKeyLwjgl3Fix; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/util/datafix/fixes/OptionsForceVBOFix; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/util/datafix/fixes/OptionsAmbientOcclusionFix; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/util/datafix/fixes/OptionsAddTextBackgroundFix; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/util/datafix/fixes/OptionsAccessibilityOnboardFix; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/util/datafix/fixes/OminousBannerRenameFix; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/util/datafix/fixes/OminousBannerBlockEntityRenameFix; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/util/datafix/fixes/ObjectiveRenderTypeFix; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/util/datafix/fixes/ObjectiveDisplayNameFix; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/util/datafix/fixes/NewVillageFix; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/util/datafix/fixes/NamespacedTypeRenameFix; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/util/datafix/fixes/NamedEntityFix; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/util/datafix/fixes/MobSpawnerEntityIdentifiersFix; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/util/datafix/fixes/MissingDimensionFix; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/util/datafix/fixes/MemoryExpiryDataFix; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/util/datafix/fixes/MapIdFix; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/util/datafix/fixes/LevelUUIDFix; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/util/datafix/fixes/LevelFlatGeneratorInfoFix; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/util/datafix/fixes/LevelDataGeneratorOptionsFix; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/util/datafix/fixes/LegacyDragonFightFix; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/util/datafix/fixes/LeavesFix; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/util/datafix/fixes/LeavesFix$Section; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/util/datafix/fixes/LeavesFix$LeavesSection; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/util/datafix/fixes/JigsawRotationFix; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/util/datafix/fixes/JigsawPropertiesFix; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/util/datafix/fixes/ItemWrittenBookPagesStrictJsonFix; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/util/datafix/fixes/ItemWaterPotionFix; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/util/datafix/fixes/ItemStackUUIDFix; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/util/datafix/fixes/ItemStackTheFlatteningFix; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/util/datafix/fixes/ItemStackTagFix; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/util/datafix/fixes/ItemStackSpawnEggFix; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/util/datafix/fixes/ItemStackMapIdFix; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/util/datafix/fixes/ItemStackEnchantmentNamesFix; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/util/datafix/fixes/ItemSpawnEggFix; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/util/datafix/fixes/ItemShulkerBoxColorFix; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/util/datafix/fixes/ItemRenameFix; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/util/datafix/fixes/ItemRenameFix$1; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/util/datafix/fixes/ItemRemoveBlockEntityTagFix; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/util/datafix/fixes/ItemPotionFix; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/util/datafix/fixes/ItemLoreFix; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/util/datafix/fixes/ItemIdFix; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/util/datafix/fixes/ItemCustomNameToComponentFix; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/util/datafix/fixes/ItemBannerColorFix; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/util/datafix/fixes/IglooMetadataRemovalFix; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/util/datafix/fixes/HeightmapRenamingFix; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/util/datafix/fixes/GossipUUIDFix; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/util/datafix/fixes/GoatHornIdFix; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/util/datafix/fixes/FurnaceRecipeFix; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/util/datafix/fixes/ForcePoiRebuild; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/util/datafix/fixes/FilteredSignsFix; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/util/datafix/fixes/FilteredBooksFix; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/util/datafix/fixes/FeatureFlagRemoveFix; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/util/datafix/fixes/EntityZombifiedPiglinRenameFix; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/util/datafix/fixes/EntityZombieVillagerTypeFix; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/util/datafix/fixes/EntityZombieSplitFix; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/util/datafix/fixes/EntityWolfColorFix; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/util/datafix/fixes/EntityVariantFix; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/util/datafix/fixes/EntityUUIDFix; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/util/datafix/fixes/EntityTippedArrowFix; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/util/datafix/fixes/EntityTheRenameningFix; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/util/datafix/fixes/EntityStringUuidFix; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/util/datafix/fixes/EntitySkeletonSplitFix; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/util/datafix/fixes/EntityShulkerRotationFix; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/util/datafix/fixes/EntityShulkerColorFix; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/util/datafix/fixes/EntityRidingToPassengersFix; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/util/datafix/fixes/EntityRenameFix; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/util/datafix/fixes/EntityRedundantChanceTagsFix; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/util/datafix/fixes/EntityRavagerRenameFix; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/util/datafix/fixes/EntityPufferfishRenameFix; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/util/datafix/fixes/EntityProjectileOwnerFix; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/util/datafix/fixes/EntityPaintingMotiveFix; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/util/datafix/fixes/EntityPaintingItemFrameDirectionFix; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/util/datafix/fixes/EntityPaintingFieldsRenameFix; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/util/datafix/fixes/EntityMinecartIdentifiersFix; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/util/datafix/fixes/EntityItemFrameDirectionFix; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/util/datafix/fixes/EntityIdFix; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/util/datafix/fixes/EntityHorseSplitFix; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/util/datafix/fixes/EntityHorseSaddleFix; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/util/datafix/fixes/EntityHealthFix; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/util/datafix/fixes/EntityGoatMissingStateFix; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/util/datafix/fixes/EntityEquipmentToArmorAndHandFix; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/util/datafix/fixes/EntityElderGuardianSplitFix; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/util/datafix/fixes/EntityCustomNameToComponentFix; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/util/datafix/fixes/EntityCodSalmonFix; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/util/datafix/fixes/EntityCatSplitFix; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/util/datafix/fixes/EntityBrushableBlockFieldsRenameFix; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/util/datafix/fixes/EntityBlockStateFix; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/util/datafix/fixes/EntityArmorStandSilentFix; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/util/datafix/fixes/EffectDurationFix; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/util/datafix/fixes/DyeItemRenameFix; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/util/datafix/fixes/DecoratedPotFieldRenameFix; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/util/datafix/fixes/CriteriaRenameFix; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/util/datafix/fixes/ColorlessShulkerEntityFix; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/util/datafix/fixes/ChunkToProtochunkFix; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/util/datafix/fixes/ChunkStructuresTemplateRenameFix; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/util/datafix/fixes/ChunkStatusFix2; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/util/datafix/fixes/ChunkStatusFix; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/util/datafix/fixes/ChunkRenamesFix; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/util/datafix/fixes/ChunkProtoTickListFix; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/util/datafix/fixes/ChunkProtoTickListFix$PoorMansPalettedContainer; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/util/datafix/fixes/ChunkPalettedStorageFix; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/util/datafix/fixes/ChunkPalettedStorageFix$UpgradeChunk; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/util/datafix/fixes/ChunkPalettedStorageFix$Section; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/util/datafix/fixes/ChunkPalettedStorageFix$Direction; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/util/datafix/fixes/ChunkPalettedStorageFix$Direction$AxisDirection; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/util/datafix/fixes/ChunkPalettedStorageFix$Direction$Axis; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/util/datafix/fixes/ChunkPalettedStorageFix$DataLayer; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/util/datafix/fixes/ChunkPalettedStorageFix$1; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/util/datafix/fixes/ChunkLightRemoveFix; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/util/datafix/fixes/ChunkHeightAndBiomeFix; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/util/datafix/fixes/ChunkDeleteLightFix; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/util/datafix/fixes/ChunkDeleteIgnoredLightDataFix; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/util/datafix/fixes/ChunkBiomeFix; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/util/datafix/fixes/ChunkBedBlockEntityInjecterFix; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/util/datafix/fixes/CavesAndCliffsRenames; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/util/datafix/fixes/CauldronRenameFix; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/util/datafix/fixes/CatTypeFix; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/util/datafix/fixes/BlockStateStructureTemplateFix; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/util/datafix/fixes/BlockStateData; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/util/datafix/fixes/BlockRenameFixWithJigsaw; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/util/datafix/fixes/BlockRenameFixWithJigsaw$1; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/util/datafix/fixes/BlockRenameFix; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/util/datafix/fixes/BlockRenameFix$1; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/util/datafix/fixes/BlockNameFlatteningFix; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/util/datafix/fixes/BlockEntityUUIDFix; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/util/datafix/fixes/BlockEntitySignTextStrictJsonFix; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/util/datafix/fixes/BlockEntitySignTextStrictJsonFix$1; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/util/datafix/fixes/BlockEntitySignDoubleSidedEditableTextFix; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/util/datafix/fixes/BlockEntityShulkerBoxColorFix; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/util/datafix/fixes/BlockEntityRenameFix; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/util/datafix/fixes/BlockEntityKeepPacked; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/util/datafix/fixes/BlockEntityJukeboxFix; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/util/datafix/fixes/BlockEntityIdFix; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/util/datafix/fixes/BlockEntityCustomNameToComponentFix; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/util/datafix/fixes/BlockEntityBlockStateFix; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/util/datafix/fixes/BlockEntityBannerColorFix; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/util/datafix/fixes/BlendingDataRemoveFromNetherEndFix; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/util/datafix/fixes/BlendingDataFix; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/util/datafix/fixes/BitStorageAlignFix; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/util/datafix/fixes/BiomeFix; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/util/datafix/fixes/BedItemColorFix; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/util/datafix/fixes/AttributesRename; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/util/datafix/fixes/AdvancementsRenameFix; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/util/datafix/fixes/AdvancementsFix; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/util/datafix/fixes/AddNewChoices; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/util/datafix/fixes/AddFlagIfNotPresentFix; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/util/datafix/fixes/AbstractUUIDFix; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/util/datafix/fixes/AbstractPoiSectionFix; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/util/datafix/fixes/AbstractArrowPickupFix; +[13:03:44] [main/DEBUG]: Transforming class Lnet/minecraft/util/datafix/fixes/StructuresBecomeConfiguredFix; +[13:03:44] [main/DEBUG]: Transforming net/minecraft/util/datafix/fixes/StructuresBecomeConfiguredFix INNERCLASS Conversion to access PUBLIC and LEAVE +[13:03:44] [main/DEBUG]: Transforming class Lnet/minecraft/util/datafix/fixes/StructuresBecomeConfiguredFix$Conversion; +[13:03:44] [main/DEBUG]: Transforming net/minecraft/util/datafix/fixes/StructuresBecomeConfiguredFix$Conversion CLASS to access PUBLIC and LEAVE +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/util/datafix/PackedBitStorage; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/util/datafix/DataFixers; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/util/datafix/DataFixers$2; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/util/datafix/DataFixers$1; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/util/datafix/DataFixTypes; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/util/ZeroBitStorage; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/util/VisibleForDebug; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/util/Unit; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/util/Tuple; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/util/ToFloatFunction; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/util/ToFloatFunction$2; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/util/ToFloatFunction$1; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/util/TimeUtil; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/util/TimeSource; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/util/TimeSource$NanoTimeSource; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/util/ThreadingDetector; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/util/TaskChainer; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/util/TaskChainer$DelayedTask; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/util/StringUtil; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/util/StringRepresentable; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/util/StringRepresentable$EnumCodec; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/util/StringRepresentable$1; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/util/StringDecomposer; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/util/SortedArraySet; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/util/SortedArraySet$ArrayIterator; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/util/SmoothDouble; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/util/SingleKeyCache; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/util/SimpleBitStorage; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/util/SimpleBitStorage$InitializationException; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/util/Signer; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/util/SignatureValidator; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/util/SignatureUpdater; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/util/SignatureUpdater$Output; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/util/SegmentedAnglePrecision; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/util/ResourceLocationPattern; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/util/RandomSource; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/util/ProgressListener; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/util/ParticleUtils; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/util/OptionEnum; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/util/NativeModuleLister; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/util/NativeModuleLister$NativeModuleVersion; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/util/NativeModuleLister$NativeModuleInfo; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/util/Mth; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/util/ModCheck; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/util/ModCheck$Confidence; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/util/MemoryReserve; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/util/LowerCaseEnumTypeAdapterFactory; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/util/LowerCaseEnumTypeAdapterFactory$1; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/util/LinearCongruentialGenerator; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/util/LazyLoadedValue; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/util/KeyDispatchDataCodec; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/util/InclusiveRange; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/util/HttpUtil; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/util/GsonHelper; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/util/Graph; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/util/FutureChain; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/util/FrameTimer; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/util/FormattedCharSink; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/util/FormattedCharSequence; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/util/FileZipper; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/util/FastColor; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/util/FastColor$ARGB32; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/util/FastColor$ABGR32; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/util/FastBufferedInputStream; +[13:03:44] [main/DEBUG]: Transforming class Lnet/minecraft/util/ExtraCodecs; +[13:03:44] [main/DEBUG]: Transforming net/minecraft/util/ExtraCodecs INNERCLASS EitherCodec to access PUBLIC and LEAVE +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/util/ExtraCodecs$XorCodec; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/util/ExtraCodecs$TagOrElementLocation; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/util/ExtraCodecs$LazyInitializedCodec; +[13:03:44] [main/DEBUG]: Transforming class Lnet/minecraft/util/ExtraCodecs$EitherCodec; +[13:03:44] [main/DEBUG]: Transforming net/minecraft/util/ExtraCodecs$EitherCodec CLASS to access PUBLIC and LEAVE +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/util/ExtraCodecs$4; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/util/ExtraCodecs$3; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/util/ExtraCodecs$2; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/util/ExtraCodecs$1ContextRetrievalCodec; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/util/ExtraCodecs$1; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/util/ExceptionCollector; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/util/DirectoryLock; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/util/DirectoryLock$LockException; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/util/DependencySorter; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/util/DependencySorter$Entry; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/util/DebugBuffer; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/util/CubicSpline; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/util/CubicSpline$Multipoint; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/util/CubicSpline$CoordinateVisitor; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/util/CubicSpline$Constant; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/util/CubicSpline$Builder; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/util/CubicSpline$1Point; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/util/CubicSampler; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/util/CubicSampler$Vec3Fetcher; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/util/CsvOutput; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/util/CsvOutput$Builder; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/util/CryptException; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/util/Crypt; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/util/Crypt$SaltSupplier; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/util/Crypt$SaltSignaturePair; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/util/Crypt$ByteArrayToKeyFunction; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/util/CrudeIncrementalIntIdentityHashBiMap; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/util/CommonLinks; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/util/CommonColors; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/util/ClassInstanceMultiMap; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/util/ByIdMap; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/util/ByIdMap$OutOfBoundsStrategy; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/util/ByIdMap$1; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/util/Brightness; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/util/BitStorage; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/util/AbortableIterationConsumer; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/util/AbortableIterationConsumer$Continuation; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/util/SpawnUtil; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/util/SpawnUtil$Strategy; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/tags/package-info; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/tags/WorldPresetTags; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/tags/TagNetworkSerialization; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/tags/TagNetworkSerialization$TagOutput; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/tags/TagNetworkSerialization$NetworkPayload; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/tags/TagKey; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/tags/StructureTags; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/tags/PoiTypeTags; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/tags/PaintingVariantTags; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/tags/InstrumentTags; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/tags/GameEventTags; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/tags/FlatLevelGeneratorPresetTags; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/tags/EntityTypeTags; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/tags/DamageTypeTags; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/tags/CatVariantTags; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/tags/BiomeTags; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/tags/BannerPatternTags; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/tags/TagManager; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/tags/TagManager$LoadResult; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/tags/TagLoader; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/tags/TagLoader$SortingEntry; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/tags/TagLoader$EntryWithSource; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/tags/TagLoader$1; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/tags/TagFile; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/tags/TagEntry; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/tags/TagEntry$Lookup; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/tags/TagBuilder; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/tags/ItemTags; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/tags/FluidTags; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/tags/BlockTags; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/stats/package-info; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/stats/StatsCounter; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/stats/Stats; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/stats/StatType; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/stats/StatFormatter; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/stats/Stat; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/stats/ServerStatsCounter; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/stats/ServerRecipeBook; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/stats/RecipeBook; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/stats/RecipeBookSettings; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/stats/RecipeBookSettings$TypeSettings; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/sounds/package-info; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/sounds/SoundSource; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/sounds/SoundEvents; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/sounds/SoundEvent; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/sounds/Musics; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/sounds/Music; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/server/rcon/thread/package-info; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/server/rcon/thread/RconThread; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/server/rcon/thread/QueryThreadGs4; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/server/rcon/thread/QueryThreadGs4$RequestChallenge; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/server/rcon/thread/GenericThread; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/server/rcon/thread/RconClient; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/server/rcon/package-info; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/server/rcon/PktUtils; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/server/rcon/NetworkDataOutputStream; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/server/rcon/RconConsoleSource; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/server/players/package-info; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/server/players/UserWhiteListEntry; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/server/players/UserWhiteList; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/server/players/UserBanListEntry; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/server/players/UserBanList; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/server/players/StoredUserList; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/server/players/StoredUserEntry; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/server/players/SleepStatus; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/server/players/ServerOpListEntry; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/server/players/ServerOpList; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/server/players/OldUsersConverter; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/server/players/OldUsersConverter$ConversionError; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/server/players/OldUsersConverter$5; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/server/players/OldUsersConverter$4; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/server/players/OldUsersConverter$3; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/server/players/OldUsersConverter$2; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/server/players/OldUsersConverter$1; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/server/players/IpBanListEntry; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/server/players/IpBanList; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/server/players/GameProfileCache; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/server/players/GameProfileCache$GameProfileInfo; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/server/players/GameProfileCache$1; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/server/players/BanListEntry; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/server/players/PlayerList; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/server/players/PlayerList$1; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/server/packs/resources/package-info; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/server/packs/resources/SimpleReloadInstance; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/server/packs/resources/SimpleReloadInstance$StateFactory; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/server/packs/resources/SimpleReloadInstance$1; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/server/packs/resources/SimplePreparableReloadListener; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/server/packs/resources/ResourceProvider; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/server/packs/resources/ResourceMetadata; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/server/packs/resources/ResourceMetadata$2; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/server/packs/resources/ResourceMetadata$1; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/server/packs/resources/ResourceManagerReloadListener; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/server/packs/resources/ResourceManager; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/server/packs/resources/ResourceManager$Empty; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/server/packs/resources/ResourceFilterSection; +[13:03:44] [main/DEBUG]: Skipping Lnet/minecraft/server/packs/resources/Resource; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/server/packs/resources/ReloadInstance; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/server/packs/resources/ProfiledReloadInstance; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/server/packs/resources/ProfiledReloadInstance$State; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/server/packs/resources/PreparableReloadListener; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/server/packs/resources/PreparableReloadListener$PreparationBarrier; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/server/packs/resources/MultiPackResourceManager; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/server/packs/resources/IoSupplier; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/server/packs/resources/CloseableResourceManager; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/server/packs/resources/SimpleJsonResourceReloadListener; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/server/packs/resources/ReloadableResourceManager; +[13:03:45] [main/DEBUG]: Transforming class Lnet/minecraft/server/packs/resources/FallbackResourceManager; +[13:03:45] [main/DEBUG]: Transforming net/minecraft/server/packs/resources/FallbackResourceManager FIELD f_10599_ to access PUBLIC and LEAVE +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/server/packs/resources/FallbackResourceManager$ResourceWithSource; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/server/packs/resources/FallbackResourceManager$PackEntry; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/server/packs/resources/FallbackResourceManager$LeakedResourceWarningInputStream; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/server/packs/resources/FallbackResourceManager$EntryStack; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/server/packs/resources/FallbackResourceManager$1ResourceWithSourceAndIndex; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/server/packs/repository/package-info; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/server/packs/repository/RepositorySource; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/server/packs/repository/PackSource; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/server/packs/repository/PackSource$1; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/server/packs/repository/PackCompatibility; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/server/packs/repository/FolderRepositorySource; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/server/packs/repository/BuiltInPackSource; +[13:03:45] [main/DEBUG]: Transforming class Lnet/minecraft/server/packs/repository/ServerPacksSource; +[13:03:45] [main/DEBUG]: Transforming net/minecraft/server/packs/repository/ServerPacksSource METHOD m_246173_()Lnet/minecraft/server/packs/VanillaPackResources; to access PUBLIC and LEAVE +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/server/packs/repository/PackRepository; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/server/packs/repository/Pack; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/server/packs/repository/Pack$ResourcesSupplier; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/server/packs/repository/Pack$Position; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/server/packs/repository/Pack$Info; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/server/packs/package-info; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/server/packs/metadata/package-info; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/server/packs/metadata/pack/package-info; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/server/packs/metadata/pack/PackMetadataSectionSerializer; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/server/packs/metadata/pack/PackMetadataSection; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/server/packs/metadata/MetadataSectionType; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/server/packs/metadata/MetadataSectionType$1; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/server/packs/metadata/MetadataSectionSerializer; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/server/packs/linkfs/package-info; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/server/packs/linkfs/PathContents; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/server/packs/linkfs/PathContents$FileContents; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/server/packs/linkfs/PathContents$DirectoryContents; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/server/packs/linkfs/PathContents$2; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/server/packs/linkfs/PathContents$1; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/server/packs/linkfs/LinkFileSystem; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/server/packs/linkfs/LinkFileSystem$DirectoryEntry; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/server/packs/linkfs/LinkFileSystem$Builder; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/server/packs/linkfs/LinkFSProvider; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/server/packs/linkfs/LinkFSProvider$2; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/server/packs/linkfs/LinkFSProvider$1; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/server/packs/linkfs/LinkFSPath; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/server/packs/linkfs/LinkFSPath$3; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/server/packs/linkfs/LinkFSPath$2; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/server/packs/linkfs/LinkFSPath$1; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/server/packs/linkfs/LinkFSFileStore; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/server/packs/linkfs/DummyFileAttributes; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/server/packs/VanillaPackResourcesBuilder; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/server/packs/VanillaPackResources; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/server/packs/PathPackResources; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/server/packs/PackType; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/server/packs/FilePackResources; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/server/packs/FeatureFlagsMetadataSection; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/server/packs/BuiltInMetadata; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/server/packs/PackResources; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/server/packs/PackResources$ResourceOutput; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/server/packs/AbstractPackResources; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/server/package-info; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/server/network/package-info; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/server/network/TextFilterClient; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/server/network/TextFilterClient$RequestFailedException; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/server/network/TextFilterClient$PlayerContext; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/server/network/TextFilterClient$MessageEncoder; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/server/network/TextFilterClient$JoinOrLeaveEncoder; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/server/network/TextFilterClient$IgnoreStrategy; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/server/network/TextFilter; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/server/network/TextFilter$1; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/server/network/ServerPlayerConnection; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/server/network/LegacyQueryHandler; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/server/network/FilteredText; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/server/network/ServerStatusPacketListenerImpl; +[13:03:45] [main/DEBUG]: Transforming class Lnet/minecraft/server/network/ServerLoginPacketListenerImpl; +[13:03:45] [main/DEBUG]: Transforming net/minecraft/server/network/ServerLoginPacketListenerImpl FIELD f_10021_ to access PUBLIC and LEAVE +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/server/network/ServerLoginPacketListenerImpl$State; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/server/network/ServerLoginPacketListenerImpl$1; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/server/network/ServerHandshakePacketListenerImpl; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/server/network/ServerHandshakePacketListenerImpl$1; +[13:03:45] [main/DEBUG]: Transforming class Lnet/minecraft/server/network/ServerGamePacketListenerImpl; +[13:03:45] [main/DEBUG]: Transforming net/minecraft/server/network/ServerGamePacketListenerImpl FIELD f_9742_ to access PUBLIC and LEAVE +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/server/network/ServerGamePacketListenerImpl$EntityInteraction; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/server/network/ServerGamePacketListenerImpl$2; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/server/network/ServerGamePacketListenerImpl$1; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/server/network/ServerConnectionListener; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/server/network/ServerConnectionListener$LatencySimulator; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/server/network/ServerConnectionListener$LatencySimulator$DelayedMessage; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/server/network/ServerConnectionListener$2; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/server/network/ServerConnectionListener$1; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/server/network/MemoryServerHandshakePacketListenerImpl; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/server/level/progress/package-info; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/server/level/progress/StoringChunkProgressListener; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/server/level/progress/ProcessorChunkProgressListener; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/server/level/progress/LoggerChunkProgressListener; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/server/level/progress/ChunkProgressListenerFactory; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/server/level/progress/ChunkProgressListener; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/server/level/package-info; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/server/level/TickingTracker; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/server/level/TicketType; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/server/level/ThreadedLevelLightEngine; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/server/level/ThreadedLevelLightEngine$TaskType; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/server/level/ServerBossEvent; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/server/level/SectionTracker; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/server/level/PlayerRespawnLogic; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/server/level/PlayerMap; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/server/level/FullChunkStatus; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/server/level/DemoMode; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/server/level/ColumnPos; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/server/level/ChunkTracker; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/server/level/ChunkTaskPriorityQueueSorter; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/server/level/ChunkTaskPriorityQueueSorter$Release; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/server/level/ChunkTaskPriorityQueueSorter$Message; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/server/level/ChunkTaskPriorityQueue; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/server/level/ChunkLevel; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/server/level/ChunkLevel$1; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/server/level/BlockDestructionProgress; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/server/level/WorldGenRegion; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/server/level/Ticket; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/server/level/ServerPlayerGameMode; +[13:03:45] [main/DEBUG]: Transforming class Lnet/minecraft/server/level/ServerPlayer; +[13:03:45] [main/DEBUG]: Transforming net/minecraft/server/level/ServerPlayer FIELD f_8940_ to access PUBLIC and LEAVE +[13:03:45] [main/DEBUG]: Transforming net/minecraft/server/level/ServerPlayer METHOD m_143399_(Lnet/minecraft/world/inventory/AbstractContainerMenu;)V to access PUBLIC and LEAVE +[13:03:45] [main/DEBUG]: Transforming net/minecraft/server/level/ServerPlayer METHOD m_9217_()V to access PUBLIC and LEAVE +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/server/level/ServerPlayer$2; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/server/level/ServerPlayer$1; +[13:03:45] [main/DEBUG]: Transforming class Lnet/minecraft/server/level/ServerLevel; +[13:03:45] [main/DEBUG]: Transforming net/minecraft/server/level/ServerLevel METHOD m_142646_()Lnet/minecraft/world/level/entity/LevelEntityGetter; to access PUBLIC and LEAVE +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/server/level/ServerLevel$EntityCallbacks; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/server/level/ServerEntity; +[13:03:45] [main/DEBUG]: Transforming class Lnet/minecraft/server/level/ServerChunkCache; +[13:03:45] [main/DEBUG]: Transforming net/minecraft/server/level/ServerChunkCache FIELD f_8329_ to access PUBLIC and LEAVE +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/server/level/ServerChunkCache$MainThreadExecutor; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/server/level/ServerChunkCache$ChunkAndHolder; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/server/level/DistanceManager; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/server/level/DistanceManager$PlayerTicketTracker; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/server/level/DistanceManager$FixedPlayerDistanceChunkTracker; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/server/level/DistanceManager$ChunkTicketTracker; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/server/level/ChunkMap; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/server/level/ChunkMap$TrackedEntity; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/server/level/ChunkMap$DistanceManager; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/server/level/ChunkMap$2; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/server/level/ChunkMap$1; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/server/level/ChunkHolder; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/server/level/ChunkHolder$PlayerProvider; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/server/level/ChunkHolder$LevelChangeListener; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/server/level/ChunkHolder$ChunkSaveDebug; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/server/level/ChunkHolder$ChunkLoadingFailure; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/server/level/ChunkHolder$ChunkLoadingFailure$1; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/server/level/ChunkHolder$1; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/server/gui/package-info; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/server/gui/StatsComponent; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/server/gui/PlayerListComponent; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/server/gui/MinecraftServerGui; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/server/gui/MinecraftServerGui$2; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/server/gui/MinecraftServerGui$1; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/server/dedicated/package-info; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/server/dedicated/DedicatedServerSettings; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/server/dedicated/DedicatedServerProperties; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/server/dedicated/DedicatedServerProperties$WorldDimensionData; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/server/dedicated/DedicatedPlayerList; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/server/dedicated/Settings; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/server/dedicated/Settings$MutableValue; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/server/dedicated/ServerWatchdog; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/server/dedicated/ServerWatchdog$1; +[13:03:45] [main/DEBUG]: Transforming class Lnet/minecraft/server/dedicated/DedicatedServer; +[13:03:45] [main/DEBUG]: Transforming net/minecraft/server/dedicated/DedicatedServer FIELD f_139600_ to access PUBLIC and LEAVE +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/server/dedicated/DedicatedServer$1; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/server/commands/package-info; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/server/commands/data/package-info; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/server/commands/data/StorageDataAccessor; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/server/commands/data/StorageDataAccessor$1; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/server/commands/data/EntityDataAccessor; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/server/commands/data/EntityDataAccessor$1; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/server/commands/data/DataCommands; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/server/commands/data/DataCommands$StringProcessor; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/server/commands/data/DataCommands$DataProvider; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/server/commands/data/DataCommands$DataManipulatorDecorator; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/server/commands/data/DataCommands$DataManipulator; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/server/commands/data/DataAccessor; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/server/commands/data/BlockDataAccessor; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/server/commands/data/BlockDataAccessor$1; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/server/commands/WorldBorderCommand; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/server/commands/WhitelistCommand; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/server/commands/WeatherCommand; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/server/commands/WardenSpawnTrackerCommand; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/server/commands/TriggerCommand; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/server/commands/TitleCommand; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/server/commands/TimeCommand; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/server/commands/TellRawCommand; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/server/commands/TeamMsgCommand; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/server/commands/TeamCommand; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/server/commands/TagCommand; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/server/commands/SummonCommand; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/server/commands/StopSoundCommand; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/server/commands/StopCommand; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/server/commands/SpectateCommand; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/server/commands/SpawnArmorTrimsCommand; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/server/commands/SetWorldSpawnCommand; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/server/commands/SetSpawnCommand; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/server/commands/SetPlayerIdleTimeoutCommand; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/server/commands/SetBlockCommand; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/server/commands/SetBlockCommand$Mode; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/server/commands/SetBlockCommand$Filter; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/server/commands/SeedCommand; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/server/commands/ScoreboardCommand; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/server/commands/ScheduleCommand; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/server/commands/SayCommand; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/server/commands/SaveOnCommand; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/server/commands/SaveOffCommand; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/server/commands/SaveAllCommand; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/server/commands/RideCommand; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/server/commands/ReturnCommand; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/server/commands/ResetChunksCommand; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/server/commands/ReloadCommand; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/server/commands/RecipeCommand; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/server/commands/RaidCommand; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/server/commands/PublishCommand; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/server/commands/PlaySoundCommand; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/server/commands/PlaceCommand; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/server/commands/PerfCommand; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/server/commands/ParticleCommand; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/server/commands/PardonIpCommand; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/server/commands/PardonCommand; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/server/commands/OpCommand; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/server/commands/MsgCommand; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/server/commands/LootCommand; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/server/commands/LootCommand$TailProvider; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/server/commands/LootCommand$DropConsumer; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/server/commands/LootCommand$Callback; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/server/commands/LocateCommand; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/server/commands/ListPlayersCommand; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/server/commands/KillCommand; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/server/commands/KickCommand; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/server/commands/JfrCommand; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/server/commands/ItemCommands; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/server/commands/HelpCommand; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/server/commands/GiveCommand; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/server/commands/GameRuleCommand; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/server/commands/GameRuleCommand$1; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/server/commands/GameModeCommand; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/server/commands/FunctionCommand; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/server/commands/ForceLoadCommand; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/server/commands/FillCommand; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/server/commands/FillCommand$Mode; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/server/commands/FillBiomeCommand; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/server/commands/ExperienceCommand; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/server/commands/ExperienceCommand$Type; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/server/commands/ExecuteCommand; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/server/commands/ExecuteCommand$CommandPredicate; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/server/commands/ExecuteCommand$CommandNumericPredicate; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/server/commands/EnchantCommand; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/server/commands/EmoteCommands; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/server/commands/EffectCommands; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/server/commands/DifficultyCommand; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/server/commands/DefaultGameModeCommands; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/server/commands/DebugPathCommand; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/server/commands/DebugMobSpawningCommand; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/server/commands/DebugCommand; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/server/commands/DebugCommand$Tracer; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/server/commands/DeOpCommands; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/server/commands/DataPackCommand; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/server/commands/DataPackCommand$Inserter; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/server/commands/DamageCommand; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/server/commands/CloneCommands; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/server/commands/CloneCommands$Mode; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/server/commands/CloneCommands$DimensionAndPosition; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/server/commands/CloneCommands$CommandFunction; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/server/commands/CloneCommands$CloneBlockInfo; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/server/commands/ClearInventoryCommands; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/server/commands/ChaseCommand; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/server/commands/BossBarCommands; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/server/commands/BanPlayerCommands; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/server/commands/BanListCommands; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/server/commands/BanIpCommands; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/server/commands/AttributeCommand; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/server/commands/AdvancementCommands; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/server/commands/AdvancementCommands$Mode; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/server/commands/AdvancementCommands$Action; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/server/commands/AdvancementCommands$Action$2; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/server/commands/AdvancementCommands$Action$1; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/server/commands/TeleportCommand; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/server/commands/TeleportCommand$LookAt; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/server/commands/SpreadPlayersCommand; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/server/commands/SpreadPlayersCommand$Position; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/server/chase/package-info; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/server/chase/ChaseServer; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/server/chase/ChaseServer$PlayerPosition; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/server/chase/ChaseClient; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/server/chase/ChaseClient$TeleportTarget; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/server/bossevents/package-info; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/server/bossevents/CustomBossEvents; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/server/bossevents/CustomBossEvent; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/server/advancements/package-info; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/server/advancements/AdvancementVisibilityEvaluator; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/server/advancements/AdvancementVisibilityEvaluator$VisibilityRule; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/server/advancements/AdvancementVisibilityEvaluator$Output; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/server/WorldStem; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/server/TickTask; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/server/Services; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/server/ServerScoreboard; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/server/ServerScoreboard$Method; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/server/ServerInterface; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/server/ServerFunctionManager; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/server/ServerFunctionManager$TraceCallbacks; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/server/ServerFunctionManager$QueuedCommand; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/server/ServerFunctionManager$ExecutionContext; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/server/ServerFunctionManager$ExecutionContext$AbortingReturnValueConsumer; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/server/ServerFunctionLibrary; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/server/RunningOnDifferentThreadException; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/server/RegistryLayer; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/server/LoggedPrintStream; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/server/DebugLoggedPrintStream; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/server/ConsoleInput; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/server/ChainedJsonException; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/server/ChainedJsonException$Entry; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/server/WorldLoader; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/server/WorldLoader$WorldDataSupplier; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/server/WorldLoader$ResultFactory; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/server/WorldLoader$PackConfig; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/server/WorldLoader$InitConfig; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/server/WorldLoader$DataLoadOutput; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/server/WorldLoader$DataLoadContext; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/server/ServerAdvancementManager; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/server/ReloadableServerResources; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/server/PlayerAdvancements; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/server/PlayerAdvancements$1; +[13:03:45] [main/DEBUG]: Transforming class Lnet/minecraft/server/MinecraftServer; +[13:03:45] [main/DEBUG]: Transforming net/minecraft/server/MinecraftServer INNERCLASS ReloadableResources to access PUBLIC and LEAVE +[13:03:45] [main/DEBUG]: Transforming net/minecraft/server/MinecraftServer FIELD f_129726_ to access PROTECTED and LEAVE +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/server/MinecraftServer$TimeProfiler; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/server/MinecraftServer$TimeProfiler$1; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/server/MinecraftServer$ServerResourcePackInfo; +[13:03:45] [main/DEBUG]: Transforming class Lnet/minecraft/server/MinecraftServer$ReloadableResources; +[13:03:45] [main/DEBUG]: Transforming net/minecraft/server/MinecraftServer$ReloadableResources CLASS to access PUBLIC and LEAVE +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/server/MinecraftServer$1; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/server/Main; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/server/Main$1; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/server/Eula; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/server/Bootstrap; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/server/Bootstrap$1; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/resources/package-info; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/resources/RegistryFixedCodec; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/resources/RegistryFileCodec; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/resources/FileToIdConverter; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/resources/DelegatingOps; +[13:03:45] [main/DEBUG]: Transforming class Lnet/minecraft/resources/ResourceLocation; +[13:03:45] [main/DEBUG]: Transforming net/minecraft/resources/ResourceLocation METHOD m_135841_(Ljava/lang/String;)Z to access PUBLIC and LEAVE +[13:03:45] [main/DEBUG]: Transforming net/minecraft/resources/ResourceLocation METHOD m_135843_(Ljava/lang/String;)Z to access PUBLIC and LEAVE +[13:03:45] [main/DEBUG]: Transforming net/minecraft/resources/ResourceLocation METHOD m_135835_(C)Z to access PUBLIC and LEAVE +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/resources/ResourceLocation$Serializer; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/resources/ResourceLocation$Dummy; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/resources/ResourceKey; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/resources/ResourceKey$InternKey; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/resources/RegistryOps; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/resources/RegistryOps$RegistryInfoLookup; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/resources/RegistryOps$RegistryInfo; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/resources/RegistryOps$2; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/resources/RegistryOps$1; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/resources/RegistryDataLoader; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/resources/RegistryDataLoader$RegistryData; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/resources/RegistryDataLoader$Loader; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/resources/RegistryDataLoader$1; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/resources/HolderSetCodec; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/recipebook/package-info; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/recipebook/ServerPlaceRecipe; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/recipebook/PlaceRecipe; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/realms/package-info; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/realms/RepeatedNarrator; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/realms/RepeatedNarrator$Params; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/realms/RealmsScreen; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/realms/RealmsObjectSelectionList; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/realms/RealmsLabel; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/realms/RealmsConnect; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/realms/RealmsConnect$1; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/realms/DisconnectedRealmsScreen; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/package-info; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/obfuscate/package-info; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/obfuscate/DontObfuscate; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/network/syncher/package-info; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/network/syncher/EntityDataSerializer; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/network/syncher/EntityDataSerializer$ForValueType; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/network/syncher/EntityDataSerializer$1; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/network/syncher/EntityDataAccessor; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/network/syncher/SynchedEntityData; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/network/syncher/SynchedEntityData$DataValue; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/network/syncher/SynchedEntityData$DataItem; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/network/syncher/EntityDataSerializers; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/network/syncher/EntityDataSerializers$7; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/network/syncher/EntityDataSerializers$6; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/network/syncher/EntityDataSerializers$5; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/network/syncher/EntityDataSerializers$4; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/network/syncher/EntityDataSerializers$3; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/network/syncher/EntityDataSerializers$2; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/network/syncher/EntityDataSerializers$1; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/network/protocol/status/package-info; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/network/protocol/status/ServerboundStatusRequestPacket; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/network/protocol/status/ServerboundPingRequestPacket; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/network/protocol/status/ServerStatusPacketListener; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/network/protocol/status/ClientboundPongResponsePacket; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/network/protocol/status/ClientStatusPacketListener; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/network/protocol/status/ServerStatus; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/network/protocol/status/ServerStatus$Version; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/network/protocol/status/ServerStatus$Players; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/network/protocol/status/ServerStatus$Favicon; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/network/protocol/status/ClientboundStatusResponsePacket; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/network/protocol/package-info; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/network/protocol/login/package-info; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/network/protocol/login/ServerboundKeyPacket; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/network/protocol/login/ServerboundHelloPacket; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/network/protocol/login/ServerLoginPacketListener; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/network/protocol/login/ClientboundLoginDisconnectPacket; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/network/protocol/login/ClientboundLoginCompressionPacket; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/network/protocol/login/ClientboundHelloPacket; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/network/protocol/login/ClientboundGameProfilePacket; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/network/protocol/login/ClientLoginPacketListener; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/network/protocol/login/ServerboundCustomQueryPacket; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/network/protocol/login/ClientboundCustomQueryPacket; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/network/protocol/handshake/package-info; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/network/protocol/handshake/ServerHandshakePacketListener; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/network/protocol/handshake/ClientIntentionPacket; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/network/protocol/game/package-info; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/network/protocol/game/VecDeltaCodec; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/network/protocol/game/ServerboundUseItemPacket; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/network/protocol/game/ServerboundUseItemOnPacket; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/network/protocol/game/ServerboundTeleportToEntityPacket; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/network/protocol/game/ServerboundSwingPacket; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/network/protocol/game/ServerboundSignUpdatePacket; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/network/protocol/game/ServerboundSetStructureBlockPacket; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/network/protocol/game/ServerboundSetJigsawBlockPacket; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/network/protocol/game/ServerboundSetCommandMinecartPacket; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/network/protocol/game/ServerboundSetCommandBlockPacket; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/network/protocol/game/ServerboundSetCarriedItemPacket; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/network/protocol/game/ServerboundSetBeaconPacket; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/network/protocol/game/ServerboundSelectTradePacket; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/network/protocol/game/ServerboundSeenAdvancementsPacket; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/network/protocol/game/ServerboundSeenAdvancementsPacket$Action; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/network/protocol/game/ServerboundResourcePackPacket; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/network/protocol/game/ServerboundResourcePackPacket$Action; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/network/protocol/game/ServerboundRenameItemPacket; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/network/protocol/game/ServerboundRecipeBookSeenRecipePacket; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/network/protocol/game/ServerboundRecipeBookChangeSettingsPacket; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/network/protocol/game/ServerboundPongPacket; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/network/protocol/game/ServerboundPlayerInputPacket; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/network/protocol/game/ServerboundPlayerCommandPacket; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/network/protocol/game/ServerboundPlayerCommandPacket$Action; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/network/protocol/game/ServerboundPlayerActionPacket; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/network/protocol/game/ServerboundPlayerActionPacket$Action; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/network/protocol/game/ServerboundPlayerAbilitiesPacket; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/network/protocol/game/ServerboundPlaceRecipePacket; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/network/protocol/game/ServerboundPickItemPacket; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/network/protocol/game/ServerboundPaddleBoatPacket; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/network/protocol/game/ServerboundMoveVehiclePacket; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/network/protocol/game/ServerboundMovePlayerPacket; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/network/protocol/game/ServerboundMovePlayerPacket$StatusOnly; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/network/protocol/game/ServerboundMovePlayerPacket$Rot; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/network/protocol/game/ServerboundMovePlayerPacket$PosRot; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/network/protocol/game/ServerboundMovePlayerPacket$Pos; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/network/protocol/game/ServerboundLockDifficultyPacket; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/network/protocol/game/ServerboundKeepAlivePacket; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/network/protocol/game/ServerboundJigsawGeneratePacket; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/network/protocol/game/ServerboundInteractPacket; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/network/protocol/game/ServerboundInteractPacket$InteractionAtLocationAction; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/network/protocol/game/ServerboundInteractPacket$InteractionAction; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/network/protocol/game/ServerboundInteractPacket$Handler; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/network/protocol/game/ServerboundInteractPacket$ActionType; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/network/protocol/game/ServerboundInteractPacket$Action; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/network/protocol/game/ServerboundInteractPacket$1; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/network/protocol/game/ServerboundEntityTagQuery; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/network/protocol/game/ServerboundEditBookPacket; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/network/protocol/game/ServerboundContainerClosePacket; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/network/protocol/game/ServerboundContainerButtonClickPacket; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/network/protocol/game/ServerboundCommandSuggestionPacket; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/network/protocol/game/ServerboundClientInformationPacket; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/network/protocol/game/ServerboundClientCommandPacket; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/network/protocol/game/ServerboundClientCommandPacket$Action; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/network/protocol/game/ServerboundChatSessionUpdatePacket; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/network/protocol/game/ServerboundChatPacket; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/network/protocol/game/ServerboundChatCommandPacket; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/network/protocol/game/ServerboundChatAckPacket; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/network/protocol/game/ServerboundChangeDifficultyPacket; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/network/protocol/game/ServerboundBlockEntityTagQuery; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/network/protocol/game/ServerboundAcceptTeleportationPacket; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/network/protocol/game/ServerPacketListener; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/network/protocol/game/ServerGamePacketListener; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/network/protocol/game/DebugPackets; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/network/protocol/game/DebugEntityNameGenerator; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/network/protocol/game/ClientboundUpdateTagsPacket; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/network/protocol/game/ClientboundUpdateRecipesPacket; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/network/protocol/game/ClientboundUpdateMobEffectPacket; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/network/protocol/game/ClientboundUpdateEnabledFeaturesPacket; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/network/protocol/game/ClientboundUpdateAttributesPacket; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/network/protocol/game/ClientboundUpdateAttributesPacket$AttributeSnapshot; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/network/protocol/game/ClientboundUpdateAdvancementsPacket; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/network/protocol/game/ClientboundTeleportEntityPacket; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/network/protocol/game/ClientboundTakeItemEntityPacket; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/network/protocol/game/ClientboundTagQueryPacket; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/network/protocol/game/ClientboundTabListPacket; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/network/protocol/game/ClientboundSystemChatPacket; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/network/protocol/game/ClientboundStopSoundPacket; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/network/protocol/game/ClientboundSoundPacket; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/network/protocol/game/ClientboundSoundEntityPacket; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/network/protocol/game/ClientboundSetTitlesAnimationPacket; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/network/protocol/game/ClientboundSetTitleTextPacket; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/network/protocol/game/ClientboundSetTimePacket; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/network/protocol/game/ClientboundSetSubtitleTextPacket; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/network/protocol/game/ClientboundSetSimulationDistancePacket; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/network/protocol/game/ClientboundSetScorePacket; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/network/protocol/game/ClientboundSetPlayerTeamPacket; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/network/protocol/game/ClientboundSetPlayerTeamPacket$Parameters; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/network/protocol/game/ClientboundSetPlayerTeamPacket$Action; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/network/protocol/game/ClientboundSetPassengersPacket; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/network/protocol/game/ClientboundSetObjectivePacket; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/network/protocol/game/ClientboundSetHealthPacket; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/network/protocol/game/ClientboundSetExperiencePacket; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/network/protocol/game/ClientboundSetEquipmentPacket; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/network/protocol/game/ClientboundSetEntityMotionPacket; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/network/protocol/game/ClientboundSetEntityLinkPacket; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/network/protocol/game/ClientboundSetEntityDataPacket; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/network/protocol/game/ClientboundSetDisplayObjectivePacket; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/network/protocol/game/ClientboundSetDefaultSpawnPositionPacket; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/network/protocol/game/ClientboundSetChunkCacheRadiusPacket; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/network/protocol/game/ClientboundSetChunkCacheCenterPacket; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/network/protocol/game/ClientboundSetCarriedItemPacket; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/network/protocol/game/ClientboundSetCameraPacket; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/network/protocol/game/ClientboundSetBorderWarningDistancePacket; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/network/protocol/game/ClientboundSetBorderWarningDelayPacket; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/network/protocol/game/ClientboundSetBorderSizePacket; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/network/protocol/game/ClientboundSetBorderLerpSizePacket; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/network/protocol/game/ClientboundSetBorderCenterPacket; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/network/protocol/game/ClientboundSetActionBarTextPacket; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/network/protocol/game/ClientboundServerDataPacket; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/network/protocol/game/ClientboundSelectAdvancementsTabPacket; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/network/protocol/game/ClientboundSectionBlocksUpdatePacket; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/network/protocol/game/ClientboundRotateHeadPacket; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/network/protocol/game/ClientboundRespawnPacket; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/network/protocol/game/ClientboundResourcePackPacket; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/network/protocol/game/ClientboundRemoveMobEffectPacket; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/network/protocol/game/ClientboundRemoveEntitiesPacket; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/network/protocol/game/ClientboundRecipePacket; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/network/protocol/game/ClientboundRecipePacket$State; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/network/protocol/game/ClientboundPlayerPositionPacket; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/network/protocol/game/ClientboundPlayerLookAtPacket; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/network/protocol/game/ClientboundPlayerInfoUpdatePacket; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/network/protocol/game/ClientboundPlayerInfoUpdatePacket$EntryBuilder; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/network/protocol/game/ClientboundPlayerInfoUpdatePacket$Entry; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/network/protocol/game/ClientboundPlayerInfoUpdatePacket$Action; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/network/protocol/game/ClientboundPlayerInfoUpdatePacket$Action$Writer; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/network/protocol/game/ClientboundPlayerInfoUpdatePacket$Action$Reader; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/network/protocol/game/ClientboundPlayerInfoRemovePacket; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/network/protocol/game/ClientboundPlayerCombatKillPacket; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/network/protocol/game/ClientboundPlayerCombatEnterPacket; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/network/protocol/game/ClientboundPlayerCombatEndPacket; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/network/protocol/game/ClientboundPlayerChatPacket; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/network/protocol/game/ClientboundPlayerAbilitiesPacket; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/network/protocol/game/ClientboundPlaceGhostRecipePacket; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/network/protocol/game/ClientboundPingPacket; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/network/protocol/game/ClientboundOpenSignEditorPacket; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/network/protocol/game/ClientboundOpenScreenPacket; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/network/protocol/game/ClientboundOpenBookPacket; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/network/protocol/game/ClientboundMoveVehiclePacket; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/network/protocol/game/ClientboundMoveEntityPacket; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/network/protocol/game/ClientboundMoveEntityPacket$Rot; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/network/protocol/game/ClientboundMoveEntityPacket$PosRot; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/network/protocol/game/ClientboundMoveEntityPacket$Pos; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/network/protocol/game/ClientboundMerchantOffersPacket; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/network/protocol/game/ClientboundMapItemDataPacket; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/network/protocol/game/ClientboundLoginPacket; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/network/protocol/game/ClientboundLightUpdatePacketData; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/network/protocol/game/ClientboundLightUpdatePacket; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/network/protocol/game/ClientboundLevelParticlesPacket; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/network/protocol/game/ClientboundLevelEventPacket; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/network/protocol/game/ClientboundLevelChunkWithLightPacket; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/network/protocol/game/ClientboundLevelChunkPacketData; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/network/protocol/game/ClientboundLevelChunkPacketData$BlockEntityTagOutput; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/network/protocol/game/ClientboundLevelChunkPacketData$BlockEntityInfo; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/network/protocol/game/ClientboundKeepAlivePacket; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/network/protocol/game/ClientboundInitializeBorderPacket; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/network/protocol/game/ClientboundHurtAnimationPacket; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/network/protocol/game/ClientboundHorseScreenOpenPacket; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/network/protocol/game/ClientboundGameEventPacket; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/network/protocol/game/ClientboundGameEventPacket$Type; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/network/protocol/game/ClientboundForgetLevelChunkPacket; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/network/protocol/game/ClientboundExplodePacket; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/network/protocol/game/ClientboundEntityEventPacket; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/network/protocol/game/ClientboundDisguisedChatPacket; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/network/protocol/game/ClientboundDisconnectPacket; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/network/protocol/game/ClientboundDeleteChatPacket; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/network/protocol/game/ClientboundDamageEventPacket; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/network/protocol/game/ClientboundCustomChatCompletionsPacket; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/network/protocol/game/ClientboundCustomChatCompletionsPacket$Action; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/network/protocol/game/ClientboundCooldownPacket; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/network/protocol/game/ClientboundContainerSetSlotPacket; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/network/protocol/game/ClientboundContainerSetDataPacket; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/network/protocol/game/ClientboundContainerSetContentPacket; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/network/protocol/game/ClientboundContainerClosePacket; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/network/protocol/game/ClientboundCommandsPacket; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/network/protocol/game/ClientboundCommandsPacket$NodeStub; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/network/protocol/game/ClientboundCommandsPacket$NodeResolver; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/network/protocol/game/ClientboundCommandsPacket$LiteralNodeStub; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/network/protocol/game/ClientboundCommandsPacket$Entry; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/network/protocol/game/ClientboundCommandsPacket$ArgumentNodeStub; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/network/protocol/game/ClientboundCommandSuggestionsPacket; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/network/protocol/game/ClientboundClearTitlesPacket; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/network/protocol/game/ClientboundChunksBiomesPacket; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/network/protocol/game/ClientboundChunksBiomesPacket$ChunkBiomeData; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/network/protocol/game/ClientboundChangeDifficultyPacket; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/network/protocol/game/ClientboundBundlePacket; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/network/protocol/game/ClientboundBossEventPacket; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/network/protocol/game/ClientboundBossEventPacket$UpdateStyleOperation; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/network/protocol/game/ClientboundBossEventPacket$UpdatePropertiesOperation; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/network/protocol/game/ClientboundBossEventPacket$UpdateProgressOperation; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/network/protocol/game/ClientboundBossEventPacket$UpdateNameOperation; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/network/protocol/game/ClientboundBossEventPacket$OperationType; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/network/protocol/game/ClientboundBossEventPacket$Operation; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/network/protocol/game/ClientboundBossEventPacket$Handler; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/network/protocol/game/ClientboundBossEventPacket$AddOperation; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/network/protocol/game/ClientboundBossEventPacket$1; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/network/protocol/game/ClientboundBlockUpdatePacket; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/network/protocol/game/ClientboundBlockEventPacket; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/network/protocol/game/ClientboundBlockEntityDataPacket; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/network/protocol/game/ClientboundBlockDestructionPacket; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/network/protocol/game/ClientboundBlockChangedAckPacket; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/network/protocol/game/ClientboundAwardStatsPacket; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/network/protocol/game/ClientboundAnimatePacket; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/network/protocol/game/ClientboundAddPlayerPacket; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/network/protocol/game/ClientboundAddExperienceOrbPacket; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/network/protocol/game/ClientboundAddEntityPacket; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/network/protocol/game/ClientGamePacketListener; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/network/protocol/game/ServerboundSetCreativeModeSlotPacket; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/network/protocol/game/ServerboundCustomPayloadPacket; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/network/protocol/game/ServerboundContainerClickPacket; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/network/protocol/game/ClientboundCustomPayloadPacket; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/network/protocol/PacketUtils; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/network/protocol/PacketFlow; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/network/protocol/Packet; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/network/protocol/BundlerInfo; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/network/protocol/BundlerInfo$Provider; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/network/protocol/BundlerInfo$Bundler; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/network/protocol/BundlerInfo$2; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/network/protocol/BundlerInfo$2$1; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/network/protocol/BundlerInfo$1; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/network/protocol/BundlePacket; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/network/protocol/BundleDelimiterPacket; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/network/package-info; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/network/chat/package-info; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/network/chat/contents/package-info; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/network/chat/contents/TranslatableFormatException; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/network/chat/contents/StorageDataSource; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/network/chat/contents/SelectorContents; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/network/chat/contents/ScoreContents; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/network/chat/contents/NbtContents; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/network/chat/contents/LiteralContents; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/network/chat/contents/KeybindResolver; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/network/chat/contents/KeybindContents; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/network/chat/contents/EntityDataSource; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/network/chat/contents/DataSource; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/network/chat/contents/BlockDataSource; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/network/chat/contents/TranslatableContents; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/network/chat/ThrowingComponent; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/network/chat/TextColor; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/network/chat/SubStringSource; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/network/chat/Style; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/network/chat/Style$Serializer; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/network/chat/Style$1Collector; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/network/chat/Style$1; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/network/chat/SignedMessageValidator; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/network/chat/SignedMessageValidator$KeyBased; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/network/chat/SignedMessageLink; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/network/chat/SignedMessageChain; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/network/chat/SignedMessageChain$Encoder; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/network/chat/SignedMessageChain$Decoder; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/network/chat/SignedMessageChain$DecodeException; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/network/chat/SignedMessageBody; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/network/chat/SignedMessageBody$Packed; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/network/chat/SignableCommand; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/network/chat/SignableCommand$Argument; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/network/chat/RemoteChatSession; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/network/chat/RemoteChatSession$Data; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/network/chat/PlayerChatMessage; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/network/chat/OutgoingChatMessage; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/network/chat/OutgoingChatMessage$Player; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/network/chat/OutgoingChatMessage$Disguised; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/network/chat/MutableComponent; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/network/chat/MessageSignatureCache; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/network/chat/MessageSignature; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/network/chat/MessageSignature$Packed; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/network/chat/LocalChatSession; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/network/chat/LastSeenTrackedEntry; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/network/chat/LastSeenMessagesValidator; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/network/chat/LastSeenMessagesTracker; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/network/chat/LastSeenMessagesTracker$Update; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/network/chat/LastSeenMessages; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/network/chat/LastSeenMessages$Update; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/network/chat/LastSeenMessages$Packed; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/network/chat/HoverEvent; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/network/chat/HoverEvent$ItemStackInfo; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/network/chat/HoverEvent$EntityTooltipInfo; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/network/chat/HoverEvent$Action; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/network/chat/FormattedText; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/network/chat/FormattedText$StyledContentConsumer; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/network/chat/FormattedText$ContentConsumer; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/network/chat/FormattedText$4; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/network/chat/FormattedText$3; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/network/chat/FormattedText$2; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/network/chat/FormattedText$1; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/network/chat/FilterMask; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/network/chat/FilterMask$Type; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/network/chat/FilterMask$1; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/network/chat/ComponentUtils; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/network/chat/ComponentContents; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/network/chat/ComponentContents$1; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/network/chat/Component; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/network/chat/Component$Serializer; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/network/chat/CommonComponents; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/network/chat/ClickEvent; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/network/chat/ClickEvent$Action; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/network/chat/ChatTypeDecoration; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/network/chat/ChatTypeDecoration$Parameter; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/network/chat/ChatTypeDecoration$Parameter$Selector; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/network/chat/ChatType; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/network/chat/ChatType$BoundNetwork; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/network/chat/ChatType$Bound; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/network/chat/ChatDecorator; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/network/Varint21LengthFieldPrepender; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/network/Varint21FrameDecoder; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/network/TickablePacketListener; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/network/SkipPacketException; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/network/RateKickingConnection; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/network/PacketSendListener; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/network/PacketSendListener$2; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/network/PacketSendListener$1; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/network/PacketListener; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/network/PacketEncoder; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/network/PacketDecoder; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/network/PacketBundleUnpacker; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/network/PacketBundlePacker; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/network/ConnectionProtocol; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/network/ConnectionProtocol$ProtocolBuilder; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/network/ConnectionProtocol$PacketSet; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/network/CompressionDecoder; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/network/CipherEncoder; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/network/CipherDecoder; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/network/CipherBase; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/network/FriendlyByteBuf; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/network/FriendlyByteBuf$Writer; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/network/FriendlyByteBuf$Reader; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/network/FriendlyByteBuf$1; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/network/Connection; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/network/Connection$PacketHolder; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/network/Connection$2; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/network/Connection$1; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/network/CompressionEncoder; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/nbt/visitors/package-info; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/nbt/visitors/SkipFields; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/nbt/visitors/SkipAll; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/nbt/visitors/SkipAll$1; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/nbt/visitors/FieldTree; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/nbt/visitors/FieldSelector; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/nbt/visitors/CollectToTag; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/nbt/visitors/CollectFields; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/nbt/package-info; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/nbt/TextComponentTagVisitor; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/nbt/TagVisitor; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/nbt/TagTypes; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/nbt/TagType; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/nbt/TagType$VariableSize; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/nbt/TagType$StaticSize; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/nbt/TagType$2; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/nbt/TagType$1; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/nbt/TagParser; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/nbt/Tag; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/nbt/StringTagVisitor; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/nbt/StreamTagVisitor; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/nbt/StreamTagVisitor$ValueResult; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/nbt/StreamTagVisitor$EntryResult; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/nbt/SnbtPrinterTagVisitor; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/nbt/ShortTag; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/nbt/ShortTag$Cache; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/nbt/ShortTag$1; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/nbt/NumericTag; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/nbt/NbtUtils; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/nbt/NbtOps; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/nbt/NbtOps$NbtRecordBuilder; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/nbt/NbtOps$LongListCollector; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/nbt/NbtOps$ListCollector; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/nbt/NbtOps$IntListCollector; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/nbt/NbtOps$InitialListCollector; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/nbt/NbtOps$HomogenousListCollector; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/nbt/NbtOps$HeterogenousListCollector; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/nbt/NbtOps$ByteListCollector; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/nbt/NbtOps$1; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/nbt/LongTag; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/nbt/LongTag$Cache; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/nbt/LongTag$1; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/nbt/LongArrayTag; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/nbt/LongArrayTag$1; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/nbt/ListTag; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/nbt/ListTag$2; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/nbt/ListTag$1; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/nbt/IntTag; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/nbt/IntTag$Cache; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/nbt/IntTag$1; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/nbt/IntArrayTag; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/nbt/IntArrayTag$1; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/nbt/FloatTag; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/nbt/FloatTag$1; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/nbt/EndTag; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/nbt/EndTag$1; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/nbt/DoubleTag; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/nbt/DoubleTag$1; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/nbt/CollectionTag; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/nbt/ByteTag; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/nbt/ByteTag$Cache; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/nbt/ByteTag$1; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/nbt/ByteArrayTag; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/nbt/ByteArrayTag$1; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/nbt/StringTag; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/nbt/StringTag$1; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/nbt/NbtIo; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/nbt/NbtIo$1; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/nbt/NbtAccounter; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/nbt/NbtAccounter$1; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/nbt/CompoundTag; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/nbt/CompoundTag$2; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/nbt/CompoundTag$1; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/locale/package-info; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/locale/Language; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/locale/Language$1; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/gametest/framework/package-info; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/gametest/framework/TestReporter; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/gametest/framework/TestFunctionArgument; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/gametest/framework/TestFunction; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/gametest/framework/TestCommand; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/gametest/framework/TestCommand$TestSummaryDisplayer; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/gametest/framework/TestClassNameArgument; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/gametest/framework/TeamcityTestReporter; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/gametest/framework/ReportGameListener; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/gametest/framework/MultipleTestTracker; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/gametest/framework/MultipleTestTracker$1; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/gametest/framework/LogTestReporter; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/gametest/framework/JUnitLikeTestReporter; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/gametest/framework/GlobalTestReporter; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/gametest/framework/GameTestTimeoutException; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/gametest/framework/GameTestTicker; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/gametest/framework/GameTestSequence; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/gametest/framework/GameTestSequence$Condition; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/gametest/framework/GameTestRunner; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/gametest/framework/GameTestListener; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/gametest/framework/GameTestInfo; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/gametest/framework/GameTestHelper; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/gametest/framework/GameTestHelper$3; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/gametest/framework/GameTestHelper$2; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/gametest/framework/GameTestHelper$1; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/gametest/framework/GameTestGenerator; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/gametest/framework/GameTestEvent; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/gametest/framework/GameTestBatchRunner; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/gametest/framework/GameTestBatchRunner$1; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/gametest/framework/GameTestBatch; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/gametest/framework/GameTestAssertPosException; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/gametest/framework/GameTestAssertException; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/gametest/framework/ExhaustedAttemptsException; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/gametest/framework/BeforeBatch; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/gametest/framework/AfterBatch; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/gametest/framework/StructureUtils; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/gametest/framework/StructureUtils$1; +[13:03:45] [main/DEBUG]: Transforming class Lnet/minecraft/gametest/framework/GameTestServer; +[13:03:45] [main/DEBUG]: Transforming net/minecraft/gametest/framework/GameTestServer METHOD (Ljava/lang/Thread;Lnet/minecraft/world/level/storage/LevelStorageSource$LevelStorageAccess;Lnet/minecraft/server/packs/repository/PackRepository;Lnet/minecraft/server/WorldStem;Ljava/util/Collection;Lnet/minecraft/core/BlockPos;)V to access PUBLIC and LEAVE +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/gametest/framework/GameTestServer$1; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/gametest/framework/GameTestRegistry; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/gametest/framework/GameTest; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/data/worldgen/placement/package-info; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/data/worldgen/placement/VillagePlacements; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/data/worldgen/placement/VegetationPlacements; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/data/worldgen/placement/TreePlacements; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/data/worldgen/placement/PlacementUtils; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/data/worldgen/placement/OrePlacements; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/data/worldgen/placement/NetherPlacements; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/data/worldgen/placement/MiscOverworldPlacements; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/data/worldgen/placement/EndPlacements; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/data/worldgen/placement/CavePlacements; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/data/worldgen/placement/AquaticPlacements; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/data/worldgen/package-info; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/data/worldgen/features/package-info; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/data/worldgen/features/VegetationFeatures; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/data/worldgen/features/TreeFeatures; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/data/worldgen/features/PileFeatures; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/data/worldgen/features/OreFeatures; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/data/worldgen/features/NetherFeatures; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/data/worldgen/features/MiscOverworldFeatures; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/data/worldgen/features/FeatureUtils; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/data/worldgen/features/EndFeatures; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/data/worldgen/features/CaveFeatures; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/data/worldgen/features/AquaticFeatures; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/data/worldgen/biome/package-info; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/data/worldgen/biome/NetherBiomes; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/data/worldgen/biome/EndBiomes; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/data/worldgen/biome/BiomeData; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/data/worldgen/biome/OverworldBiomes; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/data/worldgen/VillagePools; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/data/worldgen/TrailRuinsStructurePools; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/data/worldgen/TerrainProvider; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/data/worldgen/TaigaVillagePools; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/data/worldgen/SurfaceRuleData; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/data/worldgen/Structures; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/data/worldgen/StructureSets; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/data/worldgen/SnowyVillagePools; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/data/worldgen/SavannaVillagePools; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/data/worldgen/ProcessorLists; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/data/worldgen/Pools; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/data/worldgen/PlainVillagePools; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/data/worldgen/PillagerOutpostPools; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/data/worldgen/NoiseData; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/data/worldgen/DimensionTypes; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/data/worldgen/DesertVillagePools; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/data/worldgen/Carvers; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/data/worldgen/BiomeDefaultFeatures; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/data/worldgen/BastionTreasureRoomPools; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/data/worldgen/BastionSharedPools; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/data/worldgen/BastionPieces; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/data/worldgen/BastionHousingUnitsPools; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/data/worldgen/BastionHoglinStablePools; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/data/worldgen/BastionBridgePools; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/data/worldgen/AncientCityStructurePools; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/data/worldgen/AncientCityStructurePieces; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/data/worldgen/BootstapContext; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/data/tags/package-info; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/data/tags/VanillaItemTagsProvider; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/data/tags/VanillaBlockTagsProvider; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/data/tags/WorldPresetTagsProvider; +[13:03:45] [main/DEBUG]: Transforming class Lnet/minecraft/data/tags/TagsProvider; +[13:03:45] [main/DEBUG]: Transforming net/minecraft/data/tags/TagsProvider INNERCLASS TagAppender to access PUBLIC and LEAVE +[13:03:45] [main/DEBUG]: Transforming net/minecraft/data/tags/TagsProvider FIELD f_126543_ to access PROTECTED and LEAVE +[13:03:45] [main/DEBUG]: Transforming net/minecraft/data/tags/TagsProvider METHOD m_6055_()Ljava/lang/String; to access PUBLIC and REMOVEFINAL +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/data/tags/TagsProvider$TagLookup; +[13:03:45] [main/DEBUG]: Transforming class Lnet/minecraft/data/tags/TagsProvider$TagAppender; +[13:03:45] [main/DEBUG]: Transforming net/minecraft/data/tags/TagsProvider$TagAppender CLASS to access PUBLIC and LEAVE +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/data/tags/TagsProvider$1CombinedData; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/data/tags/StructureTagsProvider; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/data/tags/PoiTypeTagsProvider; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/data/tags/PaintingVariantTagsProvider; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/data/tags/ItemTagsProvider; +[13:03:45] [main/DEBUG]: Transforming class Lnet/minecraft/data/tags/IntrinsicHolderTagsProvider; +[13:03:45] [main/DEBUG]: Transforming net/minecraft/data/tags/IntrinsicHolderTagsProvider INNERCLASS IntrinsicTagAppender to access PUBLIC and LEAVE +[13:03:45] [main/DEBUG]: Transforming class Lnet/minecraft/data/tags/IntrinsicHolderTagsProvider$IntrinsicTagAppender; +[13:03:45] [main/DEBUG]: Transforming net/minecraft/data/tags/IntrinsicHolderTagsProvider$IntrinsicTagAppender CLASS to access PUBLIC and LEAVE +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/data/tags/InstrumentTagsProvider; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/data/tags/GameEventTagsProvider; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/data/tags/FluidTagsProvider; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/data/tags/FlatLevelGeneratorPresetTagsProvider; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/data/tags/EntityTypeTagsProvider; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/data/tags/DamageTypeTagsProvider; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/data/tags/CatVariantTagsProvider; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/data/tags/BiomeTagsProvider; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/data/tags/BannerPatternTagsProvider; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/data/structures/package-info; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/data/structures/StructureUpdater; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/data/structures/SnbtToNbt; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/data/structures/SnbtToNbt$TaskResult; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/data/structures/SnbtToNbt$StructureConversionException; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/data/structures/SnbtToNbt$Filter; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/data/structures/NbtToSnbt; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/data/registries/package-info; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/data/registries/VanillaRegistries; +[13:03:45] [main/DEBUG]: Transforming class Lnet/minecraft/data/registries/RegistriesDatapackGenerator; +[13:03:45] [main/DEBUG]: Transforming net/minecraft/data/registries/RegistriesDatapackGenerator METHOD m_6055_()Ljava/lang/String; to access PUBLIC and REMOVEFINAL +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/data/recipes/packs/package-info; +[13:03:45] [main/DEBUG]: Transforming class Lnet/minecraft/data/recipes/packs/VanillaRecipeProvider; +[13:03:45] [main/DEBUG]: Transforming net/minecraft/data/recipes/packs/VanillaRecipeProvider FIELD f_243671_ to access PUBLIC and LEAVE +[13:03:45] [main/DEBUG]: Transforming net/minecraft/data/recipes/packs/VanillaRecipeProvider FIELD f_243779_ to access PUBLIC and LEAVE +[13:03:45] [main/DEBUG]: Transforming net/minecraft/data/recipes/packs/VanillaRecipeProvider FIELD f_243908_ to access PUBLIC and LEAVE +[13:03:45] [main/DEBUG]: Transforming net/minecraft/data/recipes/packs/VanillaRecipeProvider FIELD f_244369_ to access PUBLIC and LEAVE +[13:03:45] [main/DEBUG]: Transforming net/minecraft/data/recipes/packs/VanillaRecipeProvider FIELD f_243974_ to access PUBLIC and LEAVE +[13:03:45] [main/DEBUG]: Transforming net/minecraft/data/recipes/packs/VanillaRecipeProvider FIELD f_244628_ to access PUBLIC and LEAVE +[13:03:45] [main/DEBUG]: Transforming net/minecraft/data/recipes/packs/VanillaRecipeProvider FIELD f_244565_ to access PUBLIC and LEAVE +[13:03:45] [main/DEBUG]: Transforming net/minecraft/data/recipes/packs/VanillaRecipeProvider FIELD f_244430_ to access PUBLIC and LEAVE +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/data/recipes/packs/BundleRecipeProvider; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/data/recipes/package-info; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/data/recipes/SpecialRecipeBuilder; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/data/recipes/SpecialRecipeBuilder$1; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/data/recipes/SmithingTrimRecipeBuilder; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/data/recipes/SmithingTrimRecipeBuilder$Result; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/data/recipes/SmithingTransformRecipeBuilder; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/data/recipes/SmithingTransformRecipeBuilder$Result; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/data/recipes/SingleItemRecipeBuilder; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/data/recipes/SingleItemRecipeBuilder$Result; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/data/recipes/SimpleCookingRecipeBuilder; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/data/recipes/SimpleCookingRecipeBuilder$Result; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/data/recipes/ShapelessRecipeBuilder; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/data/recipes/ShapelessRecipeBuilder$Result; +[13:03:45] [main/DEBUG]: Transforming class Lnet/minecraft/data/recipes/ShapedRecipeBuilder; +[13:03:45] [main/DEBUG]: Transforming net/minecraft/data/recipes/ShapedRecipeBuilder INNERCLASS Result to access PUBLIC and LEAVE +[13:03:45] [main/DEBUG]: Transforming class Lnet/minecraft/data/recipes/ShapedRecipeBuilder$Result; +[13:03:45] [main/DEBUG]: Transforming net/minecraft/data/recipes/ShapedRecipeBuilder$Result CLASS to access PUBLIC and LEAVE +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/data/recipes/RecipeCategory; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/data/recipes/RecipeBuilder; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/data/recipes/FinishedRecipe; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/data/recipes/CraftingRecipeBuilder; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/data/recipes/CraftingRecipeBuilder$CraftingResult; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/data/recipes/CraftingRecipeBuilder$1; +[13:03:45] [main/DEBUG]: Transforming class Lnet/minecraft/data/recipes/RecipeProvider; +[13:03:45] [main/DEBUG]: Transforming net/minecraft/data/recipes/RecipeProvider FIELD f_236355_ to access PROTECTED and LEAVE +[13:03:45] [main/DEBUG]: Transforming net/minecraft/data/recipes/RecipeProvider FIELD f_236356_ to access PROTECTED and LEAVE +[13:03:45] [main/DEBUG]: Transforming net/minecraft/data/recipes/RecipeProvider METHOD m_245809_(Ljava/util/function/Consumer;Lnet/minecraft/world/item/crafting/RecipeSerializer;Ljava/util/List;Lnet/minecraft/data/recipes/RecipeCategory;Lnet/minecraft/world/level/ItemLike;FILjava/lang/String;Ljava/lang/String;)V to access PROTECTED and LEAVE +[13:03:45] [main/DEBUG]: Transforming net/minecraft/data/recipes/RecipeProvider METHOD m_176658_(Lnet/minecraft/world/level/ItemLike;Lnet/minecraft/world/item/crafting/Ingredient;)Lnet/minecraft/data/recipes/RecipeBuilder; to access PROTECTED and LEAVE +[13:03:45] [main/DEBUG]: Transforming net/minecraft/data/recipes/RecipeProvider METHOD m_176678_(Lnet/minecraft/world/level/ItemLike;Lnet/minecraft/world/item/crafting/Ingredient;)Lnet/minecraft/data/recipes/RecipeBuilder; to access PROTECTED and LEAVE +[13:03:45] [main/DEBUG]: Transforming net/minecraft/data/recipes/RecipeProvider METHOD m_176684_(Lnet/minecraft/world/level/ItemLike;Lnet/minecraft/world/item/crafting/Ingredient;)Lnet/minecraft/data/recipes/RecipeBuilder; to access PROTECTED and LEAVE +[13:03:45] [main/DEBUG]: Transforming net/minecraft/data/recipes/RecipeProvider METHOD m_247347_(Lnet/minecraft/data/recipes/RecipeCategory;Lnet/minecraft/world/level/ItemLike;Lnet/minecraft/world/item/crafting/Ingredient;)Lnet/minecraft/data/recipes/RecipeBuilder; to access PROTECTED and LEAVE +[13:03:45] [main/DEBUG]: Transforming net/minecraft/data/recipes/RecipeProvider METHOD m_176720_(Lnet/minecraft/world/level/ItemLike;Lnet/minecraft/world/item/crafting/Ingredient;)Lnet/minecraft/data/recipes/RecipeBuilder; to access PROTECTED and LEAVE +[13:03:45] [main/DEBUG]: Transforming net/minecraft/data/recipes/RecipeProvider METHOD m_176726_(Lnet/minecraft/world/level/ItemLike;Lnet/minecraft/world/item/crafting/Ingredient;)Lnet/minecraft/data/recipes/RecipeBuilder; to access PROTECTED and LEAVE +[13:03:45] [main/DEBUG]: Transforming net/minecraft/data/recipes/RecipeProvider METHOD m_245864_(Lnet/minecraft/data/recipes/RecipeCategory;Lnet/minecraft/world/level/ItemLike;Lnet/minecraft/world/item/crafting/Ingredient;)Lnet/minecraft/data/recipes/RecipeBuilder; to access PROTECTED and LEAVE +[13:03:45] [main/DEBUG]: Transforming net/minecraft/data/recipes/RecipeProvider METHOD m_247174_(Lnet/minecraft/data/recipes/RecipeCategory;Lnet/minecraft/world/level/ItemLike;Lnet/minecraft/world/item/crafting/Ingredient;)Lnet/minecraft/data/recipes/RecipeBuilder; to access PROTECTED and LEAVE +[13:03:45] [main/DEBUG]: Transforming net/minecraft/data/recipes/RecipeProvider METHOD m_245792_(Lnet/minecraft/data/recipes/RecipeCategory;Lnet/minecraft/world/level/ItemLike;Lnet/minecraft/world/item/crafting/Ingredient;)Lnet/minecraft/data/recipes/ShapedRecipeBuilder; to access PROTECTED and LEAVE +[13:03:45] [main/DEBUG]: Transforming net/minecraft/data/recipes/RecipeProvider METHOD m_176739_(Ljava/util/function/Consumer;Lnet/minecraft/world/level/ItemLike;Lnet/minecraft/world/level/ItemLike;)V to access PROTECTED and LEAVE +[13:03:45] [main/DEBUG]: Transforming net/minecraft/data/recipes/RecipeProvider METHOD m_247368_(Ljava/util/function/Consumer;Lnet/minecraft/data/recipes/RecipeCategory;Lnet/minecraft/world/level/ItemLike;Lnet/minecraft/data/recipes/RecipeCategory;Lnet/minecraft/world/level/ItemLike;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;)V to access PROTECTED and LEAVE +[13:03:45] [main/DEBUG]: Transforming net/minecraft/data/recipes/RecipeProvider METHOD m_247434_(Ljava/util/function/Consumer;Ljava/lang/String;Lnet/minecraft/world/item/crafting/RecipeSerializer;ILnet/minecraft/world/level/ItemLike;Lnet/minecraft/world/level/ItemLike;F)V to access PROTECTED and LEAVE +[13:03:45] [main/DEBUG]: Transforming net/minecraft/data/recipes/RecipeProvider METHOD m_176523_(Lnet/minecraft/data/BlockFamily;Lnet/minecraft/data/BlockFamily$Variant;)Lnet/minecraft/world/level/block/Block; to access PROTECTED and LEAVE +[13:03:45] [main/DEBUG]: Transforming net/minecraft/data/recipes/RecipeProvider METHOD m_125979_(Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/advancements/critereon/EnterBlockTrigger$TriggerInstance; to access PROTECTED and LEAVE +[13:03:45] [main/DEBUG]: Transforming net/minecraft/data/recipes/RecipeProvider METHOD m_176520_(Lnet/minecraft/advancements/critereon/MinMaxBounds$Ints;Lnet/minecraft/world/level/ItemLike;)Lnet/minecraft/advancements/critereon/InventoryChangeTrigger$TriggerInstance; to access PROTECTED and LEAVE +[13:03:45] [main/DEBUG]: Transforming net/minecraft/data/recipes/RecipeProvider METHOD m_126011_([Lnet/minecraft/advancements/critereon/ItemPredicate;)Lnet/minecraft/advancements/critereon/InventoryChangeTrigger$TriggerInstance; to access PROTECTED and LEAVE +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/data/package-info; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/data/models/package-info; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/data/models/model/package-info; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/data/models/model/TexturedModel; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/data/models/model/TexturedModel$Provider; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/data/models/model/TextureSlot; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/data/models/model/TextureMapping; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/data/models/model/ModelTemplates; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/data/models/model/ModelTemplate; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/data/models/model/ModelTemplate$JsonFactory; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/data/models/model/ModelLocationUtils; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/data/models/model/DelegatedModel; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/data/models/blockstates/package-info; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/data/models/blockstates/VariantProperty; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/data/models/blockstates/VariantProperty$Value; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/data/models/blockstates/VariantProperties; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/data/models/blockstates/VariantProperties$Rotation; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/data/models/blockstates/Variant; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/data/models/blockstates/Selector; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/data/models/blockstates/PropertyDispatch; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/data/models/blockstates/PropertyDispatch$TriFunction; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/data/models/blockstates/PropertyDispatch$QuadFunction; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/data/models/blockstates/PropertyDispatch$PentaFunction; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/data/models/blockstates/PropertyDispatch$C5; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/data/models/blockstates/PropertyDispatch$C4; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/data/models/blockstates/PropertyDispatch$C3; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/data/models/blockstates/PropertyDispatch$C2; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/data/models/blockstates/PropertyDispatch$C1; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/data/models/blockstates/MultiVariantGenerator; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/data/models/blockstates/MultiPartGenerator; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/data/models/blockstates/MultiPartGenerator$Entry; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/data/models/blockstates/MultiPartGenerator$ConditionalEntry; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/data/models/blockstates/Condition; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/data/models/blockstates/Condition$TerminalCondition; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/data/models/blockstates/Condition$Operation; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/data/models/blockstates/Condition$CompositeCondition; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/data/models/blockstates/BlockStateGenerator; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/data/models/ModelProvider; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/data/models/ItemModelGenerators; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/data/models/ItemModelGenerators$TrimModelData; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/data/models/BlockModelGenerators; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/data/models/BlockModelGenerators$WoodProvider; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/data/models/BlockModelGenerators$TintState; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/data/models/BlockModelGenerators$BookSlotModelCacheKey; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/data/models/BlockModelGenerators$BlockStateGeneratorSupplier; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/data/models/BlockModelGenerators$BlockFamilyProvider; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/data/models/BlockModelGenerators$BlockEntityModelGenerator; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/data/models/BlockModelGenerators$1; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/data/metadata/package-info; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/data/metadata/PackMetadataGenerator; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/data/loot/packs/package-info; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/data/loot/packs/VanillaPiglinBarterLoot; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/data/loot/packs/VanillaLootTableProvider; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/data/loot/packs/VanillaGiftLoot; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/data/loot/packs/VanillaFishingLoot; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/data/loot/packs/VanillaEntityLoot; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/data/loot/packs/VanillaChestLoot; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/data/loot/packs/VanillaBlockLoot; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/data/loot/packs/VanillaArchaeologyLoot; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/data/loot/package-info; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/data/loot/LootTableSubProvider; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/data/loot/LootTableProvider; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/data/loot/LootTableProvider$SubProviderEntry; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/data/loot/LootTableProvider$1; +[13:03:45] [main/DEBUG]: Transforming class Lnet/minecraft/data/loot/EntityLootSubProvider; +[13:03:45] [main/DEBUG]: Transforming net/minecraft/data/loot/EntityLootSubProvider METHOD m_245552_(Lnet/minecraft/world/entity/EntityType;)Z to access PROTECTED and LEAVE +[13:03:45] [main/DEBUG]: Transforming class Lnet/minecraft/data/loot/BlockLootSubProvider; +[13:03:45] [main/DEBUG]: Transforming net/minecraft/data/loot/BlockLootSubProvider METHOD m_246900_(Lnet/minecraft/world/level/block/Block;Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition$Builder;Lnet/minecraft/world/level/storage/loot/entries/LootPoolEntryContainer$Builder;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; to access PROTECTED and LEAVE +[13:03:45] [main/DEBUG]: Transforming net/minecraft/data/loot/BlockLootSubProvider METHOD m_245335_(Lnet/minecraft/world/level/ItemLike;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; to access PROTECTED and LEAVE +[13:03:45] [main/DEBUG]: Transforming net/minecraft/data/loot/BlockLootSubProvider METHOD m_245602_(Lnet/minecraft/world/level/ItemLike;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; to access PROTECTED and LEAVE +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/data/info/package-info; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/data/info/RegistryDumpReport; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/data/info/CommandsReport; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/data/info/BlockListReport; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/data/info/BiomeParametersDumpReport; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/data/advancements/packs/package-info; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/data/advancements/packs/VanillaTheEndAdvancements; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/data/advancements/packs/VanillaStoryAdvancements; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/data/advancements/packs/VanillaNetherAdvancements; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/data/advancements/packs/VanillaHusbandryAdvancements; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/data/advancements/packs/VanillaAdventureAdvancements; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/data/advancements/packs/VanillaAdvancementProvider; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/data/advancements/package-info; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/data/advancements/AdvancementSubProvider; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/data/advancements/AdvancementProvider; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/data/PackOutput; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/data/PackOutput$Target; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/data/PackOutput$PathProvider; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/data/DataProvider; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/data/DataProvider$Factory; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/data/CachedOutput; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/data/BlockFamily; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/data/BlockFamily$Variant; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/data/BlockFamily$Builder; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/data/BlockFamilies; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/data/Main; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/data/HashCache; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/data/HashCache$UpdateResult; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/data/HashCache$UpdateFunction; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/data/HashCache$ProviderCacheBuilder; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/data/HashCache$ProviderCache; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/data/HashCache$CacheUpdater; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/data/DataGenerator; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/data/DataGenerator$PackGenerator; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/core/registries/package-info; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/core/registries/Registries; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/core/registries/BuiltInRegistries; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/core/registries/BuiltInRegistries$RegistryBootstrap; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/core/particles/package-info; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/core/particles/VibrationParticleOption; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/core/particles/VibrationParticleOption$1; +[13:03:45] [main/DEBUG]: Transforming class Lnet/minecraft/core/particles/SimpleParticleType; +[13:03:45] [main/DEBUG]: Transforming net/minecraft/core/particles/SimpleParticleType METHOD (Z)V to access PUBLIC and LEAVE +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/core/particles/SimpleParticleType$1; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/core/particles/ShriekParticleOption; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/core/particles/ShriekParticleOption$1; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/core/particles/SculkChargeParticleOptions; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/core/particles/SculkChargeParticleOptions$1; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/core/particles/ParticleTypes; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/core/particles/ParticleTypes$1; +[13:03:45] [main/DEBUG]: Transforming class Lnet/minecraft/core/particles/ParticleType; +[13:03:45] [main/DEBUG]: Transforming net/minecraft/core/particles/ParticleType METHOD (ZLnet/minecraft/core/particles/ParticleOptions$Deserializer;)V to access PUBLIC and LEAVE +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/core/particles/ParticleOptions; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/core/particles/ParticleOptions$Deserializer; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/core/particles/ParticleGroup; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/core/particles/DustParticleOptionsBase; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/core/particles/DustParticleOptions; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/core/particles/DustParticleOptions$1; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/core/particles/DustColorTransitionOptions; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/core/particles/DustColorTransitionOptions$1; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/core/particles/ItemParticleOption; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/core/particles/ItemParticleOption$1; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/core/particles/BlockParticleOption; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/core/particles/BlockParticleOption$1; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/core/package-info; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/core/dispenser/package-info; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/core/dispenser/ShulkerBoxDispenseBehavior; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/core/dispenser/ShearsDispenseItemBehavior; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/core/dispenser/OptionalDispenseItemBehavior; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/core/dispenser/DefaultDispenseItemBehavior; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/core/dispenser/AbstractProjectileDispenseBehavior; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/core/dispenser/DispenseItemBehavior; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/core/dispenser/DispenseItemBehavior$9; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/core/dispenser/DispenseItemBehavior$8; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/core/dispenser/DispenseItemBehavior$8$1; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/core/dispenser/DispenseItemBehavior$7; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/core/dispenser/DispenseItemBehavior$7$1; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/core/dispenser/DispenseItemBehavior$6; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/core/dispenser/DispenseItemBehavior$5; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/core/dispenser/DispenseItemBehavior$4; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/core/dispenser/DispenseItemBehavior$3; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/core/dispenser/DispenseItemBehavior$27; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/core/dispenser/DispenseItemBehavior$26; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/core/dispenser/DispenseItemBehavior$25; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/core/dispenser/DispenseItemBehavior$24; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/core/dispenser/DispenseItemBehavior$23; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/core/dispenser/DispenseItemBehavior$22; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/core/dispenser/DispenseItemBehavior$21; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/core/dispenser/DispenseItemBehavior$20; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/core/dispenser/DispenseItemBehavior$2; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/core/dispenser/DispenseItemBehavior$19; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/core/dispenser/DispenseItemBehavior$18; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/core/dispenser/DispenseItemBehavior$17; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/core/dispenser/DispenseItemBehavior$16; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/core/dispenser/DispenseItemBehavior$15; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/core/dispenser/DispenseItemBehavior$14; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/core/dispenser/DispenseItemBehavior$13; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/core/dispenser/DispenseItemBehavior$12; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/core/dispenser/DispenseItemBehavior$11; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/core/dispenser/DispenseItemBehavior$10; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/core/dispenser/DispenseItemBehavior$1; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/core/dispenser/BoatDispenseItemBehavior; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/core/cauldron/package-info; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/core/cauldron/CauldronInteraction; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/core/WritableRegistry; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/core/Vec3i; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/core/UUIDUtil; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/core/SectionPos; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/core/SectionPos$1; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/core/Rotations; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/core/RegistryAccess; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/core/RegistryAccess$RegistryEntry; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/core/RegistryAccess$ImmutableRegistryAccess; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/core/RegistryAccess$Frozen; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/core/RegistryAccess$1FrozenAccess; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/core/RegistryAccess$1; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/core/Registry; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/core/Registry$2; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/core/Registry$1; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/core/QuartPos; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/core/PositionImpl; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/core/Position; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/core/NonNullList; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/core/LayeredRegistryAccess; +[13:03:45] [main/DEBUG]: Transforming class Lnet/minecraft/core/IdMapper; +[13:03:45] [main/DEBUG]: Transforming net/minecraft/core/IdMapper FIELD f_122653_ to access PROTECTED and LEAVE +[13:03:45] [main/DEBUG]: Transforming net/minecraft/core/IdMapper FIELD f_122654_ to access PROTECTED and LEAVE +[13:03:45] [main/DEBUG]: Transforming net/minecraft/core/IdMapper FIELD f_122655_ to access PROTECTED and LEAVE +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/core/IdMap; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/core/HolderOwner; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/core/HolderLookup; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/core/HolderLookup$RegistryLookup; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/core/HolderLookup$RegistryLookup$Delegate; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/core/HolderLookup$Provider; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/core/HolderLookup$Provider$2; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/core/HolderLookup$Provider$1; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/core/HolderLookup$Delegate; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/core/HolderLookup$1; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/core/HolderGetter; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/core/HolderGetter$Provider; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/core/GlobalPos; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/core/FrontAndTop; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/core/Direction8; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/core/Direction; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/core/Direction$Plane; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/core/Direction$AxisDirection; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/core/Direction$Axis; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/core/Direction$Axis$3; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/core/Direction$Axis$2; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/core/Direction$Axis$1; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/core/Direction$1; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/core/DefaultedRegistry; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/core/DefaultedMappedRegistry; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/core/Cursor3D; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/core/BlockSourceImpl; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/core/BlockSource; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/core/BlockPos; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/core/BlockPos$MutableBlockPos; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/core/BlockPos$5; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/core/BlockPos$4; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/core/BlockPos$3; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/core/BlockPos$2; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/core/BlockPos$1; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/core/BlockMath; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/core/AxisCycle; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/core/AxisCycle$3; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/core/AxisCycle$2; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/core/AxisCycle$1; +[13:03:45] [main/DEBUG]: Transforming class Lnet/minecraft/core/RegistrySynchronization; +[13:03:45] [main/DEBUG]: Transforming net/minecraft/core/RegistrySynchronization INNERCLASS NetworkedRegistryData to access PUBLIC and LEAVE +[13:03:45] [main/DEBUG]: Transforming class Lnet/minecraft/core/RegistrySynchronization$NetworkedRegistryData; +[13:03:45] [main/DEBUG]: Transforming net/minecraft/core/RegistrySynchronization$NetworkedRegistryData CLASS to access PUBLIC and LEAVE +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/core/RegistrySetBuilder; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/core/RegistrySetBuilder$ValueAndHolder; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/core/RegistrySetBuilder$UniversalLookup; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/core/RegistrySetBuilder$RegistryStub; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/core/RegistrySetBuilder$RegistryContents; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/core/RegistrySetBuilder$RegistryContents$1; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/core/RegistrySetBuilder$RegistryBootstrap; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/core/RegistrySetBuilder$RegisteredValue; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/core/RegistrySetBuilder$EmptyTagLookup; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/core/RegistrySetBuilder$CompositeOwner; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/core/RegistrySetBuilder$BuildState; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/core/RegistrySetBuilder$BuildState$1; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/core/RegistrySetBuilder$1; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/core/RegistryCodecs; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/core/RegistryCodecs$RegistryEntry; +[13:03:45] [main/DEBUG]: Transforming class Lnet/minecraft/core/MappedRegistry; +[13:03:45] [main/DEBUG]: Transforming net/minecraft/core/MappedRegistry FIELD f_244282_ to access PROTECTED and LEAVE +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/core/MappedRegistry$2; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/core/MappedRegistry$1; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/core/HolderSet; +[13:03:45] [main/DEBUG]: Transforming class Lnet/minecraft/core/HolderSet$Named; +[13:03:45] [main/DEBUG]: Transforming net/minecraft/core/HolderSet$Named METHOD m_205835_(Ljava/util/List;)V to access PUBLIC and LEAVE +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/core/HolderSet$ListBacked; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/core/HolderSet$Direct; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/core/Holder; +[13:03:45] [main/DEBUG]: Transforming class Lnet/minecraft/core/Holder$Reference; +[13:03:45] [main/DEBUG]: Transforming net/minecraft/core/Holder$Reference INNERCLASS Type to access PUBLIC and LEAVE +[13:03:45] [main/DEBUG]: Transforming net/minecraft/core/Holder$Reference METHOD m_246870_(Lnet/minecraft/resources/ResourceKey;)V to access PUBLIC and LEAVE +[13:03:45] [main/DEBUG]: Transforming net/minecraft/core/Holder$Reference METHOD m_247654_(Ljava/lang/Object;)V to access PUBLIC and LEAVE +[13:03:45] [main/DEBUG]: Transforming net/minecraft/core/Holder$Reference METHOD m_205769_(Ljava/util/Collection;)V to access PUBLIC and LEAVE +[13:03:45] [main/DEBUG]: Transforming class Lnet/minecraft/core/Holder$Reference$Type; +[13:03:45] [main/DEBUG]: Transforming net/minecraft/core/Holder$Reference$Type CLASS to access PUBLIC and LEAVE +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/core/Holder$Kind; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/core/Holder$Direct; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/commands/synchronization/package-info; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/commands/synchronization/brigadier/package-info; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/commands/synchronization/brigadier/StringArgumentSerializer; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/commands/synchronization/brigadier/StringArgumentSerializer$Template; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/commands/synchronization/brigadier/StringArgumentSerializer$1; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/commands/synchronization/brigadier/LongArgumentInfo; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/commands/synchronization/brigadier/LongArgumentInfo$Template; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/commands/synchronization/brigadier/IntegerArgumentInfo; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/commands/synchronization/brigadier/IntegerArgumentInfo$Template; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/commands/synchronization/brigadier/FloatArgumentInfo; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/commands/synchronization/brigadier/FloatArgumentInfo$Template; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/commands/synchronization/brigadier/DoubleArgumentInfo; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/commands/synchronization/brigadier/DoubleArgumentInfo$Template; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/commands/synchronization/SuggestionProviders; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/commands/synchronization/SuggestionProviders$Wrapper; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/commands/synchronization/SingletonArgumentInfo; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/commands/synchronization/SingletonArgumentInfo$Template; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/commands/synchronization/ArgumentUtils; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/commands/synchronization/ArgumentTypeInfo; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/commands/synchronization/ArgumentTypeInfo$Template; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/commands/synchronization/ArgumentTypeInfos; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/commands/package-info; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/commands/arguments/selector/package-info; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/commands/arguments/selector/options/package-info; +[13:03:45] [main/DEBUG]: Transforming class Lnet/minecraft/commands/arguments/selector/options/EntitySelectorOptions; +[13:03:45] [main/DEBUG]: Transforming net/minecraft/commands/arguments/selector/options/EntitySelectorOptions METHOD m_121453_(Ljava/lang/String;Lnet/minecraft/commands/arguments/selector/options/EntitySelectorOptions$Modifier;Ljava/util/function/Predicate;Lnet/minecraft/network/chat/Component;)V to access PUBLIC and LEAVE +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/commands/arguments/selector/options/EntitySelectorOptions$Option; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/commands/arguments/selector/options/EntitySelectorOptions$Modifier; +[13:03:45] [main/DEBUG]: Transforming class Lnet/minecraft/commands/arguments/selector/EntitySelectorParser; +[13:03:45] [main/DEBUG]: Transforming net/minecraft/commands/arguments/selector/EntitySelectorParser METHOD m_121229_()V to access PUBLIC and LEAVE +[13:03:45] [main/DEBUG]: Transforming net/minecraft/commands/arguments/selector/EntitySelectorParser METHOD m_121317_()V to access PUBLIC and LEAVE +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/commands/arguments/selector/EntitySelector; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/commands/arguments/selector/EntitySelector$1; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/commands/arguments/package-info; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/commands/arguments/item/package-info; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/commands/arguments/item/ItemPredicateArgument; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/commands/arguments/item/ItemPredicateArgument$Result; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/commands/arguments/item/ItemParser; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/commands/arguments/item/ItemParser$TagResult; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/commands/arguments/item/ItemParser$ItemResult; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/commands/arguments/item/ItemInput; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/commands/arguments/item/ItemArgument; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/commands/arguments/item/FunctionArgument; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/commands/arguments/item/FunctionArgument$Result; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/commands/arguments/item/FunctionArgument$2; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/commands/arguments/item/FunctionArgument$1; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/commands/arguments/coordinates/package-info; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/commands/arguments/coordinates/WorldCoordinates; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/commands/arguments/coordinates/WorldCoordinate; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/commands/arguments/coordinates/Vec3Argument; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/commands/arguments/coordinates/Vec2Argument; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/commands/arguments/coordinates/SwizzleArgument; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/commands/arguments/coordinates/RotationArgument; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/commands/arguments/coordinates/LocalCoordinates; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/commands/arguments/coordinates/Coordinates; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/commands/arguments/coordinates/ColumnPosArgument; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/commands/arguments/coordinates/BlockPosArgument; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/commands/arguments/blocks/package-info; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/commands/arguments/blocks/BlockStateParser; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/commands/arguments/blocks/BlockStateParser$TagResult; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/commands/arguments/blocks/BlockStateParser$BlockResult; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/commands/arguments/blocks/BlockStateArgument; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/commands/arguments/blocks/BlockPredicateArgument; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/commands/arguments/blocks/BlockPredicateArgument$TagPredicate; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/commands/arguments/blocks/BlockPredicateArgument$Result; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/commands/arguments/blocks/BlockPredicateArgument$BlockPredicate; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/commands/arguments/blocks/BlockInput; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/commands/arguments/UuidArgument; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/commands/arguments/TimeArgument; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/commands/arguments/TimeArgument$Info; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/commands/arguments/TimeArgument$Info$Template; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/commands/arguments/TemplateRotationArgument; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/commands/arguments/TemplateMirrorArgument; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/commands/arguments/StringRepresentableArgument; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/commands/arguments/SlotArgument; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/commands/arguments/SignedArgument; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/commands/arguments/ScoreboardSlotArgument; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/commands/arguments/ScoreHolderArgument; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/commands/arguments/ScoreHolderArgument$SelectorResult; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/commands/arguments/ScoreHolderArgument$Result; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/commands/arguments/ScoreHolderArgument$Info; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/commands/arguments/ScoreHolderArgument$Info$Template; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/commands/arguments/ResourceOrTagKeyArgument; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/commands/arguments/ResourceOrTagKeyArgument$TagResult; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/commands/arguments/ResourceOrTagKeyArgument$Result; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/commands/arguments/ResourceOrTagKeyArgument$ResourceResult; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/commands/arguments/ResourceOrTagKeyArgument$Info; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/commands/arguments/ResourceOrTagKeyArgument$Info$Template; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/commands/arguments/ResourceOrTagArgument; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/commands/arguments/ResourceOrTagArgument$TagResult; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/commands/arguments/ResourceOrTagArgument$Result; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/commands/arguments/ResourceOrTagArgument$ResourceResult; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/commands/arguments/ResourceOrTagArgument$Info; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/commands/arguments/ResourceOrTagArgument$Info$Template; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/commands/arguments/ResourceKeyArgument; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/commands/arguments/ResourceKeyArgument$Info; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/commands/arguments/ResourceKeyArgument$Info$Template; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/commands/arguments/ResourceArgument; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/commands/arguments/ResourceArgument$Info; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/commands/arguments/ResourceArgument$Info$Template; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/commands/arguments/RangeArgument; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/commands/arguments/RangeArgument$Ints; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/commands/arguments/RangeArgument$Floats; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/commands/arguments/ParticleArgument; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/commands/arguments/OperationArgument; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/commands/arguments/OperationArgument$SimpleOperation; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/commands/arguments/OperationArgument$Operation; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/commands/arguments/ObjectiveCriteriaArgument; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/commands/arguments/NbtTagArgument; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/commands/arguments/NbtPathArgument; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/commands/arguments/NbtPathArgument$Node; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/commands/arguments/NbtPathArgument$NbtPath; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/commands/arguments/NbtPathArgument$MatchRootObjectNode; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/commands/arguments/NbtPathArgument$MatchObjectNode; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/commands/arguments/NbtPathArgument$MatchElementNode; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/commands/arguments/NbtPathArgument$IndexedElementNode; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/commands/arguments/NbtPathArgument$CompoundChildNode; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/commands/arguments/NbtPathArgument$AllElementsNode; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/commands/arguments/HeightmapTypeArgument; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/commands/arguments/GameProfileArgument; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/commands/arguments/GameProfileArgument$SelectorResult; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/commands/arguments/GameProfileArgument$Result; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/commands/arguments/GameModeArgument; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/commands/arguments/EntityAnchorArgument; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/commands/arguments/EntityAnchorArgument$Anchor; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/commands/arguments/DimensionArgument; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/commands/arguments/CompoundTagArgument; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/commands/arguments/ComponentArgument; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/commands/arguments/ColorArgument; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/commands/arguments/ArgumentSignatures; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/commands/arguments/ArgumentSignatures$Signer; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/commands/arguments/ArgumentSignatures$Entry; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/commands/arguments/AngleArgument; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/commands/arguments/AngleArgument$SingleAngle; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/commands/arguments/TeamArgument; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/commands/arguments/ResourceLocationArgument; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/commands/arguments/ObjectiveArgument; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/commands/arguments/MessageArgument; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/commands/arguments/MessageArgument$Part; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/commands/arguments/MessageArgument$Message; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/commands/arguments/EntityArgument; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/commands/arguments/EntityArgument$Info; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/commands/arguments/EntityArgument$Info$Template; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/commands/SharedSuggestionProvider; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/commands/SharedSuggestionProvider$TextCoordinates; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/commands/SharedSuggestionProvider$ElementSuggestionType; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/commands/CommandSource; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/commands/CommandSource$1; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/commands/CommandSigningContext; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/commands/CommandSigningContext$SignedArguments; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/commands/CommandSigningContext$1; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/commands/CommandRuntimeException; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/commands/CommandFunction; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/commands/CommandFunction$FunctionEntry; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/commands/CommandFunction$Entry; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/commands/CommandFunction$CommandEntry; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/commands/CommandFunction$CacheableFunction; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/commands/CommandBuildContext; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/commands/CommandBuildContext$MissingTagAccessPolicy; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/commands/CommandBuildContext$Configurable; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/commands/CommandBuildContext$3; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/commands/CommandBuildContext$2; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/commands/CommandBuildContext$2$1; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/commands/CommandBuildContext$1; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/commands/BrigadierExceptions; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/commands/Commands; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/commands/Commands$ParseFunction; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/commands/Commands$CommandSelection; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/commands/Commands$1; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/commands/Commands$1$1; +[13:03:45] [main/DEBUG]: Transforming class Lnet/minecraft/commands/CommandSourceStack; +[13:03:45] [main/DEBUG]: Transforming net/minecraft/commands/CommandSourceStack FIELD f_81288_ to access PUBLIC and LEAVE +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/client/tutorial/package-info; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/client/tutorial/TutorialSteps; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/client/tutorial/TutorialStepInstance; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/client/tutorial/Tutorial; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/client/tutorial/Tutorial$TimedToast; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/client/tutorial/PunchTreeTutorialStepInstance; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/client/tutorial/OpenInventoryTutorialStep; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/client/tutorial/MovementTutorialStepInstance; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/client/tutorial/FindTreeTutorialStepInstance; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/client/tutorial/CraftPlanksTutorialStep; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/client/tutorial/CompletedTutorialStepInstance; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/client/tutorial/BundleTutorial; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/client/telemetry/package-info; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/client/telemetry/events/package-info; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/client/telemetry/events/WorldUnloadEvent; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/client/telemetry/events/WorldLoadTimesEvent; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/client/telemetry/events/WorldLoadEvent; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/client/telemetry/events/WorldLoadEvent$1; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/client/telemetry/events/PerformanceMetricsEvent; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/client/telemetry/events/GameLoadTimesEvent; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/client/telemetry/events/GameLoadTimesEvent$Measurement; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/client/telemetry/events/AggregatedTelemetryEvent; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/client/telemetry/WorldSessionTelemetryManager; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/client/telemetry/TelemetryPropertyMap; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/client/telemetry/TelemetryPropertyMap$Builder; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/client/telemetry/TelemetryPropertyMap$1; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/client/telemetry/TelemetryProperty; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/client/telemetry/TelemetryProperty$ServerType; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/client/telemetry/TelemetryProperty$GameMode; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/client/telemetry/TelemetryProperty$Exporter; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/client/telemetry/TelemetryLogManager; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/client/telemetry/TelemetryEventType; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/client/telemetry/TelemetryEventType$Builder; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/client/telemetry/TelemetryEventSender; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/client/telemetry/TelemetryEventLogger; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/client/telemetry/TelemetryEventLog; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/client/telemetry/TelemetryEventInstance; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/client/telemetry/ClientTelemetryManager; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/client/sounds/package-info; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/client/sounds/Weighted; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/client/sounds/WeighedSoundEvents; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/client/sounds/SoundManager; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/client/sounds/SoundManager$Preparations; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/client/sounds/SoundManager$Preparations$1; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/client/sounds/SoundManager$2; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/client/sounds/SoundManager$1; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/client/sounds/SoundEventListener; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/client/sounds/SoundEngineExecutor; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/client/sounds/SoundBufferLibrary; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/client/sounds/MusicManager; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/client/sounds/LoopingAudioStream; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/client/sounds/LoopingAudioStream$NoCloseBuffer; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/client/sounds/LoopingAudioStream$AudioStreamProvider; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/client/sounds/ChannelAccess; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/client/sounds/ChannelAccess$ChannelHandle; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/client/sounds/AudioStream; +[13:03:45] [main/DEBUG]: Transforming class Lnet/minecraft/client/sounds/SoundEngine; +[13:03:45] [main/DEBUG]: Transforming net/minecraft/client/sounds/SoundEngine FIELD f_120217_ to access PUBLIC and LEAVE +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/client/sounds/SoundEngine$DeviceCheckState; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/client/server/package-info; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/client/server/LanServer; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/client/server/IntegratedPlayerList; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/client/server/LanServerPinger; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/client/server/LanServerDetection; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/client/server/LanServerDetection$LanServerList; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/client/server/LanServerDetection$LanServerDetector; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/client/server/IntegratedServer; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/client/searchtree/package-info; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/client/searchtree/SuffixArray; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/client/searchtree/SearchTree; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/client/searchtree/SearchRegistry; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/client/searchtree/SearchRegistry$TreeEntry; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/client/searchtree/SearchRegistry$TreeBuilderSupplier; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/client/searchtree/SearchRegistry$Key; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/client/searchtree/ResourceLocationSearchTree; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/client/searchtree/ResourceLocationSearchTree$2; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/client/searchtree/ResourceLocationSearchTree$1; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/client/searchtree/RefreshableSearchTree; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/client/searchtree/PlainTextSearchTree; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/client/searchtree/MergingUniqueIterator; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/client/searchtree/IntersectionIterator; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/client/searchtree/IdSearchTree; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/client/searchtree/FullTextSearchTree; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/client/resources/sounds/package-info; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/client/resources/sounds/UnderwaterAmbientSoundInstances; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/client/resources/sounds/UnderwaterAmbientSoundInstances$UnderwaterAmbientSoundInstance; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/client/resources/sounds/UnderwaterAmbientSoundInstances$SubSound; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/client/resources/sounds/UnderwaterAmbientSoundHandler; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/client/resources/sounds/TickableSoundInstance; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/client/resources/sounds/SoundEventRegistrationSerializer; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/client/resources/sounds/SoundEventRegistration; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/client/resources/sounds/Sound; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/client/resources/sounds/Sound$Type; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/client/resources/sounds/SnifferSoundInstance; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/client/resources/sounds/SimpleSoundInstance; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/client/resources/sounds/RidingMinecartSoundInstance; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/client/resources/sounds/MinecartSoundInstance; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/client/resources/sounds/GuardianAttackSoundInstance; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/client/resources/sounds/EntityBoundSoundInstance; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/client/resources/sounds/ElytraOnPlayerSoundInstance; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/client/resources/sounds/BubbleColumnAmbientSoundHandler; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/client/resources/sounds/BiomeAmbientSoundsHandler; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/client/resources/sounds/BiomeAmbientSoundsHandler$LoopSoundInstance; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/client/resources/sounds/BeeSoundInstance; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/client/resources/sounds/BeeFlyingSoundInstance; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/client/resources/sounds/BeeAggressiveSoundInstance; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/client/resources/sounds/AmbientSoundHandler; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/client/resources/sounds/AbstractTickableSoundInstance; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/client/resources/sounds/AbstractSoundInstance; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/client/resources/sounds/SoundInstance; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/client/resources/sounds/SoundInstance$Attenuation; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/client/resources/package-info; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/client/resources/model/package-info; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/client/resources/model/UnbakedModel; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/client/resources/model/ModelState; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/client/resources/model/ModelResourceLocation; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/client/resources/model/Material; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/client/resources/model/BuiltInModel; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/client/resources/model/BlockModelRotation; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/client/resources/model/AtlasSet; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/client/resources/model/AtlasSet$StitchResult; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/client/resources/model/AtlasSet$AtlasEntry; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/client/resources/model/WeightedBakedModel; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/client/resources/model/WeightedBakedModel$Builder; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/client/resources/model/SimpleBakedModel; +[13:03:45] [main/DEBUG]: Transforming class Lnet/minecraft/client/resources/model/SimpleBakedModel$Builder; +[13:03:45] [main/DEBUG]: Transforming net/minecraft/client/resources/model/SimpleBakedModel$Builder METHOD (ZZZLnet/minecraft/client/renderer/block/model/ItemTransforms;Lnet/minecraft/client/renderer/block/model/ItemOverrides;)V to access PUBLIC and LEAVE +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/client/resources/model/MultiPartBakedModel; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/client/resources/model/MultiPartBakedModel$Builder; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/client/resources/model/ModelManager; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/client/resources/model/ModelManager$ReloadState; +[13:03:45] [main/DEBUG]: Transforming class Lnet/minecraft/client/resources/model/ModelBakery; +[13:03:45] [main/DEBUG]: Transforming net/minecraft/client/resources/model/ModelBakery METHOD m_119364_(Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/client/renderer/block/model/BlockModel; to access PROTECTED and LEAVE +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/client/resources/model/ModelBakery$ModelGroupKey; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/client/resources/model/ModelBakery$ModelBakerImpl; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/client/resources/model/ModelBakery$LoadedJson; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/client/resources/model/ModelBakery$BlockStateDefinitionException; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/client/resources/model/ModelBakery$BakedCacheKey; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/client/resources/model/ModelBaker; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/client/resources/model/BakedModel; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/client/resources/metadata/texture/package-info; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/client/resources/metadata/texture/TextureMetadataSectionSerializer; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/client/resources/metadata/texture/TextureMetadataSection; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/client/resources/metadata/package-info; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/client/resources/metadata/language/package-info; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/client/resources/metadata/language/LanguageMetadataSection; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/client/resources/metadata/animation/package-info; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/client/resources/metadata/animation/VillagerMetadataSectionSerializer; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/client/resources/metadata/animation/VillagerMetaDataSection; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/client/resources/metadata/animation/VillagerMetaDataSection$Hat; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/client/resources/metadata/animation/FrameSize; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/client/resources/metadata/animation/AnimationMetadataSectionSerializer; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/client/resources/metadata/animation/AnimationMetadataSection; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/client/resources/metadata/animation/AnimationMetadataSection$FrameOutput; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/client/resources/metadata/animation/AnimationMetadataSection$1; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/client/resources/metadata/animation/AnimationFrame; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/client/resources/language/package-info; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/client/resources/language/LanguageInfo; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/client/resources/language/FormattedBidiReorder; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/client/resources/language/LanguageManager; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/client/resources/language/I18n; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/client/resources/language/ClientLanguage; +[13:03:45] [main/DEBUG]: Transforming class Lnet/minecraft/client/resources/TextureAtlasHolder; +[13:03:45] [main/DEBUG]: Transforming net/minecraft/client/resources/TextureAtlasHolder FIELD f_118884_ to access PROTECTED and LEAVE +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/client/resources/SplashManager; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/client/resources/SkinManager; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/client/resources/SkinManager$SkinTextureCallback; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/client/resources/SkinManager$2; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/client/resources/SkinManager$1; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/client/resources/PaintingTextureManager; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/client/resources/MobEffectTextureManager; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/client/resources/LegacyStuffWrapper; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/client/resources/IndexedAssetSource; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/client/resources/GrassColorReloadListener; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/client/resources/FoliageColorReloadListener; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/client/resources/DownloadedPackSource; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/client/resources/DefaultPlayerSkin; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/client/resources/DefaultPlayerSkin$SkinType; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/client/resources/DefaultPlayerSkin$ModelType; +[13:03:45] [main/DEBUG]: Transforming class Lnet/minecraft/client/resources/ClientPackSource; +[13:03:45] [main/DEBUG]: Transforming net/minecraft/client/resources/ClientPackSource METHOD m_246691_(Ljava/nio/file/Path;)Lnet/minecraft/server/packs/VanillaPackResources; to access PUBLIC and LEAVE +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/client/renderer/texture/package-info; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/client/renderer/texture/atlas/sources/package-info; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/client/renderer/texture/atlas/sources/Unstitcher; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/client/renderer/texture/atlas/sources/Unstitcher$RegionInstance; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/client/renderer/texture/atlas/sources/Unstitcher$Region; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/client/renderer/texture/atlas/sources/SourceFilter; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/client/renderer/texture/atlas/sources/SingleFile; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/client/renderer/texture/atlas/sources/PalettedPermutations; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/client/renderer/texture/atlas/sources/PalettedPermutations$PalettedSpriteSupplier; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/client/renderer/texture/atlas/sources/LazyLoadedImage; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/client/renderer/texture/atlas/sources/DirectoryLister; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/client/renderer/texture/atlas/package-info; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/client/renderer/texture/atlas/SpriteSources; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/client/renderer/texture/atlas/SpriteSourceType; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/client/renderer/texture/atlas/SpriteSource; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/client/renderer/texture/atlas/SpriteSource$SpriteSupplier; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/client/renderer/texture/atlas/SpriteSource$Output; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/client/renderer/texture/atlas/SpriteResourceLoader; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/client/renderer/texture/atlas/SpriteResourceLoader$1; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/client/renderer/texture/Tickable; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/client/renderer/texture/StitcherException; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/client/renderer/texture/SpriteTicker; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/client/renderer/texture/SimpleTexture; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/client/renderer/texture/SimpleTexture$TextureImage; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/client/renderer/texture/PreloadedTexture; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/client/renderer/texture/OverlayTexture; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/client/renderer/texture/MissingTextureAtlasSprite; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/client/renderer/texture/HttpTexture; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/client/renderer/texture/DynamicTexture; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/client/renderer/texture/Dumpable; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/client/renderer/texture/TextureManager; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/client/renderer/texture/TextureAtlasSprite; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/client/renderer/texture/TextureAtlasSprite$Ticker; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/client/renderer/texture/TextureAtlasSprite$1; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/client/renderer/texture/TextureAtlas; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/client/renderer/texture/Stitcher; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/client/renderer/texture/Stitcher$SpriteLoader; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/client/renderer/texture/Stitcher$Region; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/client/renderer/texture/Stitcher$Holder; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/client/renderer/texture/Stitcher$Entry; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/client/renderer/texture/SpriteLoader; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/client/renderer/texture/SpriteLoader$Preparations; +[13:03:45] [main/DEBUG]: Transforming class Lnet/minecraft/client/renderer/texture/SpriteContents; +[13:03:45] [main/DEBUG]: Transforming net/minecraft/client/renderer/texture/SpriteContents FIELD f_243731_ to access PUBLIC and LEAVE +[13:03:45] [main/DEBUG]: Transforming net/minecraft/client/renderer/texture/SpriteContents FIELD f_244575_ to access DEFAULT and LEAVE +[13:03:45] [main/DEBUG]: Transforming net/minecraft/client/renderer/texture/SpriteContents METHOD m_245088_()I to access DEFAULT and LEAVE +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/client/renderer/texture/SpriteContents$Ticker; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/client/renderer/texture/SpriteContents$InterpolationData; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/client/renderer/texture/SpriteContents$FrameInfo; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/client/renderer/texture/SpriteContents$AnimatedTexture; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/client/renderer/texture/MipmapGenerator; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/client/renderer/texture/AbstractTexture; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/client/renderer/package-info; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/client/renderer/item/package-info; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/client/renderer/item/ItemPropertyFunction; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/client/renderer/item/CompassItemPropertyFunction; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/client/renderer/item/CompassItemPropertyFunction$CompassWobble; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/client/renderer/item/CompassItemPropertyFunction$CompassTarget; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/client/renderer/item/ClampedItemPropertyFunction; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/client/renderer/item/ItemProperties; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/client/renderer/item/ItemProperties$1; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/client/renderer/entity/player/package-info; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/client/renderer/entity/player/PlayerRenderer; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/client/renderer/entity/package-info; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/client/renderer/entity/layers/package-info; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/client/renderer/entity/layers/WolfCollarLayer; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/client/renderer/entity/layers/WitherArmorLayer; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/client/renderer/entity/layers/WitchItemLayer; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/client/renderer/entity/layers/WardenEmissiveLayer; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/client/renderer/entity/layers/WardenEmissiveLayer$DrawSelector; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/client/renderer/entity/layers/WardenEmissiveLayer$AlphaFunction; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/client/renderer/entity/layers/VillagerProfessionLayer; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/client/renderer/entity/layers/TropicalFishPatternLayer; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/client/renderer/entity/layers/TropicalFishPatternLayer$1; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/client/renderer/entity/layers/StuckInBodyLayer; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/client/renderer/entity/layers/StrayClothingLayer; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/client/renderer/entity/layers/SpinAttackEffectLayer; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/client/renderer/entity/layers/SpiderEyesLayer; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/client/renderer/entity/layers/SnowGolemHeadLayer; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/client/renderer/entity/layers/SlimeOuterLayer; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/client/renderer/entity/layers/ShulkerHeadLayer; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/client/renderer/entity/layers/SheepFurLayer; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/client/renderer/entity/layers/SaddleLayer; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/client/renderer/entity/layers/RenderLayer; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/client/renderer/entity/layers/PlayerItemInHandLayer; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/client/renderer/entity/layers/PhantomEyesLayer; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/client/renderer/entity/layers/ParrotOnShoulderLayer; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/client/renderer/entity/layers/PandaHoldsItemLayer; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/client/renderer/entity/layers/MushroomCowMushroomLayer; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/client/renderer/entity/layers/LlamaDecorLayer; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/client/renderer/entity/layers/ItemInHandLayer; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/client/renderer/entity/layers/IronGolemFlowerLayer; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/client/renderer/entity/layers/IronGolemCrackinessLayer; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/client/renderer/entity/layers/HorseMarkingLayer; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/client/renderer/entity/layers/HorseArmorLayer; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/client/renderer/entity/layers/FoxHeldItemLayer; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/client/renderer/entity/layers/EyesLayer; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/client/renderer/entity/layers/EnergySwirlLayer; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/client/renderer/entity/layers/EnderEyesLayer; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/client/renderer/entity/layers/DrownedOuterLayer; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/client/renderer/entity/layers/DolphinCarryingItemLayer; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/client/renderer/entity/layers/Deadmau5EarsLayer; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/client/renderer/entity/layers/CustomHeadLayer; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/client/renderer/entity/layers/CrossedArmsItemLayer; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/client/renderer/entity/layers/CreeperPowerLayer; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/client/renderer/entity/layers/CatCollarLayer; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/client/renderer/entity/layers/CarriedBlockLayer; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/client/renderer/entity/layers/CapeLayer; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/client/renderer/entity/layers/BeeStingerLayer; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/client/renderer/entity/layers/ArrowLayer; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/client/renderer/entity/layers/HumanoidArmorLayer; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/client/renderer/entity/layers/HumanoidArmorLayer$1; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/client/renderer/entity/layers/ElytraLayer; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/client/renderer/entity/ZombieVillagerRenderer; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/client/renderer/entity/ZombieRenderer; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/client/renderer/entity/ZoglinRenderer; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/client/renderer/entity/WolfRenderer; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/client/renderer/entity/WitherSkullRenderer; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/client/renderer/entity/WitherSkeletonRenderer; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/client/renderer/entity/WitherBossRenderer; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/client/renderer/entity/WitchRenderer; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/client/renderer/entity/WardenRenderer; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/client/renderer/entity/WanderingTraderRenderer; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/client/renderer/entity/VindicatorRenderer; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/client/renderer/entity/VindicatorRenderer$1; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/client/renderer/entity/VillagerRenderer; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/client/renderer/entity/VexRenderer; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/client/renderer/entity/UndeadHorseRenderer; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/client/renderer/entity/TurtleRenderer; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/client/renderer/entity/TropicalFishRenderer; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/client/renderer/entity/TropicalFishRenderer$1; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/client/renderer/entity/TntRenderer; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/client/renderer/entity/TntMinecartRenderer; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/client/renderer/entity/TippableArrowRenderer; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/client/renderer/entity/ThrownTridentRenderer; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/client/renderer/entity/ThrownItemRenderer; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/client/renderer/entity/TadpoleRenderer; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/client/renderer/entity/StriderRenderer; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/client/renderer/entity/StrayRenderer; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/client/renderer/entity/SquidRenderer; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/client/renderer/entity/SpiderRenderer; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/client/renderer/entity/SpectralArrowRenderer; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/client/renderer/entity/SnowGolemRenderer; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/client/renderer/entity/SnifferRenderer; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/client/renderer/entity/SlimeRenderer; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/client/renderer/entity/SkeletonRenderer; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/client/renderer/entity/SilverfishRenderer; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/client/renderer/entity/ShulkerRenderer; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/client/renderer/entity/ShulkerBulletRenderer; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/client/renderer/entity/SheepRenderer; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/client/renderer/entity/SalmonRenderer; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/client/renderer/entity/RenderLayerParent; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/client/renderer/entity/RavagerRenderer; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/client/renderer/entity/RabbitRenderer; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/client/renderer/entity/RabbitRenderer$1; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/client/renderer/entity/PufferfishRenderer; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/client/renderer/entity/PolarBearRenderer; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/client/renderer/entity/PillagerRenderer; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/client/renderer/entity/PiglinRenderer; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/client/renderer/entity/PigRenderer; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/client/renderer/entity/PhantomRenderer; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/client/renderer/entity/ParrotRenderer; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/client/renderer/entity/ParrotRenderer$1; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/client/renderer/entity/PandaRenderer; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/client/renderer/entity/PaintingRenderer; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/client/renderer/entity/OcelotRenderer; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/client/renderer/entity/NoopRenderer; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/client/renderer/entity/MushroomCowRenderer; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/client/renderer/entity/MobRenderer; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/client/renderer/entity/MinecartRenderer; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/client/renderer/entity/MagmaCubeRenderer; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/client/renderer/entity/LlamaSpitRenderer; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/client/renderer/entity/LlamaRenderer; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/client/renderer/entity/LlamaRenderer$1; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/client/renderer/entity/LightningBoltRenderer; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/client/renderer/entity/LeashKnotRenderer; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/client/renderer/entity/IronGolemRenderer; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/client/renderer/entity/IllusionerRenderer; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/client/renderer/entity/IllusionerRenderer$1; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/client/renderer/entity/IllagerRenderer; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/client/renderer/entity/HuskRenderer; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/client/renderer/entity/HumanoidMobRenderer; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/client/renderer/entity/HorseRenderer; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/client/renderer/entity/HoglinRenderer; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/client/renderer/entity/GuardianRenderer; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/client/renderer/entity/GoatRenderer; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/client/renderer/entity/GlowSquidRenderer; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/client/renderer/entity/GiantMobRenderer; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/client/renderer/entity/GhastRenderer; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/client/renderer/entity/FrogRenderer; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/client/renderer/entity/FoxRenderer; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/client/renderer/entity/FireworkEntityRenderer; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/client/renderer/entity/ExperienceOrbRenderer; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/client/renderer/entity/EvokerRenderer; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/client/renderer/entity/EvokerRenderer$1; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/client/renderer/entity/EvokerFangsRenderer; +[13:03:45] [main/DEBUG]: Transforming class Lnet/minecraft/client/renderer/entity/EntityRenderers; +[13:03:45] [main/DEBUG]: Transforming net/minecraft/client/renderer/entity/EntityRenderers METHOD m_174036_(Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/client/renderer/entity/EntityRendererProvider;)V to access PUBLIC and LEAVE +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/client/renderer/entity/EntityRendererProvider; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/client/renderer/entity/EntityRendererProvider$Context; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/client/renderer/entity/EndermiteRenderer; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/client/renderer/entity/EndermanRenderer; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/client/renderer/entity/EnderDragonRenderer; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/client/renderer/entity/EnderDragonRenderer$DragonModel; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/client/renderer/entity/EndCrystalRenderer; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/client/renderer/entity/ElderGuardianRenderer; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/client/renderer/entity/DrownedRenderer; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/client/renderer/entity/DragonFireballRenderer; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/client/renderer/entity/DolphinRenderer; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/client/renderer/entity/DisplayRenderer; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/client/renderer/entity/DisplayRenderer$TextDisplayRenderer; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/client/renderer/entity/DisplayRenderer$ItemDisplayRenderer; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/client/renderer/entity/DisplayRenderer$BlockDisplayRenderer; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/client/renderer/entity/DisplayRenderer$1; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/client/renderer/entity/CreeperRenderer; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/client/renderer/entity/CowRenderer; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/client/renderer/entity/CodRenderer; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/client/renderer/entity/ChickenRenderer; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/client/renderer/entity/ChestedHorseRenderer; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/client/renderer/entity/CaveSpiderRenderer; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/client/renderer/entity/CatRenderer; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/client/renderer/entity/CamelRenderer; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/client/renderer/entity/BlazeRenderer; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/client/renderer/entity/BeeRenderer; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/client/renderer/entity/BatRenderer; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/client/renderer/entity/AxolotlRenderer; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/client/renderer/entity/ArrowRenderer; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/client/renderer/entity/ArmorStandRenderer; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/client/renderer/entity/AllayRenderer; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/client/renderer/entity/AbstractZombieRenderer; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/client/renderer/entity/AbstractHorseRenderer; +[13:03:45] [main/DEBUG]: Transforming class Lnet/minecraft/client/renderer/entity/LivingEntityRenderer; +[13:03:45] [main/DEBUG]: Transforming net/minecraft/client/renderer/entity/LivingEntityRenderer METHOD m_115326_(Lnet/minecraft/client/renderer/entity/layers/RenderLayer;)Z to access PUBLIC and LEAVE +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/client/renderer/entity/LivingEntityRenderer$1; +[13:03:45] [main/DEBUG]: Transforming class Lnet/minecraft/client/renderer/entity/ItemRenderer; +[13:03:45] [main/DEBUG]: Transforming net/minecraft/client/renderer/entity/ItemRenderer METHOD m_115189_(Lnet/minecraft/client/resources/model/BakedModel;Lnet/minecraft/world/item/ItemStack;IILcom/mojang/blaze3d/vertex/PoseStack;Lcom/mojang/blaze3d/vertex/VertexConsumer;)V to access PUBLIC and LEAVE +[13:03:45] [main/DEBUG]: Transforming net/minecraft/client/renderer/entity/ItemRenderer METHOD m_115162_(Lcom/mojang/blaze3d/vertex/PoseStack;Lcom/mojang/blaze3d/vertex/VertexConsumer;Ljava/util/List;Lnet/minecraft/world/item/ItemStack;II)V to access PUBLIC and LEAVE +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/client/renderer/entity/ItemFrameRenderer; +[13:03:45] [main/DEBUG]: Transforming class Lnet/minecraft/client/renderer/entity/ItemEntityRenderer; +[13:03:45] [main/DEBUG]: Transforming net/minecraft/client/renderer/entity/ItemEntityRenderer METHOD m_115042_(Lnet/minecraft/world/item/ItemStack;)I to access PROTECTED and LEAVE +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/client/renderer/entity/FishingHookRenderer; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/client/renderer/entity/FallingBlockRenderer; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/client/renderer/entity/EntityRenderer; +[13:03:45] [main/DEBUG]: Transforming class Lnet/minecraft/client/renderer/entity/EntityRenderDispatcher; +[13:03:45] [main/DEBUG]: Transforming net/minecraft/client/renderer/entity/EntityRenderDispatcher FIELD f_114362_ to access PUBLIC and LEAVE +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/client/renderer/entity/BoatRenderer; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/client/renderer/debug/package-info; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/client/renderer/debug/WorldGenAttemptRenderer; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/client/renderer/debug/WaterDebugRenderer; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/client/renderer/debug/VillageSectionsDebugRenderer; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/client/renderer/debug/SupportBlockRenderer; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/client/renderer/debug/StructureRenderer; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/client/renderer/debug/SolidFaceRenderer; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/client/renderer/debug/RaidDebugRenderer; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/client/renderer/debug/PathfindingRenderer; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/client/renderer/debug/NeighborsUpdateRenderer; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/client/renderer/debug/LightSectionDebugRenderer; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/client/renderer/debug/LightSectionDebugRenderer$SectionData; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/client/renderer/debug/LightSectionDebugRenderer$1; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/client/renderer/debug/LightDebugRenderer; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/client/renderer/debug/HeightMapRenderer; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/client/renderer/debug/HeightMapRenderer$1; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/client/renderer/debug/GoalSelectorDebugRenderer; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/client/renderer/debug/GoalSelectorDebugRenderer$DebugGoal; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/client/renderer/debug/GameTestDebugRenderer; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/client/renderer/debug/GameTestDebugRenderer$Marker; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/client/renderer/debug/GameEventListenerRenderer; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/client/renderer/debug/GameEventListenerRenderer$TrackedListener; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/client/renderer/debug/GameEventListenerRenderer$TrackedGameEvent; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/client/renderer/debug/DebugRenderer; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/client/renderer/debug/DebugRenderer$SimpleDebugRenderer; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/client/renderer/debug/CollisionBoxRenderer; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/client/renderer/debug/ChunkDebugRenderer; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/client/renderer/debug/ChunkDebugRenderer$ChunkData; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/client/renderer/debug/ChunkBorderRenderer; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/client/renderer/debug/BrainDebugRenderer; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/client/renderer/debug/BrainDebugRenderer$PoiInfo; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/client/renderer/debug/BrainDebugRenderer$BrainDump; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/client/renderer/debug/BeeDebugRenderer; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/client/renderer/debug/BeeDebugRenderer$HiveInfo; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/client/renderer/debug/BeeDebugRenderer$BeeInfo; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/client/renderer/culling/package-info; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/client/renderer/culling/Frustum; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/client/renderer/chunk/package-info; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/client/renderer/chunk/VisibilitySet; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/client/renderer/chunk/VisGraph; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/client/renderer/chunk/VisGraph$1; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/client/renderer/chunk/RenderRegionCache; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/client/renderer/chunk/RenderRegionCache$ChunkInfo; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/client/renderer/chunk/RenderChunk; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/client/renderer/chunk/RenderChunkRegion; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/client/renderer/chunk/ChunkRenderDispatcher; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/client/renderer/chunk/ChunkRenderDispatcher$RenderChunk; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/client/renderer/chunk/ChunkRenderDispatcher$RenderChunk$ResortTransparencyTask; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/client/renderer/chunk/ChunkRenderDispatcher$RenderChunk$RebuildTask; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/client/renderer/chunk/ChunkRenderDispatcher$RenderChunk$RebuildTask$CompileResults; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/client/renderer/chunk/ChunkRenderDispatcher$RenderChunk$ChunkCompileTask; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/client/renderer/chunk/ChunkRenderDispatcher$CompiledChunk; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/client/renderer/chunk/ChunkRenderDispatcher$CompiledChunk$1; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/client/renderer/chunk/ChunkRenderDispatcher$ChunkTaskResult; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/client/renderer/blockentity/package-info; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/client/renderer/blockentity/TheEndPortalRenderer; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/client/renderer/blockentity/TheEndGatewayRenderer; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/client/renderer/blockentity/StructureBlockRenderer; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/client/renderer/blockentity/StructureBlockRenderer$1; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/client/renderer/blockentity/SpawnerRenderer; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/client/renderer/blockentity/SignRenderer; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/client/renderer/blockentity/SignRenderer$SignModel; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/client/renderer/blockentity/ShulkerBoxRenderer; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/client/renderer/blockentity/LecternRenderer; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/client/renderer/blockentity/HangingSignRenderer; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/client/renderer/blockentity/HangingSignRenderer$HangingSignModel; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/client/renderer/blockentity/EnchantTableRenderer; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/client/renderer/blockentity/DecoratedPotRenderer; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/client/renderer/blockentity/ConduitRenderer; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/client/renderer/blockentity/CampfireRenderer; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/client/renderer/blockentity/BrushableBlockRenderer; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/client/renderer/blockentity/BrushableBlockRenderer$1; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/client/renderer/blockentity/BrightnessCombiner; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/client/renderer/blockentity/BlockEntityRendererProvider; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/client/renderer/blockentity/BlockEntityRendererProvider$Context; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/client/renderer/blockentity/BlockEntityRenderer; +[13:03:45] [main/DEBUG]: Transforming class Lnet/minecraft/client/renderer/blockentity/BlockEntityRenderDispatcher; +[13:03:45] [main/DEBUG]: Transforming net/minecraft/client/renderer/blockentity/BlockEntityRenderDispatcher FIELD f_112253_ to access PUBLIC and LEAVE +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/client/renderer/blockentity/BellRenderer; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/client/renderer/blockentity/BedRenderer; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/client/renderer/blockentity/BeaconRenderer; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/client/renderer/blockentity/BannerRenderer; +[13:03:45] [main/DEBUG]: Transforming class Lnet/minecraft/client/renderer/blockentity/SkullBlockRenderer; +[13:03:45] [main/DEBUG]: Transforming net/minecraft/client/renderer/blockentity/SkullBlockRenderer FIELD f_112519_ to access PUBLIC and LEAVE +[13:03:45] [main/DEBUG]: Transforming class Lnet/minecraft/client/renderer/blockentity/PistonHeadRenderer; +[13:03:45] [main/DEBUG]: Transforming net/minecraft/client/renderer/blockentity/PistonHeadRenderer FIELD f_112441_ to access PRIVATE and REMOVEFINAL +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/client/renderer/blockentity/ChestRenderer; +[13:03:45] [main/DEBUG]: Transforming class Lnet/minecraft/client/renderer/blockentity/BlockEntityRenderers; +[13:03:45] [main/DEBUG]: Transforming net/minecraft/client/renderer/blockentity/BlockEntityRenderers METHOD m_173590_(Lnet/minecraft/world/level/block/entity/BlockEntityType;Lnet/minecraft/client/renderer/blockentity/BlockEntityRendererProvider;)V to access PUBLIC and LEAVE +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/client/renderer/block/package-info; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/client/renderer/block/model/package-info; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/client/renderer/block/model/multipart/package-info; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/client/renderer/block/model/multipart/Selector; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/client/renderer/block/model/multipart/Selector$Deserializer; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/client/renderer/block/model/multipart/OrCondition; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/client/renderer/block/model/multipart/MultiPart; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/client/renderer/block/model/multipart/MultiPart$Deserializer; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/client/renderer/block/model/multipart/KeyValueCondition; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/client/renderer/block/model/multipart/Condition; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/client/renderer/block/model/multipart/AndCondition; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/client/renderer/block/model/Variant; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/client/renderer/block/model/Variant$Deserializer; +[13:03:45] [main/DEBUG]: Transforming class Lnet/minecraft/client/renderer/block/model/ItemOverride; +[13:03:45] [main/DEBUG]: Transforming net/minecraft/client/renderer/block/model/ItemOverride INNERCLASS Deserializer to access PUBLIC and LEAVE +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/client/renderer/block/model/ItemOverride$Predicate; +[13:03:45] [main/DEBUG]: Transforming class Lnet/minecraft/client/renderer/block/model/ItemOverride$Deserializer; +[13:03:45] [main/DEBUG]: Transforming net/minecraft/client/renderer/block/model/ItemOverride$Deserializer CLASS to access PUBLIC and LEAVE +[13:03:45] [main/DEBUG]: Transforming net/minecraft/client/renderer/block/model/ItemOverride$Deserializer METHOD ()V to access PUBLIC and LEAVE +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/client/renderer/block/model/BlockModelDefinition; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/client/renderer/block/model/BlockModelDefinition$MissingVariantException; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/client/renderer/block/model/BlockModelDefinition$Deserializer; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/client/renderer/block/model/BlockModelDefinition$Context; +[13:03:45] [main/DEBUG]: Transforming class Lnet/minecraft/client/renderer/block/model/BlockFaceUV; +[13:03:45] [main/DEBUG]: Transforming net/minecraft/client/renderer/block/model/BlockFaceUV INNERCLASS Deserializer to access PUBLIC and LEAVE +[13:03:45] [main/DEBUG]: Transforming class Lnet/minecraft/client/renderer/block/model/BlockFaceUV$Deserializer; +[13:03:45] [main/DEBUG]: Transforming net/minecraft/client/renderer/block/model/BlockFaceUV$Deserializer CLASS to access PUBLIC and LEAVE +[13:03:45] [main/DEBUG]: Transforming net/minecraft/client/renderer/block/model/BlockFaceUV$Deserializer METHOD ()V to access PUBLIC and LEAVE +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/client/renderer/block/model/BlockElementRotation; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/client/renderer/block/model/MultiVariant; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/client/renderer/block/model/MultiVariant$Deserializer; +[13:03:45] [main/DEBUG]: Transforming class Lnet/minecraft/client/renderer/block/model/ItemTransforms; +[13:03:45] [main/DEBUG]: Transforming net/minecraft/client/renderer/block/model/ItemTransforms INNERCLASS Deserializer to access PUBLIC and LEAVE +[13:03:45] [main/DEBUG]: Transforming class Lnet/minecraft/client/renderer/block/model/ItemTransforms$Deserializer; +[13:03:45] [main/DEBUG]: Transforming net/minecraft/client/renderer/block/model/ItemTransforms$Deserializer CLASS to access PUBLIC and LEAVE +[13:03:45] [main/DEBUG]: Transforming net/minecraft/client/renderer/block/model/ItemTransforms$Deserializer METHOD ()V to access PUBLIC and LEAVE +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/client/renderer/block/model/ItemTransforms$1; +[13:03:45] [main/DEBUG]: Transforming class Lnet/minecraft/client/renderer/block/model/ItemTransform; +[13:03:45] [main/DEBUG]: Transforming net/minecraft/client/renderer/block/model/ItemTransform INNERCLASS Deserializer to access PUBLIC and LEAVE +[13:03:45] [main/DEBUG]: Transforming class Lnet/minecraft/client/renderer/block/model/ItemTransform$Deserializer; +[13:03:45] [main/DEBUG]: Transforming net/minecraft/client/renderer/block/model/ItemTransform$Deserializer CLASS to access PUBLIC and LEAVE +[13:03:45] [main/DEBUG]: Transforming net/minecraft/client/renderer/block/model/ItemTransform$Deserializer FIELD f_111769_ to access PUBLIC and LEAVE +[13:03:45] [main/DEBUG]: Transforming net/minecraft/client/renderer/block/model/ItemTransform$Deserializer FIELD f_111770_ to access PUBLIC and LEAVE +[13:03:45] [main/DEBUG]: Transforming net/minecraft/client/renderer/block/model/ItemTransform$Deserializer FIELD f_111771_ to access PUBLIC and LEAVE +[13:03:45] [main/DEBUG]: Transforming net/minecraft/client/renderer/block/model/ItemTransform$Deserializer METHOD ()V to access PUBLIC and LEAVE +[13:03:45] [main/DEBUG]: Transforming class Lnet/minecraft/client/renderer/block/model/ItemOverrides; +[13:03:45] [main/DEBUG]: Transforming net/minecraft/client/renderer/block/model/ItemOverrides INNERCLASS BakedOverride to access PUBLIC and LEAVE +[13:03:45] [main/DEBUG]: Transforming net/minecraft/client/renderer/block/model/ItemOverrides METHOD ()V to access PROTECTED and LEAVE +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/client/renderer/block/model/ItemOverrides$PropertyMatcher; +[13:03:45] [main/DEBUG]: Transforming class Lnet/minecraft/client/renderer/block/model/ItemOverrides$BakedOverride; +[13:03:45] [main/DEBUG]: Transforming net/minecraft/client/renderer/block/model/ItemOverrides$BakedOverride CLASS to access PUBLIC and LEAVE +[13:03:45] [main/DEBUG]: Transforming class Lnet/minecraft/client/renderer/block/model/ItemModelGenerator; +[13:03:45] [main/DEBUG]: Transforming net/minecraft/client/renderer/block/model/ItemModelGenerator METHOD m_111638_(ILjava/lang/String;Lnet/minecraft/client/renderer/texture/SpriteContents;)Ljava/util/List; to access PUBLIC and LEAVE +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/client/renderer/block/model/ItemModelGenerator$SpanFacing; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/client/renderer/block/model/ItemModelGenerator$Span; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/client/renderer/block/model/ItemModelGenerator$1; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/client/renderer/block/model/FaceBakery; +[13:03:45] [main/DEBUG]: Skipping Lnet/minecraft/client/renderer/block/model/FaceBakery$1; +[13:03:46] [main/DEBUG]: Transforming class Lnet/minecraft/client/renderer/block/model/BlockModel; +[13:03:46] [main/DEBUG]: Transforming net/minecraft/client/renderer/block/model/BlockModel FIELD f_111424_ to access PUBLIC and LEAVE +[13:03:46] [main/DEBUG]: Transforming net/minecraft/client/renderer/block/model/BlockModel FIELD f_111417_ to access PUBLIC and LEAVE +[13:03:46] [main/DEBUG]: Transforming net/minecraft/client/renderer/block/model/BlockModel FIELD f_111418_ to access PUBLIC and LEAVE +[13:03:46] [main/DEBUG]: Transforming net/minecraft/client/renderer/block/model/BlockModel METHOD m_111437_(Lnet/minecraft/client/renderer/block/model/BlockElement;Lnet/minecraft/client/renderer/block/model/BlockElementFace;Lnet/minecraft/client/renderer/texture/TextureAtlasSprite;Lnet/minecraft/core/Direction;Lnet/minecraft/client/resources/model/ModelState;Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/client/renderer/block/model/BakedQuad; to access PUBLIC and LEAVE +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/renderer/block/model/BlockModel$LoopException; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/renderer/block/model/BlockModel$GuiLight; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/renderer/block/model/BlockModel$Deserializer; +[13:03:46] [main/DEBUG]: Transforming class Lnet/minecraft/client/renderer/block/model/BlockElementFace; +[13:03:46] [main/DEBUG]: Transforming net/minecraft/client/renderer/block/model/BlockElementFace INNERCLASS Deserializer to access PUBLIC and LEAVE +[13:03:46] [main/DEBUG]: Transforming class Lnet/minecraft/client/renderer/block/model/BlockElementFace$Deserializer; +[13:03:46] [main/DEBUG]: Transforming net/minecraft/client/renderer/block/model/BlockElementFace$Deserializer CLASS to access PUBLIC and LEAVE +[13:03:46] [main/DEBUG]: Transforming net/minecraft/client/renderer/block/model/BlockElementFace$Deserializer METHOD ()V to access PUBLIC and LEAVE +[13:03:46] [main/DEBUG]: Transforming class Lnet/minecraft/client/renderer/block/model/BlockElement; +[13:03:46] [main/DEBUG]: Transforming net/minecraft/client/renderer/block/model/BlockElement INNERCLASS Deserializer to access PUBLIC and LEAVE +[13:03:46] [main/DEBUG]: Transforming net/minecraft/client/renderer/block/model/BlockElement METHOD m_111320_(Lnet/minecraft/core/Direction;)[F to access PUBLIC and LEAVE +[13:03:46] [main/DEBUG]: Transforming class Lnet/minecraft/client/renderer/block/model/BlockElement$Deserializer; +[13:03:46] [main/DEBUG]: Transforming net/minecraft/client/renderer/block/model/BlockElement$Deserializer CLASS to access PUBLIC and LEAVE +[13:03:46] [main/DEBUG]: Transforming net/minecraft/client/renderer/block/model/BlockElement$Deserializer METHOD ()V to access PUBLIC and LEAVE +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/renderer/block/model/BlockElement$1; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/renderer/block/model/BakedQuad; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/renderer/block/ModelBlockRenderer; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/renderer/block/ModelBlockRenderer$SizeInfo; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/renderer/block/ModelBlockRenderer$Cache; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/renderer/block/ModelBlockRenderer$Cache$2; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/renderer/block/ModelBlockRenderer$Cache$1; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/renderer/block/ModelBlockRenderer$AmbientVertexRemap; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/renderer/block/ModelBlockRenderer$AmbientOcclusionFace; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/renderer/block/ModelBlockRenderer$AdjacencyInfo; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/renderer/block/ModelBlockRenderer$1; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/renderer/block/LiquidBlockRenderer; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/renderer/block/LiquidBlockRenderer$1; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/renderer/block/BlockRenderDispatcher; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/renderer/block/BlockRenderDispatcher$1; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/renderer/block/BlockModelShaper; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/renderer/VirtualScreen; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/renderer/ViewArea; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/renderer/RunningTrimmedMean; +[13:03:46] [main/DEBUG]: Transforming class Lnet/minecraft/client/renderer/RenderStateShard; +[13:03:46] [main/DEBUG]: Transforming net/minecraft/client/renderer/RenderStateShard INNERCLASS TextureStateShard to access PUBLIC and LEAVE +[13:03:46] [main/DEBUG]: Transforming net/minecraft/client/renderer/RenderStateShard INNERCLASS LayeringStateShard to access PUBLIC and LEAVE +[13:03:46] [main/DEBUG]: Transforming net/minecraft/client/renderer/RenderStateShard INNERCLASS WriteMaskStateShard to access PUBLIC and LEAVE +[13:03:46] [main/DEBUG]: Transforming net/minecraft/client/renderer/RenderStateShard INNERCLASS EmptyTextureStateShard to access PUBLIC and LEAVE +[13:03:46] [main/DEBUG]: Transforming net/minecraft/client/renderer/RenderStateShard INNERCLASS TransparencyStateShard to access PUBLIC and LEAVE +[13:03:46] [main/DEBUG]: Transforming net/minecraft/client/renderer/RenderStateShard INNERCLASS OverlayStateShard to access PUBLIC and LEAVE +[13:03:46] [main/DEBUG]: Transforming net/minecraft/client/renderer/RenderStateShard INNERCLASS OutputStateShard to access PUBLIC and LEAVE +[13:03:46] [main/DEBUG]: Transforming net/minecraft/client/renderer/RenderStateShard INNERCLASS MultiTextureStateShard to access PUBLIC and LEAVE +[13:03:46] [main/DEBUG]: Transforming net/minecraft/client/renderer/RenderStateShard INNERCLASS CullStateShard to access PUBLIC and LEAVE +[13:03:46] [main/DEBUG]: Transforming net/minecraft/client/renderer/RenderStateShard INNERCLASS ShaderStateShard to access PUBLIC and LEAVE +[13:03:46] [main/DEBUG]: Transforming net/minecraft/client/renderer/RenderStateShard INNERCLASS LightmapStateShard to access PUBLIC and LEAVE +[13:03:46] [main/DEBUG]: Transforming net/minecraft/client/renderer/RenderStateShard INNERCLASS DepthTestStateShard to access PUBLIC and LEAVE +[13:03:46] [main/DEBUG]: Transforming net/minecraft/client/renderer/RenderStateShard INNERCLASS TexturingStateShard to access PUBLIC and LEAVE +[13:03:46] [main/DEBUG]: Transforming net/minecraft/client/renderer/RenderStateShard INNERCLASS OffsetTexturingStateShard to access PUBLIC and LEAVE +[13:03:46] [main/DEBUG]: Transforming net/minecraft/client/renderer/RenderStateShard INNERCLASS BooleanStateShard to access PUBLIC and LEAVE +[13:03:46] [main/DEBUG]: Transforming net/minecraft/client/renderer/RenderStateShard FIELD f_110131_ to access PROTECTED and REMOVEFINAL +[13:03:46] [main/DEBUG]: Transforming class Lnet/minecraft/client/renderer/RenderStateShard$WriteMaskStateShard; +[13:03:46] [main/DEBUG]: Transforming net/minecraft/client/renderer/RenderStateShard$WriteMaskStateShard CLASS to access PUBLIC and LEAVE +[13:03:46] [main/DEBUG]: Transforming class Lnet/minecraft/client/renderer/RenderStateShard$TransparencyStateShard; +[13:03:46] [main/DEBUG]: Transforming net/minecraft/client/renderer/RenderStateShard$TransparencyStateShard CLASS to access PUBLIC and LEAVE +[13:03:46] [main/DEBUG]: Transforming class Lnet/minecraft/client/renderer/RenderStateShard$TexturingStateShard; +[13:03:46] [main/DEBUG]: Transforming net/minecraft/client/renderer/RenderStateShard$TexturingStateShard CLASS to access PUBLIC and LEAVE +[13:03:46] [main/DEBUG]: Transforming class Lnet/minecraft/client/renderer/RenderStateShard$TextureStateShard; +[13:03:46] [main/DEBUG]: Transforming net/minecraft/client/renderer/RenderStateShard$TextureStateShard CLASS to access PUBLIC and LEAVE +[13:03:46] [main/DEBUG]: Transforming net/minecraft/client/renderer/RenderStateShard$TextureStateShard FIELD f_110329_ to access PROTECTED and REMOVEFINAL +[13:03:46] [main/DEBUG]: Transforming net/minecraft/client/renderer/RenderStateShard$TextureStateShard FIELD f_110330_ to access PROTECTED and REMOVEFINAL +[13:03:46] [main/DEBUG]: Transforming class Lnet/minecraft/client/renderer/RenderStateShard$ShaderStateShard; +[13:03:46] [main/DEBUG]: Transforming net/minecraft/client/renderer/RenderStateShard$ShaderStateShard CLASS to access PUBLIC and LEAVE +[13:03:46] [main/DEBUG]: Transforming class Lnet/minecraft/client/renderer/RenderStateShard$OverlayStateShard; +[13:03:46] [main/DEBUG]: Transforming net/minecraft/client/renderer/RenderStateShard$OverlayStateShard CLASS to access PUBLIC and LEAVE +[13:03:46] [main/DEBUG]: Transforming class Lnet/minecraft/client/renderer/RenderStateShard$OutputStateShard; +[13:03:46] [main/DEBUG]: Transforming net/minecraft/client/renderer/RenderStateShard$OutputStateShard CLASS to access PUBLIC and LEAVE +[13:03:46] [main/DEBUG]: Transforming class Lnet/minecraft/client/renderer/RenderStateShard$OffsetTexturingStateShard; +[13:03:46] [main/DEBUG]: Transforming net/minecraft/client/renderer/RenderStateShard$OffsetTexturingStateShard CLASS to access PUBLIC and LEAVE +[13:03:46] [main/DEBUG]: Transforming class Lnet/minecraft/client/renderer/RenderStateShard$MultiTextureStateShard; +[13:03:46] [main/DEBUG]: Transforming net/minecraft/client/renderer/RenderStateShard$MultiTextureStateShard CLASS to access PUBLIC and LEAVE +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/renderer/RenderStateShard$MultiTextureStateShard$Builder; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/renderer/RenderStateShard$LineStateShard; +[13:03:46] [main/DEBUG]: Transforming class Lnet/minecraft/client/renderer/RenderStateShard$LightmapStateShard; +[13:03:46] [main/DEBUG]: Transforming net/minecraft/client/renderer/RenderStateShard$LightmapStateShard CLASS to access PUBLIC and LEAVE +[13:03:46] [main/DEBUG]: Transforming class Lnet/minecraft/client/renderer/RenderStateShard$LayeringStateShard; +[13:03:46] [main/DEBUG]: Transforming net/minecraft/client/renderer/RenderStateShard$LayeringStateShard CLASS to access PUBLIC and LEAVE +[13:03:46] [main/DEBUG]: Transforming class Lnet/minecraft/client/renderer/RenderStateShard$EmptyTextureStateShard; +[13:03:46] [main/DEBUG]: Transforming net/minecraft/client/renderer/RenderStateShard$EmptyTextureStateShard CLASS to access PUBLIC and LEAVE +[13:03:46] [main/DEBUG]: Transforming class Lnet/minecraft/client/renderer/RenderStateShard$DepthTestStateShard; +[13:03:46] [main/DEBUG]: Transforming net/minecraft/client/renderer/RenderStateShard$DepthTestStateShard CLASS to access PUBLIC and LEAVE +[13:03:46] [main/DEBUG]: Transforming class Lnet/minecraft/client/renderer/RenderStateShard$CullStateShard; +[13:03:46] [main/DEBUG]: Transforming net/minecraft/client/renderer/RenderStateShard$CullStateShard CLASS to access PUBLIC and LEAVE +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/renderer/RenderStateShard$ColorLogicStateShard; +[13:03:46] [main/DEBUG]: Transforming class Lnet/minecraft/client/renderer/RenderStateShard$BooleanStateShard; +[13:03:46] [main/DEBUG]: Transforming net/minecraft/client/renderer/RenderStateShard$BooleanStateShard CLASS to access PUBLIC and LEAVE +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/renderer/RenderBuffers; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/renderer/Rect2i; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/renderer/PostPass; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/renderer/PanoramaRenderer; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/renderer/OutlineBufferSource; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/renderer/OutlineBufferSource$EntityOutlineGenerator; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/renderer/MultiBufferSource; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/renderer/MultiBufferSource$BufferSource; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/renderer/GpuWarnlistManager; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/renderer/GpuWarnlistManager$Preparations; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/renderer/FaceInfo; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/renderer/FaceInfo$VertexInfo; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/renderer/FaceInfo$Constants; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/renderer/CubeMap; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/renderer/ChunkBufferBuilderPack; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/renderer/BlockEntityWithoutLevelRenderer; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/renderer/BiomeColors; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/renderer/SpriteCoordinateExpander; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/renderer/Sheets; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/renderer/Sheets$1; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/renderer/ShaderInstance; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/renderer/ShaderInstance$1; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/renderer/ScreenEffectRenderer; +[13:03:46] [main/DEBUG]: Transforming class Lnet/minecraft/client/renderer/RenderType; +[13:03:46] [main/DEBUG]: Transforming net/minecraft/client/renderer/RenderType INNERCLASS CompositeState to access PUBLIC and LEAVE +[13:03:46] [main/DEBUG]: Transforming net/minecraft/client/renderer/RenderType METHOD m_173215_(Ljava/lang/String;Lcom/mojang/blaze3d/vertex/VertexFormat;Lcom/mojang/blaze3d/vertex/VertexFormat$Mode;IZZLnet/minecraft/client/renderer/RenderType$CompositeState;)Lnet/minecraft/client/renderer/RenderType$CompositeRenderType; to access PUBLIC and LEAVE +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/renderer/RenderType$OutlineProperty; +[13:03:46] [main/DEBUG]: Transforming class Lnet/minecraft/client/renderer/RenderType$CompositeState; +[13:03:46] [main/DEBUG]: Transforming net/minecraft/client/renderer/RenderType$CompositeState CLASS to access PUBLIC and LEAVE +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/renderer/RenderType$CompositeState$CompositeStateBuilder; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/renderer/RenderType$CompositeRenderType; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/renderer/PostChain; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/renderer/LightTexture; +[13:03:46] [main/DEBUG]: Transforming class Lnet/minecraft/client/renderer/LevelRenderer; +[13:03:46] [main/DEBUG]: Transforming net/minecraft/client/renderer/LevelRenderer METHOD m_109817_()Z to access PUBLIC and LEAVE +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/renderer/LevelRenderer$TransparencyShaderException; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/renderer/LevelRenderer$RenderInfoMap; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/renderer/LevelRenderer$RenderChunkStorage; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/renderer/LevelRenderer$RenderChunkInfo; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/renderer/ItemModelShaper; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/renderer/ItemInHandRenderer; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/renderer/ItemInHandRenderer$HandRenderSelection; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/renderer/ItemInHandRenderer$1; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/renderer/ItemBlockRenderTypes; +[13:03:46] [main/DEBUG]: Transforming class Lnet/minecraft/client/renderer/GameRenderer; +[13:03:46] [main/DEBUG]: Transforming net/minecraft/client/renderer/GameRenderer METHOD m_109128_(Lnet/minecraft/resources/ResourceLocation;)V to access PUBLIC and LEAVE +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/renderer/GameRenderer$ResourceCache; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/renderer/GameRenderer$1; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/renderer/FogRenderer; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/renderer/FogRenderer$MobEffectFogFunction; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/renderer/FogRenderer$FogMode; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/renderer/FogRenderer$FogData; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/renderer/FogRenderer$DarknessFogFunction; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/renderer/FogRenderer$BlindnessFogFunction; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/renderer/EffectInstance; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/renderer/DimensionSpecialEffects; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/renderer/DimensionSpecialEffects$SkyType; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/renderer/DimensionSpecialEffects$OverworldEffects; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/renderer/DimensionSpecialEffects$NetherEffects; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/renderer/DimensionSpecialEffects$EndEffects; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/quickplay/package-info; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/quickplay/QuickPlayLog; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/quickplay/QuickPlayLog$Type; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/quickplay/QuickPlayLog$QuickPlayWorld; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/quickplay/QuickPlayLog$QuickPlayEntry; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/quickplay/QuickPlayLog$1; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/quickplay/QuickPlay; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/profiling/package-info; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/profiling/ClientMetricsSamplersProvider; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/player/package-info; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/player/inventory/package-info; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/player/inventory/Hotbar; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/player/KeyboardInput; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/player/Input; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/player/RemotePlayer; +[13:03:46] [main/DEBUG]: Transforming class Lnet/minecraft/client/player/LocalPlayer; +[13:03:46] [main/DEBUG]: Transforming net/minecraft/client/player/LocalPlayer METHOD m_8088_()I to access PUBLIC and LEAVE +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/player/AbstractClientPlayer; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/particle/package-info; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/particle/WhiteAshParticle; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/particle/WhiteAshParticle$Provider; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/particle/WaterDropParticle; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/particle/WaterDropParticle$Provider; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/particle/WaterCurrentDownParticle; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/particle/WaterCurrentDownParticle$Provider; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/particle/WakeParticle; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/particle/WakeParticle$Provider; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/particle/TrackingEmitter; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/particle/TotemParticle; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/particle/TotemParticle$Provider; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/particle/TextureSheetParticle; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/particle/SuspendedTownParticle; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/particle/SuspendedTownParticle$Provider; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/particle/SuspendedTownParticle$HappyVillagerProvider; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/particle/SuspendedTownParticle$EggCrackProvider; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/particle/SuspendedTownParticle$DolphinSpeedProvider; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/particle/SuspendedTownParticle$ComposterFillProvider; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/particle/SuspendedParticle; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/particle/SuspendedParticle$WarpedSporeProvider; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/particle/SuspendedParticle$UnderwaterProvider; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/particle/SuspendedParticle$SporeBlossomAirProvider; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/particle/SuspendedParticle$SporeBlossomAirProvider$1; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/particle/SuspendedParticle$CrimsonSporeProvider; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/particle/SquidInkParticle; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/particle/SquidInkParticle$Provider; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/particle/SquidInkParticle$GlowInkProvider; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/particle/SpriteSet; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/particle/SplashParticle; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/particle/SplashParticle$Provider; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/particle/SpitParticle; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/particle/SpitParticle$Provider; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/particle/SpellParticle; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/particle/SpellParticle$WitchProvider; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/particle/SpellParticle$Provider; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/particle/SpellParticle$MobProvider; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/particle/SpellParticle$InstantProvider; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/particle/SpellParticle$AmbientMobProvider; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/particle/SoulParticle; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/particle/SoulParticle$Provider; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/particle/SoulParticle$EmissiveProvider; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/particle/SonicBoomParticle; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/particle/SonicBoomParticle$Provider; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/particle/SnowflakeParticle; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/particle/SnowflakeParticle$Provider; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/particle/SmokeParticle; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/particle/SmokeParticle$Provider; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/particle/SingleQuadParticle; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/particle/SimpleAnimatedParticle; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/particle/ShriekParticle; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/particle/ShriekParticle$Provider; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/particle/SculkChargePopParticle; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/particle/SculkChargePopParticle$Provider; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/particle/SculkChargeParticle; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/particle/SculkChargeParticle$Provider; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/particle/RisingParticle; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/particle/PlayerCloudParticle; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/particle/PlayerCloudParticle$SneezeProvider; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/particle/PlayerCloudParticle$Provider; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/particle/ParticleRenderType; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/particle/ParticleRenderType$6; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/particle/ParticleRenderType$5; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/particle/ParticleRenderType$4; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/particle/ParticleRenderType$3; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/particle/ParticleRenderType$2; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/particle/ParticleRenderType$1; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/particle/ParticleProvider; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/particle/ParticleProvider$Sprite; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/particle/ParticleDescription; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/particle/NoteParticle; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/particle/NoteParticle$Provider; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/particle/NoRenderParticle; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/particle/MobAppearanceParticle; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/particle/MobAppearanceParticle$Provider; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/particle/LavaParticle; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/particle/LavaParticle$Provider; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/particle/LargeSmokeParticle; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/particle/LargeSmokeParticle$Provider; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/particle/ItemPickupParticle; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/particle/HugeExplosionSeedParticle; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/particle/HugeExplosionSeedParticle$Provider; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/particle/HugeExplosionParticle; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/particle/HugeExplosionParticle$Provider; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/particle/HeartParticle; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/particle/HeartParticle$Provider; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/particle/HeartParticle$AngryVillagerProvider; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/particle/GlowParticle; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/particle/GlowParticle$WaxOnProvider; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/particle/GlowParticle$WaxOffProvider; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/particle/GlowParticle$ScrapeProvider; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/particle/GlowParticle$GlowSquidProvider; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/particle/GlowParticle$ElectricSparkProvider; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/particle/FlameParticle; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/particle/FlameParticle$SmallFlameProvider; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/particle/FlameParticle$Provider; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/particle/FallingDustParticle; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/particle/FallingDustParticle$Provider; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/particle/ExplodeParticle; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/particle/ExplodeParticle$Provider; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/particle/EndRodParticle; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/particle/EndRodParticle$Provider; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/particle/DustParticleBase; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/particle/DustParticle; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/particle/DustParticle$Provider; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/particle/DustColorTransitionParticle; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/particle/DustColorTransitionParticle$Provider; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/particle/DripParticle; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/particle/DripParticle$HoneyFallAndLandParticle; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/particle/DripParticle$FallingParticle; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/particle/DripParticle$FallAndLandParticle; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/particle/DripParticle$DripstoneFallAndLandParticle; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/particle/DripParticle$DripLandParticle; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/particle/DripParticle$DripHangParticle; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/particle/DripParticle$CoolingDripHangParticle; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/particle/DragonBreathParticle; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/particle/DragonBreathParticle$Provider; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/particle/CritParticle; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/particle/CritParticle$Provider; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/particle/CritParticle$MagicProvider; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/particle/CritParticle$DamageIndicatorProvider; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/particle/CherryParticle; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/particle/CampfireSmokeParticle; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/particle/CampfireSmokeParticle$SignalProvider; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/particle/CampfireSmokeParticle$CosyProvider; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/particle/BubblePopParticle; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/particle/BubblePopParticle$Provider; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/particle/BubbleParticle; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/particle/BubbleParticle$Provider; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/particle/BubbleColumnUpParticle; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/particle/BubbleColumnUpParticle$Provider; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/particle/BlockMarker; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/particle/BlockMarker$Provider; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/particle/BaseAshSmokeParticle; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/particle/AttackSweepParticle; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/particle/AttackSweepParticle$Provider; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/particle/AshParticle; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/particle/AshParticle$Provider; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/particle/VibrationSignalParticle; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/particle/VibrationSignalParticle$Provider; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/particle/TerrainParticle; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/particle/TerrainParticle$Provider; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/particle/ReversePortalParticle; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/particle/ReversePortalParticle$ReversePortalProvider; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/particle/PortalParticle; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/particle/PortalParticle$Provider; +[13:03:46] [main/DEBUG]: Transforming class Lnet/minecraft/client/particle/ParticleEngine; +[13:03:46] [main/DEBUG]: Transforming net/minecraft/client/particle/ParticleEngine INNERCLASS SpriteParticleRegistration to access PUBLIC and LEAVE +[13:03:46] [main/DEBUG]: Transforming net/minecraft/client/particle/ParticleEngine METHOD m_107381_(Lnet/minecraft/core/particles/ParticleType;Lnet/minecraft/client/particle/ParticleProvider;)V to access PUBLIC and LEAVE +[13:03:46] [main/DEBUG]: Transforming net/minecraft/client/particle/ParticleEngine METHOD m_272137_(Lnet/minecraft/core/particles/ParticleType;Lnet/minecraft/client/particle/ParticleProvider$Sprite;)V to access PUBLIC and LEAVE +[13:03:46] [main/DEBUG]: Transforming net/minecraft/client/particle/ParticleEngine METHOD m_107378_(Lnet/minecraft/core/particles/ParticleType;Lnet/minecraft/client/particle/ParticleEngine$SpriteParticleRegistration;)V to access PUBLIC and LEAVE +[13:03:46] [main/DEBUG]: Transforming class Lnet/minecraft/client/particle/ParticleEngine$SpriteParticleRegistration; +[13:03:46] [main/DEBUG]: Transforming net/minecraft/client/particle/ParticleEngine$SpriteParticleRegistration CLASS to access PUBLIC and LEAVE +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/particle/ParticleEngine$MutableSpriteSet; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/particle/ParticleEngine$1ParticleDefinition; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/particle/Particle; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/particle/FireworkParticles; +[13:03:46] [main/DEBUG]: Transforming class Lnet/minecraft/client/particle/FireworkParticles$Starter; +[13:03:46] [main/DEBUG]: Transforming net/minecraft/client/particle/FireworkParticles$Starter METHOD m_106767_(DDDDDD[I[IZZ)V to access PUBLIC and LEAVE +[13:03:46] [main/DEBUG]: Transforming net/minecraft/client/particle/FireworkParticles$Starter METHOD m_106778_(DI[I[IZZ)V to access PUBLIC and LEAVE +[13:03:46] [main/DEBUG]: Transforming net/minecraft/client/particle/FireworkParticles$Starter METHOD m_106785_(D[[D[I[IZZZ)V to access PUBLIC and LEAVE +[13:03:46] [main/DEBUG]: Transforming net/minecraft/client/particle/FireworkParticles$Starter METHOD m_106793_([I[IZZ)V to access PUBLIC and LEAVE +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/particle/FireworkParticles$SparkProvider; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/particle/FireworkParticles$SparkParticle; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/particle/FireworkParticles$OverlayParticle; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/particle/FireworkParticles$FlashProvider; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/particle/FireworkParticles$1; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/particle/EnchantmentTableParticle; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/particle/EnchantmentTableParticle$Provider; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/particle/EnchantmentTableParticle$NautilusProvider; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/particle/BreakingItemParticle; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/particle/BreakingItemParticle$SnowballProvider; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/particle/BreakingItemParticle$SlimeProvider; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/particle/BreakingItemParticle$Provider; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/package-info; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/multiplayer/resolver/package-info; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/multiplayer/resolver/ServerRedirectHandler; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/multiplayer/resolver/ServerNameResolver; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/multiplayer/resolver/ServerAddressResolver; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/multiplayer/resolver/ServerAddress; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/multiplayer/resolver/ResolvedServerAddress; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/multiplayer/resolver/ResolvedServerAddress$1; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/multiplayer/resolver/AddressCheck; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/multiplayer/resolver/AddressCheck$1; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/multiplayer/prediction/package-info; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/multiplayer/prediction/PredictiveAction; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/multiplayer/prediction/BlockStatePredictionHandler; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/multiplayer/prediction/BlockStatePredictionHandler$ServerVerifiedState; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/multiplayer/package-info; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/multiplayer/chat/report/package-info; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/multiplayer/chat/report/ReportingContext; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/multiplayer/chat/report/ReportReason; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/multiplayer/chat/report/ReportEnvironment; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/multiplayer/chat/report/ReportEnvironment$Server; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/multiplayer/chat/report/ReportEnvironment$Server$ThirdParty; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/multiplayer/chat/report/ReportEnvironment$Server$Realm; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/multiplayer/chat/report/ChatReportContextBuilder; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/multiplayer/chat/report/ChatReportContextBuilder$Handler; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/multiplayer/chat/report/ChatReportContextBuilder$Collector; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/multiplayer/chat/report/ChatReportBuilder; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/multiplayer/chat/report/ChatReportBuilder$Result; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/multiplayer/chat/report/ChatReportBuilder$ChatReport; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/multiplayer/chat/report/ChatReportBuilder$CannotBuildReason; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/multiplayer/chat/report/BanReason; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/multiplayer/chat/report/AbuseReportSender; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/multiplayer/chat/report/AbuseReportSender$Services; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/multiplayer/chat/report/AbuseReportSender$SendException; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/multiplayer/chat/report/AbuseReportSender$1; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/multiplayer/chat/package-info; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/multiplayer/chat/LoggedChatMessage; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/multiplayer/chat/LoggedChatMessage$System; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/multiplayer/chat/LoggedChatMessage$Player; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/multiplayer/chat/LoggedChatEvent; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/multiplayer/chat/LoggedChatEvent$Type; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/multiplayer/chat/ChatTrustLevel; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/multiplayer/chat/ChatTrustLevel$1; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/multiplayer/chat/ChatLog; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/multiplayer/chat/ChatListener; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/multiplayer/chat/ChatListener$Message; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/multiplayer/ServerList; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/multiplayer/ProfileKeyPairManager; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/multiplayer/ProfileKeyPairManager$1; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/multiplayer/ClientSuggestionProvider; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/multiplayer/ClientSuggestionProvider$1; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/multiplayer/ClientRegistryLayer; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/multiplayer/ClientAdvancements; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/multiplayer/ClientAdvancements$Listener; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/multiplayer/ServerStatusPinger; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/multiplayer/ServerStatusPinger$2; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/multiplayer/ServerStatusPinger$2$1; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/multiplayer/ServerStatusPinger$1; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/multiplayer/ServerData; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/multiplayer/ServerData$ServerPackStatus; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/multiplayer/PlayerInfo; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/multiplayer/MultiPlayerGameMode; +[13:03:46] [main/DEBUG]: Transforming class Lnet/minecraft/client/multiplayer/ClientPacketListener; +[13:03:46] [main/DEBUG]: Transforming net/minecraft/client/multiplayer/ClientPacketListener FIELD f_104899_ to access PUBLIC and LEAVE +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/multiplayer/ClientPacketListener$DeferredPacket; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/multiplayer/ClientPacketListener$1; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/multiplayer/ClientLevel; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/multiplayer/ClientLevel$EntityCallbacks; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/multiplayer/ClientLevel$ClientLevelData; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/multiplayer/ClientLevel$1; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/multiplayer/ClientHandshakePacketListenerImpl; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/multiplayer/ClientChunkCache; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/multiplayer/ClientChunkCache$Storage; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/multiplayer/AccountProfileKeyPairManager; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/model/package-info; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/model/geom/package-info; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/model/geom/builders/package-info; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/model/geom/builders/UVPair; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/model/geom/builders/PartDefinition; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/model/geom/builders/MeshDefinition; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/model/geom/builders/MaterialDefinition; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/model/geom/builders/LayerDefinition; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/model/geom/builders/CubeListBuilder; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/model/geom/builders/CubeDeformation; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/model/geom/builders/CubeDefinition; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/model/geom/PartPose; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/model/geom/PartNames; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/model/geom/ModelPart; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/model/geom/ModelPart$Visitor; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/model/geom/ModelPart$Vertex; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/model/geom/ModelPart$Polygon; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/model/geom/ModelPart$Cube; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/model/geom/ModelLayerLocation; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/model/geom/EntityModelSet; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/model/geom/ModelLayers; +[13:03:46] [main/DEBUG]: Transforming class Lnet/minecraft/client/model/geom/LayerDefinitions; +[13:03:46] [main/DEBUG]: Transforming net/minecraft/client/model/geom/LayerDefinitions FIELD f_171106_ to access PUBLIC and LEAVE +[13:03:46] [main/DEBUG]: Transforming net/minecraft/client/model/geom/LayerDefinitions FIELD f_171107_ to access PUBLIC and LEAVE +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/model/dragon/package-info; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/model/dragon/DragonHeadModel; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/model/ZombieVillagerModel; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/model/ZombieModel; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/model/WolfModel; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/model/WitherBossModel; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/model/WitchModel; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/model/WaterPatchModel; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/model/WardenModel; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/model/VillagerModel; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/model/VillagerHeadModel; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/model/VexModel; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/model/TurtleModel; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/model/TropicalFishModelB; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/model/TropicalFishModelA; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/model/TridentModel; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/model/TadpoleModel; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/model/StriderModel; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/model/SquidModel; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/model/SpiderModel; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/model/SnowGolemModel; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/model/SnifferModel; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/model/SlimeModel; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/model/SkullModelBase; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/model/SkullModel; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/model/SkeletonModel; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/model/SilverfishModel; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/model/ShulkerModel; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/model/ShulkerBulletModel; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/model/ShieldModel; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/model/SheepModel; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/model/SheepFurModel; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/model/SalmonModel; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/model/RavagerModel; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/model/RaftModel; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/model/RabbitModel; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/model/QuadrupedModel; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/model/PufferfishSmallModel; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/model/PufferfishMidModel; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/model/PufferfishBigModel; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/model/PolarBearModel; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/model/PlayerModel; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/model/PiglinModel; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/model/PiglinHeadModel; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/model/PigModel; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/model/PhantomModel; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/model/ParrotModel; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/model/ParrotModel$State; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/model/ParrotModel$1; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/model/PandaModel; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/model/OcelotModel; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/model/ModelUtils; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/model/Model; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/model/MinecartModel; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/model/LlamaSpitModel; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/model/LlamaModel; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/model/ListModel; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/model/LeashKnotModel; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/model/LavaSlimeModel; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/model/IronGolemModel; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/model/IllagerModel; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/model/HumanoidArmorModel; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/model/HorseModel; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/model/HoglinModel; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/model/HierarchicalModel; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/model/HeadedModel; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/model/GuardianModel; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/model/GoatModel; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/model/GiantZombieModel; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/model/GhastModel; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/model/FrogModel; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/model/FoxModel; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/model/EvokerFangsModel; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/model/EntityModel; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/model/EndermiteModel; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/model/EndermanModel; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/model/ElytraModel; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/model/DrownedModel; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/model/DolphinModel; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/model/CreeperModel; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/model/CowModel; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/model/ColorableHierarchicalModel; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/model/ColorableAgeableListModel; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/model/CodModel; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/model/ChickenModel; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/model/ChestedHorseModel; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/model/ChestRaftModel; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/model/ChestBoatModel; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/model/CatModel; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/model/CamelModel; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/model/BookModel; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/model/BoatModel; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/model/BlazeModel; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/model/BeeModel; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/model/BatModel; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/model/AxolotlModel; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/model/ArmorStandModel; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/model/ArmorStandArmorModel; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/model/ArmedModel; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/model/AnimationUtils; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/model/AllayModel; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/model/AgeableListModel; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/model/AgeableHierarchicalModel; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/model/AbstractZombieModel; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/model/HumanoidModel; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/model/HumanoidModel$ArmPose; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/model/HumanoidModel$1; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/main/package-info; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/main/SilentInitException; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/main/GameConfig; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/main/GameConfig$UserData; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/main/GameConfig$QuickPlayData; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/main/GameConfig$GameData; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/main/GameConfig$FolderData; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/main/Main; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/main/Main$3; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/main/Main$2; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/main/Main$1; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/gui/spectator/package-info; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/gui/spectator/categories/package-info; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/gui/spectator/categories/TeleportToTeamMenuCategory; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/gui/spectator/categories/TeleportToTeamMenuCategory$TeamSelectionItem; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/gui/spectator/categories/TeleportToPlayerMenuCategory; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/gui/spectator/categories/SpectatorPage; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/gui/spectator/SpectatorMenuListener; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/gui/spectator/SpectatorMenuItem; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/gui/spectator/SpectatorMenuCategory; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/gui/spectator/SpectatorMenu; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/gui/spectator/SpectatorMenu$ScrollMenuItem; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/gui/spectator/SpectatorMenu$CloseSpectatorItem; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/gui/spectator/SpectatorMenu$1; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/gui/spectator/RootSpectatorMenuCategory; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/gui/spectator/PlayerMenuItem; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/gui/screens/worldselection/package-info; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/gui/screens/worldselection/SwitchGrid; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/gui/screens/worldselection/SwitchGrid$SwitchBuilder; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/gui/screens/worldselection/SwitchGrid$LabeledSwitch; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/gui/screens/worldselection/SwitchGrid$InfoUnderneathSettings; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/gui/screens/worldselection/SwitchGrid$Builder; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/gui/screens/worldselection/SelectWorldScreen; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/gui/screens/worldselection/OptimizeWorldScreen; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/gui/screens/worldselection/ExperimentsScreen; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/gui/screens/worldselection/EditWorldScreen; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/gui/screens/worldselection/EditGameRulesScreen; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/gui/screens/worldselection/EditGameRulesScreen$RuleList; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/gui/screens/worldselection/EditGameRulesScreen$RuleList$1; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/gui/screens/worldselection/EditGameRulesScreen$RuleEntry; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/gui/screens/worldselection/EditGameRulesScreen$IntegerRuleEntry; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/gui/screens/worldselection/EditGameRulesScreen$GameRuleEntry; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/gui/screens/worldselection/EditGameRulesScreen$EntryFactory; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/gui/screens/worldselection/EditGameRulesScreen$CategoryRuleEntry; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/gui/screens/worldselection/EditGameRulesScreen$CategoryRuleEntry$1; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/gui/screens/worldselection/EditGameRulesScreen$BooleanRuleEntry; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/gui/screens/worldselection/ConfirmExperimentalFeaturesScreen; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/gui/screens/worldselection/ConfirmExperimentalFeaturesScreen$DetailsScreen; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/gui/screens/worldselection/ConfirmExperimentalFeaturesScreen$DetailsScreen$PackListEntry; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/gui/screens/worldselection/ConfirmExperimentalFeaturesScreen$DetailsScreen$PackList; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/gui/screens/worldselection/WorldSelectionList; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/gui/screens/worldselection/WorldSelectionList$WorldListEntry; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/gui/screens/worldselection/WorldSelectionList$LoadingHeader; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/gui/screens/worldselection/WorldSelectionList$Entry; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/gui/screens/worldselection/WorldOpenFlows; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/gui/screens/worldselection/WorldOpenFlows$1Data; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/gui/screens/worldselection/WorldCreationUiState; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/gui/screens/worldselection/WorldCreationUiState$WorldTypeEntry; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/gui/screens/worldselection/WorldCreationUiState$SelectedGameMode; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/gui/screens/worldselection/WorldCreationContext; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/gui/screens/worldselection/WorldCreationContext$OptionsModifier; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/gui/screens/worldselection/WorldCreationContext$DimensionsUpdater; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/gui/screens/worldselection/PresetEditor; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/gui/screens/worldselection/CreateWorldScreen; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/gui/screens/worldselection/CreateWorldScreen$WorldTab; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/gui/screens/worldselection/CreateWorldScreen$WorldTab$2; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/gui/screens/worldselection/CreateWorldScreen$WorldTab$1; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/gui/screens/worldselection/CreateWorldScreen$MoreTab; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/gui/screens/worldselection/CreateWorldScreen$GameTab; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/gui/screens/worldselection/CreateWorldScreen$DataPackReloadCookie; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/gui/screens/telemetry/package-info; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/gui/screens/telemetry/TelemetryInfoScreen; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/gui/screens/telemetry/TelemetryEventWidget; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/gui/screens/telemetry/TelemetryEventWidget$ContentBuilder; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/gui/screens/telemetry/TelemetryEventWidget$Content; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/gui/screens/social/package-info; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/gui/screens/social/SocialInteractionsScreen; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/gui/screens/social/SocialInteractionsScreen$Page; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/gui/screens/social/SocialInteractionsScreen$2; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/gui/screens/social/SocialInteractionsScreen$1; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/gui/screens/social/SocialInteractionsPlayerList; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/gui/screens/social/PlayerSocialManager; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/gui/screens/social/PlayerEntry; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/gui/screens/social/PlayerEntry$3; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/gui/screens/social/PlayerEntry$2; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/gui/screens/social/PlayerEntry$1; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/gui/screens/reporting/package-info; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/gui/screens/reporting/ReportReasonSelectionScreen; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/gui/screens/reporting/ReportReasonSelectionScreen$ReasonSelectionList; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/gui/screens/reporting/ReportReasonSelectionScreen$ReasonSelectionList$Entry; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/gui/screens/reporting/ChatSelectionScreen; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/gui/screens/reporting/ChatSelectionScreen$ChatSelectionList; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/gui/screens/reporting/ChatSelectionScreen$ChatSelectionList$PaddingEntry; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/gui/screens/reporting/ChatSelectionScreen$ChatSelectionList$MessageHeadingEntry; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/gui/screens/reporting/ChatSelectionScreen$ChatSelectionList$MessageEntry; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/gui/screens/reporting/ChatSelectionScreen$ChatSelectionList$Heading; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/gui/screens/reporting/ChatSelectionScreen$ChatSelectionList$Entry; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/gui/screens/reporting/ChatSelectionScreen$ChatSelectionList$DividerEntry; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/gui/screens/reporting/ChatSelectionLogFiller; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/gui/screens/reporting/ChatSelectionLogFiller$Output; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/gui/screens/reporting/ChatReportScreen; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/gui/screens/reporting/ChatReportScreen$DiscardReportWarningScreen; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/gui/screens/recipebook/package-info; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/gui/screens/recipebook/SmokingRecipeBookComponent; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/gui/screens/recipebook/SmeltingRecipeBookComponent; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/gui/screens/recipebook/RecipeUpdateListener; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/gui/screens/recipebook/RecipeShownListener; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/gui/screens/recipebook/RecipeCollection; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/gui/screens/recipebook/RecipeButton; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/gui/screens/recipebook/RecipeBookTabButton; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/gui/screens/recipebook/RecipeBookPage; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/gui/screens/recipebook/OverlayRecipeComponent; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/gui/screens/recipebook/OverlayRecipeComponent$OverlaySmeltingRecipeButton; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/gui/screens/recipebook/OverlayRecipeComponent$OverlayRecipeButton; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/gui/screens/recipebook/OverlayRecipeComponent$OverlayRecipeButton$Pos; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/gui/screens/recipebook/GhostRecipe; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/gui/screens/recipebook/GhostRecipe$GhostIngredient; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/gui/screens/recipebook/BlastingRecipeBookComponent; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/gui/screens/recipebook/AbstractFurnaceRecipeBookComponent; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/gui/screens/recipebook/RecipeBookComponent; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/gui/screens/packs/package-info; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/gui/screens/packs/TransferableSelectionList; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/gui/screens/packs/TransferableSelectionList$PackEntry; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/gui/screens/packs/PackSelectionScreen; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/gui/screens/packs/PackSelectionScreen$Watcher; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/gui/screens/packs/PackSelectionModel; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/gui/screens/packs/PackSelectionModel$UnselectedPackEntry; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/gui/screens/packs/PackSelectionModel$SelectedPackEntry; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/gui/screens/packs/PackSelectionModel$EntryBase; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/gui/screens/packs/PackSelectionModel$Entry; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/gui/screens/package-info; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/gui/screens/multiplayer/package-info; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/gui/screens/multiplayer/WarningScreen; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/gui/screens/multiplayer/SafetyScreen; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/gui/screens/multiplayer/Realms32bitWarningScreen; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/gui/screens/multiplayer/ServerSelectionList; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/gui/screens/multiplayer/ServerSelectionList$OnlineServerEntry; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/gui/screens/multiplayer/ServerSelectionList$NetworkServerEntry; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/gui/screens/multiplayer/ServerSelectionList$LANHeader; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/gui/screens/multiplayer/ServerSelectionList$Entry; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/gui/screens/multiplayer/JoinMultiplayerScreen; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/gui/screens/inventory/tooltip/package-info; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/gui/screens/inventory/tooltip/MenuTooltipPositioner; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/gui/screens/inventory/tooltip/DefaultTooltipPositioner; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/gui/screens/inventory/tooltip/ClientTooltipPositioner; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/gui/screens/inventory/tooltip/ClientTextTooltip; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/gui/screens/inventory/tooltip/ClientBundleTooltip; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/gui/screens/inventory/tooltip/ClientBundleTooltip$Texture; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/gui/screens/inventory/tooltip/BelowOrAboveWidgetTooltipPositioner; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/gui/screens/inventory/tooltip/TooltipRenderUtil; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/gui/screens/inventory/tooltip/ClientTooltipComponent; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/gui/screens/inventory/package-info; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/gui/screens/inventory/StructureBlockEditScreen; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/gui/screens/inventory/StructureBlockEditScreen$2; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/gui/screens/inventory/StructureBlockEditScreen$1; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/gui/screens/inventory/StonecutterScreen; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/gui/screens/inventory/SmokerScreen; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/gui/screens/inventory/SmithingScreen; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/gui/screens/inventory/SignEditScreen; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/gui/screens/inventory/ShulkerBoxScreen; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/gui/screens/inventory/PageButton; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/gui/screens/inventory/MinecartCommandBlockEditScreen; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/gui/screens/inventory/MenuAccess; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/gui/screens/inventory/LoomScreen; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/gui/screens/inventory/LecternScreen; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/gui/screens/inventory/LecternScreen$1; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/gui/screens/inventory/JigsawBlockEditScreen; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/gui/screens/inventory/JigsawBlockEditScreen$1; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/gui/screens/inventory/ItemCombinerScreen; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/gui/screens/inventory/HorseInventoryScreen; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/gui/screens/inventory/HopperScreen; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/gui/screens/inventory/GrindstoneScreen; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/gui/screens/inventory/FurnaceScreen; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/gui/screens/inventory/EnchantmentNames; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/gui/screens/inventory/DispenserScreen; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/gui/screens/inventory/CyclingSlotBackground; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/gui/screens/inventory/CreativeInventoryListener; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/gui/screens/inventory/CraftingScreen; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/gui/screens/inventory/ContainerScreen; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/gui/screens/inventory/CommandBlockEditScreen; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/gui/screens/inventory/CommandBlockEditScreen$1; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/gui/screens/inventory/CartographyTableScreen; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/gui/screens/inventory/BrewingStandScreen; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/gui/screens/inventory/BookViewScreen; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/gui/screens/inventory/BookViewScreen$WrittenBookAccess; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/gui/screens/inventory/BookViewScreen$WritableBookAccess; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/gui/screens/inventory/BookViewScreen$BookAccess; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/gui/screens/inventory/BookViewScreen$1; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/gui/screens/inventory/BookEditScreen; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/gui/screens/inventory/BookEditScreen$Pos2i; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/gui/screens/inventory/BookEditScreen$LineInfo; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/gui/screens/inventory/BookEditScreen$DisplayCache; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/gui/screens/inventory/BlastFurnaceScreen; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/gui/screens/inventory/BeaconScreen; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/gui/screens/inventory/BeaconScreen$BeaconUpgradePowerButton; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/gui/screens/inventory/BeaconScreen$BeaconSpriteScreenButton; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/gui/screens/inventory/BeaconScreen$BeaconScreenButton; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/gui/screens/inventory/BeaconScreen$BeaconPowerButton; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/gui/screens/inventory/BeaconScreen$BeaconConfirmButton; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/gui/screens/inventory/BeaconScreen$BeaconCancelButton; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/gui/screens/inventory/BeaconScreen$BeaconButton; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/gui/screens/inventory/BeaconScreen$1; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/gui/screens/inventory/AnvilScreen; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/gui/screens/inventory/AbstractSignEditScreen; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/gui/screens/inventory/AbstractFurnaceScreen; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/gui/screens/inventory/AbstractCommandBlockEditScreen; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/gui/screens/inventory/AbstractCommandBlockEditScreen$1; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/gui/screens/inventory/MerchantScreen; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/gui/screens/inventory/MerchantScreen$TradeOfferButton; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/gui/screens/inventory/InventoryScreen; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/gui/screens/inventory/HangingSignEditScreen; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/gui/screens/inventory/EnchantmentScreen; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/gui/screens/inventory/EffectRenderingInventoryScreen; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/gui/screens/inventory/CreativeModeInventoryScreen; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/gui/screens/inventory/CreativeModeInventoryScreen$SlotWrapper; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/gui/screens/inventory/CreativeModeInventoryScreen$ItemPickerMenu; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/gui/screens/inventory/CreativeModeInventoryScreen$CustomCreativeSlot; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/gui/screens/inventory/AbstractContainerScreen; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/gui/screens/debug/package-info; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/gui/screens/debug/GameModeSwitcherScreen; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/gui/screens/debug/GameModeSwitcherScreen$GameModeSlot; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/gui/screens/debug/GameModeSwitcherScreen$GameModeIcon; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/gui/screens/debug/GameModeSwitcherScreen$1; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/gui/screens/controls/package-info; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/gui/screens/controls/ControlsScreen; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/gui/screens/controls/KeyBindsScreen; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/gui/screens/controls/KeyBindsList; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/gui/screens/controls/KeyBindsList$KeyEntry; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/gui/screens/controls/KeyBindsList$Entry; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/gui/screens/controls/KeyBindsList$CategoryEntry; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/gui/screens/controls/KeyBindsList$CategoryEntry$1; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/gui/screens/advancements/package-info; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/gui/screens/advancements/AdvancementWidgetType; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/gui/screens/advancements/AdvancementWidget; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/gui/screens/advancements/AdvancementsScreen; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/gui/screens/advancements/AdvancementTabType; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/gui/screens/advancements/AdvancementTabType$1; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/gui/screens/advancements/AdvancementTab; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/gui/screens/achievement/package-info; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/gui/screens/achievement/StatsUpdateListener; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/gui/screens/achievement/StatsScreen; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/gui/screens/achievement/StatsScreen$MobsStatisticsList; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/gui/screens/achievement/StatsScreen$MobsStatisticsList$MobRow; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/gui/screens/achievement/StatsScreen$ItemStatisticsList; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/gui/screens/achievement/StatsScreen$ItemStatisticsList$ItemRowComparator; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/gui/screens/achievement/StatsScreen$ItemStatisticsList$ItemRow; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/gui/screens/achievement/StatsScreen$GeneralStatisticsList; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/gui/screens/achievement/StatsScreen$GeneralStatisticsList$Entry; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/gui/screens/WinScreen; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/gui/screens/WinScreen$CreditsReader; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/gui/screens/VideoSettingsScreen; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/gui/screens/SymlinkWarningScreen; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/gui/screens/SoundOptionsScreen; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/gui/screens/SkinCustomizationScreen; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/gui/screens/SimpleOptionsSubScreen; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/gui/screens/ShareToLanScreen; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/gui/screens/ReceivingLevelScreen; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/gui/screens/ProgressScreen; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/gui/screens/PresetFlatWorldScreen; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/gui/screens/PresetFlatWorldScreen$PresetsList; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/gui/screens/PresetFlatWorldScreen$PresetsList$Entry; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/gui/screens/PopupScreen; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/gui/screens/PopupScreen$ButtonOption; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/gui/screens/Overlay; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/gui/screens/OutOfMemoryScreen; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/gui/screens/OptionsSubScreen; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/gui/screens/OnlineOptionsScreen; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/gui/screens/MouseSettingsScreen; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/gui/screens/LoadingDotsText; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/gui/screens/LevelLoadingScreen; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/gui/screens/LanguageSelectScreen; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/gui/screens/LanguageSelectScreen$LanguageSelectionList; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/gui/screens/LanguageSelectScreen$LanguageSelectionList$Entry; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/gui/screens/InBedChatScreen; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/gui/screens/GenericWaitingScreen; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/gui/screens/GenericDirtMessageScreen; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/gui/screens/FaviconTexture; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/gui/screens/ErrorScreen; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/gui/screens/EditServerScreen; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/gui/screens/DisconnectedScreen; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/gui/screens/DirectJoinServerScreen; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/gui/screens/DemoIntroScreen; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/gui/screens/DeathScreen; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/gui/screens/DeathScreen$TitleConfirmScreen; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/gui/screens/DatapackLoadFailureScreen; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/gui/screens/CreditsAndAttributionScreen; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/gui/screens/CreateFlatWorldScreen; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/gui/screens/CreateFlatWorldScreen$DetailsList; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/gui/screens/CreateFlatWorldScreen$DetailsList$Entry; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/gui/screens/CreateBuffetWorldScreen; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/gui/screens/CreateBuffetWorldScreen$BiomeList; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/gui/screens/CreateBuffetWorldScreen$BiomeList$Entry; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/gui/screens/ConfirmScreen; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/gui/screens/ConfirmLinkScreen; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/gui/screens/ChatOptionsScreen; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/gui/screens/BanNoticeScreen; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/gui/screens/BackupConfirmScreen; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/gui/screens/BackupConfirmScreen$Listener; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/gui/screens/AlertScreen; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/gui/screens/AccessibilityOptionsScreen; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/gui/screens/AccessibilityOnboardingScreen; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/gui/screens/TitleScreen; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/gui/screens/TitleScreen$WarningLabel; +[13:03:46] [main/DEBUG]: Transforming class Lnet/minecraft/client/gui/screens/Screen; +[13:03:46] [main/DEBUG]: Transforming net/minecraft/client/gui/screens/Screen FIELD f_169369_ to access PUBLIC and LEAVE +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/gui/screens/Screen$NarratableSearchResult; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/gui/screens/Screen$DeferredTooltipRendering; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/gui/screens/PauseScreen; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/gui/screens/OptionsScreen; +[13:03:46] [main/DEBUG]: Transforming class Lnet/minecraft/client/gui/screens/MenuScreens; +[13:03:46] [main/DEBUG]: Transforming net/minecraft/client/gui/screens/MenuScreens INNERCLASS ScreenConstructor to access PUBLIC and LEAVE +[13:03:46] [main/DEBUG]: Transforming net/minecraft/client/gui/screens/MenuScreens METHOD m_96206_(Lnet/minecraft/world/inventory/MenuType;Lnet/minecraft/client/gui/screens/MenuScreens$ScreenConstructor;)V to access PUBLIC and LEAVE +[13:03:46] [main/DEBUG]: Transforming class Lnet/minecraft/client/gui/screens/MenuScreens$ScreenConstructor; +[13:03:46] [main/DEBUG]: Transforming net/minecraft/client/gui/screens/MenuScreens$ScreenConstructor CLASS to access PUBLIC and LEAVE +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/gui/screens/LoadingOverlay; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/gui/screens/LoadingOverlay$LogoTexture; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/gui/screens/ConnectScreen; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/gui/screens/ConnectScreen$1; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/gui/screens/ChatScreen; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/gui/screens/ChatScreen$1; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/gui/package-info; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/gui/navigation/package-info; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/gui/navigation/ScreenRectangle; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/gui/navigation/ScreenRectangle$1; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/gui/navigation/ScreenPosition; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/gui/navigation/ScreenPosition$1; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/gui/navigation/ScreenDirection; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/gui/navigation/ScreenDirection$1; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/gui/navigation/ScreenAxis; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/gui/navigation/ScreenAxis$1; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/gui/navigation/FocusNavigationEvent; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/gui/navigation/FocusNavigationEvent$TabNavigation; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/gui/navigation/FocusNavigationEvent$InitialFocus; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/gui/navigation/FocusNavigationEvent$ArrowNavigation; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/gui/navigation/CommonInputs; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/gui/narration/package-info; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/gui/narration/ScreenNarrationCollector; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/gui/narration/ScreenNarrationCollector$Output; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/gui/narration/ScreenNarrationCollector$NarrationEntry; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/gui/narration/ScreenNarrationCollector$EntryKey; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/gui/narration/ScreenNarrationCollector$1; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/gui/narration/NarrationThunk; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/gui/narration/NarrationSupplier; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/gui/narration/NarrationElementOutput; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/gui/narration/NarratedElementType; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/gui/narration/NarratableEntry; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/gui/narration/NarratableEntry$NarrationPriority; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/gui/layouts/package-info; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/gui/layouts/SpacerElement; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/gui/layouts/LinearLayout; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/gui/layouts/LinearLayout$Orientation; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/gui/layouts/LinearLayout$ChildContainer; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/gui/layouts/LinearLayout$1; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/gui/layouts/LayoutSettings; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/gui/layouts/LayoutSettings$LayoutSettingsImpl; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/gui/layouts/LayoutElement; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/gui/layouts/Layout; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/gui/layouts/HeaderAndFooterLayout; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/gui/layouts/GridLayout; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/gui/layouts/GridLayout$RowHelper; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/gui/layouts/GridLayout$CellInhabitant; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/gui/layouts/FrameLayout; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/gui/layouts/FrameLayout$ChildContainer; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/gui/layouts/AbstractLayout; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/gui/layouts/AbstractLayout$AbstractChildWrapper; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/gui/font/providers/package-info; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/gui/font/providers/UnihexProvider; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/gui/font/providers/UnihexProvider$ShortContents; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/gui/font/providers/UnihexProvider$ReaderOutput; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/gui/font/providers/UnihexProvider$OverrideRange; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/gui/font/providers/UnihexProvider$LineData; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/gui/font/providers/UnihexProvider$IntContents; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/gui/font/providers/UnihexProvider$Glyph; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/gui/font/providers/UnihexProvider$Glyph$1; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/gui/font/providers/UnihexProvider$Dimensions; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/gui/font/providers/UnihexProvider$Definition; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/gui/font/providers/UnihexProvider$ByteContents; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/gui/font/providers/TrueTypeGlyphProviderDefinition; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/gui/font/providers/TrueTypeGlyphProviderDefinition$Shift; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/gui/font/providers/ProviderReferenceDefinition; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/gui/font/providers/GlyphProviderType; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/gui/font/providers/GlyphProviderDefinition; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/gui/font/providers/GlyphProviderDefinition$Reference; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/gui/font/providers/GlyphProviderDefinition$Loader; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/gui/font/providers/BitmapProvider; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/gui/font/providers/BitmapProvider$Glyph; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/gui/font/providers/BitmapProvider$Glyph$1; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/gui/font/providers/BitmapProvider$Definition; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/gui/font/package-info; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/gui/font/glyphs/package-info; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/gui/font/glyphs/SpecialGlyphs; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/gui/font/glyphs/SpecialGlyphs$PixelProvider; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/gui/font/glyphs/SpecialGlyphs$1; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/gui/font/glyphs/EmptyGlyph; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/gui/font/glyphs/BakedGlyph; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/gui/font/glyphs/BakedGlyph$Effect; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/gui/font/TextFieldHelper; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/gui/font/TextFieldHelper$CursorStep; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/gui/font/TextFieldHelper$1; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/gui/font/GlyphRenderTypes; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/gui/font/GlyphRenderTypes$1; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/gui/font/FontTexture; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/gui/font/FontTexture$Node; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/gui/font/FontSet; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/gui/font/FontSet$GlyphInfoFilter; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/gui/font/FontManager; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/gui/font/FontManager$UnresolvedBuilderBundle; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/gui/font/FontManager$Preparation; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/gui/font/FontManager$FontDefinitionFile; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/gui/font/FontManager$BuilderResult; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/gui/font/FontManager$BuilderId; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/gui/font/CodepointMap; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/gui/font/CodepointMap$Output; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/gui/font/AllMissingGlyphProvider; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/gui/components/toasts/package-info; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/gui/components/toasts/TutorialToast; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/gui/components/toasts/TutorialToast$Icons; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/gui/components/toasts/Toast; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/gui/components/toasts/Toast$Visibility; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/gui/components/toasts/SystemToast; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/gui/components/toasts/SystemToast$SystemToastIds; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/gui/components/toasts/RecipeToast; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/gui/components/toasts/AdvancementToast; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/gui/components/toasts/ToastComponent; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/gui/components/toasts/ToastComponent$ToastInstance; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/gui/components/tabs/package-info; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/gui/components/tabs/TabNavigationBar; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/gui/components/tabs/TabNavigationBar$Builder; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/gui/components/tabs/TabManager; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/gui/components/tabs/Tab; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/gui/components/tabs/GridLayoutTab; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/gui/components/spectator/package-info; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/gui/components/spectator/SpectatorGui; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/gui/components/package-info; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/gui/components/events/package-info; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/gui/components/events/GuiEventListener; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/gui/components/events/ContainerEventHandler; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/gui/components/events/AbstractContainerEventHandler; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/gui/components/Whence; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/gui/components/Tooltip; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/gui/components/TextAndImageButton; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/gui/components/TextAndImageButton$Builder; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/gui/components/TabOrderedElement; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/gui/components/TabButton; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/gui/components/SubtitleOverlay; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/gui/components/SubtitleOverlay$Subtitle; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/gui/components/StringWidget; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/gui/components/StateSwitchingButton; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/gui/components/SplashRenderer; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/gui/components/Renderable; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/gui/components/PlayerTabOverlay; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/gui/components/PlayerTabOverlay$HealthState; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/gui/components/PlayerFaceRenderer; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/gui/components/PlainTextButton; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/gui/components/OptionsList; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/gui/components/OptionsList$Entry; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/gui/components/ObjectSelectionList; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/gui/components/ObjectSelectionList$Entry; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/gui/components/MultilineTextField; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/gui/components/MultilineTextField$StringView; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/gui/components/MultilineTextField$1; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/gui/components/MultiLineTextWidget; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/gui/components/MultiLineTextWidget$CacheKey; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/gui/components/MultiLineLabel; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/gui/components/MultiLineLabel$TextWithWidth; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/gui/components/MultiLineLabel$2; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/gui/components/MultiLineLabel$1; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/gui/components/MultiLineEditBox; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/gui/components/LogoRenderer; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/gui/components/LockIconButton; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/gui/components/LockIconButton$Icon; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/gui/components/LerpingBossEvent; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/gui/components/ImageWidget; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/gui/components/ImageButton; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/gui/components/FittingMultiLineTextWidget; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/gui/components/EditBox; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/gui/components/CycleButton; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/gui/components/CycleButton$ValueListSupplier; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/gui/components/CycleButton$ValueListSupplier$2; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/gui/components/CycleButton$ValueListSupplier$1; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/gui/components/CycleButton$OnValueChange; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/gui/components/CycleButton$Builder; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/gui/components/ContainerObjectSelectionList; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/gui/components/ContainerObjectSelectionList$Entry; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/gui/components/ContainerObjectSelectionList$1; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/gui/components/ComponentRenderUtils; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/gui/components/CommonButtons; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/gui/components/CommandSuggestions; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/gui/components/CommandSuggestions$SuggestionsList; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/gui/components/Checkbox; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/gui/components/ChatComponent; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/gui/components/ChatComponent$DelayedMessageDeletion; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/gui/components/AccessibilityOnboardingTextWidget; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/gui/components/AbstractStringWidget; +[13:03:46] [main/DEBUG]: Transforming class Lnet/minecraft/client/gui/components/AbstractSliderButton; +[13:03:46] [main/DEBUG]: Transforming net/minecraft/client/gui/components/AbstractSliderButton FIELD f_263683_ to access PUBLIC and LEAVE +[13:03:46] [main/DEBUG]: Transforming net/minecraft/client/gui/components/AbstractSliderButton METHOD m_264355_()I to access PROTECTED and LEAVE +[13:03:46] [main/DEBUG]: Transforming net/minecraft/client/gui/components/AbstractSliderButton METHOD m_264270_()I to access PROTECTED and LEAVE +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/gui/components/AbstractScrollWidget; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/gui/components/AbstractOptionSliderButton; +[13:03:46] [main/DEBUG]: Transforming class Lnet/minecraft/client/gui/components/DebugScreenOverlay; +[13:03:46] [main/DEBUG]: Transforming net/minecraft/client/gui/components/DebugScreenOverlay FIELD f_94032_ to access PROTECTED and LEAVE +[13:03:46] [main/DEBUG]: Transforming net/minecraft/client/gui/components/DebugScreenOverlay FIELD f_94033_ to access PROTECTED and LEAVE +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/gui/components/DebugScreenOverlay$AllocationRateCalculator; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/gui/components/DebugScreenOverlay$1; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/gui/components/Button; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/gui/components/Button$OnPress; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/gui/components/Button$CreateNarration; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/gui/components/Button$Builder; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/gui/components/BossHealthOverlay; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/gui/components/BossHealthOverlay$1; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/gui/components/AbstractWidget; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/gui/components/AbstractSelectionList; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/gui/components/AbstractSelectionList$TrackedList; +[13:03:46] [main/DEBUG]: Transforming class Lnet/minecraft/client/gui/components/AbstractSelectionList$Entry; +[13:03:46] [main/DEBUG]: Transforming net/minecraft/client/gui/components/AbstractSelectionList$Entry FIELD f_93521_ to access PROTECTED and LEAVE +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/gui/components/AbstractSelectionList$1; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/gui/components/AbstractButton; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/gui/ComponentPath; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/gui/ComponentPath$Path; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/gui/ComponentPath$Leaf; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/gui/MapRenderer; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/gui/MapRenderer$MapInstance; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/gui/GuiGraphics; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/gui/GuiGraphics$ScissorStack; +[13:03:46] [main/DEBUG]: Transforming class Lnet/minecraft/client/gui/Gui; +[13:03:46] [main/DEBUG]: Transforming net/minecraft/client/gui/Gui FIELD f_92981_ to access PROTECTED and LEAVE +[13:03:46] [main/DEBUG]: Transforming net/minecraft/client/gui/Gui FIELD f_92982_ to access PROTECTED and LEAVE +[13:03:46] [main/DEBUG]: Transforming net/minecraft/client/gui/Gui FIELD f_92983_ to access PROTECTED and LEAVE +[13:03:46] [main/DEBUG]: Transforming net/minecraft/client/gui/Gui FIELD f_168665_ to access PROTECTED and LEAVE +[13:03:46] [main/DEBUG]: Transforming net/minecraft/client/gui/Gui FIELD f_168666_ to access PROTECTED and LEAVE +[13:03:46] [main/DEBUG]: Transforming net/minecraft/client/gui/Gui FIELD f_279580_ to access PROTECTED and LEAVE +[13:03:46] [main/DEBUG]: Transforming net/minecraft/client/gui/Gui FIELD f_92984_ to access PROTECTED and LEAVE +[13:03:46] [main/DEBUG]: Transforming net/minecraft/client/gui/Gui FIELD f_193830_ to access PROTECTED and LEAVE +[13:03:46] [main/DEBUG]: Transforming net/minecraft/client/gui/Gui FIELD f_168667_ to access PROTECTED and LEAVE +[13:03:46] [main/DEBUG]: Transforming net/minecraft/client/gui/Gui FIELD f_168668_ to access PROTECTED and LEAVE +[13:03:46] [main/DEBUG]: Transforming net/minecraft/client/gui/Gui FIELD f_168669_ to access PROTECTED and LEAVE +[13:03:46] [main/DEBUG]: Transforming net/minecraft/client/gui/Gui FIELD f_168670_ to access PROTECTED and LEAVE +[13:03:46] [main/DEBUG]: Transforming net/minecraft/client/gui/Gui FIELD f_168671_ to access PROTECTED and LEAVE +[13:03:46] [main/DEBUG]: Transforming net/minecraft/client/gui/Gui FIELD f_168672_ to access PROTECTED and LEAVE +[13:03:46] [main/DEBUG]: Transforming net/minecraft/client/gui/Gui FIELD f_168673_ to access PROTECTED and LEAVE +[13:03:46] [main/DEBUG]: Transforming net/minecraft/client/gui/Gui FIELD f_168674_ to access PROTECTED and LEAVE +[13:03:46] [main/DEBUG]: Transforming net/minecraft/client/gui/Gui FIELD f_193831_ to access PROTECTED and LEAVE +[13:03:46] [main/DEBUG]: Transforming net/minecraft/client/gui/Gui FIELD f_92985_ to access PROTECTED and LEAVE +[13:03:46] [main/DEBUG]: Transforming net/minecraft/client/gui/Gui FIELD f_92986_ to access PROTECTED and LEAVE +[13:03:46] [main/DEBUG]: Transforming net/minecraft/client/gui/Gui FIELD f_92987_ to access PROTECTED and LEAVE +[13:03:46] [main/DEBUG]: Transforming net/minecraft/client/gui/Gui FIELD f_92988_ to access PROTECTED and LEAVE +[13:03:46] [main/DEBUG]: Transforming net/minecraft/client/gui/Gui FIELD f_92989_ to access PROTECTED and LEAVE +[13:03:46] [main/DEBUG]: Transforming net/minecraft/client/gui/Gui FIELD f_92990_ to access PROTECTED and LEAVE +[13:03:46] [main/DEBUG]: Transforming net/minecraft/client/gui/Gui FIELD f_92991_ to access PROTECTED and LEAVE +[13:03:46] [main/DEBUG]: Transforming net/minecraft/client/gui/Gui FIELD f_92992_ to access PROTECTED and LEAVE +[13:03:46] [main/DEBUG]: Transforming net/minecraft/client/gui/Gui FIELD f_238167_ to access PROTECTED and LEAVE +[13:03:46] [main/DEBUG]: Transforming net/minecraft/client/gui/Gui FIELD f_92993_ to access PROTECTED and LEAVE +[13:03:46] [main/DEBUG]: Transforming net/minecraft/client/gui/Gui FIELD f_92994_ to access PROTECTED and LEAVE +[13:03:46] [main/DEBUG]: Transforming net/minecraft/client/gui/Gui FIELD f_92995_ to access PROTECTED and LEAVE +[13:03:46] [main/DEBUG]: Transforming net/minecraft/client/gui/Gui FIELD f_92996_ to access PROTECTED and LEAVE +[13:03:46] [main/DEBUG]: Transforming net/minecraft/client/gui/Gui FIELD f_92997_ to access PROTECTED and LEAVE +[13:03:46] [main/DEBUG]: Transforming net/minecraft/client/gui/Gui FIELD f_92998_ to access PROTECTED and LEAVE +[13:03:46] [main/DEBUG]: Transforming net/minecraft/client/gui/Gui FIELD f_92999_ to access PROTECTED and LEAVE +[13:03:46] [main/DEBUG]: Transforming net/minecraft/client/gui/Gui FIELD f_93000_ to access PROTECTED and LEAVE +[13:03:46] [main/DEBUG]: Transforming net/minecraft/client/gui/Gui FIELD f_93001_ to access PROTECTED and LEAVE +[13:03:46] [main/DEBUG]: Transforming net/minecraft/client/gui/Gui FIELD f_93002_ to access PROTECTED and LEAVE +[13:03:46] [main/DEBUG]: Transforming net/minecraft/client/gui/Gui FIELD f_92970_ to access PROTECTED and LEAVE +[13:03:46] [main/DEBUG]: Transforming net/minecraft/client/gui/Gui FIELD f_92971_ to access PROTECTED and LEAVE +[13:03:46] [main/DEBUG]: Transforming net/minecraft/client/gui/Gui FIELD f_92972_ to access PROTECTED and LEAVE +[13:03:46] [main/DEBUG]: Transforming net/minecraft/client/gui/Gui FIELD f_92973_ to access PROTECTED and LEAVE +[13:03:46] [main/DEBUG]: Transforming net/minecraft/client/gui/Gui FIELD f_92974_ to access PROTECTED and LEAVE +[13:03:46] [main/DEBUG]: Transforming net/minecraft/client/gui/Gui FIELD f_92975_ to access PROTECTED and LEAVE +[13:03:46] [main/DEBUG]: Transforming net/minecraft/client/gui/Gui FIELD f_92976_ to access PROTECTED and LEAVE +[13:03:46] [main/DEBUG]: Transforming net/minecraft/client/gui/Gui FIELD f_92977_ to access PROTECTED and LEAVE +[13:03:46] [main/DEBUG]: Transforming net/minecraft/client/gui/Gui FIELD f_92978_ to access PROTECTED and LEAVE +[13:03:46] [main/DEBUG]: Transforming net/minecraft/client/gui/Gui FIELD f_193828_ to access PROTECTED and LEAVE +[13:03:46] [main/DEBUG]: Transforming net/minecraft/client/gui/Gui FIELD f_193829_ to access PROTECTED and LEAVE +[13:03:46] [main/DEBUG]: Transforming net/minecraft/client/gui/Gui FIELD f_168664_ to access PROTECTED and LEAVE +[13:03:46] [main/DEBUG]: Transforming net/minecraft/client/gui/Gui METHOD m_93039_(Lnet/minecraft/client/gui/GuiGraphics;Lnet/minecraft/client/gui/Font;III)V to access PROTECTED and LEAVE +[13:03:46] [main/DEBUG]: Transforming net/minecraft/client/gui/Gui METHOD m_280130_(Lnet/minecraft/client/gui/GuiGraphics;)V to access PUBLIC and LEAVE +[13:03:46] [main/DEBUG]: Transforming net/minecraft/client/gui/Gui METHOD m_280523_(Lnet/minecraft/client/gui/GuiGraphics;)V to access PUBLIC and LEAVE +[13:03:46] [main/DEBUG]: Transforming net/minecraft/client/gui/Gui METHOD m_280518_(FLnet/minecraft/client/gui/GuiGraphics;)V to access PUBLIC and LEAVE +[13:03:46] [main/DEBUG]: Transforming net/minecraft/client/gui/Gui METHOD m_280030_(Lnet/minecraft/client/gui/GuiGraphics;Lnet/minecraft/world/scores/Objective;)V to access PUBLIC and LEAVE +[13:03:46] [main/DEBUG]: Transforming net/minecraft/client/gui/Gui METHOD m_168688_(Lnet/minecraft/client/gui/GuiGraphics;Lnet/minecraft/world/entity/player/Player;IIIIFIIIZ)V to access PROTECTED and LEAVE +[13:03:46] [main/DEBUG]: Transforming net/minecraft/client/gui/Gui METHOD m_280155_(Lnet/minecraft/client/gui/GuiGraphics;Lnet/minecraft/resources/ResourceLocation;F)V to access PROTECTED and LEAVE +[13:03:46] [main/DEBUG]: Transforming net/minecraft/client/gui/Gui METHOD m_280278_(Lnet/minecraft/client/gui/GuiGraphics;F)V to access PUBLIC and LEAVE +[13:03:46] [main/DEBUG]: Transforming net/minecraft/client/gui/Gui METHOD m_280154_(Lnet/minecraft/client/gui/GuiGraphics;Lnet/minecraft/world/entity/Entity;)V to access PUBLIC and LEAVE +[13:03:46] [main/DEBUG]: Transforming net/minecraft/client/gui/Gui METHOD m_280379_(Lnet/minecraft/client/gui/GuiGraphics;F)V to access PROTECTED and LEAVE +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/gui/Gui$HeartType; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/gui/Font; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/gui/Font$StringRenderOutput; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/gui/Font$DisplayMode; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/color/item/package-info; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/color/item/ItemColor; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/color/item/ItemColors; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/color/block/package-info; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/color/block/BlockTintCache; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/color/block/BlockTintCache$LatestCacheInfo; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/color/block/BlockTintCache$CacheData; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/color/block/BlockColor; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/color/block/BlockColors; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/animation/package-info; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/animation/definitions/package-info; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/animation/definitions/WardenAnimation; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/animation/definitions/SnifferAnimation; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/animation/definitions/FrogAnimation; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/animation/definitions/CamelAnimation; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/animation/KeyframeAnimations; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/animation/Keyframe; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/animation/AnimationDefinition; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/animation/AnimationDefinition$Builder; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/animation/AnimationChannel; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/animation/AnimationChannel$Targets; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/animation/AnimationChannel$Target; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/animation/AnimationChannel$Interpolations; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/animation/AnimationChannel$Interpolation; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/Timer; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/StringSplitter; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/StringSplitter$WidthProvider; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/StringSplitter$WidthLimitedCharSink; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/StringSplitter$LinePosConsumer; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/StringSplitter$LineComponent; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/StringSplitter$LineBreakFinder; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/StringSplitter$FlatComponents; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/StringSplitter$1; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/ResourceLoadStateTracker; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/ResourceLoadStateTracker$ReloadState; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/ResourceLoadStateTracker$ReloadReason; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/ResourceLoadStateTracker$RecoveryInfo; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/Realms32BitWarningStatus; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/PrioritizeChunkUpdates; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/PeriodicNotificationManager; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/PeriodicNotificationManager$NotificationTask; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/PeriodicNotificationManager$Notification; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/ParticleStatus; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/OptionInstance; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/OptionInstance$ValueSet; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/OptionInstance$UnitDouble; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/OptionInstance$UnitDouble$1; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/OptionInstance$TooltipSupplier; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/OptionInstance$SliderableValueSet; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/OptionInstance$SliderableOrCyclableValueSet; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/OptionInstance$OptionInstanceSliderButton; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/OptionInstance$LazyEnum; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/OptionInstance$IntRangeBase; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/OptionInstance$IntRangeBase$1; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/OptionInstance$IntRange; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/OptionInstance$Enum; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/OptionInstance$CycleableValueSet; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/OptionInstance$CycleableValueSet$ValueSetter; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/OptionInstance$ClampingLazyMaxIntRange; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/OptionInstance$CaptionBasedToString; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/OptionInstance$AltEnum; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/NarratorStatus; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/InputType; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/HotbarManager; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/GuiMessageTag; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/GuiMessageTag$Icon; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/GuiMessage; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/GuiMessage$Line; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/GraphicsStatus; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/GraphicsStatus$1; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/GameNarrator; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/GameNarrator$NarratorInitException; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/DebugQueryHandler; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/ComponentCollector; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/CloudStatus; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/CameraType; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/AttackIndicatorStatus; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/User; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/User$Type; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/ToggleKeyMapping; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/Screenshot; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/RecipeBookCategories; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/RecipeBookCategories$1; +[13:03:46] [main/DEBUG]: Transforming class Lnet/minecraft/client/Options; +[13:03:46] [main/DEBUG]: Transforming net/minecraft/client/Options INNERCLASS FieldAccess to access PUBLIC and LEAVE +[13:03:46] [main/DEBUG]: Transforming net/minecraft/client/Options FIELD f_92059_ to access PUBLIC and REMOVEFINAL +[13:03:46] [main/DEBUG]: Transforming class Lnet/minecraft/client/Options$FieldAccess; +[13:03:46] [main/DEBUG]: Transforming net/minecraft/client/Options$FieldAccess CLASS to access PUBLIC and LEAVE +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/Options$4; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/Options$3; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/Options$2; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/Options$1; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/MouseHandler; +[13:03:46] [main/DEBUG]: Transforming class Lnet/minecraft/client/Minecraft; +[13:03:46] [main/DEBUG]: Transforming net/minecraft/client/Minecraft FIELD f_90987_ to access PUBLIC and LEAVE +[13:03:46] [main/DEBUG]: Transforming net/minecraft/client/Minecraft METHOD m_91271_()V to access PUBLIC and LEAVE +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/Minecraft$ChatStatus; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/Minecraft$ChatStatus$4; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/Minecraft$ChatStatus$3; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/Minecraft$ChatStatus$2; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/Minecraft$ChatStatus$1; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/Minecraft$1; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/KeyboardHandler; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/KeyboardHandler$1; +[13:03:46] [main/DEBUG]: Transforming class Lnet/minecraft/client/KeyMapping; +[13:03:46] [main/DEBUG]: Transforming net/minecraft/client/KeyMapping FIELD f_90817_ to access DEFAULT and LEAVE +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/ClientRecipeBook; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/ClientRecipeBook$1; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/ClientBrandRetriever; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/Camera; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/client/Camera$NearPlane; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/advancements/package-info; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/advancements/critereon/package-info; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/advancements/critereon/WrappedMinMaxBounds; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/advancements/critereon/UsingItemTrigger; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/advancements/critereon/UsingItemTrigger$TriggerInstance; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/advancements/critereon/UsedTotemTrigger; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/advancements/critereon/UsedTotemTrigger$TriggerInstance; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/advancements/critereon/UsedEnderEyeTrigger; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/advancements/critereon/UsedEnderEyeTrigger$TriggerInstance; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/advancements/critereon/TradeTrigger; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/advancements/critereon/TradeTrigger$TriggerInstance; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/advancements/critereon/TargetBlockTrigger; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/advancements/critereon/TargetBlockTrigger$TriggerInstance; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/advancements/critereon/TameAnimalTrigger; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/advancements/critereon/TameAnimalTrigger$TriggerInstance; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/advancements/critereon/TagPredicate; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/advancements/critereon/SummonedEntityTrigger; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/advancements/critereon/SummonedEntityTrigger$TriggerInstance; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/advancements/critereon/StatePropertiesPredicate; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/advancements/critereon/StatePropertiesPredicate$RangedPropertyMatcher; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/advancements/critereon/StatePropertiesPredicate$PropertyMatcher; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/advancements/critereon/StatePropertiesPredicate$ExactPropertyMatcher; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/advancements/critereon/StatePropertiesPredicate$Builder; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/advancements/critereon/StartRidingTrigger; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/advancements/critereon/StartRidingTrigger$TriggerInstance; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/advancements/critereon/SlimePredicate; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/advancements/critereon/SlideDownBlockTrigger; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/advancements/critereon/SlideDownBlockTrigger$TriggerInstance; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/advancements/critereon/SimpleCriterionTrigger; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/advancements/critereon/ShotCrossbowTrigger; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/advancements/critereon/ShotCrossbowTrigger$TriggerInstance; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/advancements/critereon/SerializationContext; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/advancements/critereon/RecipeUnlockedTrigger; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/advancements/critereon/RecipeUnlockedTrigger$TriggerInstance; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/advancements/critereon/RecipeCraftedTrigger; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/advancements/critereon/RecipeCraftedTrigger$TriggerInstance; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/advancements/critereon/PlayerTrigger; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/advancements/critereon/PlayerTrigger$TriggerInstance; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/advancements/critereon/PlayerPredicate; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/advancements/critereon/PlayerPredicate$Builder; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/advancements/critereon/PlayerPredicate$AdvancementPredicate; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/advancements/critereon/PlayerPredicate$AdvancementDonePredicate; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/advancements/critereon/PlayerPredicate$AdvancementCriterionsPredicate; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/advancements/critereon/PlayerInteractTrigger; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/advancements/critereon/PlayerInteractTrigger$TriggerInstance; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/advancements/critereon/PlayerHurtEntityTrigger; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/advancements/critereon/PlayerHurtEntityTrigger$TriggerInstance; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/advancements/critereon/PickedUpItemTrigger; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/advancements/critereon/PickedUpItemTrigger$TriggerInstance; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/advancements/critereon/NbtPredicate; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/advancements/critereon/MobEffectsPredicate; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/advancements/critereon/MobEffectsPredicate$MobEffectInstancePredicate; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/advancements/critereon/MinMaxBounds; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/advancements/critereon/MinMaxBounds$Ints; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/advancements/critereon/MinMaxBounds$Doubles; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/advancements/critereon/MinMaxBounds$BoundsFromReaderFactory; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/advancements/critereon/MinMaxBounds$BoundsFactory; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/advancements/critereon/LootTableTrigger; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/advancements/critereon/LootTableTrigger$TriggerInstance; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/advancements/critereon/LocationPredicate; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/advancements/critereon/LocationPredicate$Builder; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/advancements/critereon/LightningStrikeTrigger; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/advancements/critereon/LightningStrikeTrigger$TriggerInstance; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/advancements/critereon/LighthingBoltPredicate; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/advancements/critereon/LightPredicate; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/advancements/critereon/LightPredicate$Builder; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/advancements/critereon/LevitationTrigger; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/advancements/critereon/LevitationTrigger$TriggerInstance; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/advancements/critereon/KilledTrigger; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/advancements/critereon/KilledTrigger$TriggerInstance; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/advancements/critereon/KilledByCrossbowTrigger; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/advancements/critereon/KilledByCrossbowTrigger$TriggerInstance; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/advancements/critereon/ItemUsedOnLocationTrigger; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/advancements/critereon/ItemUsedOnLocationTrigger$TriggerInstance; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/advancements/critereon/ItemDurabilityTrigger; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/advancements/critereon/ItemDurabilityTrigger$TriggerInstance; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/advancements/critereon/InventoryChangeTrigger; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/advancements/critereon/InventoryChangeTrigger$TriggerInstance; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/advancements/critereon/ImpossibleTrigger; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/advancements/critereon/ImpossibleTrigger$TriggerInstance; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/advancements/critereon/FluidPredicate; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/advancements/critereon/FluidPredicate$Builder; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/advancements/critereon/FishingRodHookedTrigger; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/advancements/critereon/FishingRodHookedTrigger$TriggerInstance; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/advancements/critereon/FishingHookPredicate; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/advancements/critereon/FilledBucketTrigger; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/advancements/critereon/FilledBucketTrigger$TriggerInstance; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/advancements/critereon/EntityVariantPredicate; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/advancements/critereon/EntityVariantPredicate$1; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/advancements/critereon/EntityTypePredicate; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/advancements/critereon/EntityTypePredicate$TypePredicate; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/advancements/critereon/EntityTypePredicate$TagPredicate; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/advancements/critereon/EntityTypePredicate$1; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/advancements/critereon/EntitySubPredicate; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/advancements/critereon/EntitySubPredicate$Types; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/advancements/critereon/EntitySubPredicate$Type; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/advancements/critereon/EntitySubPredicate$1; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/advancements/critereon/EntityPredicate; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/advancements/critereon/EntityPredicate$Builder; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/advancements/critereon/EntityHurtPlayerTrigger; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/advancements/critereon/EntityHurtPlayerTrigger$TriggerInstance; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/advancements/critereon/EntityFlagsPredicate; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/advancements/critereon/EntityFlagsPredicate$Builder; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/advancements/critereon/EntityEquipmentPredicate; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/advancements/critereon/EntityEquipmentPredicate$Builder; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/advancements/critereon/EnterBlockTrigger; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/advancements/critereon/EnterBlockTrigger$TriggerInstance; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/advancements/critereon/EnchantmentPredicate; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/advancements/critereon/EnchantedItemTrigger; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/advancements/critereon/EnchantedItemTrigger$TriggerInstance; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/advancements/critereon/EffectsChangedTrigger; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/advancements/critereon/EffectsChangedTrigger$TriggerInstance; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/advancements/critereon/DistanceTrigger; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/advancements/critereon/DistanceTrigger$TriggerInstance; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/advancements/critereon/DistancePredicate; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/advancements/critereon/DeserializationContext; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/advancements/critereon/DamageSourcePredicate; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/advancements/critereon/DamageSourcePredicate$Builder; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/advancements/critereon/DamagePredicate; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/advancements/critereon/DamagePredicate$Builder; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/advancements/critereon/CuredZombieVillagerTrigger; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/advancements/critereon/CuredZombieVillagerTrigger$TriggerInstance; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/advancements/critereon/ContextAwarePredicate; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/advancements/critereon/ConsumeItemTrigger; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/advancements/critereon/ConsumeItemTrigger$TriggerInstance; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/advancements/critereon/ConstructBeaconTrigger; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/advancements/critereon/ConstructBeaconTrigger$TriggerInstance; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/advancements/critereon/ChanneledLightningTrigger; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/advancements/critereon/ChanneledLightningTrigger$TriggerInstance; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/advancements/critereon/ChangeDimensionTrigger; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/advancements/critereon/ChangeDimensionTrigger$TriggerInstance; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/advancements/critereon/BrewedPotionTrigger; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/advancements/critereon/BrewedPotionTrigger$TriggerInstance; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/advancements/critereon/BredAnimalsTrigger; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/advancements/critereon/BredAnimalsTrigger$TriggerInstance; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/advancements/critereon/BlockPredicate; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/advancements/critereon/BlockPredicate$Builder; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/advancements/critereon/BeeNestDestroyedTrigger; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/advancements/critereon/BeeNestDestroyedTrigger$TriggerInstance; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/advancements/critereon/AbstractCriterionTriggerInstance; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/advancements/critereon/ItemPredicate; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/advancements/critereon/ItemPredicate$Builder; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/advancements/TreeNodePosition; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/advancements/RequirementsStrategy; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/advancements/FrameType; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/advancements/DisplayInfo; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/advancements/CriterionTriggerInstance; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/advancements/CriterionTrigger; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/advancements/CriterionTrigger$Listener; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/advancements/CriterionProgress; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/advancements/Criterion; +[13:03:46] [main/DEBUG]: Transforming class Lnet/minecraft/advancements/CriteriaTriggers; +[13:03:46] [main/DEBUG]: Transforming net/minecraft/advancements/CriteriaTriggers METHOD m_10595_(Lnet/minecraft/advancements/CriterionTrigger;)Lnet/minecraft/advancements/CriterionTrigger; to access PUBLIC and LEAVE +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/advancements/AdvancementProgress; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/advancements/AdvancementProgress$Serializer; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/advancements/AdvancementList; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/advancements/AdvancementList$Listener; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/advancements/AdvancementRewards; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/advancements/AdvancementRewards$Builder; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/advancements/Advancement; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/advancements/Advancement$Builder; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/WorldVersion; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/SystemReport; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/ResourceLocationException; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/ReportedException; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/Optionull; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/MethodsReturnNonnullByDefault; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/FileUtil; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/FieldsAreNonnullByDefault; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/DetectedVersion; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/DefaultUncaughtExceptionHandlerWithName; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/DefaultUncaughtExceptionHandler; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/CrashReportDetail; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/ChatFormatting; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/CharPredicate; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/BlockUtil; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/BlockUtil$IntBounds; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/BlockUtil$FoundRectangle; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/Util$4; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/Util$3; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/Util; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/Util$OS; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/Util$OS$2; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/Util$OS$1; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/Util$IdentityStrategy; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/Util$9; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/Util$8; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/Util$7; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/Util$6; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/Util$5; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/Util$2; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/Util$11; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/Util$10; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/Util$1; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/SharedConstants; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/CrashReportCategory; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/CrashReportCategory$Entry; +[13:03:46] [main/DEBUG]: Skipping Lnet/minecraft/CrashReport; +[13:03:46] [main/DEBUG]: Skipping Lcom/mojang/realmsclient/util/task/package-info; +[13:03:46] [main/DEBUG]: Skipping Lcom/mojang/realmsclient/util/task/WorldCreationTask; +[13:03:46] [main/DEBUG]: Skipping Lcom/mojang/realmsclient/util/task/SwitchSlotTask; +[13:03:46] [main/DEBUG]: Skipping Lcom/mojang/realmsclient/util/task/SwitchMinigameTask; +[13:03:46] [main/DEBUG]: Skipping Lcom/mojang/realmsclient/util/task/RestoreTask; +[13:03:46] [main/DEBUG]: Skipping Lcom/mojang/realmsclient/util/task/ResettingWorldTask; +[13:03:46] [main/DEBUG]: Skipping Lcom/mojang/realmsclient/util/task/ResettingTemplateWorldTask; +[13:03:46] [main/DEBUG]: Skipping Lcom/mojang/realmsclient/util/task/ResettingGeneratedWorldTask; +[13:03:46] [main/DEBUG]: Skipping Lcom/mojang/realmsclient/util/task/OpenServerTask; +[13:03:46] [main/DEBUG]: Skipping Lcom/mojang/realmsclient/util/task/LongRunningTask; +[13:03:46] [main/DEBUG]: Skipping Lcom/mojang/realmsclient/util/task/GetServerDetailsTask; +[13:03:46] [main/DEBUG]: Skipping Lcom/mojang/realmsclient/util/task/DownloadTask; +[13:03:46] [main/DEBUG]: Skipping Lcom/mojang/realmsclient/util/task/ConnectTask; +[13:03:46] [main/DEBUG]: Skipping Lcom/mojang/realmsclient/util/task/CloseServerTask; +[13:03:46] [main/DEBUG]: Skipping Lcom/mojang/realmsclient/util/package-info; +[13:03:46] [main/DEBUG]: Skipping Lcom/mojang/realmsclient/util/WorldGenerationInfo; +[13:03:46] [main/DEBUG]: Skipping Lcom/mojang/realmsclient/util/UploadTokenCache; +[13:03:46] [main/DEBUG]: Skipping Lcom/mojang/realmsclient/util/TextRenderingUtils; +[13:03:46] [main/DEBUG]: Skipping Lcom/mojang/realmsclient/util/TextRenderingUtils$LineSegment; +[13:03:46] [main/DEBUG]: Skipping Lcom/mojang/realmsclient/util/TextRenderingUtils$Line; +[13:03:46] [main/DEBUG]: Skipping Lcom/mojang/realmsclient/util/RealmsUtil; +[13:03:46] [main/DEBUG]: Skipping Lcom/mojang/realmsclient/util/RealmsUtil$1; +[13:03:46] [main/DEBUG]: Skipping Lcom/mojang/realmsclient/util/RealmsTextureManager; +[13:03:46] [main/DEBUG]: Skipping Lcom/mojang/realmsclient/util/RealmsTextureManager$RealmsTexture; +[13:03:46] [main/DEBUG]: Skipping Lcom/mojang/realmsclient/util/RealmsPersistence; +[13:03:46] [main/DEBUG]: Skipping Lcom/mojang/realmsclient/util/RealmsPersistence$RealmsPersistenceData; +[13:03:46] [main/DEBUG]: Skipping Lcom/mojang/realmsclient/util/LevelType; +[13:03:46] [main/DEBUG]: Skipping Lcom/mojang/realmsclient/util/JsonUtils; +[13:03:46] [main/DEBUG]: Skipping Lcom/mojang/realmsclient/package-info; +[13:03:46] [main/DEBUG]: Skipping Lcom/mojang/realmsclient/gui/task/package-info; +[13:03:46] [main/DEBUG]: Skipping Lcom/mojang/realmsclient/gui/task/RepeatedDelayStrategy; +[13:03:46] [main/DEBUG]: Skipping Lcom/mojang/realmsclient/gui/task/RepeatedDelayStrategy$2; +[13:03:46] [main/DEBUG]: Skipping Lcom/mojang/realmsclient/gui/task/RepeatedDelayStrategy$1; +[13:03:46] [main/DEBUG]: Skipping Lcom/mojang/realmsclient/gui/task/DataFetcher; +[13:03:46] [main/DEBUG]: Skipping Lcom/mojang/realmsclient/gui/task/DataFetcher$Task; +[13:03:46] [main/DEBUG]: Skipping Lcom/mojang/realmsclient/gui/task/DataFetcher$SuccessfulComputationResult; +[13:03:46] [main/DEBUG]: Skipping Lcom/mojang/realmsclient/gui/task/DataFetcher$Subscription; +[13:03:46] [main/DEBUG]: Skipping Lcom/mojang/realmsclient/gui/task/DataFetcher$SubscribedTask; +[13:03:46] [main/DEBUG]: Skipping Lcom/mojang/realmsclient/gui/task/DataFetcher$ComputationResult; +[13:03:46] [main/DEBUG]: Skipping Lcom/mojang/realmsclient/gui/screens/package-info; +[13:03:46] [main/DEBUG]: Skipping Lcom/mojang/realmsclient/gui/screens/UploadResult; +[13:03:46] [main/DEBUG]: Skipping Lcom/mojang/realmsclient/gui/screens/UploadResult$Builder; +[13:03:46] [main/DEBUG]: Skipping Lcom/mojang/realmsclient/gui/screens/RealmsUploadScreen; +[13:03:46] [main/DEBUG]: Skipping Lcom/mojang/realmsclient/gui/screens/RealmsTermsScreen; +[13:03:46] [main/DEBUG]: Skipping Lcom/mojang/realmsclient/gui/screens/RealmsSubscriptionInfoScreen; +[13:03:46] [main/DEBUG]: Skipping Lcom/mojang/realmsclient/gui/screens/RealmsSubscriptionInfoScreen$1; +[13:03:46] [main/DEBUG]: Skipping Lcom/mojang/realmsclient/gui/screens/RealmsSlotOptionsScreen; +[13:03:46] [main/DEBUG]: Skipping Lcom/mojang/realmsclient/gui/screens/RealmsSlotOptionsScreen$SettingsSlider; +[13:03:46] [main/DEBUG]: Skipping Lcom/mojang/realmsclient/gui/screens/RealmsSettingsScreen; +[13:03:46] [main/DEBUG]: Skipping Lcom/mojang/realmsclient/gui/screens/RealmsSelectWorldTemplateScreen; +[13:03:46] [main/DEBUG]: Skipping Lcom/mojang/realmsclient/gui/screens/RealmsSelectWorldTemplateScreen$WorldTemplateObjectSelectionList; +[13:03:46] [main/DEBUG]: Skipping Lcom/mojang/realmsclient/gui/screens/RealmsSelectWorldTemplateScreen$Entry; +[13:03:46] [main/DEBUG]: Skipping Lcom/mojang/realmsclient/gui/screens/RealmsSelectWorldTemplateScreen$1; +[13:03:46] [main/DEBUG]: Skipping Lcom/mojang/realmsclient/gui/screens/RealmsSelectFileToUploadScreen; +[13:03:46] [main/DEBUG]: Skipping Lcom/mojang/realmsclient/gui/screens/RealmsSelectFileToUploadScreen$WorldSelectionList; +[13:03:46] [main/DEBUG]: Skipping Lcom/mojang/realmsclient/gui/screens/RealmsSelectFileToUploadScreen$Entry; +[13:03:46] [main/DEBUG]: Skipping Lcom/mojang/realmsclient/gui/screens/RealmsResetWorldScreen; +[13:03:46] [main/DEBUG]: Skipping Lcom/mojang/realmsclient/gui/screens/RealmsResetWorldScreen$FrameButton; +[13:03:46] [main/DEBUG]: Skipping Lcom/mojang/realmsclient/gui/screens/RealmsResetWorldScreen$1; +[13:03:46] [main/DEBUG]: Skipping Lcom/mojang/realmsclient/gui/screens/RealmsResetNormalWorldScreen; +[13:03:46] [main/DEBUG]: Skipping Lcom/mojang/realmsclient/gui/screens/RealmsPlayerScreen; +[13:03:46] [main/DEBUG]: Skipping Lcom/mojang/realmsclient/gui/screens/RealmsPlayerScreen$InvitedObjectSelectionList; +[13:03:46] [main/DEBUG]: Skipping Lcom/mojang/realmsclient/gui/screens/RealmsPlayerScreen$Entry; +[13:03:46] [main/DEBUG]: Skipping Lcom/mojang/realmsclient/gui/screens/RealmsPendingInvitesScreen; +[13:03:46] [main/DEBUG]: Skipping Lcom/mojang/realmsclient/gui/screens/RealmsPendingInvitesScreen$PendingInvitationSelectionList; +[13:03:46] [main/DEBUG]: Skipping Lcom/mojang/realmsclient/gui/screens/RealmsPendingInvitesScreen$Entry; +[13:03:46] [main/DEBUG]: Skipping Lcom/mojang/realmsclient/gui/screens/RealmsPendingInvitesScreen$Entry$RejectRowButton; +[13:03:46] [main/DEBUG]: Skipping Lcom/mojang/realmsclient/gui/screens/RealmsPendingInvitesScreen$Entry$AcceptRowButton; +[13:03:46] [main/DEBUG]: Skipping Lcom/mojang/realmsclient/gui/screens/RealmsPendingInvitesScreen$3; +[13:03:46] [main/DEBUG]: Skipping Lcom/mojang/realmsclient/gui/screens/RealmsPendingInvitesScreen$2; +[13:03:46] [main/DEBUG]: Skipping Lcom/mojang/realmsclient/gui/screens/RealmsPendingInvitesScreen$1; +[13:03:46] [main/DEBUG]: Skipping Lcom/mojang/realmsclient/gui/screens/RealmsParentalConsentScreen; +[13:03:46] [main/DEBUG]: Skipping Lcom/mojang/realmsclient/gui/screens/RealmsLongRunningMcoTaskScreen; +[13:03:46] [main/DEBUG]: Skipping Lcom/mojang/realmsclient/gui/screens/RealmsLongConfirmationScreen; +[13:03:46] [main/DEBUG]: Skipping Lcom/mojang/realmsclient/gui/screens/RealmsLongConfirmationScreen$Type; +[13:03:46] [main/DEBUG]: Skipping Lcom/mojang/realmsclient/gui/screens/RealmsInviteScreen; +[13:03:46] [main/DEBUG]: Skipping Lcom/mojang/realmsclient/gui/screens/RealmsDownloadLatestWorldScreen; +[13:03:46] [main/DEBUG]: Skipping Lcom/mojang/realmsclient/gui/screens/RealmsDownloadLatestWorldScreen$DownloadStatus; +[13:03:46] [main/DEBUG]: Skipping Lcom/mojang/realmsclient/gui/screens/RealmsCreateRealmScreen; +[13:03:46] [main/DEBUG]: Skipping Lcom/mojang/realmsclient/gui/screens/RealmsConfirmScreen; +[13:03:46] [main/DEBUG]: Skipping Lcom/mojang/realmsclient/gui/screens/RealmsConfigureWorldScreen; +[13:03:46] [main/DEBUG]: Skipping Lcom/mojang/realmsclient/gui/screens/RealmsConfigureWorldScreen$1; +[13:03:46] [main/DEBUG]: Skipping Lcom/mojang/realmsclient/gui/screens/RealmsClientOutdatedScreen; +[13:03:46] [main/DEBUG]: Skipping Lcom/mojang/realmsclient/gui/screens/RealmsBrokenWorldScreen; +[13:03:46] [main/DEBUG]: Skipping Lcom/mojang/realmsclient/gui/screens/RealmsBackupScreen; +[13:03:46] [main/DEBUG]: Skipping Lcom/mojang/realmsclient/gui/screens/RealmsBackupScreen$Entry; +[13:03:46] [main/DEBUG]: Skipping Lcom/mojang/realmsclient/gui/screens/RealmsBackupScreen$BackupObjectSelectionList; +[13:03:46] [main/DEBUG]: Skipping Lcom/mojang/realmsclient/gui/screens/RealmsBackupScreen$1; +[13:03:46] [main/DEBUG]: Skipping Lcom/mojang/realmsclient/gui/screens/RealmsBackupInfoScreen; +[13:03:46] [main/DEBUG]: Skipping Lcom/mojang/realmsclient/gui/screens/RealmsBackupInfoScreen$BackupInfoListEntry; +[13:03:46] [main/DEBUG]: Skipping Lcom/mojang/realmsclient/gui/screens/RealmsBackupInfoScreen$BackupInfoList; +[13:03:46] [main/DEBUG]: Skipping Lcom/mojang/realmsclient/gui/screens/RealmsNotificationsScreen; +[13:03:46] [main/DEBUG]: Skipping Lcom/mojang/realmsclient/gui/screens/RealmsNotificationsScreen$DataFetcherConfiguration; +[13:03:46] [main/DEBUG]: Skipping Lcom/mojang/realmsclient/gui/screens/RealmsNotificationsScreen$3; +[13:03:46] [main/DEBUG]: Skipping Lcom/mojang/realmsclient/gui/screens/RealmsNotificationsScreen$2; +[13:03:46] [main/DEBUG]: Skipping Lcom/mojang/realmsclient/gui/screens/RealmsNotificationsScreen$1; +[13:03:46] [main/DEBUG]: Skipping Lcom/mojang/realmsclient/gui/screens/RealmsGenericErrorScreen; +[13:03:46] [main/DEBUG]: Skipping Lcom/mojang/realmsclient/gui/screens/RealmsGenericErrorScreen$ErrorMessage; +[13:03:46] [main/DEBUG]: Skipping Lcom/mojang/realmsclient/gui/package-info; +[13:03:46] [main/DEBUG]: Skipping Lcom/mojang/realmsclient/gui/RowButton; +[13:03:46] [main/DEBUG]: Skipping Lcom/mojang/realmsclient/gui/RealmsWorldSlotButton; +[13:03:46] [main/DEBUG]: Skipping Lcom/mojang/realmsclient/gui/RealmsWorldSlotButton$State; +[13:03:46] [main/DEBUG]: Skipping Lcom/mojang/realmsclient/gui/RealmsWorldSlotButton$Action; +[13:03:46] [main/DEBUG]: Skipping Lcom/mojang/realmsclient/gui/RealmsServerList; +[13:03:46] [main/DEBUG]: Skipping Lcom/mojang/realmsclient/gui/RealmsNewsManager; +[13:03:46] [main/DEBUG]: Skipping Lcom/mojang/realmsclient/gui/RealmsDataFetcher; +[13:03:46] [main/DEBUG]: Skipping Lcom/mojang/realmsclient/gui/ErrorCallback; +[13:03:46] [main/DEBUG]: Skipping Lcom/mojang/realmsclient/exception/package-info; +[13:03:46] [main/DEBUG]: Skipping Lcom/mojang/realmsclient/exception/RetryCallException; +[13:03:46] [main/DEBUG]: Skipping Lcom/mojang/realmsclient/exception/RealmsServiceException; +[13:03:46] [main/DEBUG]: Skipping Lcom/mojang/realmsclient/exception/RealmsHttpException; +[13:03:46] [main/DEBUG]: Skipping Lcom/mojang/realmsclient/exception/RealmsDefaultUncaughtExceptionHandler; +[13:03:46] [main/DEBUG]: Skipping Lcom/mojang/realmsclient/dto/package-info; +[13:03:46] [main/DEBUG]: Skipping Lcom/mojang/realmsclient/dto/WorldTemplatePaginatedList; +[13:03:46] [main/DEBUG]: Skipping Lcom/mojang/realmsclient/dto/WorldTemplate; +[13:03:46] [main/DEBUG]: Skipping Lcom/mojang/realmsclient/dto/WorldTemplate$WorldTemplateType; +[13:03:46] [main/DEBUG]: Skipping Lcom/mojang/realmsclient/dto/WorldDownload; +[13:03:46] [main/DEBUG]: Skipping Lcom/mojang/realmsclient/dto/ValueObject; +[13:03:46] [main/DEBUG]: Skipping Lcom/mojang/realmsclient/dto/UploadInfo; +[13:03:46] [main/DEBUG]: Skipping Lcom/mojang/realmsclient/dto/Subscription; +[13:03:46] [main/DEBUG]: Skipping Lcom/mojang/realmsclient/dto/Subscription$SubscriptionType; +[13:03:46] [main/DEBUG]: Skipping Lcom/mojang/realmsclient/dto/ServerActivityList; +[13:03:46] [main/DEBUG]: Skipping Lcom/mojang/realmsclient/dto/ServerActivity; +[13:03:46] [main/DEBUG]: Skipping Lcom/mojang/realmsclient/dto/RegionPingResult; +[13:03:46] [main/DEBUG]: Skipping Lcom/mojang/realmsclient/dto/ReflectionBasedSerialization; +[13:03:46] [main/DEBUG]: Skipping Lcom/mojang/realmsclient/dto/RealmsWorldResetDto; +[13:03:46] [main/DEBUG]: Skipping Lcom/mojang/realmsclient/dto/RealmsWorldOptions; +[13:03:46] [main/DEBUG]: Skipping Lcom/mojang/realmsclient/dto/RealmsText; +[13:03:46] [main/DEBUG]: Skipping Lcom/mojang/realmsclient/dto/RealmsServerPlayerLists; +[13:03:46] [main/DEBUG]: Skipping Lcom/mojang/realmsclient/dto/RealmsServerPlayerList; +[13:03:46] [main/DEBUG]: Skipping Lcom/mojang/realmsclient/dto/RealmsServerPing; +[13:03:46] [main/DEBUG]: Skipping Lcom/mojang/realmsclient/dto/RealmsServerList; +[13:03:46] [main/DEBUG]: Skipping Lcom/mojang/realmsclient/dto/RealmsServerAddress; +[13:03:46] [main/DEBUG]: Skipping Lcom/mojang/realmsclient/dto/RealmsServer; +[13:03:46] [main/DEBUG]: Skipping Lcom/mojang/realmsclient/dto/RealmsServer$WorldType; +[13:03:46] [main/DEBUG]: Skipping Lcom/mojang/realmsclient/dto/RealmsServer$State; +[13:03:46] [main/DEBUG]: Skipping Lcom/mojang/realmsclient/dto/RealmsServer$McoServerComparator; +[13:03:46] [main/DEBUG]: Skipping Lcom/mojang/realmsclient/dto/RealmsNotification; +[13:03:46] [main/DEBUG]: Skipping Lcom/mojang/realmsclient/dto/RealmsNotification$VisitUrl; +[13:03:46] [main/DEBUG]: Skipping Lcom/mojang/realmsclient/dto/RealmsNews; +[13:03:46] [main/DEBUG]: Skipping Lcom/mojang/realmsclient/dto/RealmsDescriptionDto; +[13:03:46] [main/DEBUG]: Skipping Lcom/mojang/realmsclient/dto/PlayerInfo; +[13:03:46] [main/DEBUG]: Skipping Lcom/mojang/realmsclient/dto/PingResult; +[13:03:46] [main/DEBUG]: Skipping Lcom/mojang/realmsclient/dto/PendingInvitesList; +[13:03:46] [main/DEBUG]: Skipping Lcom/mojang/realmsclient/dto/PendingInvite; +[13:03:46] [main/DEBUG]: Skipping Lcom/mojang/realmsclient/dto/Ops; +[13:03:46] [main/DEBUG]: Skipping Lcom/mojang/realmsclient/dto/GuardedSerializer; +[13:03:46] [main/DEBUG]: Skipping Lcom/mojang/realmsclient/dto/BackupList; +[13:03:46] [main/DEBUG]: Skipping Lcom/mojang/realmsclient/dto/Backup; +[13:03:46] [main/DEBUG]: Skipping Lcom/mojang/realmsclient/client/package-info; +[13:03:46] [main/DEBUG]: Skipping Lcom/mojang/realmsclient/client/UploadStatus; +[13:03:46] [main/DEBUG]: Skipping Lcom/mojang/realmsclient/client/Request; +[13:03:46] [main/DEBUG]: Skipping Lcom/mojang/realmsclient/client/Request$Put; +[13:03:46] [main/DEBUG]: Skipping Lcom/mojang/realmsclient/client/Request$Post; +[13:03:46] [main/DEBUG]: Skipping Lcom/mojang/realmsclient/client/Request$Get; +[13:03:46] [main/DEBUG]: Skipping Lcom/mojang/realmsclient/client/Request$Delete; +[13:03:46] [main/DEBUG]: Skipping Lcom/mojang/realmsclient/client/RealmsError; +[13:03:46] [main/DEBUG]: Skipping Lcom/mojang/realmsclient/client/RealmsClientConfig; +[13:03:46] [main/DEBUG]: Skipping Lcom/mojang/realmsclient/client/RealmsClient; +[13:03:46] [main/DEBUG]: Skipping Lcom/mojang/realmsclient/client/RealmsClient$Environment; +[13:03:46] [main/DEBUG]: Skipping Lcom/mojang/realmsclient/client/RealmsClient$CompatibleVersionResponse; +[13:03:46] [main/DEBUG]: Skipping Lcom/mojang/realmsclient/client/Ping; +[13:03:46] [main/DEBUG]: Skipping Lcom/mojang/realmsclient/client/Ping$Region; +[13:03:46] [main/DEBUG]: Skipping Lcom/mojang/realmsclient/client/FileUpload; +[13:03:46] [main/DEBUG]: Skipping Lcom/mojang/realmsclient/client/FileUpload$CustomInputStreamEntity; +[13:03:46] [main/DEBUG]: Skipping Lcom/mojang/realmsclient/client/FileDownload; +[13:03:46] [main/DEBUG]: Skipping Lcom/mojang/realmsclient/client/FileDownload$ResourcePackProgressListener; +[13:03:46] [main/DEBUG]: Skipping Lcom/mojang/realmsclient/client/FileDownload$ProgressListener; +[13:03:46] [main/DEBUG]: Skipping Lcom/mojang/realmsclient/client/FileDownload$DownloadCountingOutputStream; +[13:03:46] [main/DEBUG]: Skipping Lcom/mojang/realmsclient/Unit; +[13:03:46] [main/DEBUG]: Skipping Lcom/mojang/realmsclient/RealmsMainScreen; +[13:03:46] [main/DEBUG]: Skipping Lcom/mojang/realmsclient/RealmsMainScreen$TrialEntry; +[13:03:46] [main/DEBUG]: Skipping Lcom/mojang/realmsclient/RealmsMainScreen$ServerEntry; +[13:03:46] [main/DEBUG]: Skipping Lcom/mojang/realmsclient/RealmsMainScreen$RealmsCall; +[13:03:46] [main/DEBUG]: Skipping Lcom/mojang/realmsclient/RealmsMainScreen$RealmSelectionList; +[13:03:46] [main/DEBUG]: Skipping Lcom/mojang/realmsclient/RealmsMainScreen$PendingInvitesButton; +[13:03:46] [main/DEBUG]: Skipping Lcom/mojang/realmsclient/RealmsMainScreen$NotificationMessageEntry; +[13:03:46] [main/DEBUG]: Skipping Lcom/mojang/realmsclient/RealmsMainScreen$NewsButton; +[13:03:46] [main/DEBUG]: Skipping Lcom/mojang/realmsclient/RealmsMainScreen$Entry; +[13:03:46] [main/DEBUG]: Skipping Lcom/mojang/realmsclient/RealmsMainScreen$CrossButton; +[13:03:46] [main/DEBUG]: Skipping Lcom/mojang/realmsclient/RealmsMainScreen$CloseButton; +[13:03:46] [main/DEBUG]: Skipping Lcom/mojang/realmsclient/RealmsMainScreen$ButtonEntry; +[13:03:46] [main/DEBUG]: Skipping Lcom/mojang/realmsclient/RealmsMainScreen$5; +[13:03:46] [main/DEBUG]: Skipping Lcom/mojang/realmsclient/RealmsMainScreen$4; +[13:03:46] [main/DEBUG]: Skipping Lcom/mojang/realmsclient/RealmsMainScreen$3; +[13:03:46] [main/DEBUG]: Skipping Lcom/mojang/realmsclient/RealmsMainScreen$2; +[13:03:46] [main/DEBUG]: Skipping Lcom/mojang/realmsclient/RealmsMainScreen$1; +[13:03:46] [main/DEBUG]: Skipping Lcom/mojang/realmsclient/KeyCombo; +[13:03:46] [main/DEBUG]: Skipping Lcom/mojang/math/package-info; +[13:03:46] [main/DEBUG]: Skipping Lcom/mojang/math/SymmetricGroup3; +[13:03:46] [main/DEBUG]: Skipping Lcom/mojang/math/OctahedralGroup; +[13:03:46] [main/DEBUG]: Skipping Lcom/mojang/math/OctahedralGroup$1; +[13:03:46] [main/DEBUG]: Skipping Lcom/mojang/math/MethodsReturnNonnullByDefault; +[13:03:46] [main/DEBUG]: Skipping Lcom/mojang/math/MatrixUtil; +[13:03:46] [main/DEBUG]: Skipping Lcom/mojang/math/GivensParameters; +[13:03:46] [main/DEBUG]: Skipping Lcom/mojang/math/FieldsAreNonnullByDefault; +[13:03:46] [main/DEBUG]: Skipping Lcom/mojang/math/Divisor; +[13:03:46] [main/DEBUG]: Skipping Lcom/mojang/math/Constants; +[13:03:46] [main/DEBUG]: Skipping Lcom/mojang/math/Axis; +[13:03:46] [main/DEBUG]: Skipping Lcom/mojang/math/Transformation; +[13:03:46] [main/DEBUG]: Skipping Lcom/mojang/blaze3d/vertex/package-info; +[13:03:46] [main/DEBUG]: Skipping Lcom/mojang/blaze3d/vertex/VertexSorting; +[13:03:46] [main/DEBUG]: Skipping Lcom/mojang/blaze3d/vertex/VertexSorting$DistanceFunction; +[13:03:46] [main/DEBUG]: Skipping Lcom/mojang/blaze3d/vertex/VertexMultiConsumer; +[13:03:46] [main/DEBUG]: Skipping Lcom/mojang/blaze3d/vertex/VertexMultiConsumer$Multiple; +[13:03:46] [main/DEBUG]: Skipping Lcom/mojang/blaze3d/vertex/VertexMultiConsumer$Double; +[13:03:46] [main/DEBUG]: Skipping Lcom/mojang/blaze3d/vertex/VertexBuffer; +[13:03:46] [main/DEBUG]: Skipping Lcom/mojang/blaze3d/vertex/VertexBuffer$Usage; +[13:03:46] [main/DEBUG]: Skipping Lcom/mojang/blaze3d/vertex/Tesselator; +[13:03:46] [main/DEBUG]: Skipping Lcom/mojang/blaze3d/vertex/DefaultedVertexConsumer; +[13:03:46] [main/DEBUG]: Skipping Lcom/mojang/blaze3d/vertex/DefaultVertexFormat; +[13:03:46] [main/DEBUG]: Skipping Lcom/mojang/blaze3d/vertex/BufferVertexConsumer; +[13:03:46] [main/DEBUG]: Skipping Lcom/mojang/blaze3d/vertex/BufferUploader; +[13:03:46] [main/DEBUG]: Skipping Lcom/mojang/blaze3d/vertex/VertexFormatElement; +[13:03:46] [main/DEBUG]: Skipping Lcom/mojang/blaze3d/vertex/VertexFormatElement$Usage; +[13:03:46] [main/DEBUG]: Skipping Lcom/mojang/blaze3d/vertex/VertexFormatElement$Usage$SetupState; +[13:03:46] [main/DEBUG]: Skipping Lcom/mojang/blaze3d/vertex/VertexFormatElement$Usage$ClearState; +[13:03:46] [main/DEBUG]: Skipping Lcom/mojang/blaze3d/vertex/VertexFormatElement$Type; +[13:03:46] [main/DEBUG]: Skipping Lcom/mojang/blaze3d/vertex/VertexFormat; +[13:03:46] [main/DEBUG]: Skipping Lcom/mojang/blaze3d/vertex/VertexFormat$Mode; +[13:03:46] [main/DEBUG]: Skipping Lcom/mojang/blaze3d/vertex/VertexFormat$IndexType; +[13:03:46] [main/DEBUG]: Skipping Lcom/mojang/blaze3d/vertex/VertexFormat$1; +[13:03:46] [main/DEBUG]: Skipping Lcom/mojang/blaze3d/vertex/VertexConsumer; +[13:03:46] [main/DEBUG]: Skipping Lcom/mojang/blaze3d/vertex/SheetedDecalTextureGenerator; +[13:03:46] [main/DEBUG]: Skipping Lcom/mojang/blaze3d/vertex/PoseStack; +[13:03:46] [main/DEBUG]: Skipping Lcom/mojang/blaze3d/vertex/PoseStack$Pose; +[13:03:46] [main/DEBUG]: Skipping Lcom/mojang/blaze3d/vertex/BufferBuilder; +[13:03:46] [main/DEBUG]: Skipping Lcom/mojang/blaze3d/vertex/BufferBuilder$SortState; +[13:03:46] [main/DEBUG]: Skipping Lcom/mojang/blaze3d/vertex/BufferBuilder$RenderedBuffer; +[13:03:46] [main/DEBUG]: Skipping Lcom/mojang/blaze3d/vertex/BufferBuilder$DrawState; +[13:03:46] [main/DEBUG]: Skipping Lcom/mojang/blaze3d/vertex/BufferBuilder$1; +[13:03:46] [main/DEBUG]: Skipping Lcom/mojang/blaze3d/systems/package-info; +[13:03:46] [main/DEBUG]: Skipping Lcom/mojang/blaze3d/systems/TimerQuery; +[13:03:46] [main/DEBUG]: Skipping Lcom/mojang/blaze3d/systems/TimerQuery$TimerQueryLazyLoader; +[13:03:46] [main/DEBUG]: Skipping Lcom/mojang/blaze3d/systems/TimerQuery$FrameProfile; +[13:03:46] [main/DEBUG]: Skipping Lcom/mojang/blaze3d/systems/RenderSystem; +[13:03:46] [main/DEBUG]: Skipping Lcom/mojang/blaze3d/systems/RenderSystem$AutoStorageIndexBuffer; +[13:03:46] [main/DEBUG]: Skipping Lcom/mojang/blaze3d/systems/RenderSystem$AutoStorageIndexBuffer$IndexGenerator; +[13:03:46] [main/DEBUG]: Skipping Lcom/mojang/blaze3d/systems/RenderSystem$1; +[13:03:46] [main/DEBUG]: Skipping Lcom/mojang/blaze3d/shaders/package-info; +[13:03:46] [main/DEBUG]: Skipping Lcom/mojang/blaze3d/shaders/Uniform; +[13:03:46] [main/DEBUG]: Skipping Lcom/mojang/blaze3d/shaders/Shader; +[13:03:46] [main/DEBUG]: Skipping Lcom/mojang/blaze3d/shaders/ProgramManager; +[13:03:46] [main/DEBUG]: Skipping Lcom/mojang/blaze3d/shaders/Program; +[13:03:46] [main/DEBUG]: Skipping Lcom/mojang/blaze3d/shaders/Program$Type; +[13:03:46] [main/DEBUG]: Skipping Lcom/mojang/blaze3d/shaders/FogShape; +[13:03:46] [main/DEBUG]: Skipping Lcom/mojang/blaze3d/shaders/EffectProgram; +[13:03:46] [main/DEBUG]: Skipping Lcom/mojang/blaze3d/shaders/EffectProgram$1; +[13:03:46] [main/DEBUG]: Skipping Lcom/mojang/blaze3d/shaders/Effect; +[13:03:46] [main/DEBUG]: Skipping Lcom/mojang/blaze3d/shaders/BlendMode; +[13:03:46] [main/DEBUG]: Skipping Lcom/mojang/blaze3d/shaders/AbstractUniform; +[13:03:46] [main/DEBUG]: Skipping Lcom/mojang/blaze3d/preprocessor/package-info; +[13:03:46] [main/DEBUG]: Skipping Lcom/mojang/blaze3d/preprocessor/GlslPreprocessor; +[13:03:46] [main/DEBUG]: Skipping Lcom/mojang/blaze3d/preprocessor/GlslPreprocessor$Context; +[13:03:46] [main/DEBUG]: Skipping Lcom/mojang/blaze3d/platform/package-info; +[13:03:46] [main/DEBUG]: Skipping Lcom/mojang/blaze3d/platform/WindowEventHandler; +[13:03:46] [main/DEBUG]: Skipping Lcom/mojang/blaze3d/platform/VideoMode; +[13:03:46] [main/DEBUG]: Skipping Lcom/mojang/blaze3d/platform/TextureUtil; +[13:03:46] [main/DEBUG]: Skipping Lcom/mojang/blaze3d/platform/ScreenManager; +[13:03:46] [main/DEBUG]: Skipping Lcom/mojang/blaze3d/platform/NativeImage; +[13:03:46] [main/DEBUG]: Skipping Lcom/mojang/blaze3d/platform/NativeImage$WriteCallback; +[13:03:46] [main/DEBUG]: Skipping Lcom/mojang/blaze3d/platform/NativeImage$InternalGlFormat; +[13:03:46] [main/DEBUG]: Skipping Lcom/mojang/blaze3d/platform/NativeImage$Format; +[13:03:46] [main/DEBUG]: Skipping Lcom/mojang/blaze3d/platform/MonitorCreator; +[13:03:46] [main/DEBUG]: Skipping Lcom/mojang/blaze3d/platform/Monitor; +[13:03:46] [main/DEBUG]: Skipping Lcom/mojang/blaze3d/platform/MemoryTracker; +[13:03:46] [main/DEBUG]: Skipping Lcom/mojang/blaze3d/platform/MacosUtil; +[13:03:46] [main/DEBUG]: Skipping Lcom/mojang/blaze3d/platform/Lighting; +[13:03:46] [main/DEBUG]: Skipping Lcom/mojang/blaze3d/platform/InputConstants; +[13:03:46] [main/DEBUG]: Skipping Lcom/mojang/blaze3d/platform/InputConstants$Type; +[13:03:46] [main/DEBUG]: Skipping Lcom/mojang/blaze3d/platform/InputConstants$Key; +[13:03:46] [main/DEBUG]: Skipping Lcom/mojang/blaze3d/platform/IconSet; +[13:03:46] [main/DEBUG]: Skipping Lcom/mojang/blaze3d/platform/GlUtil; +[13:03:46] [main/DEBUG]: Skipping Lcom/mojang/blaze3d/platform/GlDebug; +[13:03:46] [main/DEBUG]: Skipping Lcom/mojang/blaze3d/platform/GlDebug$LogEntry; +[13:03:46] [main/DEBUG]: Skipping Lcom/mojang/blaze3d/platform/GlConst; +[13:03:46] [main/DEBUG]: Skipping Lcom/mojang/blaze3d/platform/GLX; +[13:03:46] [main/DEBUG]: Skipping Lcom/mojang/blaze3d/platform/DisplayData; +[13:03:46] [main/DEBUG]: Skipping Lcom/mojang/blaze3d/platform/DebugMemoryUntracker; +[13:03:46] [main/DEBUG]: Skipping Lcom/mojang/blaze3d/platform/ClipboardManager; +[13:03:46] [main/DEBUG]: Skipping Lcom/mojang/blaze3d/platform/Window; +[13:03:46] [main/DEBUG]: Skipping Lcom/mojang/blaze3d/platform/Window$WindowInitFailed; +[13:03:46] [main/DEBUG]: Skipping Lcom/mojang/blaze3d/platform/GlStateManager; +[13:03:46] [main/DEBUG]: Skipping Lcom/mojang/blaze3d/platform/GlStateManager$Viewport; +[13:03:46] [main/DEBUG]: Skipping Lcom/mojang/blaze3d/platform/GlStateManager$TextureState; +[13:03:46] [main/DEBUG]: Skipping Lcom/mojang/blaze3d/platform/GlStateManager$StencilState; +[13:03:46] [main/DEBUG]: Skipping Lcom/mojang/blaze3d/platform/GlStateManager$StencilFunc; +[13:03:46] [main/DEBUG]: Skipping Lcom/mojang/blaze3d/platform/GlStateManager$SourceFactor; +[13:03:46] [main/DEBUG]: Skipping Lcom/mojang/blaze3d/platform/GlStateManager$ScissorState; +[13:03:46] [main/DEBUG]: Skipping Lcom/mojang/blaze3d/platform/GlStateManager$PolygonOffsetState; +[13:03:46] [main/DEBUG]: Skipping Lcom/mojang/blaze3d/platform/GlStateManager$LogicOp; +[13:03:46] [main/DEBUG]: Skipping Lcom/mojang/blaze3d/platform/GlStateManager$DestFactor; +[13:03:46] [main/DEBUG]: Skipping Lcom/mojang/blaze3d/platform/GlStateManager$DepthState; +[13:03:46] [main/DEBUG]: Skipping Lcom/mojang/blaze3d/platform/GlStateManager$CullState; +[13:03:46] [main/DEBUG]: Skipping Lcom/mojang/blaze3d/platform/GlStateManager$ColorMask; +[13:03:46] [main/DEBUG]: Skipping Lcom/mojang/blaze3d/platform/GlStateManager$ColorLogicState; +[13:03:46] [main/DEBUG]: Skipping Lcom/mojang/blaze3d/platform/GlStateManager$BooleanState; +[13:03:46] [main/DEBUG]: Skipping Lcom/mojang/blaze3d/platform/GlStateManager$BlendState; +[13:03:46] [main/DEBUG]: Skipping Lcom/mojang/blaze3d/pipeline/package-info; +[13:03:46] [main/DEBUG]: Skipping Lcom/mojang/blaze3d/pipeline/TextureTarget; +[13:03:46] [main/DEBUG]: Skipping Lcom/mojang/blaze3d/pipeline/RenderPipeline; +[13:03:46] [main/DEBUG]: Skipping Lcom/mojang/blaze3d/pipeline/RenderCall; +[13:03:46] [main/DEBUG]: Skipping Lcom/mojang/blaze3d/pipeline/MainTarget; +[13:03:46] [main/DEBUG]: Skipping Lcom/mojang/blaze3d/pipeline/MainTarget$Dimension; +[13:03:46] [main/DEBUG]: Skipping Lcom/mojang/blaze3d/pipeline/MainTarget$AttachmentState; +[13:03:46] [main/DEBUG]: Skipping Lcom/mojang/blaze3d/pipeline/RenderTarget; +[13:03:46] [main/DEBUG]: Skipping Lcom/mojang/blaze3d/package-info; +[13:03:46] [main/DEBUG]: Skipping Lcom/mojang/blaze3d/font/package-info; +[13:03:46] [main/DEBUG]: Skipping Lcom/mojang/blaze3d/font/TrueTypeGlyphProvider; +[13:03:46] [main/DEBUG]: Skipping Lcom/mojang/blaze3d/font/TrueTypeGlyphProvider$Glyph; +[13:03:46] [main/DEBUG]: Skipping Lcom/mojang/blaze3d/font/TrueTypeGlyphProvider$Glyph$1; +[13:03:46] [main/DEBUG]: Skipping Lcom/mojang/blaze3d/font/SpaceProvider; +[13:03:46] [main/DEBUG]: Skipping Lcom/mojang/blaze3d/font/SpaceProvider$Definition; +[13:03:46] [main/DEBUG]: Skipping Lcom/mojang/blaze3d/font/SheetGlyphInfo; +[13:03:46] [main/DEBUG]: Skipping Lcom/mojang/blaze3d/font/GlyphProvider; +[13:03:46] [main/DEBUG]: Skipping Lcom/mojang/blaze3d/font/GlyphInfo; +[13:03:46] [main/DEBUG]: Skipping Lcom/mojang/blaze3d/font/GlyphInfo$SpaceGlyphInfo; +[13:03:46] [main/DEBUG]: Skipping Lcom/mojang/blaze3d/audio/package-info; +[13:03:46] [main/DEBUG]: Skipping Lcom/mojang/blaze3d/audio/SoundBuffer; +[13:03:46] [main/DEBUG]: Skipping Lcom/mojang/blaze3d/audio/OpenAlUtil; +[13:03:46] [main/DEBUG]: Skipping Lcom/mojang/blaze3d/audio/OggAudioStream; +[13:03:46] [main/DEBUG]: Skipping Lcom/mojang/blaze3d/audio/OggAudioStream$OutputConcat; +[13:03:46] [main/DEBUG]: Skipping Lcom/mojang/blaze3d/audio/Listener; +[13:03:46] [main/DEBUG]: Skipping Lcom/mojang/blaze3d/audio/Library; +[13:03:46] [main/DEBUG]: Skipping Lcom/mojang/blaze3d/audio/Library$Pool; +[13:03:46] [main/DEBUG]: Skipping Lcom/mojang/blaze3d/audio/Library$CountingChannelPool; +[13:03:46] [main/DEBUG]: Skipping Lcom/mojang/blaze3d/audio/Library$ChannelPool; +[13:03:46] [main/DEBUG]: Skipping Lcom/mojang/blaze3d/audio/Library$1; +[13:03:46] [main/DEBUG]: Skipping Lcom/mojang/blaze3d/audio/Channel; +[13:03:46] [main/DEBUG]: Skipping Lcom/mojang/blaze3d/MethodsReturnNonnullByDefault; +[13:03:46] [main/DEBUG]: Skipping Lcom/mojang/blaze3d/FieldsAreNonnullByDefault; +[13:03:46] [main/DEBUG]: Skipping Lcom/mojang/blaze3d/DontObfuscate; +[13:03:46] [main/DEBUG]: Skipping Lcom/mojang/blaze3d/Blaze3D; +[13:03:47] [main/INFO]: JAR transformation complete C:\Users\polar\.mcreator\gradle\caches\forge_gradle\minecraft_user_repo\net\minecraftforge\forge\1.20.1-47.3.0_mapped_official_1.20.1\forge-1.20.1-47.3.0_mapped_official_1.20.1.jar diff --git a/build/_atJar_4/log.txt b/build/_atJar_4/log.txt new file mode 100644 index 000000000..32fd2687c --- /dev/null +++ b/build/_atJar_4/log.txt @@ -0,0 +1,7 @@ +Java Launcher: C:\Users\polar\.mcreator\gradle\jdks\eclipse_adoptium-17-amd64-windows\jdk-17.0.17+10\bin\java.exe +Arguments: '--inJar, C:\Users\polar\.mcreator\gradle\caches\forge_gradle\minecraft_user_repo\net\minecraftforge\forge\1.20.1-47.3.0\forge-1.20.1-47.3.0-injected.jar, --outJar, C:\Users\polar\.mcreator\gradle\caches\forge_gradle\minecraft_user_repo\net\minecraftforge\forge\1.20.1-47.3.0_mapped_official_1.20.1\forge-1.20.1-47.3.0_mapped_official_1.20.1.jar, --logFile, accesstransform.log, --atFile, C:\Users\polar\Nextcloud\DocumentsRoman\mods_mc\custom_ore_gem\build\_atJar_4\parent_at.cfg' +Classpath: + - C:\Users\polar\.mcreator\gradle\caches\forge_gradle\maven_downloader\net\minecraftforge\accesstransformers\8.2.1\accesstransformers-8.2.1-fatjar.jar +Working directory: C:\Users\polar\Nextcloud\DocumentsRoman\mods_mc\custom_ore_gem\build\_atJar_4 +Main class: net.minecraftforge.accesstransformer.TransformerProcessor +==================================== diff --git a/build/_atJar_4/parent_at.cfg b/build/_atJar_4/parent_at.cfg new file mode 100644 index 000000000..be90dcfd2 --- /dev/null +++ b/build/_atJar_4/parent_at.cfg @@ -0,0 +1,470 @@ +# net.minecraftforge:forge:1.20.1-47.3.0:userdev - ats/accesstransformer.cfg +public net.minecraft.advancements.CriteriaTriggers m_10595_(Lnet/minecraft/advancements/CriterionTrigger;)Lnet/minecraft/advancements/CriterionTrigger; # register +default net.minecraft.client.KeyMapping f_90817_ # isDown +public net.minecraft.client.Minecraft f_90987_ # textureManager +public net.minecraft.client.Minecraft m_91271_()V # createSearchTrees +public-f net.minecraft.client.Options f_92059_ # keyMappings +public net.minecraft.client.Options$FieldAccess +#group protected net.minecraft.client.gui.Gui * +protected net.minecraft.client.gui.Gui f_168664_ # scopeScale +protected net.minecraft.client.gui.Gui f_168665_ # SPYGLASS_SCOPE_LOCATION +protected net.minecraft.client.gui.Gui f_168666_ # POWDER_SNOW_OUTLINE_LOCATION +protected net.minecraft.client.gui.Gui f_168667_ # COLOR_WHITE +protected net.minecraft.client.gui.Gui f_168668_ # MIN_CROSSHAIR_ATTACK_SPEED +protected net.minecraft.client.gui.Gui f_168669_ # NUM_HEARTS_PER_ROW +protected net.minecraft.client.gui.Gui f_168670_ # LINE_HEIGHT +protected net.minecraft.client.gui.Gui f_168671_ # SPACER +protected net.minecraft.client.gui.Gui f_168672_ # PORTAL_OVERLAY_ALPHA_MIN +protected net.minecraft.client.gui.Gui f_168673_ # HEART_SIZE +protected net.minecraft.client.gui.Gui f_168674_ # HEART_SEPARATION +protected net.minecraft.client.gui.Gui f_193828_ # autosaveIndicatorValue +protected net.minecraft.client.gui.Gui f_193829_ # lastAutosaveIndicatorValue +protected net.minecraft.client.gui.Gui f_193830_ # SAVING_TEXT +protected net.minecraft.client.gui.Gui f_193831_ # AUTOSAVE_FADE_SPEED_FACTOR +protected net.minecraft.client.gui.Gui f_238167_ # chatDisabledByPlayerShown +protected net.minecraft.client.gui.Gui f_279580_ # GUI_ICONS_LOCATION +protected net.minecraft.client.gui.Gui f_92970_ # titleFadeInTime +protected net.minecraft.client.gui.Gui f_92971_ # titleStayTime +protected net.minecraft.client.gui.Gui f_92972_ # titleFadeOutTime +protected net.minecraft.client.gui.Gui f_92973_ # lastHealth +protected net.minecraft.client.gui.Gui f_92974_ # displayHealth +protected net.minecraft.client.gui.Gui f_92975_ # lastHealthTime +protected net.minecraft.client.gui.Gui f_92976_ # healthBlinkTime +protected net.minecraft.client.gui.Gui f_92977_ # screenWidth +protected net.minecraft.client.gui.Gui f_92978_ # screenHeight +protected net.minecraft.client.gui.Gui f_92981_ # VIGNETTE_LOCATION +protected net.minecraft.client.gui.Gui f_92982_ # WIDGETS_LOCATION +protected net.minecraft.client.gui.Gui f_92983_ # PUMPKIN_BLUR_LOCATION +protected net.minecraft.client.gui.Gui f_92984_ # DEMO_EXPIRED_TEXT +protected net.minecraft.client.gui.Gui f_92985_ # random +protected net.minecraft.client.gui.Gui f_92986_ # minecraft +protected net.minecraft.client.gui.Gui f_92987_ # itemRenderer +protected net.minecraft.client.gui.Gui f_92988_ # chat +protected net.minecraft.client.gui.Gui f_92989_ # tickCount +protected net.minecraft.client.gui.Gui f_92990_ # overlayMessageString +protected net.minecraft.client.gui.Gui f_92991_ # overlayMessageTime +protected net.minecraft.client.gui.Gui f_92992_ # animateOverlayMessageColor +protected net.minecraft.client.gui.Gui f_92993_ # toolHighlightTimer +protected net.minecraft.client.gui.Gui f_92994_ # lastToolHighlight +protected net.minecraft.client.gui.Gui f_92995_ # debugScreen +protected net.minecraft.client.gui.Gui f_92996_ # subtitleOverlay +protected net.minecraft.client.gui.Gui f_92997_ # spectatorGui +protected net.minecraft.client.gui.Gui f_92998_ # tabList +protected net.minecraft.client.gui.Gui f_92999_ # bossOverlay +protected net.minecraft.client.gui.Gui f_93000_ # titleTime +protected net.minecraft.client.gui.Gui f_93001_ # title +protected net.minecraft.client.gui.Gui f_93002_ # subtitle +#endgroup +protected net.minecraft.client.gui.Gui m_168688_(Lnet/minecraft/client/gui/GuiGraphics;Lnet/minecraft/world/entity/player/Player;IIIIFIIIZ)V # renderHearts +public net.minecraft.client.gui.Gui m_280030_(Lnet/minecraft/client/gui/GuiGraphics;Lnet/minecraft/world/scores/Objective;)V # displayScoreboardSidebar +public net.minecraft.client.gui.Gui m_280130_(Lnet/minecraft/client/gui/GuiGraphics;)V # renderCrosshair +public net.minecraft.client.gui.Gui m_280154_(Lnet/minecraft/client/gui/GuiGraphics;Lnet/minecraft/world/entity/Entity;)V # renderVignette +protected net.minecraft.client.gui.Gui m_280155_(Lnet/minecraft/client/gui/GuiGraphics;Lnet/minecraft/resources/ResourceLocation;F)V # renderTextureOverlay +public net.minecraft.client.gui.Gui m_280278_(Lnet/minecraft/client/gui/GuiGraphics;F)V # renderSpyglassOverlay +protected net.minecraft.client.gui.Gui m_280379_(Lnet/minecraft/client/gui/GuiGraphics;F)V # renderPortalOverlay +public net.minecraft.client.gui.Gui m_280518_(FLnet/minecraft/client/gui/GuiGraphics;)V # renderHotbar +public net.minecraft.client.gui.Gui m_280523_(Lnet/minecraft/client/gui/GuiGraphics;)V # renderEffects +protected net.minecraft.client.gui.Gui m_93039_(Lnet/minecraft/client/gui/GuiGraphics;Lnet/minecraft/client/gui/Font;III)V # drawBackdrop +protected net.minecraft.client.gui.components.AbstractSelectionList$Entry f_93521_ # list +public net.minecraft.client.gui.components.AbstractSliderButton f_263683_ # SLIDER_LOCATION +protected net.minecraft.client.gui.components.AbstractSliderButton m_264270_()I # getHandleTextureY +protected net.minecraft.client.gui.components.AbstractSliderButton m_264355_()I # getTextureY +protected net.minecraft.client.gui.components.DebugScreenOverlay f_94032_ # block +protected net.minecraft.client.gui.components.DebugScreenOverlay f_94033_ # liquid +public net.minecraft.client.gui.screens.MenuScreens m_96206_(Lnet/minecraft/world/inventory/MenuType;Lnet/minecraft/client/gui/screens/MenuScreens$ScreenConstructor;)V # register +public net.minecraft.client.gui.screens.MenuScreens$ScreenConstructor +public net.minecraft.client.gui.screens.Screen f_169369_ # renderables +public net.minecraft.client.model.geom.LayerDefinitions f_171106_ # OUTER_ARMOR_DEFORMATION +public net.minecraft.client.model.geom.LayerDefinitions f_171107_ # INNER_ARMOR_DEFORMATION +public net.minecraft.client.multiplayer.ClientPacketListener f_104899_ # commands +public net.minecraft.client.particle.FireworkParticles$Starter m_106767_(DDDDDD[I[IZZ)V # createParticle +public net.minecraft.client.particle.FireworkParticles$Starter m_106778_(DI[I[IZZ)V # createParticleBall +public net.minecraft.client.particle.FireworkParticles$Starter m_106785_(D[[D[I[IZZZ)V # createParticleShape +public net.minecraft.client.particle.FireworkParticles$Starter m_106793_([I[IZZ)V # createParticleBurst +public net.minecraft.client.particle.ParticleEngine m_107378_(Lnet/minecraft/core/particles/ParticleType;Lnet/minecraft/client/particle/ParticleEngine$SpriteParticleRegistration;)V # register +public net.minecraft.client.particle.ParticleEngine m_107381_(Lnet/minecraft/core/particles/ParticleType;Lnet/minecraft/client/particle/ParticleProvider;)V # register +public net.minecraft.client.particle.ParticleEngine m_272137_(Lnet/minecraft/core/particles/ParticleType;Lnet/minecraft/client/particle/ParticleProvider$Sprite;)V # register +public net.minecraft.client.particle.ParticleEngine$SpriteParticleRegistration +public net.minecraft.client.player.LocalPlayer m_8088_()I # getPermissionLevel +public net.minecraft.client.renderer.GameRenderer m_109128_(Lnet/minecraft/resources/ResourceLocation;)V # loadEffect +public net.minecraft.client.renderer.LevelRenderer m_109817_()Z # shouldShowEntityOutlines +protected-f net.minecraft.client.renderer.RenderStateShard f_110131_ # setupState +public net.minecraft.client.renderer.RenderStateShard$BooleanStateShard +public net.minecraft.client.renderer.RenderStateShard$CullStateShard +public net.minecraft.client.renderer.RenderStateShard$DepthTestStateShard +public net.minecraft.client.renderer.RenderStateShard$EmptyTextureStateShard +public net.minecraft.client.renderer.RenderStateShard$LayeringStateShard +public net.minecraft.client.renderer.RenderStateShard$LightmapStateShard +public net.minecraft.client.renderer.RenderStateShard$MultiTextureStateShard +public net.minecraft.client.renderer.RenderStateShard$OffsetTexturingStateShard +public net.minecraft.client.renderer.RenderStateShard$OutputStateShard +public net.minecraft.client.renderer.RenderStateShard$OverlayStateShard +public net.minecraft.client.renderer.RenderStateShard$ShaderStateShard +public net.minecraft.client.renderer.RenderStateShard$TextureStateShard +protected-f net.minecraft.client.renderer.RenderStateShard$TextureStateShard f_110329_ # blur +protected-f net.minecraft.client.renderer.RenderStateShard$TextureStateShard f_110330_ # mipmap +public net.minecraft.client.renderer.RenderStateShard$TexturingStateShard +public net.minecraft.client.renderer.RenderStateShard$TransparencyStateShard +public net.minecraft.client.renderer.RenderStateShard$WriteMaskStateShard +public net.minecraft.client.renderer.RenderType m_173215_(Ljava/lang/String;Lcom/mojang/blaze3d/vertex/VertexFormat;Lcom/mojang/blaze3d/vertex/VertexFormat$Mode;IZZLnet/minecraft/client/renderer/RenderType$CompositeState;)Lnet/minecraft/client/renderer/RenderType$CompositeRenderType; # create +public net.minecraft.client.renderer.RenderType$CompositeState +public net.minecraft.client.renderer.block.model.BlockElement m_111320_(Lnet/minecraft/core/Direction;)[F # uvsByFace +public net.minecraft.client.renderer.block.model.BlockElement$Deserializer +public net.minecraft.client.renderer.block.model.BlockElement$Deserializer ()V # constructor +public net.minecraft.client.renderer.block.model.BlockElementFace$Deserializer +public net.minecraft.client.renderer.block.model.BlockElementFace$Deserializer ()V # constructor +public net.minecraft.client.renderer.block.model.BlockFaceUV$Deserializer +public net.minecraft.client.renderer.block.model.BlockFaceUV$Deserializer ()V # constructor +public net.minecraft.client.renderer.block.model.BlockModel f_111417_ # textureMap +public net.minecraft.client.renderer.block.model.BlockModel f_111418_ # parent +public net.minecraft.client.renderer.block.model.BlockModel f_111424_ # hasAmbientOcclusion +public net.minecraft.client.renderer.block.model.BlockModel m_111437_(Lnet/minecraft/client/renderer/block/model/BlockElement;Lnet/minecraft/client/renderer/block/model/BlockElementFace;Lnet/minecraft/client/renderer/texture/TextureAtlasSprite;Lnet/minecraft/core/Direction;Lnet/minecraft/client/resources/model/ModelState;Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/client/renderer/block/model/BakedQuad; # bakeFace +public net.minecraft.client.renderer.block.model.ItemModelGenerator m_111638_(ILjava/lang/String;Lnet/minecraft/client/renderer/texture/SpriteContents;)Ljava/util/List; # processFrames +public net.minecraft.client.renderer.block.model.ItemOverride$Deserializer +public net.minecraft.client.renderer.block.model.ItemOverride$Deserializer ()V # constructor +protected net.minecraft.client.renderer.block.model.ItemOverrides ()V # constructor +public net.minecraft.client.renderer.block.model.ItemOverrides$BakedOverride +public net.minecraft.client.renderer.block.model.ItemTransform$Deserializer +public net.minecraft.client.renderer.block.model.ItemTransform$Deserializer ()V # constructor +public net.minecraft.client.renderer.block.model.ItemTransform$Deserializer f_111769_ # DEFAULT_ROTATION +public net.minecraft.client.renderer.block.model.ItemTransform$Deserializer f_111770_ # DEFAULT_TRANSLATION +public net.minecraft.client.renderer.block.model.ItemTransform$Deserializer f_111771_ # DEFAULT_SCALE +public net.minecraft.client.renderer.block.model.ItemTransforms$Deserializer +public net.minecraft.client.renderer.block.model.ItemTransforms$Deserializer ()V # constructor +public net.minecraft.client.renderer.blockentity.BlockEntityRenderDispatcher f_112253_ # fontRenderer - needed for rendering text in TESR items before entering world +public net.minecraft.client.renderer.blockentity.BlockEntityRenderers m_173590_(Lnet/minecraft/world/level/block/entity/BlockEntityType;Lnet/minecraft/client/renderer/blockentity/BlockEntityRendererProvider;)V # register +private-f net.minecraft.client.renderer.blockentity.PistonHeadRenderer f_112441_ # blockRenderer - it's static so we need to un-finalize in case this class loads to early. +public net.minecraft.client.renderer.blockentity.SkullBlockRenderer f_112519_ # SKIN_BY_TYPE +public net.minecraft.client.renderer.entity.EntityRenderDispatcher f_114362_ # renderers +public net.minecraft.client.renderer.entity.EntityRenderers m_174036_(Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/client/renderer/entity/EntityRendererProvider;)V # register +protected net.minecraft.client.renderer.entity.ItemEntityRenderer m_115042_(Lnet/minecraft/world/item/ItemStack;)I # getRenderAmount +public net.minecraft.client.renderer.entity.ItemRenderer m_115162_(Lcom/mojang/blaze3d/vertex/PoseStack;Lcom/mojang/blaze3d/vertex/VertexConsumer;Ljava/util/List;Lnet/minecraft/world/item/ItemStack;II)V # renderQuadList +public net.minecraft.client.renderer.entity.ItemRenderer m_115189_(Lnet/minecraft/client/resources/model/BakedModel;Lnet/minecraft/world/item/ItemStack;IILcom/mojang/blaze3d/vertex/PoseStack;Lcom/mojang/blaze3d/vertex/VertexConsumer;)V # renderModelLists +public net.minecraft.client.renderer.entity.LivingEntityRenderer m_115326_(Lnet/minecraft/client/renderer/entity/layers/RenderLayer;)Z # addLayer +public net.minecraft.client.renderer.texture.SpriteContents f_243731_ # byMipLevel +default net.minecraft.client.renderer.texture.SpriteContents f_244575_ # animatedTexture +default net.minecraft.client.renderer.texture.SpriteContents m_245088_()I # getFrameCount +public net.minecraft.client.resources.ClientPackSource m_246691_(Ljava/nio/file/Path;)Lnet/minecraft/server/packs/VanillaPackResources; # createVanillaPackSource +protected net.minecraft.client.resources.TextureAtlasHolder f_118884_ # textureAtlas +protected net.minecraft.client.resources.model.ModelBakery m_119364_(Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/client/renderer/block/model/BlockModel; # loadBlockModel +public net.minecraft.client.resources.model.SimpleBakedModel$Builder (ZZZLnet/minecraft/client/renderer/block/model/ItemTransforms;Lnet/minecraft/client/renderer/block/model/ItemOverrides;)V # constructor +public net.minecraft.client.sounds.SoundEngine f_120217_ # soundManager +public net.minecraft.commands.CommandSourceStack f_81288_ # source +public net.minecraft.commands.arguments.selector.EntitySelectorParser m_121229_()V # finalizePredicates +public net.minecraft.commands.arguments.selector.EntitySelectorParser m_121317_()V # parseOptions +public net.minecraft.commands.arguments.selector.options.EntitySelectorOptions m_121453_(Ljava/lang/String;Lnet/minecraft/commands/arguments/selector/options/EntitySelectorOptions$Modifier;Ljava/util/function/Predicate;Lnet/minecraft/network/chat/Component;)V # register +public net.minecraft.core.Holder$Reference m_205769_(Ljava/util/Collection;)V # bindTags +public net.minecraft.core.Holder$Reference m_246870_(Lnet/minecraft/resources/ResourceKey;)V # bindKey +public net.minecraft.core.Holder$Reference m_247654_(Ljava/lang/Object;)V # bindValue +public net.minecraft.core.Holder$Reference$Type +public net.minecraft.core.HolderSet$Named m_205835_(Ljava/util/List;)V # bind +protected net.minecraft.core.IdMapper f_122653_ # nextId +protected net.minecraft.core.IdMapper f_122654_ # tToId - internal map +protected net.minecraft.core.IdMapper f_122655_ # idToT - internal index list +protected net.minecraft.core.MappedRegistry f_244282_ # unregisteredIntrusiveHolders +public net.minecraft.core.RegistrySynchronization$NetworkedRegistryData +public net.minecraft.core.particles.ParticleType (ZLnet/minecraft/core/particles/ParticleOptions$Deserializer;)V # constructor +public net.minecraft.core.particles.SimpleParticleType (Z)V # constructor +protected net.minecraft.data.loot.BlockLootSubProvider m_245335_(Lnet/minecraft/world/level/ItemLike;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; # createSilkTouchOnlyTable +protected net.minecraft.data.loot.BlockLootSubProvider m_245602_(Lnet/minecraft/world/level/ItemLike;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; # createPotFlowerItemTable +protected net.minecraft.data.loot.BlockLootSubProvider m_246900_(Lnet/minecraft/world/level/block/Block;Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition$Builder;Lnet/minecraft/world/level/storage/loot/entries/LootPoolEntryContainer$Builder;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; # createSelfDropDispatchTable +protected net.minecraft.data.loot.EntityLootSubProvider m_245552_(Lnet/minecraft/world/entity/EntityType;)Z # canHaveLootTable +protected net.minecraft.data.recipes.RecipeProvider f_236355_ # recipePathProvider +protected net.minecraft.data.recipes.RecipeProvider f_236356_ # advancementPathProvider +protected net.minecraft.data.recipes.RecipeProvider m_125979_(Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/advancements/critereon/EnterBlockTrigger$TriggerInstance; # insideOf +protected net.minecraft.data.recipes.RecipeProvider m_126011_([Lnet/minecraft/advancements/critereon/ItemPredicate;)Lnet/minecraft/advancements/critereon/InventoryChangeTrigger$TriggerInstance; # inventoryTrigger +protected net.minecraft.data.recipes.RecipeProvider m_176520_(Lnet/minecraft/advancements/critereon/MinMaxBounds$Ints;Lnet/minecraft/world/level/ItemLike;)Lnet/minecraft/advancements/critereon/InventoryChangeTrigger$TriggerInstance; # has +protected net.minecraft.data.recipes.RecipeProvider m_176523_(Lnet/minecraft/data/BlockFamily;Lnet/minecraft/data/BlockFamily$Variant;)Lnet/minecraft/world/level/block/Block; # getBaseBlock +protected net.minecraft.data.recipes.RecipeProvider m_176658_(Lnet/minecraft/world/level/ItemLike;Lnet/minecraft/world/item/crafting/Ingredient;)Lnet/minecraft/data/recipes/RecipeBuilder; # buttonBuilder +protected net.minecraft.data.recipes.RecipeProvider m_176678_(Lnet/minecraft/world/level/ItemLike;Lnet/minecraft/world/item/crafting/Ingredient;)Lnet/minecraft/data/recipes/RecipeBuilder; # fenceBuilder +protected net.minecraft.data.recipes.RecipeProvider m_176684_(Lnet/minecraft/world/level/ItemLike;Lnet/minecraft/world/item/crafting/Ingredient;)Lnet/minecraft/data/recipes/RecipeBuilder; # fenceGateBuilder +protected net.minecraft.data.recipes.RecipeProvider m_176720_(Lnet/minecraft/world/level/ItemLike;Lnet/minecraft/world/item/crafting/Ingredient;)Lnet/minecraft/data/recipes/RecipeBuilder; # trapdoorBuilder +protected net.minecraft.data.recipes.RecipeProvider m_176726_(Lnet/minecraft/world/level/ItemLike;Lnet/minecraft/world/item/crafting/Ingredient;)Lnet/minecraft/data/recipes/RecipeBuilder; # signBuilder +protected net.minecraft.data.recipes.RecipeProvider m_176739_(Ljava/util/function/Consumer;Lnet/minecraft/world/level/ItemLike;Lnet/minecraft/world/level/ItemLike;)V # smeltingResultFromBase +protected net.minecraft.data.recipes.RecipeProvider m_245792_(Lnet/minecraft/data/recipes/RecipeCategory;Lnet/minecraft/world/level/ItemLike;Lnet/minecraft/world/item/crafting/Ingredient;)Lnet/minecraft/data/recipes/ShapedRecipeBuilder; # cutBuilder +protected net.minecraft.data.recipes.RecipeProvider m_245809_(Ljava/util/function/Consumer;Lnet/minecraft/world/item/crafting/RecipeSerializer;Ljava/util/List;Lnet/minecraft/data/recipes/RecipeCategory;Lnet/minecraft/world/level/ItemLike;FILjava/lang/String;Ljava/lang/String;)V # oreCooking +protected net.minecraft.data.recipes.RecipeProvider m_245864_(Lnet/minecraft/data/recipes/RecipeCategory;Lnet/minecraft/world/level/ItemLike;Lnet/minecraft/world/item/crafting/Ingredient;)Lnet/minecraft/data/recipes/RecipeBuilder; # wallBuilder +protected net.minecraft.data.recipes.RecipeProvider m_247174_(Lnet/minecraft/data/recipes/RecipeCategory;Lnet/minecraft/world/level/ItemLike;Lnet/minecraft/world/item/crafting/Ingredient;)Lnet/minecraft/data/recipes/RecipeBuilder; # polishedBuilder +protected net.minecraft.data.recipes.RecipeProvider m_247347_(Lnet/minecraft/data/recipes/RecipeCategory;Lnet/minecraft/world/level/ItemLike;Lnet/minecraft/world/item/crafting/Ingredient;)Lnet/minecraft/data/recipes/RecipeBuilder; # pressurePlateBuilder +protected net.minecraft.data.recipes.RecipeProvider m_247368_(Ljava/util/function/Consumer;Lnet/minecraft/data/recipes/RecipeCategory;Lnet/minecraft/world/level/ItemLike;Lnet/minecraft/data/recipes/RecipeCategory;Lnet/minecraft/world/level/ItemLike;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;)V # nineBlockStorageRecipes +protected net.minecraft.data.recipes.RecipeProvider m_247434_(Ljava/util/function/Consumer;Ljava/lang/String;Lnet/minecraft/world/item/crafting/RecipeSerializer;ILnet/minecraft/world/level/ItemLike;Lnet/minecraft/world/level/ItemLike;F)V # simpleCookingRecipe +public net.minecraft.data.recipes.ShapedRecipeBuilder$Result +public net.minecraft.data.recipes.packs.VanillaRecipeProvider f_243671_ # COAL_SMELTABLES +public net.minecraft.data.recipes.packs.VanillaRecipeProvider f_243779_ # IRON_SMELTABLES +public net.minecraft.data.recipes.packs.VanillaRecipeProvider f_243908_ # COPPER_SMELTABLES +public net.minecraft.data.recipes.packs.VanillaRecipeProvider f_243974_ # DIAMOND_SMELTABLES +public net.minecraft.data.recipes.packs.VanillaRecipeProvider f_244369_ # GOLD_SMELTABLES +public net.minecraft.data.recipes.packs.VanillaRecipeProvider f_244430_ # EMERALD_SMELTABLES +public net.minecraft.data.recipes.packs.VanillaRecipeProvider f_244565_ # REDSTONE_SMELTABLES +public net.minecraft.data.recipes.packs.VanillaRecipeProvider f_244628_ # LAPIS_SMELTABLES +public-f net.minecraft.data.registries.RegistriesDatapackGenerator m_6055_()Ljava/lang/String; # getName +public net.minecraft.data.tags.IntrinsicHolderTagsProvider$IntrinsicTagAppender +protected net.minecraft.data.tags.TagsProvider f_126543_ # builders +public-f net.minecraft.data.tags.TagsProvider m_6055_()Ljava/lang/String; # getName +public net.minecraft.data.tags.TagsProvider$TagAppender +public net.minecraft.gametest.framework.GameTestServer (Ljava/lang/Thread;Lnet/minecraft/world/level/storage/LevelStorageSource$LevelStorageAccess;Lnet/minecraft/server/packs/repository/PackRepository;Lnet/minecraft/server/WorldStem;Ljava/util/Collection;Lnet/minecraft/core/BlockPos;)V # constructor +public net.minecraft.resources.ResourceLocation m_135835_(C)Z # validNamespaceChar +public net.minecraft.resources.ResourceLocation m_135841_(Ljava/lang/String;)Z # isValidPath +public net.minecraft.resources.ResourceLocation m_135843_(Ljava/lang/String;)Z # isValidNamespace +protected net.minecraft.server.MinecraftServer f_129726_ # nextTickTime +public net.minecraft.server.MinecraftServer$ReloadableResources +public net.minecraft.server.dedicated.DedicatedServer f_139600_ # consoleInput +public net.minecraft.server.level.ServerChunkCache f_8329_ # level +public net.minecraft.server.level.ServerLevel m_142646_()Lnet/minecraft/world/level/entity/LevelEntityGetter; # getEntities +public net.minecraft.server.level.ServerPlayer f_8940_ # containerCounter +public net.minecraft.server.level.ServerPlayer m_143399_(Lnet/minecraft/world/inventory/AbstractContainerMenu;)V # initMenu +public net.minecraft.server.level.ServerPlayer m_9217_()V # nextContainerCounter +public net.minecraft.server.network.ServerGamePacketListenerImpl f_9742_ # connection +public net.minecraft.server.network.ServerLoginPacketListenerImpl f_10021_ # gameProfile +public net.minecraft.server.packs.repository.ServerPacksSource m_246173_()Lnet/minecraft/server/packs/VanillaPackResources; # createVanillaPackSource +public net.minecraft.server.packs.resources.FallbackResourceManager f_10599_ # fallbacks +public net.minecraft.util.ExtraCodecs$EitherCodec +public net.minecraft.util.datafix.fixes.StructuresBecomeConfiguredFix$Conversion +public net.minecraft.util.thread.BlockableEventLoop m_18689_(Ljava/lang/Runnable;)Ljava/util/concurrent/CompletableFuture; # submitAsync +#group public net.minecraft.world.damagesource.DamageSource *() #All methods public, most are already +public net.minecraft.world.damagesource.DamageSource (Lnet/minecraft/core/Holder;Lnet/minecraft/world/entity/Entity;Lnet/minecraft/world/entity/Entity;Lnet/minecraft/world/phys/Vec3;)V # constructor +#endgroup +protected net.minecraft.world.entity.Entity f_19843_ # ENTITY_COUNTER +public net.minecraft.world.entity.Entity m_20078_()Ljava/lang/String; # getEncodeId +public net.minecraft.world.entity.ExperienceOrb f_20770_ # value +public net.minecraft.world.entity.Mob f_21345_ # goalSelector +public net.minecraft.world.entity.Mob f_21346_ # targetSelector +public net.minecraft.world.entity.SpawnPlacements m_21754_(Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/entity/SpawnPlacements$Type;Lnet/minecraft/world/level/levelgen/Heightmap$Types;Lnet/minecraft/world/entity/SpawnPlacements$SpawnPredicate;)V # register +public net.minecraft.world.entity.ai.memory.MemoryModuleType (Ljava/util/Optional;)V # constructor +public net.minecraft.world.entity.ai.sensing.SensorType (Ljava/util/function/Supplier;)V # constructor +protected net.minecraft.world.entity.item.PrimedTnt m_32103_()V # explode - make it easier to extend TNTEntity with custom explosion logic +protected net.minecraft.world.entity.monster.AbstractSkeleton m_7878_()Lnet/minecraft/sounds/SoundEvent; # getStepSound - make AbstractSkeletonEntity implementable +protected net.minecraft.world.entity.monster.Skeleton m_7878_()Lnet/minecraft/sounds/SoundEvent; # getStepSound - make AbstractSkeletonEntity implementable +protected net.minecraft.world.entity.monster.Stray m_7878_()Lnet/minecraft/sounds/SoundEvent; # getStepSound - make AbstractSkeletonEntity implementable +protected net.minecraft.world.entity.monster.WitherSkeleton m_7878_()Lnet/minecraft/sounds/SoundEvent; # getStepSound - make AbstractSkeletonEntity implementable +public net.minecraft.world.entity.npc.VillagerType (Ljava/lang/String;)V # constructor +public net.minecraft.world.entity.player.Player m_6915_()V # closeContainer +protected net.minecraft.world.entity.projectile.Projectile (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V # constructor +private-f net.minecraft.world.entity.raid.Raid$RaiderType f_37813_ # VALUES +public net.minecraft.world.entity.schedule.Activity (Ljava/lang/String;)V # constructor +protected net.minecraft.world.entity.vehicle.AbstractMinecart m_213728_()Lnet/minecraft/world/item/Item; # getDropItem - make AbstractMinecart implementable +public net.minecraft.world.inventory.AnvilMenu f_39000_ # repairItemCountCost +public net.minecraft.world.inventory.MenuType (Lnet/minecraft/world/inventory/MenuType$MenuSupplier;Lnet/minecraft/world/flag/FeatureFlagSet;)V # constructor +public net.minecraft.world.inventory.MenuType$MenuSupplier +public net.minecraft.world.item.CreativeModeTab$Output +public net.minecraft.world.item.CreativeModeTab$TabVisibility +public net.minecraft.world.item.CreativeModeTabs f_256725_ # COLORED_BLOCKS +public net.minecraft.world.item.CreativeModeTabs f_256731_ # SPAWN_EGGS +public net.minecraft.world.item.CreativeModeTabs f_256750_ # SEARCH +public net.minecraft.world.item.CreativeModeTabs f_256776_ # NATURAL_BLOCKS +public net.minecraft.world.item.CreativeModeTabs f_256788_ # BUILDING_BLOCKS +public net.minecraft.world.item.CreativeModeTabs f_256791_ # FUNCTIONAL_BLOCKS +public net.minecraft.world.item.CreativeModeTabs f_256797_ # COMBAT +public net.minecraft.world.item.CreativeModeTabs f_256837_ # OP_BLOCKS +public net.minecraft.world.item.CreativeModeTabs f_256839_ # FOOD_AND_DRINKS +public net.minecraft.world.item.CreativeModeTabs f_256869_ # TOOLS_AND_UTILITIES +public net.minecraft.world.item.CreativeModeTabs f_256917_ # HOTBAR +public net.minecraft.world.item.CreativeModeTabs f_256968_ # INGREDIENTS +public net.minecraft.world.item.CreativeModeTabs f_257028_ # REDSTONE_BLOCKS +public net.minecraft.world.item.CreativeModeTabs f_257039_ # INVENTORY +#group public net.minecraft.world.item.Item +public net.minecraft.world.item.AxeItem (Lnet/minecraft/world/item/Tier;FFLnet/minecraft/world/item/Item$Properties;)V # constructor +public net.minecraft.world.item.DiggerItem (FFLnet/minecraft/world/item/Tier;Lnet/minecraft/tags/TagKey;Lnet/minecraft/world/item/Item$Properties;)V # constructor +public net.minecraft.world.item.HoeItem (Lnet/minecraft/world/item/Tier;IFLnet/minecraft/world/item/Item$Properties;)V # constructor +public net.minecraft.world.item.PickaxeItem (Lnet/minecraft/world/item/Tier;IFLnet/minecraft/world/item/Item$Properties;)V # constructor +public net.minecraft.world.item.RecordItem (ILnet/minecraft/sounds/SoundEvent;Lnet/minecraft/world/item/Item$Properties;I)V # constructor +#endgroup +private-f net.minecraft.world.item.ItemDisplayContext f_268735_ # id +public net.minecraft.world.item.ItemStackLinkedSet f_260558_ # TYPE_AND_TAG +public net.minecraft.world.item.alchemy.PotionBrewing$Mix +public net.minecraft.world.item.alchemy.PotionBrewing$Mix f_43533_ # ingredient +public net.minecraft.world.item.context.BlockPlaceContext (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/phys/BlockHitResult;)V # constructor +public net.minecraft.world.item.context.UseOnContext (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/phys/BlockHitResult;)V # constructor +public-f net.minecraft.world.item.crafting.Ingredient +protected net.minecraft.world.item.crafting.Ingredient (Ljava/util/stream/Stream;)V # constructor +public net.minecraft.world.item.crafting.Ingredient m_43919_(Lcom/google/gson/JsonObject;)Lnet/minecraft/world/item/crafting/Ingredient$Value; # valueFromJson +public+f net.minecraft.world.item.crafting.Ingredient m_43923_(Lnet/minecraft/network/FriendlyByteBuf;)V # toNetwork +public net.minecraft.world.item.crafting.Ingredient m_43938_(Ljava/util/stream/Stream;)Lnet/minecraft/world/item/crafting/Ingredient; # fromValues +public net.minecraft.world.item.crafting.Ingredient$ItemValue +public net.minecraft.world.item.crafting.Ingredient$ItemValue (Lnet/minecraft/world/item/ItemStack;)V # constructor +public net.minecraft.world.item.crafting.Ingredient$TagValue +public net.minecraft.world.item.crafting.Ingredient$TagValue (Lnet/minecraft/tags/TagKey;)V # constructor +public net.minecraft.world.item.crafting.Ingredient$Value +public net.minecraft.world.level.GameRules m_46189_(Ljava/lang/String;Lnet/minecraft/world/level/GameRules$Category;Lnet/minecraft/world/level/GameRules$Type;)Lnet/minecraft/world/level/GameRules$Key; # register +public net.minecraft.world.level.GameRules$BooleanValue m_46250_(Z)Lnet/minecraft/world/level/GameRules$Type; # create +public net.minecraft.world.level.GameRules$BooleanValue m_46252_(ZLjava/util/function/BiConsumer;)Lnet/minecraft/world/level/GameRules$Type; # create +public net.minecraft.world.level.GameRules$IntegerValue m_46294_(ILjava/util/function/BiConsumer;)Lnet/minecraft/world/level/GameRules$Type; # create +public net.minecraft.world.level.GameRules$IntegerValue m_46312_(I)Lnet/minecraft/world/level/GameRules$Type; # create +public net.minecraft.world.level.Level f_46437_ # oRainLevel +public net.minecraft.world.level.Level f_46438_ # rainLevel +public net.minecraft.world.level.Level f_46439_ # oThunderLevel +public net.minecraft.world.level.Level f_46440_ # thunderLevel +public net.minecraft.world.level.biome.Biome$ClimateSettings +protected net.minecraft.world.level.biome.BiomeGenerationSettings$PlainBuilder f_254648_ # features +protected net.minecraft.world.level.biome.BiomeGenerationSettings$PlainBuilder f_254678_ # carvers +protected net.minecraft.world.level.biome.BiomeGenerationSettings$PlainBuilder m_255276_(I)V # addFeatureStepsUpTo +#group protected net.minecraft.world.level.biome.BiomeSpecialEffects$Builder * +protected net.minecraft.world.level.biome.BiomeSpecialEffects$Builder f_48005_ # fogColor +protected net.minecraft.world.level.biome.BiomeSpecialEffects$Builder f_48006_ # waterColor +protected net.minecraft.world.level.biome.BiomeSpecialEffects$Builder f_48007_ # waterFogColor +protected net.minecraft.world.level.biome.BiomeSpecialEffects$Builder f_48008_ # skyColor +protected net.minecraft.world.level.biome.BiomeSpecialEffects$Builder f_48009_ # foliageColorOverride +protected net.minecraft.world.level.biome.BiomeSpecialEffects$Builder f_48010_ # grassColorOverride +protected net.minecraft.world.level.biome.BiomeSpecialEffects$Builder f_48011_ # grassColorModifier +protected net.minecraft.world.level.biome.BiomeSpecialEffects$Builder f_48012_ # ambientParticle +protected net.minecraft.world.level.biome.BiomeSpecialEffects$Builder f_48013_ # ambientLoopSoundEvent +protected net.minecraft.world.level.biome.BiomeSpecialEffects$Builder f_48014_ # ambientMoodSettings +protected net.minecraft.world.level.biome.BiomeSpecialEffects$Builder f_48015_ # ambientAdditionsSettings +protected net.minecraft.world.level.biome.BiomeSpecialEffects$Builder f_48016_ # backgroundMusic +#endgroup +protected net.minecraft.world.level.biome.MobSpawnSettings$Builder f_48362_ # spawners +protected net.minecraft.world.level.biome.MobSpawnSettings$Builder f_48363_ # mobSpawnCosts +protected net.minecraft.world.level.biome.MobSpawnSettings$Builder f_48364_ # creatureGenerationProbability +#group public net.minecraft.world.level.block.Block +public net.minecraft.world.level.block.AirBlock (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V # constructor +public net.minecraft.world.level.block.AttachedStemBlock (Lnet/minecraft/world/level/block/StemGrownBlock;Ljava/util/function/Supplier;Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V # constructor +public net.minecraft.world.level.block.AzaleaBlock (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V # constructor +public net.minecraft.world.level.block.BarrierBlock (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V # constructor +public net.minecraft.world.level.block.BaseCoralFanBlock (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V # constructor +public net.minecraft.world.level.block.BaseCoralPlantBlock (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V # constructor +public net.minecraft.world.level.block.BaseCoralPlantTypeBlock (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V # constructor +public net.minecraft.world.level.block.BaseCoralWallFanBlock (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V # constructor +public net.minecraft.world.level.block.BigDripleafBlock (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V # constructor +public net.minecraft.world.level.block.BigDripleafStemBlock (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V # constructor +public net.minecraft.world.level.block.BlastFurnaceBlock (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V # constructor +public net.minecraft.world.level.block.BushBlock (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V # constructor +public net.minecraft.world.level.block.ButtonBlock (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;Lnet/minecraft/world/level/block/state/properties/BlockSetType;IZ)V # constructor +public net.minecraft.world.level.block.CactusBlock (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V # constructor +public net.minecraft.world.level.block.CakeBlock (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V # constructor +public net.minecraft.world.level.block.CandleCakeBlock (Lnet/minecraft/world/level/block/Block;Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V # constructor +public net.minecraft.world.level.block.CartographyTableBlock (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V # constructor +public net.minecraft.world.level.block.CarvedPumpkinBlock (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V # constructor +public net.minecraft.world.level.block.ChestBlock (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;Ljava/util/function/Supplier;)V # constructor +public net.minecraft.world.level.block.ChorusFlowerBlock (Lnet/minecraft/world/level/block/ChorusPlantBlock;Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V # constructor +public net.minecraft.world.level.block.ChorusPlantBlock (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V # constructor +public net.minecraft.world.level.block.CoralFanBlock (Lnet/minecraft/world/level/block/Block;Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V # constructor +public net.minecraft.world.level.block.CoralPlantBlock (Lnet/minecraft/world/level/block/Block;Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V # constructor +public net.minecraft.world.level.block.CoralWallFanBlock (Lnet/minecraft/world/level/block/Block;Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V # constructor +public net.minecraft.world.level.block.CraftingTableBlock (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V # constructor +public net.minecraft.world.level.block.CropBlock (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V # constructor +public net.minecraft.world.level.block.CrossCollisionBlock (FFFFFLnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V # constructor +public net.minecraft.world.level.block.DeadBushBlock (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V # constructor +public net.minecraft.world.level.block.DecoratedPotBlock (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V # constructor +public net.minecraft.world.level.block.DirtPathBlock (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V # constructor +public net.minecraft.world.level.block.DispenserBlock (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V # constructor +public net.minecraft.world.level.block.DoorBlock (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;Lnet/minecraft/world/level/block/state/properties/BlockSetType;)V # constructor +public net.minecraft.world.level.block.EnchantmentTableBlock (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V # constructor +public net.minecraft.world.level.block.EndGatewayBlock (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V # constructor +public net.minecraft.world.level.block.EndPortalBlock (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V # constructor +public net.minecraft.world.level.block.EndRodBlock (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V # constructor +public net.minecraft.world.level.block.EnderChestBlock (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V # constructor +public net.minecraft.world.level.block.EquipableCarvedPumpkinBlock (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V # constructor +public net.minecraft.world.level.block.FaceAttachedHorizontalDirectionalBlock (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V # constructor +public net.minecraft.world.level.block.FarmBlock (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V # constructor +public net.minecraft.world.level.block.FletchingTableBlock (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V # constructor +public net.minecraft.world.level.block.FungusBlock (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;Lnet/minecraft/resources/ResourceKey;Lnet/minecraft/world/level/block/Block;)V # constructor +public net.minecraft.world.level.block.FurnaceBlock (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V # constructor +public net.minecraft.world.level.block.GrindstoneBlock (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V # constructor +public net.minecraft.world.level.block.HalfTransparentBlock (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V # constructor +public net.minecraft.world.level.block.HangingRootsBlock (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V # constructor +public net.minecraft.world.level.block.IronBarsBlock (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V # constructor +public net.minecraft.world.level.block.JigsawBlock (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V # constructor +public net.minecraft.world.level.block.JukeboxBlock (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V # constructor +public net.minecraft.world.level.block.KelpBlock (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V # constructor +public net.minecraft.world.level.block.KelpPlantBlock (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V # constructor +public net.minecraft.world.level.block.LadderBlock (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V # constructor +public net.minecraft.world.level.block.LecternBlock (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V # constructor +public net.minecraft.world.level.block.LeverBlock (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V # constructor +public net.minecraft.world.level.block.LiquidBlock (Lnet/minecraft/world/level/material/FlowingFluid;Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V # constructor +public net.minecraft.world.level.block.LoomBlock (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V # constructor +public net.minecraft.world.level.block.MangroveRootsBlock (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V # constructor +public net.minecraft.world.level.block.MelonBlock (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V # constructor +public net.minecraft.world.level.block.NetherWartBlock (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V # constructor +public net.minecraft.world.level.block.NyliumBlock (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V # constructor +public net.minecraft.world.level.block.PinkPetalsBlock (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V # constructor +public net.minecraft.world.level.block.PipeBlock (FLnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V # constructor +public net.minecraft.world.level.block.PlayerHeadBlock (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V # constructor +public net.minecraft.world.level.block.PlayerWallHeadBlock (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V # constructor +public net.minecraft.world.level.block.PoweredRailBlock (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V # constructor +public net.minecraft.world.level.block.PressurePlateBlock (Lnet/minecraft/world/level/block/PressurePlateBlock$Sensitivity;Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;Lnet/minecraft/world/level/block/state/properties/BlockSetType;)V # constructor +public net.minecraft.world.level.block.PumpkinBlock (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V # constructor +public net.minecraft.world.level.block.RailBlock (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V # constructor +public net.minecraft.world.level.block.RedstoneTorchBlock (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V # constructor +public net.minecraft.world.level.block.RedstoneWallTorchBlock (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V # constructor +public net.minecraft.world.level.block.RepeaterBlock (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V # constructor +public net.minecraft.world.level.block.RodBlock (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V # constructor +public net.minecraft.world.level.block.RootsBlock (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V # constructor +public net.minecraft.world.level.block.SaplingBlock (Lnet/minecraft/world/level/block/grower/AbstractTreeGrower;Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V # constructor +public net.minecraft.world.level.block.ScaffoldingBlock (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V # constructor +public net.minecraft.world.level.block.SeaPickleBlock (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V # constructor +public net.minecraft.world.level.block.SeagrassBlock (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V # constructor +public net.minecraft.world.level.block.SkullBlock (Lnet/minecraft/world/level/block/SkullBlock$Type;Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V # constructor +public net.minecraft.world.level.block.SmithingTableBlock (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V # constructor +public net.minecraft.world.level.block.SmokerBlock (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V # constructor +public net.minecraft.world.level.block.SnowLayerBlock (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V # constructor +public net.minecraft.world.level.block.SnowyDirtBlock (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V # constructor +public net.minecraft.world.level.block.SpawnerBlock (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V # constructor +public net.minecraft.world.level.block.SpongeBlock (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V # constructor +public net.minecraft.world.level.block.StairBlock (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V # constructor +public net.minecraft.world.level.block.StemBlock (Lnet/minecraft/world/level/block/StemGrownBlock;Ljava/util/function/Supplier;Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V # constructor +public net.minecraft.world.level.block.StructureBlock (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V # constructor +public net.minecraft.world.level.block.StructureVoidBlock (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V # constructor +public net.minecraft.world.level.block.SugarCaneBlock (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V # constructor +public net.minecraft.world.level.block.TallGrassBlock (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V # constructor +public net.minecraft.world.level.block.TorchBlock (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;Lnet/minecraft/core/particles/ParticleOptions;)V # constructor +public net.minecraft.world.level.block.TrapDoorBlock (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;Lnet/minecraft/world/level/block/state/properties/BlockSetType;)V # constructor +public net.minecraft.world.level.block.WallSkullBlock (Lnet/minecraft/world/level/block/SkullBlock$Type;Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V # constructor +public net.minecraft.world.level.block.WallTorchBlock (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;Lnet/minecraft/core/particles/ParticleOptions;)V # constructor +public net.minecraft.world.level.block.WaterlilyBlock (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V # constructor +public net.minecraft.world.level.block.WeightedPressurePlateBlock (ILnet/minecraft/world/level/block/state/BlockBehaviour$Properties;Lnet/minecraft/world/level/block/state/properties/BlockSetType;)V # constructor +public net.minecraft.world.level.block.WetSpongeBlock (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V # constructor +public net.minecraft.world.level.block.WitherSkullBlock (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V # constructor +public net.minecraft.world.level.block.WitherWallSkullBlock (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V # constructor +public net.minecraft.world.level.block.WoolCarpetBlock (Lnet/minecraft/world/item/DyeColor;Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V # constructor +#endgroup +public net.minecraft.world.level.block.Block m_49805_(Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;I)V # popExperience +public net.minecraft.world.level.block.FireBlock m_221164_(Lnet/minecraft/world/level/block/state/BlockState;)I # getBurnOdds +public net.minecraft.world.level.block.FireBlock m_221166_(Lnet/minecraft/world/level/block/state/BlockState;)I # getIgniteOdds +public net.minecraft.world.level.block.entity.BlockEntityType$BlockEntitySupplier +public net.minecraft.world.level.block.entity.HopperBlockEntity m_59395_(I)V # setCooldown +public net.minecraft.world.level.block.entity.HopperBlockEntity m_59409_()Z # isOnCustomCooldown +public net.minecraft.world.level.block.state.properties.BlockSetType m_272115_(Lnet/minecraft/world/level/block/state/properties/BlockSetType;)Lnet/minecraft/world/level/block/state/properties/BlockSetType; # register +public net.minecraft.world.level.block.state.properties.WoodType m_61844_(Lnet/minecraft/world/level/block/state/properties/WoodType;)Lnet/minecraft/world/level/block/state/properties/WoodType; # register +public net.minecraft.world.level.chunk.ChunkStatus (Lnet/minecraft/world/level/chunk/ChunkStatus;IZLjava/util/EnumSet;Lnet/minecraft/world/level/chunk/ChunkStatus$ChunkType;Lnet/minecraft/world/level/chunk/ChunkStatus$GenerationTask;Lnet/minecraft/world/level/chunk/ChunkStatus$LoadingTask;)V # constructor +protected net.minecraft.world.level.levelgen.Aquifer$NoiseBasedAquifer f_157994_ # barrierNoise +protected net.minecraft.world.level.levelgen.Aquifer$NoiseBasedAquifer f_157996_ # lavaNoise +protected net.minecraft.world.level.levelgen.Aquifer$NoiseBasedAquifer f_157998_ # aquiferCache +protected net.minecraft.world.level.levelgen.Aquifer$NoiseBasedAquifer f_157999_ # aquiferLocationCache +protected net.minecraft.world.level.levelgen.Aquifer$NoiseBasedAquifer f_158000_ # shouldScheduleFluidUpdate +protected net.minecraft.world.level.levelgen.Aquifer$NoiseBasedAquifer f_158002_ # minGridX +protected net.minecraft.world.level.levelgen.Aquifer$NoiseBasedAquifer f_158003_ # minGridY +protected net.minecraft.world.level.levelgen.Aquifer$NoiseBasedAquifer f_158004_ # minGridZ +protected net.minecraft.world.level.levelgen.Aquifer$NoiseBasedAquifer f_158005_ # gridSizeX +protected net.minecraft.world.level.levelgen.Aquifer$NoiseBasedAquifer f_158006_ # gridSizeZ +protected net.minecraft.world.level.levelgen.Aquifer$NoiseBasedAquifer m_158024_(II)D # similarity +protected net.minecraft.world.level.levelgen.Aquifer$NoiseBasedAquifer m_158027_(III)I # getIndex +protected net.minecraft.world.level.levelgen.Aquifer$NoiseBasedAquifer m_158039_(I)I # gridX +protected net.minecraft.world.level.levelgen.Aquifer$NoiseBasedAquifer m_158045_(I)I # gridY +protected net.minecraft.world.level.levelgen.Aquifer$NoiseBasedAquifer m_158047_(I)I # gridZ +protected net.minecraft.world.level.levelgen.Beardifier f_158065_ # pieceIterator +protected net.minecraft.world.level.levelgen.Beardifier f_158066_ # junctionIterator +protected net.minecraft.world.level.levelgen.Beardifier m_158083_(III)D # getBuryContribution +protected net.minecraft.world.level.levelgen.Beardifier m_223925_(IIII)D # getBeardContribution +private-f net.minecraft.world.level.levelgen.DebugLevelSource f_64114_ # ALL_BLOCKS +private-f net.minecraft.world.level.levelgen.DebugLevelSource f_64115_ # GRID_WIDTH +private-f net.minecraft.world.level.levelgen.DebugLevelSource f_64116_ # GRID_HEIGHT +public-f net.minecraft.world.level.levelgen.NoiseBasedChunkGenerator +protected net.minecraft.world.level.levelgen.NoiseBasedChunkGenerator m_224239_(Lnet/minecraft/world/level/LevelHeightAccessor;Lnet/minecraft/world/level/levelgen/RandomState;IILorg/apache/commons/lang3/mutable/MutableObject;Ljava/util/function/Predicate;)Ljava/util/OptionalInt; # iterateNoiseColumn +#group public net.minecraft.world.level.levelgen.NoiseGeneratorSettings *() +public net.minecraft.world.level.levelgen.NoiseGeneratorSettings m_255038_(Lnet/minecraft/data/worldgen/BootstapContext;)Lnet/minecraft/world/level/levelgen/NoiseGeneratorSettings; # caves +public net.minecraft.world.level.levelgen.NoiseGeneratorSettings m_255186_(Lnet/minecraft/data/worldgen/BootstapContext;)Lnet/minecraft/world/level/levelgen/NoiseGeneratorSettings; # end +public net.minecraft.world.level.levelgen.NoiseGeneratorSettings m_255226_(Lnet/minecraft/data/worldgen/BootstapContext;ZZ)Lnet/minecraft/world/level/levelgen/NoiseGeneratorSettings; # overworld +public net.minecraft.world.level.levelgen.NoiseGeneratorSettings m_255230_(Lnet/minecraft/data/worldgen/BootstapContext;)Lnet/minecraft/world/level/levelgen/NoiseGeneratorSettings; # floatingIslands +public net.minecraft.world.level.levelgen.NoiseGeneratorSettings m_255410_(Lnet/minecraft/data/worldgen/BootstapContext;)Lnet/minecraft/world/level/levelgen/NoiseGeneratorSettings; # nether +public net.minecraft.world.level.levelgen.NoiseGeneratorSettings m_64474_(Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; # lambda$static$0 +#endgroup +public net.minecraft.world.level.levelgen.feature.featuresize.FeatureSizeType (Lcom/mojang/serialization/Codec;)V # constructor +public net.minecraft.world.level.levelgen.feature.foliageplacers.FoliagePlacerType (Lcom/mojang/serialization/Codec;)V # constructor +public net.minecraft.world.level.levelgen.feature.rootplacers.RootPlacerType (Lcom/mojang/serialization/Codec;)V # constructor +public net.minecraft.world.level.levelgen.feature.stateproviders.BlockStateProviderType (Lcom/mojang/serialization/Codec;)V # constructor +public net.minecraft.world.level.levelgen.feature.treedecorators.TreeDecoratorType (Lcom/mojang/serialization/Codec;)V # constructor +public net.minecraft.world.level.levelgen.feature.trunkplacers.TrunkPlacerType (Lcom/mojang/serialization/Codec;)V # constructor +protected net.minecraft.world.level.portal.PortalForcer f_77648_ # level +public net.minecraft.world.level.storage.LevelResource (Ljava/lang/String;)V # constructor +private-f net.minecraft.world.level.storage.loot.LootPool f_79028_ # rolls +private-f net.minecraft.world.level.storage.loot.LootPool f_79029_ # bonusRolls diff --git a/build/_compileJava_2/com/mojang/blaze3d/Blaze3D.class b/build/_compileJava_2/com/mojang/blaze3d/Blaze3D.class new file mode 100644 index 000000000..cfb91ba7d Binary files /dev/null and b/build/_compileJava_2/com/mojang/blaze3d/Blaze3D.class differ diff --git a/build/_compileJava_2/com/mojang/blaze3d/DontObfuscate.class b/build/_compileJava_2/com/mojang/blaze3d/DontObfuscate.class new file mode 100644 index 000000000..4248570b1 Binary files /dev/null and b/build/_compileJava_2/com/mojang/blaze3d/DontObfuscate.class differ diff --git a/build/_compileJava_2/com/mojang/blaze3d/FieldsAreNonnullByDefault.class b/build/_compileJava_2/com/mojang/blaze3d/FieldsAreNonnullByDefault.class new file mode 100644 index 000000000..03e8b0d57 Binary files /dev/null and b/build/_compileJava_2/com/mojang/blaze3d/FieldsAreNonnullByDefault.class differ diff --git a/build/_compileJava_2/com/mojang/blaze3d/MethodsReturnNonnullByDefault.class b/build/_compileJava_2/com/mojang/blaze3d/MethodsReturnNonnullByDefault.class new file mode 100644 index 000000000..52c3730c5 Binary files /dev/null and b/build/_compileJava_2/com/mojang/blaze3d/MethodsReturnNonnullByDefault.class differ diff --git a/build/_compileJava_2/com/mojang/blaze3d/audio/Channel.class b/build/_compileJava_2/com/mojang/blaze3d/audio/Channel.class new file mode 100644 index 000000000..97032f8bd Binary files /dev/null and b/build/_compileJava_2/com/mojang/blaze3d/audio/Channel.class differ diff --git a/build/_compileJava_2/com/mojang/blaze3d/audio/Library$1.class b/build/_compileJava_2/com/mojang/blaze3d/audio/Library$1.class new file mode 100644 index 000000000..4195c7875 Binary files /dev/null and b/build/_compileJava_2/com/mojang/blaze3d/audio/Library$1.class differ diff --git a/build/_compileJava_2/com/mojang/blaze3d/audio/Library$ChannelPool.class b/build/_compileJava_2/com/mojang/blaze3d/audio/Library$ChannelPool.class new file mode 100644 index 000000000..8e7c78839 Binary files /dev/null and b/build/_compileJava_2/com/mojang/blaze3d/audio/Library$ChannelPool.class differ diff --git a/build/_compileJava_2/com/mojang/blaze3d/audio/Library$CountingChannelPool.class b/build/_compileJava_2/com/mojang/blaze3d/audio/Library$CountingChannelPool.class new file mode 100644 index 000000000..f05f270f9 Binary files /dev/null and b/build/_compileJava_2/com/mojang/blaze3d/audio/Library$CountingChannelPool.class differ diff --git a/build/_compileJava_2/com/mojang/blaze3d/audio/Library$Pool.class b/build/_compileJava_2/com/mojang/blaze3d/audio/Library$Pool.class new file mode 100644 index 000000000..c6ea1e1ac Binary files /dev/null and b/build/_compileJava_2/com/mojang/blaze3d/audio/Library$Pool.class differ diff --git a/build/_compileJava_2/com/mojang/blaze3d/audio/Library.class b/build/_compileJava_2/com/mojang/blaze3d/audio/Library.class new file mode 100644 index 000000000..08f890063 Binary files /dev/null and b/build/_compileJava_2/com/mojang/blaze3d/audio/Library.class differ diff --git a/build/_compileJava_2/com/mojang/blaze3d/audio/Listener.class b/build/_compileJava_2/com/mojang/blaze3d/audio/Listener.class new file mode 100644 index 000000000..e23217e83 Binary files /dev/null and b/build/_compileJava_2/com/mojang/blaze3d/audio/Listener.class differ diff --git a/build/_compileJava_2/com/mojang/blaze3d/audio/OggAudioStream$OutputConcat.class b/build/_compileJava_2/com/mojang/blaze3d/audio/OggAudioStream$OutputConcat.class new file mode 100644 index 000000000..54d5c8528 Binary files /dev/null and b/build/_compileJava_2/com/mojang/blaze3d/audio/OggAudioStream$OutputConcat.class differ diff --git a/build/_compileJava_2/com/mojang/blaze3d/audio/OggAudioStream.class b/build/_compileJava_2/com/mojang/blaze3d/audio/OggAudioStream.class new file mode 100644 index 000000000..72b30e684 Binary files /dev/null and b/build/_compileJava_2/com/mojang/blaze3d/audio/OggAudioStream.class differ diff --git a/build/_compileJava_2/com/mojang/blaze3d/audio/OpenAlUtil.class b/build/_compileJava_2/com/mojang/blaze3d/audio/OpenAlUtil.class new file mode 100644 index 000000000..db0156965 Binary files /dev/null and b/build/_compileJava_2/com/mojang/blaze3d/audio/OpenAlUtil.class differ diff --git a/build/_compileJava_2/com/mojang/blaze3d/audio/SoundBuffer.class b/build/_compileJava_2/com/mojang/blaze3d/audio/SoundBuffer.class new file mode 100644 index 000000000..ed4e293aa Binary files /dev/null and b/build/_compileJava_2/com/mojang/blaze3d/audio/SoundBuffer.class differ diff --git a/build/_compileJava_2/com/mojang/blaze3d/audio/package-info.class b/build/_compileJava_2/com/mojang/blaze3d/audio/package-info.class new file mode 100644 index 000000000..6ccdf20c7 Binary files /dev/null and b/build/_compileJava_2/com/mojang/blaze3d/audio/package-info.class differ diff --git a/build/_compileJava_2/com/mojang/blaze3d/font/GlyphInfo$SpaceGlyphInfo.class b/build/_compileJava_2/com/mojang/blaze3d/font/GlyphInfo$SpaceGlyphInfo.class new file mode 100644 index 000000000..eca427d45 Binary files /dev/null and b/build/_compileJava_2/com/mojang/blaze3d/font/GlyphInfo$SpaceGlyphInfo.class differ diff --git a/build/_compileJava_2/com/mojang/blaze3d/font/GlyphInfo.class b/build/_compileJava_2/com/mojang/blaze3d/font/GlyphInfo.class new file mode 100644 index 000000000..c8cd3def2 Binary files /dev/null and b/build/_compileJava_2/com/mojang/blaze3d/font/GlyphInfo.class differ diff --git a/build/_compileJava_2/com/mojang/blaze3d/font/GlyphProvider.class b/build/_compileJava_2/com/mojang/blaze3d/font/GlyphProvider.class new file mode 100644 index 000000000..92734e68f Binary files /dev/null and b/build/_compileJava_2/com/mojang/blaze3d/font/GlyphProvider.class differ diff --git a/build/_compileJava_2/com/mojang/blaze3d/font/SheetGlyphInfo.class b/build/_compileJava_2/com/mojang/blaze3d/font/SheetGlyphInfo.class new file mode 100644 index 000000000..810e8c4c3 Binary files /dev/null and b/build/_compileJava_2/com/mojang/blaze3d/font/SheetGlyphInfo.class differ diff --git a/build/_compileJava_2/com/mojang/blaze3d/font/SpaceProvider$Definition.class b/build/_compileJava_2/com/mojang/blaze3d/font/SpaceProvider$Definition.class new file mode 100644 index 000000000..459b3e0d2 Binary files /dev/null and b/build/_compileJava_2/com/mojang/blaze3d/font/SpaceProvider$Definition.class differ diff --git a/build/_compileJava_2/com/mojang/blaze3d/font/SpaceProvider.class b/build/_compileJava_2/com/mojang/blaze3d/font/SpaceProvider.class new file mode 100644 index 000000000..71038cc21 Binary files /dev/null and b/build/_compileJava_2/com/mojang/blaze3d/font/SpaceProvider.class differ diff --git a/build/_compileJava_2/com/mojang/blaze3d/font/TrueTypeGlyphProvider$Glyph$1.class b/build/_compileJava_2/com/mojang/blaze3d/font/TrueTypeGlyphProvider$Glyph$1.class new file mode 100644 index 000000000..89c001052 Binary files /dev/null and b/build/_compileJava_2/com/mojang/blaze3d/font/TrueTypeGlyphProvider$Glyph$1.class differ diff --git a/build/_compileJava_2/com/mojang/blaze3d/font/TrueTypeGlyphProvider$Glyph.class b/build/_compileJava_2/com/mojang/blaze3d/font/TrueTypeGlyphProvider$Glyph.class new file mode 100644 index 000000000..e5b95b9de Binary files /dev/null and b/build/_compileJava_2/com/mojang/blaze3d/font/TrueTypeGlyphProvider$Glyph.class differ diff --git a/build/_compileJava_2/com/mojang/blaze3d/font/TrueTypeGlyphProvider.class b/build/_compileJava_2/com/mojang/blaze3d/font/TrueTypeGlyphProvider.class new file mode 100644 index 000000000..287370c18 Binary files /dev/null and b/build/_compileJava_2/com/mojang/blaze3d/font/TrueTypeGlyphProvider.class differ diff --git a/build/_compileJava_2/com/mojang/blaze3d/font/package-info.class b/build/_compileJava_2/com/mojang/blaze3d/font/package-info.class new file mode 100644 index 000000000..55696560e Binary files /dev/null and b/build/_compileJava_2/com/mojang/blaze3d/font/package-info.class differ diff --git a/build/_compileJava_2/com/mojang/blaze3d/package-info.class b/build/_compileJava_2/com/mojang/blaze3d/package-info.class new file mode 100644 index 000000000..7cb6b25d2 Binary files /dev/null and b/build/_compileJava_2/com/mojang/blaze3d/package-info.class differ diff --git a/build/_compileJava_2/com/mojang/blaze3d/pipeline/MainTarget$AttachmentState.class b/build/_compileJava_2/com/mojang/blaze3d/pipeline/MainTarget$AttachmentState.class new file mode 100644 index 000000000..c093b9017 Binary files /dev/null and b/build/_compileJava_2/com/mojang/blaze3d/pipeline/MainTarget$AttachmentState.class differ diff --git a/build/_compileJava_2/com/mojang/blaze3d/pipeline/MainTarget$Dimension.class b/build/_compileJava_2/com/mojang/blaze3d/pipeline/MainTarget$Dimension.class new file mode 100644 index 000000000..5887f756c Binary files /dev/null and b/build/_compileJava_2/com/mojang/blaze3d/pipeline/MainTarget$Dimension.class differ diff --git a/build/_compileJava_2/com/mojang/blaze3d/pipeline/MainTarget.class b/build/_compileJava_2/com/mojang/blaze3d/pipeline/MainTarget.class new file mode 100644 index 000000000..08112eb66 Binary files /dev/null and b/build/_compileJava_2/com/mojang/blaze3d/pipeline/MainTarget.class differ diff --git a/build/_compileJava_2/com/mojang/blaze3d/pipeline/RenderCall.class b/build/_compileJava_2/com/mojang/blaze3d/pipeline/RenderCall.class new file mode 100644 index 000000000..ecf29c6c3 Binary files /dev/null and b/build/_compileJava_2/com/mojang/blaze3d/pipeline/RenderCall.class differ diff --git a/build/_compileJava_2/com/mojang/blaze3d/pipeline/RenderPipeline.class b/build/_compileJava_2/com/mojang/blaze3d/pipeline/RenderPipeline.class new file mode 100644 index 000000000..b2a33c538 Binary files /dev/null and b/build/_compileJava_2/com/mojang/blaze3d/pipeline/RenderPipeline.class differ diff --git a/build/_compileJava_2/com/mojang/blaze3d/pipeline/RenderTarget.class b/build/_compileJava_2/com/mojang/blaze3d/pipeline/RenderTarget.class new file mode 100644 index 000000000..882b9ec4c Binary files /dev/null and b/build/_compileJava_2/com/mojang/blaze3d/pipeline/RenderTarget.class differ diff --git a/build/_compileJava_2/com/mojang/blaze3d/pipeline/TextureTarget.class b/build/_compileJava_2/com/mojang/blaze3d/pipeline/TextureTarget.class new file mode 100644 index 000000000..701594a80 Binary files /dev/null and b/build/_compileJava_2/com/mojang/blaze3d/pipeline/TextureTarget.class differ diff --git a/build/_compileJava_2/com/mojang/blaze3d/pipeline/package-info.class b/build/_compileJava_2/com/mojang/blaze3d/pipeline/package-info.class new file mode 100644 index 000000000..90df53259 Binary files /dev/null and b/build/_compileJava_2/com/mojang/blaze3d/pipeline/package-info.class differ diff --git a/build/_compileJava_2/com/mojang/blaze3d/platform/ClipboardManager.class b/build/_compileJava_2/com/mojang/blaze3d/platform/ClipboardManager.class new file mode 100644 index 000000000..7b1487d3c Binary files /dev/null and b/build/_compileJava_2/com/mojang/blaze3d/platform/ClipboardManager.class differ diff --git a/build/_compileJava_2/com/mojang/blaze3d/platform/DebugMemoryUntracker.class b/build/_compileJava_2/com/mojang/blaze3d/platform/DebugMemoryUntracker.class new file mode 100644 index 000000000..fcb0cf5ec Binary files /dev/null and b/build/_compileJava_2/com/mojang/blaze3d/platform/DebugMemoryUntracker.class differ diff --git a/build/_compileJava_2/com/mojang/blaze3d/platform/DisplayData.class b/build/_compileJava_2/com/mojang/blaze3d/platform/DisplayData.class new file mode 100644 index 000000000..60242afc5 Binary files /dev/null and b/build/_compileJava_2/com/mojang/blaze3d/platform/DisplayData.class differ diff --git a/build/_compileJava_2/com/mojang/blaze3d/platform/GLX.class b/build/_compileJava_2/com/mojang/blaze3d/platform/GLX.class new file mode 100644 index 000000000..01ecbee4c Binary files /dev/null and b/build/_compileJava_2/com/mojang/blaze3d/platform/GLX.class differ diff --git a/build/_compileJava_2/com/mojang/blaze3d/platform/GlConst.class b/build/_compileJava_2/com/mojang/blaze3d/platform/GlConst.class new file mode 100644 index 000000000..6d6163b59 Binary files /dev/null and b/build/_compileJava_2/com/mojang/blaze3d/platform/GlConst.class differ diff --git a/build/_compileJava_2/com/mojang/blaze3d/platform/GlDebug$LogEntry.class b/build/_compileJava_2/com/mojang/blaze3d/platform/GlDebug$LogEntry.class new file mode 100644 index 000000000..b8e0e7e8a Binary files /dev/null and b/build/_compileJava_2/com/mojang/blaze3d/platform/GlDebug$LogEntry.class differ diff --git a/build/_compileJava_2/com/mojang/blaze3d/platform/GlDebug.class b/build/_compileJava_2/com/mojang/blaze3d/platform/GlDebug.class new file mode 100644 index 000000000..d7dc14928 Binary files /dev/null and b/build/_compileJava_2/com/mojang/blaze3d/platform/GlDebug.class differ diff --git a/build/_compileJava_2/com/mojang/blaze3d/platform/GlStateManager$BlendState.class b/build/_compileJava_2/com/mojang/blaze3d/platform/GlStateManager$BlendState.class new file mode 100644 index 000000000..1facf0fb2 Binary files /dev/null and b/build/_compileJava_2/com/mojang/blaze3d/platform/GlStateManager$BlendState.class differ diff --git a/build/_compileJava_2/com/mojang/blaze3d/platform/GlStateManager$BooleanState.class b/build/_compileJava_2/com/mojang/blaze3d/platform/GlStateManager$BooleanState.class new file mode 100644 index 000000000..4efdd5b7b Binary files /dev/null and b/build/_compileJava_2/com/mojang/blaze3d/platform/GlStateManager$BooleanState.class differ diff --git a/build/_compileJava_2/com/mojang/blaze3d/platform/GlStateManager$ColorLogicState.class b/build/_compileJava_2/com/mojang/blaze3d/platform/GlStateManager$ColorLogicState.class new file mode 100644 index 000000000..242781d4f Binary files /dev/null and b/build/_compileJava_2/com/mojang/blaze3d/platform/GlStateManager$ColorLogicState.class differ diff --git a/build/_compileJava_2/com/mojang/blaze3d/platform/GlStateManager$ColorMask.class b/build/_compileJava_2/com/mojang/blaze3d/platform/GlStateManager$ColorMask.class new file mode 100644 index 000000000..da70520a6 Binary files /dev/null and b/build/_compileJava_2/com/mojang/blaze3d/platform/GlStateManager$ColorMask.class differ diff --git a/build/_compileJava_2/com/mojang/blaze3d/platform/GlStateManager$CullState.class b/build/_compileJava_2/com/mojang/blaze3d/platform/GlStateManager$CullState.class new file mode 100644 index 000000000..eda61760c Binary files /dev/null and b/build/_compileJava_2/com/mojang/blaze3d/platform/GlStateManager$CullState.class differ diff --git a/build/_compileJava_2/com/mojang/blaze3d/platform/GlStateManager$DepthState.class b/build/_compileJava_2/com/mojang/blaze3d/platform/GlStateManager$DepthState.class new file mode 100644 index 000000000..6f3bec17c Binary files /dev/null and b/build/_compileJava_2/com/mojang/blaze3d/platform/GlStateManager$DepthState.class differ diff --git a/build/_compileJava_2/com/mojang/blaze3d/platform/GlStateManager$DestFactor.class b/build/_compileJava_2/com/mojang/blaze3d/platform/GlStateManager$DestFactor.class new file mode 100644 index 000000000..8f337d171 Binary files /dev/null and b/build/_compileJava_2/com/mojang/blaze3d/platform/GlStateManager$DestFactor.class differ diff --git a/build/_compileJava_2/com/mojang/blaze3d/platform/GlStateManager$LogicOp.class b/build/_compileJava_2/com/mojang/blaze3d/platform/GlStateManager$LogicOp.class new file mode 100644 index 000000000..212025a83 Binary files /dev/null and b/build/_compileJava_2/com/mojang/blaze3d/platform/GlStateManager$LogicOp.class differ diff --git a/build/_compileJava_2/com/mojang/blaze3d/platform/GlStateManager$PolygonOffsetState.class b/build/_compileJava_2/com/mojang/blaze3d/platform/GlStateManager$PolygonOffsetState.class new file mode 100644 index 000000000..40a5d3e7a Binary files /dev/null and b/build/_compileJava_2/com/mojang/blaze3d/platform/GlStateManager$PolygonOffsetState.class differ diff --git a/build/_compileJava_2/com/mojang/blaze3d/platform/GlStateManager$ScissorState.class b/build/_compileJava_2/com/mojang/blaze3d/platform/GlStateManager$ScissorState.class new file mode 100644 index 000000000..9d15cbe75 Binary files /dev/null and b/build/_compileJava_2/com/mojang/blaze3d/platform/GlStateManager$ScissorState.class differ diff --git a/build/_compileJava_2/com/mojang/blaze3d/platform/GlStateManager$SourceFactor.class b/build/_compileJava_2/com/mojang/blaze3d/platform/GlStateManager$SourceFactor.class new file mode 100644 index 000000000..96dc280f6 Binary files /dev/null and b/build/_compileJava_2/com/mojang/blaze3d/platform/GlStateManager$SourceFactor.class differ diff --git a/build/_compileJava_2/com/mojang/blaze3d/platform/GlStateManager$StencilFunc.class b/build/_compileJava_2/com/mojang/blaze3d/platform/GlStateManager$StencilFunc.class new file mode 100644 index 000000000..f524a24c8 Binary files /dev/null and b/build/_compileJava_2/com/mojang/blaze3d/platform/GlStateManager$StencilFunc.class differ diff --git a/build/_compileJava_2/com/mojang/blaze3d/platform/GlStateManager$StencilState.class b/build/_compileJava_2/com/mojang/blaze3d/platform/GlStateManager$StencilState.class new file mode 100644 index 000000000..a8fcb8645 Binary files /dev/null and b/build/_compileJava_2/com/mojang/blaze3d/platform/GlStateManager$StencilState.class differ diff --git a/build/_compileJava_2/com/mojang/blaze3d/platform/GlStateManager$TextureState.class b/build/_compileJava_2/com/mojang/blaze3d/platform/GlStateManager$TextureState.class new file mode 100644 index 000000000..e90ef6142 Binary files /dev/null and b/build/_compileJava_2/com/mojang/blaze3d/platform/GlStateManager$TextureState.class differ diff --git a/build/_compileJava_2/com/mojang/blaze3d/platform/GlStateManager$Viewport.class b/build/_compileJava_2/com/mojang/blaze3d/platform/GlStateManager$Viewport.class new file mode 100644 index 000000000..5ed8e23e9 Binary files /dev/null and b/build/_compileJava_2/com/mojang/blaze3d/platform/GlStateManager$Viewport.class differ diff --git a/build/_compileJava_2/com/mojang/blaze3d/platform/GlStateManager.class b/build/_compileJava_2/com/mojang/blaze3d/platform/GlStateManager.class new file mode 100644 index 000000000..72510b13a Binary files /dev/null and b/build/_compileJava_2/com/mojang/blaze3d/platform/GlStateManager.class differ diff --git a/build/_compileJava_2/com/mojang/blaze3d/platform/GlUtil.class b/build/_compileJava_2/com/mojang/blaze3d/platform/GlUtil.class new file mode 100644 index 000000000..ac0e54e7b Binary files /dev/null and b/build/_compileJava_2/com/mojang/blaze3d/platform/GlUtil.class differ diff --git a/build/_compileJava_2/com/mojang/blaze3d/platform/IconSet.class b/build/_compileJava_2/com/mojang/blaze3d/platform/IconSet.class new file mode 100644 index 000000000..663d5d592 Binary files /dev/null and b/build/_compileJava_2/com/mojang/blaze3d/platform/IconSet.class differ diff --git a/build/_compileJava_2/com/mojang/blaze3d/platform/InputConstants$Key.class b/build/_compileJava_2/com/mojang/blaze3d/platform/InputConstants$Key.class new file mode 100644 index 000000000..6c0f2c25a Binary files /dev/null and b/build/_compileJava_2/com/mojang/blaze3d/platform/InputConstants$Key.class differ diff --git a/build/_compileJava_2/com/mojang/blaze3d/platform/InputConstants$Type.class b/build/_compileJava_2/com/mojang/blaze3d/platform/InputConstants$Type.class new file mode 100644 index 000000000..9bfcfee4f Binary files /dev/null and b/build/_compileJava_2/com/mojang/blaze3d/platform/InputConstants$Type.class differ diff --git a/build/_compileJava_2/com/mojang/blaze3d/platform/InputConstants.class b/build/_compileJava_2/com/mojang/blaze3d/platform/InputConstants.class new file mode 100644 index 000000000..1ca7bbf8c Binary files /dev/null and b/build/_compileJava_2/com/mojang/blaze3d/platform/InputConstants.class differ diff --git a/build/_compileJava_2/com/mojang/blaze3d/platform/Lighting.class b/build/_compileJava_2/com/mojang/blaze3d/platform/Lighting.class new file mode 100644 index 000000000..228339cda Binary files /dev/null and b/build/_compileJava_2/com/mojang/blaze3d/platform/Lighting.class differ diff --git a/build/_compileJava_2/com/mojang/blaze3d/platform/MacosUtil.class b/build/_compileJava_2/com/mojang/blaze3d/platform/MacosUtil.class new file mode 100644 index 000000000..a2f57abb4 Binary files /dev/null and b/build/_compileJava_2/com/mojang/blaze3d/platform/MacosUtil.class differ diff --git a/build/_compileJava_2/com/mojang/blaze3d/platform/MemoryTracker.class b/build/_compileJava_2/com/mojang/blaze3d/platform/MemoryTracker.class new file mode 100644 index 000000000..0bb834642 Binary files /dev/null and b/build/_compileJava_2/com/mojang/blaze3d/platform/MemoryTracker.class differ diff --git a/build/_compileJava_2/com/mojang/blaze3d/platform/Monitor.class b/build/_compileJava_2/com/mojang/blaze3d/platform/Monitor.class new file mode 100644 index 000000000..7baa6aea5 Binary files /dev/null and b/build/_compileJava_2/com/mojang/blaze3d/platform/Monitor.class differ diff --git a/build/_compileJava_2/com/mojang/blaze3d/platform/MonitorCreator.class b/build/_compileJava_2/com/mojang/blaze3d/platform/MonitorCreator.class new file mode 100644 index 000000000..f45503e1a Binary files /dev/null and b/build/_compileJava_2/com/mojang/blaze3d/platform/MonitorCreator.class differ diff --git a/build/_compileJava_2/com/mojang/blaze3d/platform/NativeImage$Format.class b/build/_compileJava_2/com/mojang/blaze3d/platform/NativeImage$Format.class new file mode 100644 index 000000000..0fbc610c4 Binary files /dev/null and b/build/_compileJava_2/com/mojang/blaze3d/platform/NativeImage$Format.class differ diff --git a/build/_compileJava_2/com/mojang/blaze3d/platform/NativeImage$InternalGlFormat.class b/build/_compileJava_2/com/mojang/blaze3d/platform/NativeImage$InternalGlFormat.class new file mode 100644 index 000000000..7cbf60033 Binary files /dev/null and b/build/_compileJava_2/com/mojang/blaze3d/platform/NativeImage$InternalGlFormat.class differ diff --git a/build/_compileJava_2/com/mojang/blaze3d/platform/NativeImage$WriteCallback.class b/build/_compileJava_2/com/mojang/blaze3d/platform/NativeImage$WriteCallback.class new file mode 100644 index 000000000..17ff18fbf Binary files /dev/null and b/build/_compileJava_2/com/mojang/blaze3d/platform/NativeImage$WriteCallback.class differ diff --git a/build/_compileJava_2/com/mojang/blaze3d/platform/NativeImage.class b/build/_compileJava_2/com/mojang/blaze3d/platform/NativeImage.class new file mode 100644 index 000000000..11ae3f1b5 Binary files /dev/null and b/build/_compileJava_2/com/mojang/blaze3d/platform/NativeImage.class differ diff --git a/build/_compileJava_2/com/mojang/blaze3d/platform/ScreenManager.class b/build/_compileJava_2/com/mojang/blaze3d/platform/ScreenManager.class new file mode 100644 index 000000000..6ae9fb47d Binary files /dev/null and b/build/_compileJava_2/com/mojang/blaze3d/platform/ScreenManager.class differ diff --git a/build/_compileJava_2/com/mojang/blaze3d/platform/TextureUtil.class b/build/_compileJava_2/com/mojang/blaze3d/platform/TextureUtil.class new file mode 100644 index 000000000..3bbac6e32 Binary files /dev/null and b/build/_compileJava_2/com/mojang/blaze3d/platform/TextureUtil.class differ diff --git a/build/_compileJava_2/com/mojang/blaze3d/platform/VideoMode.class b/build/_compileJava_2/com/mojang/blaze3d/platform/VideoMode.class new file mode 100644 index 000000000..d8eda7455 Binary files /dev/null and b/build/_compileJava_2/com/mojang/blaze3d/platform/VideoMode.class differ diff --git a/build/_compileJava_2/com/mojang/blaze3d/platform/Window$WindowInitFailed.class b/build/_compileJava_2/com/mojang/blaze3d/platform/Window$WindowInitFailed.class new file mode 100644 index 000000000..7f35b71b8 Binary files /dev/null and b/build/_compileJava_2/com/mojang/blaze3d/platform/Window$WindowInitFailed.class differ diff --git a/build/_compileJava_2/com/mojang/blaze3d/platform/Window.class b/build/_compileJava_2/com/mojang/blaze3d/platform/Window.class new file mode 100644 index 000000000..f51dc5d29 Binary files /dev/null and b/build/_compileJava_2/com/mojang/blaze3d/platform/Window.class differ diff --git a/build/_compileJava_2/com/mojang/blaze3d/platform/WindowEventHandler.class b/build/_compileJava_2/com/mojang/blaze3d/platform/WindowEventHandler.class new file mode 100644 index 000000000..1a85b3f03 Binary files /dev/null and b/build/_compileJava_2/com/mojang/blaze3d/platform/WindowEventHandler.class differ diff --git a/build/_compileJava_2/com/mojang/blaze3d/platform/package-info.class b/build/_compileJava_2/com/mojang/blaze3d/platform/package-info.class new file mode 100644 index 000000000..1525a6b65 Binary files /dev/null and b/build/_compileJava_2/com/mojang/blaze3d/platform/package-info.class differ diff --git a/build/_compileJava_2/com/mojang/blaze3d/preprocessor/GlslPreprocessor$Context.class b/build/_compileJava_2/com/mojang/blaze3d/preprocessor/GlslPreprocessor$Context.class new file mode 100644 index 000000000..f7ec78458 Binary files /dev/null and b/build/_compileJava_2/com/mojang/blaze3d/preprocessor/GlslPreprocessor$Context.class differ diff --git a/build/_compileJava_2/com/mojang/blaze3d/preprocessor/GlslPreprocessor.class b/build/_compileJava_2/com/mojang/blaze3d/preprocessor/GlslPreprocessor.class new file mode 100644 index 000000000..63b1fba17 Binary files /dev/null and b/build/_compileJava_2/com/mojang/blaze3d/preprocessor/GlslPreprocessor.class differ diff --git a/build/_compileJava_2/com/mojang/blaze3d/preprocessor/package-info.class b/build/_compileJava_2/com/mojang/blaze3d/preprocessor/package-info.class new file mode 100644 index 000000000..8e82954a2 Binary files /dev/null and b/build/_compileJava_2/com/mojang/blaze3d/preprocessor/package-info.class differ diff --git a/build/_compileJava_2/com/mojang/blaze3d/shaders/AbstractUniform.class b/build/_compileJava_2/com/mojang/blaze3d/shaders/AbstractUniform.class new file mode 100644 index 000000000..6b212d91a Binary files /dev/null and b/build/_compileJava_2/com/mojang/blaze3d/shaders/AbstractUniform.class differ diff --git a/build/_compileJava_2/com/mojang/blaze3d/shaders/BlendMode.class b/build/_compileJava_2/com/mojang/blaze3d/shaders/BlendMode.class new file mode 100644 index 000000000..65d7177d6 Binary files /dev/null and b/build/_compileJava_2/com/mojang/blaze3d/shaders/BlendMode.class differ diff --git a/build/_compileJava_2/com/mojang/blaze3d/shaders/Effect.class b/build/_compileJava_2/com/mojang/blaze3d/shaders/Effect.class new file mode 100644 index 000000000..2dc3fd8cd Binary files /dev/null and b/build/_compileJava_2/com/mojang/blaze3d/shaders/Effect.class differ diff --git a/build/_compileJava_2/com/mojang/blaze3d/shaders/EffectProgram$1.class b/build/_compileJava_2/com/mojang/blaze3d/shaders/EffectProgram$1.class new file mode 100644 index 000000000..622ea60b7 Binary files /dev/null and b/build/_compileJava_2/com/mojang/blaze3d/shaders/EffectProgram$1.class differ diff --git a/build/_compileJava_2/com/mojang/blaze3d/shaders/EffectProgram.class b/build/_compileJava_2/com/mojang/blaze3d/shaders/EffectProgram.class new file mode 100644 index 000000000..d3d17ea12 Binary files /dev/null and b/build/_compileJava_2/com/mojang/blaze3d/shaders/EffectProgram.class differ diff --git a/build/_compileJava_2/com/mojang/blaze3d/shaders/FogShape.class b/build/_compileJava_2/com/mojang/blaze3d/shaders/FogShape.class new file mode 100644 index 000000000..4ca4a1f16 Binary files /dev/null and b/build/_compileJava_2/com/mojang/blaze3d/shaders/FogShape.class differ diff --git a/build/_compileJava_2/com/mojang/blaze3d/shaders/Program$Type.class b/build/_compileJava_2/com/mojang/blaze3d/shaders/Program$Type.class new file mode 100644 index 000000000..e93649499 Binary files /dev/null and b/build/_compileJava_2/com/mojang/blaze3d/shaders/Program$Type.class differ diff --git a/build/_compileJava_2/com/mojang/blaze3d/shaders/Program.class b/build/_compileJava_2/com/mojang/blaze3d/shaders/Program.class new file mode 100644 index 000000000..828fa99de Binary files /dev/null and b/build/_compileJava_2/com/mojang/blaze3d/shaders/Program.class differ diff --git a/build/_compileJava_2/com/mojang/blaze3d/shaders/ProgramManager.class b/build/_compileJava_2/com/mojang/blaze3d/shaders/ProgramManager.class new file mode 100644 index 000000000..14fc6bf35 Binary files /dev/null and b/build/_compileJava_2/com/mojang/blaze3d/shaders/ProgramManager.class differ diff --git a/build/_compileJava_2/com/mojang/blaze3d/shaders/Shader.class b/build/_compileJava_2/com/mojang/blaze3d/shaders/Shader.class new file mode 100644 index 000000000..847a99b51 Binary files /dev/null and b/build/_compileJava_2/com/mojang/blaze3d/shaders/Shader.class differ diff --git a/build/_compileJava_2/com/mojang/blaze3d/shaders/Uniform.class b/build/_compileJava_2/com/mojang/blaze3d/shaders/Uniform.class new file mode 100644 index 000000000..096ec2724 Binary files /dev/null and b/build/_compileJava_2/com/mojang/blaze3d/shaders/Uniform.class differ diff --git a/build/_compileJava_2/com/mojang/blaze3d/shaders/package-info.class b/build/_compileJava_2/com/mojang/blaze3d/shaders/package-info.class new file mode 100644 index 000000000..338a914d1 Binary files /dev/null and b/build/_compileJava_2/com/mojang/blaze3d/shaders/package-info.class differ diff --git a/build/_compileJava_2/com/mojang/blaze3d/systems/RenderSystem$1.class b/build/_compileJava_2/com/mojang/blaze3d/systems/RenderSystem$1.class new file mode 100644 index 000000000..5b4c540c0 Binary files /dev/null and b/build/_compileJava_2/com/mojang/blaze3d/systems/RenderSystem$1.class differ diff --git a/build/_compileJava_2/com/mojang/blaze3d/systems/RenderSystem$AutoStorageIndexBuffer$IndexGenerator.class b/build/_compileJava_2/com/mojang/blaze3d/systems/RenderSystem$AutoStorageIndexBuffer$IndexGenerator.class new file mode 100644 index 000000000..a62776361 Binary files /dev/null and b/build/_compileJava_2/com/mojang/blaze3d/systems/RenderSystem$AutoStorageIndexBuffer$IndexGenerator.class differ diff --git a/build/_compileJava_2/com/mojang/blaze3d/systems/RenderSystem$AutoStorageIndexBuffer.class b/build/_compileJava_2/com/mojang/blaze3d/systems/RenderSystem$AutoStorageIndexBuffer.class new file mode 100644 index 000000000..3c10c1380 Binary files /dev/null and b/build/_compileJava_2/com/mojang/blaze3d/systems/RenderSystem$AutoStorageIndexBuffer.class differ diff --git a/build/_compileJava_2/com/mojang/blaze3d/systems/RenderSystem.class b/build/_compileJava_2/com/mojang/blaze3d/systems/RenderSystem.class new file mode 100644 index 000000000..8e25da401 Binary files /dev/null and b/build/_compileJava_2/com/mojang/blaze3d/systems/RenderSystem.class differ diff --git a/build/_compileJava_2/com/mojang/blaze3d/systems/TimerQuery$FrameProfile.class b/build/_compileJava_2/com/mojang/blaze3d/systems/TimerQuery$FrameProfile.class new file mode 100644 index 000000000..6d6934267 Binary files /dev/null and b/build/_compileJava_2/com/mojang/blaze3d/systems/TimerQuery$FrameProfile.class differ diff --git a/build/_compileJava_2/com/mojang/blaze3d/systems/TimerQuery$TimerQueryLazyLoader.class b/build/_compileJava_2/com/mojang/blaze3d/systems/TimerQuery$TimerQueryLazyLoader.class new file mode 100644 index 000000000..612ef6d7f Binary files /dev/null and b/build/_compileJava_2/com/mojang/blaze3d/systems/TimerQuery$TimerQueryLazyLoader.class differ diff --git a/build/_compileJava_2/com/mojang/blaze3d/systems/TimerQuery.class b/build/_compileJava_2/com/mojang/blaze3d/systems/TimerQuery.class new file mode 100644 index 000000000..5a891c397 Binary files /dev/null and b/build/_compileJava_2/com/mojang/blaze3d/systems/TimerQuery.class differ diff --git a/build/_compileJava_2/com/mojang/blaze3d/systems/package-info.class b/build/_compileJava_2/com/mojang/blaze3d/systems/package-info.class new file mode 100644 index 000000000..eabaa44f5 Binary files /dev/null and b/build/_compileJava_2/com/mojang/blaze3d/systems/package-info.class differ diff --git a/build/_compileJava_2/com/mojang/blaze3d/vertex/BufferBuilder$1.class b/build/_compileJava_2/com/mojang/blaze3d/vertex/BufferBuilder$1.class new file mode 100644 index 000000000..a696d2af5 Binary files /dev/null and b/build/_compileJava_2/com/mojang/blaze3d/vertex/BufferBuilder$1.class differ diff --git a/build/_compileJava_2/com/mojang/blaze3d/vertex/BufferBuilder$DrawState.class b/build/_compileJava_2/com/mojang/blaze3d/vertex/BufferBuilder$DrawState.class new file mode 100644 index 000000000..3f3ed515c Binary files /dev/null and b/build/_compileJava_2/com/mojang/blaze3d/vertex/BufferBuilder$DrawState.class differ diff --git a/build/_compileJava_2/com/mojang/blaze3d/vertex/BufferBuilder$RenderedBuffer.class b/build/_compileJava_2/com/mojang/blaze3d/vertex/BufferBuilder$RenderedBuffer.class new file mode 100644 index 000000000..144ae2c8f Binary files /dev/null and b/build/_compileJava_2/com/mojang/blaze3d/vertex/BufferBuilder$RenderedBuffer.class differ diff --git a/build/_compileJava_2/com/mojang/blaze3d/vertex/BufferBuilder$SortState.class b/build/_compileJava_2/com/mojang/blaze3d/vertex/BufferBuilder$SortState.class new file mode 100644 index 000000000..cef0f8c35 Binary files /dev/null and b/build/_compileJava_2/com/mojang/blaze3d/vertex/BufferBuilder$SortState.class differ diff --git a/build/_compileJava_2/com/mojang/blaze3d/vertex/BufferBuilder.class b/build/_compileJava_2/com/mojang/blaze3d/vertex/BufferBuilder.class new file mode 100644 index 000000000..30f5da3b8 Binary files /dev/null and b/build/_compileJava_2/com/mojang/blaze3d/vertex/BufferBuilder.class differ diff --git a/build/_compileJava_2/com/mojang/blaze3d/vertex/BufferUploader.class b/build/_compileJava_2/com/mojang/blaze3d/vertex/BufferUploader.class new file mode 100644 index 000000000..ff6366bc3 Binary files /dev/null and b/build/_compileJava_2/com/mojang/blaze3d/vertex/BufferUploader.class differ diff --git a/build/_compileJava_2/com/mojang/blaze3d/vertex/BufferVertexConsumer.class b/build/_compileJava_2/com/mojang/blaze3d/vertex/BufferVertexConsumer.class new file mode 100644 index 000000000..f133205c9 Binary files /dev/null and b/build/_compileJava_2/com/mojang/blaze3d/vertex/BufferVertexConsumer.class differ diff --git a/build/_compileJava_2/com/mojang/blaze3d/vertex/DefaultVertexFormat.class b/build/_compileJava_2/com/mojang/blaze3d/vertex/DefaultVertexFormat.class new file mode 100644 index 000000000..a66d2153b Binary files /dev/null and b/build/_compileJava_2/com/mojang/blaze3d/vertex/DefaultVertexFormat.class differ diff --git a/build/_compileJava_2/com/mojang/blaze3d/vertex/DefaultedVertexConsumer.class b/build/_compileJava_2/com/mojang/blaze3d/vertex/DefaultedVertexConsumer.class new file mode 100644 index 000000000..0d5671ef7 Binary files /dev/null and b/build/_compileJava_2/com/mojang/blaze3d/vertex/DefaultedVertexConsumer.class differ diff --git a/build/_compileJava_2/com/mojang/blaze3d/vertex/PoseStack$Pose.class b/build/_compileJava_2/com/mojang/blaze3d/vertex/PoseStack$Pose.class new file mode 100644 index 000000000..560c9666d Binary files /dev/null and b/build/_compileJava_2/com/mojang/blaze3d/vertex/PoseStack$Pose.class differ diff --git a/build/_compileJava_2/com/mojang/blaze3d/vertex/PoseStack.class b/build/_compileJava_2/com/mojang/blaze3d/vertex/PoseStack.class new file mode 100644 index 000000000..7fc600093 Binary files /dev/null and b/build/_compileJava_2/com/mojang/blaze3d/vertex/PoseStack.class differ diff --git a/build/_compileJava_2/com/mojang/blaze3d/vertex/SheetedDecalTextureGenerator.class b/build/_compileJava_2/com/mojang/blaze3d/vertex/SheetedDecalTextureGenerator.class new file mode 100644 index 000000000..761ad81e2 Binary files /dev/null and b/build/_compileJava_2/com/mojang/blaze3d/vertex/SheetedDecalTextureGenerator.class differ diff --git a/build/_compileJava_2/com/mojang/blaze3d/vertex/Tesselator.class b/build/_compileJava_2/com/mojang/blaze3d/vertex/Tesselator.class new file mode 100644 index 000000000..e9cb1078c Binary files /dev/null and b/build/_compileJava_2/com/mojang/blaze3d/vertex/Tesselator.class differ diff --git a/build/_compileJava_2/com/mojang/blaze3d/vertex/VertexBuffer$Usage.class b/build/_compileJava_2/com/mojang/blaze3d/vertex/VertexBuffer$Usage.class new file mode 100644 index 000000000..7d2cbe1c5 Binary files /dev/null and b/build/_compileJava_2/com/mojang/blaze3d/vertex/VertexBuffer$Usage.class differ diff --git a/build/_compileJava_2/com/mojang/blaze3d/vertex/VertexBuffer.class b/build/_compileJava_2/com/mojang/blaze3d/vertex/VertexBuffer.class new file mode 100644 index 000000000..88d86249f Binary files /dev/null and b/build/_compileJava_2/com/mojang/blaze3d/vertex/VertexBuffer.class differ diff --git a/build/_compileJava_2/com/mojang/blaze3d/vertex/VertexConsumer.class b/build/_compileJava_2/com/mojang/blaze3d/vertex/VertexConsumer.class new file mode 100644 index 000000000..dd961ea77 Binary files /dev/null and b/build/_compileJava_2/com/mojang/blaze3d/vertex/VertexConsumer.class differ diff --git a/build/_compileJava_2/com/mojang/blaze3d/vertex/VertexFormat$1.class b/build/_compileJava_2/com/mojang/blaze3d/vertex/VertexFormat$1.class new file mode 100644 index 000000000..f466f2917 Binary files /dev/null and b/build/_compileJava_2/com/mojang/blaze3d/vertex/VertexFormat$1.class differ diff --git a/build/_compileJava_2/com/mojang/blaze3d/vertex/VertexFormat$IndexType.class b/build/_compileJava_2/com/mojang/blaze3d/vertex/VertexFormat$IndexType.class new file mode 100644 index 000000000..7382870c4 Binary files /dev/null and b/build/_compileJava_2/com/mojang/blaze3d/vertex/VertexFormat$IndexType.class differ diff --git a/build/_compileJava_2/com/mojang/blaze3d/vertex/VertexFormat$Mode.class b/build/_compileJava_2/com/mojang/blaze3d/vertex/VertexFormat$Mode.class new file mode 100644 index 000000000..ba85b42f4 Binary files /dev/null and b/build/_compileJava_2/com/mojang/blaze3d/vertex/VertexFormat$Mode.class differ diff --git a/build/_compileJava_2/com/mojang/blaze3d/vertex/VertexFormat.class b/build/_compileJava_2/com/mojang/blaze3d/vertex/VertexFormat.class new file mode 100644 index 000000000..bae1a1500 Binary files /dev/null and b/build/_compileJava_2/com/mojang/blaze3d/vertex/VertexFormat.class differ diff --git a/build/_compileJava_2/com/mojang/blaze3d/vertex/VertexFormatElement$Type.class b/build/_compileJava_2/com/mojang/blaze3d/vertex/VertexFormatElement$Type.class new file mode 100644 index 000000000..6199b2954 Binary files /dev/null and b/build/_compileJava_2/com/mojang/blaze3d/vertex/VertexFormatElement$Type.class differ diff --git a/build/_compileJava_2/com/mojang/blaze3d/vertex/VertexFormatElement$Usage$ClearState.class b/build/_compileJava_2/com/mojang/blaze3d/vertex/VertexFormatElement$Usage$ClearState.class new file mode 100644 index 000000000..5645f5e57 Binary files /dev/null and b/build/_compileJava_2/com/mojang/blaze3d/vertex/VertexFormatElement$Usage$ClearState.class differ diff --git a/build/_compileJava_2/com/mojang/blaze3d/vertex/VertexFormatElement$Usage$SetupState.class b/build/_compileJava_2/com/mojang/blaze3d/vertex/VertexFormatElement$Usage$SetupState.class new file mode 100644 index 000000000..30d044b11 Binary files /dev/null and b/build/_compileJava_2/com/mojang/blaze3d/vertex/VertexFormatElement$Usage$SetupState.class differ diff --git a/build/_compileJava_2/com/mojang/blaze3d/vertex/VertexFormatElement$Usage.class b/build/_compileJava_2/com/mojang/blaze3d/vertex/VertexFormatElement$Usage.class new file mode 100644 index 000000000..0c089cde4 Binary files /dev/null and b/build/_compileJava_2/com/mojang/blaze3d/vertex/VertexFormatElement$Usage.class differ diff --git a/build/_compileJava_2/com/mojang/blaze3d/vertex/VertexFormatElement.class b/build/_compileJava_2/com/mojang/blaze3d/vertex/VertexFormatElement.class new file mode 100644 index 000000000..94bdef77f Binary files /dev/null and b/build/_compileJava_2/com/mojang/blaze3d/vertex/VertexFormatElement.class differ diff --git a/build/_compileJava_2/com/mojang/blaze3d/vertex/VertexMultiConsumer$Double.class b/build/_compileJava_2/com/mojang/blaze3d/vertex/VertexMultiConsumer$Double.class new file mode 100644 index 000000000..562b57147 Binary files /dev/null and b/build/_compileJava_2/com/mojang/blaze3d/vertex/VertexMultiConsumer$Double.class differ diff --git a/build/_compileJava_2/com/mojang/blaze3d/vertex/VertexMultiConsumer$Multiple.class b/build/_compileJava_2/com/mojang/blaze3d/vertex/VertexMultiConsumer$Multiple.class new file mode 100644 index 000000000..812efd715 Binary files /dev/null and b/build/_compileJava_2/com/mojang/blaze3d/vertex/VertexMultiConsumer$Multiple.class differ diff --git a/build/_compileJava_2/com/mojang/blaze3d/vertex/VertexMultiConsumer.class b/build/_compileJava_2/com/mojang/blaze3d/vertex/VertexMultiConsumer.class new file mode 100644 index 000000000..6c758422a Binary files /dev/null and b/build/_compileJava_2/com/mojang/blaze3d/vertex/VertexMultiConsumer.class differ diff --git a/build/_compileJava_2/com/mojang/blaze3d/vertex/VertexSorting$DistanceFunction.class b/build/_compileJava_2/com/mojang/blaze3d/vertex/VertexSorting$DistanceFunction.class new file mode 100644 index 000000000..47a6d9a60 Binary files /dev/null and b/build/_compileJava_2/com/mojang/blaze3d/vertex/VertexSorting$DistanceFunction.class differ diff --git a/build/_compileJava_2/com/mojang/blaze3d/vertex/VertexSorting.class b/build/_compileJava_2/com/mojang/blaze3d/vertex/VertexSorting.class new file mode 100644 index 000000000..e15da2c67 Binary files /dev/null and b/build/_compileJava_2/com/mojang/blaze3d/vertex/VertexSorting.class differ diff --git a/build/_compileJava_2/com/mojang/blaze3d/vertex/package-info.class b/build/_compileJava_2/com/mojang/blaze3d/vertex/package-info.class new file mode 100644 index 000000000..c4e080615 Binary files /dev/null and b/build/_compileJava_2/com/mojang/blaze3d/vertex/package-info.class differ diff --git a/build/_compileJava_2/com/mojang/math/Axis.class b/build/_compileJava_2/com/mojang/math/Axis.class new file mode 100644 index 000000000..59904c38e Binary files /dev/null and b/build/_compileJava_2/com/mojang/math/Axis.class differ diff --git a/build/_compileJava_2/com/mojang/math/Constants.class b/build/_compileJava_2/com/mojang/math/Constants.class new file mode 100644 index 000000000..a9d2846ca Binary files /dev/null and b/build/_compileJava_2/com/mojang/math/Constants.class differ diff --git a/build/_compileJava_2/com/mojang/math/Divisor.class b/build/_compileJava_2/com/mojang/math/Divisor.class new file mode 100644 index 000000000..4a11a2136 Binary files /dev/null and b/build/_compileJava_2/com/mojang/math/Divisor.class differ diff --git a/build/_compileJava_2/com/mojang/math/FieldsAreNonnullByDefault.class b/build/_compileJava_2/com/mojang/math/FieldsAreNonnullByDefault.class new file mode 100644 index 000000000..5c1f91b0a Binary files /dev/null and b/build/_compileJava_2/com/mojang/math/FieldsAreNonnullByDefault.class differ diff --git a/build/_compileJava_2/com/mojang/math/GivensParameters.class b/build/_compileJava_2/com/mojang/math/GivensParameters.class new file mode 100644 index 000000000..4986b3bb1 Binary files /dev/null and b/build/_compileJava_2/com/mojang/math/GivensParameters.class differ diff --git a/build/_compileJava_2/com/mojang/math/MatrixUtil.class b/build/_compileJava_2/com/mojang/math/MatrixUtil.class new file mode 100644 index 000000000..34db7bf37 Binary files /dev/null and b/build/_compileJava_2/com/mojang/math/MatrixUtil.class differ diff --git a/build/_compileJava_2/com/mojang/math/MethodsReturnNonnullByDefault.class b/build/_compileJava_2/com/mojang/math/MethodsReturnNonnullByDefault.class new file mode 100644 index 000000000..fd848cd2b Binary files /dev/null and b/build/_compileJava_2/com/mojang/math/MethodsReturnNonnullByDefault.class differ diff --git a/build/_compileJava_2/com/mojang/math/OctahedralGroup$1.class b/build/_compileJava_2/com/mojang/math/OctahedralGroup$1.class new file mode 100644 index 000000000..2f11b0842 Binary files /dev/null and b/build/_compileJava_2/com/mojang/math/OctahedralGroup$1.class differ diff --git a/build/_compileJava_2/com/mojang/math/OctahedralGroup.class b/build/_compileJava_2/com/mojang/math/OctahedralGroup.class new file mode 100644 index 000000000..359e2ebca Binary files /dev/null and b/build/_compileJava_2/com/mojang/math/OctahedralGroup.class differ diff --git a/build/_compileJava_2/com/mojang/math/SymmetricGroup3.class b/build/_compileJava_2/com/mojang/math/SymmetricGroup3.class new file mode 100644 index 000000000..db0b33820 Binary files /dev/null and b/build/_compileJava_2/com/mojang/math/SymmetricGroup3.class differ diff --git a/build/_compileJava_2/com/mojang/math/Transformation.class b/build/_compileJava_2/com/mojang/math/Transformation.class new file mode 100644 index 000000000..020f7103d Binary files /dev/null and b/build/_compileJava_2/com/mojang/math/Transformation.class differ diff --git a/build/_compileJava_2/com/mojang/math/package-info.class b/build/_compileJava_2/com/mojang/math/package-info.class new file mode 100644 index 000000000..ff64047bb Binary files /dev/null and b/build/_compileJava_2/com/mojang/math/package-info.class differ diff --git a/build/_compileJava_2/com/mojang/realmsclient/KeyCombo.class b/build/_compileJava_2/com/mojang/realmsclient/KeyCombo.class new file mode 100644 index 000000000..b30761a9f Binary files /dev/null and b/build/_compileJava_2/com/mojang/realmsclient/KeyCombo.class differ diff --git a/build/_compileJava_2/com/mojang/realmsclient/RealmsMainScreen$1.class b/build/_compileJava_2/com/mojang/realmsclient/RealmsMainScreen$1.class new file mode 100644 index 000000000..c44b96bb1 Binary files /dev/null and b/build/_compileJava_2/com/mojang/realmsclient/RealmsMainScreen$1.class differ diff --git a/build/_compileJava_2/com/mojang/realmsclient/RealmsMainScreen$2.class b/build/_compileJava_2/com/mojang/realmsclient/RealmsMainScreen$2.class new file mode 100644 index 000000000..1c77420c1 Binary files /dev/null and b/build/_compileJava_2/com/mojang/realmsclient/RealmsMainScreen$2.class differ diff --git a/build/_compileJava_2/com/mojang/realmsclient/RealmsMainScreen$3.class b/build/_compileJava_2/com/mojang/realmsclient/RealmsMainScreen$3.class new file mode 100644 index 000000000..a1ac314a5 Binary files /dev/null and b/build/_compileJava_2/com/mojang/realmsclient/RealmsMainScreen$3.class differ diff --git a/build/_compileJava_2/com/mojang/realmsclient/RealmsMainScreen$4.class b/build/_compileJava_2/com/mojang/realmsclient/RealmsMainScreen$4.class new file mode 100644 index 000000000..210b1136a Binary files /dev/null and b/build/_compileJava_2/com/mojang/realmsclient/RealmsMainScreen$4.class differ diff --git a/build/_compileJava_2/com/mojang/realmsclient/RealmsMainScreen$5.class b/build/_compileJava_2/com/mojang/realmsclient/RealmsMainScreen$5.class new file mode 100644 index 000000000..9f43634c7 Binary files /dev/null and b/build/_compileJava_2/com/mojang/realmsclient/RealmsMainScreen$5.class differ diff --git a/build/_compileJava_2/com/mojang/realmsclient/RealmsMainScreen$ButtonEntry.class b/build/_compileJava_2/com/mojang/realmsclient/RealmsMainScreen$ButtonEntry.class new file mode 100644 index 000000000..82ede836d Binary files /dev/null and b/build/_compileJava_2/com/mojang/realmsclient/RealmsMainScreen$ButtonEntry.class differ diff --git a/build/_compileJava_2/com/mojang/realmsclient/RealmsMainScreen$CloseButton.class b/build/_compileJava_2/com/mojang/realmsclient/RealmsMainScreen$CloseButton.class new file mode 100644 index 000000000..070499e64 Binary files /dev/null and b/build/_compileJava_2/com/mojang/realmsclient/RealmsMainScreen$CloseButton.class differ diff --git a/build/_compileJava_2/com/mojang/realmsclient/RealmsMainScreen$CrossButton.class b/build/_compileJava_2/com/mojang/realmsclient/RealmsMainScreen$CrossButton.class new file mode 100644 index 000000000..72f7e427d Binary files /dev/null and b/build/_compileJava_2/com/mojang/realmsclient/RealmsMainScreen$CrossButton.class differ diff --git a/build/_compileJava_2/com/mojang/realmsclient/RealmsMainScreen$Entry.class b/build/_compileJava_2/com/mojang/realmsclient/RealmsMainScreen$Entry.class new file mode 100644 index 000000000..bd06ba90c Binary files /dev/null and b/build/_compileJava_2/com/mojang/realmsclient/RealmsMainScreen$Entry.class differ diff --git a/build/_compileJava_2/com/mojang/realmsclient/RealmsMainScreen$NewsButton.class b/build/_compileJava_2/com/mojang/realmsclient/RealmsMainScreen$NewsButton.class new file mode 100644 index 000000000..241307fbc Binary files /dev/null and b/build/_compileJava_2/com/mojang/realmsclient/RealmsMainScreen$NewsButton.class differ diff --git a/build/_compileJava_2/com/mojang/realmsclient/RealmsMainScreen$NotificationMessageEntry.class b/build/_compileJava_2/com/mojang/realmsclient/RealmsMainScreen$NotificationMessageEntry.class new file mode 100644 index 000000000..2c1b76b8c Binary files /dev/null and b/build/_compileJava_2/com/mojang/realmsclient/RealmsMainScreen$NotificationMessageEntry.class differ diff --git a/build/_compileJava_2/com/mojang/realmsclient/RealmsMainScreen$PendingInvitesButton.class b/build/_compileJava_2/com/mojang/realmsclient/RealmsMainScreen$PendingInvitesButton.class new file mode 100644 index 000000000..25364117b Binary files /dev/null and b/build/_compileJava_2/com/mojang/realmsclient/RealmsMainScreen$PendingInvitesButton.class differ diff --git a/build/_compileJava_2/com/mojang/realmsclient/RealmsMainScreen$RealmSelectionList.class b/build/_compileJava_2/com/mojang/realmsclient/RealmsMainScreen$RealmSelectionList.class new file mode 100644 index 000000000..ae13d08b9 Binary files /dev/null and b/build/_compileJava_2/com/mojang/realmsclient/RealmsMainScreen$RealmSelectionList.class differ diff --git a/build/_compileJava_2/com/mojang/realmsclient/RealmsMainScreen$RealmsCall.class b/build/_compileJava_2/com/mojang/realmsclient/RealmsMainScreen$RealmsCall.class new file mode 100644 index 000000000..7a33ea07c Binary files /dev/null and b/build/_compileJava_2/com/mojang/realmsclient/RealmsMainScreen$RealmsCall.class differ diff --git a/build/_compileJava_2/com/mojang/realmsclient/RealmsMainScreen$ServerEntry.class b/build/_compileJava_2/com/mojang/realmsclient/RealmsMainScreen$ServerEntry.class new file mode 100644 index 000000000..de5b24d27 Binary files /dev/null and b/build/_compileJava_2/com/mojang/realmsclient/RealmsMainScreen$ServerEntry.class differ diff --git a/build/_compileJava_2/com/mojang/realmsclient/RealmsMainScreen$TrialEntry.class b/build/_compileJava_2/com/mojang/realmsclient/RealmsMainScreen$TrialEntry.class new file mode 100644 index 000000000..077bfcd92 Binary files /dev/null and b/build/_compileJava_2/com/mojang/realmsclient/RealmsMainScreen$TrialEntry.class differ diff --git a/build/_compileJava_2/com/mojang/realmsclient/RealmsMainScreen.class b/build/_compileJava_2/com/mojang/realmsclient/RealmsMainScreen.class new file mode 100644 index 000000000..4144cef13 Binary files /dev/null and b/build/_compileJava_2/com/mojang/realmsclient/RealmsMainScreen.class differ diff --git a/build/_compileJava_2/com/mojang/realmsclient/Unit.class b/build/_compileJava_2/com/mojang/realmsclient/Unit.class new file mode 100644 index 000000000..f6e0aa187 Binary files /dev/null and b/build/_compileJava_2/com/mojang/realmsclient/Unit.class differ diff --git a/build/_compileJava_2/com/mojang/realmsclient/client/FileDownload$DownloadCountingOutputStream.class b/build/_compileJava_2/com/mojang/realmsclient/client/FileDownload$DownloadCountingOutputStream.class new file mode 100644 index 000000000..ade7c3583 Binary files /dev/null and b/build/_compileJava_2/com/mojang/realmsclient/client/FileDownload$DownloadCountingOutputStream.class differ diff --git a/build/_compileJava_2/com/mojang/realmsclient/client/FileDownload$ProgressListener.class b/build/_compileJava_2/com/mojang/realmsclient/client/FileDownload$ProgressListener.class new file mode 100644 index 000000000..587ea98d0 Binary files /dev/null and b/build/_compileJava_2/com/mojang/realmsclient/client/FileDownload$ProgressListener.class differ diff --git a/build/_compileJava_2/com/mojang/realmsclient/client/FileDownload$ResourcePackProgressListener.class b/build/_compileJava_2/com/mojang/realmsclient/client/FileDownload$ResourcePackProgressListener.class new file mode 100644 index 000000000..ab052fcda Binary files /dev/null and b/build/_compileJava_2/com/mojang/realmsclient/client/FileDownload$ResourcePackProgressListener.class differ diff --git a/build/_compileJava_2/com/mojang/realmsclient/client/FileDownload.class b/build/_compileJava_2/com/mojang/realmsclient/client/FileDownload.class new file mode 100644 index 000000000..8c8f20304 Binary files /dev/null and b/build/_compileJava_2/com/mojang/realmsclient/client/FileDownload.class differ diff --git a/build/_compileJava_2/com/mojang/realmsclient/client/FileUpload$CustomInputStreamEntity.class b/build/_compileJava_2/com/mojang/realmsclient/client/FileUpload$CustomInputStreamEntity.class new file mode 100644 index 000000000..2b6eccdfd Binary files /dev/null and b/build/_compileJava_2/com/mojang/realmsclient/client/FileUpload$CustomInputStreamEntity.class differ diff --git a/build/_compileJava_2/com/mojang/realmsclient/client/FileUpload.class b/build/_compileJava_2/com/mojang/realmsclient/client/FileUpload.class new file mode 100644 index 000000000..f34bbb090 Binary files /dev/null and b/build/_compileJava_2/com/mojang/realmsclient/client/FileUpload.class differ diff --git a/build/_compileJava_2/com/mojang/realmsclient/client/Ping$Region.class b/build/_compileJava_2/com/mojang/realmsclient/client/Ping$Region.class new file mode 100644 index 000000000..a1a71ef9c Binary files /dev/null and b/build/_compileJava_2/com/mojang/realmsclient/client/Ping$Region.class differ diff --git a/build/_compileJava_2/com/mojang/realmsclient/client/Ping.class b/build/_compileJava_2/com/mojang/realmsclient/client/Ping.class new file mode 100644 index 000000000..aad6e2b04 Binary files /dev/null and b/build/_compileJava_2/com/mojang/realmsclient/client/Ping.class differ diff --git a/build/_compileJava_2/com/mojang/realmsclient/client/RealmsClient$CompatibleVersionResponse.class b/build/_compileJava_2/com/mojang/realmsclient/client/RealmsClient$CompatibleVersionResponse.class new file mode 100644 index 000000000..45fb05956 Binary files /dev/null and b/build/_compileJava_2/com/mojang/realmsclient/client/RealmsClient$CompatibleVersionResponse.class differ diff --git a/build/_compileJava_2/com/mojang/realmsclient/client/RealmsClient$Environment.class b/build/_compileJava_2/com/mojang/realmsclient/client/RealmsClient$Environment.class new file mode 100644 index 000000000..6f1a1cb6a Binary files /dev/null and b/build/_compileJava_2/com/mojang/realmsclient/client/RealmsClient$Environment.class differ diff --git a/build/_compileJava_2/com/mojang/realmsclient/client/RealmsClient.class b/build/_compileJava_2/com/mojang/realmsclient/client/RealmsClient.class new file mode 100644 index 000000000..44c1d94a4 Binary files /dev/null and b/build/_compileJava_2/com/mojang/realmsclient/client/RealmsClient.class differ diff --git a/build/_compileJava_2/com/mojang/realmsclient/client/RealmsClientConfig.class b/build/_compileJava_2/com/mojang/realmsclient/client/RealmsClientConfig.class new file mode 100644 index 000000000..9fc099702 Binary files /dev/null and b/build/_compileJava_2/com/mojang/realmsclient/client/RealmsClientConfig.class differ diff --git a/build/_compileJava_2/com/mojang/realmsclient/client/RealmsError.class b/build/_compileJava_2/com/mojang/realmsclient/client/RealmsError.class new file mode 100644 index 000000000..a24c54973 Binary files /dev/null and b/build/_compileJava_2/com/mojang/realmsclient/client/RealmsError.class differ diff --git a/build/_compileJava_2/com/mojang/realmsclient/client/Request$Delete.class b/build/_compileJava_2/com/mojang/realmsclient/client/Request$Delete.class new file mode 100644 index 000000000..9dea9b9f2 Binary files /dev/null and b/build/_compileJava_2/com/mojang/realmsclient/client/Request$Delete.class differ diff --git a/build/_compileJava_2/com/mojang/realmsclient/client/Request$Get.class b/build/_compileJava_2/com/mojang/realmsclient/client/Request$Get.class new file mode 100644 index 000000000..7eae90254 Binary files /dev/null and b/build/_compileJava_2/com/mojang/realmsclient/client/Request$Get.class differ diff --git a/build/_compileJava_2/com/mojang/realmsclient/client/Request$Post.class b/build/_compileJava_2/com/mojang/realmsclient/client/Request$Post.class new file mode 100644 index 000000000..a8b571f53 Binary files /dev/null and b/build/_compileJava_2/com/mojang/realmsclient/client/Request$Post.class differ diff --git a/build/_compileJava_2/com/mojang/realmsclient/client/Request$Put.class b/build/_compileJava_2/com/mojang/realmsclient/client/Request$Put.class new file mode 100644 index 000000000..7dda9d78d Binary files /dev/null and b/build/_compileJava_2/com/mojang/realmsclient/client/Request$Put.class differ diff --git a/build/_compileJava_2/com/mojang/realmsclient/client/Request.class b/build/_compileJava_2/com/mojang/realmsclient/client/Request.class new file mode 100644 index 000000000..72275b63f Binary files /dev/null and b/build/_compileJava_2/com/mojang/realmsclient/client/Request.class differ diff --git a/build/_compileJava_2/com/mojang/realmsclient/client/UploadStatus.class b/build/_compileJava_2/com/mojang/realmsclient/client/UploadStatus.class new file mode 100644 index 000000000..886d5bc0e Binary files /dev/null and b/build/_compileJava_2/com/mojang/realmsclient/client/UploadStatus.class differ diff --git a/build/_compileJava_2/com/mojang/realmsclient/client/package-info.class b/build/_compileJava_2/com/mojang/realmsclient/client/package-info.class new file mode 100644 index 000000000..2ba9fac1e Binary files /dev/null and b/build/_compileJava_2/com/mojang/realmsclient/client/package-info.class differ diff --git a/build/_compileJava_2/com/mojang/realmsclient/dto/Backup.class b/build/_compileJava_2/com/mojang/realmsclient/dto/Backup.class new file mode 100644 index 000000000..46122d418 Binary files /dev/null and b/build/_compileJava_2/com/mojang/realmsclient/dto/Backup.class differ diff --git a/build/_compileJava_2/com/mojang/realmsclient/dto/BackupList.class b/build/_compileJava_2/com/mojang/realmsclient/dto/BackupList.class new file mode 100644 index 000000000..ec5959862 Binary files /dev/null and b/build/_compileJava_2/com/mojang/realmsclient/dto/BackupList.class differ diff --git a/build/_compileJava_2/com/mojang/realmsclient/dto/GuardedSerializer.class b/build/_compileJava_2/com/mojang/realmsclient/dto/GuardedSerializer.class new file mode 100644 index 000000000..aa40fae80 Binary files /dev/null and b/build/_compileJava_2/com/mojang/realmsclient/dto/GuardedSerializer.class differ diff --git a/build/_compileJava_2/com/mojang/realmsclient/dto/Ops.class b/build/_compileJava_2/com/mojang/realmsclient/dto/Ops.class new file mode 100644 index 000000000..0d607b87f Binary files /dev/null and b/build/_compileJava_2/com/mojang/realmsclient/dto/Ops.class differ diff --git a/build/_compileJava_2/com/mojang/realmsclient/dto/PendingInvite.class b/build/_compileJava_2/com/mojang/realmsclient/dto/PendingInvite.class new file mode 100644 index 000000000..2657e9966 Binary files /dev/null and b/build/_compileJava_2/com/mojang/realmsclient/dto/PendingInvite.class differ diff --git a/build/_compileJava_2/com/mojang/realmsclient/dto/PendingInvitesList.class b/build/_compileJava_2/com/mojang/realmsclient/dto/PendingInvitesList.class new file mode 100644 index 000000000..fb6b70afa Binary files /dev/null and b/build/_compileJava_2/com/mojang/realmsclient/dto/PendingInvitesList.class differ diff --git a/build/_compileJava_2/com/mojang/realmsclient/dto/PingResult.class b/build/_compileJava_2/com/mojang/realmsclient/dto/PingResult.class new file mode 100644 index 000000000..cd98d683f Binary files /dev/null and b/build/_compileJava_2/com/mojang/realmsclient/dto/PingResult.class differ diff --git a/build/_compileJava_2/com/mojang/realmsclient/dto/PlayerInfo.class b/build/_compileJava_2/com/mojang/realmsclient/dto/PlayerInfo.class new file mode 100644 index 000000000..efb5d1a9d Binary files /dev/null and b/build/_compileJava_2/com/mojang/realmsclient/dto/PlayerInfo.class differ diff --git a/build/_compileJava_2/com/mojang/realmsclient/dto/RealmsDescriptionDto.class b/build/_compileJava_2/com/mojang/realmsclient/dto/RealmsDescriptionDto.class new file mode 100644 index 000000000..dbb68fd6b Binary files /dev/null and b/build/_compileJava_2/com/mojang/realmsclient/dto/RealmsDescriptionDto.class differ diff --git a/build/_compileJava_2/com/mojang/realmsclient/dto/RealmsNews.class b/build/_compileJava_2/com/mojang/realmsclient/dto/RealmsNews.class new file mode 100644 index 000000000..f640b662b Binary files /dev/null and b/build/_compileJava_2/com/mojang/realmsclient/dto/RealmsNews.class differ diff --git a/build/_compileJava_2/com/mojang/realmsclient/dto/RealmsNotification$VisitUrl.class b/build/_compileJava_2/com/mojang/realmsclient/dto/RealmsNotification$VisitUrl.class new file mode 100644 index 000000000..507e6461a Binary files /dev/null and b/build/_compileJava_2/com/mojang/realmsclient/dto/RealmsNotification$VisitUrl.class differ diff --git a/build/_compileJava_2/com/mojang/realmsclient/dto/RealmsNotification.class b/build/_compileJava_2/com/mojang/realmsclient/dto/RealmsNotification.class new file mode 100644 index 000000000..76b66c3eb Binary files /dev/null and b/build/_compileJava_2/com/mojang/realmsclient/dto/RealmsNotification.class differ diff --git a/build/_compileJava_2/com/mojang/realmsclient/dto/RealmsServer$McoServerComparator.class b/build/_compileJava_2/com/mojang/realmsclient/dto/RealmsServer$McoServerComparator.class new file mode 100644 index 000000000..d8ddb2275 Binary files /dev/null and b/build/_compileJava_2/com/mojang/realmsclient/dto/RealmsServer$McoServerComparator.class differ diff --git a/build/_compileJava_2/com/mojang/realmsclient/dto/RealmsServer$State.class b/build/_compileJava_2/com/mojang/realmsclient/dto/RealmsServer$State.class new file mode 100644 index 000000000..19ce83897 Binary files /dev/null and b/build/_compileJava_2/com/mojang/realmsclient/dto/RealmsServer$State.class differ diff --git a/build/_compileJava_2/com/mojang/realmsclient/dto/RealmsServer$WorldType.class b/build/_compileJava_2/com/mojang/realmsclient/dto/RealmsServer$WorldType.class new file mode 100644 index 000000000..dc8420b1f Binary files /dev/null and b/build/_compileJava_2/com/mojang/realmsclient/dto/RealmsServer$WorldType.class differ diff --git a/build/_compileJava_2/com/mojang/realmsclient/dto/RealmsServer.class b/build/_compileJava_2/com/mojang/realmsclient/dto/RealmsServer.class new file mode 100644 index 000000000..3763ef5f6 Binary files /dev/null and b/build/_compileJava_2/com/mojang/realmsclient/dto/RealmsServer.class differ diff --git a/build/_compileJava_2/com/mojang/realmsclient/dto/RealmsServerAddress.class b/build/_compileJava_2/com/mojang/realmsclient/dto/RealmsServerAddress.class new file mode 100644 index 000000000..1237d91c9 Binary files /dev/null and b/build/_compileJava_2/com/mojang/realmsclient/dto/RealmsServerAddress.class differ diff --git a/build/_compileJava_2/com/mojang/realmsclient/dto/RealmsServerList.class b/build/_compileJava_2/com/mojang/realmsclient/dto/RealmsServerList.class new file mode 100644 index 000000000..6ff28049d Binary files /dev/null and b/build/_compileJava_2/com/mojang/realmsclient/dto/RealmsServerList.class differ diff --git a/build/_compileJava_2/com/mojang/realmsclient/dto/RealmsServerPing.class b/build/_compileJava_2/com/mojang/realmsclient/dto/RealmsServerPing.class new file mode 100644 index 000000000..d558c84f9 Binary files /dev/null and b/build/_compileJava_2/com/mojang/realmsclient/dto/RealmsServerPing.class differ diff --git a/build/_compileJava_2/com/mojang/realmsclient/dto/RealmsServerPlayerList.class b/build/_compileJava_2/com/mojang/realmsclient/dto/RealmsServerPlayerList.class new file mode 100644 index 000000000..bc61e541a Binary files /dev/null and b/build/_compileJava_2/com/mojang/realmsclient/dto/RealmsServerPlayerList.class differ diff --git a/build/_compileJava_2/com/mojang/realmsclient/dto/RealmsServerPlayerLists.class b/build/_compileJava_2/com/mojang/realmsclient/dto/RealmsServerPlayerLists.class new file mode 100644 index 000000000..ceef40416 Binary files /dev/null and b/build/_compileJava_2/com/mojang/realmsclient/dto/RealmsServerPlayerLists.class differ diff --git a/build/_compileJava_2/com/mojang/realmsclient/dto/RealmsText.class b/build/_compileJava_2/com/mojang/realmsclient/dto/RealmsText.class new file mode 100644 index 000000000..9f409632c Binary files /dev/null and b/build/_compileJava_2/com/mojang/realmsclient/dto/RealmsText.class differ diff --git a/build/_compileJava_2/com/mojang/realmsclient/dto/RealmsWorldOptions.class b/build/_compileJava_2/com/mojang/realmsclient/dto/RealmsWorldOptions.class new file mode 100644 index 000000000..458dcebe5 Binary files /dev/null and b/build/_compileJava_2/com/mojang/realmsclient/dto/RealmsWorldOptions.class differ diff --git a/build/_compileJava_2/com/mojang/realmsclient/dto/RealmsWorldResetDto.class b/build/_compileJava_2/com/mojang/realmsclient/dto/RealmsWorldResetDto.class new file mode 100644 index 000000000..06fcda7ad Binary files /dev/null and b/build/_compileJava_2/com/mojang/realmsclient/dto/RealmsWorldResetDto.class differ diff --git a/build/_compileJava_2/com/mojang/realmsclient/dto/ReflectionBasedSerialization.class b/build/_compileJava_2/com/mojang/realmsclient/dto/ReflectionBasedSerialization.class new file mode 100644 index 000000000..b9edc443c Binary files /dev/null and b/build/_compileJava_2/com/mojang/realmsclient/dto/ReflectionBasedSerialization.class differ diff --git a/build/_compileJava_2/com/mojang/realmsclient/dto/RegionPingResult.class b/build/_compileJava_2/com/mojang/realmsclient/dto/RegionPingResult.class new file mode 100644 index 000000000..5de82e845 Binary files /dev/null and b/build/_compileJava_2/com/mojang/realmsclient/dto/RegionPingResult.class differ diff --git a/build/_compileJava_2/com/mojang/realmsclient/dto/ServerActivity.class b/build/_compileJava_2/com/mojang/realmsclient/dto/ServerActivity.class new file mode 100644 index 000000000..3bc60a4b0 Binary files /dev/null and b/build/_compileJava_2/com/mojang/realmsclient/dto/ServerActivity.class differ diff --git a/build/_compileJava_2/com/mojang/realmsclient/dto/ServerActivityList.class b/build/_compileJava_2/com/mojang/realmsclient/dto/ServerActivityList.class new file mode 100644 index 000000000..8138f9036 Binary files /dev/null and b/build/_compileJava_2/com/mojang/realmsclient/dto/ServerActivityList.class differ diff --git a/build/_compileJava_2/com/mojang/realmsclient/dto/Subscription$SubscriptionType.class b/build/_compileJava_2/com/mojang/realmsclient/dto/Subscription$SubscriptionType.class new file mode 100644 index 000000000..21eee8001 Binary files /dev/null and b/build/_compileJava_2/com/mojang/realmsclient/dto/Subscription$SubscriptionType.class differ diff --git a/build/_compileJava_2/com/mojang/realmsclient/dto/Subscription.class b/build/_compileJava_2/com/mojang/realmsclient/dto/Subscription.class new file mode 100644 index 000000000..6fab38f94 Binary files /dev/null and b/build/_compileJava_2/com/mojang/realmsclient/dto/Subscription.class differ diff --git a/build/_compileJava_2/com/mojang/realmsclient/dto/UploadInfo.class b/build/_compileJava_2/com/mojang/realmsclient/dto/UploadInfo.class new file mode 100644 index 000000000..e2973349c Binary files /dev/null and b/build/_compileJava_2/com/mojang/realmsclient/dto/UploadInfo.class differ diff --git a/build/_compileJava_2/com/mojang/realmsclient/dto/ValueObject.class b/build/_compileJava_2/com/mojang/realmsclient/dto/ValueObject.class new file mode 100644 index 000000000..4190c3dad Binary files /dev/null and b/build/_compileJava_2/com/mojang/realmsclient/dto/ValueObject.class differ diff --git a/build/_compileJava_2/com/mojang/realmsclient/dto/WorldDownload.class b/build/_compileJava_2/com/mojang/realmsclient/dto/WorldDownload.class new file mode 100644 index 000000000..c52ff7928 Binary files /dev/null and b/build/_compileJava_2/com/mojang/realmsclient/dto/WorldDownload.class differ diff --git a/build/_compileJava_2/com/mojang/realmsclient/dto/WorldTemplate$WorldTemplateType.class b/build/_compileJava_2/com/mojang/realmsclient/dto/WorldTemplate$WorldTemplateType.class new file mode 100644 index 000000000..c1834ef43 Binary files /dev/null and b/build/_compileJava_2/com/mojang/realmsclient/dto/WorldTemplate$WorldTemplateType.class differ diff --git a/build/_compileJava_2/com/mojang/realmsclient/dto/WorldTemplate.class b/build/_compileJava_2/com/mojang/realmsclient/dto/WorldTemplate.class new file mode 100644 index 000000000..e36d748b6 Binary files /dev/null and b/build/_compileJava_2/com/mojang/realmsclient/dto/WorldTemplate.class differ diff --git a/build/_compileJava_2/com/mojang/realmsclient/dto/WorldTemplatePaginatedList.class b/build/_compileJava_2/com/mojang/realmsclient/dto/WorldTemplatePaginatedList.class new file mode 100644 index 000000000..cb4b8d663 Binary files /dev/null and b/build/_compileJava_2/com/mojang/realmsclient/dto/WorldTemplatePaginatedList.class differ diff --git a/build/_compileJava_2/com/mojang/realmsclient/dto/package-info.class b/build/_compileJava_2/com/mojang/realmsclient/dto/package-info.class new file mode 100644 index 000000000..7b8c0b5ed Binary files /dev/null and b/build/_compileJava_2/com/mojang/realmsclient/dto/package-info.class differ diff --git a/build/_compileJava_2/com/mojang/realmsclient/exception/RealmsDefaultUncaughtExceptionHandler.class b/build/_compileJava_2/com/mojang/realmsclient/exception/RealmsDefaultUncaughtExceptionHandler.class new file mode 100644 index 000000000..bb748f7ef Binary files /dev/null and b/build/_compileJava_2/com/mojang/realmsclient/exception/RealmsDefaultUncaughtExceptionHandler.class differ diff --git a/build/_compileJava_2/com/mojang/realmsclient/exception/RealmsHttpException.class b/build/_compileJava_2/com/mojang/realmsclient/exception/RealmsHttpException.class new file mode 100644 index 000000000..70e0a241b Binary files /dev/null and b/build/_compileJava_2/com/mojang/realmsclient/exception/RealmsHttpException.class differ diff --git a/build/_compileJava_2/com/mojang/realmsclient/exception/RealmsServiceException.class b/build/_compileJava_2/com/mojang/realmsclient/exception/RealmsServiceException.class new file mode 100644 index 000000000..d80939604 Binary files /dev/null and b/build/_compileJava_2/com/mojang/realmsclient/exception/RealmsServiceException.class differ diff --git a/build/_compileJava_2/com/mojang/realmsclient/exception/RetryCallException.class b/build/_compileJava_2/com/mojang/realmsclient/exception/RetryCallException.class new file mode 100644 index 000000000..714a62b95 Binary files /dev/null and b/build/_compileJava_2/com/mojang/realmsclient/exception/RetryCallException.class differ diff --git a/build/_compileJava_2/com/mojang/realmsclient/exception/package-info.class b/build/_compileJava_2/com/mojang/realmsclient/exception/package-info.class new file mode 100644 index 000000000..70b96f6b3 Binary files /dev/null and b/build/_compileJava_2/com/mojang/realmsclient/exception/package-info.class differ diff --git a/build/_compileJava_2/com/mojang/realmsclient/gui/ErrorCallback.class b/build/_compileJava_2/com/mojang/realmsclient/gui/ErrorCallback.class new file mode 100644 index 000000000..93edf3a61 Binary files /dev/null and b/build/_compileJava_2/com/mojang/realmsclient/gui/ErrorCallback.class differ diff --git a/build/_compileJava_2/com/mojang/realmsclient/gui/RealmsDataFetcher.class b/build/_compileJava_2/com/mojang/realmsclient/gui/RealmsDataFetcher.class new file mode 100644 index 000000000..2248c2418 Binary files /dev/null and b/build/_compileJava_2/com/mojang/realmsclient/gui/RealmsDataFetcher.class differ diff --git a/build/_compileJava_2/com/mojang/realmsclient/gui/RealmsNewsManager.class b/build/_compileJava_2/com/mojang/realmsclient/gui/RealmsNewsManager.class new file mode 100644 index 000000000..8ac63b5a5 Binary files /dev/null and b/build/_compileJava_2/com/mojang/realmsclient/gui/RealmsNewsManager.class differ diff --git a/build/_compileJava_2/com/mojang/realmsclient/gui/RealmsServerList.class b/build/_compileJava_2/com/mojang/realmsclient/gui/RealmsServerList.class new file mode 100644 index 000000000..0acd17f97 Binary files /dev/null and b/build/_compileJava_2/com/mojang/realmsclient/gui/RealmsServerList.class differ diff --git a/build/_compileJava_2/com/mojang/realmsclient/gui/RealmsWorldSlotButton$Action.class b/build/_compileJava_2/com/mojang/realmsclient/gui/RealmsWorldSlotButton$Action.class new file mode 100644 index 000000000..76dacf0cb Binary files /dev/null and b/build/_compileJava_2/com/mojang/realmsclient/gui/RealmsWorldSlotButton$Action.class differ diff --git a/build/_compileJava_2/com/mojang/realmsclient/gui/RealmsWorldSlotButton$State.class b/build/_compileJava_2/com/mojang/realmsclient/gui/RealmsWorldSlotButton$State.class new file mode 100644 index 000000000..1db95bc55 Binary files /dev/null and b/build/_compileJava_2/com/mojang/realmsclient/gui/RealmsWorldSlotButton$State.class differ diff --git a/build/_compileJava_2/com/mojang/realmsclient/gui/RealmsWorldSlotButton.class b/build/_compileJava_2/com/mojang/realmsclient/gui/RealmsWorldSlotButton.class new file mode 100644 index 000000000..8bc82de35 Binary files /dev/null and b/build/_compileJava_2/com/mojang/realmsclient/gui/RealmsWorldSlotButton.class differ diff --git a/build/_compileJava_2/com/mojang/realmsclient/gui/RowButton.class b/build/_compileJava_2/com/mojang/realmsclient/gui/RowButton.class new file mode 100644 index 000000000..9131a1f43 Binary files /dev/null and b/build/_compileJava_2/com/mojang/realmsclient/gui/RowButton.class differ diff --git a/build/_compileJava_2/com/mojang/realmsclient/gui/package-info.class b/build/_compileJava_2/com/mojang/realmsclient/gui/package-info.class new file mode 100644 index 000000000..248c21215 Binary files /dev/null and b/build/_compileJava_2/com/mojang/realmsclient/gui/package-info.class differ diff --git a/build/_compileJava_2/com/mojang/realmsclient/gui/screens/RealmsBackupInfoScreen$BackupInfoList.class b/build/_compileJava_2/com/mojang/realmsclient/gui/screens/RealmsBackupInfoScreen$BackupInfoList.class new file mode 100644 index 000000000..e0fa56d4a Binary files /dev/null and b/build/_compileJava_2/com/mojang/realmsclient/gui/screens/RealmsBackupInfoScreen$BackupInfoList.class differ diff --git a/build/_compileJava_2/com/mojang/realmsclient/gui/screens/RealmsBackupInfoScreen$BackupInfoListEntry.class b/build/_compileJava_2/com/mojang/realmsclient/gui/screens/RealmsBackupInfoScreen$BackupInfoListEntry.class new file mode 100644 index 000000000..7ca358346 Binary files /dev/null and b/build/_compileJava_2/com/mojang/realmsclient/gui/screens/RealmsBackupInfoScreen$BackupInfoListEntry.class differ diff --git a/build/_compileJava_2/com/mojang/realmsclient/gui/screens/RealmsBackupInfoScreen.class b/build/_compileJava_2/com/mojang/realmsclient/gui/screens/RealmsBackupInfoScreen.class new file mode 100644 index 000000000..279e52b3d Binary files /dev/null and b/build/_compileJava_2/com/mojang/realmsclient/gui/screens/RealmsBackupInfoScreen.class differ diff --git a/build/_compileJava_2/com/mojang/realmsclient/gui/screens/RealmsBackupScreen$1.class b/build/_compileJava_2/com/mojang/realmsclient/gui/screens/RealmsBackupScreen$1.class new file mode 100644 index 000000000..35b4315e8 Binary files /dev/null and b/build/_compileJava_2/com/mojang/realmsclient/gui/screens/RealmsBackupScreen$1.class differ diff --git a/build/_compileJava_2/com/mojang/realmsclient/gui/screens/RealmsBackupScreen$BackupObjectSelectionList.class b/build/_compileJava_2/com/mojang/realmsclient/gui/screens/RealmsBackupScreen$BackupObjectSelectionList.class new file mode 100644 index 000000000..272baaaba Binary files /dev/null and b/build/_compileJava_2/com/mojang/realmsclient/gui/screens/RealmsBackupScreen$BackupObjectSelectionList.class differ diff --git a/build/_compileJava_2/com/mojang/realmsclient/gui/screens/RealmsBackupScreen$Entry.class b/build/_compileJava_2/com/mojang/realmsclient/gui/screens/RealmsBackupScreen$Entry.class new file mode 100644 index 000000000..05b5e4473 Binary files /dev/null and b/build/_compileJava_2/com/mojang/realmsclient/gui/screens/RealmsBackupScreen$Entry.class differ diff --git a/build/_compileJava_2/com/mojang/realmsclient/gui/screens/RealmsBackupScreen.class b/build/_compileJava_2/com/mojang/realmsclient/gui/screens/RealmsBackupScreen.class new file mode 100644 index 000000000..6a5d4f6ad Binary files /dev/null and b/build/_compileJava_2/com/mojang/realmsclient/gui/screens/RealmsBackupScreen.class differ diff --git a/build/_compileJava_2/com/mojang/realmsclient/gui/screens/RealmsBrokenWorldScreen.class b/build/_compileJava_2/com/mojang/realmsclient/gui/screens/RealmsBrokenWorldScreen.class new file mode 100644 index 000000000..eadbf1d0b Binary files /dev/null and b/build/_compileJava_2/com/mojang/realmsclient/gui/screens/RealmsBrokenWorldScreen.class differ diff --git a/build/_compileJava_2/com/mojang/realmsclient/gui/screens/RealmsClientOutdatedScreen.class b/build/_compileJava_2/com/mojang/realmsclient/gui/screens/RealmsClientOutdatedScreen.class new file mode 100644 index 000000000..af399881e Binary files /dev/null and b/build/_compileJava_2/com/mojang/realmsclient/gui/screens/RealmsClientOutdatedScreen.class differ diff --git a/build/_compileJava_2/com/mojang/realmsclient/gui/screens/RealmsConfigureWorldScreen$1.class b/build/_compileJava_2/com/mojang/realmsclient/gui/screens/RealmsConfigureWorldScreen$1.class new file mode 100644 index 000000000..e7fdf8329 Binary files /dev/null and b/build/_compileJava_2/com/mojang/realmsclient/gui/screens/RealmsConfigureWorldScreen$1.class differ diff --git a/build/_compileJava_2/com/mojang/realmsclient/gui/screens/RealmsConfigureWorldScreen.class b/build/_compileJava_2/com/mojang/realmsclient/gui/screens/RealmsConfigureWorldScreen.class new file mode 100644 index 000000000..9201327fd Binary files /dev/null and b/build/_compileJava_2/com/mojang/realmsclient/gui/screens/RealmsConfigureWorldScreen.class differ diff --git a/build/_compileJava_2/com/mojang/realmsclient/gui/screens/RealmsConfirmScreen.class b/build/_compileJava_2/com/mojang/realmsclient/gui/screens/RealmsConfirmScreen.class new file mode 100644 index 000000000..f878e2d24 Binary files /dev/null and b/build/_compileJava_2/com/mojang/realmsclient/gui/screens/RealmsConfirmScreen.class differ diff --git a/build/_compileJava_2/com/mojang/realmsclient/gui/screens/RealmsCreateRealmScreen.class b/build/_compileJava_2/com/mojang/realmsclient/gui/screens/RealmsCreateRealmScreen.class new file mode 100644 index 000000000..eb6ac5561 Binary files /dev/null and b/build/_compileJava_2/com/mojang/realmsclient/gui/screens/RealmsCreateRealmScreen.class differ diff --git a/build/_compileJava_2/com/mojang/realmsclient/gui/screens/RealmsDownloadLatestWorldScreen$DownloadStatus.class b/build/_compileJava_2/com/mojang/realmsclient/gui/screens/RealmsDownloadLatestWorldScreen$DownloadStatus.class new file mode 100644 index 000000000..3e0fb8401 Binary files /dev/null and b/build/_compileJava_2/com/mojang/realmsclient/gui/screens/RealmsDownloadLatestWorldScreen$DownloadStatus.class differ diff --git a/build/_compileJava_2/com/mojang/realmsclient/gui/screens/RealmsDownloadLatestWorldScreen.class b/build/_compileJava_2/com/mojang/realmsclient/gui/screens/RealmsDownloadLatestWorldScreen.class new file mode 100644 index 000000000..d021163d2 Binary files /dev/null and b/build/_compileJava_2/com/mojang/realmsclient/gui/screens/RealmsDownloadLatestWorldScreen.class differ diff --git a/build/_compileJava_2/com/mojang/realmsclient/gui/screens/RealmsGenericErrorScreen$ErrorMessage.class b/build/_compileJava_2/com/mojang/realmsclient/gui/screens/RealmsGenericErrorScreen$ErrorMessage.class new file mode 100644 index 000000000..f5ea197e9 Binary files /dev/null and b/build/_compileJava_2/com/mojang/realmsclient/gui/screens/RealmsGenericErrorScreen$ErrorMessage.class differ diff --git a/build/_compileJava_2/com/mojang/realmsclient/gui/screens/RealmsGenericErrorScreen.class b/build/_compileJava_2/com/mojang/realmsclient/gui/screens/RealmsGenericErrorScreen.class new file mode 100644 index 000000000..826a5f4ad Binary files /dev/null and b/build/_compileJava_2/com/mojang/realmsclient/gui/screens/RealmsGenericErrorScreen.class differ diff --git a/build/_compileJava_2/com/mojang/realmsclient/gui/screens/RealmsInviteScreen.class b/build/_compileJava_2/com/mojang/realmsclient/gui/screens/RealmsInviteScreen.class new file mode 100644 index 000000000..66ae31d0b Binary files /dev/null and b/build/_compileJava_2/com/mojang/realmsclient/gui/screens/RealmsInviteScreen.class differ diff --git a/build/_compileJava_2/com/mojang/realmsclient/gui/screens/RealmsLongConfirmationScreen$Type.class b/build/_compileJava_2/com/mojang/realmsclient/gui/screens/RealmsLongConfirmationScreen$Type.class new file mode 100644 index 000000000..e766cd79c Binary files /dev/null and b/build/_compileJava_2/com/mojang/realmsclient/gui/screens/RealmsLongConfirmationScreen$Type.class differ diff --git a/build/_compileJava_2/com/mojang/realmsclient/gui/screens/RealmsLongConfirmationScreen.class b/build/_compileJava_2/com/mojang/realmsclient/gui/screens/RealmsLongConfirmationScreen.class new file mode 100644 index 000000000..d8b1aa606 Binary files /dev/null and b/build/_compileJava_2/com/mojang/realmsclient/gui/screens/RealmsLongConfirmationScreen.class differ diff --git a/build/_compileJava_2/com/mojang/realmsclient/gui/screens/RealmsLongRunningMcoTaskScreen.class b/build/_compileJava_2/com/mojang/realmsclient/gui/screens/RealmsLongRunningMcoTaskScreen.class new file mode 100644 index 000000000..8ec95d4c2 Binary files /dev/null and b/build/_compileJava_2/com/mojang/realmsclient/gui/screens/RealmsLongRunningMcoTaskScreen.class differ diff --git a/build/_compileJava_2/com/mojang/realmsclient/gui/screens/RealmsNotificationsScreen$1.class b/build/_compileJava_2/com/mojang/realmsclient/gui/screens/RealmsNotificationsScreen$1.class new file mode 100644 index 000000000..5ae835412 Binary files /dev/null and b/build/_compileJava_2/com/mojang/realmsclient/gui/screens/RealmsNotificationsScreen$1.class differ diff --git a/build/_compileJava_2/com/mojang/realmsclient/gui/screens/RealmsNotificationsScreen$2.class b/build/_compileJava_2/com/mojang/realmsclient/gui/screens/RealmsNotificationsScreen$2.class new file mode 100644 index 000000000..78d0d9fca Binary files /dev/null and b/build/_compileJava_2/com/mojang/realmsclient/gui/screens/RealmsNotificationsScreen$2.class differ diff --git a/build/_compileJava_2/com/mojang/realmsclient/gui/screens/RealmsNotificationsScreen$3.class b/build/_compileJava_2/com/mojang/realmsclient/gui/screens/RealmsNotificationsScreen$3.class new file mode 100644 index 000000000..1d263e180 Binary files /dev/null and b/build/_compileJava_2/com/mojang/realmsclient/gui/screens/RealmsNotificationsScreen$3.class differ diff --git a/build/_compileJava_2/com/mojang/realmsclient/gui/screens/RealmsNotificationsScreen$DataFetcherConfiguration.class b/build/_compileJava_2/com/mojang/realmsclient/gui/screens/RealmsNotificationsScreen$DataFetcherConfiguration.class new file mode 100644 index 000000000..44fccff72 Binary files /dev/null and b/build/_compileJava_2/com/mojang/realmsclient/gui/screens/RealmsNotificationsScreen$DataFetcherConfiguration.class differ diff --git a/build/_compileJava_2/com/mojang/realmsclient/gui/screens/RealmsNotificationsScreen.class b/build/_compileJava_2/com/mojang/realmsclient/gui/screens/RealmsNotificationsScreen.class new file mode 100644 index 000000000..09cfbd71d Binary files /dev/null and b/build/_compileJava_2/com/mojang/realmsclient/gui/screens/RealmsNotificationsScreen.class differ diff --git a/build/_compileJava_2/com/mojang/realmsclient/gui/screens/RealmsParentalConsentScreen.class b/build/_compileJava_2/com/mojang/realmsclient/gui/screens/RealmsParentalConsentScreen.class new file mode 100644 index 000000000..03a31a430 Binary files /dev/null and b/build/_compileJava_2/com/mojang/realmsclient/gui/screens/RealmsParentalConsentScreen.class differ diff --git a/build/_compileJava_2/com/mojang/realmsclient/gui/screens/RealmsPendingInvitesScreen$1.class b/build/_compileJava_2/com/mojang/realmsclient/gui/screens/RealmsPendingInvitesScreen$1.class new file mode 100644 index 000000000..ce2e39f55 Binary files /dev/null and b/build/_compileJava_2/com/mojang/realmsclient/gui/screens/RealmsPendingInvitesScreen$1.class differ diff --git a/build/_compileJava_2/com/mojang/realmsclient/gui/screens/RealmsPendingInvitesScreen$2.class b/build/_compileJava_2/com/mojang/realmsclient/gui/screens/RealmsPendingInvitesScreen$2.class new file mode 100644 index 000000000..07c3f81af Binary files /dev/null and b/build/_compileJava_2/com/mojang/realmsclient/gui/screens/RealmsPendingInvitesScreen$2.class differ diff --git a/build/_compileJava_2/com/mojang/realmsclient/gui/screens/RealmsPendingInvitesScreen$3.class b/build/_compileJava_2/com/mojang/realmsclient/gui/screens/RealmsPendingInvitesScreen$3.class new file mode 100644 index 000000000..3bc2cc313 Binary files /dev/null and b/build/_compileJava_2/com/mojang/realmsclient/gui/screens/RealmsPendingInvitesScreen$3.class differ diff --git a/build/_compileJava_2/com/mojang/realmsclient/gui/screens/RealmsPendingInvitesScreen$Entry$AcceptRowButton.class b/build/_compileJava_2/com/mojang/realmsclient/gui/screens/RealmsPendingInvitesScreen$Entry$AcceptRowButton.class new file mode 100644 index 000000000..90af87ae4 Binary files /dev/null and b/build/_compileJava_2/com/mojang/realmsclient/gui/screens/RealmsPendingInvitesScreen$Entry$AcceptRowButton.class differ diff --git a/build/_compileJava_2/com/mojang/realmsclient/gui/screens/RealmsPendingInvitesScreen$Entry$RejectRowButton.class b/build/_compileJava_2/com/mojang/realmsclient/gui/screens/RealmsPendingInvitesScreen$Entry$RejectRowButton.class new file mode 100644 index 000000000..0a1701450 Binary files /dev/null and b/build/_compileJava_2/com/mojang/realmsclient/gui/screens/RealmsPendingInvitesScreen$Entry$RejectRowButton.class differ diff --git a/build/_compileJava_2/com/mojang/realmsclient/gui/screens/RealmsPendingInvitesScreen$Entry.class b/build/_compileJava_2/com/mojang/realmsclient/gui/screens/RealmsPendingInvitesScreen$Entry.class new file mode 100644 index 000000000..94f1d45d3 Binary files /dev/null and b/build/_compileJava_2/com/mojang/realmsclient/gui/screens/RealmsPendingInvitesScreen$Entry.class differ diff --git a/build/_compileJava_2/com/mojang/realmsclient/gui/screens/RealmsPendingInvitesScreen$PendingInvitationSelectionList.class b/build/_compileJava_2/com/mojang/realmsclient/gui/screens/RealmsPendingInvitesScreen$PendingInvitationSelectionList.class new file mode 100644 index 000000000..48f0a2ab8 Binary files /dev/null and b/build/_compileJava_2/com/mojang/realmsclient/gui/screens/RealmsPendingInvitesScreen$PendingInvitationSelectionList.class differ diff --git a/build/_compileJava_2/com/mojang/realmsclient/gui/screens/RealmsPendingInvitesScreen.class b/build/_compileJava_2/com/mojang/realmsclient/gui/screens/RealmsPendingInvitesScreen.class new file mode 100644 index 000000000..3270dbad9 Binary files /dev/null and b/build/_compileJava_2/com/mojang/realmsclient/gui/screens/RealmsPendingInvitesScreen.class differ diff --git a/build/_compileJava_2/com/mojang/realmsclient/gui/screens/RealmsPlayerScreen$Entry.class b/build/_compileJava_2/com/mojang/realmsclient/gui/screens/RealmsPlayerScreen$Entry.class new file mode 100644 index 000000000..c88ff1734 Binary files /dev/null and b/build/_compileJava_2/com/mojang/realmsclient/gui/screens/RealmsPlayerScreen$Entry.class differ diff --git a/build/_compileJava_2/com/mojang/realmsclient/gui/screens/RealmsPlayerScreen$InvitedObjectSelectionList.class b/build/_compileJava_2/com/mojang/realmsclient/gui/screens/RealmsPlayerScreen$InvitedObjectSelectionList.class new file mode 100644 index 000000000..cde31f2bd Binary files /dev/null and b/build/_compileJava_2/com/mojang/realmsclient/gui/screens/RealmsPlayerScreen$InvitedObjectSelectionList.class differ diff --git a/build/_compileJava_2/com/mojang/realmsclient/gui/screens/RealmsPlayerScreen.class b/build/_compileJava_2/com/mojang/realmsclient/gui/screens/RealmsPlayerScreen.class new file mode 100644 index 000000000..ef4fcbea6 Binary files /dev/null and b/build/_compileJava_2/com/mojang/realmsclient/gui/screens/RealmsPlayerScreen.class differ diff --git a/build/_compileJava_2/com/mojang/realmsclient/gui/screens/RealmsResetNormalWorldScreen.class b/build/_compileJava_2/com/mojang/realmsclient/gui/screens/RealmsResetNormalWorldScreen.class new file mode 100644 index 000000000..aa30fc279 Binary files /dev/null and b/build/_compileJava_2/com/mojang/realmsclient/gui/screens/RealmsResetNormalWorldScreen.class differ diff --git a/build/_compileJava_2/com/mojang/realmsclient/gui/screens/RealmsResetWorldScreen$1.class b/build/_compileJava_2/com/mojang/realmsclient/gui/screens/RealmsResetWorldScreen$1.class new file mode 100644 index 000000000..3ee0e5126 Binary files /dev/null and b/build/_compileJava_2/com/mojang/realmsclient/gui/screens/RealmsResetWorldScreen$1.class differ diff --git a/build/_compileJava_2/com/mojang/realmsclient/gui/screens/RealmsResetWorldScreen$FrameButton.class b/build/_compileJava_2/com/mojang/realmsclient/gui/screens/RealmsResetWorldScreen$FrameButton.class new file mode 100644 index 000000000..3a80ddf4f Binary files /dev/null and b/build/_compileJava_2/com/mojang/realmsclient/gui/screens/RealmsResetWorldScreen$FrameButton.class differ diff --git a/build/_compileJava_2/com/mojang/realmsclient/gui/screens/RealmsResetWorldScreen.class b/build/_compileJava_2/com/mojang/realmsclient/gui/screens/RealmsResetWorldScreen.class new file mode 100644 index 000000000..7f34c3101 Binary files /dev/null and b/build/_compileJava_2/com/mojang/realmsclient/gui/screens/RealmsResetWorldScreen.class differ diff --git a/build/_compileJava_2/com/mojang/realmsclient/gui/screens/RealmsSelectFileToUploadScreen$Entry.class b/build/_compileJava_2/com/mojang/realmsclient/gui/screens/RealmsSelectFileToUploadScreen$Entry.class new file mode 100644 index 000000000..4d0ef0ca0 Binary files /dev/null and b/build/_compileJava_2/com/mojang/realmsclient/gui/screens/RealmsSelectFileToUploadScreen$Entry.class differ diff --git a/build/_compileJava_2/com/mojang/realmsclient/gui/screens/RealmsSelectFileToUploadScreen$WorldSelectionList.class b/build/_compileJava_2/com/mojang/realmsclient/gui/screens/RealmsSelectFileToUploadScreen$WorldSelectionList.class new file mode 100644 index 000000000..81a4cebe4 Binary files /dev/null and b/build/_compileJava_2/com/mojang/realmsclient/gui/screens/RealmsSelectFileToUploadScreen$WorldSelectionList.class differ diff --git a/build/_compileJava_2/com/mojang/realmsclient/gui/screens/RealmsSelectFileToUploadScreen.class b/build/_compileJava_2/com/mojang/realmsclient/gui/screens/RealmsSelectFileToUploadScreen.class new file mode 100644 index 000000000..b2fca2286 Binary files /dev/null and b/build/_compileJava_2/com/mojang/realmsclient/gui/screens/RealmsSelectFileToUploadScreen.class differ diff --git a/build/_compileJava_2/com/mojang/realmsclient/gui/screens/RealmsSelectWorldTemplateScreen$1.class b/build/_compileJava_2/com/mojang/realmsclient/gui/screens/RealmsSelectWorldTemplateScreen$1.class new file mode 100644 index 000000000..98fa08eec Binary files /dev/null and b/build/_compileJava_2/com/mojang/realmsclient/gui/screens/RealmsSelectWorldTemplateScreen$1.class differ diff --git a/build/_compileJava_2/com/mojang/realmsclient/gui/screens/RealmsSelectWorldTemplateScreen$Entry.class b/build/_compileJava_2/com/mojang/realmsclient/gui/screens/RealmsSelectWorldTemplateScreen$Entry.class new file mode 100644 index 000000000..c0a0c468c Binary files /dev/null and b/build/_compileJava_2/com/mojang/realmsclient/gui/screens/RealmsSelectWorldTemplateScreen$Entry.class differ diff --git a/build/_compileJava_2/com/mojang/realmsclient/gui/screens/RealmsSelectWorldTemplateScreen$WorldTemplateObjectSelectionList.class b/build/_compileJava_2/com/mojang/realmsclient/gui/screens/RealmsSelectWorldTemplateScreen$WorldTemplateObjectSelectionList.class new file mode 100644 index 000000000..0693b5d97 Binary files /dev/null and b/build/_compileJava_2/com/mojang/realmsclient/gui/screens/RealmsSelectWorldTemplateScreen$WorldTemplateObjectSelectionList.class differ diff --git a/build/_compileJava_2/com/mojang/realmsclient/gui/screens/RealmsSelectWorldTemplateScreen.class b/build/_compileJava_2/com/mojang/realmsclient/gui/screens/RealmsSelectWorldTemplateScreen.class new file mode 100644 index 000000000..5714a7808 Binary files /dev/null and b/build/_compileJava_2/com/mojang/realmsclient/gui/screens/RealmsSelectWorldTemplateScreen.class differ diff --git a/build/_compileJava_2/com/mojang/realmsclient/gui/screens/RealmsSettingsScreen.class b/build/_compileJava_2/com/mojang/realmsclient/gui/screens/RealmsSettingsScreen.class new file mode 100644 index 000000000..041e8ee56 Binary files /dev/null and b/build/_compileJava_2/com/mojang/realmsclient/gui/screens/RealmsSettingsScreen.class differ diff --git a/build/_compileJava_2/com/mojang/realmsclient/gui/screens/RealmsSlotOptionsScreen$SettingsSlider.class b/build/_compileJava_2/com/mojang/realmsclient/gui/screens/RealmsSlotOptionsScreen$SettingsSlider.class new file mode 100644 index 000000000..53ebfe8a8 Binary files /dev/null and b/build/_compileJava_2/com/mojang/realmsclient/gui/screens/RealmsSlotOptionsScreen$SettingsSlider.class differ diff --git a/build/_compileJava_2/com/mojang/realmsclient/gui/screens/RealmsSlotOptionsScreen.class b/build/_compileJava_2/com/mojang/realmsclient/gui/screens/RealmsSlotOptionsScreen.class new file mode 100644 index 000000000..c750d70fa Binary files /dev/null and b/build/_compileJava_2/com/mojang/realmsclient/gui/screens/RealmsSlotOptionsScreen.class differ diff --git a/build/_compileJava_2/com/mojang/realmsclient/gui/screens/RealmsSubscriptionInfoScreen$1.class b/build/_compileJava_2/com/mojang/realmsclient/gui/screens/RealmsSubscriptionInfoScreen$1.class new file mode 100644 index 000000000..dad937d2f Binary files /dev/null and b/build/_compileJava_2/com/mojang/realmsclient/gui/screens/RealmsSubscriptionInfoScreen$1.class differ diff --git a/build/_compileJava_2/com/mojang/realmsclient/gui/screens/RealmsSubscriptionInfoScreen.class b/build/_compileJava_2/com/mojang/realmsclient/gui/screens/RealmsSubscriptionInfoScreen.class new file mode 100644 index 000000000..b3bf34006 Binary files /dev/null and b/build/_compileJava_2/com/mojang/realmsclient/gui/screens/RealmsSubscriptionInfoScreen.class differ diff --git a/build/_compileJava_2/com/mojang/realmsclient/gui/screens/RealmsTermsScreen.class b/build/_compileJava_2/com/mojang/realmsclient/gui/screens/RealmsTermsScreen.class new file mode 100644 index 000000000..d77daac57 Binary files /dev/null and b/build/_compileJava_2/com/mojang/realmsclient/gui/screens/RealmsTermsScreen.class differ diff --git a/build/_compileJava_2/com/mojang/realmsclient/gui/screens/RealmsUploadScreen.class b/build/_compileJava_2/com/mojang/realmsclient/gui/screens/RealmsUploadScreen.class new file mode 100644 index 000000000..5cb97af73 Binary files /dev/null and b/build/_compileJava_2/com/mojang/realmsclient/gui/screens/RealmsUploadScreen.class differ diff --git a/build/_compileJava_2/com/mojang/realmsclient/gui/screens/UploadResult$Builder.class b/build/_compileJava_2/com/mojang/realmsclient/gui/screens/UploadResult$Builder.class new file mode 100644 index 000000000..d9f738da3 Binary files /dev/null and b/build/_compileJava_2/com/mojang/realmsclient/gui/screens/UploadResult$Builder.class differ diff --git a/build/_compileJava_2/com/mojang/realmsclient/gui/screens/UploadResult.class b/build/_compileJava_2/com/mojang/realmsclient/gui/screens/UploadResult.class new file mode 100644 index 000000000..73c4eb1d5 Binary files /dev/null and b/build/_compileJava_2/com/mojang/realmsclient/gui/screens/UploadResult.class differ diff --git a/build/_compileJava_2/com/mojang/realmsclient/gui/screens/package-info.class b/build/_compileJava_2/com/mojang/realmsclient/gui/screens/package-info.class new file mode 100644 index 000000000..ab22a497b Binary files /dev/null and b/build/_compileJava_2/com/mojang/realmsclient/gui/screens/package-info.class differ diff --git a/build/_compileJava_2/com/mojang/realmsclient/gui/task/DataFetcher$ComputationResult.class b/build/_compileJava_2/com/mojang/realmsclient/gui/task/DataFetcher$ComputationResult.class new file mode 100644 index 000000000..4ae0eb5a9 Binary files /dev/null and b/build/_compileJava_2/com/mojang/realmsclient/gui/task/DataFetcher$ComputationResult.class differ diff --git a/build/_compileJava_2/com/mojang/realmsclient/gui/task/DataFetcher$SubscribedTask.class b/build/_compileJava_2/com/mojang/realmsclient/gui/task/DataFetcher$SubscribedTask.class new file mode 100644 index 000000000..44e718e3b Binary files /dev/null and b/build/_compileJava_2/com/mojang/realmsclient/gui/task/DataFetcher$SubscribedTask.class differ diff --git a/build/_compileJava_2/com/mojang/realmsclient/gui/task/DataFetcher$Subscription.class b/build/_compileJava_2/com/mojang/realmsclient/gui/task/DataFetcher$Subscription.class new file mode 100644 index 000000000..977e88fd4 Binary files /dev/null and b/build/_compileJava_2/com/mojang/realmsclient/gui/task/DataFetcher$Subscription.class differ diff --git a/build/_compileJava_2/com/mojang/realmsclient/gui/task/DataFetcher$SuccessfulComputationResult.class b/build/_compileJava_2/com/mojang/realmsclient/gui/task/DataFetcher$SuccessfulComputationResult.class new file mode 100644 index 000000000..0dbafc89d Binary files /dev/null and b/build/_compileJava_2/com/mojang/realmsclient/gui/task/DataFetcher$SuccessfulComputationResult.class differ diff --git a/build/_compileJava_2/com/mojang/realmsclient/gui/task/DataFetcher$Task.class b/build/_compileJava_2/com/mojang/realmsclient/gui/task/DataFetcher$Task.class new file mode 100644 index 000000000..f46953d34 Binary files /dev/null and b/build/_compileJava_2/com/mojang/realmsclient/gui/task/DataFetcher$Task.class differ diff --git a/build/_compileJava_2/com/mojang/realmsclient/gui/task/DataFetcher.class b/build/_compileJava_2/com/mojang/realmsclient/gui/task/DataFetcher.class new file mode 100644 index 000000000..599ec1977 Binary files /dev/null and b/build/_compileJava_2/com/mojang/realmsclient/gui/task/DataFetcher.class differ diff --git a/build/_compileJava_2/com/mojang/realmsclient/gui/task/RepeatedDelayStrategy$1.class b/build/_compileJava_2/com/mojang/realmsclient/gui/task/RepeatedDelayStrategy$1.class new file mode 100644 index 000000000..00a730c5b Binary files /dev/null and b/build/_compileJava_2/com/mojang/realmsclient/gui/task/RepeatedDelayStrategy$1.class differ diff --git a/build/_compileJava_2/com/mojang/realmsclient/gui/task/RepeatedDelayStrategy$2.class b/build/_compileJava_2/com/mojang/realmsclient/gui/task/RepeatedDelayStrategy$2.class new file mode 100644 index 000000000..ebe37e262 Binary files /dev/null and b/build/_compileJava_2/com/mojang/realmsclient/gui/task/RepeatedDelayStrategy$2.class differ diff --git a/build/_compileJava_2/com/mojang/realmsclient/gui/task/RepeatedDelayStrategy.class b/build/_compileJava_2/com/mojang/realmsclient/gui/task/RepeatedDelayStrategy.class new file mode 100644 index 000000000..832314745 Binary files /dev/null and b/build/_compileJava_2/com/mojang/realmsclient/gui/task/RepeatedDelayStrategy.class differ diff --git a/build/_compileJava_2/com/mojang/realmsclient/gui/task/package-info.class b/build/_compileJava_2/com/mojang/realmsclient/gui/task/package-info.class new file mode 100644 index 000000000..d11ef86cb Binary files /dev/null and b/build/_compileJava_2/com/mojang/realmsclient/gui/task/package-info.class differ diff --git a/build/_compileJava_2/com/mojang/realmsclient/package-info.class b/build/_compileJava_2/com/mojang/realmsclient/package-info.class new file mode 100644 index 000000000..0a473ae1d Binary files /dev/null and b/build/_compileJava_2/com/mojang/realmsclient/package-info.class differ diff --git a/build/_compileJava_2/com/mojang/realmsclient/util/JsonUtils.class b/build/_compileJava_2/com/mojang/realmsclient/util/JsonUtils.class new file mode 100644 index 000000000..01e2d5823 Binary files /dev/null and b/build/_compileJava_2/com/mojang/realmsclient/util/JsonUtils.class differ diff --git a/build/_compileJava_2/com/mojang/realmsclient/util/LevelType.class b/build/_compileJava_2/com/mojang/realmsclient/util/LevelType.class new file mode 100644 index 000000000..19f082504 Binary files /dev/null and b/build/_compileJava_2/com/mojang/realmsclient/util/LevelType.class differ diff --git a/build/_compileJava_2/com/mojang/realmsclient/util/RealmsPersistence$RealmsPersistenceData.class b/build/_compileJava_2/com/mojang/realmsclient/util/RealmsPersistence$RealmsPersistenceData.class new file mode 100644 index 000000000..b3e5bb399 Binary files /dev/null and b/build/_compileJava_2/com/mojang/realmsclient/util/RealmsPersistence$RealmsPersistenceData.class differ diff --git a/build/_compileJava_2/com/mojang/realmsclient/util/RealmsPersistence.class b/build/_compileJava_2/com/mojang/realmsclient/util/RealmsPersistence.class new file mode 100644 index 000000000..d10f17458 Binary files /dev/null and b/build/_compileJava_2/com/mojang/realmsclient/util/RealmsPersistence.class differ diff --git a/build/_compileJava_2/com/mojang/realmsclient/util/RealmsTextureManager$RealmsTexture.class b/build/_compileJava_2/com/mojang/realmsclient/util/RealmsTextureManager$RealmsTexture.class new file mode 100644 index 000000000..7284412c6 Binary files /dev/null and b/build/_compileJava_2/com/mojang/realmsclient/util/RealmsTextureManager$RealmsTexture.class differ diff --git a/build/_compileJava_2/com/mojang/realmsclient/util/RealmsTextureManager.class b/build/_compileJava_2/com/mojang/realmsclient/util/RealmsTextureManager.class new file mode 100644 index 000000000..b65d402bb Binary files /dev/null and b/build/_compileJava_2/com/mojang/realmsclient/util/RealmsTextureManager.class differ diff --git a/build/_compileJava_2/com/mojang/realmsclient/util/RealmsUtil$1.class b/build/_compileJava_2/com/mojang/realmsclient/util/RealmsUtil$1.class new file mode 100644 index 000000000..b20aed138 Binary files /dev/null and b/build/_compileJava_2/com/mojang/realmsclient/util/RealmsUtil$1.class differ diff --git a/build/_compileJava_2/com/mojang/realmsclient/util/RealmsUtil.class b/build/_compileJava_2/com/mojang/realmsclient/util/RealmsUtil.class new file mode 100644 index 000000000..7ce27bfdf Binary files /dev/null and b/build/_compileJava_2/com/mojang/realmsclient/util/RealmsUtil.class differ diff --git a/build/_compileJava_2/com/mojang/realmsclient/util/TextRenderingUtils$Line.class b/build/_compileJava_2/com/mojang/realmsclient/util/TextRenderingUtils$Line.class new file mode 100644 index 000000000..73e72ad20 Binary files /dev/null and b/build/_compileJava_2/com/mojang/realmsclient/util/TextRenderingUtils$Line.class differ diff --git a/build/_compileJava_2/com/mojang/realmsclient/util/TextRenderingUtils$LineSegment.class b/build/_compileJava_2/com/mojang/realmsclient/util/TextRenderingUtils$LineSegment.class new file mode 100644 index 000000000..5d10621c3 Binary files /dev/null and b/build/_compileJava_2/com/mojang/realmsclient/util/TextRenderingUtils$LineSegment.class differ diff --git a/build/_compileJava_2/com/mojang/realmsclient/util/TextRenderingUtils.class b/build/_compileJava_2/com/mojang/realmsclient/util/TextRenderingUtils.class new file mode 100644 index 000000000..f3b83e2c5 Binary files /dev/null and b/build/_compileJava_2/com/mojang/realmsclient/util/TextRenderingUtils.class differ diff --git a/build/_compileJava_2/com/mojang/realmsclient/util/UploadTokenCache.class b/build/_compileJava_2/com/mojang/realmsclient/util/UploadTokenCache.class new file mode 100644 index 000000000..7dc231492 Binary files /dev/null and b/build/_compileJava_2/com/mojang/realmsclient/util/UploadTokenCache.class differ diff --git a/build/_compileJava_2/com/mojang/realmsclient/util/WorldGenerationInfo.class b/build/_compileJava_2/com/mojang/realmsclient/util/WorldGenerationInfo.class new file mode 100644 index 000000000..97b9d4e43 Binary files /dev/null and b/build/_compileJava_2/com/mojang/realmsclient/util/WorldGenerationInfo.class differ diff --git a/build/_compileJava_2/com/mojang/realmsclient/util/package-info.class b/build/_compileJava_2/com/mojang/realmsclient/util/package-info.class new file mode 100644 index 000000000..096582d48 Binary files /dev/null and b/build/_compileJava_2/com/mojang/realmsclient/util/package-info.class differ diff --git a/build/_compileJava_2/com/mojang/realmsclient/util/task/CloseServerTask.class b/build/_compileJava_2/com/mojang/realmsclient/util/task/CloseServerTask.class new file mode 100644 index 000000000..0f1784115 Binary files /dev/null and b/build/_compileJava_2/com/mojang/realmsclient/util/task/CloseServerTask.class differ diff --git a/build/_compileJava_2/com/mojang/realmsclient/util/task/ConnectTask.class b/build/_compileJava_2/com/mojang/realmsclient/util/task/ConnectTask.class new file mode 100644 index 000000000..9815a276b Binary files /dev/null and b/build/_compileJava_2/com/mojang/realmsclient/util/task/ConnectTask.class differ diff --git a/build/_compileJava_2/com/mojang/realmsclient/util/task/DownloadTask.class b/build/_compileJava_2/com/mojang/realmsclient/util/task/DownloadTask.class new file mode 100644 index 000000000..2c7ebda57 Binary files /dev/null and b/build/_compileJava_2/com/mojang/realmsclient/util/task/DownloadTask.class differ diff --git a/build/_compileJava_2/com/mojang/realmsclient/util/task/GetServerDetailsTask.class b/build/_compileJava_2/com/mojang/realmsclient/util/task/GetServerDetailsTask.class new file mode 100644 index 000000000..98b3cb3da Binary files /dev/null and b/build/_compileJava_2/com/mojang/realmsclient/util/task/GetServerDetailsTask.class differ diff --git a/build/_compileJava_2/com/mojang/realmsclient/util/task/LongRunningTask.class b/build/_compileJava_2/com/mojang/realmsclient/util/task/LongRunningTask.class new file mode 100644 index 000000000..2d14065ce Binary files /dev/null and b/build/_compileJava_2/com/mojang/realmsclient/util/task/LongRunningTask.class differ diff --git a/build/_compileJava_2/com/mojang/realmsclient/util/task/OpenServerTask.class b/build/_compileJava_2/com/mojang/realmsclient/util/task/OpenServerTask.class new file mode 100644 index 000000000..1f68b7279 Binary files /dev/null and b/build/_compileJava_2/com/mojang/realmsclient/util/task/OpenServerTask.class differ diff --git a/build/_compileJava_2/com/mojang/realmsclient/util/task/ResettingGeneratedWorldTask.class b/build/_compileJava_2/com/mojang/realmsclient/util/task/ResettingGeneratedWorldTask.class new file mode 100644 index 000000000..cf63005d2 Binary files /dev/null and b/build/_compileJava_2/com/mojang/realmsclient/util/task/ResettingGeneratedWorldTask.class differ diff --git a/build/_compileJava_2/com/mojang/realmsclient/util/task/ResettingTemplateWorldTask.class b/build/_compileJava_2/com/mojang/realmsclient/util/task/ResettingTemplateWorldTask.class new file mode 100644 index 000000000..f55207dc4 Binary files /dev/null and b/build/_compileJava_2/com/mojang/realmsclient/util/task/ResettingTemplateWorldTask.class differ diff --git a/build/_compileJava_2/com/mojang/realmsclient/util/task/ResettingWorldTask.class b/build/_compileJava_2/com/mojang/realmsclient/util/task/ResettingWorldTask.class new file mode 100644 index 000000000..82e647bea Binary files /dev/null and b/build/_compileJava_2/com/mojang/realmsclient/util/task/ResettingWorldTask.class differ diff --git a/build/_compileJava_2/com/mojang/realmsclient/util/task/RestoreTask.class b/build/_compileJava_2/com/mojang/realmsclient/util/task/RestoreTask.class new file mode 100644 index 000000000..40a4146b4 Binary files /dev/null and b/build/_compileJava_2/com/mojang/realmsclient/util/task/RestoreTask.class differ diff --git a/build/_compileJava_2/com/mojang/realmsclient/util/task/SwitchMinigameTask.class b/build/_compileJava_2/com/mojang/realmsclient/util/task/SwitchMinigameTask.class new file mode 100644 index 000000000..316ea4a2e Binary files /dev/null and b/build/_compileJava_2/com/mojang/realmsclient/util/task/SwitchMinigameTask.class differ diff --git a/build/_compileJava_2/com/mojang/realmsclient/util/task/SwitchSlotTask.class b/build/_compileJava_2/com/mojang/realmsclient/util/task/SwitchSlotTask.class new file mode 100644 index 000000000..32dfa6d02 Binary files /dev/null and b/build/_compileJava_2/com/mojang/realmsclient/util/task/SwitchSlotTask.class differ diff --git a/build/_compileJava_2/com/mojang/realmsclient/util/task/WorldCreationTask.class b/build/_compileJava_2/com/mojang/realmsclient/util/task/WorldCreationTask.class new file mode 100644 index 000000000..9c7ff729d Binary files /dev/null and b/build/_compileJava_2/com/mojang/realmsclient/util/task/WorldCreationTask.class differ diff --git a/build/_compileJava_2/com/mojang/realmsclient/util/task/package-info.class b/build/_compileJava_2/com/mojang/realmsclient/util/task/package-info.class new file mode 100644 index 000000000..b1e217b0c Binary files /dev/null and b/build/_compileJava_2/com/mojang/realmsclient/util/task/package-info.class differ diff --git a/build/_compileJava_2/mcp/client/Start.class b/build/_compileJava_2/mcp/client/Start.class new file mode 100644 index 000000000..dfc37723a Binary files /dev/null and b/build/_compileJava_2/mcp/client/Start.class differ diff --git a/build/_compileJava_2/net/minecraft/BlockUtil$FoundRectangle.class b/build/_compileJava_2/net/minecraft/BlockUtil$FoundRectangle.class new file mode 100644 index 000000000..cb04c91aa Binary files /dev/null and b/build/_compileJava_2/net/minecraft/BlockUtil$FoundRectangle.class differ diff --git a/build/_compileJava_2/net/minecraft/BlockUtil$IntBounds.class b/build/_compileJava_2/net/minecraft/BlockUtil$IntBounds.class new file mode 100644 index 000000000..8ac58c95c Binary files /dev/null and b/build/_compileJava_2/net/minecraft/BlockUtil$IntBounds.class differ diff --git a/build/_compileJava_2/net/minecraft/BlockUtil.class b/build/_compileJava_2/net/minecraft/BlockUtil.class new file mode 100644 index 000000000..b68427e73 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/BlockUtil.class differ diff --git a/build/_compileJava_2/net/minecraft/CharPredicate.class b/build/_compileJava_2/net/minecraft/CharPredicate.class new file mode 100644 index 000000000..65165c3da Binary files /dev/null and b/build/_compileJava_2/net/minecraft/CharPredicate.class differ diff --git a/build/_compileJava_2/net/minecraft/ChatFormatting.class b/build/_compileJava_2/net/minecraft/ChatFormatting.class new file mode 100644 index 000000000..f3e78e45b Binary files /dev/null and b/build/_compileJava_2/net/minecraft/ChatFormatting.class differ diff --git a/build/_compileJava_2/net/minecraft/CrashReport.class b/build/_compileJava_2/net/minecraft/CrashReport.class new file mode 100644 index 000000000..d5d697783 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/CrashReport.class differ diff --git a/build/_compileJava_2/net/minecraft/CrashReportCategory$Entry.class b/build/_compileJava_2/net/minecraft/CrashReportCategory$Entry.class new file mode 100644 index 000000000..700c76c15 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/CrashReportCategory$Entry.class differ diff --git a/build/_compileJava_2/net/minecraft/CrashReportCategory.class b/build/_compileJava_2/net/minecraft/CrashReportCategory.class new file mode 100644 index 000000000..3b29a7587 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/CrashReportCategory.class differ diff --git a/build/_compileJava_2/net/minecraft/CrashReportDetail.class b/build/_compileJava_2/net/minecraft/CrashReportDetail.class new file mode 100644 index 000000000..580637404 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/CrashReportDetail.class differ diff --git a/build/_compileJava_2/net/minecraft/DefaultUncaughtExceptionHandler.class b/build/_compileJava_2/net/minecraft/DefaultUncaughtExceptionHandler.class new file mode 100644 index 000000000..e20533380 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/DefaultUncaughtExceptionHandler.class differ diff --git a/build/_compileJava_2/net/minecraft/DefaultUncaughtExceptionHandlerWithName.class b/build/_compileJava_2/net/minecraft/DefaultUncaughtExceptionHandlerWithName.class new file mode 100644 index 000000000..c64c90ea0 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/DefaultUncaughtExceptionHandlerWithName.class differ diff --git a/build/_compileJava_2/net/minecraft/DetectedVersion.class b/build/_compileJava_2/net/minecraft/DetectedVersion.class new file mode 100644 index 000000000..9740af0b3 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/DetectedVersion.class differ diff --git a/build/_compileJava_2/net/minecraft/FieldsAreNonnullByDefault.class b/build/_compileJava_2/net/minecraft/FieldsAreNonnullByDefault.class new file mode 100644 index 000000000..073138817 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/FieldsAreNonnullByDefault.class differ diff --git a/build/_compileJava_2/net/minecraft/FileUtil.class b/build/_compileJava_2/net/minecraft/FileUtil.class new file mode 100644 index 000000000..ddfad1882 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/FileUtil.class differ diff --git a/build/_compileJava_2/net/minecraft/MethodsReturnNonnullByDefault.class b/build/_compileJava_2/net/minecraft/MethodsReturnNonnullByDefault.class new file mode 100644 index 000000000..4018ead4d Binary files /dev/null and b/build/_compileJava_2/net/minecraft/MethodsReturnNonnullByDefault.class differ diff --git a/build/_compileJava_2/net/minecraft/Optionull.class b/build/_compileJava_2/net/minecraft/Optionull.class new file mode 100644 index 000000000..99805f4f8 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/Optionull.class differ diff --git a/build/_compileJava_2/net/minecraft/ReportedException.class b/build/_compileJava_2/net/minecraft/ReportedException.class new file mode 100644 index 000000000..148213776 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/ReportedException.class differ diff --git a/build/_compileJava_2/net/minecraft/ResourceLocationException.class b/build/_compileJava_2/net/minecraft/ResourceLocationException.class new file mode 100644 index 000000000..ef7522bfa Binary files /dev/null and b/build/_compileJava_2/net/minecraft/ResourceLocationException.class differ diff --git a/build/_compileJava_2/net/minecraft/SharedConstants.class b/build/_compileJava_2/net/minecraft/SharedConstants.class new file mode 100644 index 000000000..89523e73d Binary files /dev/null and b/build/_compileJava_2/net/minecraft/SharedConstants.class differ diff --git a/build/_compileJava_2/net/minecraft/SystemReport.class b/build/_compileJava_2/net/minecraft/SystemReport.class new file mode 100644 index 000000000..98e88bebc Binary files /dev/null and b/build/_compileJava_2/net/minecraft/SystemReport.class differ diff --git a/build/_compileJava_2/net/minecraft/Util$1.class b/build/_compileJava_2/net/minecraft/Util$1.class new file mode 100644 index 000000000..ce1dc264d Binary files /dev/null and b/build/_compileJava_2/net/minecraft/Util$1.class differ diff --git a/build/_compileJava_2/net/minecraft/Util$10.class b/build/_compileJava_2/net/minecraft/Util$10.class new file mode 100644 index 000000000..3cb540955 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/Util$10.class differ diff --git a/build/_compileJava_2/net/minecraft/Util$11.class b/build/_compileJava_2/net/minecraft/Util$11.class new file mode 100644 index 000000000..a3b406d57 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/Util$11.class differ diff --git a/build/_compileJava_2/net/minecraft/Util$2.class b/build/_compileJava_2/net/minecraft/Util$2.class new file mode 100644 index 000000000..2cec2c83c Binary files /dev/null and b/build/_compileJava_2/net/minecraft/Util$2.class differ diff --git a/build/_compileJava_2/net/minecraft/Util$3.class b/build/_compileJava_2/net/minecraft/Util$3.class new file mode 100644 index 000000000..757c1df50 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/Util$3.class differ diff --git a/build/_compileJava_2/net/minecraft/Util$4.class b/build/_compileJava_2/net/minecraft/Util$4.class new file mode 100644 index 000000000..08be0eb71 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/Util$4.class differ diff --git a/build/_compileJava_2/net/minecraft/Util$5.class b/build/_compileJava_2/net/minecraft/Util$5.class new file mode 100644 index 000000000..3e3ccb56c Binary files /dev/null and b/build/_compileJava_2/net/minecraft/Util$5.class differ diff --git a/build/_compileJava_2/net/minecraft/Util$6.class b/build/_compileJava_2/net/minecraft/Util$6.class new file mode 100644 index 000000000..d7c1e63da Binary files /dev/null and b/build/_compileJava_2/net/minecraft/Util$6.class differ diff --git a/build/_compileJava_2/net/minecraft/Util$7.class b/build/_compileJava_2/net/minecraft/Util$7.class new file mode 100644 index 000000000..f6287cb16 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/Util$7.class differ diff --git a/build/_compileJava_2/net/minecraft/Util$8.class b/build/_compileJava_2/net/minecraft/Util$8.class new file mode 100644 index 000000000..ce5e2a93d Binary files /dev/null and b/build/_compileJava_2/net/minecraft/Util$8.class differ diff --git a/build/_compileJava_2/net/minecraft/Util$9.class b/build/_compileJava_2/net/minecraft/Util$9.class new file mode 100644 index 000000000..c36da748b Binary files /dev/null and b/build/_compileJava_2/net/minecraft/Util$9.class differ diff --git a/build/_compileJava_2/net/minecraft/Util$IdentityStrategy.class b/build/_compileJava_2/net/minecraft/Util$IdentityStrategy.class new file mode 100644 index 000000000..0d83390a0 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/Util$IdentityStrategy.class differ diff --git a/build/_compileJava_2/net/minecraft/Util$OS$1.class b/build/_compileJava_2/net/minecraft/Util$OS$1.class new file mode 100644 index 000000000..e66eed114 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/Util$OS$1.class differ diff --git a/build/_compileJava_2/net/minecraft/Util$OS$2.class b/build/_compileJava_2/net/minecraft/Util$OS$2.class new file mode 100644 index 000000000..a735c8253 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/Util$OS$2.class differ diff --git a/build/_compileJava_2/net/minecraft/Util$OS.class b/build/_compileJava_2/net/minecraft/Util$OS.class new file mode 100644 index 000000000..995485292 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/Util$OS.class differ diff --git a/build/_compileJava_2/net/minecraft/Util.class b/build/_compileJava_2/net/minecraft/Util.class new file mode 100644 index 000000000..4af1ef68f Binary files /dev/null and b/build/_compileJava_2/net/minecraft/Util.class differ diff --git a/build/_compileJava_2/net/minecraft/WorldVersion.class b/build/_compileJava_2/net/minecraft/WorldVersion.class new file mode 100644 index 000000000..270c8aa1a Binary files /dev/null and b/build/_compileJava_2/net/minecraft/WorldVersion.class differ diff --git a/build/_compileJava_2/net/minecraft/advancements/Advancement$Builder.class b/build/_compileJava_2/net/minecraft/advancements/Advancement$Builder.class new file mode 100644 index 000000000..59c089f55 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/advancements/Advancement$Builder.class differ diff --git a/build/_compileJava_2/net/minecraft/advancements/Advancement.class b/build/_compileJava_2/net/minecraft/advancements/Advancement.class new file mode 100644 index 000000000..0da152afc Binary files /dev/null and b/build/_compileJava_2/net/minecraft/advancements/Advancement.class differ diff --git a/build/_compileJava_2/net/minecraft/advancements/AdvancementList$Listener.class b/build/_compileJava_2/net/minecraft/advancements/AdvancementList$Listener.class new file mode 100644 index 000000000..cedabf91e Binary files /dev/null and b/build/_compileJava_2/net/minecraft/advancements/AdvancementList$Listener.class differ diff --git a/build/_compileJava_2/net/minecraft/advancements/AdvancementList.class b/build/_compileJava_2/net/minecraft/advancements/AdvancementList.class new file mode 100644 index 000000000..5d47a2455 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/advancements/AdvancementList.class differ diff --git a/build/_compileJava_2/net/minecraft/advancements/AdvancementProgress$Serializer.class b/build/_compileJava_2/net/minecraft/advancements/AdvancementProgress$Serializer.class new file mode 100644 index 000000000..c880afc85 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/advancements/AdvancementProgress$Serializer.class differ diff --git a/build/_compileJava_2/net/minecraft/advancements/AdvancementProgress.class b/build/_compileJava_2/net/minecraft/advancements/AdvancementProgress.class new file mode 100644 index 000000000..ad75e7143 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/advancements/AdvancementProgress.class differ diff --git a/build/_compileJava_2/net/minecraft/advancements/AdvancementRewards$Builder.class b/build/_compileJava_2/net/minecraft/advancements/AdvancementRewards$Builder.class new file mode 100644 index 000000000..6df49f89e Binary files /dev/null and b/build/_compileJava_2/net/minecraft/advancements/AdvancementRewards$Builder.class differ diff --git a/build/_compileJava_2/net/minecraft/advancements/AdvancementRewards.class b/build/_compileJava_2/net/minecraft/advancements/AdvancementRewards.class new file mode 100644 index 000000000..0c9afd407 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/advancements/AdvancementRewards.class differ diff --git a/build/_compileJava_2/net/minecraft/advancements/CriteriaTriggers.class b/build/_compileJava_2/net/minecraft/advancements/CriteriaTriggers.class new file mode 100644 index 000000000..8567cbb1d Binary files /dev/null and b/build/_compileJava_2/net/minecraft/advancements/CriteriaTriggers.class differ diff --git a/build/_compileJava_2/net/minecraft/advancements/Criterion.class b/build/_compileJava_2/net/minecraft/advancements/Criterion.class new file mode 100644 index 000000000..c6a35571e Binary files /dev/null and b/build/_compileJava_2/net/minecraft/advancements/Criterion.class differ diff --git a/build/_compileJava_2/net/minecraft/advancements/CriterionProgress.class b/build/_compileJava_2/net/minecraft/advancements/CriterionProgress.class new file mode 100644 index 000000000..d1930d30f Binary files /dev/null and b/build/_compileJava_2/net/minecraft/advancements/CriterionProgress.class differ diff --git a/build/_compileJava_2/net/minecraft/advancements/CriterionTrigger$Listener.class b/build/_compileJava_2/net/minecraft/advancements/CriterionTrigger$Listener.class new file mode 100644 index 000000000..f90c2c53e Binary files /dev/null and b/build/_compileJava_2/net/minecraft/advancements/CriterionTrigger$Listener.class differ diff --git a/build/_compileJava_2/net/minecraft/advancements/CriterionTrigger.class b/build/_compileJava_2/net/minecraft/advancements/CriterionTrigger.class new file mode 100644 index 000000000..e42a2d569 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/advancements/CriterionTrigger.class differ diff --git a/build/_compileJava_2/net/minecraft/advancements/CriterionTriggerInstance.class b/build/_compileJava_2/net/minecraft/advancements/CriterionTriggerInstance.class new file mode 100644 index 000000000..71adac6a8 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/advancements/CriterionTriggerInstance.class differ diff --git a/build/_compileJava_2/net/minecraft/advancements/DisplayInfo.class b/build/_compileJava_2/net/minecraft/advancements/DisplayInfo.class new file mode 100644 index 000000000..65a1144dc Binary files /dev/null and b/build/_compileJava_2/net/minecraft/advancements/DisplayInfo.class differ diff --git a/build/_compileJava_2/net/minecraft/advancements/FrameType.class b/build/_compileJava_2/net/minecraft/advancements/FrameType.class new file mode 100644 index 000000000..2991e7931 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/advancements/FrameType.class differ diff --git a/build/_compileJava_2/net/minecraft/advancements/RequirementsStrategy.class b/build/_compileJava_2/net/minecraft/advancements/RequirementsStrategy.class new file mode 100644 index 000000000..daad77210 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/advancements/RequirementsStrategy.class differ diff --git a/build/_compileJava_2/net/minecraft/advancements/TreeNodePosition.class b/build/_compileJava_2/net/minecraft/advancements/TreeNodePosition.class new file mode 100644 index 000000000..7e668f82f Binary files /dev/null and b/build/_compileJava_2/net/minecraft/advancements/TreeNodePosition.class differ diff --git a/build/_compileJava_2/net/minecraft/advancements/critereon/AbstractCriterionTriggerInstance.class b/build/_compileJava_2/net/minecraft/advancements/critereon/AbstractCriterionTriggerInstance.class new file mode 100644 index 000000000..3ce02b143 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/advancements/critereon/AbstractCriterionTriggerInstance.class differ diff --git a/build/_compileJava_2/net/minecraft/advancements/critereon/BeeNestDestroyedTrigger$TriggerInstance.class b/build/_compileJava_2/net/minecraft/advancements/critereon/BeeNestDestroyedTrigger$TriggerInstance.class new file mode 100644 index 000000000..e6eedd5e2 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/advancements/critereon/BeeNestDestroyedTrigger$TriggerInstance.class differ diff --git a/build/_compileJava_2/net/minecraft/advancements/critereon/BeeNestDestroyedTrigger.class b/build/_compileJava_2/net/minecraft/advancements/critereon/BeeNestDestroyedTrigger.class new file mode 100644 index 000000000..7acf817e1 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/advancements/critereon/BeeNestDestroyedTrigger.class differ diff --git a/build/_compileJava_2/net/minecraft/advancements/critereon/BlockPredicate$Builder.class b/build/_compileJava_2/net/minecraft/advancements/critereon/BlockPredicate$Builder.class new file mode 100644 index 000000000..9c7eddf6e Binary files /dev/null and b/build/_compileJava_2/net/minecraft/advancements/critereon/BlockPredicate$Builder.class differ diff --git a/build/_compileJava_2/net/minecraft/advancements/critereon/BlockPredicate.class b/build/_compileJava_2/net/minecraft/advancements/critereon/BlockPredicate.class new file mode 100644 index 000000000..38c7e3619 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/advancements/critereon/BlockPredicate.class differ diff --git a/build/_compileJava_2/net/minecraft/advancements/critereon/BredAnimalsTrigger$TriggerInstance.class b/build/_compileJava_2/net/minecraft/advancements/critereon/BredAnimalsTrigger$TriggerInstance.class new file mode 100644 index 000000000..e7e6fe860 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/advancements/critereon/BredAnimalsTrigger$TriggerInstance.class differ diff --git a/build/_compileJava_2/net/minecraft/advancements/critereon/BredAnimalsTrigger.class b/build/_compileJava_2/net/minecraft/advancements/critereon/BredAnimalsTrigger.class new file mode 100644 index 000000000..3b213fa0d Binary files /dev/null and b/build/_compileJava_2/net/minecraft/advancements/critereon/BredAnimalsTrigger.class differ diff --git a/build/_compileJava_2/net/minecraft/advancements/critereon/BrewedPotionTrigger$TriggerInstance.class b/build/_compileJava_2/net/minecraft/advancements/critereon/BrewedPotionTrigger$TriggerInstance.class new file mode 100644 index 000000000..6f669b035 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/advancements/critereon/BrewedPotionTrigger$TriggerInstance.class differ diff --git a/build/_compileJava_2/net/minecraft/advancements/critereon/BrewedPotionTrigger.class b/build/_compileJava_2/net/minecraft/advancements/critereon/BrewedPotionTrigger.class new file mode 100644 index 000000000..d14af78f4 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/advancements/critereon/BrewedPotionTrigger.class differ diff --git a/build/_compileJava_2/net/minecraft/advancements/critereon/ChangeDimensionTrigger$TriggerInstance.class b/build/_compileJava_2/net/minecraft/advancements/critereon/ChangeDimensionTrigger$TriggerInstance.class new file mode 100644 index 000000000..a930cfddb Binary files /dev/null and b/build/_compileJava_2/net/minecraft/advancements/critereon/ChangeDimensionTrigger$TriggerInstance.class differ diff --git a/build/_compileJava_2/net/minecraft/advancements/critereon/ChangeDimensionTrigger.class b/build/_compileJava_2/net/minecraft/advancements/critereon/ChangeDimensionTrigger.class new file mode 100644 index 000000000..6370421c5 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/advancements/critereon/ChangeDimensionTrigger.class differ diff --git a/build/_compileJava_2/net/minecraft/advancements/critereon/ChanneledLightningTrigger$TriggerInstance.class b/build/_compileJava_2/net/minecraft/advancements/critereon/ChanneledLightningTrigger$TriggerInstance.class new file mode 100644 index 000000000..78e580f0b Binary files /dev/null and b/build/_compileJava_2/net/minecraft/advancements/critereon/ChanneledLightningTrigger$TriggerInstance.class differ diff --git a/build/_compileJava_2/net/minecraft/advancements/critereon/ChanneledLightningTrigger.class b/build/_compileJava_2/net/minecraft/advancements/critereon/ChanneledLightningTrigger.class new file mode 100644 index 000000000..24cf517f5 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/advancements/critereon/ChanneledLightningTrigger.class differ diff --git a/build/_compileJava_2/net/minecraft/advancements/critereon/ConstructBeaconTrigger$TriggerInstance.class b/build/_compileJava_2/net/minecraft/advancements/critereon/ConstructBeaconTrigger$TriggerInstance.class new file mode 100644 index 000000000..c58b357dc Binary files /dev/null and b/build/_compileJava_2/net/minecraft/advancements/critereon/ConstructBeaconTrigger$TriggerInstance.class differ diff --git a/build/_compileJava_2/net/minecraft/advancements/critereon/ConstructBeaconTrigger.class b/build/_compileJava_2/net/minecraft/advancements/critereon/ConstructBeaconTrigger.class new file mode 100644 index 000000000..943b4baa2 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/advancements/critereon/ConstructBeaconTrigger.class differ diff --git a/build/_compileJava_2/net/minecraft/advancements/critereon/ConsumeItemTrigger$TriggerInstance.class b/build/_compileJava_2/net/minecraft/advancements/critereon/ConsumeItemTrigger$TriggerInstance.class new file mode 100644 index 000000000..3d8f2fdfb Binary files /dev/null and b/build/_compileJava_2/net/minecraft/advancements/critereon/ConsumeItemTrigger$TriggerInstance.class differ diff --git a/build/_compileJava_2/net/minecraft/advancements/critereon/ConsumeItemTrigger.class b/build/_compileJava_2/net/minecraft/advancements/critereon/ConsumeItemTrigger.class new file mode 100644 index 000000000..b841a5fff Binary files /dev/null and b/build/_compileJava_2/net/minecraft/advancements/critereon/ConsumeItemTrigger.class differ diff --git a/build/_compileJava_2/net/minecraft/advancements/critereon/ContextAwarePredicate.class b/build/_compileJava_2/net/minecraft/advancements/critereon/ContextAwarePredicate.class new file mode 100644 index 000000000..2100cd09b Binary files /dev/null and b/build/_compileJava_2/net/minecraft/advancements/critereon/ContextAwarePredicate.class differ diff --git a/build/_compileJava_2/net/minecraft/advancements/critereon/CuredZombieVillagerTrigger$TriggerInstance.class b/build/_compileJava_2/net/minecraft/advancements/critereon/CuredZombieVillagerTrigger$TriggerInstance.class new file mode 100644 index 000000000..375e6b91b Binary files /dev/null and b/build/_compileJava_2/net/minecraft/advancements/critereon/CuredZombieVillagerTrigger$TriggerInstance.class differ diff --git a/build/_compileJava_2/net/minecraft/advancements/critereon/CuredZombieVillagerTrigger.class b/build/_compileJava_2/net/minecraft/advancements/critereon/CuredZombieVillagerTrigger.class new file mode 100644 index 000000000..25582f8c5 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/advancements/critereon/CuredZombieVillagerTrigger.class differ diff --git a/build/_compileJava_2/net/minecraft/advancements/critereon/DamagePredicate$Builder.class b/build/_compileJava_2/net/minecraft/advancements/critereon/DamagePredicate$Builder.class new file mode 100644 index 000000000..c82e43c4e Binary files /dev/null and b/build/_compileJava_2/net/minecraft/advancements/critereon/DamagePredicate$Builder.class differ diff --git a/build/_compileJava_2/net/minecraft/advancements/critereon/DamagePredicate.class b/build/_compileJava_2/net/minecraft/advancements/critereon/DamagePredicate.class new file mode 100644 index 000000000..0871359b8 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/advancements/critereon/DamagePredicate.class differ diff --git a/build/_compileJava_2/net/minecraft/advancements/critereon/DamageSourcePredicate$Builder.class b/build/_compileJava_2/net/minecraft/advancements/critereon/DamageSourcePredicate$Builder.class new file mode 100644 index 000000000..c78f472a1 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/advancements/critereon/DamageSourcePredicate$Builder.class differ diff --git a/build/_compileJava_2/net/minecraft/advancements/critereon/DamageSourcePredicate.class b/build/_compileJava_2/net/minecraft/advancements/critereon/DamageSourcePredicate.class new file mode 100644 index 000000000..710b8157e Binary files /dev/null and b/build/_compileJava_2/net/minecraft/advancements/critereon/DamageSourcePredicate.class differ diff --git a/build/_compileJava_2/net/minecraft/advancements/critereon/DeserializationContext.class b/build/_compileJava_2/net/minecraft/advancements/critereon/DeserializationContext.class new file mode 100644 index 000000000..2a0e9a935 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/advancements/critereon/DeserializationContext.class differ diff --git a/build/_compileJava_2/net/minecraft/advancements/critereon/DistancePredicate.class b/build/_compileJava_2/net/minecraft/advancements/critereon/DistancePredicate.class new file mode 100644 index 000000000..12c6096e5 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/advancements/critereon/DistancePredicate.class differ diff --git a/build/_compileJava_2/net/minecraft/advancements/critereon/DistanceTrigger$TriggerInstance.class b/build/_compileJava_2/net/minecraft/advancements/critereon/DistanceTrigger$TriggerInstance.class new file mode 100644 index 000000000..8ba1f2697 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/advancements/critereon/DistanceTrigger$TriggerInstance.class differ diff --git a/build/_compileJava_2/net/minecraft/advancements/critereon/DistanceTrigger.class b/build/_compileJava_2/net/minecraft/advancements/critereon/DistanceTrigger.class new file mode 100644 index 000000000..e2aa6d781 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/advancements/critereon/DistanceTrigger.class differ diff --git a/build/_compileJava_2/net/minecraft/advancements/critereon/EffectsChangedTrigger$TriggerInstance.class b/build/_compileJava_2/net/minecraft/advancements/critereon/EffectsChangedTrigger$TriggerInstance.class new file mode 100644 index 000000000..71941b498 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/advancements/critereon/EffectsChangedTrigger$TriggerInstance.class differ diff --git a/build/_compileJava_2/net/minecraft/advancements/critereon/EffectsChangedTrigger.class b/build/_compileJava_2/net/minecraft/advancements/critereon/EffectsChangedTrigger.class new file mode 100644 index 000000000..704489965 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/advancements/critereon/EffectsChangedTrigger.class differ diff --git a/build/_compileJava_2/net/minecraft/advancements/critereon/EnchantedItemTrigger$TriggerInstance.class b/build/_compileJava_2/net/minecraft/advancements/critereon/EnchantedItemTrigger$TriggerInstance.class new file mode 100644 index 000000000..548e93f88 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/advancements/critereon/EnchantedItemTrigger$TriggerInstance.class differ diff --git a/build/_compileJava_2/net/minecraft/advancements/critereon/EnchantedItemTrigger.class b/build/_compileJava_2/net/minecraft/advancements/critereon/EnchantedItemTrigger.class new file mode 100644 index 000000000..f072f2f82 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/advancements/critereon/EnchantedItemTrigger.class differ diff --git a/build/_compileJava_2/net/minecraft/advancements/critereon/EnchantmentPredicate.class b/build/_compileJava_2/net/minecraft/advancements/critereon/EnchantmentPredicate.class new file mode 100644 index 000000000..e747eb544 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/advancements/critereon/EnchantmentPredicate.class differ diff --git a/build/_compileJava_2/net/minecraft/advancements/critereon/EnterBlockTrigger$TriggerInstance.class b/build/_compileJava_2/net/minecraft/advancements/critereon/EnterBlockTrigger$TriggerInstance.class new file mode 100644 index 000000000..0f4687224 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/advancements/critereon/EnterBlockTrigger$TriggerInstance.class differ diff --git a/build/_compileJava_2/net/minecraft/advancements/critereon/EnterBlockTrigger.class b/build/_compileJava_2/net/minecraft/advancements/critereon/EnterBlockTrigger.class new file mode 100644 index 000000000..f9b1c6111 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/advancements/critereon/EnterBlockTrigger.class differ diff --git a/build/_compileJava_2/net/minecraft/advancements/critereon/EntityEquipmentPredicate$Builder.class b/build/_compileJava_2/net/minecraft/advancements/critereon/EntityEquipmentPredicate$Builder.class new file mode 100644 index 000000000..c5c6e7e37 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/advancements/critereon/EntityEquipmentPredicate$Builder.class differ diff --git a/build/_compileJava_2/net/minecraft/advancements/critereon/EntityEquipmentPredicate.class b/build/_compileJava_2/net/minecraft/advancements/critereon/EntityEquipmentPredicate.class new file mode 100644 index 000000000..de1b3690e Binary files /dev/null and b/build/_compileJava_2/net/minecraft/advancements/critereon/EntityEquipmentPredicate.class differ diff --git a/build/_compileJava_2/net/minecraft/advancements/critereon/EntityFlagsPredicate$Builder.class b/build/_compileJava_2/net/minecraft/advancements/critereon/EntityFlagsPredicate$Builder.class new file mode 100644 index 000000000..a2c627b12 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/advancements/critereon/EntityFlagsPredicate$Builder.class differ diff --git a/build/_compileJava_2/net/minecraft/advancements/critereon/EntityFlagsPredicate.class b/build/_compileJava_2/net/minecraft/advancements/critereon/EntityFlagsPredicate.class new file mode 100644 index 000000000..b53a7be80 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/advancements/critereon/EntityFlagsPredicate.class differ diff --git a/build/_compileJava_2/net/minecraft/advancements/critereon/EntityHurtPlayerTrigger$TriggerInstance.class b/build/_compileJava_2/net/minecraft/advancements/critereon/EntityHurtPlayerTrigger$TriggerInstance.class new file mode 100644 index 000000000..85d6476da Binary files /dev/null and b/build/_compileJava_2/net/minecraft/advancements/critereon/EntityHurtPlayerTrigger$TriggerInstance.class differ diff --git a/build/_compileJava_2/net/minecraft/advancements/critereon/EntityHurtPlayerTrigger.class b/build/_compileJava_2/net/minecraft/advancements/critereon/EntityHurtPlayerTrigger.class new file mode 100644 index 000000000..f99c5a752 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/advancements/critereon/EntityHurtPlayerTrigger.class differ diff --git a/build/_compileJava_2/net/minecraft/advancements/critereon/EntityPredicate$Builder.class b/build/_compileJava_2/net/minecraft/advancements/critereon/EntityPredicate$Builder.class new file mode 100644 index 000000000..3fd2a3936 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/advancements/critereon/EntityPredicate$Builder.class differ diff --git a/build/_compileJava_2/net/minecraft/advancements/critereon/EntityPredicate.class b/build/_compileJava_2/net/minecraft/advancements/critereon/EntityPredicate.class new file mode 100644 index 000000000..6e8e3842c Binary files /dev/null and b/build/_compileJava_2/net/minecraft/advancements/critereon/EntityPredicate.class differ diff --git a/build/_compileJava_2/net/minecraft/advancements/critereon/EntitySubPredicate$1.class b/build/_compileJava_2/net/minecraft/advancements/critereon/EntitySubPredicate$1.class new file mode 100644 index 000000000..9ca019c6a Binary files /dev/null and b/build/_compileJava_2/net/minecraft/advancements/critereon/EntitySubPredicate$1.class differ diff --git a/build/_compileJava_2/net/minecraft/advancements/critereon/EntitySubPredicate$Type.class b/build/_compileJava_2/net/minecraft/advancements/critereon/EntitySubPredicate$Type.class new file mode 100644 index 000000000..b5b48fe5d Binary files /dev/null and b/build/_compileJava_2/net/minecraft/advancements/critereon/EntitySubPredicate$Type.class differ diff --git a/build/_compileJava_2/net/minecraft/advancements/critereon/EntitySubPredicate$Types.class b/build/_compileJava_2/net/minecraft/advancements/critereon/EntitySubPredicate$Types.class new file mode 100644 index 000000000..c6ed6dde5 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/advancements/critereon/EntitySubPredicate$Types.class differ diff --git a/build/_compileJava_2/net/minecraft/advancements/critereon/EntitySubPredicate.class b/build/_compileJava_2/net/minecraft/advancements/critereon/EntitySubPredicate.class new file mode 100644 index 000000000..f25684791 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/advancements/critereon/EntitySubPredicate.class differ diff --git a/build/_compileJava_2/net/minecraft/advancements/critereon/EntityTypePredicate$1.class b/build/_compileJava_2/net/minecraft/advancements/critereon/EntityTypePredicate$1.class new file mode 100644 index 000000000..dbccc7e7d Binary files /dev/null and b/build/_compileJava_2/net/minecraft/advancements/critereon/EntityTypePredicate$1.class differ diff --git a/build/_compileJava_2/net/minecraft/advancements/critereon/EntityTypePredicate$TagPredicate.class b/build/_compileJava_2/net/minecraft/advancements/critereon/EntityTypePredicate$TagPredicate.class new file mode 100644 index 000000000..2e0d18a8e Binary files /dev/null and b/build/_compileJava_2/net/minecraft/advancements/critereon/EntityTypePredicate$TagPredicate.class differ diff --git a/build/_compileJava_2/net/minecraft/advancements/critereon/EntityTypePredicate$TypePredicate.class b/build/_compileJava_2/net/minecraft/advancements/critereon/EntityTypePredicate$TypePredicate.class new file mode 100644 index 000000000..354666de6 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/advancements/critereon/EntityTypePredicate$TypePredicate.class differ diff --git a/build/_compileJava_2/net/minecraft/advancements/critereon/EntityTypePredicate.class b/build/_compileJava_2/net/minecraft/advancements/critereon/EntityTypePredicate.class new file mode 100644 index 000000000..6d1002b9e Binary files /dev/null and b/build/_compileJava_2/net/minecraft/advancements/critereon/EntityTypePredicate.class differ diff --git a/build/_compileJava_2/net/minecraft/advancements/critereon/EntityVariantPredicate$1.class b/build/_compileJava_2/net/minecraft/advancements/critereon/EntityVariantPredicate$1.class new file mode 100644 index 000000000..b114317c9 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/advancements/critereon/EntityVariantPredicate$1.class differ diff --git a/build/_compileJava_2/net/minecraft/advancements/critereon/EntityVariantPredicate.class b/build/_compileJava_2/net/minecraft/advancements/critereon/EntityVariantPredicate.class new file mode 100644 index 000000000..3f19683af Binary files /dev/null and b/build/_compileJava_2/net/minecraft/advancements/critereon/EntityVariantPredicate.class differ diff --git a/build/_compileJava_2/net/minecraft/advancements/critereon/FilledBucketTrigger$TriggerInstance.class b/build/_compileJava_2/net/minecraft/advancements/critereon/FilledBucketTrigger$TriggerInstance.class new file mode 100644 index 000000000..4789094e0 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/advancements/critereon/FilledBucketTrigger$TriggerInstance.class differ diff --git a/build/_compileJava_2/net/minecraft/advancements/critereon/FilledBucketTrigger.class b/build/_compileJava_2/net/minecraft/advancements/critereon/FilledBucketTrigger.class new file mode 100644 index 000000000..6d4fa30c6 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/advancements/critereon/FilledBucketTrigger.class differ diff --git a/build/_compileJava_2/net/minecraft/advancements/critereon/FishingHookPredicate.class b/build/_compileJava_2/net/minecraft/advancements/critereon/FishingHookPredicate.class new file mode 100644 index 000000000..814ea5d7a Binary files /dev/null and b/build/_compileJava_2/net/minecraft/advancements/critereon/FishingHookPredicate.class differ diff --git a/build/_compileJava_2/net/minecraft/advancements/critereon/FishingRodHookedTrigger$TriggerInstance.class b/build/_compileJava_2/net/minecraft/advancements/critereon/FishingRodHookedTrigger$TriggerInstance.class new file mode 100644 index 000000000..95e739a5e Binary files /dev/null and b/build/_compileJava_2/net/minecraft/advancements/critereon/FishingRodHookedTrigger$TriggerInstance.class differ diff --git a/build/_compileJava_2/net/minecraft/advancements/critereon/FishingRodHookedTrigger.class b/build/_compileJava_2/net/minecraft/advancements/critereon/FishingRodHookedTrigger.class new file mode 100644 index 000000000..66492d3bf Binary files /dev/null and b/build/_compileJava_2/net/minecraft/advancements/critereon/FishingRodHookedTrigger.class differ diff --git a/build/_compileJava_2/net/minecraft/advancements/critereon/FluidPredicate$Builder.class b/build/_compileJava_2/net/minecraft/advancements/critereon/FluidPredicate$Builder.class new file mode 100644 index 000000000..7fd8f8c76 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/advancements/critereon/FluidPredicate$Builder.class differ diff --git a/build/_compileJava_2/net/minecraft/advancements/critereon/FluidPredicate.class b/build/_compileJava_2/net/minecraft/advancements/critereon/FluidPredicate.class new file mode 100644 index 000000000..0efcd7828 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/advancements/critereon/FluidPredicate.class differ diff --git a/build/_compileJava_2/net/minecraft/advancements/critereon/ImpossibleTrigger$TriggerInstance.class b/build/_compileJava_2/net/minecraft/advancements/critereon/ImpossibleTrigger$TriggerInstance.class new file mode 100644 index 000000000..16aec8076 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/advancements/critereon/ImpossibleTrigger$TriggerInstance.class differ diff --git a/build/_compileJava_2/net/minecraft/advancements/critereon/ImpossibleTrigger.class b/build/_compileJava_2/net/minecraft/advancements/critereon/ImpossibleTrigger.class new file mode 100644 index 000000000..8fc3133f0 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/advancements/critereon/ImpossibleTrigger.class differ diff --git a/build/_compileJava_2/net/minecraft/advancements/critereon/InventoryChangeTrigger$TriggerInstance.class b/build/_compileJava_2/net/minecraft/advancements/critereon/InventoryChangeTrigger$TriggerInstance.class new file mode 100644 index 000000000..1911f207a Binary files /dev/null and b/build/_compileJava_2/net/minecraft/advancements/critereon/InventoryChangeTrigger$TriggerInstance.class differ diff --git a/build/_compileJava_2/net/minecraft/advancements/critereon/InventoryChangeTrigger.class b/build/_compileJava_2/net/minecraft/advancements/critereon/InventoryChangeTrigger.class new file mode 100644 index 000000000..969536af6 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/advancements/critereon/InventoryChangeTrigger.class differ diff --git a/build/_compileJava_2/net/minecraft/advancements/critereon/ItemDurabilityTrigger$TriggerInstance.class b/build/_compileJava_2/net/minecraft/advancements/critereon/ItemDurabilityTrigger$TriggerInstance.class new file mode 100644 index 000000000..0a2bd36d4 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/advancements/critereon/ItemDurabilityTrigger$TriggerInstance.class differ diff --git a/build/_compileJava_2/net/minecraft/advancements/critereon/ItemDurabilityTrigger.class b/build/_compileJava_2/net/minecraft/advancements/critereon/ItemDurabilityTrigger.class new file mode 100644 index 000000000..68a7d9dc3 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/advancements/critereon/ItemDurabilityTrigger.class differ diff --git a/build/_compileJava_2/net/minecraft/advancements/critereon/ItemPredicate$Builder.class b/build/_compileJava_2/net/minecraft/advancements/critereon/ItemPredicate$Builder.class new file mode 100644 index 000000000..31ab2df17 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/advancements/critereon/ItemPredicate$Builder.class differ diff --git a/build/_compileJava_2/net/minecraft/advancements/critereon/ItemPredicate.class b/build/_compileJava_2/net/minecraft/advancements/critereon/ItemPredicate.class new file mode 100644 index 000000000..c7ab18010 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/advancements/critereon/ItemPredicate.class differ diff --git a/build/_compileJava_2/net/minecraft/advancements/critereon/ItemUsedOnLocationTrigger$TriggerInstance.class b/build/_compileJava_2/net/minecraft/advancements/critereon/ItemUsedOnLocationTrigger$TriggerInstance.class new file mode 100644 index 000000000..5c79e8a8f Binary files /dev/null and b/build/_compileJava_2/net/minecraft/advancements/critereon/ItemUsedOnLocationTrigger$TriggerInstance.class differ diff --git a/build/_compileJava_2/net/minecraft/advancements/critereon/ItemUsedOnLocationTrigger.class b/build/_compileJava_2/net/minecraft/advancements/critereon/ItemUsedOnLocationTrigger.class new file mode 100644 index 000000000..cb1deb640 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/advancements/critereon/ItemUsedOnLocationTrigger.class differ diff --git a/build/_compileJava_2/net/minecraft/advancements/critereon/KilledByCrossbowTrigger$TriggerInstance.class b/build/_compileJava_2/net/minecraft/advancements/critereon/KilledByCrossbowTrigger$TriggerInstance.class new file mode 100644 index 000000000..a2afc420f Binary files /dev/null and b/build/_compileJava_2/net/minecraft/advancements/critereon/KilledByCrossbowTrigger$TriggerInstance.class differ diff --git a/build/_compileJava_2/net/minecraft/advancements/critereon/KilledByCrossbowTrigger.class b/build/_compileJava_2/net/minecraft/advancements/critereon/KilledByCrossbowTrigger.class new file mode 100644 index 000000000..42b50cbc0 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/advancements/critereon/KilledByCrossbowTrigger.class differ diff --git a/build/_compileJava_2/net/minecraft/advancements/critereon/KilledTrigger$TriggerInstance.class b/build/_compileJava_2/net/minecraft/advancements/critereon/KilledTrigger$TriggerInstance.class new file mode 100644 index 000000000..3218c84af Binary files /dev/null and b/build/_compileJava_2/net/minecraft/advancements/critereon/KilledTrigger$TriggerInstance.class differ diff --git a/build/_compileJava_2/net/minecraft/advancements/critereon/KilledTrigger.class b/build/_compileJava_2/net/minecraft/advancements/critereon/KilledTrigger.class new file mode 100644 index 000000000..405d013b0 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/advancements/critereon/KilledTrigger.class differ diff --git a/build/_compileJava_2/net/minecraft/advancements/critereon/LevitationTrigger$TriggerInstance.class b/build/_compileJava_2/net/minecraft/advancements/critereon/LevitationTrigger$TriggerInstance.class new file mode 100644 index 000000000..b575b4308 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/advancements/critereon/LevitationTrigger$TriggerInstance.class differ diff --git a/build/_compileJava_2/net/minecraft/advancements/critereon/LevitationTrigger.class b/build/_compileJava_2/net/minecraft/advancements/critereon/LevitationTrigger.class new file mode 100644 index 000000000..4b0ee7044 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/advancements/critereon/LevitationTrigger.class differ diff --git a/build/_compileJava_2/net/minecraft/advancements/critereon/LightPredicate$Builder.class b/build/_compileJava_2/net/minecraft/advancements/critereon/LightPredicate$Builder.class new file mode 100644 index 000000000..5187832f8 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/advancements/critereon/LightPredicate$Builder.class differ diff --git a/build/_compileJava_2/net/minecraft/advancements/critereon/LightPredicate.class b/build/_compileJava_2/net/minecraft/advancements/critereon/LightPredicate.class new file mode 100644 index 000000000..34d2d8eb7 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/advancements/critereon/LightPredicate.class differ diff --git a/build/_compileJava_2/net/minecraft/advancements/critereon/LighthingBoltPredicate.class b/build/_compileJava_2/net/minecraft/advancements/critereon/LighthingBoltPredicate.class new file mode 100644 index 000000000..592cae477 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/advancements/critereon/LighthingBoltPredicate.class differ diff --git a/build/_compileJava_2/net/minecraft/advancements/critereon/LightningStrikeTrigger$TriggerInstance.class b/build/_compileJava_2/net/minecraft/advancements/critereon/LightningStrikeTrigger$TriggerInstance.class new file mode 100644 index 000000000..a0786b3c9 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/advancements/critereon/LightningStrikeTrigger$TriggerInstance.class differ diff --git a/build/_compileJava_2/net/minecraft/advancements/critereon/LightningStrikeTrigger.class b/build/_compileJava_2/net/minecraft/advancements/critereon/LightningStrikeTrigger.class new file mode 100644 index 000000000..961b26414 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/advancements/critereon/LightningStrikeTrigger.class differ diff --git a/build/_compileJava_2/net/minecraft/advancements/critereon/LocationPredicate$Builder.class b/build/_compileJava_2/net/minecraft/advancements/critereon/LocationPredicate$Builder.class new file mode 100644 index 000000000..cc2e9a014 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/advancements/critereon/LocationPredicate$Builder.class differ diff --git a/build/_compileJava_2/net/minecraft/advancements/critereon/LocationPredicate.class b/build/_compileJava_2/net/minecraft/advancements/critereon/LocationPredicate.class new file mode 100644 index 000000000..3e7876806 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/advancements/critereon/LocationPredicate.class differ diff --git a/build/_compileJava_2/net/minecraft/advancements/critereon/LootTableTrigger$TriggerInstance.class b/build/_compileJava_2/net/minecraft/advancements/critereon/LootTableTrigger$TriggerInstance.class new file mode 100644 index 000000000..74f42340c Binary files /dev/null and b/build/_compileJava_2/net/minecraft/advancements/critereon/LootTableTrigger$TriggerInstance.class differ diff --git a/build/_compileJava_2/net/minecraft/advancements/critereon/LootTableTrigger.class b/build/_compileJava_2/net/minecraft/advancements/critereon/LootTableTrigger.class new file mode 100644 index 000000000..82354e651 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/advancements/critereon/LootTableTrigger.class differ diff --git a/build/_compileJava_2/net/minecraft/advancements/critereon/MinMaxBounds$BoundsFactory.class b/build/_compileJava_2/net/minecraft/advancements/critereon/MinMaxBounds$BoundsFactory.class new file mode 100644 index 000000000..cca7bad41 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/advancements/critereon/MinMaxBounds$BoundsFactory.class differ diff --git a/build/_compileJava_2/net/minecraft/advancements/critereon/MinMaxBounds$BoundsFromReaderFactory.class b/build/_compileJava_2/net/minecraft/advancements/critereon/MinMaxBounds$BoundsFromReaderFactory.class new file mode 100644 index 000000000..5c06751c3 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/advancements/critereon/MinMaxBounds$BoundsFromReaderFactory.class differ diff --git a/build/_compileJava_2/net/minecraft/advancements/critereon/MinMaxBounds$Doubles.class b/build/_compileJava_2/net/minecraft/advancements/critereon/MinMaxBounds$Doubles.class new file mode 100644 index 000000000..2ce8587ca Binary files /dev/null and b/build/_compileJava_2/net/minecraft/advancements/critereon/MinMaxBounds$Doubles.class differ diff --git a/build/_compileJava_2/net/minecraft/advancements/critereon/MinMaxBounds$Ints.class b/build/_compileJava_2/net/minecraft/advancements/critereon/MinMaxBounds$Ints.class new file mode 100644 index 000000000..415e5f703 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/advancements/critereon/MinMaxBounds$Ints.class differ diff --git a/build/_compileJava_2/net/minecraft/advancements/critereon/MinMaxBounds.class b/build/_compileJava_2/net/minecraft/advancements/critereon/MinMaxBounds.class new file mode 100644 index 000000000..0e28bb615 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/advancements/critereon/MinMaxBounds.class differ diff --git a/build/_compileJava_2/net/minecraft/advancements/critereon/MobEffectsPredicate$MobEffectInstancePredicate.class b/build/_compileJava_2/net/minecraft/advancements/critereon/MobEffectsPredicate$MobEffectInstancePredicate.class new file mode 100644 index 000000000..4793952a4 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/advancements/critereon/MobEffectsPredicate$MobEffectInstancePredicate.class differ diff --git a/build/_compileJava_2/net/minecraft/advancements/critereon/MobEffectsPredicate.class b/build/_compileJava_2/net/minecraft/advancements/critereon/MobEffectsPredicate.class new file mode 100644 index 000000000..a2101406b Binary files /dev/null and b/build/_compileJava_2/net/minecraft/advancements/critereon/MobEffectsPredicate.class differ diff --git a/build/_compileJava_2/net/minecraft/advancements/critereon/NbtPredicate.class b/build/_compileJava_2/net/minecraft/advancements/critereon/NbtPredicate.class new file mode 100644 index 000000000..e9572b0a9 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/advancements/critereon/NbtPredicate.class differ diff --git a/build/_compileJava_2/net/minecraft/advancements/critereon/PickedUpItemTrigger$TriggerInstance.class b/build/_compileJava_2/net/minecraft/advancements/critereon/PickedUpItemTrigger$TriggerInstance.class new file mode 100644 index 000000000..cbdc5d24c Binary files /dev/null and b/build/_compileJava_2/net/minecraft/advancements/critereon/PickedUpItemTrigger$TriggerInstance.class differ diff --git a/build/_compileJava_2/net/minecraft/advancements/critereon/PickedUpItemTrigger.class b/build/_compileJava_2/net/minecraft/advancements/critereon/PickedUpItemTrigger.class new file mode 100644 index 000000000..4daebdf7f Binary files /dev/null and b/build/_compileJava_2/net/minecraft/advancements/critereon/PickedUpItemTrigger.class differ diff --git a/build/_compileJava_2/net/minecraft/advancements/critereon/PlayerHurtEntityTrigger$TriggerInstance.class b/build/_compileJava_2/net/minecraft/advancements/critereon/PlayerHurtEntityTrigger$TriggerInstance.class new file mode 100644 index 000000000..5f9b1329e Binary files /dev/null and b/build/_compileJava_2/net/minecraft/advancements/critereon/PlayerHurtEntityTrigger$TriggerInstance.class differ diff --git a/build/_compileJava_2/net/minecraft/advancements/critereon/PlayerHurtEntityTrigger.class b/build/_compileJava_2/net/minecraft/advancements/critereon/PlayerHurtEntityTrigger.class new file mode 100644 index 000000000..8071d802e Binary files /dev/null and b/build/_compileJava_2/net/minecraft/advancements/critereon/PlayerHurtEntityTrigger.class differ diff --git a/build/_compileJava_2/net/minecraft/advancements/critereon/PlayerInteractTrigger$TriggerInstance.class b/build/_compileJava_2/net/minecraft/advancements/critereon/PlayerInteractTrigger$TriggerInstance.class new file mode 100644 index 000000000..0dedc3c30 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/advancements/critereon/PlayerInteractTrigger$TriggerInstance.class differ diff --git a/build/_compileJava_2/net/minecraft/advancements/critereon/PlayerInteractTrigger.class b/build/_compileJava_2/net/minecraft/advancements/critereon/PlayerInteractTrigger.class new file mode 100644 index 000000000..75e09da55 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/advancements/critereon/PlayerInteractTrigger.class differ diff --git a/build/_compileJava_2/net/minecraft/advancements/critereon/PlayerPredicate$AdvancementCriterionsPredicate.class b/build/_compileJava_2/net/minecraft/advancements/critereon/PlayerPredicate$AdvancementCriterionsPredicate.class new file mode 100644 index 000000000..9ef44bcfd Binary files /dev/null and b/build/_compileJava_2/net/minecraft/advancements/critereon/PlayerPredicate$AdvancementCriterionsPredicate.class differ diff --git a/build/_compileJava_2/net/minecraft/advancements/critereon/PlayerPredicate$AdvancementDonePredicate.class b/build/_compileJava_2/net/minecraft/advancements/critereon/PlayerPredicate$AdvancementDonePredicate.class new file mode 100644 index 000000000..61cae732d Binary files /dev/null and b/build/_compileJava_2/net/minecraft/advancements/critereon/PlayerPredicate$AdvancementDonePredicate.class differ diff --git a/build/_compileJava_2/net/minecraft/advancements/critereon/PlayerPredicate$AdvancementPredicate.class b/build/_compileJava_2/net/minecraft/advancements/critereon/PlayerPredicate$AdvancementPredicate.class new file mode 100644 index 000000000..6e126bb24 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/advancements/critereon/PlayerPredicate$AdvancementPredicate.class differ diff --git a/build/_compileJava_2/net/minecraft/advancements/critereon/PlayerPredicate$Builder.class b/build/_compileJava_2/net/minecraft/advancements/critereon/PlayerPredicate$Builder.class new file mode 100644 index 000000000..3db2ab3d0 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/advancements/critereon/PlayerPredicate$Builder.class differ diff --git a/build/_compileJava_2/net/minecraft/advancements/critereon/PlayerPredicate.class b/build/_compileJava_2/net/minecraft/advancements/critereon/PlayerPredicate.class new file mode 100644 index 000000000..c8dbf3bf8 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/advancements/critereon/PlayerPredicate.class differ diff --git a/build/_compileJava_2/net/minecraft/advancements/critereon/PlayerTrigger$TriggerInstance.class b/build/_compileJava_2/net/minecraft/advancements/critereon/PlayerTrigger$TriggerInstance.class new file mode 100644 index 000000000..6c976b279 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/advancements/critereon/PlayerTrigger$TriggerInstance.class differ diff --git a/build/_compileJava_2/net/minecraft/advancements/critereon/PlayerTrigger.class b/build/_compileJava_2/net/minecraft/advancements/critereon/PlayerTrigger.class new file mode 100644 index 000000000..5100f2db7 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/advancements/critereon/PlayerTrigger.class differ diff --git a/build/_compileJava_2/net/minecraft/advancements/critereon/RecipeCraftedTrigger$TriggerInstance.class b/build/_compileJava_2/net/minecraft/advancements/critereon/RecipeCraftedTrigger$TriggerInstance.class new file mode 100644 index 000000000..615c32f5e Binary files /dev/null and b/build/_compileJava_2/net/minecraft/advancements/critereon/RecipeCraftedTrigger$TriggerInstance.class differ diff --git a/build/_compileJava_2/net/minecraft/advancements/critereon/RecipeCraftedTrigger.class b/build/_compileJava_2/net/minecraft/advancements/critereon/RecipeCraftedTrigger.class new file mode 100644 index 000000000..004ec20d3 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/advancements/critereon/RecipeCraftedTrigger.class differ diff --git a/build/_compileJava_2/net/minecraft/advancements/critereon/RecipeUnlockedTrigger$TriggerInstance.class b/build/_compileJava_2/net/minecraft/advancements/critereon/RecipeUnlockedTrigger$TriggerInstance.class new file mode 100644 index 000000000..806318585 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/advancements/critereon/RecipeUnlockedTrigger$TriggerInstance.class differ diff --git a/build/_compileJava_2/net/minecraft/advancements/critereon/RecipeUnlockedTrigger.class b/build/_compileJava_2/net/minecraft/advancements/critereon/RecipeUnlockedTrigger.class new file mode 100644 index 000000000..bdb1fc4d9 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/advancements/critereon/RecipeUnlockedTrigger.class differ diff --git a/build/_compileJava_2/net/minecraft/advancements/critereon/SerializationContext.class b/build/_compileJava_2/net/minecraft/advancements/critereon/SerializationContext.class new file mode 100644 index 000000000..393f08404 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/advancements/critereon/SerializationContext.class differ diff --git a/build/_compileJava_2/net/minecraft/advancements/critereon/ShotCrossbowTrigger$TriggerInstance.class b/build/_compileJava_2/net/minecraft/advancements/critereon/ShotCrossbowTrigger$TriggerInstance.class new file mode 100644 index 000000000..873620690 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/advancements/critereon/ShotCrossbowTrigger$TriggerInstance.class differ diff --git a/build/_compileJava_2/net/minecraft/advancements/critereon/ShotCrossbowTrigger.class b/build/_compileJava_2/net/minecraft/advancements/critereon/ShotCrossbowTrigger.class new file mode 100644 index 000000000..9a808ea70 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/advancements/critereon/ShotCrossbowTrigger.class differ diff --git a/build/_compileJava_2/net/minecraft/advancements/critereon/SimpleCriterionTrigger.class b/build/_compileJava_2/net/minecraft/advancements/critereon/SimpleCriterionTrigger.class new file mode 100644 index 000000000..c6e274c9e Binary files /dev/null and b/build/_compileJava_2/net/minecraft/advancements/critereon/SimpleCriterionTrigger.class differ diff --git a/build/_compileJava_2/net/minecraft/advancements/critereon/SlideDownBlockTrigger$TriggerInstance.class b/build/_compileJava_2/net/minecraft/advancements/critereon/SlideDownBlockTrigger$TriggerInstance.class new file mode 100644 index 000000000..7efff6e7b Binary files /dev/null and b/build/_compileJava_2/net/minecraft/advancements/critereon/SlideDownBlockTrigger$TriggerInstance.class differ diff --git a/build/_compileJava_2/net/minecraft/advancements/critereon/SlideDownBlockTrigger.class b/build/_compileJava_2/net/minecraft/advancements/critereon/SlideDownBlockTrigger.class new file mode 100644 index 000000000..52ef7c47b Binary files /dev/null and b/build/_compileJava_2/net/minecraft/advancements/critereon/SlideDownBlockTrigger.class differ diff --git a/build/_compileJava_2/net/minecraft/advancements/critereon/SlimePredicate.class b/build/_compileJava_2/net/minecraft/advancements/critereon/SlimePredicate.class new file mode 100644 index 000000000..b9cec7ffb Binary files /dev/null and b/build/_compileJava_2/net/minecraft/advancements/critereon/SlimePredicate.class differ diff --git a/build/_compileJava_2/net/minecraft/advancements/critereon/StartRidingTrigger$TriggerInstance.class b/build/_compileJava_2/net/minecraft/advancements/critereon/StartRidingTrigger$TriggerInstance.class new file mode 100644 index 000000000..21da20f9d Binary files /dev/null and b/build/_compileJava_2/net/minecraft/advancements/critereon/StartRidingTrigger$TriggerInstance.class differ diff --git a/build/_compileJava_2/net/minecraft/advancements/critereon/StartRidingTrigger.class b/build/_compileJava_2/net/minecraft/advancements/critereon/StartRidingTrigger.class new file mode 100644 index 000000000..1068e5801 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/advancements/critereon/StartRidingTrigger.class differ diff --git a/build/_compileJava_2/net/minecraft/advancements/critereon/StatePropertiesPredicate$Builder.class b/build/_compileJava_2/net/minecraft/advancements/critereon/StatePropertiesPredicate$Builder.class new file mode 100644 index 000000000..a74fb1a64 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/advancements/critereon/StatePropertiesPredicate$Builder.class differ diff --git a/build/_compileJava_2/net/minecraft/advancements/critereon/StatePropertiesPredicate$ExactPropertyMatcher.class b/build/_compileJava_2/net/minecraft/advancements/critereon/StatePropertiesPredicate$ExactPropertyMatcher.class new file mode 100644 index 000000000..65fcc8c13 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/advancements/critereon/StatePropertiesPredicate$ExactPropertyMatcher.class differ diff --git a/build/_compileJava_2/net/minecraft/advancements/critereon/StatePropertiesPredicate$PropertyMatcher.class b/build/_compileJava_2/net/minecraft/advancements/critereon/StatePropertiesPredicate$PropertyMatcher.class new file mode 100644 index 000000000..39ad2df01 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/advancements/critereon/StatePropertiesPredicate$PropertyMatcher.class differ diff --git a/build/_compileJava_2/net/minecraft/advancements/critereon/StatePropertiesPredicate$RangedPropertyMatcher.class b/build/_compileJava_2/net/minecraft/advancements/critereon/StatePropertiesPredicate$RangedPropertyMatcher.class new file mode 100644 index 000000000..e2d75cf05 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/advancements/critereon/StatePropertiesPredicate$RangedPropertyMatcher.class differ diff --git a/build/_compileJava_2/net/minecraft/advancements/critereon/StatePropertiesPredicate.class b/build/_compileJava_2/net/minecraft/advancements/critereon/StatePropertiesPredicate.class new file mode 100644 index 000000000..eb63e62dc Binary files /dev/null and b/build/_compileJava_2/net/minecraft/advancements/critereon/StatePropertiesPredicate.class differ diff --git a/build/_compileJava_2/net/minecraft/advancements/critereon/SummonedEntityTrigger$TriggerInstance.class b/build/_compileJava_2/net/minecraft/advancements/critereon/SummonedEntityTrigger$TriggerInstance.class new file mode 100644 index 000000000..6f3ecd7be Binary files /dev/null and b/build/_compileJava_2/net/minecraft/advancements/critereon/SummonedEntityTrigger$TriggerInstance.class differ diff --git a/build/_compileJava_2/net/minecraft/advancements/critereon/SummonedEntityTrigger.class b/build/_compileJava_2/net/minecraft/advancements/critereon/SummonedEntityTrigger.class new file mode 100644 index 000000000..8e7e90b04 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/advancements/critereon/SummonedEntityTrigger.class differ diff --git a/build/_compileJava_2/net/minecraft/advancements/critereon/TagPredicate.class b/build/_compileJava_2/net/minecraft/advancements/critereon/TagPredicate.class new file mode 100644 index 000000000..e1f61f41b Binary files /dev/null and b/build/_compileJava_2/net/minecraft/advancements/critereon/TagPredicate.class differ diff --git a/build/_compileJava_2/net/minecraft/advancements/critereon/TameAnimalTrigger$TriggerInstance.class b/build/_compileJava_2/net/minecraft/advancements/critereon/TameAnimalTrigger$TriggerInstance.class new file mode 100644 index 000000000..52088314b Binary files /dev/null and b/build/_compileJava_2/net/minecraft/advancements/critereon/TameAnimalTrigger$TriggerInstance.class differ diff --git a/build/_compileJava_2/net/minecraft/advancements/critereon/TameAnimalTrigger.class b/build/_compileJava_2/net/minecraft/advancements/critereon/TameAnimalTrigger.class new file mode 100644 index 000000000..fb8a70e84 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/advancements/critereon/TameAnimalTrigger.class differ diff --git a/build/_compileJava_2/net/minecraft/advancements/critereon/TargetBlockTrigger$TriggerInstance.class b/build/_compileJava_2/net/minecraft/advancements/critereon/TargetBlockTrigger$TriggerInstance.class new file mode 100644 index 000000000..c16170d77 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/advancements/critereon/TargetBlockTrigger$TriggerInstance.class differ diff --git a/build/_compileJava_2/net/minecraft/advancements/critereon/TargetBlockTrigger.class b/build/_compileJava_2/net/minecraft/advancements/critereon/TargetBlockTrigger.class new file mode 100644 index 000000000..c7541db33 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/advancements/critereon/TargetBlockTrigger.class differ diff --git a/build/_compileJava_2/net/minecraft/advancements/critereon/TradeTrigger$TriggerInstance.class b/build/_compileJava_2/net/minecraft/advancements/critereon/TradeTrigger$TriggerInstance.class new file mode 100644 index 000000000..411aec3f8 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/advancements/critereon/TradeTrigger$TriggerInstance.class differ diff --git a/build/_compileJava_2/net/minecraft/advancements/critereon/TradeTrigger.class b/build/_compileJava_2/net/minecraft/advancements/critereon/TradeTrigger.class new file mode 100644 index 000000000..cec3f2b87 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/advancements/critereon/TradeTrigger.class differ diff --git a/build/_compileJava_2/net/minecraft/advancements/critereon/UsedEnderEyeTrigger$TriggerInstance.class b/build/_compileJava_2/net/minecraft/advancements/critereon/UsedEnderEyeTrigger$TriggerInstance.class new file mode 100644 index 000000000..e5d0b11fb Binary files /dev/null and b/build/_compileJava_2/net/minecraft/advancements/critereon/UsedEnderEyeTrigger$TriggerInstance.class differ diff --git a/build/_compileJava_2/net/minecraft/advancements/critereon/UsedEnderEyeTrigger.class b/build/_compileJava_2/net/minecraft/advancements/critereon/UsedEnderEyeTrigger.class new file mode 100644 index 000000000..97f860857 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/advancements/critereon/UsedEnderEyeTrigger.class differ diff --git a/build/_compileJava_2/net/minecraft/advancements/critereon/UsedTotemTrigger$TriggerInstance.class b/build/_compileJava_2/net/minecraft/advancements/critereon/UsedTotemTrigger$TriggerInstance.class new file mode 100644 index 000000000..08a133616 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/advancements/critereon/UsedTotemTrigger$TriggerInstance.class differ diff --git a/build/_compileJava_2/net/minecraft/advancements/critereon/UsedTotemTrigger.class b/build/_compileJava_2/net/minecraft/advancements/critereon/UsedTotemTrigger.class new file mode 100644 index 000000000..953c1722b Binary files /dev/null and b/build/_compileJava_2/net/minecraft/advancements/critereon/UsedTotemTrigger.class differ diff --git a/build/_compileJava_2/net/minecraft/advancements/critereon/UsingItemTrigger$TriggerInstance.class b/build/_compileJava_2/net/minecraft/advancements/critereon/UsingItemTrigger$TriggerInstance.class new file mode 100644 index 000000000..cf47c10b7 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/advancements/critereon/UsingItemTrigger$TriggerInstance.class differ diff --git a/build/_compileJava_2/net/minecraft/advancements/critereon/UsingItemTrigger.class b/build/_compileJava_2/net/minecraft/advancements/critereon/UsingItemTrigger.class new file mode 100644 index 000000000..bc431ddf8 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/advancements/critereon/UsingItemTrigger.class differ diff --git a/build/_compileJava_2/net/minecraft/advancements/critereon/WrappedMinMaxBounds.class b/build/_compileJava_2/net/minecraft/advancements/critereon/WrappedMinMaxBounds.class new file mode 100644 index 000000000..8c97a6b77 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/advancements/critereon/WrappedMinMaxBounds.class differ diff --git a/build/_compileJava_2/net/minecraft/advancements/critereon/package-info.class b/build/_compileJava_2/net/minecraft/advancements/critereon/package-info.class new file mode 100644 index 000000000..5591d36f6 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/advancements/critereon/package-info.class differ diff --git a/build/_compileJava_2/net/minecraft/advancements/package-info.class b/build/_compileJava_2/net/minecraft/advancements/package-info.class new file mode 100644 index 000000000..7a2471268 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/advancements/package-info.class differ diff --git a/build/_compileJava_2/net/minecraft/client/AttackIndicatorStatus.class b/build/_compileJava_2/net/minecraft/client/AttackIndicatorStatus.class new file mode 100644 index 000000000..bcba1f925 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/AttackIndicatorStatus.class differ diff --git a/build/_compileJava_2/net/minecraft/client/Camera$NearPlane.class b/build/_compileJava_2/net/minecraft/client/Camera$NearPlane.class new file mode 100644 index 000000000..09663005b Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/Camera$NearPlane.class differ diff --git a/build/_compileJava_2/net/minecraft/client/Camera.class b/build/_compileJava_2/net/minecraft/client/Camera.class new file mode 100644 index 000000000..9beeaf3bf Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/Camera.class differ diff --git a/build/_compileJava_2/net/minecraft/client/CameraType.class b/build/_compileJava_2/net/minecraft/client/CameraType.class new file mode 100644 index 000000000..efc20c77b Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/CameraType.class differ diff --git a/build/_compileJava_2/net/minecraft/client/ClientBrandRetriever.class b/build/_compileJava_2/net/minecraft/client/ClientBrandRetriever.class new file mode 100644 index 000000000..defc3af58 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/ClientBrandRetriever.class differ diff --git a/build/_compileJava_2/net/minecraft/client/ClientRecipeBook$1.class b/build/_compileJava_2/net/minecraft/client/ClientRecipeBook$1.class new file mode 100644 index 000000000..e2ba92cfc Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/ClientRecipeBook$1.class differ diff --git a/build/_compileJava_2/net/minecraft/client/ClientRecipeBook.class b/build/_compileJava_2/net/minecraft/client/ClientRecipeBook.class new file mode 100644 index 000000000..8df69bfac Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/ClientRecipeBook.class differ diff --git a/build/_compileJava_2/net/minecraft/client/CloudStatus.class b/build/_compileJava_2/net/minecraft/client/CloudStatus.class new file mode 100644 index 000000000..fd5e89e12 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/CloudStatus.class differ diff --git a/build/_compileJava_2/net/minecraft/client/ComponentCollector.class b/build/_compileJava_2/net/minecraft/client/ComponentCollector.class new file mode 100644 index 000000000..dfd261fd1 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/ComponentCollector.class differ diff --git a/build/_compileJava_2/net/minecraft/client/DebugQueryHandler.class b/build/_compileJava_2/net/minecraft/client/DebugQueryHandler.class new file mode 100644 index 000000000..3baf96ea5 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/DebugQueryHandler.class differ diff --git a/build/_compileJava_2/net/minecraft/client/GameNarrator$NarratorInitException.class b/build/_compileJava_2/net/minecraft/client/GameNarrator$NarratorInitException.class new file mode 100644 index 000000000..be9ac67fb Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/GameNarrator$NarratorInitException.class differ diff --git a/build/_compileJava_2/net/minecraft/client/GameNarrator.class b/build/_compileJava_2/net/minecraft/client/GameNarrator.class new file mode 100644 index 000000000..c1716b3b2 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/GameNarrator.class differ diff --git a/build/_compileJava_2/net/minecraft/client/GraphicsStatus$1.class b/build/_compileJava_2/net/minecraft/client/GraphicsStatus$1.class new file mode 100644 index 000000000..b42d4ee6f Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/GraphicsStatus$1.class differ diff --git a/build/_compileJava_2/net/minecraft/client/GraphicsStatus.class b/build/_compileJava_2/net/minecraft/client/GraphicsStatus.class new file mode 100644 index 000000000..d838caeda Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/GraphicsStatus.class differ diff --git a/build/_compileJava_2/net/minecraft/client/GuiMessage$Line.class b/build/_compileJava_2/net/minecraft/client/GuiMessage$Line.class new file mode 100644 index 000000000..993c4d1f6 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/GuiMessage$Line.class differ diff --git a/build/_compileJava_2/net/minecraft/client/GuiMessage.class b/build/_compileJava_2/net/minecraft/client/GuiMessage.class new file mode 100644 index 000000000..316589606 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/GuiMessage.class differ diff --git a/build/_compileJava_2/net/minecraft/client/GuiMessageTag$Icon.class b/build/_compileJava_2/net/minecraft/client/GuiMessageTag$Icon.class new file mode 100644 index 000000000..6e7d23713 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/GuiMessageTag$Icon.class differ diff --git a/build/_compileJava_2/net/minecraft/client/GuiMessageTag.class b/build/_compileJava_2/net/minecraft/client/GuiMessageTag.class new file mode 100644 index 000000000..0b785116e Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/GuiMessageTag.class differ diff --git a/build/_compileJava_2/net/minecraft/client/HotbarManager.class b/build/_compileJava_2/net/minecraft/client/HotbarManager.class new file mode 100644 index 000000000..94c78e2a2 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/HotbarManager.class differ diff --git a/build/_compileJava_2/net/minecraft/client/InputType.class b/build/_compileJava_2/net/minecraft/client/InputType.class new file mode 100644 index 000000000..5a0bdd4e7 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/InputType.class differ diff --git a/build/_compileJava_2/net/minecraft/client/KeyMapping.class b/build/_compileJava_2/net/minecraft/client/KeyMapping.class new file mode 100644 index 000000000..f8464ddb1 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/KeyMapping.class differ diff --git a/build/_compileJava_2/net/minecraft/client/KeyboardHandler$1.class b/build/_compileJava_2/net/minecraft/client/KeyboardHandler$1.class new file mode 100644 index 000000000..77a424e04 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/KeyboardHandler$1.class differ diff --git a/build/_compileJava_2/net/minecraft/client/KeyboardHandler.class b/build/_compileJava_2/net/minecraft/client/KeyboardHandler.class new file mode 100644 index 000000000..ef568a47d Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/KeyboardHandler.class differ diff --git a/build/_compileJava_2/net/minecraft/client/Minecraft$1.class b/build/_compileJava_2/net/minecraft/client/Minecraft$1.class new file mode 100644 index 000000000..7970d30dc Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/Minecraft$1.class differ diff --git a/build/_compileJava_2/net/minecraft/client/Minecraft$ChatStatus$1.class b/build/_compileJava_2/net/minecraft/client/Minecraft$ChatStatus$1.class new file mode 100644 index 000000000..3d2a76001 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/Minecraft$ChatStatus$1.class differ diff --git a/build/_compileJava_2/net/minecraft/client/Minecraft$ChatStatus$2.class b/build/_compileJava_2/net/minecraft/client/Minecraft$ChatStatus$2.class new file mode 100644 index 000000000..f16281446 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/Minecraft$ChatStatus$2.class differ diff --git a/build/_compileJava_2/net/minecraft/client/Minecraft$ChatStatus$3.class b/build/_compileJava_2/net/minecraft/client/Minecraft$ChatStatus$3.class new file mode 100644 index 000000000..328ccf548 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/Minecraft$ChatStatus$3.class differ diff --git a/build/_compileJava_2/net/minecraft/client/Minecraft$ChatStatus$4.class b/build/_compileJava_2/net/minecraft/client/Minecraft$ChatStatus$4.class new file mode 100644 index 000000000..04cffd8b3 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/Minecraft$ChatStatus$4.class differ diff --git a/build/_compileJava_2/net/minecraft/client/Minecraft$ChatStatus.class b/build/_compileJava_2/net/minecraft/client/Minecraft$ChatStatus.class new file mode 100644 index 000000000..0739ac9cc Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/Minecraft$ChatStatus.class differ diff --git a/build/_compileJava_2/net/minecraft/client/Minecraft.class b/build/_compileJava_2/net/minecraft/client/Minecraft.class new file mode 100644 index 000000000..3d7663242 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/Minecraft.class differ diff --git a/build/_compileJava_2/net/minecraft/client/MouseHandler.class b/build/_compileJava_2/net/minecraft/client/MouseHandler.class new file mode 100644 index 000000000..590b2820b Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/MouseHandler.class differ diff --git a/build/_compileJava_2/net/minecraft/client/NarratorStatus.class b/build/_compileJava_2/net/minecraft/client/NarratorStatus.class new file mode 100644 index 000000000..ab176c1b9 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/NarratorStatus.class differ diff --git a/build/_compileJava_2/net/minecraft/client/OptionInstance$AltEnum.class b/build/_compileJava_2/net/minecraft/client/OptionInstance$AltEnum.class new file mode 100644 index 000000000..68f14c3ba Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/OptionInstance$AltEnum.class differ diff --git a/build/_compileJava_2/net/minecraft/client/OptionInstance$CaptionBasedToString.class b/build/_compileJava_2/net/minecraft/client/OptionInstance$CaptionBasedToString.class new file mode 100644 index 000000000..11c1a5cc3 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/OptionInstance$CaptionBasedToString.class differ diff --git a/build/_compileJava_2/net/minecraft/client/OptionInstance$ClampingLazyMaxIntRange.class b/build/_compileJava_2/net/minecraft/client/OptionInstance$ClampingLazyMaxIntRange.class new file mode 100644 index 000000000..9c7e85a5b Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/OptionInstance$ClampingLazyMaxIntRange.class differ diff --git a/build/_compileJava_2/net/minecraft/client/OptionInstance$CycleableValueSet$ValueSetter.class b/build/_compileJava_2/net/minecraft/client/OptionInstance$CycleableValueSet$ValueSetter.class new file mode 100644 index 000000000..fdfe0aaa2 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/OptionInstance$CycleableValueSet$ValueSetter.class differ diff --git a/build/_compileJava_2/net/minecraft/client/OptionInstance$CycleableValueSet.class b/build/_compileJava_2/net/minecraft/client/OptionInstance$CycleableValueSet.class new file mode 100644 index 000000000..31afa9499 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/OptionInstance$CycleableValueSet.class differ diff --git a/build/_compileJava_2/net/minecraft/client/OptionInstance$Enum.class b/build/_compileJava_2/net/minecraft/client/OptionInstance$Enum.class new file mode 100644 index 000000000..d2320528e Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/OptionInstance$Enum.class differ diff --git a/build/_compileJava_2/net/minecraft/client/OptionInstance$IntRange.class b/build/_compileJava_2/net/minecraft/client/OptionInstance$IntRange.class new file mode 100644 index 000000000..b8a75f93a Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/OptionInstance$IntRange.class differ diff --git a/build/_compileJava_2/net/minecraft/client/OptionInstance$IntRangeBase$1.class b/build/_compileJava_2/net/minecraft/client/OptionInstance$IntRangeBase$1.class new file mode 100644 index 000000000..9551d1af1 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/OptionInstance$IntRangeBase$1.class differ diff --git a/build/_compileJava_2/net/minecraft/client/OptionInstance$IntRangeBase.class b/build/_compileJava_2/net/minecraft/client/OptionInstance$IntRangeBase.class new file mode 100644 index 000000000..28014252f Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/OptionInstance$IntRangeBase.class differ diff --git a/build/_compileJava_2/net/minecraft/client/OptionInstance$LazyEnum.class b/build/_compileJava_2/net/minecraft/client/OptionInstance$LazyEnum.class new file mode 100644 index 000000000..1140cea56 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/OptionInstance$LazyEnum.class differ diff --git a/build/_compileJava_2/net/minecraft/client/OptionInstance$OptionInstanceSliderButton.class b/build/_compileJava_2/net/minecraft/client/OptionInstance$OptionInstanceSliderButton.class new file mode 100644 index 000000000..d53b1d4b1 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/OptionInstance$OptionInstanceSliderButton.class differ diff --git a/build/_compileJava_2/net/minecraft/client/OptionInstance$SliderableOrCyclableValueSet.class b/build/_compileJava_2/net/minecraft/client/OptionInstance$SliderableOrCyclableValueSet.class new file mode 100644 index 000000000..94c168aca Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/OptionInstance$SliderableOrCyclableValueSet.class differ diff --git a/build/_compileJava_2/net/minecraft/client/OptionInstance$SliderableValueSet.class b/build/_compileJava_2/net/minecraft/client/OptionInstance$SliderableValueSet.class new file mode 100644 index 000000000..6d7f9cb41 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/OptionInstance$SliderableValueSet.class differ diff --git a/build/_compileJava_2/net/minecraft/client/OptionInstance$TooltipSupplier.class b/build/_compileJava_2/net/minecraft/client/OptionInstance$TooltipSupplier.class new file mode 100644 index 000000000..90f4ba0dd Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/OptionInstance$TooltipSupplier.class differ diff --git a/build/_compileJava_2/net/minecraft/client/OptionInstance$UnitDouble$1.class b/build/_compileJava_2/net/minecraft/client/OptionInstance$UnitDouble$1.class new file mode 100644 index 000000000..1e3fb9fa6 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/OptionInstance$UnitDouble$1.class differ diff --git a/build/_compileJava_2/net/minecraft/client/OptionInstance$UnitDouble.class b/build/_compileJava_2/net/minecraft/client/OptionInstance$UnitDouble.class new file mode 100644 index 000000000..8c9daa5de Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/OptionInstance$UnitDouble.class differ diff --git a/build/_compileJava_2/net/minecraft/client/OptionInstance$ValueSet.class b/build/_compileJava_2/net/minecraft/client/OptionInstance$ValueSet.class new file mode 100644 index 000000000..4ca95a2f2 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/OptionInstance$ValueSet.class differ diff --git a/build/_compileJava_2/net/minecraft/client/OptionInstance.class b/build/_compileJava_2/net/minecraft/client/OptionInstance.class new file mode 100644 index 000000000..6e6ccff23 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/OptionInstance.class differ diff --git a/build/_compileJava_2/net/minecraft/client/Options$1.class b/build/_compileJava_2/net/minecraft/client/Options$1.class new file mode 100644 index 000000000..b61ff34fb Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/Options$1.class differ diff --git a/build/_compileJava_2/net/minecraft/client/Options$2.class b/build/_compileJava_2/net/minecraft/client/Options$2.class new file mode 100644 index 000000000..1e0952f60 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/Options$2.class differ diff --git a/build/_compileJava_2/net/minecraft/client/Options$3.class b/build/_compileJava_2/net/minecraft/client/Options$3.class new file mode 100644 index 000000000..5de3aec7f Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/Options$3.class differ diff --git a/build/_compileJava_2/net/minecraft/client/Options$4.class b/build/_compileJava_2/net/minecraft/client/Options$4.class new file mode 100644 index 000000000..148b7f39d Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/Options$4.class differ diff --git a/build/_compileJava_2/net/minecraft/client/Options$FieldAccess.class b/build/_compileJava_2/net/minecraft/client/Options$FieldAccess.class new file mode 100644 index 000000000..261748b3a Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/Options$FieldAccess.class differ diff --git a/build/_compileJava_2/net/minecraft/client/Options.class b/build/_compileJava_2/net/minecraft/client/Options.class new file mode 100644 index 000000000..33a8a967e Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/Options.class differ diff --git a/build/_compileJava_2/net/minecraft/client/ParticleStatus.class b/build/_compileJava_2/net/minecraft/client/ParticleStatus.class new file mode 100644 index 000000000..489a0f5ca Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/ParticleStatus.class differ diff --git a/build/_compileJava_2/net/minecraft/client/PeriodicNotificationManager$Notification.class b/build/_compileJava_2/net/minecraft/client/PeriodicNotificationManager$Notification.class new file mode 100644 index 000000000..11393a31f Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/PeriodicNotificationManager$Notification.class differ diff --git a/build/_compileJava_2/net/minecraft/client/PeriodicNotificationManager$NotificationTask.class b/build/_compileJava_2/net/minecraft/client/PeriodicNotificationManager$NotificationTask.class new file mode 100644 index 000000000..ee83ee2b2 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/PeriodicNotificationManager$NotificationTask.class differ diff --git a/build/_compileJava_2/net/minecraft/client/PeriodicNotificationManager.class b/build/_compileJava_2/net/minecraft/client/PeriodicNotificationManager.class new file mode 100644 index 000000000..afa0fe084 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/PeriodicNotificationManager.class differ diff --git a/build/_compileJava_2/net/minecraft/client/PrioritizeChunkUpdates.class b/build/_compileJava_2/net/minecraft/client/PrioritizeChunkUpdates.class new file mode 100644 index 000000000..a9e3c033a Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/PrioritizeChunkUpdates.class differ diff --git a/build/_compileJava_2/net/minecraft/client/Realms32BitWarningStatus.class b/build/_compileJava_2/net/minecraft/client/Realms32BitWarningStatus.class new file mode 100644 index 000000000..4997aed1d Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/Realms32BitWarningStatus.class differ diff --git a/build/_compileJava_2/net/minecraft/client/RecipeBookCategories$1.class b/build/_compileJava_2/net/minecraft/client/RecipeBookCategories$1.class new file mode 100644 index 000000000..5b1dfc4c6 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/RecipeBookCategories$1.class differ diff --git a/build/_compileJava_2/net/minecraft/client/RecipeBookCategories.class b/build/_compileJava_2/net/minecraft/client/RecipeBookCategories.class new file mode 100644 index 000000000..6063584ce Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/RecipeBookCategories.class differ diff --git a/build/_compileJava_2/net/minecraft/client/ResourceLoadStateTracker$RecoveryInfo.class b/build/_compileJava_2/net/minecraft/client/ResourceLoadStateTracker$RecoveryInfo.class new file mode 100644 index 000000000..01175167e Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/ResourceLoadStateTracker$RecoveryInfo.class differ diff --git a/build/_compileJava_2/net/minecraft/client/ResourceLoadStateTracker$ReloadReason.class b/build/_compileJava_2/net/minecraft/client/ResourceLoadStateTracker$ReloadReason.class new file mode 100644 index 000000000..e7e655240 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/ResourceLoadStateTracker$ReloadReason.class differ diff --git a/build/_compileJava_2/net/minecraft/client/ResourceLoadStateTracker$ReloadState.class b/build/_compileJava_2/net/minecraft/client/ResourceLoadStateTracker$ReloadState.class new file mode 100644 index 000000000..b610c8eee Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/ResourceLoadStateTracker$ReloadState.class differ diff --git a/build/_compileJava_2/net/minecraft/client/ResourceLoadStateTracker.class b/build/_compileJava_2/net/minecraft/client/ResourceLoadStateTracker.class new file mode 100644 index 000000000..973985f79 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/ResourceLoadStateTracker.class differ diff --git a/build/_compileJava_2/net/minecraft/client/Screenshot.class b/build/_compileJava_2/net/minecraft/client/Screenshot.class new file mode 100644 index 000000000..7439270f3 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/Screenshot.class differ diff --git a/build/_compileJava_2/net/minecraft/client/StringSplitter$1.class b/build/_compileJava_2/net/minecraft/client/StringSplitter$1.class new file mode 100644 index 000000000..4360beba0 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/StringSplitter$1.class differ diff --git a/build/_compileJava_2/net/minecraft/client/StringSplitter$FlatComponents.class b/build/_compileJava_2/net/minecraft/client/StringSplitter$FlatComponents.class new file mode 100644 index 000000000..fd86166e0 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/StringSplitter$FlatComponents.class differ diff --git a/build/_compileJava_2/net/minecraft/client/StringSplitter$LineBreakFinder.class b/build/_compileJava_2/net/minecraft/client/StringSplitter$LineBreakFinder.class new file mode 100644 index 000000000..7483cd362 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/StringSplitter$LineBreakFinder.class differ diff --git a/build/_compileJava_2/net/minecraft/client/StringSplitter$LineComponent.class b/build/_compileJava_2/net/minecraft/client/StringSplitter$LineComponent.class new file mode 100644 index 000000000..0d8f2d936 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/StringSplitter$LineComponent.class differ diff --git a/build/_compileJava_2/net/minecraft/client/StringSplitter$LinePosConsumer.class b/build/_compileJava_2/net/minecraft/client/StringSplitter$LinePosConsumer.class new file mode 100644 index 000000000..740e52f47 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/StringSplitter$LinePosConsumer.class differ diff --git a/build/_compileJava_2/net/minecraft/client/StringSplitter$WidthLimitedCharSink.class b/build/_compileJava_2/net/minecraft/client/StringSplitter$WidthLimitedCharSink.class new file mode 100644 index 000000000..ca50c749d Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/StringSplitter$WidthLimitedCharSink.class differ diff --git a/build/_compileJava_2/net/minecraft/client/StringSplitter$WidthProvider.class b/build/_compileJava_2/net/minecraft/client/StringSplitter$WidthProvider.class new file mode 100644 index 000000000..789d994f7 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/StringSplitter$WidthProvider.class differ diff --git a/build/_compileJava_2/net/minecraft/client/StringSplitter.class b/build/_compileJava_2/net/minecraft/client/StringSplitter.class new file mode 100644 index 000000000..53d26b5f3 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/StringSplitter.class differ diff --git a/build/_compileJava_2/net/minecraft/client/Timer.class b/build/_compileJava_2/net/minecraft/client/Timer.class new file mode 100644 index 000000000..dc1dad7ca Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/Timer.class differ diff --git a/build/_compileJava_2/net/minecraft/client/ToggleKeyMapping.class b/build/_compileJava_2/net/minecraft/client/ToggleKeyMapping.class new file mode 100644 index 000000000..db8e1773f Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/ToggleKeyMapping.class differ diff --git a/build/_compileJava_2/net/minecraft/client/User$Type.class b/build/_compileJava_2/net/minecraft/client/User$Type.class new file mode 100644 index 000000000..19d8ff27b Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/User$Type.class differ diff --git a/build/_compileJava_2/net/minecraft/client/User.class b/build/_compileJava_2/net/minecraft/client/User.class new file mode 100644 index 000000000..06af7583f Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/User.class differ diff --git a/build/_compileJava_2/net/minecraft/client/animation/AnimationChannel$Interpolation.class b/build/_compileJava_2/net/minecraft/client/animation/AnimationChannel$Interpolation.class new file mode 100644 index 000000000..fd7d7c377 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/animation/AnimationChannel$Interpolation.class differ diff --git a/build/_compileJava_2/net/minecraft/client/animation/AnimationChannel$Interpolations.class b/build/_compileJava_2/net/minecraft/client/animation/AnimationChannel$Interpolations.class new file mode 100644 index 000000000..96b9c4a1e Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/animation/AnimationChannel$Interpolations.class differ diff --git a/build/_compileJava_2/net/minecraft/client/animation/AnimationChannel$Target.class b/build/_compileJava_2/net/minecraft/client/animation/AnimationChannel$Target.class new file mode 100644 index 000000000..df21c7ec8 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/animation/AnimationChannel$Target.class differ diff --git a/build/_compileJava_2/net/minecraft/client/animation/AnimationChannel$Targets.class b/build/_compileJava_2/net/minecraft/client/animation/AnimationChannel$Targets.class new file mode 100644 index 000000000..4c2a7eaea Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/animation/AnimationChannel$Targets.class differ diff --git a/build/_compileJava_2/net/minecraft/client/animation/AnimationChannel.class b/build/_compileJava_2/net/minecraft/client/animation/AnimationChannel.class new file mode 100644 index 000000000..300b06ea5 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/animation/AnimationChannel.class differ diff --git a/build/_compileJava_2/net/minecraft/client/animation/AnimationDefinition$Builder.class b/build/_compileJava_2/net/minecraft/client/animation/AnimationDefinition$Builder.class new file mode 100644 index 000000000..c94135a28 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/animation/AnimationDefinition$Builder.class differ diff --git a/build/_compileJava_2/net/minecraft/client/animation/AnimationDefinition.class b/build/_compileJava_2/net/minecraft/client/animation/AnimationDefinition.class new file mode 100644 index 000000000..0bae6faee Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/animation/AnimationDefinition.class differ diff --git a/build/_compileJava_2/net/minecraft/client/animation/Keyframe.class b/build/_compileJava_2/net/minecraft/client/animation/Keyframe.class new file mode 100644 index 000000000..b13ae4168 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/animation/Keyframe.class differ diff --git a/build/_compileJava_2/net/minecraft/client/animation/KeyframeAnimations.class b/build/_compileJava_2/net/minecraft/client/animation/KeyframeAnimations.class new file mode 100644 index 000000000..8ac310b2f Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/animation/KeyframeAnimations.class differ diff --git a/build/_compileJava_2/net/minecraft/client/animation/definitions/CamelAnimation.class b/build/_compileJava_2/net/minecraft/client/animation/definitions/CamelAnimation.class new file mode 100644 index 000000000..0e22c880f Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/animation/definitions/CamelAnimation.class differ diff --git a/build/_compileJava_2/net/minecraft/client/animation/definitions/FrogAnimation.class b/build/_compileJava_2/net/minecraft/client/animation/definitions/FrogAnimation.class new file mode 100644 index 000000000..d01086f20 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/animation/definitions/FrogAnimation.class differ diff --git a/build/_compileJava_2/net/minecraft/client/animation/definitions/SnifferAnimation.class b/build/_compileJava_2/net/minecraft/client/animation/definitions/SnifferAnimation.class new file mode 100644 index 000000000..772d22eb0 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/animation/definitions/SnifferAnimation.class differ diff --git a/build/_compileJava_2/net/minecraft/client/animation/definitions/WardenAnimation.class b/build/_compileJava_2/net/minecraft/client/animation/definitions/WardenAnimation.class new file mode 100644 index 000000000..6d06dc8db Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/animation/definitions/WardenAnimation.class differ diff --git a/build/_compileJava_2/net/minecraft/client/animation/definitions/package-info.class b/build/_compileJava_2/net/minecraft/client/animation/definitions/package-info.class new file mode 100644 index 000000000..18543bdb9 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/animation/definitions/package-info.class differ diff --git a/build/_compileJava_2/net/minecraft/client/animation/package-info.class b/build/_compileJava_2/net/minecraft/client/animation/package-info.class new file mode 100644 index 000000000..591f611de Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/animation/package-info.class differ diff --git a/build/_compileJava_2/net/minecraft/client/color/block/BlockColor.class b/build/_compileJava_2/net/minecraft/client/color/block/BlockColor.class new file mode 100644 index 000000000..fc0ceef1e Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/color/block/BlockColor.class differ diff --git a/build/_compileJava_2/net/minecraft/client/color/block/BlockColors.class b/build/_compileJava_2/net/minecraft/client/color/block/BlockColors.class new file mode 100644 index 000000000..c01ec5427 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/color/block/BlockColors.class differ diff --git a/build/_compileJava_2/net/minecraft/client/color/block/BlockTintCache$CacheData.class b/build/_compileJava_2/net/minecraft/client/color/block/BlockTintCache$CacheData.class new file mode 100644 index 000000000..63bd20287 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/color/block/BlockTintCache$CacheData.class differ diff --git a/build/_compileJava_2/net/minecraft/client/color/block/BlockTintCache$LatestCacheInfo.class b/build/_compileJava_2/net/minecraft/client/color/block/BlockTintCache$LatestCacheInfo.class new file mode 100644 index 000000000..79cc0ab37 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/color/block/BlockTintCache$LatestCacheInfo.class differ diff --git a/build/_compileJava_2/net/minecraft/client/color/block/BlockTintCache.class b/build/_compileJava_2/net/minecraft/client/color/block/BlockTintCache.class new file mode 100644 index 000000000..1bd1bbaec Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/color/block/BlockTintCache.class differ diff --git a/build/_compileJava_2/net/minecraft/client/color/block/package-info.class b/build/_compileJava_2/net/minecraft/client/color/block/package-info.class new file mode 100644 index 000000000..41eb56d31 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/color/block/package-info.class differ diff --git a/build/_compileJava_2/net/minecraft/client/color/item/ItemColor.class b/build/_compileJava_2/net/minecraft/client/color/item/ItemColor.class new file mode 100644 index 000000000..2e7551a33 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/color/item/ItemColor.class differ diff --git a/build/_compileJava_2/net/minecraft/client/color/item/ItemColors.class b/build/_compileJava_2/net/minecraft/client/color/item/ItemColors.class new file mode 100644 index 000000000..1b08da1b4 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/color/item/ItemColors.class differ diff --git a/build/_compileJava_2/net/minecraft/client/color/item/package-info.class b/build/_compileJava_2/net/minecraft/client/color/item/package-info.class new file mode 100644 index 000000000..d3048831a Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/color/item/package-info.class differ diff --git a/build/_compileJava_2/net/minecraft/client/gui/ComponentPath$Leaf.class b/build/_compileJava_2/net/minecraft/client/gui/ComponentPath$Leaf.class new file mode 100644 index 000000000..0b61f5e2f Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/gui/ComponentPath$Leaf.class differ diff --git a/build/_compileJava_2/net/minecraft/client/gui/ComponentPath$Path.class b/build/_compileJava_2/net/minecraft/client/gui/ComponentPath$Path.class new file mode 100644 index 000000000..0436e63dc Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/gui/ComponentPath$Path.class differ diff --git a/build/_compileJava_2/net/minecraft/client/gui/ComponentPath.class b/build/_compileJava_2/net/minecraft/client/gui/ComponentPath.class new file mode 100644 index 000000000..5b48828f0 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/gui/ComponentPath.class differ diff --git a/build/_compileJava_2/net/minecraft/client/gui/Font$DisplayMode.class b/build/_compileJava_2/net/minecraft/client/gui/Font$DisplayMode.class new file mode 100644 index 000000000..0945432a3 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/gui/Font$DisplayMode.class differ diff --git a/build/_compileJava_2/net/minecraft/client/gui/Font$StringRenderOutput.class b/build/_compileJava_2/net/minecraft/client/gui/Font$StringRenderOutput.class new file mode 100644 index 000000000..280257ab3 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/gui/Font$StringRenderOutput.class differ diff --git a/build/_compileJava_2/net/minecraft/client/gui/Font.class b/build/_compileJava_2/net/minecraft/client/gui/Font.class new file mode 100644 index 000000000..2cecf9e8f Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/gui/Font.class differ diff --git a/build/_compileJava_2/net/minecraft/client/gui/Gui$HeartType.class b/build/_compileJava_2/net/minecraft/client/gui/Gui$HeartType.class new file mode 100644 index 000000000..4a9547f63 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/gui/Gui$HeartType.class differ diff --git a/build/_compileJava_2/net/minecraft/client/gui/Gui.class b/build/_compileJava_2/net/minecraft/client/gui/Gui.class new file mode 100644 index 000000000..86c27ad9e Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/gui/Gui.class differ diff --git a/build/_compileJava_2/net/minecraft/client/gui/GuiGraphics$ScissorStack.class b/build/_compileJava_2/net/minecraft/client/gui/GuiGraphics$ScissorStack.class new file mode 100644 index 000000000..c968aa52a Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/gui/GuiGraphics$ScissorStack.class differ diff --git a/build/_compileJava_2/net/minecraft/client/gui/GuiGraphics.class b/build/_compileJava_2/net/minecraft/client/gui/GuiGraphics.class new file mode 100644 index 000000000..9ccb95ec1 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/gui/GuiGraphics.class differ diff --git a/build/_compileJava_2/net/minecraft/client/gui/MapRenderer$MapInstance.class b/build/_compileJava_2/net/minecraft/client/gui/MapRenderer$MapInstance.class new file mode 100644 index 000000000..f3dc65a3e Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/gui/MapRenderer$MapInstance.class differ diff --git a/build/_compileJava_2/net/minecraft/client/gui/MapRenderer.class b/build/_compileJava_2/net/minecraft/client/gui/MapRenderer.class new file mode 100644 index 000000000..620b75cb1 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/gui/MapRenderer.class differ diff --git a/build/_compileJava_2/net/minecraft/client/gui/components/AbstractButton.class b/build/_compileJava_2/net/minecraft/client/gui/components/AbstractButton.class new file mode 100644 index 000000000..6720f4361 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/gui/components/AbstractButton.class differ diff --git a/build/_compileJava_2/net/minecraft/client/gui/components/AbstractOptionSliderButton.class b/build/_compileJava_2/net/minecraft/client/gui/components/AbstractOptionSliderButton.class new file mode 100644 index 000000000..f0189206d Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/gui/components/AbstractOptionSliderButton.class differ diff --git a/build/_compileJava_2/net/minecraft/client/gui/components/AbstractScrollWidget.class b/build/_compileJava_2/net/minecraft/client/gui/components/AbstractScrollWidget.class new file mode 100644 index 000000000..6443d7fff Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/gui/components/AbstractScrollWidget.class differ diff --git a/build/_compileJava_2/net/minecraft/client/gui/components/AbstractSelectionList$1.class b/build/_compileJava_2/net/minecraft/client/gui/components/AbstractSelectionList$1.class new file mode 100644 index 000000000..b5fd7baa8 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/gui/components/AbstractSelectionList$1.class differ diff --git a/build/_compileJava_2/net/minecraft/client/gui/components/AbstractSelectionList$Entry.class b/build/_compileJava_2/net/minecraft/client/gui/components/AbstractSelectionList$Entry.class new file mode 100644 index 000000000..25a89d1a3 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/gui/components/AbstractSelectionList$Entry.class differ diff --git a/build/_compileJava_2/net/minecraft/client/gui/components/AbstractSelectionList$TrackedList.class b/build/_compileJava_2/net/minecraft/client/gui/components/AbstractSelectionList$TrackedList.class new file mode 100644 index 000000000..ae610cbf8 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/gui/components/AbstractSelectionList$TrackedList.class differ diff --git a/build/_compileJava_2/net/minecraft/client/gui/components/AbstractSelectionList.class b/build/_compileJava_2/net/minecraft/client/gui/components/AbstractSelectionList.class new file mode 100644 index 000000000..a156ca4f9 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/gui/components/AbstractSelectionList.class differ diff --git a/build/_compileJava_2/net/minecraft/client/gui/components/AbstractSliderButton.class b/build/_compileJava_2/net/minecraft/client/gui/components/AbstractSliderButton.class new file mode 100644 index 000000000..1a42ec3d0 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/gui/components/AbstractSliderButton.class differ diff --git a/build/_compileJava_2/net/minecraft/client/gui/components/AbstractStringWidget.class b/build/_compileJava_2/net/minecraft/client/gui/components/AbstractStringWidget.class new file mode 100644 index 000000000..b41d88391 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/gui/components/AbstractStringWidget.class differ diff --git a/build/_compileJava_2/net/minecraft/client/gui/components/AbstractWidget.class b/build/_compileJava_2/net/minecraft/client/gui/components/AbstractWidget.class new file mode 100644 index 000000000..b32e7135d Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/gui/components/AbstractWidget.class differ diff --git a/build/_compileJava_2/net/minecraft/client/gui/components/AccessibilityOnboardingTextWidget.class b/build/_compileJava_2/net/minecraft/client/gui/components/AccessibilityOnboardingTextWidget.class new file mode 100644 index 000000000..d38543d05 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/gui/components/AccessibilityOnboardingTextWidget.class differ diff --git a/build/_compileJava_2/net/minecraft/client/gui/components/BossHealthOverlay$1.class b/build/_compileJava_2/net/minecraft/client/gui/components/BossHealthOverlay$1.class new file mode 100644 index 000000000..1de832a10 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/gui/components/BossHealthOverlay$1.class differ diff --git a/build/_compileJava_2/net/minecraft/client/gui/components/BossHealthOverlay.class b/build/_compileJava_2/net/minecraft/client/gui/components/BossHealthOverlay.class new file mode 100644 index 000000000..c3e7ce7ee Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/gui/components/BossHealthOverlay.class differ diff --git a/build/_compileJava_2/net/minecraft/client/gui/components/Button$Builder.class b/build/_compileJava_2/net/minecraft/client/gui/components/Button$Builder.class new file mode 100644 index 000000000..38cce6c53 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/gui/components/Button$Builder.class differ diff --git a/build/_compileJava_2/net/minecraft/client/gui/components/Button$CreateNarration.class b/build/_compileJava_2/net/minecraft/client/gui/components/Button$CreateNarration.class new file mode 100644 index 000000000..19af1bfa5 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/gui/components/Button$CreateNarration.class differ diff --git a/build/_compileJava_2/net/minecraft/client/gui/components/Button$OnPress.class b/build/_compileJava_2/net/minecraft/client/gui/components/Button$OnPress.class new file mode 100644 index 000000000..1fc3bb8b2 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/gui/components/Button$OnPress.class differ diff --git a/build/_compileJava_2/net/minecraft/client/gui/components/Button.class b/build/_compileJava_2/net/minecraft/client/gui/components/Button.class new file mode 100644 index 000000000..f3418040f Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/gui/components/Button.class differ diff --git a/build/_compileJava_2/net/minecraft/client/gui/components/ChatComponent$DelayedMessageDeletion.class b/build/_compileJava_2/net/minecraft/client/gui/components/ChatComponent$DelayedMessageDeletion.class new file mode 100644 index 000000000..2a34c2d4e Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/gui/components/ChatComponent$DelayedMessageDeletion.class differ diff --git a/build/_compileJava_2/net/minecraft/client/gui/components/ChatComponent.class b/build/_compileJava_2/net/minecraft/client/gui/components/ChatComponent.class new file mode 100644 index 000000000..24ffbaa70 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/gui/components/ChatComponent.class differ diff --git a/build/_compileJava_2/net/minecraft/client/gui/components/Checkbox.class b/build/_compileJava_2/net/minecraft/client/gui/components/Checkbox.class new file mode 100644 index 000000000..c22dae58b Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/gui/components/Checkbox.class differ diff --git a/build/_compileJava_2/net/minecraft/client/gui/components/CommandSuggestions$SuggestionsList.class b/build/_compileJava_2/net/minecraft/client/gui/components/CommandSuggestions$SuggestionsList.class new file mode 100644 index 000000000..8a38b3657 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/gui/components/CommandSuggestions$SuggestionsList.class differ diff --git a/build/_compileJava_2/net/minecraft/client/gui/components/CommandSuggestions.class b/build/_compileJava_2/net/minecraft/client/gui/components/CommandSuggestions.class new file mode 100644 index 000000000..3a73f6d03 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/gui/components/CommandSuggestions.class differ diff --git a/build/_compileJava_2/net/minecraft/client/gui/components/CommonButtons.class b/build/_compileJava_2/net/minecraft/client/gui/components/CommonButtons.class new file mode 100644 index 000000000..06f795c69 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/gui/components/CommonButtons.class differ diff --git a/build/_compileJava_2/net/minecraft/client/gui/components/ComponentRenderUtils.class b/build/_compileJava_2/net/minecraft/client/gui/components/ComponentRenderUtils.class new file mode 100644 index 000000000..c46db9af0 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/gui/components/ComponentRenderUtils.class differ diff --git a/build/_compileJava_2/net/minecraft/client/gui/components/ContainerObjectSelectionList$1.class b/build/_compileJava_2/net/minecraft/client/gui/components/ContainerObjectSelectionList$1.class new file mode 100644 index 000000000..cdba91ff9 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/gui/components/ContainerObjectSelectionList$1.class differ diff --git a/build/_compileJava_2/net/minecraft/client/gui/components/ContainerObjectSelectionList$Entry.class b/build/_compileJava_2/net/minecraft/client/gui/components/ContainerObjectSelectionList$Entry.class new file mode 100644 index 000000000..2909cd61e Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/gui/components/ContainerObjectSelectionList$Entry.class differ diff --git a/build/_compileJava_2/net/minecraft/client/gui/components/ContainerObjectSelectionList.class b/build/_compileJava_2/net/minecraft/client/gui/components/ContainerObjectSelectionList.class new file mode 100644 index 000000000..80782d376 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/gui/components/ContainerObjectSelectionList.class differ diff --git a/build/_compileJava_2/net/minecraft/client/gui/components/CycleButton$Builder.class b/build/_compileJava_2/net/minecraft/client/gui/components/CycleButton$Builder.class new file mode 100644 index 000000000..b05f608f7 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/gui/components/CycleButton$Builder.class differ diff --git a/build/_compileJava_2/net/minecraft/client/gui/components/CycleButton$OnValueChange.class b/build/_compileJava_2/net/minecraft/client/gui/components/CycleButton$OnValueChange.class new file mode 100644 index 000000000..ff6bf98fd Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/gui/components/CycleButton$OnValueChange.class differ diff --git a/build/_compileJava_2/net/minecraft/client/gui/components/CycleButton$ValueListSupplier$1.class b/build/_compileJava_2/net/minecraft/client/gui/components/CycleButton$ValueListSupplier$1.class new file mode 100644 index 000000000..289fd415e Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/gui/components/CycleButton$ValueListSupplier$1.class differ diff --git a/build/_compileJava_2/net/minecraft/client/gui/components/CycleButton$ValueListSupplier$2.class b/build/_compileJava_2/net/minecraft/client/gui/components/CycleButton$ValueListSupplier$2.class new file mode 100644 index 000000000..189c0afa8 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/gui/components/CycleButton$ValueListSupplier$2.class differ diff --git a/build/_compileJava_2/net/minecraft/client/gui/components/CycleButton$ValueListSupplier.class b/build/_compileJava_2/net/minecraft/client/gui/components/CycleButton$ValueListSupplier.class new file mode 100644 index 000000000..f7e596a8d Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/gui/components/CycleButton$ValueListSupplier.class differ diff --git a/build/_compileJava_2/net/minecraft/client/gui/components/CycleButton.class b/build/_compileJava_2/net/minecraft/client/gui/components/CycleButton.class new file mode 100644 index 000000000..051154da8 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/gui/components/CycleButton.class differ diff --git a/build/_compileJava_2/net/minecraft/client/gui/components/DebugScreenOverlay$1.class b/build/_compileJava_2/net/minecraft/client/gui/components/DebugScreenOverlay$1.class new file mode 100644 index 000000000..b17f40f0e Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/gui/components/DebugScreenOverlay$1.class differ diff --git a/build/_compileJava_2/net/minecraft/client/gui/components/DebugScreenOverlay$AllocationRateCalculator.class b/build/_compileJava_2/net/minecraft/client/gui/components/DebugScreenOverlay$AllocationRateCalculator.class new file mode 100644 index 000000000..e4fd3c12d Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/gui/components/DebugScreenOverlay$AllocationRateCalculator.class differ diff --git a/build/_compileJava_2/net/minecraft/client/gui/components/DebugScreenOverlay.class b/build/_compileJava_2/net/minecraft/client/gui/components/DebugScreenOverlay.class new file mode 100644 index 000000000..dc65886a9 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/gui/components/DebugScreenOverlay.class differ diff --git a/build/_compileJava_2/net/minecraft/client/gui/components/EditBox.class b/build/_compileJava_2/net/minecraft/client/gui/components/EditBox.class new file mode 100644 index 000000000..11779d088 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/gui/components/EditBox.class differ diff --git a/build/_compileJava_2/net/minecraft/client/gui/components/FittingMultiLineTextWidget.class b/build/_compileJava_2/net/minecraft/client/gui/components/FittingMultiLineTextWidget.class new file mode 100644 index 000000000..790e6b3d7 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/gui/components/FittingMultiLineTextWidget.class differ diff --git a/build/_compileJava_2/net/minecraft/client/gui/components/ImageButton.class b/build/_compileJava_2/net/minecraft/client/gui/components/ImageButton.class new file mode 100644 index 000000000..02fdfbcb7 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/gui/components/ImageButton.class differ diff --git a/build/_compileJava_2/net/minecraft/client/gui/components/ImageWidget.class b/build/_compileJava_2/net/minecraft/client/gui/components/ImageWidget.class new file mode 100644 index 000000000..4275f8ec1 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/gui/components/ImageWidget.class differ diff --git a/build/_compileJava_2/net/minecraft/client/gui/components/LerpingBossEvent.class b/build/_compileJava_2/net/minecraft/client/gui/components/LerpingBossEvent.class new file mode 100644 index 000000000..afb7bf90c Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/gui/components/LerpingBossEvent.class differ diff --git a/build/_compileJava_2/net/minecraft/client/gui/components/LockIconButton$Icon.class b/build/_compileJava_2/net/minecraft/client/gui/components/LockIconButton$Icon.class new file mode 100644 index 000000000..b10874546 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/gui/components/LockIconButton$Icon.class differ diff --git a/build/_compileJava_2/net/minecraft/client/gui/components/LockIconButton.class b/build/_compileJava_2/net/minecraft/client/gui/components/LockIconButton.class new file mode 100644 index 000000000..f935e9655 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/gui/components/LockIconButton.class differ diff --git a/build/_compileJava_2/net/minecraft/client/gui/components/LogoRenderer.class b/build/_compileJava_2/net/minecraft/client/gui/components/LogoRenderer.class new file mode 100644 index 000000000..c7a4aec62 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/gui/components/LogoRenderer.class differ diff --git a/build/_compileJava_2/net/minecraft/client/gui/components/MultiLineEditBox.class b/build/_compileJava_2/net/minecraft/client/gui/components/MultiLineEditBox.class new file mode 100644 index 000000000..a54e7196c Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/gui/components/MultiLineEditBox.class differ diff --git a/build/_compileJava_2/net/minecraft/client/gui/components/MultiLineLabel$1.class b/build/_compileJava_2/net/minecraft/client/gui/components/MultiLineLabel$1.class new file mode 100644 index 000000000..963f5418b Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/gui/components/MultiLineLabel$1.class differ diff --git a/build/_compileJava_2/net/minecraft/client/gui/components/MultiLineLabel$2.class b/build/_compileJava_2/net/minecraft/client/gui/components/MultiLineLabel$2.class new file mode 100644 index 000000000..18f98a968 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/gui/components/MultiLineLabel$2.class differ diff --git a/build/_compileJava_2/net/minecraft/client/gui/components/MultiLineLabel$TextWithWidth.class b/build/_compileJava_2/net/minecraft/client/gui/components/MultiLineLabel$TextWithWidth.class new file mode 100644 index 000000000..74f2eaaf6 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/gui/components/MultiLineLabel$TextWithWidth.class differ diff --git a/build/_compileJava_2/net/minecraft/client/gui/components/MultiLineLabel.class b/build/_compileJava_2/net/minecraft/client/gui/components/MultiLineLabel.class new file mode 100644 index 000000000..aa5b4aa82 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/gui/components/MultiLineLabel.class differ diff --git a/build/_compileJava_2/net/minecraft/client/gui/components/MultiLineTextWidget$CacheKey.class b/build/_compileJava_2/net/minecraft/client/gui/components/MultiLineTextWidget$CacheKey.class new file mode 100644 index 000000000..81f2ec286 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/gui/components/MultiLineTextWidget$CacheKey.class differ diff --git a/build/_compileJava_2/net/minecraft/client/gui/components/MultiLineTextWidget.class b/build/_compileJava_2/net/minecraft/client/gui/components/MultiLineTextWidget.class new file mode 100644 index 000000000..e2a950e46 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/gui/components/MultiLineTextWidget.class differ diff --git a/build/_compileJava_2/net/minecraft/client/gui/components/MultilineTextField$1.class b/build/_compileJava_2/net/minecraft/client/gui/components/MultilineTextField$1.class new file mode 100644 index 000000000..05c1c343d Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/gui/components/MultilineTextField$1.class differ diff --git a/build/_compileJava_2/net/minecraft/client/gui/components/MultilineTextField$StringView.class b/build/_compileJava_2/net/minecraft/client/gui/components/MultilineTextField$StringView.class new file mode 100644 index 000000000..759bc652a Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/gui/components/MultilineTextField$StringView.class differ diff --git a/build/_compileJava_2/net/minecraft/client/gui/components/MultilineTextField.class b/build/_compileJava_2/net/minecraft/client/gui/components/MultilineTextField.class new file mode 100644 index 000000000..bcdcdfd47 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/gui/components/MultilineTextField.class differ diff --git a/build/_compileJava_2/net/minecraft/client/gui/components/ObjectSelectionList$Entry.class b/build/_compileJava_2/net/minecraft/client/gui/components/ObjectSelectionList$Entry.class new file mode 100644 index 000000000..1a453419a Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/gui/components/ObjectSelectionList$Entry.class differ diff --git a/build/_compileJava_2/net/minecraft/client/gui/components/ObjectSelectionList.class b/build/_compileJava_2/net/minecraft/client/gui/components/ObjectSelectionList.class new file mode 100644 index 000000000..7b0cb078a Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/gui/components/ObjectSelectionList.class differ diff --git a/build/_compileJava_2/net/minecraft/client/gui/components/OptionsList$Entry.class b/build/_compileJava_2/net/minecraft/client/gui/components/OptionsList$Entry.class new file mode 100644 index 000000000..ea5bd0f37 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/gui/components/OptionsList$Entry.class differ diff --git a/build/_compileJava_2/net/minecraft/client/gui/components/OptionsList.class b/build/_compileJava_2/net/minecraft/client/gui/components/OptionsList.class new file mode 100644 index 000000000..acc84144a Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/gui/components/OptionsList.class differ diff --git a/build/_compileJava_2/net/minecraft/client/gui/components/PlainTextButton.class b/build/_compileJava_2/net/minecraft/client/gui/components/PlainTextButton.class new file mode 100644 index 000000000..1741a7103 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/gui/components/PlainTextButton.class differ diff --git a/build/_compileJava_2/net/minecraft/client/gui/components/PlayerFaceRenderer.class b/build/_compileJava_2/net/minecraft/client/gui/components/PlayerFaceRenderer.class new file mode 100644 index 000000000..ebc683669 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/gui/components/PlayerFaceRenderer.class differ diff --git a/build/_compileJava_2/net/minecraft/client/gui/components/PlayerTabOverlay$HealthState.class b/build/_compileJava_2/net/minecraft/client/gui/components/PlayerTabOverlay$HealthState.class new file mode 100644 index 000000000..ebf1b6248 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/gui/components/PlayerTabOverlay$HealthState.class differ diff --git a/build/_compileJava_2/net/minecraft/client/gui/components/PlayerTabOverlay.class b/build/_compileJava_2/net/minecraft/client/gui/components/PlayerTabOverlay.class new file mode 100644 index 000000000..d387df270 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/gui/components/PlayerTabOverlay.class differ diff --git a/build/_compileJava_2/net/minecraft/client/gui/components/Renderable.class b/build/_compileJava_2/net/minecraft/client/gui/components/Renderable.class new file mode 100644 index 000000000..ea2b09af8 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/gui/components/Renderable.class differ diff --git a/build/_compileJava_2/net/minecraft/client/gui/components/SplashRenderer.class b/build/_compileJava_2/net/minecraft/client/gui/components/SplashRenderer.class new file mode 100644 index 000000000..a427e3250 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/gui/components/SplashRenderer.class differ diff --git a/build/_compileJava_2/net/minecraft/client/gui/components/StateSwitchingButton.class b/build/_compileJava_2/net/minecraft/client/gui/components/StateSwitchingButton.class new file mode 100644 index 000000000..98c2c80ec Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/gui/components/StateSwitchingButton.class differ diff --git a/build/_compileJava_2/net/minecraft/client/gui/components/StringWidget.class b/build/_compileJava_2/net/minecraft/client/gui/components/StringWidget.class new file mode 100644 index 000000000..03b144063 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/gui/components/StringWidget.class differ diff --git a/build/_compileJava_2/net/minecraft/client/gui/components/SubtitleOverlay$Subtitle.class b/build/_compileJava_2/net/minecraft/client/gui/components/SubtitleOverlay$Subtitle.class new file mode 100644 index 000000000..19d69a365 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/gui/components/SubtitleOverlay$Subtitle.class differ diff --git a/build/_compileJava_2/net/minecraft/client/gui/components/SubtitleOverlay.class b/build/_compileJava_2/net/minecraft/client/gui/components/SubtitleOverlay.class new file mode 100644 index 000000000..11ff8f5eb Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/gui/components/SubtitleOverlay.class differ diff --git a/build/_compileJava_2/net/minecraft/client/gui/components/TabButton.class b/build/_compileJava_2/net/minecraft/client/gui/components/TabButton.class new file mode 100644 index 000000000..e75a5e86e Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/gui/components/TabButton.class differ diff --git a/build/_compileJava_2/net/minecraft/client/gui/components/TabOrderedElement.class b/build/_compileJava_2/net/minecraft/client/gui/components/TabOrderedElement.class new file mode 100644 index 000000000..620de3e80 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/gui/components/TabOrderedElement.class differ diff --git a/build/_compileJava_2/net/minecraft/client/gui/components/TextAndImageButton$Builder.class b/build/_compileJava_2/net/minecraft/client/gui/components/TextAndImageButton$Builder.class new file mode 100644 index 000000000..2a21c1b47 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/gui/components/TextAndImageButton$Builder.class differ diff --git a/build/_compileJava_2/net/minecraft/client/gui/components/TextAndImageButton.class b/build/_compileJava_2/net/minecraft/client/gui/components/TextAndImageButton.class new file mode 100644 index 000000000..b9c726e9b Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/gui/components/TextAndImageButton.class differ diff --git a/build/_compileJava_2/net/minecraft/client/gui/components/Tooltip.class b/build/_compileJava_2/net/minecraft/client/gui/components/Tooltip.class new file mode 100644 index 000000000..4fdc5e7cf Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/gui/components/Tooltip.class differ diff --git a/build/_compileJava_2/net/minecraft/client/gui/components/Whence.class b/build/_compileJava_2/net/minecraft/client/gui/components/Whence.class new file mode 100644 index 000000000..0b35b9199 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/gui/components/Whence.class differ diff --git a/build/_compileJava_2/net/minecraft/client/gui/components/events/AbstractContainerEventHandler.class b/build/_compileJava_2/net/minecraft/client/gui/components/events/AbstractContainerEventHandler.class new file mode 100644 index 000000000..2c94384cf Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/gui/components/events/AbstractContainerEventHandler.class differ diff --git a/build/_compileJava_2/net/minecraft/client/gui/components/events/ContainerEventHandler.class b/build/_compileJava_2/net/minecraft/client/gui/components/events/ContainerEventHandler.class new file mode 100644 index 000000000..586a5b65c Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/gui/components/events/ContainerEventHandler.class differ diff --git a/build/_compileJava_2/net/minecraft/client/gui/components/events/GuiEventListener.class b/build/_compileJava_2/net/minecraft/client/gui/components/events/GuiEventListener.class new file mode 100644 index 000000000..822c38ef2 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/gui/components/events/GuiEventListener.class differ diff --git a/build/_compileJava_2/net/minecraft/client/gui/components/events/package-info.class b/build/_compileJava_2/net/minecraft/client/gui/components/events/package-info.class new file mode 100644 index 000000000..6d1d5108e Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/gui/components/events/package-info.class differ diff --git a/build/_compileJava_2/net/minecraft/client/gui/components/package-info.class b/build/_compileJava_2/net/minecraft/client/gui/components/package-info.class new file mode 100644 index 000000000..6a8a4aa72 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/gui/components/package-info.class differ diff --git a/build/_compileJava_2/net/minecraft/client/gui/components/spectator/SpectatorGui.class b/build/_compileJava_2/net/minecraft/client/gui/components/spectator/SpectatorGui.class new file mode 100644 index 000000000..5a2acc3a4 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/gui/components/spectator/SpectatorGui.class differ diff --git a/build/_compileJava_2/net/minecraft/client/gui/components/spectator/package-info.class b/build/_compileJava_2/net/minecraft/client/gui/components/spectator/package-info.class new file mode 100644 index 000000000..6df975b19 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/gui/components/spectator/package-info.class differ diff --git a/build/_compileJava_2/net/minecraft/client/gui/components/tabs/GridLayoutTab.class b/build/_compileJava_2/net/minecraft/client/gui/components/tabs/GridLayoutTab.class new file mode 100644 index 000000000..0bb4e0556 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/gui/components/tabs/GridLayoutTab.class differ diff --git a/build/_compileJava_2/net/minecraft/client/gui/components/tabs/Tab.class b/build/_compileJava_2/net/minecraft/client/gui/components/tabs/Tab.class new file mode 100644 index 000000000..ebc5dcff6 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/gui/components/tabs/Tab.class differ diff --git a/build/_compileJava_2/net/minecraft/client/gui/components/tabs/TabManager.class b/build/_compileJava_2/net/minecraft/client/gui/components/tabs/TabManager.class new file mode 100644 index 000000000..261491b66 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/gui/components/tabs/TabManager.class differ diff --git a/build/_compileJava_2/net/minecraft/client/gui/components/tabs/TabNavigationBar$Builder.class b/build/_compileJava_2/net/minecraft/client/gui/components/tabs/TabNavigationBar$Builder.class new file mode 100644 index 000000000..67037c877 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/gui/components/tabs/TabNavigationBar$Builder.class differ diff --git a/build/_compileJava_2/net/minecraft/client/gui/components/tabs/TabNavigationBar.class b/build/_compileJava_2/net/minecraft/client/gui/components/tabs/TabNavigationBar.class new file mode 100644 index 000000000..77d3614ca Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/gui/components/tabs/TabNavigationBar.class differ diff --git a/build/_compileJava_2/net/minecraft/client/gui/components/tabs/package-info.class b/build/_compileJava_2/net/minecraft/client/gui/components/tabs/package-info.class new file mode 100644 index 000000000..8e912a99d Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/gui/components/tabs/package-info.class differ diff --git a/build/_compileJava_2/net/minecraft/client/gui/components/toasts/AdvancementToast.class b/build/_compileJava_2/net/minecraft/client/gui/components/toasts/AdvancementToast.class new file mode 100644 index 000000000..d81ea9758 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/gui/components/toasts/AdvancementToast.class differ diff --git a/build/_compileJava_2/net/minecraft/client/gui/components/toasts/RecipeToast.class b/build/_compileJava_2/net/minecraft/client/gui/components/toasts/RecipeToast.class new file mode 100644 index 000000000..126dc5dbd Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/gui/components/toasts/RecipeToast.class differ diff --git a/build/_compileJava_2/net/minecraft/client/gui/components/toasts/SystemToast$SystemToastIds.class b/build/_compileJava_2/net/minecraft/client/gui/components/toasts/SystemToast$SystemToastIds.class new file mode 100644 index 000000000..9cc8c293c Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/gui/components/toasts/SystemToast$SystemToastIds.class differ diff --git a/build/_compileJava_2/net/minecraft/client/gui/components/toasts/SystemToast.class b/build/_compileJava_2/net/minecraft/client/gui/components/toasts/SystemToast.class new file mode 100644 index 000000000..02b5d5f98 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/gui/components/toasts/SystemToast.class differ diff --git a/build/_compileJava_2/net/minecraft/client/gui/components/toasts/Toast$Visibility.class b/build/_compileJava_2/net/minecraft/client/gui/components/toasts/Toast$Visibility.class new file mode 100644 index 000000000..cfb2cbc60 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/gui/components/toasts/Toast$Visibility.class differ diff --git a/build/_compileJava_2/net/minecraft/client/gui/components/toasts/Toast.class b/build/_compileJava_2/net/minecraft/client/gui/components/toasts/Toast.class new file mode 100644 index 000000000..e0d6d69bd Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/gui/components/toasts/Toast.class differ diff --git a/build/_compileJava_2/net/minecraft/client/gui/components/toasts/ToastComponent$ToastInstance.class b/build/_compileJava_2/net/minecraft/client/gui/components/toasts/ToastComponent$ToastInstance.class new file mode 100644 index 000000000..891fd07cc Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/gui/components/toasts/ToastComponent$ToastInstance.class differ diff --git a/build/_compileJava_2/net/minecraft/client/gui/components/toasts/ToastComponent.class b/build/_compileJava_2/net/minecraft/client/gui/components/toasts/ToastComponent.class new file mode 100644 index 000000000..6869c612b Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/gui/components/toasts/ToastComponent.class differ diff --git a/build/_compileJava_2/net/minecraft/client/gui/components/toasts/TutorialToast$Icons.class b/build/_compileJava_2/net/minecraft/client/gui/components/toasts/TutorialToast$Icons.class new file mode 100644 index 000000000..541897047 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/gui/components/toasts/TutorialToast$Icons.class differ diff --git a/build/_compileJava_2/net/minecraft/client/gui/components/toasts/TutorialToast.class b/build/_compileJava_2/net/minecraft/client/gui/components/toasts/TutorialToast.class new file mode 100644 index 000000000..4243e7b4c Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/gui/components/toasts/TutorialToast.class differ diff --git a/build/_compileJava_2/net/minecraft/client/gui/components/toasts/package-info.class b/build/_compileJava_2/net/minecraft/client/gui/components/toasts/package-info.class new file mode 100644 index 000000000..c9499c3be Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/gui/components/toasts/package-info.class differ diff --git a/build/_compileJava_2/net/minecraft/client/gui/font/AllMissingGlyphProvider.class b/build/_compileJava_2/net/minecraft/client/gui/font/AllMissingGlyphProvider.class new file mode 100644 index 000000000..19a81ae20 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/gui/font/AllMissingGlyphProvider.class differ diff --git a/build/_compileJava_2/net/minecraft/client/gui/font/CodepointMap$Output.class b/build/_compileJava_2/net/minecraft/client/gui/font/CodepointMap$Output.class new file mode 100644 index 000000000..184abdcfa Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/gui/font/CodepointMap$Output.class differ diff --git a/build/_compileJava_2/net/minecraft/client/gui/font/CodepointMap.class b/build/_compileJava_2/net/minecraft/client/gui/font/CodepointMap.class new file mode 100644 index 000000000..be05c2028 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/gui/font/CodepointMap.class differ diff --git a/build/_compileJava_2/net/minecraft/client/gui/font/FontManager$BuilderId.class b/build/_compileJava_2/net/minecraft/client/gui/font/FontManager$BuilderId.class new file mode 100644 index 000000000..2f46853e2 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/gui/font/FontManager$BuilderId.class differ diff --git a/build/_compileJava_2/net/minecraft/client/gui/font/FontManager$BuilderResult.class b/build/_compileJava_2/net/minecraft/client/gui/font/FontManager$BuilderResult.class new file mode 100644 index 000000000..8253b67dd Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/gui/font/FontManager$BuilderResult.class differ diff --git a/build/_compileJava_2/net/minecraft/client/gui/font/FontManager$FontDefinitionFile.class b/build/_compileJava_2/net/minecraft/client/gui/font/FontManager$FontDefinitionFile.class new file mode 100644 index 000000000..541fbed2c Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/gui/font/FontManager$FontDefinitionFile.class differ diff --git a/build/_compileJava_2/net/minecraft/client/gui/font/FontManager$Preparation.class b/build/_compileJava_2/net/minecraft/client/gui/font/FontManager$Preparation.class new file mode 100644 index 000000000..c01be0b81 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/gui/font/FontManager$Preparation.class differ diff --git a/build/_compileJava_2/net/minecraft/client/gui/font/FontManager$UnresolvedBuilderBundle.class b/build/_compileJava_2/net/minecraft/client/gui/font/FontManager$UnresolvedBuilderBundle.class new file mode 100644 index 000000000..c321155fb Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/gui/font/FontManager$UnresolvedBuilderBundle.class differ diff --git a/build/_compileJava_2/net/minecraft/client/gui/font/FontManager.class b/build/_compileJava_2/net/minecraft/client/gui/font/FontManager.class new file mode 100644 index 000000000..c3aad73e5 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/gui/font/FontManager.class differ diff --git a/build/_compileJava_2/net/minecraft/client/gui/font/FontSet$GlyphInfoFilter.class b/build/_compileJava_2/net/minecraft/client/gui/font/FontSet$GlyphInfoFilter.class new file mode 100644 index 000000000..847224b30 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/gui/font/FontSet$GlyphInfoFilter.class differ diff --git a/build/_compileJava_2/net/minecraft/client/gui/font/FontSet.class b/build/_compileJava_2/net/minecraft/client/gui/font/FontSet.class new file mode 100644 index 000000000..26593827d Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/gui/font/FontSet.class differ diff --git a/build/_compileJava_2/net/minecraft/client/gui/font/FontTexture$Node.class b/build/_compileJava_2/net/minecraft/client/gui/font/FontTexture$Node.class new file mode 100644 index 000000000..2ba250c77 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/gui/font/FontTexture$Node.class differ diff --git a/build/_compileJava_2/net/minecraft/client/gui/font/FontTexture.class b/build/_compileJava_2/net/minecraft/client/gui/font/FontTexture.class new file mode 100644 index 000000000..31f29c871 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/gui/font/FontTexture.class differ diff --git a/build/_compileJava_2/net/minecraft/client/gui/font/GlyphRenderTypes$1.class b/build/_compileJava_2/net/minecraft/client/gui/font/GlyphRenderTypes$1.class new file mode 100644 index 000000000..ddb042690 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/gui/font/GlyphRenderTypes$1.class differ diff --git a/build/_compileJava_2/net/minecraft/client/gui/font/GlyphRenderTypes.class b/build/_compileJava_2/net/minecraft/client/gui/font/GlyphRenderTypes.class new file mode 100644 index 000000000..1f322312f Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/gui/font/GlyphRenderTypes.class differ diff --git a/build/_compileJava_2/net/minecraft/client/gui/font/TextFieldHelper$1.class b/build/_compileJava_2/net/minecraft/client/gui/font/TextFieldHelper$1.class new file mode 100644 index 000000000..49d677d4e Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/gui/font/TextFieldHelper$1.class differ diff --git a/build/_compileJava_2/net/minecraft/client/gui/font/TextFieldHelper$CursorStep.class b/build/_compileJava_2/net/minecraft/client/gui/font/TextFieldHelper$CursorStep.class new file mode 100644 index 000000000..2db9e76ae Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/gui/font/TextFieldHelper$CursorStep.class differ diff --git a/build/_compileJava_2/net/minecraft/client/gui/font/TextFieldHelper.class b/build/_compileJava_2/net/minecraft/client/gui/font/TextFieldHelper.class new file mode 100644 index 000000000..0306b8fb4 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/gui/font/TextFieldHelper.class differ diff --git a/build/_compileJava_2/net/minecraft/client/gui/font/glyphs/BakedGlyph$Effect.class b/build/_compileJava_2/net/minecraft/client/gui/font/glyphs/BakedGlyph$Effect.class new file mode 100644 index 000000000..0b140a865 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/gui/font/glyphs/BakedGlyph$Effect.class differ diff --git a/build/_compileJava_2/net/minecraft/client/gui/font/glyphs/BakedGlyph.class b/build/_compileJava_2/net/minecraft/client/gui/font/glyphs/BakedGlyph.class new file mode 100644 index 000000000..0355daa0c Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/gui/font/glyphs/BakedGlyph.class differ diff --git a/build/_compileJava_2/net/minecraft/client/gui/font/glyphs/EmptyGlyph.class b/build/_compileJava_2/net/minecraft/client/gui/font/glyphs/EmptyGlyph.class new file mode 100644 index 000000000..dddb04667 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/gui/font/glyphs/EmptyGlyph.class differ diff --git a/build/_compileJava_2/net/minecraft/client/gui/font/glyphs/SpecialGlyphs$1.class b/build/_compileJava_2/net/minecraft/client/gui/font/glyphs/SpecialGlyphs$1.class new file mode 100644 index 000000000..57ad4de4a Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/gui/font/glyphs/SpecialGlyphs$1.class differ diff --git a/build/_compileJava_2/net/minecraft/client/gui/font/glyphs/SpecialGlyphs$PixelProvider.class b/build/_compileJava_2/net/minecraft/client/gui/font/glyphs/SpecialGlyphs$PixelProvider.class new file mode 100644 index 000000000..475d56fa7 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/gui/font/glyphs/SpecialGlyphs$PixelProvider.class differ diff --git a/build/_compileJava_2/net/minecraft/client/gui/font/glyphs/SpecialGlyphs.class b/build/_compileJava_2/net/minecraft/client/gui/font/glyphs/SpecialGlyphs.class new file mode 100644 index 000000000..c0d208474 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/gui/font/glyphs/SpecialGlyphs.class differ diff --git a/build/_compileJava_2/net/minecraft/client/gui/font/glyphs/package-info.class b/build/_compileJava_2/net/minecraft/client/gui/font/glyphs/package-info.class new file mode 100644 index 000000000..93bf599b8 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/gui/font/glyphs/package-info.class differ diff --git a/build/_compileJava_2/net/minecraft/client/gui/font/package-info.class b/build/_compileJava_2/net/minecraft/client/gui/font/package-info.class new file mode 100644 index 000000000..da0ae2864 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/gui/font/package-info.class differ diff --git a/build/_compileJava_2/net/minecraft/client/gui/font/providers/BitmapProvider$Definition.class b/build/_compileJava_2/net/minecraft/client/gui/font/providers/BitmapProvider$Definition.class new file mode 100644 index 000000000..cc1c604ff Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/gui/font/providers/BitmapProvider$Definition.class differ diff --git a/build/_compileJava_2/net/minecraft/client/gui/font/providers/BitmapProvider$Glyph$1.class b/build/_compileJava_2/net/minecraft/client/gui/font/providers/BitmapProvider$Glyph$1.class new file mode 100644 index 000000000..c293c07d2 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/gui/font/providers/BitmapProvider$Glyph$1.class differ diff --git a/build/_compileJava_2/net/minecraft/client/gui/font/providers/BitmapProvider$Glyph.class b/build/_compileJava_2/net/minecraft/client/gui/font/providers/BitmapProvider$Glyph.class new file mode 100644 index 000000000..79156d27f Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/gui/font/providers/BitmapProvider$Glyph.class differ diff --git a/build/_compileJava_2/net/minecraft/client/gui/font/providers/BitmapProvider.class b/build/_compileJava_2/net/minecraft/client/gui/font/providers/BitmapProvider.class new file mode 100644 index 000000000..62383fb4f Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/gui/font/providers/BitmapProvider.class differ diff --git a/build/_compileJava_2/net/minecraft/client/gui/font/providers/GlyphProviderDefinition$Loader.class b/build/_compileJava_2/net/minecraft/client/gui/font/providers/GlyphProviderDefinition$Loader.class new file mode 100644 index 000000000..834f1eb7e Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/gui/font/providers/GlyphProviderDefinition$Loader.class differ diff --git a/build/_compileJava_2/net/minecraft/client/gui/font/providers/GlyphProviderDefinition$Reference.class b/build/_compileJava_2/net/minecraft/client/gui/font/providers/GlyphProviderDefinition$Reference.class new file mode 100644 index 000000000..6371ee1e6 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/gui/font/providers/GlyphProviderDefinition$Reference.class differ diff --git a/build/_compileJava_2/net/minecraft/client/gui/font/providers/GlyphProviderDefinition.class b/build/_compileJava_2/net/minecraft/client/gui/font/providers/GlyphProviderDefinition.class new file mode 100644 index 000000000..2e6b35bf4 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/gui/font/providers/GlyphProviderDefinition.class differ diff --git a/build/_compileJava_2/net/minecraft/client/gui/font/providers/GlyphProviderType.class b/build/_compileJava_2/net/minecraft/client/gui/font/providers/GlyphProviderType.class new file mode 100644 index 000000000..0687489cc Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/gui/font/providers/GlyphProviderType.class differ diff --git a/build/_compileJava_2/net/minecraft/client/gui/font/providers/ProviderReferenceDefinition.class b/build/_compileJava_2/net/minecraft/client/gui/font/providers/ProviderReferenceDefinition.class new file mode 100644 index 000000000..58061c617 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/gui/font/providers/ProviderReferenceDefinition.class differ diff --git a/build/_compileJava_2/net/minecraft/client/gui/font/providers/TrueTypeGlyphProviderDefinition$Shift.class b/build/_compileJava_2/net/minecraft/client/gui/font/providers/TrueTypeGlyphProviderDefinition$Shift.class new file mode 100644 index 000000000..78cc8e8e7 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/gui/font/providers/TrueTypeGlyphProviderDefinition$Shift.class differ diff --git a/build/_compileJava_2/net/minecraft/client/gui/font/providers/TrueTypeGlyphProviderDefinition.class b/build/_compileJava_2/net/minecraft/client/gui/font/providers/TrueTypeGlyphProviderDefinition.class new file mode 100644 index 000000000..6ddb10db0 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/gui/font/providers/TrueTypeGlyphProviderDefinition.class differ diff --git a/build/_compileJava_2/net/minecraft/client/gui/font/providers/UnihexProvider$ByteContents.class b/build/_compileJava_2/net/minecraft/client/gui/font/providers/UnihexProvider$ByteContents.class new file mode 100644 index 000000000..91d7838bc Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/gui/font/providers/UnihexProvider$ByteContents.class differ diff --git a/build/_compileJava_2/net/minecraft/client/gui/font/providers/UnihexProvider$Definition.class b/build/_compileJava_2/net/minecraft/client/gui/font/providers/UnihexProvider$Definition.class new file mode 100644 index 000000000..5cbf4d649 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/gui/font/providers/UnihexProvider$Definition.class differ diff --git a/build/_compileJava_2/net/minecraft/client/gui/font/providers/UnihexProvider$Dimensions.class b/build/_compileJava_2/net/minecraft/client/gui/font/providers/UnihexProvider$Dimensions.class new file mode 100644 index 000000000..d546d348e Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/gui/font/providers/UnihexProvider$Dimensions.class differ diff --git a/build/_compileJava_2/net/minecraft/client/gui/font/providers/UnihexProvider$Glyph$1.class b/build/_compileJava_2/net/minecraft/client/gui/font/providers/UnihexProvider$Glyph$1.class new file mode 100644 index 000000000..2fdebf909 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/gui/font/providers/UnihexProvider$Glyph$1.class differ diff --git a/build/_compileJava_2/net/minecraft/client/gui/font/providers/UnihexProvider$Glyph.class b/build/_compileJava_2/net/minecraft/client/gui/font/providers/UnihexProvider$Glyph.class new file mode 100644 index 000000000..ec60368b0 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/gui/font/providers/UnihexProvider$Glyph.class differ diff --git a/build/_compileJava_2/net/minecraft/client/gui/font/providers/UnihexProvider$IntContents.class b/build/_compileJava_2/net/minecraft/client/gui/font/providers/UnihexProvider$IntContents.class new file mode 100644 index 000000000..1f89bcd62 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/gui/font/providers/UnihexProvider$IntContents.class differ diff --git a/build/_compileJava_2/net/minecraft/client/gui/font/providers/UnihexProvider$LineData.class b/build/_compileJava_2/net/minecraft/client/gui/font/providers/UnihexProvider$LineData.class new file mode 100644 index 000000000..c723265b6 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/gui/font/providers/UnihexProvider$LineData.class differ diff --git a/build/_compileJava_2/net/minecraft/client/gui/font/providers/UnihexProvider$OverrideRange.class b/build/_compileJava_2/net/minecraft/client/gui/font/providers/UnihexProvider$OverrideRange.class new file mode 100644 index 000000000..cfc731437 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/gui/font/providers/UnihexProvider$OverrideRange.class differ diff --git a/build/_compileJava_2/net/minecraft/client/gui/font/providers/UnihexProvider$ReaderOutput.class b/build/_compileJava_2/net/minecraft/client/gui/font/providers/UnihexProvider$ReaderOutput.class new file mode 100644 index 000000000..31f7842e0 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/gui/font/providers/UnihexProvider$ReaderOutput.class differ diff --git a/build/_compileJava_2/net/minecraft/client/gui/font/providers/UnihexProvider$ShortContents.class b/build/_compileJava_2/net/minecraft/client/gui/font/providers/UnihexProvider$ShortContents.class new file mode 100644 index 000000000..0adc5c8d5 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/gui/font/providers/UnihexProvider$ShortContents.class differ diff --git a/build/_compileJava_2/net/minecraft/client/gui/font/providers/UnihexProvider.class b/build/_compileJava_2/net/minecraft/client/gui/font/providers/UnihexProvider.class new file mode 100644 index 000000000..df3d4d10c Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/gui/font/providers/UnihexProvider.class differ diff --git a/build/_compileJava_2/net/minecraft/client/gui/font/providers/package-info.class b/build/_compileJava_2/net/minecraft/client/gui/font/providers/package-info.class new file mode 100644 index 000000000..5509f8e12 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/gui/font/providers/package-info.class differ diff --git a/build/_compileJava_2/net/minecraft/client/gui/layouts/AbstractLayout$AbstractChildWrapper.class b/build/_compileJava_2/net/minecraft/client/gui/layouts/AbstractLayout$AbstractChildWrapper.class new file mode 100644 index 000000000..aab2a6599 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/gui/layouts/AbstractLayout$AbstractChildWrapper.class differ diff --git a/build/_compileJava_2/net/minecraft/client/gui/layouts/AbstractLayout.class b/build/_compileJava_2/net/minecraft/client/gui/layouts/AbstractLayout.class new file mode 100644 index 000000000..21562bae4 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/gui/layouts/AbstractLayout.class differ diff --git a/build/_compileJava_2/net/minecraft/client/gui/layouts/FrameLayout$ChildContainer.class b/build/_compileJava_2/net/minecraft/client/gui/layouts/FrameLayout$ChildContainer.class new file mode 100644 index 000000000..a85c6606d Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/gui/layouts/FrameLayout$ChildContainer.class differ diff --git a/build/_compileJava_2/net/minecraft/client/gui/layouts/FrameLayout.class b/build/_compileJava_2/net/minecraft/client/gui/layouts/FrameLayout.class new file mode 100644 index 000000000..af3c71b4b Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/gui/layouts/FrameLayout.class differ diff --git a/build/_compileJava_2/net/minecraft/client/gui/layouts/GridLayout$CellInhabitant.class b/build/_compileJava_2/net/minecraft/client/gui/layouts/GridLayout$CellInhabitant.class new file mode 100644 index 000000000..386ac7c89 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/gui/layouts/GridLayout$CellInhabitant.class differ diff --git a/build/_compileJava_2/net/minecraft/client/gui/layouts/GridLayout$RowHelper.class b/build/_compileJava_2/net/minecraft/client/gui/layouts/GridLayout$RowHelper.class new file mode 100644 index 000000000..5b0b92cb3 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/gui/layouts/GridLayout$RowHelper.class differ diff --git a/build/_compileJava_2/net/minecraft/client/gui/layouts/GridLayout.class b/build/_compileJava_2/net/minecraft/client/gui/layouts/GridLayout.class new file mode 100644 index 000000000..2d2a52caa Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/gui/layouts/GridLayout.class differ diff --git a/build/_compileJava_2/net/minecraft/client/gui/layouts/HeaderAndFooterLayout.class b/build/_compileJava_2/net/minecraft/client/gui/layouts/HeaderAndFooterLayout.class new file mode 100644 index 000000000..109f0d834 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/gui/layouts/HeaderAndFooterLayout.class differ diff --git a/build/_compileJava_2/net/minecraft/client/gui/layouts/Layout.class b/build/_compileJava_2/net/minecraft/client/gui/layouts/Layout.class new file mode 100644 index 000000000..4af0deb23 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/gui/layouts/Layout.class differ diff --git a/build/_compileJava_2/net/minecraft/client/gui/layouts/LayoutElement.class b/build/_compileJava_2/net/minecraft/client/gui/layouts/LayoutElement.class new file mode 100644 index 000000000..b66608413 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/gui/layouts/LayoutElement.class differ diff --git a/build/_compileJava_2/net/minecraft/client/gui/layouts/LayoutSettings$LayoutSettingsImpl.class b/build/_compileJava_2/net/minecraft/client/gui/layouts/LayoutSettings$LayoutSettingsImpl.class new file mode 100644 index 000000000..3179469ba Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/gui/layouts/LayoutSettings$LayoutSettingsImpl.class differ diff --git a/build/_compileJava_2/net/minecraft/client/gui/layouts/LayoutSettings.class b/build/_compileJava_2/net/minecraft/client/gui/layouts/LayoutSettings.class new file mode 100644 index 000000000..a35d01e29 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/gui/layouts/LayoutSettings.class differ diff --git a/build/_compileJava_2/net/minecraft/client/gui/layouts/LinearLayout$1.class b/build/_compileJava_2/net/minecraft/client/gui/layouts/LinearLayout$1.class new file mode 100644 index 000000000..66b156dd3 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/gui/layouts/LinearLayout$1.class differ diff --git a/build/_compileJava_2/net/minecraft/client/gui/layouts/LinearLayout$ChildContainer.class b/build/_compileJava_2/net/minecraft/client/gui/layouts/LinearLayout$ChildContainer.class new file mode 100644 index 000000000..5cd6e5adc Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/gui/layouts/LinearLayout$ChildContainer.class differ diff --git a/build/_compileJava_2/net/minecraft/client/gui/layouts/LinearLayout$Orientation.class b/build/_compileJava_2/net/minecraft/client/gui/layouts/LinearLayout$Orientation.class new file mode 100644 index 000000000..7ca4c2539 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/gui/layouts/LinearLayout$Orientation.class differ diff --git a/build/_compileJava_2/net/minecraft/client/gui/layouts/LinearLayout.class b/build/_compileJava_2/net/minecraft/client/gui/layouts/LinearLayout.class new file mode 100644 index 000000000..fa08fcac5 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/gui/layouts/LinearLayout.class differ diff --git a/build/_compileJava_2/net/minecraft/client/gui/layouts/SpacerElement.class b/build/_compileJava_2/net/minecraft/client/gui/layouts/SpacerElement.class new file mode 100644 index 000000000..13a202962 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/gui/layouts/SpacerElement.class differ diff --git a/build/_compileJava_2/net/minecraft/client/gui/layouts/package-info.class b/build/_compileJava_2/net/minecraft/client/gui/layouts/package-info.class new file mode 100644 index 000000000..a06a8e5da Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/gui/layouts/package-info.class differ diff --git a/build/_compileJava_2/net/minecraft/client/gui/narration/NarratableEntry$NarrationPriority.class b/build/_compileJava_2/net/minecraft/client/gui/narration/NarratableEntry$NarrationPriority.class new file mode 100644 index 000000000..732debeca Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/gui/narration/NarratableEntry$NarrationPriority.class differ diff --git a/build/_compileJava_2/net/minecraft/client/gui/narration/NarratableEntry.class b/build/_compileJava_2/net/minecraft/client/gui/narration/NarratableEntry.class new file mode 100644 index 000000000..89f295ef4 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/gui/narration/NarratableEntry.class differ diff --git a/build/_compileJava_2/net/minecraft/client/gui/narration/NarratedElementType.class b/build/_compileJava_2/net/minecraft/client/gui/narration/NarratedElementType.class new file mode 100644 index 000000000..7100ef9ae Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/gui/narration/NarratedElementType.class differ diff --git a/build/_compileJava_2/net/minecraft/client/gui/narration/NarrationElementOutput.class b/build/_compileJava_2/net/minecraft/client/gui/narration/NarrationElementOutput.class new file mode 100644 index 000000000..b46093c0d Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/gui/narration/NarrationElementOutput.class differ diff --git a/build/_compileJava_2/net/minecraft/client/gui/narration/NarrationSupplier.class b/build/_compileJava_2/net/minecraft/client/gui/narration/NarrationSupplier.class new file mode 100644 index 000000000..43a93aed2 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/gui/narration/NarrationSupplier.class differ diff --git a/build/_compileJava_2/net/minecraft/client/gui/narration/NarrationThunk.class b/build/_compileJava_2/net/minecraft/client/gui/narration/NarrationThunk.class new file mode 100644 index 000000000..2d2c31a3a Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/gui/narration/NarrationThunk.class differ diff --git a/build/_compileJava_2/net/minecraft/client/gui/narration/ScreenNarrationCollector$1.class b/build/_compileJava_2/net/minecraft/client/gui/narration/ScreenNarrationCollector$1.class new file mode 100644 index 000000000..db9917cd4 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/gui/narration/ScreenNarrationCollector$1.class differ diff --git a/build/_compileJava_2/net/minecraft/client/gui/narration/ScreenNarrationCollector$EntryKey.class b/build/_compileJava_2/net/minecraft/client/gui/narration/ScreenNarrationCollector$EntryKey.class new file mode 100644 index 000000000..980d38d19 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/gui/narration/ScreenNarrationCollector$EntryKey.class differ diff --git a/build/_compileJava_2/net/minecraft/client/gui/narration/ScreenNarrationCollector$NarrationEntry.class b/build/_compileJava_2/net/minecraft/client/gui/narration/ScreenNarrationCollector$NarrationEntry.class new file mode 100644 index 000000000..bd194e8ad Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/gui/narration/ScreenNarrationCollector$NarrationEntry.class differ diff --git a/build/_compileJava_2/net/minecraft/client/gui/narration/ScreenNarrationCollector$Output.class b/build/_compileJava_2/net/minecraft/client/gui/narration/ScreenNarrationCollector$Output.class new file mode 100644 index 000000000..0fb511a70 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/gui/narration/ScreenNarrationCollector$Output.class differ diff --git a/build/_compileJava_2/net/minecraft/client/gui/narration/ScreenNarrationCollector.class b/build/_compileJava_2/net/minecraft/client/gui/narration/ScreenNarrationCollector.class new file mode 100644 index 000000000..5bd1d2dfa Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/gui/narration/ScreenNarrationCollector.class differ diff --git a/build/_compileJava_2/net/minecraft/client/gui/narration/package-info.class b/build/_compileJava_2/net/minecraft/client/gui/narration/package-info.class new file mode 100644 index 000000000..9c982081b Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/gui/narration/package-info.class differ diff --git a/build/_compileJava_2/net/minecraft/client/gui/navigation/CommonInputs.class b/build/_compileJava_2/net/minecraft/client/gui/navigation/CommonInputs.class new file mode 100644 index 000000000..708761246 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/gui/navigation/CommonInputs.class differ diff --git a/build/_compileJava_2/net/minecraft/client/gui/navigation/FocusNavigationEvent$ArrowNavigation.class b/build/_compileJava_2/net/minecraft/client/gui/navigation/FocusNavigationEvent$ArrowNavigation.class new file mode 100644 index 000000000..efb26fb37 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/gui/navigation/FocusNavigationEvent$ArrowNavigation.class differ diff --git a/build/_compileJava_2/net/minecraft/client/gui/navigation/FocusNavigationEvent$InitialFocus.class b/build/_compileJava_2/net/minecraft/client/gui/navigation/FocusNavigationEvent$InitialFocus.class new file mode 100644 index 000000000..214bc4372 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/gui/navigation/FocusNavigationEvent$InitialFocus.class differ diff --git a/build/_compileJava_2/net/minecraft/client/gui/navigation/FocusNavigationEvent$TabNavigation.class b/build/_compileJava_2/net/minecraft/client/gui/navigation/FocusNavigationEvent$TabNavigation.class new file mode 100644 index 000000000..1788e6b1c Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/gui/navigation/FocusNavigationEvent$TabNavigation.class differ diff --git a/build/_compileJava_2/net/minecraft/client/gui/navigation/FocusNavigationEvent.class b/build/_compileJava_2/net/minecraft/client/gui/navigation/FocusNavigationEvent.class new file mode 100644 index 000000000..8f024fd08 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/gui/navigation/FocusNavigationEvent.class differ diff --git a/build/_compileJava_2/net/minecraft/client/gui/navigation/ScreenAxis$1.class b/build/_compileJava_2/net/minecraft/client/gui/navigation/ScreenAxis$1.class new file mode 100644 index 000000000..a78b52845 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/gui/navigation/ScreenAxis$1.class differ diff --git a/build/_compileJava_2/net/minecraft/client/gui/navigation/ScreenAxis.class b/build/_compileJava_2/net/minecraft/client/gui/navigation/ScreenAxis.class new file mode 100644 index 000000000..b4e23e90e Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/gui/navigation/ScreenAxis.class differ diff --git a/build/_compileJava_2/net/minecraft/client/gui/navigation/ScreenDirection$1.class b/build/_compileJava_2/net/minecraft/client/gui/navigation/ScreenDirection$1.class new file mode 100644 index 000000000..579d572a5 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/gui/navigation/ScreenDirection$1.class differ diff --git a/build/_compileJava_2/net/minecraft/client/gui/navigation/ScreenDirection.class b/build/_compileJava_2/net/minecraft/client/gui/navigation/ScreenDirection.class new file mode 100644 index 000000000..0218b4b8a Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/gui/navigation/ScreenDirection.class differ diff --git a/build/_compileJava_2/net/minecraft/client/gui/navigation/ScreenPosition$1.class b/build/_compileJava_2/net/minecraft/client/gui/navigation/ScreenPosition$1.class new file mode 100644 index 000000000..d13bd3362 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/gui/navigation/ScreenPosition$1.class differ diff --git a/build/_compileJava_2/net/minecraft/client/gui/navigation/ScreenPosition.class b/build/_compileJava_2/net/minecraft/client/gui/navigation/ScreenPosition.class new file mode 100644 index 000000000..fdfd92514 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/gui/navigation/ScreenPosition.class differ diff --git a/build/_compileJava_2/net/minecraft/client/gui/navigation/ScreenRectangle$1.class b/build/_compileJava_2/net/minecraft/client/gui/navigation/ScreenRectangle$1.class new file mode 100644 index 000000000..62ebc4121 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/gui/navigation/ScreenRectangle$1.class differ diff --git a/build/_compileJava_2/net/minecraft/client/gui/navigation/ScreenRectangle.class b/build/_compileJava_2/net/minecraft/client/gui/navigation/ScreenRectangle.class new file mode 100644 index 000000000..aa1bc1fb8 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/gui/navigation/ScreenRectangle.class differ diff --git a/build/_compileJava_2/net/minecraft/client/gui/navigation/package-info.class b/build/_compileJava_2/net/minecraft/client/gui/navigation/package-info.class new file mode 100644 index 000000000..5bed5c708 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/gui/navigation/package-info.class differ diff --git a/build/_compileJava_2/net/minecraft/client/gui/package-info.class b/build/_compileJava_2/net/minecraft/client/gui/package-info.class new file mode 100644 index 000000000..4be8b1d1e Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/gui/package-info.class differ diff --git a/build/_compileJava_2/net/minecraft/client/gui/screens/AccessibilityOnboardingScreen.class b/build/_compileJava_2/net/minecraft/client/gui/screens/AccessibilityOnboardingScreen.class new file mode 100644 index 000000000..dc052fb93 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/gui/screens/AccessibilityOnboardingScreen.class differ diff --git a/build/_compileJava_2/net/minecraft/client/gui/screens/AccessibilityOptionsScreen.class b/build/_compileJava_2/net/minecraft/client/gui/screens/AccessibilityOptionsScreen.class new file mode 100644 index 000000000..9ed7f8dec Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/gui/screens/AccessibilityOptionsScreen.class differ diff --git a/build/_compileJava_2/net/minecraft/client/gui/screens/AlertScreen.class b/build/_compileJava_2/net/minecraft/client/gui/screens/AlertScreen.class new file mode 100644 index 000000000..091e00151 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/gui/screens/AlertScreen.class differ diff --git a/build/_compileJava_2/net/minecraft/client/gui/screens/BackupConfirmScreen$Listener.class b/build/_compileJava_2/net/minecraft/client/gui/screens/BackupConfirmScreen$Listener.class new file mode 100644 index 000000000..ca6651761 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/gui/screens/BackupConfirmScreen$Listener.class differ diff --git a/build/_compileJava_2/net/minecraft/client/gui/screens/BackupConfirmScreen.class b/build/_compileJava_2/net/minecraft/client/gui/screens/BackupConfirmScreen.class new file mode 100644 index 000000000..8556f91d5 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/gui/screens/BackupConfirmScreen.class differ diff --git a/build/_compileJava_2/net/minecraft/client/gui/screens/BanNoticeScreen.class b/build/_compileJava_2/net/minecraft/client/gui/screens/BanNoticeScreen.class new file mode 100644 index 000000000..abaf0998b Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/gui/screens/BanNoticeScreen.class differ diff --git a/build/_compileJava_2/net/minecraft/client/gui/screens/ChatOptionsScreen.class b/build/_compileJava_2/net/minecraft/client/gui/screens/ChatOptionsScreen.class new file mode 100644 index 000000000..31206e7f8 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/gui/screens/ChatOptionsScreen.class differ diff --git a/build/_compileJava_2/net/minecraft/client/gui/screens/ChatScreen$1.class b/build/_compileJava_2/net/minecraft/client/gui/screens/ChatScreen$1.class new file mode 100644 index 000000000..fe963adc2 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/gui/screens/ChatScreen$1.class differ diff --git a/build/_compileJava_2/net/minecraft/client/gui/screens/ChatScreen.class b/build/_compileJava_2/net/minecraft/client/gui/screens/ChatScreen.class new file mode 100644 index 000000000..3faa592f8 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/gui/screens/ChatScreen.class differ diff --git a/build/_compileJava_2/net/minecraft/client/gui/screens/ConfirmLinkScreen.class b/build/_compileJava_2/net/minecraft/client/gui/screens/ConfirmLinkScreen.class new file mode 100644 index 000000000..e5dbda60e Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/gui/screens/ConfirmLinkScreen.class differ diff --git a/build/_compileJava_2/net/minecraft/client/gui/screens/ConfirmScreen.class b/build/_compileJava_2/net/minecraft/client/gui/screens/ConfirmScreen.class new file mode 100644 index 000000000..bf170f177 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/gui/screens/ConfirmScreen.class differ diff --git a/build/_compileJava_2/net/minecraft/client/gui/screens/ConnectScreen$1.class b/build/_compileJava_2/net/minecraft/client/gui/screens/ConnectScreen$1.class new file mode 100644 index 000000000..c9d46ee2c Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/gui/screens/ConnectScreen$1.class differ diff --git a/build/_compileJava_2/net/minecraft/client/gui/screens/ConnectScreen.class b/build/_compileJava_2/net/minecraft/client/gui/screens/ConnectScreen.class new file mode 100644 index 000000000..b6f2a43fe Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/gui/screens/ConnectScreen.class differ diff --git a/build/_compileJava_2/net/minecraft/client/gui/screens/CreateBuffetWorldScreen$BiomeList$Entry.class b/build/_compileJava_2/net/minecraft/client/gui/screens/CreateBuffetWorldScreen$BiomeList$Entry.class new file mode 100644 index 000000000..7ca3f7ca9 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/gui/screens/CreateBuffetWorldScreen$BiomeList$Entry.class differ diff --git a/build/_compileJava_2/net/minecraft/client/gui/screens/CreateBuffetWorldScreen$BiomeList.class b/build/_compileJava_2/net/minecraft/client/gui/screens/CreateBuffetWorldScreen$BiomeList.class new file mode 100644 index 000000000..60d98703f Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/gui/screens/CreateBuffetWorldScreen$BiomeList.class differ diff --git a/build/_compileJava_2/net/minecraft/client/gui/screens/CreateBuffetWorldScreen.class b/build/_compileJava_2/net/minecraft/client/gui/screens/CreateBuffetWorldScreen.class new file mode 100644 index 000000000..59f25c601 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/gui/screens/CreateBuffetWorldScreen.class differ diff --git a/build/_compileJava_2/net/minecraft/client/gui/screens/CreateFlatWorldScreen$DetailsList$Entry.class b/build/_compileJava_2/net/minecraft/client/gui/screens/CreateFlatWorldScreen$DetailsList$Entry.class new file mode 100644 index 000000000..7c8109260 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/gui/screens/CreateFlatWorldScreen$DetailsList$Entry.class differ diff --git a/build/_compileJava_2/net/minecraft/client/gui/screens/CreateFlatWorldScreen$DetailsList.class b/build/_compileJava_2/net/minecraft/client/gui/screens/CreateFlatWorldScreen$DetailsList.class new file mode 100644 index 000000000..bf9a4265e Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/gui/screens/CreateFlatWorldScreen$DetailsList.class differ diff --git a/build/_compileJava_2/net/minecraft/client/gui/screens/CreateFlatWorldScreen.class b/build/_compileJava_2/net/minecraft/client/gui/screens/CreateFlatWorldScreen.class new file mode 100644 index 000000000..bf3e6fcac Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/gui/screens/CreateFlatWorldScreen.class differ diff --git a/build/_compileJava_2/net/minecraft/client/gui/screens/CreditsAndAttributionScreen.class b/build/_compileJava_2/net/minecraft/client/gui/screens/CreditsAndAttributionScreen.class new file mode 100644 index 000000000..173b826fe Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/gui/screens/CreditsAndAttributionScreen.class differ diff --git a/build/_compileJava_2/net/minecraft/client/gui/screens/DatapackLoadFailureScreen.class b/build/_compileJava_2/net/minecraft/client/gui/screens/DatapackLoadFailureScreen.class new file mode 100644 index 000000000..61cd7a8b6 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/gui/screens/DatapackLoadFailureScreen.class differ diff --git a/build/_compileJava_2/net/minecraft/client/gui/screens/DeathScreen$TitleConfirmScreen.class b/build/_compileJava_2/net/minecraft/client/gui/screens/DeathScreen$TitleConfirmScreen.class new file mode 100644 index 000000000..2cb73cb15 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/gui/screens/DeathScreen$TitleConfirmScreen.class differ diff --git a/build/_compileJava_2/net/minecraft/client/gui/screens/DeathScreen.class b/build/_compileJava_2/net/minecraft/client/gui/screens/DeathScreen.class new file mode 100644 index 000000000..983ff15a2 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/gui/screens/DeathScreen.class differ diff --git a/build/_compileJava_2/net/minecraft/client/gui/screens/DemoIntroScreen.class b/build/_compileJava_2/net/minecraft/client/gui/screens/DemoIntroScreen.class new file mode 100644 index 000000000..e8910d489 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/gui/screens/DemoIntroScreen.class differ diff --git a/build/_compileJava_2/net/minecraft/client/gui/screens/DirectJoinServerScreen.class b/build/_compileJava_2/net/minecraft/client/gui/screens/DirectJoinServerScreen.class new file mode 100644 index 000000000..3142ff54a Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/gui/screens/DirectJoinServerScreen.class differ diff --git a/build/_compileJava_2/net/minecraft/client/gui/screens/DisconnectedScreen.class b/build/_compileJava_2/net/minecraft/client/gui/screens/DisconnectedScreen.class new file mode 100644 index 000000000..4e449419e Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/gui/screens/DisconnectedScreen.class differ diff --git a/build/_compileJava_2/net/minecraft/client/gui/screens/EditServerScreen.class b/build/_compileJava_2/net/minecraft/client/gui/screens/EditServerScreen.class new file mode 100644 index 000000000..afe529e79 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/gui/screens/EditServerScreen.class differ diff --git a/build/_compileJava_2/net/minecraft/client/gui/screens/ErrorScreen.class b/build/_compileJava_2/net/minecraft/client/gui/screens/ErrorScreen.class new file mode 100644 index 000000000..eee30e8df Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/gui/screens/ErrorScreen.class differ diff --git a/build/_compileJava_2/net/minecraft/client/gui/screens/FaviconTexture.class b/build/_compileJava_2/net/minecraft/client/gui/screens/FaviconTexture.class new file mode 100644 index 000000000..2a16eb164 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/gui/screens/FaviconTexture.class differ diff --git a/build/_compileJava_2/net/minecraft/client/gui/screens/GenericDirtMessageScreen.class b/build/_compileJava_2/net/minecraft/client/gui/screens/GenericDirtMessageScreen.class new file mode 100644 index 000000000..2faa73707 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/gui/screens/GenericDirtMessageScreen.class differ diff --git a/build/_compileJava_2/net/minecraft/client/gui/screens/GenericWaitingScreen.class b/build/_compileJava_2/net/minecraft/client/gui/screens/GenericWaitingScreen.class new file mode 100644 index 000000000..93e90e4d0 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/gui/screens/GenericWaitingScreen.class differ diff --git a/build/_compileJava_2/net/minecraft/client/gui/screens/InBedChatScreen.class b/build/_compileJava_2/net/minecraft/client/gui/screens/InBedChatScreen.class new file mode 100644 index 000000000..a69ebb6f6 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/gui/screens/InBedChatScreen.class differ diff --git a/build/_compileJava_2/net/minecraft/client/gui/screens/LanguageSelectScreen$LanguageSelectionList$Entry.class b/build/_compileJava_2/net/minecraft/client/gui/screens/LanguageSelectScreen$LanguageSelectionList$Entry.class new file mode 100644 index 000000000..0f101afb1 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/gui/screens/LanguageSelectScreen$LanguageSelectionList$Entry.class differ diff --git a/build/_compileJava_2/net/minecraft/client/gui/screens/LanguageSelectScreen$LanguageSelectionList.class b/build/_compileJava_2/net/minecraft/client/gui/screens/LanguageSelectScreen$LanguageSelectionList.class new file mode 100644 index 000000000..19b025e91 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/gui/screens/LanguageSelectScreen$LanguageSelectionList.class differ diff --git a/build/_compileJava_2/net/minecraft/client/gui/screens/LanguageSelectScreen.class b/build/_compileJava_2/net/minecraft/client/gui/screens/LanguageSelectScreen.class new file mode 100644 index 000000000..3c2172a45 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/gui/screens/LanguageSelectScreen.class differ diff --git a/build/_compileJava_2/net/minecraft/client/gui/screens/LevelLoadingScreen.class b/build/_compileJava_2/net/minecraft/client/gui/screens/LevelLoadingScreen.class new file mode 100644 index 000000000..8bee7804a Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/gui/screens/LevelLoadingScreen.class differ diff --git a/build/_compileJava_2/net/minecraft/client/gui/screens/LoadingDotsText.class b/build/_compileJava_2/net/minecraft/client/gui/screens/LoadingDotsText.class new file mode 100644 index 000000000..bec3a7cd6 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/gui/screens/LoadingDotsText.class differ diff --git a/build/_compileJava_2/net/minecraft/client/gui/screens/LoadingOverlay$LogoTexture.class b/build/_compileJava_2/net/minecraft/client/gui/screens/LoadingOverlay$LogoTexture.class new file mode 100644 index 000000000..65a721833 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/gui/screens/LoadingOverlay$LogoTexture.class differ diff --git a/build/_compileJava_2/net/minecraft/client/gui/screens/LoadingOverlay.class b/build/_compileJava_2/net/minecraft/client/gui/screens/LoadingOverlay.class new file mode 100644 index 000000000..04086a689 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/gui/screens/LoadingOverlay.class differ diff --git a/build/_compileJava_2/net/minecraft/client/gui/screens/MenuScreens$ScreenConstructor.class b/build/_compileJava_2/net/minecraft/client/gui/screens/MenuScreens$ScreenConstructor.class new file mode 100644 index 000000000..bebdcd230 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/gui/screens/MenuScreens$ScreenConstructor.class differ diff --git a/build/_compileJava_2/net/minecraft/client/gui/screens/MenuScreens.class b/build/_compileJava_2/net/minecraft/client/gui/screens/MenuScreens.class new file mode 100644 index 000000000..b06376d04 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/gui/screens/MenuScreens.class differ diff --git a/build/_compileJava_2/net/minecraft/client/gui/screens/MouseSettingsScreen.class b/build/_compileJava_2/net/minecraft/client/gui/screens/MouseSettingsScreen.class new file mode 100644 index 000000000..3e51ea06d Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/gui/screens/MouseSettingsScreen.class differ diff --git a/build/_compileJava_2/net/minecraft/client/gui/screens/OnlineOptionsScreen.class b/build/_compileJava_2/net/minecraft/client/gui/screens/OnlineOptionsScreen.class new file mode 100644 index 000000000..7180415df Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/gui/screens/OnlineOptionsScreen.class differ diff --git a/build/_compileJava_2/net/minecraft/client/gui/screens/OptionsScreen.class b/build/_compileJava_2/net/minecraft/client/gui/screens/OptionsScreen.class new file mode 100644 index 000000000..23ab2a694 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/gui/screens/OptionsScreen.class differ diff --git a/build/_compileJava_2/net/minecraft/client/gui/screens/OptionsSubScreen.class b/build/_compileJava_2/net/minecraft/client/gui/screens/OptionsSubScreen.class new file mode 100644 index 000000000..412cdb949 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/gui/screens/OptionsSubScreen.class differ diff --git a/build/_compileJava_2/net/minecraft/client/gui/screens/OutOfMemoryScreen.class b/build/_compileJava_2/net/minecraft/client/gui/screens/OutOfMemoryScreen.class new file mode 100644 index 000000000..d565b0f3e Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/gui/screens/OutOfMemoryScreen.class differ diff --git a/build/_compileJava_2/net/minecraft/client/gui/screens/Overlay.class b/build/_compileJava_2/net/minecraft/client/gui/screens/Overlay.class new file mode 100644 index 000000000..57a90759e Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/gui/screens/Overlay.class differ diff --git a/build/_compileJava_2/net/minecraft/client/gui/screens/PauseScreen.class b/build/_compileJava_2/net/minecraft/client/gui/screens/PauseScreen.class new file mode 100644 index 000000000..ddf6093bc Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/gui/screens/PauseScreen.class differ diff --git a/build/_compileJava_2/net/minecraft/client/gui/screens/PopupScreen$ButtonOption.class b/build/_compileJava_2/net/minecraft/client/gui/screens/PopupScreen$ButtonOption.class new file mode 100644 index 000000000..99d44c31f Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/gui/screens/PopupScreen$ButtonOption.class differ diff --git a/build/_compileJava_2/net/minecraft/client/gui/screens/PopupScreen.class b/build/_compileJava_2/net/minecraft/client/gui/screens/PopupScreen.class new file mode 100644 index 000000000..739944a06 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/gui/screens/PopupScreen.class differ diff --git a/build/_compileJava_2/net/minecraft/client/gui/screens/PresetFlatWorldScreen$PresetsList$Entry.class b/build/_compileJava_2/net/minecraft/client/gui/screens/PresetFlatWorldScreen$PresetsList$Entry.class new file mode 100644 index 000000000..284fe668c Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/gui/screens/PresetFlatWorldScreen$PresetsList$Entry.class differ diff --git a/build/_compileJava_2/net/minecraft/client/gui/screens/PresetFlatWorldScreen$PresetsList.class b/build/_compileJava_2/net/minecraft/client/gui/screens/PresetFlatWorldScreen$PresetsList.class new file mode 100644 index 000000000..e2d13b960 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/gui/screens/PresetFlatWorldScreen$PresetsList.class differ diff --git a/build/_compileJava_2/net/minecraft/client/gui/screens/PresetFlatWorldScreen.class b/build/_compileJava_2/net/minecraft/client/gui/screens/PresetFlatWorldScreen.class new file mode 100644 index 000000000..b48ed1b33 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/gui/screens/PresetFlatWorldScreen.class differ diff --git a/build/_compileJava_2/net/minecraft/client/gui/screens/ProgressScreen.class b/build/_compileJava_2/net/minecraft/client/gui/screens/ProgressScreen.class new file mode 100644 index 000000000..8f791d20e Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/gui/screens/ProgressScreen.class differ diff --git a/build/_compileJava_2/net/minecraft/client/gui/screens/ReceivingLevelScreen.class b/build/_compileJava_2/net/minecraft/client/gui/screens/ReceivingLevelScreen.class new file mode 100644 index 000000000..61e595e68 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/gui/screens/ReceivingLevelScreen.class differ diff --git a/build/_compileJava_2/net/minecraft/client/gui/screens/Screen$DeferredTooltipRendering.class b/build/_compileJava_2/net/minecraft/client/gui/screens/Screen$DeferredTooltipRendering.class new file mode 100644 index 000000000..1de2cc292 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/gui/screens/Screen$DeferredTooltipRendering.class differ diff --git a/build/_compileJava_2/net/minecraft/client/gui/screens/Screen$NarratableSearchResult.class b/build/_compileJava_2/net/minecraft/client/gui/screens/Screen$NarratableSearchResult.class new file mode 100644 index 000000000..ad0c31a62 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/gui/screens/Screen$NarratableSearchResult.class differ diff --git a/build/_compileJava_2/net/minecraft/client/gui/screens/Screen.class b/build/_compileJava_2/net/minecraft/client/gui/screens/Screen.class new file mode 100644 index 000000000..540528829 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/gui/screens/Screen.class differ diff --git a/build/_compileJava_2/net/minecraft/client/gui/screens/ShareToLanScreen.class b/build/_compileJava_2/net/minecraft/client/gui/screens/ShareToLanScreen.class new file mode 100644 index 000000000..a79c1ac2b Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/gui/screens/ShareToLanScreen.class differ diff --git a/build/_compileJava_2/net/minecraft/client/gui/screens/SimpleOptionsSubScreen.class b/build/_compileJava_2/net/minecraft/client/gui/screens/SimpleOptionsSubScreen.class new file mode 100644 index 000000000..39e7055e8 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/gui/screens/SimpleOptionsSubScreen.class differ diff --git a/build/_compileJava_2/net/minecraft/client/gui/screens/SkinCustomizationScreen.class b/build/_compileJava_2/net/minecraft/client/gui/screens/SkinCustomizationScreen.class new file mode 100644 index 000000000..1aca602a8 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/gui/screens/SkinCustomizationScreen.class differ diff --git a/build/_compileJava_2/net/minecraft/client/gui/screens/SoundOptionsScreen.class b/build/_compileJava_2/net/minecraft/client/gui/screens/SoundOptionsScreen.class new file mode 100644 index 000000000..39e25ea93 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/gui/screens/SoundOptionsScreen.class differ diff --git a/build/_compileJava_2/net/minecraft/client/gui/screens/SymlinkWarningScreen.class b/build/_compileJava_2/net/minecraft/client/gui/screens/SymlinkWarningScreen.class new file mode 100644 index 000000000..3c70c9385 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/gui/screens/SymlinkWarningScreen.class differ diff --git a/build/_compileJava_2/net/minecraft/client/gui/screens/TitleScreen$WarningLabel.class b/build/_compileJava_2/net/minecraft/client/gui/screens/TitleScreen$WarningLabel.class new file mode 100644 index 000000000..8d7e826e4 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/gui/screens/TitleScreen$WarningLabel.class differ diff --git a/build/_compileJava_2/net/minecraft/client/gui/screens/TitleScreen.class b/build/_compileJava_2/net/minecraft/client/gui/screens/TitleScreen.class new file mode 100644 index 000000000..46f42fc75 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/gui/screens/TitleScreen.class differ diff --git a/build/_compileJava_2/net/minecraft/client/gui/screens/VideoSettingsScreen.class b/build/_compileJava_2/net/minecraft/client/gui/screens/VideoSettingsScreen.class new file mode 100644 index 000000000..9229550b1 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/gui/screens/VideoSettingsScreen.class differ diff --git a/build/_compileJava_2/net/minecraft/client/gui/screens/WinScreen$CreditsReader.class b/build/_compileJava_2/net/minecraft/client/gui/screens/WinScreen$CreditsReader.class new file mode 100644 index 000000000..fb054ffa2 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/gui/screens/WinScreen$CreditsReader.class differ diff --git a/build/_compileJava_2/net/minecraft/client/gui/screens/WinScreen.class b/build/_compileJava_2/net/minecraft/client/gui/screens/WinScreen.class new file mode 100644 index 000000000..068171cca Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/gui/screens/WinScreen.class differ diff --git a/build/_compileJava_2/net/minecraft/client/gui/screens/achievement/StatsScreen$GeneralStatisticsList$Entry.class b/build/_compileJava_2/net/minecraft/client/gui/screens/achievement/StatsScreen$GeneralStatisticsList$Entry.class new file mode 100644 index 000000000..a0cf8d884 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/gui/screens/achievement/StatsScreen$GeneralStatisticsList$Entry.class differ diff --git a/build/_compileJava_2/net/minecraft/client/gui/screens/achievement/StatsScreen$GeneralStatisticsList.class b/build/_compileJava_2/net/minecraft/client/gui/screens/achievement/StatsScreen$GeneralStatisticsList.class new file mode 100644 index 000000000..147366820 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/gui/screens/achievement/StatsScreen$GeneralStatisticsList.class differ diff --git a/build/_compileJava_2/net/minecraft/client/gui/screens/achievement/StatsScreen$ItemStatisticsList$ItemRow.class b/build/_compileJava_2/net/minecraft/client/gui/screens/achievement/StatsScreen$ItemStatisticsList$ItemRow.class new file mode 100644 index 000000000..ecb688f89 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/gui/screens/achievement/StatsScreen$ItemStatisticsList$ItemRow.class differ diff --git a/build/_compileJava_2/net/minecraft/client/gui/screens/achievement/StatsScreen$ItemStatisticsList$ItemRowComparator.class b/build/_compileJava_2/net/minecraft/client/gui/screens/achievement/StatsScreen$ItemStatisticsList$ItemRowComparator.class new file mode 100644 index 000000000..504f01317 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/gui/screens/achievement/StatsScreen$ItemStatisticsList$ItemRowComparator.class differ diff --git a/build/_compileJava_2/net/minecraft/client/gui/screens/achievement/StatsScreen$ItemStatisticsList.class b/build/_compileJava_2/net/minecraft/client/gui/screens/achievement/StatsScreen$ItemStatisticsList.class new file mode 100644 index 000000000..d75a8f030 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/gui/screens/achievement/StatsScreen$ItemStatisticsList.class differ diff --git a/build/_compileJava_2/net/minecraft/client/gui/screens/achievement/StatsScreen$MobsStatisticsList$MobRow.class b/build/_compileJava_2/net/minecraft/client/gui/screens/achievement/StatsScreen$MobsStatisticsList$MobRow.class new file mode 100644 index 000000000..36e9e3f27 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/gui/screens/achievement/StatsScreen$MobsStatisticsList$MobRow.class differ diff --git a/build/_compileJava_2/net/minecraft/client/gui/screens/achievement/StatsScreen$MobsStatisticsList.class b/build/_compileJava_2/net/minecraft/client/gui/screens/achievement/StatsScreen$MobsStatisticsList.class new file mode 100644 index 000000000..84dc98691 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/gui/screens/achievement/StatsScreen$MobsStatisticsList.class differ diff --git a/build/_compileJava_2/net/minecraft/client/gui/screens/achievement/StatsScreen.class b/build/_compileJava_2/net/minecraft/client/gui/screens/achievement/StatsScreen.class new file mode 100644 index 000000000..e9e73353e Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/gui/screens/achievement/StatsScreen.class differ diff --git a/build/_compileJava_2/net/minecraft/client/gui/screens/achievement/StatsUpdateListener.class b/build/_compileJava_2/net/minecraft/client/gui/screens/achievement/StatsUpdateListener.class new file mode 100644 index 000000000..3c35cbc9b Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/gui/screens/achievement/StatsUpdateListener.class differ diff --git a/build/_compileJava_2/net/minecraft/client/gui/screens/achievement/package-info.class b/build/_compileJava_2/net/minecraft/client/gui/screens/achievement/package-info.class new file mode 100644 index 000000000..d9c0beb4d Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/gui/screens/achievement/package-info.class differ diff --git a/build/_compileJava_2/net/minecraft/client/gui/screens/advancements/AdvancementTab.class b/build/_compileJava_2/net/minecraft/client/gui/screens/advancements/AdvancementTab.class new file mode 100644 index 000000000..b1c02b6f2 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/gui/screens/advancements/AdvancementTab.class differ diff --git a/build/_compileJava_2/net/minecraft/client/gui/screens/advancements/AdvancementTabType$1.class b/build/_compileJava_2/net/minecraft/client/gui/screens/advancements/AdvancementTabType$1.class new file mode 100644 index 000000000..a24e26204 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/gui/screens/advancements/AdvancementTabType$1.class differ diff --git a/build/_compileJava_2/net/minecraft/client/gui/screens/advancements/AdvancementTabType.class b/build/_compileJava_2/net/minecraft/client/gui/screens/advancements/AdvancementTabType.class new file mode 100644 index 000000000..cbecb1a2b Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/gui/screens/advancements/AdvancementTabType.class differ diff --git a/build/_compileJava_2/net/minecraft/client/gui/screens/advancements/AdvancementWidget.class b/build/_compileJava_2/net/minecraft/client/gui/screens/advancements/AdvancementWidget.class new file mode 100644 index 000000000..eee25c131 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/gui/screens/advancements/AdvancementWidget.class differ diff --git a/build/_compileJava_2/net/minecraft/client/gui/screens/advancements/AdvancementWidgetType.class b/build/_compileJava_2/net/minecraft/client/gui/screens/advancements/AdvancementWidgetType.class new file mode 100644 index 000000000..878ef2cac Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/gui/screens/advancements/AdvancementWidgetType.class differ diff --git a/build/_compileJava_2/net/minecraft/client/gui/screens/advancements/AdvancementsScreen.class b/build/_compileJava_2/net/minecraft/client/gui/screens/advancements/AdvancementsScreen.class new file mode 100644 index 000000000..d6e22c152 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/gui/screens/advancements/AdvancementsScreen.class differ diff --git a/build/_compileJava_2/net/minecraft/client/gui/screens/advancements/package-info.class b/build/_compileJava_2/net/minecraft/client/gui/screens/advancements/package-info.class new file mode 100644 index 000000000..0cfb1b4b9 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/gui/screens/advancements/package-info.class differ diff --git a/build/_compileJava_2/net/minecraft/client/gui/screens/controls/ControlsScreen.class b/build/_compileJava_2/net/minecraft/client/gui/screens/controls/ControlsScreen.class new file mode 100644 index 000000000..37419899e Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/gui/screens/controls/ControlsScreen.class differ diff --git a/build/_compileJava_2/net/minecraft/client/gui/screens/controls/KeyBindsList$CategoryEntry$1.class b/build/_compileJava_2/net/minecraft/client/gui/screens/controls/KeyBindsList$CategoryEntry$1.class new file mode 100644 index 000000000..1d7380491 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/gui/screens/controls/KeyBindsList$CategoryEntry$1.class differ diff --git a/build/_compileJava_2/net/minecraft/client/gui/screens/controls/KeyBindsList$CategoryEntry.class b/build/_compileJava_2/net/minecraft/client/gui/screens/controls/KeyBindsList$CategoryEntry.class new file mode 100644 index 000000000..5259ab3e1 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/gui/screens/controls/KeyBindsList$CategoryEntry.class differ diff --git a/build/_compileJava_2/net/minecraft/client/gui/screens/controls/KeyBindsList$Entry.class b/build/_compileJava_2/net/minecraft/client/gui/screens/controls/KeyBindsList$Entry.class new file mode 100644 index 000000000..9c2d060b9 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/gui/screens/controls/KeyBindsList$Entry.class differ diff --git a/build/_compileJava_2/net/minecraft/client/gui/screens/controls/KeyBindsList$KeyEntry.class b/build/_compileJava_2/net/minecraft/client/gui/screens/controls/KeyBindsList$KeyEntry.class new file mode 100644 index 000000000..421acc7f9 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/gui/screens/controls/KeyBindsList$KeyEntry.class differ diff --git a/build/_compileJava_2/net/minecraft/client/gui/screens/controls/KeyBindsList.class b/build/_compileJava_2/net/minecraft/client/gui/screens/controls/KeyBindsList.class new file mode 100644 index 000000000..c6be60707 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/gui/screens/controls/KeyBindsList.class differ diff --git a/build/_compileJava_2/net/minecraft/client/gui/screens/controls/KeyBindsScreen.class b/build/_compileJava_2/net/minecraft/client/gui/screens/controls/KeyBindsScreen.class new file mode 100644 index 000000000..6a3273db6 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/gui/screens/controls/KeyBindsScreen.class differ diff --git a/build/_compileJava_2/net/minecraft/client/gui/screens/controls/package-info.class b/build/_compileJava_2/net/minecraft/client/gui/screens/controls/package-info.class new file mode 100644 index 000000000..c39267fb0 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/gui/screens/controls/package-info.class differ diff --git a/build/_compileJava_2/net/minecraft/client/gui/screens/debug/GameModeSwitcherScreen$1.class b/build/_compileJava_2/net/minecraft/client/gui/screens/debug/GameModeSwitcherScreen$1.class new file mode 100644 index 000000000..041702aee Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/gui/screens/debug/GameModeSwitcherScreen$1.class differ diff --git a/build/_compileJava_2/net/minecraft/client/gui/screens/debug/GameModeSwitcherScreen$GameModeIcon.class b/build/_compileJava_2/net/minecraft/client/gui/screens/debug/GameModeSwitcherScreen$GameModeIcon.class new file mode 100644 index 000000000..d5c0f99a3 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/gui/screens/debug/GameModeSwitcherScreen$GameModeIcon.class differ diff --git a/build/_compileJava_2/net/minecraft/client/gui/screens/debug/GameModeSwitcherScreen$GameModeSlot.class b/build/_compileJava_2/net/minecraft/client/gui/screens/debug/GameModeSwitcherScreen$GameModeSlot.class new file mode 100644 index 000000000..db4c3375d Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/gui/screens/debug/GameModeSwitcherScreen$GameModeSlot.class differ diff --git a/build/_compileJava_2/net/minecraft/client/gui/screens/debug/GameModeSwitcherScreen.class b/build/_compileJava_2/net/minecraft/client/gui/screens/debug/GameModeSwitcherScreen.class new file mode 100644 index 000000000..fe5f6cd9b Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/gui/screens/debug/GameModeSwitcherScreen.class differ diff --git a/build/_compileJava_2/net/minecraft/client/gui/screens/debug/package-info.class b/build/_compileJava_2/net/minecraft/client/gui/screens/debug/package-info.class new file mode 100644 index 000000000..788871107 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/gui/screens/debug/package-info.class differ diff --git a/build/_compileJava_2/net/minecraft/client/gui/screens/inventory/AbstractCommandBlockEditScreen$1.class b/build/_compileJava_2/net/minecraft/client/gui/screens/inventory/AbstractCommandBlockEditScreen$1.class new file mode 100644 index 000000000..7fff0ac3e Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/gui/screens/inventory/AbstractCommandBlockEditScreen$1.class differ diff --git a/build/_compileJava_2/net/minecraft/client/gui/screens/inventory/AbstractCommandBlockEditScreen.class b/build/_compileJava_2/net/minecraft/client/gui/screens/inventory/AbstractCommandBlockEditScreen.class new file mode 100644 index 000000000..a379d5d16 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/gui/screens/inventory/AbstractCommandBlockEditScreen.class differ diff --git a/build/_compileJava_2/net/minecraft/client/gui/screens/inventory/AbstractContainerScreen.class b/build/_compileJava_2/net/minecraft/client/gui/screens/inventory/AbstractContainerScreen.class new file mode 100644 index 000000000..45b5fcb95 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/gui/screens/inventory/AbstractContainerScreen.class differ diff --git a/build/_compileJava_2/net/minecraft/client/gui/screens/inventory/AbstractFurnaceScreen.class b/build/_compileJava_2/net/minecraft/client/gui/screens/inventory/AbstractFurnaceScreen.class new file mode 100644 index 000000000..cd53040be Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/gui/screens/inventory/AbstractFurnaceScreen.class differ diff --git a/build/_compileJava_2/net/minecraft/client/gui/screens/inventory/AbstractSignEditScreen.class b/build/_compileJava_2/net/minecraft/client/gui/screens/inventory/AbstractSignEditScreen.class new file mode 100644 index 000000000..1a5a26788 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/gui/screens/inventory/AbstractSignEditScreen.class differ diff --git a/build/_compileJava_2/net/minecraft/client/gui/screens/inventory/AnvilScreen.class b/build/_compileJava_2/net/minecraft/client/gui/screens/inventory/AnvilScreen.class new file mode 100644 index 000000000..24b0a575e Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/gui/screens/inventory/AnvilScreen.class differ diff --git a/build/_compileJava_2/net/minecraft/client/gui/screens/inventory/BeaconScreen$1.class b/build/_compileJava_2/net/minecraft/client/gui/screens/inventory/BeaconScreen$1.class new file mode 100644 index 000000000..861b58056 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/gui/screens/inventory/BeaconScreen$1.class differ diff --git a/build/_compileJava_2/net/minecraft/client/gui/screens/inventory/BeaconScreen$BeaconButton.class b/build/_compileJava_2/net/minecraft/client/gui/screens/inventory/BeaconScreen$BeaconButton.class new file mode 100644 index 000000000..c8710c03f Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/gui/screens/inventory/BeaconScreen$BeaconButton.class differ diff --git a/build/_compileJava_2/net/minecraft/client/gui/screens/inventory/BeaconScreen$BeaconCancelButton.class b/build/_compileJava_2/net/minecraft/client/gui/screens/inventory/BeaconScreen$BeaconCancelButton.class new file mode 100644 index 000000000..a0c346a6f Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/gui/screens/inventory/BeaconScreen$BeaconCancelButton.class differ diff --git a/build/_compileJava_2/net/minecraft/client/gui/screens/inventory/BeaconScreen$BeaconConfirmButton.class b/build/_compileJava_2/net/minecraft/client/gui/screens/inventory/BeaconScreen$BeaconConfirmButton.class new file mode 100644 index 000000000..5056dda3b Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/gui/screens/inventory/BeaconScreen$BeaconConfirmButton.class differ diff --git a/build/_compileJava_2/net/minecraft/client/gui/screens/inventory/BeaconScreen$BeaconPowerButton.class b/build/_compileJava_2/net/minecraft/client/gui/screens/inventory/BeaconScreen$BeaconPowerButton.class new file mode 100644 index 000000000..309aacd2c Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/gui/screens/inventory/BeaconScreen$BeaconPowerButton.class differ diff --git a/build/_compileJava_2/net/minecraft/client/gui/screens/inventory/BeaconScreen$BeaconScreenButton.class b/build/_compileJava_2/net/minecraft/client/gui/screens/inventory/BeaconScreen$BeaconScreenButton.class new file mode 100644 index 000000000..9638dab54 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/gui/screens/inventory/BeaconScreen$BeaconScreenButton.class differ diff --git a/build/_compileJava_2/net/minecraft/client/gui/screens/inventory/BeaconScreen$BeaconSpriteScreenButton.class b/build/_compileJava_2/net/minecraft/client/gui/screens/inventory/BeaconScreen$BeaconSpriteScreenButton.class new file mode 100644 index 000000000..447d8bf33 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/gui/screens/inventory/BeaconScreen$BeaconSpriteScreenButton.class differ diff --git a/build/_compileJava_2/net/minecraft/client/gui/screens/inventory/BeaconScreen$BeaconUpgradePowerButton.class b/build/_compileJava_2/net/minecraft/client/gui/screens/inventory/BeaconScreen$BeaconUpgradePowerButton.class new file mode 100644 index 000000000..3b132ca4d Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/gui/screens/inventory/BeaconScreen$BeaconUpgradePowerButton.class differ diff --git a/build/_compileJava_2/net/minecraft/client/gui/screens/inventory/BeaconScreen.class b/build/_compileJava_2/net/minecraft/client/gui/screens/inventory/BeaconScreen.class new file mode 100644 index 000000000..e6ec8ffc9 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/gui/screens/inventory/BeaconScreen.class differ diff --git a/build/_compileJava_2/net/minecraft/client/gui/screens/inventory/BlastFurnaceScreen.class b/build/_compileJava_2/net/minecraft/client/gui/screens/inventory/BlastFurnaceScreen.class new file mode 100644 index 000000000..b325a11a4 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/gui/screens/inventory/BlastFurnaceScreen.class differ diff --git a/build/_compileJava_2/net/minecraft/client/gui/screens/inventory/BookEditScreen$DisplayCache.class b/build/_compileJava_2/net/minecraft/client/gui/screens/inventory/BookEditScreen$DisplayCache.class new file mode 100644 index 000000000..c9d761c8b Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/gui/screens/inventory/BookEditScreen$DisplayCache.class differ diff --git a/build/_compileJava_2/net/minecraft/client/gui/screens/inventory/BookEditScreen$LineInfo.class b/build/_compileJava_2/net/minecraft/client/gui/screens/inventory/BookEditScreen$LineInfo.class new file mode 100644 index 000000000..e018ecd39 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/gui/screens/inventory/BookEditScreen$LineInfo.class differ diff --git a/build/_compileJava_2/net/minecraft/client/gui/screens/inventory/BookEditScreen$Pos2i.class b/build/_compileJava_2/net/minecraft/client/gui/screens/inventory/BookEditScreen$Pos2i.class new file mode 100644 index 000000000..db8c4d17e Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/gui/screens/inventory/BookEditScreen$Pos2i.class differ diff --git a/build/_compileJava_2/net/minecraft/client/gui/screens/inventory/BookEditScreen.class b/build/_compileJava_2/net/minecraft/client/gui/screens/inventory/BookEditScreen.class new file mode 100644 index 000000000..858211912 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/gui/screens/inventory/BookEditScreen.class differ diff --git a/build/_compileJava_2/net/minecraft/client/gui/screens/inventory/BookViewScreen$1.class b/build/_compileJava_2/net/minecraft/client/gui/screens/inventory/BookViewScreen$1.class new file mode 100644 index 000000000..8ce2ada28 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/gui/screens/inventory/BookViewScreen$1.class differ diff --git a/build/_compileJava_2/net/minecraft/client/gui/screens/inventory/BookViewScreen$BookAccess.class b/build/_compileJava_2/net/minecraft/client/gui/screens/inventory/BookViewScreen$BookAccess.class new file mode 100644 index 000000000..392b9fe4c Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/gui/screens/inventory/BookViewScreen$BookAccess.class differ diff --git a/build/_compileJava_2/net/minecraft/client/gui/screens/inventory/BookViewScreen$WritableBookAccess.class b/build/_compileJava_2/net/minecraft/client/gui/screens/inventory/BookViewScreen$WritableBookAccess.class new file mode 100644 index 000000000..a7c746ccc Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/gui/screens/inventory/BookViewScreen$WritableBookAccess.class differ diff --git a/build/_compileJava_2/net/minecraft/client/gui/screens/inventory/BookViewScreen$WrittenBookAccess.class b/build/_compileJava_2/net/minecraft/client/gui/screens/inventory/BookViewScreen$WrittenBookAccess.class new file mode 100644 index 000000000..57244121a Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/gui/screens/inventory/BookViewScreen$WrittenBookAccess.class differ diff --git a/build/_compileJava_2/net/minecraft/client/gui/screens/inventory/BookViewScreen.class b/build/_compileJava_2/net/minecraft/client/gui/screens/inventory/BookViewScreen.class new file mode 100644 index 000000000..76f4c0342 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/gui/screens/inventory/BookViewScreen.class differ diff --git a/build/_compileJava_2/net/minecraft/client/gui/screens/inventory/BrewingStandScreen.class b/build/_compileJava_2/net/minecraft/client/gui/screens/inventory/BrewingStandScreen.class new file mode 100644 index 000000000..ed6972497 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/gui/screens/inventory/BrewingStandScreen.class differ diff --git a/build/_compileJava_2/net/minecraft/client/gui/screens/inventory/CartographyTableScreen.class b/build/_compileJava_2/net/minecraft/client/gui/screens/inventory/CartographyTableScreen.class new file mode 100644 index 000000000..f988c3ec8 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/gui/screens/inventory/CartographyTableScreen.class differ diff --git a/build/_compileJava_2/net/minecraft/client/gui/screens/inventory/CommandBlockEditScreen$1.class b/build/_compileJava_2/net/minecraft/client/gui/screens/inventory/CommandBlockEditScreen$1.class new file mode 100644 index 000000000..f86d68d5f Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/gui/screens/inventory/CommandBlockEditScreen$1.class differ diff --git a/build/_compileJava_2/net/minecraft/client/gui/screens/inventory/CommandBlockEditScreen.class b/build/_compileJava_2/net/minecraft/client/gui/screens/inventory/CommandBlockEditScreen.class new file mode 100644 index 000000000..228364469 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/gui/screens/inventory/CommandBlockEditScreen.class differ diff --git a/build/_compileJava_2/net/minecraft/client/gui/screens/inventory/ContainerScreen.class b/build/_compileJava_2/net/minecraft/client/gui/screens/inventory/ContainerScreen.class new file mode 100644 index 000000000..fcac0c3cd Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/gui/screens/inventory/ContainerScreen.class differ diff --git a/build/_compileJava_2/net/minecraft/client/gui/screens/inventory/CraftingScreen.class b/build/_compileJava_2/net/minecraft/client/gui/screens/inventory/CraftingScreen.class new file mode 100644 index 000000000..9f955281d Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/gui/screens/inventory/CraftingScreen.class differ diff --git a/build/_compileJava_2/net/minecraft/client/gui/screens/inventory/CreativeInventoryListener.class b/build/_compileJava_2/net/minecraft/client/gui/screens/inventory/CreativeInventoryListener.class new file mode 100644 index 000000000..2a5bfd64b Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/gui/screens/inventory/CreativeInventoryListener.class differ diff --git a/build/_compileJava_2/net/minecraft/client/gui/screens/inventory/CreativeModeInventoryScreen$CustomCreativeSlot.class b/build/_compileJava_2/net/minecraft/client/gui/screens/inventory/CreativeModeInventoryScreen$CustomCreativeSlot.class new file mode 100644 index 000000000..de662a87f Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/gui/screens/inventory/CreativeModeInventoryScreen$CustomCreativeSlot.class differ diff --git a/build/_compileJava_2/net/minecraft/client/gui/screens/inventory/CreativeModeInventoryScreen$ItemPickerMenu.class b/build/_compileJava_2/net/minecraft/client/gui/screens/inventory/CreativeModeInventoryScreen$ItemPickerMenu.class new file mode 100644 index 000000000..8e35fd50e Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/gui/screens/inventory/CreativeModeInventoryScreen$ItemPickerMenu.class differ diff --git a/build/_compileJava_2/net/minecraft/client/gui/screens/inventory/CreativeModeInventoryScreen$SlotWrapper.class b/build/_compileJava_2/net/minecraft/client/gui/screens/inventory/CreativeModeInventoryScreen$SlotWrapper.class new file mode 100644 index 000000000..537b6fd4f Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/gui/screens/inventory/CreativeModeInventoryScreen$SlotWrapper.class differ diff --git a/build/_compileJava_2/net/minecraft/client/gui/screens/inventory/CreativeModeInventoryScreen.class b/build/_compileJava_2/net/minecraft/client/gui/screens/inventory/CreativeModeInventoryScreen.class new file mode 100644 index 000000000..20314e52b Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/gui/screens/inventory/CreativeModeInventoryScreen.class differ diff --git a/build/_compileJava_2/net/minecraft/client/gui/screens/inventory/CyclingSlotBackground.class b/build/_compileJava_2/net/minecraft/client/gui/screens/inventory/CyclingSlotBackground.class new file mode 100644 index 000000000..324bea347 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/gui/screens/inventory/CyclingSlotBackground.class differ diff --git a/build/_compileJava_2/net/minecraft/client/gui/screens/inventory/DispenserScreen.class b/build/_compileJava_2/net/minecraft/client/gui/screens/inventory/DispenserScreen.class new file mode 100644 index 000000000..72d158455 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/gui/screens/inventory/DispenserScreen.class differ diff --git a/build/_compileJava_2/net/minecraft/client/gui/screens/inventory/EffectRenderingInventoryScreen.class b/build/_compileJava_2/net/minecraft/client/gui/screens/inventory/EffectRenderingInventoryScreen.class new file mode 100644 index 000000000..a37f4d956 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/gui/screens/inventory/EffectRenderingInventoryScreen.class differ diff --git a/build/_compileJava_2/net/minecraft/client/gui/screens/inventory/EnchantmentNames.class b/build/_compileJava_2/net/minecraft/client/gui/screens/inventory/EnchantmentNames.class new file mode 100644 index 000000000..62c1154fa Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/gui/screens/inventory/EnchantmentNames.class differ diff --git a/build/_compileJava_2/net/minecraft/client/gui/screens/inventory/EnchantmentScreen.class b/build/_compileJava_2/net/minecraft/client/gui/screens/inventory/EnchantmentScreen.class new file mode 100644 index 000000000..3ead8aa8a Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/gui/screens/inventory/EnchantmentScreen.class differ diff --git a/build/_compileJava_2/net/minecraft/client/gui/screens/inventory/FurnaceScreen.class b/build/_compileJava_2/net/minecraft/client/gui/screens/inventory/FurnaceScreen.class new file mode 100644 index 000000000..45946bbb3 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/gui/screens/inventory/FurnaceScreen.class differ diff --git a/build/_compileJava_2/net/minecraft/client/gui/screens/inventory/GrindstoneScreen.class b/build/_compileJava_2/net/minecraft/client/gui/screens/inventory/GrindstoneScreen.class new file mode 100644 index 000000000..13f230d54 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/gui/screens/inventory/GrindstoneScreen.class differ diff --git a/build/_compileJava_2/net/minecraft/client/gui/screens/inventory/HangingSignEditScreen.class b/build/_compileJava_2/net/minecraft/client/gui/screens/inventory/HangingSignEditScreen.class new file mode 100644 index 000000000..f30b87253 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/gui/screens/inventory/HangingSignEditScreen.class differ diff --git a/build/_compileJava_2/net/minecraft/client/gui/screens/inventory/HopperScreen.class b/build/_compileJava_2/net/minecraft/client/gui/screens/inventory/HopperScreen.class new file mode 100644 index 000000000..8f813d53f Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/gui/screens/inventory/HopperScreen.class differ diff --git a/build/_compileJava_2/net/minecraft/client/gui/screens/inventory/HorseInventoryScreen.class b/build/_compileJava_2/net/minecraft/client/gui/screens/inventory/HorseInventoryScreen.class new file mode 100644 index 000000000..74c90a8c5 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/gui/screens/inventory/HorseInventoryScreen.class differ diff --git a/build/_compileJava_2/net/minecraft/client/gui/screens/inventory/InventoryScreen.class b/build/_compileJava_2/net/minecraft/client/gui/screens/inventory/InventoryScreen.class new file mode 100644 index 000000000..993743dac Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/gui/screens/inventory/InventoryScreen.class differ diff --git a/build/_compileJava_2/net/minecraft/client/gui/screens/inventory/ItemCombinerScreen.class b/build/_compileJava_2/net/minecraft/client/gui/screens/inventory/ItemCombinerScreen.class new file mode 100644 index 000000000..0e65bb866 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/gui/screens/inventory/ItemCombinerScreen.class differ diff --git a/build/_compileJava_2/net/minecraft/client/gui/screens/inventory/JigsawBlockEditScreen$1.class b/build/_compileJava_2/net/minecraft/client/gui/screens/inventory/JigsawBlockEditScreen$1.class new file mode 100644 index 000000000..a34345db1 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/gui/screens/inventory/JigsawBlockEditScreen$1.class differ diff --git a/build/_compileJava_2/net/minecraft/client/gui/screens/inventory/JigsawBlockEditScreen.class b/build/_compileJava_2/net/minecraft/client/gui/screens/inventory/JigsawBlockEditScreen.class new file mode 100644 index 000000000..b25311b56 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/gui/screens/inventory/JigsawBlockEditScreen.class differ diff --git a/build/_compileJava_2/net/minecraft/client/gui/screens/inventory/LecternScreen$1.class b/build/_compileJava_2/net/minecraft/client/gui/screens/inventory/LecternScreen$1.class new file mode 100644 index 000000000..e3e92d5b0 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/gui/screens/inventory/LecternScreen$1.class differ diff --git a/build/_compileJava_2/net/minecraft/client/gui/screens/inventory/LecternScreen.class b/build/_compileJava_2/net/minecraft/client/gui/screens/inventory/LecternScreen.class new file mode 100644 index 000000000..c2a9f67cb Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/gui/screens/inventory/LecternScreen.class differ diff --git a/build/_compileJava_2/net/minecraft/client/gui/screens/inventory/LoomScreen.class b/build/_compileJava_2/net/minecraft/client/gui/screens/inventory/LoomScreen.class new file mode 100644 index 000000000..d2fcbeb85 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/gui/screens/inventory/LoomScreen.class differ diff --git a/build/_compileJava_2/net/minecraft/client/gui/screens/inventory/MenuAccess.class b/build/_compileJava_2/net/minecraft/client/gui/screens/inventory/MenuAccess.class new file mode 100644 index 000000000..d983eef9a Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/gui/screens/inventory/MenuAccess.class differ diff --git a/build/_compileJava_2/net/minecraft/client/gui/screens/inventory/MerchantScreen$TradeOfferButton.class b/build/_compileJava_2/net/minecraft/client/gui/screens/inventory/MerchantScreen$TradeOfferButton.class new file mode 100644 index 000000000..4e2f18289 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/gui/screens/inventory/MerchantScreen$TradeOfferButton.class differ diff --git a/build/_compileJava_2/net/minecraft/client/gui/screens/inventory/MerchantScreen.class b/build/_compileJava_2/net/minecraft/client/gui/screens/inventory/MerchantScreen.class new file mode 100644 index 000000000..92506b4ab Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/gui/screens/inventory/MerchantScreen.class differ diff --git a/build/_compileJava_2/net/minecraft/client/gui/screens/inventory/MinecartCommandBlockEditScreen.class b/build/_compileJava_2/net/minecraft/client/gui/screens/inventory/MinecartCommandBlockEditScreen.class new file mode 100644 index 000000000..ca4614bcd Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/gui/screens/inventory/MinecartCommandBlockEditScreen.class differ diff --git a/build/_compileJava_2/net/minecraft/client/gui/screens/inventory/PageButton.class b/build/_compileJava_2/net/minecraft/client/gui/screens/inventory/PageButton.class new file mode 100644 index 000000000..2f983b145 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/gui/screens/inventory/PageButton.class differ diff --git a/build/_compileJava_2/net/minecraft/client/gui/screens/inventory/ShulkerBoxScreen.class b/build/_compileJava_2/net/minecraft/client/gui/screens/inventory/ShulkerBoxScreen.class new file mode 100644 index 000000000..454dc2626 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/gui/screens/inventory/ShulkerBoxScreen.class differ diff --git a/build/_compileJava_2/net/minecraft/client/gui/screens/inventory/SignEditScreen.class b/build/_compileJava_2/net/minecraft/client/gui/screens/inventory/SignEditScreen.class new file mode 100644 index 000000000..31f07b9e0 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/gui/screens/inventory/SignEditScreen.class differ diff --git a/build/_compileJava_2/net/minecraft/client/gui/screens/inventory/SmithingScreen.class b/build/_compileJava_2/net/minecraft/client/gui/screens/inventory/SmithingScreen.class new file mode 100644 index 000000000..013ec12dd Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/gui/screens/inventory/SmithingScreen.class differ diff --git a/build/_compileJava_2/net/minecraft/client/gui/screens/inventory/SmokerScreen.class b/build/_compileJava_2/net/minecraft/client/gui/screens/inventory/SmokerScreen.class new file mode 100644 index 000000000..9edfac058 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/gui/screens/inventory/SmokerScreen.class differ diff --git a/build/_compileJava_2/net/minecraft/client/gui/screens/inventory/StonecutterScreen.class b/build/_compileJava_2/net/minecraft/client/gui/screens/inventory/StonecutterScreen.class new file mode 100644 index 000000000..e98f30d7c Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/gui/screens/inventory/StonecutterScreen.class differ diff --git a/build/_compileJava_2/net/minecraft/client/gui/screens/inventory/StructureBlockEditScreen$1.class b/build/_compileJava_2/net/minecraft/client/gui/screens/inventory/StructureBlockEditScreen$1.class new file mode 100644 index 000000000..b5ad02b3f Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/gui/screens/inventory/StructureBlockEditScreen$1.class differ diff --git a/build/_compileJava_2/net/minecraft/client/gui/screens/inventory/StructureBlockEditScreen$2.class b/build/_compileJava_2/net/minecraft/client/gui/screens/inventory/StructureBlockEditScreen$2.class new file mode 100644 index 000000000..d3657d2f4 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/gui/screens/inventory/StructureBlockEditScreen$2.class differ diff --git a/build/_compileJava_2/net/minecraft/client/gui/screens/inventory/StructureBlockEditScreen.class b/build/_compileJava_2/net/minecraft/client/gui/screens/inventory/StructureBlockEditScreen.class new file mode 100644 index 000000000..12a187c9b Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/gui/screens/inventory/StructureBlockEditScreen.class differ diff --git a/build/_compileJava_2/net/minecraft/client/gui/screens/inventory/package-info.class b/build/_compileJava_2/net/minecraft/client/gui/screens/inventory/package-info.class new file mode 100644 index 000000000..eaef9e221 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/gui/screens/inventory/package-info.class differ diff --git a/build/_compileJava_2/net/minecraft/client/gui/screens/inventory/tooltip/BelowOrAboveWidgetTooltipPositioner.class b/build/_compileJava_2/net/minecraft/client/gui/screens/inventory/tooltip/BelowOrAboveWidgetTooltipPositioner.class new file mode 100644 index 000000000..b3821bda3 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/gui/screens/inventory/tooltip/BelowOrAboveWidgetTooltipPositioner.class differ diff --git a/build/_compileJava_2/net/minecraft/client/gui/screens/inventory/tooltip/ClientBundleTooltip$Texture.class b/build/_compileJava_2/net/minecraft/client/gui/screens/inventory/tooltip/ClientBundleTooltip$Texture.class new file mode 100644 index 000000000..fb387fd79 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/gui/screens/inventory/tooltip/ClientBundleTooltip$Texture.class differ diff --git a/build/_compileJava_2/net/minecraft/client/gui/screens/inventory/tooltip/ClientBundleTooltip.class b/build/_compileJava_2/net/minecraft/client/gui/screens/inventory/tooltip/ClientBundleTooltip.class new file mode 100644 index 000000000..45719edec Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/gui/screens/inventory/tooltip/ClientBundleTooltip.class differ diff --git a/build/_compileJava_2/net/minecraft/client/gui/screens/inventory/tooltip/ClientTextTooltip.class b/build/_compileJava_2/net/minecraft/client/gui/screens/inventory/tooltip/ClientTextTooltip.class new file mode 100644 index 000000000..d0b7b5423 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/gui/screens/inventory/tooltip/ClientTextTooltip.class differ diff --git a/build/_compileJava_2/net/minecraft/client/gui/screens/inventory/tooltip/ClientTooltipComponent.class b/build/_compileJava_2/net/minecraft/client/gui/screens/inventory/tooltip/ClientTooltipComponent.class new file mode 100644 index 000000000..90a510b24 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/gui/screens/inventory/tooltip/ClientTooltipComponent.class differ diff --git a/build/_compileJava_2/net/minecraft/client/gui/screens/inventory/tooltip/ClientTooltipPositioner.class b/build/_compileJava_2/net/minecraft/client/gui/screens/inventory/tooltip/ClientTooltipPositioner.class new file mode 100644 index 000000000..b8bca3f8f Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/gui/screens/inventory/tooltip/ClientTooltipPositioner.class differ diff --git a/build/_compileJava_2/net/minecraft/client/gui/screens/inventory/tooltip/DefaultTooltipPositioner.class b/build/_compileJava_2/net/minecraft/client/gui/screens/inventory/tooltip/DefaultTooltipPositioner.class new file mode 100644 index 000000000..63adfcf4f Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/gui/screens/inventory/tooltip/DefaultTooltipPositioner.class differ diff --git a/build/_compileJava_2/net/minecraft/client/gui/screens/inventory/tooltip/MenuTooltipPositioner.class b/build/_compileJava_2/net/minecraft/client/gui/screens/inventory/tooltip/MenuTooltipPositioner.class new file mode 100644 index 000000000..f26a8967b Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/gui/screens/inventory/tooltip/MenuTooltipPositioner.class differ diff --git a/build/_compileJava_2/net/minecraft/client/gui/screens/inventory/tooltip/TooltipRenderUtil.class b/build/_compileJava_2/net/minecraft/client/gui/screens/inventory/tooltip/TooltipRenderUtil.class new file mode 100644 index 000000000..50f5fe2c2 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/gui/screens/inventory/tooltip/TooltipRenderUtil.class differ diff --git a/build/_compileJava_2/net/minecraft/client/gui/screens/inventory/tooltip/package-info.class b/build/_compileJava_2/net/minecraft/client/gui/screens/inventory/tooltip/package-info.class new file mode 100644 index 000000000..830d71fa0 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/gui/screens/inventory/tooltip/package-info.class differ diff --git a/build/_compileJava_2/net/minecraft/client/gui/screens/multiplayer/JoinMultiplayerScreen.class b/build/_compileJava_2/net/minecraft/client/gui/screens/multiplayer/JoinMultiplayerScreen.class new file mode 100644 index 000000000..9620997de Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/gui/screens/multiplayer/JoinMultiplayerScreen.class differ diff --git a/build/_compileJava_2/net/minecraft/client/gui/screens/multiplayer/Realms32bitWarningScreen.class b/build/_compileJava_2/net/minecraft/client/gui/screens/multiplayer/Realms32bitWarningScreen.class new file mode 100644 index 000000000..d668c202b Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/gui/screens/multiplayer/Realms32bitWarningScreen.class differ diff --git a/build/_compileJava_2/net/minecraft/client/gui/screens/multiplayer/SafetyScreen.class b/build/_compileJava_2/net/minecraft/client/gui/screens/multiplayer/SafetyScreen.class new file mode 100644 index 000000000..e1664df16 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/gui/screens/multiplayer/SafetyScreen.class differ diff --git a/build/_compileJava_2/net/minecraft/client/gui/screens/multiplayer/ServerSelectionList$Entry.class b/build/_compileJava_2/net/minecraft/client/gui/screens/multiplayer/ServerSelectionList$Entry.class new file mode 100644 index 000000000..0e45a253c Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/gui/screens/multiplayer/ServerSelectionList$Entry.class differ diff --git a/build/_compileJava_2/net/minecraft/client/gui/screens/multiplayer/ServerSelectionList$LANHeader.class b/build/_compileJava_2/net/minecraft/client/gui/screens/multiplayer/ServerSelectionList$LANHeader.class new file mode 100644 index 000000000..3f46dd6a0 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/gui/screens/multiplayer/ServerSelectionList$LANHeader.class differ diff --git a/build/_compileJava_2/net/minecraft/client/gui/screens/multiplayer/ServerSelectionList$NetworkServerEntry.class b/build/_compileJava_2/net/minecraft/client/gui/screens/multiplayer/ServerSelectionList$NetworkServerEntry.class new file mode 100644 index 000000000..bf0757547 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/gui/screens/multiplayer/ServerSelectionList$NetworkServerEntry.class differ diff --git a/build/_compileJava_2/net/minecraft/client/gui/screens/multiplayer/ServerSelectionList$OnlineServerEntry.class b/build/_compileJava_2/net/minecraft/client/gui/screens/multiplayer/ServerSelectionList$OnlineServerEntry.class new file mode 100644 index 000000000..0c2cbca30 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/gui/screens/multiplayer/ServerSelectionList$OnlineServerEntry.class differ diff --git a/build/_compileJava_2/net/minecraft/client/gui/screens/multiplayer/ServerSelectionList.class b/build/_compileJava_2/net/minecraft/client/gui/screens/multiplayer/ServerSelectionList.class new file mode 100644 index 000000000..e6939bf3d Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/gui/screens/multiplayer/ServerSelectionList.class differ diff --git a/build/_compileJava_2/net/minecraft/client/gui/screens/multiplayer/WarningScreen.class b/build/_compileJava_2/net/minecraft/client/gui/screens/multiplayer/WarningScreen.class new file mode 100644 index 000000000..f5dfaf811 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/gui/screens/multiplayer/WarningScreen.class differ diff --git a/build/_compileJava_2/net/minecraft/client/gui/screens/multiplayer/package-info.class b/build/_compileJava_2/net/minecraft/client/gui/screens/multiplayer/package-info.class new file mode 100644 index 000000000..30967b2bc Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/gui/screens/multiplayer/package-info.class differ diff --git a/build/_compileJava_2/net/minecraft/client/gui/screens/package-info.class b/build/_compileJava_2/net/minecraft/client/gui/screens/package-info.class new file mode 100644 index 000000000..9d4696815 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/gui/screens/package-info.class differ diff --git a/build/_compileJava_2/net/minecraft/client/gui/screens/packs/PackSelectionModel$Entry.class b/build/_compileJava_2/net/minecraft/client/gui/screens/packs/PackSelectionModel$Entry.class new file mode 100644 index 000000000..77e027021 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/gui/screens/packs/PackSelectionModel$Entry.class differ diff --git a/build/_compileJava_2/net/minecraft/client/gui/screens/packs/PackSelectionModel$EntryBase.class b/build/_compileJava_2/net/minecraft/client/gui/screens/packs/PackSelectionModel$EntryBase.class new file mode 100644 index 000000000..6a562a18b Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/gui/screens/packs/PackSelectionModel$EntryBase.class differ diff --git a/build/_compileJava_2/net/minecraft/client/gui/screens/packs/PackSelectionModel$SelectedPackEntry.class b/build/_compileJava_2/net/minecraft/client/gui/screens/packs/PackSelectionModel$SelectedPackEntry.class new file mode 100644 index 000000000..dce08bca3 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/gui/screens/packs/PackSelectionModel$SelectedPackEntry.class differ diff --git a/build/_compileJava_2/net/minecraft/client/gui/screens/packs/PackSelectionModel$UnselectedPackEntry.class b/build/_compileJava_2/net/minecraft/client/gui/screens/packs/PackSelectionModel$UnselectedPackEntry.class new file mode 100644 index 000000000..e9cf84957 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/gui/screens/packs/PackSelectionModel$UnselectedPackEntry.class differ diff --git a/build/_compileJava_2/net/minecraft/client/gui/screens/packs/PackSelectionModel.class b/build/_compileJava_2/net/minecraft/client/gui/screens/packs/PackSelectionModel.class new file mode 100644 index 000000000..1479c6db2 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/gui/screens/packs/PackSelectionModel.class differ diff --git a/build/_compileJava_2/net/minecraft/client/gui/screens/packs/PackSelectionScreen$Watcher.class b/build/_compileJava_2/net/minecraft/client/gui/screens/packs/PackSelectionScreen$Watcher.class new file mode 100644 index 000000000..320f7d78c Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/gui/screens/packs/PackSelectionScreen$Watcher.class differ diff --git a/build/_compileJava_2/net/minecraft/client/gui/screens/packs/PackSelectionScreen.class b/build/_compileJava_2/net/minecraft/client/gui/screens/packs/PackSelectionScreen.class new file mode 100644 index 000000000..19d01f559 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/gui/screens/packs/PackSelectionScreen.class differ diff --git a/build/_compileJava_2/net/minecraft/client/gui/screens/packs/TransferableSelectionList$PackEntry.class b/build/_compileJava_2/net/minecraft/client/gui/screens/packs/TransferableSelectionList$PackEntry.class new file mode 100644 index 000000000..0d56f9993 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/gui/screens/packs/TransferableSelectionList$PackEntry.class differ diff --git a/build/_compileJava_2/net/minecraft/client/gui/screens/packs/TransferableSelectionList.class b/build/_compileJava_2/net/minecraft/client/gui/screens/packs/TransferableSelectionList.class new file mode 100644 index 000000000..4c40d3157 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/gui/screens/packs/TransferableSelectionList.class differ diff --git a/build/_compileJava_2/net/minecraft/client/gui/screens/packs/package-info.class b/build/_compileJava_2/net/minecraft/client/gui/screens/packs/package-info.class new file mode 100644 index 000000000..b12205aeb Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/gui/screens/packs/package-info.class differ diff --git a/build/_compileJava_2/net/minecraft/client/gui/screens/recipebook/AbstractFurnaceRecipeBookComponent.class b/build/_compileJava_2/net/minecraft/client/gui/screens/recipebook/AbstractFurnaceRecipeBookComponent.class new file mode 100644 index 000000000..2f2a5e6d3 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/gui/screens/recipebook/AbstractFurnaceRecipeBookComponent.class differ diff --git a/build/_compileJava_2/net/minecraft/client/gui/screens/recipebook/BlastingRecipeBookComponent.class b/build/_compileJava_2/net/minecraft/client/gui/screens/recipebook/BlastingRecipeBookComponent.class new file mode 100644 index 000000000..09318ebe7 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/gui/screens/recipebook/BlastingRecipeBookComponent.class differ diff --git a/build/_compileJava_2/net/minecraft/client/gui/screens/recipebook/GhostRecipe$GhostIngredient.class b/build/_compileJava_2/net/minecraft/client/gui/screens/recipebook/GhostRecipe$GhostIngredient.class new file mode 100644 index 000000000..42a12c5cd Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/gui/screens/recipebook/GhostRecipe$GhostIngredient.class differ diff --git a/build/_compileJava_2/net/minecraft/client/gui/screens/recipebook/GhostRecipe.class b/build/_compileJava_2/net/minecraft/client/gui/screens/recipebook/GhostRecipe.class new file mode 100644 index 000000000..9981e33e0 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/gui/screens/recipebook/GhostRecipe.class differ diff --git a/build/_compileJava_2/net/minecraft/client/gui/screens/recipebook/OverlayRecipeComponent$OverlayRecipeButton$Pos.class b/build/_compileJava_2/net/minecraft/client/gui/screens/recipebook/OverlayRecipeComponent$OverlayRecipeButton$Pos.class new file mode 100644 index 000000000..f3cc2690a Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/gui/screens/recipebook/OverlayRecipeComponent$OverlayRecipeButton$Pos.class differ diff --git a/build/_compileJava_2/net/minecraft/client/gui/screens/recipebook/OverlayRecipeComponent$OverlayRecipeButton.class b/build/_compileJava_2/net/minecraft/client/gui/screens/recipebook/OverlayRecipeComponent$OverlayRecipeButton.class new file mode 100644 index 000000000..2897fcf90 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/gui/screens/recipebook/OverlayRecipeComponent$OverlayRecipeButton.class differ diff --git a/build/_compileJava_2/net/minecraft/client/gui/screens/recipebook/OverlayRecipeComponent$OverlaySmeltingRecipeButton.class b/build/_compileJava_2/net/minecraft/client/gui/screens/recipebook/OverlayRecipeComponent$OverlaySmeltingRecipeButton.class new file mode 100644 index 000000000..86836c86e Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/gui/screens/recipebook/OverlayRecipeComponent$OverlaySmeltingRecipeButton.class differ diff --git a/build/_compileJava_2/net/minecraft/client/gui/screens/recipebook/OverlayRecipeComponent.class b/build/_compileJava_2/net/minecraft/client/gui/screens/recipebook/OverlayRecipeComponent.class new file mode 100644 index 000000000..1187f8ad5 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/gui/screens/recipebook/OverlayRecipeComponent.class differ diff --git a/build/_compileJava_2/net/minecraft/client/gui/screens/recipebook/RecipeBookComponent.class b/build/_compileJava_2/net/minecraft/client/gui/screens/recipebook/RecipeBookComponent.class new file mode 100644 index 000000000..ec0bafa47 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/gui/screens/recipebook/RecipeBookComponent.class differ diff --git a/build/_compileJava_2/net/minecraft/client/gui/screens/recipebook/RecipeBookPage.class b/build/_compileJava_2/net/minecraft/client/gui/screens/recipebook/RecipeBookPage.class new file mode 100644 index 000000000..02c6ce319 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/gui/screens/recipebook/RecipeBookPage.class differ diff --git a/build/_compileJava_2/net/minecraft/client/gui/screens/recipebook/RecipeBookTabButton.class b/build/_compileJava_2/net/minecraft/client/gui/screens/recipebook/RecipeBookTabButton.class new file mode 100644 index 000000000..9baa5d93c Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/gui/screens/recipebook/RecipeBookTabButton.class differ diff --git a/build/_compileJava_2/net/minecraft/client/gui/screens/recipebook/RecipeButton.class b/build/_compileJava_2/net/minecraft/client/gui/screens/recipebook/RecipeButton.class new file mode 100644 index 000000000..25186bb2a Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/gui/screens/recipebook/RecipeButton.class differ diff --git a/build/_compileJava_2/net/minecraft/client/gui/screens/recipebook/RecipeCollection.class b/build/_compileJava_2/net/minecraft/client/gui/screens/recipebook/RecipeCollection.class new file mode 100644 index 000000000..c8dbedefb Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/gui/screens/recipebook/RecipeCollection.class differ diff --git a/build/_compileJava_2/net/minecraft/client/gui/screens/recipebook/RecipeShownListener.class b/build/_compileJava_2/net/minecraft/client/gui/screens/recipebook/RecipeShownListener.class new file mode 100644 index 000000000..eac7d85a2 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/gui/screens/recipebook/RecipeShownListener.class differ diff --git a/build/_compileJava_2/net/minecraft/client/gui/screens/recipebook/RecipeUpdateListener.class b/build/_compileJava_2/net/minecraft/client/gui/screens/recipebook/RecipeUpdateListener.class new file mode 100644 index 000000000..a30d6ae6e Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/gui/screens/recipebook/RecipeUpdateListener.class differ diff --git a/build/_compileJava_2/net/minecraft/client/gui/screens/recipebook/SmeltingRecipeBookComponent.class b/build/_compileJava_2/net/minecraft/client/gui/screens/recipebook/SmeltingRecipeBookComponent.class new file mode 100644 index 000000000..4d873fe29 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/gui/screens/recipebook/SmeltingRecipeBookComponent.class differ diff --git a/build/_compileJava_2/net/minecraft/client/gui/screens/recipebook/SmokingRecipeBookComponent.class b/build/_compileJava_2/net/minecraft/client/gui/screens/recipebook/SmokingRecipeBookComponent.class new file mode 100644 index 000000000..7325ae73b Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/gui/screens/recipebook/SmokingRecipeBookComponent.class differ diff --git a/build/_compileJava_2/net/minecraft/client/gui/screens/recipebook/package-info.class b/build/_compileJava_2/net/minecraft/client/gui/screens/recipebook/package-info.class new file mode 100644 index 000000000..bb8691ac9 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/gui/screens/recipebook/package-info.class differ diff --git a/build/_compileJava_2/net/minecraft/client/gui/screens/reporting/ChatReportScreen$DiscardReportWarningScreen.class b/build/_compileJava_2/net/minecraft/client/gui/screens/reporting/ChatReportScreen$DiscardReportWarningScreen.class new file mode 100644 index 000000000..327c70c42 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/gui/screens/reporting/ChatReportScreen$DiscardReportWarningScreen.class differ diff --git a/build/_compileJava_2/net/minecraft/client/gui/screens/reporting/ChatReportScreen.class b/build/_compileJava_2/net/minecraft/client/gui/screens/reporting/ChatReportScreen.class new file mode 100644 index 000000000..210395211 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/gui/screens/reporting/ChatReportScreen.class differ diff --git a/build/_compileJava_2/net/minecraft/client/gui/screens/reporting/ChatSelectionLogFiller$Output.class b/build/_compileJava_2/net/minecraft/client/gui/screens/reporting/ChatSelectionLogFiller$Output.class new file mode 100644 index 000000000..8f7b96bef Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/gui/screens/reporting/ChatSelectionLogFiller$Output.class differ diff --git a/build/_compileJava_2/net/minecraft/client/gui/screens/reporting/ChatSelectionLogFiller.class b/build/_compileJava_2/net/minecraft/client/gui/screens/reporting/ChatSelectionLogFiller.class new file mode 100644 index 000000000..f4fcb08e9 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/gui/screens/reporting/ChatSelectionLogFiller.class differ diff --git a/build/_compileJava_2/net/minecraft/client/gui/screens/reporting/ChatSelectionScreen$ChatSelectionList$DividerEntry.class b/build/_compileJava_2/net/minecraft/client/gui/screens/reporting/ChatSelectionScreen$ChatSelectionList$DividerEntry.class new file mode 100644 index 000000000..9e41c2a70 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/gui/screens/reporting/ChatSelectionScreen$ChatSelectionList$DividerEntry.class differ diff --git a/build/_compileJava_2/net/minecraft/client/gui/screens/reporting/ChatSelectionScreen$ChatSelectionList$Entry.class b/build/_compileJava_2/net/minecraft/client/gui/screens/reporting/ChatSelectionScreen$ChatSelectionList$Entry.class new file mode 100644 index 000000000..2a885e078 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/gui/screens/reporting/ChatSelectionScreen$ChatSelectionList$Entry.class differ diff --git a/build/_compileJava_2/net/minecraft/client/gui/screens/reporting/ChatSelectionScreen$ChatSelectionList$Heading.class b/build/_compileJava_2/net/minecraft/client/gui/screens/reporting/ChatSelectionScreen$ChatSelectionList$Heading.class new file mode 100644 index 000000000..0e4cfb712 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/gui/screens/reporting/ChatSelectionScreen$ChatSelectionList$Heading.class differ diff --git a/build/_compileJava_2/net/minecraft/client/gui/screens/reporting/ChatSelectionScreen$ChatSelectionList$MessageEntry.class b/build/_compileJava_2/net/minecraft/client/gui/screens/reporting/ChatSelectionScreen$ChatSelectionList$MessageEntry.class new file mode 100644 index 000000000..35b803727 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/gui/screens/reporting/ChatSelectionScreen$ChatSelectionList$MessageEntry.class differ diff --git a/build/_compileJava_2/net/minecraft/client/gui/screens/reporting/ChatSelectionScreen$ChatSelectionList$MessageHeadingEntry.class b/build/_compileJava_2/net/minecraft/client/gui/screens/reporting/ChatSelectionScreen$ChatSelectionList$MessageHeadingEntry.class new file mode 100644 index 000000000..8c787bafa Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/gui/screens/reporting/ChatSelectionScreen$ChatSelectionList$MessageHeadingEntry.class differ diff --git a/build/_compileJava_2/net/minecraft/client/gui/screens/reporting/ChatSelectionScreen$ChatSelectionList$PaddingEntry.class b/build/_compileJava_2/net/minecraft/client/gui/screens/reporting/ChatSelectionScreen$ChatSelectionList$PaddingEntry.class new file mode 100644 index 000000000..996aeb5f1 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/gui/screens/reporting/ChatSelectionScreen$ChatSelectionList$PaddingEntry.class differ diff --git a/build/_compileJava_2/net/minecraft/client/gui/screens/reporting/ChatSelectionScreen$ChatSelectionList.class b/build/_compileJava_2/net/minecraft/client/gui/screens/reporting/ChatSelectionScreen$ChatSelectionList.class new file mode 100644 index 000000000..c31913ae0 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/gui/screens/reporting/ChatSelectionScreen$ChatSelectionList.class differ diff --git a/build/_compileJava_2/net/minecraft/client/gui/screens/reporting/ChatSelectionScreen.class b/build/_compileJava_2/net/minecraft/client/gui/screens/reporting/ChatSelectionScreen.class new file mode 100644 index 000000000..db3dc767b Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/gui/screens/reporting/ChatSelectionScreen.class differ diff --git a/build/_compileJava_2/net/minecraft/client/gui/screens/reporting/ReportReasonSelectionScreen$ReasonSelectionList$Entry.class b/build/_compileJava_2/net/minecraft/client/gui/screens/reporting/ReportReasonSelectionScreen$ReasonSelectionList$Entry.class new file mode 100644 index 000000000..043ec56fd Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/gui/screens/reporting/ReportReasonSelectionScreen$ReasonSelectionList$Entry.class differ diff --git a/build/_compileJava_2/net/minecraft/client/gui/screens/reporting/ReportReasonSelectionScreen$ReasonSelectionList.class b/build/_compileJava_2/net/minecraft/client/gui/screens/reporting/ReportReasonSelectionScreen$ReasonSelectionList.class new file mode 100644 index 000000000..0b9eef3e8 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/gui/screens/reporting/ReportReasonSelectionScreen$ReasonSelectionList.class differ diff --git a/build/_compileJava_2/net/minecraft/client/gui/screens/reporting/ReportReasonSelectionScreen.class b/build/_compileJava_2/net/minecraft/client/gui/screens/reporting/ReportReasonSelectionScreen.class new file mode 100644 index 000000000..eec188016 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/gui/screens/reporting/ReportReasonSelectionScreen.class differ diff --git a/build/_compileJava_2/net/minecraft/client/gui/screens/reporting/package-info.class b/build/_compileJava_2/net/minecraft/client/gui/screens/reporting/package-info.class new file mode 100644 index 000000000..f1dca2c37 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/gui/screens/reporting/package-info.class differ diff --git a/build/_compileJava_2/net/minecraft/client/gui/screens/social/PlayerEntry$1.class b/build/_compileJava_2/net/minecraft/client/gui/screens/social/PlayerEntry$1.class new file mode 100644 index 000000000..20f3adf84 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/gui/screens/social/PlayerEntry$1.class differ diff --git a/build/_compileJava_2/net/minecraft/client/gui/screens/social/PlayerEntry$2.class b/build/_compileJava_2/net/minecraft/client/gui/screens/social/PlayerEntry$2.class new file mode 100644 index 000000000..c65a8f5ab Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/gui/screens/social/PlayerEntry$2.class differ diff --git a/build/_compileJava_2/net/minecraft/client/gui/screens/social/PlayerEntry$3.class b/build/_compileJava_2/net/minecraft/client/gui/screens/social/PlayerEntry$3.class new file mode 100644 index 000000000..1591545c7 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/gui/screens/social/PlayerEntry$3.class differ diff --git a/build/_compileJava_2/net/minecraft/client/gui/screens/social/PlayerEntry.class b/build/_compileJava_2/net/minecraft/client/gui/screens/social/PlayerEntry.class new file mode 100644 index 000000000..7daeebc2c Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/gui/screens/social/PlayerEntry.class differ diff --git a/build/_compileJava_2/net/minecraft/client/gui/screens/social/PlayerSocialManager.class b/build/_compileJava_2/net/minecraft/client/gui/screens/social/PlayerSocialManager.class new file mode 100644 index 000000000..7bed1cdb5 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/gui/screens/social/PlayerSocialManager.class differ diff --git a/build/_compileJava_2/net/minecraft/client/gui/screens/social/SocialInteractionsPlayerList.class b/build/_compileJava_2/net/minecraft/client/gui/screens/social/SocialInteractionsPlayerList.class new file mode 100644 index 000000000..c0ac885dc Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/gui/screens/social/SocialInteractionsPlayerList.class differ diff --git a/build/_compileJava_2/net/minecraft/client/gui/screens/social/SocialInteractionsScreen$1.class b/build/_compileJava_2/net/minecraft/client/gui/screens/social/SocialInteractionsScreen$1.class new file mode 100644 index 000000000..a8fbc74bc Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/gui/screens/social/SocialInteractionsScreen$1.class differ diff --git a/build/_compileJava_2/net/minecraft/client/gui/screens/social/SocialInteractionsScreen$2.class b/build/_compileJava_2/net/minecraft/client/gui/screens/social/SocialInteractionsScreen$2.class new file mode 100644 index 000000000..fca81a881 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/gui/screens/social/SocialInteractionsScreen$2.class differ diff --git a/build/_compileJava_2/net/minecraft/client/gui/screens/social/SocialInteractionsScreen$Page.class b/build/_compileJava_2/net/minecraft/client/gui/screens/social/SocialInteractionsScreen$Page.class new file mode 100644 index 000000000..29bfdad46 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/gui/screens/social/SocialInteractionsScreen$Page.class differ diff --git a/build/_compileJava_2/net/minecraft/client/gui/screens/social/SocialInteractionsScreen.class b/build/_compileJava_2/net/minecraft/client/gui/screens/social/SocialInteractionsScreen.class new file mode 100644 index 000000000..5dba10686 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/gui/screens/social/SocialInteractionsScreen.class differ diff --git a/build/_compileJava_2/net/minecraft/client/gui/screens/social/package-info.class b/build/_compileJava_2/net/minecraft/client/gui/screens/social/package-info.class new file mode 100644 index 000000000..c851ddf15 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/gui/screens/social/package-info.class differ diff --git a/build/_compileJava_2/net/minecraft/client/gui/screens/telemetry/TelemetryEventWidget$Content.class b/build/_compileJava_2/net/minecraft/client/gui/screens/telemetry/TelemetryEventWidget$Content.class new file mode 100644 index 000000000..3534da5d6 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/gui/screens/telemetry/TelemetryEventWidget$Content.class differ diff --git a/build/_compileJava_2/net/minecraft/client/gui/screens/telemetry/TelemetryEventWidget$ContentBuilder.class b/build/_compileJava_2/net/minecraft/client/gui/screens/telemetry/TelemetryEventWidget$ContentBuilder.class new file mode 100644 index 000000000..9775e5189 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/gui/screens/telemetry/TelemetryEventWidget$ContentBuilder.class differ diff --git a/build/_compileJava_2/net/minecraft/client/gui/screens/telemetry/TelemetryEventWidget.class b/build/_compileJava_2/net/minecraft/client/gui/screens/telemetry/TelemetryEventWidget.class new file mode 100644 index 000000000..e7cb2bb80 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/gui/screens/telemetry/TelemetryEventWidget.class differ diff --git a/build/_compileJava_2/net/minecraft/client/gui/screens/telemetry/TelemetryInfoScreen.class b/build/_compileJava_2/net/minecraft/client/gui/screens/telemetry/TelemetryInfoScreen.class new file mode 100644 index 000000000..c7d400809 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/gui/screens/telemetry/TelemetryInfoScreen.class differ diff --git a/build/_compileJava_2/net/minecraft/client/gui/screens/telemetry/package-info.class b/build/_compileJava_2/net/minecraft/client/gui/screens/telemetry/package-info.class new file mode 100644 index 000000000..5655ad587 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/gui/screens/telemetry/package-info.class differ diff --git a/build/_compileJava_2/net/minecraft/client/gui/screens/worldselection/ConfirmExperimentalFeaturesScreen$DetailsScreen$PackList.class b/build/_compileJava_2/net/minecraft/client/gui/screens/worldselection/ConfirmExperimentalFeaturesScreen$DetailsScreen$PackList.class new file mode 100644 index 000000000..d6be212b6 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/gui/screens/worldselection/ConfirmExperimentalFeaturesScreen$DetailsScreen$PackList.class differ diff --git a/build/_compileJava_2/net/minecraft/client/gui/screens/worldselection/ConfirmExperimentalFeaturesScreen$DetailsScreen$PackListEntry.class b/build/_compileJava_2/net/minecraft/client/gui/screens/worldselection/ConfirmExperimentalFeaturesScreen$DetailsScreen$PackListEntry.class new file mode 100644 index 000000000..86e3f7be4 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/gui/screens/worldselection/ConfirmExperimentalFeaturesScreen$DetailsScreen$PackListEntry.class differ diff --git a/build/_compileJava_2/net/minecraft/client/gui/screens/worldselection/ConfirmExperimentalFeaturesScreen$DetailsScreen.class b/build/_compileJava_2/net/minecraft/client/gui/screens/worldselection/ConfirmExperimentalFeaturesScreen$DetailsScreen.class new file mode 100644 index 000000000..a8bb6db93 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/gui/screens/worldselection/ConfirmExperimentalFeaturesScreen$DetailsScreen.class differ diff --git a/build/_compileJava_2/net/minecraft/client/gui/screens/worldselection/ConfirmExperimentalFeaturesScreen.class b/build/_compileJava_2/net/minecraft/client/gui/screens/worldselection/ConfirmExperimentalFeaturesScreen.class new file mode 100644 index 000000000..3a8a9d7b9 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/gui/screens/worldselection/ConfirmExperimentalFeaturesScreen.class differ diff --git a/build/_compileJava_2/net/minecraft/client/gui/screens/worldselection/CreateWorldScreen$DataPackReloadCookie.class b/build/_compileJava_2/net/minecraft/client/gui/screens/worldselection/CreateWorldScreen$DataPackReloadCookie.class new file mode 100644 index 000000000..e26107548 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/gui/screens/worldselection/CreateWorldScreen$DataPackReloadCookie.class differ diff --git a/build/_compileJava_2/net/minecraft/client/gui/screens/worldselection/CreateWorldScreen$GameTab.class b/build/_compileJava_2/net/minecraft/client/gui/screens/worldselection/CreateWorldScreen$GameTab.class new file mode 100644 index 000000000..26dfd15dc Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/gui/screens/worldselection/CreateWorldScreen$GameTab.class differ diff --git a/build/_compileJava_2/net/minecraft/client/gui/screens/worldselection/CreateWorldScreen$MoreTab.class b/build/_compileJava_2/net/minecraft/client/gui/screens/worldselection/CreateWorldScreen$MoreTab.class new file mode 100644 index 000000000..b56ab5717 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/gui/screens/worldselection/CreateWorldScreen$MoreTab.class differ diff --git a/build/_compileJava_2/net/minecraft/client/gui/screens/worldselection/CreateWorldScreen$WorldTab$1.class b/build/_compileJava_2/net/minecraft/client/gui/screens/worldselection/CreateWorldScreen$WorldTab$1.class new file mode 100644 index 000000000..30c4ac489 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/gui/screens/worldselection/CreateWorldScreen$WorldTab$1.class differ diff --git a/build/_compileJava_2/net/minecraft/client/gui/screens/worldselection/CreateWorldScreen$WorldTab$2.class b/build/_compileJava_2/net/minecraft/client/gui/screens/worldselection/CreateWorldScreen$WorldTab$2.class new file mode 100644 index 000000000..de0ad3cf9 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/gui/screens/worldselection/CreateWorldScreen$WorldTab$2.class differ diff --git a/build/_compileJava_2/net/minecraft/client/gui/screens/worldselection/CreateWorldScreen$WorldTab.class b/build/_compileJava_2/net/minecraft/client/gui/screens/worldselection/CreateWorldScreen$WorldTab.class new file mode 100644 index 000000000..313c99774 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/gui/screens/worldselection/CreateWorldScreen$WorldTab.class differ diff --git a/build/_compileJava_2/net/minecraft/client/gui/screens/worldselection/CreateWorldScreen.class b/build/_compileJava_2/net/minecraft/client/gui/screens/worldselection/CreateWorldScreen.class new file mode 100644 index 000000000..59dd22275 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/gui/screens/worldselection/CreateWorldScreen.class differ diff --git a/build/_compileJava_2/net/minecraft/client/gui/screens/worldselection/EditGameRulesScreen$BooleanRuleEntry.class b/build/_compileJava_2/net/minecraft/client/gui/screens/worldselection/EditGameRulesScreen$BooleanRuleEntry.class new file mode 100644 index 000000000..20653504e Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/gui/screens/worldselection/EditGameRulesScreen$BooleanRuleEntry.class differ diff --git a/build/_compileJava_2/net/minecraft/client/gui/screens/worldselection/EditGameRulesScreen$CategoryRuleEntry$1.class b/build/_compileJava_2/net/minecraft/client/gui/screens/worldselection/EditGameRulesScreen$CategoryRuleEntry$1.class new file mode 100644 index 000000000..8f9c75d54 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/gui/screens/worldselection/EditGameRulesScreen$CategoryRuleEntry$1.class differ diff --git a/build/_compileJava_2/net/minecraft/client/gui/screens/worldselection/EditGameRulesScreen$CategoryRuleEntry.class b/build/_compileJava_2/net/minecraft/client/gui/screens/worldselection/EditGameRulesScreen$CategoryRuleEntry.class new file mode 100644 index 000000000..f075160bc Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/gui/screens/worldselection/EditGameRulesScreen$CategoryRuleEntry.class differ diff --git a/build/_compileJava_2/net/minecraft/client/gui/screens/worldselection/EditGameRulesScreen$EntryFactory.class b/build/_compileJava_2/net/minecraft/client/gui/screens/worldselection/EditGameRulesScreen$EntryFactory.class new file mode 100644 index 000000000..33d6f2129 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/gui/screens/worldselection/EditGameRulesScreen$EntryFactory.class differ diff --git a/build/_compileJava_2/net/minecraft/client/gui/screens/worldselection/EditGameRulesScreen$GameRuleEntry.class b/build/_compileJava_2/net/minecraft/client/gui/screens/worldselection/EditGameRulesScreen$GameRuleEntry.class new file mode 100644 index 000000000..07cf08ea0 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/gui/screens/worldselection/EditGameRulesScreen$GameRuleEntry.class differ diff --git a/build/_compileJava_2/net/minecraft/client/gui/screens/worldselection/EditGameRulesScreen$IntegerRuleEntry.class b/build/_compileJava_2/net/minecraft/client/gui/screens/worldselection/EditGameRulesScreen$IntegerRuleEntry.class new file mode 100644 index 000000000..5bf460315 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/gui/screens/worldselection/EditGameRulesScreen$IntegerRuleEntry.class differ diff --git a/build/_compileJava_2/net/minecraft/client/gui/screens/worldselection/EditGameRulesScreen$RuleEntry.class b/build/_compileJava_2/net/minecraft/client/gui/screens/worldselection/EditGameRulesScreen$RuleEntry.class new file mode 100644 index 000000000..ee821e902 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/gui/screens/worldselection/EditGameRulesScreen$RuleEntry.class differ diff --git a/build/_compileJava_2/net/minecraft/client/gui/screens/worldselection/EditGameRulesScreen$RuleList$1.class b/build/_compileJava_2/net/minecraft/client/gui/screens/worldselection/EditGameRulesScreen$RuleList$1.class new file mode 100644 index 000000000..b36d67f93 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/gui/screens/worldselection/EditGameRulesScreen$RuleList$1.class differ diff --git a/build/_compileJava_2/net/minecraft/client/gui/screens/worldselection/EditGameRulesScreen$RuleList.class b/build/_compileJava_2/net/minecraft/client/gui/screens/worldselection/EditGameRulesScreen$RuleList.class new file mode 100644 index 000000000..4703168ee Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/gui/screens/worldselection/EditGameRulesScreen$RuleList.class differ diff --git a/build/_compileJava_2/net/minecraft/client/gui/screens/worldselection/EditGameRulesScreen.class b/build/_compileJava_2/net/minecraft/client/gui/screens/worldselection/EditGameRulesScreen.class new file mode 100644 index 000000000..27ea0d944 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/gui/screens/worldselection/EditGameRulesScreen.class differ diff --git a/build/_compileJava_2/net/minecraft/client/gui/screens/worldselection/EditWorldScreen.class b/build/_compileJava_2/net/minecraft/client/gui/screens/worldselection/EditWorldScreen.class new file mode 100644 index 000000000..9d78ad119 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/gui/screens/worldselection/EditWorldScreen.class differ diff --git a/build/_compileJava_2/net/minecraft/client/gui/screens/worldselection/ExperimentsScreen.class b/build/_compileJava_2/net/minecraft/client/gui/screens/worldselection/ExperimentsScreen.class new file mode 100644 index 000000000..7a9c529d4 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/gui/screens/worldselection/ExperimentsScreen.class differ diff --git a/build/_compileJava_2/net/minecraft/client/gui/screens/worldselection/OptimizeWorldScreen.class b/build/_compileJava_2/net/minecraft/client/gui/screens/worldselection/OptimizeWorldScreen.class new file mode 100644 index 000000000..95adb9330 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/gui/screens/worldselection/OptimizeWorldScreen.class differ diff --git a/build/_compileJava_2/net/minecraft/client/gui/screens/worldselection/PresetEditor.class b/build/_compileJava_2/net/minecraft/client/gui/screens/worldselection/PresetEditor.class new file mode 100644 index 000000000..c19baeeb5 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/gui/screens/worldselection/PresetEditor.class differ diff --git a/build/_compileJava_2/net/minecraft/client/gui/screens/worldselection/SelectWorldScreen.class b/build/_compileJava_2/net/minecraft/client/gui/screens/worldselection/SelectWorldScreen.class new file mode 100644 index 000000000..ef4f0f7e1 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/gui/screens/worldselection/SelectWorldScreen.class differ diff --git a/build/_compileJava_2/net/minecraft/client/gui/screens/worldselection/SwitchGrid$Builder.class b/build/_compileJava_2/net/minecraft/client/gui/screens/worldselection/SwitchGrid$Builder.class new file mode 100644 index 000000000..fdbe29fb8 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/gui/screens/worldselection/SwitchGrid$Builder.class differ diff --git a/build/_compileJava_2/net/minecraft/client/gui/screens/worldselection/SwitchGrid$InfoUnderneathSettings.class b/build/_compileJava_2/net/minecraft/client/gui/screens/worldselection/SwitchGrid$InfoUnderneathSettings.class new file mode 100644 index 000000000..2a6366c68 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/gui/screens/worldselection/SwitchGrid$InfoUnderneathSettings.class differ diff --git a/build/_compileJava_2/net/minecraft/client/gui/screens/worldselection/SwitchGrid$LabeledSwitch.class b/build/_compileJava_2/net/minecraft/client/gui/screens/worldselection/SwitchGrid$LabeledSwitch.class new file mode 100644 index 000000000..8e63db4b4 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/gui/screens/worldselection/SwitchGrid$LabeledSwitch.class differ diff --git a/build/_compileJava_2/net/minecraft/client/gui/screens/worldselection/SwitchGrid$SwitchBuilder.class b/build/_compileJava_2/net/minecraft/client/gui/screens/worldselection/SwitchGrid$SwitchBuilder.class new file mode 100644 index 000000000..fb18690ba Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/gui/screens/worldselection/SwitchGrid$SwitchBuilder.class differ diff --git a/build/_compileJava_2/net/minecraft/client/gui/screens/worldselection/SwitchGrid.class b/build/_compileJava_2/net/minecraft/client/gui/screens/worldselection/SwitchGrid.class new file mode 100644 index 000000000..442f086bb Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/gui/screens/worldselection/SwitchGrid.class differ diff --git a/build/_compileJava_2/net/minecraft/client/gui/screens/worldselection/WorldCreationContext$DimensionsUpdater.class b/build/_compileJava_2/net/minecraft/client/gui/screens/worldselection/WorldCreationContext$DimensionsUpdater.class new file mode 100644 index 000000000..d02e914d5 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/gui/screens/worldselection/WorldCreationContext$DimensionsUpdater.class differ diff --git a/build/_compileJava_2/net/minecraft/client/gui/screens/worldselection/WorldCreationContext$OptionsModifier.class b/build/_compileJava_2/net/minecraft/client/gui/screens/worldselection/WorldCreationContext$OptionsModifier.class new file mode 100644 index 000000000..263aebe76 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/gui/screens/worldselection/WorldCreationContext$OptionsModifier.class differ diff --git a/build/_compileJava_2/net/minecraft/client/gui/screens/worldselection/WorldCreationContext.class b/build/_compileJava_2/net/minecraft/client/gui/screens/worldselection/WorldCreationContext.class new file mode 100644 index 000000000..1f1c93b42 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/gui/screens/worldselection/WorldCreationContext.class differ diff --git a/build/_compileJava_2/net/minecraft/client/gui/screens/worldselection/WorldCreationUiState$SelectedGameMode.class b/build/_compileJava_2/net/minecraft/client/gui/screens/worldselection/WorldCreationUiState$SelectedGameMode.class new file mode 100644 index 000000000..bef335014 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/gui/screens/worldselection/WorldCreationUiState$SelectedGameMode.class differ diff --git a/build/_compileJava_2/net/minecraft/client/gui/screens/worldselection/WorldCreationUiState$WorldTypeEntry.class b/build/_compileJava_2/net/minecraft/client/gui/screens/worldselection/WorldCreationUiState$WorldTypeEntry.class new file mode 100644 index 000000000..3b8798802 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/gui/screens/worldselection/WorldCreationUiState$WorldTypeEntry.class differ diff --git a/build/_compileJava_2/net/minecraft/client/gui/screens/worldselection/WorldCreationUiState.class b/build/_compileJava_2/net/minecraft/client/gui/screens/worldselection/WorldCreationUiState.class new file mode 100644 index 000000000..b2272ccbc Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/gui/screens/worldselection/WorldCreationUiState.class differ diff --git a/build/_compileJava_2/net/minecraft/client/gui/screens/worldselection/WorldOpenFlows$1Data.class b/build/_compileJava_2/net/minecraft/client/gui/screens/worldselection/WorldOpenFlows$1Data.class new file mode 100644 index 000000000..93695cc56 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/gui/screens/worldselection/WorldOpenFlows$1Data.class differ diff --git a/build/_compileJava_2/net/minecraft/client/gui/screens/worldselection/WorldOpenFlows.class b/build/_compileJava_2/net/minecraft/client/gui/screens/worldselection/WorldOpenFlows.class new file mode 100644 index 000000000..2426d8c00 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/gui/screens/worldselection/WorldOpenFlows.class differ diff --git a/build/_compileJava_2/net/minecraft/client/gui/screens/worldselection/WorldSelectionList$Entry.class b/build/_compileJava_2/net/minecraft/client/gui/screens/worldselection/WorldSelectionList$Entry.class new file mode 100644 index 000000000..20f450dee Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/gui/screens/worldselection/WorldSelectionList$Entry.class differ diff --git a/build/_compileJava_2/net/minecraft/client/gui/screens/worldselection/WorldSelectionList$LoadingHeader.class b/build/_compileJava_2/net/minecraft/client/gui/screens/worldselection/WorldSelectionList$LoadingHeader.class new file mode 100644 index 000000000..3a1082500 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/gui/screens/worldselection/WorldSelectionList$LoadingHeader.class differ diff --git a/build/_compileJava_2/net/minecraft/client/gui/screens/worldselection/WorldSelectionList$WorldListEntry.class b/build/_compileJava_2/net/minecraft/client/gui/screens/worldselection/WorldSelectionList$WorldListEntry.class new file mode 100644 index 000000000..f91c85978 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/gui/screens/worldselection/WorldSelectionList$WorldListEntry.class differ diff --git a/build/_compileJava_2/net/minecraft/client/gui/screens/worldselection/WorldSelectionList.class b/build/_compileJava_2/net/minecraft/client/gui/screens/worldselection/WorldSelectionList.class new file mode 100644 index 000000000..72ec7b75e Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/gui/screens/worldselection/WorldSelectionList.class differ diff --git a/build/_compileJava_2/net/minecraft/client/gui/screens/worldselection/package-info.class b/build/_compileJava_2/net/minecraft/client/gui/screens/worldselection/package-info.class new file mode 100644 index 000000000..abea75d42 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/gui/screens/worldselection/package-info.class differ diff --git a/build/_compileJava_2/net/minecraft/client/gui/spectator/PlayerMenuItem.class b/build/_compileJava_2/net/minecraft/client/gui/spectator/PlayerMenuItem.class new file mode 100644 index 000000000..4268335d6 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/gui/spectator/PlayerMenuItem.class differ diff --git a/build/_compileJava_2/net/minecraft/client/gui/spectator/RootSpectatorMenuCategory.class b/build/_compileJava_2/net/minecraft/client/gui/spectator/RootSpectatorMenuCategory.class new file mode 100644 index 000000000..e0c1cf939 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/gui/spectator/RootSpectatorMenuCategory.class differ diff --git a/build/_compileJava_2/net/minecraft/client/gui/spectator/SpectatorMenu$1.class b/build/_compileJava_2/net/minecraft/client/gui/spectator/SpectatorMenu$1.class new file mode 100644 index 000000000..d346208d6 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/gui/spectator/SpectatorMenu$1.class differ diff --git a/build/_compileJava_2/net/minecraft/client/gui/spectator/SpectatorMenu$CloseSpectatorItem.class b/build/_compileJava_2/net/minecraft/client/gui/spectator/SpectatorMenu$CloseSpectatorItem.class new file mode 100644 index 000000000..9bfddfe20 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/gui/spectator/SpectatorMenu$CloseSpectatorItem.class differ diff --git a/build/_compileJava_2/net/minecraft/client/gui/spectator/SpectatorMenu$ScrollMenuItem.class b/build/_compileJava_2/net/minecraft/client/gui/spectator/SpectatorMenu$ScrollMenuItem.class new file mode 100644 index 000000000..637df0676 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/gui/spectator/SpectatorMenu$ScrollMenuItem.class differ diff --git a/build/_compileJava_2/net/minecraft/client/gui/spectator/SpectatorMenu.class b/build/_compileJava_2/net/minecraft/client/gui/spectator/SpectatorMenu.class new file mode 100644 index 000000000..5865be102 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/gui/spectator/SpectatorMenu.class differ diff --git a/build/_compileJava_2/net/minecraft/client/gui/spectator/SpectatorMenuCategory.class b/build/_compileJava_2/net/minecraft/client/gui/spectator/SpectatorMenuCategory.class new file mode 100644 index 000000000..2a668ce19 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/gui/spectator/SpectatorMenuCategory.class differ diff --git a/build/_compileJava_2/net/minecraft/client/gui/spectator/SpectatorMenuItem.class b/build/_compileJava_2/net/minecraft/client/gui/spectator/SpectatorMenuItem.class new file mode 100644 index 000000000..290b6ad8a Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/gui/spectator/SpectatorMenuItem.class differ diff --git a/build/_compileJava_2/net/minecraft/client/gui/spectator/SpectatorMenuListener.class b/build/_compileJava_2/net/minecraft/client/gui/spectator/SpectatorMenuListener.class new file mode 100644 index 000000000..a96157a7f Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/gui/spectator/SpectatorMenuListener.class differ diff --git a/build/_compileJava_2/net/minecraft/client/gui/spectator/categories/SpectatorPage.class b/build/_compileJava_2/net/minecraft/client/gui/spectator/categories/SpectatorPage.class new file mode 100644 index 000000000..72ce40885 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/gui/spectator/categories/SpectatorPage.class differ diff --git a/build/_compileJava_2/net/minecraft/client/gui/spectator/categories/TeleportToPlayerMenuCategory.class b/build/_compileJava_2/net/minecraft/client/gui/spectator/categories/TeleportToPlayerMenuCategory.class new file mode 100644 index 000000000..b3dcb2629 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/gui/spectator/categories/TeleportToPlayerMenuCategory.class differ diff --git a/build/_compileJava_2/net/minecraft/client/gui/spectator/categories/TeleportToTeamMenuCategory$TeamSelectionItem.class b/build/_compileJava_2/net/minecraft/client/gui/spectator/categories/TeleportToTeamMenuCategory$TeamSelectionItem.class new file mode 100644 index 000000000..fe467471a Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/gui/spectator/categories/TeleportToTeamMenuCategory$TeamSelectionItem.class differ diff --git a/build/_compileJava_2/net/minecraft/client/gui/spectator/categories/TeleportToTeamMenuCategory.class b/build/_compileJava_2/net/minecraft/client/gui/spectator/categories/TeleportToTeamMenuCategory.class new file mode 100644 index 000000000..c87976fdf Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/gui/spectator/categories/TeleportToTeamMenuCategory.class differ diff --git a/build/_compileJava_2/net/minecraft/client/gui/spectator/categories/package-info.class b/build/_compileJava_2/net/minecraft/client/gui/spectator/categories/package-info.class new file mode 100644 index 000000000..4bcf534b2 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/gui/spectator/categories/package-info.class differ diff --git a/build/_compileJava_2/net/minecraft/client/gui/spectator/package-info.class b/build/_compileJava_2/net/minecraft/client/gui/spectator/package-info.class new file mode 100644 index 000000000..9f3c53caa Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/gui/spectator/package-info.class differ diff --git a/build/_compileJava_2/net/minecraft/client/main/GameConfig$FolderData.class b/build/_compileJava_2/net/minecraft/client/main/GameConfig$FolderData.class new file mode 100644 index 000000000..ccf4e386e Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/main/GameConfig$FolderData.class differ diff --git a/build/_compileJava_2/net/minecraft/client/main/GameConfig$GameData.class b/build/_compileJava_2/net/minecraft/client/main/GameConfig$GameData.class new file mode 100644 index 000000000..fbe29c491 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/main/GameConfig$GameData.class differ diff --git a/build/_compileJava_2/net/minecraft/client/main/GameConfig$QuickPlayData.class b/build/_compileJava_2/net/minecraft/client/main/GameConfig$QuickPlayData.class new file mode 100644 index 000000000..3b43c6850 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/main/GameConfig$QuickPlayData.class differ diff --git a/build/_compileJava_2/net/minecraft/client/main/GameConfig$UserData.class b/build/_compileJava_2/net/minecraft/client/main/GameConfig$UserData.class new file mode 100644 index 000000000..142bf5fe0 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/main/GameConfig$UserData.class differ diff --git a/build/_compileJava_2/net/minecraft/client/main/GameConfig.class b/build/_compileJava_2/net/minecraft/client/main/GameConfig.class new file mode 100644 index 000000000..e2c74022c Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/main/GameConfig.class differ diff --git a/build/_compileJava_2/net/minecraft/client/main/Main$1.class b/build/_compileJava_2/net/minecraft/client/main/Main$1.class new file mode 100644 index 000000000..d174a1ce8 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/main/Main$1.class differ diff --git a/build/_compileJava_2/net/minecraft/client/main/Main$2.class b/build/_compileJava_2/net/minecraft/client/main/Main$2.class new file mode 100644 index 000000000..bda8f9c31 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/main/Main$2.class differ diff --git a/build/_compileJava_2/net/minecraft/client/main/Main$3.class b/build/_compileJava_2/net/minecraft/client/main/Main$3.class new file mode 100644 index 000000000..723cf2bab Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/main/Main$3.class differ diff --git a/build/_compileJava_2/net/minecraft/client/main/Main.class b/build/_compileJava_2/net/minecraft/client/main/Main.class new file mode 100644 index 000000000..80c96fb15 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/main/Main.class differ diff --git a/build/_compileJava_2/net/minecraft/client/main/SilentInitException.class b/build/_compileJava_2/net/minecraft/client/main/SilentInitException.class new file mode 100644 index 000000000..0aed8d047 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/main/SilentInitException.class differ diff --git a/build/_compileJava_2/net/minecraft/client/main/package-info.class b/build/_compileJava_2/net/minecraft/client/main/package-info.class new file mode 100644 index 000000000..777193d99 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/main/package-info.class differ diff --git a/build/_compileJava_2/net/minecraft/client/model/AbstractZombieModel.class b/build/_compileJava_2/net/minecraft/client/model/AbstractZombieModel.class new file mode 100644 index 000000000..b1b0bc211 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/model/AbstractZombieModel.class differ diff --git a/build/_compileJava_2/net/minecraft/client/model/AgeableHierarchicalModel.class b/build/_compileJava_2/net/minecraft/client/model/AgeableHierarchicalModel.class new file mode 100644 index 000000000..fdeabe5f0 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/model/AgeableHierarchicalModel.class differ diff --git a/build/_compileJava_2/net/minecraft/client/model/AgeableListModel.class b/build/_compileJava_2/net/minecraft/client/model/AgeableListModel.class new file mode 100644 index 000000000..bc6652fa3 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/model/AgeableListModel.class differ diff --git a/build/_compileJava_2/net/minecraft/client/model/AllayModel.class b/build/_compileJava_2/net/minecraft/client/model/AllayModel.class new file mode 100644 index 000000000..b4e0e8280 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/model/AllayModel.class differ diff --git a/build/_compileJava_2/net/minecraft/client/model/AnimationUtils.class b/build/_compileJava_2/net/minecraft/client/model/AnimationUtils.class new file mode 100644 index 000000000..61ed9b9a3 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/model/AnimationUtils.class differ diff --git a/build/_compileJava_2/net/minecraft/client/model/ArmedModel.class b/build/_compileJava_2/net/minecraft/client/model/ArmedModel.class new file mode 100644 index 000000000..e69284e49 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/model/ArmedModel.class differ diff --git a/build/_compileJava_2/net/minecraft/client/model/ArmorStandArmorModel.class b/build/_compileJava_2/net/minecraft/client/model/ArmorStandArmorModel.class new file mode 100644 index 000000000..5c1e30bdf Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/model/ArmorStandArmorModel.class differ diff --git a/build/_compileJava_2/net/minecraft/client/model/ArmorStandModel.class b/build/_compileJava_2/net/minecraft/client/model/ArmorStandModel.class new file mode 100644 index 000000000..d983cd5c7 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/model/ArmorStandModel.class differ diff --git a/build/_compileJava_2/net/minecraft/client/model/AxolotlModel.class b/build/_compileJava_2/net/minecraft/client/model/AxolotlModel.class new file mode 100644 index 000000000..7f089d5bc Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/model/AxolotlModel.class differ diff --git a/build/_compileJava_2/net/minecraft/client/model/BatModel.class b/build/_compileJava_2/net/minecraft/client/model/BatModel.class new file mode 100644 index 000000000..0167dc9c7 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/model/BatModel.class differ diff --git a/build/_compileJava_2/net/minecraft/client/model/BeeModel.class b/build/_compileJava_2/net/minecraft/client/model/BeeModel.class new file mode 100644 index 000000000..d4f43dda8 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/model/BeeModel.class differ diff --git a/build/_compileJava_2/net/minecraft/client/model/BlazeModel.class b/build/_compileJava_2/net/minecraft/client/model/BlazeModel.class new file mode 100644 index 000000000..62dbd7d49 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/model/BlazeModel.class differ diff --git a/build/_compileJava_2/net/minecraft/client/model/BoatModel.class b/build/_compileJava_2/net/minecraft/client/model/BoatModel.class new file mode 100644 index 000000000..ae0124416 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/model/BoatModel.class differ diff --git a/build/_compileJava_2/net/minecraft/client/model/BookModel.class b/build/_compileJava_2/net/minecraft/client/model/BookModel.class new file mode 100644 index 000000000..2a6df13eb Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/model/BookModel.class differ diff --git a/build/_compileJava_2/net/minecraft/client/model/CamelModel.class b/build/_compileJava_2/net/minecraft/client/model/CamelModel.class new file mode 100644 index 000000000..07e9a643b Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/model/CamelModel.class differ diff --git a/build/_compileJava_2/net/minecraft/client/model/CatModel.class b/build/_compileJava_2/net/minecraft/client/model/CatModel.class new file mode 100644 index 000000000..259a22215 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/model/CatModel.class differ diff --git a/build/_compileJava_2/net/minecraft/client/model/ChestBoatModel.class b/build/_compileJava_2/net/minecraft/client/model/ChestBoatModel.class new file mode 100644 index 000000000..93da4e75c Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/model/ChestBoatModel.class differ diff --git a/build/_compileJava_2/net/minecraft/client/model/ChestRaftModel.class b/build/_compileJava_2/net/minecraft/client/model/ChestRaftModel.class new file mode 100644 index 000000000..de4f58bf4 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/model/ChestRaftModel.class differ diff --git a/build/_compileJava_2/net/minecraft/client/model/ChestedHorseModel.class b/build/_compileJava_2/net/minecraft/client/model/ChestedHorseModel.class new file mode 100644 index 000000000..3c335f52d Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/model/ChestedHorseModel.class differ diff --git a/build/_compileJava_2/net/minecraft/client/model/ChickenModel.class b/build/_compileJava_2/net/minecraft/client/model/ChickenModel.class new file mode 100644 index 000000000..5d0f4bf7e Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/model/ChickenModel.class differ diff --git a/build/_compileJava_2/net/minecraft/client/model/CodModel.class b/build/_compileJava_2/net/minecraft/client/model/CodModel.class new file mode 100644 index 000000000..a24f41fca Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/model/CodModel.class differ diff --git a/build/_compileJava_2/net/minecraft/client/model/ColorableAgeableListModel.class b/build/_compileJava_2/net/minecraft/client/model/ColorableAgeableListModel.class new file mode 100644 index 000000000..ea1035b84 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/model/ColorableAgeableListModel.class differ diff --git a/build/_compileJava_2/net/minecraft/client/model/ColorableHierarchicalModel.class b/build/_compileJava_2/net/minecraft/client/model/ColorableHierarchicalModel.class new file mode 100644 index 000000000..a7e3fff0b Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/model/ColorableHierarchicalModel.class differ diff --git a/build/_compileJava_2/net/minecraft/client/model/CowModel.class b/build/_compileJava_2/net/minecraft/client/model/CowModel.class new file mode 100644 index 000000000..64eb76162 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/model/CowModel.class differ diff --git a/build/_compileJava_2/net/minecraft/client/model/CreeperModel.class b/build/_compileJava_2/net/minecraft/client/model/CreeperModel.class new file mode 100644 index 000000000..d3d6b36de Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/model/CreeperModel.class differ diff --git a/build/_compileJava_2/net/minecraft/client/model/DolphinModel.class b/build/_compileJava_2/net/minecraft/client/model/DolphinModel.class new file mode 100644 index 000000000..04390fbdf Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/model/DolphinModel.class differ diff --git a/build/_compileJava_2/net/minecraft/client/model/DrownedModel.class b/build/_compileJava_2/net/minecraft/client/model/DrownedModel.class new file mode 100644 index 000000000..dfa9c2edb Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/model/DrownedModel.class differ diff --git a/build/_compileJava_2/net/minecraft/client/model/ElytraModel.class b/build/_compileJava_2/net/minecraft/client/model/ElytraModel.class new file mode 100644 index 000000000..92121a282 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/model/ElytraModel.class differ diff --git a/build/_compileJava_2/net/minecraft/client/model/EndermanModel.class b/build/_compileJava_2/net/minecraft/client/model/EndermanModel.class new file mode 100644 index 000000000..7c5f85ba4 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/model/EndermanModel.class differ diff --git a/build/_compileJava_2/net/minecraft/client/model/EndermiteModel.class b/build/_compileJava_2/net/minecraft/client/model/EndermiteModel.class new file mode 100644 index 000000000..44245a7d7 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/model/EndermiteModel.class differ diff --git a/build/_compileJava_2/net/minecraft/client/model/EntityModel.class b/build/_compileJava_2/net/minecraft/client/model/EntityModel.class new file mode 100644 index 000000000..0852231f8 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/model/EntityModel.class differ diff --git a/build/_compileJava_2/net/minecraft/client/model/EvokerFangsModel.class b/build/_compileJava_2/net/minecraft/client/model/EvokerFangsModel.class new file mode 100644 index 000000000..f476f77ab Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/model/EvokerFangsModel.class differ diff --git a/build/_compileJava_2/net/minecraft/client/model/FoxModel.class b/build/_compileJava_2/net/minecraft/client/model/FoxModel.class new file mode 100644 index 000000000..cf02b6e69 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/model/FoxModel.class differ diff --git a/build/_compileJava_2/net/minecraft/client/model/FrogModel.class b/build/_compileJava_2/net/minecraft/client/model/FrogModel.class new file mode 100644 index 000000000..11af137ce Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/model/FrogModel.class differ diff --git a/build/_compileJava_2/net/minecraft/client/model/GhastModel.class b/build/_compileJava_2/net/minecraft/client/model/GhastModel.class new file mode 100644 index 000000000..f4f3721e4 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/model/GhastModel.class differ diff --git a/build/_compileJava_2/net/minecraft/client/model/GiantZombieModel.class b/build/_compileJava_2/net/minecraft/client/model/GiantZombieModel.class new file mode 100644 index 000000000..1c5901cbd Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/model/GiantZombieModel.class differ diff --git a/build/_compileJava_2/net/minecraft/client/model/GoatModel.class b/build/_compileJava_2/net/minecraft/client/model/GoatModel.class new file mode 100644 index 000000000..0a500e575 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/model/GoatModel.class differ diff --git a/build/_compileJava_2/net/minecraft/client/model/GuardianModel.class b/build/_compileJava_2/net/minecraft/client/model/GuardianModel.class new file mode 100644 index 000000000..63c4cba9c Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/model/GuardianModel.class differ diff --git a/build/_compileJava_2/net/minecraft/client/model/HeadedModel.class b/build/_compileJava_2/net/minecraft/client/model/HeadedModel.class new file mode 100644 index 000000000..3ac7294a9 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/model/HeadedModel.class differ diff --git a/build/_compileJava_2/net/minecraft/client/model/HierarchicalModel.class b/build/_compileJava_2/net/minecraft/client/model/HierarchicalModel.class new file mode 100644 index 000000000..df739c779 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/model/HierarchicalModel.class differ diff --git a/build/_compileJava_2/net/minecraft/client/model/HoglinModel.class b/build/_compileJava_2/net/minecraft/client/model/HoglinModel.class new file mode 100644 index 000000000..320b166aa Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/model/HoglinModel.class differ diff --git a/build/_compileJava_2/net/minecraft/client/model/HorseModel.class b/build/_compileJava_2/net/minecraft/client/model/HorseModel.class new file mode 100644 index 000000000..03ed8b6b1 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/model/HorseModel.class differ diff --git a/build/_compileJava_2/net/minecraft/client/model/HumanoidArmorModel.class b/build/_compileJava_2/net/minecraft/client/model/HumanoidArmorModel.class new file mode 100644 index 000000000..d7ef9b5a0 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/model/HumanoidArmorModel.class differ diff --git a/build/_compileJava_2/net/minecraft/client/model/HumanoidModel$1.class b/build/_compileJava_2/net/minecraft/client/model/HumanoidModel$1.class new file mode 100644 index 000000000..017534ad2 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/model/HumanoidModel$1.class differ diff --git a/build/_compileJava_2/net/minecraft/client/model/HumanoidModel$ArmPose.class b/build/_compileJava_2/net/minecraft/client/model/HumanoidModel$ArmPose.class new file mode 100644 index 000000000..1ced294ef Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/model/HumanoidModel$ArmPose.class differ diff --git a/build/_compileJava_2/net/minecraft/client/model/HumanoidModel.class b/build/_compileJava_2/net/minecraft/client/model/HumanoidModel.class new file mode 100644 index 000000000..6335530e5 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/model/HumanoidModel.class differ diff --git a/build/_compileJava_2/net/minecraft/client/model/IllagerModel.class b/build/_compileJava_2/net/minecraft/client/model/IllagerModel.class new file mode 100644 index 000000000..0f4961f72 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/model/IllagerModel.class differ diff --git a/build/_compileJava_2/net/minecraft/client/model/IronGolemModel.class b/build/_compileJava_2/net/minecraft/client/model/IronGolemModel.class new file mode 100644 index 000000000..53c908f73 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/model/IronGolemModel.class differ diff --git a/build/_compileJava_2/net/minecraft/client/model/LavaSlimeModel.class b/build/_compileJava_2/net/minecraft/client/model/LavaSlimeModel.class new file mode 100644 index 000000000..c3dddcfbc Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/model/LavaSlimeModel.class differ diff --git a/build/_compileJava_2/net/minecraft/client/model/LeashKnotModel.class b/build/_compileJava_2/net/minecraft/client/model/LeashKnotModel.class new file mode 100644 index 000000000..ae7f0ad4b Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/model/LeashKnotModel.class differ diff --git a/build/_compileJava_2/net/minecraft/client/model/ListModel.class b/build/_compileJava_2/net/minecraft/client/model/ListModel.class new file mode 100644 index 000000000..bf0123c0a Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/model/ListModel.class differ diff --git a/build/_compileJava_2/net/minecraft/client/model/LlamaModel.class b/build/_compileJava_2/net/minecraft/client/model/LlamaModel.class new file mode 100644 index 000000000..911e8892b Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/model/LlamaModel.class differ diff --git a/build/_compileJava_2/net/minecraft/client/model/LlamaSpitModel.class b/build/_compileJava_2/net/minecraft/client/model/LlamaSpitModel.class new file mode 100644 index 000000000..b2ff7fabd Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/model/LlamaSpitModel.class differ diff --git a/build/_compileJava_2/net/minecraft/client/model/MinecartModel.class b/build/_compileJava_2/net/minecraft/client/model/MinecartModel.class new file mode 100644 index 000000000..91facee6b Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/model/MinecartModel.class differ diff --git a/build/_compileJava_2/net/minecraft/client/model/Model.class b/build/_compileJava_2/net/minecraft/client/model/Model.class new file mode 100644 index 000000000..b8420683d Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/model/Model.class differ diff --git a/build/_compileJava_2/net/minecraft/client/model/ModelUtils.class b/build/_compileJava_2/net/minecraft/client/model/ModelUtils.class new file mode 100644 index 000000000..16034f500 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/model/ModelUtils.class differ diff --git a/build/_compileJava_2/net/minecraft/client/model/OcelotModel.class b/build/_compileJava_2/net/minecraft/client/model/OcelotModel.class new file mode 100644 index 000000000..397d18b40 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/model/OcelotModel.class differ diff --git a/build/_compileJava_2/net/minecraft/client/model/PandaModel.class b/build/_compileJava_2/net/minecraft/client/model/PandaModel.class new file mode 100644 index 000000000..433cb63e8 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/model/PandaModel.class differ diff --git a/build/_compileJava_2/net/minecraft/client/model/ParrotModel$1.class b/build/_compileJava_2/net/minecraft/client/model/ParrotModel$1.class new file mode 100644 index 000000000..fdc0e6b8f Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/model/ParrotModel$1.class differ diff --git a/build/_compileJava_2/net/minecraft/client/model/ParrotModel$State.class b/build/_compileJava_2/net/minecraft/client/model/ParrotModel$State.class new file mode 100644 index 000000000..9c8a48614 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/model/ParrotModel$State.class differ diff --git a/build/_compileJava_2/net/minecraft/client/model/ParrotModel.class b/build/_compileJava_2/net/minecraft/client/model/ParrotModel.class new file mode 100644 index 000000000..12efe204f Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/model/ParrotModel.class differ diff --git a/build/_compileJava_2/net/minecraft/client/model/PhantomModel.class b/build/_compileJava_2/net/minecraft/client/model/PhantomModel.class new file mode 100644 index 000000000..fcbac1049 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/model/PhantomModel.class differ diff --git a/build/_compileJava_2/net/minecraft/client/model/PigModel.class b/build/_compileJava_2/net/minecraft/client/model/PigModel.class new file mode 100644 index 000000000..1078d66e5 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/model/PigModel.class differ diff --git a/build/_compileJava_2/net/minecraft/client/model/PiglinHeadModel.class b/build/_compileJava_2/net/minecraft/client/model/PiglinHeadModel.class new file mode 100644 index 000000000..92be4bc24 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/model/PiglinHeadModel.class differ diff --git a/build/_compileJava_2/net/minecraft/client/model/PiglinModel.class b/build/_compileJava_2/net/minecraft/client/model/PiglinModel.class new file mode 100644 index 000000000..a1ce6719a Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/model/PiglinModel.class differ diff --git a/build/_compileJava_2/net/minecraft/client/model/PlayerModel.class b/build/_compileJava_2/net/minecraft/client/model/PlayerModel.class new file mode 100644 index 000000000..ec52bb337 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/model/PlayerModel.class differ diff --git a/build/_compileJava_2/net/minecraft/client/model/PolarBearModel.class b/build/_compileJava_2/net/minecraft/client/model/PolarBearModel.class new file mode 100644 index 000000000..3f0295a00 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/model/PolarBearModel.class differ diff --git a/build/_compileJava_2/net/minecraft/client/model/PufferfishBigModel.class b/build/_compileJava_2/net/minecraft/client/model/PufferfishBigModel.class new file mode 100644 index 000000000..905c96659 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/model/PufferfishBigModel.class differ diff --git a/build/_compileJava_2/net/minecraft/client/model/PufferfishMidModel.class b/build/_compileJava_2/net/minecraft/client/model/PufferfishMidModel.class new file mode 100644 index 000000000..a0721f5e1 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/model/PufferfishMidModel.class differ diff --git a/build/_compileJava_2/net/minecraft/client/model/PufferfishSmallModel.class b/build/_compileJava_2/net/minecraft/client/model/PufferfishSmallModel.class new file mode 100644 index 000000000..edab5a0a0 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/model/PufferfishSmallModel.class differ diff --git a/build/_compileJava_2/net/minecraft/client/model/QuadrupedModel.class b/build/_compileJava_2/net/minecraft/client/model/QuadrupedModel.class new file mode 100644 index 000000000..cf8bd7349 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/model/QuadrupedModel.class differ diff --git a/build/_compileJava_2/net/minecraft/client/model/RabbitModel.class b/build/_compileJava_2/net/minecraft/client/model/RabbitModel.class new file mode 100644 index 000000000..6a45777ea Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/model/RabbitModel.class differ diff --git a/build/_compileJava_2/net/minecraft/client/model/RaftModel.class b/build/_compileJava_2/net/minecraft/client/model/RaftModel.class new file mode 100644 index 000000000..4c6b6bb53 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/model/RaftModel.class differ diff --git a/build/_compileJava_2/net/minecraft/client/model/RavagerModel.class b/build/_compileJava_2/net/minecraft/client/model/RavagerModel.class new file mode 100644 index 000000000..6a26cf988 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/model/RavagerModel.class differ diff --git a/build/_compileJava_2/net/minecraft/client/model/SalmonModel.class b/build/_compileJava_2/net/minecraft/client/model/SalmonModel.class new file mode 100644 index 000000000..3ad59c056 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/model/SalmonModel.class differ diff --git a/build/_compileJava_2/net/minecraft/client/model/SheepFurModel.class b/build/_compileJava_2/net/minecraft/client/model/SheepFurModel.class new file mode 100644 index 000000000..2ae49d61c Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/model/SheepFurModel.class differ diff --git a/build/_compileJava_2/net/minecraft/client/model/SheepModel.class b/build/_compileJava_2/net/minecraft/client/model/SheepModel.class new file mode 100644 index 000000000..9693ec9d4 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/model/SheepModel.class differ diff --git a/build/_compileJava_2/net/minecraft/client/model/ShieldModel.class b/build/_compileJava_2/net/minecraft/client/model/ShieldModel.class new file mode 100644 index 000000000..e44e72e23 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/model/ShieldModel.class differ diff --git a/build/_compileJava_2/net/minecraft/client/model/ShulkerBulletModel.class b/build/_compileJava_2/net/minecraft/client/model/ShulkerBulletModel.class new file mode 100644 index 000000000..8b17f2999 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/model/ShulkerBulletModel.class differ diff --git a/build/_compileJava_2/net/minecraft/client/model/ShulkerModel.class b/build/_compileJava_2/net/minecraft/client/model/ShulkerModel.class new file mode 100644 index 000000000..e9748f09a Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/model/ShulkerModel.class differ diff --git a/build/_compileJava_2/net/minecraft/client/model/SilverfishModel.class b/build/_compileJava_2/net/minecraft/client/model/SilverfishModel.class new file mode 100644 index 000000000..297b53b55 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/model/SilverfishModel.class differ diff --git a/build/_compileJava_2/net/minecraft/client/model/SkeletonModel.class b/build/_compileJava_2/net/minecraft/client/model/SkeletonModel.class new file mode 100644 index 000000000..d7268c59a Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/model/SkeletonModel.class differ diff --git a/build/_compileJava_2/net/minecraft/client/model/SkullModel.class b/build/_compileJava_2/net/minecraft/client/model/SkullModel.class new file mode 100644 index 000000000..66f8caa5e Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/model/SkullModel.class differ diff --git a/build/_compileJava_2/net/minecraft/client/model/SkullModelBase.class b/build/_compileJava_2/net/minecraft/client/model/SkullModelBase.class new file mode 100644 index 000000000..159efee85 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/model/SkullModelBase.class differ diff --git a/build/_compileJava_2/net/minecraft/client/model/SlimeModel.class b/build/_compileJava_2/net/minecraft/client/model/SlimeModel.class new file mode 100644 index 000000000..ed53b5aed Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/model/SlimeModel.class differ diff --git a/build/_compileJava_2/net/minecraft/client/model/SnifferModel.class b/build/_compileJava_2/net/minecraft/client/model/SnifferModel.class new file mode 100644 index 000000000..589a35e7a Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/model/SnifferModel.class differ diff --git a/build/_compileJava_2/net/minecraft/client/model/SnowGolemModel.class b/build/_compileJava_2/net/minecraft/client/model/SnowGolemModel.class new file mode 100644 index 000000000..7c424ff21 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/model/SnowGolemModel.class differ diff --git a/build/_compileJava_2/net/minecraft/client/model/SpiderModel.class b/build/_compileJava_2/net/minecraft/client/model/SpiderModel.class new file mode 100644 index 000000000..729087f77 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/model/SpiderModel.class differ diff --git a/build/_compileJava_2/net/minecraft/client/model/SquidModel.class b/build/_compileJava_2/net/minecraft/client/model/SquidModel.class new file mode 100644 index 000000000..dd4e5d95e Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/model/SquidModel.class differ diff --git a/build/_compileJava_2/net/minecraft/client/model/StriderModel.class b/build/_compileJava_2/net/minecraft/client/model/StriderModel.class new file mode 100644 index 000000000..2659f8d32 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/model/StriderModel.class differ diff --git a/build/_compileJava_2/net/minecraft/client/model/TadpoleModel.class b/build/_compileJava_2/net/minecraft/client/model/TadpoleModel.class new file mode 100644 index 000000000..88df80093 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/model/TadpoleModel.class differ diff --git a/build/_compileJava_2/net/minecraft/client/model/TridentModel.class b/build/_compileJava_2/net/minecraft/client/model/TridentModel.class new file mode 100644 index 000000000..1ae325777 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/model/TridentModel.class differ diff --git a/build/_compileJava_2/net/minecraft/client/model/TropicalFishModelA.class b/build/_compileJava_2/net/minecraft/client/model/TropicalFishModelA.class new file mode 100644 index 000000000..42b8a7ecc Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/model/TropicalFishModelA.class differ diff --git a/build/_compileJava_2/net/minecraft/client/model/TropicalFishModelB.class b/build/_compileJava_2/net/minecraft/client/model/TropicalFishModelB.class new file mode 100644 index 000000000..19afabaa8 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/model/TropicalFishModelB.class differ diff --git a/build/_compileJava_2/net/minecraft/client/model/TurtleModel.class b/build/_compileJava_2/net/minecraft/client/model/TurtleModel.class new file mode 100644 index 000000000..94762b14b Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/model/TurtleModel.class differ diff --git a/build/_compileJava_2/net/minecraft/client/model/VexModel.class b/build/_compileJava_2/net/minecraft/client/model/VexModel.class new file mode 100644 index 000000000..01aac8a24 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/model/VexModel.class differ diff --git a/build/_compileJava_2/net/minecraft/client/model/VillagerHeadModel.class b/build/_compileJava_2/net/minecraft/client/model/VillagerHeadModel.class new file mode 100644 index 000000000..b29c49398 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/model/VillagerHeadModel.class differ diff --git a/build/_compileJava_2/net/minecraft/client/model/VillagerModel.class b/build/_compileJava_2/net/minecraft/client/model/VillagerModel.class new file mode 100644 index 000000000..baa46dbf9 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/model/VillagerModel.class differ diff --git a/build/_compileJava_2/net/minecraft/client/model/WardenModel.class b/build/_compileJava_2/net/minecraft/client/model/WardenModel.class new file mode 100644 index 000000000..183977544 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/model/WardenModel.class differ diff --git a/build/_compileJava_2/net/minecraft/client/model/WaterPatchModel.class b/build/_compileJava_2/net/minecraft/client/model/WaterPatchModel.class new file mode 100644 index 000000000..3deeda753 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/model/WaterPatchModel.class differ diff --git a/build/_compileJava_2/net/minecraft/client/model/WitchModel.class b/build/_compileJava_2/net/minecraft/client/model/WitchModel.class new file mode 100644 index 000000000..6dc21884b Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/model/WitchModel.class differ diff --git a/build/_compileJava_2/net/minecraft/client/model/WitherBossModel.class b/build/_compileJava_2/net/minecraft/client/model/WitherBossModel.class new file mode 100644 index 000000000..fd5fd2f7d Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/model/WitherBossModel.class differ diff --git a/build/_compileJava_2/net/minecraft/client/model/WolfModel.class b/build/_compileJava_2/net/minecraft/client/model/WolfModel.class new file mode 100644 index 000000000..d2dbccce7 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/model/WolfModel.class differ diff --git a/build/_compileJava_2/net/minecraft/client/model/ZombieModel.class b/build/_compileJava_2/net/minecraft/client/model/ZombieModel.class new file mode 100644 index 000000000..6f8af8301 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/model/ZombieModel.class differ diff --git a/build/_compileJava_2/net/minecraft/client/model/ZombieVillagerModel.class b/build/_compileJava_2/net/minecraft/client/model/ZombieVillagerModel.class new file mode 100644 index 000000000..238b7e08e Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/model/ZombieVillagerModel.class differ diff --git a/build/_compileJava_2/net/minecraft/client/model/dragon/DragonHeadModel.class b/build/_compileJava_2/net/minecraft/client/model/dragon/DragonHeadModel.class new file mode 100644 index 000000000..4b338153d Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/model/dragon/DragonHeadModel.class differ diff --git a/build/_compileJava_2/net/minecraft/client/model/dragon/package-info.class b/build/_compileJava_2/net/minecraft/client/model/dragon/package-info.class new file mode 100644 index 000000000..9993fef62 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/model/dragon/package-info.class differ diff --git a/build/_compileJava_2/net/minecraft/client/model/geom/EntityModelSet.class b/build/_compileJava_2/net/minecraft/client/model/geom/EntityModelSet.class new file mode 100644 index 000000000..f77431b39 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/model/geom/EntityModelSet.class differ diff --git a/build/_compileJava_2/net/minecraft/client/model/geom/LayerDefinitions.class b/build/_compileJava_2/net/minecraft/client/model/geom/LayerDefinitions.class new file mode 100644 index 000000000..b00cd9948 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/model/geom/LayerDefinitions.class differ diff --git a/build/_compileJava_2/net/minecraft/client/model/geom/ModelLayerLocation.class b/build/_compileJava_2/net/minecraft/client/model/geom/ModelLayerLocation.class new file mode 100644 index 000000000..32c0adead Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/model/geom/ModelLayerLocation.class differ diff --git a/build/_compileJava_2/net/minecraft/client/model/geom/ModelLayers.class b/build/_compileJava_2/net/minecraft/client/model/geom/ModelLayers.class new file mode 100644 index 000000000..680410f99 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/model/geom/ModelLayers.class differ diff --git a/build/_compileJava_2/net/minecraft/client/model/geom/ModelPart$Cube.class b/build/_compileJava_2/net/minecraft/client/model/geom/ModelPart$Cube.class new file mode 100644 index 000000000..c21ea63da Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/model/geom/ModelPart$Cube.class differ diff --git a/build/_compileJava_2/net/minecraft/client/model/geom/ModelPart$Polygon.class b/build/_compileJava_2/net/minecraft/client/model/geom/ModelPart$Polygon.class new file mode 100644 index 000000000..1325b8394 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/model/geom/ModelPart$Polygon.class differ diff --git a/build/_compileJava_2/net/minecraft/client/model/geom/ModelPart$Vertex.class b/build/_compileJava_2/net/minecraft/client/model/geom/ModelPart$Vertex.class new file mode 100644 index 000000000..2287fb262 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/model/geom/ModelPart$Vertex.class differ diff --git a/build/_compileJava_2/net/minecraft/client/model/geom/ModelPart$Visitor.class b/build/_compileJava_2/net/minecraft/client/model/geom/ModelPart$Visitor.class new file mode 100644 index 000000000..9416e4002 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/model/geom/ModelPart$Visitor.class differ diff --git a/build/_compileJava_2/net/minecraft/client/model/geom/ModelPart.class b/build/_compileJava_2/net/minecraft/client/model/geom/ModelPart.class new file mode 100644 index 000000000..6deb512d1 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/model/geom/ModelPart.class differ diff --git a/build/_compileJava_2/net/minecraft/client/model/geom/PartNames.class b/build/_compileJava_2/net/minecraft/client/model/geom/PartNames.class new file mode 100644 index 000000000..f0333a3b3 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/model/geom/PartNames.class differ diff --git a/build/_compileJava_2/net/minecraft/client/model/geom/PartPose.class b/build/_compileJava_2/net/minecraft/client/model/geom/PartPose.class new file mode 100644 index 000000000..fa85f5c0d Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/model/geom/PartPose.class differ diff --git a/build/_compileJava_2/net/minecraft/client/model/geom/builders/CubeDefinition.class b/build/_compileJava_2/net/minecraft/client/model/geom/builders/CubeDefinition.class new file mode 100644 index 000000000..3872e63c2 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/model/geom/builders/CubeDefinition.class differ diff --git a/build/_compileJava_2/net/minecraft/client/model/geom/builders/CubeDeformation.class b/build/_compileJava_2/net/minecraft/client/model/geom/builders/CubeDeformation.class new file mode 100644 index 000000000..b134686f4 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/model/geom/builders/CubeDeformation.class differ diff --git a/build/_compileJava_2/net/minecraft/client/model/geom/builders/CubeListBuilder.class b/build/_compileJava_2/net/minecraft/client/model/geom/builders/CubeListBuilder.class new file mode 100644 index 000000000..344c7ac4f Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/model/geom/builders/CubeListBuilder.class differ diff --git a/build/_compileJava_2/net/minecraft/client/model/geom/builders/LayerDefinition.class b/build/_compileJava_2/net/minecraft/client/model/geom/builders/LayerDefinition.class new file mode 100644 index 000000000..564e01a89 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/model/geom/builders/LayerDefinition.class differ diff --git a/build/_compileJava_2/net/minecraft/client/model/geom/builders/MaterialDefinition.class b/build/_compileJava_2/net/minecraft/client/model/geom/builders/MaterialDefinition.class new file mode 100644 index 000000000..15712005c Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/model/geom/builders/MaterialDefinition.class differ diff --git a/build/_compileJava_2/net/minecraft/client/model/geom/builders/MeshDefinition.class b/build/_compileJava_2/net/minecraft/client/model/geom/builders/MeshDefinition.class new file mode 100644 index 000000000..6501c1816 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/model/geom/builders/MeshDefinition.class differ diff --git a/build/_compileJava_2/net/minecraft/client/model/geom/builders/PartDefinition.class b/build/_compileJava_2/net/minecraft/client/model/geom/builders/PartDefinition.class new file mode 100644 index 000000000..046d47070 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/model/geom/builders/PartDefinition.class differ diff --git a/build/_compileJava_2/net/minecraft/client/model/geom/builders/UVPair.class b/build/_compileJava_2/net/minecraft/client/model/geom/builders/UVPair.class new file mode 100644 index 000000000..24767f433 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/model/geom/builders/UVPair.class differ diff --git a/build/_compileJava_2/net/minecraft/client/model/geom/builders/package-info.class b/build/_compileJava_2/net/minecraft/client/model/geom/builders/package-info.class new file mode 100644 index 000000000..bf3ec3c90 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/model/geom/builders/package-info.class differ diff --git a/build/_compileJava_2/net/minecraft/client/model/geom/package-info.class b/build/_compileJava_2/net/minecraft/client/model/geom/package-info.class new file mode 100644 index 000000000..95d5dbe8d Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/model/geom/package-info.class differ diff --git a/build/_compileJava_2/net/minecraft/client/model/package-info.class b/build/_compileJava_2/net/minecraft/client/model/package-info.class new file mode 100644 index 000000000..b7e3c18a9 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/model/package-info.class differ diff --git a/build/_compileJava_2/net/minecraft/client/multiplayer/AccountProfileKeyPairManager.class b/build/_compileJava_2/net/minecraft/client/multiplayer/AccountProfileKeyPairManager.class new file mode 100644 index 000000000..6039e631c Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/multiplayer/AccountProfileKeyPairManager.class differ diff --git a/build/_compileJava_2/net/minecraft/client/multiplayer/ClientAdvancements$Listener.class b/build/_compileJava_2/net/minecraft/client/multiplayer/ClientAdvancements$Listener.class new file mode 100644 index 000000000..fc692d082 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/multiplayer/ClientAdvancements$Listener.class differ diff --git a/build/_compileJava_2/net/minecraft/client/multiplayer/ClientAdvancements.class b/build/_compileJava_2/net/minecraft/client/multiplayer/ClientAdvancements.class new file mode 100644 index 000000000..8c3867fe8 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/multiplayer/ClientAdvancements.class differ diff --git a/build/_compileJava_2/net/minecraft/client/multiplayer/ClientChunkCache$Storage.class b/build/_compileJava_2/net/minecraft/client/multiplayer/ClientChunkCache$Storage.class new file mode 100644 index 000000000..fa641245c Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/multiplayer/ClientChunkCache$Storage.class differ diff --git a/build/_compileJava_2/net/minecraft/client/multiplayer/ClientChunkCache.class b/build/_compileJava_2/net/minecraft/client/multiplayer/ClientChunkCache.class new file mode 100644 index 000000000..559aae2cf Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/multiplayer/ClientChunkCache.class differ diff --git a/build/_compileJava_2/net/minecraft/client/multiplayer/ClientHandshakePacketListenerImpl.class b/build/_compileJava_2/net/minecraft/client/multiplayer/ClientHandshakePacketListenerImpl.class new file mode 100644 index 000000000..b22fa3fe2 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/multiplayer/ClientHandshakePacketListenerImpl.class differ diff --git a/build/_compileJava_2/net/minecraft/client/multiplayer/ClientLevel$1.class b/build/_compileJava_2/net/minecraft/client/multiplayer/ClientLevel$1.class new file mode 100644 index 000000000..745fc621c Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/multiplayer/ClientLevel$1.class differ diff --git a/build/_compileJava_2/net/minecraft/client/multiplayer/ClientLevel$ClientLevelData.class b/build/_compileJava_2/net/minecraft/client/multiplayer/ClientLevel$ClientLevelData.class new file mode 100644 index 000000000..e339a1dec Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/multiplayer/ClientLevel$ClientLevelData.class differ diff --git a/build/_compileJava_2/net/minecraft/client/multiplayer/ClientLevel$EntityCallbacks.class b/build/_compileJava_2/net/minecraft/client/multiplayer/ClientLevel$EntityCallbacks.class new file mode 100644 index 000000000..09a7b8303 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/multiplayer/ClientLevel$EntityCallbacks.class differ diff --git a/build/_compileJava_2/net/minecraft/client/multiplayer/ClientLevel.class b/build/_compileJava_2/net/minecraft/client/multiplayer/ClientLevel.class new file mode 100644 index 000000000..092a851e9 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/multiplayer/ClientLevel.class differ diff --git a/build/_compileJava_2/net/minecraft/client/multiplayer/ClientPacketListener$1.class b/build/_compileJava_2/net/minecraft/client/multiplayer/ClientPacketListener$1.class new file mode 100644 index 000000000..9bc4a6498 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/multiplayer/ClientPacketListener$1.class differ diff --git a/build/_compileJava_2/net/minecraft/client/multiplayer/ClientPacketListener$DeferredPacket.class b/build/_compileJava_2/net/minecraft/client/multiplayer/ClientPacketListener$DeferredPacket.class new file mode 100644 index 000000000..c81e3fc96 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/multiplayer/ClientPacketListener$DeferredPacket.class differ diff --git a/build/_compileJava_2/net/minecraft/client/multiplayer/ClientPacketListener.class b/build/_compileJava_2/net/minecraft/client/multiplayer/ClientPacketListener.class new file mode 100644 index 000000000..95c4517fe Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/multiplayer/ClientPacketListener.class differ diff --git a/build/_compileJava_2/net/minecraft/client/multiplayer/ClientRegistryLayer.class b/build/_compileJava_2/net/minecraft/client/multiplayer/ClientRegistryLayer.class new file mode 100644 index 000000000..26a4a5c27 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/multiplayer/ClientRegistryLayer.class differ diff --git a/build/_compileJava_2/net/minecraft/client/multiplayer/ClientSuggestionProvider$1.class b/build/_compileJava_2/net/minecraft/client/multiplayer/ClientSuggestionProvider$1.class new file mode 100644 index 000000000..18918392b Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/multiplayer/ClientSuggestionProvider$1.class differ diff --git a/build/_compileJava_2/net/minecraft/client/multiplayer/ClientSuggestionProvider.class b/build/_compileJava_2/net/minecraft/client/multiplayer/ClientSuggestionProvider.class new file mode 100644 index 000000000..093ce83c6 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/multiplayer/ClientSuggestionProvider.class differ diff --git a/build/_compileJava_2/net/minecraft/client/multiplayer/MultiPlayerGameMode.class b/build/_compileJava_2/net/minecraft/client/multiplayer/MultiPlayerGameMode.class new file mode 100644 index 000000000..18b3ced27 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/multiplayer/MultiPlayerGameMode.class differ diff --git a/build/_compileJava_2/net/minecraft/client/multiplayer/PlayerInfo.class b/build/_compileJava_2/net/minecraft/client/multiplayer/PlayerInfo.class new file mode 100644 index 000000000..f315f17aa Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/multiplayer/PlayerInfo.class differ diff --git a/build/_compileJava_2/net/minecraft/client/multiplayer/ProfileKeyPairManager$1.class b/build/_compileJava_2/net/minecraft/client/multiplayer/ProfileKeyPairManager$1.class new file mode 100644 index 000000000..03bf948fb Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/multiplayer/ProfileKeyPairManager$1.class differ diff --git a/build/_compileJava_2/net/minecraft/client/multiplayer/ProfileKeyPairManager.class b/build/_compileJava_2/net/minecraft/client/multiplayer/ProfileKeyPairManager.class new file mode 100644 index 000000000..241eb1eae Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/multiplayer/ProfileKeyPairManager.class differ diff --git a/build/_compileJava_2/net/minecraft/client/multiplayer/ServerData$ServerPackStatus.class b/build/_compileJava_2/net/minecraft/client/multiplayer/ServerData$ServerPackStatus.class new file mode 100644 index 000000000..a45a5f948 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/multiplayer/ServerData$ServerPackStatus.class differ diff --git a/build/_compileJava_2/net/minecraft/client/multiplayer/ServerData.class b/build/_compileJava_2/net/minecraft/client/multiplayer/ServerData.class new file mode 100644 index 000000000..e924a88e5 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/multiplayer/ServerData.class differ diff --git a/build/_compileJava_2/net/minecraft/client/multiplayer/ServerList.class b/build/_compileJava_2/net/minecraft/client/multiplayer/ServerList.class new file mode 100644 index 000000000..2746d95df Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/multiplayer/ServerList.class differ diff --git a/build/_compileJava_2/net/minecraft/client/multiplayer/ServerStatusPinger$1.class b/build/_compileJava_2/net/minecraft/client/multiplayer/ServerStatusPinger$1.class new file mode 100644 index 000000000..83b8989d3 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/multiplayer/ServerStatusPinger$1.class differ diff --git a/build/_compileJava_2/net/minecraft/client/multiplayer/ServerStatusPinger$2$1.class b/build/_compileJava_2/net/minecraft/client/multiplayer/ServerStatusPinger$2$1.class new file mode 100644 index 000000000..8275913fa Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/multiplayer/ServerStatusPinger$2$1.class differ diff --git a/build/_compileJava_2/net/minecraft/client/multiplayer/ServerStatusPinger$2.class b/build/_compileJava_2/net/minecraft/client/multiplayer/ServerStatusPinger$2.class new file mode 100644 index 000000000..d43a7d6ba Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/multiplayer/ServerStatusPinger$2.class differ diff --git a/build/_compileJava_2/net/minecraft/client/multiplayer/ServerStatusPinger.class b/build/_compileJava_2/net/minecraft/client/multiplayer/ServerStatusPinger.class new file mode 100644 index 000000000..e3147e87e Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/multiplayer/ServerStatusPinger.class differ diff --git a/build/_compileJava_2/net/minecraft/client/multiplayer/chat/ChatListener$Message.class b/build/_compileJava_2/net/minecraft/client/multiplayer/chat/ChatListener$Message.class new file mode 100644 index 000000000..382ffa268 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/multiplayer/chat/ChatListener$Message.class differ diff --git a/build/_compileJava_2/net/minecraft/client/multiplayer/chat/ChatListener.class b/build/_compileJava_2/net/minecraft/client/multiplayer/chat/ChatListener.class new file mode 100644 index 000000000..651b143f1 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/multiplayer/chat/ChatListener.class differ diff --git a/build/_compileJava_2/net/minecraft/client/multiplayer/chat/ChatLog.class b/build/_compileJava_2/net/minecraft/client/multiplayer/chat/ChatLog.class new file mode 100644 index 000000000..14de9873c Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/multiplayer/chat/ChatLog.class differ diff --git a/build/_compileJava_2/net/minecraft/client/multiplayer/chat/ChatTrustLevel$1.class b/build/_compileJava_2/net/minecraft/client/multiplayer/chat/ChatTrustLevel$1.class new file mode 100644 index 000000000..c2f383660 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/multiplayer/chat/ChatTrustLevel$1.class differ diff --git a/build/_compileJava_2/net/minecraft/client/multiplayer/chat/ChatTrustLevel.class b/build/_compileJava_2/net/minecraft/client/multiplayer/chat/ChatTrustLevel.class new file mode 100644 index 000000000..410f88daf Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/multiplayer/chat/ChatTrustLevel.class differ diff --git a/build/_compileJava_2/net/minecraft/client/multiplayer/chat/LoggedChatEvent$Type.class b/build/_compileJava_2/net/minecraft/client/multiplayer/chat/LoggedChatEvent$Type.class new file mode 100644 index 000000000..3d99a7a61 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/multiplayer/chat/LoggedChatEvent$Type.class differ diff --git a/build/_compileJava_2/net/minecraft/client/multiplayer/chat/LoggedChatEvent.class b/build/_compileJava_2/net/minecraft/client/multiplayer/chat/LoggedChatEvent.class new file mode 100644 index 000000000..a4204c105 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/multiplayer/chat/LoggedChatEvent.class differ diff --git a/build/_compileJava_2/net/minecraft/client/multiplayer/chat/LoggedChatMessage$Player.class b/build/_compileJava_2/net/minecraft/client/multiplayer/chat/LoggedChatMessage$Player.class new file mode 100644 index 000000000..c62c6ae62 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/multiplayer/chat/LoggedChatMessage$Player.class differ diff --git a/build/_compileJava_2/net/minecraft/client/multiplayer/chat/LoggedChatMessage$System.class b/build/_compileJava_2/net/minecraft/client/multiplayer/chat/LoggedChatMessage$System.class new file mode 100644 index 000000000..890c4d061 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/multiplayer/chat/LoggedChatMessage$System.class differ diff --git a/build/_compileJava_2/net/minecraft/client/multiplayer/chat/LoggedChatMessage.class b/build/_compileJava_2/net/minecraft/client/multiplayer/chat/LoggedChatMessage.class new file mode 100644 index 000000000..dac6e5dcb Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/multiplayer/chat/LoggedChatMessage.class differ diff --git a/build/_compileJava_2/net/minecraft/client/multiplayer/chat/package-info.class b/build/_compileJava_2/net/minecraft/client/multiplayer/chat/package-info.class new file mode 100644 index 000000000..27873f6db Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/multiplayer/chat/package-info.class differ diff --git a/build/_compileJava_2/net/minecraft/client/multiplayer/chat/report/AbuseReportSender$1.class b/build/_compileJava_2/net/minecraft/client/multiplayer/chat/report/AbuseReportSender$1.class new file mode 100644 index 000000000..d435ffb84 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/multiplayer/chat/report/AbuseReportSender$1.class differ diff --git a/build/_compileJava_2/net/minecraft/client/multiplayer/chat/report/AbuseReportSender$SendException.class b/build/_compileJava_2/net/minecraft/client/multiplayer/chat/report/AbuseReportSender$SendException.class new file mode 100644 index 000000000..0e281f92f Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/multiplayer/chat/report/AbuseReportSender$SendException.class differ diff --git a/build/_compileJava_2/net/minecraft/client/multiplayer/chat/report/AbuseReportSender$Services.class b/build/_compileJava_2/net/minecraft/client/multiplayer/chat/report/AbuseReportSender$Services.class new file mode 100644 index 000000000..a12bc32d7 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/multiplayer/chat/report/AbuseReportSender$Services.class differ diff --git a/build/_compileJava_2/net/minecraft/client/multiplayer/chat/report/AbuseReportSender.class b/build/_compileJava_2/net/minecraft/client/multiplayer/chat/report/AbuseReportSender.class new file mode 100644 index 000000000..68bb27fa9 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/multiplayer/chat/report/AbuseReportSender.class differ diff --git a/build/_compileJava_2/net/minecraft/client/multiplayer/chat/report/BanReason.class b/build/_compileJava_2/net/minecraft/client/multiplayer/chat/report/BanReason.class new file mode 100644 index 000000000..8057580a6 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/multiplayer/chat/report/BanReason.class differ diff --git a/build/_compileJava_2/net/minecraft/client/multiplayer/chat/report/ChatReportBuilder$CannotBuildReason.class b/build/_compileJava_2/net/minecraft/client/multiplayer/chat/report/ChatReportBuilder$CannotBuildReason.class new file mode 100644 index 000000000..4dc9223b3 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/multiplayer/chat/report/ChatReportBuilder$CannotBuildReason.class differ diff --git a/build/_compileJava_2/net/minecraft/client/multiplayer/chat/report/ChatReportBuilder$ChatReport.class b/build/_compileJava_2/net/minecraft/client/multiplayer/chat/report/ChatReportBuilder$ChatReport.class new file mode 100644 index 000000000..2d705b91f Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/multiplayer/chat/report/ChatReportBuilder$ChatReport.class differ diff --git a/build/_compileJava_2/net/minecraft/client/multiplayer/chat/report/ChatReportBuilder$Result.class b/build/_compileJava_2/net/minecraft/client/multiplayer/chat/report/ChatReportBuilder$Result.class new file mode 100644 index 000000000..7831d0a21 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/multiplayer/chat/report/ChatReportBuilder$Result.class differ diff --git a/build/_compileJava_2/net/minecraft/client/multiplayer/chat/report/ChatReportBuilder.class b/build/_compileJava_2/net/minecraft/client/multiplayer/chat/report/ChatReportBuilder.class new file mode 100644 index 000000000..a77fd49fa Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/multiplayer/chat/report/ChatReportBuilder.class differ diff --git a/build/_compileJava_2/net/minecraft/client/multiplayer/chat/report/ChatReportContextBuilder$Collector.class b/build/_compileJava_2/net/minecraft/client/multiplayer/chat/report/ChatReportContextBuilder$Collector.class new file mode 100644 index 000000000..a7b853e5d Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/multiplayer/chat/report/ChatReportContextBuilder$Collector.class differ diff --git a/build/_compileJava_2/net/minecraft/client/multiplayer/chat/report/ChatReportContextBuilder$Handler.class b/build/_compileJava_2/net/minecraft/client/multiplayer/chat/report/ChatReportContextBuilder$Handler.class new file mode 100644 index 000000000..a8fd631c7 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/multiplayer/chat/report/ChatReportContextBuilder$Handler.class differ diff --git a/build/_compileJava_2/net/minecraft/client/multiplayer/chat/report/ChatReportContextBuilder.class b/build/_compileJava_2/net/minecraft/client/multiplayer/chat/report/ChatReportContextBuilder.class new file mode 100644 index 000000000..d06dfda3c Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/multiplayer/chat/report/ChatReportContextBuilder.class differ diff --git a/build/_compileJava_2/net/minecraft/client/multiplayer/chat/report/ReportEnvironment$Server$Realm.class b/build/_compileJava_2/net/minecraft/client/multiplayer/chat/report/ReportEnvironment$Server$Realm.class new file mode 100644 index 000000000..7f3ac285d Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/multiplayer/chat/report/ReportEnvironment$Server$Realm.class differ diff --git a/build/_compileJava_2/net/minecraft/client/multiplayer/chat/report/ReportEnvironment$Server$ThirdParty.class b/build/_compileJava_2/net/minecraft/client/multiplayer/chat/report/ReportEnvironment$Server$ThirdParty.class new file mode 100644 index 000000000..60470250a Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/multiplayer/chat/report/ReportEnvironment$Server$ThirdParty.class differ diff --git a/build/_compileJava_2/net/minecraft/client/multiplayer/chat/report/ReportEnvironment$Server.class b/build/_compileJava_2/net/minecraft/client/multiplayer/chat/report/ReportEnvironment$Server.class new file mode 100644 index 000000000..958bb1408 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/multiplayer/chat/report/ReportEnvironment$Server.class differ diff --git a/build/_compileJava_2/net/minecraft/client/multiplayer/chat/report/ReportEnvironment.class b/build/_compileJava_2/net/minecraft/client/multiplayer/chat/report/ReportEnvironment.class new file mode 100644 index 000000000..7318d8b5c Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/multiplayer/chat/report/ReportEnvironment.class differ diff --git a/build/_compileJava_2/net/minecraft/client/multiplayer/chat/report/ReportReason.class b/build/_compileJava_2/net/minecraft/client/multiplayer/chat/report/ReportReason.class new file mode 100644 index 000000000..761665c46 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/multiplayer/chat/report/ReportReason.class differ diff --git a/build/_compileJava_2/net/minecraft/client/multiplayer/chat/report/ReportingContext.class b/build/_compileJava_2/net/minecraft/client/multiplayer/chat/report/ReportingContext.class new file mode 100644 index 000000000..eb289355d Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/multiplayer/chat/report/ReportingContext.class differ diff --git a/build/_compileJava_2/net/minecraft/client/multiplayer/chat/report/package-info.class b/build/_compileJava_2/net/minecraft/client/multiplayer/chat/report/package-info.class new file mode 100644 index 000000000..323f3619f Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/multiplayer/chat/report/package-info.class differ diff --git a/build/_compileJava_2/net/minecraft/client/multiplayer/package-info.class b/build/_compileJava_2/net/minecraft/client/multiplayer/package-info.class new file mode 100644 index 000000000..f6089398f Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/multiplayer/package-info.class differ diff --git a/build/_compileJava_2/net/minecraft/client/multiplayer/prediction/BlockStatePredictionHandler$ServerVerifiedState.class b/build/_compileJava_2/net/minecraft/client/multiplayer/prediction/BlockStatePredictionHandler$ServerVerifiedState.class new file mode 100644 index 000000000..5231e227e Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/multiplayer/prediction/BlockStatePredictionHandler$ServerVerifiedState.class differ diff --git a/build/_compileJava_2/net/minecraft/client/multiplayer/prediction/BlockStatePredictionHandler.class b/build/_compileJava_2/net/minecraft/client/multiplayer/prediction/BlockStatePredictionHandler.class new file mode 100644 index 000000000..28eeb76bf Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/multiplayer/prediction/BlockStatePredictionHandler.class differ diff --git a/build/_compileJava_2/net/minecraft/client/multiplayer/prediction/PredictiveAction.class b/build/_compileJava_2/net/minecraft/client/multiplayer/prediction/PredictiveAction.class new file mode 100644 index 000000000..8b6b7f58b Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/multiplayer/prediction/PredictiveAction.class differ diff --git a/build/_compileJava_2/net/minecraft/client/multiplayer/prediction/package-info.class b/build/_compileJava_2/net/minecraft/client/multiplayer/prediction/package-info.class new file mode 100644 index 000000000..de1963714 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/multiplayer/prediction/package-info.class differ diff --git a/build/_compileJava_2/net/minecraft/client/multiplayer/resolver/AddressCheck$1.class b/build/_compileJava_2/net/minecraft/client/multiplayer/resolver/AddressCheck$1.class new file mode 100644 index 000000000..8869384c3 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/multiplayer/resolver/AddressCheck$1.class differ diff --git a/build/_compileJava_2/net/minecraft/client/multiplayer/resolver/AddressCheck.class b/build/_compileJava_2/net/minecraft/client/multiplayer/resolver/AddressCheck.class new file mode 100644 index 000000000..885bebebc Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/multiplayer/resolver/AddressCheck.class differ diff --git a/build/_compileJava_2/net/minecraft/client/multiplayer/resolver/ResolvedServerAddress$1.class b/build/_compileJava_2/net/minecraft/client/multiplayer/resolver/ResolvedServerAddress$1.class new file mode 100644 index 000000000..2b5f6729a Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/multiplayer/resolver/ResolvedServerAddress$1.class differ diff --git a/build/_compileJava_2/net/minecraft/client/multiplayer/resolver/ResolvedServerAddress.class b/build/_compileJava_2/net/minecraft/client/multiplayer/resolver/ResolvedServerAddress.class new file mode 100644 index 000000000..a96e912ba Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/multiplayer/resolver/ResolvedServerAddress.class differ diff --git a/build/_compileJava_2/net/minecraft/client/multiplayer/resolver/ServerAddress.class b/build/_compileJava_2/net/minecraft/client/multiplayer/resolver/ServerAddress.class new file mode 100644 index 000000000..0de3fba4e Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/multiplayer/resolver/ServerAddress.class differ diff --git a/build/_compileJava_2/net/minecraft/client/multiplayer/resolver/ServerAddressResolver.class b/build/_compileJava_2/net/minecraft/client/multiplayer/resolver/ServerAddressResolver.class new file mode 100644 index 000000000..75b40f1ce Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/multiplayer/resolver/ServerAddressResolver.class differ diff --git a/build/_compileJava_2/net/minecraft/client/multiplayer/resolver/ServerNameResolver.class b/build/_compileJava_2/net/minecraft/client/multiplayer/resolver/ServerNameResolver.class new file mode 100644 index 000000000..98b53e0d9 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/multiplayer/resolver/ServerNameResolver.class differ diff --git a/build/_compileJava_2/net/minecraft/client/multiplayer/resolver/ServerRedirectHandler.class b/build/_compileJava_2/net/minecraft/client/multiplayer/resolver/ServerRedirectHandler.class new file mode 100644 index 000000000..990680cbf Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/multiplayer/resolver/ServerRedirectHandler.class differ diff --git a/build/_compileJava_2/net/minecraft/client/multiplayer/resolver/package-info.class b/build/_compileJava_2/net/minecraft/client/multiplayer/resolver/package-info.class new file mode 100644 index 000000000..b969182d4 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/multiplayer/resolver/package-info.class differ diff --git a/build/_compileJava_2/net/minecraft/client/package-info.class b/build/_compileJava_2/net/minecraft/client/package-info.class new file mode 100644 index 000000000..231fa814c Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/package-info.class differ diff --git a/build/_compileJava_2/net/minecraft/client/particle/AshParticle$Provider.class b/build/_compileJava_2/net/minecraft/client/particle/AshParticle$Provider.class new file mode 100644 index 000000000..04a7faf94 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/particle/AshParticle$Provider.class differ diff --git a/build/_compileJava_2/net/minecraft/client/particle/AshParticle.class b/build/_compileJava_2/net/minecraft/client/particle/AshParticle.class new file mode 100644 index 000000000..f348fb9c0 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/particle/AshParticle.class differ diff --git a/build/_compileJava_2/net/minecraft/client/particle/AttackSweepParticle$Provider.class b/build/_compileJava_2/net/minecraft/client/particle/AttackSweepParticle$Provider.class new file mode 100644 index 000000000..a3696b762 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/particle/AttackSweepParticle$Provider.class differ diff --git a/build/_compileJava_2/net/minecraft/client/particle/AttackSweepParticle.class b/build/_compileJava_2/net/minecraft/client/particle/AttackSweepParticle.class new file mode 100644 index 000000000..03315db78 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/particle/AttackSweepParticle.class differ diff --git a/build/_compileJava_2/net/minecraft/client/particle/BaseAshSmokeParticle.class b/build/_compileJava_2/net/minecraft/client/particle/BaseAshSmokeParticle.class new file mode 100644 index 000000000..68b7dceb4 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/particle/BaseAshSmokeParticle.class differ diff --git a/build/_compileJava_2/net/minecraft/client/particle/BlockMarker$Provider.class b/build/_compileJava_2/net/minecraft/client/particle/BlockMarker$Provider.class new file mode 100644 index 000000000..42ef61b5f Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/particle/BlockMarker$Provider.class differ diff --git a/build/_compileJava_2/net/minecraft/client/particle/BlockMarker.class b/build/_compileJava_2/net/minecraft/client/particle/BlockMarker.class new file mode 100644 index 000000000..fd2c251ca Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/particle/BlockMarker.class differ diff --git a/build/_compileJava_2/net/minecraft/client/particle/BreakingItemParticle$Provider.class b/build/_compileJava_2/net/minecraft/client/particle/BreakingItemParticle$Provider.class new file mode 100644 index 000000000..0a28fc4e6 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/particle/BreakingItemParticle$Provider.class differ diff --git a/build/_compileJava_2/net/minecraft/client/particle/BreakingItemParticle$SlimeProvider.class b/build/_compileJava_2/net/minecraft/client/particle/BreakingItemParticle$SlimeProvider.class new file mode 100644 index 000000000..fdc4f9d27 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/particle/BreakingItemParticle$SlimeProvider.class differ diff --git a/build/_compileJava_2/net/minecraft/client/particle/BreakingItemParticle$SnowballProvider.class b/build/_compileJava_2/net/minecraft/client/particle/BreakingItemParticle$SnowballProvider.class new file mode 100644 index 000000000..b28ee62c3 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/particle/BreakingItemParticle$SnowballProvider.class differ diff --git a/build/_compileJava_2/net/minecraft/client/particle/BreakingItemParticle.class b/build/_compileJava_2/net/minecraft/client/particle/BreakingItemParticle.class new file mode 100644 index 000000000..0cd339245 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/particle/BreakingItemParticle.class differ diff --git a/build/_compileJava_2/net/minecraft/client/particle/BubbleColumnUpParticle$Provider.class b/build/_compileJava_2/net/minecraft/client/particle/BubbleColumnUpParticle$Provider.class new file mode 100644 index 000000000..234b8f49d Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/particle/BubbleColumnUpParticle$Provider.class differ diff --git a/build/_compileJava_2/net/minecraft/client/particle/BubbleColumnUpParticle.class b/build/_compileJava_2/net/minecraft/client/particle/BubbleColumnUpParticle.class new file mode 100644 index 000000000..115309d9a Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/particle/BubbleColumnUpParticle.class differ diff --git a/build/_compileJava_2/net/minecraft/client/particle/BubbleParticle$Provider.class b/build/_compileJava_2/net/minecraft/client/particle/BubbleParticle$Provider.class new file mode 100644 index 000000000..794ce53b7 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/particle/BubbleParticle$Provider.class differ diff --git a/build/_compileJava_2/net/minecraft/client/particle/BubbleParticle.class b/build/_compileJava_2/net/minecraft/client/particle/BubbleParticle.class new file mode 100644 index 000000000..7bd7b38a4 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/particle/BubbleParticle.class differ diff --git a/build/_compileJava_2/net/minecraft/client/particle/BubblePopParticle$Provider.class b/build/_compileJava_2/net/minecraft/client/particle/BubblePopParticle$Provider.class new file mode 100644 index 000000000..c1f0b0635 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/particle/BubblePopParticle$Provider.class differ diff --git a/build/_compileJava_2/net/minecraft/client/particle/BubblePopParticle.class b/build/_compileJava_2/net/minecraft/client/particle/BubblePopParticle.class new file mode 100644 index 000000000..13a091b29 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/particle/BubblePopParticle.class differ diff --git a/build/_compileJava_2/net/minecraft/client/particle/CampfireSmokeParticle$CosyProvider.class b/build/_compileJava_2/net/minecraft/client/particle/CampfireSmokeParticle$CosyProvider.class new file mode 100644 index 000000000..c379ba9e5 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/particle/CampfireSmokeParticle$CosyProvider.class differ diff --git a/build/_compileJava_2/net/minecraft/client/particle/CampfireSmokeParticle$SignalProvider.class b/build/_compileJava_2/net/minecraft/client/particle/CampfireSmokeParticle$SignalProvider.class new file mode 100644 index 000000000..2afe01f4f Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/particle/CampfireSmokeParticle$SignalProvider.class differ diff --git a/build/_compileJava_2/net/minecraft/client/particle/CampfireSmokeParticle.class b/build/_compileJava_2/net/minecraft/client/particle/CampfireSmokeParticle.class new file mode 100644 index 000000000..84d63a7c9 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/particle/CampfireSmokeParticle.class differ diff --git a/build/_compileJava_2/net/minecraft/client/particle/CherryParticle.class b/build/_compileJava_2/net/minecraft/client/particle/CherryParticle.class new file mode 100644 index 000000000..8d6be0168 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/particle/CherryParticle.class differ diff --git a/build/_compileJava_2/net/minecraft/client/particle/CritParticle$DamageIndicatorProvider.class b/build/_compileJava_2/net/minecraft/client/particle/CritParticle$DamageIndicatorProvider.class new file mode 100644 index 000000000..733cf6d9d Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/particle/CritParticle$DamageIndicatorProvider.class differ diff --git a/build/_compileJava_2/net/minecraft/client/particle/CritParticle$MagicProvider.class b/build/_compileJava_2/net/minecraft/client/particle/CritParticle$MagicProvider.class new file mode 100644 index 000000000..28f2b13a7 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/particle/CritParticle$MagicProvider.class differ diff --git a/build/_compileJava_2/net/minecraft/client/particle/CritParticle$Provider.class b/build/_compileJava_2/net/minecraft/client/particle/CritParticle$Provider.class new file mode 100644 index 000000000..3a7cb0432 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/particle/CritParticle$Provider.class differ diff --git a/build/_compileJava_2/net/minecraft/client/particle/CritParticle.class b/build/_compileJava_2/net/minecraft/client/particle/CritParticle.class new file mode 100644 index 000000000..fb7c79149 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/particle/CritParticle.class differ diff --git a/build/_compileJava_2/net/minecraft/client/particle/DragonBreathParticle$Provider.class b/build/_compileJava_2/net/minecraft/client/particle/DragonBreathParticle$Provider.class new file mode 100644 index 000000000..e0e0257cb Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/particle/DragonBreathParticle$Provider.class differ diff --git a/build/_compileJava_2/net/minecraft/client/particle/DragonBreathParticle.class b/build/_compileJava_2/net/minecraft/client/particle/DragonBreathParticle.class new file mode 100644 index 000000000..d36f834b5 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/particle/DragonBreathParticle.class differ diff --git a/build/_compileJava_2/net/minecraft/client/particle/DripParticle$CoolingDripHangParticle.class b/build/_compileJava_2/net/minecraft/client/particle/DripParticle$CoolingDripHangParticle.class new file mode 100644 index 000000000..e1004c068 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/particle/DripParticle$CoolingDripHangParticle.class differ diff --git a/build/_compileJava_2/net/minecraft/client/particle/DripParticle$DripHangParticle.class b/build/_compileJava_2/net/minecraft/client/particle/DripParticle$DripHangParticle.class new file mode 100644 index 000000000..e34adaa84 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/particle/DripParticle$DripHangParticle.class differ diff --git a/build/_compileJava_2/net/minecraft/client/particle/DripParticle$DripLandParticle.class b/build/_compileJava_2/net/minecraft/client/particle/DripParticle$DripLandParticle.class new file mode 100644 index 000000000..a12d28cc4 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/particle/DripParticle$DripLandParticle.class differ diff --git a/build/_compileJava_2/net/minecraft/client/particle/DripParticle$DripstoneFallAndLandParticle.class b/build/_compileJava_2/net/minecraft/client/particle/DripParticle$DripstoneFallAndLandParticle.class new file mode 100644 index 000000000..ae59a2371 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/particle/DripParticle$DripstoneFallAndLandParticle.class differ diff --git a/build/_compileJava_2/net/minecraft/client/particle/DripParticle$FallAndLandParticle.class b/build/_compileJava_2/net/minecraft/client/particle/DripParticle$FallAndLandParticle.class new file mode 100644 index 000000000..f3d0e1a56 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/particle/DripParticle$FallAndLandParticle.class differ diff --git a/build/_compileJava_2/net/minecraft/client/particle/DripParticle$FallingParticle.class b/build/_compileJava_2/net/minecraft/client/particle/DripParticle$FallingParticle.class new file mode 100644 index 000000000..23a220d4b Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/particle/DripParticle$FallingParticle.class differ diff --git a/build/_compileJava_2/net/minecraft/client/particle/DripParticle$HoneyFallAndLandParticle.class b/build/_compileJava_2/net/minecraft/client/particle/DripParticle$HoneyFallAndLandParticle.class new file mode 100644 index 000000000..482de1d9d Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/particle/DripParticle$HoneyFallAndLandParticle.class differ diff --git a/build/_compileJava_2/net/minecraft/client/particle/DripParticle.class b/build/_compileJava_2/net/minecraft/client/particle/DripParticle.class new file mode 100644 index 000000000..327c66ca4 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/particle/DripParticle.class differ diff --git a/build/_compileJava_2/net/minecraft/client/particle/DustColorTransitionParticle$Provider.class b/build/_compileJava_2/net/minecraft/client/particle/DustColorTransitionParticle$Provider.class new file mode 100644 index 000000000..c7304a879 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/particle/DustColorTransitionParticle$Provider.class differ diff --git a/build/_compileJava_2/net/minecraft/client/particle/DustColorTransitionParticle.class b/build/_compileJava_2/net/minecraft/client/particle/DustColorTransitionParticle.class new file mode 100644 index 000000000..d55c470fb Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/particle/DustColorTransitionParticle.class differ diff --git a/build/_compileJava_2/net/minecraft/client/particle/DustParticle$Provider.class b/build/_compileJava_2/net/minecraft/client/particle/DustParticle$Provider.class new file mode 100644 index 000000000..8d7dea256 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/particle/DustParticle$Provider.class differ diff --git a/build/_compileJava_2/net/minecraft/client/particle/DustParticle.class b/build/_compileJava_2/net/minecraft/client/particle/DustParticle.class new file mode 100644 index 000000000..e6ad4e61c Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/particle/DustParticle.class differ diff --git a/build/_compileJava_2/net/minecraft/client/particle/DustParticleBase.class b/build/_compileJava_2/net/minecraft/client/particle/DustParticleBase.class new file mode 100644 index 000000000..dba698c5a Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/particle/DustParticleBase.class differ diff --git a/build/_compileJava_2/net/minecraft/client/particle/EnchantmentTableParticle$NautilusProvider.class b/build/_compileJava_2/net/minecraft/client/particle/EnchantmentTableParticle$NautilusProvider.class new file mode 100644 index 000000000..867a94380 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/particle/EnchantmentTableParticle$NautilusProvider.class differ diff --git a/build/_compileJava_2/net/minecraft/client/particle/EnchantmentTableParticle$Provider.class b/build/_compileJava_2/net/minecraft/client/particle/EnchantmentTableParticle$Provider.class new file mode 100644 index 000000000..db6938e0d Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/particle/EnchantmentTableParticle$Provider.class differ diff --git a/build/_compileJava_2/net/minecraft/client/particle/EnchantmentTableParticle.class b/build/_compileJava_2/net/minecraft/client/particle/EnchantmentTableParticle.class new file mode 100644 index 000000000..77a49071e Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/particle/EnchantmentTableParticle.class differ diff --git a/build/_compileJava_2/net/minecraft/client/particle/EndRodParticle$Provider.class b/build/_compileJava_2/net/minecraft/client/particle/EndRodParticle$Provider.class new file mode 100644 index 000000000..6e1395a8b Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/particle/EndRodParticle$Provider.class differ diff --git a/build/_compileJava_2/net/minecraft/client/particle/EndRodParticle.class b/build/_compileJava_2/net/minecraft/client/particle/EndRodParticle.class new file mode 100644 index 000000000..1967daba0 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/particle/EndRodParticle.class differ diff --git a/build/_compileJava_2/net/minecraft/client/particle/ExplodeParticle$Provider.class b/build/_compileJava_2/net/minecraft/client/particle/ExplodeParticle$Provider.class new file mode 100644 index 000000000..5f6c2a425 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/particle/ExplodeParticle$Provider.class differ diff --git a/build/_compileJava_2/net/minecraft/client/particle/ExplodeParticle.class b/build/_compileJava_2/net/minecraft/client/particle/ExplodeParticle.class new file mode 100644 index 000000000..4fd3ee9e5 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/particle/ExplodeParticle.class differ diff --git a/build/_compileJava_2/net/minecraft/client/particle/FallingDustParticle$Provider.class b/build/_compileJava_2/net/minecraft/client/particle/FallingDustParticle$Provider.class new file mode 100644 index 000000000..44d76f209 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/particle/FallingDustParticle$Provider.class differ diff --git a/build/_compileJava_2/net/minecraft/client/particle/FallingDustParticle.class b/build/_compileJava_2/net/minecraft/client/particle/FallingDustParticle.class new file mode 100644 index 000000000..d1325d7ee Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/particle/FallingDustParticle.class differ diff --git a/build/_compileJava_2/net/minecraft/client/particle/FireworkParticles$1.class b/build/_compileJava_2/net/minecraft/client/particle/FireworkParticles$1.class new file mode 100644 index 000000000..88c12a09b Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/particle/FireworkParticles$1.class differ diff --git a/build/_compileJava_2/net/minecraft/client/particle/FireworkParticles$FlashProvider.class b/build/_compileJava_2/net/minecraft/client/particle/FireworkParticles$FlashProvider.class new file mode 100644 index 000000000..37b1b513f Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/particle/FireworkParticles$FlashProvider.class differ diff --git a/build/_compileJava_2/net/minecraft/client/particle/FireworkParticles$OverlayParticle.class b/build/_compileJava_2/net/minecraft/client/particle/FireworkParticles$OverlayParticle.class new file mode 100644 index 000000000..e7ec5b5c4 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/particle/FireworkParticles$OverlayParticle.class differ diff --git a/build/_compileJava_2/net/minecraft/client/particle/FireworkParticles$SparkParticle.class b/build/_compileJava_2/net/minecraft/client/particle/FireworkParticles$SparkParticle.class new file mode 100644 index 000000000..a0ed9ce3e Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/particle/FireworkParticles$SparkParticle.class differ diff --git a/build/_compileJava_2/net/minecraft/client/particle/FireworkParticles$SparkProvider.class b/build/_compileJava_2/net/minecraft/client/particle/FireworkParticles$SparkProvider.class new file mode 100644 index 000000000..0772fe94b Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/particle/FireworkParticles$SparkProvider.class differ diff --git a/build/_compileJava_2/net/minecraft/client/particle/FireworkParticles$Starter.class b/build/_compileJava_2/net/minecraft/client/particle/FireworkParticles$Starter.class new file mode 100644 index 000000000..a9492f92c Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/particle/FireworkParticles$Starter.class differ diff --git a/build/_compileJava_2/net/minecraft/client/particle/FireworkParticles.class b/build/_compileJava_2/net/minecraft/client/particle/FireworkParticles.class new file mode 100644 index 000000000..aa676f5bb Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/particle/FireworkParticles.class differ diff --git a/build/_compileJava_2/net/minecraft/client/particle/FlameParticle$Provider.class b/build/_compileJava_2/net/minecraft/client/particle/FlameParticle$Provider.class new file mode 100644 index 000000000..5b024ff46 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/particle/FlameParticle$Provider.class differ diff --git a/build/_compileJava_2/net/minecraft/client/particle/FlameParticle$SmallFlameProvider.class b/build/_compileJava_2/net/minecraft/client/particle/FlameParticle$SmallFlameProvider.class new file mode 100644 index 000000000..9971cbec0 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/particle/FlameParticle$SmallFlameProvider.class differ diff --git a/build/_compileJava_2/net/minecraft/client/particle/FlameParticle.class b/build/_compileJava_2/net/minecraft/client/particle/FlameParticle.class new file mode 100644 index 000000000..691989031 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/particle/FlameParticle.class differ diff --git a/build/_compileJava_2/net/minecraft/client/particle/GlowParticle$ElectricSparkProvider.class b/build/_compileJava_2/net/minecraft/client/particle/GlowParticle$ElectricSparkProvider.class new file mode 100644 index 000000000..7c020462a Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/particle/GlowParticle$ElectricSparkProvider.class differ diff --git a/build/_compileJava_2/net/minecraft/client/particle/GlowParticle$GlowSquidProvider.class b/build/_compileJava_2/net/minecraft/client/particle/GlowParticle$GlowSquidProvider.class new file mode 100644 index 000000000..98da67d9a Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/particle/GlowParticle$GlowSquidProvider.class differ diff --git a/build/_compileJava_2/net/minecraft/client/particle/GlowParticle$ScrapeProvider.class b/build/_compileJava_2/net/minecraft/client/particle/GlowParticle$ScrapeProvider.class new file mode 100644 index 000000000..601e53ac0 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/particle/GlowParticle$ScrapeProvider.class differ diff --git a/build/_compileJava_2/net/minecraft/client/particle/GlowParticle$WaxOffProvider.class b/build/_compileJava_2/net/minecraft/client/particle/GlowParticle$WaxOffProvider.class new file mode 100644 index 000000000..683d94e0c Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/particle/GlowParticle$WaxOffProvider.class differ diff --git a/build/_compileJava_2/net/minecraft/client/particle/GlowParticle$WaxOnProvider.class b/build/_compileJava_2/net/minecraft/client/particle/GlowParticle$WaxOnProvider.class new file mode 100644 index 000000000..869f4cff7 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/particle/GlowParticle$WaxOnProvider.class differ diff --git a/build/_compileJava_2/net/minecraft/client/particle/GlowParticle.class b/build/_compileJava_2/net/minecraft/client/particle/GlowParticle.class new file mode 100644 index 000000000..6a6011455 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/particle/GlowParticle.class differ diff --git a/build/_compileJava_2/net/minecraft/client/particle/HeartParticle$AngryVillagerProvider.class b/build/_compileJava_2/net/minecraft/client/particle/HeartParticle$AngryVillagerProvider.class new file mode 100644 index 000000000..69970068b Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/particle/HeartParticle$AngryVillagerProvider.class differ diff --git a/build/_compileJava_2/net/minecraft/client/particle/HeartParticle$Provider.class b/build/_compileJava_2/net/minecraft/client/particle/HeartParticle$Provider.class new file mode 100644 index 000000000..cc9f5d09a Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/particle/HeartParticle$Provider.class differ diff --git a/build/_compileJava_2/net/minecraft/client/particle/HeartParticle.class b/build/_compileJava_2/net/minecraft/client/particle/HeartParticle.class new file mode 100644 index 000000000..f2f923c63 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/particle/HeartParticle.class differ diff --git a/build/_compileJava_2/net/minecraft/client/particle/HugeExplosionParticle$Provider.class b/build/_compileJava_2/net/minecraft/client/particle/HugeExplosionParticle$Provider.class new file mode 100644 index 000000000..742f61b87 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/particle/HugeExplosionParticle$Provider.class differ diff --git a/build/_compileJava_2/net/minecraft/client/particle/HugeExplosionParticle.class b/build/_compileJava_2/net/minecraft/client/particle/HugeExplosionParticle.class new file mode 100644 index 000000000..26bc24e74 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/particle/HugeExplosionParticle.class differ diff --git a/build/_compileJava_2/net/minecraft/client/particle/HugeExplosionSeedParticle$Provider.class b/build/_compileJava_2/net/minecraft/client/particle/HugeExplosionSeedParticle$Provider.class new file mode 100644 index 000000000..fed1e23a2 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/particle/HugeExplosionSeedParticle$Provider.class differ diff --git a/build/_compileJava_2/net/minecraft/client/particle/HugeExplosionSeedParticle.class b/build/_compileJava_2/net/minecraft/client/particle/HugeExplosionSeedParticle.class new file mode 100644 index 000000000..e34768c7c Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/particle/HugeExplosionSeedParticle.class differ diff --git a/build/_compileJava_2/net/minecraft/client/particle/ItemPickupParticle.class b/build/_compileJava_2/net/minecraft/client/particle/ItemPickupParticle.class new file mode 100644 index 000000000..bd0b86d87 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/particle/ItemPickupParticle.class differ diff --git a/build/_compileJava_2/net/minecraft/client/particle/LargeSmokeParticle$Provider.class b/build/_compileJava_2/net/minecraft/client/particle/LargeSmokeParticle$Provider.class new file mode 100644 index 000000000..10068c433 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/particle/LargeSmokeParticle$Provider.class differ diff --git a/build/_compileJava_2/net/minecraft/client/particle/LargeSmokeParticle.class b/build/_compileJava_2/net/minecraft/client/particle/LargeSmokeParticle.class new file mode 100644 index 000000000..f273238c6 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/particle/LargeSmokeParticle.class differ diff --git a/build/_compileJava_2/net/minecraft/client/particle/LavaParticle$Provider.class b/build/_compileJava_2/net/minecraft/client/particle/LavaParticle$Provider.class new file mode 100644 index 000000000..e679a2242 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/particle/LavaParticle$Provider.class differ diff --git a/build/_compileJava_2/net/minecraft/client/particle/LavaParticle.class b/build/_compileJava_2/net/minecraft/client/particle/LavaParticle.class new file mode 100644 index 000000000..bd1f62ee5 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/particle/LavaParticle.class differ diff --git a/build/_compileJava_2/net/minecraft/client/particle/MobAppearanceParticle$Provider.class b/build/_compileJava_2/net/minecraft/client/particle/MobAppearanceParticle$Provider.class new file mode 100644 index 000000000..6e90b04c1 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/particle/MobAppearanceParticle$Provider.class differ diff --git a/build/_compileJava_2/net/minecraft/client/particle/MobAppearanceParticle.class b/build/_compileJava_2/net/minecraft/client/particle/MobAppearanceParticle.class new file mode 100644 index 000000000..7ba0971bf Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/particle/MobAppearanceParticle.class differ diff --git a/build/_compileJava_2/net/minecraft/client/particle/NoRenderParticle.class b/build/_compileJava_2/net/minecraft/client/particle/NoRenderParticle.class new file mode 100644 index 000000000..95bef7086 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/particle/NoRenderParticle.class differ diff --git a/build/_compileJava_2/net/minecraft/client/particle/NoteParticle$Provider.class b/build/_compileJava_2/net/minecraft/client/particle/NoteParticle$Provider.class new file mode 100644 index 000000000..c3b8dc952 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/particle/NoteParticle$Provider.class differ diff --git a/build/_compileJava_2/net/minecraft/client/particle/NoteParticle.class b/build/_compileJava_2/net/minecraft/client/particle/NoteParticle.class new file mode 100644 index 000000000..b2e73d51d Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/particle/NoteParticle.class differ diff --git a/build/_compileJava_2/net/minecraft/client/particle/Particle.class b/build/_compileJava_2/net/minecraft/client/particle/Particle.class new file mode 100644 index 000000000..91ba60cb1 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/particle/Particle.class differ diff --git a/build/_compileJava_2/net/minecraft/client/particle/ParticleDescription.class b/build/_compileJava_2/net/minecraft/client/particle/ParticleDescription.class new file mode 100644 index 000000000..9499600ec Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/particle/ParticleDescription.class differ diff --git a/build/_compileJava_2/net/minecraft/client/particle/ParticleEngine$1ParticleDefinition.class b/build/_compileJava_2/net/minecraft/client/particle/ParticleEngine$1ParticleDefinition.class new file mode 100644 index 000000000..e7eaefc04 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/particle/ParticleEngine$1ParticleDefinition.class differ diff --git a/build/_compileJava_2/net/minecraft/client/particle/ParticleEngine$MutableSpriteSet.class b/build/_compileJava_2/net/minecraft/client/particle/ParticleEngine$MutableSpriteSet.class new file mode 100644 index 000000000..4547494e1 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/particle/ParticleEngine$MutableSpriteSet.class differ diff --git a/build/_compileJava_2/net/minecraft/client/particle/ParticleEngine$SpriteParticleRegistration.class b/build/_compileJava_2/net/minecraft/client/particle/ParticleEngine$SpriteParticleRegistration.class new file mode 100644 index 000000000..b345e69c2 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/particle/ParticleEngine$SpriteParticleRegistration.class differ diff --git a/build/_compileJava_2/net/minecraft/client/particle/ParticleEngine.class b/build/_compileJava_2/net/minecraft/client/particle/ParticleEngine.class new file mode 100644 index 000000000..1225c17dd Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/particle/ParticleEngine.class differ diff --git a/build/_compileJava_2/net/minecraft/client/particle/ParticleProvider$Sprite.class b/build/_compileJava_2/net/minecraft/client/particle/ParticleProvider$Sprite.class new file mode 100644 index 000000000..cff023bfe Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/particle/ParticleProvider$Sprite.class differ diff --git a/build/_compileJava_2/net/minecraft/client/particle/ParticleProvider.class b/build/_compileJava_2/net/minecraft/client/particle/ParticleProvider.class new file mode 100644 index 000000000..4ac53f657 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/particle/ParticleProvider.class differ diff --git a/build/_compileJava_2/net/minecraft/client/particle/ParticleRenderType$1.class b/build/_compileJava_2/net/minecraft/client/particle/ParticleRenderType$1.class new file mode 100644 index 000000000..9e6eb58db Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/particle/ParticleRenderType$1.class differ diff --git a/build/_compileJava_2/net/minecraft/client/particle/ParticleRenderType$2.class b/build/_compileJava_2/net/minecraft/client/particle/ParticleRenderType$2.class new file mode 100644 index 000000000..5a33e3e73 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/particle/ParticleRenderType$2.class differ diff --git a/build/_compileJava_2/net/minecraft/client/particle/ParticleRenderType$3.class b/build/_compileJava_2/net/minecraft/client/particle/ParticleRenderType$3.class new file mode 100644 index 000000000..5edd260ed Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/particle/ParticleRenderType$3.class differ diff --git a/build/_compileJava_2/net/minecraft/client/particle/ParticleRenderType$4.class b/build/_compileJava_2/net/minecraft/client/particle/ParticleRenderType$4.class new file mode 100644 index 000000000..fb0216a34 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/particle/ParticleRenderType$4.class differ diff --git a/build/_compileJava_2/net/minecraft/client/particle/ParticleRenderType$5.class b/build/_compileJava_2/net/minecraft/client/particle/ParticleRenderType$5.class new file mode 100644 index 000000000..18076383e Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/particle/ParticleRenderType$5.class differ diff --git a/build/_compileJava_2/net/minecraft/client/particle/ParticleRenderType$6.class b/build/_compileJava_2/net/minecraft/client/particle/ParticleRenderType$6.class new file mode 100644 index 000000000..bdec42386 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/particle/ParticleRenderType$6.class differ diff --git a/build/_compileJava_2/net/minecraft/client/particle/ParticleRenderType.class b/build/_compileJava_2/net/minecraft/client/particle/ParticleRenderType.class new file mode 100644 index 000000000..5fce1ad67 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/particle/ParticleRenderType.class differ diff --git a/build/_compileJava_2/net/minecraft/client/particle/PlayerCloudParticle$Provider.class b/build/_compileJava_2/net/minecraft/client/particle/PlayerCloudParticle$Provider.class new file mode 100644 index 000000000..1c572f097 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/particle/PlayerCloudParticle$Provider.class differ diff --git a/build/_compileJava_2/net/minecraft/client/particle/PlayerCloudParticle$SneezeProvider.class b/build/_compileJava_2/net/minecraft/client/particle/PlayerCloudParticle$SneezeProvider.class new file mode 100644 index 000000000..e89737e35 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/particle/PlayerCloudParticle$SneezeProvider.class differ diff --git a/build/_compileJava_2/net/minecraft/client/particle/PlayerCloudParticle.class b/build/_compileJava_2/net/minecraft/client/particle/PlayerCloudParticle.class new file mode 100644 index 000000000..1d8173f06 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/particle/PlayerCloudParticle.class differ diff --git a/build/_compileJava_2/net/minecraft/client/particle/PortalParticle$Provider.class b/build/_compileJava_2/net/minecraft/client/particle/PortalParticle$Provider.class new file mode 100644 index 000000000..e9d55998f Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/particle/PortalParticle$Provider.class differ diff --git a/build/_compileJava_2/net/minecraft/client/particle/PortalParticle.class b/build/_compileJava_2/net/minecraft/client/particle/PortalParticle.class new file mode 100644 index 000000000..849fad15f Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/particle/PortalParticle.class differ diff --git a/build/_compileJava_2/net/minecraft/client/particle/ReversePortalParticle$ReversePortalProvider.class b/build/_compileJava_2/net/minecraft/client/particle/ReversePortalParticle$ReversePortalProvider.class new file mode 100644 index 000000000..eaa8d1829 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/particle/ReversePortalParticle$ReversePortalProvider.class differ diff --git a/build/_compileJava_2/net/minecraft/client/particle/ReversePortalParticle.class b/build/_compileJava_2/net/minecraft/client/particle/ReversePortalParticle.class new file mode 100644 index 000000000..fc4de916d Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/particle/ReversePortalParticle.class differ diff --git a/build/_compileJava_2/net/minecraft/client/particle/RisingParticle.class b/build/_compileJava_2/net/minecraft/client/particle/RisingParticle.class new file mode 100644 index 000000000..101f95b38 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/particle/RisingParticle.class differ diff --git a/build/_compileJava_2/net/minecraft/client/particle/SculkChargeParticle$Provider.class b/build/_compileJava_2/net/minecraft/client/particle/SculkChargeParticle$Provider.class new file mode 100644 index 000000000..f3937514f Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/particle/SculkChargeParticle$Provider.class differ diff --git a/build/_compileJava_2/net/minecraft/client/particle/SculkChargeParticle.class b/build/_compileJava_2/net/minecraft/client/particle/SculkChargeParticle.class new file mode 100644 index 000000000..e507352c5 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/particle/SculkChargeParticle.class differ diff --git a/build/_compileJava_2/net/minecraft/client/particle/SculkChargePopParticle$Provider.class b/build/_compileJava_2/net/minecraft/client/particle/SculkChargePopParticle$Provider.class new file mode 100644 index 000000000..a9ee258dc Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/particle/SculkChargePopParticle$Provider.class differ diff --git a/build/_compileJava_2/net/minecraft/client/particle/SculkChargePopParticle.class b/build/_compileJava_2/net/minecraft/client/particle/SculkChargePopParticle.class new file mode 100644 index 000000000..b4f156f7e Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/particle/SculkChargePopParticle.class differ diff --git a/build/_compileJava_2/net/minecraft/client/particle/ShriekParticle$Provider.class b/build/_compileJava_2/net/minecraft/client/particle/ShriekParticle$Provider.class new file mode 100644 index 000000000..9ccea6789 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/particle/ShriekParticle$Provider.class differ diff --git a/build/_compileJava_2/net/minecraft/client/particle/ShriekParticle.class b/build/_compileJava_2/net/minecraft/client/particle/ShriekParticle.class new file mode 100644 index 000000000..e5c8175fa Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/particle/ShriekParticle.class differ diff --git a/build/_compileJava_2/net/minecraft/client/particle/SimpleAnimatedParticle.class b/build/_compileJava_2/net/minecraft/client/particle/SimpleAnimatedParticle.class new file mode 100644 index 000000000..2909ff56e Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/particle/SimpleAnimatedParticle.class differ diff --git a/build/_compileJava_2/net/minecraft/client/particle/SingleQuadParticle.class b/build/_compileJava_2/net/minecraft/client/particle/SingleQuadParticle.class new file mode 100644 index 000000000..b134bae0c Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/particle/SingleQuadParticle.class differ diff --git a/build/_compileJava_2/net/minecraft/client/particle/SmokeParticle$Provider.class b/build/_compileJava_2/net/minecraft/client/particle/SmokeParticle$Provider.class new file mode 100644 index 000000000..5ddc53793 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/particle/SmokeParticle$Provider.class differ diff --git a/build/_compileJava_2/net/minecraft/client/particle/SmokeParticle.class b/build/_compileJava_2/net/minecraft/client/particle/SmokeParticle.class new file mode 100644 index 000000000..3cb1b83cf Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/particle/SmokeParticle.class differ diff --git a/build/_compileJava_2/net/minecraft/client/particle/SnowflakeParticle$Provider.class b/build/_compileJava_2/net/minecraft/client/particle/SnowflakeParticle$Provider.class new file mode 100644 index 000000000..4b7e06af3 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/particle/SnowflakeParticle$Provider.class differ diff --git a/build/_compileJava_2/net/minecraft/client/particle/SnowflakeParticle.class b/build/_compileJava_2/net/minecraft/client/particle/SnowflakeParticle.class new file mode 100644 index 000000000..bf6429295 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/particle/SnowflakeParticle.class differ diff --git a/build/_compileJava_2/net/minecraft/client/particle/SonicBoomParticle$Provider.class b/build/_compileJava_2/net/minecraft/client/particle/SonicBoomParticle$Provider.class new file mode 100644 index 000000000..1ab48679a Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/particle/SonicBoomParticle$Provider.class differ diff --git a/build/_compileJava_2/net/minecraft/client/particle/SonicBoomParticle.class b/build/_compileJava_2/net/minecraft/client/particle/SonicBoomParticle.class new file mode 100644 index 000000000..d81330a85 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/particle/SonicBoomParticle.class differ diff --git a/build/_compileJava_2/net/minecraft/client/particle/SoulParticle$EmissiveProvider.class b/build/_compileJava_2/net/minecraft/client/particle/SoulParticle$EmissiveProvider.class new file mode 100644 index 000000000..46ba5d2ac Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/particle/SoulParticle$EmissiveProvider.class differ diff --git a/build/_compileJava_2/net/minecraft/client/particle/SoulParticle$Provider.class b/build/_compileJava_2/net/minecraft/client/particle/SoulParticle$Provider.class new file mode 100644 index 000000000..3d31acf11 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/particle/SoulParticle$Provider.class differ diff --git a/build/_compileJava_2/net/minecraft/client/particle/SoulParticle.class b/build/_compileJava_2/net/minecraft/client/particle/SoulParticle.class new file mode 100644 index 000000000..70ed9a45e Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/particle/SoulParticle.class differ diff --git a/build/_compileJava_2/net/minecraft/client/particle/SpellParticle$AmbientMobProvider.class b/build/_compileJava_2/net/minecraft/client/particle/SpellParticle$AmbientMobProvider.class new file mode 100644 index 000000000..19c70b2e6 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/particle/SpellParticle$AmbientMobProvider.class differ diff --git a/build/_compileJava_2/net/minecraft/client/particle/SpellParticle$InstantProvider.class b/build/_compileJava_2/net/minecraft/client/particle/SpellParticle$InstantProvider.class new file mode 100644 index 000000000..5ceab4883 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/particle/SpellParticle$InstantProvider.class differ diff --git a/build/_compileJava_2/net/minecraft/client/particle/SpellParticle$MobProvider.class b/build/_compileJava_2/net/minecraft/client/particle/SpellParticle$MobProvider.class new file mode 100644 index 000000000..55dccbffb Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/particle/SpellParticle$MobProvider.class differ diff --git a/build/_compileJava_2/net/minecraft/client/particle/SpellParticle$Provider.class b/build/_compileJava_2/net/minecraft/client/particle/SpellParticle$Provider.class new file mode 100644 index 000000000..ef3221003 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/particle/SpellParticle$Provider.class differ diff --git a/build/_compileJava_2/net/minecraft/client/particle/SpellParticle$WitchProvider.class b/build/_compileJava_2/net/minecraft/client/particle/SpellParticle$WitchProvider.class new file mode 100644 index 000000000..03a1efb6e Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/particle/SpellParticle$WitchProvider.class differ diff --git a/build/_compileJava_2/net/minecraft/client/particle/SpellParticle.class b/build/_compileJava_2/net/minecraft/client/particle/SpellParticle.class new file mode 100644 index 000000000..142f14e62 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/particle/SpellParticle.class differ diff --git a/build/_compileJava_2/net/minecraft/client/particle/SpitParticle$Provider.class b/build/_compileJava_2/net/minecraft/client/particle/SpitParticle$Provider.class new file mode 100644 index 000000000..38fb9cd1a Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/particle/SpitParticle$Provider.class differ diff --git a/build/_compileJava_2/net/minecraft/client/particle/SpitParticle.class b/build/_compileJava_2/net/minecraft/client/particle/SpitParticle.class new file mode 100644 index 000000000..31f652b18 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/particle/SpitParticle.class differ diff --git a/build/_compileJava_2/net/minecraft/client/particle/SplashParticle$Provider.class b/build/_compileJava_2/net/minecraft/client/particle/SplashParticle$Provider.class new file mode 100644 index 000000000..20cb586b5 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/particle/SplashParticle$Provider.class differ diff --git a/build/_compileJava_2/net/minecraft/client/particle/SplashParticle.class b/build/_compileJava_2/net/minecraft/client/particle/SplashParticle.class new file mode 100644 index 000000000..e4e529d7c Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/particle/SplashParticle.class differ diff --git a/build/_compileJava_2/net/minecraft/client/particle/SpriteSet.class b/build/_compileJava_2/net/minecraft/client/particle/SpriteSet.class new file mode 100644 index 000000000..4d75c69a0 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/particle/SpriteSet.class differ diff --git a/build/_compileJava_2/net/minecraft/client/particle/SquidInkParticle$GlowInkProvider.class b/build/_compileJava_2/net/minecraft/client/particle/SquidInkParticle$GlowInkProvider.class new file mode 100644 index 000000000..9e1628760 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/particle/SquidInkParticle$GlowInkProvider.class differ diff --git a/build/_compileJava_2/net/minecraft/client/particle/SquidInkParticle$Provider.class b/build/_compileJava_2/net/minecraft/client/particle/SquidInkParticle$Provider.class new file mode 100644 index 000000000..d27a577a4 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/particle/SquidInkParticle$Provider.class differ diff --git a/build/_compileJava_2/net/minecraft/client/particle/SquidInkParticle.class b/build/_compileJava_2/net/minecraft/client/particle/SquidInkParticle.class new file mode 100644 index 000000000..66400c94c Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/particle/SquidInkParticle.class differ diff --git a/build/_compileJava_2/net/minecraft/client/particle/SuspendedParticle$CrimsonSporeProvider.class b/build/_compileJava_2/net/minecraft/client/particle/SuspendedParticle$CrimsonSporeProvider.class new file mode 100644 index 000000000..6ee4e3f20 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/particle/SuspendedParticle$CrimsonSporeProvider.class differ diff --git a/build/_compileJava_2/net/minecraft/client/particle/SuspendedParticle$SporeBlossomAirProvider$1.class b/build/_compileJava_2/net/minecraft/client/particle/SuspendedParticle$SporeBlossomAirProvider$1.class new file mode 100644 index 000000000..9bbf9d9fa Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/particle/SuspendedParticle$SporeBlossomAirProvider$1.class differ diff --git a/build/_compileJava_2/net/minecraft/client/particle/SuspendedParticle$SporeBlossomAirProvider.class b/build/_compileJava_2/net/minecraft/client/particle/SuspendedParticle$SporeBlossomAirProvider.class new file mode 100644 index 000000000..9f2d173d8 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/particle/SuspendedParticle$SporeBlossomAirProvider.class differ diff --git a/build/_compileJava_2/net/minecraft/client/particle/SuspendedParticle$UnderwaterProvider.class b/build/_compileJava_2/net/minecraft/client/particle/SuspendedParticle$UnderwaterProvider.class new file mode 100644 index 000000000..39873ba2a Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/particle/SuspendedParticle$UnderwaterProvider.class differ diff --git a/build/_compileJava_2/net/minecraft/client/particle/SuspendedParticle$WarpedSporeProvider.class b/build/_compileJava_2/net/minecraft/client/particle/SuspendedParticle$WarpedSporeProvider.class new file mode 100644 index 000000000..281331273 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/particle/SuspendedParticle$WarpedSporeProvider.class differ diff --git a/build/_compileJava_2/net/minecraft/client/particle/SuspendedParticle.class b/build/_compileJava_2/net/minecraft/client/particle/SuspendedParticle.class new file mode 100644 index 000000000..ce5f8b52d Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/particle/SuspendedParticle.class differ diff --git a/build/_compileJava_2/net/minecraft/client/particle/SuspendedTownParticle$ComposterFillProvider.class b/build/_compileJava_2/net/minecraft/client/particle/SuspendedTownParticle$ComposterFillProvider.class new file mode 100644 index 000000000..8cee21b13 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/particle/SuspendedTownParticle$ComposterFillProvider.class differ diff --git a/build/_compileJava_2/net/minecraft/client/particle/SuspendedTownParticle$DolphinSpeedProvider.class b/build/_compileJava_2/net/minecraft/client/particle/SuspendedTownParticle$DolphinSpeedProvider.class new file mode 100644 index 000000000..5a58515e7 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/particle/SuspendedTownParticle$DolphinSpeedProvider.class differ diff --git a/build/_compileJava_2/net/minecraft/client/particle/SuspendedTownParticle$EggCrackProvider.class b/build/_compileJava_2/net/minecraft/client/particle/SuspendedTownParticle$EggCrackProvider.class new file mode 100644 index 000000000..f2251e50c Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/particle/SuspendedTownParticle$EggCrackProvider.class differ diff --git a/build/_compileJava_2/net/minecraft/client/particle/SuspendedTownParticle$HappyVillagerProvider.class b/build/_compileJava_2/net/minecraft/client/particle/SuspendedTownParticle$HappyVillagerProvider.class new file mode 100644 index 000000000..bb3d2bf11 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/particle/SuspendedTownParticle$HappyVillagerProvider.class differ diff --git a/build/_compileJava_2/net/minecraft/client/particle/SuspendedTownParticle$Provider.class b/build/_compileJava_2/net/minecraft/client/particle/SuspendedTownParticle$Provider.class new file mode 100644 index 000000000..b68f0849a Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/particle/SuspendedTownParticle$Provider.class differ diff --git a/build/_compileJava_2/net/minecraft/client/particle/SuspendedTownParticle.class b/build/_compileJava_2/net/minecraft/client/particle/SuspendedTownParticle.class new file mode 100644 index 000000000..65a8beb7f Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/particle/SuspendedTownParticle.class differ diff --git a/build/_compileJava_2/net/minecraft/client/particle/TerrainParticle$Provider.class b/build/_compileJava_2/net/minecraft/client/particle/TerrainParticle$Provider.class new file mode 100644 index 000000000..753a26142 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/particle/TerrainParticle$Provider.class differ diff --git a/build/_compileJava_2/net/minecraft/client/particle/TerrainParticle.class b/build/_compileJava_2/net/minecraft/client/particle/TerrainParticle.class new file mode 100644 index 000000000..85743aa75 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/particle/TerrainParticle.class differ diff --git a/build/_compileJava_2/net/minecraft/client/particle/TextureSheetParticle.class b/build/_compileJava_2/net/minecraft/client/particle/TextureSheetParticle.class new file mode 100644 index 000000000..bdb0b08ee Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/particle/TextureSheetParticle.class differ diff --git a/build/_compileJava_2/net/minecraft/client/particle/TotemParticle$Provider.class b/build/_compileJava_2/net/minecraft/client/particle/TotemParticle$Provider.class new file mode 100644 index 000000000..dc3b2781e Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/particle/TotemParticle$Provider.class differ diff --git a/build/_compileJava_2/net/minecraft/client/particle/TotemParticle.class b/build/_compileJava_2/net/minecraft/client/particle/TotemParticle.class new file mode 100644 index 000000000..2e9fcecb3 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/particle/TotemParticle.class differ diff --git a/build/_compileJava_2/net/minecraft/client/particle/TrackingEmitter.class b/build/_compileJava_2/net/minecraft/client/particle/TrackingEmitter.class new file mode 100644 index 000000000..2f39e77bc Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/particle/TrackingEmitter.class differ diff --git a/build/_compileJava_2/net/minecraft/client/particle/VibrationSignalParticle$Provider.class b/build/_compileJava_2/net/minecraft/client/particle/VibrationSignalParticle$Provider.class new file mode 100644 index 000000000..91bef4c47 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/particle/VibrationSignalParticle$Provider.class differ diff --git a/build/_compileJava_2/net/minecraft/client/particle/VibrationSignalParticle.class b/build/_compileJava_2/net/minecraft/client/particle/VibrationSignalParticle.class new file mode 100644 index 000000000..fd9c3b0f2 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/particle/VibrationSignalParticle.class differ diff --git a/build/_compileJava_2/net/minecraft/client/particle/WakeParticle$Provider.class b/build/_compileJava_2/net/minecraft/client/particle/WakeParticle$Provider.class new file mode 100644 index 000000000..31ddcac03 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/particle/WakeParticle$Provider.class differ diff --git a/build/_compileJava_2/net/minecraft/client/particle/WakeParticle.class b/build/_compileJava_2/net/minecraft/client/particle/WakeParticle.class new file mode 100644 index 000000000..31a249ee7 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/particle/WakeParticle.class differ diff --git a/build/_compileJava_2/net/minecraft/client/particle/WaterCurrentDownParticle$Provider.class b/build/_compileJava_2/net/minecraft/client/particle/WaterCurrentDownParticle$Provider.class new file mode 100644 index 000000000..c1720039a Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/particle/WaterCurrentDownParticle$Provider.class differ diff --git a/build/_compileJava_2/net/minecraft/client/particle/WaterCurrentDownParticle.class b/build/_compileJava_2/net/minecraft/client/particle/WaterCurrentDownParticle.class new file mode 100644 index 000000000..b1e738bdd Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/particle/WaterCurrentDownParticle.class differ diff --git a/build/_compileJava_2/net/minecraft/client/particle/WaterDropParticle$Provider.class b/build/_compileJava_2/net/minecraft/client/particle/WaterDropParticle$Provider.class new file mode 100644 index 000000000..6ba4322e9 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/particle/WaterDropParticle$Provider.class differ diff --git a/build/_compileJava_2/net/minecraft/client/particle/WaterDropParticle.class b/build/_compileJava_2/net/minecraft/client/particle/WaterDropParticle.class new file mode 100644 index 000000000..3770191c5 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/particle/WaterDropParticle.class differ diff --git a/build/_compileJava_2/net/minecraft/client/particle/WhiteAshParticle$Provider.class b/build/_compileJava_2/net/minecraft/client/particle/WhiteAshParticle$Provider.class new file mode 100644 index 000000000..df8d50b35 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/particle/WhiteAshParticle$Provider.class differ diff --git a/build/_compileJava_2/net/minecraft/client/particle/WhiteAshParticle.class b/build/_compileJava_2/net/minecraft/client/particle/WhiteAshParticle.class new file mode 100644 index 000000000..24ab1e9ab Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/particle/WhiteAshParticle.class differ diff --git a/build/_compileJava_2/net/minecraft/client/particle/package-info.class b/build/_compileJava_2/net/minecraft/client/particle/package-info.class new file mode 100644 index 000000000..14e335aef Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/particle/package-info.class differ diff --git a/build/_compileJava_2/net/minecraft/client/player/AbstractClientPlayer.class b/build/_compileJava_2/net/minecraft/client/player/AbstractClientPlayer.class new file mode 100644 index 000000000..23d96590d Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/player/AbstractClientPlayer.class differ diff --git a/build/_compileJava_2/net/minecraft/client/player/Input.class b/build/_compileJava_2/net/minecraft/client/player/Input.class new file mode 100644 index 000000000..1020df1af Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/player/Input.class differ diff --git a/build/_compileJava_2/net/minecraft/client/player/KeyboardInput.class b/build/_compileJava_2/net/minecraft/client/player/KeyboardInput.class new file mode 100644 index 000000000..7e13adc61 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/player/KeyboardInput.class differ diff --git a/build/_compileJava_2/net/minecraft/client/player/LocalPlayer.class b/build/_compileJava_2/net/minecraft/client/player/LocalPlayer.class new file mode 100644 index 000000000..811e57a8e Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/player/LocalPlayer.class differ diff --git a/build/_compileJava_2/net/minecraft/client/player/RemotePlayer.class b/build/_compileJava_2/net/minecraft/client/player/RemotePlayer.class new file mode 100644 index 000000000..6959af3d8 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/player/RemotePlayer.class differ diff --git a/build/_compileJava_2/net/minecraft/client/player/inventory/Hotbar.class b/build/_compileJava_2/net/minecraft/client/player/inventory/Hotbar.class new file mode 100644 index 000000000..205340435 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/player/inventory/Hotbar.class differ diff --git a/build/_compileJava_2/net/minecraft/client/player/inventory/package-info.class b/build/_compileJava_2/net/minecraft/client/player/inventory/package-info.class new file mode 100644 index 000000000..04b220453 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/player/inventory/package-info.class differ diff --git a/build/_compileJava_2/net/minecraft/client/player/package-info.class b/build/_compileJava_2/net/minecraft/client/player/package-info.class new file mode 100644 index 000000000..30837ef6c Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/player/package-info.class differ diff --git a/build/_compileJava_2/net/minecraft/client/profiling/ClientMetricsSamplersProvider.class b/build/_compileJava_2/net/minecraft/client/profiling/ClientMetricsSamplersProvider.class new file mode 100644 index 000000000..9f0a51df0 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/profiling/ClientMetricsSamplersProvider.class differ diff --git a/build/_compileJava_2/net/minecraft/client/profiling/package-info.class b/build/_compileJava_2/net/minecraft/client/profiling/package-info.class new file mode 100644 index 000000000..9424ba439 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/profiling/package-info.class differ diff --git a/build/_compileJava_2/net/minecraft/client/quickplay/QuickPlay.class b/build/_compileJava_2/net/minecraft/client/quickplay/QuickPlay.class new file mode 100644 index 000000000..68bae8461 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/quickplay/QuickPlay.class differ diff --git a/build/_compileJava_2/net/minecraft/client/quickplay/QuickPlayLog$1.class b/build/_compileJava_2/net/minecraft/client/quickplay/QuickPlayLog$1.class new file mode 100644 index 000000000..e575b5544 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/quickplay/QuickPlayLog$1.class differ diff --git a/build/_compileJava_2/net/minecraft/client/quickplay/QuickPlayLog$QuickPlayEntry.class b/build/_compileJava_2/net/minecraft/client/quickplay/QuickPlayLog$QuickPlayEntry.class new file mode 100644 index 000000000..c54ed4018 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/quickplay/QuickPlayLog$QuickPlayEntry.class differ diff --git a/build/_compileJava_2/net/minecraft/client/quickplay/QuickPlayLog$QuickPlayWorld.class b/build/_compileJava_2/net/minecraft/client/quickplay/QuickPlayLog$QuickPlayWorld.class new file mode 100644 index 000000000..064351750 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/quickplay/QuickPlayLog$QuickPlayWorld.class differ diff --git a/build/_compileJava_2/net/minecraft/client/quickplay/QuickPlayLog$Type.class b/build/_compileJava_2/net/minecraft/client/quickplay/QuickPlayLog$Type.class new file mode 100644 index 000000000..4cf3c2cce Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/quickplay/QuickPlayLog$Type.class differ diff --git a/build/_compileJava_2/net/minecraft/client/quickplay/QuickPlayLog.class b/build/_compileJava_2/net/minecraft/client/quickplay/QuickPlayLog.class new file mode 100644 index 000000000..904d7c97b Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/quickplay/QuickPlayLog.class differ diff --git a/build/_compileJava_2/net/minecraft/client/quickplay/package-info.class b/build/_compileJava_2/net/minecraft/client/quickplay/package-info.class new file mode 100644 index 000000000..4cf679a62 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/quickplay/package-info.class differ diff --git a/build/_compileJava_2/net/minecraft/client/renderer/BiomeColors.class b/build/_compileJava_2/net/minecraft/client/renderer/BiomeColors.class new file mode 100644 index 000000000..4151167d3 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/renderer/BiomeColors.class differ diff --git a/build/_compileJava_2/net/minecraft/client/renderer/BlockEntityWithoutLevelRenderer.class b/build/_compileJava_2/net/minecraft/client/renderer/BlockEntityWithoutLevelRenderer.class new file mode 100644 index 000000000..77e23cdd1 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/renderer/BlockEntityWithoutLevelRenderer.class differ diff --git a/build/_compileJava_2/net/minecraft/client/renderer/ChunkBufferBuilderPack.class b/build/_compileJava_2/net/minecraft/client/renderer/ChunkBufferBuilderPack.class new file mode 100644 index 000000000..7320894db Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/renderer/ChunkBufferBuilderPack.class differ diff --git a/build/_compileJava_2/net/minecraft/client/renderer/CubeMap.class b/build/_compileJava_2/net/minecraft/client/renderer/CubeMap.class new file mode 100644 index 000000000..51d0e8b6c Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/renderer/CubeMap.class differ diff --git a/build/_compileJava_2/net/minecraft/client/renderer/DimensionSpecialEffects$EndEffects.class b/build/_compileJava_2/net/minecraft/client/renderer/DimensionSpecialEffects$EndEffects.class new file mode 100644 index 000000000..55d288db5 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/renderer/DimensionSpecialEffects$EndEffects.class differ diff --git a/build/_compileJava_2/net/minecraft/client/renderer/DimensionSpecialEffects$NetherEffects.class b/build/_compileJava_2/net/minecraft/client/renderer/DimensionSpecialEffects$NetherEffects.class new file mode 100644 index 000000000..7251e7e26 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/renderer/DimensionSpecialEffects$NetherEffects.class differ diff --git a/build/_compileJava_2/net/minecraft/client/renderer/DimensionSpecialEffects$OverworldEffects.class b/build/_compileJava_2/net/minecraft/client/renderer/DimensionSpecialEffects$OverworldEffects.class new file mode 100644 index 000000000..c40b914d0 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/renderer/DimensionSpecialEffects$OverworldEffects.class differ diff --git a/build/_compileJava_2/net/minecraft/client/renderer/DimensionSpecialEffects$SkyType.class b/build/_compileJava_2/net/minecraft/client/renderer/DimensionSpecialEffects$SkyType.class new file mode 100644 index 000000000..5e430eba3 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/renderer/DimensionSpecialEffects$SkyType.class differ diff --git a/build/_compileJava_2/net/minecraft/client/renderer/DimensionSpecialEffects.class b/build/_compileJava_2/net/minecraft/client/renderer/DimensionSpecialEffects.class new file mode 100644 index 000000000..fe341f970 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/renderer/DimensionSpecialEffects.class differ diff --git a/build/_compileJava_2/net/minecraft/client/renderer/EffectInstance.class b/build/_compileJava_2/net/minecraft/client/renderer/EffectInstance.class new file mode 100644 index 000000000..f0f6ab850 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/renderer/EffectInstance.class differ diff --git a/build/_compileJava_2/net/minecraft/client/renderer/FaceInfo$Constants.class b/build/_compileJava_2/net/minecraft/client/renderer/FaceInfo$Constants.class new file mode 100644 index 000000000..51fd40f0d Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/renderer/FaceInfo$Constants.class differ diff --git a/build/_compileJava_2/net/minecraft/client/renderer/FaceInfo$VertexInfo.class b/build/_compileJava_2/net/minecraft/client/renderer/FaceInfo$VertexInfo.class new file mode 100644 index 000000000..59b41436e Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/renderer/FaceInfo$VertexInfo.class differ diff --git a/build/_compileJava_2/net/minecraft/client/renderer/FaceInfo.class b/build/_compileJava_2/net/minecraft/client/renderer/FaceInfo.class new file mode 100644 index 000000000..e94d576a9 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/renderer/FaceInfo.class differ diff --git a/build/_compileJava_2/net/minecraft/client/renderer/FogRenderer$BlindnessFogFunction.class b/build/_compileJava_2/net/minecraft/client/renderer/FogRenderer$BlindnessFogFunction.class new file mode 100644 index 000000000..685196161 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/renderer/FogRenderer$BlindnessFogFunction.class differ diff --git a/build/_compileJava_2/net/minecraft/client/renderer/FogRenderer$DarknessFogFunction.class b/build/_compileJava_2/net/minecraft/client/renderer/FogRenderer$DarknessFogFunction.class new file mode 100644 index 000000000..67d6c2a80 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/renderer/FogRenderer$DarknessFogFunction.class differ diff --git a/build/_compileJava_2/net/minecraft/client/renderer/FogRenderer$FogData.class b/build/_compileJava_2/net/minecraft/client/renderer/FogRenderer$FogData.class new file mode 100644 index 000000000..592a4fd18 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/renderer/FogRenderer$FogData.class differ diff --git a/build/_compileJava_2/net/minecraft/client/renderer/FogRenderer$FogMode.class b/build/_compileJava_2/net/minecraft/client/renderer/FogRenderer$FogMode.class new file mode 100644 index 000000000..b1eddc3c3 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/renderer/FogRenderer$FogMode.class differ diff --git a/build/_compileJava_2/net/minecraft/client/renderer/FogRenderer$MobEffectFogFunction.class b/build/_compileJava_2/net/minecraft/client/renderer/FogRenderer$MobEffectFogFunction.class new file mode 100644 index 000000000..6bb33448c Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/renderer/FogRenderer$MobEffectFogFunction.class differ diff --git a/build/_compileJava_2/net/minecraft/client/renderer/FogRenderer.class b/build/_compileJava_2/net/minecraft/client/renderer/FogRenderer.class new file mode 100644 index 000000000..a45a539ce Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/renderer/FogRenderer.class differ diff --git a/build/_compileJava_2/net/minecraft/client/renderer/GameRenderer$1.class b/build/_compileJava_2/net/minecraft/client/renderer/GameRenderer$1.class new file mode 100644 index 000000000..5bcd207f1 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/renderer/GameRenderer$1.class differ diff --git a/build/_compileJava_2/net/minecraft/client/renderer/GameRenderer$ResourceCache.class b/build/_compileJava_2/net/minecraft/client/renderer/GameRenderer$ResourceCache.class new file mode 100644 index 000000000..1cf567ac0 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/renderer/GameRenderer$ResourceCache.class differ diff --git a/build/_compileJava_2/net/minecraft/client/renderer/GameRenderer.class b/build/_compileJava_2/net/minecraft/client/renderer/GameRenderer.class new file mode 100644 index 000000000..028feb67b Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/renderer/GameRenderer.class differ diff --git a/build/_compileJava_2/net/minecraft/client/renderer/GpuWarnlistManager$Preparations.class b/build/_compileJava_2/net/minecraft/client/renderer/GpuWarnlistManager$Preparations.class new file mode 100644 index 000000000..fe1ba682f Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/renderer/GpuWarnlistManager$Preparations.class differ diff --git a/build/_compileJava_2/net/minecraft/client/renderer/GpuWarnlistManager.class b/build/_compileJava_2/net/minecraft/client/renderer/GpuWarnlistManager.class new file mode 100644 index 000000000..9a01476b2 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/renderer/GpuWarnlistManager.class differ diff --git a/build/_compileJava_2/net/minecraft/client/renderer/ItemBlockRenderTypes.class b/build/_compileJava_2/net/minecraft/client/renderer/ItemBlockRenderTypes.class new file mode 100644 index 000000000..622a611fe Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/renderer/ItemBlockRenderTypes.class differ diff --git a/build/_compileJava_2/net/minecraft/client/renderer/ItemInHandRenderer$1.class b/build/_compileJava_2/net/minecraft/client/renderer/ItemInHandRenderer$1.class new file mode 100644 index 000000000..b64f1c5e9 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/renderer/ItemInHandRenderer$1.class differ diff --git a/build/_compileJava_2/net/minecraft/client/renderer/ItemInHandRenderer$HandRenderSelection.class b/build/_compileJava_2/net/minecraft/client/renderer/ItemInHandRenderer$HandRenderSelection.class new file mode 100644 index 000000000..e43b8582f Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/renderer/ItemInHandRenderer$HandRenderSelection.class differ diff --git a/build/_compileJava_2/net/minecraft/client/renderer/ItemInHandRenderer.class b/build/_compileJava_2/net/minecraft/client/renderer/ItemInHandRenderer.class new file mode 100644 index 000000000..3b46b01e9 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/renderer/ItemInHandRenderer.class differ diff --git a/build/_compileJava_2/net/minecraft/client/renderer/ItemModelShaper.class b/build/_compileJava_2/net/minecraft/client/renderer/ItemModelShaper.class new file mode 100644 index 000000000..3a723ab1a Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/renderer/ItemModelShaper.class differ diff --git a/build/_compileJava_2/net/minecraft/client/renderer/LevelRenderer$RenderChunkInfo.class b/build/_compileJava_2/net/minecraft/client/renderer/LevelRenderer$RenderChunkInfo.class new file mode 100644 index 000000000..c215628ec Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/renderer/LevelRenderer$RenderChunkInfo.class differ diff --git a/build/_compileJava_2/net/minecraft/client/renderer/LevelRenderer$RenderChunkStorage.class b/build/_compileJava_2/net/minecraft/client/renderer/LevelRenderer$RenderChunkStorage.class new file mode 100644 index 000000000..746833000 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/renderer/LevelRenderer$RenderChunkStorage.class differ diff --git a/build/_compileJava_2/net/minecraft/client/renderer/LevelRenderer$RenderInfoMap.class b/build/_compileJava_2/net/minecraft/client/renderer/LevelRenderer$RenderInfoMap.class new file mode 100644 index 000000000..5f810361d Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/renderer/LevelRenderer$RenderInfoMap.class differ diff --git a/build/_compileJava_2/net/minecraft/client/renderer/LevelRenderer$TransparencyShaderException.class b/build/_compileJava_2/net/minecraft/client/renderer/LevelRenderer$TransparencyShaderException.class new file mode 100644 index 000000000..f2ef1655d Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/renderer/LevelRenderer$TransparencyShaderException.class differ diff --git a/build/_compileJava_2/net/minecraft/client/renderer/LevelRenderer.class b/build/_compileJava_2/net/minecraft/client/renderer/LevelRenderer.class new file mode 100644 index 000000000..9a9af593d Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/renderer/LevelRenderer.class differ diff --git a/build/_compileJava_2/net/minecraft/client/renderer/LightTexture.class b/build/_compileJava_2/net/minecraft/client/renderer/LightTexture.class new file mode 100644 index 000000000..d2e765e09 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/renderer/LightTexture.class differ diff --git a/build/_compileJava_2/net/minecraft/client/renderer/MultiBufferSource$BufferSource.class b/build/_compileJava_2/net/minecraft/client/renderer/MultiBufferSource$BufferSource.class new file mode 100644 index 000000000..2acba8c39 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/renderer/MultiBufferSource$BufferSource.class differ diff --git a/build/_compileJava_2/net/minecraft/client/renderer/MultiBufferSource.class b/build/_compileJava_2/net/minecraft/client/renderer/MultiBufferSource.class new file mode 100644 index 000000000..bbfef902c Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/renderer/MultiBufferSource.class differ diff --git a/build/_compileJava_2/net/minecraft/client/renderer/OutlineBufferSource$EntityOutlineGenerator.class b/build/_compileJava_2/net/minecraft/client/renderer/OutlineBufferSource$EntityOutlineGenerator.class new file mode 100644 index 000000000..04bb0b8ea Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/renderer/OutlineBufferSource$EntityOutlineGenerator.class differ diff --git a/build/_compileJava_2/net/minecraft/client/renderer/OutlineBufferSource.class b/build/_compileJava_2/net/minecraft/client/renderer/OutlineBufferSource.class new file mode 100644 index 000000000..0f05d1001 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/renderer/OutlineBufferSource.class differ diff --git a/build/_compileJava_2/net/minecraft/client/renderer/PanoramaRenderer.class b/build/_compileJava_2/net/minecraft/client/renderer/PanoramaRenderer.class new file mode 100644 index 000000000..16b1153be Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/renderer/PanoramaRenderer.class differ diff --git a/build/_compileJava_2/net/minecraft/client/renderer/PostChain.class b/build/_compileJava_2/net/minecraft/client/renderer/PostChain.class new file mode 100644 index 000000000..b943f1f9b Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/renderer/PostChain.class differ diff --git a/build/_compileJava_2/net/minecraft/client/renderer/PostPass.class b/build/_compileJava_2/net/minecraft/client/renderer/PostPass.class new file mode 100644 index 000000000..8264f7c5d Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/renderer/PostPass.class differ diff --git a/build/_compileJava_2/net/minecraft/client/renderer/Rect2i.class b/build/_compileJava_2/net/minecraft/client/renderer/Rect2i.class new file mode 100644 index 000000000..2e909d80f Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/renderer/Rect2i.class differ diff --git a/build/_compileJava_2/net/minecraft/client/renderer/RenderBuffers.class b/build/_compileJava_2/net/minecraft/client/renderer/RenderBuffers.class new file mode 100644 index 000000000..aa7d3d1eb Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/renderer/RenderBuffers.class differ diff --git a/build/_compileJava_2/net/minecraft/client/renderer/RenderStateShard$BooleanStateShard.class b/build/_compileJava_2/net/minecraft/client/renderer/RenderStateShard$BooleanStateShard.class new file mode 100644 index 000000000..631a1bc25 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/renderer/RenderStateShard$BooleanStateShard.class differ diff --git a/build/_compileJava_2/net/minecraft/client/renderer/RenderStateShard$ColorLogicStateShard.class b/build/_compileJava_2/net/minecraft/client/renderer/RenderStateShard$ColorLogicStateShard.class new file mode 100644 index 000000000..99d95690b Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/renderer/RenderStateShard$ColorLogicStateShard.class differ diff --git a/build/_compileJava_2/net/minecraft/client/renderer/RenderStateShard$CullStateShard.class b/build/_compileJava_2/net/minecraft/client/renderer/RenderStateShard$CullStateShard.class new file mode 100644 index 000000000..257ce0be0 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/renderer/RenderStateShard$CullStateShard.class differ diff --git a/build/_compileJava_2/net/minecraft/client/renderer/RenderStateShard$DepthTestStateShard.class b/build/_compileJava_2/net/minecraft/client/renderer/RenderStateShard$DepthTestStateShard.class new file mode 100644 index 000000000..09931abf3 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/renderer/RenderStateShard$DepthTestStateShard.class differ diff --git a/build/_compileJava_2/net/minecraft/client/renderer/RenderStateShard$EmptyTextureStateShard.class b/build/_compileJava_2/net/minecraft/client/renderer/RenderStateShard$EmptyTextureStateShard.class new file mode 100644 index 000000000..27368ad00 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/renderer/RenderStateShard$EmptyTextureStateShard.class differ diff --git a/build/_compileJava_2/net/minecraft/client/renderer/RenderStateShard$LayeringStateShard.class b/build/_compileJava_2/net/minecraft/client/renderer/RenderStateShard$LayeringStateShard.class new file mode 100644 index 000000000..fb275b2df Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/renderer/RenderStateShard$LayeringStateShard.class differ diff --git a/build/_compileJava_2/net/minecraft/client/renderer/RenderStateShard$LightmapStateShard.class b/build/_compileJava_2/net/minecraft/client/renderer/RenderStateShard$LightmapStateShard.class new file mode 100644 index 000000000..7d52829e1 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/renderer/RenderStateShard$LightmapStateShard.class differ diff --git a/build/_compileJava_2/net/minecraft/client/renderer/RenderStateShard$LineStateShard.class b/build/_compileJava_2/net/minecraft/client/renderer/RenderStateShard$LineStateShard.class new file mode 100644 index 000000000..1ac55937e Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/renderer/RenderStateShard$LineStateShard.class differ diff --git a/build/_compileJava_2/net/minecraft/client/renderer/RenderStateShard$MultiTextureStateShard$Builder.class b/build/_compileJava_2/net/minecraft/client/renderer/RenderStateShard$MultiTextureStateShard$Builder.class new file mode 100644 index 000000000..2115701b3 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/renderer/RenderStateShard$MultiTextureStateShard$Builder.class differ diff --git a/build/_compileJava_2/net/minecraft/client/renderer/RenderStateShard$MultiTextureStateShard.class b/build/_compileJava_2/net/minecraft/client/renderer/RenderStateShard$MultiTextureStateShard.class new file mode 100644 index 000000000..ce9c9866d Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/renderer/RenderStateShard$MultiTextureStateShard.class differ diff --git a/build/_compileJava_2/net/minecraft/client/renderer/RenderStateShard$OffsetTexturingStateShard.class b/build/_compileJava_2/net/minecraft/client/renderer/RenderStateShard$OffsetTexturingStateShard.class new file mode 100644 index 000000000..50f02dfaf Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/renderer/RenderStateShard$OffsetTexturingStateShard.class differ diff --git a/build/_compileJava_2/net/minecraft/client/renderer/RenderStateShard$OutputStateShard.class b/build/_compileJava_2/net/minecraft/client/renderer/RenderStateShard$OutputStateShard.class new file mode 100644 index 000000000..ed6f040ab Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/renderer/RenderStateShard$OutputStateShard.class differ diff --git a/build/_compileJava_2/net/minecraft/client/renderer/RenderStateShard$OverlayStateShard.class b/build/_compileJava_2/net/minecraft/client/renderer/RenderStateShard$OverlayStateShard.class new file mode 100644 index 000000000..d8b64b82a Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/renderer/RenderStateShard$OverlayStateShard.class differ diff --git a/build/_compileJava_2/net/minecraft/client/renderer/RenderStateShard$ShaderStateShard.class b/build/_compileJava_2/net/minecraft/client/renderer/RenderStateShard$ShaderStateShard.class new file mode 100644 index 000000000..4d16a49b1 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/renderer/RenderStateShard$ShaderStateShard.class differ diff --git a/build/_compileJava_2/net/minecraft/client/renderer/RenderStateShard$TextureStateShard.class b/build/_compileJava_2/net/minecraft/client/renderer/RenderStateShard$TextureStateShard.class new file mode 100644 index 000000000..d89e5c3d5 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/renderer/RenderStateShard$TextureStateShard.class differ diff --git a/build/_compileJava_2/net/minecraft/client/renderer/RenderStateShard$TexturingStateShard.class b/build/_compileJava_2/net/minecraft/client/renderer/RenderStateShard$TexturingStateShard.class new file mode 100644 index 000000000..d921705d7 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/renderer/RenderStateShard$TexturingStateShard.class differ diff --git a/build/_compileJava_2/net/minecraft/client/renderer/RenderStateShard$TransparencyStateShard.class b/build/_compileJava_2/net/minecraft/client/renderer/RenderStateShard$TransparencyStateShard.class new file mode 100644 index 000000000..ec9cc015c Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/renderer/RenderStateShard$TransparencyStateShard.class differ diff --git a/build/_compileJava_2/net/minecraft/client/renderer/RenderStateShard$WriteMaskStateShard.class b/build/_compileJava_2/net/minecraft/client/renderer/RenderStateShard$WriteMaskStateShard.class new file mode 100644 index 000000000..f21eb1341 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/renderer/RenderStateShard$WriteMaskStateShard.class differ diff --git a/build/_compileJava_2/net/minecraft/client/renderer/RenderStateShard.class b/build/_compileJava_2/net/minecraft/client/renderer/RenderStateShard.class new file mode 100644 index 000000000..29e8a85ce Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/renderer/RenderStateShard.class differ diff --git a/build/_compileJava_2/net/minecraft/client/renderer/RenderType$CompositeRenderType.class b/build/_compileJava_2/net/minecraft/client/renderer/RenderType$CompositeRenderType.class new file mode 100644 index 000000000..c04851404 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/renderer/RenderType$CompositeRenderType.class differ diff --git a/build/_compileJava_2/net/minecraft/client/renderer/RenderType$CompositeState$CompositeStateBuilder.class b/build/_compileJava_2/net/minecraft/client/renderer/RenderType$CompositeState$CompositeStateBuilder.class new file mode 100644 index 000000000..d51d7a1d5 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/renderer/RenderType$CompositeState$CompositeStateBuilder.class differ diff --git a/build/_compileJava_2/net/minecraft/client/renderer/RenderType$CompositeState.class b/build/_compileJava_2/net/minecraft/client/renderer/RenderType$CompositeState.class new file mode 100644 index 000000000..0bc185d8f Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/renderer/RenderType$CompositeState.class differ diff --git a/build/_compileJava_2/net/minecraft/client/renderer/RenderType$OutlineProperty.class b/build/_compileJava_2/net/minecraft/client/renderer/RenderType$OutlineProperty.class new file mode 100644 index 000000000..5f4db85b8 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/renderer/RenderType$OutlineProperty.class differ diff --git a/build/_compileJava_2/net/minecraft/client/renderer/RenderType.class b/build/_compileJava_2/net/minecraft/client/renderer/RenderType.class new file mode 100644 index 000000000..0cf836074 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/renderer/RenderType.class differ diff --git a/build/_compileJava_2/net/minecraft/client/renderer/RunningTrimmedMean.class b/build/_compileJava_2/net/minecraft/client/renderer/RunningTrimmedMean.class new file mode 100644 index 000000000..09a3985a7 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/renderer/RunningTrimmedMean.class differ diff --git a/build/_compileJava_2/net/minecraft/client/renderer/ScreenEffectRenderer.class b/build/_compileJava_2/net/minecraft/client/renderer/ScreenEffectRenderer.class new file mode 100644 index 000000000..96796fb3a Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/renderer/ScreenEffectRenderer.class differ diff --git a/build/_compileJava_2/net/minecraft/client/renderer/ShaderInstance$1.class b/build/_compileJava_2/net/minecraft/client/renderer/ShaderInstance$1.class new file mode 100644 index 000000000..f99c45f54 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/renderer/ShaderInstance$1.class differ diff --git a/build/_compileJava_2/net/minecraft/client/renderer/ShaderInstance.class b/build/_compileJava_2/net/minecraft/client/renderer/ShaderInstance.class new file mode 100644 index 000000000..3a9910fd9 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/renderer/ShaderInstance.class differ diff --git a/build/_compileJava_2/net/minecraft/client/renderer/Sheets$1.class b/build/_compileJava_2/net/minecraft/client/renderer/Sheets$1.class new file mode 100644 index 000000000..cb037c544 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/renderer/Sheets$1.class differ diff --git a/build/_compileJava_2/net/minecraft/client/renderer/Sheets.class b/build/_compileJava_2/net/minecraft/client/renderer/Sheets.class new file mode 100644 index 000000000..cca159bd3 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/renderer/Sheets.class differ diff --git a/build/_compileJava_2/net/minecraft/client/renderer/SpriteCoordinateExpander.class b/build/_compileJava_2/net/minecraft/client/renderer/SpriteCoordinateExpander.class new file mode 100644 index 000000000..c1e51fe6c Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/renderer/SpriteCoordinateExpander.class differ diff --git a/build/_compileJava_2/net/minecraft/client/renderer/ViewArea.class b/build/_compileJava_2/net/minecraft/client/renderer/ViewArea.class new file mode 100644 index 000000000..1336d4ebc Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/renderer/ViewArea.class differ diff --git a/build/_compileJava_2/net/minecraft/client/renderer/VirtualScreen.class b/build/_compileJava_2/net/minecraft/client/renderer/VirtualScreen.class new file mode 100644 index 000000000..fae9f34ea Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/renderer/VirtualScreen.class differ diff --git a/build/_compileJava_2/net/minecraft/client/renderer/block/BlockModelShaper.class b/build/_compileJava_2/net/minecraft/client/renderer/block/BlockModelShaper.class new file mode 100644 index 000000000..2329093a1 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/renderer/block/BlockModelShaper.class differ diff --git a/build/_compileJava_2/net/minecraft/client/renderer/block/BlockRenderDispatcher$1.class b/build/_compileJava_2/net/minecraft/client/renderer/block/BlockRenderDispatcher$1.class new file mode 100644 index 000000000..546a4d4d3 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/renderer/block/BlockRenderDispatcher$1.class differ diff --git a/build/_compileJava_2/net/minecraft/client/renderer/block/BlockRenderDispatcher.class b/build/_compileJava_2/net/minecraft/client/renderer/block/BlockRenderDispatcher.class new file mode 100644 index 000000000..acdbccb8f Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/renderer/block/BlockRenderDispatcher.class differ diff --git a/build/_compileJava_2/net/minecraft/client/renderer/block/LiquidBlockRenderer$1.class b/build/_compileJava_2/net/minecraft/client/renderer/block/LiquidBlockRenderer$1.class new file mode 100644 index 000000000..de3945d4c Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/renderer/block/LiquidBlockRenderer$1.class differ diff --git a/build/_compileJava_2/net/minecraft/client/renderer/block/LiquidBlockRenderer.class b/build/_compileJava_2/net/minecraft/client/renderer/block/LiquidBlockRenderer.class new file mode 100644 index 000000000..439c2a70c Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/renderer/block/LiquidBlockRenderer.class differ diff --git a/build/_compileJava_2/net/minecraft/client/renderer/block/ModelBlockRenderer$1.class b/build/_compileJava_2/net/minecraft/client/renderer/block/ModelBlockRenderer$1.class new file mode 100644 index 000000000..26ad0a566 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/renderer/block/ModelBlockRenderer$1.class differ diff --git a/build/_compileJava_2/net/minecraft/client/renderer/block/ModelBlockRenderer$AdjacencyInfo.class b/build/_compileJava_2/net/minecraft/client/renderer/block/ModelBlockRenderer$AdjacencyInfo.class new file mode 100644 index 000000000..ea54ac0bf Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/renderer/block/ModelBlockRenderer$AdjacencyInfo.class differ diff --git a/build/_compileJava_2/net/minecraft/client/renderer/block/ModelBlockRenderer$AmbientOcclusionFace.class b/build/_compileJava_2/net/minecraft/client/renderer/block/ModelBlockRenderer$AmbientOcclusionFace.class new file mode 100644 index 000000000..db94d34c1 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/renderer/block/ModelBlockRenderer$AmbientOcclusionFace.class differ diff --git a/build/_compileJava_2/net/minecraft/client/renderer/block/ModelBlockRenderer$AmbientVertexRemap.class b/build/_compileJava_2/net/minecraft/client/renderer/block/ModelBlockRenderer$AmbientVertexRemap.class new file mode 100644 index 000000000..b732c4500 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/renderer/block/ModelBlockRenderer$AmbientVertexRemap.class differ diff --git a/build/_compileJava_2/net/minecraft/client/renderer/block/ModelBlockRenderer$Cache$1.class b/build/_compileJava_2/net/minecraft/client/renderer/block/ModelBlockRenderer$Cache$1.class new file mode 100644 index 000000000..9a46746a6 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/renderer/block/ModelBlockRenderer$Cache$1.class differ diff --git a/build/_compileJava_2/net/minecraft/client/renderer/block/ModelBlockRenderer$Cache$2.class b/build/_compileJava_2/net/minecraft/client/renderer/block/ModelBlockRenderer$Cache$2.class new file mode 100644 index 000000000..da12bce99 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/renderer/block/ModelBlockRenderer$Cache$2.class differ diff --git a/build/_compileJava_2/net/minecraft/client/renderer/block/ModelBlockRenderer$Cache.class b/build/_compileJava_2/net/minecraft/client/renderer/block/ModelBlockRenderer$Cache.class new file mode 100644 index 000000000..30362eadf Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/renderer/block/ModelBlockRenderer$Cache.class differ diff --git a/build/_compileJava_2/net/minecraft/client/renderer/block/ModelBlockRenderer$SizeInfo.class b/build/_compileJava_2/net/minecraft/client/renderer/block/ModelBlockRenderer$SizeInfo.class new file mode 100644 index 000000000..6685948b4 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/renderer/block/ModelBlockRenderer$SizeInfo.class differ diff --git a/build/_compileJava_2/net/minecraft/client/renderer/block/ModelBlockRenderer.class b/build/_compileJava_2/net/minecraft/client/renderer/block/ModelBlockRenderer.class new file mode 100644 index 000000000..88eef628a Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/renderer/block/ModelBlockRenderer.class differ diff --git a/build/_compileJava_2/net/minecraft/client/renderer/block/model/BakedQuad.class b/build/_compileJava_2/net/minecraft/client/renderer/block/model/BakedQuad.class new file mode 100644 index 000000000..555fc1054 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/renderer/block/model/BakedQuad.class differ diff --git a/build/_compileJava_2/net/minecraft/client/renderer/block/model/BlockElement$1.class b/build/_compileJava_2/net/minecraft/client/renderer/block/model/BlockElement$1.class new file mode 100644 index 000000000..19f3c7f67 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/renderer/block/model/BlockElement$1.class differ diff --git a/build/_compileJava_2/net/minecraft/client/renderer/block/model/BlockElement$Deserializer.class b/build/_compileJava_2/net/minecraft/client/renderer/block/model/BlockElement$Deserializer.class new file mode 100644 index 000000000..ac632bb39 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/renderer/block/model/BlockElement$Deserializer.class differ diff --git a/build/_compileJava_2/net/minecraft/client/renderer/block/model/BlockElement.class b/build/_compileJava_2/net/minecraft/client/renderer/block/model/BlockElement.class new file mode 100644 index 000000000..76714ceee Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/renderer/block/model/BlockElement.class differ diff --git a/build/_compileJava_2/net/minecraft/client/renderer/block/model/BlockElementFace$Deserializer.class b/build/_compileJava_2/net/minecraft/client/renderer/block/model/BlockElementFace$Deserializer.class new file mode 100644 index 000000000..f416e8f68 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/renderer/block/model/BlockElementFace$Deserializer.class differ diff --git a/build/_compileJava_2/net/minecraft/client/renderer/block/model/BlockElementFace.class b/build/_compileJava_2/net/minecraft/client/renderer/block/model/BlockElementFace.class new file mode 100644 index 000000000..a8cf1eee7 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/renderer/block/model/BlockElementFace.class differ diff --git a/build/_compileJava_2/net/minecraft/client/renderer/block/model/BlockElementRotation.class b/build/_compileJava_2/net/minecraft/client/renderer/block/model/BlockElementRotation.class new file mode 100644 index 000000000..09b1d64a2 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/renderer/block/model/BlockElementRotation.class differ diff --git a/build/_compileJava_2/net/minecraft/client/renderer/block/model/BlockFaceUV$Deserializer.class b/build/_compileJava_2/net/minecraft/client/renderer/block/model/BlockFaceUV$Deserializer.class new file mode 100644 index 000000000..b2fa5ab38 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/renderer/block/model/BlockFaceUV$Deserializer.class differ diff --git a/build/_compileJava_2/net/minecraft/client/renderer/block/model/BlockFaceUV.class b/build/_compileJava_2/net/minecraft/client/renderer/block/model/BlockFaceUV.class new file mode 100644 index 000000000..ccd946215 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/renderer/block/model/BlockFaceUV.class differ diff --git a/build/_compileJava_2/net/minecraft/client/renderer/block/model/BlockModel$Deserializer.class b/build/_compileJava_2/net/minecraft/client/renderer/block/model/BlockModel$Deserializer.class new file mode 100644 index 000000000..1dde3031e Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/renderer/block/model/BlockModel$Deserializer.class differ diff --git a/build/_compileJava_2/net/minecraft/client/renderer/block/model/BlockModel$GuiLight.class b/build/_compileJava_2/net/minecraft/client/renderer/block/model/BlockModel$GuiLight.class new file mode 100644 index 000000000..38135fead Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/renderer/block/model/BlockModel$GuiLight.class differ diff --git a/build/_compileJava_2/net/minecraft/client/renderer/block/model/BlockModel$LoopException.class b/build/_compileJava_2/net/minecraft/client/renderer/block/model/BlockModel$LoopException.class new file mode 100644 index 000000000..f8036c156 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/renderer/block/model/BlockModel$LoopException.class differ diff --git a/build/_compileJava_2/net/minecraft/client/renderer/block/model/BlockModel.class b/build/_compileJava_2/net/minecraft/client/renderer/block/model/BlockModel.class new file mode 100644 index 000000000..c968078cf Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/renderer/block/model/BlockModel.class differ diff --git a/build/_compileJava_2/net/minecraft/client/renderer/block/model/BlockModelDefinition$Context.class b/build/_compileJava_2/net/minecraft/client/renderer/block/model/BlockModelDefinition$Context.class new file mode 100644 index 000000000..cdd85702e Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/renderer/block/model/BlockModelDefinition$Context.class differ diff --git a/build/_compileJava_2/net/minecraft/client/renderer/block/model/BlockModelDefinition$Deserializer.class b/build/_compileJava_2/net/minecraft/client/renderer/block/model/BlockModelDefinition$Deserializer.class new file mode 100644 index 000000000..cd7385ded Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/renderer/block/model/BlockModelDefinition$Deserializer.class differ diff --git a/build/_compileJava_2/net/minecraft/client/renderer/block/model/BlockModelDefinition$MissingVariantException.class b/build/_compileJava_2/net/minecraft/client/renderer/block/model/BlockModelDefinition$MissingVariantException.class new file mode 100644 index 000000000..9f89afacb Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/renderer/block/model/BlockModelDefinition$MissingVariantException.class differ diff --git a/build/_compileJava_2/net/minecraft/client/renderer/block/model/BlockModelDefinition.class b/build/_compileJava_2/net/minecraft/client/renderer/block/model/BlockModelDefinition.class new file mode 100644 index 000000000..c8c7abda3 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/renderer/block/model/BlockModelDefinition.class differ diff --git a/build/_compileJava_2/net/minecraft/client/renderer/block/model/FaceBakery$1.class b/build/_compileJava_2/net/minecraft/client/renderer/block/model/FaceBakery$1.class new file mode 100644 index 000000000..959a9e198 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/renderer/block/model/FaceBakery$1.class differ diff --git a/build/_compileJava_2/net/minecraft/client/renderer/block/model/FaceBakery.class b/build/_compileJava_2/net/minecraft/client/renderer/block/model/FaceBakery.class new file mode 100644 index 000000000..4385cce5d Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/renderer/block/model/FaceBakery.class differ diff --git a/build/_compileJava_2/net/minecraft/client/renderer/block/model/ItemModelGenerator$1.class b/build/_compileJava_2/net/minecraft/client/renderer/block/model/ItemModelGenerator$1.class new file mode 100644 index 000000000..2bcaca10c Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/renderer/block/model/ItemModelGenerator$1.class differ diff --git a/build/_compileJava_2/net/minecraft/client/renderer/block/model/ItemModelGenerator$Span.class b/build/_compileJava_2/net/minecraft/client/renderer/block/model/ItemModelGenerator$Span.class new file mode 100644 index 000000000..61ad699f1 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/renderer/block/model/ItemModelGenerator$Span.class differ diff --git a/build/_compileJava_2/net/minecraft/client/renderer/block/model/ItemModelGenerator$SpanFacing.class b/build/_compileJava_2/net/minecraft/client/renderer/block/model/ItemModelGenerator$SpanFacing.class new file mode 100644 index 000000000..fafb6870b Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/renderer/block/model/ItemModelGenerator$SpanFacing.class differ diff --git a/build/_compileJava_2/net/minecraft/client/renderer/block/model/ItemModelGenerator.class b/build/_compileJava_2/net/minecraft/client/renderer/block/model/ItemModelGenerator.class new file mode 100644 index 000000000..aee7ad61e Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/renderer/block/model/ItemModelGenerator.class differ diff --git a/build/_compileJava_2/net/minecraft/client/renderer/block/model/ItemOverride$Deserializer.class b/build/_compileJava_2/net/minecraft/client/renderer/block/model/ItemOverride$Deserializer.class new file mode 100644 index 000000000..2a5072f16 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/renderer/block/model/ItemOverride$Deserializer.class differ diff --git a/build/_compileJava_2/net/minecraft/client/renderer/block/model/ItemOverride$Predicate.class b/build/_compileJava_2/net/minecraft/client/renderer/block/model/ItemOverride$Predicate.class new file mode 100644 index 000000000..374d151a8 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/renderer/block/model/ItemOverride$Predicate.class differ diff --git a/build/_compileJava_2/net/minecraft/client/renderer/block/model/ItemOverride.class b/build/_compileJava_2/net/minecraft/client/renderer/block/model/ItemOverride.class new file mode 100644 index 000000000..02437171a Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/renderer/block/model/ItemOverride.class differ diff --git a/build/_compileJava_2/net/minecraft/client/renderer/block/model/ItemOverrides$BakedOverride.class b/build/_compileJava_2/net/minecraft/client/renderer/block/model/ItemOverrides$BakedOverride.class new file mode 100644 index 000000000..230a17894 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/renderer/block/model/ItemOverrides$BakedOverride.class differ diff --git a/build/_compileJava_2/net/minecraft/client/renderer/block/model/ItemOverrides$PropertyMatcher.class b/build/_compileJava_2/net/minecraft/client/renderer/block/model/ItemOverrides$PropertyMatcher.class new file mode 100644 index 000000000..2944a0f07 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/renderer/block/model/ItemOverrides$PropertyMatcher.class differ diff --git a/build/_compileJava_2/net/minecraft/client/renderer/block/model/ItemOverrides.class b/build/_compileJava_2/net/minecraft/client/renderer/block/model/ItemOverrides.class new file mode 100644 index 000000000..788224c10 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/renderer/block/model/ItemOverrides.class differ diff --git a/build/_compileJava_2/net/minecraft/client/renderer/block/model/ItemTransform$Deserializer.class b/build/_compileJava_2/net/minecraft/client/renderer/block/model/ItemTransform$Deserializer.class new file mode 100644 index 000000000..55a2d58f8 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/renderer/block/model/ItemTransform$Deserializer.class differ diff --git a/build/_compileJava_2/net/minecraft/client/renderer/block/model/ItemTransform.class b/build/_compileJava_2/net/minecraft/client/renderer/block/model/ItemTransform.class new file mode 100644 index 000000000..ca1314872 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/renderer/block/model/ItemTransform.class differ diff --git a/build/_compileJava_2/net/minecraft/client/renderer/block/model/ItemTransforms$1.class b/build/_compileJava_2/net/minecraft/client/renderer/block/model/ItemTransforms$1.class new file mode 100644 index 000000000..d9d6aa95a Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/renderer/block/model/ItemTransforms$1.class differ diff --git a/build/_compileJava_2/net/minecraft/client/renderer/block/model/ItemTransforms$Deserializer.class b/build/_compileJava_2/net/minecraft/client/renderer/block/model/ItemTransforms$Deserializer.class new file mode 100644 index 000000000..9ecb43e2e Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/renderer/block/model/ItemTransforms$Deserializer.class differ diff --git a/build/_compileJava_2/net/minecraft/client/renderer/block/model/ItemTransforms.class b/build/_compileJava_2/net/minecraft/client/renderer/block/model/ItemTransforms.class new file mode 100644 index 000000000..c3fc9eb61 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/renderer/block/model/ItemTransforms.class differ diff --git a/build/_compileJava_2/net/minecraft/client/renderer/block/model/MultiVariant$Deserializer.class b/build/_compileJava_2/net/minecraft/client/renderer/block/model/MultiVariant$Deserializer.class new file mode 100644 index 000000000..8f39e5984 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/renderer/block/model/MultiVariant$Deserializer.class differ diff --git a/build/_compileJava_2/net/minecraft/client/renderer/block/model/MultiVariant.class b/build/_compileJava_2/net/minecraft/client/renderer/block/model/MultiVariant.class new file mode 100644 index 000000000..5d5aba128 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/renderer/block/model/MultiVariant.class differ diff --git a/build/_compileJava_2/net/minecraft/client/renderer/block/model/Variant$Deserializer.class b/build/_compileJava_2/net/minecraft/client/renderer/block/model/Variant$Deserializer.class new file mode 100644 index 000000000..50bd79cf5 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/renderer/block/model/Variant$Deserializer.class differ diff --git a/build/_compileJava_2/net/minecraft/client/renderer/block/model/Variant.class b/build/_compileJava_2/net/minecraft/client/renderer/block/model/Variant.class new file mode 100644 index 000000000..80d91cf64 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/renderer/block/model/Variant.class differ diff --git a/build/_compileJava_2/net/minecraft/client/renderer/block/model/multipart/AndCondition.class b/build/_compileJava_2/net/minecraft/client/renderer/block/model/multipart/AndCondition.class new file mode 100644 index 000000000..e47414041 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/renderer/block/model/multipart/AndCondition.class differ diff --git a/build/_compileJava_2/net/minecraft/client/renderer/block/model/multipart/Condition.class b/build/_compileJava_2/net/minecraft/client/renderer/block/model/multipart/Condition.class new file mode 100644 index 000000000..85ffd5833 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/renderer/block/model/multipart/Condition.class differ diff --git a/build/_compileJava_2/net/minecraft/client/renderer/block/model/multipart/KeyValueCondition.class b/build/_compileJava_2/net/minecraft/client/renderer/block/model/multipart/KeyValueCondition.class new file mode 100644 index 000000000..3803f4947 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/renderer/block/model/multipart/KeyValueCondition.class differ diff --git a/build/_compileJava_2/net/minecraft/client/renderer/block/model/multipart/MultiPart$Deserializer.class b/build/_compileJava_2/net/minecraft/client/renderer/block/model/multipart/MultiPart$Deserializer.class new file mode 100644 index 000000000..56c796175 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/renderer/block/model/multipart/MultiPart$Deserializer.class differ diff --git a/build/_compileJava_2/net/minecraft/client/renderer/block/model/multipart/MultiPart.class b/build/_compileJava_2/net/minecraft/client/renderer/block/model/multipart/MultiPart.class new file mode 100644 index 000000000..1d672d411 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/renderer/block/model/multipart/MultiPart.class differ diff --git a/build/_compileJava_2/net/minecraft/client/renderer/block/model/multipart/OrCondition.class b/build/_compileJava_2/net/minecraft/client/renderer/block/model/multipart/OrCondition.class new file mode 100644 index 000000000..73f69b43d Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/renderer/block/model/multipart/OrCondition.class differ diff --git a/build/_compileJava_2/net/minecraft/client/renderer/block/model/multipart/Selector$Deserializer.class b/build/_compileJava_2/net/minecraft/client/renderer/block/model/multipart/Selector$Deserializer.class new file mode 100644 index 000000000..67f41ff60 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/renderer/block/model/multipart/Selector$Deserializer.class differ diff --git a/build/_compileJava_2/net/minecraft/client/renderer/block/model/multipart/Selector.class b/build/_compileJava_2/net/minecraft/client/renderer/block/model/multipart/Selector.class new file mode 100644 index 000000000..737862f4f Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/renderer/block/model/multipart/Selector.class differ diff --git a/build/_compileJava_2/net/minecraft/client/renderer/block/model/multipart/package-info.class b/build/_compileJava_2/net/minecraft/client/renderer/block/model/multipart/package-info.class new file mode 100644 index 000000000..80d115bc0 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/renderer/block/model/multipart/package-info.class differ diff --git a/build/_compileJava_2/net/minecraft/client/renderer/block/model/package-info.class b/build/_compileJava_2/net/minecraft/client/renderer/block/model/package-info.class new file mode 100644 index 000000000..3e71cb198 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/renderer/block/model/package-info.class differ diff --git a/build/_compileJava_2/net/minecraft/client/renderer/block/package-info.class b/build/_compileJava_2/net/minecraft/client/renderer/block/package-info.class new file mode 100644 index 000000000..4c668ce81 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/renderer/block/package-info.class differ diff --git a/build/_compileJava_2/net/minecraft/client/renderer/blockentity/BannerRenderer.class b/build/_compileJava_2/net/minecraft/client/renderer/blockentity/BannerRenderer.class new file mode 100644 index 000000000..848a9d9bd Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/renderer/blockentity/BannerRenderer.class differ diff --git a/build/_compileJava_2/net/minecraft/client/renderer/blockentity/BeaconRenderer.class b/build/_compileJava_2/net/minecraft/client/renderer/blockentity/BeaconRenderer.class new file mode 100644 index 000000000..ce20f1b30 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/renderer/blockentity/BeaconRenderer.class differ diff --git a/build/_compileJava_2/net/minecraft/client/renderer/blockentity/BedRenderer.class b/build/_compileJava_2/net/minecraft/client/renderer/blockentity/BedRenderer.class new file mode 100644 index 000000000..2a22b2bb4 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/renderer/blockentity/BedRenderer.class differ diff --git a/build/_compileJava_2/net/minecraft/client/renderer/blockentity/BellRenderer.class b/build/_compileJava_2/net/minecraft/client/renderer/blockentity/BellRenderer.class new file mode 100644 index 000000000..42b425f79 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/renderer/blockentity/BellRenderer.class differ diff --git a/build/_compileJava_2/net/minecraft/client/renderer/blockentity/BlockEntityRenderDispatcher.class b/build/_compileJava_2/net/minecraft/client/renderer/blockentity/BlockEntityRenderDispatcher.class new file mode 100644 index 000000000..1e1d33740 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/renderer/blockentity/BlockEntityRenderDispatcher.class differ diff --git a/build/_compileJava_2/net/minecraft/client/renderer/blockentity/BlockEntityRenderer.class b/build/_compileJava_2/net/minecraft/client/renderer/blockentity/BlockEntityRenderer.class new file mode 100644 index 000000000..3c8f1c1d8 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/renderer/blockentity/BlockEntityRenderer.class differ diff --git a/build/_compileJava_2/net/minecraft/client/renderer/blockentity/BlockEntityRendererProvider$Context.class b/build/_compileJava_2/net/minecraft/client/renderer/blockentity/BlockEntityRendererProvider$Context.class new file mode 100644 index 000000000..2afb244ec Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/renderer/blockentity/BlockEntityRendererProvider$Context.class differ diff --git a/build/_compileJava_2/net/minecraft/client/renderer/blockentity/BlockEntityRendererProvider.class b/build/_compileJava_2/net/minecraft/client/renderer/blockentity/BlockEntityRendererProvider.class new file mode 100644 index 000000000..89e24f684 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/renderer/blockentity/BlockEntityRendererProvider.class differ diff --git a/build/_compileJava_2/net/minecraft/client/renderer/blockentity/BlockEntityRenderers.class b/build/_compileJava_2/net/minecraft/client/renderer/blockentity/BlockEntityRenderers.class new file mode 100644 index 000000000..3b5b05a7e Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/renderer/blockentity/BlockEntityRenderers.class differ diff --git a/build/_compileJava_2/net/minecraft/client/renderer/blockentity/BrightnessCombiner.class b/build/_compileJava_2/net/minecraft/client/renderer/blockentity/BrightnessCombiner.class new file mode 100644 index 000000000..c25853e01 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/renderer/blockentity/BrightnessCombiner.class differ diff --git a/build/_compileJava_2/net/minecraft/client/renderer/blockentity/BrushableBlockRenderer$1.class b/build/_compileJava_2/net/minecraft/client/renderer/blockentity/BrushableBlockRenderer$1.class new file mode 100644 index 000000000..23d23cdfe Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/renderer/blockentity/BrushableBlockRenderer$1.class differ diff --git a/build/_compileJava_2/net/minecraft/client/renderer/blockentity/BrushableBlockRenderer.class b/build/_compileJava_2/net/minecraft/client/renderer/blockentity/BrushableBlockRenderer.class new file mode 100644 index 000000000..6639837c5 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/renderer/blockentity/BrushableBlockRenderer.class differ diff --git a/build/_compileJava_2/net/minecraft/client/renderer/blockentity/CampfireRenderer.class b/build/_compileJava_2/net/minecraft/client/renderer/blockentity/CampfireRenderer.class new file mode 100644 index 000000000..d7bf71752 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/renderer/blockentity/CampfireRenderer.class differ diff --git a/build/_compileJava_2/net/minecraft/client/renderer/blockentity/ChestRenderer.class b/build/_compileJava_2/net/minecraft/client/renderer/blockentity/ChestRenderer.class new file mode 100644 index 000000000..7dee53755 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/renderer/blockentity/ChestRenderer.class differ diff --git a/build/_compileJava_2/net/minecraft/client/renderer/blockentity/ConduitRenderer.class b/build/_compileJava_2/net/minecraft/client/renderer/blockentity/ConduitRenderer.class new file mode 100644 index 000000000..55de514dd Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/renderer/blockentity/ConduitRenderer.class differ diff --git a/build/_compileJava_2/net/minecraft/client/renderer/blockentity/DecoratedPotRenderer.class b/build/_compileJava_2/net/minecraft/client/renderer/blockentity/DecoratedPotRenderer.class new file mode 100644 index 000000000..7d25715da Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/renderer/blockentity/DecoratedPotRenderer.class differ diff --git a/build/_compileJava_2/net/minecraft/client/renderer/blockentity/EnchantTableRenderer.class b/build/_compileJava_2/net/minecraft/client/renderer/blockentity/EnchantTableRenderer.class new file mode 100644 index 000000000..0d4f10a1a Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/renderer/blockentity/EnchantTableRenderer.class differ diff --git a/build/_compileJava_2/net/minecraft/client/renderer/blockentity/HangingSignRenderer$HangingSignModel.class b/build/_compileJava_2/net/minecraft/client/renderer/blockentity/HangingSignRenderer$HangingSignModel.class new file mode 100644 index 000000000..de129d7be Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/renderer/blockentity/HangingSignRenderer$HangingSignModel.class differ diff --git a/build/_compileJava_2/net/minecraft/client/renderer/blockentity/HangingSignRenderer.class b/build/_compileJava_2/net/minecraft/client/renderer/blockentity/HangingSignRenderer.class new file mode 100644 index 000000000..a1d2273ee Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/renderer/blockentity/HangingSignRenderer.class differ diff --git a/build/_compileJava_2/net/minecraft/client/renderer/blockentity/LecternRenderer.class b/build/_compileJava_2/net/minecraft/client/renderer/blockentity/LecternRenderer.class new file mode 100644 index 000000000..c98dee992 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/renderer/blockentity/LecternRenderer.class differ diff --git a/build/_compileJava_2/net/minecraft/client/renderer/blockentity/PistonHeadRenderer.class b/build/_compileJava_2/net/minecraft/client/renderer/blockentity/PistonHeadRenderer.class new file mode 100644 index 000000000..dc5600f34 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/renderer/blockentity/PistonHeadRenderer.class differ diff --git a/build/_compileJava_2/net/minecraft/client/renderer/blockentity/ShulkerBoxRenderer.class b/build/_compileJava_2/net/minecraft/client/renderer/blockentity/ShulkerBoxRenderer.class new file mode 100644 index 000000000..e61873a55 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/renderer/blockentity/ShulkerBoxRenderer.class differ diff --git a/build/_compileJava_2/net/minecraft/client/renderer/blockentity/SignRenderer$SignModel.class b/build/_compileJava_2/net/minecraft/client/renderer/blockentity/SignRenderer$SignModel.class new file mode 100644 index 000000000..409ef39ec Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/renderer/blockentity/SignRenderer$SignModel.class differ diff --git a/build/_compileJava_2/net/minecraft/client/renderer/blockentity/SignRenderer.class b/build/_compileJava_2/net/minecraft/client/renderer/blockentity/SignRenderer.class new file mode 100644 index 000000000..4bd9fb8ee Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/renderer/blockentity/SignRenderer.class differ diff --git a/build/_compileJava_2/net/minecraft/client/renderer/blockentity/SkullBlockRenderer.class b/build/_compileJava_2/net/minecraft/client/renderer/blockentity/SkullBlockRenderer.class new file mode 100644 index 000000000..95ee5c98a Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/renderer/blockentity/SkullBlockRenderer.class differ diff --git a/build/_compileJava_2/net/minecraft/client/renderer/blockentity/SpawnerRenderer.class b/build/_compileJava_2/net/minecraft/client/renderer/blockentity/SpawnerRenderer.class new file mode 100644 index 000000000..974b6c301 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/renderer/blockentity/SpawnerRenderer.class differ diff --git a/build/_compileJava_2/net/minecraft/client/renderer/blockentity/StructureBlockRenderer$1.class b/build/_compileJava_2/net/minecraft/client/renderer/blockentity/StructureBlockRenderer$1.class new file mode 100644 index 000000000..076a00159 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/renderer/blockentity/StructureBlockRenderer$1.class differ diff --git a/build/_compileJava_2/net/minecraft/client/renderer/blockentity/StructureBlockRenderer.class b/build/_compileJava_2/net/minecraft/client/renderer/blockentity/StructureBlockRenderer.class new file mode 100644 index 000000000..f1b338957 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/renderer/blockentity/StructureBlockRenderer.class differ diff --git a/build/_compileJava_2/net/minecraft/client/renderer/blockentity/TheEndGatewayRenderer.class b/build/_compileJava_2/net/minecraft/client/renderer/blockentity/TheEndGatewayRenderer.class new file mode 100644 index 000000000..8fbe17471 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/renderer/blockentity/TheEndGatewayRenderer.class differ diff --git a/build/_compileJava_2/net/minecraft/client/renderer/blockentity/TheEndPortalRenderer.class b/build/_compileJava_2/net/minecraft/client/renderer/blockentity/TheEndPortalRenderer.class new file mode 100644 index 000000000..8d5c7ab95 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/renderer/blockentity/TheEndPortalRenderer.class differ diff --git a/build/_compileJava_2/net/minecraft/client/renderer/blockentity/package-info.class b/build/_compileJava_2/net/minecraft/client/renderer/blockentity/package-info.class new file mode 100644 index 000000000..bcb002354 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/renderer/blockentity/package-info.class differ diff --git a/build/_compileJava_2/net/minecraft/client/renderer/chunk/ChunkRenderDispatcher$ChunkTaskResult.class b/build/_compileJava_2/net/minecraft/client/renderer/chunk/ChunkRenderDispatcher$ChunkTaskResult.class new file mode 100644 index 000000000..d67315a38 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/renderer/chunk/ChunkRenderDispatcher$ChunkTaskResult.class differ diff --git a/build/_compileJava_2/net/minecraft/client/renderer/chunk/ChunkRenderDispatcher$CompiledChunk$1.class b/build/_compileJava_2/net/minecraft/client/renderer/chunk/ChunkRenderDispatcher$CompiledChunk$1.class new file mode 100644 index 000000000..2296eb34b Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/renderer/chunk/ChunkRenderDispatcher$CompiledChunk$1.class differ diff --git a/build/_compileJava_2/net/minecraft/client/renderer/chunk/ChunkRenderDispatcher$CompiledChunk.class b/build/_compileJava_2/net/minecraft/client/renderer/chunk/ChunkRenderDispatcher$CompiledChunk.class new file mode 100644 index 000000000..7541dd1bc Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/renderer/chunk/ChunkRenderDispatcher$CompiledChunk.class differ diff --git a/build/_compileJava_2/net/minecraft/client/renderer/chunk/ChunkRenderDispatcher$RenderChunk$ChunkCompileTask.class b/build/_compileJava_2/net/minecraft/client/renderer/chunk/ChunkRenderDispatcher$RenderChunk$ChunkCompileTask.class new file mode 100644 index 000000000..a0f3b858f Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/renderer/chunk/ChunkRenderDispatcher$RenderChunk$ChunkCompileTask.class differ diff --git a/build/_compileJava_2/net/minecraft/client/renderer/chunk/ChunkRenderDispatcher$RenderChunk$RebuildTask$CompileResults.class b/build/_compileJava_2/net/minecraft/client/renderer/chunk/ChunkRenderDispatcher$RenderChunk$RebuildTask$CompileResults.class new file mode 100644 index 000000000..7c67449ad Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/renderer/chunk/ChunkRenderDispatcher$RenderChunk$RebuildTask$CompileResults.class differ diff --git a/build/_compileJava_2/net/minecraft/client/renderer/chunk/ChunkRenderDispatcher$RenderChunk$RebuildTask.class b/build/_compileJava_2/net/minecraft/client/renderer/chunk/ChunkRenderDispatcher$RenderChunk$RebuildTask.class new file mode 100644 index 000000000..6eebb9546 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/renderer/chunk/ChunkRenderDispatcher$RenderChunk$RebuildTask.class differ diff --git a/build/_compileJava_2/net/minecraft/client/renderer/chunk/ChunkRenderDispatcher$RenderChunk$ResortTransparencyTask.class b/build/_compileJava_2/net/minecraft/client/renderer/chunk/ChunkRenderDispatcher$RenderChunk$ResortTransparencyTask.class new file mode 100644 index 000000000..f0ec5fa5d Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/renderer/chunk/ChunkRenderDispatcher$RenderChunk$ResortTransparencyTask.class differ diff --git a/build/_compileJava_2/net/minecraft/client/renderer/chunk/ChunkRenderDispatcher$RenderChunk.class b/build/_compileJava_2/net/minecraft/client/renderer/chunk/ChunkRenderDispatcher$RenderChunk.class new file mode 100644 index 000000000..f41db0d2d Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/renderer/chunk/ChunkRenderDispatcher$RenderChunk.class differ diff --git a/build/_compileJava_2/net/minecraft/client/renderer/chunk/ChunkRenderDispatcher.class b/build/_compileJava_2/net/minecraft/client/renderer/chunk/ChunkRenderDispatcher.class new file mode 100644 index 000000000..000d8927d Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/renderer/chunk/ChunkRenderDispatcher.class differ diff --git a/build/_compileJava_2/net/minecraft/client/renderer/chunk/RenderChunk.class b/build/_compileJava_2/net/minecraft/client/renderer/chunk/RenderChunk.class new file mode 100644 index 000000000..ac23f2a91 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/renderer/chunk/RenderChunk.class differ diff --git a/build/_compileJava_2/net/minecraft/client/renderer/chunk/RenderChunkRegion.class b/build/_compileJava_2/net/minecraft/client/renderer/chunk/RenderChunkRegion.class new file mode 100644 index 000000000..8f49acf7e Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/renderer/chunk/RenderChunkRegion.class differ diff --git a/build/_compileJava_2/net/minecraft/client/renderer/chunk/RenderRegionCache$ChunkInfo.class b/build/_compileJava_2/net/minecraft/client/renderer/chunk/RenderRegionCache$ChunkInfo.class new file mode 100644 index 000000000..76e020b2e Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/renderer/chunk/RenderRegionCache$ChunkInfo.class differ diff --git a/build/_compileJava_2/net/minecraft/client/renderer/chunk/RenderRegionCache.class b/build/_compileJava_2/net/minecraft/client/renderer/chunk/RenderRegionCache.class new file mode 100644 index 000000000..359634dfd Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/renderer/chunk/RenderRegionCache.class differ diff --git a/build/_compileJava_2/net/minecraft/client/renderer/chunk/VisGraph$1.class b/build/_compileJava_2/net/minecraft/client/renderer/chunk/VisGraph$1.class new file mode 100644 index 000000000..2d3f3cf16 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/renderer/chunk/VisGraph$1.class differ diff --git a/build/_compileJava_2/net/minecraft/client/renderer/chunk/VisGraph.class b/build/_compileJava_2/net/minecraft/client/renderer/chunk/VisGraph.class new file mode 100644 index 000000000..76ed5fc89 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/renderer/chunk/VisGraph.class differ diff --git a/build/_compileJava_2/net/minecraft/client/renderer/chunk/VisibilitySet.class b/build/_compileJava_2/net/minecraft/client/renderer/chunk/VisibilitySet.class new file mode 100644 index 000000000..6b84289f8 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/renderer/chunk/VisibilitySet.class differ diff --git a/build/_compileJava_2/net/minecraft/client/renderer/chunk/package-info.class b/build/_compileJava_2/net/minecraft/client/renderer/chunk/package-info.class new file mode 100644 index 000000000..4a02ec87b Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/renderer/chunk/package-info.class differ diff --git a/build/_compileJava_2/net/minecraft/client/renderer/culling/Frustum.class b/build/_compileJava_2/net/minecraft/client/renderer/culling/Frustum.class new file mode 100644 index 000000000..459a8cff6 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/renderer/culling/Frustum.class differ diff --git a/build/_compileJava_2/net/minecraft/client/renderer/culling/package-info.class b/build/_compileJava_2/net/minecraft/client/renderer/culling/package-info.class new file mode 100644 index 000000000..beb09aa44 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/renderer/culling/package-info.class differ diff --git a/build/_compileJava_2/net/minecraft/client/renderer/debug/BeeDebugRenderer$BeeInfo.class b/build/_compileJava_2/net/minecraft/client/renderer/debug/BeeDebugRenderer$BeeInfo.class new file mode 100644 index 000000000..2a83fa86e Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/renderer/debug/BeeDebugRenderer$BeeInfo.class differ diff --git a/build/_compileJava_2/net/minecraft/client/renderer/debug/BeeDebugRenderer$HiveInfo.class b/build/_compileJava_2/net/minecraft/client/renderer/debug/BeeDebugRenderer$HiveInfo.class new file mode 100644 index 000000000..0c3703fb8 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/renderer/debug/BeeDebugRenderer$HiveInfo.class differ diff --git a/build/_compileJava_2/net/minecraft/client/renderer/debug/BeeDebugRenderer.class b/build/_compileJava_2/net/minecraft/client/renderer/debug/BeeDebugRenderer.class new file mode 100644 index 000000000..1e34caa6d Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/renderer/debug/BeeDebugRenderer.class differ diff --git a/build/_compileJava_2/net/minecraft/client/renderer/debug/BrainDebugRenderer$BrainDump.class b/build/_compileJava_2/net/minecraft/client/renderer/debug/BrainDebugRenderer$BrainDump.class new file mode 100644 index 000000000..1601b85e6 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/renderer/debug/BrainDebugRenderer$BrainDump.class differ diff --git a/build/_compileJava_2/net/minecraft/client/renderer/debug/BrainDebugRenderer$PoiInfo.class b/build/_compileJava_2/net/minecraft/client/renderer/debug/BrainDebugRenderer$PoiInfo.class new file mode 100644 index 000000000..fc8f5b63e Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/renderer/debug/BrainDebugRenderer$PoiInfo.class differ diff --git a/build/_compileJava_2/net/minecraft/client/renderer/debug/BrainDebugRenderer.class b/build/_compileJava_2/net/minecraft/client/renderer/debug/BrainDebugRenderer.class new file mode 100644 index 000000000..b2208fb44 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/renderer/debug/BrainDebugRenderer.class differ diff --git a/build/_compileJava_2/net/minecraft/client/renderer/debug/ChunkBorderRenderer.class b/build/_compileJava_2/net/minecraft/client/renderer/debug/ChunkBorderRenderer.class new file mode 100644 index 000000000..077fe0838 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/renderer/debug/ChunkBorderRenderer.class differ diff --git a/build/_compileJava_2/net/minecraft/client/renderer/debug/ChunkDebugRenderer$ChunkData.class b/build/_compileJava_2/net/minecraft/client/renderer/debug/ChunkDebugRenderer$ChunkData.class new file mode 100644 index 000000000..2804fa22b Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/renderer/debug/ChunkDebugRenderer$ChunkData.class differ diff --git a/build/_compileJava_2/net/minecraft/client/renderer/debug/ChunkDebugRenderer.class b/build/_compileJava_2/net/minecraft/client/renderer/debug/ChunkDebugRenderer.class new file mode 100644 index 000000000..66346af02 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/renderer/debug/ChunkDebugRenderer.class differ diff --git a/build/_compileJava_2/net/minecraft/client/renderer/debug/CollisionBoxRenderer.class b/build/_compileJava_2/net/minecraft/client/renderer/debug/CollisionBoxRenderer.class new file mode 100644 index 000000000..33014a9af Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/renderer/debug/CollisionBoxRenderer.class differ diff --git a/build/_compileJava_2/net/minecraft/client/renderer/debug/DebugRenderer$SimpleDebugRenderer.class b/build/_compileJava_2/net/minecraft/client/renderer/debug/DebugRenderer$SimpleDebugRenderer.class new file mode 100644 index 000000000..8ff3a92f2 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/renderer/debug/DebugRenderer$SimpleDebugRenderer.class differ diff --git a/build/_compileJava_2/net/minecraft/client/renderer/debug/DebugRenderer.class b/build/_compileJava_2/net/minecraft/client/renderer/debug/DebugRenderer.class new file mode 100644 index 000000000..96ff8c3f8 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/renderer/debug/DebugRenderer.class differ diff --git a/build/_compileJava_2/net/minecraft/client/renderer/debug/GameEventListenerRenderer$TrackedGameEvent.class b/build/_compileJava_2/net/minecraft/client/renderer/debug/GameEventListenerRenderer$TrackedGameEvent.class new file mode 100644 index 000000000..29939ffc1 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/renderer/debug/GameEventListenerRenderer$TrackedGameEvent.class differ diff --git a/build/_compileJava_2/net/minecraft/client/renderer/debug/GameEventListenerRenderer$TrackedListener.class b/build/_compileJava_2/net/minecraft/client/renderer/debug/GameEventListenerRenderer$TrackedListener.class new file mode 100644 index 000000000..8c57a569a Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/renderer/debug/GameEventListenerRenderer$TrackedListener.class differ diff --git a/build/_compileJava_2/net/minecraft/client/renderer/debug/GameEventListenerRenderer.class b/build/_compileJava_2/net/minecraft/client/renderer/debug/GameEventListenerRenderer.class new file mode 100644 index 000000000..487eceec2 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/renderer/debug/GameEventListenerRenderer.class differ diff --git a/build/_compileJava_2/net/minecraft/client/renderer/debug/GameTestDebugRenderer$Marker.class b/build/_compileJava_2/net/minecraft/client/renderer/debug/GameTestDebugRenderer$Marker.class new file mode 100644 index 000000000..a8185b9fe Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/renderer/debug/GameTestDebugRenderer$Marker.class differ diff --git a/build/_compileJava_2/net/minecraft/client/renderer/debug/GameTestDebugRenderer.class b/build/_compileJava_2/net/minecraft/client/renderer/debug/GameTestDebugRenderer.class new file mode 100644 index 000000000..2e735db33 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/renderer/debug/GameTestDebugRenderer.class differ diff --git a/build/_compileJava_2/net/minecraft/client/renderer/debug/GoalSelectorDebugRenderer$DebugGoal.class b/build/_compileJava_2/net/minecraft/client/renderer/debug/GoalSelectorDebugRenderer$DebugGoal.class new file mode 100644 index 000000000..c7b490c2e Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/renderer/debug/GoalSelectorDebugRenderer$DebugGoal.class differ diff --git a/build/_compileJava_2/net/minecraft/client/renderer/debug/GoalSelectorDebugRenderer.class b/build/_compileJava_2/net/minecraft/client/renderer/debug/GoalSelectorDebugRenderer.class new file mode 100644 index 000000000..75feebeb2 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/renderer/debug/GoalSelectorDebugRenderer.class differ diff --git a/build/_compileJava_2/net/minecraft/client/renderer/debug/HeightMapRenderer$1.class b/build/_compileJava_2/net/minecraft/client/renderer/debug/HeightMapRenderer$1.class new file mode 100644 index 000000000..8ecd40d88 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/renderer/debug/HeightMapRenderer$1.class differ diff --git a/build/_compileJava_2/net/minecraft/client/renderer/debug/HeightMapRenderer.class b/build/_compileJava_2/net/minecraft/client/renderer/debug/HeightMapRenderer.class new file mode 100644 index 000000000..2d3708179 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/renderer/debug/HeightMapRenderer.class differ diff --git a/build/_compileJava_2/net/minecraft/client/renderer/debug/LightDebugRenderer.class b/build/_compileJava_2/net/minecraft/client/renderer/debug/LightDebugRenderer.class new file mode 100644 index 000000000..256ae788b Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/renderer/debug/LightDebugRenderer.class differ diff --git a/build/_compileJava_2/net/minecraft/client/renderer/debug/LightSectionDebugRenderer$1.class b/build/_compileJava_2/net/minecraft/client/renderer/debug/LightSectionDebugRenderer$1.class new file mode 100644 index 000000000..a013747c4 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/renderer/debug/LightSectionDebugRenderer$1.class differ diff --git a/build/_compileJava_2/net/minecraft/client/renderer/debug/LightSectionDebugRenderer$SectionData.class b/build/_compileJava_2/net/minecraft/client/renderer/debug/LightSectionDebugRenderer$SectionData.class new file mode 100644 index 000000000..d7c60e5bd Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/renderer/debug/LightSectionDebugRenderer$SectionData.class differ diff --git a/build/_compileJava_2/net/minecraft/client/renderer/debug/LightSectionDebugRenderer.class b/build/_compileJava_2/net/minecraft/client/renderer/debug/LightSectionDebugRenderer.class new file mode 100644 index 000000000..14da4e9ed Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/renderer/debug/LightSectionDebugRenderer.class differ diff --git a/build/_compileJava_2/net/minecraft/client/renderer/debug/NeighborsUpdateRenderer.class b/build/_compileJava_2/net/minecraft/client/renderer/debug/NeighborsUpdateRenderer.class new file mode 100644 index 000000000..6c5c2fc5a Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/renderer/debug/NeighborsUpdateRenderer.class differ diff --git a/build/_compileJava_2/net/minecraft/client/renderer/debug/PathfindingRenderer.class b/build/_compileJava_2/net/minecraft/client/renderer/debug/PathfindingRenderer.class new file mode 100644 index 000000000..f799314c5 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/renderer/debug/PathfindingRenderer.class differ diff --git a/build/_compileJava_2/net/minecraft/client/renderer/debug/RaidDebugRenderer.class b/build/_compileJava_2/net/minecraft/client/renderer/debug/RaidDebugRenderer.class new file mode 100644 index 000000000..075ac7c4e Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/renderer/debug/RaidDebugRenderer.class differ diff --git a/build/_compileJava_2/net/minecraft/client/renderer/debug/SolidFaceRenderer.class b/build/_compileJava_2/net/minecraft/client/renderer/debug/SolidFaceRenderer.class new file mode 100644 index 000000000..095248f54 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/renderer/debug/SolidFaceRenderer.class differ diff --git a/build/_compileJava_2/net/minecraft/client/renderer/debug/StructureRenderer.class b/build/_compileJava_2/net/minecraft/client/renderer/debug/StructureRenderer.class new file mode 100644 index 000000000..f916c6815 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/renderer/debug/StructureRenderer.class differ diff --git a/build/_compileJava_2/net/minecraft/client/renderer/debug/SupportBlockRenderer.class b/build/_compileJava_2/net/minecraft/client/renderer/debug/SupportBlockRenderer.class new file mode 100644 index 000000000..00dd78637 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/renderer/debug/SupportBlockRenderer.class differ diff --git a/build/_compileJava_2/net/minecraft/client/renderer/debug/VillageSectionsDebugRenderer.class b/build/_compileJava_2/net/minecraft/client/renderer/debug/VillageSectionsDebugRenderer.class new file mode 100644 index 000000000..0ac80844e Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/renderer/debug/VillageSectionsDebugRenderer.class differ diff --git a/build/_compileJava_2/net/minecraft/client/renderer/debug/WaterDebugRenderer.class b/build/_compileJava_2/net/minecraft/client/renderer/debug/WaterDebugRenderer.class new file mode 100644 index 000000000..a146f3a76 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/renderer/debug/WaterDebugRenderer.class differ diff --git a/build/_compileJava_2/net/minecraft/client/renderer/debug/WorldGenAttemptRenderer.class b/build/_compileJava_2/net/minecraft/client/renderer/debug/WorldGenAttemptRenderer.class new file mode 100644 index 000000000..1697ccb31 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/renderer/debug/WorldGenAttemptRenderer.class differ diff --git a/build/_compileJava_2/net/minecraft/client/renderer/debug/package-info.class b/build/_compileJava_2/net/minecraft/client/renderer/debug/package-info.class new file mode 100644 index 000000000..dae4fb1e6 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/renderer/debug/package-info.class differ diff --git a/build/_compileJava_2/net/minecraft/client/renderer/entity/AbstractHorseRenderer.class b/build/_compileJava_2/net/minecraft/client/renderer/entity/AbstractHorseRenderer.class new file mode 100644 index 000000000..58365bad4 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/renderer/entity/AbstractHorseRenderer.class differ diff --git a/build/_compileJava_2/net/minecraft/client/renderer/entity/AbstractZombieRenderer.class b/build/_compileJava_2/net/minecraft/client/renderer/entity/AbstractZombieRenderer.class new file mode 100644 index 000000000..9974672d5 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/renderer/entity/AbstractZombieRenderer.class differ diff --git a/build/_compileJava_2/net/minecraft/client/renderer/entity/AllayRenderer.class b/build/_compileJava_2/net/minecraft/client/renderer/entity/AllayRenderer.class new file mode 100644 index 000000000..d614f56f7 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/renderer/entity/AllayRenderer.class differ diff --git a/build/_compileJava_2/net/minecraft/client/renderer/entity/ArmorStandRenderer.class b/build/_compileJava_2/net/minecraft/client/renderer/entity/ArmorStandRenderer.class new file mode 100644 index 000000000..2b751c38a Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/renderer/entity/ArmorStandRenderer.class differ diff --git a/build/_compileJava_2/net/minecraft/client/renderer/entity/ArrowRenderer.class b/build/_compileJava_2/net/minecraft/client/renderer/entity/ArrowRenderer.class new file mode 100644 index 000000000..ee024782f Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/renderer/entity/ArrowRenderer.class differ diff --git a/build/_compileJava_2/net/minecraft/client/renderer/entity/AxolotlRenderer.class b/build/_compileJava_2/net/minecraft/client/renderer/entity/AxolotlRenderer.class new file mode 100644 index 000000000..a9315bb82 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/renderer/entity/AxolotlRenderer.class differ diff --git a/build/_compileJava_2/net/minecraft/client/renderer/entity/BatRenderer.class b/build/_compileJava_2/net/minecraft/client/renderer/entity/BatRenderer.class new file mode 100644 index 000000000..6652f75ad Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/renderer/entity/BatRenderer.class differ diff --git a/build/_compileJava_2/net/minecraft/client/renderer/entity/BeeRenderer.class b/build/_compileJava_2/net/minecraft/client/renderer/entity/BeeRenderer.class new file mode 100644 index 000000000..782c47310 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/renderer/entity/BeeRenderer.class differ diff --git a/build/_compileJava_2/net/minecraft/client/renderer/entity/BlazeRenderer.class b/build/_compileJava_2/net/minecraft/client/renderer/entity/BlazeRenderer.class new file mode 100644 index 000000000..77076eee6 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/renderer/entity/BlazeRenderer.class differ diff --git a/build/_compileJava_2/net/minecraft/client/renderer/entity/BoatRenderer.class b/build/_compileJava_2/net/minecraft/client/renderer/entity/BoatRenderer.class new file mode 100644 index 000000000..410c5aab7 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/renderer/entity/BoatRenderer.class differ diff --git a/build/_compileJava_2/net/minecraft/client/renderer/entity/CamelRenderer.class b/build/_compileJava_2/net/minecraft/client/renderer/entity/CamelRenderer.class new file mode 100644 index 000000000..ca6e74e94 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/renderer/entity/CamelRenderer.class differ diff --git a/build/_compileJava_2/net/minecraft/client/renderer/entity/CatRenderer.class b/build/_compileJava_2/net/minecraft/client/renderer/entity/CatRenderer.class new file mode 100644 index 000000000..834473533 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/renderer/entity/CatRenderer.class differ diff --git a/build/_compileJava_2/net/minecraft/client/renderer/entity/CaveSpiderRenderer.class b/build/_compileJava_2/net/minecraft/client/renderer/entity/CaveSpiderRenderer.class new file mode 100644 index 000000000..29327c290 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/renderer/entity/CaveSpiderRenderer.class differ diff --git a/build/_compileJava_2/net/minecraft/client/renderer/entity/ChestedHorseRenderer.class b/build/_compileJava_2/net/minecraft/client/renderer/entity/ChestedHorseRenderer.class new file mode 100644 index 000000000..bdddad427 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/renderer/entity/ChestedHorseRenderer.class differ diff --git a/build/_compileJava_2/net/minecraft/client/renderer/entity/ChickenRenderer.class b/build/_compileJava_2/net/minecraft/client/renderer/entity/ChickenRenderer.class new file mode 100644 index 000000000..3e5a4ba7c Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/renderer/entity/ChickenRenderer.class differ diff --git a/build/_compileJava_2/net/minecraft/client/renderer/entity/CodRenderer.class b/build/_compileJava_2/net/minecraft/client/renderer/entity/CodRenderer.class new file mode 100644 index 000000000..796558671 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/renderer/entity/CodRenderer.class differ diff --git a/build/_compileJava_2/net/minecraft/client/renderer/entity/CowRenderer.class b/build/_compileJava_2/net/minecraft/client/renderer/entity/CowRenderer.class new file mode 100644 index 000000000..1c23541f3 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/renderer/entity/CowRenderer.class differ diff --git a/build/_compileJava_2/net/minecraft/client/renderer/entity/CreeperRenderer.class b/build/_compileJava_2/net/minecraft/client/renderer/entity/CreeperRenderer.class new file mode 100644 index 000000000..5d8d2ae25 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/renderer/entity/CreeperRenderer.class differ diff --git a/build/_compileJava_2/net/minecraft/client/renderer/entity/DisplayRenderer$1.class b/build/_compileJava_2/net/minecraft/client/renderer/entity/DisplayRenderer$1.class new file mode 100644 index 000000000..2f708b8cb Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/renderer/entity/DisplayRenderer$1.class differ diff --git a/build/_compileJava_2/net/minecraft/client/renderer/entity/DisplayRenderer$BlockDisplayRenderer.class b/build/_compileJava_2/net/minecraft/client/renderer/entity/DisplayRenderer$BlockDisplayRenderer.class new file mode 100644 index 000000000..a4dc8856c Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/renderer/entity/DisplayRenderer$BlockDisplayRenderer.class differ diff --git a/build/_compileJava_2/net/minecraft/client/renderer/entity/DisplayRenderer$ItemDisplayRenderer.class b/build/_compileJava_2/net/minecraft/client/renderer/entity/DisplayRenderer$ItemDisplayRenderer.class new file mode 100644 index 000000000..d2326dcb7 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/renderer/entity/DisplayRenderer$ItemDisplayRenderer.class differ diff --git a/build/_compileJava_2/net/minecraft/client/renderer/entity/DisplayRenderer$TextDisplayRenderer.class b/build/_compileJava_2/net/minecraft/client/renderer/entity/DisplayRenderer$TextDisplayRenderer.class new file mode 100644 index 000000000..e9bc51c83 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/renderer/entity/DisplayRenderer$TextDisplayRenderer.class differ diff --git a/build/_compileJava_2/net/minecraft/client/renderer/entity/DisplayRenderer.class b/build/_compileJava_2/net/minecraft/client/renderer/entity/DisplayRenderer.class new file mode 100644 index 000000000..da2a41d23 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/renderer/entity/DisplayRenderer.class differ diff --git a/build/_compileJava_2/net/minecraft/client/renderer/entity/DolphinRenderer.class b/build/_compileJava_2/net/minecraft/client/renderer/entity/DolphinRenderer.class new file mode 100644 index 000000000..71a817ef0 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/renderer/entity/DolphinRenderer.class differ diff --git a/build/_compileJava_2/net/minecraft/client/renderer/entity/DragonFireballRenderer.class b/build/_compileJava_2/net/minecraft/client/renderer/entity/DragonFireballRenderer.class new file mode 100644 index 000000000..a2389a454 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/renderer/entity/DragonFireballRenderer.class differ diff --git a/build/_compileJava_2/net/minecraft/client/renderer/entity/DrownedRenderer.class b/build/_compileJava_2/net/minecraft/client/renderer/entity/DrownedRenderer.class new file mode 100644 index 000000000..11098b806 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/renderer/entity/DrownedRenderer.class differ diff --git a/build/_compileJava_2/net/minecraft/client/renderer/entity/ElderGuardianRenderer.class b/build/_compileJava_2/net/minecraft/client/renderer/entity/ElderGuardianRenderer.class new file mode 100644 index 000000000..e62f07673 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/renderer/entity/ElderGuardianRenderer.class differ diff --git a/build/_compileJava_2/net/minecraft/client/renderer/entity/EndCrystalRenderer.class b/build/_compileJava_2/net/minecraft/client/renderer/entity/EndCrystalRenderer.class new file mode 100644 index 000000000..f85d0ac52 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/renderer/entity/EndCrystalRenderer.class differ diff --git a/build/_compileJava_2/net/minecraft/client/renderer/entity/EnderDragonRenderer$DragonModel.class b/build/_compileJava_2/net/minecraft/client/renderer/entity/EnderDragonRenderer$DragonModel.class new file mode 100644 index 000000000..2bc12c021 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/renderer/entity/EnderDragonRenderer$DragonModel.class differ diff --git a/build/_compileJava_2/net/minecraft/client/renderer/entity/EnderDragonRenderer.class b/build/_compileJava_2/net/minecraft/client/renderer/entity/EnderDragonRenderer.class new file mode 100644 index 000000000..6a5458d2b Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/renderer/entity/EnderDragonRenderer.class differ diff --git a/build/_compileJava_2/net/minecraft/client/renderer/entity/EndermanRenderer.class b/build/_compileJava_2/net/minecraft/client/renderer/entity/EndermanRenderer.class new file mode 100644 index 000000000..b6d8b1fa8 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/renderer/entity/EndermanRenderer.class differ diff --git a/build/_compileJava_2/net/minecraft/client/renderer/entity/EndermiteRenderer.class b/build/_compileJava_2/net/minecraft/client/renderer/entity/EndermiteRenderer.class new file mode 100644 index 000000000..ed79a3ced Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/renderer/entity/EndermiteRenderer.class differ diff --git a/build/_compileJava_2/net/minecraft/client/renderer/entity/EntityRenderDispatcher.class b/build/_compileJava_2/net/minecraft/client/renderer/entity/EntityRenderDispatcher.class new file mode 100644 index 000000000..3aa3fc683 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/renderer/entity/EntityRenderDispatcher.class differ diff --git a/build/_compileJava_2/net/minecraft/client/renderer/entity/EntityRenderer.class b/build/_compileJava_2/net/minecraft/client/renderer/entity/EntityRenderer.class new file mode 100644 index 000000000..387183f21 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/renderer/entity/EntityRenderer.class differ diff --git a/build/_compileJava_2/net/minecraft/client/renderer/entity/EntityRendererProvider$Context.class b/build/_compileJava_2/net/minecraft/client/renderer/entity/EntityRendererProvider$Context.class new file mode 100644 index 000000000..75b605a45 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/renderer/entity/EntityRendererProvider$Context.class differ diff --git a/build/_compileJava_2/net/minecraft/client/renderer/entity/EntityRendererProvider.class b/build/_compileJava_2/net/minecraft/client/renderer/entity/EntityRendererProvider.class new file mode 100644 index 000000000..6c1e2ee11 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/renderer/entity/EntityRendererProvider.class differ diff --git a/build/_compileJava_2/net/minecraft/client/renderer/entity/EntityRenderers.class b/build/_compileJava_2/net/minecraft/client/renderer/entity/EntityRenderers.class new file mode 100644 index 000000000..e85362bb1 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/renderer/entity/EntityRenderers.class differ diff --git a/build/_compileJava_2/net/minecraft/client/renderer/entity/EvokerFangsRenderer.class b/build/_compileJava_2/net/minecraft/client/renderer/entity/EvokerFangsRenderer.class new file mode 100644 index 000000000..c8db319c6 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/renderer/entity/EvokerFangsRenderer.class differ diff --git a/build/_compileJava_2/net/minecraft/client/renderer/entity/EvokerRenderer$1.class b/build/_compileJava_2/net/minecraft/client/renderer/entity/EvokerRenderer$1.class new file mode 100644 index 000000000..73aad95a2 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/renderer/entity/EvokerRenderer$1.class differ diff --git a/build/_compileJava_2/net/minecraft/client/renderer/entity/EvokerRenderer.class b/build/_compileJava_2/net/minecraft/client/renderer/entity/EvokerRenderer.class new file mode 100644 index 000000000..8e1fde836 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/renderer/entity/EvokerRenderer.class differ diff --git a/build/_compileJava_2/net/minecraft/client/renderer/entity/ExperienceOrbRenderer.class b/build/_compileJava_2/net/minecraft/client/renderer/entity/ExperienceOrbRenderer.class new file mode 100644 index 000000000..6c0850bd0 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/renderer/entity/ExperienceOrbRenderer.class differ diff --git a/build/_compileJava_2/net/minecraft/client/renderer/entity/FallingBlockRenderer.class b/build/_compileJava_2/net/minecraft/client/renderer/entity/FallingBlockRenderer.class new file mode 100644 index 000000000..1a1e95e91 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/renderer/entity/FallingBlockRenderer.class differ diff --git a/build/_compileJava_2/net/minecraft/client/renderer/entity/FireworkEntityRenderer.class b/build/_compileJava_2/net/minecraft/client/renderer/entity/FireworkEntityRenderer.class new file mode 100644 index 000000000..5e88b7ad5 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/renderer/entity/FireworkEntityRenderer.class differ diff --git a/build/_compileJava_2/net/minecraft/client/renderer/entity/FishingHookRenderer.class b/build/_compileJava_2/net/minecraft/client/renderer/entity/FishingHookRenderer.class new file mode 100644 index 000000000..4bf2fbc65 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/renderer/entity/FishingHookRenderer.class differ diff --git a/build/_compileJava_2/net/minecraft/client/renderer/entity/FoxRenderer.class b/build/_compileJava_2/net/minecraft/client/renderer/entity/FoxRenderer.class new file mode 100644 index 000000000..4e4331bd1 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/renderer/entity/FoxRenderer.class differ diff --git a/build/_compileJava_2/net/minecraft/client/renderer/entity/FrogRenderer.class b/build/_compileJava_2/net/minecraft/client/renderer/entity/FrogRenderer.class new file mode 100644 index 000000000..cb7423a75 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/renderer/entity/FrogRenderer.class differ diff --git a/build/_compileJava_2/net/minecraft/client/renderer/entity/GhastRenderer.class b/build/_compileJava_2/net/minecraft/client/renderer/entity/GhastRenderer.class new file mode 100644 index 000000000..14dae7d19 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/renderer/entity/GhastRenderer.class differ diff --git a/build/_compileJava_2/net/minecraft/client/renderer/entity/GiantMobRenderer.class b/build/_compileJava_2/net/minecraft/client/renderer/entity/GiantMobRenderer.class new file mode 100644 index 000000000..ece474587 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/renderer/entity/GiantMobRenderer.class differ diff --git a/build/_compileJava_2/net/minecraft/client/renderer/entity/GlowSquidRenderer.class b/build/_compileJava_2/net/minecraft/client/renderer/entity/GlowSquidRenderer.class new file mode 100644 index 000000000..56f12e288 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/renderer/entity/GlowSquidRenderer.class differ diff --git a/build/_compileJava_2/net/minecraft/client/renderer/entity/GoatRenderer.class b/build/_compileJava_2/net/minecraft/client/renderer/entity/GoatRenderer.class new file mode 100644 index 000000000..4e8b296cc Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/renderer/entity/GoatRenderer.class differ diff --git a/build/_compileJava_2/net/minecraft/client/renderer/entity/GuardianRenderer.class b/build/_compileJava_2/net/minecraft/client/renderer/entity/GuardianRenderer.class new file mode 100644 index 000000000..66a21c216 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/renderer/entity/GuardianRenderer.class differ diff --git a/build/_compileJava_2/net/minecraft/client/renderer/entity/HoglinRenderer.class b/build/_compileJava_2/net/minecraft/client/renderer/entity/HoglinRenderer.class new file mode 100644 index 000000000..ebf161b4e Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/renderer/entity/HoglinRenderer.class differ diff --git a/build/_compileJava_2/net/minecraft/client/renderer/entity/HorseRenderer.class b/build/_compileJava_2/net/minecraft/client/renderer/entity/HorseRenderer.class new file mode 100644 index 000000000..05dcaf0d9 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/renderer/entity/HorseRenderer.class differ diff --git a/build/_compileJava_2/net/minecraft/client/renderer/entity/HumanoidMobRenderer.class b/build/_compileJava_2/net/minecraft/client/renderer/entity/HumanoidMobRenderer.class new file mode 100644 index 000000000..44b1ce137 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/renderer/entity/HumanoidMobRenderer.class differ diff --git a/build/_compileJava_2/net/minecraft/client/renderer/entity/HuskRenderer.class b/build/_compileJava_2/net/minecraft/client/renderer/entity/HuskRenderer.class new file mode 100644 index 000000000..ebee338fa Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/renderer/entity/HuskRenderer.class differ diff --git a/build/_compileJava_2/net/minecraft/client/renderer/entity/IllagerRenderer.class b/build/_compileJava_2/net/minecraft/client/renderer/entity/IllagerRenderer.class new file mode 100644 index 000000000..a06db81b8 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/renderer/entity/IllagerRenderer.class differ diff --git a/build/_compileJava_2/net/minecraft/client/renderer/entity/IllusionerRenderer$1.class b/build/_compileJava_2/net/minecraft/client/renderer/entity/IllusionerRenderer$1.class new file mode 100644 index 000000000..79dd6f3a0 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/renderer/entity/IllusionerRenderer$1.class differ diff --git a/build/_compileJava_2/net/minecraft/client/renderer/entity/IllusionerRenderer.class b/build/_compileJava_2/net/minecraft/client/renderer/entity/IllusionerRenderer.class new file mode 100644 index 000000000..71863a6cc Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/renderer/entity/IllusionerRenderer.class differ diff --git a/build/_compileJava_2/net/minecraft/client/renderer/entity/IronGolemRenderer.class b/build/_compileJava_2/net/minecraft/client/renderer/entity/IronGolemRenderer.class new file mode 100644 index 000000000..c498bd40d Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/renderer/entity/IronGolemRenderer.class differ diff --git a/build/_compileJava_2/net/minecraft/client/renderer/entity/ItemEntityRenderer.class b/build/_compileJava_2/net/minecraft/client/renderer/entity/ItemEntityRenderer.class new file mode 100644 index 000000000..8bbd3f3a1 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/renderer/entity/ItemEntityRenderer.class differ diff --git a/build/_compileJava_2/net/minecraft/client/renderer/entity/ItemFrameRenderer.class b/build/_compileJava_2/net/minecraft/client/renderer/entity/ItemFrameRenderer.class new file mode 100644 index 000000000..4173f42ce Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/renderer/entity/ItemFrameRenderer.class differ diff --git a/build/_compileJava_2/net/minecraft/client/renderer/entity/ItemRenderer.class b/build/_compileJava_2/net/minecraft/client/renderer/entity/ItemRenderer.class new file mode 100644 index 000000000..8357932bd Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/renderer/entity/ItemRenderer.class differ diff --git a/build/_compileJava_2/net/minecraft/client/renderer/entity/LeashKnotRenderer.class b/build/_compileJava_2/net/minecraft/client/renderer/entity/LeashKnotRenderer.class new file mode 100644 index 000000000..39c47b042 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/renderer/entity/LeashKnotRenderer.class differ diff --git a/build/_compileJava_2/net/minecraft/client/renderer/entity/LightningBoltRenderer.class b/build/_compileJava_2/net/minecraft/client/renderer/entity/LightningBoltRenderer.class new file mode 100644 index 000000000..62056c897 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/renderer/entity/LightningBoltRenderer.class differ diff --git a/build/_compileJava_2/net/minecraft/client/renderer/entity/LivingEntityRenderer$1.class b/build/_compileJava_2/net/minecraft/client/renderer/entity/LivingEntityRenderer$1.class new file mode 100644 index 000000000..4a41234b4 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/renderer/entity/LivingEntityRenderer$1.class differ diff --git a/build/_compileJava_2/net/minecraft/client/renderer/entity/LivingEntityRenderer.class b/build/_compileJava_2/net/minecraft/client/renderer/entity/LivingEntityRenderer.class new file mode 100644 index 000000000..6d29e3188 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/renderer/entity/LivingEntityRenderer.class differ diff --git a/build/_compileJava_2/net/minecraft/client/renderer/entity/LlamaRenderer$1.class b/build/_compileJava_2/net/minecraft/client/renderer/entity/LlamaRenderer$1.class new file mode 100644 index 000000000..409f40f60 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/renderer/entity/LlamaRenderer$1.class differ diff --git a/build/_compileJava_2/net/minecraft/client/renderer/entity/LlamaRenderer.class b/build/_compileJava_2/net/minecraft/client/renderer/entity/LlamaRenderer.class new file mode 100644 index 000000000..e8ffe6fa0 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/renderer/entity/LlamaRenderer.class differ diff --git a/build/_compileJava_2/net/minecraft/client/renderer/entity/LlamaSpitRenderer.class b/build/_compileJava_2/net/minecraft/client/renderer/entity/LlamaSpitRenderer.class new file mode 100644 index 000000000..52dc82ade Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/renderer/entity/LlamaSpitRenderer.class differ diff --git a/build/_compileJava_2/net/minecraft/client/renderer/entity/MagmaCubeRenderer.class b/build/_compileJava_2/net/minecraft/client/renderer/entity/MagmaCubeRenderer.class new file mode 100644 index 000000000..71f2170fb Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/renderer/entity/MagmaCubeRenderer.class differ diff --git a/build/_compileJava_2/net/minecraft/client/renderer/entity/MinecartRenderer.class b/build/_compileJava_2/net/minecraft/client/renderer/entity/MinecartRenderer.class new file mode 100644 index 000000000..e9d4ac8e7 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/renderer/entity/MinecartRenderer.class differ diff --git a/build/_compileJava_2/net/minecraft/client/renderer/entity/MobRenderer.class b/build/_compileJava_2/net/minecraft/client/renderer/entity/MobRenderer.class new file mode 100644 index 000000000..96dbe55e6 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/renderer/entity/MobRenderer.class differ diff --git a/build/_compileJava_2/net/minecraft/client/renderer/entity/MushroomCowRenderer.class b/build/_compileJava_2/net/minecraft/client/renderer/entity/MushroomCowRenderer.class new file mode 100644 index 000000000..46be51881 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/renderer/entity/MushroomCowRenderer.class differ diff --git a/build/_compileJava_2/net/minecraft/client/renderer/entity/NoopRenderer.class b/build/_compileJava_2/net/minecraft/client/renderer/entity/NoopRenderer.class new file mode 100644 index 000000000..1015de7a0 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/renderer/entity/NoopRenderer.class differ diff --git a/build/_compileJava_2/net/minecraft/client/renderer/entity/OcelotRenderer.class b/build/_compileJava_2/net/minecraft/client/renderer/entity/OcelotRenderer.class new file mode 100644 index 000000000..ac4aef7a2 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/renderer/entity/OcelotRenderer.class differ diff --git a/build/_compileJava_2/net/minecraft/client/renderer/entity/PaintingRenderer.class b/build/_compileJava_2/net/minecraft/client/renderer/entity/PaintingRenderer.class new file mode 100644 index 000000000..b4985c711 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/renderer/entity/PaintingRenderer.class differ diff --git a/build/_compileJava_2/net/minecraft/client/renderer/entity/PandaRenderer.class b/build/_compileJava_2/net/minecraft/client/renderer/entity/PandaRenderer.class new file mode 100644 index 000000000..ab4b88b98 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/renderer/entity/PandaRenderer.class differ diff --git a/build/_compileJava_2/net/minecraft/client/renderer/entity/ParrotRenderer$1.class b/build/_compileJava_2/net/minecraft/client/renderer/entity/ParrotRenderer$1.class new file mode 100644 index 000000000..0e0413a31 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/renderer/entity/ParrotRenderer$1.class differ diff --git a/build/_compileJava_2/net/minecraft/client/renderer/entity/ParrotRenderer.class b/build/_compileJava_2/net/minecraft/client/renderer/entity/ParrotRenderer.class new file mode 100644 index 000000000..8357c2fbc Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/renderer/entity/ParrotRenderer.class differ diff --git a/build/_compileJava_2/net/minecraft/client/renderer/entity/PhantomRenderer.class b/build/_compileJava_2/net/minecraft/client/renderer/entity/PhantomRenderer.class new file mode 100644 index 000000000..01157ea43 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/renderer/entity/PhantomRenderer.class differ diff --git a/build/_compileJava_2/net/minecraft/client/renderer/entity/PigRenderer.class b/build/_compileJava_2/net/minecraft/client/renderer/entity/PigRenderer.class new file mode 100644 index 000000000..fea9a889b Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/renderer/entity/PigRenderer.class differ diff --git a/build/_compileJava_2/net/minecraft/client/renderer/entity/PiglinRenderer.class b/build/_compileJava_2/net/minecraft/client/renderer/entity/PiglinRenderer.class new file mode 100644 index 000000000..6abf79423 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/renderer/entity/PiglinRenderer.class differ diff --git a/build/_compileJava_2/net/minecraft/client/renderer/entity/PillagerRenderer.class b/build/_compileJava_2/net/minecraft/client/renderer/entity/PillagerRenderer.class new file mode 100644 index 000000000..a9cfcd51f Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/renderer/entity/PillagerRenderer.class differ diff --git a/build/_compileJava_2/net/minecraft/client/renderer/entity/PolarBearRenderer.class b/build/_compileJava_2/net/minecraft/client/renderer/entity/PolarBearRenderer.class new file mode 100644 index 000000000..9b61deba6 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/renderer/entity/PolarBearRenderer.class differ diff --git a/build/_compileJava_2/net/minecraft/client/renderer/entity/PufferfishRenderer.class b/build/_compileJava_2/net/minecraft/client/renderer/entity/PufferfishRenderer.class new file mode 100644 index 000000000..1f47aa717 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/renderer/entity/PufferfishRenderer.class differ diff --git a/build/_compileJava_2/net/minecraft/client/renderer/entity/RabbitRenderer$1.class b/build/_compileJava_2/net/minecraft/client/renderer/entity/RabbitRenderer$1.class new file mode 100644 index 000000000..68ff09386 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/renderer/entity/RabbitRenderer$1.class differ diff --git a/build/_compileJava_2/net/minecraft/client/renderer/entity/RabbitRenderer.class b/build/_compileJava_2/net/minecraft/client/renderer/entity/RabbitRenderer.class new file mode 100644 index 000000000..b95457c73 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/renderer/entity/RabbitRenderer.class differ diff --git a/build/_compileJava_2/net/minecraft/client/renderer/entity/RavagerRenderer.class b/build/_compileJava_2/net/minecraft/client/renderer/entity/RavagerRenderer.class new file mode 100644 index 000000000..4bf865ac2 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/renderer/entity/RavagerRenderer.class differ diff --git a/build/_compileJava_2/net/minecraft/client/renderer/entity/RenderLayerParent.class b/build/_compileJava_2/net/minecraft/client/renderer/entity/RenderLayerParent.class new file mode 100644 index 000000000..d6331e369 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/renderer/entity/RenderLayerParent.class differ diff --git a/build/_compileJava_2/net/minecraft/client/renderer/entity/SalmonRenderer.class b/build/_compileJava_2/net/minecraft/client/renderer/entity/SalmonRenderer.class new file mode 100644 index 000000000..52b6414a8 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/renderer/entity/SalmonRenderer.class differ diff --git a/build/_compileJava_2/net/minecraft/client/renderer/entity/SheepRenderer.class b/build/_compileJava_2/net/minecraft/client/renderer/entity/SheepRenderer.class new file mode 100644 index 000000000..997c8f331 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/renderer/entity/SheepRenderer.class differ diff --git a/build/_compileJava_2/net/minecraft/client/renderer/entity/ShulkerBulletRenderer.class b/build/_compileJava_2/net/minecraft/client/renderer/entity/ShulkerBulletRenderer.class new file mode 100644 index 000000000..c62ae53c6 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/renderer/entity/ShulkerBulletRenderer.class differ diff --git a/build/_compileJava_2/net/minecraft/client/renderer/entity/ShulkerRenderer.class b/build/_compileJava_2/net/minecraft/client/renderer/entity/ShulkerRenderer.class new file mode 100644 index 000000000..438edc151 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/renderer/entity/ShulkerRenderer.class differ diff --git a/build/_compileJava_2/net/minecraft/client/renderer/entity/SilverfishRenderer.class b/build/_compileJava_2/net/minecraft/client/renderer/entity/SilverfishRenderer.class new file mode 100644 index 000000000..23af49242 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/renderer/entity/SilverfishRenderer.class differ diff --git a/build/_compileJava_2/net/minecraft/client/renderer/entity/SkeletonRenderer.class b/build/_compileJava_2/net/minecraft/client/renderer/entity/SkeletonRenderer.class new file mode 100644 index 000000000..bfb69a65a Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/renderer/entity/SkeletonRenderer.class differ diff --git a/build/_compileJava_2/net/minecraft/client/renderer/entity/SlimeRenderer.class b/build/_compileJava_2/net/minecraft/client/renderer/entity/SlimeRenderer.class new file mode 100644 index 000000000..4c08ab4db Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/renderer/entity/SlimeRenderer.class differ diff --git a/build/_compileJava_2/net/minecraft/client/renderer/entity/SnifferRenderer.class b/build/_compileJava_2/net/minecraft/client/renderer/entity/SnifferRenderer.class new file mode 100644 index 000000000..e19fccc88 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/renderer/entity/SnifferRenderer.class differ diff --git a/build/_compileJava_2/net/minecraft/client/renderer/entity/SnowGolemRenderer.class b/build/_compileJava_2/net/minecraft/client/renderer/entity/SnowGolemRenderer.class new file mode 100644 index 000000000..5c7e47560 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/renderer/entity/SnowGolemRenderer.class differ diff --git a/build/_compileJava_2/net/minecraft/client/renderer/entity/SpectralArrowRenderer.class b/build/_compileJava_2/net/minecraft/client/renderer/entity/SpectralArrowRenderer.class new file mode 100644 index 000000000..3b57d3a9d Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/renderer/entity/SpectralArrowRenderer.class differ diff --git a/build/_compileJava_2/net/minecraft/client/renderer/entity/SpiderRenderer.class b/build/_compileJava_2/net/minecraft/client/renderer/entity/SpiderRenderer.class new file mode 100644 index 000000000..08031c466 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/renderer/entity/SpiderRenderer.class differ diff --git a/build/_compileJava_2/net/minecraft/client/renderer/entity/SquidRenderer.class b/build/_compileJava_2/net/minecraft/client/renderer/entity/SquidRenderer.class new file mode 100644 index 000000000..3f08096c9 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/renderer/entity/SquidRenderer.class differ diff --git a/build/_compileJava_2/net/minecraft/client/renderer/entity/StrayRenderer.class b/build/_compileJava_2/net/minecraft/client/renderer/entity/StrayRenderer.class new file mode 100644 index 000000000..a45d3a4c8 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/renderer/entity/StrayRenderer.class differ diff --git a/build/_compileJava_2/net/minecraft/client/renderer/entity/StriderRenderer.class b/build/_compileJava_2/net/minecraft/client/renderer/entity/StriderRenderer.class new file mode 100644 index 000000000..87691a754 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/renderer/entity/StriderRenderer.class differ diff --git a/build/_compileJava_2/net/minecraft/client/renderer/entity/TadpoleRenderer.class b/build/_compileJava_2/net/minecraft/client/renderer/entity/TadpoleRenderer.class new file mode 100644 index 000000000..b35e3e312 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/renderer/entity/TadpoleRenderer.class differ diff --git a/build/_compileJava_2/net/minecraft/client/renderer/entity/ThrownItemRenderer.class b/build/_compileJava_2/net/minecraft/client/renderer/entity/ThrownItemRenderer.class new file mode 100644 index 000000000..8b83fa367 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/renderer/entity/ThrownItemRenderer.class differ diff --git a/build/_compileJava_2/net/minecraft/client/renderer/entity/ThrownTridentRenderer.class b/build/_compileJava_2/net/minecraft/client/renderer/entity/ThrownTridentRenderer.class new file mode 100644 index 000000000..2de343ddf Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/renderer/entity/ThrownTridentRenderer.class differ diff --git a/build/_compileJava_2/net/minecraft/client/renderer/entity/TippableArrowRenderer.class b/build/_compileJava_2/net/minecraft/client/renderer/entity/TippableArrowRenderer.class new file mode 100644 index 000000000..e15ef4758 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/renderer/entity/TippableArrowRenderer.class differ diff --git a/build/_compileJava_2/net/minecraft/client/renderer/entity/TntMinecartRenderer.class b/build/_compileJava_2/net/minecraft/client/renderer/entity/TntMinecartRenderer.class new file mode 100644 index 000000000..cd98fad82 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/renderer/entity/TntMinecartRenderer.class differ diff --git a/build/_compileJava_2/net/minecraft/client/renderer/entity/TntRenderer.class b/build/_compileJava_2/net/minecraft/client/renderer/entity/TntRenderer.class new file mode 100644 index 000000000..b5c6a280d Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/renderer/entity/TntRenderer.class differ diff --git a/build/_compileJava_2/net/minecraft/client/renderer/entity/TropicalFishRenderer$1.class b/build/_compileJava_2/net/minecraft/client/renderer/entity/TropicalFishRenderer$1.class new file mode 100644 index 000000000..39d05b685 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/renderer/entity/TropicalFishRenderer$1.class differ diff --git a/build/_compileJava_2/net/minecraft/client/renderer/entity/TropicalFishRenderer.class b/build/_compileJava_2/net/minecraft/client/renderer/entity/TropicalFishRenderer.class new file mode 100644 index 000000000..200c48670 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/renderer/entity/TropicalFishRenderer.class differ diff --git a/build/_compileJava_2/net/minecraft/client/renderer/entity/TurtleRenderer.class b/build/_compileJava_2/net/minecraft/client/renderer/entity/TurtleRenderer.class new file mode 100644 index 000000000..a7237ec8d Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/renderer/entity/TurtleRenderer.class differ diff --git a/build/_compileJava_2/net/minecraft/client/renderer/entity/UndeadHorseRenderer.class b/build/_compileJava_2/net/minecraft/client/renderer/entity/UndeadHorseRenderer.class new file mode 100644 index 000000000..686274408 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/renderer/entity/UndeadHorseRenderer.class differ diff --git a/build/_compileJava_2/net/minecraft/client/renderer/entity/VexRenderer.class b/build/_compileJava_2/net/minecraft/client/renderer/entity/VexRenderer.class new file mode 100644 index 000000000..7c6492a55 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/renderer/entity/VexRenderer.class differ diff --git a/build/_compileJava_2/net/minecraft/client/renderer/entity/VillagerRenderer.class b/build/_compileJava_2/net/minecraft/client/renderer/entity/VillagerRenderer.class new file mode 100644 index 000000000..5fd581820 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/renderer/entity/VillagerRenderer.class differ diff --git a/build/_compileJava_2/net/minecraft/client/renderer/entity/VindicatorRenderer$1.class b/build/_compileJava_2/net/minecraft/client/renderer/entity/VindicatorRenderer$1.class new file mode 100644 index 000000000..602a2264d Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/renderer/entity/VindicatorRenderer$1.class differ diff --git a/build/_compileJava_2/net/minecraft/client/renderer/entity/VindicatorRenderer.class b/build/_compileJava_2/net/minecraft/client/renderer/entity/VindicatorRenderer.class new file mode 100644 index 000000000..c062b56c6 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/renderer/entity/VindicatorRenderer.class differ diff --git a/build/_compileJava_2/net/minecraft/client/renderer/entity/WanderingTraderRenderer.class b/build/_compileJava_2/net/minecraft/client/renderer/entity/WanderingTraderRenderer.class new file mode 100644 index 000000000..7d3568dd3 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/renderer/entity/WanderingTraderRenderer.class differ diff --git a/build/_compileJava_2/net/minecraft/client/renderer/entity/WardenRenderer.class b/build/_compileJava_2/net/minecraft/client/renderer/entity/WardenRenderer.class new file mode 100644 index 000000000..ca12be45a Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/renderer/entity/WardenRenderer.class differ diff --git a/build/_compileJava_2/net/minecraft/client/renderer/entity/WitchRenderer.class b/build/_compileJava_2/net/minecraft/client/renderer/entity/WitchRenderer.class new file mode 100644 index 000000000..9725c8811 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/renderer/entity/WitchRenderer.class differ diff --git a/build/_compileJava_2/net/minecraft/client/renderer/entity/WitherBossRenderer.class b/build/_compileJava_2/net/minecraft/client/renderer/entity/WitherBossRenderer.class new file mode 100644 index 000000000..5bd83ce7d Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/renderer/entity/WitherBossRenderer.class differ diff --git a/build/_compileJava_2/net/minecraft/client/renderer/entity/WitherSkeletonRenderer.class b/build/_compileJava_2/net/minecraft/client/renderer/entity/WitherSkeletonRenderer.class new file mode 100644 index 000000000..63d0f68e9 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/renderer/entity/WitherSkeletonRenderer.class differ diff --git a/build/_compileJava_2/net/minecraft/client/renderer/entity/WitherSkullRenderer.class b/build/_compileJava_2/net/minecraft/client/renderer/entity/WitherSkullRenderer.class new file mode 100644 index 000000000..288657bda Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/renderer/entity/WitherSkullRenderer.class differ diff --git a/build/_compileJava_2/net/minecraft/client/renderer/entity/WolfRenderer.class b/build/_compileJava_2/net/minecraft/client/renderer/entity/WolfRenderer.class new file mode 100644 index 000000000..1660c4457 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/renderer/entity/WolfRenderer.class differ diff --git a/build/_compileJava_2/net/minecraft/client/renderer/entity/ZoglinRenderer.class b/build/_compileJava_2/net/minecraft/client/renderer/entity/ZoglinRenderer.class new file mode 100644 index 000000000..162f8ddd4 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/renderer/entity/ZoglinRenderer.class differ diff --git a/build/_compileJava_2/net/minecraft/client/renderer/entity/ZombieRenderer.class b/build/_compileJava_2/net/minecraft/client/renderer/entity/ZombieRenderer.class new file mode 100644 index 000000000..4c3aa5226 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/renderer/entity/ZombieRenderer.class differ diff --git a/build/_compileJava_2/net/minecraft/client/renderer/entity/ZombieVillagerRenderer.class b/build/_compileJava_2/net/minecraft/client/renderer/entity/ZombieVillagerRenderer.class new file mode 100644 index 000000000..4948acf27 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/renderer/entity/ZombieVillagerRenderer.class differ diff --git a/build/_compileJava_2/net/minecraft/client/renderer/entity/layers/ArrowLayer.class b/build/_compileJava_2/net/minecraft/client/renderer/entity/layers/ArrowLayer.class new file mode 100644 index 000000000..2bb6215b9 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/renderer/entity/layers/ArrowLayer.class differ diff --git a/build/_compileJava_2/net/minecraft/client/renderer/entity/layers/BeeStingerLayer.class b/build/_compileJava_2/net/minecraft/client/renderer/entity/layers/BeeStingerLayer.class new file mode 100644 index 000000000..127037d12 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/renderer/entity/layers/BeeStingerLayer.class differ diff --git a/build/_compileJava_2/net/minecraft/client/renderer/entity/layers/CapeLayer.class b/build/_compileJava_2/net/minecraft/client/renderer/entity/layers/CapeLayer.class new file mode 100644 index 000000000..04047a9a0 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/renderer/entity/layers/CapeLayer.class differ diff --git a/build/_compileJava_2/net/minecraft/client/renderer/entity/layers/CarriedBlockLayer.class b/build/_compileJava_2/net/minecraft/client/renderer/entity/layers/CarriedBlockLayer.class new file mode 100644 index 000000000..1d54b5dca Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/renderer/entity/layers/CarriedBlockLayer.class differ diff --git a/build/_compileJava_2/net/minecraft/client/renderer/entity/layers/CatCollarLayer.class b/build/_compileJava_2/net/minecraft/client/renderer/entity/layers/CatCollarLayer.class new file mode 100644 index 000000000..6bacbb33f Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/renderer/entity/layers/CatCollarLayer.class differ diff --git a/build/_compileJava_2/net/minecraft/client/renderer/entity/layers/CreeperPowerLayer.class b/build/_compileJava_2/net/minecraft/client/renderer/entity/layers/CreeperPowerLayer.class new file mode 100644 index 000000000..b861d54ba Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/renderer/entity/layers/CreeperPowerLayer.class differ diff --git a/build/_compileJava_2/net/minecraft/client/renderer/entity/layers/CrossedArmsItemLayer.class b/build/_compileJava_2/net/minecraft/client/renderer/entity/layers/CrossedArmsItemLayer.class new file mode 100644 index 000000000..b92f9f9ee Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/renderer/entity/layers/CrossedArmsItemLayer.class differ diff --git a/build/_compileJava_2/net/minecraft/client/renderer/entity/layers/CustomHeadLayer.class b/build/_compileJava_2/net/minecraft/client/renderer/entity/layers/CustomHeadLayer.class new file mode 100644 index 000000000..0af6935c7 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/renderer/entity/layers/CustomHeadLayer.class differ diff --git a/build/_compileJava_2/net/minecraft/client/renderer/entity/layers/Deadmau5EarsLayer.class b/build/_compileJava_2/net/minecraft/client/renderer/entity/layers/Deadmau5EarsLayer.class new file mode 100644 index 000000000..3e68157b3 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/renderer/entity/layers/Deadmau5EarsLayer.class differ diff --git a/build/_compileJava_2/net/minecraft/client/renderer/entity/layers/DolphinCarryingItemLayer.class b/build/_compileJava_2/net/minecraft/client/renderer/entity/layers/DolphinCarryingItemLayer.class new file mode 100644 index 000000000..49f181b0e Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/renderer/entity/layers/DolphinCarryingItemLayer.class differ diff --git a/build/_compileJava_2/net/minecraft/client/renderer/entity/layers/DrownedOuterLayer.class b/build/_compileJava_2/net/minecraft/client/renderer/entity/layers/DrownedOuterLayer.class new file mode 100644 index 000000000..c15c41aad Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/renderer/entity/layers/DrownedOuterLayer.class differ diff --git a/build/_compileJava_2/net/minecraft/client/renderer/entity/layers/ElytraLayer.class b/build/_compileJava_2/net/minecraft/client/renderer/entity/layers/ElytraLayer.class new file mode 100644 index 000000000..d4b2546a6 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/renderer/entity/layers/ElytraLayer.class differ diff --git a/build/_compileJava_2/net/minecraft/client/renderer/entity/layers/EnderEyesLayer.class b/build/_compileJava_2/net/minecraft/client/renderer/entity/layers/EnderEyesLayer.class new file mode 100644 index 000000000..19517ccae Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/renderer/entity/layers/EnderEyesLayer.class differ diff --git a/build/_compileJava_2/net/minecraft/client/renderer/entity/layers/EnergySwirlLayer.class b/build/_compileJava_2/net/minecraft/client/renderer/entity/layers/EnergySwirlLayer.class new file mode 100644 index 000000000..79b5d8f65 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/renderer/entity/layers/EnergySwirlLayer.class differ diff --git a/build/_compileJava_2/net/minecraft/client/renderer/entity/layers/EyesLayer.class b/build/_compileJava_2/net/minecraft/client/renderer/entity/layers/EyesLayer.class new file mode 100644 index 000000000..b614ae62c Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/renderer/entity/layers/EyesLayer.class differ diff --git a/build/_compileJava_2/net/minecraft/client/renderer/entity/layers/FoxHeldItemLayer.class b/build/_compileJava_2/net/minecraft/client/renderer/entity/layers/FoxHeldItemLayer.class new file mode 100644 index 000000000..df0d336f8 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/renderer/entity/layers/FoxHeldItemLayer.class differ diff --git a/build/_compileJava_2/net/minecraft/client/renderer/entity/layers/HorseArmorLayer.class b/build/_compileJava_2/net/minecraft/client/renderer/entity/layers/HorseArmorLayer.class new file mode 100644 index 000000000..fa1b26d87 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/renderer/entity/layers/HorseArmorLayer.class differ diff --git a/build/_compileJava_2/net/minecraft/client/renderer/entity/layers/HorseMarkingLayer.class b/build/_compileJava_2/net/minecraft/client/renderer/entity/layers/HorseMarkingLayer.class new file mode 100644 index 000000000..e1796cafd Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/renderer/entity/layers/HorseMarkingLayer.class differ diff --git a/build/_compileJava_2/net/minecraft/client/renderer/entity/layers/HumanoidArmorLayer$1.class b/build/_compileJava_2/net/minecraft/client/renderer/entity/layers/HumanoidArmorLayer$1.class new file mode 100644 index 000000000..fa23ca716 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/renderer/entity/layers/HumanoidArmorLayer$1.class differ diff --git a/build/_compileJava_2/net/minecraft/client/renderer/entity/layers/HumanoidArmorLayer.class b/build/_compileJava_2/net/minecraft/client/renderer/entity/layers/HumanoidArmorLayer.class new file mode 100644 index 000000000..ffba131a7 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/renderer/entity/layers/HumanoidArmorLayer.class differ diff --git a/build/_compileJava_2/net/minecraft/client/renderer/entity/layers/IronGolemCrackinessLayer.class b/build/_compileJava_2/net/minecraft/client/renderer/entity/layers/IronGolemCrackinessLayer.class new file mode 100644 index 000000000..bf5d0f94d Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/renderer/entity/layers/IronGolemCrackinessLayer.class differ diff --git a/build/_compileJava_2/net/minecraft/client/renderer/entity/layers/IronGolemFlowerLayer.class b/build/_compileJava_2/net/minecraft/client/renderer/entity/layers/IronGolemFlowerLayer.class new file mode 100644 index 000000000..4fb9d0ea7 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/renderer/entity/layers/IronGolemFlowerLayer.class differ diff --git a/build/_compileJava_2/net/minecraft/client/renderer/entity/layers/ItemInHandLayer.class b/build/_compileJava_2/net/minecraft/client/renderer/entity/layers/ItemInHandLayer.class new file mode 100644 index 000000000..dc996970a Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/renderer/entity/layers/ItemInHandLayer.class differ diff --git a/build/_compileJava_2/net/minecraft/client/renderer/entity/layers/LlamaDecorLayer.class b/build/_compileJava_2/net/minecraft/client/renderer/entity/layers/LlamaDecorLayer.class new file mode 100644 index 000000000..3511b22c6 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/renderer/entity/layers/LlamaDecorLayer.class differ diff --git a/build/_compileJava_2/net/minecraft/client/renderer/entity/layers/MushroomCowMushroomLayer.class b/build/_compileJava_2/net/minecraft/client/renderer/entity/layers/MushroomCowMushroomLayer.class new file mode 100644 index 000000000..bba94edc7 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/renderer/entity/layers/MushroomCowMushroomLayer.class differ diff --git a/build/_compileJava_2/net/minecraft/client/renderer/entity/layers/PandaHoldsItemLayer.class b/build/_compileJava_2/net/minecraft/client/renderer/entity/layers/PandaHoldsItemLayer.class new file mode 100644 index 000000000..f94030c79 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/renderer/entity/layers/PandaHoldsItemLayer.class differ diff --git a/build/_compileJava_2/net/minecraft/client/renderer/entity/layers/ParrotOnShoulderLayer.class b/build/_compileJava_2/net/minecraft/client/renderer/entity/layers/ParrotOnShoulderLayer.class new file mode 100644 index 000000000..172454914 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/renderer/entity/layers/ParrotOnShoulderLayer.class differ diff --git a/build/_compileJava_2/net/minecraft/client/renderer/entity/layers/PhantomEyesLayer.class b/build/_compileJava_2/net/minecraft/client/renderer/entity/layers/PhantomEyesLayer.class new file mode 100644 index 000000000..6f3e26206 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/renderer/entity/layers/PhantomEyesLayer.class differ diff --git a/build/_compileJava_2/net/minecraft/client/renderer/entity/layers/PlayerItemInHandLayer.class b/build/_compileJava_2/net/minecraft/client/renderer/entity/layers/PlayerItemInHandLayer.class new file mode 100644 index 000000000..f72eaca67 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/renderer/entity/layers/PlayerItemInHandLayer.class differ diff --git a/build/_compileJava_2/net/minecraft/client/renderer/entity/layers/RenderLayer.class b/build/_compileJava_2/net/minecraft/client/renderer/entity/layers/RenderLayer.class new file mode 100644 index 000000000..6ad441877 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/renderer/entity/layers/RenderLayer.class differ diff --git a/build/_compileJava_2/net/minecraft/client/renderer/entity/layers/SaddleLayer.class b/build/_compileJava_2/net/minecraft/client/renderer/entity/layers/SaddleLayer.class new file mode 100644 index 000000000..c53ed569e Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/renderer/entity/layers/SaddleLayer.class differ diff --git a/build/_compileJava_2/net/minecraft/client/renderer/entity/layers/SheepFurLayer.class b/build/_compileJava_2/net/minecraft/client/renderer/entity/layers/SheepFurLayer.class new file mode 100644 index 000000000..66a314055 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/renderer/entity/layers/SheepFurLayer.class differ diff --git a/build/_compileJava_2/net/minecraft/client/renderer/entity/layers/ShulkerHeadLayer.class b/build/_compileJava_2/net/minecraft/client/renderer/entity/layers/ShulkerHeadLayer.class new file mode 100644 index 000000000..ab35f8572 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/renderer/entity/layers/ShulkerHeadLayer.class differ diff --git a/build/_compileJava_2/net/minecraft/client/renderer/entity/layers/SlimeOuterLayer.class b/build/_compileJava_2/net/minecraft/client/renderer/entity/layers/SlimeOuterLayer.class new file mode 100644 index 000000000..a5bf85135 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/renderer/entity/layers/SlimeOuterLayer.class differ diff --git a/build/_compileJava_2/net/minecraft/client/renderer/entity/layers/SnowGolemHeadLayer.class b/build/_compileJava_2/net/minecraft/client/renderer/entity/layers/SnowGolemHeadLayer.class new file mode 100644 index 000000000..2c68cac83 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/renderer/entity/layers/SnowGolemHeadLayer.class differ diff --git a/build/_compileJava_2/net/minecraft/client/renderer/entity/layers/SpiderEyesLayer.class b/build/_compileJava_2/net/minecraft/client/renderer/entity/layers/SpiderEyesLayer.class new file mode 100644 index 000000000..33d95fe28 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/renderer/entity/layers/SpiderEyesLayer.class differ diff --git a/build/_compileJava_2/net/minecraft/client/renderer/entity/layers/SpinAttackEffectLayer.class b/build/_compileJava_2/net/minecraft/client/renderer/entity/layers/SpinAttackEffectLayer.class new file mode 100644 index 000000000..3b0f86aaf Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/renderer/entity/layers/SpinAttackEffectLayer.class differ diff --git a/build/_compileJava_2/net/minecraft/client/renderer/entity/layers/StrayClothingLayer.class b/build/_compileJava_2/net/minecraft/client/renderer/entity/layers/StrayClothingLayer.class new file mode 100644 index 000000000..47b33d5fa Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/renderer/entity/layers/StrayClothingLayer.class differ diff --git a/build/_compileJava_2/net/minecraft/client/renderer/entity/layers/StuckInBodyLayer.class b/build/_compileJava_2/net/minecraft/client/renderer/entity/layers/StuckInBodyLayer.class new file mode 100644 index 000000000..98a53377d Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/renderer/entity/layers/StuckInBodyLayer.class differ diff --git a/build/_compileJava_2/net/minecraft/client/renderer/entity/layers/TropicalFishPatternLayer$1.class b/build/_compileJava_2/net/minecraft/client/renderer/entity/layers/TropicalFishPatternLayer$1.class new file mode 100644 index 000000000..afe2ce4bf Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/renderer/entity/layers/TropicalFishPatternLayer$1.class differ diff --git a/build/_compileJava_2/net/minecraft/client/renderer/entity/layers/TropicalFishPatternLayer.class b/build/_compileJava_2/net/minecraft/client/renderer/entity/layers/TropicalFishPatternLayer.class new file mode 100644 index 000000000..1e2fe2f04 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/renderer/entity/layers/TropicalFishPatternLayer.class differ diff --git a/build/_compileJava_2/net/minecraft/client/renderer/entity/layers/VillagerProfessionLayer.class b/build/_compileJava_2/net/minecraft/client/renderer/entity/layers/VillagerProfessionLayer.class new file mode 100644 index 000000000..f3eb05dff Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/renderer/entity/layers/VillagerProfessionLayer.class differ diff --git a/build/_compileJava_2/net/minecraft/client/renderer/entity/layers/WardenEmissiveLayer$AlphaFunction.class b/build/_compileJava_2/net/minecraft/client/renderer/entity/layers/WardenEmissiveLayer$AlphaFunction.class new file mode 100644 index 000000000..c69f181c0 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/renderer/entity/layers/WardenEmissiveLayer$AlphaFunction.class differ diff --git a/build/_compileJava_2/net/minecraft/client/renderer/entity/layers/WardenEmissiveLayer$DrawSelector.class b/build/_compileJava_2/net/minecraft/client/renderer/entity/layers/WardenEmissiveLayer$DrawSelector.class new file mode 100644 index 000000000..5ff85cf5a Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/renderer/entity/layers/WardenEmissiveLayer$DrawSelector.class differ diff --git a/build/_compileJava_2/net/minecraft/client/renderer/entity/layers/WardenEmissiveLayer.class b/build/_compileJava_2/net/minecraft/client/renderer/entity/layers/WardenEmissiveLayer.class new file mode 100644 index 000000000..07f6307b7 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/renderer/entity/layers/WardenEmissiveLayer.class differ diff --git a/build/_compileJava_2/net/minecraft/client/renderer/entity/layers/WitchItemLayer.class b/build/_compileJava_2/net/minecraft/client/renderer/entity/layers/WitchItemLayer.class new file mode 100644 index 000000000..7b01dc48e Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/renderer/entity/layers/WitchItemLayer.class differ diff --git a/build/_compileJava_2/net/minecraft/client/renderer/entity/layers/WitherArmorLayer.class b/build/_compileJava_2/net/minecraft/client/renderer/entity/layers/WitherArmorLayer.class new file mode 100644 index 000000000..9b1af8605 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/renderer/entity/layers/WitherArmorLayer.class differ diff --git a/build/_compileJava_2/net/minecraft/client/renderer/entity/layers/WolfCollarLayer.class b/build/_compileJava_2/net/minecraft/client/renderer/entity/layers/WolfCollarLayer.class new file mode 100644 index 000000000..0ecfc4b52 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/renderer/entity/layers/WolfCollarLayer.class differ diff --git a/build/_compileJava_2/net/minecraft/client/renderer/entity/layers/package-info.class b/build/_compileJava_2/net/minecraft/client/renderer/entity/layers/package-info.class new file mode 100644 index 000000000..76efe9694 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/renderer/entity/layers/package-info.class differ diff --git a/build/_compileJava_2/net/minecraft/client/renderer/entity/package-info.class b/build/_compileJava_2/net/minecraft/client/renderer/entity/package-info.class new file mode 100644 index 000000000..a2843ea8d Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/renderer/entity/package-info.class differ diff --git a/build/_compileJava_2/net/minecraft/client/renderer/entity/player/PlayerRenderer.class b/build/_compileJava_2/net/minecraft/client/renderer/entity/player/PlayerRenderer.class new file mode 100644 index 000000000..2f41e8a17 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/renderer/entity/player/PlayerRenderer.class differ diff --git a/build/_compileJava_2/net/minecraft/client/renderer/entity/player/package-info.class b/build/_compileJava_2/net/minecraft/client/renderer/entity/player/package-info.class new file mode 100644 index 000000000..bfcb62eb2 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/renderer/entity/player/package-info.class differ diff --git a/build/_compileJava_2/net/minecraft/client/renderer/item/ClampedItemPropertyFunction.class b/build/_compileJava_2/net/minecraft/client/renderer/item/ClampedItemPropertyFunction.class new file mode 100644 index 000000000..8f8c4c554 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/renderer/item/ClampedItemPropertyFunction.class differ diff --git a/build/_compileJava_2/net/minecraft/client/renderer/item/CompassItemPropertyFunction$CompassTarget.class b/build/_compileJava_2/net/minecraft/client/renderer/item/CompassItemPropertyFunction$CompassTarget.class new file mode 100644 index 000000000..0f6661ce0 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/renderer/item/CompassItemPropertyFunction$CompassTarget.class differ diff --git a/build/_compileJava_2/net/minecraft/client/renderer/item/CompassItemPropertyFunction$CompassWobble.class b/build/_compileJava_2/net/minecraft/client/renderer/item/CompassItemPropertyFunction$CompassWobble.class new file mode 100644 index 000000000..e0d24b0a6 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/renderer/item/CompassItemPropertyFunction$CompassWobble.class differ diff --git a/build/_compileJava_2/net/minecraft/client/renderer/item/CompassItemPropertyFunction.class b/build/_compileJava_2/net/minecraft/client/renderer/item/CompassItemPropertyFunction.class new file mode 100644 index 000000000..a16000e63 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/renderer/item/CompassItemPropertyFunction.class differ diff --git a/build/_compileJava_2/net/minecraft/client/renderer/item/ItemProperties$1.class b/build/_compileJava_2/net/minecraft/client/renderer/item/ItemProperties$1.class new file mode 100644 index 000000000..181b90edc Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/renderer/item/ItemProperties$1.class differ diff --git a/build/_compileJava_2/net/minecraft/client/renderer/item/ItemProperties.class b/build/_compileJava_2/net/minecraft/client/renderer/item/ItemProperties.class new file mode 100644 index 000000000..21c7768d2 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/renderer/item/ItemProperties.class differ diff --git a/build/_compileJava_2/net/minecraft/client/renderer/item/ItemPropertyFunction.class b/build/_compileJava_2/net/minecraft/client/renderer/item/ItemPropertyFunction.class new file mode 100644 index 000000000..177139594 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/renderer/item/ItemPropertyFunction.class differ diff --git a/build/_compileJava_2/net/minecraft/client/renderer/item/package-info.class b/build/_compileJava_2/net/minecraft/client/renderer/item/package-info.class new file mode 100644 index 000000000..430c3ca81 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/renderer/item/package-info.class differ diff --git a/build/_compileJava_2/net/minecraft/client/renderer/package-info.class b/build/_compileJava_2/net/minecraft/client/renderer/package-info.class new file mode 100644 index 000000000..9ac947afa Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/renderer/package-info.class differ diff --git a/build/_compileJava_2/net/minecraft/client/renderer/texture/AbstractTexture.class b/build/_compileJava_2/net/minecraft/client/renderer/texture/AbstractTexture.class new file mode 100644 index 000000000..99fd2f76a Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/renderer/texture/AbstractTexture.class differ diff --git a/build/_compileJava_2/net/minecraft/client/renderer/texture/Dumpable.class b/build/_compileJava_2/net/minecraft/client/renderer/texture/Dumpable.class new file mode 100644 index 000000000..c4edf3bdb Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/renderer/texture/Dumpable.class differ diff --git a/build/_compileJava_2/net/minecraft/client/renderer/texture/DynamicTexture.class b/build/_compileJava_2/net/minecraft/client/renderer/texture/DynamicTexture.class new file mode 100644 index 000000000..7d7bb2769 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/renderer/texture/DynamicTexture.class differ diff --git a/build/_compileJava_2/net/minecraft/client/renderer/texture/HttpTexture.class b/build/_compileJava_2/net/minecraft/client/renderer/texture/HttpTexture.class new file mode 100644 index 000000000..19942a6ed Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/renderer/texture/HttpTexture.class differ diff --git a/build/_compileJava_2/net/minecraft/client/renderer/texture/MipmapGenerator.class b/build/_compileJava_2/net/minecraft/client/renderer/texture/MipmapGenerator.class new file mode 100644 index 000000000..358898caa Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/renderer/texture/MipmapGenerator.class differ diff --git a/build/_compileJava_2/net/minecraft/client/renderer/texture/MissingTextureAtlasSprite.class b/build/_compileJava_2/net/minecraft/client/renderer/texture/MissingTextureAtlasSprite.class new file mode 100644 index 000000000..db52b28d5 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/renderer/texture/MissingTextureAtlasSprite.class differ diff --git a/build/_compileJava_2/net/minecraft/client/renderer/texture/OverlayTexture.class b/build/_compileJava_2/net/minecraft/client/renderer/texture/OverlayTexture.class new file mode 100644 index 000000000..0bde3343d Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/renderer/texture/OverlayTexture.class differ diff --git a/build/_compileJava_2/net/minecraft/client/renderer/texture/PreloadedTexture.class b/build/_compileJava_2/net/minecraft/client/renderer/texture/PreloadedTexture.class new file mode 100644 index 000000000..8da99ca93 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/renderer/texture/PreloadedTexture.class differ diff --git a/build/_compileJava_2/net/minecraft/client/renderer/texture/SimpleTexture$TextureImage.class b/build/_compileJava_2/net/minecraft/client/renderer/texture/SimpleTexture$TextureImage.class new file mode 100644 index 000000000..35d163277 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/renderer/texture/SimpleTexture$TextureImage.class differ diff --git a/build/_compileJava_2/net/minecraft/client/renderer/texture/SimpleTexture.class b/build/_compileJava_2/net/minecraft/client/renderer/texture/SimpleTexture.class new file mode 100644 index 000000000..982690639 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/renderer/texture/SimpleTexture.class differ diff --git a/build/_compileJava_2/net/minecraft/client/renderer/texture/SpriteContents$AnimatedTexture.class b/build/_compileJava_2/net/minecraft/client/renderer/texture/SpriteContents$AnimatedTexture.class new file mode 100644 index 000000000..02def8d6a Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/renderer/texture/SpriteContents$AnimatedTexture.class differ diff --git a/build/_compileJava_2/net/minecraft/client/renderer/texture/SpriteContents$FrameInfo.class b/build/_compileJava_2/net/minecraft/client/renderer/texture/SpriteContents$FrameInfo.class new file mode 100644 index 000000000..4e2c8776a Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/renderer/texture/SpriteContents$FrameInfo.class differ diff --git a/build/_compileJava_2/net/minecraft/client/renderer/texture/SpriteContents$InterpolationData.class b/build/_compileJava_2/net/minecraft/client/renderer/texture/SpriteContents$InterpolationData.class new file mode 100644 index 000000000..b2b3704fa Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/renderer/texture/SpriteContents$InterpolationData.class differ diff --git a/build/_compileJava_2/net/minecraft/client/renderer/texture/SpriteContents$Ticker.class b/build/_compileJava_2/net/minecraft/client/renderer/texture/SpriteContents$Ticker.class new file mode 100644 index 000000000..cba7ec5eb Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/renderer/texture/SpriteContents$Ticker.class differ diff --git a/build/_compileJava_2/net/minecraft/client/renderer/texture/SpriteContents.class b/build/_compileJava_2/net/minecraft/client/renderer/texture/SpriteContents.class new file mode 100644 index 000000000..81034005f Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/renderer/texture/SpriteContents.class differ diff --git a/build/_compileJava_2/net/minecraft/client/renderer/texture/SpriteLoader$Preparations.class b/build/_compileJava_2/net/minecraft/client/renderer/texture/SpriteLoader$Preparations.class new file mode 100644 index 000000000..202fefda6 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/renderer/texture/SpriteLoader$Preparations.class differ diff --git a/build/_compileJava_2/net/minecraft/client/renderer/texture/SpriteLoader.class b/build/_compileJava_2/net/minecraft/client/renderer/texture/SpriteLoader.class new file mode 100644 index 000000000..f32547d1b Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/renderer/texture/SpriteLoader.class differ diff --git a/build/_compileJava_2/net/minecraft/client/renderer/texture/SpriteTicker.class b/build/_compileJava_2/net/minecraft/client/renderer/texture/SpriteTicker.class new file mode 100644 index 000000000..9b0ea0f3b Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/renderer/texture/SpriteTicker.class differ diff --git a/build/_compileJava_2/net/minecraft/client/renderer/texture/Stitcher$Entry.class b/build/_compileJava_2/net/minecraft/client/renderer/texture/Stitcher$Entry.class new file mode 100644 index 000000000..d66790de2 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/renderer/texture/Stitcher$Entry.class differ diff --git a/build/_compileJava_2/net/minecraft/client/renderer/texture/Stitcher$Holder.class b/build/_compileJava_2/net/minecraft/client/renderer/texture/Stitcher$Holder.class new file mode 100644 index 000000000..a07a33499 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/renderer/texture/Stitcher$Holder.class differ diff --git a/build/_compileJava_2/net/minecraft/client/renderer/texture/Stitcher$Region.class b/build/_compileJava_2/net/minecraft/client/renderer/texture/Stitcher$Region.class new file mode 100644 index 000000000..c95e8747b Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/renderer/texture/Stitcher$Region.class differ diff --git a/build/_compileJava_2/net/minecraft/client/renderer/texture/Stitcher$SpriteLoader.class b/build/_compileJava_2/net/minecraft/client/renderer/texture/Stitcher$SpriteLoader.class new file mode 100644 index 000000000..2673ff2d0 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/renderer/texture/Stitcher$SpriteLoader.class differ diff --git a/build/_compileJava_2/net/minecraft/client/renderer/texture/Stitcher.class b/build/_compileJava_2/net/minecraft/client/renderer/texture/Stitcher.class new file mode 100644 index 000000000..97d033299 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/renderer/texture/Stitcher.class differ diff --git a/build/_compileJava_2/net/minecraft/client/renderer/texture/StitcherException.class b/build/_compileJava_2/net/minecraft/client/renderer/texture/StitcherException.class new file mode 100644 index 000000000..f4e47a022 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/renderer/texture/StitcherException.class differ diff --git a/build/_compileJava_2/net/minecraft/client/renderer/texture/TextureAtlas.class b/build/_compileJava_2/net/minecraft/client/renderer/texture/TextureAtlas.class new file mode 100644 index 000000000..69158bdd1 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/renderer/texture/TextureAtlas.class differ diff --git a/build/_compileJava_2/net/minecraft/client/renderer/texture/TextureAtlasSprite$1.class b/build/_compileJava_2/net/minecraft/client/renderer/texture/TextureAtlasSprite$1.class new file mode 100644 index 000000000..e6f5b4a5c Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/renderer/texture/TextureAtlasSprite$1.class differ diff --git a/build/_compileJava_2/net/minecraft/client/renderer/texture/TextureAtlasSprite$Ticker.class b/build/_compileJava_2/net/minecraft/client/renderer/texture/TextureAtlasSprite$Ticker.class new file mode 100644 index 000000000..7f828cdc7 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/renderer/texture/TextureAtlasSprite$Ticker.class differ diff --git a/build/_compileJava_2/net/minecraft/client/renderer/texture/TextureAtlasSprite.class b/build/_compileJava_2/net/minecraft/client/renderer/texture/TextureAtlasSprite.class new file mode 100644 index 000000000..e08db6796 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/renderer/texture/TextureAtlasSprite.class differ diff --git a/build/_compileJava_2/net/minecraft/client/renderer/texture/TextureManager.class b/build/_compileJava_2/net/minecraft/client/renderer/texture/TextureManager.class new file mode 100644 index 000000000..0509881fa Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/renderer/texture/TextureManager.class differ diff --git a/build/_compileJava_2/net/minecraft/client/renderer/texture/Tickable.class b/build/_compileJava_2/net/minecraft/client/renderer/texture/Tickable.class new file mode 100644 index 000000000..d443a039e Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/renderer/texture/Tickable.class differ diff --git a/build/_compileJava_2/net/minecraft/client/renderer/texture/atlas/SpriteResourceLoader$1.class b/build/_compileJava_2/net/minecraft/client/renderer/texture/atlas/SpriteResourceLoader$1.class new file mode 100644 index 000000000..8b2aafab1 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/renderer/texture/atlas/SpriteResourceLoader$1.class differ diff --git a/build/_compileJava_2/net/minecraft/client/renderer/texture/atlas/SpriteResourceLoader.class b/build/_compileJava_2/net/minecraft/client/renderer/texture/atlas/SpriteResourceLoader.class new file mode 100644 index 000000000..dbc072284 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/renderer/texture/atlas/SpriteResourceLoader.class differ diff --git a/build/_compileJava_2/net/minecraft/client/renderer/texture/atlas/SpriteSource$Output.class b/build/_compileJava_2/net/minecraft/client/renderer/texture/atlas/SpriteSource$Output.class new file mode 100644 index 000000000..760e4b71e Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/renderer/texture/atlas/SpriteSource$Output.class differ diff --git a/build/_compileJava_2/net/minecraft/client/renderer/texture/atlas/SpriteSource$SpriteSupplier.class b/build/_compileJava_2/net/minecraft/client/renderer/texture/atlas/SpriteSource$SpriteSupplier.class new file mode 100644 index 000000000..574cc6bc1 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/renderer/texture/atlas/SpriteSource$SpriteSupplier.class differ diff --git a/build/_compileJava_2/net/minecraft/client/renderer/texture/atlas/SpriteSource.class b/build/_compileJava_2/net/minecraft/client/renderer/texture/atlas/SpriteSource.class new file mode 100644 index 000000000..2b1f45170 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/renderer/texture/atlas/SpriteSource.class differ diff --git a/build/_compileJava_2/net/minecraft/client/renderer/texture/atlas/SpriteSourceType.class b/build/_compileJava_2/net/minecraft/client/renderer/texture/atlas/SpriteSourceType.class new file mode 100644 index 000000000..6287379ec Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/renderer/texture/atlas/SpriteSourceType.class differ diff --git a/build/_compileJava_2/net/minecraft/client/renderer/texture/atlas/SpriteSources.class b/build/_compileJava_2/net/minecraft/client/renderer/texture/atlas/SpriteSources.class new file mode 100644 index 000000000..6cffc150e Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/renderer/texture/atlas/SpriteSources.class differ diff --git a/build/_compileJava_2/net/minecraft/client/renderer/texture/atlas/package-info.class b/build/_compileJava_2/net/minecraft/client/renderer/texture/atlas/package-info.class new file mode 100644 index 000000000..5fcbfbe72 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/renderer/texture/atlas/package-info.class differ diff --git a/build/_compileJava_2/net/minecraft/client/renderer/texture/atlas/sources/DirectoryLister.class b/build/_compileJava_2/net/minecraft/client/renderer/texture/atlas/sources/DirectoryLister.class new file mode 100644 index 000000000..0bf74fe1b Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/renderer/texture/atlas/sources/DirectoryLister.class differ diff --git a/build/_compileJava_2/net/minecraft/client/renderer/texture/atlas/sources/LazyLoadedImage.class b/build/_compileJava_2/net/minecraft/client/renderer/texture/atlas/sources/LazyLoadedImage.class new file mode 100644 index 000000000..afa6a9940 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/renderer/texture/atlas/sources/LazyLoadedImage.class differ diff --git a/build/_compileJava_2/net/minecraft/client/renderer/texture/atlas/sources/PalettedPermutations$PalettedSpriteSupplier.class b/build/_compileJava_2/net/minecraft/client/renderer/texture/atlas/sources/PalettedPermutations$PalettedSpriteSupplier.class new file mode 100644 index 000000000..363990cb4 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/renderer/texture/atlas/sources/PalettedPermutations$PalettedSpriteSupplier.class differ diff --git a/build/_compileJava_2/net/minecraft/client/renderer/texture/atlas/sources/PalettedPermutations.class b/build/_compileJava_2/net/minecraft/client/renderer/texture/atlas/sources/PalettedPermutations.class new file mode 100644 index 000000000..a639f3c32 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/renderer/texture/atlas/sources/PalettedPermutations.class differ diff --git a/build/_compileJava_2/net/minecraft/client/renderer/texture/atlas/sources/SingleFile.class b/build/_compileJava_2/net/minecraft/client/renderer/texture/atlas/sources/SingleFile.class new file mode 100644 index 000000000..8dab22436 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/renderer/texture/atlas/sources/SingleFile.class differ diff --git a/build/_compileJava_2/net/minecraft/client/renderer/texture/atlas/sources/SourceFilter.class b/build/_compileJava_2/net/minecraft/client/renderer/texture/atlas/sources/SourceFilter.class new file mode 100644 index 000000000..f8392cea0 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/renderer/texture/atlas/sources/SourceFilter.class differ diff --git a/build/_compileJava_2/net/minecraft/client/renderer/texture/atlas/sources/Unstitcher$Region.class b/build/_compileJava_2/net/minecraft/client/renderer/texture/atlas/sources/Unstitcher$Region.class new file mode 100644 index 000000000..e55bba7ac Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/renderer/texture/atlas/sources/Unstitcher$Region.class differ diff --git a/build/_compileJava_2/net/minecraft/client/renderer/texture/atlas/sources/Unstitcher$RegionInstance.class b/build/_compileJava_2/net/minecraft/client/renderer/texture/atlas/sources/Unstitcher$RegionInstance.class new file mode 100644 index 000000000..ed989fe8d Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/renderer/texture/atlas/sources/Unstitcher$RegionInstance.class differ diff --git a/build/_compileJava_2/net/minecraft/client/renderer/texture/atlas/sources/Unstitcher.class b/build/_compileJava_2/net/minecraft/client/renderer/texture/atlas/sources/Unstitcher.class new file mode 100644 index 000000000..04f24a387 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/renderer/texture/atlas/sources/Unstitcher.class differ diff --git a/build/_compileJava_2/net/minecraft/client/renderer/texture/atlas/sources/package-info.class b/build/_compileJava_2/net/minecraft/client/renderer/texture/atlas/sources/package-info.class new file mode 100644 index 000000000..8c9f019ee Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/renderer/texture/atlas/sources/package-info.class differ diff --git a/build/_compileJava_2/net/minecraft/client/renderer/texture/package-info.class b/build/_compileJava_2/net/minecraft/client/renderer/texture/package-info.class new file mode 100644 index 000000000..36cb2ebd4 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/renderer/texture/package-info.class differ diff --git a/build/_compileJava_2/net/minecraft/client/resources/ClientPackSource.class b/build/_compileJava_2/net/minecraft/client/resources/ClientPackSource.class new file mode 100644 index 000000000..c43f95a43 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/resources/ClientPackSource.class differ diff --git a/build/_compileJava_2/net/minecraft/client/resources/DefaultPlayerSkin$ModelType.class b/build/_compileJava_2/net/minecraft/client/resources/DefaultPlayerSkin$ModelType.class new file mode 100644 index 000000000..2a9fb0c38 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/resources/DefaultPlayerSkin$ModelType.class differ diff --git a/build/_compileJava_2/net/minecraft/client/resources/DefaultPlayerSkin$SkinType.class b/build/_compileJava_2/net/minecraft/client/resources/DefaultPlayerSkin$SkinType.class new file mode 100644 index 000000000..e168ac054 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/resources/DefaultPlayerSkin$SkinType.class differ diff --git a/build/_compileJava_2/net/minecraft/client/resources/DefaultPlayerSkin.class b/build/_compileJava_2/net/minecraft/client/resources/DefaultPlayerSkin.class new file mode 100644 index 000000000..c3353c3e8 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/resources/DefaultPlayerSkin.class differ diff --git a/build/_compileJava_2/net/minecraft/client/resources/DownloadedPackSource.class b/build/_compileJava_2/net/minecraft/client/resources/DownloadedPackSource.class new file mode 100644 index 000000000..69a59702a Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/resources/DownloadedPackSource.class differ diff --git a/build/_compileJava_2/net/minecraft/client/resources/FoliageColorReloadListener.class b/build/_compileJava_2/net/minecraft/client/resources/FoliageColorReloadListener.class new file mode 100644 index 000000000..3d39591fb Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/resources/FoliageColorReloadListener.class differ diff --git a/build/_compileJava_2/net/minecraft/client/resources/GrassColorReloadListener.class b/build/_compileJava_2/net/minecraft/client/resources/GrassColorReloadListener.class new file mode 100644 index 000000000..37aad30c0 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/resources/GrassColorReloadListener.class differ diff --git a/build/_compileJava_2/net/minecraft/client/resources/IndexedAssetSource.class b/build/_compileJava_2/net/minecraft/client/resources/IndexedAssetSource.class new file mode 100644 index 000000000..758147aeb Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/resources/IndexedAssetSource.class differ diff --git a/build/_compileJava_2/net/minecraft/client/resources/LegacyStuffWrapper.class b/build/_compileJava_2/net/minecraft/client/resources/LegacyStuffWrapper.class new file mode 100644 index 000000000..38dfb0ece Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/resources/LegacyStuffWrapper.class differ diff --git a/build/_compileJava_2/net/minecraft/client/resources/MobEffectTextureManager.class b/build/_compileJava_2/net/minecraft/client/resources/MobEffectTextureManager.class new file mode 100644 index 000000000..9a01afa88 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/resources/MobEffectTextureManager.class differ diff --git a/build/_compileJava_2/net/minecraft/client/resources/PaintingTextureManager.class b/build/_compileJava_2/net/minecraft/client/resources/PaintingTextureManager.class new file mode 100644 index 000000000..c00a96325 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/resources/PaintingTextureManager.class differ diff --git a/build/_compileJava_2/net/minecraft/client/resources/SkinManager$1.class b/build/_compileJava_2/net/minecraft/client/resources/SkinManager$1.class new file mode 100644 index 000000000..9dd084e84 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/resources/SkinManager$1.class differ diff --git a/build/_compileJava_2/net/minecraft/client/resources/SkinManager$2.class b/build/_compileJava_2/net/minecraft/client/resources/SkinManager$2.class new file mode 100644 index 000000000..7f9bd6cd3 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/resources/SkinManager$2.class differ diff --git a/build/_compileJava_2/net/minecraft/client/resources/SkinManager$SkinTextureCallback.class b/build/_compileJava_2/net/minecraft/client/resources/SkinManager$SkinTextureCallback.class new file mode 100644 index 000000000..8c69f2d8a Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/resources/SkinManager$SkinTextureCallback.class differ diff --git a/build/_compileJava_2/net/minecraft/client/resources/SkinManager.class b/build/_compileJava_2/net/minecraft/client/resources/SkinManager.class new file mode 100644 index 000000000..d2cc4081b Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/resources/SkinManager.class differ diff --git a/build/_compileJava_2/net/minecraft/client/resources/SplashManager.class b/build/_compileJava_2/net/minecraft/client/resources/SplashManager.class new file mode 100644 index 000000000..33c86866b Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/resources/SplashManager.class differ diff --git a/build/_compileJava_2/net/minecraft/client/resources/TextureAtlasHolder.class b/build/_compileJava_2/net/minecraft/client/resources/TextureAtlasHolder.class new file mode 100644 index 000000000..02a2588f7 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/resources/TextureAtlasHolder.class differ diff --git a/build/_compileJava_2/net/minecraft/client/resources/language/ClientLanguage.class b/build/_compileJava_2/net/minecraft/client/resources/language/ClientLanguage.class new file mode 100644 index 000000000..d17e5c4de Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/resources/language/ClientLanguage.class differ diff --git a/build/_compileJava_2/net/minecraft/client/resources/language/FormattedBidiReorder.class b/build/_compileJava_2/net/minecraft/client/resources/language/FormattedBidiReorder.class new file mode 100644 index 000000000..1e872b4bf Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/resources/language/FormattedBidiReorder.class differ diff --git a/build/_compileJava_2/net/minecraft/client/resources/language/I18n.class b/build/_compileJava_2/net/minecraft/client/resources/language/I18n.class new file mode 100644 index 000000000..2759a154d Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/resources/language/I18n.class differ diff --git a/build/_compileJava_2/net/minecraft/client/resources/language/LanguageInfo.class b/build/_compileJava_2/net/minecraft/client/resources/language/LanguageInfo.class new file mode 100644 index 000000000..4473273ca Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/resources/language/LanguageInfo.class differ diff --git a/build/_compileJava_2/net/minecraft/client/resources/language/LanguageManager.class b/build/_compileJava_2/net/minecraft/client/resources/language/LanguageManager.class new file mode 100644 index 000000000..4953bc6e3 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/resources/language/LanguageManager.class differ diff --git a/build/_compileJava_2/net/minecraft/client/resources/language/package-info.class b/build/_compileJava_2/net/minecraft/client/resources/language/package-info.class new file mode 100644 index 000000000..d26dd3763 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/resources/language/package-info.class differ diff --git a/build/_compileJava_2/net/minecraft/client/resources/metadata/animation/AnimationFrame.class b/build/_compileJava_2/net/minecraft/client/resources/metadata/animation/AnimationFrame.class new file mode 100644 index 000000000..fafd503d6 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/resources/metadata/animation/AnimationFrame.class differ diff --git a/build/_compileJava_2/net/minecraft/client/resources/metadata/animation/AnimationMetadataSection$1.class b/build/_compileJava_2/net/minecraft/client/resources/metadata/animation/AnimationMetadataSection$1.class new file mode 100644 index 000000000..42d0cdb02 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/resources/metadata/animation/AnimationMetadataSection$1.class differ diff --git a/build/_compileJava_2/net/minecraft/client/resources/metadata/animation/AnimationMetadataSection$FrameOutput.class b/build/_compileJava_2/net/minecraft/client/resources/metadata/animation/AnimationMetadataSection$FrameOutput.class new file mode 100644 index 000000000..c205aeb09 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/resources/metadata/animation/AnimationMetadataSection$FrameOutput.class differ diff --git a/build/_compileJava_2/net/minecraft/client/resources/metadata/animation/AnimationMetadataSection.class b/build/_compileJava_2/net/minecraft/client/resources/metadata/animation/AnimationMetadataSection.class new file mode 100644 index 000000000..dbe9e0081 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/resources/metadata/animation/AnimationMetadataSection.class differ diff --git a/build/_compileJava_2/net/minecraft/client/resources/metadata/animation/AnimationMetadataSectionSerializer.class b/build/_compileJava_2/net/minecraft/client/resources/metadata/animation/AnimationMetadataSectionSerializer.class new file mode 100644 index 000000000..2e12fa309 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/resources/metadata/animation/AnimationMetadataSectionSerializer.class differ diff --git a/build/_compileJava_2/net/minecraft/client/resources/metadata/animation/FrameSize.class b/build/_compileJava_2/net/minecraft/client/resources/metadata/animation/FrameSize.class new file mode 100644 index 000000000..f3c67a167 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/resources/metadata/animation/FrameSize.class differ diff --git a/build/_compileJava_2/net/minecraft/client/resources/metadata/animation/VillagerMetaDataSection$Hat.class b/build/_compileJava_2/net/minecraft/client/resources/metadata/animation/VillagerMetaDataSection$Hat.class new file mode 100644 index 000000000..24d4be0e9 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/resources/metadata/animation/VillagerMetaDataSection$Hat.class differ diff --git a/build/_compileJava_2/net/minecraft/client/resources/metadata/animation/VillagerMetaDataSection.class b/build/_compileJava_2/net/minecraft/client/resources/metadata/animation/VillagerMetaDataSection.class new file mode 100644 index 000000000..14e383d6f Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/resources/metadata/animation/VillagerMetaDataSection.class differ diff --git a/build/_compileJava_2/net/minecraft/client/resources/metadata/animation/VillagerMetadataSectionSerializer.class b/build/_compileJava_2/net/minecraft/client/resources/metadata/animation/VillagerMetadataSectionSerializer.class new file mode 100644 index 000000000..f6f98123c Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/resources/metadata/animation/VillagerMetadataSectionSerializer.class differ diff --git a/build/_compileJava_2/net/minecraft/client/resources/metadata/animation/package-info.class b/build/_compileJava_2/net/minecraft/client/resources/metadata/animation/package-info.class new file mode 100644 index 000000000..2f33ad87c Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/resources/metadata/animation/package-info.class differ diff --git a/build/_compileJava_2/net/minecraft/client/resources/metadata/language/LanguageMetadataSection.class b/build/_compileJava_2/net/minecraft/client/resources/metadata/language/LanguageMetadataSection.class new file mode 100644 index 000000000..c64cf4bbd Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/resources/metadata/language/LanguageMetadataSection.class differ diff --git a/build/_compileJava_2/net/minecraft/client/resources/metadata/language/package-info.class b/build/_compileJava_2/net/minecraft/client/resources/metadata/language/package-info.class new file mode 100644 index 000000000..0a9c2a317 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/resources/metadata/language/package-info.class differ diff --git a/build/_compileJava_2/net/minecraft/client/resources/metadata/package-info.class b/build/_compileJava_2/net/minecraft/client/resources/metadata/package-info.class new file mode 100644 index 000000000..90aadd82a Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/resources/metadata/package-info.class differ diff --git a/build/_compileJava_2/net/minecraft/client/resources/metadata/texture/TextureMetadataSection.class b/build/_compileJava_2/net/minecraft/client/resources/metadata/texture/TextureMetadataSection.class new file mode 100644 index 000000000..eb43ede0e Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/resources/metadata/texture/TextureMetadataSection.class differ diff --git a/build/_compileJava_2/net/minecraft/client/resources/metadata/texture/TextureMetadataSectionSerializer.class b/build/_compileJava_2/net/minecraft/client/resources/metadata/texture/TextureMetadataSectionSerializer.class new file mode 100644 index 000000000..6982e8800 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/resources/metadata/texture/TextureMetadataSectionSerializer.class differ diff --git a/build/_compileJava_2/net/minecraft/client/resources/metadata/texture/package-info.class b/build/_compileJava_2/net/minecraft/client/resources/metadata/texture/package-info.class new file mode 100644 index 000000000..680a67e63 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/resources/metadata/texture/package-info.class differ diff --git a/build/_compileJava_2/net/minecraft/client/resources/model/AtlasSet$AtlasEntry.class b/build/_compileJava_2/net/minecraft/client/resources/model/AtlasSet$AtlasEntry.class new file mode 100644 index 000000000..9f1625250 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/resources/model/AtlasSet$AtlasEntry.class differ diff --git a/build/_compileJava_2/net/minecraft/client/resources/model/AtlasSet$StitchResult.class b/build/_compileJava_2/net/minecraft/client/resources/model/AtlasSet$StitchResult.class new file mode 100644 index 000000000..d2475919e Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/resources/model/AtlasSet$StitchResult.class differ diff --git a/build/_compileJava_2/net/minecraft/client/resources/model/AtlasSet.class b/build/_compileJava_2/net/minecraft/client/resources/model/AtlasSet.class new file mode 100644 index 000000000..51c15d27f Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/resources/model/AtlasSet.class differ diff --git a/build/_compileJava_2/net/minecraft/client/resources/model/BakedModel.class b/build/_compileJava_2/net/minecraft/client/resources/model/BakedModel.class new file mode 100644 index 000000000..dba15fbb2 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/resources/model/BakedModel.class differ diff --git a/build/_compileJava_2/net/minecraft/client/resources/model/BlockModelRotation.class b/build/_compileJava_2/net/minecraft/client/resources/model/BlockModelRotation.class new file mode 100644 index 000000000..1f644fa1d Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/resources/model/BlockModelRotation.class differ diff --git a/build/_compileJava_2/net/minecraft/client/resources/model/BuiltInModel.class b/build/_compileJava_2/net/minecraft/client/resources/model/BuiltInModel.class new file mode 100644 index 000000000..fd3b7a316 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/resources/model/BuiltInModel.class differ diff --git a/build/_compileJava_2/net/minecraft/client/resources/model/Material.class b/build/_compileJava_2/net/minecraft/client/resources/model/Material.class new file mode 100644 index 000000000..9701e5b6e Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/resources/model/Material.class differ diff --git a/build/_compileJava_2/net/minecraft/client/resources/model/ModelBaker.class b/build/_compileJava_2/net/minecraft/client/resources/model/ModelBaker.class new file mode 100644 index 000000000..b71c3a60d Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/resources/model/ModelBaker.class differ diff --git a/build/_compileJava_2/net/minecraft/client/resources/model/ModelBakery$BakedCacheKey.class b/build/_compileJava_2/net/minecraft/client/resources/model/ModelBakery$BakedCacheKey.class new file mode 100644 index 000000000..cc3253277 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/resources/model/ModelBakery$BakedCacheKey.class differ diff --git a/build/_compileJava_2/net/minecraft/client/resources/model/ModelBakery$BlockStateDefinitionException.class b/build/_compileJava_2/net/minecraft/client/resources/model/ModelBakery$BlockStateDefinitionException.class new file mode 100644 index 000000000..56d459038 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/resources/model/ModelBakery$BlockStateDefinitionException.class differ diff --git a/build/_compileJava_2/net/minecraft/client/resources/model/ModelBakery$LoadedJson.class b/build/_compileJava_2/net/minecraft/client/resources/model/ModelBakery$LoadedJson.class new file mode 100644 index 000000000..95a59c08b Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/resources/model/ModelBakery$LoadedJson.class differ diff --git a/build/_compileJava_2/net/minecraft/client/resources/model/ModelBakery$ModelBakerImpl.class b/build/_compileJava_2/net/minecraft/client/resources/model/ModelBakery$ModelBakerImpl.class new file mode 100644 index 000000000..5d901077f Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/resources/model/ModelBakery$ModelBakerImpl.class differ diff --git a/build/_compileJava_2/net/minecraft/client/resources/model/ModelBakery$ModelGroupKey.class b/build/_compileJava_2/net/minecraft/client/resources/model/ModelBakery$ModelGroupKey.class new file mode 100644 index 000000000..643546774 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/resources/model/ModelBakery$ModelGroupKey.class differ diff --git a/build/_compileJava_2/net/minecraft/client/resources/model/ModelBakery.class b/build/_compileJava_2/net/minecraft/client/resources/model/ModelBakery.class new file mode 100644 index 000000000..882a84d14 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/resources/model/ModelBakery.class differ diff --git a/build/_compileJava_2/net/minecraft/client/resources/model/ModelManager$ReloadState.class b/build/_compileJava_2/net/minecraft/client/resources/model/ModelManager$ReloadState.class new file mode 100644 index 000000000..a6bda66f2 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/resources/model/ModelManager$ReloadState.class differ diff --git a/build/_compileJava_2/net/minecraft/client/resources/model/ModelManager.class b/build/_compileJava_2/net/minecraft/client/resources/model/ModelManager.class new file mode 100644 index 000000000..dc2507552 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/resources/model/ModelManager.class differ diff --git a/build/_compileJava_2/net/minecraft/client/resources/model/ModelResourceLocation.class b/build/_compileJava_2/net/minecraft/client/resources/model/ModelResourceLocation.class new file mode 100644 index 000000000..2c633ad8c Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/resources/model/ModelResourceLocation.class differ diff --git a/build/_compileJava_2/net/minecraft/client/resources/model/ModelState.class b/build/_compileJava_2/net/minecraft/client/resources/model/ModelState.class new file mode 100644 index 000000000..2079a4c90 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/resources/model/ModelState.class differ diff --git a/build/_compileJava_2/net/minecraft/client/resources/model/MultiPartBakedModel$Builder.class b/build/_compileJava_2/net/minecraft/client/resources/model/MultiPartBakedModel$Builder.class new file mode 100644 index 000000000..5c76a6bd3 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/resources/model/MultiPartBakedModel$Builder.class differ diff --git a/build/_compileJava_2/net/minecraft/client/resources/model/MultiPartBakedModel.class b/build/_compileJava_2/net/minecraft/client/resources/model/MultiPartBakedModel.class new file mode 100644 index 000000000..b7010f851 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/resources/model/MultiPartBakedModel.class differ diff --git a/build/_compileJava_2/net/minecraft/client/resources/model/SimpleBakedModel$Builder.class b/build/_compileJava_2/net/minecraft/client/resources/model/SimpleBakedModel$Builder.class new file mode 100644 index 000000000..2fbc9306b Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/resources/model/SimpleBakedModel$Builder.class differ diff --git a/build/_compileJava_2/net/minecraft/client/resources/model/SimpleBakedModel.class b/build/_compileJava_2/net/minecraft/client/resources/model/SimpleBakedModel.class new file mode 100644 index 000000000..18bdd5764 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/resources/model/SimpleBakedModel.class differ diff --git a/build/_compileJava_2/net/minecraft/client/resources/model/UnbakedModel.class b/build/_compileJava_2/net/minecraft/client/resources/model/UnbakedModel.class new file mode 100644 index 000000000..6e02e0af5 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/resources/model/UnbakedModel.class differ diff --git a/build/_compileJava_2/net/minecraft/client/resources/model/WeightedBakedModel$Builder.class b/build/_compileJava_2/net/minecraft/client/resources/model/WeightedBakedModel$Builder.class new file mode 100644 index 000000000..d054ce75f Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/resources/model/WeightedBakedModel$Builder.class differ diff --git a/build/_compileJava_2/net/minecraft/client/resources/model/WeightedBakedModel.class b/build/_compileJava_2/net/minecraft/client/resources/model/WeightedBakedModel.class new file mode 100644 index 000000000..730574a68 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/resources/model/WeightedBakedModel.class differ diff --git a/build/_compileJava_2/net/minecraft/client/resources/model/package-info.class b/build/_compileJava_2/net/minecraft/client/resources/model/package-info.class new file mode 100644 index 000000000..ddcb291c5 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/resources/model/package-info.class differ diff --git a/build/_compileJava_2/net/minecraft/client/resources/package-info.class b/build/_compileJava_2/net/minecraft/client/resources/package-info.class new file mode 100644 index 000000000..50929e57e Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/resources/package-info.class differ diff --git a/build/_compileJava_2/net/minecraft/client/resources/sounds/AbstractSoundInstance.class b/build/_compileJava_2/net/minecraft/client/resources/sounds/AbstractSoundInstance.class new file mode 100644 index 000000000..e8fdf9aa1 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/resources/sounds/AbstractSoundInstance.class differ diff --git a/build/_compileJava_2/net/minecraft/client/resources/sounds/AbstractTickableSoundInstance.class b/build/_compileJava_2/net/minecraft/client/resources/sounds/AbstractTickableSoundInstance.class new file mode 100644 index 000000000..cf60c3651 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/resources/sounds/AbstractTickableSoundInstance.class differ diff --git a/build/_compileJava_2/net/minecraft/client/resources/sounds/AmbientSoundHandler.class b/build/_compileJava_2/net/minecraft/client/resources/sounds/AmbientSoundHandler.class new file mode 100644 index 000000000..6a5507f5d Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/resources/sounds/AmbientSoundHandler.class differ diff --git a/build/_compileJava_2/net/minecraft/client/resources/sounds/BeeAggressiveSoundInstance.class b/build/_compileJava_2/net/minecraft/client/resources/sounds/BeeAggressiveSoundInstance.class new file mode 100644 index 000000000..c1357d00b Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/resources/sounds/BeeAggressiveSoundInstance.class differ diff --git a/build/_compileJava_2/net/minecraft/client/resources/sounds/BeeFlyingSoundInstance.class b/build/_compileJava_2/net/minecraft/client/resources/sounds/BeeFlyingSoundInstance.class new file mode 100644 index 000000000..e070105c0 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/resources/sounds/BeeFlyingSoundInstance.class differ diff --git a/build/_compileJava_2/net/minecraft/client/resources/sounds/BeeSoundInstance.class b/build/_compileJava_2/net/minecraft/client/resources/sounds/BeeSoundInstance.class new file mode 100644 index 000000000..63e6ccc34 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/resources/sounds/BeeSoundInstance.class differ diff --git a/build/_compileJava_2/net/minecraft/client/resources/sounds/BiomeAmbientSoundsHandler$LoopSoundInstance.class b/build/_compileJava_2/net/minecraft/client/resources/sounds/BiomeAmbientSoundsHandler$LoopSoundInstance.class new file mode 100644 index 000000000..fcc66f4be Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/resources/sounds/BiomeAmbientSoundsHandler$LoopSoundInstance.class differ diff --git a/build/_compileJava_2/net/minecraft/client/resources/sounds/BiomeAmbientSoundsHandler.class b/build/_compileJava_2/net/minecraft/client/resources/sounds/BiomeAmbientSoundsHandler.class new file mode 100644 index 000000000..40318de4e Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/resources/sounds/BiomeAmbientSoundsHandler.class differ diff --git a/build/_compileJava_2/net/minecraft/client/resources/sounds/BubbleColumnAmbientSoundHandler.class b/build/_compileJava_2/net/minecraft/client/resources/sounds/BubbleColumnAmbientSoundHandler.class new file mode 100644 index 000000000..2374d0996 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/resources/sounds/BubbleColumnAmbientSoundHandler.class differ diff --git a/build/_compileJava_2/net/minecraft/client/resources/sounds/ElytraOnPlayerSoundInstance.class b/build/_compileJava_2/net/minecraft/client/resources/sounds/ElytraOnPlayerSoundInstance.class new file mode 100644 index 000000000..1a9d84f2b Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/resources/sounds/ElytraOnPlayerSoundInstance.class differ diff --git a/build/_compileJava_2/net/minecraft/client/resources/sounds/EntityBoundSoundInstance.class b/build/_compileJava_2/net/minecraft/client/resources/sounds/EntityBoundSoundInstance.class new file mode 100644 index 000000000..3c1f5207d Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/resources/sounds/EntityBoundSoundInstance.class differ diff --git a/build/_compileJava_2/net/minecraft/client/resources/sounds/GuardianAttackSoundInstance.class b/build/_compileJava_2/net/minecraft/client/resources/sounds/GuardianAttackSoundInstance.class new file mode 100644 index 000000000..33a779017 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/resources/sounds/GuardianAttackSoundInstance.class differ diff --git a/build/_compileJava_2/net/minecraft/client/resources/sounds/MinecartSoundInstance.class b/build/_compileJava_2/net/minecraft/client/resources/sounds/MinecartSoundInstance.class new file mode 100644 index 000000000..1e5e62e09 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/resources/sounds/MinecartSoundInstance.class differ diff --git a/build/_compileJava_2/net/minecraft/client/resources/sounds/RidingMinecartSoundInstance.class b/build/_compileJava_2/net/minecraft/client/resources/sounds/RidingMinecartSoundInstance.class new file mode 100644 index 000000000..12f8b6017 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/resources/sounds/RidingMinecartSoundInstance.class differ diff --git a/build/_compileJava_2/net/minecraft/client/resources/sounds/SimpleSoundInstance.class b/build/_compileJava_2/net/minecraft/client/resources/sounds/SimpleSoundInstance.class new file mode 100644 index 000000000..2b0a971df Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/resources/sounds/SimpleSoundInstance.class differ diff --git a/build/_compileJava_2/net/minecraft/client/resources/sounds/SnifferSoundInstance.class b/build/_compileJava_2/net/minecraft/client/resources/sounds/SnifferSoundInstance.class new file mode 100644 index 000000000..3c2b46e7b Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/resources/sounds/SnifferSoundInstance.class differ diff --git a/build/_compileJava_2/net/minecraft/client/resources/sounds/Sound$Type.class b/build/_compileJava_2/net/minecraft/client/resources/sounds/Sound$Type.class new file mode 100644 index 000000000..409cb65d1 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/resources/sounds/Sound$Type.class differ diff --git a/build/_compileJava_2/net/minecraft/client/resources/sounds/Sound.class b/build/_compileJava_2/net/minecraft/client/resources/sounds/Sound.class new file mode 100644 index 000000000..0b79cf41e Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/resources/sounds/Sound.class differ diff --git a/build/_compileJava_2/net/minecraft/client/resources/sounds/SoundEventRegistration.class b/build/_compileJava_2/net/minecraft/client/resources/sounds/SoundEventRegistration.class new file mode 100644 index 000000000..23bd5c845 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/resources/sounds/SoundEventRegistration.class differ diff --git a/build/_compileJava_2/net/minecraft/client/resources/sounds/SoundEventRegistrationSerializer.class b/build/_compileJava_2/net/minecraft/client/resources/sounds/SoundEventRegistrationSerializer.class new file mode 100644 index 000000000..35e99b589 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/resources/sounds/SoundEventRegistrationSerializer.class differ diff --git a/build/_compileJava_2/net/minecraft/client/resources/sounds/SoundInstance$Attenuation.class b/build/_compileJava_2/net/minecraft/client/resources/sounds/SoundInstance$Attenuation.class new file mode 100644 index 000000000..f114f2b29 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/resources/sounds/SoundInstance$Attenuation.class differ diff --git a/build/_compileJava_2/net/minecraft/client/resources/sounds/SoundInstance.class b/build/_compileJava_2/net/minecraft/client/resources/sounds/SoundInstance.class new file mode 100644 index 000000000..658105150 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/resources/sounds/SoundInstance.class differ diff --git a/build/_compileJava_2/net/minecraft/client/resources/sounds/TickableSoundInstance.class b/build/_compileJava_2/net/minecraft/client/resources/sounds/TickableSoundInstance.class new file mode 100644 index 000000000..6de0bc4f9 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/resources/sounds/TickableSoundInstance.class differ diff --git a/build/_compileJava_2/net/minecraft/client/resources/sounds/UnderwaterAmbientSoundHandler.class b/build/_compileJava_2/net/minecraft/client/resources/sounds/UnderwaterAmbientSoundHandler.class new file mode 100644 index 000000000..a16647b0e Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/resources/sounds/UnderwaterAmbientSoundHandler.class differ diff --git a/build/_compileJava_2/net/minecraft/client/resources/sounds/UnderwaterAmbientSoundInstances$SubSound.class b/build/_compileJava_2/net/minecraft/client/resources/sounds/UnderwaterAmbientSoundInstances$SubSound.class new file mode 100644 index 000000000..2b307f310 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/resources/sounds/UnderwaterAmbientSoundInstances$SubSound.class differ diff --git a/build/_compileJava_2/net/minecraft/client/resources/sounds/UnderwaterAmbientSoundInstances$UnderwaterAmbientSoundInstance.class b/build/_compileJava_2/net/minecraft/client/resources/sounds/UnderwaterAmbientSoundInstances$UnderwaterAmbientSoundInstance.class new file mode 100644 index 000000000..49facac3e Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/resources/sounds/UnderwaterAmbientSoundInstances$UnderwaterAmbientSoundInstance.class differ diff --git a/build/_compileJava_2/net/minecraft/client/resources/sounds/UnderwaterAmbientSoundInstances.class b/build/_compileJava_2/net/minecraft/client/resources/sounds/UnderwaterAmbientSoundInstances.class new file mode 100644 index 000000000..d3b94b53f Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/resources/sounds/UnderwaterAmbientSoundInstances.class differ diff --git a/build/_compileJava_2/net/minecraft/client/resources/sounds/package-info.class b/build/_compileJava_2/net/minecraft/client/resources/sounds/package-info.class new file mode 100644 index 000000000..d86de9210 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/resources/sounds/package-info.class differ diff --git a/build/_compileJava_2/net/minecraft/client/searchtree/FullTextSearchTree.class b/build/_compileJava_2/net/minecraft/client/searchtree/FullTextSearchTree.class new file mode 100644 index 000000000..ca7b39106 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/searchtree/FullTextSearchTree.class differ diff --git a/build/_compileJava_2/net/minecraft/client/searchtree/IdSearchTree.class b/build/_compileJava_2/net/minecraft/client/searchtree/IdSearchTree.class new file mode 100644 index 000000000..e251bc8f9 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/searchtree/IdSearchTree.class differ diff --git a/build/_compileJava_2/net/minecraft/client/searchtree/IntersectionIterator.class b/build/_compileJava_2/net/minecraft/client/searchtree/IntersectionIterator.class new file mode 100644 index 000000000..25e5a09fe Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/searchtree/IntersectionIterator.class differ diff --git a/build/_compileJava_2/net/minecraft/client/searchtree/MergingUniqueIterator.class b/build/_compileJava_2/net/minecraft/client/searchtree/MergingUniqueIterator.class new file mode 100644 index 000000000..f0deee880 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/searchtree/MergingUniqueIterator.class differ diff --git a/build/_compileJava_2/net/minecraft/client/searchtree/PlainTextSearchTree.class b/build/_compileJava_2/net/minecraft/client/searchtree/PlainTextSearchTree.class new file mode 100644 index 000000000..b3e2c2d32 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/searchtree/PlainTextSearchTree.class differ diff --git a/build/_compileJava_2/net/minecraft/client/searchtree/RefreshableSearchTree.class b/build/_compileJava_2/net/minecraft/client/searchtree/RefreshableSearchTree.class new file mode 100644 index 000000000..1446e0357 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/searchtree/RefreshableSearchTree.class differ diff --git a/build/_compileJava_2/net/minecraft/client/searchtree/ResourceLocationSearchTree$1.class b/build/_compileJava_2/net/minecraft/client/searchtree/ResourceLocationSearchTree$1.class new file mode 100644 index 000000000..afc48ae1c Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/searchtree/ResourceLocationSearchTree$1.class differ diff --git a/build/_compileJava_2/net/minecraft/client/searchtree/ResourceLocationSearchTree$2.class b/build/_compileJava_2/net/minecraft/client/searchtree/ResourceLocationSearchTree$2.class new file mode 100644 index 000000000..2ea110ed3 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/searchtree/ResourceLocationSearchTree$2.class differ diff --git a/build/_compileJava_2/net/minecraft/client/searchtree/ResourceLocationSearchTree.class b/build/_compileJava_2/net/minecraft/client/searchtree/ResourceLocationSearchTree.class new file mode 100644 index 000000000..10cd2f682 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/searchtree/ResourceLocationSearchTree.class differ diff --git a/build/_compileJava_2/net/minecraft/client/searchtree/SearchRegistry$Key.class b/build/_compileJava_2/net/minecraft/client/searchtree/SearchRegistry$Key.class new file mode 100644 index 000000000..2cf5a64da Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/searchtree/SearchRegistry$Key.class differ diff --git a/build/_compileJava_2/net/minecraft/client/searchtree/SearchRegistry$TreeBuilderSupplier.class b/build/_compileJava_2/net/minecraft/client/searchtree/SearchRegistry$TreeBuilderSupplier.class new file mode 100644 index 000000000..88fc9a8cb Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/searchtree/SearchRegistry$TreeBuilderSupplier.class differ diff --git a/build/_compileJava_2/net/minecraft/client/searchtree/SearchRegistry$TreeEntry.class b/build/_compileJava_2/net/minecraft/client/searchtree/SearchRegistry$TreeEntry.class new file mode 100644 index 000000000..65173274f Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/searchtree/SearchRegistry$TreeEntry.class differ diff --git a/build/_compileJava_2/net/minecraft/client/searchtree/SearchRegistry.class b/build/_compileJava_2/net/minecraft/client/searchtree/SearchRegistry.class new file mode 100644 index 000000000..16cdd7396 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/searchtree/SearchRegistry.class differ diff --git a/build/_compileJava_2/net/minecraft/client/searchtree/SearchTree.class b/build/_compileJava_2/net/minecraft/client/searchtree/SearchTree.class new file mode 100644 index 000000000..bd0a7bab9 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/searchtree/SearchTree.class differ diff --git a/build/_compileJava_2/net/minecraft/client/searchtree/SuffixArray.class b/build/_compileJava_2/net/minecraft/client/searchtree/SuffixArray.class new file mode 100644 index 000000000..0cdb80d15 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/searchtree/SuffixArray.class differ diff --git a/build/_compileJava_2/net/minecraft/client/searchtree/package-info.class b/build/_compileJava_2/net/minecraft/client/searchtree/package-info.class new file mode 100644 index 000000000..82d1cd36d Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/searchtree/package-info.class differ diff --git a/build/_compileJava_2/net/minecraft/client/server/IntegratedPlayerList.class b/build/_compileJava_2/net/minecraft/client/server/IntegratedPlayerList.class new file mode 100644 index 000000000..cd7ba4425 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/server/IntegratedPlayerList.class differ diff --git a/build/_compileJava_2/net/minecraft/client/server/IntegratedServer.class b/build/_compileJava_2/net/minecraft/client/server/IntegratedServer.class new file mode 100644 index 000000000..e717b418f Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/server/IntegratedServer.class differ diff --git a/build/_compileJava_2/net/minecraft/client/server/LanServer.class b/build/_compileJava_2/net/minecraft/client/server/LanServer.class new file mode 100644 index 000000000..2f11ffdca Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/server/LanServer.class differ diff --git a/build/_compileJava_2/net/minecraft/client/server/LanServerDetection$LanServerDetector.class b/build/_compileJava_2/net/minecraft/client/server/LanServerDetection$LanServerDetector.class new file mode 100644 index 000000000..10929725e Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/server/LanServerDetection$LanServerDetector.class differ diff --git a/build/_compileJava_2/net/minecraft/client/server/LanServerDetection$LanServerList.class b/build/_compileJava_2/net/minecraft/client/server/LanServerDetection$LanServerList.class new file mode 100644 index 000000000..f32235a1a Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/server/LanServerDetection$LanServerList.class differ diff --git a/build/_compileJava_2/net/minecraft/client/server/LanServerDetection.class b/build/_compileJava_2/net/minecraft/client/server/LanServerDetection.class new file mode 100644 index 000000000..c165ab6ec Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/server/LanServerDetection.class differ diff --git a/build/_compileJava_2/net/minecraft/client/server/LanServerPinger.class b/build/_compileJava_2/net/minecraft/client/server/LanServerPinger.class new file mode 100644 index 000000000..96ba9f5ec Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/server/LanServerPinger.class differ diff --git a/build/_compileJava_2/net/minecraft/client/server/package-info.class b/build/_compileJava_2/net/minecraft/client/server/package-info.class new file mode 100644 index 000000000..89e28424c Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/server/package-info.class differ diff --git a/build/_compileJava_2/net/minecraft/client/sounds/AudioStream.class b/build/_compileJava_2/net/minecraft/client/sounds/AudioStream.class new file mode 100644 index 000000000..c677fbf1e Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/sounds/AudioStream.class differ diff --git a/build/_compileJava_2/net/minecraft/client/sounds/ChannelAccess$ChannelHandle.class b/build/_compileJava_2/net/minecraft/client/sounds/ChannelAccess$ChannelHandle.class new file mode 100644 index 000000000..240ba05c0 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/sounds/ChannelAccess$ChannelHandle.class differ diff --git a/build/_compileJava_2/net/minecraft/client/sounds/ChannelAccess.class b/build/_compileJava_2/net/minecraft/client/sounds/ChannelAccess.class new file mode 100644 index 000000000..59ffdb632 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/sounds/ChannelAccess.class differ diff --git a/build/_compileJava_2/net/minecraft/client/sounds/LoopingAudioStream$AudioStreamProvider.class b/build/_compileJava_2/net/minecraft/client/sounds/LoopingAudioStream$AudioStreamProvider.class new file mode 100644 index 000000000..203b42152 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/sounds/LoopingAudioStream$AudioStreamProvider.class differ diff --git a/build/_compileJava_2/net/minecraft/client/sounds/LoopingAudioStream$NoCloseBuffer.class b/build/_compileJava_2/net/minecraft/client/sounds/LoopingAudioStream$NoCloseBuffer.class new file mode 100644 index 000000000..5cbfd455c Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/sounds/LoopingAudioStream$NoCloseBuffer.class differ diff --git a/build/_compileJava_2/net/minecraft/client/sounds/LoopingAudioStream.class b/build/_compileJava_2/net/minecraft/client/sounds/LoopingAudioStream.class new file mode 100644 index 000000000..d8e171527 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/sounds/LoopingAudioStream.class differ diff --git a/build/_compileJava_2/net/minecraft/client/sounds/MusicManager.class b/build/_compileJava_2/net/minecraft/client/sounds/MusicManager.class new file mode 100644 index 000000000..76f06a121 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/sounds/MusicManager.class differ diff --git a/build/_compileJava_2/net/minecraft/client/sounds/SoundBufferLibrary.class b/build/_compileJava_2/net/minecraft/client/sounds/SoundBufferLibrary.class new file mode 100644 index 000000000..a6ec4987c Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/sounds/SoundBufferLibrary.class differ diff --git a/build/_compileJava_2/net/minecraft/client/sounds/SoundEngine$DeviceCheckState.class b/build/_compileJava_2/net/minecraft/client/sounds/SoundEngine$DeviceCheckState.class new file mode 100644 index 000000000..0e1df347e Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/sounds/SoundEngine$DeviceCheckState.class differ diff --git a/build/_compileJava_2/net/minecraft/client/sounds/SoundEngine.class b/build/_compileJava_2/net/minecraft/client/sounds/SoundEngine.class new file mode 100644 index 000000000..91c89b1b4 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/sounds/SoundEngine.class differ diff --git a/build/_compileJava_2/net/minecraft/client/sounds/SoundEngineExecutor.class b/build/_compileJava_2/net/minecraft/client/sounds/SoundEngineExecutor.class new file mode 100644 index 000000000..3b7d3baa4 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/sounds/SoundEngineExecutor.class differ diff --git a/build/_compileJava_2/net/minecraft/client/sounds/SoundEventListener.class b/build/_compileJava_2/net/minecraft/client/sounds/SoundEventListener.class new file mode 100644 index 000000000..04a2146e2 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/sounds/SoundEventListener.class differ diff --git a/build/_compileJava_2/net/minecraft/client/sounds/SoundManager$1.class b/build/_compileJava_2/net/minecraft/client/sounds/SoundManager$1.class new file mode 100644 index 000000000..91d04d020 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/sounds/SoundManager$1.class differ diff --git a/build/_compileJava_2/net/minecraft/client/sounds/SoundManager$2.class b/build/_compileJava_2/net/minecraft/client/sounds/SoundManager$2.class new file mode 100644 index 000000000..f3c960f35 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/sounds/SoundManager$2.class differ diff --git a/build/_compileJava_2/net/minecraft/client/sounds/SoundManager$Preparations$1.class b/build/_compileJava_2/net/minecraft/client/sounds/SoundManager$Preparations$1.class new file mode 100644 index 000000000..0b86f2fc0 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/sounds/SoundManager$Preparations$1.class differ diff --git a/build/_compileJava_2/net/minecraft/client/sounds/SoundManager$Preparations.class b/build/_compileJava_2/net/minecraft/client/sounds/SoundManager$Preparations.class new file mode 100644 index 000000000..987bb04a7 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/sounds/SoundManager$Preparations.class differ diff --git a/build/_compileJava_2/net/minecraft/client/sounds/SoundManager.class b/build/_compileJava_2/net/minecraft/client/sounds/SoundManager.class new file mode 100644 index 000000000..1f4b86cd7 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/sounds/SoundManager.class differ diff --git a/build/_compileJava_2/net/minecraft/client/sounds/WeighedSoundEvents.class b/build/_compileJava_2/net/minecraft/client/sounds/WeighedSoundEvents.class new file mode 100644 index 000000000..c291b152a Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/sounds/WeighedSoundEvents.class differ diff --git a/build/_compileJava_2/net/minecraft/client/sounds/Weighted.class b/build/_compileJava_2/net/minecraft/client/sounds/Weighted.class new file mode 100644 index 000000000..d66875a26 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/sounds/Weighted.class differ diff --git a/build/_compileJava_2/net/minecraft/client/sounds/package-info.class b/build/_compileJava_2/net/minecraft/client/sounds/package-info.class new file mode 100644 index 000000000..71b8a5378 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/sounds/package-info.class differ diff --git a/build/_compileJava_2/net/minecraft/client/telemetry/ClientTelemetryManager.class b/build/_compileJava_2/net/minecraft/client/telemetry/ClientTelemetryManager.class new file mode 100644 index 000000000..aa1aa788f Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/telemetry/ClientTelemetryManager.class differ diff --git a/build/_compileJava_2/net/minecraft/client/telemetry/TelemetryEventInstance.class b/build/_compileJava_2/net/minecraft/client/telemetry/TelemetryEventInstance.class new file mode 100644 index 000000000..c86ffbebf Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/telemetry/TelemetryEventInstance.class differ diff --git a/build/_compileJava_2/net/minecraft/client/telemetry/TelemetryEventLog.class b/build/_compileJava_2/net/minecraft/client/telemetry/TelemetryEventLog.class new file mode 100644 index 000000000..a5228e1cb Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/telemetry/TelemetryEventLog.class differ diff --git a/build/_compileJava_2/net/minecraft/client/telemetry/TelemetryEventLogger.class b/build/_compileJava_2/net/minecraft/client/telemetry/TelemetryEventLogger.class new file mode 100644 index 000000000..117e29a64 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/telemetry/TelemetryEventLogger.class differ diff --git a/build/_compileJava_2/net/minecraft/client/telemetry/TelemetryEventSender.class b/build/_compileJava_2/net/minecraft/client/telemetry/TelemetryEventSender.class new file mode 100644 index 000000000..c15ed8485 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/telemetry/TelemetryEventSender.class differ diff --git a/build/_compileJava_2/net/minecraft/client/telemetry/TelemetryEventType$Builder.class b/build/_compileJava_2/net/minecraft/client/telemetry/TelemetryEventType$Builder.class new file mode 100644 index 000000000..7e5bd2f02 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/telemetry/TelemetryEventType$Builder.class differ diff --git a/build/_compileJava_2/net/minecraft/client/telemetry/TelemetryEventType.class b/build/_compileJava_2/net/minecraft/client/telemetry/TelemetryEventType.class new file mode 100644 index 000000000..3abb973d7 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/telemetry/TelemetryEventType.class differ diff --git a/build/_compileJava_2/net/minecraft/client/telemetry/TelemetryLogManager.class b/build/_compileJava_2/net/minecraft/client/telemetry/TelemetryLogManager.class new file mode 100644 index 000000000..0e43bb477 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/telemetry/TelemetryLogManager.class differ diff --git a/build/_compileJava_2/net/minecraft/client/telemetry/TelemetryProperty$Exporter.class b/build/_compileJava_2/net/minecraft/client/telemetry/TelemetryProperty$Exporter.class new file mode 100644 index 000000000..02e7d11eb Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/telemetry/TelemetryProperty$Exporter.class differ diff --git a/build/_compileJava_2/net/minecraft/client/telemetry/TelemetryProperty$GameMode.class b/build/_compileJava_2/net/minecraft/client/telemetry/TelemetryProperty$GameMode.class new file mode 100644 index 000000000..1fa05450f Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/telemetry/TelemetryProperty$GameMode.class differ diff --git a/build/_compileJava_2/net/minecraft/client/telemetry/TelemetryProperty$ServerType.class b/build/_compileJava_2/net/minecraft/client/telemetry/TelemetryProperty$ServerType.class new file mode 100644 index 000000000..ce77227c5 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/telemetry/TelemetryProperty$ServerType.class differ diff --git a/build/_compileJava_2/net/minecraft/client/telemetry/TelemetryProperty.class b/build/_compileJava_2/net/minecraft/client/telemetry/TelemetryProperty.class new file mode 100644 index 000000000..04595ae3a Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/telemetry/TelemetryProperty.class differ diff --git a/build/_compileJava_2/net/minecraft/client/telemetry/TelemetryPropertyMap$1.class b/build/_compileJava_2/net/minecraft/client/telemetry/TelemetryPropertyMap$1.class new file mode 100644 index 000000000..8119b9f6f Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/telemetry/TelemetryPropertyMap$1.class differ diff --git a/build/_compileJava_2/net/minecraft/client/telemetry/TelemetryPropertyMap$Builder.class b/build/_compileJava_2/net/minecraft/client/telemetry/TelemetryPropertyMap$Builder.class new file mode 100644 index 000000000..cdff02c7e Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/telemetry/TelemetryPropertyMap$Builder.class differ diff --git a/build/_compileJava_2/net/minecraft/client/telemetry/TelemetryPropertyMap.class b/build/_compileJava_2/net/minecraft/client/telemetry/TelemetryPropertyMap.class new file mode 100644 index 000000000..0590bbf16 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/telemetry/TelemetryPropertyMap.class differ diff --git a/build/_compileJava_2/net/minecraft/client/telemetry/WorldSessionTelemetryManager.class b/build/_compileJava_2/net/minecraft/client/telemetry/WorldSessionTelemetryManager.class new file mode 100644 index 000000000..1ca9339a7 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/telemetry/WorldSessionTelemetryManager.class differ diff --git a/build/_compileJava_2/net/minecraft/client/telemetry/events/AggregatedTelemetryEvent.class b/build/_compileJava_2/net/minecraft/client/telemetry/events/AggregatedTelemetryEvent.class new file mode 100644 index 000000000..98082a05b Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/telemetry/events/AggregatedTelemetryEvent.class differ diff --git a/build/_compileJava_2/net/minecraft/client/telemetry/events/GameLoadTimesEvent$Measurement.class b/build/_compileJava_2/net/minecraft/client/telemetry/events/GameLoadTimesEvent$Measurement.class new file mode 100644 index 000000000..a1554a3da Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/telemetry/events/GameLoadTimesEvent$Measurement.class differ diff --git a/build/_compileJava_2/net/minecraft/client/telemetry/events/GameLoadTimesEvent.class b/build/_compileJava_2/net/minecraft/client/telemetry/events/GameLoadTimesEvent.class new file mode 100644 index 000000000..96d6634ef Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/telemetry/events/GameLoadTimesEvent.class differ diff --git a/build/_compileJava_2/net/minecraft/client/telemetry/events/PerformanceMetricsEvent.class b/build/_compileJava_2/net/minecraft/client/telemetry/events/PerformanceMetricsEvent.class new file mode 100644 index 000000000..301ab1b02 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/telemetry/events/PerformanceMetricsEvent.class differ diff --git a/build/_compileJava_2/net/minecraft/client/telemetry/events/WorldLoadEvent$1.class b/build/_compileJava_2/net/minecraft/client/telemetry/events/WorldLoadEvent$1.class new file mode 100644 index 000000000..e3b374361 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/telemetry/events/WorldLoadEvent$1.class differ diff --git a/build/_compileJava_2/net/minecraft/client/telemetry/events/WorldLoadEvent.class b/build/_compileJava_2/net/minecraft/client/telemetry/events/WorldLoadEvent.class new file mode 100644 index 000000000..6a6f0e3aa Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/telemetry/events/WorldLoadEvent.class differ diff --git a/build/_compileJava_2/net/minecraft/client/telemetry/events/WorldLoadTimesEvent.class b/build/_compileJava_2/net/minecraft/client/telemetry/events/WorldLoadTimesEvent.class new file mode 100644 index 000000000..1d36a9d51 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/telemetry/events/WorldLoadTimesEvent.class differ diff --git a/build/_compileJava_2/net/minecraft/client/telemetry/events/WorldUnloadEvent.class b/build/_compileJava_2/net/minecraft/client/telemetry/events/WorldUnloadEvent.class new file mode 100644 index 000000000..73e898a97 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/telemetry/events/WorldUnloadEvent.class differ diff --git a/build/_compileJava_2/net/minecraft/client/telemetry/events/package-info.class b/build/_compileJava_2/net/minecraft/client/telemetry/events/package-info.class new file mode 100644 index 000000000..96db3908e Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/telemetry/events/package-info.class differ diff --git a/build/_compileJava_2/net/minecraft/client/telemetry/package-info.class b/build/_compileJava_2/net/minecraft/client/telemetry/package-info.class new file mode 100644 index 000000000..946441a95 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/telemetry/package-info.class differ diff --git a/build/_compileJava_2/net/minecraft/client/tutorial/BundleTutorial.class b/build/_compileJava_2/net/minecraft/client/tutorial/BundleTutorial.class new file mode 100644 index 000000000..26b5ee744 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/tutorial/BundleTutorial.class differ diff --git a/build/_compileJava_2/net/minecraft/client/tutorial/CompletedTutorialStepInstance.class b/build/_compileJava_2/net/minecraft/client/tutorial/CompletedTutorialStepInstance.class new file mode 100644 index 000000000..d7fba7c65 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/tutorial/CompletedTutorialStepInstance.class differ diff --git a/build/_compileJava_2/net/minecraft/client/tutorial/CraftPlanksTutorialStep.class b/build/_compileJava_2/net/minecraft/client/tutorial/CraftPlanksTutorialStep.class new file mode 100644 index 000000000..b76ec8aad Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/tutorial/CraftPlanksTutorialStep.class differ diff --git a/build/_compileJava_2/net/minecraft/client/tutorial/FindTreeTutorialStepInstance.class b/build/_compileJava_2/net/minecraft/client/tutorial/FindTreeTutorialStepInstance.class new file mode 100644 index 000000000..cc679e34c Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/tutorial/FindTreeTutorialStepInstance.class differ diff --git a/build/_compileJava_2/net/minecraft/client/tutorial/MovementTutorialStepInstance.class b/build/_compileJava_2/net/minecraft/client/tutorial/MovementTutorialStepInstance.class new file mode 100644 index 000000000..03dedad7a Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/tutorial/MovementTutorialStepInstance.class differ diff --git a/build/_compileJava_2/net/minecraft/client/tutorial/OpenInventoryTutorialStep.class b/build/_compileJava_2/net/minecraft/client/tutorial/OpenInventoryTutorialStep.class new file mode 100644 index 000000000..c2db7bfad Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/tutorial/OpenInventoryTutorialStep.class differ diff --git a/build/_compileJava_2/net/minecraft/client/tutorial/PunchTreeTutorialStepInstance.class b/build/_compileJava_2/net/minecraft/client/tutorial/PunchTreeTutorialStepInstance.class new file mode 100644 index 000000000..beefd2b7f Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/tutorial/PunchTreeTutorialStepInstance.class differ diff --git a/build/_compileJava_2/net/minecraft/client/tutorial/Tutorial$TimedToast.class b/build/_compileJava_2/net/minecraft/client/tutorial/Tutorial$TimedToast.class new file mode 100644 index 000000000..2bca2ba73 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/tutorial/Tutorial$TimedToast.class differ diff --git a/build/_compileJava_2/net/minecraft/client/tutorial/Tutorial.class b/build/_compileJava_2/net/minecraft/client/tutorial/Tutorial.class new file mode 100644 index 000000000..fd57020bb Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/tutorial/Tutorial.class differ diff --git a/build/_compileJava_2/net/minecraft/client/tutorial/TutorialStepInstance.class b/build/_compileJava_2/net/minecraft/client/tutorial/TutorialStepInstance.class new file mode 100644 index 000000000..bf43218b0 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/tutorial/TutorialStepInstance.class differ diff --git a/build/_compileJava_2/net/minecraft/client/tutorial/TutorialSteps.class b/build/_compileJava_2/net/minecraft/client/tutorial/TutorialSteps.class new file mode 100644 index 000000000..4b68c88b1 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/tutorial/TutorialSteps.class differ diff --git a/build/_compileJava_2/net/minecraft/client/tutorial/package-info.class b/build/_compileJava_2/net/minecraft/client/tutorial/package-info.class new file mode 100644 index 000000000..0020254ea Binary files /dev/null and b/build/_compileJava_2/net/minecraft/client/tutorial/package-info.class differ diff --git a/build/_compileJava_2/net/minecraft/commands/BrigadierExceptions.class b/build/_compileJava_2/net/minecraft/commands/BrigadierExceptions.class new file mode 100644 index 000000000..cb4ad2352 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/commands/BrigadierExceptions.class differ diff --git a/build/_compileJava_2/net/minecraft/commands/CommandBuildContext$1.class b/build/_compileJava_2/net/minecraft/commands/CommandBuildContext$1.class new file mode 100644 index 000000000..551aae4b1 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/commands/CommandBuildContext$1.class differ diff --git a/build/_compileJava_2/net/minecraft/commands/CommandBuildContext$2$1.class b/build/_compileJava_2/net/minecraft/commands/CommandBuildContext$2$1.class new file mode 100644 index 000000000..da4d127c0 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/commands/CommandBuildContext$2$1.class differ diff --git a/build/_compileJava_2/net/minecraft/commands/CommandBuildContext$2.class b/build/_compileJava_2/net/minecraft/commands/CommandBuildContext$2.class new file mode 100644 index 000000000..c3ce2f66f Binary files /dev/null and b/build/_compileJava_2/net/minecraft/commands/CommandBuildContext$2.class differ diff --git a/build/_compileJava_2/net/minecraft/commands/CommandBuildContext$3.class b/build/_compileJava_2/net/minecraft/commands/CommandBuildContext$3.class new file mode 100644 index 000000000..232fda029 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/commands/CommandBuildContext$3.class differ diff --git a/build/_compileJava_2/net/minecraft/commands/CommandBuildContext$Configurable.class b/build/_compileJava_2/net/minecraft/commands/CommandBuildContext$Configurable.class new file mode 100644 index 000000000..fac6f4dea Binary files /dev/null and b/build/_compileJava_2/net/minecraft/commands/CommandBuildContext$Configurable.class differ diff --git a/build/_compileJava_2/net/minecraft/commands/CommandBuildContext$MissingTagAccessPolicy.class b/build/_compileJava_2/net/minecraft/commands/CommandBuildContext$MissingTagAccessPolicy.class new file mode 100644 index 000000000..4d2b4ce00 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/commands/CommandBuildContext$MissingTagAccessPolicy.class differ diff --git a/build/_compileJava_2/net/minecraft/commands/CommandBuildContext.class b/build/_compileJava_2/net/minecraft/commands/CommandBuildContext.class new file mode 100644 index 000000000..334e8a342 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/commands/CommandBuildContext.class differ diff --git a/build/_compileJava_2/net/minecraft/commands/CommandFunction$CacheableFunction.class b/build/_compileJava_2/net/minecraft/commands/CommandFunction$CacheableFunction.class new file mode 100644 index 000000000..2d9b238df Binary files /dev/null and b/build/_compileJava_2/net/minecraft/commands/CommandFunction$CacheableFunction.class differ diff --git a/build/_compileJava_2/net/minecraft/commands/CommandFunction$CommandEntry.class b/build/_compileJava_2/net/minecraft/commands/CommandFunction$CommandEntry.class new file mode 100644 index 000000000..61d70d108 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/commands/CommandFunction$CommandEntry.class differ diff --git a/build/_compileJava_2/net/minecraft/commands/CommandFunction$Entry.class b/build/_compileJava_2/net/minecraft/commands/CommandFunction$Entry.class new file mode 100644 index 000000000..1830aa355 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/commands/CommandFunction$Entry.class differ diff --git a/build/_compileJava_2/net/minecraft/commands/CommandFunction$FunctionEntry.class b/build/_compileJava_2/net/minecraft/commands/CommandFunction$FunctionEntry.class new file mode 100644 index 000000000..ff133c1e9 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/commands/CommandFunction$FunctionEntry.class differ diff --git a/build/_compileJava_2/net/minecraft/commands/CommandFunction.class b/build/_compileJava_2/net/minecraft/commands/CommandFunction.class new file mode 100644 index 000000000..d44d61748 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/commands/CommandFunction.class differ diff --git a/build/_compileJava_2/net/minecraft/commands/CommandRuntimeException.class b/build/_compileJava_2/net/minecraft/commands/CommandRuntimeException.class new file mode 100644 index 000000000..3ac9cea52 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/commands/CommandRuntimeException.class differ diff --git a/build/_compileJava_2/net/minecraft/commands/CommandSigningContext$1.class b/build/_compileJava_2/net/minecraft/commands/CommandSigningContext$1.class new file mode 100644 index 000000000..e0b8ece4a Binary files /dev/null and b/build/_compileJava_2/net/minecraft/commands/CommandSigningContext$1.class differ diff --git a/build/_compileJava_2/net/minecraft/commands/CommandSigningContext$SignedArguments.class b/build/_compileJava_2/net/minecraft/commands/CommandSigningContext$SignedArguments.class new file mode 100644 index 000000000..48b19f74a Binary files /dev/null and b/build/_compileJava_2/net/minecraft/commands/CommandSigningContext$SignedArguments.class differ diff --git a/build/_compileJava_2/net/minecraft/commands/CommandSigningContext.class b/build/_compileJava_2/net/minecraft/commands/CommandSigningContext.class new file mode 100644 index 000000000..14569aec7 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/commands/CommandSigningContext.class differ diff --git a/build/_compileJava_2/net/minecraft/commands/CommandSource$1.class b/build/_compileJava_2/net/minecraft/commands/CommandSource$1.class new file mode 100644 index 000000000..9118de86b Binary files /dev/null and b/build/_compileJava_2/net/minecraft/commands/CommandSource$1.class differ diff --git a/build/_compileJava_2/net/minecraft/commands/CommandSource.class b/build/_compileJava_2/net/minecraft/commands/CommandSource.class new file mode 100644 index 000000000..0488e4920 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/commands/CommandSource.class differ diff --git a/build/_compileJava_2/net/minecraft/commands/CommandSourceStack.class b/build/_compileJava_2/net/minecraft/commands/CommandSourceStack.class new file mode 100644 index 000000000..9676876c5 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/commands/CommandSourceStack.class differ diff --git a/build/_compileJava_2/net/minecraft/commands/Commands$1$1.class b/build/_compileJava_2/net/minecraft/commands/Commands$1$1.class new file mode 100644 index 000000000..ba8d72474 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/commands/Commands$1$1.class differ diff --git a/build/_compileJava_2/net/minecraft/commands/Commands$1.class b/build/_compileJava_2/net/minecraft/commands/Commands$1.class new file mode 100644 index 000000000..9d216e419 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/commands/Commands$1.class differ diff --git a/build/_compileJava_2/net/minecraft/commands/Commands$CommandSelection.class b/build/_compileJava_2/net/minecraft/commands/Commands$CommandSelection.class new file mode 100644 index 000000000..ef8f78540 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/commands/Commands$CommandSelection.class differ diff --git a/build/_compileJava_2/net/minecraft/commands/Commands$ParseFunction.class b/build/_compileJava_2/net/minecraft/commands/Commands$ParseFunction.class new file mode 100644 index 000000000..25b74ffb4 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/commands/Commands$ParseFunction.class differ diff --git a/build/_compileJava_2/net/minecraft/commands/Commands.class b/build/_compileJava_2/net/minecraft/commands/Commands.class new file mode 100644 index 000000000..ffa89ac99 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/commands/Commands.class differ diff --git a/build/_compileJava_2/net/minecraft/commands/SharedSuggestionProvider$ElementSuggestionType.class b/build/_compileJava_2/net/minecraft/commands/SharedSuggestionProvider$ElementSuggestionType.class new file mode 100644 index 000000000..cd5a42eda Binary files /dev/null and b/build/_compileJava_2/net/minecraft/commands/SharedSuggestionProvider$ElementSuggestionType.class differ diff --git a/build/_compileJava_2/net/minecraft/commands/SharedSuggestionProvider$TextCoordinates.class b/build/_compileJava_2/net/minecraft/commands/SharedSuggestionProvider$TextCoordinates.class new file mode 100644 index 000000000..d205ea864 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/commands/SharedSuggestionProvider$TextCoordinates.class differ diff --git a/build/_compileJava_2/net/minecraft/commands/SharedSuggestionProvider.class b/build/_compileJava_2/net/minecraft/commands/SharedSuggestionProvider.class new file mode 100644 index 000000000..d18a774a5 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/commands/SharedSuggestionProvider.class differ diff --git a/build/_compileJava_2/net/minecraft/commands/arguments/AngleArgument$SingleAngle.class b/build/_compileJava_2/net/minecraft/commands/arguments/AngleArgument$SingleAngle.class new file mode 100644 index 000000000..a5ce8972a Binary files /dev/null and b/build/_compileJava_2/net/minecraft/commands/arguments/AngleArgument$SingleAngle.class differ diff --git a/build/_compileJava_2/net/minecraft/commands/arguments/AngleArgument.class b/build/_compileJava_2/net/minecraft/commands/arguments/AngleArgument.class new file mode 100644 index 000000000..3acdfe81a Binary files /dev/null and b/build/_compileJava_2/net/minecraft/commands/arguments/AngleArgument.class differ diff --git a/build/_compileJava_2/net/minecraft/commands/arguments/ArgumentSignatures$Entry.class b/build/_compileJava_2/net/minecraft/commands/arguments/ArgumentSignatures$Entry.class new file mode 100644 index 000000000..d8f6d9b9c Binary files /dev/null and b/build/_compileJava_2/net/minecraft/commands/arguments/ArgumentSignatures$Entry.class differ diff --git a/build/_compileJava_2/net/minecraft/commands/arguments/ArgumentSignatures$Signer.class b/build/_compileJava_2/net/minecraft/commands/arguments/ArgumentSignatures$Signer.class new file mode 100644 index 000000000..908b70a95 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/commands/arguments/ArgumentSignatures$Signer.class differ diff --git a/build/_compileJava_2/net/minecraft/commands/arguments/ArgumentSignatures.class b/build/_compileJava_2/net/minecraft/commands/arguments/ArgumentSignatures.class new file mode 100644 index 000000000..377dbe589 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/commands/arguments/ArgumentSignatures.class differ diff --git a/build/_compileJava_2/net/minecraft/commands/arguments/ColorArgument.class b/build/_compileJava_2/net/minecraft/commands/arguments/ColorArgument.class new file mode 100644 index 000000000..4db414a70 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/commands/arguments/ColorArgument.class differ diff --git a/build/_compileJava_2/net/minecraft/commands/arguments/ComponentArgument.class b/build/_compileJava_2/net/minecraft/commands/arguments/ComponentArgument.class new file mode 100644 index 000000000..2f5207a7e Binary files /dev/null and b/build/_compileJava_2/net/minecraft/commands/arguments/ComponentArgument.class differ diff --git a/build/_compileJava_2/net/minecraft/commands/arguments/CompoundTagArgument.class b/build/_compileJava_2/net/minecraft/commands/arguments/CompoundTagArgument.class new file mode 100644 index 000000000..2ce913207 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/commands/arguments/CompoundTagArgument.class differ diff --git a/build/_compileJava_2/net/minecraft/commands/arguments/DimensionArgument.class b/build/_compileJava_2/net/minecraft/commands/arguments/DimensionArgument.class new file mode 100644 index 000000000..910f08c77 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/commands/arguments/DimensionArgument.class differ diff --git a/build/_compileJava_2/net/minecraft/commands/arguments/EntityAnchorArgument$Anchor.class b/build/_compileJava_2/net/minecraft/commands/arguments/EntityAnchorArgument$Anchor.class new file mode 100644 index 000000000..59ebd8789 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/commands/arguments/EntityAnchorArgument$Anchor.class differ diff --git a/build/_compileJava_2/net/minecraft/commands/arguments/EntityAnchorArgument.class b/build/_compileJava_2/net/minecraft/commands/arguments/EntityAnchorArgument.class new file mode 100644 index 000000000..a28792675 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/commands/arguments/EntityAnchorArgument.class differ diff --git a/build/_compileJava_2/net/minecraft/commands/arguments/EntityArgument$Info$Template.class b/build/_compileJava_2/net/minecraft/commands/arguments/EntityArgument$Info$Template.class new file mode 100644 index 000000000..f13009fd8 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/commands/arguments/EntityArgument$Info$Template.class differ diff --git a/build/_compileJava_2/net/minecraft/commands/arguments/EntityArgument$Info.class b/build/_compileJava_2/net/minecraft/commands/arguments/EntityArgument$Info.class new file mode 100644 index 000000000..20939cc29 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/commands/arguments/EntityArgument$Info.class differ diff --git a/build/_compileJava_2/net/minecraft/commands/arguments/EntityArgument.class b/build/_compileJava_2/net/minecraft/commands/arguments/EntityArgument.class new file mode 100644 index 000000000..c678b924c Binary files /dev/null and b/build/_compileJava_2/net/minecraft/commands/arguments/EntityArgument.class differ diff --git a/build/_compileJava_2/net/minecraft/commands/arguments/GameModeArgument.class b/build/_compileJava_2/net/minecraft/commands/arguments/GameModeArgument.class new file mode 100644 index 000000000..10002f467 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/commands/arguments/GameModeArgument.class differ diff --git a/build/_compileJava_2/net/minecraft/commands/arguments/GameProfileArgument$Result.class b/build/_compileJava_2/net/minecraft/commands/arguments/GameProfileArgument$Result.class new file mode 100644 index 000000000..17e396d0c Binary files /dev/null and b/build/_compileJava_2/net/minecraft/commands/arguments/GameProfileArgument$Result.class differ diff --git a/build/_compileJava_2/net/minecraft/commands/arguments/GameProfileArgument$SelectorResult.class b/build/_compileJava_2/net/minecraft/commands/arguments/GameProfileArgument$SelectorResult.class new file mode 100644 index 000000000..702030dc4 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/commands/arguments/GameProfileArgument$SelectorResult.class differ diff --git a/build/_compileJava_2/net/minecraft/commands/arguments/GameProfileArgument.class b/build/_compileJava_2/net/minecraft/commands/arguments/GameProfileArgument.class new file mode 100644 index 000000000..423f92ba5 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/commands/arguments/GameProfileArgument.class differ diff --git a/build/_compileJava_2/net/minecraft/commands/arguments/HeightmapTypeArgument.class b/build/_compileJava_2/net/minecraft/commands/arguments/HeightmapTypeArgument.class new file mode 100644 index 000000000..e50f04e3a Binary files /dev/null and b/build/_compileJava_2/net/minecraft/commands/arguments/HeightmapTypeArgument.class differ diff --git a/build/_compileJava_2/net/minecraft/commands/arguments/MessageArgument$Message.class b/build/_compileJava_2/net/minecraft/commands/arguments/MessageArgument$Message.class new file mode 100644 index 000000000..d5d01ddbe Binary files /dev/null and b/build/_compileJava_2/net/minecraft/commands/arguments/MessageArgument$Message.class differ diff --git a/build/_compileJava_2/net/minecraft/commands/arguments/MessageArgument$Part.class b/build/_compileJava_2/net/minecraft/commands/arguments/MessageArgument$Part.class new file mode 100644 index 000000000..a8dcaf7f9 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/commands/arguments/MessageArgument$Part.class differ diff --git a/build/_compileJava_2/net/minecraft/commands/arguments/MessageArgument.class b/build/_compileJava_2/net/minecraft/commands/arguments/MessageArgument.class new file mode 100644 index 000000000..13233bd23 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/commands/arguments/MessageArgument.class differ diff --git a/build/_compileJava_2/net/minecraft/commands/arguments/NbtPathArgument$AllElementsNode.class b/build/_compileJava_2/net/minecraft/commands/arguments/NbtPathArgument$AllElementsNode.class new file mode 100644 index 000000000..8ca94d874 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/commands/arguments/NbtPathArgument$AllElementsNode.class differ diff --git a/build/_compileJava_2/net/minecraft/commands/arguments/NbtPathArgument$CompoundChildNode.class b/build/_compileJava_2/net/minecraft/commands/arguments/NbtPathArgument$CompoundChildNode.class new file mode 100644 index 000000000..a33b74580 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/commands/arguments/NbtPathArgument$CompoundChildNode.class differ diff --git a/build/_compileJava_2/net/minecraft/commands/arguments/NbtPathArgument$IndexedElementNode.class b/build/_compileJava_2/net/minecraft/commands/arguments/NbtPathArgument$IndexedElementNode.class new file mode 100644 index 000000000..cff1dd85b Binary files /dev/null and b/build/_compileJava_2/net/minecraft/commands/arguments/NbtPathArgument$IndexedElementNode.class differ diff --git a/build/_compileJava_2/net/minecraft/commands/arguments/NbtPathArgument$MatchElementNode.class b/build/_compileJava_2/net/minecraft/commands/arguments/NbtPathArgument$MatchElementNode.class new file mode 100644 index 000000000..f1012d1ec Binary files /dev/null and b/build/_compileJava_2/net/minecraft/commands/arguments/NbtPathArgument$MatchElementNode.class differ diff --git a/build/_compileJava_2/net/minecraft/commands/arguments/NbtPathArgument$MatchObjectNode.class b/build/_compileJava_2/net/minecraft/commands/arguments/NbtPathArgument$MatchObjectNode.class new file mode 100644 index 000000000..92621fb72 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/commands/arguments/NbtPathArgument$MatchObjectNode.class differ diff --git a/build/_compileJava_2/net/minecraft/commands/arguments/NbtPathArgument$MatchRootObjectNode.class b/build/_compileJava_2/net/minecraft/commands/arguments/NbtPathArgument$MatchRootObjectNode.class new file mode 100644 index 000000000..22e74af05 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/commands/arguments/NbtPathArgument$MatchRootObjectNode.class differ diff --git a/build/_compileJava_2/net/minecraft/commands/arguments/NbtPathArgument$NbtPath.class b/build/_compileJava_2/net/minecraft/commands/arguments/NbtPathArgument$NbtPath.class new file mode 100644 index 000000000..b0ed72bb2 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/commands/arguments/NbtPathArgument$NbtPath.class differ diff --git a/build/_compileJava_2/net/minecraft/commands/arguments/NbtPathArgument$Node.class b/build/_compileJava_2/net/minecraft/commands/arguments/NbtPathArgument$Node.class new file mode 100644 index 000000000..930b4bcb5 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/commands/arguments/NbtPathArgument$Node.class differ diff --git a/build/_compileJava_2/net/minecraft/commands/arguments/NbtPathArgument.class b/build/_compileJava_2/net/minecraft/commands/arguments/NbtPathArgument.class new file mode 100644 index 000000000..f3a84c502 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/commands/arguments/NbtPathArgument.class differ diff --git a/build/_compileJava_2/net/minecraft/commands/arguments/NbtTagArgument.class b/build/_compileJava_2/net/minecraft/commands/arguments/NbtTagArgument.class new file mode 100644 index 000000000..6e94ed80d Binary files /dev/null and b/build/_compileJava_2/net/minecraft/commands/arguments/NbtTagArgument.class differ diff --git a/build/_compileJava_2/net/minecraft/commands/arguments/ObjectiveArgument.class b/build/_compileJava_2/net/minecraft/commands/arguments/ObjectiveArgument.class new file mode 100644 index 000000000..7e3ae7100 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/commands/arguments/ObjectiveArgument.class differ diff --git a/build/_compileJava_2/net/minecraft/commands/arguments/ObjectiveCriteriaArgument.class b/build/_compileJava_2/net/minecraft/commands/arguments/ObjectiveCriteriaArgument.class new file mode 100644 index 000000000..7370c75d8 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/commands/arguments/ObjectiveCriteriaArgument.class differ diff --git a/build/_compileJava_2/net/minecraft/commands/arguments/OperationArgument$Operation.class b/build/_compileJava_2/net/minecraft/commands/arguments/OperationArgument$Operation.class new file mode 100644 index 000000000..2c6c8e701 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/commands/arguments/OperationArgument$Operation.class differ diff --git a/build/_compileJava_2/net/minecraft/commands/arguments/OperationArgument$SimpleOperation.class b/build/_compileJava_2/net/minecraft/commands/arguments/OperationArgument$SimpleOperation.class new file mode 100644 index 000000000..60a16e5c0 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/commands/arguments/OperationArgument$SimpleOperation.class differ diff --git a/build/_compileJava_2/net/minecraft/commands/arguments/OperationArgument.class b/build/_compileJava_2/net/minecraft/commands/arguments/OperationArgument.class new file mode 100644 index 000000000..71fdc2ed9 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/commands/arguments/OperationArgument.class differ diff --git a/build/_compileJava_2/net/minecraft/commands/arguments/ParticleArgument.class b/build/_compileJava_2/net/minecraft/commands/arguments/ParticleArgument.class new file mode 100644 index 000000000..c085242fd Binary files /dev/null and b/build/_compileJava_2/net/minecraft/commands/arguments/ParticleArgument.class differ diff --git a/build/_compileJava_2/net/minecraft/commands/arguments/RangeArgument$Floats.class b/build/_compileJava_2/net/minecraft/commands/arguments/RangeArgument$Floats.class new file mode 100644 index 000000000..d9bf86eed Binary files /dev/null and b/build/_compileJava_2/net/minecraft/commands/arguments/RangeArgument$Floats.class differ diff --git a/build/_compileJava_2/net/minecraft/commands/arguments/RangeArgument$Ints.class b/build/_compileJava_2/net/minecraft/commands/arguments/RangeArgument$Ints.class new file mode 100644 index 000000000..68b5b1d6b Binary files /dev/null and b/build/_compileJava_2/net/minecraft/commands/arguments/RangeArgument$Ints.class differ diff --git a/build/_compileJava_2/net/minecraft/commands/arguments/RangeArgument.class b/build/_compileJava_2/net/minecraft/commands/arguments/RangeArgument.class new file mode 100644 index 000000000..af914c1ba Binary files /dev/null and b/build/_compileJava_2/net/minecraft/commands/arguments/RangeArgument.class differ diff --git a/build/_compileJava_2/net/minecraft/commands/arguments/ResourceArgument$Info$Template.class b/build/_compileJava_2/net/minecraft/commands/arguments/ResourceArgument$Info$Template.class new file mode 100644 index 000000000..024117633 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/commands/arguments/ResourceArgument$Info$Template.class differ diff --git a/build/_compileJava_2/net/minecraft/commands/arguments/ResourceArgument$Info.class b/build/_compileJava_2/net/minecraft/commands/arguments/ResourceArgument$Info.class new file mode 100644 index 000000000..7e26b4788 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/commands/arguments/ResourceArgument$Info.class differ diff --git a/build/_compileJava_2/net/minecraft/commands/arguments/ResourceArgument.class b/build/_compileJava_2/net/minecraft/commands/arguments/ResourceArgument.class new file mode 100644 index 000000000..26f211de6 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/commands/arguments/ResourceArgument.class differ diff --git a/build/_compileJava_2/net/minecraft/commands/arguments/ResourceKeyArgument$Info$Template.class b/build/_compileJava_2/net/minecraft/commands/arguments/ResourceKeyArgument$Info$Template.class new file mode 100644 index 000000000..b20ce4279 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/commands/arguments/ResourceKeyArgument$Info$Template.class differ diff --git a/build/_compileJava_2/net/minecraft/commands/arguments/ResourceKeyArgument$Info.class b/build/_compileJava_2/net/minecraft/commands/arguments/ResourceKeyArgument$Info.class new file mode 100644 index 000000000..673177515 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/commands/arguments/ResourceKeyArgument$Info.class differ diff --git a/build/_compileJava_2/net/minecraft/commands/arguments/ResourceKeyArgument.class b/build/_compileJava_2/net/minecraft/commands/arguments/ResourceKeyArgument.class new file mode 100644 index 000000000..90b533f9e Binary files /dev/null and b/build/_compileJava_2/net/minecraft/commands/arguments/ResourceKeyArgument.class differ diff --git a/build/_compileJava_2/net/minecraft/commands/arguments/ResourceLocationArgument.class b/build/_compileJava_2/net/minecraft/commands/arguments/ResourceLocationArgument.class new file mode 100644 index 000000000..47946bd4a Binary files /dev/null and b/build/_compileJava_2/net/minecraft/commands/arguments/ResourceLocationArgument.class differ diff --git a/build/_compileJava_2/net/minecraft/commands/arguments/ResourceOrTagArgument$Info$Template.class b/build/_compileJava_2/net/minecraft/commands/arguments/ResourceOrTagArgument$Info$Template.class new file mode 100644 index 000000000..07e16c929 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/commands/arguments/ResourceOrTagArgument$Info$Template.class differ diff --git a/build/_compileJava_2/net/minecraft/commands/arguments/ResourceOrTagArgument$Info.class b/build/_compileJava_2/net/minecraft/commands/arguments/ResourceOrTagArgument$Info.class new file mode 100644 index 000000000..7ff19bf74 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/commands/arguments/ResourceOrTagArgument$Info.class differ diff --git a/build/_compileJava_2/net/minecraft/commands/arguments/ResourceOrTagArgument$ResourceResult.class b/build/_compileJava_2/net/minecraft/commands/arguments/ResourceOrTagArgument$ResourceResult.class new file mode 100644 index 000000000..7c6c0f14c Binary files /dev/null and b/build/_compileJava_2/net/minecraft/commands/arguments/ResourceOrTagArgument$ResourceResult.class differ diff --git a/build/_compileJava_2/net/minecraft/commands/arguments/ResourceOrTagArgument$Result.class b/build/_compileJava_2/net/minecraft/commands/arguments/ResourceOrTagArgument$Result.class new file mode 100644 index 000000000..89a2ef657 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/commands/arguments/ResourceOrTagArgument$Result.class differ diff --git a/build/_compileJava_2/net/minecraft/commands/arguments/ResourceOrTagArgument$TagResult.class b/build/_compileJava_2/net/minecraft/commands/arguments/ResourceOrTagArgument$TagResult.class new file mode 100644 index 000000000..83218a8b4 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/commands/arguments/ResourceOrTagArgument$TagResult.class differ diff --git a/build/_compileJava_2/net/minecraft/commands/arguments/ResourceOrTagArgument.class b/build/_compileJava_2/net/minecraft/commands/arguments/ResourceOrTagArgument.class new file mode 100644 index 000000000..9ad488e85 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/commands/arguments/ResourceOrTagArgument.class differ diff --git a/build/_compileJava_2/net/minecraft/commands/arguments/ResourceOrTagKeyArgument$Info$Template.class b/build/_compileJava_2/net/minecraft/commands/arguments/ResourceOrTagKeyArgument$Info$Template.class new file mode 100644 index 000000000..53b9a2804 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/commands/arguments/ResourceOrTagKeyArgument$Info$Template.class differ diff --git a/build/_compileJava_2/net/minecraft/commands/arguments/ResourceOrTagKeyArgument$Info.class b/build/_compileJava_2/net/minecraft/commands/arguments/ResourceOrTagKeyArgument$Info.class new file mode 100644 index 000000000..e57772714 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/commands/arguments/ResourceOrTagKeyArgument$Info.class differ diff --git a/build/_compileJava_2/net/minecraft/commands/arguments/ResourceOrTagKeyArgument$ResourceResult.class b/build/_compileJava_2/net/minecraft/commands/arguments/ResourceOrTagKeyArgument$ResourceResult.class new file mode 100644 index 000000000..87c7354c9 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/commands/arguments/ResourceOrTagKeyArgument$ResourceResult.class differ diff --git a/build/_compileJava_2/net/minecraft/commands/arguments/ResourceOrTagKeyArgument$Result.class b/build/_compileJava_2/net/minecraft/commands/arguments/ResourceOrTagKeyArgument$Result.class new file mode 100644 index 000000000..3f261f86f Binary files /dev/null and b/build/_compileJava_2/net/minecraft/commands/arguments/ResourceOrTagKeyArgument$Result.class differ diff --git a/build/_compileJava_2/net/minecraft/commands/arguments/ResourceOrTagKeyArgument$TagResult.class b/build/_compileJava_2/net/minecraft/commands/arguments/ResourceOrTagKeyArgument$TagResult.class new file mode 100644 index 000000000..75eb7618a Binary files /dev/null and b/build/_compileJava_2/net/minecraft/commands/arguments/ResourceOrTagKeyArgument$TagResult.class differ diff --git a/build/_compileJava_2/net/minecraft/commands/arguments/ResourceOrTagKeyArgument.class b/build/_compileJava_2/net/minecraft/commands/arguments/ResourceOrTagKeyArgument.class new file mode 100644 index 000000000..3806d8cb6 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/commands/arguments/ResourceOrTagKeyArgument.class differ diff --git a/build/_compileJava_2/net/minecraft/commands/arguments/ScoreHolderArgument$Info$Template.class b/build/_compileJava_2/net/minecraft/commands/arguments/ScoreHolderArgument$Info$Template.class new file mode 100644 index 000000000..78d5a246d Binary files /dev/null and b/build/_compileJava_2/net/minecraft/commands/arguments/ScoreHolderArgument$Info$Template.class differ diff --git a/build/_compileJava_2/net/minecraft/commands/arguments/ScoreHolderArgument$Info.class b/build/_compileJava_2/net/minecraft/commands/arguments/ScoreHolderArgument$Info.class new file mode 100644 index 000000000..fcf674353 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/commands/arguments/ScoreHolderArgument$Info.class differ diff --git a/build/_compileJava_2/net/minecraft/commands/arguments/ScoreHolderArgument$Result.class b/build/_compileJava_2/net/minecraft/commands/arguments/ScoreHolderArgument$Result.class new file mode 100644 index 000000000..be83dad5b Binary files /dev/null and b/build/_compileJava_2/net/minecraft/commands/arguments/ScoreHolderArgument$Result.class differ diff --git a/build/_compileJava_2/net/minecraft/commands/arguments/ScoreHolderArgument$SelectorResult.class b/build/_compileJava_2/net/minecraft/commands/arguments/ScoreHolderArgument$SelectorResult.class new file mode 100644 index 000000000..b6135c775 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/commands/arguments/ScoreHolderArgument$SelectorResult.class differ diff --git a/build/_compileJava_2/net/minecraft/commands/arguments/ScoreHolderArgument.class b/build/_compileJava_2/net/minecraft/commands/arguments/ScoreHolderArgument.class new file mode 100644 index 000000000..1b9634ab6 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/commands/arguments/ScoreHolderArgument.class differ diff --git a/build/_compileJava_2/net/minecraft/commands/arguments/ScoreboardSlotArgument.class b/build/_compileJava_2/net/minecraft/commands/arguments/ScoreboardSlotArgument.class new file mode 100644 index 000000000..6ac78ecd2 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/commands/arguments/ScoreboardSlotArgument.class differ diff --git a/build/_compileJava_2/net/minecraft/commands/arguments/SignedArgument.class b/build/_compileJava_2/net/minecraft/commands/arguments/SignedArgument.class new file mode 100644 index 000000000..88db415fd Binary files /dev/null and b/build/_compileJava_2/net/minecraft/commands/arguments/SignedArgument.class differ diff --git a/build/_compileJava_2/net/minecraft/commands/arguments/SlotArgument.class b/build/_compileJava_2/net/minecraft/commands/arguments/SlotArgument.class new file mode 100644 index 000000000..9623bf9ef Binary files /dev/null and b/build/_compileJava_2/net/minecraft/commands/arguments/SlotArgument.class differ diff --git a/build/_compileJava_2/net/minecraft/commands/arguments/StringRepresentableArgument.class b/build/_compileJava_2/net/minecraft/commands/arguments/StringRepresentableArgument.class new file mode 100644 index 000000000..5badde7b8 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/commands/arguments/StringRepresentableArgument.class differ diff --git a/build/_compileJava_2/net/minecraft/commands/arguments/TeamArgument.class b/build/_compileJava_2/net/minecraft/commands/arguments/TeamArgument.class new file mode 100644 index 000000000..6fd28f772 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/commands/arguments/TeamArgument.class differ diff --git a/build/_compileJava_2/net/minecraft/commands/arguments/TemplateMirrorArgument.class b/build/_compileJava_2/net/minecraft/commands/arguments/TemplateMirrorArgument.class new file mode 100644 index 000000000..e58b14298 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/commands/arguments/TemplateMirrorArgument.class differ diff --git a/build/_compileJava_2/net/minecraft/commands/arguments/TemplateRotationArgument.class b/build/_compileJava_2/net/minecraft/commands/arguments/TemplateRotationArgument.class new file mode 100644 index 000000000..7751ee139 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/commands/arguments/TemplateRotationArgument.class differ diff --git a/build/_compileJava_2/net/minecraft/commands/arguments/TimeArgument$Info$Template.class b/build/_compileJava_2/net/minecraft/commands/arguments/TimeArgument$Info$Template.class new file mode 100644 index 000000000..ef9e59c97 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/commands/arguments/TimeArgument$Info$Template.class differ diff --git a/build/_compileJava_2/net/minecraft/commands/arguments/TimeArgument$Info.class b/build/_compileJava_2/net/minecraft/commands/arguments/TimeArgument$Info.class new file mode 100644 index 000000000..0d7b5c544 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/commands/arguments/TimeArgument$Info.class differ diff --git a/build/_compileJava_2/net/minecraft/commands/arguments/TimeArgument.class b/build/_compileJava_2/net/minecraft/commands/arguments/TimeArgument.class new file mode 100644 index 000000000..a25d81da7 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/commands/arguments/TimeArgument.class differ diff --git a/build/_compileJava_2/net/minecraft/commands/arguments/UuidArgument.class b/build/_compileJava_2/net/minecraft/commands/arguments/UuidArgument.class new file mode 100644 index 000000000..6fa38eda5 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/commands/arguments/UuidArgument.class differ diff --git a/build/_compileJava_2/net/minecraft/commands/arguments/blocks/BlockInput.class b/build/_compileJava_2/net/minecraft/commands/arguments/blocks/BlockInput.class new file mode 100644 index 000000000..1c22cd74d Binary files /dev/null and b/build/_compileJava_2/net/minecraft/commands/arguments/blocks/BlockInput.class differ diff --git a/build/_compileJava_2/net/minecraft/commands/arguments/blocks/BlockPredicateArgument$BlockPredicate.class b/build/_compileJava_2/net/minecraft/commands/arguments/blocks/BlockPredicateArgument$BlockPredicate.class new file mode 100644 index 000000000..dff6be670 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/commands/arguments/blocks/BlockPredicateArgument$BlockPredicate.class differ diff --git a/build/_compileJava_2/net/minecraft/commands/arguments/blocks/BlockPredicateArgument$Result.class b/build/_compileJava_2/net/minecraft/commands/arguments/blocks/BlockPredicateArgument$Result.class new file mode 100644 index 000000000..ef817a9f7 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/commands/arguments/blocks/BlockPredicateArgument$Result.class differ diff --git a/build/_compileJava_2/net/minecraft/commands/arguments/blocks/BlockPredicateArgument$TagPredicate.class b/build/_compileJava_2/net/minecraft/commands/arguments/blocks/BlockPredicateArgument$TagPredicate.class new file mode 100644 index 000000000..35d8562e9 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/commands/arguments/blocks/BlockPredicateArgument$TagPredicate.class differ diff --git a/build/_compileJava_2/net/minecraft/commands/arguments/blocks/BlockPredicateArgument.class b/build/_compileJava_2/net/minecraft/commands/arguments/blocks/BlockPredicateArgument.class new file mode 100644 index 000000000..274eb75e3 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/commands/arguments/blocks/BlockPredicateArgument.class differ diff --git a/build/_compileJava_2/net/minecraft/commands/arguments/blocks/BlockStateArgument.class b/build/_compileJava_2/net/minecraft/commands/arguments/blocks/BlockStateArgument.class new file mode 100644 index 000000000..235e59da1 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/commands/arguments/blocks/BlockStateArgument.class differ diff --git a/build/_compileJava_2/net/minecraft/commands/arguments/blocks/BlockStateParser$BlockResult.class b/build/_compileJava_2/net/minecraft/commands/arguments/blocks/BlockStateParser$BlockResult.class new file mode 100644 index 000000000..5f4da6ee8 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/commands/arguments/blocks/BlockStateParser$BlockResult.class differ diff --git a/build/_compileJava_2/net/minecraft/commands/arguments/blocks/BlockStateParser$TagResult.class b/build/_compileJava_2/net/minecraft/commands/arguments/blocks/BlockStateParser$TagResult.class new file mode 100644 index 000000000..14a0899d2 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/commands/arguments/blocks/BlockStateParser$TagResult.class differ diff --git a/build/_compileJava_2/net/minecraft/commands/arguments/blocks/BlockStateParser.class b/build/_compileJava_2/net/minecraft/commands/arguments/blocks/BlockStateParser.class new file mode 100644 index 000000000..23b1f04c3 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/commands/arguments/blocks/BlockStateParser.class differ diff --git a/build/_compileJava_2/net/minecraft/commands/arguments/blocks/package-info.class b/build/_compileJava_2/net/minecraft/commands/arguments/blocks/package-info.class new file mode 100644 index 000000000..1c6b2ae87 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/commands/arguments/blocks/package-info.class differ diff --git a/build/_compileJava_2/net/minecraft/commands/arguments/coordinates/BlockPosArgument.class b/build/_compileJava_2/net/minecraft/commands/arguments/coordinates/BlockPosArgument.class new file mode 100644 index 000000000..a029ecd52 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/commands/arguments/coordinates/BlockPosArgument.class differ diff --git a/build/_compileJava_2/net/minecraft/commands/arguments/coordinates/ColumnPosArgument.class b/build/_compileJava_2/net/minecraft/commands/arguments/coordinates/ColumnPosArgument.class new file mode 100644 index 000000000..fcdf1594e Binary files /dev/null and b/build/_compileJava_2/net/minecraft/commands/arguments/coordinates/ColumnPosArgument.class differ diff --git a/build/_compileJava_2/net/minecraft/commands/arguments/coordinates/Coordinates.class b/build/_compileJava_2/net/minecraft/commands/arguments/coordinates/Coordinates.class new file mode 100644 index 000000000..1d42646aa Binary files /dev/null and b/build/_compileJava_2/net/minecraft/commands/arguments/coordinates/Coordinates.class differ diff --git a/build/_compileJava_2/net/minecraft/commands/arguments/coordinates/LocalCoordinates.class b/build/_compileJava_2/net/minecraft/commands/arguments/coordinates/LocalCoordinates.class new file mode 100644 index 000000000..fd9263558 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/commands/arguments/coordinates/LocalCoordinates.class differ diff --git a/build/_compileJava_2/net/minecraft/commands/arguments/coordinates/RotationArgument.class b/build/_compileJava_2/net/minecraft/commands/arguments/coordinates/RotationArgument.class new file mode 100644 index 000000000..f9bb633c9 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/commands/arguments/coordinates/RotationArgument.class differ diff --git a/build/_compileJava_2/net/minecraft/commands/arguments/coordinates/SwizzleArgument.class b/build/_compileJava_2/net/minecraft/commands/arguments/coordinates/SwizzleArgument.class new file mode 100644 index 000000000..90af2635b Binary files /dev/null and b/build/_compileJava_2/net/minecraft/commands/arguments/coordinates/SwizzleArgument.class differ diff --git a/build/_compileJava_2/net/minecraft/commands/arguments/coordinates/Vec2Argument.class b/build/_compileJava_2/net/minecraft/commands/arguments/coordinates/Vec2Argument.class new file mode 100644 index 000000000..0fef659f3 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/commands/arguments/coordinates/Vec2Argument.class differ diff --git a/build/_compileJava_2/net/minecraft/commands/arguments/coordinates/Vec3Argument.class b/build/_compileJava_2/net/minecraft/commands/arguments/coordinates/Vec3Argument.class new file mode 100644 index 000000000..d0b997fef Binary files /dev/null and b/build/_compileJava_2/net/minecraft/commands/arguments/coordinates/Vec3Argument.class differ diff --git a/build/_compileJava_2/net/minecraft/commands/arguments/coordinates/WorldCoordinate.class b/build/_compileJava_2/net/minecraft/commands/arguments/coordinates/WorldCoordinate.class new file mode 100644 index 000000000..dceeb6877 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/commands/arguments/coordinates/WorldCoordinate.class differ diff --git a/build/_compileJava_2/net/minecraft/commands/arguments/coordinates/WorldCoordinates.class b/build/_compileJava_2/net/minecraft/commands/arguments/coordinates/WorldCoordinates.class new file mode 100644 index 000000000..44719a952 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/commands/arguments/coordinates/WorldCoordinates.class differ diff --git a/build/_compileJava_2/net/minecraft/commands/arguments/coordinates/package-info.class b/build/_compileJava_2/net/minecraft/commands/arguments/coordinates/package-info.class new file mode 100644 index 000000000..c2b09aaeb Binary files /dev/null and b/build/_compileJava_2/net/minecraft/commands/arguments/coordinates/package-info.class differ diff --git a/build/_compileJava_2/net/minecraft/commands/arguments/item/FunctionArgument$1.class b/build/_compileJava_2/net/minecraft/commands/arguments/item/FunctionArgument$1.class new file mode 100644 index 000000000..7204ca575 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/commands/arguments/item/FunctionArgument$1.class differ diff --git a/build/_compileJava_2/net/minecraft/commands/arguments/item/FunctionArgument$2.class b/build/_compileJava_2/net/minecraft/commands/arguments/item/FunctionArgument$2.class new file mode 100644 index 000000000..2b412b47a Binary files /dev/null and b/build/_compileJava_2/net/minecraft/commands/arguments/item/FunctionArgument$2.class differ diff --git a/build/_compileJava_2/net/minecraft/commands/arguments/item/FunctionArgument$Result.class b/build/_compileJava_2/net/minecraft/commands/arguments/item/FunctionArgument$Result.class new file mode 100644 index 000000000..fe12f32ce Binary files /dev/null and b/build/_compileJava_2/net/minecraft/commands/arguments/item/FunctionArgument$Result.class differ diff --git a/build/_compileJava_2/net/minecraft/commands/arguments/item/FunctionArgument.class b/build/_compileJava_2/net/minecraft/commands/arguments/item/FunctionArgument.class new file mode 100644 index 000000000..cd25ab67d Binary files /dev/null and b/build/_compileJava_2/net/minecraft/commands/arguments/item/FunctionArgument.class differ diff --git a/build/_compileJava_2/net/minecraft/commands/arguments/item/ItemArgument.class b/build/_compileJava_2/net/minecraft/commands/arguments/item/ItemArgument.class new file mode 100644 index 000000000..125082af9 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/commands/arguments/item/ItemArgument.class differ diff --git a/build/_compileJava_2/net/minecraft/commands/arguments/item/ItemInput.class b/build/_compileJava_2/net/minecraft/commands/arguments/item/ItemInput.class new file mode 100644 index 000000000..1484f8974 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/commands/arguments/item/ItemInput.class differ diff --git a/build/_compileJava_2/net/minecraft/commands/arguments/item/ItemParser$ItemResult.class b/build/_compileJava_2/net/minecraft/commands/arguments/item/ItemParser$ItemResult.class new file mode 100644 index 000000000..6a5339d8c Binary files /dev/null and b/build/_compileJava_2/net/minecraft/commands/arguments/item/ItemParser$ItemResult.class differ diff --git a/build/_compileJava_2/net/minecraft/commands/arguments/item/ItemParser$TagResult.class b/build/_compileJava_2/net/minecraft/commands/arguments/item/ItemParser$TagResult.class new file mode 100644 index 000000000..e1753430d Binary files /dev/null and b/build/_compileJava_2/net/minecraft/commands/arguments/item/ItemParser$TagResult.class differ diff --git a/build/_compileJava_2/net/minecraft/commands/arguments/item/ItemParser.class b/build/_compileJava_2/net/minecraft/commands/arguments/item/ItemParser.class new file mode 100644 index 000000000..204428a77 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/commands/arguments/item/ItemParser.class differ diff --git a/build/_compileJava_2/net/minecraft/commands/arguments/item/ItemPredicateArgument$Result.class b/build/_compileJava_2/net/minecraft/commands/arguments/item/ItemPredicateArgument$Result.class new file mode 100644 index 000000000..bda0590bf Binary files /dev/null and b/build/_compileJava_2/net/minecraft/commands/arguments/item/ItemPredicateArgument$Result.class differ diff --git a/build/_compileJava_2/net/minecraft/commands/arguments/item/ItemPredicateArgument.class b/build/_compileJava_2/net/minecraft/commands/arguments/item/ItemPredicateArgument.class new file mode 100644 index 000000000..caa15688b Binary files /dev/null and b/build/_compileJava_2/net/minecraft/commands/arguments/item/ItemPredicateArgument.class differ diff --git a/build/_compileJava_2/net/minecraft/commands/arguments/item/package-info.class b/build/_compileJava_2/net/minecraft/commands/arguments/item/package-info.class new file mode 100644 index 000000000..048c97192 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/commands/arguments/item/package-info.class differ diff --git a/build/_compileJava_2/net/minecraft/commands/arguments/package-info.class b/build/_compileJava_2/net/minecraft/commands/arguments/package-info.class new file mode 100644 index 000000000..85dfc8511 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/commands/arguments/package-info.class differ diff --git a/build/_compileJava_2/net/minecraft/commands/arguments/selector/EntitySelector$1.class b/build/_compileJava_2/net/minecraft/commands/arguments/selector/EntitySelector$1.class new file mode 100644 index 000000000..802737007 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/commands/arguments/selector/EntitySelector$1.class differ diff --git a/build/_compileJava_2/net/minecraft/commands/arguments/selector/EntitySelector.class b/build/_compileJava_2/net/minecraft/commands/arguments/selector/EntitySelector.class new file mode 100644 index 000000000..9cff0c33c Binary files /dev/null and b/build/_compileJava_2/net/minecraft/commands/arguments/selector/EntitySelector.class differ diff --git a/build/_compileJava_2/net/minecraft/commands/arguments/selector/EntitySelectorParser.class b/build/_compileJava_2/net/minecraft/commands/arguments/selector/EntitySelectorParser.class new file mode 100644 index 000000000..b620be866 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/commands/arguments/selector/EntitySelectorParser.class differ diff --git a/build/_compileJava_2/net/minecraft/commands/arguments/selector/options/EntitySelectorOptions$Modifier.class b/build/_compileJava_2/net/minecraft/commands/arguments/selector/options/EntitySelectorOptions$Modifier.class new file mode 100644 index 000000000..268adfbdb Binary files /dev/null and b/build/_compileJava_2/net/minecraft/commands/arguments/selector/options/EntitySelectorOptions$Modifier.class differ diff --git a/build/_compileJava_2/net/minecraft/commands/arguments/selector/options/EntitySelectorOptions$Option.class b/build/_compileJava_2/net/minecraft/commands/arguments/selector/options/EntitySelectorOptions$Option.class new file mode 100644 index 000000000..a98789547 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/commands/arguments/selector/options/EntitySelectorOptions$Option.class differ diff --git a/build/_compileJava_2/net/minecraft/commands/arguments/selector/options/EntitySelectorOptions.class b/build/_compileJava_2/net/minecraft/commands/arguments/selector/options/EntitySelectorOptions.class new file mode 100644 index 000000000..56c65b7d4 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/commands/arguments/selector/options/EntitySelectorOptions.class differ diff --git a/build/_compileJava_2/net/minecraft/commands/arguments/selector/options/package-info.class b/build/_compileJava_2/net/minecraft/commands/arguments/selector/options/package-info.class new file mode 100644 index 000000000..d70393146 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/commands/arguments/selector/options/package-info.class differ diff --git a/build/_compileJava_2/net/minecraft/commands/arguments/selector/package-info.class b/build/_compileJava_2/net/minecraft/commands/arguments/selector/package-info.class new file mode 100644 index 000000000..cc51869f7 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/commands/arguments/selector/package-info.class differ diff --git a/build/_compileJava_2/net/minecraft/commands/package-info.class b/build/_compileJava_2/net/minecraft/commands/package-info.class new file mode 100644 index 000000000..2fbd7479d Binary files /dev/null and b/build/_compileJava_2/net/minecraft/commands/package-info.class differ diff --git a/build/_compileJava_2/net/minecraft/commands/synchronization/ArgumentTypeInfo$Template.class b/build/_compileJava_2/net/minecraft/commands/synchronization/ArgumentTypeInfo$Template.class new file mode 100644 index 000000000..20b04f87b Binary files /dev/null and b/build/_compileJava_2/net/minecraft/commands/synchronization/ArgumentTypeInfo$Template.class differ diff --git a/build/_compileJava_2/net/minecraft/commands/synchronization/ArgumentTypeInfo.class b/build/_compileJava_2/net/minecraft/commands/synchronization/ArgumentTypeInfo.class new file mode 100644 index 000000000..2641d2248 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/commands/synchronization/ArgumentTypeInfo.class differ diff --git a/build/_compileJava_2/net/minecraft/commands/synchronization/ArgumentTypeInfos.class b/build/_compileJava_2/net/minecraft/commands/synchronization/ArgumentTypeInfos.class new file mode 100644 index 000000000..b2fba1ae8 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/commands/synchronization/ArgumentTypeInfos.class differ diff --git a/build/_compileJava_2/net/minecraft/commands/synchronization/ArgumentUtils.class b/build/_compileJava_2/net/minecraft/commands/synchronization/ArgumentUtils.class new file mode 100644 index 000000000..a5acc01ac Binary files /dev/null and b/build/_compileJava_2/net/minecraft/commands/synchronization/ArgumentUtils.class differ diff --git a/build/_compileJava_2/net/minecraft/commands/synchronization/SingletonArgumentInfo$Template.class b/build/_compileJava_2/net/minecraft/commands/synchronization/SingletonArgumentInfo$Template.class new file mode 100644 index 000000000..1caae3dae Binary files /dev/null and b/build/_compileJava_2/net/minecraft/commands/synchronization/SingletonArgumentInfo$Template.class differ diff --git a/build/_compileJava_2/net/minecraft/commands/synchronization/SingletonArgumentInfo.class b/build/_compileJava_2/net/minecraft/commands/synchronization/SingletonArgumentInfo.class new file mode 100644 index 000000000..94456cdf5 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/commands/synchronization/SingletonArgumentInfo.class differ diff --git a/build/_compileJava_2/net/minecraft/commands/synchronization/SuggestionProviders$Wrapper.class b/build/_compileJava_2/net/minecraft/commands/synchronization/SuggestionProviders$Wrapper.class new file mode 100644 index 000000000..398a83366 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/commands/synchronization/SuggestionProviders$Wrapper.class differ diff --git a/build/_compileJava_2/net/minecraft/commands/synchronization/SuggestionProviders.class b/build/_compileJava_2/net/minecraft/commands/synchronization/SuggestionProviders.class new file mode 100644 index 000000000..5bab78865 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/commands/synchronization/SuggestionProviders.class differ diff --git a/build/_compileJava_2/net/minecraft/commands/synchronization/brigadier/DoubleArgumentInfo$Template.class b/build/_compileJava_2/net/minecraft/commands/synchronization/brigadier/DoubleArgumentInfo$Template.class new file mode 100644 index 000000000..87acf6162 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/commands/synchronization/brigadier/DoubleArgumentInfo$Template.class differ diff --git a/build/_compileJava_2/net/minecraft/commands/synchronization/brigadier/DoubleArgumentInfo.class b/build/_compileJava_2/net/minecraft/commands/synchronization/brigadier/DoubleArgumentInfo.class new file mode 100644 index 000000000..73f6f9ba4 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/commands/synchronization/brigadier/DoubleArgumentInfo.class differ diff --git a/build/_compileJava_2/net/minecraft/commands/synchronization/brigadier/FloatArgumentInfo$Template.class b/build/_compileJava_2/net/minecraft/commands/synchronization/brigadier/FloatArgumentInfo$Template.class new file mode 100644 index 000000000..10336d4a0 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/commands/synchronization/brigadier/FloatArgumentInfo$Template.class differ diff --git a/build/_compileJava_2/net/minecraft/commands/synchronization/brigadier/FloatArgumentInfo.class b/build/_compileJava_2/net/minecraft/commands/synchronization/brigadier/FloatArgumentInfo.class new file mode 100644 index 000000000..f0987b40a Binary files /dev/null and b/build/_compileJava_2/net/minecraft/commands/synchronization/brigadier/FloatArgumentInfo.class differ diff --git a/build/_compileJava_2/net/minecraft/commands/synchronization/brigadier/IntegerArgumentInfo$Template.class b/build/_compileJava_2/net/minecraft/commands/synchronization/brigadier/IntegerArgumentInfo$Template.class new file mode 100644 index 000000000..790d733a6 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/commands/synchronization/brigadier/IntegerArgumentInfo$Template.class differ diff --git a/build/_compileJava_2/net/minecraft/commands/synchronization/brigadier/IntegerArgumentInfo.class b/build/_compileJava_2/net/minecraft/commands/synchronization/brigadier/IntegerArgumentInfo.class new file mode 100644 index 000000000..bf046099c Binary files /dev/null and b/build/_compileJava_2/net/minecraft/commands/synchronization/brigadier/IntegerArgumentInfo.class differ diff --git a/build/_compileJava_2/net/minecraft/commands/synchronization/brigadier/LongArgumentInfo$Template.class b/build/_compileJava_2/net/minecraft/commands/synchronization/brigadier/LongArgumentInfo$Template.class new file mode 100644 index 000000000..0df637184 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/commands/synchronization/brigadier/LongArgumentInfo$Template.class differ diff --git a/build/_compileJava_2/net/minecraft/commands/synchronization/brigadier/LongArgumentInfo.class b/build/_compileJava_2/net/minecraft/commands/synchronization/brigadier/LongArgumentInfo.class new file mode 100644 index 000000000..b08a36f1e Binary files /dev/null and b/build/_compileJava_2/net/minecraft/commands/synchronization/brigadier/LongArgumentInfo.class differ diff --git a/build/_compileJava_2/net/minecraft/commands/synchronization/brigadier/StringArgumentSerializer$1.class b/build/_compileJava_2/net/minecraft/commands/synchronization/brigadier/StringArgumentSerializer$1.class new file mode 100644 index 000000000..246659538 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/commands/synchronization/brigadier/StringArgumentSerializer$1.class differ diff --git a/build/_compileJava_2/net/minecraft/commands/synchronization/brigadier/StringArgumentSerializer$Template.class b/build/_compileJava_2/net/minecraft/commands/synchronization/brigadier/StringArgumentSerializer$Template.class new file mode 100644 index 000000000..34a8b4a61 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/commands/synchronization/brigadier/StringArgumentSerializer$Template.class differ diff --git a/build/_compileJava_2/net/minecraft/commands/synchronization/brigadier/StringArgumentSerializer.class b/build/_compileJava_2/net/minecraft/commands/synchronization/brigadier/StringArgumentSerializer.class new file mode 100644 index 000000000..81e3f92ce Binary files /dev/null and b/build/_compileJava_2/net/minecraft/commands/synchronization/brigadier/StringArgumentSerializer.class differ diff --git a/build/_compileJava_2/net/minecraft/commands/synchronization/brigadier/package-info.class b/build/_compileJava_2/net/minecraft/commands/synchronization/brigadier/package-info.class new file mode 100644 index 000000000..72920e710 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/commands/synchronization/brigadier/package-info.class differ diff --git a/build/_compileJava_2/net/minecraft/commands/synchronization/package-info.class b/build/_compileJava_2/net/minecraft/commands/synchronization/package-info.class new file mode 100644 index 000000000..bc592567b Binary files /dev/null and b/build/_compileJava_2/net/minecraft/commands/synchronization/package-info.class differ diff --git a/build/_compileJava_2/net/minecraft/core/AxisCycle$1.class b/build/_compileJava_2/net/minecraft/core/AxisCycle$1.class new file mode 100644 index 000000000..51eee65c6 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/core/AxisCycle$1.class differ diff --git a/build/_compileJava_2/net/minecraft/core/AxisCycle$2.class b/build/_compileJava_2/net/minecraft/core/AxisCycle$2.class new file mode 100644 index 000000000..46a16a2c6 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/core/AxisCycle$2.class differ diff --git a/build/_compileJava_2/net/minecraft/core/AxisCycle$3.class b/build/_compileJava_2/net/minecraft/core/AxisCycle$3.class new file mode 100644 index 000000000..1e5e2f328 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/core/AxisCycle$3.class differ diff --git a/build/_compileJava_2/net/minecraft/core/AxisCycle.class b/build/_compileJava_2/net/minecraft/core/AxisCycle.class new file mode 100644 index 000000000..80e81012f Binary files /dev/null and b/build/_compileJava_2/net/minecraft/core/AxisCycle.class differ diff --git a/build/_compileJava_2/net/minecraft/core/BlockMath.class b/build/_compileJava_2/net/minecraft/core/BlockMath.class new file mode 100644 index 000000000..32bfe25d5 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/core/BlockMath.class differ diff --git a/build/_compileJava_2/net/minecraft/core/BlockPos$1.class b/build/_compileJava_2/net/minecraft/core/BlockPos$1.class new file mode 100644 index 000000000..39d3bbdc7 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/core/BlockPos$1.class differ diff --git a/build/_compileJava_2/net/minecraft/core/BlockPos$2.class b/build/_compileJava_2/net/minecraft/core/BlockPos$2.class new file mode 100644 index 000000000..b31a9ab0e Binary files /dev/null and b/build/_compileJava_2/net/minecraft/core/BlockPos$2.class differ diff --git a/build/_compileJava_2/net/minecraft/core/BlockPos$3.class b/build/_compileJava_2/net/minecraft/core/BlockPos$3.class new file mode 100644 index 000000000..0392ca2f4 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/core/BlockPos$3.class differ diff --git a/build/_compileJava_2/net/minecraft/core/BlockPos$4.class b/build/_compileJava_2/net/minecraft/core/BlockPos$4.class new file mode 100644 index 000000000..f3b47a842 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/core/BlockPos$4.class differ diff --git a/build/_compileJava_2/net/minecraft/core/BlockPos$5.class b/build/_compileJava_2/net/minecraft/core/BlockPos$5.class new file mode 100644 index 000000000..a39515cb2 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/core/BlockPos$5.class differ diff --git a/build/_compileJava_2/net/minecraft/core/BlockPos$MutableBlockPos.class b/build/_compileJava_2/net/minecraft/core/BlockPos$MutableBlockPos.class new file mode 100644 index 000000000..e9228fd21 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/core/BlockPos$MutableBlockPos.class differ diff --git a/build/_compileJava_2/net/minecraft/core/BlockPos.class b/build/_compileJava_2/net/minecraft/core/BlockPos.class new file mode 100644 index 000000000..f9776e301 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/core/BlockPos.class differ diff --git a/build/_compileJava_2/net/minecraft/core/BlockSource.class b/build/_compileJava_2/net/minecraft/core/BlockSource.class new file mode 100644 index 000000000..9843ce345 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/core/BlockSource.class differ diff --git a/build/_compileJava_2/net/minecraft/core/BlockSourceImpl.class b/build/_compileJava_2/net/minecraft/core/BlockSourceImpl.class new file mode 100644 index 000000000..1a4384c65 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/core/BlockSourceImpl.class differ diff --git a/build/_compileJava_2/net/minecraft/core/Cursor3D.class b/build/_compileJava_2/net/minecraft/core/Cursor3D.class new file mode 100644 index 000000000..ea3e170ae Binary files /dev/null and b/build/_compileJava_2/net/minecraft/core/Cursor3D.class differ diff --git a/build/_compileJava_2/net/minecraft/core/DefaultedMappedRegistry.class b/build/_compileJava_2/net/minecraft/core/DefaultedMappedRegistry.class new file mode 100644 index 000000000..41eb94668 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/core/DefaultedMappedRegistry.class differ diff --git a/build/_compileJava_2/net/minecraft/core/DefaultedRegistry.class b/build/_compileJava_2/net/minecraft/core/DefaultedRegistry.class new file mode 100644 index 000000000..1de648abd Binary files /dev/null and b/build/_compileJava_2/net/minecraft/core/DefaultedRegistry.class differ diff --git a/build/_compileJava_2/net/minecraft/core/Direction$1.class b/build/_compileJava_2/net/minecraft/core/Direction$1.class new file mode 100644 index 000000000..9847ea352 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/core/Direction$1.class differ diff --git a/build/_compileJava_2/net/minecraft/core/Direction$Axis$1.class b/build/_compileJava_2/net/minecraft/core/Direction$Axis$1.class new file mode 100644 index 000000000..4d159390f Binary files /dev/null and b/build/_compileJava_2/net/minecraft/core/Direction$Axis$1.class differ diff --git a/build/_compileJava_2/net/minecraft/core/Direction$Axis$2.class b/build/_compileJava_2/net/minecraft/core/Direction$Axis$2.class new file mode 100644 index 000000000..850e3b207 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/core/Direction$Axis$2.class differ diff --git a/build/_compileJava_2/net/minecraft/core/Direction$Axis$3.class b/build/_compileJava_2/net/minecraft/core/Direction$Axis$3.class new file mode 100644 index 000000000..671573373 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/core/Direction$Axis$3.class differ diff --git a/build/_compileJava_2/net/minecraft/core/Direction$Axis.class b/build/_compileJava_2/net/minecraft/core/Direction$Axis.class new file mode 100644 index 000000000..6d9383094 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/core/Direction$Axis.class differ diff --git a/build/_compileJava_2/net/minecraft/core/Direction$AxisDirection.class b/build/_compileJava_2/net/minecraft/core/Direction$AxisDirection.class new file mode 100644 index 000000000..cb528cf7e Binary files /dev/null and b/build/_compileJava_2/net/minecraft/core/Direction$AxisDirection.class differ diff --git a/build/_compileJava_2/net/minecraft/core/Direction$Plane.class b/build/_compileJava_2/net/minecraft/core/Direction$Plane.class new file mode 100644 index 000000000..2ba0ff165 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/core/Direction$Plane.class differ diff --git a/build/_compileJava_2/net/minecraft/core/Direction.class b/build/_compileJava_2/net/minecraft/core/Direction.class new file mode 100644 index 000000000..25b91e786 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/core/Direction.class differ diff --git a/build/_compileJava_2/net/minecraft/core/Direction8.class b/build/_compileJava_2/net/minecraft/core/Direction8.class new file mode 100644 index 000000000..fab3e0e3f Binary files /dev/null and b/build/_compileJava_2/net/minecraft/core/Direction8.class differ diff --git a/build/_compileJava_2/net/minecraft/core/FrontAndTop.class b/build/_compileJava_2/net/minecraft/core/FrontAndTop.class new file mode 100644 index 000000000..d653abb99 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/core/FrontAndTop.class differ diff --git a/build/_compileJava_2/net/minecraft/core/GlobalPos.class b/build/_compileJava_2/net/minecraft/core/GlobalPos.class new file mode 100644 index 000000000..d04796549 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/core/GlobalPos.class differ diff --git a/build/_compileJava_2/net/minecraft/core/Holder$Direct.class b/build/_compileJava_2/net/minecraft/core/Holder$Direct.class new file mode 100644 index 000000000..5be2600cd Binary files /dev/null and b/build/_compileJava_2/net/minecraft/core/Holder$Direct.class differ diff --git a/build/_compileJava_2/net/minecraft/core/Holder$Kind.class b/build/_compileJava_2/net/minecraft/core/Holder$Kind.class new file mode 100644 index 000000000..36e9b4695 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/core/Holder$Kind.class differ diff --git a/build/_compileJava_2/net/minecraft/core/Holder$Reference$Type.class b/build/_compileJava_2/net/minecraft/core/Holder$Reference$Type.class new file mode 100644 index 000000000..a588cde47 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/core/Holder$Reference$Type.class differ diff --git a/build/_compileJava_2/net/minecraft/core/Holder$Reference.class b/build/_compileJava_2/net/minecraft/core/Holder$Reference.class new file mode 100644 index 000000000..96e29e519 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/core/Holder$Reference.class differ diff --git a/build/_compileJava_2/net/minecraft/core/Holder.class b/build/_compileJava_2/net/minecraft/core/Holder.class new file mode 100644 index 000000000..744b840cd Binary files /dev/null and b/build/_compileJava_2/net/minecraft/core/Holder.class differ diff --git a/build/_compileJava_2/net/minecraft/core/HolderGetter$Provider.class b/build/_compileJava_2/net/minecraft/core/HolderGetter$Provider.class new file mode 100644 index 000000000..a4d1c58fd Binary files /dev/null and b/build/_compileJava_2/net/minecraft/core/HolderGetter$Provider.class differ diff --git a/build/_compileJava_2/net/minecraft/core/HolderGetter.class b/build/_compileJava_2/net/minecraft/core/HolderGetter.class new file mode 100644 index 000000000..d9d2a4d58 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/core/HolderGetter.class differ diff --git a/build/_compileJava_2/net/minecraft/core/HolderLookup$1.class b/build/_compileJava_2/net/minecraft/core/HolderLookup$1.class new file mode 100644 index 000000000..67a7d028d Binary files /dev/null and b/build/_compileJava_2/net/minecraft/core/HolderLookup$1.class differ diff --git a/build/_compileJava_2/net/minecraft/core/HolderLookup$Delegate.class b/build/_compileJava_2/net/minecraft/core/HolderLookup$Delegate.class new file mode 100644 index 000000000..2db4ef4fd Binary files /dev/null and b/build/_compileJava_2/net/minecraft/core/HolderLookup$Delegate.class differ diff --git a/build/_compileJava_2/net/minecraft/core/HolderLookup$Provider$1.class b/build/_compileJava_2/net/minecraft/core/HolderLookup$Provider$1.class new file mode 100644 index 000000000..964f27678 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/core/HolderLookup$Provider$1.class differ diff --git a/build/_compileJava_2/net/minecraft/core/HolderLookup$Provider$2.class b/build/_compileJava_2/net/minecraft/core/HolderLookup$Provider$2.class new file mode 100644 index 000000000..47ca4bea2 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/core/HolderLookup$Provider$2.class differ diff --git a/build/_compileJava_2/net/minecraft/core/HolderLookup$Provider.class b/build/_compileJava_2/net/minecraft/core/HolderLookup$Provider.class new file mode 100644 index 000000000..d5b90f98a Binary files /dev/null and b/build/_compileJava_2/net/minecraft/core/HolderLookup$Provider.class differ diff --git a/build/_compileJava_2/net/minecraft/core/HolderLookup$RegistryLookup$Delegate.class b/build/_compileJava_2/net/minecraft/core/HolderLookup$RegistryLookup$Delegate.class new file mode 100644 index 000000000..8e0a7840a Binary files /dev/null and b/build/_compileJava_2/net/minecraft/core/HolderLookup$RegistryLookup$Delegate.class differ diff --git a/build/_compileJava_2/net/minecraft/core/HolderLookup$RegistryLookup.class b/build/_compileJava_2/net/minecraft/core/HolderLookup$RegistryLookup.class new file mode 100644 index 000000000..75333708c Binary files /dev/null and b/build/_compileJava_2/net/minecraft/core/HolderLookup$RegistryLookup.class differ diff --git a/build/_compileJava_2/net/minecraft/core/HolderLookup.class b/build/_compileJava_2/net/minecraft/core/HolderLookup.class new file mode 100644 index 000000000..bc601bdfd Binary files /dev/null and b/build/_compileJava_2/net/minecraft/core/HolderLookup.class differ diff --git a/build/_compileJava_2/net/minecraft/core/HolderOwner.class b/build/_compileJava_2/net/minecraft/core/HolderOwner.class new file mode 100644 index 000000000..aff35e6c4 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/core/HolderOwner.class differ diff --git a/build/_compileJava_2/net/minecraft/core/HolderSet$Direct.class b/build/_compileJava_2/net/minecraft/core/HolderSet$Direct.class new file mode 100644 index 000000000..69a6697c5 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/core/HolderSet$Direct.class differ diff --git a/build/_compileJava_2/net/minecraft/core/HolderSet$ListBacked.class b/build/_compileJava_2/net/minecraft/core/HolderSet$ListBacked.class new file mode 100644 index 000000000..35c414113 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/core/HolderSet$ListBacked.class differ diff --git a/build/_compileJava_2/net/minecraft/core/HolderSet$Named.class b/build/_compileJava_2/net/minecraft/core/HolderSet$Named.class new file mode 100644 index 000000000..04cdde764 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/core/HolderSet$Named.class differ diff --git a/build/_compileJava_2/net/minecraft/core/HolderSet.class b/build/_compileJava_2/net/minecraft/core/HolderSet.class new file mode 100644 index 000000000..200034ee7 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/core/HolderSet.class differ diff --git a/build/_compileJava_2/net/minecraft/core/IdMap.class b/build/_compileJava_2/net/minecraft/core/IdMap.class new file mode 100644 index 000000000..c64f90a0b Binary files /dev/null and b/build/_compileJava_2/net/minecraft/core/IdMap.class differ diff --git a/build/_compileJava_2/net/minecraft/core/IdMapper.class b/build/_compileJava_2/net/minecraft/core/IdMapper.class new file mode 100644 index 000000000..d52f8bc3f Binary files /dev/null and b/build/_compileJava_2/net/minecraft/core/IdMapper.class differ diff --git a/build/_compileJava_2/net/minecraft/core/LayeredRegistryAccess.class b/build/_compileJava_2/net/minecraft/core/LayeredRegistryAccess.class new file mode 100644 index 000000000..5b1205e3c Binary files /dev/null and b/build/_compileJava_2/net/minecraft/core/LayeredRegistryAccess.class differ diff --git a/build/_compileJava_2/net/minecraft/core/MappedRegistry$1.class b/build/_compileJava_2/net/minecraft/core/MappedRegistry$1.class new file mode 100644 index 000000000..9c8b32000 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/core/MappedRegistry$1.class differ diff --git a/build/_compileJava_2/net/minecraft/core/MappedRegistry$2.class b/build/_compileJava_2/net/minecraft/core/MappedRegistry$2.class new file mode 100644 index 000000000..da8b98211 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/core/MappedRegistry$2.class differ diff --git a/build/_compileJava_2/net/minecraft/core/MappedRegistry.class b/build/_compileJava_2/net/minecraft/core/MappedRegistry.class new file mode 100644 index 000000000..198eeea4e Binary files /dev/null and b/build/_compileJava_2/net/minecraft/core/MappedRegistry.class differ diff --git a/build/_compileJava_2/net/minecraft/core/NonNullList.class b/build/_compileJava_2/net/minecraft/core/NonNullList.class new file mode 100644 index 000000000..71d41774a Binary files /dev/null and b/build/_compileJava_2/net/minecraft/core/NonNullList.class differ diff --git a/build/_compileJava_2/net/minecraft/core/Position.class b/build/_compileJava_2/net/minecraft/core/Position.class new file mode 100644 index 000000000..638a4f92c Binary files /dev/null and b/build/_compileJava_2/net/minecraft/core/Position.class differ diff --git a/build/_compileJava_2/net/minecraft/core/PositionImpl.class b/build/_compileJava_2/net/minecraft/core/PositionImpl.class new file mode 100644 index 000000000..92ee2b2dc Binary files /dev/null and b/build/_compileJava_2/net/minecraft/core/PositionImpl.class differ diff --git a/build/_compileJava_2/net/minecraft/core/QuartPos.class b/build/_compileJava_2/net/minecraft/core/QuartPos.class new file mode 100644 index 000000000..72ea8b51f Binary files /dev/null and b/build/_compileJava_2/net/minecraft/core/QuartPos.class differ diff --git a/build/_compileJava_2/net/minecraft/core/Registry$1.class b/build/_compileJava_2/net/minecraft/core/Registry$1.class new file mode 100644 index 000000000..24362e3f7 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/core/Registry$1.class differ diff --git a/build/_compileJava_2/net/minecraft/core/Registry$2.class b/build/_compileJava_2/net/minecraft/core/Registry$2.class new file mode 100644 index 000000000..8eeebc1d0 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/core/Registry$2.class differ diff --git a/build/_compileJava_2/net/minecraft/core/Registry.class b/build/_compileJava_2/net/minecraft/core/Registry.class new file mode 100644 index 000000000..1dc14636a Binary files /dev/null and b/build/_compileJava_2/net/minecraft/core/Registry.class differ diff --git a/build/_compileJava_2/net/minecraft/core/RegistryAccess$1.class b/build/_compileJava_2/net/minecraft/core/RegistryAccess$1.class new file mode 100644 index 000000000..d5eca6788 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/core/RegistryAccess$1.class differ diff --git a/build/_compileJava_2/net/minecraft/core/RegistryAccess$1FrozenAccess.class b/build/_compileJava_2/net/minecraft/core/RegistryAccess$1FrozenAccess.class new file mode 100644 index 000000000..4ffa60023 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/core/RegistryAccess$1FrozenAccess.class differ diff --git a/build/_compileJava_2/net/minecraft/core/RegistryAccess$Frozen.class b/build/_compileJava_2/net/minecraft/core/RegistryAccess$Frozen.class new file mode 100644 index 000000000..c8a62caff Binary files /dev/null and b/build/_compileJava_2/net/minecraft/core/RegistryAccess$Frozen.class differ diff --git a/build/_compileJava_2/net/minecraft/core/RegistryAccess$ImmutableRegistryAccess.class b/build/_compileJava_2/net/minecraft/core/RegistryAccess$ImmutableRegistryAccess.class new file mode 100644 index 000000000..fcfc1e2f2 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/core/RegistryAccess$ImmutableRegistryAccess.class differ diff --git a/build/_compileJava_2/net/minecraft/core/RegistryAccess$RegistryEntry.class b/build/_compileJava_2/net/minecraft/core/RegistryAccess$RegistryEntry.class new file mode 100644 index 000000000..bfbdb2d8e Binary files /dev/null and b/build/_compileJava_2/net/minecraft/core/RegistryAccess$RegistryEntry.class differ diff --git a/build/_compileJava_2/net/minecraft/core/RegistryAccess.class b/build/_compileJava_2/net/minecraft/core/RegistryAccess.class new file mode 100644 index 000000000..056e658c3 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/core/RegistryAccess.class differ diff --git a/build/_compileJava_2/net/minecraft/core/RegistryCodecs$RegistryEntry.class b/build/_compileJava_2/net/minecraft/core/RegistryCodecs$RegistryEntry.class new file mode 100644 index 000000000..be95f0a64 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/core/RegistryCodecs$RegistryEntry.class differ diff --git a/build/_compileJava_2/net/minecraft/core/RegistryCodecs.class b/build/_compileJava_2/net/minecraft/core/RegistryCodecs.class new file mode 100644 index 000000000..f38f24d1e Binary files /dev/null and b/build/_compileJava_2/net/minecraft/core/RegistryCodecs.class differ diff --git a/build/_compileJava_2/net/minecraft/core/RegistrySetBuilder$1.class b/build/_compileJava_2/net/minecraft/core/RegistrySetBuilder$1.class new file mode 100644 index 000000000..fd141fbca Binary files /dev/null and b/build/_compileJava_2/net/minecraft/core/RegistrySetBuilder$1.class differ diff --git a/build/_compileJava_2/net/minecraft/core/RegistrySetBuilder$BuildState$1.class b/build/_compileJava_2/net/minecraft/core/RegistrySetBuilder$BuildState$1.class new file mode 100644 index 000000000..ceab162cd Binary files /dev/null and b/build/_compileJava_2/net/minecraft/core/RegistrySetBuilder$BuildState$1.class differ diff --git a/build/_compileJava_2/net/minecraft/core/RegistrySetBuilder$BuildState.class b/build/_compileJava_2/net/minecraft/core/RegistrySetBuilder$BuildState.class new file mode 100644 index 000000000..12985fcf0 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/core/RegistrySetBuilder$BuildState.class differ diff --git a/build/_compileJava_2/net/minecraft/core/RegistrySetBuilder$CompositeOwner.class b/build/_compileJava_2/net/minecraft/core/RegistrySetBuilder$CompositeOwner.class new file mode 100644 index 000000000..a473f1a23 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/core/RegistrySetBuilder$CompositeOwner.class differ diff --git a/build/_compileJava_2/net/minecraft/core/RegistrySetBuilder$EmptyTagLookup.class b/build/_compileJava_2/net/minecraft/core/RegistrySetBuilder$EmptyTagLookup.class new file mode 100644 index 000000000..295a99e3b Binary files /dev/null and b/build/_compileJava_2/net/minecraft/core/RegistrySetBuilder$EmptyTagLookup.class differ diff --git a/build/_compileJava_2/net/minecraft/core/RegistrySetBuilder$RegisteredValue.class b/build/_compileJava_2/net/minecraft/core/RegistrySetBuilder$RegisteredValue.class new file mode 100644 index 000000000..7b2d1645f Binary files /dev/null and b/build/_compileJava_2/net/minecraft/core/RegistrySetBuilder$RegisteredValue.class differ diff --git a/build/_compileJava_2/net/minecraft/core/RegistrySetBuilder$RegistryBootstrap.class b/build/_compileJava_2/net/minecraft/core/RegistrySetBuilder$RegistryBootstrap.class new file mode 100644 index 000000000..61bc9cb4c Binary files /dev/null and b/build/_compileJava_2/net/minecraft/core/RegistrySetBuilder$RegistryBootstrap.class differ diff --git a/build/_compileJava_2/net/minecraft/core/RegistrySetBuilder$RegistryContents$1.class b/build/_compileJava_2/net/minecraft/core/RegistrySetBuilder$RegistryContents$1.class new file mode 100644 index 000000000..488db9890 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/core/RegistrySetBuilder$RegistryContents$1.class differ diff --git a/build/_compileJava_2/net/minecraft/core/RegistrySetBuilder$RegistryContents.class b/build/_compileJava_2/net/minecraft/core/RegistrySetBuilder$RegistryContents.class new file mode 100644 index 000000000..d7d4a1b4e Binary files /dev/null and b/build/_compileJava_2/net/minecraft/core/RegistrySetBuilder$RegistryContents.class differ diff --git a/build/_compileJava_2/net/minecraft/core/RegistrySetBuilder$RegistryStub.class b/build/_compileJava_2/net/minecraft/core/RegistrySetBuilder$RegistryStub.class new file mode 100644 index 000000000..d124b0f95 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/core/RegistrySetBuilder$RegistryStub.class differ diff --git a/build/_compileJava_2/net/minecraft/core/RegistrySetBuilder$UniversalLookup.class b/build/_compileJava_2/net/minecraft/core/RegistrySetBuilder$UniversalLookup.class new file mode 100644 index 000000000..b36e32680 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/core/RegistrySetBuilder$UniversalLookup.class differ diff --git a/build/_compileJava_2/net/minecraft/core/RegistrySetBuilder$ValueAndHolder.class b/build/_compileJava_2/net/minecraft/core/RegistrySetBuilder$ValueAndHolder.class new file mode 100644 index 000000000..6ef7436b9 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/core/RegistrySetBuilder$ValueAndHolder.class differ diff --git a/build/_compileJava_2/net/minecraft/core/RegistrySetBuilder.class b/build/_compileJava_2/net/minecraft/core/RegistrySetBuilder.class new file mode 100644 index 000000000..173b9156e Binary files /dev/null and b/build/_compileJava_2/net/minecraft/core/RegistrySetBuilder.class differ diff --git a/build/_compileJava_2/net/minecraft/core/RegistrySynchronization$NetworkedRegistryData.class b/build/_compileJava_2/net/minecraft/core/RegistrySynchronization$NetworkedRegistryData.class new file mode 100644 index 000000000..6e5f7f749 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/core/RegistrySynchronization$NetworkedRegistryData.class differ diff --git a/build/_compileJava_2/net/minecraft/core/RegistrySynchronization.class b/build/_compileJava_2/net/minecraft/core/RegistrySynchronization.class new file mode 100644 index 000000000..404976928 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/core/RegistrySynchronization.class differ diff --git a/build/_compileJava_2/net/minecraft/core/Rotations.class b/build/_compileJava_2/net/minecraft/core/Rotations.class new file mode 100644 index 000000000..861f1afb6 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/core/Rotations.class differ diff --git a/build/_compileJava_2/net/minecraft/core/SectionPos$1.class b/build/_compileJava_2/net/minecraft/core/SectionPos$1.class new file mode 100644 index 000000000..0a547ec9f Binary files /dev/null and b/build/_compileJava_2/net/minecraft/core/SectionPos$1.class differ diff --git a/build/_compileJava_2/net/minecraft/core/SectionPos.class b/build/_compileJava_2/net/minecraft/core/SectionPos.class new file mode 100644 index 000000000..3b8561260 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/core/SectionPos.class differ diff --git a/build/_compileJava_2/net/minecraft/core/UUIDUtil.class b/build/_compileJava_2/net/minecraft/core/UUIDUtil.class new file mode 100644 index 000000000..561e67042 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/core/UUIDUtil.class differ diff --git a/build/_compileJava_2/net/minecraft/core/Vec3i.class b/build/_compileJava_2/net/minecraft/core/Vec3i.class new file mode 100644 index 000000000..a2a9bf042 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/core/Vec3i.class differ diff --git a/build/_compileJava_2/net/minecraft/core/WritableRegistry.class b/build/_compileJava_2/net/minecraft/core/WritableRegistry.class new file mode 100644 index 000000000..122d923cd Binary files /dev/null and b/build/_compileJava_2/net/minecraft/core/WritableRegistry.class differ diff --git a/build/_compileJava_2/net/minecraft/core/cauldron/CauldronInteraction.class b/build/_compileJava_2/net/minecraft/core/cauldron/CauldronInteraction.class new file mode 100644 index 000000000..88c3a6ebc Binary files /dev/null and b/build/_compileJava_2/net/minecraft/core/cauldron/CauldronInteraction.class differ diff --git a/build/_compileJava_2/net/minecraft/core/cauldron/package-info.class b/build/_compileJava_2/net/minecraft/core/cauldron/package-info.class new file mode 100644 index 000000000..a6cd06168 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/core/cauldron/package-info.class differ diff --git a/build/_compileJava_2/net/minecraft/core/dispenser/AbstractProjectileDispenseBehavior.class b/build/_compileJava_2/net/minecraft/core/dispenser/AbstractProjectileDispenseBehavior.class new file mode 100644 index 000000000..2002299b6 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/core/dispenser/AbstractProjectileDispenseBehavior.class differ diff --git a/build/_compileJava_2/net/minecraft/core/dispenser/BoatDispenseItemBehavior.class b/build/_compileJava_2/net/minecraft/core/dispenser/BoatDispenseItemBehavior.class new file mode 100644 index 000000000..8c12b56d7 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/core/dispenser/BoatDispenseItemBehavior.class differ diff --git a/build/_compileJava_2/net/minecraft/core/dispenser/DefaultDispenseItemBehavior.class b/build/_compileJava_2/net/minecraft/core/dispenser/DefaultDispenseItemBehavior.class new file mode 100644 index 000000000..f5e63be4c Binary files /dev/null and b/build/_compileJava_2/net/minecraft/core/dispenser/DefaultDispenseItemBehavior.class differ diff --git a/build/_compileJava_2/net/minecraft/core/dispenser/DispenseItemBehavior$1.class b/build/_compileJava_2/net/minecraft/core/dispenser/DispenseItemBehavior$1.class new file mode 100644 index 000000000..aceea65b5 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/core/dispenser/DispenseItemBehavior$1.class differ diff --git a/build/_compileJava_2/net/minecraft/core/dispenser/DispenseItemBehavior$10.class b/build/_compileJava_2/net/minecraft/core/dispenser/DispenseItemBehavior$10.class new file mode 100644 index 000000000..795cd60ad Binary files /dev/null and b/build/_compileJava_2/net/minecraft/core/dispenser/DispenseItemBehavior$10.class differ diff --git a/build/_compileJava_2/net/minecraft/core/dispenser/DispenseItemBehavior$11.class b/build/_compileJava_2/net/minecraft/core/dispenser/DispenseItemBehavior$11.class new file mode 100644 index 000000000..2b12817e2 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/core/dispenser/DispenseItemBehavior$11.class differ diff --git a/build/_compileJava_2/net/minecraft/core/dispenser/DispenseItemBehavior$12.class b/build/_compileJava_2/net/minecraft/core/dispenser/DispenseItemBehavior$12.class new file mode 100644 index 000000000..9209e0f15 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/core/dispenser/DispenseItemBehavior$12.class differ diff --git a/build/_compileJava_2/net/minecraft/core/dispenser/DispenseItemBehavior$13.class b/build/_compileJava_2/net/minecraft/core/dispenser/DispenseItemBehavior$13.class new file mode 100644 index 000000000..331d98e85 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/core/dispenser/DispenseItemBehavior$13.class differ diff --git a/build/_compileJava_2/net/minecraft/core/dispenser/DispenseItemBehavior$14.class b/build/_compileJava_2/net/minecraft/core/dispenser/DispenseItemBehavior$14.class new file mode 100644 index 000000000..d06eac145 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/core/dispenser/DispenseItemBehavior$14.class differ diff --git a/build/_compileJava_2/net/minecraft/core/dispenser/DispenseItemBehavior$15.class b/build/_compileJava_2/net/minecraft/core/dispenser/DispenseItemBehavior$15.class new file mode 100644 index 000000000..a5df89f6f Binary files /dev/null and b/build/_compileJava_2/net/minecraft/core/dispenser/DispenseItemBehavior$15.class differ diff --git a/build/_compileJava_2/net/minecraft/core/dispenser/DispenseItemBehavior$16.class b/build/_compileJava_2/net/minecraft/core/dispenser/DispenseItemBehavior$16.class new file mode 100644 index 000000000..641e99939 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/core/dispenser/DispenseItemBehavior$16.class differ diff --git a/build/_compileJava_2/net/minecraft/core/dispenser/DispenseItemBehavior$17.class b/build/_compileJava_2/net/minecraft/core/dispenser/DispenseItemBehavior$17.class new file mode 100644 index 000000000..bc795bf63 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/core/dispenser/DispenseItemBehavior$17.class differ diff --git a/build/_compileJava_2/net/minecraft/core/dispenser/DispenseItemBehavior$18.class b/build/_compileJava_2/net/minecraft/core/dispenser/DispenseItemBehavior$18.class new file mode 100644 index 000000000..588f2161e Binary files /dev/null and b/build/_compileJava_2/net/minecraft/core/dispenser/DispenseItemBehavior$18.class differ diff --git a/build/_compileJava_2/net/minecraft/core/dispenser/DispenseItemBehavior$19.class b/build/_compileJava_2/net/minecraft/core/dispenser/DispenseItemBehavior$19.class new file mode 100644 index 000000000..065e49dfa Binary files /dev/null and b/build/_compileJava_2/net/minecraft/core/dispenser/DispenseItemBehavior$19.class differ diff --git a/build/_compileJava_2/net/minecraft/core/dispenser/DispenseItemBehavior$2.class b/build/_compileJava_2/net/minecraft/core/dispenser/DispenseItemBehavior$2.class new file mode 100644 index 000000000..8e73732c3 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/core/dispenser/DispenseItemBehavior$2.class differ diff --git a/build/_compileJava_2/net/minecraft/core/dispenser/DispenseItemBehavior$20.class b/build/_compileJava_2/net/minecraft/core/dispenser/DispenseItemBehavior$20.class new file mode 100644 index 000000000..885c91d6b Binary files /dev/null and b/build/_compileJava_2/net/minecraft/core/dispenser/DispenseItemBehavior$20.class differ diff --git a/build/_compileJava_2/net/minecraft/core/dispenser/DispenseItemBehavior$21.class b/build/_compileJava_2/net/minecraft/core/dispenser/DispenseItemBehavior$21.class new file mode 100644 index 000000000..aa36deb7a Binary files /dev/null and b/build/_compileJava_2/net/minecraft/core/dispenser/DispenseItemBehavior$21.class differ diff --git a/build/_compileJava_2/net/minecraft/core/dispenser/DispenseItemBehavior$22.class b/build/_compileJava_2/net/minecraft/core/dispenser/DispenseItemBehavior$22.class new file mode 100644 index 000000000..8a825deb7 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/core/dispenser/DispenseItemBehavior$22.class differ diff --git a/build/_compileJava_2/net/minecraft/core/dispenser/DispenseItemBehavior$23.class b/build/_compileJava_2/net/minecraft/core/dispenser/DispenseItemBehavior$23.class new file mode 100644 index 000000000..69dae02af Binary files /dev/null and b/build/_compileJava_2/net/minecraft/core/dispenser/DispenseItemBehavior$23.class differ diff --git a/build/_compileJava_2/net/minecraft/core/dispenser/DispenseItemBehavior$24.class b/build/_compileJava_2/net/minecraft/core/dispenser/DispenseItemBehavior$24.class new file mode 100644 index 000000000..0e893cf6f Binary files /dev/null and b/build/_compileJava_2/net/minecraft/core/dispenser/DispenseItemBehavior$24.class differ diff --git a/build/_compileJava_2/net/minecraft/core/dispenser/DispenseItemBehavior$25.class b/build/_compileJava_2/net/minecraft/core/dispenser/DispenseItemBehavior$25.class new file mode 100644 index 000000000..ca02e5129 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/core/dispenser/DispenseItemBehavior$25.class differ diff --git a/build/_compileJava_2/net/minecraft/core/dispenser/DispenseItemBehavior$26.class b/build/_compileJava_2/net/minecraft/core/dispenser/DispenseItemBehavior$26.class new file mode 100644 index 000000000..7d268e481 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/core/dispenser/DispenseItemBehavior$26.class differ diff --git a/build/_compileJava_2/net/minecraft/core/dispenser/DispenseItemBehavior$27.class b/build/_compileJava_2/net/minecraft/core/dispenser/DispenseItemBehavior$27.class new file mode 100644 index 000000000..4f4cb1cde Binary files /dev/null and b/build/_compileJava_2/net/minecraft/core/dispenser/DispenseItemBehavior$27.class differ diff --git a/build/_compileJava_2/net/minecraft/core/dispenser/DispenseItemBehavior$3.class b/build/_compileJava_2/net/minecraft/core/dispenser/DispenseItemBehavior$3.class new file mode 100644 index 000000000..b92f8333e Binary files /dev/null and b/build/_compileJava_2/net/minecraft/core/dispenser/DispenseItemBehavior$3.class differ diff --git a/build/_compileJava_2/net/minecraft/core/dispenser/DispenseItemBehavior$4.class b/build/_compileJava_2/net/minecraft/core/dispenser/DispenseItemBehavior$4.class new file mode 100644 index 000000000..e0554926e Binary files /dev/null and b/build/_compileJava_2/net/minecraft/core/dispenser/DispenseItemBehavior$4.class differ diff --git a/build/_compileJava_2/net/minecraft/core/dispenser/DispenseItemBehavior$5.class b/build/_compileJava_2/net/minecraft/core/dispenser/DispenseItemBehavior$5.class new file mode 100644 index 000000000..b7e78db22 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/core/dispenser/DispenseItemBehavior$5.class differ diff --git a/build/_compileJava_2/net/minecraft/core/dispenser/DispenseItemBehavior$6.class b/build/_compileJava_2/net/minecraft/core/dispenser/DispenseItemBehavior$6.class new file mode 100644 index 000000000..12603ca06 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/core/dispenser/DispenseItemBehavior$6.class differ diff --git a/build/_compileJava_2/net/minecraft/core/dispenser/DispenseItemBehavior$7$1.class b/build/_compileJava_2/net/minecraft/core/dispenser/DispenseItemBehavior$7$1.class new file mode 100644 index 000000000..923146d75 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/core/dispenser/DispenseItemBehavior$7$1.class differ diff --git a/build/_compileJava_2/net/minecraft/core/dispenser/DispenseItemBehavior$7.class b/build/_compileJava_2/net/minecraft/core/dispenser/DispenseItemBehavior$7.class new file mode 100644 index 000000000..3acf27ccc Binary files /dev/null and b/build/_compileJava_2/net/minecraft/core/dispenser/DispenseItemBehavior$7.class differ diff --git a/build/_compileJava_2/net/minecraft/core/dispenser/DispenseItemBehavior$8$1.class b/build/_compileJava_2/net/minecraft/core/dispenser/DispenseItemBehavior$8$1.class new file mode 100644 index 000000000..c895a2107 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/core/dispenser/DispenseItemBehavior$8$1.class differ diff --git a/build/_compileJava_2/net/minecraft/core/dispenser/DispenseItemBehavior$8.class b/build/_compileJava_2/net/minecraft/core/dispenser/DispenseItemBehavior$8.class new file mode 100644 index 000000000..ce36ab095 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/core/dispenser/DispenseItemBehavior$8.class differ diff --git a/build/_compileJava_2/net/minecraft/core/dispenser/DispenseItemBehavior$9.class b/build/_compileJava_2/net/minecraft/core/dispenser/DispenseItemBehavior$9.class new file mode 100644 index 000000000..fd959ac36 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/core/dispenser/DispenseItemBehavior$9.class differ diff --git a/build/_compileJava_2/net/minecraft/core/dispenser/DispenseItemBehavior.class b/build/_compileJava_2/net/minecraft/core/dispenser/DispenseItemBehavior.class new file mode 100644 index 000000000..b8bd6418a Binary files /dev/null and b/build/_compileJava_2/net/minecraft/core/dispenser/DispenseItemBehavior.class differ diff --git a/build/_compileJava_2/net/minecraft/core/dispenser/OptionalDispenseItemBehavior.class b/build/_compileJava_2/net/minecraft/core/dispenser/OptionalDispenseItemBehavior.class new file mode 100644 index 000000000..9da1630e3 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/core/dispenser/OptionalDispenseItemBehavior.class differ diff --git a/build/_compileJava_2/net/minecraft/core/dispenser/ShearsDispenseItemBehavior.class b/build/_compileJava_2/net/minecraft/core/dispenser/ShearsDispenseItemBehavior.class new file mode 100644 index 000000000..9fc061cd1 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/core/dispenser/ShearsDispenseItemBehavior.class differ diff --git a/build/_compileJava_2/net/minecraft/core/dispenser/ShulkerBoxDispenseBehavior.class b/build/_compileJava_2/net/minecraft/core/dispenser/ShulkerBoxDispenseBehavior.class new file mode 100644 index 000000000..126719a05 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/core/dispenser/ShulkerBoxDispenseBehavior.class differ diff --git a/build/_compileJava_2/net/minecraft/core/dispenser/package-info.class b/build/_compileJava_2/net/minecraft/core/dispenser/package-info.class new file mode 100644 index 000000000..06cbbc79a Binary files /dev/null and b/build/_compileJava_2/net/minecraft/core/dispenser/package-info.class differ diff --git a/build/_compileJava_2/net/minecraft/core/package-info.class b/build/_compileJava_2/net/minecraft/core/package-info.class new file mode 100644 index 000000000..f7479adba Binary files /dev/null and b/build/_compileJava_2/net/minecraft/core/package-info.class differ diff --git a/build/_compileJava_2/net/minecraft/core/particles/BlockParticleOption$1.class b/build/_compileJava_2/net/minecraft/core/particles/BlockParticleOption$1.class new file mode 100644 index 000000000..da8cbe736 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/core/particles/BlockParticleOption$1.class differ diff --git a/build/_compileJava_2/net/minecraft/core/particles/BlockParticleOption.class b/build/_compileJava_2/net/minecraft/core/particles/BlockParticleOption.class new file mode 100644 index 000000000..49904842c Binary files /dev/null and b/build/_compileJava_2/net/minecraft/core/particles/BlockParticleOption.class differ diff --git a/build/_compileJava_2/net/minecraft/core/particles/DustColorTransitionOptions$1.class b/build/_compileJava_2/net/minecraft/core/particles/DustColorTransitionOptions$1.class new file mode 100644 index 000000000..5a59d2e86 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/core/particles/DustColorTransitionOptions$1.class differ diff --git a/build/_compileJava_2/net/minecraft/core/particles/DustColorTransitionOptions.class b/build/_compileJava_2/net/minecraft/core/particles/DustColorTransitionOptions.class new file mode 100644 index 000000000..e54bd4a8d Binary files /dev/null and b/build/_compileJava_2/net/minecraft/core/particles/DustColorTransitionOptions.class differ diff --git a/build/_compileJava_2/net/minecraft/core/particles/DustParticleOptions$1.class b/build/_compileJava_2/net/minecraft/core/particles/DustParticleOptions$1.class new file mode 100644 index 000000000..6d10c57bb Binary files /dev/null and b/build/_compileJava_2/net/minecraft/core/particles/DustParticleOptions$1.class differ diff --git a/build/_compileJava_2/net/minecraft/core/particles/DustParticleOptions.class b/build/_compileJava_2/net/minecraft/core/particles/DustParticleOptions.class new file mode 100644 index 000000000..a9bbff5e4 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/core/particles/DustParticleOptions.class differ diff --git a/build/_compileJava_2/net/minecraft/core/particles/DustParticleOptionsBase.class b/build/_compileJava_2/net/minecraft/core/particles/DustParticleOptionsBase.class new file mode 100644 index 000000000..f014d27ef Binary files /dev/null and b/build/_compileJava_2/net/minecraft/core/particles/DustParticleOptionsBase.class differ diff --git a/build/_compileJava_2/net/minecraft/core/particles/ItemParticleOption$1.class b/build/_compileJava_2/net/minecraft/core/particles/ItemParticleOption$1.class new file mode 100644 index 000000000..57f468ef1 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/core/particles/ItemParticleOption$1.class differ diff --git a/build/_compileJava_2/net/minecraft/core/particles/ItemParticleOption.class b/build/_compileJava_2/net/minecraft/core/particles/ItemParticleOption.class new file mode 100644 index 000000000..195ef0956 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/core/particles/ItemParticleOption.class differ diff --git a/build/_compileJava_2/net/minecraft/core/particles/ParticleGroup.class b/build/_compileJava_2/net/minecraft/core/particles/ParticleGroup.class new file mode 100644 index 000000000..9c82e3f88 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/core/particles/ParticleGroup.class differ diff --git a/build/_compileJava_2/net/minecraft/core/particles/ParticleOptions$Deserializer.class b/build/_compileJava_2/net/minecraft/core/particles/ParticleOptions$Deserializer.class new file mode 100644 index 000000000..a8b40a948 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/core/particles/ParticleOptions$Deserializer.class differ diff --git a/build/_compileJava_2/net/minecraft/core/particles/ParticleOptions.class b/build/_compileJava_2/net/minecraft/core/particles/ParticleOptions.class new file mode 100644 index 000000000..3aa7069e6 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/core/particles/ParticleOptions.class differ diff --git a/build/_compileJava_2/net/minecraft/core/particles/ParticleType.class b/build/_compileJava_2/net/minecraft/core/particles/ParticleType.class new file mode 100644 index 000000000..60e9685f1 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/core/particles/ParticleType.class differ diff --git a/build/_compileJava_2/net/minecraft/core/particles/ParticleTypes$1.class b/build/_compileJava_2/net/minecraft/core/particles/ParticleTypes$1.class new file mode 100644 index 000000000..bacfd712b Binary files /dev/null and b/build/_compileJava_2/net/minecraft/core/particles/ParticleTypes$1.class differ diff --git a/build/_compileJava_2/net/minecraft/core/particles/ParticleTypes.class b/build/_compileJava_2/net/minecraft/core/particles/ParticleTypes.class new file mode 100644 index 000000000..d44e30754 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/core/particles/ParticleTypes.class differ diff --git a/build/_compileJava_2/net/minecraft/core/particles/SculkChargeParticleOptions$1.class b/build/_compileJava_2/net/minecraft/core/particles/SculkChargeParticleOptions$1.class new file mode 100644 index 000000000..938224e86 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/core/particles/SculkChargeParticleOptions$1.class differ diff --git a/build/_compileJava_2/net/minecraft/core/particles/SculkChargeParticleOptions.class b/build/_compileJava_2/net/minecraft/core/particles/SculkChargeParticleOptions.class new file mode 100644 index 000000000..cff36dd74 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/core/particles/SculkChargeParticleOptions.class differ diff --git a/build/_compileJava_2/net/minecraft/core/particles/ShriekParticleOption$1.class b/build/_compileJava_2/net/minecraft/core/particles/ShriekParticleOption$1.class new file mode 100644 index 000000000..aca208e5b Binary files /dev/null and b/build/_compileJava_2/net/minecraft/core/particles/ShriekParticleOption$1.class differ diff --git a/build/_compileJava_2/net/minecraft/core/particles/ShriekParticleOption.class b/build/_compileJava_2/net/minecraft/core/particles/ShriekParticleOption.class new file mode 100644 index 000000000..231711d20 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/core/particles/ShriekParticleOption.class differ diff --git a/build/_compileJava_2/net/minecraft/core/particles/SimpleParticleType$1.class b/build/_compileJava_2/net/minecraft/core/particles/SimpleParticleType$1.class new file mode 100644 index 000000000..faecb03e4 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/core/particles/SimpleParticleType$1.class differ diff --git a/build/_compileJava_2/net/minecraft/core/particles/SimpleParticleType.class b/build/_compileJava_2/net/minecraft/core/particles/SimpleParticleType.class new file mode 100644 index 000000000..2daab2be8 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/core/particles/SimpleParticleType.class differ diff --git a/build/_compileJava_2/net/minecraft/core/particles/VibrationParticleOption$1.class b/build/_compileJava_2/net/minecraft/core/particles/VibrationParticleOption$1.class new file mode 100644 index 000000000..a411b982c Binary files /dev/null and b/build/_compileJava_2/net/minecraft/core/particles/VibrationParticleOption$1.class differ diff --git a/build/_compileJava_2/net/minecraft/core/particles/VibrationParticleOption.class b/build/_compileJava_2/net/minecraft/core/particles/VibrationParticleOption.class new file mode 100644 index 000000000..bc2bc8a21 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/core/particles/VibrationParticleOption.class differ diff --git a/build/_compileJava_2/net/minecraft/core/particles/package-info.class b/build/_compileJava_2/net/minecraft/core/particles/package-info.class new file mode 100644 index 000000000..aa4fbdff8 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/core/particles/package-info.class differ diff --git a/build/_compileJava_2/net/minecraft/core/registries/BuiltInRegistries$RegistryBootstrap.class b/build/_compileJava_2/net/minecraft/core/registries/BuiltInRegistries$RegistryBootstrap.class new file mode 100644 index 000000000..b9a494a54 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/core/registries/BuiltInRegistries$RegistryBootstrap.class differ diff --git a/build/_compileJava_2/net/minecraft/core/registries/BuiltInRegistries.class b/build/_compileJava_2/net/minecraft/core/registries/BuiltInRegistries.class new file mode 100644 index 000000000..d9a4d49df Binary files /dev/null and b/build/_compileJava_2/net/minecraft/core/registries/BuiltInRegistries.class differ diff --git a/build/_compileJava_2/net/minecraft/core/registries/Registries.class b/build/_compileJava_2/net/minecraft/core/registries/Registries.class new file mode 100644 index 000000000..f62e2f42b Binary files /dev/null and b/build/_compileJava_2/net/minecraft/core/registries/Registries.class differ diff --git a/build/_compileJava_2/net/minecraft/core/registries/package-info.class b/build/_compileJava_2/net/minecraft/core/registries/package-info.class new file mode 100644 index 000000000..b8f2f6a5f Binary files /dev/null and b/build/_compileJava_2/net/minecraft/core/registries/package-info.class differ diff --git a/build/_compileJava_2/net/minecraft/data/BlockFamilies.class b/build/_compileJava_2/net/minecraft/data/BlockFamilies.class new file mode 100644 index 000000000..97ede6e09 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/data/BlockFamilies.class differ diff --git a/build/_compileJava_2/net/minecraft/data/BlockFamily$Builder.class b/build/_compileJava_2/net/minecraft/data/BlockFamily$Builder.class new file mode 100644 index 000000000..2caafbb23 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/data/BlockFamily$Builder.class differ diff --git a/build/_compileJava_2/net/minecraft/data/BlockFamily$Variant.class b/build/_compileJava_2/net/minecraft/data/BlockFamily$Variant.class new file mode 100644 index 000000000..db28020e9 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/data/BlockFamily$Variant.class differ diff --git a/build/_compileJava_2/net/minecraft/data/BlockFamily.class b/build/_compileJava_2/net/minecraft/data/BlockFamily.class new file mode 100644 index 000000000..2cbe9f777 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/data/BlockFamily.class differ diff --git a/build/_compileJava_2/net/minecraft/data/CachedOutput.class b/build/_compileJava_2/net/minecraft/data/CachedOutput.class new file mode 100644 index 000000000..9c8b63fa4 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/data/CachedOutput.class differ diff --git a/build/_compileJava_2/net/minecraft/data/DataGenerator$PackGenerator.class b/build/_compileJava_2/net/minecraft/data/DataGenerator$PackGenerator.class new file mode 100644 index 000000000..49acff0e8 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/data/DataGenerator$PackGenerator.class differ diff --git a/build/_compileJava_2/net/minecraft/data/DataGenerator.class b/build/_compileJava_2/net/minecraft/data/DataGenerator.class new file mode 100644 index 000000000..5b3af9c5a Binary files /dev/null and b/build/_compileJava_2/net/minecraft/data/DataGenerator.class differ diff --git a/build/_compileJava_2/net/minecraft/data/DataProvider$Factory.class b/build/_compileJava_2/net/minecraft/data/DataProvider$Factory.class new file mode 100644 index 000000000..dc68cd59e Binary files /dev/null and b/build/_compileJava_2/net/minecraft/data/DataProvider$Factory.class differ diff --git a/build/_compileJava_2/net/minecraft/data/DataProvider.class b/build/_compileJava_2/net/minecraft/data/DataProvider.class new file mode 100644 index 000000000..3bceae76d Binary files /dev/null and b/build/_compileJava_2/net/minecraft/data/DataProvider.class differ diff --git a/build/_compileJava_2/net/minecraft/data/HashCache$CacheUpdater.class b/build/_compileJava_2/net/minecraft/data/HashCache$CacheUpdater.class new file mode 100644 index 000000000..2697dff21 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/data/HashCache$CacheUpdater.class differ diff --git a/build/_compileJava_2/net/minecraft/data/HashCache$ProviderCache.class b/build/_compileJava_2/net/minecraft/data/HashCache$ProviderCache.class new file mode 100644 index 000000000..d04be8332 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/data/HashCache$ProviderCache.class differ diff --git a/build/_compileJava_2/net/minecraft/data/HashCache$ProviderCacheBuilder.class b/build/_compileJava_2/net/minecraft/data/HashCache$ProviderCacheBuilder.class new file mode 100644 index 000000000..4be0e81f9 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/data/HashCache$ProviderCacheBuilder.class differ diff --git a/build/_compileJava_2/net/minecraft/data/HashCache$UpdateFunction.class b/build/_compileJava_2/net/minecraft/data/HashCache$UpdateFunction.class new file mode 100644 index 000000000..97f2e830d Binary files /dev/null and b/build/_compileJava_2/net/minecraft/data/HashCache$UpdateFunction.class differ diff --git a/build/_compileJava_2/net/minecraft/data/HashCache$UpdateResult.class b/build/_compileJava_2/net/minecraft/data/HashCache$UpdateResult.class new file mode 100644 index 000000000..10f65ccf5 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/data/HashCache$UpdateResult.class differ diff --git a/build/_compileJava_2/net/minecraft/data/HashCache.class b/build/_compileJava_2/net/minecraft/data/HashCache.class new file mode 100644 index 000000000..26a24e22b Binary files /dev/null and b/build/_compileJava_2/net/minecraft/data/HashCache.class differ diff --git a/build/_compileJava_2/net/minecraft/data/Main.class b/build/_compileJava_2/net/minecraft/data/Main.class new file mode 100644 index 000000000..d1f168d27 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/data/Main.class differ diff --git a/build/_compileJava_2/net/minecraft/data/PackOutput$PathProvider.class b/build/_compileJava_2/net/minecraft/data/PackOutput$PathProvider.class new file mode 100644 index 000000000..10ce0cfff Binary files /dev/null and b/build/_compileJava_2/net/minecraft/data/PackOutput$PathProvider.class differ diff --git a/build/_compileJava_2/net/minecraft/data/PackOutput$Target.class b/build/_compileJava_2/net/minecraft/data/PackOutput$Target.class new file mode 100644 index 000000000..4753559ad Binary files /dev/null and b/build/_compileJava_2/net/minecraft/data/PackOutput$Target.class differ diff --git a/build/_compileJava_2/net/minecraft/data/PackOutput.class b/build/_compileJava_2/net/minecraft/data/PackOutput.class new file mode 100644 index 000000000..96bc72e54 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/data/PackOutput.class differ diff --git a/build/_compileJava_2/net/minecraft/data/advancements/AdvancementProvider.class b/build/_compileJava_2/net/minecraft/data/advancements/AdvancementProvider.class new file mode 100644 index 000000000..2be3d3e0e Binary files /dev/null and b/build/_compileJava_2/net/minecraft/data/advancements/AdvancementProvider.class differ diff --git a/build/_compileJava_2/net/minecraft/data/advancements/AdvancementSubProvider.class b/build/_compileJava_2/net/minecraft/data/advancements/AdvancementSubProvider.class new file mode 100644 index 000000000..de90edc84 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/data/advancements/AdvancementSubProvider.class differ diff --git a/build/_compileJava_2/net/minecraft/data/advancements/package-info.class b/build/_compileJava_2/net/minecraft/data/advancements/package-info.class new file mode 100644 index 000000000..060637dfa Binary files /dev/null and b/build/_compileJava_2/net/minecraft/data/advancements/package-info.class differ diff --git a/build/_compileJava_2/net/minecraft/data/advancements/packs/VanillaAdvancementProvider.class b/build/_compileJava_2/net/minecraft/data/advancements/packs/VanillaAdvancementProvider.class new file mode 100644 index 000000000..dfde2e898 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/data/advancements/packs/VanillaAdvancementProvider.class differ diff --git a/build/_compileJava_2/net/minecraft/data/advancements/packs/VanillaAdventureAdvancements.class b/build/_compileJava_2/net/minecraft/data/advancements/packs/VanillaAdventureAdvancements.class new file mode 100644 index 000000000..9079b538c Binary files /dev/null and b/build/_compileJava_2/net/minecraft/data/advancements/packs/VanillaAdventureAdvancements.class differ diff --git a/build/_compileJava_2/net/minecraft/data/advancements/packs/VanillaHusbandryAdvancements.class b/build/_compileJava_2/net/minecraft/data/advancements/packs/VanillaHusbandryAdvancements.class new file mode 100644 index 000000000..f79cc3581 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/data/advancements/packs/VanillaHusbandryAdvancements.class differ diff --git a/build/_compileJava_2/net/minecraft/data/advancements/packs/VanillaNetherAdvancements.class b/build/_compileJava_2/net/minecraft/data/advancements/packs/VanillaNetherAdvancements.class new file mode 100644 index 000000000..eae59fdfa Binary files /dev/null and b/build/_compileJava_2/net/minecraft/data/advancements/packs/VanillaNetherAdvancements.class differ diff --git a/build/_compileJava_2/net/minecraft/data/advancements/packs/VanillaStoryAdvancements.class b/build/_compileJava_2/net/minecraft/data/advancements/packs/VanillaStoryAdvancements.class new file mode 100644 index 000000000..95f79fcd1 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/data/advancements/packs/VanillaStoryAdvancements.class differ diff --git a/build/_compileJava_2/net/minecraft/data/advancements/packs/VanillaTheEndAdvancements.class b/build/_compileJava_2/net/minecraft/data/advancements/packs/VanillaTheEndAdvancements.class new file mode 100644 index 000000000..3d9c04fe1 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/data/advancements/packs/VanillaTheEndAdvancements.class differ diff --git a/build/_compileJava_2/net/minecraft/data/advancements/packs/package-info.class b/build/_compileJava_2/net/minecraft/data/advancements/packs/package-info.class new file mode 100644 index 000000000..67fa823c0 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/data/advancements/packs/package-info.class differ diff --git a/build/_compileJava_2/net/minecraft/data/info/BiomeParametersDumpReport.class b/build/_compileJava_2/net/minecraft/data/info/BiomeParametersDumpReport.class new file mode 100644 index 000000000..42225441a Binary files /dev/null and b/build/_compileJava_2/net/minecraft/data/info/BiomeParametersDumpReport.class differ diff --git a/build/_compileJava_2/net/minecraft/data/info/BlockListReport.class b/build/_compileJava_2/net/minecraft/data/info/BlockListReport.class new file mode 100644 index 000000000..15d3b192c Binary files /dev/null and b/build/_compileJava_2/net/minecraft/data/info/BlockListReport.class differ diff --git a/build/_compileJava_2/net/minecraft/data/info/CommandsReport.class b/build/_compileJava_2/net/minecraft/data/info/CommandsReport.class new file mode 100644 index 000000000..22c121f7c Binary files /dev/null and b/build/_compileJava_2/net/minecraft/data/info/CommandsReport.class differ diff --git a/build/_compileJava_2/net/minecraft/data/info/RegistryDumpReport.class b/build/_compileJava_2/net/minecraft/data/info/RegistryDumpReport.class new file mode 100644 index 000000000..96f126639 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/data/info/RegistryDumpReport.class differ diff --git a/build/_compileJava_2/net/minecraft/data/info/package-info.class b/build/_compileJava_2/net/minecraft/data/info/package-info.class new file mode 100644 index 000000000..c17563c93 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/data/info/package-info.class differ diff --git a/build/_compileJava_2/net/minecraft/data/loot/BlockLootSubProvider.class b/build/_compileJava_2/net/minecraft/data/loot/BlockLootSubProvider.class new file mode 100644 index 000000000..112798099 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/data/loot/BlockLootSubProvider.class differ diff --git a/build/_compileJava_2/net/minecraft/data/loot/EntityLootSubProvider.class b/build/_compileJava_2/net/minecraft/data/loot/EntityLootSubProvider.class new file mode 100644 index 000000000..25cb17ef1 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/data/loot/EntityLootSubProvider.class differ diff --git a/build/_compileJava_2/net/minecraft/data/loot/LootTableProvider$1.class b/build/_compileJava_2/net/minecraft/data/loot/LootTableProvider$1.class new file mode 100644 index 000000000..748d7f5ed Binary files /dev/null and b/build/_compileJava_2/net/minecraft/data/loot/LootTableProvider$1.class differ diff --git a/build/_compileJava_2/net/minecraft/data/loot/LootTableProvider$SubProviderEntry.class b/build/_compileJava_2/net/minecraft/data/loot/LootTableProvider$SubProviderEntry.class new file mode 100644 index 000000000..9a2543975 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/data/loot/LootTableProvider$SubProviderEntry.class differ diff --git a/build/_compileJava_2/net/minecraft/data/loot/LootTableProvider.class b/build/_compileJava_2/net/minecraft/data/loot/LootTableProvider.class new file mode 100644 index 000000000..0d712f091 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/data/loot/LootTableProvider.class differ diff --git a/build/_compileJava_2/net/minecraft/data/loot/LootTableSubProvider.class b/build/_compileJava_2/net/minecraft/data/loot/LootTableSubProvider.class new file mode 100644 index 000000000..1eb6ba0ca Binary files /dev/null and b/build/_compileJava_2/net/minecraft/data/loot/LootTableSubProvider.class differ diff --git a/build/_compileJava_2/net/minecraft/data/loot/package-info.class b/build/_compileJava_2/net/minecraft/data/loot/package-info.class new file mode 100644 index 000000000..fc859ab40 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/data/loot/package-info.class differ diff --git a/build/_compileJava_2/net/minecraft/data/loot/packs/VanillaArchaeologyLoot.class b/build/_compileJava_2/net/minecraft/data/loot/packs/VanillaArchaeologyLoot.class new file mode 100644 index 000000000..3317eb744 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/data/loot/packs/VanillaArchaeologyLoot.class differ diff --git a/build/_compileJava_2/net/minecraft/data/loot/packs/VanillaBlockLoot.class b/build/_compileJava_2/net/minecraft/data/loot/packs/VanillaBlockLoot.class new file mode 100644 index 000000000..4db41e17a Binary files /dev/null and b/build/_compileJava_2/net/minecraft/data/loot/packs/VanillaBlockLoot.class differ diff --git a/build/_compileJava_2/net/minecraft/data/loot/packs/VanillaChestLoot.class b/build/_compileJava_2/net/minecraft/data/loot/packs/VanillaChestLoot.class new file mode 100644 index 000000000..b718eb906 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/data/loot/packs/VanillaChestLoot.class differ diff --git a/build/_compileJava_2/net/minecraft/data/loot/packs/VanillaEntityLoot.class b/build/_compileJava_2/net/minecraft/data/loot/packs/VanillaEntityLoot.class new file mode 100644 index 000000000..880f1ea83 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/data/loot/packs/VanillaEntityLoot.class differ diff --git a/build/_compileJava_2/net/minecraft/data/loot/packs/VanillaFishingLoot.class b/build/_compileJava_2/net/minecraft/data/loot/packs/VanillaFishingLoot.class new file mode 100644 index 000000000..b5949f5f6 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/data/loot/packs/VanillaFishingLoot.class differ diff --git a/build/_compileJava_2/net/minecraft/data/loot/packs/VanillaGiftLoot.class b/build/_compileJava_2/net/minecraft/data/loot/packs/VanillaGiftLoot.class new file mode 100644 index 000000000..85654d85c Binary files /dev/null and b/build/_compileJava_2/net/minecraft/data/loot/packs/VanillaGiftLoot.class differ diff --git a/build/_compileJava_2/net/minecraft/data/loot/packs/VanillaLootTableProvider.class b/build/_compileJava_2/net/minecraft/data/loot/packs/VanillaLootTableProvider.class new file mode 100644 index 000000000..5cc335a3e Binary files /dev/null and b/build/_compileJava_2/net/minecraft/data/loot/packs/VanillaLootTableProvider.class differ diff --git a/build/_compileJava_2/net/minecraft/data/loot/packs/VanillaPiglinBarterLoot.class b/build/_compileJava_2/net/minecraft/data/loot/packs/VanillaPiglinBarterLoot.class new file mode 100644 index 000000000..2b41f62a0 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/data/loot/packs/VanillaPiglinBarterLoot.class differ diff --git a/build/_compileJava_2/net/minecraft/data/loot/packs/package-info.class b/build/_compileJava_2/net/minecraft/data/loot/packs/package-info.class new file mode 100644 index 000000000..a46512096 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/data/loot/packs/package-info.class differ diff --git a/build/_compileJava_2/net/minecraft/data/metadata/PackMetadataGenerator.class b/build/_compileJava_2/net/minecraft/data/metadata/PackMetadataGenerator.class new file mode 100644 index 000000000..4e82f8159 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/data/metadata/PackMetadataGenerator.class differ diff --git a/build/_compileJava_2/net/minecraft/data/metadata/package-info.class b/build/_compileJava_2/net/minecraft/data/metadata/package-info.class new file mode 100644 index 000000000..5cf4b2ef4 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/data/metadata/package-info.class differ diff --git a/build/_compileJava_2/net/minecraft/data/models/BlockModelGenerators$1.class b/build/_compileJava_2/net/minecraft/data/models/BlockModelGenerators$1.class new file mode 100644 index 000000000..2e5d0d486 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/data/models/BlockModelGenerators$1.class differ diff --git a/build/_compileJava_2/net/minecraft/data/models/BlockModelGenerators$BlockEntityModelGenerator.class b/build/_compileJava_2/net/minecraft/data/models/BlockModelGenerators$BlockEntityModelGenerator.class new file mode 100644 index 000000000..e3c329b9a Binary files /dev/null and b/build/_compileJava_2/net/minecraft/data/models/BlockModelGenerators$BlockEntityModelGenerator.class differ diff --git a/build/_compileJava_2/net/minecraft/data/models/BlockModelGenerators$BlockFamilyProvider.class b/build/_compileJava_2/net/minecraft/data/models/BlockModelGenerators$BlockFamilyProvider.class new file mode 100644 index 000000000..f21a8423d Binary files /dev/null and b/build/_compileJava_2/net/minecraft/data/models/BlockModelGenerators$BlockFamilyProvider.class differ diff --git a/build/_compileJava_2/net/minecraft/data/models/BlockModelGenerators$BlockStateGeneratorSupplier.class b/build/_compileJava_2/net/minecraft/data/models/BlockModelGenerators$BlockStateGeneratorSupplier.class new file mode 100644 index 000000000..3a0e4da96 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/data/models/BlockModelGenerators$BlockStateGeneratorSupplier.class differ diff --git a/build/_compileJava_2/net/minecraft/data/models/BlockModelGenerators$BookSlotModelCacheKey.class b/build/_compileJava_2/net/minecraft/data/models/BlockModelGenerators$BookSlotModelCacheKey.class new file mode 100644 index 000000000..85b957340 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/data/models/BlockModelGenerators$BookSlotModelCacheKey.class differ diff --git a/build/_compileJava_2/net/minecraft/data/models/BlockModelGenerators$TintState.class b/build/_compileJava_2/net/minecraft/data/models/BlockModelGenerators$TintState.class new file mode 100644 index 000000000..746ff793b Binary files /dev/null and b/build/_compileJava_2/net/minecraft/data/models/BlockModelGenerators$TintState.class differ diff --git a/build/_compileJava_2/net/minecraft/data/models/BlockModelGenerators$WoodProvider.class b/build/_compileJava_2/net/minecraft/data/models/BlockModelGenerators$WoodProvider.class new file mode 100644 index 000000000..e9eca87fa Binary files /dev/null and b/build/_compileJava_2/net/minecraft/data/models/BlockModelGenerators$WoodProvider.class differ diff --git a/build/_compileJava_2/net/minecraft/data/models/BlockModelGenerators.class b/build/_compileJava_2/net/minecraft/data/models/BlockModelGenerators.class new file mode 100644 index 000000000..9dc675349 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/data/models/BlockModelGenerators.class differ diff --git a/build/_compileJava_2/net/minecraft/data/models/ItemModelGenerators$TrimModelData.class b/build/_compileJava_2/net/minecraft/data/models/ItemModelGenerators$TrimModelData.class new file mode 100644 index 000000000..a9b7d563f Binary files /dev/null and b/build/_compileJava_2/net/minecraft/data/models/ItemModelGenerators$TrimModelData.class differ diff --git a/build/_compileJava_2/net/minecraft/data/models/ItemModelGenerators.class b/build/_compileJava_2/net/minecraft/data/models/ItemModelGenerators.class new file mode 100644 index 000000000..3f182030e Binary files /dev/null and b/build/_compileJava_2/net/minecraft/data/models/ItemModelGenerators.class differ diff --git a/build/_compileJava_2/net/minecraft/data/models/ModelProvider.class b/build/_compileJava_2/net/minecraft/data/models/ModelProvider.class new file mode 100644 index 000000000..795042c35 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/data/models/ModelProvider.class differ diff --git a/build/_compileJava_2/net/minecraft/data/models/blockstates/BlockStateGenerator.class b/build/_compileJava_2/net/minecraft/data/models/blockstates/BlockStateGenerator.class new file mode 100644 index 000000000..1300ed7b9 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/data/models/blockstates/BlockStateGenerator.class differ diff --git a/build/_compileJava_2/net/minecraft/data/models/blockstates/Condition$CompositeCondition.class b/build/_compileJava_2/net/minecraft/data/models/blockstates/Condition$CompositeCondition.class new file mode 100644 index 000000000..7147f9734 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/data/models/blockstates/Condition$CompositeCondition.class differ diff --git a/build/_compileJava_2/net/minecraft/data/models/blockstates/Condition$Operation.class b/build/_compileJava_2/net/minecraft/data/models/blockstates/Condition$Operation.class new file mode 100644 index 000000000..115dd71f2 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/data/models/blockstates/Condition$Operation.class differ diff --git a/build/_compileJava_2/net/minecraft/data/models/blockstates/Condition$TerminalCondition.class b/build/_compileJava_2/net/minecraft/data/models/blockstates/Condition$TerminalCondition.class new file mode 100644 index 000000000..64ec8b7fa Binary files /dev/null and b/build/_compileJava_2/net/minecraft/data/models/blockstates/Condition$TerminalCondition.class differ diff --git a/build/_compileJava_2/net/minecraft/data/models/blockstates/Condition.class b/build/_compileJava_2/net/minecraft/data/models/blockstates/Condition.class new file mode 100644 index 000000000..02feb183d Binary files /dev/null and b/build/_compileJava_2/net/minecraft/data/models/blockstates/Condition.class differ diff --git a/build/_compileJava_2/net/minecraft/data/models/blockstates/MultiPartGenerator$ConditionalEntry.class b/build/_compileJava_2/net/minecraft/data/models/blockstates/MultiPartGenerator$ConditionalEntry.class new file mode 100644 index 000000000..c644a41f6 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/data/models/blockstates/MultiPartGenerator$ConditionalEntry.class differ diff --git a/build/_compileJava_2/net/minecraft/data/models/blockstates/MultiPartGenerator$Entry.class b/build/_compileJava_2/net/minecraft/data/models/blockstates/MultiPartGenerator$Entry.class new file mode 100644 index 000000000..920562444 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/data/models/blockstates/MultiPartGenerator$Entry.class differ diff --git a/build/_compileJava_2/net/minecraft/data/models/blockstates/MultiPartGenerator.class b/build/_compileJava_2/net/minecraft/data/models/blockstates/MultiPartGenerator.class new file mode 100644 index 000000000..767f590e3 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/data/models/blockstates/MultiPartGenerator.class differ diff --git a/build/_compileJava_2/net/minecraft/data/models/blockstates/MultiVariantGenerator.class b/build/_compileJava_2/net/minecraft/data/models/blockstates/MultiVariantGenerator.class new file mode 100644 index 000000000..557f22931 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/data/models/blockstates/MultiVariantGenerator.class differ diff --git a/build/_compileJava_2/net/minecraft/data/models/blockstates/PropertyDispatch$C1.class b/build/_compileJava_2/net/minecraft/data/models/blockstates/PropertyDispatch$C1.class new file mode 100644 index 000000000..4a9107b6f Binary files /dev/null and b/build/_compileJava_2/net/minecraft/data/models/blockstates/PropertyDispatch$C1.class differ diff --git a/build/_compileJava_2/net/minecraft/data/models/blockstates/PropertyDispatch$C2.class b/build/_compileJava_2/net/minecraft/data/models/blockstates/PropertyDispatch$C2.class new file mode 100644 index 000000000..a96f44a0d Binary files /dev/null and b/build/_compileJava_2/net/minecraft/data/models/blockstates/PropertyDispatch$C2.class differ diff --git a/build/_compileJava_2/net/minecraft/data/models/blockstates/PropertyDispatch$C3.class b/build/_compileJava_2/net/minecraft/data/models/blockstates/PropertyDispatch$C3.class new file mode 100644 index 000000000..cdd04a793 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/data/models/blockstates/PropertyDispatch$C3.class differ diff --git a/build/_compileJava_2/net/minecraft/data/models/blockstates/PropertyDispatch$C4.class b/build/_compileJava_2/net/minecraft/data/models/blockstates/PropertyDispatch$C4.class new file mode 100644 index 000000000..0cb4c41ac Binary files /dev/null and b/build/_compileJava_2/net/minecraft/data/models/blockstates/PropertyDispatch$C4.class differ diff --git a/build/_compileJava_2/net/minecraft/data/models/blockstates/PropertyDispatch$C5.class b/build/_compileJava_2/net/minecraft/data/models/blockstates/PropertyDispatch$C5.class new file mode 100644 index 000000000..16bdb2705 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/data/models/blockstates/PropertyDispatch$C5.class differ diff --git a/build/_compileJava_2/net/minecraft/data/models/blockstates/PropertyDispatch$PentaFunction.class b/build/_compileJava_2/net/minecraft/data/models/blockstates/PropertyDispatch$PentaFunction.class new file mode 100644 index 000000000..62f4501dc Binary files /dev/null and b/build/_compileJava_2/net/minecraft/data/models/blockstates/PropertyDispatch$PentaFunction.class differ diff --git a/build/_compileJava_2/net/minecraft/data/models/blockstates/PropertyDispatch$QuadFunction.class b/build/_compileJava_2/net/minecraft/data/models/blockstates/PropertyDispatch$QuadFunction.class new file mode 100644 index 000000000..372b5599d Binary files /dev/null and b/build/_compileJava_2/net/minecraft/data/models/blockstates/PropertyDispatch$QuadFunction.class differ diff --git a/build/_compileJava_2/net/minecraft/data/models/blockstates/PropertyDispatch$TriFunction.class b/build/_compileJava_2/net/minecraft/data/models/blockstates/PropertyDispatch$TriFunction.class new file mode 100644 index 000000000..45b827a3b Binary files /dev/null and b/build/_compileJava_2/net/minecraft/data/models/blockstates/PropertyDispatch$TriFunction.class differ diff --git a/build/_compileJava_2/net/minecraft/data/models/blockstates/PropertyDispatch.class b/build/_compileJava_2/net/minecraft/data/models/blockstates/PropertyDispatch.class new file mode 100644 index 000000000..75b6cb271 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/data/models/blockstates/PropertyDispatch.class differ diff --git a/build/_compileJava_2/net/minecraft/data/models/blockstates/Selector.class b/build/_compileJava_2/net/minecraft/data/models/blockstates/Selector.class new file mode 100644 index 000000000..170fed62c Binary files /dev/null and b/build/_compileJava_2/net/minecraft/data/models/blockstates/Selector.class differ diff --git a/build/_compileJava_2/net/minecraft/data/models/blockstates/Variant.class b/build/_compileJava_2/net/minecraft/data/models/blockstates/Variant.class new file mode 100644 index 000000000..b424cbacd Binary files /dev/null and b/build/_compileJava_2/net/minecraft/data/models/blockstates/Variant.class differ diff --git a/build/_compileJava_2/net/minecraft/data/models/blockstates/VariantProperties$Rotation.class b/build/_compileJava_2/net/minecraft/data/models/blockstates/VariantProperties$Rotation.class new file mode 100644 index 000000000..b9097b284 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/data/models/blockstates/VariantProperties$Rotation.class differ diff --git a/build/_compileJava_2/net/minecraft/data/models/blockstates/VariantProperties.class b/build/_compileJava_2/net/minecraft/data/models/blockstates/VariantProperties.class new file mode 100644 index 000000000..413662903 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/data/models/blockstates/VariantProperties.class differ diff --git a/build/_compileJava_2/net/minecraft/data/models/blockstates/VariantProperty$Value.class b/build/_compileJava_2/net/minecraft/data/models/blockstates/VariantProperty$Value.class new file mode 100644 index 000000000..d613ea105 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/data/models/blockstates/VariantProperty$Value.class differ diff --git a/build/_compileJava_2/net/minecraft/data/models/blockstates/VariantProperty.class b/build/_compileJava_2/net/minecraft/data/models/blockstates/VariantProperty.class new file mode 100644 index 000000000..bbf3570f5 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/data/models/blockstates/VariantProperty.class differ diff --git a/build/_compileJava_2/net/minecraft/data/models/blockstates/package-info.class b/build/_compileJava_2/net/minecraft/data/models/blockstates/package-info.class new file mode 100644 index 000000000..d0dd1e949 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/data/models/blockstates/package-info.class differ diff --git a/build/_compileJava_2/net/minecraft/data/models/model/DelegatedModel.class b/build/_compileJava_2/net/minecraft/data/models/model/DelegatedModel.class new file mode 100644 index 000000000..bfe00ede7 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/data/models/model/DelegatedModel.class differ diff --git a/build/_compileJava_2/net/minecraft/data/models/model/ModelLocationUtils.class b/build/_compileJava_2/net/minecraft/data/models/model/ModelLocationUtils.class new file mode 100644 index 000000000..ba0527ebf Binary files /dev/null and b/build/_compileJava_2/net/minecraft/data/models/model/ModelLocationUtils.class differ diff --git a/build/_compileJava_2/net/minecraft/data/models/model/ModelTemplate$JsonFactory.class b/build/_compileJava_2/net/minecraft/data/models/model/ModelTemplate$JsonFactory.class new file mode 100644 index 000000000..2a7220297 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/data/models/model/ModelTemplate$JsonFactory.class differ diff --git a/build/_compileJava_2/net/minecraft/data/models/model/ModelTemplate.class b/build/_compileJava_2/net/minecraft/data/models/model/ModelTemplate.class new file mode 100644 index 000000000..4d19ec1db Binary files /dev/null and b/build/_compileJava_2/net/minecraft/data/models/model/ModelTemplate.class differ diff --git a/build/_compileJava_2/net/minecraft/data/models/model/ModelTemplates.class b/build/_compileJava_2/net/minecraft/data/models/model/ModelTemplates.class new file mode 100644 index 000000000..6f4b8912e Binary files /dev/null and b/build/_compileJava_2/net/minecraft/data/models/model/ModelTemplates.class differ diff --git a/build/_compileJava_2/net/minecraft/data/models/model/TextureMapping.class b/build/_compileJava_2/net/minecraft/data/models/model/TextureMapping.class new file mode 100644 index 000000000..e7bc82f44 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/data/models/model/TextureMapping.class differ diff --git a/build/_compileJava_2/net/minecraft/data/models/model/TextureSlot.class b/build/_compileJava_2/net/minecraft/data/models/model/TextureSlot.class new file mode 100644 index 000000000..57c833869 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/data/models/model/TextureSlot.class differ diff --git a/build/_compileJava_2/net/minecraft/data/models/model/TexturedModel$Provider.class b/build/_compileJava_2/net/minecraft/data/models/model/TexturedModel$Provider.class new file mode 100644 index 000000000..9a63702a7 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/data/models/model/TexturedModel$Provider.class differ diff --git a/build/_compileJava_2/net/minecraft/data/models/model/TexturedModel.class b/build/_compileJava_2/net/minecraft/data/models/model/TexturedModel.class new file mode 100644 index 000000000..6487c3825 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/data/models/model/TexturedModel.class differ diff --git a/build/_compileJava_2/net/minecraft/data/models/model/package-info.class b/build/_compileJava_2/net/minecraft/data/models/model/package-info.class new file mode 100644 index 000000000..e6683b3dc Binary files /dev/null and b/build/_compileJava_2/net/minecraft/data/models/model/package-info.class differ diff --git a/build/_compileJava_2/net/minecraft/data/models/package-info.class b/build/_compileJava_2/net/minecraft/data/models/package-info.class new file mode 100644 index 000000000..b14b456a2 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/data/models/package-info.class differ diff --git a/build/_compileJava_2/net/minecraft/data/package-info.class b/build/_compileJava_2/net/minecraft/data/package-info.class new file mode 100644 index 000000000..8e1344ae1 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/data/package-info.class differ diff --git a/build/_compileJava_2/net/minecraft/data/recipes/CraftingRecipeBuilder$1.class b/build/_compileJava_2/net/minecraft/data/recipes/CraftingRecipeBuilder$1.class new file mode 100644 index 000000000..1c3fe4f16 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/data/recipes/CraftingRecipeBuilder$1.class differ diff --git a/build/_compileJava_2/net/minecraft/data/recipes/CraftingRecipeBuilder$CraftingResult.class b/build/_compileJava_2/net/minecraft/data/recipes/CraftingRecipeBuilder$CraftingResult.class new file mode 100644 index 000000000..b76ee2c32 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/data/recipes/CraftingRecipeBuilder$CraftingResult.class differ diff --git a/build/_compileJava_2/net/minecraft/data/recipes/CraftingRecipeBuilder.class b/build/_compileJava_2/net/minecraft/data/recipes/CraftingRecipeBuilder.class new file mode 100644 index 000000000..153b053cd Binary files /dev/null and b/build/_compileJava_2/net/minecraft/data/recipes/CraftingRecipeBuilder.class differ diff --git a/build/_compileJava_2/net/minecraft/data/recipes/FinishedRecipe.class b/build/_compileJava_2/net/minecraft/data/recipes/FinishedRecipe.class new file mode 100644 index 000000000..44e81f436 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/data/recipes/FinishedRecipe.class differ diff --git a/build/_compileJava_2/net/minecraft/data/recipes/RecipeBuilder.class b/build/_compileJava_2/net/minecraft/data/recipes/RecipeBuilder.class new file mode 100644 index 000000000..3a50b9e42 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/data/recipes/RecipeBuilder.class differ diff --git a/build/_compileJava_2/net/minecraft/data/recipes/RecipeCategory.class b/build/_compileJava_2/net/minecraft/data/recipes/RecipeCategory.class new file mode 100644 index 000000000..fdb15fbb8 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/data/recipes/RecipeCategory.class differ diff --git a/build/_compileJava_2/net/minecraft/data/recipes/RecipeProvider.class b/build/_compileJava_2/net/minecraft/data/recipes/RecipeProvider.class new file mode 100644 index 000000000..d2c093e9b Binary files /dev/null and b/build/_compileJava_2/net/minecraft/data/recipes/RecipeProvider.class differ diff --git a/build/_compileJava_2/net/minecraft/data/recipes/ShapedRecipeBuilder$Result.class b/build/_compileJava_2/net/minecraft/data/recipes/ShapedRecipeBuilder$Result.class new file mode 100644 index 000000000..190dd826b Binary files /dev/null and b/build/_compileJava_2/net/minecraft/data/recipes/ShapedRecipeBuilder$Result.class differ diff --git a/build/_compileJava_2/net/minecraft/data/recipes/ShapedRecipeBuilder.class b/build/_compileJava_2/net/minecraft/data/recipes/ShapedRecipeBuilder.class new file mode 100644 index 000000000..d2f27a00e Binary files /dev/null and b/build/_compileJava_2/net/minecraft/data/recipes/ShapedRecipeBuilder.class differ diff --git a/build/_compileJava_2/net/minecraft/data/recipes/ShapelessRecipeBuilder$Result.class b/build/_compileJava_2/net/minecraft/data/recipes/ShapelessRecipeBuilder$Result.class new file mode 100644 index 000000000..04a3338d9 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/data/recipes/ShapelessRecipeBuilder$Result.class differ diff --git a/build/_compileJava_2/net/minecraft/data/recipes/ShapelessRecipeBuilder.class b/build/_compileJava_2/net/minecraft/data/recipes/ShapelessRecipeBuilder.class new file mode 100644 index 000000000..63d90766c Binary files /dev/null and b/build/_compileJava_2/net/minecraft/data/recipes/ShapelessRecipeBuilder.class differ diff --git a/build/_compileJava_2/net/minecraft/data/recipes/SimpleCookingRecipeBuilder$Result.class b/build/_compileJava_2/net/minecraft/data/recipes/SimpleCookingRecipeBuilder$Result.class new file mode 100644 index 000000000..20a0dbebe Binary files /dev/null and b/build/_compileJava_2/net/minecraft/data/recipes/SimpleCookingRecipeBuilder$Result.class differ diff --git a/build/_compileJava_2/net/minecraft/data/recipes/SimpleCookingRecipeBuilder.class b/build/_compileJava_2/net/minecraft/data/recipes/SimpleCookingRecipeBuilder.class new file mode 100644 index 000000000..172256ea5 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/data/recipes/SimpleCookingRecipeBuilder.class differ diff --git a/build/_compileJava_2/net/minecraft/data/recipes/SingleItemRecipeBuilder$Result.class b/build/_compileJava_2/net/minecraft/data/recipes/SingleItemRecipeBuilder$Result.class new file mode 100644 index 000000000..803dabbc5 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/data/recipes/SingleItemRecipeBuilder$Result.class differ diff --git a/build/_compileJava_2/net/minecraft/data/recipes/SingleItemRecipeBuilder.class b/build/_compileJava_2/net/minecraft/data/recipes/SingleItemRecipeBuilder.class new file mode 100644 index 000000000..ada271b9a Binary files /dev/null and b/build/_compileJava_2/net/minecraft/data/recipes/SingleItemRecipeBuilder.class differ diff --git a/build/_compileJava_2/net/minecraft/data/recipes/SmithingTransformRecipeBuilder$Result.class b/build/_compileJava_2/net/minecraft/data/recipes/SmithingTransformRecipeBuilder$Result.class new file mode 100644 index 000000000..59b6da6af Binary files /dev/null and b/build/_compileJava_2/net/minecraft/data/recipes/SmithingTransformRecipeBuilder$Result.class differ diff --git a/build/_compileJava_2/net/minecraft/data/recipes/SmithingTransformRecipeBuilder.class b/build/_compileJava_2/net/minecraft/data/recipes/SmithingTransformRecipeBuilder.class new file mode 100644 index 000000000..554836f26 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/data/recipes/SmithingTransformRecipeBuilder.class differ diff --git a/build/_compileJava_2/net/minecraft/data/recipes/SmithingTrimRecipeBuilder$Result.class b/build/_compileJava_2/net/minecraft/data/recipes/SmithingTrimRecipeBuilder$Result.class new file mode 100644 index 000000000..ea7d82ba4 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/data/recipes/SmithingTrimRecipeBuilder$Result.class differ diff --git a/build/_compileJava_2/net/minecraft/data/recipes/SmithingTrimRecipeBuilder.class b/build/_compileJava_2/net/minecraft/data/recipes/SmithingTrimRecipeBuilder.class new file mode 100644 index 000000000..03cd1403f Binary files /dev/null and b/build/_compileJava_2/net/minecraft/data/recipes/SmithingTrimRecipeBuilder.class differ diff --git a/build/_compileJava_2/net/minecraft/data/recipes/SpecialRecipeBuilder$1.class b/build/_compileJava_2/net/minecraft/data/recipes/SpecialRecipeBuilder$1.class new file mode 100644 index 000000000..a577866f4 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/data/recipes/SpecialRecipeBuilder$1.class differ diff --git a/build/_compileJava_2/net/minecraft/data/recipes/SpecialRecipeBuilder.class b/build/_compileJava_2/net/minecraft/data/recipes/SpecialRecipeBuilder.class new file mode 100644 index 000000000..2d2851a05 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/data/recipes/SpecialRecipeBuilder.class differ diff --git a/build/_compileJava_2/net/minecraft/data/recipes/package-info.class b/build/_compileJava_2/net/minecraft/data/recipes/package-info.class new file mode 100644 index 000000000..55aefeef5 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/data/recipes/package-info.class differ diff --git a/build/_compileJava_2/net/minecraft/data/recipes/packs/BundleRecipeProvider.class b/build/_compileJava_2/net/minecraft/data/recipes/packs/BundleRecipeProvider.class new file mode 100644 index 000000000..2c57ba057 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/data/recipes/packs/BundleRecipeProvider.class differ diff --git a/build/_compileJava_2/net/minecraft/data/recipes/packs/VanillaRecipeProvider.class b/build/_compileJava_2/net/minecraft/data/recipes/packs/VanillaRecipeProvider.class new file mode 100644 index 000000000..ca5827136 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/data/recipes/packs/VanillaRecipeProvider.class differ diff --git a/build/_compileJava_2/net/minecraft/data/recipes/packs/package-info.class b/build/_compileJava_2/net/minecraft/data/recipes/packs/package-info.class new file mode 100644 index 000000000..403d6d847 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/data/recipes/packs/package-info.class differ diff --git a/build/_compileJava_2/net/minecraft/data/registries/RegistriesDatapackGenerator.class b/build/_compileJava_2/net/minecraft/data/registries/RegistriesDatapackGenerator.class new file mode 100644 index 000000000..fbd72ee58 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/data/registries/RegistriesDatapackGenerator.class differ diff --git a/build/_compileJava_2/net/minecraft/data/registries/VanillaRegistries.class b/build/_compileJava_2/net/minecraft/data/registries/VanillaRegistries.class new file mode 100644 index 000000000..7e80657b7 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/data/registries/VanillaRegistries.class differ diff --git a/build/_compileJava_2/net/minecraft/data/registries/package-info.class b/build/_compileJava_2/net/minecraft/data/registries/package-info.class new file mode 100644 index 000000000..e3a56e24b Binary files /dev/null and b/build/_compileJava_2/net/minecraft/data/registries/package-info.class differ diff --git a/build/_compileJava_2/net/minecraft/data/structures/NbtToSnbt.class b/build/_compileJava_2/net/minecraft/data/structures/NbtToSnbt.class new file mode 100644 index 000000000..464f6ab22 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/data/structures/NbtToSnbt.class differ diff --git a/build/_compileJava_2/net/minecraft/data/structures/SnbtToNbt$Filter.class b/build/_compileJava_2/net/minecraft/data/structures/SnbtToNbt$Filter.class new file mode 100644 index 000000000..5d03df769 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/data/structures/SnbtToNbt$Filter.class differ diff --git a/build/_compileJava_2/net/minecraft/data/structures/SnbtToNbt$StructureConversionException.class b/build/_compileJava_2/net/minecraft/data/structures/SnbtToNbt$StructureConversionException.class new file mode 100644 index 000000000..a35e306e9 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/data/structures/SnbtToNbt$StructureConversionException.class differ diff --git a/build/_compileJava_2/net/minecraft/data/structures/SnbtToNbt$TaskResult.class b/build/_compileJava_2/net/minecraft/data/structures/SnbtToNbt$TaskResult.class new file mode 100644 index 000000000..559e3fb00 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/data/structures/SnbtToNbt$TaskResult.class differ diff --git a/build/_compileJava_2/net/minecraft/data/structures/SnbtToNbt.class b/build/_compileJava_2/net/minecraft/data/structures/SnbtToNbt.class new file mode 100644 index 000000000..6320b574b Binary files /dev/null and b/build/_compileJava_2/net/minecraft/data/structures/SnbtToNbt.class differ diff --git a/build/_compileJava_2/net/minecraft/data/structures/StructureUpdater.class b/build/_compileJava_2/net/minecraft/data/structures/StructureUpdater.class new file mode 100644 index 000000000..b628c0808 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/data/structures/StructureUpdater.class differ diff --git a/build/_compileJava_2/net/minecraft/data/structures/package-info.class b/build/_compileJava_2/net/minecraft/data/structures/package-info.class new file mode 100644 index 000000000..72502a93a Binary files /dev/null and b/build/_compileJava_2/net/minecraft/data/structures/package-info.class differ diff --git a/build/_compileJava_2/net/minecraft/data/tags/BannerPatternTagsProvider.class b/build/_compileJava_2/net/minecraft/data/tags/BannerPatternTagsProvider.class new file mode 100644 index 000000000..5aeda17c3 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/data/tags/BannerPatternTagsProvider.class differ diff --git a/build/_compileJava_2/net/minecraft/data/tags/BiomeTagsProvider.class b/build/_compileJava_2/net/minecraft/data/tags/BiomeTagsProvider.class new file mode 100644 index 000000000..21b7e00ca Binary files /dev/null and b/build/_compileJava_2/net/minecraft/data/tags/BiomeTagsProvider.class differ diff --git a/build/_compileJava_2/net/minecraft/data/tags/CatVariantTagsProvider.class b/build/_compileJava_2/net/minecraft/data/tags/CatVariantTagsProvider.class new file mode 100644 index 000000000..61532c8c6 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/data/tags/CatVariantTagsProvider.class differ diff --git a/build/_compileJava_2/net/minecraft/data/tags/DamageTypeTagsProvider.class b/build/_compileJava_2/net/minecraft/data/tags/DamageTypeTagsProvider.class new file mode 100644 index 000000000..7749c0ccd Binary files /dev/null and b/build/_compileJava_2/net/minecraft/data/tags/DamageTypeTagsProvider.class differ diff --git a/build/_compileJava_2/net/minecraft/data/tags/EntityTypeTagsProvider.class b/build/_compileJava_2/net/minecraft/data/tags/EntityTypeTagsProvider.class new file mode 100644 index 000000000..d89118373 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/data/tags/EntityTypeTagsProvider.class differ diff --git a/build/_compileJava_2/net/minecraft/data/tags/FlatLevelGeneratorPresetTagsProvider.class b/build/_compileJava_2/net/minecraft/data/tags/FlatLevelGeneratorPresetTagsProvider.class new file mode 100644 index 000000000..771133cc7 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/data/tags/FlatLevelGeneratorPresetTagsProvider.class differ diff --git a/build/_compileJava_2/net/minecraft/data/tags/FluidTagsProvider.class b/build/_compileJava_2/net/minecraft/data/tags/FluidTagsProvider.class new file mode 100644 index 000000000..945c0a428 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/data/tags/FluidTagsProvider.class differ diff --git a/build/_compileJava_2/net/minecraft/data/tags/GameEventTagsProvider.class b/build/_compileJava_2/net/minecraft/data/tags/GameEventTagsProvider.class new file mode 100644 index 000000000..534b845ef Binary files /dev/null and b/build/_compileJava_2/net/minecraft/data/tags/GameEventTagsProvider.class differ diff --git a/build/_compileJava_2/net/minecraft/data/tags/InstrumentTagsProvider.class b/build/_compileJava_2/net/minecraft/data/tags/InstrumentTagsProvider.class new file mode 100644 index 000000000..01708647c Binary files /dev/null and b/build/_compileJava_2/net/minecraft/data/tags/InstrumentTagsProvider.class differ diff --git a/build/_compileJava_2/net/minecraft/data/tags/IntrinsicHolderTagsProvider$IntrinsicTagAppender.class b/build/_compileJava_2/net/minecraft/data/tags/IntrinsicHolderTagsProvider$IntrinsicTagAppender.class new file mode 100644 index 000000000..b1db200d9 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/data/tags/IntrinsicHolderTagsProvider$IntrinsicTagAppender.class differ diff --git a/build/_compileJava_2/net/minecraft/data/tags/IntrinsicHolderTagsProvider.class b/build/_compileJava_2/net/minecraft/data/tags/IntrinsicHolderTagsProvider.class new file mode 100644 index 000000000..f986cc0a6 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/data/tags/IntrinsicHolderTagsProvider.class differ diff --git a/build/_compileJava_2/net/minecraft/data/tags/ItemTagsProvider.class b/build/_compileJava_2/net/minecraft/data/tags/ItemTagsProvider.class new file mode 100644 index 000000000..17e85a330 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/data/tags/ItemTagsProvider.class differ diff --git a/build/_compileJava_2/net/minecraft/data/tags/PaintingVariantTagsProvider.class b/build/_compileJava_2/net/minecraft/data/tags/PaintingVariantTagsProvider.class new file mode 100644 index 000000000..053a877a8 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/data/tags/PaintingVariantTagsProvider.class differ diff --git a/build/_compileJava_2/net/minecraft/data/tags/PoiTypeTagsProvider.class b/build/_compileJava_2/net/minecraft/data/tags/PoiTypeTagsProvider.class new file mode 100644 index 000000000..1415e9c40 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/data/tags/PoiTypeTagsProvider.class differ diff --git a/build/_compileJava_2/net/minecraft/data/tags/StructureTagsProvider.class b/build/_compileJava_2/net/minecraft/data/tags/StructureTagsProvider.class new file mode 100644 index 000000000..e9204e622 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/data/tags/StructureTagsProvider.class differ diff --git a/build/_compileJava_2/net/minecraft/data/tags/TagsProvider$1CombinedData.class b/build/_compileJava_2/net/minecraft/data/tags/TagsProvider$1CombinedData.class new file mode 100644 index 000000000..150c14f07 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/data/tags/TagsProvider$1CombinedData.class differ diff --git a/build/_compileJava_2/net/minecraft/data/tags/TagsProvider$TagAppender.class b/build/_compileJava_2/net/minecraft/data/tags/TagsProvider$TagAppender.class new file mode 100644 index 000000000..dd4d9c08a Binary files /dev/null and b/build/_compileJava_2/net/minecraft/data/tags/TagsProvider$TagAppender.class differ diff --git a/build/_compileJava_2/net/minecraft/data/tags/TagsProvider$TagLookup.class b/build/_compileJava_2/net/minecraft/data/tags/TagsProvider$TagLookup.class new file mode 100644 index 000000000..5f0c0d738 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/data/tags/TagsProvider$TagLookup.class differ diff --git a/build/_compileJava_2/net/minecraft/data/tags/TagsProvider.class b/build/_compileJava_2/net/minecraft/data/tags/TagsProvider.class new file mode 100644 index 000000000..c2b7b6779 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/data/tags/TagsProvider.class differ diff --git a/build/_compileJava_2/net/minecraft/data/tags/VanillaBlockTagsProvider.class b/build/_compileJava_2/net/minecraft/data/tags/VanillaBlockTagsProvider.class new file mode 100644 index 000000000..0e76d1235 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/data/tags/VanillaBlockTagsProvider.class differ diff --git a/build/_compileJava_2/net/minecraft/data/tags/VanillaItemTagsProvider.class b/build/_compileJava_2/net/minecraft/data/tags/VanillaItemTagsProvider.class new file mode 100644 index 000000000..3db5c573d Binary files /dev/null and b/build/_compileJava_2/net/minecraft/data/tags/VanillaItemTagsProvider.class differ diff --git a/build/_compileJava_2/net/minecraft/data/tags/WorldPresetTagsProvider.class b/build/_compileJava_2/net/minecraft/data/tags/WorldPresetTagsProvider.class new file mode 100644 index 000000000..62bc0a002 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/data/tags/WorldPresetTagsProvider.class differ diff --git a/build/_compileJava_2/net/minecraft/data/tags/package-info.class b/build/_compileJava_2/net/minecraft/data/tags/package-info.class new file mode 100644 index 000000000..b224f330b Binary files /dev/null and b/build/_compileJava_2/net/minecraft/data/tags/package-info.class differ diff --git a/build/_compileJava_2/net/minecraft/data/worldgen/AncientCityStructurePieces.class b/build/_compileJava_2/net/minecraft/data/worldgen/AncientCityStructurePieces.class new file mode 100644 index 000000000..0c45ba8b8 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/data/worldgen/AncientCityStructurePieces.class differ diff --git a/build/_compileJava_2/net/minecraft/data/worldgen/AncientCityStructurePools.class b/build/_compileJava_2/net/minecraft/data/worldgen/AncientCityStructurePools.class new file mode 100644 index 000000000..761fe1023 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/data/worldgen/AncientCityStructurePools.class differ diff --git a/build/_compileJava_2/net/minecraft/data/worldgen/BastionBridgePools.class b/build/_compileJava_2/net/minecraft/data/worldgen/BastionBridgePools.class new file mode 100644 index 000000000..771965646 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/data/worldgen/BastionBridgePools.class differ diff --git a/build/_compileJava_2/net/minecraft/data/worldgen/BastionHoglinStablePools.class b/build/_compileJava_2/net/minecraft/data/worldgen/BastionHoglinStablePools.class new file mode 100644 index 000000000..638c6c38a Binary files /dev/null and b/build/_compileJava_2/net/minecraft/data/worldgen/BastionHoglinStablePools.class differ diff --git a/build/_compileJava_2/net/minecraft/data/worldgen/BastionHousingUnitsPools.class b/build/_compileJava_2/net/minecraft/data/worldgen/BastionHousingUnitsPools.class new file mode 100644 index 000000000..8d828f105 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/data/worldgen/BastionHousingUnitsPools.class differ diff --git a/build/_compileJava_2/net/minecraft/data/worldgen/BastionPieces.class b/build/_compileJava_2/net/minecraft/data/worldgen/BastionPieces.class new file mode 100644 index 000000000..0e6795f43 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/data/worldgen/BastionPieces.class differ diff --git a/build/_compileJava_2/net/minecraft/data/worldgen/BastionSharedPools.class b/build/_compileJava_2/net/minecraft/data/worldgen/BastionSharedPools.class new file mode 100644 index 000000000..80f34dd52 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/data/worldgen/BastionSharedPools.class differ diff --git a/build/_compileJava_2/net/minecraft/data/worldgen/BastionTreasureRoomPools.class b/build/_compileJava_2/net/minecraft/data/worldgen/BastionTreasureRoomPools.class new file mode 100644 index 000000000..ca8dc7655 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/data/worldgen/BastionTreasureRoomPools.class differ diff --git a/build/_compileJava_2/net/minecraft/data/worldgen/BiomeDefaultFeatures.class b/build/_compileJava_2/net/minecraft/data/worldgen/BiomeDefaultFeatures.class new file mode 100644 index 000000000..550b50619 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/data/worldgen/BiomeDefaultFeatures.class differ diff --git a/build/_compileJava_2/net/minecraft/data/worldgen/BootstapContext.class b/build/_compileJava_2/net/minecraft/data/worldgen/BootstapContext.class new file mode 100644 index 000000000..89b6f9bc4 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/data/worldgen/BootstapContext.class differ diff --git a/build/_compileJava_2/net/minecraft/data/worldgen/Carvers.class b/build/_compileJava_2/net/minecraft/data/worldgen/Carvers.class new file mode 100644 index 000000000..dec7c1863 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/data/worldgen/Carvers.class differ diff --git a/build/_compileJava_2/net/minecraft/data/worldgen/DesertVillagePools.class b/build/_compileJava_2/net/minecraft/data/worldgen/DesertVillagePools.class new file mode 100644 index 000000000..e9dd442f4 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/data/worldgen/DesertVillagePools.class differ diff --git a/build/_compileJava_2/net/minecraft/data/worldgen/DimensionTypes.class b/build/_compileJava_2/net/minecraft/data/worldgen/DimensionTypes.class new file mode 100644 index 000000000..18923d340 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/data/worldgen/DimensionTypes.class differ diff --git a/build/_compileJava_2/net/minecraft/data/worldgen/NoiseData.class b/build/_compileJava_2/net/minecraft/data/worldgen/NoiseData.class new file mode 100644 index 000000000..782ec1765 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/data/worldgen/NoiseData.class differ diff --git a/build/_compileJava_2/net/minecraft/data/worldgen/PillagerOutpostPools.class b/build/_compileJava_2/net/minecraft/data/worldgen/PillagerOutpostPools.class new file mode 100644 index 000000000..ac8608905 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/data/worldgen/PillagerOutpostPools.class differ diff --git a/build/_compileJava_2/net/minecraft/data/worldgen/PlainVillagePools.class b/build/_compileJava_2/net/minecraft/data/worldgen/PlainVillagePools.class new file mode 100644 index 000000000..ff35692b7 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/data/worldgen/PlainVillagePools.class differ diff --git a/build/_compileJava_2/net/minecraft/data/worldgen/Pools.class b/build/_compileJava_2/net/minecraft/data/worldgen/Pools.class new file mode 100644 index 000000000..302dd92a2 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/data/worldgen/Pools.class differ diff --git a/build/_compileJava_2/net/minecraft/data/worldgen/ProcessorLists.class b/build/_compileJava_2/net/minecraft/data/worldgen/ProcessorLists.class new file mode 100644 index 000000000..3856a6b0d Binary files /dev/null and b/build/_compileJava_2/net/minecraft/data/worldgen/ProcessorLists.class differ diff --git a/build/_compileJava_2/net/minecraft/data/worldgen/SavannaVillagePools.class b/build/_compileJava_2/net/minecraft/data/worldgen/SavannaVillagePools.class new file mode 100644 index 000000000..93a199843 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/data/worldgen/SavannaVillagePools.class differ diff --git a/build/_compileJava_2/net/minecraft/data/worldgen/SnowyVillagePools.class b/build/_compileJava_2/net/minecraft/data/worldgen/SnowyVillagePools.class new file mode 100644 index 000000000..29f7eb669 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/data/worldgen/SnowyVillagePools.class differ diff --git a/build/_compileJava_2/net/minecraft/data/worldgen/StructureSets.class b/build/_compileJava_2/net/minecraft/data/worldgen/StructureSets.class new file mode 100644 index 000000000..fcf012c53 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/data/worldgen/StructureSets.class differ diff --git a/build/_compileJava_2/net/minecraft/data/worldgen/Structures.class b/build/_compileJava_2/net/minecraft/data/worldgen/Structures.class new file mode 100644 index 000000000..350c2b0ad Binary files /dev/null and b/build/_compileJava_2/net/minecraft/data/worldgen/Structures.class differ diff --git a/build/_compileJava_2/net/minecraft/data/worldgen/SurfaceRuleData.class b/build/_compileJava_2/net/minecraft/data/worldgen/SurfaceRuleData.class new file mode 100644 index 000000000..7d4297e3e Binary files /dev/null and b/build/_compileJava_2/net/minecraft/data/worldgen/SurfaceRuleData.class differ diff --git a/build/_compileJava_2/net/minecraft/data/worldgen/TaigaVillagePools.class b/build/_compileJava_2/net/minecraft/data/worldgen/TaigaVillagePools.class new file mode 100644 index 000000000..457f08db5 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/data/worldgen/TaigaVillagePools.class differ diff --git a/build/_compileJava_2/net/minecraft/data/worldgen/TerrainProvider.class b/build/_compileJava_2/net/minecraft/data/worldgen/TerrainProvider.class new file mode 100644 index 000000000..f4c914535 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/data/worldgen/TerrainProvider.class differ diff --git a/build/_compileJava_2/net/minecraft/data/worldgen/TrailRuinsStructurePools.class b/build/_compileJava_2/net/minecraft/data/worldgen/TrailRuinsStructurePools.class new file mode 100644 index 000000000..42435175e Binary files /dev/null and b/build/_compileJava_2/net/minecraft/data/worldgen/TrailRuinsStructurePools.class differ diff --git a/build/_compileJava_2/net/minecraft/data/worldgen/VillagePools.class b/build/_compileJava_2/net/minecraft/data/worldgen/VillagePools.class new file mode 100644 index 000000000..494dfbf3b Binary files /dev/null and b/build/_compileJava_2/net/minecraft/data/worldgen/VillagePools.class differ diff --git a/build/_compileJava_2/net/minecraft/data/worldgen/biome/BiomeData.class b/build/_compileJava_2/net/minecraft/data/worldgen/biome/BiomeData.class new file mode 100644 index 000000000..51aae19b4 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/data/worldgen/biome/BiomeData.class differ diff --git a/build/_compileJava_2/net/minecraft/data/worldgen/biome/EndBiomes.class b/build/_compileJava_2/net/minecraft/data/worldgen/biome/EndBiomes.class new file mode 100644 index 000000000..4fc259cf7 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/data/worldgen/biome/EndBiomes.class differ diff --git a/build/_compileJava_2/net/minecraft/data/worldgen/biome/NetherBiomes.class b/build/_compileJava_2/net/minecraft/data/worldgen/biome/NetherBiomes.class new file mode 100644 index 000000000..54e85200d Binary files /dev/null and b/build/_compileJava_2/net/minecraft/data/worldgen/biome/NetherBiomes.class differ diff --git a/build/_compileJava_2/net/minecraft/data/worldgen/biome/OverworldBiomes.class b/build/_compileJava_2/net/minecraft/data/worldgen/biome/OverworldBiomes.class new file mode 100644 index 000000000..dfc1783e2 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/data/worldgen/biome/OverworldBiomes.class differ diff --git a/build/_compileJava_2/net/minecraft/data/worldgen/biome/package-info.class b/build/_compileJava_2/net/minecraft/data/worldgen/biome/package-info.class new file mode 100644 index 000000000..e3e4421a0 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/data/worldgen/biome/package-info.class differ diff --git a/build/_compileJava_2/net/minecraft/data/worldgen/features/AquaticFeatures.class b/build/_compileJava_2/net/minecraft/data/worldgen/features/AquaticFeatures.class new file mode 100644 index 000000000..3dd5b9333 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/data/worldgen/features/AquaticFeatures.class differ diff --git a/build/_compileJava_2/net/minecraft/data/worldgen/features/CaveFeatures.class b/build/_compileJava_2/net/minecraft/data/worldgen/features/CaveFeatures.class new file mode 100644 index 000000000..c42c0d3cb Binary files /dev/null and b/build/_compileJava_2/net/minecraft/data/worldgen/features/CaveFeatures.class differ diff --git a/build/_compileJava_2/net/minecraft/data/worldgen/features/EndFeatures.class b/build/_compileJava_2/net/minecraft/data/worldgen/features/EndFeatures.class new file mode 100644 index 000000000..7f0c50aaf Binary files /dev/null and b/build/_compileJava_2/net/minecraft/data/worldgen/features/EndFeatures.class differ diff --git a/build/_compileJava_2/net/minecraft/data/worldgen/features/FeatureUtils.class b/build/_compileJava_2/net/minecraft/data/worldgen/features/FeatureUtils.class new file mode 100644 index 000000000..6cc17f76f Binary files /dev/null and b/build/_compileJava_2/net/minecraft/data/worldgen/features/FeatureUtils.class differ diff --git a/build/_compileJava_2/net/minecraft/data/worldgen/features/MiscOverworldFeatures.class b/build/_compileJava_2/net/minecraft/data/worldgen/features/MiscOverworldFeatures.class new file mode 100644 index 000000000..280b24916 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/data/worldgen/features/MiscOverworldFeatures.class differ diff --git a/build/_compileJava_2/net/minecraft/data/worldgen/features/NetherFeatures.class b/build/_compileJava_2/net/minecraft/data/worldgen/features/NetherFeatures.class new file mode 100644 index 000000000..55327df2d Binary files /dev/null and b/build/_compileJava_2/net/minecraft/data/worldgen/features/NetherFeatures.class differ diff --git a/build/_compileJava_2/net/minecraft/data/worldgen/features/OreFeatures.class b/build/_compileJava_2/net/minecraft/data/worldgen/features/OreFeatures.class new file mode 100644 index 000000000..6fd97df27 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/data/worldgen/features/OreFeatures.class differ diff --git a/build/_compileJava_2/net/minecraft/data/worldgen/features/PileFeatures.class b/build/_compileJava_2/net/minecraft/data/worldgen/features/PileFeatures.class new file mode 100644 index 000000000..4e4f8e2e8 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/data/worldgen/features/PileFeatures.class differ diff --git a/build/_compileJava_2/net/minecraft/data/worldgen/features/TreeFeatures.class b/build/_compileJava_2/net/minecraft/data/worldgen/features/TreeFeatures.class new file mode 100644 index 000000000..42b65cb60 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/data/worldgen/features/TreeFeatures.class differ diff --git a/build/_compileJava_2/net/minecraft/data/worldgen/features/VegetationFeatures.class b/build/_compileJava_2/net/minecraft/data/worldgen/features/VegetationFeatures.class new file mode 100644 index 000000000..f311c2b0e Binary files /dev/null and b/build/_compileJava_2/net/minecraft/data/worldgen/features/VegetationFeatures.class differ diff --git a/build/_compileJava_2/net/minecraft/data/worldgen/features/package-info.class b/build/_compileJava_2/net/minecraft/data/worldgen/features/package-info.class new file mode 100644 index 000000000..815432dc9 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/data/worldgen/features/package-info.class differ diff --git a/build/_compileJava_2/net/minecraft/data/worldgen/package-info.class b/build/_compileJava_2/net/minecraft/data/worldgen/package-info.class new file mode 100644 index 000000000..96508d92f Binary files /dev/null and b/build/_compileJava_2/net/minecraft/data/worldgen/package-info.class differ diff --git a/build/_compileJava_2/net/minecraft/data/worldgen/placement/AquaticPlacements.class b/build/_compileJava_2/net/minecraft/data/worldgen/placement/AquaticPlacements.class new file mode 100644 index 000000000..72e3cf8ca Binary files /dev/null and b/build/_compileJava_2/net/minecraft/data/worldgen/placement/AquaticPlacements.class differ diff --git a/build/_compileJava_2/net/minecraft/data/worldgen/placement/CavePlacements.class b/build/_compileJava_2/net/minecraft/data/worldgen/placement/CavePlacements.class new file mode 100644 index 000000000..e31c1add5 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/data/worldgen/placement/CavePlacements.class differ diff --git a/build/_compileJava_2/net/minecraft/data/worldgen/placement/EndPlacements.class b/build/_compileJava_2/net/minecraft/data/worldgen/placement/EndPlacements.class new file mode 100644 index 000000000..b353465ac Binary files /dev/null and b/build/_compileJava_2/net/minecraft/data/worldgen/placement/EndPlacements.class differ diff --git a/build/_compileJava_2/net/minecraft/data/worldgen/placement/MiscOverworldPlacements.class b/build/_compileJava_2/net/minecraft/data/worldgen/placement/MiscOverworldPlacements.class new file mode 100644 index 000000000..de55fc4a1 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/data/worldgen/placement/MiscOverworldPlacements.class differ diff --git a/build/_compileJava_2/net/minecraft/data/worldgen/placement/NetherPlacements.class b/build/_compileJava_2/net/minecraft/data/worldgen/placement/NetherPlacements.class new file mode 100644 index 000000000..cae209097 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/data/worldgen/placement/NetherPlacements.class differ diff --git a/build/_compileJava_2/net/minecraft/data/worldgen/placement/OrePlacements.class b/build/_compileJava_2/net/minecraft/data/worldgen/placement/OrePlacements.class new file mode 100644 index 000000000..b9b02ed8c Binary files /dev/null and b/build/_compileJava_2/net/minecraft/data/worldgen/placement/OrePlacements.class differ diff --git a/build/_compileJava_2/net/minecraft/data/worldgen/placement/PlacementUtils.class b/build/_compileJava_2/net/minecraft/data/worldgen/placement/PlacementUtils.class new file mode 100644 index 000000000..8d9483426 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/data/worldgen/placement/PlacementUtils.class differ diff --git a/build/_compileJava_2/net/minecraft/data/worldgen/placement/TreePlacements.class b/build/_compileJava_2/net/minecraft/data/worldgen/placement/TreePlacements.class new file mode 100644 index 000000000..3650f8b8d Binary files /dev/null and b/build/_compileJava_2/net/minecraft/data/worldgen/placement/TreePlacements.class differ diff --git a/build/_compileJava_2/net/minecraft/data/worldgen/placement/VegetationPlacements.class b/build/_compileJava_2/net/minecraft/data/worldgen/placement/VegetationPlacements.class new file mode 100644 index 000000000..5db9e6938 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/data/worldgen/placement/VegetationPlacements.class differ diff --git a/build/_compileJava_2/net/minecraft/data/worldgen/placement/VillagePlacements.class b/build/_compileJava_2/net/minecraft/data/worldgen/placement/VillagePlacements.class new file mode 100644 index 000000000..ade46030f Binary files /dev/null and b/build/_compileJava_2/net/minecraft/data/worldgen/placement/VillagePlacements.class differ diff --git a/build/_compileJava_2/net/minecraft/data/worldgen/placement/package-info.class b/build/_compileJava_2/net/minecraft/data/worldgen/placement/package-info.class new file mode 100644 index 000000000..3408eb39f Binary files /dev/null and b/build/_compileJava_2/net/minecraft/data/worldgen/placement/package-info.class differ diff --git a/build/_compileJava_2/net/minecraft/gametest/framework/AfterBatch.class b/build/_compileJava_2/net/minecraft/gametest/framework/AfterBatch.class new file mode 100644 index 000000000..c60b72da5 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/gametest/framework/AfterBatch.class differ diff --git a/build/_compileJava_2/net/minecraft/gametest/framework/BeforeBatch.class b/build/_compileJava_2/net/minecraft/gametest/framework/BeforeBatch.class new file mode 100644 index 000000000..9c260972c Binary files /dev/null and b/build/_compileJava_2/net/minecraft/gametest/framework/BeforeBatch.class differ diff --git a/build/_compileJava_2/net/minecraft/gametest/framework/ExhaustedAttemptsException.class b/build/_compileJava_2/net/minecraft/gametest/framework/ExhaustedAttemptsException.class new file mode 100644 index 000000000..327bf8b73 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/gametest/framework/ExhaustedAttemptsException.class differ diff --git a/build/_compileJava_2/net/minecraft/gametest/framework/GameTest.class b/build/_compileJava_2/net/minecraft/gametest/framework/GameTest.class new file mode 100644 index 000000000..48317390a Binary files /dev/null and b/build/_compileJava_2/net/minecraft/gametest/framework/GameTest.class differ diff --git a/build/_compileJava_2/net/minecraft/gametest/framework/GameTestAssertException.class b/build/_compileJava_2/net/minecraft/gametest/framework/GameTestAssertException.class new file mode 100644 index 000000000..9a7752939 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/gametest/framework/GameTestAssertException.class differ diff --git a/build/_compileJava_2/net/minecraft/gametest/framework/GameTestAssertPosException.class b/build/_compileJava_2/net/minecraft/gametest/framework/GameTestAssertPosException.class new file mode 100644 index 000000000..aa4e608af Binary files /dev/null and b/build/_compileJava_2/net/minecraft/gametest/framework/GameTestAssertPosException.class differ diff --git a/build/_compileJava_2/net/minecraft/gametest/framework/GameTestBatch.class b/build/_compileJava_2/net/minecraft/gametest/framework/GameTestBatch.class new file mode 100644 index 000000000..378789cba Binary files /dev/null and b/build/_compileJava_2/net/minecraft/gametest/framework/GameTestBatch.class differ diff --git a/build/_compileJava_2/net/minecraft/gametest/framework/GameTestBatchRunner$1.class b/build/_compileJava_2/net/minecraft/gametest/framework/GameTestBatchRunner$1.class new file mode 100644 index 000000000..0135dc540 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/gametest/framework/GameTestBatchRunner$1.class differ diff --git a/build/_compileJava_2/net/minecraft/gametest/framework/GameTestBatchRunner.class b/build/_compileJava_2/net/minecraft/gametest/framework/GameTestBatchRunner.class new file mode 100644 index 000000000..5b38c6a5f Binary files /dev/null and b/build/_compileJava_2/net/minecraft/gametest/framework/GameTestBatchRunner.class differ diff --git a/build/_compileJava_2/net/minecraft/gametest/framework/GameTestEvent.class b/build/_compileJava_2/net/minecraft/gametest/framework/GameTestEvent.class new file mode 100644 index 000000000..86be8ef68 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/gametest/framework/GameTestEvent.class differ diff --git a/build/_compileJava_2/net/minecraft/gametest/framework/GameTestGenerator.class b/build/_compileJava_2/net/minecraft/gametest/framework/GameTestGenerator.class new file mode 100644 index 000000000..ee046e5a1 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/gametest/framework/GameTestGenerator.class differ diff --git a/build/_compileJava_2/net/minecraft/gametest/framework/GameTestHelper$1.class b/build/_compileJava_2/net/minecraft/gametest/framework/GameTestHelper$1.class new file mode 100644 index 000000000..1dc001af7 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/gametest/framework/GameTestHelper$1.class differ diff --git a/build/_compileJava_2/net/minecraft/gametest/framework/GameTestHelper$2.class b/build/_compileJava_2/net/minecraft/gametest/framework/GameTestHelper$2.class new file mode 100644 index 000000000..055bb6bb4 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/gametest/framework/GameTestHelper$2.class differ diff --git a/build/_compileJava_2/net/minecraft/gametest/framework/GameTestHelper$3.class b/build/_compileJava_2/net/minecraft/gametest/framework/GameTestHelper$3.class new file mode 100644 index 000000000..b8f20467e Binary files /dev/null and b/build/_compileJava_2/net/minecraft/gametest/framework/GameTestHelper$3.class differ diff --git a/build/_compileJava_2/net/minecraft/gametest/framework/GameTestHelper.class b/build/_compileJava_2/net/minecraft/gametest/framework/GameTestHelper.class new file mode 100644 index 000000000..227119e90 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/gametest/framework/GameTestHelper.class differ diff --git a/build/_compileJava_2/net/minecraft/gametest/framework/GameTestInfo.class b/build/_compileJava_2/net/minecraft/gametest/framework/GameTestInfo.class new file mode 100644 index 000000000..8e4a96e32 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/gametest/framework/GameTestInfo.class differ diff --git a/build/_compileJava_2/net/minecraft/gametest/framework/GameTestListener.class b/build/_compileJava_2/net/minecraft/gametest/framework/GameTestListener.class new file mode 100644 index 000000000..7f4f82e36 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/gametest/framework/GameTestListener.class differ diff --git a/build/_compileJava_2/net/minecraft/gametest/framework/GameTestRegistry.class b/build/_compileJava_2/net/minecraft/gametest/framework/GameTestRegistry.class new file mode 100644 index 000000000..aef80e5ef Binary files /dev/null and b/build/_compileJava_2/net/minecraft/gametest/framework/GameTestRegistry.class differ diff --git a/build/_compileJava_2/net/minecraft/gametest/framework/GameTestRunner.class b/build/_compileJava_2/net/minecraft/gametest/framework/GameTestRunner.class new file mode 100644 index 000000000..4b8f16610 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/gametest/framework/GameTestRunner.class differ diff --git a/build/_compileJava_2/net/minecraft/gametest/framework/GameTestSequence$Condition.class b/build/_compileJava_2/net/minecraft/gametest/framework/GameTestSequence$Condition.class new file mode 100644 index 000000000..77c163ee3 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/gametest/framework/GameTestSequence$Condition.class differ diff --git a/build/_compileJava_2/net/minecraft/gametest/framework/GameTestSequence.class b/build/_compileJava_2/net/minecraft/gametest/framework/GameTestSequence.class new file mode 100644 index 000000000..6b00bd17f Binary files /dev/null and b/build/_compileJava_2/net/minecraft/gametest/framework/GameTestSequence.class differ diff --git a/build/_compileJava_2/net/minecraft/gametest/framework/GameTestServer$1.class b/build/_compileJava_2/net/minecraft/gametest/framework/GameTestServer$1.class new file mode 100644 index 000000000..95a77c410 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/gametest/framework/GameTestServer$1.class differ diff --git a/build/_compileJava_2/net/minecraft/gametest/framework/GameTestServer.class b/build/_compileJava_2/net/minecraft/gametest/framework/GameTestServer.class new file mode 100644 index 000000000..b38c75b3a Binary files /dev/null and b/build/_compileJava_2/net/minecraft/gametest/framework/GameTestServer.class differ diff --git a/build/_compileJava_2/net/minecraft/gametest/framework/GameTestTicker.class b/build/_compileJava_2/net/minecraft/gametest/framework/GameTestTicker.class new file mode 100644 index 000000000..c42450b47 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/gametest/framework/GameTestTicker.class differ diff --git a/build/_compileJava_2/net/minecraft/gametest/framework/GameTestTimeoutException.class b/build/_compileJava_2/net/minecraft/gametest/framework/GameTestTimeoutException.class new file mode 100644 index 000000000..10b8e332a Binary files /dev/null and b/build/_compileJava_2/net/minecraft/gametest/framework/GameTestTimeoutException.class differ diff --git a/build/_compileJava_2/net/minecraft/gametest/framework/GlobalTestReporter.class b/build/_compileJava_2/net/minecraft/gametest/framework/GlobalTestReporter.class new file mode 100644 index 000000000..f2e4676bc Binary files /dev/null and b/build/_compileJava_2/net/minecraft/gametest/framework/GlobalTestReporter.class differ diff --git a/build/_compileJava_2/net/minecraft/gametest/framework/JUnitLikeTestReporter.class b/build/_compileJava_2/net/minecraft/gametest/framework/JUnitLikeTestReporter.class new file mode 100644 index 000000000..5df42cf8b Binary files /dev/null and b/build/_compileJava_2/net/minecraft/gametest/framework/JUnitLikeTestReporter.class differ diff --git a/build/_compileJava_2/net/minecraft/gametest/framework/LogTestReporter.class b/build/_compileJava_2/net/minecraft/gametest/framework/LogTestReporter.class new file mode 100644 index 000000000..8761f7c5d Binary files /dev/null and b/build/_compileJava_2/net/minecraft/gametest/framework/LogTestReporter.class differ diff --git a/build/_compileJava_2/net/minecraft/gametest/framework/MultipleTestTracker$1.class b/build/_compileJava_2/net/minecraft/gametest/framework/MultipleTestTracker$1.class new file mode 100644 index 000000000..d925f2710 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/gametest/framework/MultipleTestTracker$1.class differ diff --git a/build/_compileJava_2/net/minecraft/gametest/framework/MultipleTestTracker.class b/build/_compileJava_2/net/minecraft/gametest/framework/MultipleTestTracker.class new file mode 100644 index 000000000..126be4d5e Binary files /dev/null and b/build/_compileJava_2/net/minecraft/gametest/framework/MultipleTestTracker.class differ diff --git a/build/_compileJava_2/net/minecraft/gametest/framework/ReportGameListener.class b/build/_compileJava_2/net/minecraft/gametest/framework/ReportGameListener.class new file mode 100644 index 000000000..81a49e0f8 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/gametest/framework/ReportGameListener.class differ diff --git a/build/_compileJava_2/net/minecraft/gametest/framework/StructureUtils$1.class b/build/_compileJava_2/net/minecraft/gametest/framework/StructureUtils$1.class new file mode 100644 index 000000000..0e4372ff1 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/gametest/framework/StructureUtils$1.class differ diff --git a/build/_compileJava_2/net/minecraft/gametest/framework/StructureUtils.class b/build/_compileJava_2/net/minecraft/gametest/framework/StructureUtils.class new file mode 100644 index 000000000..c5c3b1f7a Binary files /dev/null and b/build/_compileJava_2/net/minecraft/gametest/framework/StructureUtils.class differ diff --git a/build/_compileJava_2/net/minecraft/gametest/framework/TeamcityTestReporter.class b/build/_compileJava_2/net/minecraft/gametest/framework/TeamcityTestReporter.class new file mode 100644 index 000000000..71ecb4a25 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/gametest/framework/TeamcityTestReporter.class differ diff --git a/build/_compileJava_2/net/minecraft/gametest/framework/TestClassNameArgument.class b/build/_compileJava_2/net/minecraft/gametest/framework/TestClassNameArgument.class new file mode 100644 index 000000000..361b80a6e Binary files /dev/null and b/build/_compileJava_2/net/minecraft/gametest/framework/TestClassNameArgument.class differ diff --git a/build/_compileJava_2/net/minecraft/gametest/framework/TestCommand$TestSummaryDisplayer.class b/build/_compileJava_2/net/minecraft/gametest/framework/TestCommand$TestSummaryDisplayer.class new file mode 100644 index 000000000..9d8dadc9f Binary files /dev/null and b/build/_compileJava_2/net/minecraft/gametest/framework/TestCommand$TestSummaryDisplayer.class differ diff --git a/build/_compileJava_2/net/minecraft/gametest/framework/TestCommand.class b/build/_compileJava_2/net/minecraft/gametest/framework/TestCommand.class new file mode 100644 index 000000000..a546ef904 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/gametest/framework/TestCommand.class differ diff --git a/build/_compileJava_2/net/minecraft/gametest/framework/TestFunction.class b/build/_compileJava_2/net/minecraft/gametest/framework/TestFunction.class new file mode 100644 index 000000000..8423342e2 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/gametest/framework/TestFunction.class differ diff --git a/build/_compileJava_2/net/minecraft/gametest/framework/TestFunctionArgument.class b/build/_compileJava_2/net/minecraft/gametest/framework/TestFunctionArgument.class new file mode 100644 index 000000000..52f9d8a68 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/gametest/framework/TestFunctionArgument.class differ diff --git a/build/_compileJava_2/net/minecraft/gametest/framework/TestReporter.class b/build/_compileJava_2/net/minecraft/gametest/framework/TestReporter.class new file mode 100644 index 000000000..9d153edaf Binary files /dev/null and b/build/_compileJava_2/net/minecraft/gametest/framework/TestReporter.class differ diff --git a/build/_compileJava_2/net/minecraft/gametest/framework/package-info.class b/build/_compileJava_2/net/minecraft/gametest/framework/package-info.class new file mode 100644 index 000000000..80fdcfd8f Binary files /dev/null and b/build/_compileJava_2/net/minecraft/gametest/framework/package-info.class differ diff --git a/build/_compileJava_2/net/minecraft/locale/Language$1.class b/build/_compileJava_2/net/minecraft/locale/Language$1.class new file mode 100644 index 000000000..3597abd34 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/locale/Language$1.class differ diff --git a/build/_compileJava_2/net/minecraft/locale/Language.class b/build/_compileJava_2/net/minecraft/locale/Language.class new file mode 100644 index 000000000..04d564817 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/locale/Language.class differ diff --git a/build/_compileJava_2/net/minecraft/locale/package-info.class b/build/_compileJava_2/net/minecraft/locale/package-info.class new file mode 100644 index 000000000..10e9b6320 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/locale/package-info.class differ diff --git a/build/_compileJava_2/net/minecraft/nbt/ByteArrayTag$1.class b/build/_compileJava_2/net/minecraft/nbt/ByteArrayTag$1.class new file mode 100644 index 000000000..8684a2000 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/nbt/ByteArrayTag$1.class differ diff --git a/build/_compileJava_2/net/minecraft/nbt/ByteArrayTag.class b/build/_compileJava_2/net/minecraft/nbt/ByteArrayTag.class new file mode 100644 index 000000000..e8548c3e2 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/nbt/ByteArrayTag.class differ diff --git a/build/_compileJava_2/net/minecraft/nbt/ByteTag$1.class b/build/_compileJava_2/net/minecraft/nbt/ByteTag$1.class new file mode 100644 index 000000000..63858de79 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/nbt/ByteTag$1.class differ diff --git a/build/_compileJava_2/net/minecraft/nbt/ByteTag$Cache.class b/build/_compileJava_2/net/minecraft/nbt/ByteTag$Cache.class new file mode 100644 index 000000000..2519f1c04 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/nbt/ByteTag$Cache.class differ diff --git a/build/_compileJava_2/net/minecraft/nbt/ByteTag.class b/build/_compileJava_2/net/minecraft/nbt/ByteTag.class new file mode 100644 index 000000000..58dd26f76 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/nbt/ByteTag.class differ diff --git a/build/_compileJava_2/net/minecraft/nbt/CollectionTag.class b/build/_compileJava_2/net/minecraft/nbt/CollectionTag.class new file mode 100644 index 000000000..c83014fb1 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/nbt/CollectionTag.class differ diff --git a/build/_compileJava_2/net/minecraft/nbt/CompoundTag$1.class b/build/_compileJava_2/net/minecraft/nbt/CompoundTag$1.class new file mode 100644 index 000000000..1acbd04f3 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/nbt/CompoundTag$1.class differ diff --git a/build/_compileJava_2/net/minecraft/nbt/CompoundTag$2.class b/build/_compileJava_2/net/minecraft/nbt/CompoundTag$2.class new file mode 100644 index 000000000..7b76d71e3 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/nbt/CompoundTag$2.class differ diff --git a/build/_compileJava_2/net/minecraft/nbt/CompoundTag.class b/build/_compileJava_2/net/minecraft/nbt/CompoundTag.class new file mode 100644 index 000000000..d237ffffa Binary files /dev/null and b/build/_compileJava_2/net/minecraft/nbt/CompoundTag.class differ diff --git a/build/_compileJava_2/net/minecraft/nbt/DoubleTag$1.class b/build/_compileJava_2/net/minecraft/nbt/DoubleTag$1.class new file mode 100644 index 000000000..1afd984fa Binary files /dev/null and b/build/_compileJava_2/net/minecraft/nbt/DoubleTag$1.class differ diff --git a/build/_compileJava_2/net/minecraft/nbt/DoubleTag.class b/build/_compileJava_2/net/minecraft/nbt/DoubleTag.class new file mode 100644 index 000000000..94138cdc1 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/nbt/DoubleTag.class differ diff --git a/build/_compileJava_2/net/minecraft/nbt/EndTag$1.class b/build/_compileJava_2/net/minecraft/nbt/EndTag$1.class new file mode 100644 index 000000000..ac0c2711e Binary files /dev/null and b/build/_compileJava_2/net/minecraft/nbt/EndTag$1.class differ diff --git a/build/_compileJava_2/net/minecraft/nbt/EndTag.class b/build/_compileJava_2/net/minecraft/nbt/EndTag.class new file mode 100644 index 000000000..5962c5f8b Binary files /dev/null and b/build/_compileJava_2/net/minecraft/nbt/EndTag.class differ diff --git a/build/_compileJava_2/net/minecraft/nbt/FloatTag$1.class b/build/_compileJava_2/net/minecraft/nbt/FloatTag$1.class new file mode 100644 index 000000000..8d2b56fb5 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/nbt/FloatTag$1.class differ diff --git a/build/_compileJava_2/net/minecraft/nbt/FloatTag.class b/build/_compileJava_2/net/minecraft/nbt/FloatTag.class new file mode 100644 index 000000000..a5ce65ef7 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/nbt/FloatTag.class differ diff --git a/build/_compileJava_2/net/minecraft/nbt/IntArrayTag$1.class b/build/_compileJava_2/net/minecraft/nbt/IntArrayTag$1.class new file mode 100644 index 000000000..3c3fdb315 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/nbt/IntArrayTag$1.class differ diff --git a/build/_compileJava_2/net/minecraft/nbt/IntArrayTag.class b/build/_compileJava_2/net/minecraft/nbt/IntArrayTag.class new file mode 100644 index 000000000..8dfd6376a Binary files /dev/null and b/build/_compileJava_2/net/minecraft/nbt/IntArrayTag.class differ diff --git a/build/_compileJava_2/net/minecraft/nbt/IntTag$1.class b/build/_compileJava_2/net/minecraft/nbt/IntTag$1.class new file mode 100644 index 000000000..d1719aa99 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/nbt/IntTag$1.class differ diff --git a/build/_compileJava_2/net/minecraft/nbt/IntTag$Cache.class b/build/_compileJava_2/net/minecraft/nbt/IntTag$Cache.class new file mode 100644 index 000000000..39708be84 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/nbt/IntTag$Cache.class differ diff --git a/build/_compileJava_2/net/minecraft/nbt/IntTag.class b/build/_compileJava_2/net/minecraft/nbt/IntTag.class new file mode 100644 index 000000000..a337bcdbc Binary files /dev/null and b/build/_compileJava_2/net/minecraft/nbt/IntTag.class differ diff --git a/build/_compileJava_2/net/minecraft/nbt/ListTag$1.class b/build/_compileJava_2/net/minecraft/nbt/ListTag$1.class new file mode 100644 index 000000000..4d7c12c84 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/nbt/ListTag$1.class differ diff --git a/build/_compileJava_2/net/minecraft/nbt/ListTag$2.class b/build/_compileJava_2/net/minecraft/nbt/ListTag$2.class new file mode 100644 index 000000000..057058f95 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/nbt/ListTag$2.class differ diff --git a/build/_compileJava_2/net/minecraft/nbt/ListTag.class b/build/_compileJava_2/net/minecraft/nbt/ListTag.class new file mode 100644 index 000000000..5f42b7098 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/nbt/ListTag.class differ diff --git a/build/_compileJava_2/net/minecraft/nbt/LongArrayTag$1.class b/build/_compileJava_2/net/minecraft/nbt/LongArrayTag$1.class new file mode 100644 index 000000000..86df5e93b Binary files /dev/null and b/build/_compileJava_2/net/minecraft/nbt/LongArrayTag$1.class differ diff --git a/build/_compileJava_2/net/minecraft/nbt/LongArrayTag.class b/build/_compileJava_2/net/minecraft/nbt/LongArrayTag.class new file mode 100644 index 000000000..925c7ad29 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/nbt/LongArrayTag.class differ diff --git a/build/_compileJava_2/net/minecraft/nbt/LongTag$1.class b/build/_compileJava_2/net/minecraft/nbt/LongTag$1.class new file mode 100644 index 000000000..a1e573de3 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/nbt/LongTag$1.class differ diff --git a/build/_compileJava_2/net/minecraft/nbt/LongTag$Cache.class b/build/_compileJava_2/net/minecraft/nbt/LongTag$Cache.class new file mode 100644 index 000000000..c78eab129 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/nbt/LongTag$Cache.class differ diff --git a/build/_compileJava_2/net/minecraft/nbt/LongTag.class b/build/_compileJava_2/net/minecraft/nbt/LongTag.class new file mode 100644 index 000000000..09c3e69d1 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/nbt/LongTag.class differ diff --git a/build/_compileJava_2/net/minecraft/nbt/NbtAccounter$1.class b/build/_compileJava_2/net/minecraft/nbt/NbtAccounter$1.class new file mode 100644 index 000000000..8ffba329a Binary files /dev/null and b/build/_compileJava_2/net/minecraft/nbt/NbtAccounter$1.class differ diff --git a/build/_compileJava_2/net/minecraft/nbt/NbtAccounter.class b/build/_compileJava_2/net/minecraft/nbt/NbtAccounter.class new file mode 100644 index 000000000..91194541b Binary files /dev/null and b/build/_compileJava_2/net/minecraft/nbt/NbtAccounter.class differ diff --git a/build/_compileJava_2/net/minecraft/nbt/NbtIo$1.class b/build/_compileJava_2/net/minecraft/nbt/NbtIo$1.class new file mode 100644 index 000000000..0993c9603 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/nbt/NbtIo$1.class differ diff --git a/build/_compileJava_2/net/minecraft/nbt/NbtIo.class b/build/_compileJava_2/net/minecraft/nbt/NbtIo.class new file mode 100644 index 000000000..81e405c37 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/nbt/NbtIo.class differ diff --git a/build/_compileJava_2/net/minecraft/nbt/NbtOps$1.class b/build/_compileJava_2/net/minecraft/nbt/NbtOps$1.class new file mode 100644 index 000000000..27b7dd27c Binary files /dev/null and b/build/_compileJava_2/net/minecraft/nbt/NbtOps$1.class differ diff --git a/build/_compileJava_2/net/minecraft/nbt/NbtOps$ByteListCollector.class b/build/_compileJava_2/net/minecraft/nbt/NbtOps$ByteListCollector.class new file mode 100644 index 000000000..76bf735c7 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/nbt/NbtOps$ByteListCollector.class differ diff --git a/build/_compileJava_2/net/minecraft/nbt/NbtOps$HeterogenousListCollector.class b/build/_compileJava_2/net/minecraft/nbt/NbtOps$HeterogenousListCollector.class new file mode 100644 index 000000000..6604bf6a4 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/nbt/NbtOps$HeterogenousListCollector.class differ diff --git a/build/_compileJava_2/net/minecraft/nbt/NbtOps$HomogenousListCollector.class b/build/_compileJava_2/net/minecraft/nbt/NbtOps$HomogenousListCollector.class new file mode 100644 index 000000000..d1a6c2400 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/nbt/NbtOps$HomogenousListCollector.class differ diff --git a/build/_compileJava_2/net/minecraft/nbt/NbtOps$InitialListCollector.class b/build/_compileJava_2/net/minecraft/nbt/NbtOps$InitialListCollector.class new file mode 100644 index 000000000..88598c7a8 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/nbt/NbtOps$InitialListCollector.class differ diff --git a/build/_compileJava_2/net/minecraft/nbt/NbtOps$IntListCollector.class b/build/_compileJava_2/net/minecraft/nbt/NbtOps$IntListCollector.class new file mode 100644 index 000000000..10d66fb9e Binary files /dev/null and b/build/_compileJava_2/net/minecraft/nbt/NbtOps$IntListCollector.class differ diff --git a/build/_compileJava_2/net/minecraft/nbt/NbtOps$ListCollector.class b/build/_compileJava_2/net/minecraft/nbt/NbtOps$ListCollector.class new file mode 100644 index 000000000..f766fee21 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/nbt/NbtOps$ListCollector.class differ diff --git a/build/_compileJava_2/net/minecraft/nbt/NbtOps$LongListCollector.class b/build/_compileJava_2/net/minecraft/nbt/NbtOps$LongListCollector.class new file mode 100644 index 000000000..c1942e046 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/nbt/NbtOps$LongListCollector.class differ diff --git a/build/_compileJava_2/net/minecraft/nbt/NbtOps$NbtRecordBuilder.class b/build/_compileJava_2/net/minecraft/nbt/NbtOps$NbtRecordBuilder.class new file mode 100644 index 000000000..568b454da Binary files /dev/null and b/build/_compileJava_2/net/minecraft/nbt/NbtOps$NbtRecordBuilder.class differ diff --git a/build/_compileJava_2/net/minecraft/nbt/NbtOps.class b/build/_compileJava_2/net/minecraft/nbt/NbtOps.class new file mode 100644 index 000000000..19e9a8920 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/nbt/NbtOps.class differ diff --git a/build/_compileJava_2/net/minecraft/nbt/NbtUtils.class b/build/_compileJava_2/net/minecraft/nbt/NbtUtils.class new file mode 100644 index 000000000..f56778b84 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/nbt/NbtUtils.class differ diff --git a/build/_compileJava_2/net/minecraft/nbt/NumericTag.class b/build/_compileJava_2/net/minecraft/nbt/NumericTag.class new file mode 100644 index 000000000..00e3e774d Binary files /dev/null and b/build/_compileJava_2/net/minecraft/nbt/NumericTag.class differ diff --git a/build/_compileJava_2/net/minecraft/nbt/ShortTag$1.class b/build/_compileJava_2/net/minecraft/nbt/ShortTag$1.class new file mode 100644 index 000000000..15cc359c1 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/nbt/ShortTag$1.class differ diff --git a/build/_compileJava_2/net/minecraft/nbt/ShortTag$Cache.class b/build/_compileJava_2/net/minecraft/nbt/ShortTag$Cache.class new file mode 100644 index 000000000..63c98eacc Binary files /dev/null and b/build/_compileJava_2/net/minecraft/nbt/ShortTag$Cache.class differ diff --git a/build/_compileJava_2/net/minecraft/nbt/ShortTag.class b/build/_compileJava_2/net/minecraft/nbt/ShortTag.class new file mode 100644 index 000000000..499023e2a Binary files /dev/null and b/build/_compileJava_2/net/minecraft/nbt/ShortTag.class differ diff --git a/build/_compileJava_2/net/minecraft/nbt/SnbtPrinterTagVisitor.class b/build/_compileJava_2/net/minecraft/nbt/SnbtPrinterTagVisitor.class new file mode 100644 index 000000000..3ee113968 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/nbt/SnbtPrinterTagVisitor.class differ diff --git a/build/_compileJava_2/net/minecraft/nbt/StreamTagVisitor$EntryResult.class b/build/_compileJava_2/net/minecraft/nbt/StreamTagVisitor$EntryResult.class new file mode 100644 index 000000000..6d223c626 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/nbt/StreamTagVisitor$EntryResult.class differ diff --git a/build/_compileJava_2/net/minecraft/nbt/StreamTagVisitor$ValueResult.class b/build/_compileJava_2/net/minecraft/nbt/StreamTagVisitor$ValueResult.class new file mode 100644 index 000000000..7ac1fe441 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/nbt/StreamTagVisitor$ValueResult.class differ diff --git a/build/_compileJava_2/net/minecraft/nbt/StreamTagVisitor.class b/build/_compileJava_2/net/minecraft/nbt/StreamTagVisitor.class new file mode 100644 index 000000000..f20b9b638 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/nbt/StreamTagVisitor.class differ diff --git a/build/_compileJava_2/net/minecraft/nbt/StringTag$1.class b/build/_compileJava_2/net/minecraft/nbt/StringTag$1.class new file mode 100644 index 000000000..209fddda0 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/nbt/StringTag$1.class differ diff --git a/build/_compileJava_2/net/minecraft/nbt/StringTag.class b/build/_compileJava_2/net/minecraft/nbt/StringTag.class new file mode 100644 index 000000000..ee9f534e4 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/nbt/StringTag.class differ diff --git a/build/_compileJava_2/net/minecraft/nbt/StringTagVisitor.class b/build/_compileJava_2/net/minecraft/nbt/StringTagVisitor.class new file mode 100644 index 000000000..dc5d3b9a8 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/nbt/StringTagVisitor.class differ diff --git a/build/_compileJava_2/net/minecraft/nbt/Tag.class b/build/_compileJava_2/net/minecraft/nbt/Tag.class new file mode 100644 index 000000000..2d075096c Binary files /dev/null and b/build/_compileJava_2/net/minecraft/nbt/Tag.class differ diff --git a/build/_compileJava_2/net/minecraft/nbt/TagParser.class b/build/_compileJava_2/net/minecraft/nbt/TagParser.class new file mode 100644 index 000000000..4e2d28286 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/nbt/TagParser.class differ diff --git a/build/_compileJava_2/net/minecraft/nbt/TagType$1.class b/build/_compileJava_2/net/minecraft/nbt/TagType$1.class new file mode 100644 index 000000000..0b123b361 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/nbt/TagType$1.class differ diff --git a/build/_compileJava_2/net/minecraft/nbt/TagType$2.class b/build/_compileJava_2/net/minecraft/nbt/TagType$2.class new file mode 100644 index 000000000..31aa045df Binary files /dev/null and b/build/_compileJava_2/net/minecraft/nbt/TagType$2.class differ diff --git a/build/_compileJava_2/net/minecraft/nbt/TagType$StaticSize.class b/build/_compileJava_2/net/minecraft/nbt/TagType$StaticSize.class new file mode 100644 index 000000000..c65c6d69c Binary files /dev/null and b/build/_compileJava_2/net/minecraft/nbt/TagType$StaticSize.class differ diff --git a/build/_compileJava_2/net/minecraft/nbt/TagType$VariableSize.class b/build/_compileJava_2/net/minecraft/nbt/TagType$VariableSize.class new file mode 100644 index 000000000..d7b9e3cf9 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/nbt/TagType$VariableSize.class differ diff --git a/build/_compileJava_2/net/minecraft/nbt/TagType.class b/build/_compileJava_2/net/minecraft/nbt/TagType.class new file mode 100644 index 000000000..5ca576d0c Binary files /dev/null and b/build/_compileJava_2/net/minecraft/nbt/TagType.class differ diff --git a/build/_compileJava_2/net/minecraft/nbt/TagTypes.class b/build/_compileJava_2/net/minecraft/nbt/TagTypes.class new file mode 100644 index 000000000..96c78a4c5 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/nbt/TagTypes.class differ diff --git a/build/_compileJava_2/net/minecraft/nbt/TagVisitor.class b/build/_compileJava_2/net/minecraft/nbt/TagVisitor.class new file mode 100644 index 000000000..310a1ddcc Binary files /dev/null and b/build/_compileJava_2/net/minecraft/nbt/TagVisitor.class differ diff --git a/build/_compileJava_2/net/minecraft/nbt/TextComponentTagVisitor.class b/build/_compileJava_2/net/minecraft/nbt/TextComponentTagVisitor.class new file mode 100644 index 000000000..e1b5b36bc Binary files /dev/null and b/build/_compileJava_2/net/minecraft/nbt/TextComponentTagVisitor.class differ diff --git a/build/_compileJava_2/net/minecraft/nbt/package-info.class b/build/_compileJava_2/net/minecraft/nbt/package-info.class new file mode 100644 index 000000000..4a6921aa6 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/nbt/package-info.class differ diff --git a/build/_compileJava_2/net/minecraft/nbt/visitors/CollectFields.class b/build/_compileJava_2/net/minecraft/nbt/visitors/CollectFields.class new file mode 100644 index 000000000..aa132b5b8 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/nbt/visitors/CollectFields.class differ diff --git a/build/_compileJava_2/net/minecraft/nbt/visitors/CollectToTag.class b/build/_compileJava_2/net/minecraft/nbt/visitors/CollectToTag.class new file mode 100644 index 000000000..1eee34eb1 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/nbt/visitors/CollectToTag.class differ diff --git a/build/_compileJava_2/net/minecraft/nbt/visitors/FieldSelector.class b/build/_compileJava_2/net/minecraft/nbt/visitors/FieldSelector.class new file mode 100644 index 000000000..ae45b87db Binary files /dev/null and b/build/_compileJava_2/net/minecraft/nbt/visitors/FieldSelector.class differ diff --git a/build/_compileJava_2/net/minecraft/nbt/visitors/FieldTree.class b/build/_compileJava_2/net/minecraft/nbt/visitors/FieldTree.class new file mode 100644 index 000000000..9ea7ec0d0 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/nbt/visitors/FieldTree.class differ diff --git a/build/_compileJava_2/net/minecraft/nbt/visitors/SkipAll$1.class b/build/_compileJava_2/net/minecraft/nbt/visitors/SkipAll$1.class new file mode 100644 index 000000000..8734c3f66 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/nbt/visitors/SkipAll$1.class differ diff --git a/build/_compileJava_2/net/minecraft/nbt/visitors/SkipAll.class b/build/_compileJava_2/net/minecraft/nbt/visitors/SkipAll.class new file mode 100644 index 000000000..1c576edf6 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/nbt/visitors/SkipAll.class differ diff --git a/build/_compileJava_2/net/minecraft/nbt/visitors/SkipFields.class b/build/_compileJava_2/net/minecraft/nbt/visitors/SkipFields.class new file mode 100644 index 000000000..3acf508ec Binary files /dev/null and b/build/_compileJava_2/net/minecraft/nbt/visitors/SkipFields.class differ diff --git a/build/_compileJava_2/net/minecraft/nbt/visitors/package-info.class b/build/_compileJava_2/net/minecraft/nbt/visitors/package-info.class new file mode 100644 index 000000000..b0a1dccd5 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/nbt/visitors/package-info.class differ diff --git a/build/_compileJava_2/net/minecraft/network/CipherBase.class b/build/_compileJava_2/net/minecraft/network/CipherBase.class new file mode 100644 index 000000000..322439111 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/network/CipherBase.class differ diff --git a/build/_compileJava_2/net/minecraft/network/CipherDecoder.class b/build/_compileJava_2/net/minecraft/network/CipherDecoder.class new file mode 100644 index 000000000..82e73d0ca Binary files /dev/null and b/build/_compileJava_2/net/minecraft/network/CipherDecoder.class differ diff --git a/build/_compileJava_2/net/minecraft/network/CipherEncoder.class b/build/_compileJava_2/net/minecraft/network/CipherEncoder.class new file mode 100644 index 000000000..cefe19926 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/network/CipherEncoder.class differ diff --git a/build/_compileJava_2/net/minecraft/network/CompressionDecoder.class b/build/_compileJava_2/net/minecraft/network/CompressionDecoder.class new file mode 100644 index 000000000..ad800ad92 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/network/CompressionDecoder.class differ diff --git a/build/_compileJava_2/net/minecraft/network/CompressionEncoder.class b/build/_compileJava_2/net/minecraft/network/CompressionEncoder.class new file mode 100644 index 000000000..e480d5986 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/network/CompressionEncoder.class differ diff --git a/build/_compileJava_2/net/minecraft/network/Connection$1.class b/build/_compileJava_2/net/minecraft/network/Connection$1.class new file mode 100644 index 000000000..6f8a19fe0 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/network/Connection$1.class differ diff --git a/build/_compileJava_2/net/minecraft/network/Connection$2.class b/build/_compileJava_2/net/minecraft/network/Connection$2.class new file mode 100644 index 000000000..cfaebd7fd Binary files /dev/null and b/build/_compileJava_2/net/minecraft/network/Connection$2.class differ diff --git a/build/_compileJava_2/net/minecraft/network/Connection$PacketHolder.class b/build/_compileJava_2/net/minecraft/network/Connection$PacketHolder.class new file mode 100644 index 000000000..9bb91f5d1 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/network/Connection$PacketHolder.class differ diff --git a/build/_compileJava_2/net/minecraft/network/Connection.class b/build/_compileJava_2/net/minecraft/network/Connection.class new file mode 100644 index 000000000..7c495d7e4 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/network/Connection.class differ diff --git a/build/_compileJava_2/net/minecraft/network/ConnectionProtocol$PacketSet.class b/build/_compileJava_2/net/minecraft/network/ConnectionProtocol$PacketSet.class new file mode 100644 index 000000000..a1f6b8691 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/network/ConnectionProtocol$PacketSet.class differ diff --git a/build/_compileJava_2/net/minecraft/network/ConnectionProtocol$ProtocolBuilder.class b/build/_compileJava_2/net/minecraft/network/ConnectionProtocol$ProtocolBuilder.class new file mode 100644 index 000000000..1c4a248df Binary files /dev/null and b/build/_compileJava_2/net/minecraft/network/ConnectionProtocol$ProtocolBuilder.class differ diff --git a/build/_compileJava_2/net/minecraft/network/ConnectionProtocol.class b/build/_compileJava_2/net/minecraft/network/ConnectionProtocol.class new file mode 100644 index 000000000..181af711c Binary files /dev/null and b/build/_compileJava_2/net/minecraft/network/ConnectionProtocol.class differ diff --git a/build/_compileJava_2/net/minecraft/network/FriendlyByteBuf$1.class b/build/_compileJava_2/net/minecraft/network/FriendlyByteBuf$1.class new file mode 100644 index 000000000..762c6e97e Binary files /dev/null and b/build/_compileJava_2/net/minecraft/network/FriendlyByteBuf$1.class differ diff --git a/build/_compileJava_2/net/minecraft/network/FriendlyByteBuf$Reader.class b/build/_compileJava_2/net/minecraft/network/FriendlyByteBuf$Reader.class new file mode 100644 index 000000000..59c66867c Binary files /dev/null and b/build/_compileJava_2/net/minecraft/network/FriendlyByteBuf$Reader.class differ diff --git a/build/_compileJava_2/net/minecraft/network/FriendlyByteBuf$Writer.class b/build/_compileJava_2/net/minecraft/network/FriendlyByteBuf$Writer.class new file mode 100644 index 000000000..2f49b546f Binary files /dev/null and b/build/_compileJava_2/net/minecraft/network/FriendlyByteBuf$Writer.class differ diff --git a/build/_compileJava_2/net/minecraft/network/FriendlyByteBuf.class b/build/_compileJava_2/net/minecraft/network/FriendlyByteBuf.class new file mode 100644 index 000000000..04511e760 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/network/FriendlyByteBuf.class differ diff --git a/build/_compileJava_2/net/minecraft/network/PacketBundlePacker.class b/build/_compileJava_2/net/minecraft/network/PacketBundlePacker.class new file mode 100644 index 000000000..4e5ce4267 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/network/PacketBundlePacker.class differ diff --git a/build/_compileJava_2/net/minecraft/network/PacketBundleUnpacker.class b/build/_compileJava_2/net/minecraft/network/PacketBundleUnpacker.class new file mode 100644 index 000000000..db93b9f20 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/network/PacketBundleUnpacker.class differ diff --git a/build/_compileJava_2/net/minecraft/network/PacketDecoder.class b/build/_compileJava_2/net/minecraft/network/PacketDecoder.class new file mode 100644 index 000000000..63a6a3c54 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/network/PacketDecoder.class differ diff --git a/build/_compileJava_2/net/minecraft/network/PacketEncoder.class b/build/_compileJava_2/net/minecraft/network/PacketEncoder.class new file mode 100644 index 000000000..7cfff86c5 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/network/PacketEncoder.class differ diff --git a/build/_compileJava_2/net/minecraft/network/PacketListener.class b/build/_compileJava_2/net/minecraft/network/PacketListener.class new file mode 100644 index 000000000..f5b049c47 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/network/PacketListener.class differ diff --git a/build/_compileJava_2/net/minecraft/network/PacketSendListener$1.class b/build/_compileJava_2/net/minecraft/network/PacketSendListener$1.class new file mode 100644 index 000000000..3ca42a504 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/network/PacketSendListener$1.class differ diff --git a/build/_compileJava_2/net/minecraft/network/PacketSendListener$2.class b/build/_compileJava_2/net/minecraft/network/PacketSendListener$2.class new file mode 100644 index 000000000..3e5999cc6 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/network/PacketSendListener$2.class differ diff --git a/build/_compileJava_2/net/minecraft/network/PacketSendListener.class b/build/_compileJava_2/net/minecraft/network/PacketSendListener.class new file mode 100644 index 000000000..27012afd6 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/network/PacketSendListener.class differ diff --git a/build/_compileJava_2/net/minecraft/network/RateKickingConnection.class b/build/_compileJava_2/net/minecraft/network/RateKickingConnection.class new file mode 100644 index 000000000..8ad24ef3b Binary files /dev/null and b/build/_compileJava_2/net/minecraft/network/RateKickingConnection.class differ diff --git a/build/_compileJava_2/net/minecraft/network/SkipPacketException.class b/build/_compileJava_2/net/minecraft/network/SkipPacketException.class new file mode 100644 index 000000000..f47baeb3b Binary files /dev/null and b/build/_compileJava_2/net/minecraft/network/SkipPacketException.class differ diff --git a/build/_compileJava_2/net/minecraft/network/TickablePacketListener.class b/build/_compileJava_2/net/minecraft/network/TickablePacketListener.class new file mode 100644 index 000000000..465cb36b8 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/network/TickablePacketListener.class differ diff --git a/build/_compileJava_2/net/minecraft/network/Varint21FrameDecoder.class b/build/_compileJava_2/net/minecraft/network/Varint21FrameDecoder.class new file mode 100644 index 000000000..80f850ba3 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/network/Varint21FrameDecoder.class differ diff --git a/build/_compileJava_2/net/minecraft/network/Varint21LengthFieldPrepender.class b/build/_compileJava_2/net/minecraft/network/Varint21LengthFieldPrepender.class new file mode 100644 index 000000000..4e67617d9 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/network/Varint21LengthFieldPrepender.class differ diff --git a/build/_compileJava_2/net/minecraft/network/chat/ChatDecorator.class b/build/_compileJava_2/net/minecraft/network/chat/ChatDecorator.class new file mode 100644 index 000000000..22f265c35 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/network/chat/ChatDecorator.class differ diff --git a/build/_compileJava_2/net/minecraft/network/chat/ChatType$Bound.class b/build/_compileJava_2/net/minecraft/network/chat/ChatType$Bound.class new file mode 100644 index 000000000..fa185f46a Binary files /dev/null and b/build/_compileJava_2/net/minecraft/network/chat/ChatType$Bound.class differ diff --git a/build/_compileJava_2/net/minecraft/network/chat/ChatType$BoundNetwork.class b/build/_compileJava_2/net/minecraft/network/chat/ChatType$BoundNetwork.class new file mode 100644 index 000000000..510ef1235 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/network/chat/ChatType$BoundNetwork.class differ diff --git a/build/_compileJava_2/net/minecraft/network/chat/ChatType.class b/build/_compileJava_2/net/minecraft/network/chat/ChatType.class new file mode 100644 index 000000000..15416853b Binary files /dev/null and b/build/_compileJava_2/net/minecraft/network/chat/ChatType.class differ diff --git a/build/_compileJava_2/net/minecraft/network/chat/ChatTypeDecoration$Parameter$Selector.class b/build/_compileJava_2/net/minecraft/network/chat/ChatTypeDecoration$Parameter$Selector.class new file mode 100644 index 000000000..b408e68bf Binary files /dev/null and b/build/_compileJava_2/net/minecraft/network/chat/ChatTypeDecoration$Parameter$Selector.class differ diff --git a/build/_compileJava_2/net/minecraft/network/chat/ChatTypeDecoration$Parameter.class b/build/_compileJava_2/net/minecraft/network/chat/ChatTypeDecoration$Parameter.class new file mode 100644 index 000000000..c34cdd4e8 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/network/chat/ChatTypeDecoration$Parameter.class differ diff --git a/build/_compileJava_2/net/minecraft/network/chat/ChatTypeDecoration.class b/build/_compileJava_2/net/minecraft/network/chat/ChatTypeDecoration.class new file mode 100644 index 000000000..31759a68f Binary files /dev/null and b/build/_compileJava_2/net/minecraft/network/chat/ChatTypeDecoration.class differ diff --git a/build/_compileJava_2/net/minecraft/network/chat/ClickEvent$Action.class b/build/_compileJava_2/net/minecraft/network/chat/ClickEvent$Action.class new file mode 100644 index 000000000..b0d6642cc Binary files /dev/null and b/build/_compileJava_2/net/minecraft/network/chat/ClickEvent$Action.class differ diff --git a/build/_compileJava_2/net/minecraft/network/chat/ClickEvent.class b/build/_compileJava_2/net/minecraft/network/chat/ClickEvent.class new file mode 100644 index 000000000..2f6caf090 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/network/chat/ClickEvent.class differ diff --git a/build/_compileJava_2/net/minecraft/network/chat/CommonComponents.class b/build/_compileJava_2/net/minecraft/network/chat/CommonComponents.class new file mode 100644 index 000000000..13bad756e Binary files /dev/null and b/build/_compileJava_2/net/minecraft/network/chat/CommonComponents.class differ diff --git a/build/_compileJava_2/net/minecraft/network/chat/Component$Serializer.class b/build/_compileJava_2/net/minecraft/network/chat/Component$Serializer.class new file mode 100644 index 000000000..4a8c2df4f Binary files /dev/null and b/build/_compileJava_2/net/minecraft/network/chat/Component$Serializer.class differ diff --git a/build/_compileJava_2/net/minecraft/network/chat/Component.class b/build/_compileJava_2/net/minecraft/network/chat/Component.class new file mode 100644 index 000000000..ff4d93eae Binary files /dev/null and b/build/_compileJava_2/net/minecraft/network/chat/Component.class differ diff --git a/build/_compileJava_2/net/minecraft/network/chat/ComponentContents$1.class b/build/_compileJava_2/net/minecraft/network/chat/ComponentContents$1.class new file mode 100644 index 000000000..7e30258f0 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/network/chat/ComponentContents$1.class differ diff --git a/build/_compileJava_2/net/minecraft/network/chat/ComponentContents.class b/build/_compileJava_2/net/minecraft/network/chat/ComponentContents.class new file mode 100644 index 000000000..45dbeeeed Binary files /dev/null and b/build/_compileJava_2/net/minecraft/network/chat/ComponentContents.class differ diff --git a/build/_compileJava_2/net/minecraft/network/chat/ComponentUtils.class b/build/_compileJava_2/net/minecraft/network/chat/ComponentUtils.class new file mode 100644 index 000000000..213939304 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/network/chat/ComponentUtils.class differ diff --git a/build/_compileJava_2/net/minecraft/network/chat/FilterMask$1.class b/build/_compileJava_2/net/minecraft/network/chat/FilterMask$1.class new file mode 100644 index 000000000..5d33bfd83 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/network/chat/FilterMask$1.class differ diff --git a/build/_compileJava_2/net/minecraft/network/chat/FilterMask$Type.class b/build/_compileJava_2/net/minecraft/network/chat/FilterMask$Type.class new file mode 100644 index 000000000..3647d01a2 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/network/chat/FilterMask$Type.class differ diff --git a/build/_compileJava_2/net/minecraft/network/chat/FilterMask.class b/build/_compileJava_2/net/minecraft/network/chat/FilterMask.class new file mode 100644 index 000000000..34294e529 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/network/chat/FilterMask.class differ diff --git a/build/_compileJava_2/net/minecraft/network/chat/FormattedText$1.class b/build/_compileJava_2/net/minecraft/network/chat/FormattedText$1.class new file mode 100644 index 000000000..e30564a7e Binary files /dev/null and b/build/_compileJava_2/net/minecraft/network/chat/FormattedText$1.class differ diff --git a/build/_compileJava_2/net/minecraft/network/chat/FormattedText$2.class b/build/_compileJava_2/net/minecraft/network/chat/FormattedText$2.class new file mode 100644 index 000000000..eb9520677 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/network/chat/FormattedText$2.class differ diff --git a/build/_compileJava_2/net/minecraft/network/chat/FormattedText$3.class b/build/_compileJava_2/net/minecraft/network/chat/FormattedText$3.class new file mode 100644 index 000000000..891eb3efd Binary files /dev/null and b/build/_compileJava_2/net/minecraft/network/chat/FormattedText$3.class differ diff --git a/build/_compileJava_2/net/minecraft/network/chat/FormattedText$4.class b/build/_compileJava_2/net/minecraft/network/chat/FormattedText$4.class new file mode 100644 index 000000000..641b8ad31 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/network/chat/FormattedText$4.class differ diff --git a/build/_compileJava_2/net/minecraft/network/chat/FormattedText$ContentConsumer.class b/build/_compileJava_2/net/minecraft/network/chat/FormattedText$ContentConsumer.class new file mode 100644 index 000000000..c13636593 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/network/chat/FormattedText$ContentConsumer.class differ diff --git a/build/_compileJava_2/net/minecraft/network/chat/FormattedText$StyledContentConsumer.class b/build/_compileJava_2/net/minecraft/network/chat/FormattedText$StyledContentConsumer.class new file mode 100644 index 000000000..30deeecf0 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/network/chat/FormattedText$StyledContentConsumer.class differ diff --git a/build/_compileJava_2/net/minecraft/network/chat/FormattedText.class b/build/_compileJava_2/net/minecraft/network/chat/FormattedText.class new file mode 100644 index 000000000..879400e04 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/network/chat/FormattedText.class differ diff --git a/build/_compileJava_2/net/minecraft/network/chat/HoverEvent$Action.class b/build/_compileJava_2/net/minecraft/network/chat/HoverEvent$Action.class new file mode 100644 index 000000000..50ef23dbc Binary files /dev/null and b/build/_compileJava_2/net/minecraft/network/chat/HoverEvent$Action.class differ diff --git a/build/_compileJava_2/net/minecraft/network/chat/HoverEvent$EntityTooltipInfo.class b/build/_compileJava_2/net/minecraft/network/chat/HoverEvent$EntityTooltipInfo.class new file mode 100644 index 000000000..12c0d8243 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/network/chat/HoverEvent$EntityTooltipInfo.class differ diff --git a/build/_compileJava_2/net/minecraft/network/chat/HoverEvent$ItemStackInfo.class b/build/_compileJava_2/net/minecraft/network/chat/HoverEvent$ItemStackInfo.class new file mode 100644 index 000000000..0e3135bc2 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/network/chat/HoverEvent$ItemStackInfo.class differ diff --git a/build/_compileJava_2/net/minecraft/network/chat/HoverEvent.class b/build/_compileJava_2/net/minecraft/network/chat/HoverEvent.class new file mode 100644 index 000000000..75f1fb60f Binary files /dev/null and b/build/_compileJava_2/net/minecraft/network/chat/HoverEvent.class differ diff --git a/build/_compileJava_2/net/minecraft/network/chat/LastSeenMessages$Packed.class b/build/_compileJava_2/net/minecraft/network/chat/LastSeenMessages$Packed.class new file mode 100644 index 000000000..2c6cc8b89 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/network/chat/LastSeenMessages$Packed.class differ diff --git a/build/_compileJava_2/net/minecraft/network/chat/LastSeenMessages$Update.class b/build/_compileJava_2/net/minecraft/network/chat/LastSeenMessages$Update.class new file mode 100644 index 000000000..227b42a15 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/network/chat/LastSeenMessages$Update.class differ diff --git a/build/_compileJava_2/net/minecraft/network/chat/LastSeenMessages.class b/build/_compileJava_2/net/minecraft/network/chat/LastSeenMessages.class new file mode 100644 index 000000000..ba3616e32 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/network/chat/LastSeenMessages.class differ diff --git a/build/_compileJava_2/net/minecraft/network/chat/LastSeenMessagesTracker$Update.class b/build/_compileJava_2/net/minecraft/network/chat/LastSeenMessagesTracker$Update.class new file mode 100644 index 000000000..ee5e9dc7d Binary files /dev/null and b/build/_compileJava_2/net/minecraft/network/chat/LastSeenMessagesTracker$Update.class differ diff --git a/build/_compileJava_2/net/minecraft/network/chat/LastSeenMessagesTracker.class b/build/_compileJava_2/net/minecraft/network/chat/LastSeenMessagesTracker.class new file mode 100644 index 000000000..7d493d6db Binary files /dev/null and b/build/_compileJava_2/net/minecraft/network/chat/LastSeenMessagesTracker.class differ diff --git a/build/_compileJava_2/net/minecraft/network/chat/LastSeenMessagesValidator.class b/build/_compileJava_2/net/minecraft/network/chat/LastSeenMessagesValidator.class new file mode 100644 index 000000000..d8ed371cf Binary files /dev/null and b/build/_compileJava_2/net/minecraft/network/chat/LastSeenMessagesValidator.class differ diff --git a/build/_compileJava_2/net/minecraft/network/chat/LastSeenTrackedEntry.class b/build/_compileJava_2/net/minecraft/network/chat/LastSeenTrackedEntry.class new file mode 100644 index 000000000..98298a117 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/network/chat/LastSeenTrackedEntry.class differ diff --git a/build/_compileJava_2/net/minecraft/network/chat/LocalChatSession.class b/build/_compileJava_2/net/minecraft/network/chat/LocalChatSession.class new file mode 100644 index 000000000..5c12ddcd3 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/network/chat/LocalChatSession.class differ diff --git a/build/_compileJava_2/net/minecraft/network/chat/MessageSignature$Packed.class b/build/_compileJava_2/net/minecraft/network/chat/MessageSignature$Packed.class new file mode 100644 index 000000000..dbdc14043 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/network/chat/MessageSignature$Packed.class differ diff --git a/build/_compileJava_2/net/minecraft/network/chat/MessageSignature.class b/build/_compileJava_2/net/minecraft/network/chat/MessageSignature.class new file mode 100644 index 000000000..ef77abd4e Binary files /dev/null and b/build/_compileJava_2/net/minecraft/network/chat/MessageSignature.class differ diff --git a/build/_compileJava_2/net/minecraft/network/chat/MessageSignatureCache.class b/build/_compileJava_2/net/minecraft/network/chat/MessageSignatureCache.class new file mode 100644 index 000000000..26f043b44 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/network/chat/MessageSignatureCache.class differ diff --git a/build/_compileJava_2/net/minecraft/network/chat/MutableComponent.class b/build/_compileJava_2/net/minecraft/network/chat/MutableComponent.class new file mode 100644 index 000000000..921a36ba8 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/network/chat/MutableComponent.class differ diff --git a/build/_compileJava_2/net/minecraft/network/chat/OutgoingChatMessage$Disguised.class b/build/_compileJava_2/net/minecraft/network/chat/OutgoingChatMessage$Disguised.class new file mode 100644 index 000000000..34f897cae Binary files /dev/null and b/build/_compileJava_2/net/minecraft/network/chat/OutgoingChatMessage$Disguised.class differ diff --git a/build/_compileJava_2/net/minecraft/network/chat/OutgoingChatMessage$Player.class b/build/_compileJava_2/net/minecraft/network/chat/OutgoingChatMessage$Player.class new file mode 100644 index 000000000..07e0fadd1 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/network/chat/OutgoingChatMessage$Player.class differ diff --git a/build/_compileJava_2/net/minecraft/network/chat/OutgoingChatMessage.class b/build/_compileJava_2/net/minecraft/network/chat/OutgoingChatMessage.class new file mode 100644 index 000000000..e5d2a0a03 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/network/chat/OutgoingChatMessage.class differ diff --git a/build/_compileJava_2/net/minecraft/network/chat/PlayerChatMessage.class b/build/_compileJava_2/net/minecraft/network/chat/PlayerChatMessage.class new file mode 100644 index 000000000..9b1114d1b Binary files /dev/null and b/build/_compileJava_2/net/minecraft/network/chat/PlayerChatMessage.class differ diff --git a/build/_compileJava_2/net/minecraft/network/chat/RemoteChatSession$Data.class b/build/_compileJava_2/net/minecraft/network/chat/RemoteChatSession$Data.class new file mode 100644 index 000000000..7ef4db93c Binary files /dev/null and b/build/_compileJava_2/net/minecraft/network/chat/RemoteChatSession$Data.class differ diff --git a/build/_compileJava_2/net/minecraft/network/chat/RemoteChatSession.class b/build/_compileJava_2/net/minecraft/network/chat/RemoteChatSession.class new file mode 100644 index 000000000..950b25b5e Binary files /dev/null and b/build/_compileJava_2/net/minecraft/network/chat/RemoteChatSession.class differ diff --git a/build/_compileJava_2/net/minecraft/network/chat/SignableCommand$Argument.class b/build/_compileJava_2/net/minecraft/network/chat/SignableCommand$Argument.class new file mode 100644 index 000000000..47bbba38a Binary files /dev/null and b/build/_compileJava_2/net/minecraft/network/chat/SignableCommand$Argument.class differ diff --git a/build/_compileJava_2/net/minecraft/network/chat/SignableCommand.class b/build/_compileJava_2/net/minecraft/network/chat/SignableCommand.class new file mode 100644 index 000000000..40744e674 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/network/chat/SignableCommand.class differ diff --git a/build/_compileJava_2/net/minecraft/network/chat/SignedMessageBody$Packed.class b/build/_compileJava_2/net/minecraft/network/chat/SignedMessageBody$Packed.class new file mode 100644 index 000000000..ddd15095d Binary files /dev/null and b/build/_compileJava_2/net/minecraft/network/chat/SignedMessageBody$Packed.class differ diff --git a/build/_compileJava_2/net/minecraft/network/chat/SignedMessageBody.class b/build/_compileJava_2/net/minecraft/network/chat/SignedMessageBody.class new file mode 100644 index 000000000..b7b047ded Binary files /dev/null and b/build/_compileJava_2/net/minecraft/network/chat/SignedMessageBody.class differ diff --git a/build/_compileJava_2/net/minecraft/network/chat/SignedMessageChain$DecodeException.class b/build/_compileJava_2/net/minecraft/network/chat/SignedMessageChain$DecodeException.class new file mode 100644 index 000000000..b14605dc2 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/network/chat/SignedMessageChain$DecodeException.class differ diff --git a/build/_compileJava_2/net/minecraft/network/chat/SignedMessageChain$Decoder.class b/build/_compileJava_2/net/minecraft/network/chat/SignedMessageChain$Decoder.class new file mode 100644 index 000000000..c43c8e9b5 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/network/chat/SignedMessageChain$Decoder.class differ diff --git a/build/_compileJava_2/net/minecraft/network/chat/SignedMessageChain$Encoder.class b/build/_compileJava_2/net/minecraft/network/chat/SignedMessageChain$Encoder.class new file mode 100644 index 000000000..59a47f851 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/network/chat/SignedMessageChain$Encoder.class differ diff --git a/build/_compileJava_2/net/minecraft/network/chat/SignedMessageChain.class b/build/_compileJava_2/net/minecraft/network/chat/SignedMessageChain.class new file mode 100644 index 000000000..c3f58b628 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/network/chat/SignedMessageChain.class differ diff --git a/build/_compileJava_2/net/minecraft/network/chat/SignedMessageLink.class b/build/_compileJava_2/net/minecraft/network/chat/SignedMessageLink.class new file mode 100644 index 000000000..48ddfbb3f Binary files /dev/null and b/build/_compileJava_2/net/minecraft/network/chat/SignedMessageLink.class differ diff --git a/build/_compileJava_2/net/minecraft/network/chat/SignedMessageValidator$KeyBased.class b/build/_compileJava_2/net/minecraft/network/chat/SignedMessageValidator$KeyBased.class new file mode 100644 index 000000000..209d22dbf Binary files /dev/null and b/build/_compileJava_2/net/minecraft/network/chat/SignedMessageValidator$KeyBased.class differ diff --git a/build/_compileJava_2/net/minecraft/network/chat/SignedMessageValidator.class b/build/_compileJava_2/net/minecraft/network/chat/SignedMessageValidator.class new file mode 100644 index 000000000..bb0b3b991 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/network/chat/SignedMessageValidator.class differ diff --git a/build/_compileJava_2/net/minecraft/network/chat/Style$1.class b/build/_compileJava_2/net/minecraft/network/chat/Style$1.class new file mode 100644 index 000000000..f3d6f5793 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/network/chat/Style$1.class differ diff --git a/build/_compileJava_2/net/minecraft/network/chat/Style$1Collector.class b/build/_compileJava_2/net/minecraft/network/chat/Style$1Collector.class new file mode 100644 index 000000000..95a6eac07 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/network/chat/Style$1Collector.class differ diff --git a/build/_compileJava_2/net/minecraft/network/chat/Style$Serializer.class b/build/_compileJava_2/net/minecraft/network/chat/Style$Serializer.class new file mode 100644 index 000000000..fd33c2561 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/network/chat/Style$Serializer.class differ diff --git a/build/_compileJava_2/net/minecraft/network/chat/Style.class b/build/_compileJava_2/net/minecraft/network/chat/Style.class new file mode 100644 index 000000000..72c9395b2 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/network/chat/Style.class differ diff --git a/build/_compileJava_2/net/minecraft/network/chat/SubStringSource.class b/build/_compileJava_2/net/minecraft/network/chat/SubStringSource.class new file mode 100644 index 000000000..e6feeca25 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/network/chat/SubStringSource.class differ diff --git a/build/_compileJava_2/net/minecraft/network/chat/TextColor.class b/build/_compileJava_2/net/minecraft/network/chat/TextColor.class new file mode 100644 index 000000000..c911e089e Binary files /dev/null and b/build/_compileJava_2/net/minecraft/network/chat/TextColor.class differ diff --git a/build/_compileJava_2/net/minecraft/network/chat/ThrowingComponent.class b/build/_compileJava_2/net/minecraft/network/chat/ThrowingComponent.class new file mode 100644 index 000000000..ef18944b1 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/network/chat/ThrowingComponent.class differ diff --git a/build/_compileJava_2/net/minecraft/network/chat/contents/BlockDataSource.class b/build/_compileJava_2/net/minecraft/network/chat/contents/BlockDataSource.class new file mode 100644 index 000000000..c7ec635fc Binary files /dev/null and b/build/_compileJava_2/net/minecraft/network/chat/contents/BlockDataSource.class differ diff --git a/build/_compileJava_2/net/minecraft/network/chat/contents/DataSource.class b/build/_compileJava_2/net/minecraft/network/chat/contents/DataSource.class new file mode 100644 index 000000000..726397420 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/network/chat/contents/DataSource.class differ diff --git a/build/_compileJava_2/net/minecraft/network/chat/contents/EntityDataSource.class b/build/_compileJava_2/net/minecraft/network/chat/contents/EntityDataSource.class new file mode 100644 index 000000000..2237ee2df Binary files /dev/null and b/build/_compileJava_2/net/minecraft/network/chat/contents/EntityDataSource.class differ diff --git a/build/_compileJava_2/net/minecraft/network/chat/contents/KeybindContents.class b/build/_compileJava_2/net/minecraft/network/chat/contents/KeybindContents.class new file mode 100644 index 000000000..1f3c37b7f Binary files /dev/null and b/build/_compileJava_2/net/minecraft/network/chat/contents/KeybindContents.class differ diff --git a/build/_compileJava_2/net/minecraft/network/chat/contents/KeybindResolver.class b/build/_compileJava_2/net/minecraft/network/chat/contents/KeybindResolver.class new file mode 100644 index 000000000..fd9f4586a Binary files /dev/null and b/build/_compileJava_2/net/minecraft/network/chat/contents/KeybindResolver.class differ diff --git a/build/_compileJava_2/net/minecraft/network/chat/contents/LiteralContents.class b/build/_compileJava_2/net/minecraft/network/chat/contents/LiteralContents.class new file mode 100644 index 000000000..8106a14be Binary files /dev/null and b/build/_compileJava_2/net/minecraft/network/chat/contents/LiteralContents.class differ diff --git a/build/_compileJava_2/net/minecraft/network/chat/contents/NbtContents.class b/build/_compileJava_2/net/minecraft/network/chat/contents/NbtContents.class new file mode 100644 index 000000000..e63d2e932 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/network/chat/contents/NbtContents.class differ diff --git a/build/_compileJava_2/net/minecraft/network/chat/contents/ScoreContents.class b/build/_compileJava_2/net/minecraft/network/chat/contents/ScoreContents.class new file mode 100644 index 000000000..9984f8cff Binary files /dev/null and b/build/_compileJava_2/net/minecraft/network/chat/contents/ScoreContents.class differ diff --git a/build/_compileJava_2/net/minecraft/network/chat/contents/SelectorContents.class b/build/_compileJava_2/net/minecraft/network/chat/contents/SelectorContents.class new file mode 100644 index 000000000..9d608e3d9 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/network/chat/contents/SelectorContents.class differ diff --git a/build/_compileJava_2/net/minecraft/network/chat/contents/StorageDataSource.class b/build/_compileJava_2/net/minecraft/network/chat/contents/StorageDataSource.class new file mode 100644 index 000000000..d319de072 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/network/chat/contents/StorageDataSource.class differ diff --git a/build/_compileJava_2/net/minecraft/network/chat/contents/TranslatableContents.class b/build/_compileJava_2/net/minecraft/network/chat/contents/TranslatableContents.class new file mode 100644 index 000000000..322857421 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/network/chat/contents/TranslatableContents.class differ diff --git a/build/_compileJava_2/net/minecraft/network/chat/contents/TranslatableFormatException.class b/build/_compileJava_2/net/minecraft/network/chat/contents/TranslatableFormatException.class new file mode 100644 index 000000000..65b49d6e1 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/network/chat/contents/TranslatableFormatException.class differ diff --git a/build/_compileJava_2/net/minecraft/network/chat/contents/package-info.class b/build/_compileJava_2/net/minecraft/network/chat/contents/package-info.class new file mode 100644 index 000000000..ca3c4b10c Binary files /dev/null and b/build/_compileJava_2/net/minecraft/network/chat/contents/package-info.class differ diff --git a/build/_compileJava_2/net/minecraft/network/chat/package-info.class b/build/_compileJava_2/net/minecraft/network/chat/package-info.class new file mode 100644 index 000000000..98aecd903 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/network/chat/package-info.class differ diff --git a/build/_compileJava_2/net/minecraft/network/package-info.class b/build/_compileJava_2/net/minecraft/network/package-info.class new file mode 100644 index 000000000..f8acd4a3a Binary files /dev/null and b/build/_compileJava_2/net/minecraft/network/package-info.class differ diff --git a/build/_compileJava_2/net/minecraft/network/protocol/BundleDelimiterPacket.class b/build/_compileJava_2/net/minecraft/network/protocol/BundleDelimiterPacket.class new file mode 100644 index 000000000..fd4d1a5d6 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/network/protocol/BundleDelimiterPacket.class differ diff --git a/build/_compileJava_2/net/minecraft/network/protocol/BundlePacket.class b/build/_compileJava_2/net/minecraft/network/protocol/BundlePacket.class new file mode 100644 index 000000000..bf10175d8 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/network/protocol/BundlePacket.class differ diff --git a/build/_compileJava_2/net/minecraft/network/protocol/BundlerInfo$1.class b/build/_compileJava_2/net/minecraft/network/protocol/BundlerInfo$1.class new file mode 100644 index 000000000..0a9d201f9 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/network/protocol/BundlerInfo$1.class differ diff --git a/build/_compileJava_2/net/minecraft/network/protocol/BundlerInfo$2$1.class b/build/_compileJava_2/net/minecraft/network/protocol/BundlerInfo$2$1.class new file mode 100644 index 000000000..e52ae2149 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/network/protocol/BundlerInfo$2$1.class differ diff --git a/build/_compileJava_2/net/minecraft/network/protocol/BundlerInfo$2.class b/build/_compileJava_2/net/minecraft/network/protocol/BundlerInfo$2.class new file mode 100644 index 000000000..f86681856 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/network/protocol/BundlerInfo$2.class differ diff --git a/build/_compileJava_2/net/minecraft/network/protocol/BundlerInfo$Bundler.class b/build/_compileJava_2/net/minecraft/network/protocol/BundlerInfo$Bundler.class new file mode 100644 index 000000000..d59b92d22 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/network/protocol/BundlerInfo$Bundler.class differ diff --git a/build/_compileJava_2/net/minecraft/network/protocol/BundlerInfo$Provider.class b/build/_compileJava_2/net/minecraft/network/protocol/BundlerInfo$Provider.class new file mode 100644 index 000000000..67bca5e4a Binary files /dev/null and b/build/_compileJava_2/net/minecraft/network/protocol/BundlerInfo$Provider.class differ diff --git a/build/_compileJava_2/net/minecraft/network/protocol/BundlerInfo.class b/build/_compileJava_2/net/minecraft/network/protocol/BundlerInfo.class new file mode 100644 index 000000000..43e774007 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/network/protocol/BundlerInfo.class differ diff --git a/build/_compileJava_2/net/minecraft/network/protocol/Packet.class b/build/_compileJava_2/net/minecraft/network/protocol/Packet.class new file mode 100644 index 000000000..1d4044244 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/network/protocol/Packet.class differ diff --git a/build/_compileJava_2/net/minecraft/network/protocol/PacketFlow.class b/build/_compileJava_2/net/minecraft/network/protocol/PacketFlow.class new file mode 100644 index 000000000..b53488615 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/network/protocol/PacketFlow.class differ diff --git a/build/_compileJava_2/net/minecraft/network/protocol/PacketUtils.class b/build/_compileJava_2/net/minecraft/network/protocol/PacketUtils.class new file mode 100644 index 000000000..e2ec325c9 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/network/protocol/PacketUtils.class differ diff --git a/build/_compileJava_2/net/minecraft/network/protocol/game/ClientGamePacketListener.class b/build/_compileJava_2/net/minecraft/network/protocol/game/ClientGamePacketListener.class new file mode 100644 index 000000000..36512dfbb Binary files /dev/null and b/build/_compileJava_2/net/minecraft/network/protocol/game/ClientGamePacketListener.class differ diff --git a/build/_compileJava_2/net/minecraft/network/protocol/game/ClientboundAddEntityPacket.class b/build/_compileJava_2/net/minecraft/network/protocol/game/ClientboundAddEntityPacket.class new file mode 100644 index 000000000..41c6a7d92 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/network/protocol/game/ClientboundAddEntityPacket.class differ diff --git a/build/_compileJava_2/net/minecraft/network/protocol/game/ClientboundAddExperienceOrbPacket.class b/build/_compileJava_2/net/minecraft/network/protocol/game/ClientboundAddExperienceOrbPacket.class new file mode 100644 index 000000000..28695b27c Binary files /dev/null and b/build/_compileJava_2/net/minecraft/network/protocol/game/ClientboundAddExperienceOrbPacket.class differ diff --git a/build/_compileJava_2/net/minecraft/network/protocol/game/ClientboundAddPlayerPacket.class b/build/_compileJava_2/net/minecraft/network/protocol/game/ClientboundAddPlayerPacket.class new file mode 100644 index 000000000..27cd3f2f0 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/network/protocol/game/ClientboundAddPlayerPacket.class differ diff --git a/build/_compileJava_2/net/minecraft/network/protocol/game/ClientboundAnimatePacket.class b/build/_compileJava_2/net/minecraft/network/protocol/game/ClientboundAnimatePacket.class new file mode 100644 index 000000000..bd6bdc578 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/network/protocol/game/ClientboundAnimatePacket.class differ diff --git a/build/_compileJava_2/net/minecraft/network/protocol/game/ClientboundAwardStatsPacket.class b/build/_compileJava_2/net/minecraft/network/protocol/game/ClientboundAwardStatsPacket.class new file mode 100644 index 000000000..9e244b20d Binary files /dev/null and b/build/_compileJava_2/net/minecraft/network/protocol/game/ClientboundAwardStatsPacket.class differ diff --git a/build/_compileJava_2/net/minecraft/network/protocol/game/ClientboundBlockChangedAckPacket.class b/build/_compileJava_2/net/minecraft/network/protocol/game/ClientboundBlockChangedAckPacket.class new file mode 100644 index 000000000..66947cd40 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/network/protocol/game/ClientboundBlockChangedAckPacket.class differ diff --git a/build/_compileJava_2/net/minecraft/network/protocol/game/ClientboundBlockDestructionPacket.class b/build/_compileJava_2/net/minecraft/network/protocol/game/ClientboundBlockDestructionPacket.class new file mode 100644 index 000000000..72a8f8b98 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/network/protocol/game/ClientboundBlockDestructionPacket.class differ diff --git a/build/_compileJava_2/net/minecraft/network/protocol/game/ClientboundBlockEntityDataPacket.class b/build/_compileJava_2/net/minecraft/network/protocol/game/ClientboundBlockEntityDataPacket.class new file mode 100644 index 000000000..665f4bd2a Binary files /dev/null and b/build/_compileJava_2/net/minecraft/network/protocol/game/ClientboundBlockEntityDataPacket.class differ diff --git a/build/_compileJava_2/net/minecraft/network/protocol/game/ClientboundBlockEventPacket.class b/build/_compileJava_2/net/minecraft/network/protocol/game/ClientboundBlockEventPacket.class new file mode 100644 index 000000000..47d8ee6b8 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/network/protocol/game/ClientboundBlockEventPacket.class differ diff --git a/build/_compileJava_2/net/minecraft/network/protocol/game/ClientboundBlockUpdatePacket.class b/build/_compileJava_2/net/minecraft/network/protocol/game/ClientboundBlockUpdatePacket.class new file mode 100644 index 000000000..5963c226f Binary files /dev/null and b/build/_compileJava_2/net/minecraft/network/protocol/game/ClientboundBlockUpdatePacket.class differ diff --git a/build/_compileJava_2/net/minecraft/network/protocol/game/ClientboundBossEventPacket$1.class b/build/_compileJava_2/net/minecraft/network/protocol/game/ClientboundBossEventPacket$1.class new file mode 100644 index 000000000..dc0abbd84 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/network/protocol/game/ClientboundBossEventPacket$1.class differ diff --git a/build/_compileJava_2/net/minecraft/network/protocol/game/ClientboundBossEventPacket$AddOperation.class b/build/_compileJava_2/net/minecraft/network/protocol/game/ClientboundBossEventPacket$AddOperation.class new file mode 100644 index 000000000..ba9290a4d Binary files /dev/null and b/build/_compileJava_2/net/minecraft/network/protocol/game/ClientboundBossEventPacket$AddOperation.class differ diff --git a/build/_compileJava_2/net/minecraft/network/protocol/game/ClientboundBossEventPacket$Handler.class b/build/_compileJava_2/net/minecraft/network/protocol/game/ClientboundBossEventPacket$Handler.class new file mode 100644 index 000000000..6758fbc55 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/network/protocol/game/ClientboundBossEventPacket$Handler.class differ diff --git a/build/_compileJava_2/net/minecraft/network/protocol/game/ClientboundBossEventPacket$Operation.class b/build/_compileJava_2/net/minecraft/network/protocol/game/ClientboundBossEventPacket$Operation.class new file mode 100644 index 000000000..99056b268 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/network/protocol/game/ClientboundBossEventPacket$Operation.class differ diff --git a/build/_compileJava_2/net/minecraft/network/protocol/game/ClientboundBossEventPacket$OperationType.class b/build/_compileJava_2/net/minecraft/network/protocol/game/ClientboundBossEventPacket$OperationType.class new file mode 100644 index 000000000..789bf4728 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/network/protocol/game/ClientboundBossEventPacket$OperationType.class differ diff --git a/build/_compileJava_2/net/minecraft/network/protocol/game/ClientboundBossEventPacket$UpdateNameOperation.class b/build/_compileJava_2/net/minecraft/network/protocol/game/ClientboundBossEventPacket$UpdateNameOperation.class new file mode 100644 index 000000000..b387c5914 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/network/protocol/game/ClientboundBossEventPacket$UpdateNameOperation.class differ diff --git a/build/_compileJava_2/net/minecraft/network/protocol/game/ClientboundBossEventPacket$UpdateProgressOperation.class b/build/_compileJava_2/net/minecraft/network/protocol/game/ClientboundBossEventPacket$UpdateProgressOperation.class new file mode 100644 index 000000000..bfb543d2b Binary files /dev/null and b/build/_compileJava_2/net/minecraft/network/protocol/game/ClientboundBossEventPacket$UpdateProgressOperation.class differ diff --git a/build/_compileJava_2/net/minecraft/network/protocol/game/ClientboundBossEventPacket$UpdatePropertiesOperation.class b/build/_compileJava_2/net/minecraft/network/protocol/game/ClientboundBossEventPacket$UpdatePropertiesOperation.class new file mode 100644 index 000000000..46b47fd3f Binary files /dev/null and b/build/_compileJava_2/net/minecraft/network/protocol/game/ClientboundBossEventPacket$UpdatePropertiesOperation.class differ diff --git a/build/_compileJava_2/net/minecraft/network/protocol/game/ClientboundBossEventPacket$UpdateStyleOperation.class b/build/_compileJava_2/net/minecraft/network/protocol/game/ClientboundBossEventPacket$UpdateStyleOperation.class new file mode 100644 index 000000000..d156fb869 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/network/protocol/game/ClientboundBossEventPacket$UpdateStyleOperation.class differ diff --git a/build/_compileJava_2/net/minecraft/network/protocol/game/ClientboundBossEventPacket.class b/build/_compileJava_2/net/minecraft/network/protocol/game/ClientboundBossEventPacket.class new file mode 100644 index 000000000..c3d2164a9 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/network/protocol/game/ClientboundBossEventPacket.class differ diff --git a/build/_compileJava_2/net/minecraft/network/protocol/game/ClientboundBundlePacket.class b/build/_compileJava_2/net/minecraft/network/protocol/game/ClientboundBundlePacket.class new file mode 100644 index 000000000..5dcab8357 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/network/protocol/game/ClientboundBundlePacket.class differ diff --git a/build/_compileJava_2/net/minecraft/network/protocol/game/ClientboundChangeDifficultyPacket.class b/build/_compileJava_2/net/minecraft/network/protocol/game/ClientboundChangeDifficultyPacket.class new file mode 100644 index 000000000..1b510bd08 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/network/protocol/game/ClientboundChangeDifficultyPacket.class differ diff --git a/build/_compileJava_2/net/minecraft/network/protocol/game/ClientboundChunksBiomesPacket$ChunkBiomeData.class b/build/_compileJava_2/net/minecraft/network/protocol/game/ClientboundChunksBiomesPacket$ChunkBiomeData.class new file mode 100644 index 000000000..14c52e22c Binary files /dev/null and b/build/_compileJava_2/net/minecraft/network/protocol/game/ClientboundChunksBiomesPacket$ChunkBiomeData.class differ diff --git a/build/_compileJava_2/net/minecraft/network/protocol/game/ClientboundChunksBiomesPacket.class b/build/_compileJava_2/net/minecraft/network/protocol/game/ClientboundChunksBiomesPacket.class new file mode 100644 index 000000000..65d8606c6 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/network/protocol/game/ClientboundChunksBiomesPacket.class differ diff --git a/build/_compileJava_2/net/minecraft/network/protocol/game/ClientboundClearTitlesPacket.class b/build/_compileJava_2/net/minecraft/network/protocol/game/ClientboundClearTitlesPacket.class new file mode 100644 index 000000000..507b3cf74 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/network/protocol/game/ClientboundClearTitlesPacket.class differ diff --git a/build/_compileJava_2/net/minecraft/network/protocol/game/ClientboundCommandSuggestionsPacket.class b/build/_compileJava_2/net/minecraft/network/protocol/game/ClientboundCommandSuggestionsPacket.class new file mode 100644 index 000000000..5ea7a0e65 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/network/protocol/game/ClientboundCommandSuggestionsPacket.class differ diff --git a/build/_compileJava_2/net/minecraft/network/protocol/game/ClientboundCommandsPacket$ArgumentNodeStub.class b/build/_compileJava_2/net/minecraft/network/protocol/game/ClientboundCommandsPacket$ArgumentNodeStub.class new file mode 100644 index 000000000..eab9d297c Binary files /dev/null and b/build/_compileJava_2/net/minecraft/network/protocol/game/ClientboundCommandsPacket$ArgumentNodeStub.class differ diff --git a/build/_compileJava_2/net/minecraft/network/protocol/game/ClientboundCommandsPacket$Entry.class b/build/_compileJava_2/net/minecraft/network/protocol/game/ClientboundCommandsPacket$Entry.class new file mode 100644 index 000000000..96c3941ba Binary files /dev/null and b/build/_compileJava_2/net/minecraft/network/protocol/game/ClientboundCommandsPacket$Entry.class differ diff --git a/build/_compileJava_2/net/minecraft/network/protocol/game/ClientboundCommandsPacket$LiteralNodeStub.class b/build/_compileJava_2/net/minecraft/network/protocol/game/ClientboundCommandsPacket$LiteralNodeStub.class new file mode 100644 index 000000000..90419ecef Binary files /dev/null and b/build/_compileJava_2/net/minecraft/network/protocol/game/ClientboundCommandsPacket$LiteralNodeStub.class differ diff --git a/build/_compileJava_2/net/minecraft/network/protocol/game/ClientboundCommandsPacket$NodeResolver.class b/build/_compileJava_2/net/minecraft/network/protocol/game/ClientboundCommandsPacket$NodeResolver.class new file mode 100644 index 000000000..e5f158080 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/network/protocol/game/ClientboundCommandsPacket$NodeResolver.class differ diff --git a/build/_compileJava_2/net/minecraft/network/protocol/game/ClientboundCommandsPacket$NodeStub.class b/build/_compileJava_2/net/minecraft/network/protocol/game/ClientboundCommandsPacket$NodeStub.class new file mode 100644 index 000000000..30c6c433e Binary files /dev/null and b/build/_compileJava_2/net/minecraft/network/protocol/game/ClientboundCommandsPacket$NodeStub.class differ diff --git a/build/_compileJava_2/net/minecraft/network/protocol/game/ClientboundCommandsPacket.class b/build/_compileJava_2/net/minecraft/network/protocol/game/ClientboundCommandsPacket.class new file mode 100644 index 000000000..664c64942 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/network/protocol/game/ClientboundCommandsPacket.class differ diff --git a/build/_compileJava_2/net/minecraft/network/protocol/game/ClientboundContainerClosePacket.class b/build/_compileJava_2/net/minecraft/network/protocol/game/ClientboundContainerClosePacket.class new file mode 100644 index 000000000..2358fdfa0 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/network/protocol/game/ClientboundContainerClosePacket.class differ diff --git a/build/_compileJava_2/net/minecraft/network/protocol/game/ClientboundContainerSetContentPacket.class b/build/_compileJava_2/net/minecraft/network/protocol/game/ClientboundContainerSetContentPacket.class new file mode 100644 index 000000000..8831572bb Binary files /dev/null and b/build/_compileJava_2/net/minecraft/network/protocol/game/ClientboundContainerSetContentPacket.class differ diff --git a/build/_compileJava_2/net/minecraft/network/protocol/game/ClientboundContainerSetDataPacket.class b/build/_compileJava_2/net/minecraft/network/protocol/game/ClientboundContainerSetDataPacket.class new file mode 100644 index 000000000..41e9736c0 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/network/protocol/game/ClientboundContainerSetDataPacket.class differ diff --git a/build/_compileJava_2/net/minecraft/network/protocol/game/ClientboundContainerSetSlotPacket.class b/build/_compileJava_2/net/minecraft/network/protocol/game/ClientboundContainerSetSlotPacket.class new file mode 100644 index 000000000..7957c25ba Binary files /dev/null and b/build/_compileJava_2/net/minecraft/network/protocol/game/ClientboundContainerSetSlotPacket.class differ diff --git a/build/_compileJava_2/net/minecraft/network/protocol/game/ClientboundCooldownPacket.class b/build/_compileJava_2/net/minecraft/network/protocol/game/ClientboundCooldownPacket.class new file mode 100644 index 000000000..49c1f7dd4 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/network/protocol/game/ClientboundCooldownPacket.class differ diff --git a/build/_compileJava_2/net/minecraft/network/protocol/game/ClientboundCustomChatCompletionsPacket$Action.class b/build/_compileJava_2/net/minecraft/network/protocol/game/ClientboundCustomChatCompletionsPacket$Action.class new file mode 100644 index 000000000..ca76fbdd0 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/network/protocol/game/ClientboundCustomChatCompletionsPacket$Action.class differ diff --git a/build/_compileJava_2/net/minecraft/network/protocol/game/ClientboundCustomChatCompletionsPacket.class b/build/_compileJava_2/net/minecraft/network/protocol/game/ClientboundCustomChatCompletionsPacket.class new file mode 100644 index 000000000..8bdf1a7c5 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/network/protocol/game/ClientboundCustomChatCompletionsPacket.class differ diff --git a/build/_compileJava_2/net/minecraft/network/protocol/game/ClientboundCustomPayloadPacket.class b/build/_compileJava_2/net/minecraft/network/protocol/game/ClientboundCustomPayloadPacket.class new file mode 100644 index 000000000..d64464bed Binary files /dev/null and b/build/_compileJava_2/net/minecraft/network/protocol/game/ClientboundCustomPayloadPacket.class differ diff --git a/build/_compileJava_2/net/minecraft/network/protocol/game/ClientboundDamageEventPacket.class b/build/_compileJava_2/net/minecraft/network/protocol/game/ClientboundDamageEventPacket.class new file mode 100644 index 000000000..992ea47e6 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/network/protocol/game/ClientboundDamageEventPacket.class differ diff --git a/build/_compileJava_2/net/minecraft/network/protocol/game/ClientboundDeleteChatPacket.class b/build/_compileJava_2/net/minecraft/network/protocol/game/ClientboundDeleteChatPacket.class new file mode 100644 index 000000000..c35afa631 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/network/protocol/game/ClientboundDeleteChatPacket.class differ diff --git a/build/_compileJava_2/net/minecraft/network/protocol/game/ClientboundDisconnectPacket.class b/build/_compileJava_2/net/minecraft/network/protocol/game/ClientboundDisconnectPacket.class new file mode 100644 index 000000000..1e694da87 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/network/protocol/game/ClientboundDisconnectPacket.class differ diff --git a/build/_compileJava_2/net/minecraft/network/protocol/game/ClientboundDisguisedChatPacket.class b/build/_compileJava_2/net/minecraft/network/protocol/game/ClientboundDisguisedChatPacket.class new file mode 100644 index 000000000..854f0e1b3 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/network/protocol/game/ClientboundDisguisedChatPacket.class differ diff --git a/build/_compileJava_2/net/minecraft/network/protocol/game/ClientboundEntityEventPacket.class b/build/_compileJava_2/net/minecraft/network/protocol/game/ClientboundEntityEventPacket.class new file mode 100644 index 000000000..2d7acfb59 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/network/protocol/game/ClientboundEntityEventPacket.class differ diff --git a/build/_compileJava_2/net/minecraft/network/protocol/game/ClientboundExplodePacket.class b/build/_compileJava_2/net/minecraft/network/protocol/game/ClientboundExplodePacket.class new file mode 100644 index 000000000..c23ffec27 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/network/protocol/game/ClientboundExplodePacket.class differ diff --git a/build/_compileJava_2/net/minecraft/network/protocol/game/ClientboundForgetLevelChunkPacket.class b/build/_compileJava_2/net/minecraft/network/protocol/game/ClientboundForgetLevelChunkPacket.class new file mode 100644 index 000000000..dc038e237 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/network/protocol/game/ClientboundForgetLevelChunkPacket.class differ diff --git a/build/_compileJava_2/net/minecraft/network/protocol/game/ClientboundGameEventPacket$Type.class b/build/_compileJava_2/net/minecraft/network/protocol/game/ClientboundGameEventPacket$Type.class new file mode 100644 index 000000000..ab687c0bf Binary files /dev/null and b/build/_compileJava_2/net/minecraft/network/protocol/game/ClientboundGameEventPacket$Type.class differ diff --git a/build/_compileJava_2/net/minecraft/network/protocol/game/ClientboundGameEventPacket.class b/build/_compileJava_2/net/minecraft/network/protocol/game/ClientboundGameEventPacket.class new file mode 100644 index 000000000..b48d965d6 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/network/protocol/game/ClientboundGameEventPacket.class differ diff --git a/build/_compileJava_2/net/minecraft/network/protocol/game/ClientboundHorseScreenOpenPacket.class b/build/_compileJava_2/net/minecraft/network/protocol/game/ClientboundHorseScreenOpenPacket.class new file mode 100644 index 000000000..447f5c789 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/network/protocol/game/ClientboundHorseScreenOpenPacket.class differ diff --git a/build/_compileJava_2/net/minecraft/network/protocol/game/ClientboundHurtAnimationPacket.class b/build/_compileJava_2/net/minecraft/network/protocol/game/ClientboundHurtAnimationPacket.class new file mode 100644 index 000000000..91243bc86 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/network/protocol/game/ClientboundHurtAnimationPacket.class differ diff --git a/build/_compileJava_2/net/minecraft/network/protocol/game/ClientboundInitializeBorderPacket.class b/build/_compileJava_2/net/minecraft/network/protocol/game/ClientboundInitializeBorderPacket.class new file mode 100644 index 000000000..f7400f3c5 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/network/protocol/game/ClientboundInitializeBorderPacket.class differ diff --git a/build/_compileJava_2/net/minecraft/network/protocol/game/ClientboundKeepAlivePacket.class b/build/_compileJava_2/net/minecraft/network/protocol/game/ClientboundKeepAlivePacket.class new file mode 100644 index 000000000..9d594cb6b Binary files /dev/null and b/build/_compileJava_2/net/minecraft/network/protocol/game/ClientboundKeepAlivePacket.class differ diff --git a/build/_compileJava_2/net/minecraft/network/protocol/game/ClientboundLevelChunkPacketData$BlockEntityInfo.class b/build/_compileJava_2/net/minecraft/network/protocol/game/ClientboundLevelChunkPacketData$BlockEntityInfo.class new file mode 100644 index 000000000..1b07a7ac2 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/network/protocol/game/ClientboundLevelChunkPacketData$BlockEntityInfo.class differ diff --git a/build/_compileJava_2/net/minecraft/network/protocol/game/ClientboundLevelChunkPacketData$BlockEntityTagOutput.class b/build/_compileJava_2/net/minecraft/network/protocol/game/ClientboundLevelChunkPacketData$BlockEntityTagOutput.class new file mode 100644 index 000000000..55d91d392 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/network/protocol/game/ClientboundLevelChunkPacketData$BlockEntityTagOutput.class differ diff --git a/build/_compileJava_2/net/minecraft/network/protocol/game/ClientboundLevelChunkPacketData.class b/build/_compileJava_2/net/minecraft/network/protocol/game/ClientboundLevelChunkPacketData.class new file mode 100644 index 000000000..52cad3bb9 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/network/protocol/game/ClientboundLevelChunkPacketData.class differ diff --git a/build/_compileJava_2/net/minecraft/network/protocol/game/ClientboundLevelChunkWithLightPacket.class b/build/_compileJava_2/net/minecraft/network/protocol/game/ClientboundLevelChunkWithLightPacket.class new file mode 100644 index 000000000..aea09193d Binary files /dev/null and b/build/_compileJava_2/net/minecraft/network/protocol/game/ClientboundLevelChunkWithLightPacket.class differ diff --git a/build/_compileJava_2/net/minecraft/network/protocol/game/ClientboundLevelEventPacket.class b/build/_compileJava_2/net/minecraft/network/protocol/game/ClientboundLevelEventPacket.class new file mode 100644 index 000000000..f172b2510 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/network/protocol/game/ClientboundLevelEventPacket.class differ diff --git a/build/_compileJava_2/net/minecraft/network/protocol/game/ClientboundLevelParticlesPacket.class b/build/_compileJava_2/net/minecraft/network/protocol/game/ClientboundLevelParticlesPacket.class new file mode 100644 index 000000000..a1aaf07aa Binary files /dev/null and b/build/_compileJava_2/net/minecraft/network/protocol/game/ClientboundLevelParticlesPacket.class differ diff --git a/build/_compileJava_2/net/minecraft/network/protocol/game/ClientboundLightUpdatePacket.class b/build/_compileJava_2/net/minecraft/network/protocol/game/ClientboundLightUpdatePacket.class new file mode 100644 index 000000000..9c3b923fd Binary files /dev/null and b/build/_compileJava_2/net/minecraft/network/protocol/game/ClientboundLightUpdatePacket.class differ diff --git a/build/_compileJava_2/net/minecraft/network/protocol/game/ClientboundLightUpdatePacketData.class b/build/_compileJava_2/net/minecraft/network/protocol/game/ClientboundLightUpdatePacketData.class new file mode 100644 index 000000000..ae71f6209 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/network/protocol/game/ClientboundLightUpdatePacketData.class differ diff --git a/build/_compileJava_2/net/minecraft/network/protocol/game/ClientboundLoginPacket.class b/build/_compileJava_2/net/minecraft/network/protocol/game/ClientboundLoginPacket.class new file mode 100644 index 000000000..6f1ee72d7 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/network/protocol/game/ClientboundLoginPacket.class differ diff --git a/build/_compileJava_2/net/minecraft/network/protocol/game/ClientboundMapItemDataPacket.class b/build/_compileJava_2/net/minecraft/network/protocol/game/ClientboundMapItemDataPacket.class new file mode 100644 index 000000000..19efd9847 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/network/protocol/game/ClientboundMapItemDataPacket.class differ diff --git a/build/_compileJava_2/net/minecraft/network/protocol/game/ClientboundMerchantOffersPacket.class b/build/_compileJava_2/net/minecraft/network/protocol/game/ClientboundMerchantOffersPacket.class new file mode 100644 index 000000000..43eafc330 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/network/protocol/game/ClientboundMerchantOffersPacket.class differ diff --git a/build/_compileJava_2/net/minecraft/network/protocol/game/ClientboundMoveEntityPacket$Pos.class b/build/_compileJava_2/net/minecraft/network/protocol/game/ClientboundMoveEntityPacket$Pos.class new file mode 100644 index 000000000..99d0e7265 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/network/protocol/game/ClientboundMoveEntityPacket$Pos.class differ diff --git a/build/_compileJava_2/net/minecraft/network/protocol/game/ClientboundMoveEntityPacket$PosRot.class b/build/_compileJava_2/net/minecraft/network/protocol/game/ClientboundMoveEntityPacket$PosRot.class new file mode 100644 index 000000000..3cfb719a1 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/network/protocol/game/ClientboundMoveEntityPacket$PosRot.class differ diff --git a/build/_compileJava_2/net/minecraft/network/protocol/game/ClientboundMoveEntityPacket$Rot.class b/build/_compileJava_2/net/minecraft/network/protocol/game/ClientboundMoveEntityPacket$Rot.class new file mode 100644 index 000000000..0629a4b94 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/network/protocol/game/ClientboundMoveEntityPacket$Rot.class differ diff --git a/build/_compileJava_2/net/minecraft/network/protocol/game/ClientboundMoveEntityPacket.class b/build/_compileJava_2/net/minecraft/network/protocol/game/ClientboundMoveEntityPacket.class new file mode 100644 index 000000000..52925a3ea Binary files /dev/null and b/build/_compileJava_2/net/minecraft/network/protocol/game/ClientboundMoveEntityPacket.class differ diff --git a/build/_compileJava_2/net/minecraft/network/protocol/game/ClientboundMoveVehiclePacket.class b/build/_compileJava_2/net/minecraft/network/protocol/game/ClientboundMoveVehiclePacket.class new file mode 100644 index 000000000..8fdaf0132 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/network/protocol/game/ClientboundMoveVehiclePacket.class differ diff --git a/build/_compileJava_2/net/minecraft/network/protocol/game/ClientboundOpenBookPacket.class b/build/_compileJava_2/net/minecraft/network/protocol/game/ClientboundOpenBookPacket.class new file mode 100644 index 000000000..9454a0c5c Binary files /dev/null and b/build/_compileJava_2/net/minecraft/network/protocol/game/ClientboundOpenBookPacket.class differ diff --git a/build/_compileJava_2/net/minecraft/network/protocol/game/ClientboundOpenScreenPacket.class b/build/_compileJava_2/net/minecraft/network/protocol/game/ClientboundOpenScreenPacket.class new file mode 100644 index 000000000..352d6324e Binary files /dev/null and b/build/_compileJava_2/net/minecraft/network/protocol/game/ClientboundOpenScreenPacket.class differ diff --git a/build/_compileJava_2/net/minecraft/network/protocol/game/ClientboundOpenSignEditorPacket.class b/build/_compileJava_2/net/minecraft/network/protocol/game/ClientboundOpenSignEditorPacket.class new file mode 100644 index 000000000..e550d5918 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/network/protocol/game/ClientboundOpenSignEditorPacket.class differ diff --git a/build/_compileJava_2/net/minecraft/network/protocol/game/ClientboundPingPacket.class b/build/_compileJava_2/net/minecraft/network/protocol/game/ClientboundPingPacket.class new file mode 100644 index 000000000..e36415c9d Binary files /dev/null and b/build/_compileJava_2/net/minecraft/network/protocol/game/ClientboundPingPacket.class differ diff --git a/build/_compileJava_2/net/minecraft/network/protocol/game/ClientboundPlaceGhostRecipePacket.class b/build/_compileJava_2/net/minecraft/network/protocol/game/ClientboundPlaceGhostRecipePacket.class new file mode 100644 index 000000000..396b876b4 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/network/protocol/game/ClientboundPlaceGhostRecipePacket.class differ diff --git a/build/_compileJava_2/net/minecraft/network/protocol/game/ClientboundPlayerAbilitiesPacket.class b/build/_compileJava_2/net/minecraft/network/protocol/game/ClientboundPlayerAbilitiesPacket.class new file mode 100644 index 000000000..e1933b4b6 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/network/protocol/game/ClientboundPlayerAbilitiesPacket.class differ diff --git a/build/_compileJava_2/net/minecraft/network/protocol/game/ClientboundPlayerChatPacket.class b/build/_compileJava_2/net/minecraft/network/protocol/game/ClientboundPlayerChatPacket.class new file mode 100644 index 000000000..ab4c79003 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/network/protocol/game/ClientboundPlayerChatPacket.class differ diff --git a/build/_compileJava_2/net/minecraft/network/protocol/game/ClientboundPlayerCombatEndPacket.class b/build/_compileJava_2/net/minecraft/network/protocol/game/ClientboundPlayerCombatEndPacket.class new file mode 100644 index 000000000..64aacbff5 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/network/protocol/game/ClientboundPlayerCombatEndPacket.class differ diff --git a/build/_compileJava_2/net/minecraft/network/protocol/game/ClientboundPlayerCombatEnterPacket.class b/build/_compileJava_2/net/minecraft/network/protocol/game/ClientboundPlayerCombatEnterPacket.class new file mode 100644 index 000000000..9bae42620 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/network/protocol/game/ClientboundPlayerCombatEnterPacket.class differ diff --git a/build/_compileJava_2/net/minecraft/network/protocol/game/ClientboundPlayerCombatKillPacket.class b/build/_compileJava_2/net/minecraft/network/protocol/game/ClientboundPlayerCombatKillPacket.class new file mode 100644 index 000000000..c00b90858 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/network/protocol/game/ClientboundPlayerCombatKillPacket.class differ diff --git a/build/_compileJava_2/net/minecraft/network/protocol/game/ClientboundPlayerInfoRemovePacket.class b/build/_compileJava_2/net/minecraft/network/protocol/game/ClientboundPlayerInfoRemovePacket.class new file mode 100644 index 000000000..11d35a505 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/network/protocol/game/ClientboundPlayerInfoRemovePacket.class differ diff --git a/build/_compileJava_2/net/minecraft/network/protocol/game/ClientboundPlayerInfoUpdatePacket$Action$Reader.class b/build/_compileJava_2/net/minecraft/network/protocol/game/ClientboundPlayerInfoUpdatePacket$Action$Reader.class new file mode 100644 index 000000000..3fe1e7d41 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/network/protocol/game/ClientboundPlayerInfoUpdatePacket$Action$Reader.class differ diff --git a/build/_compileJava_2/net/minecraft/network/protocol/game/ClientboundPlayerInfoUpdatePacket$Action$Writer.class b/build/_compileJava_2/net/minecraft/network/protocol/game/ClientboundPlayerInfoUpdatePacket$Action$Writer.class new file mode 100644 index 000000000..b90fed830 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/network/protocol/game/ClientboundPlayerInfoUpdatePacket$Action$Writer.class differ diff --git a/build/_compileJava_2/net/minecraft/network/protocol/game/ClientboundPlayerInfoUpdatePacket$Action.class b/build/_compileJava_2/net/minecraft/network/protocol/game/ClientboundPlayerInfoUpdatePacket$Action.class new file mode 100644 index 000000000..f090246ec Binary files /dev/null and b/build/_compileJava_2/net/minecraft/network/protocol/game/ClientboundPlayerInfoUpdatePacket$Action.class differ diff --git a/build/_compileJava_2/net/minecraft/network/protocol/game/ClientboundPlayerInfoUpdatePacket$Entry.class b/build/_compileJava_2/net/minecraft/network/protocol/game/ClientboundPlayerInfoUpdatePacket$Entry.class new file mode 100644 index 000000000..0045cc5e8 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/network/protocol/game/ClientboundPlayerInfoUpdatePacket$Entry.class differ diff --git a/build/_compileJava_2/net/minecraft/network/protocol/game/ClientboundPlayerInfoUpdatePacket$EntryBuilder.class b/build/_compileJava_2/net/minecraft/network/protocol/game/ClientboundPlayerInfoUpdatePacket$EntryBuilder.class new file mode 100644 index 000000000..f9d4a71eb Binary files /dev/null and b/build/_compileJava_2/net/minecraft/network/protocol/game/ClientboundPlayerInfoUpdatePacket$EntryBuilder.class differ diff --git a/build/_compileJava_2/net/minecraft/network/protocol/game/ClientboundPlayerInfoUpdatePacket.class b/build/_compileJava_2/net/minecraft/network/protocol/game/ClientboundPlayerInfoUpdatePacket.class new file mode 100644 index 000000000..0d4c7d11e Binary files /dev/null and b/build/_compileJava_2/net/minecraft/network/protocol/game/ClientboundPlayerInfoUpdatePacket.class differ diff --git a/build/_compileJava_2/net/minecraft/network/protocol/game/ClientboundPlayerLookAtPacket.class b/build/_compileJava_2/net/minecraft/network/protocol/game/ClientboundPlayerLookAtPacket.class new file mode 100644 index 000000000..ad15a7acb Binary files /dev/null and b/build/_compileJava_2/net/minecraft/network/protocol/game/ClientboundPlayerLookAtPacket.class differ diff --git a/build/_compileJava_2/net/minecraft/network/protocol/game/ClientboundPlayerPositionPacket.class b/build/_compileJava_2/net/minecraft/network/protocol/game/ClientboundPlayerPositionPacket.class new file mode 100644 index 000000000..f18cc2164 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/network/protocol/game/ClientboundPlayerPositionPacket.class differ diff --git a/build/_compileJava_2/net/minecraft/network/protocol/game/ClientboundRecipePacket$State.class b/build/_compileJava_2/net/minecraft/network/protocol/game/ClientboundRecipePacket$State.class new file mode 100644 index 000000000..c2e3e2e4b Binary files /dev/null and b/build/_compileJava_2/net/minecraft/network/protocol/game/ClientboundRecipePacket$State.class differ diff --git a/build/_compileJava_2/net/minecraft/network/protocol/game/ClientboundRecipePacket.class b/build/_compileJava_2/net/minecraft/network/protocol/game/ClientboundRecipePacket.class new file mode 100644 index 000000000..1b5e83d1f Binary files /dev/null and b/build/_compileJava_2/net/minecraft/network/protocol/game/ClientboundRecipePacket.class differ diff --git a/build/_compileJava_2/net/minecraft/network/protocol/game/ClientboundRemoveEntitiesPacket.class b/build/_compileJava_2/net/minecraft/network/protocol/game/ClientboundRemoveEntitiesPacket.class new file mode 100644 index 000000000..57ded5904 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/network/protocol/game/ClientboundRemoveEntitiesPacket.class differ diff --git a/build/_compileJava_2/net/minecraft/network/protocol/game/ClientboundRemoveMobEffectPacket.class b/build/_compileJava_2/net/minecraft/network/protocol/game/ClientboundRemoveMobEffectPacket.class new file mode 100644 index 000000000..064675f4d Binary files /dev/null and b/build/_compileJava_2/net/minecraft/network/protocol/game/ClientboundRemoveMobEffectPacket.class differ diff --git a/build/_compileJava_2/net/minecraft/network/protocol/game/ClientboundResourcePackPacket.class b/build/_compileJava_2/net/minecraft/network/protocol/game/ClientboundResourcePackPacket.class new file mode 100644 index 000000000..117e9a75f Binary files /dev/null and b/build/_compileJava_2/net/minecraft/network/protocol/game/ClientboundResourcePackPacket.class differ diff --git a/build/_compileJava_2/net/minecraft/network/protocol/game/ClientboundRespawnPacket.class b/build/_compileJava_2/net/minecraft/network/protocol/game/ClientboundRespawnPacket.class new file mode 100644 index 000000000..3c737ee02 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/network/protocol/game/ClientboundRespawnPacket.class differ diff --git a/build/_compileJava_2/net/minecraft/network/protocol/game/ClientboundRotateHeadPacket.class b/build/_compileJava_2/net/minecraft/network/protocol/game/ClientboundRotateHeadPacket.class new file mode 100644 index 000000000..f1cb3572a Binary files /dev/null and b/build/_compileJava_2/net/minecraft/network/protocol/game/ClientboundRotateHeadPacket.class differ diff --git a/build/_compileJava_2/net/minecraft/network/protocol/game/ClientboundSectionBlocksUpdatePacket.class b/build/_compileJava_2/net/minecraft/network/protocol/game/ClientboundSectionBlocksUpdatePacket.class new file mode 100644 index 000000000..7081412ef Binary files /dev/null and b/build/_compileJava_2/net/minecraft/network/protocol/game/ClientboundSectionBlocksUpdatePacket.class differ diff --git a/build/_compileJava_2/net/minecraft/network/protocol/game/ClientboundSelectAdvancementsTabPacket.class b/build/_compileJava_2/net/minecraft/network/protocol/game/ClientboundSelectAdvancementsTabPacket.class new file mode 100644 index 000000000..88fc1738c Binary files /dev/null and b/build/_compileJava_2/net/minecraft/network/protocol/game/ClientboundSelectAdvancementsTabPacket.class differ diff --git a/build/_compileJava_2/net/minecraft/network/protocol/game/ClientboundServerDataPacket.class b/build/_compileJava_2/net/minecraft/network/protocol/game/ClientboundServerDataPacket.class new file mode 100644 index 000000000..621c86ee4 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/network/protocol/game/ClientboundServerDataPacket.class differ diff --git a/build/_compileJava_2/net/minecraft/network/protocol/game/ClientboundSetActionBarTextPacket.class b/build/_compileJava_2/net/minecraft/network/protocol/game/ClientboundSetActionBarTextPacket.class new file mode 100644 index 000000000..56c544377 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/network/protocol/game/ClientboundSetActionBarTextPacket.class differ diff --git a/build/_compileJava_2/net/minecraft/network/protocol/game/ClientboundSetBorderCenterPacket.class b/build/_compileJava_2/net/minecraft/network/protocol/game/ClientboundSetBorderCenterPacket.class new file mode 100644 index 000000000..72f80d521 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/network/protocol/game/ClientboundSetBorderCenterPacket.class differ diff --git a/build/_compileJava_2/net/minecraft/network/protocol/game/ClientboundSetBorderLerpSizePacket.class b/build/_compileJava_2/net/minecraft/network/protocol/game/ClientboundSetBorderLerpSizePacket.class new file mode 100644 index 000000000..3c37fb73b Binary files /dev/null and b/build/_compileJava_2/net/minecraft/network/protocol/game/ClientboundSetBorderLerpSizePacket.class differ diff --git a/build/_compileJava_2/net/minecraft/network/protocol/game/ClientboundSetBorderSizePacket.class b/build/_compileJava_2/net/minecraft/network/protocol/game/ClientboundSetBorderSizePacket.class new file mode 100644 index 000000000..1bfb55c17 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/network/protocol/game/ClientboundSetBorderSizePacket.class differ diff --git a/build/_compileJava_2/net/minecraft/network/protocol/game/ClientboundSetBorderWarningDelayPacket.class b/build/_compileJava_2/net/minecraft/network/protocol/game/ClientboundSetBorderWarningDelayPacket.class new file mode 100644 index 000000000..89983e46d Binary files /dev/null and b/build/_compileJava_2/net/minecraft/network/protocol/game/ClientboundSetBorderWarningDelayPacket.class differ diff --git a/build/_compileJava_2/net/minecraft/network/protocol/game/ClientboundSetBorderWarningDistancePacket.class b/build/_compileJava_2/net/minecraft/network/protocol/game/ClientboundSetBorderWarningDistancePacket.class new file mode 100644 index 000000000..77c491eae Binary files /dev/null and b/build/_compileJava_2/net/minecraft/network/protocol/game/ClientboundSetBorderWarningDistancePacket.class differ diff --git a/build/_compileJava_2/net/minecraft/network/protocol/game/ClientboundSetCameraPacket.class b/build/_compileJava_2/net/minecraft/network/protocol/game/ClientboundSetCameraPacket.class new file mode 100644 index 000000000..d545b72fc Binary files /dev/null and b/build/_compileJava_2/net/minecraft/network/protocol/game/ClientboundSetCameraPacket.class differ diff --git a/build/_compileJava_2/net/minecraft/network/protocol/game/ClientboundSetCarriedItemPacket.class b/build/_compileJava_2/net/minecraft/network/protocol/game/ClientboundSetCarriedItemPacket.class new file mode 100644 index 000000000..e7810d40e Binary files /dev/null and b/build/_compileJava_2/net/minecraft/network/protocol/game/ClientboundSetCarriedItemPacket.class differ diff --git a/build/_compileJava_2/net/minecraft/network/protocol/game/ClientboundSetChunkCacheCenterPacket.class b/build/_compileJava_2/net/minecraft/network/protocol/game/ClientboundSetChunkCacheCenterPacket.class new file mode 100644 index 000000000..78c537cca Binary files /dev/null and b/build/_compileJava_2/net/minecraft/network/protocol/game/ClientboundSetChunkCacheCenterPacket.class differ diff --git a/build/_compileJava_2/net/minecraft/network/protocol/game/ClientboundSetChunkCacheRadiusPacket.class b/build/_compileJava_2/net/minecraft/network/protocol/game/ClientboundSetChunkCacheRadiusPacket.class new file mode 100644 index 000000000..cda480631 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/network/protocol/game/ClientboundSetChunkCacheRadiusPacket.class differ diff --git a/build/_compileJava_2/net/minecraft/network/protocol/game/ClientboundSetDefaultSpawnPositionPacket.class b/build/_compileJava_2/net/minecraft/network/protocol/game/ClientboundSetDefaultSpawnPositionPacket.class new file mode 100644 index 000000000..2abd524e2 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/network/protocol/game/ClientboundSetDefaultSpawnPositionPacket.class differ diff --git a/build/_compileJava_2/net/minecraft/network/protocol/game/ClientboundSetDisplayObjectivePacket.class b/build/_compileJava_2/net/minecraft/network/protocol/game/ClientboundSetDisplayObjectivePacket.class new file mode 100644 index 000000000..a06520c0b Binary files /dev/null and b/build/_compileJava_2/net/minecraft/network/protocol/game/ClientboundSetDisplayObjectivePacket.class differ diff --git a/build/_compileJava_2/net/minecraft/network/protocol/game/ClientboundSetEntityDataPacket.class b/build/_compileJava_2/net/minecraft/network/protocol/game/ClientboundSetEntityDataPacket.class new file mode 100644 index 000000000..100948678 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/network/protocol/game/ClientboundSetEntityDataPacket.class differ diff --git a/build/_compileJava_2/net/minecraft/network/protocol/game/ClientboundSetEntityLinkPacket.class b/build/_compileJava_2/net/minecraft/network/protocol/game/ClientboundSetEntityLinkPacket.class new file mode 100644 index 000000000..0ba3b9b91 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/network/protocol/game/ClientboundSetEntityLinkPacket.class differ diff --git a/build/_compileJava_2/net/minecraft/network/protocol/game/ClientboundSetEntityMotionPacket.class b/build/_compileJava_2/net/minecraft/network/protocol/game/ClientboundSetEntityMotionPacket.class new file mode 100644 index 000000000..d00534e2e Binary files /dev/null and b/build/_compileJava_2/net/minecraft/network/protocol/game/ClientboundSetEntityMotionPacket.class differ diff --git a/build/_compileJava_2/net/minecraft/network/protocol/game/ClientboundSetEquipmentPacket.class b/build/_compileJava_2/net/minecraft/network/protocol/game/ClientboundSetEquipmentPacket.class new file mode 100644 index 000000000..2dbd2ed7b Binary files /dev/null and b/build/_compileJava_2/net/minecraft/network/protocol/game/ClientboundSetEquipmentPacket.class differ diff --git a/build/_compileJava_2/net/minecraft/network/protocol/game/ClientboundSetExperiencePacket.class b/build/_compileJava_2/net/minecraft/network/protocol/game/ClientboundSetExperiencePacket.class new file mode 100644 index 000000000..61fb441e0 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/network/protocol/game/ClientboundSetExperiencePacket.class differ diff --git a/build/_compileJava_2/net/minecraft/network/protocol/game/ClientboundSetHealthPacket.class b/build/_compileJava_2/net/minecraft/network/protocol/game/ClientboundSetHealthPacket.class new file mode 100644 index 000000000..c0394ded6 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/network/protocol/game/ClientboundSetHealthPacket.class differ diff --git a/build/_compileJava_2/net/minecraft/network/protocol/game/ClientboundSetObjectivePacket.class b/build/_compileJava_2/net/minecraft/network/protocol/game/ClientboundSetObjectivePacket.class new file mode 100644 index 000000000..30858afef Binary files /dev/null and b/build/_compileJava_2/net/minecraft/network/protocol/game/ClientboundSetObjectivePacket.class differ diff --git a/build/_compileJava_2/net/minecraft/network/protocol/game/ClientboundSetPassengersPacket.class b/build/_compileJava_2/net/minecraft/network/protocol/game/ClientboundSetPassengersPacket.class new file mode 100644 index 000000000..66c2ffe0c Binary files /dev/null and b/build/_compileJava_2/net/minecraft/network/protocol/game/ClientboundSetPassengersPacket.class differ diff --git a/build/_compileJava_2/net/minecraft/network/protocol/game/ClientboundSetPlayerTeamPacket$Action.class b/build/_compileJava_2/net/minecraft/network/protocol/game/ClientboundSetPlayerTeamPacket$Action.class new file mode 100644 index 000000000..898a76c2c Binary files /dev/null and b/build/_compileJava_2/net/minecraft/network/protocol/game/ClientboundSetPlayerTeamPacket$Action.class differ diff --git a/build/_compileJava_2/net/minecraft/network/protocol/game/ClientboundSetPlayerTeamPacket$Parameters.class b/build/_compileJava_2/net/minecraft/network/protocol/game/ClientboundSetPlayerTeamPacket$Parameters.class new file mode 100644 index 000000000..34a3ee46a Binary files /dev/null and b/build/_compileJava_2/net/minecraft/network/protocol/game/ClientboundSetPlayerTeamPacket$Parameters.class differ diff --git a/build/_compileJava_2/net/minecraft/network/protocol/game/ClientboundSetPlayerTeamPacket.class b/build/_compileJava_2/net/minecraft/network/protocol/game/ClientboundSetPlayerTeamPacket.class new file mode 100644 index 000000000..42ebf0ddc Binary files /dev/null and b/build/_compileJava_2/net/minecraft/network/protocol/game/ClientboundSetPlayerTeamPacket.class differ diff --git a/build/_compileJava_2/net/minecraft/network/protocol/game/ClientboundSetScorePacket.class b/build/_compileJava_2/net/minecraft/network/protocol/game/ClientboundSetScorePacket.class new file mode 100644 index 000000000..876d9dd51 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/network/protocol/game/ClientboundSetScorePacket.class differ diff --git a/build/_compileJava_2/net/minecraft/network/protocol/game/ClientboundSetSimulationDistancePacket.class b/build/_compileJava_2/net/minecraft/network/protocol/game/ClientboundSetSimulationDistancePacket.class new file mode 100644 index 000000000..01d9ec571 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/network/protocol/game/ClientboundSetSimulationDistancePacket.class differ diff --git a/build/_compileJava_2/net/minecraft/network/protocol/game/ClientboundSetSubtitleTextPacket.class b/build/_compileJava_2/net/minecraft/network/protocol/game/ClientboundSetSubtitleTextPacket.class new file mode 100644 index 000000000..cd203ec42 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/network/protocol/game/ClientboundSetSubtitleTextPacket.class differ diff --git a/build/_compileJava_2/net/minecraft/network/protocol/game/ClientboundSetTimePacket.class b/build/_compileJava_2/net/minecraft/network/protocol/game/ClientboundSetTimePacket.class new file mode 100644 index 000000000..79b757816 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/network/protocol/game/ClientboundSetTimePacket.class differ diff --git a/build/_compileJava_2/net/minecraft/network/protocol/game/ClientboundSetTitleTextPacket.class b/build/_compileJava_2/net/minecraft/network/protocol/game/ClientboundSetTitleTextPacket.class new file mode 100644 index 000000000..77f200d1c Binary files /dev/null and b/build/_compileJava_2/net/minecraft/network/protocol/game/ClientboundSetTitleTextPacket.class differ diff --git a/build/_compileJava_2/net/minecraft/network/protocol/game/ClientboundSetTitlesAnimationPacket.class b/build/_compileJava_2/net/minecraft/network/protocol/game/ClientboundSetTitlesAnimationPacket.class new file mode 100644 index 000000000..5b021a3ac Binary files /dev/null and b/build/_compileJava_2/net/minecraft/network/protocol/game/ClientboundSetTitlesAnimationPacket.class differ diff --git a/build/_compileJava_2/net/minecraft/network/protocol/game/ClientboundSoundEntityPacket.class b/build/_compileJava_2/net/minecraft/network/protocol/game/ClientboundSoundEntityPacket.class new file mode 100644 index 000000000..b7b0bee3c Binary files /dev/null and b/build/_compileJava_2/net/minecraft/network/protocol/game/ClientboundSoundEntityPacket.class differ diff --git a/build/_compileJava_2/net/minecraft/network/protocol/game/ClientboundSoundPacket.class b/build/_compileJava_2/net/minecraft/network/protocol/game/ClientboundSoundPacket.class new file mode 100644 index 000000000..402594af0 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/network/protocol/game/ClientboundSoundPacket.class differ diff --git a/build/_compileJava_2/net/minecraft/network/protocol/game/ClientboundStopSoundPacket.class b/build/_compileJava_2/net/minecraft/network/protocol/game/ClientboundStopSoundPacket.class new file mode 100644 index 000000000..79acfb28c Binary files /dev/null and b/build/_compileJava_2/net/minecraft/network/protocol/game/ClientboundStopSoundPacket.class differ diff --git a/build/_compileJava_2/net/minecraft/network/protocol/game/ClientboundSystemChatPacket.class b/build/_compileJava_2/net/minecraft/network/protocol/game/ClientboundSystemChatPacket.class new file mode 100644 index 000000000..960b5ca0c Binary files /dev/null and b/build/_compileJava_2/net/minecraft/network/protocol/game/ClientboundSystemChatPacket.class differ diff --git a/build/_compileJava_2/net/minecraft/network/protocol/game/ClientboundTabListPacket.class b/build/_compileJava_2/net/minecraft/network/protocol/game/ClientboundTabListPacket.class new file mode 100644 index 000000000..5c97ccfb2 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/network/protocol/game/ClientboundTabListPacket.class differ diff --git a/build/_compileJava_2/net/minecraft/network/protocol/game/ClientboundTagQueryPacket.class b/build/_compileJava_2/net/minecraft/network/protocol/game/ClientboundTagQueryPacket.class new file mode 100644 index 000000000..f5ac6ac0c Binary files /dev/null and b/build/_compileJava_2/net/minecraft/network/protocol/game/ClientboundTagQueryPacket.class differ diff --git a/build/_compileJava_2/net/minecraft/network/protocol/game/ClientboundTakeItemEntityPacket.class b/build/_compileJava_2/net/minecraft/network/protocol/game/ClientboundTakeItemEntityPacket.class new file mode 100644 index 000000000..6a4533c8a Binary files /dev/null and b/build/_compileJava_2/net/minecraft/network/protocol/game/ClientboundTakeItemEntityPacket.class differ diff --git a/build/_compileJava_2/net/minecraft/network/protocol/game/ClientboundTeleportEntityPacket.class b/build/_compileJava_2/net/minecraft/network/protocol/game/ClientboundTeleportEntityPacket.class new file mode 100644 index 000000000..160033256 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/network/protocol/game/ClientboundTeleportEntityPacket.class differ diff --git a/build/_compileJava_2/net/minecraft/network/protocol/game/ClientboundUpdateAdvancementsPacket.class b/build/_compileJava_2/net/minecraft/network/protocol/game/ClientboundUpdateAdvancementsPacket.class new file mode 100644 index 000000000..75d3e3862 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/network/protocol/game/ClientboundUpdateAdvancementsPacket.class differ diff --git a/build/_compileJava_2/net/minecraft/network/protocol/game/ClientboundUpdateAttributesPacket$AttributeSnapshot.class b/build/_compileJava_2/net/minecraft/network/protocol/game/ClientboundUpdateAttributesPacket$AttributeSnapshot.class new file mode 100644 index 000000000..7c44c6b6e Binary files /dev/null and b/build/_compileJava_2/net/minecraft/network/protocol/game/ClientboundUpdateAttributesPacket$AttributeSnapshot.class differ diff --git a/build/_compileJava_2/net/minecraft/network/protocol/game/ClientboundUpdateAttributesPacket.class b/build/_compileJava_2/net/minecraft/network/protocol/game/ClientboundUpdateAttributesPacket.class new file mode 100644 index 000000000..2b238c901 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/network/protocol/game/ClientboundUpdateAttributesPacket.class differ diff --git a/build/_compileJava_2/net/minecraft/network/protocol/game/ClientboundUpdateEnabledFeaturesPacket.class b/build/_compileJava_2/net/minecraft/network/protocol/game/ClientboundUpdateEnabledFeaturesPacket.class new file mode 100644 index 000000000..75a12dc58 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/network/protocol/game/ClientboundUpdateEnabledFeaturesPacket.class differ diff --git a/build/_compileJava_2/net/minecraft/network/protocol/game/ClientboundUpdateMobEffectPacket.class b/build/_compileJava_2/net/minecraft/network/protocol/game/ClientboundUpdateMobEffectPacket.class new file mode 100644 index 000000000..0a50c83ba Binary files /dev/null and b/build/_compileJava_2/net/minecraft/network/protocol/game/ClientboundUpdateMobEffectPacket.class differ diff --git a/build/_compileJava_2/net/minecraft/network/protocol/game/ClientboundUpdateRecipesPacket.class b/build/_compileJava_2/net/minecraft/network/protocol/game/ClientboundUpdateRecipesPacket.class new file mode 100644 index 000000000..be9ac98b0 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/network/protocol/game/ClientboundUpdateRecipesPacket.class differ diff --git a/build/_compileJava_2/net/minecraft/network/protocol/game/ClientboundUpdateTagsPacket.class b/build/_compileJava_2/net/minecraft/network/protocol/game/ClientboundUpdateTagsPacket.class new file mode 100644 index 000000000..2f1bec44c Binary files /dev/null and b/build/_compileJava_2/net/minecraft/network/protocol/game/ClientboundUpdateTagsPacket.class differ diff --git a/build/_compileJava_2/net/minecraft/network/protocol/game/DebugEntityNameGenerator.class b/build/_compileJava_2/net/minecraft/network/protocol/game/DebugEntityNameGenerator.class new file mode 100644 index 000000000..092e2e8a5 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/network/protocol/game/DebugEntityNameGenerator.class differ diff --git a/build/_compileJava_2/net/minecraft/network/protocol/game/DebugPackets.class b/build/_compileJava_2/net/minecraft/network/protocol/game/DebugPackets.class new file mode 100644 index 000000000..20ccb1c3e Binary files /dev/null and b/build/_compileJava_2/net/minecraft/network/protocol/game/DebugPackets.class differ diff --git a/build/_compileJava_2/net/minecraft/network/protocol/game/ServerGamePacketListener.class b/build/_compileJava_2/net/minecraft/network/protocol/game/ServerGamePacketListener.class new file mode 100644 index 000000000..7d7dd9768 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/network/protocol/game/ServerGamePacketListener.class differ diff --git a/build/_compileJava_2/net/minecraft/network/protocol/game/ServerPacketListener.class b/build/_compileJava_2/net/minecraft/network/protocol/game/ServerPacketListener.class new file mode 100644 index 000000000..e15725617 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/network/protocol/game/ServerPacketListener.class differ diff --git a/build/_compileJava_2/net/minecraft/network/protocol/game/ServerboundAcceptTeleportationPacket.class b/build/_compileJava_2/net/minecraft/network/protocol/game/ServerboundAcceptTeleportationPacket.class new file mode 100644 index 000000000..c8e658bf2 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/network/protocol/game/ServerboundAcceptTeleportationPacket.class differ diff --git a/build/_compileJava_2/net/minecraft/network/protocol/game/ServerboundBlockEntityTagQuery.class b/build/_compileJava_2/net/minecraft/network/protocol/game/ServerboundBlockEntityTagQuery.class new file mode 100644 index 000000000..04f3a67da Binary files /dev/null and b/build/_compileJava_2/net/minecraft/network/protocol/game/ServerboundBlockEntityTagQuery.class differ diff --git a/build/_compileJava_2/net/minecraft/network/protocol/game/ServerboundChangeDifficultyPacket.class b/build/_compileJava_2/net/minecraft/network/protocol/game/ServerboundChangeDifficultyPacket.class new file mode 100644 index 000000000..70555b16d Binary files /dev/null and b/build/_compileJava_2/net/minecraft/network/protocol/game/ServerboundChangeDifficultyPacket.class differ diff --git a/build/_compileJava_2/net/minecraft/network/protocol/game/ServerboundChatAckPacket.class b/build/_compileJava_2/net/minecraft/network/protocol/game/ServerboundChatAckPacket.class new file mode 100644 index 000000000..537b2c7ae Binary files /dev/null and b/build/_compileJava_2/net/minecraft/network/protocol/game/ServerboundChatAckPacket.class differ diff --git a/build/_compileJava_2/net/minecraft/network/protocol/game/ServerboundChatCommandPacket.class b/build/_compileJava_2/net/minecraft/network/protocol/game/ServerboundChatCommandPacket.class new file mode 100644 index 000000000..d3fc53258 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/network/protocol/game/ServerboundChatCommandPacket.class differ diff --git a/build/_compileJava_2/net/minecraft/network/protocol/game/ServerboundChatPacket.class b/build/_compileJava_2/net/minecraft/network/protocol/game/ServerboundChatPacket.class new file mode 100644 index 000000000..082ac97f4 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/network/protocol/game/ServerboundChatPacket.class differ diff --git a/build/_compileJava_2/net/minecraft/network/protocol/game/ServerboundChatSessionUpdatePacket.class b/build/_compileJava_2/net/minecraft/network/protocol/game/ServerboundChatSessionUpdatePacket.class new file mode 100644 index 000000000..f6ed0f219 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/network/protocol/game/ServerboundChatSessionUpdatePacket.class differ diff --git a/build/_compileJava_2/net/minecraft/network/protocol/game/ServerboundClientCommandPacket$Action.class b/build/_compileJava_2/net/minecraft/network/protocol/game/ServerboundClientCommandPacket$Action.class new file mode 100644 index 000000000..fcffdfa47 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/network/protocol/game/ServerboundClientCommandPacket$Action.class differ diff --git a/build/_compileJava_2/net/minecraft/network/protocol/game/ServerboundClientCommandPacket.class b/build/_compileJava_2/net/minecraft/network/protocol/game/ServerboundClientCommandPacket.class new file mode 100644 index 000000000..0ac23b107 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/network/protocol/game/ServerboundClientCommandPacket.class differ diff --git a/build/_compileJava_2/net/minecraft/network/protocol/game/ServerboundClientInformationPacket.class b/build/_compileJava_2/net/minecraft/network/protocol/game/ServerboundClientInformationPacket.class new file mode 100644 index 000000000..04870cf10 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/network/protocol/game/ServerboundClientInformationPacket.class differ diff --git a/build/_compileJava_2/net/minecraft/network/protocol/game/ServerboundCommandSuggestionPacket.class b/build/_compileJava_2/net/minecraft/network/protocol/game/ServerboundCommandSuggestionPacket.class new file mode 100644 index 000000000..d8900d2e5 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/network/protocol/game/ServerboundCommandSuggestionPacket.class differ diff --git a/build/_compileJava_2/net/minecraft/network/protocol/game/ServerboundContainerButtonClickPacket.class b/build/_compileJava_2/net/minecraft/network/protocol/game/ServerboundContainerButtonClickPacket.class new file mode 100644 index 000000000..020364fbe Binary files /dev/null and b/build/_compileJava_2/net/minecraft/network/protocol/game/ServerboundContainerButtonClickPacket.class differ diff --git a/build/_compileJava_2/net/minecraft/network/protocol/game/ServerboundContainerClickPacket.class b/build/_compileJava_2/net/minecraft/network/protocol/game/ServerboundContainerClickPacket.class new file mode 100644 index 000000000..317d907c1 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/network/protocol/game/ServerboundContainerClickPacket.class differ diff --git a/build/_compileJava_2/net/minecraft/network/protocol/game/ServerboundContainerClosePacket.class b/build/_compileJava_2/net/minecraft/network/protocol/game/ServerboundContainerClosePacket.class new file mode 100644 index 000000000..25b9f02f1 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/network/protocol/game/ServerboundContainerClosePacket.class differ diff --git a/build/_compileJava_2/net/minecraft/network/protocol/game/ServerboundCustomPayloadPacket.class b/build/_compileJava_2/net/minecraft/network/protocol/game/ServerboundCustomPayloadPacket.class new file mode 100644 index 000000000..043969a85 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/network/protocol/game/ServerboundCustomPayloadPacket.class differ diff --git a/build/_compileJava_2/net/minecraft/network/protocol/game/ServerboundEditBookPacket.class b/build/_compileJava_2/net/minecraft/network/protocol/game/ServerboundEditBookPacket.class new file mode 100644 index 000000000..2fefe227c Binary files /dev/null and b/build/_compileJava_2/net/minecraft/network/protocol/game/ServerboundEditBookPacket.class differ diff --git a/build/_compileJava_2/net/minecraft/network/protocol/game/ServerboundEntityTagQuery.class b/build/_compileJava_2/net/minecraft/network/protocol/game/ServerboundEntityTagQuery.class new file mode 100644 index 000000000..f5dd4ce70 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/network/protocol/game/ServerboundEntityTagQuery.class differ diff --git a/build/_compileJava_2/net/minecraft/network/protocol/game/ServerboundInteractPacket$1.class b/build/_compileJava_2/net/minecraft/network/protocol/game/ServerboundInteractPacket$1.class new file mode 100644 index 000000000..d2c11f58e Binary files /dev/null and b/build/_compileJava_2/net/minecraft/network/protocol/game/ServerboundInteractPacket$1.class differ diff --git a/build/_compileJava_2/net/minecraft/network/protocol/game/ServerboundInteractPacket$Action.class b/build/_compileJava_2/net/minecraft/network/protocol/game/ServerboundInteractPacket$Action.class new file mode 100644 index 000000000..1fe07fb5c Binary files /dev/null and b/build/_compileJava_2/net/minecraft/network/protocol/game/ServerboundInteractPacket$Action.class differ diff --git a/build/_compileJava_2/net/minecraft/network/protocol/game/ServerboundInteractPacket$ActionType.class b/build/_compileJava_2/net/minecraft/network/protocol/game/ServerboundInteractPacket$ActionType.class new file mode 100644 index 000000000..1dc2339f4 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/network/protocol/game/ServerboundInteractPacket$ActionType.class differ diff --git a/build/_compileJava_2/net/minecraft/network/protocol/game/ServerboundInteractPacket$Handler.class b/build/_compileJava_2/net/minecraft/network/protocol/game/ServerboundInteractPacket$Handler.class new file mode 100644 index 000000000..28f15cb6e Binary files /dev/null and b/build/_compileJava_2/net/minecraft/network/protocol/game/ServerboundInteractPacket$Handler.class differ diff --git a/build/_compileJava_2/net/minecraft/network/protocol/game/ServerboundInteractPacket$InteractionAction.class b/build/_compileJava_2/net/minecraft/network/protocol/game/ServerboundInteractPacket$InteractionAction.class new file mode 100644 index 000000000..9437245be Binary files /dev/null and b/build/_compileJava_2/net/minecraft/network/protocol/game/ServerboundInteractPacket$InteractionAction.class differ diff --git a/build/_compileJava_2/net/minecraft/network/protocol/game/ServerboundInteractPacket$InteractionAtLocationAction.class b/build/_compileJava_2/net/minecraft/network/protocol/game/ServerboundInteractPacket$InteractionAtLocationAction.class new file mode 100644 index 000000000..dc66cd2c6 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/network/protocol/game/ServerboundInteractPacket$InteractionAtLocationAction.class differ diff --git a/build/_compileJava_2/net/minecraft/network/protocol/game/ServerboundInteractPacket.class b/build/_compileJava_2/net/minecraft/network/protocol/game/ServerboundInteractPacket.class new file mode 100644 index 000000000..0fce43c15 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/network/protocol/game/ServerboundInteractPacket.class differ diff --git a/build/_compileJava_2/net/minecraft/network/protocol/game/ServerboundJigsawGeneratePacket.class b/build/_compileJava_2/net/minecraft/network/protocol/game/ServerboundJigsawGeneratePacket.class new file mode 100644 index 000000000..dc98f3a57 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/network/protocol/game/ServerboundJigsawGeneratePacket.class differ diff --git a/build/_compileJava_2/net/minecraft/network/protocol/game/ServerboundKeepAlivePacket.class b/build/_compileJava_2/net/minecraft/network/protocol/game/ServerboundKeepAlivePacket.class new file mode 100644 index 000000000..e19163dbd Binary files /dev/null and b/build/_compileJava_2/net/minecraft/network/protocol/game/ServerboundKeepAlivePacket.class differ diff --git a/build/_compileJava_2/net/minecraft/network/protocol/game/ServerboundLockDifficultyPacket.class b/build/_compileJava_2/net/minecraft/network/protocol/game/ServerboundLockDifficultyPacket.class new file mode 100644 index 000000000..ed727fe20 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/network/protocol/game/ServerboundLockDifficultyPacket.class differ diff --git a/build/_compileJava_2/net/minecraft/network/protocol/game/ServerboundMovePlayerPacket$Pos.class b/build/_compileJava_2/net/minecraft/network/protocol/game/ServerboundMovePlayerPacket$Pos.class new file mode 100644 index 000000000..5b42b8d2f Binary files /dev/null and b/build/_compileJava_2/net/minecraft/network/protocol/game/ServerboundMovePlayerPacket$Pos.class differ diff --git a/build/_compileJava_2/net/minecraft/network/protocol/game/ServerboundMovePlayerPacket$PosRot.class b/build/_compileJava_2/net/minecraft/network/protocol/game/ServerboundMovePlayerPacket$PosRot.class new file mode 100644 index 000000000..98b2580f2 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/network/protocol/game/ServerboundMovePlayerPacket$PosRot.class differ diff --git a/build/_compileJava_2/net/minecraft/network/protocol/game/ServerboundMovePlayerPacket$Rot.class b/build/_compileJava_2/net/minecraft/network/protocol/game/ServerboundMovePlayerPacket$Rot.class new file mode 100644 index 000000000..b8eb6a131 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/network/protocol/game/ServerboundMovePlayerPacket$Rot.class differ diff --git a/build/_compileJava_2/net/minecraft/network/protocol/game/ServerboundMovePlayerPacket$StatusOnly.class b/build/_compileJava_2/net/minecraft/network/protocol/game/ServerboundMovePlayerPacket$StatusOnly.class new file mode 100644 index 000000000..1c4d17a9e Binary files /dev/null and b/build/_compileJava_2/net/minecraft/network/protocol/game/ServerboundMovePlayerPacket$StatusOnly.class differ diff --git a/build/_compileJava_2/net/minecraft/network/protocol/game/ServerboundMovePlayerPacket.class b/build/_compileJava_2/net/minecraft/network/protocol/game/ServerboundMovePlayerPacket.class new file mode 100644 index 000000000..016249d8d Binary files /dev/null and b/build/_compileJava_2/net/minecraft/network/protocol/game/ServerboundMovePlayerPacket.class differ diff --git a/build/_compileJava_2/net/minecraft/network/protocol/game/ServerboundMoveVehiclePacket.class b/build/_compileJava_2/net/minecraft/network/protocol/game/ServerboundMoveVehiclePacket.class new file mode 100644 index 000000000..b856e3803 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/network/protocol/game/ServerboundMoveVehiclePacket.class differ diff --git a/build/_compileJava_2/net/minecraft/network/protocol/game/ServerboundPaddleBoatPacket.class b/build/_compileJava_2/net/minecraft/network/protocol/game/ServerboundPaddleBoatPacket.class new file mode 100644 index 000000000..cabec3759 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/network/protocol/game/ServerboundPaddleBoatPacket.class differ diff --git a/build/_compileJava_2/net/minecraft/network/protocol/game/ServerboundPickItemPacket.class b/build/_compileJava_2/net/minecraft/network/protocol/game/ServerboundPickItemPacket.class new file mode 100644 index 000000000..db9fecad9 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/network/protocol/game/ServerboundPickItemPacket.class differ diff --git a/build/_compileJava_2/net/minecraft/network/protocol/game/ServerboundPlaceRecipePacket.class b/build/_compileJava_2/net/minecraft/network/protocol/game/ServerboundPlaceRecipePacket.class new file mode 100644 index 000000000..69e144558 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/network/protocol/game/ServerboundPlaceRecipePacket.class differ diff --git a/build/_compileJava_2/net/minecraft/network/protocol/game/ServerboundPlayerAbilitiesPacket.class b/build/_compileJava_2/net/minecraft/network/protocol/game/ServerboundPlayerAbilitiesPacket.class new file mode 100644 index 000000000..f82703647 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/network/protocol/game/ServerboundPlayerAbilitiesPacket.class differ diff --git a/build/_compileJava_2/net/minecraft/network/protocol/game/ServerboundPlayerActionPacket$Action.class b/build/_compileJava_2/net/minecraft/network/protocol/game/ServerboundPlayerActionPacket$Action.class new file mode 100644 index 000000000..dcce365fe Binary files /dev/null and b/build/_compileJava_2/net/minecraft/network/protocol/game/ServerboundPlayerActionPacket$Action.class differ diff --git a/build/_compileJava_2/net/minecraft/network/protocol/game/ServerboundPlayerActionPacket.class b/build/_compileJava_2/net/minecraft/network/protocol/game/ServerboundPlayerActionPacket.class new file mode 100644 index 000000000..c41314101 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/network/protocol/game/ServerboundPlayerActionPacket.class differ diff --git a/build/_compileJava_2/net/minecraft/network/protocol/game/ServerboundPlayerCommandPacket$Action.class b/build/_compileJava_2/net/minecraft/network/protocol/game/ServerboundPlayerCommandPacket$Action.class new file mode 100644 index 000000000..c5f66c843 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/network/protocol/game/ServerboundPlayerCommandPacket$Action.class differ diff --git a/build/_compileJava_2/net/minecraft/network/protocol/game/ServerboundPlayerCommandPacket.class b/build/_compileJava_2/net/minecraft/network/protocol/game/ServerboundPlayerCommandPacket.class new file mode 100644 index 000000000..894d25634 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/network/protocol/game/ServerboundPlayerCommandPacket.class differ diff --git a/build/_compileJava_2/net/minecraft/network/protocol/game/ServerboundPlayerInputPacket.class b/build/_compileJava_2/net/minecraft/network/protocol/game/ServerboundPlayerInputPacket.class new file mode 100644 index 000000000..43b44ea09 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/network/protocol/game/ServerboundPlayerInputPacket.class differ diff --git a/build/_compileJava_2/net/minecraft/network/protocol/game/ServerboundPongPacket.class b/build/_compileJava_2/net/minecraft/network/protocol/game/ServerboundPongPacket.class new file mode 100644 index 000000000..fd88de9bb Binary files /dev/null and b/build/_compileJava_2/net/minecraft/network/protocol/game/ServerboundPongPacket.class differ diff --git a/build/_compileJava_2/net/minecraft/network/protocol/game/ServerboundRecipeBookChangeSettingsPacket.class b/build/_compileJava_2/net/minecraft/network/protocol/game/ServerboundRecipeBookChangeSettingsPacket.class new file mode 100644 index 000000000..93d023b76 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/network/protocol/game/ServerboundRecipeBookChangeSettingsPacket.class differ diff --git a/build/_compileJava_2/net/minecraft/network/protocol/game/ServerboundRecipeBookSeenRecipePacket.class b/build/_compileJava_2/net/minecraft/network/protocol/game/ServerboundRecipeBookSeenRecipePacket.class new file mode 100644 index 000000000..f1380f6cd Binary files /dev/null and b/build/_compileJava_2/net/minecraft/network/protocol/game/ServerboundRecipeBookSeenRecipePacket.class differ diff --git a/build/_compileJava_2/net/minecraft/network/protocol/game/ServerboundRenameItemPacket.class b/build/_compileJava_2/net/minecraft/network/protocol/game/ServerboundRenameItemPacket.class new file mode 100644 index 000000000..9fd9f0f0d Binary files /dev/null and b/build/_compileJava_2/net/minecraft/network/protocol/game/ServerboundRenameItemPacket.class differ diff --git a/build/_compileJava_2/net/minecraft/network/protocol/game/ServerboundResourcePackPacket$Action.class b/build/_compileJava_2/net/minecraft/network/protocol/game/ServerboundResourcePackPacket$Action.class new file mode 100644 index 000000000..80766101b Binary files /dev/null and b/build/_compileJava_2/net/minecraft/network/protocol/game/ServerboundResourcePackPacket$Action.class differ diff --git a/build/_compileJava_2/net/minecraft/network/protocol/game/ServerboundResourcePackPacket.class b/build/_compileJava_2/net/minecraft/network/protocol/game/ServerboundResourcePackPacket.class new file mode 100644 index 000000000..f1523a7a8 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/network/protocol/game/ServerboundResourcePackPacket.class differ diff --git a/build/_compileJava_2/net/minecraft/network/protocol/game/ServerboundSeenAdvancementsPacket$Action.class b/build/_compileJava_2/net/minecraft/network/protocol/game/ServerboundSeenAdvancementsPacket$Action.class new file mode 100644 index 000000000..acf3fb5e8 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/network/protocol/game/ServerboundSeenAdvancementsPacket$Action.class differ diff --git a/build/_compileJava_2/net/minecraft/network/protocol/game/ServerboundSeenAdvancementsPacket.class b/build/_compileJava_2/net/minecraft/network/protocol/game/ServerboundSeenAdvancementsPacket.class new file mode 100644 index 000000000..a1410cbf0 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/network/protocol/game/ServerboundSeenAdvancementsPacket.class differ diff --git a/build/_compileJava_2/net/minecraft/network/protocol/game/ServerboundSelectTradePacket.class b/build/_compileJava_2/net/minecraft/network/protocol/game/ServerboundSelectTradePacket.class new file mode 100644 index 000000000..56adf585c Binary files /dev/null and b/build/_compileJava_2/net/minecraft/network/protocol/game/ServerboundSelectTradePacket.class differ diff --git a/build/_compileJava_2/net/minecraft/network/protocol/game/ServerboundSetBeaconPacket.class b/build/_compileJava_2/net/minecraft/network/protocol/game/ServerboundSetBeaconPacket.class new file mode 100644 index 000000000..9edd2c72e Binary files /dev/null and b/build/_compileJava_2/net/minecraft/network/protocol/game/ServerboundSetBeaconPacket.class differ diff --git a/build/_compileJava_2/net/minecraft/network/protocol/game/ServerboundSetCarriedItemPacket.class b/build/_compileJava_2/net/minecraft/network/protocol/game/ServerboundSetCarriedItemPacket.class new file mode 100644 index 000000000..195e98547 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/network/protocol/game/ServerboundSetCarriedItemPacket.class differ diff --git a/build/_compileJava_2/net/minecraft/network/protocol/game/ServerboundSetCommandBlockPacket.class b/build/_compileJava_2/net/minecraft/network/protocol/game/ServerboundSetCommandBlockPacket.class new file mode 100644 index 000000000..818101e85 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/network/protocol/game/ServerboundSetCommandBlockPacket.class differ diff --git a/build/_compileJava_2/net/minecraft/network/protocol/game/ServerboundSetCommandMinecartPacket.class b/build/_compileJava_2/net/minecraft/network/protocol/game/ServerboundSetCommandMinecartPacket.class new file mode 100644 index 000000000..ca1503a23 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/network/protocol/game/ServerboundSetCommandMinecartPacket.class differ diff --git a/build/_compileJava_2/net/minecraft/network/protocol/game/ServerboundSetCreativeModeSlotPacket.class b/build/_compileJava_2/net/minecraft/network/protocol/game/ServerboundSetCreativeModeSlotPacket.class new file mode 100644 index 000000000..37d2bee1e Binary files /dev/null and b/build/_compileJava_2/net/minecraft/network/protocol/game/ServerboundSetCreativeModeSlotPacket.class differ diff --git a/build/_compileJava_2/net/minecraft/network/protocol/game/ServerboundSetJigsawBlockPacket.class b/build/_compileJava_2/net/minecraft/network/protocol/game/ServerboundSetJigsawBlockPacket.class new file mode 100644 index 000000000..229860f67 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/network/protocol/game/ServerboundSetJigsawBlockPacket.class differ diff --git a/build/_compileJava_2/net/minecraft/network/protocol/game/ServerboundSetStructureBlockPacket.class b/build/_compileJava_2/net/minecraft/network/protocol/game/ServerboundSetStructureBlockPacket.class new file mode 100644 index 000000000..7ffb7ac1e Binary files /dev/null and b/build/_compileJava_2/net/minecraft/network/protocol/game/ServerboundSetStructureBlockPacket.class differ diff --git a/build/_compileJava_2/net/minecraft/network/protocol/game/ServerboundSignUpdatePacket.class b/build/_compileJava_2/net/minecraft/network/protocol/game/ServerboundSignUpdatePacket.class new file mode 100644 index 000000000..6f5fc7130 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/network/protocol/game/ServerboundSignUpdatePacket.class differ diff --git a/build/_compileJava_2/net/minecraft/network/protocol/game/ServerboundSwingPacket.class b/build/_compileJava_2/net/minecraft/network/protocol/game/ServerboundSwingPacket.class new file mode 100644 index 000000000..eea9c11b5 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/network/protocol/game/ServerboundSwingPacket.class differ diff --git a/build/_compileJava_2/net/minecraft/network/protocol/game/ServerboundTeleportToEntityPacket.class b/build/_compileJava_2/net/minecraft/network/protocol/game/ServerboundTeleportToEntityPacket.class new file mode 100644 index 000000000..720e475ec Binary files /dev/null and b/build/_compileJava_2/net/minecraft/network/protocol/game/ServerboundTeleportToEntityPacket.class differ diff --git a/build/_compileJava_2/net/minecraft/network/protocol/game/ServerboundUseItemOnPacket.class b/build/_compileJava_2/net/minecraft/network/protocol/game/ServerboundUseItemOnPacket.class new file mode 100644 index 000000000..a2973c5e4 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/network/protocol/game/ServerboundUseItemOnPacket.class differ diff --git a/build/_compileJava_2/net/minecraft/network/protocol/game/ServerboundUseItemPacket.class b/build/_compileJava_2/net/minecraft/network/protocol/game/ServerboundUseItemPacket.class new file mode 100644 index 000000000..f071eb3b5 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/network/protocol/game/ServerboundUseItemPacket.class differ diff --git a/build/_compileJava_2/net/minecraft/network/protocol/game/VecDeltaCodec.class b/build/_compileJava_2/net/minecraft/network/protocol/game/VecDeltaCodec.class new file mode 100644 index 000000000..3125f87bf Binary files /dev/null and b/build/_compileJava_2/net/minecraft/network/protocol/game/VecDeltaCodec.class differ diff --git a/build/_compileJava_2/net/minecraft/network/protocol/game/package-info.class b/build/_compileJava_2/net/minecraft/network/protocol/game/package-info.class new file mode 100644 index 000000000..7e1f8ad18 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/network/protocol/game/package-info.class differ diff --git a/build/_compileJava_2/net/minecraft/network/protocol/handshake/ClientIntentionPacket.class b/build/_compileJava_2/net/minecraft/network/protocol/handshake/ClientIntentionPacket.class new file mode 100644 index 000000000..e6eff8dfa Binary files /dev/null and b/build/_compileJava_2/net/minecraft/network/protocol/handshake/ClientIntentionPacket.class differ diff --git a/build/_compileJava_2/net/minecraft/network/protocol/handshake/ServerHandshakePacketListener.class b/build/_compileJava_2/net/minecraft/network/protocol/handshake/ServerHandshakePacketListener.class new file mode 100644 index 000000000..cf49d3c11 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/network/protocol/handshake/ServerHandshakePacketListener.class differ diff --git a/build/_compileJava_2/net/minecraft/network/protocol/handshake/package-info.class b/build/_compileJava_2/net/minecraft/network/protocol/handshake/package-info.class new file mode 100644 index 000000000..1138c332f Binary files /dev/null and b/build/_compileJava_2/net/minecraft/network/protocol/handshake/package-info.class differ diff --git a/build/_compileJava_2/net/minecraft/network/protocol/login/ClientLoginPacketListener.class b/build/_compileJava_2/net/minecraft/network/protocol/login/ClientLoginPacketListener.class new file mode 100644 index 000000000..7d1277a65 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/network/protocol/login/ClientLoginPacketListener.class differ diff --git a/build/_compileJava_2/net/minecraft/network/protocol/login/ClientboundCustomQueryPacket.class b/build/_compileJava_2/net/minecraft/network/protocol/login/ClientboundCustomQueryPacket.class new file mode 100644 index 000000000..421dbf652 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/network/protocol/login/ClientboundCustomQueryPacket.class differ diff --git a/build/_compileJava_2/net/minecraft/network/protocol/login/ClientboundGameProfilePacket.class b/build/_compileJava_2/net/minecraft/network/protocol/login/ClientboundGameProfilePacket.class new file mode 100644 index 000000000..42e252ffa Binary files /dev/null and b/build/_compileJava_2/net/minecraft/network/protocol/login/ClientboundGameProfilePacket.class differ diff --git a/build/_compileJava_2/net/minecraft/network/protocol/login/ClientboundHelloPacket.class b/build/_compileJava_2/net/minecraft/network/protocol/login/ClientboundHelloPacket.class new file mode 100644 index 000000000..243733b5f Binary files /dev/null and b/build/_compileJava_2/net/minecraft/network/protocol/login/ClientboundHelloPacket.class differ diff --git a/build/_compileJava_2/net/minecraft/network/protocol/login/ClientboundLoginCompressionPacket.class b/build/_compileJava_2/net/minecraft/network/protocol/login/ClientboundLoginCompressionPacket.class new file mode 100644 index 000000000..6b4547cf4 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/network/protocol/login/ClientboundLoginCompressionPacket.class differ diff --git a/build/_compileJava_2/net/minecraft/network/protocol/login/ClientboundLoginDisconnectPacket.class b/build/_compileJava_2/net/minecraft/network/protocol/login/ClientboundLoginDisconnectPacket.class new file mode 100644 index 000000000..272736203 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/network/protocol/login/ClientboundLoginDisconnectPacket.class differ diff --git a/build/_compileJava_2/net/minecraft/network/protocol/login/ServerLoginPacketListener.class b/build/_compileJava_2/net/minecraft/network/protocol/login/ServerLoginPacketListener.class new file mode 100644 index 000000000..594780856 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/network/protocol/login/ServerLoginPacketListener.class differ diff --git a/build/_compileJava_2/net/minecraft/network/protocol/login/ServerboundCustomQueryPacket.class b/build/_compileJava_2/net/minecraft/network/protocol/login/ServerboundCustomQueryPacket.class new file mode 100644 index 000000000..578bd599c Binary files /dev/null and b/build/_compileJava_2/net/minecraft/network/protocol/login/ServerboundCustomQueryPacket.class differ diff --git a/build/_compileJava_2/net/minecraft/network/protocol/login/ServerboundHelloPacket.class b/build/_compileJava_2/net/minecraft/network/protocol/login/ServerboundHelloPacket.class new file mode 100644 index 000000000..57b0aab1c Binary files /dev/null and b/build/_compileJava_2/net/minecraft/network/protocol/login/ServerboundHelloPacket.class differ diff --git a/build/_compileJava_2/net/minecraft/network/protocol/login/ServerboundKeyPacket.class b/build/_compileJava_2/net/minecraft/network/protocol/login/ServerboundKeyPacket.class new file mode 100644 index 000000000..b708b2bda Binary files /dev/null and b/build/_compileJava_2/net/minecraft/network/protocol/login/ServerboundKeyPacket.class differ diff --git a/build/_compileJava_2/net/minecraft/network/protocol/login/package-info.class b/build/_compileJava_2/net/minecraft/network/protocol/login/package-info.class new file mode 100644 index 000000000..90423f43b Binary files /dev/null and b/build/_compileJava_2/net/minecraft/network/protocol/login/package-info.class differ diff --git a/build/_compileJava_2/net/minecraft/network/protocol/package-info.class b/build/_compileJava_2/net/minecraft/network/protocol/package-info.class new file mode 100644 index 000000000..8ce47e239 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/network/protocol/package-info.class differ diff --git a/build/_compileJava_2/net/minecraft/network/protocol/status/ClientStatusPacketListener.class b/build/_compileJava_2/net/minecraft/network/protocol/status/ClientStatusPacketListener.class new file mode 100644 index 000000000..939543691 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/network/protocol/status/ClientStatusPacketListener.class differ diff --git a/build/_compileJava_2/net/minecraft/network/protocol/status/ClientboundPongResponsePacket.class b/build/_compileJava_2/net/minecraft/network/protocol/status/ClientboundPongResponsePacket.class new file mode 100644 index 000000000..dd7d1dfc5 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/network/protocol/status/ClientboundPongResponsePacket.class differ diff --git a/build/_compileJava_2/net/minecraft/network/protocol/status/ClientboundStatusResponsePacket.class b/build/_compileJava_2/net/minecraft/network/protocol/status/ClientboundStatusResponsePacket.class new file mode 100644 index 000000000..57e37da63 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/network/protocol/status/ClientboundStatusResponsePacket.class differ diff --git a/build/_compileJava_2/net/minecraft/network/protocol/status/ServerStatus$Favicon.class b/build/_compileJava_2/net/minecraft/network/protocol/status/ServerStatus$Favicon.class new file mode 100644 index 000000000..e743fe470 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/network/protocol/status/ServerStatus$Favicon.class differ diff --git a/build/_compileJava_2/net/minecraft/network/protocol/status/ServerStatus$Players.class b/build/_compileJava_2/net/minecraft/network/protocol/status/ServerStatus$Players.class new file mode 100644 index 000000000..65dec748d Binary files /dev/null and b/build/_compileJava_2/net/minecraft/network/protocol/status/ServerStatus$Players.class differ diff --git a/build/_compileJava_2/net/minecraft/network/protocol/status/ServerStatus$Version.class b/build/_compileJava_2/net/minecraft/network/protocol/status/ServerStatus$Version.class new file mode 100644 index 000000000..5e6cae458 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/network/protocol/status/ServerStatus$Version.class differ diff --git a/build/_compileJava_2/net/minecraft/network/protocol/status/ServerStatus.class b/build/_compileJava_2/net/minecraft/network/protocol/status/ServerStatus.class new file mode 100644 index 000000000..0fc7f9771 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/network/protocol/status/ServerStatus.class differ diff --git a/build/_compileJava_2/net/minecraft/network/protocol/status/ServerStatusPacketListener.class b/build/_compileJava_2/net/minecraft/network/protocol/status/ServerStatusPacketListener.class new file mode 100644 index 000000000..02629b180 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/network/protocol/status/ServerStatusPacketListener.class differ diff --git a/build/_compileJava_2/net/minecraft/network/protocol/status/ServerboundPingRequestPacket.class b/build/_compileJava_2/net/minecraft/network/protocol/status/ServerboundPingRequestPacket.class new file mode 100644 index 000000000..27e365dce Binary files /dev/null and b/build/_compileJava_2/net/minecraft/network/protocol/status/ServerboundPingRequestPacket.class differ diff --git a/build/_compileJava_2/net/minecraft/network/protocol/status/ServerboundStatusRequestPacket.class b/build/_compileJava_2/net/minecraft/network/protocol/status/ServerboundStatusRequestPacket.class new file mode 100644 index 000000000..47a1f1c10 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/network/protocol/status/ServerboundStatusRequestPacket.class differ diff --git a/build/_compileJava_2/net/minecraft/network/protocol/status/package-info.class b/build/_compileJava_2/net/minecraft/network/protocol/status/package-info.class new file mode 100644 index 000000000..eaca3ac65 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/network/protocol/status/package-info.class differ diff --git a/build/_compileJava_2/net/minecraft/network/syncher/EntityDataAccessor.class b/build/_compileJava_2/net/minecraft/network/syncher/EntityDataAccessor.class new file mode 100644 index 000000000..059e56cbe Binary files /dev/null and b/build/_compileJava_2/net/minecraft/network/syncher/EntityDataAccessor.class differ diff --git a/build/_compileJava_2/net/minecraft/network/syncher/EntityDataSerializer$1.class b/build/_compileJava_2/net/minecraft/network/syncher/EntityDataSerializer$1.class new file mode 100644 index 000000000..7d30ead9f Binary files /dev/null and b/build/_compileJava_2/net/minecraft/network/syncher/EntityDataSerializer$1.class differ diff --git a/build/_compileJava_2/net/minecraft/network/syncher/EntityDataSerializer$ForValueType.class b/build/_compileJava_2/net/minecraft/network/syncher/EntityDataSerializer$ForValueType.class new file mode 100644 index 000000000..8f22adbe1 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/network/syncher/EntityDataSerializer$ForValueType.class differ diff --git a/build/_compileJava_2/net/minecraft/network/syncher/EntityDataSerializer.class b/build/_compileJava_2/net/minecraft/network/syncher/EntityDataSerializer.class new file mode 100644 index 000000000..95dff3aba Binary files /dev/null and b/build/_compileJava_2/net/minecraft/network/syncher/EntityDataSerializer.class differ diff --git a/build/_compileJava_2/net/minecraft/network/syncher/EntityDataSerializers$1.class b/build/_compileJava_2/net/minecraft/network/syncher/EntityDataSerializers$1.class new file mode 100644 index 000000000..d08e7695f Binary files /dev/null and b/build/_compileJava_2/net/minecraft/network/syncher/EntityDataSerializers$1.class differ diff --git a/build/_compileJava_2/net/minecraft/network/syncher/EntityDataSerializers$2.class b/build/_compileJava_2/net/minecraft/network/syncher/EntityDataSerializers$2.class new file mode 100644 index 000000000..682bbb313 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/network/syncher/EntityDataSerializers$2.class differ diff --git a/build/_compileJava_2/net/minecraft/network/syncher/EntityDataSerializers$3.class b/build/_compileJava_2/net/minecraft/network/syncher/EntityDataSerializers$3.class new file mode 100644 index 000000000..47b6f7f36 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/network/syncher/EntityDataSerializers$3.class differ diff --git a/build/_compileJava_2/net/minecraft/network/syncher/EntityDataSerializers$4.class b/build/_compileJava_2/net/minecraft/network/syncher/EntityDataSerializers$4.class new file mode 100644 index 000000000..9b1cc6ac6 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/network/syncher/EntityDataSerializers$4.class differ diff --git a/build/_compileJava_2/net/minecraft/network/syncher/EntityDataSerializers$5.class b/build/_compileJava_2/net/minecraft/network/syncher/EntityDataSerializers$5.class new file mode 100644 index 000000000..53c9003b3 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/network/syncher/EntityDataSerializers$5.class differ diff --git a/build/_compileJava_2/net/minecraft/network/syncher/EntityDataSerializers$6.class b/build/_compileJava_2/net/minecraft/network/syncher/EntityDataSerializers$6.class new file mode 100644 index 000000000..ecdcb85ab Binary files /dev/null and b/build/_compileJava_2/net/minecraft/network/syncher/EntityDataSerializers$6.class differ diff --git a/build/_compileJava_2/net/minecraft/network/syncher/EntityDataSerializers$7.class b/build/_compileJava_2/net/minecraft/network/syncher/EntityDataSerializers$7.class new file mode 100644 index 000000000..f0d81c46f Binary files /dev/null and b/build/_compileJava_2/net/minecraft/network/syncher/EntityDataSerializers$7.class differ diff --git a/build/_compileJava_2/net/minecraft/network/syncher/EntityDataSerializers.class b/build/_compileJava_2/net/minecraft/network/syncher/EntityDataSerializers.class new file mode 100644 index 000000000..d6c1a281e Binary files /dev/null and b/build/_compileJava_2/net/minecraft/network/syncher/EntityDataSerializers.class differ diff --git a/build/_compileJava_2/net/minecraft/network/syncher/SynchedEntityData$DataItem.class b/build/_compileJava_2/net/minecraft/network/syncher/SynchedEntityData$DataItem.class new file mode 100644 index 000000000..f3932ab23 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/network/syncher/SynchedEntityData$DataItem.class differ diff --git a/build/_compileJava_2/net/minecraft/network/syncher/SynchedEntityData$DataValue.class b/build/_compileJava_2/net/minecraft/network/syncher/SynchedEntityData$DataValue.class new file mode 100644 index 000000000..d9d947431 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/network/syncher/SynchedEntityData$DataValue.class differ diff --git a/build/_compileJava_2/net/minecraft/network/syncher/SynchedEntityData.class b/build/_compileJava_2/net/minecraft/network/syncher/SynchedEntityData.class new file mode 100644 index 000000000..a3f25f89a Binary files /dev/null and b/build/_compileJava_2/net/minecraft/network/syncher/SynchedEntityData.class differ diff --git a/build/_compileJava_2/net/minecraft/network/syncher/package-info.class b/build/_compileJava_2/net/minecraft/network/syncher/package-info.class new file mode 100644 index 000000000..06a1d6b98 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/network/syncher/package-info.class differ diff --git a/build/_compileJava_2/net/minecraft/obfuscate/DontObfuscate.class b/build/_compileJava_2/net/minecraft/obfuscate/DontObfuscate.class new file mode 100644 index 000000000..fca0e8cbc Binary files /dev/null and b/build/_compileJava_2/net/minecraft/obfuscate/DontObfuscate.class differ diff --git a/build/_compileJava_2/net/minecraft/obfuscate/package-info.class b/build/_compileJava_2/net/minecraft/obfuscate/package-info.class new file mode 100644 index 000000000..261c935b3 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/obfuscate/package-info.class differ diff --git a/build/_compileJava_2/net/minecraft/package-info.class b/build/_compileJava_2/net/minecraft/package-info.class new file mode 100644 index 000000000..bcae4b2d3 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/package-info.class differ diff --git a/build/_compileJava_2/net/minecraft/realms/DisconnectedRealmsScreen.class b/build/_compileJava_2/net/minecraft/realms/DisconnectedRealmsScreen.class new file mode 100644 index 000000000..94a1d9702 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/realms/DisconnectedRealmsScreen.class differ diff --git a/build/_compileJava_2/net/minecraft/realms/RealmsConnect$1.class b/build/_compileJava_2/net/minecraft/realms/RealmsConnect$1.class new file mode 100644 index 000000000..df7e5c274 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/realms/RealmsConnect$1.class differ diff --git a/build/_compileJava_2/net/minecraft/realms/RealmsConnect.class b/build/_compileJava_2/net/minecraft/realms/RealmsConnect.class new file mode 100644 index 000000000..7c34f2571 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/realms/RealmsConnect.class differ diff --git a/build/_compileJava_2/net/minecraft/realms/RealmsLabel.class b/build/_compileJava_2/net/minecraft/realms/RealmsLabel.class new file mode 100644 index 000000000..6141d1cd0 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/realms/RealmsLabel.class differ diff --git a/build/_compileJava_2/net/minecraft/realms/RealmsObjectSelectionList.class b/build/_compileJava_2/net/minecraft/realms/RealmsObjectSelectionList.class new file mode 100644 index 000000000..f75012b66 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/realms/RealmsObjectSelectionList.class differ diff --git a/build/_compileJava_2/net/minecraft/realms/RealmsScreen.class b/build/_compileJava_2/net/minecraft/realms/RealmsScreen.class new file mode 100644 index 000000000..5b91e7225 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/realms/RealmsScreen.class differ diff --git a/build/_compileJava_2/net/minecraft/realms/RepeatedNarrator$Params.class b/build/_compileJava_2/net/minecraft/realms/RepeatedNarrator$Params.class new file mode 100644 index 000000000..97e9580ea Binary files /dev/null and b/build/_compileJava_2/net/minecraft/realms/RepeatedNarrator$Params.class differ diff --git a/build/_compileJava_2/net/minecraft/realms/RepeatedNarrator.class b/build/_compileJava_2/net/minecraft/realms/RepeatedNarrator.class new file mode 100644 index 000000000..469ba343c Binary files /dev/null and b/build/_compileJava_2/net/minecraft/realms/RepeatedNarrator.class differ diff --git a/build/_compileJava_2/net/minecraft/realms/package-info.class b/build/_compileJava_2/net/minecraft/realms/package-info.class new file mode 100644 index 000000000..854d892f2 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/realms/package-info.class differ diff --git a/build/_compileJava_2/net/minecraft/recipebook/PlaceRecipe.class b/build/_compileJava_2/net/minecraft/recipebook/PlaceRecipe.class new file mode 100644 index 000000000..ebb6a6a86 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/recipebook/PlaceRecipe.class differ diff --git a/build/_compileJava_2/net/minecraft/recipebook/ServerPlaceRecipe.class b/build/_compileJava_2/net/minecraft/recipebook/ServerPlaceRecipe.class new file mode 100644 index 000000000..806710cee Binary files /dev/null and b/build/_compileJava_2/net/minecraft/recipebook/ServerPlaceRecipe.class differ diff --git a/build/_compileJava_2/net/minecraft/recipebook/package-info.class b/build/_compileJava_2/net/minecraft/recipebook/package-info.class new file mode 100644 index 000000000..c24942d3b Binary files /dev/null and b/build/_compileJava_2/net/minecraft/recipebook/package-info.class differ diff --git a/build/_compileJava_2/net/minecraft/resources/DelegatingOps.class b/build/_compileJava_2/net/minecraft/resources/DelegatingOps.class new file mode 100644 index 000000000..e02b25560 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/resources/DelegatingOps.class differ diff --git a/build/_compileJava_2/net/minecraft/resources/FileToIdConverter.class b/build/_compileJava_2/net/minecraft/resources/FileToIdConverter.class new file mode 100644 index 000000000..32adbbbeb Binary files /dev/null and b/build/_compileJava_2/net/minecraft/resources/FileToIdConverter.class differ diff --git a/build/_compileJava_2/net/minecraft/resources/HolderSetCodec.class b/build/_compileJava_2/net/minecraft/resources/HolderSetCodec.class new file mode 100644 index 000000000..beb28014e Binary files /dev/null and b/build/_compileJava_2/net/minecraft/resources/HolderSetCodec.class differ diff --git a/build/_compileJava_2/net/minecraft/resources/RegistryDataLoader$1.class b/build/_compileJava_2/net/minecraft/resources/RegistryDataLoader$1.class new file mode 100644 index 000000000..1d8deb1be Binary files /dev/null and b/build/_compileJava_2/net/minecraft/resources/RegistryDataLoader$1.class differ diff --git a/build/_compileJava_2/net/minecraft/resources/RegistryDataLoader$Loader.class b/build/_compileJava_2/net/minecraft/resources/RegistryDataLoader$Loader.class new file mode 100644 index 000000000..8cb3978a8 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/resources/RegistryDataLoader$Loader.class differ diff --git a/build/_compileJava_2/net/minecraft/resources/RegistryDataLoader$RegistryData.class b/build/_compileJava_2/net/minecraft/resources/RegistryDataLoader$RegistryData.class new file mode 100644 index 000000000..03bc23cc4 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/resources/RegistryDataLoader$RegistryData.class differ diff --git a/build/_compileJava_2/net/minecraft/resources/RegistryDataLoader.class b/build/_compileJava_2/net/minecraft/resources/RegistryDataLoader.class new file mode 100644 index 000000000..de5f75398 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/resources/RegistryDataLoader.class differ diff --git a/build/_compileJava_2/net/minecraft/resources/RegistryFileCodec.class b/build/_compileJava_2/net/minecraft/resources/RegistryFileCodec.class new file mode 100644 index 000000000..72aa72da6 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/resources/RegistryFileCodec.class differ diff --git a/build/_compileJava_2/net/minecraft/resources/RegistryFixedCodec.class b/build/_compileJava_2/net/minecraft/resources/RegistryFixedCodec.class new file mode 100644 index 000000000..45af64fea Binary files /dev/null and b/build/_compileJava_2/net/minecraft/resources/RegistryFixedCodec.class differ diff --git a/build/_compileJava_2/net/minecraft/resources/RegistryOps$1.class b/build/_compileJava_2/net/minecraft/resources/RegistryOps$1.class new file mode 100644 index 000000000..6631521cd Binary files /dev/null and b/build/_compileJava_2/net/minecraft/resources/RegistryOps$1.class differ diff --git a/build/_compileJava_2/net/minecraft/resources/RegistryOps$2.class b/build/_compileJava_2/net/minecraft/resources/RegistryOps$2.class new file mode 100644 index 000000000..cd8e3cf7d Binary files /dev/null and b/build/_compileJava_2/net/minecraft/resources/RegistryOps$2.class differ diff --git a/build/_compileJava_2/net/minecraft/resources/RegistryOps$RegistryInfo.class b/build/_compileJava_2/net/minecraft/resources/RegistryOps$RegistryInfo.class new file mode 100644 index 000000000..de13bb41c Binary files /dev/null and b/build/_compileJava_2/net/minecraft/resources/RegistryOps$RegistryInfo.class differ diff --git a/build/_compileJava_2/net/minecraft/resources/RegistryOps$RegistryInfoLookup.class b/build/_compileJava_2/net/minecraft/resources/RegistryOps$RegistryInfoLookup.class new file mode 100644 index 000000000..5bc22dbcf Binary files /dev/null and b/build/_compileJava_2/net/minecraft/resources/RegistryOps$RegistryInfoLookup.class differ diff --git a/build/_compileJava_2/net/minecraft/resources/RegistryOps.class b/build/_compileJava_2/net/minecraft/resources/RegistryOps.class new file mode 100644 index 000000000..23b4e5736 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/resources/RegistryOps.class differ diff --git a/build/_compileJava_2/net/minecraft/resources/ResourceKey$InternKey.class b/build/_compileJava_2/net/minecraft/resources/ResourceKey$InternKey.class new file mode 100644 index 000000000..2cb3482d3 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/resources/ResourceKey$InternKey.class differ diff --git a/build/_compileJava_2/net/minecraft/resources/ResourceKey.class b/build/_compileJava_2/net/minecraft/resources/ResourceKey.class new file mode 100644 index 000000000..996d5af63 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/resources/ResourceKey.class differ diff --git a/build/_compileJava_2/net/minecraft/resources/ResourceLocation$Dummy.class b/build/_compileJava_2/net/minecraft/resources/ResourceLocation$Dummy.class new file mode 100644 index 000000000..f77bf663d Binary files /dev/null and b/build/_compileJava_2/net/minecraft/resources/ResourceLocation$Dummy.class differ diff --git a/build/_compileJava_2/net/minecraft/resources/ResourceLocation$Serializer.class b/build/_compileJava_2/net/minecraft/resources/ResourceLocation$Serializer.class new file mode 100644 index 000000000..c52f9d6e8 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/resources/ResourceLocation$Serializer.class differ diff --git a/build/_compileJava_2/net/minecraft/resources/ResourceLocation.class b/build/_compileJava_2/net/minecraft/resources/ResourceLocation.class new file mode 100644 index 000000000..08cf5c244 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/resources/ResourceLocation.class differ diff --git a/build/_compileJava_2/net/minecraft/resources/package-info.class b/build/_compileJava_2/net/minecraft/resources/package-info.class new file mode 100644 index 000000000..63afb40d1 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/resources/package-info.class differ diff --git a/build/_compileJava_2/net/minecraft/server/Bootstrap$1.class b/build/_compileJava_2/net/minecraft/server/Bootstrap$1.class new file mode 100644 index 000000000..f692e9e2f Binary files /dev/null and b/build/_compileJava_2/net/minecraft/server/Bootstrap$1.class differ diff --git a/build/_compileJava_2/net/minecraft/server/Bootstrap.class b/build/_compileJava_2/net/minecraft/server/Bootstrap.class new file mode 100644 index 000000000..608f9fabe Binary files /dev/null and b/build/_compileJava_2/net/minecraft/server/Bootstrap.class differ diff --git a/build/_compileJava_2/net/minecraft/server/ChainedJsonException$Entry.class b/build/_compileJava_2/net/minecraft/server/ChainedJsonException$Entry.class new file mode 100644 index 000000000..3d466e969 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/server/ChainedJsonException$Entry.class differ diff --git a/build/_compileJava_2/net/minecraft/server/ChainedJsonException.class b/build/_compileJava_2/net/minecraft/server/ChainedJsonException.class new file mode 100644 index 000000000..b0ff7c046 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/server/ChainedJsonException.class differ diff --git a/build/_compileJava_2/net/minecraft/server/ConsoleInput.class b/build/_compileJava_2/net/minecraft/server/ConsoleInput.class new file mode 100644 index 000000000..d26f3ff1d Binary files /dev/null and b/build/_compileJava_2/net/minecraft/server/ConsoleInput.class differ diff --git a/build/_compileJava_2/net/minecraft/server/DebugLoggedPrintStream.class b/build/_compileJava_2/net/minecraft/server/DebugLoggedPrintStream.class new file mode 100644 index 000000000..0b7f01ae0 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/server/DebugLoggedPrintStream.class differ diff --git a/build/_compileJava_2/net/minecraft/server/Eula.class b/build/_compileJava_2/net/minecraft/server/Eula.class new file mode 100644 index 000000000..00c6e948f Binary files /dev/null and b/build/_compileJava_2/net/minecraft/server/Eula.class differ diff --git a/build/_compileJava_2/net/minecraft/server/LoggedPrintStream.class b/build/_compileJava_2/net/minecraft/server/LoggedPrintStream.class new file mode 100644 index 000000000..b1c009ec9 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/server/LoggedPrintStream.class differ diff --git a/build/_compileJava_2/net/minecraft/server/Main$1.class b/build/_compileJava_2/net/minecraft/server/Main$1.class new file mode 100644 index 000000000..6f3f6b3e3 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/server/Main$1.class differ diff --git a/build/_compileJava_2/net/minecraft/server/Main.class b/build/_compileJava_2/net/minecraft/server/Main.class new file mode 100644 index 000000000..f66b68517 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/server/Main.class differ diff --git a/build/_compileJava_2/net/minecraft/server/MinecraftServer$1.class b/build/_compileJava_2/net/minecraft/server/MinecraftServer$1.class new file mode 100644 index 000000000..86d5aa20d Binary files /dev/null and b/build/_compileJava_2/net/minecraft/server/MinecraftServer$1.class differ diff --git a/build/_compileJava_2/net/minecraft/server/MinecraftServer$ReloadableResources.class b/build/_compileJava_2/net/minecraft/server/MinecraftServer$ReloadableResources.class new file mode 100644 index 000000000..21e776747 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/server/MinecraftServer$ReloadableResources.class differ diff --git a/build/_compileJava_2/net/minecraft/server/MinecraftServer$ServerResourcePackInfo.class b/build/_compileJava_2/net/minecraft/server/MinecraftServer$ServerResourcePackInfo.class new file mode 100644 index 000000000..aef367cd4 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/server/MinecraftServer$ServerResourcePackInfo.class differ diff --git a/build/_compileJava_2/net/minecraft/server/MinecraftServer$TimeProfiler$1.class b/build/_compileJava_2/net/minecraft/server/MinecraftServer$TimeProfiler$1.class new file mode 100644 index 000000000..1ef44af7c Binary files /dev/null and b/build/_compileJava_2/net/minecraft/server/MinecraftServer$TimeProfiler$1.class differ diff --git a/build/_compileJava_2/net/minecraft/server/MinecraftServer$TimeProfiler.class b/build/_compileJava_2/net/minecraft/server/MinecraftServer$TimeProfiler.class new file mode 100644 index 000000000..68ca06300 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/server/MinecraftServer$TimeProfiler.class differ diff --git a/build/_compileJava_2/net/minecraft/server/MinecraftServer.class b/build/_compileJava_2/net/minecraft/server/MinecraftServer.class new file mode 100644 index 000000000..9f1383da7 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/server/MinecraftServer.class differ diff --git a/build/_compileJava_2/net/minecraft/server/PlayerAdvancements$1.class b/build/_compileJava_2/net/minecraft/server/PlayerAdvancements$1.class new file mode 100644 index 000000000..051d8af59 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/server/PlayerAdvancements$1.class differ diff --git a/build/_compileJava_2/net/minecraft/server/PlayerAdvancements.class b/build/_compileJava_2/net/minecraft/server/PlayerAdvancements.class new file mode 100644 index 000000000..1ce7f209c Binary files /dev/null and b/build/_compileJava_2/net/minecraft/server/PlayerAdvancements.class differ diff --git a/build/_compileJava_2/net/minecraft/server/RegistryLayer.class b/build/_compileJava_2/net/minecraft/server/RegistryLayer.class new file mode 100644 index 000000000..d19e0d032 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/server/RegistryLayer.class differ diff --git a/build/_compileJava_2/net/minecraft/server/ReloadableServerResources.class b/build/_compileJava_2/net/minecraft/server/ReloadableServerResources.class new file mode 100644 index 000000000..b56d111fe Binary files /dev/null and b/build/_compileJava_2/net/minecraft/server/ReloadableServerResources.class differ diff --git a/build/_compileJava_2/net/minecraft/server/RunningOnDifferentThreadException.class b/build/_compileJava_2/net/minecraft/server/RunningOnDifferentThreadException.class new file mode 100644 index 000000000..ee89dbeaa Binary files /dev/null and b/build/_compileJava_2/net/minecraft/server/RunningOnDifferentThreadException.class differ diff --git a/build/_compileJava_2/net/minecraft/server/ServerAdvancementManager.class b/build/_compileJava_2/net/minecraft/server/ServerAdvancementManager.class new file mode 100644 index 000000000..c86c02745 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/server/ServerAdvancementManager.class differ diff --git a/build/_compileJava_2/net/minecraft/server/ServerFunctionLibrary.class b/build/_compileJava_2/net/minecraft/server/ServerFunctionLibrary.class new file mode 100644 index 000000000..e79683cbc Binary files /dev/null and b/build/_compileJava_2/net/minecraft/server/ServerFunctionLibrary.class differ diff --git a/build/_compileJava_2/net/minecraft/server/ServerFunctionManager$ExecutionContext$AbortingReturnValueConsumer.class b/build/_compileJava_2/net/minecraft/server/ServerFunctionManager$ExecutionContext$AbortingReturnValueConsumer.class new file mode 100644 index 000000000..cabba27fe Binary files /dev/null and b/build/_compileJava_2/net/minecraft/server/ServerFunctionManager$ExecutionContext$AbortingReturnValueConsumer.class differ diff --git a/build/_compileJava_2/net/minecraft/server/ServerFunctionManager$ExecutionContext.class b/build/_compileJava_2/net/minecraft/server/ServerFunctionManager$ExecutionContext.class new file mode 100644 index 000000000..0d6929f07 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/server/ServerFunctionManager$ExecutionContext.class differ diff --git a/build/_compileJava_2/net/minecraft/server/ServerFunctionManager$QueuedCommand.class b/build/_compileJava_2/net/minecraft/server/ServerFunctionManager$QueuedCommand.class new file mode 100644 index 000000000..6e9daaea3 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/server/ServerFunctionManager$QueuedCommand.class differ diff --git a/build/_compileJava_2/net/minecraft/server/ServerFunctionManager$TraceCallbacks.class b/build/_compileJava_2/net/minecraft/server/ServerFunctionManager$TraceCallbacks.class new file mode 100644 index 000000000..18c4e6e78 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/server/ServerFunctionManager$TraceCallbacks.class differ diff --git a/build/_compileJava_2/net/minecraft/server/ServerFunctionManager.class b/build/_compileJava_2/net/minecraft/server/ServerFunctionManager.class new file mode 100644 index 000000000..d7313b234 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/server/ServerFunctionManager.class differ diff --git a/build/_compileJava_2/net/minecraft/server/ServerInterface.class b/build/_compileJava_2/net/minecraft/server/ServerInterface.class new file mode 100644 index 000000000..f06262f6d Binary files /dev/null and b/build/_compileJava_2/net/minecraft/server/ServerInterface.class differ diff --git a/build/_compileJava_2/net/minecraft/server/ServerScoreboard$Method.class b/build/_compileJava_2/net/minecraft/server/ServerScoreboard$Method.class new file mode 100644 index 000000000..4f10a7671 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/server/ServerScoreboard$Method.class differ diff --git a/build/_compileJava_2/net/minecraft/server/ServerScoreboard.class b/build/_compileJava_2/net/minecraft/server/ServerScoreboard.class new file mode 100644 index 000000000..6c422fc76 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/server/ServerScoreboard.class differ diff --git a/build/_compileJava_2/net/minecraft/server/Services.class b/build/_compileJava_2/net/minecraft/server/Services.class new file mode 100644 index 000000000..c69368e1b Binary files /dev/null and b/build/_compileJava_2/net/minecraft/server/Services.class differ diff --git a/build/_compileJava_2/net/minecraft/server/TickTask.class b/build/_compileJava_2/net/minecraft/server/TickTask.class new file mode 100644 index 000000000..db28a5a53 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/server/TickTask.class differ diff --git a/build/_compileJava_2/net/minecraft/server/WorldLoader$DataLoadContext.class b/build/_compileJava_2/net/minecraft/server/WorldLoader$DataLoadContext.class new file mode 100644 index 000000000..5e448db04 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/server/WorldLoader$DataLoadContext.class differ diff --git a/build/_compileJava_2/net/minecraft/server/WorldLoader$DataLoadOutput.class b/build/_compileJava_2/net/minecraft/server/WorldLoader$DataLoadOutput.class new file mode 100644 index 000000000..4b0aa762d Binary files /dev/null and b/build/_compileJava_2/net/minecraft/server/WorldLoader$DataLoadOutput.class differ diff --git a/build/_compileJava_2/net/minecraft/server/WorldLoader$InitConfig.class b/build/_compileJava_2/net/minecraft/server/WorldLoader$InitConfig.class new file mode 100644 index 000000000..ccc1ef0d3 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/server/WorldLoader$InitConfig.class differ diff --git a/build/_compileJava_2/net/minecraft/server/WorldLoader$PackConfig.class b/build/_compileJava_2/net/minecraft/server/WorldLoader$PackConfig.class new file mode 100644 index 000000000..d036b4e48 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/server/WorldLoader$PackConfig.class differ diff --git a/build/_compileJava_2/net/minecraft/server/WorldLoader$ResultFactory.class b/build/_compileJava_2/net/minecraft/server/WorldLoader$ResultFactory.class new file mode 100644 index 000000000..0c8d1fe4f Binary files /dev/null and b/build/_compileJava_2/net/minecraft/server/WorldLoader$ResultFactory.class differ diff --git a/build/_compileJava_2/net/minecraft/server/WorldLoader$WorldDataSupplier.class b/build/_compileJava_2/net/minecraft/server/WorldLoader$WorldDataSupplier.class new file mode 100644 index 000000000..87e8bbc32 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/server/WorldLoader$WorldDataSupplier.class differ diff --git a/build/_compileJava_2/net/minecraft/server/WorldLoader.class b/build/_compileJava_2/net/minecraft/server/WorldLoader.class new file mode 100644 index 000000000..bfd69d012 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/server/WorldLoader.class differ diff --git a/build/_compileJava_2/net/minecraft/server/WorldStem.class b/build/_compileJava_2/net/minecraft/server/WorldStem.class new file mode 100644 index 000000000..75e40aab0 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/server/WorldStem.class differ diff --git a/build/_compileJava_2/net/minecraft/server/advancements/AdvancementVisibilityEvaluator$Output.class b/build/_compileJava_2/net/minecraft/server/advancements/AdvancementVisibilityEvaluator$Output.class new file mode 100644 index 000000000..50c67ce3b Binary files /dev/null and b/build/_compileJava_2/net/minecraft/server/advancements/AdvancementVisibilityEvaluator$Output.class differ diff --git a/build/_compileJava_2/net/minecraft/server/advancements/AdvancementVisibilityEvaluator$VisibilityRule.class b/build/_compileJava_2/net/minecraft/server/advancements/AdvancementVisibilityEvaluator$VisibilityRule.class new file mode 100644 index 000000000..101c47e0a Binary files /dev/null and b/build/_compileJava_2/net/minecraft/server/advancements/AdvancementVisibilityEvaluator$VisibilityRule.class differ diff --git a/build/_compileJava_2/net/minecraft/server/advancements/AdvancementVisibilityEvaluator.class b/build/_compileJava_2/net/minecraft/server/advancements/AdvancementVisibilityEvaluator.class new file mode 100644 index 000000000..caf940721 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/server/advancements/AdvancementVisibilityEvaluator.class differ diff --git a/build/_compileJava_2/net/minecraft/server/advancements/package-info.class b/build/_compileJava_2/net/minecraft/server/advancements/package-info.class new file mode 100644 index 000000000..e1b373b08 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/server/advancements/package-info.class differ diff --git a/build/_compileJava_2/net/minecraft/server/bossevents/CustomBossEvent.class b/build/_compileJava_2/net/minecraft/server/bossevents/CustomBossEvent.class new file mode 100644 index 000000000..d7d130f63 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/server/bossevents/CustomBossEvent.class differ diff --git a/build/_compileJava_2/net/minecraft/server/bossevents/CustomBossEvents.class b/build/_compileJava_2/net/minecraft/server/bossevents/CustomBossEvents.class new file mode 100644 index 000000000..1c4195985 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/server/bossevents/CustomBossEvents.class differ diff --git a/build/_compileJava_2/net/minecraft/server/bossevents/package-info.class b/build/_compileJava_2/net/minecraft/server/bossevents/package-info.class new file mode 100644 index 000000000..cc99fb7ba Binary files /dev/null and b/build/_compileJava_2/net/minecraft/server/bossevents/package-info.class differ diff --git a/build/_compileJava_2/net/minecraft/server/chase/ChaseClient$TeleportTarget.class b/build/_compileJava_2/net/minecraft/server/chase/ChaseClient$TeleportTarget.class new file mode 100644 index 000000000..13ad21c4a Binary files /dev/null and b/build/_compileJava_2/net/minecraft/server/chase/ChaseClient$TeleportTarget.class differ diff --git a/build/_compileJava_2/net/minecraft/server/chase/ChaseClient.class b/build/_compileJava_2/net/minecraft/server/chase/ChaseClient.class new file mode 100644 index 000000000..3b68190a9 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/server/chase/ChaseClient.class differ diff --git a/build/_compileJava_2/net/minecraft/server/chase/ChaseServer$PlayerPosition.class b/build/_compileJava_2/net/minecraft/server/chase/ChaseServer$PlayerPosition.class new file mode 100644 index 000000000..a05c89da5 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/server/chase/ChaseServer$PlayerPosition.class differ diff --git a/build/_compileJava_2/net/minecraft/server/chase/ChaseServer.class b/build/_compileJava_2/net/minecraft/server/chase/ChaseServer.class new file mode 100644 index 000000000..955811b44 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/server/chase/ChaseServer.class differ diff --git a/build/_compileJava_2/net/minecraft/server/chase/package-info.class b/build/_compileJava_2/net/minecraft/server/chase/package-info.class new file mode 100644 index 000000000..053b5bfc8 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/server/chase/package-info.class differ diff --git a/build/_compileJava_2/net/minecraft/server/commands/AdvancementCommands$Action$1.class b/build/_compileJava_2/net/minecraft/server/commands/AdvancementCommands$Action$1.class new file mode 100644 index 000000000..9159b4575 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/server/commands/AdvancementCommands$Action$1.class differ diff --git a/build/_compileJava_2/net/minecraft/server/commands/AdvancementCommands$Action$2.class b/build/_compileJava_2/net/minecraft/server/commands/AdvancementCommands$Action$2.class new file mode 100644 index 000000000..3baa619a7 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/server/commands/AdvancementCommands$Action$2.class differ diff --git a/build/_compileJava_2/net/minecraft/server/commands/AdvancementCommands$Action.class b/build/_compileJava_2/net/minecraft/server/commands/AdvancementCommands$Action.class new file mode 100644 index 000000000..4632698b2 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/server/commands/AdvancementCommands$Action.class differ diff --git a/build/_compileJava_2/net/minecraft/server/commands/AdvancementCommands$Mode.class b/build/_compileJava_2/net/minecraft/server/commands/AdvancementCommands$Mode.class new file mode 100644 index 000000000..5941239f4 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/server/commands/AdvancementCommands$Mode.class differ diff --git a/build/_compileJava_2/net/minecraft/server/commands/AdvancementCommands.class b/build/_compileJava_2/net/minecraft/server/commands/AdvancementCommands.class new file mode 100644 index 000000000..aab2b9650 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/server/commands/AdvancementCommands.class differ diff --git a/build/_compileJava_2/net/minecraft/server/commands/AttributeCommand.class b/build/_compileJava_2/net/minecraft/server/commands/AttributeCommand.class new file mode 100644 index 000000000..256f104e7 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/server/commands/AttributeCommand.class differ diff --git a/build/_compileJava_2/net/minecraft/server/commands/BanIpCommands.class b/build/_compileJava_2/net/minecraft/server/commands/BanIpCommands.class new file mode 100644 index 000000000..093882d39 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/server/commands/BanIpCommands.class differ diff --git a/build/_compileJava_2/net/minecraft/server/commands/BanListCommands.class b/build/_compileJava_2/net/minecraft/server/commands/BanListCommands.class new file mode 100644 index 000000000..ff5941e85 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/server/commands/BanListCommands.class differ diff --git a/build/_compileJava_2/net/minecraft/server/commands/BanPlayerCommands.class b/build/_compileJava_2/net/minecraft/server/commands/BanPlayerCommands.class new file mode 100644 index 000000000..1ea62889f Binary files /dev/null and b/build/_compileJava_2/net/minecraft/server/commands/BanPlayerCommands.class differ diff --git a/build/_compileJava_2/net/minecraft/server/commands/BossBarCommands.class b/build/_compileJava_2/net/minecraft/server/commands/BossBarCommands.class new file mode 100644 index 000000000..2c4632b23 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/server/commands/BossBarCommands.class differ diff --git a/build/_compileJava_2/net/minecraft/server/commands/ChaseCommand.class b/build/_compileJava_2/net/minecraft/server/commands/ChaseCommand.class new file mode 100644 index 000000000..8fb4a7419 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/server/commands/ChaseCommand.class differ diff --git a/build/_compileJava_2/net/minecraft/server/commands/ClearInventoryCommands.class b/build/_compileJava_2/net/minecraft/server/commands/ClearInventoryCommands.class new file mode 100644 index 000000000..fc4c86093 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/server/commands/ClearInventoryCommands.class differ diff --git a/build/_compileJava_2/net/minecraft/server/commands/CloneCommands$CloneBlockInfo.class b/build/_compileJava_2/net/minecraft/server/commands/CloneCommands$CloneBlockInfo.class new file mode 100644 index 000000000..3f89f293f Binary files /dev/null and b/build/_compileJava_2/net/minecraft/server/commands/CloneCommands$CloneBlockInfo.class differ diff --git a/build/_compileJava_2/net/minecraft/server/commands/CloneCommands$CommandFunction.class b/build/_compileJava_2/net/minecraft/server/commands/CloneCommands$CommandFunction.class new file mode 100644 index 000000000..ea730f66b Binary files /dev/null and b/build/_compileJava_2/net/minecraft/server/commands/CloneCommands$CommandFunction.class differ diff --git a/build/_compileJava_2/net/minecraft/server/commands/CloneCommands$DimensionAndPosition.class b/build/_compileJava_2/net/minecraft/server/commands/CloneCommands$DimensionAndPosition.class new file mode 100644 index 000000000..4bcc78fd6 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/server/commands/CloneCommands$DimensionAndPosition.class differ diff --git a/build/_compileJava_2/net/minecraft/server/commands/CloneCommands$Mode.class b/build/_compileJava_2/net/minecraft/server/commands/CloneCommands$Mode.class new file mode 100644 index 000000000..1dff5c536 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/server/commands/CloneCommands$Mode.class differ diff --git a/build/_compileJava_2/net/minecraft/server/commands/CloneCommands.class b/build/_compileJava_2/net/minecraft/server/commands/CloneCommands.class new file mode 100644 index 000000000..0eafcee27 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/server/commands/CloneCommands.class differ diff --git a/build/_compileJava_2/net/minecraft/server/commands/DamageCommand.class b/build/_compileJava_2/net/minecraft/server/commands/DamageCommand.class new file mode 100644 index 000000000..e188d4053 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/server/commands/DamageCommand.class differ diff --git a/build/_compileJava_2/net/minecraft/server/commands/DataPackCommand$Inserter.class b/build/_compileJava_2/net/minecraft/server/commands/DataPackCommand$Inserter.class new file mode 100644 index 000000000..e02d65d78 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/server/commands/DataPackCommand$Inserter.class differ diff --git a/build/_compileJava_2/net/minecraft/server/commands/DataPackCommand.class b/build/_compileJava_2/net/minecraft/server/commands/DataPackCommand.class new file mode 100644 index 000000000..5ebcea18d Binary files /dev/null and b/build/_compileJava_2/net/minecraft/server/commands/DataPackCommand.class differ diff --git a/build/_compileJava_2/net/minecraft/server/commands/DeOpCommands.class b/build/_compileJava_2/net/minecraft/server/commands/DeOpCommands.class new file mode 100644 index 000000000..a0c983675 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/server/commands/DeOpCommands.class differ diff --git a/build/_compileJava_2/net/minecraft/server/commands/DebugCommand$Tracer.class b/build/_compileJava_2/net/minecraft/server/commands/DebugCommand$Tracer.class new file mode 100644 index 000000000..7eecf6e41 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/server/commands/DebugCommand$Tracer.class differ diff --git a/build/_compileJava_2/net/minecraft/server/commands/DebugCommand.class b/build/_compileJava_2/net/minecraft/server/commands/DebugCommand.class new file mode 100644 index 000000000..b19a2ea87 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/server/commands/DebugCommand.class differ diff --git a/build/_compileJava_2/net/minecraft/server/commands/DebugMobSpawningCommand.class b/build/_compileJava_2/net/minecraft/server/commands/DebugMobSpawningCommand.class new file mode 100644 index 000000000..aef0a11fc Binary files /dev/null and b/build/_compileJava_2/net/minecraft/server/commands/DebugMobSpawningCommand.class differ diff --git a/build/_compileJava_2/net/minecraft/server/commands/DebugPathCommand.class b/build/_compileJava_2/net/minecraft/server/commands/DebugPathCommand.class new file mode 100644 index 000000000..d0527491d Binary files /dev/null and b/build/_compileJava_2/net/minecraft/server/commands/DebugPathCommand.class differ diff --git a/build/_compileJava_2/net/minecraft/server/commands/DefaultGameModeCommands.class b/build/_compileJava_2/net/minecraft/server/commands/DefaultGameModeCommands.class new file mode 100644 index 000000000..4e93f9b4f Binary files /dev/null and b/build/_compileJava_2/net/minecraft/server/commands/DefaultGameModeCommands.class differ diff --git a/build/_compileJava_2/net/minecraft/server/commands/DifficultyCommand.class b/build/_compileJava_2/net/minecraft/server/commands/DifficultyCommand.class new file mode 100644 index 000000000..03f87d1a8 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/server/commands/DifficultyCommand.class differ diff --git a/build/_compileJava_2/net/minecraft/server/commands/EffectCommands.class b/build/_compileJava_2/net/minecraft/server/commands/EffectCommands.class new file mode 100644 index 000000000..f8db5307e Binary files /dev/null and b/build/_compileJava_2/net/minecraft/server/commands/EffectCommands.class differ diff --git a/build/_compileJava_2/net/minecraft/server/commands/EmoteCommands.class b/build/_compileJava_2/net/minecraft/server/commands/EmoteCommands.class new file mode 100644 index 000000000..e4bc9e4ce Binary files /dev/null and b/build/_compileJava_2/net/minecraft/server/commands/EmoteCommands.class differ diff --git a/build/_compileJava_2/net/minecraft/server/commands/EnchantCommand.class b/build/_compileJava_2/net/minecraft/server/commands/EnchantCommand.class new file mode 100644 index 000000000..64a82dfaf Binary files /dev/null and b/build/_compileJava_2/net/minecraft/server/commands/EnchantCommand.class differ diff --git a/build/_compileJava_2/net/minecraft/server/commands/ExecuteCommand$CommandNumericPredicate.class b/build/_compileJava_2/net/minecraft/server/commands/ExecuteCommand$CommandNumericPredicate.class new file mode 100644 index 000000000..fb34b3210 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/server/commands/ExecuteCommand$CommandNumericPredicate.class differ diff --git a/build/_compileJava_2/net/minecraft/server/commands/ExecuteCommand$CommandPredicate.class b/build/_compileJava_2/net/minecraft/server/commands/ExecuteCommand$CommandPredicate.class new file mode 100644 index 000000000..1c689f61e Binary files /dev/null and b/build/_compileJava_2/net/minecraft/server/commands/ExecuteCommand$CommandPredicate.class differ diff --git a/build/_compileJava_2/net/minecraft/server/commands/ExecuteCommand.class b/build/_compileJava_2/net/minecraft/server/commands/ExecuteCommand.class new file mode 100644 index 000000000..bf30a5014 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/server/commands/ExecuteCommand.class differ diff --git a/build/_compileJava_2/net/minecraft/server/commands/ExperienceCommand$Type.class b/build/_compileJava_2/net/minecraft/server/commands/ExperienceCommand$Type.class new file mode 100644 index 000000000..84bb3361c Binary files /dev/null and b/build/_compileJava_2/net/minecraft/server/commands/ExperienceCommand$Type.class differ diff --git a/build/_compileJava_2/net/minecraft/server/commands/ExperienceCommand.class b/build/_compileJava_2/net/minecraft/server/commands/ExperienceCommand.class new file mode 100644 index 000000000..5b5a13436 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/server/commands/ExperienceCommand.class differ diff --git a/build/_compileJava_2/net/minecraft/server/commands/FillBiomeCommand.class b/build/_compileJava_2/net/minecraft/server/commands/FillBiomeCommand.class new file mode 100644 index 000000000..bfc376a01 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/server/commands/FillBiomeCommand.class differ diff --git a/build/_compileJava_2/net/minecraft/server/commands/FillCommand$Mode.class b/build/_compileJava_2/net/minecraft/server/commands/FillCommand$Mode.class new file mode 100644 index 000000000..fc0c2dda7 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/server/commands/FillCommand$Mode.class differ diff --git a/build/_compileJava_2/net/minecraft/server/commands/FillCommand.class b/build/_compileJava_2/net/minecraft/server/commands/FillCommand.class new file mode 100644 index 000000000..3cf517dea Binary files /dev/null and b/build/_compileJava_2/net/minecraft/server/commands/FillCommand.class differ diff --git a/build/_compileJava_2/net/minecraft/server/commands/ForceLoadCommand.class b/build/_compileJava_2/net/minecraft/server/commands/ForceLoadCommand.class new file mode 100644 index 000000000..2466777c4 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/server/commands/ForceLoadCommand.class differ diff --git a/build/_compileJava_2/net/minecraft/server/commands/FunctionCommand.class b/build/_compileJava_2/net/minecraft/server/commands/FunctionCommand.class new file mode 100644 index 000000000..0ee01b54d Binary files /dev/null and b/build/_compileJava_2/net/minecraft/server/commands/FunctionCommand.class differ diff --git a/build/_compileJava_2/net/minecraft/server/commands/GameModeCommand.class b/build/_compileJava_2/net/minecraft/server/commands/GameModeCommand.class new file mode 100644 index 000000000..57135660a Binary files /dev/null and b/build/_compileJava_2/net/minecraft/server/commands/GameModeCommand.class differ diff --git a/build/_compileJava_2/net/minecraft/server/commands/GameRuleCommand$1.class b/build/_compileJava_2/net/minecraft/server/commands/GameRuleCommand$1.class new file mode 100644 index 000000000..34ccb69f0 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/server/commands/GameRuleCommand$1.class differ diff --git a/build/_compileJava_2/net/minecraft/server/commands/GameRuleCommand.class b/build/_compileJava_2/net/minecraft/server/commands/GameRuleCommand.class new file mode 100644 index 000000000..34cb33b1c Binary files /dev/null and b/build/_compileJava_2/net/minecraft/server/commands/GameRuleCommand.class differ diff --git a/build/_compileJava_2/net/minecraft/server/commands/GiveCommand.class b/build/_compileJava_2/net/minecraft/server/commands/GiveCommand.class new file mode 100644 index 000000000..e7a8b9f3a Binary files /dev/null and b/build/_compileJava_2/net/minecraft/server/commands/GiveCommand.class differ diff --git a/build/_compileJava_2/net/minecraft/server/commands/HelpCommand.class b/build/_compileJava_2/net/minecraft/server/commands/HelpCommand.class new file mode 100644 index 000000000..56dd64b1b Binary files /dev/null and b/build/_compileJava_2/net/minecraft/server/commands/HelpCommand.class differ diff --git a/build/_compileJava_2/net/minecraft/server/commands/ItemCommands.class b/build/_compileJava_2/net/minecraft/server/commands/ItemCommands.class new file mode 100644 index 000000000..3e6960ca8 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/server/commands/ItemCommands.class differ diff --git a/build/_compileJava_2/net/minecraft/server/commands/JfrCommand.class b/build/_compileJava_2/net/minecraft/server/commands/JfrCommand.class new file mode 100644 index 000000000..2ffaa219f Binary files /dev/null and b/build/_compileJava_2/net/minecraft/server/commands/JfrCommand.class differ diff --git a/build/_compileJava_2/net/minecraft/server/commands/KickCommand.class b/build/_compileJava_2/net/minecraft/server/commands/KickCommand.class new file mode 100644 index 000000000..a10c1f6b7 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/server/commands/KickCommand.class differ diff --git a/build/_compileJava_2/net/minecraft/server/commands/KillCommand.class b/build/_compileJava_2/net/minecraft/server/commands/KillCommand.class new file mode 100644 index 000000000..8ede109f2 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/server/commands/KillCommand.class differ diff --git a/build/_compileJava_2/net/minecraft/server/commands/ListPlayersCommand.class b/build/_compileJava_2/net/minecraft/server/commands/ListPlayersCommand.class new file mode 100644 index 000000000..36cd742df Binary files /dev/null and b/build/_compileJava_2/net/minecraft/server/commands/ListPlayersCommand.class differ diff --git a/build/_compileJava_2/net/minecraft/server/commands/LocateCommand.class b/build/_compileJava_2/net/minecraft/server/commands/LocateCommand.class new file mode 100644 index 000000000..93d242892 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/server/commands/LocateCommand.class differ diff --git a/build/_compileJava_2/net/minecraft/server/commands/LootCommand$Callback.class b/build/_compileJava_2/net/minecraft/server/commands/LootCommand$Callback.class new file mode 100644 index 000000000..12c414d68 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/server/commands/LootCommand$Callback.class differ diff --git a/build/_compileJava_2/net/minecraft/server/commands/LootCommand$DropConsumer.class b/build/_compileJava_2/net/minecraft/server/commands/LootCommand$DropConsumer.class new file mode 100644 index 000000000..0a7543a69 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/server/commands/LootCommand$DropConsumer.class differ diff --git a/build/_compileJava_2/net/minecraft/server/commands/LootCommand$TailProvider.class b/build/_compileJava_2/net/minecraft/server/commands/LootCommand$TailProvider.class new file mode 100644 index 000000000..361f822fe Binary files /dev/null and b/build/_compileJava_2/net/minecraft/server/commands/LootCommand$TailProvider.class differ diff --git a/build/_compileJava_2/net/minecraft/server/commands/LootCommand.class b/build/_compileJava_2/net/minecraft/server/commands/LootCommand.class new file mode 100644 index 000000000..d0343ae96 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/server/commands/LootCommand.class differ diff --git a/build/_compileJava_2/net/minecraft/server/commands/MsgCommand.class b/build/_compileJava_2/net/minecraft/server/commands/MsgCommand.class new file mode 100644 index 000000000..f4ba012fd Binary files /dev/null and b/build/_compileJava_2/net/minecraft/server/commands/MsgCommand.class differ diff --git a/build/_compileJava_2/net/minecraft/server/commands/OpCommand.class b/build/_compileJava_2/net/minecraft/server/commands/OpCommand.class new file mode 100644 index 000000000..39bb5a4a9 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/server/commands/OpCommand.class differ diff --git a/build/_compileJava_2/net/minecraft/server/commands/PardonCommand.class b/build/_compileJava_2/net/minecraft/server/commands/PardonCommand.class new file mode 100644 index 000000000..51b0f1781 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/server/commands/PardonCommand.class differ diff --git a/build/_compileJava_2/net/minecraft/server/commands/PardonIpCommand.class b/build/_compileJava_2/net/minecraft/server/commands/PardonIpCommand.class new file mode 100644 index 000000000..cab74597f Binary files /dev/null and b/build/_compileJava_2/net/minecraft/server/commands/PardonIpCommand.class differ diff --git a/build/_compileJava_2/net/minecraft/server/commands/ParticleCommand.class b/build/_compileJava_2/net/minecraft/server/commands/ParticleCommand.class new file mode 100644 index 000000000..b802b88a5 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/server/commands/ParticleCommand.class differ diff --git a/build/_compileJava_2/net/minecraft/server/commands/PerfCommand.class b/build/_compileJava_2/net/minecraft/server/commands/PerfCommand.class new file mode 100644 index 000000000..8dcdcc727 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/server/commands/PerfCommand.class differ diff --git a/build/_compileJava_2/net/minecraft/server/commands/PlaceCommand.class b/build/_compileJava_2/net/minecraft/server/commands/PlaceCommand.class new file mode 100644 index 000000000..f6729e706 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/server/commands/PlaceCommand.class differ diff --git a/build/_compileJava_2/net/minecraft/server/commands/PlaySoundCommand.class b/build/_compileJava_2/net/minecraft/server/commands/PlaySoundCommand.class new file mode 100644 index 000000000..435891838 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/server/commands/PlaySoundCommand.class differ diff --git a/build/_compileJava_2/net/minecraft/server/commands/PublishCommand.class b/build/_compileJava_2/net/minecraft/server/commands/PublishCommand.class new file mode 100644 index 000000000..7798d054d Binary files /dev/null and b/build/_compileJava_2/net/minecraft/server/commands/PublishCommand.class differ diff --git a/build/_compileJava_2/net/minecraft/server/commands/RaidCommand.class b/build/_compileJava_2/net/minecraft/server/commands/RaidCommand.class new file mode 100644 index 000000000..2fa85b372 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/server/commands/RaidCommand.class differ diff --git a/build/_compileJava_2/net/minecraft/server/commands/RecipeCommand.class b/build/_compileJava_2/net/minecraft/server/commands/RecipeCommand.class new file mode 100644 index 000000000..36873d72c Binary files /dev/null and b/build/_compileJava_2/net/minecraft/server/commands/RecipeCommand.class differ diff --git a/build/_compileJava_2/net/minecraft/server/commands/ReloadCommand.class b/build/_compileJava_2/net/minecraft/server/commands/ReloadCommand.class new file mode 100644 index 000000000..b336df084 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/server/commands/ReloadCommand.class differ diff --git a/build/_compileJava_2/net/minecraft/server/commands/ResetChunksCommand.class b/build/_compileJava_2/net/minecraft/server/commands/ResetChunksCommand.class new file mode 100644 index 000000000..81284d0ba Binary files /dev/null and b/build/_compileJava_2/net/minecraft/server/commands/ResetChunksCommand.class differ diff --git a/build/_compileJava_2/net/minecraft/server/commands/ReturnCommand.class b/build/_compileJava_2/net/minecraft/server/commands/ReturnCommand.class new file mode 100644 index 000000000..93300e99f Binary files /dev/null and b/build/_compileJava_2/net/minecraft/server/commands/ReturnCommand.class differ diff --git a/build/_compileJava_2/net/minecraft/server/commands/RideCommand.class b/build/_compileJava_2/net/minecraft/server/commands/RideCommand.class new file mode 100644 index 000000000..d74e871b9 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/server/commands/RideCommand.class differ diff --git a/build/_compileJava_2/net/minecraft/server/commands/SaveAllCommand.class b/build/_compileJava_2/net/minecraft/server/commands/SaveAllCommand.class new file mode 100644 index 000000000..254df4542 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/server/commands/SaveAllCommand.class differ diff --git a/build/_compileJava_2/net/minecraft/server/commands/SaveOffCommand.class b/build/_compileJava_2/net/minecraft/server/commands/SaveOffCommand.class new file mode 100644 index 000000000..f0c79b9c7 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/server/commands/SaveOffCommand.class differ diff --git a/build/_compileJava_2/net/minecraft/server/commands/SaveOnCommand.class b/build/_compileJava_2/net/minecraft/server/commands/SaveOnCommand.class new file mode 100644 index 000000000..1cb3e3f4f Binary files /dev/null and b/build/_compileJava_2/net/minecraft/server/commands/SaveOnCommand.class differ diff --git a/build/_compileJava_2/net/minecraft/server/commands/SayCommand.class b/build/_compileJava_2/net/minecraft/server/commands/SayCommand.class new file mode 100644 index 000000000..b90ce94b9 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/server/commands/SayCommand.class differ diff --git a/build/_compileJava_2/net/minecraft/server/commands/ScheduleCommand.class b/build/_compileJava_2/net/minecraft/server/commands/ScheduleCommand.class new file mode 100644 index 000000000..8421fadda Binary files /dev/null and b/build/_compileJava_2/net/minecraft/server/commands/ScheduleCommand.class differ diff --git a/build/_compileJava_2/net/minecraft/server/commands/ScoreboardCommand.class b/build/_compileJava_2/net/minecraft/server/commands/ScoreboardCommand.class new file mode 100644 index 000000000..9e087b517 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/server/commands/ScoreboardCommand.class differ diff --git a/build/_compileJava_2/net/minecraft/server/commands/SeedCommand.class b/build/_compileJava_2/net/minecraft/server/commands/SeedCommand.class new file mode 100644 index 000000000..81bb02ce9 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/server/commands/SeedCommand.class differ diff --git a/build/_compileJava_2/net/minecraft/server/commands/SetBlockCommand$Filter.class b/build/_compileJava_2/net/minecraft/server/commands/SetBlockCommand$Filter.class new file mode 100644 index 000000000..8f2bae595 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/server/commands/SetBlockCommand$Filter.class differ diff --git a/build/_compileJava_2/net/minecraft/server/commands/SetBlockCommand$Mode.class b/build/_compileJava_2/net/minecraft/server/commands/SetBlockCommand$Mode.class new file mode 100644 index 000000000..f78cfe9a4 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/server/commands/SetBlockCommand$Mode.class differ diff --git a/build/_compileJava_2/net/minecraft/server/commands/SetBlockCommand.class b/build/_compileJava_2/net/minecraft/server/commands/SetBlockCommand.class new file mode 100644 index 000000000..c13fbfd52 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/server/commands/SetBlockCommand.class differ diff --git a/build/_compileJava_2/net/minecraft/server/commands/SetPlayerIdleTimeoutCommand.class b/build/_compileJava_2/net/minecraft/server/commands/SetPlayerIdleTimeoutCommand.class new file mode 100644 index 000000000..7af995647 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/server/commands/SetPlayerIdleTimeoutCommand.class differ diff --git a/build/_compileJava_2/net/minecraft/server/commands/SetSpawnCommand.class b/build/_compileJava_2/net/minecraft/server/commands/SetSpawnCommand.class new file mode 100644 index 000000000..fa1078e9f Binary files /dev/null and b/build/_compileJava_2/net/minecraft/server/commands/SetSpawnCommand.class differ diff --git a/build/_compileJava_2/net/minecraft/server/commands/SetWorldSpawnCommand.class b/build/_compileJava_2/net/minecraft/server/commands/SetWorldSpawnCommand.class new file mode 100644 index 000000000..75dd9eda7 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/server/commands/SetWorldSpawnCommand.class differ diff --git a/build/_compileJava_2/net/minecraft/server/commands/SpawnArmorTrimsCommand.class b/build/_compileJava_2/net/minecraft/server/commands/SpawnArmorTrimsCommand.class new file mode 100644 index 000000000..02f7bceeb Binary files /dev/null and b/build/_compileJava_2/net/minecraft/server/commands/SpawnArmorTrimsCommand.class differ diff --git a/build/_compileJava_2/net/minecraft/server/commands/SpectateCommand.class b/build/_compileJava_2/net/minecraft/server/commands/SpectateCommand.class new file mode 100644 index 000000000..86e76ec36 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/server/commands/SpectateCommand.class differ diff --git a/build/_compileJava_2/net/minecraft/server/commands/SpreadPlayersCommand$Position.class b/build/_compileJava_2/net/minecraft/server/commands/SpreadPlayersCommand$Position.class new file mode 100644 index 000000000..27c0b3645 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/server/commands/SpreadPlayersCommand$Position.class differ diff --git a/build/_compileJava_2/net/minecraft/server/commands/SpreadPlayersCommand.class b/build/_compileJava_2/net/minecraft/server/commands/SpreadPlayersCommand.class new file mode 100644 index 000000000..0fd44397d Binary files /dev/null and b/build/_compileJava_2/net/minecraft/server/commands/SpreadPlayersCommand.class differ diff --git a/build/_compileJava_2/net/minecraft/server/commands/StopCommand.class b/build/_compileJava_2/net/minecraft/server/commands/StopCommand.class new file mode 100644 index 000000000..6ead26e88 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/server/commands/StopCommand.class differ diff --git a/build/_compileJava_2/net/minecraft/server/commands/StopSoundCommand.class b/build/_compileJava_2/net/minecraft/server/commands/StopSoundCommand.class new file mode 100644 index 000000000..260afb6f8 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/server/commands/StopSoundCommand.class differ diff --git a/build/_compileJava_2/net/minecraft/server/commands/SummonCommand.class b/build/_compileJava_2/net/minecraft/server/commands/SummonCommand.class new file mode 100644 index 000000000..63da04535 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/server/commands/SummonCommand.class differ diff --git a/build/_compileJava_2/net/minecraft/server/commands/TagCommand.class b/build/_compileJava_2/net/minecraft/server/commands/TagCommand.class new file mode 100644 index 000000000..2ab4d3521 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/server/commands/TagCommand.class differ diff --git a/build/_compileJava_2/net/minecraft/server/commands/TeamCommand.class b/build/_compileJava_2/net/minecraft/server/commands/TeamCommand.class new file mode 100644 index 000000000..2d8a9c158 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/server/commands/TeamCommand.class differ diff --git a/build/_compileJava_2/net/minecraft/server/commands/TeamMsgCommand.class b/build/_compileJava_2/net/minecraft/server/commands/TeamMsgCommand.class new file mode 100644 index 000000000..490a150c8 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/server/commands/TeamMsgCommand.class differ diff --git a/build/_compileJava_2/net/minecraft/server/commands/TeleportCommand$LookAt.class b/build/_compileJava_2/net/minecraft/server/commands/TeleportCommand$LookAt.class new file mode 100644 index 000000000..692feb205 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/server/commands/TeleportCommand$LookAt.class differ diff --git a/build/_compileJava_2/net/minecraft/server/commands/TeleportCommand.class b/build/_compileJava_2/net/minecraft/server/commands/TeleportCommand.class new file mode 100644 index 000000000..6ce29ac0c Binary files /dev/null and b/build/_compileJava_2/net/minecraft/server/commands/TeleportCommand.class differ diff --git a/build/_compileJava_2/net/minecraft/server/commands/TellRawCommand.class b/build/_compileJava_2/net/minecraft/server/commands/TellRawCommand.class new file mode 100644 index 000000000..bd8cb028c Binary files /dev/null and b/build/_compileJava_2/net/minecraft/server/commands/TellRawCommand.class differ diff --git a/build/_compileJava_2/net/minecraft/server/commands/TimeCommand.class b/build/_compileJava_2/net/minecraft/server/commands/TimeCommand.class new file mode 100644 index 000000000..b1bd9503d Binary files /dev/null and b/build/_compileJava_2/net/minecraft/server/commands/TimeCommand.class differ diff --git a/build/_compileJava_2/net/minecraft/server/commands/TitleCommand.class b/build/_compileJava_2/net/minecraft/server/commands/TitleCommand.class new file mode 100644 index 000000000..0f0afe2d3 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/server/commands/TitleCommand.class differ diff --git a/build/_compileJava_2/net/minecraft/server/commands/TriggerCommand.class b/build/_compileJava_2/net/minecraft/server/commands/TriggerCommand.class new file mode 100644 index 000000000..9fe17f231 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/server/commands/TriggerCommand.class differ diff --git a/build/_compileJava_2/net/minecraft/server/commands/WardenSpawnTrackerCommand.class b/build/_compileJava_2/net/minecraft/server/commands/WardenSpawnTrackerCommand.class new file mode 100644 index 000000000..5cac00587 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/server/commands/WardenSpawnTrackerCommand.class differ diff --git a/build/_compileJava_2/net/minecraft/server/commands/WeatherCommand.class b/build/_compileJava_2/net/minecraft/server/commands/WeatherCommand.class new file mode 100644 index 000000000..3094fc958 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/server/commands/WeatherCommand.class differ diff --git a/build/_compileJava_2/net/minecraft/server/commands/WhitelistCommand.class b/build/_compileJava_2/net/minecraft/server/commands/WhitelistCommand.class new file mode 100644 index 000000000..9fea89f5b Binary files /dev/null and b/build/_compileJava_2/net/minecraft/server/commands/WhitelistCommand.class differ diff --git a/build/_compileJava_2/net/minecraft/server/commands/WorldBorderCommand.class b/build/_compileJava_2/net/minecraft/server/commands/WorldBorderCommand.class new file mode 100644 index 000000000..82477720c Binary files /dev/null and b/build/_compileJava_2/net/minecraft/server/commands/WorldBorderCommand.class differ diff --git a/build/_compileJava_2/net/minecraft/server/commands/data/BlockDataAccessor$1.class b/build/_compileJava_2/net/minecraft/server/commands/data/BlockDataAccessor$1.class new file mode 100644 index 000000000..f13f49406 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/server/commands/data/BlockDataAccessor$1.class differ diff --git a/build/_compileJava_2/net/minecraft/server/commands/data/BlockDataAccessor.class b/build/_compileJava_2/net/minecraft/server/commands/data/BlockDataAccessor.class new file mode 100644 index 000000000..4ce24d67b Binary files /dev/null and b/build/_compileJava_2/net/minecraft/server/commands/data/BlockDataAccessor.class differ diff --git a/build/_compileJava_2/net/minecraft/server/commands/data/DataAccessor.class b/build/_compileJava_2/net/minecraft/server/commands/data/DataAccessor.class new file mode 100644 index 000000000..7688f02ba Binary files /dev/null and b/build/_compileJava_2/net/minecraft/server/commands/data/DataAccessor.class differ diff --git a/build/_compileJava_2/net/minecraft/server/commands/data/DataCommands$DataManipulator.class b/build/_compileJava_2/net/minecraft/server/commands/data/DataCommands$DataManipulator.class new file mode 100644 index 000000000..8db676e85 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/server/commands/data/DataCommands$DataManipulator.class differ diff --git a/build/_compileJava_2/net/minecraft/server/commands/data/DataCommands$DataManipulatorDecorator.class b/build/_compileJava_2/net/minecraft/server/commands/data/DataCommands$DataManipulatorDecorator.class new file mode 100644 index 000000000..03eb8ca20 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/server/commands/data/DataCommands$DataManipulatorDecorator.class differ diff --git a/build/_compileJava_2/net/minecraft/server/commands/data/DataCommands$DataProvider.class b/build/_compileJava_2/net/minecraft/server/commands/data/DataCommands$DataProvider.class new file mode 100644 index 000000000..268093c5f Binary files /dev/null and b/build/_compileJava_2/net/minecraft/server/commands/data/DataCommands$DataProvider.class differ diff --git a/build/_compileJava_2/net/minecraft/server/commands/data/DataCommands$StringProcessor.class b/build/_compileJava_2/net/minecraft/server/commands/data/DataCommands$StringProcessor.class new file mode 100644 index 000000000..1d4bc0f0d Binary files /dev/null and b/build/_compileJava_2/net/minecraft/server/commands/data/DataCommands$StringProcessor.class differ diff --git a/build/_compileJava_2/net/minecraft/server/commands/data/DataCommands.class b/build/_compileJava_2/net/minecraft/server/commands/data/DataCommands.class new file mode 100644 index 000000000..cd339e932 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/server/commands/data/DataCommands.class differ diff --git a/build/_compileJava_2/net/minecraft/server/commands/data/EntityDataAccessor$1.class b/build/_compileJava_2/net/minecraft/server/commands/data/EntityDataAccessor$1.class new file mode 100644 index 000000000..cfa6da9b3 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/server/commands/data/EntityDataAccessor$1.class differ diff --git a/build/_compileJava_2/net/minecraft/server/commands/data/EntityDataAccessor.class b/build/_compileJava_2/net/minecraft/server/commands/data/EntityDataAccessor.class new file mode 100644 index 000000000..6313d2d15 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/server/commands/data/EntityDataAccessor.class differ diff --git a/build/_compileJava_2/net/minecraft/server/commands/data/StorageDataAccessor$1.class b/build/_compileJava_2/net/minecraft/server/commands/data/StorageDataAccessor$1.class new file mode 100644 index 000000000..4dd7a6f13 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/server/commands/data/StorageDataAccessor$1.class differ diff --git a/build/_compileJava_2/net/minecraft/server/commands/data/StorageDataAccessor.class b/build/_compileJava_2/net/minecraft/server/commands/data/StorageDataAccessor.class new file mode 100644 index 000000000..02c1ea4ce Binary files /dev/null and b/build/_compileJava_2/net/minecraft/server/commands/data/StorageDataAccessor.class differ diff --git a/build/_compileJava_2/net/minecraft/server/commands/data/package-info.class b/build/_compileJava_2/net/minecraft/server/commands/data/package-info.class new file mode 100644 index 000000000..ec78567c4 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/server/commands/data/package-info.class differ diff --git a/build/_compileJava_2/net/minecraft/server/commands/package-info.class b/build/_compileJava_2/net/minecraft/server/commands/package-info.class new file mode 100644 index 000000000..5a650bd67 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/server/commands/package-info.class differ diff --git a/build/_compileJava_2/net/minecraft/server/dedicated/DedicatedPlayerList.class b/build/_compileJava_2/net/minecraft/server/dedicated/DedicatedPlayerList.class new file mode 100644 index 000000000..d28839ccb Binary files /dev/null and b/build/_compileJava_2/net/minecraft/server/dedicated/DedicatedPlayerList.class differ diff --git a/build/_compileJava_2/net/minecraft/server/dedicated/DedicatedServer$1.class b/build/_compileJava_2/net/minecraft/server/dedicated/DedicatedServer$1.class new file mode 100644 index 000000000..d1e824234 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/server/dedicated/DedicatedServer$1.class differ diff --git a/build/_compileJava_2/net/minecraft/server/dedicated/DedicatedServer.class b/build/_compileJava_2/net/minecraft/server/dedicated/DedicatedServer.class new file mode 100644 index 000000000..689e998ef Binary files /dev/null and b/build/_compileJava_2/net/minecraft/server/dedicated/DedicatedServer.class differ diff --git a/build/_compileJava_2/net/minecraft/server/dedicated/DedicatedServerProperties$WorldDimensionData.class b/build/_compileJava_2/net/minecraft/server/dedicated/DedicatedServerProperties$WorldDimensionData.class new file mode 100644 index 000000000..fca425d12 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/server/dedicated/DedicatedServerProperties$WorldDimensionData.class differ diff --git a/build/_compileJava_2/net/minecraft/server/dedicated/DedicatedServerProperties.class b/build/_compileJava_2/net/minecraft/server/dedicated/DedicatedServerProperties.class new file mode 100644 index 000000000..1aaebfd97 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/server/dedicated/DedicatedServerProperties.class differ diff --git a/build/_compileJava_2/net/minecraft/server/dedicated/DedicatedServerSettings.class b/build/_compileJava_2/net/minecraft/server/dedicated/DedicatedServerSettings.class new file mode 100644 index 000000000..ed6f2afca Binary files /dev/null and b/build/_compileJava_2/net/minecraft/server/dedicated/DedicatedServerSettings.class differ diff --git a/build/_compileJava_2/net/minecraft/server/dedicated/ServerWatchdog$1.class b/build/_compileJava_2/net/minecraft/server/dedicated/ServerWatchdog$1.class new file mode 100644 index 000000000..4dafcba80 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/server/dedicated/ServerWatchdog$1.class differ diff --git a/build/_compileJava_2/net/minecraft/server/dedicated/ServerWatchdog.class b/build/_compileJava_2/net/minecraft/server/dedicated/ServerWatchdog.class new file mode 100644 index 000000000..7c728da79 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/server/dedicated/ServerWatchdog.class differ diff --git a/build/_compileJava_2/net/minecraft/server/dedicated/Settings$MutableValue.class b/build/_compileJava_2/net/minecraft/server/dedicated/Settings$MutableValue.class new file mode 100644 index 000000000..44e2b6e19 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/server/dedicated/Settings$MutableValue.class differ diff --git a/build/_compileJava_2/net/minecraft/server/dedicated/Settings.class b/build/_compileJava_2/net/minecraft/server/dedicated/Settings.class new file mode 100644 index 000000000..2b265be1d Binary files /dev/null and b/build/_compileJava_2/net/minecraft/server/dedicated/Settings.class differ diff --git a/build/_compileJava_2/net/minecraft/server/dedicated/package-info.class b/build/_compileJava_2/net/minecraft/server/dedicated/package-info.class new file mode 100644 index 000000000..eaba3565d Binary files /dev/null and b/build/_compileJava_2/net/minecraft/server/dedicated/package-info.class differ diff --git a/build/_compileJava_2/net/minecraft/server/gui/MinecraftServerGui$1.class b/build/_compileJava_2/net/minecraft/server/gui/MinecraftServerGui$1.class new file mode 100644 index 000000000..ea6dc9ec0 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/server/gui/MinecraftServerGui$1.class differ diff --git a/build/_compileJava_2/net/minecraft/server/gui/MinecraftServerGui$2.class b/build/_compileJava_2/net/minecraft/server/gui/MinecraftServerGui$2.class new file mode 100644 index 000000000..e4ea2d1b8 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/server/gui/MinecraftServerGui$2.class differ diff --git a/build/_compileJava_2/net/minecraft/server/gui/MinecraftServerGui.class b/build/_compileJava_2/net/minecraft/server/gui/MinecraftServerGui.class new file mode 100644 index 000000000..077c4fdd4 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/server/gui/MinecraftServerGui.class differ diff --git a/build/_compileJava_2/net/minecraft/server/gui/PlayerListComponent.class b/build/_compileJava_2/net/minecraft/server/gui/PlayerListComponent.class new file mode 100644 index 000000000..e44de510f Binary files /dev/null and b/build/_compileJava_2/net/minecraft/server/gui/PlayerListComponent.class differ diff --git a/build/_compileJava_2/net/minecraft/server/gui/StatsComponent.class b/build/_compileJava_2/net/minecraft/server/gui/StatsComponent.class new file mode 100644 index 000000000..fd695fbe7 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/server/gui/StatsComponent.class differ diff --git a/build/_compileJava_2/net/minecraft/server/gui/package-info.class b/build/_compileJava_2/net/minecraft/server/gui/package-info.class new file mode 100644 index 000000000..f1ac60d5a Binary files /dev/null and b/build/_compileJava_2/net/minecraft/server/gui/package-info.class differ diff --git a/build/_compileJava_2/net/minecraft/server/level/BlockDestructionProgress.class b/build/_compileJava_2/net/minecraft/server/level/BlockDestructionProgress.class new file mode 100644 index 000000000..1f1f8b5e5 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/server/level/BlockDestructionProgress.class differ diff --git a/build/_compileJava_2/net/minecraft/server/level/ChunkHolder$1.class b/build/_compileJava_2/net/minecraft/server/level/ChunkHolder$1.class new file mode 100644 index 000000000..40f8558aa Binary files /dev/null and b/build/_compileJava_2/net/minecraft/server/level/ChunkHolder$1.class differ diff --git a/build/_compileJava_2/net/minecraft/server/level/ChunkHolder$ChunkLoadingFailure$1.class b/build/_compileJava_2/net/minecraft/server/level/ChunkHolder$ChunkLoadingFailure$1.class new file mode 100644 index 000000000..59d68398d Binary files /dev/null and b/build/_compileJava_2/net/minecraft/server/level/ChunkHolder$ChunkLoadingFailure$1.class differ diff --git a/build/_compileJava_2/net/minecraft/server/level/ChunkHolder$ChunkLoadingFailure.class b/build/_compileJava_2/net/minecraft/server/level/ChunkHolder$ChunkLoadingFailure.class new file mode 100644 index 000000000..0c7bf0315 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/server/level/ChunkHolder$ChunkLoadingFailure.class differ diff --git a/build/_compileJava_2/net/minecraft/server/level/ChunkHolder$ChunkSaveDebug.class b/build/_compileJava_2/net/minecraft/server/level/ChunkHolder$ChunkSaveDebug.class new file mode 100644 index 000000000..07a6adc1a Binary files /dev/null and b/build/_compileJava_2/net/minecraft/server/level/ChunkHolder$ChunkSaveDebug.class differ diff --git a/build/_compileJava_2/net/minecraft/server/level/ChunkHolder$LevelChangeListener.class b/build/_compileJava_2/net/minecraft/server/level/ChunkHolder$LevelChangeListener.class new file mode 100644 index 000000000..2ff6b2e56 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/server/level/ChunkHolder$LevelChangeListener.class differ diff --git a/build/_compileJava_2/net/minecraft/server/level/ChunkHolder$PlayerProvider.class b/build/_compileJava_2/net/minecraft/server/level/ChunkHolder$PlayerProvider.class new file mode 100644 index 000000000..5c8cb0869 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/server/level/ChunkHolder$PlayerProvider.class differ diff --git a/build/_compileJava_2/net/minecraft/server/level/ChunkHolder.class b/build/_compileJava_2/net/minecraft/server/level/ChunkHolder.class new file mode 100644 index 000000000..daf30122c Binary files /dev/null and b/build/_compileJava_2/net/minecraft/server/level/ChunkHolder.class differ diff --git a/build/_compileJava_2/net/minecraft/server/level/ChunkLevel$1.class b/build/_compileJava_2/net/minecraft/server/level/ChunkLevel$1.class new file mode 100644 index 000000000..404022e8a Binary files /dev/null and b/build/_compileJava_2/net/minecraft/server/level/ChunkLevel$1.class differ diff --git a/build/_compileJava_2/net/minecraft/server/level/ChunkLevel.class b/build/_compileJava_2/net/minecraft/server/level/ChunkLevel.class new file mode 100644 index 000000000..bec4b1690 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/server/level/ChunkLevel.class differ diff --git a/build/_compileJava_2/net/minecraft/server/level/ChunkMap$1.class b/build/_compileJava_2/net/minecraft/server/level/ChunkMap$1.class new file mode 100644 index 000000000..874a0fb64 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/server/level/ChunkMap$1.class differ diff --git a/build/_compileJava_2/net/minecraft/server/level/ChunkMap$2.class b/build/_compileJava_2/net/minecraft/server/level/ChunkMap$2.class new file mode 100644 index 000000000..01718c128 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/server/level/ChunkMap$2.class differ diff --git a/build/_compileJava_2/net/minecraft/server/level/ChunkMap$DistanceManager.class b/build/_compileJava_2/net/minecraft/server/level/ChunkMap$DistanceManager.class new file mode 100644 index 000000000..9bdbe06f0 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/server/level/ChunkMap$DistanceManager.class differ diff --git a/build/_compileJava_2/net/minecraft/server/level/ChunkMap$TrackedEntity.class b/build/_compileJava_2/net/minecraft/server/level/ChunkMap$TrackedEntity.class new file mode 100644 index 000000000..22c1aab6a Binary files /dev/null and b/build/_compileJava_2/net/minecraft/server/level/ChunkMap$TrackedEntity.class differ diff --git a/build/_compileJava_2/net/minecraft/server/level/ChunkMap.class b/build/_compileJava_2/net/minecraft/server/level/ChunkMap.class new file mode 100644 index 000000000..a4d04a41e Binary files /dev/null and b/build/_compileJava_2/net/minecraft/server/level/ChunkMap.class differ diff --git a/build/_compileJava_2/net/minecraft/server/level/ChunkTaskPriorityQueue.class b/build/_compileJava_2/net/minecraft/server/level/ChunkTaskPriorityQueue.class new file mode 100644 index 000000000..f1d4f8cbd Binary files /dev/null and b/build/_compileJava_2/net/minecraft/server/level/ChunkTaskPriorityQueue.class differ diff --git a/build/_compileJava_2/net/minecraft/server/level/ChunkTaskPriorityQueueSorter$Message.class b/build/_compileJava_2/net/minecraft/server/level/ChunkTaskPriorityQueueSorter$Message.class new file mode 100644 index 000000000..781edff1c Binary files /dev/null and b/build/_compileJava_2/net/minecraft/server/level/ChunkTaskPriorityQueueSorter$Message.class differ diff --git a/build/_compileJava_2/net/minecraft/server/level/ChunkTaskPriorityQueueSorter$Release.class b/build/_compileJava_2/net/minecraft/server/level/ChunkTaskPriorityQueueSorter$Release.class new file mode 100644 index 000000000..204a508e1 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/server/level/ChunkTaskPriorityQueueSorter$Release.class differ diff --git a/build/_compileJava_2/net/minecraft/server/level/ChunkTaskPriorityQueueSorter.class b/build/_compileJava_2/net/minecraft/server/level/ChunkTaskPriorityQueueSorter.class new file mode 100644 index 000000000..5c83e1c4a Binary files /dev/null and b/build/_compileJava_2/net/minecraft/server/level/ChunkTaskPriorityQueueSorter.class differ diff --git a/build/_compileJava_2/net/minecraft/server/level/ChunkTracker.class b/build/_compileJava_2/net/minecraft/server/level/ChunkTracker.class new file mode 100644 index 000000000..46d7fac10 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/server/level/ChunkTracker.class differ diff --git a/build/_compileJava_2/net/minecraft/server/level/ColumnPos.class b/build/_compileJava_2/net/minecraft/server/level/ColumnPos.class new file mode 100644 index 000000000..93b3e12c6 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/server/level/ColumnPos.class differ diff --git a/build/_compileJava_2/net/minecraft/server/level/DemoMode.class b/build/_compileJava_2/net/minecraft/server/level/DemoMode.class new file mode 100644 index 000000000..968e36e82 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/server/level/DemoMode.class differ diff --git a/build/_compileJava_2/net/minecraft/server/level/DistanceManager$ChunkTicketTracker.class b/build/_compileJava_2/net/minecraft/server/level/DistanceManager$ChunkTicketTracker.class new file mode 100644 index 000000000..efa549570 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/server/level/DistanceManager$ChunkTicketTracker.class differ diff --git a/build/_compileJava_2/net/minecraft/server/level/DistanceManager$FixedPlayerDistanceChunkTracker.class b/build/_compileJava_2/net/minecraft/server/level/DistanceManager$FixedPlayerDistanceChunkTracker.class new file mode 100644 index 000000000..60b9bd811 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/server/level/DistanceManager$FixedPlayerDistanceChunkTracker.class differ diff --git a/build/_compileJava_2/net/minecraft/server/level/DistanceManager$PlayerTicketTracker.class b/build/_compileJava_2/net/minecraft/server/level/DistanceManager$PlayerTicketTracker.class new file mode 100644 index 000000000..2eced2da9 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/server/level/DistanceManager$PlayerTicketTracker.class differ diff --git a/build/_compileJava_2/net/minecraft/server/level/DistanceManager.class b/build/_compileJava_2/net/minecraft/server/level/DistanceManager.class new file mode 100644 index 000000000..8579c64db Binary files /dev/null and b/build/_compileJava_2/net/minecraft/server/level/DistanceManager.class differ diff --git a/build/_compileJava_2/net/minecraft/server/level/FullChunkStatus.class b/build/_compileJava_2/net/minecraft/server/level/FullChunkStatus.class new file mode 100644 index 000000000..5ce8e3031 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/server/level/FullChunkStatus.class differ diff --git a/build/_compileJava_2/net/minecraft/server/level/PlayerMap.class b/build/_compileJava_2/net/minecraft/server/level/PlayerMap.class new file mode 100644 index 000000000..5493064f4 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/server/level/PlayerMap.class differ diff --git a/build/_compileJava_2/net/minecraft/server/level/PlayerRespawnLogic.class b/build/_compileJava_2/net/minecraft/server/level/PlayerRespawnLogic.class new file mode 100644 index 000000000..a4dbb6bad Binary files /dev/null and b/build/_compileJava_2/net/minecraft/server/level/PlayerRespawnLogic.class differ diff --git a/build/_compileJava_2/net/minecraft/server/level/SectionTracker.class b/build/_compileJava_2/net/minecraft/server/level/SectionTracker.class new file mode 100644 index 000000000..a2d8e46bc Binary files /dev/null and b/build/_compileJava_2/net/minecraft/server/level/SectionTracker.class differ diff --git a/build/_compileJava_2/net/minecraft/server/level/ServerBossEvent.class b/build/_compileJava_2/net/minecraft/server/level/ServerBossEvent.class new file mode 100644 index 000000000..53b864b6b Binary files /dev/null and b/build/_compileJava_2/net/minecraft/server/level/ServerBossEvent.class differ diff --git a/build/_compileJava_2/net/minecraft/server/level/ServerChunkCache$ChunkAndHolder.class b/build/_compileJava_2/net/minecraft/server/level/ServerChunkCache$ChunkAndHolder.class new file mode 100644 index 000000000..f971597ab Binary files /dev/null and b/build/_compileJava_2/net/minecraft/server/level/ServerChunkCache$ChunkAndHolder.class differ diff --git a/build/_compileJava_2/net/minecraft/server/level/ServerChunkCache$MainThreadExecutor.class b/build/_compileJava_2/net/minecraft/server/level/ServerChunkCache$MainThreadExecutor.class new file mode 100644 index 000000000..e6754b1d1 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/server/level/ServerChunkCache$MainThreadExecutor.class differ diff --git a/build/_compileJava_2/net/minecraft/server/level/ServerChunkCache.class b/build/_compileJava_2/net/minecraft/server/level/ServerChunkCache.class new file mode 100644 index 000000000..4ec4738ca Binary files /dev/null and b/build/_compileJava_2/net/minecraft/server/level/ServerChunkCache.class differ diff --git a/build/_compileJava_2/net/minecraft/server/level/ServerEntity.class b/build/_compileJava_2/net/minecraft/server/level/ServerEntity.class new file mode 100644 index 000000000..b2028075d Binary files /dev/null and b/build/_compileJava_2/net/minecraft/server/level/ServerEntity.class differ diff --git a/build/_compileJava_2/net/minecraft/server/level/ServerLevel$EntityCallbacks.class b/build/_compileJava_2/net/minecraft/server/level/ServerLevel$EntityCallbacks.class new file mode 100644 index 000000000..6dd3893ef Binary files /dev/null and b/build/_compileJava_2/net/minecraft/server/level/ServerLevel$EntityCallbacks.class differ diff --git a/build/_compileJava_2/net/minecraft/server/level/ServerLevel.class b/build/_compileJava_2/net/minecraft/server/level/ServerLevel.class new file mode 100644 index 000000000..528d4e22f Binary files /dev/null and b/build/_compileJava_2/net/minecraft/server/level/ServerLevel.class differ diff --git a/build/_compileJava_2/net/minecraft/server/level/ServerPlayer$1.class b/build/_compileJava_2/net/minecraft/server/level/ServerPlayer$1.class new file mode 100644 index 000000000..9dea1a96c Binary files /dev/null and b/build/_compileJava_2/net/minecraft/server/level/ServerPlayer$1.class differ diff --git a/build/_compileJava_2/net/minecraft/server/level/ServerPlayer$2.class b/build/_compileJava_2/net/minecraft/server/level/ServerPlayer$2.class new file mode 100644 index 000000000..9fb6abff9 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/server/level/ServerPlayer$2.class differ diff --git a/build/_compileJava_2/net/minecraft/server/level/ServerPlayer.class b/build/_compileJava_2/net/minecraft/server/level/ServerPlayer.class new file mode 100644 index 000000000..c2ac19d75 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/server/level/ServerPlayer.class differ diff --git a/build/_compileJava_2/net/minecraft/server/level/ServerPlayerGameMode.class b/build/_compileJava_2/net/minecraft/server/level/ServerPlayerGameMode.class new file mode 100644 index 000000000..27ec2d42b Binary files /dev/null and b/build/_compileJava_2/net/minecraft/server/level/ServerPlayerGameMode.class differ diff --git a/build/_compileJava_2/net/minecraft/server/level/ThreadedLevelLightEngine$TaskType.class b/build/_compileJava_2/net/minecraft/server/level/ThreadedLevelLightEngine$TaskType.class new file mode 100644 index 000000000..af6b4e79d Binary files /dev/null and b/build/_compileJava_2/net/minecraft/server/level/ThreadedLevelLightEngine$TaskType.class differ diff --git a/build/_compileJava_2/net/minecraft/server/level/ThreadedLevelLightEngine.class b/build/_compileJava_2/net/minecraft/server/level/ThreadedLevelLightEngine.class new file mode 100644 index 000000000..d90da2beb Binary files /dev/null and b/build/_compileJava_2/net/minecraft/server/level/ThreadedLevelLightEngine.class differ diff --git a/build/_compileJava_2/net/minecraft/server/level/Ticket.class b/build/_compileJava_2/net/minecraft/server/level/Ticket.class new file mode 100644 index 000000000..f991b149a Binary files /dev/null and b/build/_compileJava_2/net/minecraft/server/level/Ticket.class differ diff --git a/build/_compileJava_2/net/minecraft/server/level/TicketType.class b/build/_compileJava_2/net/minecraft/server/level/TicketType.class new file mode 100644 index 000000000..aec11932b Binary files /dev/null and b/build/_compileJava_2/net/minecraft/server/level/TicketType.class differ diff --git a/build/_compileJava_2/net/minecraft/server/level/TickingTracker.class b/build/_compileJava_2/net/minecraft/server/level/TickingTracker.class new file mode 100644 index 000000000..098a9a2f5 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/server/level/TickingTracker.class differ diff --git a/build/_compileJava_2/net/minecraft/server/level/WorldGenRegion.class b/build/_compileJava_2/net/minecraft/server/level/WorldGenRegion.class new file mode 100644 index 000000000..be67a59b0 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/server/level/WorldGenRegion.class differ diff --git a/build/_compileJava_2/net/minecraft/server/level/package-info.class b/build/_compileJava_2/net/minecraft/server/level/package-info.class new file mode 100644 index 000000000..052cf2766 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/server/level/package-info.class differ diff --git a/build/_compileJava_2/net/minecraft/server/level/progress/ChunkProgressListener.class b/build/_compileJava_2/net/minecraft/server/level/progress/ChunkProgressListener.class new file mode 100644 index 000000000..09781103d Binary files /dev/null and b/build/_compileJava_2/net/minecraft/server/level/progress/ChunkProgressListener.class differ diff --git a/build/_compileJava_2/net/minecraft/server/level/progress/ChunkProgressListenerFactory.class b/build/_compileJava_2/net/minecraft/server/level/progress/ChunkProgressListenerFactory.class new file mode 100644 index 000000000..34bd9c250 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/server/level/progress/ChunkProgressListenerFactory.class differ diff --git a/build/_compileJava_2/net/minecraft/server/level/progress/LoggerChunkProgressListener.class b/build/_compileJava_2/net/minecraft/server/level/progress/LoggerChunkProgressListener.class new file mode 100644 index 000000000..168cf33de Binary files /dev/null and b/build/_compileJava_2/net/minecraft/server/level/progress/LoggerChunkProgressListener.class differ diff --git a/build/_compileJava_2/net/minecraft/server/level/progress/ProcessorChunkProgressListener.class b/build/_compileJava_2/net/minecraft/server/level/progress/ProcessorChunkProgressListener.class new file mode 100644 index 000000000..bb2fb2bc0 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/server/level/progress/ProcessorChunkProgressListener.class differ diff --git a/build/_compileJava_2/net/minecraft/server/level/progress/StoringChunkProgressListener.class b/build/_compileJava_2/net/minecraft/server/level/progress/StoringChunkProgressListener.class new file mode 100644 index 000000000..dc659ca15 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/server/level/progress/StoringChunkProgressListener.class differ diff --git a/build/_compileJava_2/net/minecraft/server/level/progress/package-info.class b/build/_compileJava_2/net/minecraft/server/level/progress/package-info.class new file mode 100644 index 000000000..0d35a0bcb Binary files /dev/null and b/build/_compileJava_2/net/minecraft/server/level/progress/package-info.class differ diff --git a/build/_compileJava_2/net/minecraft/server/network/FilteredText.class b/build/_compileJava_2/net/minecraft/server/network/FilteredText.class new file mode 100644 index 000000000..e588b28d2 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/server/network/FilteredText.class differ diff --git a/build/_compileJava_2/net/minecraft/server/network/LegacyQueryHandler.class b/build/_compileJava_2/net/minecraft/server/network/LegacyQueryHandler.class new file mode 100644 index 000000000..c3085a115 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/server/network/LegacyQueryHandler.class differ diff --git a/build/_compileJava_2/net/minecraft/server/network/MemoryServerHandshakePacketListenerImpl.class b/build/_compileJava_2/net/minecraft/server/network/MemoryServerHandshakePacketListenerImpl.class new file mode 100644 index 000000000..3bf1366b8 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/server/network/MemoryServerHandshakePacketListenerImpl.class differ diff --git a/build/_compileJava_2/net/minecraft/server/network/ServerConnectionListener$1.class b/build/_compileJava_2/net/minecraft/server/network/ServerConnectionListener$1.class new file mode 100644 index 000000000..fca5e2be5 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/server/network/ServerConnectionListener$1.class differ diff --git a/build/_compileJava_2/net/minecraft/server/network/ServerConnectionListener$2.class b/build/_compileJava_2/net/minecraft/server/network/ServerConnectionListener$2.class new file mode 100644 index 000000000..61e570ef6 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/server/network/ServerConnectionListener$2.class differ diff --git a/build/_compileJava_2/net/minecraft/server/network/ServerConnectionListener$LatencySimulator$DelayedMessage.class b/build/_compileJava_2/net/minecraft/server/network/ServerConnectionListener$LatencySimulator$DelayedMessage.class new file mode 100644 index 000000000..6c31b18a8 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/server/network/ServerConnectionListener$LatencySimulator$DelayedMessage.class differ diff --git a/build/_compileJava_2/net/minecraft/server/network/ServerConnectionListener$LatencySimulator.class b/build/_compileJava_2/net/minecraft/server/network/ServerConnectionListener$LatencySimulator.class new file mode 100644 index 000000000..839582501 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/server/network/ServerConnectionListener$LatencySimulator.class differ diff --git a/build/_compileJava_2/net/minecraft/server/network/ServerConnectionListener.class b/build/_compileJava_2/net/minecraft/server/network/ServerConnectionListener.class new file mode 100644 index 000000000..518f5fbb9 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/server/network/ServerConnectionListener.class differ diff --git a/build/_compileJava_2/net/minecraft/server/network/ServerGamePacketListenerImpl$1.class b/build/_compileJava_2/net/minecraft/server/network/ServerGamePacketListenerImpl$1.class new file mode 100644 index 000000000..bdb92fd3a Binary files /dev/null and b/build/_compileJava_2/net/minecraft/server/network/ServerGamePacketListenerImpl$1.class differ diff --git a/build/_compileJava_2/net/minecraft/server/network/ServerGamePacketListenerImpl$2.class b/build/_compileJava_2/net/minecraft/server/network/ServerGamePacketListenerImpl$2.class new file mode 100644 index 000000000..230622e77 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/server/network/ServerGamePacketListenerImpl$2.class differ diff --git a/build/_compileJava_2/net/minecraft/server/network/ServerGamePacketListenerImpl$EntityInteraction.class b/build/_compileJava_2/net/minecraft/server/network/ServerGamePacketListenerImpl$EntityInteraction.class new file mode 100644 index 000000000..50a29bacf Binary files /dev/null and b/build/_compileJava_2/net/minecraft/server/network/ServerGamePacketListenerImpl$EntityInteraction.class differ diff --git a/build/_compileJava_2/net/minecraft/server/network/ServerGamePacketListenerImpl.class b/build/_compileJava_2/net/minecraft/server/network/ServerGamePacketListenerImpl.class new file mode 100644 index 000000000..9b6155fcf Binary files /dev/null and b/build/_compileJava_2/net/minecraft/server/network/ServerGamePacketListenerImpl.class differ diff --git a/build/_compileJava_2/net/minecraft/server/network/ServerHandshakePacketListenerImpl$1.class b/build/_compileJava_2/net/minecraft/server/network/ServerHandshakePacketListenerImpl$1.class new file mode 100644 index 000000000..aa706eea5 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/server/network/ServerHandshakePacketListenerImpl$1.class differ diff --git a/build/_compileJava_2/net/minecraft/server/network/ServerHandshakePacketListenerImpl.class b/build/_compileJava_2/net/minecraft/server/network/ServerHandshakePacketListenerImpl.class new file mode 100644 index 000000000..78c473a71 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/server/network/ServerHandshakePacketListenerImpl.class differ diff --git a/build/_compileJava_2/net/minecraft/server/network/ServerLoginPacketListenerImpl$1.class b/build/_compileJava_2/net/minecraft/server/network/ServerLoginPacketListenerImpl$1.class new file mode 100644 index 000000000..505b28682 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/server/network/ServerLoginPacketListenerImpl$1.class differ diff --git a/build/_compileJava_2/net/minecraft/server/network/ServerLoginPacketListenerImpl$State.class b/build/_compileJava_2/net/minecraft/server/network/ServerLoginPacketListenerImpl$State.class new file mode 100644 index 000000000..2112b6766 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/server/network/ServerLoginPacketListenerImpl$State.class differ diff --git a/build/_compileJava_2/net/minecraft/server/network/ServerLoginPacketListenerImpl.class b/build/_compileJava_2/net/minecraft/server/network/ServerLoginPacketListenerImpl.class new file mode 100644 index 000000000..78227b33d Binary files /dev/null and b/build/_compileJava_2/net/minecraft/server/network/ServerLoginPacketListenerImpl.class differ diff --git a/build/_compileJava_2/net/minecraft/server/network/ServerPlayerConnection.class b/build/_compileJava_2/net/minecraft/server/network/ServerPlayerConnection.class new file mode 100644 index 000000000..583e31400 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/server/network/ServerPlayerConnection.class differ diff --git a/build/_compileJava_2/net/minecraft/server/network/ServerStatusPacketListenerImpl.class b/build/_compileJava_2/net/minecraft/server/network/ServerStatusPacketListenerImpl.class new file mode 100644 index 000000000..c8648ed8a Binary files /dev/null and b/build/_compileJava_2/net/minecraft/server/network/ServerStatusPacketListenerImpl.class differ diff --git a/build/_compileJava_2/net/minecraft/server/network/TextFilter$1.class b/build/_compileJava_2/net/minecraft/server/network/TextFilter$1.class new file mode 100644 index 000000000..6cb663089 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/server/network/TextFilter$1.class differ diff --git a/build/_compileJava_2/net/minecraft/server/network/TextFilter.class b/build/_compileJava_2/net/minecraft/server/network/TextFilter.class new file mode 100644 index 000000000..a62e8093c Binary files /dev/null and b/build/_compileJava_2/net/minecraft/server/network/TextFilter.class differ diff --git a/build/_compileJava_2/net/minecraft/server/network/TextFilterClient$IgnoreStrategy.class b/build/_compileJava_2/net/minecraft/server/network/TextFilterClient$IgnoreStrategy.class new file mode 100644 index 000000000..b90a6b882 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/server/network/TextFilterClient$IgnoreStrategy.class differ diff --git a/build/_compileJava_2/net/minecraft/server/network/TextFilterClient$JoinOrLeaveEncoder.class b/build/_compileJava_2/net/minecraft/server/network/TextFilterClient$JoinOrLeaveEncoder.class new file mode 100644 index 000000000..68d3cb56c Binary files /dev/null and b/build/_compileJava_2/net/minecraft/server/network/TextFilterClient$JoinOrLeaveEncoder.class differ diff --git a/build/_compileJava_2/net/minecraft/server/network/TextFilterClient$MessageEncoder.class b/build/_compileJava_2/net/minecraft/server/network/TextFilterClient$MessageEncoder.class new file mode 100644 index 000000000..63a7d347e Binary files /dev/null and b/build/_compileJava_2/net/minecraft/server/network/TextFilterClient$MessageEncoder.class differ diff --git a/build/_compileJava_2/net/minecraft/server/network/TextFilterClient$PlayerContext.class b/build/_compileJava_2/net/minecraft/server/network/TextFilterClient$PlayerContext.class new file mode 100644 index 000000000..ccf273674 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/server/network/TextFilterClient$PlayerContext.class differ diff --git a/build/_compileJava_2/net/minecraft/server/network/TextFilterClient$RequestFailedException.class b/build/_compileJava_2/net/minecraft/server/network/TextFilterClient$RequestFailedException.class new file mode 100644 index 000000000..14bdf8f2e Binary files /dev/null and b/build/_compileJava_2/net/minecraft/server/network/TextFilterClient$RequestFailedException.class differ diff --git a/build/_compileJava_2/net/minecraft/server/network/TextFilterClient.class b/build/_compileJava_2/net/minecraft/server/network/TextFilterClient.class new file mode 100644 index 000000000..596f38251 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/server/network/TextFilterClient.class differ diff --git a/build/_compileJava_2/net/minecraft/server/network/package-info.class b/build/_compileJava_2/net/minecraft/server/network/package-info.class new file mode 100644 index 000000000..4c480ff67 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/server/network/package-info.class differ diff --git a/build/_compileJava_2/net/minecraft/server/package-info.class b/build/_compileJava_2/net/minecraft/server/package-info.class new file mode 100644 index 000000000..302fa87e8 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/server/package-info.class differ diff --git a/build/_compileJava_2/net/minecraft/server/packs/AbstractPackResources.class b/build/_compileJava_2/net/minecraft/server/packs/AbstractPackResources.class new file mode 100644 index 000000000..b5a4b2d27 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/server/packs/AbstractPackResources.class differ diff --git a/build/_compileJava_2/net/minecraft/server/packs/BuiltInMetadata.class b/build/_compileJava_2/net/minecraft/server/packs/BuiltInMetadata.class new file mode 100644 index 000000000..6ae84f2df Binary files /dev/null and b/build/_compileJava_2/net/minecraft/server/packs/BuiltInMetadata.class differ diff --git a/build/_compileJava_2/net/minecraft/server/packs/FeatureFlagsMetadataSection.class b/build/_compileJava_2/net/minecraft/server/packs/FeatureFlagsMetadataSection.class new file mode 100644 index 000000000..f30e9bc34 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/server/packs/FeatureFlagsMetadataSection.class differ diff --git a/build/_compileJava_2/net/minecraft/server/packs/FilePackResources.class b/build/_compileJava_2/net/minecraft/server/packs/FilePackResources.class new file mode 100644 index 000000000..1fe90fd5e Binary files /dev/null and b/build/_compileJava_2/net/minecraft/server/packs/FilePackResources.class differ diff --git a/build/_compileJava_2/net/minecraft/server/packs/PackResources$ResourceOutput.class b/build/_compileJava_2/net/minecraft/server/packs/PackResources$ResourceOutput.class new file mode 100644 index 000000000..4a9d1a17d Binary files /dev/null and b/build/_compileJava_2/net/minecraft/server/packs/PackResources$ResourceOutput.class differ diff --git a/build/_compileJava_2/net/minecraft/server/packs/PackResources.class b/build/_compileJava_2/net/minecraft/server/packs/PackResources.class new file mode 100644 index 000000000..558cb366b Binary files /dev/null and b/build/_compileJava_2/net/minecraft/server/packs/PackResources.class differ diff --git a/build/_compileJava_2/net/minecraft/server/packs/PackType.class b/build/_compileJava_2/net/minecraft/server/packs/PackType.class new file mode 100644 index 000000000..2bd780c12 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/server/packs/PackType.class differ diff --git a/build/_compileJava_2/net/minecraft/server/packs/PathPackResources.class b/build/_compileJava_2/net/minecraft/server/packs/PathPackResources.class new file mode 100644 index 000000000..89b293c2b Binary files /dev/null and b/build/_compileJava_2/net/minecraft/server/packs/PathPackResources.class differ diff --git a/build/_compileJava_2/net/minecraft/server/packs/VanillaPackResources.class b/build/_compileJava_2/net/minecraft/server/packs/VanillaPackResources.class new file mode 100644 index 000000000..015af3b77 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/server/packs/VanillaPackResources.class differ diff --git a/build/_compileJava_2/net/minecraft/server/packs/VanillaPackResourcesBuilder.class b/build/_compileJava_2/net/minecraft/server/packs/VanillaPackResourcesBuilder.class new file mode 100644 index 000000000..ea2a6b564 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/server/packs/VanillaPackResourcesBuilder.class differ diff --git a/build/_compileJava_2/net/minecraft/server/packs/linkfs/DummyFileAttributes.class b/build/_compileJava_2/net/minecraft/server/packs/linkfs/DummyFileAttributes.class new file mode 100644 index 000000000..96408ffd1 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/server/packs/linkfs/DummyFileAttributes.class differ diff --git a/build/_compileJava_2/net/minecraft/server/packs/linkfs/LinkFSFileStore.class b/build/_compileJava_2/net/minecraft/server/packs/linkfs/LinkFSFileStore.class new file mode 100644 index 000000000..fcaf75994 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/server/packs/linkfs/LinkFSFileStore.class differ diff --git a/build/_compileJava_2/net/minecraft/server/packs/linkfs/LinkFSPath$1.class b/build/_compileJava_2/net/minecraft/server/packs/linkfs/LinkFSPath$1.class new file mode 100644 index 000000000..76de84883 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/server/packs/linkfs/LinkFSPath$1.class differ diff --git a/build/_compileJava_2/net/minecraft/server/packs/linkfs/LinkFSPath$2.class b/build/_compileJava_2/net/minecraft/server/packs/linkfs/LinkFSPath$2.class new file mode 100644 index 000000000..acc46fc12 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/server/packs/linkfs/LinkFSPath$2.class differ diff --git a/build/_compileJava_2/net/minecraft/server/packs/linkfs/LinkFSPath$3.class b/build/_compileJava_2/net/minecraft/server/packs/linkfs/LinkFSPath$3.class new file mode 100644 index 000000000..d76e4aabc Binary files /dev/null and b/build/_compileJava_2/net/minecraft/server/packs/linkfs/LinkFSPath$3.class differ diff --git a/build/_compileJava_2/net/minecraft/server/packs/linkfs/LinkFSPath.class b/build/_compileJava_2/net/minecraft/server/packs/linkfs/LinkFSPath.class new file mode 100644 index 000000000..cb2aaab97 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/server/packs/linkfs/LinkFSPath.class differ diff --git a/build/_compileJava_2/net/minecraft/server/packs/linkfs/LinkFSProvider$1.class b/build/_compileJava_2/net/minecraft/server/packs/linkfs/LinkFSProvider$1.class new file mode 100644 index 000000000..d99a899fa Binary files /dev/null and b/build/_compileJava_2/net/minecraft/server/packs/linkfs/LinkFSProvider$1.class differ diff --git a/build/_compileJava_2/net/minecraft/server/packs/linkfs/LinkFSProvider$2.class b/build/_compileJava_2/net/minecraft/server/packs/linkfs/LinkFSProvider$2.class new file mode 100644 index 000000000..af9e9e671 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/server/packs/linkfs/LinkFSProvider$2.class differ diff --git a/build/_compileJava_2/net/minecraft/server/packs/linkfs/LinkFSProvider.class b/build/_compileJava_2/net/minecraft/server/packs/linkfs/LinkFSProvider.class new file mode 100644 index 000000000..8dc8cb945 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/server/packs/linkfs/LinkFSProvider.class differ diff --git a/build/_compileJava_2/net/minecraft/server/packs/linkfs/LinkFileSystem$Builder.class b/build/_compileJava_2/net/minecraft/server/packs/linkfs/LinkFileSystem$Builder.class new file mode 100644 index 000000000..a00fd7731 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/server/packs/linkfs/LinkFileSystem$Builder.class differ diff --git a/build/_compileJava_2/net/minecraft/server/packs/linkfs/LinkFileSystem$DirectoryEntry.class b/build/_compileJava_2/net/minecraft/server/packs/linkfs/LinkFileSystem$DirectoryEntry.class new file mode 100644 index 000000000..0520cc255 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/server/packs/linkfs/LinkFileSystem$DirectoryEntry.class differ diff --git a/build/_compileJava_2/net/minecraft/server/packs/linkfs/LinkFileSystem.class b/build/_compileJava_2/net/minecraft/server/packs/linkfs/LinkFileSystem.class new file mode 100644 index 000000000..83c6e8a9c Binary files /dev/null and b/build/_compileJava_2/net/minecraft/server/packs/linkfs/LinkFileSystem.class differ diff --git a/build/_compileJava_2/net/minecraft/server/packs/linkfs/PathContents$1.class b/build/_compileJava_2/net/minecraft/server/packs/linkfs/PathContents$1.class new file mode 100644 index 000000000..91acacacc Binary files /dev/null and b/build/_compileJava_2/net/minecraft/server/packs/linkfs/PathContents$1.class differ diff --git a/build/_compileJava_2/net/minecraft/server/packs/linkfs/PathContents$2.class b/build/_compileJava_2/net/minecraft/server/packs/linkfs/PathContents$2.class new file mode 100644 index 000000000..5411fb329 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/server/packs/linkfs/PathContents$2.class differ diff --git a/build/_compileJava_2/net/minecraft/server/packs/linkfs/PathContents$DirectoryContents.class b/build/_compileJava_2/net/minecraft/server/packs/linkfs/PathContents$DirectoryContents.class new file mode 100644 index 000000000..f3329da27 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/server/packs/linkfs/PathContents$DirectoryContents.class differ diff --git a/build/_compileJava_2/net/minecraft/server/packs/linkfs/PathContents$FileContents.class b/build/_compileJava_2/net/minecraft/server/packs/linkfs/PathContents$FileContents.class new file mode 100644 index 000000000..34d02df3c Binary files /dev/null and b/build/_compileJava_2/net/minecraft/server/packs/linkfs/PathContents$FileContents.class differ diff --git a/build/_compileJava_2/net/minecraft/server/packs/linkfs/PathContents.class b/build/_compileJava_2/net/minecraft/server/packs/linkfs/PathContents.class new file mode 100644 index 000000000..05170d69e Binary files /dev/null and b/build/_compileJava_2/net/minecraft/server/packs/linkfs/PathContents.class differ diff --git a/build/_compileJava_2/net/minecraft/server/packs/linkfs/package-info.class b/build/_compileJava_2/net/minecraft/server/packs/linkfs/package-info.class new file mode 100644 index 000000000..26923b1ad Binary files /dev/null and b/build/_compileJava_2/net/minecraft/server/packs/linkfs/package-info.class differ diff --git a/build/_compileJava_2/net/minecraft/server/packs/metadata/MetadataSectionSerializer.class b/build/_compileJava_2/net/minecraft/server/packs/metadata/MetadataSectionSerializer.class new file mode 100644 index 000000000..8e9434938 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/server/packs/metadata/MetadataSectionSerializer.class differ diff --git a/build/_compileJava_2/net/minecraft/server/packs/metadata/MetadataSectionType$1.class b/build/_compileJava_2/net/minecraft/server/packs/metadata/MetadataSectionType$1.class new file mode 100644 index 000000000..cde07c97a Binary files /dev/null and b/build/_compileJava_2/net/minecraft/server/packs/metadata/MetadataSectionType$1.class differ diff --git a/build/_compileJava_2/net/minecraft/server/packs/metadata/MetadataSectionType.class b/build/_compileJava_2/net/minecraft/server/packs/metadata/MetadataSectionType.class new file mode 100644 index 000000000..2b2c31dd3 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/server/packs/metadata/MetadataSectionType.class differ diff --git a/build/_compileJava_2/net/minecraft/server/packs/metadata/pack/PackMetadataSection.class b/build/_compileJava_2/net/minecraft/server/packs/metadata/pack/PackMetadataSection.class new file mode 100644 index 000000000..a219afd0c Binary files /dev/null and b/build/_compileJava_2/net/minecraft/server/packs/metadata/pack/PackMetadataSection.class differ diff --git a/build/_compileJava_2/net/minecraft/server/packs/metadata/pack/PackMetadataSectionSerializer.class b/build/_compileJava_2/net/minecraft/server/packs/metadata/pack/PackMetadataSectionSerializer.class new file mode 100644 index 000000000..f9b9eae75 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/server/packs/metadata/pack/PackMetadataSectionSerializer.class differ diff --git a/build/_compileJava_2/net/minecraft/server/packs/metadata/pack/package-info.class b/build/_compileJava_2/net/minecraft/server/packs/metadata/pack/package-info.class new file mode 100644 index 000000000..83619843b Binary files /dev/null and b/build/_compileJava_2/net/minecraft/server/packs/metadata/pack/package-info.class differ diff --git a/build/_compileJava_2/net/minecraft/server/packs/metadata/package-info.class b/build/_compileJava_2/net/minecraft/server/packs/metadata/package-info.class new file mode 100644 index 000000000..a1a07fefa Binary files /dev/null and b/build/_compileJava_2/net/minecraft/server/packs/metadata/package-info.class differ diff --git a/build/_compileJava_2/net/minecraft/server/packs/package-info.class b/build/_compileJava_2/net/minecraft/server/packs/package-info.class new file mode 100644 index 000000000..fc9e061cf Binary files /dev/null and b/build/_compileJava_2/net/minecraft/server/packs/package-info.class differ diff --git a/build/_compileJava_2/net/minecraft/server/packs/repository/BuiltInPackSource.class b/build/_compileJava_2/net/minecraft/server/packs/repository/BuiltInPackSource.class new file mode 100644 index 000000000..6884d33aa Binary files /dev/null and b/build/_compileJava_2/net/minecraft/server/packs/repository/BuiltInPackSource.class differ diff --git a/build/_compileJava_2/net/minecraft/server/packs/repository/FolderRepositorySource.class b/build/_compileJava_2/net/minecraft/server/packs/repository/FolderRepositorySource.class new file mode 100644 index 000000000..5950bcdcc Binary files /dev/null and b/build/_compileJava_2/net/minecraft/server/packs/repository/FolderRepositorySource.class differ diff --git a/build/_compileJava_2/net/minecraft/server/packs/repository/Pack$Info.class b/build/_compileJava_2/net/minecraft/server/packs/repository/Pack$Info.class new file mode 100644 index 000000000..ecd0ba82a Binary files /dev/null and b/build/_compileJava_2/net/minecraft/server/packs/repository/Pack$Info.class differ diff --git a/build/_compileJava_2/net/minecraft/server/packs/repository/Pack$Position.class b/build/_compileJava_2/net/minecraft/server/packs/repository/Pack$Position.class new file mode 100644 index 000000000..8d0809d47 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/server/packs/repository/Pack$Position.class differ diff --git a/build/_compileJava_2/net/minecraft/server/packs/repository/Pack$ResourcesSupplier.class b/build/_compileJava_2/net/minecraft/server/packs/repository/Pack$ResourcesSupplier.class new file mode 100644 index 000000000..4bc73d065 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/server/packs/repository/Pack$ResourcesSupplier.class differ diff --git a/build/_compileJava_2/net/minecraft/server/packs/repository/Pack.class b/build/_compileJava_2/net/minecraft/server/packs/repository/Pack.class new file mode 100644 index 000000000..e1fc15d0e Binary files /dev/null and b/build/_compileJava_2/net/minecraft/server/packs/repository/Pack.class differ diff --git a/build/_compileJava_2/net/minecraft/server/packs/repository/PackCompatibility.class b/build/_compileJava_2/net/minecraft/server/packs/repository/PackCompatibility.class new file mode 100644 index 000000000..be7e7dd4c Binary files /dev/null and b/build/_compileJava_2/net/minecraft/server/packs/repository/PackCompatibility.class differ diff --git a/build/_compileJava_2/net/minecraft/server/packs/repository/PackRepository.class b/build/_compileJava_2/net/minecraft/server/packs/repository/PackRepository.class new file mode 100644 index 000000000..f5413631b Binary files /dev/null and b/build/_compileJava_2/net/minecraft/server/packs/repository/PackRepository.class differ diff --git a/build/_compileJava_2/net/minecraft/server/packs/repository/PackSource$1.class b/build/_compileJava_2/net/minecraft/server/packs/repository/PackSource$1.class new file mode 100644 index 000000000..97b1dc180 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/server/packs/repository/PackSource$1.class differ diff --git a/build/_compileJava_2/net/minecraft/server/packs/repository/PackSource.class b/build/_compileJava_2/net/minecraft/server/packs/repository/PackSource.class new file mode 100644 index 000000000..2f006ece9 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/server/packs/repository/PackSource.class differ diff --git a/build/_compileJava_2/net/minecraft/server/packs/repository/RepositorySource.class b/build/_compileJava_2/net/minecraft/server/packs/repository/RepositorySource.class new file mode 100644 index 000000000..2caa4f95a Binary files /dev/null and b/build/_compileJava_2/net/minecraft/server/packs/repository/RepositorySource.class differ diff --git a/build/_compileJava_2/net/minecraft/server/packs/repository/ServerPacksSource.class b/build/_compileJava_2/net/minecraft/server/packs/repository/ServerPacksSource.class new file mode 100644 index 000000000..bb0176d0c Binary files /dev/null and b/build/_compileJava_2/net/minecraft/server/packs/repository/ServerPacksSource.class differ diff --git a/build/_compileJava_2/net/minecraft/server/packs/repository/package-info.class b/build/_compileJava_2/net/minecraft/server/packs/repository/package-info.class new file mode 100644 index 000000000..e93fa1bad Binary files /dev/null and b/build/_compileJava_2/net/minecraft/server/packs/repository/package-info.class differ diff --git a/build/_compileJava_2/net/minecraft/server/packs/resources/CloseableResourceManager.class b/build/_compileJava_2/net/minecraft/server/packs/resources/CloseableResourceManager.class new file mode 100644 index 000000000..a3527dd32 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/server/packs/resources/CloseableResourceManager.class differ diff --git a/build/_compileJava_2/net/minecraft/server/packs/resources/FallbackResourceManager$1ResourceWithSourceAndIndex.class b/build/_compileJava_2/net/minecraft/server/packs/resources/FallbackResourceManager$1ResourceWithSourceAndIndex.class new file mode 100644 index 000000000..6dff8d456 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/server/packs/resources/FallbackResourceManager$1ResourceWithSourceAndIndex.class differ diff --git a/build/_compileJava_2/net/minecraft/server/packs/resources/FallbackResourceManager$EntryStack.class b/build/_compileJava_2/net/minecraft/server/packs/resources/FallbackResourceManager$EntryStack.class new file mode 100644 index 000000000..05cad17e9 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/server/packs/resources/FallbackResourceManager$EntryStack.class differ diff --git a/build/_compileJava_2/net/minecraft/server/packs/resources/FallbackResourceManager$LeakedResourceWarningInputStream.class b/build/_compileJava_2/net/minecraft/server/packs/resources/FallbackResourceManager$LeakedResourceWarningInputStream.class new file mode 100644 index 000000000..24ad93120 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/server/packs/resources/FallbackResourceManager$LeakedResourceWarningInputStream.class differ diff --git a/build/_compileJava_2/net/minecraft/server/packs/resources/FallbackResourceManager$PackEntry.class b/build/_compileJava_2/net/minecraft/server/packs/resources/FallbackResourceManager$PackEntry.class new file mode 100644 index 000000000..1021d2a87 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/server/packs/resources/FallbackResourceManager$PackEntry.class differ diff --git a/build/_compileJava_2/net/minecraft/server/packs/resources/FallbackResourceManager$ResourceWithSource.class b/build/_compileJava_2/net/minecraft/server/packs/resources/FallbackResourceManager$ResourceWithSource.class new file mode 100644 index 000000000..3bfc5eef4 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/server/packs/resources/FallbackResourceManager$ResourceWithSource.class differ diff --git a/build/_compileJava_2/net/minecraft/server/packs/resources/FallbackResourceManager.class b/build/_compileJava_2/net/minecraft/server/packs/resources/FallbackResourceManager.class new file mode 100644 index 000000000..9b28b6a04 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/server/packs/resources/FallbackResourceManager.class differ diff --git a/build/_compileJava_2/net/minecraft/server/packs/resources/IoSupplier.class b/build/_compileJava_2/net/minecraft/server/packs/resources/IoSupplier.class new file mode 100644 index 000000000..5b27599b0 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/server/packs/resources/IoSupplier.class differ diff --git a/build/_compileJava_2/net/minecraft/server/packs/resources/MultiPackResourceManager.class b/build/_compileJava_2/net/minecraft/server/packs/resources/MultiPackResourceManager.class new file mode 100644 index 000000000..a1aae7c4d Binary files /dev/null and b/build/_compileJava_2/net/minecraft/server/packs/resources/MultiPackResourceManager.class differ diff --git a/build/_compileJava_2/net/minecraft/server/packs/resources/PreparableReloadListener$PreparationBarrier.class b/build/_compileJava_2/net/minecraft/server/packs/resources/PreparableReloadListener$PreparationBarrier.class new file mode 100644 index 000000000..9108acf89 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/server/packs/resources/PreparableReloadListener$PreparationBarrier.class differ diff --git a/build/_compileJava_2/net/minecraft/server/packs/resources/PreparableReloadListener.class b/build/_compileJava_2/net/minecraft/server/packs/resources/PreparableReloadListener.class new file mode 100644 index 000000000..e9931dace Binary files /dev/null and b/build/_compileJava_2/net/minecraft/server/packs/resources/PreparableReloadListener.class differ diff --git a/build/_compileJava_2/net/minecraft/server/packs/resources/ProfiledReloadInstance$State.class b/build/_compileJava_2/net/minecraft/server/packs/resources/ProfiledReloadInstance$State.class new file mode 100644 index 000000000..3544554a8 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/server/packs/resources/ProfiledReloadInstance$State.class differ diff --git a/build/_compileJava_2/net/minecraft/server/packs/resources/ProfiledReloadInstance.class b/build/_compileJava_2/net/minecraft/server/packs/resources/ProfiledReloadInstance.class new file mode 100644 index 000000000..c4a41584a Binary files /dev/null and b/build/_compileJava_2/net/minecraft/server/packs/resources/ProfiledReloadInstance.class differ diff --git a/build/_compileJava_2/net/minecraft/server/packs/resources/ReloadInstance.class b/build/_compileJava_2/net/minecraft/server/packs/resources/ReloadInstance.class new file mode 100644 index 000000000..249eea991 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/server/packs/resources/ReloadInstance.class differ diff --git a/build/_compileJava_2/net/minecraft/server/packs/resources/ReloadableResourceManager.class b/build/_compileJava_2/net/minecraft/server/packs/resources/ReloadableResourceManager.class new file mode 100644 index 000000000..e55fc869d Binary files /dev/null and b/build/_compileJava_2/net/minecraft/server/packs/resources/ReloadableResourceManager.class differ diff --git a/build/_compileJava_2/net/minecraft/server/packs/resources/Resource.class b/build/_compileJava_2/net/minecraft/server/packs/resources/Resource.class new file mode 100644 index 000000000..a5ab8814a Binary files /dev/null and b/build/_compileJava_2/net/minecraft/server/packs/resources/Resource.class differ diff --git a/build/_compileJava_2/net/minecraft/server/packs/resources/ResourceFilterSection.class b/build/_compileJava_2/net/minecraft/server/packs/resources/ResourceFilterSection.class new file mode 100644 index 000000000..922fca053 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/server/packs/resources/ResourceFilterSection.class differ diff --git a/build/_compileJava_2/net/minecraft/server/packs/resources/ResourceManager$Empty.class b/build/_compileJava_2/net/minecraft/server/packs/resources/ResourceManager$Empty.class new file mode 100644 index 000000000..328b13414 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/server/packs/resources/ResourceManager$Empty.class differ diff --git a/build/_compileJava_2/net/minecraft/server/packs/resources/ResourceManager.class b/build/_compileJava_2/net/minecraft/server/packs/resources/ResourceManager.class new file mode 100644 index 000000000..9567009ef Binary files /dev/null and b/build/_compileJava_2/net/minecraft/server/packs/resources/ResourceManager.class differ diff --git a/build/_compileJava_2/net/minecraft/server/packs/resources/ResourceManagerReloadListener.class b/build/_compileJava_2/net/minecraft/server/packs/resources/ResourceManagerReloadListener.class new file mode 100644 index 000000000..c68187b62 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/server/packs/resources/ResourceManagerReloadListener.class differ diff --git a/build/_compileJava_2/net/minecraft/server/packs/resources/ResourceMetadata$1.class b/build/_compileJava_2/net/minecraft/server/packs/resources/ResourceMetadata$1.class new file mode 100644 index 000000000..ba273ed37 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/server/packs/resources/ResourceMetadata$1.class differ diff --git a/build/_compileJava_2/net/minecraft/server/packs/resources/ResourceMetadata$2.class b/build/_compileJava_2/net/minecraft/server/packs/resources/ResourceMetadata$2.class new file mode 100644 index 000000000..62e65b870 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/server/packs/resources/ResourceMetadata$2.class differ diff --git a/build/_compileJava_2/net/minecraft/server/packs/resources/ResourceMetadata.class b/build/_compileJava_2/net/minecraft/server/packs/resources/ResourceMetadata.class new file mode 100644 index 000000000..9ece3250e Binary files /dev/null and b/build/_compileJava_2/net/minecraft/server/packs/resources/ResourceMetadata.class differ diff --git a/build/_compileJava_2/net/minecraft/server/packs/resources/ResourceProvider.class b/build/_compileJava_2/net/minecraft/server/packs/resources/ResourceProvider.class new file mode 100644 index 000000000..2f8bee82b Binary files /dev/null and b/build/_compileJava_2/net/minecraft/server/packs/resources/ResourceProvider.class differ diff --git a/build/_compileJava_2/net/minecraft/server/packs/resources/SimpleJsonResourceReloadListener.class b/build/_compileJava_2/net/minecraft/server/packs/resources/SimpleJsonResourceReloadListener.class new file mode 100644 index 000000000..7b5ec2db7 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/server/packs/resources/SimpleJsonResourceReloadListener.class differ diff --git a/build/_compileJava_2/net/minecraft/server/packs/resources/SimplePreparableReloadListener.class b/build/_compileJava_2/net/minecraft/server/packs/resources/SimplePreparableReloadListener.class new file mode 100644 index 000000000..b7a87b96b Binary files /dev/null and b/build/_compileJava_2/net/minecraft/server/packs/resources/SimplePreparableReloadListener.class differ diff --git a/build/_compileJava_2/net/minecraft/server/packs/resources/SimpleReloadInstance$1.class b/build/_compileJava_2/net/minecraft/server/packs/resources/SimpleReloadInstance$1.class new file mode 100644 index 000000000..adf9a0d62 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/server/packs/resources/SimpleReloadInstance$1.class differ diff --git a/build/_compileJava_2/net/minecraft/server/packs/resources/SimpleReloadInstance$StateFactory.class b/build/_compileJava_2/net/minecraft/server/packs/resources/SimpleReloadInstance$StateFactory.class new file mode 100644 index 000000000..b09fc367d Binary files /dev/null and b/build/_compileJava_2/net/minecraft/server/packs/resources/SimpleReloadInstance$StateFactory.class differ diff --git a/build/_compileJava_2/net/minecraft/server/packs/resources/SimpleReloadInstance.class b/build/_compileJava_2/net/minecraft/server/packs/resources/SimpleReloadInstance.class new file mode 100644 index 000000000..c732e8c11 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/server/packs/resources/SimpleReloadInstance.class differ diff --git a/build/_compileJava_2/net/minecraft/server/packs/resources/package-info.class b/build/_compileJava_2/net/minecraft/server/packs/resources/package-info.class new file mode 100644 index 000000000..9408ccc3a Binary files /dev/null and b/build/_compileJava_2/net/minecraft/server/packs/resources/package-info.class differ diff --git a/build/_compileJava_2/net/minecraft/server/players/BanListEntry.class b/build/_compileJava_2/net/minecraft/server/players/BanListEntry.class new file mode 100644 index 000000000..cb5122c3c Binary files /dev/null and b/build/_compileJava_2/net/minecraft/server/players/BanListEntry.class differ diff --git a/build/_compileJava_2/net/minecraft/server/players/GameProfileCache$1.class b/build/_compileJava_2/net/minecraft/server/players/GameProfileCache$1.class new file mode 100644 index 000000000..53574e8df Binary files /dev/null and b/build/_compileJava_2/net/minecraft/server/players/GameProfileCache$1.class differ diff --git a/build/_compileJava_2/net/minecraft/server/players/GameProfileCache$GameProfileInfo.class b/build/_compileJava_2/net/minecraft/server/players/GameProfileCache$GameProfileInfo.class new file mode 100644 index 000000000..6e6eb325f Binary files /dev/null and b/build/_compileJava_2/net/minecraft/server/players/GameProfileCache$GameProfileInfo.class differ diff --git a/build/_compileJava_2/net/minecraft/server/players/GameProfileCache.class b/build/_compileJava_2/net/minecraft/server/players/GameProfileCache.class new file mode 100644 index 000000000..8aeb61476 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/server/players/GameProfileCache.class differ diff --git a/build/_compileJava_2/net/minecraft/server/players/IpBanList.class b/build/_compileJava_2/net/minecraft/server/players/IpBanList.class new file mode 100644 index 000000000..db4fe65da Binary files /dev/null and b/build/_compileJava_2/net/minecraft/server/players/IpBanList.class differ diff --git a/build/_compileJava_2/net/minecraft/server/players/IpBanListEntry.class b/build/_compileJava_2/net/minecraft/server/players/IpBanListEntry.class new file mode 100644 index 000000000..094d35e6a Binary files /dev/null and b/build/_compileJava_2/net/minecraft/server/players/IpBanListEntry.class differ diff --git a/build/_compileJava_2/net/minecraft/server/players/OldUsersConverter$1.class b/build/_compileJava_2/net/minecraft/server/players/OldUsersConverter$1.class new file mode 100644 index 000000000..2f273634b Binary files /dev/null and b/build/_compileJava_2/net/minecraft/server/players/OldUsersConverter$1.class differ diff --git a/build/_compileJava_2/net/minecraft/server/players/OldUsersConverter$2.class b/build/_compileJava_2/net/minecraft/server/players/OldUsersConverter$2.class new file mode 100644 index 000000000..50d992d1e Binary files /dev/null and b/build/_compileJava_2/net/minecraft/server/players/OldUsersConverter$2.class differ diff --git a/build/_compileJava_2/net/minecraft/server/players/OldUsersConverter$3.class b/build/_compileJava_2/net/minecraft/server/players/OldUsersConverter$3.class new file mode 100644 index 000000000..681da8717 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/server/players/OldUsersConverter$3.class differ diff --git a/build/_compileJava_2/net/minecraft/server/players/OldUsersConverter$4.class b/build/_compileJava_2/net/minecraft/server/players/OldUsersConverter$4.class new file mode 100644 index 000000000..d3bdc465e Binary files /dev/null and b/build/_compileJava_2/net/minecraft/server/players/OldUsersConverter$4.class differ diff --git a/build/_compileJava_2/net/minecraft/server/players/OldUsersConverter$5.class b/build/_compileJava_2/net/minecraft/server/players/OldUsersConverter$5.class new file mode 100644 index 000000000..2b2502f7d Binary files /dev/null and b/build/_compileJava_2/net/minecraft/server/players/OldUsersConverter$5.class differ diff --git a/build/_compileJava_2/net/minecraft/server/players/OldUsersConverter$ConversionError.class b/build/_compileJava_2/net/minecraft/server/players/OldUsersConverter$ConversionError.class new file mode 100644 index 000000000..582c9ea10 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/server/players/OldUsersConverter$ConversionError.class differ diff --git a/build/_compileJava_2/net/minecraft/server/players/OldUsersConverter.class b/build/_compileJava_2/net/minecraft/server/players/OldUsersConverter.class new file mode 100644 index 000000000..b058f03ac Binary files /dev/null and b/build/_compileJava_2/net/minecraft/server/players/OldUsersConverter.class differ diff --git a/build/_compileJava_2/net/minecraft/server/players/PlayerList$1.class b/build/_compileJava_2/net/minecraft/server/players/PlayerList$1.class new file mode 100644 index 000000000..8f1046d2c Binary files /dev/null and b/build/_compileJava_2/net/minecraft/server/players/PlayerList$1.class differ diff --git a/build/_compileJava_2/net/minecraft/server/players/PlayerList.class b/build/_compileJava_2/net/minecraft/server/players/PlayerList.class new file mode 100644 index 000000000..e84aeae80 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/server/players/PlayerList.class differ diff --git a/build/_compileJava_2/net/minecraft/server/players/ServerOpList.class b/build/_compileJava_2/net/minecraft/server/players/ServerOpList.class new file mode 100644 index 000000000..3a6aef1d8 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/server/players/ServerOpList.class differ diff --git a/build/_compileJava_2/net/minecraft/server/players/ServerOpListEntry.class b/build/_compileJava_2/net/minecraft/server/players/ServerOpListEntry.class new file mode 100644 index 000000000..de00f9444 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/server/players/ServerOpListEntry.class differ diff --git a/build/_compileJava_2/net/minecraft/server/players/SleepStatus.class b/build/_compileJava_2/net/minecraft/server/players/SleepStatus.class new file mode 100644 index 000000000..1f0aac459 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/server/players/SleepStatus.class differ diff --git a/build/_compileJava_2/net/minecraft/server/players/StoredUserEntry.class b/build/_compileJava_2/net/minecraft/server/players/StoredUserEntry.class new file mode 100644 index 000000000..a8905517c Binary files /dev/null and b/build/_compileJava_2/net/minecraft/server/players/StoredUserEntry.class differ diff --git a/build/_compileJava_2/net/minecraft/server/players/StoredUserList.class b/build/_compileJava_2/net/minecraft/server/players/StoredUserList.class new file mode 100644 index 000000000..99fbf1304 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/server/players/StoredUserList.class differ diff --git a/build/_compileJava_2/net/minecraft/server/players/UserBanList.class b/build/_compileJava_2/net/minecraft/server/players/UserBanList.class new file mode 100644 index 000000000..3e31cbe57 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/server/players/UserBanList.class differ diff --git a/build/_compileJava_2/net/minecraft/server/players/UserBanListEntry.class b/build/_compileJava_2/net/minecraft/server/players/UserBanListEntry.class new file mode 100644 index 000000000..d3a5e893d Binary files /dev/null and b/build/_compileJava_2/net/minecraft/server/players/UserBanListEntry.class differ diff --git a/build/_compileJava_2/net/minecraft/server/players/UserWhiteList.class b/build/_compileJava_2/net/minecraft/server/players/UserWhiteList.class new file mode 100644 index 000000000..3f047fe27 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/server/players/UserWhiteList.class differ diff --git a/build/_compileJava_2/net/minecraft/server/players/UserWhiteListEntry.class b/build/_compileJava_2/net/minecraft/server/players/UserWhiteListEntry.class new file mode 100644 index 000000000..1b3c96738 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/server/players/UserWhiteListEntry.class differ diff --git a/build/_compileJava_2/net/minecraft/server/players/package-info.class b/build/_compileJava_2/net/minecraft/server/players/package-info.class new file mode 100644 index 000000000..fd7bf2008 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/server/players/package-info.class differ diff --git a/build/_compileJava_2/net/minecraft/server/rcon/NetworkDataOutputStream.class b/build/_compileJava_2/net/minecraft/server/rcon/NetworkDataOutputStream.class new file mode 100644 index 000000000..9706c6264 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/server/rcon/NetworkDataOutputStream.class differ diff --git a/build/_compileJava_2/net/minecraft/server/rcon/PktUtils.class b/build/_compileJava_2/net/minecraft/server/rcon/PktUtils.class new file mode 100644 index 000000000..b8e33ea95 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/server/rcon/PktUtils.class differ diff --git a/build/_compileJava_2/net/minecraft/server/rcon/RconConsoleSource.class b/build/_compileJava_2/net/minecraft/server/rcon/RconConsoleSource.class new file mode 100644 index 000000000..1643135e0 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/server/rcon/RconConsoleSource.class differ diff --git a/build/_compileJava_2/net/minecraft/server/rcon/package-info.class b/build/_compileJava_2/net/minecraft/server/rcon/package-info.class new file mode 100644 index 000000000..7ee48bbb1 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/server/rcon/package-info.class differ diff --git a/build/_compileJava_2/net/minecraft/server/rcon/thread/GenericThread.class b/build/_compileJava_2/net/minecraft/server/rcon/thread/GenericThread.class new file mode 100644 index 000000000..e6d9216e9 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/server/rcon/thread/GenericThread.class differ diff --git a/build/_compileJava_2/net/minecraft/server/rcon/thread/QueryThreadGs4$RequestChallenge.class b/build/_compileJava_2/net/minecraft/server/rcon/thread/QueryThreadGs4$RequestChallenge.class new file mode 100644 index 000000000..342e1ebdb Binary files /dev/null and b/build/_compileJava_2/net/minecraft/server/rcon/thread/QueryThreadGs4$RequestChallenge.class differ diff --git a/build/_compileJava_2/net/minecraft/server/rcon/thread/QueryThreadGs4.class b/build/_compileJava_2/net/minecraft/server/rcon/thread/QueryThreadGs4.class new file mode 100644 index 000000000..2a7f17365 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/server/rcon/thread/QueryThreadGs4.class differ diff --git a/build/_compileJava_2/net/minecraft/server/rcon/thread/RconClient.class b/build/_compileJava_2/net/minecraft/server/rcon/thread/RconClient.class new file mode 100644 index 000000000..465a32525 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/server/rcon/thread/RconClient.class differ diff --git a/build/_compileJava_2/net/minecraft/server/rcon/thread/RconThread.class b/build/_compileJava_2/net/minecraft/server/rcon/thread/RconThread.class new file mode 100644 index 000000000..e800b1b14 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/server/rcon/thread/RconThread.class differ diff --git a/build/_compileJava_2/net/minecraft/server/rcon/thread/package-info.class b/build/_compileJava_2/net/minecraft/server/rcon/thread/package-info.class new file mode 100644 index 000000000..847da9a55 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/server/rcon/thread/package-info.class differ diff --git a/build/_compileJava_2/net/minecraft/sounds/Music.class b/build/_compileJava_2/net/minecraft/sounds/Music.class new file mode 100644 index 000000000..6edade2af Binary files /dev/null and b/build/_compileJava_2/net/minecraft/sounds/Music.class differ diff --git a/build/_compileJava_2/net/minecraft/sounds/Musics.class b/build/_compileJava_2/net/minecraft/sounds/Musics.class new file mode 100644 index 000000000..ab0e74f7a Binary files /dev/null and b/build/_compileJava_2/net/minecraft/sounds/Musics.class differ diff --git a/build/_compileJava_2/net/minecraft/sounds/SoundEvent.class b/build/_compileJava_2/net/minecraft/sounds/SoundEvent.class new file mode 100644 index 000000000..0a1bd811f Binary files /dev/null and b/build/_compileJava_2/net/minecraft/sounds/SoundEvent.class differ diff --git a/build/_compileJava_2/net/minecraft/sounds/SoundEvents.class b/build/_compileJava_2/net/minecraft/sounds/SoundEvents.class new file mode 100644 index 000000000..e8b22ef47 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/sounds/SoundEvents.class differ diff --git a/build/_compileJava_2/net/minecraft/sounds/SoundSource.class b/build/_compileJava_2/net/minecraft/sounds/SoundSource.class new file mode 100644 index 000000000..1dcf05bb4 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/sounds/SoundSource.class differ diff --git a/build/_compileJava_2/net/minecraft/sounds/package-info.class b/build/_compileJava_2/net/minecraft/sounds/package-info.class new file mode 100644 index 000000000..6cc17e80b Binary files /dev/null and b/build/_compileJava_2/net/minecraft/sounds/package-info.class differ diff --git a/build/_compileJava_2/net/minecraft/stats/RecipeBook.class b/build/_compileJava_2/net/minecraft/stats/RecipeBook.class new file mode 100644 index 000000000..4563dee37 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/stats/RecipeBook.class differ diff --git a/build/_compileJava_2/net/minecraft/stats/RecipeBookSettings$TypeSettings.class b/build/_compileJava_2/net/minecraft/stats/RecipeBookSettings$TypeSettings.class new file mode 100644 index 000000000..281175ef7 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/stats/RecipeBookSettings$TypeSettings.class differ diff --git a/build/_compileJava_2/net/minecraft/stats/RecipeBookSettings.class b/build/_compileJava_2/net/minecraft/stats/RecipeBookSettings.class new file mode 100644 index 000000000..105d80e16 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/stats/RecipeBookSettings.class differ diff --git a/build/_compileJava_2/net/minecraft/stats/ServerRecipeBook.class b/build/_compileJava_2/net/minecraft/stats/ServerRecipeBook.class new file mode 100644 index 000000000..6368f58cb Binary files /dev/null and b/build/_compileJava_2/net/minecraft/stats/ServerRecipeBook.class differ diff --git a/build/_compileJava_2/net/minecraft/stats/ServerStatsCounter.class b/build/_compileJava_2/net/minecraft/stats/ServerStatsCounter.class new file mode 100644 index 000000000..b45f098fc Binary files /dev/null and b/build/_compileJava_2/net/minecraft/stats/ServerStatsCounter.class differ diff --git a/build/_compileJava_2/net/minecraft/stats/Stat.class b/build/_compileJava_2/net/minecraft/stats/Stat.class new file mode 100644 index 000000000..cd79f2e27 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/stats/Stat.class differ diff --git a/build/_compileJava_2/net/minecraft/stats/StatFormatter.class b/build/_compileJava_2/net/minecraft/stats/StatFormatter.class new file mode 100644 index 000000000..81211e2a2 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/stats/StatFormatter.class differ diff --git a/build/_compileJava_2/net/minecraft/stats/StatType.class b/build/_compileJava_2/net/minecraft/stats/StatType.class new file mode 100644 index 000000000..65febb0fd Binary files /dev/null and b/build/_compileJava_2/net/minecraft/stats/StatType.class differ diff --git a/build/_compileJava_2/net/minecraft/stats/Stats.class b/build/_compileJava_2/net/minecraft/stats/Stats.class new file mode 100644 index 000000000..acbd12891 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/stats/Stats.class differ diff --git a/build/_compileJava_2/net/minecraft/stats/StatsCounter.class b/build/_compileJava_2/net/minecraft/stats/StatsCounter.class new file mode 100644 index 000000000..30bfcdf7c Binary files /dev/null and b/build/_compileJava_2/net/minecraft/stats/StatsCounter.class differ diff --git a/build/_compileJava_2/net/minecraft/stats/package-info.class b/build/_compileJava_2/net/minecraft/stats/package-info.class new file mode 100644 index 000000000..f11ac7ad5 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/stats/package-info.class differ diff --git a/build/_compileJava_2/net/minecraft/tags/BannerPatternTags.class b/build/_compileJava_2/net/minecraft/tags/BannerPatternTags.class new file mode 100644 index 000000000..c56d5614f Binary files /dev/null and b/build/_compileJava_2/net/minecraft/tags/BannerPatternTags.class differ diff --git a/build/_compileJava_2/net/minecraft/tags/BiomeTags.class b/build/_compileJava_2/net/minecraft/tags/BiomeTags.class new file mode 100644 index 000000000..b257cd9e7 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/tags/BiomeTags.class differ diff --git a/build/_compileJava_2/net/minecraft/tags/BlockTags.class b/build/_compileJava_2/net/minecraft/tags/BlockTags.class new file mode 100644 index 000000000..00559a697 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/tags/BlockTags.class differ diff --git a/build/_compileJava_2/net/minecraft/tags/CatVariantTags.class b/build/_compileJava_2/net/minecraft/tags/CatVariantTags.class new file mode 100644 index 000000000..0473bb082 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/tags/CatVariantTags.class differ diff --git a/build/_compileJava_2/net/minecraft/tags/DamageTypeTags.class b/build/_compileJava_2/net/minecraft/tags/DamageTypeTags.class new file mode 100644 index 000000000..914c155b3 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/tags/DamageTypeTags.class differ diff --git a/build/_compileJava_2/net/minecraft/tags/EntityTypeTags.class b/build/_compileJava_2/net/minecraft/tags/EntityTypeTags.class new file mode 100644 index 000000000..a235d3730 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/tags/EntityTypeTags.class differ diff --git a/build/_compileJava_2/net/minecraft/tags/FlatLevelGeneratorPresetTags.class b/build/_compileJava_2/net/minecraft/tags/FlatLevelGeneratorPresetTags.class new file mode 100644 index 000000000..d7fc1a835 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/tags/FlatLevelGeneratorPresetTags.class differ diff --git a/build/_compileJava_2/net/minecraft/tags/FluidTags.class b/build/_compileJava_2/net/minecraft/tags/FluidTags.class new file mode 100644 index 000000000..fb18111b3 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/tags/FluidTags.class differ diff --git a/build/_compileJava_2/net/minecraft/tags/GameEventTags.class b/build/_compileJava_2/net/minecraft/tags/GameEventTags.class new file mode 100644 index 000000000..57b653513 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/tags/GameEventTags.class differ diff --git a/build/_compileJava_2/net/minecraft/tags/InstrumentTags.class b/build/_compileJava_2/net/minecraft/tags/InstrumentTags.class new file mode 100644 index 000000000..c7cfd59a8 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/tags/InstrumentTags.class differ diff --git a/build/_compileJava_2/net/minecraft/tags/ItemTags.class b/build/_compileJava_2/net/minecraft/tags/ItemTags.class new file mode 100644 index 000000000..72c0d8eff Binary files /dev/null and b/build/_compileJava_2/net/minecraft/tags/ItemTags.class differ diff --git a/build/_compileJava_2/net/minecraft/tags/PaintingVariantTags.class b/build/_compileJava_2/net/minecraft/tags/PaintingVariantTags.class new file mode 100644 index 000000000..275556b07 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/tags/PaintingVariantTags.class differ diff --git a/build/_compileJava_2/net/minecraft/tags/PoiTypeTags.class b/build/_compileJava_2/net/minecraft/tags/PoiTypeTags.class new file mode 100644 index 000000000..597487cee Binary files /dev/null and b/build/_compileJava_2/net/minecraft/tags/PoiTypeTags.class differ diff --git a/build/_compileJava_2/net/minecraft/tags/StructureTags.class b/build/_compileJava_2/net/minecraft/tags/StructureTags.class new file mode 100644 index 000000000..8dc312dcc Binary files /dev/null and b/build/_compileJava_2/net/minecraft/tags/StructureTags.class differ diff --git a/build/_compileJava_2/net/minecraft/tags/TagBuilder.class b/build/_compileJava_2/net/minecraft/tags/TagBuilder.class new file mode 100644 index 000000000..f731f66f9 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/tags/TagBuilder.class differ diff --git a/build/_compileJava_2/net/minecraft/tags/TagEntry$Lookup.class b/build/_compileJava_2/net/minecraft/tags/TagEntry$Lookup.class new file mode 100644 index 000000000..6a4f1cbcc Binary files /dev/null and b/build/_compileJava_2/net/minecraft/tags/TagEntry$Lookup.class differ diff --git a/build/_compileJava_2/net/minecraft/tags/TagEntry.class b/build/_compileJava_2/net/minecraft/tags/TagEntry.class new file mode 100644 index 000000000..1d6abaac1 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/tags/TagEntry.class differ diff --git a/build/_compileJava_2/net/minecraft/tags/TagFile.class b/build/_compileJava_2/net/minecraft/tags/TagFile.class new file mode 100644 index 000000000..fdbc349c1 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/tags/TagFile.class differ diff --git a/build/_compileJava_2/net/minecraft/tags/TagKey.class b/build/_compileJava_2/net/minecraft/tags/TagKey.class new file mode 100644 index 000000000..5dd819d1f Binary files /dev/null and b/build/_compileJava_2/net/minecraft/tags/TagKey.class differ diff --git a/build/_compileJava_2/net/minecraft/tags/TagLoader$1.class b/build/_compileJava_2/net/minecraft/tags/TagLoader$1.class new file mode 100644 index 000000000..725087a29 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/tags/TagLoader$1.class differ diff --git a/build/_compileJava_2/net/minecraft/tags/TagLoader$EntryWithSource.class b/build/_compileJava_2/net/minecraft/tags/TagLoader$EntryWithSource.class new file mode 100644 index 000000000..b3bb41c62 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/tags/TagLoader$EntryWithSource.class differ diff --git a/build/_compileJava_2/net/minecraft/tags/TagLoader$SortingEntry.class b/build/_compileJava_2/net/minecraft/tags/TagLoader$SortingEntry.class new file mode 100644 index 000000000..277561e57 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/tags/TagLoader$SortingEntry.class differ diff --git a/build/_compileJava_2/net/minecraft/tags/TagLoader.class b/build/_compileJava_2/net/minecraft/tags/TagLoader.class new file mode 100644 index 000000000..afe8d4c14 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/tags/TagLoader.class differ diff --git a/build/_compileJava_2/net/minecraft/tags/TagManager$LoadResult.class b/build/_compileJava_2/net/minecraft/tags/TagManager$LoadResult.class new file mode 100644 index 000000000..433f68d02 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/tags/TagManager$LoadResult.class differ diff --git a/build/_compileJava_2/net/minecraft/tags/TagManager.class b/build/_compileJava_2/net/minecraft/tags/TagManager.class new file mode 100644 index 000000000..ec3399487 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/tags/TagManager.class differ diff --git a/build/_compileJava_2/net/minecraft/tags/TagNetworkSerialization$NetworkPayload.class b/build/_compileJava_2/net/minecraft/tags/TagNetworkSerialization$NetworkPayload.class new file mode 100644 index 000000000..63e13895c Binary files /dev/null and b/build/_compileJava_2/net/minecraft/tags/TagNetworkSerialization$NetworkPayload.class differ diff --git a/build/_compileJava_2/net/minecraft/tags/TagNetworkSerialization$TagOutput.class b/build/_compileJava_2/net/minecraft/tags/TagNetworkSerialization$TagOutput.class new file mode 100644 index 000000000..910710605 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/tags/TagNetworkSerialization$TagOutput.class differ diff --git a/build/_compileJava_2/net/minecraft/tags/TagNetworkSerialization.class b/build/_compileJava_2/net/minecraft/tags/TagNetworkSerialization.class new file mode 100644 index 000000000..b03c831b9 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/tags/TagNetworkSerialization.class differ diff --git a/build/_compileJava_2/net/minecraft/tags/WorldPresetTags.class b/build/_compileJava_2/net/minecraft/tags/WorldPresetTags.class new file mode 100644 index 000000000..388dc13b6 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/tags/WorldPresetTags.class differ diff --git a/build/_compileJava_2/net/minecraft/tags/package-info.class b/build/_compileJava_2/net/minecraft/tags/package-info.class new file mode 100644 index 000000000..97e919c9c Binary files /dev/null and b/build/_compileJava_2/net/minecraft/tags/package-info.class differ diff --git a/build/_compileJava_2/net/minecraft/util/AbortableIterationConsumer$Continuation.class b/build/_compileJava_2/net/minecraft/util/AbortableIterationConsumer$Continuation.class new file mode 100644 index 000000000..b73a46674 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/util/AbortableIterationConsumer$Continuation.class differ diff --git a/build/_compileJava_2/net/minecraft/util/AbortableIterationConsumer.class b/build/_compileJava_2/net/minecraft/util/AbortableIterationConsumer.class new file mode 100644 index 000000000..d802ca9b0 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/util/AbortableIterationConsumer.class differ diff --git a/build/_compileJava_2/net/minecraft/util/BitStorage.class b/build/_compileJava_2/net/minecraft/util/BitStorage.class new file mode 100644 index 000000000..669398e8d Binary files /dev/null and b/build/_compileJava_2/net/minecraft/util/BitStorage.class differ diff --git a/build/_compileJava_2/net/minecraft/util/Brightness.class b/build/_compileJava_2/net/minecraft/util/Brightness.class new file mode 100644 index 000000000..6a5547459 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/util/Brightness.class differ diff --git a/build/_compileJava_2/net/minecraft/util/ByIdMap$1.class b/build/_compileJava_2/net/minecraft/util/ByIdMap$1.class new file mode 100644 index 000000000..bf3fbca0d Binary files /dev/null and b/build/_compileJava_2/net/minecraft/util/ByIdMap$1.class differ diff --git a/build/_compileJava_2/net/minecraft/util/ByIdMap$OutOfBoundsStrategy.class b/build/_compileJava_2/net/minecraft/util/ByIdMap$OutOfBoundsStrategy.class new file mode 100644 index 000000000..ac9e7c99c Binary files /dev/null and b/build/_compileJava_2/net/minecraft/util/ByIdMap$OutOfBoundsStrategy.class differ diff --git a/build/_compileJava_2/net/minecraft/util/ByIdMap.class b/build/_compileJava_2/net/minecraft/util/ByIdMap.class new file mode 100644 index 000000000..6f9b7a2b8 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/util/ByIdMap.class differ diff --git a/build/_compileJava_2/net/minecraft/util/ClassInstanceMultiMap.class b/build/_compileJava_2/net/minecraft/util/ClassInstanceMultiMap.class new file mode 100644 index 000000000..0e1ced33a Binary files /dev/null and b/build/_compileJava_2/net/minecraft/util/ClassInstanceMultiMap.class differ diff --git a/build/_compileJava_2/net/minecraft/util/CommonColors.class b/build/_compileJava_2/net/minecraft/util/CommonColors.class new file mode 100644 index 000000000..3718c69ec Binary files /dev/null and b/build/_compileJava_2/net/minecraft/util/CommonColors.class differ diff --git a/build/_compileJava_2/net/minecraft/util/CommonLinks.class b/build/_compileJava_2/net/minecraft/util/CommonLinks.class new file mode 100644 index 000000000..d7436c9b5 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/util/CommonLinks.class differ diff --git a/build/_compileJava_2/net/minecraft/util/CrudeIncrementalIntIdentityHashBiMap.class b/build/_compileJava_2/net/minecraft/util/CrudeIncrementalIntIdentityHashBiMap.class new file mode 100644 index 000000000..8d37116ae Binary files /dev/null and b/build/_compileJava_2/net/minecraft/util/CrudeIncrementalIntIdentityHashBiMap.class differ diff --git a/build/_compileJava_2/net/minecraft/util/Crypt$ByteArrayToKeyFunction.class b/build/_compileJava_2/net/minecraft/util/Crypt$ByteArrayToKeyFunction.class new file mode 100644 index 000000000..91f19c17c Binary files /dev/null and b/build/_compileJava_2/net/minecraft/util/Crypt$ByteArrayToKeyFunction.class differ diff --git a/build/_compileJava_2/net/minecraft/util/Crypt$SaltSignaturePair.class b/build/_compileJava_2/net/minecraft/util/Crypt$SaltSignaturePair.class new file mode 100644 index 000000000..763e5f7ab Binary files /dev/null and b/build/_compileJava_2/net/minecraft/util/Crypt$SaltSignaturePair.class differ diff --git a/build/_compileJava_2/net/minecraft/util/Crypt$SaltSupplier.class b/build/_compileJava_2/net/minecraft/util/Crypt$SaltSupplier.class new file mode 100644 index 000000000..e4716c6c3 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/util/Crypt$SaltSupplier.class differ diff --git a/build/_compileJava_2/net/minecraft/util/Crypt.class b/build/_compileJava_2/net/minecraft/util/Crypt.class new file mode 100644 index 000000000..970b63e32 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/util/Crypt.class differ diff --git a/build/_compileJava_2/net/minecraft/util/CryptException.class b/build/_compileJava_2/net/minecraft/util/CryptException.class new file mode 100644 index 000000000..c9a8fd714 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/util/CryptException.class differ diff --git a/build/_compileJava_2/net/minecraft/util/CsvOutput$Builder.class b/build/_compileJava_2/net/minecraft/util/CsvOutput$Builder.class new file mode 100644 index 000000000..8389de84b Binary files /dev/null and b/build/_compileJava_2/net/minecraft/util/CsvOutput$Builder.class differ diff --git a/build/_compileJava_2/net/minecraft/util/CsvOutput.class b/build/_compileJava_2/net/minecraft/util/CsvOutput.class new file mode 100644 index 000000000..0e51a13e1 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/util/CsvOutput.class differ diff --git a/build/_compileJava_2/net/minecraft/util/CubicSampler$Vec3Fetcher.class b/build/_compileJava_2/net/minecraft/util/CubicSampler$Vec3Fetcher.class new file mode 100644 index 000000000..26d25d065 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/util/CubicSampler$Vec3Fetcher.class differ diff --git a/build/_compileJava_2/net/minecraft/util/CubicSampler.class b/build/_compileJava_2/net/minecraft/util/CubicSampler.class new file mode 100644 index 000000000..7a4e21529 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/util/CubicSampler.class differ diff --git a/build/_compileJava_2/net/minecraft/util/CubicSpline$1Point.class b/build/_compileJava_2/net/minecraft/util/CubicSpline$1Point.class new file mode 100644 index 000000000..94804c9c2 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/util/CubicSpline$1Point.class differ diff --git a/build/_compileJava_2/net/minecraft/util/CubicSpline$Builder.class b/build/_compileJava_2/net/minecraft/util/CubicSpline$Builder.class new file mode 100644 index 000000000..50d7b1f5a Binary files /dev/null and b/build/_compileJava_2/net/minecraft/util/CubicSpline$Builder.class differ diff --git a/build/_compileJava_2/net/minecraft/util/CubicSpline$Constant.class b/build/_compileJava_2/net/minecraft/util/CubicSpline$Constant.class new file mode 100644 index 000000000..a3b792173 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/util/CubicSpline$Constant.class differ diff --git a/build/_compileJava_2/net/minecraft/util/CubicSpline$CoordinateVisitor.class b/build/_compileJava_2/net/minecraft/util/CubicSpline$CoordinateVisitor.class new file mode 100644 index 000000000..097ad9e83 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/util/CubicSpline$CoordinateVisitor.class differ diff --git a/build/_compileJava_2/net/minecraft/util/CubicSpline$Multipoint.class b/build/_compileJava_2/net/minecraft/util/CubicSpline$Multipoint.class new file mode 100644 index 000000000..5317d5bb2 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/util/CubicSpline$Multipoint.class differ diff --git a/build/_compileJava_2/net/minecraft/util/CubicSpline.class b/build/_compileJava_2/net/minecraft/util/CubicSpline.class new file mode 100644 index 000000000..ea3366692 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/util/CubicSpline.class differ diff --git a/build/_compileJava_2/net/minecraft/util/DebugBuffer.class b/build/_compileJava_2/net/minecraft/util/DebugBuffer.class new file mode 100644 index 000000000..9d0fc1b7f Binary files /dev/null and b/build/_compileJava_2/net/minecraft/util/DebugBuffer.class differ diff --git a/build/_compileJava_2/net/minecraft/util/DependencySorter$Entry.class b/build/_compileJava_2/net/minecraft/util/DependencySorter$Entry.class new file mode 100644 index 000000000..956cff538 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/util/DependencySorter$Entry.class differ diff --git a/build/_compileJava_2/net/minecraft/util/DependencySorter.class b/build/_compileJava_2/net/minecraft/util/DependencySorter.class new file mode 100644 index 000000000..57476a866 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/util/DependencySorter.class differ diff --git a/build/_compileJava_2/net/minecraft/util/DirectoryLock$LockException.class b/build/_compileJava_2/net/minecraft/util/DirectoryLock$LockException.class new file mode 100644 index 000000000..bdba18394 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/util/DirectoryLock$LockException.class differ diff --git a/build/_compileJava_2/net/minecraft/util/DirectoryLock.class b/build/_compileJava_2/net/minecraft/util/DirectoryLock.class new file mode 100644 index 000000000..af129bf00 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/util/DirectoryLock.class differ diff --git a/build/_compileJava_2/net/minecraft/util/ExceptionCollector.class b/build/_compileJava_2/net/minecraft/util/ExceptionCollector.class new file mode 100644 index 000000000..7739b9eb6 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/util/ExceptionCollector.class differ diff --git a/build/_compileJava_2/net/minecraft/util/ExtraCodecs$1.class b/build/_compileJava_2/net/minecraft/util/ExtraCodecs$1.class new file mode 100644 index 000000000..ff83650dc Binary files /dev/null and b/build/_compileJava_2/net/minecraft/util/ExtraCodecs$1.class differ diff --git a/build/_compileJava_2/net/minecraft/util/ExtraCodecs$1ContextRetrievalCodec.class b/build/_compileJava_2/net/minecraft/util/ExtraCodecs$1ContextRetrievalCodec.class new file mode 100644 index 000000000..93225028c Binary files /dev/null and b/build/_compileJava_2/net/minecraft/util/ExtraCodecs$1ContextRetrievalCodec.class differ diff --git a/build/_compileJava_2/net/minecraft/util/ExtraCodecs$2.class b/build/_compileJava_2/net/minecraft/util/ExtraCodecs$2.class new file mode 100644 index 000000000..0c40c896f Binary files /dev/null and b/build/_compileJava_2/net/minecraft/util/ExtraCodecs$2.class differ diff --git a/build/_compileJava_2/net/minecraft/util/ExtraCodecs$3.class b/build/_compileJava_2/net/minecraft/util/ExtraCodecs$3.class new file mode 100644 index 000000000..fd8bbcc88 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/util/ExtraCodecs$3.class differ diff --git a/build/_compileJava_2/net/minecraft/util/ExtraCodecs$4.class b/build/_compileJava_2/net/minecraft/util/ExtraCodecs$4.class new file mode 100644 index 000000000..ac2fcdc1b Binary files /dev/null and b/build/_compileJava_2/net/minecraft/util/ExtraCodecs$4.class differ diff --git a/build/_compileJava_2/net/minecraft/util/ExtraCodecs$EitherCodec.class b/build/_compileJava_2/net/minecraft/util/ExtraCodecs$EitherCodec.class new file mode 100644 index 000000000..77f297feb Binary files /dev/null and b/build/_compileJava_2/net/minecraft/util/ExtraCodecs$EitherCodec.class differ diff --git a/build/_compileJava_2/net/minecraft/util/ExtraCodecs$LazyInitializedCodec.class b/build/_compileJava_2/net/minecraft/util/ExtraCodecs$LazyInitializedCodec.class new file mode 100644 index 000000000..b32f85eab Binary files /dev/null and b/build/_compileJava_2/net/minecraft/util/ExtraCodecs$LazyInitializedCodec.class differ diff --git a/build/_compileJava_2/net/minecraft/util/ExtraCodecs$TagOrElementLocation.class b/build/_compileJava_2/net/minecraft/util/ExtraCodecs$TagOrElementLocation.class new file mode 100644 index 000000000..e208e1728 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/util/ExtraCodecs$TagOrElementLocation.class differ diff --git a/build/_compileJava_2/net/minecraft/util/ExtraCodecs$XorCodec.class b/build/_compileJava_2/net/minecraft/util/ExtraCodecs$XorCodec.class new file mode 100644 index 000000000..da47cda27 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/util/ExtraCodecs$XorCodec.class differ diff --git a/build/_compileJava_2/net/minecraft/util/ExtraCodecs.class b/build/_compileJava_2/net/minecraft/util/ExtraCodecs.class new file mode 100644 index 000000000..f63f4140a Binary files /dev/null and b/build/_compileJava_2/net/minecraft/util/ExtraCodecs.class differ diff --git a/build/_compileJava_2/net/minecraft/util/FastBufferedInputStream.class b/build/_compileJava_2/net/minecraft/util/FastBufferedInputStream.class new file mode 100644 index 000000000..90b12b57d Binary files /dev/null and b/build/_compileJava_2/net/minecraft/util/FastBufferedInputStream.class differ diff --git a/build/_compileJava_2/net/minecraft/util/FastColor$ABGR32.class b/build/_compileJava_2/net/minecraft/util/FastColor$ABGR32.class new file mode 100644 index 000000000..bf46b7622 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/util/FastColor$ABGR32.class differ diff --git a/build/_compileJava_2/net/minecraft/util/FastColor$ARGB32.class b/build/_compileJava_2/net/minecraft/util/FastColor$ARGB32.class new file mode 100644 index 000000000..8d5fe2af6 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/util/FastColor$ARGB32.class differ diff --git a/build/_compileJava_2/net/minecraft/util/FastColor.class b/build/_compileJava_2/net/minecraft/util/FastColor.class new file mode 100644 index 000000000..879a4487a Binary files /dev/null and b/build/_compileJava_2/net/minecraft/util/FastColor.class differ diff --git a/build/_compileJava_2/net/minecraft/util/FileZipper.class b/build/_compileJava_2/net/minecraft/util/FileZipper.class new file mode 100644 index 000000000..f1c502243 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/util/FileZipper.class differ diff --git a/build/_compileJava_2/net/minecraft/util/FormattedCharSequence.class b/build/_compileJava_2/net/minecraft/util/FormattedCharSequence.class new file mode 100644 index 000000000..f9f500f12 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/util/FormattedCharSequence.class differ diff --git a/build/_compileJava_2/net/minecraft/util/FormattedCharSink.class b/build/_compileJava_2/net/minecraft/util/FormattedCharSink.class new file mode 100644 index 000000000..e0ab95d0c Binary files /dev/null and b/build/_compileJava_2/net/minecraft/util/FormattedCharSink.class differ diff --git a/build/_compileJava_2/net/minecraft/util/FrameTimer.class b/build/_compileJava_2/net/minecraft/util/FrameTimer.class new file mode 100644 index 000000000..852b2e622 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/util/FrameTimer.class differ diff --git a/build/_compileJava_2/net/minecraft/util/FutureChain.class b/build/_compileJava_2/net/minecraft/util/FutureChain.class new file mode 100644 index 000000000..9f71817a7 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/util/FutureChain.class differ diff --git a/build/_compileJava_2/net/minecraft/util/Graph.class b/build/_compileJava_2/net/minecraft/util/Graph.class new file mode 100644 index 000000000..279062696 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/util/Graph.class differ diff --git a/build/_compileJava_2/net/minecraft/util/GsonHelper.class b/build/_compileJava_2/net/minecraft/util/GsonHelper.class new file mode 100644 index 000000000..cc4cb2a32 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/util/GsonHelper.class differ diff --git a/build/_compileJava_2/net/minecraft/util/HttpUtil.class b/build/_compileJava_2/net/minecraft/util/HttpUtil.class new file mode 100644 index 000000000..842a4c849 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/util/HttpUtil.class differ diff --git a/build/_compileJava_2/net/minecraft/util/InclusiveRange.class b/build/_compileJava_2/net/minecraft/util/InclusiveRange.class new file mode 100644 index 000000000..162760abb Binary files /dev/null and b/build/_compileJava_2/net/minecraft/util/InclusiveRange.class differ diff --git a/build/_compileJava_2/net/minecraft/util/KeyDispatchDataCodec.class b/build/_compileJava_2/net/minecraft/util/KeyDispatchDataCodec.class new file mode 100644 index 000000000..07da111fa Binary files /dev/null and b/build/_compileJava_2/net/minecraft/util/KeyDispatchDataCodec.class differ diff --git a/build/_compileJava_2/net/minecraft/util/LazyLoadedValue.class b/build/_compileJava_2/net/minecraft/util/LazyLoadedValue.class new file mode 100644 index 000000000..01c789be0 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/util/LazyLoadedValue.class differ diff --git a/build/_compileJava_2/net/minecraft/util/LinearCongruentialGenerator.class b/build/_compileJava_2/net/minecraft/util/LinearCongruentialGenerator.class new file mode 100644 index 000000000..84c2379f3 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/util/LinearCongruentialGenerator.class differ diff --git a/build/_compileJava_2/net/minecraft/util/LowerCaseEnumTypeAdapterFactory$1.class b/build/_compileJava_2/net/minecraft/util/LowerCaseEnumTypeAdapterFactory$1.class new file mode 100644 index 000000000..12d3ca809 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/util/LowerCaseEnumTypeAdapterFactory$1.class differ diff --git a/build/_compileJava_2/net/minecraft/util/LowerCaseEnumTypeAdapterFactory.class b/build/_compileJava_2/net/minecraft/util/LowerCaseEnumTypeAdapterFactory.class new file mode 100644 index 000000000..ab85b825a Binary files /dev/null and b/build/_compileJava_2/net/minecraft/util/LowerCaseEnumTypeAdapterFactory.class differ diff --git a/build/_compileJava_2/net/minecraft/util/MemoryReserve.class b/build/_compileJava_2/net/minecraft/util/MemoryReserve.class new file mode 100644 index 000000000..42fd48d74 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/util/MemoryReserve.class differ diff --git a/build/_compileJava_2/net/minecraft/util/ModCheck$Confidence.class b/build/_compileJava_2/net/minecraft/util/ModCheck$Confidence.class new file mode 100644 index 000000000..e19e81302 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/util/ModCheck$Confidence.class differ diff --git a/build/_compileJava_2/net/minecraft/util/ModCheck.class b/build/_compileJava_2/net/minecraft/util/ModCheck.class new file mode 100644 index 000000000..252133223 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/util/ModCheck.class differ diff --git a/build/_compileJava_2/net/minecraft/util/Mth.class b/build/_compileJava_2/net/minecraft/util/Mth.class new file mode 100644 index 000000000..b4ebcf3d3 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/util/Mth.class differ diff --git a/build/_compileJava_2/net/minecraft/util/NativeModuleLister$NativeModuleInfo.class b/build/_compileJava_2/net/minecraft/util/NativeModuleLister$NativeModuleInfo.class new file mode 100644 index 000000000..e6e206543 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/util/NativeModuleLister$NativeModuleInfo.class differ diff --git a/build/_compileJava_2/net/minecraft/util/NativeModuleLister$NativeModuleVersion.class b/build/_compileJava_2/net/minecraft/util/NativeModuleLister$NativeModuleVersion.class new file mode 100644 index 000000000..1c4d4309d Binary files /dev/null and b/build/_compileJava_2/net/minecraft/util/NativeModuleLister$NativeModuleVersion.class differ diff --git a/build/_compileJava_2/net/minecraft/util/NativeModuleLister.class b/build/_compileJava_2/net/minecraft/util/NativeModuleLister.class new file mode 100644 index 000000000..390cc74ea Binary files /dev/null and b/build/_compileJava_2/net/minecraft/util/NativeModuleLister.class differ diff --git a/build/_compileJava_2/net/minecraft/util/OptionEnum.class b/build/_compileJava_2/net/minecraft/util/OptionEnum.class new file mode 100644 index 000000000..e1451709c Binary files /dev/null and b/build/_compileJava_2/net/minecraft/util/OptionEnum.class differ diff --git a/build/_compileJava_2/net/minecraft/util/ParticleUtils.class b/build/_compileJava_2/net/minecraft/util/ParticleUtils.class new file mode 100644 index 000000000..d6214b819 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/util/ParticleUtils.class differ diff --git a/build/_compileJava_2/net/minecraft/util/ProgressListener.class b/build/_compileJava_2/net/minecraft/util/ProgressListener.class new file mode 100644 index 000000000..5ab21b91e Binary files /dev/null and b/build/_compileJava_2/net/minecraft/util/ProgressListener.class differ diff --git a/build/_compileJava_2/net/minecraft/util/RandomSource.class b/build/_compileJava_2/net/minecraft/util/RandomSource.class new file mode 100644 index 000000000..208088cb0 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/util/RandomSource.class differ diff --git a/build/_compileJava_2/net/minecraft/util/ResourceLocationPattern.class b/build/_compileJava_2/net/minecraft/util/ResourceLocationPattern.class new file mode 100644 index 000000000..cf63ccf22 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/util/ResourceLocationPattern.class differ diff --git a/build/_compileJava_2/net/minecraft/util/SegmentedAnglePrecision.class b/build/_compileJava_2/net/minecraft/util/SegmentedAnglePrecision.class new file mode 100644 index 000000000..d0a4078ee Binary files /dev/null and b/build/_compileJava_2/net/minecraft/util/SegmentedAnglePrecision.class differ diff --git a/build/_compileJava_2/net/minecraft/util/SignatureUpdater$Output.class b/build/_compileJava_2/net/minecraft/util/SignatureUpdater$Output.class new file mode 100644 index 000000000..6103c8e3b Binary files /dev/null and b/build/_compileJava_2/net/minecraft/util/SignatureUpdater$Output.class differ diff --git a/build/_compileJava_2/net/minecraft/util/SignatureUpdater.class b/build/_compileJava_2/net/minecraft/util/SignatureUpdater.class new file mode 100644 index 000000000..c5aaed4af Binary files /dev/null and b/build/_compileJava_2/net/minecraft/util/SignatureUpdater.class differ diff --git a/build/_compileJava_2/net/minecraft/util/SignatureValidator.class b/build/_compileJava_2/net/minecraft/util/SignatureValidator.class new file mode 100644 index 000000000..ddc6e53a9 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/util/SignatureValidator.class differ diff --git a/build/_compileJava_2/net/minecraft/util/Signer.class b/build/_compileJava_2/net/minecraft/util/Signer.class new file mode 100644 index 000000000..e211ea696 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/util/Signer.class differ diff --git a/build/_compileJava_2/net/minecraft/util/SimpleBitStorage$InitializationException.class b/build/_compileJava_2/net/minecraft/util/SimpleBitStorage$InitializationException.class new file mode 100644 index 000000000..7586acda4 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/util/SimpleBitStorage$InitializationException.class differ diff --git a/build/_compileJava_2/net/minecraft/util/SimpleBitStorage.class b/build/_compileJava_2/net/minecraft/util/SimpleBitStorage.class new file mode 100644 index 000000000..853058311 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/util/SimpleBitStorage.class differ diff --git a/build/_compileJava_2/net/minecraft/util/SingleKeyCache.class b/build/_compileJava_2/net/minecraft/util/SingleKeyCache.class new file mode 100644 index 000000000..826f47668 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/util/SingleKeyCache.class differ diff --git a/build/_compileJava_2/net/minecraft/util/SmoothDouble.class b/build/_compileJava_2/net/minecraft/util/SmoothDouble.class new file mode 100644 index 000000000..0b4f3167c Binary files /dev/null and b/build/_compileJava_2/net/minecraft/util/SmoothDouble.class differ diff --git a/build/_compileJava_2/net/minecraft/util/SortedArraySet$ArrayIterator.class b/build/_compileJava_2/net/minecraft/util/SortedArraySet$ArrayIterator.class new file mode 100644 index 000000000..aa31daba1 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/util/SortedArraySet$ArrayIterator.class differ diff --git a/build/_compileJava_2/net/minecraft/util/SortedArraySet.class b/build/_compileJava_2/net/minecraft/util/SortedArraySet.class new file mode 100644 index 000000000..66596e824 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/util/SortedArraySet.class differ diff --git a/build/_compileJava_2/net/minecraft/util/SpawnUtil$Strategy.class b/build/_compileJava_2/net/minecraft/util/SpawnUtil$Strategy.class new file mode 100644 index 000000000..407b94f3d Binary files /dev/null and b/build/_compileJava_2/net/minecraft/util/SpawnUtil$Strategy.class differ diff --git a/build/_compileJava_2/net/minecraft/util/SpawnUtil.class b/build/_compileJava_2/net/minecraft/util/SpawnUtil.class new file mode 100644 index 000000000..06f4d108a Binary files /dev/null and b/build/_compileJava_2/net/minecraft/util/SpawnUtil.class differ diff --git a/build/_compileJava_2/net/minecraft/util/StringDecomposer.class b/build/_compileJava_2/net/minecraft/util/StringDecomposer.class new file mode 100644 index 000000000..1d56a3eec Binary files /dev/null and b/build/_compileJava_2/net/minecraft/util/StringDecomposer.class differ diff --git a/build/_compileJava_2/net/minecraft/util/StringRepresentable$1.class b/build/_compileJava_2/net/minecraft/util/StringRepresentable$1.class new file mode 100644 index 000000000..e23b676d8 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/util/StringRepresentable$1.class differ diff --git a/build/_compileJava_2/net/minecraft/util/StringRepresentable$EnumCodec.class b/build/_compileJava_2/net/minecraft/util/StringRepresentable$EnumCodec.class new file mode 100644 index 000000000..624c3651b Binary files /dev/null and b/build/_compileJava_2/net/minecraft/util/StringRepresentable$EnumCodec.class differ diff --git a/build/_compileJava_2/net/minecraft/util/StringRepresentable.class b/build/_compileJava_2/net/minecraft/util/StringRepresentable.class new file mode 100644 index 000000000..57b8a338a Binary files /dev/null and b/build/_compileJava_2/net/minecraft/util/StringRepresentable.class differ diff --git a/build/_compileJava_2/net/minecraft/util/StringUtil.class b/build/_compileJava_2/net/minecraft/util/StringUtil.class new file mode 100644 index 000000000..90bcbf4aa Binary files /dev/null and b/build/_compileJava_2/net/minecraft/util/StringUtil.class differ diff --git a/build/_compileJava_2/net/minecraft/util/TaskChainer$DelayedTask.class b/build/_compileJava_2/net/minecraft/util/TaskChainer$DelayedTask.class new file mode 100644 index 000000000..3fd2d17c9 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/util/TaskChainer$DelayedTask.class differ diff --git a/build/_compileJava_2/net/minecraft/util/TaskChainer.class b/build/_compileJava_2/net/minecraft/util/TaskChainer.class new file mode 100644 index 000000000..433f155a0 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/util/TaskChainer.class differ diff --git a/build/_compileJava_2/net/minecraft/util/ThreadingDetector.class b/build/_compileJava_2/net/minecraft/util/ThreadingDetector.class new file mode 100644 index 000000000..b2fed5bcd Binary files /dev/null and b/build/_compileJava_2/net/minecraft/util/ThreadingDetector.class differ diff --git a/build/_compileJava_2/net/minecraft/util/TimeSource$NanoTimeSource.class b/build/_compileJava_2/net/minecraft/util/TimeSource$NanoTimeSource.class new file mode 100644 index 000000000..016d699fb Binary files /dev/null and b/build/_compileJava_2/net/minecraft/util/TimeSource$NanoTimeSource.class differ diff --git a/build/_compileJava_2/net/minecraft/util/TimeSource.class b/build/_compileJava_2/net/minecraft/util/TimeSource.class new file mode 100644 index 000000000..b5dfcaa51 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/util/TimeSource.class differ diff --git a/build/_compileJava_2/net/minecraft/util/TimeUtil.class b/build/_compileJava_2/net/minecraft/util/TimeUtil.class new file mode 100644 index 000000000..040f682b1 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/util/TimeUtil.class differ diff --git a/build/_compileJava_2/net/minecraft/util/ToFloatFunction$1.class b/build/_compileJava_2/net/minecraft/util/ToFloatFunction$1.class new file mode 100644 index 000000000..c589d2f85 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/util/ToFloatFunction$1.class differ diff --git a/build/_compileJava_2/net/minecraft/util/ToFloatFunction$2.class b/build/_compileJava_2/net/minecraft/util/ToFloatFunction$2.class new file mode 100644 index 000000000..aa15b2568 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/util/ToFloatFunction$2.class differ diff --git a/build/_compileJava_2/net/minecraft/util/ToFloatFunction.class b/build/_compileJava_2/net/minecraft/util/ToFloatFunction.class new file mode 100644 index 000000000..554ab6641 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/util/ToFloatFunction.class differ diff --git a/build/_compileJava_2/net/minecraft/util/Tuple.class b/build/_compileJava_2/net/minecraft/util/Tuple.class new file mode 100644 index 000000000..ac74f761e Binary files /dev/null and b/build/_compileJava_2/net/minecraft/util/Tuple.class differ diff --git a/build/_compileJava_2/net/minecraft/util/Unit.class b/build/_compileJava_2/net/minecraft/util/Unit.class new file mode 100644 index 000000000..db1f9932b Binary files /dev/null and b/build/_compileJava_2/net/minecraft/util/Unit.class differ diff --git a/build/_compileJava_2/net/minecraft/util/VisibleForDebug.class b/build/_compileJava_2/net/minecraft/util/VisibleForDebug.class new file mode 100644 index 000000000..ad62ff085 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/util/VisibleForDebug.class differ diff --git a/build/_compileJava_2/net/minecraft/util/ZeroBitStorage.class b/build/_compileJava_2/net/minecraft/util/ZeroBitStorage.class new file mode 100644 index 000000000..e4014886e Binary files /dev/null and b/build/_compileJava_2/net/minecraft/util/ZeroBitStorage.class differ diff --git a/build/_compileJava_2/net/minecraft/util/datafix/DataFixTypes.class b/build/_compileJava_2/net/minecraft/util/datafix/DataFixTypes.class new file mode 100644 index 000000000..f95d24a18 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/util/datafix/DataFixTypes.class differ diff --git a/build/_compileJava_2/net/minecraft/util/datafix/DataFixers$1.class b/build/_compileJava_2/net/minecraft/util/datafix/DataFixers$1.class new file mode 100644 index 000000000..2ed980069 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/util/datafix/DataFixers$1.class differ diff --git a/build/_compileJava_2/net/minecraft/util/datafix/DataFixers$2.class b/build/_compileJava_2/net/minecraft/util/datafix/DataFixers$2.class new file mode 100644 index 000000000..db5664371 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/util/datafix/DataFixers$2.class differ diff --git a/build/_compileJava_2/net/minecraft/util/datafix/DataFixers.class b/build/_compileJava_2/net/minecraft/util/datafix/DataFixers.class new file mode 100644 index 000000000..70158e7e1 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/util/datafix/DataFixers.class differ diff --git a/build/_compileJava_2/net/minecraft/util/datafix/PackedBitStorage.class b/build/_compileJava_2/net/minecraft/util/datafix/PackedBitStorage.class new file mode 100644 index 000000000..d74f0dbb4 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/util/datafix/PackedBitStorage.class differ diff --git a/build/_compileJava_2/net/minecraft/util/datafix/fixes/AbstractArrowPickupFix.class b/build/_compileJava_2/net/minecraft/util/datafix/fixes/AbstractArrowPickupFix.class new file mode 100644 index 000000000..480089917 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/util/datafix/fixes/AbstractArrowPickupFix.class differ diff --git a/build/_compileJava_2/net/minecraft/util/datafix/fixes/AbstractPoiSectionFix.class b/build/_compileJava_2/net/minecraft/util/datafix/fixes/AbstractPoiSectionFix.class new file mode 100644 index 000000000..7b45f4362 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/util/datafix/fixes/AbstractPoiSectionFix.class differ diff --git a/build/_compileJava_2/net/minecraft/util/datafix/fixes/AbstractUUIDFix.class b/build/_compileJava_2/net/minecraft/util/datafix/fixes/AbstractUUIDFix.class new file mode 100644 index 000000000..7690705aa Binary files /dev/null and b/build/_compileJava_2/net/minecraft/util/datafix/fixes/AbstractUUIDFix.class differ diff --git a/build/_compileJava_2/net/minecraft/util/datafix/fixes/AddFlagIfNotPresentFix.class b/build/_compileJava_2/net/minecraft/util/datafix/fixes/AddFlagIfNotPresentFix.class new file mode 100644 index 000000000..7ef6d9b4e Binary files /dev/null and b/build/_compileJava_2/net/minecraft/util/datafix/fixes/AddFlagIfNotPresentFix.class differ diff --git a/build/_compileJava_2/net/minecraft/util/datafix/fixes/AddNewChoices.class b/build/_compileJava_2/net/minecraft/util/datafix/fixes/AddNewChoices.class new file mode 100644 index 000000000..d19c823a4 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/util/datafix/fixes/AddNewChoices.class differ diff --git a/build/_compileJava_2/net/minecraft/util/datafix/fixes/AdvancementsFix.class b/build/_compileJava_2/net/minecraft/util/datafix/fixes/AdvancementsFix.class new file mode 100644 index 000000000..df3cae5fb Binary files /dev/null and b/build/_compileJava_2/net/minecraft/util/datafix/fixes/AdvancementsFix.class differ diff --git a/build/_compileJava_2/net/minecraft/util/datafix/fixes/AdvancementsRenameFix.class b/build/_compileJava_2/net/minecraft/util/datafix/fixes/AdvancementsRenameFix.class new file mode 100644 index 000000000..9e93ed464 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/util/datafix/fixes/AdvancementsRenameFix.class differ diff --git a/build/_compileJava_2/net/minecraft/util/datafix/fixes/AttributesRename.class b/build/_compileJava_2/net/minecraft/util/datafix/fixes/AttributesRename.class new file mode 100644 index 000000000..ec71d51b2 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/util/datafix/fixes/AttributesRename.class differ diff --git a/build/_compileJava_2/net/minecraft/util/datafix/fixes/BedItemColorFix.class b/build/_compileJava_2/net/minecraft/util/datafix/fixes/BedItemColorFix.class new file mode 100644 index 000000000..0ee4911bc Binary files /dev/null and b/build/_compileJava_2/net/minecraft/util/datafix/fixes/BedItemColorFix.class differ diff --git a/build/_compileJava_2/net/minecraft/util/datafix/fixes/BiomeFix.class b/build/_compileJava_2/net/minecraft/util/datafix/fixes/BiomeFix.class new file mode 100644 index 000000000..6f9d3dbc0 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/util/datafix/fixes/BiomeFix.class differ diff --git a/build/_compileJava_2/net/minecraft/util/datafix/fixes/BitStorageAlignFix.class b/build/_compileJava_2/net/minecraft/util/datafix/fixes/BitStorageAlignFix.class new file mode 100644 index 000000000..abb2a62f8 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/util/datafix/fixes/BitStorageAlignFix.class differ diff --git a/build/_compileJava_2/net/minecraft/util/datafix/fixes/BlendingDataFix.class b/build/_compileJava_2/net/minecraft/util/datafix/fixes/BlendingDataFix.class new file mode 100644 index 000000000..a178fdc1b Binary files /dev/null and b/build/_compileJava_2/net/minecraft/util/datafix/fixes/BlendingDataFix.class differ diff --git a/build/_compileJava_2/net/minecraft/util/datafix/fixes/BlendingDataRemoveFromNetherEndFix.class b/build/_compileJava_2/net/minecraft/util/datafix/fixes/BlendingDataRemoveFromNetherEndFix.class new file mode 100644 index 000000000..cf9d343c6 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/util/datafix/fixes/BlendingDataRemoveFromNetherEndFix.class differ diff --git a/build/_compileJava_2/net/minecraft/util/datafix/fixes/BlockEntityBannerColorFix.class b/build/_compileJava_2/net/minecraft/util/datafix/fixes/BlockEntityBannerColorFix.class new file mode 100644 index 000000000..69d3ab764 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/util/datafix/fixes/BlockEntityBannerColorFix.class differ diff --git a/build/_compileJava_2/net/minecraft/util/datafix/fixes/BlockEntityBlockStateFix.class b/build/_compileJava_2/net/minecraft/util/datafix/fixes/BlockEntityBlockStateFix.class new file mode 100644 index 000000000..b7f5503be Binary files /dev/null and b/build/_compileJava_2/net/minecraft/util/datafix/fixes/BlockEntityBlockStateFix.class differ diff --git a/build/_compileJava_2/net/minecraft/util/datafix/fixes/BlockEntityCustomNameToComponentFix.class b/build/_compileJava_2/net/minecraft/util/datafix/fixes/BlockEntityCustomNameToComponentFix.class new file mode 100644 index 000000000..20b7f3832 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/util/datafix/fixes/BlockEntityCustomNameToComponentFix.class differ diff --git a/build/_compileJava_2/net/minecraft/util/datafix/fixes/BlockEntityIdFix.class b/build/_compileJava_2/net/minecraft/util/datafix/fixes/BlockEntityIdFix.class new file mode 100644 index 000000000..0670c46b7 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/util/datafix/fixes/BlockEntityIdFix.class differ diff --git a/build/_compileJava_2/net/minecraft/util/datafix/fixes/BlockEntityJukeboxFix.class b/build/_compileJava_2/net/minecraft/util/datafix/fixes/BlockEntityJukeboxFix.class new file mode 100644 index 000000000..899c4efb2 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/util/datafix/fixes/BlockEntityJukeboxFix.class differ diff --git a/build/_compileJava_2/net/minecraft/util/datafix/fixes/BlockEntityKeepPacked.class b/build/_compileJava_2/net/minecraft/util/datafix/fixes/BlockEntityKeepPacked.class new file mode 100644 index 000000000..9c05ed6a9 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/util/datafix/fixes/BlockEntityKeepPacked.class differ diff --git a/build/_compileJava_2/net/minecraft/util/datafix/fixes/BlockEntityRenameFix.class b/build/_compileJava_2/net/minecraft/util/datafix/fixes/BlockEntityRenameFix.class new file mode 100644 index 000000000..d870858f8 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/util/datafix/fixes/BlockEntityRenameFix.class differ diff --git a/build/_compileJava_2/net/minecraft/util/datafix/fixes/BlockEntityShulkerBoxColorFix.class b/build/_compileJava_2/net/minecraft/util/datafix/fixes/BlockEntityShulkerBoxColorFix.class new file mode 100644 index 000000000..877eadeed Binary files /dev/null and b/build/_compileJava_2/net/minecraft/util/datafix/fixes/BlockEntityShulkerBoxColorFix.class differ diff --git a/build/_compileJava_2/net/minecraft/util/datafix/fixes/BlockEntitySignDoubleSidedEditableTextFix.class b/build/_compileJava_2/net/minecraft/util/datafix/fixes/BlockEntitySignDoubleSidedEditableTextFix.class new file mode 100644 index 000000000..0697a1cc5 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/util/datafix/fixes/BlockEntitySignDoubleSidedEditableTextFix.class differ diff --git a/build/_compileJava_2/net/minecraft/util/datafix/fixes/BlockEntitySignTextStrictJsonFix$1.class b/build/_compileJava_2/net/minecraft/util/datafix/fixes/BlockEntitySignTextStrictJsonFix$1.class new file mode 100644 index 000000000..9df0c370c Binary files /dev/null and b/build/_compileJava_2/net/minecraft/util/datafix/fixes/BlockEntitySignTextStrictJsonFix$1.class differ diff --git a/build/_compileJava_2/net/minecraft/util/datafix/fixes/BlockEntitySignTextStrictJsonFix.class b/build/_compileJava_2/net/minecraft/util/datafix/fixes/BlockEntitySignTextStrictJsonFix.class new file mode 100644 index 000000000..ca0197ae7 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/util/datafix/fixes/BlockEntitySignTextStrictJsonFix.class differ diff --git a/build/_compileJava_2/net/minecraft/util/datafix/fixes/BlockEntityUUIDFix.class b/build/_compileJava_2/net/minecraft/util/datafix/fixes/BlockEntityUUIDFix.class new file mode 100644 index 000000000..3e9e380f6 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/util/datafix/fixes/BlockEntityUUIDFix.class differ diff --git a/build/_compileJava_2/net/minecraft/util/datafix/fixes/BlockNameFlatteningFix.class b/build/_compileJava_2/net/minecraft/util/datafix/fixes/BlockNameFlatteningFix.class new file mode 100644 index 000000000..c615e1966 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/util/datafix/fixes/BlockNameFlatteningFix.class differ diff --git a/build/_compileJava_2/net/minecraft/util/datafix/fixes/BlockRenameFix$1.class b/build/_compileJava_2/net/minecraft/util/datafix/fixes/BlockRenameFix$1.class new file mode 100644 index 000000000..24ac6f4ab Binary files /dev/null and b/build/_compileJava_2/net/minecraft/util/datafix/fixes/BlockRenameFix$1.class differ diff --git a/build/_compileJava_2/net/minecraft/util/datafix/fixes/BlockRenameFix.class b/build/_compileJava_2/net/minecraft/util/datafix/fixes/BlockRenameFix.class new file mode 100644 index 000000000..3b641c0c1 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/util/datafix/fixes/BlockRenameFix.class differ diff --git a/build/_compileJava_2/net/minecraft/util/datafix/fixes/BlockRenameFixWithJigsaw$1.class b/build/_compileJava_2/net/minecraft/util/datafix/fixes/BlockRenameFixWithJigsaw$1.class new file mode 100644 index 000000000..f9e0f9579 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/util/datafix/fixes/BlockRenameFixWithJigsaw$1.class differ diff --git a/build/_compileJava_2/net/minecraft/util/datafix/fixes/BlockRenameFixWithJigsaw.class b/build/_compileJava_2/net/minecraft/util/datafix/fixes/BlockRenameFixWithJigsaw.class new file mode 100644 index 000000000..d732ea488 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/util/datafix/fixes/BlockRenameFixWithJigsaw.class differ diff --git a/build/_compileJava_2/net/minecraft/util/datafix/fixes/BlockStateData.class b/build/_compileJava_2/net/minecraft/util/datafix/fixes/BlockStateData.class new file mode 100644 index 000000000..d124788af Binary files /dev/null and b/build/_compileJava_2/net/minecraft/util/datafix/fixes/BlockStateData.class differ diff --git a/build/_compileJava_2/net/minecraft/util/datafix/fixes/BlockStateStructureTemplateFix.class b/build/_compileJava_2/net/minecraft/util/datafix/fixes/BlockStateStructureTemplateFix.class new file mode 100644 index 000000000..3cffa0814 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/util/datafix/fixes/BlockStateStructureTemplateFix.class differ diff --git a/build/_compileJava_2/net/minecraft/util/datafix/fixes/CatTypeFix.class b/build/_compileJava_2/net/minecraft/util/datafix/fixes/CatTypeFix.class new file mode 100644 index 000000000..676b320ee Binary files /dev/null and b/build/_compileJava_2/net/minecraft/util/datafix/fixes/CatTypeFix.class differ diff --git a/build/_compileJava_2/net/minecraft/util/datafix/fixes/CauldronRenameFix.class b/build/_compileJava_2/net/minecraft/util/datafix/fixes/CauldronRenameFix.class new file mode 100644 index 000000000..f564ffcda Binary files /dev/null and b/build/_compileJava_2/net/minecraft/util/datafix/fixes/CauldronRenameFix.class differ diff --git a/build/_compileJava_2/net/minecraft/util/datafix/fixes/CavesAndCliffsRenames.class b/build/_compileJava_2/net/minecraft/util/datafix/fixes/CavesAndCliffsRenames.class new file mode 100644 index 000000000..55a591375 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/util/datafix/fixes/CavesAndCliffsRenames.class differ diff --git a/build/_compileJava_2/net/minecraft/util/datafix/fixes/ChunkBedBlockEntityInjecterFix.class b/build/_compileJava_2/net/minecraft/util/datafix/fixes/ChunkBedBlockEntityInjecterFix.class new file mode 100644 index 000000000..1f7afc4b0 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/util/datafix/fixes/ChunkBedBlockEntityInjecterFix.class differ diff --git a/build/_compileJava_2/net/minecraft/util/datafix/fixes/ChunkBiomeFix.class b/build/_compileJava_2/net/minecraft/util/datafix/fixes/ChunkBiomeFix.class new file mode 100644 index 000000000..f15c6398e Binary files /dev/null and b/build/_compileJava_2/net/minecraft/util/datafix/fixes/ChunkBiomeFix.class differ diff --git a/build/_compileJava_2/net/minecraft/util/datafix/fixes/ChunkDeleteIgnoredLightDataFix.class b/build/_compileJava_2/net/minecraft/util/datafix/fixes/ChunkDeleteIgnoredLightDataFix.class new file mode 100644 index 000000000..cecfa8412 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/util/datafix/fixes/ChunkDeleteIgnoredLightDataFix.class differ diff --git a/build/_compileJava_2/net/minecraft/util/datafix/fixes/ChunkDeleteLightFix.class b/build/_compileJava_2/net/minecraft/util/datafix/fixes/ChunkDeleteLightFix.class new file mode 100644 index 000000000..eb0c5eaf7 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/util/datafix/fixes/ChunkDeleteLightFix.class differ diff --git a/build/_compileJava_2/net/minecraft/util/datafix/fixes/ChunkHeightAndBiomeFix.class b/build/_compileJava_2/net/minecraft/util/datafix/fixes/ChunkHeightAndBiomeFix.class new file mode 100644 index 000000000..af2392cf5 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/util/datafix/fixes/ChunkHeightAndBiomeFix.class differ diff --git a/build/_compileJava_2/net/minecraft/util/datafix/fixes/ChunkLightRemoveFix.class b/build/_compileJava_2/net/minecraft/util/datafix/fixes/ChunkLightRemoveFix.class new file mode 100644 index 000000000..a17f573a8 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/util/datafix/fixes/ChunkLightRemoveFix.class differ diff --git a/build/_compileJava_2/net/minecraft/util/datafix/fixes/ChunkPalettedStorageFix$1.class b/build/_compileJava_2/net/minecraft/util/datafix/fixes/ChunkPalettedStorageFix$1.class new file mode 100644 index 000000000..9d3c916d4 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/util/datafix/fixes/ChunkPalettedStorageFix$1.class differ diff --git a/build/_compileJava_2/net/minecraft/util/datafix/fixes/ChunkPalettedStorageFix$DataLayer.class b/build/_compileJava_2/net/minecraft/util/datafix/fixes/ChunkPalettedStorageFix$DataLayer.class new file mode 100644 index 000000000..81f74afdc Binary files /dev/null and b/build/_compileJava_2/net/minecraft/util/datafix/fixes/ChunkPalettedStorageFix$DataLayer.class differ diff --git a/build/_compileJava_2/net/minecraft/util/datafix/fixes/ChunkPalettedStorageFix$Direction$Axis.class b/build/_compileJava_2/net/minecraft/util/datafix/fixes/ChunkPalettedStorageFix$Direction$Axis.class new file mode 100644 index 000000000..bc6f120fb Binary files /dev/null and b/build/_compileJava_2/net/minecraft/util/datafix/fixes/ChunkPalettedStorageFix$Direction$Axis.class differ diff --git a/build/_compileJava_2/net/minecraft/util/datafix/fixes/ChunkPalettedStorageFix$Direction$AxisDirection.class b/build/_compileJava_2/net/minecraft/util/datafix/fixes/ChunkPalettedStorageFix$Direction$AxisDirection.class new file mode 100644 index 000000000..fd6901067 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/util/datafix/fixes/ChunkPalettedStorageFix$Direction$AxisDirection.class differ diff --git a/build/_compileJava_2/net/minecraft/util/datafix/fixes/ChunkPalettedStorageFix$Direction.class b/build/_compileJava_2/net/minecraft/util/datafix/fixes/ChunkPalettedStorageFix$Direction.class new file mode 100644 index 000000000..2a2b1f990 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/util/datafix/fixes/ChunkPalettedStorageFix$Direction.class differ diff --git a/build/_compileJava_2/net/minecraft/util/datafix/fixes/ChunkPalettedStorageFix$Section.class b/build/_compileJava_2/net/minecraft/util/datafix/fixes/ChunkPalettedStorageFix$Section.class new file mode 100644 index 000000000..c2753517a Binary files /dev/null and b/build/_compileJava_2/net/minecraft/util/datafix/fixes/ChunkPalettedStorageFix$Section.class differ diff --git a/build/_compileJava_2/net/minecraft/util/datafix/fixes/ChunkPalettedStorageFix$UpgradeChunk.class b/build/_compileJava_2/net/minecraft/util/datafix/fixes/ChunkPalettedStorageFix$UpgradeChunk.class new file mode 100644 index 000000000..d00179027 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/util/datafix/fixes/ChunkPalettedStorageFix$UpgradeChunk.class differ diff --git a/build/_compileJava_2/net/minecraft/util/datafix/fixes/ChunkPalettedStorageFix.class b/build/_compileJava_2/net/minecraft/util/datafix/fixes/ChunkPalettedStorageFix.class new file mode 100644 index 000000000..6cd939a7d Binary files /dev/null and b/build/_compileJava_2/net/minecraft/util/datafix/fixes/ChunkPalettedStorageFix.class differ diff --git a/build/_compileJava_2/net/minecraft/util/datafix/fixes/ChunkProtoTickListFix$PoorMansPalettedContainer.class b/build/_compileJava_2/net/minecraft/util/datafix/fixes/ChunkProtoTickListFix$PoorMansPalettedContainer.class new file mode 100644 index 000000000..82076000b Binary files /dev/null and b/build/_compileJava_2/net/minecraft/util/datafix/fixes/ChunkProtoTickListFix$PoorMansPalettedContainer.class differ diff --git a/build/_compileJava_2/net/minecraft/util/datafix/fixes/ChunkProtoTickListFix.class b/build/_compileJava_2/net/minecraft/util/datafix/fixes/ChunkProtoTickListFix.class new file mode 100644 index 000000000..43da1a4ad Binary files /dev/null and b/build/_compileJava_2/net/minecraft/util/datafix/fixes/ChunkProtoTickListFix.class differ diff --git a/build/_compileJava_2/net/minecraft/util/datafix/fixes/ChunkRenamesFix.class b/build/_compileJava_2/net/minecraft/util/datafix/fixes/ChunkRenamesFix.class new file mode 100644 index 000000000..f6492e93d Binary files /dev/null and b/build/_compileJava_2/net/minecraft/util/datafix/fixes/ChunkRenamesFix.class differ diff --git a/build/_compileJava_2/net/minecraft/util/datafix/fixes/ChunkStatusFix.class b/build/_compileJava_2/net/minecraft/util/datafix/fixes/ChunkStatusFix.class new file mode 100644 index 000000000..51aae87b2 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/util/datafix/fixes/ChunkStatusFix.class differ diff --git a/build/_compileJava_2/net/minecraft/util/datafix/fixes/ChunkStatusFix2.class b/build/_compileJava_2/net/minecraft/util/datafix/fixes/ChunkStatusFix2.class new file mode 100644 index 000000000..b98f346fc Binary files /dev/null and b/build/_compileJava_2/net/minecraft/util/datafix/fixes/ChunkStatusFix2.class differ diff --git a/build/_compileJava_2/net/minecraft/util/datafix/fixes/ChunkStructuresTemplateRenameFix.class b/build/_compileJava_2/net/minecraft/util/datafix/fixes/ChunkStructuresTemplateRenameFix.class new file mode 100644 index 000000000..2ad9d7e5a Binary files /dev/null and b/build/_compileJava_2/net/minecraft/util/datafix/fixes/ChunkStructuresTemplateRenameFix.class differ diff --git a/build/_compileJava_2/net/minecraft/util/datafix/fixes/ChunkToProtochunkFix.class b/build/_compileJava_2/net/minecraft/util/datafix/fixes/ChunkToProtochunkFix.class new file mode 100644 index 000000000..34a198910 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/util/datafix/fixes/ChunkToProtochunkFix.class differ diff --git a/build/_compileJava_2/net/minecraft/util/datafix/fixes/ColorlessShulkerEntityFix.class b/build/_compileJava_2/net/minecraft/util/datafix/fixes/ColorlessShulkerEntityFix.class new file mode 100644 index 000000000..66d2ec908 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/util/datafix/fixes/ColorlessShulkerEntityFix.class differ diff --git a/build/_compileJava_2/net/minecraft/util/datafix/fixes/CriteriaRenameFix.class b/build/_compileJava_2/net/minecraft/util/datafix/fixes/CriteriaRenameFix.class new file mode 100644 index 000000000..e473ba141 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/util/datafix/fixes/CriteriaRenameFix.class differ diff --git a/build/_compileJava_2/net/minecraft/util/datafix/fixes/DecoratedPotFieldRenameFix.class b/build/_compileJava_2/net/minecraft/util/datafix/fixes/DecoratedPotFieldRenameFix.class new file mode 100644 index 000000000..2971bdffa Binary files /dev/null and b/build/_compileJava_2/net/minecraft/util/datafix/fixes/DecoratedPotFieldRenameFix.class differ diff --git a/build/_compileJava_2/net/minecraft/util/datafix/fixes/DyeItemRenameFix.class b/build/_compileJava_2/net/minecraft/util/datafix/fixes/DyeItemRenameFix.class new file mode 100644 index 000000000..11c68f819 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/util/datafix/fixes/DyeItemRenameFix.class differ diff --git a/build/_compileJava_2/net/minecraft/util/datafix/fixes/EffectDurationFix.class b/build/_compileJava_2/net/minecraft/util/datafix/fixes/EffectDurationFix.class new file mode 100644 index 000000000..30dd9f3a3 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/util/datafix/fixes/EffectDurationFix.class differ diff --git a/build/_compileJava_2/net/minecraft/util/datafix/fixes/EntityArmorStandSilentFix.class b/build/_compileJava_2/net/minecraft/util/datafix/fixes/EntityArmorStandSilentFix.class new file mode 100644 index 000000000..73d776719 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/util/datafix/fixes/EntityArmorStandSilentFix.class differ diff --git a/build/_compileJava_2/net/minecraft/util/datafix/fixes/EntityBlockStateFix.class b/build/_compileJava_2/net/minecraft/util/datafix/fixes/EntityBlockStateFix.class new file mode 100644 index 000000000..cf00e1263 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/util/datafix/fixes/EntityBlockStateFix.class differ diff --git a/build/_compileJava_2/net/minecraft/util/datafix/fixes/EntityBrushableBlockFieldsRenameFix.class b/build/_compileJava_2/net/minecraft/util/datafix/fixes/EntityBrushableBlockFieldsRenameFix.class new file mode 100644 index 000000000..2ab6f9936 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/util/datafix/fixes/EntityBrushableBlockFieldsRenameFix.class differ diff --git a/build/_compileJava_2/net/minecraft/util/datafix/fixes/EntityCatSplitFix.class b/build/_compileJava_2/net/minecraft/util/datafix/fixes/EntityCatSplitFix.class new file mode 100644 index 000000000..bc09efd9e Binary files /dev/null and b/build/_compileJava_2/net/minecraft/util/datafix/fixes/EntityCatSplitFix.class differ diff --git a/build/_compileJava_2/net/minecraft/util/datafix/fixes/EntityCodSalmonFix.class b/build/_compileJava_2/net/minecraft/util/datafix/fixes/EntityCodSalmonFix.class new file mode 100644 index 000000000..390ee75b7 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/util/datafix/fixes/EntityCodSalmonFix.class differ diff --git a/build/_compileJava_2/net/minecraft/util/datafix/fixes/EntityCustomNameToComponentFix.class b/build/_compileJava_2/net/minecraft/util/datafix/fixes/EntityCustomNameToComponentFix.class new file mode 100644 index 000000000..352d616d1 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/util/datafix/fixes/EntityCustomNameToComponentFix.class differ diff --git a/build/_compileJava_2/net/minecraft/util/datafix/fixes/EntityElderGuardianSplitFix.class b/build/_compileJava_2/net/minecraft/util/datafix/fixes/EntityElderGuardianSplitFix.class new file mode 100644 index 000000000..6594883b6 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/util/datafix/fixes/EntityElderGuardianSplitFix.class differ diff --git a/build/_compileJava_2/net/minecraft/util/datafix/fixes/EntityEquipmentToArmorAndHandFix.class b/build/_compileJava_2/net/minecraft/util/datafix/fixes/EntityEquipmentToArmorAndHandFix.class new file mode 100644 index 000000000..c341f3407 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/util/datafix/fixes/EntityEquipmentToArmorAndHandFix.class differ diff --git a/build/_compileJava_2/net/minecraft/util/datafix/fixes/EntityGoatMissingStateFix.class b/build/_compileJava_2/net/minecraft/util/datafix/fixes/EntityGoatMissingStateFix.class new file mode 100644 index 000000000..0e7738235 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/util/datafix/fixes/EntityGoatMissingStateFix.class differ diff --git a/build/_compileJava_2/net/minecraft/util/datafix/fixes/EntityHealthFix.class b/build/_compileJava_2/net/minecraft/util/datafix/fixes/EntityHealthFix.class new file mode 100644 index 000000000..97354e83d Binary files /dev/null and b/build/_compileJava_2/net/minecraft/util/datafix/fixes/EntityHealthFix.class differ diff --git a/build/_compileJava_2/net/minecraft/util/datafix/fixes/EntityHorseSaddleFix.class b/build/_compileJava_2/net/minecraft/util/datafix/fixes/EntityHorseSaddleFix.class new file mode 100644 index 000000000..818e9cffb Binary files /dev/null and b/build/_compileJava_2/net/minecraft/util/datafix/fixes/EntityHorseSaddleFix.class differ diff --git a/build/_compileJava_2/net/minecraft/util/datafix/fixes/EntityHorseSplitFix.class b/build/_compileJava_2/net/minecraft/util/datafix/fixes/EntityHorseSplitFix.class new file mode 100644 index 000000000..91a9b2d4a Binary files /dev/null and b/build/_compileJava_2/net/minecraft/util/datafix/fixes/EntityHorseSplitFix.class differ diff --git a/build/_compileJava_2/net/minecraft/util/datafix/fixes/EntityIdFix.class b/build/_compileJava_2/net/minecraft/util/datafix/fixes/EntityIdFix.class new file mode 100644 index 000000000..e9d868fba Binary files /dev/null and b/build/_compileJava_2/net/minecraft/util/datafix/fixes/EntityIdFix.class differ diff --git a/build/_compileJava_2/net/minecraft/util/datafix/fixes/EntityItemFrameDirectionFix.class b/build/_compileJava_2/net/minecraft/util/datafix/fixes/EntityItemFrameDirectionFix.class new file mode 100644 index 000000000..a185552ed Binary files /dev/null and b/build/_compileJava_2/net/minecraft/util/datafix/fixes/EntityItemFrameDirectionFix.class differ diff --git a/build/_compileJava_2/net/minecraft/util/datafix/fixes/EntityMinecartIdentifiersFix.class b/build/_compileJava_2/net/minecraft/util/datafix/fixes/EntityMinecartIdentifiersFix.class new file mode 100644 index 000000000..a5c83e280 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/util/datafix/fixes/EntityMinecartIdentifiersFix.class differ diff --git a/build/_compileJava_2/net/minecraft/util/datafix/fixes/EntityPaintingFieldsRenameFix.class b/build/_compileJava_2/net/minecraft/util/datafix/fixes/EntityPaintingFieldsRenameFix.class new file mode 100644 index 000000000..7c8e6889c Binary files /dev/null and b/build/_compileJava_2/net/minecraft/util/datafix/fixes/EntityPaintingFieldsRenameFix.class differ diff --git a/build/_compileJava_2/net/minecraft/util/datafix/fixes/EntityPaintingItemFrameDirectionFix.class b/build/_compileJava_2/net/minecraft/util/datafix/fixes/EntityPaintingItemFrameDirectionFix.class new file mode 100644 index 000000000..0ae8d2966 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/util/datafix/fixes/EntityPaintingItemFrameDirectionFix.class differ diff --git a/build/_compileJava_2/net/minecraft/util/datafix/fixes/EntityPaintingMotiveFix.class b/build/_compileJava_2/net/minecraft/util/datafix/fixes/EntityPaintingMotiveFix.class new file mode 100644 index 000000000..82901188b Binary files /dev/null and b/build/_compileJava_2/net/minecraft/util/datafix/fixes/EntityPaintingMotiveFix.class differ diff --git a/build/_compileJava_2/net/minecraft/util/datafix/fixes/EntityProjectileOwnerFix.class b/build/_compileJava_2/net/minecraft/util/datafix/fixes/EntityProjectileOwnerFix.class new file mode 100644 index 000000000..cea18f323 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/util/datafix/fixes/EntityProjectileOwnerFix.class differ diff --git a/build/_compileJava_2/net/minecraft/util/datafix/fixes/EntityPufferfishRenameFix.class b/build/_compileJava_2/net/minecraft/util/datafix/fixes/EntityPufferfishRenameFix.class new file mode 100644 index 000000000..adaddcb8f Binary files /dev/null and b/build/_compileJava_2/net/minecraft/util/datafix/fixes/EntityPufferfishRenameFix.class differ diff --git a/build/_compileJava_2/net/minecraft/util/datafix/fixes/EntityRavagerRenameFix.class b/build/_compileJava_2/net/minecraft/util/datafix/fixes/EntityRavagerRenameFix.class new file mode 100644 index 000000000..a7a08546b Binary files /dev/null and b/build/_compileJava_2/net/minecraft/util/datafix/fixes/EntityRavagerRenameFix.class differ diff --git a/build/_compileJava_2/net/minecraft/util/datafix/fixes/EntityRedundantChanceTagsFix.class b/build/_compileJava_2/net/minecraft/util/datafix/fixes/EntityRedundantChanceTagsFix.class new file mode 100644 index 000000000..7edadf129 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/util/datafix/fixes/EntityRedundantChanceTagsFix.class differ diff --git a/build/_compileJava_2/net/minecraft/util/datafix/fixes/EntityRenameFix.class b/build/_compileJava_2/net/minecraft/util/datafix/fixes/EntityRenameFix.class new file mode 100644 index 000000000..f5b99e23f Binary files /dev/null and b/build/_compileJava_2/net/minecraft/util/datafix/fixes/EntityRenameFix.class differ diff --git a/build/_compileJava_2/net/minecraft/util/datafix/fixes/EntityRidingToPassengersFix.class b/build/_compileJava_2/net/minecraft/util/datafix/fixes/EntityRidingToPassengersFix.class new file mode 100644 index 000000000..371b80f6d Binary files /dev/null and b/build/_compileJava_2/net/minecraft/util/datafix/fixes/EntityRidingToPassengersFix.class differ diff --git a/build/_compileJava_2/net/minecraft/util/datafix/fixes/EntityShulkerColorFix.class b/build/_compileJava_2/net/minecraft/util/datafix/fixes/EntityShulkerColorFix.class new file mode 100644 index 000000000..affb27c0d Binary files /dev/null and b/build/_compileJava_2/net/minecraft/util/datafix/fixes/EntityShulkerColorFix.class differ diff --git a/build/_compileJava_2/net/minecraft/util/datafix/fixes/EntityShulkerRotationFix.class b/build/_compileJava_2/net/minecraft/util/datafix/fixes/EntityShulkerRotationFix.class new file mode 100644 index 000000000..3157e7048 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/util/datafix/fixes/EntityShulkerRotationFix.class differ diff --git a/build/_compileJava_2/net/minecraft/util/datafix/fixes/EntitySkeletonSplitFix.class b/build/_compileJava_2/net/minecraft/util/datafix/fixes/EntitySkeletonSplitFix.class new file mode 100644 index 000000000..2beea2082 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/util/datafix/fixes/EntitySkeletonSplitFix.class differ diff --git a/build/_compileJava_2/net/minecraft/util/datafix/fixes/EntityStringUuidFix.class b/build/_compileJava_2/net/minecraft/util/datafix/fixes/EntityStringUuidFix.class new file mode 100644 index 000000000..c48da683f Binary files /dev/null and b/build/_compileJava_2/net/minecraft/util/datafix/fixes/EntityStringUuidFix.class differ diff --git a/build/_compileJava_2/net/minecraft/util/datafix/fixes/EntityTheRenameningFix.class b/build/_compileJava_2/net/minecraft/util/datafix/fixes/EntityTheRenameningFix.class new file mode 100644 index 000000000..c509d20c5 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/util/datafix/fixes/EntityTheRenameningFix.class differ diff --git a/build/_compileJava_2/net/minecraft/util/datafix/fixes/EntityTippedArrowFix.class b/build/_compileJava_2/net/minecraft/util/datafix/fixes/EntityTippedArrowFix.class new file mode 100644 index 000000000..75f1f7b1d Binary files /dev/null and b/build/_compileJava_2/net/minecraft/util/datafix/fixes/EntityTippedArrowFix.class differ diff --git a/build/_compileJava_2/net/minecraft/util/datafix/fixes/EntityUUIDFix.class b/build/_compileJava_2/net/minecraft/util/datafix/fixes/EntityUUIDFix.class new file mode 100644 index 000000000..395b1d6c2 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/util/datafix/fixes/EntityUUIDFix.class differ diff --git a/build/_compileJava_2/net/minecraft/util/datafix/fixes/EntityVariantFix.class b/build/_compileJava_2/net/minecraft/util/datafix/fixes/EntityVariantFix.class new file mode 100644 index 000000000..52a9a46c3 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/util/datafix/fixes/EntityVariantFix.class differ diff --git a/build/_compileJava_2/net/minecraft/util/datafix/fixes/EntityWolfColorFix.class b/build/_compileJava_2/net/minecraft/util/datafix/fixes/EntityWolfColorFix.class new file mode 100644 index 000000000..cdc8c14ca Binary files /dev/null and b/build/_compileJava_2/net/minecraft/util/datafix/fixes/EntityWolfColorFix.class differ diff --git a/build/_compileJava_2/net/minecraft/util/datafix/fixes/EntityZombieSplitFix.class b/build/_compileJava_2/net/minecraft/util/datafix/fixes/EntityZombieSplitFix.class new file mode 100644 index 000000000..2dc0e5491 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/util/datafix/fixes/EntityZombieSplitFix.class differ diff --git a/build/_compileJava_2/net/minecraft/util/datafix/fixes/EntityZombieVillagerTypeFix.class b/build/_compileJava_2/net/minecraft/util/datafix/fixes/EntityZombieVillagerTypeFix.class new file mode 100644 index 000000000..6e3d34d24 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/util/datafix/fixes/EntityZombieVillagerTypeFix.class differ diff --git a/build/_compileJava_2/net/minecraft/util/datafix/fixes/EntityZombifiedPiglinRenameFix.class b/build/_compileJava_2/net/minecraft/util/datafix/fixes/EntityZombifiedPiglinRenameFix.class new file mode 100644 index 000000000..bbf68dc84 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/util/datafix/fixes/EntityZombifiedPiglinRenameFix.class differ diff --git a/build/_compileJava_2/net/minecraft/util/datafix/fixes/FeatureFlagRemoveFix.class b/build/_compileJava_2/net/minecraft/util/datafix/fixes/FeatureFlagRemoveFix.class new file mode 100644 index 000000000..33449a4ba Binary files /dev/null and b/build/_compileJava_2/net/minecraft/util/datafix/fixes/FeatureFlagRemoveFix.class differ diff --git a/build/_compileJava_2/net/minecraft/util/datafix/fixes/FilteredBooksFix.class b/build/_compileJava_2/net/minecraft/util/datafix/fixes/FilteredBooksFix.class new file mode 100644 index 000000000..648d78d3e Binary files /dev/null and b/build/_compileJava_2/net/minecraft/util/datafix/fixes/FilteredBooksFix.class differ diff --git a/build/_compileJava_2/net/minecraft/util/datafix/fixes/FilteredSignsFix.class b/build/_compileJava_2/net/minecraft/util/datafix/fixes/FilteredSignsFix.class new file mode 100644 index 000000000..b00b3a46c Binary files /dev/null and b/build/_compileJava_2/net/minecraft/util/datafix/fixes/FilteredSignsFix.class differ diff --git a/build/_compileJava_2/net/minecraft/util/datafix/fixes/ForcePoiRebuild.class b/build/_compileJava_2/net/minecraft/util/datafix/fixes/ForcePoiRebuild.class new file mode 100644 index 000000000..19748b442 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/util/datafix/fixes/ForcePoiRebuild.class differ diff --git a/build/_compileJava_2/net/minecraft/util/datafix/fixes/FurnaceRecipeFix.class b/build/_compileJava_2/net/minecraft/util/datafix/fixes/FurnaceRecipeFix.class new file mode 100644 index 000000000..ee0917246 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/util/datafix/fixes/FurnaceRecipeFix.class differ diff --git a/build/_compileJava_2/net/minecraft/util/datafix/fixes/GoatHornIdFix.class b/build/_compileJava_2/net/minecraft/util/datafix/fixes/GoatHornIdFix.class new file mode 100644 index 000000000..54dc59e78 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/util/datafix/fixes/GoatHornIdFix.class differ diff --git a/build/_compileJava_2/net/minecraft/util/datafix/fixes/GossipUUIDFix.class b/build/_compileJava_2/net/minecraft/util/datafix/fixes/GossipUUIDFix.class new file mode 100644 index 000000000..db8a26f6e Binary files /dev/null and b/build/_compileJava_2/net/minecraft/util/datafix/fixes/GossipUUIDFix.class differ diff --git a/build/_compileJava_2/net/minecraft/util/datafix/fixes/HeightmapRenamingFix.class b/build/_compileJava_2/net/minecraft/util/datafix/fixes/HeightmapRenamingFix.class new file mode 100644 index 000000000..08bc2c745 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/util/datafix/fixes/HeightmapRenamingFix.class differ diff --git a/build/_compileJava_2/net/minecraft/util/datafix/fixes/IglooMetadataRemovalFix.class b/build/_compileJava_2/net/minecraft/util/datafix/fixes/IglooMetadataRemovalFix.class new file mode 100644 index 000000000..dc692161a Binary files /dev/null and b/build/_compileJava_2/net/minecraft/util/datafix/fixes/IglooMetadataRemovalFix.class differ diff --git a/build/_compileJava_2/net/minecraft/util/datafix/fixes/ItemBannerColorFix.class b/build/_compileJava_2/net/minecraft/util/datafix/fixes/ItemBannerColorFix.class new file mode 100644 index 000000000..3375d15f4 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/util/datafix/fixes/ItemBannerColorFix.class differ diff --git a/build/_compileJava_2/net/minecraft/util/datafix/fixes/ItemCustomNameToComponentFix.class b/build/_compileJava_2/net/minecraft/util/datafix/fixes/ItemCustomNameToComponentFix.class new file mode 100644 index 000000000..36bdbdf7e Binary files /dev/null and b/build/_compileJava_2/net/minecraft/util/datafix/fixes/ItemCustomNameToComponentFix.class differ diff --git a/build/_compileJava_2/net/minecraft/util/datafix/fixes/ItemIdFix.class b/build/_compileJava_2/net/minecraft/util/datafix/fixes/ItemIdFix.class new file mode 100644 index 000000000..e22f59665 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/util/datafix/fixes/ItemIdFix.class differ diff --git a/build/_compileJava_2/net/minecraft/util/datafix/fixes/ItemLoreFix.class b/build/_compileJava_2/net/minecraft/util/datafix/fixes/ItemLoreFix.class new file mode 100644 index 000000000..5ccf3762c Binary files /dev/null and b/build/_compileJava_2/net/minecraft/util/datafix/fixes/ItemLoreFix.class differ diff --git a/build/_compileJava_2/net/minecraft/util/datafix/fixes/ItemPotionFix.class b/build/_compileJava_2/net/minecraft/util/datafix/fixes/ItemPotionFix.class new file mode 100644 index 000000000..e54a2a73b Binary files /dev/null and b/build/_compileJava_2/net/minecraft/util/datafix/fixes/ItemPotionFix.class differ diff --git a/build/_compileJava_2/net/minecraft/util/datafix/fixes/ItemRemoveBlockEntityTagFix.class b/build/_compileJava_2/net/minecraft/util/datafix/fixes/ItemRemoveBlockEntityTagFix.class new file mode 100644 index 000000000..6c788de09 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/util/datafix/fixes/ItemRemoveBlockEntityTagFix.class differ diff --git a/build/_compileJava_2/net/minecraft/util/datafix/fixes/ItemRenameFix$1.class b/build/_compileJava_2/net/minecraft/util/datafix/fixes/ItemRenameFix$1.class new file mode 100644 index 000000000..7744be2b9 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/util/datafix/fixes/ItemRenameFix$1.class differ diff --git a/build/_compileJava_2/net/minecraft/util/datafix/fixes/ItemRenameFix.class b/build/_compileJava_2/net/minecraft/util/datafix/fixes/ItemRenameFix.class new file mode 100644 index 000000000..b9b101ebb Binary files /dev/null and b/build/_compileJava_2/net/minecraft/util/datafix/fixes/ItemRenameFix.class differ diff --git a/build/_compileJava_2/net/minecraft/util/datafix/fixes/ItemShulkerBoxColorFix.class b/build/_compileJava_2/net/minecraft/util/datafix/fixes/ItemShulkerBoxColorFix.class new file mode 100644 index 000000000..c2931218e Binary files /dev/null and b/build/_compileJava_2/net/minecraft/util/datafix/fixes/ItemShulkerBoxColorFix.class differ diff --git a/build/_compileJava_2/net/minecraft/util/datafix/fixes/ItemSpawnEggFix.class b/build/_compileJava_2/net/minecraft/util/datafix/fixes/ItemSpawnEggFix.class new file mode 100644 index 000000000..5d1a94cb0 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/util/datafix/fixes/ItemSpawnEggFix.class differ diff --git a/build/_compileJava_2/net/minecraft/util/datafix/fixes/ItemStackEnchantmentNamesFix.class b/build/_compileJava_2/net/minecraft/util/datafix/fixes/ItemStackEnchantmentNamesFix.class new file mode 100644 index 000000000..4820450e8 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/util/datafix/fixes/ItemStackEnchantmentNamesFix.class differ diff --git a/build/_compileJava_2/net/minecraft/util/datafix/fixes/ItemStackMapIdFix.class b/build/_compileJava_2/net/minecraft/util/datafix/fixes/ItemStackMapIdFix.class new file mode 100644 index 000000000..19efd4d16 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/util/datafix/fixes/ItemStackMapIdFix.class differ diff --git a/build/_compileJava_2/net/minecraft/util/datafix/fixes/ItemStackSpawnEggFix.class b/build/_compileJava_2/net/minecraft/util/datafix/fixes/ItemStackSpawnEggFix.class new file mode 100644 index 000000000..ba1eece8c Binary files /dev/null and b/build/_compileJava_2/net/minecraft/util/datafix/fixes/ItemStackSpawnEggFix.class differ diff --git a/build/_compileJava_2/net/minecraft/util/datafix/fixes/ItemStackTagFix.class b/build/_compileJava_2/net/minecraft/util/datafix/fixes/ItemStackTagFix.class new file mode 100644 index 000000000..c66ed9567 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/util/datafix/fixes/ItemStackTagFix.class differ diff --git a/build/_compileJava_2/net/minecraft/util/datafix/fixes/ItemStackTheFlatteningFix.class b/build/_compileJava_2/net/minecraft/util/datafix/fixes/ItemStackTheFlatteningFix.class new file mode 100644 index 000000000..acbf4033c Binary files /dev/null and b/build/_compileJava_2/net/minecraft/util/datafix/fixes/ItemStackTheFlatteningFix.class differ diff --git a/build/_compileJava_2/net/minecraft/util/datafix/fixes/ItemStackUUIDFix.class b/build/_compileJava_2/net/minecraft/util/datafix/fixes/ItemStackUUIDFix.class new file mode 100644 index 000000000..730709040 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/util/datafix/fixes/ItemStackUUIDFix.class differ diff --git a/build/_compileJava_2/net/minecraft/util/datafix/fixes/ItemWaterPotionFix.class b/build/_compileJava_2/net/minecraft/util/datafix/fixes/ItemWaterPotionFix.class new file mode 100644 index 000000000..fc4f21284 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/util/datafix/fixes/ItemWaterPotionFix.class differ diff --git a/build/_compileJava_2/net/minecraft/util/datafix/fixes/ItemWrittenBookPagesStrictJsonFix.class b/build/_compileJava_2/net/minecraft/util/datafix/fixes/ItemWrittenBookPagesStrictJsonFix.class new file mode 100644 index 000000000..4c10a122f Binary files /dev/null and b/build/_compileJava_2/net/minecraft/util/datafix/fixes/ItemWrittenBookPagesStrictJsonFix.class differ diff --git a/build/_compileJava_2/net/minecraft/util/datafix/fixes/JigsawPropertiesFix.class b/build/_compileJava_2/net/minecraft/util/datafix/fixes/JigsawPropertiesFix.class new file mode 100644 index 000000000..a614c794f Binary files /dev/null and b/build/_compileJava_2/net/minecraft/util/datafix/fixes/JigsawPropertiesFix.class differ diff --git a/build/_compileJava_2/net/minecraft/util/datafix/fixes/JigsawRotationFix.class b/build/_compileJava_2/net/minecraft/util/datafix/fixes/JigsawRotationFix.class new file mode 100644 index 000000000..086e377ad Binary files /dev/null and b/build/_compileJava_2/net/minecraft/util/datafix/fixes/JigsawRotationFix.class differ diff --git a/build/_compileJava_2/net/minecraft/util/datafix/fixes/LeavesFix$LeavesSection.class b/build/_compileJava_2/net/minecraft/util/datafix/fixes/LeavesFix$LeavesSection.class new file mode 100644 index 000000000..7696b29d1 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/util/datafix/fixes/LeavesFix$LeavesSection.class differ diff --git a/build/_compileJava_2/net/minecraft/util/datafix/fixes/LeavesFix$Section.class b/build/_compileJava_2/net/minecraft/util/datafix/fixes/LeavesFix$Section.class new file mode 100644 index 000000000..46e5678e3 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/util/datafix/fixes/LeavesFix$Section.class differ diff --git a/build/_compileJava_2/net/minecraft/util/datafix/fixes/LeavesFix.class b/build/_compileJava_2/net/minecraft/util/datafix/fixes/LeavesFix.class new file mode 100644 index 000000000..54863934d Binary files /dev/null and b/build/_compileJava_2/net/minecraft/util/datafix/fixes/LeavesFix.class differ diff --git a/build/_compileJava_2/net/minecraft/util/datafix/fixes/LegacyDragonFightFix.class b/build/_compileJava_2/net/minecraft/util/datafix/fixes/LegacyDragonFightFix.class new file mode 100644 index 000000000..39c6b0481 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/util/datafix/fixes/LegacyDragonFightFix.class differ diff --git a/build/_compileJava_2/net/minecraft/util/datafix/fixes/LevelDataGeneratorOptionsFix.class b/build/_compileJava_2/net/minecraft/util/datafix/fixes/LevelDataGeneratorOptionsFix.class new file mode 100644 index 000000000..1adf0c098 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/util/datafix/fixes/LevelDataGeneratorOptionsFix.class differ diff --git a/build/_compileJava_2/net/minecraft/util/datafix/fixes/LevelFlatGeneratorInfoFix.class b/build/_compileJava_2/net/minecraft/util/datafix/fixes/LevelFlatGeneratorInfoFix.class new file mode 100644 index 000000000..4037e31d3 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/util/datafix/fixes/LevelFlatGeneratorInfoFix.class differ diff --git a/build/_compileJava_2/net/minecraft/util/datafix/fixes/LevelUUIDFix.class b/build/_compileJava_2/net/minecraft/util/datafix/fixes/LevelUUIDFix.class new file mode 100644 index 000000000..a33f9285b Binary files /dev/null and b/build/_compileJava_2/net/minecraft/util/datafix/fixes/LevelUUIDFix.class differ diff --git a/build/_compileJava_2/net/minecraft/util/datafix/fixes/MapIdFix.class b/build/_compileJava_2/net/minecraft/util/datafix/fixes/MapIdFix.class new file mode 100644 index 000000000..588880e61 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/util/datafix/fixes/MapIdFix.class differ diff --git a/build/_compileJava_2/net/minecraft/util/datafix/fixes/MemoryExpiryDataFix.class b/build/_compileJava_2/net/minecraft/util/datafix/fixes/MemoryExpiryDataFix.class new file mode 100644 index 000000000..c71cadcd7 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/util/datafix/fixes/MemoryExpiryDataFix.class differ diff --git a/build/_compileJava_2/net/minecraft/util/datafix/fixes/MissingDimensionFix.class b/build/_compileJava_2/net/minecraft/util/datafix/fixes/MissingDimensionFix.class new file mode 100644 index 000000000..3f9bf7357 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/util/datafix/fixes/MissingDimensionFix.class differ diff --git a/build/_compileJava_2/net/minecraft/util/datafix/fixes/MobSpawnerEntityIdentifiersFix.class b/build/_compileJava_2/net/minecraft/util/datafix/fixes/MobSpawnerEntityIdentifiersFix.class new file mode 100644 index 000000000..43a5b54be Binary files /dev/null and b/build/_compileJava_2/net/minecraft/util/datafix/fixes/MobSpawnerEntityIdentifiersFix.class differ diff --git a/build/_compileJava_2/net/minecraft/util/datafix/fixes/NamedEntityFix.class b/build/_compileJava_2/net/minecraft/util/datafix/fixes/NamedEntityFix.class new file mode 100644 index 000000000..48c2c800f Binary files /dev/null and b/build/_compileJava_2/net/minecraft/util/datafix/fixes/NamedEntityFix.class differ diff --git a/build/_compileJava_2/net/minecraft/util/datafix/fixes/NamespacedTypeRenameFix.class b/build/_compileJava_2/net/minecraft/util/datafix/fixes/NamespacedTypeRenameFix.class new file mode 100644 index 000000000..9cdd62e1c Binary files /dev/null and b/build/_compileJava_2/net/minecraft/util/datafix/fixes/NamespacedTypeRenameFix.class differ diff --git a/build/_compileJava_2/net/minecraft/util/datafix/fixes/NewVillageFix.class b/build/_compileJava_2/net/minecraft/util/datafix/fixes/NewVillageFix.class new file mode 100644 index 000000000..f1c5db37e Binary files /dev/null and b/build/_compileJava_2/net/minecraft/util/datafix/fixes/NewVillageFix.class differ diff --git a/build/_compileJava_2/net/minecraft/util/datafix/fixes/ObjectiveDisplayNameFix.class b/build/_compileJava_2/net/minecraft/util/datafix/fixes/ObjectiveDisplayNameFix.class new file mode 100644 index 000000000..f18013fe8 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/util/datafix/fixes/ObjectiveDisplayNameFix.class differ diff --git a/build/_compileJava_2/net/minecraft/util/datafix/fixes/ObjectiveRenderTypeFix.class b/build/_compileJava_2/net/minecraft/util/datafix/fixes/ObjectiveRenderTypeFix.class new file mode 100644 index 000000000..0def19f38 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/util/datafix/fixes/ObjectiveRenderTypeFix.class differ diff --git a/build/_compileJava_2/net/minecraft/util/datafix/fixes/OminousBannerBlockEntityRenameFix.class b/build/_compileJava_2/net/minecraft/util/datafix/fixes/OminousBannerBlockEntityRenameFix.class new file mode 100644 index 000000000..c111719cc Binary files /dev/null and b/build/_compileJava_2/net/minecraft/util/datafix/fixes/OminousBannerBlockEntityRenameFix.class differ diff --git a/build/_compileJava_2/net/minecraft/util/datafix/fixes/OminousBannerRenameFix.class b/build/_compileJava_2/net/minecraft/util/datafix/fixes/OminousBannerRenameFix.class new file mode 100644 index 000000000..4a8d189ea Binary files /dev/null and b/build/_compileJava_2/net/minecraft/util/datafix/fixes/OminousBannerRenameFix.class differ diff --git a/build/_compileJava_2/net/minecraft/util/datafix/fixes/OptionsAccessibilityOnboardFix.class b/build/_compileJava_2/net/minecraft/util/datafix/fixes/OptionsAccessibilityOnboardFix.class new file mode 100644 index 000000000..8c646eacc Binary files /dev/null and b/build/_compileJava_2/net/minecraft/util/datafix/fixes/OptionsAccessibilityOnboardFix.class differ diff --git a/build/_compileJava_2/net/minecraft/util/datafix/fixes/OptionsAddTextBackgroundFix.class b/build/_compileJava_2/net/minecraft/util/datafix/fixes/OptionsAddTextBackgroundFix.class new file mode 100644 index 000000000..585f0336c Binary files /dev/null and b/build/_compileJava_2/net/minecraft/util/datafix/fixes/OptionsAddTextBackgroundFix.class differ diff --git a/build/_compileJava_2/net/minecraft/util/datafix/fixes/OptionsAmbientOcclusionFix.class b/build/_compileJava_2/net/minecraft/util/datafix/fixes/OptionsAmbientOcclusionFix.class new file mode 100644 index 000000000..9cbb4c6dc Binary files /dev/null and b/build/_compileJava_2/net/minecraft/util/datafix/fixes/OptionsAmbientOcclusionFix.class differ diff --git a/build/_compileJava_2/net/minecraft/util/datafix/fixes/OptionsForceVBOFix.class b/build/_compileJava_2/net/minecraft/util/datafix/fixes/OptionsForceVBOFix.class new file mode 100644 index 000000000..5d1798e52 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/util/datafix/fixes/OptionsForceVBOFix.class differ diff --git a/build/_compileJava_2/net/minecraft/util/datafix/fixes/OptionsKeyLwjgl3Fix.class b/build/_compileJava_2/net/minecraft/util/datafix/fixes/OptionsKeyLwjgl3Fix.class new file mode 100644 index 000000000..596c28d18 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/util/datafix/fixes/OptionsKeyLwjgl3Fix.class differ diff --git a/build/_compileJava_2/net/minecraft/util/datafix/fixes/OptionsKeyTranslationFix.class b/build/_compileJava_2/net/minecraft/util/datafix/fixes/OptionsKeyTranslationFix.class new file mode 100644 index 000000000..473ea66ce Binary files /dev/null and b/build/_compileJava_2/net/minecraft/util/datafix/fixes/OptionsKeyTranslationFix.class differ diff --git a/build/_compileJava_2/net/minecraft/util/datafix/fixes/OptionsLowerCaseLanguageFix.class b/build/_compileJava_2/net/minecraft/util/datafix/fixes/OptionsLowerCaseLanguageFix.class new file mode 100644 index 000000000..875649689 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/util/datafix/fixes/OptionsLowerCaseLanguageFix.class differ diff --git a/build/_compileJava_2/net/minecraft/util/datafix/fixes/OptionsProgrammerArtFix.class b/build/_compileJava_2/net/minecraft/util/datafix/fixes/OptionsProgrammerArtFix.class new file mode 100644 index 000000000..c612a41b4 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/util/datafix/fixes/OptionsProgrammerArtFix.class differ diff --git a/build/_compileJava_2/net/minecraft/util/datafix/fixes/OptionsRenameFieldFix.class b/build/_compileJava_2/net/minecraft/util/datafix/fixes/OptionsRenameFieldFix.class new file mode 100644 index 000000000..12bf69549 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/util/datafix/fixes/OptionsRenameFieldFix.class differ diff --git a/build/_compileJava_2/net/minecraft/util/datafix/fixes/OverreachingTickFix.class b/build/_compileJava_2/net/minecraft/util/datafix/fixes/OverreachingTickFix.class new file mode 100644 index 000000000..983a32a38 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/util/datafix/fixes/OverreachingTickFix.class differ diff --git a/build/_compileJava_2/net/minecraft/util/datafix/fixes/PlayerUUIDFix.class b/build/_compileJava_2/net/minecraft/util/datafix/fixes/PlayerUUIDFix.class new file mode 100644 index 000000000..1301d8122 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/util/datafix/fixes/PlayerUUIDFix.class differ diff --git a/build/_compileJava_2/net/minecraft/util/datafix/fixes/PoiTypeRemoveFix.class b/build/_compileJava_2/net/minecraft/util/datafix/fixes/PoiTypeRemoveFix.class new file mode 100644 index 000000000..e7550767e Binary files /dev/null and b/build/_compileJava_2/net/minecraft/util/datafix/fixes/PoiTypeRemoveFix.class differ diff --git a/build/_compileJava_2/net/minecraft/util/datafix/fixes/PoiTypeRenameFix.class b/build/_compileJava_2/net/minecraft/util/datafix/fixes/PoiTypeRenameFix.class new file mode 100644 index 000000000..71d41182c Binary files /dev/null and b/build/_compileJava_2/net/minecraft/util/datafix/fixes/PoiTypeRenameFix.class differ diff --git a/build/_compileJava_2/net/minecraft/util/datafix/fixes/RecipesFix.class b/build/_compileJava_2/net/minecraft/util/datafix/fixes/RecipesFix.class new file mode 100644 index 000000000..429f1b507 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/util/datafix/fixes/RecipesFix.class differ diff --git a/build/_compileJava_2/net/minecraft/util/datafix/fixes/RecipesRenameningFix.class b/build/_compileJava_2/net/minecraft/util/datafix/fixes/RecipesRenameningFix.class new file mode 100644 index 000000000..f8443f9eb Binary files /dev/null and b/build/_compileJava_2/net/minecraft/util/datafix/fixes/RecipesRenameningFix.class differ diff --git a/build/_compileJava_2/net/minecraft/util/datafix/fixes/RedstoneWireConnectionsFix.class b/build/_compileJava_2/net/minecraft/util/datafix/fixes/RedstoneWireConnectionsFix.class new file mode 100644 index 000000000..bbefd58e8 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/util/datafix/fixes/RedstoneWireConnectionsFix.class differ diff --git a/build/_compileJava_2/net/minecraft/util/datafix/fixes/References.class b/build/_compileJava_2/net/minecraft/util/datafix/fixes/References.class new file mode 100644 index 000000000..b95b0e390 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/util/datafix/fixes/References.class differ diff --git a/build/_compileJava_2/net/minecraft/util/datafix/fixes/RemapChunkStatusFix.class b/build/_compileJava_2/net/minecraft/util/datafix/fixes/RemapChunkStatusFix.class new file mode 100644 index 000000000..56c0ac3a0 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/util/datafix/fixes/RemapChunkStatusFix.class differ diff --git a/build/_compileJava_2/net/minecraft/util/datafix/fixes/RemoveGolemGossipFix.class b/build/_compileJava_2/net/minecraft/util/datafix/fixes/RemoveGolemGossipFix.class new file mode 100644 index 000000000..4d0bffaf1 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/util/datafix/fixes/RemoveGolemGossipFix.class differ diff --git a/build/_compileJava_2/net/minecraft/util/datafix/fixes/RenamedCoralFansFix.class b/build/_compileJava_2/net/minecraft/util/datafix/fixes/RenamedCoralFansFix.class new file mode 100644 index 000000000..4872efb5f Binary files /dev/null and b/build/_compileJava_2/net/minecraft/util/datafix/fixes/RenamedCoralFansFix.class differ diff --git a/build/_compileJava_2/net/minecraft/util/datafix/fixes/RenamedCoralFix.class b/build/_compileJava_2/net/minecraft/util/datafix/fixes/RenamedCoralFix.class new file mode 100644 index 000000000..93986167f Binary files /dev/null and b/build/_compileJava_2/net/minecraft/util/datafix/fixes/RenamedCoralFix.class differ diff --git a/build/_compileJava_2/net/minecraft/util/datafix/fixes/ReorganizePoi.class b/build/_compileJava_2/net/minecraft/util/datafix/fixes/ReorganizePoi.class new file mode 100644 index 000000000..96212f5d1 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/util/datafix/fixes/ReorganizePoi.class differ diff --git a/build/_compileJava_2/net/minecraft/util/datafix/fixes/SavedDataFeaturePoolElementFix.class b/build/_compileJava_2/net/minecraft/util/datafix/fixes/SavedDataFeaturePoolElementFix.class new file mode 100644 index 000000000..9ddc9adf0 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/util/datafix/fixes/SavedDataFeaturePoolElementFix.class differ diff --git a/build/_compileJava_2/net/minecraft/util/datafix/fixes/SavedDataUUIDFix.class b/build/_compileJava_2/net/minecraft/util/datafix/fixes/SavedDataUUIDFix.class new file mode 100644 index 000000000..d459b0588 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/util/datafix/fixes/SavedDataUUIDFix.class differ diff --git a/build/_compileJava_2/net/minecraft/util/datafix/fixes/SimpleEntityRenameFix.class b/build/_compileJava_2/net/minecraft/util/datafix/fixes/SimpleEntityRenameFix.class new file mode 100644 index 000000000..938f13033 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/util/datafix/fixes/SimpleEntityRenameFix.class differ diff --git a/build/_compileJava_2/net/minecraft/util/datafix/fixes/SimplestEntityRenameFix.class b/build/_compileJava_2/net/minecraft/util/datafix/fixes/SimplestEntityRenameFix.class new file mode 100644 index 000000000..aadd30a5b Binary files /dev/null and b/build/_compileJava_2/net/minecraft/util/datafix/fixes/SimplestEntityRenameFix.class differ diff --git a/build/_compileJava_2/net/minecraft/util/datafix/fixes/SpawnerDataFix.class b/build/_compileJava_2/net/minecraft/util/datafix/fixes/SpawnerDataFix.class new file mode 100644 index 000000000..8323a1082 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/util/datafix/fixes/SpawnerDataFix.class differ diff --git a/build/_compileJava_2/net/minecraft/util/datafix/fixes/StatsCounterFix.class b/build/_compileJava_2/net/minecraft/util/datafix/fixes/StatsCounterFix.class new file mode 100644 index 000000000..cf0e94d26 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/util/datafix/fixes/StatsCounterFix.class differ diff --git a/build/_compileJava_2/net/minecraft/util/datafix/fixes/StatsRenameFix.class b/build/_compileJava_2/net/minecraft/util/datafix/fixes/StatsRenameFix.class new file mode 100644 index 000000000..fc0414071 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/util/datafix/fixes/StatsRenameFix.class differ diff --git a/build/_compileJava_2/net/minecraft/util/datafix/fixes/StriderGravityFix.class b/build/_compileJava_2/net/minecraft/util/datafix/fixes/StriderGravityFix.class new file mode 100644 index 000000000..9c23ad8d9 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/util/datafix/fixes/StriderGravityFix.class differ diff --git a/build/_compileJava_2/net/minecraft/util/datafix/fixes/StructureReferenceCountFix.class b/build/_compileJava_2/net/minecraft/util/datafix/fixes/StructureReferenceCountFix.class new file mode 100644 index 000000000..619eeda31 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/util/datafix/fixes/StructureReferenceCountFix.class differ diff --git a/build/_compileJava_2/net/minecraft/util/datafix/fixes/StructureSettingsFlattenFix.class b/build/_compileJava_2/net/minecraft/util/datafix/fixes/StructureSettingsFlattenFix.class new file mode 100644 index 000000000..2fdf8fbec Binary files /dev/null and b/build/_compileJava_2/net/minecraft/util/datafix/fixes/StructureSettingsFlattenFix.class differ diff --git a/build/_compileJava_2/net/minecraft/util/datafix/fixes/StructuresBecomeConfiguredFix$Conversion.class b/build/_compileJava_2/net/minecraft/util/datafix/fixes/StructuresBecomeConfiguredFix$Conversion.class new file mode 100644 index 000000000..786d75410 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/util/datafix/fixes/StructuresBecomeConfiguredFix$Conversion.class differ diff --git a/build/_compileJava_2/net/minecraft/util/datafix/fixes/StructuresBecomeConfiguredFix.class b/build/_compileJava_2/net/minecraft/util/datafix/fixes/StructuresBecomeConfiguredFix.class new file mode 100644 index 000000000..ce2b558e5 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/util/datafix/fixes/StructuresBecomeConfiguredFix.class differ diff --git a/build/_compileJava_2/net/minecraft/util/datafix/fixes/TeamDisplayNameFix.class b/build/_compileJava_2/net/minecraft/util/datafix/fixes/TeamDisplayNameFix.class new file mode 100644 index 000000000..d77ba7b58 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/util/datafix/fixes/TeamDisplayNameFix.class differ diff --git a/build/_compileJava_2/net/minecraft/util/datafix/fixes/TrappedChestBlockEntityFix$TrappedChestSection.class b/build/_compileJava_2/net/minecraft/util/datafix/fixes/TrappedChestBlockEntityFix$TrappedChestSection.class new file mode 100644 index 000000000..8fcc218c5 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/util/datafix/fixes/TrappedChestBlockEntityFix$TrappedChestSection.class differ diff --git a/build/_compileJava_2/net/minecraft/util/datafix/fixes/TrappedChestBlockEntityFix.class b/build/_compileJava_2/net/minecraft/util/datafix/fixes/TrappedChestBlockEntityFix.class new file mode 100644 index 000000000..4be43fe36 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/util/datafix/fixes/TrappedChestBlockEntityFix.class differ diff --git a/build/_compileJava_2/net/minecraft/util/datafix/fixes/VariantRenameFix.class b/build/_compileJava_2/net/minecraft/util/datafix/fixes/VariantRenameFix.class new file mode 100644 index 000000000..c3b243a17 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/util/datafix/fixes/VariantRenameFix.class differ diff --git a/build/_compileJava_2/net/minecraft/util/datafix/fixes/VillagerDataFix.class b/build/_compileJava_2/net/minecraft/util/datafix/fixes/VillagerDataFix.class new file mode 100644 index 000000000..a8bc3b95d Binary files /dev/null and b/build/_compileJava_2/net/minecraft/util/datafix/fixes/VillagerDataFix.class differ diff --git a/build/_compileJava_2/net/minecraft/util/datafix/fixes/VillagerFollowRangeFix.class b/build/_compileJava_2/net/minecraft/util/datafix/fixes/VillagerFollowRangeFix.class new file mode 100644 index 000000000..25d4a54e1 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/util/datafix/fixes/VillagerFollowRangeFix.class differ diff --git a/build/_compileJava_2/net/minecraft/util/datafix/fixes/VillagerRebuildLevelAndXpFix.class b/build/_compileJava_2/net/minecraft/util/datafix/fixes/VillagerRebuildLevelAndXpFix.class new file mode 100644 index 000000000..831e1a33c Binary files /dev/null and b/build/_compileJava_2/net/minecraft/util/datafix/fixes/VillagerRebuildLevelAndXpFix.class differ diff --git a/build/_compileJava_2/net/minecraft/util/datafix/fixes/VillagerTradeFix.class b/build/_compileJava_2/net/minecraft/util/datafix/fixes/VillagerTradeFix.class new file mode 100644 index 000000000..b6294873b Binary files /dev/null and b/build/_compileJava_2/net/minecraft/util/datafix/fixes/VillagerTradeFix.class differ diff --git a/build/_compileJava_2/net/minecraft/util/datafix/fixes/WallPropertyFix.class b/build/_compileJava_2/net/minecraft/util/datafix/fixes/WallPropertyFix.class new file mode 100644 index 000000000..e856a3274 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/util/datafix/fixes/WallPropertyFix.class differ diff --git a/build/_compileJava_2/net/minecraft/util/datafix/fixes/WeaponSmithChestLootTableFix.class b/build/_compileJava_2/net/minecraft/util/datafix/fixes/WeaponSmithChestLootTableFix.class new file mode 100644 index 000000000..621736d73 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/util/datafix/fixes/WeaponSmithChestLootTableFix.class differ diff --git a/build/_compileJava_2/net/minecraft/util/datafix/fixes/WorldGenSettingsDisallowOldCustomWorldsFix.class b/build/_compileJava_2/net/minecraft/util/datafix/fixes/WorldGenSettingsDisallowOldCustomWorldsFix.class new file mode 100644 index 000000000..494f52949 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/util/datafix/fixes/WorldGenSettingsDisallowOldCustomWorldsFix.class differ diff --git a/build/_compileJava_2/net/minecraft/util/datafix/fixes/WorldGenSettingsFix$StructureFeatureConfiguration.class b/build/_compileJava_2/net/minecraft/util/datafix/fixes/WorldGenSettingsFix$StructureFeatureConfiguration.class new file mode 100644 index 000000000..63c1fa421 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/util/datafix/fixes/WorldGenSettingsFix$StructureFeatureConfiguration.class differ diff --git a/build/_compileJava_2/net/minecraft/util/datafix/fixes/WorldGenSettingsFix.class b/build/_compileJava_2/net/minecraft/util/datafix/fixes/WorldGenSettingsFix.class new file mode 100644 index 000000000..11090348d Binary files /dev/null and b/build/_compileJava_2/net/minecraft/util/datafix/fixes/WorldGenSettingsFix.class differ diff --git a/build/_compileJava_2/net/minecraft/util/datafix/fixes/WorldGenSettingsHeightAndBiomeFix.class b/build/_compileJava_2/net/minecraft/util/datafix/fixes/WorldGenSettingsHeightAndBiomeFix.class new file mode 100644 index 000000000..b27f2e84e Binary files /dev/null and b/build/_compileJava_2/net/minecraft/util/datafix/fixes/WorldGenSettingsHeightAndBiomeFix.class differ diff --git a/build/_compileJava_2/net/minecraft/util/datafix/fixes/WriteAndReadFix.class b/build/_compileJava_2/net/minecraft/util/datafix/fixes/WriteAndReadFix.class new file mode 100644 index 000000000..1ad28ca9e Binary files /dev/null and b/build/_compileJava_2/net/minecraft/util/datafix/fixes/WriteAndReadFix.class differ diff --git a/build/_compileJava_2/net/minecraft/util/datafix/fixes/ZombieVillagerRebuildXpFix.class b/build/_compileJava_2/net/minecraft/util/datafix/fixes/ZombieVillagerRebuildXpFix.class new file mode 100644 index 000000000..cc6e43da1 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/util/datafix/fixes/ZombieVillagerRebuildXpFix.class differ diff --git a/build/_compileJava_2/net/minecraft/util/datafix/fixes/package-info.class b/build/_compileJava_2/net/minecraft/util/datafix/fixes/package-info.class new file mode 100644 index 000000000..8e2832112 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/util/datafix/fixes/package-info.class differ diff --git a/build/_compileJava_2/net/minecraft/util/datafix/package-info.class b/build/_compileJava_2/net/minecraft/util/datafix/package-info.class new file mode 100644 index 000000000..79373c529 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/util/datafix/package-info.class differ diff --git a/build/_compileJava_2/net/minecraft/util/datafix/schemas/NamespacedSchema$1.class b/build/_compileJava_2/net/minecraft/util/datafix/schemas/NamespacedSchema$1.class new file mode 100644 index 000000000..ed94d00aa Binary files /dev/null and b/build/_compileJava_2/net/minecraft/util/datafix/schemas/NamespacedSchema$1.class differ diff --git a/build/_compileJava_2/net/minecraft/util/datafix/schemas/NamespacedSchema.class b/build/_compileJava_2/net/minecraft/util/datafix/schemas/NamespacedSchema.class new file mode 100644 index 000000000..36733e242 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/util/datafix/schemas/NamespacedSchema.class differ diff --git a/build/_compileJava_2/net/minecraft/util/datafix/schemas/V100.class b/build/_compileJava_2/net/minecraft/util/datafix/schemas/V100.class new file mode 100644 index 000000000..dc8bd81ba Binary files /dev/null and b/build/_compileJava_2/net/minecraft/util/datafix/schemas/V100.class differ diff --git a/build/_compileJava_2/net/minecraft/util/datafix/schemas/V102.class b/build/_compileJava_2/net/minecraft/util/datafix/schemas/V102.class new file mode 100644 index 000000000..c94e0ca6c Binary files /dev/null and b/build/_compileJava_2/net/minecraft/util/datafix/schemas/V102.class differ diff --git a/build/_compileJava_2/net/minecraft/util/datafix/schemas/V1022.class b/build/_compileJava_2/net/minecraft/util/datafix/schemas/V1022.class new file mode 100644 index 000000000..672a0578b Binary files /dev/null and b/build/_compileJava_2/net/minecraft/util/datafix/schemas/V1022.class differ diff --git a/build/_compileJava_2/net/minecraft/util/datafix/schemas/V106.class b/build/_compileJava_2/net/minecraft/util/datafix/schemas/V106.class new file mode 100644 index 000000000..97ecdd3e8 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/util/datafix/schemas/V106.class differ diff --git a/build/_compileJava_2/net/minecraft/util/datafix/schemas/V107.class b/build/_compileJava_2/net/minecraft/util/datafix/schemas/V107.class new file mode 100644 index 000000000..f042c0f9d Binary files /dev/null and b/build/_compileJava_2/net/minecraft/util/datafix/schemas/V107.class differ diff --git a/build/_compileJava_2/net/minecraft/util/datafix/schemas/V1125.class b/build/_compileJava_2/net/minecraft/util/datafix/schemas/V1125.class new file mode 100644 index 000000000..da82241d6 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/util/datafix/schemas/V1125.class differ diff --git a/build/_compileJava_2/net/minecraft/util/datafix/schemas/V135.class b/build/_compileJava_2/net/minecraft/util/datafix/schemas/V135.class new file mode 100644 index 000000000..17fe60950 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/util/datafix/schemas/V135.class differ diff --git a/build/_compileJava_2/net/minecraft/util/datafix/schemas/V143.class b/build/_compileJava_2/net/minecraft/util/datafix/schemas/V143.class new file mode 100644 index 000000000..d4dd0e53e Binary files /dev/null and b/build/_compileJava_2/net/minecraft/util/datafix/schemas/V143.class differ diff --git a/build/_compileJava_2/net/minecraft/util/datafix/schemas/V1451.class b/build/_compileJava_2/net/minecraft/util/datafix/schemas/V1451.class new file mode 100644 index 000000000..5297b0553 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/util/datafix/schemas/V1451.class differ diff --git a/build/_compileJava_2/net/minecraft/util/datafix/schemas/V1451_1.class b/build/_compileJava_2/net/minecraft/util/datafix/schemas/V1451_1.class new file mode 100644 index 000000000..8cf244e70 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/util/datafix/schemas/V1451_1.class differ diff --git a/build/_compileJava_2/net/minecraft/util/datafix/schemas/V1451_2.class b/build/_compileJava_2/net/minecraft/util/datafix/schemas/V1451_2.class new file mode 100644 index 000000000..c1cae35fc Binary files /dev/null and b/build/_compileJava_2/net/minecraft/util/datafix/schemas/V1451_2.class differ diff --git a/build/_compileJava_2/net/minecraft/util/datafix/schemas/V1451_3.class b/build/_compileJava_2/net/minecraft/util/datafix/schemas/V1451_3.class new file mode 100644 index 000000000..d3dafe030 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/util/datafix/schemas/V1451_3.class differ diff --git a/build/_compileJava_2/net/minecraft/util/datafix/schemas/V1451_4.class b/build/_compileJava_2/net/minecraft/util/datafix/schemas/V1451_4.class new file mode 100644 index 000000000..d3d23591f Binary files /dev/null and b/build/_compileJava_2/net/minecraft/util/datafix/schemas/V1451_4.class differ diff --git a/build/_compileJava_2/net/minecraft/util/datafix/schemas/V1451_5.class b/build/_compileJava_2/net/minecraft/util/datafix/schemas/V1451_5.class new file mode 100644 index 000000000..a24a0cc7a Binary files /dev/null and b/build/_compileJava_2/net/minecraft/util/datafix/schemas/V1451_5.class differ diff --git a/build/_compileJava_2/net/minecraft/util/datafix/schemas/V1451_6$1.class b/build/_compileJava_2/net/minecraft/util/datafix/schemas/V1451_6$1.class new file mode 100644 index 000000000..3e19088fb Binary files /dev/null and b/build/_compileJava_2/net/minecraft/util/datafix/schemas/V1451_6$1.class differ diff --git a/build/_compileJava_2/net/minecraft/util/datafix/schemas/V1451_6$2.class b/build/_compileJava_2/net/minecraft/util/datafix/schemas/V1451_6$2.class new file mode 100644 index 000000000..b6ac7f5a1 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/util/datafix/schemas/V1451_6$2.class differ diff --git a/build/_compileJava_2/net/minecraft/util/datafix/schemas/V1451_6.class b/build/_compileJava_2/net/minecraft/util/datafix/schemas/V1451_6.class new file mode 100644 index 000000000..1cb72a2ca Binary files /dev/null and b/build/_compileJava_2/net/minecraft/util/datafix/schemas/V1451_6.class differ diff --git a/build/_compileJava_2/net/minecraft/util/datafix/schemas/V1460.class b/build/_compileJava_2/net/minecraft/util/datafix/schemas/V1460.class new file mode 100644 index 000000000..34eabb9e9 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/util/datafix/schemas/V1460.class differ diff --git a/build/_compileJava_2/net/minecraft/util/datafix/schemas/V1466.class b/build/_compileJava_2/net/minecraft/util/datafix/schemas/V1466.class new file mode 100644 index 000000000..935c73240 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/util/datafix/schemas/V1466.class differ diff --git a/build/_compileJava_2/net/minecraft/util/datafix/schemas/V1470.class b/build/_compileJava_2/net/minecraft/util/datafix/schemas/V1470.class new file mode 100644 index 000000000..e5b312e54 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/util/datafix/schemas/V1470.class differ diff --git a/build/_compileJava_2/net/minecraft/util/datafix/schemas/V1481.class b/build/_compileJava_2/net/minecraft/util/datafix/schemas/V1481.class new file mode 100644 index 000000000..2ddd82198 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/util/datafix/schemas/V1481.class differ diff --git a/build/_compileJava_2/net/minecraft/util/datafix/schemas/V1483.class b/build/_compileJava_2/net/minecraft/util/datafix/schemas/V1483.class new file mode 100644 index 000000000..cef5c99e4 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/util/datafix/schemas/V1483.class differ diff --git a/build/_compileJava_2/net/minecraft/util/datafix/schemas/V1486.class b/build/_compileJava_2/net/minecraft/util/datafix/schemas/V1486.class new file mode 100644 index 000000000..b3c411c49 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/util/datafix/schemas/V1486.class differ diff --git a/build/_compileJava_2/net/minecraft/util/datafix/schemas/V1510.class b/build/_compileJava_2/net/minecraft/util/datafix/schemas/V1510.class new file mode 100644 index 000000000..076c0d403 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/util/datafix/schemas/V1510.class differ diff --git a/build/_compileJava_2/net/minecraft/util/datafix/schemas/V1800.class b/build/_compileJava_2/net/minecraft/util/datafix/schemas/V1800.class new file mode 100644 index 000000000..07483f365 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/util/datafix/schemas/V1800.class differ diff --git a/build/_compileJava_2/net/minecraft/util/datafix/schemas/V1801.class b/build/_compileJava_2/net/minecraft/util/datafix/schemas/V1801.class new file mode 100644 index 000000000..6e1553dd7 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/util/datafix/schemas/V1801.class differ diff --git a/build/_compileJava_2/net/minecraft/util/datafix/schemas/V1904.class b/build/_compileJava_2/net/minecraft/util/datafix/schemas/V1904.class new file mode 100644 index 000000000..4c3a559e4 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/util/datafix/schemas/V1904.class differ diff --git a/build/_compileJava_2/net/minecraft/util/datafix/schemas/V1906.class b/build/_compileJava_2/net/minecraft/util/datafix/schemas/V1906.class new file mode 100644 index 000000000..3d5eeb12c Binary files /dev/null and b/build/_compileJava_2/net/minecraft/util/datafix/schemas/V1906.class differ diff --git a/build/_compileJava_2/net/minecraft/util/datafix/schemas/V1909.class b/build/_compileJava_2/net/minecraft/util/datafix/schemas/V1909.class new file mode 100644 index 000000000..eeedb9cf8 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/util/datafix/schemas/V1909.class differ diff --git a/build/_compileJava_2/net/minecraft/util/datafix/schemas/V1920.class b/build/_compileJava_2/net/minecraft/util/datafix/schemas/V1920.class new file mode 100644 index 000000000..e0e5686cc Binary files /dev/null and b/build/_compileJava_2/net/minecraft/util/datafix/schemas/V1920.class differ diff --git a/build/_compileJava_2/net/minecraft/util/datafix/schemas/V1928.class b/build/_compileJava_2/net/minecraft/util/datafix/schemas/V1928.class new file mode 100644 index 000000000..ef809aeb0 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/util/datafix/schemas/V1928.class differ diff --git a/build/_compileJava_2/net/minecraft/util/datafix/schemas/V1929.class b/build/_compileJava_2/net/minecraft/util/datafix/schemas/V1929.class new file mode 100644 index 000000000..8d5cba1b1 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/util/datafix/schemas/V1929.class differ diff --git a/build/_compileJava_2/net/minecraft/util/datafix/schemas/V1931.class b/build/_compileJava_2/net/minecraft/util/datafix/schemas/V1931.class new file mode 100644 index 000000000..1bb563dcf Binary files /dev/null and b/build/_compileJava_2/net/minecraft/util/datafix/schemas/V1931.class differ diff --git a/build/_compileJava_2/net/minecraft/util/datafix/schemas/V2100.class b/build/_compileJava_2/net/minecraft/util/datafix/schemas/V2100.class new file mode 100644 index 000000000..04c9ef16a Binary files /dev/null and b/build/_compileJava_2/net/minecraft/util/datafix/schemas/V2100.class differ diff --git a/build/_compileJava_2/net/minecraft/util/datafix/schemas/V2501.class b/build/_compileJava_2/net/minecraft/util/datafix/schemas/V2501.class new file mode 100644 index 000000000..49c594a1e Binary files /dev/null and b/build/_compileJava_2/net/minecraft/util/datafix/schemas/V2501.class differ diff --git a/build/_compileJava_2/net/minecraft/util/datafix/schemas/V2502.class b/build/_compileJava_2/net/minecraft/util/datafix/schemas/V2502.class new file mode 100644 index 000000000..f6272aa4b Binary files /dev/null and b/build/_compileJava_2/net/minecraft/util/datafix/schemas/V2502.class differ diff --git a/build/_compileJava_2/net/minecraft/util/datafix/schemas/V2505.class b/build/_compileJava_2/net/minecraft/util/datafix/schemas/V2505.class new file mode 100644 index 000000000..20e2f2a4e Binary files /dev/null and b/build/_compileJava_2/net/minecraft/util/datafix/schemas/V2505.class differ diff --git a/build/_compileJava_2/net/minecraft/util/datafix/schemas/V2509.class b/build/_compileJava_2/net/minecraft/util/datafix/schemas/V2509.class new file mode 100644 index 000000000..2113717eb Binary files /dev/null and b/build/_compileJava_2/net/minecraft/util/datafix/schemas/V2509.class differ diff --git a/build/_compileJava_2/net/minecraft/util/datafix/schemas/V2519.class b/build/_compileJava_2/net/minecraft/util/datafix/schemas/V2519.class new file mode 100644 index 000000000..c84e1c9db Binary files /dev/null and b/build/_compileJava_2/net/minecraft/util/datafix/schemas/V2519.class differ diff --git a/build/_compileJava_2/net/minecraft/util/datafix/schemas/V2522.class b/build/_compileJava_2/net/minecraft/util/datafix/schemas/V2522.class new file mode 100644 index 000000000..2bdd85ad5 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/util/datafix/schemas/V2522.class differ diff --git a/build/_compileJava_2/net/minecraft/util/datafix/schemas/V2551.class b/build/_compileJava_2/net/minecraft/util/datafix/schemas/V2551.class new file mode 100644 index 000000000..2af56fb9e Binary files /dev/null and b/build/_compileJava_2/net/minecraft/util/datafix/schemas/V2551.class differ diff --git a/build/_compileJava_2/net/minecraft/util/datafix/schemas/V2568.class b/build/_compileJava_2/net/minecraft/util/datafix/schemas/V2568.class new file mode 100644 index 000000000..82ba1f624 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/util/datafix/schemas/V2568.class differ diff --git a/build/_compileJava_2/net/minecraft/util/datafix/schemas/V2571.class b/build/_compileJava_2/net/minecraft/util/datafix/schemas/V2571.class new file mode 100644 index 000000000..ae5d56d4a Binary files /dev/null and b/build/_compileJava_2/net/minecraft/util/datafix/schemas/V2571.class differ diff --git a/build/_compileJava_2/net/minecraft/util/datafix/schemas/V2684.class b/build/_compileJava_2/net/minecraft/util/datafix/schemas/V2684.class new file mode 100644 index 000000000..8e4969770 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/util/datafix/schemas/V2684.class differ diff --git a/build/_compileJava_2/net/minecraft/util/datafix/schemas/V2686.class b/build/_compileJava_2/net/minecraft/util/datafix/schemas/V2686.class new file mode 100644 index 000000000..06b82e343 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/util/datafix/schemas/V2686.class differ diff --git a/build/_compileJava_2/net/minecraft/util/datafix/schemas/V2688.class b/build/_compileJava_2/net/minecraft/util/datafix/schemas/V2688.class new file mode 100644 index 000000000..d2c710df5 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/util/datafix/schemas/V2688.class differ diff --git a/build/_compileJava_2/net/minecraft/util/datafix/schemas/V2704.class b/build/_compileJava_2/net/minecraft/util/datafix/schemas/V2704.class new file mode 100644 index 000000000..70ac3d928 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/util/datafix/schemas/V2704.class differ diff --git a/build/_compileJava_2/net/minecraft/util/datafix/schemas/V2707.class b/build/_compileJava_2/net/minecraft/util/datafix/schemas/V2707.class new file mode 100644 index 000000000..fe29ec479 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/util/datafix/schemas/V2707.class differ diff --git a/build/_compileJava_2/net/minecraft/util/datafix/schemas/V2831.class b/build/_compileJava_2/net/minecraft/util/datafix/schemas/V2831.class new file mode 100644 index 000000000..dbe3a977d Binary files /dev/null and b/build/_compileJava_2/net/minecraft/util/datafix/schemas/V2831.class differ diff --git a/build/_compileJava_2/net/minecraft/util/datafix/schemas/V2832.class b/build/_compileJava_2/net/minecraft/util/datafix/schemas/V2832.class new file mode 100644 index 000000000..a8b9446ff Binary files /dev/null and b/build/_compileJava_2/net/minecraft/util/datafix/schemas/V2832.class differ diff --git a/build/_compileJava_2/net/minecraft/util/datafix/schemas/V2842.class b/build/_compileJava_2/net/minecraft/util/datafix/schemas/V2842.class new file mode 100644 index 000000000..c985d5b43 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/util/datafix/schemas/V2842.class differ diff --git a/build/_compileJava_2/net/minecraft/util/datafix/schemas/V3076.class b/build/_compileJava_2/net/minecraft/util/datafix/schemas/V3076.class new file mode 100644 index 000000000..00051c036 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/util/datafix/schemas/V3076.class differ diff --git a/build/_compileJava_2/net/minecraft/util/datafix/schemas/V3078.class b/build/_compileJava_2/net/minecraft/util/datafix/schemas/V3078.class new file mode 100644 index 000000000..243cbdde7 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/util/datafix/schemas/V3078.class differ diff --git a/build/_compileJava_2/net/minecraft/util/datafix/schemas/V3081.class b/build/_compileJava_2/net/minecraft/util/datafix/schemas/V3081.class new file mode 100644 index 000000000..f7d666108 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/util/datafix/schemas/V3081.class differ diff --git a/build/_compileJava_2/net/minecraft/util/datafix/schemas/V3082.class b/build/_compileJava_2/net/minecraft/util/datafix/schemas/V3082.class new file mode 100644 index 000000000..8963948df Binary files /dev/null and b/build/_compileJava_2/net/minecraft/util/datafix/schemas/V3082.class differ diff --git a/build/_compileJava_2/net/minecraft/util/datafix/schemas/V3083.class b/build/_compileJava_2/net/minecraft/util/datafix/schemas/V3083.class new file mode 100644 index 000000000..f5ca9a4ae Binary files /dev/null and b/build/_compileJava_2/net/minecraft/util/datafix/schemas/V3083.class differ diff --git a/build/_compileJava_2/net/minecraft/util/datafix/schemas/V3202.class b/build/_compileJava_2/net/minecraft/util/datafix/schemas/V3202.class new file mode 100644 index 000000000..9f422894b Binary files /dev/null and b/build/_compileJava_2/net/minecraft/util/datafix/schemas/V3202.class differ diff --git a/build/_compileJava_2/net/minecraft/util/datafix/schemas/V3203.class b/build/_compileJava_2/net/minecraft/util/datafix/schemas/V3203.class new file mode 100644 index 000000000..b5a570d64 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/util/datafix/schemas/V3203.class differ diff --git a/build/_compileJava_2/net/minecraft/util/datafix/schemas/V3204.class b/build/_compileJava_2/net/minecraft/util/datafix/schemas/V3204.class new file mode 100644 index 000000000..4edb80b79 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/util/datafix/schemas/V3204.class differ diff --git a/build/_compileJava_2/net/minecraft/util/datafix/schemas/V3325.class b/build/_compileJava_2/net/minecraft/util/datafix/schemas/V3325.class new file mode 100644 index 000000000..319e14765 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/util/datafix/schemas/V3325.class differ diff --git a/build/_compileJava_2/net/minecraft/util/datafix/schemas/V3326.class b/build/_compileJava_2/net/minecraft/util/datafix/schemas/V3326.class new file mode 100644 index 000000000..41d87fd21 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/util/datafix/schemas/V3326.class differ diff --git a/build/_compileJava_2/net/minecraft/util/datafix/schemas/V3327.class b/build/_compileJava_2/net/minecraft/util/datafix/schemas/V3327.class new file mode 100644 index 000000000..1e8d7a398 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/util/datafix/schemas/V3327.class differ diff --git a/build/_compileJava_2/net/minecraft/util/datafix/schemas/V3328.class b/build/_compileJava_2/net/minecraft/util/datafix/schemas/V3328.class new file mode 100644 index 000000000..ae7a031c4 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/util/datafix/schemas/V3328.class differ diff --git a/build/_compileJava_2/net/minecraft/util/datafix/schemas/V3438.class b/build/_compileJava_2/net/minecraft/util/datafix/schemas/V3438.class new file mode 100644 index 000000000..1de3efacf Binary files /dev/null and b/build/_compileJava_2/net/minecraft/util/datafix/schemas/V3438.class differ diff --git a/build/_compileJava_2/net/minecraft/util/datafix/schemas/V3448.class b/build/_compileJava_2/net/minecraft/util/datafix/schemas/V3448.class new file mode 100644 index 000000000..a740f9271 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/util/datafix/schemas/V3448.class differ diff --git a/build/_compileJava_2/net/minecraft/util/datafix/schemas/V501.class b/build/_compileJava_2/net/minecraft/util/datafix/schemas/V501.class new file mode 100644 index 000000000..a960536c4 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/util/datafix/schemas/V501.class differ diff --git a/build/_compileJava_2/net/minecraft/util/datafix/schemas/V700.class b/build/_compileJava_2/net/minecraft/util/datafix/schemas/V700.class new file mode 100644 index 000000000..ff2c2a227 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/util/datafix/schemas/V700.class differ diff --git a/build/_compileJava_2/net/minecraft/util/datafix/schemas/V701.class b/build/_compileJava_2/net/minecraft/util/datafix/schemas/V701.class new file mode 100644 index 000000000..4d35eba1f Binary files /dev/null and b/build/_compileJava_2/net/minecraft/util/datafix/schemas/V701.class differ diff --git a/build/_compileJava_2/net/minecraft/util/datafix/schemas/V702.class b/build/_compileJava_2/net/minecraft/util/datafix/schemas/V702.class new file mode 100644 index 000000000..b8097b512 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/util/datafix/schemas/V702.class differ diff --git a/build/_compileJava_2/net/minecraft/util/datafix/schemas/V703.class b/build/_compileJava_2/net/minecraft/util/datafix/schemas/V703.class new file mode 100644 index 000000000..48fc37f96 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/util/datafix/schemas/V703.class differ diff --git a/build/_compileJava_2/net/minecraft/util/datafix/schemas/V704$1.class b/build/_compileJava_2/net/minecraft/util/datafix/schemas/V704$1.class new file mode 100644 index 000000000..fb8379adb Binary files /dev/null and b/build/_compileJava_2/net/minecraft/util/datafix/schemas/V704$1.class differ diff --git a/build/_compileJava_2/net/minecraft/util/datafix/schemas/V704.class b/build/_compileJava_2/net/minecraft/util/datafix/schemas/V704.class new file mode 100644 index 000000000..978870d19 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/util/datafix/schemas/V704.class differ diff --git a/build/_compileJava_2/net/minecraft/util/datafix/schemas/V705$1.class b/build/_compileJava_2/net/minecraft/util/datafix/schemas/V705$1.class new file mode 100644 index 000000000..7b683f0ef Binary files /dev/null and b/build/_compileJava_2/net/minecraft/util/datafix/schemas/V705$1.class differ diff --git a/build/_compileJava_2/net/minecraft/util/datafix/schemas/V705.class b/build/_compileJava_2/net/minecraft/util/datafix/schemas/V705.class new file mode 100644 index 000000000..4fb75e4df Binary files /dev/null and b/build/_compileJava_2/net/minecraft/util/datafix/schemas/V705.class differ diff --git a/build/_compileJava_2/net/minecraft/util/datafix/schemas/V808.class b/build/_compileJava_2/net/minecraft/util/datafix/schemas/V808.class new file mode 100644 index 000000000..14c410740 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/util/datafix/schemas/V808.class differ diff --git a/build/_compileJava_2/net/minecraft/util/datafix/schemas/V99$1.class b/build/_compileJava_2/net/minecraft/util/datafix/schemas/V99$1.class new file mode 100644 index 000000000..9a22a28bd Binary files /dev/null and b/build/_compileJava_2/net/minecraft/util/datafix/schemas/V99$1.class differ diff --git a/build/_compileJava_2/net/minecraft/util/datafix/schemas/V99.class b/build/_compileJava_2/net/minecraft/util/datafix/schemas/V99.class new file mode 100644 index 000000000..ab8a87ab6 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/util/datafix/schemas/V99.class differ diff --git a/build/_compileJava_2/net/minecraft/util/datafix/schemas/package-info.class b/build/_compileJava_2/net/minecraft/util/datafix/schemas/package-info.class new file mode 100644 index 000000000..47ec2c8b8 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/util/datafix/schemas/package-info.class differ diff --git a/build/_compileJava_2/net/minecraft/util/eventlog/EventLogDirectory$CompressedFile.class b/build/_compileJava_2/net/minecraft/util/eventlog/EventLogDirectory$CompressedFile.class new file mode 100644 index 000000000..f18ecc8f3 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/util/eventlog/EventLogDirectory$CompressedFile.class differ diff --git a/build/_compileJava_2/net/minecraft/util/eventlog/EventLogDirectory$File.class b/build/_compileJava_2/net/minecraft/util/eventlog/EventLogDirectory$File.class new file mode 100644 index 000000000..bd08986ef Binary files /dev/null and b/build/_compileJava_2/net/minecraft/util/eventlog/EventLogDirectory$File.class differ diff --git a/build/_compileJava_2/net/minecraft/util/eventlog/EventLogDirectory$FileId.class b/build/_compileJava_2/net/minecraft/util/eventlog/EventLogDirectory$FileId.class new file mode 100644 index 000000000..473d08328 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/util/eventlog/EventLogDirectory$FileId.class differ diff --git a/build/_compileJava_2/net/minecraft/util/eventlog/EventLogDirectory$FileList.class b/build/_compileJava_2/net/minecraft/util/eventlog/EventLogDirectory$FileList.class new file mode 100644 index 000000000..34d3ac2f4 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/util/eventlog/EventLogDirectory$FileList.class differ diff --git a/build/_compileJava_2/net/minecraft/util/eventlog/EventLogDirectory$RawFile.class b/build/_compileJava_2/net/minecraft/util/eventlog/EventLogDirectory$RawFile.class new file mode 100644 index 000000000..fdb6eea3e Binary files /dev/null and b/build/_compileJava_2/net/minecraft/util/eventlog/EventLogDirectory$RawFile.class differ diff --git a/build/_compileJava_2/net/minecraft/util/eventlog/EventLogDirectory.class b/build/_compileJava_2/net/minecraft/util/eventlog/EventLogDirectory.class new file mode 100644 index 000000000..b767df7cd Binary files /dev/null and b/build/_compileJava_2/net/minecraft/util/eventlog/EventLogDirectory.class differ diff --git a/build/_compileJava_2/net/minecraft/util/eventlog/JsonEventLog$1.class b/build/_compileJava_2/net/minecraft/util/eventlog/JsonEventLog$1.class new file mode 100644 index 000000000..5526dd4a3 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/util/eventlog/JsonEventLog$1.class differ diff --git a/build/_compileJava_2/net/minecraft/util/eventlog/JsonEventLog.class b/build/_compileJava_2/net/minecraft/util/eventlog/JsonEventLog.class new file mode 100644 index 000000000..890834821 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/util/eventlog/JsonEventLog.class differ diff --git a/build/_compileJava_2/net/minecraft/util/eventlog/JsonEventLogReader$1.class b/build/_compileJava_2/net/minecraft/util/eventlog/JsonEventLogReader$1.class new file mode 100644 index 000000000..c0e6a41de Binary files /dev/null and b/build/_compileJava_2/net/minecraft/util/eventlog/JsonEventLogReader$1.class differ diff --git a/build/_compileJava_2/net/minecraft/util/eventlog/JsonEventLogReader.class b/build/_compileJava_2/net/minecraft/util/eventlog/JsonEventLogReader.class new file mode 100644 index 000000000..cd2c69989 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/util/eventlog/JsonEventLogReader.class differ diff --git a/build/_compileJava_2/net/minecraft/util/eventlog/package-info.class b/build/_compileJava_2/net/minecraft/util/eventlog/package-info.class new file mode 100644 index 000000000..1afa239c9 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/util/eventlog/package-info.class differ diff --git a/build/_compileJava_2/net/minecraft/util/monitoring/jmx/MinecraftServerStatistics$AttributeDescription.class b/build/_compileJava_2/net/minecraft/util/monitoring/jmx/MinecraftServerStatistics$AttributeDescription.class new file mode 100644 index 000000000..7f27432d0 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/util/monitoring/jmx/MinecraftServerStatistics$AttributeDescription.class differ diff --git a/build/_compileJava_2/net/minecraft/util/monitoring/jmx/MinecraftServerStatistics.class b/build/_compileJava_2/net/minecraft/util/monitoring/jmx/MinecraftServerStatistics.class new file mode 100644 index 000000000..250457993 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/util/monitoring/jmx/MinecraftServerStatistics.class differ diff --git a/build/_compileJava_2/net/minecraft/util/monitoring/jmx/package-info.class b/build/_compileJava_2/net/minecraft/util/monitoring/jmx/package-info.class new file mode 100644 index 000000000..75445aa84 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/util/monitoring/jmx/package-info.class differ diff --git a/build/_compileJava_2/net/minecraft/util/package-info.class b/build/_compileJava_2/net/minecraft/util/package-info.class new file mode 100644 index 000000000..6a8692c5f Binary files /dev/null and b/build/_compileJava_2/net/minecraft/util/package-info.class differ diff --git a/build/_compileJava_2/net/minecraft/util/profiling/ActiveProfiler$PathEntry.class b/build/_compileJava_2/net/minecraft/util/profiling/ActiveProfiler$PathEntry.class new file mode 100644 index 000000000..f2e8c72c7 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/util/profiling/ActiveProfiler$PathEntry.class differ diff --git a/build/_compileJava_2/net/minecraft/util/profiling/ActiveProfiler.class b/build/_compileJava_2/net/minecraft/util/profiling/ActiveProfiler.class new file mode 100644 index 000000000..a727f76c0 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/util/profiling/ActiveProfiler.class differ diff --git a/build/_compileJava_2/net/minecraft/util/profiling/ContinuousProfiler.class b/build/_compileJava_2/net/minecraft/util/profiling/ContinuousProfiler.class new file mode 100644 index 000000000..566a030b9 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/util/profiling/ContinuousProfiler.class differ diff --git a/build/_compileJava_2/net/minecraft/util/profiling/EmptyProfileResults.class b/build/_compileJava_2/net/minecraft/util/profiling/EmptyProfileResults.class new file mode 100644 index 000000000..f6d9c1984 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/util/profiling/EmptyProfileResults.class differ diff --git a/build/_compileJava_2/net/minecraft/util/profiling/FilledProfileResults$1.class b/build/_compileJava_2/net/minecraft/util/profiling/FilledProfileResults$1.class new file mode 100644 index 000000000..e3f161eb5 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/util/profiling/FilledProfileResults$1.class differ diff --git a/build/_compileJava_2/net/minecraft/util/profiling/FilledProfileResults$CounterCollector.class b/build/_compileJava_2/net/minecraft/util/profiling/FilledProfileResults$CounterCollector.class new file mode 100644 index 000000000..53a52d586 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/util/profiling/FilledProfileResults$CounterCollector.class differ diff --git a/build/_compileJava_2/net/minecraft/util/profiling/FilledProfileResults.class b/build/_compileJava_2/net/minecraft/util/profiling/FilledProfileResults.class new file mode 100644 index 000000000..e7b4fb7c3 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/util/profiling/FilledProfileResults.class differ diff --git a/build/_compileJava_2/net/minecraft/util/profiling/InactiveProfiler.class b/build/_compileJava_2/net/minecraft/util/profiling/InactiveProfiler.class new file mode 100644 index 000000000..dba3de99c Binary files /dev/null and b/build/_compileJava_2/net/minecraft/util/profiling/InactiveProfiler.class differ diff --git a/build/_compileJava_2/net/minecraft/util/profiling/ProfileCollector.class b/build/_compileJava_2/net/minecraft/util/profiling/ProfileCollector.class new file mode 100644 index 000000000..69c35866a Binary files /dev/null and b/build/_compileJava_2/net/minecraft/util/profiling/ProfileCollector.class differ diff --git a/build/_compileJava_2/net/minecraft/util/profiling/ProfileResults.class b/build/_compileJava_2/net/minecraft/util/profiling/ProfileResults.class new file mode 100644 index 000000000..123613f5b Binary files /dev/null and b/build/_compileJava_2/net/minecraft/util/profiling/ProfileResults.class differ diff --git a/build/_compileJava_2/net/minecraft/util/profiling/ProfilerFiller$1.class b/build/_compileJava_2/net/minecraft/util/profiling/ProfilerFiller$1.class new file mode 100644 index 000000000..109feb35a Binary files /dev/null and b/build/_compileJava_2/net/minecraft/util/profiling/ProfilerFiller$1.class differ diff --git a/build/_compileJava_2/net/minecraft/util/profiling/ProfilerFiller.class b/build/_compileJava_2/net/minecraft/util/profiling/ProfilerFiller.class new file mode 100644 index 000000000..6264a7ccd Binary files /dev/null and b/build/_compileJava_2/net/minecraft/util/profiling/ProfilerFiller.class differ diff --git a/build/_compileJava_2/net/minecraft/util/profiling/ProfilerPathEntry.class b/build/_compileJava_2/net/minecraft/util/profiling/ProfilerPathEntry.class new file mode 100644 index 000000000..b3eca28b1 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/util/profiling/ProfilerPathEntry.class differ diff --git a/build/_compileJava_2/net/minecraft/util/profiling/ResultField.class b/build/_compileJava_2/net/minecraft/util/profiling/ResultField.class new file mode 100644 index 000000000..1bb546595 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/util/profiling/ResultField.class differ diff --git a/build/_compileJava_2/net/minecraft/util/profiling/SingleTickProfiler.class b/build/_compileJava_2/net/minecraft/util/profiling/SingleTickProfiler.class new file mode 100644 index 000000000..2fb97cf3a Binary files /dev/null and b/build/_compileJava_2/net/minecraft/util/profiling/SingleTickProfiler.class differ diff --git a/build/_compileJava_2/net/minecraft/util/profiling/jfr/Environment.class b/build/_compileJava_2/net/minecraft/util/profiling/jfr/Environment.class new file mode 100644 index 000000000..c6bf4da89 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/util/profiling/jfr/Environment.class differ diff --git a/build/_compileJava_2/net/minecraft/util/profiling/jfr/JfrProfiler$1.class b/build/_compileJava_2/net/minecraft/util/profiling/jfr/JfrProfiler$1.class new file mode 100644 index 000000000..9c87aa95a Binary files /dev/null and b/build/_compileJava_2/net/minecraft/util/profiling/jfr/JfrProfiler$1.class differ diff --git a/build/_compileJava_2/net/minecraft/util/profiling/jfr/JfrProfiler.class b/build/_compileJava_2/net/minecraft/util/profiling/jfr/JfrProfiler.class new file mode 100644 index 000000000..10f5993cc Binary files /dev/null and b/build/_compileJava_2/net/minecraft/util/profiling/jfr/JfrProfiler.class differ diff --git a/build/_compileJava_2/net/minecraft/util/profiling/jfr/JvmProfiler$NoOpProfiler.class b/build/_compileJava_2/net/minecraft/util/profiling/jfr/JvmProfiler$NoOpProfiler.class new file mode 100644 index 000000000..c249ad0d7 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/util/profiling/jfr/JvmProfiler$NoOpProfiler.class differ diff --git a/build/_compileJava_2/net/minecraft/util/profiling/jfr/JvmProfiler.class b/build/_compileJava_2/net/minecraft/util/profiling/jfr/JvmProfiler.class new file mode 100644 index 000000000..f4fbbf5cc Binary files /dev/null and b/build/_compileJava_2/net/minecraft/util/profiling/jfr/JvmProfiler.class differ diff --git a/build/_compileJava_2/net/minecraft/util/profiling/jfr/Percentiles.class b/build/_compileJava_2/net/minecraft/util/profiling/jfr/Percentiles.class new file mode 100644 index 000000000..e8788ab57 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/util/profiling/jfr/Percentiles.class differ diff --git a/build/_compileJava_2/net/minecraft/util/profiling/jfr/SummaryReporter.class b/build/_compileJava_2/net/minecraft/util/profiling/jfr/SummaryReporter.class new file mode 100644 index 000000000..9797d8c44 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/util/profiling/jfr/SummaryReporter.class differ diff --git a/build/_compileJava_2/net/minecraft/util/profiling/jfr/callback/ProfiledDuration.class b/build/_compileJava_2/net/minecraft/util/profiling/jfr/callback/ProfiledDuration.class new file mode 100644 index 000000000..19d418b4d Binary files /dev/null and b/build/_compileJava_2/net/minecraft/util/profiling/jfr/callback/ProfiledDuration.class differ diff --git a/build/_compileJava_2/net/minecraft/util/profiling/jfr/callback/package-info.class b/build/_compileJava_2/net/minecraft/util/profiling/jfr/callback/package-info.class new file mode 100644 index 000000000..7f90dbc78 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/util/profiling/jfr/callback/package-info.class differ diff --git a/build/_compileJava_2/net/minecraft/util/profiling/jfr/event/ChunkGenerationEvent$Fields.class b/build/_compileJava_2/net/minecraft/util/profiling/jfr/event/ChunkGenerationEvent$Fields.class new file mode 100644 index 000000000..2cf7e59d2 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/util/profiling/jfr/event/ChunkGenerationEvent$Fields.class differ diff --git a/build/_compileJava_2/net/minecraft/util/profiling/jfr/event/ChunkGenerationEvent.class b/build/_compileJava_2/net/minecraft/util/profiling/jfr/event/ChunkGenerationEvent.class new file mode 100644 index 000000000..8048fa586 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/util/profiling/jfr/event/ChunkGenerationEvent.class differ diff --git a/build/_compileJava_2/net/minecraft/util/profiling/jfr/event/NetworkSummaryEvent$Fields.class b/build/_compileJava_2/net/minecraft/util/profiling/jfr/event/NetworkSummaryEvent$Fields.class new file mode 100644 index 000000000..1ed4bb419 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/util/profiling/jfr/event/NetworkSummaryEvent$Fields.class differ diff --git a/build/_compileJava_2/net/minecraft/util/profiling/jfr/event/NetworkSummaryEvent$SumAggregation.class b/build/_compileJava_2/net/minecraft/util/profiling/jfr/event/NetworkSummaryEvent$SumAggregation.class new file mode 100644 index 000000000..d292539ed Binary files /dev/null and b/build/_compileJava_2/net/minecraft/util/profiling/jfr/event/NetworkSummaryEvent$SumAggregation.class differ diff --git a/build/_compileJava_2/net/minecraft/util/profiling/jfr/event/NetworkSummaryEvent.class b/build/_compileJava_2/net/minecraft/util/profiling/jfr/event/NetworkSummaryEvent.class new file mode 100644 index 000000000..b6e9ccf70 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/util/profiling/jfr/event/NetworkSummaryEvent.class differ diff --git a/build/_compileJava_2/net/minecraft/util/profiling/jfr/event/PacketEvent$Fields.class b/build/_compileJava_2/net/minecraft/util/profiling/jfr/event/PacketEvent$Fields.class new file mode 100644 index 000000000..dfd3e5b46 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/util/profiling/jfr/event/PacketEvent$Fields.class differ diff --git a/build/_compileJava_2/net/minecraft/util/profiling/jfr/event/PacketEvent.class b/build/_compileJava_2/net/minecraft/util/profiling/jfr/event/PacketEvent.class new file mode 100644 index 000000000..276e7940d Binary files /dev/null and b/build/_compileJava_2/net/minecraft/util/profiling/jfr/event/PacketEvent.class differ diff --git a/build/_compileJava_2/net/minecraft/util/profiling/jfr/event/PacketReceivedEvent.class b/build/_compileJava_2/net/minecraft/util/profiling/jfr/event/PacketReceivedEvent.class new file mode 100644 index 000000000..e3dceb469 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/util/profiling/jfr/event/PacketReceivedEvent.class differ diff --git a/build/_compileJava_2/net/minecraft/util/profiling/jfr/event/PacketSentEvent.class b/build/_compileJava_2/net/minecraft/util/profiling/jfr/event/PacketSentEvent.class new file mode 100644 index 000000000..fb6ddaf57 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/util/profiling/jfr/event/PacketSentEvent.class differ diff --git a/build/_compileJava_2/net/minecraft/util/profiling/jfr/event/ServerTickTimeEvent$Fields.class b/build/_compileJava_2/net/minecraft/util/profiling/jfr/event/ServerTickTimeEvent$Fields.class new file mode 100644 index 000000000..cd6989f34 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/util/profiling/jfr/event/ServerTickTimeEvent$Fields.class differ diff --git a/build/_compileJava_2/net/minecraft/util/profiling/jfr/event/ServerTickTimeEvent.class b/build/_compileJava_2/net/minecraft/util/profiling/jfr/event/ServerTickTimeEvent.class new file mode 100644 index 000000000..f2be13bd9 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/util/profiling/jfr/event/ServerTickTimeEvent.class differ diff --git a/build/_compileJava_2/net/minecraft/util/profiling/jfr/event/WorldLoadFinishedEvent.class b/build/_compileJava_2/net/minecraft/util/profiling/jfr/event/WorldLoadFinishedEvent.class new file mode 100644 index 000000000..d36e23f4f Binary files /dev/null and b/build/_compileJava_2/net/minecraft/util/profiling/jfr/event/WorldLoadFinishedEvent.class differ diff --git a/build/_compileJava_2/net/minecraft/util/profiling/jfr/event/package-info.class b/build/_compileJava_2/net/minecraft/util/profiling/jfr/event/package-info.class new file mode 100644 index 000000000..d54cf66fc Binary files /dev/null and b/build/_compileJava_2/net/minecraft/util/profiling/jfr/event/package-info.class differ diff --git a/build/_compileJava_2/net/minecraft/util/profiling/jfr/package-info.class b/build/_compileJava_2/net/minecraft/util/profiling/jfr/package-info.class new file mode 100644 index 000000000..105443cbb Binary files /dev/null and b/build/_compileJava_2/net/minecraft/util/profiling/jfr/package-info.class differ diff --git a/build/_compileJava_2/net/minecraft/util/profiling/jfr/parse/JfrStatsParser$1.class b/build/_compileJava_2/net/minecraft/util/profiling/jfr/parse/JfrStatsParser$1.class new file mode 100644 index 000000000..fcb6c0666 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/util/profiling/jfr/parse/JfrStatsParser$1.class differ diff --git a/build/_compileJava_2/net/minecraft/util/profiling/jfr/parse/JfrStatsParser$MutableCountAndSize.class b/build/_compileJava_2/net/minecraft/util/profiling/jfr/parse/JfrStatsParser$MutableCountAndSize.class new file mode 100644 index 000000000..c8d08ba1a Binary files /dev/null and b/build/_compileJava_2/net/minecraft/util/profiling/jfr/parse/JfrStatsParser$MutableCountAndSize.class differ diff --git a/build/_compileJava_2/net/minecraft/util/profiling/jfr/parse/JfrStatsParser.class b/build/_compileJava_2/net/minecraft/util/profiling/jfr/parse/JfrStatsParser.class new file mode 100644 index 000000000..706c6c4fb Binary files /dev/null and b/build/_compileJava_2/net/minecraft/util/profiling/jfr/parse/JfrStatsParser.class differ diff --git a/build/_compileJava_2/net/minecraft/util/profiling/jfr/parse/JfrStatsResult.class b/build/_compileJava_2/net/minecraft/util/profiling/jfr/parse/JfrStatsResult.class new file mode 100644 index 000000000..d83e82cbc Binary files /dev/null and b/build/_compileJava_2/net/minecraft/util/profiling/jfr/parse/JfrStatsResult.class differ diff --git a/build/_compileJava_2/net/minecraft/util/profiling/jfr/parse/package-info.class b/build/_compileJava_2/net/minecraft/util/profiling/jfr/parse/package-info.class new file mode 100644 index 000000000..dde3a9dbe Binary files /dev/null and b/build/_compileJava_2/net/minecraft/util/profiling/jfr/parse/package-info.class differ diff --git a/build/_compileJava_2/net/minecraft/util/profiling/jfr/serialize/JfrResultJsonSerializer.class b/build/_compileJava_2/net/minecraft/util/profiling/jfr/serialize/JfrResultJsonSerializer.class new file mode 100644 index 000000000..c459aa512 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/util/profiling/jfr/serialize/JfrResultJsonSerializer.class differ diff --git a/build/_compileJava_2/net/minecraft/util/profiling/jfr/serialize/package-info.class b/build/_compileJava_2/net/minecraft/util/profiling/jfr/serialize/package-info.class new file mode 100644 index 000000000..7a8e47c72 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/util/profiling/jfr/serialize/package-info.class differ diff --git a/build/_compileJava_2/net/minecraft/util/profiling/jfr/stats/ChunkGenStat.class b/build/_compileJava_2/net/minecraft/util/profiling/jfr/stats/ChunkGenStat.class new file mode 100644 index 000000000..1b30149a4 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/util/profiling/jfr/stats/ChunkGenStat.class differ diff --git a/build/_compileJava_2/net/minecraft/util/profiling/jfr/stats/CpuLoadStat.class b/build/_compileJava_2/net/minecraft/util/profiling/jfr/stats/CpuLoadStat.class new file mode 100644 index 000000000..364af1953 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/util/profiling/jfr/stats/CpuLoadStat.class differ diff --git a/build/_compileJava_2/net/minecraft/util/profiling/jfr/stats/FileIOStat$Summary.class b/build/_compileJava_2/net/minecraft/util/profiling/jfr/stats/FileIOStat$Summary.class new file mode 100644 index 000000000..d45c90e4c Binary files /dev/null and b/build/_compileJava_2/net/minecraft/util/profiling/jfr/stats/FileIOStat$Summary.class differ diff --git a/build/_compileJava_2/net/minecraft/util/profiling/jfr/stats/FileIOStat.class b/build/_compileJava_2/net/minecraft/util/profiling/jfr/stats/FileIOStat.class new file mode 100644 index 000000000..ff8f91eec Binary files /dev/null and b/build/_compileJava_2/net/minecraft/util/profiling/jfr/stats/FileIOStat.class differ diff --git a/build/_compileJava_2/net/minecraft/util/profiling/jfr/stats/GcHeapStat$Summary.class b/build/_compileJava_2/net/minecraft/util/profiling/jfr/stats/GcHeapStat$Summary.class new file mode 100644 index 000000000..6fb306e10 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/util/profiling/jfr/stats/GcHeapStat$Summary.class differ diff --git a/build/_compileJava_2/net/minecraft/util/profiling/jfr/stats/GcHeapStat$Timing.class b/build/_compileJava_2/net/minecraft/util/profiling/jfr/stats/GcHeapStat$Timing.class new file mode 100644 index 000000000..7a9a65dd0 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/util/profiling/jfr/stats/GcHeapStat$Timing.class differ diff --git a/build/_compileJava_2/net/minecraft/util/profiling/jfr/stats/GcHeapStat.class b/build/_compileJava_2/net/minecraft/util/profiling/jfr/stats/GcHeapStat.class new file mode 100644 index 000000000..6df379e3c Binary files /dev/null and b/build/_compileJava_2/net/minecraft/util/profiling/jfr/stats/GcHeapStat.class differ diff --git a/build/_compileJava_2/net/minecraft/util/profiling/jfr/stats/NetworkPacketSummary$PacketCountAndSize.class b/build/_compileJava_2/net/minecraft/util/profiling/jfr/stats/NetworkPacketSummary$PacketCountAndSize.class new file mode 100644 index 000000000..9beb58e32 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/util/profiling/jfr/stats/NetworkPacketSummary$PacketCountAndSize.class differ diff --git a/build/_compileJava_2/net/minecraft/util/profiling/jfr/stats/NetworkPacketSummary$PacketIdentification.class b/build/_compileJava_2/net/minecraft/util/profiling/jfr/stats/NetworkPacketSummary$PacketIdentification.class new file mode 100644 index 000000000..14266f060 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/util/profiling/jfr/stats/NetworkPacketSummary$PacketIdentification.class differ diff --git a/build/_compileJava_2/net/minecraft/util/profiling/jfr/stats/NetworkPacketSummary.class b/build/_compileJava_2/net/minecraft/util/profiling/jfr/stats/NetworkPacketSummary.class new file mode 100644 index 000000000..32f5d8dcd Binary files /dev/null and b/build/_compileJava_2/net/minecraft/util/profiling/jfr/stats/NetworkPacketSummary.class differ diff --git a/build/_compileJava_2/net/minecraft/util/profiling/jfr/stats/ThreadAllocationStat$Summary.class b/build/_compileJava_2/net/minecraft/util/profiling/jfr/stats/ThreadAllocationStat$Summary.class new file mode 100644 index 000000000..71eac7b6e Binary files /dev/null and b/build/_compileJava_2/net/minecraft/util/profiling/jfr/stats/ThreadAllocationStat$Summary.class differ diff --git a/build/_compileJava_2/net/minecraft/util/profiling/jfr/stats/ThreadAllocationStat.class b/build/_compileJava_2/net/minecraft/util/profiling/jfr/stats/ThreadAllocationStat.class new file mode 100644 index 000000000..5da3920cd Binary files /dev/null and b/build/_compileJava_2/net/minecraft/util/profiling/jfr/stats/ThreadAllocationStat.class differ diff --git a/build/_compileJava_2/net/minecraft/util/profiling/jfr/stats/TickTimeStat.class b/build/_compileJava_2/net/minecraft/util/profiling/jfr/stats/TickTimeStat.class new file mode 100644 index 000000000..8f2f2265d Binary files /dev/null and b/build/_compileJava_2/net/minecraft/util/profiling/jfr/stats/TickTimeStat.class differ diff --git a/build/_compileJava_2/net/minecraft/util/profiling/jfr/stats/TimeStamped.class b/build/_compileJava_2/net/minecraft/util/profiling/jfr/stats/TimeStamped.class new file mode 100644 index 000000000..a4019acca Binary files /dev/null and b/build/_compileJava_2/net/minecraft/util/profiling/jfr/stats/TimeStamped.class differ diff --git a/build/_compileJava_2/net/minecraft/util/profiling/jfr/stats/TimedStat.class b/build/_compileJava_2/net/minecraft/util/profiling/jfr/stats/TimedStat.class new file mode 100644 index 000000000..1202f876c Binary files /dev/null and b/build/_compileJava_2/net/minecraft/util/profiling/jfr/stats/TimedStat.class differ diff --git a/build/_compileJava_2/net/minecraft/util/profiling/jfr/stats/TimedStatSummary.class b/build/_compileJava_2/net/minecraft/util/profiling/jfr/stats/TimedStatSummary.class new file mode 100644 index 000000000..b2f092b76 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/util/profiling/jfr/stats/TimedStatSummary.class differ diff --git a/build/_compileJava_2/net/minecraft/util/profiling/jfr/stats/package-info.class b/build/_compileJava_2/net/minecraft/util/profiling/jfr/stats/package-info.class new file mode 100644 index 000000000..7a27e103d Binary files /dev/null and b/build/_compileJava_2/net/minecraft/util/profiling/jfr/stats/package-info.class differ diff --git a/build/_compileJava_2/net/minecraft/util/profiling/metrics/MetricCategory.class b/build/_compileJava_2/net/minecraft/util/profiling/metrics/MetricCategory.class new file mode 100644 index 000000000..dab2de88b Binary files /dev/null and b/build/_compileJava_2/net/minecraft/util/profiling/metrics/MetricCategory.class differ diff --git a/build/_compileJava_2/net/minecraft/util/profiling/metrics/MetricSampler$MetricSamplerBuilder.class b/build/_compileJava_2/net/minecraft/util/profiling/metrics/MetricSampler$MetricSamplerBuilder.class new file mode 100644 index 000000000..88876b90b Binary files /dev/null and b/build/_compileJava_2/net/minecraft/util/profiling/metrics/MetricSampler$MetricSamplerBuilder.class differ diff --git a/build/_compileJava_2/net/minecraft/util/profiling/metrics/MetricSampler$SamplerResult.class b/build/_compileJava_2/net/minecraft/util/profiling/metrics/MetricSampler$SamplerResult.class new file mode 100644 index 000000000..208c5cfb7 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/util/profiling/metrics/MetricSampler$SamplerResult.class differ diff --git a/build/_compileJava_2/net/minecraft/util/profiling/metrics/MetricSampler$ThresholdTest.class b/build/_compileJava_2/net/minecraft/util/profiling/metrics/MetricSampler$ThresholdTest.class new file mode 100644 index 000000000..8e1081365 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/util/profiling/metrics/MetricSampler$ThresholdTest.class differ diff --git a/build/_compileJava_2/net/minecraft/util/profiling/metrics/MetricSampler$ValueIncreasedByPercentage.class b/build/_compileJava_2/net/minecraft/util/profiling/metrics/MetricSampler$ValueIncreasedByPercentage.class new file mode 100644 index 000000000..7b5291299 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/util/profiling/metrics/MetricSampler$ValueIncreasedByPercentage.class differ diff --git a/build/_compileJava_2/net/minecraft/util/profiling/metrics/MetricSampler.class b/build/_compileJava_2/net/minecraft/util/profiling/metrics/MetricSampler.class new file mode 100644 index 000000000..84bab9e2e Binary files /dev/null and b/build/_compileJava_2/net/minecraft/util/profiling/metrics/MetricSampler.class differ diff --git a/build/_compileJava_2/net/minecraft/util/profiling/metrics/MetricsRegistry$AggregatedMetricSampler.class b/build/_compileJava_2/net/minecraft/util/profiling/metrics/MetricsRegistry$AggregatedMetricSampler.class new file mode 100644 index 000000000..199975e01 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/util/profiling/metrics/MetricsRegistry$AggregatedMetricSampler.class differ diff --git a/build/_compileJava_2/net/minecraft/util/profiling/metrics/MetricsRegistry.class b/build/_compileJava_2/net/minecraft/util/profiling/metrics/MetricsRegistry.class new file mode 100644 index 000000000..bf218883b Binary files /dev/null and b/build/_compileJava_2/net/minecraft/util/profiling/metrics/MetricsRegistry.class differ diff --git a/build/_compileJava_2/net/minecraft/util/profiling/metrics/MetricsSamplerProvider.class b/build/_compileJava_2/net/minecraft/util/profiling/metrics/MetricsSamplerProvider.class new file mode 100644 index 000000000..e198758ad Binary files /dev/null and b/build/_compileJava_2/net/minecraft/util/profiling/metrics/MetricsSamplerProvider.class differ diff --git a/build/_compileJava_2/net/minecraft/util/profiling/metrics/ProfilerMeasured.class b/build/_compileJava_2/net/minecraft/util/profiling/metrics/ProfilerMeasured.class new file mode 100644 index 000000000..73ee2f45c Binary files /dev/null and b/build/_compileJava_2/net/minecraft/util/profiling/metrics/ProfilerMeasured.class differ diff --git a/build/_compileJava_2/net/minecraft/util/profiling/metrics/package-info.class b/build/_compileJava_2/net/minecraft/util/profiling/metrics/package-info.class new file mode 100644 index 000000000..9fdbc40a7 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/util/profiling/metrics/package-info.class differ diff --git a/build/_compileJava_2/net/minecraft/util/profiling/metrics/profiling/ActiveMetricsRecorder.class b/build/_compileJava_2/net/minecraft/util/profiling/metrics/profiling/ActiveMetricsRecorder.class new file mode 100644 index 000000000..20cefddb1 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/util/profiling/metrics/profiling/ActiveMetricsRecorder.class differ diff --git a/build/_compileJava_2/net/minecraft/util/profiling/metrics/profiling/InactiveMetricsRecorder.class b/build/_compileJava_2/net/minecraft/util/profiling/metrics/profiling/InactiveMetricsRecorder.class new file mode 100644 index 000000000..51e3f61a8 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/util/profiling/metrics/profiling/InactiveMetricsRecorder.class differ diff --git a/build/_compileJava_2/net/minecraft/util/profiling/metrics/profiling/MetricsRecorder.class b/build/_compileJava_2/net/minecraft/util/profiling/metrics/profiling/MetricsRecorder.class new file mode 100644 index 000000000..6b391f63d Binary files /dev/null and b/build/_compileJava_2/net/minecraft/util/profiling/metrics/profiling/MetricsRecorder.class differ diff --git a/build/_compileJava_2/net/minecraft/util/profiling/metrics/profiling/ProfilerSamplerAdapter.class b/build/_compileJava_2/net/minecraft/util/profiling/metrics/profiling/ProfilerSamplerAdapter.class new file mode 100644 index 000000000..6263e5bc1 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/util/profiling/metrics/profiling/ProfilerSamplerAdapter.class differ diff --git a/build/_compileJava_2/net/minecraft/util/profiling/metrics/profiling/ServerMetricsSamplersProvider$1.class b/build/_compileJava_2/net/minecraft/util/profiling/metrics/profiling/ServerMetricsSamplersProvider$1.class new file mode 100644 index 000000000..b145d9dd0 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/util/profiling/metrics/profiling/ServerMetricsSamplersProvider$1.class differ diff --git a/build/_compileJava_2/net/minecraft/util/profiling/metrics/profiling/ServerMetricsSamplersProvider$CpuStats.class b/build/_compileJava_2/net/minecraft/util/profiling/metrics/profiling/ServerMetricsSamplersProvider$CpuStats.class new file mode 100644 index 000000000..eb70ef3ef Binary files /dev/null and b/build/_compileJava_2/net/minecraft/util/profiling/metrics/profiling/ServerMetricsSamplersProvider$CpuStats.class differ diff --git a/build/_compileJava_2/net/minecraft/util/profiling/metrics/profiling/ServerMetricsSamplersProvider.class b/build/_compileJava_2/net/minecraft/util/profiling/metrics/profiling/ServerMetricsSamplersProvider.class new file mode 100644 index 000000000..ec64fd29b Binary files /dev/null and b/build/_compileJava_2/net/minecraft/util/profiling/metrics/profiling/ServerMetricsSamplersProvider.class differ diff --git a/build/_compileJava_2/net/minecraft/util/profiling/metrics/profiling/package-info.class b/build/_compileJava_2/net/minecraft/util/profiling/metrics/profiling/package-info.class new file mode 100644 index 000000000..5e20b785d Binary files /dev/null and b/build/_compileJava_2/net/minecraft/util/profiling/metrics/profiling/package-info.class differ diff --git a/build/_compileJava_2/net/minecraft/util/profiling/metrics/storage/MetricsPersister.class b/build/_compileJava_2/net/minecraft/util/profiling/metrics/storage/MetricsPersister.class new file mode 100644 index 000000000..10d24e1c7 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/util/profiling/metrics/storage/MetricsPersister.class differ diff --git a/build/_compileJava_2/net/minecraft/util/profiling/metrics/storage/RecordedDeviation.class b/build/_compileJava_2/net/minecraft/util/profiling/metrics/storage/RecordedDeviation.class new file mode 100644 index 000000000..225d87f7c Binary files /dev/null and b/build/_compileJava_2/net/minecraft/util/profiling/metrics/storage/RecordedDeviation.class differ diff --git a/build/_compileJava_2/net/minecraft/util/profiling/metrics/storage/package-info.class b/build/_compileJava_2/net/minecraft/util/profiling/metrics/storage/package-info.class new file mode 100644 index 000000000..394633af3 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/util/profiling/metrics/storage/package-info.class differ diff --git a/build/_compileJava_2/net/minecraft/util/profiling/package-info.class b/build/_compileJava_2/net/minecraft/util/profiling/package-info.class new file mode 100644 index 000000000..7f0e46afa Binary files /dev/null and b/build/_compileJava_2/net/minecraft/util/profiling/package-info.class differ diff --git a/build/_compileJava_2/net/minecraft/util/random/SimpleWeightedRandomList$Builder.class b/build/_compileJava_2/net/minecraft/util/random/SimpleWeightedRandomList$Builder.class new file mode 100644 index 000000000..f51b0bf80 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/util/random/SimpleWeightedRandomList$Builder.class differ diff --git a/build/_compileJava_2/net/minecraft/util/random/SimpleWeightedRandomList.class b/build/_compileJava_2/net/minecraft/util/random/SimpleWeightedRandomList.class new file mode 100644 index 000000000..b41ac166e Binary files /dev/null and b/build/_compileJava_2/net/minecraft/util/random/SimpleWeightedRandomList.class differ diff --git a/build/_compileJava_2/net/minecraft/util/random/Weight.class b/build/_compileJava_2/net/minecraft/util/random/Weight.class new file mode 100644 index 000000000..318947d0d Binary files /dev/null and b/build/_compileJava_2/net/minecraft/util/random/Weight.class differ diff --git a/build/_compileJava_2/net/minecraft/util/random/WeightedEntry$IntrusiveBase.class b/build/_compileJava_2/net/minecraft/util/random/WeightedEntry$IntrusiveBase.class new file mode 100644 index 000000000..27bd1dca6 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/util/random/WeightedEntry$IntrusiveBase.class differ diff --git a/build/_compileJava_2/net/minecraft/util/random/WeightedEntry$Wrapper.class b/build/_compileJava_2/net/minecraft/util/random/WeightedEntry$Wrapper.class new file mode 100644 index 000000000..fc035b713 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/util/random/WeightedEntry$Wrapper.class differ diff --git a/build/_compileJava_2/net/minecraft/util/random/WeightedEntry.class b/build/_compileJava_2/net/minecraft/util/random/WeightedEntry.class new file mode 100644 index 000000000..503e8b1b5 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/util/random/WeightedEntry.class differ diff --git a/build/_compileJava_2/net/minecraft/util/random/WeightedRandom.class b/build/_compileJava_2/net/minecraft/util/random/WeightedRandom.class new file mode 100644 index 000000000..7c71c9cf5 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/util/random/WeightedRandom.class differ diff --git a/build/_compileJava_2/net/minecraft/util/random/WeightedRandomList.class b/build/_compileJava_2/net/minecraft/util/random/WeightedRandomList.class new file mode 100644 index 000000000..c73c00f0c Binary files /dev/null and b/build/_compileJava_2/net/minecraft/util/random/WeightedRandomList.class differ diff --git a/build/_compileJava_2/net/minecraft/util/random/package-info.class b/build/_compileJava_2/net/minecraft/util/random/package-info.class new file mode 100644 index 000000000..b06a4079c Binary files /dev/null and b/build/_compileJava_2/net/minecraft/util/random/package-info.class differ diff --git a/build/_compileJava_2/net/minecraft/util/thread/BlockableEventLoop.class b/build/_compileJava_2/net/minecraft/util/thread/BlockableEventLoop.class new file mode 100644 index 000000000..183fff61e Binary files /dev/null and b/build/_compileJava_2/net/minecraft/util/thread/BlockableEventLoop.class differ diff --git a/build/_compileJava_2/net/minecraft/util/thread/NamedThreadFactory.class b/build/_compileJava_2/net/minecraft/util/thread/NamedThreadFactory.class new file mode 100644 index 000000000..1475ce2d9 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/util/thread/NamedThreadFactory.class differ diff --git a/build/_compileJava_2/net/minecraft/util/thread/ProcessorHandle$1.class b/build/_compileJava_2/net/minecraft/util/thread/ProcessorHandle$1.class new file mode 100644 index 000000000..40d70abda Binary files /dev/null and b/build/_compileJava_2/net/minecraft/util/thread/ProcessorHandle$1.class differ diff --git a/build/_compileJava_2/net/minecraft/util/thread/ProcessorHandle.class b/build/_compileJava_2/net/minecraft/util/thread/ProcessorHandle.class new file mode 100644 index 000000000..5e6986915 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/util/thread/ProcessorHandle.class differ diff --git a/build/_compileJava_2/net/minecraft/util/thread/ProcessorMailbox.class b/build/_compileJava_2/net/minecraft/util/thread/ProcessorMailbox.class new file mode 100644 index 000000000..0c043b393 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/util/thread/ProcessorMailbox.class differ diff --git a/build/_compileJava_2/net/minecraft/util/thread/ReentrantBlockableEventLoop.class b/build/_compileJava_2/net/minecraft/util/thread/ReentrantBlockableEventLoop.class new file mode 100644 index 000000000..9f31d9228 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/util/thread/ReentrantBlockableEventLoop.class differ diff --git a/build/_compileJava_2/net/minecraft/util/thread/StrictQueue$FixedPriorityQueue.class b/build/_compileJava_2/net/minecraft/util/thread/StrictQueue$FixedPriorityQueue.class new file mode 100644 index 000000000..904c35ee2 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/util/thread/StrictQueue$FixedPriorityQueue.class differ diff --git a/build/_compileJava_2/net/minecraft/util/thread/StrictQueue$IntRunnable.class b/build/_compileJava_2/net/minecraft/util/thread/StrictQueue$IntRunnable.class new file mode 100644 index 000000000..280830dbd Binary files /dev/null and b/build/_compileJava_2/net/minecraft/util/thread/StrictQueue$IntRunnable.class differ diff --git a/build/_compileJava_2/net/minecraft/util/thread/StrictQueue$QueueStrictQueue.class b/build/_compileJava_2/net/minecraft/util/thread/StrictQueue$QueueStrictQueue.class new file mode 100644 index 000000000..4ce62020a Binary files /dev/null and b/build/_compileJava_2/net/minecraft/util/thread/StrictQueue$QueueStrictQueue.class differ diff --git a/build/_compileJava_2/net/minecraft/util/thread/StrictQueue.class b/build/_compileJava_2/net/minecraft/util/thread/StrictQueue.class new file mode 100644 index 000000000..e9025e9e0 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/util/thread/StrictQueue.class differ diff --git a/build/_compileJava_2/net/minecraft/util/thread/package-info.class b/build/_compileJava_2/net/minecraft/util/thread/package-info.class new file mode 100644 index 000000000..8b3568ca2 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/util/thread/package-info.class differ diff --git a/build/_compileJava_2/net/minecraft/util/valueproviders/BiasedToBottomInt.class b/build/_compileJava_2/net/minecraft/util/valueproviders/BiasedToBottomInt.class new file mode 100644 index 000000000..c8f216950 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/util/valueproviders/BiasedToBottomInt.class differ diff --git a/build/_compileJava_2/net/minecraft/util/valueproviders/ClampedInt.class b/build/_compileJava_2/net/minecraft/util/valueproviders/ClampedInt.class new file mode 100644 index 000000000..2da89720a Binary files /dev/null and b/build/_compileJava_2/net/minecraft/util/valueproviders/ClampedInt.class differ diff --git a/build/_compileJava_2/net/minecraft/util/valueproviders/ClampedNormalFloat.class b/build/_compileJava_2/net/minecraft/util/valueproviders/ClampedNormalFloat.class new file mode 100644 index 000000000..3eabe9ec1 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/util/valueproviders/ClampedNormalFloat.class differ diff --git a/build/_compileJava_2/net/minecraft/util/valueproviders/ClampedNormalInt.class b/build/_compileJava_2/net/minecraft/util/valueproviders/ClampedNormalInt.class new file mode 100644 index 000000000..0772fe837 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/util/valueproviders/ClampedNormalInt.class differ diff --git a/build/_compileJava_2/net/minecraft/util/valueproviders/ConstantFloat.class b/build/_compileJava_2/net/minecraft/util/valueproviders/ConstantFloat.class new file mode 100644 index 000000000..f4df43880 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/util/valueproviders/ConstantFloat.class differ diff --git a/build/_compileJava_2/net/minecraft/util/valueproviders/ConstantInt.class b/build/_compileJava_2/net/minecraft/util/valueproviders/ConstantInt.class new file mode 100644 index 000000000..fb8c6ea0a Binary files /dev/null and b/build/_compileJava_2/net/minecraft/util/valueproviders/ConstantInt.class differ diff --git a/build/_compileJava_2/net/minecraft/util/valueproviders/FloatProvider.class b/build/_compileJava_2/net/minecraft/util/valueproviders/FloatProvider.class new file mode 100644 index 000000000..64c5ab95e Binary files /dev/null and b/build/_compileJava_2/net/minecraft/util/valueproviders/FloatProvider.class differ diff --git a/build/_compileJava_2/net/minecraft/util/valueproviders/FloatProviderType.class b/build/_compileJava_2/net/minecraft/util/valueproviders/FloatProviderType.class new file mode 100644 index 000000000..2a80129ee Binary files /dev/null and b/build/_compileJava_2/net/minecraft/util/valueproviders/FloatProviderType.class differ diff --git a/build/_compileJava_2/net/minecraft/util/valueproviders/IntProvider.class b/build/_compileJava_2/net/minecraft/util/valueproviders/IntProvider.class new file mode 100644 index 000000000..7f0f70387 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/util/valueproviders/IntProvider.class differ diff --git a/build/_compileJava_2/net/minecraft/util/valueproviders/IntProviderType.class b/build/_compileJava_2/net/minecraft/util/valueproviders/IntProviderType.class new file mode 100644 index 000000000..3172c91b1 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/util/valueproviders/IntProviderType.class differ diff --git a/build/_compileJava_2/net/minecraft/util/valueproviders/MultipliedFloats.class b/build/_compileJava_2/net/minecraft/util/valueproviders/MultipliedFloats.class new file mode 100644 index 000000000..e045ddf36 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/util/valueproviders/MultipliedFloats.class differ diff --git a/build/_compileJava_2/net/minecraft/util/valueproviders/SampledFloat.class b/build/_compileJava_2/net/minecraft/util/valueproviders/SampledFloat.class new file mode 100644 index 000000000..2741edce1 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/util/valueproviders/SampledFloat.class differ diff --git a/build/_compileJava_2/net/minecraft/util/valueproviders/TrapezoidFloat.class b/build/_compileJava_2/net/minecraft/util/valueproviders/TrapezoidFloat.class new file mode 100644 index 000000000..7ca2fee96 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/util/valueproviders/TrapezoidFloat.class differ diff --git a/build/_compileJava_2/net/minecraft/util/valueproviders/UniformFloat.class b/build/_compileJava_2/net/minecraft/util/valueproviders/UniformFloat.class new file mode 100644 index 000000000..9f41d8dc8 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/util/valueproviders/UniformFloat.class differ diff --git a/build/_compileJava_2/net/minecraft/util/valueproviders/UniformInt.class b/build/_compileJava_2/net/minecraft/util/valueproviders/UniformInt.class new file mode 100644 index 000000000..fdd9c2683 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/util/valueproviders/UniformInt.class differ diff --git a/build/_compileJava_2/net/minecraft/util/valueproviders/WeightedListInt.class b/build/_compileJava_2/net/minecraft/util/valueproviders/WeightedListInt.class new file mode 100644 index 000000000..e0a34f6b0 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/util/valueproviders/WeightedListInt.class differ diff --git a/build/_compileJava_2/net/minecraft/util/valueproviders/package-info.class b/build/_compileJava_2/net/minecraft/util/valueproviders/package-info.class new file mode 100644 index 000000000..74eed50ac Binary files /dev/null and b/build/_compileJava_2/net/minecraft/util/valueproviders/package-info.class differ diff --git a/build/_compileJava_2/net/minecraft/util/worldupdate/WorldUpgrader.class b/build/_compileJava_2/net/minecraft/util/worldupdate/WorldUpgrader.class new file mode 100644 index 000000000..581b3602b Binary files /dev/null and b/build/_compileJava_2/net/minecraft/util/worldupdate/WorldUpgrader.class differ diff --git a/build/_compileJava_2/net/minecraft/util/worldupdate/package-info.class b/build/_compileJava_2/net/minecraft/util/worldupdate/package-info.class new file mode 100644 index 000000000..075da70c3 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/util/worldupdate/package-info.class differ diff --git a/build/_compileJava_2/net/minecraft/world/BossEvent$BossBarColor.class b/build/_compileJava_2/net/minecraft/world/BossEvent$BossBarColor.class new file mode 100644 index 000000000..f8f41a740 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/BossEvent$BossBarColor.class differ diff --git a/build/_compileJava_2/net/minecraft/world/BossEvent$BossBarOverlay.class b/build/_compileJava_2/net/minecraft/world/BossEvent$BossBarOverlay.class new file mode 100644 index 000000000..bf2bdeda3 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/BossEvent$BossBarOverlay.class differ diff --git a/build/_compileJava_2/net/minecraft/world/BossEvent.class b/build/_compileJava_2/net/minecraft/world/BossEvent.class new file mode 100644 index 000000000..d731d6960 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/BossEvent.class differ diff --git a/build/_compileJava_2/net/minecraft/world/Clearable.class b/build/_compileJava_2/net/minecraft/world/Clearable.class new file mode 100644 index 000000000..a36edab78 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/Clearable.class differ diff --git a/build/_compileJava_2/net/minecraft/world/CompoundContainer.class b/build/_compileJava_2/net/minecraft/world/CompoundContainer.class new file mode 100644 index 000000000..40c84295e Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/CompoundContainer.class differ diff --git a/build/_compileJava_2/net/minecraft/world/Container.class b/build/_compileJava_2/net/minecraft/world/Container.class new file mode 100644 index 000000000..ae44c15a5 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/Container.class differ diff --git a/build/_compileJava_2/net/minecraft/world/ContainerHelper.class b/build/_compileJava_2/net/minecraft/world/ContainerHelper.class new file mode 100644 index 000000000..4e9273c75 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/ContainerHelper.class differ diff --git a/build/_compileJava_2/net/minecraft/world/ContainerListener.class b/build/_compileJava_2/net/minecraft/world/ContainerListener.class new file mode 100644 index 000000000..1c54dfe5e Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/ContainerListener.class differ diff --git a/build/_compileJava_2/net/minecraft/world/Containers.class b/build/_compileJava_2/net/minecraft/world/Containers.class new file mode 100644 index 000000000..c4840f2c4 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/Containers.class differ diff --git a/build/_compileJava_2/net/minecraft/world/Difficulty.class b/build/_compileJava_2/net/minecraft/world/Difficulty.class new file mode 100644 index 000000000..ce6dec402 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/Difficulty.class differ diff --git a/build/_compileJava_2/net/minecraft/world/DifficultyInstance.class b/build/_compileJava_2/net/minecraft/world/DifficultyInstance.class new file mode 100644 index 000000000..491aad66f Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/DifficultyInstance.class differ diff --git a/build/_compileJava_2/net/minecraft/world/InteractionHand.class b/build/_compileJava_2/net/minecraft/world/InteractionHand.class new file mode 100644 index 000000000..ff740d628 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/InteractionHand.class differ diff --git a/build/_compileJava_2/net/minecraft/world/InteractionResult.class b/build/_compileJava_2/net/minecraft/world/InteractionResult.class new file mode 100644 index 000000000..51a9c86b8 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/InteractionResult.class differ diff --git a/build/_compileJava_2/net/minecraft/world/InteractionResultHolder.class b/build/_compileJava_2/net/minecraft/world/InteractionResultHolder.class new file mode 100644 index 000000000..a1e4ab6d2 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/InteractionResultHolder.class differ diff --git a/build/_compileJava_2/net/minecraft/world/LockCode.class b/build/_compileJava_2/net/minecraft/world/LockCode.class new file mode 100644 index 000000000..0648a7f56 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/LockCode.class differ diff --git a/build/_compileJava_2/net/minecraft/world/MenuProvider.class b/build/_compileJava_2/net/minecraft/world/MenuProvider.class new file mode 100644 index 000000000..07115d154 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/MenuProvider.class differ diff --git a/build/_compileJava_2/net/minecraft/world/Nameable.class b/build/_compileJava_2/net/minecraft/world/Nameable.class new file mode 100644 index 000000000..b5428db2d Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/Nameable.class differ diff --git a/build/_compileJava_2/net/minecraft/world/RandomSequence.class b/build/_compileJava_2/net/minecraft/world/RandomSequence.class new file mode 100644 index 000000000..f80bb0e47 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/RandomSequence.class differ diff --git a/build/_compileJava_2/net/minecraft/world/RandomSequences$1.class b/build/_compileJava_2/net/minecraft/world/RandomSequences$1.class new file mode 100644 index 000000000..cc5d3888e Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/RandomSequences$1.class differ diff --git a/build/_compileJava_2/net/minecraft/world/RandomSequences.class b/build/_compileJava_2/net/minecraft/world/RandomSequences.class new file mode 100644 index 000000000..ca887a3f3 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/RandomSequences.class differ diff --git a/build/_compileJava_2/net/minecraft/world/SimpleContainer.class b/build/_compileJava_2/net/minecraft/world/SimpleContainer.class new file mode 100644 index 000000000..2f0c11985 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/SimpleContainer.class differ diff --git a/build/_compileJava_2/net/minecraft/world/SimpleMenuProvider.class b/build/_compileJava_2/net/minecraft/world/SimpleMenuProvider.class new file mode 100644 index 000000000..406be5c6e Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/SimpleMenuProvider.class differ diff --git a/build/_compileJava_2/net/minecraft/world/WorldlyContainer.class b/build/_compileJava_2/net/minecraft/world/WorldlyContainer.class new file mode 100644 index 000000000..04e51f3d2 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/WorldlyContainer.class differ diff --git a/build/_compileJava_2/net/minecraft/world/WorldlyContainerHolder.class b/build/_compileJava_2/net/minecraft/world/WorldlyContainerHolder.class new file mode 100644 index 000000000..24e5b70e5 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/WorldlyContainerHolder.class differ diff --git a/build/_compileJava_2/net/minecraft/world/damagesource/CombatEntry.class b/build/_compileJava_2/net/minecraft/world/damagesource/CombatEntry.class new file mode 100644 index 000000000..c5f736562 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/damagesource/CombatEntry.class differ diff --git a/build/_compileJava_2/net/minecraft/world/damagesource/CombatRules.class b/build/_compileJava_2/net/minecraft/world/damagesource/CombatRules.class new file mode 100644 index 000000000..f9eaa2cb2 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/damagesource/CombatRules.class differ diff --git a/build/_compileJava_2/net/minecraft/world/damagesource/CombatTracker.class b/build/_compileJava_2/net/minecraft/world/damagesource/CombatTracker.class new file mode 100644 index 000000000..018c3e57a Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/damagesource/CombatTracker.class differ diff --git a/build/_compileJava_2/net/minecraft/world/damagesource/DamageEffects.class b/build/_compileJava_2/net/minecraft/world/damagesource/DamageEffects.class new file mode 100644 index 000000000..2c367b461 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/damagesource/DamageEffects.class differ diff --git a/build/_compileJava_2/net/minecraft/world/damagesource/DamageScaling.class b/build/_compileJava_2/net/minecraft/world/damagesource/DamageScaling.class new file mode 100644 index 000000000..026bc0251 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/damagesource/DamageScaling.class differ diff --git a/build/_compileJava_2/net/minecraft/world/damagesource/DamageSource$1.class b/build/_compileJava_2/net/minecraft/world/damagesource/DamageSource$1.class new file mode 100644 index 000000000..78898bdce Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/damagesource/DamageSource$1.class differ diff --git a/build/_compileJava_2/net/minecraft/world/damagesource/DamageSource.class b/build/_compileJava_2/net/minecraft/world/damagesource/DamageSource.class new file mode 100644 index 000000000..59826ff4d Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/damagesource/DamageSource.class differ diff --git a/build/_compileJava_2/net/minecraft/world/damagesource/DamageSources.class b/build/_compileJava_2/net/minecraft/world/damagesource/DamageSources.class new file mode 100644 index 000000000..114a995e7 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/damagesource/DamageSources.class differ diff --git a/build/_compileJava_2/net/minecraft/world/damagesource/DamageType.class b/build/_compileJava_2/net/minecraft/world/damagesource/DamageType.class new file mode 100644 index 000000000..ebf7ddfad Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/damagesource/DamageType.class differ diff --git a/build/_compileJava_2/net/minecraft/world/damagesource/DamageTypes.class b/build/_compileJava_2/net/minecraft/world/damagesource/DamageTypes.class new file mode 100644 index 000000000..4dc635e72 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/damagesource/DamageTypes.class differ diff --git a/build/_compileJava_2/net/minecraft/world/damagesource/DeathMessageType.class b/build/_compileJava_2/net/minecraft/world/damagesource/DeathMessageType.class new file mode 100644 index 000000000..c0edd542c Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/damagesource/DeathMessageType.class differ diff --git a/build/_compileJava_2/net/minecraft/world/damagesource/FallLocation.class b/build/_compileJava_2/net/minecraft/world/damagesource/FallLocation.class new file mode 100644 index 000000000..7922878fe Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/damagesource/FallLocation.class differ diff --git a/build/_compileJava_2/net/minecraft/world/damagesource/package-info.class b/build/_compileJava_2/net/minecraft/world/damagesource/package-info.class new file mode 100644 index 000000000..1bb344e31 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/damagesource/package-info.class differ diff --git a/build/_compileJava_2/net/minecraft/world/effect/AbsoptionMobEffect.class b/build/_compileJava_2/net/minecraft/world/effect/AbsoptionMobEffect.class new file mode 100644 index 000000000..d2a87dc69 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/effect/AbsoptionMobEffect.class differ diff --git a/build/_compileJava_2/net/minecraft/world/effect/AttackDamageMobEffect.class b/build/_compileJava_2/net/minecraft/world/effect/AttackDamageMobEffect.class new file mode 100644 index 000000000..7883d91ff Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/effect/AttackDamageMobEffect.class differ diff --git a/build/_compileJava_2/net/minecraft/world/effect/HealthBoostMobEffect.class b/build/_compileJava_2/net/minecraft/world/effect/HealthBoostMobEffect.class new file mode 100644 index 000000000..9ce510aea Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/effect/HealthBoostMobEffect.class differ diff --git a/build/_compileJava_2/net/minecraft/world/effect/InstantenousMobEffect.class b/build/_compileJava_2/net/minecraft/world/effect/InstantenousMobEffect.class new file mode 100644 index 000000000..924f54904 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/effect/InstantenousMobEffect.class differ diff --git a/build/_compileJava_2/net/minecraft/world/effect/MobEffect.class b/build/_compileJava_2/net/minecraft/world/effect/MobEffect.class new file mode 100644 index 000000000..d6c9d7aa8 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/effect/MobEffect.class differ diff --git a/build/_compileJava_2/net/minecraft/world/effect/MobEffectCategory.class b/build/_compileJava_2/net/minecraft/world/effect/MobEffectCategory.class new file mode 100644 index 000000000..1e78b9eaf Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/effect/MobEffectCategory.class differ diff --git a/build/_compileJava_2/net/minecraft/world/effect/MobEffectInstance$FactorData.class b/build/_compileJava_2/net/minecraft/world/effect/MobEffectInstance$FactorData.class new file mode 100644 index 000000000..9dd9e77ea Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/effect/MobEffectInstance$FactorData.class differ diff --git a/build/_compileJava_2/net/minecraft/world/effect/MobEffectInstance.class b/build/_compileJava_2/net/minecraft/world/effect/MobEffectInstance.class new file mode 100644 index 000000000..6597c004b Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/effect/MobEffectInstance.class differ diff --git a/build/_compileJava_2/net/minecraft/world/effect/MobEffectUtil.class b/build/_compileJava_2/net/minecraft/world/effect/MobEffectUtil.class new file mode 100644 index 000000000..b210f5715 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/effect/MobEffectUtil.class differ diff --git a/build/_compileJava_2/net/minecraft/world/effect/MobEffects$1.class b/build/_compileJava_2/net/minecraft/world/effect/MobEffects$1.class new file mode 100644 index 000000000..ed3f68bbf Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/effect/MobEffects$1.class differ diff --git a/build/_compileJava_2/net/minecraft/world/effect/MobEffects.class b/build/_compileJava_2/net/minecraft/world/effect/MobEffects.class new file mode 100644 index 000000000..2f57d1c0f Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/effect/MobEffects.class differ diff --git a/build/_compileJava_2/net/minecraft/world/effect/package-info.class b/build/_compileJava_2/net/minecraft/world/effect/package-info.class new file mode 100644 index 000000000..61ff4b9be Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/effect/package-info.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/AgeableMob$AgeableMobGroupData.class b/build/_compileJava_2/net/minecraft/world/entity/AgeableMob$AgeableMobGroupData.class new file mode 100644 index 000000000..80ab9263b Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/AgeableMob$AgeableMobGroupData.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/AgeableMob.class b/build/_compileJava_2/net/minecraft/world/entity/AgeableMob.class new file mode 100644 index 000000000..79f8ca38b Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/AgeableMob.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/AnimationState.class b/build/_compileJava_2/net/minecraft/world/entity/AnimationState.class new file mode 100644 index 000000000..9519fd84f Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/AnimationState.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/AreaEffectCloud.class b/build/_compileJava_2/net/minecraft/world/entity/AreaEffectCloud.class new file mode 100644 index 000000000..a3a72ef7e Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/AreaEffectCloud.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/Attackable.class b/build/_compileJava_2/net/minecraft/world/entity/Attackable.class new file mode 100644 index 000000000..a57d1adeb Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/Attackable.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/Display$1.class b/build/_compileJava_2/net/minecraft/world/entity/Display$1.class new file mode 100644 index 000000000..441c60e0f Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/Display$1.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/Display$BillboardConstraints.class b/build/_compileJava_2/net/minecraft/world/entity/Display$BillboardConstraints.class new file mode 100644 index 000000000..5d71ae400 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/Display$BillboardConstraints.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/Display$BlockDisplay$BlockRenderState.class b/build/_compileJava_2/net/minecraft/world/entity/Display$BlockDisplay$BlockRenderState.class new file mode 100644 index 000000000..cbfc58af9 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/Display$BlockDisplay$BlockRenderState.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/Display$BlockDisplay.class b/build/_compileJava_2/net/minecraft/world/entity/Display$BlockDisplay.class new file mode 100644 index 000000000..40a5b6808 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/Display$BlockDisplay.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/Display$ColorInterpolator.class b/build/_compileJava_2/net/minecraft/world/entity/Display$ColorInterpolator.class new file mode 100644 index 000000000..9294757dd Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/Display$ColorInterpolator.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/Display$FloatInterpolator.class b/build/_compileJava_2/net/minecraft/world/entity/Display$FloatInterpolator.class new file mode 100644 index 000000000..03ef1208b Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/Display$FloatInterpolator.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/Display$GenericInterpolator.class b/build/_compileJava_2/net/minecraft/world/entity/Display$GenericInterpolator.class new file mode 100644 index 000000000..f24a582b3 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/Display$GenericInterpolator.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/Display$IntInterpolator.class b/build/_compileJava_2/net/minecraft/world/entity/Display$IntInterpolator.class new file mode 100644 index 000000000..dd2a33fad Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/Display$IntInterpolator.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/Display$ItemDisplay$1.class b/build/_compileJava_2/net/minecraft/world/entity/Display$ItemDisplay$1.class new file mode 100644 index 000000000..562d27ea9 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/Display$ItemDisplay$1.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/Display$ItemDisplay$ItemRenderState.class b/build/_compileJava_2/net/minecraft/world/entity/Display$ItemDisplay$ItemRenderState.class new file mode 100644 index 000000000..f1b7249af Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/Display$ItemDisplay$ItemRenderState.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/Display$ItemDisplay.class b/build/_compileJava_2/net/minecraft/world/entity/Display$ItemDisplay.class new file mode 100644 index 000000000..0509452c8 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/Display$ItemDisplay.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/Display$LinearFloatInterpolator.class b/build/_compileJava_2/net/minecraft/world/entity/Display$LinearFloatInterpolator.class new file mode 100644 index 000000000..22a83716e Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/Display$LinearFloatInterpolator.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/Display$LinearIntInterpolator.class b/build/_compileJava_2/net/minecraft/world/entity/Display$LinearIntInterpolator.class new file mode 100644 index 000000000..6306e6eee Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/Display$LinearIntInterpolator.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/Display$RenderState.class b/build/_compileJava_2/net/minecraft/world/entity/Display$RenderState.class new file mode 100644 index 000000000..5baf05e73 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/Display$RenderState.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/Display$TextDisplay$Align.class b/build/_compileJava_2/net/minecraft/world/entity/Display$TextDisplay$Align.class new file mode 100644 index 000000000..ae506b948 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/Display$TextDisplay$Align.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/Display$TextDisplay$CachedInfo.class b/build/_compileJava_2/net/minecraft/world/entity/Display$TextDisplay$CachedInfo.class new file mode 100644 index 000000000..c5d64b3df Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/Display$TextDisplay$CachedInfo.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/Display$TextDisplay$CachedLine.class b/build/_compileJava_2/net/minecraft/world/entity/Display$TextDisplay$CachedLine.class new file mode 100644 index 000000000..618726b32 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/Display$TextDisplay$CachedLine.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/Display$TextDisplay$LineSplitter.class b/build/_compileJava_2/net/minecraft/world/entity/Display$TextDisplay$LineSplitter.class new file mode 100644 index 000000000..c96423b9a Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/Display$TextDisplay$LineSplitter.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/Display$TextDisplay$TextRenderState.class b/build/_compileJava_2/net/minecraft/world/entity/Display$TextDisplay$TextRenderState.class new file mode 100644 index 000000000..5e9cacc6a Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/Display$TextDisplay$TextRenderState.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/Display$TextDisplay.class b/build/_compileJava_2/net/minecraft/world/entity/Display$TextDisplay.class new file mode 100644 index 000000000..50cc91cb4 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/Display$TextDisplay.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/Display$TransformationInterpolator.class b/build/_compileJava_2/net/minecraft/world/entity/Display$TransformationInterpolator.class new file mode 100644 index 000000000..001563d5e Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/Display$TransformationInterpolator.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/Display.class b/build/_compileJava_2/net/minecraft/world/entity/Display.class new file mode 100644 index 000000000..8e555d5ce Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/Display.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/Entity$1.class b/build/_compileJava_2/net/minecraft/world/entity/Entity$1.class new file mode 100644 index 000000000..89b885b0b Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/Entity$1.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/Entity$MoveFunction.class b/build/_compileJava_2/net/minecraft/world/entity/Entity$MoveFunction.class new file mode 100644 index 000000000..9007412b4 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/Entity$MoveFunction.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/Entity$MovementEmission.class b/build/_compileJava_2/net/minecraft/world/entity/Entity$MovementEmission.class new file mode 100644 index 000000000..264f02768 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/Entity$MovementEmission.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/Entity$RemovalReason.class b/build/_compileJava_2/net/minecraft/world/entity/Entity$RemovalReason.class new file mode 100644 index 000000000..106c60072 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/Entity$RemovalReason.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/Entity.class b/build/_compileJava_2/net/minecraft/world/entity/Entity.class new file mode 100644 index 000000000..20134d75d Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/Entity.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/EntityDimensions.class b/build/_compileJava_2/net/minecraft/world/entity/EntityDimensions.class new file mode 100644 index 000000000..26a452dc3 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/EntityDimensions.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/EntityEvent.class b/build/_compileJava_2/net/minecraft/world/entity/EntityEvent.class new file mode 100644 index 000000000..642251c83 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/EntityEvent.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/EntitySelector$MobCanWearArmorEntitySelector.class b/build/_compileJava_2/net/minecraft/world/entity/EntitySelector$MobCanWearArmorEntitySelector.class new file mode 100644 index 000000000..cfdd1f7ad Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/EntitySelector$MobCanWearArmorEntitySelector.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/EntitySelector.class b/build/_compileJava_2/net/minecraft/world/entity/EntitySelector.class new file mode 100644 index 000000000..716e8dcfd Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/EntitySelector.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/EntityType$1.class b/build/_compileJava_2/net/minecraft/world/entity/EntityType$1.class new file mode 100644 index 000000000..2fee4805f Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/EntityType$1.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/EntityType$Builder.class b/build/_compileJava_2/net/minecraft/world/entity/EntityType$Builder.class new file mode 100644 index 000000000..c45816cbe Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/EntityType$Builder.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/EntityType$EntityFactory.class b/build/_compileJava_2/net/minecraft/world/entity/EntityType$EntityFactory.class new file mode 100644 index 000000000..ea4cf5d71 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/EntityType$EntityFactory.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/EntityType.class b/build/_compileJava_2/net/minecraft/world/entity/EntityType.class new file mode 100644 index 000000000..2d8166e7d Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/EntityType.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/EquipmentSlot$Type.class b/build/_compileJava_2/net/minecraft/world/entity/EquipmentSlot$Type.class new file mode 100644 index 000000000..b73fb7e99 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/EquipmentSlot$Type.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/EquipmentSlot.class b/build/_compileJava_2/net/minecraft/world/entity/EquipmentSlot.class new file mode 100644 index 000000000..d2f1bedb0 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/EquipmentSlot.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/ExperienceOrb.class b/build/_compileJava_2/net/minecraft/world/entity/ExperienceOrb.class new file mode 100644 index 000000000..bfc11fec9 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/ExperienceOrb.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/FlyingMob.class b/build/_compileJava_2/net/minecraft/world/entity/FlyingMob.class new file mode 100644 index 000000000..687d77ed6 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/FlyingMob.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/GlowSquid.class b/build/_compileJava_2/net/minecraft/world/entity/GlowSquid.class new file mode 100644 index 000000000..5a72cec30 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/GlowSquid.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/HasCustomInventoryScreen.class b/build/_compileJava_2/net/minecraft/world/entity/HasCustomInventoryScreen.class new file mode 100644 index 000000000..c728a80fa Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/HasCustomInventoryScreen.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/HumanoidArm.class b/build/_compileJava_2/net/minecraft/world/entity/HumanoidArm.class new file mode 100644 index 000000000..3487584d9 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/HumanoidArm.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/Interaction$PlayerAction.class b/build/_compileJava_2/net/minecraft/world/entity/Interaction$PlayerAction.class new file mode 100644 index 000000000..9d818b965 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/Interaction$PlayerAction.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/Interaction.class b/build/_compileJava_2/net/minecraft/world/entity/Interaction.class new file mode 100644 index 000000000..96c6143a4 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/Interaction.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/ItemBasedSteering.class b/build/_compileJava_2/net/minecraft/world/entity/ItemBasedSteering.class new file mode 100644 index 000000000..a75666164 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/ItemBasedSteering.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/ItemSteerable.class b/build/_compileJava_2/net/minecraft/world/entity/ItemSteerable.class new file mode 100644 index 000000000..069b726e1 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/ItemSteerable.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/LerpingModel.class b/build/_compileJava_2/net/minecraft/world/entity/LerpingModel.class new file mode 100644 index 000000000..44e081381 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/LerpingModel.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/LightningBolt.class b/build/_compileJava_2/net/minecraft/world/entity/LightningBolt.class new file mode 100644 index 000000000..ae98f2504 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/LightningBolt.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/LivingEntity$1.class b/build/_compileJava_2/net/minecraft/world/entity/LivingEntity$1.class new file mode 100644 index 000000000..8d259ef10 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/LivingEntity$1.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/LivingEntity$Fallsounds.class b/build/_compileJava_2/net/minecraft/world/entity/LivingEntity$Fallsounds.class new file mode 100644 index 000000000..e409630e1 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/LivingEntity$Fallsounds.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/LivingEntity.class b/build/_compileJava_2/net/minecraft/world/entity/LivingEntity.class new file mode 100644 index 000000000..4918cdddb Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/LivingEntity.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/Marker.class b/build/_compileJava_2/net/minecraft/world/entity/Marker.class new file mode 100644 index 000000000..887135fd7 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/Marker.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/Mob$1.class b/build/_compileJava_2/net/minecraft/world/entity/Mob$1.class new file mode 100644 index 000000000..c11f7b675 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/Mob$1.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/Mob.class b/build/_compileJava_2/net/minecraft/world/entity/Mob.class new file mode 100644 index 000000000..3b3edba9d Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/Mob.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/MobCategory.class b/build/_compileJava_2/net/minecraft/world/entity/MobCategory.class new file mode 100644 index 000000000..a86872a5f Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/MobCategory.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/MobSpawnType.class b/build/_compileJava_2/net/minecraft/world/entity/MobSpawnType.class new file mode 100644 index 000000000..1f946fdef Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/MobSpawnType.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/MobType.class b/build/_compileJava_2/net/minecraft/world/entity/MobType.class new file mode 100644 index 000000000..5c10df82d Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/MobType.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/MoverType.class b/build/_compileJava_2/net/minecraft/world/entity/MoverType.class new file mode 100644 index 000000000..80e9d77dc Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/MoverType.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/NeutralMob.class b/build/_compileJava_2/net/minecraft/world/entity/NeutralMob.class new file mode 100644 index 000000000..74adb5bb2 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/NeutralMob.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/OwnableEntity.class b/build/_compileJava_2/net/minecraft/world/entity/OwnableEntity.class new file mode 100644 index 000000000..1b6b381c4 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/OwnableEntity.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/PathfinderMob.class b/build/_compileJava_2/net/minecraft/world/entity/PathfinderMob.class new file mode 100644 index 000000000..9ee20ba4d Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/PathfinderMob.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/PlayerRideable.class b/build/_compileJava_2/net/minecraft/world/entity/PlayerRideable.class new file mode 100644 index 000000000..d55503508 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/PlayerRideable.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/PlayerRideableJumping.class b/build/_compileJava_2/net/minecraft/world/entity/PlayerRideableJumping.class new file mode 100644 index 000000000..9c25cbfef Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/PlayerRideableJumping.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/Pose.class b/build/_compileJava_2/net/minecraft/world/entity/Pose.class new file mode 100644 index 000000000..90a96ddc8 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/Pose.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/PowerableMob.class b/build/_compileJava_2/net/minecraft/world/entity/PowerableMob.class new file mode 100644 index 000000000..b2a2e76d8 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/PowerableMob.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/RelativeMovement.class b/build/_compileJava_2/net/minecraft/world/entity/RelativeMovement.class new file mode 100644 index 000000000..077240b3f Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/RelativeMovement.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/ReputationEventHandler.class b/build/_compileJava_2/net/minecraft/world/entity/ReputationEventHandler.class new file mode 100644 index 000000000..b8a31b73f Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/ReputationEventHandler.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/RiderShieldingMount.class b/build/_compileJava_2/net/minecraft/world/entity/RiderShieldingMount.class new file mode 100644 index 000000000..885eb2bbe Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/RiderShieldingMount.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/Saddleable.class b/build/_compileJava_2/net/minecraft/world/entity/Saddleable.class new file mode 100644 index 000000000..5da57ee05 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/Saddleable.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/Shearable.class b/build/_compileJava_2/net/minecraft/world/entity/Shearable.class new file mode 100644 index 000000000..5a012c74a Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/Shearable.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/SlotAccess$1.class b/build/_compileJava_2/net/minecraft/world/entity/SlotAccess$1.class new file mode 100644 index 000000000..0c421de23 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/SlotAccess$1.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/SlotAccess$2.class b/build/_compileJava_2/net/minecraft/world/entity/SlotAccess$2.class new file mode 100644 index 000000000..53b2fa052 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/SlotAccess$2.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/SlotAccess$3.class b/build/_compileJava_2/net/minecraft/world/entity/SlotAccess$3.class new file mode 100644 index 000000000..72ec7af82 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/SlotAccess$3.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/SlotAccess.class b/build/_compileJava_2/net/minecraft/world/entity/SlotAccess.class new file mode 100644 index 000000000..dfd115854 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/SlotAccess.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/SpawnGroupData.class b/build/_compileJava_2/net/minecraft/world/entity/SpawnGroupData.class new file mode 100644 index 000000000..d486f3ad8 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/SpawnGroupData.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/SpawnPlacements$Data.class b/build/_compileJava_2/net/minecraft/world/entity/SpawnPlacements$Data.class new file mode 100644 index 000000000..89b7a89e1 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/SpawnPlacements$Data.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/SpawnPlacements$SpawnPredicate.class b/build/_compileJava_2/net/minecraft/world/entity/SpawnPlacements$SpawnPredicate.class new file mode 100644 index 000000000..92e4eff7b Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/SpawnPlacements$SpawnPredicate.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/SpawnPlacements$Type.class b/build/_compileJava_2/net/minecraft/world/entity/SpawnPlacements$Type.class new file mode 100644 index 000000000..298f4528e Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/SpawnPlacements$Type.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/SpawnPlacements.class b/build/_compileJava_2/net/minecraft/world/entity/SpawnPlacements.class new file mode 100644 index 000000000..667b5ba18 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/SpawnPlacements.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/TamableAnimal.class b/build/_compileJava_2/net/minecraft/world/entity/TamableAnimal.class new file mode 100644 index 000000000..b8c1dfbb2 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/TamableAnimal.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/Targeting.class b/build/_compileJava_2/net/minecraft/world/entity/Targeting.class new file mode 100644 index 000000000..5966ebaec Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/Targeting.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/TraceableEntity.class b/build/_compileJava_2/net/minecraft/world/entity/TraceableEntity.class new file mode 100644 index 000000000..37d9e155d Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/TraceableEntity.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/VariantHolder.class b/build/_compileJava_2/net/minecraft/world/entity/VariantHolder.class new file mode 100644 index 000000000..16b56d317 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/VariantHolder.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/WalkAnimationState.class b/build/_compileJava_2/net/minecraft/world/entity/WalkAnimationState.class new file mode 100644 index 000000000..2811a0bc6 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/WalkAnimationState.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/ai/Brain$1.class b/build/_compileJava_2/net/minecraft/world/entity/ai/Brain$1.class new file mode 100644 index 000000000..3ab3062c2 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/ai/Brain$1.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/ai/Brain$MemoryValue.class b/build/_compileJava_2/net/minecraft/world/entity/ai/Brain$MemoryValue.class new file mode 100644 index 000000000..3e16e0492 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/ai/Brain$MemoryValue.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/ai/Brain$Provider.class b/build/_compileJava_2/net/minecraft/world/entity/ai/Brain$Provider.class new file mode 100644 index 000000000..fd3088aa2 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/ai/Brain$Provider.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/ai/Brain.class b/build/_compileJava_2/net/minecraft/world/entity/ai/Brain.class new file mode 100644 index 000000000..9770ca35f Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/ai/Brain.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/ai/attributes/Attribute.class b/build/_compileJava_2/net/minecraft/world/entity/ai/attributes/Attribute.class new file mode 100644 index 000000000..59a044c6d Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/ai/attributes/Attribute.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/ai/attributes/AttributeInstance.class b/build/_compileJava_2/net/minecraft/world/entity/ai/attributes/AttributeInstance.class new file mode 100644 index 000000000..5ac33409a Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/ai/attributes/AttributeInstance.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/ai/attributes/AttributeMap.class b/build/_compileJava_2/net/minecraft/world/entity/ai/attributes/AttributeMap.class new file mode 100644 index 000000000..71ee4252e Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/ai/attributes/AttributeMap.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/ai/attributes/AttributeModifier$Operation.class b/build/_compileJava_2/net/minecraft/world/entity/ai/attributes/AttributeModifier$Operation.class new file mode 100644 index 000000000..ace97518d Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/ai/attributes/AttributeModifier$Operation.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/ai/attributes/AttributeModifier.class b/build/_compileJava_2/net/minecraft/world/entity/ai/attributes/AttributeModifier.class new file mode 100644 index 000000000..89c3074b5 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/ai/attributes/AttributeModifier.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/ai/attributes/AttributeSupplier$Builder.class b/build/_compileJava_2/net/minecraft/world/entity/ai/attributes/AttributeSupplier$Builder.class new file mode 100644 index 000000000..0faa9d698 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/ai/attributes/AttributeSupplier$Builder.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/ai/attributes/AttributeSupplier.class b/build/_compileJava_2/net/minecraft/world/entity/ai/attributes/AttributeSupplier.class new file mode 100644 index 000000000..70b667be8 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/ai/attributes/AttributeSupplier.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/ai/attributes/Attributes.class b/build/_compileJava_2/net/minecraft/world/entity/ai/attributes/Attributes.class new file mode 100644 index 000000000..645b26bc6 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/ai/attributes/Attributes.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/ai/attributes/DefaultAttributes.class b/build/_compileJava_2/net/minecraft/world/entity/ai/attributes/DefaultAttributes.class new file mode 100644 index 000000000..191c990df Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/ai/attributes/DefaultAttributes.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/ai/attributes/RangedAttribute.class b/build/_compileJava_2/net/minecraft/world/entity/ai/attributes/RangedAttribute.class new file mode 100644 index 000000000..ce1cbf047 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/ai/attributes/RangedAttribute.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/ai/attributes/package-info.class b/build/_compileJava_2/net/minecraft/world/entity/ai/attributes/package-info.class new file mode 100644 index 000000000..751132dca Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/ai/attributes/package-info.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/ai/behavior/AcquirePoi$JitteredLinearRetry.class b/build/_compileJava_2/net/minecraft/world/entity/ai/behavior/AcquirePoi$JitteredLinearRetry.class new file mode 100644 index 000000000..520d41d55 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/ai/behavior/AcquirePoi$JitteredLinearRetry.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/ai/behavior/AcquirePoi.class b/build/_compileJava_2/net/minecraft/world/entity/ai/behavior/AcquirePoi.class new file mode 100644 index 000000000..f2c362c36 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/ai/behavior/AcquirePoi.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/ai/behavior/AnimalMakeLove.class b/build/_compileJava_2/net/minecraft/world/entity/ai/behavior/AnimalMakeLove.class new file mode 100644 index 000000000..4559e5d3b Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/ai/behavior/AnimalMakeLove.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/ai/behavior/AnimalPanic.class b/build/_compileJava_2/net/minecraft/world/entity/ai/behavior/AnimalPanic.class new file mode 100644 index 000000000..03c33a05f Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/ai/behavior/AnimalPanic.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/ai/behavior/AssignProfessionFromJobSite.class b/build/_compileJava_2/net/minecraft/world/entity/ai/behavior/AssignProfessionFromJobSite.class new file mode 100644 index 000000000..9913535c6 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/ai/behavior/AssignProfessionFromJobSite.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/ai/behavior/BabyFollowAdult.class b/build/_compileJava_2/net/minecraft/world/entity/ai/behavior/BabyFollowAdult.class new file mode 100644 index 000000000..db962dc2e Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/ai/behavior/BabyFollowAdult.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/ai/behavior/BackUpIfTooClose.class b/build/_compileJava_2/net/minecraft/world/entity/ai/behavior/BackUpIfTooClose.class new file mode 100644 index 000000000..4cc8a393e Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/ai/behavior/BackUpIfTooClose.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/ai/behavior/BecomePassiveIfMemoryPresent.class b/build/_compileJava_2/net/minecraft/world/entity/ai/behavior/BecomePassiveIfMemoryPresent.class new file mode 100644 index 000000000..0f2620e95 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/ai/behavior/BecomePassiveIfMemoryPresent.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/ai/behavior/Behavior$Status.class b/build/_compileJava_2/net/minecraft/world/entity/ai/behavior/Behavior$Status.class new file mode 100644 index 000000000..b4a68ad01 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/ai/behavior/Behavior$Status.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/ai/behavior/Behavior.class b/build/_compileJava_2/net/minecraft/world/entity/ai/behavior/Behavior.class new file mode 100644 index 000000000..556e7bb98 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/ai/behavior/Behavior.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/ai/behavior/BehaviorControl.class b/build/_compileJava_2/net/minecraft/world/entity/ai/behavior/BehaviorControl.class new file mode 100644 index 000000000..f82b6a228 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/ai/behavior/BehaviorControl.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/ai/behavior/BehaviorUtils.class b/build/_compileJava_2/net/minecraft/world/entity/ai/behavior/BehaviorUtils.class new file mode 100644 index 000000000..e2c2e8291 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/ai/behavior/BehaviorUtils.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/ai/behavior/BlockPosTracker.class b/build/_compileJava_2/net/minecraft/world/entity/ai/behavior/BlockPosTracker.class new file mode 100644 index 000000000..85fde259a Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/ai/behavior/BlockPosTracker.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/ai/behavior/CelebrateVillagersSurvivedRaid.class b/build/_compileJava_2/net/minecraft/world/entity/ai/behavior/CelebrateVillagersSurvivedRaid.class new file mode 100644 index 000000000..685be6dad Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/ai/behavior/CelebrateVillagersSurvivedRaid.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/ai/behavior/CopyMemoryWithExpiry.class b/build/_compileJava_2/net/minecraft/world/entity/ai/behavior/CopyMemoryWithExpiry.class new file mode 100644 index 000000000..02bc54dce Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/ai/behavior/CopyMemoryWithExpiry.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/ai/behavior/CountDownCooldownTicks.class b/build/_compileJava_2/net/minecraft/world/entity/ai/behavior/CountDownCooldownTicks.class new file mode 100644 index 000000000..bf1ffbfea Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/ai/behavior/CountDownCooldownTicks.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/ai/behavior/Croak.class b/build/_compileJava_2/net/minecraft/world/entity/ai/behavior/Croak.class new file mode 100644 index 000000000..6bfde40ed Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/ai/behavior/Croak.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/ai/behavior/CrossbowAttack$CrossbowState.class b/build/_compileJava_2/net/minecraft/world/entity/ai/behavior/CrossbowAttack$CrossbowState.class new file mode 100644 index 000000000..9e59c20b6 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/ai/behavior/CrossbowAttack$CrossbowState.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/ai/behavior/CrossbowAttack.class b/build/_compileJava_2/net/minecraft/world/entity/ai/behavior/CrossbowAttack.class new file mode 100644 index 000000000..3e79ec36d Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/ai/behavior/CrossbowAttack.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/ai/behavior/DismountOrSkipMounting.class b/build/_compileJava_2/net/minecraft/world/entity/ai/behavior/DismountOrSkipMounting.class new file mode 100644 index 000000000..2cd272961 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/ai/behavior/DismountOrSkipMounting.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/ai/behavior/DoNothing.class b/build/_compileJava_2/net/minecraft/world/entity/ai/behavior/DoNothing.class new file mode 100644 index 000000000..bcfc1687c Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/ai/behavior/DoNothing.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/ai/behavior/EntityTracker.class b/build/_compileJava_2/net/minecraft/world/entity/ai/behavior/EntityTracker.class new file mode 100644 index 000000000..31e9b8eae Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/ai/behavior/EntityTracker.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/ai/behavior/EraseMemoryIf.class b/build/_compileJava_2/net/minecraft/world/entity/ai/behavior/EraseMemoryIf.class new file mode 100644 index 000000000..76dbe6101 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/ai/behavior/EraseMemoryIf.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/ai/behavior/FollowTemptation.class b/build/_compileJava_2/net/minecraft/world/entity/ai/behavior/FollowTemptation.class new file mode 100644 index 000000000..33fd37386 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/ai/behavior/FollowTemptation.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/ai/behavior/GateBehavior$OrderPolicy.class b/build/_compileJava_2/net/minecraft/world/entity/ai/behavior/GateBehavior$OrderPolicy.class new file mode 100644 index 000000000..fb3bd730c Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/ai/behavior/GateBehavior$OrderPolicy.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/ai/behavior/GateBehavior$RunningPolicy$1.class b/build/_compileJava_2/net/minecraft/world/entity/ai/behavior/GateBehavior$RunningPolicy$1.class new file mode 100644 index 000000000..3a962bc52 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/ai/behavior/GateBehavior$RunningPolicy$1.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/ai/behavior/GateBehavior$RunningPolicy$2.class b/build/_compileJava_2/net/minecraft/world/entity/ai/behavior/GateBehavior$RunningPolicy$2.class new file mode 100644 index 000000000..b429cb41e Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/ai/behavior/GateBehavior$RunningPolicy$2.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/ai/behavior/GateBehavior$RunningPolicy.class b/build/_compileJava_2/net/minecraft/world/entity/ai/behavior/GateBehavior$RunningPolicy.class new file mode 100644 index 000000000..fdeca40e3 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/ai/behavior/GateBehavior$RunningPolicy.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/ai/behavior/GateBehavior.class b/build/_compileJava_2/net/minecraft/world/entity/ai/behavior/GateBehavior.class new file mode 100644 index 000000000..aaa935b44 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/ai/behavior/GateBehavior.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/ai/behavior/GiveGiftToHero.class b/build/_compileJava_2/net/minecraft/world/entity/ai/behavior/GiveGiftToHero.class new file mode 100644 index 000000000..2b7dcdc39 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/ai/behavior/GiveGiftToHero.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/ai/behavior/GoAndGiveItemsToTarget.class b/build/_compileJava_2/net/minecraft/world/entity/ai/behavior/GoAndGiveItemsToTarget.class new file mode 100644 index 000000000..9147ed3a9 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/ai/behavior/GoAndGiveItemsToTarget.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/ai/behavior/GoToClosestVillage.class b/build/_compileJava_2/net/minecraft/world/entity/ai/behavior/GoToClosestVillage.class new file mode 100644 index 000000000..4b3d46970 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/ai/behavior/GoToClosestVillage.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/ai/behavior/GoToPotentialJobSite.class b/build/_compileJava_2/net/minecraft/world/entity/ai/behavior/GoToPotentialJobSite.class new file mode 100644 index 000000000..50de6a2e9 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/ai/behavior/GoToPotentialJobSite.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/ai/behavior/GoToTargetLocation.class b/build/_compileJava_2/net/minecraft/world/entity/ai/behavior/GoToTargetLocation.class new file mode 100644 index 000000000..2de044a06 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/ai/behavior/GoToTargetLocation.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/ai/behavior/GoToWantedItem.class b/build/_compileJava_2/net/minecraft/world/entity/ai/behavior/GoToWantedItem.class new file mode 100644 index 000000000..561b1b353 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/ai/behavior/GoToWantedItem.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/ai/behavior/HarvestFarmland.class b/build/_compileJava_2/net/minecraft/world/entity/ai/behavior/HarvestFarmland.class new file mode 100644 index 000000000..d48faf660 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/ai/behavior/HarvestFarmland.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/ai/behavior/InsideBrownianWalk.class b/build/_compileJava_2/net/minecraft/world/entity/ai/behavior/InsideBrownianWalk.class new file mode 100644 index 000000000..03d14884c Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/ai/behavior/InsideBrownianWalk.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/ai/behavior/InteractWith.class b/build/_compileJava_2/net/minecraft/world/entity/ai/behavior/InteractWith.class new file mode 100644 index 000000000..5e4532919 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/ai/behavior/InteractWith.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/ai/behavior/InteractWithDoor.class b/build/_compileJava_2/net/minecraft/world/entity/ai/behavior/InteractWithDoor.class new file mode 100644 index 000000000..31eedcf27 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/ai/behavior/InteractWithDoor.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/ai/behavior/JumpOnBed.class b/build/_compileJava_2/net/minecraft/world/entity/ai/behavior/JumpOnBed.class new file mode 100644 index 000000000..86aa7df01 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/ai/behavior/JumpOnBed.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/ai/behavior/LocateHidingPlace.class b/build/_compileJava_2/net/minecraft/world/entity/ai/behavior/LocateHidingPlace.class new file mode 100644 index 000000000..c4b50c98c Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/ai/behavior/LocateHidingPlace.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/ai/behavior/LongJumpMidJump.class b/build/_compileJava_2/net/minecraft/world/entity/ai/behavior/LongJumpMidJump.class new file mode 100644 index 000000000..543e7a4a2 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/ai/behavior/LongJumpMidJump.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/ai/behavior/LongJumpToPreferredBlock.class b/build/_compileJava_2/net/minecraft/world/entity/ai/behavior/LongJumpToPreferredBlock.class new file mode 100644 index 000000000..9c9e83b47 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/ai/behavior/LongJumpToPreferredBlock.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/ai/behavior/LongJumpToRandomPos$PossibleJump.class b/build/_compileJava_2/net/minecraft/world/entity/ai/behavior/LongJumpToRandomPos$PossibleJump.class new file mode 100644 index 000000000..eee836823 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/ai/behavior/LongJumpToRandomPos$PossibleJump.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/ai/behavior/LongJumpToRandomPos.class b/build/_compileJava_2/net/minecraft/world/entity/ai/behavior/LongJumpToRandomPos.class new file mode 100644 index 000000000..23a019a43 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/ai/behavior/LongJumpToRandomPos.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/ai/behavior/LookAndFollowTradingPlayerSink.class b/build/_compileJava_2/net/minecraft/world/entity/ai/behavior/LookAndFollowTradingPlayerSink.class new file mode 100644 index 000000000..be8a5b6bd Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/ai/behavior/LookAndFollowTradingPlayerSink.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/ai/behavior/LookAtTargetSink.class b/build/_compileJava_2/net/minecraft/world/entity/ai/behavior/LookAtTargetSink.class new file mode 100644 index 000000000..e8d503e33 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/ai/behavior/LookAtTargetSink.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/ai/behavior/MeleeAttack.class b/build/_compileJava_2/net/minecraft/world/entity/ai/behavior/MeleeAttack.class new file mode 100644 index 000000000..cc90bca63 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/ai/behavior/MeleeAttack.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/ai/behavior/Mount.class b/build/_compileJava_2/net/minecraft/world/entity/ai/behavior/Mount.class new file mode 100644 index 000000000..66b1265e0 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/ai/behavior/Mount.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/ai/behavior/MoveToSkySeeingSpot.class b/build/_compileJava_2/net/minecraft/world/entity/ai/behavior/MoveToSkySeeingSpot.class new file mode 100644 index 000000000..98b1a0107 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/ai/behavior/MoveToSkySeeingSpot.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/ai/behavior/MoveToTargetSink.class b/build/_compileJava_2/net/minecraft/world/entity/ai/behavior/MoveToTargetSink.class new file mode 100644 index 000000000..2b1ac0826 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/ai/behavior/MoveToTargetSink.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/ai/behavior/OneShot.class b/build/_compileJava_2/net/minecraft/world/entity/ai/behavior/OneShot.class new file mode 100644 index 000000000..682ee1d22 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/ai/behavior/OneShot.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/ai/behavior/PlayTagWithOtherKids.class b/build/_compileJava_2/net/minecraft/world/entity/ai/behavior/PlayTagWithOtherKids.class new file mode 100644 index 000000000..ddb0fce19 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/ai/behavior/PlayTagWithOtherKids.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/ai/behavior/PoiCompetitorScan.class b/build/_compileJava_2/net/minecraft/world/entity/ai/behavior/PoiCompetitorScan.class new file mode 100644 index 000000000..aa995e5bf Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/ai/behavior/PoiCompetitorScan.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/ai/behavior/PositionTracker.class b/build/_compileJava_2/net/minecraft/world/entity/ai/behavior/PositionTracker.class new file mode 100644 index 000000000..e8dd836bc Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/ai/behavior/PositionTracker.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/ai/behavior/PrepareRamNearestTarget$RamCandidate.class b/build/_compileJava_2/net/minecraft/world/entity/ai/behavior/PrepareRamNearestTarget$RamCandidate.class new file mode 100644 index 000000000..65be3a7eb Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/ai/behavior/PrepareRamNearestTarget$RamCandidate.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/ai/behavior/PrepareRamNearestTarget.class b/build/_compileJava_2/net/minecraft/world/entity/ai/behavior/PrepareRamNearestTarget.class new file mode 100644 index 000000000..c409fb07f Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/ai/behavior/PrepareRamNearestTarget.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/ai/behavior/RamTarget.class b/build/_compileJava_2/net/minecraft/world/entity/ai/behavior/RamTarget.class new file mode 100644 index 000000000..dbd550fee Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/ai/behavior/RamTarget.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/ai/behavior/RandomLookAround.class b/build/_compileJava_2/net/minecraft/world/entity/ai/behavior/RandomLookAround.class new file mode 100644 index 000000000..5a421072b Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/ai/behavior/RandomLookAround.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/ai/behavior/RandomStroll.class b/build/_compileJava_2/net/minecraft/world/entity/ai/behavior/RandomStroll.class new file mode 100644 index 000000000..58f26feca Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/ai/behavior/RandomStroll.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/ai/behavior/ReactToBell.class b/build/_compileJava_2/net/minecraft/world/entity/ai/behavior/ReactToBell.class new file mode 100644 index 000000000..f9a505bd0 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/ai/behavior/ReactToBell.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/ai/behavior/ResetProfession.class b/build/_compileJava_2/net/minecraft/world/entity/ai/behavior/ResetProfession.class new file mode 100644 index 000000000..73929ebc5 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/ai/behavior/ResetProfession.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/ai/behavior/ResetRaidStatus.class b/build/_compileJava_2/net/minecraft/world/entity/ai/behavior/ResetRaidStatus.class new file mode 100644 index 000000000..f25ac4d92 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/ai/behavior/ResetRaidStatus.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/ai/behavior/RingBell.class b/build/_compileJava_2/net/minecraft/world/entity/ai/behavior/RingBell.class new file mode 100644 index 000000000..fa6dbcfbc Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/ai/behavior/RingBell.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/ai/behavior/RunOne.class b/build/_compileJava_2/net/minecraft/world/entity/ai/behavior/RunOne.class new file mode 100644 index 000000000..524a5ba22 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/ai/behavior/RunOne.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/ai/behavior/SetClosestHomeAsWalkTarget.class b/build/_compileJava_2/net/minecraft/world/entity/ai/behavior/SetClosestHomeAsWalkTarget.class new file mode 100644 index 000000000..675160a72 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/ai/behavior/SetClosestHomeAsWalkTarget.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/ai/behavior/SetEntityLookTarget.class b/build/_compileJava_2/net/minecraft/world/entity/ai/behavior/SetEntityLookTarget.class new file mode 100644 index 000000000..d7b6b8fbc Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/ai/behavior/SetEntityLookTarget.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/ai/behavior/SetEntityLookTargetSometimes$Ticker.class b/build/_compileJava_2/net/minecraft/world/entity/ai/behavior/SetEntityLookTargetSometimes$Ticker.class new file mode 100644 index 000000000..87ed804f5 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/ai/behavior/SetEntityLookTargetSometimes$Ticker.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/ai/behavior/SetEntityLookTargetSometimes.class b/build/_compileJava_2/net/minecraft/world/entity/ai/behavior/SetEntityLookTargetSometimes.class new file mode 100644 index 000000000..c791c41c2 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/ai/behavior/SetEntityLookTargetSometimes.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/ai/behavior/SetHiddenState.class b/build/_compileJava_2/net/minecraft/world/entity/ai/behavior/SetHiddenState.class new file mode 100644 index 000000000..67a2c7dc4 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/ai/behavior/SetHiddenState.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/ai/behavior/SetLookAndInteract.class b/build/_compileJava_2/net/minecraft/world/entity/ai/behavior/SetLookAndInteract.class new file mode 100644 index 000000000..317f14123 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/ai/behavior/SetLookAndInteract.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/ai/behavior/SetRaidStatus.class b/build/_compileJava_2/net/minecraft/world/entity/ai/behavior/SetRaidStatus.class new file mode 100644 index 000000000..a6000a19f Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/ai/behavior/SetRaidStatus.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/ai/behavior/SetWalkTargetAwayFrom.class b/build/_compileJava_2/net/minecraft/world/entity/ai/behavior/SetWalkTargetAwayFrom.class new file mode 100644 index 000000000..321ffca88 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/ai/behavior/SetWalkTargetAwayFrom.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/ai/behavior/SetWalkTargetFromAttackTargetIfTargetOutOfReach.class b/build/_compileJava_2/net/minecraft/world/entity/ai/behavior/SetWalkTargetFromAttackTargetIfTargetOutOfReach.class new file mode 100644 index 000000000..9a3067f69 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/ai/behavior/SetWalkTargetFromAttackTargetIfTargetOutOfReach.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/ai/behavior/SetWalkTargetFromBlockMemory.class b/build/_compileJava_2/net/minecraft/world/entity/ai/behavior/SetWalkTargetFromBlockMemory.class new file mode 100644 index 000000000..5efc0a0e2 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/ai/behavior/SetWalkTargetFromBlockMemory.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/ai/behavior/SetWalkTargetFromLookTarget.class b/build/_compileJava_2/net/minecraft/world/entity/ai/behavior/SetWalkTargetFromLookTarget.class new file mode 100644 index 000000000..32d002457 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/ai/behavior/SetWalkTargetFromLookTarget.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/ai/behavior/ShowTradesToPlayer.class b/build/_compileJava_2/net/minecraft/world/entity/ai/behavior/ShowTradesToPlayer.class new file mode 100644 index 000000000..a134b2335 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/ai/behavior/ShowTradesToPlayer.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/ai/behavior/ShufflingList$WeightedEntry$1.class b/build/_compileJava_2/net/minecraft/world/entity/ai/behavior/ShufflingList$WeightedEntry$1.class new file mode 100644 index 000000000..6823a70f4 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/ai/behavior/ShufflingList$WeightedEntry$1.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/ai/behavior/ShufflingList$WeightedEntry.class b/build/_compileJava_2/net/minecraft/world/entity/ai/behavior/ShufflingList$WeightedEntry.class new file mode 100644 index 000000000..f65e20f8f Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/ai/behavior/ShufflingList$WeightedEntry.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/ai/behavior/ShufflingList.class b/build/_compileJava_2/net/minecraft/world/entity/ai/behavior/ShufflingList.class new file mode 100644 index 000000000..7f7ff7234 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/ai/behavior/ShufflingList.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/ai/behavior/SleepInBed.class b/build/_compileJava_2/net/minecraft/world/entity/ai/behavior/SleepInBed.class new file mode 100644 index 000000000..643a75fdf Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/ai/behavior/SleepInBed.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/ai/behavior/SocializeAtBell.class b/build/_compileJava_2/net/minecraft/world/entity/ai/behavior/SocializeAtBell.class new file mode 100644 index 000000000..0db284f35 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/ai/behavior/SocializeAtBell.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/ai/behavior/StartAttacking.class b/build/_compileJava_2/net/minecraft/world/entity/ai/behavior/StartAttacking.class new file mode 100644 index 000000000..331a47611 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/ai/behavior/StartAttacking.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/ai/behavior/StartCelebratingIfTargetDead.class b/build/_compileJava_2/net/minecraft/world/entity/ai/behavior/StartCelebratingIfTargetDead.class new file mode 100644 index 000000000..422849e02 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/ai/behavior/StartCelebratingIfTargetDead.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/ai/behavior/StayCloseToTarget.class b/build/_compileJava_2/net/minecraft/world/entity/ai/behavior/StayCloseToTarget.class new file mode 100644 index 000000000..30c57d8c6 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/ai/behavior/StayCloseToTarget.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/ai/behavior/StopAttackingIfTargetInvalid.class b/build/_compileJava_2/net/minecraft/world/entity/ai/behavior/StopAttackingIfTargetInvalid.class new file mode 100644 index 000000000..c340d0967 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/ai/behavior/StopAttackingIfTargetInvalid.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/ai/behavior/StopBeingAngryIfTargetDead.class b/build/_compileJava_2/net/minecraft/world/entity/ai/behavior/StopBeingAngryIfTargetDead.class new file mode 100644 index 000000000..9317245b9 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/ai/behavior/StopBeingAngryIfTargetDead.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/ai/behavior/StrollAroundPoi.class b/build/_compileJava_2/net/minecraft/world/entity/ai/behavior/StrollAroundPoi.class new file mode 100644 index 000000000..6fe54284e Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/ai/behavior/StrollAroundPoi.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/ai/behavior/StrollToPoi.class b/build/_compileJava_2/net/minecraft/world/entity/ai/behavior/StrollToPoi.class new file mode 100644 index 000000000..a840ab833 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/ai/behavior/StrollToPoi.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/ai/behavior/StrollToPoiList.class b/build/_compileJava_2/net/minecraft/world/entity/ai/behavior/StrollToPoiList.class new file mode 100644 index 000000000..3f50116e7 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/ai/behavior/StrollToPoiList.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/ai/behavior/Swim.class b/build/_compileJava_2/net/minecraft/world/entity/ai/behavior/Swim.class new file mode 100644 index 000000000..f12a140e5 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/ai/behavior/Swim.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/ai/behavior/TradeWithVillager.class b/build/_compileJava_2/net/minecraft/world/entity/ai/behavior/TradeWithVillager.class new file mode 100644 index 000000000..8c0aa1024 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/ai/behavior/TradeWithVillager.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/ai/behavior/TriggerGate.class b/build/_compileJava_2/net/minecraft/world/entity/ai/behavior/TriggerGate.class new file mode 100644 index 000000000..5014600a9 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/ai/behavior/TriggerGate.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/ai/behavior/TryFindLand.class b/build/_compileJava_2/net/minecraft/world/entity/ai/behavior/TryFindLand.class new file mode 100644 index 000000000..e713859e4 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/ai/behavior/TryFindLand.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/ai/behavior/TryFindLandNearWater.class b/build/_compileJava_2/net/minecraft/world/entity/ai/behavior/TryFindLandNearWater.class new file mode 100644 index 000000000..064c3ad22 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/ai/behavior/TryFindLandNearWater.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/ai/behavior/TryFindWater.class b/build/_compileJava_2/net/minecraft/world/entity/ai/behavior/TryFindWater.class new file mode 100644 index 000000000..3ad44690c Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/ai/behavior/TryFindWater.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/ai/behavior/TryLaySpawnOnWaterNearLand.class b/build/_compileJava_2/net/minecraft/world/entity/ai/behavior/TryLaySpawnOnWaterNearLand.class new file mode 100644 index 000000000..5e8e20e45 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/ai/behavior/TryLaySpawnOnWaterNearLand.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/ai/behavior/UpdateActivityFromSchedule.class b/build/_compileJava_2/net/minecraft/world/entity/ai/behavior/UpdateActivityFromSchedule.class new file mode 100644 index 000000000..8a7191c29 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/ai/behavior/UpdateActivityFromSchedule.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/ai/behavior/UseBonemeal.class b/build/_compileJava_2/net/minecraft/world/entity/ai/behavior/UseBonemeal.class new file mode 100644 index 000000000..64dd3adcf Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/ai/behavior/UseBonemeal.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/ai/behavior/ValidateNearbyPoi.class b/build/_compileJava_2/net/minecraft/world/entity/ai/behavior/ValidateNearbyPoi.class new file mode 100644 index 000000000..547a384d6 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/ai/behavior/ValidateNearbyPoi.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/ai/behavior/VillageBoundRandomStroll.class b/build/_compileJava_2/net/minecraft/world/entity/ai/behavior/VillageBoundRandomStroll.class new file mode 100644 index 000000000..58661eba3 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/ai/behavior/VillageBoundRandomStroll.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/ai/behavior/VillagerCalmDown.class b/build/_compileJava_2/net/minecraft/world/entity/ai/behavior/VillagerCalmDown.class new file mode 100644 index 000000000..81b542dfb Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/ai/behavior/VillagerCalmDown.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/ai/behavior/VillagerGoalPackages.class b/build/_compileJava_2/net/minecraft/world/entity/ai/behavior/VillagerGoalPackages.class new file mode 100644 index 000000000..f153b1c98 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/ai/behavior/VillagerGoalPackages.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/ai/behavior/VillagerMakeLove.class b/build/_compileJava_2/net/minecraft/world/entity/ai/behavior/VillagerMakeLove.class new file mode 100644 index 000000000..fea9ce832 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/ai/behavior/VillagerMakeLove.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/ai/behavior/VillagerPanicTrigger.class b/build/_compileJava_2/net/minecraft/world/entity/ai/behavior/VillagerPanicTrigger.class new file mode 100644 index 000000000..6d658c0f2 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/ai/behavior/VillagerPanicTrigger.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/ai/behavior/WakeUp.class b/build/_compileJava_2/net/minecraft/world/entity/ai/behavior/WakeUp.class new file mode 100644 index 000000000..4882aa352 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/ai/behavior/WakeUp.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/ai/behavior/WorkAtComposter.class b/build/_compileJava_2/net/minecraft/world/entity/ai/behavior/WorkAtComposter.class new file mode 100644 index 000000000..b2360cce1 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/ai/behavior/WorkAtComposter.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/ai/behavior/WorkAtPoi.class b/build/_compileJava_2/net/minecraft/world/entity/ai/behavior/WorkAtPoi.class new file mode 100644 index 000000000..7d020faa9 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/ai/behavior/WorkAtPoi.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/ai/behavior/YieldJobSite.class b/build/_compileJava_2/net/minecraft/world/entity/ai/behavior/YieldJobSite.class new file mode 100644 index 000000000..45c6d6a5c Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/ai/behavior/YieldJobSite.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$1.class b/build/_compileJava_2/net/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$1.class new file mode 100644 index 000000000..8ed001e5f Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$1.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Constant$1.class b/build/_compileJava_2/net/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Constant$1.class new file mode 100644 index 000000000..56ddf1679 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Constant$1.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Constant.class b/build/_compileJava_2/net/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Constant.class new file mode 100644 index 000000000..c88291be5 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Constant.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance$1.class b/build/_compileJava_2/net/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance$1.class new file mode 100644 index 000000000..8e197e597 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance$1.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance$2.class b/build/_compileJava_2/net/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance$2.class new file mode 100644 index 000000000..6d3c7edf0 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance$2.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance$3.class b/build/_compileJava_2/net/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance$3.class new file mode 100644 index 000000000..8e2c13a3c Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance$3.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance$4.class b/build/_compileJava_2/net/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance$4.class new file mode 100644 index 000000000..9b65524f4 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance$4.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance$5.class b/build/_compileJava_2/net/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance$5.class new file mode 100644 index 000000000..a530e80e3 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance$5.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance$Mu.class b/build/_compileJava_2/net/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance$Mu.class new file mode 100644 index 000000000..cfe203bec Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance$Mu.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance.class b/build/_compileJava_2/net/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance.class new file mode 100644 index 000000000..c9ce7950b Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Mu.class b/build/_compileJava_2/net/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Mu.class new file mode 100644 index 000000000..17f2b8679 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Mu.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$PureMemory$1.class b/build/_compileJava_2/net/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$PureMemory$1.class new file mode 100644 index 000000000..239c0ef62 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$PureMemory$1.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$PureMemory.class b/build/_compileJava_2/net/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$PureMemory.class new file mode 100644 index 000000000..587e02c3a Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$PureMemory.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$TriggerWithResult.class b/build/_compileJava_2/net/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$TriggerWithResult.class new file mode 100644 index 000000000..8192c9b7c Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$TriggerWithResult.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$TriggerWrapper$1.class b/build/_compileJava_2/net/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$TriggerWrapper$1.class new file mode 100644 index 000000000..a8925ed55 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$TriggerWrapper$1.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$TriggerWrapper.class b/build/_compileJava_2/net/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$TriggerWrapper.class new file mode 100644 index 000000000..a3f7c7e95 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$TriggerWrapper.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder.class b/build/_compileJava_2/net/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder.class new file mode 100644 index 000000000..3cda4cb97 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor.class b/build/_compileJava_2/net/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor.class new file mode 100644 index 000000000..8426b5a88 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/ai/behavior/declarative/MemoryCondition$Absent.class b/build/_compileJava_2/net/minecraft/world/entity/ai/behavior/declarative/MemoryCondition$Absent.class new file mode 100644 index 000000000..c40491726 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/ai/behavior/declarative/MemoryCondition$Absent.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/ai/behavior/declarative/MemoryCondition$Present.class b/build/_compileJava_2/net/minecraft/world/entity/ai/behavior/declarative/MemoryCondition$Present.class new file mode 100644 index 000000000..fc8e91330 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/ai/behavior/declarative/MemoryCondition$Present.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/ai/behavior/declarative/MemoryCondition$Registered.class b/build/_compileJava_2/net/minecraft/world/entity/ai/behavior/declarative/MemoryCondition$Registered.class new file mode 100644 index 000000000..66495cae5 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/ai/behavior/declarative/MemoryCondition$Registered.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/ai/behavior/declarative/MemoryCondition.class b/build/_compileJava_2/net/minecraft/world/entity/ai/behavior/declarative/MemoryCondition.class new file mode 100644 index 000000000..b52e636be Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/ai/behavior/declarative/MemoryCondition.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/ai/behavior/declarative/Trigger.class b/build/_compileJava_2/net/minecraft/world/entity/ai/behavior/declarative/Trigger.class new file mode 100644 index 000000000..b7522d512 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/ai/behavior/declarative/Trigger.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/ai/behavior/declarative/package-info.class b/build/_compileJava_2/net/minecraft/world/entity/ai/behavior/declarative/package-info.class new file mode 100644 index 000000000..dcc7b21a4 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/ai/behavior/declarative/package-info.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/ai/behavior/package-info.class b/build/_compileJava_2/net/minecraft/world/entity/ai/behavior/package-info.class new file mode 100644 index 000000000..83224f625 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/ai/behavior/package-info.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/ai/behavior/warden/Digging.class b/build/_compileJava_2/net/minecraft/world/entity/ai/behavior/warden/Digging.class new file mode 100644 index 000000000..bbf03a5ab Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/ai/behavior/warden/Digging.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/ai/behavior/warden/Emerging.class b/build/_compileJava_2/net/minecraft/world/entity/ai/behavior/warden/Emerging.class new file mode 100644 index 000000000..df6da3c3c Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/ai/behavior/warden/Emerging.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/ai/behavior/warden/ForceUnmount.class b/build/_compileJava_2/net/minecraft/world/entity/ai/behavior/warden/ForceUnmount.class new file mode 100644 index 000000000..653dadbbb Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/ai/behavior/warden/ForceUnmount.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/ai/behavior/warden/Roar.class b/build/_compileJava_2/net/minecraft/world/entity/ai/behavior/warden/Roar.class new file mode 100644 index 000000000..2f8f815b2 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/ai/behavior/warden/Roar.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/ai/behavior/warden/SetRoarTarget.class b/build/_compileJava_2/net/minecraft/world/entity/ai/behavior/warden/SetRoarTarget.class new file mode 100644 index 000000000..a78523be5 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/ai/behavior/warden/SetRoarTarget.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/ai/behavior/warden/SetWardenLookTarget.class b/build/_compileJava_2/net/minecraft/world/entity/ai/behavior/warden/SetWardenLookTarget.class new file mode 100644 index 000000000..d80c40100 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/ai/behavior/warden/SetWardenLookTarget.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/ai/behavior/warden/Sniffing.class b/build/_compileJava_2/net/minecraft/world/entity/ai/behavior/warden/Sniffing.class new file mode 100644 index 000000000..455514cee Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/ai/behavior/warden/Sniffing.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/ai/behavior/warden/SonicBoom.class b/build/_compileJava_2/net/minecraft/world/entity/ai/behavior/warden/SonicBoom.class new file mode 100644 index 000000000..c1a5dd359 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/ai/behavior/warden/SonicBoom.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/ai/behavior/warden/TryToSniff.class b/build/_compileJava_2/net/minecraft/world/entity/ai/behavior/warden/TryToSniff.class new file mode 100644 index 000000000..ed364cc03 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/ai/behavior/warden/TryToSniff.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/ai/behavior/warden/package-info.class b/build/_compileJava_2/net/minecraft/world/entity/ai/behavior/warden/package-info.class new file mode 100644 index 000000000..1f44136c8 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/ai/behavior/warden/package-info.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/ai/control/BodyRotationControl.class b/build/_compileJava_2/net/minecraft/world/entity/ai/control/BodyRotationControl.class new file mode 100644 index 000000000..931fc46a0 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/ai/control/BodyRotationControl.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/ai/control/Control.class b/build/_compileJava_2/net/minecraft/world/entity/ai/control/Control.class new file mode 100644 index 000000000..314935d2d Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/ai/control/Control.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/ai/control/FlyingMoveControl.class b/build/_compileJava_2/net/minecraft/world/entity/ai/control/FlyingMoveControl.class new file mode 100644 index 000000000..42a06dccd Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/ai/control/FlyingMoveControl.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/ai/control/JumpControl.class b/build/_compileJava_2/net/minecraft/world/entity/ai/control/JumpControl.class new file mode 100644 index 000000000..c77cb9bb7 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/ai/control/JumpControl.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/ai/control/LookControl.class b/build/_compileJava_2/net/minecraft/world/entity/ai/control/LookControl.class new file mode 100644 index 000000000..9a04ca5b4 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/ai/control/LookControl.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/ai/control/MoveControl$Operation.class b/build/_compileJava_2/net/minecraft/world/entity/ai/control/MoveControl$Operation.class new file mode 100644 index 000000000..9fc567ddc Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/ai/control/MoveControl$Operation.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/ai/control/MoveControl.class b/build/_compileJava_2/net/minecraft/world/entity/ai/control/MoveControl.class new file mode 100644 index 000000000..c5fe2ca92 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/ai/control/MoveControl.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/ai/control/SmoothSwimmingLookControl.class b/build/_compileJava_2/net/minecraft/world/entity/ai/control/SmoothSwimmingLookControl.class new file mode 100644 index 000000000..b8776c8a9 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/ai/control/SmoothSwimmingLookControl.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/ai/control/SmoothSwimmingMoveControl.class b/build/_compileJava_2/net/minecraft/world/entity/ai/control/SmoothSwimmingMoveControl.class new file mode 100644 index 000000000..c0ec37d6c Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/ai/control/SmoothSwimmingMoveControl.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/ai/control/package-info.class b/build/_compileJava_2/net/minecraft/world/entity/ai/control/package-info.class new file mode 100644 index 000000000..e1e641daa Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/ai/control/package-info.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/ai/goal/AvoidEntityGoal.class b/build/_compileJava_2/net/minecraft/world/entity/ai/goal/AvoidEntityGoal.class new file mode 100644 index 000000000..3488fef1a Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/ai/goal/AvoidEntityGoal.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/ai/goal/BegGoal.class b/build/_compileJava_2/net/minecraft/world/entity/ai/goal/BegGoal.class new file mode 100644 index 000000000..6bab35362 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/ai/goal/BegGoal.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/ai/goal/BoatGoals.class b/build/_compileJava_2/net/minecraft/world/entity/ai/goal/BoatGoals.class new file mode 100644 index 000000000..3efb05d03 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/ai/goal/BoatGoals.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/ai/goal/BreakDoorGoal.class b/build/_compileJava_2/net/minecraft/world/entity/ai/goal/BreakDoorGoal.class new file mode 100644 index 000000000..c7b0bf0b9 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/ai/goal/BreakDoorGoal.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/ai/goal/BreathAirGoal.class b/build/_compileJava_2/net/minecraft/world/entity/ai/goal/BreathAirGoal.class new file mode 100644 index 000000000..cceffc691 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/ai/goal/BreathAirGoal.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/ai/goal/BreedGoal.class b/build/_compileJava_2/net/minecraft/world/entity/ai/goal/BreedGoal.class new file mode 100644 index 000000000..552a9339e Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/ai/goal/BreedGoal.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/ai/goal/CatLieOnBedGoal.class b/build/_compileJava_2/net/minecraft/world/entity/ai/goal/CatLieOnBedGoal.class new file mode 100644 index 000000000..49d637e43 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/ai/goal/CatLieOnBedGoal.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/ai/goal/CatSitOnBlockGoal.class b/build/_compileJava_2/net/minecraft/world/entity/ai/goal/CatSitOnBlockGoal.class new file mode 100644 index 000000000..970663516 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/ai/goal/CatSitOnBlockGoal.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/ai/goal/ClimbOnTopOfPowderSnowGoal.class b/build/_compileJava_2/net/minecraft/world/entity/ai/goal/ClimbOnTopOfPowderSnowGoal.class new file mode 100644 index 000000000..5be1faffc Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/ai/goal/ClimbOnTopOfPowderSnowGoal.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/ai/goal/DolphinJumpGoal.class b/build/_compileJava_2/net/minecraft/world/entity/ai/goal/DolphinJumpGoal.class new file mode 100644 index 000000000..9bab0bd07 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/ai/goal/DolphinJumpGoal.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/ai/goal/DoorInteractGoal.class b/build/_compileJava_2/net/minecraft/world/entity/ai/goal/DoorInteractGoal.class new file mode 100644 index 000000000..7b1aa33e2 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/ai/goal/DoorInteractGoal.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/ai/goal/EatBlockGoal.class b/build/_compileJava_2/net/minecraft/world/entity/ai/goal/EatBlockGoal.class new file mode 100644 index 000000000..fd60b22f2 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/ai/goal/EatBlockGoal.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/ai/goal/FleeSunGoal.class b/build/_compileJava_2/net/minecraft/world/entity/ai/goal/FleeSunGoal.class new file mode 100644 index 000000000..1877f2bbd Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/ai/goal/FleeSunGoal.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/ai/goal/FloatGoal.class b/build/_compileJava_2/net/minecraft/world/entity/ai/goal/FloatGoal.class new file mode 100644 index 000000000..d19cd9705 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/ai/goal/FloatGoal.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/ai/goal/FollowBoatGoal.class b/build/_compileJava_2/net/minecraft/world/entity/ai/goal/FollowBoatGoal.class new file mode 100644 index 000000000..186043a55 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/ai/goal/FollowBoatGoal.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/ai/goal/FollowFlockLeaderGoal.class b/build/_compileJava_2/net/minecraft/world/entity/ai/goal/FollowFlockLeaderGoal.class new file mode 100644 index 000000000..e2f7936b6 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/ai/goal/FollowFlockLeaderGoal.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/ai/goal/FollowMobGoal.class b/build/_compileJava_2/net/minecraft/world/entity/ai/goal/FollowMobGoal.class new file mode 100644 index 000000000..2bdc85a47 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/ai/goal/FollowMobGoal.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/ai/goal/FollowOwnerGoal.class b/build/_compileJava_2/net/minecraft/world/entity/ai/goal/FollowOwnerGoal.class new file mode 100644 index 000000000..27c7de28d Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/ai/goal/FollowOwnerGoal.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/ai/goal/FollowParentGoal.class b/build/_compileJava_2/net/minecraft/world/entity/ai/goal/FollowParentGoal.class new file mode 100644 index 000000000..06f85f26a Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/ai/goal/FollowParentGoal.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/ai/goal/Goal$Flag.class b/build/_compileJava_2/net/minecraft/world/entity/ai/goal/Goal$Flag.class new file mode 100644 index 000000000..6ee73e930 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/ai/goal/Goal$Flag.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/ai/goal/Goal.class b/build/_compileJava_2/net/minecraft/world/entity/ai/goal/Goal.class new file mode 100644 index 000000000..57904fe0f Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/ai/goal/Goal.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/ai/goal/GoalSelector$1.class b/build/_compileJava_2/net/minecraft/world/entity/ai/goal/GoalSelector$1.class new file mode 100644 index 000000000..73086f0bc Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/ai/goal/GoalSelector$1.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/ai/goal/GoalSelector$2.class b/build/_compileJava_2/net/minecraft/world/entity/ai/goal/GoalSelector$2.class new file mode 100644 index 000000000..790cf694a Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/ai/goal/GoalSelector$2.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/ai/goal/GoalSelector.class b/build/_compileJava_2/net/minecraft/world/entity/ai/goal/GoalSelector.class new file mode 100644 index 000000000..d6736a1bf Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/ai/goal/GoalSelector.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/ai/goal/GolemRandomStrollInVillageGoal.class b/build/_compileJava_2/net/minecraft/world/entity/ai/goal/GolemRandomStrollInVillageGoal.class new file mode 100644 index 000000000..be18b6652 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/ai/goal/GolemRandomStrollInVillageGoal.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/ai/goal/InteractGoal.class b/build/_compileJava_2/net/minecraft/world/entity/ai/goal/InteractGoal.class new file mode 100644 index 000000000..d47db7e2e Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/ai/goal/InteractGoal.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/ai/goal/JumpGoal.class b/build/_compileJava_2/net/minecraft/world/entity/ai/goal/JumpGoal.class new file mode 100644 index 000000000..26155ee96 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/ai/goal/JumpGoal.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/ai/goal/LandOnOwnersShoulderGoal.class b/build/_compileJava_2/net/minecraft/world/entity/ai/goal/LandOnOwnersShoulderGoal.class new file mode 100644 index 000000000..4d3a4f378 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/ai/goal/LandOnOwnersShoulderGoal.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/ai/goal/LeapAtTargetGoal.class b/build/_compileJava_2/net/minecraft/world/entity/ai/goal/LeapAtTargetGoal.class new file mode 100644 index 000000000..dcb026b84 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/ai/goal/LeapAtTargetGoal.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/ai/goal/LlamaFollowCaravanGoal.class b/build/_compileJava_2/net/minecraft/world/entity/ai/goal/LlamaFollowCaravanGoal.class new file mode 100644 index 000000000..98708190b Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/ai/goal/LlamaFollowCaravanGoal.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/ai/goal/LookAtPlayerGoal.class b/build/_compileJava_2/net/minecraft/world/entity/ai/goal/LookAtPlayerGoal.class new file mode 100644 index 000000000..2223eb2ef Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/ai/goal/LookAtPlayerGoal.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/ai/goal/LookAtTradingPlayerGoal.class b/build/_compileJava_2/net/minecraft/world/entity/ai/goal/LookAtTradingPlayerGoal.class new file mode 100644 index 000000000..58e6bd27a Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/ai/goal/LookAtTradingPlayerGoal.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/ai/goal/MeleeAttackGoal.class b/build/_compileJava_2/net/minecraft/world/entity/ai/goal/MeleeAttackGoal.class new file mode 100644 index 000000000..5c0181673 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/ai/goal/MeleeAttackGoal.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/ai/goal/MoveBackToVillageGoal.class b/build/_compileJava_2/net/minecraft/world/entity/ai/goal/MoveBackToVillageGoal.class new file mode 100644 index 000000000..d8952ec08 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/ai/goal/MoveBackToVillageGoal.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/ai/goal/MoveThroughVillageGoal.class b/build/_compileJava_2/net/minecraft/world/entity/ai/goal/MoveThroughVillageGoal.class new file mode 100644 index 000000000..d3f7f0f2a Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/ai/goal/MoveThroughVillageGoal.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/ai/goal/MoveToBlockGoal.class b/build/_compileJava_2/net/minecraft/world/entity/ai/goal/MoveToBlockGoal.class new file mode 100644 index 000000000..e4fb08dc1 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/ai/goal/MoveToBlockGoal.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/ai/goal/MoveTowardsRestrictionGoal.class b/build/_compileJava_2/net/minecraft/world/entity/ai/goal/MoveTowardsRestrictionGoal.class new file mode 100644 index 000000000..b21cf645b Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/ai/goal/MoveTowardsRestrictionGoal.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/ai/goal/MoveTowardsTargetGoal.class b/build/_compileJava_2/net/minecraft/world/entity/ai/goal/MoveTowardsTargetGoal.class new file mode 100644 index 000000000..dd9986a01 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/ai/goal/MoveTowardsTargetGoal.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/ai/goal/OcelotAttackGoal.class b/build/_compileJava_2/net/minecraft/world/entity/ai/goal/OcelotAttackGoal.class new file mode 100644 index 000000000..764fa4d92 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/ai/goal/OcelotAttackGoal.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/ai/goal/OfferFlowerGoal.class b/build/_compileJava_2/net/minecraft/world/entity/ai/goal/OfferFlowerGoal.class new file mode 100644 index 000000000..db43ff997 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/ai/goal/OfferFlowerGoal.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/ai/goal/OpenDoorGoal.class b/build/_compileJava_2/net/minecraft/world/entity/ai/goal/OpenDoorGoal.class new file mode 100644 index 000000000..efc6472bb Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/ai/goal/OpenDoorGoal.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/ai/goal/PanicGoal.class b/build/_compileJava_2/net/minecraft/world/entity/ai/goal/PanicGoal.class new file mode 100644 index 000000000..579acc6c0 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/ai/goal/PanicGoal.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/ai/goal/PathfindToRaidGoal.class b/build/_compileJava_2/net/minecraft/world/entity/ai/goal/PathfindToRaidGoal.class new file mode 100644 index 000000000..693500d58 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/ai/goal/PathfindToRaidGoal.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/ai/goal/RandomLookAroundGoal.class b/build/_compileJava_2/net/minecraft/world/entity/ai/goal/RandomLookAroundGoal.class new file mode 100644 index 000000000..2dc54f4b4 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/ai/goal/RandomLookAroundGoal.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/ai/goal/RandomStandGoal.class b/build/_compileJava_2/net/minecraft/world/entity/ai/goal/RandomStandGoal.class new file mode 100644 index 000000000..54149693e Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/ai/goal/RandomStandGoal.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/ai/goal/RandomStrollGoal.class b/build/_compileJava_2/net/minecraft/world/entity/ai/goal/RandomStrollGoal.class new file mode 100644 index 000000000..7fcad452f Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/ai/goal/RandomStrollGoal.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/ai/goal/RandomSwimmingGoal.class b/build/_compileJava_2/net/minecraft/world/entity/ai/goal/RandomSwimmingGoal.class new file mode 100644 index 000000000..51d5def58 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/ai/goal/RandomSwimmingGoal.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/ai/goal/RangedAttackGoal.class b/build/_compileJava_2/net/minecraft/world/entity/ai/goal/RangedAttackGoal.class new file mode 100644 index 000000000..ecbda59c2 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/ai/goal/RangedAttackGoal.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/ai/goal/RangedBowAttackGoal.class b/build/_compileJava_2/net/minecraft/world/entity/ai/goal/RangedBowAttackGoal.class new file mode 100644 index 000000000..7380fd387 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/ai/goal/RangedBowAttackGoal.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/ai/goal/RangedCrossbowAttackGoal$CrossbowState.class b/build/_compileJava_2/net/minecraft/world/entity/ai/goal/RangedCrossbowAttackGoal$CrossbowState.class new file mode 100644 index 000000000..2c03daa06 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/ai/goal/RangedCrossbowAttackGoal$CrossbowState.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/ai/goal/RangedCrossbowAttackGoal.class b/build/_compileJava_2/net/minecraft/world/entity/ai/goal/RangedCrossbowAttackGoal.class new file mode 100644 index 000000000..0892104d1 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/ai/goal/RangedCrossbowAttackGoal.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/ai/goal/RemoveBlockGoal.class b/build/_compileJava_2/net/minecraft/world/entity/ai/goal/RemoveBlockGoal.class new file mode 100644 index 000000000..588837fbd Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/ai/goal/RemoveBlockGoal.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/ai/goal/RestrictSunGoal.class b/build/_compileJava_2/net/minecraft/world/entity/ai/goal/RestrictSunGoal.class new file mode 100644 index 000000000..be707a65a Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/ai/goal/RestrictSunGoal.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/ai/goal/RunAroundLikeCrazyGoal.class b/build/_compileJava_2/net/minecraft/world/entity/ai/goal/RunAroundLikeCrazyGoal.class new file mode 100644 index 000000000..7a58bb521 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/ai/goal/RunAroundLikeCrazyGoal.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/ai/goal/SitWhenOrderedToGoal.class b/build/_compileJava_2/net/minecraft/world/entity/ai/goal/SitWhenOrderedToGoal.class new file mode 100644 index 000000000..3ec4493f4 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/ai/goal/SitWhenOrderedToGoal.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/ai/goal/StrollThroughVillageGoal.class b/build/_compileJava_2/net/minecraft/world/entity/ai/goal/StrollThroughVillageGoal.class new file mode 100644 index 000000000..2ff17840f Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/ai/goal/StrollThroughVillageGoal.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/ai/goal/SwellGoal.class b/build/_compileJava_2/net/minecraft/world/entity/ai/goal/SwellGoal.class new file mode 100644 index 000000000..4cb2299dd Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/ai/goal/SwellGoal.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/ai/goal/TemptGoal.class b/build/_compileJava_2/net/minecraft/world/entity/ai/goal/TemptGoal.class new file mode 100644 index 000000000..a3beb430d Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/ai/goal/TemptGoal.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/ai/goal/TradeWithPlayerGoal.class b/build/_compileJava_2/net/minecraft/world/entity/ai/goal/TradeWithPlayerGoal.class new file mode 100644 index 000000000..58d5382a3 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/ai/goal/TradeWithPlayerGoal.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/ai/goal/TryFindWaterGoal.class b/build/_compileJava_2/net/minecraft/world/entity/ai/goal/TryFindWaterGoal.class new file mode 100644 index 000000000..48d6bfe2d Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/ai/goal/TryFindWaterGoal.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/ai/goal/UseItemGoal.class b/build/_compileJava_2/net/minecraft/world/entity/ai/goal/UseItemGoal.class new file mode 100644 index 000000000..aa1afd14d Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/ai/goal/UseItemGoal.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/ai/goal/WaterAvoidingRandomFlyingGoal.class b/build/_compileJava_2/net/minecraft/world/entity/ai/goal/WaterAvoidingRandomFlyingGoal.class new file mode 100644 index 000000000..f1c10eb9e Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/ai/goal/WaterAvoidingRandomFlyingGoal.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/ai/goal/WaterAvoidingRandomStrollGoal.class b/build/_compileJava_2/net/minecraft/world/entity/ai/goal/WaterAvoidingRandomStrollGoal.class new file mode 100644 index 000000000..e01df4134 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/ai/goal/WaterAvoidingRandomStrollGoal.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/ai/goal/WrappedGoal.class b/build/_compileJava_2/net/minecraft/world/entity/ai/goal/WrappedGoal.class new file mode 100644 index 000000000..bfc3a6056 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/ai/goal/WrappedGoal.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/ai/goal/ZombieAttackGoal.class b/build/_compileJava_2/net/minecraft/world/entity/ai/goal/ZombieAttackGoal.class new file mode 100644 index 000000000..6bb60ca49 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/ai/goal/ZombieAttackGoal.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/ai/goal/package-info.class b/build/_compileJava_2/net/minecraft/world/entity/ai/goal/package-info.class new file mode 100644 index 000000000..de2120c90 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/ai/goal/package-info.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/ai/goal/target/DefendVillageTargetGoal.class b/build/_compileJava_2/net/minecraft/world/entity/ai/goal/target/DefendVillageTargetGoal.class new file mode 100644 index 000000000..7c8f1632c Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/ai/goal/target/DefendVillageTargetGoal.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/ai/goal/target/HurtByTargetGoal.class b/build/_compileJava_2/net/minecraft/world/entity/ai/goal/target/HurtByTargetGoal.class new file mode 100644 index 000000000..8e14387ca Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/ai/goal/target/HurtByTargetGoal.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/ai/goal/target/NearestAttackableTargetGoal.class b/build/_compileJava_2/net/minecraft/world/entity/ai/goal/target/NearestAttackableTargetGoal.class new file mode 100644 index 000000000..0a8c65a07 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/ai/goal/target/NearestAttackableTargetGoal.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/ai/goal/target/NearestAttackableWitchTargetGoal.class b/build/_compileJava_2/net/minecraft/world/entity/ai/goal/target/NearestAttackableWitchTargetGoal.class new file mode 100644 index 000000000..7bcfb0f66 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/ai/goal/target/NearestAttackableWitchTargetGoal.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/ai/goal/target/NearestHealableRaiderTargetGoal.class b/build/_compileJava_2/net/minecraft/world/entity/ai/goal/target/NearestHealableRaiderTargetGoal.class new file mode 100644 index 000000000..8ed0eac7d Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/ai/goal/target/NearestHealableRaiderTargetGoal.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/ai/goal/target/NonTameRandomTargetGoal.class b/build/_compileJava_2/net/minecraft/world/entity/ai/goal/target/NonTameRandomTargetGoal.class new file mode 100644 index 000000000..ee972c082 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/ai/goal/target/NonTameRandomTargetGoal.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/ai/goal/target/OwnerHurtByTargetGoal.class b/build/_compileJava_2/net/minecraft/world/entity/ai/goal/target/OwnerHurtByTargetGoal.class new file mode 100644 index 000000000..b0883128b Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/ai/goal/target/OwnerHurtByTargetGoal.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/ai/goal/target/OwnerHurtTargetGoal.class b/build/_compileJava_2/net/minecraft/world/entity/ai/goal/target/OwnerHurtTargetGoal.class new file mode 100644 index 000000000..d5f03a703 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/ai/goal/target/OwnerHurtTargetGoal.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/ai/goal/target/ResetUniversalAngerTargetGoal.class b/build/_compileJava_2/net/minecraft/world/entity/ai/goal/target/ResetUniversalAngerTargetGoal.class new file mode 100644 index 000000000..35a82827a Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/ai/goal/target/ResetUniversalAngerTargetGoal.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/ai/goal/target/TargetGoal.class b/build/_compileJava_2/net/minecraft/world/entity/ai/goal/target/TargetGoal.class new file mode 100644 index 000000000..f8e9af97c Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/ai/goal/target/TargetGoal.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/ai/goal/target/package-info.class b/build/_compileJava_2/net/minecraft/world/entity/ai/goal/target/package-info.class new file mode 100644 index 000000000..8e7d333d9 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/ai/goal/target/package-info.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/ai/gossip/GossipContainer$EntityGossips.class b/build/_compileJava_2/net/minecraft/world/entity/ai/gossip/GossipContainer$EntityGossips.class new file mode 100644 index 000000000..d9311000f Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/ai/gossip/GossipContainer$EntityGossips.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/ai/gossip/GossipContainer$GossipEntry.class b/build/_compileJava_2/net/minecraft/world/entity/ai/gossip/GossipContainer$GossipEntry.class new file mode 100644 index 000000000..7d1e3bcdf Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/ai/gossip/GossipContainer$GossipEntry.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/ai/gossip/GossipContainer.class b/build/_compileJava_2/net/minecraft/world/entity/ai/gossip/GossipContainer.class new file mode 100644 index 000000000..ab91d1442 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/ai/gossip/GossipContainer.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/ai/gossip/GossipType.class b/build/_compileJava_2/net/minecraft/world/entity/ai/gossip/GossipType.class new file mode 100644 index 000000000..f45941543 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/ai/gossip/GossipType.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/ai/gossip/package-info.class b/build/_compileJava_2/net/minecraft/world/entity/ai/gossip/package-info.class new file mode 100644 index 000000000..7d1bc919d Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/ai/gossip/package-info.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/ai/memory/ExpirableValue.class b/build/_compileJava_2/net/minecraft/world/entity/ai/memory/ExpirableValue.class new file mode 100644 index 000000000..67892b290 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/ai/memory/ExpirableValue.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/ai/memory/MemoryModuleType.class b/build/_compileJava_2/net/minecraft/world/entity/ai/memory/MemoryModuleType.class new file mode 100644 index 000000000..bd3a39013 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/ai/memory/MemoryModuleType.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/ai/memory/MemoryStatus.class b/build/_compileJava_2/net/minecraft/world/entity/ai/memory/MemoryStatus.class new file mode 100644 index 000000000..703147890 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/ai/memory/MemoryStatus.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/ai/memory/NearestVisibleLivingEntities.class b/build/_compileJava_2/net/minecraft/world/entity/ai/memory/NearestVisibleLivingEntities.class new file mode 100644 index 000000000..c1f4c242c Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/ai/memory/NearestVisibleLivingEntities.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/ai/memory/WalkTarget.class b/build/_compileJava_2/net/minecraft/world/entity/ai/memory/WalkTarget.class new file mode 100644 index 000000000..d9d84f064 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/ai/memory/WalkTarget.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/ai/memory/package-info.class b/build/_compileJava_2/net/minecraft/world/entity/ai/memory/package-info.class new file mode 100644 index 000000000..ad5ac7368 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/ai/memory/package-info.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/ai/navigation/AmphibiousPathNavigation.class b/build/_compileJava_2/net/minecraft/world/entity/ai/navigation/AmphibiousPathNavigation.class new file mode 100644 index 000000000..d937bcb44 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/ai/navigation/AmphibiousPathNavigation.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/ai/navigation/FlyingPathNavigation.class b/build/_compileJava_2/net/minecraft/world/entity/ai/navigation/FlyingPathNavigation.class new file mode 100644 index 000000000..fc06889af Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/ai/navigation/FlyingPathNavigation.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/ai/navigation/GroundPathNavigation.class b/build/_compileJava_2/net/minecraft/world/entity/ai/navigation/GroundPathNavigation.class new file mode 100644 index 000000000..9643309c1 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/ai/navigation/GroundPathNavigation.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/ai/navigation/PathNavigation.class b/build/_compileJava_2/net/minecraft/world/entity/ai/navigation/PathNavigation.class new file mode 100644 index 000000000..f8b80c120 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/ai/navigation/PathNavigation.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/ai/navigation/WallClimberNavigation.class b/build/_compileJava_2/net/minecraft/world/entity/ai/navigation/WallClimberNavigation.class new file mode 100644 index 000000000..65c402475 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/ai/navigation/WallClimberNavigation.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/ai/navigation/WaterBoundPathNavigation.class b/build/_compileJava_2/net/minecraft/world/entity/ai/navigation/WaterBoundPathNavigation.class new file mode 100644 index 000000000..b11c08db1 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/ai/navigation/WaterBoundPathNavigation.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/ai/navigation/package-info.class b/build/_compileJava_2/net/minecraft/world/entity/ai/navigation/package-info.class new file mode 100644 index 000000000..633afb462 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/ai/navigation/package-info.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/ai/package-info.class b/build/_compileJava_2/net/minecraft/world/entity/ai/package-info.class new file mode 100644 index 000000000..0340e85af Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/ai/package-info.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/ai/sensing/AdultSensor.class b/build/_compileJava_2/net/minecraft/world/entity/ai/sensing/AdultSensor.class new file mode 100644 index 000000000..3fc8e2174 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/ai/sensing/AdultSensor.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/ai/sensing/AxolotlAttackablesSensor.class b/build/_compileJava_2/net/minecraft/world/entity/ai/sensing/AxolotlAttackablesSensor.class new file mode 100644 index 000000000..cb0148dd7 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/ai/sensing/AxolotlAttackablesSensor.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/ai/sensing/DummySensor.class b/build/_compileJava_2/net/minecraft/world/entity/ai/sensing/DummySensor.class new file mode 100644 index 000000000..401b978cd Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/ai/sensing/DummySensor.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/ai/sensing/FrogAttackablesSensor.class b/build/_compileJava_2/net/minecraft/world/entity/ai/sensing/FrogAttackablesSensor.class new file mode 100644 index 000000000..eeb315977 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/ai/sensing/FrogAttackablesSensor.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/ai/sensing/GolemSensor.class b/build/_compileJava_2/net/minecraft/world/entity/ai/sensing/GolemSensor.class new file mode 100644 index 000000000..0ded41064 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/ai/sensing/GolemSensor.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/ai/sensing/HoglinSpecificSensor.class b/build/_compileJava_2/net/minecraft/world/entity/ai/sensing/HoglinSpecificSensor.class new file mode 100644 index 000000000..9fb6a0933 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/ai/sensing/HoglinSpecificSensor.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/ai/sensing/HurtBySensor.class b/build/_compileJava_2/net/minecraft/world/entity/ai/sensing/HurtBySensor.class new file mode 100644 index 000000000..826f1fc99 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/ai/sensing/HurtBySensor.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/ai/sensing/IsInWaterSensor.class b/build/_compileJava_2/net/minecraft/world/entity/ai/sensing/IsInWaterSensor.class new file mode 100644 index 000000000..fd2ea9a30 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/ai/sensing/IsInWaterSensor.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/ai/sensing/NearestBedSensor.class b/build/_compileJava_2/net/minecraft/world/entity/ai/sensing/NearestBedSensor.class new file mode 100644 index 000000000..afdde8070 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/ai/sensing/NearestBedSensor.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/ai/sensing/NearestItemSensor.class b/build/_compileJava_2/net/minecraft/world/entity/ai/sensing/NearestItemSensor.class new file mode 100644 index 000000000..638625f31 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/ai/sensing/NearestItemSensor.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/ai/sensing/NearestLivingEntitySensor.class b/build/_compileJava_2/net/minecraft/world/entity/ai/sensing/NearestLivingEntitySensor.class new file mode 100644 index 000000000..6441f7cee Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/ai/sensing/NearestLivingEntitySensor.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/ai/sensing/NearestVisibleLivingEntitySensor.class b/build/_compileJava_2/net/minecraft/world/entity/ai/sensing/NearestVisibleLivingEntitySensor.class new file mode 100644 index 000000000..56c0f852f Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/ai/sensing/NearestVisibleLivingEntitySensor.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/ai/sensing/PiglinBruteSpecificSensor.class b/build/_compileJava_2/net/minecraft/world/entity/ai/sensing/PiglinBruteSpecificSensor.class new file mode 100644 index 000000000..a8c824cae Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/ai/sensing/PiglinBruteSpecificSensor.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/ai/sensing/PiglinSpecificSensor.class b/build/_compileJava_2/net/minecraft/world/entity/ai/sensing/PiglinSpecificSensor.class new file mode 100644 index 000000000..46e9125ea Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/ai/sensing/PiglinSpecificSensor.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/ai/sensing/PlayerSensor.class b/build/_compileJava_2/net/minecraft/world/entity/ai/sensing/PlayerSensor.class new file mode 100644 index 000000000..f00c03077 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/ai/sensing/PlayerSensor.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/ai/sensing/SecondaryPoiSensor.class b/build/_compileJava_2/net/minecraft/world/entity/ai/sensing/SecondaryPoiSensor.class new file mode 100644 index 000000000..54bfa015e Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/ai/sensing/SecondaryPoiSensor.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/ai/sensing/Sensing.class b/build/_compileJava_2/net/minecraft/world/entity/ai/sensing/Sensing.class new file mode 100644 index 000000000..b27c79eae Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/ai/sensing/Sensing.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/ai/sensing/Sensor.class b/build/_compileJava_2/net/minecraft/world/entity/ai/sensing/Sensor.class new file mode 100644 index 000000000..dfe6b678e Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/ai/sensing/Sensor.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/ai/sensing/SensorType.class b/build/_compileJava_2/net/minecraft/world/entity/ai/sensing/SensorType.class new file mode 100644 index 000000000..4e62bad49 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/ai/sensing/SensorType.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/ai/sensing/TemptingSensor.class b/build/_compileJava_2/net/minecraft/world/entity/ai/sensing/TemptingSensor.class new file mode 100644 index 000000000..fa211bfbb Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/ai/sensing/TemptingSensor.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/ai/sensing/VillagerBabiesSensor.class b/build/_compileJava_2/net/minecraft/world/entity/ai/sensing/VillagerBabiesSensor.class new file mode 100644 index 000000000..ec385c400 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/ai/sensing/VillagerBabiesSensor.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/ai/sensing/VillagerHostilesSensor.class b/build/_compileJava_2/net/minecraft/world/entity/ai/sensing/VillagerHostilesSensor.class new file mode 100644 index 000000000..db14467b1 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/ai/sensing/VillagerHostilesSensor.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/ai/sensing/WardenEntitySensor.class b/build/_compileJava_2/net/minecraft/world/entity/ai/sensing/WardenEntitySensor.class new file mode 100644 index 000000000..07add6814 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/ai/sensing/WardenEntitySensor.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/ai/sensing/package-info.class b/build/_compileJava_2/net/minecraft/world/entity/ai/sensing/package-info.class new file mode 100644 index 000000000..50790e341 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/ai/sensing/package-info.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/ai/targeting/TargetingConditions.class b/build/_compileJava_2/net/minecraft/world/entity/ai/targeting/TargetingConditions.class new file mode 100644 index 000000000..3e4a552a7 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/ai/targeting/TargetingConditions.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/ai/targeting/package-info.class b/build/_compileJava_2/net/minecraft/world/entity/ai/targeting/package-info.class new file mode 100644 index 000000000..0894155b3 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/ai/targeting/package-info.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/ai/util/AirAndWaterRandomPos.class b/build/_compileJava_2/net/minecraft/world/entity/ai/util/AirAndWaterRandomPos.class new file mode 100644 index 000000000..de18d27ce Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/ai/util/AirAndWaterRandomPos.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/ai/util/AirRandomPos.class b/build/_compileJava_2/net/minecraft/world/entity/ai/util/AirRandomPos.class new file mode 100644 index 000000000..79a153bfb Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/ai/util/AirRandomPos.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/ai/util/DefaultRandomPos.class b/build/_compileJava_2/net/minecraft/world/entity/ai/util/DefaultRandomPos.class new file mode 100644 index 000000000..237814b94 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/ai/util/DefaultRandomPos.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/ai/util/GoalUtils.class b/build/_compileJava_2/net/minecraft/world/entity/ai/util/GoalUtils.class new file mode 100644 index 000000000..b9db76117 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/ai/util/GoalUtils.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/ai/util/HoverRandomPos.class b/build/_compileJava_2/net/minecraft/world/entity/ai/util/HoverRandomPos.class new file mode 100644 index 000000000..1c8a2d84b Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/ai/util/HoverRandomPos.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/ai/util/LandRandomPos.class b/build/_compileJava_2/net/minecraft/world/entity/ai/util/LandRandomPos.class new file mode 100644 index 000000000..e47e5ac7a Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/ai/util/LandRandomPos.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/ai/util/RandomPos.class b/build/_compileJava_2/net/minecraft/world/entity/ai/util/RandomPos.class new file mode 100644 index 000000000..e6aa8ce13 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/ai/util/RandomPos.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/ai/util/package-info.class b/build/_compileJava_2/net/minecraft/world/entity/ai/util/package-info.class new file mode 100644 index 000000000..4ed238a2a Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/ai/util/package-info.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/ai/village/ReputationEventType$1.class b/build/_compileJava_2/net/minecraft/world/entity/ai/village/ReputationEventType$1.class new file mode 100644 index 000000000..d31156c51 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/ai/village/ReputationEventType$1.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/ai/village/ReputationEventType.class b/build/_compileJava_2/net/minecraft/world/entity/ai/village/ReputationEventType.class new file mode 100644 index 000000000..1b9e633d0 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/ai/village/ReputationEventType.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/ai/village/VillageSiege$State.class b/build/_compileJava_2/net/minecraft/world/entity/ai/village/VillageSiege$State.class new file mode 100644 index 000000000..4dddd6e1e Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/ai/village/VillageSiege$State.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/ai/village/VillageSiege.class b/build/_compileJava_2/net/minecraft/world/entity/ai/village/VillageSiege.class new file mode 100644 index 000000000..821537265 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/ai/village/VillageSiege.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/ai/village/package-info.class b/build/_compileJava_2/net/minecraft/world/entity/ai/village/package-info.class new file mode 100644 index 000000000..d766c0314 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/ai/village/package-info.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/ai/village/poi/PoiManager$DistanceTracker.class b/build/_compileJava_2/net/minecraft/world/entity/ai/village/poi/PoiManager$DistanceTracker.class new file mode 100644 index 000000000..f1d09d432 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/ai/village/poi/PoiManager$DistanceTracker.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/ai/village/poi/PoiManager$Occupancy.class b/build/_compileJava_2/net/minecraft/world/entity/ai/village/poi/PoiManager$Occupancy.class new file mode 100644 index 000000000..46012fd97 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/ai/village/poi/PoiManager$Occupancy.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/ai/village/poi/PoiManager.class b/build/_compileJava_2/net/minecraft/world/entity/ai/village/poi/PoiManager.class new file mode 100644 index 000000000..451ee17c1 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/ai/village/poi/PoiManager.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/ai/village/poi/PoiRecord.class b/build/_compileJava_2/net/minecraft/world/entity/ai/village/poi/PoiRecord.class new file mode 100644 index 000000000..050db26fb Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/ai/village/poi/PoiRecord.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/ai/village/poi/PoiSection.class b/build/_compileJava_2/net/minecraft/world/entity/ai/village/poi/PoiSection.class new file mode 100644 index 000000000..c7b8a020a Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/ai/village/poi/PoiSection.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/ai/village/poi/PoiType.class b/build/_compileJava_2/net/minecraft/world/entity/ai/village/poi/PoiType.class new file mode 100644 index 000000000..da2c60dad Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/ai/village/poi/PoiType.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/ai/village/poi/PoiTypes.class b/build/_compileJava_2/net/minecraft/world/entity/ai/village/poi/PoiTypes.class new file mode 100644 index 000000000..33de53ce1 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/ai/village/poi/PoiTypes.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/ai/village/poi/package-info.class b/build/_compileJava_2/net/minecraft/world/entity/ai/village/poi/package-info.class new file mode 100644 index 000000000..d60284a8f Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/ai/village/poi/package-info.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/ambient/AmbientCreature.class b/build/_compileJava_2/net/minecraft/world/entity/ambient/AmbientCreature.class new file mode 100644 index 000000000..630031d4f Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/ambient/AmbientCreature.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/ambient/Bat.class b/build/_compileJava_2/net/minecraft/world/entity/ambient/Bat.class new file mode 100644 index 000000000..9bf088e66 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/ambient/Bat.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/ambient/package-info.class b/build/_compileJava_2/net/minecraft/world/entity/ambient/package-info.class new file mode 100644 index 000000000..beb1da05f Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/ambient/package-info.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/animal/AbstractFish$FishMoveControl.class b/build/_compileJava_2/net/minecraft/world/entity/animal/AbstractFish$FishMoveControl.class new file mode 100644 index 000000000..813de31a9 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/animal/AbstractFish$FishMoveControl.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/animal/AbstractFish$FishSwimGoal.class b/build/_compileJava_2/net/minecraft/world/entity/animal/AbstractFish$FishSwimGoal.class new file mode 100644 index 000000000..a768ea2f8 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/animal/AbstractFish$FishSwimGoal.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/animal/AbstractFish.class b/build/_compileJava_2/net/minecraft/world/entity/animal/AbstractFish.class new file mode 100644 index 000000000..52048eee7 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/animal/AbstractFish.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/animal/AbstractGolem.class b/build/_compileJava_2/net/minecraft/world/entity/animal/AbstractGolem.class new file mode 100644 index 000000000..2b7438bde Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/animal/AbstractGolem.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/animal/AbstractSchoolingFish$SchoolSpawnGroupData.class b/build/_compileJava_2/net/minecraft/world/entity/animal/AbstractSchoolingFish$SchoolSpawnGroupData.class new file mode 100644 index 000000000..03bb08710 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/animal/AbstractSchoolingFish$SchoolSpawnGroupData.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/animal/AbstractSchoolingFish.class b/build/_compileJava_2/net/minecraft/world/entity/animal/AbstractSchoolingFish.class new file mode 100644 index 000000000..3db3e8346 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/animal/AbstractSchoolingFish.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/animal/Animal.class b/build/_compileJava_2/net/minecraft/world/entity/animal/Animal.class new file mode 100644 index 000000000..b5b041e9b Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/animal/Animal.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/animal/Bee$1.class b/build/_compileJava_2/net/minecraft/world/entity/animal/Bee$1.class new file mode 100644 index 000000000..b49c23f0c Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/animal/Bee$1.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/animal/Bee$BaseBeeGoal.class b/build/_compileJava_2/net/minecraft/world/entity/animal/Bee$BaseBeeGoal.class new file mode 100644 index 000000000..63a8b11a3 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/animal/Bee$BaseBeeGoal.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/animal/Bee$BeeAttackGoal.class b/build/_compileJava_2/net/minecraft/world/entity/animal/Bee$BeeAttackGoal.class new file mode 100644 index 000000000..4fff4ca28 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/animal/Bee$BeeAttackGoal.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/animal/Bee$BeeBecomeAngryTargetGoal.class b/build/_compileJava_2/net/minecraft/world/entity/animal/Bee$BeeBecomeAngryTargetGoal.class new file mode 100644 index 000000000..0f34ca4fc Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/animal/Bee$BeeBecomeAngryTargetGoal.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/animal/Bee$BeeEnterHiveGoal.class b/build/_compileJava_2/net/minecraft/world/entity/animal/Bee$BeeEnterHiveGoal.class new file mode 100644 index 000000000..7aeee81f6 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/animal/Bee$BeeEnterHiveGoal.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/animal/Bee$BeeGoToHiveGoal.class b/build/_compileJava_2/net/minecraft/world/entity/animal/Bee$BeeGoToHiveGoal.class new file mode 100644 index 000000000..2bb89b664 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/animal/Bee$BeeGoToHiveGoal.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/animal/Bee$BeeGoToKnownFlowerGoal.class b/build/_compileJava_2/net/minecraft/world/entity/animal/Bee$BeeGoToKnownFlowerGoal.class new file mode 100644 index 000000000..cf980420a Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/animal/Bee$BeeGoToKnownFlowerGoal.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/animal/Bee$BeeGrowCropGoal.class b/build/_compileJava_2/net/minecraft/world/entity/animal/Bee$BeeGrowCropGoal.class new file mode 100644 index 000000000..576b994b1 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/animal/Bee$BeeGrowCropGoal.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/animal/Bee$BeeHurtByOtherGoal.class b/build/_compileJava_2/net/minecraft/world/entity/animal/Bee$BeeHurtByOtherGoal.class new file mode 100644 index 000000000..c6d479314 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/animal/Bee$BeeHurtByOtherGoal.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/animal/Bee$BeeLocateHiveGoal.class b/build/_compileJava_2/net/minecraft/world/entity/animal/Bee$BeeLocateHiveGoal.class new file mode 100644 index 000000000..cec0ed1db Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/animal/Bee$BeeLocateHiveGoal.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/animal/Bee$BeeLookControl.class b/build/_compileJava_2/net/minecraft/world/entity/animal/Bee$BeeLookControl.class new file mode 100644 index 000000000..236af4080 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/animal/Bee$BeeLookControl.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/animal/Bee$BeePollinateGoal.class b/build/_compileJava_2/net/minecraft/world/entity/animal/Bee$BeePollinateGoal.class new file mode 100644 index 000000000..2337c8f46 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/animal/Bee$BeePollinateGoal.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/animal/Bee$BeeWanderGoal.class b/build/_compileJava_2/net/minecraft/world/entity/animal/Bee$BeeWanderGoal.class new file mode 100644 index 000000000..1ed837023 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/animal/Bee$BeeWanderGoal.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/animal/Bee.class b/build/_compileJava_2/net/minecraft/world/entity/animal/Bee.class new file mode 100644 index 000000000..4e3a387be Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/animal/Bee.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/animal/Bucketable.class b/build/_compileJava_2/net/minecraft/world/entity/animal/Bucketable.class new file mode 100644 index 000000000..7fd32678d Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/animal/Bucketable.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/animal/Cat$CatAvoidEntityGoal.class b/build/_compileJava_2/net/minecraft/world/entity/animal/Cat$CatAvoidEntityGoal.class new file mode 100644 index 000000000..44a489339 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/animal/Cat$CatAvoidEntityGoal.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/animal/Cat$CatRelaxOnOwnerGoal.class b/build/_compileJava_2/net/minecraft/world/entity/animal/Cat$CatRelaxOnOwnerGoal.class new file mode 100644 index 000000000..f56866153 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/animal/Cat$CatRelaxOnOwnerGoal.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/animal/Cat$CatTemptGoal.class b/build/_compileJava_2/net/minecraft/world/entity/animal/Cat$CatTemptGoal.class new file mode 100644 index 000000000..2b0b70bcf Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/animal/Cat$CatTemptGoal.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/animal/Cat.class b/build/_compileJava_2/net/minecraft/world/entity/animal/Cat.class new file mode 100644 index 000000000..d3c3d8567 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/animal/Cat.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/animal/CatVariant.class b/build/_compileJava_2/net/minecraft/world/entity/animal/CatVariant.class new file mode 100644 index 000000000..1cdc47d73 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/animal/CatVariant.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/animal/Chicken.class b/build/_compileJava_2/net/minecraft/world/entity/animal/Chicken.class new file mode 100644 index 000000000..46c843cc0 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/animal/Chicken.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/animal/Cod.class b/build/_compileJava_2/net/minecraft/world/entity/animal/Cod.class new file mode 100644 index 000000000..f5afa4b41 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/animal/Cod.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/animal/Cow.class b/build/_compileJava_2/net/minecraft/world/entity/animal/Cow.class new file mode 100644 index 000000000..8c198d8bf Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/animal/Cow.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/animal/Dolphin$DolphinSwimToTreasureGoal.class b/build/_compileJava_2/net/minecraft/world/entity/animal/Dolphin$DolphinSwimToTreasureGoal.class new file mode 100644 index 000000000..769d085de Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/animal/Dolphin$DolphinSwimToTreasureGoal.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/animal/Dolphin$DolphinSwimWithPlayerGoal.class b/build/_compileJava_2/net/minecraft/world/entity/animal/Dolphin$DolphinSwimWithPlayerGoal.class new file mode 100644 index 000000000..f61257c4e Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/animal/Dolphin$DolphinSwimWithPlayerGoal.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/animal/Dolphin$PlayWithItemsGoal.class b/build/_compileJava_2/net/minecraft/world/entity/animal/Dolphin$PlayWithItemsGoal.class new file mode 100644 index 000000000..02448d820 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/animal/Dolphin$PlayWithItemsGoal.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/animal/Dolphin.class b/build/_compileJava_2/net/minecraft/world/entity/animal/Dolphin.class new file mode 100644 index 000000000..811f9e559 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/animal/Dolphin.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/animal/FlyingAnimal.class b/build/_compileJava_2/net/minecraft/world/entity/animal/FlyingAnimal.class new file mode 100644 index 000000000..f77cbe98d Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/animal/FlyingAnimal.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/animal/Fox$DefendTrustedTargetGoal.class b/build/_compileJava_2/net/minecraft/world/entity/animal/Fox$DefendTrustedTargetGoal.class new file mode 100644 index 000000000..02d82ef19 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/animal/Fox$DefendTrustedTargetGoal.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/animal/Fox$FaceplantGoal.class b/build/_compileJava_2/net/minecraft/world/entity/animal/Fox$FaceplantGoal.class new file mode 100644 index 000000000..8ef789c9a Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/animal/Fox$FaceplantGoal.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/animal/Fox$FoxAlertableEntitiesSelector.class b/build/_compileJava_2/net/minecraft/world/entity/animal/Fox$FoxAlertableEntitiesSelector.class new file mode 100644 index 000000000..9d9499b60 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/animal/Fox$FoxAlertableEntitiesSelector.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/animal/Fox$FoxBehaviorGoal.class b/build/_compileJava_2/net/minecraft/world/entity/animal/Fox$FoxBehaviorGoal.class new file mode 100644 index 000000000..a733c004a Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/animal/Fox$FoxBehaviorGoal.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/animal/Fox$FoxBreedGoal.class b/build/_compileJava_2/net/minecraft/world/entity/animal/Fox$FoxBreedGoal.class new file mode 100644 index 000000000..ed657433e Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/animal/Fox$FoxBreedGoal.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/animal/Fox$FoxEatBerriesGoal.class b/build/_compileJava_2/net/minecraft/world/entity/animal/Fox$FoxEatBerriesGoal.class new file mode 100644 index 000000000..228e36519 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/animal/Fox$FoxEatBerriesGoal.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/animal/Fox$FoxFloatGoal.class b/build/_compileJava_2/net/minecraft/world/entity/animal/Fox$FoxFloatGoal.class new file mode 100644 index 000000000..150f45ed7 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/animal/Fox$FoxFloatGoal.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/animal/Fox$FoxFollowParentGoal.class b/build/_compileJava_2/net/minecraft/world/entity/animal/Fox$FoxFollowParentGoal.class new file mode 100644 index 000000000..f376dc0ea Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/animal/Fox$FoxFollowParentGoal.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/animal/Fox$FoxGroupData.class b/build/_compileJava_2/net/minecraft/world/entity/animal/Fox$FoxGroupData.class new file mode 100644 index 000000000..5a0adaaba Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/animal/Fox$FoxGroupData.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/animal/Fox$FoxLookAtPlayerGoal.class b/build/_compileJava_2/net/minecraft/world/entity/animal/Fox$FoxLookAtPlayerGoal.class new file mode 100644 index 000000000..e4e302c90 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/animal/Fox$FoxLookAtPlayerGoal.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/animal/Fox$FoxLookControl.class b/build/_compileJava_2/net/minecraft/world/entity/animal/Fox$FoxLookControl.class new file mode 100644 index 000000000..ff6f4d421 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/animal/Fox$FoxLookControl.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/animal/Fox$FoxMeleeAttackGoal.class b/build/_compileJava_2/net/minecraft/world/entity/animal/Fox$FoxMeleeAttackGoal.class new file mode 100644 index 000000000..f2898ffe0 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/animal/Fox$FoxMeleeAttackGoal.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/animal/Fox$FoxMoveControl.class b/build/_compileJava_2/net/minecraft/world/entity/animal/Fox$FoxMoveControl.class new file mode 100644 index 000000000..6fbb49070 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/animal/Fox$FoxMoveControl.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/animal/Fox$FoxPanicGoal.class b/build/_compileJava_2/net/minecraft/world/entity/animal/Fox$FoxPanicGoal.class new file mode 100644 index 000000000..5249bb7c2 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/animal/Fox$FoxPanicGoal.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/animal/Fox$FoxPounceGoal.class b/build/_compileJava_2/net/minecraft/world/entity/animal/Fox$FoxPounceGoal.class new file mode 100644 index 000000000..3d43bf567 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/animal/Fox$FoxPounceGoal.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/animal/Fox$FoxSearchForItemsGoal.class b/build/_compileJava_2/net/minecraft/world/entity/animal/Fox$FoxSearchForItemsGoal.class new file mode 100644 index 000000000..143068647 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/animal/Fox$FoxSearchForItemsGoal.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/animal/Fox$FoxStrollThroughVillageGoal.class b/build/_compileJava_2/net/minecraft/world/entity/animal/Fox$FoxStrollThroughVillageGoal.class new file mode 100644 index 000000000..80a70c862 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/animal/Fox$FoxStrollThroughVillageGoal.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/animal/Fox$PerchAndSearchGoal.class b/build/_compileJava_2/net/minecraft/world/entity/animal/Fox$PerchAndSearchGoal.class new file mode 100644 index 000000000..f8cad967d Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/animal/Fox$PerchAndSearchGoal.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/animal/Fox$SeekShelterGoal.class b/build/_compileJava_2/net/minecraft/world/entity/animal/Fox$SeekShelterGoal.class new file mode 100644 index 000000000..6c448cd3e Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/animal/Fox$SeekShelterGoal.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/animal/Fox$SleepGoal.class b/build/_compileJava_2/net/minecraft/world/entity/animal/Fox$SleepGoal.class new file mode 100644 index 000000000..de8e01e9b Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/animal/Fox$SleepGoal.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/animal/Fox$StalkPreyGoal.class b/build/_compileJava_2/net/minecraft/world/entity/animal/Fox$StalkPreyGoal.class new file mode 100644 index 000000000..f2fd8ce6c Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/animal/Fox$StalkPreyGoal.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/animal/Fox$Type.class b/build/_compileJava_2/net/minecraft/world/entity/animal/Fox$Type.class new file mode 100644 index 000000000..33ff6e2fa Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/animal/Fox$Type.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/animal/Fox.class b/build/_compileJava_2/net/minecraft/world/entity/animal/Fox.class new file mode 100644 index 000000000..4afa1de81 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/animal/Fox.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/animal/FrogVariant.class b/build/_compileJava_2/net/minecraft/world/entity/animal/FrogVariant.class new file mode 100644 index 000000000..4a972a2e2 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/animal/FrogVariant.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/animal/IronGolem$Crackiness.class b/build/_compileJava_2/net/minecraft/world/entity/animal/IronGolem$Crackiness.class new file mode 100644 index 000000000..f931c4c91 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/animal/IronGolem$Crackiness.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/animal/IronGolem.class b/build/_compileJava_2/net/minecraft/world/entity/animal/IronGolem.class new file mode 100644 index 000000000..f4a7b86e6 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/animal/IronGolem.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/animal/MushroomCow$MushroomType.class b/build/_compileJava_2/net/minecraft/world/entity/animal/MushroomCow$MushroomType.class new file mode 100644 index 000000000..9d6296b36 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/animal/MushroomCow$MushroomType.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/animal/MushroomCow.class b/build/_compileJava_2/net/minecraft/world/entity/animal/MushroomCow.class new file mode 100644 index 000000000..7c3f20e2f Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/animal/MushroomCow.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/animal/Ocelot$OcelotAvoidEntityGoal.class b/build/_compileJava_2/net/minecraft/world/entity/animal/Ocelot$OcelotAvoidEntityGoal.class new file mode 100644 index 000000000..830b6fc4b Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/animal/Ocelot$OcelotAvoidEntityGoal.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/animal/Ocelot$OcelotTemptGoal.class b/build/_compileJava_2/net/minecraft/world/entity/animal/Ocelot$OcelotTemptGoal.class new file mode 100644 index 000000000..67340c7cb Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/animal/Ocelot$OcelotTemptGoal.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/animal/Ocelot.class b/build/_compileJava_2/net/minecraft/world/entity/animal/Ocelot.class new file mode 100644 index 000000000..71f77ebd7 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/animal/Ocelot.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/animal/Panda$Gene.class b/build/_compileJava_2/net/minecraft/world/entity/animal/Panda$Gene.class new file mode 100644 index 000000000..c2c311cae Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/animal/Panda$Gene.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/animal/Panda$PandaAttackGoal.class b/build/_compileJava_2/net/minecraft/world/entity/animal/Panda$PandaAttackGoal.class new file mode 100644 index 000000000..328c5523d Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/animal/Panda$PandaAttackGoal.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/animal/Panda$PandaAvoidGoal.class b/build/_compileJava_2/net/minecraft/world/entity/animal/Panda$PandaAvoidGoal.class new file mode 100644 index 000000000..f005b4095 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/animal/Panda$PandaAvoidGoal.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/animal/Panda$PandaBreedGoal.class b/build/_compileJava_2/net/minecraft/world/entity/animal/Panda$PandaBreedGoal.class new file mode 100644 index 000000000..bde231b81 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/animal/Panda$PandaBreedGoal.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/animal/Panda$PandaHurtByTargetGoal.class b/build/_compileJava_2/net/minecraft/world/entity/animal/Panda$PandaHurtByTargetGoal.class new file mode 100644 index 000000000..e3c5a36fc Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/animal/Panda$PandaHurtByTargetGoal.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/animal/Panda$PandaLieOnBackGoal.class b/build/_compileJava_2/net/minecraft/world/entity/animal/Panda$PandaLieOnBackGoal.class new file mode 100644 index 000000000..9883e5a9c Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/animal/Panda$PandaLieOnBackGoal.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/animal/Panda$PandaLookAtPlayerGoal.class b/build/_compileJava_2/net/minecraft/world/entity/animal/Panda$PandaLookAtPlayerGoal.class new file mode 100644 index 000000000..2831b2d12 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/animal/Panda$PandaLookAtPlayerGoal.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/animal/Panda$PandaMoveControl.class b/build/_compileJava_2/net/minecraft/world/entity/animal/Panda$PandaMoveControl.class new file mode 100644 index 000000000..3e0a65c03 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/animal/Panda$PandaMoveControl.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/animal/Panda$PandaPanicGoal.class b/build/_compileJava_2/net/minecraft/world/entity/animal/Panda$PandaPanicGoal.class new file mode 100644 index 000000000..a7ed45f9c Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/animal/Panda$PandaPanicGoal.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/animal/Panda$PandaRollGoal.class b/build/_compileJava_2/net/minecraft/world/entity/animal/Panda$PandaRollGoal.class new file mode 100644 index 000000000..a9e1b7850 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/animal/Panda$PandaRollGoal.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/animal/Panda$PandaSitGoal.class b/build/_compileJava_2/net/minecraft/world/entity/animal/Panda$PandaSitGoal.class new file mode 100644 index 000000000..7f0ea091a Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/animal/Panda$PandaSitGoal.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/animal/Panda$PandaSneezeGoal.class b/build/_compileJava_2/net/minecraft/world/entity/animal/Panda$PandaSneezeGoal.class new file mode 100644 index 000000000..b26d8c1a7 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/animal/Panda$PandaSneezeGoal.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/animal/Panda.class b/build/_compileJava_2/net/minecraft/world/entity/animal/Panda.class new file mode 100644 index 000000000..79a1fb620 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/animal/Panda.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/animal/Parrot$1.class b/build/_compileJava_2/net/minecraft/world/entity/animal/Parrot$1.class new file mode 100644 index 000000000..1802c5c34 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/animal/Parrot$1.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/animal/Parrot$ParrotWanderGoal.class b/build/_compileJava_2/net/minecraft/world/entity/animal/Parrot$ParrotWanderGoal.class new file mode 100644 index 000000000..bf4ddc794 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/animal/Parrot$ParrotWanderGoal.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/animal/Parrot$Variant.class b/build/_compileJava_2/net/minecraft/world/entity/animal/Parrot$Variant.class new file mode 100644 index 000000000..12def4a00 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/animal/Parrot$Variant.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/animal/Parrot.class b/build/_compileJava_2/net/minecraft/world/entity/animal/Parrot.class new file mode 100644 index 000000000..0f39c4e04 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/animal/Parrot.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/animal/Pig.class b/build/_compileJava_2/net/minecraft/world/entity/animal/Pig.class new file mode 100644 index 000000000..5d761f813 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/animal/Pig.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/animal/PolarBear$PolarBearAttackPlayersGoal.class b/build/_compileJava_2/net/minecraft/world/entity/animal/PolarBear$PolarBearAttackPlayersGoal.class new file mode 100644 index 000000000..538aef6b4 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/animal/PolarBear$PolarBearAttackPlayersGoal.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/animal/PolarBear$PolarBearHurtByTargetGoal.class b/build/_compileJava_2/net/minecraft/world/entity/animal/PolarBear$PolarBearHurtByTargetGoal.class new file mode 100644 index 000000000..fbfa1ec7b Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/animal/PolarBear$PolarBearHurtByTargetGoal.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/animal/PolarBear$PolarBearMeleeAttackGoal.class b/build/_compileJava_2/net/minecraft/world/entity/animal/PolarBear$PolarBearMeleeAttackGoal.class new file mode 100644 index 000000000..178ca4f48 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/animal/PolarBear$PolarBearMeleeAttackGoal.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/animal/PolarBear$PolarBearPanicGoal.class b/build/_compileJava_2/net/minecraft/world/entity/animal/PolarBear$PolarBearPanicGoal.class new file mode 100644 index 000000000..6b5ed2252 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/animal/PolarBear$PolarBearPanicGoal.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/animal/PolarBear.class b/build/_compileJava_2/net/minecraft/world/entity/animal/PolarBear.class new file mode 100644 index 000000000..0aa9a15b2 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/animal/PolarBear.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/animal/Pufferfish$PufferfishPuffGoal.class b/build/_compileJava_2/net/minecraft/world/entity/animal/Pufferfish$PufferfishPuffGoal.class new file mode 100644 index 000000000..5916286ac Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/animal/Pufferfish$PufferfishPuffGoal.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/animal/Pufferfish.class b/build/_compileJava_2/net/minecraft/world/entity/animal/Pufferfish.class new file mode 100644 index 000000000..5a4b80db3 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/animal/Pufferfish.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/animal/Rabbit$EvilRabbitAttackGoal.class b/build/_compileJava_2/net/minecraft/world/entity/animal/Rabbit$EvilRabbitAttackGoal.class new file mode 100644 index 000000000..198c553e1 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/animal/Rabbit$EvilRabbitAttackGoal.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/animal/Rabbit$RabbitAvoidEntityGoal.class b/build/_compileJava_2/net/minecraft/world/entity/animal/Rabbit$RabbitAvoidEntityGoal.class new file mode 100644 index 000000000..fbb4bda8f Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/animal/Rabbit$RabbitAvoidEntityGoal.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/animal/Rabbit$RabbitGroupData.class b/build/_compileJava_2/net/minecraft/world/entity/animal/Rabbit$RabbitGroupData.class new file mode 100644 index 000000000..721f17356 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/animal/Rabbit$RabbitGroupData.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/animal/Rabbit$RabbitJumpControl.class b/build/_compileJava_2/net/minecraft/world/entity/animal/Rabbit$RabbitJumpControl.class new file mode 100644 index 000000000..305b1ec8e Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/animal/Rabbit$RabbitJumpControl.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/animal/Rabbit$RabbitMoveControl.class b/build/_compileJava_2/net/minecraft/world/entity/animal/Rabbit$RabbitMoveControl.class new file mode 100644 index 000000000..67e551532 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/animal/Rabbit$RabbitMoveControl.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/animal/Rabbit$RabbitPanicGoal.class b/build/_compileJava_2/net/minecraft/world/entity/animal/Rabbit$RabbitPanicGoal.class new file mode 100644 index 000000000..b9ebe98f8 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/animal/Rabbit$RabbitPanicGoal.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/animal/Rabbit$RaidGardenGoal.class b/build/_compileJava_2/net/minecraft/world/entity/animal/Rabbit$RaidGardenGoal.class new file mode 100644 index 000000000..3ad2e4731 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/animal/Rabbit$RaidGardenGoal.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/animal/Rabbit$Variant.class b/build/_compileJava_2/net/minecraft/world/entity/animal/Rabbit$Variant.class new file mode 100644 index 000000000..db1147baf Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/animal/Rabbit$Variant.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/animal/Rabbit.class b/build/_compileJava_2/net/minecraft/world/entity/animal/Rabbit.class new file mode 100644 index 000000000..9b9b9483f Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/animal/Rabbit.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/animal/Salmon.class b/build/_compileJava_2/net/minecraft/world/entity/animal/Salmon.class new file mode 100644 index 000000000..e194abaeb Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/animal/Salmon.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/animal/Sheep$1.class b/build/_compileJava_2/net/minecraft/world/entity/animal/Sheep$1.class new file mode 100644 index 000000000..643e46262 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/animal/Sheep$1.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/animal/Sheep$2.class b/build/_compileJava_2/net/minecraft/world/entity/animal/Sheep$2.class new file mode 100644 index 000000000..9ad8c9f8d Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/animal/Sheep$2.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/animal/Sheep.class b/build/_compileJava_2/net/minecraft/world/entity/animal/Sheep.class new file mode 100644 index 000000000..21a9b8f0d Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/animal/Sheep.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/animal/ShoulderRidingEntity.class b/build/_compileJava_2/net/minecraft/world/entity/animal/ShoulderRidingEntity.class new file mode 100644 index 000000000..997cd86eb Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/animal/ShoulderRidingEntity.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/animal/SnowGolem.class b/build/_compileJava_2/net/minecraft/world/entity/animal/SnowGolem.class new file mode 100644 index 000000000..6c9fd733f Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/animal/SnowGolem.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/animal/Squid$SquidFleeGoal.class b/build/_compileJava_2/net/minecraft/world/entity/animal/Squid$SquidFleeGoal.class new file mode 100644 index 000000000..50719b101 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/animal/Squid$SquidFleeGoal.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/animal/Squid$SquidRandomMovementGoal.class b/build/_compileJava_2/net/minecraft/world/entity/animal/Squid$SquidRandomMovementGoal.class new file mode 100644 index 000000000..a1328911b Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/animal/Squid$SquidRandomMovementGoal.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/animal/Squid.class b/build/_compileJava_2/net/minecraft/world/entity/animal/Squid.class new file mode 100644 index 000000000..3ca1a76d9 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/animal/Squid.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/animal/TropicalFish$Base.class b/build/_compileJava_2/net/minecraft/world/entity/animal/TropicalFish$Base.class new file mode 100644 index 000000000..2f00d456d Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/animal/TropicalFish$Base.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/animal/TropicalFish$Pattern.class b/build/_compileJava_2/net/minecraft/world/entity/animal/TropicalFish$Pattern.class new file mode 100644 index 000000000..2ca5d60ab Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/animal/TropicalFish$Pattern.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/animal/TropicalFish$TropicalFishGroupData.class b/build/_compileJava_2/net/minecraft/world/entity/animal/TropicalFish$TropicalFishGroupData.class new file mode 100644 index 000000000..1a757be06 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/animal/TropicalFish$TropicalFishGroupData.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/animal/TropicalFish$Variant.class b/build/_compileJava_2/net/minecraft/world/entity/animal/TropicalFish$Variant.class new file mode 100644 index 000000000..cd1c41ce6 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/animal/TropicalFish$Variant.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/animal/TropicalFish.class b/build/_compileJava_2/net/minecraft/world/entity/animal/TropicalFish.class new file mode 100644 index 000000000..a16c064a6 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/animal/TropicalFish.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/animal/Turtle$TurtleBreedGoal.class b/build/_compileJava_2/net/minecraft/world/entity/animal/Turtle$TurtleBreedGoal.class new file mode 100644 index 000000000..b5dc243a5 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/animal/Turtle$TurtleBreedGoal.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/animal/Turtle$TurtleGoHomeGoal.class b/build/_compileJava_2/net/minecraft/world/entity/animal/Turtle$TurtleGoHomeGoal.class new file mode 100644 index 000000000..466ed4e9a Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/animal/Turtle$TurtleGoHomeGoal.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/animal/Turtle$TurtleGoToWaterGoal.class b/build/_compileJava_2/net/minecraft/world/entity/animal/Turtle$TurtleGoToWaterGoal.class new file mode 100644 index 000000000..9129e78fe Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/animal/Turtle$TurtleGoToWaterGoal.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/animal/Turtle$TurtleLayEggGoal.class b/build/_compileJava_2/net/minecraft/world/entity/animal/Turtle$TurtleLayEggGoal.class new file mode 100644 index 000000000..6a4d7428c Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/animal/Turtle$TurtleLayEggGoal.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/animal/Turtle$TurtleMoveControl.class b/build/_compileJava_2/net/minecraft/world/entity/animal/Turtle$TurtleMoveControl.class new file mode 100644 index 000000000..506f211c8 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/animal/Turtle$TurtleMoveControl.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/animal/Turtle$TurtlePanicGoal.class b/build/_compileJava_2/net/minecraft/world/entity/animal/Turtle$TurtlePanicGoal.class new file mode 100644 index 000000000..ff940130e Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/animal/Turtle$TurtlePanicGoal.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/animal/Turtle$TurtlePathNavigation.class b/build/_compileJava_2/net/minecraft/world/entity/animal/Turtle$TurtlePathNavigation.class new file mode 100644 index 000000000..ad3f64424 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/animal/Turtle$TurtlePathNavigation.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/animal/Turtle$TurtleRandomStrollGoal.class b/build/_compileJava_2/net/minecraft/world/entity/animal/Turtle$TurtleRandomStrollGoal.class new file mode 100644 index 000000000..742b355ef Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/animal/Turtle$TurtleRandomStrollGoal.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/animal/Turtle$TurtleTravelGoal.class b/build/_compileJava_2/net/minecraft/world/entity/animal/Turtle$TurtleTravelGoal.class new file mode 100644 index 000000000..838a65319 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/animal/Turtle$TurtleTravelGoal.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/animal/Turtle.class b/build/_compileJava_2/net/minecraft/world/entity/animal/Turtle.class new file mode 100644 index 000000000..2c8100383 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/animal/Turtle.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/animal/WaterAnimal.class b/build/_compileJava_2/net/minecraft/world/entity/animal/WaterAnimal.class new file mode 100644 index 000000000..6b9d93ada Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/animal/WaterAnimal.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/animal/Wolf$WolfAvoidEntityGoal.class b/build/_compileJava_2/net/minecraft/world/entity/animal/Wolf$WolfAvoidEntityGoal.class new file mode 100644 index 000000000..6ff2e2cb2 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/animal/Wolf$WolfAvoidEntityGoal.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/animal/Wolf$WolfPanicGoal.class b/build/_compileJava_2/net/minecraft/world/entity/animal/Wolf$WolfPanicGoal.class new file mode 100644 index 000000000..bba9398d4 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/animal/Wolf$WolfPanicGoal.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/animal/Wolf.class b/build/_compileJava_2/net/minecraft/world/entity/animal/Wolf.class new file mode 100644 index 000000000..c1399a9b4 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/animal/Wolf.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/animal/allay/Allay$JukeboxListener.class b/build/_compileJava_2/net/minecraft/world/entity/animal/allay/Allay$JukeboxListener.class new file mode 100644 index 000000000..b72aa26a3 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/animal/allay/Allay$JukeboxListener.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/animal/allay/Allay$VibrationUser.class b/build/_compileJava_2/net/minecraft/world/entity/animal/allay/Allay$VibrationUser.class new file mode 100644 index 000000000..e26a66abb Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/animal/allay/Allay$VibrationUser.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/animal/allay/Allay.class b/build/_compileJava_2/net/minecraft/world/entity/animal/allay/Allay.class new file mode 100644 index 000000000..3a9b09b5a Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/animal/allay/Allay.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/animal/allay/AllayAi.class b/build/_compileJava_2/net/minecraft/world/entity/animal/allay/AllayAi.class new file mode 100644 index 000000000..ccaeb296d Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/animal/allay/AllayAi.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/animal/allay/package-info.class b/build/_compileJava_2/net/minecraft/world/entity/animal/allay/package-info.class new file mode 100644 index 000000000..226388f2d Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/animal/allay/package-info.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/animal/axolotl/Axolotl$AxolotlGroupData.class b/build/_compileJava_2/net/minecraft/world/entity/animal/axolotl/Axolotl$AxolotlGroupData.class new file mode 100644 index 000000000..f5879386f Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/animal/axolotl/Axolotl$AxolotlGroupData.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/animal/axolotl/Axolotl$AxolotlLookControl.class b/build/_compileJava_2/net/minecraft/world/entity/animal/axolotl/Axolotl$AxolotlLookControl.class new file mode 100644 index 000000000..4a7f77000 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/animal/axolotl/Axolotl$AxolotlLookControl.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/animal/axolotl/Axolotl$AxolotlMoveControl.class b/build/_compileJava_2/net/minecraft/world/entity/animal/axolotl/Axolotl$AxolotlMoveControl.class new file mode 100644 index 000000000..f56b8b45c Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/animal/axolotl/Axolotl$AxolotlMoveControl.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/animal/axolotl/Axolotl$Variant.class b/build/_compileJava_2/net/minecraft/world/entity/animal/axolotl/Axolotl$Variant.class new file mode 100644 index 000000000..40559759b Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/animal/axolotl/Axolotl$Variant.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/animal/axolotl/Axolotl.class b/build/_compileJava_2/net/minecraft/world/entity/animal/axolotl/Axolotl.class new file mode 100644 index 000000000..3b8f458ed Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/animal/axolotl/Axolotl.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/animal/axolotl/AxolotlAi.class b/build/_compileJava_2/net/minecraft/world/entity/animal/axolotl/AxolotlAi.class new file mode 100644 index 000000000..51c45212c Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/animal/axolotl/AxolotlAi.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/animal/axolotl/PlayDead.class b/build/_compileJava_2/net/minecraft/world/entity/animal/axolotl/PlayDead.class new file mode 100644 index 000000000..0831ca616 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/animal/axolotl/PlayDead.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/animal/axolotl/ValidatePlayDead.class b/build/_compileJava_2/net/minecraft/world/entity/animal/axolotl/ValidatePlayDead.class new file mode 100644 index 000000000..011a0fbbd Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/animal/axolotl/ValidatePlayDead.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/animal/axolotl/package-info.class b/build/_compileJava_2/net/minecraft/world/entity/animal/axolotl/package-info.class new file mode 100644 index 000000000..b368e9b02 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/animal/axolotl/package-info.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/animal/camel/Camel$CamelBodyRotationControl.class b/build/_compileJava_2/net/minecraft/world/entity/animal/camel/Camel$CamelBodyRotationControl.class new file mode 100644 index 000000000..4fabe2d08 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/animal/camel/Camel$CamelBodyRotationControl.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/animal/camel/Camel$CamelMoveControl.class b/build/_compileJava_2/net/minecraft/world/entity/animal/camel/Camel$CamelMoveControl.class new file mode 100644 index 000000000..bfdfb631f Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/animal/camel/Camel$CamelMoveControl.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/animal/camel/Camel.class b/build/_compileJava_2/net/minecraft/world/entity/animal/camel/Camel.class new file mode 100644 index 000000000..6e759be8f Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/animal/camel/Camel.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/animal/camel/CamelAi$CamelPanic.class b/build/_compileJava_2/net/minecraft/world/entity/animal/camel/CamelAi$CamelPanic.class new file mode 100644 index 000000000..06d6ad07a Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/animal/camel/CamelAi$CamelPanic.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/animal/camel/CamelAi$RandomSitting.class b/build/_compileJava_2/net/minecraft/world/entity/animal/camel/CamelAi$RandomSitting.class new file mode 100644 index 000000000..17ebe693d Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/animal/camel/CamelAi$RandomSitting.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/animal/camel/CamelAi.class b/build/_compileJava_2/net/minecraft/world/entity/animal/camel/CamelAi.class new file mode 100644 index 000000000..d28c6dbbb Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/animal/camel/CamelAi.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/animal/camel/package-info.class b/build/_compileJava_2/net/minecraft/world/entity/animal/camel/package-info.class new file mode 100644 index 000000000..6369faae8 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/animal/camel/package-info.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/animal/frog/Frog$FrogLookControl.class b/build/_compileJava_2/net/minecraft/world/entity/animal/frog/Frog$FrogLookControl.class new file mode 100644 index 000000000..c4672147d Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/animal/frog/Frog$FrogLookControl.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/animal/frog/Frog$FrogNodeEvaluator.class b/build/_compileJava_2/net/minecraft/world/entity/animal/frog/Frog$FrogNodeEvaluator.class new file mode 100644 index 000000000..7818da49d Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/animal/frog/Frog$FrogNodeEvaluator.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/animal/frog/Frog$FrogPathNavigation.class b/build/_compileJava_2/net/minecraft/world/entity/animal/frog/Frog$FrogPathNavigation.class new file mode 100644 index 000000000..ad432d86f Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/animal/frog/Frog$FrogPathNavigation.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/animal/frog/Frog.class b/build/_compileJava_2/net/minecraft/world/entity/animal/frog/Frog.class new file mode 100644 index 000000000..7f492a58f Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/animal/frog/Frog.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/animal/frog/FrogAi.class b/build/_compileJava_2/net/minecraft/world/entity/animal/frog/FrogAi.class new file mode 100644 index 000000000..196034b63 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/animal/frog/FrogAi.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/animal/frog/ShootTongue$1.class b/build/_compileJava_2/net/minecraft/world/entity/animal/frog/ShootTongue$1.class new file mode 100644 index 000000000..2a6028c7a Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/animal/frog/ShootTongue$1.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/animal/frog/ShootTongue$State.class b/build/_compileJava_2/net/minecraft/world/entity/animal/frog/ShootTongue$State.class new file mode 100644 index 000000000..a1caae800 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/animal/frog/ShootTongue$State.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/animal/frog/ShootTongue.class b/build/_compileJava_2/net/minecraft/world/entity/animal/frog/ShootTongue.class new file mode 100644 index 000000000..9d158b79f Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/animal/frog/ShootTongue.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/animal/frog/Tadpole.class b/build/_compileJava_2/net/minecraft/world/entity/animal/frog/Tadpole.class new file mode 100644 index 000000000..41390c566 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/animal/frog/Tadpole.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/animal/frog/TadpoleAi.class b/build/_compileJava_2/net/minecraft/world/entity/animal/frog/TadpoleAi.class new file mode 100644 index 000000000..a798c96e1 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/animal/frog/TadpoleAi.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/animal/frog/package-info.class b/build/_compileJava_2/net/minecraft/world/entity/animal/frog/package-info.class new file mode 100644 index 000000000..f16efd022 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/animal/frog/package-info.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/animal/goat/Goat.class b/build/_compileJava_2/net/minecraft/world/entity/animal/goat/Goat.class new file mode 100644 index 000000000..7702c3436 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/animal/goat/Goat.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/animal/goat/GoatAi.class b/build/_compileJava_2/net/minecraft/world/entity/animal/goat/GoatAi.class new file mode 100644 index 000000000..fb0101226 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/animal/goat/GoatAi.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/animal/goat/package-info.class b/build/_compileJava_2/net/minecraft/world/entity/animal/goat/package-info.class new file mode 100644 index 000000000..d8caa206f Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/animal/goat/package-info.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/animal/horse/AbstractChestedHorse$1.class b/build/_compileJava_2/net/minecraft/world/entity/animal/horse/AbstractChestedHorse$1.class new file mode 100644 index 000000000..dca44109f Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/animal/horse/AbstractChestedHorse$1.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/animal/horse/AbstractChestedHorse.class b/build/_compileJava_2/net/minecraft/world/entity/animal/horse/AbstractChestedHorse.class new file mode 100644 index 000000000..7294def35 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/animal/horse/AbstractChestedHorse.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/animal/horse/AbstractHorse$1.class b/build/_compileJava_2/net/minecraft/world/entity/animal/horse/AbstractHorse$1.class new file mode 100644 index 000000000..f28a8d4d6 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/animal/horse/AbstractHorse$1.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/animal/horse/AbstractHorse.class b/build/_compileJava_2/net/minecraft/world/entity/animal/horse/AbstractHorse.class new file mode 100644 index 000000000..d65b3eabe Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/animal/horse/AbstractHorse.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/animal/horse/Donkey.class b/build/_compileJava_2/net/minecraft/world/entity/animal/horse/Donkey.class new file mode 100644 index 000000000..1166b0a82 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/animal/horse/Donkey.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/animal/horse/Horse$HorseGroupData.class b/build/_compileJava_2/net/minecraft/world/entity/animal/horse/Horse$HorseGroupData.class new file mode 100644 index 000000000..b242c57b5 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/animal/horse/Horse$HorseGroupData.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/animal/horse/Horse.class b/build/_compileJava_2/net/minecraft/world/entity/animal/horse/Horse.class new file mode 100644 index 000000000..64bd69ba4 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/animal/horse/Horse.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/animal/horse/Llama$LlamaAttackWolfGoal.class b/build/_compileJava_2/net/minecraft/world/entity/animal/horse/Llama$LlamaAttackWolfGoal.class new file mode 100644 index 000000000..73f8ede14 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/animal/horse/Llama$LlamaAttackWolfGoal.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/animal/horse/Llama$LlamaGroupData.class b/build/_compileJava_2/net/minecraft/world/entity/animal/horse/Llama$LlamaGroupData.class new file mode 100644 index 000000000..1cf5bf3d7 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/animal/horse/Llama$LlamaGroupData.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/animal/horse/Llama$LlamaHurtByTargetGoal.class b/build/_compileJava_2/net/minecraft/world/entity/animal/horse/Llama$LlamaHurtByTargetGoal.class new file mode 100644 index 000000000..6cf56c91c Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/animal/horse/Llama$LlamaHurtByTargetGoal.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/animal/horse/Llama$Variant.class b/build/_compileJava_2/net/minecraft/world/entity/animal/horse/Llama$Variant.class new file mode 100644 index 000000000..0939957a6 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/animal/horse/Llama$Variant.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/animal/horse/Llama.class b/build/_compileJava_2/net/minecraft/world/entity/animal/horse/Llama.class new file mode 100644 index 000000000..89407dcad Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/animal/horse/Llama.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/animal/horse/Markings.class b/build/_compileJava_2/net/minecraft/world/entity/animal/horse/Markings.class new file mode 100644 index 000000000..5f36a2748 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/animal/horse/Markings.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/animal/horse/Mule.class b/build/_compileJava_2/net/minecraft/world/entity/animal/horse/Mule.class new file mode 100644 index 000000000..01f1d37d7 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/animal/horse/Mule.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/animal/horse/SkeletonHorse.class b/build/_compileJava_2/net/minecraft/world/entity/animal/horse/SkeletonHorse.class new file mode 100644 index 000000000..851365968 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/animal/horse/SkeletonHorse.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/animal/horse/SkeletonTrapGoal.class b/build/_compileJava_2/net/minecraft/world/entity/animal/horse/SkeletonTrapGoal.class new file mode 100644 index 000000000..5c1d37e81 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/animal/horse/SkeletonTrapGoal.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/animal/horse/TraderLlama$TraderLlamaDefendWanderingTraderGoal.class b/build/_compileJava_2/net/minecraft/world/entity/animal/horse/TraderLlama$TraderLlamaDefendWanderingTraderGoal.class new file mode 100644 index 000000000..3e8b0de13 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/animal/horse/TraderLlama$TraderLlamaDefendWanderingTraderGoal.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/animal/horse/TraderLlama.class b/build/_compileJava_2/net/minecraft/world/entity/animal/horse/TraderLlama.class new file mode 100644 index 000000000..e50fb62a2 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/animal/horse/TraderLlama.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/animal/horse/Variant.class b/build/_compileJava_2/net/minecraft/world/entity/animal/horse/Variant.class new file mode 100644 index 000000000..d2fc95ec2 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/animal/horse/Variant.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/animal/horse/ZombieHorse.class b/build/_compileJava_2/net/minecraft/world/entity/animal/horse/ZombieHorse.class new file mode 100644 index 000000000..05637a3ac Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/animal/horse/ZombieHorse.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/animal/horse/package-info.class b/build/_compileJava_2/net/minecraft/world/entity/animal/horse/package-info.class new file mode 100644 index 000000000..6b8121b0d Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/animal/horse/package-info.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/animal/package-info.class b/build/_compileJava_2/net/minecraft/world/entity/animal/package-info.class new file mode 100644 index 000000000..cb294ad6c Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/animal/package-info.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/animal/sniffer/Sniffer$1.class b/build/_compileJava_2/net/minecraft/world/entity/animal/sniffer/Sniffer$1.class new file mode 100644 index 000000000..375ebf3fa Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/animal/sniffer/Sniffer$1.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/animal/sniffer/Sniffer$State.class b/build/_compileJava_2/net/minecraft/world/entity/animal/sniffer/Sniffer$State.class new file mode 100644 index 000000000..bd22b9e1a Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/animal/sniffer/Sniffer$State.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/animal/sniffer/Sniffer.class b/build/_compileJava_2/net/minecraft/world/entity/animal/sniffer/Sniffer.class new file mode 100644 index 000000000..e59589b1f Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/animal/sniffer/Sniffer.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/animal/sniffer/SnifferAi$1.class b/build/_compileJava_2/net/minecraft/world/entity/animal/sniffer/SnifferAi$1.class new file mode 100644 index 000000000..7387aeb62 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/animal/sniffer/SnifferAi$1.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/animal/sniffer/SnifferAi$2.class b/build/_compileJava_2/net/minecraft/world/entity/animal/sniffer/SnifferAi$2.class new file mode 100644 index 000000000..cf45791fd Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/animal/sniffer/SnifferAi$2.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/animal/sniffer/SnifferAi$3.class b/build/_compileJava_2/net/minecraft/world/entity/animal/sniffer/SnifferAi$3.class new file mode 100644 index 000000000..67f8db7b0 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/animal/sniffer/SnifferAi$3.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/animal/sniffer/SnifferAi$Digging.class b/build/_compileJava_2/net/minecraft/world/entity/animal/sniffer/SnifferAi$Digging.class new file mode 100644 index 000000000..cde565c09 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/animal/sniffer/SnifferAi$Digging.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/animal/sniffer/SnifferAi$FeelingHappy.class b/build/_compileJava_2/net/minecraft/world/entity/animal/sniffer/SnifferAi$FeelingHappy.class new file mode 100644 index 000000000..6d74f1b66 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/animal/sniffer/SnifferAi$FeelingHappy.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/animal/sniffer/SnifferAi$FinishedDigging.class b/build/_compileJava_2/net/minecraft/world/entity/animal/sniffer/SnifferAi$FinishedDigging.class new file mode 100644 index 000000000..d8529c923 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/animal/sniffer/SnifferAi$FinishedDigging.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/animal/sniffer/SnifferAi$Scenting.class b/build/_compileJava_2/net/minecraft/world/entity/animal/sniffer/SnifferAi$Scenting.class new file mode 100644 index 000000000..f3c747a34 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/animal/sniffer/SnifferAi$Scenting.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/animal/sniffer/SnifferAi$Searching.class b/build/_compileJava_2/net/minecraft/world/entity/animal/sniffer/SnifferAi$Searching.class new file mode 100644 index 000000000..dce18dd5d Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/animal/sniffer/SnifferAi$Searching.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/animal/sniffer/SnifferAi$Sniffing.class b/build/_compileJava_2/net/minecraft/world/entity/animal/sniffer/SnifferAi$Sniffing.class new file mode 100644 index 000000000..ad12d3f23 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/animal/sniffer/SnifferAi$Sniffing.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/animal/sniffer/SnifferAi.class b/build/_compileJava_2/net/minecraft/world/entity/animal/sniffer/SnifferAi.class new file mode 100644 index 000000000..0fe8ec017 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/animal/sniffer/SnifferAi.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/boss/EnderDragonPart.class b/build/_compileJava_2/net/minecraft/world/entity/boss/EnderDragonPart.class new file mode 100644 index 000000000..3e68efd18 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/boss/EnderDragonPart.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/boss/enderdragon/EndCrystal.class b/build/_compileJava_2/net/minecraft/world/entity/boss/enderdragon/EndCrystal.class new file mode 100644 index 000000000..82671c827 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/boss/enderdragon/EndCrystal.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/boss/enderdragon/EnderDragon.class b/build/_compileJava_2/net/minecraft/world/entity/boss/enderdragon/EnderDragon.class new file mode 100644 index 000000000..9b89dfe0f Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/boss/enderdragon/EnderDragon.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/boss/enderdragon/package-info.class b/build/_compileJava_2/net/minecraft/world/entity/boss/enderdragon/package-info.class new file mode 100644 index 000000000..5761313a1 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/boss/enderdragon/package-info.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/boss/enderdragon/phases/AbstractDragonPhaseInstance.class b/build/_compileJava_2/net/minecraft/world/entity/boss/enderdragon/phases/AbstractDragonPhaseInstance.class new file mode 100644 index 000000000..a2242c82c Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/boss/enderdragon/phases/AbstractDragonPhaseInstance.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/boss/enderdragon/phases/AbstractDragonSittingPhase.class b/build/_compileJava_2/net/minecraft/world/entity/boss/enderdragon/phases/AbstractDragonSittingPhase.class new file mode 100644 index 000000000..7a1cbbd39 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/boss/enderdragon/phases/AbstractDragonSittingPhase.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/boss/enderdragon/phases/DragonChargePlayerPhase.class b/build/_compileJava_2/net/minecraft/world/entity/boss/enderdragon/phases/DragonChargePlayerPhase.class new file mode 100644 index 000000000..7ebbeb15a Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/boss/enderdragon/phases/DragonChargePlayerPhase.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/boss/enderdragon/phases/DragonDeathPhase.class b/build/_compileJava_2/net/minecraft/world/entity/boss/enderdragon/phases/DragonDeathPhase.class new file mode 100644 index 000000000..36ca8bbe4 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/boss/enderdragon/phases/DragonDeathPhase.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/boss/enderdragon/phases/DragonHoldingPatternPhase.class b/build/_compileJava_2/net/minecraft/world/entity/boss/enderdragon/phases/DragonHoldingPatternPhase.class new file mode 100644 index 000000000..adc233886 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/boss/enderdragon/phases/DragonHoldingPatternPhase.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/boss/enderdragon/phases/DragonHoverPhase.class b/build/_compileJava_2/net/minecraft/world/entity/boss/enderdragon/phases/DragonHoverPhase.class new file mode 100644 index 000000000..32aec793c Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/boss/enderdragon/phases/DragonHoverPhase.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/boss/enderdragon/phases/DragonLandingApproachPhase.class b/build/_compileJava_2/net/minecraft/world/entity/boss/enderdragon/phases/DragonLandingApproachPhase.class new file mode 100644 index 000000000..736252aa7 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/boss/enderdragon/phases/DragonLandingApproachPhase.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/boss/enderdragon/phases/DragonLandingPhase.class b/build/_compileJava_2/net/minecraft/world/entity/boss/enderdragon/phases/DragonLandingPhase.class new file mode 100644 index 000000000..7691a498a Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/boss/enderdragon/phases/DragonLandingPhase.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/boss/enderdragon/phases/DragonPhaseInstance.class b/build/_compileJava_2/net/minecraft/world/entity/boss/enderdragon/phases/DragonPhaseInstance.class new file mode 100644 index 000000000..170a39e41 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/boss/enderdragon/phases/DragonPhaseInstance.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/boss/enderdragon/phases/DragonSittingAttackingPhase.class b/build/_compileJava_2/net/minecraft/world/entity/boss/enderdragon/phases/DragonSittingAttackingPhase.class new file mode 100644 index 000000000..96838bc0b Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/boss/enderdragon/phases/DragonSittingAttackingPhase.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/boss/enderdragon/phases/DragonSittingFlamingPhase.class b/build/_compileJava_2/net/minecraft/world/entity/boss/enderdragon/phases/DragonSittingFlamingPhase.class new file mode 100644 index 000000000..8c7ef47c8 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/boss/enderdragon/phases/DragonSittingFlamingPhase.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/boss/enderdragon/phases/DragonSittingScanningPhase.class b/build/_compileJava_2/net/minecraft/world/entity/boss/enderdragon/phases/DragonSittingScanningPhase.class new file mode 100644 index 000000000..7402e3601 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/boss/enderdragon/phases/DragonSittingScanningPhase.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/boss/enderdragon/phases/DragonStrafePlayerPhase.class b/build/_compileJava_2/net/minecraft/world/entity/boss/enderdragon/phases/DragonStrafePlayerPhase.class new file mode 100644 index 000000000..36f7f7572 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/boss/enderdragon/phases/DragonStrafePlayerPhase.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/boss/enderdragon/phases/DragonTakeoffPhase.class b/build/_compileJava_2/net/minecraft/world/entity/boss/enderdragon/phases/DragonTakeoffPhase.class new file mode 100644 index 000000000..b5c7b72bd Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/boss/enderdragon/phases/DragonTakeoffPhase.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/boss/enderdragon/phases/EnderDragonPhase.class b/build/_compileJava_2/net/minecraft/world/entity/boss/enderdragon/phases/EnderDragonPhase.class new file mode 100644 index 000000000..a6d727d15 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/boss/enderdragon/phases/EnderDragonPhase.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/boss/enderdragon/phases/EnderDragonPhaseManager.class b/build/_compileJava_2/net/minecraft/world/entity/boss/enderdragon/phases/EnderDragonPhaseManager.class new file mode 100644 index 000000000..b49e14193 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/boss/enderdragon/phases/EnderDragonPhaseManager.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/boss/enderdragon/phases/package-info.class b/build/_compileJava_2/net/minecraft/world/entity/boss/enderdragon/phases/package-info.class new file mode 100644 index 000000000..4bef6aaab Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/boss/enderdragon/phases/package-info.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/boss/package-info.class b/build/_compileJava_2/net/minecraft/world/entity/boss/package-info.class new file mode 100644 index 000000000..75e0c7d3b Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/boss/package-info.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/boss/wither/WitherBoss$WitherDoNothingGoal.class b/build/_compileJava_2/net/minecraft/world/entity/boss/wither/WitherBoss$WitherDoNothingGoal.class new file mode 100644 index 000000000..85dd44e86 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/boss/wither/WitherBoss$WitherDoNothingGoal.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/boss/wither/WitherBoss.class b/build/_compileJava_2/net/minecraft/world/entity/boss/wither/WitherBoss.class new file mode 100644 index 000000000..5a682a0b2 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/boss/wither/WitherBoss.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/boss/wither/package-info.class b/build/_compileJava_2/net/minecraft/world/entity/boss/wither/package-info.class new file mode 100644 index 000000000..cfde72b95 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/boss/wither/package-info.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/decoration/ArmorStand$1.class b/build/_compileJava_2/net/minecraft/world/entity/decoration/ArmorStand$1.class new file mode 100644 index 000000000..9f8b68f89 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/decoration/ArmorStand$1.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/decoration/ArmorStand.class b/build/_compileJava_2/net/minecraft/world/entity/decoration/ArmorStand.class new file mode 100644 index 000000000..8f6f6cfaf Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/decoration/ArmorStand.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/decoration/GlowItemFrame.class b/build/_compileJava_2/net/minecraft/world/entity/decoration/GlowItemFrame.class new file mode 100644 index 000000000..bc108d6a6 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/decoration/GlowItemFrame.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/decoration/HangingEntity$1.class b/build/_compileJava_2/net/minecraft/world/entity/decoration/HangingEntity$1.class new file mode 100644 index 000000000..d798978ee Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/decoration/HangingEntity$1.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/decoration/HangingEntity.class b/build/_compileJava_2/net/minecraft/world/entity/decoration/HangingEntity.class new file mode 100644 index 000000000..b5539f7dc Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/decoration/HangingEntity.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/decoration/ItemFrame$1.class b/build/_compileJava_2/net/minecraft/world/entity/decoration/ItemFrame$1.class new file mode 100644 index 000000000..6fab48ff1 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/decoration/ItemFrame$1.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/decoration/ItemFrame$2.class b/build/_compileJava_2/net/minecraft/world/entity/decoration/ItemFrame$2.class new file mode 100644 index 000000000..30d88e8f4 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/decoration/ItemFrame$2.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/decoration/ItemFrame.class b/build/_compileJava_2/net/minecraft/world/entity/decoration/ItemFrame.class new file mode 100644 index 000000000..d91a753d9 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/decoration/ItemFrame.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/decoration/LeashFenceKnotEntity.class b/build/_compileJava_2/net/minecraft/world/entity/decoration/LeashFenceKnotEntity.class new file mode 100644 index 000000000..e9598c48f Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/decoration/LeashFenceKnotEntity.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/decoration/Painting.class b/build/_compileJava_2/net/minecraft/world/entity/decoration/Painting.class new file mode 100644 index 000000000..5a06bdc35 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/decoration/Painting.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/decoration/PaintingVariant.class b/build/_compileJava_2/net/minecraft/world/entity/decoration/PaintingVariant.class new file mode 100644 index 000000000..3c2610b3d Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/decoration/PaintingVariant.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/decoration/PaintingVariants.class b/build/_compileJava_2/net/minecraft/world/entity/decoration/PaintingVariants.class new file mode 100644 index 000000000..5a24edcc3 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/decoration/PaintingVariants.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/decoration/package-info.class b/build/_compileJava_2/net/minecraft/world/entity/decoration/package-info.class new file mode 100644 index 000000000..475b180c4 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/decoration/package-info.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/item/FallingBlockEntity.class b/build/_compileJava_2/net/minecraft/world/entity/item/FallingBlockEntity.class new file mode 100644 index 000000000..0d79e80a8 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/item/FallingBlockEntity.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/item/ItemEntity.class b/build/_compileJava_2/net/minecraft/world/entity/item/ItemEntity.class new file mode 100644 index 000000000..4cb17d4c9 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/item/ItemEntity.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/item/PrimedTnt.class b/build/_compileJava_2/net/minecraft/world/entity/item/PrimedTnt.class new file mode 100644 index 000000000..1a32a026a Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/item/PrimedTnt.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/item/package-info.class b/build/_compileJava_2/net/minecraft/world/entity/item/package-info.class new file mode 100644 index 000000000..c568210c4 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/item/package-info.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/monster/AbstractIllager$IllagerArmPose.class b/build/_compileJava_2/net/minecraft/world/entity/monster/AbstractIllager$IllagerArmPose.class new file mode 100644 index 000000000..3bf2168e9 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/monster/AbstractIllager$IllagerArmPose.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/monster/AbstractIllager$RaiderOpenDoorGoal.class b/build/_compileJava_2/net/minecraft/world/entity/monster/AbstractIllager$RaiderOpenDoorGoal.class new file mode 100644 index 000000000..19fb1d9b4 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/monster/AbstractIllager$RaiderOpenDoorGoal.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/monster/AbstractIllager.class b/build/_compileJava_2/net/minecraft/world/entity/monster/AbstractIllager.class new file mode 100644 index 000000000..d8e642eeb Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/monster/AbstractIllager.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/monster/AbstractSkeleton$1.class b/build/_compileJava_2/net/minecraft/world/entity/monster/AbstractSkeleton$1.class new file mode 100644 index 000000000..6adf8c0b6 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/monster/AbstractSkeleton$1.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/monster/AbstractSkeleton.class b/build/_compileJava_2/net/minecraft/world/entity/monster/AbstractSkeleton.class new file mode 100644 index 000000000..5885d85c0 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/monster/AbstractSkeleton.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/monster/Blaze$BlazeAttackGoal.class b/build/_compileJava_2/net/minecraft/world/entity/monster/Blaze$BlazeAttackGoal.class new file mode 100644 index 000000000..c2f701381 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/monster/Blaze$BlazeAttackGoal.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/monster/Blaze.class b/build/_compileJava_2/net/minecraft/world/entity/monster/Blaze.class new file mode 100644 index 000000000..499a147ff Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/monster/Blaze.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/monster/CaveSpider.class b/build/_compileJava_2/net/minecraft/world/entity/monster/CaveSpider.class new file mode 100644 index 000000000..65a6c204e Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/monster/CaveSpider.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/monster/Creeper.class b/build/_compileJava_2/net/minecraft/world/entity/monster/Creeper.class new file mode 100644 index 000000000..a2bc8574f Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/monster/Creeper.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/monster/CrossbowAttackMob.class b/build/_compileJava_2/net/minecraft/world/entity/monster/CrossbowAttackMob.class new file mode 100644 index 000000000..5ef041afa Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/monster/CrossbowAttackMob.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/monster/Drowned$DrownedAttackGoal.class b/build/_compileJava_2/net/minecraft/world/entity/monster/Drowned$DrownedAttackGoal.class new file mode 100644 index 000000000..a678423c4 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/monster/Drowned$DrownedAttackGoal.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/monster/Drowned$DrownedGoToBeachGoal.class b/build/_compileJava_2/net/minecraft/world/entity/monster/Drowned$DrownedGoToBeachGoal.class new file mode 100644 index 000000000..31409a601 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/monster/Drowned$DrownedGoToBeachGoal.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/monster/Drowned$DrownedGoToWaterGoal.class b/build/_compileJava_2/net/minecraft/world/entity/monster/Drowned$DrownedGoToWaterGoal.class new file mode 100644 index 000000000..e6d2c0ec9 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/monster/Drowned$DrownedGoToWaterGoal.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/monster/Drowned$DrownedMoveControl.class b/build/_compileJava_2/net/minecraft/world/entity/monster/Drowned$DrownedMoveControl.class new file mode 100644 index 000000000..9377c43b9 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/monster/Drowned$DrownedMoveControl.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/monster/Drowned$DrownedSwimUpGoal.class b/build/_compileJava_2/net/minecraft/world/entity/monster/Drowned$DrownedSwimUpGoal.class new file mode 100644 index 000000000..64e2ad59a Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/monster/Drowned$DrownedSwimUpGoal.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/monster/Drowned$DrownedTridentAttackGoal.class b/build/_compileJava_2/net/minecraft/world/entity/monster/Drowned$DrownedTridentAttackGoal.class new file mode 100644 index 000000000..ffeff74eb Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/monster/Drowned$DrownedTridentAttackGoal.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/monster/Drowned.class b/build/_compileJava_2/net/minecraft/world/entity/monster/Drowned.class new file mode 100644 index 000000000..d5f2102e4 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/monster/Drowned.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/monster/ElderGuardian.class b/build/_compileJava_2/net/minecraft/world/entity/monster/ElderGuardian.class new file mode 100644 index 000000000..77bb12128 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/monster/ElderGuardian.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/monster/EnderMan$EndermanFreezeWhenLookedAt.class b/build/_compileJava_2/net/minecraft/world/entity/monster/EnderMan$EndermanFreezeWhenLookedAt.class new file mode 100644 index 000000000..26101bbbe Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/monster/EnderMan$EndermanFreezeWhenLookedAt.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/monster/EnderMan$EndermanLeaveBlockGoal.class b/build/_compileJava_2/net/minecraft/world/entity/monster/EnderMan$EndermanLeaveBlockGoal.class new file mode 100644 index 000000000..c2b5fa3fa Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/monster/EnderMan$EndermanLeaveBlockGoal.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/monster/EnderMan$EndermanLookForPlayerGoal.class b/build/_compileJava_2/net/minecraft/world/entity/monster/EnderMan$EndermanLookForPlayerGoal.class new file mode 100644 index 000000000..e9fafec0e Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/monster/EnderMan$EndermanLookForPlayerGoal.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/monster/EnderMan$EndermanTakeBlockGoal.class b/build/_compileJava_2/net/minecraft/world/entity/monster/EnderMan$EndermanTakeBlockGoal.class new file mode 100644 index 000000000..bbb086981 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/monster/EnderMan$EndermanTakeBlockGoal.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/monster/EnderMan.class b/build/_compileJava_2/net/minecraft/world/entity/monster/EnderMan.class new file mode 100644 index 000000000..aee656d50 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/monster/EnderMan.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/monster/Endermite.class b/build/_compileJava_2/net/minecraft/world/entity/monster/Endermite.class new file mode 100644 index 000000000..897db079a Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/monster/Endermite.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/monster/Enemy.class b/build/_compileJava_2/net/minecraft/world/entity/monster/Enemy.class new file mode 100644 index 000000000..36adef54a Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/monster/Enemy.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/monster/Evoker$EvokerAttackSpellGoal.class b/build/_compileJava_2/net/minecraft/world/entity/monster/Evoker$EvokerAttackSpellGoal.class new file mode 100644 index 000000000..b8011ba1b Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/monster/Evoker$EvokerAttackSpellGoal.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/monster/Evoker$EvokerCastingSpellGoal.class b/build/_compileJava_2/net/minecraft/world/entity/monster/Evoker$EvokerCastingSpellGoal.class new file mode 100644 index 000000000..7379c93f0 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/monster/Evoker$EvokerCastingSpellGoal.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/monster/Evoker$EvokerSummonSpellGoal.class b/build/_compileJava_2/net/minecraft/world/entity/monster/Evoker$EvokerSummonSpellGoal.class new file mode 100644 index 000000000..d233efdf0 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/monster/Evoker$EvokerSummonSpellGoal.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/monster/Evoker$EvokerWololoSpellGoal.class b/build/_compileJava_2/net/minecraft/world/entity/monster/Evoker$EvokerWololoSpellGoal.class new file mode 100644 index 000000000..4137af2cd Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/monster/Evoker$EvokerWololoSpellGoal.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/monster/Evoker.class b/build/_compileJava_2/net/minecraft/world/entity/monster/Evoker.class new file mode 100644 index 000000000..296dbc11f Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/monster/Evoker.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/monster/Ghast$GhastLookGoal.class b/build/_compileJava_2/net/minecraft/world/entity/monster/Ghast$GhastLookGoal.class new file mode 100644 index 000000000..e2a35f01f Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/monster/Ghast$GhastLookGoal.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/monster/Ghast$GhastMoveControl.class b/build/_compileJava_2/net/minecraft/world/entity/monster/Ghast$GhastMoveControl.class new file mode 100644 index 000000000..b537c7eb2 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/monster/Ghast$GhastMoveControl.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/monster/Ghast$GhastShootFireballGoal.class b/build/_compileJava_2/net/minecraft/world/entity/monster/Ghast$GhastShootFireballGoal.class new file mode 100644 index 000000000..3f4e41f4b Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/monster/Ghast$GhastShootFireballGoal.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/monster/Ghast$RandomFloatAroundGoal.class b/build/_compileJava_2/net/minecraft/world/entity/monster/Ghast$RandomFloatAroundGoal.class new file mode 100644 index 000000000..b21dc32ef Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/monster/Ghast$RandomFloatAroundGoal.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/monster/Ghast.class b/build/_compileJava_2/net/minecraft/world/entity/monster/Ghast.class new file mode 100644 index 000000000..2cc5984f1 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/monster/Ghast.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/monster/Giant.class b/build/_compileJava_2/net/minecraft/world/entity/monster/Giant.class new file mode 100644 index 000000000..c84a1514f Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/monster/Giant.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/monster/Guardian$GuardianAttackGoal.class b/build/_compileJava_2/net/minecraft/world/entity/monster/Guardian$GuardianAttackGoal.class new file mode 100644 index 000000000..884103e1d Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/monster/Guardian$GuardianAttackGoal.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/monster/Guardian$GuardianAttackSelector.class b/build/_compileJava_2/net/minecraft/world/entity/monster/Guardian$GuardianAttackSelector.class new file mode 100644 index 000000000..8cb3a1bf6 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/monster/Guardian$GuardianAttackSelector.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/monster/Guardian$GuardianMoveControl.class b/build/_compileJava_2/net/minecraft/world/entity/monster/Guardian$GuardianMoveControl.class new file mode 100644 index 000000000..b064b6803 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/monster/Guardian$GuardianMoveControl.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/monster/Guardian.class b/build/_compileJava_2/net/minecraft/world/entity/monster/Guardian.class new file mode 100644 index 000000000..dd324e9bc Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/monster/Guardian.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/monster/Husk.class b/build/_compileJava_2/net/minecraft/world/entity/monster/Husk.class new file mode 100644 index 000000000..9c7da008f Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/monster/Husk.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/monster/Illusioner$IllusionerBlindnessSpellGoal.class b/build/_compileJava_2/net/minecraft/world/entity/monster/Illusioner$IllusionerBlindnessSpellGoal.class new file mode 100644 index 000000000..aa5fe4d80 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/monster/Illusioner$IllusionerBlindnessSpellGoal.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/monster/Illusioner$IllusionerMirrorSpellGoal.class b/build/_compileJava_2/net/minecraft/world/entity/monster/Illusioner$IllusionerMirrorSpellGoal.class new file mode 100644 index 000000000..473c18894 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/monster/Illusioner$IllusionerMirrorSpellGoal.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/monster/Illusioner.class b/build/_compileJava_2/net/minecraft/world/entity/monster/Illusioner.class new file mode 100644 index 000000000..ccdf7f297 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/monster/Illusioner.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/monster/MagmaCube.class b/build/_compileJava_2/net/minecraft/world/entity/monster/MagmaCube.class new file mode 100644 index 000000000..cba45e305 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/monster/MagmaCube.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/monster/Monster.class b/build/_compileJava_2/net/minecraft/world/entity/monster/Monster.class new file mode 100644 index 000000000..d60ed6269 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/monster/Monster.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/monster/PatrollingMonster$LongDistancePatrolGoal.class b/build/_compileJava_2/net/minecraft/world/entity/monster/PatrollingMonster$LongDistancePatrolGoal.class new file mode 100644 index 000000000..87dbd8f1f Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/monster/PatrollingMonster$LongDistancePatrolGoal.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/monster/PatrollingMonster.class b/build/_compileJava_2/net/minecraft/world/entity/monster/PatrollingMonster.class new file mode 100644 index 000000000..eb322bf8f Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/monster/PatrollingMonster.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/monster/Phantom$AttackPhase.class b/build/_compileJava_2/net/minecraft/world/entity/monster/Phantom$AttackPhase.class new file mode 100644 index 000000000..68684fe7f Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/monster/Phantom$AttackPhase.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/monster/Phantom$PhantomAttackPlayerTargetGoal.class b/build/_compileJava_2/net/minecraft/world/entity/monster/Phantom$PhantomAttackPlayerTargetGoal.class new file mode 100644 index 000000000..c18cd6bf0 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/monster/Phantom$PhantomAttackPlayerTargetGoal.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/monster/Phantom$PhantomAttackStrategyGoal.class b/build/_compileJava_2/net/minecraft/world/entity/monster/Phantom$PhantomAttackStrategyGoal.class new file mode 100644 index 000000000..501085522 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/monster/Phantom$PhantomAttackStrategyGoal.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/monster/Phantom$PhantomBodyRotationControl.class b/build/_compileJava_2/net/minecraft/world/entity/monster/Phantom$PhantomBodyRotationControl.class new file mode 100644 index 000000000..c0acfa938 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/monster/Phantom$PhantomBodyRotationControl.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/monster/Phantom$PhantomCircleAroundAnchorGoal.class b/build/_compileJava_2/net/minecraft/world/entity/monster/Phantom$PhantomCircleAroundAnchorGoal.class new file mode 100644 index 000000000..1a458a769 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/monster/Phantom$PhantomCircleAroundAnchorGoal.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/monster/Phantom$PhantomLookControl.class b/build/_compileJava_2/net/minecraft/world/entity/monster/Phantom$PhantomLookControl.class new file mode 100644 index 000000000..91c2c578e Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/monster/Phantom$PhantomLookControl.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/monster/Phantom$PhantomMoveControl.class b/build/_compileJava_2/net/minecraft/world/entity/monster/Phantom$PhantomMoveControl.class new file mode 100644 index 000000000..eeec1e506 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/monster/Phantom$PhantomMoveControl.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/monster/Phantom$PhantomMoveTargetGoal.class b/build/_compileJava_2/net/minecraft/world/entity/monster/Phantom$PhantomMoveTargetGoal.class new file mode 100644 index 000000000..200689600 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/monster/Phantom$PhantomMoveTargetGoal.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/monster/Phantom$PhantomSweepAttackGoal.class b/build/_compileJava_2/net/minecraft/world/entity/monster/Phantom$PhantomSweepAttackGoal.class new file mode 100644 index 000000000..616f0a53d Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/monster/Phantom$PhantomSweepAttackGoal.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/monster/Phantom.class b/build/_compileJava_2/net/minecraft/world/entity/monster/Phantom.class new file mode 100644 index 000000000..3d28e2b40 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/monster/Phantom.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/monster/Pillager.class b/build/_compileJava_2/net/minecraft/world/entity/monster/Pillager.class new file mode 100644 index 000000000..280b79669 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/monster/Pillager.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/monster/RangedAttackMob.class b/build/_compileJava_2/net/minecraft/world/entity/monster/RangedAttackMob.class new file mode 100644 index 000000000..491bcd8b3 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/monster/RangedAttackMob.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/monster/Ravager$RavagerMeleeAttackGoal.class b/build/_compileJava_2/net/minecraft/world/entity/monster/Ravager$RavagerMeleeAttackGoal.class new file mode 100644 index 000000000..7cd879082 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/monster/Ravager$RavagerMeleeAttackGoal.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/monster/Ravager.class b/build/_compileJava_2/net/minecraft/world/entity/monster/Ravager.class new file mode 100644 index 000000000..9815e7021 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/monster/Ravager.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/monster/Shulker$ShulkerAttackGoal.class b/build/_compileJava_2/net/minecraft/world/entity/monster/Shulker$ShulkerAttackGoal.class new file mode 100644 index 000000000..e28bacf50 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/monster/Shulker$ShulkerAttackGoal.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/monster/Shulker$ShulkerBodyRotationControl.class b/build/_compileJava_2/net/minecraft/world/entity/monster/Shulker$ShulkerBodyRotationControl.class new file mode 100644 index 000000000..ded9f00bf Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/monster/Shulker$ShulkerBodyRotationControl.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/monster/Shulker$ShulkerDefenseAttackGoal.class b/build/_compileJava_2/net/minecraft/world/entity/monster/Shulker$ShulkerDefenseAttackGoal.class new file mode 100644 index 000000000..c6aaba352 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/monster/Shulker$ShulkerDefenseAttackGoal.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/monster/Shulker$ShulkerLookControl.class b/build/_compileJava_2/net/minecraft/world/entity/monster/Shulker$ShulkerLookControl.class new file mode 100644 index 000000000..1b7e8da17 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/monster/Shulker$ShulkerLookControl.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/monster/Shulker$ShulkerNearestAttackGoal.class b/build/_compileJava_2/net/minecraft/world/entity/monster/Shulker$ShulkerNearestAttackGoal.class new file mode 100644 index 000000000..4c1faa921 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/monster/Shulker$ShulkerNearestAttackGoal.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/monster/Shulker$ShulkerPeekGoal.class b/build/_compileJava_2/net/minecraft/world/entity/monster/Shulker$ShulkerPeekGoal.class new file mode 100644 index 000000000..51770e063 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/monster/Shulker$ShulkerPeekGoal.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/monster/Shulker.class b/build/_compileJava_2/net/minecraft/world/entity/monster/Shulker.class new file mode 100644 index 000000000..0042d5322 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/monster/Shulker.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/monster/Silverfish$SilverfishMergeWithStoneGoal.class b/build/_compileJava_2/net/minecraft/world/entity/monster/Silverfish$SilverfishMergeWithStoneGoal.class new file mode 100644 index 000000000..09aab6a2e Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/monster/Silverfish$SilverfishMergeWithStoneGoal.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/monster/Silverfish$SilverfishWakeUpFriendsGoal.class b/build/_compileJava_2/net/minecraft/world/entity/monster/Silverfish$SilverfishWakeUpFriendsGoal.class new file mode 100644 index 000000000..bd14c1f2d Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/monster/Silverfish$SilverfishWakeUpFriendsGoal.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/monster/Silverfish.class b/build/_compileJava_2/net/minecraft/world/entity/monster/Silverfish.class new file mode 100644 index 000000000..24af78a11 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/monster/Silverfish.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/monster/Skeleton.class b/build/_compileJava_2/net/minecraft/world/entity/monster/Skeleton.class new file mode 100644 index 000000000..87b8cc28b Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/monster/Skeleton.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/monster/Slime$SlimeAttackGoal.class b/build/_compileJava_2/net/minecraft/world/entity/monster/Slime$SlimeAttackGoal.class new file mode 100644 index 000000000..8498c8218 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/monster/Slime$SlimeAttackGoal.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/monster/Slime$SlimeFloatGoal.class b/build/_compileJava_2/net/minecraft/world/entity/monster/Slime$SlimeFloatGoal.class new file mode 100644 index 000000000..c657800ca Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/monster/Slime$SlimeFloatGoal.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/monster/Slime$SlimeKeepOnJumpingGoal.class b/build/_compileJava_2/net/minecraft/world/entity/monster/Slime$SlimeKeepOnJumpingGoal.class new file mode 100644 index 000000000..427bc26ce Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/monster/Slime$SlimeKeepOnJumpingGoal.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/monster/Slime$SlimeMoveControl.class b/build/_compileJava_2/net/minecraft/world/entity/monster/Slime$SlimeMoveControl.class new file mode 100644 index 000000000..2932f337e Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/monster/Slime$SlimeMoveControl.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/monster/Slime$SlimeRandomDirectionGoal.class b/build/_compileJava_2/net/minecraft/world/entity/monster/Slime$SlimeRandomDirectionGoal.class new file mode 100644 index 000000000..eac5b71de Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/monster/Slime$SlimeRandomDirectionGoal.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/monster/Slime.class b/build/_compileJava_2/net/minecraft/world/entity/monster/Slime.class new file mode 100644 index 000000000..4d746b86a Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/monster/Slime.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/monster/SpellcasterIllager$IllagerSpell.class b/build/_compileJava_2/net/minecraft/world/entity/monster/SpellcasterIllager$IllagerSpell.class new file mode 100644 index 000000000..3dfc74da6 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/monster/SpellcasterIllager$IllagerSpell.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/monster/SpellcasterIllager$SpellcasterCastingSpellGoal.class b/build/_compileJava_2/net/minecraft/world/entity/monster/SpellcasterIllager$SpellcasterCastingSpellGoal.class new file mode 100644 index 000000000..40a11338a Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/monster/SpellcasterIllager$SpellcasterCastingSpellGoal.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/monster/SpellcasterIllager$SpellcasterUseSpellGoal.class b/build/_compileJava_2/net/minecraft/world/entity/monster/SpellcasterIllager$SpellcasterUseSpellGoal.class new file mode 100644 index 000000000..ebab6a832 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/monster/SpellcasterIllager$SpellcasterUseSpellGoal.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/monster/SpellcasterIllager.class b/build/_compileJava_2/net/minecraft/world/entity/monster/SpellcasterIllager.class new file mode 100644 index 000000000..61803bba7 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/monster/SpellcasterIllager.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/monster/Spider$SpiderAttackGoal.class b/build/_compileJava_2/net/minecraft/world/entity/monster/Spider$SpiderAttackGoal.class new file mode 100644 index 000000000..131b172fe Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/monster/Spider$SpiderAttackGoal.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/monster/Spider$SpiderEffectsGroupData.class b/build/_compileJava_2/net/minecraft/world/entity/monster/Spider$SpiderEffectsGroupData.class new file mode 100644 index 000000000..8a4461deb Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/monster/Spider$SpiderEffectsGroupData.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/monster/Spider$SpiderTargetGoal.class b/build/_compileJava_2/net/minecraft/world/entity/monster/Spider$SpiderTargetGoal.class new file mode 100644 index 000000000..a43fe67d0 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/monster/Spider$SpiderTargetGoal.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/monster/Spider.class b/build/_compileJava_2/net/minecraft/world/entity/monster/Spider.class new file mode 100644 index 000000000..03e72c5b9 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/monster/Spider.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/monster/Stray.class b/build/_compileJava_2/net/minecraft/world/entity/monster/Stray.class new file mode 100644 index 000000000..087ca1bff Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/monster/Stray.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/monster/Strider$StriderGoToLavaGoal.class b/build/_compileJava_2/net/minecraft/world/entity/monster/Strider$StriderGoToLavaGoal.class new file mode 100644 index 000000000..7b4004a11 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/monster/Strider$StriderGoToLavaGoal.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/monster/Strider$StriderPathNavigation.class b/build/_compileJava_2/net/minecraft/world/entity/monster/Strider$StriderPathNavigation.class new file mode 100644 index 000000000..f65f0e8bd Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/monster/Strider$StriderPathNavigation.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/monster/Strider.class b/build/_compileJava_2/net/minecraft/world/entity/monster/Strider.class new file mode 100644 index 000000000..7aa618d94 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/monster/Strider.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/monster/Vex$VexChargeAttackGoal.class b/build/_compileJava_2/net/minecraft/world/entity/monster/Vex$VexChargeAttackGoal.class new file mode 100644 index 000000000..a8d2b7776 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/monster/Vex$VexChargeAttackGoal.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/monster/Vex$VexCopyOwnerTargetGoal.class b/build/_compileJava_2/net/minecraft/world/entity/monster/Vex$VexCopyOwnerTargetGoal.class new file mode 100644 index 000000000..e868d190b Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/monster/Vex$VexCopyOwnerTargetGoal.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/monster/Vex$VexMoveControl.class b/build/_compileJava_2/net/minecraft/world/entity/monster/Vex$VexMoveControl.class new file mode 100644 index 000000000..f1acfffbd Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/monster/Vex$VexMoveControl.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/monster/Vex$VexRandomMoveGoal.class b/build/_compileJava_2/net/minecraft/world/entity/monster/Vex$VexRandomMoveGoal.class new file mode 100644 index 000000000..84e842cac Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/monster/Vex$VexRandomMoveGoal.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/monster/Vex.class b/build/_compileJava_2/net/minecraft/world/entity/monster/Vex.class new file mode 100644 index 000000000..37fd8d577 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/monster/Vex.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/monster/Vindicator$VindicatorBreakDoorGoal.class b/build/_compileJava_2/net/minecraft/world/entity/monster/Vindicator$VindicatorBreakDoorGoal.class new file mode 100644 index 000000000..32bca8f9e Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/monster/Vindicator$VindicatorBreakDoorGoal.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/monster/Vindicator$VindicatorJohnnyAttackGoal.class b/build/_compileJava_2/net/minecraft/world/entity/monster/Vindicator$VindicatorJohnnyAttackGoal.class new file mode 100644 index 000000000..6344bd0b4 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/monster/Vindicator$VindicatorJohnnyAttackGoal.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/monster/Vindicator$VindicatorMeleeAttackGoal.class b/build/_compileJava_2/net/minecraft/world/entity/monster/Vindicator$VindicatorMeleeAttackGoal.class new file mode 100644 index 000000000..5cc1ab807 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/monster/Vindicator$VindicatorMeleeAttackGoal.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/monster/Vindicator.class b/build/_compileJava_2/net/minecraft/world/entity/monster/Vindicator.class new file mode 100644 index 000000000..06c0bbccd Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/monster/Vindicator.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/monster/Witch.class b/build/_compileJava_2/net/minecraft/world/entity/monster/Witch.class new file mode 100644 index 000000000..95a112b80 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/monster/Witch.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/monster/WitherSkeleton.class b/build/_compileJava_2/net/minecraft/world/entity/monster/WitherSkeleton.class new file mode 100644 index 000000000..7d972f0bf Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/monster/WitherSkeleton.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/monster/Zoglin.class b/build/_compileJava_2/net/minecraft/world/entity/monster/Zoglin.class new file mode 100644 index 000000000..c0af7cca1 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/monster/Zoglin.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/monster/Zombie$ZombieAttackTurtleEggGoal.class b/build/_compileJava_2/net/minecraft/world/entity/monster/Zombie$ZombieAttackTurtleEggGoal.class new file mode 100644 index 000000000..e050a9b35 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/monster/Zombie$ZombieAttackTurtleEggGoal.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/monster/Zombie$ZombieGroupData.class b/build/_compileJava_2/net/minecraft/world/entity/monster/Zombie$ZombieGroupData.class new file mode 100644 index 000000000..c59866e3f Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/monster/Zombie$ZombieGroupData.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/monster/Zombie.class b/build/_compileJava_2/net/minecraft/world/entity/monster/Zombie.class new file mode 100644 index 000000000..94026a098 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/monster/Zombie.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/monster/ZombieVillager.class b/build/_compileJava_2/net/minecraft/world/entity/monster/ZombieVillager.class new file mode 100644 index 000000000..3ee6069f9 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/monster/ZombieVillager.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/monster/ZombifiedPiglin.class b/build/_compileJava_2/net/minecraft/world/entity/monster/ZombifiedPiglin.class new file mode 100644 index 000000000..e5ab77e8b Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/monster/ZombifiedPiglin.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/monster/hoglin/Hoglin.class b/build/_compileJava_2/net/minecraft/world/entity/monster/hoglin/Hoglin.class new file mode 100644 index 000000000..84083e90f Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/monster/hoglin/Hoglin.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/monster/hoglin/HoglinAi.class b/build/_compileJava_2/net/minecraft/world/entity/monster/hoglin/HoglinAi.class new file mode 100644 index 000000000..21c200d7f Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/monster/hoglin/HoglinAi.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/monster/hoglin/HoglinBase.class b/build/_compileJava_2/net/minecraft/world/entity/monster/hoglin/HoglinBase.class new file mode 100644 index 000000000..d0d0c2a35 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/monster/hoglin/HoglinBase.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/monster/hoglin/package-info.class b/build/_compileJava_2/net/minecraft/world/entity/monster/hoglin/package-info.class new file mode 100644 index 000000000..58dc8966a Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/monster/hoglin/package-info.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/monster/package-info.class b/build/_compileJava_2/net/minecraft/world/entity/monster/package-info.class new file mode 100644 index 000000000..4881ecf3a Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/monster/package-info.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/monster/piglin/AbstractPiglin.class b/build/_compileJava_2/net/minecraft/world/entity/monster/piglin/AbstractPiglin.class new file mode 100644 index 000000000..24592bcd6 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/monster/piglin/AbstractPiglin.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/monster/piglin/Piglin.class b/build/_compileJava_2/net/minecraft/world/entity/monster/piglin/Piglin.class new file mode 100644 index 000000000..24df8ebe7 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/monster/piglin/Piglin.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/monster/piglin/PiglinAi.class b/build/_compileJava_2/net/minecraft/world/entity/monster/piglin/PiglinAi.class new file mode 100644 index 000000000..521232a44 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/monster/piglin/PiglinAi.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/monster/piglin/PiglinArmPose.class b/build/_compileJava_2/net/minecraft/world/entity/monster/piglin/PiglinArmPose.class new file mode 100644 index 000000000..1b9b6cae8 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/monster/piglin/PiglinArmPose.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/monster/piglin/PiglinBrute.class b/build/_compileJava_2/net/minecraft/world/entity/monster/piglin/PiglinBrute.class new file mode 100644 index 000000000..4f7604497 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/monster/piglin/PiglinBrute.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/monster/piglin/PiglinBruteAi.class b/build/_compileJava_2/net/minecraft/world/entity/monster/piglin/PiglinBruteAi.class new file mode 100644 index 000000000..82a4da6e3 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/monster/piglin/PiglinBruteAi.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/monster/piglin/RememberIfHoglinWasKilled.class b/build/_compileJava_2/net/minecraft/world/entity/monster/piglin/RememberIfHoglinWasKilled.class new file mode 100644 index 000000000..bfc048b5f Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/monster/piglin/RememberIfHoglinWasKilled.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/monster/piglin/StartAdmiringItemIfSeen.class b/build/_compileJava_2/net/minecraft/world/entity/monster/piglin/StartAdmiringItemIfSeen.class new file mode 100644 index 000000000..1ca0b80e5 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/monster/piglin/StartAdmiringItemIfSeen.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/monster/piglin/StartHuntingHoglin.class b/build/_compileJava_2/net/minecraft/world/entity/monster/piglin/StartHuntingHoglin.class new file mode 100644 index 000000000..8de7723aa Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/monster/piglin/StartHuntingHoglin.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/monster/piglin/StopAdmiringIfItemTooFarAway.class b/build/_compileJava_2/net/minecraft/world/entity/monster/piglin/StopAdmiringIfItemTooFarAway.class new file mode 100644 index 000000000..cfafc4aae Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/monster/piglin/StopAdmiringIfItemTooFarAway.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/monster/piglin/StopAdmiringIfTiredOfTryingToReachItem.class b/build/_compileJava_2/net/minecraft/world/entity/monster/piglin/StopAdmiringIfTiredOfTryingToReachItem.class new file mode 100644 index 000000000..7c7bf1454 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/monster/piglin/StopAdmiringIfTiredOfTryingToReachItem.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/monster/piglin/StopHoldingItemIfNoLongerAdmiring.class b/build/_compileJava_2/net/minecraft/world/entity/monster/piglin/StopHoldingItemIfNoLongerAdmiring.class new file mode 100644 index 000000000..94e8dd54e Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/monster/piglin/StopHoldingItemIfNoLongerAdmiring.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/monster/piglin/package-info.class b/build/_compileJava_2/net/minecraft/world/entity/monster/piglin/package-info.class new file mode 100644 index 000000000..68e371d22 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/monster/piglin/package-info.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/monster/warden/AngerLevel.class b/build/_compileJava_2/net/minecraft/world/entity/monster/warden/AngerLevel.class new file mode 100644 index 000000000..32e8fdd3f Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/monster/warden/AngerLevel.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/monster/warden/AngerManagement$1.class b/build/_compileJava_2/net/minecraft/world/entity/monster/warden/AngerManagement$1.class new file mode 100644 index 000000000..dfe542d46 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/monster/warden/AngerManagement$1.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/monster/warden/AngerManagement$Sorter.class b/build/_compileJava_2/net/minecraft/world/entity/monster/warden/AngerManagement$Sorter.class new file mode 100644 index 000000000..be0a836e0 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/monster/warden/AngerManagement$Sorter.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/monster/warden/AngerManagement.class b/build/_compileJava_2/net/minecraft/world/entity/monster/warden/AngerManagement.class new file mode 100644 index 000000000..ecc35002d Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/monster/warden/AngerManagement.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/monster/warden/Warden$1$1.class b/build/_compileJava_2/net/minecraft/world/entity/monster/warden/Warden$1$1.class new file mode 100644 index 000000000..e38e17ea8 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/monster/warden/Warden$1$1.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/monster/warden/Warden$1.class b/build/_compileJava_2/net/minecraft/world/entity/monster/warden/Warden$1.class new file mode 100644 index 000000000..c09e9e50e Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/monster/warden/Warden$1.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/monster/warden/Warden$2.class b/build/_compileJava_2/net/minecraft/world/entity/monster/warden/Warden$2.class new file mode 100644 index 000000000..7c37d1f0b Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/monster/warden/Warden$2.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/monster/warden/Warden$VibrationUser.class b/build/_compileJava_2/net/minecraft/world/entity/monster/warden/Warden$VibrationUser.class new file mode 100644 index 000000000..4ee2a3560 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/monster/warden/Warden$VibrationUser.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/monster/warden/Warden.class b/build/_compileJava_2/net/minecraft/world/entity/monster/warden/Warden.class new file mode 100644 index 000000000..02488a465 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/monster/warden/Warden.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/monster/warden/WardenAi.class b/build/_compileJava_2/net/minecraft/world/entity/monster/warden/WardenAi.class new file mode 100644 index 000000000..8bb1bbf35 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/monster/warden/WardenAi.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/monster/warden/WardenSpawnTracker.class b/build/_compileJava_2/net/minecraft/world/entity/monster/warden/WardenSpawnTracker.class new file mode 100644 index 000000000..dfd2c7cac Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/monster/warden/WardenSpawnTracker.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/monster/warden/package-info.class b/build/_compileJava_2/net/minecraft/world/entity/monster/warden/package-info.class new file mode 100644 index 000000000..f1f9ddb0e Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/monster/warden/package-info.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/npc/AbstractVillager.class b/build/_compileJava_2/net/minecraft/world/entity/npc/AbstractVillager.class new file mode 100644 index 000000000..8e875b12d Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/npc/AbstractVillager.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/npc/CatSpawner.class b/build/_compileJava_2/net/minecraft/world/entity/npc/CatSpawner.class new file mode 100644 index 000000000..4a0f8e2c9 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/npc/CatSpawner.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/npc/ClientSideMerchant.class b/build/_compileJava_2/net/minecraft/world/entity/npc/ClientSideMerchant.class new file mode 100644 index 000000000..37c4f634b Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/npc/ClientSideMerchant.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/npc/InventoryCarrier.class b/build/_compileJava_2/net/minecraft/world/entity/npc/InventoryCarrier.class new file mode 100644 index 000000000..166faa3a9 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/npc/InventoryCarrier.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/npc/Npc.class b/build/_compileJava_2/net/minecraft/world/entity/npc/Npc.class new file mode 100644 index 000000000..0af1fd127 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/npc/Npc.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/npc/Villager.class b/build/_compileJava_2/net/minecraft/world/entity/npc/Villager.class new file mode 100644 index 000000000..c5eafd7ef Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/npc/Villager.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/npc/VillagerData.class b/build/_compileJava_2/net/minecraft/world/entity/npc/VillagerData.class new file mode 100644 index 000000000..cebc340b5 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/npc/VillagerData.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/npc/VillagerDataHolder.class b/build/_compileJava_2/net/minecraft/world/entity/npc/VillagerDataHolder.class new file mode 100644 index 000000000..518a58f91 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/npc/VillagerDataHolder.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/npc/VillagerProfession.class b/build/_compileJava_2/net/minecraft/world/entity/npc/VillagerProfession.class new file mode 100644 index 000000000..9db84ee28 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/npc/VillagerProfession.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/npc/VillagerTrades$DyedArmorForEmeralds.class b/build/_compileJava_2/net/minecraft/world/entity/npc/VillagerTrades$DyedArmorForEmeralds.class new file mode 100644 index 000000000..c00e75640 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/npc/VillagerTrades$DyedArmorForEmeralds.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/npc/VillagerTrades$EmeraldForItems.class b/build/_compileJava_2/net/minecraft/world/entity/npc/VillagerTrades$EmeraldForItems.class new file mode 100644 index 000000000..090f3cf16 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/npc/VillagerTrades$EmeraldForItems.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/npc/VillagerTrades$EmeraldsForVillagerTypeItem.class b/build/_compileJava_2/net/minecraft/world/entity/npc/VillagerTrades$EmeraldsForVillagerTypeItem.class new file mode 100644 index 000000000..212ee1e71 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/npc/VillagerTrades$EmeraldsForVillagerTypeItem.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/npc/VillagerTrades$EnchantBookForEmeralds.class b/build/_compileJava_2/net/minecraft/world/entity/npc/VillagerTrades$EnchantBookForEmeralds.class new file mode 100644 index 000000000..1708e2a87 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/npc/VillagerTrades$EnchantBookForEmeralds.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/npc/VillagerTrades$EnchantedItemForEmeralds.class b/build/_compileJava_2/net/minecraft/world/entity/npc/VillagerTrades$EnchantedItemForEmeralds.class new file mode 100644 index 000000000..bfa8b4033 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/npc/VillagerTrades$EnchantedItemForEmeralds.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/npc/VillagerTrades$ItemListing.class b/build/_compileJava_2/net/minecraft/world/entity/npc/VillagerTrades$ItemListing.class new file mode 100644 index 000000000..e6ac0078a Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/npc/VillagerTrades$ItemListing.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/npc/VillagerTrades$ItemsAndEmeraldsToItems.class b/build/_compileJava_2/net/minecraft/world/entity/npc/VillagerTrades$ItemsAndEmeraldsToItems.class new file mode 100644 index 000000000..b3b027155 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/npc/VillagerTrades$ItemsAndEmeraldsToItems.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/npc/VillagerTrades$ItemsForEmeralds.class b/build/_compileJava_2/net/minecraft/world/entity/npc/VillagerTrades$ItemsForEmeralds.class new file mode 100644 index 000000000..1fb58e641 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/npc/VillagerTrades$ItemsForEmeralds.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/npc/VillagerTrades$SuspiciousStewForEmerald.class b/build/_compileJava_2/net/minecraft/world/entity/npc/VillagerTrades$SuspiciousStewForEmerald.class new file mode 100644 index 000000000..23d2ddeef Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/npc/VillagerTrades$SuspiciousStewForEmerald.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/npc/VillagerTrades$TippedArrowForItemsAndEmeralds.class b/build/_compileJava_2/net/minecraft/world/entity/npc/VillagerTrades$TippedArrowForItemsAndEmeralds.class new file mode 100644 index 000000000..353dbb92b Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/npc/VillagerTrades$TippedArrowForItemsAndEmeralds.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/npc/VillagerTrades$TreasureMapForEmeralds.class b/build/_compileJava_2/net/minecraft/world/entity/npc/VillagerTrades$TreasureMapForEmeralds.class new file mode 100644 index 000000000..031649179 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/npc/VillagerTrades$TreasureMapForEmeralds.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/npc/VillagerTrades.class b/build/_compileJava_2/net/minecraft/world/entity/npc/VillagerTrades.class new file mode 100644 index 000000000..ad165e490 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/npc/VillagerTrades.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/npc/VillagerType.class b/build/_compileJava_2/net/minecraft/world/entity/npc/VillagerType.class new file mode 100644 index 000000000..3881d4e9d Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/npc/VillagerType.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/npc/WanderingTrader$WanderToPositionGoal.class b/build/_compileJava_2/net/minecraft/world/entity/npc/WanderingTrader$WanderToPositionGoal.class new file mode 100644 index 000000000..e74089e17 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/npc/WanderingTrader$WanderToPositionGoal.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/npc/WanderingTrader.class b/build/_compileJava_2/net/minecraft/world/entity/npc/WanderingTrader.class new file mode 100644 index 000000000..15961652a Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/npc/WanderingTrader.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/npc/WanderingTraderSpawner.class b/build/_compileJava_2/net/minecraft/world/entity/npc/WanderingTraderSpawner.class new file mode 100644 index 000000000..42a601817 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/npc/WanderingTraderSpawner.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/npc/package-info.class b/build/_compileJava_2/net/minecraft/world/entity/npc/package-info.class new file mode 100644 index 000000000..a3b1b47a3 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/npc/package-info.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/package-info.class b/build/_compileJava_2/net/minecraft/world/entity/package-info.class new file mode 100644 index 000000000..0f589bc29 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/package-info.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/player/Abilities.class b/build/_compileJava_2/net/minecraft/world/entity/player/Abilities.class new file mode 100644 index 000000000..b438fef2f Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/player/Abilities.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/player/ChatVisiblity.class b/build/_compileJava_2/net/minecraft/world/entity/player/ChatVisiblity.class new file mode 100644 index 000000000..6608734e1 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/player/ChatVisiblity.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/player/Inventory.class b/build/_compileJava_2/net/minecraft/world/entity/player/Inventory.class new file mode 100644 index 000000000..0cd6b20fd Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/player/Inventory.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/player/Player$1.class b/build/_compileJava_2/net/minecraft/world/entity/player/Player$1.class new file mode 100644 index 000000000..51c45bad0 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/player/Player$1.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/player/Player$BedSleepingProblem.class b/build/_compileJava_2/net/minecraft/world/entity/player/Player$BedSleepingProblem.class new file mode 100644 index 000000000..3c330418e Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/player/Player$BedSleepingProblem.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/player/Player.class b/build/_compileJava_2/net/minecraft/world/entity/player/Player.class new file mode 100644 index 000000000..b44cc6a2f Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/player/Player.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/player/PlayerModelPart.class b/build/_compileJava_2/net/minecraft/world/entity/player/PlayerModelPart.class new file mode 100644 index 000000000..10d17c8a5 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/player/PlayerModelPart.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/player/ProfileKeyPair.class b/build/_compileJava_2/net/minecraft/world/entity/player/ProfileKeyPair.class new file mode 100644 index 000000000..deaa76511 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/player/ProfileKeyPair.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/player/ProfilePublicKey$Data.class b/build/_compileJava_2/net/minecraft/world/entity/player/ProfilePublicKey$Data.class new file mode 100644 index 000000000..e24993769 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/player/ProfilePublicKey$Data.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/player/ProfilePublicKey$ValidationException.class b/build/_compileJava_2/net/minecraft/world/entity/player/ProfilePublicKey$ValidationException.class new file mode 100644 index 000000000..377e06fe9 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/player/ProfilePublicKey$ValidationException.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/player/ProfilePublicKey.class b/build/_compileJava_2/net/minecraft/world/entity/player/ProfilePublicKey.class new file mode 100644 index 000000000..aa1c5bfa6 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/player/ProfilePublicKey.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/player/StackedContents$RecipePicker.class b/build/_compileJava_2/net/minecraft/world/entity/player/StackedContents$RecipePicker.class new file mode 100644 index 000000000..8a0575ca6 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/player/StackedContents$RecipePicker.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/player/StackedContents.class b/build/_compileJava_2/net/minecraft/world/entity/player/StackedContents.class new file mode 100644 index 000000000..084a92571 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/player/StackedContents.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/player/package-info.class b/build/_compileJava_2/net/minecraft/world/entity/player/package-info.class new file mode 100644 index 000000000..5e939e63f Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/player/package-info.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/projectile/AbstractArrow$1.class b/build/_compileJava_2/net/minecraft/world/entity/projectile/AbstractArrow$1.class new file mode 100644 index 000000000..a4b708d87 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/projectile/AbstractArrow$1.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/projectile/AbstractArrow$Pickup.class b/build/_compileJava_2/net/minecraft/world/entity/projectile/AbstractArrow$Pickup.class new file mode 100644 index 000000000..af54d4811 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/projectile/AbstractArrow$Pickup.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/projectile/AbstractArrow.class b/build/_compileJava_2/net/minecraft/world/entity/projectile/AbstractArrow.class new file mode 100644 index 000000000..46af7fd46 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/projectile/AbstractArrow.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/projectile/AbstractHurtingProjectile.class b/build/_compileJava_2/net/minecraft/world/entity/projectile/AbstractHurtingProjectile.class new file mode 100644 index 000000000..17afe9dd1 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/projectile/AbstractHurtingProjectile.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/projectile/Arrow.class b/build/_compileJava_2/net/minecraft/world/entity/projectile/Arrow.class new file mode 100644 index 000000000..930856bbf Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/projectile/Arrow.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/projectile/DragonFireball.class b/build/_compileJava_2/net/minecraft/world/entity/projectile/DragonFireball.class new file mode 100644 index 000000000..b9aa50a84 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/projectile/DragonFireball.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/projectile/EvokerFangs.class b/build/_compileJava_2/net/minecraft/world/entity/projectile/EvokerFangs.class new file mode 100644 index 000000000..fed7094fc Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/projectile/EvokerFangs.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/projectile/EyeOfEnder.class b/build/_compileJava_2/net/minecraft/world/entity/projectile/EyeOfEnder.class new file mode 100644 index 000000000..40cfa9c2a Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/projectile/EyeOfEnder.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/projectile/Fireball.class b/build/_compileJava_2/net/minecraft/world/entity/projectile/Fireball.class new file mode 100644 index 000000000..75bbefb80 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/projectile/Fireball.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/projectile/FireworkRocketEntity.class b/build/_compileJava_2/net/minecraft/world/entity/projectile/FireworkRocketEntity.class new file mode 100644 index 000000000..15f949f2f Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/projectile/FireworkRocketEntity.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/projectile/FishingHook$1.class b/build/_compileJava_2/net/minecraft/world/entity/projectile/FishingHook$1.class new file mode 100644 index 000000000..e02103dc9 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/projectile/FishingHook$1.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/projectile/FishingHook$FishHookState.class b/build/_compileJava_2/net/minecraft/world/entity/projectile/FishingHook$FishHookState.class new file mode 100644 index 000000000..aed14c9b1 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/projectile/FishingHook$FishHookState.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/projectile/FishingHook$OpenWaterType.class b/build/_compileJava_2/net/minecraft/world/entity/projectile/FishingHook$OpenWaterType.class new file mode 100644 index 000000000..4e868af94 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/projectile/FishingHook$OpenWaterType.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/projectile/FishingHook.class b/build/_compileJava_2/net/minecraft/world/entity/projectile/FishingHook.class new file mode 100644 index 000000000..8b2127ad2 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/projectile/FishingHook.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/projectile/ItemSupplier.class b/build/_compileJava_2/net/minecraft/world/entity/projectile/ItemSupplier.class new file mode 100644 index 000000000..dfd374a9e Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/projectile/ItemSupplier.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/projectile/LargeFireball.class b/build/_compileJava_2/net/minecraft/world/entity/projectile/LargeFireball.class new file mode 100644 index 000000000..33604549d Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/projectile/LargeFireball.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/projectile/LlamaSpit.class b/build/_compileJava_2/net/minecraft/world/entity/projectile/LlamaSpit.class new file mode 100644 index 000000000..ec8ada045 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/projectile/LlamaSpit.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/projectile/Projectile.class b/build/_compileJava_2/net/minecraft/world/entity/projectile/Projectile.class new file mode 100644 index 000000000..9009fefde Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/projectile/Projectile.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/projectile/ProjectileUtil.class b/build/_compileJava_2/net/minecraft/world/entity/projectile/ProjectileUtil.class new file mode 100644 index 000000000..edd403fbb Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/projectile/ProjectileUtil.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/projectile/ShulkerBullet.class b/build/_compileJava_2/net/minecraft/world/entity/projectile/ShulkerBullet.class new file mode 100644 index 000000000..3337a4750 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/projectile/ShulkerBullet.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/projectile/SmallFireball.class b/build/_compileJava_2/net/minecraft/world/entity/projectile/SmallFireball.class new file mode 100644 index 000000000..afa78e5b2 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/projectile/SmallFireball.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/projectile/Snowball.class b/build/_compileJava_2/net/minecraft/world/entity/projectile/Snowball.class new file mode 100644 index 000000000..a57b96aa7 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/projectile/Snowball.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/projectile/SpectralArrow.class b/build/_compileJava_2/net/minecraft/world/entity/projectile/SpectralArrow.class new file mode 100644 index 000000000..7a0ae0361 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/projectile/SpectralArrow.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/projectile/ThrowableItemProjectile.class b/build/_compileJava_2/net/minecraft/world/entity/projectile/ThrowableItemProjectile.class new file mode 100644 index 000000000..7fbb22c00 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/projectile/ThrowableItemProjectile.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/projectile/ThrowableProjectile.class b/build/_compileJava_2/net/minecraft/world/entity/projectile/ThrowableProjectile.class new file mode 100644 index 000000000..c504dde35 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/projectile/ThrowableProjectile.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/projectile/ThrownEgg.class b/build/_compileJava_2/net/minecraft/world/entity/projectile/ThrownEgg.class new file mode 100644 index 000000000..f86aeb211 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/projectile/ThrownEgg.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/projectile/ThrownEnderpearl.class b/build/_compileJava_2/net/minecraft/world/entity/projectile/ThrownEnderpearl.class new file mode 100644 index 000000000..e83f2d8cb Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/projectile/ThrownEnderpearl.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/projectile/ThrownExperienceBottle.class b/build/_compileJava_2/net/minecraft/world/entity/projectile/ThrownExperienceBottle.class new file mode 100644 index 000000000..10c55d288 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/projectile/ThrownExperienceBottle.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/projectile/ThrownPotion.class b/build/_compileJava_2/net/minecraft/world/entity/projectile/ThrownPotion.class new file mode 100644 index 000000000..ec7d1e159 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/projectile/ThrownPotion.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/projectile/ThrownTrident.class b/build/_compileJava_2/net/minecraft/world/entity/projectile/ThrownTrident.class new file mode 100644 index 000000000..7f827f5e8 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/projectile/ThrownTrident.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/projectile/WitherSkull.class b/build/_compileJava_2/net/minecraft/world/entity/projectile/WitherSkull.class new file mode 100644 index 000000000..6d8825269 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/projectile/WitherSkull.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/projectile/package-info.class b/build/_compileJava_2/net/minecraft/world/entity/projectile/package-info.class new file mode 100644 index 000000000..0a0f19193 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/projectile/package-info.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/raid/Raid$1.class b/build/_compileJava_2/net/minecraft/world/entity/raid/Raid$1.class new file mode 100644 index 000000000..192414882 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/raid/Raid$1.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/raid/Raid$RaidStatus.class b/build/_compileJava_2/net/minecraft/world/entity/raid/Raid$RaidStatus.class new file mode 100644 index 000000000..c9ac719e9 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/raid/Raid$RaidStatus.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/raid/Raid$RaiderType.class b/build/_compileJava_2/net/minecraft/world/entity/raid/Raid$RaiderType.class new file mode 100644 index 000000000..209d69fe3 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/raid/Raid$RaiderType.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/raid/Raid.class b/build/_compileJava_2/net/minecraft/world/entity/raid/Raid.class new file mode 100644 index 000000000..3ce367263 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/raid/Raid.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/raid/Raider$HoldGroundAttackGoal.class b/build/_compileJava_2/net/minecraft/world/entity/raid/Raider$HoldGroundAttackGoal.class new file mode 100644 index 000000000..919647272 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/raid/Raider$HoldGroundAttackGoal.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/raid/Raider$ObtainRaidLeaderBannerGoal.class b/build/_compileJava_2/net/minecraft/world/entity/raid/Raider$ObtainRaidLeaderBannerGoal.class new file mode 100644 index 000000000..c9bfec255 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/raid/Raider$ObtainRaidLeaderBannerGoal.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/raid/Raider$RaiderCelebration.class b/build/_compileJava_2/net/minecraft/world/entity/raid/Raider$RaiderCelebration.class new file mode 100644 index 000000000..0f8d6a5ed Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/raid/Raider$RaiderCelebration.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/raid/Raider$RaiderMoveThroughVillageGoal.class b/build/_compileJava_2/net/minecraft/world/entity/raid/Raider$RaiderMoveThroughVillageGoal.class new file mode 100644 index 000000000..e9d2732eb Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/raid/Raider$RaiderMoveThroughVillageGoal.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/raid/Raider.class b/build/_compileJava_2/net/minecraft/world/entity/raid/Raider.class new file mode 100644 index 000000000..5ab98dee3 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/raid/Raider.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/raid/Raids.class b/build/_compileJava_2/net/minecraft/world/entity/raid/Raids.class new file mode 100644 index 000000000..03c340a87 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/raid/Raids.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/raid/package-info.class b/build/_compileJava_2/net/minecraft/world/entity/raid/package-info.class new file mode 100644 index 000000000..790266d5b Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/raid/package-info.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/schedule/Activity.class b/build/_compileJava_2/net/minecraft/world/entity/schedule/Activity.class new file mode 100644 index 000000000..4eff0c209 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/schedule/Activity.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/schedule/Keyframe.class b/build/_compileJava_2/net/minecraft/world/entity/schedule/Keyframe.class new file mode 100644 index 000000000..0b3962435 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/schedule/Keyframe.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/schedule/Schedule.class b/build/_compileJava_2/net/minecraft/world/entity/schedule/Schedule.class new file mode 100644 index 000000000..c58357f5a Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/schedule/Schedule.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/schedule/ScheduleBuilder$ActivityTransition.class b/build/_compileJava_2/net/minecraft/world/entity/schedule/ScheduleBuilder$ActivityTransition.class new file mode 100644 index 000000000..09e8ee6ed Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/schedule/ScheduleBuilder$ActivityTransition.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/schedule/ScheduleBuilder.class b/build/_compileJava_2/net/minecraft/world/entity/schedule/ScheduleBuilder.class new file mode 100644 index 000000000..f55edf210 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/schedule/ScheduleBuilder.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/schedule/Timeline.class b/build/_compileJava_2/net/minecraft/world/entity/schedule/Timeline.class new file mode 100644 index 000000000..1b8ef663c Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/schedule/Timeline.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/schedule/package-info.class b/build/_compileJava_2/net/minecraft/world/entity/schedule/package-info.class new file mode 100644 index 000000000..eacc76bb6 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/schedule/package-info.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/vehicle/AbstractMinecart$1.class b/build/_compileJava_2/net/minecraft/world/entity/vehicle/AbstractMinecart$1.class new file mode 100644 index 000000000..71fd135b3 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/vehicle/AbstractMinecart$1.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/vehicle/AbstractMinecart$Type.class b/build/_compileJava_2/net/minecraft/world/entity/vehicle/AbstractMinecart$Type.class new file mode 100644 index 000000000..777cd6a9a Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/vehicle/AbstractMinecart$Type.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/vehicle/AbstractMinecart.class b/build/_compileJava_2/net/minecraft/world/entity/vehicle/AbstractMinecart.class new file mode 100644 index 000000000..543c0df9c Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/vehicle/AbstractMinecart.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/vehicle/AbstractMinecartContainer.class b/build/_compileJava_2/net/minecraft/world/entity/vehicle/AbstractMinecartContainer.class new file mode 100644 index 000000000..b16989b82 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/vehicle/AbstractMinecartContainer.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/vehicle/Boat$1.class b/build/_compileJava_2/net/minecraft/world/entity/vehicle/Boat$1.class new file mode 100644 index 000000000..f87d1d305 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/vehicle/Boat$1.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/vehicle/Boat$Status.class b/build/_compileJava_2/net/minecraft/world/entity/vehicle/Boat$Status.class new file mode 100644 index 000000000..ba569f07c Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/vehicle/Boat$Status.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/vehicle/Boat$Type.class b/build/_compileJava_2/net/minecraft/world/entity/vehicle/Boat$Type.class new file mode 100644 index 000000000..553c77c5d Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/vehicle/Boat$Type.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/vehicle/Boat.class b/build/_compileJava_2/net/minecraft/world/entity/vehicle/Boat.class new file mode 100644 index 000000000..32e63921a Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/vehicle/Boat.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/vehicle/ChestBoat$1.class b/build/_compileJava_2/net/minecraft/world/entity/vehicle/ChestBoat$1.class new file mode 100644 index 000000000..19f2e1bd7 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/vehicle/ChestBoat$1.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/vehicle/ChestBoat.class b/build/_compileJava_2/net/minecraft/world/entity/vehicle/ChestBoat.class new file mode 100644 index 000000000..ac09c8439 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/vehicle/ChestBoat.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/vehicle/ContainerEntity$1.class b/build/_compileJava_2/net/minecraft/world/entity/vehicle/ContainerEntity$1.class new file mode 100644 index 000000000..49236462e Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/vehicle/ContainerEntity$1.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/vehicle/ContainerEntity.class b/build/_compileJava_2/net/minecraft/world/entity/vehicle/ContainerEntity.class new file mode 100644 index 000000000..8f4d1c4f1 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/vehicle/ContainerEntity.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/vehicle/DismountHelper.class b/build/_compileJava_2/net/minecraft/world/entity/vehicle/DismountHelper.class new file mode 100644 index 000000000..ca3b34a94 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/vehicle/DismountHelper.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/vehicle/Minecart.class b/build/_compileJava_2/net/minecraft/world/entity/vehicle/Minecart.class new file mode 100644 index 000000000..a7dd889d3 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/vehicle/Minecart.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/vehicle/MinecartChest.class b/build/_compileJava_2/net/minecraft/world/entity/vehicle/MinecartChest.class new file mode 100644 index 000000000..ac6968d7f Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/vehicle/MinecartChest.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/vehicle/MinecartCommandBlock$MinecartCommandBase.class b/build/_compileJava_2/net/minecraft/world/entity/vehicle/MinecartCommandBlock$MinecartCommandBase.class new file mode 100644 index 000000000..9380498df Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/vehicle/MinecartCommandBlock$MinecartCommandBase.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/vehicle/MinecartCommandBlock.class b/build/_compileJava_2/net/minecraft/world/entity/vehicle/MinecartCommandBlock.class new file mode 100644 index 000000000..b743b2751 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/vehicle/MinecartCommandBlock.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/vehicle/MinecartFurnace.class b/build/_compileJava_2/net/minecraft/world/entity/vehicle/MinecartFurnace.class new file mode 100644 index 000000000..43ede31b6 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/vehicle/MinecartFurnace.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/vehicle/MinecartHopper.class b/build/_compileJava_2/net/minecraft/world/entity/vehicle/MinecartHopper.class new file mode 100644 index 000000000..23a62b631 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/vehicle/MinecartHopper.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/vehicle/MinecartSpawner$1.class b/build/_compileJava_2/net/minecraft/world/entity/vehicle/MinecartSpawner$1.class new file mode 100644 index 000000000..3ddd856a4 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/vehicle/MinecartSpawner$1.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/vehicle/MinecartSpawner.class b/build/_compileJava_2/net/minecraft/world/entity/vehicle/MinecartSpawner.class new file mode 100644 index 000000000..080c72861 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/vehicle/MinecartSpawner.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/vehicle/MinecartTNT.class b/build/_compileJava_2/net/minecraft/world/entity/vehicle/MinecartTNT.class new file mode 100644 index 000000000..a17a32886 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/vehicle/MinecartTNT.class differ diff --git a/build/_compileJava_2/net/minecraft/world/entity/vehicle/package-info.class b/build/_compileJava_2/net/minecraft/world/entity/vehicle/package-info.class new file mode 100644 index 000000000..444a97e69 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/entity/vehicle/package-info.class differ diff --git a/build/_compileJava_2/net/minecraft/world/flag/FeatureElement.class b/build/_compileJava_2/net/minecraft/world/flag/FeatureElement.class new file mode 100644 index 000000000..02a557106 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/flag/FeatureElement.class differ diff --git a/build/_compileJava_2/net/minecraft/world/flag/FeatureFlag.class b/build/_compileJava_2/net/minecraft/world/flag/FeatureFlag.class new file mode 100644 index 000000000..86e49a77a Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/flag/FeatureFlag.class differ diff --git a/build/_compileJava_2/net/minecraft/world/flag/FeatureFlagRegistry$Builder.class b/build/_compileJava_2/net/minecraft/world/flag/FeatureFlagRegistry$Builder.class new file mode 100644 index 000000000..5ad48107c Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/flag/FeatureFlagRegistry$Builder.class differ diff --git a/build/_compileJava_2/net/minecraft/world/flag/FeatureFlagRegistry.class b/build/_compileJava_2/net/minecraft/world/flag/FeatureFlagRegistry.class new file mode 100644 index 000000000..3d5ad2611 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/flag/FeatureFlagRegistry.class differ diff --git a/build/_compileJava_2/net/minecraft/world/flag/FeatureFlagSet.class b/build/_compileJava_2/net/minecraft/world/flag/FeatureFlagSet.class new file mode 100644 index 000000000..100e04167 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/flag/FeatureFlagSet.class differ diff --git a/build/_compileJava_2/net/minecraft/world/flag/FeatureFlagUniverse.class b/build/_compileJava_2/net/minecraft/world/flag/FeatureFlagUniverse.class new file mode 100644 index 000000000..10fecd268 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/flag/FeatureFlagUniverse.class differ diff --git a/build/_compileJava_2/net/minecraft/world/flag/FeatureFlags.class b/build/_compileJava_2/net/minecraft/world/flag/FeatureFlags.class new file mode 100644 index 000000000..940b1b386 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/flag/FeatureFlags.class differ diff --git a/build/_compileJava_2/net/minecraft/world/flag/package-info.class b/build/_compileJava_2/net/minecraft/world/flag/package-info.class new file mode 100644 index 000000000..65852e632 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/flag/package-info.class differ diff --git a/build/_compileJava_2/net/minecraft/world/food/FoodConstants.class b/build/_compileJava_2/net/minecraft/world/food/FoodConstants.class new file mode 100644 index 000000000..c07de0713 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/food/FoodConstants.class differ diff --git a/build/_compileJava_2/net/minecraft/world/food/FoodData.class b/build/_compileJava_2/net/minecraft/world/food/FoodData.class new file mode 100644 index 000000000..7c32d7d58 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/food/FoodData.class differ diff --git a/build/_compileJava_2/net/minecraft/world/food/FoodProperties$Builder.class b/build/_compileJava_2/net/minecraft/world/food/FoodProperties$Builder.class new file mode 100644 index 000000000..1a4664c2a Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/food/FoodProperties$Builder.class differ diff --git a/build/_compileJava_2/net/minecraft/world/food/FoodProperties.class b/build/_compileJava_2/net/minecraft/world/food/FoodProperties.class new file mode 100644 index 000000000..4709c4bd7 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/food/FoodProperties.class differ diff --git a/build/_compileJava_2/net/minecraft/world/food/Foods.class b/build/_compileJava_2/net/minecraft/world/food/Foods.class new file mode 100644 index 000000000..460d7739c Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/food/Foods.class differ diff --git a/build/_compileJava_2/net/minecraft/world/food/package-info.class b/build/_compileJava_2/net/minecraft/world/food/package-info.class new file mode 100644 index 000000000..7d9c901bc Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/food/package-info.class differ diff --git a/build/_compileJava_2/net/minecraft/world/inventory/AbstractContainerMenu$1.class b/build/_compileJava_2/net/minecraft/world/inventory/AbstractContainerMenu$1.class new file mode 100644 index 000000000..4f5b0bace Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/inventory/AbstractContainerMenu$1.class differ diff --git a/build/_compileJava_2/net/minecraft/world/inventory/AbstractContainerMenu.class b/build/_compileJava_2/net/minecraft/world/inventory/AbstractContainerMenu.class new file mode 100644 index 000000000..5662de83a Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/inventory/AbstractContainerMenu.class differ diff --git a/build/_compileJava_2/net/minecraft/world/inventory/AbstractFurnaceMenu.class b/build/_compileJava_2/net/minecraft/world/inventory/AbstractFurnaceMenu.class new file mode 100644 index 000000000..ac96eba44 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/inventory/AbstractFurnaceMenu.class differ diff --git a/build/_compileJava_2/net/minecraft/world/inventory/AnvilMenu$1.class b/build/_compileJava_2/net/minecraft/world/inventory/AnvilMenu$1.class new file mode 100644 index 000000000..b4cced105 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/inventory/AnvilMenu$1.class differ diff --git a/build/_compileJava_2/net/minecraft/world/inventory/AnvilMenu.class b/build/_compileJava_2/net/minecraft/world/inventory/AnvilMenu.class new file mode 100644 index 000000000..88ec02c50 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/inventory/AnvilMenu.class differ diff --git a/build/_compileJava_2/net/minecraft/world/inventory/BeaconMenu$1.class b/build/_compileJava_2/net/minecraft/world/inventory/BeaconMenu$1.class new file mode 100644 index 000000000..8164d8834 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/inventory/BeaconMenu$1.class differ diff --git a/build/_compileJava_2/net/minecraft/world/inventory/BeaconMenu$PaymentSlot.class b/build/_compileJava_2/net/minecraft/world/inventory/BeaconMenu$PaymentSlot.class new file mode 100644 index 000000000..ea0ad7a78 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/inventory/BeaconMenu$PaymentSlot.class differ diff --git a/build/_compileJava_2/net/minecraft/world/inventory/BeaconMenu.class b/build/_compileJava_2/net/minecraft/world/inventory/BeaconMenu.class new file mode 100644 index 000000000..e7b491241 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/inventory/BeaconMenu.class differ diff --git a/build/_compileJava_2/net/minecraft/world/inventory/BlastFurnaceMenu.class b/build/_compileJava_2/net/minecraft/world/inventory/BlastFurnaceMenu.class new file mode 100644 index 000000000..0138c08aa Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/inventory/BlastFurnaceMenu.class differ diff --git a/build/_compileJava_2/net/minecraft/world/inventory/BrewingStandMenu$FuelSlot.class b/build/_compileJava_2/net/minecraft/world/inventory/BrewingStandMenu$FuelSlot.class new file mode 100644 index 000000000..9e6889ef5 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/inventory/BrewingStandMenu$FuelSlot.class differ diff --git a/build/_compileJava_2/net/minecraft/world/inventory/BrewingStandMenu$IngredientsSlot.class b/build/_compileJava_2/net/minecraft/world/inventory/BrewingStandMenu$IngredientsSlot.class new file mode 100644 index 000000000..c07e1f8bd Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/inventory/BrewingStandMenu$IngredientsSlot.class differ diff --git a/build/_compileJava_2/net/minecraft/world/inventory/BrewingStandMenu$PotionSlot.class b/build/_compileJava_2/net/minecraft/world/inventory/BrewingStandMenu$PotionSlot.class new file mode 100644 index 000000000..88b5c07d4 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/inventory/BrewingStandMenu$PotionSlot.class differ diff --git a/build/_compileJava_2/net/minecraft/world/inventory/BrewingStandMenu.class b/build/_compileJava_2/net/minecraft/world/inventory/BrewingStandMenu.class new file mode 100644 index 000000000..48cd6c538 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/inventory/BrewingStandMenu.class differ diff --git a/build/_compileJava_2/net/minecraft/world/inventory/CartographyTableMenu$1.class b/build/_compileJava_2/net/minecraft/world/inventory/CartographyTableMenu$1.class new file mode 100644 index 000000000..a47980763 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/inventory/CartographyTableMenu$1.class differ diff --git a/build/_compileJava_2/net/minecraft/world/inventory/CartographyTableMenu$2.class b/build/_compileJava_2/net/minecraft/world/inventory/CartographyTableMenu$2.class new file mode 100644 index 000000000..8ec98f153 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/inventory/CartographyTableMenu$2.class differ diff --git a/build/_compileJava_2/net/minecraft/world/inventory/CartographyTableMenu$3.class b/build/_compileJava_2/net/minecraft/world/inventory/CartographyTableMenu$3.class new file mode 100644 index 000000000..f8cf6cc2e Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/inventory/CartographyTableMenu$3.class differ diff --git a/build/_compileJava_2/net/minecraft/world/inventory/CartographyTableMenu$4.class b/build/_compileJava_2/net/minecraft/world/inventory/CartographyTableMenu$4.class new file mode 100644 index 000000000..376899b14 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/inventory/CartographyTableMenu$4.class differ diff --git a/build/_compileJava_2/net/minecraft/world/inventory/CartographyTableMenu$5.class b/build/_compileJava_2/net/minecraft/world/inventory/CartographyTableMenu$5.class new file mode 100644 index 000000000..d2d1a1221 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/inventory/CartographyTableMenu$5.class differ diff --git a/build/_compileJava_2/net/minecraft/world/inventory/CartographyTableMenu.class b/build/_compileJava_2/net/minecraft/world/inventory/CartographyTableMenu.class new file mode 100644 index 000000000..97cc2676f Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/inventory/CartographyTableMenu.class differ diff --git a/build/_compileJava_2/net/minecraft/world/inventory/ChestMenu.class b/build/_compileJava_2/net/minecraft/world/inventory/ChestMenu.class new file mode 100644 index 000000000..e86e08794 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/inventory/ChestMenu.class differ diff --git a/build/_compileJava_2/net/minecraft/world/inventory/ClickAction.class b/build/_compileJava_2/net/minecraft/world/inventory/ClickAction.class new file mode 100644 index 000000000..0a56e8388 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/inventory/ClickAction.class differ diff --git a/build/_compileJava_2/net/minecraft/world/inventory/ClickType.class b/build/_compileJava_2/net/minecraft/world/inventory/ClickType.class new file mode 100644 index 000000000..716041118 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/inventory/ClickType.class differ diff --git a/build/_compileJava_2/net/minecraft/world/inventory/ContainerData.class b/build/_compileJava_2/net/minecraft/world/inventory/ContainerData.class new file mode 100644 index 000000000..cd2e650ea Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/inventory/ContainerData.class differ diff --git a/build/_compileJava_2/net/minecraft/world/inventory/ContainerLevelAccess$1.class b/build/_compileJava_2/net/minecraft/world/inventory/ContainerLevelAccess$1.class new file mode 100644 index 000000000..7af205988 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/inventory/ContainerLevelAccess$1.class differ diff --git a/build/_compileJava_2/net/minecraft/world/inventory/ContainerLevelAccess$2.class b/build/_compileJava_2/net/minecraft/world/inventory/ContainerLevelAccess$2.class new file mode 100644 index 000000000..5040def41 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/inventory/ContainerLevelAccess$2.class differ diff --git a/build/_compileJava_2/net/minecraft/world/inventory/ContainerLevelAccess.class b/build/_compileJava_2/net/minecraft/world/inventory/ContainerLevelAccess.class new file mode 100644 index 000000000..8757f8546 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/inventory/ContainerLevelAccess.class differ diff --git a/build/_compileJava_2/net/minecraft/world/inventory/ContainerListener.class b/build/_compileJava_2/net/minecraft/world/inventory/ContainerListener.class new file mode 100644 index 000000000..6af817c70 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/inventory/ContainerListener.class differ diff --git a/build/_compileJava_2/net/minecraft/world/inventory/ContainerSynchronizer.class b/build/_compileJava_2/net/minecraft/world/inventory/ContainerSynchronizer.class new file mode 100644 index 000000000..281c6c991 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/inventory/ContainerSynchronizer.class differ diff --git a/build/_compileJava_2/net/minecraft/world/inventory/CraftingContainer.class b/build/_compileJava_2/net/minecraft/world/inventory/CraftingContainer.class new file mode 100644 index 000000000..512bcf43f Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/inventory/CraftingContainer.class differ diff --git a/build/_compileJava_2/net/minecraft/world/inventory/CraftingMenu.class b/build/_compileJava_2/net/minecraft/world/inventory/CraftingMenu.class new file mode 100644 index 000000000..fc8d22dfe Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/inventory/CraftingMenu.class differ diff --git a/build/_compileJava_2/net/minecraft/world/inventory/DataSlot$1.class b/build/_compileJava_2/net/minecraft/world/inventory/DataSlot$1.class new file mode 100644 index 000000000..39380825e Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/inventory/DataSlot$1.class differ diff --git a/build/_compileJava_2/net/minecraft/world/inventory/DataSlot$2.class b/build/_compileJava_2/net/minecraft/world/inventory/DataSlot$2.class new file mode 100644 index 000000000..8d331af14 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/inventory/DataSlot$2.class differ diff --git a/build/_compileJava_2/net/minecraft/world/inventory/DataSlot$3.class b/build/_compileJava_2/net/minecraft/world/inventory/DataSlot$3.class new file mode 100644 index 000000000..803370e8e Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/inventory/DataSlot$3.class differ diff --git a/build/_compileJava_2/net/minecraft/world/inventory/DataSlot.class b/build/_compileJava_2/net/minecraft/world/inventory/DataSlot.class new file mode 100644 index 000000000..778f74236 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/inventory/DataSlot.class differ diff --git a/build/_compileJava_2/net/minecraft/world/inventory/DispenserMenu.class b/build/_compileJava_2/net/minecraft/world/inventory/DispenserMenu.class new file mode 100644 index 000000000..918614c4a Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/inventory/DispenserMenu.class differ diff --git a/build/_compileJava_2/net/minecraft/world/inventory/EnchantmentMenu$1.class b/build/_compileJava_2/net/minecraft/world/inventory/EnchantmentMenu$1.class new file mode 100644 index 000000000..592278599 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/inventory/EnchantmentMenu$1.class differ diff --git a/build/_compileJava_2/net/minecraft/world/inventory/EnchantmentMenu$2.class b/build/_compileJava_2/net/minecraft/world/inventory/EnchantmentMenu$2.class new file mode 100644 index 000000000..3c5e8041c Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/inventory/EnchantmentMenu$2.class differ diff --git a/build/_compileJava_2/net/minecraft/world/inventory/EnchantmentMenu$3.class b/build/_compileJava_2/net/minecraft/world/inventory/EnchantmentMenu$3.class new file mode 100644 index 000000000..ec14c744a Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/inventory/EnchantmentMenu$3.class differ diff --git a/build/_compileJava_2/net/minecraft/world/inventory/EnchantmentMenu.class b/build/_compileJava_2/net/minecraft/world/inventory/EnchantmentMenu.class new file mode 100644 index 000000000..71619f9a5 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/inventory/EnchantmentMenu.class differ diff --git a/build/_compileJava_2/net/minecraft/world/inventory/FurnaceFuelSlot.class b/build/_compileJava_2/net/minecraft/world/inventory/FurnaceFuelSlot.class new file mode 100644 index 000000000..56d9b7641 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/inventory/FurnaceFuelSlot.class differ diff --git a/build/_compileJava_2/net/minecraft/world/inventory/FurnaceMenu.class b/build/_compileJava_2/net/minecraft/world/inventory/FurnaceMenu.class new file mode 100644 index 000000000..5c2052613 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/inventory/FurnaceMenu.class differ diff --git a/build/_compileJava_2/net/minecraft/world/inventory/FurnaceResultSlot.class b/build/_compileJava_2/net/minecraft/world/inventory/FurnaceResultSlot.class new file mode 100644 index 000000000..bda63f830 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/inventory/FurnaceResultSlot.class differ diff --git a/build/_compileJava_2/net/minecraft/world/inventory/GrindstoneMenu$1.class b/build/_compileJava_2/net/minecraft/world/inventory/GrindstoneMenu$1.class new file mode 100644 index 000000000..19553e7f2 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/inventory/GrindstoneMenu$1.class differ diff --git a/build/_compileJava_2/net/minecraft/world/inventory/GrindstoneMenu$2.class b/build/_compileJava_2/net/minecraft/world/inventory/GrindstoneMenu$2.class new file mode 100644 index 000000000..505e7c1dc Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/inventory/GrindstoneMenu$2.class differ diff --git a/build/_compileJava_2/net/minecraft/world/inventory/GrindstoneMenu$3.class b/build/_compileJava_2/net/minecraft/world/inventory/GrindstoneMenu$3.class new file mode 100644 index 000000000..6d5407cc9 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/inventory/GrindstoneMenu$3.class differ diff --git a/build/_compileJava_2/net/minecraft/world/inventory/GrindstoneMenu$4.class b/build/_compileJava_2/net/minecraft/world/inventory/GrindstoneMenu$4.class new file mode 100644 index 000000000..41d7d6f76 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/inventory/GrindstoneMenu$4.class differ diff --git a/build/_compileJava_2/net/minecraft/world/inventory/GrindstoneMenu.class b/build/_compileJava_2/net/minecraft/world/inventory/GrindstoneMenu.class new file mode 100644 index 000000000..3cb92ddac Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/inventory/GrindstoneMenu.class differ diff --git a/build/_compileJava_2/net/minecraft/world/inventory/HopperMenu.class b/build/_compileJava_2/net/minecraft/world/inventory/HopperMenu.class new file mode 100644 index 000000000..d2120db2d Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/inventory/HopperMenu.class differ diff --git a/build/_compileJava_2/net/minecraft/world/inventory/HorseInventoryMenu$1.class b/build/_compileJava_2/net/minecraft/world/inventory/HorseInventoryMenu$1.class new file mode 100644 index 000000000..aa497aa20 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/inventory/HorseInventoryMenu$1.class differ diff --git a/build/_compileJava_2/net/minecraft/world/inventory/HorseInventoryMenu$2.class b/build/_compileJava_2/net/minecraft/world/inventory/HorseInventoryMenu$2.class new file mode 100644 index 000000000..05407a422 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/inventory/HorseInventoryMenu$2.class differ diff --git a/build/_compileJava_2/net/minecraft/world/inventory/HorseInventoryMenu.class b/build/_compileJava_2/net/minecraft/world/inventory/HorseInventoryMenu.class new file mode 100644 index 000000000..c0d83857f Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/inventory/HorseInventoryMenu.class differ diff --git a/build/_compileJava_2/net/minecraft/world/inventory/InventoryMenu$1.class b/build/_compileJava_2/net/minecraft/world/inventory/InventoryMenu$1.class new file mode 100644 index 000000000..53148f0b2 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/inventory/InventoryMenu$1.class differ diff --git a/build/_compileJava_2/net/minecraft/world/inventory/InventoryMenu$2.class b/build/_compileJava_2/net/minecraft/world/inventory/InventoryMenu$2.class new file mode 100644 index 000000000..e66788988 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/inventory/InventoryMenu$2.class differ diff --git a/build/_compileJava_2/net/minecraft/world/inventory/InventoryMenu.class b/build/_compileJava_2/net/minecraft/world/inventory/InventoryMenu.class new file mode 100644 index 000000000..872c1fb8f Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/inventory/InventoryMenu.class differ diff --git a/build/_compileJava_2/net/minecraft/world/inventory/ItemCombinerMenu$1.class b/build/_compileJava_2/net/minecraft/world/inventory/ItemCombinerMenu$1.class new file mode 100644 index 000000000..b1be9dfcc Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/inventory/ItemCombinerMenu$1.class differ diff --git a/build/_compileJava_2/net/minecraft/world/inventory/ItemCombinerMenu$2.class b/build/_compileJava_2/net/minecraft/world/inventory/ItemCombinerMenu$2.class new file mode 100644 index 000000000..12ba7bd8f Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/inventory/ItemCombinerMenu$2.class differ diff --git a/build/_compileJava_2/net/minecraft/world/inventory/ItemCombinerMenu$3.class b/build/_compileJava_2/net/minecraft/world/inventory/ItemCombinerMenu$3.class new file mode 100644 index 000000000..7e3ef291a Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/inventory/ItemCombinerMenu$3.class differ diff --git a/build/_compileJava_2/net/minecraft/world/inventory/ItemCombinerMenu.class b/build/_compileJava_2/net/minecraft/world/inventory/ItemCombinerMenu.class new file mode 100644 index 000000000..41a372b4a Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/inventory/ItemCombinerMenu.class differ diff --git a/build/_compileJava_2/net/minecraft/world/inventory/ItemCombinerMenuSlotDefinition$Builder.class b/build/_compileJava_2/net/minecraft/world/inventory/ItemCombinerMenuSlotDefinition$Builder.class new file mode 100644 index 000000000..11526d3a6 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/inventory/ItemCombinerMenuSlotDefinition$Builder.class differ diff --git a/build/_compileJava_2/net/minecraft/world/inventory/ItemCombinerMenuSlotDefinition$SlotDefinition.class b/build/_compileJava_2/net/minecraft/world/inventory/ItemCombinerMenuSlotDefinition$SlotDefinition.class new file mode 100644 index 000000000..2a1c20550 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/inventory/ItemCombinerMenuSlotDefinition$SlotDefinition.class differ diff --git a/build/_compileJava_2/net/minecraft/world/inventory/ItemCombinerMenuSlotDefinition.class b/build/_compileJava_2/net/minecraft/world/inventory/ItemCombinerMenuSlotDefinition.class new file mode 100644 index 000000000..2e0d86007 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/inventory/ItemCombinerMenuSlotDefinition.class differ diff --git a/build/_compileJava_2/net/minecraft/world/inventory/LecternMenu$1.class b/build/_compileJava_2/net/minecraft/world/inventory/LecternMenu$1.class new file mode 100644 index 000000000..70e6fb6ef Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/inventory/LecternMenu$1.class differ diff --git a/build/_compileJava_2/net/minecraft/world/inventory/LecternMenu.class b/build/_compileJava_2/net/minecraft/world/inventory/LecternMenu.class new file mode 100644 index 000000000..4b39b951a Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/inventory/LecternMenu.class differ diff --git a/build/_compileJava_2/net/minecraft/world/inventory/LoomMenu$1.class b/build/_compileJava_2/net/minecraft/world/inventory/LoomMenu$1.class new file mode 100644 index 000000000..fa2ca4704 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/inventory/LoomMenu$1.class differ diff --git a/build/_compileJava_2/net/minecraft/world/inventory/LoomMenu$2.class b/build/_compileJava_2/net/minecraft/world/inventory/LoomMenu$2.class new file mode 100644 index 000000000..704a933a4 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/inventory/LoomMenu$2.class differ diff --git a/build/_compileJava_2/net/minecraft/world/inventory/LoomMenu$3.class b/build/_compileJava_2/net/minecraft/world/inventory/LoomMenu$3.class new file mode 100644 index 000000000..4272b828d Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/inventory/LoomMenu$3.class differ diff --git a/build/_compileJava_2/net/minecraft/world/inventory/LoomMenu$4.class b/build/_compileJava_2/net/minecraft/world/inventory/LoomMenu$4.class new file mode 100644 index 000000000..6b15122b6 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/inventory/LoomMenu$4.class differ diff --git a/build/_compileJava_2/net/minecraft/world/inventory/LoomMenu$5.class b/build/_compileJava_2/net/minecraft/world/inventory/LoomMenu$5.class new file mode 100644 index 000000000..8227d0f0c Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/inventory/LoomMenu$5.class differ diff --git a/build/_compileJava_2/net/minecraft/world/inventory/LoomMenu$6.class b/build/_compileJava_2/net/minecraft/world/inventory/LoomMenu$6.class new file mode 100644 index 000000000..3bbaf542f Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/inventory/LoomMenu$6.class differ diff --git a/build/_compileJava_2/net/minecraft/world/inventory/LoomMenu.class b/build/_compileJava_2/net/minecraft/world/inventory/LoomMenu.class new file mode 100644 index 000000000..60847a085 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/inventory/LoomMenu.class differ diff --git a/build/_compileJava_2/net/minecraft/world/inventory/MenuConstructor.class b/build/_compileJava_2/net/minecraft/world/inventory/MenuConstructor.class new file mode 100644 index 000000000..9740c42c9 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/inventory/MenuConstructor.class differ diff --git a/build/_compileJava_2/net/minecraft/world/inventory/MenuType$MenuSupplier.class b/build/_compileJava_2/net/minecraft/world/inventory/MenuType$MenuSupplier.class new file mode 100644 index 000000000..1c20aa0d2 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/inventory/MenuType$MenuSupplier.class differ diff --git a/build/_compileJava_2/net/minecraft/world/inventory/MenuType.class b/build/_compileJava_2/net/minecraft/world/inventory/MenuType.class new file mode 100644 index 000000000..d24690f90 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/inventory/MenuType.class differ diff --git a/build/_compileJava_2/net/minecraft/world/inventory/MerchantContainer.class b/build/_compileJava_2/net/minecraft/world/inventory/MerchantContainer.class new file mode 100644 index 000000000..5b452de0d Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/inventory/MerchantContainer.class differ diff --git a/build/_compileJava_2/net/minecraft/world/inventory/MerchantMenu.class b/build/_compileJava_2/net/minecraft/world/inventory/MerchantMenu.class new file mode 100644 index 000000000..f2173ff48 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/inventory/MerchantMenu.class differ diff --git a/build/_compileJava_2/net/minecraft/world/inventory/MerchantResultSlot.class b/build/_compileJava_2/net/minecraft/world/inventory/MerchantResultSlot.class new file mode 100644 index 000000000..e20915ae7 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/inventory/MerchantResultSlot.class differ diff --git a/build/_compileJava_2/net/minecraft/world/inventory/PlayerEnderChestContainer.class b/build/_compileJava_2/net/minecraft/world/inventory/PlayerEnderChestContainer.class new file mode 100644 index 000000000..a38f00b5d Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/inventory/PlayerEnderChestContainer.class differ diff --git a/build/_compileJava_2/net/minecraft/world/inventory/RecipeBookMenu.class b/build/_compileJava_2/net/minecraft/world/inventory/RecipeBookMenu.class new file mode 100644 index 000000000..5a6a3a8a2 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/inventory/RecipeBookMenu.class differ diff --git a/build/_compileJava_2/net/minecraft/world/inventory/RecipeBookType.class b/build/_compileJava_2/net/minecraft/world/inventory/RecipeBookType.class new file mode 100644 index 000000000..542bab9ed Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/inventory/RecipeBookType.class differ diff --git a/build/_compileJava_2/net/minecraft/world/inventory/RecipeHolder.class b/build/_compileJava_2/net/minecraft/world/inventory/RecipeHolder.class new file mode 100644 index 000000000..9ec0d8e52 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/inventory/RecipeHolder.class differ diff --git a/build/_compileJava_2/net/minecraft/world/inventory/ResultContainer.class b/build/_compileJava_2/net/minecraft/world/inventory/ResultContainer.class new file mode 100644 index 000000000..3cb57b1c8 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/inventory/ResultContainer.class differ diff --git a/build/_compileJava_2/net/minecraft/world/inventory/ResultSlot.class b/build/_compileJava_2/net/minecraft/world/inventory/ResultSlot.class new file mode 100644 index 000000000..454b2d697 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/inventory/ResultSlot.class differ diff --git a/build/_compileJava_2/net/minecraft/world/inventory/ShulkerBoxMenu.class b/build/_compileJava_2/net/minecraft/world/inventory/ShulkerBoxMenu.class new file mode 100644 index 000000000..f2f3ee278 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/inventory/ShulkerBoxMenu.class differ diff --git a/build/_compileJava_2/net/minecraft/world/inventory/ShulkerBoxSlot.class b/build/_compileJava_2/net/minecraft/world/inventory/ShulkerBoxSlot.class new file mode 100644 index 000000000..444debf91 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/inventory/ShulkerBoxSlot.class differ diff --git a/build/_compileJava_2/net/minecraft/world/inventory/SimpleContainerData.class b/build/_compileJava_2/net/minecraft/world/inventory/SimpleContainerData.class new file mode 100644 index 000000000..27a143196 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/inventory/SimpleContainerData.class differ diff --git a/build/_compileJava_2/net/minecraft/world/inventory/Slot.class b/build/_compileJava_2/net/minecraft/world/inventory/Slot.class new file mode 100644 index 000000000..dd22b1e2d Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/inventory/Slot.class differ diff --git a/build/_compileJava_2/net/minecraft/world/inventory/SmithingMenu.class b/build/_compileJava_2/net/minecraft/world/inventory/SmithingMenu.class new file mode 100644 index 000000000..e39882196 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/inventory/SmithingMenu.class differ diff --git a/build/_compileJava_2/net/minecraft/world/inventory/SmokerMenu.class b/build/_compileJava_2/net/minecraft/world/inventory/SmokerMenu.class new file mode 100644 index 000000000..29694b9f2 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/inventory/SmokerMenu.class differ diff --git a/build/_compileJava_2/net/minecraft/world/inventory/StackedContentsCompatible.class b/build/_compileJava_2/net/minecraft/world/inventory/StackedContentsCompatible.class new file mode 100644 index 000000000..2c7819285 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/inventory/StackedContentsCompatible.class differ diff --git a/build/_compileJava_2/net/minecraft/world/inventory/StonecutterMenu$1.class b/build/_compileJava_2/net/minecraft/world/inventory/StonecutterMenu$1.class new file mode 100644 index 000000000..0c57fe341 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/inventory/StonecutterMenu$1.class differ diff --git a/build/_compileJava_2/net/minecraft/world/inventory/StonecutterMenu$2.class b/build/_compileJava_2/net/minecraft/world/inventory/StonecutterMenu$2.class new file mode 100644 index 000000000..984312f62 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/inventory/StonecutterMenu$2.class differ diff --git a/build/_compileJava_2/net/minecraft/world/inventory/StonecutterMenu.class b/build/_compileJava_2/net/minecraft/world/inventory/StonecutterMenu.class new file mode 100644 index 000000000..781134ee7 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/inventory/StonecutterMenu.class differ diff --git a/build/_compileJava_2/net/minecraft/world/inventory/TransientCraftingContainer.class b/build/_compileJava_2/net/minecraft/world/inventory/TransientCraftingContainer.class new file mode 100644 index 000000000..3098e02af Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/inventory/TransientCraftingContainer.class differ diff --git a/build/_compileJava_2/net/minecraft/world/inventory/package-info.class b/build/_compileJava_2/net/minecraft/world/inventory/package-info.class new file mode 100644 index 000000000..d4ffae97e Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/inventory/package-info.class differ diff --git a/build/_compileJava_2/net/minecraft/world/inventory/tooltip/BundleTooltip.class b/build/_compileJava_2/net/minecraft/world/inventory/tooltip/BundleTooltip.class new file mode 100644 index 000000000..7b485c37c Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/inventory/tooltip/BundleTooltip.class differ diff --git a/build/_compileJava_2/net/minecraft/world/inventory/tooltip/TooltipComponent.class b/build/_compileJava_2/net/minecraft/world/inventory/tooltip/TooltipComponent.class new file mode 100644 index 000000000..bd514ea50 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/inventory/tooltip/TooltipComponent.class differ diff --git a/build/_compileJava_2/net/minecraft/world/inventory/tooltip/package-info.class b/build/_compileJava_2/net/minecraft/world/inventory/tooltip/package-info.class new file mode 100644 index 000000000..2c75ab89b Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/inventory/tooltip/package-info.class differ diff --git a/build/_compileJava_2/net/minecraft/world/item/AdventureModeCheck.class b/build/_compileJava_2/net/minecraft/world/item/AdventureModeCheck.class new file mode 100644 index 000000000..ea5646545 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/item/AdventureModeCheck.class differ diff --git a/build/_compileJava_2/net/minecraft/world/item/AirItem.class b/build/_compileJava_2/net/minecraft/world/item/AirItem.class new file mode 100644 index 000000000..a0eea63c9 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/item/AirItem.class differ diff --git a/build/_compileJava_2/net/minecraft/world/item/ArmorItem$1.class b/build/_compileJava_2/net/minecraft/world/item/ArmorItem$1.class new file mode 100644 index 000000000..ce4dcea65 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/item/ArmorItem$1.class differ diff --git a/build/_compileJava_2/net/minecraft/world/item/ArmorItem$Type.class b/build/_compileJava_2/net/minecraft/world/item/ArmorItem$Type.class new file mode 100644 index 000000000..c3de4e7a4 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/item/ArmorItem$Type.class differ diff --git a/build/_compileJava_2/net/minecraft/world/item/ArmorItem.class b/build/_compileJava_2/net/minecraft/world/item/ArmorItem.class new file mode 100644 index 000000000..550939de7 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/item/ArmorItem.class differ diff --git a/build/_compileJava_2/net/minecraft/world/item/ArmorMaterial.class b/build/_compileJava_2/net/minecraft/world/item/ArmorMaterial.class new file mode 100644 index 000000000..1bc0a3594 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/item/ArmorMaterial.class differ diff --git a/build/_compileJava_2/net/minecraft/world/item/ArmorMaterials.class b/build/_compileJava_2/net/minecraft/world/item/ArmorMaterials.class new file mode 100644 index 000000000..ba96c169a Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/item/ArmorMaterials.class differ diff --git a/build/_compileJava_2/net/minecraft/world/item/ArmorStandItem.class b/build/_compileJava_2/net/minecraft/world/item/ArmorStandItem.class new file mode 100644 index 000000000..fcae53ce7 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/item/ArmorStandItem.class differ diff --git a/build/_compileJava_2/net/minecraft/world/item/ArrowItem.class b/build/_compileJava_2/net/minecraft/world/item/ArrowItem.class new file mode 100644 index 000000000..1406443b2 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/item/ArrowItem.class differ diff --git a/build/_compileJava_2/net/minecraft/world/item/AxeItem.class b/build/_compileJava_2/net/minecraft/world/item/AxeItem.class new file mode 100644 index 000000000..089d0f31b Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/item/AxeItem.class differ diff --git a/build/_compileJava_2/net/minecraft/world/item/BannerItem.class b/build/_compileJava_2/net/minecraft/world/item/BannerItem.class new file mode 100644 index 000000000..939e69b4c Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/item/BannerItem.class differ diff --git a/build/_compileJava_2/net/minecraft/world/item/BannerPatternItem.class b/build/_compileJava_2/net/minecraft/world/item/BannerPatternItem.class new file mode 100644 index 000000000..92aecfb22 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/item/BannerPatternItem.class differ diff --git a/build/_compileJava_2/net/minecraft/world/item/BedItem.class b/build/_compileJava_2/net/minecraft/world/item/BedItem.class new file mode 100644 index 000000000..3a6665947 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/item/BedItem.class differ diff --git a/build/_compileJava_2/net/minecraft/world/item/BlockItem.class b/build/_compileJava_2/net/minecraft/world/item/BlockItem.class new file mode 100644 index 000000000..adbb8f85a Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/item/BlockItem.class differ diff --git a/build/_compileJava_2/net/minecraft/world/item/BoatItem.class b/build/_compileJava_2/net/minecraft/world/item/BoatItem.class new file mode 100644 index 000000000..2fbb45dc2 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/item/BoatItem.class differ diff --git a/build/_compileJava_2/net/minecraft/world/item/BoneMealItem.class b/build/_compileJava_2/net/minecraft/world/item/BoneMealItem.class new file mode 100644 index 000000000..470a7bcda Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/item/BoneMealItem.class differ diff --git a/build/_compileJava_2/net/minecraft/world/item/BookItem.class b/build/_compileJava_2/net/minecraft/world/item/BookItem.class new file mode 100644 index 000000000..31cada24e Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/item/BookItem.class differ diff --git a/build/_compileJava_2/net/minecraft/world/item/BottleItem.class b/build/_compileJava_2/net/minecraft/world/item/BottleItem.class new file mode 100644 index 000000000..303c312b1 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/item/BottleItem.class differ diff --git a/build/_compileJava_2/net/minecraft/world/item/BowItem.class b/build/_compileJava_2/net/minecraft/world/item/BowItem.class new file mode 100644 index 000000000..4626178d3 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/item/BowItem.class differ diff --git a/build/_compileJava_2/net/minecraft/world/item/BowlFoodItem.class b/build/_compileJava_2/net/minecraft/world/item/BowlFoodItem.class new file mode 100644 index 000000000..21113daae Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/item/BowlFoodItem.class differ diff --git a/build/_compileJava_2/net/minecraft/world/item/BrushItem$1.class b/build/_compileJava_2/net/minecraft/world/item/BrushItem$1.class new file mode 100644 index 000000000..7ee922072 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/item/BrushItem$1.class differ diff --git a/build/_compileJava_2/net/minecraft/world/item/BrushItem$DustParticlesDelta.class b/build/_compileJava_2/net/minecraft/world/item/BrushItem$DustParticlesDelta.class new file mode 100644 index 000000000..4cb1642d8 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/item/BrushItem$DustParticlesDelta.class differ diff --git a/build/_compileJava_2/net/minecraft/world/item/BrushItem.class b/build/_compileJava_2/net/minecraft/world/item/BrushItem.class new file mode 100644 index 000000000..f3b1c5dae Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/item/BrushItem.class differ diff --git a/build/_compileJava_2/net/minecraft/world/item/BucketItem.class b/build/_compileJava_2/net/minecraft/world/item/BucketItem.class new file mode 100644 index 000000000..caa33ecfb Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/item/BucketItem.class differ diff --git a/build/_compileJava_2/net/minecraft/world/item/BundleItem.class b/build/_compileJava_2/net/minecraft/world/item/BundleItem.class new file mode 100644 index 000000000..cbab0de91 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/item/BundleItem.class differ diff --git a/build/_compileJava_2/net/minecraft/world/item/ChorusFruitItem.class b/build/_compileJava_2/net/minecraft/world/item/ChorusFruitItem.class new file mode 100644 index 000000000..b102a9e2b Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/item/ChorusFruitItem.class differ diff --git a/build/_compileJava_2/net/minecraft/world/item/CompassItem.class b/build/_compileJava_2/net/minecraft/world/item/CompassItem.class new file mode 100644 index 000000000..71932669b Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/item/CompassItem.class differ diff --git a/build/_compileJava_2/net/minecraft/world/item/ComplexItem.class b/build/_compileJava_2/net/minecraft/world/item/ComplexItem.class new file mode 100644 index 000000000..3485d6cc0 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/item/ComplexItem.class differ diff --git a/build/_compileJava_2/net/minecraft/world/item/CreativeModeTab$1.class b/build/_compileJava_2/net/minecraft/world/item/CreativeModeTab$1.class new file mode 100644 index 000000000..f271304ae Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/item/CreativeModeTab$1.class differ diff --git a/build/_compileJava_2/net/minecraft/world/item/CreativeModeTab$Builder.class b/build/_compileJava_2/net/minecraft/world/item/CreativeModeTab$Builder.class new file mode 100644 index 000000000..600737aed Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/item/CreativeModeTab$Builder.class differ diff --git a/build/_compileJava_2/net/minecraft/world/item/CreativeModeTab$DisplayItemsGenerator.class b/build/_compileJava_2/net/minecraft/world/item/CreativeModeTab$DisplayItemsGenerator.class new file mode 100644 index 000000000..23cc62110 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/item/CreativeModeTab$DisplayItemsGenerator.class differ diff --git a/build/_compileJava_2/net/minecraft/world/item/CreativeModeTab$ItemDisplayBuilder.class b/build/_compileJava_2/net/minecraft/world/item/CreativeModeTab$ItemDisplayBuilder.class new file mode 100644 index 000000000..9189cd8dd Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/item/CreativeModeTab$ItemDisplayBuilder.class differ diff --git a/build/_compileJava_2/net/minecraft/world/item/CreativeModeTab$ItemDisplayParameters.class b/build/_compileJava_2/net/minecraft/world/item/CreativeModeTab$ItemDisplayParameters.class new file mode 100644 index 000000000..88b988734 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/item/CreativeModeTab$ItemDisplayParameters.class differ diff --git a/build/_compileJava_2/net/minecraft/world/item/CreativeModeTab$Output.class b/build/_compileJava_2/net/minecraft/world/item/CreativeModeTab$Output.class new file mode 100644 index 000000000..52fff33cb Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/item/CreativeModeTab$Output.class differ diff --git a/build/_compileJava_2/net/minecraft/world/item/CreativeModeTab$Row.class b/build/_compileJava_2/net/minecraft/world/item/CreativeModeTab$Row.class new file mode 100644 index 000000000..294e0ad54 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/item/CreativeModeTab$Row.class differ diff --git a/build/_compileJava_2/net/minecraft/world/item/CreativeModeTab$TabVisibility.class b/build/_compileJava_2/net/minecraft/world/item/CreativeModeTab$TabVisibility.class new file mode 100644 index 000000000..78cf91009 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/item/CreativeModeTab$TabVisibility.class differ diff --git a/build/_compileJava_2/net/minecraft/world/item/CreativeModeTab$Type.class b/build/_compileJava_2/net/minecraft/world/item/CreativeModeTab$Type.class new file mode 100644 index 000000000..719ca8788 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/item/CreativeModeTab$Type.class differ diff --git a/build/_compileJava_2/net/minecraft/world/item/CreativeModeTab.class b/build/_compileJava_2/net/minecraft/world/item/CreativeModeTab.class new file mode 100644 index 000000000..3254b6704 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/item/CreativeModeTab.class differ diff --git a/build/_compileJava_2/net/minecraft/world/item/CreativeModeTabs.class b/build/_compileJava_2/net/minecraft/world/item/CreativeModeTabs.class new file mode 100644 index 000000000..57bf9f901 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/item/CreativeModeTabs.class differ diff --git a/build/_compileJava_2/net/minecraft/world/item/CrossbowItem.class b/build/_compileJava_2/net/minecraft/world/item/CrossbowItem.class new file mode 100644 index 000000000..c346d38a5 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/item/CrossbowItem.class differ diff --git a/build/_compileJava_2/net/minecraft/world/item/DebugStickItem.class b/build/_compileJava_2/net/minecraft/world/item/DebugStickItem.class new file mode 100644 index 000000000..43aa95bc9 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/item/DebugStickItem.class differ diff --git a/build/_compileJava_2/net/minecraft/world/item/DiggerItem.class b/build/_compileJava_2/net/minecraft/world/item/DiggerItem.class new file mode 100644 index 000000000..754933e66 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/item/DiggerItem.class differ diff --git a/build/_compileJava_2/net/minecraft/world/item/DiscFragmentItem.class b/build/_compileJava_2/net/minecraft/world/item/DiscFragmentItem.class new file mode 100644 index 000000000..38c508c93 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/item/DiscFragmentItem.class differ diff --git a/build/_compileJava_2/net/minecraft/world/item/DispensibleContainerItem.class b/build/_compileJava_2/net/minecraft/world/item/DispensibleContainerItem.class new file mode 100644 index 000000000..89ce9d5bd Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/item/DispensibleContainerItem.class differ diff --git a/build/_compileJava_2/net/minecraft/world/item/DoubleHighBlockItem.class b/build/_compileJava_2/net/minecraft/world/item/DoubleHighBlockItem.class new file mode 100644 index 000000000..bec428936 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/item/DoubleHighBlockItem.class differ diff --git a/build/_compileJava_2/net/minecraft/world/item/DyeColor.class b/build/_compileJava_2/net/minecraft/world/item/DyeColor.class new file mode 100644 index 000000000..cc23943f6 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/item/DyeColor.class differ diff --git a/build/_compileJava_2/net/minecraft/world/item/DyeItem.class b/build/_compileJava_2/net/minecraft/world/item/DyeItem.class new file mode 100644 index 000000000..b86d115b2 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/item/DyeItem.class differ diff --git a/build/_compileJava_2/net/minecraft/world/item/DyeableArmorItem.class b/build/_compileJava_2/net/minecraft/world/item/DyeableArmorItem.class new file mode 100644 index 000000000..6c40f8b26 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/item/DyeableArmorItem.class differ diff --git a/build/_compileJava_2/net/minecraft/world/item/DyeableHorseArmorItem.class b/build/_compileJava_2/net/minecraft/world/item/DyeableHorseArmorItem.class new file mode 100644 index 000000000..40452d47e Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/item/DyeableHorseArmorItem.class differ diff --git a/build/_compileJava_2/net/minecraft/world/item/DyeableLeatherItem.class b/build/_compileJava_2/net/minecraft/world/item/DyeableLeatherItem.class new file mode 100644 index 000000000..b137562f4 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/item/DyeableLeatherItem.class differ diff --git a/build/_compileJava_2/net/minecraft/world/item/EggItem.class b/build/_compileJava_2/net/minecraft/world/item/EggItem.class new file mode 100644 index 000000000..0acea87f0 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/item/EggItem.class differ diff --git a/build/_compileJava_2/net/minecraft/world/item/ElytraItem.class b/build/_compileJava_2/net/minecraft/world/item/ElytraItem.class new file mode 100644 index 000000000..4b0eb781f Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/item/ElytraItem.class differ diff --git a/build/_compileJava_2/net/minecraft/world/item/EmptyMapItem.class b/build/_compileJava_2/net/minecraft/world/item/EmptyMapItem.class new file mode 100644 index 000000000..80f650037 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/item/EmptyMapItem.class differ diff --git a/build/_compileJava_2/net/minecraft/world/item/EnchantedBookItem.class b/build/_compileJava_2/net/minecraft/world/item/EnchantedBookItem.class new file mode 100644 index 000000000..0086a82d0 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/item/EnchantedBookItem.class differ diff --git a/build/_compileJava_2/net/minecraft/world/item/EnchantedGoldenAppleItem.class b/build/_compileJava_2/net/minecraft/world/item/EnchantedGoldenAppleItem.class new file mode 100644 index 000000000..cea967cd0 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/item/EnchantedGoldenAppleItem.class differ diff --git a/build/_compileJava_2/net/minecraft/world/item/EndCrystalItem.class b/build/_compileJava_2/net/minecraft/world/item/EndCrystalItem.class new file mode 100644 index 000000000..adbab1ddd Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/item/EndCrystalItem.class differ diff --git a/build/_compileJava_2/net/minecraft/world/item/EnderEyeItem.class b/build/_compileJava_2/net/minecraft/world/item/EnderEyeItem.class new file mode 100644 index 000000000..c9209401b Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/item/EnderEyeItem.class differ diff --git a/build/_compileJava_2/net/minecraft/world/item/EnderpearlItem.class b/build/_compileJava_2/net/minecraft/world/item/EnderpearlItem.class new file mode 100644 index 000000000..9530f9886 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/item/EnderpearlItem.class differ diff --git a/build/_compileJava_2/net/minecraft/world/item/Equipable.class b/build/_compileJava_2/net/minecraft/world/item/Equipable.class new file mode 100644 index 000000000..6bd45e05c Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/item/Equipable.class differ diff --git a/build/_compileJava_2/net/minecraft/world/item/ExperienceBottleItem.class b/build/_compileJava_2/net/minecraft/world/item/ExperienceBottleItem.class new file mode 100644 index 000000000..5bcb1d172 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/item/ExperienceBottleItem.class differ diff --git a/build/_compileJava_2/net/minecraft/world/item/FireChargeItem.class b/build/_compileJava_2/net/minecraft/world/item/FireChargeItem.class new file mode 100644 index 000000000..4e10a8014 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/item/FireChargeItem.class differ diff --git a/build/_compileJava_2/net/minecraft/world/item/FireworkRocketItem$Shape.class b/build/_compileJava_2/net/minecraft/world/item/FireworkRocketItem$Shape.class new file mode 100644 index 000000000..c311080da Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/item/FireworkRocketItem$Shape.class differ diff --git a/build/_compileJava_2/net/minecraft/world/item/FireworkRocketItem.class b/build/_compileJava_2/net/minecraft/world/item/FireworkRocketItem.class new file mode 100644 index 000000000..e963a6d07 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/item/FireworkRocketItem.class differ diff --git a/build/_compileJava_2/net/minecraft/world/item/FireworkStarItem.class b/build/_compileJava_2/net/minecraft/world/item/FireworkStarItem.class new file mode 100644 index 000000000..b735f0e49 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/item/FireworkStarItem.class differ diff --git a/build/_compileJava_2/net/minecraft/world/item/FishingRodItem.class b/build/_compileJava_2/net/minecraft/world/item/FishingRodItem.class new file mode 100644 index 000000000..bb702fef8 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/item/FishingRodItem.class differ diff --git a/build/_compileJava_2/net/minecraft/world/item/FlintAndSteelItem.class b/build/_compileJava_2/net/minecraft/world/item/FlintAndSteelItem.class new file mode 100644 index 000000000..4ad959588 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/item/FlintAndSteelItem.class differ diff --git a/build/_compileJava_2/net/minecraft/world/item/FoodOnAStickItem.class b/build/_compileJava_2/net/minecraft/world/item/FoodOnAStickItem.class new file mode 100644 index 000000000..81562d34e Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/item/FoodOnAStickItem.class differ diff --git a/build/_compileJava_2/net/minecraft/world/item/GameMasterBlockItem.class b/build/_compileJava_2/net/minecraft/world/item/GameMasterBlockItem.class new file mode 100644 index 000000000..d0026010e Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/item/GameMasterBlockItem.class differ diff --git a/build/_compileJava_2/net/minecraft/world/item/GlowInkSacItem.class b/build/_compileJava_2/net/minecraft/world/item/GlowInkSacItem.class new file mode 100644 index 000000000..9246060c5 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/item/GlowInkSacItem.class differ diff --git a/build/_compileJava_2/net/minecraft/world/item/HangingEntityItem.class b/build/_compileJava_2/net/minecraft/world/item/HangingEntityItem.class new file mode 100644 index 000000000..c8d0bc235 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/item/HangingEntityItem.class differ diff --git a/build/_compileJava_2/net/minecraft/world/item/HangingSignItem.class b/build/_compileJava_2/net/minecraft/world/item/HangingSignItem.class new file mode 100644 index 000000000..cd20815ef Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/item/HangingSignItem.class differ diff --git a/build/_compileJava_2/net/minecraft/world/item/HoeItem.class b/build/_compileJava_2/net/minecraft/world/item/HoeItem.class new file mode 100644 index 000000000..fcbe8e9fa Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/item/HoeItem.class differ diff --git a/build/_compileJava_2/net/minecraft/world/item/HoneyBottleItem.class b/build/_compileJava_2/net/minecraft/world/item/HoneyBottleItem.class new file mode 100644 index 000000000..5929b0eb7 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/item/HoneyBottleItem.class differ diff --git a/build/_compileJava_2/net/minecraft/world/item/HoneycombItem.class b/build/_compileJava_2/net/minecraft/world/item/HoneycombItem.class new file mode 100644 index 000000000..168795c28 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/item/HoneycombItem.class differ diff --git a/build/_compileJava_2/net/minecraft/world/item/HorseArmorItem.class b/build/_compileJava_2/net/minecraft/world/item/HorseArmorItem.class new file mode 100644 index 000000000..f59a03f21 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/item/HorseArmorItem.class differ diff --git a/build/_compileJava_2/net/minecraft/world/item/InkSacItem.class b/build/_compileJava_2/net/minecraft/world/item/InkSacItem.class new file mode 100644 index 000000000..b90470f72 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/item/InkSacItem.class differ diff --git a/build/_compileJava_2/net/minecraft/world/item/Instrument.class b/build/_compileJava_2/net/minecraft/world/item/Instrument.class new file mode 100644 index 000000000..8645c2411 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/item/Instrument.class differ diff --git a/build/_compileJava_2/net/minecraft/world/item/InstrumentItem.class b/build/_compileJava_2/net/minecraft/world/item/InstrumentItem.class new file mode 100644 index 000000000..adb26ccf4 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/item/InstrumentItem.class differ diff --git a/build/_compileJava_2/net/minecraft/world/item/Instruments.class b/build/_compileJava_2/net/minecraft/world/item/Instruments.class new file mode 100644 index 000000000..2c53c6b54 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/item/Instruments.class differ diff --git a/build/_compileJava_2/net/minecraft/world/item/Item$1.class b/build/_compileJava_2/net/minecraft/world/item/Item$1.class new file mode 100644 index 000000000..0cc8da254 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/item/Item$1.class differ diff --git a/build/_compileJava_2/net/minecraft/world/item/Item$Properties.class b/build/_compileJava_2/net/minecraft/world/item/Item$Properties.class new file mode 100644 index 000000000..7b05e673f Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/item/Item$Properties.class differ diff --git a/build/_compileJava_2/net/minecraft/world/item/Item.class b/build/_compileJava_2/net/minecraft/world/item/Item.class new file mode 100644 index 000000000..1c5836a50 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/item/Item.class differ diff --git a/build/_compileJava_2/net/minecraft/world/item/ItemCooldowns$CooldownInstance.class b/build/_compileJava_2/net/minecraft/world/item/ItemCooldowns$CooldownInstance.class new file mode 100644 index 000000000..7010dbb11 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/item/ItemCooldowns$CooldownInstance.class differ diff --git a/build/_compileJava_2/net/minecraft/world/item/ItemCooldowns.class b/build/_compileJava_2/net/minecraft/world/item/ItemCooldowns.class new file mode 100644 index 000000000..8a5bfb73f Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/item/ItemCooldowns.class differ diff --git a/build/_compileJava_2/net/minecraft/world/item/ItemDisplayContext.class b/build/_compileJava_2/net/minecraft/world/item/ItemDisplayContext.class new file mode 100644 index 000000000..37c73e751 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/item/ItemDisplayContext.class differ diff --git a/build/_compileJava_2/net/minecraft/world/item/ItemFrameItem.class b/build/_compileJava_2/net/minecraft/world/item/ItemFrameItem.class new file mode 100644 index 000000000..2c98c2859 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/item/ItemFrameItem.class differ diff --git a/build/_compileJava_2/net/minecraft/world/item/ItemNameBlockItem.class b/build/_compileJava_2/net/minecraft/world/item/ItemNameBlockItem.class new file mode 100644 index 000000000..1579d7a7e Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/item/ItemNameBlockItem.class differ diff --git a/build/_compileJava_2/net/minecraft/world/item/ItemStack$TooltipPart.class b/build/_compileJava_2/net/minecraft/world/item/ItemStack$TooltipPart.class new file mode 100644 index 000000000..555f4cd63 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/item/ItemStack$TooltipPart.class differ diff --git a/build/_compileJava_2/net/minecraft/world/item/ItemStack.class b/build/_compileJava_2/net/minecraft/world/item/ItemStack.class new file mode 100644 index 000000000..6e19c934a Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/item/ItemStack.class differ diff --git a/build/_compileJava_2/net/minecraft/world/item/ItemStackLinkedSet$1.class b/build/_compileJava_2/net/minecraft/world/item/ItemStackLinkedSet$1.class new file mode 100644 index 000000000..7feef5fc7 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/item/ItemStackLinkedSet$1.class differ diff --git a/build/_compileJava_2/net/minecraft/world/item/ItemStackLinkedSet.class b/build/_compileJava_2/net/minecraft/world/item/ItemStackLinkedSet.class new file mode 100644 index 000000000..f7e138fb6 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/item/ItemStackLinkedSet.class differ diff --git a/build/_compileJava_2/net/minecraft/world/item/ItemUtils.class b/build/_compileJava_2/net/minecraft/world/item/ItemUtils.class new file mode 100644 index 000000000..b6fd3fb86 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/item/ItemUtils.class differ diff --git a/build/_compileJava_2/net/minecraft/world/item/Items$1.class b/build/_compileJava_2/net/minecraft/world/item/Items$1.class new file mode 100644 index 000000000..354b2090c Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/item/Items$1.class differ diff --git a/build/_compileJava_2/net/minecraft/world/item/Items.class b/build/_compileJava_2/net/minecraft/world/item/Items.class new file mode 100644 index 000000000..4108011fb Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/item/Items.class differ diff --git a/build/_compileJava_2/net/minecraft/world/item/KnowledgeBookItem.class b/build/_compileJava_2/net/minecraft/world/item/KnowledgeBookItem.class new file mode 100644 index 000000000..7002521e1 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/item/KnowledgeBookItem.class differ diff --git a/build/_compileJava_2/net/minecraft/world/item/LeadItem.class b/build/_compileJava_2/net/minecraft/world/item/LeadItem.class new file mode 100644 index 000000000..e4b0edb42 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/item/LeadItem.class differ diff --git a/build/_compileJava_2/net/minecraft/world/item/LingeringPotionItem.class b/build/_compileJava_2/net/minecraft/world/item/LingeringPotionItem.class new file mode 100644 index 000000000..5874210a6 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/item/LingeringPotionItem.class differ diff --git a/build/_compileJava_2/net/minecraft/world/item/MapItem.class b/build/_compileJava_2/net/minecraft/world/item/MapItem.class new file mode 100644 index 000000000..82e2a9a2a Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/item/MapItem.class differ diff --git a/build/_compileJava_2/net/minecraft/world/item/MilkBucketItem.class b/build/_compileJava_2/net/minecraft/world/item/MilkBucketItem.class new file mode 100644 index 000000000..e3b85e1f5 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/item/MilkBucketItem.class differ diff --git a/build/_compileJava_2/net/minecraft/world/item/MinecartItem$1.class b/build/_compileJava_2/net/minecraft/world/item/MinecartItem$1.class new file mode 100644 index 000000000..13ae32d69 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/item/MinecartItem$1.class differ diff --git a/build/_compileJava_2/net/minecraft/world/item/MinecartItem.class b/build/_compileJava_2/net/minecraft/world/item/MinecartItem.class new file mode 100644 index 000000000..d44b8a013 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/item/MinecartItem.class differ diff --git a/build/_compileJava_2/net/minecraft/world/item/MobBucketItem.class b/build/_compileJava_2/net/minecraft/world/item/MobBucketItem.class new file mode 100644 index 000000000..afbc589e9 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/item/MobBucketItem.class differ diff --git a/build/_compileJava_2/net/minecraft/world/item/NameTagItem.class b/build/_compileJava_2/net/minecraft/world/item/NameTagItem.class new file mode 100644 index 000000000..b4d3ad052 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/item/NameTagItem.class differ diff --git a/build/_compileJava_2/net/minecraft/world/item/PickaxeItem.class b/build/_compileJava_2/net/minecraft/world/item/PickaxeItem.class new file mode 100644 index 000000000..798aeddf3 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/item/PickaxeItem.class differ diff --git a/build/_compileJava_2/net/minecraft/world/item/PlaceOnWaterBlockItem.class b/build/_compileJava_2/net/minecraft/world/item/PlaceOnWaterBlockItem.class new file mode 100644 index 000000000..2333ccebb Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/item/PlaceOnWaterBlockItem.class differ diff --git a/build/_compileJava_2/net/minecraft/world/item/PlayerHeadItem.class b/build/_compileJava_2/net/minecraft/world/item/PlayerHeadItem.class new file mode 100644 index 000000000..9479e3c56 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/item/PlayerHeadItem.class differ diff --git a/build/_compileJava_2/net/minecraft/world/item/PotionItem.class b/build/_compileJava_2/net/minecraft/world/item/PotionItem.class new file mode 100644 index 000000000..eb9aec384 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/item/PotionItem.class differ diff --git a/build/_compileJava_2/net/minecraft/world/item/ProjectileWeaponItem.class b/build/_compileJava_2/net/minecraft/world/item/ProjectileWeaponItem.class new file mode 100644 index 000000000..49cdaa146 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/item/ProjectileWeaponItem.class differ diff --git a/build/_compileJava_2/net/minecraft/world/item/Rarity.class b/build/_compileJava_2/net/minecraft/world/item/Rarity.class new file mode 100644 index 000000000..6c5c89875 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/item/Rarity.class differ diff --git a/build/_compileJava_2/net/minecraft/world/item/RecordItem.class b/build/_compileJava_2/net/minecraft/world/item/RecordItem.class new file mode 100644 index 000000000..4b96454f0 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/item/RecordItem.class differ diff --git a/build/_compileJava_2/net/minecraft/world/item/SaddleItem.class b/build/_compileJava_2/net/minecraft/world/item/SaddleItem.class new file mode 100644 index 000000000..2208fa2ee Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/item/SaddleItem.class differ diff --git a/build/_compileJava_2/net/minecraft/world/item/ScaffoldingBlockItem.class b/build/_compileJava_2/net/minecraft/world/item/ScaffoldingBlockItem.class new file mode 100644 index 000000000..61930496e Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/item/ScaffoldingBlockItem.class differ diff --git a/build/_compileJava_2/net/minecraft/world/item/ServerItemCooldowns.class b/build/_compileJava_2/net/minecraft/world/item/ServerItemCooldowns.class new file mode 100644 index 000000000..461c3eccd Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/item/ServerItemCooldowns.class differ diff --git a/build/_compileJava_2/net/minecraft/world/item/ShearsItem.class b/build/_compileJava_2/net/minecraft/world/item/ShearsItem.class new file mode 100644 index 000000000..98f5ceb64 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/item/ShearsItem.class differ diff --git a/build/_compileJava_2/net/minecraft/world/item/ShieldItem.class b/build/_compileJava_2/net/minecraft/world/item/ShieldItem.class new file mode 100644 index 000000000..388bc0d5b Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/item/ShieldItem.class differ diff --git a/build/_compileJava_2/net/minecraft/world/item/ShovelItem.class b/build/_compileJava_2/net/minecraft/world/item/ShovelItem.class new file mode 100644 index 000000000..3542ed754 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/item/ShovelItem.class differ diff --git a/build/_compileJava_2/net/minecraft/world/item/SignApplicator.class b/build/_compileJava_2/net/minecraft/world/item/SignApplicator.class new file mode 100644 index 000000000..5d8edaed4 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/item/SignApplicator.class differ diff --git a/build/_compileJava_2/net/minecraft/world/item/SignItem.class b/build/_compileJava_2/net/minecraft/world/item/SignItem.class new file mode 100644 index 000000000..58699fc7d Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/item/SignItem.class differ diff --git a/build/_compileJava_2/net/minecraft/world/item/SimpleFoiledItem.class b/build/_compileJava_2/net/minecraft/world/item/SimpleFoiledItem.class new file mode 100644 index 000000000..106cab8bb Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/item/SimpleFoiledItem.class differ diff --git a/build/_compileJava_2/net/minecraft/world/item/SmithingTemplateItem.class b/build/_compileJava_2/net/minecraft/world/item/SmithingTemplateItem.class new file mode 100644 index 000000000..02e5371f9 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/item/SmithingTemplateItem.class differ diff --git a/build/_compileJava_2/net/minecraft/world/item/SnowballItem.class b/build/_compileJava_2/net/minecraft/world/item/SnowballItem.class new file mode 100644 index 000000000..3762f8e0e Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/item/SnowballItem.class differ diff --git a/build/_compileJava_2/net/minecraft/world/item/SolidBucketItem.class b/build/_compileJava_2/net/minecraft/world/item/SolidBucketItem.class new file mode 100644 index 000000000..9d45a7abb Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/item/SolidBucketItem.class differ diff --git a/build/_compileJava_2/net/minecraft/world/item/SpawnEggItem.class b/build/_compileJava_2/net/minecraft/world/item/SpawnEggItem.class new file mode 100644 index 000000000..32c2cb8fe Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/item/SpawnEggItem.class differ diff --git a/build/_compileJava_2/net/minecraft/world/item/SpectralArrowItem.class b/build/_compileJava_2/net/minecraft/world/item/SpectralArrowItem.class new file mode 100644 index 000000000..c7c60de0e Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/item/SpectralArrowItem.class differ diff --git a/build/_compileJava_2/net/minecraft/world/item/SplashPotionItem.class b/build/_compileJava_2/net/minecraft/world/item/SplashPotionItem.class new file mode 100644 index 000000000..811e42f88 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/item/SplashPotionItem.class differ diff --git a/build/_compileJava_2/net/minecraft/world/item/SpyglassItem.class b/build/_compileJava_2/net/minecraft/world/item/SpyglassItem.class new file mode 100644 index 000000000..926b93a39 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/item/SpyglassItem.class differ diff --git a/build/_compileJava_2/net/minecraft/world/item/StandingAndWallBlockItem.class b/build/_compileJava_2/net/minecraft/world/item/StandingAndWallBlockItem.class new file mode 100644 index 000000000..b036ece90 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/item/StandingAndWallBlockItem.class differ diff --git a/build/_compileJava_2/net/minecraft/world/item/SuspiciousStewItem.class b/build/_compileJava_2/net/minecraft/world/item/SuspiciousStewItem.class new file mode 100644 index 000000000..c661dc3ad Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/item/SuspiciousStewItem.class differ diff --git a/build/_compileJava_2/net/minecraft/world/item/SwordItem.class b/build/_compileJava_2/net/minecraft/world/item/SwordItem.class new file mode 100644 index 000000000..53cecb516 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/item/SwordItem.class differ diff --git a/build/_compileJava_2/net/minecraft/world/item/ThrowablePotionItem.class b/build/_compileJava_2/net/minecraft/world/item/ThrowablePotionItem.class new file mode 100644 index 000000000..8433d1e5c Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/item/ThrowablePotionItem.class differ diff --git a/build/_compileJava_2/net/minecraft/world/item/Tier.class b/build/_compileJava_2/net/minecraft/world/item/Tier.class new file mode 100644 index 000000000..265e16afa Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/item/Tier.class differ diff --git a/build/_compileJava_2/net/minecraft/world/item/TieredItem.class b/build/_compileJava_2/net/minecraft/world/item/TieredItem.class new file mode 100644 index 000000000..a7b834829 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/item/TieredItem.class differ diff --git a/build/_compileJava_2/net/minecraft/world/item/Tiers.class b/build/_compileJava_2/net/minecraft/world/item/Tiers.class new file mode 100644 index 000000000..aa97b6a33 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/item/Tiers.class differ diff --git a/build/_compileJava_2/net/minecraft/world/item/TippedArrowItem.class b/build/_compileJava_2/net/minecraft/world/item/TippedArrowItem.class new file mode 100644 index 000000000..fe03a4228 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/item/TippedArrowItem.class differ diff --git a/build/_compileJava_2/net/minecraft/world/item/TooltipFlag$Default.class b/build/_compileJava_2/net/minecraft/world/item/TooltipFlag$Default.class new file mode 100644 index 000000000..3685f74c3 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/item/TooltipFlag$Default.class differ diff --git a/build/_compileJava_2/net/minecraft/world/item/TooltipFlag.class b/build/_compileJava_2/net/minecraft/world/item/TooltipFlag.class new file mode 100644 index 000000000..e83642e9b Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/item/TooltipFlag.class differ diff --git a/build/_compileJava_2/net/minecraft/world/item/TridentItem.class b/build/_compileJava_2/net/minecraft/world/item/TridentItem.class new file mode 100644 index 000000000..f97b5e290 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/item/TridentItem.class differ diff --git a/build/_compileJava_2/net/minecraft/world/item/UseAnim.class b/build/_compileJava_2/net/minecraft/world/item/UseAnim.class new file mode 100644 index 000000000..81e49de4b Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/item/UseAnim.class differ diff --git a/build/_compileJava_2/net/minecraft/world/item/Vanishable.class b/build/_compileJava_2/net/minecraft/world/item/Vanishable.class new file mode 100644 index 000000000..91d0bfca1 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/item/Vanishable.class differ diff --git a/build/_compileJava_2/net/minecraft/world/item/WritableBookItem.class b/build/_compileJava_2/net/minecraft/world/item/WritableBookItem.class new file mode 100644 index 000000000..09af41aa9 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/item/WritableBookItem.class differ diff --git a/build/_compileJava_2/net/minecraft/world/item/WrittenBookItem.class b/build/_compileJava_2/net/minecraft/world/item/WrittenBookItem.class new file mode 100644 index 000000000..13dbc936d Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/item/WrittenBookItem.class differ diff --git a/build/_compileJava_2/net/minecraft/world/item/alchemy/Potion.class b/build/_compileJava_2/net/minecraft/world/item/alchemy/Potion.class new file mode 100644 index 000000000..2f414168b Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/item/alchemy/Potion.class differ diff --git a/build/_compileJava_2/net/minecraft/world/item/alchemy/PotionBrewing$Mix.class b/build/_compileJava_2/net/minecraft/world/item/alchemy/PotionBrewing$Mix.class new file mode 100644 index 000000000..64707612a Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/item/alchemy/PotionBrewing$Mix.class differ diff --git a/build/_compileJava_2/net/minecraft/world/item/alchemy/PotionBrewing.class b/build/_compileJava_2/net/minecraft/world/item/alchemy/PotionBrewing.class new file mode 100644 index 000000000..e0818de06 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/item/alchemy/PotionBrewing.class differ diff --git a/build/_compileJava_2/net/minecraft/world/item/alchemy/PotionUtils.class b/build/_compileJava_2/net/minecraft/world/item/alchemy/PotionUtils.class new file mode 100644 index 000000000..d0632cd72 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/item/alchemy/PotionUtils.class differ diff --git a/build/_compileJava_2/net/minecraft/world/item/alchemy/Potions.class b/build/_compileJava_2/net/minecraft/world/item/alchemy/Potions.class new file mode 100644 index 000000000..687683a2c Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/item/alchemy/Potions.class differ diff --git a/build/_compileJava_2/net/minecraft/world/item/alchemy/package-info.class b/build/_compileJava_2/net/minecraft/world/item/alchemy/package-info.class new file mode 100644 index 000000000..474af3d7d Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/item/alchemy/package-info.class differ diff --git a/build/_compileJava_2/net/minecraft/world/item/armortrim/ArmorTrim.class b/build/_compileJava_2/net/minecraft/world/item/armortrim/ArmorTrim.class new file mode 100644 index 000000000..ad83e6e28 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/item/armortrim/ArmorTrim.class differ diff --git a/build/_compileJava_2/net/minecraft/world/item/armortrim/TrimMaterial.class b/build/_compileJava_2/net/minecraft/world/item/armortrim/TrimMaterial.class new file mode 100644 index 000000000..c12c7a802 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/item/armortrim/TrimMaterial.class differ diff --git a/build/_compileJava_2/net/minecraft/world/item/armortrim/TrimMaterials.class b/build/_compileJava_2/net/minecraft/world/item/armortrim/TrimMaterials.class new file mode 100644 index 000000000..9fa1beb88 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/item/armortrim/TrimMaterials.class differ diff --git a/build/_compileJava_2/net/minecraft/world/item/armortrim/TrimPattern.class b/build/_compileJava_2/net/minecraft/world/item/armortrim/TrimPattern.class new file mode 100644 index 000000000..fe117fc10 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/item/armortrim/TrimPattern.class differ diff --git a/build/_compileJava_2/net/minecraft/world/item/armortrim/TrimPatterns.class b/build/_compileJava_2/net/minecraft/world/item/armortrim/TrimPatterns.class new file mode 100644 index 000000000..690cf0086 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/item/armortrim/TrimPatterns.class differ diff --git a/build/_compileJava_2/net/minecraft/world/item/armortrim/package-info.class b/build/_compileJava_2/net/minecraft/world/item/armortrim/package-info.class new file mode 100644 index 000000000..8fd29b7b7 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/item/armortrim/package-info.class differ diff --git a/build/_compileJava_2/net/minecraft/world/item/context/BlockPlaceContext.class b/build/_compileJava_2/net/minecraft/world/item/context/BlockPlaceContext.class new file mode 100644 index 000000000..0f05c1f13 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/item/context/BlockPlaceContext.class differ diff --git a/build/_compileJava_2/net/minecraft/world/item/context/DirectionalPlaceContext$1.class b/build/_compileJava_2/net/minecraft/world/item/context/DirectionalPlaceContext$1.class new file mode 100644 index 000000000..ca8de0403 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/item/context/DirectionalPlaceContext$1.class differ diff --git a/build/_compileJava_2/net/minecraft/world/item/context/DirectionalPlaceContext.class b/build/_compileJava_2/net/minecraft/world/item/context/DirectionalPlaceContext.class new file mode 100644 index 000000000..062132be8 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/item/context/DirectionalPlaceContext.class differ diff --git a/build/_compileJava_2/net/minecraft/world/item/context/UseOnContext.class b/build/_compileJava_2/net/minecraft/world/item/context/UseOnContext.class new file mode 100644 index 000000000..31ca8a4f6 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/item/context/UseOnContext.class differ diff --git a/build/_compileJava_2/net/minecraft/world/item/context/package-info.class b/build/_compileJava_2/net/minecraft/world/item/context/package-info.class new file mode 100644 index 000000000..44c00fe02 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/item/context/package-info.class differ diff --git a/build/_compileJava_2/net/minecraft/world/item/crafting/AbstractCookingRecipe.class b/build/_compileJava_2/net/minecraft/world/item/crafting/AbstractCookingRecipe.class new file mode 100644 index 000000000..856a3cd30 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/item/crafting/AbstractCookingRecipe.class differ diff --git a/build/_compileJava_2/net/minecraft/world/item/crafting/ArmorDyeRecipe.class b/build/_compileJava_2/net/minecraft/world/item/crafting/ArmorDyeRecipe.class new file mode 100644 index 000000000..8357765bc Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/item/crafting/ArmorDyeRecipe.class differ diff --git a/build/_compileJava_2/net/minecraft/world/item/crafting/BannerDuplicateRecipe.class b/build/_compileJava_2/net/minecraft/world/item/crafting/BannerDuplicateRecipe.class new file mode 100644 index 000000000..a8d1613b2 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/item/crafting/BannerDuplicateRecipe.class differ diff --git a/build/_compileJava_2/net/minecraft/world/item/crafting/BlastingRecipe.class b/build/_compileJava_2/net/minecraft/world/item/crafting/BlastingRecipe.class new file mode 100644 index 000000000..2551f2ea8 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/item/crafting/BlastingRecipe.class differ diff --git a/build/_compileJava_2/net/minecraft/world/item/crafting/BookCloningRecipe.class b/build/_compileJava_2/net/minecraft/world/item/crafting/BookCloningRecipe.class new file mode 100644 index 000000000..de52de02d Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/item/crafting/BookCloningRecipe.class differ diff --git a/build/_compileJava_2/net/minecraft/world/item/crafting/CampfireCookingRecipe.class b/build/_compileJava_2/net/minecraft/world/item/crafting/CampfireCookingRecipe.class new file mode 100644 index 000000000..4405e471e Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/item/crafting/CampfireCookingRecipe.class differ diff --git a/build/_compileJava_2/net/minecraft/world/item/crafting/CookingBookCategory.class b/build/_compileJava_2/net/minecraft/world/item/crafting/CookingBookCategory.class new file mode 100644 index 000000000..3d5fe813c Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/item/crafting/CookingBookCategory.class differ diff --git a/build/_compileJava_2/net/minecraft/world/item/crafting/CraftingBookCategory.class b/build/_compileJava_2/net/minecraft/world/item/crafting/CraftingBookCategory.class new file mode 100644 index 000000000..03eb0926a Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/item/crafting/CraftingBookCategory.class differ diff --git a/build/_compileJava_2/net/minecraft/world/item/crafting/CraftingRecipe.class b/build/_compileJava_2/net/minecraft/world/item/crafting/CraftingRecipe.class new file mode 100644 index 000000000..fe4939580 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/item/crafting/CraftingRecipe.class differ diff --git a/build/_compileJava_2/net/minecraft/world/item/crafting/CustomRecipe.class b/build/_compileJava_2/net/minecraft/world/item/crafting/CustomRecipe.class new file mode 100644 index 000000000..d8d4e8371 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/item/crafting/CustomRecipe.class differ diff --git a/build/_compileJava_2/net/minecraft/world/item/crafting/DecoratedPotRecipe.class b/build/_compileJava_2/net/minecraft/world/item/crafting/DecoratedPotRecipe.class new file mode 100644 index 000000000..ba3620c67 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/item/crafting/DecoratedPotRecipe.class differ diff --git a/build/_compileJava_2/net/minecraft/world/item/crafting/FireworkRocketRecipe.class b/build/_compileJava_2/net/minecraft/world/item/crafting/FireworkRocketRecipe.class new file mode 100644 index 000000000..8b2ff804e Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/item/crafting/FireworkRocketRecipe.class differ diff --git a/build/_compileJava_2/net/minecraft/world/item/crafting/FireworkStarFadeRecipe.class b/build/_compileJava_2/net/minecraft/world/item/crafting/FireworkStarFadeRecipe.class new file mode 100644 index 000000000..19171dd17 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/item/crafting/FireworkStarFadeRecipe.class differ diff --git a/build/_compileJava_2/net/minecraft/world/item/crafting/FireworkStarRecipe.class b/build/_compileJava_2/net/minecraft/world/item/crafting/FireworkStarRecipe.class new file mode 100644 index 000000000..d9b781e04 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/item/crafting/FireworkStarRecipe.class differ diff --git a/build/_compileJava_2/net/minecraft/world/item/crafting/Ingredient$ItemValue.class b/build/_compileJava_2/net/minecraft/world/item/crafting/Ingredient$ItemValue.class new file mode 100644 index 000000000..3ed34679a Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/item/crafting/Ingredient$ItemValue.class differ diff --git a/build/_compileJava_2/net/minecraft/world/item/crafting/Ingredient$TagValue.class b/build/_compileJava_2/net/minecraft/world/item/crafting/Ingredient$TagValue.class new file mode 100644 index 000000000..ea8828ff3 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/item/crafting/Ingredient$TagValue.class differ diff --git a/build/_compileJava_2/net/minecraft/world/item/crafting/Ingredient$Value.class b/build/_compileJava_2/net/minecraft/world/item/crafting/Ingredient$Value.class new file mode 100644 index 000000000..6bcc4d913 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/item/crafting/Ingredient$Value.class differ diff --git a/build/_compileJava_2/net/minecraft/world/item/crafting/Ingredient.class b/build/_compileJava_2/net/minecraft/world/item/crafting/Ingredient.class new file mode 100644 index 000000000..666353477 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/item/crafting/Ingredient.class differ diff --git a/build/_compileJava_2/net/minecraft/world/item/crafting/MapCloningRecipe.class b/build/_compileJava_2/net/minecraft/world/item/crafting/MapCloningRecipe.class new file mode 100644 index 000000000..497877356 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/item/crafting/MapCloningRecipe.class differ diff --git a/build/_compileJava_2/net/minecraft/world/item/crafting/MapExtendingRecipe.class b/build/_compileJava_2/net/minecraft/world/item/crafting/MapExtendingRecipe.class new file mode 100644 index 000000000..565e4fff6 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/item/crafting/MapExtendingRecipe.class differ diff --git a/build/_compileJava_2/net/minecraft/world/item/crafting/Recipe.class b/build/_compileJava_2/net/minecraft/world/item/crafting/Recipe.class new file mode 100644 index 000000000..cae2819ab Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/item/crafting/Recipe.class differ diff --git a/build/_compileJava_2/net/minecraft/world/item/crafting/RecipeManager$1.class b/build/_compileJava_2/net/minecraft/world/item/crafting/RecipeManager$1.class new file mode 100644 index 000000000..df752ddbd Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/item/crafting/RecipeManager$1.class differ diff --git a/build/_compileJava_2/net/minecraft/world/item/crafting/RecipeManager$CachedCheck.class b/build/_compileJava_2/net/minecraft/world/item/crafting/RecipeManager$CachedCheck.class new file mode 100644 index 000000000..2dfa2e98d Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/item/crafting/RecipeManager$CachedCheck.class differ diff --git a/build/_compileJava_2/net/minecraft/world/item/crafting/RecipeManager.class b/build/_compileJava_2/net/minecraft/world/item/crafting/RecipeManager.class new file mode 100644 index 000000000..50624793c Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/item/crafting/RecipeManager.class differ diff --git a/build/_compileJava_2/net/minecraft/world/item/crafting/RecipeSerializer.class b/build/_compileJava_2/net/minecraft/world/item/crafting/RecipeSerializer.class new file mode 100644 index 000000000..8927a4c25 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/item/crafting/RecipeSerializer.class differ diff --git a/build/_compileJava_2/net/minecraft/world/item/crafting/RecipeType$1.class b/build/_compileJava_2/net/minecraft/world/item/crafting/RecipeType$1.class new file mode 100644 index 000000000..3a4450dbf Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/item/crafting/RecipeType$1.class differ diff --git a/build/_compileJava_2/net/minecraft/world/item/crafting/RecipeType$2.class b/build/_compileJava_2/net/minecraft/world/item/crafting/RecipeType$2.class new file mode 100644 index 000000000..a5cfac76e Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/item/crafting/RecipeType$2.class differ diff --git a/build/_compileJava_2/net/minecraft/world/item/crafting/RecipeType.class b/build/_compileJava_2/net/minecraft/world/item/crafting/RecipeType.class new file mode 100644 index 000000000..1618448cb Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/item/crafting/RecipeType.class differ diff --git a/build/_compileJava_2/net/minecraft/world/item/crafting/RepairItemRecipe.class b/build/_compileJava_2/net/minecraft/world/item/crafting/RepairItemRecipe.class new file mode 100644 index 000000000..d567dcd41 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/item/crafting/RepairItemRecipe.class differ diff --git a/build/_compileJava_2/net/minecraft/world/item/crafting/ShapedRecipe$Serializer.class b/build/_compileJava_2/net/minecraft/world/item/crafting/ShapedRecipe$Serializer.class new file mode 100644 index 000000000..07e342724 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/item/crafting/ShapedRecipe$Serializer.class differ diff --git a/build/_compileJava_2/net/minecraft/world/item/crafting/ShapedRecipe.class b/build/_compileJava_2/net/minecraft/world/item/crafting/ShapedRecipe.class new file mode 100644 index 000000000..2df2092d3 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/item/crafting/ShapedRecipe.class differ diff --git a/build/_compileJava_2/net/minecraft/world/item/crafting/ShapelessRecipe$Serializer.class b/build/_compileJava_2/net/minecraft/world/item/crafting/ShapelessRecipe$Serializer.class new file mode 100644 index 000000000..fb69012af Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/item/crafting/ShapelessRecipe$Serializer.class differ diff --git a/build/_compileJava_2/net/minecraft/world/item/crafting/ShapelessRecipe.class b/build/_compileJava_2/net/minecraft/world/item/crafting/ShapelessRecipe.class new file mode 100644 index 000000000..485340f84 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/item/crafting/ShapelessRecipe.class differ diff --git a/build/_compileJava_2/net/minecraft/world/item/crafting/ShieldDecorationRecipe.class b/build/_compileJava_2/net/minecraft/world/item/crafting/ShieldDecorationRecipe.class new file mode 100644 index 000000000..c6d1d4e90 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/item/crafting/ShieldDecorationRecipe.class differ diff --git a/build/_compileJava_2/net/minecraft/world/item/crafting/ShulkerBoxColoring.class b/build/_compileJava_2/net/minecraft/world/item/crafting/ShulkerBoxColoring.class new file mode 100644 index 000000000..9a06c1d8d Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/item/crafting/ShulkerBoxColoring.class differ diff --git a/build/_compileJava_2/net/minecraft/world/item/crafting/SimpleCookingSerializer$CookieBaker.class b/build/_compileJava_2/net/minecraft/world/item/crafting/SimpleCookingSerializer$CookieBaker.class new file mode 100644 index 000000000..7c7dad273 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/item/crafting/SimpleCookingSerializer$CookieBaker.class differ diff --git a/build/_compileJava_2/net/minecraft/world/item/crafting/SimpleCookingSerializer.class b/build/_compileJava_2/net/minecraft/world/item/crafting/SimpleCookingSerializer.class new file mode 100644 index 000000000..b2d6e84ad Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/item/crafting/SimpleCookingSerializer.class differ diff --git a/build/_compileJava_2/net/minecraft/world/item/crafting/SimpleCraftingRecipeSerializer$Factory.class b/build/_compileJava_2/net/minecraft/world/item/crafting/SimpleCraftingRecipeSerializer$Factory.class new file mode 100644 index 000000000..7848532e7 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/item/crafting/SimpleCraftingRecipeSerializer$Factory.class differ diff --git a/build/_compileJava_2/net/minecraft/world/item/crafting/SimpleCraftingRecipeSerializer.class b/build/_compileJava_2/net/minecraft/world/item/crafting/SimpleCraftingRecipeSerializer.class new file mode 100644 index 000000000..6625ae106 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/item/crafting/SimpleCraftingRecipeSerializer.class differ diff --git a/build/_compileJava_2/net/minecraft/world/item/crafting/SingleItemRecipe$Serializer$SingleItemMaker.class b/build/_compileJava_2/net/minecraft/world/item/crafting/SingleItemRecipe$Serializer$SingleItemMaker.class new file mode 100644 index 000000000..e662379a8 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/item/crafting/SingleItemRecipe$Serializer$SingleItemMaker.class differ diff --git a/build/_compileJava_2/net/minecraft/world/item/crafting/SingleItemRecipe$Serializer.class b/build/_compileJava_2/net/minecraft/world/item/crafting/SingleItemRecipe$Serializer.class new file mode 100644 index 000000000..e01eb0a75 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/item/crafting/SingleItemRecipe$Serializer.class differ diff --git a/build/_compileJava_2/net/minecraft/world/item/crafting/SingleItemRecipe.class b/build/_compileJava_2/net/minecraft/world/item/crafting/SingleItemRecipe.class new file mode 100644 index 000000000..e6d214a68 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/item/crafting/SingleItemRecipe.class differ diff --git a/build/_compileJava_2/net/minecraft/world/item/crafting/SmeltingRecipe.class b/build/_compileJava_2/net/minecraft/world/item/crafting/SmeltingRecipe.class new file mode 100644 index 000000000..0f7a60fdd Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/item/crafting/SmeltingRecipe.class differ diff --git a/build/_compileJava_2/net/minecraft/world/item/crafting/SmithingRecipe.class b/build/_compileJava_2/net/minecraft/world/item/crafting/SmithingRecipe.class new file mode 100644 index 000000000..8387f976e Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/item/crafting/SmithingRecipe.class differ diff --git a/build/_compileJava_2/net/minecraft/world/item/crafting/SmithingTransformRecipe$Serializer.class b/build/_compileJava_2/net/minecraft/world/item/crafting/SmithingTransformRecipe$Serializer.class new file mode 100644 index 000000000..15c89467a Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/item/crafting/SmithingTransformRecipe$Serializer.class differ diff --git a/build/_compileJava_2/net/minecraft/world/item/crafting/SmithingTransformRecipe.class b/build/_compileJava_2/net/minecraft/world/item/crafting/SmithingTransformRecipe.class new file mode 100644 index 000000000..eef9950d3 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/item/crafting/SmithingTransformRecipe.class differ diff --git a/build/_compileJava_2/net/minecraft/world/item/crafting/SmithingTrimRecipe$Serializer.class b/build/_compileJava_2/net/minecraft/world/item/crafting/SmithingTrimRecipe$Serializer.class new file mode 100644 index 000000000..40dbbd8cb Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/item/crafting/SmithingTrimRecipe$Serializer.class differ diff --git a/build/_compileJava_2/net/minecraft/world/item/crafting/SmithingTrimRecipe.class b/build/_compileJava_2/net/minecraft/world/item/crafting/SmithingTrimRecipe.class new file mode 100644 index 000000000..7c066576e Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/item/crafting/SmithingTrimRecipe.class differ diff --git a/build/_compileJava_2/net/minecraft/world/item/crafting/SmokingRecipe.class b/build/_compileJava_2/net/minecraft/world/item/crafting/SmokingRecipe.class new file mode 100644 index 000000000..8a447b4d1 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/item/crafting/SmokingRecipe.class differ diff --git a/build/_compileJava_2/net/minecraft/world/item/crafting/StonecutterRecipe.class b/build/_compileJava_2/net/minecraft/world/item/crafting/StonecutterRecipe.class new file mode 100644 index 000000000..1560798cf Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/item/crafting/StonecutterRecipe.class differ diff --git a/build/_compileJava_2/net/minecraft/world/item/crafting/SuspiciousStewRecipe.class b/build/_compileJava_2/net/minecraft/world/item/crafting/SuspiciousStewRecipe.class new file mode 100644 index 000000000..56d1b0ab2 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/item/crafting/SuspiciousStewRecipe.class differ diff --git a/build/_compileJava_2/net/minecraft/world/item/crafting/TippedArrowRecipe.class b/build/_compileJava_2/net/minecraft/world/item/crafting/TippedArrowRecipe.class new file mode 100644 index 000000000..19f41fb36 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/item/crafting/TippedArrowRecipe.class differ diff --git a/build/_compileJava_2/net/minecraft/world/item/crafting/package-info.class b/build/_compileJava_2/net/minecraft/world/item/crafting/package-info.class new file mode 100644 index 000000000..76cb7b7a3 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/item/crafting/package-info.class differ diff --git a/build/_compileJava_2/net/minecraft/world/item/enchantment/ArrowDamageEnchantment.class b/build/_compileJava_2/net/minecraft/world/item/enchantment/ArrowDamageEnchantment.class new file mode 100644 index 000000000..b92de0717 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/item/enchantment/ArrowDamageEnchantment.class differ diff --git a/build/_compileJava_2/net/minecraft/world/item/enchantment/ArrowFireEnchantment.class b/build/_compileJava_2/net/minecraft/world/item/enchantment/ArrowFireEnchantment.class new file mode 100644 index 000000000..b0e66b647 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/item/enchantment/ArrowFireEnchantment.class differ diff --git a/build/_compileJava_2/net/minecraft/world/item/enchantment/ArrowInfiniteEnchantment.class b/build/_compileJava_2/net/minecraft/world/item/enchantment/ArrowInfiniteEnchantment.class new file mode 100644 index 000000000..5c92e59c3 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/item/enchantment/ArrowInfiniteEnchantment.class differ diff --git a/build/_compileJava_2/net/minecraft/world/item/enchantment/ArrowKnockbackEnchantment.class b/build/_compileJava_2/net/minecraft/world/item/enchantment/ArrowKnockbackEnchantment.class new file mode 100644 index 000000000..78a81bea8 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/item/enchantment/ArrowKnockbackEnchantment.class differ diff --git a/build/_compileJava_2/net/minecraft/world/item/enchantment/ArrowPiercingEnchantment.class b/build/_compileJava_2/net/minecraft/world/item/enchantment/ArrowPiercingEnchantment.class new file mode 100644 index 000000000..5e561f784 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/item/enchantment/ArrowPiercingEnchantment.class differ diff --git a/build/_compileJava_2/net/minecraft/world/item/enchantment/BindingCurseEnchantment.class b/build/_compileJava_2/net/minecraft/world/item/enchantment/BindingCurseEnchantment.class new file mode 100644 index 000000000..0c0747a71 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/item/enchantment/BindingCurseEnchantment.class differ diff --git a/build/_compileJava_2/net/minecraft/world/item/enchantment/DamageEnchantment.class b/build/_compileJava_2/net/minecraft/world/item/enchantment/DamageEnchantment.class new file mode 100644 index 000000000..33fa9a647 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/item/enchantment/DamageEnchantment.class differ diff --git a/build/_compileJava_2/net/minecraft/world/item/enchantment/DigDurabilityEnchantment.class b/build/_compileJava_2/net/minecraft/world/item/enchantment/DigDurabilityEnchantment.class new file mode 100644 index 000000000..84ad47ae3 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/item/enchantment/DigDurabilityEnchantment.class differ diff --git a/build/_compileJava_2/net/minecraft/world/item/enchantment/DiggingEnchantment.class b/build/_compileJava_2/net/minecraft/world/item/enchantment/DiggingEnchantment.class new file mode 100644 index 000000000..a89682548 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/item/enchantment/DiggingEnchantment.class differ diff --git a/build/_compileJava_2/net/minecraft/world/item/enchantment/Enchantment$Rarity.class b/build/_compileJava_2/net/minecraft/world/item/enchantment/Enchantment$Rarity.class new file mode 100644 index 000000000..c8f355c15 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/item/enchantment/Enchantment$Rarity.class differ diff --git a/build/_compileJava_2/net/minecraft/world/item/enchantment/Enchantment.class b/build/_compileJava_2/net/minecraft/world/item/enchantment/Enchantment.class new file mode 100644 index 000000000..707053c5a Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/item/enchantment/Enchantment.class differ diff --git a/build/_compileJava_2/net/minecraft/world/item/enchantment/EnchantmentCategory$1.class b/build/_compileJava_2/net/minecraft/world/item/enchantment/EnchantmentCategory$1.class new file mode 100644 index 000000000..90d653886 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/item/enchantment/EnchantmentCategory$1.class differ diff --git a/build/_compileJava_2/net/minecraft/world/item/enchantment/EnchantmentCategory$10.class b/build/_compileJava_2/net/minecraft/world/item/enchantment/EnchantmentCategory$10.class new file mode 100644 index 000000000..d009d238b Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/item/enchantment/EnchantmentCategory$10.class differ diff --git a/build/_compileJava_2/net/minecraft/world/item/enchantment/EnchantmentCategory$11.class b/build/_compileJava_2/net/minecraft/world/item/enchantment/EnchantmentCategory$11.class new file mode 100644 index 000000000..fdea12152 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/item/enchantment/EnchantmentCategory$11.class differ diff --git a/build/_compileJava_2/net/minecraft/world/item/enchantment/EnchantmentCategory$12.class b/build/_compileJava_2/net/minecraft/world/item/enchantment/EnchantmentCategory$12.class new file mode 100644 index 000000000..a25e7c131 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/item/enchantment/EnchantmentCategory$12.class differ diff --git a/build/_compileJava_2/net/minecraft/world/item/enchantment/EnchantmentCategory$13.class b/build/_compileJava_2/net/minecraft/world/item/enchantment/EnchantmentCategory$13.class new file mode 100644 index 000000000..fe165636e Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/item/enchantment/EnchantmentCategory$13.class differ diff --git a/build/_compileJava_2/net/minecraft/world/item/enchantment/EnchantmentCategory$14.class b/build/_compileJava_2/net/minecraft/world/item/enchantment/EnchantmentCategory$14.class new file mode 100644 index 000000000..10ed2a65e Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/item/enchantment/EnchantmentCategory$14.class differ diff --git a/build/_compileJava_2/net/minecraft/world/item/enchantment/EnchantmentCategory$2.class b/build/_compileJava_2/net/minecraft/world/item/enchantment/EnchantmentCategory$2.class new file mode 100644 index 000000000..11e30c1aa Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/item/enchantment/EnchantmentCategory$2.class differ diff --git a/build/_compileJava_2/net/minecraft/world/item/enchantment/EnchantmentCategory$3.class b/build/_compileJava_2/net/minecraft/world/item/enchantment/EnchantmentCategory$3.class new file mode 100644 index 000000000..f398ecfcf Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/item/enchantment/EnchantmentCategory$3.class differ diff --git a/build/_compileJava_2/net/minecraft/world/item/enchantment/EnchantmentCategory$4.class b/build/_compileJava_2/net/minecraft/world/item/enchantment/EnchantmentCategory$4.class new file mode 100644 index 000000000..1e4bce882 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/item/enchantment/EnchantmentCategory$4.class differ diff --git a/build/_compileJava_2/net/minecraft/world/item/enchantment/EnchantmentCategory$5.class b/build/_compileJava_2/net/minecraft/world/item/enchantment/EnchantmentCategory$5.class new file mode 100644 index 000000000..77c22874d Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/item/enchantment/EnchantmentCategory$5.class differ diff --git a/build/_compileJava_2/net/minecraft/world/item/enchantment/EnchantmentCategory$6.class b/build/_compileJava_2/net/minecraft/world/item/enchantment/EnchantmentCategory$6.class new file mode 100644 index 000000000..276fb4a5b Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/item/enchantment/EnchantmentCategory$6.class differ diff --git a/build/_compileJava_2/net/minecraft/world/item/enchantment/EnchantmentCategory$7.class b/build/_compileJava_2/net/minecraft/world/item/enchantment/EnchantmentCategory$7.class new file mode 100644 index 000000000..ac55e1ea6 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/item/enchantment/EnchantmentCategory$7.class differ diff --git a/build/_compileJava_2/net/minecraft/world/item/enchantment/EnchantmentCategory$8.class b/build/_compileJava_2/net/minecraft/world/item/enchantment/EnchantmentCategory$8.class new file mode 100644 index 000000000..e7cbac5b6 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/item/enchantment/EnchantmentCategory$8.class differ diff --git a/build/_compileJava_2/net/minecraft/world/item/enchantment/EnchantmentCategory$9.class b/build/_compileJava_2/net/minecraft/world/item/enchantment/EnchantmentCategory$9.class new file mode 100644 index 000000000..28b540336 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/item/enchantment/EnchantmentCategory$9.class differ diff --git a/build/_compileJava_2/net/minecraft/world/item/enchantment/EnchantmentCategory.class b/build/_compileJava_2/net/minecraft/world/item/enchantment/EnchantmentCategory.class new file mode 100644 index 000000000..6a29d0752 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/item/enchantment/EnchantmentCategory.class differ diff --git a/build/_compileJava_2/net/minecraft/world/item/enchantment/EnchantmentHelper$EnchantmentVisitor.class b/build/_compileJava_2/net/minecraft/world/item/enchantment/EnchantmentHelper$EnchantmentVisitor.class new file mode 100644 index 000000000..d0d666615 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/item/enchantment/EnchantmentHelper$EnchantmentVisitor.class differ diff --git a/build/_compileJava_2/net/minecraft/world/item/enchantment/EnchantmentHelper.class b/build/_compileJava_2/net/minecraft/world/item/enchantment/EnchantmentHelper.class new file mode 100644 index 000000000..9d91ef68a Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/item/enchantment/EnchantmentHelper.class differ diff --git a/build/_compileJava_2/net/minecraft/world/item/enchantment/EnchantmentInstance.class b/build/_compileJava_2/net/minecraft/world/item/enchantment/EnchantmentInstance.class new file mode 100644 index 000000000..e928b6816 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/item/enchantment/EnchantmentInstance.class differ diff --git a/build/_compileJava_2/net/minecraft/world/item/enchantment/Enchantments.class b/build/_compileJava_2/net/minecraft/world/item/enchantment/Enchantments.class new file mode 100644 index 000000000..df0561ba6 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/item/enchantment/Enchantments.class differ diff --git a/build/_compileJava_2/net/minecraft/world/item/enchantment/FireAspectEnchantment.class b/build/_compileJava_2/net/minecraft/world/item/enchantment/FireAspectEnchantment.class new file mode 100644 index 000000000..63ef415ab Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/item/enchantment/FireAspectEnchantment.class differ diff --git a/build/_compileJava_2/net/minecraft/world/item/enchantment/FishingSpeedEnchantment.class b/build/_compileJava_2/net/minecraft/world/item/enchantment/FishingSpeedEnchantment.class new file mode 100644 index 000000000..8cf6cdf25 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/item/enchantment/FishingSpeedEnchantment.class differ diff --git a/build/_compileJava_2/net/minecraft/world/item/enchantment/FrostWalkerEnchantment.class b/build/_compileJava_2/net/minecraft/world/item/enchantment/FrostWalkerEnchantment.class new file mode 100644 index 000000000..4d209fa4c Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/item/enchantment/FrostWalkerEnchantment.class differ diff --git a/build/_compileJava_2/net/minecraft/world/item/enchantment/KnockbackEnchantment.class b/build/_compileJava_2/net/minecraft/world/item/enchantment/KnockbackEnchantment.class new file mode 100644 index 000000000..2c5653cf2 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/item/enchantment/KnockbackEnchantment.class differ diff --git a/build/_compileJava_2/net/minecraft/world/item/enchantment/LootBonusEnchantment.class b/build/_compileJava_2/net/minecraft/world/item/enchantment/LootBonusEnchantment.class new file mode 100644 index 000000000..690125034 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/item/enchantment/LootBonusEnchantment.class differ diff --git a/build/_compileJava_2/net/minecraft/world/item/enchantment/MendingEnchantment.class b/build/_compileJava_2/net/minecraft/world/item/enchantment/MendingEnchantment.class new file mode 100644 index 000000000..b0f34a6ae Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/item/enchantment/MendingEnchantment.class differ diff --git a/build/_compileJava_2/net/minecraft/world/item/enchantment/MultiShotEnchantment.class b/build/_compileJava_2/net/minecraft/world/item/enchantment/MultiShotEnchantment.class new file mode 100644 index 000000000..1abad8636 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/item/enchantment/MultiShotEnchantment.class differ diff --git a/build/_compileJava_2/net/minecraft/world/item/enchantment/OxygenEnchantment.class b/build/_compileJava_2/net/minecraft/world/item/enchantment/OxygenEnchantment.class new file mode 100644 index 000000000..a339dc380 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/item/enchantment/OxygenEnchantment.class differ diff --git a/build/_compileJava_2/net/minecraft/world/item/enchantment/ProtectionEnchantment$Type.class b/build/_compileJava_2/net/minecraft/world/item/enchantment/ProtectionEnchantment$Type.class new file mode 100644 index 000000000..aa6589ad9 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/item/enchantment/ProtectionEnchantment$Type.class differ diff --git a/build/_compileJava_2/net/minecraft/world/item/enchantment/ProtectionEnchantment.class b/build/_compileJava_2/net/minecraft/world/item/enchantment/ProtectionEnchantment.class new file mode 100644 index 000000000..7a4c1f981 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/item/enchantment/ProtectionEnchantment.class differ diff --git a/build/_compileJava_2/net/minecraft/world/item/enchantment/QuickChargeEnchantment.class b/build/_compileJava_2/net/minecraft/world/item/enchantment/QuickChargeEnchantment.class new file mode 100644 index 000000000..3adfce92d Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/item/enchantment/QuickChargeEnchantment.class differ diff --git a/build/_compileJava_2/net/minecraft/world/item/enchantment/SoulSpeedEnchantment.class b/build/_compileJava_2/net/minecraft/world/item/enchantment/SoulSpeedEnchantment.class new file mode 100644 index 000000000..e1eb76596 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/item/enchantment/SoulSpeedEnchantment.class differ diff --git a/build/_compileJava_2/net/minecraft/world/item/enchantment/SweepingEdgeEnchantment.class b/build/_compileJava_2/net/minecraft/world/item/enchantment/SweepingEdgeEnchantment.class new file mode 100644 index 000000000..52669de36 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/item/enchantment/SweepingEdgeEnchantment.class differ diff --git a/build/_compileJava_2/net/minecraft/world/item/enchantment/SwiftSneakEnchantment.class b/build/_compileJava_2/net/minecraft/world/item/enchantment/SwiftSneakEnchantment.class new file mode 100644 index 000000000..20296be1e Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/item/enchantment/SwiftSneakEnchantment.class differ diff --git a/build/_compileJava_2/net/minecraft/world/item/enchantment/ThornsEnchantment.class b/build/_compileJava_2/net/minecraft/world/item/enchantment/ThornsEnchantment.class new file mode 100644 index 000000000..5607dbc90 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/item/enchantment/ThornsEnchantment.class differ diff --git a/build/_compileJava_2/net/minecraft/world/item/enchantment/TridentChannelingEnchantment.class b/build/_compileJava_2/net/minecraft/world/item/enchantment/TridentChannelingEnchantment.class new file mode 100644 index 000000000..1186edac7 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/item/enchantment/TridentChannelingEnchantment.class differ diff --git a/build/_compileJava_2/net/minecraft/world/item/enchantment/TridentImpalerEnchantment.class b/build/_compileJava_2/net/minecraft/world/item/enchantment/TridentImpalerEnchantment.class new file mode 100644 index 000000000..7084ce724 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/item/enchantment/TridentImpalerEnchantment.class differ diff --git a/build/_compileJava_2/net/minecraft/world/item/enchantment/TridentLoyaltyEnchantment.class b/build/_compileJava_2/net/minecraft/world/item/enchantment/TridentLoyaltyEnchantment.class new file mode 100644 index 000000000..b8b10a60b Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/item/enchantment/TridentLoyaltyEnchantment.class differ diff --git a/build/_compileJava_2/net/minecraft/world/item/enchantment/TridentRiptideEnchantment.class b/build/_compileJava_2/net/minecraft/world/item/enchantment/TridentRiptideEnchantment.class new file mode 100644 index 000000000..82672257f Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/item/enchantment/TridentRiptideEnchantment.class differ diff --git a/build/_compileJava_2/net/minecraft/world/item/enchantment/UntouchingEnchantment.class b/build/_compileJava_2/net/minecraft/world/item/enchantment/UntouchingEnchantment.class new file mode 100644 index 000000000..585111869 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/item/enchantment/UntouchingEnchantment.class differ diff --git a/build/_compileJava_2/net/minecraft/world/item/enchantment/VanishingCurseEnchantment.class b/build/_compileJava_2/net/minecraft/world/item/enchantment/VanishingCurseEnchantment.class new file mode 100644 index 000000000..4f913235c Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/item/enchantment/VanishingCurseEnchantment.class differ diff --git a/build/_compileJava_2/net/minecraft/world/item/enchantment/WaterWalkerEnchantment.class b/build/_compileJava_2/net/minecraft/world/item/enchantment/WaterWalkerEnchantment.class new file mode 100644 index 000000000..f28ae26ea Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/item/enchantment/WaterWalkerEnchantment.class differ diff --git a/build/_compileJava_2/net/minecraft/world/item/enchantment/WaterWorkerEnchantment.class b/build/_compileJava_2/net/minecraft/world/item/enchantment/WaterWorkerEnchantment.class new file mode 100644 index 000000000..54ef34d24 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/item/enchantment/WaterWorkerEnchantment.class differ diff --git a/build/_compileJava_2/net/minecraft/world/item/enchantment/package-info.class b/build/_compileJava_2/net/minecraft/world/item/enchantment/package-info.class new file mode 100644 index 000000000..419881fa2 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/item/enchantment/package-info.class differ diff --git a/build/_compileJava_2/net/minecraft/world/item/package-info.class b/build/_compileJava_2/net/minecraft/world/item/package-info.class new file mode 100644 index 000000000..574c17be6 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/item/package-info.class differ diff --git a/build/_compileJava_2/net/minecraft/world/item/trading/Merchant.class b/build/_compileJava_2/net/minecraft/world/item/trading/Merchant.class new file mode 100644 index 000000000..30cad7642 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/item/trading/Merchant.class differ diff --git a/build/_compileJava_2/net/minecraft/world/item/trading/MerchantOffer.class b/build/_compileJava_2/net/minecraft/world/item/trading/MerchantOffer.class new file mode 100644 index 000000000..da514ca36 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/item/trading/MerchantOffer.class differ diff --git a/build/_compileJava_2/net/minecraft/world/item/trading/MerchantOffers.class b/build/_compileJava_2/net/minecraft/world/item/trading/MerchantOffers.class new file mode 100644 index 000000000..69a40bd67 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/item/trading/MerchantOffers.class differ diff --git a/build/_compileJava_2/net/minecraft/world/item/trading/package-info.class b/build/_compileJava_2/net/minecraft/world/item/trading/package-info.class new file mode 100644 index 000000000..1aad5c411 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/item/trading/package-info.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/BaseCommandBlock.class b/build/_compileJava_2/net/minecraft/world/level/BaseCommandBlock.class new file mode 100644 index 000000000..db41b5075 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/BaseCommandBlock.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/BaseSpawner.class b/build/_compileJava_2/net/minecraft/world/level/BaseSpawner.class new file mode 100644 index 000000000..f922361ca Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/BaseSpawner.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/BlockAndTintGetter.class b/build/_compileJava_2/net/minecraft/world/level/BlockAndTintGetter.class new file mode 100644 index 000000000..26532539f Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/BlockAndTintGetter.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/BlockCollisions.class b/build/_compileJava_2/net/minecraft/world/level/BlockCollisions.class new file mode 100644 index 000000000..d3fe6cdc3 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/BlockCollisions.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/BlockEventData.class b/build/_compileJava_2/net/minecraft/world/level/BlockEventData.class new file mode 100644 index 000000000..bec8d2137 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/BlockEventData.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/BlockGetter.class b/build/_compileJava_2/net/minecraft/world/level/BlockGetter.class new file mode 100644 index 000000000..3d0dada94 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/BlockGetter.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/ChunkPos$1.class b/build/_compileJava_2/net/minecraft/world/level/ChunkPos$1.class new file mode 100644 index 000000000..820c4a089 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/ChunkPos$1.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/ChunkPos.class b/build/_compileJava_2/net/minecraft/world/level/ChunkPos.class new file mode 100644 index 000000000..c0449c356 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/ChunkPos.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/ClipBlockStateContext.class b/build/_compileJava_2/net/minecraft/world/level/ClipBlockStateContext.class new file mode 100644 index 000000000..243f9b5f7 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/ClipBlockStateContext.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/ClipContext$Block.class b/build/_compileJava_2/net/minecraft/world/level/ClipContext$Block.class new file mode 100644 index 000000000..17b9a8afa Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/ClipContext$Block.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/ClipContext$Fluid.class b/build/_compileJava_2/net/minecraft/world/level/ClipContext$Fluid.class new file mode 100644 index 000000000..2c9d18076 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/ClipContext$Fluid.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/ClipContext$ShapeGetter.class b/build/_compileJava_2/net/minecraft/world/level/ClipContext$ShapeGetter.class new file mode 100644 index 000000000..b1f90e228 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/ClipContext$ShapeGetter.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/ClipContext.class b/build/_compileJava_2/net/minecraft/world/level/ClipContext.class new file mode 100644 index 000000000..02a0e91d7 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/ClipContext.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/CollisionGetter.class b/build/_compileJava_2/net/minecraft/world/level/CollisionGetter.class new file mode 100644 index 000000000..20129274a Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/CollisionGetter.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/ColorResolver.class b/build/_compileJava_2/net/minecraft/world/level/ColorResolver.class new file mode 100644 index 000000000..c97ba05a6 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/ColorResolver.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/CommonLevelAccessor.class b/build/_compileJava_2/net/minecraft/world/level/CommonLevelAccessor.class new file mode 100644 index 000000000..8d3c8d74f Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/CommonLevelAccessor.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/CustomSpawner.class b/build/_compileJava_2/net/minecraft/world/level/CustomSpawner.class new file mode 100644 index 000000000..cf59e9d4a Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/CustomSpawner.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/DataPackConfig.class b/build/_compileJava_2/net/minecraft/world/level/DataPackConfig.class new file mode 100644 index 000000000..b507b6f50 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/DataPackConfig.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/EmptyBlockGetter.class b/build/_compileJava_2/net/minecraft/world/level/EmptyBlockGetter.class new file mode 100644 index 000000000..b491ba4c8 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/EmptyBlockGetter.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/EntityBasedExplosionDamageCalculator.class b/build/_compileJava_2/net/minecraft/world/level/EntityBasedExplosionDamageCalculator.class new file mode 100644 index 000000000..f2ea082c2 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/EntityBasedExplosionDamageCalculator.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/EntityGetter.class b/build/_compileJava_2/net/minecraft/world/level/EntityGetter.class new file mode 100644 index 000000000..b3641dea1 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/EntityGetter.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/Explosion$BlockInteraction.class b/build/_compileJava_2/net/minecraft/world/level/Explosion$BlockInteraction.class new file mode 100644 index 000000000..9e6b64a03 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/Explosion$BlockInteraction.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/Explosion.class b/build/_compileJava_2/net/minecraft/world/level/Explosion.class new file mode 100644 index 000000000..445d37e98 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/Explosion.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/ExplosionDamageCalculator.class b/build/_compileJava_2/net/minecraft/world/level/ExplosionDamageCalculator.class new file mode 100644 index 000000000..deb254a09 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/ExplosionDamageCalculator.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/FoliageColor.class b/build/_compileJava_2/net/minecraft/world/level/FoliageColor.class new file mode 100644 index 000000000..d129a29d6 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/FoliageColor.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/ForcedChunksSavedData.class b/build/_compileJava_2/net/minecraft/world/level/ForcedChunksSavedData.class new file mode 100644 index 000000000..db31ddc52 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/ForcedChunksSavedData.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/GameRules$BooleanValue.class b/build/_compileJava_2/net/minecraft/world/level/GameRules$BooleanValue.class new file mode 100644 index 000000000..0585fb990 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/GameRules$BooleanValue.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/GameRules$Category.class b/build/_compileJava_2/net/minecraft/world/level/GameRules$Category.class new file mode 100644 index 000000000..76025b37b Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/GameRules$Category.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/GameRules$GameRuleTypeVisitor.class b/build/_compileJava_2/net/minecraft/world/level/GameRules$GameRuleTypeVisitor.class new file mode 100644 index 000000000..4c6c0f188 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/GameRules$GameRuleTypeVisitor.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/GameRules$IntegerValue.class b/build/_compileJava_2/net/minecraft/world/level/GameRules$IntegerValue.class new file mode 100644 index 000000000..7e6182d68 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/GameRules$IntegerValue.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/GameRules$Key.class b/build/_compileJava_2/net/minecraft/world/level/GameRules$Key.class new file mode 100644 index 000000000..b170589e3 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/GameRules$Key.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/GameRules$Type.class b/build/_compileJava_2/net/minecraft/world/level/GameRules$Type.class new file mode 100644 index 000000000..392696fb9 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/GameRules$Type.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/GameRules$Value.class b/build/_compileJava_2/net/minecraft/world/level/GameRules$Value.class new file mode 100644 index 000000000..ed77f0fb8 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/GameRules$Value.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/GameRules$VisitorCaller.class b/build/_compileJava_2/net/minecraft/world/level/GameRules$VisitorCaller.class new file mode 100644 index 000000000..82fe589ce Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/GameRules$VisitorCaller.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/GameRules.class b/build/_compileJava_2/net/minecraft/world/level/GameRules.class new file mode 100644 index 000000000..f2e98dfe4 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/GameRules.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/GameType.class b/build/_compileJava_2/net/minecraft/world/level/GameType.class new file mode 100644 index 000000000..643bb30c6 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/GameType.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/GrassColor.class b/build/_compileJava_2/net/minecraft/world/level/GrassColor.class new file mode 100644 index 000000000..2456bbe58 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/GrassColor.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/ItemLike.class b/build/_compileJava_2/net/minecraft/world/level/ItemLike.class new file mode 100644 index 000000000..65510255d Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/ItemLike.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/Level$1.class b/build/_compileJava_2/net/minecraft/world/level/Level$1.class new file mode 100644 index 000000000..9151538e7 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/Level$1.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/Level$2.class b/build/_compileJava_2/net/minecraft/world/level/Level$2.class new file mode 100644 index 000000000..96294a5e6 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/Level$2.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/Level$ExplosionInteraction.class b/build/_compileJava_2/net/minecraft/world/level/Level$ExplosionInteraction.class new file mode 100644 index 000000000..fb3cf7c4e Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/Level$ExplosionInteraction.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/Level.class b/build/_compileJava_2/net/minecraft/world/level/Level.class new file mode 100644 index 000000000..13b9c3e18 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/Level.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/LevelAccessor.class b/build/_compileJava_2/net/minecraft/world/level/LevelAccessor.class new file mode 100644 index 000000000..2f81911ae Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/LevelAccessor.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/LevelHeightAccessor$1.class b/build/_compileJava_2/net/minecraft/world/level/LevelHeightAccessor$1.class new file mode 100644 index 000000000..d5821d89c Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/LevelHeightAccessor$1.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/LevelHeightAccessor.class b/build/_compileJava_2/net/minecraft/world/level/LevelHeightAccessor.class new file mode 100644 index 000000000..9fbf43332 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/LevelHeightAccessor.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/LevelReader.class b/build/_compileJava_2/net/minecraft/world/level/LevelReader.class new file mode 100644 index 000000000..958d208df Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/LevelReader.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/LevelSettings.class b/build/_compileJava_2/net/minecraft/world/level/LevelSettings.class new file mode 100644 index 000000000..b2331b41e Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/LevelSettings.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/LevelSimulatedRW.class b/build/_compileJava_2/net/minecraft/world/level/LevelSimulatedRW.class new file mode 100644 index 000000000..bfe1a8a40 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/LevelSimulatedRW.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/LevelSimulatedReader.class b/build/_compileJava_2/net/minecraft/world/level/LevelSimulatedReader.class new file mode 100644 index 000000000..b07523720 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/LevelSimulatedReader.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/LevelTimeAccess.class b/build/_compileJava_2/net/minecraft/world/level/LevelTimeAccess.class new file mode 100644 index 000000000..0876738c5 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/LevelTimeAccess.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/LevelWriter.class b/build/_compileJava_2/net/minecraft/world/level/LevelWriter.class new file mode 100644 index 000000000..8966dda5b Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/LevelWriter.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/LightLayer.class b/build/_compileJava_2/net/minecraft/world/level/LightLayer.class new file mode 100644 index 000000000..babe7eef3 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/LightLayer.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/LocalMobCapCalculator$MobCounts.class b/build/_compileJava_2/net/minecraft/world/level/LocalMobCapCalculator$MobCounts.class new file mode 100644 index 000000000..8dd856a68 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/LocalMobCapCalculator$MobCounts.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/LocalMobCapCalculator.class b/build/_compileJava_2/net/minecraft/world/level/LocalMobCapCalculator.class new file mode 100644 index 000000000..26956cf25 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/LocalMobCapCalculator.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/NaturalSpawner$1.class b/build/_compileJava_2/net/minecraft/world/level/NaturalSpawner$1.class new file mode 100644 index 000000000..0b87e7125 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/NaturalSpawner$1.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/NaturalSpawner$AfterSpawnCallback.class b/build/_compileJava_2/net/minecraft/world/level/NaturalSpawner$AfterSpawnCallback.class new file mode 100644 index 000000000..8a9a95a49 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/NaturalSpawner$AfterSpawnCallback.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/NaturalSpawner$ChunkGetter.class b/build/_compileJava_2/net/minecraft/world/level/NaturalSpawner$ChunkGetter.class new file mode 100644 index 000000000..f125e210b Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/NaturalSpawner$ChunkGetter.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/NaturalSpawner$SpawnPredicate.class b/build/_compileJava_2/net/minecraft/world/level/NaturalSpawner$SpawnPredicate.class new file mode 100644 index 000000000..e245cfb5d Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/NaturalSpawner$SpawnPredicate.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/NaturalSpawner$SpawnState.class b/build/_compileJava_2/net/minecraft/world/level/NaturalSpawner$SpawnState.class new file mode 100644 index 000000000..bec27c401 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/NaturalSpawner$SpawnState.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/NaturalSpawner.class b/build/_compileJava_2/net/minecraft/world/level/NaturalSpawner.class new file mode 100644 index 000000000..e84fdd663 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/NaturalSpawner.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/NoiseColumn.class b/build/_compileJava_2/net/minecraft/world/level/NoiseColumn.class new file mode 100644 index 000000000..15cc833b6 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/NoiseColumn.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/PathNavigationRegion.class b/build/_compileJava_2/net/minecraft/world/level/PathNavigationRegion.class new file mode 100644 index 000000000..9b3b647b3 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/PathNavigationRegion.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/PotentialCalculator$PointCharge.class b/build/_compileJava_2/net/minecraft/world/level/PotentialCalculator$PointCharge.class new file mode 100644 index 000000000..a09f8c2ad Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/PotentialCalculator$PointCharge.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/PotentialCalculator.class b/build/_compileJava_2/net/minecraft/world/level/PotentialCalculator.class new file mode 100644 index 000000000..05ea621b1 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/PotentialCalculator.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/ServerLevelAccessor.class b/build/_compileJava_2/net/minecraft/world/level/ServerLevelAccessor.class new file mode 100644 index 000000000..890b35fe3 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/ServerLevelAccessor.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/SignalGetter.class b/build/_compileJava_2/net/minecraft/world/level/SignalGetter.class new file mode 100644 index 000000000..07dd7a17b Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/SignalGetter.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/SpawnData$CustomSpawnRules.class b/build/_compileJava_2/net/minecraft/world/level/SpawnData$CustomSpawnRules.class new file mode 100644 index 000000000..fe571d136 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/SpawnData$CustomSpawnRules.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/SpawnData.class b/build/_compileJava_2/net/minecraft/world/level/SpawnData.class new file mode 100644 index 000000000..e56b75217 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/SpawnData.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/StructureManager.class b/build/_compileJava_2/net/minecraft/world/level/StructureManager.class new file mode 100644 index 000000000..b40dc9cbc Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/StructureManager.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/WorldDataConfiguration.class b/build/_compileJava_2/net/minecraft/world/level/WorldDataConfiguration.class new file mode 100644 index 000000000..4dc35c124 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/WorldDataConfiguration.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/WorldGenLevel.class b/build/_compileJava_2/net/minecraft/world/level/WorldGenLevel.class new file mode 100644 index 000000000..db3efe948 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/WorldGenLevel.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/biome/AmbientAdditionsSettings.class b/build/_compileJava_2/net/minecraft/world/level/biome/AmbientAdditionsSettings.class new file mode 100644 index 000000000..f68892a7b Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/biome/AmbientAdditionsSettings.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/biome/AmbientMoodSettings.class b/build/_compileJava_2/net/minecraft/world/level/biome/AmbientMoodSettings.class new file mode 100644 index 000000000..a0e5c9563 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/biome/AmbientMoodSettings.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/biome/AmbientParticleSettings.class b/build/_compileJava_2/net/minecraft/world/level/biome/AmbientParticleSettings.class new file mode 100644 index 000000000..f93a9f6a1 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/biome/AmbientParticleSettings.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/biome/Biome$1.class b/build/_compileJava_2/net/minecraft/world/level/biome/Biome$1.class new file mode 100644 index 000000000..a86ee568c Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/biome/Biome$1.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/biome/Biome$BiomeBuilder.class b/build/_compileJava_2/net/minecraft/world/level/biome/Biome$BiomeBuilder.class new file mode 100644 index 000000000..43585b271 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/biome/Biome$BiomeBuilder.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/biome/Biome$ClimateSettings.class b/build/_compileJava_2/net/minecraft/world/level/biome/Biome$ClimateSettings.class new file mode 100644 index 000000000..ee8d4506e Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/biome/Biome$ClimateSettings.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/biome/Biome$Precipitation.class b/build/_compileJava_2/net/minecraft/world/level/biome/Biome$Precipitation.class new file mode 100644 index 000000000..b00a08859 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/biome/Biome$Precipitation.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/biome/Biome$TemperatureModifier$1.class b/build/_compileJava_2/net/minecraft/world/level/biome/Biome$TemperatureModifier$1.class new file mode 100644 index 000000000..73938c610 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/biome/Biome$TemperatureModifier$1.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/biome/Biome$TemperatureModifier$2.class b/build/_compileJava_2/net/minecraft/world/level/biome/Biome$TemperatureModifier$2.class new file mode 100644 index 000000000..d6946548e Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/biome/Biome$TemperatureModifier$2.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/biome/Biome$TemperatureModifier.class b/build/_compileJava_2/net/minecraft/world/level/biome/Biome$TemperatureModifier.class new file mode 100644 index 000000000..fb1dfb22f Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/biome/Biome$TemperatureModifier.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/biome/Biome.class b/build/_compileJava_2/net/minecraft/world/level/biome/Biome.class new file mode 100644 index 000000000..669e5d2d7 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/biome/Biome.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/biome/BiomeGenerationSettings$Builder.class b/build/_compileJava_2/net/minecraft/world/level/biome/BiomeGenerationSettings$Builder.class new file mode 100644 index 000000000..1a5ba5005 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/biome/BiomeGenerationSettings$Builder.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/biome/BiomeGenerationSettings$PlainBuilder.class b/build/_compileJava_2/net/minecraft/world/level/biome/BiomeGenerationSettings$PlainBuilder.class new file mode 100644 index 000000000..08d913ce7 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/biome/BiomeGenerationSettings$PlainBuilder.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/biome/BiomeGenerationSettings.class b/build/_compileJava_2/net/minecraft/world/level/biome/BiomeGenerationSettings.class new file mode 100644 index 000000000..54ae43759 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/biome/BiomeGenerationSettings.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/biome/BiomeManager$NoiseBiomeSource.class b/build/_compileJava_2/net/minecraft/world/level/biome/BiomeManager$NoiseBiomeSource.class new file mode 100644 index 000000000..7cd6d5c59 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/biome/BiomeManager$NoiseBiomeSource.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/biome/BiomeManager.class b/build/_compileJava_2/net/minecraft/world/level/biome/BiomeManager.class new file mode 100644 index 000000000..d09f4ccca Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/biome/BiomeManager.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/biome/BiomeResolver.class b/build/_compileJava_2/net/minecraft/world/level/biome/BiomeResolver.class new file mode 100644 index 000000000..06ef516ad Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/biome/BiomeResolver.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/biome/BiomeSource.class b/build/_compileJava_2/net/minecraft/world/level/biome/BiomeSource.class new file mode 100644 index 000000000..188c33b45 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/biome/BiomeSource.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/biome/BiomeSources.class b/build/_compileJava_2/net/minecraft/world/level/biome/BiomeSources.class new file mode 100644 index 000000000..6d544f9cf Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/biome/BiomeSources.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/biome/BiomeSpecialEffects$Builder.class b/build/_compileJava_2/net/minecraft/world/level/biome/BiomeSpecialEffects$Builder.class new file mode 100644 index 000000000..d55910a1f Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/biome/BiomeSpecialEffects$Builder.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/biome/BiomeSpecialEffects$GrassColorModifier$1.class b/build/_compileJava_2/net/minecraft/world/level/biome/BiomeSpecialEffects$GrassColorModifier$1.class new file mode 100644 index 000000000..839c4003d Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/biome/BiomeSpecialEffects$GrassColorModifier$1.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/biome/BiomeSpecialEffects$GrassColorModifier$2.class b/build/_compileJava_2/net/minecraft/world/level/biome/BiomeSpecialEffects$GrassColorModifier$2.class new file mode 100644 index 000000000..718253127 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/biome/BiomeSpecialEffects$GrassColorModifier$2.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/biome/BiomeSpecialEffects$GrassColorModifier$3.class b/build/_compileJava_2/net/minecraft/world/level/biome/BiomeSpecialEffects$GrassColorModifier$3.class new file mode 100644 index 000000000..a97181bd1 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/biome/BiomeSpecialEffects$GrassColorModifier$3.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/biome/BiomeSpecialEffects$GrassColorModifier$ColorModifier.class b/build/_compileJava_2/net/minecraft/world/level/biome/BiomeSpecialEffects$GrassColorModifier$ColorModifier.class new file mode 100644 index 000000000..13e1d4d4b Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/biome/BiomeSpecialEffects$GrassColorModifier$ColorModifier.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/biome/BiomeSpecialEffects$GrassColorModifier.class b/build/_compileJava_2/net/minecraft/world/level/biome/BiomeSpecialEffects$GrassColorModifier.class new file mode 100644 index 000000000..67f4dcfe1 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/biome/BiomeSpecialEffects$GrassColorModifier.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/biome/BiomeSpecialEffects.class b/build/_compileJava_2/net/minecraft/world/level/biome/BiomeSpecialEffects.class new file mode 100644 index 000000000..18bcf338d Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/biome/BiomeSpecialEffects.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/biome/Biomes.class b/build/_compileJava_2/net/minecraft/world/level/biome/Biomes.class new file mode 100644 index 000000000..4e9293e28 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/biome/Biomes.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/biome/CheckerboardColumnBiomeSource.class b/build/_compileJava_2/net/minecraft/world/level/biome/CheckerboardColumnBiomeSource.class new file mode 100644 index 000000000..cb8dcb3e1 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/biome/CheckerboardColumnBiomeSource.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/biome/Climate$DistanceMetric.class b/build/_compileJava_2/net/minecraft/world/level/biome/Climate$DistanceMetric.class new file mode 100644 index 000000000..e419e46a2 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/biome/Climate$DistanceMetric.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/biome/Climate$Parameter.class b/build/_compileJava_2/net/minecraft/world/level/biome/Climate$Parameter.class new file mode 100644 index 000000000..dfe9145e8 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/biome/Climate$Parameter.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/biome/Climate$ParameterList.class b/build/_compileJava_2/net/minecraft/world/level/biome/Climate$ParameterList.class new file mode 100644 index 000000000..93e5a9543 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/biome/Climate$ParameterList.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/biome/Climate$ParameterPoint.class b/build/_compileJava_2/net/minecraft/world/level/biome/Climate$ParameterPoint.class new file mode 100644 index 000000000..25ca8d645 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/biome/Climate$ParameterPoint.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/biome/Climate$RTree$Leaf.class b/build/_compileJava_2/net/minecraft/world/level/biome/Climate$RTree$Leaf.class new file mode 100644 index 000000000..941bf236d Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/biome/Climate$RTree$Leaf.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/biome/Climate$RTree$Node.class b/build/_compileJava_2/net/minecraft/world/level/biome/Climate$RTree$Node.class new file mode 100644 index 000000000..49c951333 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/biome/Climate$RTree$Node.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/biome/Climate$RTree$SubTree.class b/build/_compileJava_2/net/minecraft/world/level/biome/Climate$RTree$SubTree.class new file mode 100644 index 000000000..e282db25b Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/biome/Climate$RTree$SubTree.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/biome/Climate$RTree.class b/build/_compileJava_2/net/minecraft/world/level/biome/Climate$RTree.class new file mode 100644 index 000000000..e32dad8da Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/biome/Climate$RTree.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/biome/Climate$Sampler.class b/build/_compileJava_2/net/minecraft/world/level/biome/Climate$Sampler.class new file mode 100644 index 000000000..bdc55f8d1 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/biome/Climate$Sampler.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/biome/Climate$SpawnFinder$Result.class b/build/_compileJava_2/net/minecraft/world/level/biome/Climate$SpawnFinder$Result.class new file mode 100644 index 000000000..cadaaaa5e Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/biome/Climate$SpawnFinder$Result.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/biome/Climate$SpawnFinder.class b/build/_compileJava_2/net/minecraft/world/level/biome/Climate$SpawnFinder.class new file mode 100644 index 000000000..daec3671a Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/biome/Climate$SpawnFinder.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/biome/Climate$TargetPoint.class b/build/_compileJava_2/net/minecraft/world/level/biome/Climate$TargetPoint.class new file mode 100644 index 000000000..548273e38 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/biome/Climate$TargetPoint.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/biome/Climate.class b/build/_compileJava_2/net/minecraft/world/level/biome/Climate.class new file mode 100644 index 000000000..80831f2f7 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/biome/Climate.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/biome/FeatureSorter$1FeatureData.class b/build/_compileJava_2/net/minecraft/world/level/biome/FeatureSorter$1FeatureData.class new file mode 100644 index 000000000..8436baf36 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/biome/FeatureSorter$1FeatureData.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/biome/FeatureSorter$StepFeatureData.class b/build/_compileJava_2/net/minecraft/world/level/biome/FeatureSorter$StepFeatureData.class new file mode 100644 index 000000000..1aa0631ec Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/biome/FeatureSorter$StepFeatureData.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/biome/FeatureSorter.class b/build/_compileJava_2/net/minecraft/world/level/biome/FeatureSorter.class new file mode 100644 index 000000000..f5ab967f7 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/biome/FeatureSorter.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/biome/FixedBiomeSource.class b/build/_compileJava_2/net/minecraft/world/level/biome/FixedBiomeSource.class new file mode 100644 index 000000000..1287c544b Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/biome/FixedBiomeSource.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/biome/MobSpawnSettings$Builder.class b/build/_compileJava_2/net/minecraft/world/level/biome/MobSpawnSettings$Builder.class new file mode 100644 index 000000000..945d895e9 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/biome/MobSpawnSettings$Builder.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/biome/MobSpawnSettings$MobSpawnCost.class b/build/_compileJava_2/net/minecraft/world/level/biome/MobSpawnSettings$MobSpawnCost.class new file mode 100644 index 000000000..f2a520a70 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/biome/MobSpawnSettings$MobSpawnCost.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/biome/MobSpawnSettings$SpawnerData.class b/build/_compileJava_2/net/minecraft/world/level/biome/MobSpawnSettings$SpawnerData.class new file mode 100644 index 000000000..efd4cdebb Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/biome/MobSpawnSettings$SpawnerData.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/biome/MobSpawnSettings.class b/build/_compileJava_2/net/minecraft/world/level/biome/MobSpawnSettings.class new file mode 100644 index 000000000..96c65c708 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/biome/MobSpawnSettings.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/biome/MultiNoiseBiomeSource.class b/build/_compileJava_2/net/minecraft/world/level/biome/MultiNoiseBiomeSource.class new file mode 100644 index 000000000..adaa35d5d Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/biome/MultiNoiseBiomeSource.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/biome/MultiNoiseBiomeSourceParameterList$Preset$1.class b/build/_compileJava_2/net/minecraft/world/level/biome/MultiNoiseBiomeSourceParameterList$Preset$1.class new file mode 100644 index 000000000..8e1b9553e Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/biome/MultiNoiseBiomeSourceParameterList$Preset$1.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/biome/MultiNoiseBiomeSourceParameterList$Preset$2.class b/build/_compileJava_2/net/minecraft/world/level/biome/MultiNoiseBiomeSourceParameterList$Preset$2.class new file mode 100644 index 000000000..2a91ce345 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/biome/MultiNoiseBiomeSourceParameterList$Preset$2.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/biome/MultiNoiseBiomeSourceParameterList$Preset$SourceProvider.class b/build/_compileJava_2/net/minecraft/world/level/biome/MultiNoiseBiomeSourceParameterList$Preset$SourceProvider.class new file mode 100644 index 000000000..95114be79 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/biome/MultiNoiseBiomeSourceParameterList$Preset$SourceProvider.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/biome/MultiNoiseBiomeSourceParameterList$Preset.class b/build/_compileJava_2/net/minecraft/world/level/biome/MultiNoiseBiomeSourceParameterList$Preset.class new file mode 100644 index 000000000..1d20c0c0b Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/biome/MultiNoiseBiomeSourceParameterList$Preset.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/biome/MultiNoiseBiomeSourceParameterList.class b/build/_compileJava_2/net/minecraft/world/level/biome/MultiNoiseBiomeSourceParameterList.class new file mode 100644 index 000000000..e1f0f69ed Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/biome/MultiNoiseBiomeSourceParameterList.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/biome/MultiNoiseBiomeSourceParameterLists.class b/build/_compileJava_2/net/minecraft/world/level/biome/MultiNoiseBiomeSourceParameterLists.class new file mode 100644 index 000000000..c8490767a Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/biome/MultiNoiseBiomeSourceParameterLists.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/biome/OverworldBiomeBuilder.class b/build/_compileJava_2/net/minecraft/world/level/biome/OverworldBiomeBuilder.class new file mode 100644 index 000000000..1cc474d3b Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/biome/OverworldBiomeBuilder.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/biome/TheEndBiomeSource.class b/build/_compileJava_2/net/minecraft/world/level/biome/TheEndBiomeSource.class new file mode 100644 index 000000000..e3a78c233 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/biome/TheEndBiomeSource.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/biome/package-info.class b/build/_compileJava_2/net/minecraft/world/level/biome/package-info.class new file mode 100644 index 000000000..41aacc11d Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/biome/package-info.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/block/AbstractBannerBlock.class b/build/_compileJava_2/net/minecraft/world/level/block/AbstractBannerBlock.class new file mode 100644 index 000000000..d89900843 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/block/AbstractBannerBlock.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/block/AbstractCandleBlock.class b/build/_compileJava_2/net/minecraft/world/level/block/AbstractCandleBlock.class new file mode 100644 index 000000000..585d95412 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/block/AbstractCandleBlock.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/block/AbstractCauldronBlock.class b/build/_compileJava_2/net/minecraft/world/level/block/AbstractCauldronBlock.class new file mode 100644 index 000000000..2b5cc63af Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/block/AbstractCauldronBlock.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/block/AbstractChestBlock.class b/build/_compileJava_2/net/minecraft/world/level/block/AbstractChestBlock.class new file mode 100644 index 000000000..dd4dde7c4 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/block/AbstractChestBlock.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/block/AbstractFurnaceBlock.class b/build/_compileJava_2/net/minecraft/world/level/block/AbstractFurnaceBlock.class new file mode 100644 index 000000000..b3037c6ce Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/block/AbstractFurnaceBlock.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/block/AbstractGlassBlock.class b/build/_compileJava_2/net/minecraft/world/level/block/AbstractGlassBlock.class new file mode 100644 index 000000000..c203fae84 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/block/AbstractGlassBlock.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/block/AbstractSkullBlock.class b/build/_compileJava_2/net/minecraft/world/level/block/AbstractSkullBlock.class new file mode 100644 index 000000000..7cd5cf59b Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/block/AbstractSkullBlock.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/block/AirBlock.class b/build/_compileJava_2/net/minecraft/world/level/block/AirBlock.class new file mode 100644 index 000000000..93a691a03 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/block/AirBlock.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/block/AmethystBlock.class b/build/_compileJava_2/net/minecraft/world/level/block/AmethystBlock.class new file mode 100644 index 000000000..c69835dee Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/block/AmethystBlock.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/block/AmethystClusterBlock$1.class b/build/_compileJava_2/net/minecraft/world/level/block/AmethystClusterBlock$1.class new file mode 100644 index 000000000..9e85c8597 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/block/AmethystClusterBlock$1.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/block/AmethystClusterBlock.class b/build/_compileJava_2/net/minecraft/world/level/block/AmethystClusterBlock.class new file mode 100644 index 000000000..0a4915947 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/block/AmethystClusterBlock.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/block/AnvilBlock.class b/build/_compileJava_2/net/minecraft/world/level/block/AnvilBlock.class new file mode 100644 index 000000000..85b03c23e Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/block/AnvilBlock.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/block/AttachedStemBlock.class b/build/_compileJava_2/net/minecraft/world/level/block/AttachedStemBlock.class new file mode 100644 index 000000000..5a23f9a97 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/block/AttachedStemBlock.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/block/AzaleaBlock.class b/build/_compileJava_2/net/minecraft/world/level/block/AzaleaBlock.class new file mode 100644 index 000000000..438aba0e5 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/block/AzaleaBlock.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/block/BambooSaplingBlock.class b/build/_compileJava_2/net/minecraft/world/level/block/BambooSaplingBlock.class new file mode 100644 index 000000000..8efeaf764 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/block/BambooSaplingBlock.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/block/BambooStalkBlock.class b/build/_compileJava_2/net/minecraft/world/level/block/BambooStalkBlock.class new file mode 100644 index 000000000..99df48133 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/block/BambooStalkBlock.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/block/BannerBlock.class b/build/_compileJava_2/net/minecraft/world/level/block/BannerBlock.class new file mode 100644 index 000000000..0f57738d1 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/block/BannerBlock.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/block/BarrelBlock.class b/build/_compileJava_2/net/minecraft/world/level/block/BarrelBlock.class new file mode 100644 index 000000000..9cdb6b602 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/block/BarrelBlock.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/block/BarrierBlock.class b/build/_compileJava_2/net/minecraft/world/level/block/BarrierBlock.class new file mode 100644 index 000000000..e60cfd623 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/block/BarrierBlock.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/block/BaseCoralFanBlock.class b/build/_compileJava_2/net/minecraft/world/level/block/BaseCoralFanBlock.class new file mode 100644 index 000000000..64d604636 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/block/BaseCoralFanBlock.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/block/BaseCoralPlantBlock.class b/build/_compileJava_2/net/minecraft/world/level/block/BaseCoralPlantBlock.class new file mode 100644 index 000000000..9a21af999 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/block/BaseCoralPlantBlock.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/block/BaseCoralPlantTypeBlock.class b/build/_compileJava_2/net/minecraft/world/level/block/BaseCoralPlantTypeBlock.class new file mode 100644 index 000000000..8a6383a8b Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/block/BaseCoralPlantTypeBlock.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/block/BaseCoralWallFanBlock.class b/build/_compileJava_2/net/minecraft/world/level/block/BaseCoralWallFanBlock.class new file mode 100644 index 000000000..a357fb30a Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/block/BaseCoralWallFanBlock.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/block/BaseEntityBlock.class b/build/_compileJava_2/net/minecraft/world/level/block/BaseEntityBlock.class new file mode 100644 index 000000000..ee0617ab2 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/block/BaseEntityBlock.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/block/BaseFireBlock.class b/build/_compileJava_2/net/minecraft/world/level/block/BaseFireBlock.class new file mode 100644 index 000000000..476afa57c Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/block/BaseFireBlock.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/block/BasePressurePlateBlock.class b/build/_compileJava_2/net/minecraft/world/level/block/BasePressurePlateBlock.class new file mode 100644 index 000000000..09ca6fc75 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/block/BasePressurePlateBlock.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/block/BaseRailBlock$1.class b/build/_compileJava_2/net/minecraft/world/level/block/BaseRailBlock$1.class new file mode 100644 index 000000000..afc33f306 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/block/BaseRailBlock$1.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/block/BaseRailBlock.class b/build/_compileJava_2/net/minecraft/world/level/block/BaseRailBlock.class new file mode 100644 index 000000000..dc0cab871 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/block/BaseRailBlock.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/block/BeaconBeamBlock.class b/build/_compileJava_2/net/minecraft/world/level/block/BeaconBeamBlock.class new file mode 100644 index 000000000..5edf17b50 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/block/BeaconBeamBlock.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/block/BeaconBlock.class b/build/_compileJava_2/net/minecraft/world/level/block/BeaconBlock.class new file mode 100644 index 000000000..6bdeb3617 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/block/BeaconBlock.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/block/BedBlock$1.class b/build/_compileJava_2/net/minecraft/world/level/block/BedBlock$1.class new file mode 100644 index 000000000..e82fc55c3 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/block/BedBlock$1.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/block/BedBlock.class b/build/_compileJava_2/net/minecraft/world/level/block/BedBlock.class new file mode 100644 index 000000000..9d416806b Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/block/BedBlock.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/block/BeehiveBlock.class b/build/_compileJava_2/net/minecraft/world/level/block/BeehiveBlock.class new file mode 100644 index 000000000..00926d538 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/block/BeehiveBlock.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/block/BeetrootBlock.class b/build/_compileJava_2/net/minecraft/world/level/block/BeetrootBlock.class new file mode 100644 index 000000000..40f1924f2 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/block/BeetrootBlock.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/block/BellBlock$1.class b/build/_compileJava_2/net/minecraft/world/level/block/BellBlock$1.class new file mode 100644 index 000000000..d9e1ad92a Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/block/BellBlock$1.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/block/BellBlock.class b/build/_compileJava_2/net/minecraft/world/level/block/BellBlock.class new file mode 100644 index 000000000..c4c9a8ed8 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/block/BellBlock.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/block/BigDripleafBlock.class b/build/_compileJava_2/net/minecraft/world/level/block/BigDripleafBlock.class new file mode 100644 index 000000000..13c0b4891 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/block/BigDripleafBlock.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/block/BigDripleafStemBlock$1.class b/build/_compileJava_2/net/minecraft/world/level/block/BigDripleafStemBlock$1.class new file mode 100644 index 000000000..7e845be03 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/block/BigDripleafStemBlock$1.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/block/BigDripleafStemBlock.class b/build/_compileJava_2/net/minecraft/world/level/block/BigDripleafStemBlock.class new file mode 100644 index 000000000..2e9b2eb4d Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/block/BigDripleafStemBlock.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/block/BlastFurnaceBlock.class b/build/_compileJava_2/net/minecraft/world/level/block/BlastFurnaceBlock.class new file mode 100644 index 000000000..fc74dbd16 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/block/BlastFurnaceBlock.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/block/Block$1.class b/build/_compileJava_2/net/minecraft/world/level/block/Block$1.class new file mode 100644 index 000000000..ec967868c Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/block/Block$1.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/block/Block$2.class b/build/_compileJava_2/net/minecraft/world/level/block/Block$2.class new file mode 100644 index 000000000..7679eb3ee Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/block/Block$2.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/block/Block$BlockStatePairKey.class b/build/_compileJava_2/net/minecraft/world/level/block/Block$BlockStatePairKey.class new file mode 100644 index 000000000..78c48dc40 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/block/Block$BlockStatePairKey.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/block/Block.class b/build/_compileJava_2/net/minecraft/world/level/block/Block.class new file mode 100644 index 000000000..87682f399 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/block/Block.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/block/Blocks.class b/build/_compileJava_2/net/minecraft/world/level/block/Blocks.class new file mode 100644 index 000000000..84f670535 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/block/Blocks.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/block/BonemealableBlock.class b/build/_compileJava_2/net/minecraft/world/level/block/BonemealableBlock.class new file mode 100644 index 000000000..d92ee160d Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/block/BonemealableBlock.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/block/BrewingStandBlock.class b/build/_compileJava_2/net/minecraft/world/level/block/BrewingStandBlock.class new file mode 100644 index 000000000..7389db699 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/block/BrewingStandBlock.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/block/BrushableBlock.class b/build/_compileJava_2/net/minecraft/world/level/block/BrushableBlock.class new file mode 100644 index 000000000..0a7268a04 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/block/BrushableBlock.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/block/BubbleColumnBlock.class b/build/_compileJava_2/net/minecraft/world/level/block/BubbleColumnBlock.class new file mode 100644 index 000000000..a0220ea8a Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/block/BubbleColumnBlock.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/block/BucketPickup.class b/build/_compileJava_2/net/minecraft/world/level/block/BucketPickup.class new file mode 100644 index 000000000..2bd3a36b9 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/block/BucketPickup.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/block/BuddingAmethystBlock.class b/build/_compileJava_2/net/minecraft/world/level/block/BuddingAmethystBlock.class new file mode 100644 index 000000000..730eaa33e Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/block/BuddingAmethystBlock.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/block/BushBlock.class b/build/_compileJava_2/net/minecraft/world/level/block/BushBlock.class new file mode 100644 index 000000000..b0f43c2cc Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/block/BushBlock.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/block/ButtonBlock$1.class b/build/_compileJava_2/net/minecraft/world/level/block/ButtonBlock$1.class new file mode 100644 index 000000000..1299da381 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/block/ButtonBlock$1.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/block/ButtonBlock.class b/build/_compileJava_2/net/minecraft/world/level/block/ButtonBlock.class new file mode 100644 index 000000000..d96310c15 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/block/ButtonBlock.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/block/CactusBlock.class b/build/_compileJava_2/net/minecraft/world/level/block/CactusBlock.class new file mode 100644 index 000000000..e49791285 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/block/CactusBlock.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/block/CakeBlock.class b/build/_compileJava_2/net/minecraft/world/level/block/CakeBlock.class new file mode 100644 index 000000000..2c5d828e3 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/block/CakeBlock.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/block/CalibratedSculkSensorBlock.class b/build/_compileJava_2/net/minecraft/world/level/block/CalibratedSculkSensorBlock.class new file mode 100644 index 000000000..07e422dcf Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/block/CalibratedSculkSensorBlock.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/block/CampfireBlock.class b/build/_compileJava_2/net/minecraft/world/level/block/CampfireBlock.class new file mode 100644 index 000000000..2c0f9ef92 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/block/CampfireBlock.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/block/CandleBlock.class b/build/_compileJava_2/net/minecraft/world/level/block/CandleBlock.class new file mode 100644 index 000000000..a44b67198 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/block/CandleBlock.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/block/CandleCakeBlock.class b/build/_compileJava_2/net/minecraft/world/level/block/CandleCakeBlock.class new file mode 100644 index 000000000..69c14f532 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/block/CandleCakeBlock.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/block/CarpetBlock.class b/build/_compileJava_2/net/minecraft/world/level/block/CarpetBlock.class new file mode 100644 index 000000000..8bf1d191a Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/block/CarpetBlock.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/block/CarrotBlock.class b/build/_compileJava_2/net/minecraft/world/level/block/CarrotBlock.class new file mode 100644 index 000000000..e25a8b6d0 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/block/CarrotBlock.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/block/CartographyTableBlock.class b/build/_compileJava_2/net/minecraft/world/level/block/CartographyTableBlock.class new file mode 100644 index 000000000..03f048333 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/block/CartographyTableBlock.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/block/CarvedPumpkinBlock.class b/build/_compileJava_2/net/minecraft/world/level/block/CarvedPumpkinBlock.class new file mode 100644 index 000000000..18cf307d2 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/block/CarvedPumpkinBlock.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/block/CauldronBlock.class b/build/_compileJava_2/net/minecraft/world/level/block/CauldronBlock.class new file mode 100644 index 000000000..e7f1afa58 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/block/CauldronBlock.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/block/CaveVines.class b/build/_compileJava_2/net/minecraft/world/level/block/CaveVines.class new file mode 100644 index 000000000..aa8a51fc1 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/block/CaveVines.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/block/CaveVinesBlock.class b/build/_compileJava_2/net/minecraft/world/level/block/CaveVinesBlock.class new file mode 100644 index 000000000..a33ffd6aa Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/block/CaveVinesBlock.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/block/CaveVinesPlantBlock.class b/build/_compileJava_2/net/minecraft/world/level/block/CaveVinesPlantBlock.class new file mode 100644 index 000000000..4b24ac7f0 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/block/CaveVinesPlantBlock.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/block/CeilingHangingSignBlock.class b/build/_compileJava_2/net/minecraft/world/level/block/CeilingHangingSignBlock.class new file mode 100644 index 000000000..4d291811f Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/block/CeilingHangingSignBlock.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/block/ChainBlock$1.class b/build/_compileJava_2/net/minecraft/world/level/block/ChainBlock$1.class new file mode 100644 index 000000000..170704238 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/block/ChainBlock$1.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/block/ChainBlock.class b/build/_compileJava_2/net/minecraft/world/level/block/ChainBlock.class new file mode 100644 index 000000000..bc55137ff Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/block/ChainBlock.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/block/ChangeOverTimeBlock.class b/build/_compileJava_2/net/minecraft/world/level/block/ChangeOverTimeBlock.class new file mode 100644 index 000000000..beac370a1 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/block/ChangeOverTimeBlock.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/block/CherryLeavesBlock.class b/build/_compileJava_2/net/minecraft/world/level/block/CherryLeavesBlock.class new file mode 100644 index 000000000..976202a0b Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/block/CherryLeavesBlock.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/block/ChestBlock$1.class b/build/_compileJava_2/net/minecraft/world/level/block/ChestBlock$1.class new file mode 100644 index 000000000..639e4554a Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/block/ChestBlock$1.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/block/ChestBlock$2$1.class b/build/_compileJava_2/net/minecraft/world/level/block/ChestBlock$2$1.class new file mode 100644 index 000000000..010cda234 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/block/ChestBlock$2$1.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/block/ChestBlock$2.class b/build/_compileJava_2/net/minecraft/world/level/block/ChestBlock$2.class new file mode 100644 index 000000000..26fdeab94 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/block/ChestBlock$2.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/block/ChestBlock$3.class b/build/_compileJava_2/net/minecraft/world/level/block/ChestBlock$3.class new file mode 100644 index 000000000..5ef68c104 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/block/ChestBlock$3.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/block/ChestBlock$4.class b/build/_compileJava_2/net/minecraft/world/level/block/ChestBlock$4.class new file mode 100644 index 000000000..5fccb098f Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/block/ChestBlock$4.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/block/ChestBlock.class b/build/_compileJava_2/net/minecraft/world/level/block/ChestBlock.class new file mode 100644 index 000000000..b5b3a2cd8 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/block/ChestBlock.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/block/ChiseledBookShelfBlock$1.class b/build/_compileJava_2/net/minecraft/world/level/block/ChiseledBookShelfBlock$1.class new file mode 100644 index 000000000..41524c7fd Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/block/ChiseledBookShelfBlock$1.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/block/ChiseledBookShelfBlock.class b/build/_compileJava_2/net/minecraft/world/level/block/ChiseledBookShelfBlock.class new file mode 100644 index 000000000..445c84587 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/block/ChiseledBookShelfBlock.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/block/ChorusFlowerBlock.class b/build/_compileJava_2/net/minecraft/world/level/block/ChorusFlowerBlock.class new file mode 100644 index 000000000..7064e77c9 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/block/ChorusFlowerBlock.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/block/ChorusPlantBlock.class b/build/_compileJava_2/net/minecraft/world/level/block/ChorusPlantBlock.class new file mode 100644 index 000000000..2930694d6 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/block/ChorusPlantBlock.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/block/CocoaBlock$1.class b/build/_compileJava_2/net/minecraft/world/level/block/CocoaBlock$1.class new file mode 100644 index 000000000..4feff0f1d Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/block/CocoaBlock$1.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/block/CocoaBlock.class b/build/_compileJava_2/net/minecraft/world/level/block/CocoaBlock.class new file mode 100644 index 000000000..88b276928 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/block/CocoaBlock.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/block/CommandBlock.class b/build/_compileJava_2/net/minecraft/world/level/block/CommandBlock.class new file mode 100644 index 000000000..cd7f68f02 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/block/CommandBlock.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/block/ComparatorBlock.class b/build/_compileJava_2/net/minecraft/world/level/block/ComparatorBlock.class new file mode 100644 index 000000000..1b3c0c64f Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/block/ComparatorBlock.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/block/ComposterBlock$EmptyContainer.class b/build/_compileJava_2/net/minecraft/world/level/block/ComposterBlock$EmptyContainer.class new file mode 100644 index 000000000..150bad2da Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/block/ComposterBlock$EmptyContainer.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/block/ComposterBlock$InputContainer.class b/build/_compileJava_2/net/minecraft/world/level/block/ComposterBlock$InputContainer.class new file mode 100644 index 000000000..5877e5c27 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/block/ComposterBlock$InputContainer.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/block/ComposterBlock$OutputContainer.class b/build/_compileJava_2/net/minecraft/world/level/block/ComposterBlock$OutputContainer.class new file mode 100644 index 000000000..a0d51eec8 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/block/ComposterBlock$OutputContainer.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/block/ComposterBlock.class b/build/_compileJava_2/net/minecraft/world/level/block/ComposterBlock.class new file mode 100644 index 000000000..b888f1e4f Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/block/ComposterBlock.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/block/ConcretePowderBlock.class b/build/_compileJava_2/net/minecraft/world/level/block/ConcretePowderBlock.class new file mode 100644 index 000000000..00a1630fc Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/block/ConcretePowderBlock.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/block/ConduitBlock.class b/build/_compileJava_2/net/minecraft/world/level/block/ConduitBlock.class new file mode 100644 index 000000000..a21636224 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/block/ConduitBlock.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/block/CoralBlock.class b/build/_compileJava_2/net/minecraft/world/level/block/CoralBlock.class new file mode 100644 index 000000000..ed2a0a547 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/block/CoralBlock.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/block/CoralFanBlock.class b/build/_compileJava_2/net/minecraft/world/level/block/CoralFanBlock.class new file mode 100644 index 000000000..d2816d176 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/block/CoralFanBlock.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/block/CoralPlantBlock.class b/build/_compileJava_2/net/minecraft/world/level/block/CoralPlantBlock.class new file mode 100644 index 000000000..45adbcde4 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/block/CoralPlantBlock.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/block/CoralWallFanBlock.class b/build/_compileJava_2/net/minecraft/world/level/block/CoralWallFanBlock.class new file mode 100644 index 000000000..c89a9298e Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/block/CoralWallFanBlock.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/block/CraftingTableBlock.class b/build/_compileJava_2/net/minecraft/world/level/block/CraftingTableBlock.class new file mode 100644 index 000000000..c0f649ff9 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/block/CraftingTableBlock.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/block/CropBlock.class b/build/_compileJava_2/net/minecraft/world/level/block/CropBlock.class new file mode 100644 index 000000000..e6462d420 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/block/CropBlock.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/block/CrossCollisionBlock$1.class b/build/_compileJava_2/net/minecraft/world/level/block/CrossCollisionBlock$1.class new file mode 100644 index 000000000..9aa7186aa Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/block/CrossCollisionBlock$1.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/block/CrossCollisionBlock.class b/build/_compileJava_2/net/minecraft/world/level/block/CrossCollisionBlock.class new file mode 100644 index 000000000..d8d1cebfc Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/block/CrossCollisionBlock.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/block/CryingObsidianBlock.class b/build/_compileJava_2/net/minecraft/world/level/block/CryingObsidianBlock.class new file mode 100644 index 000000000..dcd98d672 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/block/CryingObsidianBlock.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/block/DaylightDetectorBlock.class b/build/_compileJava_2/net/minecraft/world/level/block/DaylightDetectorBlock.class new file mode 100644 index 000000000..1250c4942 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/block/DaylightDetectorBlock.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/block/DeadBushBlock.class b/build/_compileJava_2/net/minecraft/world/level/block/DeadBushBlock.class new file mode 100644 index 000000000..7767ad69a Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/block/DeadBushBlock.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/block/DecoratedPotBlock.class b/build/_compileJava_2/net/minecraft/world/level/block/DecoratedPotBlock.class new file mode 100644 index 000000000..8299dfefb Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/block/DecoratedPotBlock.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/block/DetectorRailBlock$1.class b/build/_compileJava_2/net/minecraft/world/level/block/DetectorRailBlock$1.class new file mode 100644 index 000000000..2bf851d6a Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/block/DetectorRailBlock$1.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/block/DetectorRailBlock.class b/build/_compileJava_2/net/minecraft/world/level/block/DetectorRailBlock.class new file mode 100644 index 000000000..cc8ac0719 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/block/DetectorRailBlock.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/block/DiodeBlock.class b/build/_compileJava_2/net/minecraft/world/level/block/DiodeBlock.class new file mode 100644 index 000000000..0ac969e01 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/block/DiodeBlock.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/block/DirectionalBlock.class b/build/_compileJava_2/net/minecraft/world/level/block/DirectionalBlock.class new file mode 100644 index 000000000..6ee466b7b Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/block/DirectionalBlock.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/block/DirtPathBlock.class b/build/_compileJava_2/net/minecraft/world/level/block/DirtPathBlock.class new file mode 100644 index 000000000..4dd547720 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/block/DirtPathBlock.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/block/DispenserBlock.class b/build/_compileJava_2/net/minecraft/world/level/block/DispenserBlock.class new file mode 100644 index 000000000..05ce51268 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/block/DispenserBlock.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/block/DoorBlock$1.class b/build/_compileJava_2/net/minecraft/world/level/block/DoorBlock$1.class new file mode 100644 index 000000000..21f29601e Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/block/DoorBlock$1.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/block/DoorBlock.class b/build/_compileJava_2/net/minecraft/world/level/block/DoorBlock.class new file mode 100644 index 000000000..2d6f333c0 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/block/DoorBlock.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/block/DoubleBlockCombiner$BlockType.class b/build/_compileJava_2/net/minecraft/world/level/block/DoubleBlockCombiner$BlockType.class new file mode 100644 index 000000000..133566f8c Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/block/DoubleBlockCombiner$BlockType.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/block/DoubleBlockCombiner$Combiner.class b/build/_compileJava_2/net/minecraft/world/level/block/DoubleBlockCombiner$Combiner.class new file mode 100644 index 000000000..559c94912 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/block/DoubleBlockCombiner$Combiner.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/block/DoubleBlockCombiner$NeighborCombineResult$Double.class b/build/_compileJava_2/net/minecraft/world/level/block/DoubleBlockCombiner$NeighborCombineResult$Double.class new file mode 100644 index 000000000..5d2e44434 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/block/DoubleBlockCombiner$NeighborCombineResult$Double.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/block/DoubleBlockCombiner$NeighborCombineResult$Single.class b/build/_compileJava_2/net/minecraft/world/level/block/DoubleBlockCombiner$NeighborCombineResult$Single.class new file mode 100644 index 000000000..d31e2c013 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/block/DoubleBlockCombiner$NeighborCombineResult$Single.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/block/DoubleBlockCombiner$NeighborCombineResult.class b/build/_compileJava_2/net/minecraft/world/level/block/DoubleBlockCombiner$NeighborCombineResult.class new file mode 100644 index 000000000..5434c767c Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/block/DoubleBlockCombiner$NeighborCombineResult.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/block/DoubleBlockCombiner.class b/build/_compileJava_2/net/minecraft/world/level/block/DoubleBlockCombiner.class new file mode 100644 index 000000000..2234edd9b Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/block/DoubleBlockCombiner.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/block/DoublePlantBlock.class b/build/_compileJava_2/net/minecraft/world/level/block/DoublePlantBlock.class new file mode 100644 index 000000000..f561eaf48 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/block/DoublePlantBlock.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/block/DragonEggBlock.class b/build/_compileJava_2/net/minecraft/world/level/block/DragonEggBlock.class new file mode 100644 index 000000000..6678f83ef Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/block/DragonEggBlock.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/block/DropExperienceBlock.class b/build/_compileJava_2/net/minecraft/world/level/block/DropExperienceBlock.class new file mode 100644 index 000000000..e1945b5e6 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/block/DropExperienceBlock.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/block/DropperBlock.class b/build/_compileJava_2/net/minecraft/world/level/block/DropperBlock.class new file mode 100644 index 000000000..6b2df3e54 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/block/DropperBlock.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/block/EnchantmentTableBlock.class b/build/_compileJava_2/net/minecraft/world/level/block/EnchantmentTableBlock.class new file mode 100644 index 000000000..b0e21d193 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/block/EnchantmentTableBlock.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/block/EndGatewayBlock.class b/build/_compileJava_2/net/minecraft/world/level/block/EndGatewayBlock.class new file mode 100644 index 000000000..3fb83e6fa Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/block/EndGatewayBlock.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/block/EndPortalBlock.class b/build/_compileJava_2/net/minecraft/world/level/block/EndPortalBlock.class new file mode 100644 index 000000000..b50363b78 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/block/EndPortalBlock.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/block/EndPortalFrameBlock.class b/build/_compileJava_2/net/minecraft/world/level/block/EndPortalFrameBlock.class new file mode 100644 index 000000000..f01c0b01d Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/block/EndPortalFrameBlock.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/block/EndRodBlock.class b/build/_compileJava_2/net/minecraft/world/level/block/EndRodBlock.class new file mode 100644 index 000000000..6605a0704 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/block/EndRodBlock.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/block/EnderChestBlock.class b/build/_compileJava_2/net/minecraft/world/level/block/EnderChestBlock.class new file mode 100644 index 000000000..9b1725769 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/block/EnderChestBlock.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/block/EntityBlock.class b/build/_compileJava_2/net/minecraft/world/level/block/EntityBlock.class new file mode 100644 index 000000000..a994baf38 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/block/EntityBlock.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/block/EquipableCarvedPumpkinBlock.class b/build/_compileJava_2/net/minecraft/world/level/block/EquipableCarvedPumpkinBlock.class new file mode 100644 index 000000000..1bbc15482 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/block/EquipableCarvedPumpkinBlock.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/block/FaceAttachedHorizontalDirectionalBlock$1.class b/build/_compileJava_2/net/minecraft/world/level/block/FaceAttachedHorizontalDirectionalBlock$1.class new file mode 100644 index 000000000..53dfb37ad Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/block/FaceAttachedHorizontalDirectionalBlock$1.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/block/FaceAttachedHorizontalDirectionalBlock.class b/build/_compileJava_2/net/minecraft/world/level/block/FaceAttachedHorizontalDirectionalBlock.class new file mode 100644 index 000000000..f82e57667 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/block/FaceAttachedHorizontalDirectionalBlock.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/block/Fallable.class b/build/_compileJava_2/net/minecraft/world/level/block/Fallable.class new file mode 100644 index 000000000..e2b92cfa5 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/block/Fallable.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/block/FallingBlock.class b/build/_compileJava_2/net/minecraft/world/level/block/FallingBlock.class new file mode 100644 index 000000000..73fd11db7 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/block/FallingBlock.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/block/FarmBlock.class b/build/_compileJava_2/net/minecraft/world/level/block/FarmBlock.class new file mode 100644 index 000000000..47d1c6ad9 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/block/FarmBlock.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/block/FenceBlock.class b/build/_compileJava_2/net/minecraft/world/level/block/FenceBlock.class new file mode 100644 index 000000000..9f4a898f5 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/block/FenceBlock.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/block/FenceGateBlock$1.class b/build/_compileJava_2/net/minecraft/world/level/block/FenceGateBlock$1.class new file mode 100644 index 000000000..77d78aaaa Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/block/FenceGateBlock$1.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/block/FenceGateBlock.class b/build/_compileJava_2/net/minecraft/world/level/block/FenceGateBlock.class new file mode 100644 index 000000000..f9774e7f5 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/block/FenceGateBlock.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/block/FireBlock.class b/build/_compileJava_2/net/minecraft/world/level/block/FireBlock.class new file mode 100644 index 000000000..7ec50fa5c Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/block/FireBlock.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/block/FletchingTableBlock.class b/build/_compileJava_2/net/minecraft/world/level/block/FletchingTableBlock.class new file mode 100644 index 000000000..4a69a5fb8 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/block/FletchingTableBlock.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/block/FlowerBlock.class b/build/_compileJava_2/net/minecraft/world/level/block/FlowerBlock.class new file mode 100644 index 000000000..b005623a4 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/block/FlowerBlock.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/block/FlowerPotBlock.class b/build/_compileJava_2/net/minecraft/world/level/block/FlowerPotBlock.class new file mode 100644 index 000000000..38bc2d8e9 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/block/FlowerPotBlock.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/block/FrogspawnBlock.class b/build/_compileJava_2/net/minecraft/world/level/block/FrogspawnBlock.class new file mode 100644 index 000000000..0aaab4753 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/block/FrogspawnBlock.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/block/FrostedIceBlock.class b/build/_compileJava_2/net/minecraft/world/level/block/FrostedIceBlock.class new file mode 100644 index 000000000..f20f0fed7 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/block/FrostedIceBlock.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/block/FungusBlock.class b/build/_compileJava_2/net/minecraft/world/level/block/FungusBlock.class new file mode 100644 index 000000000..13edee2ff Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/block/FungusBlock.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/block/FurnaceBlock.class b/build/_compileJava_2/net/minecraft/world/level/block/FurnaceBlock.class new file mode 100644 index 000000000..654f44930 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/block/FurnaceBlock.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/block/GameMasterBlock.class b/build/_compileJava_2/net/minecraft/world/level/block/GameMasterBlock.class new file mode 100644 index 000000000..3490f65bd Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/block/GameMasterBlock.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/block/GlassBlock.class b/build/_compileJava_2/net/minecraft/world/level/block/GlassBlock.class new file mode 100644 index 000000000..46ba6644e Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/block/GlassBlock.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/block/GlazedTerracottaBlock.class b/build/_compileJava_2/net/minecraft/world/level/block/GlazedTerracottaBlock.class new file mode 100644 index 000000000..5877cb53e Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/block/GlazedTerracottaBlock.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/block/GlowLichenBlock.class b/build/_compileJava_2/net/minecraft/world/level/block/GlowLichenBlock.class new file mode 100644 index 000000000..87040a8a4 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/block/GlowLichenBlock.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/block/GrassBlock.class b/build/_compileJava_2/net/minecraft/world/level/block/GrassBlock.class new file mode 100644 index 000000000..63e90a975 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/block/GrassBlock.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/block/GravelBlock.class b/build/_compileJava_2/net/minecraft/world/level/block/GravelBlock.class new file mode 100644 index 000000000..a9d71d9e5 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/block/GravelBlock.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/block/GrindstoneBlock$1.class b/build/_compileJava_2/net/minecraft/world/level/block/GrindstoneBlock$1.class new file mode 100644 index 000000000..356865256 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/block/GrindstoneBlock$1.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/block/GrindstoneBlock.class b/build/_compileJava_2/net/minecraft/world/level/block/GrindstoneBlock.class new file mode 100644 index 000000000..0f242d12e Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/block/GrindstoneBlock.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/block/GrowingPlantBlock.class b/build/_compileJava_2/net/minecraft/world/level/block/GrowingPlantBlock.class new file mode 100644 index 000000000..fddb8d058 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/block/GrowingPlantBlock.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/block/GrowingPlantBodyBlock.class b/build/_compileJava_2/net/minecraft/world/level/block/GrowingPlantBodyBlock.class new file mode 100644 index 000000000..a5d477640 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/block/GrowingPlantBodyBlock.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/block/GrowingPlantHeadBlock.class b/build/_compileJava_2/net/minecraft/world/level/block/GrowingPlantHeadBlock.class new file mode 100644 index 000000000..911737726 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/block/GrowingPlantHeadBlock.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/block/HalfTransparentBlock.class b/build/_compileJava_2/net/minecraft/world/level/block/HalfTransparentBlock.class new file mode 100644 index 000000000..f9fc1b936 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/block/HalfTransparentBlock.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/block/HangingRootsBlock.class b/build/_compileJava_2/net/minecraft/world/level/block/HangingRootsBlock.class new file mode 100644 index 000000000..b8837e1f5 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/block/HangingRootsBlock.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/block/HayBlock.class b/build/_compileJava_2/net/minecraft/world/level/block/HayBlock.class new file mode 100644 index 000000000..6f7015485 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/block/HayBlock.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/block/HoneyBlock.class b/build/_compileJava_2/net/minecraft/world/level/block/HoneyBlock.class new file mode 100644 index 000000000..96c15ae03 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/block/HoneyBlock.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/block/HopperBlock$1.class b/build/_compileJava_2/net/minecraft/world/level/block/HopperBlock$1.class new file mode 100644 index 000000000..04ec7e469 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/block/HopperBlock$1.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/block/HopperBlock.class b/build/_compileJava_2/net/minecraft/world/level/block/HopperBlock.class new file mode 100644 index 000000000..b8170b6aa Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/block/HopperBlock.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/block/HorizontalDirectionalBlock.class b/build/_compileJava_2/net/minecraft/world/level/block/HorizontalDirectionalBlock.class new file mode 100644 index 000000000..94264807c Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/block/HorizontalDirectionalBlock.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/block/HugeMushroomBlock.class b/build/_compileJava_2/net/minecraft/world/level/block/HugeMushroomBlock.class new file mode 100644 index 000000000..3fcd1a2fa Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/block/HugeMushroomBlock.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/block/IceBlock.class b/build/_compileJava_2/net/minecraft/world/level/block/IceBlock.class new file mode 100644 index 000000000..0b9b77e06 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/block/IceBlock.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/block/InfestedBlock.class b/build/_compileJava_2/net/minecraft/world/level/block/InfestedBlock.class new file mode 100644 index 000000000..fb53c63f9 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/block/InfestedBlock.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/block/InfestedRotatedPillarBlock.class b/build/_compileJava_2/net/minecraft/world/level/block/InfestedRotatedPillarBlock.class new file mode 100644 index 000000000..299289020 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/block/InfestedRotatedPillarBlock.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/block/IronBarsBlock.class b/build/_compileJava_2/net/minecraft/world/level/block/IronBarsBlock.class new file mode 100644 index 000000000..1a32bf450 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/block/IronBarsBlock.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/block/JigsawBlock.class b/build/_compileJava_2/net/minecraft/world/level/block/JigsawBlock.class new file mode 100644 index 000000000..967fd9c2f Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/block/JigsawBlock.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/block/JukeboxBlock.class b/build/_compileJava_2/net/minecraft/world/level/block/JukeboxBlock.class new file mode 100644 index 000000000..c2df9d554 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/block/JukeboxBlock.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/block/KelpBlock.class b/build/_compileJava_2/net/minecraft/world/level/block/KelpBlock.class new file mode 100644 index 000000000..494f1e489 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/block/KelpBlock.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/block/KelpPlantBlock.class b/build/_compileJava_2/net/minecraft/world/level/block/KelpPlantBlock.class new file mode 100644 index 000000000..b5b338bd9 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/block/KelpPlantBlock.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/block/LadderBlock$1.class b/build/_compileJava_2/net/minecraft/world/level/block/LadderBlock$1.class new file mode 100644 index 000000000..995155d9c Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/block/LadderBlock$1.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/block/LadderBlock.class b/build/_compileJava_2/net/minecraft/world/level/block/LadderBlock.class new file mode 100644 index 000000000..efc4eaa7b Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/block/LadderBlock.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/block/LanternBlock.class b/build/_compileJava_2/net/minecraft/world/level/block/LanternBlock.class new file mode 100644 index 000000000..7fedb9e29 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/block/LanternBlock.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/block/LavaCauldronBlock.class b/build/_compileJava_2/net/minecraft/world/level/block/LavaCauldronBlock.class new file mode 100644 index 000000000..403a83ee0 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/block/LavaCauldronBlock.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/block/LayeredCauldronBlock.class b/build/_compileJava_2/net/minecraft/world/level/block/LayeredCauldronBlock.class new file mode 100644 index 000000000..ec0b9282e Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/block/LayeredCauldronBlock.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/block/LeavesBlock.class b/build/_compileJava_2/net/minecraft/world/level/block/LeavesBlock.class new file mode 100644 index 000000000..b9810f674 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/block/LeavesBlock.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/block/LecternBlock$1.class b/build/_compileJava_2/net/minecraft/world/level/block/LecternBlock$1.class new file mode 100644 index 000000000..3ec07cbfb Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/block/LecternBlock$1.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/block/LecternBlock.class b/build/_compileJava_2/net/minecraft/world/level/block/LecternBlock.class new file mode 100644 index 000000000..a9afc3c2a Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/block/LecternBlock.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/block/LevelEvent.class b/build/_compileJava_2/net/minecraft/world/level/block/LevelEvent.class new file mode 100644 index 000000000..8f71063e4 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/block/LevelEvent.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/block/LeverBlock$1.class b/build/_compileJava_2/net/minecraft/world/level/block/LeverBlock$1.class new file mode 100644 index 000000000..fc866f994 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/block/LeverBlock$1.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/block/LeverBlock.class b/build/_compileJava_2/net/minecraft/world/level/block/LeverBlock.class new file mode 100644 index 000000000..f4b316e76 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/block/LeverBlock.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/block/LightBlock.class b/build/_compileJava_2/net/minecraft/world/level/block/LightBlock.class new file mode 100644 index 000000000..0e6718018 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/block/LightBlock.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/block/LightningRodBlock.class b/build/_compileJava_2/net/minecraft/world/level/block/LightningRodBlock.class new file mode 100644 index 000000000..9aedada55 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/block/LightningRodBlock.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/block/LiquidBlock.class b/build/_compileJava_2/net/minecraft/world/level/block/LiquidBlock.class new file mode 100644 index 000000000..d54192922 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/block/LiquidBlock.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/block/LiquidBlockContainer.class b/build/_compileJava_2/net/minecraft/world/level/block/LiquidBlockContainer.class new file mode 100644 index 000000000..441e75a34 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/block/LiquidBlockContainer.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/block/LoomBlock.class b/build/_compileJava_2/net/minecraft/world/level/block/LoomBlock.class new file mode 100644 index 000000000..4f651f60d Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/block/LoomBlock.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/block/MagmaBlock.class b/build/_compileJava_2/net/minecraft/world/level/block/MagmaBlock.class new file mode 100644 index 000000000..ef0553823 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/block/MagmaBlock.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/block/MangroveLeavesBlock.class b/build/_compileJava_2/net/minecraft/world/level/block/MangroveLeavesBlock.class new file mode 100644 index 000000000..ebb1ff015 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/block/MangroveLeavesBlock.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/block/MangrovePropaguleBlock.class b/build/_compileJava_2/net/minecraft/world/level/block/MangrovePropaguleBlock.class new file mode 100644 index 000000000..3881f5cb5 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/block/MangrovePropaguleBlock.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/block/MangroveRootsBlock.class b/build/_compileJava_2/net/minecraft/world/level/block/MangroveRootsBlock.class new file mode 100644 index 000000000..8563814b6 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/block/MangroveRootsBlock.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/block/MelonBlock.class b/build/_compileJava_2/net/minecraft/world/level/block/MelonBlock.class new file mode 100644 index 000000000..698a87e14 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/block/MelonBlock.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/block/Mirror$1.class b/build/_compileJava_2/net/minecraft/world/level/block/Mirror$1.class new file mode 100644 index 000000000..5ecf09a13 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/block/Mirror$1.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/block/Mirror.class b/build/_compileJava_2/net/minecraft/world/level/block/Mirror.class new file mode 100644 index 000000000..bb687a6c6 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/block/Mirror.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/block/MossBlock.class b/build/_compileJava_2/net/minecraft/world/level/block/MossBlock.class new file mode 100644 index 000000000..a275072bb Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/block/MossBlock.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/block/MudBlock.class b/build/_compileJava_2/net/minecraft/world/level/block/MudBlock.class new file mode 100644 index 000000000..559e3a8ee Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/block/MudBlock.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/block/MultifaceBlock.class b/build/_compileJava_2/net/minecraft/world/level/block/MultifaceBlock.class new file mode 100644 index 000000000..95357d5c6 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/block/MultifaceBlock.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/block/MultifaceSpreader$DefaultSpreaderConfig.class b/build/_compileJava_2/net/minecraft/world/level/block/MultifaceSpreader$DefaultSpreaderConfig.class new file mode 100644 index 000000000..979a48e14 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/block/MultifaceSpreader$DefaultSpreaderConfig.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/block/MultifaceSpreader$SpreadConfig.class b/build/_compileJava_2/net/minecraft/world/level/block/MultifaceSpreader$SpreadConfig.class new file mode 100644 index 000000000..449520e76 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/block/MultifaceSpreader$SpreadConfig.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/block/MultifaceSpreader$SpreadPos.class b/build/_compileJava_2/net/minecraft/world/level/block/MultifaceSpreader$SpreadPos.class new file mode 100644 index 000000000..382c5af88 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/block/MultifaceSpreader$SpreadPos.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/block/MultifaceSpreader$SpreadPredicate.class b/build/_compileJava_2/net/minecraft/world/level/block/MultifaceSpreader$SpreadPredicate.class new file mode 100644 index 000000000..2e82c33b0 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/block/MultifaceSpreader$SpreadPredicate.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/block/MultifaceSpreader$SpreadType$1.class b/build/_compileJava_2/net/minecraft/world/level/block/MultifaceSpreader$SpreadType$1.class new file mode 100644 index 000000000..1bb71d108 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/block/MultifaceSpreader$SpreadType$1.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/block/MultifaceSpreader$SpreadType$2.class b/build/_compileJava_2/net/minecraft/world/level/block/MultifaceSpreader$SpreadType$2.class new file mode 100644 index 000000000..565acf572 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/block/MultifaceSpreader$SpreadType$2.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/block/MultifaceSpreader$SpreadType$3.class b/build/_compileJava_2/net/minecraft/world/level/block/MultifaceSpreader$SpreadType$3.class new file mode 100644 index 000000000..7af6a2b65 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/block/MultifaceSpreader$SpreadType$3.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/block/MultifaceSpreader$SpreadType.class b/build/_compileJava_2/net/minecraft/world/level/block/MultifaceSpreader$SpreadType.class new file mode 100644 index 000000000..19c19fd41 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/block/MultifaceSpreader$SpreadType.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/block/MultifaceSpreader.class b/build/_compileJava_2/net/minecraft/world/level/block/MultifaceSpreader.class new file mode 100644 index 000000000..afd9ee287 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/block/MultifaceSpreader.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/block/MushroomBlock.class b/build/_compileJava_2/net/minecraft/world/level/block/MushroomBlock.class new file mode 100644 index 000000000..d57ab9adc Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/block/MushroomBlock.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/block/MyceliumBlock.class b/build/_compileJava_2/net/minecraft/world/level/block/MyceliumBlock.class new file mode 100644 index 000000000..f7c3aef16 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/block/MyceliumBlock.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/block/NetherPortalBlock$1.class b/build/_compileJava_2/net/minecraft/world/level/block/NetherPortalBlock$1.class new file mode 100644 index 000000000..d95ad3d3d Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/block/NetherPortalBlock$1.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/block/NetherPortalBlock.class b/build/_compileJava_2/net/minecraft/world/level/block/NetherPortalBlock.class new file mode 100644 index 000000000..8fb1499c2 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/block/NetherPortalBlock.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/block/NetherSproutsBlock.class b/build/_compileJava_2/net/minecraft/world/level/block/NetherSproutsBlock.class new file mode 100644 index 000000000..365108f6e Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/block/NetherSproutsBlock.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/block/NetherVines.class b/build/_compileJava_2/net/minecraft/world/level/block/NetherVines.class new file mode 100644 index 000000000..aa869af96 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/block/NetherVines.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/block/NetherWartBlock.class b/build/_compileJava_2/net/minecraft/world/level/block/NetherWartBlock.class new file mode 100644 index 000000000..26f821236 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/block/NetherWartBlock.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/block/NetherrackBlock.class b/build/_compileJava_2/net/minecraft/world/level/block/NetherrackBlock.class new file mode 100644 index 000000000..eb7c71a41 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/block/NetherrackBlock.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/block/NoteBlock.class b/build/_compileJava_2/net/minecraft/world/level/block/NoteBlock.class new file mode 100644 index 000000000..f282cf392 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/block/NoteBlock.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/block/NyliumBlock.class b/build/_compileJava_2/net/minecraft/world/level/block/NyliumBlock.class new file mode 100644 index 000000000..77bfb552b Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/block/NyliumBlock.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/block/ObserverBlock.class b/build/_compileJava_2/net/minecraft/world/level/block/ObserverBlock.class new file mode 100644 index 000000000..da038da76 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/block/ObserverBlock.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/block/PiglinWallSkullBlock.class b/build/_compileJava_2/net/minecraft/world/level/block/PiglinWallSkullBlock.class new file mode 100644 index 000000000..59f2a68ad Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/block/PiglinWallSkullBlock.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/block/PinkPetalsBlock.class b/build/_compileJava_2/net/minecraft/world/level/block/PinkPetalsBlock.class new file mode 100644 index 000000000..300a17803 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/block/PinkPetalsBlock.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/block/PipeBlock.class b/build/_compileJava_2/net/minecraft/world/level/block/PipeBlock.class new file mode 100644 index 000000000..1648e8b27 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/block/PipeBlock.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/block/PitcherCropBlock$PosAndState.class b/build/_compileJava_2/net/minecraft/world/level/block/PitcherCropBlock$PosAndState.class new file mode 100644 index 000000000..c9bb179f5 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/block/PitcherCropBlock$PosAndState.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/block/PitcherCropBlock.class b/build/_compileJava_2/net/minecraft/world/level/block/PitcherCropBlock.class new file mode 100644 index 000000000..6a50429c0 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/block/PitcherCropBlock.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/block/PlayerHeadBlock.class b/build/_compileJava_2/net/minecraft/world/level/block/PlayerHeadBlock.class new file mode 100644 index 000000000..84b9c9f07 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/block/PlayerHeadBlock.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/block/PlayerWallHeadBlock.class b/build/_compileJava_2/net/minecraft/world/level/block/PlayerWallHeadBlock.class new file mode 100644 index 000000000..12c082b53 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/block/PlayerWallHeadBlock.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/block/PointedDripstoneBlock$FluidInfo.class b/build/_compileJava_2/net/minecraft/world/level/block/PointedDripstoneBlock$FluidInfo.class new file mode 100644 index 000000000..a9c9a93f1 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/block/PointedDripstoneBlock$FluidInfo.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/block/PointedDripstoneBlock.class b/build/_compileJava_2/net/minecraft/world/level/block/PointedDripstoneBlock.class new file mode 100644 index 000000000..c04669b06 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/block/PointedDripstoneBlock.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/block/PotatoBlock.class b/build/_compileJava_2/net/minecraft/world/level/block/PotatoBlock.class new file mode 100644 index 000000000..070fdcf1b Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/block/PotatoBlock.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/block/PowderSnowBlock.class b/build/_compileJava_2/net/minecraft/world/level/block/PowderSnowBlock.class new file mode 100644 index 000000000..6ea06fc36 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/block/PowderSnowBlock.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/block/PowderSnowCauldronBlock.class b/build/_compileJava_2/net/minecraft/world/level/block/PowderSnowCauldronBlock.class new file mode 100644 index 000000000..8ffe13a9d Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/block/PowderSnowCauldronBlock.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/block/PoweredBlock.class b/build/_compileJava_2/net/minecraft/world/level/block/PoweredBlock.class new file mode 100644 index 000000000..20c4ff893 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/block/PoweredBlock.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/block/PoweredRailBlock$1.class b/build/_compileJava_2/net/minecraft/world/level/block/PoweredRailBlock$1.class new file mode 100644 index 000000000..38dcb505f Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/block/PoweredRailBlock$1.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/block/PoweredRailBlock.class b/build/_compileJava_2/net/minecraft/world/level/block/PoweredRailBlock.class new file mode 100644 index 000000000..932e73c82 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/block/PoweredRailBlock.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/block/PressurePlateBlock$1.class b/build/_compileJava_2/net/minecraft/world/level/block/PressurePlateBlock$1.class new file mode 100644 index 000000000..9f193513f Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/block/PressurePlateBlock$1.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/block/PressurePlateBlock$Sensitivity.class b/build/_compileJava_2/net/minecraft/world/level/block/PressurePlateBlock$Sensitivity.class new file mode 100644 index 000000000..24ab27096 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/block/PressurePlateBlock$Sensitivity.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/block/PressurePlateBlock.class b/build/_compileJava_2/net/minecraft/world/level/block/PressurePlateBlock.class new file mode 100644 index 000000000..f2fdeeb93 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/block/PressurePlateBlock.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/block/PumpkinBlock.class b/build/_compileJava_2/net/minecraft/world/level/block/PumpkinBlock.class new file mode 100644 index 000000000..8722299ae Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/block/PumpkinBlock.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/block/RailBlock$1.class b/build/_compileJava_2/net/minecraft/world/level/block/RailBlock$1.class new file mode 100644 index 000000000..e7fb3a99f Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/block/RailBlock$1.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/block/RailBlock.class b/build/_compileJava_2/net/minecraft/world/level/block/RailBlock.class new file mode 100644 index 000000000..565d07736 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/block/RailBlock.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/block/RailState$1.class b/build/_compileJava_2/net/minecraft/world/level/block/RailState$1.class new file mode 100644 index 000000000..a48528d97 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/block/RailState$1.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/block/RailState.class b/build/_compileJava_2/net/minecraft/world/level/block/RailState.class new file mode 100644 index 000000000..809ab01e1 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/block/RailState.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/block/RedStoneOreBlock.class b/build/_compileJava_2/net/minecraft/world/level/block/RedStoneOreBlock.class new file mode 100644 index 000000000..623de22a7 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/block/RedStoneOreBlock.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/block/RedStoneWireBlock$1.class b/build/_compileJava_2/net/minecraft/world/level/block/RedStoneWireBlock$1.class new file mode 100644 index 000000000..533f1db3e Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/block/RedStoneWireBlock$1.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/block/RedStoneWireBlock.class b/build/_compileJava_2/net/minecraft/world/level/block/RedStoneWireBlock.class new file mode 100644 index 000000000..b2419a67c Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/block/RedStoneWireBlock.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/block/RedstoneLampBlock.class b/build/_compileJava_2/net/minecraft/world/level/block/RedstoneLampBlock.class new file mode 100644 index 000000000..fd07bc534 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/block/RedstoneLampBlock.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/block/RedstoneTorchBlock$Toggle.class b/build/_compileJava_2/net/minecraft/world/level/block/RedstoneTorchBlock$Toggle.class new file mode 100644 index 000000000..a41d0e60f Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/block/RedstoneTorchBlock$Toggle.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/block/RedstoneTorchBlock.class b/build/_compileJava_2/net/minecraft/world/level/block/RedstoneTorchBlock.class new file mode 100644 index 000000000..be65f81e8 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/block/RedstoneTorchBlock.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/block/RedstoneWallTorchBlock.class b/build/_compileJava_2/net/minecraft/world/level/block/RedstoneWallTorchBlock.class new file mode 100644 index 000000000..78484cb8e Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/block/RedstoneWallTorchBlock.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/block/RenderShape.class b/build/_compileJava_2/net/minecraft/world/level/block/RenderShape.class new file mode 100644 index 000000000..3ea9d3f9c Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/block/RenderShape.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/block/RepeaterBlock.class b/build/_compileJava_2/net/minecraft/world/level/block/RepeaterBlock.class new file mode 100644 index 000000000..8a84d0338 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/block/RepeaterBlock.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/block/RespawnAnchorBlock$1.class b/build/_compileJava_2/net/minecraft/world/level/block/RespawnAnchorBlock$1.class new file mode 100644 index 000000000..a0f364445 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/block/RespawnAnchorBlock$1.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/block/RespawnAnchorBlock.class b/build/_compileJava_2/net/minecraft/world/level/block/RespawnAnchorBlock.class new file mode 100644 index 000000000..87fcc07f6 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/block/RespawnAnchorBlock.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/block/RodBlock$1.class b/build/_compileJava_2/net/minecraft/world/level/block/RodBlock$1.class new file mode 100644 index 000000000..1897ee32b Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/block/RodBlock$1.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/block/RodBlock.class b/build/_compileJava_2/net/minecraft/world/level/block/RodBlock.class new file mode 100644 index 000000000..a33015e3a Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/block/RodBlock.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/block/RootedDirtBlock.class b/build/_compileJava_2/net/minecraft/world/level/block/RootedDirtBlock.class new file mode 100644 index 000000000..0efe6353a Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/block/RootedDirtBlock.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/block/RootsBlock.class b/build/_compileJava_2/net/minecraft/world/level/block/RootsBlock.class new file mode 100644 index 000000000..c076f370b Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/block/RootsBlock.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/block/RotatedPillarBlock$1.class b/build/_compileJava_2/net/minecraft/world/level/block/RotatedPillarBlock$1.class new file mode 100644 index 000000000..8d0158461 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/block/RotatedPillarBlock$1.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/block/RotatedPillarBlock.class b/build/_compileJava_2/net/minecraft/world/level/block/RotatedPillarBlock.class new file mode 100644 index 000000000..dd599fabf Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/block/RotatedPillarBlock.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/block/Rotation$1.class b/build/_compileJava_2/net/minecraft/world/level/block/Rotation$1.class new file mode 100644 index 000000000..ea6c2fde6 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/block/Rotation$1.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/block/Rotation.class b/build/_compileJava_2/net/minecraft/world/level/block/Rotation.class new file mode 100644 index 000000000..b38a7b0e5 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/block/Rotation.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/block/SandBlock.class b/build/_compileJava_2/net/minecraft/world/level/block/SandBlock.class new file mode 100644 index 000000000..d6f81a254 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/block/SandBlock.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/block/SaplingBlock.class b/build/_compileJava_2/net/minecraft/world/level/block/SaplingBlock.class new file mode 100644 index 000000000..956ff499e Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/block/SaplingBlock.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/block/ScaffoldingBlock.class b/build/_compileJava_2/net/minecraft/world/level/block/ScaffoldingBlock.class new file mode 100644 index 000000000..342cf916e Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/block/ScaffoldingBlock.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/block/SculkBehaviour$1.class b/build/_compileJava_2/net/minecraft/world/level/block/SculkBehaviour$1.class new file mode 100644 index 000000000..b5bdddf20 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/block/SculkBehaviour$1.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/block/SculkBehaviour.class b/build/_compileJava_2/net/minecraft/world/level/block/SculkBehaviour.class new file mode 100644 index 000000000..95b20a777 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/block/SculkBehaviour.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/block/SculkBlock.class b/build/_compileJava_2/net/minecraft/world/level/block/SculkBlock.class new file mode 100644 index 000000000..25d04d8bd Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/block/SculkBlock.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/block/SculkCatalystBlock.class b/build/_compileJava_2/net/minecraft/world/level/block/SculkCatalystBlock.class new file mode 100644 index 000000000..20cb6745d Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/block/SculkCatalystBlock.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/block/SculkSensorBlock.class b/build/_compileJava_2/net/minecraft/world/level/block/SculkSensorBlock.class new file mode 100644 index 000000000..65050b3fe Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/block/SculkSensorBlock.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/block/SculkShriekerBlock.class b/build/_compileJava_2/net/minecraft/world/level/block/SculkShriekerBlock.class new file mode 100644 index 000000000..b7b2cf7c1 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/block/SculkShriekerBlock.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/block/SculkSpreader$ChargeCursor.class b/build/_compileJava_2/net/minecraft/world/level/block/SculkSpreader$ChargeCursor.class new file mode 100644 index 000000000..beb6be841 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/block/SculkSpreader$ChargeCursor.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/block/SculkSpreader.class b/build/_compileJava_2/net/minecraft/world/level/block/SculkSpreader.class new file mode 100644 index 000000000..b9c74da95 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/block/SculkSpreader.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/block/SculkVeinBlock$SculkVeinSpreaderConfig.class b/build/_compileJava_2/net/minecraft/world/level/block/SculkVeinBlock$SculkVeinSpreaderConfig.class new file mode 100644 index 000000000..1d3c7b2db Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/block/SculkVeinBlock$SculkVeinSpreaderConfig.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/block/SculkVeinBlock.class b/build/_compileJava_2/net/minecraft/world/level/block/SculkVeinBlock.class new file mode 100644 index 000000000..9434d75ac Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/block/SculkVeinBlock.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/block/SeaPickleBlock.class b/build/_compileJava_2/net/minecraft/world/level/block/SeaPickleBlock.class new file mode 100644 index 000000000..f89aae822 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/block/SeaPickleBlock.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/block/SeagrassBlock.class b/build/_compileJava_2/net/minecraft/world/level/block/SeagrassBlock.class new file mode 100644 index 000000000..9bffb27c9 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/block/SeagrassBlock.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/block/ShulkerBoxBlock$1.class b/build/_compileJava_2/net/minecraft/world/level/block/ShulkerBoxBlock$1.class new file mode 100644 index 000000000..c78cb110b Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/block/ShulkerBoxBlock$1.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/block/ShulkerBoxBlock.class b/build/_compileJava_2/net/minecraft/world/level/block/ShulkerBoxBlock.class new file mode 100644 index 000000000..6e3c327d5 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/block/ShulkerBoxBlock.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/block/SignBlock.class b/build/_compileJava_2/net/minecraft/world/level/block/SignBlock.class new file mode 100644 index 000000000..6c672ff36 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/block/SignBlock.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/block/SimpleWaterloggedBlock.class b/build/_compileJava_2/net/minecraft/world/level/block/SimpleWaterloggedBlock.class new file mode 100644 index 000000000..ea66ab2d0 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/block/SimpleWaterloggedBlock.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/block/SkullBlock$Type.class b/build/_compileJava_2/net/minecraft/world/level/block/SkullBlock$Type.class new file mode 100644 index 000000000..b50a6b660 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/block/SkullBlock$Type.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/block/SkullBlock$Types.class b/build/_compileJava_2/net/minecraft/world/level/block/SkullBlock$Types.class new file mode 100644 index 000000000..310fcc213 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/block/SkullBlock$Types.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/block/SkullBlock.class b/build/_compileJava_2/net/minecraft/world/level/block/SkullBlock.class new file mode 100644 index 000000000..18a852950 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/block/SkullBlock.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/block/SlabBlock$1.class b/build/_compileJava_2/net/minecraft/world/level/block/SlabBlock$1.class new file mode 100644 index 000000000..4bc0ca64d Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/block/SlabBlock$1.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/block/SlabBlock.class b/build/_compileJava_2/net/minecraft/world/level/block/SlabBlock.class new file mode 100644 index 000000000..05ed28bba Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/block/SlabBlock.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/block/SlimeBlock.class b/build/_compileJava_2/net/minecraft/world/level/block/SlimeBlock.class new file mode 100644 index 000000000..7481cb3ba Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/block/SlimeBlock.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/block/SmallDripleafBlock.class b/build/_compileJava_2/net/minecraft/world/level/block/SmallDripleafBlock.class new file mode 100644 index 000000000..2d897bf99 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/block/SmallDripleafBlock.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/block/SmithingTableBlock.class b/build/_compileJava_2/net/minecraft/world/level/block/SmithingTableBlock.class new file mode 100644 index 000000000..7f5a6c85d Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/block/SmithingTableBlock.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/block/SmokerBlock.class b/build/_compileJava_2/net/minecraft/world/level/block/SmokerBlock.class new file mode 100644 index 000000000..3d6db9edc Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/block/SmokerBlock.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/block/SnifferEggBlock.class b/build/_compileJava_2/net/minecraft/world/level/block/SnifferEggBlock.class new file mode 100644 index 000000000..ed09bbb13 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/block/SnifferEggBlock.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/block/SnowLayerBlock$1.class b/build/_compileJava_2/net/minecraft/world/level/block/SnowLayerBlock$1.class new file mode 100644 index 000000000..47ad3d05a Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/block/SnowLayerBlock$1.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/block/SnowLayerBlock.class b/build/_compileJava_2/net/minecraft/world/level/block/SnowLayerBlock.class new file mode 100644 index 000000000..c5ac9c6ce Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/block/SnowLayerBlock.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/block/SnowyDirtBlock.class b/build/_compileJava_2/net/minecraft/world/level/block/SnowyDirtBlock.class new file mode 100644 index 000000000..36c76dbdd Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/block/SnowyDirtBlock.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/block/SoulFireBlock.class b/build/_compileJava_2/net/minecraft/world/level/block/SoulFireBlock.class new file mode 100644 index 000000000..5c1ec3891 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/block/SoulFireBlock.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/block/SoulSandBlock.class b/build/_compileJava_2/net/minecraft/world/level/block/SoulSandBlock.class new file mode 100644 index 000000000..c10bd8ddf Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/block/SoulSandBlock.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/block/SoundType.class b/build/_compileJava_2/net/minecraft/world/level/block/SoundType.class new file mode 100644 index 000000000..b74cc2a41 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/block/SoundType.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/block/SpawnerBlock.class b/build/_compileJava_2/net/minecraft/world/level/block/SpawnerBlock.class new file mode 100644 index 000000000..4c790b1f5 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/block/SpawnerBlock.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/block/SpongeBlock.class b/build/_compileJava_2/net/minecraft/world/level/block/SpongeBlock.class new file mode 100644 index 000000000..9f726345f Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/block/SpongeBlock.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/block/SporeBlossomBlock.class b/build/_compileJava_2/net/minecraft/world/level/block/SporeBlossomBlock.class new file mode 100644 index 000000000..5ccfafadc Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/block/SporeBlossomBlock.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/block/SpreadingSnowyDirtBlock.class b/build/_compileJava_2/net/minecraft/world/level/block/SpreadingSnowyDirtBlock.class new file mode 100644 index 000000000..154c8ce04 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/block/SpreadingSnowyDirtBlock.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/block/StainedGlassBlock.class b/build/_compileJava_2/net/minecraft/world/level/block/StainedGlassBlock.class new file mode 100644 index 000000000..ab76a0f33 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/block/StainedGlassBlock.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/block/StainedGlassPaneBlock.class b/build/_compileJava_2/net/minecraft/world/level/block/StainedGlassPaneBlock.class new file mode 100644 index 000000000..a6a11e238 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/block/StainedGlassPaneBlock.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/block/StairBlock$1.class b/build/_compileJava_2/net/minecraft/world/level/block/StairBlock$1.class new file mode 100644 index 000000000..91b8dcb1e Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/block/StairBlock$1.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/block/StairBlock.class b/build/_compileJava_2/net/minecraft/world/level/block/StairBlock.class new file mode 100644 index 000000000..43023540d Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/block/StairBlock.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/block/StandingSignBlock.class b/build/_compileJava_2/net/minecraft/world/level/block/StandingSignBlock.class new file mode 100644 index 000000000..9924a3088 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/block/StandingSignBlock.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/block/StemBlock.class b/build/_compileJava_2/net/minecraft/world/level/block/StemBlock.class new file mode 100644 index 000000000..7e8aa41ed Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/block/StemBlock.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/block/StemGrownBlock.class b/build/_compileJava_2/net/minecraft/world/level/block/StemGrownBlock.class new file mode 100644 index 000000000..ddc970ffb Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/block/StemGrownBlock.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/block/StonecutterBlock.class b/build/_compileJava_2/net/minecraft/world/level/block/StonecutterBlock.class new file mode 100644 index 000000000..b2ec2437f Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/block/StonecutterBlock.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/block/StructureBlock$1.class b/build/_compileJava_2/net/minecraft/world/level/block/StructureBlock$1.class new file mode 100644 index 000000000..d49bd0175 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/block/StructureBlock$1.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/block/StructureBlock.class b/build/_compileJava_2/net/minecraft/world/level/block/StructureBlock.class new file mode 100644 index 000000000..403a1ccdb Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/block/StructureBlock.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/block/StructureVoidBlock.class b/build/_compileJava_2/net/minecraft/world/level/block/StructureVoidBlock.class new file mode 100644 index 000000000..bcc87b815 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/block/StructureVoidBlock.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/block/SugarCaneBlock.class b/build/_compileJava_2/net/minecraft/world/level/block/SugarCaneBlock.class new file mode 100644 index 000000000..43cd64e16 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/block/SugarCaneBlock.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/block/SupportType$1.class b/build/_compileJava_2/net/minecraft/world/level/block/SupportType$1.class new file mode 100644 index 000000000..e4397cff4 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/block/SupportType$1.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/block/SupportType$2.class b/build/_compileJava_2/net/minecraft/world/level/block/SupportType$2.class new file mode 100644 index 000000000..e030cc5b4 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/block/SupportType$2.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/block/SupportType$3.class b/build/_compileJava_2/net/minecraft/world/level/block/SupportType$3.class new file mode 100644 index 000000000..39403eb40 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/block/SupportType$3.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/block/SupportType.class b/build/_compileJava_2/net/minecraft/world/level/block/SupportType.class new file mode 100644 index 000000000..f7e74e440 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/block/SupportType.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/block/SuspiciousEffectHolder.class b/build/_compileJava_2/net/minecraft/world/level/block/SuspiciousEffectHolder.class new file mode 100644 index 000000000..29a16c36a Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/block/SuspiciousEffectHolder.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/block/SweetBerryBushBlock.class b/build/_compileJava_2/net/minecraft/world/level/block/SweetBerryBushBlock.class new file mode 100644 index 000000000..6f57b11e2 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/block/SweetBerryBushBlock.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/block/TallFlowerBlock.class b/build/_compileJava_2/net/minecraft/world/level/block/TallFlowerBlock.class new file mode 100644 index 000000000..970e958dc Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/block/TallFlowerBlock.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/block/TallGrassBlock.class b/build/_compileJava_2/net/minecraft/world/level/block/TallGrassBlock.class new file mode 100644 index 000000000..4925e4ec6 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/block/TallGrassBlock.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/block/TallSeagrassBlock.class b/build/_compileJava_2/net/minecraft/world/level/block/TallSeagrassBlock.class new file mode 100644 index 000000000..42fb6e48a Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/block/TallSeagrassBlock.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/block/TargetBlock.class b/build/_compileJava_2/net/minecraft/world/level/block/TargetBlock.class new file mode 100644 index 000000000..1382913e4 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/block/TargetBlock.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/block/TintedGlassBlock.class b/build/_compileJava_2/net/minecraft/world/level/block/TintedGlassBlock.class new file mode 100644 index 000000000..6763b5318 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/block/TintedGlassBlock.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/block/TntBlock.class b/build/_compileJava_2/net/minecraft/world/level/block/TntBlock.class new file mode 100644 index 000000000..3463b4fc0 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/block/TntBlock.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/block/TorchBlock.class b/build/_compileJava_2/net/minecraft/world/level/block/TorchBlock.class new file mode 100644 index 000000000..4d693e0a5 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/block/TorchBlock.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/block/TorchflowerCropBlock.class b/build/_compileJava_2/net/minecraft/world/level/block/TorchflowerCropBlock.class new file mode 100644 index 000000000..eeb974509 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/block/TorchflowerCropBlock.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/block/TrapDoorBlock$1.class b/build/_compileJava_2/net/minecraft/world/level/block/TrapDoorBlock$1.class new file mode 100644 index 000000000..7fc50ac3d Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/block/TrapDoorBlock$1.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/block/TrapDoorBlock.class b/build/_compileJava_2/net/minecraft/world/level/block/TrapDoorBlock.class new file mode 100644 index 000000000..625e91336 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/block/TrapDoorBlock.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/block/TrappedChestBlock.class b/build/_compileJava_2/net/minecraft/world/level/block/TrappedChestBlock.class new file mode 100644 index 000000000..5e9fa73f9 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/block/TrappedChestBlock.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/block/TripWireBlock$1.class b/build/_compileJava_2/net/minecraft/world/level/block/TripWireBlock$1.class new file mode 100644 index 000000000..aacc99974 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/block/TripWireBlock$1.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/block/TripWireBlock.class b/build/_compileJava_2/net/minecraft/world/level/block/TripWireBlock.class new file mode 100644 index 000000000..4f11c7234 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/block/TripWireBlock.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/block/TripWireHookBlock$1.class b/build/_compileJava_2/net/minecraft/world/level/block/TripWireHookBlock$1.class new file mode 100644 index 000000000..ea9772171 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/block/TripWireHookBlock$1.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/block/TripWireHookBlock.class b/build/_compileJava_2/net/minecraft/world/level/block/TripWireHookBlock.class new file mode 100644 index 000000000..ac9e66353 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/block/TripWireHookBlock.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/block/TurtleEggBlock.class b/build/_compileJava_2/net/minecraft/world/level/block/TurtleEggBlock.class new file mode 100644 index 000000000..1ea025b21 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/block/TurtleEggBlock.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/block/TwistingVinesBlock.class b/build/_compileJava_2/net/minecraft/world/level/block/TwistingVinesBlock.class new file mode 100644 index 000000000..bd9e47811 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/block/TwistingVinesBlock.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/block/TwistingVinesPlantBlock.class b/build/_compileJava_2/net/minecraft/world/level/block/TwistingVinesPlantBlock.class new file mode 100644 index 000000000..8bc15bfd1 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/block/TwistingVinesPlantBlock.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/block/VineBlock$1.class b/build/_compileJava_2/net/minecraft/world/level/block/VineBlock$1.class new file mode 100644 index 000000000..81d19c5e6 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/block/VineBlock$1.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/block/VineBlock.class b/build/_compileJava_2/net/minecraft/world/level/block/VineBlock.class new file mode 100644 index 000000000..782b08b16 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/block/VineBlock.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/block/WallBannerBlock.class b/build/_compileJava_2/net/minecraft/world/level/block/WallBannerBlock.class new file mode 100644 index 000000000..1e7cc0d53 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/block/WallBannerBlock.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/block/WallBlock$1.class b/build/_compileJava_2/net/minecraft/world/level/block/WallBlock$1.class new file mode 100644 index 000000000..6fcf345de Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/block/WallBlock$1.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/block/WallBlock.class b/build/_compileJava_2/net/minecraft/world/level/block/WallBlock.class new file mode 100644 index 000000000..b525ee68f Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/block/WallBlock.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/block/WallHangingSignBlock$1.class b/build/_compileJava_2/net/minecraft/world/level/block/WallHangingSignBlock$1.class new file mode 100644 index 000000000..f66e41c5c Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/block/WallHangingSignBlock$1.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/block/WallHangingSignBlock.class b/build/_compileJava_2/net/minecraft/world/level/block/WallHangingSignBlock.class new file mode 100644 index 000000000..4ca480686 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/block/WallHangingSignBlock.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/block/WallSignBlock.class b/build/_compileJava_2/net/minecraft/world/level/block/WallSignBlock.class new file mode 100644 index 000000000..d012e6f61 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/block/WallSignBlock.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/block/WallSkullBlock.class b/build/_compileJava_2/net/minecraft/world/level/block/WallSkullBlock.class new file mode 100644 index 000000000..7214b8ab1 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/block/WallSkullBlock.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/block/WallTorchBlock.class b/build/_compileJava_2/net/minecraft/world/level/block/WallTorchBlock.class new file mode 100644 index 000000000..ab9aadac7 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/block/WallTorchBlock.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/block/WaterlilyBlock.class b/build/_compileJava_2/net/minecraft/world/level/block/WaterlilyBlock.class new file mode 100644 index 000000000..0d9eb5b34 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/block/WaterlilyBlock.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/block/WeatheringCopper$WeatherState.class b/build/_compileJava_2/net/minecraft/world/level/block/WeatheringCopper$WeatherState.class new file mode 100644 index 000000000..48f8d8fa1 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/block/WeatheringCopper$WeatherState.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/block/WeatheringCopper.class b/build/_compileJava_2/net/minecraft/world/level/block/WeatheringCopper.class new file mode 100644 index 000000000..df8ad43d8 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/block/WeatheringCopper.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/block/WeatheringCopperFullBlock.class b/build/_compileJava_2/net/minecraft/world/level/block/WeatheringCopperFullBlock.class new file mode 100644 index 000000000..19fe2b72f Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/block/WeatheringCopperFullBlock.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/block/WeatheringCopperSlabBlock.class b/build/_compileJava_2/net/minecraft/world/level/block/WeatheringCopperSlabBlock.class new file mode 100644 index 000000000..613325b58 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/block/WeatheringCopperSlabBlock.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/block/WeatheringCopperStairBlock.class b/build/_compileJava_2/net/minecraft/world/level/block/WeatheringCopperStairBlock.class new file mode 100644 index 000000000..2297e7631 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/block/WeatheringCopperStairBlock.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/block/WebBlock.class b/build/_compileJava_2/net/minecraft/world/level/block/WebBlock.class new file mode 100644 index 000000000..125040428 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/block/WebBlock.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/block/WeepingVinesBlock.class b/build/_compileJava_2/net/minecraft/world/level/block/WeepingVinesBlock.class new file mode 100644 index 000000000..a5427440f Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/block/WeepingVinesBlock.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/block/WeepingVinesPlantBlock.class b/build/_compileJava_2/net/minecraft/world/level/block/WeepingVinesPlantBlock.class new file mode 100644 index 000000000..82af4dc91 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/block/WeepingVinesPlantBlock.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/block/WeightedPressurePlateBlock.class b/build/_compileJava_2/net/minecraft/world/level/block/WeightedPressurePlateBlock.class new file mode 100644 index 000000000..2c4f9ffe0 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/block/WeightedPressurePlateBlock.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/block/WetSpongeBlock.class b/build/_compileJava_2/net/minecraft/world/level/block/WetSpongeBlock.class new file mode 100644 index 000000000..5effc8794 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/block/WetSpongeBlock.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/block/WitherRoseBlock.class b/build/_compileJava_2/net/minecraft/world/level/block/WitherRoseBlock.class new file mode 100644 index 000000000..ebf7844d1 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/block/WitherRoseBlock.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/block/WitherSkullBlock.class b/build/_compileJava_2/net/minecraft/world/level/block/WitherSkullBlock.class new file mode 100644 index 000000000..7c49ae932 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/block/WitherSkullBlock.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/block/WitherWallSkullBlock.class b/build/_compileJava_2/net/minecraft/world/level/block/WitherWallSkullBlock.class new file mode 100644 index 000000000..991a35400 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/block/WitherWallSkullBlock.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/block/WoolCarpetBlock.class b/build/_compileJava_2/net/minecraft/world/level/block/WoolCarpetBlock.class new file mode 100644 index 000000000..0ee453572 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/block/WoolCarpetBlock.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/block/entity/AbstractFurnaceBlockEntity$1.class b/build/_compileJava_2/net/minecraft/world/level/block/entity/AbstractFurnaceBlockEntity$1.class new file mode 100644 index 000000000..f0163c0c2 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/block/entity/AbstractFurnaceBlockEntity$1.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/block/entity/AbstractFurnaceBlockEntity$2.class b/build/_compileJava_2/net/minecraft/world/level/block/entity/AbstractFurnaceBlockEntity$2.class new file mode 100644 index 000000000..67818a3f2 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/block/entity/AbstractFurnaceBlockEntity$2.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/block/entity/AbstractFurnaceBlockEntity.class b/build/_compileJava_2/net/minecraft/world/level/block/entity/AbstractFurnaceBlockEntity.class new file mode 100644 index 000000000..a2c799d43 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/block/entity/AbstractFurnaceBlockEntity.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/block/entity/BannerBlockEntity.class b/build/_compileJava_2/net/minecraft/world/level/block/entity/BannerBlockEntity.class new file mode 100644 index 000000000..5d6aaee00 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/block/entity/BannerBlockEntity.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/block/entity/BannerPattern$Builder.class b/build/_compileJava_2/net/minecraft/world/level/block/entity/BannerPattern$Builder.class new file mode 100644 index 000000000..1e855e646 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/block/entity/BannerPattern$Builder.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/block/entity/BannerPattern.class b/build/_compileJava_2/net/minecraft/world/level/block/entity/BannerPattern.class new file mode 100644 index 000000000..4fbf305a1 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/block/entity/BannerPattern.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/block/entity/BannerPatterns.class b/build/_compileJava_2/net/minecraft/world/level/block/entity/BannerPatterns.class new file mode 100644 index 000000000..df82d50cb Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/block/entity/BannerPatterns.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/block/entity/BarrelBlockEntity$1.class b/build/_compileJava_2/net/minecraft/world/level/block/entity/BarrelBlockEntity$1.class new file mode 100644 index 000000000..eb4d3b04d Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/block/entity/BarrelBlockEntity$1.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/block/entity/BarrelBlockEntity.class b/build/_compileJava_2/net/minecraft/world/level/block/entity/BarrelBlockEntity.class new file mode 100644 index 000000000..622d229bc Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/block/entity/BarrelBlockEntity.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/block/entity/BaseContainerBlockEntity.class b/build/_compileJava_2/net/minecraft/world/level/block/entity/BaseContainerBlockEntity.class new file mode 100644 index 000000000..b5a424cc4 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/block/entity/BaseContainerBlockEntity.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/block/entity/BeaconBlockEntity$1.class b/build/_compileJava_2/net/minecraft/world/level/block/entity/BeaconBlockEntity$1.class new file mode 100644 index 000000000..40be12aa4 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/block/entity/BeaconBlockEntity$1.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/block/entity/BeaconBlockEntity$BeaconBeamSection.class b/build/_compileJava_2/net/minecraft/world/level/block/entity/BeaconBlockEntity$BeaconBeamSection.class new file mode 100644 index 000000000..2b0df7f91 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/block/entity/BeaconBlockEntity$BeaconBeamSection.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/block/entity/BeaconBlockEntity.class b/build/_compileJava_2/net/minecraft/world/level/block/entity/BeaconBlockEntity.class new file mode 100644 index 000000000..0ad070251 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/block/entity/BeaconBlockEntity.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/block/entity/BedBlockEntity.class b/build/_compileJava_2/net/minecraft/world/level/block/entity/BedBlockEntity.class new file mode 100644 index 000000000..bff333d62 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/block/entity/BedBlockEntity.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/block/entity/BeehiveBlockEntity$BeeData.class b/build/_compileJava_2/net/minecraft/world/level/block/entity/BeehiveBlockEntity$BeeData.class new file mode 100644 index 000000000..788c77d58 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/block/entity/BeehiveBlockEntity$BeeData.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/block/entity/BeehiveBlockEntity$BeeReleaseStatus.class b/build/_compileJava_2/net/minecraft/world/level/block/entity/BeehiveBlockEntity$BeeReleaseStatus.class new file mode 100644 index 000000000..b3d16d2a9 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/block/entity/BeehiveBlockEntity$BeeReleaseStatus.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/block/entity/BeehiveBlockEntity.class b/build/_compileJava_2/net/minecraft/world/level/block/entity/BeehiveBlockEntity.class new file mode 100644 index 000000000..299c74853 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/block/entity/BeehiveBlockEntity.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/block/entity/BellBlockEntity$ResonationEndAction.class b/build/_compileJava_2/net/minecraft/world/level/block/entity/BellBlockEntity$ResonationEndAction.class new file mode 100644 index 000000000..2220065c1 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/block/entity/BellBlockEntity$ResonationEndAction.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/block/entity/BellBlockEntity.class b/build/_compileJava_2/net/minecraft/world/level/block/entity/BellBlockEntity.class new file mode 100644 index 000000000..1d18dabe5 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/block/entity/BellBlockEntity.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/block/entity/BlastFurnaceBlockEntity.class b/build/_compileJava_2/net/minecraft/world/level/block/entity/BlastFurnaceBlockEntity.class new file mode 100644 index 000000000..1e17765d0 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/block/entity/BlastFurnaceBlockEntity.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/block/entity/BlockEntity.class b/build/_compileJava_2/net/minecraft/world/level/block/entity/BlockEntity.class new file mode 100644 index 000000000..e4f091a0d Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/block/entity/BlockEntity.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/block/entity/BlockEntityTicker.class b/build/_compileJava_2/net/minecraft/world/level/block/entity/BlockEntityTicker.class new file mode 100644 index 000000000..11ebabcfe Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/block/entity/BlockEntityTicker.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/block/entity/BlockEntityType$BlockEntitySupplier.class b/build/_compileJava_2/net/minecraft/world/level/block/entity/BlockEntityType$BlockEntitySupplier.class new file mode 100644 index 000000000..cc89e45ff Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/block/entity/BlockEntityType$BlockEntitySupplier.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/block/entity/BlockEntityType$Builder.class b/build/_compileJava_2/net/minecraft/world/level/block/entity/BlockEntityType$Builder.class new file mode 100644 index 000000000..b6f5d53b0 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/block/entity/BlockEntityType$Builder.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/block/entity/BlockEntityType.class b/build/_compileJava_2/net/minecraft/world/level/block/entity/BlockEntityType.class new file mode 100644 index 000000000..ea30ff5f4 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/block/entity/BlockEntityType.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/block/entity/BrewingStandBlockEntity$1.class b/build/_compileJava_2/net/minecraft/world/level/block/entity/BrewingStandBlockEntity$1.class new file mode 100644 index 000000000..891ea7d89 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/block/entity/BrewingStandBlockEntity$1.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/block/entity/BrewingStandBlockEntity$2.class b/build/_compileJava_2/net/minecraft/world/level/block/entity/BrewingStandBlockEntity$2.class new file mode 100644 index 000000000..ed8883f47 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/block/entity/BrewingStandBlockEntity$2.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/block/entity/BrewingStandBlockEntity.class b/build/_compileJava_2/net/minecraft/world/level/block/entity/BrewingStandBlockEntity.class new file mode 100644 index 000000000..eafc37ddd Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/block/entity/BrewingStandBlockEntity.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/block/entity/BrushableBlockEntity.class b/build/_compileJava_2/net/minecraft/world/level/block/entity/BrushableBlockEntity.class new file mode 100644 index 000000000..523893cb2 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/block/entity/BrushableBlockEntity.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/block/entity/CalibratedSculkSensorBlockEntity$VibrationUser.class b/build/_compileJava_2/net/minecraft/world/level/block/entity/CalibratedSculkSensorBlockEntity$VibrationUser.class new file mode 100644 index 000000000..b6ddd372a Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/block/entity/CalibratedSculkSensorBlockEntity$VibrationUser.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/block/entity/CalibratedSculkSensorBlockEntity.class b/build/_compileJava_2/net/minecraft/world/level/block/entity/CalibratedSculkSensorBlockEntity.class new file mode 100644 index 000000000..5c9cc97b9 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/block/entity/CalibratedSculkSensorBlockEntity.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/block/entity/CampfireBlockEntity.class b/build/_compileJava_2/net/minecraft/world/level/block/entity/CampfireBlockEntity.class new file mode 100644 index 000000000..991605cde Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/block/entity/CampfireBlockEntity.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/block/entity/ChestBlockEntity$1.class b/build/_compileJava_2/net/minecraft/world/level/block/entity/ChestBlockEntity$1.class new file mode 100644 index 000000000..436e48d7c Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/block/entity/ChestBlockEntity$1.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/block/entity/ChestBlockEntity.class b/build/_compileJava_2/net/minecraft/world/level/block/entity/ChestBlockEntity.class new file mode 100644 index 000000000..c09106150 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/block/entity/ChestBlockEntity.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/block/entity/ChestLidController.class b/build/_compileJava_2/net/minecraft/world/level/block/entity/ChestLidController.class new file mode 100644 index 000000000..cc6a15df8 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/block/entity/ChestLidController.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/block/entity/ChiseledBookShelfBlockEntity.class b/build/_compileJava_2/net/minecraft/world/level/block/entity/ChiseledBookShelfBlockEntity.class new file mode 100644 index 000000000..a2ac7e7e3 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/block/entity/ChiseledBookShelfBlockEntity.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/block/entity/CommandBlockEntity$1.class b/build/_compileJava_2/net/minecraft/world/level/block/entity/CommandBlockEntity$1.class new file mode 100644 index 000000000..8cd0a945e Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/block/entity/CommandBlockEntity$1.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/block/entity/CommandBlockEntity$Mode.class b/build/_compileJava_2/net/minecraft/world/level/block/entity/CommandBlockEntity$Mode.class new file mode 100644 index 000000000..e84579d43 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/block/entity/CommandBlockEntity$Mode.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/block/entity/CommandBlockEntity.class b/build/_compileJava_2/net/minecraft/world/level/block/entity/CommandBlockEntity.class new file mode 100644 index 000000000..e15989d95 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/block/entity/CommandBlockEntity.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/block/entity/ComparatorBlockEntity.class b/build/_compileJava_2/net/minecraft/world/level/block/entity/ComparatorBlockEntity.class new file mode 100644 index 000000000..0646ad99a Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/block/entity/ComparatorBlockEntity.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/block/entity/ConduitBlockEntity.class b/build/_compileJava_2/net/minecraft/world/level/block/entity/ConduitBlockEntity.class new file mode 100644 index 000000000..db6647a80 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/block/entity/ConduitBlockEntity.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/block/entity/ContainerOpenersCounter.class b/build/_compileJava_2/net/minecraft/world/level/block/entity/ContainerOpenersCounter.class new file mode 100644 index 000000000..b64b45b40 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/block/entity/ContainerOpenersCounter.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/block/entity/DaylightDetectorBlockEntity.class b/build/_compileJava_2/net/minecraft/world/level/block/entity/DaylightDetectorBlockEntity.class new file mode 100644 index 000000000..33ede7430 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/block/entity/DaylightDetectorBlockEntity.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/block/entity/DecoratedPotBlockEntity$Decorations.class b/build/_compileJava_2/net/minecraft/world/level/block/entity/DecoratedPotBlockEntity$Decorations.class new file mode 100644 index 000000000..fe4268266 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/block/entity/DecoratedPotBlockEntity$Decorations.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/block/entity/DecoratedPotBlockEntity.class b/build/_compileJava_2/net/minecraft/world/level/block/entity/DecoratedPotBlockEntity.class new file mode 100644 index 000000000..8152d83f3 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/block/entity/DecoratedPotBlockEntity.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/block/entity/DecoratedPotPatterns.class b/build/_compileJava_2/net/minecraft/world/level/block/entity/DecoratedPotPatterns.class new file mode 100644 index 000000000..887cbba6b Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/block/entity/DecoratedPotPatterns.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/block/entity/DispenserBlockEntity.class b/build/_compileJava_2/net/minecraft/world/level/block/entity/DispenserBlockEntity.class new file mode 100644 index 000000000..9bc15a6cb Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/block/entity/DispenserBlockEntity.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/block/entity/DropperBlockEntity.class b/build/_compileJava_2/net/minecraft/world/level/block/entity/DropperBlockEntity.class new file mode 100644 index 000000000..f0cf87cb1 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/block/entity/DropperBlockEntity.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/block/entity/EnchantmentTableBlockEntity.class b/build/_compileJava_2/net/minecraft/world/level/block/entity/EnchantmentTableBlockEntity.class new file mode 100644 index 000000000..2986721ef Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/block/entity/EnchantmentTableBlockEntity.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/block/entity/EnderChestBlockEntity$1.class b/build/_compileJava_2/net/minecraft/world/level/block/entity/EnderChestBlockEntity$1.class new file mode 100644 index 000000000..38465b979 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/block/entity/EnderChestBlockEntity$1.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/block/entity/EnderChestBlockEntity.class b/build/_compileJava_2/net/minecraft/world/level/block/entity/EnderChestBlockEntity.class new file mode 100644 index 000000000..250d7ca37 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/block/entity/EnderChestBlockEntity.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/block/entity/FurnaceBlockEntity.class b/build/_compileJava_2/net/minecraft/world/level/block/entity/FurnaceBlockEntity.class new file mode 100644 index 000000000..929188f2e Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/block/entity/FurnaceBlockEntity.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/block/entity/HangingSignBlockEntity.class b/build/_compileJava_2/net/minecraft/world/level/block/entity/HangingSignBlockEntity.class new file mode 100644 index 000000000..6e7eb9195 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/block/entity/HangingSignBlockEntity.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/block/entity/Hopper.class b/build/_compileJava_2/net/minecraft/world/level/block/entity/Hopper.class new file mode 100644 index 000000000..45431cee6 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/block/entity/Hopper.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/block/entity/HopperBlockEntity.class b/build/_compileJava_2/net/minecraft/world/level/block/entity/HopperBlockEntity.class new file mode 100644 index 000000000..28e84a59c Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/block/entity/HopperBlockEntity.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/block/entity/JigsawBlockEntity$JointType.class b/build/_compileJava_2/net/minecraft/world/level/block/entity/JigsawBlockEntity$JointType.class new file mode 100644 index 000000000..ddf9999a2 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/block/entity/JigsawBlockEntity$JointType.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/block/entity/JigsawBlockEntity.class b/build/_compileJava_2/net/minecraft/world/level/block/entity/JigsawBlockEntity.class new file mode 100644 index 000000000..72c4c0c6f Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/block/entity/JigsawBlockEntity.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/block/entity/JukeboxBlockEntity.class b/build/_compileJava_2/net/minecraft/world/level/block/entity/JukeboxBlockEntity.class new file mode 100644 index 000000000..397a7712a Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/block/entity/JukeboxBlockEntity.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/block/entity/LecternBlockEntity$1.class b/build/_compileJava_2/net/minecraft/world/level/block/entity/LecternBlockEntity$1.class new file mode 100644 index 000000000..6313de46a Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/block/entity/LecternBlockEntity$1.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/block/entity/LecternBlockEntity$2.class b/build/_compileJava_2/net/minecraft/world/level/block/entity/LecternBlockEntity$2.class new file mode 100644 index 000000000..4683807fa Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/block/entity/LecternBlockEntity$2.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/block/entity/LecternBlockEntity.class b/build/_compileJava_2/net/minecraft/world/level/block/entity/LecternBlockEntity.class new file mode 100644 index 000000000..f1ee38b12 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/block/entity/LecternBlockEntity.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/block/entity/LidBlockEntity.class b/build/_compileJava_2/net/minecraft/world/level/block/entity/LidBlockEntity.class new file mode 100644 index 000000000..70d7b606b Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/block/entity/LidBlockEntity.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/block/entity/RandomizableContainerBlockEntity.class b/build/_compileJava_2/net/minecraft/world/level/block/entity/RandomizableContainerBlockEntity.class new file mode 100644 index 000000000..9c407cf81 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/block/entity/RandomizableContainerBlockEntity.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/block/entity/SculkCatalystBlockEntity$CatalystListener.class b/build/_compileJava_2/net/minecraft/world/level/block/entity/SculkCatalystBlockEntity$CatalystListener.class new file mode 100644 index 000000000..2e834fc7d Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/block/entity/SculkCatalystBlockEntity$CatalystListener.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/block/entity/SculkCatalystBlockEntity.class b/build/_compileJava_2/net/minecraft/world/level/block/entity/SculkCatalystBlockEntity.class new file mode 100644 index 000000000..a6aacccfc Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/block/entity/SculkCatalystBlockEntity.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/block/entity/SculkSensorBlockEntity$VibrationUser.class b/build/_compileJava_2/net/minecraft/world/level/block/entity/SculkSensorBlockEntity$VibrationUser.class new file mode 100644 index 000000000..fffcb9191 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/block/entity/SculkSensorBlockEntity$VibrationUser.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/block/entity/SculkSensorBlockEntity.class b/build/_compileJava_2/net/minecraft/world/level/block/entity/SculkSensorBlockEntity.class new file mode 100644 index 000000000..66c8de340 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/block/entity/SculkSensorBlockEntity.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/block/entity/SculkShriekerBlockEntity$VibrationUser.class b/build/_compileJava_2/net/minecraft/world/level/block/entity/SculkShriekerBlockEntity$VibrationUser.class new file mode 100644 index 000000000..1f9cdb7c3 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/block/entity/SculkShriekerBlockEntity$VibrationUser.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/block/entity/SculkShriekerBlockEntity.class b/build/_compileJava_2/net/minecraft/world/level/block/entity/SculkShriekerBlockEntity.class new file mode 100644 index 000000000..a1d5905ea Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/block/entity/SculkShriekerBlockEntity.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/block/entity/ShulkerBoxBlockEntity$1.class b/build/_compileJava_2/net/minecraft/world/level/block/entity/ShulkerBoxBlockEntity$1.class new file mode 100644 index 000000000..9c44b4463 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/block/entity/ShulkerBoxBlockEntity$1.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/block/entity/ShulkerBoxBlockEntity$AnimationStatus.class b/build/_compileJava_2/net/minecraft/world/level/block/entity/ShulkerBoxBlockEntity$AnimationStatus.class new file mode 100644 index 000000000..68c002a97 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/block/entity/ShulkerBoxBlockEntity$AnimationStatus.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/block/entity/ShulkerBoxBlockEntity.class b/build/_compileJava_2/net/minecraft/world/level/block/entity/ShulkerBoxBlockEntity.class new file mode 100644 index 000000000..79142536b Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/block/entity/ShulkerBoxBlockEntity.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/block/entity/SignBlockEntity.class b/build/_compileJava_2/net/minecraft/world/level/block/entity/SignBlockEntity.class new file mode 100644 index 000000000..992f9affe Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/block/entity/SignBlockEntity.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/block/entity/SignText.class b/build/_compileJava_2/net/minecraft/world/level/block/entity/SignText.class new file mode 100644 index 000000000..bce77ca55 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/block/entity/SignText.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/block/entity/SkullBlockEntity.class b/build/_compileJava_2/net/minecraft/world/level/block/entity/SkullBlockEntity.class new file mode 100644 index 000000000..1e187e84e Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/block/entity/SkullBlockEntity.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/block/entity/SmokerBlockEntity.class b/build/_compileJava_2/net/minecraft/world/level/block/entity/SmokerBlockEntity.class new file mode 100644 index 000000000..3e1ab6f94 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/block/entity/SmokerBlockEntity.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/block/entity/SpawnerBlockEntity$1.class b/build/_compileJava_2/net/minecraft/world/level/block/entity/SpawnerBlockEntity$1.class new file mode 100644 index 000000000..01329aaa0 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/block/entity/SpawnerBlockEntity$1.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/block/entity/SpawnerBlockEntity.class b/build/_compileJava_2/net/minecraft/world/level/block/entity/SpawnerBlockEntity.class new file mode 100644 index 000000000..11ae340f5 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/block/entity/SpawnerBlockEntity.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/block/entity/StructureBlockEntity$UpdateType.class b/build/_compileJava_2/net/minecraft/world/level/block/entity/StructureBlockEntity$UpdateType.class new file mode 100644 index 000000000..fcb68ca20 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/block/entity/StructureBlockEntity$UpdateType.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/block/entity/StructureBlockEntity.class b/build/_compileJava_2/net/minecraft/world/level/block/entity/StructureBlockEntity.class new file mode 100644 index 000000000..7e4be0fed Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/block/entity/StructureBlockEntity.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/block/entity/TheEndGatewayBlockEntity.class b/build/_compileJava_2/net/minecraft/world/level/block/entity/TheEndGatewayBlockEntity.class new file mode 100644 index 000000000..8928da2f0 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/block/entity/TheEndGatewayBlockEntity.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/block/entity/TheEndPortalBlockEntity.class b/build/_compileJava_2/net/minecraft/world/level/block/entity/TheEndPortalBlockEntity.class new file mode 100644 index 000000000..7d500bbe1 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/block/entity/TheEndPortalBlockEntity.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/block/entity/TickingBlockEntity.class b/build/_compileJava_2/net/minecraft/world/level/block/entity/TickingBlockEntity.class new file mode 100644 index 000000000..c2d9f4beb Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/block/entity/TickingBlockEntity.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/block/entity/TrappedChestBlockEntity.class b/build/_compileJava_2/net/minecraft/world/level/block/entity/TrappedChestBlockEntity.class new file mode 100644 index 000000000..069964503 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/block/entity/TrappedChestBlockEntity.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/block/entity/package-info.class b/build/_compileJava_2/net/minecraft/world/level/block/entity/package-info.class new file mode 100644 index 000000000..d7c7fe7f0 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/block/entity/package-info.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/block/grower/AbstractMegaTreeGrower.class b/build/_compileJava_2/net/minecraft/world/level/block/grower/AbstractMegaTreeGrower.class new file mode 100644 index 000000000..fa58e62ec Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/block/grower/AbstractMegaTreeGrower.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/block/grower/AbstractTreeGrower.class b/build/_compileJava_2/net/minecraft/world/level/block/grower/AbstractTreeGrower.class new file mode 100644 index 000000000..585708278 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/block/grower/AbstractTreeGrower.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/block/grower/AcaciaTreeGrower.class b/build/_compileJava_2/net/minecraft/world/level/block/grower/AcaciaTreeGrower.class new file mode 100644 index 000000000..07f00b526 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/block/grower/AcaciaTreeGrower.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/block/grower/AzaleaTreeGrower.class b/build/_compileJava_2/net/minecraft/world/level/block/grower/AzaleaTreeGrower.class new file mode 100644 index 000000000..5b6b7a8be Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/block/grower/AzaleaTreeGrower.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/block/grower/BirchTreeGrower.class b/build/_compileJava_2/net/minecraft/world/level/block/grower/BirchTreeGrower.class new file mode 100644 index 000000000..b2cc6ab11 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/block/grower/BirchTreeGrower.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/block/grower/CherryTreeGrower.class b/build/_compileJava_2/net/minecraft/world/level/block/grower/CherryTreeGrower.class new file mode 100644 index 000000000..f38496ee1 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/block/grower/CherryTreeGrower.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/block/grower/DarkOakTreeGrower.class b/build/_compileJava_2/net/minecraft/world/level/block/grower/DarkOakTreeGrower.class new file mode 100644 index 000000000..681c04eab Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/block/grower/DarkOakTreeGrower.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/block/grower/JungleTreeGrower.class b/build/_compileJava_2/net/minecraft/world/level/block/grower/JungleTreeGrower.class new file mode 100644 index 000000000..70b7dfa70 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/block/grower/JungleTreeGrower.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/block/grower/MangroveTreeGrower.class b/build/_compileJava_2/net/minecraft/world/level/block/grower/MangroveTreeGrower.class new file mode 100644 index 000000000..580ec8ec0 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/block/grower/MangroveTreeGrower.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/block/grower/OakTreeGrower.class b/build/_compileJava_2/net/minecraft/world/level/block/grower/OakTreeGrower.class new file mode 100644 index 000000000..b8f1f14a2 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/block/grower/OakTreeGrower.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/block/grower/SpruceTreeGrower.class b/build/_compileJava_2/net/minecraft/world/level/block/grower/SpruceTreeGrower.class new file mode 100644 index 000000000..0c524017f Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/block/grower/SpruceTreeGrower.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/block/grower/package-info.class b/build/_compileJava_2/net/minecraft/world/level/block/grower/package-info.class new file mode 100644 index 000000000..1bc067ab8 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/block/grower/package-info.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/block/package-info.class b/build/_compileJava_2/net/minecraft/world/level/block/package-info.class new file mode 100644 index 000000000..df50efa49 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/block/package-info.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/block/piston/MovingPistonBlock.class b/build/_compileJava_2/net/minecraft/world/level/block/piston/MovingPistonBlock.class new file mode 100644 index 000000000..6cac384cd Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/block/piston/MovingPistonBlock.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/block/piston/PistonBaseBlock$1.class b/build/_compileJava_2/net/minecraft/world/level/block/piston/PistonBaseBlock$1.class new file mode 100644 index 000000000..c7fa0bd58 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/block/piston/PistonBaseBlock$1.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/block/piston/PistonBaseBlock.class b/build/_compileJava_2/net/minecraft/world/level/block/piston/PistonBaseBlock.class new file mode 100644 index 000000000..238152d7c Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/block/piston/PistonBaseBlock.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/block/piston/PistonHeadBlock$1.class b/build/_compileJava_2/net/minecraft/world/level/block/piston/PistonHeadBlock$1.class new file mode 100644 index 000000000..e487ef8d7 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/block/piston/PistonHeadBlock$1.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/block/piston/PistonHeadBlock.class b/build/_compileJava_2/net/minecraft/world/level/block/piston/PistonHeadBlock.class new file mode 100644 index 000000000..27909ef5e Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/block/piston/PistonHeadBlock.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/block/piston/PistonMath$1.class b/build/_compileJava_2/net/minecraft/world/level/block/piston/PistonMath$1.class new file mode 100644 index 000000000..6f9c31002 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/block/piston/PistonMath$1.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/block/piston/PistonMath.class b/build/_compileJava_2/net/minecraft/world/level/block/piston/PistonMath.class new file mode 100644 index 000000000..aa006908b Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/block/piston/PistonMath.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/block/piston/PistonMovingBlockEntity$1.class b/build/_compileJava_2/net/minecraft/world/level/block/piston/PistonMovingBlockEntity$1.class new file mode 100644 index 000000000..3d68d6d94 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/block/piston/PistonMovingBlockEntity$1.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/block/piston/PistonMovingBlockEntity.class b/build/_compileJava_2/net/minecraft/world/level/block/piston/PistonMovingBlockEntity.class new file mode 100644 index 000000000..59403f0b7 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/block/piston/PistonMovingBlockEntity.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/block/piston/PistonStructureResolver.class b/build/_compileJava_2/net/minecraft/world/level/block/piston/PistonStructureResolver.class new file mode 100644 index 000000000..b3aa57fde Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/block/piston/PistonStructureResolver.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/block/piston/package-info.class b/build/_compileJava_2/net/minecraft/world/level/block/piston/package-info.class new file mode 100644 index 000000000..9ad97df92 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/block/piston/package-info.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/block/state/BlockBehaviour$1.class b/build/_compileJava_2/net/minecraft/world/level/block/state/BlockBehaviour$1.class new file mode 100644 index 000000000..fc53d8aa7 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/block/state/BlockBehaviour$1.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/block/state/BlockBehaviour$BlockStateBase$Cache.class b/build/_compileJava_2/net/minecraft/world/level/block/state/BlockBehaviour$BlockStateBase$Cache.class new file mode 100644 index 000000000..436077ffe Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/block/state/BlockBehaviour$BlockStateBase$Cache.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/block/state/BlockBehaviour$BlockStateBase.class b/build/_compileJava_2/net/minecraft/world/level/block/state/BlockBehaviour$BlockStateBase.class new file mode 100644 index 000000000..e02b5ec2a Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/block/state/BlockBehaviour$BlockStateBase.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/block/state/BlockBehaviour$OffsetFunction.class b/build/_compileJava_2/net/minecraft/world/level/block/state/BlockBehaviour$OffsetFunction.class new file mode 100644 index 000000000..633c552bb Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/block/state/BlockBehaviour$OffsetFunction.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/block/state/BlockBehaviour$OffsetType.class b/build/_compileJava_2/net/minecraft/world/level/block/state/BlockBehaviour$OffsetType.class new file mode 100644 index 000000000..301043ac3 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/block/state/BlockBehaviour$OffsetType.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/block/state/BlockBehaviour$Properties.class b/build/_compileJava_2/net/minecraft/world/level/block/state/BlockBehaviour$Properties.class new file mode 100644 index 000000000..2b826ba6e Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/block/state/BlockBehaviour$Properties.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/block/state/BlockBehaviour$StateArgumentPredicate.class b/build/_compileJava_2/net/minecraft/world/level/block/state/BlockBehaviour$StateArgumentPredicate.class new file mode 100644 index 000000000..2aab930b2 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/block/state/BlockBehaviour$StateArgumentPredicate.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/block/state/BlockBehaviour$StatePredicate.class b/build/_compileJava_2/net/minecraft/world/level/block/state/BlockBehaviour$StatePredicate.class new file mode 100644 index 000000000..bada45839 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/block/state/BlockBehaviour$StatePredicate.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/block/state/BlockBehaviour.class b/build/_compileJava_2/net/minecraft/world/level/block/state/BlockBehaviour.class new file mode 100644 index 000000000..09bfce045 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/block/state/BlockBehaviour.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/block/state/BlockState.class b/build/_compileJava_2/net/minecraft/world/level/block/state/BlockState.class new file mode 100644 index 000000000..0817bae8b Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/block/state/BlockState.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/block/state/StateDefinition$Builder.class b/build/_compileJava_2/net/minecraft/world/level/block/state/StateDefinition$Builder.class new file mode 100644 index 000000000..de475b11e Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/block/state/StateDefinition$Builder.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/block/state/StateDefinition$Factory.class b/build/_compileJava_2/net/minecraft/world/level/block/state/StateDefinition$Factory.class new file mode 100644 index 000000000..c946f3590 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/block/state/StateDefinition$Factory.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/block/state/StateDefinition.class b/build/_compileJava_2/net/minecraft/world/level/block/state/StateDefinition.class new file mode 100644 index 000000000..63329f9a5 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/block/state/StateDefinition.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/block/state/StateHolder$1.class b/build/_compileJava_2/net/minecraft/world/level/block/state/StateHolder$1.class new file mode 100644 index 000000000..0058c62f9 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/block/state/StateHolder$1.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/block/state/StateHolder.class b/build/_compileJava_2/net/minecraft/world/level/block/state/StateHolder.class new file mode 100644 index 000000000..1ab1f0145 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/block/state/StateHolder.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/block/state/package-info.class b/build/_compileJava_2/net/minecraft/world/level/block/state/package-info.class new file mode 100644 index 000000000..8561a25ef Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/block/state/package-info.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/block/state/pattern/BlockInWorld.class b/build/_compileJava_2/net/minecraft/world/level/block/state/pattern/BlockInWorld.class new file mode 100644 index 000000000..08ab663a3 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/block/state/pattern/BlockInWorld.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/block/state/pattern/BlockPattern$BlockCacheLoader.class b/build/_compileJava_2/net/minecraft/world/level/block/state/pattern/BlockPattern$BlockCacheLoader.class new file mode 100644 index 000000000..e26007fa2 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/block/state/pattern/BlockPattern$BlockCacheLoader.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/block/state/pattern/BlockPattern$BlockPatternMatch.class b/build/_compileJava_2/net/minecraft/world/level/block/state/pattern/BlockPattern$BlockPatternMatch.class new file mode 100644 index 000000000..826c3db12 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/block/state/pattern/BlockPattern$BlockPatternMatch.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/block/state/pattern/BlockPattern.class b/build/_compileJava_2/net/minecraft/world/level/block/state/pattern/BlockPattern.class new file mode 100644 index 000000000..85b06706a Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/block/state/pattern/BlockPattern.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/block/state/pattern/BlockPatternBuilder.class b/build/_compileJava_2/net/minecraft/world/level/block/state/pattern/BlockPatternBuilder.class new file mode 100644 index 000000000..b246d3226 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/block/state/pattern/BlockPatternBuilder.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/block/state/pattern/package-info.class b/build/_compileJava_2/net/minecraft/world/level/block/state/pattern/package-info.class new file mode 100644 index 000000000..63e56cd3c Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/block/state/pattern/package-info.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/block/state/predicate/BlockPredicate.class b/build/_compileJava_2/net/minecraft/world/level/block/state/predicate/BlockPredicate.class new file mode 100644 index 000000000..3f1e3667d Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/block/state/predicate/BlockPredicate.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/block/state/predicate/BlockStatePredicate.class b/build/_compileJava_2/net/minecraft/world/level/block/state/predicate/BlockStatePredicate.class new file mode 100644 index 000000000..3add05094 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/block/state/predicate/BlockStatePredicate.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/block/state/predicate/package-info.class b/build/_compileJava_2/net/minecraft/world/level/block/state/predicate/package-info.class new file mode 100644 index 000000000..c7e43dd5f Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/block/state/predicate/package-info.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/block/state/properties/AttachFace.class b/build/_compileJava_2/net/minecraft/world/level/block/state/properties/AttachFace.class new file mode 100644 index 000000000..66e63cd58 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/block/state/properties/AttachFace.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/block/state/properties/BambooLeaves.class b/build/_compileJava_2/net/minecraft/world/level/block/state/properties/BambooLeaves.class new file mode 100644 index 000000000..5624d9d7e Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/block/state/properties/BambooLeaves.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/block/state/properties/BedPart.class b/build/_compileJava_2/net/minecraft/world/level/block/state/properties/BedPart.class new file mode 100644 index 000000000..839cad961 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/block/state/properties/BedPart.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/block/state/properties/BellAttachType.class b/build/_compileJava_2/net/minecraft/world/level/block/state/properties/BellAttachType.class new file mode 100644 index 000000000..beb05a8f5 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/block/state/properties/BellAttachType.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/block/state/properties/BlockSetType.class b/build/_compileJava_2/net/minecraft/world/level/block/state/properties/BlockSetType.class new file mode 100644 index 000000000..8af5f808b Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/block/state/properties/BlockSetType.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/block/state/properties/BlockStateProperties.class b/build/_compileJava_2/net/minecraft/world/level/block/state/properties/BlockStateProperties.class new file mode 100644 index 000000000..81f95cc7f Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/block/state/properties/BlockStateProperties.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/block/state/properties/BooleanProperty.class b/build/_compileJava_2/net/minecraft/world/level/block/state/properties/BooleanProperty.class new file mode 100644 index 000000000..3d50a5b61 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/block/state/properties/BooleanProperty.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/block/state/properties/ChestType$1.class b/build/_compileJava_2/net/minecraft/world/level/block/state/properties/ChestType$1.class new file mode 100644 index 000000000..85c12d001 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/block/state/properties/ChestType$1.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/block/state/properties/ChestType.class b/build/_compileJava_2/net/minecraft/world/level/block/state/properties/ChestType.class new file mode 100644 index 000000000..6f1b284b1 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/block/state/properties/ChestType.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/block/state/properties/ComparatorMode.class b/build/_compileJava_2/net/minecraft/world/level/block/state/properties/ComparatorMode.class new file mode 100644 index 000000000..2517c44d5 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/block/state/properties/ComparatorMode.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/block/state/properties/DirectionProperty.class b/build/_compileJava_2/net/minecraft/world/level/block/state/properties/DirectionProperty.class new file mode 100644 index 000000000..12ff0c29f Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/block/state/properties/DirectionProperty.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/block/state/properties/DoorHingeSide.class b/build/_compileJava_2/net/minecraft/world/level/block/state/properties/DoorHingeSide.class new file mode 100644 index 000000000..08bbac03e Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/block/state/properties/DoorHingeSide.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/block/state/properties/DoubleBlockHalf.class b/build/_compileJava_2/net/minecraft/world/level/block/state/properties/DoubleBlockHalf.class new file mode 100644 index 000000000..2a0a7f49e Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/block/state/properties/DoubleBlockHalf.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/block/state/properties/DripstoneThickness.class b/build/_compileJava_2/net/minecraft/world/level/block/state/properties/DripstoneThickness.class new file mode 100644 index 000000000..8124639c0 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/block/state/properties/DripstoneThickness.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/block/state/properties/EnumProperty.class b/build/_compileJava_2/net/minecraft/world/level/block/state/properties/EnumProperty.class new file mode 100644 index 000000000..ccc13338a Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/block/state/properties/EnumProperty.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/block/state/properties/Half.class b/build/_compileJava_2/net/minecraft/world/level/block/state/properties/Half.class new file mode 100644 index 000000000..f9038f766 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/block/state/properties/Half.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/block/state/properties/IntegerProperty.class b/build/_compileJava_2/net/minecraft/world/level/block/state/properties/IntegerProperty.class new file mode 100644 index 000000000..28f5b5479 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/block/state/properties/IntegerProperty.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/block/state/properties/NoteBlockInstrument$Type.class b/build/_compileJava_2/net/minecraft/world/level/block/state/properties/NoteBlockInstrument$Type.class new file mode 100644 index 000000000..387584643 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/block/state/properties/NoteBlockInstrument$Type.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/block/state/properties/NoteBlockInstrument.class b/build/_compileJava_2/net/minecraft/world/level/block/state/properties/NoteBlockInstrument.class new file mode 100644 index 000000000..28c4ca697 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/block/state/properties/NoteBlockInstrument.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/block/state/properties/PistonType.class b/build/_compileJava_2/net/minecraft/world/level/block/state/properties/PistonType.class new file mode 100644 index 000000000..c8ef7c8a2 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/block/state/properties/PistonType.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/block/state/properties/Property$Value.class b/build/_compileJava_2/net/minecraft/world/level/block/state/properties/Property$Value.class new file mode 100644 index 000000000..0851d93f2 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/block/state/properties/Property$Value.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/block/state/properties/Property.class b/build/_compileJava_2/net/minecraft/world/level/block/state/properties/Property.class new file mode 100644 index 000000000..664271265 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/block/state/properties/Property.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/block/state/properties/RailShape.class b/build/_compileJava_2/net/minecraft/world/level/block/state/properties/RailShape.class new file mode 100644 index 000000000..c2972ef6d Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/block/state/properties/RailShape.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/block/state/properties/RedstoneSide.class b/build/_compileJava_2/net/minecraft/world/level/block/state/properties/RedstoneSide.class new file mode 100644 index 000000000..ade1bf9c7 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/block/state/properties/RedstoneSide.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/block/state/properties/RotationSegment.class b/build/_compileJava_2/net/minecraft/world/level/block/state/properties/RotationSegment.class new file mode 100644 index 000000000..fe3705292 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/block/state/properties/RotationSegment.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/block/state/properties/SculkSensorPhase.class b/build/_compileJava_2/net/minecraft/world/level/block/state/properties/SculkSensorPhase.class new file mode 100644 index 000000000..8c5117a3b Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/block/state/properties/SculkSensorPhase.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/block/state/properties/SlabType.class b/build/_compileJava_2/net/minecraft/world/level/block/state/properties/SlabType.class new file mode 100644 index 000000000..76a039956 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/block/state/properties/SlabType.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/block/state/properties/StairsShape.class b/build/_compileJava_2/net/minecraft/world/level/block/state/properties/StairsShape.class new file mode 100644 index 000000000..ae809a7ee Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/block/state/properties/StairsShape.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/block/state/properties/StructureMode.class b/build/_compileJava_2/net/minecraft/world/level/block/state/properties/StructureMode.class new file mode 100644 index 000000000..3daeb63b2 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/block/state/properties/StructureMode.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/block/state/properties/Tilt.class b/build/_compileJava_2/net/minecraft/world/level/block/state/properties/Tilt.class new file mode 100644 index 000000000..f0b61738b Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/block/state/properties/Tilt.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/block/state/properties/WallSide.class b/build/_compileJava_2/net/minecraft/world/level/block/state/properties/WallSide.class new file mode 100644 index 000000000..0474b78bc Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/block/state/properties/WallSide.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/block/state/properties/WoodType.class b/build/_compileJava_2/net/minecraft/world/level/block/state/properties/WoodType.class new file mode 100644 index 000000000..eacff0676 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/block/state/properties/WoodType.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/block/state/properties/package-info.class b/build/_compileJava_2/net/minecraft/world/level/block/state/properties/package-info.class new file mode 100644 index 000000000..d13f43bb4 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/block/state/properties/package-info.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/border/BorderChangeListener$DelegateBorderChangeListener.class b/build/_compileJava_2/net/minecraft/world/level/border/BorderChangeListener$DelegateBorderChangeListener.class new file mode 100644 index 000000000..468ddaa1d Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/border/BorderChangeListener$DelegateBorderChangeListener.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/border/BorderChangeListener.class b/build/_compileJava_2/net/minecraft/world/level/border/BorderChangeListener.class new file mode 100644 index 000000000..285196a6d Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/border/BorderChangeListener.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/border/BorderStatus.class b/build/_compileJava_2/net/minecraft/world/level/border/BorderStatus.class new file mode 100644 index 000000000..443cc736c Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/border/BorderStatus.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/border/WorldBorder$BorderExtent.class b/build/_compileJava_2/net/minecraft/world/level/border/WorldBorder$BorderExtent.class new file mode 100644 index 000000000..17b2fa216 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/border/WorldBorder$BorderExtent.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/border/WorldBorder$MovingBorderExtent.class b/build/_compileJava_2/net/minecraft/world/level/border/WorldBorder$MovingBorderExtent.class new file mode 100644 index 000000000..f724ce6e2 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/border/WorldBorder$MovingBorderExtent.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/border/WorldBorder$Settings.class b/build/_compileJava_2/net/minecraft/world/level/border/WorldBorder$Settings.class new file mode 100644 index 000000000..f913ed3b7 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/border/WorldBorder$Settings.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/border/WorldBorder$StaticBorderExtent.class b/build/_compileJava_2/net/minecraft/world/level/border/WorldBorder$StaticBorderExtent.class new file mode 100644 index 000000000..23b2239e0 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/border/WorldBorder$StaticBorderExtent.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/border/WorldBorder.class b/build/_compileJava_2/net/minecraft/world/level/border/WorldBorder.class new file mode 100644 index 000000000..141700964 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/border/WorldBorder.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/border/package-info.class b/build/_compileJava_2/net/minecraft/world/level/border/package-info.class new file mode 100644 index 000000000..a0114fd90 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/border/package-info.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/chunk/BlockColumn.class b/build/_compileJava_2/net/minecraft/world/level/chunk/BlockColumn.class new file mode 100644 index 000000000..295bc92b5 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/chunk/BlockColumn.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/chunk/BulkSectionAccess.class b/build/_compileJava_2/net/minecraft/world/level/chunk/BulkSectionAccess.class new file mode 100644 index 000000000..984932d47 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/chunk/BulkSectionAccess.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/chunk/CarvingMask$Mask.class b/build/_compileJava_2/net/minecraft/world/level/chunk/CarvingMask$Mask.class new file mode 100644 index 000000000..0a14b93c6 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/chunk/CarvingMask$Mask.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/chunk/CarvingMask.class b/build/_compileJava_2/net/minecraft/world/level/chunk/CarvingMask.class new file mode 100644 index 000000000..589e5ca00 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/chunk/CarvingMask.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/chunk/ChunkAccess$TicksToSave.class b/build/_compileJava_2/net/minecraft/world/level/chunk/ChunkAccess$TicksToSave.class new file mode 100644 index 000000000..82de7de97 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/chunk/ChunkAccess$TicksToSave.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/chunk/ChunkAccess.class b/build/_compileJava_2/net/minecraft/world/level/chunk/ChunkAccess.class new file mode 100644 index 000000000..ec81dd86a Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/chunk/ChunkAccess.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/chunk/ChunkGenerator.class b/build/_compileJava_2/net/minecraft/world/level/chunk/ChunkGenerator.class new file mode 100644 index 000000000..9b3ef85c2 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/chunk/ChunkGenerator.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/chunk/ChunkGeneratorStructureState.class b/build/_compileJava_2/net/minecraft/world/level/chunk/ChunkGeneratorStructureState.class new file mode 100644 index 000000000..3472b719e Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/chunk/ChunkGeneratorStructureState.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/chunk/ChunkGenerators.class b/build/_compileJava_2/net/minecraft/world/level/chunk/ChunkGenerators.class new file mode 100644 index 000000000..bf5e0f80e Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/chunk/ChunkGenerators.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/chunk/ChunkSource.class b/build/_compileJava_2/net/minecraft/world/level/chunk/ChunkSource.class new file mode 100644 index 000000000..5faeba48b Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/chunk/ChunkSource.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/chunk/ChunkStatus$ChunkType.class b/build/_compileJava_2/net/minecraft/world/level/chunk/ChunkStatus$ChunkType.class new file mode 100644 index 000000000..39cd54ab5 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/chunk/ChunkStatus$ChunkType.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/chunk/ChunkStatus$GenerationTask.class b/build/_compileJava_2/net/minecraft/world/level/chunk/ChunkStatus$GenerationTask.class new file mode 100644 index 000000000..9df8aedc3 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/chunk/ChunkStatus$GenerationTask.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/chunk/ChunkStatus$LoadingTask.class b/build/_compileJava_2/net/minecraft/world/level/chunk/ChunkStatus$LoadingTask.class new file mode 100644 index 000000000..ce70e79ec Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/chunk/ChunkStatus$LoadingTask.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/chunk/ChunkStatus$SimpleGenerationTask.class b/build/_compileJava_2/net/minecraft/world/level/chunk/ChunkStatus$SimpleGenerationTask.class new file mode 100644 index 000000000..90bc6b158 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/chunk/ChunkStatus$SimpleGenerationTask.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/chunk/ChunkStatus.class b/build/_compileJava_2/net/minecraft/world/level/chunk/ChunkStatus.class new file mode 100644 index 000000000..9c1f1a5a6 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/chunk/ChunkStatus.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/chunk/DataLayer.class b/build/_compileJava_2/net/minecraft/world/level/chunk/DataLayer.class new file mode 100644 index 000000000..519d65902 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/chunk/DataLayer.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/chunk/EmptyLevelChunk.class b/build/_compileJava_2/net/minecraft/world/level/chunk/EmptyLevelChunk.class new file mode 100644 index 000000000..db9d4bf3e Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/chunk/EmptyLevelChunk.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/chunk/GlobalPalette.class b/build/_compileJava_2/net/minecraft/world/level/chunk/GlobalPalette.class new file mode 100644 index 000000000..a4b9677d0 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/chunk/GlobalPalette.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/chunk/HashMapPalette.class b/build/_compileJava_2/net/minecraft/world/level/chunk/HashMapPalette.class new file mode 100644 index 000000000..5ec7ca53c Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/chunk/HashMapPalette.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/chunk/ImposterProtoChunk.class b/build/_compileJava_2/net/minecraft/world/level/chunk/ImposterProtoChunk.class new file mode 100644 index 000000000..75df62584 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/chunk/ImposterProtoChunk.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/chunk/LevelChunk$1.class b/build/_compileJava_2/net/minecraft/world/level/chunk/LevelChunk$1.class new file mode 100644 index 000000000..12916ad7d Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/chunk/LevelChunk$1.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/chunk/LevelChunk$BoundTickingBlockEntity.class b/build/_compileJava_2/net/minecraft/world/level/chunk/LevelChunk$BoundTickingBlockEntity.class new file mode 100644 index 000000000..5cea1bd78 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/chunk/LevelChunk$BoundTickingBlockEntity.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/chunk/LevelChunk$EntityCreationType.class b/build/_compileJava_2/net/minecraft/world/level/chunk/LevelChunk$EntityCreationType.class new file mode 100644 index 000000000..451414f4d Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/chunk/LevelChunk$EntityCreationType.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/chunk/LevelChunk$PostLoadProcessor.class b/build/_compileJava_2/net/minecraft/world/level/chunk/LevelChunk$PostLoadProcessor.class new file mode 100644 index 000000000..2fccc080f Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/chunk/LevelChunk$PostLoadProcessor.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/chunk/LevelChunk$RebindableTickingBlockEntityWrapper.class b/build/_compileJava_2/net/minecraft/world/level/chunk/LevelChunk$RebindableTickingBlockEntityWrapper.class new file mode 100644 index 000000000..3a9359094 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/chunk/LevelChunk$RebindableTickingBlockEntityWrapper.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/chunk/LevelChunk.class b/build/_compileJava_2/net/minecraft/world/level/chunk/LevelChunk.class new file mode 100644 index 000000000..f6af62328 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/chunk/LevelChunk.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/chunk/LevelChunkSection$1BlockCounter.class b/build/_compileJava_2/net/minecraft/world/level/chunk/LevelChunkSection$1BlockCounter.class new file mode 100644 index 000000000..0a5cd988d Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/chunk/LevelChunkSection$1BlockCounter.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/chunk/LevelChunkSection.class b/build/_compileJava_2/net/minecraft/world/level/chunk/LevelChunkSection.class new file mode 100644 index 000000000..1bc39c9b8 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/chunk/LevelChunkSection.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/chunk/LightChunk.class b/build/_compileJava_2/net/minecraft/world/level/chunk/LightChunk.class new file mode 100644 index 000000000..47f87de54 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/chunk/LightChunk.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/chunk/LightChunkGetter.class b/build/_compileJava_2/net/minecraft/world/level/chunk/LightChunkGetter.class new file mode 100644 index 000000000..c41a601a0 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/chunk/LightChunkGetter.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/chunk/LinearPalette.class b/build/_compileJava_2/net/minecraft/world/level/chunk/LinearPalette.class new file mode 100644 index 000000000..39c7084e6 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/chunk/LinearPalette.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/chunk/MissingPaletteEntryException.class b/build/_compileJava_2/net/minecraft/world/level/chunk/MissingPaletteEntryException.class new file mode 100644 index 000000000..1e4a92a86 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/chunk/MissingPaletteEntryException.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/chunk/Palette$Factory.class b/build/_compileJava_2/net/minecraft/world/level/chunk/Palette$Factory.class new file mode 100644 index 000000000..23393eca0 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/chunk/Palette$Factory.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/chunk/Palette.class b/build/_compileJava_2/net/minecraft/world/level/chunk/Palette.class new file mode 100644 index 000000000..a9c060090 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/chunk/Palette.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/chunk/PaletteResize.class b/build/_compileJava_2/net/minecraft/world/level/chunk/PaletteResize.class new file mode 100644 index 000000000..fffd64c34 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/chunk/PaletteResize.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/chunk/PalettedContainer$Configuration.class b/build/_compileJava_2/net/minecraft/world/level/chunk/PalettedContainer$Configuration.class new file mode 100644 index 000000000..9086d8630 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/chunk/PalettedContainer$Configuration.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/chunk/PalettedContainer$CountConsumer.class b/build/_compileJava_2/net/minecraft/world/level/chunk/PalettedContainer$CountConsumer.class new file mode 100644 index 000000000..662dfba67 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/chunk/PalettedContainer$CountConsumer.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/chunk/PalettedContainer$Data.class b/build/_compileJava_2/net/minecraft/world/level/chunk/PalettedContainer$Data.class new file mode 100644 index 000000000..630be32ab Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/chunk/PalettedContainer$Data.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/chunk/PalettedContainer$Strategy$1.class b/build/_compileJava_2/net/minecraft/world/level/chunk/PalettedContainer$Strategy$1.class new file mode 100644 index 000000000..5a51472cf Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/chunk/PalettedContainer$Strategy$1.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/chunk/PalettedContainer$Strategy$2.class b/build/_compileJava_2/net/minecraft/world/level/chunk/PalettedContainer$Strategy$2.class new file mode 100644 index 000000000..d9d3ff4ba Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/chunk/PalettedContainer$Strategy$2.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/chunk/PalettedContainer$Strategy.class b/build/_compileJava_2/net/minecraft/world/level/chunk/PalettedContainer$Strategy.class new file mode 100644 index 000000000..6a59ad12a Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/chunk/PalettedContainer$Strategy.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/chunk/PalettedContainer.class b/build/_compileJava_2/net/minecraft/world/level/chunk/PalettedContainer.class new file mode 100644 index 000000000..b9fe26581 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/chunk/PalettedContainer.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/chunk/PalettedContainerRO$PackedData.class b/build/_compileJava_2/net/minecraft/world/level/chunk/PalettedContainerRO$PackedData.class new file mode 100644 index 000000000..998a661b4 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/chunk/PalettedContainerRO$PackedData.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/chunk/PalettedContainerRO$Unpacker.class b/build/_compileJava_2/net/minecraft/world/level/chunk/PalettedContainerRO$Unpacker.class new file mode 100644 index 000000000..c86e28882 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/chunk/PalettedContainerRO$Unpacker.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/chunk/PalettedContainerRO.class b/build/_compileJava_2/net/minecraft/world/level/chunk/PalettedContainerRO.class new file mode 100644 index 000000000..5e1e47deb Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/chunk/PalettedContainerRO.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/chunk/ProtoChunk.class b/build/_compileJava_2/net/minecraft/world/level/chunk/ProtoChunk.class new file mode 100644 index 000000000..a299fe898 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/chunk/ProtoChunk.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/chunk/SingleValuePalette.class b/build/_compileJava_2/net/minecraft/world/level/chunk/SingleValuePalette.class new file mode 100644 index 000000000..b19d1901f Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/chunk/SingleValuePalette.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/chunk/StructureAccess.class b/build/_compileJava_2/net/minecraft/world/level/chunk/StructureAccess.class new file mode 100644 index 000000000..244f1e86a Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/chunk/StructureAccess.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/chunk/UpgradeData$BlockFixer.class b/build/_compileJava_2/net/minecraft/world/level/chunk/UpgradeData$BlockFixer.class new file mode 100644 index 000000000..f7871409c Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/chunk/UpgradeData$BlockFixer.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/chunk/UpgradeData$BlockFixers$1.class b/build/_compileJava_2/net/minecraft/world/level/chunk/UpgradeData$BlockFixers$1.class new file mode 100644 index 000000000..69bea97e8 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/chunk/UpgradeData$BlockFixers$1.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/chunk/UpgradeData$BlockFixers$2.class b/build/_compileJava_2/net/minecraft/world/level/chunk/UpgradeData$BlockFixers$2.class new file mode 100644 index 000000000..3df3e7ecb Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/chunk/UpgradeData$BlockFixers$2.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/chunk/UpgradeData$BlockFixers$3.class b/build/_compileJava_2/net/minecraft/world/level/chunk/UpgradeData$BlockFixers$3.class new file mode 100644 index 000000000..bf8cd97e9 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/chunk/UpgradeData$BlockFixers$3.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/chunk/UpgradeData$BlockFixers$4.class b/build/_compileJava_2/net/minecraft/world/level/chunk/UpgradeData$BlockFixers$4.class new file mode 100644 index 000000000..e8b7e1295 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/chunk/UpgradeData$BlockFixers$4.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/chunk/UpgradeData$BlockFixers$5.class b/build/_compileJava_2/net/minecraft/world/level/chunk/UpgradeData$BlockFixers$5.class new file mode 100644 index 000000000..069cae362 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/chunk/UpgradeData$BlockFixers$5.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/chunk/UpgradeData$BlockFixers.class b/build/_compileJava_2/net/minecraft/world/level/chunk/UpgradeData$BlockFixers.class new file mode 100644 index 000000000..9e687108d Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/chunk/UpgradeData$BlockFixers.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/chunk/UpgradeData.class b/build/_compileJava_2/net/minecraft/world/level/chunk/UpgradeData.class new file mode 100644 index 000000000..8b9bbb80d Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/chunk/UpgradeData.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/chunk/package-info.class b/build/_compileJava_2/net/minecraft/world/level/chunk/package-info.class new file mode 100644 index 000000000..de0cf999c Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/chunk/package-info.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/chunk/storage/ChunkScanAccess.class b/build/_compileJava_2/net/minecraft/world/level/chunk/storage/ChunkScanAccess.class new file mode 100644 index 000000000..d592b1b84 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/chunk/storage/ChunkScanAccess.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/chunk/storage/ChunkSerializer.class b/build/_compileJava_2/net/minecraft/world/level/chunk/storage/ChunkSerializer.class new file mode 100644 index 000000000..c7e9d24a8 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/chunk/storage/ChunkSerializer.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/chunk/storage/ChunkStorage.class b/build/_compileJava_2/net/minecraft/world/level/chunk/storage/ChunkStorage.class new file mode 100644 index 000000000..33354a1b3 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/chunk/storage/ChunkStorage.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/chunk/storage/EntityStorage.class b/build/_compileJava_2/net/minecraft/world/level/chunk/storage/EntityStorage.class new file mode 100644 index 000000000..40fe0c5a8 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/chunk/storage/EntityStorage.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/chunk/storage/IOWorker$PendingStore.class b/build/_compileJava_2/net/minecraft/world/level/chunk/storage/IOWorker$PendingStore.class new file mode 100644 index 000000000..1b4e14f1c Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/chunk/storage/IOWorker$PendingStore.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/chunk/storage/IOWorker$Priority.class b/build/_compileJava_2/net/minecraft/world/level/chunk/storage/IOWorker$Priority.class new file mode 100644 index 000000000..15bf111cb Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/chunk/storage/IOWorker$Priority.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/chunk/storage/IOWorker.class b/build/_compileJava_2/net/minecraft/world/level/chunk/storage/IOWorker.class new file mode 100644 index 000000000..f465e11b5 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/chunk/storage/IOWorker.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/chunk/storage/RegionBitmap.class b/build/_compileJava_2/net/minecraft/world/level/chunk/storage/RegionBitmap.class new file mode 100644 index 000000000..bdd05a849 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/chunk/storage/RegionBitmap.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/chunk/storage/RegionFile$ChunkBuffer.class b/build/_compileJava_2/net/minecraft/world/level/chunk/storage/RegionFile$ChunkBuffer.class new file mode 100644 index 000000000..49203d078 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/chunk/storage/RegionFile$ChunkBuffer.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/chunk/storage/RegionFile$CommitOp.class b/build/_compileJava_2/net/minecraft/world/level/chunk/storage/RegionFile$CommitOp.class new file mode 100644 index 000000000..19de9a091 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/chunk/storage/RegionFile$CommitOp.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/chunk/storage/RegionFile.class b/build/_compileJava_2/net/minecraft/world/level/chunk/storage/RegionFile.class new file mode 100644 index 000000000..a38c45e1e Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/chunk/storage/RegionFile.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/chunk/storage/RegionFileStorage.class b/build/_compileJava_2/net/minecraft/world/level/chunk/storage/RegionFileStorage.class new file mode 100644 index 000000000..537e37323 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/chunk/storage/RegionFileStorage.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/chunk/storage/RegionFileVersion$StreamWrapper.class b/build/_compileJava_2/net/minecraft/world/level/chunk/storage/RegionFileVersion$StreamWrapper.class new file mode 100644 index 000000000..d7450041e Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/chunk/storage/RegionFileVersion$StreamWrapper.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/chunk/storage/RegionFileVersion.class b/build/_compileJava_2/net/minecraft/world/level/chunk/storage/RegionFileVersion.class new file mode 100644 index 000000000..339e246c3 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/chunk/storage/RegionFileVersion.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/chunk/storage/SectionStorage.class b/build/_compileJava_2/net/minecraft/world/level/chunk/storage/SectionStorage.class new file mode 100644 index 000000000..4dde1668a Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/chunk/storage/SectionStorage.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/chunk/storage/package-info.class b/build/_compileJava_2/net/minecraft/world/level/chunk/storage/package-info.class new file mode 100644 index 000000000..ce1f55c3e Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/chunk/storage/package-info.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/dimension/BuiltinDimensionTypes.class b/build/_compileJava_2/net/minecraft/world/level/dimension/BuiltinDimensionTypes.class new file mode 100644 index 000000000..2b5bc8382 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/dimension/BuiltinDimensionTypes.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/dimension/DimensionDefaults.class b/build/_compileJava_2/net/minecraft/world/level/dimension/DimensionDefaults.class new file mode 100644 index 000000000..32af14661 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/dimension/DimensionDefaults.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/dimension/DimensionType$MonsterSettings.class b/build/_compileJava_2/net/minecraft/world/level/dimension/DimensionType$MonsterSettings.class new file mode 100644 index 000000000..e3cda0970 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/dimension/DimensionType$MonsterSettings.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/dimension/DimensionType.class b/build/_compileJava_2/net/minecraft/world/level/dimension/DimensionType.class new file mode 100644 index 000000000..1673c1b5c Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/dimension/DimensionType.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/dimension/LevelStem.class b/build/_compileJava_2/net/minecraft/world/level/dimension/LevelStem.class new file mode 100644 index 000000000..34dedeaa6 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/dimension/LevelStem.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/dimension/end/DragonRespawnAnimation$1.class b/build/_compileJava_2/net/minecraft/world/level/dimension/end/DragonRespawnAnimation$1.class new file mode 100644 index 000000000..b624e4900 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/dimension/end/DragonRespawnAnimation$1.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/dimension/end/DragonRespawnAnimation$2.class b/build/_compileJava_2/net/minecraft/world/level/dimension/end/DragonRespawnAnimation$2.class new file mode 100644 index 000000000..0c75ed2a4 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/dimension/end/DragonRespawnAnimation$2.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/dimension/end/DragonRespawnAnimation$3.class b/build/_compileJava_2/net/minecraft/world/level/dimension/end/DragonRespawnAnimation$3.class new file mode 100644 index 000000000..f06b8e194 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/dimension/end/DragonRespawnAnimation$3.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/dimension/end/DragonRespawnAnimation$4.class b/build/_compileJava_2/net/minecraft/world/level/dimension/end/DragonRespawnAnimation$4.class new file mode 100644 index 000000000..0f2e66f16 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/dimension/end/DragonRespawnAnimation$4.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/dimension/end/DragonRespawnAnimation$5.class b/build/_compileJava_2/net/minecraft/world/level/dimension/end/DragonRespawnAnimation$5.class new file mode 100644 index 000000000..6ca515888 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/dimension/end/DragonRespawnAnimation$5.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/dimension/end/DragonRespawnAnimation.class b/build/_compileJava_2/net/minecraft/world/level/dimension/end/DragonRespawnAnimation.class new file mode 100644 index 000000000..f00bc1d90 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/dimension/end/DragonRespawnAnimation.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/dimension/end/EndDragonFight$Data.class b/build/_compileJava_2/net/minecraft/world/level/dimension/end/EndDragonFight$Data.class new file mode 100644 index 000000000..ee793df63 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/dimension/end/EndDragonFight$Data.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/dimension/end/EndDragonFight.class b/build/_compileJava_2/net/minecraft/world/level/dimension/end/EndDragonFight.class new file mode 100644 index 000000000..bc0cd7fb9 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/dimension/end/EndDragonFight.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/dimension/end/package-info.class b/build/_compileJava_2/net/minecraft/world/level/dimension/end/package-info.class new file mode 100644 index 000000000..33c3d9782 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/dimension/end/package-info.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/dimension/package-info.class b/build/_compileJava_2/net/minecraft/world/level/dimension/package-info.class new file mode 100644 index 000000000..dda7dbec0 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/dimension/package-info.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/entity/ChunkEntities.class b/build/_compileJava_2/net/minecraft/world/level/entity/ChunkEntities.class new file mode 100644 index 000000000..0fab9c20d Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/entity/ChunkEntities.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/entity/ChunkStatusUpdateListener.class b/build/_compileJava_2/net/minecraft/world/level/entity/ChunkStatusUpdateListener.class new file mode 100644 index 000000000..cdb38669a Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/entity/ChunkStatusUpdateListener.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/entity/EntityAccess.class b/build/_compileJava_2/net/minecraft/world/level/entity/EntityAccess.class new file mode 100644 index 000000000..299e462e3 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/entity/EntityAccess.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/entity/EntityInLevelCallback$1.class b/build/_compileJava_2/net/minecraft/world/level/entity/EntityInLevelCallback$1.class new file mode 100644 index 000000000..9af3a5cbb Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/entity/EntityInLevelCallback$1.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/entity/EntityInLevelCallback.class b/build/_compileJava_2/net/minecraft/world/level/entity/EntityInLevelCallback.class new file mode 100644 index 000000000..f800baa63 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/entity/EntityInLevelCallback.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/entity/EntityLookup.class b/build/_compileJava_2/net/minecraft/world/level/entity/EntityLookup.class new file mode 100644 index 000000000..1fedbe55e Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/entity/EntityLookup.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/entity/EntityPersistentStorage.class b/build/_compileJava_2/net/minecraft/world/level/entity/EntityPersistentStorage.class new file mode 100644 index 000000000..9cc8507ea Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/entity/EntityPersistentStorage.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/entity/EntitySection.class b/build/_compileJava_2/net/minecraft/world/level/entity/EntitySection.class new file mode 100644 index 000000000..afdc5e498 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/entity/EntitySection.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/entity/EntitySectionStorage.class b/build/_compileJava_2/net/minecraft/world/level/entity/EntitySectionStorage.class new file mode 100644 index 000000000..b3f110d21 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/entity/EntitySectionStorage.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/entity/EntityTickList.class b/build/_compileJava_2/net/minecraft/world/level/entity/EntityTickList.class new file mode 100644 index 000000000..e9b61491b Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/entity/EntityTickList.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/entity/EntityTypeTest$1.class b/build/_compileJava_2/net/minecraft/world/level/entity/EntityTypeTest$1.class new file mode 100644 index 000000000..34ea29128 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/entity/EntityTypeTest$1.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/entity/EntityTypeTest.class b/build/_compileJava_2/net/minecraft/world/level/entity/EntityTypeTest.class new file mode 100644 index 000000000..c0f7fdc93 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/entity/EntityTypeTest.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/entity/LevelCallback.class b/build/_compileJava_2/net/minecraft/world/level/entity/LevelCallback.class new file mode 100644 index 000000000..9dd5c9c4f Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/entity/LevelCallback.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/entity/LevelEntityGetter.class b/build/_compileJava_2/net/minecraft/world/level/entity/LevelEntityGetter.class new file mode 100644 index 000000000..235bec1cd Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/entity/LevelEntityGetter.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/entity/LevelEntityGetterAdapter.class b/build/_compileJava_2/net/minecraft/world/level/entity/LevelEntityGetterAdapter.class new file mode 100644 index 000000000..1b6bff654 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/entity/LevelEntityGetterAdapter.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/entity/PersistentEntitySectionManager$Callback.class b/build/_compileJava_2/net/minecraft/world/level/entity/PersistentEntitySectionManager$Callback.class new file mode 100644 index 000000000..83bfe2ab3 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/entity/PersistentEntitySectionManager$Callback.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/entity/PersistentEntitySectionManager$ChunkLoadStatus.class b/build/_compileJava_2/net/minecraft/world/level/entity/PersistentEntitySectionManager$ChunkLoadStatus.class new file mode 100644 index 000000000..fe294a873 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/entity/PersistentEntitySectionManager$ChunkLoadStatus.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/entity/PersistentEntitySectionManager.class b/build/_compileJava_2/net/minecraft/world/level/entity/PersistentEntitySectionManager.class new file mode 100644 index 000000000..98716b231 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/entity/PersistentEntitySectionManager.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/entity/TransientEntitySectionManager$Callback.class b/build/_compileJava_2/net/minecraft/world/level/entity/TransientEntitySectionManager$Callback.class new file mode 100644 index 000000000..7fff42c91 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/entity/TransientEntitySectionManager$Callback.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/entity/TransientEntitySectionManager.class b/build/_compileJava_2/net/minecraft/world/level/entity/TransientEntitySectionManager.class new file mode 100644 index 000000000..e462cf183 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/entity/TransientEntitySectionManager.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/entity/Visibility.class b/build/_compileJava_2/net/minecraft/world/level/entity/Visibility.class new file mode 100644 index 000000000..6d69b96ea Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/entity/Visibility.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/entity/package-info.class b/build/_compileJava_2/net/minecraft/world/level/entity/package-info.class new file mode 100644 index 000000000..4c192ac6d Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/entity/package-info.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/gameevent/BlockPositionSource$Type.class b/build/_compileJava_2/net/minecraft/world/level/gameevent/BlockPositionSource$Type.class new file mode 100644 index 000000000..644b11164 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/gameevent/BlockPositionSource$Type.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/gameevent/BlockPositionSource.class b/build/_compileJava_2/net/minecraft/world/level/gameevent/BlockPositionSource.class new file mode 100644 index 000000000..4f50a0264 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/gameevent/BlockPositionSource.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/gameevent/DynamicGameEventListener.class b/build/_compileJava_2/net/minecraft/world/level/gameevent/DynamicGameEventListener.class new file mode 100644 index 000000000..14f6cf222 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/gameevent/DynamicGameEventListener.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/gameevent/EntityPositionSource$Type.class b/build/_compileJava_2/net/minecraft/world/level/gameevent/EntityPositionSource$Type.class new file mode 100644 index 000000000..49ae12739 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/gameevent/EntityPositionSource$Type.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/gameevent/EntityPositionSource.class b/build/_compileJava_2/net/minecraft/world/level/gameevent/EntityPositionSource.class new file mode 100644 index 000000000..dc46f4f15 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/gameevent/EntityPositionSource.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/gameevent/EuclideanGameEventListenerRegistry$OnEmptyAction.class b/build/_compileJava_2/net/minecraft/world/level/gameevent/EuclideanGameEventListenerRegistry$OnEmptyAction.class new file mode 100644 index 000000000..478b54031 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/gameevent/EuclideanGameEventListenerRegistry$OnEmptyAction.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/gameevent/EuclideanGameEventListenerRegistry.class b/build/_compileJava_2/net/minecraft/world/level/gameevent/EuclideanGameEventListenerRegistry.class new file mode 100644 index 000000000..0b0024d09 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/gameevent/EuclideanGameEventListenerRegistry.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/gameevent/GameEvent$Context.class b/build/_compileJava_2/net/minecraft/world/level/gameevent/GameEvent$Context.class new file mode 100644 index 000000000..347c7764f Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/gameevent/GameEvent$Context.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/gameevent/GameEvent$ListenerInfo.class b/build/_compileJava_2/net/minecraft/world/level/gameevent/GameEvent$ListenerInfo.class new file mode 100644 index 000000000..ab03ab18e Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/gameevent/GameEvent$ListenerInfo.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/gameevent/GameEvent.class b/build/_compileJava_2/net/minecraft/world/level/gameevent/GameEvent.class new file mode 100644 index 000000000..f2dcfc0f2 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/gameevent/GameEvent.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/gameevent/GameEventDispatcher.class b/build/_compileJava_2/net/minecraft/world/level/gameevent/GameEventDispatcher.class new file mode 100644 index 000000000..a7c46e321 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/gameevent/GameEventDispatcher.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/gameevent/GameEventListener$DeliveryMode.class b/build/_compileJava_2/net/minecraft/world/level/gameevent/GameEventListener$DeliveryMode.class new file mode 100644 index 000000000..325b47ac1 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/gameevent/GameEventListener$DeliveryMode.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/gameevent/GameEventListener$Holder.class b/build/_compileJava_2/net/minecraft/world/level/gameevent/GameEventListener$Holder.class new file mode 100644 index 000000000..38a171967 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/gameevent/GameEventListener$Holder.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/gameevent/GameEventListener.class b/build/_compileJava_2/net/minecraft/world/level/gameevent/GameEventListener.class new file mode 100644 index 000000000..568d57d6c Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/gameevent/GameEventListener.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/gameevent/GameEventListenerRegistry$1.class b/build/_compileJava_2/net/minecraft/world/level/gameevent/GameEventListenerRegistry$1.class new file mode 100644 index 000000000..7dc272874 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/gameevent/GameEventListenerRegistry$1.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/gameevent/GameEventListenerRegistry$ListenerVisitor.class b/build/_compileJava_2/net/minecraft/world/level/gameevent/GameEventListenerRegistry$ListenerVisitor.class new file mode 100644 index 000000000..246814b31 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/gameevent/GameEventListenerRegistry$ListenerVisitor.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/gameevent/GameEventListenerRegistry.class b/build/_compileJava_2/net/minecraft/world/level/gameevent/GameEventListenerRegistry.class new file mode 100644 index 000000000..73a74b634 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/gameevent/GameEventListenerRegistry.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/gameevent/PositionSource.class b/build/_compileJava_2/net/minecraft/world/level/gameevent/PositionSource.class new file mode 100644 index 000000000..8ef9dce64 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/gameevent/PositionSource.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/gameevent/PositionSourceType.class b/build/_compileJava_2/net/minecraft/world/level/gameevent/PositionSourceType.class new file mode 100644 index 000000000..c0679263f Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/gameevent/PositionSourceType.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/gameevent/package-info.class b/build/_compileJava_2/net/minecraft/world/level/gameevent/package-info.class new file mode 100644 index 000000000..0349b9306 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/gameevent/package-info.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/gameevent/vibrations/VibrationInfo.class b/build/_compileJava_2/net/minecraft/world/level/gameevent/vibrations/VibrationInfo.class new file mode 100644 index 000000000..26655e780 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/gameevent/vibrations/VibrationInfo.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/gameevent/vibrations/VibrationSelector.class b/build/_compileJava_2/net/minecraft/world/level/gameevent/vibrations/VibrationSelector.class new file mode 100644 index 000000000..0d37afc2e Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/gameevent/vibrations/VibrationSelector.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/gameevent/vibrations/VibrationSystem$Data.class b/build/_compileJava_2/net/minecraft/world/level/gameevent/vibrations/VibrationSystem$Data.class new file mode 100644 index 000000000..f96ff592f Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/gameevent/vibrations/VibrationSystem$Data.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/gameevent/vibrations/VibrationSystem$Listener.class b/build/_compileJava_2/net/minecraft/world/level/gameevent/vibrations/VibrationSystem$Listener.class new file mode 100644 index 000000000..39f33a360 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/gameevent/vibrations/VibrationSystem$Listener.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/gameevent/vibrations/VibrationSystem$Ticker.class b/build/_compileJava_2/net/minecraft/world/level/gameevent/vibrations/VibrationSystem$Ticker.class new file mode 100644 index 000000000..b6afc9130 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/gameevent/vibrations/VibrationSystem$Ticker.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/gameevent/vibrations/VibrationSystem$User.class b/build/_compileJava_2/net/minecraft/world/level/gameevent/vibrations/VibrationSystem$User.class new file mode 100644 index 000000000..09813183b Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/gameevent/vibrations/VibrationSystem$User.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/gameevent/vibrations/VibrationSystem.class b/build/_compileJava_2/net/minecraft/world/level/gameevent/vibrations/VibrationSystem.class new file mode 100644 index 000000000..7ec543156 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/gameevent/vibrations/VibrationSystem.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/gameevent/vibrations/package-info.class b/build/_compileJava_2/net/minecraft/world/level/gameevent/vibrations/package-info.class new file mode 100644 index 000000000..6cfc2d8db Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/gameevent/vibrations/package-info.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/Aquifer$1.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/Aquifer$1.class new file mode 100644 index 000000000..96ec55fcd Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/Aquifer$1.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/Aquifer$FluidPicker.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/Aquifer$FluidPicker.class new file mode 100644 index 000000000..d8fbecc6d Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/Aquifer$FluidPicker.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/Aquifer$FluidStatus.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/Aquifer$FluidStatus.class new file mode 100644 index 000000000..de2fc0dad Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/Aquifer$FluidStatus.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/Aquifer$NoiseBasedAquifer.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/Aquifer$NoiseBasedAquifer.class new file mode 100644 index 000000000..2956618f9 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/Aquifer$NoiseBasedAquifer.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/Aquifer.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/Aquifer.class new file mode 100644 index 000000000..d9486294d Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/Aquifer.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/Beardifier$1.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/Beardifier$1.class new file mode 100644 index 000000000..5bbad0520 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/Beardifier$1.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/Beardifier$Rigid.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/Beardifier$Rigid.class new file mode 100644 index 000000000..b6d65fcda Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/Beardifier$Rigid.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/Beardifier.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/Beardifier.class new file mode 100644 index 000000000..a38acd89a Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/Beardifier.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/BelowZeroRetrogen$1.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/BelowZeroRetrogen$1.class new file mode 100644 index 000000000..624c11493 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/BelowZeroRetrogen$1.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/BelowZeroRetrogen.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/BelowZeroRetrogen.class new file mode 100644 index 000000000..68cd318b7 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/BelowZeroRetrogen.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/BitRandomSource.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/BitRandomSource.class new file mode 100644 index 000000000..20549f718 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/BitRandomSource.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/Column$Line.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/Column$Line.class new file mode 100644 index 000000000..b5962b4ef Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/Column$Line.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/Column$Range.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/Column$Range.class new file mode 100644 index 000000000..f0c5d13f6 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/Column$Range.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/Column$Ray.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/Column$Ray.class new file mode 100644 index 000000000..4bdaa0e37 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/Column$Ray.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/Column.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/Column.class new file mode 100644 index 000000000..3f0650d02 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/Column.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/DebugLevelSource.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/DebugLevelSource.class new file mode 100644 index 000000000..459aab1e4 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/DebugLevelSource.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/Density.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/Density.class new file mode 100644 index 000000000..c45a314de Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/Density.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/DensityFunction$ContextProvider.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/DensityFunction$ContextProvider.class new file mode 100644 index 000000000..6781dd86b Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/DensityFunction$ContextProvider.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/DensityFunction$FunctionContext.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/DensityFunction$FunctionContext.class new file mode 100644 index 000000000..a220e1903 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/DensityFunction$FunctionContext.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/DensityFunction$NoiseHolder.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/DensityFunction$NoiseHolder.class new file mode 100644 index 000000000..2da976678 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/DensityFunction$NoiseHolder.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/DensityFunction$SimpleFunction.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/DensityFunction$SimpleFunction.class new file mode 100644 index 000000000..736d5946a Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/DensityFunction$SimpleFunction.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/DensityFunction$SinglePointContext.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/DensityFunction$SinglePointContext.class new file mode 100644 index 000000000..8530c589a Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/DensityFunction$SinglePointContext.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/DensityFunction$Visitor.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/DensityFunction$Visitor.class new file mode 100644 index 000000000..381379ef3 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/DensityFunction$Visitor.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/DensityFunction.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/DensityFunction.class new file mode 100644 index 000000000..a3451b2d6 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/DensityFunction.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/DensityFunctions$1.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/DensityFunctions$1.class new file mode 100644 index 000000000..5030bb5a4 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/DensityFunctions$1.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/DensityFunctions$Ap2.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/DensityFunctions$Ap2.class new file mode 100644 index 000000000..0f61546c9 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/DensityFunctions$Ap2.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/DensityFunctions$BeardifierMarker.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/DensityFunctions$BeardifierMarker.class new file mode 100644 index 000000000..a232a3741 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/DensityFunctions$BeardifierMarker.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/DensityFunctions$BeardifierOrMarker.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/DensityFunctions$BeardifierOrMarker.class new file mode 100644 index 000000000..6ae27f73c Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/DensityFunctions$BeardifierOrMarker.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/DensityFunctions$BlendAlpha.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/DensityFunctions$BlendAlpha.class new file mode 100644 index 000000000..ef7d0fc61 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/DensityFunctions$BlendAlpha.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/DensityFunctions$BlendDensity.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/DensityFunctions$BlendDensity.class new file mode 100644 index 000000000..87bbd1c7b Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/DensityFunctions$BlendDensity.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/DensityFunctions$BlendOffset.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/DensityFunctions$BlendOffset.class new file mode 100644 index 000000000..d271d0c09 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/DensityFunctions$BlendOffset.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/DensityFunctions$Clamp.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/DensityFunctions$Clamp.class new file mode 100644 index 000000000..59cfa2b84 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/DensityFunctions$Clamp.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/DensityFunctions$Constant.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/DensityFunctions$Constant.class new file mode 100644 index 000000000..cf6f6ba9f Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/DensityFunctions$Constant.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/DensityFunctions$EndIslandDensityFunction.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/DensityFunctions$EndIslandDensityFunction.class new file mode 100644 index 000000000..81774cdfe Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/DensityFunctions$EndIslandDensityFunction.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/DensityFunctions$HolderHolder.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/DensityFunctions$HolderHolder.class new file mode 100644 index 000000000..c869df5e8 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/DensityFunctions$HolderHolder.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/DensityFunctions$Mapped$Type.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/DensityFunctions$Mapped$Type.class new file mode 100644 index 000000000..5a9197d70 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/DensityFunctions$Mapped$Type.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/DensityFunctions$Mapped.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/DensityFunctions$Mapped.class new file mode 100644 index 000000000..fc1e495c5 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/DensityFunctions$Mapped.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/DensityFunctions$Marker$Type.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/DensityFunctions$Marker$Type.class new file mode 100644 index 000000000..7abc2ea32 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/DensityFunctions$Marker$Type.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/DensityFunctions$Marker.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/DensityFunctions$Marker.class new file mode 100644 index 000000000..cdf2fe50d Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/DensityFunctions$Marker.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/DensityFunctions$MarkerOrMarked.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/DensityFunctions$MarkerOrMarked.class new file mode 100644 index 000000000..41c924952 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/DensityFunctions$MarkerOrMarked.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/DensityFunctions$MulOrAdd$Type.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/DensityFunctions$MulOrAdd$Type.class new file mode 100644 index 000000000..19750f58f Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/DensityFunctions$MulOrAdd$Type.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/DensityFunctions$MulOrAdd.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/DensityFunctions$MulOrAdd.class new file mode 100644 index 000000000..f61932bd4 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/DensityFunctions$MulOrAdd.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/DensityFunctions$Noise.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/DensityFunctions$Noise.class new file mode 100644 index 000000000..2031d5496 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/DensityFunctions$Noise.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/DensityFunctions$PureTransformer.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/DensityFunctions$PureTransformer.class new file mode 100644 index 000000000..64936f0f3 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/DensityFunctions$PureTransformer.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/DensityFunctions$RangeChoice.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/DensityFunctions$RangeChoice.class new file mode 100644 index 000000000..3d1092216 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/DensityFunctions$RangeChoice.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/DensityFunctions$Shift.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/DensityFunctions$Shift.class new file mode 100644 index 000000000..5313b6892 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/DensityFunctions$Shift.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/DensityFunctions$ShiftA.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/DensityFunctions$ShiftA.class new file mode 100644 index 000000000..5c2cc28e1 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/DensityFunctions$ShiftA.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/DensityFunctions$ShiftB.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/DensityFunctions$ShiftB.class new file mode 100644 index 000000000..da136a401 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/DensityFunctions$ShiftB.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/DensityFunctions$ShiftNoise.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/DensityFunctions$ShiftNoise.class new file mode 100644 index 000000000..ba4fb6b8c Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/DensityFunctions$ShiftNoise.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/DensityFunctions$ShiftedNoise.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/DensityFunctions$ShiftedNoise.class new file mode 100644 index 000000000..bcd0da499 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/DensityFunctions$ShiftedNoise.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/DensityFunctions$Spline$Coordinate.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/DensityFunctions$Spline$Coordinate.class new file mode 100644 index 000000000..dbd787fd6 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/DensityFunctions$Spline$Coordinate.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/DensityFunctions$Spline$Point.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/DensityFunctions$Spline$Point.class new file mode 100644 index 000000000..33f31ef10 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/DensityFunctions$Spline$Point.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/DensityFunctions$Spline.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/DensityFunctions$Spline.class new file mode 100644 index 000000000..7316bf47e Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/DensityFunctions$Spline.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/DensityFunctions$TransformerWithContext.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/DensityFunctions$TransformerWithContext.class new file mode 100644 index 000000000..659dc4b0b Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/DensityFunctions$TransformerWithContext.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/DensityFunctions$TwoArgumentSimpleFunction$Type.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/DensityFunctions$TwoArgumentSimpleFunction$Type.class new file mode 100644 index 000000000..58f44e091 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/DensityFunctions$TwoArgumentSimpleFunction$Type.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/DensityFunctions$TwoArgumentSimpleFunction.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/DensityFunctions$TwoArgumentSimpleFunction.class new file mode 100644 index 000000000..7f1a5a4f2 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/DensityFunctions$TwoArgumentSimpleFunction.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/DensityFunctions$WeirdScaledSampler$RarityValueMapper.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/DensityFunctions$WeirdScaledSampler$RarityValueMapper.class new file mode 100644 index 000000000..eb1d43652 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/DensityFunctions$WeirdScaledSampler$RarityValueMapper.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/DensityFunctions$WeirdScaledSampler.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/DensityFunctions$WeirdScaledSampler.class new file mode 100644 index 000000000..0df19dc56 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/DensityFunctions$WeirdScaledSampler.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/DensityFunctions$YClampedGradient.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/DensityFunctions$YClampedGradient.class new file mode 100644 index 000000000..c85efd998 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/DensityFunctions$YClampedGradient.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/DensityFunctions.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/DensityFunctions.class new file mode 100644 index 000000000..d931a7eaf Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/DensityFunctions.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/FlatLevelSource.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/FlatLevelSource.class new file mode 100644 index 000000000..39d6ed117 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/FlatLevelSource.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/GenerationStep$Carving.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/GenerationStep$Carving.class new file mode 100644 index 000000000..feaec96b0 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/GenerationStep$Carving.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/GenerationStep$Decoration.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/GenerationStep$Decoration.class new file mode 100644 index 000000000..29a354edb Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/GenerationStep$Decoration.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/GenerationStep.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/GenerationStep.class new file mode 100644 index 000000000..693fd3a67 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/GenerationStep.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/GeodeBlockSettings.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/GeodeBlockSettings.class new file mode 100644 index 000000000..d96ee50da Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/GeodeBlockSettings.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/GeodeCrackSettings.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/GeodeCrackSettings.class new file mode 100644 index 000000000..e8ac02a36 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/GeodeCrackSettings.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/GeodeLayerSettings.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/GeodeLayerSettings.class new file mode 100644 index 000000000..57f245d98 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/GeodeLayerSettings.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/Heightmap$Types.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/Heightmap$Types.class new file mode 100644 index 000000000..7a2f7e189 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/Heightmap$Types.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/Heightmap$Usage.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/Heightmap$Usage.class new file mode 100644 index 000000000..fac4391b5 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/Heightmap$Usage.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/Heightmap.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/Heightmap.class new file mode 100644 index 000000000..2614b9c7d Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/Heightmap.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/LegacyRandomSource$LegacyPositionalRandomFactory.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/LegacyRandomSource$LegacyPositionalRandomFactory.class new file mode 100644 index 000000000..311eebda9 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/LegacyRandomSource$LegacyPositionalRandomFactory.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/LegacyRandomSource.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/LegacyRandomSource.class new file mode 100644 index 000000000..91c5a82e1 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/LegacyRandomSource.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/MarsagliaPolarGaussian.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/MarsagliaPolarGaussian.class new file mode 100644 index 000000000..2849e2ac5 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/MarsagliaPolarGaussian.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/NoiseBasedChunkGenerator.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/NoiseBasedChunkGenerator.class new file mode 100644 index 000000000..a3abd77f2 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/NoiseBasedChunkGenerator.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/NoiseChunk$1.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/NoiseChunk$1.class new file mode 100644 index 000000000..620f0865a Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/NoiseChunk$1.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/NoiseChunk$2.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/NoiseChunk$2.class new file mode 100644 index 000000000..68fd9bad7 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/NoiseChunk$2.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/NoiseChunk$BlendAlpha.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/NoiseChunk$BlendAlpha.class new file mode 100644 index 000000000..96bc807de Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/NoiseChunk$BlendAlpha.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/NoiseChunk$BlendOffset.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/NoiseChunk$BlendOffset.class new file mode 100644 index 000000000..7e8becfd8 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/NoiseChunk$BlendOffset.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/NoiseChunk$BlockStateFiller.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/NoiseChunk$BlockStateFiller.class new file mode 100644 index 000000000..89b10f422 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/NoiseChunk$BlockStateFiller.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/NoiseChunk$Cache2D.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/NoiseChunk$Cache2D.class new file mode 100644 index 000000000..ca64cf3de Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/NoiseChunk$Cache2D.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/NoiseChunk$CacheAllInCell.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/NoiseChunk$CacheAllInCell.class new file mode 100644 index 000000000..6c02f5769 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/NoiseChunk$CacheAllInCell.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/NoiseChunk$CacheOnce.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/NoiseChunk$CacheOnce.class new file mode 100644 index 000000000..522062636 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/NoiseChunk$CacheOnce.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/NoiseChunk$FlatCache.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/NoiseChunk$FlatCache.class new file mode 100644 index 000000000..75b0ea2f3 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/NoiseChunk$FlatCache.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/NoiseChunk$NoiseChunkDensityFunction.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/NoiseChunk$NoiseChunkDensityFunction.class new file mode 100644 index 000000000..fd1406137 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/NoiseChunk$NoiseChunkDensityFunction.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/NoiseChunk$NoiseInterpolator.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/NoiseChunk$NoiseInterpolator.class new file mode 100644 index 000000000..4b832577a Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/NoiseChunk$NoiseInterpolator.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/NoiseChunk.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/NoiseChunk.class new file mode 100644 index 000000000..98f8c583e Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/NoiseChunk.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/NoiseGeneratorSettings.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/NoiseGeneratorSettings.class new file mode 100644 index 000000000..4b036bbdb Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/NoiseGeneratorSettings.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/NoiseRouter.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/NoiseRouter.class new file mode 100644 index 000000000..114d7f4c7 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/NoiseRouter.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/NoiseRouterData$QuantizedSpaghettiRarity.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/NoiseRouterData$QuantizedSpaghettiRarity.class new file mode 100644 index 000000000..1c51d0b62 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/NoiseRouterData$QuantizedSpaghettiRarity.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/NoiseRouterData.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/NoiseRouterData.class new file mode 100644 index 000000000..577db3926 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/NoiseRouterData.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/NoiseSettings.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/NoiseSettings.class new file mode 100644 index 000000000..d3098a9e4 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/NoiseSettings.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/Noises.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/Noises.class new file mode 100644 index 000000000..dc6b6fe30 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/Noises.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/OreVeinifier$VeinType.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/OreVeinifier$VeinType.class new file mode 100644 index 000000000..b8b72a161 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/OreVeinifier$VeinType.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/OreVeinifier.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/OreVeinifier.class new file mode 100644 index 000000000..cdb6c0c5a Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/OreVeinifier.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/PatrolSpawner.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/PatrolSpawner.class new file mode 100644 index 000000000..7cf2fdac0 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/PatrolSpawner.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/PhantomSpawner.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/PhantomSpawner.class new file mode 100644 index 000000000..f79498928 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/PhantomSpawner.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/PositionalRandomFactory.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/PositionalRandomFactory.class new file mode 100644 index 000000000..872f2ad65 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/PositionalRandomFactory.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/RandomState$1.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/RandomState$1.class new file mode 100644 index 000000000..a9a3db7c3 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/RandomState$1.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/RandomState$1NoiseWiringHelper.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/RandomState$1NoiseWiringHelper.class new file mode 100644 index 000000000..fe6d40635 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/RandomState$1NoiseWiringHelper.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/RandomState.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/RandomState.class new file mode 100644 index 000000000..5d0607473 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/RandomState.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/RandomSupport$Seed128bit.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/RandomSupport$Seed128bit.class new file mode 100644 index 000000000..512f79400 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/RandomSupport$Seed128bit.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/RandomSupport.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/RandomSupport.class new file mode 100644 index 000000000..985b66e51 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/RandomSupport.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/SingleThreadedRandomSource.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/SingleThreadedRandomSource.class new file mode 100644 index 000000000..bd78b71d9 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/SingleThreadedRandomSource.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/SurfaceRules$AbovePreliminarySurface.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/SurfaceRules$AbovePreliminarySurface.class new file mode 100644 index 000000000..c52c71b71 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/SurfaceRules$AbovePreliminarySurface.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/SurfaceRules$Bandlands.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/SurfaceRules$Bandlands.class new file mode 100644 index 000000000..1eff4bf5d Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/SurfaceRules$Bandlands.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/SurfaceRules$BiomeConditionSource$1BiomeCondition.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/SurfaceRules$BiomeConditionSource$1BiomeCondition.class new file mode 100644 index 000000000..b089ede40 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/SurfaceRules$BiomeConditionSource$1BiomeCondition.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/SurfaceRules$BiomeConditionSource.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/SurfaceRules$BiomeConditionSource.class new file mode 100644 index 000000000..daaf1b596 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/SurfaceRules$BiomeConditionSource.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/SurfaceRules$BlockRuleSource.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/SurfaceRules$BlockRuleSource.class new file mode 100644 index 000000000..3659bc245 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/SurfaceRules$BlockRuleSource.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/SurfaceRules$Condition.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/SurfaceRules$Condition.class new file mode 100644 index 000000000..e87baa1ba Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/SurfaceRules$Condition.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/SurfaceRules$ConditionSource.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/SurfaceRules$ConditionSource.class new file mode 100644 index 000000000..310720c20 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/SurfaceRules$ConditionSource.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/SurfaceRules$Context$AbovePreliminarySurfaceCondition.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/SurfaceRules$Context$AbovePreliminarySurfaceCondition.class new file mode 100644 index 000000000..36fd5a977 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/SurfaceRules$Context$AbovePreliminarySurfaceCondition.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/SurfaceRules$Context$HoleCondition.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/SurfaceRules$Context$HoleCondition.class new file mode 100644 index 000000000..df4d405de Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/SurfaceRules$Context$HoleCondition.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/SurfaceRules$Context$SteepMaterialCondition.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/SurfaceRules$Context$SteepMaterialCondition.class new file mode 100644 index 000000000..7289a25b9 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/SurfaceRules$Context$SteepMaterialCondition.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/SurfaceRules$Context$TemperatureHelperCondition.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/SurfaceRules$Context$TemperatureHelperCondition.class new file mode 100644 index 000000000..b14b0eac5 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/SurfaceRules$Context$TemperatureHelperCondition.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/SurfaceRules$Context.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/SurfaceRules$Context.class new file mode 100644 index 000000000..1186be012 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/SurfaceRules$Context.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/SurfaceRules$Hole.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/SurfaceRules$Hole.class new file mode 100644 index 000000000..953d2f1e6 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/SurfaceRules$Hole.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/SurfaceRules$LazyCondition.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/SurfaceRules$LazyCondition.class new file mode 100644 index 000000000..6e3467794 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/SurfaceRules$LazyCondition.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/SurfaceRules$LazyXZCondition.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/SurfaceRules$LazyXZCondition.class new file mode 100644 index 000000000..d5f6653bc Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/SurfaceRules$LazyXZCondition.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/SurfaceRules$LazyYCondition.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/SurfaceRules$LazyYCondition.class new file mode 100644 index 000000000..60135707d Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/SurfaceRules$LazyYCondition.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/SurfaceRules$NoiseThresholdConditionSource$1NoiseThresholdCondition.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/SurfaceRules$NoiseThresholdConditionSource$1NoiseThresholdCondition.class new file mode 100644 index 000000000..26b2a53cc Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/SurfaceRules$NoiseThresholdConditionSource$1NoiseThresholdCondition.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/SurfaceRules$NoiseThresholdConditionSource.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/SurfaceRules$NoiseThresholdConditionSource.class new file mode 100644 index 000000000..2d20c1626 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/SurfaceRules$NoiseThresholdConditionSource.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/SurfaceRules$NotCondition.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/SurfaceRules$NotCondition.class new file mode 100644 index 000000000..bd5ece60c Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/SurfaceRules$NotCondition.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/SurfaceRules$NotConditionSource.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/SurfaceRules$NotConditionSource.class new file mode 100644 index 000000000..0a48df72c Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/SurfaceRules$NotConditionSource.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/SurfaceRules$RuleSource.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/SurfaceRules$RuleSource.class new file mode 100644 index 000000000..1f83799f4 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/SurfaceRules$RuleSource.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/SurfaceRules$SequenceRule.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/SurfaceRules$SequenceRule.class new file mode 100644 index 000000000..4d688cda6 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/SurfaceRules$SequenceRule.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/SurfaceRules$SequenceRuleSource.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/SurfaceRules$SequenceRuleSource.class new file mode 100644 index 000000000..95f9ae235 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/SurfaceRules$SequenceRuleSource.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/SurfaceRules$StateRule.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/SurfaceRules$StateRule.class new file mode 100644 index 000000000..92515fbb3 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/SurfaceRules$StateRule.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/SurfaceRules$Steep.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/SurfaceRules$Steep.class new file mode 100644 index 000000000..15345a3b4 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/SurfaceRules$Steep.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/SurfaceRules$StoneDepthCheck$1StoneDepthCondition.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/SurfaceRules$StoneDepthCheck$1StoneDepthCondition.class new file mode 100644 index 000000000..774cd8e54 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/SurfaceRules$StoneDepthCheck$1StoneDepthCondition.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/SurfaceRules$StoneDepthCheck.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/SurfaceRules$StoneDepthCheck.class new file mode 100644 index 000000000..5cbbe3ca0 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/SurfaceRules$StoneDepthCheck.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/SurfaceRules$SurfaceRule.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/SurfaceRules$SurfaceRule.class new file mode 100644 index 000000000..aa2e7fe81 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/SurfaceRules$SurfaceRule.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/SurfaceRules$Temperature.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/SurfaceRules$Temperature.class new file mode 100644 index 000000000..c7fe90bcc Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/SurfaceRules$Temperature.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/SurfaceRules$TestRule.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/SurfaceRules$TestRule.class new file mode 100644 index 000000000..61ff9c156 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/SurfaceRules$TestRule.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/SurfaceRules$TestRuleSource.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/SurfaceRules$TestRuleSource.class new file mode 100644 index 000000000..ec73ec1ee Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/SurfaceRules$TestRuleSource.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/SurfaceRules$VerticalGradientConditionSource$1VerticalGradientCondition.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/SurfaceRules$VerticalGradientConditionSource$1VerticalGradientCondition.class new file mode 100644 index 000000000..6c5226e32 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/SurfaceRules$VerticalGradientConditionSource$1VerticalGradientCondition.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/SurfaceRules$VerticalGradientConditionSource.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/SurfaceRules$VerticalGradientConditionSource.class new file mode 100644 index 000000000..3f71500fe Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/SurfaceRules$VerticalGradientConditionSource.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/SurfaceRules$WaterConditionSource$1WaterCondition.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/SurfaceRules$WaterConditionSource$1WaterCondition.class new file mode 100644 index 000000000..d99d5d502 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/SurfaceRules$WaterConditionSource$1WaterCondition.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/SurfaceRules$WaterConditionSource.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/SurfaceRules$WaterConditionSource.class new file mode 100644 index 000000000..73444f9f9 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/SurfaceRules$WaterConditionSource.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/SurfaceRules$YConditionSource$1YCondition.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/SurfaceRules$YConditionSource$1YCondition.class new file mode 100644 index 000000000..cdcc6db88 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/SurfaceRules$YConditionSource$1YCondition.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/SurfaceRules$YConditionSource.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/SurfaceRules$YConditionSource.class new file mode 100644 index 000000000..d4531544b Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/SurfaceRules$YConditionSource.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/SurfaceRules.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/SurfaceRules.class new file mode 100644 index 000000000..f096c46fb Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/SurfaceRules.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/SurfaceSystem$1.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/SurfaceSystem$1.class new file mode 100644 index 000000000..6814bd509 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/SurfaceSystem$1.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/SurfaceSystem.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/SurfaceSystem.class new file mode 100644 index 000000000..98acace35 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/SurfaceSystem.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/ThreadSafeLegacyRandomSource.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/ThreadSafeLegacyRandomSource.class new file mode 100644 index 000000000..7226dbd0a Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/ThreadSafeLegacyRandomSource.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/VerticalAnchor$AboveBottom.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/VerticalAnchor$AboveBottom.class new file mode 100644 index 000000000..a3dc16ad4 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/VerticalAnchor$AboveBottom.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/VerticalAnchor$Absolute.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/VerticalAnchor$Absolute.class new file mode 100644 index 000000000..0ac7490fd Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/VerticalAnchor$Absolute.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/VerticalAnchor$BelowTop.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/VerticalAnchor$BelowTop.class new file mode 100644 index 000000000..0d3028264 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/VerticalAnchor$BelowTop.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/VerticalAnchor.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/VerticalAnchor.class new file mode 100644 index 000000000..e4fc16676 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/VerticalAnchor.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/WorldDimensions$1Entry.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/WorldDimensions$1Entry.class new file mode 100644 index 000000000..90ef36be9 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/WorldDimensions$1Entry.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/WorldDimensions$Complete.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/WorldDimensions$Complete.class new file mode 100644 index 000000000..60c3dad8c Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/WorldDimensions$Complete.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/WorldDimensions.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/WorldDimensions.class new file mode 100644 index 000000000..b7780feaf Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/WorldDimensions.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/WorldGenSettings.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/WorldGenSettings.class new file mode 100644 index 000000000..8ef3411cc Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/WorldGenSettings.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/WorldGenerationContext.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/WorldGenerationContext.class new file mode 100644 index 000000000..db8a322ea Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/WorldGenerationContext.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/WorldOptions.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/WorldOptions.class new file mode 100644 index 000000000..10eaf9c14 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/WorldOptions.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/WorldgenRandom$Algorithm.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/WorldgenRandom$Algorithm.class new file mode 100644 index 000000000..1c1ec6002 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/WorldgenRandom$Algorithm.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/WorldgenRandom.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/WorldgenRandom.class new file mode 100644 index 000000000..2d40823fe Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/WorldgenRandom.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/Xoroshiro128PlusPlus.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/Xoroshiro128PlusPlus.class new file mode 100644 index 000000000..779637672 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/Xoroshiro128PlusPlus.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/XoroshiroRandomSource$XoroshiroPositionalRandomFactory.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/XoroshiroRandomSource$XoroshiroPositionalRandomFactory.class new file mode 100644 index 000000000..e03f6f6e5 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/XoroshiroRandomSource$XoroshiroPositionalRandomFactory.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/XoroshiroRandomSource.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/XoroshiroRandomSource.class new file mode 100644 index 000000000..e6c7efc25 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/XoroshiroRandomSource.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/blending/Blender$1.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/blending/Blender$1.class new file mode 100644 index 000000000..0dae7ea13 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/blending/Blender$1.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/blending/Blender$BlendingOutput.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/blending/Blender$BlendingOutput.class new file mode 100644 index 000000000..cb4992eeb Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/blending/Blender$BlendingOutput.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/blending/Blender$CellValueGetter.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/blending/Blender$CellValueGetter.class new file mode 100644 index 000000000..7a8534f44 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/blending/Blender$CellValueGetter.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/blending/Blender$DistanceGetter.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/blending/Blender$DistanceGetter.class new file mode 100644 index 000000000..455b62a74 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/blending/Blender$DistanceGetter.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/blending/Blender.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/blending/Blender.class new file mode 100644 index 000000000..f6b7372ab Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/blending/Blender.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/blending/BlendingData$BiomeConsumer.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/blending/BlendingData$BiomeConsumer.class new file mode 100644 index 000000000..d6af9e423 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/blending/BlendingData$BiomeConsumer.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/blending/BlendingData$DensityConsumer.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/blending/BlendingData$DensityConsumer.class new file mode 100644 index 000000000..e925ffe62 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/blending/BlendingData$DensityConsumer.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/blending/BlendingData$HeightConsumer.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/blending/BlendingData$HeightConsumer.class new file mode 100644 index 000000000..8daa98015 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/blending/BlendingData$HeightConsumer.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/blending/BlendingData.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/blending/BlendingData.class new file mode 100644 index 000000000..781c2af49 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/blending/BlendingData.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/blending/package-info.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/blending/package-info.class new file mode 100644 index 000000000..9fb4df33e Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/blending/package-info.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/blockpredicates/AllOfPredicate.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/blockpredicates/AllOfPredicate.class new file mode 100644 index 000000000..904202f3b Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/blockpredicates/AllOfPredicate.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/blockpredicates/AnyOfPredicate.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/blockpredicates/AnyOfPredicate.class new file mode 100644 index 000000000..fb798313a Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/blockpredicates/AnyOfPredicate.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/blockpredicates/BlockPredicate.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/blockpredicates/BlockPredicate.class new file mode 100644 index 000000000..6e65a8e1e Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/blockpredicates/BlockPredicate.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/blockpredicates/BlockPredicateType.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/blockpredicates/BlockPredicateType.class new file mode 100644 index 000000000..9b690848f Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/blockpredicates/BlockPredicateType.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/blockpredicates/CombiningPredicate.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/blockpredicates/CombiningPredicate.class new file mode 100644 index 000000000..f62f5087d Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/blockpredicates/CombiningPredicate.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/blockpredicates/HasSturdyFacePredicate.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/blockpredicates/HasSturdyFacePredicate.class new file mode 100644 index 000000000..db16493a6 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/blockpredicates/HasSturdyFacePredicate.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/blockpredicates/InsideWorldBoundsPredicate.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/blockpredicates/InsideWorldBoundsPredicate.class new file mode 100644 index 000000000..f090293ec Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/blockpredicates/InsideWorldBoundsPredicate.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/blockpredicates/MatchingBlockTagPredicate.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/blockpredicates/MatchingBlockTagPredicate.class new file mode 100644 index 000000000..534cdce3b Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/blockpredicates/MatchingBlockTagPredicate.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/blockpredicates/MatchingBlocksPredicate.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/blockpredicates/MatchingBlocksPredicate.class new file mode 100644 index 000000000..ced8f8cf3 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/blockpredicates/MatchingBlocksPredicate.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/blockpredicates/MatchingFluidsPredicate.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/blockpredicates/MatchingFluidsPredicate.class new file mode 100644 index 000000000..05b296250 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/blockpredicates/MatchingFluidsPredicate.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/blockpredicates/NotPredicate.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/blockpredicates/NotPredicate.class new file mode 100644 index 000000000..54e3f3300 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/blockpredicates/NotPredicate.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/blockpredicates/ReplaceablePredicate.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/blockpredicates/ReplaceablePredicate.class new file mode 100644 index 000000000..1de185db5 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/blockpredicates/ReplaceablePredicate.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/blockpredicates/SolidPredicate.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/blockpredicates/SolidPredicate.class new file mode 100644 index 000000000..31121b32a Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/blockpredicates/SolidPredicate.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/blockpredicates/StateTestingPredicate.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/blockpredicates/StateTestingPredicate.class new file mode 100644 index 000000000..56ade2341 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/blockpredicates/StateTestingPredicate.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/blockpredicates/TrueBlockPredicate.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/blockpredicates/TrueBlockPredicate.class new file mode 100644 index 000000000..d30c8af1e Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/blockpredicates/TrueBlockPredicate.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/blockpredicates/WouldSurvivePredicate.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/blockpredicates/WouldSurvivePredicate.class new file mode 100644 index 000000000..42542d0d0 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/blockpredicates/WouldSurvivePredicate.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/blockpredicates/package-info.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/blockpredicates/package-info.class new file mode 100644 index 000000000..2a454a510 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/blockpredicates/package-info.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/carver/CanyonCarverConfiguration$CanyonShapeConfiguration.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/carver/CanyonCarverConfiguration$CanyonShapeConfiguration.class new file mode 100644 index 000000000..885eeae9e Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/carver/CanyonCarverConfiguration$CanyonShapeConfiguration.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/carver/CanyonCarverConfiguration.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/carver/CanyonCarverConfiguration.class new file mode 100644 index 000000000..6a9752cfb Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/carver/CanyonCarverConfiguration.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/carver/CanyonWorldCarver.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/carver/CanyonWorldCarver.class new file mode 100644 index 000000000..289fc20a6 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/carver/CanyonWorldCarver.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/carver/CarverConfiguration.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/carver/CarverConfiguration.class new file mode 100644 index 000000000..d8ad1a343 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/carver/CarverConfiguration.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/carver/CarverDebugSettings.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/carver/CarverDebugSettings.class new file mode 100644 index 000000000..1d9149833 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/carver/CarverDebugSettings.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/carver/CarvingContext.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/carver/CarvingContext.class new file mode 100644 index 000000000..c9e7df7e1 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/carver/CarvingContext.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/carver/CaveCarverConfiguration.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/carver/CaveCarverConfiguration.class new file mode 100644 index 000000000..ec43e28af Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/carver/CaveCarverConfiguration.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/carver/CaveWorldCarver.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/carver/CaveWorldCarver.class new file mode 100644 index 000000000..4ac458361 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/carver/CaveWorldCarver.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/carver/ConfiguredWorldCarver.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/carver/ConfiguredWorldCarver.class new file mode 100644 index 000000000..ca9855cbc Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/carver/ConfiguredWorldCarver.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/carver/NetherWorldCarver.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/carver/NetherWorldCarver.class new file mode 100644 index 000000000..6b9903722 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/carver/NetherWorldCarver.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/carver/WorldCarver$CarveSkipChecker.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/carver/WorldCarver$CarveSkipChecker.class new file mode 100644 index 000000000..a0406442a Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/carver/WorldCarver$CarveSkipChecker.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/carver/WorldCarver.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/carver/WorldCarver.class new file mode 100644 index 000000000..ad19e73ed Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/carver/WorldCarver.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/carver/package-info.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/carver/package-info.class new file mode 100644 index 000000000..3e9ac80ea Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/carver/package-info.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/feature/AbstractHugeMushroomFeature.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/feature/AbstractHugeMushroomFeature.class new file mode 100644 index 000000000..56667cf98 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/feature/AbstractHugeMushroomFeature.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/feature/BambooFeature.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/feature/BambooFeature.class new file mode 100644 index 000000000..ef4c1562c Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/feature/BambooFeature.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/feature/BasaltColumnsFeature.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/feature/BasaltColumnsFeature.class new file mode 100644 index 000000000..652eb3455 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/feature/BasaltColumnsFeature.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/feature/BasaltPillarFeature.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/feature/BasaltPillarFeature.class new file mode 100644 index 000000000..7227c1f2f Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/feature/BasaltPillarFeature.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/feature/BlockBlobFeature.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/feature/BlockBlobFeature.class new file mode 100644 index 000000000..9dd9a2175 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/feature/BlockBlobFeature.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/feature/BlockColumnFeature.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/feature/BlockColumnFeature.class new file mode 100644 index 000000000..1f87df071 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/feature/BlockColumnFeature.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/feature/BlockPileFeature.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/feature/BlockPileFeature.class new file mode 100644 index 000000000..adcc61d06 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/feature/BlockPileFeature.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/feature/BlueIceFeature.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/feature/BlueIceFeature.class new file mode 100644 index 000000000..fff1c6be6 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/feature/BlueIceFeature.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/feature/BonusChestFeature.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/feature/BonusChestFeature.class new file mode 100644 index 000000000..4cd22e8da Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/feature/BonusChestFeature.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/feature/ChorusPlantFeature.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/feature/ChorusPlantFeature.class new file mode 100644 index 000000000..646e168d1 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/feature/ChorusPlantFeature.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/feature/ConfiguredFeature.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/feature/ConfiguredFeature.class new file mode 100644 index 000000000..35b0ecd43 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/feature/ConfiguredFeature.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/feature/CoralClawFeature.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/feature/CoralClawFeature.class new file mode 100644 index 000000000..f4c700a11 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/feature/CoralClawFeature.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/feature/CoralFeature.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/feature/CoralFeature.class new file mode 100644 index 000000000..8ff147cc6 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/feature/CoralFeature.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/feature/CoralMushroomFeature.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/feature/CoralMushroomFeature.class new file mode 100644 index 000000000..7ddbd15af Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/feature/CoralMushroomFeature.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/feature/CoralTreeFeature.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/feature/CoralTreeFeature.class new file mode 100644 index 000000000..9ff2987ab Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/feature/CoralTreeFeature.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/feature/DeltaFeature.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/feature/DeltaFeature.class new file mode 100644 index 000000000..793774d47 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/feature/DeltaFeature.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/feature/DesertWellFeature.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/feature/DesertWellFeature.class new file mode 100644 index 000000000..7f7ab4c84 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/feature/DesertWellFeature.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/feature/DiskFeature.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/feature/DiskFeature.class new file mode 100644 index 000000000..05dbcb3cf Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/feature/DiskFeature.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/feature/DripstoneClusterFeature.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/feature/DripstoneClusterFeature.class new file mode 100644 index 000000000..ebccf5d42 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/feature/DripstoneClusterFeature.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/feature/DripstoneUtils.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/feature/DripstoneUtils.class new file mode 100644 index 000000000..417820d7a Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/feature/DripstoneUtils.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/feature/EndGatewayFeature.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/feature/EndGatewayFeature.class new file mode 100644 index 000000000..d1c795077 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/feature/EndGatewayFeature.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/feature/EndIslandFeature.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/feature/EndIslandFeature.class new file mode 100644 index 000000000..df198e27f Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/feature/EndIslandFeature.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/feature/EndPodiumFeature.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/feature/EndPodiumFeature.class new file mode 100644 index 000000000..9c7da48a9 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/feature/EndPodiumFeature.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/feature/Feature.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/feature/Feature.class new file mode 100644 index 000000000..40bc24a2f Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/feature/Feature.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/feature/FeatureCountTracker$1.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/feature/FeatureCountTracker$1.class new file mode 100644 index 000000000..e5006dc35 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/feature/FeatureCountTracker$1.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/feature/FeatureCountTracker$FeatureData.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/feature/FeatureCountTracker$FeatureData.class new file mode 100644 index 000000000..aab900dc1 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/feature/FeatureCountTracker$FeatureData.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/feature/FeatureCountTracker$LevelData.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/feature/FeatureCountTracker$LevelData.class new file mode 100644 index 000000000..c3b3cfe86 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/feature/FeatureCountTracker$LevelData.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/feature/FeatureCountTracker.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/feature/FeatureCountTracker.class new file mode 100644 index 000000000..cb5d057b3 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/feature/FeatureCountTracker.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/feature/FeaturePlaceContext.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/feature/FeaturePlaceContext.class new file mode 100644 index 000000000..f57d822cb Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/feature/FeaturePlaceContext.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/feature/FillLayerFeature.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/feature/FillLayerFeature.class new file mode 100644 index 000000000..817f52836 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/feature/FillLayerFeature.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/feature/FossilFeature.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/feature/FossilFeature.class new file mode 100644 index 000000000..4783716d5 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/feature/FossilFeature.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/feature/FossilFeatureConfiguration.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/feature/FossilFeatureConfiguration.class new file mode 100644 index 000000000..cce4611f1 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/feature/FossilFeatureConfiguration.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/feature/GeodeFeature.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/feature/GeodeFeature.class new file mode 100644 index 000000000..f91dedf4b Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/feature/GeodeFeature.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/feature/GlowstoneFeature.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/feature/GlowstoneFeature.class new file mode 100644 index 000000000..9424dbfeb Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/feature/GlowstoneFeature.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/feature/HugeBrownMushroomFeature.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/feature/HugeBrownMushroomFeature.class new file mode 100644 index 000000000..b28525628 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/feature/HugeBrownMushroomFeature.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/feature/HugeFungusConfiguration.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/feature/HugeFungusConfiguration.class new file mode 100644 index 000000000..07b53125f Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/feature/HugeFungusConfiguration.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/feature/HugeFungusFeature.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/feature/HugeFungusFeature.class new file mode 100644 index 000000000..afbe79941 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/feature/HugeFungusFeature.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/feature/HugeRedMushroomFeature.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/feature/HugeRedMushroomFeature.class new file mode 100644 index 000000000..51a052c15 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/feature/HugeRedMushroomFeature.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/feature/IceSpikeFeature.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/feature/IceSpikeFeature.class new file mode 100644 index 000000000..ac99aa1a0 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/feature/IceSpikeFeature.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/feature/IcebergFeature.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/feature/IcebergFeature.class new file mode 100644 index 000000000..f24c989a7 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/feature/IcebergFeature.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/feature/KelpFeature.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/feature/KelpFeature.class new file mode 100644 index 000000000..401c0b0f8 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/feature/KelpFeature.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/feature/LakeFeature$Configuration.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/feature/LakeFeature$Configuration.class new file mode 100644 index 000000000..104845063 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/feature/LakeFeature$Configuration.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/feature/LakeFeature.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/feature/LakeFeature.class new file mode 100644 index 000000000..dd72dc4ee Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/feature/LakeFeature.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/feature/LargeDripstoneFeature$LargeDripstone.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/feature/LargeDripstoneFeature$LargeDripstone.class new file mode 100644 index 000000000..121073d63 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/feature/LargeDripstoneFeature$LargeDripstone.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/feature/LargeDripstoneFeature$WindOffsetter.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/feature/LargeDripstoneFeature$WindOffsetter.class new file mode 100644 index 000000000..211296023 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/feature/LargeDripstoneFeature$WindOffsetter.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/feature/LargeDripstoneFeature.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/feature/LargeDripstoneFeature.class new file mode 100644 index 000000000..b9efed8a7 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/feature/LargeDripstoneFeature.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/feature/MonsterRoomFeature.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/feature/MonsterRoomFeature.class new file mode 100644 index 000000000..e66bc5fd0 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/feature/MonsterRoomFeature.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/feature/MultifaceGrowthFeature.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/feature/MultifaceGrowthFeature.class new file mode 100644 index 000000000..82de7cb85 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/feature/MultifaceGrowthFeature.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/feature/NetherForestVegetationFeature.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/feature/NetherForestVegetationFeature.class new file mode 100644 index 000000000..a87b588b7 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/feature/NetherForestVegetationFeature.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/feature/NoOpFeature.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/feature/NoOpFeature.class new file mode 100644 index 000000000..1bdc3a224 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/feature/NoOpFeature.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/feature/OreFeature.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/feature/OreFeature.class new file mode 100644 index 000000000..3a3481a3b Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/feature/OreFeature.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/feature/PointedDripstoneFeature.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/feature/PointedDripstoneFeature.class new file mode 100644 index 000000000..d062c36c2 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/feature/PointedDripstoneFeature.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/feature/RandomBooleanSelectorFeature.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/feature/RandomBooleanSelectorFeature.class new file mode 100644 index 000000000..b4db3db95 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/feature/RandomBooleanSelectorFeature.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/feature/RandomPatchFeature.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/feature/RandomPatchFeature.class new file mode 100644 index 000000000..6b7de2d3c Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/feature/RandomPatchFeature.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/feature/RandomSelectorFeature.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/feature/RandomSelectorFeature.class new file mode 100644 index 000000000..0abdb536d Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/feature/RandomSelectorFeature.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/feature/ReplaceBlobsFeature.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/feature/ReplaceBlobsFeature.class new file mode 100644 index 000000000..14359caa0 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/feature/ReplaceBlobsFeature.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/feature/ReplaceBlockFeature.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/feature/ReplaceBlockFeature.class new file mode 100644 index 000000000..53e107b27 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/feature/ReplaceBlockFeature.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/feature/RootSystemFeature.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/feature/RootSystemFeature.class new file mode 100644 index 000000000..c8a740366 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/feature/RootSystemFeature.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/feature/ScatteredOreFeature.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/feature/ScatteredOreFeature.class new file mode 100644 index 000000000..f254b17bb Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/feature/ScatteredOreFeature.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/feature/SculkPatchFeature.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/feature/SculkPatchFeature.class new file mode 100644 index 000000000..4246496ea Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/feature/SculkPatchFeature.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/feature/SeaPickleFeature.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/feature/SeaPickleFeature.class new file mode 100644 index 000000000..3f8cb16d3 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/feature/SeaPickleFeature.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/feature/SeagrassFeature.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/feature/SeagrassFeature.class new file mode 100644 index 000000000..80aee8208 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/feature/SeagrassFeature.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/feature/SimpleBlockFeature.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/feature/SimpleBlockFeature.class new file mode 100644 index 000000000..b1464cb05 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/feature/SimpleBlockFeature.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/feature/SimpleRandomSelectorFeature.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/feature/SimpleRandomSelectorFeature.class new file mode 100644 index 000000000..7bfd8bfad Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/feature/SimpleRandomSelectorFeature.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/feature/SnowAndFreezeFeature.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/feature/SnowAndFreezeFeature.class new file mode 100644 index 000000000..62e2acb35 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/feature/SnowAndFreezeFeature.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/feature/SpikeFeature$EndSpike.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/feature/SpikeFeature$EndSpike.class new file mode 100644 index 000000000..b96e58700 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/feature/SpikeFeature$EndSpike.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/feature/SpikeFeature$SpikeCacheLoader.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/feature/SpikeFeature$SpikeCacheLoader.class new file mode 100644 index 000000000..4a7d48fb7 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/feature/SpikeFeature$SpikeCacheLoader.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/feature/SpikeFeature.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/feature/SpikeFeature.class new file mode 100644 index 000000000..de70c8819 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/feature/SpikeFeature.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/feature/SpringFeature.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/feature/SpringFeature.class new file mode 100644 index 000000000..a42216440 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/feature/SpringFeature.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/feature/TreeFeature$1.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/feature/TreeFeature$1.class new file mode 100644 index 000000000..16ae0b6b5 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/feature/TreeFeature$1.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/feature/TreeFeature.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/feature/TreeFeature.class new file mode 100644 index 000000000..b03baf6de Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/feature/TreeFeature.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/feature/TwistingVinesFeature.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/feature/TwistingVinesFeature.class new file mode 100644 index 000000000..0b2ca0fca Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/feature/TwistingVinesFeature.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/feature/UnderwaterMagmaFeature.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/feature/UnderwaterMagmaFeature.class new file mode 100644 index 000000000..53092f10c Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/feature/UnderwaterMagmaFeature.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/feature/VegetationPatchFeature.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/feature/VegetationPatchFeature.class new file mode 100644 index 000000000..0d4248dd8 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/feature/VegetationPatchFeature.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/feature/VinesFeature.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/feature/VinesFeature.class new file mode 100644 index 000000000..5cf8fbdb8 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/feature/VinesFeature.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/feature/VoidStartPlatformFeature.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/feature/VoidStartPlatformFeature.class new file mode 100644 index 000000000..ab18e21ba Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/feature/VoidStartPlatformFeature.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/feature/WaterloggedVegetationPatchFeature.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/feature/WaterloggedVegetationPatchFeature.class new file mode 100644 index 000000000..1fdb24f9d Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/feature/WaterloggedVegetationPatchFeature.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/feature/WeepingVinesFeature.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/feature/WeepingVinesFeature.class new file mode 100644 index 000000000..982546de6 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/feature/WeepingVinesFeature.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/feature/WeightedPlacedFeature.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/feature/WeightedPlacedFeature.class new file mode 100644 index 000000000..b1bef4376 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/feature/WeightedPlacedFeature.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/feature/configurations/BlockColumnConfiguration$Layer.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/feature/configurations/BlockColumnConfiguration$Layer.class new file mode 100644 index 000000000..740abb834 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/feature/configurations/BlockColumnConfiguration$Layer.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/feature/configurations/BlockColumnConfiguration.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/feature/configurations/BlockColumnConfiguration.class new file mode 100644 index 000000000..4d31bfdaa Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/feature/configurations/BlockColumnConfiguration.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/feature/configurations/BlockPileConfiguration.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/feature/configurations/BlockPileConfiguration.class new file mode 100644 index 000000000..e338679df Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/feature/configurations/BlockPileConfiguration.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/feature/configurations/BlockStateConfiguration.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/feature/configurations/BlockStateConfiguration.class new file mode 100644 index 000000000..fec3fe106 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/feature/configurations/BlockStateConfiguration.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/feature/configurations/ColumnFeatureConfiguration.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/feature/configurations/ColumnFeatureConfiguration.class new file mode 100644 index 000000000..5c61eaa71 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/feature/configurations/ColumnFeatureConfiguration.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/feature/configurations/CountConfiguration.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/feature/configurations/CountConfiguration.class new file mode 100644 index 000000000..a3f757320 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/feature/configurations/CountConfiguration.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/feature/configurations/DeltaFeatureConfiguration.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/feature/configurations/DeltaFeatureConfiguration.class new file mode 100644 index 000000000..5b46c5d1b Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/feature/configurations/DeltaFeatureConfiguration.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/feature/configurations/DiskConfiguration.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/feature/configurations/DiskConfiguration.class new file mode 100644 index 000000000..154f609b5 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/feature/configurations/DiskConfiguration.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/feature/configurations/DripstoneClusterConfiguration.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/feature/configurations/DripstoneClusterConfiguration.class new file mode 100644 index 000000000..6bbcc06fb Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/feature/configurations/DripstoneClusterConfiguration.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/feature/configurations/EndGatewayConfiguration.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/feature/configurations/EndGatewayConfiguration.class new file mode 100644 index 000000000..27dfae1e5 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/feature/configurations/EndGatewayConfiguration.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/feature/configurations/FeatureConfiguration.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/feature/configurations/FeatureConfiguration.class new file mode 100644 index 000000000..3063bee89 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/feature/configurations/FeatureConfiguration.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/feature/configurations/GeodeConfiguration.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/feature/configurations/GeodeConfiguration.class new file mode 100644 index 000000000..549812c79 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/feature/configurations/GeodeConfiguration.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/feature/configurations/HugeMushroomFeatureConfiguration.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/feature/configurations/HugeMushroomFeatureConfiguration.class new file mode 100644 index 000000000..782af1bee Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/feature/configurations/HugeMushroomFeatureConfiguration.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/feature/configurations/LargeDripstoneConfiguration.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/feature/configurations/LargeDripstoneConfiguration.class new file mode 100644 index 000000000..09160012a Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/feature/configurations/LargeDripstoneConfiguration.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/feature/configurations/LayerConfiguration.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/feature/configurations/LayerConfiguration.class new file mode 100644 index 000000000..4f8224383 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/feature/configurations/LayerConfiguration.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/feature/configurations/MultifaceGrowthConfiguration.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/feature/configurations/MultifaceGrowthConfiguration.class new file mode 100644 index 000000000..cef46cd8c Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/feature/configurations/MultifaceGrowthConfiguration.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/feature/configurations/NetherForestVegetationConfig.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/feature/configurations/NetherForestVegetationConfig.class new file mode 100644 index 000000000..30541ccbe Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/feature/configurations/NetherForestVegetationConfig.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/feature/configurations/NoneFeatureConfiguration.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/feature/configurations/NoneFeatureConfiguration.class new file mode 100644 index 000000000..ee4606e64 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/feature/configurations/NoneFeatureConfiguration.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/feature/configurations/OreConfiguration$TargetBlockState.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/feature/configurations/OreConfiguration$TargetBlockState.class new file mode 100644 index 000000000..f58612334 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/feature/configurations/OreConfiguration$TargetBlockState.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/feature/configurations/OreConfiguration.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/feature/configurations/OreConfiguration.class new file mode 100644 index 000000000..a312d5279 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/feature/configurations/OreConfiguration.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/feature/configurations/PointedDripstoneConfiguration.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/feature/configurations/PointedDripstoneConfiguration.class new file mode 100644 index 000000000..ca10839fe Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/feature/configurations/PointedDripstoneConfiguration.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/feature/configurations/ProbabilityFeatureConfiguration.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/feature/configurations/ProbabilityFeatureConfiguration.class new file mode 100644 index 000000000..d995fe566 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/feature/configurations/ProbabilityFeatureConfiguration.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/feature/configurations/RandomBooleanFeatureConfiguration.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/feature/configurations/RandomBooleanFeatureConfiguration.class new file mode 100644 index 000000000..2bf8e581e Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/feature/configurations/RandomBooleanFeatureConfiguration.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/feature/configurations/RandomFeatureConfiguration.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/feature/configurations/RandomFeatureConfiguration.class new file mode 100644 index 000000000..2b8d77da6 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/feature/configurations/RandomFeatureConfiguration.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/feature/configurations/RandomPatchConfiguration.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/feature/configurations/RandomPatchConfiguration.class new file mode 100644 index 000000000..4368ad791 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/feature/configurations/RandomPatchConfiguration.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/feature/configurations/ReplaceBlockConfiguration.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/feature/configurations/ReplaceBlockConfiguration.class new file mode 100644 index 000000000..e8aa3f48e Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/feature/configurations/ReplaceBlockConfiguration.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/feature/configurations/ReplaceSphereConfiguration.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/feature/configurations/ReplaceSphereConfiguration.class new file mode 100644 index 000000000..4555bc1e4 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/feature/configurations/ReplaceSphereConfiguration.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/feature/configurations/RootSystemConfiguration.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/feature/configurations/RootSystemConfiguration.class new file mode 100644 index 000000000..ed7ab710a Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/feature/configurations/RootSystemConfiguration.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/feature/configurations/SculkPatchConfiguration.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/feature/configurations/SculkPatchConfiguration.class new file mode 100644 index 000000000..a84ec6d61 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/feature/configurations/SculkPatchConfiguration.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/feature/configurations/SimpleBlockConfiguration.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/feature/configurations/SimpleBlockConfiguration.class new file mode 100644 index 000000000..5071463cb Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/feature/configurations/SimpleBlockConfiguration.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/feature/configurations/SimpleRandomFeatureConfiguration.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/feature/configurations/SimpleRandomFeatureConfiguration.class new file mode 100644 index 000000000..ce96c95ae Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/feature/configurations/SimpleRandomFeatureConfiguration.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/feature/configurations/SpikeConfiguration.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/feature/configurations/SpikeConfiguration.class new file mode 100644 index 000000000..eaa576364 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/feature/configurations/SpikeConfiguration.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/feature/configurations/SpringConfiguration.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/feature/configurations/SpringConfiguration.class new file mode 100644 index 000000000..7d2fc2a33 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/feature/configurations/SpringConfiguration.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/feature/configurations/TreeConfiguration$TreeConfigurationBuilder.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/feature/configurations/TreeConfiguration$TreeConfigurationBuilder.class new file mode 100644 index 000000000..f7c3389a7 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/feature/configurations/TreeConfiguration$TreeConfigurationBuilder.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/feature/configurations/TreeConfiguration.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/feature/configurations/TreeConfiguration.class new file mode 100644 index 000000000..8932176d2 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/feature/configurations/TreeConfiguration.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/feature/configurations/TwistingVinesConfig.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/feature/configurations/TwistingVinesConfig.class new file mode 100644 index 000000000..fb1a163ff Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/feature/configurations/TwistingVinesConfig.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/feature/configurations/UnderwaterMagmaConfiguration.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/feature/configurations/UnderwaterMagmaConfiguration.class new file mode 100644 index 000000000..928a34a34 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/feature/configurations/UnderwaterMagmaConfiguration.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/feature/configurations/VegetationPatchConfiguration.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/feature/configurations/VegetationPatchConfiguration.class new file mode 100644 index 000000000..25d392037 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/feature/configurations/VegetationPatchConfiguration.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/feature/configurations/package-info.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/feature/configurations/package-info.class new file mode 100644 index 000000000..846bc2dc2 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/feature/configurations/package-info.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/feature/featuresize/FeatureSize.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/feature/featuresize/FeatureSize.class new file mode 100644 index 000000000..f3ed8ba2d Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/feature/featuresize/FeatureSize.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/feature/featuresize/FeatureSizeType.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/feature/featuresize/FeatureSizeType.class new file mode 100644 index 000000000..088beef1c Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/feature/featuresize/FeatureSizeType.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/feature/featuresize/ThreeLayersFeatureSize.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/feature/featuresize/ThreeLayersFeatureSize.class new file mode 100644 index 000000000..82a0849e3 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/feature/featuresize/ThreeLayersFeatureSize.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/feature/featuresize/TwoLayersFeatureSize.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/feature/featuresize/TwoLayersFeatureSize.class new file mode 100644 index 000000000..737a9a595 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/feature/featuresize/TwoLayersFeatureSize.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/feature/featuresize/package-info.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/feature/featuresize/package-info.class new file mode 100644 index 000000000..b0c4ba725 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/feature/featuresize/package-info.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/feature/foliageplacers/AcaciaFoliagePlacer.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/feature/foliageplacers/AcaciaFoliagePlacer.class new file mode 100644 index 000000000..790a42da7 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/feature/foliageplacers/AcaciaFoliagePlacer.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/feature/foliageplacers/BlobFoliagePlacer.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/feature/foliageplacers/BlobFoliagePlacer.class new file mode 100644 index 000000000..cbf13dab1 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/feature/foliageplacers/BlobFoliagePlacer.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/feature/foliageplacers/BushFoliagePlacer.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/feature/foliageplacers/BushFoliagePlacer.class new file mode 100644 index 000000000..01d5742e0 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/feature/foliageplacers/BushFoliagePlacer.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/feature/foliageplacers/CherryFoliagePlacer.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/feature/foliageplacers/CherryFoliagePlacer.class new file mode 100644 index 000000000..5b2e1ca66 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/feature/foliageplacers/CherryFoliagePlacer.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/feature/foliageplacers/DarkOakFoliagePlacer.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/feature/foliageplacers/DarkOakFoliagePlacer.class new file mode 100644 index 000000000..5d4909687 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/feature/foliageplacers/DarkOakFoliagePlacer.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/feature/foliageplacers/FancyFoliagePlacer.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/feature/foliageplacers/FancyFoliagePlacer.class new file mode 100644 index 000000000..f387e2117 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/feature/foliageplacers/FancyFoliagePlacer.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/feature/foliageplacers/FoliagePlacer$FoliageAttachment.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/feature/foliageplacers/FoliagePlacer$FoliageAttachment.class new file mode 100644 index 000000000..4b95a5340 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/feature/foliageplacers/FoliagePlacer$FoliageAttachment.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/feature/foliageplacers/FoliagePlacer$FoliageSetter.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/feature/foliageplacers/FoliagePlacer$FoliageSetter.class new file mode 100644 index 000000000..c15444a98 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/feature/foliageplacers/FoliagePlacer$FoliageSetter.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/feature/foliageplacers/FoliagePlacer.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/feature/foliageplacers/FoliagePlacer.class new file mode 100644 index 000000000..20fc68520 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/feature/foliageplacers/FoliagePlacer.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/feature/foliageplacers/FoliagePlacerType.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/feature/foliageplacers/FoliagePlacerType.class new file mode 100644 index 000000000..8a4b19f94 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/feature/foliageplacers/FoliagePlacerType.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/feature/foliageplacers/MegaJungleFoliagePlacer.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/feature/foliageplacers/MegaJungleFoliagePlacer.class new file mode 100644 index 000000000..bdc33b961 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/feature/foliageplacers/MegaJungleFoliagePlacer.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/feature/foliageplacers/MegaPineFoliagePlacer.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/feature/foliageplacers/MegaPineFoliagePlacer.class new file mode 100644 index 000000000..70c99720f Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/feature/foliageplacers/MegaPineFoliagePlacer.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/feature/foliageplacers/PineFoliagePlacer.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/feature/foliageplacers/PineFoliagePlacer.class new file mode 100644 index 000000000..bf9d86bb4 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/feature/foliageplacers/PineFoliagePlacer.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/feature/foliageplacers/RandomSpreadFoliagePlacer.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/feature/foliageplacers/RandomSpreadFoliagePlacer.class new file mode 100644 index 000000000..222a95dea Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/feature/foliageplacers/RandomSpreadFoliagePlacer.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/feature/foliageplacers/SpruceFoliagePlacer.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/feature/foliageplacers/SpruceFoliagePlacer.class new file mode 100644 index 000000000..d81f904b5 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/feature/foliageplacers/SpruceFoliagePlacer.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/feature/foliageplacers/package-info.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/feature/foliageplacers/package-info.class new file mode 100644 index 000000000..c6ebfaaf5 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/feature/foliageplacers/package-info.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/feature/package-info.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/feature/package-info.class new file mode 100644 index 000000000..8a8750042 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/feature/package-info.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/feature/rootplacers/AboveRootPlacement.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/feature/rootplacers/AboveRootPlacement.class new file mode 100644 index 000000000..9145ef4b3 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/feature/rootplacers/AboveRootPlacement.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/feature/rootplacers/MangroveRootPlacement.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/feature/rootplacers/MangroveRootPlacement.class new file mode 100644 index 000000000..b123455a9 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/feature/rootplacers/MangroveRootPlacement.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/feature/rootplacers/MangroveRootPlacer.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/feature/rootplacers/MangroveRootPlacer.class new file mode 100644 index 000000000..5a54ee1b5 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/feature/rootplacers/MangroveRootPlacer.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/feature/rootplacers/RootPlacer.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/feature/rootplacers/RootPlacer.class new file mode 100644 index 000000000..a27b51d32 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/feature/rootplacers/RootPlacer.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/feature/rootplacers/RootPlacerType.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/feature/rootplacers/RootPlacerType.class new file mode 100644 index 000000000..822996a4a Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/feature/rootplacers/RootPlacerType.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/feature/rootplacers/package-info.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/feature/rootplacers/package-info.class new file mode 100644 index 000000000..7c9416dff Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/feature/rootplacers/package-info.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/feature/stateproviders/BlockStateProvider.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/feature/stateproviders/BlockStateProvider.class new file mode 100644 index 000000000..779e882a8 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/feature/stateproviders/BlockStateProvider.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/feature/stateproviders/BlockStateProviderType.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/feature/stateproviders/BlockStateProviderType.class new file mode 100644 index 000000000..02df26fb4 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/feature/stateproviders/BlockStateProviderType.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/feature/stateproviders/DualNoiseProvider.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/feature/stateproviders/DualNoiseProvider.class new file mode 100644 index 000000000..847bceb19 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/feature/stateproviders/DualNoiseProvider.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/feature/stateproviders/NoiseBasedStateProvider.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/feature/stateproviders/NoiseBasedStateProvider.class new file mode 100644 index 000000000..18b494224 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/feature/stateproviders/NoiseBasedStateProvider.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/feature/stateproviders/NoiseProvider.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/feature/stateproviders/NoiseProvider.class new file mode 100644 index 000000000..aa24a2174 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/feature/stateproviders/NoiseProvider.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/feature/stateproviders/NoiseThresholdProvider.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/feature/stateproviders/NoiseThresholdProvider.class new file mode 100644 index 000000000..6fdde6d95 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/feature/stateproviders/NoiseThresholdProvider.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/feature/stateproviders/RandomizedIntStateProvider.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/feature/stateproviders/RandomizedIntStateProvider.class new file mode 100644 index 000000000..a6635c27b Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/feature/stateproviders/RandomizedIntStateProvider.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/feature/stateproviders/RotatedBlockProvider.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/feature/stateproviders/RotatedBlockProvider.class new file mode 100644 index 000000000..f99466412 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/feature/stateproviders/RotatedBlockProvider.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/feature/stateproviders/RuleBasedBlockStateProvider$Rule.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/feature/stateproviders/RuleBasedBlockStateProvider$Rule.class new file mode 100644 index 000000000..e55224dae Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/feature/stateproviders/RuleBasedBlockStateProvider$Rule.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/feature/stateproviders/RuleBasedBlockStateProvider.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/feature/stateproviders/RuleBasedBlockStateProvider.class new file mode 100644 index 000000000..8599183dc Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/feature/stateproviders/RuleBasedBlockStateProvider.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/feature/stateproviders/SimpleStateProvider.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/feature/stateproviders/SimpleStateProvider.class new file mode 100644 index 000000000..eec65b09f Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/feature/stateproviders/SimpleStateProvider.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/feature/stateproviders/WeightedStateProvider.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/feature/stateproviders/WeightedStateProvider.class new file mode 100644 index 000000000..fddb0456d Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/feature/stateproviders/WeightedStateProvider.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/feature/stateproviders/package-info.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/feature/stateproviders/package-info.class new file mode 100644 index 000000000..31790e438 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/feature/stateproviders/package-info.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/feature/treedecorators/AlterGroundDecorator.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/feature/treedecorators/AlterGroundDecorator.class new file mode 100644 index 000000000..6b93c8944 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/feature/treedecorators/AlterGroundDecorator.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/feature/treedecorators/AttachedToLeavesDecorator.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/feature/treedecorators/AttachedToLeavesDecorator.class new file mode 100644 index 000000000..bfac48ec4 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/feature/treedecorators/AttachedToLeavesDecorator.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/feature/treedecorators/BeehiveDecorator.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/feature/treedecorators/BeehiveDecorator.class new file mode 100644 index 000000000..500a4a163 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/feature/treedecorators/BeehiveDecorator.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/feature/treedecorators/CocoaDecorator.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/feature/treedecorators/CocoaDecorator.class new file mode 100644 index 000000000..26ae29d83 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/feature/treedecorators/CocoaDecorator.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/feature/treedecorators/LeaveVineDecorator.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/feature/treedecorators/LeaveVineDecorator.class new file mode 100644 index 000000000..438993261 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/feature/treedecorators/LeaveVineDecorator.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/feature/treedecorators/TreeDecorator$Context.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/feature/treedecorators/TreeDecorator$Context.class new file mode 100644 index 000000000..569ffa5f7 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/feature/treedecorators/TreeDecorator$Context.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/feature/treedecorators/TreeDecorator.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/feature/treedecorators/TreeDecorator.class new file mode 100644 index 000000000..445abce59 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/feature/treedecorators/TreeDecorator.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/feature/treedecorators/TreeDecoratorType.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/feature/treedecorators/TreeDecoratorType.class new file mode 100644 index 000000000..a32d5dd19 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/feature/treedecorators/TreeDecoratorType.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/feature/treedecorators/TrunkVineDecorator.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/feature/treedecorators/TrunkVineDecorator.class new file mode 100644 index 000000000..73f70b543 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/feature/treedecorators/TrunkVineDecorator.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/feature/treedecorators/package-info.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/feature/treedecorators/package-info.class new file mode 100644 index 000000000..73fdd00c3 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/feature/treedecorators/package-info.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/feature/trunkplacers/BendingTrunkPlacer.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/feature/trunkplacers/BendingTrunkPlacer.class new file mode 100644 index 000000000..c04c4d028 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/feature/trunkplacers/BendingTrunkPlacer.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/feature/trunkplacers/CherryTrunkPlacer.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/feature/trunkplacers/CherryTrunkPlacer.class new file mode 100644 index 000000000..0f6720a2f Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/feature/trunkplacers/CherryTrunkPlacer.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/feature/trunkplacers/DarkOakTrunkPlacer.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/feature/trunkplacers/DarkOakTrunkPlacer.class new file mode 100644 index 000000000..7abc2fc6d Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/feature/trunkplacers/DarkOakTrunkPlacer.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/feature/trunkplacers/FancyTrunkPlacer$FoliageCoords.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/feature/trunkplacers/FancyTrunkPlacer$FoliageCoords.class new file mode 100644 index 000000000..b13460313 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/feature/trunkplacers/FancyTrunkPlacer$FoliageCoords.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/feature/trunkplacers/FancyTrunkPlacer.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/feature/trunkplacers/FancyTrunkPlacer.class new file mode 100644 index 000000000..3eccd39fb Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/feature/trunkplacers/FancyTrunkPlacer.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/feature/trunkplacers/ForkingTrunkPlacer.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/feature/trunkplacers/ForkingTrunkPlacer.class new file mode 100644 index 000000000..a4a27be6f Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/feature/trunkplacers/ForkingTrunkPlacer.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/feature/trunkplacers/GiantTrunkPlacer.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/feature/trunkplacers/GiantTrunkPlacer.class new file mode 100644 index 000000000..480fd4594 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/feature/trunkplacers/GiantTrunkPlacer.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/feature/trunkplacers/MegaJungleTrunkPlacer.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/feature/trunkplacers/MegaJungleTrunkPlacer.class new file mode 100644 index 000000000..d2235a66b Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/feature/trunkplacers/MegaJungleTrunkPlacer.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/feature/trunkplacers/StraightTrunkPlacer.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/feature/trunkplacers/StraightTrunkPlacer.class new file mode 100644 index 000000000..e504cb223 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/feature/trunkplacers/StraightTrunkPlacer.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/feature/trunkplacers/TrunkPlacer.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/feature/trunkplacers/TrunkPlacer.class new file mode 100644 index 000000000..d6bb02d69 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/feature/trunkplacers/TrunkPlacer.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/feature/trunkplacers/TrunkPlacerType.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/feature/trunkplacers/TrunkPlacerType.class new file mode 100644 index 000000000..3ac5eaa1d Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/feature/trunkplacers/TrunkPlacerType.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/feature/trunkplacers/UpwardsBranchingTrunkPlacer.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/feature/trunkplacers/UpwardsBranchingTrunkPlacer.class new file mode 100644 index 000000000..1bb9e4baf Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/feature/trunkplacers/UpwardsBranchingTrunkPlacer.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/feature/trunkplacers/package-info.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/feature/trunkplacers/package-info.class new file mode 100644 index 000000000..c7d12b147 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/feature/trunkplacers/package-info.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/flat/FlatLayerInfo.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/flat/FlatLayerInfo.class new file mode 100644 index 000000000..8fc71253b Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/flat/FlatLayerInfo.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/flat/FlatLevelGeneratorPreset.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/flat/FlatLevelGeneratorPreset.class new file mode 100644 index 000000000..bed205274 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/flat/FlatLevelGeneratorPreset.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/flat/FlatLevelGeneratorPresets$Bootstrap.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/flat/FlatLevelGeneratorPresets$Bootstrap.class new file mode 100644 index 000000000..98ab1d2b0 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/flat/FlatLevelGeneratorPresets$Bootstrap.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/flat/FlatLevelGeneratorPresets.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/flat/FlatLevelGeneratorPresets.class new file mode 100644 index 000000000..ec62918dd Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/flat/FlatLevelGeneratorPresets.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/flat/FlatLevelGeneratorSettings.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/flat/FlatLevelGeneratorSettings.class new file mode 100644 index 000000000..73569a2dd Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/flat/FlatLevelGeneratorSettings.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/flat/package-info.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/flat/package-info.class new file mode 100644 index 000000000..72578b7ad Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/flat/package-info.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/heightproviders/BiasedToBottomHeight.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/heightproviders/BiasedToBottomHeight.class new file mode 100644 index 000000000..1cb1c5cec Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/heightproviders/BiasedToBottomHeight.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/heightproviders/ConstantHeight.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/heightproviders/ConstantHeight.class new file mode 100644 index 000000000..71cf819c6 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/heightproviders/ConstantHeight.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/heightproviders/HeightProvider.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/heightproviders/HeightProvider.class new file mode 100644 index 000000000..0c6289234 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/heightproviders/HeightProvider.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/heightproviders/HeightProviderType.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/heightproviders/HeightProviderType.class new file mode 100644 index 000000000..35065812d Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/heightproviders/HeightProviderType.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/heightproviders/TrapezoidHeight.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/heightproviders/TrapezoidHeight.class new file mode 100644 index 000000000..ec5bf5c97 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/heightproviders/TrapezoidHeight.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/heightproviders/UniformHeight.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/heightproviders/UniformHeight.class new file mode 100644 index 000000000..27645dfdc Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/heightproviders/UniformHeight.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/heightproviders/VeryBiasedToBottomHeight.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/heightproviders/VeryBiasedToBottomHeight.class new file mode 100644 index 000000000..3d3155bbd Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/heightproviders/VeryBiasedToBottomHeight.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/heightproviders/WeightedListHeight.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/heightproviders/WeightedListHeight.class new file mode 100644 index 000000000..723072a9d Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/heightproviders/WeightedListHeight.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/heightproviders/package-info.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/heightproviders/package-info.class new file mode 100644 index 000000000..2a19723c7 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/heightproviders/package-info.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/material/MaterialRuleList.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/material/MaterialRuleList.class new file mode 100644 index 000000000..3f39285b6 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/material/MaterialRuleList.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/material/WorldGenMaterialRule.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/material/WorldGenMaterialRule.class new file mode 100644 index 000000000..154dd07f0 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/material/WorldGenMaterialRule.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/material/package-info.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/material/package-info.class new file mode 100644 index 000000000..7894c8c13 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/material/package-info.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/package-info.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/package-info.class new file mode 100644 index 000000000..d9bde12e6 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/package-info.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/placement/BiomeFilter.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/placement/BiomeFilter.class new file mode 100644 index 000000000..66939169b Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/placement/BiomeFilter.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/placement/BlockPredicateFilter.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/placement/BlockPredicateFilter.class new file mode 100644 index 000000000..5e58bbfee Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/placement/BlockPredicateFilter.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/placement/CarvingMaskPlacement.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/placement/CarvingMaskPlacement.class new file mode 100644 index 000000000..9b0b7da3a Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/placement/CarvingMaskPlacement.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/placement/CaveSurface.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/placement/CaveSurface.class new file mode 100644 index 000000000..24c0722ff Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/placement/CaveSurface.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/placement/CountOnEveryLayerPlacement.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/placement/CountOnEveryLayerPlacement.class new file mode 100644 index 000000000..49a3e50e9 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/placement/CountOnEveryLayerPlacement.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/placement/CountPlacement.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/placement/CountPlacement.class new file mode 100644 index 000000000..dcfed4521 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/placement/CountPlacement.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/placement/EnvironmentScanPlacement.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/placement/EnvironmentScanPlacement.class new file mode 100644 index 000000000..20b9400fa Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/placement/EnvironmentScanPlacement.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/placement/HeightRangePlacement.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/placement/HeightRangePlacement.class new file mode 100644 index 000000000..772db6ffc Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/placement/HeightRangePlacement.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/placement/HeightmapPlacement.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/placement/HeightmapPlacement.class new file mode 100644 index 000000000..fb4aa8f53 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/placement/HeightmapPlacement.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/placement/InSquarePlacement.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/placement/InSquarePlacement.class new file mode 100644 index 000000000..29bd80081 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/placement/InSquarePlacement.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/placement/NoiseBasedCountPlacement.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/placement/NoiseBasedCountPlacement.class new file mode 100644 index 000000000..325e3c327 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/placement/NoiseBasedCountPlacement.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/placement/NoiseThresholdCountPlacement.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/placement/NoiseThresholdCountPlacement.class new file mode 100644 index 000000000..9ab5b060c Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/placement/NoiseThresholdCountPlacement.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/placement/PlacedFeature.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/placement/PlacedFeature.class new file mode 100644 index 000000000..67686ed27 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/placement/PlacedFeature.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/placement/PlacementContext.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/placement/PlacementContext.class new file mode 100644 index 000000000..4861aa4ae Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/placement/PlacementContext.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/placement/PlacementFilter.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/placement/PlacementFilter.class new file mode 100644 index 000000000..989abcee9 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/placement/PlacementFilter.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/placement/PlacementModifier.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/placement/PlacementModifier.class new file mode 100644 index 000000000..9ff4ed34d Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/placement/PlacementModifier.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/placement/PlacementModifierType.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/placement/PlacementModifierType.class new file mode 100644 index 000000000..94451e5ad Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/placement/PlacementModifierType.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/placement/RandomOffsetPlacement.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/placement/RandomOffsetPlacement.class new file mode 100644 index 000000000..363645aa5 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/placement/RandomOffsetPlacement.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/placement/RarityFilter.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/placement/RarityFilter.class new file mode 100644 index 000000000..337042e87 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/placement/RarityFilter.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/placement/RepeatingPlacement.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/placement/RepeatingPlacement.class new file mode 100644 index 000000000..5fc2ffbdc Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/placement/RepeatingPlacement.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/placement/SurfaceRelativeThresholdFilter.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/placement/SurfaceRelativeThresholdFilter.class new file mode 100644 index 000000000..f30ec8a9b Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/placement/SurfaceRelativeThresholdFilter.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/placement/SurfaceWaterDepthFilter.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/placement/SurfaceWaterDepthFilter.class new file mode 100644 index 000000000..336c20bdd Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/placement/SurfaceWaterDepthFilter.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/placement/package-info.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/placement/package-info.class new file mode 100644 index 000000000..1ed49e6f7 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/placement/package-info.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/presets/WorldPreset.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/presets/WorldPreset.class new file mode 100644 index 000000000..65b60ee58 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/presets/WorldPreset.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/presets/WorldPresets$Bootstrap.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/presets/WorldPresets$Bootstrap.class new file mode 100644 index 000000000..6def01f31 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/presets/WorldPresets$Bootstrap.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/presets/WorldPresets.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/presets/WorldPresets.class new file mode 100644 index 000000000..9a5804c52 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/presets/WorldPresets.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/presets/package-info.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/presets/package-info.class new file mode 100644 index 000000000..867b6365e Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/presets/package-info.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/BoundingBox$1.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/BoundingBox$1.class new file mode 100644 index 000000000..c9271ea55 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/BoundingBox$1.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/BoundingBox.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/BoundingBox.class new file mode 100644 index 000000000..f9a86dcba Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/BoundingBox.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/BuiltinStructureSets.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/BuiltinStructureSets.class new file mode 100644 index 000000000..3b6e63860 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/BuiltinStructureSets.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/BuiltinStructures.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/BuiltinStructures.class new file mode 100644 index 000000000..e07d8f360 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/BuiltinStructures.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/LegacyStructureDataHandler.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/LegacyStructureDataHandler.class new file mode 100644 index 000000000..3a6f84e68 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/LegacyStructureDataHandler.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/PoolElementStructurePiece.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/PoolElementStructurePiece.class new file mode 100644 index 000000000..0b13e5315 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/PoolElementStructurePiece.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/PostPlacementProcessor.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/PostPlacementProcessor.class new file mode 100644 index 000000000..55857d801 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/PostPlacementProcessor.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/ScatteredFeaturePiece.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/ScatteredFeaturePiece.class new file mode 100644 index 000000000..9907c57ad Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/ScatteredFeaturePiece.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/SinglePieceStructure$PieceConstructor.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/SinglePieceStructure$PieceConstructor.class new file mode 100644 index 000000000..b5d529022 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/SinglePieceStructure$PieceConstructor.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/SinglePieceStructure.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/SinglePieceStructure.class new file mode 100644 index 000000000..f7799b26a Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/SinglePieceStructure.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/Structure$GenerationContext.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/Structure$GenerationContext.class new file mode 100644 index 000000000..8a0d4d1d9 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/Structure$GenerationContext.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/Structure$GenerationStub.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/Structure$GenerationStub.class new file mode 100644 index 000000000..d4f30ad79 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/Structure$GenerationStub.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/Structure$StructureSettings.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/Structure$StructureSettings.class new file mode 100644 index 000000000..049a745dc Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/Structure$StructureSettings.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/Structure.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/Structure.class new file mode 100644 index 000000000..298186914 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/Structure.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/StructureCheck.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/StructureCheck.class new file mode 100644 index 000000000..32cb65512 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/StructureCheck.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/StructureCheckResult.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/StructureCheckResult.class new file mode 100644 index 000000000..5cc3fb7ee Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/StructureCheckResult.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/StructureFeatureIndexSavedData.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/StructureFeatureIndexSavedData.class new file mode 100644 index 000000000..3c8058ed3 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/StructureFeatureIndexSavedData.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/StructurePiece$1.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/StructurePiece$1.class new file mode 100644 index 000000000..17245a20f Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/StructurePiece$1.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/StructurePiece$BlockSelector.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/StructurePiece$BlockSelector.class new file mode 100644 index 000000000..689ce2208 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/StructurePiece$BlockSelector.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/StructurePiece.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/StructurePiece.class new file mode 100644 index 000000000..c51874b69 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/StructurePiece.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/StructurePieceAccessor.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/StructurePieceAccessor.class new file mode 100644 index 000000000..d65ccd017 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/StructurePieceAccessor.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/StructureSet$StructureSelectionEntry.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/StructureSet$StructureSelectionEntry.class new file mode 100644 index 000000000..9a20fe572 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/StructureSet$StructureSelectionEntry.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/StructureSet.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/StructureSet.class new file mode 100644 index 000000000..85e648e67 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/StructureSet.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/StructureSpawnOverride$BoundingBoxType.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/StructureSpawnOverride$BoundingBoxType.class new file mode 100644 index 000000000..d06c153c9 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/StructureSpawnOverride$BoundingBoxType.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/StructureSpawnOverride.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/StructureSpawnOverride.class new file mode 100644 index 000000000..a9d59f89f Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/StructureSpawnOverride.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/StructureStart.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/StructureStart.class new file mode 100644 index 000000000..0f4019447 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/StructureStart.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/StructureType.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/StructureType.class new file mode 100644 index 000000000..6f831700d Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/StructureType.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/TemplateStructurePiece.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/TemplateStructurePiece.class new file mode 100644 index 000000000..12b547e29 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/TemplateStructurePiece.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/TerrainAdjustment.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/TerrainAdjustment.class new file mode 100644 index 000000000..7d03f3a35 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/TerrainAdjustment.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/package-info.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/package-info.class new file mode 100644 index 000000000..cfa9385a9 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/package-info.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/pieces/PieceGenerator$Context.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/pieces/PieceGenerator$Context.class new file mode 100644 index 000000000..1f0553f21 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/pieces/PieceGenerator$Context.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/pieces/PieceGenerator.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/pieces/PieceGenerator.class new file mode 100644 index 000000000..8fa0d5bd4 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/pieces/PieceGenerator.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/pieces/PieceGeneratorSupplier$Context.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/pieces/PieceGeneratorSupplier$Context.class new file mode 100644 index 000000000..3d3d4f10c Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/pieces/PieceGeneratorSupplier$Context.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/pieces/PieceGeneratorSupplier.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/pieces/PieceGeneratorSupplier.class new file mode 100644 index 000000000..5e6d7ed48 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/pieces/PieceGeneratorSupplier.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/pieces/PiecesContainer.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/pieces/PiecesContainer.class new file mode 100644 index 000000000..c4fd02453 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/pieces/PiecesContainer.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/pieces/StructurePieceSerializationContext.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/pieces/StructurePieceSerializationContext.class new file mode 100644 index 000000000..56d5f3b1a Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/pieces/StructurePieceSerializationContext.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/pieces/StructurePieceType$ContextlessType.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/pieces/StructurePieceType$ContextlessType.class new file mode 100644 index 000000000..89be78493 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/pieces/StructurePieceType$ContextlessType.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/pieces/StructurePieceType$StructureTemplateType.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/pieces/StructurePieceType$StructureTemplateType.class new file mode 100644 index 000000000..50e0101f7 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/pieces/StructurePieceType$StructureTemplateType.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/pieces/StructurePieceType.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/pieces/StructurePieceType.class new file mode 100644 index 000000000..2add9320e Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/pieces/StructurePieceType.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/pieces/StructurePiecesBuilder.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/pieces/StructurePiecesBuilder.class new file mode 100644 index 000000000..cb40ca3b6 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/pieces/StructurePiecesBuilder.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/pieces/package-info.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/pieces/package-info.class new file mode 100644 index 000000000..2d7e5fb22 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/pieces/package-info.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/placement/ConcentricRingsStructurePlacement.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/placement/ConcentricRingsStructurePlacement.class new file mode 100644 index 000000000..96f9bc704 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/placement/ConcentricRingsStructurePlacement.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/placement/RandomSpreadStructurePlacement.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/placement/RandomSpreadStructurePlacement.class new file mode 100644 index 000000000..6bc48f979 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/placement/RandomSpreadStructurePlacement.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/placement/RandomSpreadType$1.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/placement/RandomSpreadType$1.class new file mode 100644 index 000000000..e83094c16 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/placement/RandomSpreadType$1.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/placement/RandomSpreadType.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/placement/RandomSpreadType.class new file mode 100644 index 000000000..cefdd37ab Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/placement/RandomSpreadType.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/placement/StructurePlacement$ExclusionZone.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/placement/StructurePlacement$ExclusionZone.class new file mode 100644 index 000000000..0867ed790 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/placement/StructurePlacement$ExclusionZone.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/placement/StructurePlacement$FrequencyReducer.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/placement/StructurePlacement$FrequencyReducer.class new file mode 100644 index 000000000..c77470807 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/placement/StructurePlacement$FrequencyReducer.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/placement/StructurePlacement$FrequencyReductionMethod.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/placement/StructurePlacement$FrequencyReductionMethod.class new file mode 100644 index 000000000..d019be59e Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/placement/StructurePlacement$FrequencyReductionMethod.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/placement/StructurePlacement.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/placement/StructurePlacement.class new file mode 100644 index 000000000..1f817e0eb Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/placement/StructurePlacement.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/placement/StructurePlacementType.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/placement/StructurePlacementType.class new file mode 100644 index 000000000..266cc4bc2 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/placement/StructurePlacementType.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/placement/package-info.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/placement/package-info.class new file mode 100644 index 000000000..86c362e42 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/placement/package-info.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/pools/EmptyPoolElement.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/pools/EmptyPoolElement.class new file mode 100644 index 000000000..47befb3e0 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/pools/EmptyPoolElement.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/pools/FeaturePoolElement.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/pools/FeaturePoolElement.class new file mode 100644 index 000000000..04c33da1d Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/pools/FeaturePoolElement.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/pools/JigsawJunction.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/pools/JigsawJunction.class new file mode 100644 index 000000000..069765d0d Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/pools/JigsawJunction.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/pools/JigsawPlacement$PieceState.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/pools/JigsawPlacement$PieceState.class new file mode 100644 index 000000000..126c90db6 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/pools/JigsawPlacement$PieceState.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/pools/JigsawPlacement$Placer.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/pools/JigsawPlacement$Placer.class new file mode 100644 index 000000000..fba406dde Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/pools/JigsawPlacement$Placer.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/pools/JigsawPlacement.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/pools/JigsawPlacement.class new file mode 100644 index 000000000..4a62c1c7c Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/pools/JigsawPlacement.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/pools/LegacySinglePoolElement.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/pools/LegacySinglePoolElement.class new file mode 100644 index 000000000..81a3df6a1 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/pools/LegacySinglePoolElement.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/pools/ListPoolElement.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/pools/ListPoolElement.class new file mode 100644 index 000000000..5f668315d Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/pools/ListPoolElement.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/pools/SinglePoolElement.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/pools/SinglePoolElement.class new file mode 100644 index 000000000..e2cc4430a Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/pools/SinglePoolElement.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/pools/StructurePoolElement.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/pools/StructurePoolElement.class new file mode 100644 index 000000000..298ce5fc9 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/pools/StructurePoolElement.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/pools/StructurePoolElementType.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/pools/StructurePoolElementType.class new file mode 100644 index 000000000..1e4c96198 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/pools/StructurePoolElementType.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/pools/StructureTemplatePool$Projection.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/pools/StructureTemplatePool$Projection.class new file mode 100644 index 000000000..bb98065f6 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/pools/StructureTemplatePool$Projection.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/pools/StructureTemplatePool.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/pools/StructureTemplatePool.class new file mode 100644 index 000000000..bd68a5959 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/pools/StructureTemplatePool.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/pools/package-info.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/pools/package-info.class new file mode 100644 index 000000000..56e86ab69 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/pools/package-info.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/structures/BuriedTreasurePieces$BuriedTreasurePiece.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/structures/BuriedTreasurePieces$BuriedTreasurePiece.class new file mode 100644 index 000000000..458a55a55 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/structures/BuriedTreasurePieces$BuriedTreasurePiece.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/structures/BuriedTreasurePieces.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/structures/BuriedTreasurePieces.class new file mode 100644 index 000000000..5514dd410 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/structures/BuriedTreasurePieces.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/structures/BuriedTreasureStructure.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/structures/BuriedTreasureStructure.class new file mode 100644 index 000000000..c3ee4d8fc Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/structures/BuriedTreasureStructure.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/structures/DesertPyramidPiece.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/structures/DesertPyramidPiece.class new file mode 100644 index 000000000..7867152f8 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/structures/DesertPyramidPiece.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/structures/DesertPyramidStructure.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/structures/DesertPyramidStructure.class new file mode 100644 index 000000000..4ee2a25a7 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/structures/DesertPyramidStructure.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/structures/EndCityPieces$1.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/structures/EndCityPieces$1.class new file mode 100644 index 000000000..70b116696 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/structures/EndCityPieces$1.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/structures/EndCityPieces$2.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/structures/EndCityPieces$2.class new file mode 100644 index 000000000..739652597 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/structures/EndCityPieces$2.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/structures/EndCityPieces$3.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/structures/EndCityPieces$3.class new file mode 100644 index 000000000..0805d3366 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/structures/EndCityPieces$3.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/structures/EndCityPieces$4.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/structures/EndCityPieces$4.class new file mode 100644 index 000000000..a6ed7f2b5 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/structures/EndCityPieces$4.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/structures/EndCityPieces$EndCityPiece.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/structures/EndCityPieces$EndCityPiece.class new file mode 100644 index 000000000..a2bdd4ec1 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/structures/EndCityPieces$EndCityPiece.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/structures/EndCityPieces$SectionGenerator.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/structures/EndCityPieces$SectionGenerator.class new file mode 100644 index 000000000..648d6b9b8 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/structures/EndCityPieces$SectionGenerator.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/structures/EndCityPieces.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/structures/EndCityPieces.class new file mode 100644 index 000000000..2d1385be2 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/structures/EndCityPieces.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/structures/EndCityStructure.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/structures/EndCityStructure.class new file mode 100644 index 000000000..3d01cde20 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/structures/EndCityStructure.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/structures/IglooPieces$IglooPiece.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/structures/IglooPieces$IglooPiece.class new file mode 100644 index 000000000..7b18a3c93 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/structures/IglooPieces$IglooPiece.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/structures/IglooPieces.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/structures/IglooPieces.class new file mode 100644 index 000000000..3c9fffcc9 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/structures/IglooPieces.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/structures/IglooStructure.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/structures/IglooStructure.class new file mode 100644 index 000000000..8759375df Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/structures/IglooStructure.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/structures/JigsawStructure$1.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/structures/JigsawStructure$1.class new file mode 100644 index 000000000..d63a57e35 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/structures/JigsawStructure$1.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/structures/JigsawStructure.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/structures/JigsawStructure.class new file mode 100644 index 000000000..d11aa2f20 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/structures/JigsawStructure.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/structures/JungleTemplePiece$MossStoneSelector.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/structures/JungleTemplePiece$MossStoneSelector.class new file mode 100644 index 000000000..bb4be0f73 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/structures/JungleTemplePiece$MossStoneSelector.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/structures/JungleTemplePiece.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/structures/JungleTemplePiece.class new file mode 100644 index 000000000..4a3331006 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/structures/JungleTemplePiece.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/structures/JungleTempleStructure.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/structures/JungleTempleStructure.class new file mode 100644 index 000000000..35d5a24b8 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/structures/JungleTempleStructure.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/structures/MineshaftPieces$1.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/structures/MineshaftPieces$1.class new file mode 100644 index 000000000..f62838600 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/structures/MineshaftPieces$1.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/structures/MineshaftPieces$MineShaftCorridor.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/structures/MineshaftPieces$MineShaftCorridor.class new file mode 100644 index 000000000..fbcde92e1 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/structures/MineshaftPieces$MineShaftCorridor.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/structures/MineshaftPieces$MineShaftCrossing.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/structures/MineshaftPieces$MineShaftCrossing.class new file mode 100644 index 000000000..f9c90f32c Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/structures/MineshaftPieces$MineShaftCrossing.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/structures/MineshaftPieces$MineShaftPiece.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/structures/MineshaftPieces$MineShaftPiece.class new file mode 100644 index 000000000..96af9a738 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/structures/MineshaftPieces$MineShaftPiece.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/structures/MineshaftPieces$MineShaftRoom.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/structures/MineshaftPieces$MineShaftRoom.class new file mode 100644 index 000000000..d4d41730b Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/structures/MineshaftPieces$MineShaftRoom.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/structures/MineshaftPieces$MineShaftStairs.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/structures/MineshaftPieces$MineShaftStairs.class new file mode 100644 index 000000000..9e50dab43 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/structures/MineshaftPieces$MineShaftStairs.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/structures/MineshaftPieces.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/structures/MineshaftPieces.class new file mode 100644 index 000000000..6f55e488f Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/structures/MineshaftPieces.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/structures/MineshaftStructure$Type.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/structures/MineshaftStructure$Type.class new file mode 100644 index 000000000..19f61e43a Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/structures/MineshaftStructure$Type.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/structures/MineshaftStructure.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/structures/MineshaftStructure.class new file mode 100644 index 000000000..69b5f1793 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/structures/MineshaftStructure.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$1.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$1.class new file mode 100644 index 000000000..8e9a6e84a Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$1.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$BridgeCrossing.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$BridgeCrossing.class new file mode 100644 index 000000000..30fd94430 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$BridgeCrossing.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$BridgeEndFiller.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$BridgeEndFiller.class new file mode 100644 index 000000000..b66030028 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$BridgeEndFiller.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$BridgeStraight.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$BridgeStraight.class new file mode 100644 index 000000000..c2311ac5c Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$BridgeStraight.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$CastleCorridorStairsPiece.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$CastleCorridorStairsPiece.class new file mode 100644 index 000000000..23a5c81b5 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$CastleCorridorStairsPiece.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$CastleCorridorTBalconyPiece.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$CastleCorridorTBalconyPiece.class new file mode 100644 index 000000000..5aa8dc70d Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$CastleCorridorTBalconyPiece.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$CastleEntrance.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$CastleEntrance.class new file mode 100644 index 000000000..d82a83b5c Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$CastleEntrance.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$CastleSmallCorridorCrossingPiece.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$CastleSmallCorridorCrossingPiece.class new file mode 100644 index 000000000..e38b7a39c Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$CastleSmallCorridorCrossingPiece.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$CastleSmallCorridorLeftTurnPiece.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$CastleSmallCorridorLeftTurnPiece.class new file mode 100644 index 000000000..bb6c595b0 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$CastleSmallCorridorLeftTurnPiece.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$CastleSmallCorridorPiece.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$CastleSmallCorridorPiece.class new file mode 100644 index 000000000..cddb85c2a Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$CastleSmallCorridorPiece.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$CastleSmallCorridorRightTurnPiece.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$CastleSmallCorridorRightTurnPiece.class new file mode 100644 index 000000000..72138a002 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$CastleSmallCorridorRightTurnPiece.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$CastleStalkRoom.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$CastleStalkRoom.class new file mode 100644 index 000000000..deb79dbb7 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$CastleStalkRoom.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$MonsterThrone.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$MonsterThrone.class new file mode 100644 index 000000000..c9a1ec9cf Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$MonsterThrone.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$NetherBridgePiece.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$NetherBridgePiece.class new file mode 100644 index 000000000..4fabfba53 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$NetherBridgePiece.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$PieceWeight.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$PieceWeight.class new file mode 100644 index 000000000..41051d99e Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$PieceWeight.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$RoomCrossing.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$RoomCrossing.class new file mode 100644 index 000000000..793632911 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$RoomCrossing.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$StairsRoom.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$StairsRoom.class new file mode 100644 index 000000000..7e51fb566 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$StairsRoom.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$StartPiece.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$StartPiece.class new file mode 100644 index 000000000..815a5a9f7 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$StartPiece.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces.class new file mode 100644 index 000000000..8b9d56d7e Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/structures/NetherFortressStructure.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/structures/NetherFortressStructure.class new file mode 100644 index 000000000..2b9700231 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/structures/NetherFortressStructure.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/structures/NetherFossilPieces$NetherFossilPiece.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/structures/NetherFossilPieces$NetherFossilPiece.class new file mode 100644 index 000000000..e9776b6a0 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/structures/NetherFossilPieces$NetherFossilPiece.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/structures/NetherFossilPieces.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/structures/NetherFossilPieces.class new file mode 100644 index 000000000..bd040cacf Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/structures/NetherFossilPieces.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/structures/NetherFossilStructure.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/structures/NetherFossilStructure.class new file mode 100644 index 000000000..09aa553be Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/structures/NetherFossilStructure.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$1.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$1.class new file mode 100644 index 000000000..22172a148 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$1.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$FitDoubleXRoom.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$FitDoubleXRoom.class new file mode 100644 index 000000000..d9417f692 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$FitDoubleXRoom.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$FitDoubleXYRoom.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$FitDoubleXYRoom.class new file mode 100644 index 000000000..3fc40ce13 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$FitDoubleXYRoom.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$FitDoubleYRoom.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$FitDoubleYRoom.class new file mode 100644 index 000000000..0f509513b Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$FitDoubleYRoom.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$FitDoubleYZRoom.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$FitDoubleYZRoom.class new file mode 100644 index 000000000..12ff7ae3e Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$FitDoubleYZRoom.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$FitDoubleZRoom.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$FitDoubleZRoom.class new file mode 100644 index 000000000..20eb3acad Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$FitDoubleZRoom.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$FitSimpleRoom.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$FitSimpleRoom.class new file mode 100644 index 000000000..0764f704c Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$FitSimpleRoom.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$FitSimpleTopRoom.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$FitSimpleTopRoom.class new file mode 100644 index 000000000..9ef8a018f Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$FitSimpleTopRoom.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$MonumentBuilding.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$MonumentBuilding.class new file mode 100644 index 000000000..b5d730b39 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$MonumentBuilding.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$MonumentRoomFitter.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$MonumentRoomFitter.class new file mode 100644 index 000000000..5d86225f7 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$MonumentRoomFitter.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$OceanMonumentCoreRoom.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$OceanMonumentCoreRoom.class new file mode 100644 index 000000000..695a931f7 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$OceanMonumentCoreRoom.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$OceanMonumentDoubleXRoom.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$OceanMonumentDoubleXRoom.class new file mode 100644 index 000000000..40ce9519b Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$OceanMonumentDoubleXRoom.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$OceanMonumentDoubleXYRoom.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$OceanMonumentDoubleXYRoom.class new file mode 100644 index 000000000..738c4eb18 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$OceanMonumentDoubleXYRoom.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$OceanMonumentDoubleYRoom.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$OceanMonumentDoubleYRoom.class new file mode 100644 index 000000000..2194364c4 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$OceanMonumentDoubleYRoom.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$OceanMonumentDoubleYZRoom.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$OceanMonumentDoubleYZRoom.class new file mode 100644 index 000000000..305d70b68 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$OceanMonumentDoubleYZRoom.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$OceanMonumentDoubleZRoom.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$OceanMonumentDoubleZRoom.class new file mode 100644 index 000000000..6a8d292ac Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$OceanMonumentDoubleZRoom.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$OceanMonumentEntryRoom.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$OceanMonumentEntryRoom.class new file mode 100644 index 000000000..e3e128f6d Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$OceanMonumentEntryRoom.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$OceanMonumentPenthouse.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$OceanMonumentPenthouse.class new file mode 100644 index 000000000..f89747f45 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$OceanMonumentPenthouse.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$OceanMonumentPiece.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$OceanMonumentPiece.class new file mode 100644 index 000000000..d513df01a Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$OceanMonumentPiece.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$OceanMonumentSimpleRoom.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$OceanMonumentSimpleRoom.class new file mode 100644 index 000000000..bc432a470 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$OceanMonumentSimpleRoom.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$OceanMonumentSimpleTopRoom.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$OceanMonumentSimpleTopRoom.class new file mode 100644 index 000000000..9a099553f Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$OceanMonumentSimpleTopRoom.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$OceanMonumentWingRoom.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$OceanMonumentWingRoom.class new file mode 100644 index 000000000..d03086670 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$OceanMonumentWingRoom.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$RoomDefinition.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$RoomDefinition.class new file mode 100644 index 000000000..7f99f5905 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$RoomDefinition.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces.class new file mode 100644 index 000000000..2b7d88cad Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/structures/OceanMonumentStructure.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/structures/OceanMonumentStructure.class new file mode 100644 index 000000000..49179d365 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/structures/OceanMonumentStructure.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/structures/OceanRuinPieces$1.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/structures/OceanRuinPieces$1.class new file mode 100644 index 000000000..68abf4cf1 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/structures/OceanRuinPieces$1.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/structures/OceanRuinPieces$OceanRuinPiece.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/structures/OceanRuinPieces$OceanRuinPiece.class new file mode 100644 index 000000000..52e00bbff Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/structures/OceanRuinPieces$OceanRuinPiece.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/structures/OceanRuinPieces.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/structures/OceanRuinPieces.class new file mode 100644 index 000000000..6369c91ce Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/structures/OceanRuinPieces.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/structures/OceanRuinStructure$Type.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/structures/OceanRuinStructure$Type.class new file mode 100644 index 000000000..321bd3a79 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/structures/OceanRuinStructure$Type.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/structures/OceanRuinStructure.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/structures/OceanRuinStructure.class new file mode 100644 index 000000000..51ae859c5 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/structures/OceanRuinStructure.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/structures/RuinedPortalPiece$Properties.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/structures/RuinedPortalPiece$Properties.class new file mode 100644 index 000000000..b0db69694 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/structures/RuinedPortalPiece$Properties.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/structures/RuinedPortalPiece$VerticalPlacement.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/structures/RuinedPortalPiece$VerticalPlacement.class new file mode 100644 index 000000000..6674ccee7 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/structures/RuinedPortalPiece$VerticalPlacement.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/structures/RuinedPortalPiece.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/structures/RuinedPortalPiece.class new file mode 100644 index 000000000..1777c4c10 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/structures/RuinedPortalPiece.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/structures/RuinedPortalStructure$Setup.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/structures/RuinedPortalStructure$Setup.class new file mode 100644 index 000000000..f88ff94de Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/structures/RuinedPortalStructure$Setup.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/structures/RuinedPortalStructure.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/structures/RuinedPortalStructure.class new file mode 100644 index 000000000..62272c5c2 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/structures/RuinedPortalStructure.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/structures/ShipwreckPieces$ShipwreckPiece.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/structures/ShipwreckPieces$ShipwreckPiece.class new file mode 100644 index 000000000..05a5d8c82 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/structures/ShipwreckPieces$ShipwreckPiece.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/structures/ShipwreckPieces.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/structures/ShipwreckPieces.class new file mode 100644 index 000000000..3ee9037eb Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/structures/ShipwreckPieces.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/structures/ShipwreckStructure.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/structures/ShipwreckStructure.class new file mode 100644 index 000000000..30c14f3d9 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/structures/ShipwreckStructure.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$1.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$1.class new file mode 100644 index 000000000..1a349437b Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$1.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$2.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$2.class new file mode 100644 index 000000000..f2bf00552 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$2.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$3.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$3.class new file mode 100644 index 000000000..07c427a3e Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$3.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$ChestCorridor.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$ChestCorridor.class new file mode 100644 index 000000000..be83294a0 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$ChestCorridor.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$FillerCorridor.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$FillerCorridor.class new file mode 100644 index 000000000..9aeaffb56 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$FillerCorridor.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$FiveCrossing.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$FiveCrossing.class new file mode 100644 index 000000000..26262fb89 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$FiveCrossing.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$LeftTurn.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$LeftTurn.class new file mode 100644 index 000000000..49695e569 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$LeftTurn.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$Library.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$Library.class new file mode 100644 index 000000000..e9abb51b8 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$Library.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$PieceWeight.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$PieceWeight.class new file mode 100644 index 000000000..9ed281129 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$PieceWeight.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$PortalRoom.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$PortalRoom.class new file mode 100644 index 000000000..57c185d4e Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$PortalRoom.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$PrisonHall.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$PrisonHall.class new file mode 100644 index 000000000..bfd1a0fdc Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$PrisonHall.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$RightTurn.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$RightTurn.class new file mode 100644 index 000000000..f60557d39 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$RightTurn.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$RoomCrossing.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$RoomCrossing.class new file mode 100644 index 000000000..07ad3ecb3 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$RoomCrossing.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$SmoothStoneSelector.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$SmoothStoneSelector.class new file mode 100644 index 000000000..09ca4edb9 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$SmoothStoneSelector.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$StairsDown.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$StairsDown.class new file mode 100644 index 000000000..87d9869df Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$StairsDown.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$StartPiece.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$StartPiece.class new file mode 100644 index 000000000..9bc05fb46 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$StartPiece.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$Straight.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$Straight.class new file mode 100644 index 000000000..3ab2b412a Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$Straight.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$StraightStairsDown.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$StraightStairsDown.class new file mode 100644 index 000000000..61eab7bb8 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$StraightStairsDown.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$StrongholdPiece$SmallDoorType.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$StrongholdPiece$SmallDoorType.class new file mode 100644 index 000000000..913cc2cc9 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$StrongholdPiece$SmallDoorType.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$StrongholdPiece.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$StrongholdPiece.class new file mode 100644 index 000000000..7104a865a Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$StrongholdPiece.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$Turn.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$Turn.class new file mode 100644 index 000000000..8c04772e4 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$Turn.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces.class new file mode 100644 index 000000000..df5382a05 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/structures/StrongholdStructure.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/structures/StrongholdStructure.class new file mode 100644 index 000000000..9eef07886 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/structures/StrongholdStructure.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/structures/SwampHutPiece.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/structures/SwampHutPiece.class new file mode 100644 index 000000000..286120f08 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/structures/SwampHutPiece.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/structures/SwampHutStructure.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/structures/SwampHutStructure.class new file mode 100644 index 000000000..bea06303a Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/structures/SwampHutStructure.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/structures/WoodlandMansionPieces$FirstFloorRoomCollection.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/structures/WoodlandMansionPieces$FirstFloorRoomCollection.class new file mode 100644 index 000000000..11ca0e00c Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/structures/WoodlandMansionPieces$FirstFloorRoomCollection.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/structures/WoodlandMansionPieces$FloorRoomCollection.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/structures/WoodlandMansionPieces$FloorRoomCollection.class new file mode 100644 index 000000000..087d046ab Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/structures/WoodlandMansionPieces$FloorRoomCollection.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/structures/WoodlandMansionPieces$MansionGrid.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/structures/WoodlandMansionPieces$MansionGrid.class new file mode 100644 index 000000000..806532fee Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/structures/WoodlandMansionPieces$MansionGrid.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/structures/WoodlandMansionPieces$MansionPiecePlacer.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/structures/WoodlandMansionPieces$MansionPiecePlacer.class new file mode 100644 index 000000000..f9159c001 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/structures/WoodlandMansionPieces$MansionPiecePlacer.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/structures/WoodlandMansionPieces$PlacementData.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/structures/WoodlandMansionPieces$PlacementData.class new file mode 100644 index 000000000..cdac19528 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/structures/WoodlandMansionPieces$PlacementData.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/structures/WoodlandMansionPieces$SecondFloorRoomCollection.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/structures/WoodlandMansionPieces$SecondFloorRoomCollection.class new file mode 100644 index 000000000..cef28d8fa Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/structures/WoodlandMansionPieces$SecondFloorRoomCollection.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/structures/WoodlandMansionPieces$SimpleGrid.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/structures/WoodlandMansionPieces$SimpleGrid.class new file mode 100644 index 000000000..5ae4e8c34 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/structures/WoodlandMansionPieces$SimpleGrid.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/structures/WoodlandMansionPieces$ThirdFloorRoomCollection.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/structures/WoodlandMansionPieces$ThirdFloorRoomCollection.class new file mode 100644 index 000000000..3743bc3f7 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/structures/WoodlandMansionPieces$ThirdFloorRoomCollection.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/structures/WoodlandMansionPieces$WoodlandMansionPiece.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/structures/WoodlandMansionPieces$WoodlandMansionPiece.class new file mode 100644 index 000000000..2cd5d45e5 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/structures/WoodlandMansionPieces$WoodlandMansionPiece.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/structures/WoodlandMansionPieces.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/structures/WoodlandMansionPieces.class new file mode 100644 index 000000000..26bb3b8f3 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/structures/WoodlandMansionPieces.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/structures/WoodlandMansionStructure.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/structures/WoodlandMansionStructure.class new file mode 100644 index 000000000..413af330e Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/structures/WoodlandMansionStructure.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/structures/package-info.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/structures/package-info.class new file mode 100644 index 000000000..b418be8ee Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/structures/package-info.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/templatesystem/AlwaysTrueTest.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/templatesystem/AlwaysTrueTest.class new file mode 100644 index 000000000..c85b541cd Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/templatesystem/AlwaysTrueTest.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/templatesystem/AxisAlignedLinearPosTest.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/templatesystem/AxisAlignedLinearPosTest.class new file mode 100644 index 000000000..e7bc5373b Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/templatesystem/AxisAlignedLinearPosTest.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/templatesystem/BlackstoneReplaceProcessor.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/templatesystem/BlackstoneReplaceProcessor.class new file mode 100644 index 000000000..32c250c14 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/templatesystem/BlackstoneReplaceProcessor.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/templatesystem/BlockAgeProcessor.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/templatesystem/BlockAgeProcessor.class new file mode 100644 index 000000000..71db8c821 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/templatesystem/BlockAgeProcessor.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/templatesystem/BlockIgnoreProcessor.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/templatesystem/BlockIgnoreProcessor.class new file mode 100644 index 000000000..84bd3847e Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/templatesystem/BlockIgnoreProcessor.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/templatesystem/BlockMatchTest.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/templatesystem/BlockMatchTest.class new file mode 100644 index 000000000..adf0ccf11 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/templatesystem/BlockMatchTest.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/templatesystem/BlockRotProcessor.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/templatesystem/BlockRotProcessor.class new file mode 100644 index 000000000..39222339d Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/templatesystem/BlockRotProcessor.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/templatesystem/BlockStateMatchTest.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/templatesystem/BlockStateMatchTest.class new file mode 100644 index 000000000..92509774b Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/templatesystem/BlockStateMatchTest.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/templatesystem/CappedProcessor.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/templatesystem/CappedProcessor.class new file mode 100644 index 000000000..9a56a7769 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/templatesystem/CappedProcessor.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/templatesystem/GravityProcessor.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/templatesystem/GravityProcessor.class new file mode 100644 index 000000000..d61b09787 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/templatesystem/GravityProcessor.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/templatesystem/JigsawReplacementProcessor.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/templatesystem/JigsawReplacementProcessor.class new file mode 100644 index 000000000..160d036b6 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/templatesystem/JigsawReplacementProcessor.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/templatesystem/LavaSubmergedBlockProcessor.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/templatesystem/LavaSubmergedBlockProcessor.class new file mode 100644 index 000000000..2216e6f37 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/templatesystem/LavaSubmergedBlockProcessor.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/templatesystem/LinearPosTest.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/templatesystem/LinearPosTest.class new file mode 100644 index 000000000..b98b6b971 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/templatesystem/LinearPosTest.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/templatesystem/NopProcessor.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/templatesystem/NopProcessor.class new file mode 100644 index 000000000..1e3862291 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/templatesystem/NopProcessor.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/templatesystem/PosAlwaysTrueTest.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/templatesystem/PosAlwaysTrueTest.class new file mode 100644 index 000000000..3c0a92746 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/templatesystem/PosAlwaysTrueTest.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/templatesystem/PosRuleTest.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/templatesystem/PosRuleTest.class new file mode 100644 index 000000000..5af975a59 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/templatesystem/PosRuleTest.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/templatesystem/PosRuleTestType.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/templatesystem/PosRuleTestType.class new file mode 100644 index 000000000..0b333cd7f Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/templatesystem/PosRuleTestType.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/templatesystem/ProcessorRule.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/templatesystem/ProcessorRule.class new file mode 100644 index 000000000..65fcbb565 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/templatesystem/ProcessorRule.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/templatesystem/ProtectedBlockProcessor.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/templatesystem/ProtectedBlockProcessor.class new file mode 100644 index 000000000..19b1e985e Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/templatesystem/ProtectedBlockProcessor.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/templatesystem/RandomBlockMatchTest.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/templatesystem/RandomBlockMatchTest.class new file mode 100644 index 000000000..bd73512b3 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/templatesystem/RandomBlockMatchTest.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/templatesystem/RandomBlockStateMatchTest.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/templatesystem/RandomBlockStateMatchTest.class new file mode 100644 index 000000000..3f62f5dcc Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/templatesystem/RandomBlockStateMatchTest.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/templatesystem/RuleProcessor.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/templatesystem/RuleProcessor.class new file mode 100644 index 000000000..36499b5d5 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/templatesystem/RuleProcessor.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/templatesystem/RuleTest.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/templatesystem/RuleTest.class new file mode 100644 index 000000000..ee48302e4 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/templatesystem/RuleTest.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/templatesystem/RuleTestType.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/templatesystem/RuleTestType.class new file mode 100644 index 000000000..43ec608ba Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/templatesystem/RuleTestType.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/templatesystem/StructurePlaceSettings.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/templatesystem/StructurePlaceSettings.class new file mode 100644 index 000000000..df4811691 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/templatesystem/StructurePlaceSettings.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/templatesystem/StructureProcessor.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/templatesystem/StructureProcessor.class new file mode 100644 index 000000000..e3b7cd813 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/templatesystem/StructureProcessor.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/templatesystem/StructureProcessorList.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/templatesystem/StructureProcessorList.class new file mode 100644 index 000000000..0c5c2556a Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/templatesystem/StructureProcessorList.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/templatesystem/StructureProcessorType.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/templatesystem/StructureProcessorType.class new file mode 100644 index 000000000..037ac745b Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/templatesystem/StructureProcessorType.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate$1.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate$1.class new file mode 100644 index 000000000..97e58ee58 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate$1.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate$Palette.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate$Palette.class new file mode 100644 index 000000000..769a173aa Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate$Palette.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate$SimplePalette.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate$SimplePalette.class new file mode 100644 index 000000000..707a8479c Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate$SimplePalette.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate$StructureBlockInfo.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate$StructureBlockInfo.class new file mode 100644 index 000000000..261099536 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate$StructureBlockInfo.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate$StructureEntityInfo.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate$StructureEntityInfo.class new file mode 100644 index 000000000..fd7c6c94a Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate$StructureEntityInfo.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate.class new file mode 100644 index 000000000..afe28977f Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager$InputStreamOpener.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager$InputStreamOpener.class new file mode 100644 index 000000000..0eec945da Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager$InputStreamOpener.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager$Source.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager$Source.class new file mode 100644 index 000000000..403a04c7b Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager$Source.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager.class new file mode 100644 index 000000000..6cb002400 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/templatesystem/TagMatchTest.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/templatesystem/TagMatchTest.class new file mode 100644 index 000000000..41b709114 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/templatesystem/TagMatchTest.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/templatesystem/package-info.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/templatesystem/package-info.class new file mode 100644 index 000000000..e8a4e05bf Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/templatesystem/package-info.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/templatesystem/rule/blockentity/AppendLoot.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/templatesystem/rule/blockentity/AppendLoot.class new file mode 100644 index 000000000..6c572868b Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/templatesystem/rule/blockentity/AppendLoot.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/templatesystem/rule/blockentity/AppendStatic.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/templatesystem/rule/blockentity/AppendStatic.class new file mode 100644 index 000000000..2e1d4dda9 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/templatesystem/rule/blockentity/AppendStatic.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/templatesystem/rule/blockentity/Clear.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/templatesystem/rule/blockentity/Clear.class new file mode 100644 index 000000000..6a833bae2 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/templatesystem/rule/blockentity/Clear.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/templatesystem/rule/blockentity/Passthrough.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/templatesystem/rule/blockentity/Passthrough.class new file mode 100644 index 000000000..f3fe0ac95 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/templatesystem/rule/blockentity/Passthrough.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/templatesystem/rule/blockentity/RuleBlockEntityModifier.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/templatesystem/rule/blockentity/RuleBlockEntityModifier.class new file mode 100644 index 000000000..9409baead Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/templatesystem/rule/blockentity/RuleBlockEntityModifier.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/templatesystem/rule/blockentity/RuleBlockEntityModifierType.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/templatesystem/rule/blockentity/RuleBlockEntityModifierType.class new file mode 100644 index 000000000..4bd280bc8 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/templatesystem/rule/blockentity/RuleBlockEntityModifierType.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/templatesystem/rule/blockentity/package-info.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/templatesystem/rule/blockentity/package-info.class new file mode 100644 index 000000000..782fdf98b Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/structure/templatesystem/rule/blockentity/package-info.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/synth/BlendedNoise.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/synth/BlendedNoise.class new file mode 100644 index 000000000..f490488c6 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/synth/BlendedNoise.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/synth/ImprovedNoise.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/synth/ImprovedNoise.class new file mode 100644 index 000000000..99d66d559 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/synth/ImprovedNoise.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/synth/NoiseUtils.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/synth/NoiseUtils.class new file mode 100644 index 000000000..266b767ba Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/synth/NoiseUtils.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/synth/NormalNoise$NoiseParameters.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/synth/NormalNoise$NoiseParameters.class new file mode 100644 index 000000000..f93f042f7 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/synth/NormalNoise$NoiseParameters.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/synth/NormalNoise.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/synth/NormalNoise.class new file mode 100644 index 000000000..652f958ce Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/synth/NormalNoise.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/synth/PerlinNoise.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/synth/PerlinNoise.class new file mode 100644 index 000000000..bd19ed84e Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/synth/PerlinNoise.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/synth/PerlinSimplexNoise.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/synth/PerlinSimplexNoise.class new file mode 100644 index 000000000..f8ec242b6 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/synth/PerlinSimplexNoise.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/synth/SimplexNoise.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/synth/SimplexNoise.class new file mode 100644 index 000000000..4fb805499 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/synth/SimplexNoise.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/levelgen/synth/package-info.class b/build/_compileJava_2/net/minecraft/world/level/levelgen/synth/package-info.class new file mode 100644 index 000000000..da8516e68 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/levelgen/synth/package-info.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/lighting/BlockLightEngine.class b/build/_compileJava_2/net/minecraft/world/level/lighting/BlockLightEngine.class new file mode 100644 index 000000000..f5c0119ae Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/lighting/BlockLightEngine.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/lighting/BlockLightSectionStorage$BlockDataLayerStorageMap.class b/build/_compileJava_2/net/minecraft/world/level/lighting/BlockLightSectionStorage$BlockDataLayerStorageMap.class new file mode 100644 index 000000000..c574a96ce Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/lighting/BlockLightSectionStorage$BlockDataLayerStorageMap.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/lighting/BlockLightSectionStorage.class b/build/_compileJava_2/net/minecraft/world/level/lighting/BlockLightSectionStorage.class new file mode 100644 index 000000000..270a90380 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/lighting/BlockLightSectionStorage.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/lighting/ChunkSkyLightSources.class b/build/_compileJava_2/net/minecraft/world/level/lighting/ChunkSkyLightSources.class new file mode 100644 index 000000000..842cdfcb3 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/lighting/ChunkSkyLightSources.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/lighting/DataLayerStorageMap.class b/build/_compileJava_2/net/minecraft/world/level/lighting/DataLayerStorageMap.class new file mode 100644 index 000000000..5a2920bb2 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/lighting/DataLayerStorageMap.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/lighting/DynamicGraphMinFixedPoint$1.class b/build/_compileJava_2/net/minecraft/world/level/lighting/DynamicGraphMinFixedPoint$1.class new file mode 100644 index 000000000..76a9f858e Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/lighting/DynamicGraphMinFixedPoint$1.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/lighting/DynamicGraphMinFixedPoint.class b/build/_compileJava_2/net/minecraft/world/level/lighting/DynamicGraphMinFixedPoint.class new file mode 100644 index 000000000..47c14bc7b Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/lighting/DynamicGraphMinFixedPoint.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/lighting/LayerLightEventListener$DummyLightLayerEventListener.class b/build/_compileJava_2/net/minecraft/world/level/lighting/LayerLightEventListener$DummyLightLayerEventListener.class new file mode 100644 index 000000000..33cc8e8d6 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/lighting/LayerLightEventListener$DummyLightLayerEventListener.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/lighting/LayerLightEventListener.class b/build/_compileJava_2/net/minecraft/world/level/lighting/LayerLightEventListener.class new file mode 100644 index 000000000..519273e4b Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/lighting/LayerLightEventListener.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/lighting/LayerLightSectionStorage$SectionState.class b/build/_compileJava_2/net/minecraft/world/level/lighting/LayerLightSectionStorage$SectionState.class new file mode 100644 index 000000000..35445c24d Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/lighting/LayerLightSectionStorage$SectionState.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/lighting/LayerLightSectionStorage$SectionType.class b/build/_compileJava_2/net/minecraft/world/level/lighting/LayerLightSectionStorage$SectionType.class new file mode 100644 index 000000000..fc924f3a7 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/lighting/LayerLightSectionStorage$SectionType.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/lighting/LayerLightSectionStorage.class b/build/_compileJava_2/net/minecraft/world/level/lighting/LayerLightSectionStorage.class new file mode 100644 index 000000000..b7a5bffd8 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/lighting/LayerLightSectionStorage.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/lighting/LevelLightEngine.class b/build/_compileJava_2/net/minecraft/world/level/lighting/LevelLightEngine.class new file mode 100644 index 000000000..0b480c554 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/lighting/LevelLightEngine.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/lighting/LeveledPriorityQueue$1.class b/build/_compileJava_2/net/minecraft/world/level/lighting/LeveledPriorityQueue$1.class new file mode 100644 index 000000000..e8022e6c8 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/lighting/LeveledPriorityQueue$1.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/lighting/LeveledPriorityQueue.class b/build/_compileJava_2/net/minecraft/world/level/lighting/LeveledPriorityQueue.class new file mode 100644 index 000000000..e8d8d8c9e Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/lighting/LeveledPriorityQueue.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/lighting/LightEngine$QueueEntry.class b/build/_compileJava_2/net/minecraft/world/level/lighting/LightEngine$QueueEntry.class new file mode 100644 index 000000000..71cde2e27 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/lighting/LightEngine$QueueEntry.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/lighting/LightEngine.class b/build/_compileJava_2/net/minecraft/world/level/lighting/LightEngine.class new file mode 100644 index 000000000..0423de7c4 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/lighting/LightEngine.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/lighting/LightEventListener.class b/build/_compileJava_2/net/minecraft/world/level/lighting/LightEventListener.class new file mode 100644 index 000000000..e7579075b Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/lighting/LightEventListener.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/lighting/SkyLightEngine$1.class b/build/_compileJava_2/net/minecraft/world/level/lighting/SkyLightEngine$1.class new file mode 100644 index 000000000..403679a92 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/lighting/SkyLightEngine$1.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/lighting/SkyLightEngine.class b/build/_compileJava_2/net/minecraft/world/level/lighting/SkyLightEngine.class new file mode 100644 index 000000000..6a85e6c3b Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/lighting/SkyLightEngine.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/lighting/SkyLightSectionStorage$SkyDataLayerStorageMap.class b/build/_compileJava_2/net/minecraft/world/level/lighting/SkyLightSectionStorage$SkyDataLayerStorageMap.class new file mode 100644 index 000000000..efb32e68e Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/lighting/SkyLightSectionStorage$SkyDataLayerStorageMap.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/lighting/SkyLightSectionStorage.class b/build/_compileJava_2/net/minecraft/world/level/lighting/SkyLightSectionStorage.class new file mode 100644 index 000000000..031bcfe13 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/lighting/SkyLightSectionStorage.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/lighting/SpatialLongSet$InternalMap.class b/build/_compileJava_2/net/minecraft/world/level/lighting/SpatialLongSet$InternalMap.class new file mode 100644 index 000000000..af33d0bab Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/lighting/SpatialLongSet$InternalMap.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/lighting/SpatialLongSet.class b/build/_compileJava_2/net/minecraft/world/level/lighting/SpatialLongSet.class new file mode 100644 index 000000000..79aa74f2f Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/lighting/SpatialLongSet.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/lighting/package-info.class b/build/_compileJava_2/net/minecraft/world/level/lighting/package-info.class new file mode 100644 index 000000000..2ade021fc Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/lighting/package-info.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/material/EmptyFluid.class b/build/_compileJava_2/net/minecraft/world/level/material/EmptyFluid.class new file mode 100644 index 000000000..55d6f3a80 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/material/EmptyFluid.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/material/FlowingFluid$1.class b/build/_compileJava_2/net/minecraft/world/level/material/FlowingFluid$1.class new file mode 100644 index 000000000..d48994804 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/material/FlowingFluid$1.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/material/FlowingFluid.class b/build/_compileJava_2/net/minecraft/world/level/material/FlowingFluid.class new file mode 100644 index 000000000..aea2ca2e0 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/material/FlowingFluid.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/material/Fluid.class b/build/_compileJava_2/net/minecraft/world/level/material/Fluid.class new file mode 100644 index 000000000..340fc2679 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/material/Fluid.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/material/FluidState.class b/build/_compileJava_2/net/minecraft/world/level/material/FluidState.class new file mode 100644 index 000000000..8f7b92b98 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/material/FluidState.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/material/Fluids.class b/build/_compileJava_2/net/minecraft/world/level/material/Fluids.class new file mode 100644 index 000000000..cfc5906ec Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/material/Fluids.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/material/FogType.class b/build/_compileJava_2/net/minecraft/world/level/material/FogType.class new file mode 100644 index 000000000..cf963d3e8 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/material/FogType.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/material/LavaFluid$Flowing.class b/build/_compileJava_2/net/minecraft/world/level/material/LavaFluid$Flowing.class new file mode 100644 index 000000000..1b8b4dd2c Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/material/LavaFluid$Flowing.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/material/LavaFluid$Source.class b/build/_compileJava_2/net/minecraft/world/level/material/LavaFluid$Source.class new file mode 100644 index 000000000..a90780fe3 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/material/LavaFluid$Source.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/material/LavaFluid.class b/build/_compileJava_2/net/minecraft/world/level/material/LavaFluid.class new file mode 100644 index 000000000..5f2e667dc Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/material/LavaFluid.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/material/MapColor$Brightness.class b/build/_compileJava_2/net/minecraft/world/level/material/MapColor$Brightness.class new file mode 100644 index 000000000..adbd24f5e Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/material/MapColor$Brightness.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/material/MapColor.class b/build/_compileJava_2/net/minecraft/world/level/material/MapColor.class new file mode 100644 index 000000000..7b116ae3c Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/material/MapColor.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/material/PushReaction.class b/build/_compileJava_2/net/minecraft/world/level/material/PushReaction.class new file mode 100644 index 000000000..4999a4cce Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/material/PushReaction.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/material/WaterFluid$Flowing.class b/build/_compileJava_2/net/minecraft/world/level/material/WaterFluid$Flowing.class new file mode 100644 index 000000000..2cbcb787b Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/material/WaterFluid$Flowing.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/material/WaterFluid$Source.class b/build/_compileJava_2/net/minecraft/world/level/material/WaterFluid$Source.class new file mode 100644 index 000000000..59b649bf4 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/material/WaterFluid$Source.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/material/WaterFluid.class b/build/_compileJava_2/net/minecraft/world/level/material/WaterFluid.class new file mode 100644 index 000000000..42ab866db Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/material/WaterFluid.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/material/package-info.class b/build/_compileJava_2/net/minecraft/world/level/material/package-info.class new file mode 100644 index 000000000..954a0210d Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/material/package-info.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/package-info.class b/build/_compileJava_2/net/minecraft/world/level/package-info.class new file mode 100644 index 000000000..295111772 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/package-info.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/pathfinder/AmphibiousNodeEvaluator.class b/build/_compileJava_2/net/minecraft/world/level/pathfinder/AmphibiousNodeEvaluator.class new file mode 100644 index 000000000..90a25c401 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/pathfinder/AmphibiousNodeEvaluator.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/pathfinder/BinaryHeap.class b/build/_compileJava_2/net/minecraft/world/level/pathfinder/BinaryHeap.class new file mode 100644 index 000000000..0936ec7f6 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/pathfinder/BinaryHeap.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/pathfinder/BlockPathTypes.class b/build/_compileJava_2/net/minecraft/world/level/pathfinder/BlockPathTypes.class new file mode 100644 index 000000000..46b1581ad Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/pathfinder/BlockPathTypes.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/pathfinder/FlyNodeEvaluator.class b/build/_compileJava_2/net/minecraft/world/level/pathfinder/FlyNodeEvaluator.class new file mode 100644 index 000000000..3decfb38f Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/pathfinder/FlyNodeEvaluator.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/pathfinder/Node.class b/build/_compileJava_2/net/minecraft/world/level/pathfinder/Node.class new file mode 100644 index 000000000..391cddb18 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/pathfinder/Node.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/pathfinder/NodeEvaluator.class b/build/_compileJava_2/net/minecraft/world/level/pathfinder/NodeEvaluator.class new file mode 100644 index 000000000..cf3158e94 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/pathfinder/NodeEvaluator.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/pathfinder/Path.class b/build/_compileJava_2/net/minecraft/world/level/pathfinder/Path.class new file mode 100644 index 000000000..680744ff3 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/pathfinder/Path.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/pathfinder/PathComputationType.class b/build/_compileJava_2/net/minecraft/world/level/pathfinder/PathComputationType.class new file mode 100644 index 000000000..feaf5de49 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/pathfinder/PathComputationType.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/pathfinder/PathFinder.class b/build/_compileJava_2/net/minecraft/world/level/pathfinder/PathFinder.class new file mode 100644 index 000000000..d13229512 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/pathfinder/PathFinder.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/pathfinder/SwimNodeEvaluator.class b/build/_compileJava_2/net/minecraft/world/level/pathfinder/SwimNodeEvaluator.class new file mode 100644 index 000000000..4def57d69 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/pathfinder/SwimNodeEvaluator.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/pathfinder/Target.class b/build/_compileJava_2/net/minecraft/world/level/pathfinder/Target.class new file mode 100644 index 000000000..a1b2344b1 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/pathfinder/Target.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/pathfinder/WalkNodeEvaluator.class b/build/_compileJava_2/net/minecraft/world/level/pathfinder/WalkNodeEvaluator.class new file mode 100644 index 000000000..9253fcfac Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/pathfinder/WalkNodeEvaluator.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/pathfinder/package-info.class b/build/_compileJava_2/net/minecraft/world/level/pathfinder/package-info.class new file mode 100644 index 000000000..3c1da0580 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/pathfinder/package-info.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/portal/PortalForcer.class b/build/_compileJava_2/net/minecraft/world/level/portal/PortalForcer.class new file mode 100644 index 000000000..94535b40c Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/portal/PortalForcer.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/portal/PortalInfo.class b/build/_compileJava_2/net/minecraft/world/level/portal/PortalInfo.class new file mode 100644 index 000000000..e4a24ba01 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/portal/PortalInfo.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/portal/PortalShape.class b/build/_compileJava_2/net/minecraft/world/level/portal/PortalShape.class new file mode 100644 index 000000000..d5ad51b58 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/portal/PortalShape.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/portal/package-info.class b/build/_compileJava_2/net/minecraft/world/level/portal/package-info.class new file mode 100644 index 000000000..69b6a2e91 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/portal/package-info.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/redstone/CollectingNeighborUpdater$FullNeighborUpdate.class b/build/_compileJava_2/net/minecraft/world/level/redstone/CollectingNeighborUpdater$FullNeighborUpdate.class new file mode 100644 index 000000000..627b79ded Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/redstone/CollectingNeighborUpdater$FullNeighborUpdate.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/redstone/CollectingNeighborUpdater$MultiNeighborUpdate.class b/build/_compileJava_2/net/minecraft/world/level/redstone/CollectingNeighborUpdater$MultiNeighborUpdate.class new file mode 100644 index 000000000..1a242a6f1 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/redstone/CollectingNeighborUpdater$MultiNeighborUpdate.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/redstone/CollectingNeighborUpdater$NeighborUpdates.class b/build/_compileJava_2/net/minecraft/world/level/redstone/CollectingNeighborUpdater$NeighborUpdates.class new file mode 100644 index 000000000..7200798f8 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/redstone/CollectingNeighborUpdater$NeighborUpdates.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/redstone/CollectingNeighborUpdater$ShapeUpdate.class b/build/_compileJava_2/net/minecraft/world/level/redstone/CollectingNeighborUpdater$ShapeUpdate.class new file mode 100644 index 000000000..dab19bea3 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/redstone/CollectingNeighborUpdater$ShapeUpdate.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/redstone/CollectingNeighborUpdater$SimpleNeighborUpdate.class b/build/_compileJava_2/net/minecraft/world/level/redstone/CollectingNeighborUpdater$SimpleNeighborUpdate.class new file mode 100644 index 000000000..c14e4e111 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/redstone/CollectingNeighborUpdater$SimpleNeighborUpdate.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/redstone/CollectingNeighborUpdater.class b/build/_compileJava_2/net/minecraft/world/level/redstone/CollectingNeighborUpdater.class new file mode 100644 index 000000000..ff1ee5f70 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/redstone/CollectingNeighborUpdater.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/redstone/InstantNeighborUpdater.class b/build/_compileJava_2/net/minecraft/world/level/redstone/InstantNeighborUpdater.class new file mode 100644 index 000000000..130096bab Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/redstone/InstantNeighborUpdater.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/redstone/NeighborUpdater.class b/build/_compileJava_2/net/minecraft/world/level/redstone/NeighborUpdater.class new file mode 100644 index 000000000..2d1eb9271 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/redstone/NeighborUpdater.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/redstone/Redstone.class b/build/_compileJava_2/net/minecraft/world/level/redstone/Redstone.class new file mode 100644 index 000000000..bf9339ce9 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/redstone/Redstone.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/redstone/package-info.class b/build/_compileJava_2/net/minecraft/world/level/redstone/package-info.class new file mode 100644 index 000000000..9264b7a2e Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/redstone/package-info.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/saveddata/SavedData.class b/build/_compileJava_2/net/minecraft/world/level/saveddata/SavedData.class new file mode 100644 index 000000000..f916f65d6 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/saveddata/SavedData.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/saveddata/maps/MapBanner$1.class b/build/_compileJava_2/net/minecraft/world/level/saveddata/maps/MapBanner$1.class new file mode 100644 index 000000000..21d81f31e Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/saveddata/maps/MapBanner$1.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/saveddata/maps/MapBanner.class b/build/_compileJava_2/net/minecraft/world/level/saveddata/maps/MapBanner.class new file mode 100644 index 000000000..cb4307907 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/saveddata/maps/MapBanner.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/saveddata/maps/MapDecoration$Type.class b/build/_compileJava_2/net/minecraft/world/level/saveddata/maps/MapDecoration$Type.class new file mode 100644 index 000000000..3f655f89c Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/saveddata/maps/MapDecoration$Type.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/saveddata/maps/MapDecoration.class b/build/_compileJava_2/net/minecraft/world/level/saveddata/maps/MapDecoration.class new file mode 100644 index 000000000..b4d7e8c1b Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/saveddata/maps/MapDecoration.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/saveddata/maps/MapFrame.class b/build/_compileJava_2/net/minecraft/world/level/saveddata/maps/MapFrame.class new file mode 100644 index 000000000..cf0f3b62d Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/saveddata/maps/MapFrame.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/saveddata/maps/MapIndex.class b/build/_compileJava_2/net/minecraft/world/level/saveddata/maps/MapIndex.class new file mode 100644 index 000000000..8c4d8e868 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/saveddata/maps/MapIndex.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/saveddata/maps/MapItemSavedData$HoldingPlayer.class b/build/_compileJava_2/net/minecraft/world/level/saveddata/maps/MapItemSavedData$HoldingPlayer.class new file mode 100644 index 000000000..d687d009a Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/saveddata/maps/MapItemSavedData$HoldingPlayer.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/saveddata/maps/MapItemSavedData$MapPatch.class b/build/_compileJava_2/net/minecraft/world/level/saveddata/maps/MapItemSavedData$MapPatch.class new file mode 100644 index 000000000..4c16098a2 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/saveddata/maps/MapItemSavedData$MapPatch.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/saveddata/maps/MapItemSavedData.class b/build/_compileJava_2/net/minecraft/world/level/saveddata/maps/MapItemSavedData.class new file mode 100644 index 000000000..6768937a4 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/saveddata/maps/MapItemSavedData.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/saveddata/maps/package-info.class b/build/_compileJava_2/net/minecraft/world/level/saveddata/maps/package-info.class new file mode 100644 index 000000000..441e8c5b8 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/saveddata/maps/package-info.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/saveddata/package-info.class b/build/_compileJava_2/net/minecraft/world/level/saveddata/package-info.class new file mode 100644 index 000000000..7276788b2 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/saveddata/package-info.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/storage/CommandStorage$Container.class b/build/_compileJava_2/net/minecraft/world/level/storage/CommandStorage$Container.class new file mode 100644 index 000000000..e2b1a942d Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/storage/CommandStorage$Container.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/storage/CommandStorage.class b/build/_compileJava_2/net/minecraft/world/level/storage/CommandStorage.class new file mode 100644 index 000000000..22da691e4 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/storage/CommandStorage.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/storage/DataVersion.class b/build/_compileJava_2/net/minecraft/world/level/storage/DataVersion.class new file mode 100644 index 000000000..ca91a2afe Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/storage/DataVersion.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/storage/DerivedLevelData.class b/build/_compileJava_2/net/minecraft/world/level/storage/DerivedLevelData.class new file mode 100644 index 000000000..5a2005cbe Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/storage/DerivedLevelData.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/storage/DimensionDataStorage.class b/build/_compileJava_2/net/minecraft/world/level/storage/DimensionDataStorage.class new file mode 100644 index 000000000..93e6430f4 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/storage/DimensionDataStorage.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/storage/LevelData.class b/build/_compileJava_2/net/minecraft/world/level/storage/LevelData.class new file mode 100644 index 000000000..6588f9e81 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/storage/LevelData.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/storage/LevelResource.class b/build/_compileJava_2/net/minecraft/world/level/storage/LevelResource.class new file mode 100644 index 000000000..9426a9191 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/storage/LevelResource.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/storage/LevelStorageException.class b/build/_compileJava_2/net/minecraft/world/level/storage/LevelStorageException.class new file mode 100644 index 000000000..81b7ca349 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/storage/LevelStorageException.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/storage/LevelStorageSource$LevelCandidates.class b/build/_compileJava_2/net/minecraft/world/level/storage/LevelStorageSource$LevelCandidates.class new file mode 100644 index 000000000..cd1223d1c Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/storage/LevelStorageSource$LevelCandidates.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/storage/LevelStorageSource$LevelDirectory.class b/build/_compileJava_2/net/minecraft/world/level/storage/LevelStorageSource$LevelDirectory.class new file mode 100644 index 000000000..6982bc3c7 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/storage/LevelStorageSource$LevelDirectory.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/storage/LevelStorageSource$LevelStorageAccess$1.class b/build/_compileJava_2/net/minecraft/world/level/storage/LevelStorageSource$LevelStorageAccess$1.class new file mode 100644 index 000000000..e4d614bb3 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/storage/LevelStorageSource$LevelStorageAccess$1.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/storage/LevelStorageSource$LevelStorageAccess$2.class b/build/_compileJava_2/net/minecraft/world/level/storage/LevelStorageSource$LevelStorageAccess$2.class new file mode 100644 index 000000000..3f8b08957 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/storage/LevelStorageSource$LevelStorageAccess$2.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/storage/LevelStorageSource$LevelStorageAccess.class b/build/_compileJava_2/net/minecraft/world/level/storage/LevelStorageSource$LevelStorageAccess.class new file mode 100644 index 000000000..03518f435 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/storage/LevelStorageSource$LevelStorageAccess.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/storage/LevelStorageSource.class b/build/_compileJava_2/net/minecraft/world/level/storage/LevelStorageSource.class new file mode 100644 index 000000000..00a5efbfb Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/storage/LevelStorageSource.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/storage/LevelSummary$BackupStatus.class b/build/_compileJava_2/net/minecraft/world/level/storage/LevelSummary$BackupStatus.class new file mode 100644 index 000000000..4a3f03c46 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/storage/LevelSummary$BackupStatus.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/storage/LevelSummary$SymlinkLevelSummary.class b/build/_compileJava_2/net/minecraft/world/level/storage/LevelSummary$SymlinkLevelSummary.class new file mode 100644 index 000000000..8bdc8b59d Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/storage/LevelSummary$SymlinkLevelSummary.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/storage/LevelSummary.class b/build/_compileJava_2/net/minecraft/world/level/storage/LevelSummary.class new file mode 100644 index 000000000..7e37e82fc Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/storage/LevelSummary.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/storage/LevelVersion.class b/build/_compileJava_2/net/minecraft/world/level/storage/LevelVersion.class new file mode 100644 index 000000000..42070fd97 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/storage/LevelVersion.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/storage/PlayerDataStorage.class b/build/_compileJava_2/net/minecraft/world/level/storage/PlayerDataStorage.class new file mode 100644 index 000000000..953dc8ceb Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/storage/PlayerDataStorage.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/storage/PrimaryLevelData$SpecialWorldProperty.class b/build/_compileJava_2/net/minecraft/world/level/storage/PrimaryLevelData$SpecialWorldProperty.class new file mode 100644 index 000000000..569f29e9b Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/storage/PrimaryLevelData$SpecialWorldProperty.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/storage/PrimaryLevelData.class b/build/_compileJava_2/net/minecraft/world/level/storage/PrimaryLevelData.class new file mode 100644 index 000000000..912436343 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/storage/PrimaryLevelData.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/storage/ServerLevelData.class b/build/_compileJava_2/net/minecraft/world/level/storage/ServerLevelData.class new file mode 100644 index 000000000..d6c9e8e7e Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/storage/ServerLevelData.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/storage/WorldData.class b/build/_compileJava_2/net/minecraft/world/level/storage/WorldData.class new file mode 100644 index 000000000..a153bccb3 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/storage/WorldData.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/storage/WritableLevelData.class b/build/_compileJava_2/net/minecraft/world/level/storage/WritableLevelData.class new file mode 100644 index 000000000..c6af17570 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/storage/WritableLevelData.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/storage/loot/BuiltInLootTables.class b/build/_compileJava_2/net/minecraft/world/level/storage/loot/BuiltInLootTables.class new file mode 100644 index 000000000..77b34f048 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/storage/loot/BuiltInLootTables.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/storage/loot/Deserializers.class b/build/_compileJava_2/net/minecraft/world/level/storage/loot/Deserializers.class new file mode 100644 index 000000000..a4d14d636 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/storage/loot/Deserializers.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/storage/loot/GsonAdapterFactory$Builder.class b/build/_compileJava_2/net/minecraft/world/level/storage/loot/GsonAdapterFactory$Builder.class new file mode 100644 index 000000000..9fa08fd8b Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/storage/loot/GsonAdapterFactory$Builder.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/storage/loot/GsonAdapterFactory$InlineSerializer.class b/build/_compileJava_2/net/minecraft/world/level/storage/loot/GsonAdapterFactory$InlineSerializer.class new file mode 100644 index 000000000..950a50fdb Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/storage/loot/GsonAdapterFactory$InlineSerializer.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/storage/loot/GsonAdapterFactory$JsonAdapter.class b/build/_compileJava_2/net/minecraft/world/level/storage/loot/GsonAdapterFactory$JsonAdapter.class new file mode 100644 index 000000000..ebeda83d3 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/storage/loot/GsonAdapterFactory$JsonAdapter.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/storage/loot/GsonAdapterFactory.class b/build/_compileJava_2/net/minecraft/world/level/storage/loot/GsonAdapterFactory.class new file mode 100644 index 000000000..fe6c66f98 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/storage/loot/GsonAdapterFactory.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/storage/loot/IntRange$IntChecker.class b/build/_compileJava_2/net/minecraft/world/level/storage/loot/IntRange$IntChecker.class new file mode 100644 index 000000000..d45b39ec4 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/storage/loot/IntRange$IntChecker.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/storage/loot/IntRange$IntLimiter.class b/build/_compileJava_2/net/minecraft/world/level/storage/loot/IntRange$IntLimiter.class new file mode 100644 index 000000000..de4aa5fe3 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/storage/loot/IntRange$IntLimiter.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/storage/loot/IntRange$Serializer.class b/build/_compileJava_2/net/minecraft/world/level/storage/loot/IntRange$Serializer.class new file mode 100644 index 000000000..e39ed0bed Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/storage/loot/IntRange$Serializer.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/storage/loot/IntRange.class b/build/_compileJava_2/net/minecraft/world/level/storage/loot/IntRange.class new file mode 100644 index 000000000..68936554e Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/storage/loot/IntRange.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/storage/loot/LootContext$Builder.class b/build/_compileJava_2/net/minecraft/world/level/storage/loot/LootContext$Builder.class new file mode 100644 index 000000000..dc84563d6 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/storage/loot/LootContext$Builder.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/storage/loot/LootContext$EntityTarget$Serializer.class b/build/_compileJava_2/net/minecraft/world/level/storage/loot/LootContext$EntityTarget$Serializer.class new file mode 100644 index 000000000..09602b251 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/storage/loot/LootContext$EntityTarget$Serializer.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/storage/loot/LootContext$EntityTarget.class b/build/_compileJava_2/net/minecraft/world/level/storage/loot/LootContext$EntityTarget.class new file mode 100644 index 000000000..b7f5efba2 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/storage/loot/LootContext$EntityTarget.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/storage/loot/LootContext$VisitedEntry.class b/build/_compileJava_2/net/minecraft/world/level/storage/loot/LootContext$VisitedEntry.class new file mode 100644 index 000000000..b9bdee894 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/storage/loot/LootContext$VisitedEntry.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/storage/loot/LootContext.class b/build/_compileJava_2/net/minecraft/world/level/storage/loot/LootContext.class new file mode 100644 index 000000000..766ffd51a Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/storage/loot/LootContext.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/storage/loot/LootContextUser.class b/build/_compileJava_2/net/minecraft/world/level/storage/loot/LootContextUser.class new file mode 100644 index 000000000..bf0f17bd7 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/storage/loot/LootContextUser.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/storage/loot/LootDataId.class b/build/_compileJava_2/net/minecraft/world/level/storage/loot/LootDataId.class new file mode 100644 index 000000000..af8d5100e Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/storage/loot/LootDataId.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/storage/loot/LootDataManager$1.class b/build/_compileJava_2/net/minecraft/world/level/storage/loot/LootDataManager$1.class new file mode 100644 index 000000000..41a654144 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/storage/loot/LootDataManager$1.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/storage/loot/LootDataManager$CompositePredicate.class b/build/_compileJava_2/net/minecraft/world/level/storage/loot/LootDataManager$CompositePredicate.class new file mode 100644 index 000000000..43356ec85 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/storage/loot/LootDataManager$CompositePredicate.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/storage/loot/LootDataManager$FunctionSequence.class b/build/_compileJava_2/net/minecraft/world/level/storage/loot/LootDataManager$FunctionSequence.class new file mode 100644 index 000000000..e5fa9ebf6 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/storage/loot/LootDataManager$FunctionSequence.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/storage/loot/LootDataManager.class b/build/_compileJava_2/net/minecraft/world/level/storage/loot/LootDataManager.class new file mode 100644 index 000000000..606747263 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/storage/loot/LootDataManager.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/storage/loot/LootDataResolver.class b/build/_compileJava_2/net/minecraft/world/level/storage/loot/LootDataResolver.class new file mode 100644 index 000000000..822e10d6f Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/storage/loot/LootDataResolver.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/storage/loot/LootDataType$Validator.class b/build/_compileJava_2/net/minecraft/world/level/storage/loot/LootDataType$Validator.class new file mode 100644 index 000000000..cb85d720c Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/storage/loot/LootDataType$Validator.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/storage/loot/LootDataType.class b/build/_compileJava_2/net/minecraft/world/level/storage/loot/LootDataType.class new file mode 100644 index 000000000..8686e5f79 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/storage/loot/LootDataType.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/storage/loot/LootParams$Builder.class b/build/_compileJava_2/net/minecraft/world/level/storage/loot/LootParams$Builder.class new file mode 100644 index 000000000..342152e41 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/storage/loot/LootParams$Builder.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/storage/loot/LootParams$DynamicDrop.class b/build/_compileJava_2/net/minecraft/world/level/storage/loot/LootParams$DynamicDrop.class new file mode 100644 index 000000000..ad9ba5e70 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/storage/loot/LootParams$DynamicDrop.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/storage/loot/LootParams.class b/build/_compileJava_2/net/minecraft/world/level/storage/loot/LootParams.class new file mode 100644 index 000000000..7a9299c2c Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/storage/loot/LootParams.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/storage/loot/LootPool$Builder.class b/build/_compileJava_2/net/minecraft/world/level/storage/loot/LootPool$Builder.class new file mode 100644 index 000000000..47fb18dd7 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/storage/loot/LootPool$Builder.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/storage/loot/LootPool$Serializer.class b/build/_compileJava_2/net/minecraft/world/level/storage/loot/LootPool$Serializer.class new file mode 100644 index 000000000..58975e387 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/storage/loot/LootPool$Serializer.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/storage/loot/LootPool.class b/build/_compileJava_2/net/minecraft/world/level/storage/loot/LootPool.class new file mode 100644 index 000000000..728bbf4fa Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/storage/loot/LootPool.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/storage/loot/LootTable$Builder.class b/build/_compileJava_2/net/minecraft/world/level/storage/loot/LootTable$Builder.class new file mode 100644 index 000000000..74a045a34 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/storage/loot/LootTable$Builder.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/storage/loot/LootTable$Serializer.class b/build/_compileJava_2/net/minecraft/world/level/storage/loot/LootTable$Serializer.class new file mode 100644 index 000000000..a4c594e5d Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/storage/loot/LootTable$Serializer.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/storage/loot/LootTable.class b/build/_compileJava_2/net/minecraft/world/level/storage/loot/LootTable.class new file mode 100644 index 000000000..abe31208c Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/storage/loot/LootTable.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/storage/loot/Serializer.class b/build/_compileJava_2/net/minecraft/world/level/storage/loot/Serializer.class new file mode 100644 index 000000000..6ad171983 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/storage/loot/Serializer.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/storage/loot/SerializerType.class b/build/_compileJava_2/net/minecraft/world/level/storage/loot/SerializerType.class new file mode 100644 index 000000000..277f4c6a5 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/storage/loot/SerializerType.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/storage/loot/ValidationContext.class b/build/_compileJava_2/net/minecraft/world/level/storage/loot/ValidationContext.class new file mode 100644 index 000000000..b296ba1a9 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/storage/loot/ValidationContext.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/storage/loot/entries/AlternativesEntry$Builder.class b/build/_compileJava_2/net/minecraft/world/level/storage/loot/entries/AlternativesEntry$Builder.class new file mode 100644 index 000000000..fb2703d70 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/storage/loot/entries/AlternativesEntry$Builder.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/storage/loot/entries/AlternativesEntry.class b/build/_compileJava_2/net/minecraft/world/level/storage/loot/entries/AlternativesEntry.class new file mode 100644 index 000000000..e550e5913 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/storage/loot/entries/AlternativesEntry.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/storage/loot/entries/ComposableEntryContainer.class b/build/_compileJava_2/net/minecraft/world/level/storage/loot/entries/ComposableEntryContainer.class new file mode 100644 index 000000000..d77150189 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/storage/loot/entries/ComposableEntryContainer.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/storage/loot/entries/CompositeEntryBase$1.class b/build/_compileJava_2/net/minecraft/world/level/storage/loot/entries/CompositeEntryBase$1.class new file mode 100644 index 000000000..ce27a0ca4 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/storage/loot/entries/CompositeEntryBase$1.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/storage/loot/entries/CompositeEntryBase$CompositeEntryConstructor.class b/build/_compileJava_2/net/minecraft/world/level/storage/loot/entries/CompositeEntryBase$CompositeEntryConstructor.class new file mode 100644 index 000000000..a9682e30d Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/storage/loot/entries/CompositeEntryBase$CompositeEntryConstructor.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/storage/loot/entries/CompositeEntryBase.class b/build/_compileJava_2/net/minecraft/world/level/storage/loot/entries/CompositeEntryBase.class new file mode 100644 index 000000000..800f7fa9c Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/storage/loot/entries/CompositeEntryBase.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/storage/loot/entries/DynamicLoot$Serializer.class b/build/_compileJava_2/net/minecraft/world/level/storage/loot/entries/DynamicLoot$Serializer.class new file mode 100644 index 000000000..5029d421e Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/storage/loot/entries/DynamicLoot$Serializer.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/storage/loot/entries/DynamicLoot.class b/build/_compileJava_2/net/minecraft/world/level/storage/loot/entries/DynamicLoot.class new file mode 100644 index 000000000..0f432960b Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/storage/loot/entries/DynamicLoot.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/storage/loot/entries/EmptyLootItem$Serializer.class b/build/_compileJava_2/net/minecraft/world/level/storage/loot/entries/EmptyLootItem$Serializer.class new file mode 100644 index 000000000..b6ccf5ceb Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/storage/loot/entries/EmptyLootItem$Serializer.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/storage/loot/entries/EmptyLootItem.class b/build/_compileJava_2/net/minecraft/world/level/storage/loot/entries/EmptyLootItem.class new file mode 100644 index 000000000..13c6f37e9 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/storage/loot/entries/EmptyLootItem.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/storage/loot/entries/EntryGroup$Builder.class b/build/_compileJava_2/net/minecraft/world/level/storage/loot/entries/EntryGroup$Builder.class new file mode 100644 index 000000000..6c844c31c Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/storage/loot/entries/EntryGroup$Builder.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/storage/loot/entries/EntryGroup.class b/build/_compileJava_2/net/minecraft/world/level/storage/loot/entries/EntryGroup.class new file mode 100644 index 000000000..04b55303b Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/storage/loot/entries/EntryGroup.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/storage/loot/entries/LootItem$Serializer.class b/build/_compileJava_2/net/minecraft/world/level/storage/loot/entries/LootItem$Serializer.class new file mode 100644 index 000000000..8455e7934 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/storage/loot/entries/LootItem$Serializer.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/storage/loot/entries/LootItem.class b/build/_compileJava_2/net/minecraft/world/level/storage/loot/entries/LootItem.class new file mode 100644 index 000000000..db0ff2929 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/storage/loot/entries/LootItem.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/storage/loot/entries/LootPoolEntries.class b/build/_compileJava_2/net/minecraft/world/level/storage/loot/entries/LootPoolEntries.class new file mode 100644 index 000000000..2515a0131 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/storage/loot/entries/LootPoolEntries.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/storage/loot/entries/LootPoolEntry.class b/build/_compileJava_2/net/minecraft/world/level/storage/loot/entries/LootPoolEntry.class new file mode 100644 index 000000000..c190525dc Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/storage/loot/entries/LootPoolEntry.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/storage/loot/entries/LootPoolEntryContainer$Builder.class b/build/_compileJava_2/net/minecraft/world/level/storage/loot/entries/LootPoolEntryContainer$Builder.class new file mode 100644 index 000000000..5ae23f986 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/storage/loot/entries/LootPoolEntryContainer$Builder.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/storage/loot/entries/LootPoolEntryContainer$Serializer.class b/build/_compileJava_2/net/minecraft/world/level/storage/loot/entries/LootPoolEntryContainer$Serializer.class new file mode 100644 index 000000000..8446810bd Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/storage/loot/entries/LootPoolEntryContainer$Serializer.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/storage/loot/entries/LootPoolEntryContainer.class b/build/_compileJava_2/net/minecraft/world/level/storage/loot/entries/LootPoolEntryContainer.class new file mode 100644 index 000000000..5e274afb1 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/storage/loot/entries/LootPoolEntryContainer.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/storage/loot/entries/LootPoolEntryType.class b/build/_compileJava_2/net/minecraft/world/level/storage/loot/entries/LootPoolEntryType.class new file mode 100644 index 000000000..5934cd24d Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/storage/loot/entries/LootPoolEntryType.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/storage/loot/entries/LootPoolSingletonContainer$1.class b/build/_compileJava_2/net/minecraft/world/level/storage/loot/entries/LootPoolSingletonContainer$1.class new file mode 100644 index 000000000..97e8d32e4 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/storage/loot/entries/LootPoolSingletonContainer$1.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/storage/loot/entries/LootPoolSingletonContainer$Builder.class b/build/_compileJava_2/net/minecraft/world/level/storage/loot/entries/LootPoolSingletonContainer$Builder.class new file mode 100644 index 000000000..562f9622a Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/storage/loot/entries/LootPoolSingletonContainer$Builder.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/storage/loot/entries/LootPoolSingletonContainer$DummyBuilder.class b/build/_compileJava_2/net/minecraft/world/level/storage/loot/entries/LootPoolSingletonContainer$DummyBuilder.class new file mode 100644 index 000000000..7fcaa5946 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/storage/loot/entries/LootPoolSingletonContainer$DummyBuilder.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/storage/loot/entries/LootPoolSingletonContainer$EntryBase.class b/build/_compileJava_2/net/minecraft/world/level/storage/loot/entries/LootPoolSingletonContainer$EntryBase.class new file mode 100644 index 000000000..b6ad88227 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/storage/loot/entries/LootPoolSingletonContainer$EntryBase.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/storage/loot/entries/LootPoolSingletonContainer$EntryConstructor.class b/build/_compileJava_2/net/minecraft/world/level/storage/loot/entries/LootPoolSingletonContainer$EntryConstructor.class new file mode 100644 index 000000000..683738a81 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/storage/loot/entries/LootPoolSingletonContainer$EntryConstructor.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/storage/loot/entries/LootPoolSingletonContainer$Serializer.class b/build/_compileJava_2/net/minecraft/world/level/storage/loot/entries/LootPoolSingletonContainer$Serializer.class new file mode 100644 index 000000000..2d686b6bf Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/storage/loot/entries/LootPoolSingletonContainer$Serializer.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/storage/loot/entries/LootPoolSingletonContainer.class b/build/_compileJava_2/net/minecraft/world/level/storage/loot/entries/LootPoolSingletonContainer.class new file mode 100644 index 000000000..43983823e Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/storage/loot/entries/LootPoolSingletonContainer.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/storage/loot/entries/LootTableReference$Serializer.class b/build/_compileJava_2/net/minecraft/world/level/storage/loot/entries/LootTableReference$Serializer.class new file mode 100644 index 000000000..19afc0231 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/storage/loot/entries/LootTableReference$Serializer.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/storage/loot/entries/LootTableReference.class b/build/_compileJava_2/net/minecraft/world/level/storage/loot/entries/LootTableReference.class new file mode 100644 index 000000000..ddb002aec Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/storage/loot/entries/LootTableReference.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/storage/loot/entries/SequentialEntry$Builder.class b/build/_compileJava_2/net/minecraft/world/level/storage/loot/entries/SequentialEntry$Builder.class new file mode 100644 index 000000000..73085548d Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/storage/loot/entries/SequentialEntry$Builder.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/storage/loot/entries/SequentialEntry.class b/build/_compileJava_2/net/minecraft/world/level/storage/loot/entries/SequentialEntry.class new file mode 100644 index 000000000..425ba4ff9 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/storage/loot/entries/SequentialEntry.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/storage/loot/entries/TagEntry$1.class b/build/_compileJava_2/net/minecraft/world/level/storage/loot/entries/TagEntry$1.class new file mode 100644 index 000000000..a52721098 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/storage/loot/entries/TagEntry$1.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/storage/loot/entries/TagEntry$Serializer.class b/build/_compileJava_2/net/minecraft/world/level/storage/loot/entries/TagEntry$Serializer.class new file mode 100644 index 000000000..a5fcfd465 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/storage/loot/entries/TagEntry$Serializer.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/storage/loot/entries/TagEntry.class b/build/_compileJava_2/net/minecraft/world/level/storage/loot/entries/TagEntry.class new file mode 100644 index 000000000..6b37496d6 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/storage/loot/entries/TagEntry.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/storage/loot/entries/package-info.class b/build/_compileJava_2/net/minecraft/world/level/storage/loot/entries/package-info.class new file mode 100644 index 000000000..344de0b0f Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/storage/loot/entries/package-info.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/storage/loot/functions/ApplyBonusCount$BinomialWithBonusCount.class b/build/_compileJava_2/net/minecraft/world/level/storage/loot/functions/ApplyBonusCount$BinomialWithBonusCount.class new file mode 100644 index 000000000..4cb9a4d93 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/storage/loot/functions/ApplyBonusCount$BinomialWithBonusCount.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/storage/loot/functions/ApplyBonusCount$Formula.class b/build/_compileJava_2/net/minecraft/world/level/storage/loot/functions/ApplyBonusCount$Formula.class new file mode 100644 index 000000000..88bece97f Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/storage/loot/functions/ApplyBonusCount$Formula.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/storage/loot/functions/ApplyBonusCount$FormulaDeserializer.class b/build/_compileJava_2/net/minecraft/world/level/storage/loot/functions/ApplyBonusCount$FormulaDeserializer.class new file mode 100644 index 000000000..39e7785b2 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/storage/loot/functions/ApplyBonusCount$FormulaDeserializer.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/storage/loot/functions/ApplyBonusCount$OreDrops.class b/build/_compileJava_2/net/minecraft/world/level/storage/loot/functions/ApplyBonusCount$OreDrops.class new file mode 100644 index 000000000..b5fe4e2d5 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/storage/loot/functions/ApplyBonusCount$OreDrops.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/storage/loot/functions/ApplyBonusCount$Serializer.class b/build/_compileJava_2/net/minecraft/world/level/storage/loot/functions/ApplyBonusCount$Serializer.class new file mode 100644 index 000000000..cc3dc58a0 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/storage/loot/functions/ApplyBonusCount$Serializer.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/storage/loot/functions/ApplyBonusCount$UniformBonusCount.class b/build/_compileJava_2/net/minecraft/world/level/storage/loot/functions/ApplyBonusCount$UniformBonusCount.class new file mode 100644 index 000000000..88680a87a Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/storage/loot/functions/ApplyBonusCount$UniformBonusCount.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/storage/loot/functions/ApplyBonusCount.class b/build/_compileJava_2/net/minecraft/world/level/storage/loot/functions/ApplyBonusCount.class new file mode 100644 index 000000000..ac70ac1b0 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/storage/loot/functions/ApplyBonusCount.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/storage/loot/functions/ApplyExplosionDecay$Serializer.class b/build/_compileJava_2/net/minecraft/world/level/storage/loot/functions/ApplyExplosionDecay$Serializer.class new file mode 100644 index 000000000..6cfe3a222 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/storage/loot/functions/ApplyExplosionDecay$Serializer.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/storage/loot/functions/ApplyExplosionDecay.class b/build/_compileJava_2/net/minecraft/world/level/storage/loot/functions/ApplyExplosionDecay.class new file mode 100644 index 000000000..660c97699 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/storage/loot/functions/ApplyExplosionDecay.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/storage/loot/functions/CopyBlockState$Builder.class b/build/_compileJava_2/net/minecraft/world/level/storage/loot/functions/CopyBlockState$Builder.class new file mode 100644 index 000000000..956235038 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/storage/loot/functions/CopyBlockState$Builder.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/storage/loot/functions/CopyBlockState$Serializer.class b/build/_compileJava_2/net/minecraft/world/level/storage/loot/functions/CopyBlockState$Serializer.class new file mode 100644 index 000000000..1c96488dd Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/storage/loot/functions/CopyBlockState$Serializer.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/storage/loot/functions/CopyBlockState.class b/build/_compileJava_2/net/minecraft/world/level/storage/loot/functions/CopyBlockState.class new file mode 100644 index 000000000..58b96653d Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/storage/loot/functions/CopyBlockState.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/storage/loot/functions/CopyNameFunction$NameSource.class b/build/_compileJava_2/net/minecraft/world/level/storage/loot/functions/CopyNameFunction$NameSource.class new file mode 100644 index 000000000..5ddbecfcd Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/storage/loot/functions/CopyNameFunction$NameSource.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/storage/loot/functions/CopyNameFunction$Serializer.class b/build/_compileJava_2/net/minecraft/world/level/storage/loot/functions/CopyNameFunction$Serializer.class new file mode 100644 index 000000000..94e431b4b Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/storage/loot/functions/CopyNameFunction$Serializer.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/storage/loot/functions/CopyNameFunction.class b/build/_compileJava_2/net/minecraft/world/level/storage/loot/functions/CopyNameFunction.class new file mode 100644 index 000000000..f041f565b Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/storage/loot/functions/CopyNameFunction.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/storage/loot/functions/CopyNbtFunction$Builder.class b/build/_compileJava_2/net/minecraft/world/level/storage/loot/functions/CopyNbtFunction$Builder.class new file mode 100644 index 000000000..b954a78de Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/storage/loot/functions/CopyNbtFunction$Builder.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/storage/loot/functions/CopyNbtFunction$CopyOperation.class b/build/_compileJava_2/net/minecraft/world/level/storage/loot/functions/CopyNbtFunction$CopyOperation.class new file mode 100644 index 000000000..c32c7def1 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/storage/loot/functions/CopyNbtFunction$CopyOperation.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/storage/loot/functions/CopyNbtFunction$MergeStrategy$1.class b/build/_compileJava_2/net/minecraft/world/level/storage/loot/functions/CopyNbtFunction$MergeStrategy$1.class new file mode 100644 index 000000000..9ac3a9586 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/storage/loot/functions/CopyNbtFunction$MergeStrategy$1.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/storage/loot/functions/CopyNbtFunction$MergeStrategy$2.class b/build/_compileJava_2/net/minecraft/world/level/storage/loot/functions/CopyNbtFunction$MergeStrategy$2.class new file mode 100644 index 000000000..55a138696 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/storage/loot/functions/CopyNbtFunction$MergeStrategy$2.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/storage/loot/functions/CopyNbtFunction$MergeStrategy$3.class b/build/_compileJava_2/net/minecraft/world/level/storage/loot/functions/CopyNbtFunction$MergeStrategy$3.class new file mode 100644 index 000000000..885655f57 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/storage/loot/functions/CopyNbtFunction$MergeStrategy$3.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/storage/loot/functions/CopyNbtFunction$MergeStrategy.class b/build/_compileJava_2/net/minecraft/world/level/storage/loot/functions/CopyNbtFunction$MergeStrategy.class new file mode 100644 index 000000000..512040b9a Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/storage/loot/functions/CopyNbtFunction$MergeStrategy.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/storage/loot/functions/CopyNbtFunction$Serializer.class b/build/_compileJava_2/net/minecraft/world/level/storage/loot/functions/CopyNbtFunction$Serializer.class new file mode 100644 index 000000000..668048744 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/storage/loot/functions/CopyNbtFunction$Serializer.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/storage/loot/functions/CopyNbtFunction.class b/build/_compileJava_2/net/minecraft/world/level/storage/loot/functions/CopyNbtFunction.class new file mode 100644 index 000000000..7761919e4 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/storage/loot/functions/CopyNbtFunction.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/storage/loot/functions/EnchantRandomlyFunction$Builder.class b/build/_compileJava_2/net/minecraft/world/level/storage/loot/functions/EnchantRandomlyFunction$Builder.class new file mode 100644 index 000000000..477557a32 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/storage/loot/functions/EnchantRandomlyFunction$Builder.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/storage/loot/functions/EnchantRandomlyFunction$Serializer.class b/build/_compileJava_2/net/minecraft/world/level/storage/loot/functions/EnchantRandomlyFunction$Serializer.class new file mode 100644 index 000000000..a7dfdc951 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/storage/loot/functions/EnchantRandomlyFunction$Serializer.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/storage/loot/functions/EnchantRandomlyFunction.class b/build/_compileJava_2/net/minecraft/world/level/storage/loot/functions/EnchantRandomlyFunction.class new file mode 100644 index 000000000..73399c08d Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/storage/loot/functions/EnchantRandomlyFunction.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/storage/loot/functions/EnchantWithLevelsFunction$Builder.class b/build/_compileJava_2/net/minecraft/world/level/storage/loot/functions/EnchantWithLevelsFunction$Builder.class new file mode 100644 index 000000000..0c088978c Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/storage/loot/functions/EnchantWithLevelsFunction$Builder.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/storage/loot/functions/EnchantWithLevelsFunction$Serializer.class b/build/_compileJava_2/net/minecraft/world/level/storage/loot/functions/EnchantWithLevelsFunction$Serializer.class new file mode 100644 index 000000000..1a1d54471 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/storage/loot/functions/EnchantWithLevelsFunction$Serializer.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/storage/loot/functions/EnchantWithLevelsFunction.class b/build/_compileJava_2/net/minecraft/world/level/storage/loot/functions/EnchantWithLevelsFunction.class new file mode 100644 index 000000000..0b2cd60c6 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/storage/loot/functions/EnchantWithLevelsFunction.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/storage/loot/functions/ExplorationMapFunction$Builder.class b/build/_compileJava_2/net/minecraft/world/level/storage/loot/functions/ExplorationMapFunction$Builder.class new file mode 100644 index 000000000..b1c8abc56 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/storage/loot/functions/ExplorationMapFunction$Builder.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/storage/loot/functions/ExplorationMapFunction$Serializer.class b/build/_compileJava_2/net/minecraft/world/level/storage/loot/functions/ExplorationMapFunction$Serializer.class new file mode 100644 index 000000000..fe843c763 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/storage/loot/functions/ExplorationMapFunction$Serializer.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/storage/loot/functions/ExplorationMapFunction.class b/build/_compileJava_2/net/minecraft/world/level/storage/loot/functions/ExplorationMapFunction.class new file mode 100644 index 000000000..c1d2bceb3 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/storage/loot/functions/ExplorationMapFunction.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/storage/loot/functions/FillPlayerHead$Serializer.class b/build/_compileJava_2/net/minecraft/world/level/storage/loot/functions/FillPlayerHead$Serializer.class new file mode 100644 index 000000000..f54ce2822 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/storage/loot/functions/FillPlayerHead$Serializer.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/storage/loot/functions/FillPlayerHead.class b/build/_compileJava_2/net/minecraft/world/level/storage/loot/functions/FillPlayerHead.class new file mode 100644 index 000000000..8538f5966 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/storage/loot/functions/FillPlayerHead.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/storage/loot/functions/FunctionReference$Serializer.class b/build/_compileJava_2/net/minecraft/world/level/storage/loot/functions/FunctionReference$Serializer.class new file mode 100644 index 000000000..450065ed7 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/storage/loot/functions/FunctionReference$Serializer.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/storage/loot/functions/FunctionReference.class b/build/_compileJava_2/net/minecraft/world/level/storage/loot/functions/FunctionReference.class new file mode 100644 index 000000000..120901b9b Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/storage/loot/functions/FunctionReference.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/storage/loot/functions/FunctionUserBuilder.class b/build/_compileJava_2/net/minecraft/world/level/storage/loot/functions/FunctionUserBuilder.class new file mode 100644 index 000000000..762e03d86 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/storage/loot/functions/FunctionUserBuilder.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/storage/loot/functions/LimitCount$Serializer.class b/build/_compileJava_2/net/minecraft/world/level/storage/loot/functions/LimitCount$Serializer.class new file mode 100644 index 000000000..4e44f8b4e Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/storage/loot/functions/LimitCount$Serializer.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/storage/loot/functions/LimitCount.class b/build/_compileJava_2/net/minecraft/world/level/storage/loot/functions/LimitCount.class new file mode 100644 index 000000000..48f39443f Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/storage/loot/functions/LimitCount.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/storage/loot/functions/LootItemConditionalFunction$Builder.class b/build/_compileJava_2/net/minecraft/world/level/storage/loot/functions/LootItemConditionalFunction$Builder.class new file mode 100644 index 000000000..7cfae3dd1 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/storage/loot/functions/LootItemConditionalFunction$Builder.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/storage/loot/functions/LootItemConditionalFunction$DummyBuilder.class b/build/_compileJava_2/net/minecraft/world/level/storage/loot/functions/LootItemConditionalFunction$DummyBuilder.class new file mode 100644 index 000000000..55f9ef833 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/storage/loot/functions/LootItemConditionalFunction$DummyBuilder.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/storage/loot/functions/LootItemConditionalFunction$Serializer.class b/build/_compileJava_2/net/minecraft/world/level/storage/loot/functions/LootItemConditionalFunction$Serializer.class new file mode 100644 index 000000000..a6daee48d Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/storage/loot/functions/LootItemConditionalFunction$Serializer.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/storage/loot/functions/LootItemConditionalFunction.class b/build/_compileJava_2/net/minecraft/world/level/storage/loot/functions/LootItemConditionalFunction.class new file mode 100644 index 000000000..8197e135f Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/storage/loot/functions/LootItemConditionalFunction.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/storage/loot/functions/LootItemFunction$Builder.class b/build/_compileJava_2/net/minecraft/world/level/storage/loot/functions/LootItemFunction$Builder.class new file mode 100644 index 000000000..37fc0888b Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/storage/loot/functions/LootItemFunction$Builder.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/storage/loot/functions/LootItemFunction.class b/build/_compileJava_2/net/minecraft/world/level/storage/loot/functions/LootItemFunction.class new file mode 100644 index 000000000..0e32dcab8 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/storage/loot/functions/LootItemFunction.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/storage/loot/functions/LootItemFunctionType.class b/build/_compileJava_2/net/minecraft/world/level/storage/loot/functions/LootItemFunctionType.class new file mode 100644 index 000000000..bfa88a7ab Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/storage/loot/functions/LootItemFunctionType.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/storage/loot/functions/LootItemFunctions.class b/build/_compileJava_2/net/minecraft/world/level/storage/loot/functions/LootItemFunctions.class new file mode 100644 index 000000000..77fa5e705 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/storage/loot/functions/LootItemFunctions.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/storage/loot/functions/LootingEnchantFunction$Builder.class b/build/_compileJava_2/net/minecraft/world/level/storage/loot/functions/LootingEnchantFunction$Builder.class new file mode 100644 index 000000000..a9469d18f Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/storage/loot/functions/LootingEnchantFunction$Builder.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/storage/loot/functions/LootingEnchantFunction$Serializer.class b/build/_compileJava_2/net/minecraft/world/level/storage/loot/functions/LootingEnchantFunction$Serializer.class new file mode 100644 index 000000000..17367b7e1 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/storage/loot/functions/LootingEnchantFunction$Serializer.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/storage/loot/functions/LootingEnchantFunction.class b/build/_compileJava_2/net/minecraft/world/level/storage/loot/functions/LootingEnchantFunction.class new file mode 100644 index 000000000..229454a58 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/storage/loot/functions/LootingEnchantFunction.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/storage/loot/functions/SetAttributesFunction$1.class b/build/_compileJava_2/net/minecraft/world/level/storage/loot/functions/SetAttributesFunction$1.class new file mode 100644 index 000000000..741ed3142 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/storage/loot/functions/SetAttributesFunction$1.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/storage/loot/functions/SetAttributesFunction$Builder.class b/build/_compileJava_2/net/minecraft/world/level/storage/loot/functions/SetAttributesFunction$Builder.class new file mode 100644 index 000000000..89ade7c06 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/storage/loot/functions/SetAttributesFunction$Builder.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/storage/loot/functions/SetAttributesFunction$Modifier.class b/build/_compileJava_2/net/minecraft/world/level/storage/loot/functions/SetAttributesFunction$Modifier.class new file mode 100644 index 000000000..e91a3e5cc Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/storage/loot/functions/SetAttributesFunction$Modifier.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/storage/loot/functions/SetAttributesFunction$ModifierBuilder.class b/build/_compileJava_2/net/minecraft/world/level/storage/loot/functions/SetAttributesFunction$ModifierBuilder.class new file mode 100644 index 000000000..f70e86040 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/storage/loot/functions/SetAttributesFunction$ModifierBuilder.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/storage/loot/functions/SetAttributesFunction$Serializer.class b/build/_compileJava_2/net/minecraft/world/level/storage/loot/functions/SetAttributesFunction$Serializer.class new file mode 100644 index 000000000..4f65b44fd Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/storage/loot/functions/SetAttributesFunction$Serializer.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/storage/loot/functions/SetAttributesFunction.class b/build/_compileJava_2/net/minecraft/world/level/storage/loot/functions/SetAttributesFunction.class new file mode 100644 index 000000000..93c1ea110 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/storage/loot/functions/SetAttributesFunction.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/storage/loot/functions/SetBannerPatternFunction$Builder.class b/build/_compileJava_2/net/minecraft/world/level/storage/loot/functions/SetBannerPatternFunction$Builder.class new file mode 100644 index 000000000..3ef4816bc Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/storage/loot/functions/SetBannerPatternFunction$Builder.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/storage/loot/functions/SetBannerPatternFunction$Serializer.class b/build/_compileJava_2/net/minecraft/world/level/storage/loot/functions/SetBannerPatternFunction$Serializer.class new file mode 100644 index 000000000..26ba34a4d Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/storage/loot/functions/SetBannerPatternFunction$Serializer.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/storage/loot/functions/SetBannerPatternFunction.class b/build/_compileJava_2/net/minecraft/world/level/storage/loot/functions/SetBannerPatternFunction.class new file mode 100644 index 000000000..0c0c060b9 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/storage/loot/functions/SetBannerPatternFunction.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/storage/loot/functions/SetContainerContents$Builder.class b/build/_compileJava_2/net/minecraft/world/level/storage/loot/functions/SetContainerContents$Builder.class new file mode 100644 index 000000000..1ef668597 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/storage/loot/functions/SetContainerContents$Builder.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/storage/loot/functions/SetContainerContents$Serializer.class b/build/_compileJava_2/net/minecraft/world/level/storage/loot/functions/SetContainerContents$Serializer.class new file mode 100644 index 000000000..3b0adfa88 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/storage/loot/functions/SetContainerContents$Serializer.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/storage/loot/functions/SetContainerContents.class b/build/_compileJava_2/net/minecraft/world/level/storage/loot/functions/SetContainerContents.class new file mode 100644 index 000000000..a080a120e Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/storage/loot/functions/SetContainerContents.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/storage/loot/functions/SetContainerLootTable$Serializer.class b/build/_compileJava_2/net/minecraft/world/level/storage/loot/functions/SetContainerLootTable$Serializer.class new file mode 100644 index 000000000..d86805330 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/storage/loot/functions/SetContainerLootTable$Serializer.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/storage/loot/functions/SetContainerLootTable.class b/build/_compileJava_2/net/minecraft/world/level/storage/loot/functions/SetContainerLootTable.class new file mode 100644 index 000000000..4ca367a34 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/storage/loot/functions/SetContainerLootTable.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/storage/loot/functions/SetEnchantmentsFunction$Builder.class b/build/_compileJava_2/net/minecraft/world/level/storage/loot/functions/SetEnchantmentsFunction$Builder.class new file mode 100644 index 000000000..b08670657 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/storage/loot/functions/SetEnchantmentsFunction$Builder.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/storage/loot/functions/SetEnchantmentsFunction$Serializer.class b/build/_compileJava_2/net/minecraft/world/level/storage/loot/functions/SetEnchantmentsFunction$Serializer.class new file mode 100644 index 000000000..71818a883 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/storage/loot/functions/SetEnchantmentsFunction$Serializer.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/storage/loot/functions/SetEnchantmentsFunction.class b/build/_compileJava_2/net/minecraft/world/level/storage/loot/functions/SetEnchantmentsFunction.class new file mode 100644 index 000000000..34ae5893b Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/storage/loot/functions/SetEnchantmentsFunction.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/storage/loot/functions/SetInstrumentFunction$Serializer.class b/build/_compileJava_2/net/minecraft/world/level/storage/loot/functions/SetInstrumentFunction$Serializer.class new file mode 100644 index 000000000..16f898752 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/storage/loot/functions/SetInstrumentFunction$Serializer.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/storage/loot/functions/SetInstrumentFunction.class b/build/_compileJava_2/net/minecraft/world/level/storage/loot/functions/SetInstrumentFunction.class new file mode 100644 index 000000000..54e471381 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/storage/loot/functions/SetInstrumentFunction.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/storage/loot/functions/SetItemCountFunction$Serializer.class b/build/_compileJava_2/net/minecraft/world/level/storage/loot/functions/SetItemCountFunction$Serializer.class new file mode 100644 index 000000000..c65d6875e Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/storage/loot/functions/SetItemCountFunction$Serializer.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/storage/loot/functions/SetItemCountFunction.class b/build/_compileJava_2/net/minecraft/world/level/storage/loot/functions/SetItemCountFunction.class new file mode 100644 index 000000000..d4e32ca69 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/storage/loot/functions/SetItemCountFunction.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/storage/loot/functions/SetItemDamageFunction$Serializer.class b/build/_compileJava_2/net/minecraft/world/level/storage/loot/functions/SetItemDamageFunction$Serializer.class new file mode 100644 index 000000000..be5b60678 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/storage/loot/functions/SetItemDamageFunction$Serializer.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/storage/loot/functions/SetItemDamageFunction.class b/build/_compileJava_2/net/minecraft/world/level/storage/loot/functions/SetItemDamageFunction.class new file mode 100644 index 000000000..62eba6fac Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/storage/loot/functions/SetItemDamageFunction.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/storage/loot/functions/SetLoreFunction$Builder.class b/build/_compileJava_2/net/minecraft/world/level/storage/loot/functions/SetLoreFunction$Builder.class new file mode 100644 index 000000000..0ac60ca55 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/storage/loot/functions/SetLoreFunction$Builder.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/storage/loot/functions/SetLoreFunction$Serializer.class b/build/_compileJava_2/net/minecraft/world/level/storage/loot/functions/SetLoreFunction$Serializer.class new file mode 100644 index 000000000..d480f6af4 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/storage/loot/functions/SetLoreFunction$Serializer.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/storage/loot/functions/SetLoreFunction.class b/build/_compileJava_2/net/minecraft/world/level/storage/loot/functions/SetLoreFunction.class new file mode 100644 index 000000000..d6f54bf3f Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/storage/loot/functions/SetLoreFunction.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/storage/loot/functions/SetNameFunction$Serializer.class b/build/_compileJava_2/net/minecraft/world/level/storage/loot/functions/SetNameFunction$Serializer.class new file mode 100644 index 000000000..f23ba366f Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/storage/loot/functions/SetNameFunction$Serializer.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/storage/loot/functions/SetNameFunction.class b/build/_compileJava_2/net/minecraft/world/level/storage/loot/functions/SetNameFunction.class new file mode 100644 index 000000000..eb1ad4d23 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/storage/loot/functions/SetNameFunction.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/storage/loot/functions/SetNbtFunction$Serializer.class b/build/_compileJava_2/net/minecraft/world/level/storage/loot/functions/SetNbtFunction$Serializer.class new file mode 100644 index 000000000..e206e80be Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/storage/loot/functions/SetNbtFunction$Serializer.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/storage/loot/functions/SetNbtFunction.class b/build/_compileJava_2/net/minecraft/world/level/storage/loot/functions/SetNbtFunction.class new file mode 100644 index 000000000..b0abe53ef Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/storage/loot/functions/SetNbtFunction.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/storage/loot/functions/SetPotionFunction$Serializer.class b/build/_compileJava_2/net/minecraft/world/level/storage/loot/functions/SetPotionFunction$Serializer.class new file mode 100644 index 000000000..a87afe739 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/storage/loot/functions/SetPotionFunction$Serializer.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/storage/loot/functions/SetPotionFunction.class b/build/_compileJava_2/net/minecraft/world/level/storage/loot/functions/SetPotionFunction.class new file mode 100644 index 000000000..242ddf876 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/storage/loot/functions/SetPotionFunction.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/storage/loot/functions/SetStewEffectFunction$Builder.class b/build/_compileJava_2/net/minecraft/world/level/storage/loot/functions/SetStewEffectFunction$Builder.class new file mode 100644 index 000000000..2c5754c9b Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/storage/loot/functions/SetStewEffectFunction$Builder.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/storage/loot/functions/SetStewEffectFunction$Serializer.class b/build/_compileJava_2/net/minecraft/world/level/storage/loot/functions/SetStewEffectFunction$Serializer.class new file mode 100644 index 000000000..b540a4c0e Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/storage/loot/functions/SetStewEffectFunction$Serializer.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/storage/loot/functions/SetStewEffectFunction.class b/build/_compileJava_2/net/minecraft/world/level/storage/loot/functions/SetStewEffectFunction.class new file mode 100644 index 000000000..65d6edba2 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/storage/loot/functions/SetStewEffectFunction.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/storage/loot/functions/SmeltItemFunction$Serializer.class b/build/_compileJava_2/net/minecraft/world/level/storage/loot/functions/SmeltItemFunction$Serializer.class new file mode 100644 index 000000000..4fe5f861e Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/storage/loot/functions/SmeltItemFunction$Serializer.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/storage/loot/functions/SmeltItemFunction.class b/build/_compileJava_2/net/minecraft/world/level/storage/loot/functions/SmeltItemFunction.class new file mode 100644 index 000000000..198e07347 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/storage/loot/functions/SmeltItemFunction.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/storage/loot/functions/package-info.class b/build/_compileJava_2/net/minecraft/world/level/storage/loot/functions/package-info.class new file mode 100644 index 000000000..33a8a5027 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/storage/loot/functions/package-info.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/storage/loot/package-info.class b/build/_compileJava_2/net/minecraft/world/level/storage/loot/package-info.class new file mode 100644 index 000000000..c911e1cf6 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/storage/loot/package-info.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/storage/loot/parameters/LootContextParam.class b/build/_compileJava_2/net/minecraft/world/level/storage/loot/parameters/LootContextParam.class new file mode 100644 index 000000000..72cf49540 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/storage/loot/parameters/LootContextParam.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/storage/loot/parameters/LootContextParamSet$Builder.class b/build/_compileJava_2/net/minecraft/world/level/storage/loot/parameters/LootContextParamSet$Builder.class new file mode 100644 index 000000000..8ebcabbfe Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/storage/loot/parameters/LootContextParamSet$Builder.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/storage/loot/parameters/LootContextParamSet.class b/build/_compileJava_2/net/minecraft/world/level/storage/loot/parameters/LootContextParamSet.class new file mode 100644 index 000000000..ec564a799 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/storage/loot/parameters/LootContextParamSet.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/storage/loot/parameters/LootContextParamSets.class b/build/_compileJava_2/net/minecraft/world/level/storage/loot/parameters/LootContextParamSets.class new file mode 100644 index 000000000..cfad3cc46 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/storage/loot/parameters/LootContextParamSets.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/storage/loot/parameters/LootContextParams.class b/build/_compileJava_2/net/minecraft/world/level/storage/loot/parameters/LootContextParams.class new file mode 100644 index 000000000..13c5e9795 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/storage/loot/parameters/LootContextParams.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/storage/loot/parameters/package-info.class b/build/_compileJava_2/net/minecraft/world/level/storage/loot/parameters/package-info.class new file mode 100644 index 000000000..656bde89a Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/storage/loot/parameters/package-info.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/storage/loot/predicates/AllOfCondition$Builder.class b/build/_compileJava_2/net/minecraft/world/level/storage/loot/predicates/AllOfCondition$Builder.class new file mode 100644 index 000000000..70bbf84af Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/storage/loot/predicates/AllOfCondition$Builder.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/storage/loot/predicates/AllOfCondition$Serializer.class b/build/_compileJava_2/net/minecraft/world/level/storage/loot/predicates/AllOfCondition$Serializer.class new file mode 100644 index 000000000..535f62deb Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/storage/loot/predicates/AllOfCondition$Serializer.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/storage/loot/predicates/AllOfCondition.class b/build/_compileJava_2/net/minecraft/world/level/storage/loot/predicates/AllOfCondition.class new file mode 100644 index 000000000..ff4b5c50b Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/storage/loot/predicates/AllOfCondition.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/storage/loot/predicates/AnyOfCondition$Builder.class b/build/_compileJava_2/net/minecraft/world/level/storage/loot/predicates/AnyOfCondition$Builder.class new file mode 100644 index 000000000..449007dc4 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/storage/loot/predicates/AnyOfCondition$Builder.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/storage/loot/predicates/AnyOfCondition$Serializer.class b/build/_compileJava_2/net/minecraft/world/level/storage/loot/predicates/AnyOfCondition$Serializer.class new file mode 100644 index 000000000..6edaa76b4 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/storage/loot/predicates/AnyOfCondition$Serializer.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/storage/loot/predicates/AnyOfCondition.class b/build/_compileJava_2/net/minecraft/world/level/storage/loot/predicates/AnyOfCondition.class new file mode 100644 index 000000000..020e0d1d1 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/storage/loot/predicates/AnyOfCondition.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/storage/loot/predicates/BonusLevelTableCondition$Serializer.class b/build/_compileJava_2/net/minecraft/world/level/storage/loot/predicates/BonusLevelTableCondition$Serializer.class new file mode 100644 index 000000000..06922549f Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/storage/loot/predicates/BonusLevelTableCondition$Serializer.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/storage/loot/predicates/BonusLevelTableCondition.class b/build/_compileJava_2/net/minecraft/world/level/storage/loot/predicates/BonusLevelTableCondition.class new file mode 100644 index 000000000..11f7453f9 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/storage/loot/predicates/BonusLevelTableCondition.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/storage/loot/predicates/CompositeLootItemCondition$Builder.class b/build/_compileJava_2/net/minecraft/world/level/storage/loot/predicates/CompositeLootItemCondition$Builder.class new file mode 100644 index 000000000..017cad24d Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/storage/loot/predicates/CompositeLootItemCondition$Builder.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/storage/loot/predicates/CompositeLootItemCondition$Serializer.class b/build/_compileJava_2/net/minecraft/world/level/storage/loot/predicates/CompositeLootItemCondition$Serializer.class new file mode 100644 index 000000000..603fe0b01 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/storage/loot/predicates/CompositeLootItemCondition$Serializer.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/storage/loot/predicates/CompositeLootItemCondition.class b/build/_compileJava_2/net/minecraft/world/level/storage/loot/predicates/CompositeLootItemCondition.class new file mode 100644 index 000000000..f96859046 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/storage/loot/predicates/CompositeLootItemCondition.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/storage/loot/predicates/ConditionReference$Serializer.class b/build/_compileJava_2/net/minecraft/world/level/storage/loot/predicates/ConditionReference$Serializer.class new file mode 100644 index 000000000..ff591e01e Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/storage/loot/predicates/ConditionReference$Serializer.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/storage/loot/predicates/ConditionReference.class b/build/_compileJava_2/net/minecraft/world/level/storage/loot/predicates/ConditionReference.class new file mode 100644 index 000000000..cd18b5f0c Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/storage/loot/predicates/ConditionReference.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/storage/loot/predicates/ConditionUserBuilder.class b/build/_compileJava_2/net/minecraft/world/level/storage/loot/predicates/ConditionUserBuilder.class new file mode 100644 index 000000000..7d22a9124 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/storage/loot/predicates/ConditionUserBuilder.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/storage/loot/predicates/DamageSourceCondition$Serializer.class b/build/_compileJava_2/net/minecraft/world/level/storage/loot/predicates/DamageSourceCondition$Serializer.class new file mode 100644 index 000000000..7b76540ea Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/storage/loot/predicates/DamageSourceCondition$Serializer.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/storage/loot/predicates/DamageSourceCondition.class b/build/_compileJava_2/net/minecraft/world/level/storage/loot/predicates/DamageSourceCondition.class new file mode 100644 index 000000000..5a1c72075 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/storage/loot/predicates/DamageSourceCondition.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/storage/loot/predicates/EntityHasScoreCondition$Builder.class b/build/_compileJava_2/net/minecraft/world/level/storage/loot/predicates/EntityHasScoreCondition$Builder.class new file mode 100644 index 000000000..04de42f7e Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/storage/loot/predicates/EntityHasScoreCondition$Builder.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/storage/loot/predicates/EntityHasScoreCondition$Serializer.class b/build/_compileJava_2/net/minecraft/world/level/storage/loot/predicates/EntityHasScoreCondition$Serializer.class new file mode 100644 index 000000000..c24570966 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/storage/loot/predicates/EntityHasScoreCondition$Serializer.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/storage/loot/predicates/EntityHasScoreCondition.class b/build/_compileJava_2/net/minecraft/world/level/storage/loot/predicates/EntityHasScoreCondition.class new file mode 100644 index 000000000..a6e4bed7d Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/storage/loot/predicates/EntityHasScoreCondition.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/storage/loot/predicates/ExplosionCondition$Serializer.class b/build/_compileJava_2/net/minecraft/world/level/storage/loot/predicates/ExplosionCondition$Serializer.class new file mode 100644 index 000000000..30b7d1144 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/storage/loot/predicates/ExplosionCondition$Serializer.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/storage/loot/predicates/ExplosionCondition.class b/build/_compileJava_2/net/minecraft/world/level/storage/loot/predicates/ExplosionCondition.class new file mode 100644 index 000000000..996720bef Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/storage/loot/predicates/ExplosionCondition.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/storage/loot/predicates/InvertedLootItemCondition$Serializer.class b/build/_compileJava_2/net/minecraft/world/level/storage/loot/predicates/InvertedLootItemCondition$Serializer.class new file mode 100644 index 000000000..114e4a5b5 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/storage/loot/predicates/InvertedLootItemCondition$Serializer.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/storage/loot/predicates/InvertedLootItemCondition.class b/build/_compileJava_2/net/minecraft/world/level/storage/loot/predicates/InvertedLootItemCondition.class new file mode 100644 index 000000000..7ed3f99cb Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/storage/loot/predicates/InvertedLootItemCondition.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/storage/loot/predicates/LocationCheck$Serializer.class b/build/_compileJava_2/net/minecraft/world/level/storage/loot/predicates/LocationCheck$Serializer.class new file mode 100644 index 000000000..0effc3629 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/storage/loot/predicates/LocationCheck$Serializer.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/storage/loot/predicates/LocationCheck.class b/build/_compileJava_2/net/minecraft/world/level/storage/loot/predicates/LocationCheck.class new file mode 100644 index 000000000..098f6d5df Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/storage/loot/predicates/LocationCheck.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/storage/loot/predicates/LootItemBlockStatePropertyCondition$Builder.class b/build/_compileJava_2/net/minecraft/world/level/storage/loot/predicates/LootItemBlockStatePropertyCondition$Builder.class new file mode 100644 index 000000000..6d04154f2 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/storage/loot/predicates/LootItemBlockStatePropertyCondition$Builder.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/storage/loot/predicates/LootItemBlockStatePropertyCondition$Serializer.class b/build/_compileJava_2/net/minecraft/world/level/storage/loot/predicates/LootItemBlockStatePropertyCondition$Serializer.class new file mode 100644 index 000000000..66f4a52f7 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/storage/loot/predicates/LootItemBlockStatePropertyCondition$Serializer.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/storage/loot/predicates/LootItemBlockStatePropertyCondition.class b/build/_compileJava_2/net/minecraft/world/level/storage/loot/predicates/LootItemBlockStatePropertyCondition.class new file mode 100644 index 000000000..c1fe7fa49 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/storage/loot/predicates/LootItemBlockStatePropertyCondition.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/storage/loot/predicates/LootItemCondition$Builder.class b/build/_compileJava_2/net/minecraft/world/level/storage/loot/predicates/LootItemCondition$Builder.class new file mode 100644 index 000000000..c0a6f38dc Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/storage/loot/predicates/LootItemCondition$Builder.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/storage/loot/predicates/LootItemCondition.class b/build/_compileJava_2/net/minecraft/world/level/storage/loot/predicates/LootItemCondition.class new file mode 100644 index 000000000..7c8d7c6b3 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/storage/loot/predicates/LootItemCondition.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/storage/loot/predicates/LootItemConditionType.class b/build/_compileJava_2/net/minecraft/world/level/storage/loot/predicates/LootItemConditionType.class new file mode 100644 index 000000000..3e3e42790 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/storage/loot/predicates/LootItemConditionType.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/storage/loot/predicates/LootItemConditions.class b/build/_compileJava_2/net/minecraft/world/level/storage/loot/predicates/LootItemConditions.class new file mode 100644 index 000000000..859b8897a Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/storage/loot/predicates/LootItemConditions.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/storage/loot/predicates/LootItemEntityPropertyCondition$Serializer.class b/build/_compileJava_2/net/minecraft/world/level/storage/loot/predicates/LootItemEntityPropertyCondition$Serializer.class new file mode 100644 index 000000000..0eaf92090 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/storage/loot/predicates/LootItemEntityPropertyCondition$Serializer.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/storage/loot/predicates/LootItemEntityPropertyCondition.class b/build/_compileJava_2/net/minecraft/world/level/storage/loot/predicates/LootItemEntityPropertyCondition.class new file mode 100644 index 000000000..d7a4f5bc1 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/storage/loot/predicates/LootItemEntityPropertyCondition.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/storage/loot/predicates/LootItemKilledByPlayerCondition$Serializer.class b/build/_compileJava_2/net/minecraft/world/level/storage/loot/predicates/LootItemKilledByPlayerCondition$Serializer.class new file mode 100644 index 000000000..8d6644048 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/storage/loot/predicates/LootItemKilledByPlayerCondition$Serializer.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/storage/loot/predicates/LootItemKilledByPlayerCondition.class b/build/_compileJava_2/net/minecraft/world/level/storage/loot/predicates/LootItemKilledByPlayerCondition.class new file mode 100644 index 000000000..5546888a0 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/storage/loot/predicates/LootItemKilledByPlayerCondition.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/storage/loot/predicates/LootItemRandomChanceCondition$Serializer.class b/build/_compileJava_2/net/minecraft/world/level/storage/loot/predicates/LootItemRandomChanceCondition$Serializer.class new file mode 100644 index 000000000..4487e5ee0 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/storage/loot/predicates/LootItemRandomChanceCondition$Serializer.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/storage/loot/predicates/LootItemRandomChanceCondition.class b/build/_compileJava_2/net/minecraft/world/level/storage/loot/predicates/LootItemRandomChanceCondition.class new file mode 100644 index 000000000..b47840875 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/storage/loot/predicates/LootItemRandomChanceCondition.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/storage/loot/predicates/LootItemRandomChanceWithLootingCondition$Serializer.class b/build/_compileJava_2/net/minecraft/world/level/storage/loot/predicates/LootItemRandomChanceWithLootingCondition$Serializer.class new file mode 100644 index 000000000..c1b0beded Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/storage/loot/predicates/LootItemRandomChanceWithLootingCondition$Serializer.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/storage/loot/predicates/LootItemRandomChanceWithLootingCondition.class b/build/_compileJava_2/net/minecraft/world/level/storage/loot/predicates/LootItemRandomChanceWithLootingCondition.class new file mode 100644 index 000000000..47d9cfadb Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/storage/loot/predicates/LootItemRandomChanceWithLootingCondition.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/storage/loot/predicates/MatchTool$Serializer.class b/build/_compileJava_2/net/minecraft/world/level/storage/loot/predicates/MatchTool$Serializer.class new file mode 100644 index 000000000..601f40269 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/storage/loot/predicates/MatchTool$Serializer.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/storage/loot/predicates/MatchTool.class b/build/_compileJava_2/net/minecraft/world/level/storage/loot/predicates/MatchTool.class new file mode 100644 index 000000000..78cecb138 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/storage/loot/predicates/MatchTool.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/storage/loot/predicates/TimeCheck$Builder.class b/build/_compileJava_2/net/minecraft/world/level/storage/loot/predicates/TimeCheck$Builder.class new file mode 100644 index 000000000..54b5da6c9 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/storage/loot/predicates/TimeCheck$Builder.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/storage/loot/predicates/TimeCheck$Serializer.class b/build/_compileJava_2/net/minecraft/world/level/storage/loot/predicates/TimeCheck$Serializer.class new file mode 100644 index 000000000..ee8ea47aa Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/storage/loot/predicates/TimeCheck$Serializer.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/storage/loot/predicates/TimeCheck.class b/build/_compileJava_2/net/minecraft/world/level/storage/loot/predicates/TimeCheck.class new file mode 100644 index 000000000..ef2afe030 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/storage/loot/predicates/TimeCheck.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/storage/loot/predicates/ValueCheckCondition$Serializer.class b/build/_compileJava_2/net/minecraft/world/level/storage/loot/predicates/ValueCheckCondition$Serializer.class new file mode 100644 index 000000000..8ebdb60ec Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/storage/loot/predicates/ValueCheckCondition$Serializer.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/storage/loot/predicates/ValueCheckCondition.class b/build/_compileJava_2/net/minecraft/world/level/storage/loot/predicates/ValueCheckCondition.class new file mode 100644 index 000000000..c3daddd2a Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/storage/loot/predicates/ValueCheckCondition.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/storage/loot/predicates/WeatherCheck$Builder.class b/build/_compileJava_2/net/minecraft/world/level/storage/loot/predicates/WeatherCheck$Builder.class new file mode 100644 index 000000000..0ed2de6cc Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/storage/loot/predicates/WeatherCheck$Builder.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/storage/loot/predicates/WeatherCheck$Serializer.class b/build/_compileJava_2/net/minecraft/world/level/storage/loot/predicates/WeatherCheck$Serializer.class new file mode 100644 index 000000000..e59caa59e Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/storage/loot/predicates/WeatherCheck$Serializer.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/storage/loot/predicates/WeatherCheck.class b/build/_compileJava_2/net/minecraft/world/level/storage/loot/predicates/WeatherCheck.class new file mode 100644 index 000000000..75a80cc07 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/storage/loot/predicates/WeatherCheck.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/storage/loot/predicates/package-info.class b/build/_compileJava_2/net/minecraft/world/level/storage/loot/predicates/package-info.class new file mode 100644 index 000000000..7e3222f55 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/storage/loot/predicates/package-info.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/storage/loot/providers/nbt/ContextNbtProvider$1.class b/build/_compileJava_2/net/minecraft/world/level/storage/loot/providers/nbt/ContextNbtProvider$1.class new file mode 100644 index 000000000..4bb42fbe7 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/storage/loot/providers/nbt/ContextNbtProvider$1.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/storage/loot/providers/nbt/ContextNbtProvider$2.class b/build/_compileJava_2/net/minecraft/world/level/storage/loot/providers/nbt/ContextNbtProvider$2.class new file mode 100644 index 000000000..f9b3bf9b2 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/storage/loot/providers/nbt/ContextNbtProvider$2.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/storage/loot/providers/nbt/ContextNbtProvider$Getter.class b/build/_compileJava_2/net/minecraft/world/level/storage/loot/providers/nbt/ContextNbtProvider$Getter.class new file mode 100644 index 000000000..a1c9148d7 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/storage/loot/providers/nbt/ContextNbtProvider$Getter.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/storage/loot/providers/nbt/ContextNbtProvider$InlineSerializer.class b/build/_compileJava_2/net/minecraft/world/level/storage/loot/providers/nbt/ContextNbtProvider$InlineSerializer.class new file mode 100644 index 000000000..aa13921d7 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/storage/loot/providers/nbt/ContextNbtProvider$InlineSerializer.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/storage/loot/providers/nbt/ContextNbtProvider$Serializer.class b/build/_compileJava_2/net/minecraft/world/level/storage/loot/providers/nbt/ContextNbtProvider$Serializer.class new file mode 100644 index 000000000..9a49d560d Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/storage/loot/providers/nbt/ContextNbtProvider$Serializer.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/storage/loot/providers/nbt/ContextNbtProvider.class b/build/_compileJava_2/net/minecraft/world/level/storage/loot/providers/nbt/ContextNbtProvider.class new file mode 100644 index 000000000..606e895af Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/storage/loot/providers/nbt/ContextNbtProvider.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/storage/loot/providers/nbt/LootNbtProviderType.class b/build/_compileJava_2/net/minecraft/world/level/storage/loot/providers/nbt/LootNbtProviderType.class new file mode 100644 index 000000000..54fc08594 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/storage/loot/providers/nbt/LootNbtProviderType.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/storage/loot/providers/nbt/NbtProvider.class b/build/_compileJava_2/net/minecraft/world/level/storage/loot/providers/nbt/NbtProvider.class new file mode 100644 index 000000000..d9a2adb8e Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/storage/loot/providers/nbt/NbtProvider.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/storage/loot/providers/nbt/NbtProviders.class b/build/_compileJava_2/net/minecraft/world/level/storage/loot/providers/nbt/NbtProviders.class new file mode 100644 index 000000000..d95e872c2 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/storage/loot/providers/nbt/NbtProviders.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/storage/loot/providers/nbt/StorageNbtProvider$Serializer.class b/build/_compileJava_2/net/minecraft/world/level/storage/loot/providers/nbt/StorageNbtProvider$Serializer.class new file mode 100644 index 000000000..0e581d6a4 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/storage/loot/providers/nbt/StorageNbtProvider$Serializer.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/storage/loot/providers/nbt/StorageNbtProvider.class b/build/_compileJava_2/net/minecraft/world/level/storage/loot/providers/nbt/StorageNbtProvider.class new file mode 100644 index 000000000..9a8f5348d Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/storage/loot/providers/nbt/StorageNbtProvider.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/storage/loot/providers/nbt/package-info.class b/build/_compileJava_2/net/minecraft/world/level/storage/loot/providers/nbt/package-info.class new file mode 100644 index 000000000..bd77b9780 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/storage/loot/providers/nbt/package-info.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/storage/loot/providers/number/BinomialDistributionGenerator$Serializer.class b/build/_compileJava_2/net/minecraft/world/level/storage/loot/providers/number/BinomialDistributionGenerator$Serializer.class new file mode 100644 index 000000000..c1f69a69c Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/storage/loot/providers/number/BinomialDistributionGenerator$Serializer.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/storage/loot/providers/number/BinomialDistributionGenerator.class b/build/_compileJava_2/net/minecraft/world/level/storage/loot/providers/number/BinomialDistributionGenerator.class new file mode 100644 index 000000000..9687b2832 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/storage/loot/providers/number/BinomialDistributionGenerator.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/storage/loot/providers/number/ConstantValue$InlineSerializer.class b/build/_compileJava_2/net/minecraft/world/level/storage/loot/providers/number/ConstantValue$InlineSerializer.class new file mode 100644 index 000000000..d5521e5dc Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/storage/loot/providers/number/ConstantValue$InlineSerializer.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/storage/loot/providers/number/ConstantValue$Serializer.class b/build/_compileJava_2/net/minecraft/world/level/storage/loot/providers/number/ConstantValue$Serializer.class new file mode 100644 index 000000000..56ec5fb56 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/storage/loot/providers/number/ConstantValue$Serializer.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/storage/loot/providers/number/ConstantValue.class b/build/_compileJava_2/net/minecraft/world/level/storage/loot/providers/number/ConstantValue.class new file mode 100644 index 000000000..c28385723 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/storage/loot/providers/number/ConstantValue.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/storage/loot/providers/number/LootNumberProviderType.class b/build/_compileJava_2/net/minecraft/world/level/storage/loot/providers/number/LootNumberProviderType.class new file mode 100644 index 000000000..bccaafed5 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/storage/loot/providers/number/LootNumberProviderType.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/storage/loot/providers/number/NumberProvider.class b/build/_compileJava_2/net/minecraft/world/level/storage/loot/providers/number/NumberProvider.class new file mode 100644 index 000000000..542ad7222 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/storage/loot/providers/number/NumberProvider.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/storage/loot/providers/number/NumberProviders.class b/build/_compileJava_2/net/minecraft/world/level/storage/loot/providers/number/NumberProviders.class new file mode 100644 index 000000000..092393f9f Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/storage/loot/providers/number/NumberProviders.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/storage/loot/providers/number/ScoreboardValue$Serializer.class b/build/_compileJava_2/net/minecraft/world/level/storage/loot/providers/number/ScoreboardValue$Serializer.class new file mode 100644 index 000000000..337f6502d Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/storage/loot/providers/number/ScoreboardValue$Serializer.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/storage/loot/providers/number/ScoreboardValue.class b/build/_compileJava_2/net/minecraft/world/level/storage/loot/providers/number/ScoreboardValue.class new file mode 100644 index 000000000..676206032 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/storage/loot/providers/number/ScoreboardValue.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/storage/loot/providers/number/UniformGenerator$Serializer.class b/build/_compileJava_2/net/minecraft/world/level/storage/loot/providers/number/UniformGenerator$Serializer.class new file mode 100644 index 000000000..0911bfe3b Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/storage/loot/providers/number/UniformGenerator$Serializer.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/storage/loot/providers/number/UniformGenerator.class b/build/_compileJava_2/net/minecraft/world/level/storage/loot/providers/number/UniformGenerator.class new file mode 100644 index 000000000..5e8589dee Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/storage/loot/providers/number/UniformGenerator.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/storage/loot/providers/number/package-info.class b/build/_compileJava_2/net/minecraft/world/level/storage/loot/providers/number/package-info.class new file mode 100644 index 000000000..42a249ca5 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/storage/loot/providers/number/package-info.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/storage/loot/providers/score/ContextScoreboardNameProvider$InlineSerializer.class b/build/_compileJava_2/net/minecraft/world/level/storage/loot/providers/score/ContextScoreboardNameProvider$InlineSerializer.class new file mode 100644 index 000000000..d0748f62e Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/storage/loot/providers/score/ContextScoreboardNameProvider$InlineSerializer.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/storage/loot/providers/score/ContextScoreboardNameProvider$Serializer.class b/build/_compileJava_2/net/minecraft/world/level/storage/loot/providers/score/ContextScoreboardNameProvider$Serializer.class new file mode 100644 index 000000000..9472997d3 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/storage/loot/providers/score/ContextScoreboardNameProvider$Serializer.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/storage/loot/providers/score/ContextScoreboardNameProvider.class b/build/_compileJava_2/net/minecraft/world/level/storage/loot/providers/score/ContextScoreboardNameProvider.class new file mode 100644 index 000000000..955587a58 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/storage/loot/providers/score/ContextScoreboardNameProvider.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/storage/loot/providers/score/FixedScoreboardNameProvider$Serializer.class b/build/_compileJava_2/net/minecraft/world/level/storage/loot/providers/score/FixedScoreboardNameProvider$Serializer.class new file mode 100644 index 000000000..bb651c2e9 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/storage/loot/providers/score/FixedScoreboardNameProvider$Serializer.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/storage/loot/providers/score/FixedScoreboardNameProvider.class b/build/_compileJava_2/net/minecraft/world/level/storage/loot/providers/score/FixedScoreboardNameProvider.class new file mode 100644 index 000000000..5858f5bfd Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/storage/loot/providers/score/FixedScoreboardNameProvider.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/storage/loot/providers/score/LootScoreProviderType.class b/build/_compileJava_2/net/minecraft/world/level/storage/loot/providers/score/LootScoreProviderType.class new file mode 100644 index 000000000..507b2a263 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/storage/loot/providers/score/LootScoreProviderType.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/storage/loot/providers/score/ScoreboardNameProvider.class b/build/_compileJava_2/net/minecraft/world/level/storage/loot/providers/score/ScoreboardNameProvider.class new file mode 100644 index 000000000..c3f666695 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/storage/loot/providers/score/ScoreboardNameProvider.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/storage/loot/providers/score/ScoreboardNameProviders.class b/build/_compileJava_2/net/minecraft/world/level/storage/loot/providers/score/ScoreboardNameProviders.class new file mode 100644 index 000000000..5da1bda3a Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/storage/loot/providers/score/ScoreboardNameProviders.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/storage/loot/providers/score/package-info.class b/build/_compileJava_2/net/minecraft/world/level/storage/loot/providers/score/package-info.class new file mode 100644 index 000000000..5c7b82eca Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/storage/loot/providers/score/package-info.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/storage/package-info.class b/build/_compileJava_2/net/minecraft/world/level/storage/package-info.class new file mode 100644 index 000000000..a017bd693 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/storage/package-info.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/timers/FunctionCallback$Serializer.class b/build/_compileJava_2/net/minecraft/world/level/timers/FunctionCallback$Serializer.class new file mode 100644 index 000000000..2c4a139a8 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/timers/FunctionCallback$Serializer.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/timers/FunctionCallback.class b/build/_compileJava_2/net/minecraft/world/level/timers/FunctionCallback.class new file mode 100644 index 000000000..a876b88b0 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/timers/FunctionCallback.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/timers/FunctionTagCallback$Serializer.class b/build/_compileJava_2/net/minecraft/world/level/timers/FunctionTagCallback$Serializer.class new file mode 100644 index 000000000..cf86708c4 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/timers/FunctionTagCallback$Serializer.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/timers/FunctionTagCallback.class b/build/_compileJava_2/net/minecraft/world/level/timers/FunctionTagCallback.class new file mode 100644 index 000000000..5c43db2da Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/timers/FunctionTagCallback.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/timers/TimerCallback$Serializer.class b/build/_compileJava_2/net/minecraft/world/level/timers/TimerCallback$Serializer.class new file mode 100644 index 000000000..8109e43b1 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/timers/TimerCallback$Serializer.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/timers/TimerCallback.class b/build/_compileJava_2/net/minecraft/world/level/timers/TimerCallback.class new file mode 100644 index 000000000..1a1a2e667 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/timers/TimerCallback.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/timers/TimerCallbacks.class b/build/_compileJava_2/net/minecraft/world/level/timers/TimerCallbacks.class new file mode 100644 index 000000000..958cc9b47 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/timers/TimerCallbacks.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/timers/TimerQueue$Event.class b/build/_compileJava_2/net/minecraft/world/level/timers/TimerQueue$Event.class new file mode 100644 index 000000000..7bba8df01 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/timers/TimerQueue$Event.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/timers/TimerQueue.class b/build/_compileJava_2/net/minecraft/world/level/timers/TimerQueue.class new file mode 100644 index 000000000..ed87e46e5 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/timers/TimerQueue.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/timers/package-info.class b/build/_compileJava_2/net/minecraft/world/level/timers/package-info.class new file mode 100644 index 000000000..5b215c996 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/timers/package-info.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/validation/ContentValidationException.class b/build/_compileJava_2/net/minecraft/world/level/validation/ContentValidationException.class new file mode 100644 index 000000000..6dcf81660 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/validation/ContentValidationException.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/validation/DirectoryValidator$1.class b/build/_compileJava_2/net/minecraft/world/level/validation/DirectoryValidator$1.class new file mode 100644 index 000000000..34c9ff5b4 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/validation/DirectoryValidator$1.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/validation/DirectoryValidator.class b/build/_compileJava_2/net/minecraft/world/level/validation/DirectoryValidator.class new file mode 100644 index 000000000..7f234dbad Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/validation/DirectoryValidator.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/validation/ForbiddenSymlinkInfo.class b/build/_compileJava_2/net/minecraft/world/level/validation/ForbiddenSymlinkInfo.class new file mode 100644 index 000000000..46fc0cc4c Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/validation/ForbiddenSymlinkInfo.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/validation/PathAllowList$ConfigEntry.class b/build/_compileJava_2/net/minecraft/world/level/validation/PathAllowList$ConfigEntry.class new file mode 100644 index 000000000..4e89af871 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/validation/PathAllowList$ConfigEntry.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/validation/PathAllowList$EntryType.class b/build/_compileJava_2/net/minecraft/world/level/validation/PathAllowList$EntryType.class new file mode 100644 index 000000000..6fecf6548 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/validation/PathAllowList$EntryType.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/validation/PathAllowList.class b/build/_compileJava_2/net/minecraft/world/level/validation/PathAllowList.class new file mode 100644 index 000000000..15f471cc3 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/validation/PathAllowList.class differ diff --git a/build/_compileJava_2/net/minecraft/world/level/validation/package-info.class b/build/_compileJava_2/net/minecraft/world/level/validation/package-info.class new file mode 100644 index 000000000..532c488f7 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/level/validation/package-info.class differ diff --git a/build/_compileJava_2/net/minecraft/world/package-info.class b/build/_compileJava_2/net/minecraft/world/package-info.class new file mode 100644 index 000000000..dca4d48f1 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/package-info.class differ diff --git a/build/_compileJava_2/net/minecraft/world/phys/AABB.class b/build/_compileJava_2/net/minecraft/world/phys/AABB.class new file mode 100644 index 000000000..41107347c Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/phys/AABB.class differ diff --git a/build/_compileJava_2/net/minecraft/world/phys/BlockHitResult.class b/build/_compileJava_2/net/minecraft/world/phys/BlockHitResult.class new file mode 100644 index 000000000..bfd1232f4 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/phys/BlockHitResult.class differ diff --git a/build/_compileJava_2/net/minecraft/world/phys/EntityHitResult.class b/build/_compileJava_2/net/minecraft/world/phys/EntityHitResult.class new file mode 100644 index 000000000..3afb969c1 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/phys/EntityHitResult.class differ diff --git a/build/_compileJava_2/net/minecraft/world/phys/HitResult$Type.class b/build/_compileJava_2/net/minecraft/world/phys/HitResult$Type.class new file mode 100644 index 000000000..b2dcf0999 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/phys/HitResult$Type.class differ diff --git a/build/_compileJava_2/net/minecraft/world/phys/HitResult.class b/build/_compileJava_2/net/minecraft/world/phys/HitResult.class new file mode 100644 index 000000000..bf61b76be Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/phys/HitResult.class differ diff --git a/build/_compileJava_2/net/minecraft/world/phys/Vec2.class b/build/_compileJava_2/net/minecraft/world/phys/Vec2.class new file mode 100644 index 000000000..06236564f Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/phys/Vec2.class differ diff --git a/build/_compileJava_2/net/minecraft/world/phys/Vec3.class b/build/_compileJava_2/net/minecraft/world/phys/Vec3.class new file mode 100644 index 000000000..f2337a329 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/phys/Vec3.class differ diff --git a/build/_compileJava_2/net/minecraft/world/phys/package-info.class b/build/_compileJava_2/net/minecraft/world/phys/package-info.class new file mode 100644 index 000000000..2add91c6f Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/phys/package-info.class differ diff --git a/build/_compileJava_2/net/minecraft/world/phys/shapes/ArrayVoxelShape$1.class b/build/_compileJava_2/net/minecraft/world/phys/shapes/ArrayVoxelShape$1.class new file mode 100644 index 000000000..29955dcfd Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/phys/shapes/ArrayVoxelShape$1.class differ diff --git a/build/_compileJava_2/net/minecraft/world/phys/shapes/ArrayVoxelShape.class b/build/_compileJava_2/net/minecraft/world/phys/shapes/ArrayVoxelShape.class new file mode 100644 index 000000000..f8204d5b6 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/phys/shapes/ArrayVoxelShape.class differ diff --git a/build/_compileJava_2/net/minecraft/world/phys/shapes/BitSetDiscreteVoxelShape.class b/build/_compileJava_2/net/minecraft/world/phys/shapes/BitSetDiscreteVoxelShape.class new file mode 100644 index 000000000..dab884f13 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/phys/shapes/BitSetDiscreteVoxelShape.class differ diff --git a/build/_compileJava_2/net/minecraft/world/phys/shapes/BooleanOp.class b/build/_compileJava_2/net/minecraft/world/phys/shapes/BooleanOp.class new file mode 100644 index 000000000..09c413f5a Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/phys/shapes/BooleanOp.class differ diff --git a/build/_compileJava_2/net/minecraft/world/phys/shapes/CollisionContext.class b/build/_compileJava_2/net/minecraft/world/phys/shapes/CollisionContext.class new file mode 100644 index 000000000..f93d18af8 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/phys/shapes/CollisionContext.class differ diff --git a/build/_compileJava_2/net/minecraft/world/phys/shapes/CubePointRange.class b/build/_compileJava_2/net/minecraft/world/phys/shapes/CubePointRange.class new file mode 100644 index 000000000..e9738230e Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/phys/shapes/CubePointRange.class differ diff --git a/build/_compileJava_2/net/minecraft/world/phys/shapes/CubeVoxelShape.class b/build/_compileJava_2/net/minecraft/world/phys/shapes/CubeVoxelShape.class new file mode 100644 index 000000000..9bcee3475 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/phys/shapes/CubeVoxelShape.class differ diff --git a/build/_compileJava_2/net/minecraft/world/phys/shapes/DiscreteCubeMerger.class b/build/_compileJava_2/net/minecraft/world/phys/shapes/DiscreteCubeMerger.class new file mode 100644 index 000000000..316622547 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/phys/shapes/DiscreteCubeMerger.class differ diff --git a/build/_compileJava_2/net/minecraft/world/phys/shapes/DiscreteVoxelShape$IntFaceConsumer.class b/build/_compileJava_2/net/minecraft/world/phys/shapes/DiscreteVoxelShape$IntFaceConsumer.class new file mode 100644 index 000000000..a26188fba Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/phys/shapes/DiscreteVoxelShape$IntFaceConsumer.class differ diff --git a/build/_compileJava_2/net/minecraft/world/phys/shapes/DiscreteVoxelShape$IntLineConsumer.class b/build/_compileJava_2/net/minecraft/world/phys/shapes/DiscreteVoxelShape$IntLineConsumer.class new file mode 100644 index 000000000..529a2c1c8 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/phys/shapes/DiscreteVoxelShape$IntLineConsumer.class differ diff --git a/build/_compileJava_2/net/minecraft/world/phys/shapes/DiscreteVoxelShape.class b/build/_compileJava_2/net/minecraft/world/phys/shapes/DiscreteVoxelShape.class new file mode 100644 index 000000000..195af7328 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/phys/shapes/DiscreteVoxelShape.class differ diff --git a/build/_compileJava_2/net/minecraft/world/phys/shapes/EntityCollisionContext$1.class b/build/_compileJava_2/net/minecraft/world/phys/shapes/EntityCollisionContext$1.class new file mode 100644 index 000000000..4ed53de02 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/phys/shapes/EntityCollisionContext$1.class differ diff --git a/build/_compileJava_2/net/minecraft/world/phys/shapes/EntityCollisionContext.class b/build/_compileJava_2/net/minecraft/world/phys/shapes/EntityCollisionContext.class new file mode 100644 index 000000000..61f7588ee Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/phys/shapes/EntityCollisionContext.class differ diff --git a/build/_compileJava_2/net/minecraft/world/phys/shapes/IdenticalMerger.class b/build/_compileJava_2/net/minecraft/world/phys/shapes/IdenticalMerger.class new file mode 100644 index 000000000..7b4f21512 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/phys/shapes/IdenticalMerger.class differ diff --git a/build/_compileJava_2/net/minecraft/world/phys/shapes/IndexMerger$IndexConsumer.class b/build/_compileJava_2/net/minecraft/world/phys/shapes/IndexMerger$IndexConsumer.class new file mode 100644 index 000000000..eb96573db Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/phys/shapes/IndexMerger$IndexConsumer.class differ diff --git a/build/_compileJava_2/net/minecraft/world/phys/shapes/IndexMerger.class b/build/_compileJava_2/net/minecraft/world/phys/shapes/IndexMerger.class new file mode 100644 index 000000000..e2309b07e Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/phys/shapes/IndexMerger.class differ diff --git a/build/_compileJava_2/net/minecraft/world/phys/shapes/IndirectMerger.class b/build/_compileJava_2/net/minecraft/world/phys/shapes/IndirectMerger.class new file mode 100644 index 000000000..2a67b80f4 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/phys/shapes/IndirectMerger.class differ diff --git a/build/_compileJava_2/net/minecraft/world/phys/shapes/NonOverlappingMerger.class b/build/_compileJava_2/net/minecraft/world/phys/shapes/NonOverlappingMerger.class new file mode 100644 index 000000000..567c7fd2b Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/phys/shapes/NonOverlappingMerger.class differ diff --git a/build/_compileJava_2/net/minecraft/world/phys/shapes/OffsetDoubleList.class b/build/_compileJava_2/net/minecraft/world/phys/shapes/OffsetDoubleList.class new file mode 100644 index 000000000..f7fbc23f0 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/phys/shapes/OffsetDoubleList.class differ diff --git a/build/_compileJava_2/net/minecraft/world/phys/shapes/Shapes$DoubleLineConsumer.class b/build/_compileJava_2/net/minecraft/world/phys/shapes/Shapes$DoubleLineConsumer.class new file mode 100644 index 000000000..0572cc64c Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/phys/shapes/Shapes$DoubleLineConsumer.class differ diff --git a/build/_compileJava_2/net/minecraft/world/phys/shapes/Shapes.class b/build/_compileJava_2/net/minecraft/world/phys/shapes/Shapes.class new file mode 100644 index 000000000..f00f5b73d Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/phys/shapes/Shapes.class differ diff --git a/build/_compileJava_2/net/minecraft/world/phys/shapes/SliceShape.class b/build/_compileJava_2/net/minecraft/world/phys/shapes/SliceShape.class new file mode 100644 index 000000000..c7b133d19 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/phys/shapes/SliceShape.class differ diff --git a/build/_compileJava_2/net/minecraft/world/phys/shapes/SubShape.class b/build/_compileJava_2/net/minecraft/world/phys/shapes/SubShape.class new file mode 100644 index 000000000..bf9dee25d Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/phys/shapes/SubShape.class differ diff --git a/build/_compileJava_2/net/minecraft/world/phys/shapes/VoxelShape.class b/build/_compileJava_2/net/minecraft/world/phys/shapes/VoxelShape.class new file mode 100644 index 000000000..6b4fbc64f Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/phys/shapes/VoxelShape.class differ diff --git a/build/_compileJava_2/net/minecraft/world/phys/shapes/package-info.class b/build/_compileJava_2/net/minecraft/world/phys/shapes/package-info.class new file mode 100644 index 000000000..1f62ad15a Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/phys/shapes/package-info.class differ diff --git a/build/_compileJava_2/net/minecraft/world/scores/Objective.class b/build/_compileJava_2/net/minecraft/world/scores/Objective.class new file mode 100644 index 000000000..a93a694e2 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/scores/Objective.class differ diff --git a/build/_compileJava_2/net/minecraft/world/scores/PlayerTeam.class b/build/_compileJava_2/net/minecraft/world/scores/PlayerTeam.class new file mode 100644 index 000000000..88a6fe968 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/scores/PlayerTeam.class differ diff --git a/build/_compileJava_2/net/minecraft/world/scores/Score.class b/build/_compileJava_2/net/minecraft/world/scores/Score.class new file mode 100644 index 000000000..a7feac157 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/scores/Score.class differ diff --git a/build/_compileJava_2/net/minecraft/world/scores/Scoreboard.class b/build/_compileJava_2/net/minecraft/world/scores/Scoreboard.class new file mode 100644 index 000000000..068561ca7 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/scores/Scoreboard.class differ diff --git a/build/_compileJava_2/net/minecraft/world/scores/ScoreboardSaveData.class b/build/_compileJava_2/net/minecraft/world/scores/ScoreboardSaveData.class new file mode 100644 index 000000000..6eddc00ed Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/scores/ScoreboardSaveData.class differ diff --git a/build/_compileJava_2/net/minecraft/world/scores/Team$CollisionRule.class b/build/_compileJava_2/net/minecraft/world/scores/Team$CollisionRule.class new file mode 100644 index 000000000..cb83966de Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/scores/Team$CollisionRule.class differ diff --git a/build/_compileJava_2/net/minecraft/world/scores/Team$Visibility.class b/build/_compileJava_2/net/minecraft/world/scores/Team$Visibility.class new file mode 100644 index 000000000..7cd7ef93f Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/scores/Team$Visibility.class differ diff --git a/build/_compileJava_2/net/minecraft/world/scores/Team.class b/build/_compileJava_2/net/minecraft/world/scores/Team.class new file mode 100644 index 000000000..0101fb4b5 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/scores/Team.class differ diff --git a/build/_compileJava_2/net/minecraft/world/scores/criteria/ObjectiveCriteria$RenderType.class b/build/_compileJava_2/net/minecraft/world/scores/criteria/ObjectiveCriteria$RenderType.class new file mode 100644 index 000000000..ce10eae9a Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/scores/criteria/ObjectiveCriteria$RenderType.class differ diff --git a/build/_compileJava_2/net/minecraft/world/scores/criteria/ObjectiveCriteria.class b/build/_compileJava_2/net/minecraft/world/scores/criteria/ObjectiveCriteria.class new file mode 100644 index 000000000..7868d7e18 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/scores/criteria/ObjectiveCriteria.class differ diff --git a/build/_compileJava_2/net/minecraft/world/scores/criteria/package-info.class b/build/_compileJava_2/net/minecraft/world/scores/criteria/package-info.class new file mode 100644 index 000000000..cdd4c7474 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/scores/criteria/package-info.class differ diff --git a/build/_compileJava_2/net/minecraft/world/scores/package-info.class b/build/_compileJava_2/net/minecraft/world/scores/package-info.class new file mode 100644 index 000000000..304bae0f1 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/scores/package-info.class differ diff --git a/build/_compileJava_2/net/minecraft/world/ticks/BlackholeTickAccess$1.class b/build/_compileJava_2/net/minecraft/world/ticks/BlackholeTickAccess$1.class new file mode 100644 index 000000000..fa99a1b40 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/ticks/BlackholeTickAccess$1.class differ diff --git a/build/_compileJava_2/net/minecraft/world/ticks/BlackholeTickAccess$2.class b/build/_compileJava_2/net/minecraft/world/ticks/BlackholeTickAccess$2.class new file mode 100644 index 000000000..e4f8b2e93 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/ticks/BlackholeTickAccess$2.class differ diff --git a/build/_compileJava_2/net/minecraft/world/ticks/BlackholeTickAccess.class b/build/_compileJava_2/net/minecraft/world/ticks/BlackholeTickAccess.class new file mode 100644 index 000000000..f3d454f43 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/ticks/BlackholeTickAccess.class differ diff --git a/build/_compileJava_2/net/minecraft/world/ticks/ContainerSingleItem.class b/build/_compileJava_2/net/minecraft/world/ticks/ContainerSingleItem.class new file mode 100644 index 000000000..9ce17584f Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/ticks/ContainerSingleItem.class differ diff --git a/build/_compileJava_2/net/minecraft/world/ticks/LevelChunkTicks.class b/build/_compileJava_2/net/minecraft/world/ticks/LevelChunkTicks.class new file mode 100644 index 000000000..6f26c0246 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/ticks/LevelChunkTicks.class differ diff --git a/build/_compileJava_2/net/minecraft/world/ticks/LevelTickAccess.class b/build/_compileJava_2/net/minecraft/world/ticks/LevelTickAccess.class new file mode 100644 index 000000000..65c257b70 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/ticks/LevelTickAccess.class differ diff --git a/build/_compileJava_2/net/minecraft/world/ticks/LevelTicks$PosAndContainerConsumer.class b/build/_compileJava_2/net/minecraft/world/ticks/LevelTicks$PosAndContainerConsumer.class new file mode 100644 index 000000000..427107653 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/ticks/LevelTicks$PosAndContainerConsumer.class differ diff --git a/build/_compileJava_2/net/minecraft/world/ticks/LevelTicks.class b/build/_compileJava_2/net/minecraft/world/ticks/LevelTicks.class new file mode 100644 index 000000000..9f7bb1891 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/ticks/LevelTicks.class differ diff --git a/build/_compileJava_2/net/minecraft/world/ticks/ProtoChunkTicks.class b/build/_compileJava_2/net/minecraft/world/ticks/ProtoChunkTicks.class new file mode 100644 index 000000000..a0e849330 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/ticks/ProtoChunkTicks.class differ diff --git a/build/_compileJava_2/net/minecraft/world/ticks/SavedTick$1.class b/build/_compileJava_2/net/minecraft/world/ticks/SavedTick$1.class new file mode 100644 index 000000000..403a76ff3 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/ticks/SavedTick$1.class differ diff --git a/build/_compileJava_2/net/minecraft/world/ticks/SavedTick.class b/build/_compileJava_2/net/minecraft/world/ticks/SavedTick.class new file mode 100644 index 000000000..240dd0939 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/ticks/SavedTick.class differ diff --git a/build/_compileJava_2/net/minecraft/world/ticks/ScheduledTick$1.class b/build/_compileJava_2/net/minecraft/world/ticks/ScheduledTick$1.class new file mode 100644 index 000000000..5b057df05 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/ticks/ScheduledTick$1.class differ diff --git a/build/_compileJava_2/net/minecraft/world/ticks/ScheduledTick.class b/build/_compileJava_2/net/minecraft/world/ticks/ScheduledTick.class new file mode 100644 index 000000000..89a77cf1e Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/ticks/ScheduledTick.class differ diff --git a/build/_compileJava_2/net/minecraft/world/ticks/SerializableTickContainer.class b/build/_compileJava_2/net/minecraft/world/ticks/SerializableTickContainer.class new file mode 100644 index 000000000..8fb0d273e Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/ticks/SerializableTickContainer.class differ diff --git a/build/_compileJava_2/net/minecraft/world/ticks/TickAccess.class b/build/_compileJava_2/net/minecraft/world/ticks/TickAccess.class new file mode 100644 index 000000000..31a1ab193 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/ticks/TickAccess.class differ diff --git a/build/_compileJava_2/net/minecraft/world/ticks/TickContainerAccess.class b/build/_compileJava_2/net/minecraft/world/ticks/TickContainerAccess.class new file mode 100644 index 000000000..4aba6aabc Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/ticks/TickContainerAccess.class differ diff --git a/build/_compileJava_2/net/minecraft/world/ticks/TickPriority.class b/build/_compileJava_2/net/minecraft/world/ticks/TickPriority.class new file mode 100644 index 000000000..8dc45bb4c Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/ticks/TickPriority.class differ diff --git a/build/_compileJava_2/net/minecraft/world/ticks/WorldGenTickAccess.class b/build/_compileJava_2/net/minecraft/world/ticks/WorldGenTickAccess.class new file mode 100644 index 000000000..3dec7bfbe Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/ticks/WorldGenTickAccess.class differ diff --git a/build/_compileJava_2/net/minecraft/world/ticks/package-info.class b/build/_compileJava_2/net/minecraft/world/ticks/package-info.class new file mode 100644 index 000000000..f95e24171 Binary files /dev/null and b/build/_compileJava_2/net/minecraft/world/ticks/package-info.class differ diff --git a/build/_compileJava_2/net/minecraftforge/client/ChunkRenderTypeSet$All.class b/build/_compileJava_2/net/minecraftforge/client/ChunkRenderTypeSet$All.class new file mode 100644 index 000000000..062bd3807 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/client/ChunkRenderTypeSet$All.class differ diff --git a/build/_compileJava_2/net/minecraftforge/client/ChunkRenderTypeSet$IteratorImpl.class b/build/_compileJava_2/net/minecraftforge/client/ChunkRenderTypeSet$IteratorImpl.class new file mode 100644 index 000000000..1b98bbd29 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/client/ChunkRenderTypeSet$IteratorImpl.class differ diff --git a/build/_compileJava_2/net/minecraftforge/client/ChunkRenderTypeSet$None.class b/build/_compileJava_2/net/minecraftforge/client/ChunkRenderTypeSet$None.class new file mode 100644 index 000000000..52580f0df Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/client/ChunkRenderTypeSet$None.class differ diff --git a/build/_compileJava_2/net/minecraftforge/client/ChunkRenderTypeSet.class b/build/_compileJava_2/net/minecraftforge/client/ChunkRenderTypeSet.class new file mode 100644 index 000000000..be72fcac5 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/client/ChunkRenderTypeSet.class differ diff --git a/build/_compileJava_2/net/minecraftforge/client/ClientCommandHandler.class b/build/_compileJava_2/net/minecraftforge/client/ClientCommandHandler.class new file mode 100644 index 000000000..de1e06218 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/client/ClientCommandHandler.class differ diff --git a/build/_compileJava_2/net/minecraftforge/client/ClientCommandSourceStack.class b/build/_compileJava_2/net/minecraftforge/client/ClientCommandSourceStack.class new file mode 100644 index 000000000..c34fcf9fd Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/client/ClientCommandSourceStack.class differ diff --git a/build/_compileJava_2/net/minecraftforge/client/ClientForgeMod.class b/build/_compileJava_2/net/minecraftforge/client/ClientForgeMod.class new file mode 100644 index 000000000..076b41c11 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/client/ClientForgeMod.class differ diff --git a/build/_compileJava_2/net/minecraftforge/client/ColorResolverManager.class b/build/_compileJava_2/net/minecraftforge/client/ColorResolverManager.class new file mode 100644 index 000000000..cff2c0109 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/client/ColorResolverManager.class differ diff --git a/build/_compileJava_2/net/minecraftforge/client/ConfigScreenHandler$ConfigScreenFactory.class b/build/_compileJava_2/net/minecraftforge/client/ConfigScreenHandler$ConfigScreenFactory.class new file mode 100644 index 000000000..881b57b7b Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/client/ConfigScreenHandler$ConfigScreenFactory.class differ diff --git a/build/_compileJava_2/net/minecraftforge/client/ConfigScreenHandler.class b/build/_compileJava_2/net/minecraftforge/client/ConfigScreenHandler.class new file mode 100644 index 000000000..9935e5afc Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/client/ConfigScreenHandler.class differ diff --git a/build/_compileJava_2/net/minecraftforge/client/CreativeModeTabSearchRegistry.class b/build/_compileJava_2/net/minecraftforge/client/CreativeModeTabSearchRegistry.class new file mode 100644 index 000000000..3b9f429f1 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/client/CreativeModeTabSearchRegistry.class differ diff --git a/build/_compileJava_2/net/minecraftforge/client/DimensionSpecialEffectsManager.class b/build/_compileJava_2/net/minecraftforge/client/DimensionSpecialEffectsManager.class new file mode 100644 index 000000000..7fae0e7d9 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/client/DimensionSpecialEffectsManager.class differ diff --git a/build/_compileJava_2/net/minecraftforge/client/EntitySpectatorShaderManager.class b/build/_compileJava_2/net/minecraftforge/client/EntitySpectatorShaderManager.class new file mode 100644 index 000000000..f0b0491b4 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/client/EntitySpectatorShaderManager.class differ diff --git a/build/_compileJava_2/net/minecraftforge/client/ExtendedServerListData.class b/build/_compileJava_2/net/minecraftforge/client/ExtendedServerListData.class new file mode 100644 index 000000000..50058f50d Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/client/ExtendedServerListData.class differ diff --git a/build/_compileJava_2/net/minecraftforge/client/FireworkShapeFactoryRegistry$Factory.class b/build/_compileJava_2/net/minecraftforge/client/FireworkShapeFactoryRegistry$Factory.class new file mode 100644 index 000000000..81ac5ac5a Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/client/FireworkShapeFactoryRegistry$Factory.class differ diff --git a/build/_compileJava_2/net/minecraftforge/client/FireworkShapeFactoryRegistry.class b/build/_compileJava_2/net/minecraftforge/client/FireworkShapeFactoryRegistry.class new file mode 100644 index 000000000..a08d32efd Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/client/FireworkShapeFactoryRegistry.class differ diff --git a/build/_compileJava_2/net/minecraftforge/client/ForgeHooksClient$1.class b/build/_compileJava_2/net/minecraftforge/client/ForgeHooksClient$1.class new file mode 100644 index 000000000..ebb36fd9b Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/client/ForgeHooksClient$1.class differ diff --git a/build/_compileJava_2/net/minecraftforge/client/ForgeHooksClient$ClientEvents.class b/build/_compileJava_2/net/minecraftforge/client/ForgeHooksClient$ClientEvents.class new file mode 100644 index 000000000..2a5dc4f67 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/client/ForgeHooksClient$ClientEvents.class differ diff --git a/build/_compileJava_2/net/minecraftforge/client/ForgeHooksClient.class b/build/_compileJava_2/net/minecraftforge/client/ForgeHooksClient.class new file mode 100644 index 000000000..00c0e0437 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/client/ForgeHooksClient.class differ diff --git a/build/_compileJava_2/net/minecraftforge/client/ForgeRenderTypes$CustomizableTextureState.class b/build/_compileJava_2/net/minecraftforge/client/ForgeRenderTypes$CustomizableTextureState.class new file mode 100644 index 000000000..1d85b97a3 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/client/ForgeRenderTypes$CustomizableTextureState.class differ diff --git a/build/_compileJava_2/net/minecraftforge/client/ForgeRenderTypes$Internal.class b/build/_compileJava_2/net/minecraftforge/client/ForgeRenderTypes$Internal.class new file mode 100644 index 000000000..b181d9b8c Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/client/ForgeRenderTypes$Internal.class differ diff --git a/build/_compileJava_2/net/minecraftforge/client/ForgeRenderTypes.class b/build/_compileJava_2/net/minecraftforge/client/ForgeRenderTypes.class new file mode 100644 index 000000000..ecd9912f3 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/client/ForgeRenderTypes.class differ diff --git a/build/_compileJava_2/net/minecraftforge/client/IArmPoseTransformer.class b/build/_compileJava_2/net/minecraftforge/client/IArmPoseTransformer.class new file mode 100644 index 000000000..48e70cfdf Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/client/IArmPoseTransformer.class differ diff --git a/build/_compileJava_2/net/minecraftforge/client/IItemDecorator.class b/build/_compileJava_2/net/minecraftforge/client/IItemDecorator.class new file mode 100644 index 000000000..2e75cd132 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/client/IItemDecorator.class differ diff --git a/build/_compileJava_2/net/minecraftforge/client/ItemDecoratorHandler.class b/build/_compileJava_2/net/minecraftforge/client/ItemDecoratorHandler.class new file mode 100644 index 000000000..89dd5e46f Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/client/ItemDecoratorHandler.class differ diff --git a/build/_compileJava_2/net/minecraftforge/client/NamedRenderTypeManager.class b/build/_compileJava_2/net/minecraftforge/client/NamedRenderTypeManager.class new file mode 100644 index 000000000..2c4cf19fd Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/client/NamedRenderTypeManager.class differ diff --git a/build/_compileJava_2/net/minecraftforge/client/PresetEditorManager.class b/build/_compileJava_2/net/minecraftforge/client/PresetEditorManager.class new file mode 100644 index 000000000..29b0b795e Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/client/PresetEditorManager.class differ diff --git a/build/_compileJava_2/net/minecraftforge/client/RecipeBookManager.class b/build/_compileJava_2/net/minecraftforge/client/RecipeBookManager.class new file mode 100644 index 000000000..c8a210bd8 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/client/RecipeBookManager.class differ diff --git a/build/_compileJava_2/net/minecraftforge/client/RenderTypeGroup.class b/build/_compileJava_2/net/minecraftforge/client/RenderTypeGroup.class new file mode 100644 index 000000000..30d452f0b Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/client/RenderTypeGroup.class differ diff --git a/build/_compileJava_2/net/minecraftforge/client/RenderTypeHelper.class b/build/_compileJava_2/net/minecraftforge/client/RenderTypeHelper.class new file mode 100644 index 000000000..a6ad38adc Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/client/RenderTypeHelper.class differ diff --git a/build/_compileJava_2/net/minecraftforge/client/StencilManager.class b/build/_compileJava_2/net/minecraftforge/client/StencilManager.class new file mode 100644 index 000000000..b4f8f17ef Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/client/StencilManager.class differ diff --git a/build/_compileJava_2/net/minecraftforge/client/event/ClientChatEvent.class b/build/_compileJava_2/net/minecraftforge/client/event/ClientChatEvent.class new file mode 100644 index 000000000..3018a1f49 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/client/event/ClientChatEvent.class differ diff --git a/build/_compileJava_2/net/minecraftforge/client/event/ClientChatReceivedEvent$Player.class b/build/_compileJava_2/net/minecraftforge/client/event/ClientChatReceivedEvent$Player.class new file mode 100644 index 000000000..826f7c591 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/client/event/ClientChatReceivedEvent$Player.class differ diff --git a/build/_compileJava_2/net/minecraftforge/client/event/ClientChatReceivedEvent$System.class b/build/_compileJava_2/net/minecraftforge/client/event/ClientChatReceivedEvent$System.class new file mode 100644 index 000000000..8ec4d5bfe Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/client/event/ClientChatReceivedEvent$System.class differ diff --git a/build/_compileJava_2/net/minecraftforge/client/event/ClientChatReceivedEvent.class b/build/_compileJava_2/net/minecraftforge/client/event/ClientChatReceivedEvent.class new file mode 100644 index 000000000..4e5ffb461 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/client/event/ClientChatReceivedEvent.class differ diff --git a/build/_compileJava_2/net/minecraftforge/client/event/ClientPlayerChangeGameTypeEvent.class b/build/_compileJava_2/net/minecraftforge/client/event/ClientPlayerChangeGameTypeEvent.class new file mode 100644 index 000000000..d5db9eca6 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/client/event/ClientPlayerChangeGameTypeEvent.class differ diff --git a/build/_compileJava_2/net/minecraftforge/client/event/ClientPlayerNetworkEvent$Clone.class b/build/_compileJava_2/net/minecraftforge/client/event/ClientPlayerNetworkEvent$Clone.class new file mode 100644 index 000000000..230061adc Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/client/event/ClientPlayerNetworkEvent$Clone.class differ diff --git a/build/_compileJava_2/net/minecraftforge/client/event/ClientPlayerNetworkEvent$LoggingIn.class b/build/_compileJava_2/net/minecraftforge/client/event/ClientPlayerNetworkEvent$LoggingIn.class new file mode 100644 index 000000000..0dfedd711 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/client/event/ClientPlayerNetworkEvent$LoggingIn.class differ diff --git a/build/_compileJava_2/net/minecraftforge/client/event/ClientPlayerNetworkEvent$LoggingOut.class b/build/_compileJava_2/net/minecraftforge/client/event/ClientPlayerNetworkEvent$LoggingOut.class new file mode 100644 index 000000000..80547e713 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/client/event/ClientPlayerNetworkEvent$LoggingOut.class differ diff --git a/build/_compileJava_2/net/minecraftforge/client/event/ClientPlayerNetworkEvent.class b/build/_compileJava_2/net/minecraftforge/client/event/ClientPlayerNetworkEvent.class new file mode 100644 index 000000000..237cf5b58 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/client/event/ClientPlayerNetworkEvent.class differ diff --git a/build/_compileJava_2/net/minecraftforge/client/event/ComputeFovModifierEvent.class b/build/_compileJava_2/net/minecraftforge/client/event/ComputeFovModifierEvent.class new file mode 100644 index 000000000..4bfacd3b2 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/client/event/ComputeFovModifierEvent.class differ diff --git a/build/_compileJava_2/net/minecraftforge/client/event/ContainerScreenEvent$Render$Background.class b/build/_compileJava_2/net/minecraftforge/client/event/ContainerScreenEvent$Render$Background.class new file mode 100644 index 000000000..dcb07641c Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/client/event/ContainerScreenEvent$Render$Background.class differ diff --git a/build/_compileJava_2/net/minecraftforge/client/event/ContainerScreenEvent$Render$Foreground.class b/build/_compileJava_2/net/minecraftforge/client/event/ContainerScreenEvent$Render$Foreground.class new file mode 100644 index 000000000..1d02d31f8 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/client/event/ContainerScreenEvent$Render$Foreground.class differ diff --git a/build/_compileJava_2/net/minecraftforge/client/event/ContainerScreenEvent$Render.class b/build/_compileJava_2/net/minecraftforge/client/event/ContainerScreenEvent$Render.class new file mode 100644 index 000000000..e8095d0fc Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/client/event/ContainerScreenEvent$Render.class differ diff --git a/build/_compileJava_2/net/minecraftforge/client/event/ContainerScreenEvent.class b/build/_compileJava_2/net/minecraftforge/client/event/ContainerScreenEvent.class new file mode 100644 index 000000000..cb11b52c3 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/client/event/ContainerScreenEvent.class differ diff --git a/build/_compileJava_2/net/minecraftforge/client/event/CustomizeGuiOverlayEvent$BossEventProgress.class b/build/_compileJava_2/net/minecraftforge/client/event/CustomizeGuiOverlayEvent$BossEventProgress.class new file mode 100644 index 000000000..1325141b5 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/client/event/CustomizeGuiOverlayEvent$BossEventProgress.class differ diff --git a/build/_compileJava_2/net/minecraftforge/client/event/CustomizeGuiOverlayEvent$Chat.class b/build/_compileJava_2/net/minecraftforge/client/event/CustomizeGuiOverlayEvent$Chat.class new file mode 100644 index 000000000..9eb36dabe Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/client/event/CustomizeGuiOverlayEvent$Chat.class differ diff --git a/build/_compileJava_2/net/minecraftforge/client/event/CustomizeGuiOverlayEvent$DebugText.class b/build/_compileJava_2/net/minecraftforge/client/event/CustomizeGuiOverlayEvent$DebugText.class new file mode 100644 index 000000000..1892e93bc Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/client/event/CustomizeGuiOverlayEvent$DebugText.class differ diff --git a/build/_compileJava_2/net/minecraftforge/client/event/CustomizeGuiOverlayEvent.class b/build/_compileJava_2/net/minecraftforge/client/event/CustomizeGuiOverlayEvent.class new file mode 100644 index 000000000..95088a4f5 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/client/event/CustomizeGuiOverlayEvent.class differ diff --git a/build/_compileJava_2/net/minecraftforge/client/event/EntityRenderersEvent$AddLayers.class b/build/_compileJava_2/net/minecraftforge/client/event/EntityRenderersEvent$AddLayers.class new file mode 100644 index 000000000..f16842274 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/client/event/EntityRenderersEvent$AddLayers.class differ diff --git a/build/_compileJava_2/net/minecraftforge/client/event/EntityRenderersEvent$CreateSkullModels.class b/build/_compileJava_2/net/minecraftforge/client/event/EntityRenderersEvent$CreateSkullModels.class new file mode 100644 index 000000000..7f119e005 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/client/event/EntityRenderersEvent$CreateSkullModels.class differ diff --git a/build/_compileJava_2/net/minecraftforge/client/event/EntityRenderersEvent$RegisterLayerDefinitions.class b/build/_compileJava_2/net/minecraftforge/client/event/EntityRenderersEvent$RegisterLayerDefinitions.class new file mode 100644 index 000000000..311b2bfc7 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/client/event/EntityRenderersEvent$RegisterLayerDefinitions.class differ diff --git a/build/_compileJava_2/net/minecraftforge/client/event/EntityRenderersEvent$RegisterRenderers.class b/build/_compileJava_2/net/minecraftforge/client/event/EntityRenderersEvent$RegisterRenderers.class new file mode 100644 index 000000000..4d7926ce7 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/client/event/EntityRenderersEvent$RegisterRenderers.class differ diff --git a/build/_compileJava_2/net/minecraftforge/client/event/EntityRenderersEvent.class b/build/_compileJava_2/net/minecraftforge/client/event/EntityRenderersEvent.class new file mode 100644 index 000000000..095245c03 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/client/event/EntityRenderersEvent.class differ diff --git a/build/_compileJava_2/net/minecraftforge/client/event/InputEvent$InteractionKeyMappingTriggered.class b/build/_compileJava_2/net/minecraftforge/client/event/InputEvent$InteractionKeyMappingTriggered.class new file mode 100644 index 000000000..405a05d92 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/client/event/InputEvent$InteractionKeyMappingTriggered.class differ diff --git a/build/_compileJava_2/net/minecraftforge/client/event/InputEvent$Key.class b/build/_compileJava_2/net/minecraftforge/client/event/InputEvent$Key.class new file mode 100644 index 000000000..364a7ab6c Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/client/event/InputEvent$Key.class differ diff --git a/build/_compileJava_2/net/minecraftforge/client/event/InputEvent$MouseButton$Post.class b/build/_compileJava_2/net/minecraftforge/client/event/InputEvent$MouseButton$Post.class new file mode 100644 index 000000000..d803abfa8 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/client/event/InputEvent$MouseButton$Post.class differ diff --git a/build/_compileJava_2/net/minecraftforge/client/event/InputEvent$MouseButton$Pre.class b/build/_compileJava_2/net/minecraftforge/client/event/InputEvent$MouseButton$Pre.class new file mode 100644 index 000000000..5bc097e18 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/client/event/InputEvent$MouseButton$Pre.class differ diff --git a/build/_compileJava_2/net/minecraftforge/client/event/InputEvent$MouseButton.class b/build/_compileJava_2/net/minecraftforge/client/event/InputEvent$MouseButton.class new file mode 100644 index 000000000..cc97aa582 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/client/event/InputEvent$MouseButton.class differ diff --git a/build/_compileJava_2/net/minecraftforge/client/event/InputEvent$MouseScrollingEvent.class b/build/_compileJava_2/net/minecraftforge/client/event/InputEvent$MouseScrollingEvent.class new file mode 100644 index 000000000..e7a93e03d Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/client/event/InputEvent$MouseScrollingEvent.class differ diff --git a/build/_compileJava_2/net/minecraftforge/client/event/InputEvent.class b/build/_compileJava_2/net/minecraftforge/client/event/InputEvent.class new file mode 100644 index 000000000..0ed279623 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/client/event/InputEvent.class differ diff --git a/build/_compileJava_2/net/minecraftforge/client/event/ModelEvent$BakingCompleted.class b/build/_compileJava_2/net/minecraftforge/client/event/ModelEvent$BakingCompleted.class new file mode 100644 index 000000000..a4967c99f Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/client/event/ModelEvent$BakingCompleted.class differ diff --git a/build/_compileJava_2/net/minecraftforge/client/event/ModelEvent$ModifyBakingResult.class b/build/_compileJava_2/net/minecraftforge/client/event/ModelEvent$ModifyBakingResult.class new file mode 100644 index 000000000..f6b084db9 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/client/event/ModelEvent$ModifyBakingResult.class differ diff --git a/build/_compileJava_2/net/minecraftforge/client/event/ModelEvent$RegisterAdditional.class b/build/_compileJava_2/net/minecraftforge/client/event/ModelEvent$RegisterAdditional.class new file mode 100644 index 000000000..0e73040de Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/client/event/ModelEvent$RegisterAdditional.class differ diff --git a/build/_compileJava_2/net/minecraftforge/client/event/ModelEvent$RegisterGeometryLoaders.class b/build/_compileJava_2/net/minecraftforge/client/event/ModelEvent$RegisterGeometryLoaders.class new file mode 100644 index 000000000..d4d8a27cd Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/client/event/ModelEvent$RegisterGeometryLoaders.class differ diff --git a/build/_compileJava_2/net/minecraftforge/client/event/ModelEvent.class b/build/_compileJava_2/net/minecraftforge/client/event/ModelEvent.class new file mode 100644 index 000000000..3c8492590 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/client/event/ModelEvent.class differ diff --git a/build/_compileJava_2/net/minecraftforge/client/event/MovementInputUpdateEvent.class b/build/_compileJava_2/net/minecraftforge/client/event/MovementInputUpdateEvent.class new file mode 100644 index 000000000..5a90598a9 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/client/event/MovementInputUpdateEvent.class differ diff --git a/build/_compileJava_2/net/minecraftforge/client/event/RecipesUpdatedEvent.class b/build/_compileJava_2/net/minecraftforge/client/event/RecipesUpdatedEvent.class new file mode 100644 index 000000000..40a6cffb0 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/client/event/RecipesUpdatedEvent.class differ diff --git a/build/_compileJava_2/net/minecraftforge/client/event/RegisterClientCommandsEvent.class b/build/_compileJava_2/net/minecraftforge/client/event/RegisterClientCommandsEvent.class new file mode 100644 index 000000000..12ce3edb5 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/client/event/RegisterClientCommandsEvent.class differ diff --git a/build/_compileJava_2/net/minecraftforge/client/event/RegisterClientReloadListenersEvent.class b/build/_compileJava_2/net/minecraftforge/client/event/RegisterClientReloadListenersEvent.class new file mode 100644 index 000000000..8127154fd Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/client/event/RegisterClientReloadListenersEvent.class differ diff --git a/build/_compileJava_2/net/minecraftforge/client/event/RegisterClientTooltipComponentFactoriesEvent.class b/build/_compileJava_2/net/minecraftforge/client/event/RegisterClientTooltipComponentFactoriesEvent.class new file mode 100644 index 000000000..9f1acd480 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/client/event/RegisterClientTooltipComponentFactoriesEvent.class differ diff --git a/build/_compileJava_2/net/minecraftforge/client/event/RegisterColorHandlersEvent$Block.class b/build/_compileJava_2/net/minecraftforge/client/event/RegisterColorHandlersEvent$Block.class new file mode 100644 index 000000000..646427d97 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/client/event/RegisterColorHandlersEvent$Block.class differ diff --git a/build/_compileJava_2/net/minecraftforge/client/event/RegisterColorHandlersEvent$ColorResolvers.class b/build/_compileJava_2/net/minecraftforge/client/event/RegisterColorHandlersEvent$ColorResolvers.class new file mode 100644 index 000000000..550b9ff7b Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/client/event/RegisterColorHandlersEvent$ColorResolvers.class differ diff --git a/build/_compileJava_2/net/minecraftforge/client/event/RegisterColorHandlersEvent$Item.class b/build/_compileJava_2/net/minecraftforge/client/event/RegisterColorHandlersEvent$Item.class new file mode 100644 index 000000000..4b9a8a766 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/client/event/RegisterColorHandlersEvent$Item.class differ diff --git a/build/_compileJava_2/net/minecraftforge/client/event/RegisterColorHandlersEvent.class b/build/_compileJava_2/net/minecraftforge/client/event/RegisterColorHandlersEvent.class new file mode 100644 index 000000000..a1a7ef00e Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/client/event/RegisterColorHandlersEvent.class differ diff --git a/build/_compileJava_2/net/minecraftforge/client/event/RegisterDimensionSpecialEffectsEvent.class b/build/_compileJava_2/net/minecraftforge/client/event/RegisterDimensionSpecialEffectsEvent.class new file mode 100644 index 000000000..f3199b144 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/client/event/RegisterDimensionSpecialEffectsEvent.class differ diff --git a/build/_compileJava_2/net/minecraftforge/client/event/RegisterEntitySpectatorShadersEvent.class b/build/_compileJava_2/net/minecraftforge/client/event/RegisterEntitySpectatorShadersEvent.class new file mode 100644 index 000000000..6132d94d1 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/client/event/RegisterEntitySpectatorShadersEvent.class differ diff --git a/build/_compileJava_2/net/minecraftforge/client/event/RegisterGuiOverlaysEvent$Ordering.class b/build/_compileJava_2/net/minecraftforge/client/event/RegisterGuiOverlaysEvent$Ordering.class new file mode 100644 index 000000000..47f1c41f0 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/client/event/RegisterGuiOverlaysEvent$Ordering.class differ diff --git a/build/_compileJava_2/net/minecraftforge/client/event/RegisterGuiOverlaysEvent.class b/build/_compileJava_2/net/minecraftforge/client/event/RegisterGuiOverlaysEvent.class new file mode 100644 index 000000000..89f1d61f8 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/client/event/RegisterGuiOverlaysEvent.class differ diff --git a/build/_compileJava_2/net/minecraftforge/client/event/RegisterItemDecorationsEvent.class b/build/_compileJava_2/net/minecraftforge/client/event/RegisterItemDecorationsEvent.class new file mode 100644 index 000000000..63db1faac Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/client/event/RegisterItemDecorationsEvent.class differ diff --git a/build/_compileJava_2/net/minecraftforge/client/event/RegisterKeyMappingsEvent.class b/build/_compileJava_2/net/minecraftforge/client/event/RegisterKeyMappingsEvent.class new file mode 100644 index 000000000..c7e6177f6 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/client/event/RegisterKeyMappingsEvent.class differ diff --git a/build/_compileJava_2/net/minecraftforge/client/event/RegisterNamedRenderTypesEvent.class b/build/_compileJava_2/net/minecraftforge/client/event/RegisterNamedRenderTypesEvent.class new file mode 100644 index 000000000..33b179d96 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/client/event/RegisterNamedRenderTypesEvent.class differ diff --git a/build/_compileJava_2/net/minecraftforge/client/event/RegisterParticleProvidersEvent.class b/build/_compileJava_2/net/minecraftforge/client/event/RegisterParticleProvidersEvent.class new file mode 100644 index 000000000..35c20ce10 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/client/event/RegisterParticleProvidersEvent.class differ diff --git a/build/_compileJava_2/net/minecraftforge/client/event/RegisterPresetEditorsEvent.class b/build/_compileJava_2/net/minecraftforge/client/event/RegisterPresetEditorsEvent.class new file mode 100644 index 000000000..0fb19d506 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/client/event/RegisterPresetEditorsEvent.class differ diff --git a/build/_compileJava_2/net/minecraftforge/client/event/RegisterRecipeBookCategoriesEvent.class b/build/_compileJava_2/net/minecraftforge/client/event/RegisterRecipeBookCategoriesEvent.class new file mode 100644 index 000000000..2ea1a507d Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/client/event/RegisterRecipeBookCategoriesEvent.class differ diff --git a/build/_compileJava_2/net/minecraftforge/client/event/RegisterShadersEvent.class b/build/_compileJava_2/net/minecraftforge/client/event/RegisterShadersEvent.class new file mode 100644 index 000000000..c3e295c4a Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/client/event/RegisterShadersEvent.class differ diff --git a/build/_compileJava_2/net/minecraftforge/client/event/RegisterTextureAtlasSpriteLoadersEvent.class b/build/_compileJava_2/net/minecraftforge/client/event/RegisterTextureAtlasSpriteLoadersEvent.class new file mode 100644 index 000000000..49fb95941 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/client/event/RegisterTextureAtlasSpriteLoadersEvent.class differ diff --git a/build/_compileJava_2/net/minecraftforge/client/event/RenderArmEvent.class b/build/_compileJava_2/net/minecraftforge/client/event/RenderArmEvent.class new file mode 100644 index 000000000..37444901d Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/client/event/RenderArmEvent.class differ diff --git a/build/_compileJava_2/net/minecraftforge/client/event/RenderBlockScreenEffectEvent$OverlayType.class b/build/_compileJava_2/net/minecraftforge/client/event/RenderBlockScreenEffectEvent$OverlayType.class new file mode 100644 index 000000000..308e6d716 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/client/event/RenderBlockScreenEffectEvent$OverlayType.class differ diff --git a/build/_compileJava_2/net/minecraftforge/client/event/RenderBlockScreenEffectEvent.class b/build/_compileJava_2/net/minecraftforge/client/event/RenderBlockScreenEffectEvent.class new file mode 100644 index 000000000..41721715b Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/client/event/RenderBlockScreenEffectEvent.class differ diff --git a/build/_compileJava_2/net/minecraftforge/client/event/RenderGuiEvent$Post.class b/build/_compileJava_2/net/minecraftforge/client/event/RenderGuiEvent$Post.class new file mode 100644 index 000000000..2b395f779 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/client/event/RenderGuiEvent$Post.class differ diff --git a/build/_compileJava_2/net/minecraftforge/client/event/RenderGuiEvent$Pre.class b/build/_compileJava_2/net/minecraftforge/client/event/RenderGuiEvent$Pre.class new file mode 100644 index 000000000..b545f577f Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/client/event/RenderGuiEvent$Pre.class differ diff --git a/build/_compileJava_2/net/minecraftforge/client/event/RenderGuiEvent.class b/build/_compileJava_2/net/minecraftforge/client/event/RenderGuiEvent.class new file mode 100644 index 000000000..13a3c6272 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/client/event/RenderGuiEvent.class differ diff --git a/build/_compileJava_2/net/minecraftforge/client/event/RenderGuiOverlayEvent$Post.class b/build/_compileJava_2/net/minecraftforge/client/event/RenderGuiOverlayEvent$Post.class new file mode 100644 index 000000000..b21d86d7b Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/client/event/RenderGuiOverlayEvent$Post.class differ diff --git a/build/_compileJava_2/net/minecraftforge/client/event/RenderGuiOverlayEvent$Pre.class b/build/_compileJava_2/net/minecraftforge/client/event/RenderGuiOverlayEvent$Pre.class new file mode 100644 index 000000000..572dee3e7 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/client/event/RenderGuiOverlayEvent$Pre.class differ diff --git a/build/_compileJava_2/net/minecraftforge/client/event/RenderGuiOverlayEvent.class b/build/_compileJava_2/net/minecraftforge/client/event/RenderGuiOverlayEvent.class new file mode 100644 index 000000000..480a5defd Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/client/event/RenderGuiOverlayEvent.class differ diff --git a/build/_compileJava_2/net/minecraftforge/client/event/RenderHandEvent.class b/build/_compileJava_2/net/minecraftforge/client/event/RenderHandEvent.class new file mode 100644 index 000000000..256d45a07 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/client/event/RenderHandEvent.class differ diff --git a/build/_compileJava_2/net/minecraftforge/client/event/RenderHighlightEvent$Block.class b/build/_compileJava_2/net/minecraftforge/client/event/RenderHighlightEvent$Block.class new file mode 100644 index 000000000..08973b97c Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/client/event/RenderHighlightEvent$Block.class differ diff --git a/build/_compileJava_2/net/minecraftforge/client/event/RenderHighlightEvent$Entity.class b/build/_compileJava_2/net/minecraftforge/client/event/RenderHighlightEvent$Entity.class new file mode 100644 index 000000000..d720f9212 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/client/event/RenderHighlightEvent$Entity.class differ diff --git a/build/_compileJava_2/net/minecraftforge/client/event/RenderHighlightEvent.class b/build/_compileJava_2/net/minecraftforge/client/event/RenderHighlightEvent.class new file mode 100644 index 000000000..49b5d174e Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/client/event/RenderHighlightEvent.class differ diff --git a/build/_compileJava_2/net/minecraftforge/client/event/RenderItemInFrameEvent.class b/build/_compileJava_2/net/minecraftforge/client/event/RenderItemInFrameEvent.class new file mode 100644 index 000000000..8bbd32130 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/client/event/RenderItemInFrameEvent.class differ diff --git a/build/_compileJava_2/net/minecraftforge/client/event/RenderLevelStageEvent$RegisterStageEvent.class b/build/_compileJava_2/net/minecraftforge/client/event/RenderLevelStageEvent$RegisterStageEvent.class new file mode 100644 index 000000000..fea58c406 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/client/event/RenderLevelStageEvent$RegisterStageEvent.class differ diff --git a/build/_compileJava_2/net/minecraftforge/client/event/RenderLevelStageEvent$Stage.class b/build/_compileJava_2/net/minecraftforge/client/event/RenderLevelStageEvent$Stage.class new file mode 100644 index 000000000..f60e983fc Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/client/event/RenderLevelStageEvent$Stage.class differ diff --git a/build/_compileJava_2/net/minecraftforge/client/event/RenderLevelStageEvent.class b/build/_compileJava_2/net/minecraftforge/client/event/RenderLevelStageEvent.class new file mode 100644 index 000000000..8d06c59e7 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/client/event/RenderLevelStageEvent.class differ diff --git a/build/_compileJava_2/net/minecraftforge/client/event/RenderLivingEvent$Post.class b/build/_compileJava_2/net/minecraftforge/client/event/RenderLivingEvent$Post.class new file mode 100644 index 000000000..80e4bd013 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/client/event/RenderLivingEvent$Post.class differ diff --git a/build/_compileJava_2/net/minecraftforge/client/event/RenderLivingEvent$Pre.class b/build/_compileJava_2/net/minecraftforge/client/event/RenderLivingEvent$Pre.class new file mode 100644 index 000000000..f2704b4cd Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/client/event/RenderLivingEvent$Pre.class differ diff --git a/build/_compileJava_2/net/minecraftforge/client/event/RenderLivingEvent.class b/build/_compileJava_2/net/minecraftforge/client/event/RenderLivingEvent.class new file mode 100644 index 000000000..aced8e718 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/client/event/RenderLivingEvent.class differ diff --git a/build/_compileJava_2/net/minecraftforge/client/event/RenderNameTagEvent.class b/build/_compileJava_2/net/minecraftforge/client/event/RenderNameTagEvent.class new file mode 100644 index 000000000..c76ef2af8 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/client/event/RenderNameTagEvent.class differ diff --git a/build/_compileJava_2/net/minecraftforge/client/event/RenderPlayerEvent$Post.class b/build/_compileJava_2/net/minecraftforge/client/event/RenderPlayerEvent$Post.class new file mode 100644 index 000000000..d87adbd2f Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/client/event/RenderPlayerEvent$Post.class differ diff --git a/build/_compileJava_2/net/minecraftforge/client/event/RenderPlayerEvent$Pre.class b/build/_compileJava_2/net/minecraftforge/client/event/RenderPlayerEvent$Pre.class new file mode 100644 index 000000000..4e04af88a Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/client/event/RenderPlayerEvent$Pre.class differ diff --git a/build/_compileJava_2/net/minecraftforge/client/event/RenderPlayerEvent.class b/build/_compileJava_2/net/minecraftforge/client/event/RenderPlayerEvent.class new file mode 100644 index 000000000..1bcd10958 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/client/event/RenderPlayerEvent.class differ diff --git a/build/_compileJava_2/net/minecraftforge/client/event/RenderTooltipEvent$Color.class b/build/_compileJava_2/net/minecraftforge/client/event/RenderTooltipEvent$Color.class new file mode 100644 index 000000000..4d9e45d73 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/client/event/RenderTooltipEvent$Color.class differ diff --git a/build/_compileJava_2/net/minecraftforge/client/event/RenderTooltipEvent$GatherComponents.class b/build/_compileJava_2/net/minecraftforge/client/event/RenderTooltipEvent$GatherComponents.class new file mode 100644 index 000000000..ddddd165b Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/client/event/RenderTooltipEvent$GatherComponents.class differ diff --git a/build/_compileJava_2/net/minecraftforge/client/event/RenderTooltipEvent$Pre.class b/build/_compileJava_2/net/minecraftforge/client/event/RenderTooltipEvent$Pre.class new file mode 100644 index 000000000..5a4858d4e Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/client/event/RenderTooltipEvent$Pre.class differ diff --git a/build/_compileJava_2/net/minecraftforge/client/event/RenderTooltipEvent.class b/build/_compileJava_2/net/minecraftforge/client/event/RenderTooltipEvent.class new file mode 100644 index 000000000..dff238988 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/client/event/RenderTooltipEvent.class differ diff --git a/build/_compileJava_2/net/minecraftforge/client/event/ScreenEvent$BackgroundRendered.class b/build/_compileJava_2/net/minecraftforge/client/event/ScreenEvent$BackgroundRendered.class new file mode 100644 index 000000000..46f5ebab8 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/client/event/ScreenEvent$BackgroundRendered.class differ diff --git a/build/_compileJava_2/net/minecraftforge/client/event/ScreenEvent$CharacterTyped$Post.class b/build/_compileJava_2/net/minecraftforge/client/event/ScreenEvent$CharacterTyped$Post.class new file mode 100644 index 000000000..62b4e87f7 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/client/event/ScreenEvent$CharacterTyped$Post.class differ diff --git a/build/_compileJava_2/net/minecraftforge/client/event/ScreenEvent$CharacterTyped$Pre.class b/build/_compileJava_2/net/minecraftforge/client/event/ScreenEvent$CharacterTyped$Pre.class new file mode 100644 index 000000000..5e1760afb Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/client/event/ScreenEvent$CharacterTyped$Pre.class differ diff --git a/build/_compileJava_2/net/minecraftforge/client/event/ScreenEvent$CharacterTyped.class b/build/_compileJava_2/net/minecraftforge/client/event/ScreenEvent$CharacterTyped.class new file mode 100644 index 000000000..00ea44cdc Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/client/event/ScreenEvent$CharacterTyped.class differ diff --git a/build/_compileJava_2/net/minecraftforge/client/event/ScreenEvent$Closing.class b/build/_compileJava_2/net/minecraftforge/client/event/ScreenEvent$Closing.class new file mode 100644 index 000000000..55232bdf4 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/client/event/ScreenEvent$Closing.class differ diff --git a/build/_compileJava_2/net/minecraftforge/client/event/ScreenEvent$Init$Post.class b/build/_compileJava_2/net/minecraftforge/client/event/ScreenEvent$Init$Post.class new file mode 100644 index 000000000..db70026b4 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/client/event/ScreenEvent$Init$Post.class differ diff --git a/build/_compileJava_2/net/minecraftforge/client/event/ScreenEvent$Init$Pre.class b/build/_compileJava_2/net/minecraftforge/client/event/ScreenEvent$Init$Pre.class new file mode 100644 index 000000000..a37d223f8 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/client/event/ScreenEvent$Init$Pre.class differ diff --git a/build/_compileJava_2/net/minecraftforge/client/event/ScreenEvent$Init.class b/build/_compileJava_2/net/minecraftforge/client/event/ScreenEvent$Init.class new file mode 100644 index 000000000..c9dd752f6 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/client/event/ScreenEvent$Init.class differ diff --git a/build/_compileJava_2/net/minecraftforge/client/event/ScreenEvent$KeyInput.class b/build/_compileJava_2/net/minecraftforge/client/event/ScreenEvent$KeyInput.class new file mode 100644 index 000000000..469c052a5 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/client/event/ScreenEvent$KeyInput.class differ diff --git a/build/_compileJava_2/net/minecraftforge/client/event/ScreenEvent$KeyPressed$Post.class b/build/_compileJava_2/net/minecraftforge/client/event/ScreenEvent$KeyPressed$Post.class new file mode 100644 index 000000000..84f0ac748 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/client/event/ScreenEvent$KeyPressed$Post.class differ diff --git a/build/_compileJava_2/net/minecraftforge/client/event/ScreenEvent$KeyPressed$Pre.class b/build/_compileJava_2/net/minecraftforge/client/event/ScreenEvent$KeyPressed$Pre.class new file mode 100644 index 000000000..00619e58d Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/client/event/ScreenEvent$KeyPressed$Pre.class differ diff --git a/build/_compileJava_2/net/minecraftforge/client/event/ScreenEvent$KeyPressed.class b/build/_compileJava_2/net/minecraftforge/client/event/ScreenEvent$KeyPressed.class new file mode 100644 index 000000000..130abbeb2 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/client/event/ScreenEvent$KeyPressed.class differ diff --git a/build/_compileJava_2/net/minecraftforge/client/event/ScreenEvent$KeyReleased$Post.class b/build/_compileJava_2/net/minecraftforge/client/event/ScreenEvent$KeyReleased$Post.class new file mode 100644 index 000000000..8ff0b9c67 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/client/event/ScreenEvent$KeyReleased$Post.class differ diff --git a/build/_compileJava_2/net/minecraftforge/client/event/ScreenEvent$KeyReleased$Pre.class b/build/_compileJava_2/net/minecraftforge/client/event/ScreenEvent$KeyReleased$Pre.class new file mode 100644 index 000000000..6dcc916c1 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/client/event/ScreenEvent$KeyReleased$Pre.class differ diff --git a/build/_compileJava_2/net/minecraftforge/client/event/ScreenEvent$KeyReleased.class b/build/_compileJava_2/net/minecraftforge/client/event/ScreenEvent$KeyReleased.class new file mode 100644 index 000000000..11811d039 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/client/event/ScreenEvent$KeyReleased.class differ diff --git a/build/_compileJava_2/net/minecraftforge/client/event/ScreenEvent$MouseButtonPressed$Post.class b/build/_compileJava_2/net/minecraftforge/client/event/ScreenEvent$MouseButtonPressed$Post.class new file mode 100644 index 000000000..a7577c464 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/client/event/ScreenEvent$MouseButtonPressed$Post.class differ diff --git a/build/_compileJava_2/net/minecraftforge/client/event/ScreenEvent$MouseButtonPressed$Pre.class b/build/_compileJava_2/net/minecraftforge/client/event/ScreenEvent$MouseButtonPressed$Pre.class new file mode 100644 index 000000000..f21d19285 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/client/event/ScreenEvent$MouseButtonPressed$Pre.class differ diff --git a/build/_compileJava_2/net/minecraftforge/client/event/ScreenEvent$MouseButtonPressed.class b/build/_compileJava_2/net/minecraftforge/client/event/ScreenEvent$MouseButtonPressed.class new file mode 100644 index 000000000..da0619bb8 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/client/event/ScreenEvent$MouseButtonPressed.class differ diff --git a/build/_compileJava_2/net/minecraftforge/client/event/ScreenEvent$MouseButtonReleased$Post.class b/build/_compileJava_2/net/minecraftforge/client/event/ScreenEvent$MouseButtonReleased$Post.class new file mode 100644 index 000000000..74d15f22e Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/client/event/ScreenEvent$MouseButtonReleased$Post.class differ diff --git a/build/_compileJava_2/net/minecraftforge/client/event/ScreenEvent$MouseButtonReleased$Pre.class b/build/_compileJava_2/net/minecraftforge/client/event/ScreenEvent$MouseButtonReleased$Pre.class new file mode 100644 index 000000000..628614703 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/client/event/ScreenEvent$MouseButtonReleased$Pre.class differ diff --git a/build/_compileJava_2/net/minecraftforge/client/event/ScreenEvent$MouseButtonReleased.class b/build/_compileJava_2/net/minecraftforge/client/event/ScreenEvent$MouseButtonReleased.class new file mode 100644 index 000000000..e4036bf64 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/client/event/ScreenEvent$MouseButtonReleased.class differ diff --git a/build/_compileJava_2/net/minecraftforge/client/event/ScreenEvent$MouseDragged$Post.class b/build/_compileJava_2/net/minecraftforge/client/event/ScreenEvent$MouseDragged$Post.class new file mode 100644 index 000000000..f1894706b Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/client/event/ScreenEvent$MouseDragged$Post.class differ diff --git a/build/_compileJava_2/net/minecraftforge/client/event/ScreenEvent$MouseDragged$Pre.class b/build/_compileJava_2/net/minecraftforge/client/event/ScreenEvent$MouseDragged$Pre.class new file mode 100644 index 000000000..f55c32090 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/client/event/ScreenEvent$MouseDragged$Pre.class differ diff --git a/build/_compileJava_2/net/minecraftforge/client/event/ScreenEvent$MouseDragged.class b/build/_compileJava_2/net/minecraftforge/client/event/ScreenEvent$MouseDragged.class new file mode 100644 index 000000000..cd55db873 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/client/event/ScreenEvent$MouseDragged.class differ diff --git a/build/_compileJava_2/net/minecraftforge/client/event/ScreenEvent$MouseInput.class b/build/_compileJava_2/net/minecraftforge/client/event/ScreenEvent$MouseInput.class new file mode 100644 index 000000000..aa16b095f Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/client/event/ScreenEvent$MouseInput.class differ diff --git a/build/_compileJava_2/net/minecraftforge/client/event/ScreenEvent$MouseScrolled$Post.class b/build/_compileJava_2/net/minecraftforge/client/event/ScreenEvent$MouseScrolled$Post.class new file mode 100644 index 000000000..39f22a1d7 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/client/event/ScreenEvent$MouseScrolled$Post.class differ diff --git a/build/_compileJava_2/net/minecraftforge/client/event/ScreenEvent$MouseScrolled$Pre.class b/build/_compileJava_2/net/minecraftforge/client/event/ScreenEvent$MouseScrolled$Pre.class new file mode 100644 index 000000000..f72d5fa3e Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/client/event/ScreenEvent$MouseScrolled$Pre.class differ diff --git a/build/_compileJava_2/net/minecraftforge/client/event/ScreenEvent$MouseScrolled.class b/build/_compileJava_2/net/minecraftforge/client/event/ScreenEvent$MouseScrolled.class new file mode 100644 index 000000000..450eecbb2 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/client/event/ScreenEvent$MouseScrolled.class differ diff --git a/build/_compileJava_2/net/minecraftforge/client/event/ScreenEvent$Opening.class b/build/_compileJava_2/net/minecraftforge/client/event/ScreenEvent$Opening.class new file mode 100644 index 000000000..974db3e1c Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/client/event/ScreenEvent$Opening.class differ diff --git a/build/_compileJava_2/net/minecraftforge/client/event/ScreenEvent$Render$Post.class b/build/_compileJava_2/net/minecraftforge/client/event/ScreenEvent$Render$Post.class new file mode 100644 index 000000000..68a3d465e Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/client/event/ScreenEvent$Render$Post.class differ diff --git a/build/_compileJava_2/net/minecraftforge/client/event/ScreenEvent$Render$Pre.class b/build/_compileJava_2/net/minecraftforge/client/event/ScreenEvent$Render$Pre.class new file mode 100644 index 000000000..1b5d2e8ba Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/client/event/ScreenEvent$Render$Pre.class differ diff --git a/build/_compileJava_2/net/minecraftforge/client/event/ScreenEvent$Render.class b/build/_compileJava_2/net/minecraftforge/client/event/ScreenEvent$Render.class new file mode 100644 index 000000000..b207f116c Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/client/event/ScreenEvent$Render.class differ diff --git a/build/_compileJava_2/net/minecraftforge/client/event/ScreenEvent$RenderInventoryMobEffects.class b/build/_compileJava_2/net/minecraftforge/client/event/ScreenEvent$RenderInventoryMobEffects.class new file mode 100644 index 000000000..64ee5c638 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/client/event/ScreenEvent$RenderInventoryMobEffects.class differ diff --git a/build/_compileJava_2/net/minecraftforge/client/event/ScreenEvent.class b/build/_compileJava_2/net/minecraftforge/client/event/ScreenEvent.class new file mode 100644 index 000000000..b5ff37a50 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/client/event/ScreenEvent.class differ diff --git a/build/_compileJava_2/net/minecraftforge/client/event/ScreenshotEvent.class b/build/_compileJava_2/net/minecraftforge/client/event/ScreenshotEvent.class new file mode 100644 index 000000000..4473846ab Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/client/event/ScreenshotEvent.class differ diff --git a/build/_compileJava_2/net/minecraftforge/client/event/TextureStitchEvent$Post.class b/build/_compileJava_2/net/minecraftforge/client/event/TextureStitchEvent$Post.class new file mode 100644 index 000000000..06397c911 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/client/event/TextureStitchEvent$Post.class differ diff --git a/build/_compileJava_2/net/minecraftforge/client/event/TextureStitchEvent.class b/build/_compileJava_2/net/minecraftforge/client/event/TextureStitchEvent.class new file mode 100644 index 000000000..953050f52 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/client/event/TextureStitchEvent.class differ diff --git a/build/_compileJava_2/net/minecraftforge/client/event/ToastAddEvent.class b/build/_compileJava_2/net/minecraftforge/client/event/ToastAddEvent.class new file mode 100644 index 000000000..30b34cd1c Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/client/event/ToastAddEvent.class differ diff --git a/build/_compileJava_2/net/minecraftforge/client/event/ViewportEvent$ComputeCameraAngles.class b/build/_compileJava_2/net/minecraftforge/client/event/ViewportEvent$ComputeCameraAngles.class new file mode 100644 index 000000000..5439c7e21 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/client/event/ViewportEvent$ComputeCameraAngles.class differ diff --git a/build/_compileJava_2/net/minecraftforge/client/event/ViewportEvent$ComputeFogColor.class b/build/_compileJava_2/net/minecraftforge/client/event/ViewportEvent$ComputeFogColor.class new file mode 100644 index 000000000..880c93af3 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/client/event/ViewportEvent$ComputeFogColor.class differ diff --git a/build/_compileJava_2/net/minecraftforge/client/event/ViewportEvent$ComputeFov.class b/build/_compileJava_2/net/minecraftforge/client/event/ViewportEvent$ComputeFov.class new file mode 100644 index 000000000..51d487f4e Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/client/event/ViewportEvent$ComputeFov.class differ diff --git a/build/_compileJava_2/net/minecraftforge/client/event/ViewportEvent$RenderFog.class b/build/_compileJava_2/net/minecraftforge/client/event/ViewportEvent$RenderFog.class new file mode 100644 index 000000000..f1a981063 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/client/event/ViewportEvent$RenderFog.class differ diff --git a/build/_compileJava_2/net/minecraftforge/client/event/ViewportEvent.class b/build/_compileJava_2/net/minecraftforge/client/event/ViewportEvent.class new file mode 100644 index 000000000..5aef30bd0 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/client/event/ViewportEvent.class differ diff --git a/build/_compileJava_2/net/minecraftforge/client/event/package-info.class b/build/_compileJava_2/net/minecraftforge/client/event/package-info.class new file mode 100644 index 000000000..e4a1a991b Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/client/event/package-info.class differ diff --git a/build/_compileJava_2/net/minecraftforge/client/event/sound/PlaySoundEvent.class b/build/_compileJava_2/net/minecraftforge/client/event/sound/PlaySoundEvent.class new file mode 100644 index 000000000..6d393af1c Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/client/event/sound/PlaySoundEvent.class differ diff --git a/build/_compileJava_2/net/minecraftforge/client/event/sound/PlaySoundSourceEvent.class b/build/_compileJava_2/net/minecraftforge/client/event/sound/PlaySoundSourceEvent.class new file mode 100644 index 000000000..f0c0d6581 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/client/event/sound/PlaySoundSourceEvent.class differ diff --git a/build/_compileJava_2/net/minecraftforge/client/event/sound/PlayStreamingSourceEvent.class b/build/_compileJava_2/net/minecraftforge/client/event/sound/PlayStreamingSourceEvent.class new file mode 100644 index 000000000..272213779 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/client/event/sound/PlayStreamingSourceEvent.class differ diff --git a/build/_compileJava_2/net/minecraftforge/client/event/sound/SoundEngineLoadEvent.class b/build/_compileJava_2/net/minecraftforge/client/event/sound/SoundEngineLoadEvent.class new file mode 100644 index 000000000..3624c4972 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/client/event/sound/SoundEngineLoadEvent.class differ diff --git a/build/_compileJava_2/net/minecraftforge/client/event/sound/SoundEvent$SoundSourceEvent.class b/build/_compileJava_2/net/minecraftforge/client/event/sound/SoundEvent$SoundSourceEvent.class new file mode 100644 index 000000000..f1ffd44b3 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/client/event/sound/SoundEvent$SoundSourceEvent.class differ diff --git a/build/_compileJava_2/net/minecraftforge/client/event/sound/SoundEvent.class b/build/_compileJava_2/net/minecraftforge/client/event/sound/SoundEvent.class new file mode 100644 index 000000000..6b3dc628f Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/client/event/sound/SoundEvent.class differ diff --git a/build/_compileJava_2/net/minecraftforge/client/event/sound/package-info.class b/build/_compileJava_2/net/minecraftforge/client/event/sound/package-info.class new file mode 100644 index 000000000..9b8015e5a Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/client/event/sound/package-info.class differ diff --git a/build/_compileJava_2/net/minecraftforge/client/extensions/IForgeBakedModel.class b/build/_compileJava_2/net/minecraftforge/client/extensions/IForgeBakedModel.class new file mode 100644 index 000000000..de10721ea Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/client/extensions/IForgeBakedModel.class differ diff --git a/build/_compileJava_2/net/minecraftforge/client/extensions/IForgeBlockAndTintGetter.class b/build/_compileJava_2/net/minecraftforge/client/extensions/IForgeBlockAndTintGetter.class new file mode 100644 index 000000000..d551eaace Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/client/extensions/IForgeBlockAndTintGetter.class differ diff --git a/build/_compileJava_2/net/minecraftforge/client/extensions/IForgeDimensionSpecialEffects.class b/build/_compileJava_2/net/minecraftforge/client/extensions/IForgeDimensionSpecialEffects.class new file mode 100644 index 000000000..4e429389f Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/client/extensions/IForgeDimensionSpecialEffects.class differ diff --git a/build/_compileJava_2/net/minecraftforge/client/extensions/IForgeFont.class b/build/_compileJava_2/net/minecraftforge/client/extensions/IForgeFont.class new file mode 100644 index 000000000..4df74b039 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/client/extensions/IForgeFont.class differ diff --git a/build/_compileJava_2/net/minecraftforge/client/extensions/IForgeGuiGraphics.class b/build/_compileJava_2/net/minecraftforge/client/extensions/IForgeGuiGraphics.class new file mode 100644 index 000000000..028049fab Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/client/extensions/IForgeGuiGraphics.class differ diff --git a/build/_compileJava_2/net/minecraftforge/client/extensions/IForgeKeyMapping.class b/build/_compileJava_2/net/minecraftforge/client/extensions/IForgeKeyMapping.class new file mode 100644 index 000000000..a73e5f751 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/client/extensions/IForgeKeyMapping.class differ diff --git a/build/_compileJava_2/net/minecraftforge/client/extensions/IForgeMinecraft.class b/build/_compileJava_2/net/minecraftforge/client/extensions/IForgeMinecraft.class new file mode 100644 index 000000000..1851be067 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/client/extensions/IForgeMinecraft.class differ diff --git a/build/_compileJava_2/net/minecraftforge/client/extensions/IForgeModelBaker.class b/build/_compileJava_2/net/minecraftforge/client/extensions/IForgeModelBaker.class new file mode 100644 index 000000000..d9faace2a Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/client/extensions/IForgeModelBaker.class differ diff --git a/build/_compileJava_2/net/minecraftforge/client/extensions/IForgePoseStack.class b/build/_compileJava_2/net/minecraftforge/client/extensions/IForgePoseStack.class new file mode 100644 index 000000000..e20334642 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/client/extensions/IForgePoseStack.class differ diff --git a/build/_compileJava_2/net/minecraftforge/client/extensions/IForgeVertexConsumer.class b/build/_compileJava_2/net/minecraftforge/client/extensions/IForgeVertexConsumer.class new file mode 100644 index 000000000..3d37aa847 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/client/extensions/IForgeVertexConsumer.class differ diff --git a/build/_compileJava_2/net/minecraftforge/client/extensions/common/IClientBlockExtensions$1.class b/build/_compileJava_2/net/minecraftforge/client/extensions/common/IClientBlockExtensions$1.class new file mode 100644 index 000000000..d67893ef5 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/client/extensions/common/IClientBlockExtensions$1.class differ diff --git a/build/_compileJava_2/net/minecraftforge/client/extensions/common/IClientBlockExtensions.class b/build/_compileJava_2/net/minecraftforge/client/extensions/common/IClientBlockExtensions.class new file mode 100644 index 000000000..e51504dad Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/client/extensions/common/IClientBlockExtensions.class differ diff --git a/build/_compileJava_2/net/minecraftforge/client/extensions/common/IClientFluidTypeExtensions$1.class b/build/_compileJava_2/net/minecraftforge/client/extensions/common/IClientFluidTypeExtensions$1.class new file mode 100644 index 000000000..e85539426 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/client/extensions/common/IClientFluidTypeExtensions$1.class differ diff --git a/build/_compileJava_2/net/minecraftforge/client/extensions/common/IClientFluidTypeExtensions.class b/build/_compileJava_2/net/minecraftforge/client/extensions/common/IClientFluidTypeExtensions.class new file mode 100644 index 000000000..ea8bb4a13 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/client/extensions/common/IClientFluidTypeExtensions.class differ diff --git a/build/_compileJava_2/net/minecraftforge/client/extensions/common/IClientItemExtensions$1.class b/build/_compileJava_2/net/minecraftforge/client/extensions/common/IClientItemExtensions$1.class new file mode 100644 index 000000000..dbd728fd8 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/client/extensions/common/IClientItemExtensions$1.class differ diff --git a/build/_compileJava_2/net/minecraftforge/client/extensions/common/IClientItemExtensions$FontContext.class b/build/_compileJava_2/net/minecraftforge/client/extensions/common/IClientItemExtensions$FontContext.class new file mode 100644 index 000000000..4d407b997 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/client/extensions/common/IClientItemExtensions$FontContext.class differ diff --git a/build/_compileJava_2/net/minecraftforge/client/extensions/common/IClientItemExtensions.class b/build/_compileJava_2/net/minecraftforge/client/extensions/common/IClientItemExtensions.class new file mode 100644 index 000000000..484a4ca06 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/client/extensions/common/IClientItemExtensions.class differ diff --git a/build/_compileJava_2/net/minecraftforge/client/extensions/common/IClientMobEffectExtensions$1.class b/build/_compileJava_2/net/minecraftforge/client/extensions/common/IClientMobEffectExtensions$1.class new file mode 100644 index 000000000..34dfdcda3 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/client/extensions/common/IClientMobEffectExtensions$1.class differ diff --git a/build/_compileJava_2/net/minecraftforge/client/extensions/common/IClientMobEffectExtensions.class b/build/_compileJava_2/net/minecraftforge/client/extensions/common/IClientMobEffectExtensions.class new file mode 100644 index 000000000..b6e72c4c7 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/client/extensions/common/IClientMobEffectExtensions.class differ diff --git a/build/_compileJava_2/net/minecraftforge/client/extensions/package-info.class b/build/_compileJava_2/net/minecraftforge/client/extensions/package-info.class new file mode 100644 index 000000000..0994931cc Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/client/extensions/package-info.class differ diff --git a/build/_compileJava_2/net/minecraftforge/client/gui/ClientTooltipComponentManager.class b/build/_compileJava_2/net/minecraftforge/client/gui/ClientTooltipComponentManager.class new file mode 100644 index 000000000..e86c5dfe1 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/client/gui/ClientTooltipComponentManager.class differ diff --git a/build/_compileJava_2/net/minecraftforge/client/gui/CreativeTabsScreenPage.class b/build/_compileJava_2/net/minecraftforge/client/gui/CreativeTabsScreenPage.class new file mode 100644 index 000000000..3b1a8fef0 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/client/gui/CreativeTabsScreenPage.class differ diff --git a/build/_compileJava_2/net/minecraftforge/client/gui/LoadingErrorScreen$LoadingEntryList$LoadingMessageEntry.class b/build/_compileJava_2/net/minecraftforge/client/gui/LoadingErrorScreen$LoadingEntryList$LoadingMessageEntry.class new file mode 100644 index 000000000..ffda91a98 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/client/gui/LoadingErrorScreen$LoadingEntryList$LoadingMessageEntry.class differ diff --git a/build/_compileJava_2/net/minecraftforge/client/gui/LoadingErrorScreen$LoadingEntryList.class b/build/_compileJava_2/net/minecraftforge/client/gui/LoadingErrorScreen$LoadingEntryList.class new file mode 100644 index 000000000..ed0a1d764 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/client/gui/LoadingErrorScreen$LoadingEntryList.class differ diff --git a/build/_compileJava_2/net/minecraftforge/client/gui/LoadingErrorScreen.class b/build/_compileJava_2/net/minecraftforge/client/gui/LoadingErrorScreen.class new file mode 100644 index 000000000..3bc9d8684 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/client/gui/LoadingErrorScreen.class differ diff --git a/build/_compileJava_2/net/minecraftforge/client/gui/ModListScreen$1.class b/build/_compileJava_2/net/minecraftforge/client/gui/ModListScreen$1.class new file mode 100644 index 000000000..630ac012e Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/client/gui/ModListScreen$1.class differ diff --git a/build/_compileJava_2/net/minecraftforge/client/gui/ModListScreen$InfoPanel.class b/build/_compileJava_2/net/minecraftforge/client/gui/ModListScreen$InfoPanel.class new file mode 100644 index 000000000..5ba9d516c Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/client/gui/ModListScreen$InfoPanel.class differ diff --git a/build/_compileJava_2/net/minecraftforge/client/gui/ModListScreen$SortType$1.class b/build/_compileJava_2/net/minecraftforge/client/gui/ModListScreen$SortType$1.class new file mode 100644 index 000000000..0813df27d Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/client/gui/ModListScreen$SortType$1.class differ diff --git a/build/_compileJava_2/net/minecraftforge/client/gui/ModListScreen$SortType$2.class b/build/_compileJava_2/net/minecraftforge/client/gui/ModListScreen$SortType$2.class new file mode 100644 index 000000000..819944ca0 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/client/gui/ModListScreen$SortType$2.class differ diff --git a/build/_compileJava_2/net/minecraftforge/client/gui/ModListScreen$SortType.class b/build/_compileJava_2/net/minecraftforge/client/gui/ModListScreen$SortType.class new file mode 100644 index 000000000..fb5f44f6c Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/client/gui/ModListScreen$SortType.class differ diff --git a/build/_compileJava_2/net/minecraftforge/client/gui/ModListScreen.class b/build/_compileJava_2/net/minecraftforge/client/gui/ModListScreen.class new file mode 100644 index 000000000..38981cb41 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/client/gui/ModListScreen.class differ diff --git a/build/_compileJava_2/net/minecraftforge/client/gui/ModMismatchDisconnectedScreen$MismatchInfoPanel.class b/build/_compileJava_2/net/minecraftforge/client/gui/ModMismatchDisconnectedScreen$MismatchInfoPanel.class new file mode 100644 index 000000000..4f0c5019a Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/client/gui/ModMismatchDisconnectedScreen$MismatchInfoPanel.class differ diff --git a/build/_compileJava_2/net/minecraftforge/client/gui/ModMismatchDisconnectedScreen.class b/build/_compileJava_2/net/minecraftforge/client/gui/ModMismatchDisconnectedScreen.class new file mode 100644 index 000000000..383a70da3 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/client/gui/ModMismatchDisconnectedScreen.class differ diff --git a/build/_compileJava_2/net/minecraftforge/client/gui/ScreenUtils.class b/build/_compileJava_2/net/minecraftforge/client/gui/ScreenUtils.class new file mode 100644 index 000000000..ec13cbaf1 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/client/gui/ScreenUtils.class differ diff --git a/build/_compileJava_2/net/minecraftforge/client/gui/TitleScreenModUpdateIndicator.class b/build/_compileJava_2/net/minecraftforge/client/gui/TitleScreenModUpdateIndicator.class new file mode 100644 index 000000000..d019fe24a Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/client/gui/TitleScreenModUpdateIndicator.class differ diff --git a/build/_compileJava_2/net/minecraftforge/client/gui/overlay/ForgeGui$ForgeDebugScreenOverlay.class b/build/_compileJava_2/net/minecraftforge/client/gui/overlay/ForgeGui$ForgeDebugScreenOverlay.class new file mode 100644 index 000000000..5264a1752 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/client/gui/overlay/ForgeGui$ForgeDebugScreenOverlay.class differ diff --git a/build/_compileJava_2/net/minecraftforge/client/gui/overlay/ForgeGui.class b/build/_compileJava_2/net/minecraftforge/client/gui/overlay/ForgeGui.class new file mode 100644 index 000000000..2b3a87f1d Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/client/gui/overlay/ForgeGui.class differ diff --git a/build/_compileJava_2/net/minecraftforge/client/gui/overlay/GuiOverlayManager.class b/build/_compileJava_2/net/minecraftforge/client/gui/overlay/GuiOverlayManager.class new file mode 100644 index 000000000..1f9d2461b Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/client/gui/overlay/GuiOverlayManager.class differ diff --git a/build/_compileJava_2/net/minecraftforge/client/gui/overlay/IGuiOverlay.class b/build/_compileJava_2/net/minecraftforge/client/gui/overlay/IGuiOverlay.class new file mode 100644 index 000000000..92da10051 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/client/gui/overlay/IGuiOverlay.class differ diff --git a/build/_compileJava_2/net/minecraftforge/client/gui/overlay/NamedGuiOverlay.class b/build/_compileJava_2/net/minecraftforge/client/gui/overlay/NamedGuiOverlay.class new file mode 100644 index 000000000..7a55b0bc7 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/client/gui/overlay/NamedGuiOverlay.class differ diff --git a/build/_compileJava_2/net/minecraftforge/client/gui/overlay/VanillaGuiOverlay.class b/build/_compileJava_2/net/minecraftforge/client/gui/overlay/VanillaGuiOverlay.class new file mode 100644 index 000000000..9e0d15c93 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/client/gui/overlay/VanillaGuiOverlay.class differ diff --git a/build/_compileJava_2/net/minecraftforge/client/gui/widget/ExtendedButton.class b/build/_compileJava_2/net/minecraftforge/client/gui/widget/ExtendedButton.class new file mode 100644 index 000000000..ed7ad7fa0 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/client/gui/widget/ExtendedButton.class differ diff --git a/build/_compileJava_2/net/minecraftforge/client/gui/widget/ForgeSlider.class b/build/_compileJava_2/net/minecraftforge/client/gui/widget/ForgeSlider.class new file mode 100644 index 000000000..6a40da2ee Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/client/gui/widget/ForgeSlider.class differ diff --git a/build/_compileJava_2/net/minecraftforge/client/gui/widget/ModListWidget$ModEntry.class b/build/_compileJava_2/net/minecraftforge/client/gui/widget/ModListWidget$ModEntry.class new file mode 100644 index 000000000..6e1e530e1 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/client/gui/widget/ModListWidget$ModEntry.class differ diff --git a/build/_compileJava_2/net/minecraftforge/client/gui/widget/ModListWidget.class b/build/_compileJava_2/net/minecraftforge/client/gui/widget/ModListWidget.class new file mode 100644 index 000000000..5621351f7 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/client/gui/widget/ModListWidget.class differ diff --git a/build/_compileJava_2/net/minecraftforge/client/gui/widget/ScrollPanel.class b/build/_compileJava_2/net/minecraftforge/client/gui/widget/ScrollPanel.class new file mode 100644 index 000000000..873036e4f Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/client/gui/widget/ScrollPanel.class differ diff --git a/build/_compileJava_2/net/minecraftforge/client/gui/widget/UnicodeGlyphButton.class b/build/_compileJava_2/net/minecraftforge/client/gui/widget/UnicodeGlyphButton.class new file mode 100644 index 000000000..cb104a0b8 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/client/gui/widget/UnicodeGlyphButton.class differ diff --git a/build/_compileJava_2/net/minecraftforge/client/loading/ClientModLoader.class b/build/_compileJava_2/net/minecraftforge/client/loading/ClientModLoader.class new file mode 100644 index 000000000..b9c02e41d Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/client/loading/ClientModLoader.class differ diff --git a/build/_compileJava_2/net/minecraftforge/client/loading/ForgeLoadingOverlay.class b/build/_compileJava_2/net/minecraftforge/client/loading/ForgeLoadingOverlay.class new file mode 100644 index 000000000..d9c25f97e Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/client/loading/ForgeLoadingOverlay.class differ diff --git a/build/_compileJava_2/net/minecraftforge/client/loading/NoVizFallback.class b/build/_compileJava_2/net/minecraftforge/client/loading/NoVizFallback.class new file mode 100644 index 000000000..d4eac185f Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/client/loading/NoVizFallback.class differ diff --git a/build/_compileJava_2/net/minecraftforge/client/model/BakedModelWrapper.class b/build/_compileJava_2/net/minecraftforge/client/model/BakedModelWrapper.class new file mode 100644 index 000000000..f9a31462e Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/client/model/BakedModelWrapper.class differ diff --git a/build/_compileJava_2/net/minecraftforge/client/model/CompositeModel$Baked$Builder.class b/build/_compileJava_2/net/minecraftforge/client/model/CompositeModel$Baked$Builder.class new file mode 100644 index 000000000..c4a0fc7e8 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/client/model/CompositeModel$Baked$Builder.class differ diff --git a/build/_compileJava_2/net/minecraftforge/client/model/CompositeModel$Baked.class b/build/_compileJava_2/net/minecraftforge/client/model/CompositeModel$Baked.class new file mode 100644 index 000000000..b8bafbdcb Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/client/model/CompositeModel$Baked.class differ diff --git a/build/_compileJava_2/net/minecraftforge/client/model/CompositeModel$Data$Builder.class b/build/_compileJava_2/net/minecraftforge/client/model/CompositeModel$Data$Builder.class new file mode 100644 index 000000000..f90984f84 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/client/model/CompositeModel$Data$Builder.class differ diff --git a/build/_compileJava_2/net/minecraftforge/client/model/CompositeModel$Data.class b/build/_compileJava_2/net/minecraftforge/client/model/CompositeModel$Data.class new file mode 100644 index 000000000..6560bf3d2 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/client/model/CompositeModel$Data.class differ diff --git a/build/_compileJava_2/net/minecraftforge/client/model/CompositeModel$Loader.class b/build/_compileJava_2/net/minecraftforge/client/model/CompositeModel$Loader.class new file mode 100644 index 000000000..9a70ca8d9 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/client/model/CompositeModel$Loader.class differ diff --git a/build/_compileJava_2/net/minecraftforge/client/model/CompositeModel.class b/build/_compileJava_2/net/minecraftforge/client/model/CompositeModel.class new file mode 100644 index 000000000..6e5033a81 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/client/model/CompositeModel.class differ diff --git a/build/_compileJava_2/net/minecraftforge/client/model/DynamicFluidContainerModel$Colors.class b/build/_compileJava_2/net/minecraftforge/client/model/DynamicFluidContainerModel$Colors.class new file mode 100644 index 000000000..7f91adbe2 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/client/model/DynamicFluidContainerModel$Colors.class differ diff --git a/build/_compileJava_2/net/minecraftforge/client/model/DynamicFluidContainerModel$ContainedFluidOverrideHandler.class b/build/_compileJava_2/net/minecraftforge/client/model/DynamicFluidContainerModel$ContainedFluidOverrideHandler.class new file mode 100644 index 000000000..6d4627225 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/client/model/DynamicFluidContainerModel$ContainedFluidOverrideHandler.class differ diff --git a/build/_compileJava_2/net/minecraftforge/client/model/DynamicFluidContainerModel$Loader.class b/build/_compileJava_2/net/minecraftforge/client/model/DynamicFluidContainerModel$Loader.class new file mode 100644 index 000000000..46b2e2da8 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/client/model/DynamicFluidContainerModel$Loader.class differ diff --git a/build/_compileJava_2/net/minecraftforge/client/model/DynamicFluidContainerModel.class b/build/_compileJava_2/net/minecraftforge/client/model/DynamicFluidContainerModel.class new file mode 100644 index 000000000..eecbe4984 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/client/model/DynamicFluidContainerModel.class differ diff --git a/build/_compileJava_2/net/minecraftforge/client/model/ElementsModel$Loader.class b/build/_compileJava_2/net/minecraftforge/client/model/ElementsModel$Loader.class new file mode 100644 index 000000000..24e4fc045 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/client/model/ElementsModel$Loader.class differ diff --git a/build/_compileJava_2/net/minecraftforge/client/model/ElementsModel.class b/build/_compileJava_2/net/minecraftforge/client/model/ElementsModel.class new file mode 100644 index 000000000..c2287d2fa Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/client/model/ElementsModel.class differ diff --git a/build/_compileJava_2/net/minecraftforge/client/model/EmptyModel$Baked.class b/build/_compileJava_2/net/minecraftforge/client/model/EmptyModel$Baked.class new file mode 100644 index 000000000..87877641a Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/client/model/EmptyModel$Baked.class differ diff --git a/build/_compileJava_2/net/minecraftforge/client/model/EmptyModel.class b/build/_compileJava_2/net/minecraftforge/client/model/EmptyModel.class new file mode 100644 index 000000000..5742bed29 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/client/model/EmptyModel.class differ diff --git a/build/_compileJava_2/net/minecraftforge/client/model/ExtendedBlockModelDeserializer.class b/build/_compileJava_2/net/minecraftforge/client/model/ExtendedBlockModelDeserializer.class new file mode 100644 index 000000000..3a4e2cd00 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/client/model/ExtendedBlockModelDeserializer.class differ diff --git a/build/_compileJava_2/net/minecraftforge/client/model/ForgeFaceData.class b/build/_compileJava_2/net/minecraftforge/client/model/ForgeFaceData.class new file mode 100644 index 000000000..0a1c140e4 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/client/model/ForgeFaceData.class differ diff --git a/build/_compileJava_2/net/minecraftforge/client/model/ForgeItemModelShaper.class b/build/_compileJava_2/net/minecraftforge/client/model/ForgeItemModelShaper.class new file mode 100644 index 000000000..d05080ff4 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/client/model/ForgeItemModelShaper.class differ diff --git a/build/_compileJava_2/net/minecraftforge/client/model/IDynamicBakedModel.class b/build/_compileJava_2/net/minecraftforge/client/model/IDynamicBakedModel.class new file mode 100644 index 000000000..0a008b98e Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/client/model/IDynamicBakedModel.class differ diff --git a/build/_compileJava_2/net/minecraftforge/client/model/IModelBuilder$Collecting.class b/build/_compileJava_2/net/minecraftforge/client/model/IModelBuilder$Collecting.class new file mode 100644 index 000000000..aeb1d6b08 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/client/model/IModelBuilder$Collecting.class differ diff --git a/build/_compileJava_2/net/minecraftforge/client/model/IModelBuilder$Simple.class b/build/_compileJava_2/net/minecraftforge/client/model/IModelBuilder$Simple.class new file mode 100644 index 000000000..01ad254cf Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/client/model/IModelBuilder$Simple.class differ diff --git a/build/_compileJava_2/net/minecraftforge/client/model/IModelBuilder.class b/build/_compileJava_2/net/minecraftforge/client/model/IModelBuilder.class new file mode 100644 index 000000000..153d52ac6 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/client/model/IModelBuilder.class differ diff --git a/build/_compileJava_2/net/minecraftforge/client/model/IQuadTransformer.class b/build/_compileJava_2/net/minecraftforge/client/model/IQuadTransformer.class new file mode 100644 index 000000000..e26427c70 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/client/model/IQuadTransformer.class differ diff --git a/build/_compileJava_2/net/minecraftforge/client/model/ItemLayerModel$Loader.class b/build/_compileJava_2/net/minecraftforge/client/model/ItemLayerModel$Loader.class new file mode 100644 index 000000000..6f9189add Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/client/model/ItemLayerModel$Loader.class differ diff --git a/build/_compileJava_2/net/minecraftforge/client/model/ItemLayerModel.class b/build/_compileJava_2/net/minecraftforge/client/model/ItemLayerModel.class new file mode 100644 index 000000000..657b40a12 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/client/model/ItemLayerModel.class differ diff --git a/build/_compileJava_2/net/minecraftforge/client/model/QuadTransformers.class b/build/_compileJava_2/net/minecraftforge/client/model/QuadTransformers.class new file mode 100644 index 000000000..a517f6f3b Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/client/model/QuadTransformers.class differ diff --git a/build/_compileJava_2/net/minecraftforge/client/model/SeparateTransformsModel$Baked.class b/build/_compileJava_2/net/minecraftforge/client/model/SeparateTransformsModel$Baked.class new file mode 100644 index 000000000..5114ed4ac Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/client/model/SeparateTransformsModel$Baked.class differ diff --git a/build/_compileJava_2/net/minecraftforge/client/model/SeparateTransformsModel$Loader.class b/build/_compileJava_2/net/minecraftforge/client/model/SeparateTransformsModel$Loader.class new file mode 100644 index 000000000..51392bee0 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/client/model/SeparateTransformsModel$Loader.class differ diff --git a/build/_compileJava_2/net/minecraftforge/client/model/SeparateTransformsModel.class b/build/_compileJava_2/net/minecraftforge/client/model/SeparateTransformsModel.class new file mode 100644 index 000000000..959d60fc7 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/client/model/SeparateTransformsModel.class differ diff --git a/build/_compileJava_2/net/minecraftforge/client/model/SimpleModelState.class b/build/_compileJava_2/net/minecraftforge/client/model/SimpleModelState.class new file mode 100644 index 000000000..dbc4d552e Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/client/model/SimpleModelState.class differ diff --git a/build/_compileJava_2/net/minecraftforge/client/model/data/ModelData$Builder.class b/build/_compileJava_2/net/minecraftforge/client/model/data/ModelData$Builder.class new file mode 100644 index 000000000..d626fe894 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/client/model/data/ModelData$Builder.class differ diff --git a/build/_compileJava_2/net/minecraftforge/client/model/data/ModelData.class b/build/_compileJava_2/net/minecraftforge/client/model/data/ModelData.class new file mode 100644 index 000000000..d1ac6ad0c Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/client/model/data/ModelData.class differ diff --git a/build/_compileJava_2/net/minecraftforge/client/model/data/ModelDataManager.class b/build/_compileJava_2/net/minecraftforge/client/model/data/ModelDataManager.class new file mode 100644 index 000000000..cf13f0d17 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/client/model/data/ModelDataManager.class differ diff --git a/build/_compileJava_2/net/minecraftforge/client/model/data/ModelProperty.class b/build/_compileJava_2/net/minecraftforge/client/model/data/ModelProperty.class new file mode 100644 index 000000000..55098ed29 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/client/model/data/ModelProperty.class differ diff --git a/build/_compileJava_2/net/minecraftforge/client/model/data/MultipartModelData$Builder.class b/build/_compileJava_2/net/minecraftforge/client/model/data/MultipartModelData$Builder.class new file mode 100644 index 000000000..960ace530 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/client/model/data/MultipartModelData$Builder.class differ diff --git a/build/_compileJava_2/net/minecraftforge/client/model/data/MultipartModelData.class b/build/_compileJava_2/net/minecraftforge/client/model/data/MultipartModelData.class new file mode 100644 index 000000000..ff8c04029 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/client/model/data/MultipartModelData.class differ diff --git a/build/_compileJava_2/net/minecraftforge/client/model/generators/BlockModelBuilder.class b/build/_compileJava_2/net/minecraftforge/client/model/generators/BlockModelBuilder.class new file mode 100644 index 000000000..d851bb326 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/client/model/generators/BlockModelBuilder.class differ diff --git a/build/_compileJava_2/net/minecraftforge/client/model/generators/BlockModelProvider.class b/build/_compileJava_2/net/minecraftforge/client/model/generators/BlockModelProvider.class new file mode 100644 index 000000000..e3be8513b Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/client/model/generators/BlockModelProvider.class differ diff --git a/build/_compileJava_2/net/minecraftforge/client/model/generators/BlockStateProvider$1.class b/build/_compileJava_2/net/minecraftforge/client/model/generators/BlockStateProvider$1.class new file mode 100644 index 000000000..0b7b994bf Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/client/model/generators/BlockStateProvider$1.class differ diff --git a/build/_compileJava_2/net/minecraftforge/client/model/generators/BlockStateProvider$2.class b/build/_compileJava_2/net/minecraftforge/client/model/generators/BlockStateProvider$2.class new file mode 100644 index 000000000..718abd3c7 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/client/model/generators/BlockStateProvider$2.class differ diff --git a/build/_compileJava_2/net/minecraftforge/client/model/generators/BlockStateProvider$ConfiguredModelList.class b/build/_compileJava_2/net/minecraftforge/client/model/generators/BlockStateProvider$ConfiguredModelList.class new file mode 100644 index 000000000..cc5f9d8f6 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/client/model/generators/BlockStateProvider$ConfiguredModelList.class differ diff --git a/build/_compileJava_2/net/minecraftforge/client/model/generators/BlockStateProvider.class b/build/_compileJava_2/net/minecraftforge/client/model/generators/BlockStateProvider.class new file mode 100644 index 000000000..62f0cfbbc Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/client/model/generators/BlockStateProvider.class differ diff --git a/build/_compileJava_2/net/minecraftforge/client/model/generators/ConfiguredModel$Builder.class b/build/_compileJava_2/net/minecraftforge/client/model/generators/ConfiguredModel$Builder.class new file mode 100644 index 000000000..3bb855e0a Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/client/model/generators/ConfiguredModel$Builder.class differ diff --git a/build/_compileJava_2/net/minecraftforge/client/model/generators/ConfiguredModel.class b/build/_compileJava_2/net/minecraftforge/client/model/generators/ConfiguredModel.class new file mode 100644 index 000000000..4a6f7f215 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/client/model/generators/ConfiguredModel.class differ diff --git a/build/_compileJava_2/net/minecraftforge/client/model/generators/CustomLoaderBuilder.class b/build/_compileJava_2/net/minecraftforge/client/model/generators/CustomLoaderBuilder.class new file mode 100644 index 000000000..b4053ab8f Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/client/model/generators/CustomLoaderBuilder.class differ diff --git a/build/_compileJava_2/net/minecraftforge/client/model/generators/IGeneratedBlockState.class b/build/_compileJava_2/net/minecraftforge/client/model/generators/IGeneratedBlockState.class new file mode 100644 index 000000000..cfe4e1426 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/client/model/generators/IGeneratedBlockState.class differ diff --git a/build/_compileJava_2/net/minecraftforge/client/model/generators/ItemModelBuilder$OverrideBuilder.class b/build/_compileJava_2/net/minecraftforge/client/model/generators/ItemModelBuilder$OverrideBuilder.class new file mode 100644 index 000000000..1fe7ae94e Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/client/model/generators/ItemModelBuilder$OverrideBuilder.class differ diff --git a/build/_compileJava_2/net/minecraftforge/client/model/generators/ItemModelBuilder.class b/build/_compileJava_2/net/minecraftforge/client/model/generators/ItemModelBuilder.class new file mode 100644 index 000000000..ee9645592 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/client/model/generators/ItemModelBuilder.class differ diff --git a/build/_compileJava_2/net/minecraftforge/client/model/generators/ItemModelProvider.class b/build/_compileJava_2/net/minecraftforge/client/model/generators/ItemModelProvider.class new file mode 100644 index 000000000..f0ca704c5 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/client/model/generators/ItemModelProvider.class differ diff --git a/build/_compileJava_2/net/minecraftforge/client/model/generators/ModelBuilder$ElementBuilder$FaceBuilder.class b/build/_compileJava_2/net/minecraftforge/client/model/generators/ModelBuilder$ElementBuilder$FaceBuilder.class new file mode 100644 index 000000000..aed7380d8 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/client/model/generators/ModelBuilder$ElementBuilder$FaceBuilder.class differ diff --git a/build/_compileJava_2/net/minecraftforge/client/model/generators/ModelBuilder$ElementBuilder$RotationBuilder.class b/build/_compileJava_2/net/minecraftforge/client/model/generators/ModelBuilder$ElementBuilder$RotationBuilder.class new file mode 100644 index 000000000..829d454c8 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/client/model/generators/ModelBuilder$ElementBuilder$RotationBuilder.class differ diff --git a/build/_compileJava_2/net/minecraftforge/client/model/generators/ModelBuilder$ElementBuilder.class b/build/_compileJava_2/net/minecraftforge/client/model/generators/ModelBuilder$ElementBuilder.class new file mode 100644 index 000000000..a4dd9112f Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/client/model/generators/ModelBuilder$ElementBuilder.class differ diff --git a/build/_compileJava_2/net/minecraftforge/client/model/generators/ModelBuilder$FaceRotation.class b/build/_compileJava_2/net/minecraftforge/client/model/generators/ModelBuilder$FaceRotation.class new file mode 100644 index 000000000..198c9de61 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/client/model/generators/ModelBuilder$FaceRotation.class differ diff --git a/build/_compileJava_2/net/minecraftforge/client/model/generators/ModelBuilder$RootTransformsBuilder.class b/build/_compileJava_2/net/minecraftforge/client/model/generators/ModelBuilder$RootTransformsBuilder.class new file mode 100644 index 000000000..ac3f9b606 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/client/model/generators/ModelBuilder$RootTransformsBuilder.class differ diff --git a/build/_compileJava_2/net/minecraftforge/client/model/generators/ModelBuilder$TransformsBuilder$TransformVecBuilder.class b/build/_compileJava_2/net/minecraftforge/client/model/generators/ModelBuilder$TransformsBuilder$TransformVecBuilder.class new file mode 100644 index 000000000..f0566bbf9 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/client/model/generators/ModelBuilder$TransformsBuilder$TransformVecBuilder.class differ diff --git a/build/_compileJava_2/net/minecraftforge/client/model/generators/ModelBuilder$TransformsBuilder.class b/build/_compileJava_2/net/minecraftforge/client/model/generators/ModelBuilder$TransformsBuilder.class new file mode 100644 index 000000000..ffe6ff501 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/client/model/generators/ModelBuilder$TransformsBuilder.class differ diff --git a/build/_compileJava_2/net/minecraftforge/client/model/generators/ModelBuilder.class b/build/_compileJava_2/net/minecraftforge/client/model/generators/ModelBuilder.class new file mode 100644 index 000000000..d4d01e691 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/client/model/generators/ModelBuilder.class differ diff --git a/build/_compileJava_2/net/minecraftforge/client/model/generators/ModelFile$ExistingModelFile.class b/build/_compileJava_2/net/minecraftforge/client/model/generators/ModelFile$ExistingModelFile.class new file mode 100644 index 000000000..e225a84ff Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/client/model/generators/ModelFile$ExistingModelFile.class differ diff --git a/build/_compileJava_2/net/minecraftforge/client/model/generators/ModelFile$UncheckedModelFile.class b/build/_compileJava_2/net/minecraftforge/client/model/generators/ModelFile$UncheckedModelFile.class new file mode 100644 index 000000000..93a90af23 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/client/model/generators/ModelFile$UncheckedModelFile.class differ diff --git a/build/_compileJava_2/net/minecraftforge/client/model/generators/ModelFile.class b/build/_compileJava_2/net/minecraftforge/client/model/generators/ModelFile.class new file mode 100644 index 000000000..622baf905 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/client/model/generators/ModelFile.class differ diff --git a/build/_compileJava_2/net/minecraftforge/client/model/generators/ModelProvider.class b/build/_compileJava_2/net/minecraftforge/client/model/generators/ModelProvider.class new file mode 100644 index 000000000..fc4cb53ae Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/client/model/generators/ModelProvider.class differ diff --git a/build/_compileJava_2/net/minecraftforge/client/model/generators/MultiPartBlockStateBuilder$PartBuilder$ConditionGroup.class b/build/_compileJava_2/net/minecraftforge/client/model/generators/MultiPartBlockStateBuilder$PartBuilder$ConditionGroup.class new file mode 100644 index 000000000..3f67494cb Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/client/model/generators/MultiPartBlockStateBuilder$PartBuilder$ConditionGroup.class differ diff --git a/build/_compileJava_2/net/minecraftforge/client/model/generators/MultiPartBlockStateBuilder$PartBuilder.class b/build/_compileJava_2/net/minecraftforge/client/model/generators/MultiPartBlockStateBuilder$PartBuilder.class new file mode 100644 index 000000000..89df631e7 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/client/model/generators/MultiPartBlockStateBuilder$PartBuilder.class differ diff --git a/build/_compileJava_2/net/minecraftforge/client/model/generators/MultiPartBlockStateBuilder.class b/build/_compileJava_2/net/minecraftforge/client/model/generators/MultiPartBlockStateBuilder.class new file mode 100644 index 000000000..193ba8bfd Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/client/model/generators/MultiPartBlockStateBuilder.class differ diff --git a/build/_compileJava_2/net/minecraftforge/client/model/generators/VariantBlockStateBuilder$PartialBlockstate.class b/build/_compileJava_2/net/minecraftforge/client/model/generators/VariantBlockStateBuilder$PartialBlockstate.class new file mode 100644 index 000000000..a4b72aad3 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/client/model/generators/VariantBlockStateBuilder$PartialBlockstate.class differ diff --git a/build/_compileJava_2/net/minecraftforge/client/model/generators/VariantBlockStateBuilder.class b/build/_compileJava_2/net/minecraftforge/client/model/generators/VariantBlockStateBuilder.class new file mode 100644 index 000000000..e4c906a85 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/client/model/generators/VariantBlockStateBuilder.class differ diff --git a/build/_compileJava_2/net/minecraftforge/client/model/generators/loaders/CompositeModelBuilder.class b/build/_compileJava_2/net/minecraftforge/client/model/generators/loaders/CompositeModelBuilder.class new file mode 100644 index 000000000..661015ec5 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/client/model/generators/loaders/CompositeModelBuilder.class differ diff --git a/build/_compileJava_2/net/minecraftforge/client/model/generators/loaders/DynamicFluidContainerModelBuilder.class b/build/_compileJava_2/net/minecraftforge/client/model/generators/loaders/DynamicFluidContainerModelBuilder.class new file mode 100644 index 000000000..9af2e3869 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/client/model/generators/loaders/DynamicFluidContainerModelBuilder.class differ diff --git a/build/_compileJava_2/net/minecraftforge/client/model/generators/loaders/ItemLayerModelBuilder.class b/build/_compileJava_2/net/minecraftforge/client/model/generators/loaders/ItemLayerModelBuilder.class new file mode 100644 index 000000000..4778b1232 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/client/model/generators/loaders/ItemLayerModelBuilder.class differ diff --git a/build/_compileJava_2/net/minecraftforge/client/model/generators/loaders/ObjModelBuilder.class b/build/_compileJava_2/net/minecraftforge/client/model/generators/loaders/ObjModelBuilder.class new file mode 100644 index 000000000..b360c4360 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/client/model/generators/loaders/ObjModelBuilder.class differ diff --git a/build/_compileJava_2/net/minecraftforge/client/model/generators/loaders/SeparateTransformsModelBuilder.class b/build/_compileJava_2/net/minecraftforge/client/model/generators/loaders/SeparateTransformsModelBuilder.class new file mode 100644 index 000000000..85d0469fd Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/client/model/generators/loaders/SeparateTransformsModelBuilder.class differ diff --git a/build/_compileJava_2/net/minecraftforge/client/model/geometry/BlockGeometryBakingContext$VisibilityData.class b/build/_compileJava_2/net/minecraftforge/client/model/geometry/BlockGeometryBakingContext$VisibilityData.class new file mode 100644 index 000000000..cd5656ed9 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/client/model/geometry/BlockGeometryBakingContext$VisibilityData.class differ diff --git a/build/_compileJava_2/net/minecraftforge/client/model/geometry/BlockGeometryBakingContext.class b/build/_compileJava_2/net/minecraftforge/client/model/geometry/BlockGeometryBakingContext.class new file mode 100644 index 000000000..2bff3ebda Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/client/model/geometry/BlockGeometryBakingContext.class differ diff --git a/build/_compileJava_2/net/minecraftforge/client/model/geometry/GeometryLoaderManager.class b/build/_compileJava_2/net/minecraftforge/client/model/geometry/GeometryLoaderManager.class new file mode 100644 index 000000000..8b4759abe Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/client/model/geometry/GeometryLoaderManager.class differ diff --git a/build/_compileJava_2/net/minecraftforge/client/model/geometry/IGeometryBakingContext.class b/build/_compileJava_2/net/minecraftforge/client/model/geometry/IGeometryBakingContext.class new file mode 100644 index 000000000..4e8e9e0c2 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/client/model/geometry/IGeometryBakingContext.class differ diff --git a/build/_compileJava_2/net/minecraftforge/client/model/geometry/IGeometryLoader.class b/build/_compileJava_2/net/minecraftforge/client/model/geometry/IGeometryLoader.class new file mode 100644 index 000000000..d73923403 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/client/model/geometry/IGeometryLoader.class differ diff --git a/build/_compileJava_2/net/minecraftforge/client/model/geometry/IUnbakedGeometry.class b/build/_compileJava_2/net/minecraftforge/client/model/geometry/IUnbakedGeometry.class new file mode 100644 index 000000000..a20b86e09 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/client/model/geometry/IUnbakedGeometry.class differ diff --git a/build/_compileJava_2/net/minecraftforge/client/model/geometry/SimpleUnbakedGeometry.class b/build/_compileJava_2/net/minecraftforge/client/model/geometry/SimpleUnbakedGeometry.class new file mode 100644 index 000000000..cec6ef10a Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/client/model/geometry/SimpleUnbakedGeometry.class differ diff --git a/build/_compileJava_2/net/minecraftforge/client/model/geometry/StandaloneGeometryBakingContext$Builder.class b/build/_compileJava_2/net/minecraftforge/client/model/geometry/StandaloneGeometryBakingContext$Builder.class new file mode 100644 index 000000000..33e3dffa1 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/client/model/geometry/StandaloneGeometryBakingContext$Builder.class differ diff --git a/build/_compileJava_2/net/minecraftforge/client/model/geometry/StandaloneGeometryBakingContext.class b/build/_compileJava_2/net/minecraftforge/client/model/geometry/StandaloneGeometryBakingContext.class new file mode 100644 index 000000000..b000140ff Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/client/model/geometry/StandaloneGeometryBakingContext.class differ diff --git a/build/_compileJava_2/net/minecraftforge/client/model/geometry/UnbakedGeometryHelper.class b/build/_compileJava_2/net/minecraftforge/client/model/geometry/UnbakedGeometryHelper.class new file mode 100644 index 000000000..26a068b98 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/client/model/geometry/UnbakedGeometryHelper.class differ diff --git a/build/_compileJava_2/net/minecraftforge/client/model/lighting/FlatQuadLighter.class b/build/_compileJava_2/net/minecraftforge/client/model/lighting/FlatQuadLighter.class new file mode 100644 index 000000000..b7047d842 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/client/model/lighting/FlatQuadLighter.class differ diff --git a/build/_compileJava_2/net/minecraftforge/client/model/lighting/ForgeModelBlockRenderer.class b/build/_compileJava_2/net/minecraftforge/client/model/lighting/ForgeModelBlockRenderer.class new file mode 100644 index 000000000..ecedbd5c9 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/client/model/lighting/ForgeModelBlockRenderer.class differ diff --git a/build/_compileJava_2/net/minecraftforge/client/model/lighting/QuadLighter.class b/build/_compileJava_2/net/minecraftforge/client/model/lighting/QuadLighter.class new file mode 100644 index 000000000..1d0d3c80f Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/client/model/lighting/QuadLighter.class differ diff --git a/build/_compileJava_2/net/minecraftforge/client/model/lighting/SmoothQuadLighter.class b/build/_compileJava_2/net/minecraftforge/client/model/lighting/SmoothQuadLighter.class new file mode 100644 index 000000000..bb62f9a43 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/client/model/lighting/SmoothQuadLighter.class differ diff --git a/build/_compileJava_2/net/minecraftforge/client/model/obj/ObjLoader.class b/build/_compileJava_2/net/minecraftforge/client/model/obj/ObjLoader.class new file mode 100644 index 000000000..531448dea Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/client/model/obj/ObjLoader.class differ diff --git a/build/_compileJava_2/net/minecraftforge/client/model/obj/ObjMaterialLibrary$Material.class b/build/_compileJava_2/net/minecraftforge/client/model/obj/ObjMaterialLibrary$Material.class new file mode 100644 index 000000000..0a745f061 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/client/model/obj/ObjMaterialLibrary$Material.class differ diff --git a/build/_compileJava_2/net/minecraftforge/client/model/obj/ObjMaterialLibrary.class b/build/_compileJava_2/net/minecraftforge/client/model/obj/ObjMaterialLibrary.class new file mode 100644 index 000000000..ff4ad9b5f Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/client/model/obj/ObjMaterialLibrary.class differ diff --git a/build/_compileJava_2/net/minecraftforge/client/model/obj/ObjModel$ModelGroup.class b/build/_compileJava_2/net/minecraftforge/client/model/obj/ObjModel$ModelGroup.class new file mode 100644 index 000000000..d7493295c Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/client/model/obj/ObjModel$ModelGroup.class differ diff --git a/build/_compileJava_2/net/minecraftforge/client/model/obj/ObjModel$ModelMesh.class b/build/_compileJava_2/net/minecraftforge/client/model/obj/ObjModel$ModelMesh.class new file mode 100644 index 000000000..3b653f36b Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/client/model/obj/ObjModel$ModelMesh.class differ diff --git a/build/_compileJava_2/net/minecraftforge/client/model/obj/ObjModel$ModelObject.class b/build/_compileJava_2/net/minecraftforge/client/model/obj/ObjModel$ModelObject.class new file mode 100644 index 000000000..6897c1838 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/client/model/obj/ObjModel$ModelObject.class differ diff --git a/build/_compileJava_2/net/minecraftforge/client/model/obj/ObjModel$ModelSettings.class b/build/_compileJava_2/net/minecraftforge/client/model/obj/ObjModel$ModelSettings.class new file mode 100644 index 000000000..97314fa2e Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/client/model/obj/ObjModel$ModelSettings.class differ diff --git a/build/_compileJava_2/net/minecraftforge/client/model/obj/ObjModel.class b/build/_compileJava_2/net/minecraftforge/client/model/obj/ObjModel.class new file mode 100644 index 000000000..6f2233484 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/client/model/obj/ObjModel.class differ diff --git a/build/_compileJava_2/net/minecraftforge/client/model/obj/ObjTokenizer.class b/build/_compileJava_2/net/minecraftforge/client/model/obj/ObjTokenizer.class new file mode 100644 index 000000000..6dc2dead5 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/client/model/obj/ObjTokenizer.class differ diff --git a/build/_compileJava_2/net/minecraftforge/client/model/obj/package-info.class b/build/_compileJava_2/net/minecraftforge/client/model/obj/package-info.class new file mode 100644 index 000000000..b98eb1450 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/client/model/obj/package-info.class differ diff --git a/build/_compileJava_2/net/minecraftforge/client/model/package-info.class b/build/_compileJava_2/net/minecraftforge/client/model/package-info.class new file mode 100644 index 000000000..149116def Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/client/model/package-info.class differ diff --git a/build/_compileJava_2/net/minecraftforge/client/model/pipeline/QuadBakingVertexConsumer$Buffered.class b/build/_compileJava_2/net/minecraftforge/client/model/pipeline/QuadBakingVertexConsumer$Buffered.class new file mode 100644 index 000000000..3778fbdd2 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/client/model/pipeline/QuadBakingVertexConsumer$Buffered.class differ diff --git a/build/_compileJava_2/net/minecraftforge/client/model/pipeline/QuadBakingVertexConsumer.class b/build/_compileJava_2/net/minecraftforge/client/model/pipeline/QuadBakingVertexConsumer.class new file mode 100644 index 000000000..5035d3a24 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/client/model/pipeline/QuadBakingVertexConsumer.class differ diff --git a/build/_compileJava_2/net/minecraftforge/client/model/pipeline/RemappingVertexPipeline.class b/build/_compileJava_2/net/minecraftforge/client/model/pipeline/RemappingVertexPipeline.class new file mode 100644 index 000000000..39d0a66f4 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/client/model/pipeline/RemappingVertexPipeline.class differ diff --git a/build/_compileJava_2/net/minecraftforge/client/model/pipeline/TransformingVertexPipeline.class b/build/_compileJava_2/net/minecraftforge/client/model/pipeline/TransformingVertexPipeline.class new file mode 100644 index 000000000..261a9fc2c Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/client/model/pipeline/TransformingVertexPipeline.class differ diff --git a/build/_compileJava_2/net/minecraftforge/client/model/pipeline/VertexConsumerWrapper.class b/build/_compileJava_2/net/minecraftforge/client/model/pipeline/VertexConsumerWrapper.class new file mode 100644 index 000000000..1010fc446 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/client/model/pipeline/VertexConsumerWrapper.class differ diff --git a/build/_compileJava_2/net/minecraftforge/client/model/pipeline/package-info.class b/build/_compileJava_2/net/minecraftforge/client/model/pipeline/package-info.class new file mode 100644 index 000000000..8620d8350 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/client/model/pipeline/package-info.class differ diff --git a/build/_compileJava_2/net/minecraftforge/client/model/renderable/BakedModelRenderable$Context.class b/build/_compileJava_2/net/minecraftforge/client/model/renderable/BakedModelRenderable$Context.class new file mode 100644 index 000000000..1db3841c6 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/client/model/renderable/BakedModelRenderable$Context.class differ diff --git a/build/_compileJava_2/net/minecraftforge/client/model/renderable/BakedModelRenderable.class b/build/_compileJava_2/net/minecraftforge/client/model/renderable/BakedModelRenderable.class new file mode 100644 index 000000000..214f9230f Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/client/model/renderable/BakedModelRenderable.class differ diff --git a/build/_compileJava_2/net/minecraftforge/client/model/renderable/CompositeRenderable$Builder.class b/build/_compileJava_2/net/minecraftforge/client/model/renderable/CompositeRenderable$Builder.class new file mode 100644 index 000000000..8276c1292 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/client/model/renderable/CompositeRenderable$Builder.class differ diff --git a/build/_compileJava_2/net/minecraftforge/client/model/renderable/CompositeRenderable$Component.class b/build/_compileJava_2/net/minecraftforge/client/model/renderable/CompositeRenderable$Component.class new file mode 100644 index 000000000..3bdeeb0c6 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/client/model/renderable/CompositeRenderable$Component.class differ diff --git a/build/_compileJava_2/net/minecraftforge/client/model/renderable/CompositeRenderable$Mesh.class b/build/_compileJava_2/net/minecraftforge/client/model/renderable/CompositeRenderable$Mesh.class new file mode 100644 index 000000000..097fd5122 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/client/model/renderable/CompositeRenderable$Mesh.class differ diff --git a/build/_compileJava_2/net/minecraftforge/client/model/renderable/CompositeRenderable$PartBuilder.class b/build/_compileJava_2/net/minecraftforge/client/model/renderable/CompositeRenderable$PartBuilder.class new file mode 100644 index 000000000..786702032 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/client/model/renderable/CompositeRenderable$PartBuilder.class differ diff --git a/build/_compileJava_2/net/minecraftforge/client/model/renderable/CompositeRenderable$Transforms.class b/build/_compileJava_2/net/minecraftforge/client/model/renderable/CompositeRenderable$Transforms.class new file mode 100644 index 000000000..45f3729d5 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/client/model/renderable/CompositeRenderable$Transforms.class differ diff --git a/build/_compileJava_2/net/minecraftforge/client/model/renderable/CompositeRenderable.class b/build/_compileJava_2/net/minecraftforge/client/model/renderable/CompositeRenderable.class new file mode 100644 index 000000000..fdbfcc645 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/client/model/renderable/CompositeRenderable.class differ diff --git a/build/_compileJava_2/net/minecraftforge/client/model/renderable/IRenderable.class b/build/_compileJava_2/net/minecraftforge/client/model/renderable/IRenderable.class new file mode 100644 index 000000000..9bb5b8f8b Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/client/model/renderable/IRenderable.class differ diff --git a/build/_compileJava_2/net/minecraftforge/client/model/renderable/ITextureRenderTypeLookup.class b/build/_compileJava_2/net/minecraftforge/client/model/renderable/ITextureRenderTypeLookup.class new file mode 100644 index 000000000..8af0b82c1 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/client/model/renderable/ITextureRenderTypeLookup.class differ diff --git a/build/_compileJava_2/net/minecraftforge/client/settings/IKeyConflictContext.class b/build/_compileJava_2/net/minecraftforge/client/settings/IKeyConflictContext.class new file mode 100644 index 000000000..777f578be Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/client/settings/IKeyConflictContext.class differ diff --git a/build/_compileJava_2/net/minecraftforge/client/settings/KeyConflictContext$1.class b/build/_compileJava_2/net/minecraftforge/client/settings/KeyConflictContext$1.class new file mode 100644 index 000000000..59af3b3be Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/client/settings/KeyConflictContext$1.class differ diff --git a/build/_compileJava_2/net/minecraftforge/client/settings/KeyConflictContext$2.class b/build/_compileJava_2/net/minecraftforge/client/settings/KeyConflictContext$2.class new file mode 100644 index 000000000..ab8ac4c0e Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/client/settings/KeyConflictContext$2.class differ diff --git a/build/_compileJava_2/net/minecraftforge/client/settings/KeyConflictContext$3.class b/build/_compileJava_2/net/minecraftforge/client/settings/KeyConflictContext$3.class new file mode 100644 index 000000000..053fa1ab2 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/client/settings/KeyConflictContext$3.class differ diff --git a/build/_compileJava_2/net/minecraftforge/client/settings/KeyConflictContext.class b/build/_compileJava_2/net/minecraftforge/client/settings/KeyConflictContext.class new file mode 100644 index 000000000..17a795bac Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/client/settings/KeyConflictContext.class differ diff --git a/build/_compileJava_2/net/minecraftforge/client/settings/KeyMappingLookup.class b/build/_compileJava_2/net/minecraftforge/client/settings/KeyMappingLookup.class new file mode 100644 index 000000000..28a8295e4 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/client/settings/KeyMappingLookup.class differ diff --git a/build/_compileJava_2/net/minecraftforge/client/settings/KeyModifier$1.class b/build/_compileJava_2/net/minecraftforge/client/settings/KeyModifier$1.class new file mode 100644 index 000000000..ac3a67c91 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/client/settings/KeyModifier$1.class differ diff --git a/build/_compileJava_2/net/minecraftforge/client/settings/KeyModifier$2.class b/build/_compileJava_2/net/minecraftforge/client/settings/KeyModifier$2.class new file mode 100644 index 000000000..a544e11a7 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/client/settings/KeyModifier$2.class differ diff --git a/build/_compileJava_2/net/minecraftforge/client/settings/KeyModifier$3.class b/build/_compileJava_2/net/minecraftforge/client/settings/KeyModifier$3.class new file mode 100644 index 000000000..f376953a2 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/client/settings/KeyModifier$3.class differ diff --git a/build/_compileJava_2/net/minecraftforge/client/settings/KeyModifier$4.class b/build/_compileJava_2/net/minecraftforge/client/settings/KeyModifier$4.class new file mode 100644 index 000000000..2cd0ee1c2 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/client/settings/KeyModifier$4.class differ diff --git a/build/_compileJava_2/net/minecraftforge/client/settings/KeyModifier.class b/build/_compileJava_2/net/minecraftforge/client/settings/KeyModifier.class new file mode 100644 index 000000000..29a5cf1e8 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/client/settings/KeyModifier.class differ diff --git a/build/_compileJava_2/net/minecraftforge/client/textures/ForgeTextureMetadata$Serializer.class b/build/_compileJava_2/net/minecraftforge/client/textures/ForgeTextureMetadata$Serializer.class new file mode 100644 index 000000000..2114b7b06 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/client/textures/ForgeTextureMetadata$Serializer.class differ diff --git a/build/_compileJava_2/net/minecraftforge/client/textures/ForgeTextureMetadata.class b/build/_compileJava_2/net/minecraftforge/client/textures/ForgeTextureMetadata.class new file mode 100644 index 000000000..79fdbeca3 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/client/textures/ForgeTextureMetadata.class differ diff --git a/build/_compileJava_2/net/minecraftforge/client/textures/ITextureAtlasSpriteLoader.class b/build/_compileJava_2/net/minecraftforge/client/textures/ITextureAtlasSpriteLoader.class new file mode 100644 index 000000000..74a4dd292 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/client/textures/ITextureAtlasSpriteLoader.class differ diff --git a/build/_compileJava_2/net/minecraftforge/client/textures/TextureAtlasSpriteLoaderManager.class b/build/_compileJava_2/net/minecraftforge/client/textures/TextureAtlasSpriteLoaderManager.class new file mode 100644 index 000000000..653604a0e Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/client/textures/TextureAtlasSpriteLoaderManager.class differ diff --git a/build/_compileJava_2/net/minecraftforge/client/textures/UnitTextureAtlasSprite.class b/build/_compileJava_2/net/minecraftforge/client/textures/UnitTextureAtlasSprite.class new file mode 100644 index 000000000..fb32f7ce6 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/client/textures/UnitTextureAtlasSprite.class differ diff --git a/build/_compileJava_2/net/minecraftforge/common/BasicItemListing.class b/build/_compileJava_2/net/minecraftforge/common/BasicItemListing.class new file mode 100644 index 000000000..a95fef9d7 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/common/BasicItemListing.class differ diff --git a/build/_compileJava_2/net/minecraftforge/common/BiomeManager$BiomeEntry.class b/build/_compileJava_2/net/minecraftforge/common/BiomeManager$BiomeEntry.class new file mode 100644 index 000000000..712077ab4 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/common/BiomeManager$BiomeEntry.class differ diff --git a/build/_compileJava_2/net/minecraftforge/common/BiomeManager$BiomeType.class b/build/_compileJava_2/net/minecraftforge/common/BiomeManager$BiomeType.class new file mode 100644 index 000000000..9c7df7533 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/common/BiomeManager$BiomeType.class differ diff --git a/build/_compileJava_2/net/minecraftforge/common/BiomeManager$TrackedList.class b/build/_compileJava_2/net/minecraftforge/common/BiomeManager$TrackedList.class new file mode 100644 index 000000000..b879c5fec Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/common/BiomeManager$TrackedList.class differ diff --git a/build/_compileJava_2/net/minecraftforge/common/BiomeManager.class b/build/_compileJava_2/net/minecraftforge/common/BiomeManager.class new file mode 100644 index 000000000..918349434 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/common/BiomeManager.class differ diff --git a/build/_compileJava_2/net/minecraftforge/common/CreativeModeTabRegistry$1.class b/build/_compileJava_2/net/minecraftforge/common/CreativeModeTabRegistry$1.class new file mode 100644 index 000000000..37ad51112 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/common/CreativeModeTabRegistry$1.class differ diff --git a/build/_compileJava_2/net/minecraftforge/common/CreativeModeTabRegistry.class b/build/_compileJava_2/net/minecraftforge/common/CreativeModeTabRegistry.class new file mode 100644 index 000000000..389f6b883 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/common/CreativeModeTabRegistry.class differ diff --git a/build/_compileJava_2/net/minecraftforge/common/DungeonHooks$DungeonMob.class b/build/_compileJava_2/net/minecraftforge/common/DungeonHooks$DungeonMob.class new file mode 100644 index 000000000..6ef10492e Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/common/DungeonHooks$DungeonMob.class differ diff --git a/build/_compileJava_2/net/minecraftforge/common/DungeonHooks.class b/build/_compileJava_2/net/minecraftforge/common/DungeonHooks.class new file mode 100644 index 000000000..d555bc6a6 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/common/DungeonHooks.class differ diff --git a/build/_compileJava_2/net/minecraftforge/common/FarmlandWaterManager.class b/build/_compileJava_2/net/minecraftforge/common/FarmlandWaterManager.class new file mode 100644 index 000000000..084b61cde Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/common/FarmlandWaterManager.class differ diff --git a/build/_compileJava_2/net/minecraftforge/common/ForgeConfig$Client.class b/build/_compileJava_2/net/minecraftforge/common/ForgeConfig$Client.class new file mode 100644 index 000000000..aa22a9fb9 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/common/ForgeConfig$Client.class differ diff --git a/build/_compileJava_2/net/minecraftforge/common/ForgeConfig$Common.class b/build/_compileJava_2/net/minecraftforge/common/ForgeConfig$Common.class new file mode 100644 index 000000000..8d46296b2 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/common/ForgeConfig$Common.class differ diff --git a/build/_compileJava_2/net/minecraftforge/common/ForgeConfig$Server.class b/build/_compileJava_2/net/minecraftforge/common/ForgeConfig$Server.class new file mode 100644 index 000000000..ea06f530c Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/common/ForgeConfig$Server.class differ diff --git a/build/_compileJava_2/net/minecraftforge/common/ForgeConfig.class b/build/_compileJava_2/net/minecraftforge/common/ForgeConfig.class new file mode 100644 index 000000000..f0b0e0229 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/common/ForgeConfig.class differ diff --git a/build/_compileJava_2/net/minecraftforge/common/ForgeConfigSpec$BooleanValue.class b/build/_compileJava_2/net/minecraftforge/common/ForgeConfigSpec$BooleanValue.class new file mode 100644 index 000000000..345a018f2 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/common/ForgeConfigSpec$BooleanValue.class differ diff --git a/build/_compileJava_2/net/minecraftforge/common/ForgeConfigSpec$Builder$1.class b/build/_compileJava_2/net/minecraftforge/common/ForgeConfigSpec$Builder$1.class new file mode 100644 index 000000000..8ad9325cd Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/common/ForgeConfigSpec$Builder$1.class differ diff --git a/build/_compileJava_2/net/minecraftforge/common/ForgeConfigSpec$Builder$2.class b/build/_compileJava_2/net/minecraftforge/common/ForgeConfigSpec$Builder$2.class new file mode 100644 index 000000000..c765932a7 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/common/ForgeConfigSpec$Builder$2.class differ diff --git a/build/_compileJava_2/net/minecraftforge/common/ForgeConfigSpec$Builder$BuilderConsumer.class b/build/_compileJava_2/net/minecraftforge/common/ForgeConfigSpec$Builder$BuilderConsumer.class new file mode 100644 index 000000000..67d2567fd Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/common/ForgeConfigSpec$Builder$BuilderConsumer.class differ diff --git a/build/_compileJava_2/net/minecraftforge/common/ForgeConfigSpec$Builder.class b/build/_compileJava_2/net/minecraftforge/common/ForgeConfigSpec$Builder.class new file mode 100644 index 000000000..e89b33852 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/common/ForgeConfigSpec$Builder.class differ diff --git a/build/_compileJava_2/net/minecraftforge/common/ForgeConfigSpec$BuilderContext.class b/build/_compileJava_2/net/minecraftforge/common/ForgeConfigSpec$BuilderContext.class new file mode 100644 index 000000000..784b6c8f8 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/common/ForgeConfigSpec$BuilderContext.class differ diff --git a/build/_compileJava_2/net/minecraftforge/common/ForgeConfigSpec$ConfigValue.class b/build/_compileJava_2/net/minecraftforge/common/ForgeConfigSpec$ConfigValue.class new file mode 100644 index 000000000..fda017756 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/common/ForgeConfigSpec$ConfigValue.class differ diff --git a/build/_compileJava_2/net/minecraftforge/common/ForgeConfigSpec$DoubleValue.class b/build/_compileJava_2/net/minecraftforge/common/ForgeConfigSpec$DoubleValue.class new file mode 100644 index 000000000..455a01a99 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/common/ForgeConfigSpec$DoubleValue.class differ diff --git a/build/_compileJava_2/net/minecraftforge/common/ForgeConfigSpec$EnumValue.class b/build/_compileJava_2/net/minecraftforge/common/ForgeConfigSpec$EnumValue.class new file mode 100644 index 000000000..cac63dba5 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/common/ForgeConfigSpec$EnumValue.class differ diff --git a/build/_compileJava_2/net/minecraftforge/common/ForgeConfigSpec$IntValue.class b/build/_compileJava_2/net/minecraftforge/common/ForgeConfigSpec$IntValue.class new file mode 100644 index 000000000..3057721e7 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/common/ForgeConfigSpec$IntValue.class differ diff --git a/build/_compileJava_2/net/minecraftforge/common/ForgeConfigSpec$LongValue.class b/build/_compileJava_2/net/minecraftforge/common/ForgeConfigSpec$LongValue.class new file mode 100644 index 000000000..3ca1fd0c2 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/common/ForgeConfigSpec$LongValue.class differ diff --git a/build/_compileJava_2/net/minecraftforge/common/ForgeConfigSpec$Range.class b/build/_compileJava_2/net/minecraftforge/common/ForgeConfigSpec$Range.class new file mode 100644 index 000000000..171495b5c Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/common/ForgeConfigSpec$Range.class differ diff --git a/build/_compileJava_2/net/minecraftforge/common/ForgeConfigSpec$ValueSpec.class b/build/_compileJava_2/net/minecraftforge/common/ForgeConfigSpec$ValueSpec.class new file mode 100644 index 000000000..20ca7dc35 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/common/ForgeConfigSpec$ValueSpec.class differ diff --git a/build/_compileJava_2/net/minecraftforge/common/ForgeConfigSpec.class b/build/_compileJava_2/net/minecraftforge/common/ForgeConfigSpec.class new file mode 100644 index 000000000..5cf012a1f Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/common/ForgeConfigSpec.class differ diff --git a/build/_compileJava_2/net/minecraftforge/common/ForgeHooks$1.class b/build/_compileJava_2/net/minecraftforge/common/ForgeHooks$1.class new file mode 100644 index 000000000..68a34b02f Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/common/ForgeHooks$1.class differ diff --git a/build/_compileJava_2/net/minecraftforge/common/ForgeHooks$2.class b/build/_compileJava_2/net/minecraftforge/common/ForgeHooks$2.class new file mode 100644 index 000000000..a683af9ee Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/common/ForgeHooks$2.class differ diff --git a/build/_compileJava_2/net/minecraftforge/common/ForgeHooks$BiomeCallbackFunction.class b/build/_compileJava_2/net/minecraftforge/common/ForgeHooks$BiomeCallbackFunction.class new file mode 100644 index 000000000..5ab835af1 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/common/ForgeHooks$BiomeCallbackFunction.class differ diff --git a/build/_compileJava_2/net/minecraftforge/common/ForgeHooks$LootTableContext.class b/build/_compileJava_2/net/minecraftforge/common/ForgeHooks$LootTableContext.class new file mode 100644 index 000000000..8fc99cea6 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/common/ForgeHooks$LootTableContext.class differ diff --git a/build/_compileJava_2/net/minecraftforge/common/ForgeHooks.class b/build/_compileJava_2/net/minecraftforge/common/ForgeHooks.class new file mode 100644 index 000000000..d2475ab23 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/common/ForgeHooks.class differ diff --git a/build/_compileJava_2/net/minecraftforge/common/ForgeI18n$CustomReadOnlyFormat.class b/build/_compileJava_2/net/minecraftforge/common/ForgeI18n$CustomReadOnlyFormat.class new file mode 100644 index 000000000..fd2445862 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/common/ForgeI18n$CustomReadOnlyFormat.class differ diff --git a/build/_compileJava_2/net/minecraftforge/common/ForgeI18n.class b/build/_compileJava_2/net/minecraftforge/common/ForgeI18n.class new file mode 100644 index 000000000..2d2d3aeb7 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/common/ForgeI18n.class differ diff --git a/build/_compileJava_2/net/minecraftforge/common/ForgeInternalHandler.class b/build/_compileJava_2/net/minecraftforge/common/ForgeInternalHandler.class new file mode 100644 index 000000000..14abe0707 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/common/ForgeInternalHandler.class differ diff --git a/build/_compileJava_2/net/minecraftforge/common/ForgeMod$1.class b/build/_compileJava_2/net/minecraftforge/common/ForgeMod$1.class new file mode 100644 index 000000000..cef4e3063 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/common/ForgeMod$1.class differ diff --git a/build/_compileJava_2/net/minecraftforge/common/ForgeMod$2$1.class b/build/_compileJava_2/net/minecraftforge/common/ForgeMod$2$1.class new file mode 100644 index 000000000..e641671b0 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/common/ForgeMod$2$1.class differ diff --git a/build/_compileJava_2/net/minecraftforge/common/ForgeMod$2.class b/build/_compileJava_2/net/minecraftforge/common/ForgeMod$2.class new file mode 100644 index 000000000..a50b105c8 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/common/ForgeMod$2.class differ diff --git a/build/_compileJava_2/net/minecraftforge/common/ForgeMod$3$1.class b/build/_compileJava_2/net/minecraftforge/common/ForgeMod$3$1.class new file mode 100644 index 000000000..89dd9c508 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/common/ForgeMod$3$1.class differ diff --git a/build/_compileJava_2/net/minecraftforge/common/ForgeMod$3.class b/build/_compileJava_2/net/minecraftforge/common/ForgeMod$3.class new file mode 100644 index 000000000..99bf6fba0 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/common/ForgeMod$3.class differ diff --git a/build/_compileJava_2/net/minecraftforge/common/ForgeMod$4$1.class b/build/_compileJava_2/net/minecraftforge/common/ForgeMod$4$1.class new file mode 100644 index 000000000..110a52769 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/common/ForgeMod$4$1.class differ diff --git a/build/_compileJava_2/net/minecraftforge/common/ForgeMod$4.class b/build/_compileJava_2/net/minecraftforge/common/ForgeMod$4.class new file mode 100644 index 000000000..a9113c78f Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/common/ForgeMod$4.class differ diff --git a/build/_compileJava_2/net/minecraftforge/common/ForgeMod.class b/build/_compileJava_2/net/minecraftforge/common/ForgeMod.class new file mode 100644 index 000000000..813c00f10 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/common/ForgeMod.class differ diff --git a/build/_compileJava_2/net/minecraftforge/common/ForgeSpawnEggItem$ColorRegisterHandler.class b/build/_compileJava_2/net/minecraftforge/common/ForgeSpawnEggItem$ColorRegisterHandler.class new file mode 100644 index 000000000..130e36f4a Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/common/ForgeSpawnEggItem$ColorRegisterHandler.class differ diff --git a/build/_compileJava_2/net/minecraftforge/common/ForgeSpawnEggItem$CommonHandler.class b/build/_compileJava_2/net/minecraftforge/common/ForgeSpawnEggItem$CommonHandler.class new file mode 100644 index 000000000..63d3fff78 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/common/ForgeSpawnEggItem$CommonHandler.class differ diff --git a/build/_compileJava_2/net/minecraftforge/common/ForgeSpawnEggItem.class b/build/_compileJava_2/net/minecraftforge/common/ForgeSpawnEggItem.class new file mode 100644 index 000000000..b26d395ba Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/common/ForgeSpawnEggItem.class differ diff --git a/build/_compileJava_2/net/minecraftforge/common/ForgeStatesProvider.class b/build/_compileJava_2/net/minecraftforge/common/ForgeStatesProvider.class new file mode 100644 index 000000000..4bddcbb97 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/common/ForgeStatesProvider.class differ diff --git a/build/_compileJava_2/net/minecraftforge/common/ForgeTier.class b/build/_compileJava_2/net/minecraftforge/common/ForgeTier.class new file mode 100644 index 000000000..0abd6cc0a Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/common/ForgeTier.class differ diff --git a/build/_compileJava_2/net/minecraftforge/common/IExtensibleEnum.class b/build/_compileJava_2/net/minecraftforge/common/IExtensibleEnum.class new file mode 100644 index 000000000..917378525 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/common/IExtensibleEnum.class differ diff --git a/build/_compileJava_2/net/minecraftforge/common/IForgeShearable.class b/build/_compileJava_2/net/minecraftforge/common/IForgeShearable.class new file mode 100644 index 000000000..260f3906a Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/common/IForgeShearable.class differ diff --git a/build/_compileJava_2/net/minecraftforge/common/IMinecartCollisionHandler.class b/build/_compileJava_2/net/minecraftforge/common/IMinecartCollisionHandler.class new file mode 100644 index 000000000..04fadb659 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/common/IMinecartCollisionHandler.class differ diff --git a/build/_compileJava_2/net/minecraftforge/common/IPlantable.class b/build/_compileJava_2/net/minecraftforge/common/IPlantable.class new file mode 100644 index 000000000..717735d51 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/common/IPlantable.class differ diff --git a/build/_compileJava_2/net/minecraftforge/common/LenientUnboundedMapCodec.class b/build/_compileJava_2/net/minecraftforge/common/LenientUnboundedMapCodec.class new file mode 100644 index 000000000..b5883e70f Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/common/LenientUnboundedMapCodec.class differ diff --git a/build/_compileJava_2/net/minecraftforge/common/MinecraftForge.class b/build/_compileJava_2/net/minecraftforge/common/MinecraftForge.class new file mode 100644 index 000000000..4ce997d11 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/common/MinecraftForge.class differ diff --git a/build/_compileJava_2/net/minecraftforge/common/PlantType.class b/build/_compileJava_2/net/minecraftforge/common/PlantType.class new file mode 100644 index 000000000..f7883e0b4 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/common/PlantType.class differ diff --git a/build/_compileJava_2/net/minecraftforge/common/SoundAction.class b/build/_compileJava_2/net/minecraftforge/common/SoundAction.class new file mode 100644 index 000000000..582a72861 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/common/SoundAction.class differ diff --git a/build/_compileJava_2/net/minecraftforge/common/SoundActions.class b/build/_compileJava_2/net/minecraftforge/common/SoundActions.class new file mode 100644 index 000000000..c3502c183 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/common/SoundActions.class differ diff --git a/build/_compileJava_2/net/minecraftforge/common/Tags$Biomes.class b/build/_compileJava_2/net/minecraftforge/common/Tags$Biomes.class new file mode 100644 index 000000000..74e907f76 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/common/Tags$Biomes.class differ diff --git a/build/_compileJava_2/net/minecraftforge/common/Tags$Blocks.class b/build/_compileJava_2/net/minecraftforge/common/Tags$Blocks.class new file mode 100644 index 000000000..bc2868568 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/common/Tags$Blocks.class differ diff --git a/build/_compileJava_2/net/minecraftforge/common/Tags$EntityTypes.class b/build/_compileJava_2/net/minecraftforge/common/Tags$EntityTypes.class new file mode 100644 index 000000000..5d8faf97b Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/common/Tags$EntityTypes.class differ diff --git a/build/_compileJava_2/net/minecraftforge/common/Tags$Fluids.class b/build/_compileJava_2/net/minecraftforge/common/Tags$Fluids.class new file mode 100644 index 000000000..1857b8adc Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/common/Tags$Fluids.class differ diff --git a/build/_compileJava_2/net/minecraftforge/common/Tags$Items.class b/build/_compileJava_2/net/minecraftforge/common/Tags$Items.class new file mode 100644 index 000000000..0ab0bcc8f Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/common/Tags$Items.class differ diff --git a/build/_compileJava_2/net/minecraftforge/common/Tags.class b/build/_compileJava_2/net/minecraftforge/common/Tags.class new file mode 100644 index 000000000..79fb6c119 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/common/Tags.class differ diff --git a/build/_compileJava_2/net/minecraftforge/common/TierSortingRegistry$1.class b/build/_compileJava_2/net/minecraftforge/common/TierSortingRegistry$1.class new file mode 100644 index 000000000..3e0f1ae1f Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/common/TierSortingRegistry$1.class differ diff --git a/build/_compileJava_2/net/minecraftforge/common/TierSortingRegistry$ClientEvents.class b/build/_compileJava_2/net/minecraftforge/common/TierSortingRegistry$ClientEvents.class new file mode 100644 index 000000000..89bf1e56d Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/common/TierSortingRegistry$ClientEvents.class differ diff --git a/build/_compileJava_2/net/minecraftforge/common/TierSortingRegistry$SyncPacket.class b/build/_compileJava_2/net/minecraftforge/common/TierSortingRegistry$SyncPacket.class new file mode 100644 index 000000000..dda4fd044 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/common/TierSortingRegistry$SyncPacket.class differ diff --git a/build/_compileJava_2/net/minecraftforge/common/TierSortingRegistry.class b/build/_compileJava_2/net/minecraftforge/common/TierSortingRegistry.class new file mode 100644 index 000000000..d5990da36 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/common/TierSortingRegistry.class differ diff --git a/build/_compileJava_2/net/minecraftforge/common/ToolAction.class b/build/_compileJava_2/net/minecraftforge/common/ToolAction.class new file mode 100644 index 000000000..349624281 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/common/ToolAction.class differ diff --git a/build/_compileJava_2/net/minecraftforge/common/ToolActions.class b/build/_compileJava_2/net/minecraftforge/common/ToolActions.class new file mode 100644 index 000000000..7fda8b1b5 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/common/ToolActions.class differ diff --git a/build/_compileJava_2/net/minecraftforge/common/UsernameCache$1.class b/build/_compileJava_2/net/minecraftforge/common/UsernameCache$1.class new file mode 100644 index 000000000..093d95742 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/common/UsernameCache$1.class differ diff --git a/build/_compileJava_2/net/minecraftforge/common/UsernameCache$SaveThread.class b/build/_compileJava_2/net/minecraftforge/common/UsernameCache$SaveThread.class new file mode 100644 index 000000000..d93dc66ac Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/common/UsernameCache$SaveThread.class differ diff --git a/build/_compileJava_2/net/minecraftforge/common/UsernameCache.class b/build/_compileJava_2/net/minecraftforge/common/UsernameCache.class new file mode 100644 index 000000000..08fce678f Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/common/UsernameCache.class differ diff --git a/build/_compileJava_2/net/minecraftforge/common/VillagerTradingManager.class b/build/_compileJava_2/net/minecraftforge/common/VillagerTradingManager.class new file mode 100644 index 000000000..d5a93f9f6 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/common/VillagerTradingManager.class differ diff --git a/build/_compileJava_2/net/minecraftforge/common/WorldWorkerManager$IWorker.class b/build/_compileJava_2/net/minecraftforge/common/WorldWorkerManager$IWorker.class new file mode 100644 index 000000000..8f91bb748 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/common/WorldWorkerManager$IWorker.class differ diff --git a/build/_compileJava_2/net/minecraftforge/common/WorldWorkerManager.class b/build/_compileJava_2/net/minecraftforge/common/WorldWorkerManager.class new file mode 100644 index 000000000..d82045bc3 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/common/WorldWorkerManager.class differ diff --git a/build/_compileJava_2/net/minecraftforge/common/brewing/BrewingRecipe.class b/build/_compileJava_2/net/minecraftforge/common/brewing/BrewingRecipe.class new file mode 100644 index 000000000..d46ac091c Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/common/brewing/BrewingRecipe.class differ diff --git a/build/_compileJava_2/net/minecraftforge/common/brewing/BrewingRecipeRegistry.class b/build/_compileJava_2/net/minecraftforge/common/brewing/BrewingRecipeRegistry.class new file mode 100644 index 000000000..b5d07cda9 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/common/brewing/BrewingRecipeRegistry.class differ diff --git a/build/_compileJava_2/net/minecraftforge/common/brewing/IBrewingRecipe.class b/build/_compileJava_2/net/minecraftforge/common/brewing/IBrewingRecipe.class new file mode 100644 index 000000000..8b6931629 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/common/brewing/IBrewingRecipe.class differ diff --git a/build/_compileJava_2/net/minecraftforge/common/brewing/VanillaBrewingRecipe.class b/build/_compileJava_2/net/minecraftforge/common/brewing/VanillaBrewingRecipe.class new file mode 100644 index 000000000..3e1652a82 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/common/brewing/VanillaBrewingRecipe.class differ diff --git a/build/_compileJava_2/net/minecraftforge/common/brewing/package-info.class b/build/_compileJava_2/net/minecraftforge/common/brewing/package-info.class new file mode 100644 index 000000000..23ccf755d Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/common/brewing/package-info.class differ diff --git a/build/_compileJava_2/net/minecraftforge/common/capabilities/AutoRegisterCapability.class b/build/_compileJava_2/net/minecraftforge/common/capabilities/AutoRegisterCapability.class new file mode 100644 index 000000000..270095f93 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/common/capabilities/AutoRegisterCapability.class differ diff --git a/build/_compileJava_2/net/minecraftforge/common/capabilities/Capability.class b/build/_compileJava_2/net/minecraftforge/common/capabilities/Capability.class new file mode 100644 index 000000000..503c8deb7 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/common/capabilities/Capability.class differ diff --git a/build/_compileJava_2/net/minecraftforge/common/capabilities/CapabilityDispatcher.class b/build/_compileJava_2/net/minecraftforge/common/capabilities/CapabilityDispatcher.class new file mode 100644 index 000000000..672fe1be5 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/common/capabilities/CapabilityDispatcher.class differ diff --git a/build/_compileJava_2/net/minecraftforge/common/capabilities/CapabilityManager.class b/build/_compileJava_2/net/minecraftforge/common/capabilities/CapabilityManager.class new file mode 100644 index 000000000..a5a28b00f Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/common/capabilities/CapabilityManager.class differ diff --git a/build/_compileJava_2/net/minecraftforge/common/capabilities/CapabilityProvider$AsField.class b/build/_compileJava_2/net/minecraftforge/common/capabilities/CapabilityProvider$AsField.class new file mode 100644 index 000000000..13e3b2074 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/common/capabilities/CapabilityProvider$AsField.class differ diff --git a/build/_compileJava_2/net/minecraftforge/common/capabilities/CapabilityProvider.class b/build/_compileJava_2/net/minecraftforge/common/capabilities/CapabilityProvider.class new file mode 100644 index 000000000..50fa97459 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/common/capabilities/CapabilityProvider.class differ diff --git a/build/_compileJava_2/net/minecraftforge/common/capabilities/CapabilityToken.class b/build/_compileJava_2/net/minecraftforge/common/capabilities/CapabilityToken.class new file mode 100644 index 000000000..3e5f4fd6d Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/common/capabilities/CapabilityToken.class differ diff --git a/build/_compileJava_2/net/minecraftforge/common/capabilities/ForgeCapabilities$1.class b/build/_compileJava_2/net/minecraftforge/common/capabilities/ForgeCapabilities$1.class new file mode 100644 index 000000000..82b5e443d Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/common/capabilities/ForgeCapabilities$1.class differ diff --git a/build/_compileJava_2/net/minecraftforge/common/capabilities/ForgeCapabilities$2.class b/build/_compileJava_2/net/minecraftforge/common/capabilities/ForgeCapabilities$2.class new file mode 100644 index 000000000..ba6aaaaaf Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/common/capabilities/ForgeCapabilities$2.class differ diff --git a/build/_compileJava_2/net/minecraftforge/common/capabilities/ForgeCapabilities$3.class b/build/_compileJava_2/net/minecraftforge/common/capabilities/ForgeCapabilities$3.class new file mode 100644 index 000000000..07e402975 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/common/capabilities/ForgeCapabilities$3.class differ diff --git a/build/_compileJava_2/net/minecraftforge/common/capabilities/ForgeCapabilities$4.class b/build/_compileJava_2/net/minecraftforge/common/capabilities/ForgeCapabilities$4.class new file mode 100644 index 000000000..b9eba2ecf Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/common/capabilities/ForgeCapabilities$4.class differ diff --git a/build/_compileJava_2/net/minecraftforge/common/capabilities/ForgeCapabilities.class b/build/_compileJava_2/net/minecraftforge/common/capabilities/ForgeCapabilities.class new file mode 100644 index 000000000..ca0289297 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/common/capabilities/ForgeCapabilities.class differ diff --git a/build/_compileJava_2/net/minecraftforge/common/capabilities/ICapabilityProvider.class b/build/_compileJava_2/net/minecraftforge/common/capabilities/ICapabilityProvider.class new file mode 100644 index 000000000..a816a7978 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/common/capabilities/ICapabilityProvider.class differ diff --git a/build/_compileJava_2/net/minecraftforge/common/capabilities/ICapabilityProviderImpl.class b/build/_compileJava_2/net/minecraftforge/common/capabilities/ICapabilityProviderImpl.class new file mode 100644 index 000000000..5eb2c1fcc Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/common/capabilities/ICapabilityProviderImpl.class differ diff --git a/build/_compileJava_2/net/minecraftforge/common/capabilities/ICapabilitySerializable.class b/build/_compileJava_2/net/minecraftforge/common/capabilities/ICapabilitySerializable.class new file mode 100644 index 000000000..ceb97e4e5 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/common/capabilities/ICapabilitySerializable.class differ diff --git a/build/_compileJava_2/net/minecraftforge/common/capabilities/RegisterCapabilitiesEvent.class b/build/_compileJava_2/net/minecraftforge/common/capabilities/RegisterCapabilitiesEvent.class new file mode 100644 index 000000000..aff8c0cfc Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/common/capabilities/RegisterCapabilitiesEvent.class differ diff --git a/build/_compileJava_2/net/minecraftforge/common/command/EntitySelectorManager.class b/build/_compileJava_2/net/minecraftforge/common/command/EntitySelectorManager.class new file mode 100644 index 000000000..8371f4959 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/common/command/EntitySelectorManager.class differ diff --git a/build/_compileJava_2/net/minecraftforge/common/command/IEntitySelectorType.class b/build/_compileJava_2/net/minecraftforge/common/command/IEntitySelectorType.class new file mode 100644 index 000000000..ea55d8fa5 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/common/command/IEntitySelectorType.class differ diff --git a/build/_compileJava_2/net/minecraftforge/common/crafting/AbstractIngredient.class b/build/_compileJava_2/net/minecraftforge/common/crafting/AbstractIngredient.class new file mode 100644 index 000000000..160b0d768 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/common/crafting/AbstractIngredient.class differ diff --git a/build/_compileJava_2/net/minecraftforge/common/crafting/CompoundIngredient$Serializer.class b/build/_compileJava_2/net/minecraftforge/common/crafting/CompoundIngredient$Serializer.class new file mode 100644 index 000000000..9c5076ef9 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/common/crafting/CompoundIngredient$Serializer.class differ diff --git a/build/_compileJava_2/net/minecraftforge/common/crafting/CompoundIngredient.class b/build/_compileJava_2/net/minecraftforge/common/crafting/CompoundIngredient.class new file mode 100644 index 000000000..6be1dc0fc Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/common/crafting/CompoundIngredient.class differ diff --git a/build/_compileJava_2/net/minecraftforge/common/crafting/ConditionalAdvancement$Builder.class b/build/_compileJava_2/net/minecraftforge/common/crafting/ConditionalAdvancement$Builder.class new file mode 100644 index 000000000..722f3f695 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/common/crafting/ConditionalAdvancement$Builder.class differ diff --git a/build/_compileJava_2/net/minecraftforge/common/crafting/ConditionalAdvancement.class b/build/_compileJava_2/net/minecraftforge/common/crafting/ConditionalAdvancement.class new file mode 100644 index 000000000..15d81d5ab Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/common/crafting/ConditionalAdvancement.class differ diff --git a/build/_compileJava_2/net/minecraftforge/common/crafting/ConditionalRecipe$Builder.class b/build/_compileJava_2/net/minecraftforge/common/crafting/ConditionalRecipe$Builder.class new file mode 100644 index 000000000..9b5506625 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/common/crafting/ConditionalRecipe$Builder.class differ diff --git a/build/_compileJava_2/net/minecraftforge/common/crafting/ConditionalRecipe$Finished.class b/build/_compileJava_2/net/minecraftforge/common/crafting/ConditionalRecipe$Finished.class new file mode 100644 index 000000000..451afb101 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/common/crafting/ConditionalRecipe$Finished.class differ diff --git a/build/_compileJava_2/net/minecraftforge/common/crafting/ConditionalRecipe$Serializer.class b/build/_compileJava_2/net/minecraftforge/common/crafting/ConditionalRecipe$Serializer.class new file mode 100644 index 000000000..fb298a4d6 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/common/crafting/ConditionalRecipe$Serializer.class differ diff --git a/build/_compileJava_2/net/minecraftforge/common/crafting/ConditionalRecipe.class b/build/_compileJava_2/net/minecraftforge/common/crafting/ConditionalRecipe.class new file mode 100644 index 000000000..c1e570bc8 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/common/crafting/ConditionalRecipe.class differ diff --git a/build/_compileJava_2/net/minecraftforge/common/crafting/CraftingHelper.class b/build/_compileJava_2/net/minecraftforge/common/crafting/CraftingHelper.class new file mode 100644 index 000000000..817b5f88c Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/common/crafting/CraftingHelper.class differ diff --git a/build/_compileJava_2/net/minecraftforge/common/crafting/DifferenceIngredient$Serializer.class b/build/_compileJava_2/net/minecraftforge/common/crafting/DifferenceIngredient$Serializer.class new file mode 100644 index 000000000..c22310fb0 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/common/crafting/DifferenceIngredient$Serializer.class differ diff --git a/build/_compileJava_2/net/minecraftforge/common/crafting/DifferenceIngredient.class b/build/_compileJava_2/net/minecraftforge/common/crafting/DifferenceIngredient.class new file mode 100644 index 000000000..77fc2408b Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/common/crafting/DifferenceIngredient.class differ diff --git a/build/_compileJava_2/net/minecraftforge/common/crafting/IIngredientSerializer.class b/build/_compileJava_2/net/minecraftforge/common/crafting/IIngredientSerializer.class new file mode 100644 index 000000000..d0791dbec Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/common/crafting/IIngredientSerializer.class differ diff --git a/build/_compileJava_2/net/minecraftforge/common/crafting/IRecipeContainer.class b/build/_compileJava_2/net/minecraftforge/common/crafting/IRecipeContainer.class new file mode 100644 index 000000000..f254a556d Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/common/crafting/IRecipeContainer.class differ diff --git a/build/_compileJava_2/net/minecraftforge/common/crafting/IShapedRecipe.class b/build/_compileJava_2/net/minecraftforge/common/crafting/IShapedRecipe.class new file mode 100644 index 000000000..93de104b7 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/common/crafting/IShapedRecipe.class differ diff --git a/build/_compileJava_2/net/minecraftforge/common/crafting/IntersectionIngredient$Serializer.class b/build/_compileJava_2/net/minecraftforge/common/crafting/IntersectionIngredient$Serializer.class new file mode 100644 index 000000000..39abec7c2 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/common/crafting/IntersectionIngredient$Serializer.class differ diff --git a/build/_compileJava_2/net/minecraftforge/common/crafting/IntersectionIngredient.class b/build/_compileJava_2/net/minecraftforge/common/crafting/IntersectionIngredient.class new file mode 100644 index 000000000..877379a20 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/common/crafting/IntersectionIngredient.class differ diff --git a/build/_compileJava_2/net/minecraftforge/common/crafting/MultiItemValue.class b/build/_compileJava_2/net/minecraftforge/common/crafting/MultiItemValue.class new file mode 100644 index 000000000..7994a2cae Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/common/crafting/MultiItemValue.class differ diff --git a/build/_compileJava_2/net/minecraftforge/common/crafting/PartialNBTIngredient$Serializer.class b/build/_compileJava_2/net/minecraftforge/common/crafting/PartialNBTIngredient$Serializer.class new file mode 100644 index 000000000..4386c24d0 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/common/crafting/PartialNBTIngredient$Serializer.class differ diff --git a/build/_compileJava_2/net/minecraftforge/common/crafting/PartialNBTIngredient.class b/build/_compileJava_2/net/minecraftforge/common/crafting/PartialNBTIngredient.class new file mode 100644 index 000000000..86b36d2f0 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/common/crafting/PartialNBTIngredient.class differ diff --git a/build/_compileJava_2/net/minecraftforge/common/crafting/StrictNBTIngredient$Serializer.class b/build/_compileJava_2/net/minecraftforge/common/crafting/StrictNBTIngredient$Serializer.class new file mode 100644 index 000000000..7dbddac86 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/common/crafting/StrictNBTIngredient$Serializer.class differ diff --git a/build/_compileJava_2/net/minecraftforge/common/crafting/StrictNBTIngredient.class b/build/_compileJava_2/net/minecraftforge/common/crafting/StrictNBTIngredient.class new file mode 100644 index 000000000..761c2e93c Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/common/crafting/StrictNBTIngredient.class differ diff --git a/build/_compileJava_2/net/minecraftforge/common/crafting/VanillaIngredientSerializer.class b/build/_compileJava_2/net/minecraftforge/common/crafting/VanillaIngredientSerializer.class new file mode 100644 index 000000000..a49751968 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/common/crafting/VanillaIngredientSerializer.class differ diff --git a/build/_compileJava_2/net/minecraftforge/common/crafting/conditions/AndCondition$Serializer.class b/build/_compileJava_2/net/minecraftforge/common/crafting/conditions/AndCondition$Serializer.class new file mode 100644 index 000000000..acd7c0d26 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/common/crafting/conditions/AndCondition$Serializer.class differ diff --git a/build/_compileJava_2/net/minecraftforge/common/crafting/conditions/AndCondition.class b/build/_compileJava_2/net/minecraftforge/common/crafting/conditions/AndCondition.class new file mode 100644 index 000000000..fdebed711 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/common/crafting/conditions/AndCondition.class differ diff --git a/build/_compileJava_2/net/minecraftforge/common/crafting/conditions/ConditionContext.class b/build/_compileJava_2/net/minecraftforge/common/crafting/conditions/ConditionContext.class new file mode 100644 index 000000000..f6738ed35 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/common/crafting/conditions/ConditionContext.class differ diff --git a/build/_compileJava_2/net/minecraftforge/common/crafting/conditions/FalseCondition$Serializer.class b/build/_compileJava_2/net/minecraftforge/common/crafting/conditions/FalseCondition$Serializer.class new file mode 100644 index 000000000..55112e7b5 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/common/crafting/conditions/FalseCondition$Serializer.class differ diff --git a/build/_compileJava_2/net/minecraftforge/common/crafting/conditions/FalseCondition.class b/build/_compileJava_2/net/minecraftforge/common/crafting/conditions/FalseCondition.class new file mode 100644 index 000000000..8a948f6f2 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/common/crafting/conditions/FalseCondition.class differ diff --git a/build/_compileJava_2/net/minecraftforge/common/crafting/conditions/ICondition$IContext$1.class b/build/_compileJava_2/net/minecraftforge/common/crafting/conditions/ICondition$IContext$1.class new file mode 100644 index 000000000..2d4f951d1 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/common/crafting/conditions/ICondition$IContext$1.class differ diff --git a/build/_compileJava_2/net/minecraftforge/common/crafting/conditions/ICondition$IContext$2.class b/build/_compileJava_2/net/minecraftforge/common/crafting/conditions/ICondition$IContext$2.class new file mode 100644 index 000000000..f6d0487a0 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/common/crafting/conditions/ICondition$IContext$2.class differ diff --git a/build/_compileJava_2/net/minecraftforge/common/crafting/conditions/ICondition$IContext.class b/build/_compileJava_2/net/minecraftforge/common/crafting/conditions/ICondition$IContext.class new file mode 100644 index 000000000..aa14c2707 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/common/crafting/conditions/ICondition$IContext.class differ diff --git a/build/_compileJava_2/net/minecraftforge/common/crafting/conditions/ICondition.class b/build/_compileJava_2/net/minecraftforge/common/crafting/conditions/ICondition.class new file mode 100644 index 000000000..966602066 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/common/crafting/conditions/ICondition.class differ diff --git a/build/_compileJava_2/net/minecraftforge/common/crafting/conditions/IConditionBuilder.class b/build/_compileJava_2/net/minecraftforge/common/crafting/conditions/IConditionBuilder.class new file mode 100644 index 000000000..5fa6acc56 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/common/crafting/conditions/IConditionBuilder.class differ diff --git a/build/_compileJava_2/net/minecraftforge/common/crafting/conditions/IConditionSerializer.class b/build/_compileJava_2/net/minecraftforge/common/crafting/conditions/IConditionSerializer.class new file mode 100644 index 000000000..97a12b6ee Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/common/crafting/conditions/IConditionSerializer.class differ diff --git a/build/_compileJava_2/net/minecraftforge/common/crafting/conditions/ItemExistsCondition$Serializer.class b/build/_compileJava_2/net/minecraftforge/common/crafting/conditions/ItemExistsCondition$Serializer.class new file mode 100644 index 000000000..e8cebbdd1 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/common/crafting/conditions/ItemExistsCondition$Serializer.class differ diff --git a/build/_compileJava_2/net/minecraftforge/common/crafting/conditions/ItemExistsCondition.class b/build/_compileJava_2/net/minecraftforge/common/crafting/conditions/ItemExistsCondition.class new file mode 100644 index 000000000..c4b323ae5 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/common/crafting/conditions/ItemExistsCondition.class differ diff --git a/build/_compileJava_2/net/minecraftforge/common/crafting/conditions/ModLoadedCondition$Serializer.class b/build/_compileJava_2/net/minecraftforge/common/crafting/conditions/ModLoadedCondition$Serializer.class new file mode 100644 index 000000000..704df4534 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/common/crafting/conditions/ModLoadedCondition$Serializer.class differ diff --git a/build/_compileJava_2/net/minecraftforge/common/crafting/conditions/ModLoadedCondition.class b/build/_compileJava_2/net/minecraftforge/common/crafting/conditions/ModLoadedCondition.class new file mode 100644 index 000000000..f654b3a91 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/common/crafting/conditions/ModLoadedCondition.class differ diff --git a/build/_compileJava_2/net/minecraftforge/common/crafting/conditions/NotCondition$Serializer.class b/build/_compileJava_2/net/minecraftforge/common/crafting/conditions/NotCondition$Serializer.class new file mode 100644 index 000000000..74757c92f Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/common/crafting/conditions/NotCondition$Serializer.class differ diff --git a/build/_compileJava_2/net/minecraftforge/common/crafting/conditions/NotCondition.class b/build/_compileJava_2/net/minecraftforge/common/crafting/conditions/NotCondition.class new file mode 100644 index 000000000..5ad96c6dc Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/common/crafting/conditions/NotCondition.class differ diff --git a/build/_compileJava_2/net/minecraftforge/common/crafting/conditions/OrCondition$Serializer.class b/build/_compileJava_2/net/minecraftforge/common/crafting/conditions/OrCondition$Serializer.class new file mode 100644 index 000000000..14aa7a10b Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/common/crafting/conditions/OrCondition$Serializer.class differ diff --git a/build/_compileJava_2/net/minecraftforge/common/crafting/conditions/OrCondition.class b/build/_compileJava_2/net/minecraftforge/common/crafting/conditions/OrCondition.class new file mode 100644 index 000000000..517382b2a Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/common/crafting/conditions/OrCondition.class differ diff --git a/build/_compileJava_2/net/minecraftforge/common/crafting/conditions/TagEmptyCondition$Serializer.class b/build/_compileJava_2/net/minecraftforge/common/crafting/conditions/TagEmptyCondition$Serializer.class new file mode 100644 index 000000000..5116aed6e Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/common/crafting/conditions/TagEmptyCondition$Serializer.class differ diff --git a/build/_compileJava_2/net/minecraftforge/common/crafting/conditions/TagEmptyCondition.class b/build/_compileJava_2/net/minecraftforge/common/crafting/conditions/TagEmptyCondition.class new file mode 100644 index 000000000..8723e8ad8 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/common/crafting/conditions/TagEmptyCondition.class differ diff --git a/build/_compileJava_2/net/minecraftforge/common/crafting/conditions/TrueCondition$Serializer.class b/build/_compileJava_2/net/minecraftforge/common/crafting/conditions/TrueCondition$Serializer.class new file mode 100644 index 000000000..6c284ebc8 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/common/crafting/conditions/TrueCondition$Serializer.class differ diff --git a/build/_compileJava_2/net/minecraftforge/common/crafting/conditions/TrueCondition.class b/build/_compileJava_2/net/minecraftforge/common/crafting/conditions/TrueCondition.class new file mode 100644 index 000000000..675db54ad Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/common/crafting/conditions/TrueCondition.class differ diff --git a/build/_compileJava_2/net/minecraftforge/common/crafting/package-info.class b/build/_compileJava_2/net/minecraftforge/common/crafting/package-info.class new file mode 100644 index 000000000..1a73cacfa Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/common/crafting/package-info.class differ diff --git a/build/_compileJava_2/net/minecraftforge/common/data/BlockTagsProvider.class b/build/_compileJava_2/net/minecraftforge/common/data/BlockTagsProvider.class new file mode 100644 index 000000000..26614dcf3 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/common/data/BlockTagsProvider.class differ diff --git a/build/_compileJava_2/net/minecraftforge/common/data/DatapackBuiltinEntriesProvider.class b/build/_compileJava_2/net/minecraftforge/common/data/DatapackBuiltinEntriesProvider.class new file mode 100644 index 000000000..d3ad53473 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/common/data/DatapackBuiltinEntriesProvider.class differ diff --git a/build/_compileJava_2/net/minecraftforge/common/data/ExistingFileHelper$IResourceType.class b/build/_compileJava_2/net/minecraftforge/common/data/ExistingFileHelper$IResourceType.class new file mode 100644 index 000000000..19c949f56 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/common/data/ExistingFileHelper$IResourceType.class differ diff --git a/build/_compileJava_2/net/minecraftforge/common/data/ExistingFileHelper$ResourceType.class b/build/_compileJava_2/net/minecraftforge/common/data/ExistingFileHelper$ResourceType.class new file mode 100644 index 000000000..f25112bdc Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/common/data/ExistingFileHelper$ResourceType.class differ diff --git a/build/_compileJava_2/net/minecraftforge/common/data/ExistingFileHelper.class b/build/_compileJava_2/net/minecraftforge/common/data/ExistingFileHelper.class new file mode 100644 index 000000000..54f592daf Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/common/data/ExistingFileHelper.class differ diff --git a/build/_compileJava_2/net/minecraftforge/common/data/ForgeAdvancementProvider$AdvancementGenerator.class b/build/_compileJava_2/net/minecraftforge/common/data/ForgeAdvancementProvider$AdvancementGenerator.class new file mode 100644 index 000000000..af1b247d8 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/common/data/ForgeAdvancementProvider$AdvancementGenerator.class differ diff --git a/build/_compileJava_2/net/minecraftforge/common/data/ForgeAdvancementProvider.class b/build/_compileJava_2/net/minecraftforge/common/data/ForgeAdvancementProvider.class new file mode 100644 index 000000000..8ed2e2010 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/common/data/ForgeAdvancementProvider.class differ diff --git a/build/_compileJava_2/net/minecraftforge/common/data/ForgeBiomeTagsProvider.class b/build/_compileJava_2/net/minecraftforge/common/data/ForgeBiomeTagsProvider.class new file mode 100644 index 000000000..298e2f197 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/common/data/ForgeBiomeTagsProvider.class differ diff --git a/build/_compileJava_2/net/minecraftforge/common/data/ForgeBlockTagsProvider.class b/build/_compileJava_2/net/minecraftforge/common/data/ForgeBlockTagsProvider.class new file mode 100644 index 000000000..43c0a2e27 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/common/data/ForgeBlockTagsProvider.class differ diff --git a/build/_compileJava_2/net/minecraftforge/common/data/ForgeEntityTypeTagsProvider.class b/build/_compileJava_2/net/minecraftforge/common/data/ForgeEntityTypeTagsProvider.class new file mode 100644 index 000000000..794c9f65c Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/common/data/ForgeEntityTypeTagsProvider.class differ diff --git a/build/_compileJava_2/net/minecraftforge/common/data/ForgeFluidTagsProvider.class b/build/_compileJava_2/net/minecraftforge/common/data/ForgeFluidTagsProvider.class new file mode 100644 index 000000000..87651dab0 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/common/data/ForgeFluidTagsProvider.class differ diff --git a/build/_compileJava_2/net/minecraftforge/common/data/ForgeItemTagsProvider.class b/build/_compileJava_2/net/minecraftforge/common/data/ForgeItemTagsProvider.class new file mode 100644 index 000000000..27b2f4555 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/common/data/ForgeItemTagsProvider.class differ diff --git a/build/_compileJava_2/net/minecraftforge/common/data/ForgeLootTableProvider.class b/build/_compileJava_2/net/minecraftforge/common/data/ForgeLootTableProvider.class new file mode 100644 index 000000000..ddb97e080 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/common/data/ForgeLootTableProvider.class differ diff --git a/build/_compileJava_2/net/minecraftforge/common/data/ForgeRecipeProvider.class b/build/_compileJava_2/net/minecraftforge/common/data/ForgeRecipeProvider.class new file mode 100644 index 000000000..710c340d2 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/common/data/ForgeRecipeProvider.class differ diff --git a/build/_compileJava_2/net/minecraftforge/common/data/ForgeSpriteSourceProvider.class b/build/_compileJava_2/net/minecraftforge/common/data/ForgeSpriteSourceProvider.class new file mode 100644 index 000000000..4c3425412 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/common/data/ForgeSpriteSourceProvider.class differ diff --git a/build/_compileJava_2/net/minecraftforge/common/data/GlobalLootModifierProvider.class b/build/_compileJava_2/net/minecraftforge/common/data/GlobalLootModifierProvider.class new file mode 100644 index 000000000..b3bf046a5 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/common/data/GlobalLootModifierProvider.class differ diff --git a/build/_compileJava_2/net/minecraftforge/common/data/JsonCodecProvider.class b/build/_compileJava_2/net/minecraftforge/common/data/JsonCodecProvider.class new file mode 100644 index 000000000..94f9cb67b Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/common/data/JsonCodecProvider.class differ diff --git a/build/_compileJava_2/net/minecraftforge/common/data/LanguageProvider.class b/build/_compileJava_2/net/minecraftforge/common/data/LanguageProvider.class new file mode 100644 index 000000000..b3aa75d53 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/common/data/LanguageProvider.class differ diff --git a/build/_compileJava_2/net/minecraftforge/common/data/ParticleDescriptionProvider$1.class b/build/_compileJava_2/net/minecraftforge/common/data/ParticleDescriptionProvider$1.class new file mode 100644 index 000000000..cd575d426 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/common/data/ParticleDescriptionProvider$1.class differ diff --git a/build/_compileJava_2/net/minecraftforge/common/data/ParticleDescriptionProvider.class b/build/_compileJava_2/net/minecraftforge/common/data/ParticleDescriptionProvider.class new file mode 100644 index 000000000..26fcd1f22 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/common/data/ParticleDescriptionProvider.class differ diff --git a/build/_compileJava_2/net/minecraftforge/common/data/SoundDefinition$Sound.class b/build/_compileJava_2/net/minecraftforge/common/data/SoundDefinition$Sound.class new file mode 100644 index 000000000..ceda2664e Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/common/data/SoundDefinition$Sound.class differ diff --git a/build/_compileJava_2/net/minecraftforge/common/data/SoundDefinition$SoundType.class b/build/_compileJava_2/net/minecraftforge/common/data/SoundDefinition$SoundType.class new file mode 100644 index 000000000..2730ce414 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/common/data/SoundDefinition$SoundType.class differ diff --git a/build/_compileJava_2/net/minecraftforge/common/data/SoundDefinition.class b/build/_compileJava_2/net/minecraftforge/common/data/SoundDefinition.class new file mode 100644 index 000000000..89d227ae5 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/common/data/SoundDefinition.class differ diff --git a/build/_compileJava_2/net/minecraftforge/common/data/SoundDefinitionsProvider$1.class b/build/_compileJava_2/net/minecraftforge/common/data/SoundDefinitionsProvider$1.class new file mode 100644 index 000000000..c1689c230 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/common/data/SoundDefinitionsProvider$1.class differ diff --git a/build/_compileJava_2/net/minecraftforge/common/data/SoundDefinitionsProvider.class b/build/_compileJava_2/net/minecraftforge/common/data/SoundDefinitionsProvider.class new file mode 100644 index 000000000..1e2b275f4 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/common/data/SoundDefinitionsProvider.class differ diff --git a/build/_compileJava_2/net/minecraftforge/common/data/SpriteSourceProvider$SourceList.class b/build/_compileJava_2/net/minecraftforge/common/data/SpriteSourceProvider$SourceList.class new file mode 100644 index 000000000..a8b16a464 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/common/data/SpriteSourceProvider$SourceList.class differ diff --git a/build/_compileJava_2/net/minecraftforge/common/data/SpriteSourceProvider.class b/build/_compileJava_2/net/minecraftforge/common/data/SpriteSourceProvider.class new file mode 100644 index 000000000..ef6b1f652 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/common/data/SpriteSourceProvider.class differ diff --git a/build/_compileJava_2/net/minecraftforge/common/data/VanillaSoundDefinitionsProvider.class b/build/_compileJava_2/net/minecraftforge/common/data/VanillaSoundDefinitionsProvider.class new file mode 100644 index 000000000..3d59a083c Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/common/data/VanillaSoundDefinitionsProvider.class differ diff --git a/build/_compileJava_2/net/minecraftforge/common/data/package-info.class b/build/_compileJava_2/net/minecraftforge/common/data/package-info.class new file mode 100644 index 000000000..87ae4e2cc Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/common/data/package-info.class differ diff --git a/build/_compileJava_2/net/minecraftforge/common/extensions/IForgeAbstractMinecart.class b/build/_compileJava_2/net/minecraftforge/common/extensions/IForgeAbstractMinecart.class new file mode 100644 index 000000000..ac7900d7a Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/common/extensions/IForgeAbstractMinecart.class differ diff --git a/build/_compileJava_2/net/minecraftforge/common/extensions/IForgeAdvancementBuilder.class b/build/_compileJava_2/net/minecraftforge/common/extensions/IForgeAdvancementBuilder.class new file mode 100644 index 000000000..0c71f3d4f Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/common/extensions/IForgeAdvancementBuilder.class differ diff --git a/build/_compileJava_2/net/minecraftforge/common/extensions/IForgeBaseRailBlock.class b/build/_compileJava_2/net/minecraftforge/common/extensions/IForgeBaseRailBlock.class new file mode 100644 index 000000000..dcb75ab88 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/common/extensions/IForgeBaseRailBlock.class differ diff --git a/build/_compileJava_2/net/minecraftforge/common/extensions/IForgeBlock.class b/build/_compileJava_2/net/minecraftforge/common/extensions/IForgeBlock.class new file mode 100644 index 000000000..48e20d857 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/common/extensions/IForgeBlock.class differ diff --git a/build/_compileJava_2/net/minecraftforge/common/extensions/IForgeBlockEntity.class b/build/_compileJava_2/net/minecraftforge/common/extensions/IForgeBlockEntity.class new file mode 100644 index 000000000..675f00ea5 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/common/extensions/IForgeBlockEntity.class differ diff --git a/build/_compileJava_2/net/minecraftforge/common/extensions/IForgeBlockGetter.class b/build/_compileJava_2/net/minecraftforge/common/extensions/IForgeBlockGetter.class new file mode 100644 index 000000000..16c9528d5 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/common/extensions/IForgeBlockGetter.class differ diff --git a/build/_compileJava_2/net/minecraftforge/common/extensions/IForgeBlockState.class b/build/_compileJava_2/net/minecraftforge/common/extensions/IForgeBlockState.class new file mode 100644 index 000000000..dbec8e4d8 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/common/extensions/IForgeBlockState.class differ diff --git a/build/_compileJava_2/net/minecraftforge/common/extensions/IForgeBoat.class b/build/_compileJava_2/net/minecraftforge/common/extensions/IForgeBoat.class new file mode 100644 index 000000000..4a5a0e6bb Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/common/extensions/IForgeBoat.class differ diff --git a/build/_compileJava_2/net/minecraftforge/common/extensions/IForgeBucketPickup.class b/build/_compileJava_2/net/minecraftforge/common/extensions/IForgeBucketPickup.class new file mode 100644 index 000000000..07f34d60c Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/common/extensions/IForgeBucketPickup.class differ diff --git a/build/_compileJava_2/net/minecraftforge/common/extensions/IForgeCommandSourceStack.class b/build/_compileJava_2/net/minecraftforge/common/extensions/IForgeCommandSourceStack.class new file mode 100644 index 000000000..05c432eae Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/common/extensions/IForgeCommandSourceStack.class differ diff --git a/build/_compileJava_2/net/minecraftforge/common/extensions/IForgeDispensibleContainerItem.class b/build/_compileJava_2/net/minecraftforge/common/extensions/IForgeDispensibleContainerItem.class new file mode 100644 index 000000000..675ba4054 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/common/extensions/IForgeDispensibleContainerItem.class differ diff --git a/build/_compileJava_2/net/minecraftforge/common/extensions/IForgeEnchantment.class b/build/_compileJava_2/net/minecraftforge/common/extensions/IForgeEnchantment.class new file mode 100644 index 000000000..362de8b0d Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/common/extensions/IForgeEnchantment.class differ diff --git a/build/_compileJava_2/net/minecraftforge/common/extensions/IForgeEntity.class b/build/_compileJava_2/net/minecraftforge/common/extensions/IForgeEntity.class new file mode 100644 index 000000000..8ae4f1698 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/common/extensions/IForgeEntity.class differ diff --git a/build/_compileJava_2/net/minecraftforge/common/extensions/IForgeFluid.class b/build/_compileJava_2/net/minecraftforge/common/extensions/IForgeFluid.class new file mode 100644 index 000000000..62588af67 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/common/extensions/IForgeFluid.class differ diff --git a/build/_compileJava_2/net/minecraftforge/common/extensions/IForgeFluidState.class b/build/_compileJava_2/net/minecraftforge/common/extensions/IForgeFluidState.class new file mode 100644 index 000000000..4694ab715 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/common/extensions/IForgeFluidState.class differ diff --git a/build/_compileJava_2/net/minecraftforge/common/extensions/IForgeFriendlyByteBuf.class b/build/_compileJava_2/net/minecraftforge/common/extensions/IForgeFriendlyByteBuf.class new file mode 100644 index 000000000..1989a271a Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/common/extensions/IForgeFriendlyByteBuf.class differ diff --git a/build/_compileJava_2/net/minecraftforge/common/extensions/IForgeHolderSet$SerializationType.class b/build/_compileJava_2/net/minecraftforge/common/extensions/IForgeHolderSet$SerializationType.class new file mode 100644 index 000000000..8d547052e Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/common/extensions/IForgeHolderSet$SerializationType.class differ diff --git a/build/_compileJava_2/net/minecraftforge/common/extensions/IForgeHolderSet.class b/build/_compileJava_2/net/minecraftforge/common/extensions/IForgeHolderSet.class new file mode 100644 index 000000000..8c7a51760 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/common/extensions/IForgeHolderSet.class differ diff --git a/build/_compileJava_2/net/minecraftforge/common/extensions/IForgeIntrinsicHolderTagAppender.class b/build/_compileJava_2/net/minecraftforge/common/extensions/IForgeIntrinsicHolderTagAppender.class new file mode 100644 index 000000000..23e619a13 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/common/extensions/IForgeIntrinsicHolderTagAppender.class differ diff --git a/build/_compileJava_2/net/minecraftforge/common/extensions/IForgeItem.class b/build/_compileJava_2/net/minecraftforge/common/extensions/IForgeItem.class new file mode 100644 index 000000000..2a286b084 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/common/extensions/IForgeItem.class differ diff --git a/build/_compileJava_2/net/minecraftforge/common/extensions/IForgeItemStack.class b/build/_compileJava_2/net/minecraftforge/common/extensions/IForgeItemStack.class new file mode 100644 index 000000000..c9c09e548 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/common/extensions/IForgeItemStack.class differ diff --git a/build/_compileJava_2/net/minecraftforge/common/extensions/IForgeLevel.class b/build/_compileJava_2/net/minecraftforge/common/extensions/IForgeLevel.class new file mode 100644 index 000000000..fdf2949e9 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/common/extensions/IForgeLevel.class differ diff --git a/build/_compileJava_2/net/minecraftforge/common/extensions/IForgeLevelChunk.class b/build/_compileJava_2/net/minecraftforge/common/extensions/IForgeLevelChunk.class new file mode 100644 index 000000000..6b35eb5f2 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/common/extensions/IForgeLevelChunk.class differ diff --git a/build/_compileJava_2/net/minecraftforge/common/extensions/IForgeLivingEntity.class b/build/_compileJava_2/net/minecraftforge/common/extensions/IForgeLivingEntity.class new file mode 100644 index 000000000..0363e7635 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/common/extensions/IForgeLivingEntity.class differ diff --git a/build/_compileJava_2/net/minecraftforge/common/extensions/IForgeMenuType.class b/build/_compileJava_2/net/minecraftforge/common/extensions/IForgeMenuType.class new file mode 100644 index 000000000..ea984220e Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/common/extensions/IForgeMenuType.class differ diff --git a/build/_compileJava_2/net/minecraftforge/common/extensions/IForgeMobEffect.class b/build/_compileJava_2/net/minecraftforge/common/extensions/IForgeMobEffect.class new file mode 100644 index 000000000..dcde94963 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/common/extensions/IForgeMobEffect.class differ diff --git a/build/_compileJava_2/net/minecraftforge/common/extensions/IForgeMobEffectInstance.class b/build/_compileJava_2/net/minecraftforge/common/extensions/IForgeMobEffectInstance.class new file mode 100644 index 000000000..faaa3788f Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/common/extensions/IForgeMobEffectInstance.class differ diff --git a/build/_compileJava_2/net/minecraftforge/common/extensions/IForgePackResources.class b/build/_compileJava_2/net/minecraftforge/common/extensions/IForgePackResources.class new file mode 100644 index 000000000..0c3a19958 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/common/extensions/IForgePackResources.class differ diff --git a/build/_compileJava_2/net/minecraftforge/common/extensions/IForgePlayer.class b/build/_compileJava_2/net/minecraftforge/common/extensions/IForgePlayer.class new file mode 100644 index 000000000..05dc1a90d Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/common/extensions/IForgePlayer.class differ diff --git a/build/_compileJava_2/net/minecraftforge/common/extensions/IForgePotion.class b/build/_compileJava_2/net/minecraftforge/common/extensions/IForgePotion.class new file mode 100644 index 000000000..c2d55d1c0 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/common/extensions/IForgePotion.class differ diff --git a/build/_compileJava_2/net/minecraftforge/common/extensions/IForgeRawTagBuilder.class b/build/_compileJava_2/net/minecraftforge/common/extensions/IForgeRawTagBuilder.class new file mode 100644 index 000000000..6fb8cff3b Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/common/extensions/IForgeRawTagBuilder.class differ diff --git a/build/_compileJava_2/net/minecraftforge/common/extensions/IForgeRecipeSerializer.class b/build/_compileJava_2/net/minecraftforge/common/extensions/IForgeRecipeSerializer.class new file mode 100644 index 000000000..d53885714 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/common/extensions/IForgeRecipeSerializer.class differ diff --git a/build/_compileJava_2/net/minecraftforge/common/extensions/IForgeTagAppender.class b/build/_compileJava_2/net/minecraftforge/common/extensions/IForgeTagAppender.class new file mode 100644 index 000000000..46e4f7439 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/common/extensions/IForgeTagAppender.class differ diff --git a/build/_compileJava_2/net/minecraftforge/common/extensions/IForgeTransformation.class b/build/_compileJava_2/net/minecraftforge/common/extensions/IForgeTransformation.class new file mode 100644 index 000000000..4ecce96c7 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/common/extensions/IForgeTransformation.class differ diff --git a/build/_compileJava_2/net/minecraftforge/common/loot/CanToolPerformAction$Serializer.class b/build/_compileJava_2/net/minecraftforge/common/loot/CanToolPerformAction$Serializer.class new file mode 100644 index 000000000..c12ca1360 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/common/loot/CanToolPerformAction$Serializer.class differ diff --git a/build/_compileJava_2/net/minecraftforge/common/loot/CanToolPerformAction.class b/build/_compileJava_2/net/minecraftforge/common/loot/CanToolPerformAction.class new file mode 100644 index 000000000..2f7ef0f0e Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/common/loot/CanToolPerformAction.class differ diff --git a/build/_compileJava_2/net/minecraftforge/common/loot/IGlobalLootModifier.class b/build/_compileJava_2/net/minecraftforge/common/loot/IGlobalLootModifier.class new file mode 100644 index 000000000..6e1a61c09 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/common/loot/IGlobalLootModifier.class differ diff --git a/build/_compileJava_2/net/minecraftforge/common/loot/LootModifier.class b/build/_compileJava_2/net/minecraftforge/common/loot/LootModifier.class new file mode 100644 index 000000000..da960c037 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/common/loot/LootModifier.class differ diff --git a/build/_compileJava_2/net/minecraftforge/common/loot/LootModifierManager.class b/build/_compileJava_2/net/minecraftforge/common/loot/LootModifierManager.class new file mode 100644 index 000000000..35d0382fb Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/common/loot/LootModifierManager.class differ diff --git a/build/_compileJava_2/net/minecraftforge/common/loot/LootTableIdCondition$Builder.class b/build/_compileJava_2/net/minecraftforge/common/loot/LootTableIdCondition$Builder.class new file mode 100644 index 000000000..f11ea4cfc Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/common/loot/LootTableIdCondition$Builder.class differ diff --git a/build/_compileJava_2/net/minecraftforge/common/loot/LootTableIdCondition$Serializer.class b/build/_compileJava_2/net/minecraftforge/common/loot/LootTableIdCondition$Serializer.class new file mode 100644 index 000000000..53a09f041 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/common/loot/LootTableIdCondition$Serializer.class differ diff --git a/build/_compileJava_2/net/minecraftforge/common/loot/LootTableIdCondition.class b/build/_compileJava_2/net/minecraftforge/common/loot/LootTableIdCondition.class new file mode 100644 index 000000000..362dd3fd8 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/common/loot/LootTableIdCondition.class differ diff --git a/build/_compileJava_2/net/minecraftforge/common/property/Properties.class b/build/_compileJava_2/net/minecraftforge/common/property/Properties.class new file mode 100644 index 000000000..6df152316 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/common/property/Properties.class differ diff --git a/build/_compileJava_2/net/minecraftforge/common/ticket/AABBTicket.class b/build/_compileJava_2/net/minecraftforge/common/ticket/AABBTicket.class new file mode 100644 index 000000000..e0c0e8f29 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/common/ticket/AABBTicket.class differ diff --git a/build/_compileJava_2/net/minecraftforge/common/ticket/ChunkTicketManager.class b/build/_compileJava_2/net/minecraftforge/common/ticket/ChunkTicketManager.class new file mode 100644 index 000000000..d495c9f1a Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/common/ticket/ChunkTicketManager.class differ diff --git a/build/_compileJava_2/net/minecraftforge/common/ticket/ITicketGetter.class b/build/_compileJava_2/net/minecraftforge/common/ticket/ITicketGetter.class new file mode 100644 index 000000000..a7b6d1d68 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/common/ticket/ITicketGetter.class differ diff --git a/build/_compileJava_2/net/minecraftforge/common/ticket/ITicketManager.class b/build/_compileJava_2/net/minecraftforge/common/ticket/ITicketManager.class new file mode 100644 index 000000000..220ccdd5a Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/common/ticket/ITicketManager.class differ diff --git a/build/_compileJava_2/net/minecraftforge/common/ticket/SimpleTicket.class b/build/_compileJava_2/net/minecraftforge/common/ticket/SimpleTicket.class new file mode 100644 index 000000000..95235da3d Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/common/ticket/SimpleTicket.class differ diff --git a/build/_compileJava_2/net/minecraftforge/common/util/BlockSnapshot.class b/build/_compileJava_2/net/minecraftforge/common/util/BlockSnapshot.class new file mode 100644 index 000000000..80240e2a1 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/common/util/BlockSnapshot.class differ diff --git a/build/_compileJava_2/net/minecraftforge/common/util/BrainBuilder.class b/build/_compileJava_2/net/minecraftforge/common/util/BrainBuilder.class new file mode 100644 index 000000000..3549bd8d9 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/common/util/BrainBuilder.class differ diff --git a/build/_compileJava_2/net/minecraftforge/common/util/CenterChunkPosComparator.class b/build/_compileJava_2/net/minecraftforge/common/util/CenterChunkPosComparator.class new file mode 100644 index 000000000..a53e85534 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/common/util/CenterChunkPosComparator.class differ diff --git a/build/_compileJava_2/net/minecraftforge/common/util/ConcatenatedListView.class b/build/_compileJava_2/net/minecraftforge/common/util/ConcatenatedListView.class new file mode 100644 index 000000000..57258b48d Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/common/util/ConcatenatedListView.class differ diff --git a/build/_compileJava_2/net/minecraftforge/common/util/DummySavedData.class b/build/_compileJava_2/net/minecraftforge/common/util/DummySavedData.class new file mode 100644 index 000000000..2076274e5 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/common/util/DummySavedData.class differ diff --git a/build/_compileJava_2/net/minecraftforge/common/util/FakePlayer$FakePlayerNetHandler.class b/build/_compileJava_2/net/minecraftforge/common/util/FakePlayer$FakePlayerNetHandler.class new file mode 100644 index 000000000..cf1695e7f Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/common/util/FakePlayer$FakePlayerNetHandler.class differ diff --git a/build/_compileJava_2/net/minecraftforge/common/util/FakePlayer.class b/build/_compileJava_2/net/minecraftforge/common/util/FakePlayer.class new file mode 100644 index 000000000..70a881d93 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/common/util/FakePlayer.class differ diff --git a/build/_compileJava_2/net/minecraftforge/common/util/FakePlayerFactory$FakePlayerKey.class b/build/_compileJava_2/net/minecraftforge/common/util/FakePlayerFactory$FakePlayerKey.class new file mode 100644 index 000000000..8c1e48eb6 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/common/util/FakePlayerFactory$FakePlayerKey.class differ diff --git a/build/_compileJava_2/net/minecraftforge/common/util/FakePlayerFactory.class b/build/_compileJava_2/net/minecraftforge/common/util/FakePlayerFactory.class new file mode 100644 index 000000000..1e852901f Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/common/util/FakePlayerFactory.class differ diff --git a/build/_compileJava_2/net/minecraftforge/common/util/ForgeSoundType.class b/build/_compileJava_2/net/minecraftforge/common/util/ForgeSoundType.class new file mode 100644 index 000000000..7a7f1281a Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/common/util/ForgeSoundType.class differ diff --git a/build/_compileJava_2/net/minecraftforge/common/util/HexDumper$Instance.class b/build/_compileJava_2/net/minecraftforge/common/util/HexDumper$Instance.class new file mode 100644 index 000000000..9ab7b5fdc Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/common/util/HexDumper$Instance.class differ diff --git a/build/_compileJava_2/net/minecraftforge/common/util/HexDumper.class b/build/_compileJava_2/net/minecraftforge/common/util/HexDumper.class new file mode 100644 index 000000000..5d5df0d9b Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/common/util/HexDumper.class differ diff --git a/build/_compileJava_2/net/minecraftforge/common/util/INBTSerializable.class b/build/_compileJava_2/net/minecraftforge/common/util/INBTSerializable.class new file mode 100644 index 000000000..915113c5d Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/common/util/INBTSerializable.class differ diff --git a/build/_compileJava_2/net/minecraftforge/common/util/ITeleporter.class b/build/_compileJava_2/net/minecraftforge/common/util/ITeleporter.class new file mode 100644 index 000000000..0f88e895b Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/common/util/ITeleporter.class differ diff --git a/build/_compileJava_2/net/minecraftforge/common/util/ItemStackMap.class b/build/_compileJava_2/net/minecraftforge/common/util/ItemStackMap.class new file mode 100644 index 000000000..1660daaf8 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/common/util/ItemStackMap.class differ diff --git a/build/_compileJava_2/net/minecraftforge/common/util/JsonUtils$1.class b/build/_compileJava_2/net/minecraftforge/common/util/JsonUtils$1.class new file mode 100644 index 000000000..6ef84c2e1 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/common/util/JsonUtils$1.class differ diff --git a/build/_compileJava_2/net/minecraftforge/common/util/JsonUtils$2.class b/build/_compileJava_2/net/minecraftforge/common/util/JsonUtils$2.class new file mode 100644 index 000000000..0e9cb78e3 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/common/util/JsonUtils$2.class differ diff --git a/build/_compileJava_2/net/minecraftforge/common/util/JsonUtils$3.class b/build/_compileJava_2/net/minecraftforge/common/util/JsonUtils$3.class new file mode 100644 index 000000000..caba8fadc Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/common/util/JsonUtils$3.class differ diff --git a/build/_compileJava_2/net/minecraftforge/common/util/JsonUtils$4.class b/build/_compileJava_2/net/minecraftforge/common/util/JsonUtils$4.class new file mode 100644 index 000000000..458eb8630 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/common/util/JsonUtils$4.class differ diff --git a/build/_compileJava_2/net/minecraftforge/common/util/JsonUtils$ImmutableListTypeAdapter.class b/build/_compileJava_2/net/minecraftforge/common/util/JsonUtils$ImmutableListTypeAdapter.class new file mode 100644 index 000000000..95af87784 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/common/util/JsonUtils$ImmutableListTypeAdapter.class differ diff --git a/build/_compileJava_2/net/minecraftforge/common/util/JsonUtils$ImmutableMapTypeAdapter.class b/build/_compileJava_2/net/minecraftforge/common/util/JsonUtils$ImmutableMapTypeAdapter.class new file mode 100644 index 000000000..621312a57 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/common/util/JsonUtils$ImmutableMapTypeAdapter.class differ diff --git a/build/_compileJava_2/net/minecraftforge/common/util/JsonUtils.class b/build/_compileJava_2/net/minecraftforge/common/util/JsonUtils.class new file mode 100644 index 000000000..bde4d8a0d Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/common/util/JsonUtils.class differ diff --git a/build/_compileJava_2/net/minecraftforge/common/util/Lazy$Concurrent.class b/build/_compileJava_2/net/minecraftforge/common/util/Lazy$Concurrent.class new file mode 100644 index 000000000..af42aea0a Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/common/util/Lazy$Concurrent.class differ diff --git a/build/_compileJava_2/net/minecraftforge/common/util/Lazy$Fast.class b/build/_compileJava_2/net/minecraftforge/common/util/Lazy$Fast.class new file mode 100644 index 000000000..3ea3d6208 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/common/util/Lazy$Fast.class differ diff --git a/build/_compileJava_2/net/minecraftforge/common/util/Lazy.class b/build/_compileJava_2/net/minecraftforge/common/util/Lazy.class new file mode 100644 index 000000000..cf2cbc1d4 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/common/util/Lazy.class differ diff --git a/build/_compileJava_2/net/minecraftforge/common/util/LazyOptional.class b/build/_compileJava_2/net/minecraftforge/common/util/LazyOptional.class new file mode 100644 index 000000000..996a598cf Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/common/util/LazyOptional.class differ diff --git a/build/_compileJava_2/net/minecraftforge/common/util/LevelCapabilityData.class b/build/_compileJava_2/net/minecraftforge/common/util/LevelCapabilityData.class new file mode 100644 index 000000000..458e3376a Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/common/util/LevelCapabilityData.class differ diff --git a/build/_compileJava_2/net/minecraftforge/common/util/LogMessageAdapter.class b/build/_compileJava_2/net/minecraftforge/common/util/LogMessageAdapter.class new file mode 100644 index 000000000..d04b1f8d1 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/common/util/LogMessageAdapter.class differ diff --git a/build/_compileJava_2/net/minecraftforge/common/util/LogicalSidedProvider.class b/build/_compileJava_2/net/minecraftforge/common/util/LogicalSidedProvider.class new file mode 100644 index 000000000..0c12fe7a9 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/common/util/LogicalSidedProvider.class differ diff --git a/build/_compileJava_2/net/minecraftforge/common/util/MavenVersionStringHelper.class b/build/_compileJava_2/net/minecraftforge/common/util/MavenVersionStringHelper.class new file mode 100644 index 000000000..66b753a2a Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/common/util/MavenVersionStringHelper.class differ diff --git a/build/_compileJava_2/net/minecraftforge/common/util/MutableHashedLinkedMap$1.class b/build/_compileJava_2/net/minecraftforge/common/util/MutableHashedLinkedMap$1.class new file mode 100644 index 000000000..0412e6516 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/common/util/MutableHashedLinkedMap$1.class differ diff --git a/build/_compileJava_2/net/minecraftforge/common/util/MutableHashedLinkedMap$BasicStrategy.class b/build/_compileJava_2/net/minecraftforge/common/util/MutableHashedLinkedMap$BasicStrategy.class new file mode 100644 index 000000000..135ec68fa Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/common/util/MutableHashedLinkedMap$BasicStrategy.class differ diff --git a/build/_compileJava_2/net/minecraftforge/common/util/MutableHashedLinkedMap$Entry.class b/build/_compileJava_2/net/minecraftforge/common/util/MutableHashedLinkedMap$Entry.class new file mode 100644 index 000000000..0431427b1 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/common/util/MutableHashedLinkedMap$Entry.class differ diff --git a/build/_compileJava_2/net/minecraftforge/common/util/MutableHashedLinkedMap$IdentityStrategy.class b/build/_compileJava_2/net/minecraftforge/common/util/MutableHashedLinkedMap$IdentityStrategy.class new file mode 100644 index 000000000..05d28b691 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/common/util/MutableHashedLinkedMap$IdentityStrategy.class differ diff --git a/build/_compileJava_2/net/minecraftforge/common/util/MutableHashedLinkedMap$MergeFunction.class b/build/_compileJava_2/net/minecraftforge/common/util/MutableHashedLinkedMap$MergeFunction.class new file mode 100644 index 000000000..e08daedfb Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/common/util/MutableHashedLinkedMap$MergeFunction.class differ diff --git a/build/_compileJava_2/net/minecraftforge/common/util/MutableHashedLinkedMap.class b/build/_compileJava_2/net/minecraftforge/common/util/MutableHashedLinkedMap.class new file mode 100644 index 000000000..aa6b2058c Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/common/util/MutableHashedLinkedMap.class differ diff --git a/build/_compileJava_2/net/minecraftforge/common/util/NonNullConsumer.class b/build/_compileJava_2/net/minecraftforge/common/util/NonNullConsumer.class new file mode 100644 index 000000000..7af521695 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/common/util/NonNullConsumer.class differ diff --git a/build/_compileJava_2/net/minecraftforge/common/util/NonNullFunction.class b/build/_compileJava_2/net/minecraftforge/common/util/NonNullFunction.class new file mode 100644 index 000000000..0de1b391a Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/common/util/NonNullFunction.class differ diff --git a/build/_compileJava_2/net/minecraftforge/common/util/NonNullLazy.class b/build/_compileJava_2/net/minecraftforge/common/util/NonNullLazy.class new file mode 100644 index 000000000..ff24e300a Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/common/util/NonNullLazy.class differ diff --git a/build/_compileJava_2/net/minecraftforge/common/util/NonNullPredicate.class b/build/_compileJava_2/net/minecraftforge/common/util/NonNullPredicate.class new file mode 100644 index 000000000..3774d8880 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/common/util/NonNullPredicate.class differ diff --git a/build/_compileJava_2/net/minecraftforge/common/util/NonNullSupplier.class b/build/_compileJava_2/net/minecraftforge/common/util/NonNullSupplier.class new file mode 100644 index 000000000..375b4a92b Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/common/util/NonNullSupplier.class differ diff --git a/build/_compileJava_2/net/minecraftforge/common/util/RecipeMatcher.class b/build/_compileJava_2/net/minecraftforge/common/util/RecipeMatcher.class new file mode 100644 index 000000000..a50b5c8a0 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/common/util/RecipeMatcher.class differ diff --git a/build/_compileJava_2/net/minecraftforge/common/util/Size2i.class b/build/_compileJava_2/net/minecraftforge/common/util/Size2i.class new file mode 100644 index 000000000..304ef36e2 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/common/util/Size2i.class differ diff --git a/build/_compileJava_2/net/minecraftforge/common/util/SortedProperties.class b/build/_compileJava_2/net/minecraftforge/common/util/SortedProperties.class new file mode 100644 index 000000000..769986431 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/common/util/SortedProperties.class differ diff --git a/build/_compileJava_2/net/minecraftforge/common/util/TablePrinter$Header.class b/build/_compileJava_2/net/minecraftforge/common/util/TablePrinter$Header.class new file mode 100644 index 000000000..4ba65b49d Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/common/util/TablePrinter$Header.class differ diff --git a/build/_compileJava_2/net/minecraftforge/common/util/TablePrinter.class b/build/_compileJava_2/net/minecraftforge/common/util/TablePrinter.class new file mode 100644 index 000000000..78641b8f6 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/common/util/TablePrinter.class differ diff --git a/build/_compileJava_2/net/minecraftforge/common/util/TextTable$1.class b/build/_compileJava_2/net/minecraftforge/common/util/TextTable$1.class new file mode 100644 index 000000000..32b9a7181 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/common/util/TextTable$1.class differ diff --git a/build/_compileJava_2/net/minecraftforge/common/util/TextTable$Alignment.class b/build/_compileJava_2/net/minecraftforge/common/util/TextTable$Alignment.class new file mode 100644 index 000000000..45dea7dfb Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/common/util/TextTable$Alignment.class differ diff --git a/build/_compileJava_2/net/minecraftforge/common/util/TextTable$Column.class b/build/_compileJava_2/net/minecraftforge/common/util/TextTable$Column.class new file mode 100644 index 000000000..01c283f47 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/common/util/TextTable$Column.class differ diff --git a/build/_compileJava_2/net/minecraftforge/common/util/TextTable$Row.class b/build/_compileJava_2/net/minecraftforge/common/util/TextTable$Row.class new file mode 100644 index 000000000..2e66bb6b6 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/common/util/TextTable$Row.class differ diff --git a/build/_compileJava_2/net/minecraftforge/common/util/TextTable.class b/build/_compileJava_2/net/minecraftforge/common/util/TextTable.class new file mode 100644 index 000000000..4e61f8138 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/common/util/TextTable.class differ diff --git a/build/_compileJava_2/net/minecraftforge/common/util/TransformationHelper$Deserializer.class b/build/_compileJava_2/net/minecraftforge/common/util/TransformationHelper$Deserializer.class new file mode 100644 index 000000000..e2e8f30a5 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/common/util/TransformationHelper$Deserializer.class differ diff --git a/build/_compileJava_2/net/minecraftforge/common/util/TransformationHelper$TransformOrigin.class b/build/_compileJava_2/net/minecraftforge/common/util/TransformationHelper$TransformOrigin.class new file mode 100644 index 000000000..5bc980c9c Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/common/util/TransformationHelper$TransformOrigin.class differ diff --git a/build/_compileJava_2/net/minecraftforge/common/util/TransformationHelper.class b/build/_compileJava_2/net/minecraftforge/common/util/TransformationHelper.class new file mode 100644 index 000000000..d92275014 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/common/util/TransformationHelper.class differ diff --git a/build/_compileJava_2/net/minecraftforge/common/util/TriPredicate.class b/build/_compileJava_2/net/minecraftforge/common/util/TriPredicate.class new file mode 100644 index 000000000..56df21763 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/common/util/TriPredicate.class differ diff --git a/build/_compileJava_2/net/minecraftforge/common/world/BiomeGenerationSettingsBuilder.class b/build/_compileJava_2/net/minecraftforge/common/world/BiomeGenerationSettingsBuilder.class new file mode 100644 index 000000000..851037cf9 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/common/world/BiomeGenerationSettingsBuilder.class differ diff --git a/build/_compileJava_2/net/minecraftforge/common/world/BiomeModifier$Phase.class b/build/_compileJava_2/net/minecraftforge/common/world/BiomeModifier$Phase.class new file mode 100644 index 000000000..79f602dc1 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/common/world/BiomeModifier$Phase.class differ diff --git a/build/_compileJava_2/net/minecraftforge/common/world/BiomeModifier.class b/build/_compileJava_2/net/minecraftforge/common/world/BiomeModifier.class new file mode 100644 index 000000000..0839ca9f5 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/common/world/BiomeModifier.class differ diff --git a/build/_compileJava_2/net/minecraftforge/common/world/BiomeSpecialEffectsBuilder.class b/build/_compileJava_2/net/minecraftforge/common/world/BiomeSpecialEffectsBuilder.class new file mode 100644 index 000000000..d4033f0f0 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/common/world/BiomeSpecialEffectsBuilder.class differ diff --git a/build/_compileJava_2/net/minecraftforge/common/world/ClimateSettingsBuilder.class b/build/_compileJava_2/net/minecraftforge/common/world/ClimateSettingsBuilder.class new file mode 100644 index 000000000..0a652ffdc Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/common/world/ClimateSettingsBuilder.class differ diff --git a/build/_compileJava_2/net/minecraftforge/common/world/ForgeBiomeModifiers$AddFeaturesBiomeModifier.class b/build/_compileJava_2/net/minecraftforge/common/world/ForgeBiomeModifiers$AddFeaturesBiomeModifier.class new file mode 100644 index 000000000..2c189a5b5 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/common/world/ForgeBiomeModifiers$AddFeaturesBiomeModifier.class differ diff --git a/build/_compileJava_2/net/minecraftforge/common/world/ForgeBiomeModifiers$AddSpawnsBiomeModifier.class b/build/_compileJava_2/net/minecraftforge/common/world/ForgeBiomeModifiers$AddSpawnsBiomeModifier.class new file mode 100644 index 000000000..77f90f818 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/common/world/ForgeBiomeModifiers$AddSpawnsBiomeModifier.class differ diff --git a/build/_compileJava_2/net/minecraftforge/common/world/ForgeBiomeModifiers$RemoveFeaturesBiomeModifier.class b/build/_compileJava_2/net/minecraftforge/common/world/ForgeBiomeModifiers$RemoveFeaturesBiomeModifier.class new file mode 100644 index 000000000..9e2d21f92 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/common/world/ForgeBiomeModifiers$RemoveFeaturesBiomeModifier.class differ diff --git a/build/_compileJava_2/net/minecraftforge/common/world/ForgeBiomeModifiers$RemoveSpawnsBiomeModifier.class b/build/_compileJava_2/net/minecraftforge/common/world/ForgeBiomeModifiers$RemoveSpawnsBiomeModifier.class new file mode 100644 index 000000000..f23030cf1 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/common/world/ForgeBiomeModifiers$RemoveSpawnsBiomeModifier.class differ diff --git a/build/_compileJava_2/net/minecraftforge/common/world/ForgeBiomeModifiers.class b/build/_compileJava_2/net/minecraftforge/common/world/ForgeBiomeModifiers.class new file mode 100644 index 000000000..831819b6d Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/common/world/ForgeBiomeModifiers.class differ diff --git a/build/_compileJava_2/net/minecraftforge/common/world/ForgeChunkManager$LoadingValidationCallback.class b/build/_compileJava_2/net/minecraftforge/common/world/ForgeChunkManager$LoadingValidationCallback.class new file mode 100644 index 000000000..5cc746bbf Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/common/world/ForgeChunkManager$LoadingValidationCallback.class differ diff --git a/build/_compileJava_2/net/minecraftforge/common/world/ForgeChunkManager$TicketHelper.class b/build/_compileJava_2/net/minecraftforge/common/world/ForgeChunkManager$TicketHelper.class new file mode 100644 index 000000000..7cec2a287 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/common/world/ForgeChunkManager$TicketHelper.class differ diff --git a/build/_compileJava_2/net/minecraftforge/common/world/ForgeChunkManager$TicketOwner.class b/build/_compileJava_2/net/minecraftforge/common/world/ForgeChunkManager$TicketOwner.class new file mode 100644 index 000000000..4549d5f45 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/common/world/ForgeChunkManager$TicketOwner.class differ diff --git a/build/_compileJava_2/net/minecraftforge/common/world/ForgeChunkManager$TicketTracker.class b/build/_compileJava_2/net/minecraftforge/common/world/ForgeChunkManager$TicketTracker.class new file mode 100644 index 000000000..2b0d71d33 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/common/world/ForgeChunkManager$TicketTracker.class differ diff --git a/build/_compileJava_2/net/minecraftforge/common/world/ForgeChunkManager.class b/build/_compileJava_2/net/minecraftforge/common/world/ForgeChunkManager.class new file mode 100644 index 000000000..cb5800450 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/common/world/ForgeChunkManager.class differ diff --git a/build/_compileJava_2/net/minecraftforge/common/world/MobSpawnSettingsBuilder.class b/build/_compileJava_2/net/minecraftforge/common/world/MobSpawnSettingsBuilder.class new file mode 100644 index 000000000..d9aab67d0 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/common/world/MobSpawnSettingsBuilder.class differ diff --git a/build/_compileJava_2/net/minecraftforge/common/world/ModifiableBiomeInfo$BiomeInfo$Builder.class b/build/_compileJava_2/net/minecraftforge/common/world/ModifiableBiomeInfo$BiomeInfo$Builder.class new file mode 100644 index 000000000..ad4e4038b Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/common/world/ModifiableBiomeInfo$BiomeInfo$Builder.class differ diff --git a/build/_compileJava_2/net/minecraftforge/common/world/ModifiableBiomeInfo$BiomeInfo.class b/build/_compileJava_2/net/minecraftforge/common/world/ModifiableBiomeInfo$BiomeInfo.class new file mode 100644 index 000000000..8462b63fe Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/common/world/ModifiableBiomeInfo$BiomeInfo.class differ diff --git a/build/_compileJava_2/net/minecraftforge/common/world/ModifiableBiomeInfo.class b/build/_compileJava_2/net/minecraftforge/common/world/ModifiableBiomeInfo.class new file mode 100644 index 000000000..9852a3538 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/common/world/ModifiableBiomeInfo.class differ diff --git a/build/_compileJava_2/net/minecraftforge/common/world/ModifiableStructureInfo$StructureInfo$Builder.class b/build/_compileJava_2/net/minecraftforge/common/world/ModifiableStructureInfo$StructureInfo$Builder.class new file mode 100644 index 000000000..2b341d2f4 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/common/world/ModifiableStructureInfo$StructureInfo$Builder.class differ diff --git a/build/_compileJava_2/net/minecraftforge/common/world/ModifiableStructureInfo$StructureInfo.class b/build/_compileJava_2/net/minecraftforge/common/world/ModifiableStructureInfo$StructureInfo.class new file mode 100644 index 000000000..5bafb9094 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/common/world/ModifiableStructureInfo$StructureInfo.class differ diff --git a/build/_compileJava_2/net/minecraftforge/common/world/ModifiableStructureInfo.class b/build/_compileJava_2/net/minecraftforge/common/world/ModifiableStructureInfo.class new file mode 100644 index 000000000..d96f09df7 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/common/world/ModifiableStructureInfo.class differ diff --git a/build/_compileJava_2/net/minecraftforge/common/world/NoneBiomeModifier.class b/build/_compileJava_2/net/minecraftforge/common/world/NoneBiomeModifier.class new file mode 100644 index 000000000..97d67a8d3 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/common/world/NoneBiomeModifier.class differ diff --git a/build/_compileJava_2/net/minecraftforge/common/world/NoneStructureModifier.class b/build/_compileJava_2/net/minecraftforge/common/world/NoneStructureModifier.class new file mode 100644 index 000000000..9d7d29964 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/common/world/NoneStructureModifier.class differ diff --git a/build/_compileJava_2/net/minecraftforge/common/world/PieceBeardifierModifier.class b/build/_compileJava_2/net/minecraftforge/common/world/PieceBeardifierModifier.class new file mode 100644 index 000000000..2874afd6d Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/common/world/PieceBeardifierModifier.class differ diff --git a/build/_compileJava_2/net/minecraftforge/common/world/StructureModifier$Phase.class b/build/_compileJava_2/net/minecraftforge/common/world/StructureModifier$Phase.class new file mode 100644 index 000000000..1602677c3 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/common/world/StructureModifier$Phase.class differ diff --git a/build/_compileJava_2/net/minecraftforge/common/world/StructureModifier.class b/build/_compileJava_2/net/minecraftforge/common/world/StructureModifier.class new file mode 100644 index 000000000..09b78febf Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/common/world/StructureModifier.class differ diff --git a/build/_compileJava_2/net/minecraftforge/common/world/StructureSettingsBuilder$StructureSpawnOverrideBuilder.class b/build/_compileJava_2/net/minecraftforge/common/world/StructureSettingsBuilder$StructureSpawnOverrideBuilder.class new file mode 100644 index 000000000..8be6ff414 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/common/world/StructureSettingsBuilder$StructureSpawnOverrideBuilder.class differ diff --git a/build/_compileJava_2/net/minecraftforge/common/world/StructureSettingsBuilder.class b/build/_compileJava_2/net/minecraftforge/common/world/StructureSettingsBuilder.class new file mode 100644 index 000000000..b38665006 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/common/world/StructureSettingsBuilder.class differ diff --git a/build/_compileJava_2/net/minecraftforge/data/event/GatherDataEvent$DataGeneratorConfig.class b/build/_compileJava_2/net/minecraftforge/data/event/GatherDataEvent$DataGeneratorConfig.class new file mode 100644 index 000000000..0c5eaa732 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/data/event/GatherDataEvent$DataGeneratorConfig.class differ diff --git a/build/_compileJava_2/net/minecraftforge/data/event/GatherDataEvent.class b/build/_compileJava_2/net/minecraftforge/data/event/GatherDataEvent.class new file mode 100644 index 000000000..7ee1ab75c Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/data/event/GatherDataEvent.class differ diff --git a/build/_compileJava_2/net/minecraftforge/data/loading/DatagenModLoader.class b/build/_compileJava_2/net/minecraftforge/data/loading/DatagenModLoader.class new file mode 100644 index 000000000..34240551c Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/data/loading/DatagenModLoader.class differ diff --git a/build/_compileJava_2/net/minecraftforge/energy/EmptyEnergyStorage.class b/build/_compileJava_2/net/minecraftforge/energy/EmptyEnergyStorage.class new file mode 100644 index 000000000..9149d3a93 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/energy/EmptyEnergyStorage.class differ diff --git a/build/_compileJava_2/net/minecraftforge/energy/EnergyStorage.class b/build/_compileJava_2/net/minecraftforge/energy/EnergyStorage.class new file mode 100644 index 000000000..0055aa405 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/energy/EnergyStorage.class differ diff --git a/build/_compileJava_2/net/minecraftforge/energy/IEnergyStorage.class b/build/_compileJava_2/net/minecraftforge/energy/IEnergyStorage.class new file mode 100644 index 000000000..4ed7674a6 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/energy/IEnergyStorage.class differ diff --git a/build/_compileJava_2/net/minecraftforge/entity/IEntityAdditionalSpawnData.class b/build/_compileJava_2/net/minecraftforge/entity/IEntityAdditionalSpawnData.class new file mode 100644 index 000000000..f23d73eac Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/entity/IEntityAdditionalSpawnData.class differ diff --git a/build/_compileJava_2/net/minecraftforge/entity/PartEntity.class b/build/_compileJava_2/net/minecraftforge/entity/PartEntity.class new file mode 100644 index 000000000..826fe7961 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/entity/PartEntity.class differ diff --git a/build/_compileJava_2/net/minecraftforge/event/AddPackFindersEvent.class b/build/_compileJava_2/net/minecraftforge/event/AddPackFindersEvent.class new file mode 100644 index 000000000..15d88c180 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/event/AddPackFindersEvent.class differ diff --git a/build/_compileJava_2/net/minecraftforge/event/AddReloadListenerEvent$WrappedStateAwareListener.class b/build/_compileJava_2/net/minecraftforge/event/AddReloadListenerEvent$WrappedStateAwareListener.class new file mode 100644 index 000000000..1f9eeb46c Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/event/AddReloadListenerEvent$WrappedStateAwareListener.class differ diff --git a/build/_compileJava_2/net/minecraftforge/event/AddReloadListenerEvent.class b/build/_compileJava_2/net/minecraftforge/event/AddReloadListenerEvent.class new file mode 100644 index 000000000..3db1e3f3e Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/event/AddReloadListenerEvent.class differ diff --git a/build/_compileJava_2/net/minecraftforge/event/AnvilUpdateEvent.class b/build/_compileJava_2/net/minecraftforge/event/AnvilUpdateEvent.class new file mode 100644 index 000000000..f5f3ab32a Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/event/AnvilUpdateEvent.class differ diff --git a/build/_compileJava_2/net/minecraftforge/event/AttachCapabilitiesEvent.class b/build/_compileJava_2/net/minecraftforge/event/AttachCapabilitiesEvent.class new file mode 100644 index 000000000..050ae1175 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/event/AttachCapabilitiesEvent.class differ diff --git a/build/_compileJava_2/net/minecraftforge/event/BuildCreativeModeTabContentsEvent.class b/build/_compileJava_2/net/minecraftforge/event/BuildCreativeModeTabContentsEvent.class new file mode 100644 index 000000000..46c4a73d7 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/event/BuildCreativeModeTabContentsEvent.class differ diff --git a/build/_compileJava_2/net/minecraftforge/event/CommandEvent.class b/build/_compileJava_2/net/minecraftforge/event/CommandEvent.class new file mode 100644 index 000000000..1a0fd0367 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/event/CommandEvent.class differ diff --git a/build/_compileJava_2/net/minecraftforge/event/DifficultyChangeEvent.class b/build/_compileJava_2/net/minecraftforge/event/DifficultyChangeEvent.class new file mode 100644 index 000000000..2cfc59731 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/event/DifficultyChangeEvent.class differ diff --git a/build/_compileJava_2/net/minecraftforge/event/ForgeEventFactory.class b/build/_compileJava_2/net/minecraftforge/event/ForgeEventFactory.class new file mode 100644 index 000000000..1e9cd7243 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/event/ForgeEventFactory.class differ diff --git a/build/_compileJava_2/net/minecraftforge/event/GameShuttingDownEvent.class b/build/_compileJava_2/net/minecraftforge/event/GameShuttingDownEvent.class new file mode 100644 index 000000000..9930a00e0 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/event/GameShuttingDownEvent.class differ diff --git a/build/_compileJava_2/net/minecraftforge/event/GrindstoneEvent$OnPlaceItem.class b/build/_compileJava_2/net/minecraftforge/event/GrindstoneEvent$OnPlaceItem.class new file mode 100644 index 000000000..918159bbb Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/event/GrindstoneEvent$OnPlaceItem.class differ diff --git a/build/_compileJava_2/net/minecraftforge/event/GrindstoneEvent$OnTakeItem.class b/build/_compileJava_2/net/minecraftforge/event/GrindstoneEvent$OnTakeItem.class new file mode 100644 index 000000000..435d789f3 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/event/GrindstoneEvent$OnTakeItem.class differ diff --git a/build/_compileJava_2/net/minecraftforge/event/GrindstoneEvent.class b/build/_compileJava_2/net/minecraftforge/event/GrindstoneEvent.class new file mode 100644 index 000000000..6561de49f Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/event/GrindstoneEvent.class differ diff --git a/build/_compileJava_2/net/minecraftforge/event/ItemAttributeModifierEvent.class b/build/_compileJava_2/net/minecraftforge/event/ItemAttributeModifierEvent.class new file mode 100644 index 000000000..c57d04e63 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/event/ItemAttributeModifierEvent.class differ diff --git a/build/_compileJava_2/net/minecraftforge/event/ItemStackedOnOtherEvent.class b/build/_compileJava_2/net/minecraftforge/event/ItemStackedOnOtherEvent.class new file mode 100644 index 000000000..96422a285 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/event/ItemStackedOnOtherEvent.class differ diff --git a/build/_compileJava_2/net/minecraftforge/event/LootTableLoadEvent.class b/build/_compileJava_2/net/minecraftforge/event/LootTableLoadEvent.class new file mode 100644 index 000000000..bb96e831c Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/event/LootTableLoadEvent.class differ diff --git a/build/_compileJava_2/net/minecraftforge/event/ModMismatchEvent$MismatchResolutionResult.class b/build/_compileJava_2/net/minecraftforge/event/ModMismatchEvent$MismatchResolutionResult.class new file mode 100644 index 000000000..c8be3a532 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/event/ModMismatchEvent$MismatchResolutionResult.class differ diff --git a/build/_compileJava_2/net/minecraftforge/event/ModMismatchEvent$MismatchedVersionInfo.class b/build/_compileJava_2/net/minecraftforge/event/ModMismatchEvent$MismatchedVersionInfo.class new file mode 100644 index 000000000..057dd62df Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/event/ModMismatchEvent$MismatchedVersionInfo.class differ diff --git a/build/_compileJava_2/net/minecraftforge/event/ModMismatchEvent.class b/build/_compileJava_2/net/minecraftforge/event/ModMismatchEvent.class new file mode 100644 index 000000000..6e42b6326 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/event/ModMismatchEvent.class differ diff --git a/build/_compileJava_2/net/minecraftforge/event/OnDatapackSyncEvent.class b/build/_compileJava_2/net/minecraftforge/event/OnDatapackSyncEvent.class new file mode 100644 index 000000000..76c74ae2f Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/event/OnDatapackSyncEvent.class differ diff --git a/build/_compileJava_2/net/minecraftforge/event/PlayLevelSoundEvent$AtEntity.class b/build/_compileJava_2/net/minecraftforge/event/PlayLevelSoundEvent$AtEntity.class new file mode 100644 index 000000000..e702f7ac1 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/event/PlayLevelSoundEvent$AtEntity.class differ diff --git a/build/_compileJava_2/net/minecraftforge/event/PlayLevelSoundEvent$AtPosition.class b/build/_compileJava_2/net/minecraftforge/event/PlayLevelSoundEvent$AtPosition.class new file mode 100644 index 000000000..3a1c7c4b7 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/event/PlayLevelSoundEvent$AtPosition.class differ diff --git a/build/_compileJava_2/net/minecraftforge/event/PlayLevelSoundEvent.class b/build/_compileJava_2/net/minecraftforge/event/PlayLevelSoundEvent.class new file mode 100644 index 000000000..2973fa720 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/event/PlayLevelSoundEvent.class differ diff --git a/build/_compileJava_2/net/minecraftforge/event/RegisterCommandsEvent.class b/build/_compileJava_2/net/minecraftforge/event/RegisterCommandsEvent.class new file mode 100644 index 000000000..6d7a59926 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/event/RegisterCommandsEvent.class differ diff --git a/build/_compileJava_2/net/minecraftforge/event/RegisterGameTestsEvent.class b/build/_compileJava_2/net/minecraftforge/event/RegisterGameTestsEvent.class new file mode 100644 index 000000000..ee0b62155 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/event/RegisterGameTestsEvent.class differ diff --git a/build/_compileJava_2/net/minecraftforge/event/RegisterStructureConversionsEvent.class b/build/_compileJava_2/net/minecraftforge/event/RegisterStructureConversionsEvent.class new file mode 100644 index 000000000..9b0f7bf9c Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/event/RegisterStructureConversionsEvent.class differ diff --git a/build/_compileJava_2/net/minecraftforge/event/ServerChatEvent.class b/build/_compileJava_2/net/minecraftforge/event/ServerChatEvent.class new file mode 100644 index 000000000..f0b4475b4 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/event/ServerChatEvent.class differ diff --git a/build/_compileJava_2/net/minecraftforge/event/TagsUpdatedEvent$UpdateCause.class b/build/_compileJava_2/net/minecraftforge/event/TagsUpdatedEvent$UpdateCause.class new file mode 100644 index 000000000..aa2bb9534 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/event/TagsUpdatedEvent$UpdateCause.class differ diff --git a/build/_compileJava_2/net/minecraftforge/event/TagsUpdatedEvent.class b/build/_compileJava_2/net/minecraftforge/event/TagsUpdatedEvent.class new file mode 100644 index 000000000..005393da4 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/event/TagsUpdatedEvent.class differ diff --git a/build/_compileJava_2/net/minecraftforge/event/TickEvent$ClientTickEvent.class b/build/_compileJava_2/net/minecraftforge/event/TickEvent$ClientTickEvent.class new file mode 100644 index 000000000..1fb349174 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/event/TickEvent$ClientTickEvent.class differ diff --git a/build/_compileJava_2/net/minecraftforge/event/TickEvent$LevelTickEvent.class b/build/_compileJava_2/net/minecraftforge/event/TickEvent$LevelTickEvent.class new file mode 100644 index 000000000..3d47dc36c Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/event/TickEvent$LevelTickEvent.class differ diff --git a/build/_compileJava_2/net/minecraftforge/event/TickEvent$Phase.class b/build/_compileJava_2/net/minecraftforge/event/TickEvent$Phase.class new file mode 100644 index 000000000..4fa5f3e46 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/event/TickEvent$Phase.class differ diff --git a/build/_compileJava_2/net/minecraftforge/event/TickEvent$PlayerTickEvent.class b/build/_compileJava_2/net/minecraftforge/event/TickEvent$PlayerTickEvent.class new file mode 100644 index 000000000..b72ec3550 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/event/TickEvent$PlayerTickEvent.class differ diff --git a/build/_compileJava_2/net/minecraftforge/event/TickEvent$RenderTickEvent.class b/build/_compileJava_2/net/minecraftforge/event/TickEvent$RenderTickEvent.class new file mode 100644 index 000000000..d9b5b62ee Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/event/TickEvent$RenderTickEvent.class differ diff --git a/build/_compileJava_2/net/minecraftforge/event/TickEvent$ServerTickEvent.class b/build/_compileJava_2/net/minecraftforge/event/TickEvent$ServerTickEvent.class new file mode 100644 index 000000000..3d26fd4c9 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/event/TickEvent$ServerTickEvent.class differ diff --git a/build/_compileJava_2/net/minecraftforge/event/TickEvent$Type.class b/build/_compileJava_2/net/minecraftforge/event/TickEvent$Type.class new file mode 100644 index 000000000..51f3aa992 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/event/TickEvent$Type.class differ diff --git a/build/_compileJava_2/net/minecraftforge/event/TickEvent.class b/build/_compileJava_2/net/minecraftforge/event/TickEvent.class new file mode 100644 index 000000000..38d45ce79 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/event/TickEvent.class differ diff --git a/build/_compileJava_2/net/minecraftforge/event/VanillaGameEvent.class b/build/_compileJava_2/net/minecraftforge/event/VanillaGameEvent.class new file mode 100644 index 000000000..68f5936b1 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/event/VanillaGameEvent.class differ diff --git a/build/_compileJava_2/net/minecraftforge/event/brewing/PlayerBrewedPotionEvent.class b/build/_compileJava_2/net/minecraftforge/event/brewing/PlayerBrewedPotionEvent.class new file mode 100644 index 000000000..d73aa6111 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/event/brewing/PlayerBrewedPotionEvent.class differ diff --git a/build/_compileJava_2/net/minecraftforge/event/brewing/PotionBrewEvent$Post.class b/build/_compileJava_2/net/minecraftforge/event/brewing/PotionBrewEvent$Post.class new file mode 100644 index 000000000..2d3d0c2b9 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/event/brewing/PotionBrewEvent$Post.class differ diff --git a/build/_compileJava_2/net/minecraftforge/event/brewing/PotionBrewEvent$Pre.class b/build/_compileJava_2/net/minecraftforge/event/brewing/PotionBrewEvent$Pre.class new file mode 100644 index 000000000..23c765c45 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/event/brewing/PotionBrewEvent$Pre.class differ diff --git a/build/_compileJava_2/net/minecraftforge/event/brewing/PotionBrewEvent.class b/build/_compileJava_2/net/minecraftforge/event/brewing/PotionBrewEvent.class new file mode 100644 index 000000000..0f29a2791 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/event/brewing/PotionBrewEvent.class differ diff --git a/build/_compileJava_2/net/minecraftforge/event/enchanting/EnchantmentLevelSetEvent.class b/build/_compileJava_2/net/minecraftforge/event/enchanting/EnchantmentLevelSetEvent.class new file mode 100644 index 000000000..53f2ea02d Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/event/enchanting/EnchantmentLevelSetEvent.class differ diff --git a/build/_compileJava_2/net/minecraftforge/event/entity/EntityAttributeCreationEvent.class b/build/_compileJava_2/net/minecraftforge/event/entity/EntityAttributeCreationEvent.class new file mode 100644 index 000000000..1e9b2b2e0 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/event/entity/EntityAttributeCreationEvent.class differ diff --git a/build/_compileJava_2/net/minecraftforge/event/entity/EntityAttributeModificationEvent.class b/build/_compileJava_2/net/minecraftforge/event/entity/EntityAttributeModificationEvent.class new file mode 100644 index 000000000..4412873e5 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/event/entity/EntityAttributeModificationEvent.class differ diff --git a/build/_compileJava_2/net/minecraftforge/event/entity/EntityEvent$EnteringSection.class b/build/_compileJava_2/net/minecraftforge/event/entity/EntityEvent$EnteringSection.class new file mode 100644 index 000000000..defe5ca28 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/event/entity/EntityEvent$EnteringSection.class differ diff --git a/build/_compileJava_2/net/minecraftforge/event/entity/EntityEvent$EntityConstructing.class b/build/_compileJava_2/net/minecraftforge/event/entity/EntityEvent$EntityConstructing.class new file mode 100644 index 000000000..92a675075 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/event/entity/EntityEvent$EntityConstructing.class differ diff --git a/build/_compileJava_2/net/minecraftforge/event/entity/EntityEvent$EyeHeight.class b/build/_compileJava_2/net/minecraftforge/event/entity/EntityEvent$EyeHeight.class new file mode 100644 index 000000000..da7e5a6a8 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/event/entity/EntityEvent$EyeHeight.class differ diff --git a/build/_compileJava_2/net/minecraftforge/event/entity/EntityEvent$Size.class b/build/_compileJava_2/net/minecraftforge/event/entity/EntityEvent$Size.class new file mode 100644 index 000000000..c60517d01 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/event/entity/EntityEvent$Size.class differ diff --git a/build/_compileJava_2/net/minecraftforge/event/entity/EntityEvent.class b/build/_compileJava_2/net/minecraftforge/event/entity/EntityEvent.class new file mode 100644 index 000000000..9aec7465d Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/event/entity/EntityEvent.class differ diff --git a/build/_compileJava_2/net/minecraftforge/event/entity/EntityJoinLevelEvent.class b/build/_compileJava_2/net/minecraftforge/event/entity/EntityJoinLevelEvent.class new file mode 100644 index 000000000..8851a199b Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/event/entity/EntityJoinLevelEvent.class differ diff --git a/build/_compileJava_2/net/minecraftforge/event/entity/EntityLeaveLevelEvent.class b/build/_compileJava_2/net/minecraftforge/event/entity/EntityLeaveLevelEvent.class new file mode 100644 index 000000000..0d033c533 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/event/entity/EntityLeaveLevelEvent.class differ diff --git a/build/_compileJava_2/net/minecraftforge/event/entity/EntityMobGriefingEvent.class b/build/_compileJava_2/net/minecraftforge/event/entity/EntityMobGriefingEvent.class new file mode 100644 index 000000000..41ecde298 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/event/entity/EntityMobGriefingEvent.class differ diff --git a/build/_compileJava_2/net/minecraftforge/event/entity/EntityMountEvent.class b/build/_compileJava_2/net/minecraftforge/event/entity/EntityMountEvent.class new file mode 100644 index 000000000..e10592d0c Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/event/entity/EntityMountEvent.class differ diff --git a/build/_compileJava_2/net/minecraftforge/event/entity/EntityStruckByLightningEvent.class b/build/_compileJava_2/net/minecraftforge/event/entity/EntityStruckByLightningEvent.class new file mode 100644 index 000000000..4f0e1b1f5 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/event/entity/EntityStruckByLightningEvent.class differ diff --git a/build/_compileJava_2/net/minecraftforge/event/entity/EntityTeleportEvent$ChorusFruit.class b/build/_compileJava_2/net/minecraftforge/event/entity/EntityTeleportEvent$ChorusFruit.class new file mode 100644 index 000000000..e25a12c64 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/event/entity/EntityTeleportEvent$ChorusFruit.class differ diff --git a/build/_compileJava_2/net/minecraftforge/event/entity/EntityTeleportEvent$EnderEntity.class b/build/_compileJava_2/net/minecraftforge/event/entity/EntityTeleportEvent$EnderEntity.class new file mode 100644 index 000000000..b8291bd2a Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/event/entity/EntityTeleportEvent$EnderEntity.class differ diff --git a/build/_compileJava_2/net/minecraftforge/event/entity/EntityTeleportEvent$EnderPearl.class b/build/_compileJava_2/net/minecraftforge/event/entity/EntityTeleportEvent$EnderPearl.class new file mode 100644 index 000000000..7eab969d3 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/event/entity/EntityTeleportEvent$EnderPearl.class differ diff --git a/build/_compileJava_2/net/minecraftforge/event/entity/EntityTeleportEvent$SpreadPlayersCommand.class b/build/_compileJava_2/net/minecraftforge/event/entity/EntityTeleportEvent$SpreadPlayersCommand.class new file mode 100644 index 000000000..66703e4fb Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/event/entity/EntityTeleportEvent$SpreadPlayersCommand.class differ diff --git a/build/_compileJava_2/net/minecraftforge/event/entity/EntityTeleportEvent$TeleportCommand.class b/build/_compileJava_2/net/minecraftforge/event/entity/EntityTeleportEvent$TeleportCommand.class new file mode 100644 index 000000000..ae01a29e5 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/event/entity/EntityTeleportEvent$TeleportCommand.class differ diff --git a/build/_compileJava_2/net/minecraftforge/event/entity/EntityTeleportEvent.class b/build/_compileJava_2/net/minecraftforge/event/entity/EntityTeleportEvent.class new file mode 100644 index 000000000..247ae1aa8 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/event/entity/EntityTeleportEvent.class differ diff --git a/build/_compileJava_2/net/minecraftforge/event/entity/EntityTravelToDimensionEvent.class b/build/_compileJava_2/net/minecraftforge/event/entity/EntityTravelToDimensionEvent.class new file mode 100644 index 000000000..a895be6bc Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/event/entity/EntityTravelToDimensionEvent.class differ diff --git a/build/_compileJava_2/net/minecraftforge/event/entity/ProjectileImpactEvent$ImpactResult.class b/build/_compileJava_2/net/minecraftforge/event/entity/ProjectileImpactEvent$ImpactResult.class new file mode 100644 index 000000000..a6f714880 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/event/entity/ProjectileImpactEvent$ImpactResult.class differ diff --git a/build/_compileJava_2/net/minecraftforge/event/entity/ProjectileImpactEvent.class b/build/_compileJava_2/net/minecraftforge/event/entity/ProjectileImpactEvent.class new file mode 100644 index 000000000..000feafc9 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/event/entity/ProjectileImpactEvent.class differ diff --git a/build/_compileJava_2/net/minecraftforge/event/entity/SpawnPlacementRegisterEvent$MergedSpawnPredicate.class b/build/_compileJava_2/net/minecraftforge/event/entity/SpawnPlacementRegisterEvent$MergedSpawnPredicate.class new file mode 100644 index 000000000..f1fb8e9d1 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/event/entity/SpawnPlacementRegisterEvent$MergedSpawnPredicate.class differ diff --git a/build/_compileJava_2/net/minecraftforge/event/entity/SpawnPlacementRegisterEvent$Operation.class b/build/_compileJava_2/net/minecraftforge/event/entity/SpawnPlacementRegisterEvent$Operation.class new file mode 100644 index 000000000..1c4593173 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/event/entity/SpawnPlacementRegisterEvent$Operation.class differ diff --git a/build/_compileJava_2/net/minecraftforge/event/entity/SpawnPlacementRegisterEvent.class b/build/_compileJava_2/net/minecraftforge/event/entity/SpawnPlacementRegisterEvent.class new file mode 100644 index 000000000..1f1e31c47 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/event/entity/SpawnPlacementRegisterEvent.class differ diff --git a/build/_compileJava_2/net/minecraftforge/event/entity/item/ItemEvent.class b/build/_compileJava_2/net/minecraftforge/event/entity/item/ItemEvent.class new file mode 100644 index 000000000..80fa7ecc9 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/event/entity/item/ItemEvent.class differ diff --git a/build/_compileJava_2/net/minecraftforge/event/entity/item/ItemExpireEvent.class b/build/_compileJava_2/net/minecraftforge/event/entity/item/ItemExpireEvent.class new file mode 100644 index 000000000..dd9c76ea6 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/event/entity/item/ItemExpireEvent.class differ diff --git a/build/_compileJava_2/net/minecraftforge/event/entity/item/ItemTossEvent.class b/build/_compileJava_2/net/minecraftforge/event/entity/item/ItemTossEvent.class new file mode 100644 index 000000000..ce962902b Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/event/entity/item/ItemTossEvent.class differ diff --git a/build/_compileJava_2/net/minecraftforge/event/entity/living/AnimalTameEvent.class b/build/_compileJava_2/net/minecraftforge/event/entity/living/AnimalTameEvent.class new file mode 100644 index 000000000..44709673a Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/event/entity/living/AnimalTameEvent.class differ diff --git a/build/_compileJava_2/net/minecraftforge/event/entity/living/BabyEntitySpawnEvent.class b/build/_compileJava_2/net/minecraftforge/event/entity/living/BabyEntitySpawnEvent.class new file mode 100644 index 000000000..a7fce01c2 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/event/entity/living/BabyEntitySpawnEvent.class differ diff --git a/build/_compileJava_2/net/minecraftforge/event/entity/living/EnderManAngerEvent.class b/build/_compileJava_2/net/minecraftforge/event/entity/living/EnderManAngerEvent.class new file mode 100644 index 000000000..89e78d3ef Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/event/entity/living/EnderManAngerEvent.class differ diff --git a/build/_compileJava_2/net/minecraftforge/event/entity/living/LivingAttackEvent.class b/build/_compileJava_2/net/minecraftforge/event/entity/living/LivingAttackEvent.class new file mode 100644 index 000000000..423b8a5be Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/event/entity/living/LivingAttackEvent.class differ diff --git a/build/_compileJava_2/net/minecraftforge/event/entity/living/LivingBreatheEvent.class b/build/_compileJava_2/net/minecraftforge/event/entity/living/LivingBreatheEvent.class new file mode 100644 index 000000000..5bd3cd96a Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/event/entity/living/LivingBreatheEvent.class differ diff --git a/build/_compileJava_2/net/minecraftforge/event/entity/living/LivingChangeTargetEvent$ILivingTargetType.class b/build/_compileJava_2/net/minecraftforge/event/entity/living/LivingChangeTargetEvent$ILivingTargetType.class new file mode 100644 index 000000000..6bd447dba Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/event/entity/living/LivingChangeTargetEvent$ILivingTargetType.class differ diff --git a/build/_compileJava_2/net/minecraftforge/event/entity/living/LivingChangeTargetEvent$LivingTargetType.class b/build/_compileJava_2/net/minecraftforge/event/entity/living/LivingChangeTargetEvent$LivingTargetType.class new file mode 100644 index 000000000..2ee60eb9b Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/event/entity/living/LivingChangeTargetEvent$LivingTargetType.class differ diff --git a/build/_compileJava_2/net/minecraftforge/event/entity/living/LivingChangeTargetEvent.class b/build/_compileJava_2/net/minecraftforge/event/entity/living/LivingChangeTargetEvent.class new file mode 100644 index 000000000..a6e36a96b Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/event/entity/living/LivingChangeTargetEvent.class differ diff --git a/build/_compileJava_2/net/minecraftforge/event/entity/living/LivingConversionEvent$Post.class b/build/_compileJava_2/net/minecraftforge/event/entity/living/LivingConversionEvent$Post.class new file mode 100644 index 000000000..b236b537f Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/event/entity/living/LivingConversionEvent$Post.class differ diff --git a/build/_compileJava_2/net/minecraftforge/event/entity/living/LivingConversionEvent$Pre.class b/build/_compileJava_2/net/minecraftforge/event/entity/living/LivingConversionEvent$Pre.class new file mode 100644 index 000000000..e73177d68 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/event/entity/living/LivingConversionEvent$Pre.class differ diff --git a/build/_compileJava_2/net/minecraftforge/event/entity/living/LivingConversionEvent.class b/build/_compileJava_2/net/minecraftforge/event/entity/living/LivingConversionEvent.class new file mode 100644 index 000000000..1b4cfbb14 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/event/entity/living/LivingConversionEvent.class differ diff --git a/build/_compileJava_2/net/minecraftforge/event/entity/living/LivingDamageEvent.class b/build/_compileJava_2/net/minecraftforge/event/entity/living/LivingDamageEvent.class new file mode 100644 index 000000000..1b44ae58d Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/event/entity/living/LivingDamageEvent.class differ diff --git a/build/_compileJava_2/net/minecraftforge/event/entity/living/LivingDeathEvent.class b/build/_compileJava_2/net/minecraftforge/event/entity/living/LivingDeathEvent.class new file mode 100644 index 000000000..854280597 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/event/entity/living/LivingDeathEvent.class differ diff --git a/build/_compileJava_2/net/minecraftforge/event/entity/living/LivingDestroyBlockEvent.class b/build/_compileJava_2/net/minecraftforge/event/entity/living/LivingDestroyBlockEvent.class new file mode 100644 index 000000000..b6bcd4cb0 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/event/entity/living/LivingDestroyBlockEvent.class differ diff --git a/build/_compileJava_2/net/minecraftforge/event/entity/living/LivingDropsEvent.class b/build/_compileJava_2/net/minecraftforge/event/entity/living/LivingDropsEvent.class new file mode 100644 index 000000000..a271324ae Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/event/entity/living/LivingDropsEvent.class differ diff --git a/build/_compileJava_2/net/minecraftforge/event/entity/living/LivingDrownEvent.class b/build/_compileJava_2/net/minecraftforge/event/entity/living/LivingDrownEvent.class new file mode 100644 index 000000000..8255bf260 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/event/entity/living/LivingDrownEvent.class differ diff --git a/build/_compileJava_2/net/minecraftforge/event/entity/living/LivingEntityUseItemEvent$Finish.class b/build/_compileJava_2/net/minecraftforge/event/entity/living/LivingEntityUseItemEvent$Finish.class new file mode 100644 index 000000000..11b7a703c Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/event/entity/living/LivingEntityUseItemEvent$Finish.class differ diff --git a/build/_compileJava_2/net/minecraftforge/event/entity/living/LivingEntityUseItemEvent$Start.class b/build/_compileJava_2/net/minecraftforge/event/entity/living/LivingEntityUseItemEvent$Start.class new file mode 100644 index 000000000..0f63bbba5 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/event/entity/living/LivingEntityUseItemEvent$Start.class differ diff --git a/build/_compileJava_2/net/minecraftforge/event/entity/living/LivingEntityUseItemEvent$Stop.class b/build/_compileJava_2/net/minecraftforge/event/entity/living/LivingEntityUseItemEvent$Stop.class new file mode 100644 index 000000000..5939d50b3 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/event/entity/living/LivingEntityUseItemEvent$Stop.class differ diff --git a/build/_compileJava_2/net/minecraftforge/event/entity/living/LivingEntityUseItemEvent$Tick.class b/build/_compileJava_2/net/minecraftforge/event/entity/living/LivingEntityUseItemEvent$Tick.class new file mode 100644 index 000000000..1ca97f9d1 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/event/entity/living/LivingEntityUseItemEvent$Tick.class differ diff --git a/build/_compileJava_2/net/minecraftforge/event/entity/living/LivingEntityUseItemEvent.class b/build/_compileJava_2/net/minecraftforge/event/entity/living/LivingEntityUseItemEvent.class new file mode 100644 index 000000000..1413563ec Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/event/entity/living/LivingEntityUseItemEvent.class differ diff --git a/build/_compileJava_2/net/minecraftforge/event/entity/living/LivingEquipmentChangeEvent.class b/build/_compileJava_2/net/minecraftforge/event/entity/living/LivingEquipmentChangeEvent.class new file mode 100644 index 000000000..92bc14548 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/event/entity/living/LivingEquipmentChangeEvent.class differ diff --git a/build/_compileJava_2/net/minecraftforge/event/entity/living/LivingEvent$LivingJumpEvent.class b/build/_compileJava_2/net/minecraftforge/event/entity/living/LivingEvent$LivingJumpEvent.class new file mode 100644 index 000000000..3e4f97e76 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/event/entity/living/LivingEvent$LivingJumpEvent.class differ diff --git a/build/_compileJava_2/net/minecraftforge/event/entity/living/LivingEvent$LivingTickEvent.class b/build/_compileJava_2/net/minecraftforge/event/entity/living/LivingEvent$LivingTickEvent.class new file mode 100644 index 000000000..318fc2562 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/event/entity/living/LivingEvent$LivingTickEvent.class differ diff --git a/build/_compileJava_2/net/minecraftforge/event/entity/living/LivingEvent$LivingVisibilityEvent.class b/build/_compileJava_2/net/minecraftforge/event/entity/living/LivingEvent$LivingVisibilityEvent.class new file mode 100644 index 000000000..76d8aeccc Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/event/entity/living/LivingEvent$LivingVisibilityEvent.class differ diff --git a/build/_compileJava_2/net/minecraftforge/event/entity/living/LivingEvent.class b/build/_compileJava_2/net/minecraftforge/event/entity/living/LivingEvent.class new file mode 100644 index 000000000..318bc1fe4 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/event/entity/living/LivingEvent.class differ diff --git a/build/_compileJava_2/net/minecraftforge/event/entity/living/LivingExperienceDropEvent.class b/build/_compileJava_2/net/minecraftforge/event/entity/living/LivingExperienceDropEvent.class new file mode 100644 index 000000000..ff2a526f9 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/event/entity/living/LivingExperienceDropEvent.class differ diff --git a/build/_compileJava_2/net/minecraftforge/event/entity/living/LivingFallEvent.class b/build/_compileJava_2/net/minecraftforge/event/entity/living/LivingFallEvent.class new file mode 100644 index 000000000..412d4d509 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/event/entity/living/LivingFallEvent.class differ diff --git a/build/_compileJava_2/net/minecraftforge/event/entity/living/LivingGetProjectileEvent.class b/build/_compileJava_2/net/minecraftforge/event/entity/living/LivingGetProjectileEvent.class new file mode 100644 index 000000000..30696cebd Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/event/entity/living/LivingGetProjectileEvent.class differ diff --git a/build/_compileJava_2/net/minecraftforge/event/entity/living/LivingHealEvent.class b/build/_compileJava_2/net/minecraftforge/event/entity/living/LivingHealEvent.class new file mode 100644 index 000000000..21d927760 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/event/entity/living/LivingHealEvent.class differ diff --git a/build/_compileJava_2/net/minecraftforge/event/entity/living/LivingHurtEvent.class b/build/_compileJava_2/net/minecraftforge/event/entity/living/LivingHurtEvent.class new file mode 100644 index 000000000..f7b6c57ae Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/event/entity/living/LivingHurtEvent.class differ diff --git a/build/_compileJava_2/net/minecraftforge/event/entity/living/LivingKnockBackEvent.class b/build/_compileJava_2/net/minecraftforge/event/entity/living/LivingKnockBackEvent.class new file mode 100644 index 000000000..dd6f70ae3 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/event/entity/living/LivingKnockBackEvent.class differ diff --git a/build/_compileJava_2/net/minecraftforge/event/entity/living/LivingMakeBrainEvent.class b/build/_compileJava_2/net/minecraftforge/event/entity/living/LivingMakeBrainEvent.class new file mode 100644 index 000000000..1a467be09 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/event/entity/living/LivingMakeBrainEvent.class differ diff --git a/build/_compileJava_2/net/minecraftforge/event/entity/living/LivingPackSizeEvent.class b/build/_compileJava_2/net/minecraftforge/event/entity/living/LivingPackSizeEvent.class new file mode 100644 index 000000000..f9d3e4787 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/event/entity/living/LivingPackSizeEvent.class differ diff --git a/build/_compileJava_2/net/minecraftforge/event/entity/living/LivingSwapItemsEvent$Hands.class b/build/_compileJava_2/net/minecraftforge/event/entity/living/LivingSwapItemsEvent$Hands.class new file mode 100644 index 000000000..88b31b74d Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/event/entity/living/LivingSwapItemsEvent$Hands.class differ diff --git a/build/_compileJava_2/net/minecraftforge/event/entity/living/LivingSwapItemsEvent.class b/build/_compileJava_2/net/minecraftforge/event/entity/living/LivingSwapItemsEvent.class new file mode 100644 index 000000000..37a8b9ef6 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/event/entity/living/LivingSwapItemsEvent.class differ diff --git a/build/_compileJava_2/net/minecraftforge/event/entity/living/LivingUseTotemEvent.class b/build/_compileJava_2/net/minecraftforge/event/entity/living/LivingUseTotemEvent.class new file mode 100644 index 000000000..1d4b9c41a Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/event/entity/living/LivingUseTotemEvent.class differ diff --git a/build/_compileJava_2/net/minecraftforge/event/entity/living/LootingLevelEvent.class b/build/_compileJava_2/net/minecraftforge/event/entity/living/LootingLevelEvent.class new file mode 100644 index 000000000..44a280b86 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/event/entity/living/LootingLevelEvent.class differ diff --git a/build/_compileJava_2/net/minecraftforge/event/entity/living/MobEffectEvent$Added.class b/build/_compileJava_2/net/minecraftforge/event/entity/living/MobEffectEvent$Added.class new file mode 100644 index 000000000..88c5afc8a Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/event/entity/living/MobEffectEvent$Added.class differ diff --git a/build/_compileJava_2/net/minecraftforge/event/entity/living/MobEffectEvent$Applicable.class b/build/_compileJava_2/net/minecraftforge/event/entity/living/MobEffectEvent$Applicable.class new file mode 100644 index 000000000..02ceb4ff3 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/event/entity/living/MobEffectEvent$Applicable.class differ diff --git a/build/_compileJava_2/net/minecraftforge/event/entity/living/MobEffectEvent$Expired.class b/build/_compileJava_2/net/minecraftforge/event/entity/living/MobEffectEvent$Expired.class new file mode 100644 index 000000000..cc0b34287 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/event/entity/living/MobEffectEvent$Expired.class differ diff --git a/build/_compileJava_2/net/minecraftforge/event/entity/living/MobEffectEvent$Remove.class b/build/_compileJava_2/net/minecraftforge/event/entity/living/MobEffectEvent$Remove.class new file mode 100644 index 000000000..d0f45cfcf Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/event/entity/living/MobEffectEvent$Remove.class differ diff --git a/build/_compileJava_2/net/minecraftforge/event/entity/living/MobEffectEvent.class b/build/_compileJava_2/net/minecraftforge/event/entity/living/MobEffectEvent.class new file mode 100644 index 000000000..64cab55e5 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/event/entity/living/MobEffectEvent.class differ diff --git a/build/_compileJava_2/net/minecraftforge/event/entity/living/MobSpawnEvent$AllowDespawn.class b/build/_compileJava_2/net/minecraftforge/event/entity/living/MobSpawnEvent$AllowDespawn.class new file mode 100644 index 000000000..96b467183 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/event/entity/living/MobSpawnEvent$AllowDespawn.class differ diff --git a/build/_compileJava_2/net/minecraftforge/event/entity/living/MobSpawnEvent$FinalizeSpawn.class b/build/_compileJava_2/net/minecraftforge/event/entity/living/MobSpawnEvent$FinalizeSpawn.class new file mode 100644 index 000000000..2ff347d43 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/event/entity/living/MobSpawnEvent$FinalizeSpawn.class differ diff --git a/build/_compileJava_2/net/minecraftforge/event/entity/living/MobSpawnEvent$PositionCheck.class b/build/_compileJava_2/net/minecraftforge/event/entity/living/MobSpawnEvent$PositionCheck.class new file mode 100644 index 000000000..7817619df Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/event/entity/living/MobSpawnEvent$PositionCheck.class differ diff --git a/build/_compileJava_2/net/minecraftforge/event/entity/living/MobSpawnEvent$SpawnPlacementCheck.class b/build/_compileJava_2/net/minecraftforge/event/entity/living/MobSpawnEvent$SpawnPlacementCheck.class new file mode 100644 index 000000000..6340c61bc Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/event/entity/living/MobSpawnEvent$SpawnPlacementCheck.class differ diff --git a/build/_compileJava_2/net/minecraftforge/event/entity/living/MobSpawnEvent.class b/build/_compileJava_2/net/minecraftforge/event/entity/living/MobSpawnEvent.class new file mode 100644 index 000000000..905cad190 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/event/entity/living/MobSpawnEvent.class differ diff --git a/build/_compileJava_2/net/minecraftforge/event/entity/living/PotionColorCalculationEvent.class b/build/_compileJava_2/net/minecraftforge/event/entity/living/PotionColorCalculationEvent.class new file mode 100644 index 000000000..d081c5e85 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/event/entity/living/PotionColorCalculationEvent.class differ diff --git a/build/_compileJava_2/net/minecraftforge/event/entity/living/ShieldBlockEvent.class b/build/_compileJava_2/net/minecraftforge/event/entity/living/ShieldBlockEvent.class new file mode 100644 index 000000000..61a6b01ec Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/event/entity/living/ShieldBlockEvent.class differ diff --git a/build/_compileJava_2/net/minecraftforge/event/entity/living/ZombieEvent$SummonAidEvent.class b/build/_compileJava_2/net/minecraftforge/event/entity/living/ZombieEvent$SummonAidEvent.class new file mode 100644 index 000000000..9c2c8a5fa Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/event/entity/living/ZombieEvent$SummonAidEvent.class differ diff --git a/build/_compileJava_2/net/minecraftforge/event/entity/living/ZombieEvent.class b/build/_compileJava_2/net/minecraftforge/event/entity/living/ZombieEvent.class new file mode 100644 index 000000000..59c7c251c Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/event/entity/living/ZombieEvent.class differ diff --git a/build/_compileJava_2/net/minecraftforge/event/entity/player/AdvancementEvent$AdvancementEarnEvent.class b/build/_compileJava_2/net/minecraftforge/event/entity/player/AdvancementEvent$AdvancementEarnEvent.class new file mode 100644 index 000000000..04539a1e5 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/event/entity/player/AdvancementEvent$AdvancementEarnEvent.class differ diff --git a/build/_compileJava_2/net/minecraftforge/event/entity/player/AdvancementEvent$AdvancementProgressEvent$ProgressType.class b/build/_compileJava_2/net/minecraftforge/event/entity/player/AdvancementEvent$AdvancementProgressEvent$ProgressType.class new file mode 100644 index 000000000..88d135906 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/event/entity/player/AdvancementEvent$AdvancementProgressEvent$ProgressType.class differ diff --git a/build/_compileJava_2/net/minecraftforge/event/entity/player/AdvancementEvent$AdvancementProgressEvent.class b/build/_compileJava_2/net/minecraftforge/event/entity/player/AdvancementEvent$AdvancementProgressEvent.class new file mode 100644 index 000000000..30a4f0ea1 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/event/entity/player/AdvancementEvent$AdvancementProgressEvent.class differ diff --git a/build/_compileJava_2/net/minecraftforge/event/entity/player/AdvancementEvent.class b/build/_compileJava_2/net/minecraftforge/event/entity/player/AdvancementEvent.class new file mode 100644 index 000000000..002402169 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/event/entity/player/AdvancementEvent.class differ diff --git a/build/_compileJava_2/net/minecraftforge/event/entity/player/AnvilRepairEvent.class b/build/_compileJava_2/net/minecraftforge/event/entity/player/AnvilRepairEvent.class new file mode 100644 index 000000000..e24e21f74 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/event/entity/player/AnvilRepairEvent.class differ diff --git a/build/_compileJava_2/net/minecraftforge/event/entity/player/ArrowLooseEvent.class b/build/_compileJava_2/net/minecraftforge/event/entity/player/ArrowLooseEvent.class new file mode 100644 index 000000000..5ce42176e Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/event/entity/player/ArrowLooseEvent.class differ diff --git a/build/_compileJava_2/net/minecraftforge/event/entity/player/ArrowNockEvent.class b/build/_compileJava_2/net/minecraftforge/event/entity/player/ArrowNockEvent.class new file mode 100644 index 000000000..49e873e94 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/event/entity/player/ArrowNockEvent.class differ diff --git a/build/_compileJava_2/net/minecraftforge/event/entity/player/AttackEntityEvent.class b/build/_compileJava_2/net/minecraftforge/event/entity/player/AttackEntityEvent.class new file mode 100644 index 000000000..6676e028d Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/event/entity/player/AttackEntityEvent.class differ diff --git a/build/_compileJava_2/net/minecraftforge/event/entity/player/BonemealEvent.class b/build/_compileJava_2/net/minecraftforge/event/entity/player/BonemealEvent.class new file mode 100644 index 000000000..1be8dd779 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/event/entity/player/BonemealEvent.class differ diff --git a/build/_compileJava_2/net/minecraftforge/event/entity/player/CriticalHitEvent.class b/build/_compileJava_2/net/minecraftforge/event/entity/player/CriticalHitEvent.class new file mode 100644 index 000000000..468965f86 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/event/entity/player/CriticalHitEvent.class differ diff --git a/build/_compileJava_2/net/minecraftforge/event/entity/player/EntityItemPickupEvent.class b/build/_compileJava_2/net/minecraftforge/event/entity/player/EntityItemPickupEvent.class new file mode 100644 index 000000000..43e88750e Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/event/entity/player/EntityItemPickupEvent.class differ diff --git a/build/_compileJava_2/net/minecraftforge/event/entity/player/FillBucketEvent.class b/build/_compileJava_2/net/minecraftforge/event/entity/player/FillBucketEvent.class new file mode 100644 index 000000000..094269f8b Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/event/entity/player/FillBucketEvent.class differ diff --git a/build/_compileJava_2/net/minecraftforge/event/entity/player/ItemFishedEvent.class b/build/_compileJava_2/net/minecraftforge/event/entity/player/ItemFishedEvent.class new file mode 100644 index 000000000..271f63ff7 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/event/entity/player/ItemFishedEvent.class differ diff --git a/build/_compileJava_2/net/minecraftforge/event/entity/player/ItemTooltipEvent.class b/build/_compileJava_2/net/minecraftforge/event/entity/player/ItemTooltipEvent.class new file mode 100644 index 000000000..68c7afdad Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/event/entity/player/ItemTooltipEvent.class differ diff --git a/build/_compileJava_2/net/minecraftforge/event/entity/player/PermissionsChangedEvent.class b/build/_compileJava_2/net/minecraftforge/event/entity/player/PermissionsChangedEvent.class new file mode 100644 index 000000000..9428f3f7d Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/event/entity/player/PermissionsChangedEvent.class differ diff --git a/build/_compileJava_2/net/minecraftforge/event/entity/player/PlayerContainerEvent$Close.class b/build/_compileJava_2/net/minecraftforge/event/entity/player/PlayerContainerEvent$Close.class new file mode 100644 index 000000000..161a713d1 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/event/entity/player/PlayerContainerEvent$Close.class differ diff --git a/build/_compileJava_2/net/minecraftforge/event/entity/player/PlayerContainerEvent$Open.class b/build/_compileJava_2/net/minecraftforge/event/entity/player/PlayerContainerEvent$Open.class new file mode 100644 index 000000000..486192b42 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/event/entity/player/PlayerContainerEvent$Open.class differ diff --git a/build/_compileJava_2/net/minecraftforge/event/entity/player/PlayerContainerEvent.class b/build/_compileJava_2/net/minecraftforge/event/entity/player/PlayerContainerEvent.class new file mode 100644 index 000000000..f728c01a0 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/event/entity/player/PlayerContainerEvent.class differ diff --git a/build/_compileJava_2/net/minecraftforge/event/entity/player/PlayerDestroyItemEvent.class b/build/_compileJava_2/net/minecraftforge/event/entity/player/PlayerDestroyItemEvent.class new file mode 100644 index 000000000..fa71a3f47 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/event/entity/player/PlayerDestroyItemEvent.class differ diff --git a/build/_compileJava_2/net/minecraftforge/event/entity/player/PlayerEvent$BreakSpeed.class b/build/_compileJava_2/net/minecraftforge/event/entity/player/PlayerEvent$BreakSpeed.class new file mode 100644 index 000000000..22fc6163f Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/event/entity/player/PlayerEvent$BreakSpeed.class differ diff --git a/build/_compileJava_2/net/minecraftforge/event/entity/player/PlayerEvent$Clone.class b/build/_compileJava_2/net/minecraftforge/event/entity/player/PlayerEvent$Clone.class new file mode 100644 index 000000000..50d6dd888 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/event/entity/player/PlayerEvent$Clone.class differ diff --git a/build/_compileJava_2/net/minecraftforge/event/entity/player/PlayerEvent$HarvestCheck.class b/build/_compileJava_2/net/minecraftforge/event/entity/player/PlayerEvent$HarvestCheck.class new file mode 100644 index 000000000..774ed4d65 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/event/entity/player/PlayerEvent$HarvestCheck.class differ diff --git a/build/_compileJava_2/net/minecraftforge/event/entity/player/PlayerEvent$ItemCraftedEvent.class b/build/_compileJava_2/net/minecraftforge/event/entity/player/PlayerEvent$ItemCraftedEvent.class new file mode 100644 index 000000000..94f1d16da Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/event/entity/player/PlayerEvent$ItemCraftedEvent.class differ diff --git a/build/_compileJava_2/net/minecraftforge/event/entity/player/PlayerEvent$ItemPickupEvent.class b/build/_compileJava_2/net/minecraftforge/event/entity/player/PlayerEvent$ItemPickupEvent.class new file mode 100644 index 000000000..02ef29612 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/event/entity/player/PlayerEvent$ItemPickupEvent.class differ diff --git a/build/_compileJava_2/net/minecraftforge/event/entity/player/PlayerEvent$ItemSmeltedEvent.class b/build/_compileJava_2/net/minecraftforge/event/entity/player/PlayerEvent$ItemSmeltedEvent.class new file mode 100644 index 000000000..99504576e Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/event/entity/player/PlayerEvent$ItemSmeltedEvent.class differ diff --git a/build/_compileJava_2/net/minecraftforge/event/entity/player/PlayerEvent$LoadFromFile.class b/build/_compileJava_2/net/minecraftforge/event/entity/player/PlayerEvent$LoadFromFile.class new file mode 100644 index 000000000..5383737db Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/event/entity/player/PlayerEvent$LoadFromFile.class differ diff --git a/build/_compileJava_2/net/minecraftforge/event/entity/player/PlayerEvent$NameFormat.class b/build/_compileJava_2/net/minecraftforge/event/entity/player/PlayerEvent$NameFormat.class new file mode 100644 index 000000000..64d7c0e92 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/event/entity/player/PlayerEvent$NameFormat.class differ diff --git a/build/_compileJava_2/net/minecraftforge/event/entity/player/PlayerEvent$PlayerChangeGameModeEvent.class b/build/_compileJava_2/net/minecraftforge/event/entity/player/PlayerEvent$PlayerChangeGameModeEvent.class new file mode 100644 index 000000000..75841cc9a Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/event/entity/player/PlayerEvent$PlayerChangeGameModeEvent.class differ diff --git a/build/_compileJava_2/net/minecraftforge/event/entity/player/PlayerEvent$PlayerChangedDimensionEvent.class b/build/_compileJava_2/net/minecraftforge/event/entity/player/PlayerEvent$PlayerChangedDimensionEvent.class new file mode 100644 index 000000000..7e7246a73 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/event/entity/player/PlayerEvent$PlayerChangedDimensionEvent.class differ diff --git a/build/_compileJava_2/net/minecraftforge/event/entity/player/PlayerEvent$PlayerLoggedInEvent.class b/build/_compileJava_2/net/minecraftforge/event/entity/player/PlayerEvent$PlayerLoggedInEvent.class new file mode 100644 index 000000000..961426888 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/event/entity/player/PlayerEvent$PlayerLoggedInEvent.class differ diff --git a/build/_compileJava_2/net/minecraftforge/event/entity/player/PlayerEvent$PlayerLoggedOutEvent.class b/build/_compileJava_2/net/minecraftforge/event/entity/player/PlayerEvent$PlayerLoggedOutEvent.class new file mode 100644 index 000000000..4d4529698 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/event/entity/player/PlayerEvent$PlayerLoggedOutEvent.class differ diff --git a/build/_compileJava_2/net/minecraftforge/event/entity/player/PlayerEvent$PlayerRespawnEvent.class b/build/_compileJava_2/net/minecraftforge/event/entity/player/PlayerEvent$PlayerRespawnEvent.class new file mode 100644 index 000000000..56d95b7fc Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/event/entity/player/PlayerEvent$PlayerRespawnEvent.class differ diff --git a/build/_compileJava_2/net/minecraftforge/event/entity/player/PlayerEvent$SaveToFile.class b/build/_compileJava_2/net/minecraftforge/event/entity/player/PlayerEvent$SaveToFile.class new file mode 100644 index 000000000..5299bf9da Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/event/entity/player/PlayerEvent$SaveToFile.class differ diff --git a/build/_compileJava_2/net/minecraftforge/event/entity/player/PlayerEvent$StartTracking.class b/build/_compileJava_2/net/minecraftforge/event/entity/player/PlayerEvent$StartTracking.class new file mode 100644 index 000000000..dfe152f52 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/event/entity/player/PlayerEvent$StartTracking.class differ diff --git a/build/_compileJava_2/net/minecraftforge/event/entity/player/PlayerEvent$StopTracking.class b/build/_compileJava_2/net/minecraftforge/event/entity/player/PlayerEvent$StopTracking.class new file mode 100644 index 000000000..b4d54dec3 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/event/entity/player/PlayerEvent$StopTracking.class differ diff --git a/build/_compileJava_2/net/minecraftforge/event/entity/player/PlayerEvent$TabListNameFormat.class b/build/_compileJava_2/net/minecraftforge/event/entity/player/PlayerEvent$TabListNameFormat.class new file mode 100644 index 000000000..dcc0a29e9 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/event/entity/player/PlayerEvent$TabListNameFormat.class differ diff --git a/build/_compileJava_2/net/minecraftforge/event/entity/player/PlayerEvent.class b/build/_compileJava_2/net/minecraftforge/event/entity/player/PlayerEvent.class new file mode 100644 index 000000000..b8e214875 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/event/entity/player/PlayerEvent.class differ diff --git a/build/_compileJava_2/net/minecraftforge/event/entity/player/PlayerFlyableFallEvent.class b/build/_compileJava_2/net/minecraftforge/event/entity/player/PlayerFlyableFallEvent.class new file mode 100644 index 000000000..809a46200 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/event/entity/player/PlayerFlyableFallEvent.class differ diff --git a/build/_compileJava_2/net/minecraftforge/event/entity/player/PlayerInteractEvent$1.class b/build/_compileJava_2/net/minecraftforge/event/entity/player/PlayerInteractEvent$1.class new file mode 100644 index 000000000..36f0f4bc2 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/event/entity/player/PlayerInteractEvent$1.class differ diff --git a/build/_compileJava_2/net/minecraftforge/event/entity/player/PlayerInteractEvent$EntityInteract.class b/build/_compileJava_2/net/minecraftforge/event/entity/player/PlayerInteractEvent$EntityInteract.class new file mode 100644 index 000000000..1933bea70 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/event/entity/player/PlayerInteractEvent$EntityInteract.class differ diff --git a/build/_compileJava_2/net/minecraftforge/event/entity/player/PlayerInteractEvent$EntityInteractSpecific.class b/build/_compileJava_2/net/minecraftforge/event/entity/player/PlayerInteractEvent$EntityInteractSpecific.class new file mode 100644 index 000000000..4ee6a00b6 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/event/entity/player/PlayerInteractEvent$EntityInteractSpecific.class differ diff --git a/build/_compileJava_2/net/minecraftforge/event/entity/player/PlayerInteractEvent$LeftClickBlock$Action.class b/build/_compileJava_2/net/minecraftforge/event/entity/player/PlayerInteractEvent$LeftClickBlock$Action.class new file mode 100644 index 000000000..9ac941300 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/event/entity/player/PlayerInteractEvent$LeftClickBlock$Action.class differ diff --git a/build/_compileJava_2/net/minecraftforge/event/entity/player/PlayerInteractEvent$LeftClickBlock.class b/build/_compileJava_2/net/minecraftforge/event/entity/player/PlayerInteractEvent$LeftClickBlock.class new file mode 100644 index 000000000..448428b8d Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/event/entity/player/PlayerInteractEvent$LeftClickBlock.class differ diff --git a/build/_compileJava_2/net/minecraftforge/event/entity/player/PlayerInteractEvent$LeftClickEmpty.class b/build/_compileJava_2/net/minecraftforge/event/entity/player/PlayerInteractEvent$LeftClickEmpty.class new file mode 100644 index 000000000..ca3c6d495 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/event/entity/player/PlayerInteractEvent$LeftClickEmpty.class differ diff --git a/build/_compileJava_2/net/minecraftforge/event/entity/player/PlayerInteractEvent$RightClickBlock.class b/build/_compileJava_2/net/minecraftforge/event/entity/player/PlayerInteractEvent$RightClickBlock.class new file mode 100644 index 000000000..0ae960d1f Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/event/entity/player/PlayerInteractEvent$RightClickBlock.class differ diff --git a/build/_compileJava_2/net/minecraftforge/event/entity/player/PlayerInteractEvent$RightClickEmpty.class b/build/_compileJava_2/net/minecraftforge/event/entity/player/PlayerInteractEvent$RightClickEmpty.class new file mode 100644 index 000000000..a901b68ca Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/event/entity/player/PlayerInteractEvent$RightClickEmpty.class differ diff --git a/build/_compileJava_2/net/minecraftforge/event/entity/player/PlayerInteractEvent$RightClickItem.class b/build/_compileJava_2/net/minecraftforge/event/entity/player/PlayerInteractEvent$RightClickItem.class new file mode 100644 index 000000000..257aad697 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/event/entity/player/PlayerInteractEvent$RightClickItem.class differ diff --git a/build/_compileJava_2/net/minecraftforge/event/entity/player/PlayerInteractEvent.class b/build/_compileJava_2/net/minecraftforge/event/entity/player/PlayerInteractEvent.class new file mode 100644 index 000000000..a66d67ee9 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/event/entity/player/PlayerInteractEvent.class differ diff --git a/build/_compileJava_2/net/minecraftforge/event/entity/player/PlayerNegotiationEvent.class b/build/_compileJava_2/net/minecraftforge/event/entity/player/PlayerNegotiationEvent.class new file mode 100644 index 000000000..bbad70fe0 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/event/entity/player/PlayerNegotiationEvent.class differ diff --git a/build/_compileJava_2/net/minecraftforge/event/entity/player/PlayerSetSpawnEvent.class b/build/_compileJava_2/net/minecraftforge/event/entity/player/PlayerSetSpawnEvent.class new file mode 100644 index 000000000..215cb77ff Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/event/entity/player/PlayerSetSpawnEvent.class differ diff --git a/build/_compileJava_2/net/minecraftforge/event/entity/player/PlayerSleepInBedEvent.class b/build/_compileJava_2/net/minecraftforge/event/entity/player/PlayerSleepInBedEvent.class new file mode 100644 index 000000000..4c3650e4b Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/event/entity/player/PlayerSleepInBedEvent.class differ diff --git a/build/_compileJava_2/net/minecraftforge/event/entity/player/PlayerSpawnPhantomsEvent.class b/build/_compileJava_2/net/minecraftforge/event/entity/player/PlayerSpawnPhantomsEvent.class new file mode 100644 index 000000000..db4aab56d Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/event/entity/player/PlayerSpawnPhantomsEvent.class differ diff --git a/build/_compileJava_2/net/minecraftforge/event/entity/player/PlayerWakeUpEvent.class b/build/_compileJava_2/net/minecraftforge/event/entity/player/PlayerWakeUpEvent.class new file mode 100644 index 000000000..82eaecaa8 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/event/entity/player/PlayerWakeUpEvent.class differ diff --git a/build/_compileJava_2/net/minecraftforge/event/entity/player/PlayerXpEvent$LevelChange.class b/build/_compileJava_2/net/minecraftforge/event/entity/player/PlayerXpEvent$LevelChange.class new file mode 100644 index 000000000..47442d23f Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/event/entity/player/PlayerXpEvent$LevelChange.class differ diff --git a/build/_compileJava_2/net/minecraftforge/event/entity/player/PlayerXpEvent$PickupXp.class b/build/_compileJava_2/net/minecraftforge/event/entity/player/PlayerXpEvent$PickupXp.class new file mode 100644 index 000000000..ba47ac875 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/event/entity/player/PlayerXpEvent$PickupXp.class differ diff --git a/build/_compileJava_2/net/minecraftforge/event/entity/player/PlayerXpEvent$XpChange.class b/build/_compileJava_2/net/minecraftforge/event/entity/player/PlayerXpEvent$XpChange.class new file mode 100644 index 000000000..680309336 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/event/entity/player/PlayerXpEvent$XpChange.class differ diff --git a/build/_compileJava_2/net/minecraftforge/event/entity/player/PlayerXpEvent.class b/build/_compileJava_2/net/minecraftforge/event/entity/player/PlayerXpEvent.class new file mode 100644 index 000000000..7b6719ce1 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/event/entity/player/PlayerXpEvent.class differ diff --git a/build/_compileJava_2/net/minecraftforge/event/entity/player/SleepingLocationCheckEvent.class b/build/_compileJava_2/net/minecraftforge/event/entity/player/SleepingLocationCheckEvent.class new file mode 100644 index 000000000..f8c25c33f Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/event/entity/player/SleepingLocationCheckEvent.class differ diff --git a/build/_compileJava_2/net/minecraftforge/event/entity/player/SleepingTimeCheckEvent.class b/build/_compileJava_2/net/minecraftforge/event/entity/player/SleepingTimeCheckEvent.class new file mode 100644 index 000000000..7f9ccc4a1 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/event/entity/player/SleepingTimeCheckEvent.class differ diff --git a/build/_compileJava_2/net/minecraftforge/event/entity/player/TradeWithVillagerEvent.class b/build/_compileJava_2/net/minecraftforge/event/entity/player/TradeWithVillagerEvent.class new file mode 100644 index 000000000..cb5114574 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/event/entity/player/TradeWithVillagerEvent.class differ diff --git a/build/_compileJava_2/net/minecraftforge/event/furnace/FurnaceFuelBurnTimeEvent.class b/build/_compileJava_2/net/minecraftforge/event/furnace/FurnaceFuelBurnTimeEvent.class new file mode 100644 index 000000000..09ef5be50 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/event/furnace/FurnaceFuelBurnTimeEvent.class differ diff --git a/build/_compileJava_2/net/minecraftforge/event/level/AlterGroundEvent.class b/build/_compileJava_2/net/minecraftforge/event/level/AlterGroundEvent.class new file mode 100644 index 000000000..2fcbb514b Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/event/level/AlterGroundEvent.class differ diff --git a/build/_compileJava_2/net/minecraftforge/event/level/BlockEvent$BlockToolModificationEvent.class b/build/_compileJava_2/net/minecraftforge/event/level/BlockEvent$BlockToolModificationEvent.class new file mode 100644 index 000000000..075d6c604 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/event/level/BlockEvent$BlockToolModificationEvent.class differ diff --git a/build/_compileJava_2/net/minecraftforge/event/level/BlockEvent$BreakEvent.class b/build/_compileJava_2/net/minecraftforge/event/level/BlockEvent$BreakEvent.class new file mode 100644 index 000000000..997e49a8b Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/event/level/BlockEvent$BreakEvent.class differ diff --git a/build/_compileJava_2/net/minecraftforge/event/level/BlockEvent$CreateFluidSourceEvent.class b/build/_compileJava_2/net/minecraftforge/event/level/BlockEvent$CreateFluidSourceEvent.class new file mode 100644 index 000000000..b95b67e53 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/event/level/BlockEvent$CreateFluidSourceEvent.class differ diff --git a/build/_compileJava_2/net/minecraftforge/event/level/BlockEvent$CropGrowEvent$Post.class b/build/_compileJava_2/net/minecraftforge/event/level/BlockEvent$CropGrowEvent$Post.class new file mode 100644 index 000000000..1ecfa3276 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/event/level/BlockEvent$CropGrowEvent$Post.class differ diff --git a/build/_compileJava_2/net/minecraftforge/event/level/BlockEvent$CropGrowEvent$Pre.class b/build/_compileJava_2/net/minecraftforge/event/level/BlockEvent$CropGrowEvent$Pre.class new file mode 100644 index 000000000..f3d3ab037 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/event/level/BlockEvent$CropGrowEvent$Pre.class differ diff --git a/build/_compileJava_2/net/minecraftforge/event/level/BlockEvent$CropGrowEvent.class b/build/_compileJava_2/net/minecraftforge/event/level/BlockEvent$CropGrowEvent.class new file mode 100644 index 000000000..d8cc19b10 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/event/level/BlockEvent$CropGrowEvent.class differ diff --git a/build/_compileJava_2/net/minecraftforge/event/level/BlockEvent$EntityMultiPlaceEvent.class b/build/_compileJava_2/net/minecraftforge/event/level/BlockEvent$EntityMultiPlaceEvent.class new file mode 100644 index 000000000..68a10c6a6 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/event/level/BlockEvent$EntityMultiPlaceEvent.class differ diff --git a/build/_compileJava_2/net/minecraftforge/event/level/BlockEvent$EntityPlaceEvent.class b/build/_compileJava_2/net/minecraftforge/event/level/BlockEvent$EntityPlaceEvent.class new file mode 100644 index 000000000..2841ec585 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/event/level/BlockEvent$EntityPlaceEvent.class differ diff --git a/build/_compileJava_2/net/minecraftforge/event/level/BlockEvent$FarmlandTrampleEvent.class b/build/_compileJava_2/net/minecraftforge/event/level/BlockEvent$FarmlandTrampleEvent.class new file mode 100644 index 000000000..1da8b497f Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/event/level/BlockEvent$FarmlandTrampleEvent.class differ diff --git a/build/_compileJava_2/net/minecraftforge/event/level/BlockEvent$FluidPlaceBlockEvent.class b/build/_compileJava_2/net/minecraftforge/event/level/BlockEvent$FluidPlaceBlockEvent.class new file mode 100644 index 000000000..c79c1cd7a Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/event/level/BlockEvent$FluidPlaceBlockEvent.class differ diff --git a/build/_compileJava_2/net/minecraftforge/event/level/BlockEvent$NeighborNotifyEvent.class b/build/_compileJava_2/net/minecraftforge/event/level/BlockEvent$NeighborNotifyEvent.class new file mode 100644 index 000000000..32669841f Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/event/level/BlockEvent$NeighborNotifyEvent.class differ diff --git a/build/_compileJava_2/net/minecraftforge/event/level/BlockEvent$PortalSpawnEvent.class b/build/_compileJava_2/net/minecraftforge/event/level/BlockEvent$PortalSpawnEvent.class new file mode 100644 index 000000000..1221842da Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/event/level/BlockEvent$PortalSpawnEvent.class differ diff --git a/build/_compileJava_2/net/minecraftforge/event/level/BlockEvent.class b/build/_compileJava_2/net/minecraftforge/event/level/BlockEvent.class new file mode 100644 index 000000000..b5ee414e3 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/event/level/BlockEvent.class differ diff --git a/build/_compileJava_2/net/minecraftforge/event/level/ChunkDataEvent$Load.class b/build/_compileJava_2/net/minecraftforge/event/level/ChunkDataEvent$Load.class new file mode 100644 index 000000000..24f83c318 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/event/level/ChunkDataEvent$Load.class differ diff --git a/build/_compileJava_2/net/minecraftforge/event/level/ChunkDataEvent$Save.class b/build/_compileJava_2/net/minecraftforge/event/level/ChunkDataEvent$Save.class new file mode 100644 index 000000000..2d0ce015e Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/event/level/ChunkDataEvent$Save.class differ diff --git a/build/_compileJava_2/net/minecraftforge/event/level/ChunkDataEvent.class b/build/_compileJava_2/net/minecraftforge/event/level/ChunkDataEvent.class new file mode 100644 index 000000000..e5dc2a791 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/event/level/ChunkDataEvent.class differ diff --git a/build/_compileJava_2/net/minecraftforge/event/level/ChunkEvent$Load.class b/build/_compileJava_2/net/minecraftforge/event/level/ChunkEvent$Load.class new file mode 100644 index 000000000..3539ccfab Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/event/level/ChunkEvent$Load.class differ diff --git a/build/_compileJava_2/net/minecraftforge/event/level/ChunkEvent$Unload.class b/build/_compileJava_2/net/minecraftforge/event/level/ChunkEvent$Unload.class new file mode 100644 index 000000000..93f40bc45 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/event/level/ChunkEvent$Unload.class differ diff --git a/build/_compileJava_2/net/minecraftforge/event/level/ChunkEvent.class b/build/_compileJava_2/net/minecraftforge/event/level/ChunkEvent.class new file mode 100644 index 000000000..301470e6b Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/event/level/ChunkEvent.class differ diff --git a/build/_compileJava_2/net/minecraftforge/event/level/ChunkTicketLevelUpdatedEvent.class b/build/_compileJava_2/net/minecraftforge/event/level/ChunkTicketLevelUpdatedEvent.class new file mode 100644 index 000000000..04193c4b2 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/event/level/ChunkTicketLevelUpdatedEvent.class differ diff --git a/build/_compileJava_2/net/minecraftforge/event/level/ChunkWatchEvent$UnWatch.class b/build/_compileJava_2/net/minecraftforge/event/level/ChunkWatchEvent$UnWatch.class new file mode 100644 index 000000000..fe7e65ccb Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/event/level/ChunkWatchEvent$UnWatch.class differ diff --git a/build/_compileJava_2/net/minecraftforge/event/level/ChunkWatchEvent$Watch.class b/build/_compileJava_2/net/minecraftforge/event/level/ChunkWatchEvent$Watch.class new file mode 100644 index 000000000..ec249e43c Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/event/level/ChunkWatchEvent$Watch.class differ diff --git a/build/_compileJava_2/net/minecraftforge/event/level/ChunkWatchEvent.class b/build/_compileJava_2/net/minecraftforge/event/level/ChunkWatchEvent.class new file mode 100644 index 000000000..fe800b416 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/event/level/ChunkWatchEvent.class differ diff --git a/build/_compileJava_2/net/minecraftforge/event/level/ExplosionEvent$Detonate.class b/build/_compileJava_2/net/minecraftforge/event/level/ExplosionEvent$Detonate.class new file mode 100644 index 000000000..ff9b79876 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/event/level/ExplosionEvent$Detonate.class differ diff --git a/build/_compileJava_2/net/minecraftforge/event/level/ExplosionEvent$Start.class b/build/_compileJava_2/net/minecraftforge/event/level/ExplosionEvent$Start.class new file mode 100644 index 000000000..243e4e597 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/event/level/ExplosionEvent$Start.class differ diff --git a/build/_compileJava_2/net/minecraftforge/event/level/ExplosionEvent.class b/build/_compileJava_2/net/minecraftforge/event/level/ExplosionEvent.class new file mode 100644 index 000000000..aa31d1000 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/event/level/ExplosionEvent.class differ diff --git a/build/_compileJava_2/net/minecraftforge/event/level/LevelEvent$CreateSpawnPosition.class b/build/_compileJava_2/net/minecraftforge/event/level/LevelEvent$CreateSpawnPosition.class new file mode 100644 index 000000000..c742025d1 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/event/level/LevelEvent$CreateSpawnPosition.class differ diff --git a/build/_compileJava_2/net/minecraftforge/event/level/LevelEvent$Load.class b/build/_compileJava_2/net/minecraftforge/event/level/LevelEvent$Load.class new file mode 100644 index 000000000..d82f0acfe Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/event/level/LevelEvent$Load.class differ diff --git a/build/_compileJava_2/net/minecraftforge/event/level/LevelEvent$PotentialSpawns.class b/build/_compileJava_2/net/minecraftforge/event/level/LevelEvent$PotentialSpawns.class new file mode 100644 index 000000000..534e16f73 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/event/level/LevelEvent$PotentialSpawns.class differ diff --git a/build/_compileJava_2/net/minecraftforge/event/level/LevelEvent$Save.class b/build/_compileJava_2/net/minecraftforge/event/level/LevelEvent$Save.class new file mode 100644 index 000000000..dcac48f8c Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/event/level/LevelEvent$Save.class differ diff --git a/build/_compileJava_2/net/minecraftforge/event/level/LevelEvent$Unload.class b/build/_compileJava_2/net/minecraftforge/event/level/LevelEvent$Unload.class new file mode 100644 index 000000000..1cbe5c139 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/event/level/LevelEvent$Unload.class differ diff --git a/build/_compileJava_2/net/minecraftforge/event/level/LevelEvent.class b/build/_compileJava_2/net/minecraftforge/event/level/LevelEvent.class new file mode 100644 index 000000000..79ee8b614 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/event/level/LevelEvent.class differ diff --git a/build/_compileJava_2/net/minecraftforge/event/level/NoteBlockEvent$Change.class b/build/_compileJava_2/net/minecraftforge/event/level/NoteBlockEvent$Change.class new file mode 100644 index 000000000..009f8eae6 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/event/level/NoteBlockEvent$Change.class differ diff --git a/build/_compileJava_2/net/minecraftforge/event/level/NoteBlockEvent$Note.class b/build/_compileJava_2/net/minecraftforge/event/level/NoteBlockEvent$Note.class new file mode 100644 index 000000000..b1997cb78 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/event/level/NoteBlockEvent$Note.class differ diff --git a/build/_compileJava_2/net/minecraftforge/event/level/NoteBlockEvent$Octave.class b/build/_compileJava_2/net/minecraftforge/event/level/NoteBlockEvent$Octave.class new file mode 100644 index 000000000..e566d6e94 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/event/level/NoteBlockEvent$Octave.class differ diff --git a/build/_compileJava_2/net/minecraftforge/event/level/NoteBlockEvent$Play.class b/build/_compileJava_2/net/minecraftforge/event/level/NoteBlockEvent$Play.class new file mode 100644 index 000000000..26ce1c68e Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/event/level/NoteBlockEvent$Play.class differ diff --git a/build/_compileJava_2/net/minecraftforge/event/level/NoteBlockEvent.class b/build/_compileJava_2/net/minecraftforge/event/level/NoteBlockEvent.class new file mode 100644 index 000000000..d771bb8b0 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/event/level/NoteBlockEvent.class differ diff --git a/build/_compileJava_2/net/minecraftforge/event/level/PistonEvent$PistonMoveType.class b/build/_compileJava_2/net/minecraftforge/event/level/PistonEvent$PistonMoveType.class new file mode 100644 index 000000000..1b9336007 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/event/level/PistonEvent$PistonMoveType.class differ diff --git a/build/_compileJava_2/net/minecraftforge/event/level/PistonEvent$Post.class b/build/_compileJava_2/net/minecraftforge/event/level/PistonEvent$Post.class new file mode 100644 index 000000000..fe7ab329b Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/event/level/PistonEvent$Post.class differ diff --git a/build/_compileJava_2/net/minecraftforge/event/level/PistonEvent$Pre.class b/build/_compileJava_2/net/minecraftforge/event/level/PistonEvent$Pre.class new file mode 100644 index 000000000..c17263665 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/event/level/PistonEvent$Pre.class differ diff --git a/build/_compileJava_2/net/minecraftforge/event/level/PistonEvent.class b/build/_compileJava_2/net/minecraftforge/event/level/PistonEvent.class new file mode 100644 index 000000000..8a3e5b82d Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/event/level/PistonEvent.class differ diff --git a/build/_compileJava_2/net/minecraftforge/event/level/SaplingGrowTreeEvent.class b/build/_compileJava_2/net/minecraftforge/event/level/SaplingGrowTreeEvent.class new file mode 100644 index 000000000..bf05d6a66 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/event/level/SaplingGrowTreeEvent.class differ diff --git a/build/_compileJava_2/net/minecraftforge/event/level/SleepFinishedTimeEvent.class b/build/_compileJava_2/net/minecraftforge/event/level/SleepFinishedTimeEvent.class new file mode 100644 index 000000000..ee29204ed Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/event/level/SleepFinishedTimeEvent.class differ diff --git a/build/_compileJava_2/net/minecraftforge/event/server/ServerAboutToStartEvent.class b/build/_compileJava_2/net/minecraftforge/event/server/ServerAboutToStartEvent.class new file mode 100644 index 000000000..48926ec13 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/event/server/ServerAboutToStartEvent.class differ diff --git a/build/_compileJava_2/net/minecraftforge/event/server/ServerLifecycleEvent.class b/build/_compileJava_2/net/minecraftforge/event/server/ServerLifecycleEvent.class new file mode 100644 index 000000000..97dfc8faf Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/event/server/ServerLifecycleEvent.class differ diff --git a/build/_compileJava_2/net/minecraftforge/event/server/ServerStartedEvent.class b/build/_compileJava_2/net/minecraftforge/event/server/ServerStartedEvent.class new file mode 100644 index 000000000..9237f108a Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/event/server/ServerStartedEvent.class differ diff --git a/build/_compileJava_2/net/minecraftforge/event/server/ServerStartingEvent.class b/build/_compileJava_2/net/minecraftforge/event/server/ServerStartingEvent.class new file mode 100644 index 000000000..1f5a650e2 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/event/server/ServerStartingEvent.class differ diff --git a/build/_compileJava_2/net/minecraftforge/event/server/ServerStoppedEvent.class b/build/_compileJava_2/net/minecraftforge/event/server/ServerStoppedEvent.class new file mode 100644 index 000000000..0f4d6e4c1 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/event/server/ServerStoppedEvent.class differ diff --git a/build/_compileJava_2/net/minecraftforge/event/server/ServerStoppingEvent.class b/build/_compileJava_2/net/minecraftforge/event/server/ServerStoppingEvent.class new file mode 100644 index 000000000..cf5d6407b Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/event/server/ServerStoppingEvent.class differ diff --git a/build/_compileJava_2/net/minecraftforge/event/village/VillageSiegeEvent.class b/build/_compileJava_2/net/minecraftforge/event/village/VillageSiegeEvent.class new file mode 100644 index 000000000..e88215aaf Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/event/village/VillageSiegeEvent.class differ diff --git a/build/_compileJava_2/net/minecraftforge/event/village/VillagerTradesEvent.class b/build/_compileJava_2/net/minecraftforge/event/village/VillagerTradesEvent.class new file mode 100644 index 000000000..0cd888cf4 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/event/village/VillagerTradesEvent.class differ diff --git a/build/_compileJava_2/net/minecraftforge/event/village/WandererTradesEvent.class b/build/_compileJava_2/net/minecraftforge/event/village/WandererTradesEvent.class new file mode 100644 index 000000000..d7554f334 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/event/village/WandererTradesEvent.class differ diff --git a/build/_compileJava_2/net/minecraftforge/fluids/DispenseFluidContainer.class b/build/_compileJava_2/net/minecraftforge/fluids/DispenseFluidContainer.class new file mode 100644 index 000000000..4e7dea87a Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/fluids/DispenseFluidContainer.class differ diff --git a/build/_compileJava_2/net/minecraftforge/fluids/FluidActionResult.class b/build/_compileJava_2/net/minecraftforge/fluids/FluidActionResult.class new file mode 100644 index 000000000..ab2001331 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/fluids/FluidActionResult.class differ diff --git a/build/_compileJava_2/net/minecraftforge/fluids/FluidInteractionRegistry$FluidInteraction.class b/build/_compileJava_2/net/minecraftforge/fluids/FluidInteractionRegistry$FluidInteraction.class new file mode 100644 index 000000000..9bf6f8936 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/fluids/FluidInteractionRegistry$FluidInteraction.class differ diff --git a/build/_compileJava_2/net/minecraftforge/fluids/FluidInteractionRegistry$HasFluidInteraction.class b/build/_compileJava_2/net/minecraftforge/fluids/FluidInteractionRegistry$HasFluidInteraction.class new file mode 100644 index 000000000..39318452f Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/fluids/FluidInteractionRegistry$HasFluidInteraction.class differ diff --git a/build/_compileJava_2/net/minecraftforge/fluids/FluidInteractionRegistry$InteractionInformation.class b/build/_compileJava_2/net/minecraftforge/fluids/FluidInteractionRegistry$InteractionInformation.class new file mode 100644 index 000000000..7b57bc55a Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/fluids/FluidInteractionRegistry$InteractionInformation.class differ diff --git a/build/_compileJava_2/net/minecraftforge/fluids/FluidInteractionRegistry.class b/build/_compileJava_2/net/minecraftforge/fluids/FluidInteractionRegistry.class new file mode 100644 index 000000000..ff89f73d4 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/fluids/FluidInteractionRegistry.class differ diff --git a/build/_compileJava_2/net/minecraftforge/fluids/FluidStack.class b/build/_compileJava_2/net/minecraftforge/fluids/FluidStack.class new file mode 100644 index 000000000..b8aae3b00 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/fluids/FluidStack.class differ diff --git a/build/_compileJava_2/net/minecraftforge/fluids/FluidType$Properties.class b/build/_compileJava_2/net/minecraftforge/fluids/FluidType$Properties.class new file mode 100644 index 000000000..9109f5e9f Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/fluids/FluidType$Properties.class differ diff --git a/build/_compileJava_2/net/minecraftforge/fluids/FluidType.class b/build/_compileJava_2/net/minecraftforge/fluids/FluidType.class new file mode 100644 index 000000000..fe726f1b1 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/fluids/FluidType.class differ diff --git a/build/_compileJava_2/net/minecraftforge/fluids/FluidUtil.class b/build/_compileJava_2/net/minecraftforge/fluids/FluidUtil.class new file mode 100644 index 000000000..f24b0271e Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/fluids/FluidUtil.class differ diff --git a/build/_compileJava_2/net/minecraftforge/fluids/ForgeFlowingFluid$Flowing.class b/build/_compileJava_2/net/minecraftforge/fluids/ForgeFlowingFluid$Flowing.class new file mode 100644 index 000000000..0c9ab033f Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/fluids/ForgeFlowingFluid$Flowing.class differ diff --git a/build/_compileJava_2/net/minecraftforge/fluids/ForgeFlowingFluid$Properties.class b/build/_compileJava_2/net/minecraftforge/fluids/ForgeFlowingFluid$Properties.class new file mode 100644 index 000000000..f48c412a7 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/fluids/ForgeFlowingFluid$Properties.class differ diff --git a/build/_compileJava_2/net/minecraftforge/fluids/ForgeFlowingFluid$Source.class b/build/_compileJava_2/net/minecraftforge/fluids/ForgeFlowingFluid$Source.class new file mode 100644 index 000000000..eb8934d30 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/fluids/ForgeFlowingFluid$Source.class differ diff --git a/build/_compileJava_2/net/minecraftforge/fluids/ForgeFlowingFluid.class b/build/_compileJava_2/net/minecraftforge/fluids/ForgeFlowingFluid.class new file mode 100644 index 000000000..48021b09a Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/fluids/ForgeFlowingFluid.class differ diff --git a/build/_compileJava_2/net/minecraftforge/fluids/IFluidBlock.class b/build/_compileJava_2/net/minecraftforge/fluids/IFluidBlock.class new file mode 100644 index 000000000..c221508e7 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/fluids/IFluidBlock.class differ diff --git a/build/_compileJava_2/net/minecraftforge/fluids/IFluidTank.class b/build/_compileJava_2/net/minecraftforge/fluids/IFluidTank.class new file mode 100644 index 000000000..e111fcca6 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/fluids/IFluidTank.class differ diff --git a/build/_compileJava_2/net/minecraftforge/fluids/capability/FluidHandlerBlockEntity.class b/build/_compileJava_2/net/minecraftforge/fluids/capability/FluidHandlerBlockEntity.class new file mode 100644 index 000000000..2bf2c4024 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/fluids/capability/FluidHandlerBlockEntity.class differ diff --git a/build/_compileJava_2/net/minecraftforge/fluids/capability/IFluidHandler$FluidAction.class b/build/_compileJava_2/net/minecraftforge/fluids/capability/IFluidHandler$FluidAction.class new file mode 100644 index 000000000..f259bb4bd Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/fluids/capability/IFluidHandler$FluidAction.class differ diff --git a/build/_compileJava_2/net/minecraftforge/fluids/capability/IFluidHandler.class b/build/_compileJava_2/net/minecraftforge/fluids/capability/IFluidHandler.class new file mode 100644 index 000000000..fad8c9f86 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/fluids/capability/IFluidHandler.class differ diff --git a/build/_compileJava_2/net/minecraftforge/fluids/capability/IFluidHandlerItem.class b/build/_compileJava_2/net/minecraftforge/fluids/capability/IFluidHandlerItem.class new file mode 100644 index 000000000..5950251a3 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/fluids/capability/IFluidHandlerItem.class differ diff --git a/build/_compileJava_2/net/minecraftforge/fluids/capability/ItemFluidContainer.class b/build/_compileJava_2/net/minecraftforge/fluids/capability/ItemFluidContainer.class new file mode 100644 index 000000000..ecb8a6e6d Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/fluids/capability/ItemFluidContainer.class differ diff --git a/build/_compileJava_2/net/minecraftforge/fluids/capability/templates/EmptyFluidHandler.class b/build/_compileJava_2/net/minecraftforge/fluids/capability/templates/EmptyFluidHandler.class new file mode 100644 index 000000000..9d2e3245b Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/fluids/capability/templates/EmptyFluidHandler.class differ diff --git a/build/_compileJava_2/net/minecraftforge/fluids/capability/templates/FluidHandlerItemStack$Consumable.class b/build/_compileJava_2/net/minecraftforge/fluids/capability/templates/FluidHandlerItemStack$Consumable.class new file mode 100644 index 000000000..7b4923f7b Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/fluids/capability/templates/FluidHandlerItemStack$Consumable.class differ diff --git a/build/_compileJava_2/net/minecraftforge/fluids/capability/templates/FluidHandlerItemStack$SwapEmpty.class b/build/_compileJava_2/net/minecraftforge/fluids/capability/templates/FluidHandlerItemStack$SwapEmpty.class new file mode 100644 index 000000000..0a4b7f168 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/fluids/capability/templates/FluidHandlerItemStack$SwapEmpty.class differ diff --git a/build/_compileJava_2/net/minecraftforge/fluids/capability/templates/FluidHandlerItemStack.class b/build/_compileJava_2/net/minecraftforge/fluids/capability/templates/FluidHandlerItemStack.class new file mode 100644 index 000000000..5c3835666 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/fluids/capability/templates/FluidHandlerItemStack.class differ diff --git a/build/_compileJava_2/net/minecraftforge/fluids/capability/templates/FluidHandlerItemStackSimple$Consumable.class b/build/_compileJava_2/net/minecraftforge/fluids/capability/templates/FluidHandlerItemStackSimple$Consumable.class new file mode 100644 index 000000000..87c5a95ad Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/fluids/capability/templates/FluidHandlerItemStackSimple$Consumable.class differ diff --git a/build/_compileJava_2/net/minecraftforge/fluids/capability/templates/FluidHandlerItemStackSimple$SwapEmpty.class b/build/_compileJava_2/net/minecraftforge/fluids/capability/templates/FluidHandlerItemStackSimple$SwapEmpty.class new file mode 100644 index 000000000..c4c24f87c Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/fluids/capability/templates/FluidHandlerItemStackSimple$SwapEmpty.class differ diff --git a/build/_compileJava_2/net/minecraftforge/fluids/capability/templates/FluidHandlerItemStackSimple.class b/build/_compileJava_2/net/minecraftforge/fluids/capability/templates/FluidHandlerItemStackSimple.class new file mode 100644 index 000000000..c34d9ee61 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/fluids/capability/templates/FluidHandlerItemStackSimple.class differ diff --git a/build/_compileJava_2/net/minecraftforge/fluids/capability/templates/FluidTank.class b/build/_compileJava_2/net/minecraftforge/fluids/capability/templates/FluidTank.class new file mode 100644 index 000000000..c2a6d1cf0 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/fluids/capability/templates/FluidTank.class differ diff --git a/build/_compileJava_2/net/minecraftforge/fluids/capability/templates/VoidFluidHandler.class b/build/_compileJava_2/net/minecraftforge/fluids/capability/templates/VoidFluidHandler.class new file mode 100644 index 000000000..948fa5402 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/fluids/capability/templates/VoidFluidHandler.class differ diff --git a/build/_compileJava_2/net/minecraftforge/fluids/capability/wrappers/BlockWrapper$LiquidContainerBlockWrapper.class b/build/_compileJava_2/net/minecraftforge/fluids/capability/wrappers/BlockWrapper$LiquidContainerBlockWrapper.class new file mode 100644 index 000000000..14def3c77 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/fluids/capability/wrappers/BlockWrapper$LiquidContainerBlockWrapper.class differ diff --git a/build/_compileJava_2/net/minecraftforge/fluids/capability/wrappers/BlockWrapper.class b/build/_compileJava_2/net/minecraftforge/fluids/capability/wrappers/BlockWrapper.class new file mode 100644 index 000000000..62db7e214 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/fluids/capability/wrappers/BlockWrapper.class differ diff --git a/build/_compileJava_2/net/minecraftforge/fluids/capability/wrappers/BucketPickupHandlerWrapper.class b/build/_compileJava_2/net/minecraftforge/fluids/capability/wrappers/BucketPickupHandlerWrapper.class new file mode 100644 index 000000000..f32c636bb Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/fluids/capability/wrappers/BucketPickupHandlerWrapper.class differ diff --git a/build/_compileJava_2/net/minecraftforge/fluids/capability/wrappers/FluidBlockWrapper.class b/build/_compileJava_2/net/minecraftforge/fluids/capability/wrappers/FluidBlockWrapper.class new file mode 100644 index 000000000..481549a6f Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/fluids/capability/wrappers/FluidBlockWrapper.class differ diff --git a/build/_compileJava_2/net/minecraftforge/fluids/capability/wrappers/FluidBucketWrapper.class b/build/_compileJava_2/net/minecraftforge/fluids/capability/wrappers/FluidBucketWrapper.class new file mode 100644 index 000000000..ddff9b3d8 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/fluids/capability/wrappers/FluidBucketWrapper.class differ diff --git a/build/_compileJava_2/net/minecraftforge/fml/core/ModStateProvider.class b/build/_compileJava_2/net/minecraftforge/fml/core/ModStateProvider.class new file mode 100644 index 000000000..4900d2844 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/fml/core/ModStateProvider.class differ diff --git a/build/_compileJava_2/net/minecraftforge/fml/core/ParallelTransition.class b/build/_compileJava_2/net/minecraftforge/fml/core/ParallelTransition.class new file mode 100644 index 000000000..458d1cb60 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/fml/core/ParallelTransition.class differ diff --git a/build/_compileJava_2/net/minecraftforge/fml/event/config/ModConfigEvent$Loading.class b/build/_compileJava_2/net/minecraftforge/fml/event/config/ModConfigEvent$Loading.class new file mode 100644 index 000000000..5792a0bec Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/fml/event/config/ModConfigEvent$Loading.class differ diff --git a/build/_compileJava_2/net/minecraftforge/fml/event/config/ModConfigEvent$Reloading.class b/build/_compileJava_2/net/minecraftforge/fml/event/config/ModConfigEvent$Reloading.class new file mode 100644 index 000000000..557d097bc Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/fml/event/config/ModConfigEvent$Reloading.class differ diff --git a/build/_compileJava_2/net/minecraftforge/fml/event/config/ModConfigEvent$Unloading.class b/build/_compileJava_2/net/minecraftforge/fml/event/config/ModConfigEvent$Unloading.class new file mode 100644 index 000000000..a0e3c62ec Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/fml/event/config/ModConfigEvent$Unloading.class differ diff --git a/build/_compileJava_2/net/minecraftforge/fml/event/config/ModConfigEvent.class b/build/_compileJava_2/net/minecraftforge/fml/event/config/ModConfigEvent.class new file mode 100644 index 000000000..12782b263 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/fml/event/config/ModConfigEvent.class differ diff --git a/build/_compileJava_2/net/minecraftforge/fml/event/lifecycle/FMLClientSetupEvent.class b/build/_compileJava_2/net/minecraftforge/fml/event/lifecycle/FMLClientSetupEvent.class new file mode 100644 index 000000000..83dc59c77 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/fml/event/lifecycle/FMLClientSetupEvent.class differ diff --git a/build/_compileJava_2/net/minecraftforge/fml/event/lifecycle/FMLCommonSetupEvent.class b/build/_compileJava_2/net/minecraftforge/fml/event/lifecycle/FMLCommonSetupEvent.class new file mode 100644 index 000000000..46255d352 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/fml/event/lifecycle/FMLCommonSetupEvent.class differ diff --git a/build/_compileJava_2/net/minecraftforge/fml/event/lifecycle/FMLConstructModEvent.class b/build/_compileJava_2/net/minecraftforge/fml/event/lifecycle/FMLConstructModEvent.class new file mode 100644 index 000000000..e41e3eaa2 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/fml/event/lifecycle/FMLConstructModEvent.class differ diff --git a/build/_compileJava_2/net/minecraftforge/fml/event/lifecycle/FMLDedicatedServerSetupEvent.class b/build/_compileJava_2/net/minecraftforge/fml/event/lifecycle/FMLDedicatedServerSetupEvent.class new file mode 100644 index 000000000..ea34839bd Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/fml/event/lifecycle/FMLDedicatedServerSetupEvent.class differ diff --git a/build/_compileJava_2/net/minecraftforge/fml/event/lifecycle/FMLLoadCompleteEvent.class b/build/_compileJava_2/net/minecraftforge/fml/event/lifecycle/FMLLoadCompleteEvent.class new file mode 100644 index 000000000..8f8180a17 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/fml/event/lifecycle/FMLLoadCompleteEvent.class differ diff --git a/build/_compileJava_2/net/minecraftforge/fml/event/lifecycle/InterModEnqueueEvent.class b/build/_compileJava_2/net/minecraftforge/fml/event/lifecycle/InterModEnqueueEvent.class new file mode 100644 index 000000000..8bec26249 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/fml/event/lifecycle/InterModEnqueueEvent.class differ diff --git a/build/_compileJava_2/net/minecraftforge/fml/event/lifecycle/InterModProcessEvent.class b/build/_compileJava_2/net/minecraftforge/fml/event/lifecycle/InterModProcessEvent.class new file mode 100644 index 000000000..cbae57a1a Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/fml/event/lifecycle/InterModProcessEvent.class differ diff --git a/build/_compileJava_2/net/minecraftforge/fml/event/lifecycle/ModLifecycleEvent.class b/build/_compileJava_2/net/minecraftforge/fml/event/lifecycle/ModLifecycleEvent.class new file mode 100644 index 000000000..c2ce1cf2b Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/fml/event/lifecycle/ModLifecycleEvent.class differ diff --git a/build/_compileJava_2/net/minecraftforge/fml/event/lifecycle/ParallelDispatchEvent.class b/build/_compileJava_2/net/minecraftforge/fml/event/lifecycle/ParallelDispatchEvent.class new file mode 100644 index 000000000..eb9f386e1 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/fml/event/lifecycle/ParallelDispatchEvent.class differ diff --git a/build/_compileJava_2/net/minecraftforge/forge/snapshots/ForgeSnapshotsMod.class b/build/_compileJava_2/net/minecraftforge/forge/snapshots/ForgeSnapshotsMod.class new file mode 100644 index 000000000..7cb2c693d Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/forge/snapshots/ForgeSnapshotsMod.class differ diff --git a/build/_compileJava_2/net/minecraftforge/forge/snapshots/ForgeSnapshotsModClient.class b/build/_compileJava_2/net/minecraftforge/forge/snapshots/ForgeSnapshotsModClient.class new file mode 100644 index 000000000..091b919d5 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/forge/snapshots/ForgeSnapshotsModClient.class differ diff --git a/build/_compileJava_2/net/minecraftforge/gametest/BlockPosValueConverter.class b/build/_compileJava_2/net/minecraftforge/gametest/BlockPosValueConverter.class new file mode 100644 index 000000000..2024001d4 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/gametest/BlockPosValueConverter.class differ diff --git a/build/_compileJava_2/net/minecraftforge/gametest/ForgeGameTestHooks.class b/build/_compileJava_2/net/minecraftforge/gametest/ForgeGameTestHooks.class new file mode 100644 index 000000000..77ca325c0 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/gametest/ForgeGameTestHooks.class differ diff --git a/build/_compileJava_2/net/minecraftforge/gametest/GameTestHolder.class b/build/_compileJava_2/net/minecraftforge/gametest/GameTestHolder.class new file mode 100644 index 000000000..a1b8fbbe7 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/gametest/GameTestHolder.class differ diff --git a/build/_compileJava_2/net/minecraftforge/gametest/GameTestMain.class b/build/_compileJava_2/net/minecraftforge/gametest/GameTestMain.class new file mode 100644 index 000000000..9e08c7908 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/gametest/GameTestMain.class differ diff --git a/build/_compileJava_2/net/minecraftforge/gametest/PrefixGameTestTemplate.class b/build/_compileJava_2/net/minecraftforge/gametest/PrefixGameTestTemplate.class new file mode 100644 index 000000000..e03b3f1b0 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/gametest/PrefixGameTestTemplate.class differ diff --git a/build/_compileJava_2/net/minecraftforge/internal/BrandingControl.class b/build/_compileJava_2/net/minecraftforge/internal/BrandingControl.class new file mode 100644 index 000000000..4c41f7b94 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/internal/BrandingControl.class differ diff --git a/build/_compileJava_2/net/minecraftforge/internal/ForgeBindings$1.class b/build/_compileJava_2/net/minecraftforge/internal/ForgeBindings$1.class new file mode 100644 index 000000000..9620f6040 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/internal/ForgeBindings$1.class differ diff --git a/build/_compileJava_2/net/minecraftforge/internal/ForgeBindings.class b/build/_compileJava_2/net/minecraftforge/internal/ForgeBindings.class new file mode 100644 index 000000000..06e97325d Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/internal/ForgeBindings.class differ diff --git a/build/_compileJava_2/net/minecraftforge/internal/TextComponentMessageFormatHandler.class b/build/_compileJava_2/net/minecraftforge/internal/TextComponentMessageFormatHandler.class new file mode 100644 index 000000000..042a41e41 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/internal/TextComponentMessageFormatHandler.class differ diff --git a/build/_compileJava_2/net/minecraftforge/items/IItemHandler.class b/build/_compileJava_2/net/minecraftforge/items/IItemHandler.class new file mode 100644 index 000000000..0c02fd781 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/items/IItemHandler.class differ diff --git a/build/_compileJava_2/net/minecraftforge/items/IItemHandlerModifiable.class b/build/_compileJava_2/net/minecraftforge/items/IItemHandlerModifiable.class new file mode 100644 index 000000000..05d445b8f Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/items/IItemHandlerModifiable.class differ diff --git a/build/_compileJava_2/net/minecraftforge/items/ItemHandlerHelper.class b/build/_compileJava_2/net/minecraftforge/items/ItemHandlerHelper.class new file mode 100644 index 000000000..49e363c29 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/items/ItemHandlerHelper.class differ diff --git a/build/_compileJava_2/net/minecraftforge/items/ItemStackHandler.class b/build/_compileJava_2/net/minecraftforge/items/ItemStackHandler.class new file mode 100644 index 000000000..b9bb214a2 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/items/ItemStackHandler.class differ diff --git a/build/_compileJava_2/net/minecraftforge/items/SlotItemHandler.class b/build/_compileJava_2/net/minecraftforge/items/SlotItemHandler.class new file mode 100644 index 000000000..0cac8401f Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/items/SlotItemHandler.class differ diff --git a/build/_compileJava_2/net/minecraftforge/items/VanillaHopperItemHandler.class b/build/_compileJava_2/net/minecraftforge/items/VanillaHopperItemHandler.class new file mode 100644 index 000000000..0cfe217ec Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/items/VanillaHopperItemHandler.class differ diff --git a/build/_compileJava_2/net/minecraftforge/items/VanillaInventoryCodeHooks.class b/build/_compileJava_2/net/minecraftforge/items/VanillaInventoryCodeHooks.class new file mode 100644 index 000000000..57dfe9b64 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/items/VanillaInventoryCodeHooks.class differ diff --git a/build/_compileJava_2/net/minecraftforge/items/wrapper/CombinedInvWrapper.class b/build/_compileJava_2/net/minecraftforge/items/wrapper/CombinedInvWrapper.class new file mode 100644 index 000000000..a7280ee1e Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/items/wrapper/CombinedInvWrapper.class differ diff --git a/build/_compileJava_2/net/minecraftforge/items/wrapper/EmptyHandler.class b/build/_compileJava_2/net/minecraftforge/items/wrapper/EmptyHandler.class new file mode 100644 index 000000000..409f36d22 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/items/wrapper/EmptyHandler.class differ diff --git a/build/_compileJava_2/net/minecraftforge/items/wrapper/EntityArmorInvWrapper.class b/build/_compileJava_2/net/minecraftforge/items/wrapper/EntityArmorInvWrapper.class new file mode 100644 index 000000000..bd03cb19c Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/items/wrapper/EntityArmorInvWrapper.class differ diff --git a/build/_compileJava_2/net/minecraftforge/items/wrapper/EntityEquipmentInvWrapper.class b/build/_compileJava_2/net/minecraftforge/items/wrapper/EntityEquipmentInvWrapper.class new file mode 100644 index 000000000..ce1b85b61 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/items/wrapper/EntityEquipmentInvWrapper.class differ diff --git a/build/_compileJava_2/net/minecraftforge/items/wrapper/EntityHandsInvWrapper.class b/build/_compileJava_2/net/minecraftforge/items/wrapper/EntityHandsInvWrapper.class new file mode 100644 index 000000000..5c478c6b0 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/items/wrapper/EntityHandsInvWrapper.class differ diff --git a/build/_compileJava_2/net/minecraftforge/items/wrapper/InvWrapper.class b/build/_compileJava_2/net/minecraftforge/items/wrapper/InvWrapper.class new file mode 100644 index 000000000..b465691dd Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/items/wrapper/InvWrapper.class differ diff --git a/build/_compileJava_2/net/minecraftforge/items/wrapper/PlayerArmorInvWrapper.class b/build/_compileJava_2/net/minecraftforge/items/wrapper/PlayerArmorInvWrapper.class new file mode 100644 index 000000000..1c210b1f7 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/items/wrapper/PlayerArmorInvWrapper.class differ diff --git a/build/_compileJava_2/net/minecraftforge/items/wrapper/PlayerInvWrapper.class b/build/_compileJava_2/net/minecraftforge/items/wrapper/PlayerInvWrapper.class new file mode 100644 index 000000000..1be0bff56 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/items/wrapper/PlayerInvWrapper.class differ diff --git a/build/_compileJava_2/net/minecraftforge/items/wrapper/PlayerMainInvWrapper.class b/build/_compileJava_2/net/minecraftforge/items/wrapper/PlayerMainInvWrapper.class new file mode 100644 index 000000000..db1880c0e Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/items/wrapper/PlayerMainInvWrapper.class differ diff --git a/build/_compileJava_2/net/minecraftforge/items/wrapper/PlayerOffhandInvWrapper.class b/build/_compileJava_2/net/minecraftforge/items/wrapper/PlayerOffhandInvWrapper.class new file mode 100644 index 000000000..dbaa1cf11 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/items/wrapper/PlayerOffhandInvWrapper.class differ diff --git a/build/_compileJava_2/net/minecraftforge/items/wrapper/RangedWrapper.class b/build/_compileJava_2/net/minecraftforge/items/wrapper/RangedWrapper.class new file mode 100644 index 000000000..9e1851892 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/items/wrapper/RangedWrapper.class differ diff --git a/build/_compileJava_2/net/minecraftforge/items/wrapper/RecipeWrapper.class b/build/_compileJava_2/net/minecraftforge/items/wrapper/RecipeWrapper.class new file mode 100644 index 000000000..27c992ccd Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/items/wrapper/RecipeWrapper.class differ diff --git a/build/_compileJava_2/net/minecraftforge/items/wrapper/ShulkerItemStackInvWrapper.class b/build/_compileJava_2/net/minecraftforge/items/wrapper/ShulkerItemStackInvWrapper.class new file mode 100644 index 000000000..ae8a1e3c3 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/items/wrapper/ShulkerItemStackInvWrapper.class differ diff --git a/build/_compileJava_2/net/minecraftforge/items/wrapper/SidedInvWrapper$InsertLimit.class b/build/_compileJava_2/net/minecraftforge/items/wrapper/SidedInvWrapper$InsertLimit.class new file mode 100644 index 000000000..0958043a2 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/items/wrapper/SidedInvWrapper$InsertLimit.class differ diff --git a/build/_compileJava_2/net/minecraftforge/items/wrapper/SidedInvWrapper.class b/build/_compileJava_2/net/minecraftforge/items/wrapper/SidedInvWrapper.class new file mode 100644 index 000000000..adaa515eb Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/items/wrapper/SidedInvWrapper.class differ diff --git a/build/_compileJava_2/net/minecraftforge/logging/CrashReportAnalyser.class b/build/_compileJava_2/net/minecraftforge/logging/CrashReportAnalyser.class new file mode 100644 index 000000000..a6c865cfc Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/logging/CrashReportAnalyser.class differ diff --git a/build/_compileJava_2/net/minecraftforge/logging/CrashReportExtender.class b/build/_compileJava_2/net/minecraftforge/logging/CrashReportExtender.class new file mode 100644 index 000000000..75c419bb8 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/logging/CrashReportExtender.class differ diff --git a/build/_compileJava_2/net/minecraftforge/logging/PacketDump.class b/build/_compileJava_2/net/minecraftforge/logging/PacketDump.class new file mode 100644 index 000000000..696c845e8 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/logging/PacketDump.class differ diff --git a/build/_compileJava_2/net/minecraftforge/network/ConfigSync.class b/build/_compileJava_2/net/minecraftforge/network/ConfigSync.class new file mode 100644 index 000000000..a1d9c4d63 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/network/ConfigSync.class differ diff --git a/build/_compileJava_2/net/minecraftforge/network/ConnectionData$ModMismatchData.class b/build/_compileJava_2/net/minecraftforge/network/ConnectionData$ModMismatchData.class new file mode 100644 index 000000000..8f06ddab3 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/network/ConnectionData$ModMismatchData.class differ diff --git a/build/_compileJava_2/net/minecraftforge/network/ConnectionData.class b/build/_compileJava_2/net/minecraftforge/network/ConnectionData.class new file mode 100644 index 000000000..f13d67345 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/network/ConnectionData.class differ diff --git a/build/_compileJava_2/net/minecraftforge/network/ConnectionType.class b/build/_compileJava_2/net/minecraftforge/network/ConnectionType.class new file mode 100644 index 000000000..af990e1bd Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/network/ConnectionType.class differ diff --git a/build/_compileJava_2/net/minecraftforge/network/DualStackUtils.class b/build/_compileJava_2/net/minecraftforge/network/DualStackUtils.class new file mode 100644 index 000000000..7e2732d09 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/network/DualStackUtils.class differ diff --git a/build/_compileJava_2/net/minecraftforge/network/HandshakeHandler$HandshakeConsumer.class b/build/_compileJava_2/net/minecraftforge/network/HandshakeHandler$HandshakeConsumer.class new file mode 100644 index 000000000..3d965457f Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/network/HandshakeHandler$HandshakeConsumer.class differ diff --git a/build/_compileJava_2/net/minecraftforge/network/HandshakeHandler.class b/build/_compileJava_2/net/minecraftforge/network/HandshakeHandler.class new file mode 100644 index 000000000..462f4d2d8 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/network/HandshakeHandler.class differ diff --git a/build/_compileJava_2/net/minecraftforge/network/HandshakeMessages$C2SAcknowledge.class b/build/_compileJava_2/net/minecraftforge/network/HandshakeMessages$C2SAcknowledge.class new file mode 100644 index 000000000..e99cdc5a0 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/network/HandshakeMessages$C2SAcknowledge.class differ diff --git a/build/_compileJava_2/net/minecraftforge/network/HandshakeMessages$C2SModListReply.class b/build/_compileJava_2/net/minecraftforge/network/HandshakeMessages$C2SModListReply.class new file mode 100644 index 000000000..c9a908e67 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/network/HandshakeMessages$C2SModListReply.class differ diff --git a/build/_compileJava_2/net/minecraftforge/network/HandshakeMessages$LoginIndexedMessage.class b/build/_compileJava_2/net/minecraftforge/network/HandshakeMessages$LoginIndexedMessage.class new file mode 100644 index 000000000..19a1009ff Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/network/HandshakeMessages$LoginIndexedMessage.class differ diff --git a/build/_compileJava_2/net/minecraftforge/network/HandshakeMessages$S2CChannelMismatchData.class b/build/_compileJava_2/net/minecraftforge/network/HandshakeMessages$S2CChannelMismatchData.class new file mode 100644 index 000000000..6888721e1 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/network/HandshakeMessages$S2CChannelMismatchData.class differ diff --git a/build/_compileJava_2/net/minecraftforge/network/HandshakeMessages$S2CConfigData.class b/build/_compileJava_2/net/minecraftforge/network/HandshakeMessages$S2CConfigData.class new file mode 100644 index 000000000..39d4ac7d3 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/network/HandshakeMessages$S2CConfigData.class differ diff --git a/build/_compileJava_2/net/minecraftforge/network/HandshakeMessages$S2CModData.class b/build/_compileJava_2/net/minecraftforge/network/HandshakeMessages$S2CModData.class new file mode 100644 index 000000000..ee6d7325d Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/network/HandshakeMessages$S2CModData.class differ diff --git a/build/_compileJava_2/net/minecraftforge/network/HandshakeMessages$S2CModList.class b/build/_compileJava_2/net/minecraftforge/network/HandshakeMessages$S2CModList.class new file mode 100644 index 000000000..d3a3f7944 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/network/HandshakeMessages$S2CModList.class differ diff --git a/build/_compileJava_2/net/minecraftforge/network/HandshakeMessages$S2CRegistry.class b/build/_compileJava_2/net/minecraftforge/network/HandshakeMessages$S2CRegistry.class new file mode 100644 index 000000000..48ab9662b Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/network/HandshakeMessages$S2CRegistry.class differ diff --git a/build/_compileJava_2/net/minecraftforge/network/HandshakeMessages.class b/build/_compileJava_2/net/minecraftforge/network/HandshakeMessages.class new file mode 100644 index 000000000..ac654b500 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/network/HandshakeMessages.class differ diff --git a/build/_compileJava_2/net/minecraftforge/network/IContainerFactory.class b/build/_compileJava_2/net/minecraftforge/network/IContainerFactory.class new file mode 100644 index 000000000..f53c30473 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/network/IContainerFactory.class differ diff --git a/build/_compileJava_2/net/minecraftforge/network/ICustomPacket.class b/build/_compileJava_2/net/minecraftforge/network/ICustomPacket.class new file mode 100644 index 000000000..bb8e1f729 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/network/ICustomPacket.class differ diff --git a/build/_compileJava_2/net/minecraftforge/network/LoginWrapper.class b/build/_compileJava_2/net/minecraftforge/network/LoginWrapper.class new file mode 100644 index 000000000..f3064597f Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/network/LoginWrapper.class differ diff --git a/build/_compileJava_2/net/minecraftforge/network/MCRegisterPacketHandler$ChannelList.class b/build/_compileJava_2/net/minecraftforge/network/MCRegisterPacketHandler$ChannelList.class new file mode 100644 index 000000000..0b1e56a71 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/network/MCRegisterPacketHandler$ChannelList.class differ diff --git a/build/_compileJava_2/net/minecraftforge/network/MCRegisterPacketHandler.class b/build/_compileJava_2/net/minecraftforge/network/MCRegisterPacketHandler.class new file mode 100644 index 000000000..7c0c85880 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/network/MCRegisterPacketHandler.class differ diff --git a/build/_compileJava_2/net/minecraftforge/network/NetworkConstants.class b/build/_compileJava_2/net/minecraftforge/network/NetworkConstants.class new file mode 100644 index 000000000..44975542f Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/network/NetworkConstants.class differ diff --git a/build/_compileJava_2/net/minecraftforge/network/NetworkDirection$Factory.class b/build/_compileJava_2/net/minecraftforge/network/NetworkDirection$Factory.class new file mode 100644 index 000000000..63f23f9e1 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/network/NetworkDirection$Factory.class differ diff --git a/build/_compileJava_2/net/minecraftforge/network/NetworkDirection.class b/build/_compileJava_2/net/minecraftforge/network/NetworkDirection.class new file mode 100644 index 000000000..b033bd06c Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/network/NetworkDirection.class differ diff --git a/build/_compileJava_2/net/minecraftforge/network/NetworkEvent$ChannelRegistrationChangeEvent.class b/build/_compileJava_2/net/minecraftforge/network/NetworkEvent$ChannelRegistrationChangeEvent.class new file mode 100644 index 000000000..312229956 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/network/NetworkEvent$ChannelRegistrationChangeEvent.class differ diff --git a/build/_compileJava_2/net/minecraftforge/network/NetworkEvent$ClientCustomPayloadEvent.class b/build/_compileJava_2/net/minecraftforge/network/NetworkEvent$ClientCustomPayloadEvent.class new file mode 100644 index 000000000..cb4f34a62 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/network/NetworkEvent$ClientCustomPayloadEvent.class differ diff --git a/build/_compileJava_2/net/minecraftforge/network/NetworkEvent$ClientCustomPayloadLoginEvent.class b/build/_compileJava_2/net/minecraftforge/network/NetworkEvent$ClientCustomPayloadLoginEvent.class new file mode 100644 index 000000000..47f9f18bc Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/network/NetworkEvent$ClientCustomPayloadLoginEvent.class differ diff --git a/build/_compileJava_2/net/minecraftforge/network/NetworkEvent$Context.class b/build/_compileJava_2/net/minecraftforge/network/NetworkEvent$Context.class new file mode 100644 index 000000000..ee3e4489a Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/network/NetworkEvent$Context.class differ diff --git a/build/_compileJava_2/net/minecraftforge/network/NetworkEvent$GatherLoginPayloadsEvent.class b/build/_compileJava_2/net/minecraftforge/network/NetworkEvent$GatherLoginPayloadsEvent.class new file mode 100644 index 000000000..95260f51e Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/network/NetworkEvent$GatherLoginPayloadsEvent.class differ diff --git a/build/_compileJava_2/net/minecraftforge/network/NetworkEvent$LoginPayloadEvent.class b/build/_compileJava_2/net/minecraftforge/network/NetworkEvent$LoginPayloadEvent.class new file mode 100644 index 000000000..88c2f1179 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/network/NetworkEvent$LoginPayloadEvent.class differ diff --git a/build/_compileJava_2/net/minecraftforge/network/NetworkEvent$PacketDispatcher$NetworkManagerDispatcher.class b/build/_compileJava_2/net/minecraftforge/network/NetworkEvent$PacketDispatcher$NetworkManagerDispatcher.class new file mode 100644 index 000000000..bbe2f706d Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/network/NetworkEvent$PacketDispatcher$NetworkManagerDispatcher.class differ diff --git a/build/_compileJava_2/net/minecraftforge/network/NetworkEvent$PacketDispatcher.class b/build/_compileJava_2/net/minecraftforge/network/NetworkEvent$PacketDispatcher.class new file mode 100644 index 000000000..f620aaaf3 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/network/NetworkEvent$PacketDispatcher.class differ diff --git a/build/_compileJava_2/net/minecraftforge/network/NetworkEvent$RegistrationChangeType.class b/build/_compileJava_2/net/minecraftforge/network/NetworkEvent$RegistrationChangeType.class new file mode 100644 index 000000000..02cbf6416 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/network/NetworkEvent$RegistrationChangeType.class differ diff --git a/build/_compileJava_2/net/minecraftforge/network/NetworkEvent$ServerCustomPayloadEvent.class b/build/_compileJava_2/net/minecraftforge/network/NetworkEvent$ServerCustomPayloadEvent.class new file mode 100644 index 000000000..f53dd8cb0 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/network/NetworkEvent$ServerCustomPayloadEvent.class differ diff --git a/build/_compileJava_2/net/minecraftforge/network/NetworkEvent$ServerCustomPayloadLoginEvent.class b/build/_compileJava_2/net/minecraftforge/network/NetworkEvent$ServerCustomPayloadLoginEvent.class new file mode 100644 index 000000000..b4acfb9df Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/network/NetworkEvent$ServerCustomPayloadLoginEvent.class differ diff --git a/build/_compileJava_2/net/minecraftforge/network/NetworkEvent.class b/build/_compileJava_2/net/minecraftforge/network/NetworkEvent.class new file mode 100644 index 000000000..810f4e46d Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/network/NetworkEvent.class differ diff --git a/build/_compileJava_2/net/minecraftforge/network/NetworkHooks.class b/build/_compileJava_2/net/minecraftforge/network/NetworkHooks.class new file mode 100644 index 000000000..291655bf5 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/network/NetworkHooks.class differ diff --git a/build/_compileJava_2/net/minecraftforge/network/NetworkInitialization.class b/build/_compileJava_2/net/minecraftforge/network/NetworkInitialization.class new file mode 100644 index 000000000..98e74fd71 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/network/NetworkInitialization.class differ diff --git a/build/_compileJava_2/net/minecraftforge/network/NetworkInstance.class b/build/_compileJava_2/net/minecraftforge/network/NetworkInstance.class new file mode 100644 index 000000000..7c6559cf6 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/network/NetworkInstance.class differ diff --git a/build/_compileJava_2/net/minecraftforge/network/NetworkRegistry$ChannelBuilder.class b/build/_compileJava_2/net/minecraftforge/network/NetworkRegistry$ChannelBuilder.class new file mode 100644 index 000000000..0b76d55ef Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/network/NetworkRegistry$ChannelBuilder.class differ diff --git a/build/_compileJava_2/net/minecraftforge/network/NetworkRegistry$LoginPayload.class b/build/_compileJava_2/net/minecraftforge/network/NetworkRegistry$LoginPayload.class new file mode 100644 index 000000000..f0acfe04f Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/network/NetworkRegistry$LoginPayload.class differ diff --git a/build/_compileJava_2/net/minecraftforge/network/NetworkRegistry.class b/build/_compileJava_2/net/minecraftforge/network/NetworkRegistry.class new file mode 100644 index 000000000..e977d887c Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/network/NetworkRegistry.class differ diff --git a/build/_compileJava_2/net/minecraftforge/network/PacketDistributor$PacketTarget.class b/build/_compileJava_2/net/minecraftforge/network/PacketDistributor$PacketTarget.class new file mode 100644 index 000000000..4bd95ccc9 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/network/PacketDistributor$PacketTarget.class differ diff --git a/build/_compileJava_2/net/minecraftforge/network/PacketDistributor$TargetPoint.class b/build/_compileJava_2/net/minecraftforge/network/PacketDistributor$TargetPoint.class new file mode 100644 index 000000000..204e0b184 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/network/PacketDistributor$TargetPoint.class differ diff --git a/build/_compileJava_2/net/minecraftforge/network/PacketDistributor.class b/build/_compileJava_2/net/minecraftforge/network/PacketDistributor.class new file mode 100644 index 000000000..fe3fdeb92 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/network/PacketDistributor.class differ diff --git a/build/_compileJava_2/net/minecraftforge/network/PlayMessages$OpenContainer.class b/build/_compileJava_2/net/minecraftforge/network/PlayMessages$OpenContainer.class new file mode 100644 index 000000000..45268fd3e Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/network/PlayMessages$OpenContainer.class differ diff --git a/build/_compileJava_2/net/minecraftforge/network/PlayMessages$SpawnEntity.class b/build/_compileJava_2/net/minecraftforge/network/PlayMessages$SpawnEntity.class new file mode 100644 index 000000000..a78c04da0 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/network/PlayMessages$SpawnEntity.class differ diff --git a/build/_compileJava_2/net/minecraftforge/network/PlayMessages.class b/build/_compileJava_2/net/minecraftforge/network/PlayMessages.class new file mode 100644 index 000000000..cab36e8f5 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/network/PlayMessages.class differ diff --git a/build/_compileJava_2/net/minecraftforge/network/ServerStatusPing$ChannelData.class b/build/_compileJava_2/net/minecraftforge/network/ServerStatusPing$ChannelData.class new file mode 100644 index 000000000..543705e94 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/network/ServerStatusPing$ChannelData.class differ diff --git a/build/_compileJava_2/net/minecraftforge/network/ServerStatusPing$ModInfo.class b/build/_compileJava_2/net/minecraftforge/network/ServerStatusPing$ModInfo.class new file mode 100644 index 000000000..e52a41815 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/network/ServerStatusPing$ModInfo.class differ diff --git a/build/_compileJava_2/net/minecraftforge/network/ServerStatusPing.class b/build/_compileJava_2/net/minecraftforge/network/ServerStatusPing.class new file mode 100644 index 000000000..fc2e74443 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/network/ServerStatusPing.class differ diff --git a/build/_compileJava_2/net/minecraftforge/network/event/EventNetworkChannel.class b/build/_compileJava_2/net/minecraftforge/network/event/EventNetworkChannel.class new file mode 100644 index 000000000..0283f4603 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/network/event/EventNetworkChannel.class differ diff --git a/build/_compileJava_2/net/minecraftforge/network/filters/CommandTreeCleaner.class b/build/_compileJava_2/net/minecraftforge/network/filters/CommandTreeCleaner.class new file mode 100644 index 000000000..92bf6f992 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/network/filters/CommandTreeCleaner.class differ diff --git a/build/_compileJava_2/net/minecraftforge/network/filters/ForgeConnectionNetworkFilter.class b/build/_compileJava_2/net/minecraftforge/network/filters/ForgeConnectionNetworkFilter.class new file mode 100644 index 000000000..497abefde Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/network/filters/ForgeConnectionNetworkFilter.class differ diff --git a/build/_compileJava_2/net/minecraftforge/network/filters/NetworkFilters.class b/build/_compileJava_2/net/minecraftforge/network/filters/NetworkFilters.class new file mode 100644 index 000000000..d4ff164fd Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/network/filters/NetworkFilters.class differ diff --git a/build/_compileJava_2/net/minecraftforge/network/filters/VanillaConnectionNetworkFilter.class b/build/_compileJava_2/net/minecraftforge/network/filters/VanillaConnectionNetworkFilter.class new file mode 100644 index 000000000..dd58aae25 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/network/filters/VanillaConnectionNetworkFilter.class differ diff --git a/build/_compileJava_2/net/minecraftforge/network/filters/VanillaPacketFilter.class b/build/_compileJava_2/net/minecraftforge/network/filters/VanillaPacketFilter.class new file mode 100644 index 000000000..2946c1279 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/network/filters/VanillaPacketFilter.class differ diff --git a/build/_compileJava_2/net/minecraftforge/network/filters/VanillaPacketSplitter$RemoteCompatibility.class b/build/_compileJava_2/net/minecraftforge/network/filters/VanillaPacketSplitter$RemoteCompatibility.class new file mode 100644 index 000000000..4b5573c79 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/network/filters/VanillaPacketSplitter$RemoteCompatibility.class differ diff --git a/build/_compileJava_2/net/minecraftforge/network/filters/VanillaPacketSplitter.class b/build/_compileJava_2/net/minecraftforge/network/filters/VanillaPacketSplitter.class new file mode 100644 index 000000000..d02b9794c Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/network/filters/VanillaPacketSplitter.class differ diff --git a/build/_compileJava_2/net/minecraftforge/network/simple/IndexedMessageCodec$MessageHandler.class b/build/_compileJava_2/net/minecraftforge/network/simple/IndexedMessageCodec$MessageHandler.class new file mode 100644 index 000000000..b36dc3c02 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/network/simple/IndexedMessageCodec$MessageHandler.class differ diff --git a/build/_compileJava_2/net/minecraftforge/network/simple/IndexedMessageCodec.class b/build/_compileJava_2/net/minecraftforge/network/simple/IndexedMessageCodec.class new file mode 100644 index 000000000..4f3cdb582 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/network/simple/IndexedMessageCodec.class differ diff --git a/build/_compileJava_2/net/minecraftforge/network/simple/SimpleChannel$MessageBuilder$ToBooleanBiFunction.class b/build/_compileJava_2/net/minecraftforge/network/simple/SimpleChannel$MessageBuilder$ToBooleanBiFunction.class new file mode 100644 index 000000000..7279c05db Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/network/simple/SimpleChannel$MessageBuilder$ToBooleanBiFunction.class differ diff --git a/build/_compileJava_2/net/minecraftforge/network/simple/SimpleChannel$MessageBuilder.class b/build/_compileJava_2/net/minecraftforge/network/simple/SimpleChannel$MessageBuilder.class new file mode 100644 index 000000000..1e64342ad Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/network/simple/SimpleChannel$MessageBuilder.class differ diff --git a/build/_compileJava_2/net/minecraftforge/network/simple/SimpleChannel.class b/build/_compileJava_2/net/minecraftforge/network/simple/SimpleChannel.class new file mode 100644 index 000000000..dc3cea779 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/network/simple/SimpleChannel.class differ diff --git a/build/_compileJava_2/net/minecraftforge/registries/DataPackRegistriesHooks.class b/build/_compileJava_2/net/minecraftforge/registries/DataPackRegistriesHooks.class new file mode 100644 index 000000000..d0eabd7b5 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/registries/DataPackRegistriesHooks.class differ diff --git a/build/_compileJava_2/net/minecraftforge/registries/DataPackRegistryEvent$DataPackRegistryData.class b/build/_compileJava_2/net/minecraftforge/registries/DataPackRegistryEvent$DataPackRegistryData.class new file mode 100644 index 000000000..c6776a061 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/registries/DataPackRegistryEvent$DataPackRegistryData.class differ diff --git a/build/_compileJava_2/net/minecraftforge/registries/DataPackRegistryEvent$NewRegistry.class b/build/_compileJava_2/net/minecraftforge/registries/DataPackRegistryEvent$NewRegistry.class new file mode 100644 index 000000000..4d95fb5fb Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/registries/DataPackRegistryEvent$NewRegistry.class differ diff --git a/build/_compileJava_2/net/minecraftforge/registries/DataPackRegistryEvent.class b/build/_compileJava_2/net/minecraftforge/registries/DataPackRegistryEvent.class new file mode 100644 index 000000000..5b856acba Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/registries/DataPackRegistryEvent.class differ diff --git a/build/_compileJava_2/net/minecraftforge/registries/DeferredRegister$EventDispatcher.class b/build/_compileJava_2/net/minecraftforge/registries/DeferredRegister$EventDispatcher.class new file mode 100644 index 000000000..00612f8a3 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/registries/DeferredRegister$EventDispatcher.class differ diff --git a/build/_compileJava_2/net/minecraftforge/registries/DeferredRegister$RegistryHolder.class b/build/_compileJava_2/net/minecraftforge/registries/DeferredRegister$RegistryHolder.class new file mode 100644 index 000000000..35c6837d1 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/registries/DeferredRegister$RegistryHolder.class differ diff --git a/build/_compileJava_2/net/minecraftforge/registries/DeferredRegister.class b/build/_compileJava_2/net/minecraftforge/registries/DeferredRegister.class new file mode 100644 index 000000000..b79e066f2 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/registries/DeferredRegister.class differ diff --git a/build/_compileJava_2/net/minecraftforge/registries/ForgeDeferredRegistriesSetup.class b/build/_compileJava_2/net/minecraftforge/registries/ForgeDeferredRegistriesSetup.class new file mode 100644 index 000000000..78531926c Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/registries/ForgeDeferredRegistriesSetup.class differ diff --git a/build/_compileJava_2/net/minecraftforge/registries/ForgeRegistries$Keys.class b/build/_compileJava_2/net/minecraftforge/registries/ForgeRegistries$Keys.class new file mode 100644 index 000000000..5cded93eb Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/registries/ForgeRegistries$Keys.class differ diff --git a/build/_compileJava_2/net/minecraftforge/registries/ForgeRegistries.class b/build/_compileJava_2/net/minecraftforge/registries/ForgeRegistries.class new file mode 100644 index 000000000..c3a44ddf1 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/registries/ForgeRegistries.class differ diff --git a/build/_compileJava_2/net/minecraftforge/registries/ForgeRegistry$1.class b/build/_compileJava_2/net/minecraftforge/registries/ForgeRegistry$1.class new file mode 100644 index 000000000..23a60cf98 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/registries/ForgeRegistry$1.class differ diff --git a/build/_compileJava_2/net/minecraftforge/registries/ForgeRegistry$DumpRow.class b/build/_compileJava_2/net/minecraftforge/registries/ForgeRegistry$DumpRow.class new file mode 100644 index 000000000..9a6549bc5 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/registries/ForgeRegistry$DumpRow.class differ diff --git a/build/_compileJava_2/net/minecraftforge/registries/ForgeRegistry$OverrideOwner.class b/build/_compileJava_2/net/minecraftforge/registries/ForgeRegistry$OverrideOwner.class new file mode 100644 index 000000000..7fa8f159b Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/registries/ForgeRegistry$OverrideOwner.class differ diff --git a/build/_compileJava_2/net/minecraftforge/registries/ForgeRegistry$RegistryCodec.class b/build/_compileJava_2/net/minecraftforge/registries/ForgeRegistry$RegistryCodec.class new file mode 100644 index 000000000..233b01afd Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/registries/ForgeRegistry$RegistryCodec.class differ diff --git a/build/_compileJava_2/net/minecraftforge/registries/ForgeRegistry$Snapshot.class b/build/_compileJava_2/net/minecraftforge/registries/ForgeRegistry$Snapshot.class new file mode 100644 index 000000000..aa30dd1fd Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/registries/ForgeRegistry$Snapshot.class differ diff --git a/build/_compileJava_2/net/minecraftforge/registries/ForgeRegistry.class b/build/_compileJava_2/net/minecraftforge/registries/ForgeRegistry.class new file mode 100644 index 000000000..68617b712 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/registries/ForgeRegistry.class differ diff --git a/build/_compileJava_2/net/minecraftforge/registries/ForgeRegistryTag.class b/build/_compileJava_2/net/minecraftforge/registries/ForgeRegistryTag.class new file mode 100644 index 000000000..7cbd24bb1 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/registries/ForgeRegistryTag.class differ diff --git a/build/_compileJava_2/net/minecraftforge/registries/ForgeRegistryTagManager.class b/build/_compileJava_2/net/minecraftforge/registries/ForgeRegistryTagManager.class new file mode 100644 index 000000000..d2aa16d78 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/registries/ForgeRegistryTagManager.class differ diff --git a/build/_compileJava_2/net/minecraftforge/registries/GameData$1.class b/build/_compileJava_2/net/minecraftforge/registries/GameData$1.class new file mode 100644 index 000000000..f91e84e01 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/registries/GameData$1.class differ diff --git a/build/_compileJava_2/net/minecraftforge/registries/GameData$AttributeCallbacks.class b/build/_compileJava_2/net/minecraftforge/registries/GameData$AttributeCallbacks.class new file mode 100644 index 000000000..60c4668b6 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/registries/GameData$AttributeCallbacks.class differ diff --git a/build/_compileJava_2/net/minecraftforge/registries/GameData$BlockCallbacks$1.class b/build/_compileJava_2/net/minecraftforge/registries/GameData$BlockCallbacks$1.class new file mode 100644 index 000000000..74b6a6d1d Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/registries/GameData$BlockCallbacks$1.class differ diff --git a/build/_compileJava_2/net/minecraftforge/registries/GameData$BlockCallbacks.class b/build/_compileJava_2/net/minecraftforge/registries/GameData$BlockCallbacks.class new file mode 100644 index 000000000..af6f9ae30 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/registries/GameData$BlockCallbacks.class differ diff --git a/build/_compileJava_2/net/minecraftforge/registries/GameData$ClearableObjectIntIdentityMap.class b/build/_compileJava_2/net/minecraftforge/registries/GameData$ClearableObjectIntIdentityMap.class new file mode 100644 index 000000000..b1a296091 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/registries/GameData$ClearableObjectIntIdentityMap.class differ diff --git a/build/_compileJava_2/net/minecraftforge/registries/GameData$ItemCallbacks.class b/build/_compileJava_2/net/minecraftforge/registries/GameData$ItemCallbacks.class new file mode 100644 index 000000000..36aff590f Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/registries/GameData$ItemCallbacks.class differ diff --git a/build/_compileJava_2/net/minecraftforge/registries/GameData$PointOfInterestTypeCallbacks.class b/build/_compileJava_2/net/minecraftforge/registries/GameData$PointOfInterestTypeCallbacks.class new file mode 100644 index 000000000..15866fbd7 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/registries/GameData$PointOfInterestTypeCallbacks.class differ diff --git a/build/_compileJava_2/net/minecraftforge/registries/GameData.class b/build/_compileJava_2/net/minecraftforge/registries/GameData.class new file mode 100644 index 000000000..bffd32a94 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/registries/GameData.class differ diff --git a/build/_compileJava_2/net/minecraftforge/registries/IForgeRegistry$AddCallback.class b/build/_compileJava_2/net/minecraftforge/registries/IForgeRegistry$AddCallback.class new file mode 100644 index 000000000..c4e9f68e2 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/registries/IForgeRegistry$AddCallback.class differ diff --git a/build/_compileJava_2/net/minecraftforge/registries/IForgeRegistry$BakeCallback.class b/build/_compileJava_2/net/minecraftforge/registries/IForgeRegistry$BakeCallback.class new file mode 100644 index 000000000..18a7ea99e Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/registries/IForgeRegistry$BakeCallback.class differ diff --git a/build/_compileJava_2/net/minecraftforge/registries/IForgeRegistry$ClearCallback.class b/build/_compileJava_2/net/minecraftforge/registries/IForgeRegistry$ClearCallback.class new file mode 100644 index 000000000..3cd87f627 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/registries/IForgeRegistry$ClearCallback.class differ diff --git a/build/_compileJava_2/net/minecraftforge/registries/IForgeRegistry$CreateCallback.class b/build/_compileJava_2/net/minecraftforge/registries/IForgeRegistry$CreateCallback.class new file mode 100644 index 000000000..364452e90 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/registries/IForgeRegistry$CreateCallback.class differ diff --git a/build/_compileJava_2/net/minecraftforge/registries/IForgeRegistry$MissingFactory.class b/build/_compileJava_2/net/minecraftforge/registries/IForgeRegistry$MissingFactory.class new file mode 100644 index 000000000..ff8ac6707 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/registries/IForgeRegistry$MissingFactory.class differ diff --git a/build/_compileJava_2/net/minecraftforge/registries/IForgeRegistry$ValidateCallback.class b/build/_compileJava_2/net/minecraftforge/registries/IForgeRegistry$ValidateCallback.class new file mode 100644 index 000000000..e1c321871 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/registries/IForgeRegistry$ValidateCallback.class differ diff --git a/build/_compileJava_2/net/minecraftforge/registries/IForgeRegistry.class b/build/_compileJava_2/net/minecraftforge/registries/IForgeRegistry.class new file mode 100644 index 000000000..660c11b5c Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/registries/IForgeRegistry.class differ diff --git a/build/_compileJava_2/net/minecraftforge/registries/IForgeRegistryInternal.class b/build/_compileJava_2/net/minecraftforge/registries/IForgeRegistryInternal.class new file mode 100644 index 000000000..c2545857c Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/registries/IForgeRegistryInternal.class differ diff --git a/build/_compileJava_2/net/minecraftforge/registries/IForgeRegistryModifiable.class b/build/_compileJava_2/net/minecraftforge/registries/IForgeRegistryModifiable.class new file mode 100644 index 000000000..4664014d6 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/registries/IForgeRegistryModifiable.class differ diff --git a/build/_compileJava_2/net/minecraftforge/registries/ILockableRegistry.class b/build/_compileJava_2/net/minecraftforge/registries/ILockableRegistry.class new file mode 100644 index 000000000..1995b78bc Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/registries/ILockableRegistry.class differ diff --git a/build/_compileJava_2/net/minecraftforge/registries/IdMappingEvent$IdRemapping.class b/build/_compileJava_2/net/minecraftforge/registries/IdMappingEvent$IdRemapping.class new file mode 100644 index 000000000..4b6ed5484 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/registries/IdMappingEvent$IdRemapping.class differ diff --git a/build/_compileJava_2/net/minecraftforge/registries/IdMappingEvent$ModRemapping.class b/build/_compileJava_2/net/minecraftforge/registries/IdMappingEvent$ModRemapping.class new file mode 100644 index 000000000..a3f05e666 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/registries/IdMappingEvent$ModRemapping.class differ diff --git a/build/_compileJava_2/net/minecraftforge/registries/IdMappingEvent.class b/build/_compileJava_2/net/minecraftforge/registries/IdMappingEvent.class new file mode 100644 index 000000000..340d67898 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/registries/IdMappingEvent.class differ diff --git a/build/_compileJava_2/net/minecraftforge/registries/MissingMappingsEvent$Action.class b/build/_compileJava_2/net/minecraftforge/registries/MissingMappingsEvent$Action.class new file mode 100644 index 000000000..5d3407929 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/registries/MissingMappingsEvent$Action.class differ diff --git a/build/_compileJava_2/net/minecraftforge/registries/MissingMappingsEvent$Mapping.class b/build/_compileJava_2/net/minecraftforge/registries/MissingMappingsEvent$Mapping.class new file mode 100644 index 000000000..b6ab1c66a Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/registries/MissingMappingsEvent$Mapping.class differ diff --git a/build/_compileJava_2/net/minecraftforge/registries/MissingMappingsEvent.class b/build/_compileJava_2/net/minecraftforge/registries/MissingMappingsEvent.class new file mode 100644 index 000000000..ec9e0310a Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/registries/MissingMappingsEvent.class differ diff --git a/build/_compileJava_2/net/minecraftforge/registries/NamespacedDefaultedWrapper$Factory.class b/build/_compileJava_2/net/minecraftforge/registries/NamespacedDefaultedWrapper$Factory.class new file mode 100644 index 000000000..96011d593 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/registries/NamespacedDefaultedWrapper$Factory.class differ diff --git a/build/_compileJava_2/net/minecraftforge/registries/NamespacedDefaultedWrapper.class b/build/_compileJava_2/net/minecraftforge/registries/NamespacedDefaultedWrapper.class new file mode 100644 index 000000000..302ef2084 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/registries/NamespacedDefaultedWrapper.class differ diff --git a/build/_compileJava_2/net/minecraftforge/registries/NamespacedWrapper$1.class b/build/_compileJava_2/net/minecraftforge/registries/NamespacedWrapper$1.class new file mode 100644 index 000000000..bb790a072 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/registries/NamespacedWrapper$1.class differ diff --git a/build/_compileJava_2/net/minecraftforge/registries/NamespacedWrapper$Factory.class b/build/_compileJava_2/net/minecraftforge/registries/NamespacedWrapper$Factory.class new file mode 100644 index 000000000..a30c638c5 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/registries/NamespacedWrapper$Factory.class differ diff --git a/build/_compileJava_2/net/minecraftforge/registries/NamespacedWrapper.class b/build/_compileJava_2/net/minecraftforge/registries/NamespacedWrapper.class new file mode 100644 index 000000000..35671dbeb Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/registries/NamespacedWrapper.class differ diff --git a/build/_compileJava_2/net/minecraftforge/registries/NewRegistryEvent$RegistryData.class b/build/_compileJava_2/net/minecraftforge/registries/NewRegistryEvent$RegistryData.class new file mode 100644 index 000000000..697f6c96a Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/registries/NewRegistryEvent$RegistryData.class differ diff --git a/build/_compileJava_2/net/minecraftforge/registries/NewRegistryEvent$RegistryHolder.class b/build/_compileJava_2/net/minecraftforge/registries/NewRegistryEvent$RegistryHolder.class new file mode 100644 index 000000000..0577f0b96 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/registries/NewRegistryEvent$RegistryHolder.class differ diff --git a/build/_compileJava_2/net/minecraftforge/registries/NewRegistryEvent.class b/build/_compileJava_2/net/minecraftforge/registries/NewRegistryEvent.class new file mode 100644 index 000000000..4bf0f99c7 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/registries/NewRegistryEvent.class differ diff --git a/build/_compileJava_2/net/minecraftforge/registries/ObjectHolder.class b/build/_compileJava_2/net/minecraftforge/registries/ObjectHolder.class new file mode 100644 index 000000000..a53d86df5 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/registries/ObjectHolder.class differ diff --git a/build/_compileJava_2/net/minecraftforge/registries/ObjectHolderRef.class b/build/_compileJava_2/net/minecraftforge/registries/ObjectHolderRef.class new file mode 100644 index 000000000..1c3de653e Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/registries/ObjectHolderRef.class differ diff --git a/build/_compileJava_2/net/minecraftforge/registries/ObjectHolderRegistry$VanillaObjectHolderData.class b/build/_compileJava_2/net/minecraftforge/registries/ObjectHolderRegistry$VanillaObjectHolderData.class new file mode 100644 index 000000000..2e189ffad Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/registries/ObjectHolderRegistry$VanillaObjectHolderData.class differ diff --git a/build/_compileJava_2/net/minecraftforge/registries/ObjectHolderRegistry.class b/build/_compileJava_2/net/minecraftforge/registries/ObjectHolderRegistry.class new file mode 100644 index 000000000..c2dc69692 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/registries/ObjectHolderRegistry.class differ diff --git a/build/_compileJava_2/net/minecraftforge/registries/RegisterEvent$RegisterHelper.class b/build/_compileJava_2/net/minecraftforge/registries/RegisterEvent$RegisterHelper.class new file mode 100644 index 000000000..fda2c81f5 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/registries/RegisterEvent$RegisterHelper.class differ diff --git a/build/_compileJava_2/net/minecraftforge/registries/RegisterEvent.class b/build/_compileJava_2/net/minecraftforge/registries/RegisterEvent.class new file mode 100644 index 000000000..97ace35e7 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/registries/RegisterEvent.class differ diff --git a/build/_compileJava_2/net/minecraftforge/registries/RegistryBuilder.class b/build/_compileJava_2/net/minecraftforge/registries/RegistryBuilder.class new file mode 100644 index 000000000..c2d391b5b Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/registries/RegistryBuilder.class differ diff --git a/build/_compileJava_2/net/minecraftforge/registries/RegistryManager.class b/build/_compileJava_2/net/minecraftforge/registries/RegistryManager.class new file mode 100644 index 000000000..1752ecf12 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/registries/RegistryManager.class differ diff --git a/build/_compileJava_2/net/minecraftforge/registries/RegistryObject$1.class b/build/_compileJava_2/net/minecraftforge/registries/RegistryObject$1.class new file mode 100644 index 000000000..0ac00188a Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/registries/RegistryObject$1.class differ diff --git a/build/_compileJava_2/net/minecraftforge/registries/RegistryObject.class b/build/_compileJava_2/net/minecraftforge/registries/RegistryObject.class new file mode 100644 index 000000000..d39ab0ccb Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/registries/RegistryObject.class differ diff --git a/build/_compileJava_2/net/minecraftforge/registries/holdersets/AndHolderSet.class b/build/_compileJava_2/net/minecraftforge/registries/holdersets/AndHolderSet.class new file mode 100644 index 000000000..5d23b6cc3 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/registries/holdersets/AndHolderSet.class differ diff --git a/build/_compileJava_2/net/minecraftforge/registries/holdersets/AnyHolderSet.class b/build/_compileJava_2/net/minecraftforge/registries/holdersets/AnyHolderSet.class new file mode 100644 index 000000000..d10e2e74f Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/registries/holdersets/AnyHolderSet.class differ diff --git a/build/_compileJava_2/net/minecraftforge/registries/holdersets/CompositeHolderSet.class b/build/_compileJava_2/net/minecraftforge/registries/holdersets/CompositeHolderSet.class new file mode 100644 index 000000000..8981d5b5f Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/registries/holdersets/CompositeHolderSet.class differ diff --git a/build/_compileJava_2/net/minecraftforge/registries/holdersets/HolderSetType.class b/build/_compileJava_2/net/minecraftforge/registries/holdersets/HolderSetType.class new file mode 100644 index 000000000..4544c00b5 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/registries/holdersets/HolderSetType.class differ diff --git a/build/_compileJava_2/net/minecraftforge/registries/holdersets/ICustomHolderSet.class b/build/_compileJava_2/net/minecraftforge/registries/holdersets/ICustomHolderSet.class new file mode 100644 index 000000000..157a51d8b Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/registries/holdersets/ICustomHolderSet.class differ diff --git a/build/_compileJava_2/net/minecraftforge/registries/holdersets/NotHolderSet.class b/build/_compileJava_2/net/minecraftforge/registries/holdersets/NotHolderSet.class new file mode 100644 index 000000000..fb7650149 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/registries/holdersets/NotHolderSet.class differ diff --git a/build/_compileJava_2/net/minecraftforge/registries/holdersets/OrHolderSet.class b/build/_compileJava_2/net/minecraftforge/registries/holdersets/OrHolderSet.class new file mode 100644 index 000000000..350ed9f03 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/registries/holdersets/OrHolderSet.class differ diff --git a/build/_compileJava_2/net/minecraftforge/registries/tags/IReverseTag.class b/build/_compileJava_2/net/minecraftforge/registries/tags/IReverseTag.class new file mode 100644 index 000000000..96e9b82f8 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/registries/tags/IReverseTag.class differ diff --git a/build/_compileJava_2/net/minecraftforge/registries/tags/ITag.class b/build/_compileJava_2/net/minecraftforge/registries/tags/ITag.class new file mode 100644 index 000000000..6d480e101 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/registries/tags/ITag.class differ diff --git a/build/_compileJava_2/net/minecraftforge/registries/tags/ITagManager.class b/build/_compileJava_2/net/minecraftforge/registries/tags/ITagManager.class new file mode 100644 index 000000000..ffdb12b09 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/registries/tags/ITagManager.class differ diff --git a/build/_compileJava_2/net/minecraftforge/resource/DelegatingPackResources.class b/build/_compileJava_2/net/minecraftforge/resource/DelegatingPackResources.class new file mode 100644 index 000000000..69fea5f7d Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/resource/DelegatingPackResources.class differ diff --git a/build/_compileJava_2/net/minecraftforge/resource/PathPackResources.class b/build/_compileJava_2/net/minecraftforge/resource/PathPackResources.class new file mode 100644 index 000000000..4d6b08c05 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/resource/PathPackResources.class differ diff --git a/build/_compileJava_2/net/minecraftforge/resource/ResourcePackLoader$1.class b/build/_compileJava_2/net/minecraftforge/resource/ResourcePackLoader$1.class new file mode 100644 index 000000000..964e837ff Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/resource/ResourcePackLoader$1.class differ diff --git a/build/_compileJava_2/net/minecraftforge/resource/ResourcePackLoader.class b/build/_compileJava_2/net/minecraftforge/resource/ResourcePackLoader.class new file mode 100644 index 000000000..d144c5ab0 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/resource/ResourcePackLoader.class differ diff --git a/build/_compileJava_2/net/minecraftforge/resource/package-info.class b/build/_compileJava_2/net/minecraftforge/resource/package-info.class new file mode 100644 index 000000000..150b02e37 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/resource/package-info.class differ diff --git a/build/_compileJava_2/net/minecraftforge/server/LanguageHook.class b/build/_compileJava_2/net/minecraftforge/server/LanguageHook.class new file mode 100644 index 000000000..4648a4395 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/server/LanguageHook.class differ diff --git a/build/_compileJava_2/net/minecraftforge/server/ServerLifecycleHooks.class b/build/_compileJava_2/net/minecraftforge/server/ServerLifecycleHooks.class new file mode 100644 index 000000000..34a30d81b Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/server/ServerLifecycleHooks.class differ diff --git a/build/_compileJava_2/net/minecraftforge/server/command/ChunkGenWorker.class b/build/_compileJava_2/net/minecraftforge/server/command/ChunkGenWorker.class new file mode 100644 index 000000000..6d1d2e907 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/server/command/ChunkGenWorker.class differ diff --git a/build/_compileJava_2/net/minecraftforge/server/command/CommandHelper.class b/build/_compileJava_2/net/minecraftforge/server/command/CommandHelper.class new file mode 100644 index 000000000..84e33ea14 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/server/command/CommandHelper.class differ diff --git a/build/_compileJava_2/net/minecraftforge/server/command/ConfigCommand$ShowFile.class b/build/_compileJava_2/net/minecraftforge/server/command/ConfigCommand$ShowFile.class new file mode 100644 index 000000000..e7b947f86 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/server/command/ConfigCommand$ShowFile.class differ diff --git a/build/_compileJava_2/net/minecraftforge/server/command/ConfigCommand.class b/build/_compileJava_2/net/minecraftforge/server/command/ConfigCommand.class new file mode 100644 index 000000000..9c29bbb28 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/server/command/ConfigCommand.class differ diff --git a/build/_compileJava_2/net/minecraftforge/server/command/DimensionsCommand.class b/build/_compileJava_2/net/minecraftforge/server/command/DimensionsCommand.class new file mode 100644 index 000000000..9fab2d340 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/server/command/DimensionsCommand.class differ diff --git a/build/_compileJava_2/net/minecraftforge/server/command/EntityCommand$EntityListCommand.class b/build/_compileJava_2/net/minecraftforge/server/command/EntityCommand$EntityListCommand.class new file mode 100644 index 000000000..011835116 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/server/command/EntityCommand$EntityListCommand.class differ diff --git a/build/_compileJava_2/net/minecraftforge/server/command/EntityCommand.class b/build/_compileJava_2/net/minecraftforge/server/command/EntityCommand.class new file mode 100644 index 000000000..666ba4887 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/server/command/EntityCommand.class differ diff --git a/build/_compileJava_2/net/minecraftforge/server/command/EnumArgument$Info$Template.class b/build/_compileJava_2/net/minecraftforge/server/command/EnumArgument$Info$Template.class new file mode 100644 index 000000000..abc496172 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/server/command/EnumArgument$Info$Template.class differ diff --git a/build/_compileJava_2/net/minecraftforge/server/command/EnumArgument$Info.class b/build/_compileJava_2/net/minecraftforge/server/command/EnumArgument$Info.class new file mode 100644 index 000000000..95fca0d14 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/server/command/EnumArgument$Info.class differ diff --git a/build/_compileJava_2/net/minecraftforge/server/command/EnumArgument.class b/build/_compileJava_2/net/minecraftforge/server/command/EnumArgument.class new file mode 100644 index 000000000..ef7bb90ff Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/server/command/EnumArgument.class differ diff --git a/build/_compileJava_2/net/minecraftforge/server/command/ForgeCommand.class b/build/_compileJava_2/net/minecraftforge/server/command/ForgeCommand.class new file mode 100644 index 000000000..a14a63be6 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/server/command/ForgeCommand.class differ diff --git a/build/_compileJava_2/net/minecraftforge/server/command/GenerateCommand.class b/build/_compileJava_2/net/minecraftforge/server/command/GenerateCommand.class new file mode 100644 index 000000000..53cc63c3f Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/server/command/GenerateCommand.class differ diff --git a/build/_compileJava_2/net/minecraftforge/server/command/ModIdArgument.class b/build/_compileJava_2/net/minecraftforge/server/command/ModIdArgument.class new file mode 100644 index 000000000..9bcb7d38f Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/server/command/ModIdArgument.class differ diff --git a/build/_compileJava_2/net/minecraftforge/server/command/ModListCommand.class b/build/_compileJava_2/net/minecraftforge/server/command/ModListCommand.class new file mode 100644 index 000000000..6743d32cc Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/server/command/ModListCommand.class differ diff --git a/build/_compileJava_2/net/minecraftforge/server/command/TPSCommand.class b/build/_compileJava_2/net/minecraftforge/server/command/TPSCommand.class new file mode 100644 index 000000000..a4a08b84e Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/server/command/TPSCommand.class differ diff --git a/build/_compileJava_2/net/minecraftforge/server/command/TagsCommand.class b/build/_compileJava_2/net/minecraftforge/server/command/TagsCommand.class new file mode 100644 index 000000000..c4dc9723d Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/server/command/TagsCommand.class differ diff --git a/build/_compileJava_2/net/minecraftforge/server/command/TextComponentHelper.class b/build/_compileJava_2/net/minecraftforge/server/command/TextComponentHelper.class new file mode 100644 index 000000000..67b750b9e Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/server/command/TextComponentHelper.class differ diff --git a/build/_compileJava_2/net/minecraftforge/server/command/TrackCommand$ResetTrackingCommand.class b/build/_compileJava_2/net/minecraftforge/server/command/TrackCommand$ResetTrackingCommand.class new file mode 100644 index 000000000..f15ac2cb5 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/server/command/TrackCommand$ResetTrackingCommand.class differ diff --git a/build/_compileJava_2/net/minecraftforge/server/command/TrackCommand$StartTrackingCommand.class b/build/_compileJava_2/net/minecraftforge/server/command/TrackCommand$StartTrackingCommand.class new file mode 100644 index 000000000..688928524 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/server/command/TrackCommand$StartTrackingCommand.class differ diff --git a/build/_compileJava_2/net/minecraftforge/server/command/TrackCommand$TrackResults.class b/build/_compileJava_2/net/minecraftforge/server/command/TrackCommand$TrackResults.class new file mode 100644 index 000000000..c23176ead Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/server/command/TrackCommand$TrackResults.class differ diff --git a/build/_compileJava_2/net/minecraftforge/server/command/TrackCommand$TrackResultsBlockEntity.class b/build/_compileJava_2/net/minecraftforge/server/command/TrackCommand$TrackResultsBlockEntity.class new file mode 100644 index 000000000..8e46801a1 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/server/command/TrackCommand$TrackResultsBlockEntity.class differ diff --git a/build/_compileJava_2/net/minecraftforge/server/command/TrackCommand$TrackResultsEntity.class b/build/_compileJava_2/net/minecraftforge/server/command/TrackCommand$TrackResultsEntity.class new file mode 100644 index 000000000..2d5c343e4 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/server/command/TrackCommand$TrackResultsEntity.class differ diff --git a/build/_compileJava_2/net/minecraftforge/server/command/TrackCommand.class b/build/_compileJava_2/net/minecraftforge/server/command/TrackCommand.class new file mode 100644 index 000000000..b20186e37 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/server/command/TrackCommand.class differ diff --git a/build/_compileJava_2/net/minecraftforge/server/command/package-info.class b/build/_compileJava_2/net/minecraftforge/server/command/package-info.class new file mode 100644 index 000000000..5e93b3fb7 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/server/command/package-info.class differ diff --git a/build/_compileJava_2/net/minecraftforge/server/console/ConsoleCommandCompleter.class b/build/_compileJava_2/net/minecraftforge/server/console/ConsoleCommandCompleter.class new file mode 100644 index 000000000..5ba5cb68f Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/server/console/ConsoleCommandCompleter.class differ diff --git a/build/_compileJava_2/net/minecraftforge/server/console/TerminalHandler.class b/build/_compileJava_2/net/minecraftforge/server/console/TerminalHandler.class new file mode 100644 index 000000000..6314419ab Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/server/console/TerminalHandler.class differ diff --git a/build/_compileJava_2/net/minecraftforge/server/loading/ServerModLoader.class b/build/_compileJava_2/net/minecraftforge/server/loading/ServerModLoader.class new file mode 100644 index 000000000..c32430899 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/server/loading/ServerModLoader.class differ diff --git a/build/_compileJava_2/net/minecraftforge/server/permission/PermissionAPI.class b/build/_compileJava_2/net/minecraftforge/server/permission/PermissionAPI.class new file mode 100644 index 000000000..972430536 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/server/permission/PermissionAPI.class differ diff --git a/build/_compileJava_2/net/minecraftforge/server/permission/events/PermissionGatherEvent$Handler.class b/build/_compileJava_2/net/minecraftforge/server/permission/events/PermissionGatherEvent$Handler.class new file mode 100644 index 000000000..7e513ea5e Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/server/permission/events/PermissionGatherEvent$Handler.class differ diff --git a/build/_compileJava_2/net/minecraftforge/server/permission/events/PermissionGatherEvent$Nodes.class b/build/_compileJava_2/net/minecraftforge/server/permission/events/PermissionGatherEvent$Nodes.class new file mode 100644 index 000000000..66ea456f6 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/server/permission/events/PermissionGatherEvent$Nodes.class differ diff --git a/build/_compileJava_2/net/minecraftforge/server/permission/events/PermissionGatherEvent.class b/build/_compileJava_2/net/minecraftforge/server/permission/events/PermissionGatherEvent.class new file mode 100644 index 000000000..bad61da53 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/server/permission/events/PermissionGatherEvent.class differ diff --git a/build/_compileJava_2/net/minecraftforge/server/permission/exceptions/UnregisteredPermissionException.class b/build/_compileJava_2/net/minecraftforge/server/permission/exceptions/UnregisteredPermissionException.class new file mode 100644 index 000000000..268946560 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/server/permission/exceptions/UnregisteredPermissionException.class differ diff --git a/build/_compileJava_2/net/minecraftforge/server/permission/handler/DefaultPermissionHandler.class b/build/_compileJava_2/net/minecraftforge/server/permission/handler/DefaultPermissionHandler.class new file mode 100644 index 000000000..47bcc15b6 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/server/permission/handler/DefaultPermissionHandler.class differ diff --git a/build/_compileJava_2/net/minecraftforge/server/permission/handler/IPermissionHandler.class b/build/_compileJava_2/net/minecraftforge/server/permission/handler/IPermissionHandler.class new file mode 100644 index 000000000..7594460c1 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/server/permission/handler/IPermissionHandler.class differ diff --git a/build/_compileJava_2/net/minecraftforge/server/permission/handler/IPermissionHandlerFactory.class b/build/_compileJava_2/net/minecraftforge/server/permission/handler/IPermissionHandlerFactory.class new file mode 100644 index 000000000..72fa25fe6 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/server/permission/handler/IPermissionHandlerFactory.class differ diff --git a/build/_compileJava_2/net/minecraftforge/server/permission/nodes/PermissionDynamicContext.class b/build/_compileJava_2/net/minecraftforge/server/permission/nodes/PermissionDynamicContext.class new file mode 100644 index 000000000..a99d62bd9 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/server/permission/nodes/PermissionDynamicContext.class differ diff --git a/build/_compileJava_2/net/minecraftforge/server/permission/nodes/PermissionDynamicContextKey.class b/build/_compileJava_2/net/minecraftforge/server/permission/nodes/PermissionDynamicContextKey.class new file mode 100644 index 000000000..c3a1537b3 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/server/permission/nodes/PermissionDynamicContextKey.class differ diff --git a/build/_compileJava_2/net/minecraftforge/server/permission/nodes/PermissionNode$PermissionResolver.class b/build/_compileJava_2/net/minecraftforge/server/permission/nodes/PermissionNode$PermissionResolver.class new file mode 100644 index 000000000..85d3faecd Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/server/permission/nodes/PermissionNode$PermissionResolver.class differ diff --git a/build/_compileJava_2/net/minecraftforge/server/permission/nodes/PermissionNode.class b/build/_compileJava_2/net/minecraftforge/server/permission/nodes/PermissionNode.class new file mode 100644 index 000000000..e3f71bddf Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/server/permission/nodes/PermissionNode.class differ diff --git a/build/_compileJava_2/net/minecraftforge/server/permission/nodes/PermissionType.class b/build/_compileJava_2/net/minecraftforge/server/permission/nodes/PermissionType.class new file mode 100644 index 000000000..b5425b892 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/server/permission/nodes/PermissionType.class differ diff --git a/build/_compileJava_2/net/minecraftforge/server/permission/nodes/PermissionTypes.class b/build/_compileJava_2/net/minecraftforge/server/permission/nodes/PermissionTypes.class new file mode 100644 index 000000000..669dad89a Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/server/permission/nodes/PermissionTypes.class differ diff --git a/build/_compileJava_2/net/minecraftforge/server/permission/package-info.class b/build/_compileJava_2/net/minecraftforge/server/permission/package-info.class new file mode 100644 index 000000000..0019d1759 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/server/permission/package-info.class differ diff --git a/build/_compileJava_2/net/minecraftforge/server/timings/ForgeTimings.class b/build/_compileJava_2/net/minecraftforge/server/timings/ForgeTimings.class new file mode 100644 index 000000000..e06365db5 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/server/timings/ForgeTimings.class differ diff --git a/build/_compileJava_2/net/minecraftforge/server/timings/TimeTracker.class b/build/_compileJava_2/net/minecraftforge/server/timings/TimeTracker.class new file mode 100644 index 000000000..8d4db6c02 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/server/timings/TimeTracker.class differ diff --git a/build/_compileJava_2/net/minecraftforge/versions/forge/ForgeVersion.class b/build/_compileJava_2/net/minecraftforge/versions/forge/ForgeVersion.class new file mode 100644 index 000000000..17c5c26bf Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/versions/forge/ForgeVersion.class differ diff --git a/build/_compileJava_2/net/minecraftforge/versions/mcp/MCPVersion.class b/build/_compileJava_2/net/minecraftforge/versions/mcp/MCPVersion.class new file mode 100644 index 000000000..962144e91 Binary files /dev/null and b/build/_compileJava_2/net/minecraftforge/versions/mcp/MCPVersion.class differ diff --git a/build/_compileJava_3/mcp/client/Start.class b/build/_compileJava_3/mcp/client/Start.class new file mode 100644 index 000000000..dfc37723a Binary files /dev/null and b/build/_compileJava_3/mcp/client/Start.class differ diff --git a/build/classes/java/main/net/mcreator/customoregen/CustomOreGenMod.class b/build/classes/java/main/net/mcreator/customoregen/CustomOreGenMod.class new file mode 100644 index 000000000..64e885207 Binary files /dev/null and b/build/classes/java/main/net/mcreator/customoregen/CustomOreGenMod.class differ diff --git a/build/classes/java/main/net/mcreator/customoregen/block/ConcentratedcoaloreBlock.class b/build/classes/java/main/net/mcreator/customoregen/block/ConcentratedcoaloreBlock.class new file mode 100644 index 000000000..5cb9d730d Binary files /dev/null and b/build/classes/java/main/net/mcreator/customoregen/block/ConcentratedcoaloreBlock.class differ diff --git a/build/classes/java/main/net/mcreator/customoregen/block/ConcentrateddiamondoreBlock.class b/build/classes/java/main/net/mcreator/customoregen/block/ConcentrateddiamondoreBlock.class new file mode 100644 index 000000000..ba0f148d0 Binary files /dev/null and b/build/classes/java/main/net/mcreator/customoregen/block/ConcentrateddiamondoreBlock.class differ diff --git a/build/classes/java/main/net/mcreator/customoregen/block/CopperhighoreBlock.class b/build/classes/java/main/net/mcreator/customoregen/block/CopperhighoreBlock.class new file mode 100644 index 000000000..44ae2dc7e Binary files /dev/null and b/build/classes/java/main/net/mcreator/customoregen/block/CopperhighoreBlock.class differ diff --git a/build/classes/java/main/net/mcreator/customoregen/block/CopperloweroreBlock.class b/build/classes/java/main/net/mcreator/customoregen/block/CopperloweroreBlock.class new file mode 100644 index 000000000..53430a0d2 Binary files /dev/null and b/build/classes/java/main/net/mcreator/customoregen/block/CopperloweroreBlock.class differ diff --git a/build/classes/java/main/net/mcreator/customoregen/block/DeepslateironoreBlock.class b/build/classes/java/main/net/mcreator/customoregen/block/DeepslateironoreBlock.class new file mode 100644 index 000000000..3dc98d960 Binary files /dev/null and b/build/classes/java/main/net/mcreator/customoregen/block/DeepslateironoreBlock.class differ diff --git a/build/classes/java/main/net/mcreator/customoregen/block/DeepslatelapisoreBlock.class b/build/classes/java/main/net/mcreator/customoregen/block/DeepslatelapisoreBlock.class new file mode 100644 index 000000000..3b0ae6ff3 Binary files /dev/null and b/build/classes/java/main/net/mcreator/customoregen/block/DeepslatelapisoreBlock.class differ diff --git a/build/classes/java/main/net/mcreator/customoregen/block/DeepslatepuregoldenoreBlock.class b/build/classes/java/main/net/mcreator/customoregen/block/DeepslatepuregoldenoreBlock.class new file mode 100644 index 000000000..4482592b6 Binary files /dev/null and b/build/classes/java/main/net/mcreator/customoregen/block/DeepslatepuregoldenoreBlock.class differ diff --git a/build/classes/java/main/net/mcreator/customoregen/block/DeepslateredstoneoreBlock.class b/build/classes/java/main/net/mcreator/customoregen/block/DeepslateredstoneoreBlock.class new file mode 100644 index 000000000..8f5c348a9 Binary files /dev/null and b/build/classes/java/main/net/mcreator/customoregen/block/DeepslateredstoneoreBlock.class differ diff --git a/build/classes/java/main/net/mcreator/customoregen/block/DeepslatesharddiamondoreBlock.class b/build/classes/java/main/net/mcreator/customoregen/block/DeepslatesharddiamondoreBlock.class new file mode 100644 index 000000000..3c6a72a77 Binary files /dev/null and b/build/classes/java/main/net/mcreator/customoregen/block/DeepslatesharddiamondoreBlock.class differ diff --git a/build/classes/java/main/net/mcreator/customoregen/block/HighemeraldoreBlock.class b/build/classes/java/main/net/mcreator/customoregen/block/HighemeraldoreBlock.class new file mode 100644 index 000000000..547e904d0 Binary files /dev/null and b/build/classes/java/main/net/mcreator/customoregen/block/HighemeraldoreBlock.class differ diff --git a/build/classes/java/main/net/mcreator/customoregen/block/IronoreBlock.class b/build/classes/java/main/net/mcreator/customoregen/block/IronoreBlock.class new file mode 100644 index 000000000..7b989f03a Binary files /dev/null and b/build/classes/java/main/net/mcreator/customoregen/block/IronoreBlock.class differ diff --git a/build/classes/java/main/net/mcreator/customoregen/block/LapisoreBlock.class b/build/classes/java/main/net/mcreator/customoregen/block/LapisoreBlock.class new file mode 100644 index 000000000..6086d8e1c Binary files /dev/null and b/build/classes/java/main/net/mcreator/customoregen/block/LapisoreBlock.class differ diff --git a/build/classes/java/main/net/mcreator/customoregen/block/LoweremeraldoreBlock.class b/build/classes/java/main/net/mcreator/customoregen/block/LoweremeraldoreBlock.class new file mode 100644 index 000000000..fe598974a Binary files /dev/null and b/build/classes/java/main/net/mcreator/customoregen/block/LoweremeraldoreBlock.class differ diff --git a/build/classes/java/main/net/mcreator/customoregen/block/PuregoldenoreBlock.class b/build/classes/java/main/net/mcreator/customoregen/block/PuregoldenoreBlock.class new file mode 100644 index 000000000..ca41a3090 Binary files /dev/null and b/build/classes/java/main/net/mcreator/customoregen/block/PuregoldenoreBlock.class differ diff --git a/build/classes/java/main/net/mcreator/customoregen/block/RedstoneoreBlock.class b/build/classes/java/main/net/mcreator/customoregen/block/RedstoneoreBlock.class new file mode 100644 index 000000000..08dcebb75 Binary files /dev/null and b/build/classes/java/main/net/mcreator/customoregen/block/RedstoneoreBlock.class differ diff --git a/build/classes/java/main/net/mcreator/customoregen/block/SharddiamondblockoreBlock.class b/build/classes/java/main/net/mcreator/customoregen/block/SharddiamondblockoreBlock.class new file mode 100644 index 000000000..53329d849 Binary files /dev/null and b/build/classes/java/main/net/mcreator/customoregen/block/SharddiamondblockoreBlock.class differ diff --git a/build/classes/java/main/net/mcreator/customoregen/config/ConfigHelper.class b/build/classes/java/main/net/mcreator/customoregen/config/ConfigHelper.class new file mode 100644 index 000000000..749f0fe15 Binary files /dev/null and b/build/classes/java/main/net/mcreator/customoregen/config/ConfigHelper.class differ diff --git a/build/classes/java/main/net/mcreator/customoregen/config/ModConfigs$DropsConfig.class b/build/classes/java/main/net/mcreator/customoregen/config/ModConfigs$DropsConfig.class new file mode 100644 index 000000000..6ccf83868 Binary files /dev/null and b/build/classes/java/main/net/mcreator/customoregen/config/ModConfigs$DropsConfig.class differ diff --git a/build/classes/java/main/net/mcreator/customoregen/config/ModConfigs$FeatureToggleConfig.class b/build/classes/java/main/net/mcreator/customoregen/config/ModConfigs$FeatureToggleConfig.class new file mode 100644 index 000000000..362441638 Binary files /dev/null and b/build/classes/java/main/net/mcreator/customoregen/config/ModConfigs$FeatureToggleConfig.class differ diff --git a/build/classes/java/main/net/mcreator/customoregen/config/ModConfigs$OreGenConfig.class b/build/classes/java/main/net/mcreator/customoregen/config/ModConfigs$OreGenConfig.class new file mode 100644 index 000000000..b65fb0e3e Binary files /dev/null and b/build/classes/java/main/net/mcreator/customoregen/config/ModConfigs$OreGenConfig.class differ diff --git a/build/classes/java/main/net/mcreator/customoregen/config/ModConfigs$ToolStatsConfig.class b/build/classes/java/main/net/mcreator/customoregen/config/ModConfigs$ToolStatsConfig.class new file mode 100644 index 000000000..5e895ae66 Binary files /dev/null and b/build/classes/java/main/net/mcreator/customoregen/config/ModConfigs$ToolStatsConfig.class differ diff --git a/build/classes/java/main/net/mcreator/customoregen/config/ModConfigs.class b/build/classes/java/main/net/mcreator/customoregen/config/ModConfigs.class new file mode 100644 index 000000000..fbd8d2966 Binary files /dev/null and b/build/classes/java/main/net/mcreator/customoregen/config/ModConfigs.class differ diff --git a/build/classes/java/main/net/mcreator/customoregen/init/CustomOreGenModBlocks.class b/build/classes/java/main/net/mcreator/customoregen/init/CustomOreGenModBlocks.class new file mode 100644 index 000000000..36a5d3412 Binary files /dev/null and b/build/classes/java/main/net/mcreator/customoregen/init/CustomOreGenModBlocks.class differ diff --git a/build/classes/java/main/net/mcreator/customoregen/init/CustomOreGenModItems.class b/build/classes/java/main/net/mcreator/customoregen/init/CustomOreGenModItems.class new file mode 100644 index 000000000..6ec9f3c99 Binary files /dev/null and b/build/classes/java/main/net/mcreator/customoregen/init/CustomOreGenModItems.class differ diff --git a/build/classes/java/main/net/mcreator/customoregen/init/CustomOreGenModTabs.class b/build/classes/java/main/net/mcreator/customoregen/init/CustomOreGenModTabs.class new file mode 100644 index 000000000..629f2bd65 Binary files /dev/null and b/build/classes/java/main/net/mcreator/customoregen/init/CustomOreGenModTabs.class differ diff --git a/build/classes/java/main/net/mcreator/customoregen/item/DiamondshardItem.class b/build/classes/java/main/net/mcreator/customoregen/item/DiamondshardItem.class new file mode 100644 index 000000000..f8cc54fd0 Binary files /dev/null and b/build/classes/java/main/net/mcreator/customoregen/item/DiamondshardItem.class differ diff --git a/build/classes/java/main/net/mcreator/customoregen/item/SharddiamondaxeItem$1.class b/build/classes/java/main/net/mcreator/customoregen/item/SharddiamondaxeItem$1.class new file mode 100644 index 000000000..f4fc8b973 Binary files /dev/null and b/build/classes/java/main/net/mcreator/customoregen/item/SharddiamondaxeItem$1.class differ diff --git a/build/classes/java/main/net/mcreator/customoregen/item/SharddiamondaxeItem.class b/build/classes/java/main/net/mcreator/customoregen/item/SharddiamondaxeItem.class new file mode 100644 index 000000000..d4052e61f Binary files /dev/null and b/build/classes/java/main/net/mcreator/customoregen/item/SharddiamondaxeItem.class differ diff --git a/build/classes/java/main/net/mcreator/customoregen/item/SharddiamondpickaxeItem$1.class b/build/classes/java/main/net/mcreator/customoregen/item/SharddiamondpickaxeItem$1.class new file mode 100644 index 000000000..87784a602 Binary files /dev/null and b/build/classes/java/main/net/mcreator/customoregen/item/SharddiamondpickaxeItem$1.class differ diff --git a/build/classes/java/main/net/mcreator/customoregen/item/SharddiamondpickaxeItem.class b/build/classes/java/main/net/mcreator/customoregen/item/SharddiamondpickaxeItem.class new file mode 100644 index 000000000..aebdf8d59 Binary files /dev/null and b/build/classes/java/main/net/mcreator/customoregen/item/SharddiamondpickaxeItem.class differ diff --git a/build/classes/java/main/net/mcreator/customoregen/item/SharddiamondshovelItem$1.class b/build/classes/java/main/net/mcreator/customoregen/item/SharddiamondshovelItem$1.class new file mode 100644 index 000000000..a63662113 Binary files /dev/null and b/build/classes/java/main/net/mcreator/customoregen/item/SharddiamondshovelItem$1.class differ diff --git a/build/classes/java/main/net/mcreator/customoregen/item/SharddiamondshovelItem.class b/build/classes/java/main/net/mcreator/customoregen/item/SharddiamondshovelItem.class new file mode 100644 index 000000000..39142f0c7 Binary files /dev/null and b/build/classes/java/main/net/mcreator/customoregen/item/SharddiamondshovelItem.class differ diff --git a/build/classes/java/main/net/mcreator/customoregen/procedures/ConfigurableOreDropsProcedure.class b/build/classes/java/main/net/mcreator/customoregen/procedures/ConfigurableOreDropsProcedure.class new file mode 100644 index 000000000..f0ab46102 Binary files /dev/null and b/build/classes/java/main/net/mcreator/customoregen/procedures/ConfigurableOreDropsProcedure.class differ diff --git a/build/classes/java/main/net/mcreator/customoregen/procedures/OreexperienceProcedure.class b/build/classes/java/main/net/mcreator/customoregen/procedures/OreexperienceProcedure.class new file mode 100644 index 000000000..133aa4139 Binary files /dev/null and b/build/classes/java/main/net/mcreator/customoregen/procedures/OreexperienceProcedure.class differ diff --git a/build/classpath/runClient_minecraftClasspath.txt b/build/classpath/runClient_minecraftClasspath.txt new file mode 100644 index 000000000..47adecde6 --- /dev/null +++ b/build/classpath/runClient_minecraftClasspath.txt @@ -0,0 +1,116 @@ +C:\Users\polar\.mcreator\gradle\caches\forge_gradle\minecraft_user_repo\net\minecraftforge\forge\1.20.1-47.3.0_mapped_official_1.20.1\forge-1.20.1-47.3.0_mapped_official_1.20.1-recomp.jar +C:\Users\polar\.mcreator\gradle\caches\forge_gradle\minecraft_repo\versions\1.20.1\client-extra.jar +C:\Users\polar\.mcreator\gradle\caches\modules-2\files-2.1\net.minecraftforge\fmlearlydisplay\1.20.1-47.3.0\91e33682894f35862e9ce29d633e3258120952f0\fmlearlydisplay-1.20.1-47.3.0.jar +C:\Users\polar\.mcreator\gradle\caches\modules-2\files-2.1\net.minecraftforge\javafmllanguage\1.20.1-47.3.0\d7ebc62120f202109e300e084ca1a31a7b946a62\javafmllanguage-1.20.1-47.3.0.jar +C:\Users\polar\.mcreator\gradle\caches\modules-2\files-2.1\net.minecraftforge\lowcodelanguage\1.20.1-47.3.0\1bf3e845ea0ce750096da8c71c8364b188ab74d4\lowcodelanguage-1.20.1-47.3.0.jar +C:\Users\polar\.mcreator\gradle\caches\modules-2\files-2.1\net.minecraftforge\mclanguage\1.20.1-47.3.0\6093682e943ddccbabf70539319d7f2fe64db2e7\mclanguage-1.20.1-47.3.0.jar +C:\Users\polar\.mcreator\gradle\caches\modules-2\files-2.1\net.minecraftforge\fmlcore\1.20.1-47.3.0\3b6be96aba3e323f3c918e8ef6a96312d82d76ad\fmlcore-1.20.1-47.3.0.jar +C:\Users\polar\.mcreator\gradle\caches\modules-2\files-2.1\net.minecraftforge\fmlloader\1.20.1-47.3.0\547850469c8a336b4c60cb8619f6cd421e9e5f55\fmlloader-1.20.1-47.3.0.jar +C:\Users\polar\.mcreator\gradle\caches\modules-2\files-2.1\net.minecraftforge\JarJarSelector\0.3.19\376cc9c8ea60720cf027c01fc033de915699801c\JarJarSelector-0.3.19.jar +C:\Users\polar\.mcreator\gradle\caches\modules-2\files-2.1\net.minecraftforge\JarJarMetadata\0.3.19\83feaa9b770e6ac0e96ee4fc23fa89325c5fe2\JarJarMetadata-0.3.19.jar +C:\Users\polar\.mcreator\gradle\caches\modules-2\files-2.1\com.google.guava\guava\31.1-jre\60458f877d055d0c9114d9e1a2efb737b4bc282c\guava-31.1-jre.jar +C:\Users\polar\.mcreator\gradle\caches\modules-2\files-2.1\com.google.code.findbugs\jsr305\3.0.2\25ea2e8b0c338a877313bd4672d3fe056ea78f0d\jsr305-3.0.2.jar +C:\Users\polar\.mcreator\gradle\caches\modules-2\files-2.1\ca.weblite\java-objc-bridge\1.1\1227f9e0666314f9de41477e3ec277e542ed7f7b\java-objc-bridge-1.1.jar +C:\Users\polar\.mcreator\gradle\caches\modules-2\files-2.1\net.minecraftforge\forgespi\7.0.1\3b4972a0cdb135853dba219be61a79b22cff1309\forgespi-7.0.1.jar +C:\Users\polar\.mcreator\gradle\caches\modules-2\files-2.1\net.minecraftforge\mergetool\1.1.5\f3da18e12c696d35a47c82cbb2cc8b5aa15e1154\mergetool-1.1.5-api.jar +C:\Users\polar\.mcreator\gradle\caches\modules-2\files-2.1\org.jetbrains\annotations\24.0.1\13c5c75c4206580aa4d683bffee658caae6c9f43\annotations-24.0.1.jar +C:\Users\polar\.mcreator\gradle\caches\forge_gradle\mcp_repo\net\minecraft\mapping\1.20.1\mapping-1.20.1-mapping.zip +C:\Users\polar\.mcreator\gradle\caches\modules-2\files-2.1\net.minecraftforge\accesstransformers\8.0.4\272d240aa73f42195b2a68e2ebd8b701ecf41f63\accesstransformers-8.0.4.jar +C:\Users\polar\.mcreator\gradle\caches\modules-2\files-2.1\net.minecraftforge\eventbus\6.0.5\699143dd438431d06b57416944f7cedbe52e1475\eventbus-6.0.5.jar +C:\Users\polar\.mcreator\gradle\caches\modules-2\files-2.1\cpw.mods\modlauncher\10.0.9\6d9443f56f50bb85cea383686ff9c867391458b\modlauncher-10.0.9.jar +C:\Users\polar\.mcreator\gradle\caches\modules-2\files-2.1\cpw.mods\bootstraplauncher\1.1.2\c546e00443d8432cda6baa1c860346980742628\bootstraplauncher-1.1.2.jar +C:\Users\polar\.mcreator\gradle\caches\modules-2\files-2.1\cpw.mods\securejarhandler\2.1.10\51e6a22c6c716beb11e244bf5b8be480f51dd6b5\securejarhandler-2.1.10.jar +C:\Users\polar\.mcreator\gradle\caches\modules-2\files-2.1\net.minecraftforge\coremods\5.1.6\62fab3c3d59d37f8e15af311cb638c6f6123423\coremods-5.1.6.jar +C:\Users\polar\.mcreator\gradle\caches\modules-2\files-2.1\org.openjdk.nashorn\nashorn-core\15.3\43977e804697048fc8d81d333a36c17d07a5b3dd\nashorn-core-15.3.jar +C:\Users\polar\.mcreator\gradle\caches\modules-2\files-2.1\org.ow2.asm\asm-commons\9.7\e86dda4696d3c185fcc95d8d311904e7ce38a53f\asm-commons-9.7.jar +C:\Users\polar\.mcreator\gradle\caches\modules-2\files-2.1\org.ow2.asm\asm-util\9.7\c0655519f24d92af2202cb681cd7c1569df6ead6\asm-util-9.7.jar +C:\Users\polar\.mcreator\gradle\caches\modules-2\files-2.1\org.ow2.asm\asm-analysis\9.7\e4a258b7eb96107106c0599f0061cfc1832fe07a\asm-analysis-9.7.jar +C:\Users\polar\.mcreator\gradle\caches\modules-2\files-2.1\org.ow2.asm\asm-tree\9.7\e446a17b175bfb733b87c5c2560ccb4e57d69f1a\asm-tree-9.7.jar +C:\Users\polar\.mcreator\gradle\caches\modules-2\files-2.1\org.ow2.asm\asm\9.7\73d7b3086e14beb604ced229c302feff6449723\asm-9.7.jar +C:\Users\polar\.mcreator\gradle\caches\modules-2\files-2.1\org.antlr\antlr4\4.9.1\e92af8ab33e428461927b484e90bb155a4f3a052\antlr4-4.9.1.jar +C:\Users\polar\.mcreator\gradle\caches\modules-2\files-2.1\org.antlr\antlr4-runtime\4.9.1\428664f05d2b7f7b7610204b5aa7c1763f62011a\antlr4-runtime-4.9.1.jar +C:\Users\polar\.mcreator\gradle\caches\modules-2\files-2.1\net.minecraftforge\unsafe\0.2.0\54d7a0a5e8fdb71b973025caa46f341ae5904f39\unsafe-0.2.0.jar +C:\Users\polar\.mcreator\gradle\caches\modules-2\files-2.1\com.electronwill.night-config\toml\3.6.4\51d6cefb2b55ee55ee26b16391212fb2c7dfb4f4\toml-3.6.4.jar +C:\Users\polar\.mcreator\gradle\caches\modules-2\files-2.1\com.electronwill.night-config\core\3.6.4\510f174abbf1c947494db50ef2445683bd52c230\core-3.6.4.jar +C:\Users\polar\.mcreator\gradle\caches\modules-2\files-2.1\org.apache.maven\maven-artifact\3.8.5\4433f50c07debefaed0553bd0068f4f48d449313\maven-artifact-3.8.5.jar +C:\Users\polar\.mcreator\gradle\caches\modules-2\files-2.1\net.jodah\typetools\0.6.3\a01aaa6ddaea9ec07ec4f209487b7a46a526283a\typetools-0.6.3.jar +C:\Users\polar\.mcreator\gradle\caches\modules-2\files-2.1\net.minecrell\terminalconsoleappender\1.2.0\96d02cd3b384ff015a8fef4223bcb4ccf1717c95\terminalconsoleappender-1.2.0.jar +C:\Users\polar\.mcreator\gradle\caches\modules-2\files-2.1\org.jline\jline-reader\3.12.1\4382ab1382c7b6f379377ed5f665dc2f6e1218bc\jline-reader-3.12.1.jar +C:\Users\polar\.mcreator\gradle\caches\modules-2\files-2.1\org.jline\jline-terminal\3.12.1\c777448314e050d980a6b697c140f3bfe9eb7416\jline-terminal-3.12.1.jar +C:\Users\polar\.mcreator\gradle\caches\modules-2\files-2.1\org.spongepowered\mixin\0.8.5\9d1c0c3a304ae6697ecd477218fa61b850bf57fc\mixin-0.8.5.jar +C:\Users\polar\.mcreator\gradle\caches\modules-2\files-2.1\net.minecraftforge\JarJarFileSystems\0.3.19\2464eb7d6b9ddb9db36a82cf8a95193e5c6fe020\JarJarFileSystems-0.3.19.jar +C:\Users\polar\.mcreator\gradle\caches\modules-2\files-2.1\com.github.oshi\oshi-core\6.2.2\54f5efc19bca95d709d9a37d19ffcbba3d21c1a6\oshi-core-6.2.2.jar +C:\Users\polar\.mcreator\gradle\caches\modules-2\files-2.1\com.google.code.gson\gson\2.10\dd9b193aef96e973d5a11ab13cd17430c2e4306b\gson-2.10.jar +C:\Users\polar\.mcreator\gradle\caches\modules-2\files-2.1\com.google.guava\failureaccess\1.0.1\1dcf1de382a0bf95a3d8b0849546c88bac1292c9\failureaccess-1.0.1.jar +C:\Users\polar\.mcreator\gradle\caches\modules-2\files-2.1\com.ibm.icu\icu4j\71.1\9e7d3304c23f9ba5cb71915f7cce23231a57a445\icu4j-71.1.jar +C:\Users\polar\.mcreator\gradle\caches\modules-2\files-2.1\com.mojang\authlib\4.0.43\2ff9d747a77570a07a60d32ac77eb6162ad2a2d9\authlib-4.0.43.jar +C:\Users\polar\.mcreator\gradle\caches\modules-2\files-2.1\com.mojang\blocklist\1.0.10\5c685c5ffa94c4cd39496c7184c1d122e515ecef\blocklist-1.0.10.jar +C:\Users\polar\.mcreator\gradle\caches\modules-2\files-2.1\com.mojang\brigadier\1.1.8\5244ce82c3337bba4a196a3ce858bfaecc74404a\brigadier-1.1.8.jar +C:\Users\polar\.mcreator\gradle\caches\modules-2\files-2.1\com.mojang\datafixerupper\6.0.8\3ba4a30557a9b057760af4011f909ba619fc5125\datafixerupper-6.0.8.jar +C:\Users\polar\.mcreator\gradle\caches\modules-2\files-2.1\com.mojang\logging\1.1.1\832b8e6674a9b325a5175a3a6267dfaf34c85139\logging-1.1.1.jar +C:\Users\polar\.mcreator\gradle\caches\modules-2\files-2.1\com.mojang\patchy\2.2.10\da05971b07cbb379d002cf7eaec6a2048211fefc\patchy-2.2.10.jar +C:\Users\polar\.mcreator\gradle\caches\modules-2\files-2.1\com.mojang\text2speech\1.17.9\3cad216e3a7f0c19b4b394388bc9ffc446f13b14\text2speech-1.17.9.jar +C:\Users\polar\.mcreator\gradle\caches\modules-2\files-2.1\org.apache.httpcomponents\httpclient\4.5.13\e5f6cae5ca7ecaac1ec2827a9e2d65ae2869cada\httpclient-4.5.13.jar +C:\Users\polar\.mcreator\gradle\caches\modules-2\files-2.1\commons-codec\commons-codec\1.15\49d94806b6e3dc933dacbd8acb0fdbab8ebd1e5d\commons-codec-1.15.jar +C:\Users\polar\.mcreator\gradle\caches\modules-2\files-2.1\commons-io\commons-io\2.11.0\a2503f302b11ebde7ebc3df41daebe0e4eea3689\commons-io-2.11.0.jar +C:\Users\polar\.mcreator\gradle\caches\modules-2\files-2.1\commons-logging\commons-logging\1.2\4bfc12adfe4842bf07b657f0369c4cb522955686\commons-logging-1.2.jar +C:\Users\polar\.mcreator\gradle\caches\modules-2\files-2.1\io.netty\netty-handler\4.1.82.Final\644041d1fa96a5d3130a29e8978630d716d76e38\netty-handler-4.1.82.Final.jar +C:\Users\polar\.mcreator\gradle\caches\modules-2\files-2.1\io.netty\netty-codec\4.1.82.Final\b77200379acb345a9ffdece1c605e591ac3e4e0a\netty-codec-4.1.82.Final.jar +C:\Users\polar\.mcreator\gradle\caches\modules-2\files-2.1\io.netty\netty-transport-classes-epoll\4.1.82.Final\e7c7dd18deac93105797f30057c912651ea76521\netty-transport-classes-epoll-4.1.82.Final.jar +C:\Users\polar\.mcreator\gradle\caches\modules-2\files-2.1\io.netty\netty-transport-native-unix-common\4.1.82.Final\3e895b35ca1b8a0eca56cacff4c2dde5d2c6abce\netty-transport-native-unix-common-4.1.82.Final.jar +C:\Users\polar\.mcreator\gradle\caches\modules-2\files-2.1\io.netty\netty-transport\4.1.82.Final\e431a218d91acb6476ccad5f5aafde50aa3945ca\netty-transport-4.1.82.Final.jar +C:\Users\polar\.mcreator\gradle\caches\modules-2\files-2.1\io.netty\netty-buffer\4.1.82.Final\a544270cf1ae8b8077082f5036436a9a9971ea71\netty-buffer-4.1.82.Final.jar +C:\Users\polar\.mcreator\gradle\caches\modules-2\files-2.1\io.netty\netty-resolver\4.1.82.Final\38f665ae8dcd29032eea31245ba7806bed2e0fa8\netty-resolver-4.1.82.Final.jar +C:\Users\polar\.mcreator\gradle\caches\modules-2\files-2.1\io.netty\netty-common\4.1.82.Final\22d148e85c3f5ebdacc0ce1f5aabb1d420f73f3\netty-common-4.1.82.Final.jar +C:\Users\polar\.mcreator\gradle\caches\modules-2\files-2.1\it.unimi.dsi\fastutil\8.5.9\bb7ea75ecdb216654237830b3a96d87ad91f8cc5\fastutil-8.5.9.jar +C:\Users\polar\.mcreator\gradle\caches\modules-2\files-2.1\net.java.dev.jna\jna-platform\5.12.1\97406a297c852f4a41e688a176ec675f72e8329\jna-platform-5.12.1.jar +C:\Users\polar\.mcreator\gradle\caches\modules-2\files-2.1\net.java.dev.jna\jna\5.12.1\b1e93a735caea94f503e95e6fe79bf9cdc1e985d\jna-5.12.1.jar +C:\Users\polar\.mcreator\gradle\caches\modules-2\files-2.1\net.sf.jopt-simple\jopt-simple\5.0.4\4fdac2fbe92dfad86aa6e9301736f6b4342a3f5c\jopt-simple-5.0.4.jar +C:\Users\polar\.mcreator\gradle\caches\modules-2\files-2.1\org.apache.commons\commons-compress\1.21\4ec95b60d4e86b5c95a0e919cb172a0af98011ef\commons-compress-1.21.jar +C:\Users\polar\.mcreator\gradle\caches\modules-2\files-2.1\org.apache.commons\commons-lang3\3.12.0\c6842c86792ff03b9f1d1fe2aab8dc23aa6c6f0e\commons-lang3-3.12.0.jar +C:\Users\polar\.mcreator\gradle\caches\modules-2\files-2.1\org.apache.httpcomponents\httpcore\4.4.15\7f2e0c573eaa7a74bac2e89b359e1f73d92a0a1d\httpcore-4.4.15.jar +C:\Users\polar\.mcreator\gradle\caches\modules-2\files-2.1\org.apache.logging.log4j\log4j-core\2.19.0\3b6eeb4de4c49c0fe38a4ee27188ff5fee44d0bb\log4j-core-2.19.0.jar +C:\Users\polar\.mcreator\gradle\caches\modules-2\files-2.1\org.apache.logging.log4j\log4j-slf4j2-impl\2.19.0\5c04bfdd63ce9dceb2e284b81e96b6a70010ee10\log4j-slf4j2-impl-2.19.0.jar +C:\Users\polar\.mcreator\gradle\caches\modules-2\files-2.1\org.apache.logging.log4j\log4j-api\2.19.0\ea1b37f38c327596b216542bc636cfdc0b8036fa\log4j-api-2.19.0.jar +C:\Users\polar\.mcreator\gradle\caches\modules-2\files-2.1\org.joml\joml\1.10.5\22566d58af70ad3d72308bab63b8339906deb649\joml-1.10.5.jar +C:\Users\polar\.mcreator\gradle\caches\modules-2\files-2.1\org.lwjgl\lwjgl-glfw\3.3.1\cbac1b8d30cb4795149c1ef540f912671a8616d0\lwjgl-glfw-3.3.1.jar +C:\Users\polar\.mcreator\gradle\caches\modules-2\files-2.1\org.lwjgl\lwjgl-glfw\3.3.1\ed892f945cf7e79c8756796f32d00fa4ceaf573b\lwjgl-glfw-3.3.1-natives-windows.jar +C:\Users\polar\.mcreator\gradle\caches\modules-2\files-2.1\org.lwjgl\lwjgl-glfw\3.3.1\beda65ee503443e60aa196d58ed31f8d001dc22a\lwjgl-glfw-3.3.1-natives-windows-arm64.jar +C:\Users\polar\.mcreator\gradle\caches\modules-2\files-2.1\org.lwjgl\lwjgl-glfw\3.3.1\b997e3391d6ce8f05487e7335d95c606043884a1\lwjgl-glfw-3.3.1-natives-windows-x86.jar +C:\Users\polar\.mcreator\gradle\caches\modules-2\files-2.1\org.lwjgl\lwjgl-jemalloc\3.3.1\a817bcf213db49f710603677457567c37d53e103\lwjgl-jemalloc-3.3.1.jar +C:\Users\polar\.mcreator\gradle\caches\modules-2\files-2.1\org.lwjgl\lwjgl-jemalloc\3.3.1\948a89b76a16aa324b046ae9308891216ffce5f9\lwjgl-jemalloc-3.3.1-natives-windows.jar +C:\Users\polar\.mcreator\gradle\caches\modules-2\files-2.1\org.lwjgl\lwjgl-jemalloc\3.3.1\cae85c4edb219c88b6a0c26a87955ad98dc9519d\lwjgl-jemalloc-3.3.1-natives-windows-arm64.jar +C:\Users\polar\.mcreator\gradle\caches\modules-2\files-2.1\org.lwjgl\lwjgl-jemalloc\3.3.1\fb476c8ec110e1c137ad3ce8a7f7bfe6b11c6324\lwjgl-jemalloc-3.3.1-natives-windows-x86.jar +C:\Users\polar\.mcreator\gradle\caches\modules-2\files-2.1\org.lwjgl\lwjgl-openal\3.3.1\2623a6b8ae1dfcd880738656a9f0243d2e6840bd\lwjgl-openal-3.3.1.jar +C:\Users\polar\.mcreator\gradle\caches\modules-2\files-2.1\org.lwjgl\lwjgl-openal\3.3.1\30a474d0e57193d7bc128849a3ab66bc9316fdb1\lwjgl-openal-3.3.1-natives-windows.jar +C:\Users\polar\.mcreator\gradle\caches\modules-2\files-2.1\org.lwjgl\lwjgl-openal\3.3.1\40d65f1a7368a2aa47336f9cb69f5a190cf9975a\lwjgl-openal-3.3.1-natives-windows-arm64.jar +C:\Users\polar\.mcreator\gradle\caches\modules-2\files-2.1\org.lwjgl\lwjgl-openal\3.3.1\888349f7b1be6fbae58bf8edfb9ef12def04c4e3\lwjgl-openal-3.3.1-natives-windows-x86.jar +C:\Users\polar\.mcreator\gradle\caches\modules-2\files-2.1\org.lwjgl\lwjgl-opengl\3.3.1\831a5533a21a5f4f81bbc51bb13e9899319b5411\lwjgl-opengl-3.3.1.jar +C:\Users\polar\.mcreator\gradle\caches\modules-2\files-2.1\org.lwjgl\lwjgl-opengl\3.3.1\c1807e9bd571402787d7e37e3029776ae2513bb8\lwjgl-opengl-3.3.1-natives-windows.jar +C:\Users\polar\.mcreator\gradle\caches\modules-2\files-2.1\org.lwjgl\lwjgl-opengl\3.3.1\527d78f1e9056aff3ed02ce93019c73c5e8f1721\lwjgl-opengl-3.3.1-natives-windows-arm64.jar +C:\Users\polar\.mcreator\gradle\caches\modules-2\files-2.1\org.lwjgl\lwjgl-opengl\3.3.1\deef3eb9b178ff2ff3ce893cc72ae741c3a17974\lwjgl-opengl-3.3.1-natives-windows-x86.jar +C:\Users\polar\.mcreator\gradle\caches\modules-2\files-2.1\org.lwjgl\lwjgl-stb\3.3.1\b119297cf8ed01f247abe8685857f8e7fcf5980f\lwjgl-stb-3.3.1.jar +C:\Users\polar\.mcreator\gradle\caches\modules-2\files-2.1\org.lwjgl\lwjgl-stb\3.3.1\86315914ac119efdb02dc9e8e978ade84f1702af\lwjgl-stb-3.3.1-natives-windows.jar +C:\Users\polar\.mcreator\gradle\caches\modules-2\files-2.1\org.lwjgl\lwjgl-stb\3.3.1\fde63cdd2605c00636721a6c8b961e41d1f6b247\lwjgl-stb-3.3.1-natives-windows-arm64.jar +C:\Users\polar\.mcreator\gradle\caches\modules-2\files-2.1\org.lwjgl\lwjgl-stb\3.3.1\a8d41f419eecb430b7c91ea2ce2c5c451cae2091\lwjgl-stb-3.3.1-natives-windows-x86.jar +C:\Users\polar\.mcreator\gradle\caches\modules-2\files-2.1\org.lwjgl\lwjgl-tinyfd\3.3.1\ff1914111ef2e3e0110ef2dabc8d8cdaad82347\lwjgl-tinyfd-3.3.1.jar +C:\Users\polar\.mcreator\gradle\caches\modules-2\files-2.1\org.lwjgl\lwjgl-tinyfd\3.3.1\a5d830475ec0958d9fdba1559efa99aef211e6ff\lwjgl-tinyfd-3.3.1-natives-windows.jar +C:\Users\polar\.mcreator\gradle\caches\modules-2\files-2.1\org.lwjgl\lwjgl-tinyfd\3.3.1\83a5e780df610829ff3a737822b4f931cffecd91\lwjgl-tinyfd-3.3.1-natives-windows-arm64.jar +C:\Users\polar\.mcreator\gradle\caches\modules-2\files-2.1\org.lwjgl\lwjgl-tinyfd\3.3.1\842eedd876fae354abc308c98a263f6bbc9e8a4d\lwjgl-tinyfd-3.3.1-natives-windows-x86.jar +C:\Users\polar\.mcreator\gradle\caches\modules-2\files-2.1\org.lwjgl\lwjgl\3.3.1\ae58664f88e18a9bb2c77b063833ca7aaec484cb\lwjgl-3.3.1.jar +C:\Users\polar\.mcreator\gradle\caches\modules-2\files-2.1\org.lwjgl\lwjgl\3.3.1\36c37f16ab611b3aa11f3bcf80b1d509b4ce6b\lwjgl-3.3.1-natives-windows.jar +C:\Users\polar\.mcreator\gradle\caches\modules-2\files-2.1\org.lwjgl\lwjgl\3.3.1\f46cadcf95675908fd3a550d63d9d709cb68998\lwjgl-3.3.1-natives-windows-arm64.jar +C:\Users\polar\.mcreator\gradle\caches\modules-2\files-2.1\org.lwjgl\lwjgl\3.3.1\3b14f4beae9dd39791ec9e12190a9380cd8a3ce6\lwjgl-3.3.1-natives-windows-x86.jar +C:\Users\polar\.mcreator\gradle\caches\modules-2\files-2.1\com.machinezoo.noexception\noexception\1.7.1\b65330c98e38a1f915fa54a6e5eca496505e3f0a\noexception-1.7.1.jar +C:\Users\polar\.mcreator\gradle\caches\modules-2\files-2.1\org.slf4j\slf4j-simple\1.7.30\e606eac955f55ecf1d8edcccba04eb8ac98088dd\slf4j-simple-1.7.30.jar +C:\Users\polar\.mcreator\gradle\caches\modules-2\files-2.1\org.slf4j\slf4j-api\2.0.1\f48d81adce2abf5ad3cfe463df517952749e03bc\slf4j-api-2.0.1.jar +C:\Users\polar\.mcreator\gradle\caches\modules-2\files-2.1\net.minecraftforge\srgutils\0.4.11\fbad1341ffdb47d276bbdc40ecb06da49e053e74\srgutils-0.4.11.jar +C:\Users\polar\.mcreator\gradle\caches\modules-2\files-2.1\org.codehaus.plexus\plexus-utils\3.3.0\cf43b5391de623b36fe066a21127baef82c64022\plexus-utils-3.3.0.jar +C:\Users\polar\.mcreator\gradle\caches\modules-2\files-2.1\com.google.guava\listenablefuture\9999.0-empty-to-avoid-conflict-with-guava\b421526c5f297295adef1c886e5246c39d4ac629\listenablefuture-9999.0-empty-to-avoid-conflict-with-guava.jar +C:\Users\polar\.mcreator\gradle\caches\modules-2\files-2.1\org.checkerframework\checker-qual\3.12.0\d5692f0526415fcc6de94bb5bfbd3afd9dd3b3e5\checker-qual-3.12.0.jar +C:\Users\polar\.mcreator\gradle\caches\modules-2\files-2.1\com.google.errorprone\error_prone_annotations\2.11.0\c5a0ace696d3f8b1c1d8cc036d8c03cc0cbe6b69\error_prone_annotations-2.11.0.jar +C:\Users\polar\.mcreator\gradle\caches\modules-2\files-2.1\com.google.j2objc\j2objc-annotations\1.3\ba035118bc8bac37d7eff77700720999acd9986d\j2objc-annotations-1.3.jar +C:\Users\polar\.mcreator\gradle\caches\modules-2\files-2.1\org.antlr\ST4\4.3\92f2c1ad8d84abcbeead6cf7f2c53a04166293c2\ST4-4.3.jar +C:\Users\polar\.mcreator\gradle\caches\modules-2\files-2.1\org.antlr\antlr-runtime\3.5.2\cd9cd41361c155f3af0f653009dcecb08d8b4afd\antlr-runtime-3.5.2.jar +C:\Users\polar\.mcreator\gradle\caches\modules-2\files-2.1\org.abego.treelayout\org.abego.treelayout.core\1.0.3\457216e8e6578099ae63667bb1e4439235892028\org.abego.treelayout.core-1.0.3.jar +C:\Users\polar\.mcreator\gradle\caches\modules-2\files-2.1\org.glassfish\javax.json\1.0.4\3178f73569fd7a1e5ffc464e680f7a8cc784b85a\javax.json-1.0.4.jar \ No newline at end of file diff --git a/build/createSrgToMcp/output.srg b/build/createSrgToMcp/output.srg new file mode 100644 index 000000000..50febfea3 --- /dev/null +++ b/build/createSrgToMcp/output.srg @@ -0,0 +1,104048 @@ +CL: com/mojang/blaze3d/Blaze3D com/mojang/blaze3d/Blaze3D +CL: com/mojang/blaze3d/DontObfuscate com/mojang/blaze3d/DontObfuscate +CL: com/mojang/blaze3d/FieldsAreNonnullByDefault com/mojang/blaze3d/FieldsAreNonnullByDefault +CL: com/mojang/blaze3d/MethodsReturnNonnullByDefault com/mojang/blaze3d/MethodsReturnNonnullByDefault +CL: com/mojang/blaze3d/audio/Channel com/mojang/blaze3d/audio/Channel +CL: com/mojang/blaze3d/audio/Library com/mojang/blaze3d/audio/Library +CL: com/mojang/blaze3d/audio/Library$1 com/mojang/blaze3d/audio/Library$1 +CL: com/mojang/blaze3d/audio/Library$ChannelPool com/mojang/blaze3d/audio/Library$ChannelPool +CL: com/mojang/blaze3d/audio/Library$CountingChannelPool com/mojang/blaze3d/audio/Library$CountingChannelPool +CL: com/mojang/blaze3d/audio/Library$Pool com/mojang/blaze3d/audio/Library$Pool +CL: com/mojang/blaze3d/audio/Listener com/mojang/blaze3d/audio/Listener +CL: com/mojang/blaze3d/audio/OggAudioStream com/mojang/blaze3d/audio/OggAudioStream +CL: com/mojang/blaze3d/audio/OggAudioStream$OutputConcat com/mojang/blaze3d/audio/OggAudioStream$OutputConcat +CL: com/mojang/blaze3d/audio/OpenAlUtil com/mojang/blaze3d/audio/OpenAlUtil +CL: com/mojang/blaze3d/audio/SoundBuffer com/mojang/blaze3d/audio/SoundBuffer +CL: com/mojang/blaze3d/audio/package-info com/mojang/blaze3d/audio/package-info +CL: com/mojang/blaze3d/font/GlyphInfo com/mojang/blaze3d/font/GlyphInfo +CL: com/mojang/blaze3d/font/GlyphInfo$SpaceGlyphInfo com/mojang/blaze3d/font/GlyphInfo$SpaceGlyphInfo +CL: com/mojang/blaze3d/font/GlyphProvider com/mojang/blaze3d/font/GlyphProvider +CL: com/mojang/blaze3d/font/SheetGlyphInfo com/mojang/blaze3d/font/SheetGlyphInfo +CL: com/mojang/blaze3d/font/SpaceProvider com/mojang/blaze3d/font/SpaceProvider +CL: com/mojang/blaze3d/font/SpaceProvider$Definition com/mojang/blaze3d/font/SpaceProvider$Definition +CL: com/mojang/blaze3d/font/TrueTypeGlyphProvider com/mojang/blaze3d/font/TrueTypeGlyphProvider +CL: com/mojang/blaze3d/font/TrueTypeGlyphProvider$Glyph com/mojang/blaze3d/font/TrueTypeGlyphProvider$Glyph +CL: com/mojang/blaze3d/font/TrueTypeGlyphProvider$Glyph$1 com/mojang/blaze3d/font/TrueTypeGlyphProvider$Glyph$1 +CL: com/mojang/blaze3d/font/package-info com/mojang/blaze3d/font/package-info +CL: com/mojang/blaze3d/package-info com/mojang/blaze3d/package-info +CL: com/mojang/blaze3d/pipeline/MainTarget com/mojang/blaze3d/pipeline/MainTarget +CL: com/mojang/blaze3d/pipeline/MainTarget$AttachmentState com/mojang/blaze3d/pipeline/MainTarget$AttachmentState +CL: com/mojang/blaze3d/pipeline/MainTarget$Dimension com/mojang/blaze3d/pipeline/MainTarget$Dimension +CL: com/mojang/blaze3d/pipeline/RenderCall com/mojang/blaze3d/pipeline/RenderCall +CL: com/mojang/blaze3d/pipeline/RenderPipeline com/mojang/blaze3d/pipeline/RenderPipeline +CL: com/mojang/blaze3d/pipeline/RenderTarget com/mojang/blaze3d/pipeline/RenderTarget +CL: com/mojang/blaze3d/pipeline/TextureTarget com/mojang/blaze3d/pipeline/TextureTarget +CL: com/mojang/blaze3d/pipeline/package-info com/mojang/blaze3d/pipeline/package-info +CL: com/mojang/blaze3d/platform/ClipboardManager com/mojang/blaze3d/platform/ClipboardManager +CL: com/mojang/blaze3d/platform/DebugMemoryUntracker com/mojang/blaze3d/platform/DebugMemoryUntracker +CL: com/mojang/blaze3d/platform/DisplayData com/mojang/blaze3d/platform/DisplayData +CL: com/mojang/blaze3d/platform/GLX com/mojang/blaze3d/platform/GLX +CL: com/mojang/blaze3d/platform/GlConst com/mojang/blaze3d/platform/GlConst +CL: com/mojang/blaze3d/platform/GlDebug com/mojang/blaze3d/platform/GlDebug +CL: com/mojang/blaze3d/platform/GlDebug$LogEntry com/mojang/blaze3d/platform/GlDebug$LogEntry +CL: com/mojang/blaze3d/platform/GlStateManager com/mojang/blaze3d/platform/GlStateManager +CL: com/mojang/blaze3d/platform/GlStateManager$BlendState com/mojang/blaze3d/platform/GlStateManager$BlendState +CL: com/mojang/blaze3d/platform/GlStateManager$BooleanState com/mojang/blaze3d/platform/GlStateManager$BooleanState +CL: com/mojang/blaze3d/platform/GlStateManager$ColorLogicState com/mojang/blaze3d/platform/GlStateManager$ColorLogicState +CL: com/mojang/blaze3d/platform/GlStateManager$ColorMask com/mojang/blaze3d/platform/GlStateManager$ColorMask +CL: com/mojang/blaze3d/platform/GlStateManager$CullState com/mojang/blaze3d/platform/GlStateManager$CullState +CL: com/mojang/blaze3d/platform/GlStateManager$DepthState com/mojang/blaze3d/platform/GlStateManager$DepthState +CL: com/mojang/blaze3d/platform/GlStateManager$DestFactor com/mojang/blaze3d/platform/GlStateManager$DestFactor +CL: com/mojang/blaze3d/platform/GlStateManager$LogicOp com/mojang/blaze3d/platform/GlStateManager$LogicOp +CL: com/mojang/blaze3d/platform/GlStateManager$PolygonOffsetState com/mojang/blaze3d/platform/GlStateManager$PolygonOffsetState +CL: com/mojang/blaze3d/platform/GlStateManager$ScissorState com/mojang/blaze3d/platform/GlStateManager$ScissorState +CL: com/mojang/blaze3d/platform/GlStateManager$SourceFactor com/mojang/blaze3d/platform/GlStateManager$SourceFactor +CL: com/mojang/blaze3d/platform/GlStateManager$StencilFunc com/mojang/blaze3d/platform/GlStateManager$StencilFunc +CL: com/mojang/blaze3d/platform/GlStateManager$StencilState com/mojang/blaze3d/platform/GlStateManager$StencilState +CL: com/mojang/blaze3d/platform/GlStateManager$TextureState com/mojang/blaze3d/platform/GlStateManager$TextureState +CL: com/mojang/blaze3d/platform/GlStateManager$Viewport com/mojang/blaze3d/platform/GlStateManager$Viewport +CL: com/mojang/blaze3d/platform/GlUtil com/mojang/blaze3d/platform/GlUtil +CL: com/mojang/blaze3d/platform/IconSet com/mojang/blaze3d/platform/IconSet +CL: com/mojang/blaze3d/platform/InputConstants com/mojang/blaze3d/platform/InputConstants +CL: com/mojang/blaze3d/platform/InputConstants$Key com/mojang/blaze3d/platform/InputConstants$Key +CL: com/mojang/blaze3d/platform/InputConstants$Type com/mojang/blaze3d/platform/InputConstants$Type +CL: com/mojang/blaze3d/platform/Lighting com/mojang/blaze3d/platform/Lighting +CL: com/mojang/blaze3d/platform/MacosUtil com/mojang/blaze3d/platform/MacosUtil +CL: com/mojang/blaze3d/platform/MemoryTracker com/mojang/blaze3d/platform/MemoryTracker +CL: com/mojang/blaze3d/platform/Monitor com/mojang/blaze3d/platform/Monitor +CL: com/mojang/blaze3d/platform/MonitorCreator com/mojang/blaze3d/platform/MonitorCreator +CL: com/mojang/blaze3d/platform/NativeImage com/mojang/blaze3d/platform/NativeImage +CL: com/mojang/blaze3d/platform/NativeImage$Format com/mojang/blaze3d/platform/NativeImage$Format +CL: com/mojang/blaze3d/platform/NativeImage$InternalGlFormat com/mojang/blaze3d/platform/NativeImage$InternalGlFormat +CL: com/mojang/blaze3d/platform/NativeImage$WriteCallback com/mojang/blaze3d/platform/NativeImage$WriteCallback +CL: com/mojang/blaze3d/platform/ScreenManager com/mojang/blaze3d/platform/ScreenManager +CL: com/mojang/blaze3d/platform/TextureUtil com/mojang/blaze3d/platform/TextureUtil +CL: com/mojang/blaze3d/platform/VideoMode com/mojang/blaze3d/platform/VideoMode +CL: com/mojang/blaze3d/platform/Window com/mojang/blaze3d/platform/Window +CL: com/mojang/blaze3d/platform/Window$WindowInitFailed com/mojang/blaze3d/platform/Window$WindowInitFailed +CL: com/mojang/blaze3d/platform/WindowEventHandler com/mojang/blaze3d/platform/WindowEventHandler +CL: com/mojang/blaze3d/platform/package-info com/mojang/blaze3d/platform/package-info +CL: com/mojang/blaze3d/preprocessor/GlslPreprocessor com/mojang/blaze3d/preprocessor/GlslPreprocessor +CL: com/mojang/blaze3d/preprocessor/GlslPreprocessor$Context com/mojang/blaze3d/preprocessor/GlslPreprocessor$Context +CL: com/mojang/blaze3d/preprocessor/package-info com/mojang/blaze3d/preprocessor/package-info +CL: com/mojang/blaze3d/shaders/AbstractUniform com/mojang/blaze3d/shaders/AbstractUniform +CL: com/mojang/blaze3d/shaders/BlendMode com/mojang/blaze3d/shaders/BlendMode +CL: com/mojang/blaze3d/shaders/Effect com/mojang/blaze3d/shaders/Effect +CL: com/mojang/blaze3d/shaders/EffectProgram com/mojang/blaze3d/shaders/EffectProgram +CL: com/mojang/blaze3d/shaders/EffectProgram$1 com/mojang/blaze3d/shaders/EffectProgram$1 +CL: com/mojang/blaze3d/shaders/FogShape com/mojang/blaze3d/shaders/FogShape +CL: com/mojang/blaze3d/shaders/Program com/mojang/blaze3d/shaders/Program +CL: com/mojang/blaze3d/shaders/Program$Type com/mojang/blaze3d/shaders/Program$Type +CL: com/mojang/blaze3d/shaders/ProgramManager com/mojang/blaze3d/shaders/ProgramManager +CL: com/mojang/blaze3d/shaders/Shader com/mojang/blaze3d/shaders/Shader +CL: com/mojang/blaze3d/shaders/Uniform com/mojang/blaze3d/shaders/Uniform +CL: com/mojang/blaze3d/shaders/package-info com/mojang/blaze3d/shaders/package-info +CL: com/mojang/blaze3d/systems/RenderSystem com/mojang/blaze3d/systems/RenderSystem +CL: com/mojang/blaze3d/systems/RenderSystem$1 com/mojang/blaze3d/systems/RenderSystem$1 +CL: com/mojang/blaze3d/systems/RenderSystem$AutoStorageIndexBuffer com/mojang/blaze3d/systems/RenderSystem$AutoStorageIndexBuffer +CL: com/mojang/blaze3d/systems/RenderSystem$AutoStorageIndexBuffer$IndexGenerator com/mojang/blaze3d/systems/RenderSystem$AutoStorageIndexBuffer$IndexGenerator +CL: com/mojang/blaze3d/systems/TimerQuery com/mojang/blaze3d/systems/TimerQuery +CL: com/mojang/blaze3d/systems/TimerQuery$FrameProfile com/mojang/blaze3d/systems/TimerQuery$FrameProfile +CL: com/mojang/blaze3d/systems/TimerQuery$TimerQueryLazyLoader com/mojang/blaze3d/systems/TimerQuery$TimerQueryLazyLoader +CL: com/mojang/blaze3d/systems/package-info com/mojang/blaze3d/systems/package-info +CL: com/mojang/blaze3d/vertex/BufferBuilder com/mojang/blaze3d/vertex/BufferBuilder +CL: com/mojang/blaze3d/vertex/BufferBuilder$1 com/mojang/blaze3d/vertex/BufferBuilder$1 +CL: com/mojang/blaze3d/vertex/BufferBuilder$DrawState com/mojang/blaze3d/vertex/BufferBuilder$DrawState +CL: com/mojang/blaze3d/vertex/BufferBuilder$RenderedBuffer com/mojang/blaze3d/vertex/BufferBuilder$RenderedBuffer +CL: com/mojang/blaze3d/vertex/BufferBuilder$SortState com/mojang/blaze3d/vertex/BufferBuilder$SortState +CL: com/mojang/blaze3d/vertex/BufferUploader com/mojang/blaze3d/vertex/BufferUploader +CL: com/mojang/blaze3d/vertex/BufferVertexConsumer com/mojang/blaze3d/vertex/BufferVertexConsumer +CL: com/mojang/blaze3d/vertex/DefaultVertexFormat com/mojang/blaze3d/vertex/DefaultVertexFormat +CL: com/mojang/blaze3d/vertex/DefaultedVertexConsumer com/mojang/blaze3d/vertex/DefaultedVertexConsumer +CL: com/mojang/blaze3d/vertex/PoseStack com/mojang/blaze3d/vertex/PoseStack +CL: com/mojang/blaze3d/vertex/PoseStack$Pose com/mojang/blaze3d/vertex/PoseStack$Pose +CL: com/mojang/blaze3d/vertex/SheetedDecalTextureGenerator com/mojang/blaze3d/vertex/SheetedDecalTextureGenerator +CL: com/mojang/blaze3d/vertex/Tesselator com/mojang/blaze3d/vertex/Tesselator +CL: com/mojang/blaze3d/vertex/VertexBuffer com/mojang/blaze3d/vertex/VertexBuffer +CL: com/mojang/blaze3d/vertex/VertexBuffer$Usage com/mojang/blaze3d/vertex/VertexBuffer$Usage +CL: com/mojang/blaze3d/vertex/VertexConsumer com/mojang/blaze3d/vertex/VertexConsumer +CL: com/mojang/blaze3d/vertex/VertexFormat com/mojang/blaze3d/vertex/VertexFormat +CL: com/mojang/blaze3d/vertex/VertexFormat$1 com/mojang/blaze3d/vertex/VertexFormat$1 +CL: com/mojang/blaze3d/vertex/VertexFormat$IndexType com/mojang/blaze3d/vertex/VertexFormat$IndexType +CL: com/mojang/blaze3d/vertex/VertexFormat$Mode com/mojang/blaze3d/vertex/VertexFormat$Mode +CL: com/mojang/blaze3d/vertex/VertexFormatElement com/mojang/blaze3d/vertex/VertexFormatElement +CL: com/mojang/blaze3d/vertex/VertexFormatElement$Type com/mojang/blaze3d/vertex/VertexFormatElement$Type +CL: com/mojang/blaze3d/vertex/VertexFormatElement$Usage com/mojang/blaze3d/vertex/VertexFormatElement$Usage +CL: com/mojang/blaze3d/vertex/VertexFormatElement$Usage$ClearState com/mojang/blaze3d/vertex/VertexFormatElement$Usage$ClearState +CL: com/mojang/blaze3d/vertex/VertexFormatElement$Usage$SetupState com/mojang/blaze3d/vertex/VertexFormatElement$Usage$SetupState +CL: com/mojang/blaze3d/vertex/VertexMultiConsumer com/mojang/blaze3d/vertex/VertexMultiConsumer +CL: com/mojang/blaze3d/vertex/VertexMultiConsumer$Double com/mojang/blaze3d/vertex/VertexMultiConsumer$Double +CL: com/mojang/blaze3d/vertex/VertexMultiConsumer$Multiple com/mojang/blaze3d/vertex/VertexMultiConsumer$Multiple +CL: com/mojang/blaze3d/vertex/VertexSorting com/mojang/blaze3d/vertex/VertexSorting +CL: com/mojang/blaze3d/vertex/VertexSorting$DistanceFunction com/mojang/blaze3d/vertex/VertexSorting$DistanceFunction +CL: com/mojang/blaze3d/vertex/package-info com/mojang/blaze3d/vertex/package-info +CL: com/mojang/math/Axis com/mojang/math/Axis +CL: com/mojang/math/Constants com/mojang/math/Constants +CL: com/mojang/math/Divisor com/mojang/math/Divisor +CL: com/mojang/math/FieldsAreNonnullByDefault com/mojang/math/FieldsAreNonnullByDefault +CL: com/mojang/math/GivensParameters com/mojang/math/GivensParameters +CL: com/mojang/math/MatrixUtil com/mojang/math/MatrixUtil +CL: com/mojang/math/MethodsReturnNonnullByDefault com/mojang/math/MethodsReturnNonnullByDefault +CL: com/mojang/math/OctahedralGroup com/mojang/math/OctahedralGroup +CL: com/mojang/math/OctahedralGroup$1 com/mojang/math/OctahedralGroup$1 +CL: com/mojang/math/SymmetricGroup3 com/mojang/math/SymmetricGroup3 +CL: com/mojang/math/Transformation com/mojang/math/Transformation +CL: com/mojang/math/package-info com/mojang/math/package-info +CL: com/mojang/realmsclient/KeyCombo com/mojang/realmsclient/KeyCombo +CL: com/mojang/realmsclient/RealmsMainScreen com/mojang/realmsclient/RealmsMainScreen +CL: com/mojang/realmsclient/RealmsMainScreen$1 com/mojang/realmsclient/RealmsMainScreen$1 +CL: com/mojang/realmsclient/RealmsMainScreen$2 com/mojang/realmsclient/RealmsMainScreen$2 +CL: com/mojang/realmsclient/RealmsMainScreen$3 com/mojang/realmsclient/RealmsMainScreen$3 +CL: com/mojang/realmsclient/RealmsMainScreen$4 com/mojang/realmsclient/RealmsMainScreen$4 +CL: com/mojang/realmsclient/RealmsMainScreen$5 com/mojang/realmsclient/RealmsMainScreen$5 +CL: com/mojang/realmsclient/RealmsMainScreen$ButtonEntry com/mojang/realmsclient/RealmsMainScreen$ButtonEntry +CL: com/mojang/realmsclient/RealmsMainScreen$CloseButton com/mojang/realmsclient/RealmsMainScreen$CloseButton +CL: com/mojang/realmsclient/RealmsMainScreen$CrossButton com/mojang/realmsclient/RealmsMainScreen$CrossButton +CL: com/mojang/realmsclient/RealmsMainScreen$Entry com/mojang/realmsclient/RealmsMainScreen$Entry +CL: com/mojang/realmsclient/RealmsMainScreen$NewsButton com/mojang/realmsclient/RealmsMainScreen$NewsButton +CL: com/mojang/realmsclient/RealmsMainScreen$NotificationMessageEntry com/mojang/realmsclient/RealmsMainScreen$NotificationMessageEntry +CL: com/mojang/realmsclient/RealmsMainScreen$PendingInvitesButton com/mojang/realmsclient/RealmsMainScreen$PendingInvitesButton +CL: com/mojang/realmsclient/RealmsMainScreen$RealmSelectionList com/mojang/realmsclient/RealmsMainScreen$RealmSelectionList +CL: com/mojang/realmsclient/RealmsMainScreen$RealmsCall com/mojang/realmsclient/RealmsMainScreen$RealmsCall +CL: com/mojang/realmsclient/RealmsMainScreen$ServerEntry com/mojang/realmsclient/RealmsMainScreen$ServerEntry +CL: com/mojang/realmsclient/RealmsMainScreen$TrialEntry com/mojang/realmsclient/RealmsMainScreen$TrialEntry +CL: com/mojang/realmsclient/Unit com/mojang/realmsclient/Unit +CL: com/mojang/realmsclient/client/FileDownload com/mojang/realmsclient/client/FileDownload +CL: com/mojang/realmsclient/client/FileDownload$DownloadCountingOutputStream com/mojang/realmsclient/client/FileDownload$DownloadCountingOutputStream +CL: com/mojang/realmsclient/client/FileDownload$ProgressListener com/mojang/realmsclient/client/FileDownload$ProgressListener +CL: com/mojang/realmsclient/client/FileDownload$ResourcePackProgressListener com/mojang/realmsclient/client/FileDownload$ResourcePackProgressListener +CL: com/mojang/realmsclient/client/FileUpload com/mojang/realmsclient/client/FileUpload +CL: com/mojang/realmsclient/client/FileUpload$CustomInputStreamEntity com/mojang/realmsclient/client/FileUpload$CustomInputStreamEntity +CL: com/mojang/realmsclient/client/Ping com/mojang/realmsclient/client/Ping +CL: com/mojang/realmsclient/client/Ping$Region com/mojang/realmsclient/client/Ping$Region +CL: com/mojang/realmsclient/client/RealmsClient com/mojang/realmsclient/client/RealmsClient +CL: com/mojang/realmsclient/client/RealmsClient$CompatibleVersionResponse com/mojang/realmsclient/client/RealmsClient$CompatibleVersionResponse +CL: com/mojang/realmsclient/client/RealmsClient$Environment com/mojang/realmsclient/client/RealmsClient$Environment +CL: com/mojang/realmsclient/client/RealmsClientConfig com/mojang/realmsclient/client/RealmsClientConfig +CL: com/mojang/realmsclient/client/RealmsError com/mojang/realmsclient/client/RealmsError +CL: com/mojang/realmsclient/client/Request com/mojang/realmsclient/client/Request +CL: com/mojang/realmsclient/client/Request$Delete com/mojang/realmsclient/client/Request$Delete +CL: com/mojang/realmsclient/client/Request$Get com/mojang/realmsclient/client/Request$Get +CL: com/mojang/realmsclient/client/Request$Post com/mojang/realmsclient/client/Request$Post +CL: com/mojang/realmsclient/client/Request$Put com/mojang/realmsclient/client/Request$Put +CL: com/mojang/realmsclient/client/UploadStatus com/mojang/realmsclient/client/UploadStatus +CL: com/mojang/realmsclient/client/package-info com/mojang/realmsclient/client/package-info +CL: com/mojang/realmsclient/dto/Backup com/mojang/realmsclient/dto/Backup +CL: com/mojang/realmsclient/dto/BackupList com/mojang/realmsclient/dto/BackupList +CL: com/mojang/realmsclient/dto/GuardedSerializer com/mojang/realmsclient/dto/GuardedSerializer +CL: com/mojang/realmsclient/dto/Ops com/mojang/realmsclient/dto/Ops +CL: com/mojang/realmsclient/dto/PendingInvite com/mojang/realmsclient/dto/PendingInvite +CL: com/mojang/realmsclient/dto/PendingInvitesList com/mojang/realmsclient/dto/PendingInvitesList +CL: com/mojang/realmsclient/dto/PingResult com/mojang/realmsclient/dto/PingResult +CL: com/mojang/realmsclient/dto/PlayerInfo com/mojang/realmsclient/dto/PlayerInfo +CL: com/mojang/realmsclient/dto/RealmsDescriptionDto com/mojang/realmsclient/dto/RealmsDescriptionDto +CL: com/mojang/realmsclient/dto/RealmsNews com/mojang/realmsclient/dto/RealmsNews +CL: com/mojang/realmsclient/dto/RealmsNotification com/mojang/realmsclient/dto/RealmsNotification +CL: com/mojang/realmsclient/dto/RealmsNotification$VisitUrl com/mojang/realmsclient/dto/RealmsNotification$VisitUrl +CL: com/mojang/realmsclient/dto/RealmsServer com/mojang/realmsclient/dto/RealmsServer +CL: com/mojang/realmsclient/dto/RealmsServer$McoServerComparator com/mojang/realmsclient/dto/RealmsServer$McoServerComparator +CL: com/mojang/realmsclient/dto/RealmsServer$State com/mojang/realmsclient/dto/RealmsServer$State +CL: com/mojang/realmsclient/dto/RealmsServer$WorldType com/mojang/realmsclient/dto/RealmsServer$WorldType +CL: com/mojang/realmsclient/dto/RealmsServerAddress com/mojang/realmsclient/dto/RealmsServerAddress +CL: com/mojang/realmsclient/dto/RealmsServerList com/mojang/realmsclient/dto/RealmsServerList +CL: com/mojang/realmsclient/dto/RealmsServerPing com/mojang/realmsclient/dto/RealmsServerPing +CL: com/mojang/realmsclient/dto/RealmsServerPlayerList com/mojang/realmsclient/dto/RealmsServerPlayerList +CL: com/mojang/realmsclient/dto/RealmsServerPlayerLists com/mojang/realmsclient/dto/RealmsServerPlayerLists +CL: com/mojang/realmsclient/dto/RealmsText com/mojang/realmsclient/dto/RealmsText +CL: com/mojang/realmsclient/dto/RealmsWorldOptions com/mojang/realmsclient/dto/RealmsWorldOptions +CL: com/mojang/realmsclient/dto/RealmsWorldResetDto com/mojang/realmsclient/dto/RealmsWorldResetDto +CL: com/mojang/realmsclient/dto/ReflectionBasedSerialization com/mojang/realmsclient/dto/ReflectionBasedSerialization +CL: com/mojang/realmsclient/dto/RegionPingResult com/mojang/realmsclient/dto/RegionPingResult +CL: com/mojang/realmsclient/dto/ServerActivity com/mojang/realmsclient/dto/ServerActivity +CL: com/mojang/realmsclient/dto/ServerActivityList com/mojang/realmsclient/dto/ServerActivityList +CL: com/mojang/realmsclient/dto/Subscription com/mojang/realmsclient/dto/Subscription +CL: com/mojang/realmsclient/dto/Subscription$SubscriptionType com/mojang/realmsclient/dto/Subscription$SubscriptionType +CL: com/mojang/realmsclient/dto/UploadInfo com/mojang/realmsclient/dto/UploadInfo +CL: com/mojang/realmsclient/dto/ValueObject com/mojang/realmsclient/dto/ValueObject +CL: com/mojang/realmsclient/dto/WorldDownload com/mojang/realmsclient/dto/WorldDownload +CL: com/mojang/realmsclient/dto/WorldTemplate com/mojang/realmsclient/dto/WorldTemplate +CL: com/mojang/realmsclient/dto/WorldTemplate$WorldTemplateType com/mojang/realmsclient/dto/WorldTemplate$WorldTemplateType +CL: com/mojang/realmsclient/dto/WorldTemplatePaginatedList com/mojang/realmsclient/dto/WorldTemplatePaginatedList +CL: com/mojang/realmsclient/dto/package-info com/mojang/realmsclient/dto/package-info +CL: com/mojang/realmsclient/exception/RealmsDefaultUncaughtExceptionHandler com/mojang/realmsclient/exception/RealmsDefaultUncaughtExceptionHandler +CL: com/mojang/realmsclient/exception/RealmsHttpException com/mojang/realmsclient/exception/RealmsHttpException +CL: com/mojang/realmsclient/exception/RealmsServiceException com/mojang/realmsclient/exception/RealmsServiceException +CL: com/mojang/realmsclient/exception/RetryCallException com/mojang/realmsclient/exception/RetryCallException +CL: com/mojang/realmsclient/exception/package-info com/mojang/realmsclient/exception/package-info +CL: com/mojang/realmsclient/gui/ErrorCallback com/mojang/realmsclient/gui/ErrorCallback +CL: com/mojang/realmsclient/gui/RealmsDataFetcher com/mojang/realmsclient/gui/RealmsDataFetcher +CL: com/mojang/realmsclient/gui/RealmsNewsManager com/mojang/realmsclient/gui/RealmsNewsManager +CL: com/mojang/realmsclient/gui/RealmsServerList com/mojang/realmsclient/gui/RealmsServerList +CL: com/mojang/realmsclient/gui/RealmsWorldSlotButton com/mojang/realmsclient/gui/RealmsWorldSlotButton +CL: com/mojang/realmsclient/gui/RealmsWorldSlotButton$Action com/mojang/realmsclient/gui/RealmsWorldSlotButton$Action +CL: com/mojang/realmsclient/gui/RealmsWorldSlotButton$State com/mojang/realmsclient/gui/RealmsWorldSlotButton$State +CL: com/mojang/realmsclient/gui/RowButton com/mojang/realmsclient/gui/RowButton +CL: com/mojang/realmsclient/gui/package-info com/mojang/realmsclient/gui/package-info +CL: com/mojang/realmsclient/gui/screens/RealmsBackupInfoScreen com/mojang/realmsclient/gui/screens/RealmsBackupInfoScreen +CL: com/mojang/realmsclient/gui/screens/RealmsBackupInfoScreen$BackupInfoList com/mojang/realmsclient/gui/screens/RealmsBackupInfoScreen$BackupInfoList +CL: com/mojang/realmsclient/gui/screens/RealmsBackupInfoScreen$BackupInfoListEntry com/mojang/realmsclient/gui/screens/RealmsBackupInfoScreen$BackupInfoListEntry +CL: com/mojang/realmsclient/gui/screens/RealmsBackupScreen com/mojang/realmsclient/gui/screens/RealmsBackupScreen +CL: com/mojang/realmsclient/gui/screens/RealmsBackupScreen$1 com/mojang/realmsclient/gui/screens/RealmsBackupScreen$1 +CL: com/mojang/realmsclient/gui/screens/RealmsBackupScreen$BackupObjectSelectionList com/mojang/realmsclient/gui/screens/RealmsBackupScreen$BackupObjectSelectionList +CL: com/mojang/realmsclient/gui/screens/RealmsBackupScreen$Entry com/mojang/realmsclient/gui/screens/RealmsBackupScreen$Entry +CL: com/mojang/realmsclient/gui/screens/RealmsBrokenWorldScreen com/mojang/realmsclient/gui/screens/RealmsBrokenWorldScreen +CL: com/mojang/realmsclient/gui/screens/RealmsClientOutdatedScreen com/mojang/realmsclient/gui/screens/RealmsClientOutdatedScreen +CL: com/mojang/realmsclient/gui/screens/RealmsConfigureWorldScreen com/mojang/realmsclient/gui/screens/RealmsConfigureWorldScreen +CL: com/mojang/realmsclient/gui/screens/RealmsConfigureWorldScreen$1 com/mojang/realmsclient/gui/screens/RealmsConfigureWorldScreen$1 +CL: com/mojang/realmsclient/gui/screens/RealmsConfirmScreen com/mojang/realmsclient/gui/screens/RealmsConfirmScreen +CL: com/mojang/realmsclient/gui/screens/RealmsCreateRealmScreen com/mojang/realmsclient/gui/screens/RealmsCreateRealmScreen +CL: com/mojang/realmsclient/gui/screens/RealmsDownloadLatestWorldScreen com/mojang/realmsclient/gui/screens/RealmsDownloadLatestWorldScreen +CL: com/mojang/realmsclient/gui/screens/RealmsDownloadLatestWorldScreen$DownloadStatus com/mojang/realmsclient/gui/screens/RealmsDownloadLatestWorldScreen$DownloadStatus +CL: com/mojang/realmsclient/gui/screens/RealmsGenericErrorScreen com/mojang/realmsclient/gui/screens/RealmsGenericErrorScreen +CL: com/mojang/realmsclient/gui/screens/RealmsGenericErrorScreen$ErrorMessage com/mojang/realmsclient/gui/screens/RealmsGenericErrorScreen$ErrorMessage +CL: com/mojang/realmsclient/gui/screens/RealmsInviteScreen com/mojang/realmsclient/gui/screens/RealmsInviteScreen +CL: com/mojang/realmsclient/gui/screens/RealmsLongConfirmationScreen com/mojang/realmsclient/gui/screens/RealmsLongConfirmationScreen +CL: com/mojang/realmsclient/gui/screens/RealmsLongConfirmationScreen$Type com/mojang/realmsclient/gui/screens/RealmsLongConfirmationScreen$Type +CL: com/mojang/realmsclient/gui/screens/RealmsLongRunningMcoTaskScreen com/mojang/realmsclient/gui/screens/RealmsLongRunningMcoTaskScreen +CL: com/mojang/realmsclient/gui/screens/RealmsNotificationsScreen com/mojang/realmsclient/gui/screens/RealmsNotificationsScreen +CL: com/mojang/realmsclient/gui/screens/RealmsNotificationsScreen$1 com/mojang/realmsclient/gui/screens/RealmsNotificationsScreen$1 +CL: com/mojang/realmsclient/gui/screens/RealmsNotificationsScreen$2 com/mojang/realmsclient/gui/screens/RealmsNotificationsScreen$2 +CL: com/mojang/realmsclient/gui/screens/RealmsNotificationsScreen$3 com/mojang/realmsclient/gui/screens/RealmsNotificationsScreen$3 +CL: com/mojang/realmsclient/gui/screens/RealmsNotificationsScreen$DataFetcherConfiguration com/mojang/realmsclient/gui/screens/RealmsNotificationsScreen$DataFetcherConfiguration +CL: com/mojang/realmsclient/gui/screens/RealmsParentalConsentScreen com/mojang/realmsclient/gui/screens/RealmsParentalConsentScreen +CL: com/mojang/realmsclient/gui/screens/RealmsPendingInvitesScreen com/mojang/realmsclient/gui/screens/RealmsPendingInvitesScreen +CL: com/mojang/realmsclient/gui/screens/RealmsPendingInvitesScreen$1 com/mojang/realmsclient/gui/screens/RealmsPendingInvitesScreen$1 +CL: com/mojang/realmsclient/gui/screens/RealmsPendingInvitesScreen$2 com/mojang/realmsclient/gui/screens/RealmsPendingInvitesScreen$2 +CL: com/mojang/realmsclient/gui/screens/RealmsPendingInvitesScreen$3 com/mojang/realmsclient/gui/screens/RealmsPendingInvitesScreen$3 +CL: com/mojang/realmsclient/gui/screens/RealmsPendingInvitesScreen$Entry com/mojang/realmsclient/gui/screens/RealmsPendingInvitesScreen$Entry +CL: com/mojang/realmsclient/gui/screens/RealmsPendingInvitesScreen$Entry$AcceptRowButton com/mojang/realmsclient/gui/screens/RealmsPendingInvitesScreen$Entry$AcceptRowButton +CL: com/mojang/realmsclient/gui/screens/RealmsPendingInvitesScreen$Entry$RejectRowButton com/mojang/realmsclient/gui/screens/RealmsPendingInvitesScreen$Entry$RejectRowButton +CL: com/mojang/realmsclient/gui/screens/RealmsPendingInvitesScreen$PendingInvitationSelectionList com/mojang/realmsclient/gui/screens/RealmsPendingInvitesScreen$PendingInvitationSelectionList +CL: com/mojang/realmsclient/gui/screens/RealmsPlayerScreen com/mojang/realmsclient/gui/screens/RealmsPlayerScreen +CL: com/mojang/realmsclient/gui/screens/RealmsPlayerScreen$Entry com/mojang/realmsclient/gui/screens/RealmsPlayerScreen$Entry +CL: com/mojang/realmsclient/gui/screens/RealmsPlayerScreen$InvitedObjectSelectionList com/mojang/realmsclient/gui/screens/RealmsPlayerScreen$InvitedObjectSelectionList +CL: com/mojang/realmsclient/gui/screens/RealmsResetNormalWorldScreen com/mojang/realmsclient/gui/screens/RealmsResetNormalWorldScreen +CL: com/mojang/realmsclient/gui/screens/RealmsResetWorldScreen com/mojang/realmsclient/gui/screens/RealmsResetWorldScreen +CL: com/mojang/realmsclient/gui/screens/RealmsResetWorldScreen$1 com/mojang/realmsclient/gui/screens/RealmsResetWorldScreen$1 +CL: com/mojang/realmsclient/gui/screens/RealmsResetWorldScreen$FrameButton com/mojang/realmsclient/gui/screens/RealmsResetWorldScreen$FrameButton +CL: com/mojang/realmsclient/gui/screens/RealmsSelectFileToUploadScreen com/mojang/realmsclient/gui/screens/RealmsSelectFileToUploadScreen +CL: com/mojang/realmsclient/gui/screens/RealmsSelectFileToUploadScreen$Entry com/mojang/realmsclient/gui/screens/RealmsSelectFileToUploadScreen$Entry +CL: com/mojang/realmsclient/gui/screens/RealmsSelectFileToUploadScreen$WorldSelectionList com/mojang/realmsclient/gui/screens/RealmsSelectFileToUploadScreen$WorldSelectionList +CL: com/mojang/realmsclient/gui/screens/RealmsSelectWorldTemplateScreen com/mojang/realmsclient/gui/screens/RealmsSelectWorldTemplateScreen +CL: com/mojang/realmsclient/gui/screens/RealmsSelectWorldTemplateScreen$1 com/mojang/realmsclient/gui/screens/RealmsSelectWorldTemplateScreen$1 +CL: com/mojang/realmsclient/gui/screens/RealmsSelectWorldTemplateScreen$Entry com/mojang/realmsclient/gui/screens/RealmsSelectWorldTemplateScreen$Entry +CL: com/mojang/realmsclient/gui/screens/RealmsSelectWorldTemplateScreen$WorldTemplateObjectSelectionList com/mojang/realmsclient/gui/screens/RealmsSelectWorldTemplateScreen$WorldTemplateObjectSelectionList +CL: com/mojang/realmsclient/gui/screens/RealmsSettingsScreen com/mojang/realmsclient/gui/screens/RealmsSettingsScreen +CL: com/mojang/realmsclient/gui/screens/RealmsSlotOptionsScreen com/mojang/realmsclient/gui/screens/RealmsSlotOptionsScreen +CL: com/mojang/realmsclient/gui/screens/RealmsSlotOptionsScreen$SettingsSlider com/mojang/realmsclient/gui/screens/RealmsSlotOptionsScreen$SettingsSlider +CL: com/mojang/realmsclient/gui/screens/RealmsSubscriptionInfoScreen com/mojang/realmsclient/gui/screens/RealmsSubscriptionInfoScreen +CL: com/mojang/realmsclient/gui/screens/RealmsSubscriptionInfoScreen$1 com/mojang/realmsclient/gui/screens/RealmsSubscriptionInfoScreen$1 +CL: com/mojang/realmsclient/gui/screens/RealmsTermsScreen com/mojang/realmsclient/gui/screens/RealmsTermsScreen +CL: com/mojang/realmsclient/gui/screens/RealmsUploadScreen com/mojang/realmsclient/gui/screens/RealmsUploadScreen +CL: com/mojang/realmsclient/gui/screens/UploadResult com/mojang/realmsclient/gui/screens/UploadResult +CL: com/mojang/realmsclient/gui/screens/UploadResult$Builder com/mojang/realmsclient/gui/screens/UploadResult$Builder +CL: com/mojang/realmsclient/gui/screens/package-info com/mojang/realmsclient/gui/screens/package-info +CL: com/mojang/realmsclient/gui/task/DataFetcher com/mojang/realmsclient/gui/task/DataFetcher +CL: com/mojang/realmsclient/gui/task/DataFetcher$ComputationResult com/mojang/realmsclient/gui/task/DataFetcher$ComputationResult +CL: com/mojang/realmsclient/gui/task/DataFetcher$SubscribedTask com/mojang/realmsclient/gui/task/DataFetcher$SubscribedTask +CL: com/mojang/realmsclient/gui/task/DataFetcher$Subscription com/mojang/realmsclient/gui/task/DataFetcher$Subscription +CL: com/mojang/realmsclient/gui/task/DataFetcher$SuccessfulComputationResult com/mojang/realmsclient/gui/task/DataFetcher$SuccessfulComputationResult +CL: com/mojang/realmsclient/gui/task/DataFetcher$Task com/mojang/realmsclient/gui/task/DataFetcher$Task +CL: com/mojang/realmsclient/gui/task/RepeatedDelayStrategy com/mojang/realmsclient/gui/task/RepeatedDelayStrategy +CL: com/mojang/realmsclient/gui/task/RepeatedDelayStrategy$1 com/mojang/realmsclient/gui/task/RepeatedDelayStrategy$1 +CL: com/mojang/realmsclient/gui/task/RepeatedDelayStrategy$2 com/mojang/realmsclient/gui/task/RepeatedDelayStrategy$2 +CL: com/mojang/realmsclient/gui/task/package-info com/mojang/realmsclient/gui/task/package-info +CL: com/mojang/realmsclient/package-info com/mojang/realmsclient/package-info +CL: com/mojang/realmsclient/util/JsonUtils com/mojang/realmsclient/util/JsonUtils +CL: com/mojang/realmsclient/util/LevelType com/mojang/realmsclient/util/LevelType +CL: com/mojang/realmsclient/util/RealmsPersistence com/mojang/realmsclient/util/RealmsPersistence +CL: com/mojang/realmsclient/util/RealmsPersistence$RealmsPersistenceData com/mojang/realmsclient/util/RealmsPersistence$RealmsPersistenceData +CL: com/mojang/realmsclient/util/RealmsTextureManager com/mojang/realmsclient/util/RealmsTextureManager +CL: com/mojang/realmsclient/util/RealmsTextureManager$RealmsTexture com/mojang/realmsclient/util/RealmsTextureManager$RealmsTexture +CL: com/mojang/realmsclient/util/RealmsUtil com/mojang/realmsclient/util/RealmsUtil +CL: com/mojang/realmsclient/util/RealmsUtil$1 com/mojang/realmsclient/util/RealmsUtil$1 +CL: com/mojang/realmsclient/util/TextRenderingUtils com/mojang/realmsclient/util/TextRenderingUtils +CL: com/mojang/realmsclient/util/TextRenderingUtils$Line com/mojang/realmsclient/util/TextRenderingUtils$Line +CL: com/mojang/realmsclient/util/TextRenderingUtils$LineSegment com/mojang/realmsclient/util/TextRenderingUtils$LineSegment +CL: com/mojang/realmsclient/util/UploadTokenCache com/mojang/realmsclient/util/UploadTokenCache +CL: com/mojang/realmsclient/util/WorldGenerationInfo com/mojang/realmsclient/util/WorldGenerationInfo +CL: com/mojang/realmsclient/util/package-info com/mojang/realmsclient/util/package-info +CL: com/mojang/realmsclient/util/task/CloseServerTask com/mojang/realmsclient/util/task/CloseServerTask +CL: com/mojang/realmsclient/util/task/ConnectTask com/mojang/realmsclient/util/task/ConnectTask +CL: com/mojang/realmsclient/util/task/DownloadTask com/mojang/realmsclient/util/task/DownloadTask +CL: com/mojang/realmsclient/util/task/GetServerDetailsTask com/mojang/realmsclient/util/task/GetServerDetailsTask +CL: com/mojang/realmsclient/util/task/LongRunningTask com/mojang/realmsclient/util/task/LongRunningTask +CL: com/mojang/realmsclient/util/task/OpenServerTask com/mojang/realmsclient/util/task/OpenServerTask +CL: com/mojang/realmsclient/util/task/ResettingGeneratedWorldTask com/mojang/realmsclient/util/task/ResettingGeneratedWorldTask +CL: com/mojang/realmsclient/util/task/ResettingTemplateWorldTask com/mojang/realmsclient/util/task/ResettingTemplateWorldTask +CL: com/mojang/realmsclient/util/task/ResettingWorldTask com/mojang/realmsclient/util/task/ResettingWorldTask +CL: com/mojang/realmsclient/util/task/RestoreTask com/mojang/realmsclient/util/task/RestoreTask +CL: com/mojang/realmsclient/util/task/SwitchMinigameTask com/mojang/realmsclient/util/task/SwitchMinigameTask +CL: com/mojang/realmsclient/util/task/SwitchSlotTask com/mojang/realmsclient/util/task/SwitchSlotTask +CL: com/mojang/realmsclient/util/task/WorldCreationTask com/mojang/realmsclient/util/task/WorldCreationTask +CL: com/mojang/realmsclient/util/task/package-info com/mojang/realmsclient/util/task/package-info +CL: net/minecraft/BlockUtil net/minecraft/BlockUtil +CL: net/minecraft/BlockUtil$FoundRectangle net/minecraft/BlockUtil$FoundRectangle +CL: net/minecraft/BlockUtil$IntBounds net/minecraft/BlockUtil$IntBounds +CL: net/minecraft/CharPredicate net/minecraft/CharPredicate +CL: net/minecraft/ChatFormatting net/minecraft/ChatFormatting +CL: net/minecraft/CrashReport net/minecraft/CrashReport +CL: net/minecraft/CrashReportCategory net/minecraft/CrashReportCategory +CL: net/minecraft/CrashReportCategory$Entry net/minecraft/CrashReportCategory$Entry +CL: net/minecraft/CrashReportDetail net/minecraft/CrashReportDetail +CL: net/minecraft/DefaultUncaughtExceptionHandler net/minecraft/DefaultUncaughtExceptionHandler +CL: net/minecraft/DefaultUncaughtExceptionHandlerWithName net/minecraft/DefaultUncaughtExceptionHandlerWithName +CL: net/minecraft/DetectedVersion net/minecraft/DetectedVersion +CL: net/minecraft/FieldsAreNonnullByDefault net/minecraft/FieldsAreNonnullByDefault +CL: net/minecraft/FileUtil net/minecraft/FileUtil +CL: net/minecraft/MethodsReturnNonnullByDefault net/minecraft/MethodsReturnNonnullByDefault +CL: net/minecraft/Optionull net/minecraft/Optionull +CL: net/minecraft/ReportedException net/minecraft/ReportedException +CL: net/minecraft/ResourceLocationException net/minecraft/ResourceLocationException +CL: net/minecraft/SharedConstants net/minecraft/SharedConstants +CL: net/minecraft/SystemReport net/minecraft/SystemReport +CL: net/minecraft/Util net/minecraft/Util +CL: net/minecraft/Util$1 net/minecraft/Util$1 +CL: net/minecraft/Util$10 net/minecraft/Util$10 +CL: net/minecraft/Util$11 net/minecraft/Util$11 +CL: net/minecraft/Util$2 net/minecraft/Util$2 +CL: net/minecraft/Util$5 net/minecraft/Util$5 +CL: net/minecraft/Util$6 net/minecraft/Util$6 +CL: net/minecraft/Util$7 net/minecraft/Util$7 +CL: net/minecraft/Util$8 net/minecraft/Util$8 +CL: net/minecraft/Util$9 net/minecraft/Util$9 +CL: net/minecraft/Util$IdentityStrategy net/minecraft/Util$IdentityStrategy +CL: net/minecraft/Util$OS net/minecraft/Util$OS +CL: net/minecraft/Util$OS$1 net/minecraft/Util$OS$1 +CL: net/minecraft/Util$OS$2 net/minecraft/Util$OS$2 +CL: net/minecraft/WorldVersion net/minecraft/WorldVersion +CL: net/minecraft/advancements/Advancement net/minecraft/advancements/Advancement +CL: net/minecraft/advancements/Advancement$Builder net/minecraft/advancements/Advancement$Builder +CL: net/minecraft/advancements/AdvancementList net/minecraft/advancements/AdvancementList +CL: net/minecraft/advancements/AdvancementList$Listener net/minecraft/advancements/AdvancementList$Listener +CL: net/minecraft/advancements/AdvancementProgress net/minecraft/advancements/AdvancementProgress +CL: net/minecraft/advancements/AdvancementProgress$Serializer net/minecraft/advancements/AdvancementProgress$Serializer +CL: net/minecraft/advancements/AdvancementRewards net/minecraft/advancements/AdvancementRewards +CL: net/minecraft/advancements/AdvancementRewards$Builder net/minecraft/advancements/AdvancementRewards$Builder +CL: net/minecraft/advancements/CriteriaTriggers net/minecraft/advancements/CriteriaTriggers +CL: net/minecraft/advancements/Criterion net/minecraft/advancements/Criterion +CL: net/minecraft/advancements/CriterionProgress net/minecraft/advancements/CriterionProgress +CL: net/minecraft/advancements/CriterionTrigger net/minecraft/advancements/CriterionTrigger +CL: net/minecraft/advancements/CriterionTrigger$Listener net/minecraft/advancements/CriterionTrigger$Listener +CL: net/minecraft/advancements/CriterionTriggerInstance net/minecraft/advancements/CriterionTriggerInstance +CL: net/minecraft/advancements/DisplayInfo net/minecraft/advancements/DisplayInfo +CL: net/minecraft/advancements/FrameType net/minecraft/advancements/FrameType +CL: net/minecraft/advancements/RequirementsStrategy net/minecraft/advancements/RequirementsStrategy +CL: net/minecraft/advancements/TreeNodePosition net/minecraft/advancements/TreeNodePosition +CL: net/minecraft/advancements/critereon/AbstractCriterionTriggerInstance net/minecraft/advancements/critereon/AbstractCriterionTriggerInstance +CL: net/minecraft/advancements/critereon/BeeNestDestroyedTrigger net/minecraft/advancements/critereon/BeeNestDestroyedTrigger +CL: net/minecraft/advancements/critereon/BeeNestDestroyedTrigger$TriggerInstance net/minecraft/advancements/critereon/BeeNestDestroyedTrigger$TriggerInstance +CL: net/minecraft/advancements/critereon/BlockPredicate net/minecraft/advancements/critereon/BlockPredicate +CL: net/minecraft/advancements/critereon/BlockPredicate$Builder net/minecraft/advancements/critereon/BlockPredicate$Builder +CL: net/minecraft/advancements/critereon/BredAnimalsTrigger net/minecraft/advancements/critereon/BredAnimalsTrigger +CL: net/minecraft/advancements/critereon/BredAnimalsTrigger$TriggerInstance net/minecraft/advancements/critereon/BredAnimalsTrigger$TriggerInstance +CL: net/minecraft/advancements/critereon/BrewedPotionTrigger net/minecraft/advancements/critereon/BrewedPotionTrigger +CL: net/minecraft/advancements/critereon/BrewedPotionTrigger$TriggerInstance net/minecraft/advancements/critereon/BrewedPotionTrigger$TriggerInstance +CL: net/minecraft/advancements/critereon/ChangeDimensionTrigger net/minecraft/advancements/critereon/ChangeDimensionTrigger +CL: net/minecraft/advancements/critereon/ChangeDimensionTrigger$TriggerInstance net/minecraft/advancements/critereon/ChangeDimensionTrigger$TriggerInstance +CL: net/minecraft/advancements/critereon/ChanneledLightningTrigger net/minecraft/advancements/critereon/ChanneledLightningTrigger +CL: net/minecraft/advancements/critereon/ChanneledLightningTrigger$TriggerInstance net/minecraft/advancements/critereon/ChanneledLightningTrigger$TriggerInstance +CL: net/minecraft/advancements/critereon/ConstructBeaconTrigger net/minecraft/advancements/critereon/ConstructBeaconTrigger +CL: net/minecraft/advancements/critereon/ConstructBeaconTrigger$TriggerInstance net/minecraft/advancements/critereon/ConstructBeaconTrigger$TriggerInstance +CL: net/minecraft/advancements/critereon/ConsumeItemTrigger net/minecraft/advancements/critereon/ConsumeItemTrigger +CL: net/minecraft/advancements/critereon/ConsumeItemTrigger$TriggerInstance net/minecraft/advancements/critereon/ConsumeItemTrigger$TriggerInstance +CL: net/minecraft/advancements/critereon/ContextAwarePredicate net/minecraft/advancements/critereon/ContextAwarePredicate +CL: net/minecraft/advancements/critereon/CuredZombieVillagerTrigger net/minecraft/advancements/critereon/CuredZombieVillagerTrigger +CL: net/minecraft/advancements/critereon/CuredZombieVillagerTrigger$TriggerInstance net/minecraft/advancements/critereon/CuredZombieVillagerTrigger$TriggerInstance +CL: net/minecraft/advancements/critereon/DamagePredicate net/minecraft/advancements/critereon/DamagePredicate +CL: net/minecraft/advancements/critereon/DamagePredicate$Builder net/minecraft/advancements/critereon/DamagePredicate$Builder +CL: net/minecraft/advancements/critereon/DamageSourcePredicate net/minecraft/advancements/critereon/DamageSourcePredicate +CL: net/minecraft/advancements/critereon/DamageSourcePredicate$Builder net/minecraft/advancements/critereon/DamageSourcePredicate$Builder +CL: net/minecraft/advancements/critereon/DeserializationContext net/minecraft/advancements/critereon/DeserializationContext +CL: net/minecraft/advancements/critereon/DistancePredicate net/minecraft/advancements/critereon/DistancePredicate +CL: net/minecraft/advancements/critereon/DistanceTrigger net/minecraft/advancements/critereon/DistanceTrigger +CL: net/minecraft/advancements/critereon/DistanceTrigger$TriggerInstance net/minecraft/advancements/critereon/DistanceTrigger$TriggerInstance +CL: net/minecraft/advancements/critereon/EffectsChangedTrigger net/minecraft/advancements/critereon/EffectsChangedTrigger +CL: net/minecraft/advancements/critereon/EffectsChangedTrigger$TriggerInstance net/minecraft/advancements/critereon/EffectsChangedTrigger$TriggerInstance +CL: net/minecraft/advancements/critereon/EnchantedItemTrigger net/minecraft/advancements/critereon/EnchantedItemTrigger +CL: net/minecraft/advancements/critereon/EnchantedItemTrigger$TriggerInstance net/minecraft/advancements/critereon/EnchantedItemTrigger$TriggerInstance +CL: net/minecraft/advancements/critereon/EnchantmentPredicate net/minecraft/advancements/critereon/EnchantmentPredicate +CL: net/minecraft/advancements/critereon/EnterBlockTrigger net/minecraft/advancements/critereon/EnterBlockTrigger +CL: net/minecraft/advancements/critereon/EnterBlockTrigger$TriggerInstance net/minecraft/advancements/critereon/EnterBlockTrigger$TriggerInstance +CL: net/minecraft/advancements/critereon/EntityEquipmentPredicate net/minecraft/advancements/critereon/EntityEquipmentPredicate +CL: net/minecraft/advancements/critereon/EntityEquipmentPredicate$Builder net/minecraft/advancements/critereon/EntityEquipmentPredicate$Builder +CL: net/minecraft/advancements/critereon/EntityFlagsPredicate net/minecraft/advancements/critereon/EntityFlagsPredicate +CL: net/minecraft/advancements/critereon/EntityFlagsPredicate$Builder net/minecraft/advancements/critereon/EntityFlagsPredicate$Builder +CL: net/minecraft/advancements/critereon/EntityHurtPlayerTrigger net/minecraft/advancements/critereon/EntityHurtPlayerTrigger +CL: net/minecraft/advancements/critereon/EntityHurtPlayerTrigger$TriggerInstance net/minecraft/advancements/critereon/EntityHurtPlayerTrigger$TriggerInstance +CL: net/minecraft/advancements/critereon/EntityPredicate net/minecraft/advancements/critereon/EntityPredicate +CL: net/minecraft/advancements/critereon/EntityPredicate$Builder net/minecraft/advancements/critereon/EntityPredicate$Builder +CL: net/minecraft/advancements/critereon/EntitySubPredicate net/minecraft/advancements/critereon/EntitySubPredicate +CL: net/minecraft/advancements/critereon/EntitySubPredicate$1 net/minecraft/advancements/critereon/EntitySubPredicate$1 +CL: net/minecraft/advancements/critereon/EntitySubPredicate$Type net/minecraft/advancements/critereon/EntitySubPredicate$Type +CL: net/minecraft/advancements/critereon/EntitySubPredicate$Types net/minecraft/advancements/critereon/EntitySubPredicate$Types +CL: net/minecraft/advancements/critereon/EntityTypePredicate net/minecraft/advancements/critereon/EntityTypePredicate +CL: net/minecraft/advancements/critereon/EntityTypePredicate$1 net/minecraft/advancements/critereon/EntityTypePredicate$1 +CL: net/minecraft/advancements/critereon/EntityTypePredicate$TagPredicate net/minecraft/advancements/critereon/EntityTypePredicate$TagPredicate +CL: net/minecraft/advancements/critereon/EntityTypePredicate$TypePredicate net/minecraft/advancements/critereon/EntityTypePredicate$TypePredicate +CL: net/minecraft/advancements/critereon/EntityVariantPredicate net/minecraft/advancements/critereon/EntityVariantPredicate +CL: net/minecraft/advancements/critereon/EntityVariantPredicate$1 net/minecraft/advancements/critereon/EntityVariantPredicate$1 +CL: net/minecraft/advancements/critereon/FilledBucketTrigger net/minecraft/advancements/critereon/FilledBucketTrigger +CL: net/minecraft/advancements/critereon/FilledBucketTrigger$TriggerInstance net/minecraft/advancements/critereon/FilledBucketTrigger$TriggerInstance +CL: net/minecraft/advancements/critereon/FishingHookPredicate net/minecraft/advancements/critereon/FishingHookPredicate +CL: net/minecraft/advancements/critereon/FishingRodHookedTrigger net/minecraft/advancements/critereon/FishingRodHookedTrigger +CL: net/minecraft/advancements/critereon/FishingRodHookedTrigger$TriggerInstance net/minecraft/advancements/critereon/FishingRodHookedTrigger$TriggerInstance +CL: net/minecraft/advancements/critereon/FluidPredicate net/minecraft/advancements/critereon/FluidPredicate +CL: net/minecraft/advancements/critereon/FluidPredicate$Builder net/minecraft/advancements/critereon/FluidPredicate$Builder +CL: net/minecraft/advancements/critereon/ImpossibleTrigger net/minecraft/advancements/critereon/ImpossibleTrigger +CL: net/minecraft/advancements/critereon/ImpossibleTrigger$TriggerInstance net/minecraft/advancements/critereon/ImpossibleTrigger$TriggerInstance +CL: net/minecraft/advancements/critereon/InventoryChangeTrigger net/minecraft/advancements/critereon/InventoryChangeTrigger +CL: net/minecraft/advancements/critereon/InventoryChangeTrigger$TriggerInstance net/minecraft/advancements/critereon/InventoryChangeTrigger$TriggerInstance +CL: net/minecraft/advancements/critereon/ItemDurabilityTrigger net/minecraft/advancements/critereon/ItemDurabilityTrigger +CL: net/minecraft/advancements/critereon/ItemDurabilityTrigger$TriggerInstance net/minecraft/advancements/critereon/ItemDurabilityTrigger$TriggerInstance +CL: net/minecraft/advancements/critereon/ItemPredicate net/minecraft/advancements/critereon/ItemPredicate +CL: net/minecraft/advancements/critereon/ItemPredicate$Builder net/minecraft/advancements/critereon/ItemPredicate$Builder +CL: net/minecraft/advancements/critereon/ItemUsedOnLocationTrigger net/minecraft/advancements/critereon/ItemUsedOnLocationTrigger +CL: net/minecraft/advancements/critereon/ItemUsedOnLocationTrigger$TriggerInstance net/minecraft/advancements/critereon/ItemUsedOnLocationTrigger$TriggerInstance +CL: net/minecraft/advancements/critereon/KilledByCrossbowTrigger net/minecraft/advancements/critereon/KilledByCrossbowTrigger +CL: net/minecraft/advancements/critereon/KilledByCrossbowTrigger$TriggerInstance net/minecraft/advancements/critereon/KilledByCrossbowTrigger$TriggerInstance +CL: net/minecraft/advancements/critereon/KilledTrigger net/minecraft/advancements/critereon/KilledTrigger +CL: net/minecraft/advancements/critereon/KilledTrigger$TriggerInstance net/minecraft/advancements/critereon/KilledTrigger$TriggerInstance +CL: net/minecraft/advancements/critereon/LevitationTrigger net/minecraft/advancements/critereon/LevitationTrigger +CL: net/minecraft/advancements/critereon/LevitationTrigger$TriggerInstance net/minecraft/advancements/critereon/LevitationTrigger$TriggerInstance +CL: net/minecraft/advancements/critereon/LightPredicate net/minecraft/advancements/critereon/LightPredicate +CL: net/minecraft/advancements/critereon/LightPredicate$Builder net/minecraft/advancements/critereon/LightPredicate$Builder +CL: net/minecraft/advancements/critereon/LighthingBoltPredicate net/minecraft/advancements/critereon/LighthingBoltPredicate +CL: net/minecraft/advancements/critereon/LightningStrikeTrigger net/minecraft/advancements/critereon/LightningStrikeTrigger +CL: net/minecraft/advancements/critereon/LightningStrikeTrigger$TriggerInstance net/minecraft/advancements/critereon/LightningStrikeTrigger$TriggerInstance +CL: net/minecraft/advancements/critereon/LocationPredicate net/minecraft/advancements/critereon/LocationPredicate +CL: net/minecraft/advancements/critereon/LocationPredicate$Builder net/minecraft/advancements/critereon/LocationPredicate$Builder +CL: net/minecraft/advancements/critereon/LootTableTrigger net/minecraft/advancements/critereon/LootTableTrigger +CL: net/minecraft/advancements/critereon/LootTableTrigger$TriggerInstance net/minecraft/advancements/critereon/LootTableTrigger$TriggerInstance +CL: net/minecraft/advancements/critereon/MinMaxBounds net/minecraft/advancements/critereon/MinMaxBounds +CL: net/minecraft/advancements/critereon/MinMaxBounds$BoundsFactory net/minecraft/advancements/critereon/MinMaxBounds$BoundsFactory +CL: net/minecraft/advancements/critereon/MinMaxBounds$BoundsFromReaderFactory net/minecraft/advancements/critereon/MinMaxBounds$BoundsFromReaderFactory +CL: net/minecraft/advancements/critereon/MinMaxBounds$Doubles net/minecraft/advancements/critereon/MinMaxBounds$Doubles +CL: net/minecraft/advancements/critereon/MinMaxBounds$Ints net/minecraft/advancements/critereon/MinMaxBounds$Ints +CL: net/minecraft/advancements/critereon/MobEffectsPredicate net/minecraft/advancements/critereon/MobEffectsPredicate +CL: net/minecraft/advancements/critereon/MobEffectsPredicate$MobEffectInstancePredicate net/minecraft/advancements/critereon/MobEffectsPredicate$MobEffectInstancePredicate +CL: net/minecraft/advancements/critereon/NbtPredicate net/minecraft/advancements/critereon/NbtPredicate +CL: net/minecraft/advancements/critereon/PickedUpItemTrigger net/minecraft/advancements/critereon/PickedUpItemTrigger +CL: net/minecraft/advancements/critereon/PickedUpItemTrigger$TriggerInstance net/minecraft/advancements/critereon/PickedUpItemTrigger$TriggerInstance +CL: net/minecraft/advancements/critereon/PlayerHurtEntityTrigger net/minecraft/advancements/critereon/PlayerHurtEntityTrigger +CL: net/minecraft/advancements/critereon/PlayerHurtEntityTrigger$TriggerInstance net/minecraft/advancements/critereon/PlayerHurtEntityTrigger$TriggerInstance +CL: net/minecraft/advancements/critereon/PlayerInteractTrigger net/minecraft/advancements/critereon/PlayerInteractTrigger +CL: net/minecraft/advancements/critereon/PlayerInteractTrigger$TriggerInstance net/minecraft/advancements/critereon/PlayerInteractTrigger$TriggerInstance +CL: net/minecraft/advancements/critereon/PlayerPredicate net/minecraft/advancements/critereon/PlayerPredicate +CL: net/minecraft/advancements/critereon/PlayerPredicate$AdvancementCriterionsPredicate net/minecraft/advancements/critereon/PlayerPredicate$AdvancementCriterionsPredicate +CL: net/minecraft/advancements/critereon/PlayerPredicate$AdvancementDonePredicate net/minecraft/advancements/critereon/PlayerPredicate$AdvancementDonePredicate +CL: net/minecraft/advancements/critereon/PlayerPredicate$AdvancementPredicate net/minecraft/advancements/critereon/PlayerPredicate$AdvancementPredicate +CL: net/minecraft/advancements/critereon/PlayerPredicate$Builder net/minecraft/advancements/critereon/PlayerPredicate$Builder +CL: net/minecraft/advancements/critereon/PlayerTrigger net/minecraft/advancements/critereon/PlayerTrigger +CL: net/minecraft/advancements/critereon/PlayerTrigger$TriggerInstance net/minecraft/advancements/critereon/PlayerTrigger$TriggerInstance +CL: net/minecraft/advancements/critereon/RecipeCraftedTrigger net/minecraft/advancements/critereon/RecipeCraftedTrigger +CL: net/minecraft/advancements/critereon/RecipeCraftedTrigger$TriggerInstance net/minecraft/advancements/critereon/RecipeCraftedTrigger$TriggerInstance +CL: net/minecraft/advancements/critereon/RecipeUnlockedTrigger net/minecraft/advancements/critereon/RecipeUnlockedTrigger +CL: net/minecraft/advancements/critereon/RecipeUnlockedTrigger$TriggerInstance net/minecraft/advancements/critereon/RecipeUnlockedTrigger$TriggerInstance +CL: net/minecraft/advancements/critereon/SerializationContext net/minecraft/advancements/critereon/SerializationContext +CL: net/minecraft/advancements/critereon/ShotCrossbowTrigger net/minecraft/advancements/critereon/ShotCrossbowTrigger +CL: net/minecraft/advancements/critereon/ShotCrossbowTrigger$TriggerInstance net/minecraft/advancements/critereon/ShotCrossbowTrigger$TriggerInstance +CL: net/minecraft/advancements/critereon/SimpleCriterionTrigger net/minecraft/advancements/critereon/SimpleCriterionTrigger +CL: net/minecraft/advancements/critereon/SlideDownBlockTrigger net/minecraft/advancements/critereon/SlideDownBlockTrigger +CL: net/minecraft/advancements/critereon/SlideDownBlockTrigger$TriggerInstance net/minecraft/advancements/critereon/SlideDownBlockTrigger$TriggerInstance +CL: net/minecraft/advancements/critereon/SlimePredicate net/minecraft/advancements/critereon/SlimePredicate +CL: net/minecraft/advancements/critereon/StartRidingTrigger net/minecraft/advancements/critereon/StartRidingTrigger +CL: net/minecraft/advancements/critereon/StartRidingTrigger$TriggerInstance net/minecraft/advancements/critereon/StartRidingTrigger$TriggerInstance +CL: net/minecraft/advancements/critereon/StatePropertiesPredicate net/minecraft/advancements/critereon/StatePropertiesPredicate +CL: net/minecraft/advancements/critereon/StatePropertiesPredicate$Builder net/minecraft/advancements/critereon/StatePropertiesPredicate$Builder +CL: net/minecraft/advancements/critereon/StatePropertiesPredicate$ExactPropertyMatcher net/minecraft/advancements/critereon/StatePropertiesPredicate$ExactPropertyMatcher +CL: net/minecraft/advancements/critereon/StatePropertiesPredicate$PropertyMatcher net/minecraft/advancements/critereon/StatePropertiesPredicate$PropertyMatcher +CL: net/minecraft/advancements/critereon/StatePropertiesPredicate$RangedPropertyMatcher net/minecraft/advancements/critereon/StatePropertiesPredicate$RangedPropertyMatcher +CL: net/minecraft/advancements/critereon/SummonedEntityTrigger net/minecraft/advancements/critereon/SummonedEntityTrigger +CL: net/minecraft/advancements/critereon/SummonedEntityTrigger$TriggerInstance net/minecraft/advancements/critereon/SummonedEntityTrigger$TriggerInstance +CL: net/minecraft/advancements/critereon/TagPredicate net/minecraft/advancements/critereon/TagPredicate +CL: net/minecraft/advancements/critereon/TameAnimalTrigger net/minecraft/advancements/critereon/TameAnimalTrigger +CL: net/minecraft/advancements/critereon/TameAnimalTrigger$TriggerInstance net/minecraft/advancements/critereon/TameAnimalTrigger$TriggerInstance +CL: net/minecraft/advancements/critereon/TargetBlockTrigger net/minecraft/advancements/critereon/TargetBlockTrigger +CL: net/minecraft/advancements/critereon/TargetBlockTrigger$TriggerInstance net/minecraft/advancements/critereon/TargetBlockTrigger$TriggerInstance +CL: net/minecraft/advancements/critereon/TradeTrigger net/minecraft/advancements/critereon/TradeTrigger +CL: net/minecraft/advancements/critereon/TradeTrigger$TriggerInstance net/minecraft/advancements/critereon/TradeTrigger$TriggerInstance +CL: net/minecraft/advancements/critereon/UsedEnderEyeTrigger net/minecraft/advancements/critereon/UsedEnderEyeTrigger +CL: net/minecraft/advancements/critereon/UsedEnderEyeTrigger$TriggerInstance net/minecraft/advancements/critereon/UsedEnderEyeTrigger$TriggerInstance +CL: net/minecraft/advancements/critereon/UsedTotemTrigger net/minecraft/advancements/critereon/UsedTotemTrigger +CL: net/minecraft/advancements/critereon/UsedTotemTrigger$TriggerInstance net/minecraft/advancements/critereon/UsedTotemTrigger$TriggerInstance +CL: net/minecraft/advancements/critereon/UsingItemTrigger net/minecraft/advancements/critereon/UsingItemTrigger +CL: net/minecraft/advancements/critereon/UsingItemTrigger$TriggerInstance net/minecraft/advancements/critereon/UsingItemTrigger$TriggerInstance +CL: net/minecraft/advancements/critereon/WrappedMinMaxBounds net/minecraft/advancements/critereon/WrappedMinMaxBounds +CL: net/minecraft/advancements/critereon/package-info net/minecraft/advancements/critereon/package-info +CL: net/minecraft/advancements/package-info net/minecraft/advancements/package-info +CL: net/minecraft/client/AttackIndicatorStatus net/minecraft/client/AttackIndicatorStatus +CL: net/minecraft/client/Camera net/minecraft/client/Camera +CL: net/minecraft/client/Camera$NearPlane net/minecraft/client/Camera$NearPlane +CL: net/minecraft/client/CameraType net/minecraft/client/CameraType +CL: net/minecraft/client/ClientBrandRetriever net/minecraft/client/ClientBrandRetriever +CL: net/minecraft/client/ClientRecipeBook net/minecraft/client/ClientRecipeBook +CL: net/minecraft/client/ClientRecipeBook$1 net/minecraft/client/ClientRecipeBook$1 +CL: net/minecraft/client/CloudStatus net/minecraft/client/CloudStatus +CL: net/minecraft/client/ComponentCollector net/minecraft/client/ComponentCollector +CL: net/minecraft/client/DebugQueryHandler net/minecraft/client/DebugQueryHandler +CL: net/minecraft/client/GameNarrator net/minecraft/client/GameNarrator +CL: net/minecraft/client/GameNarrator$NarratorInitException net/minecraft/client/GameNarrator$NarratorInitException +CL: net/minecraft/client/GraphicsStatus net/minecraft/client/GraphicsStatus +CL: net/minecraft/client/GraphicsStatus$1 net/minecraft/client/GraphicsStatus$1 +CL: net/minecraft/client/GuiMessage net/minecraft/client/GuiMessage +CL: net/minecraft/client/GuiMessage$Line net/minecraft/client/GuiMessage$Line +CL: net/minecraft/client/GuiMessageTag net/minecraft/client/GuiMessageTag +CL: net/minecraft/client/GuiMessageTag$Icon net/minecraft/client/GuiMessageTag$Icon +CL: net/minecraft/client/HotbarManager net/minecraft/client/HotbarManager +CL: net/minecraft/client/InputType net/minecraft/client/InputType +CL: net/minecraft/client/KeyMapping net/minecraft/client/KeyMapping +CL: net/minecraft/client/KeyboardHandler net/minecraft/client/KeyboardHandler +CL: net/minecraft/client/KeyboardHandler$1 net/minecraft/client/KeyboardHandler$1 +CL: net/minecraft/client/Minecraft net/minecraft/client/Minecraft +CL: net/minecraft/client/Minecraft$1 net/minecraft/client/Minecraft$1 +CL: net/minecraft/client/Minecraft$ChatStatus net/minecraft/client/Minecraft$ChatStatus +CL: net/minecraft/client/Minecraft$ChatStatus$1 net/minecraft/client/Minecraft$ChatStatus$1 +CL: net/minecraft/client/Minecraft$ChatStatus$2 net/minecraft/client/Minecraft$ChatStatus$2 +CL: net/minecraft/client/Minecraft$ChatStatus$3 net/minecraft/client/Minecraft$ChatStatus$3 +CL: net/minecraft/client/Minecraft$ChatStatus$4 net/minecraft/client/Minecraft$ChatStatus$4 +CL: net/minecraft/client/MouseHandler net/minecraft/client/MouseHandler +CL: net/minecraft/client/NarratorStatus net/minecraft/client/NarratorStatus +CL: net/minecraft/client/OptionInstance net/minecraft/client/OptionInstance +CL: net/minecraft/client/OptionInstance$AltEnum net/minecraft/client/OptionInstance$AltEnum +CL: net/minecraft/client/OptionInstance$CaptionBasedToString net/minecraft/client/OptionInstance$CaptionBasedToString +CL: net/minecraft/client/OptionInstance$ClampingLazyMaxIntRange net/minecraft/client/OptionInstance$ClampingLazyMaxIntRange +CL: net/minecraft/client/OptionInstance$CycleableValueSet net/minecraft/client/OptionInstance$CycleableValueSet +CL: net/minecraft/client/OptionInstance$CycleableValueSet$ValueSetter net/minecraft/client/OptionInstance$CycleableValueSet$ValueSetter +CL: net/minecraft/client/OptionInstance$Enum net/minecraft/client/OptionInstance$Enum +CL: net/minecraft/client/OptionInstance$IntRange net/minecraft/client/OptionInstance$IntRange +CL: net/minecraft/client/OptionInstance$IntRangeBase net/minecraft/client/OptionInstance$IntRangeBase +CL: net/minecraft/client/OptionInstance$IntRangeBase$1 net/minecraft/client/OptionInstance$IntRangeBase$1 +CL: net/minecraft/client/OptionInstance$LazyEnum net/minecraft/client/OptionInstance$LazyEnum +CL: net/minecraft/client/OptionInstance$OptionInstanceSliderButton net/minecraft/client/OptionInstance$OptionInstanceSliderButton +CL: net/minecraft/client/OptionInstance$SliderableOrCyclableValueSet net/minecraft/client/OptionInstance$SliderableOrCyclableValueSet +CL: net/minecraft/client/OptionInstance$SliderableValueSet net/minecraft/client/OptionInstance$SliderableValueSet +CL: net/minecraft/client/OptionInstance$TooltipSupplier net/minecraft/client/OptionInstance$TooltipSupplier +CL: net/minecraft/client/OptionInstance$UnitDouble net/minecraft/client/OptionInstance$UnitDouble +CL: net/minecraft/client/OptionInstance$UnitDouble$1 net/minecraft/client/OptionInstance$UnitDouble$1 +CL: net/minecraft/client/OptionInstance$ValueSet net/minecraft/client/OptionInstance$ValueSet +CL: net/minecraft/client/Options net/minecraft/client/Options +CL: net/minecraft/client/Options$1 net/minecraft/client/Options$1 +CL: net/minecraft/client/Options$2 net/minecraft/client/Options$2 +CL: net/minecraft/client/Options$3 net/minecraft/client/Options$3 +CL: net/minecraft/client/Options$4 net/minecraft/client/Options$4 +CL: net/minecraft/client/Options$FieldAccess net/minecraft/client/Options$FieldAccess +CL: net/minecraft/client/ParticleStatus net/minecraft/client/ParticleStatus +CL: net/minecraft/client/PeriodicNotificationManager net/minecraft/client/PeriodicNotificationManager +CL: net/minecraft/client/PeriodicNotificationManager$Notification net/minecraft/client/PeriodicNotificationManager$Notification +CL: net/minecraft/client/PeriodicNotificationManager$NotificationTask net/minecraft/client/PeriodicNotificationManager$NotificationTask +CL: net/minecraft/client/PrioritizeChunkUpdates net/minecraft/client/PrioritizeChunkUpdates +CL: net/minecraft/client/Realms32BitWarningStatus net/minecraft/client/Realms32BitWarningStatus +CL: net/minecraft/client/RecipeBookCategories net/minecraft/client/RecipeBookCategories +CL: net/minecraft/client/RecipeBookCategories$1 net/minecraft/client/RecipeBookCategories$1 +CL: net/minecraft/client/ResourceLoadStateTracker net/minecraft/client/ResourceLoadStateTracker +CL: net/minecraft/client/ResourceLoadStateTracker$RecoveryInfo net/minecraft/client/ResourceLoadStateTracker$RecoveryInfo +CL: net/minecraft/client/ResourceLoadStateTracker$ReloadReason net/minecraft/client/ResourceLoadStateTracker$ReloadReason +CL: net/minecraft/client/ResourceLoadStateTracker$ReloadState net/minecraft/client/ResourceLoadStateTracker$ReloadState +CL: net/minecraft/client/Screenshot net/minecraft/client/Screenshot +CL: net/minecraft/client/StringSplitter net/minecraft/client/StringSplitter +CL: net/minecraft/client/StringSplitter$1 net/minecraft/client/StringSplitter$1 +CL: net/minecraft/client/StringSplitter$FlatComponents net/minecraft/client/StringSplitter$FlatComponents +CL: net/minecraft/client/StringSplitter$LineBreakFinder net/minecraft/client/StringSplitter$LineBreakFinder +CL: net/minecraft/client/StringSplitter$LineComponent net/minecraft/client/StringSplitter$LineComponent +CL: net/minecraft/client/StringSplitter$LinePosConsumer net/minecraft/client/StringSplitter$LinePosConsumer +CL: net/minecraft/client/StringSplitter$WidthLimitedCharSink net/minecraft/client/StringSplitter$WidthLimitedCharSink +CL: net/minecraft/client/StringSplitter$WidthProvider net/minecraft/client/StringSplitter$WidthProvider +CL: net/minecraft/client/Timer net/minecraft/client/Timer +CL: net/minecraft/client/ToggleKeyMapping net/minecraft/client/ToggleKeyMapping +CL: net/minecraft/client/User net/minecraft/client/User +CL: net/minecraft/client/User$Type net/minecraft/client/User$Type +CL: net/minecraft/client/animation/AnimationChannel net/minecraft/client/animation/AnimationChannel +CL: net/minecraft/client/animation/AnimationChannel$Interpolation net/minecraft/client/animation/AnimationChannel$Interpolation +CL: net/minecraft/client/animation/AnimationChannel$Interpolations net/minecraft/client/animation/AnimationChannel$Interpolations +CL: net/minecraft/client/animation/AnimationChannel$Target net/minecraft/client/animation/AnimationChannel$Target +CL: net/minecraft/client/animation/AnimationChannel$Targets net/minecraft/client/animation/AnimationChannel$Targets +CL: net/minecraft/client/animation/AnimationDefinition net/minecraft/client/animation/AnimationDefinition +CL: net/minecraft/client/animation/AnimationDefinition$Builder net/minecraft/client/animation/AnimationDefinition$Builder +CL: net/minecraft/client/animation/Keyframe net/minecraft/client/animation/Keyframe +CL: net/minecraft/client/animation/KeyframeAnimations net/minecraft/client/animation/KeyframeAnimations +CL: net/minecraft/client/animation/definitions/CamelAnimation net/minecraft/client/animation/definitions/CamelAnimation +CL: net/minecraft/client/animation/definitions/FrogAnimation net/minecraft/client/animation/definitions/FrogAnimation +CL: net/minecraft/client/animation/definitions/SnifferAnimation net/minecraft/client/animation/definitions/SnifferAnimation +CL: net/minecraft/client/animation/definitions/WardenAnimation net/minecraft/client/animation/definitions/WardenAnimation +CL: net/minecraft/client/animation/definitions/package-info net/minecraft/client/animation/definitions/package-info +CL: net/minecraft/client/animation/package-info net/minecraft/client/animation/package-info +CL: net/minecraft/client/color/block/BlockColor net/minecraft/client/color/block/BlockColor +CL: net/minecraft/client/color/block/BlockColors net/minecraft/client/color/block/BlockColors +CL: net/minecraft/client/color/block/BlockTintCache net/minecraft/client/color/block/BlockTintCache +CL: net/minecraft/client/color/block/BlockTintCache$CacheData net/minecraft/client/color/block/BlockTintCache$CacheData +CL: net/minecraft/client/color/block/BlockTintCache$LatestCacheInfo net/minecraft/client/color/block/BlockTintCache$LatestCacheInfo +CL: net/minecraft/client/color/block/package-info net/minecraft/client/color/block/package-info +CL: net/minecraft/client/color/item/ItemColor net/minecraft/client/color/item/ItemColor +CL: net/minecraft/client/color/item/ItemColors net/minecraft/client/color/item/ItemColors +CL: net/minecraft/client/color/item/package-info net/minecraft/client/color/item/package-info +CL: net/minecraft/client/gui/ComponentPath net/minecraft/client/gui/ComponentPath +CL: net/minecraft/client/gui/ComponentPath$Leaf net/minecraft/client/gui/ComponentPath$Leaf +CL: net/minecraft/client/gui/ComponentPath$Path net/minecraft/client/gui/ComponentPath$Path +CL: net/minecraft/client/gui/Font net/minecraft/client/gui/Font +CL: net/minecraft/client/gui/Font$DisplayMode net/minecraft/client/gui/Font$DisplayMode +CL: net/minecraft/client/gui/Font$StringRenderOutput net/minecraft/client/gui/Font$StringRenderOutput +CL: net/minecraft/client/gui/Gui net/minecraft/client/gui/Gui +CL: net/minecraft/client/gui/Gui$HeartType net/minecraft/client/gui/Gui$HeartType +CL: net/minecraft/client/gui/GuiGraphics net/minecraft/client/gui/GuiGraphics +CL: net/minecraft/client/gui/GuiGraphics$ScissorStack net/minecraft/client/gui/GuiGraphics$ScissorStack +CL: net/minecraft/client/gui/MapRenderer net/minecraft/client/gui/MapRenderer +CL: net/minecraft/client/gui/MapRenderer$MapInstance net/minecraft/client/gui/MapRenderer$MapInstance +CL: net/minecraft/client/gui/components/AbstractButton net/minecraft/client/gui/components/AbstractButton +CL: net/minecraft/client/gui/components/AbstractOptionSliderButton net/minecraft/client/gui/components/AbstractOptionSliderButton +CL: net/minecraft/client/gui/components/AbstractScrollWidget net/minecraft/client/gui/components/AbstractScrollWidget +CL: net/minecraft/client/gui/components/AbstractSelectionList net/minecraft/client/gui/components/AbstractSelectionList +CL: net/minecraft/client/gui/components/AbstractSelectionList$1 net/minecraft/client/gui/components/AbstractSelectionList$1 +CL: net/minecraft/client/gui/components/AbstractSelectionList$Entry net/minecraft/client/gui/components/AbstractSelectionList$Entry +CL: net/minecraft/client/gui/components/AbstractSelectionList$TrackedList net/minecraft/client/gui/components/AbstractSelectionList$TrackedList +CL: net/minecraft/client/gui/components/AbstractSliderButton net/minecraft/client/gui/components/AbstractSliderButton +CL: net/minecraft/client/gui/components/AbstractStringWidget net/minecraft/client/gui/components/AbstractStringWidget +CL: net/minecraft/client/gui/components/AbstractWidget net/minecraft/client/gui/components/AbstractWidget +CL: net/minecraft/client/gui/components/AccessibilityOnboardingTextWidget net/minecraft/client/gui/components/AccessibilityOnboardingTextWidget +CL: net/minecraft/client/gui/components/BossHealthOverlay net/minecraft/client/gui/components/BossHealthOverlay +CL: net/minecraft/client/gui/components/BossHealthOverlay$1 net/minecraft/client/gui/components/BossHealthOverlay$1 +CL: net/minecraft/client/gui/components/Button net/minecraft/client/gui/components/Button +CL: net/minecraft/client/gui/components/Button$Builder net/minecraft/client/gui/components/Button$Builder +CL: net/minecraft/client/gui/components/Button$CreateNarration net/minecraft/client/gui/components/Button$CreateNarration +CL: net/minecraft/client/gui/components/Button$OnPress net/minecraft/client/gui/components/Button$OnPress +CL: net/minecraft/client/gui/components/ChatComponent net/minecraft/client/gui/components/ChatComponent +CL: net/minecraft/client/gui/components/ChatComponent$DelayedMessageDeletion net/minecraft/client/gui/components/ChatComponent$DelayedMessageDeletion +CL: net/minecraft/client/gui/components/Checkbox net/minecraft/client/gui/components/Checkbox +CL: net/minecraft/client/gui/components/CommandSuggestions net/minecraft/client/gui/components/CommandSuggestions +CL: net/minecraft/client/gui/components/CommandSuggestions$SuggestionsList net/minecraft/client/gui/components/CommandSuggestions$SuggestionsList +CL: net/minecraft/client/gui/components/CommonButtons net/minecraft/client/gui/components/CommonButtons +CL: net/minecraft/client/gui/components/ComponentRenderUtils net/minecraft/client/gui/components/ComponentRenderUtils +CL: net/minecraft/client/gui/components/ContainerObjectSelectionList net/minecraft/client/gui/components/ContainerObjectSelectionList +CL: net/minecraft/client/gui/components/ContainerObjectSelectionList$1 net/minecraft/client/gui/components/ContainerObjectSelectionList$1 +CL: net/minecraft/client/gui/components/ContainerObjectSelectionList$Entry net/minecraft/client/gui/components/ContainerObjectSelectionList$Entry +CL: net/minecraft/client/gui/components/CycleButton net/minecraft/client/gui/components/CycleButton +CL: net/minecraft/client/gui/components/CycleButton$Builder net/minecraft/client/gui/components/CycleButton$Builder +CL: net/minecraft/client/gui/components/CycleButton$OnValueChange net/minecraft/client/gui/components/CycleButton$OnValueChange +CL: net/minecraft/client/gui/components/CycleButton$ValueListSupplier net/minecraft/client/gui/components/CycleButton$ValueListSupplier +CL: net/minecraft/client/gui/components/CycleButton$ValueListSupplier$1 net/minecraft/client/gui/components/CycleButton$ValueListSupplier$1 +CL: net/minecraft/client/gui/components/CycleButton$ValueListSupplier$2 net/minecraft/client/gui/components/CycleButton$ValueListSupplier$2 +CL: net/minecraft/client/gui/components/DebugScreenOverlay net/minecraft/client/gui/components/DebugScreenOverlay +CL: net/minecraft/client/gui/components/DebugScreenOverlay$1 net/minecraft/client/gui/components/DebugScreenOverlay$1 +CL: net/minecraft/client/gui/components/DebugScreenOverlay$AllocationRateCalculator net/minecraft/client/gui/components/DebugScreenOverlay$AllocationRateCalculator +CL: net/minecraft/client/gui/components/EditBox net/minecraft/client/gui/components/EditBox +CL: net/minecraft/client/gui/components/FittingMultiLineTextWidget net/minecraft/client/gui/components/FittingMultiLineTextWidget +CL: net/minecraft/client/gui/components/ImageButton net/minecraft/client/gui/components/ImageButton +CL: net/minecraft/client/gui/components/ImageWidget net/minecraft/client/gui/components/ImageWidget +CL: net/minecraft/client/gui/components/LerpingBossEvent net/minecraft/client/gui/components/LerpingBossEvent +CL: net/minecraft/client/gui/components/LockIconButton net/minecraft/client/gui/components/LockIconButton +CL: net/minecraft/client/gui/components/LockIconButton$Icon net/minecraft/client/gui/components/LockIconButton$Icon +CL: net/minecraft/client/gui/components/LogoRenderer net/minecraft/client/gui/components/LogoRenderer +CL: net/minecraft/client/gui/components/MultiLineEditBox net/minecraft/client/gui/components/MultiLineEditBox +CL: net/minecraft/client/gui/components/MultiLineLabel net/minecraft/client/gui/components/MultiLineLabel +CL: net/minecraft/client/gui/components/MultiLineLabel$1 net/minecraft/client/gui/components/MultiLineLabel$1 +CL: net/minecraft/client/gui/components/MultiLineLabel$2 net/minecraft/client/gui/components/MultiLineLabel$2 +CL: net/minecraft/client/gui/components/MultiLineLabel$TextWithWidth net/minecraft/client/gui/components/MultiLineLabel$TextWithWidth +CL: net/minecraft/client/gui/components/MultiLineTextWidget net/minecraft/client/gui/components/MultiLineTextWidget +CL: net/minecraft/client/gui/components/MultiLineTextWidget$CacheKey net/minecraft/client/gui/components/MultiLineTextWidget$CacheKey +CL: net/minecraft/client/gui/components/MultilineTextField net/minecraft/client/gui/components/MultilineTextField +CL: net/minecraft/client/gui/components/MultilineTextField$1 net/minecraft/client/gui/components/MultilineTextField$1 +CL: net/minecraft/client/gui/components/MultilineTextField$StringView net/minecraft/client/gui/components/MultilineTextField$StringView +CL: net/minecraft/client/gui/components/ObjectSelectionList net/minecraft/client/gui/components/ObjectSelectionList +CL: net/minecraft/client/gui/components/ObjectSelectionList$Entry net/minecraft/client/gui/components/ObjectSelectionList$Entry +CL: net/minecraft/client/gui/components/OptionsList net/minecraft/client/gui/components/OptionsList +CL: net/minecraft/client/gui/components/OptionsList$Entry net/minecraft/client/gui/components/OptionsList$Entry +CL: net/minecraft/client/gui/components/PlainTextButton net/minecraft/client/gui/components/PlainTextButton +CL: net/minecraft/client/gui/components/PlayerFaceRenderer net/minecraft/client/gui/components/PlayerFaceRenderer +CL: net/minecraft/client/gui/components/PlayerTabOverlay net/minecraft/client/gui/components/PlayerTabOverlay +CL: net/minecraft/client/gui/components/PlayerTabOverlay$HealthState net/minecraft/client/gui/components/PlayerTabOverlay$HealthState +CL: net/minecraft/client/gui/components/Renderable net/minecraft/client/gui/components/Renderable +CL: net/minecraft/client/gui/components/SplashRenderer net/minecraft/client/gui/components/SplashRenderer +CL: net/minecraft/client/gui/components/StateSwitchingButton net/minecraft/client/gui/components/StateSwitchingButton +CL: net/minecraft/client/gui/components/StringWidget net/minecraft/client/gui/components/StringWidget +CL: net/minecraft/client/gui/components/SubtitleOverlay net/minecraft/client/gui/components/SubtitleOverlay +CL: net/minecraft/client/gui/components/SubtitleOverlay$Subtitle net/minecraft/client/gui/components/SubtitleOverlay$Subtitle +CL: net/minecraft/client/gui/components/TabButton net/minecraft/client/gui/components/TabButton +CL: net/minecraft/client/gui/components/TabOrderedElement net/minecraft/client/gui/components/TabOrderedElement +CL: net/minecraft/client/gui/components/TextAndImageButton net/minecraft/client/gui/components/TextAndImageButton +CL: net/minecraft/client/gui/components/TextAndImageButton$Builder net/minecraft/client/gui/components/TextAndImageButton$Builder +CL: net/minecraft/client/gui/components/Tooltip net/minecraft/client/gui/components/Tooltip +CL: net/minecraft/client/gui/components/Whence net/minecraft/client/gui/components/Whence +CL: net/minecraft/client/gui/components/events/AbstractContainerEventHandler net/minecraft/client/gui/components/events/AbstractContainerEventHandler +CL: net/minecraft/client/gui/components/events/ContainerEventHandler net/minecraft/client/gui/components/events/ContainerEventHandler +CL: net/minecraft/client/gui/components/events/GuiEventListener net/minecraft/client/gui/components/events/GuiEventListener +CL: net/minecraft/client/gui/components/events/package-info net/minecraft/client/gui/components/events/package-info +CL: net/minecraft/client/gui/components/package-info net/minecraft/client/gui/components/package-info +CL: net/minecraft/client/gui/components/spectator/SpectatorGui net/minecraft/client/gui/components/spectator/SpectatorGui +CL: net/minecraft/client/gui/components/spectator/package-info net/minecraft/client/gui/components/spectator/package-info +CL: net/minecraft/client/gui/components/tabs/GridLayoutTab net/minecraft/client/gui/components/tabs/GridLayoutTab +CL: net/minecraft/client/gui/components/tabs/Tab net/minecraft/client/gui/components/tabs/Tab +CL: net/minecraft/client/gui/components/tabs/TabManager net/minecraft/client/gui/components/tabs/TabManager +CL: net/minecraft/client/gui/components/tabs/TabNavigationBar net/minecraft/client/gui/components/tabs/TabNavigationBar +CL: net/minecraft/client/gui/components/tabs/TabNavigationBar$Builder net/minecraft/client/gui/components/tabs/TabNavigationBar$Builder +CL: net/minecraft/client/gui/components/tabs/package-info net/minecraft/client/gui/components/tabs/package-info +CL: net/minecraft/client/gui/components/toasts/AdvancementToast net/minecraft/client/gui/components/toasts/AdvancementToast +CL: net/minecraft/client/gui/components/toasts/RecipeToast net/minecraft/client/gui/components/toasts/RecipeToast +CL: net/minecraft/client/gui/components/toasts/SystemToast net/minecraft/client/gui/components/toasts/SystemToast +CL: net/minecraft/client/gui/components/toasts/SystemToast$SystemToastIds net/minecraft/client/gui/components/toasts/SystemToast$SystemToastIds +CL: net/minecraft/client/gui/components/toasts/Toast net/minecraft/client/gui/components/toasts/Toast +CL: net/minecraft/client/gui/components/toasts/Toast$Visibility net/minecraft/client/gui/components/toasts/Toast$Visibility +CL: net/minecraft/client/gui/components/toasts/ToastComponent net/minecraft/client/gui/components/toasts/ToastComponent +CL: net/minecraft/client/gui/components/toasts/ToastComponent$ToastInstance net/minecraft/client/gui/components/toasts/ToastComponent$ToastInstance +CL: net/minecraft/client/gui/components/toasts/TutorialToast net/minecraft/client/gui/components/toasts/TutorialToast +CL: net/minecraft/client/gui/components/toasts/TutorialToast$Icons net/minecraft/client/gui/components/toasts/TutorialToast$Icons +CL: net/minecraft/client/gui/components/toasts/package-info net/minecraft/client/gui/components/toasts/package-info +CL: net/minecraft/client/gui/font/AllMissingGlyphProvider net/minecraft/client/gui/font/AllMissingGlyphProvider +CL: net/minecraft/client/gui/font/CodepointMap net/minecraft/client/gui/font/CodepointMap +CL: net/minecraft/client/gui/font/CodepointMap$Output net/minecraft/client/gui/font/CodepointMap$Output +CL: net/minecraft/client/gui/font/FontManager net/minecraft/client/gui/font/FontManager +CL: net/minecraft/client/gui/font/FontManager$BuilderId net/minecraft/client/gui/font/FontManager$BuilderId +CL: net/minecraft/client/gui/font/FontManager$BuilderResult net/minecraft/client/gui/font/FontManager$BuilderResult +CL: net/minecraft/client/gui/font/FontManager$FontDefinitionFile net/minecraft/client/gui/font/FontManager$FontDefinitionFile +CL: net/minecraft/client/gui/font/FontManager$Preparation net/minecraft/client/gui/font/FontManager$Preparation +CL: net/minecraft/client/gui/font/FontManager$UnresolvedBuilderBundle net/minecraft/client/gui/font/FontManager$UnresolvedBuilderBundle +CL: net/minecraft/client/gui/font/FontSet net/minecraft/client/gui/font/FontSet +CL: net/minecraft/client/gui/font/FontSet$GlyphInfoFilter net/minecraft/client/gui/font/FontSet$GlyphInfoFilter +CL: net/minecraft/client/gui/font/FontTexture net/minecraft/client/gui/font/FontTexture +CL: net/minecraft/client/gui/font/FontTexture$Node net/minecraft/client/gui/font/FontTexture$Node +CL: net/minecraft/client/gui/font/GlyphRenderTypes net/minecraft/client/gui/font/GlyphRenderTypes +CL: net/minecraft/client/gui/font/GlyphRenderTypes$1 net/minecraft/client/gui/font/GlyphRenderTypes$1 +CL: net/minecraft/client/gui/font/TextFieldHelper net/minecraft/client/gui/font/TextFieldHelper +CL: net/minecraft/client/gui/font/TextFieldHelper$1 net/minecraft/client/gui/font/TextFieldHelper$1 +CL: net/minecraft/client/gui/font/TextFieldHelper$CursorStep net/minecraft/client/gui/font/TextFieldHelper$CursorStep +CL: net/minecraft/client/gui/font/glyphs/BakedGlyph net/minecraft/client/gui/font/glyphs/BakedGlyph +CL: net/minecraft/client/gui/font/glyphs/BakedGlyph$Effect net/minecraft/client/gui/font/glyphs/BakedGlyph$Effect +CL: net/minecraft/client/gui/font/glyphs/EmptyGlyph net/minecraft/client/gui/font/glyphs/EmptyGlyph +CL: net/minecraft/client/gui/font/glyphs/SpecialGlyphs net/minecraft/client/gui/font/glyphs/SpecialGlyphs +CL: net/minecraft/client/gui/font/glyphs/SpecialGlyphs$1 net/minecraft/client/gui/font/glyphs/SpecialGlyphs$1 +CL: net/minecraft/client/gui/font/glyphs/SpecialGlyphs$PixelProvider net/minecraft/client/gui/font/glyphs/SpecialGlyphs$PixelProvider +CL: net/minecraft/client/gui/font/glyphs/package-info net/minecraft/client/gui/font/glyphs/package-info +CL: net/minecraft/client/gui/font/package-info net/minecraft/client/gui/font/package-info +CL: net/minecraft/client/gui/font/providers/BitmapProvider net/minecraft/client/gui/font/providers/BitmapProvider +CL: net/minecraft/client/gui/font/providers/BitmapProvider$Definition net/minecraft/client/gui/font/providers/BitmapProvider$Definition +CL: net/minecraft/client/gui/font/providers/BitmapProvider$Glyph net/minecraft/client/gui/font/providers/BitmapProvider$Glyph +CL: net/minecraft/client/gui/font/providers/BitmapProvider$Glyph$1 net/minecraft/client/gui/font/providers/BitmapProvider$Glyph$1 +CL: net/minecraft/client/gui/font/providers/GlyphProviderDefinition net/minecraft/client/gui/font/providers/GlyphProviderDefinition +CL: net/minecraft/client/gui/font/providers/GlyphProviderDefinition$Loader net/minecraft/client/gui/font/providers/GlyphProviderDefinition$Loader +CL: net/minecraft/client/gui/font/providers/GlyphProviderDefinition$Reference net/minecraft/client/gui/font/providers/GlyphProviderDefinition$Reference +CL: net/minecraft/client/gui/font/providers/GlyphProviderType net/minecraft/client/gui/font/providers/GlyphProviderType +CL: net/minecraft/client/gui/font/providers/ProviderReferenceDefinition net/minecraft/client/gui/font/providers/ProviderReferenceDefinition +CL: net/minecraft/client/gui/font/providers/TrueTypeGlyphProviderDefinition net/minecraft/client/gui/font/providers/TrueTypeGlyphProviderDefinition +CL: net/minecraft/client/gui/font/providers/TrueTypeGlyphProviderDefinition$Shift net/minecraft/client/gui/font/providers/TrueTypeGlyphProviderDefinition$Shift +CL: net/minecraft/client/gui/font/providers/UnihexProvider net/minecraft/client/gui/font/providers/UnihexProvider +CL: net/minecraft/client/gui/font/providers/UnihexProvider$ByteContents net/minecraft/client/gui/font/providers/UnihexProvider$ByteContents +CL: net/minecraft/client/gui/font/providers/UnihexProvider$Definition net/minecraft/client/gui/font/providers/UnihexProvider$Definition +CL: net/minecraft/client/gui/font/providers/UnihexProvider$Dimensions net/minecraft/client/gui/font/providers/UnihexProvider$Dimensions +CL: net/minecraft/client/gui/font/providers/UnihexProvider$Glyph net/minecraft/client/gui/font/providers/UnihexProvider$Glyph +CL: net/minecraft/client/gui/font/providers/UnihexProvider$Glyph$1 net/minecraft/client/gui/font/providers/UnihexProvider$Glyph$1 +CL: net/minecraft/client/gui/font/providers/UnihexProvider$IntContents net/minecraft/client/gui/font/providers/UnihexProvider$IntContents +CL: net/minecraft/client/gui/font/providers/UnihexProvider$LineData net/minecraft/client/gui/font/providers/UnihexProvider$LineData +CL: net/minecraft/client/gui/font/providers/UnihexProvider$OverrideRange net/minecraft/client/gui/font/providers/UnihexProvider$OverrideRange +CL: net/minecraft/client/gui/font/providers/UnihexProvider$ReaderOutput net/minecraft/client/gui/font/providers/UnihexProvider$ReaderOutput +CL: net/minecraft/client/gui/font/providers/UnihexProvider$ShortContents net/minecraft/client/gui/font/providers/UnihexProvider$ShortContents +CL: net/minecraft/client/gui/font/providers/package-info net/minecraft/client/gui/font/providers/package-info +CL: net/minecraft/client/gui/layouts/AbstractLayout net/minecraft/client/gui/layouts/AbstractLayout +CL: net/minecraft/client/gui/layouts/AbstractLayout$AbstractChildWrapper net/minecraft/client/gui/layouts/AbstractLayout$AbstractChildWrapper +CL: net/minecraft/client/gui/layouts/FrameLayout net/minecraft/client/gui/layouts/FrameLayout +CL: net/minecraft/client/gui/layouts/FrameLayout$ChildContainer net/minecraft/client/gui/layouts/FrameLayout$ChildContainer +CL: net/minecraft/client/gui/layouts/GridLayout net/minecraft/client/gui/layouts/GridLayout +CL: net/minecraft/client/gui/layouts/GridLayout$CellInhabitant net/minecraft/client/gui/layouts/GridLayout$CellInhabitant +CL: net/minecraft/client/gui/layouts/GridLayout$RowHelper net/minecraft/client/gui/layouts/GridLayout$RowHelper +CL: net/minecraft/client/gui/layouts/HeaderAndFooterLayout net/minecraft/client/gui/layouts/HeaderAndFooterLayout +CL: net/minecraft/client/gui/layouts/Layout net/minecraft/client/gui/layouts/Layout +CL: net/minecraft/client/gui/layouts/LayoutElement net/minecraft/client/gui/layouts/LayoutElement +CL: net/minecraft/client/gui/layouts/LayoutSettings net/minecraft/client/gui/layouts/LayoutSettings +CL: net/minecraft/client/gui/layouts/LayoutSettings$LayoutSettingsImpl net/minecraft/client/gui/layouts/LayoutSettings$LayoutSettingsImpl +CL: net/minecraft/client/gui/layouts/LinearLayout net/minecraft/client/gui/layouts/LinearLayout +CL: net/minecraft/client/gui/layouts/LinearLayout$1 net/minecraft/client/gui/layouts/LinearLayout$1 +CL: net/minecraft/client/gui/layouts/LinearLayout$ChildContainer net/minecraft/client/gui/layouts/LinearLayout$ChildContainer +CL: net/minecraft/client/gui/layouts/LinearLayout$Orientation net/minecraft/client/gui/layouts/LinearLayout$Orientation +CL: net/minecraft/client/gui/layouts/SpacerElement net/minecraft/client/gui/layouts/SpacerElement +CL: net/minecraft/client/gui/layouts/package-info net/minecraft/client/gui/layouts/package-info +CL: net/minecraft/client/gui/narration/NarratableEntry net/minecraft/client/gui/narration/NarratableEntry +CL: net/minecraft/client/gui/narration/NarratableEntry$NarrationPriority net/minecraft/client/gui/narration/NarratableEntry$NarrationPriority +CL: net/minecraft/client/gui/narration/NarratedElementType net/minecraft/client/gui/narration/NarratedElementType +CL: net/minecraft/client/gui/narration/NarrationElementOutput net/minecraft/client/gui/narration/NarrationElementOutput +CL: net/minecraft/client/gui/narration/NarrationSupplier net/minecraft/client/gui/narration/NarrationSupplier +CL: net/minecraft/client/gui/narration/NarrationThunk net/minecraft/client/gui/narration/NarrationThunk +CL: net/minecraft/client/gui/narration/ScreenNarrationCollector net/minecraft/client/gui/narration/ScreenNarrationCollector +CL: net/minecraft/client/gui/narration/ScreenNarrationCollector$1 net/minecraft/client/gui/narration/ScreenNarrationCollector$1 +CL: net/minecraft/client/gui/narration/ScreenNarrationCollector$EntryKey net/minecraft/client/gui/narration/ScreenNarrationCollector$EntryKey +CL: net/minecraft/client/gui/narration/ScreenNarrationCollector$NarrationEntry net/minecraft/client/gui/narration/ScreenNarrationCollector$NarrationEntry +CL: net/minecraft/client/gui/narration/ScreenNarrationCollector$Output net/minecraft/client/gui/narration/ScreenNarrationCollector$Output +CL: net/minecraft/client/gui/narration/package-info net/minecraft/client/gui/narration/package-info +CL: net/minecraft/client/gui/navigation/CommonInputs net/minecraft/client/gui/navigation/CommonInputs +CL: net/minecraft/client/gui/navigation/FocusNavigationEvent net/minecraft/client/gui/navigation/FocusNavigationEvent +CL: net/minecraft/client/gui/navigation/FocusNavigationEvent$ArrowNavigation net/minecraft/client/gui/navigation/FocusNavigationEvent$ArrowNavigation +CL: net/minecraft/client/gui/navigation/FocusNavigationEvent$InitialFocus net/minecraft/client/gui/navigation/FocusNavigationEvent$InitialFocus +CL: net/minecraft/client/gui/navigation/FocusNavigationEvent$TabNavigation net/minecraft/client/gui/navigation/FocusNavigationEvent$TabNavigation +CL: net/minecraft/client/gui/navigation/ScreenAxis net/minecraft/client/gui/navigation/ScreenAxis +CL: net/minecraft/client/gui/navigation/ScreenAxis$1 net/minecraft/client/gui/navigation/ScreenAxis$1 +CL: net/minecraft/client/gui/navigation/ScreenDirection net/minecraft/client/gui/navigation/ScreenDirection +CL: net/minecraft/client/gui/navigation/ScreenDirection$1 net/minecraft/client/gui/navigation/ScreenDirection$1 +CL: net/minecraft/client/gui/navigation/ScreenPosition net/minecraft/client/gui/navigation/ScreenPosition +CL: net/minecraft/client/gui/navigation/ScreenPosition$1 net/minecraft/client/gui/navigation/ScreenPosition$1 +CL: net/minecraft/client/gui/navigation/ScreenRectangle net/minecraft/client/gui/navigation/ScreenRectangle +CL: net/minecraft/client/gui/navigation/ScreenRectangle$1 net/minecraft/client/gui/navigation/ScreenRectangle$1 +CL: net/minecraft/client/gui/navigation/package-info net/minecraft/client/gui/navigation/package-info +CL: net/minecraft/client/gui/package-info net/minecraft/client/gui/package-info +CL: net/minecraft/client/gui/screens/AccessibilityOnboardingScreen net/minecraft/client/gui/screens/AccessibilityOnboardingScreen +CL: net/minecraft/client/gui/screens/AccessibilityOptionsScreen net/minecraft/client/gui/screens/AccessibilityOptionsScreen +CL: net/minecraft/client/gui/screens/AlertScreen net/minecraft/client/gui/screens/AlertScreen +CL: net/minecraft/client/gui/screens/BackupConfirmScreen net/minecraft/client/gui/screens/BackupConfirmScreen +CL: net/minecraft/client/gui/screens/BackupConfirmScreen$Listener net/minecraft/client/gui/screens/BackupConfirmScreen$Listener +CL: net/minecraft/client/gui/screens/BanNoticeScreen net/minecraft/client/gui/screens/BanNoticeScreen +CL: net/minecraft/client/gui/screens/ChatOptionsScreen net/minecraft/client/gui/screens/ChatOptionsScreen +CL: net/minecraft/client/gui/screens/ChatScreen net/minecraft/client/gui/screens/ChatScreen +CL: net/minecraft/client/gui/screens/ChatScreen$1 net/minecraft/client/gui/screens/ChatScreen$1 +CL: net/minecraft/client/gui/screens/ConfirmLinkScreen net/minecraft/client/gui/screens/ConfirmLinkScreen +CL: net/minecraft/client/gui/screens/ConfirmScreen net/minecraft/client/gui/screens/ConfirmScreen +CL: net/minecraft/client/gui/screens/ConnectScreen net/minecraft/client/gui/screens/ConnectScreen +CL: net/minecraft/client/gui/screens/ConnectScreen$1 net/minecraft/client/gui/screens/ConnectScreen$1 +CL: net/minecraft/client/gui/screens/CreateBuffetWorldScreen net/minecraft/client/gui/screens/CreateBuffetWorldScreen +CL: net/minecraft/client/gui/screens/CreateBuffetWorldScreen$BiomeList net/minecraft/client/gui/screens/CreateBuffetWorldScreen$BiomeList +CL: net/minecraft/client/gui/screens/CreateBuffetWorldScreen$BiomeList$Entry net/minecraft/client/gui/screens/CreateBuffetWorldScreen$BiomeList$Entry +CL: net/minecraft/client/gui/screens/CreateFlatWorldScreen net/minecraft/client/gui/screens/CreateFlatWorldScreen +CL: net/minecraft/client/gui/screens/CreateFlatWorldScreen$DetailsList net/minecraft/client/gui/screens/CreateFlatWorldScreen$DetailsList +CL: net/minecraft/client/gui/screens/CreateFlatWorldScreen$DetailsList$Entry net/minecraft/client/gui/screens/CreateFlatWorldScreen$DetailsList$Entry +CL: net/minecraft/client/gui/screens/CreditsAndAttributionScreen net/minecraft/client/gui/screens/CreditsAndAttributionScreen +CL: net/minecraft/client/gui/screens/DatapackLoadFailureScreen net/minecraft/client/gui/screens/DatapackLoadFailureScreen +CL: net/minecraft/client/gui/screens/DeathScreen net/minecraft/client/gui/screens/DeathScreen +CL: net/minecraft/client/gui/screens/DeathScreen$TitleConfirmScreen net/minecraft/client/gui/screens/DeathScreen$TitleConfirmScreen +CL: net/minecraft/client/gui/screens/DemoIntroScreen net/minecraft/client/gui/screens/DemoIntroScreen +CL: net/minecraft/client/gui/screens/DirectJoinServerScreen net/minecraft/client/gui/screens/DirectJoinServerScreen +CL: net/minecraft/client/gui/screens/DisconnectedScreen net/minecraft/client/gui/screens/DisconnectedScreen +CL: net/minecraft/client/gui/screens/EditServerScreen net/minecraft/client/gui/screens/EditServerScreen +CL: net/minecraft/client/gui/screens/ErrorScreen net/minecraft/client/gui/screens/ErrorScreen +CL: net/minecraft/client/gui/screens/FaviconTexture net/minecraft/client/gui/screens/FaviconTexture +CL: net/minecraft/client/gui/screens/GenericDirtMessageScreen net/minecraft/client/gui/screens/GenericDirtMessageScreen +CL: net/minecraft/client/gui/screens/GenericWaitingScreen net/minecraft/client/gui/screens/GenericWaitingScreen +CL: net/minecraft/client/gui/screens/InBedChatScreen net/minecraft/client/gui/screens/InBedChatScreen +CL: net/minecraft/client/gui/screens/LanguageSelectScreen net/minecraft/client/gui/screens/LanguageSelectScreen +CL: net/minecraft/client/gui/screens/LanguageSelectScreen$LanguageSelectionList net/minecraft/client/gui/screens/LanguageSelectScreen$LanguageSelectionList +CL: net/minecraft/client/gui/screens/LanguageSelectScreen$LanguageSelectionList$Entry net/minecraft/client/gui/screens/LanguageSelectScreen$LanguageSelectionList$Entry +CL: net/minecraft/client/gui/screens/LevelLoadingScreen net/minecraft/client/gui/screens/LevelLoadingScreen +CL: net/minecraft/client/gui/screens/LoadingDotsText net/minecraft/client/gui/screens/LoadingDotsText +CL: net/minecraft/client/gui/screens/LoadingOverlay net/minecraft/client/gui/screens/LoadingOverlay +CL: net/minecraft/client/gui/screens/LoadingOverlay$LogoTexture net/minecraft/client/gui/screens/LoadingOverlay$LogoTexture +CL: net/minecraft/client/gui/screens/MenuScreens net/minecraft/client/gui/screens/MenuScreens +CL: net/minecraft/client/gui/screens/MenuScreens$ScreenConstructor net/minecraft/client/gui/screens/MenuScreens$ScreenConstructor +CL: net/minecraft/client/gui/screens/MouseSettingsScreen net/minecraft/client/gui/screens/MouseSettingsScreen +CL: net/minecraft/client/gui/screens/OnlineOptionsScreen net/minecraft/client/gui/screens/OnlineOptionsScreen +CL: net/minecraft/client/gui/screens/OptionsScreen net/minecraft/client/gui/screens/OptionsScreen +CL: net/minecraft/client/gui/screens/OptionsSubScreen net/minecraft/client/gui/screens/OptionsSubScreen +CL: net/minecraft/client/gui/screens/OutOfMemoryScreen net/minecraft/client/gui/screens/OutOfMemoryScreen +CL: net/minecraft/client/gui/screens/Overlay net/minecraft/client/gui/screens/Overlay +CL: net/minecraft/client/gui/screens/PauseScreen net/minecraft/client/gui/screens/PauseScreen +CL: net/minecraft/client/gui/screens/PopupScreen net/minecraft/client/gui/screens/PopupScreen +CL: net/minecraft/client/gui/screens/PopupScreen$ButtonOption net/minecraft/client/gui/screens/PopupScreen$ButtonOption +CL: net/minecraft/client/gui/screens/PresetFlatWorldScreen net/minecraft/client/gui/screens/PresetFlatWorldScreen +CL: net/minecraft/client/gui/screens/PresetFlatWorldScreen$PresetsList net/minecraft/client/gui/screens/PresetFlatWorldScreen$PresetsList +CL: net/minecraft/client/gui/screens/PresetFlatWorldScreen$PresetsList$Entry net/minecraft/client/gui/screens/PresetFlatWorldScreen$PresetsList$Entry +CL: net/minecraft/client/gui/screens/ProgressScreen net/minecraft/client/gui/screens/ProgressScreen +CL: net/minecraft/client/gui/screens/ReceivingLevelScreen net/minecraft/client/gui/screens/ReceivingLevelScreen +CL: net/minecraft/client/gui/screens/Screen net/minecraft/client/gui/screens/Screen +CL: net/minecraft/client/gui/screens/Screen$DeferredTooltipRendering net/minecraft/client/gui/screens/Screen$DeferredTooltipRendering +CL: net/minecraft/client/gui/screens/Screen$NarratableSearchResult net/minecraft/client/gui/screens/Screen$NarratableSearchResult +CL: net/minecraft/client/gui/screens/ShareToLanScreen net/minecraft/client/gui/screens/ShareToLanScreen +CL: net/minecraft/client/gui/screens/SimpleOptionsSubScreen net/minecraft/client/gui/screens/SimpleOptionsSubScreen +CL: net/minecraft/client/gui/screens/SkinCustomizationScreen net/minecraft/client/gui/screens/SkinCustomizationScreen +CL: net/minecraft/client/gui/screens/SoundOptionsScreen net/minecraft/client/gui/screens/SoundOptionsScreen +CL: net/minecraft/client/gui/screens/SymlinkWarningScreen net/minecraft/client/gui/screens/SymlinkWarningScreen +CL: net/minecraft/client/gui/screens/TitleScreen net/minecraft/client/gui/screens/TitleScreen +CL: net/minecraft/client/gui/screens/TitleScreen$WarningLabel net/minecraft/client/gui/screens/TitleScreen$WarningLabel +CL: net/minecraft/client/gui/screens/VideoSettingsScreen net/minecraft/client/gui/screens/VideoSettingsScreen +CL: net/minecraft/client/gui/screens/WinScreen net/minecraft/client/gui/screens/WinScreen +CL: net/minecraft/client/gui/screens/WinScreen$CreditsReader net/minecraft/client/gui/screens/WinScreen$CreditsReader +CL: net/minecraft/client/gui/screens/achievement/StatsScreen net/minecraft/client/gui/screens/achievement/StatsScreen +CL: net/minecraft/client/gui/screens/achievement/StatsScreen$GeneralStatisticsList net/minecraft/client/gui/screens/achievement/StatsScreen$GeneralStatisticsList +CL: net/minecraft/client/gui/screens/achievement/StatsScreen$GeneralStatisticsList$Entry net/minecraft/client/gui/screens/achievement/StatsScreen$GeneralStatisticsList$Entry +CL: net/minecraft/client/gui/screens/achievement/StatsScreen$ItemStatisticsList net/minecraft/client/gui/screens/achievement/StatsScreen$ItemStatisticsList +CL: net/minecraft/client/gui/screens/achievement/StatsScreen$ItemStatisticsList$ItemRow net/minecraft/client/gui/screens/achievement/StatsScreen$ItemStatisticsList$ItemRow +CL: net/minecraft/client/gui/screens/achievement/StatsScreen$ItemStatisticsList$ItemRowComparator net/minecraft/client/gui/screens/achievement/StatsScreen$ItemStatisticsList$ItemRowComparator +CL: net/minecraft/client/gui/screens/achievement/StatsScreen$MobsStatisticsList net/minecraft/client/gui/screens/achievement/StatsScreen$MobsStatisticsList +CL: net/minecraft/client/gui/screens/achievement/StatsScreen$MobsStatisticsList$MobRow net/minecraft/client/gui/screens/achievement/StatsScreen$MobsStatisticsList$MobRow +CL: net/minecraft/client/gui/screens/achievement/StatsUpdateListener net/minecraft/client/gui/screens/achievement/StatsUpdateListener +CL: net/minecraft/client/gui/screens/achievement/package-info net/minecraft/client/gui/screens/achievement/package-info +CL: net/minecraft/client/gui/screens/advancements/AdvancementTab net/minecraft/client/gui/screens/advancements/AdvancementTab +CL: net/minecraft/client/gui/screens/advancements/AdvancementTabType net/minecraft/client/gui/screens/advancements/AdvancementTabType +CL: net/minecraft/client/gui/screens/advancements/AdvancementTabType$1 net/minecraft/client/gui/screens/advancements/AdvancementTabType$1 +CL: net/minecraft/client/gui/screens/advancements/AdvancementWidget net/minecraft/client/gui/screens/advancements/AdvancementWidget +CL: net/minecraft/client/gui/screens/advancements/AdvancementWidgetType net/minecraft/client/gui/screens/advancements/AdvancementWidgetType +CL: net/minecraft/client/gui/screens/advancements/AdvancementsScreen net/minecraft/client/gui/screens/advancements/AdvancementsScreen +CL: net/minecraft/client/gui/screens/advancements/package-info net/minecraft/client/gui/screens/advancements/package-info +CL: net/minecraft/client/gui/screens/controls/ControlsScreen net/minecraft/client/gui/screens/controls/ControlsScreen +CL: net/minecraft/client/gui/screens/controls/KeyBindsList net/minecraft/client/gui/screens/controls/KeyBindsList +CL: net/minecraft/client/gui/screens/controls/KeyBindsList$CategoryEntry net/minecraft/client/gui/screens/controls/KeyBindsList$CategoryEntry +CL: net/minecraft/client/gui/screens/controls/KeyBindsList$CategoryEntry$1 net/minecraft/client/gui/screens/controls/KeyBindsList$CategoryEntry$1 +CL: net/minecraft/client/gui/screens/controls/KeyBindsList$Entry net/minecraft/client/gui/screens/controls/KeyBindsList$Entry +CL: net/minecraft/client/gui/screens/controls/KeyBindsList$KeyEntry net/minecraft/client/gui/screens/controls/KeyBindsList$KeyEntry +CL: net/minecraft/client/gui/screens/controls/KeyBindsScreen net/minecraft/client/gui/screens/controls/KeyBindsScreen +CL: net/minecraft/client/gui/screens/controls/package-info net/minecraft/client/gui/screens/controls/package-info +CL: net/minecraft/client/gui/screens/debug/GameModeSwitcherScreen net/minecraft/client/gui/screens/debug/GameModeSwitcherScreen +CL: net/minecraft/client/gui/screens/debug/GameModeSwitcherScreen$1 net/minecraft/client/gui/screens/debug/GameModeSwitcherScreen$1 +CL: net/minecraft/client/gui/screens/debug/GameModeSwitcherScreen$GameModeIcon net/minecraft/client/gui/screens/debug/GameModeSwitcherScreen$GameModeIcon +CL: net/minecraft/client/gui/screens/debug/GameModeSwitcherScreen$GameModeSlot net/minecraft/client/gui/screens/debug/GameModeSwitcherScreen$GameModeSlot +CL: net/minecraft/client/gui/screens/debug/package-info net/minecraft/client/gui/screens/debug/package-info +CL: net/minecraft/client/gui/screens/inventory/AbstractCommandBlockEditScreen net/minecraft/client/gui/screens/inventory/AbstractCommandBlockEditScreen +CL: net/minecraft/client/gui/screens/inventory/AbstractCommandBlockEditScreen$1 net/minecraft/client/gui/screens/inventory/AbstractCommandBlockEditScreen$1 +CL: net/minecraft/client/gui/screens/inventory/AbstractContainerScreen net/minecraft/client/gui/screens/inventory/AbstractContainerScreen +CL: net/minecraft/client/gui/screens/inventory/AbstractFurnaceScreen net/minecraft/client/gui/screens/inventory/AbstractFurnaceScreen +CL: net/minecraft/client/gui/screens/inventory/AbstractSignEditScreen net/minecraft/client/gui/screens/inventory/AbstractSignEditScreen +CL: net/minecraft/client/gui/screens/inventory/AnvilScreen net/minecraft/client/gui/screens/inventory/AnvilScreen +CL: net/minecraft/client/gui/screens/inventory/BeaconScreen net/minecraft/client/gui/screens/inventory/BeaconScreen +CL: net/minecraft/client/gui/screens/inventory/BeaconScreen$1 net/minecraft/client/gui/screens/inventory/BeaconScreen$1 +CL: net/minecraft/client/gui/screens/inventory/BeaconScreen$BeaconButton net/minecraft/client/gui/screens/inventory/BeaconScreen$BeaconButton +CL: net/minecraft/client/gui/screens/inventory/BeaconScreen$BeaconCancelButton net/minecraft/client/gui/screens/inventory/BeaconScreen$BeaconCancelButton +CL: net/minecraft/client/gui/screens/inventory/BeaconScreen$BeaconConfirmButton net/minecraft/client/gui/screens/inventory/BeaconScreen$BeaconConfirmButton +CL: net/minecraft/client/gui/screens/inventory/BeaconScreen$BeaconPowerButton net/minecraft/client/gui/screens/inventory/BeaconScreen$BeaconPowerButton +CL: net/minecraft/client/gui/screens/inventory/BeaconScreen$BeaconScreenButton net/minecraft/client/gui/screens/inventory/BeaconScreen$BeaconScreenButton +CL: net/minecraft/client/gui/screens/inventory/BeaconScreen$BeaconSpriteScreenButton net/minecraft/client/gui/screens/inventory/BeaconScreen$BeaconSpriteScreenButton +CL: net/minecraft/client/gui/screens/inventory/BeaconScreen$BeaconUpgradePowerButton net/minecraft/client/gui/screens/inventory/BeaconScreen$BeaconUpgradePowerButton +CL: net/minecraft/client/gui/screens/inventory/BlastFurnaceScreen net/minecraft/client/gui/screens/inventory/BlastFurnaceScreen +CL: net/minecraft/client/gui/screens/inventory/BookEditScreen net/minecraft/client/gui/screens/inventory/BookEditScreen +CL: net/minecraft/client/gui/screens/inventory/BookEditScreen$DisplayCache net/minecraft/client/gui/screens/inventory/BookEditScreen$DisplayCache +CL: net/minecraft/client/gui/screens/inventory/BookEditScreen$LineInfo net/minecraft/client/gui/screens/inventory/BookEditScreen$LineInfo +CL: net/minecraft/client/gui/screens/inventory/BookEditScreen$Pos2i net/minecraft/client/gui/screens/inventory/BookEditScreen$Pos2i +CL: net/minecraft/client/gui/screens/inventory/BookViewScreen net/minecraft/client/gui/screens/inventory/BookViewScreen +CL: net/minecraft/client/gui/screens/inventory/BookViewScreen$1 net/minecraft/client/gui/screens/inventory/BookViewScreen$1 +CL: net/minecraft/client/gui/screens/inventory/BookViewScreen$BookAccess net/minecraft/client/gui/screens/inventory/BookViewScreen$BookAccess +CL: net/minecraft/client/gui/screens/inventory/BookViewScreen$WritableBookAccess net/minecraft/client/gui/screens/inventory/BookViewScreen$WritableBookAccess +CL: net/minecraft/client/gui/screens/inventory/BookViewScreen$WrittenBookAccess net/minecraft/client/gui/screens/inventory/BookViewScreen$WrittenBookAccess +CL: net/minecraft/client/gui/screens/inventory/BrewingStandScreen net/minecraft/client/gui/screens/inventory/BrewingStandScreen +CL: net/minecraft/client/gui/screens/inventory/CartographyTableScreen net/minecraft/client/gui/screens/inventory/CartographyTableScreen +CL: net/minecraft/client/gui/screens/inventory/CommandBlockEditScreen net/minecraft/client/gui/screens/inventory/CommandBlockEditScreen +CL: net/minecraft/client/gui/screens/inventory/CommandBlockEditScreen$1 net/minecraft/client/gui/screens/inventory/CommandBlockEditScreen$1 +CL: net/minecraft/client/gui/screens/inventory/ContainerScreen net/minecraft/client/gui/screens/inventory/ContainerScreen +CL: net/minecraft/client/gui/screens/inventory/CraftingScreen net/minecraft/client/gui/screens/inventory/CraftingScreen +CL: net/minecraft/client/gui/screens/inventory/CreativeInventoryListener net/minecraft/client/gui/screens/inventory/CreativeInventoryListener +CL: net/minecraft/client/gui/screens/inventory/CreativeModeInventoryScreen net/minecraft/client/gui/screens/inventory/CreativeModeInventoryScreen +CL: net/minecraft/client/gui/screens/inventory/CreativeModeInventoryScreen$CustomCreativeSlot net/minecraft/client/gui/screens/inventory/CreativeModeInventoryScreen$CustomCreativeSlot +CL: net/minecraft/client/gui/screens/inventory/CreativeModeInventoryScreen$ItemPickerMenu net/minecraft/client/gui/screens/inventory/CreativeModeInventoryScreen$ItemPickerMenu +CL: net/minecraft/client/gui/screens/inventory/CreativeModeInventoryScreen$SlotWrapper net/minecraft/client/gui/screens/inventory/CreativeModeInventoryScreen$SlotWrapper +CL: net/minecraft/client/gui/screens/inventory/CyclingSlotBackground net/minecraft/client/gui/screens/inventory/CyclingSlotBackground +CL: net/minecraft/client/gui/screens/inventory/DispenserScreen net/minecraft/client/gui/screens/inventory/DispenserScreen +CL: net/minecraft/client/gui/screens/inventory/EffectRenderingInventoryScreen net/minecraft/client/gui/screens/inventory/EffectRenderingInventoryScreen +CL: net/minecraft/client/gui/screens/inventory/EnchantmentNames net/minecraft/client/gui/screens/inventory/EnchantmentNames +CL: net/minecraft/client/gui/screens/inventory/EnchantmentScreen net/minecraft/client/gui/screens/inventory/EnchantmentScreen +CL: net/minecraft/client/gui/screens/inventory/FurnaceScreen net/minecraft/client/gui/screens/inventory/FurnaceScreen +CL: net/minecraft/client/gui/screens/inventory/GrindstoneScreen net/minecraft/client/gui/screens/inventory/GrindstoneScreen +CL: net/minecraft/client/gui/screens/inventory/HangingSignEditScreen net/minecraft/client/gui/screens/inventory/HangingSignEditScreen +CL: net/minecraft/client/gui/screens/inventory/HopperScreen net/minecraft/client/gui/screens/inventory/HopperScreen +CL: net/minecraft/client/gui/screens/inventory/HorseInventoryScreen net/minecraft/client/gui/screens/inventory/HorseInventoryScreen +CL: net/minecraft/client/gui/screens/inventory/InventoryScreen net/minecraft/client/gui/screens/inventory/InventoryScreen +CL: net/minecraft/client/gui/screens/inventory/ItemCombinerScreen net/minecraft/client/gui/screens/inventory/ItemCombinerScreen +CL: net/minecraft/client/gui/screens/inventory/JigsawBlockEditScreen net/minecraft/client/gui/screens/inventory/JigsawBlockEditScreen +CL: net/minecraft/client/gui/screens/inventory/JigsawBlockEditScreen$1 net/minecraft/client/gui/screens/inventory/JigsawBlockEditScreen$1 +CL: net/minecraft/client/gui/screens/inventory/LecternScreen net/minecraft/client/gui/screens/inventory/LecternScreen +CL: net/minecraft/client/gui/screens/inventory/LecternScreen$1 net/minecraft/client/gui/screens/inventory/LecternScreen$1 +CL: net/minecraft/client/gui/screens/inventory/LoomScreen net/minecraft/client/gui/screens/inventory/LoomScreen +CL: net/minecraft/client/gui/screens/inventory/MenuAccess net/minecraft/client/gui/screens/inventory/MenuAccess +CL: net/minecraft/client/gui/screens/inventory/MerchantScreen net/minecraft/client/gui/screens/inventory/MerchantScreen +CL: net/minecraft/client/gui/screens/inventory/MerchantScreen$TradeOfferButton net/minecraft/client/gui/screens/inventory/MerchantScreen$TradeOfferButton +CL: net/minecraft/client/gui/screens/inventory/MinecartCommandBlockEditScreen net/minecraft/client/gui/screens/inventory/MinecartCommandBlockEditScreen +CL: net/minecraft/client/gui/screens/inventory/PageButton net/minecraft/client/gui/screens/inventory/PageButton +CL: net/minecraft/client/gui/screens/inventory/ShulkerBoxScreen net/minecraft/client/gui/screens/inventory/ShulkerBoxScreen +CL: net/minecraft/client/gui/screens/inventory/SignEditScreen net/minecraft/client/gui/screens/inventory/SignEditScreen +CL: net/minecraft/client/gui/screens/inventory/SmithingScreen net/minecraft/client/gui/screens/inventory/SmithingScreen +CL: net/minecraft/client/gui/screens/inventory/SmokerScreen net/minecraft/client/gui/screens/inventory/SmokerScreen +CL: net/minecraft/client/gui/screens/inventory/StonecutterScreen net/minecraft/client/gui/screens/inventory/StonecutterScreen +CL: net/minecraft/client/gui/screens/inventory/StructureBlockEditScreen net/minecraft/client/gui/screens/inventory/StructureBlockEditScreen +CL: net/minecraft/client/gui/screens/inventory/StructureBlockEditScreen$1 net/minecraft/client/gui/screens/inventory/StructureBlockEditScreen$1 +CL: net/minecraft/client/gui/screens/inventory/StructureBlockEditScreen$2 net/minecraft/client/gui/screens/inventory/StructureBlockEditScreen$2 +CL: net/minecraft/client/gui/screens/inventory/package-info net/minecraft/client/gui/screens/inventory/package-info +CL: net/minecraft/client/gui/screens/inventory/tooltip/BelowOrAboveWidgetTooltipPositioner net/minecraft/client/gui/screens/inventory/tooltip/BelowOrAboveWidgetTooltipPositioner +CL: net/minecraft/client/gui/screens/inventory/tooltip/ClientBundleTooltip net/minecraft/client/gui/screens/inventory/tooltip/ClientBundleTooltip +CL: net/minecraft/client/gui/screens/inventory/tooltip/ClientBundleTooltip$Texture net/minecraft/client/gui/screens/inventory/tooltip/ClientBundleTooltip$Texture +CL: net/minecraft/client/gui/screens/inventory/tooltip/ClientTextTooltip net/minecraft/client/gui/screens/inventory/tooltip/ClientTextTooltip +CL: net/minecraft/client/gui/screens/inventory/tooltip/ClientTooltipComponent net/minecraft/client/gui/screens/inventory/tooltip/ClientTooltipComponent +CL: net/minecraft/client/gui/screens/inventory/tooltip/ClientTooltipPositioner net/minecraft/client/gui/screens/inventory/tooltip/ClientTooltipPositioner +CL: net/minecraft/client/gui/screens/inventory/tooltip/DefaultTooltipPositioner net/minecraft/client/gui/screens/inventory/tooltip/DefaultTooltipPositioner +CL: net/minecraft/client/gui/screens/inventory/tooltip/MenuTooltipPositioner net/minecraft/client/gui/screens/inventory/tooltip/MenuTooltipPositioner +CL: net/minecraft/client/gui/screens/inventory/tooltip/TooltipRenderUtil net/minecraft/client/gui/screens/inventory/tooltip/TooltipRenderUtil +CL: net/minecraft/client/gui/screens/inventory/tooltip/package-info net/minecraft/client/gui/screens/inventory/tooltip/package-info +CL: net/minecraft/client/gui/screens/multiplayer/JoinMultiplayerScreen net/minecraft/client/gui/screens/multiplayer/JoinMultiplayerScreen +CL: net/minecraft/client/gui/screens/multiplayer/Realms32bitWarningScreen net/minecraft/client/gui/screens/multiplayer/Realms32bitWarningScreen +CL: net/minecraft/client/gui/screens/multiplayer/SafetyScreen net/minecraft/client/gui/screens/multiplayer/SafetyScreen +CL: net/minecraft/client/gui/screens/multiplayer/ServerSelectionList net/minecraft/client/gui/screens/multiplayer/ServerSelectionList +CL: net/minecraft/client/gui/screens/multiplayer/ServerSelectionList$Entry net/minecraft/client/gui/screens/multiplayer/ServerSelectionList$Entry +CL: net/minecraft/client/gui/screens/multiplayer/ServerSelectionList$LANHeader net/minecraft/client/gui/screens/multiplayer/ServerSelectionList$LANHeader +CL: net/minecraft/client/gui/screens/multiplayer/ServerSelectionList$NetworkServerEntry net/minecraft/client/gui/screens/multiplayer/ServerSelectionList$NetworkServerEntry +CL: net/minecraft/client/gui/screens/multiplayer/ServerSelectionList$OnlineServerEntry net/minecraft/client/gui/screens/multiplayer/ServerSelectionList$OnlineServerEntry +CL: net/minecraft/client/gui/screens/multiplayer/WarningScreen net/minecraft/client/gui/screens/multiplayer/WarningScreen +CL: net/minecraft/client/gui/screens/multiplayer/package-info net/minecraft/client/gui/screens/multiplayer/package-info +CL: net/minecraft/client/gui/screens/package-info net/minecraft/client/gui/screens/package-info +CL: net/minecraft/client/gui/screens/packs/PackSelectionModel net/minecraft/client/gui/screens/packs/PackSelectionModel +CL: net/minecraft/client/gui/screens/packs/PackSelectionModel$Entry net/minecraft/client/gui/screens/packs/PackSelectionModel$Entry +CL: net/minecraft/client/gui/screens/packs/PackSelectionModel$EntryBase net/minecraft/client/gui/screens/packs/PackSelectionModel$EntryBase +CL: net/minecraft/client/gui/screens/packs/PackSelectionModel$SelectedPackEntry net/minecraft/client/gui/screens/packs/PackSelectionModel$SelectedPackEntry +CL: net/minecraft/client/gui/screens/packs/PackSelectionModel$UnselectedPackEntry net/minecraft/client/gui/screens/packs/PackSelectionModel$UnselectedPackEntry +CL: net/minecraft/client/gui/screens/packs/PackSelectionScreen net/minecraft/client/gui/screens/packs/PackSelectionScreen +CL: net/minecraft/client/gui/screens/packs/PackSelectionScreen$Watcher net/minecraft/client/gui/screens/packs/PackSelectionScreen$Watcher +CL: net/minecraft/client/gui/screens/packs/TransferableSelectionList net/minecraft/client/gui/screens/packs/TransferableSelectionList +CL: net/minecraft/client/gui/screens/packs/TransferableSelectionList$PackEntry net/minecraft/client/gui/screens/packs/TransferableSelectionList$PackEntry +CL: net/minecraft/client/gui/screens/packs/package-info net/minecraft/client/gui/screens/packs/package-info +CL: net/minecraft/client/gui/screens/recipebook/AbstractFurnaceRecipeBookComponent net/minecraft/client/gui/screens/recipebook/AbstractFurnaceRecipeBookComponent +CL: net/minecraft/client/gui/screens/recipebook/BlastingRecipeBookComponent net/minecraft/client/gui/screens/recipebook/BlastingRecipeBookComponent +CL: net/minecraft/client/gui/screens/recipebook/GhostRecipe net/minecraft/client/gui/screens/recipebook/GhostRecipe +CL: net/minecraft/client/gui/screens/recipebook/GhostRecipe$GhostIngredient net/minecraft/client/gui/screens/recipebook/GhostRecipe$GhostIngredient +CL: net/minecraft/client/gui/screens/recipebook/OverlayRecipeComponent net/minecraft/client/gui/screens/recipebook/OverlayRecipeComponent +CL: net/minecraft/client/gui/screens/recipebook/OverlayRecipeComponent$OverlayRecipeButton net/minecraft/client/gui/screens/recipebook/OverlayRecipeComponent$OverlayRecipeButton +CL: net/minecraft/client/gui/screens/recipebook/OverlayRecipeComponent$OverlayRecipeButton$Pos net/minecraft/client/gui/screens/recipebook/OverlayRecipeComponent$OverlayRecipeButton$Pos +CL: net/minecraft/client/gui/screens/recipebook/OverlayRecipeComponent$OverlaySmeltingRecipeButton net/minecraft/client/gui/screens/recipebook/OverlayRecipeComponent$OverlaySmeltingRecipeButton +CL: net/minecraft/client/gui/screens/recipebook/RecipeBookComponent net/minecraft/client/gui/screens/recipebook/RecipeBookComponent +CL: net/minecraft/client/gui/screens/recipebook/RecipeBookPage net/minecraft/client/gui/screens/recipebook/RecipeBookPage +CL: net/minecraft/client/gui/screens/recipebook/RecipeBookTabButton net/minecraft/client/gui/screens/recipebook/RecipeBookTabButton +CL: net/minecraft/client/gui/screens/recipebook/RecipeButton net/minecraft/client/gui/screens/recipebook/RecipeButton +CL: net/minecraft/client/gui/screens/recipebook/RecipeCollection net/minecraft/client/gui/screens/recipebook/RecipeCollection +CL: net/minecraft/client/gui/screens/recipebook/RecipeShownListener net/minecraft/client/gui/screens/recipebook/RecipeShownListener +CL: net/minecraft/client/gui/screens/recipebook/RecipeUpdateListener net/minecraft/client/gui/screens/recipebook/RecipeUpdateListener +CL: net/minecraft/client/gui/screens/recipebook/SmeltingRecipeBookComponent net/minecraft/client/gui/screens/recipebook/SmeltingRecipeBookComponent +CL: net/minecraft/client/gui/screens/recipebook/SmokingRecipeBookComponent net/minecraft/client/gui/screens/recipebook/SmokingRecipeBookComponent +CL: net/minecraft/client/gui/screens/recipebook/package-info net/minecraft/client/gui/screens/recipebook/package-info +CL: net/minecraft/client/gui/screens/reporting/ChatReportScreen net/minecraft/client/gui/screens/reporting/ChatReportScreen +CL: net/minecraft/client/gui/screens/reporting/ChatReportScreen$DiscardReportWarningScreen net/minecraft/client/gui/screens/reporting/ChatReportScreen$DiscardReportWarningScreen +CL: net/minecraft/client/gui/screens/reporting/ChatSelectionLogFiller net/minecraft/client/gui/screens/reporting/ChatSelectionLogFiller +CL: net/minecraft/client/gui/screens/reporting/ChatSelectionLogFiller$Output net/minecraft/client/gui/screens/reporting/ChatSelectionLogFiller$Output +CL: net/minecraft/client/gui/screens/reporting/ChatSelectionScreen net/minecraft/client/gui/screens/reporting/ChatSelectionScreen +CL: net/minecraft/client/gui/screens/reporting/ChatSelectionScreen$ChatSelectionList net/minecraft/client/gui/screens/reporting/ChatSelectionScreen$ChatSelectionList +CL: net/minecraft/client/gui/screens/reporting/ChatSelectionScreen$ChatSelectionList$DividerEntry net/minecraft/client/gui/screens/reporting/ChatSelectionScreen$ChatSelectionList$DividerEntry +CL: net/minecraft/client/gui/screens/reporting/ChatSelectionScreen$ChatSelectionList$Entry net/minecraft/client/gui/screens/reporting/ChatSelectionScreen$ChatSelectionList$Entry +CL: net/minecraft/client/gui/screens/reporting/ChatSelectionScreen$ChatSelectionList$Heading net/minecraft/client/gui/screens/reporting/ChatSelectionScreen$ChatSelectionList$Heading +CL: net/minecraft/client/gui/screens/reporting/ChatSelectionScreen$ChatSelectionList$MessageEntry net/minecraft/client/gui/screens/reporting/ChatSelectionScreen$ChatSelectionList$MessageEntry +CL: net/minecraft/client/gui/screens/reporting/ChatSelectionScreen$ChatSelectionList$MessageHeadingEntry net/minecraft/client/gui/screens/reporting/ChatSelectionScreen$ChatSelectionList$MessageHeadingEntry +CL: net/minecraft/client/gui/screens/reporting/ChatSelectionScreen$ChatSelectionList$PaddingEntry net/minecraft/client/gui/screens/reporting/ChatSelectionScreen$ChatSelectionList$PaddingEntry +CL: net/minecraft/client/gui/screens/reporting/ReportReasonSelectionScreen net/minecraft/client/gui/screens/reporting/ReportReasonSelectionScreen +CL: net/minecraft/client/gui/screens/reporting/ReportReasonSelectionScreen$ReasonSelectionList net/minecraft/client/gui/screens/reporting/ReportReasonSelectionScreen$ReasonSelectionList +CL: net/minecraft/client/gui/screens/reporting/ReportReasonSelectionScreen$ReasonSelectionList$Entry net/minecraft/client/gui/screens/reporting/ReportReasonSelectionScreen$ReasonSelectionList$Entry +CL: net/minecraft/client/gui/screens/reporting/package-info net/minecraft/client/gui/screens/reporting/package-info +CL: net/minecraft/client/gui/screens/social/PlayerEntry net/minecraft/client/gui/screens/social/PlayerEntry +CL: net/minecraft/client/gui/screens/social/PlayerEntry$1 net/minecraft/client/gui/screens/social/PlayerEntry$1 +CL: net/minecraft/client/gui/screens/social/PlayerEntry$2 net/minecraft/client/gui/screens/social/PlayerEntry$2 +CL: net/minecraft/client/gui/screens/social/PlayerEntry$3 net/minecraft/client/gui/screens/social/PlayerEntry$3 +CL: net/minecraft/client/gui/screens/social/PlayerSocialManager net/minecraft/client/gui/screens/social/PlayerSocialManager +CL: net/minecraft/client/gui/screens/social/SocialInteractionsPlayerList net/minecraft/client/gui/screens/social/SocialInteractionsPlayerList +CL: net/minecraft/client/gui/screens/social/SocialInteractionsScreen net/minecraft/client/gui/screens/social/SocialInteractionsScreen +CL: net/minecraft/client/gui/screens/social/SocialInteractionsScreen$1 net/minecraft/client/gui/screens/social/SocialInteractionsScreen$1 +CL: net/minecraft/client/gui/screens/social/SocialInteractionsScreen$2 net/minecraft/client/gui/screens/social/SocialInteractionsScreen$2 +CL: net/minecraft/client/gui/screens/social/SocialInteractionsScreen$Page net/minecraft/client/gui/screens/social/SocialInteractionsScreen$Page +CL: net/minecraft/client/gui/screens/social/package-info net/minecraft/client/gui/screens/social/package-info +CL: net/minecraft/client/gui/screens/telemetry/TelemetryEventWidget net/minecraft/client/gui/screens/telemetry/TelemetryEventWidget +CL: net/minecraft/client/gui/screens/telemetry/TelemetryEventWidget$Content net/minecraft/client/gui/screens/telemetry/TelemetryEventWidget$Content +CL: net/minecraft/client/gui/screens/telemetry/TelemetryEventWidget$ContentBuilder net/minecraft/client/gui/screens/telemetry/TelemetryEventWidget$ContentBuilder +CL: net/minecraft/client/gui/screens/telemetry/TelemetryInfoScreen net/minecraft/client/gui/screens/telemetry/TelemetryInfoScreen +CL: net/minecraft/client/gui/screens/telemetry/package-info net/minecraft/client/gui/screens/telemetry/package-info +CL: net/minecraft/client/gui/screens/worldselection/ConfirmExperimentalFeaturesScreen net/minecraft/client/gui/screens/worldselection/ConfirmExperimentalFeaturesScreen +CL: net/minecraft/client/gui/screens/worldselection/ConfirmExperimentalFeaturesScreen$DetailsScreen net/minecraft/client/gui/screens/worldselection/ConfirmExperimentalFeaturesScreen$DetailsScreen +CL: net/minecraft/client/gui/screens/worldselection/ConfirmExperimentalFeaturesScreen$DetailsScreen$PackList net/minecraft/client/gui/screens/worldselection/ConfirmExperimentalFeaturesScreen$DetailsScreen$PackList +CL: net/minecraft/client/gui/screens/worldselection/ConfirmExperimentalFeaturesScreen$DetailsScreen$PackListEntry net/minecraft/client/gui/screens/worldselection/ConfirmExperimentalFeaturesScreen$DetailsScreen$PackListEntry +CL: net/minecraft/client/gui/screens/worldselection/CreateWorldScreen net/minecraft/client/gui/screens/worldselection/CreateWorldScreen +CL: net/minecraft/client/gui/screens/worldselection/CreateWorldScreen$DataPackReloadCookie net/minecraft/client/gui/screens/worldselection/CreateWorldScreen$DataPackReloadCookie +CL: net/minecraft/client/gui/screens/worldselection/CreateWorldScreen$GameTab net/minecraft/client/gui/screens/worldselection/CreateWorldScreen$GameTab +CL: net/minecraft/client/gui/screens/worldselection/CreateWorldScreen$MoreTab net/minecraft/client/gui/screens/worldselection/CreateWorldScreen$MoreTab +CL: net/minecraft/client/gui/screens/worldselection/CreateWorldScreen$WorldTab net/minecraft/client/gui/screens/worldselection/CreateWorldScreen$WorldTab +CL: net/minecraft/client/gui/screens/worldselection/CreateWorldScreen$WorldTab$1 net/minecraft/client/gui/screens/worldselection/CreateWorldScreen$WorldTab$1 +CL: net/minecraft/client/gui/screens/worldselection/CreateWorldScreen$WorldTab$2 net/minecraft/client/gui/screens/worldselection/CreateWorldScreen$WorldTab$2 +CL: net/minecraft/client/gui/screens/worldselection/EditGameRulesScreen net/minecraft/client/gui/screens/worldselection/EditGameRulesScreen +CL: net/minecraft/client/gui/screens/worldselection/EditGameRulesScreen$BooleanRuleEntry net/minecraft/client/gui/screens/worldselection/EditGameRulesScreen$BooleanRuleEntry +CL: net/minecraft/client/gui/screens/worldselection/EditGameRulesScreen$CategoryRuleEntry net/minecraft/client/gui/screens/worldselection/EditGameRulesScreen$CategoryRuleEntry +CL: net/minecraft/client/gui/screens/worldselection/EditGameRulesScreen$CategoryRuleEntry$1 net/minecraft/client/gui/screens/worldselection/EditGameRulesScreen$CategoryRuleEntry$1 +CL: net/minecraft/client/gui/screens/worldselection/EditGameRulesScreen$EntryFactory net/minecraft/client/gui/screens/worldselection/EditGameRulesScreen$EntryFactory +CL: net/minecraft/client/gui/screens/worldselection/EditGameRulesScreen$GameRuleEntry net/minecraft/client/gui/screens/worldselection/EditGameRulesScreen$GameRuleEntry +CL: net/minecraft/client/gui/screens/worldselection/EditGameRulesScreen$IntegerRuleEntry net/minecraft/client/gui/screens/worldselection/EditGameRulesScreen$IntegerRuleEntry +CL: net/minecraft/client/gui/screens/worldselection/EditGameRulesScreen$RuleEntry net/minecraft/client/gui/screens/worldselection/EditGameRulesScreen$RuleEntry +CL: net/minecraft/client/gui/screens/worldselection/EditGameRulesScreen$RuleList net/minecraft/client/gui/screens/worldselection/EditGameRulesScreen$RuleList +CL: net/minecraft/client/gui/screens/worldselection/EditGameRulesScreen$RuleList$1 net/minecraft/client/gui/screens/worldselection/EditGameRulesScreen$RuleList$1 +CL: net/minecraft/client/gui/screens/worldselection/EditWorldScreen net/minecraft/client/gui/screens/worldselection/EditWorldScreen +CL: net/minecraft/client/gui/screens/worldselection/ExperimentsScreen net/minecraft/client/gui/screens/worldselection/ExperimentsScreen +CL: net/minecraft/client/gui/screens/worldselection/OptimizeWorldScreen net/minecraft/client/gui/screens/worldselection/OptimizeWorldScreen +CL: net/minecraft/client/gui/screens/worldselection/PresetEditor net/minecraft/client/gui/screens/worldselection/PresetEditor +CL: net/minecraft/client/gui/screens/worldselection/SelectWorldScreen net/minecraft/client/gui/screens/worldselection/SelectWorldScreen +CL: net/minecraft/client/gui/screens/worldselection/SwitchGrid net/minecraft/client/gui/screens/worldselection/SwitchGrid +CL: net/minecraft/client/gui/screens/worldselection/SwitchGrid$Builder net/minecraft/client/gui/screens/worldselection/SwitchGrid$Builder +CL: net/minecraft/client/gui/screens/worldselection/SwitchGrid$InfoUnderneathSettings net/minecraft/client/gui/screens/worldselection/SwitchGrid$InfoUnderneathSettings +CL: net/minecraft/client/gui/screens/worldselection/SwitchGrid$LabeledSwitch net/minecraft/client/gui/screens/worldselection/SwitchGrid$LabeledSwitch +CL: net/minecraft/client/gui/screens/worldselection/SwitchGrid$SwitchBuilder net/minecraft/client/gui/screens/worldselection/SwitchGrid$SwitchBuilder +CL: net/minecraft/client/gui/screens/worldselection/WorldCreationContext net/minecraft/client/gui/screens/worldselection/WorldCreationContext +CL: net/minecraft/client/gui/screens/worldselection/WorldCreationContext$DimensionsUpdater net/minecraft/client/gui/screens/worldselection/WorldCreationContext$DimensionsUpdater +CL: net/minecraft/client/gui/screens/worldselection/WorldCreationContext$OptionsModifier net/minecraft/client/gui/screens/worldselection/WorldCreationContext$OptionsModifier +CL: net/minecraft/client/gui/screens/worldselection/WorldCreationUiState net/minecraft/client/gui/screens/worldselection/WorldCreationUiState +CL: net/minecraft/client/gui/screens/worldselection/WorldCreationUiState$SelectedGameMode net/minecraft/client/gui/screens/worldselection/WorldCreationUiState$SelectedGameMode +CL: net/minecraft/client/gui/screens/worldselection/WorldCreationUiState$WorldTypeEntry net/minecraft/client/gui/screens/worldselection/WorldCreationUiState$WorldTypeEntry +CL: net/minecraft/client/gui/screens/worldselection/WorldOpenFlows net/minecraft/client/gui/screens/worldselection/WorldOpenFlows +CL: net/minecraft/client/gui/screens/worldselection/WorldOpenFlows$1Data net/minecraft/client/gui/screens/worldselection/WorldOpenFlows$1Data +CL: net/minecraft/client/gui/screens/worldselection/WorldSelectionList net/minecraft/client/gui/screens/worldselection/WorldSelectionList +CL: net/minecraft/client/gui/screens/worldselection/WorldSelectionList$Entry net/minecraft/client/gui/screens/worldselection/WorldSelectionList$Entry +CL: net/minecraft/client/gui/screens/worldselection/WorldSelectionList$LoadingHeader net/minecraft/client/gui/screens/worldselection/WorldSelectionList$LoadingHeader +CL: net/minecraft/client/gui/screens/worldselection/WorldSelectionList$WorldListEntry net/minecraft/client/gui/screens/worldselection/WorldSelectionList$WorldListEntry +CL: net/minecraft/client/gui/screens/worldselection/package-info net/minecraft/client/gui/screens/worldselection/package-info +CL: net/minecraft/client/gui/spectator/PlayerMenuItem net/minecraft/client/gui/spectator/PlayerMenuItem +CL: net/minecraft/client/gui/spectator/RootSpectatorMenuCategory net/minecraft/client/gui/spectator/RootSpectatorMenuCategory +CL: net/minecraft/client/gui/spectator/SpectatorMenu net/minecraft/client/gui/spectator/SpectatorMenu +CL: net/minecraft/client/gui/spectator/SpectatorMenu$1 net/minecraft/client/gui/spectator/SpectatorMenu$1 +CL: net/minecraft/client/gui/spectator/SpectatorMenu$CloseSpectatorItem net/minecraft/client/gui/spectator/SpectatorMenu$CloseSpectatorItem +CL: net/minecraft/client/gui/spectator/SpectatorMenu$ScrollMenuItem net/minecraft/client/gui/spectator/SpectatorMenu$ScrollMenuItem +CL: net/minecraft/client/gui/spectator/SpectatorMenuCategory net/minecraft/client/gui/spectator/SpectatorMenuCategory +CL: net/minecraft/client/gui/spectator/SpectatorMenuItem net/minecraft/client/gui/spectator/SpectatorMenuItem +CL: net/minecraft/client/gui/spectator/SpectatorMenuListener net/minecraft/client/gui/spectator/SpectatorMenuListener +CL: net/minecraft/client/gui/spectator/categories/SpectatorPage net/minecraft/client/gui/spectator/categories/SpectatorPage +CL: net/minecraft/client/gui/spectator/categories/TeleportToPlayerMenuCategory net/minecraft/client/gui/spectator/categories/TeleportToPlayerMenuCategory +CL: net/minecraft/client/gui/spectator/categories/TeleportToTeamMenuCategory net/minecraft/client/gui/spectator/categories/TeleportToTeamMenuCategory +CL: net/minecraft/client/gui/spectator/categories/TeleportToTeamMenuCategory$TeamSelectionItem net/minecraft/client/gui/spectator/categories/TeleportToTeamMenuCategory$TeamSelectionItem +CL: net/minecraft/client/gui/spectator/categories/package-info net/minecraft/client/gui/spectator/categories/package-info +CL: net/minecraft/client/gui/spectator/package-info net/minecraft/client/gui/spectator/package-info +CL: net/minecraft/client/main/GameConfig net/minecraft/client/main/GameConfig +CL: net/minecraft/client/main/GameConfig$FolderData net/minecraft/client/main/GameConfig$FolderData +CL: net/minecraft/client/main/GameConfig$GameData net/minecraft/client/main/GameConfig$GameData +CL: net/minecraft/client/main/GameConfig$QuickPlayData net/minecraft/client/main/GameConfig$QuickPlayData +CL: net/minecraft/client/main/GameConfig$UserData net/minecraft/client/main/GameConfig$UserData +CL: net/minecraft/client/main/Main net/minecraft/client/main/Main +CL: net/minecraft/client/main/Main$1 net/minecraft/client/main/Main$1 +CL: net/minecraft/client/main/Main$2 net/minecraft/client/main/Main$2 +CL: net/minecraft/client/main/Main$3 net/minecraft/client/main/Main$3 +CL: net/minecraft/client/main/SilentInitException net/minecraft/client/main/SilentInitException +CL: net/minecraft/client/main/package-info net/minecraft/client/main/package-info +CL: net/minecraft/client/model/AbstractZombieModel net/minecraft/client/model/AbstractZombieModel +CL: net/minecraft/client/model/AgeableHierarchicalModel net/minecraft/client/model/AgeableHierarchicalModel +CL: net/minecraft/client/model/AgeableListModel net/minecraft/client/model/AgeableListModel +CL: net/minecraft/client/model/AllayModel net/minecraft/client/model/AllayModel +CL: net/minecraft/client/model/AnimationUtils net/minecraft/client/model/AnimationUtils +CL: net/minecraft/client/model/ArmedModel net/minecraft/client/model/ArmedModel +CL: net/minecraft/client/model/ArmorStandArmorModel net/minecraft/client/model/ArmorStandArmorModel +CL: net/minecraft/client/model/ArmorStandModel net/minecraft/client/model/ArmorStandModel +CL: net/minecraft/client/model/AxolotlModel net/minecraft/client/model/AxolotlModel +CL: net/minecraft/client/model/BatModel net/minecraft/client/model/BatModel +CL: net/minecraft/client/model/BeeModel net/minecraft/client/model/BeeModel +CL: net/minecraft/client/model/BlazeModel net/minecraft/client/model/BlazeModel +CL: net/minecraft/client/model/BoatModel net/minecraft/client/model/BoatModel +CL: net/minecraft/client/model/BookModel net/minecraft/client/model/BookModel +CL: net/minecraft/client/model/CamelModel net/minecraft/client/model/CamelModel +CL: net/minecraft/client/model/CatModel net/minecraft/client/model/CatModel +CL: net/minecraft/client/model/ChestBoatModel net/minecraft/client/model/ChestBoatModel +CL: net/minecraft/client/model/ChestRaftModel net/minecraft/client/model/ChestRaftModel +CL: net/minecraft/client/model/ChestedHorseModel net/minecraft/client/model/ChestedHorseModel +CL: net/minecraft/client/model/ChickenModel net/minecraft/client/model/ChickenModel +CL: net/minecraft/client/model/CodModel net/minecraft/client/model/CodModel +CL: net/minecraft/client/model/ColorableAgeableListModel net/minecraft/client/model/ColorableAgeableListModel +CL: net/minecraft/client/model/ColorableHierarchicalModel net/minecraft/client/model/ColorableHierarchicalModel +CL: net/minecraft/client/model/CowModel net/minecraft/client/model/CowModel +CL: net/minecraft/client/model/CreeperModel net/minecraft/client/model/CreeperModel +CL: net/minecraft/client/model/DolphinModel net/minecraft/client/model/DolphinModel +CL: net/minecraft/client/model/DrownedModel net/minecraft/client/model/DrownedModel +CL: net/minecraft/client/model/ElytraModel net/minecraft/client/model/ElytraModel +CL: net/minecraft/client/model/EndermanModel net/minecraft/client/model/EndermanModel +CL: net/minecraft/client/model/EndermiteModel net/minecraft/client/model/EndermiteModel +CL: net/minecraft/client/model/EntityModel net/minecraft/client/model/EntityModel +CL: net/minecraft/client/model/EvokerFangsModel net/minecraft/client/model/EvokerFangsModel +CL: net/minecraft/client/model/FoxModel net/minecraft/client/model/FoxModel +CL: net/minecraft/client/model/FrogModel net/minecraft/client/model/FrogModel +CL: net/minecraft/client/model/GhastModel net/minecraft/client/model/GhastModel +CL: net/minecraft/client/model/GiantZombieModel net/minecraft/client/model/GiantZombieModel +CL: net/minecraft/client/model/GoatModel net/minecraft/client/model/GoatModel +CL: net/minecraft/client/model/GuardianModel net/minecraft/client/model/GuardianModel +CL: net/minecraft/client/model/HeadedModel net/minecraft/client/model/HeadedModel +CL: net/minecraft/client/model/HierarchicalModel net/minecraft/client/model/HierarchicalModel +CL: net/minecraft/client/model/HoglinModel net/minecraft/client/model/HoglinModel +CL: net/minecraft/client/model/HorseModel net/minecraft/client/model/HorseModel +CL: net/minecraft/client/model/HumanoidArmorModel net/minecraft/client/model/HumanoidArmorModel +CL: net/minecraft/client/model/HumanoidModel net/minecraft/client/model/HumanoidModel +CL: net/minecraft/client/model/HumanoidModel$1 net/minecraft/client/model/HumanoidModel$1 +CL: net/minecraft/client/model/HumanoidModel$ArmPose net/minecraft/client/model/HumanoidModel$ArmPose +CL: net/minecraft/client/model/IllagerModel net/minecraft/client/model/IllagerModel +CL: net/minecraft/client/model/IronGolemModel net/minecraft/client/model/IronGolemModel +CL: net/minecraft/client/model/LavaSlimeModel net/minecraft/client/model/LavaSlimeModel +CL: net/minecraft/client/model/LeashKnotModel net/minecraft/client/model/LeashKnotModel +CL: net/minecraft/client/model/ListModel net/minecraft/client/model/ListModel +CL: net/minecraft/client/model/LlamaModel net/minecraft/client/model/LlamaModel +CL: net/minecraft/client/model/LlamaSpitModel net/minecraft/client/model/LlamaSpitModel +CL: net/minecraft/client/model/MinecartModel net/minecraft/client/model/MinecartModel +CL: net/minecraft/client/model/Model net/minecraft/client/model/Model +CL: net/minecraft/client/model/ModelUtils net/minecraft/client/model/ModelUtils +CL: net/minecraft/client/model/OcelotModel net/minecraft/client/model/OcelotModel +CL: net/minecraft/client/model/PandaModel net/minecraft/client/model/PandaModel +CL: net/minecraft/client/model/ParrotModel net/minecraft/client/model/ParrotModel +CL: net/minecraft/client/model/ParrotModel$1 net/minecraft/client/model/ParrotModel$1 +CL: net/minecraft/client/model/ParrotModel$State net/minecraft/client/model/ParrotModel$State +CL: net/minecraft/client/model/PhantomModel net/minecraft/client/model/PhantomModel +CL: net/minecraft/client/model/PigModel net/minecraft/client/model/PigModel +CL: net/minecraft/client/model/PiglinHeadModel net/minecraft/client/model/PiglinHeadModel +CL: net/minecraft/client/model/PiglinModel net/minecraft/client/model/PiglinModel +CL: net/minecraft/client/model/PlayerModel net/minecraft/client/model/PlayerModel +CL: net/minecraft/client/model/PolarBearModel net/minecraft/client/model/PolarBearModel +CL: net/minecraft/client/model/PufferfishBigModel net/minecraft/client/model/PufferfishBigModel +CL: net/minecraft/client/model/PufferfishMidModel net/minecraft/client/model/PufferfishMidModel +CL: net/minecraft/client/model/PufferfishSmallModel net/minecraft/client/model/PufferfishSmallModel +CL: net/minecraft/client/model/QuadrupedModel net/minecraft/client/model/QuadrupedModel +CL: net/minecraft/client/model/RabbitModel net/minecraft/client/model/RabbitModel +CL: net/minecraft/client/model/RaftModel net/minecraft/client/model/RaftModel +CL: net/minecraft/client/model/RavagerModel net/minecraft/client/model/RavagerModel +CL: net/minecraft/client/model/SalmonModel net/minecraft/client/model/SalmonModel +CL: net/minecraft/client/model/SheepFurModel net/minecraft/client/model/SheepFurModel +CL: net/minecraft/client/model/SheepModel net/minecraft/client/model/SheepModel +CL: net/minecraft/client/model/ShieldModel net/minecraft/client/model/ShieldModel +CL: net/minecraft/client/model/ShulkerBulletModel net/minecraft/client/model/ShulkerBulletModel +CL: net/minecraft/client/model/ShulkerModel net/minecraft/client/model/ShulkerModel +CL: net/minecraft/client/model/SilverfishModel net/minecraft/client/model/SilverfishModel +CL: net/minecraft/client/model/SkeletonModel net/minecraft/client/model/SkeletonModel +CL: net/minecraft/client/model/SkullModel net/minecraft/client/model/SkullModel +CL: net/minecraft/client/model/SkullModelBase net/minecraft/client/model/SkullModelBase +CL: net/minecraft/client/model/SlimeModel net/minecraft/client/model/SlimeModel +CL: net/minecraft/client/model/SnifferModel net/minecraft/client/model/SnifferModel +CL: net/minecraft/client/model/SnowGolemModel net/minecraft/client/model/SnowGolemModel +CL: net/minecraft/client/model/SpiderModel net/minecraft/client/model/SpiderModel +CL: net/minecraft/client/model/SquidModel net/minecraft/client/model/SquidModel +CL: net/minecraft/client/model/StriderModel net/minecraft/client/model/StriderModel +CL: net/minecraft/client/model/TadpoleModel net/minecraft/client/model/TadpoleModel +CL: net/minecraft/client/model/TridentModel net/minecraft/client/model/TridentModel +CL: net/minecraft/client/model/TropicalFishModelA net/minecraft/client/model/TropicalFishModelA +CL: net/minecraft/client/model/TropicalFishModelB net/minecraft/client/model/TropicalFishModelB +CL: net/minecraft/client/model/TurtleModel net/minecraft/client/model/TurtleModel +CL: net/minecraft/client/model/VexModel net/minecraft/client/model/VexModel +CL: net/minecraft/client/model/VillagerHeadModel net/minecraft/client/model/VillagerHeadModel +CL: net/minecraft/client/model/VillagerModel net/minecraft/client/model/VillagerModel +CL: net/minecraft/client/model/WardenModel net/minecraft/client/model/WardenModel +CL: net/minecraft/client/model/WaterPatchModel net/minecraft/client/model/WaterPatchModel +CL: net/minecraft/client/model/WitchModel net/minecraft/client/model/WitchModel +CL: net/minecraft/client/model/WitherBossModel net/minecraft/client/model/WitherBossModel +CL: net/minecraft/client/model/WolfModel net/minecraft/client/model/WolfModel +CL: net/minecraft/client/model/ZombieModel net/minecraft/client/model/ZombieModel +CL: net/minecraft/client/model/ZombieVillagerModel net/minecraft/client/model/ZombieVillagerModel +CL: net/minecraft/client/model/dragon/DragonHeadModel net/minecraft/client/model/dragon/DragonHeadModel +CL: net/minecraft/client/model/dragon/package-info net/minecraft/client/model/dragon/package-info +CL: net/minecraft/client/model/geom/EntityModelSet net/minecraft/client/model/geom/EntityModelSet +CL: net/minecraft/client/model/geom/LayerDefinitions net/minecraft/client/model/geom/LayerDefinitions +CL: net/minecraft/client/model/geom/ModelLayerLocation net/minecraft/client/model/geom/ModelLayerLocation +CL: net/minecraft/client/model/geom/ModelLayers net/minecraft/client/model/geom/ModelLayers +CL: net/minecraft/client/model/geom/ModelPart net/minecraft/client/model/geom/ModelPart +CL: net/minecraft/client/model/geom/ModelPart$Cube net/minecraft/client/model/geom/ModelPart$Cube +CL: net/minecraft/client/model/geom/ModelPart$Polygon net/minecraft/client/model/geom/ModelPart$Polygon +CL: net/minecraft/client/model/geom/ModelPart$Vertex net/minecraft/client/model/geom/ModelPart$Vertex +CL: net/minecraft/client/model/geom/ModelPart$Visitor net/minecraft/client/model/geom/ModelPart$Visitor +CL: net/minecraft/client/model/geom/PartNames net/minecraft/client/model/geom/PartNames +CL: net/minecraft/client/model/geom/PartPose net/minecraft/client/model/geom/PartPose +CL: net/minecraft/client/model/geom/builders/CubeDefinition net/minecraft/client/model/geom/builders/CubeDefinition +CL: net/minecraft/client/model/geom/builders/CubeDeformation net/minecraft/client/model/geom/builders/CubeDeformation +CL: net/minecraft/client/model/geom/builders/CubeListBuilder net/minecraft/client/model/geom/builders/CubeListBuilder +CL: net/minecraft/client/model/geom/builders/LayerDefinition net/minecraft/client/model/geom/builders/LayerDefinition +CL: net/minecraft/client/model/geom/builders/MaterialDefinition net/minecraft/client/model/geom/builders/MaterialDefinition +CL: net/minecraft/client/model/geom/builders/MeshDefinition net/minecraft/client/model/geom/builders/MeshDefinition +CL: net/minecraft/client/model/geom/builders/PartDefinition net/minecraft/client/model/geom/builders/PartDefinition +CL: net/minecraft/client/model/geom/builders/UVPair net/minecraft/client/model/geom/builders/UVPair +CL: net/minecraft/client/model/geom/builders/package-info net/minecraft/client/model/geom/builders/package-info +CL: net/minecraft/client/model/geom/package-info net/minecraft/client/model/geom/package-info +CL: net/minecraft/client/model/package-info net/minecraft/client/model/package-info +CL: net/minecraft/client/multiplayer/AccountProfileKeyPairManager net/minecraft/client/multiplayer/AccountProfileKeyPairManager +CL: net/minecraft/client/multiplayer/ClientAdvancements net/minecraft/client/multiplayer/ClientAdvancements +CL: net/minecraft/client/multiplayer/ClientAdvancements$Listener net/minecraft/client/multiplayer/ClientAdvancements$Listener +CL: net/minecraft/client/multiplayer/ClientChunkCache net/minecraft/client/multiplayer/ClientChunkCache +CL: net/minecraft/client/multiplayer/ClientChunkCache$Storage net/minecraft/client/multiplayer/ClientChunkCache$Storage +CL: net/minecraft/client/multiplayer/ClientHandshakePacketListenerImpl net/minecraft/client/multiplayer/ClientHandshakePacketListenerImpl +CL: net/minecraft/client/multiplayer/ClientLevel net/minecraft/client/multiplayer/ClientLevel +CL: net/minecraft/client/multiplayer/ClientLevel$1 net/minecraft/client/multiplayer/ClientLevel$1 +CL: net/minecraft/client/multiplayer/ClientLevel$ClientLevelData net/minecraft/client/multiplayer/ClientLevel$ClientLevelData +CL: net/minecraft/client/multiplayer/ClientLevel$EntityCallbacks net/minecraft/client/multiplayer/ClientLevel$EntityCallbacks +CL: net/minecraft/client/multiplayer/ClientPacketListener net/minecraft/client/multiplayer/ClientPacketListener +CL: net/minecraft/client/multiplayer/ClientPacketListener$1 net/minecraft/client/multiplayer/ClientPacketListener$1 +CL: net/minecraft/client/multiplayer/ClientPacketListener$DeferredPacket net/minecraft/client/multiplayer/ClientPacketListener$DeferredPacket +CL: net/minecraft/client/multiplayer/ClientRegistryLayer net/minecraft/client/multiplayer/ClientRegistryLayer +CL: net/minecraft/client/multiplayer/ClientSuggestionProvider net/minecraft/client/multiplayer/ClientSuggestionProvider +CL: net/minecraft/client/multiplayer/ClientSuggestionProvider$1 net/minecraft/client/multiplayer/ClientSuggestionProvider$1 +CL: net/minecraft/client/multiplayer/MultiPlayerGameMode net/minecraft/client/multiplayer/MultiPlayerGameMode +CL: net/minecraft/client/multiplayer/PlayerInfo net/minecraft/client/multiplayer/PlayerInfo +CL: net/minecraft/client/multiplayer/ProfileKeyPairManager net/minecraft/client/multiplayer/ProfileKeyPairManager +CL: net/minecraft/client/multiplayer/ProfileKeyPairManager$1 net/minecraft/client/multiplayer/ProfileKeyPairManager$1 +CL: net/minecraft/client/multiplayer/ServerData net/minecraft/client/multiplayer/ServerData +CL: net/minecraft/client/multiplayer/ServerData$ServerPackStatus net/minecraft/client/multiplayer/ServerData$ServerPackStatus +CL: net/minecraft/client/multiplayer/ServerList net/minecraft/client/multiplayer/ServerList +CL: net/minecraft/client/multiplayer/ServerStatusPinger net/minecraft/client/multiplayer/ServerStatusPinger +CL: net/minecraft/client/multiplayer/ServerStatusPinger$1 net/minecraft/client/multiplayer/ServerStatusPinger$1 +CL: net/minecraft/client/multiplayer/ServerStatusPinger$2 net/minecraft/client/multiplayer/ServerStatusPinger$2 +CL: net/minecraft/client/multiplayer/ServerStatusPinger$2$1 net/minecraft/client/multiplayer/ServerStatusPinger$2$1 +CL: net/minecraft/client/multiplayer/chat/ChatListener net/minecraft/client/multiplayer/chat/ChatListener +CL: net/minecraft/client/multiplayer/chat/ChatListener$Message net/minecraft/client/multiplayer/chat/ChatListener$Message +CL: net/minecraft/client/multiplayer/chat/ChatLog net/minecraft/client/multiplayer/chat/ChatLog +CL: net/minecraft/client/multiplayer/chat/ChatTrustLevel net/minecraft/client/multiplayer/chat/ChatTrustLevel +CL: net/minecraft/client/multiplayer/chat/ChatTrustLevel$1 net/minecraft/client/multiplayer/chat/ChatTrustLevel$1 +CL: net/minecraft/client/multiplayer/chat/LoggedChatEvent net/minecraft/client/multiplayer/chat/LoggedChatEvent +CL: net/minecraft/client/multiplayer/chat/LoggedChatEvent$Type net/minecraft/client/multiplayer/chat/LoggedChatEvent$Type +CL: net/minecraft/client/multiplayer/chat/LoggedChatMessage net/minecraft/client/multiplayer/chat/LoggedChatMessage +CL: net/minecraft/client/multiplayer/chat/LoggedChatMessage$Player net/minecraft/client/multiplayer/chat/LoggedChatMessage$Player +CL: net/minecraft/client/multiplayer/chat/LoggedChatMessage$System net/minecraft/client/multiplayer/chat/LoggedChatMessage$System +CL: net/minecraft/client/multiplayer/chat/package-info net/minecraft/client/multiplayer/chat/package-info +CL: net/minecraft/client/multiplayer/chat/report/AbuseReportSender net/minecraft/client/multiplayer/chat/report/AbuseReportSender +CL: net/minecraft/client/multiplayer/chat/report/AbuseReportSender$1 net/minecraft/client/multiplayer/chat/report/AbuseReportSender$1 +CL: net/minecraft/client/multiplayer/chat/report/AbuseReportSender$SendException net/minecraft/client/multiplayer/chat/report/AbuseReportSender$SendException +CL: net/minecraft/client/multiplayer/chat/report/AbuseReportSender$Services net/minecraft/client/multiplayer/chat/report/AbuseReportSender$Services +CL: net/minecraft/client/multiplayer/chat/report/BanReason net/minecraft/client/multiplayer/chat/report/BanReason +CL: net/minecraft/client/multiplayer/chat/report/ChatReportBuilder net/minecraft/client/multiplayer/chat/report/ChatReportBuilder +CL: net/minecraft/client/multiplayer/chat/report/ChatReportBuilder$CannotBuildReason net/minecraft/client/multiplayer/chat/report/ChatReportBuilder$CannotBuildReason +CL: net/minecraft/client/multiplayer/chat/report/ChatReportBuilder$ChatReport net/minecraft/client/multiplayer/chat/report/ChatReportBuilder$ChatReport +CL: net/minecraft/client/multiplayer/chat/report/ChatReportBuilder$Result net/minecraft/client/multiplayer/chat/report/ChatReportBuilder$Result +CL: net/minecraft/client/multiplayer/chat/report/ChatReportContextBuilder net/minecraft/client/multiplayer/chat/report/ChatReportContextBuilder +CL: net/minecraft/client/multiplayer/chat/report/ChatReportContextBuilder$Collector net/minecraft/client/multiplayer/chat/report/ChatReportContextBuilder$Collector +CL: net/minecraft/client/multiplayer/chat/report/ChatReportContextBuilder$Handler net/minecraft/client/multiplayer/chat/report/ChatReportContextBuilder$Handler +CL: net/minecraft/client/multiplayer/chat/report/ReportEnvironment net/minecraft/client/multiplayer/chat/report/ReportEnvironment +CL: net/minecraft/client/multiplayer/chat/report/ReportEnvironment$Server net/minecraft/client/multiplayer/chat/report/ReportEnvironment$Server +CL: net/minecraft/client/multiplayer/chat/report/ReportEnvironment$Server$Realm net/minecraft/client/multiplayer/chat/report/ReportEnvironment$Server$Realm +CL: net/minecraft/client/multiplayer/chat/report/ReportEnvironment$Server$ThirdParty net/minecraft/client/multiplayer/chat/report/ReportEnvironment$Server$ThirdParty +CL: net/minecraft/client/multiplayer/chat/report/ReportReason net/minecraft/client/multiplayer/chat/report/ReportReason +CL: net/minecraft/client/multiplayer/chat/report/ReportingContext net/minecraft/client/multiplayer/chat/report/ReportingContext +CL: net/minecraft/client/multiplayer/chat/report/package-info net/minecraft/client/multiplayer/chat/report/package-info +CL: net/minecraft/client/multiplayer/package-info net/minecraft/client/multiplayer/package-info +CL: net/minecraft/client/multiplayer/prediction/BlockStatePredictionHandler net/minecraft/client/multiplayer/prediction/BlockStatePredictionHandler +CL: net/minecraft/client/multiplayer/prediction/BlockStatePredictionHandler$ServerVerifiedState net/minecraft/client/multiplayer/prediction/BlockStatePredictionHandler$ServerVerifiedState +CL: net/minecraft/client/multiplayer/prediction/PredictiveAction net/minecraft/client/multiplayer/prediction/PredictiveAction +CL: net/minecraft/client/multiplayer/prediction/package-info net/minecraft/client/multiplayer/prediction/package-info +CL: net/minecraft/client/multiplayer/resolver/AddressCheck net/minecraft/client/multiplayer/resolver/AddressCheck +CL: net/minecraft/client/multiplayer/resolver/AddressCheck$1 net/minecraft/client/multiplayer/resolver/AddressCheck$1 +CL: net/minecraft/client/multiplayer/resolver/ResolvedServerAddress net/minecraft/client/multiplayer/resolver/ResolvedServerAddress +CL: net/minecraft/client/multiplayer/resolver/ResolvedServerAddress$1 net/minecraft/client/multiplayer/resolver/ResolvedServerAddress$1 +CL: net/minecraft/client/multiplayer/resolver/ServerAddress net/minecraft/client/multiplayer/resolver/ServerAddress +CL: net/minecraft/client/multiplayer/resolver/ServerAddressResolver net/minecraft/client/multiplayer/resolver/ServerAddressResolver +CL: net/minecraft/client/multiplayer/resolver/ServerNameResolver net/minecraft/client/multiplayer/resolver/ServerNameResolver +CL: net/minecraft/client/multiplayer/resolver/ServerRedirectHandler net/minecraft/client/multiplayer/resolver/ServerRedirectHandler +CL: net/minecraft/client/multiplayer/resolver/package-info net/minecraft/client/multiplayer/resolver/package-info +CL: net/minecraft/client/package-info net/minecraft/client/package-info +CL: net/minecraft/client/particle/AshParticle net/minecraft/client/particle/AshParticle +CL: net/minecraft/client/particle/AshParticle$Provider net/minecraft/client/particle/AshParticle$Provider +CL: net/minecraft/client/particle/AttackSweepParticle net/minecraft/client/particle/AttackSweepParticle +CL: net/minecraft/client/particle/AttackSweepParticle$Provider net/minecraft/client/particle/AttackSweepParticle$Provider +CL: net/minecraft/client/particle/BaseAshSmokeParticle net/minecraft/client/particle/BaseAshSmokeParticle +CL: net/minecraft/client/particle/BlockMarker net/minecraft/client/particle/BlockMarker +CL: net/minecraft/client/particle/BlockMarker$Provider net/minecraft/client/particle/BlockMarker$Provider +CL: net/minecraft/client/particle/BreakingItemParticle net/minecraft/client/particle/BreakingItemParticle +CL: net/minecraft/client/particle/BreakingItemParticle$Provider net/minecraft/client/particle/BreakingItemParticle$Provider +CL: net/minecraft/client/particle/BreakingItemParticle$SlimeProvider net/minecraft/client/particle/BreakingItemParticle$SlimeProvider +CL: net/minecraft/client/particle/BreakingItemParticle$SnowballProvider net/minecraft/client/particle/BreakingItemParticle$SnowballProvider +CL: net/minecraft/client/particle/BubbleColumnUpParticle net/minecraft/client/particle/BubbleColumnUpParticle +CL: net/minecraft/client/particle/BubbleColumnUpParticle$Provider net/minecraft/client/particle/BubbleColumnUpParticle$Provider +CL: net/minecraft/client/particle/BubbleParticle net/minecraft/client/particle/BubbleParticle +CL: net/minecraft/client/particle/BubbleParticle$Provider net/minecraft/client/particle/BubbleParticle$Provider +CL: net/minecraft/client/particle/BubblePopParticle net/minecraft/client/particle/BubblePopParticle +CL: net/minecraft/client/particle/BubblePopParticle$Provider net/minecraft/client/particle/BubblePopParticle$Provider +CL: net/minecraft/client/particle/CampfireSmokeParticle net/minecraft/client/particle/CampfireSmokeParticle +CL: net/minecraft/client/particle/CampfireSmokeParticle$CosyProvider net/minecraft/client/particle/CampfireSmokeParticle$CosyProvider +CL: net/minecraft/client/particle/CampfireSmokeParticle$SignalProvider net/minecraft/client/particle/CampfireSmokeParticle$SignalProvider +CL: net/minecraft/client/particle/CherryParticle net/minecraft/client/particle/CherryParticle +CL: net/minecraft/client/particle/CritParticle net/minecraft/client/particle/CritParticle +CL: net/minecraft/client/particle/CritParticle$DamageIndicatorProvider net/minecraft/client/particle/CritParticle$DamageIndicatorProvider +CL: net/minecraft/client/particle/CritParticle$MagicProvider net/minecraft/client/particle/CritParticle$MagicProvider +CL: net/minecraft/client/particle/CritParticle$Provider net/minecraft/client/particle/CritParticle$Provider +CL: net/minecraft/client/particle/DragonBreathParticle net/minecraft/client/particle/DragonBreathParticle +CL: net/minecraft/client/particle/DragonBreathParticle$Provider net/minecraft/client/particle/DragonBreathParticle$Provider +CL: net/minecraft/client/particle/DripParticle net/minecraft/client/particle/DripParticle +CL: net/minecraft/client/particle/DripParticle$CoolingDripHangParticle net/minecraft/client/particle/DripParticle$CoolingDripHangParticle +CL: net/minecraft/client/particle/DripParticle$DripHangParticle net/minecraft/client/particle/DripParticle$DripHangParticle +CL: net/minecraft/client/particle/DripParticle$DripLandParticle net/minecraft/client/particle/DripParticle$DripLandParticle +CL: net/minecraft/client/particle/DripParticle$DripstoneFallAndLandParticle net/minecraft/client/particle/DripParticle$DripstoneFallAndLandParticle +CL: net/minecraft/client/particle/DripParticle$FallAndLandParticle net/minecraft/client/particle/DripParticle$FallAndLandParticle +CL: net/minecraft/client/particle/DripParticle$FallingParticle net/minecraft/client/particle/DripParticle$FallingParticle +CL: net/minecraft/client/particle/DripParticle$HoneyFallAndLandParticle net/minecraft/client/particle/DripParticle$HoneyFallAndLandParticle +CL: net/minecraft/client/particle/DustColorTransitionParticle net/minecraft/client/particle/DustColorTransitionParticle +CL: net/minecraft/client/particle/DustColorTransitionParticle$Provider net/minecraft/client/particle/DustColorTransitionParticle$Provider +CL: net/minecraft/client/particle/DustParticle net/minecraft/client/particle/DustParticle +CL: net/minecraft/client/particle/DustParticle$Provider net/minecraft/client/particle/DustParticle$Provider +CL: net/minecraft/client/particle/DustParticleBase net/minecraft/client/particle/DustParticleBase +CL: net/minecraft/client/particle/EnchantmentTableParticle net/minecraft/client/particle/EnchantmentTableParticle +CL: net/minecraft/client/particle/EnchantmentTableParticle$NautilusProvider net/minecraft/client/particle/EnchantmentTableParticle$NautilusProvider +CL: net/minecraft/client/particle/EnchantmentTableParticle$Provider net/minecraft/client/particle/EnchantmentTableParticle$Provider +CL: net/minecraft/client/particle/EndRodParticle net/minecraft/client/particle/EndRodParticle +CL: net/minecraft/client/particle/EndRodParticle$Provider net/minecraft/client/particle/EndRodParticle$Provider +CL: net/minecraft/client/particle/ExplodeParticle net/minecraft/client/particle/ExplodeParticle +CL: net/minecraft/client/particle/ExplodeParticle$Provider net/minecraft/client/particle/ExplodeParticle$Provider +CL: net/minecraft/client/particle/FallingDustParticle net/minecraft/client/particle/FallingDustParticle +CL: net/minecraft/client/particle/FallingDustParticle$Provider net/minecraft/client/particle/FallingDustParticle$Provider +CL: net/minecraft/client/particle/FireworkParticles net/minecraft/client/particle/FireworkParticles +CL: net/minecraft/client/particle/FireworkParticles$1 net/minecraft/client/particle/FireworkParticles$1 +CL: net/minecraft/client/particle/FireworkParticles$FlashProvider net/minecraft/client/particle/FireworkParticles$FlashProvider +CL: net/minecraft/client/particle/FireworkParticles$OverlayParticle net/minecraft/client/particle/FireworkParticles$OverlayParticle +CL: net/minecraft/client/particle/FireworkParticles$SparkParticle net/minecraft/client/particle/FireworkParticles$SparkParticle +CL: net/minecraft/client/particle/FireworkParticles$SparkProvider net/minecraft/client/particle/FireworkParticles$SparkProvider +CL: net/minecraft/client/particle/FireworkParticles$Starter net/minecraft/client/particle/FireworkParticles$Starter +CL: net/minecraft/client/particle/FlameParticle net/minecraft/client/particle/FlameParticle +CL: net/minecraft/client/particle/FlameParticle$Provider net/minecraft/client/particle/FlameParticle$Provider +CL: net/minecraft/client/particle/FlameParticle$SmallFlameProvider net/minecraft/client/particle/FlameParticle$SmallFlameProvider +CL: net/minecraft/client/particle/GlowParticle net/minecraft/client/particle/GlowParticle +CL: net/minecraft/client/particle/GlowParticle$ElectricSparkProvider net/minecraft/client/particle/GlowParticle$ElectricSparkProvider +CL: net/minecraft/client/particle/GlowParticle$GlowSquidProvider net/minecraft/client/particle/GlowParticle$GlowSquidProvider +CL: net/minecraft/client/particle/GlowParticle$ScrapeProvider net/minecraft/client/particle/GlowParticle$ScrapeProvider +CL: net/minecraft/client/particle/GlowParticle$WaxOffProvider net/minecraft/client/particle/GlowParticle$WaxOffProvider +CL: net/minecraft/client/particle/GlowParticle$WaxOnProvider net/minecraft/client/particle/GlowParticle$WaxOnProvider +CL: net/minecraft/client/particle/HeartParticle net/minecraft/client/particle/HeartParticle +CL: net/minecraft/client/particle/HeartParticle$AngryVillagerProvider net/minecraft/client/particle/HeartParticle$AngryVillagerProvider +CL: net/minecraft/client/particle/HeartParticle$Provider net/minecraft/client/particle/HeartParticle$Provider +CL: net/minecraft/client/particle/HugeExplosionParticle net/minecraft/client/particle/HugeExplosionParticle +CL: net/minecraft/client/particle/HugeExplosionParticle$Provider net/minecraft/client/particle/HugeExplosionParticle$Provider +CL: net/minecraft/client/particle/HugeExplosionSeedParticle net/minecraft/client/particle/HugeExplosionSeedParticle +CL: net/minecraft/client/particle/HugeExplosionSeedParticle$Provider net/minecraft/client/particle/HugeExplosionSeedParticle$Provider +CL: net/minecraft/client/particle/ItemPickupParticle net/minecraft/client/particle/ItemPickupParticle +CL: net/minecraft/client/particle/LargeSmokeParticle net/minecraft/client/particle/LargeSmokeParticle +CL: net/minecraft/client/particle/LargeSmokeParticle$Provider net/minecraft/client/particle/LargeSmokeParticle$Provider +CL: net/minecraft/client/particle/LavaParticle net/minecraft/client/particle/LavaParticle +CL: net/minecraft/client/particle/LavaParticle$Provider net/minecraft/client/particle/LavaParticle$Provider +CL: net/minecraft/client/particle/MobAppearanceParticle net/minecraft/client/particle/MobAppearanceParticle +CL: net/minecraft/client/particle/MobAppearanceParticle$Provider net/minecraft/client/particle/MobAppearanceParticle$Provider +CL: net/minecraft/client/particle/NoRenderParticle net/minecraft/client/particle/NoRenderParticle +CL: net/minecraft/client/particle/NoteParticle net/minecraft/client/particle/NoteParticle +CL: net/minecraft/client/particle/NoteParticle$Provider net/minecraft/client/particle/NoteParticle$Provider +CL: net/minecraft/client/particle/Particle net/minecraft/client/particle/Particle +CL: net/minecraft/client/particle/ParticleDescription net/minecraft/client/particle/ParticleDescription +CL: net/minecraft/client/particle/ParticleEngine net/minecraft/client/particle/ParticleEngine +CL: net/minecraft/client/particle/ParticleEngine$1ParticleDefinition net/minecraft/client/particle/ParticleEngine$1ParticleDefinition +CL: net/minecraft/client/particle/ParticleEngine$MutableSpriteSet net/minecraft/client/particle/ParticleEngine$MutableSpriteSet +CL: net/minecraft/client/particle/ParticleEngine$SpriteParticleRegistration net/minecraft/client/particle/ParticleEngine$SpriteParticleRegistration +CL: net/minecraft/client/particle/ParticleProvider net/minecraft/client/particle/ParticleProvider +CL: net/minecraft/client/particle/ParticleProvider$Sprite net/minecraft/client/particle/ParticleProvider$Sprite +CL: net/minecraft/client/particle/ParticleRenderType net/minecraft/client/particle/ParticleRenderType +CL: net/minecraft/client/particle/ParticleRenderType$1 net/minecraft/client/particle/ParticleRenderType$1 +CL: net/minecraft/client/particle/ParticleRenderType$2 net/minecraft/client/particle/ParticleRenderType$2 +CL: net/minecraft/client/particle/ParticleRenderType$3 net/minecraft/client/particle/ParticleRenderType$3 +CL: net/minecraft/client/particle/ParticleRenderType$4 net/minecraft/client/particle/ParticleRenderType$4 +CL: net/minecraft/client/particle/ParticleRenderType$5 net/minecraft/client/particle/ParticleRenderType$5 +CL: net/minecraft/client/particle/ParticleRenderType$6 net/minecraft/client/particle/ParticleRenderType$6 +CL: net/minecraft/client/particle/PlayerCloudParticle net/minecraft/client/particle/PlayerCloudParticle +CL: net/minecraft/client/particle/PlayerCloudParticle$Provider net/minecraft/client/particle/PlayerCloudParticle$Provider +CL: net/minecraft/client/particle/PlayerCloudParticle$SneezeProvider net/minecraft/client/particle/PlayerCloudParticle$SneezeProvider +CL: net/minecraft/client/particle/PortalParticle net/minecraft/client/particle/PortalParticle +CL: net/minecraft/client/particle/PortalParticle$Provider net/minecraft/client/particle/PortalParticle$Provider +CL: net/minecraft/client/particle/ReversePortalParticle net/minecraft/client/particle/ReversePortalParticle +CL: net/minecraft/client/particle/ReversePortalParticle$ReversePortalProvider net/minecraft/client/particle/ReversePortalParticle$ReversePortalProvider +CL: net/minecraft/client/particle/RisingParticle net/minecraft/client/particle/RisingParticle +CL: net/minecraft/client/particle/SculkChargeParticle net/minecraft/client/particle/SculkChargeParticle +CL: net/minecraft/client/particle/SculkChargeParticle$Provider net/minecraft/client/particle/SculkChargeParticle$Provider +CL: net/minecraft/client/particle/SculkChargePopParticle net/minecraft/client/particle/SculkChargePopParticle +CL: net/minecraft/client/particle/SculkChargePopParticle$Provider net/minecraft/client/particle/SculkChargePopParticle$Provider +CL: net/minecraft/client/particle/ShriekParticle net/minecraft/client/particle/ShriekParticle +CL: net/minecraft/client/particle/ShriekParticle$Provider net/minecraft/client/particle/ShriekParticle$Provider +CL: net/minecraft/client/particle/SimpleAnimatedParticle net/minecraft/client/particle/SimpleAnimatedParticle +CL: net/minecraft/client/particle/SingleQuadParticle net/minecraft/client/particle/SingleQuadParticle +CL: net/minecraft/client/particle/SmokeParticle net/minecraft/client/particle/SmokeParticle +CL: net/minecraft/client/particle/SmokeParticle$Provider net/minecraft/client/particle/SmokeParticle$Provider +CL: net/minecraft/client/particle/SnowflakeParticle net/minecraft/client/particle/SnowflakeParticle +CL: net/minecraft/client/particle/SnowflakeParticle$Provider net/minecraft/client/particle/SnowflakeParticle$Provider +CL: net/minecraft/client/particle/SonicBoomParticle net/minecraft/client/particle/SonicBoomParticle +CL: net/minecraft/client/particle/SonicBoomParticle$Provider net/minecraft/client/particle/SonicBoomParticle$Provider +CL: net/minecraft/client/particle/SoulParticle net/minecraft/client/particle/SoulParticle +CL: net/minecraft/client/particle/SoulParticle$EmissiveProvider net/minecraft/client/particle/SoulParticle$EmissiveProvider +CL: net/minecraft/client/particle/SoulParticle$Provider net/minecraft/client/particle/SoulParticle$Provider +CL: net/minecraft/client/particle/SpellParticle net/minecraft/client/particle/SpellParticle +CL: net/minecraft/client/particle/SpellParticle$AmbientMobProvider net/minecraft/client/particle/SpellParticle$AmbientMobProvider +CL: net/minecraft/client/particle/SpellParticle$InstantProvider net/minecraft/client/particle/SpellParticle$InstantProvider +CL: net/minecraft/client/particle/SpellParticle$MobProvider net/minecraft/client/particle/SpellParticle$MobProvider +CL: net/minecraft/client/particle/SpellParticle$Provider net/minecraft/client/particle/SpellParticle$Provider +CL: net/minecraft/client/particle/SpellParticle$WitchProvider net/minecraft/client/particle/SpellParticle$WitchProvider +CL: net/minecraft/client/particle/SpitParticle net/minecraft/client/particle/SpitParticle +CL: net/minecraft/client/particle/SpitParticle$Provider net/minecraft/client/particle/SpitParticle$Provider +CL: net/minecraft/client/particle/SplashParticle net/minecraft/client/particle/SplashParticle +CL: net/minecraft/client/particle/SplashParticle$Provider net/minecraft/client/particle/SplashParticle$Provider +CL: net/minecraft/client/particle/SpriteSet net/minecraft/client/particle/SpriteSet +CL: net/minecraft/client/particle/SquidInkParticle net/minecraft/client/particle/SquidInkParticle +CL: net/minecraft/client/particle/SquidInkParticle$GlowInkProvider net/minecraft/client/particle/SquidInkParticle$GlowInkProvider +CL: net/minecraft/client/particle/SquidInkParticle$Provider net/minecraft/client/particle/SquidInkParticle$Provider +CL: net/minecraft/client/particle/SuspendedParticle net/minecraft/client/particle/SuspendedParticle +CL: net/minecraft/client/particle/SuspendedParticle$CrimsonSporeProvider net/minecraft/client/particle/SuspendedParticle$CrimsonSporeProvider +CL: net/minecraft/client/particle/SuspendedParticle$SporeBlossomAirProvider net/minecraft/client/particle/SuspendedParticle$SporeBlossomAirProvider +CL: net/minecraft/client/particle/SuspendedParticle$SporeBlossomAirProvider$1 net/minecraft/client/particle/SuspendedParticle$SporeBlossomAirProvider$1 +CL: net/minecraft/client/particle/SuspendedParticle$UnderwaterProvider net/minecraft/client/particle/SuspendedParticle$UnderwaterProvider +CL: net/minecraft/client/particle/SuspendedParticle$WarpedSporeProvider net/minecraft/client/particle/SuspendedParticle$WarpedSporeProvider +CL: net/minecraft/client/particle/SuspendedTownParticle net/minecraft/client/particle/SuspendedTownParticle +CL: net/minecraft/client/particle/SuspendedTownParticle$ComposterFillProvider net/minecraft/client/particle/SuspendedTownParticle$ComposterFillProvider +CL: net/minecraft/client/particle/SuspendedTownParticle$DolphinSpeedProvider net/minecraft/client/particle/SuspendedTownParticle$DolphinSpeedProvider +CL: net/minecraft/client/particle/SuspendedTownParticle$EggCrackProvider net/minecraft/client/particle/SuspendedTownParticle$EggCrackProvider +CL: net/minecraft/client/particle/SuspendedTownParticle$HappyVillagerProvider net/minecraft/client/particle/SuspendedTownParticle$HappyVillagerProvider +CL: net/minecraft/client/particle/SuspendedTownParticle$Provider net/minecraft/client/particle/SuspendedTownParticle$Provider +CL: net/minecraft/client/particle/TerrainParticle net/minecraft/client/particle/TerrainParticle +CL: net/minecraft/client/particle/TerrainParticle$Provider net/minecraft/client/particle/TerrainParticle$Provider +CL: net/minecraft/client/particle/TextureSheetParticle net/minecraft/client/particle/TextureSheetParticle +CL: net/minecraft/client/particle/TotemParticle net/minecraft/client/particle/TotemParticle +CL: net/minecraft/client/particle/TotemParticle$Provider net/minecraft/client/particle/TotemParticle$Provider +CL: net/minecraft/client/particle/TrackingEmitter net/minecraft/client/particle/TrackingEmitter +CL: net/minecraft/client/particle/VibrationSignalParticle net/minecraft/client/particle/VibrationSignalParticle +CL: net/minecraft/client/particle/VibrationSignalParticle$Provider net/minecraft/client/particle/VibrationSignalParticle$Provider +CL: net/minecraft/client/particle/WakeParticle net/minecraft/client/particle/WakeParticle +CL: net/minecraft/client/particle/WakeParticle$Provider net/minecraft/client/particle/WakeParticle$Provider +CL: net/minecraft/client/particle/WaterCurrentDownParticle net/minecraft/client/particle/WaterCurrentDownParticle +CL: net/minecraft/client/particle/WaterCurrentDownParticle$Provider net/minecraft/client/particle/WaterCurrentDownParticle$Provider +CL: net/minecraft/client/particle/WaterDropParticle net/minecraft/client/particle/WaterDropParticle +CL: net/minecraft/client/particle/WaterDropParticle$Provider net/minecraft/client/particle/WaterDropParticle$Provider +CL: net/minecraft/client/particle/WhiteAshParticle net/minecraft/client/particle/WhiteAshParticle +CL: net/minecraft/client/particle/WhiteAshParticle$Provider net/minecraft/client/particle/WhiteAshParticle$Provider +CL: net/minecraft/client/particle/package-info net/minecraft/client/particle/package-info +CL: net/minecraft/client/player/AbstractClientPlayer net/minecraft/client/player/AbstractClientPlayer +CL: net/minecraft/client/player/Input net/minecraft/client/player/Input +CL: net/minecraft/client/player/KeyboardInput net/minecraft/client/player/KeyboardInput +CL: net/minecraft/client/player/LocalPlayer net/minecraft/client/player/LocalPlayer +CL: net/minecraft/client/player/RemotePlayer net/minecraft/client/player/RemotePlayer +CL: net/minecraft/client/player/inventory/Hotbar net/minecraft/client/player/inventory/Hotbar +CL: net/minecraft/client/player/inventory/package-info net/minecraft/client/player/inventory/package-info +CL: net/minecraft/client/player/package-info net/minecraft/client/player/package-info +CL: net/minecraft/client/profiling/ClientMetricsSamplersProvider net/minecraft/client/profiling/ClientMetricsSamplersProvider +CL: net/minecraft/client/profiling/package-info net/minecraft/client/profiling/package-info +CL: net/minecraft/client/quickplay/QuickPlay net/minecraft/client/quickplay/QuickPlay +CL: net/minecraft/client/quickplay/QuickPlayLog net/minecraft/client/quickplay/QuickPlayLog +CL: net/minecraft/client/quickplay/QuickPlayLog$1 net/minecraft/client/quickplay/QuickPlayLog$1 +CL: net/minecraft/client/quickplay/QuickPlayLog$QuickPlayEntry net/minecraft/client/quickplay/QuickPlayLog$QuickPlayEntry +CL: net/minecraft/client/quickplay/QuickPlayLog$QuickPlayWorld net/minecraft/client/quickplay/QuickPlayLog$QuickPlayWorld +CL: net/minecraft/client/quickplay/QuickPlayLog$Type net/minecraft/client/quickplay/QuickPlayLog$Type +CL: net/minecraft/client/quickplay/package-info net/minecraft/client/quickplay/package-info +CL: net/minecraft/client/renderer/BiomeColors net/minecraft/client/renderer/BiomeColors +CL: net/minecraft/client/renderer/BlockEntityWithoutLevelRenderer net/minecraft/client/renderer/BlockEntityWithoutLevelRenderer +CL: net/minecraft/client/renderer/ChunkBufferBuilderPack net/minecraft/client/renderer/ChunkBufferBuilderPack +CL: net/minecraft/client/renderer/CubeMap net/minecraft/client/renderer/CubeMap +CL: net/minecraft/client/renderer/DimensionSpecialEffects net/minecraft/client/renderer/DimensionSpecialEffects +CL: net/minecraft/client/renderer/DimensionSpecialEffects$EndEffects net/minecraft/client/renderer/DimensionSpecialEffects$EndEffects +CL: net/minecraft/client/renderer/DimensionSpecialEffects$NetherEffects net/minecraft/client/renderer/DimensionSpecialEffects$NetherEffects +CL: net/minecraft/client/renderer/DimensionSpecialEffects$OverworldEffects net/minecraft/client/renderer/DimensionSpecialEffects$OverworldEffects +CL: net/minecraft/client/renderer/DimensionSpecialEffects$SkyType net/minecraft/client/renderer/DimensionSpecialEffects$SkyType +CL: net/minecraft/client/renderer/EffectInstance net/minecraft/client/renderer/EffectInstance +CL: net/minecraft/client/renderer/FaceInfo net/minecraft/client/renderer/FaceInfo +CL: net/minecraft/client/renderer/FaceInfo$Constants net/minecraft/client/renderer/FaceInfo$Constants +CL: net/minecraft/client/renderer/FaceInfo$VertexInfo net/minecraft/client/renderer/FaceInfo$VertexInfo +CL: net/minecraft/client/renderer/FogRenderer net/minecraft/client/renderer/FogRenderer +CL: net/minecraft/client/renderer/FogRenderer$BlindnessFogFunction net/minecraft/client/renderer/FogRenderer$BlindnessFogFunction +CL: net/minecraft/client/renderer/FogRenderer$DarknessFogFunction net/minecraft/client/renderer/FogRenderer$DarknessFogFunction +CL: net/minecraft/client/renderer/FogRenderer$FogData net/minecraft/client/renderer/FogRenderer$FogData +CL: net/minecraft/client/renderer/FogRenderer$FogMode net/minecraft/client/renderer/FogRenderer$FogMode +CL: net/minecraft/client/renderer/FogRenderer$MobEffectFogFunction net/minecraft/client/renderer/FogRenderer$MobEffectFogFunction +CL: net/minecraft/client/renderer/GameRenderer net/minecraft/client/renderer/GameRenderer +CL: net/minecraft/client/renderer/GameRenderer$1 net/minecraft/client/renderer/GameRenderer$1 +CL: net/minecraft/client/renderer/GameRenderer$ResourceCache net/minecraft/client/renderer/GameRenderer$ResourceCache +CL: net/minecraft/client/renderer/GpuWarnlistManager net/minecraft/client/renderer/GpuWarnlistManager +CL: net/minecraft/client/renderer/GpuWarnlistManager$Preparations net/minecraft/client/renderer/GpuWarnlistManager$Preparations +CL: net/minecraft/client/renderer/ItemBlockRenderTypes net/minecraft/client/renderer/ItemBlockRenderTypes +CL: net/minecraft/client/renderer/ItemInHandRenderer net/minecraft/client/renderer/ItemInHandRenderer +CL: net/minecraft/client/renderer/ItemInHandRenderer$1 net/minecraft/client/renderer/ItemInHandRenderer$1 +CL: net/minecraft/client/renderer/ItemInHandRenderer$HandRenderSelection net/minecraft/client/renderer/ItemInHandRenderer$HandRenderSelection +CL: net/minecraft/client/renderer/ItemModelShaper net/minecraft/client/renderer/ItemModelShaper +CL: net/minecraft/client/renderer/LevelRenderer net/minecraft/client/renderer/LevelRenderer +CL: net/minecraft/client/renderer/LevelRenderer$RenderChunkInfo net/minecraft/client/renderer/LevelRenderer$RenderChunkInfo +CL: net/minecraft/client/renderer/LevelRenderer$RenderChunkStorage net/minecraft/client/renderer/LevelRenderer$RenderChunkStorage +CL: net/minecraft/client/renderer/LevelRenderer$RenderInfoMap net/minecraft/client/renderer/LevelRenderer$RenderInfoMap +CL: net/minecraft/client/renderer/LevelRenderer$TransparencyShaderException net/minecraft/client/renderer/LevelRenderer$TransparencyShaderException +CL: net/minecraft/client/renderer/LightTexture net/minecraft/client/renderer/LightTexture +CL: net/minecraft/client/renderer/MultiBufferSource net/minecraft/client/renderer/MultiBufferSource +CL: net/minecraft/client/renderer/MultiBufferSource$BufferSource net/minecraft/client/renderer/MultiBufferSource$BufferSource +CL: net/minecraft/client/renderer/OutlineBufferSource net/minecraft/client/renderer/OutlineBufferSource +CL: net/minecraft/client/renderer/OutlineBufferSource$EntityOutlineGenerator net/minecraft/client/renderer/OutlineBufferSource$EntityOutlineGenerator +CL: net/minecraft/client/renderer/PanoramaRenderer net/minecraft/client/renderer/PanoramaRenderer +CL: net/minecraft/client/renderer/PostChain net/minecraft/client/renderer/PostChain +CL: net/minecraft/client/renderer/PostPass net/minecraft/client/renderer/PostPass +CL: net/minecraft/client/renderer/Rect2i net/minecraft/client/renderer/Rect2i +CL: net/minecraft/client/renderer/RenderBuffers net/minecraft/client/renderer/RenderBuffers +CL: net/minecraft/client/renderer/RenderStateShard net/minecraft/client/renderer/RenderStateShard +CL: net/minecraft/client/renderer/RenderStateShard$BooleanStateShard net/minecraft/client/renderer/RenderStateShard$BooleanStateShard +CL: net/minecraft/client/renderer/RenderStateShard$ColorLogicStateShard net/minecraft/client/renderer/RenderStateShard$ColorLogicStateShard +CL: net/minecraft/client/renderer/RenderStateShard$CullStateShard net/minecraft/client/renderer/RenderStateShard$CullStateShard +CL: net/minecraft/client/renderer/RenderStateShard$DepthTestStateShard net/minecraft/client/renderer/RenderStateShard$DepthTestStateShard +CL: net/minecraft/client/renderer/RenderStateShard$EmptyTextureStateShard net/minecraft/client/renderer/RenderStateShard$EmptyTextureStateShard +CL: net/minecraft/client/renderer/RenderStateShard$LayeringStateShard net/minecraft/client/renderer/RenderStateShard$LayeringStateShard +CL: net/minecraft/client/renderer/RenderStateShard$LightmapStateShard net/minecraft/client/renderer/RenderStateShard$LightmapStateShard +CL: net/minecraft/client/renderer/RenderStateShard$LineStateShard net/minecraft/client/renderer/RenderStateShard$LineStateShard +CL: net/minecraft/client/renderer/RenderStateShard$MultiTextureStateShard net/minecraft/client/renderer/RenderStateShard$MultiTextureStateShard +CL: net/minecraft/client/renderer/RenderStateShard$MultiTextureStateShard$Builder net/minecraft/client/renderer/RenderStateShard$MultiTextureStateShard$Builder +CL: net/minecraft/client/renderer/RenderStateShard$OffsetTexturingStateShard net/minecraft/client/renderer/RenderStateShard$OffsetTexturingStateShard +CL: net/minecraft/client/renderer/RenderStateShard$OutputStateShard net/minecraft/client/renderer/RenderStateShard$OutputStateShard +CL: net/minecraft/client/renderer/RenderStateShard$OverlayStateShard net/minecraft/client/renderer/RenderStateShard$OverlayStateShard +CL: net/minecraft/client/renderer/RenderStateShard$ShaderStateShard net/minecraft/client/renderer/RenderStateShard$ShaderStateShard +CL: net/minecraft/client/renderer/RenderStateShard$TextureStateShard net/minecraft/client/renderer/RenderStateShard$TextureStateShard +CL: net/minecraft/client/renderer/RenderStateShard$TexturingStateShard net/minecraft/client/renderer/RenderStateShard$TexturingStateShard +CL: net/minecraft/client/renderer/RenderStateShard$TransparencyStateShard net/minecraft/client/renderer/RenderStateShard$TransparencyStateShard +CL: net/minecraft/client/renderer/RenderStateShard$WriteMaskStateShard net/minecraft/client/renderer/RenderStateShard$WriteMaskStateShard +CL: net/minecraft/client/renderer/RenderType net/minecraft/client/renderer/RenderType +CL: net/minecraft/client/renderer/RenderType$CompositeRenderType net/minecraft/client/renderer/RenderType$CompositeRenderType +CL: net/minecraft/client/renderer/RenderType$CompositeState net/minecraft/client/renderer/RenderType$CompositeState +CL: net/minecraft/client/renderer/RenderType$CompositeState$CompositeStateBuilder net/minecraft/client/renderer/RenderType$CompositeState$CompositeStateBuilder +CL: net/minecraft/client/renderer/RenderType$OutlineProperty net/minecraft/client/renderer/RenderType$OutlineProperty +CL: net/minecraft/client/renderer/RunningTrimmedMean net/minecraft/client/renderer/RunningTrimmedMean +CL: net/minecraft/client/renderer/ScreenEffectRenderer net/minecraft/client/renderer/ScreenEffectRenderer +CL: net/minecraft/client/renderer/ShaderInstance net/minecraft/client/renderer/ShaderInstance +CL: net/minecraft/client/renderer/ShaderInstance$1 net/minecraft/client/renderer/ShaderInstance$1 +CL: net/minecraft/client/renderer/Sheets net/minecraft/client/renderer/Sheets +CL: net/minecraft/client/renderer/Sheets$1 net/minecraft/client/renderer/Sheets$1 +CL: net/minecraft/client/renderer/SpriteCoordinateExpander net/minecraft/client/renderer/SpriteCoordinateExpander +CL: net/minecraft/client/renderer/ViewArea net/minecraft/client/renderer/ViewArea +CL: net/minecraft/client/renderer/VirtualScreen net/minecraft/client/renderer/VirtualScreen +CL: net/minecraft/client/renderer/block/BlockModelShaper net/minecraft/client/renderer/block/BlockModelShaper +CL: net/minecraft/client/renderer/block/BlockRenderDispatcher net/minecraft/client/renderer/block/BlockRenderDispatcher +CL: net/minecraft/client/renderer/block/BlockRenderDispatcher$1 net/minecraft/client/renderer/block/BlockRenderDispatcher$1 +CL: net/minecraft/client/renderer/block/LiquidBlockRenderer net/minecraft/client/renderer/block/LiquidBlockRenderer +CL: net/minecraft/client/renderer/block/LiquidBlockRenderer$1 net/minecraft/client/renderer/block/LiquidBlockRenderer$1 +CL: net/minecraft/client/renderer/block/ModelBlockRenderer net/minecraft/client/renderer/block/ModelBlockRenderer +CL: net/minecraft/client/renderer/block/ModelBlockRenderer$1 net/minecraft/client/renderer/block/ModelBlockRenderer$1 +CL: net/minecraft/client/renderer/block/ModelBlockRenderer$AdjacencyInfo net/minecraft/client/renderer/block/ModelBlockRenderer$AdjacencyInfo +CL: net/minecraft/client/renderer/block/ModelBlockRenderer$AmbientOcclusionFace net/minecraft/client/renderer/block/ModelBlockRenderer$AmbientOcclusionFace +CL: net/minecraft/client/renderer/block/ModelBlockRenderer$AmbientVertexRemap net/minecraft/client/renderer/block/ModelBlockRenderer$AmbientVertexRemap +CL: net/minecraft/client/renderer/block/ModelBlockRenderer$Cache net/minecraft/client/renderer/block/ModelBlockRenderer$Cache +CL: net/minecraft/client/renderer/block/ModelBlockRenderer$Cache$1 net/minecraft/client/renderer/block/ModelBlockRenderer$Cache$1 +CL: net/minecraft/client/renderer/block/ModelBlockRenderer$Cache$2 net/minecraft/client/renderer/block/ModelBlockRenderer$Cache$2 +CL: net/minecraft/client/renderer/block/ModelBlockRenderer$SizeInfo net/minecraft/client/renderer/block/ModelBlockRenderer$SizeInfo +CL: net/minecraft/client/renderer/block/model/BakedQuad net/minecraft/client/renderer/block/model/BakedQuad +CL: net/minecraft/client/renderer/block/model/BlockElement net/minecraft/client/renderer/block/model/BlockElement +CL: net/minecraft/client/renderer/block/model/BlockElement$1 net/minecraft/client/renderer/block/model/BlockElement$1 +CL: net/minecraft/client/renderer/block/model/BlockElement$Deserializer net/minecraft/client/renderer/block/model/BlockElement$Deserializer +CL: net/minecraft/client/renderer/block/model/BlockElementFace net/minecraft/client/renderer/block/model/BlockElementFace +CL: net/minecraft/client/renderer/block/model/BlockElementFace$Deserializer net/minecraft/client/renderer/block/model/BlockElementFace$Deserializer +CL: net/minecraft/client/renderer/block/model/BlockElementRotation net/minecraft/client/renderer/block/model/BlockElementRotation +CL: net/minecraft/client/renderer/block/model/BlockFaceUV net/minecraft/client/renderer/block/model/BlockFaceUV +CL: net/minecraft/client/renderer/block/model/BlockFaceUV$Deserializer net/minecraft/client/renderer/block/model/BlockFaceUV$Deserializer +CL: net/minecraft/client/renderer/block/model/BlockModel net/minecraft/client/renderer/block/model/BlockModel +CL: net/minecraft/client/renderer/block/model/BlockModel$Deserializer net/minecraft/client/renderer/block/model/BlockModel$Deserializer +CL: net/minecraft/client/renderer/block/model/BlockModel$GuiLight net/minecraft/client/renderer/block/model/BlockModel$GuiLight +CL: net/minecraft/client/renderer/block/model/BlockModel$LoopException net/minecraft/client/renderer/block/model/BlockModel$LoopException +CL: net/minecraft/client/renderer/block/model/BlockModelDefinition net/minecraft/client/renderer/block/model/BlockModelDefinition +CL: net/minecraft/client/renderer/block/model/BlockModelDefinition$Context net/minecraft/client/renderer/block/model/BlockModelDefinition$Context +CL: net/minecraft/client/renderer/block/model/BlockModelDefinition$Deserializer net/minecraft/client/renderer/block/model/BlockModelDefinition$Deserializer +CL: net/minecraft/client/renderer/block/model/BlockModelDefinition$MissingVariantException net/minecraft/client/renderer/block/model/BlockModelDefinition$MissingVariantException +CL: net/minecraft/client/renderer/block/model/FaceBakery net/minecraft/client/renderer/block/model/FaceBakery +CL: net/minecraft/client/renderer/block/model/FaceBakery$1 net/minecraft/client/renderer/block/model/FaceBakery$1 +CL: net/minecraft/client/renderer/block/model/ItemModelGenerator net/minecraft/client/renderer/block/model/ItemModelGenerator +CL: net/minecraft/client/renderer/block/model/ItemModelGenerator$1 net/minecraft/client/renderer/block/model/ItemModelGenerator$1 +CL: net/minecraft/client/renderer/block/model/ItemModelGenerator$Span net/minecraft/client/renderer/block/model/ItemModelGenerator$Span +CL: net/minecraft/client/renderer/block/model/ItemModelGenerator$SpanFacing net/minecraft/client/renderer/block/model/ItemModelGenerator$SpanFacing +CL: net/minecraft/client/renderer/block/model/ItemOverride net/minecraft/client/renderer/block/model/ItemOverride +CL: net/minecraft/client/renderer/block/model/ItemOverride$Deserializer net/minecraft/client/renderer/block/model/ItemOverride$Deserializer +CL: net/minecraft/client/renderer/block/model/ItemOverride$Predicate net/minecraft/client/renderer/block/model/ItemOverride$Predicate +CL: net/minecraft/client/renderer/block/model/ItemOverrides net/minecraft/client/renderer/block/model/ItemOverrides +CL: net/minecraft/client/renderer/block/model/ItemOverrides$BakedOverride net/minecraft/client/renderer/block/model/ItemOverrides$BakedOverride +CL: net/minecraft/client/renderer/block/model/ItemOverrides$PropertyMatcher net/minecraft/client/renderer/block/model/ItemOverrides$PropertyMatcher +CL: net/minecraft/client/renderer/block/model/ItemTransform net/minecraft/client/renderer/block/model/ItemTransform +CL: net/minecraft/client/renderer/block/model/ItemTransform$Deserializer net/minecraft/client/renderer/block/model/ItemTransform$Deserializer +CL: net/minecraft/client/renderer/block/model/ItemTransforms net/minecraft/client/renderer/block/model/ItemTransforms +CL: net/minecraft/client/renderer/block/model/ItemTransforms$1 net/minecraft/client/renderer/block/model/ItemTransforms$1 +CL: net/minecraft/client/renderer/block/model/ItemTransforms$Deserializer net/minecraft/client/renderer/block/model/ItemTransforms$Deserializer +CL: net/minecraft/client/renderer/block/model/MultiVariant net/minecraft/client/renderer/block/model/MultiVariant +CL: net/minecraft/client/renderer/block/model/MultiVariant$Deserializer net/minecraft/client/renderer/block/model/MultiVariant$Deserializer +CL: net/minecraft/client/renderer/block/model/Variant net/minecraft/client/renderer/block/model/Variant +CL: net/minecraft/client/renderer/block/model/Variant$Deserializer net/minecraft/client/renderer/block/model/Variant$Deserializer +CL: net/minecraft/client/renderer/block/model/multipart/AndCondition net/minecraft/client/renderer/block/model/multipart/AndCondition +CL: net/minecraft/client/renderer/block/model/multipart/Condition net/minecraft/client/renderer/block/model/multipart/Condition +CL: net/minecraft/client/renderer/block/model/multipart/KeyValueCondition net/minecraft/client/renderer/block/model/multipart/KeyValueCondition +CL: net/minecraft/client/renderer/block/model/multipart/MultiPart net/minecraft/client/renderer/block/model/multipart/MultiPart +CL: net/minecraft/client/renderer/block/model/multipart/MultiPart$Deserializer net/minecraft/client/renderer/block/model/multipart/MultiPart$Deserializer +CL: net/minecraft/client/renderer/block/model/multipart/OrCondition net/minecraft/client/renderer/block/model/multipart/OrCondition +CL: net/minecraft/client/renderer/block/model/multipart/Selector net/minecraft/client/renderer/block/model/multipart/Selector +CL: net/minecraft/client/renderer/block/model/multipart/Selector$Deserializer net/minecraft/client/renderer/block/model/multipart/Selector$Deserializer +CL: net/minecraft/client/renderer/block/model/multipart/package-info net/minecraft/client/renderer/block/model/multipart/package-info +CL: net/minecraft/client/renderer/block/model/package-info net/minecraft/client/renderer/block/model/package-info +CL: net/minecraft/client/renderer/block/package-info net/minecraft/client/renderer/block/package-info +CL: net/minecraft/client/renderer/blockentity/BannerRenderer net/minecraft/client/renderer/blockentity/BannerRenderer +CL: net/minecraft/client/renderer/blockentity/BeaconRenderer net/minecraft/client/renderer/blockentity/BeaconRenderer +CL: net/minecraft/client/renderer/blockentity/BedRenderer net/minecraft/client/renderer/blockentity/BedRenderer +CL: net/minecraft/client/renderer/blockentity/BellRenderer net/minecraft/client/renderer/blockentity/BellRenderer +CL: net/minecraft/client/renderer/blockentity/BlockEntityRenderDispatcher net/minecraft/client/renderer/blockentity/BlockEntityRenderDispatcher +CL: net/minecraft/client/renderer/blockentity/BlockEntityRenderer net/minecraft/client/renderer/blockentity/BlockEntityRenderer +CL: net/minecraft/client/renderer/blockentity/BlockEntityRendererProvider net/minecraft/client/renderer/blockentity/BlockEntityRendererProvider +CL: net/minecraft/client/renderer/blockentity/BlockEntityRendererProvider$Context net/minecraft/client/renderer/blockentity/BlockEntityRendererProvider$Context +CL: net/minecraft/client/renderer/blockentity/BlockEntityRenderers net/minecraft/client/renderer/blockentity/BlockEntityRenderers +CL: net/minecraft/client/renderer/blockentity/BrightnessCombiner net/minecraft/client/renderer/blockentity/BrightnessCombiner +CL: net/minecraft/client/renderer/blockentity/BrushableBlockRenderer net/minecraft/client/renderer/blockentity/BrushableBlockRenderer +CL: net/minecraft/client/renderer/blockentity/BrushableBlockRenderer$1 net/minecraft/client/renderer/blockentity/BrushableBlockRenderer$1 +CL: net/minecraft/client/renderer/blockentity/CampfireRenderer net/minecraft/client/renderer/blockentity/CampfireRenderer +CL: net/minecraft/client/renderer/blockentity/ChestRenderer net/minecraft/client/renderer/blockentity/ChestRenderer +CL: net/minecraft/client/renderer/blockentity/ConduitRenderer net/minecraft/client/renderer/blockentity/ConduitRenderer +CL: net/minecraft/client/renderer/blockentity/DecoratedPotRenderer net/minecraft/client/renderer/blockentity/DecoratedPotRenderer +CL: net/minecraft/client/renderer/blockentity/EnchantTableRenderer net/minecraft/client/renderer/blockentity/EnchantTableRenderer +CL: net/minecraft/client/renderer/blockentity/HangingSignRenderer net/minecraft/client/renderer/blockentity/HangingSignRenderer +CL: net/minecraft/client/renderer/blockentity/HangingSignRenderer$HangingSignModel net/minecraft/client/renderer/blockentity/HangingSignRenderer$HangingSignModel +CL: net/minecraft/client/renderer/blockentity/LecternRenderer net/minecraft/client/renderer/blockentity/LecternRenderer +CL: net/minecraft/client/renderer/blockentity/PistonHeadRenderer net/minecraft/client/renderer/blockentity/PistonHeadRenderer +CL: net/minecraft/client/renderer/blockentity/ShulkerBoxRenderer net/minecraft/client/renderer/blockentity/ShulkerBoxRenderer +CL: net/minecraft/client/renderer/blockentity/SignRenderer net/minecraft/client/renderer/blockentity/SignRenderer +CL: net/minecraft/client/renderer/blockentity/SignRenderer$SignModel net/minecraft/client/renderer/blockentity/SignRenderer$SignModel +CL: net/minecraft/client/renderer/blockentity/SkullBlockRenderer net/minecraft/client/renderer/blockentity/SkullBlockRenderer +CL: net/minecraft/client/renderer/blockentity/SpawnerRenderer net/minecraft/client/renderer/blockentity/SpawnerRenderer +CL: net/minecraft/client/renderer/blockentity/StructureBlockRenderer net/minecraft/client/renderer/blockentity/StructureBlockRenderer +CL: net/minecraft/client/renderer/blockentity/StructureBlockRenderer$1 net/minecraft/client/renderer/blockentity/StructureBlockRenderer$1 +CL: net/minecraft/client/renderer/blockentity/TheEndGatewayRenderer net/minecraft/client/renderer/blockentity/TheEndGatewayRenderer +CL: net/minecraft/client/renderer/blockentity/TheEndPortalRenderer net/minecraft/client/renderer/blockentity/TheEndPortalRenderer +CL: net/minecraft/client/renderer/blockentity/package-info net/minecraft/client/renderer/blockentity/package-info +CL: net/minecraft/client/renderer/chunk/ChunkRenderDispatcher net/minecraft/client/renderer/chunk/ChunkRenderDispatcher +CL: net/minecraft/client/renderer/chunk/ChunkRenderDispatcher$ChunkTaskResult net/minecraft/client/renderer/chunk/ChunkRenderDispatcher$ChunkTaskResult +CL: net/minecraft/client/renderer/chunk/ChunkRenderDispatcher$CompiledChunk net/minecraft/client/renderer/chunk/ChunkRenderDispatcher$CompiledChunk +CL: net/minecraft/client/renderer/chunk/ChunkRenderDispatcher$CompiledChunk$1 net/minecraft/client/renderer/chunk/ChunkRenderDispatcher$CompiledChunk$1 +CL: net/minecraft/client/renderer/chunk/ChunkRenderDispatcher$RenderChunk net/minecraft/client/renderer/chunk/ChunkRenderDispatcher$RenderChunk +CL: net/minecraft/client/renderer/chunk/ChunkRenderDispatcher$RenderChunk$ChunkCompileTask net/minecraft/client/renderer/chunk/ChunkRenderDispatcher$RenderChunk$ChunkCompileTask +CL: net/minecraft/client/renderer/chunk/ChunkRenderDispatcher$RenderChunk$RebuildTask net/minecraft/client/renderer/chunk/ChunkRenderDispatcher$RenderChunk$RebuildTask +CL: net/minecraft/client/renderer/chunk/ChunkRenderDispatcher$RenderChunk$RebuildTask$CompileResults net/minecraft/client/renderer/chunk/ChunkRenderDispatcher$RenderChunk$RebuildTask$CompileResults +CL: net/minecraft/client/renderer/chunk/ChunkRenderDispatcher$RenderChunk$ResortTransparencyTask net/minecraft/client/renderer/chunk/ChunkRenderDispatcher$RenderChunk$ResortTransparencyTask +CL: net/minecraft/client/renderer/chunk/RenderChunk net/minecraft/client/renderer/chunk/RenderChunk +CL: net/minecraft/client/renderer/chunk/RenderChunkRegion net/minecraft/client/renderer/chunk/RenderChunkRegion +CL: net/minecraft/client/renderer/chunk/RenderRegionCache net/minecraft/client/renderer/chunk/RenderRegionCache +CL: net/minecraft/client/renderer/chunk/RenderRegionCache$ChunkInfo net/minecraft/client/renderer/chunk/RenderRegionCache$ChunkInfo +CL: net/minecraft/client/renderer/chunk/VisGraph net/minecraft/client/renderer/chunk/VisGraph +CL: net/minecraft/client/renderer/chunk/VisGraph$1 net/minecraft/client/renderer/chunk/VisGraph$1 +CL: net/minecraft/client/renderer/chunk/VisibilitySet net/minecraft/client/renderer/chunk/VisibilitySet +CL: net/minecraft/client/renderer/chunk/package-info net/minecraft/client/renderer/chunk/package-info +CL: net/minecraft/client/renderer/culling/Frustum net/minecraft/client/renderer/culling/Frustum +CL: net/minecraft/client/renderer/culling/package-info net/minecraft/client/renderer/culling/package-info +CL: net/minecraft/client/renderer/debug/BeeDebugRenderer net/minecraft/client/renderer/debug/BeeDebugRenderer +CL: net/minecraft/client/renderer/debug/BeeDebugRenderer$BeeInfo net/minecraft/client/renderer/debug/BeeDebugRenderer$BeeInfo +CL: net/minecraft/client/renderer/debug/BeeDebugRenderer$HiveInfo net/minecraft/client/renderer/debug/BeeDebugRenderer$HiveInfo +CL: net/minecraft/client/renderer/debug/BrainDebugRenderer net/minecraft/client/renderer/debug/BrainDebugRenderer +CL: net/minecraft/client/renderer/debug/BrainDebugRenderer$BrainDump net/minecraft/client/renderer/debug/BrainDebugRenderer$BrainDump +CL: net/minecraft/client/renderer/debug/BrainDebugRenderer$PoiInfo net/minecraft/client/renderer/debug/BrainDebugRenderer$PoiInfo +CL: net/minecraft/client/renderer/debug/ChunkBorderRenderer net/minecraft/client/renderer/debug/ChunkBorderRenderer +CL: net/minecraft/client/renderer/debug/ChunkDebugRenderer net/minecraft/client/renderer/debug/ChunkDebugRenderer +CL: net/minecraft/client/renderer/debug/ChunkDebugRenderer$ChunkData net/minecraft/client/renderer/debug/ChunkDebugRenderer$ChunkData +CL: net/minecraft/client/renderer/debug/CollisionBoxRenderer net/minecraft/client/renderer/debug/CollisionBoxRenderer +CL: net/minecraft/client/renderer/debug/DebugRenderer net/minecraft/client/renderer/debug/DebugRenderer +CL: net/minecraft/client/renderer/debug/DebugRenderer$SimpleDebugRenderer net/minecraft/client/renderer/debug/DebugRenderer$SimpleDebugRenderer +CL: net/minecraft/client/renderer/debug/GameEventListenerRenderer net/minecraft/client/renderer/debug/GameEventListenerRenderer +CL: net/minecraft/client/renderer/debug/GameEventListenerRenderer$TrackedGameEvent net/minecraft/client/renderer/debug/GameEventListenerRenderer$TrackedGameEvent +CL: net/minecraft/client/renderer/debug/GameEventListenerRenderer$TrackedListener net/minecraft/client/renderer/debug/GameEventListenerRenderer$TrackedListener +CL: net/minecraft/client/renderer/debug/GameTestDebugRenderer net/minecraft/client/renderer/debug/GameTestDebugRenderer +CL: net/minecraft/client/renderer/debug/GameTestDebugRenderer$Marker net/minecraft/client/renderer/debug/GameTestDebugRenderer$Marker +CL: net/minecraft/client/renderer/debug/GoalSelectorDebugRenderer net/minecraft/client/renderer/debug/GoalSelectorDebugRenderer +CL: net/minecraft/client/renderer/debug/GoalSelectorDebugRenderer$DebugGoal net/minecraft/client/renderer/debug/GoalSelectorDebugRenderer$DebugGoal +CL: net/minecraft/client/renderer/debug/HeightMapRenderer net/minecraft/client/renderer/debug/HeightMapRenderer +CL: net/minecraft/client/renderer/debug/HeightMapRenderer$1 net/minecraft/client/renderer/debug/HeightMapRenderer$1 +CL: net/minecraft/client/renderer/debug/LightDebugRenderer net/minecraft/client/renderer/debug/LightDebugRenderer +CL: net/minecraft/client/renderer/debug/LightSectionDebugRenderer net/minecraft/client/renderer/debug/LightSectionDebugRenderer +CL: net/minecraft/client/renderer/debug/LightSectionDebugRenderer$1 net/minecraft/client/renderer/debug/LightSectionDebugRenderer$1 +CL: net/minecraft/client/renderer/debug/LightSectionDebugRenderer$SectionData net/minecraft/client/renderer/debug/LightSectionDebugRenderer$SectionData +CL: net/minecraft/client/renderer/debug/NeighborsUpdateRenderer net/minecraft/client/renderer/debug/NeighborsUpdateRenderer +CL: net/minecraft/client/renderer/debug/PathfindingRenderer net/minecraft/client/renderer/debug/PathfindingRenderer +CL: net/minecraft/client/renderer/debug/RaidDebugRenderer net/minecraft/client/renderer/debug/RaidDebugRenderer +CL: net/minecraft/client/renderer/debug/SolidFaceRenderer net/minecraft/client/renderer/debug/SolidFaceRenderer +CL: net/minecraft/client/renderer/debug/StructureRenderer net/minecraft/client/renderer/debug/StructureRenderer +CL: net/minecraft/client/renderer/debug/SupportBlockRenderer net/minecraft/client/renderer/debug/SupportBlockRenderer +CL: net/minecraft/client/renderer/debug/VillageSectionsDebugRenderer net/minecraft/client/renderer/debug/VillageSectionsDebugRenderer +CL: net/minecraft/client/renderer/debug/WaterDebugRenderer net/minecraft/client/renderer/debug/WaterDebugRenderer +CL: net/minecraft/client/renderer/debug/WorldGenAttemptRenderer net/minecraft/client/renderer/debug/WorldGenAttemptRenderer +CL: net/minecraft/client/renderer/debug/package-info net/minecraft/client/renderer/debug/package-info +CL: net/minecraft/client/renderer/entity/AbstractHorseRenderer net/minecraft/client/renderer/entity/AbstractHorseRenderer +CL: net/minecraft/client/renderer/entity/AbstractZombieRenderer net/minecraft/client/renderer/entity/AbstractZombieRenderer +CL: net/minecraft/client/renderer/entity/AllayRenderer net/minecraft/client/renderer/entity/AllayRenderer +CL: net/minecraft/client/renderer/entity/ArmorStandRenderer net/minecraft/client/renderer/entity/ArmorStandRenderer +CL: net/minecraft/client/renderer/entity/ArrowRenderer net/minecraft/client/renderer/entity/ArrowRenderer +CL: net/minecraft/client/renderer/entity/AxolotlRenderer net/minecraft/client/renderer/entity/AxolotlRenderer +CL: net/minecraft/client/renderer/entity/BatRenderer net/minecraft/client/renderer/entity/BatRenderer +CL: net/minecraft/client/renderer/entity/BeeRenderer net/minecraft/client/renderer/entity/BeeRenderer +CL: net/minecraft/client/renderer/entity/BlazeRenderer net/minecraft/client/renderer/entity/BlazeRenderer +CL: net/minecraft/client/renderer/entity/BoatRenderer net/minecraft/client/renderer/entity/BoatRenderer +CL: net/minecraft/client/renderer/entity/CamelRenderer net/minecraft/client/renderer/entity/CamelRenderer +CL: net/minecraft/client/renderer/entity/CatRenderer net/minecraft/client/renderer/entity/CatRenderer +CL: net/minecraft/client/renderer/entity/CaveSpiderRenderer net/minecraft/client/renderer/entity/CaveSpiderRenderer +CL: net/minecraft/client/renderer/entity/ChestedHorseRenderer net/minecraft/client/renderer/entity/ChestedHorseRenderer +CL: net/minecraft/client/renderer/entity/ChickenRenderer net/minecraft/client/renderer/entity/ChickenRenderer +CL: net/minecraft/client/renderer/entity/CodRenderer net/minecraft/client/renderer/entity/CodRenderer +CL: net/minecraft/client/renderer/entity/CowRenderer net/minecraft/client/renderer/entity/CowRenderer +CL: net/minecraft/client/renderer/entity/CreeperRenderer net/minecraft/client/renderer/entity/CreeperRenderer +CL: net/minecraft/client/renderer/entity/DisplayRenderer net/minecraft/client/renderer/entity/DisplayRenderer +CL: net/minecraft/client/renderer/entity/DisplayRenderer$1 net/minecraft/client/renderer/entity/DisplayRenderer$1 +CL: net/minecraft/client/renderer/entity/DisplayRenderer$BlockDisplayRenderer net/minecraft/client/renderer/entity/DisplayRenderer$BlockDisplayRenderer +CL: net/minecraft/client/renderer/entity/DisplayRenderer$ItemDisplayRenderer net/minecraft/client/renderer/entity/DisplayRenderer$ItemDisplayRenderer +CL: net/minecraft/client/renderer/entity/DisplayRenderer$TextDisplayRenderer net/minecraft/client/renderer/entity/DisplayRenderer$TextDisplayRenderer +CL: net/minecraft/client/renderer/entity/DolphinRenderer net/minecraft/client/renderer/entity/DolphinRenderer +CL: net/minecraft/client/renderer/entity/DragonFireballRenderer net/minecraft/client/renderer/entity/DragonFireballRenderer +CL: net/minecraft/client/renderer/entity/DrownedRenderer net/minecraft/client/renderer/entity/DrownedRenderer +CL: net/minecraft/client/renderer/entity/ElderGuardianRenderer net/minecraft/client/renderer/entity/ElderGuardianRenderer +CL: net/minecraft/client/renderer/entity/EndCrystalRenderer net/minecraft/client/renderer/entity/EndCrystalRenderer +CL: net/minecraft/client/renderer/entity/EnderDragonRenderer net/minecraft/client/renderer/entity/EnderDragonRenderer +CL: net/minecraft/client/renderer/entity/EnderDragonRenderer$DragonModel net/minecraft/client/renderer/entity/EnderDragonRenderer$DragonModel +CL: net/minecraft/client/renderer/entity/EndermanRenderer net/minecraft/client/renderer/entity/EndermanRenderer +CL: net/minecraft/client/renderer/entity/EndermiteRenderer net/minecraft/client/renderer/entity/EndermiteRenderer +CL: net/minecraft/client/renderer/entity/EntityRenderDispatcher net/minecraft/client/renderer/entity/EntityRenderDispatcher +CL: net/minecraft/client/renderer/entity/EntityRenderer net/minecraft/client/renderer/entity/EntityRenderer +CL: net/minecraft/client/renderer/entity/EntityRendererProvider net/minecraft/client/renderer/entity/EntityRendererProvider +CL: net/minecraft/client/renderer/entity/EntityRendererProvider$Context net/minecraft/client/renderer/entity/EntityRendererProvider$Context +CL: net/minecraft/client/renderer/entity/EntityRenderers net/minecraft/client/renderer/entity/EntityRenderers +CL: net/minecraft/client/renderer/entity/EvokerFangsRenderer net/minecraft/client/renderer/entity/EvokerFangsRenderer +CL: net/minecraft/client/renderer/entity/EvokerRenderer net/minecraft/client/renderer/entity/EvokerRenderer +CL: net/minecraft/client/renderer/entity/EvokerRenderer$1 net/minecraft/client/renderer/entity/EvokerRenderer$1 +CL: net/minecraft/client/renderer/entity/ExperienceOrbRenderer net/minecraft/client/renderer/entity/ExperienceOrbRenderer +CL: net/minecraft/client/renderer/entity/FallingBlockRenderer net/minecraft/client/renderer/entity/FallingBlockRenderer +CL: net/minecraft/client/renderer/entity/FireworkEntityRenderer net/minecraft/client/renderer/entity/FireworkEntityRenderer +CL: net/minecraft/client/renderer/entity/FishingHookRenderer net/minecraft/client/renderer/entity/FishingHookRenderer +CL: net/minecraft/client/renderer/entity/FoxRenderer net/minecraft/client/renderer/entity/FoxRenderer +CL: net/minecraft/client/renderer/entity/FrogRenderer net/minecraft/client/renderer/entity/FrogRenderer +CL: net/minecraft/client/renderer/entity/GhastRenderer net/minecraft/client/renderer/entity/GhastRenderer +CL: net/minecraft/client/renderer/entity/GiantMobRenderer net/minecraft/client/renderer/entity/GiantMobRenderer +CL: net/minecraft/client/renderer/entity/GlowSquidRenderer net/minecraft/client/renderer/entity/GlowSquidRenderer +CL: net/minecraft/client/renderer/entity/GoatRenderer net/minecraft/client/renderer/entity/GoatRenderer +CL: net/minecraft/client/renderer/entity/GuardianRenderer net/minecraft/client/renderer/entity/GuardianRenderer +CL: net/minecraft/client/renderer/entity/HoglinRenderer net/minecraft/client/renderer/entity/HoglinRenderer +CL: net/minecraft/client/renderer/entity/HorseRenderer net/minecraft/client/renderer/entity/HorseRenderer +CL: net/minecraft/client/renderer/entity/HumanoidMobRenderer net/minecraft/client/renderer/entity/HumanoidMobRenderer +CL: net/minecraft/client/renderer/entity/HuskRenderer net/minecraft/client/renderer/entity/HuskRenderer +CL: net/minecraft/client/renderer/entity/IllagerRenderer net/minecraft/client/renderer/entity/IllagerRenderer +CL: net/minecraft/client/renderer/entity/IllusionerRenderer net/minecraft/client/renderer/entity/IllusionerRenderer +CL: net/minecraft/client/renderer/entity/IllusionerRenderer$1 net/minecraft/client/renderer/entity/IllusionerRenderer$1 +CL: net/minecraft/client/renderer/entity/IronGolemRenderer net/minecraft/client/renderer/entity/IronGolemRenderer +CL: net/minecraft/client/renderer/entity/ItemEntityRenderer net/minecraft/client/renderer/entity/ItemEntityRenderer +CL: net/minecraft/client/renderer/entity/ItemFrameRenderer net/minecraft/client/renderer/entity/ItemFrameRenderer +CL: net/minecraft/client/renderer/entity/ItemRenderer net/minecraft/client/renderer/entity/ItemRenderer +CL: net/minecraft/client/renderer/entity/LeashKnotRenderer net/minecraft/client/renderer/entity/LeashKnotRenderer +CL: net/minecraft/client/renderer/entity/LightningBoltRenderer net/minecraft/client/renderer/entity/LightningBoltRenderer +CL: net/minecraft/client/renderer/entity/LivingEntityRenderer net/minecraft/client/renderer/entity/LivingEntityRenderer +CL: net/minecraft/client/renderer/entity/LivingEntityRenderer$1 net/minecraft/client/renderer/entity/LivingEntityRenderer$1 +CL: net/minecraft/client/renderer/entity/LlamaRenderer net/minecraft/client/renderer/entity/LlamaRenderer +CL: net/minecraft/client/renderer/entity/LlamaRenderer$1 net/minecraft/client/renderer/entity/LlamaRenderer$1 +CL: net/minecraft/client/renderer/entity/LlamaSpitRenderer net/minecraft/client/renderer/entity/LlamaSpitRenderer +CL: net/minecraft/client/renderer/entity/MagmaCubeRenderer net/minecraft/client/renderer/entity/MagmaCubeRenderer +CL: net/minecraft/client/renderer/entity/MinecartRenderer net/minecraft/client/renderer/entity/MinecartRenderer +CL: net/minecraft/client/renderer/entity/MobRenderer net/minecraft/client/renderer/entity/MobRenderer +CL: net/minecraft/client/renderer/entity/MushroomCowRenderer net/minecraft/client/renderer/entity/MushroomCowRenderer +CL: net/minecraft/client/renderer/entity/NoopRenderer net/minecraft/client/renderer/entity/NoopRenderer +CL: net/minecraft/client/renderer/entity/OcelotRenderer net/minecraft/client/renderer/entity/OcelotRenderer +CL: net/minecraft/client/renderer/entity/PaintingRenderer net/minecraft/client/renderer/entity/PaintingRenderer +CL: net/minecraft/client/renderer/entity/PandaRenderer net/minecraft/client/renderer/entity/PandaRenderer +CL: net/minecraft/client/renderer/entity/ParrotRenderer net/minecraft/client/renderer/entity/ParrotRenderer +CL: net/minecraft/client/renderer/entity/ParrotRenderer$1 net/minecraft/client/renderer/entity/ParrotRenderer$1 +CL: net/minecraft/client/renderer/entity/PhantomRenderer net/minecraft/client/renderer/entity/PhantomRenderer +CL: net/minecraft/client/renderer/entity/PigRenderer net/minecraft/client/renderer/entity/PigRenderer +CL: net/minecraft/client/renderer/entity/PiglinRenderer net/minecraft/client/renderer/entity/PiglinRenderer +CL: net/minecraft/client/renderer/entity/PillagerRenderer net/minecraft/client/renderer/entity/PillagerRenderer +CL: net/minecraft/client/renderer/entity/PolarBearRenderer net/minecraft/client/renderer/entity/PolarBearRenderer +CL: net/minecraft/client/renderer/entity/PufferfishRenderer net/minecraft/client/renderer/entity/PufferfishRenderer +CL: net/minecraft/client/renderer/entity/RabbitRenderer net/minecraft/client/renderer/entity/RabbitRenderer +CL: net/minecraft/client/renderer/entity/RabbitRenderer$1 net/minecraft/client/renderer/entity/RabbitRenderer$1 +CL: net/minecraft/client/renderer/entity/RavagerRenderer net/minecraft/client/renderer/entity/RavagerRenderer +CL: net/minecraft/client/renderer/entity/RenderLayerParent net/minecraft/client/renderer/entity/RenderLayerParent +CL: net/minecraft/client/renderer/entity/SalmonRenderer net/minecraft/client/renderer/entity/SalmonRenderer +CL: net/minecraft/client/renderer/entity/SheepRenderer net/minecraft/client/renderer/entity/SheepRenderer +CL: net/minecraft/client/renderer/entity/ShulkerBulletRenderer net/minecraft/client/renderer/entity/ShulkerBulletRenderer +CL: net/minecraft/client/renderer/entity/ShulkerRenderer net/minecraft/client/renderer/entity/ShulkerRenderer +CL: net/minecraft/client/renderer/entity/SilverfishRenderer net/minecraft/client/renderer/entity/SilverfishRenderer +CL: net/minecraft/client/renderer/entity/SkeletonRenderer net/minecraft/client/renderer/entity/SkeletonRenderer +CL: net/minecraft/client/renderer/entity/SlimeRenderer net/minecraft/client/renderer/entity/SlimeRenderer +CL: net/minecraft/client/renderer/entity/SnifferRenderer net/minecraft/client/renderer/entity/SnifferRenderer +CL: net/minecraft/client/renderer/entity/SnowGolemRenderer net/minecraft/client/renderer/entity/SnowGolemRenderer +CL: net/minecraft/client/renderer/entity/SpectralArrowRenderer net/minecraft/client/renderer/entity/SpectralArrowRenderer +CL: net/minecraft/client/renderer/entity/SpiderRenderer net/minecraft/client/renderer/entity/SpiderRenderer +CL: net/minecraft/client/renderer/entity/SquidRenderer net/minecraft/client/renderer/entity/SquidRenderer +CL: net/minecraft/client/renderer/entity/StrayRenderer net/minecraft/client/renderer/entity/StrayRenderer +CL: net/minecraft/client/renderer/entity/StriderRenderer net/minecraft/client/renderer/entity/StriderRenderer +CL: net/minecraft/client/renderer/entity/TadpoleRenderer net/minecraft/client/renderer/entity/TadpoleRenderer +CL: net/minecraft/client/renderer/entity/ThrownItemRenderer net/minecraft/client/renderer/entity/ThrownItemRenderer +CL: net/minecraft/client/renderer/entity/ThrownTridentRenderer net/minecraft/client/renderer/entity/ThrownTridentRenderer +CL: net/minecraft/client/renderer/entity/TippableArrowRenderer net/minecraft/client/renderer/entity/TippableArrowRenderer +CL: net/minecraft/client/renderer/entity/TntMinecartRenderer net/minecraft/client/renderer/entity/TntMinecartRenderer +CL: net/minecraft/client/renderer/entity/TntRenderer net/minecraft/client/renderer/entity/TntRenderer +CL: net/minecraft/client/renderer/entity/TropicalFishRenderer net/minecraft/client/renderer/entity/TropicalFishRenderer +CL: net/minecraft/client/renderer/entity/TropicalFishRenderer$1 net/minecraft/client/renderer/entity/TropicalFishRenderer$1 +CL: net/minecraft/client/renderer/entity/TurtleRenderer net/minecraft/client/renderer/entity/TurtleRenderer +CL: net/minecraft/client/renderer/entity/UndeadHorseRenderer net/minecraft/client/renderer/entity/UndeadHorseRenderer +CL: net/minecraft/client/renderer/entity/VexRenderer net/minecraft/client/renderer/entity/VexRenderer +CL: net/minecraft/client/renderer/entity/VillagerRenderer net/minecraft/client/renderer/entity/VillagerRenderer +CL: net/minecraft/client/renderer/entity/VindicatorRenderer net/minecraft/client/renderer/entity/VindicatorRenderer +CL: net/minecraft/client/renderer/entity/VindicatorRenderer$1 net/minecraft/client/renderer/entity/VindicatorRenderer$1 +CL: net/minecraft/client/renderer/entity/WanderingTraderRenderer net/minecraft/client/renderer/entity/WanderingTraderRenderer +CL: net/minecraft/client/renderer/entity/WardenRenderer net/minecraft/client/renderer/entity/WardenRenderer +CL: net/minecraft/client/renderer/entity/WitchRenderer net/minecraft/client/renderer/entity/WitchRenderer +CL: net/minecraft/client/renderer/entity/WitherBossRenderer net/minecraft/client/renderer/entity/WitherBossRenderer +CL: net/minecraft/client/renderer/entity/WitherSkeletonRenderer net/minecraft/client/renderer/entity/WitherSkeletonRenderer +CL: net/minecraft/client/renderer/entity/WitherSkullRenderer net/minecraft/client/renderer/entity/WitherSkullRenderer +CL: net/minecraft/client/renderer/entity/WolfRenderer net/minecraft/client/renderer/entity/WolfRenderer +CL: net/minecraft/client/renderer/entity/ZoglinRenderer net/minecraft/client/renderer/entity/ZoglinRenderer +CL: net/minecraft/client/renderer/entity/ZombieRenderer net/minecraft/client/renderer/entity/ZombieRenderer +CL: net/minecraft/client/renderer/entity/ZombieVillagerRenderer net/minecraft/client/renderer/entity/ZombieVillagerRenderer +CL: net/minecraft/client/renderer/entity/layers/ArrowLayer net/minecraft/client/renderer/entity/layers/ArrowLayer +CL: net/minecraft/client/renderer/entity/layers/BeeStingerLayer net/minecraft/client/renderer/entity/layers/BeeStingerLayer +CL: net/minecraft/client/renderer/entity/layers/CapeLayer net/minecraft/client/renderer/entity/layers/CapeLayer +CL: net/minecraft/client/renderer/entity/layers/CarriedBlockLayer net/minecraft/client/renderer/entity/layers/CarriedBlockLayer +CL: net/minecraft/client/renderer/entity/layers/CatCollarLayer net/minecraft/client/renderer/entity/layers/CatCollarLayer +CL: net/minecraft/client/renderer/entity/layers/CreeperPowerLayer net/minecraft/client/renderer/entity/layers/CreeperPowerLayer +CL: net/minecraft/client/renderer/entity/layers/CrossedArmsItemLayer net/minecraft/client/renderer/entity/layers/CrossedArmsItemLayer +CL: net/minecraft/client/renderer/entity/layers/CustomHeadLayer net/minecraft/client/renderer/entity/layers/CustomHeadLayer +CL: net/minecraft/client/renderer/entity/layers/Deadmau5EarsLayer net/minecraft/client/renderer/entity/layers/Deadmau5EarsLayer +CL: net/minecraft/client/renderer/entity/layers/DolphinCarryingItemLayer net/minecraft/client/renderer/entity/layers/DolphinCarryingItemLayer +CL: net/minecraft/client/renderer/entity/layers/DrownedOuterLayer net/minecraft/client/renderer/entity/layers/DrownedOuterLayer +CL: net/minecraft/client/renderer/entity/layers/ElytraLayer net/minecraft/client/renderer/entity/layers/ElytraLayer +CL: net/minecraft/client/renderer/entity/layers/EnderEyesLayer net/minecraft/client/renderer/entity/layers/EnderEyesLayer +CL: net/minecraft/client/renderer/entity/layers/EnergySwirlLayer net/minecraft/client/renderer/entity/layers/EnergySwirlLayer +CL: net/minecraft/client/renderer/entity/layers/EyesLayer net/minecraft/client/renderer/entity/layers/EyesLayer +CL: net/minecraft/client/renderer/entity/layers/FoxHeldItemLayer net/minecraft/client/renderer/entity/layers/FoxHeldItemLayer +CL: net/minecraft/client/renderer/entity/layers/HorseArmorLayer net/minecraft/client/renderer/entity/layers/HorseArmorLayer +CL: net/minecraft/client/renderer/entity/layers/HorseMarkingLayer net/minecraft/client/renderer/entity/layers/HorseMarkingLayer +CL: net/minecraft/client/renderer/entity/layers/HumanoidArmorLayer net/minecraft/client/renderer/entity/layers/HumanoidArmorLayer +CL: net/minecraft/client/renderer/entity/layers/HumanoidArmorLayer$1 net/minecraft/client/renderer/entity/layers/HumanoidArmorLayer$1 +CL: net/minecraft/client/renderer/entity/layers/IronGolemCrackinessLayer net/minecraft/client/renderer/entity/layers/IronGolemCrackinessLayer +CL: net/minecraft/client/renderer/entity/layers/IronGolemFlowerLayer net/minecraft/client/renderer/entity/layers/IronGolemFlowerLayer +CL: net/minecraft/client/renderer/entity/layers/ItemInHandLayer net/minecraft/client/renderer/entity/layers/ItemInHandLayer +CL: net/minecraft/client/renderer/entity/layers/LlamaDecorLayer net/minecraft/client/renderer/entity/layers/LlamaDecorLayer +CL: net/minecraft/client/renderer/entity/layers/MushroomCowMushroomLayer net/minecraft/client/renderer/entity/layers/MushroomCowMushroomLayer +CL: net/minecraft/client/renderer/entity/layers/PandaHoldsItemLayer net/minecraft/client/renderer/entity/layers/PandaHoldsItemLayer +CL: net/minecraft/client/renderer/entity/layers/ParrotOnShoulderLayer net/minecraft/client/renderer/entity/layers/ParrotOnShoulderLayer +CL: net/minecraft/client/renderer/entity/layers/PhantomEyesLayer net/minecraft/client/renderer/entity/layers/PhantomEyesLayer +CL: net/minecraft/client/renderer/entity/layers/PlayerItemInHandLayer net/minecraft/client/renderer/entity/layers/PlayerItemInHandLayer +CL: net/minecraft/client/renderer/entity/layers/RenderLayer net/minecraft/client/renderer/entity/layers/RenderLayer +CL: net/minecraft/client/renderer/entity/layers/SaddleLayer net/minecraft/client/renderer/entity/layers/SaddleLayer +CL: net/minecraft/client/renderer/entity/layers/SheepFurLayer net/minecraft/client/renderer/entity/layers/SheepFurLayer +CL: net/minecraft/client/renderer/entity/layers/ShulkerHeadLayer net/minecraft/client/renderer/entity/layers/ShulkerHeadLayer +CL: net/minecraft/client/renderer/entity/layers/SlimeOuterLayer net/minecraft/client/renderer/entity/layers/SlimeOuterLayer +CL: net/minecraft/client/renderer/entity/layers/SnowGolemHeadLayer net/minecraft/client/renderer/entity/layers/SnowGolemHeadLayer +CL: net/minecraft/client/renderer/entity/layers/SpiderEyesLayer net/minecraft/client/renderer/entity/layers/SpiderEyesLayer +CL: net/minecraft/client/renderer/entity/layers/SpinAttackEffectLayer net/minecraft/client/renderer/entity/layers/SpinAttackEffectLayer +CL: net/minecraft/client/renderer/entity/layers/StrayClothingLayer net/minecraft/client/renderer/entity/layers/StrayClothingLayer +CL: net/minecraft/client/renderer/entity/layers/StuckInBodyLayer net/minecraft/client/renderer/entity/layers/StuckInBodyLayer +CL: net/minecraft/client/renderer/entity/layers/TropicalFishPatternLayer net/minecraft/client/renderer/entity/layers/TropicalFishPatternLayer +CL: net/minecraft/client/renderer/entity/layers/TropicalFishPatternLayer$1 net/minecraft/client/renderer/entity/layers/TropicalFishPatternLayer$1 +CL: net/minecraft/client/renderer/entity/layers/VillagerProfessionLayer net/minecraft/client/renderer/entity/layers/VillagerProfessionLayer +CL: net/minecraft/client/renderer/entity/layers/WardenEmissiveLayer net/minecraft/client/renderer/entity/layers/WardenEmissiveLayer +CL: net/minecraft/client/renderer/entity/layers/WardenEmissiveLayer$AlphaFunction net/minecraft/client/renderer/entity/layers/WardenEmissiveLayer$AlphaFunction +CL: net/minecraft/client/renderer/entity/layers/WardenEmissiveLayer$DrawSelector net/minecraft/client/renderer/entity/layers/WardenEmissiveLayer$DrawSelector +CL: net/minecraft/client/renderer/entity/layers/WitchItemLayer net/minecraft/client/renderer/entity/layers/WitchItemLayer +CL: net/minecraft/client/renderer/entity/layers/WitherArmorLayer net/minecraft/client/renderer/entity/layers/WitherArmorLayer +CL: net/minecraft/client/renderer/entity/layers/WolfCollarLayer net/minecraft/client/renderer/entity/layers/WolfCollarLayer +CL: net/minecraft/client/renderer/entity/layers/package-info net/minecraft/client/renderer/entity/layers/package-info +CL: net/minecraft/client/renderer/entity/package-info net/minecraft/client/renderer/entity/package-info +CL: net/minecraft/client/renderer/entity/player/PlayerRenderer net/minecraft/client/renderer/entity/player/PlayerRenderer +CL: net/minecraft/client/renderer/entity/player/package-info net/minecraft/client/renderer/entity/player/package-info +CL: net/minecraft/client/renderer/item/ClampedItemPropertyFunction net/minecraft/client/renderer/item/ClampedItemPropertyFunction +CL: net/minecraft/client/renderer/item/CompassItemPropertyFunction net/minecraft/client/renderer/item/CompassItemPropertyFunction +CL: net/minecraft/client/renderer/item/CompassItemPropertyFunction$CompassTarget net/minecraft/client/renderer/item/CompassItemPropertyFunction$CompassTarget +CL: net/minecraft/client/renderer/item/CompassItemPropertyFunction$CompassWobble net/minecraft/client/renderer/item/CompassItemPropertyFunction$CompassWobble +CL: net/minecraft/client/renderer/item/ItemProperties net/minecraft/client/renderer/item/ItemProperties +CL: net/minecraft/client/renderer/item/ItemProperties$1 net/minecraft/client/renderer/item/ItemProperties$1 +CL: net/minecraft/client/renderer/item/ItemPropertyFunction net/minecraft/client/renderer/item/ItemPropertyFunction +CL: net/minecraft/client/renderer/item/package-info net/minecraft/client/renderer/item/package-info +CL: net/minecraft/client/renderer/package-info net/minecraft/client/renderer/package-info +CL: net/minecraft/client/renderer/texture/AbstractTexture net/minecraft/client/renderer/texture/AbstractTexture +CL: net/minecraft/client/renderer/texture/Dumpable net/minecraft/client/renderer/texture/Dumpable +CL: net/minecraft/client/renderer/texture/DynamicTexture net/minecraft/client/renderer/texture/DynamicTexture +CL: net/minecraft/client/renderer/texture/HttpTexture net/minecraft/client/renderer/texture/HttpTexture +CL: net/minecraft/client/renderer/texture/MipmapGenerator net/minecraft/client/renderer/texture/MipmapGenerator +CL: net/minecraft/client/renderer/texture/MissingTextureAtlasSprite net/minecraft/client/renderer/texture/MissingTextureAtlasSprite +CL: net/minecraft/client/renderer/texture/OverlayTexture net/minecraft/client/renderer/texture/OverlayTexture +CL: net/minecraft/client/renderer/texture/PreloadedTexture net/minecraft/client/renderer/texture/PreloadedTexture +CL: net/minecraft/client/renderer/texture/SimpleTexture net/minecraft/client/renderer/texture/SimpleTexture +CL: net/minecraft/client/renderer/texture/SimpleTexture$TextureImage net/minecraft/client/renderer/texture/SimpleTexture$TextureImage +CL: net/minecraft/client/renderer/texture/SpriteContents net/minecraft/client/renderer/texture/SpriteContents +CL: net/minecraft/client/renderer/texture/SpriteContents$AnimatedTexture net/minecraft/client/renderer/texture/SpriteContents$AnimatedTexture +CL: net/minecraft/client/renderer/texture/SpriteContents$FrameInfo net/minecraft/client/renderer/texture/SpriteContents$FrameInfo +CL: net/minecraft/client/renderer/texture/SpriteContents$InterpolationData net/minecraft/client/renderer/texture/SpriteContents$InterpolationData +CL: net/minecraft/client/renderer/texture/SpriteContents$Ticker net/minecraft/client/renderer/texture/SpriteContents$Ticker +CL: net/minecraft/client/renderer/texture/SpriteLoader net/minecraft/client/renderer/texture/SpriteLoader +CL: net/minecraft/client/renderer/texture/SpriteLoader$Preparations net/minecraft/client/renderer/texture/SpriteLoader$Preparations +CL: net/minecraft/client/renderer/texture/SpriteTicker net/minecraft/client/renderer/texture/SpriteTicker +CL: net/minecraft/client/renderer/texture/Stitcher net/minecraft/client/renderer/texture/Stitcher +CL: net/minecraft/client/renderer/texture/Stitcher$Entry net/minecraft/client/renderer/texture/Stitcher$Entry +CL: net/minecraft/client/renderer/texture/Stitcher$Holder net/minecraft/client/renderer/texture/Stitcher$Holder +CL: net/minecraft/client/renderer/texture/Stitcher$Region net/minecraft/client/renderer/texture/Stitcher$Region +CL: net/minecraft/client/renderer/texture/Stitcher$SpriteLoader net/minecraft/client/renderer/texture/Stitcher$SpriteLoader +CL: net/minecraft/client/renderer/texture/StitcherException net/minecraft/client/renderer/texture/StitcherException +CL: net/minecraft/client/renderer/texture/TextureAtlas net/minecraft/client/renderer/texture/TextureAtlas +CL: net/minecraft/client/renderer/texture/TextureAtlasSprite net/minecraft/client/renderer/texture/TextureAtlasSprite +CL: net/minecraft/client/renderer/texture/TextureAtlasSprite$1 net/minecraft/client/renderer/texture/TextureAtlasSprite$1 +CL: net/minecraft/client/renderer/texture/TextureAtlasSprite$Ticker net/minecraft/client/renderer/texture/TextureAtlasSprite$Ticker +CL: net/minecraft/client/renderer/texture/TextureManager net/minecraft/client/renderer/texture/TextureManager +CL: net/minecraft/client/renderer/texture/Tickable net/minecraft/client/renderer/texture/Tickable +CL: net/minecraft/client/renderer/texture/atlas/SpriteResourceLoader net/minecraft/client/renderer/texture/atlas/SpriteResourceLoader +CL: net/minecraft/client/renderer/texture/atlas/SpriteResourceLoader$1 net/minecraft/client/renderer/texture/atlas/SpriteResourceLoader$1 +CL: net/minecraft/client/renderer/texture/atlas/SpriteSource net/minecraft/client/renderer/texture/atlas/SpriteSource +CL: net/minecraft/client/renderer/texture/atlas/SpriteSource$Output net/minecraft/client/renderer/texture/atlas/SpriteSource$Output +CL: net/minecraft/client/renderer/texture/atlas/SpriteSource$SpriteSupplier net/minecraft/client/renderer/texture/atlas/SpriteSource$SpriteSupplier +CL: net/minecraft/client/renderer/texture/atlas/SpriteSourceType net/minecraft/client/renderer/texture/atlas/SpriteSourceType +CL: net/minecraft/client/renderer/texture/atlas/SpriteSources net/minecraft/client/renderer/texture/atlas/SpriteSources +CL: net/minecraft/client/renderer/texture/atlas/package-info net/minecraft/client/renderer/texture/atlas/package-info +CL: net/minecraft/client/renderer/texture/atlas/sources/DirectoryLister net/minecraft/client/renderer/texture/atlas/sources/DirectoryLister +CL: net/minecraft/client/renderer/texture/atlas/sources/LazyLoadedImage net/minecraft/client/renderer/texture/atlas/sources/LazyLoadedImage +CL: net/minecraft/client/renderer/texture/atlas/sources/PalettedPermutations net/minecraft/client/renderer/texture/atlas/sources/PalettedPermutations +CL: net/minecraft/client/renderer/texture/atlas/sources/PalettedPermutations$PalettedSpriteSupplier net/minecraft/client/renderer/texture/atlas/sources/PalettedPermutations$PalettedSpriteSupplier +CL: net/minecraft/client/renderer/texture/atlas/sources/SingleFile net/minecraft/client/renderer/texture/atlas/sources/SingleFile +CL: net/minecraft/client/renderer/texture/atlas/sources/SourceFilter net/minecraft/client/renderer/texture/atlas/sources/SourceFilter +CL: net/minecraft/client/renderer/texture/atlas/sources/Unstitcher net/minecraft/client/renderer/texture/atlas/sources/Unstitcher +CL: net/minecraft/client/renderer/texture/atlas/sources/Unstitcher$Region net/minecraft/client/renderer/texture/atlas/sources/Unstitcher$Region +CL: net/minecraft/client/renderer/texture/atlas/sources/Unstitcher$RegionInstance net/minecraft/client/renderer/texture/atlas/sources/Unstitcher$RegionInstance +CL: net/minecraft/client/renderer/texture/atlas/sources/package-info net/minecraft/client/renderer/texture/atlas/sources/package-info +CL: net/minecraft/client/renderer/texture/package-info net/minecraft/client/renderer/texture/package-info +CL: net/minecraft/client/resources/ClientPackSource net/minecraft/client/resources/ClientPackSource +CL: net/minecraft/client/resources/DefaultPlayerSkin net/minecraft/client/resources/DefaultPlayerSkin +CL: net/minecraft/client/resources/DefaultPlayerSkin$ModelType net/minecraft/client/resources/DefaultPlayerSkin$ModelType +CL: net/minecraft/client/resources/DefaultPlayerSkin$SkinType net/minecraft/client/resources/DefaultPlayerSkin$SkinType +CL: net/minecraft/client/resources/DownloadedPackSource net/minecraft/client/resources/DownloadedPackSource +CL: net/minecraft/client/resources/FoliageColorReloadListener net/minecraft/client/resources/FoliageColorReloadListener +CL: net/minecraft/client/resources/GrassColorReloadListener net/minecraft/client/resources/GrassColorReloadListener +CL: net/minecraft/client/resources/IndexedAssetSource net/minecraft/client/resources/IndexedAssetSource +CL: net/minecraft/client/resources/LegacyStuffWrapper net/minecraft/client/resources/LegacyStuffWrapper +CL: net/minecraft/client/resources/MobEffectTextureManager net/minecraft/client/resources/MobEffectTextureManager +CL: net/minecraft/client/resources/PaintingTextureManager net/minecraft/client/resources/PaintingTextureManager +CL: net/minecraft/client/resources/SkinManager net/minecraft/client/resources/SkinManager +CL: net/minecraft/client/resources/SkinManager$1 net/minecraft/client/resources/SkinManager$1 +CL: net/minecraft/client/resources/SkinManager$2 net/minecraft/client/resources/SkinManager$2 +CL: net/minecraft/client/resources/SkinManager$SkinTextureCallback net/minecraft/client/resources/SkinManager$SkinTextureCallback +CL: net/minecraft/client/resources/SplashManager net/minecraft/client/resources/SplashManager +CL: net/minecraft/client/resources/TextureAtlasHolder net/minecraft/client/resources/TextureAtlasHolder +CL: net/minecraft/client/resources/language/ClientLanguage net/minecraft/client/resources/language/ClientLanguage +CL: net/minecraft/client/resources/language/FormattedBidiReorder net/minecraft/client/resources/language/FormattedBidiReorder +CL: net/minecraft/client/resources/language/I18n net/minecraft/client/resources/language/I18n +CL: net/minecraft/client/resources/language/LanguageInfo net/minecraft/client/resources/language/LanguageInfo +CL: net/minecraft/client/resources/language/LanguageManager net/minecraft/client/resources/language/LanguageManager +CL: net/minecraft/client/resources/language/package-info net/minecraft/client/resources/language/package-info +CL: net/minecraft/client/resources/metadata/animation/AnimationFrame net/minecraft/client/resources/metadata/animation/AnimationFrame +CL: net/minecraft/client/resources/metadata/animation/AnimationMetadataSection net/minecraft/client/resources/metadata/animation/AnimationMetadataSection +CL: net/minecraft/client/resources/metadata/animation/AnimationMetadataSection$1 net/minecraft/client/resources/metadata/animation/AnimationMetadataSection$1 +CL: net/minecraft/client/resources/metadata/animation/AnimationMetadataSection$FrameOutput net/minecraft/client/resources/metadata/animation/AnimationMetadataSection$FrameOutput +CL: net/minecraft/client/resources/metadata/animation/AnimationMetadataSectionSerializer net/minecraft/client/resources/metadata/animation/AnimationMetadataSectionSerializer +CL: net/minecraft/client/resources/metadata/animation/FrameSize net/minecraft/client/resources/metadata/animation/FrameSize +CL: net/minecraft/client/resources/metadata/animation/VillagerMetaDataSection net/minecraft/client/resources/metadata/animation/VillagerMetaDataSection +CL: net/minecraft/client/resources/metadata/animation/VillagerMetaDataSection$Hat net/minecraft/client/resources/metadata/animation/VillagerMetaDataSection$Hat +CL: net/minecraft/client/resources/metadata/animation/VillagerMetadataSectionSerializer net/minecraft/client/resources/metadata/animation/VillagerMetadataSectionSerializer +CL: net/minecraft/client/resources/metadata/animation/package-info net/minecraft/client/resources/metadata/animation/package-info +CL: net/minecraft/client/resources/metadata/language/LanguageMetadataSection net/minecraft/client/resources/metadata/language/LanguageMetadataSection +CL: net/minecraft/client/resources/metadata/language/package-info net/minecraft/client/resources/metadata/language/package-info +CL: net/minecraft/client/resources/metadata/package-info net/minecraft/client/resources/metadata/package-info +CL: net/minecraft/client/resources/metadata/texture/TextureMetadataSection net/minecraft/client/resources/metadata/texture/TextureMetadataSection +CL: net/minecraft/client/resources/metadata/texture/TextureMetadataSectionSerializer net/minecraft/client/resources/metadata/texture/TextureMetadataSectionSerializer +CL: net/minecraft/client/resources/metadata/texture/package-info net/minecraft/client/resources/metadata/texture/package-info +CL: net/minecraft/client/resources/model/AtlasSet net/minecraft/client/resources/model/AtlasSet +CL: net/minecraft/client/resources/model/AtlasSet$AtlasEntry net/minecraft/client/resources/model/AtlasSet$AtlasEntry +CL: net/minecraft/client/resources/model/AtlasSet$StitchResult net/minecraft/client/resources/model/AtlasSet$StitchResult +CL: net/minecraft/client/resources/model/BakedModel net/minecraft/client/resources/model/BakedModel +CL: net/minecraft/client/resources/model/BlockModelRotation net/minecraft/client/resources/model/BlockModelRotation +CL: net/minecraft/client/resources/model/BuiltInModel net/minecraft/client/resources/model/BuiltInModel +CL: net/minecraft/client/resources/model/Material net/minecraft/client/resources/model/Material +CL: net/minecraft/client/resources/model/ModelBaker net/minecraft/client/resources/model/ModelBaker +CL: net/minecraft/client/resources/model/ModelBakery net/minecraft/client/resources/model/ModelBakery +CL: net/minecraft/client/resources/model/ModelBakery$BakedCacheKey net/minecraft/client/resources/model/ModelBakery$BakedCacheKey +CL: net/minecraft/client/resources/model/ModelBakery$BlockStateDefinitionException net/minecraft/client/resources/model/ModelBakery$BlockStateDefinitionException +CL: net/minecraft/client/resources/model/ModelBakery$LoadedJson net/minecraft/client/resources/model/ModelBakery$LoadedJson +CL: net/minecraft/client/resources/model/ModelBakery$ModelBakerImpl net/minecraft/client/resources/model/ModelBakery$ModelBakerImpl +CL: net/minecraft/client/resources/model/ModelBakery$ModelGroupKey net/minecraft/client/resources/model/ModelBakery$ModelGroupKey +CL: net/minecraft/client/resources/model/ModelManager net/minecraft/client/resources/model/ModelManager +CL: net/minecraft/client/resources/model/ModelManager$ReloadState net/minecraft/client/resources/model/ModelManager$ReloadState +CL: net/minecraft/client/resources/model/ModelResourceLocation net/minecraft/client/resources/model/ModelResourceLocation +CL: net/minecraft/client/resources/model/ModelState net/minecraft/client/resources/model/ModelState +CL: net/minecraft/client/resources/model/MultiPartBakedModel net/minecraft/client/resources/model/MultiPartBakedModel +CL: net/minecraft/client/resources/model/MultiPartBakedModel$Builder net/minecraft/client/resources/model/MultiPartBakedModel$Builder +CL: net/minecraft/client/resources/model/SimpleBakedModel net/minecraft/client/resources/model/SimpleBakedModel +CL: net/minecraft/client/resources/model/SimpleBakedModel$Builder net/minecraft/client/resources/model/SimpleBakedModel$Builder +CL: net/minecraft/client/resources/model/UnbakedModel net/minecraft/client/resources/model/UnbakedModel +CL: net/minecraft/client/resources/model/WeightedBakedModel net/minecraft/client/resources/model/WeightedBakedModel +CL: net/minecraft/client/resources/model/WeightedBakedModel$Builder net/minecraft/client/resources/model/WeightedBakedModel$Builder +CL: net/minecraft/client/resources/model/package-info net/minecraft/client/resources/model/package-info +CL: net/minecraft/client/resources/package-info net/minecraft/client/resources/package-info +CL: net/minecraft/client/resources/sounds/AbstractSoundInstance net/minecraft/client/resources/sounds/AbstractSoundInstance +CL: net/minecraft/client/resources/sounds/AbstractTickableSoundInstance net/minecraft/client/resources/sounds/AbstractTickableSoundInstance +CL: net/minecraft/client/resources/sounds/AmbientSoundHandler net/minecraft/client/resources/sounds/AmbientSoundHandler +CL: net/minecraft/client/resources/sounds/BeeAggressiveSoundInstance net/minecraft/client/resources/sounds/BeeAggressiveSoundInstance +CL: net/minecraft/client/resources/sounds/BeeFlyingSoundInstance net/minecraft/client/resources/sounds/BeeFlyingSoundInstance +CL: net/minecraft/client/resources/sounds/BeeSoundInstance net/minecraft/client/resources/sounds/BeeSoundInstance +CL: net/minecraft/client/resources/sounds/BiomeAmbientSoundsHandler net/minecraft/client/resources/sounds/BiomeAmbientSoundsHandler +CL: net/minecraft/client/resources/sounds/BiomeAmbientSoundsHandler$LoopSoundInstance net/minecraft/client/resources/sounds/BiomeAmbientSoundsHandler$LoopSoundInstance +CL: net/minecraft/client/resources/sounds/BubbleColumnAmbientSoundHandler net/minecraft/client/resources/sounds/BubbleColumnAmbientSoundHandler +CL: net/minecraft/client/resources/sounds/ElytraOnPlayerSoundInstance net/minecraft/client/resources/sounds/ElytraOnPlayerSoundInstance +CL: net/minecraft/client/resources/sounds/EntityBoundSoundInstance net/minecraft/client/resources/sounds/EntityBoundSoundInstance +CL: net/minecraft/client/resources/sounds/GuardianAttackSoundInstance net/minecraft/client/resources/sounds/GuardianAttackSoundInstance +CL: net/minecraft/client/resources/sounds/MinecartSoundInstance net/minecraft/client/resources/sounds/MinecartSoundInstance +CL: net/minecraft/client/resources/sounds/RidingMinecartSoundInstance net/minecraft/client/resources/sounds/RidingMinecartSoundInstance +CL: net/minecraft/client/resources/sounds/SimpleSoundInstance net/minecraft/client/resources/sounds/SimpleSoundInstance +CL: net/minecraft/client/resources/sounds/SnifferSoundInstance net/minecraft/client/resources/sounds/SnifferSoundInstance +CL: net/minecraft/client/resources/sounds/Sound net/minecraft/client/resources/sounds/Sound +CL: net/minecraft/client/resources/sounds/Sound$Type net/minecraft/client/resources/sounds/Sound$Type +CL: net/minecraft/client/resources/sounds/SoundEventRegistration net/minecraft/client/resources/sounds/SoundEventRegistration +CL: net/minecraft/client/resources/sounds/SoundEventRegistrationSerializer net/minecraft/client/resources/sounds/SoundEventRegistrationSerializer +CL: net/minecraft/client/resources/sounds/SoundInstance net/minecraft/client/resources/sounds/SoundInstance +CL: net/minecraft/client/resources/sounds/SoundInstance$Attenuation net/minecraft/client/resources/sounds/SoundInstance$Attenuation +CL: net/minecraft/client/resources/sounds/TickableSoundInstance net/minecraft/client/resources/sounds/TickableSoundInstance +CL: net/minecraft/client/resources/sounds/UnderwaterAmbientSoundHandler net/minecraft/client/resources/sounds/UnderwaterAmbientSoundHandler +CL: net/minecraft/client/resources/sounds/UnderwaterAmbientSoundInstances net/minecraft/client/resources/sounds/UnderwaterAmbientSoundInstances +CL: net/minecraft/client/resources/sounds/UnderwaterAmbientSoundInstances$SubSound net/minecraft/client/resources/sounds/UnderwaterAmbientSoundInstances$SubSound +CL: net/minecraft/client/resources/sounds/UnderwaterAmbientSoundInstances$UnderwaterAmbientSoundInstance net/minecraft/client/resources/sounds/UnderwaterAmbientSoundInstances$UnderwaterAmbientSoundInstance +CL: net/minecraft/client/resources/sounds/package-info net/minecraft/client/resources/sounds/package-info +CL: net/minecraft/client/searchtree/FullTextSearchTree net/minecraft/client/searchtree/FullTextSearchTree +CL: net/minecraft/client/searchtree/IdSearchTree net/minecraft/client/searchtree/IdSearchTree +CL: net/minecraft/client/searchtree/IntersectionIterator net/minecraft/client/searchtree/IntersectionIterator +CL: net/minecraft/client/searchtree/MergingUniqueIterator net/minecraft/client/searchtree/MergingUniqueIterator +CL: net/minecraft/client/searchtree/PlainTextSearchTree net/minecraft/client/searchtree/PlainTextSearchTree +CL: net/minecraft/client/searchtree/RefreshableSearchTree net/minecraft/client/searchtree/RefreshableSearchTree +CL: net/minecraft/client/searchtree/ResourceLocationSearchTree net/minecraft/client/searchtree/ResourceLocationSearchTree +CL: net/minecraft/client/searchtree/ResourceLocationSearchTree$1 net/minecraft/client/searchtree/ResourceLocationSearchTree$1 +CL: net/minecraft/client/searchtree/ResourceLocationSearchTree$2 net/minecraft/client/searchtree/ResourceLocationSearchTree$2 +CL: net/minecraft/client/searchtree/SearchRegistry net/minecraft/client/searchtree/SearchRegistry +CL: net/minecraft/client/searchtree/SearchRegistry$Key net/minecraft/client/searchtree/SearchRegistry$Key +CL: net/minecraft/client/searchtree/SearchRegistry$TreeBuilderSupplier net/minecraft/client/searchtree/SearchRegistry$TreeBuilderSupplier +CL: net/minecraft/client/searchtree/SearchRegistry$TreeEntry net/minecraft/client/searchtree/SearchRegistry$TreeEntry +CL: net/minecraft/client/searchtree/SearchTree net/minecraft/client/searchtree/SearchTree +CL: net/minecraft/client/searchtree/SuffixArray net/minecraft/client/searchtree/SuffixArray +CL: net/minecraft/client/searchtree/package-info net/minecraft/client/searchtree/package-info +CL: net/minecraft/client/server/IntegratedPlayerList net/minecraft/client/server/IntegratedPlayerList +CL: net/minecraft/client/server/IntegratedServer net/minecraft/client/server/IntegratedServer +CL: net/minecraft/client/server/LanServer net/minecraft/client/server/LanServer +CL: net/minecraft/client/server/LanServerDetection net/minecraft/client/server/LanServerDetection +CL: net/minecraft/client/server/LanServerDetection$LanServerDetector net/minecraft/client/server/LanServerDetection$LanServerDetector +CL: net/minecraft/client/server/LanServerDetection$LanServerList net/minecraft/client/server/LanServerDetection$LanServerList +CL: net/minecraft/client/server/LanServerPinger net/minecraft/client/server/LanServerPinger +CL: net/minecraft/client/server/package-info net/minecraft/client/server/package-info +CL: net/minecraft/client/sounds/AudioStream net/minecraft/client/sounds/AudioStream +CL: net/minecraft/client/sounds/ChannelAccess net/minecraft/client/sounds/ChannelAccess +CL: net/minecraft/client/sounds/ChannelAccess$ChannelHandle net/minecraft/client/sounds/ChannelAccess$ChannelHandle +CL: net/minecraft/client/sounds/LoopingAudioStream net/minecraft/client/sounds/LoopingAudioStream +CL: net/minecraft/client/sounds/LoopingAudioStream$AudioStreamProvider net/minecraft/client/sounds/LoopingAudioStream$AudioStreamProvider +CL: net/minecraft/client/sounds/LoopingAudioStream$NoCloseBuffer net/minecraft/client/sounds/LoopingAudioStream$NoCloseBuffer +CL: net/minecraft/client/sounds/MusicManager net/minecraft/client/sounds/MusicManager +CL: net/minecraft/client/sounds/SoundBufferLibrary net/minecraft/client/sounds/SoundBufferLibrary +CL: net/minecraft/client/sounds/SoundEngine net/minecraft/client/sounds/SoundEngine +CL: net/minecraft/client/sounds/SoundEngine$DeviceCheckState net/minecraft/client/sounds/SoundEngine$DeviceCheckState +CL: net/minecraft/client/sounds/SoundEngineExecutor net/minecraft/client/sounds/SoundEngineExecutor +CL: net/minecraft/client/sounds/SoundEventListener net/minecraft/client/sounds/SoundEventListener +CL: net/minecraft/client/sounds/SoundManager net/minecraft/client/sounds/SoundManager +CL: net/minecraft/client/sounds/SoundManager$1 net/minecraft/client/sounds/SoundManager$1 +CL: net/minecraft/client/sounds/SoundManager$2 net/minecraft/client/sounds/SoundManager$2 +CL: net/minecraft/client/sounds/SoundManager$Preparations net/minecraft/client/sounds/SoundManager$Preparations +CL: net/minecraft/client/sounds/SoundManager$Preparations$1 net/minecraft/client/sounds/SoundManager$Preparations$1 +CL: net/minecraft/client/sounds/WeighedSoundEvents net/minecraft/client/sounds/WeighedSoundEvents +CL: net/minecraft/client/sounds/Weighted net/minecraft/client/sounds/Weighted +CL: net/minecraft/client/sounds/package-info net/minecraft/client/sounds/package-info +CL: net/minecraft/client/telemetry/ClientTelemetryManager net/minecraft/client/telemetry/ClientTelemetryManager +CL: net/minecraft/client/telemetry/TelemetryEventInstance net/minecraft/client/telemetry/TelemetryEventInstance +CL: net/minecraft/client/telemetry/TelemetryEventLog net/minecraft/client/telemetry/TelemetryEventLog +CL: net/minecraft/client/telemetry/TelemetryEventLogger net/minecraft/client/telemetry/TelemetryEventLogger +CL: net/minecraft/client/telemetry/TelemetryEventSender net/minecraft/client/telemetry/TelemetryEventSender +CL: net/minecraft/client/telemetry/TelemetryEventType net/minecraft/client/telemetry/TelemetryEventType +CL: net/minecraft/client/telemetry/TelemetryEventType$Builder net/minecraft/client/telemetry/TelemetryEventType$Builder +CL: net/minecraft/client/telemetry/TelemetryLogManager net/minecraft/client/telemetry/TelemetryLogManager +CL: net/minecraft/client/telemetry/TelemetryProperty net/minecraft/client/telemetry/TelemetryProperty +CL: net/minecraft/client/telemetry/TelemetryProperty$Exporter net/minecraft/client/telemetry/TelemetryProperty$Exporter +CL: net/minecraft/client/telemetry/TelemetryProperty$GameMode net/minecraft/client/telemetry/TelemetryProperty$GameMode +CL: net/minecraft/client/telemetry/TelemetryProperty$ServerType net/minecraft/client/telemetry/TelemetryProperty$ServerType +CL: net/minecraft/client/telemetry/TelemetryPropertyMap net/minecraft/client/telemetry/TelemetryPropertyMap +CL: net/minecraft/client/telemetry/TelemetryPropertyMap$1 net/minecraft/client/telemetry/TelemetryPropertyMap$1 +CL: net/minecraft/client/telemetry/TelemetryPropertyMap$Builder net/minecraft/client/telemetry/TelemetryPropertyMap$Builder +CL: net/minecraft/client/telemetry/WorldSessionTelemetryManager net/minecraft/client/telemetry/WorldSessionTelemetryManager +CL: net/minecraft/client/telemetry/events/AggregatedTelemetryEvent net/minecraft/client/telemetry/events/AggregatedTelemetryEvent +CL: net/minecraft/client/telemetry/events/GameLoadTimesEvent net/minecraft/client/telemetry/events/GameLoadTimesEvent +CL: net/minecraft/client/telemetry/events/GameLoadTimesEvent$Measurement net/minecraft/client/telemetry/events/GameLoadTimesEvent$Measurement +CL: net/minecraft/client/telemetry/events/PerformanceMetricsEvent net/minecraft/client/telemetry/events/PerformanceMetricsEvent +CL: net/minecraft/client/telemetry/events/WorldLoadEvent net/minecraft/client/telemetry/events/WorldLoadEvent +CL: net/minecraft/client/telemetry/events/WorldLoadEvent$1 net/minecraft/client/telemetry/events/WorldLoadEvent$1 +CL: net/minecraft/client/telemetry/events/WorldLoadTimesEvent net/minecraft/client/telemetry/events/WorldLoadTimesEvent +CL: net/minecraft/client/telemetry/events/WorldUnloadEvent net/minecraft/client/telemetry/events/WorldUnloadEvent +CL: net/minecraft/client/telemetry/events/package-info net/minecraft/client/telemetry/events/package-info +CL: net/minecraft/client/telemetry/package-info net/minecraft/client/telemetry/package-info +CL: net/minecraft/client/tutorial/BundleTutorial net/minecraft/client/tutorial/BundleTutorial +CL: net/minecraft/client/tutorial/CompletedTutorialStepInstance net/minecraft/client/tutorial/CompletedTutorialStepInstance +CL: net/minecraft/client/tutorial/CraftPlanksTutorialStep net/minecraft/client/tutorial/CraftPlanksTutorialStep +CL: net/minecraft/client/tutorial/FindTreeTutorialStepInstance net/minecraft/client/tutorial/FindTreeTutorialStepInstance +CL: net/minecraft/client/tutorial/MovementTutorialStepInstance net/minecraft/client/tutorial/MovementTutorialStepInstance +CL: net/minecraft/client/tutorial/OpenInventoryTutorialStep net/minecraft/client/tutorial/OpenInventoryTutorialStep +CL: net/minecraft/client/tutorial/PunchTreeTutorialStepInstance net/minecraft/client/tutorial/PunchTreeTutorialStepInstance +CL: net/minecraft/client/tutorial/Tutorial net/minecraft/client/tutorial/Tutorial +CL: net/minecraft/client/tutorial/Tutorial$TimedToast net/minecraft/client/tutorial/Tutorial$TimedToast +CL: net/minecraft/client/tutorial/TutorialStepInstance net/minecraft/client/tutorial/TutorialStepInstance +CL: net/minecraft/client/tutorial/TutorialSteps net/minecraft/client/tutorial/TutorialSteps +CL: net/minecraft/client/tutorial/package-info net/minecraft/client/tutorial/package-info +CL: net/minecraft/commands/BrigadierExceptions net/minecraft/commands/BrigadierExceptions +CL: net/minecraft/commands/CommandBuildContext net/minecraft/commands/CommandBuildContext +CL: net/minecraft/commands/CommandBuildContext$1 net/minecraft/commands/CommandBuildContext$1 +CL: net/minecraft/commands/CommandBuildContext$2 net/minecraft/commands/CommandBuildContext$2 +CL: net/minecraft/commands/CommandBuildContext$2$1 net/minecraft/commands/CommandBuildContext$2$1 +CL: net/minecraft/commands/CommandBuildContext$3 net/minecraft/commands/CommandBuildContext$3 +CL: net/minecraft/commands/CommandBuildContext$Configurable net/minecraft/commands/CommandBuildContext$Configurable +CL: net/minecraft/commands/CommandBuildContext$MissingTagAccessPolicy net/minecraft/commands/CommandBuildContext$MissingTagAccessPolicy +CL: net/minecraft/commands/CommandFunction net/minecraft/commands/CommandFunction +CL: net/minecraft/commands/CommandFunction$CacheableFunction net/minecraft/commands/CommandFunction$CacheableFunction +CL: net/minecraft/commands/CommandFunction$CommandEntry net/minecraft/commands/CommandFunction$CommandEntry +CL: net/minecraft/commands/CommandFunction$Entry net/minecraft/commands/CommandFunction$Entry +CL: net/minecraft/commands/CommandFunction$FunctionEntry net/minecraft/commands/CommandFunction$FunctionEntry +CL: net/minecraft/commands/CommandRuntimeException net/minecraft/commands/CommandRuntimeException +CL: net/minecraft/commands/CommandSigningContext net/minecraft/commands/CommandSigningContext +CL: net/minecraft/commands/CommandSigningContext$1 net/minecraft/commands/CommandSigningContext$1 +CL: net/minecraft/commands/CommandSigningContext$SignedArguments net/minecraft/commands/CommandSigningContext$SignedArguments +CL: net/minecraft/commands/CommandSource net/minecraft/commands/CommandSource +CL: net/minecraft/commands/CommandSource$1 net/minecraft/commands/CommandSource$1 +CL: net/minecraft/commands/CommandSourceStack net/minecraft/commands/CommandSourceStack +CL: net/minecraft/commands/Commands net/minecraft/commands/Commands +CL: net/minecraft/commands/Commands$1 net/minecraft/commands/Commands$1 +CL: net/minecraft/commands/Commands$1$1 net/minecraft/commands/Commands$1$1 +CL: net/minecraft/commands/Commands$CommandSelection net/minecraft/commands/Commands$CommandSelection +CL: net/minecraft/commands/Commands$ParseFunction net/minecraft/commands/Commands$ParseFunction +CL: net/minecraft/commands/SharedSuggestionProvider net/minecraft/commands/SharedSuggestionProvider +CL: net/minecraft/commands/SharedSuggestionProvider$ElementSuggestionType net/minecraft/commands/SharedSuggestionProvider$ElementSuggestionType +CL: net/minecraft/commands/SharedSuggestionProvider$TextCoordinates net/minecraft/commands/SharedSuggestionProvider$TextCoordinates +CL: net/minecraft/commands/arguments/AngleArgument net/minecraft/commands/arguments/AngleArgument +CL: net/minecraft/commands/arguments/AngleArgument$SingleAngle net/minecraft/commands/arguments/AngleArgument$SingleAngle +CL: net/minecraft/commands/arguments/ArgumentSignatures net/minecraft/commands/arguments/ArgumentSignatures +CL: net/minecraft/commands/arguments/ArgumentSignatures$Entry net/minecraft/commands/arguments/ArgumentSignatures$Entry +CL: net/minecraft/commands/arguments/ArgumentSignatures$Signer net/minecraft/commands/arguments/ArgumentSignatures$Signer +CL: net/minecraft/commands/arguments/ColorArgument net/minecraft/commands/arguments/ColorArgument +CL: net/minecraft/commands/arguments/ComponentArgument net/minecraft/commands/arguments/ComponentArgument +CL: net/minecraft/commands/arguments/CompoundTagArgument net/minecraft/commands/arguments/CompoundTagArgument +CL: net/minecraft/commands/arguments/DimensionArgument net/minecraft/commands/arguments/DimensionArgument +CL: net/minecraft/commands/arguments/EntityAnchorArgument net/minecraft/commands/arguments/EntityAnchorArgument +CL: net/minecraft/commands/arguments/EntityAnchorArgument$Anchor net/minecraft/commands/arguments/EntityAnchorArgument$Anchor +CL: net/minecraft/commands/arguments/EntityArgument net/minecraft/commands/arguments/EntityArgument +CL: net/minecraft/commands/arguments/EntityArgument$Info net/minecraft/commands/arguments/EntityArgument$Info +CL: net/minecraft/commands/arguments/EntityArgument$Info$Template net/minecraft/commands/arguments/EntityArgument$Info$Template +CL: net/minecraft/commands/arguments/GameModeArgument net/minecraft/commands/arguments/GameModeArgument +CL: net/minecraft/commands/arguments/GameProfileArgument net/minecraft/commands/arguments/GameProfileArgument +CL: net/minecraft/commands/arguments/GameProfileArgument$Result net/minecraft/commands/arguments/GameProfileArgument$Result +CL: net/minecraft/commands/arguments/GameProfileArgument$SelectorResult net/minecraft/commands/arguments/GameProfileArgument$SelectorResult +CL: net/minecraft/commands/arguments/HeightmapTypeArgument net/minecraft/commands/arguments/HeightmapTypeArgument +CL: net/minecraft/commands/arguments/MessageArgument net/minecraft/commands/arguments/MessageArgument +CL: net/minecraft/commands/arguments/MessageArgument$Message net/minecraft/commands/arguments/MessageArgument$Message +CL: net/minecraft/commands/arguments/MessageArgument$Part net/minecraft/commands/arguments/MessageArgument$Part +CL: net/minecraft/commands/arguments/NbtPathArgument net/minecraft/commands/arguments/NbtPathArgument +CL: net/minecraft/commands/arguments/NbtPathArgument$AllElementsNode net/minecraft/commands/arguments/NbtPathArgument$AllElementsNode +CL: net/minecraft/commands/arguments/NbtPathArgument$CompoundChildNode net/minecraft/commands/arguments/NbtPathArgument$CompoundChildNode +CL: net/minecraft/commands/arguments/NbtPathArgument$IndexedElementNode net/minecraft/commands/arguments/NbtPathArgument$IndexedElementNode +CL: net/minecraft/commands/arguments/NbtPathArgument$MatchElementNode net/minecraft/commands/arguments/NbtPathArgument$MatchElementNode +CL: net/minecraft/commands/arguments/NbtPathArgument$MatchObjectNode net/minecraft/commands/arguments/NbtPathArgument$MatchObjectNode +CL: net/minecraft/commands/arguments/NbtPathArgument$MatchRootObjectNode net/minecraft/commands/arguments/NbtPathArgument$MatchRootObjectNode +CL: net/minecraft/commands/arguments/NbtPathArgument$NbtPath net/minecraft/commands/arguments/NbtPathArgument$NbtPath +CL: net/minecraft/commands/arguments/NbtPathArgument$Node net/minecraft/commands/arguments/NbtPathArgument$Node +CL: net/minecraft/commands/arguments/NbtTagArgument net/minecraft/commands/arguments/NbtTagArgument +CL: net/minecraft/commands/arguments/ObjectiveArgument net/minecraft/commands/arguments/ObjectiveArgument +CL: net/minecraft/commands/arguments/ObjectiveCriteriaArgument net/minecraft/commands/arguments/ObjectiveCriteriaArgument +CL: net/minecraft/commands/arguments/OperationArgument net/minecraft/commands/arguments/OperationArgument +CL: net/minecraft/commands/arguments/OperationArgument$Operation net/minecraft/commands/arguments/OperationArgument$Operation +CL: net/minecraft/commands/arguments/OperationArgument$SimpleOperation net/minecraft/commands/arguments/OperationArgument$SimpleOperation +CL: net/minecraft/commands/arguments/ParticleArgument net/minecraft/commands/arguments/ParticleArgument +CL: net/minecraft/commands/arguments/RangeArgument net/minecraft/commands/arguments/RangeArgument +CL: net/minecraft/commands/arguments/RangeArgument$Floats net/minecraft/commands/arguments/RangeArgument$Floats +CL: net/minecraft/commands/arguments/RangeArgument$Ints net/minecraft/commands/arguments/RangeArgument$Ints +CL: net/minecraft/commands/arguments/ResourceArgument net/minecraft/commands/arguments/ResourceArgument +CL: net/minecraft/commands/arguments/ResourceArgument$Info net/minecraft/commands/arguments/ResourceArgument$Info +CL: net/minecraft/commands/arguments/ResourceArgument$Info$Template net/minecraft/commands/arguments/ResourceArgument$Info$Template +CL: net/minecraft/commands/arguments/ResourceKeyArgument net/minecraft/commands/arguments/ResourceKeyArgument +CL: net/minecraft/commands/arguments/ResourceKeyArgument$Info net/minecraft/commands/arguments/ResourceKeyArgument$Info +CL: net/minecraft/commands/arguments/ResourceKeyArgument$Info$Template net/minecraft/commands/arguments/ResourceKeyArgument$Info$Template +CL: net/minecraft/commands/arguments/ResourceLocationArgument net/minecraft/commands/arguments/ResourceLocationArgument +CL: net/minecraft/commands/arguments/ResourceOrTagArgument net/minecraft/commands/arguments/ResourceOrTagArgument +CL: net/minecraft/commands/arguments/ResourceOrTagArgument$Info net/minecraft/commands/arguments/ResourceOrTagArgument$Info +CL: net/minecraft/commands/arguments/ResourceOrTagArgument$Info$Template net/minecraft/commands/arguments/ResourceOrTagArgument$Info$Template +CL: net/minecraft/commands/arguments/ResourceOrTagArgument$ResourceResult net/minecraft/commands/arguments/ResourceOrTagArgument$ResourceResult +CL: net/minecraft/commands/arguments/ResourceOrTagArgument$Result net/minecraft/commands/arguments/ResourceOrTagArgument$Result +CL: net/minecraft/commands/arguments/ResourceOrTagArgument$TagResult net/minecraft/commands/arguments/ResourceOrTagArgument$TagResult +CL: net/minecraft/commands/arguments/ResourceOrTagKeyArgument net/minecraft/commands/arguments/ResourceOrTagKeyArgument +CL: net/minecraft/commands/arguments/ResourceOrTagKeyArgument$Info net/minecraft/commands/arguments/ResourceOrTagKeyArgument$Info +CL: net/minecraft/commands/arguments/ResourceOrTagKeyArgument$Info$Template net/minecraft/commands/arguments/ResourceOrTagKeyArgument$Info$Template +CL: net/minecraft/commands/arguments/ResourceOrTagKeyArgument$ResourceResult net/minecraft/commands/arguments/ResourceOrTagKeyArgument$ResourceResult +CL: net/minecraft/commands/arguments/ResourceOrTagKeyArgument$Result net/minecraft/commands/arguments/ResourceOrTagKeyArgument$Result +CL: net/minecraft/commands/arguments/ResourceOrTagKeyArgument$TagResult net/minecraft/commands/arguments/ResourceOrTagKeyArgument$TagResult +CL: net/minecraft/commands/arguments/ScoreHolderArgument net/minecraft/commands/arguments/ScoreHolderArgument +CL: net/minecraft/commands/arguments/ScoreHolderArgument$Info net/minecraft/commands/arguments/ScoreHolderArgument$Info +CL: net/minecraft/commands/arguments/ScoreHolderArgument$Info$Template net/minecraft/commands/arguments/ScoreHolderArgument$Info$Template +CL: net/minecraft/commands/arguments/ScoreHolderArgument$Result net/minecraft/commands/arguments/ScoreHolderArgument$Result +CL: net/minecraft/commands/arguments/ScoreHolderArgument$SelectorResult net/minecraft/commands/arguments/ScoreHolderArgument$SelectorResult +CL: net/minecraft/commands/arguments/ScoreboardSlotArgument net/minecraft/commands/arguments/ScoreboardSlotArgument +CL: net/minecraft/commands/arguments/SignedArgument net/minecraft/commands/arguments/SignedArgument +CL: net/minecraft/commands/arguments/SlotArgument net/minecraft/commands/arguments/SlotArgument +CL: net/minecraft/commands/arguments/StringRepresentableArgument net/minecraft/commands/arguments/StringRepresentableArgument +CL: net/minecraft/commands/arguments/TeamArgument net/minecraft/commands/arguments/TeamArgument +CL: net/minecraft/commands/arguments/TemplateMirrorArgument net/minecraft/commands/arguments/TemplateMirrorArgument +CL: net/minecraft/commands/arguments/TemplateRotationArgument net/minecraft/commands/arguments/TemplateRotationArgument +CL: net/minecraft/commands/arguments/TimeArgument net/minecraft/commands/arguments/TimeArgument +CL: net/minecraft/commands/arguments/TimeArgument$Info net/minecraft/commands/arguments/TimeArgument$Info +CL: net/minecraft/commands/arguments/TimeArgument$Info$Template net/minecraft/commands/arguments/TimeArgument$Info$Template +CL: net/minecraft/commands/arguments/UuidArgument net/minecraft/commands/arguments/UuidArgument +CL: net/minecraft/commands/arguments/blocks/BlockInput net/minecraft/commands/arguments/blocks/BlockInput +CL: net/minecraft/commands/arguments/blocks/BlockPredicateArgument net/minecraft/commands/arguments/blocks/BlockPredicateArgument +CL: net/minecraft/commands/arguments/blocks/BlockPredicateArgument$BlockPredicate net/minecraft/commands/arguments/blocks/BlockPredicateArgument$BlockPredicate +CL: net/minecraft/commands/arguments/blocks/BlockPredicateArgument$Result net/minecraft/commands/arguments/blocks/BlockPredicateArgument$Result +CL: net/minecraft/commands/arguments/blocks/BlockPredicateArgument$TagPredicate net/minecraft/commands/arguments/blocks/BlockPredicateArgument$TagPredicate +CL: net/minecraft/commands/arguments/blocks/BlockStateArgument net/minecraft/commands/arguments/blocks/BlockStateArgument +CL: net/minecraft/commands/arguments/blocks/BlockStateParser net/minecraft/commands/arguments/blocks/BlockStateParser +CL: net/minecraft/commands/arguments/blocks/BlockStateParser$BlockResult net/minecraft/commands/arguments/blocks/BlockStateParser$BlockResult +CL: net/minecraft/commands/arguments/blocks/BlockStateParser$TagResult net/minecraft/commands/arguments/blocks/BlockStateParser$TagResult +CL: net/minecraft/commands/arguments/blocks/package-info net/minecraft/commands/arguments/blocks/package-info +CL: net/minecraft/commands/arguments/coordinates/BlockPosArgument net/minecraft/commands/arguments/coordinates/BlockPosArgument +CL: net/minecraft/commands/arguments/coordinates/ColumnPosArgument net/minecraft/commands/arguments/coordinates/ColumnPosArgument +CL: net/minecraft/commands/arguments/coordinates/Coordinates net/minecraft/commands/arguments/coordinates/Coordinates +CL: net/minecraft/commands/arguments/coordinates/LocalCoordinates net/minecraft/commands/arguments/coordinates/LocalCoordinates +CL: net/minecraft/commands/arguments/coordinates/RotationArgument net/minecraft/commands/arguments/coordinates/RotationArgument +CL: net/minecraft/commands/arguments/coordinates/SwizzleArgument net/minecraft/commands/arguments/coordinates/SwizzleArgument +CL: net/minecraft/commands/arguments/coordinates/Vec2Argument net/minecraft/commands/arguments/coordinates/Vec2Argument +CL: net/minecraft/commands/arguments/coordinates/Vec3Argument net/minecraft/commands/arguments/coordinates/Vec3Argument +CL: net/minecraft/commands/arguments/coordinates/WorldCoordinate net/minecraft/commands/arguments/coordinates/WorldCoordinate +CL: net/minecraft/commands/arguments/coordinates/WorldCoordinates net/minecraft/commands/arguments/coordinates/WorldCoordinates +CL: net/minecraft/commands/arguments/coordinates/package-info net/minecraft/commands/arguments/coordinates/package-info +CL: net/minecraft/commands/arguments/item/FunctionArgument net/minecraft/commands/arguments/item/FunctionArgument +CL: net/minecraft/commands/arguments/item/FunctionArgument$1 net/minecraft/commands/arguments/item/FunctionArgument$1 +CL: net/minecraft/commands/arguments/item/FunctionArgument$2 net/minecraft/commands/arguments/item/FunctionArgument$2 +CL: net/minecraft/commands/arguments/item/FunctionArgument$Result net/minecraft/commands/arguments/item/FunctionArgument$Result +CL: net/minecraft/commands/arguments/item/ItemArgument net/minecraft/commands/arguments/item/ItemArgument +CL: net/minecraft/commands/arguments/item/ItemInput net/minecraft/commands/arguments/item/ItemInput +CL: net/minecraft/commands/arguments/item/ItemParser net/minecraft/commands/arguments/item/ItemParser +CL: net/minecraft/commands/arguments/item/ItemParser$ItemResult net/minecraft/commands/arguments/item/ItemParser$ItemResult +CL: net/minecraft/commands/arguments/item/ItemParser$TagResult net/minecraft/commands/arguments/item/ItemParser$TagResult +CL: net/minecraft/commands/arguments/item/ItemPredicateArgument net/minecraft/commands/arguments/item/ItemPredicateArgument +CL: net/minecraft/commands/arguments/item/ItemPredicateArgument$Result net/minecraft/commands/arguments/item/ItemPredicateArgument$Result +CL: net/minecraft/commands/arguments/item/package-info net/minecraft/commands/arguments/item/package-info +CL: net/minecraft/commands/arguments/package-info net/minecraft/commands/arguments/package-info +CL: net/minecraft/commands/arguments/selector/EntitySelector net/minecraft/commands/arguments/selector/EntitySelector +CL: net/minecraft/commands/arguments/selector/EntitySelector$1 net/minecraft/commands/arguments/selector/EntitySelector$1 +CL: net/minecraft/commands/arguments/selector/EntitySelectorParser net/minecraft/commands/arguments/selector/EntitySelectorParser +CL: net/minecraft/commands/arguments/selector/options/EntitySelectorOptions net/minecraft/commands/arguments/selector/options/EntitySelectorOptions +CL: net/minecraft/commands/arguments/selector/options/EntitySelectorOptions$Modifier net/minecraft/commands/arguments/selector/options/EntitySelectorOptions$Modifier +CL: net/minecraft/commands/arguments/selector/options/EntitySelectorOptions$Option net/minecraft/commands/arguments/selector/options/EntitySelectorOptions$Option +CL: net/minecraft/commands/arguments/selector/options/package-info net/minecraft/commands/arguments/selector/options/package-info +CL: net/minecraft/commands/arguments/selector/package-info net/minecraft/commands/arguments/selector/package-info +CL: net/minecraft/commands/package-info net/minecraft/commands/package-info +CL: net/minecraft/commands/synchronization/ArgumentTypeInfo net/minecraft/commands/synchronization/ArgumentTypeInfo +CL: net/minecraft/commands/synchronization/ArgumentTypeInfo$Template net/minecraft/commands/synchronization/ArgumentTypeInfo$Template +CL: net/minecraft/commands/synchronization/ArgumentTypeInfos net/minecraft/commands/synchronization/ArgumentTypeInfos +CL: net/minecraft/commands/synchronization/ArgumentUtils net/minecraft/commands/synchronization/ArgumentUtils +CL: net/minecraft/commands/synchronization/SingletonArgumentInfo net/minecraft/commands/synchronization/SingletonArgumentInfo +CL: net/minecraft/commands/synchronization/SingletonArgumentInfo$Template net/minecraft/commands/synchronization/SingletonArgumentInfo$Template +CL: net/minecraft/commands/synchronization/SuggestionProviders net/minecraft/commands/synchronization/SuggestionProviders +CL: net/minecraft/commands/synchronization/SuggestionProviders$Wrapper net/minecraft/commands/synchronization/SuggestionProviders$Wrapper +CL: net/minecraft/commands/synchronization/brigadier/DoubleArgumentInfo net/minecraft/commands/synchronization/brigadier/DoubleArgumentInfo +CL: net/minecraft/commands/synchronization/brigadier/DoubleArgumentInfo$Template net/minecraft/commands/synchronization/brigadier/DoubleArgumentInfo$Template +CL: net/minecraft/commands/synchronization/brigadier/FloatArgumentInfo net/minecraft/commands/synchronization/brigadier/FloatArgumentInfo +CL: net/minecraft/commands/synchronization/brigadier/FloatArgumentInfo$Template net/minecraft/commands/synchronization/brigadier/FloatArgumentInfo$Template +CL: net/minecraft/commands/synchronization/brigadier/IntegerArgumentInfo net/minecraft/commands/synchronization/brigadier/IntegerArgumentInfo +CL: net/minecraft/commands/synchronization/brigadier/IntegerArgumentInfo$Template net/minecraft/commands/synchronization/brigadier/IntegerArgumentInfo$Template +CL: net/minecraft/commands/synchronization/brigadier/LongArgumentInfo net/minecraft/commands/synchronization/brigadier/LongArgumentInfo +CL: net/minecraft/commands/synchronization/brigadier/LongArgumentInfo$Template net/minecraft/commands/synchronization/brigadier/LongArgumentInfo$Template +CL: net/minecraft/commands/synchronization/brigadier/StringArgumentSerializer net/minecraft/commands/synchronization/brigadier/StringArgumentSerializer +CL: net/minecraft/commands/synchronization/brigadier/StringArgumentSerializer$1 net/minecraft/commands/synchronization/brigadier/StringArgumentSerializer$1 +CL: net/minecraft/commands/synchronization/brigadier/StringArgumentSerializer$Template net/minecraft/commands/synchronization/brigadier/StringArgumentSerializer$Template +CL: net/minecraft/commands/synchronization/brigadier/package-info net/minecraft/commands/synchronization/brigadier/package-info +CL: net/minecraft/commands/synchronization/package-info net/minecraft/commands/synchronization/package-info +CL: net/minecraft/core/AxisCycle net/minecraft/core/AxisCycle +CL: net/minecraft/core/AxisCycle$1 net/minecraft/core/AxisCycle$1 +CL: net/minecraft/core/AxisCycle$2 net/minecraft/core/AxisCycle$2 +CL: net/minecraft/core/AxisCycle$3 net/minecraft/core/AxisCycle$3 +CL: net/minecraft/core/BlockMath net/minecraft/core/BlockMath +CL: net/minecraft/core/BlockPos net/minecraft/core/BlockPos +CL: net/minecraft/core/BlockPos$1 net/minecraft/core/BlockPos$1 +CL: net/minecraft/core/BlockPos$2 net/minecraft/core/BlockPos$2 +CL: net/minecraft/core/BlockPos$3 net/minecraft/core/BlockPos$3 +CL: net/minecraft/core/BlockPos$4 net/minecraft/core/BlockPos$4 +CL: net/minecraft/core/BlockPos$5 net/minecraft/core/BlockPos$5 +CL: net/minecraft/core/BlockPos$MutableBlockPos net/minecraft/core/BlockPos$MutableBlockPos +CL: net/minecraft/core/BlockSource net/minecraft/core/BlockSource +CL: net/minecraft/core/BlockSourceImpl net/minecraft/core/BlockSourceImpl +CL: net/minecraft/core/Cursor3D net/minecraft/core/Cursor3D +CL: net/minecraft/core/DefaultedMappedRegistry net/minecraft/core/DefaultedMappedRegistry +CL: net/minecraft/core/DefaultedRegistry net/minecraft/core/DefaultedRegistry +CL: net/minecraft/core/Direction net/minecraft/core/Direction +CL: net/minecraft/core/Direction$1 net/minecraft/core/Direction$1 +CL: net/minecraft/core/Direction$Axis net/minecraft/core/Direction$Axis +CL: net/minecraft/core/Direction$Axis$1 net/minecraft/core/Direction$Axis$1 +CL: net/minecraft/core/Direction$Axis$2 net/minecraft/core/Direction$Axis$2 +CL: net/minecraft/core/Direction$Axis$3 net/minecraft/core/Direction$Axis$3 +CL: net/minecraft/core/Direction$AxisDirection net/minecraft/core/Direction$AxisDirection +CL: net/minecraft/core/Direction$Plane net/minecraft/core/Direction$Plane +CL: net/minecraft/core/Direction8 net/minecraft/core/Direction8 +CL: net/minecraft/core/FrontAndTop net/minecraft/core/FrontAndTop +CL: net/minecraft/core/GlobalPos net/minecraft/core/GlobalPos +CL: net/minecraft/core/Holder net/minecraft/core/Holder +CL: net/minecraft/core/Holder$Direct net/minecraft/core/Holder$Direct +CL: net/minecraft/core/Holder$Kind net/minecraft/core/Holder$Kind +CL: net/minecraft/core/Holder$Reference net/minecraft/core/Holder$Reference +CL: net/minecraft/core/Holder$Reference$Type net/minecraft/core/Holder$Reference$Type +CL: net/minecraft/core/HolderGetter net/minecraft/core/HolderGetter +CL: net/minecraft/core/HolderGetter$Provider net/minecraft/core/HolderGetter$Provider +CL: net/minecraft/core/HolderLookup net/minecraft/core/HolderLookup +CL: net/minecraft/core/HolderLookup$1 net/minecraft/core/HolderLookup$1 +CL: net/minecraft/core/HolderLookup$Delegate net/minecraft/core/HolderLookup$Delegate +CL: net/minecraft/core/HolderLookup$Provider net/minecraft/core/HolderLookup$Provider +CL: net/minecraft/core/HolderLookup$Provider$1 net/minecraft/core/HolderLookup$Provider$1 +CL: net/minecraft/core/HolderLookup$Provider$2 net/minecraft/core/HolderLookup$Provider$2 +CL: net/minecraft/core/HolderLookup$RegistryLookup net/minecraft/core/HolderLookup$RegistryLookup +CL: net/minecraft/core/HolderLookup$RegistryLookup$Delegate net/minecraft/core/HolderLookup$RegistryLookup$Delegate +CL: net/minecraft/core/HolderOwner net/minecraft/core/HolderOwner +CL: net/minecraft/core/HolderSet net/minecraft/core/HolderSet +CL: net/minecraft/core/HolderSet$Direct net/minecraft/core/HolderSet$Direct +CL: net/minecraft/core/HolderSet$ListBacked net/minecraft/core/HolderSet$ListBacked +CL: net/minecraft/core/HolderSet$Named net/minecraft/core/HolderSet$Named +CL: net/minecraft/core/IdMap net/minecraft/core/IdMap +CL: net/minecraft/core/IdMapper net/minecraft/core/IdMapper +CL: net/minecraft/core/LayeredRegistryAccess net/minecraft/core/LayeredRegistryAccess +CL: net/minecraft/core/MappedRegistry net/minecraft/core/MappedRegistry +CL: net/minecraft/core/MappedRegistry$1 net/minecraft/core/MappedRegistry$1 +CL: net/minecraft/core/MappedRegistry$2 net/minecraft/core/MappedRegistry$2 +CL: net/minecraft/core/NonNullList net/minecraft/core/NonNullList +CL: net/minecraft/core/Position net/minecraft/core/Position +CL: net/minecraft/core/PositionImpl net/minecraft/core/PositionImpl +CL: net/minecraft/core/QuartPos net/minecraft/core/QuartPos +CL: net/minecraft/core/Registry net/minecraft/core/Registry +CL: net/minecraft/core/Registry$1 net/minecraft/core/Registry$1 +CL: net/minecraft/core/Registry$2 net/minecraft/core/Registry$2 +CL: net/minecraft/core/RegistryAccess net/minecraft/core/RegistryAccess +CL: net/minecraft/core/RegistryAccess$1 net/minecraft/core/RegistryAccess$1 +CL: net/minecraft/core/RegistryAccess$1FrozenAccess net/minecraft/core/RegistryAccess$1FrozenAccess +CL: net/minecraft/core/RegistryAccess$Frozen net/minecraft/core/RegistryAccess$Frozen +CL: net/minecraft/core/RegistryAccess$ImmutableRegistryAccess net/minecraft/core/RegistryAccess$ImmutableRegistryAccess +CL: net/minecraft/core/RegistryAccess$RegistryEntry net/minecraft/core/RegistryAccess$RegistryEntry +CL: net/minecraft/core/RegistryCodecs net/minecraft/core/RegistryCodecs +CL: net/minecraft/core/RegistryCodecs$RegistryEntry net/minecraft/core/RegistryCodecs$RegistryEntry +CL: net/minecraft/core/RegistrySetBuilder net/minecraft/core/RegistrySetBuilder +CL: net/minecraft/core/RegistrySetBuilder$1 net/minecraft/core/RegistrySetBuilder$1 +CL: net/minecraft/core/RegistrySetBuilder$BuildState net/minecraft/core/RegistrySetBuilder$BuildState +CL: net/minecraft/core/RegistrySetBuilder$BuildState$1 net/minecraft/core/RegistrySetBuilder$BuildState$1 +CL: net/minecraft/core/RegistrySetBuilder$CompositeOwner net/minecraft/core/RegistrySetBuilder$CompositeOwner +CL: net/minecraft/core/RegistrySetBuilder$EmptyTagLookup net/minecraft/core/RegistrySetBuilder$EmptyTagLookup +CL: net/minecraft/core/RegistrySetBuilder$RegisteredValue net/minecraft/core/RegistrySetBuilder$RegisteredValue +CL: net/minecraft/core/RegistrySetBuilder$RegistryBootstrap net/minecraft/core/RegistrySetBuilder$RegistryBootstrap +CL: net/minecraft/core/RegistrySetBuilder$RegistryContents net/minecraft/core/RegistrySetBuilder$RegistryContents +CL: net/minecraft/core/RegistrySetBuilder$RegistryContents$1 net/minecraft/core/RegistrySetBuilder$RegistryContents$1 +CL: net/minecraft/core/RegistrySetBuilder$RegistryStub net/minecraft/core/RegistrySetBuilder$RegistryStub +CL: net/minecraft/core/RegistrySetBuilder$UniversalLookup net/minecraft/core/RegistrySetBuilder$UniversalLookup +CL: net/minecraft/core/RegistrySetBuilder$ValueAndHolder net/minecraft/core/RegistrySetBuilder$ValueAndHolder +CL: net/minecraft/core/RegistrySynchronization net/minecraft/core/RegistrySynchronization +CL: net/minecraft/core/RegistrySynchronization$NetworkedRegistryData net/minecraft/core/RegistrySynchronization$NetworkedRegistryData +CL: net/minecraft/core/Rotations net/minecraft/core/Rotations +CL: net/minecraft/core/SectionPos net/minecraft/core/SectionPos +CL: net/minecraft/core/SectionPos$1 net/minecraft/core/SectionPos$1 +CL: net/minecraft/core/UUIDUtil net/minecraft/core/UUIDUtil +CL: net/minecraft/core/Vec3i net/minecraft/core/Vec3i +CL: net/minecraft/core/WritableRegistry net/minecraft/core/WritableRegistry +CL: net/minecraft/core/cauldron/CauldronInteraction net/minecraft/core/cauldron/CauldronInteraction +CL: net/minecraft/core/cauldron/package-info net/minecraft/core/cauldron/package-info +CL: net/minecraft/core/dispenser/AbstractProjectileDispenseBehavior net/minecraft/core/dispenser/AbstractProjectileDispenseBehavior +CL: net/minecraft/core/dispenser/BoatDispenseItemBehavior net/minecraft/core/dispenser/BoatDispenseItemBehavior +CL: net/minecraft/core/dispenser/DefaultDispenseItemBehavior net/minecraft/core/dispenser/DefaultDispenseItemBehavior +CL: net/minecraft/core/dispenser/DispenseItemBehavior net/minecraft/core/dispenser/DispenseItemBehavior +CL: net/minecraft/core/dispenser/DispenseItemBehavior$1 net/minecraft/core/dispenser/DispenseItemBehavior$1 +CL: net/minecraft/core/dispenser/DispenseItemBehavior$10 net/minecraft/core/dispenser/DispenseItemBehavior$10 +CL: net/minecraft/core/dispenser/DispenseItemBehavior$11 net/minecraft/core/dispenser/DispenseItemBehavior$11 +CL: net/minecraft/core/dispenser/DispenseItemBehavior$12 net/minecraft/core/dispenser/DispenseItemBehavior$12 +CL: net/minecraft/core/dispenser/DispenseItemBehavior$13 net/minecraft/core/dispenser/DispenseItemBehavior$13 +CL: net/minecraft/core/dispenser/DispenseItemBehavior$14 net/minecraft/core/dispenser/DispenseItemBehavior$14 +CL: net/minecraft/core/dispenser/DispenseItemBehavior$15 net/minecraft/core/dispenser/DispenseItemBehavior$15 +CL: net/minecraft/core/dispenser/DispenseItemBehavior$16 net/minecraft/core/dispenser/DispenseItemBehavior$16 +CL: net/minecraft/core/dispenser/DispenseItemBehavior$17 net/minecraft/core/dispenser/DispenseItemBehavior$17 +CL: net/minecraft/core/dispenser/DispenseItemBehavior$18 net/minecraft/core/dispenser/DispenseItemBehavior$18 +CL: net/minecraft/core/dispenser/DispenseItemBehavior$19 net/minecraft/core/dispenser/DispenseItemBehavior$19 +CL: net/minecraft/core/dispenser/DispenseItemBehavior$2 net/minecraft/core/dispenser/DispenseItemBehavior$2 +CL: net/minecraft/core/dispenser/DispenseItemBehavior$20 net/minecraft/core/dispenser/DispenseItemBehavior$20 +CL: net/minecraft/core/dispenser/DispenseItemBehavior$21 net/minecraft/core/dispenser/DispenseItemBehavior$21 +CL: net/minecraft/core/dispenser/DispenseItemBehavior$22 net/minecraft/core/dispenser/DispenseItemBehavior$22 +CL: net/minecraft/core/dispenser/DispenseItemBehavior$23 net/minecraft/core/dispenser/DispenseItemBehavior$23 +CL: net/minecraft/core/dispenser/DispenseItemBehavior$24 net/minecraft/core/dispenser/DispenseItemBehavior$24 +CL: net/minecraft/core/dispenser/DispenseItemBehavior$25 net/minecraft/core/dispenser/DispenseItemBehavior$25 +CL: net/minecraft/core/dispenser/DispenseItemBehavior$26 net/minecraft/core/dispenser/DispenseItemBehavior$26 +CL: net/minecraft/core/dispenser/DispenseItemBehavior$27 net/minecraft/core/dispenser/DispenseItemBehavior$27 +CL: net/minecraft/core/dispenser/DispenseItemBehavior$3 net/minecraft/core/dispenser/DispenseItemBehavior$3 +CL: net/minecraft/core/dispenser/DispenseItemBehavior$4 net/minecraft/core/dispenser/DispenseItemBehavior$4 +CL: net/minecraft/core/dispenser/DispenseItemBehavior$5 net/minecraft/core/dispenser/DispenseItemBehavior$5 +CL: net/minecraft/core/dispenser/DispenseItemBehavior$6 net/minecraft/core/dispenser/DispenseItemBehavior$6 +CL: net/minecraft/core/dispenser/DispenseItemBehavior$7 net/minecraft/core/dispenser/DispenseItemBehavior$7 +CL: net/minecraft/core/dispenser/DispenseItemBehavior$7$1 net/minecraft/core/dispenser/DispenseItemBehavior$7$1 +CL: net/minecraft/core/dispenser/DispenseItemBehavior$8 net/minecraft/core/dispenser/DispenseItemBehavior$8 +CL: net/minecraft/core/dispenser/DispenseItemBehavior$8$1 net/minecraft/core/dispenser/DispenseItemBehavior$8$1 +CL: net/minecraft/core/dispenser/DispenseItemBehavior$9 net/minecraft/core/dispenser/DispenseItemBehavior$9 +CL: net/minecraft/core/dispenser/OptionalDispenseItemBehavior net/minecraft/core/dispenser/OptionalDispenseItemBehavior +CL: net/minecraft/core/dispenser/ShearsDispenseItemBehavior net/minecraft/core/dispenser/ShearsDispenseItemBehavior +CL: net/minecraft/core/dispenser/ShulkerBoxDispenseBehavior net/minecraft/core/dispenser/ShulkerBoxDispenseBehavior +CL: net/minecraft/core/dispenser/package-info net/minecraft/core/dispenser/package-info +CL: net/minecraft/core/package-info net/minecraft/core/package-info +CL: net/minecraft/core/particles/BlockParticleOption net/minecraft/core/particles/BlockParticleOption +CL: net/minecraft/core/particles/BlockParticleOption$1 net/minecraft/core/particles/BlockParticleOption$1 +CL: net/minecraft/core/particles/DustColorTransitionOptions net/minecraft/core/particles/DustColorTransitionOptions +CL: net/minecraft/core/particles/DustColorTransitionOptions$1 net/minecraft/core/particles/DustColorTransitionOptions$1 +CL: net/minecraft/core/particles/DustParticleOptions net/minecraft/core/particles/DustParticleOptions +CL: net/minecraft/core/particles/DustParticleOptions$1 net/minecraft/core/particles/DustParticleOptions$1 +CL: net/minecraft/core/particles/DustParticleOptionsBase net/minecraft/core/particles/DustParticleOptionsBase +CL: net/minecraft/core/particles/ItemParticleOption net/minecraft/core/particles/ItemParticleOption +CL: net/minecraft/core/particles/ItemParticleOption$1 net/minecraft/core/particles/ItemParticleOption$1 +CL: net/minecraft/core/particles/ParticleGroup net/minecraft/core/particles/ParticleGroup +CL: net/minecraft/core/particles/ParticleOptions net/minecraft/core/particles/ParticleOptions +CL: net/minecraft/core/particles/ParticleOptions$Deserializer net/minecraft/core/particles/ParticleOptions$Deserializer +CL: net/minecraft/core/particles/ParticleType net/minecraft/core/particles/ParticleType +CL: net/minecraft/core/particles/ParticleTypes net/minecraft/core/particles/ParticleTypes +CL: net/minecraft/core/particles/ParticleTypes$1 net/minecraft/core/particles/ParticleTypes$1 +CL: net/minecraft/core/particles/SculkChargeParticleOptions net/minecraft/core/particles/SculkChargeParticleOptions +CL: net/minecraft/core/particles/SculkChargeParticleOptions$1 net/minecraft/core/particles/SculkChargeParticleOptions$1 +CL: net/minecraft/core/particles/ShriekParticleOption net/minecraft/core/particles/ShriekParticleOption +CL: net/minecraft/core/particles/ShriekParticleOption$1 net/minecraft/core/particles/ShriekParticleOption$1 +CL: net/minecraft/core/particles/SimpleParticleType net/minecraft/core/particles/SimpleParticleType +CL: net/minecraft/core/particles/SimpleParticleType$1 net/minecraft/core/particles/SimpleParticleType$1 +CL: net/minecraft/core/particles/VibrationParticleOption net/minecraft/core/particles/VibrationParticleOption +CL: net/minecraft/core/particles/VibrationParticleOption$1 net/minecraft/core/particles/VibrationParticleOption$1 +CL: net/minecraft/core/particles/package-info net/minecraft/core/particles/package-info +CL: net/minecraft/core/registries/BuiltInRegistries net/minecraft/core/registries/BuiltInRegistries +CL: net/minecraft/core/registries/BuiltInRegistries$RegistryBootstrap net/minecraft/core/registries/BuiltInRegistries$RegistryBootstrap +CL: net/minecraft/core/registries/Registries net/minecraft/core/registries/Registries +CL: net/minecraft/core/registries/package-info net/minecraft/core/registries/package-info +CL: net/minecraft/data/BlockFamilies net/minecraft/data/BlockFamilies +CL: net/minecraft/data/BlockFamily net/minecraft/data/BlockFamily +CL: net/minecraft/data/BlockFamily$Builder net/minecraft/data/BlockFamily$Builder +CL: net/minecraft/data/BlockFamily$Variant net/minecraft/data/BlockFamily$Variant +CL: net/minecraft/data/CachedOutput net/minecraft/data/CachedOutput +CL: net/minecraft/data/DataGenerator net/minecraft/data/DataGenerator +CL: net/minecraft/data/DataGenerator$PackGenerator net/minecraft/data/DataGenerator$PackGenerator +CL: net/minecraft/data/DataProvider net/minecraft/data/DataProvider +CL: net/minecraft/data/DataProvider$Factory net/minecraft/data/DataProvider$Factory +CL: net/minecraft/data/HashCache net/minecraft/data/HashCache +CL: net/minecraft/data/HashCache$CacheUpdater net/minecraft/data/HashCache$CacheUpdater +CL: net/minecraft/data/HashCache$ProviderCache net/minecraft/data/HashCache$ProviderCache +CL: net/minecraft/data/HashCache$ProviderCacheBuilder net/minecraft/data/HashCache$ProviderCacheBuilder +CL: net/minecraft/data/HashCache$UpdateFunction net/minecraft/data/HashCache$UpdateFunction +CL: net/minecraft/data/HashCache$UpdateResult net/minecraft/data/HashCache$UpdateResult +CL: net/minecraft/data/Main net/minecraft/data/Main +CL: net/minecraft/data/PackOutput net/minecraft/data/PackOutput +CL: net/minecraft/data/PackOutput$PathProvider net/minecraft/data/PackOutput$PathProvider +CL: net/minecraft/data/PackOutput$Target net/minecraft/data/PackOutput$Target +CL: net/minecraft/data/advancements/AdvancementProvider net/minecraft/data/advancements/AdvancementProvider +CL: net/minecraft/data/advancements/AdvancementSubProvider net/minecraft/data/advancements/AdvancementSubProvider +CL: net/minecraft/data/advancements/package-info net/minecraft/data/advancements/package-info +CL: net/minecraft/data/advancements/packs/VanillaAdvancementProvider net/minecraft/data/advancements/packs/VanillaAdvancementProvider +CL: net/minecraft/data/advancements/packs/VanillaAdventureAdvancements net/minecraft/data/advancements/packs/VanillaAdventureAdvancements +CL: net/minecraft/data/advancements/packs/VanillaHusbandryAdvancements net/minecraft/data/advancements/packs/VanillaHusbandryAdvancements +CL: net/minecraft/data/advancements/packs/VanillaNetherAdvancements net/minecraft/data/advancements/packs/VanillaNetherAdvancements +CL: net/minecraft/data/advancements/packs/VanillaStoryAdvancements net/minecraft/data/advancements/packs/VanillaStoryAdvancements +CL: net/minecraft/data/advancements/packs/VanillaTheEndAdvancements net/minecraft/data/advancements/packs/VanillaTheEndAdvancements +CL: net/minecraft/data/advancements/packs/package-info net/minecraft/data/advancements/packs/package-info +CL: net/minecraft/data/info/BiomeParametersDumpReport net/minecraft/data/info/BiomeParametersDumpReport +CL: net/minecraft/data/info/BlockListReport net/minecraft/data/info/BlockListReport +CL: net/minecraft/data/info/CommandsReport net/minecraft/data/info/CommandsReport +CL: net/minecraft/data/info/RegistryDumpReport net/minecraft/data/info/RegistryDumpReport +CL: net/minecraft/data/info/package-info net/minecraft/data/info/package-info +CL: net/minecraft/data/loot/BlockLootSubProvider net/minecraft/data/loot/BlockLootSubProvider +CL: net/minecraft/data/loot/EntityLootSubProvider net/minecraft/data/loot/EntityLootSubProvider +CL: net/minecraft/data/loot/LootTableProvider net/minecraft/data/loot/LootTableProvider +CL: net/minecraft/data/loot/LootTableProvider$1 net/minecraft/data/loot/LootTableProvider$1 +CL: net/minecraft/data/loot/LootTableProvider$SubProviderEntry net/minecraft/data/loot/LootTableProvider$SubProviderEntry +CL: net/minecraft/data/loot/LootTableSubProvider net/minecraft/data/loot/LootTableSubProvider +CL: net/minecraft/data/loot/package-info net/minecraft/data/loot/package-info +CL: net/minecraft/data/loot/packs/VanillaArchaeologyLoot net/minecraft/data/loot/packs/VanillaArchaeologyLoot +CL: net/minecraft/data/loot/packs/VanillaBlockLoot net/minecraft/data/loot/packs/VanillaBlockLoot +CL: net/minecraft/data/loot/packs/VanillaChestLoot net/minecraft/data/loot/packs/VanillaChestLoot +CL: net/minecraft/data/loot/packs/VanillaEntityLoot net/minecraft/data/loot/packs/VanillaEntityLoot +CL: net/minecraft/data/loot/packs/VanillaFishingLoot net/minecraft/data/loot/packs/VanillaFishingLoot +CL: net/minecraft/data/loot/packs/VanillaGiftLoot net/minecraft/data/loot/packs/VanillaGiftLoot +CL: net/minecraft/data/loot/packs/VanillaLootTableProvider net/minecraft/data/loot/packs/VanillaLootTableProvider +CL: net/minecraft/data/loot/packs/VanillaPiglinBarterLoot net/minecraft/data/loot/packs/VanillaPiglinBarterLoot +CL: net/minecraft/data/loot/packs/package-info net/minecraft/data/loot/packs/package-info +CL: net/minecraft/data/metadata/PackMetadataGenerator net/minecraft/data/metadata/PackMetadataGenerator +CL: net/minecraft/data/metadata/package-info net/minecraft/data/metadata/package-info +CL: net/minecraft/data/models/BlockModelGenerators net/minecraft/data/models/BlockModelGenerators +CL: net/minecraft/data/models/BlockModelGenerators$1 net/minecraft/data/models/BlockModelGenerators$1 +CL: net/minecraft/data/models/BlockModelGenerators$BlockEntityModelGenerator net/minecraft/data/models/BlockModelGenerators$BlockEntityModelGenerator +CL: net/minecraft/data/models/BlockModelGenerators$BlockFamilyProvider net/minecraft/data/models/BlockModelGenerators$BlockFamilyProvider +CL: net/minecraft/data/models/BlockModelGenerators$BlockStateGeneratorSupplier net/minecraft/data/models/BlockModelGenerators$BlockStateGeneratorSupplier +CL: net/minecraft/data/models/BlockModelGenerators$BookSlotModelCacheKey net/minecraft/data/models/BlockModelGenerators$BookSlotModelCacheKey +CL: net/minecraft/data/models/BlockModelGenerators$TintState net/minecraft/data/models/BlockModelGenerators$TintState +CL: net/minecraft/data/models/BlockModelGenerators$WoodProvider net/minecraft/data/models/BlockModelGenerators$WoodProvider +CL: net/minecraft/data/models/ItemModelGenerators net/minecraft/data/models/ItemModelGenerators +CL: net/minecraft/data/models/ItemModelGenerators$TrimModelData net/minecraft/data/models/ItemModelGenerators$TrimModelData +CL: net/minecraft/data/models/ModelProvider net/minecraft/data/models/ModelProvider +CL: net/minecraft/data/models/blockstates/BlockStateGenerator net/minecraft/data/models/blockstates/BlockStateGenerator +CL: net/minecraft/data/models/blockstates/Condition net/minecraft/data/models/blockstates/Condition +CL: net/minecraft/data/models/blockstates/Condition$CompositeCondition net/minecraft/data/models/blockstates/Condition$CompositeCondition +CL: net/minecraft/data/models/blockstates/Condition$Operation net/minecraft/data/models/blockstates/Condition$Operation +CL: net/minecraft/data/models/blockstates/Condition$TerminalCondition net/minecraft/data/models/blockstates/Condition$TerminalCondition +CL: net/minecraft/data/models/blockstates/MultiPartGenerator net/minecraft/data/models/blockstates/MultiPartGenerator +CL: net/minecraft/data/models/blockstates/MultiPartGenerator$ConditionalEntry net/minecraft/data/models/blockstates/MultiPartGenerator$ConditionalEntry +CL: net/minecraft/data/models/blockstates/MultiPartGenerator$Entry net/minecraft/data/models/blockstates/MultiPartGenerator$Entry +CL: net/minecraft/data/models/blockstates/MultiVariantGenerator net/minecraft/data/models/blockstates/MultiVariantGenerator +CL: net/minecraft/data/models/blockstates/PropertyDispatch net/minecraft/data/models/blockstates/PropertyDispatch +CL: net/minecraft/data/models/blockstates/PropertyDispatch$C1 net/minecraft/data/models/blockstates/PropertyDispatch$C1 +CL: net/minecraft/data/models/blockstates/PropertyDispatch$C2 net/minecraft/data/models/blockstates/PropertyDispatch$C2 +CL: net/minecraft/data/models/blockstates/PropertyDispatch$C3 net/minecraft/data/models/blockstates/PropertyDispatch$C3 +CL: net/minecraft/data/models/blockstates/PropertyDispatch$C4 net/minecraft/data/models/blockstates/PropertyDispatch$C4 +CL: net/minecraft/data/models/blockstates/PropertyDispatch$C5 net/minecraft/data/models/blockstates/PropertyDispatch$C5 +CL: net/minecraft/data/models/blockstates/PropertyDispatch$PentaFunction net/minecraft/data/models/blockstates/PropertyDispatch$PentaFunction +CL: net/minecraft/data/models/blockstates/PropertyDispatch$QuadFunction net/minecraft/data/models/blockstates/PropertyDispatch$QuadFunction +CL: net/minecraft/data/models/blockstates/PropertyDispatch$TriFunction net/minecraft/data/models/blockstates/PropertyDispatch$TriFunction +CL: net/minecraft/data/models/blockstates/Selector net/minecraft/data/models/blockstates/Selector +CL: net/minecraft/data/models/blockstates/Variant net/minecraft/data/models/blockstates/Variant +CL: net/minecraft/data/models/blockstates/VariantProperties net/minecraft/data/models/blockstates/VariantProperties +CL: net/minecraft/data/models/blockstates/VariantProperties$Rotation net/minecraft/data/models/blockstates/VariantProperties$Rotation +CL: net/minecraft/data/models/blockstates/VariantProperty net/minecraft/data/models/blockstates/VariantProperty +CL: net/minecraft/data/models/blockstates/VariantProperty$Value net/minecraft/data/models/blockstates/VariantProperty$Value +CL: net/minecraft/data/models/blockstates/package-info net/minecraft/data/models/blockstates/package-info +CL: net/minecraft/data/models/model/DelegatedModel net/minecraft/data/models/model/DelegatedModel +CL: net/minecraft/data/models/model/ModelLocationUtils net/minecraft/data/models/model/ModelLocationUtils +CL: net/minecraft/data/models/model/ModelTemplate net/minecraft/data/models/model/ModelTemplate +CL: net/minecraft/data/models/model/ModelTemplate$JsonFactory net/minecraft/data/models/model/ModelTemplate$JsonFactory +CL: net/minecraft/data/models/model/ModelTemplates net/minecraft/data/models/model/ModelTemplates +CL: net/minecraft/data/models/model/TextureMapping net/minecraft/data/models/model/TextureMapping +CL: net/minecraft/data/models/model/TextureSlot net/minecraft/data/models/model/TextureSlot +CL: net/minecraft/data/models/model/TexturedModel net/minecraft/data/models/model/TexturedModel +CL: net/minecraft/data/models/model/TexturedModel$Provider net/minecraft/data/models/model/TexturedModel$Provider +CL: net/minecraft/data/models/model/package-info net/minecraft/data/models/model/package-info +CL: net/minecraft/data/models/package-info net/minecraft/data/models/package-info +CL: net/minecraft/data/package-info net/minecraft/data/package-info +CL: net/minecraft/data/recipes/CraftingRecipeBuilder net/minecraft/data/recipes/CraftingRecipeBuilder +CL: net/minecraft/data/recipes/CraftingRecipeBuilder$1 net/minecraft/data/recipes/CraftingRecipeBuilder$1 +CL: net/minecraft/data/recipes/CraftingRecipeBuilder$CraftingResult net/minecraft/data/recipes/CraftingRecipeBuilder$CraftingResult +CL: net/minecraft/data/recipes/FinishedRecipe net/minecraft/data/recipes/FinishedRecipe +CL: net/minecraft/data/recipes/RecipeBuilder net/minecraft/data/recipes/RecipeBuilder +CL: net/minecraft/data/recipes/RecipeCategory net/minecraft/data/recipes/RecipeCategory +CL: net/minecraft/data/recipes/RecipeProvider net/minecraft/data/recipes/RecipeProvider +CL: net/minecraft/data/recipes/ShapedRecipeBuilder net/minecraft/data/recipes/ShapedRecipeBuilder +CL: net/minecraft/data/recipes/ShapedRecipeBuilder$Result net/minecraft/data/recipes/ShapedRecipeBuilder$Result +CL: net/minecraft/data/recipes/ShapelessRecipeBuilder net/minecraft/data/recipes/ShapelessRecipeBuilder +CL: net/minecraft/data/recipes/ShapelessRecipeBuilder$Result net/minecraft/data/recipes/ShapelessRecipeBuilder$Result +CL: net/minecraft/data/recipes/SimpleCookingRecipeBuilder net/minecraft/data/recipes/SimpleCookingRecipeBuilder +CL: net/minecraft/data/recipes/SimpleCookingRecipeBuilder$Result net/minecraft/data/recipes/SimpleCookingRecipeBuilder$Result +CL: net/minecraft/data/recipes/SingleItemRecipeBuilder net/minecraft/data/recipes/SingleItemRecipeBuilder +CL: net/minecraft/data/recipes/SingleItemRecipeBuilder$Result net/minecraft/data/recipes/SingleItemRecipeBuilder$Result +CL: net/minecraft/data/recipes/SmithingTransformRecipeBuilder net/minecraft/data/recipes/SmithingTransformRecipeBuilder +CL: net/minecraft/data/recipes/SmithingTransformRecipeBuilder$Result net/minecraft/data/recipes/SmithingTransformRecipeBuilder$Result +CL: net/minecraft/data/recipes/SmithingTrimRecipeBuilder net/minecraft/data/recipes/SmithingTrimRecipeBuilder +CL: net/minecraft/data/recipes/SmithingTrimRecipeBuilder$Result net/minecraft/data/recipes/SmithingTrimRecipeBuilder$Result +CL: net/minecraft/data/recipes/SpecialRecipeBuilder net/minecraft/data/recipes/SpecialRecipeBuilder +CL: net/minecraft/data/recipes/SpecialRecipeBuilder$1 net/minecraft/data/recipes/SpecialRecipeBuilder$1 +CL: net/minecraft/data/recipes/package-info net/minecraft/data/recipes/package-info +CL: net/minecraft/data/recipes/packs/BundleRecipeProvider net/minecraft/data/recipes/packs/BundleRecipeProvider +CL: net/minecraft/data/recipes/packs/VanillaRecipeProvider net/minecraft/data/recipes/packs/VanillaRecipeProvider +CL: net/minecraft/data/recipes/packs/package-info net/minecraft/data/recipes/packs/package-info +CL: net/minecraft/data/registries/RegistriesDatapackGenerator net/minecraft/data/registries/RegistriesDatapackGenerator +CL: net/minecraft/data/registries/VanillaRegistries net/minecraft/data/registries/VanillaRegistries +CL: net/minecraft/data/registries/package-info net/minecraft/data/registries/package-info +CL: net/minecraft/data/structures/NbtToSnbt net/minecraft/data/structures/NbtToSnbt +CL: net/minecraft/data/structures/SnbtToNbt net/minecraft/data/structures/SnbtToNbt +CL: net/minecraft/data/structures/SnbtToNbt$Filter net/minecraft/data/structures/SnbtToNbt$Filter +CL: net/minecraft/data/structures/SnbtToNbt$StructureConversionException net/minecraft/data/structures/SnbtToNbt$StructureConversionException +CL: net/minecraft/data/structures/SnbtToNbt$TaskResult net/minecraft/data/structures/SnbtToNbt$TaskResult +CL: net/minecraft/data/structures/StructureUpdater net/minecraft/data/structures/StructureUpdater +CL: net/minecraft/data/structures/package-info net/minecraft/data/structures/package-info +CL: net/minecraft/data/tags/BannerPatternTagsProvider net/minecraft/data/tags/BannerPatternTagsProvider +CL: net/minecraft/data/tags/BiomeTagsProvider net/minecraft/data/tags/BiomeTagsProvider +CL: net/minecraft/data/tags/CatVariantTagsProvider net/minecraft/data/tags/CatVariantTagsProvider +CL: net/minecraft/data/tags/DamageTypeTagsProvider net/minecraft/data/tags/DamageTypeTagsProvider +CL: net/minecraft/data/tags/EntityTypeTagsProvider net/minecraft/data/tags/EntityTypeTagsProvider +CL: net/minecraft/data/tags/FlatLevelGeneratorPresetTagsProvider net/minecraft/data/tags/FlatLevelGeneratorPresetTagsProvider +CL: net/minecraft/data/tags/FluidTagsProvider net/minecraft/data/tags/FluidTagsProvider +CL: net/minecraft/data/tags/GameEventTagsProvider net/minecraft/data/tags/GameEventTagsProvider +CL: net/minecraft/data/tags/InstrumentTagsProvider net/minecraft/data/tags/InstrumentTagsProvider +CL: net/minecraft/data/tags/IntrinsicHolderTagsProvider net/minecraft/data/tags/IntrinsicHolderTagsProvider +CL: net/minecraft/data/tags/IntrinsicHolderTagsProvider$IntrinsicTagAppender net/minecraft/data/tags/IntrinsicHolderTagsProvider$IntrinsicTagAppender +CL: net/minecraft/data/tags/ItemTagsProvider net/minecraft/data/tags/ItemTagsProvider +CL: net/minecraft/data/tags/PaintingVariantTagsProvider net/minecraft/data/tags/PaintingVariantTagsProvider +CL: net/minecraft/data/tags/PoiTypeTagsProvider net/minecraft/data/tags/PoiTypeTagsProvider +CL: net/minecraft/data/tags/StructureTagsProvider net/minecraft/data/tags/StructureTagsProvider +CL: net/minecraft/data/tags/TagsProvider net/minecraft/data/tags/TagsProvider +CL: net/minecraft/data/tags/TagsProvider$1CombinedData net/minecraft/data/tags/TagsProvider$1CombinedData +CL: net/minecraft/data/tags/TagsProvider$TagAppender net/minecraft/data/tags/TagsProvider$TagAppender +CL: net/minecraft/data/tags/TagsProvider$TagLookup net/minecraft/data/tags/TagsProvider$TagLookup +CL: net/minecraft/data/tags/VanillaBlockTagsProvider net/minecraft/data/tags/VanillaBlockTagsProvider +CL: net/minecraft/data/tags/VanillaItemTagsProvider net/minecraft/data/tags/VanillaItemTagsProvider +CL: net/minecraft/data/tags/WorldPresetTagsProvider net/minecraft/data/tags/WorldPresetTagsProvider +CL: net/minecraft/data/tags/package-info net/minecraft/data/tags/package-info +CL: net/minecraft/data/worldgen/AncientCityStructurePieces net/minecraft/data/worldgen/AncientCityStructurePieces +CL: net/minecraft/data/worldgen/AncientCityStructurePools net/minecraft/data/worldgen/AncientCityStructurePools +CL: net/minecraft/data/worldgen/BastionBridgePools net/minecraft/data/worldgen/BastionBridgePools +CL: net/minecraft/data/worldgen/BastionHoglinStablePools net/minecraft/data/worldgen/BastionHoglinStablePools +CL: net/minecraft/data/worldgen/BastionHousingUnitsPools net/minecraft/data/worldgen/BastionHousingUnitsPools +CL: net/minecraft/data/worldgen/BastionPieces net/minecraft/data/worldgen/BastionPieces +CL: net/minecraft/data/worldgen/BastionSharedPools net/minecraft/data/worldgen/BastionSharedPools +CL: net/minecraft/data/worldgen/BastionTreasureRoomPools net/minecraft/data/worldgen/BastionTreasureRoomPools +CL: net/minecraft/data/worldgen/BiomeDefaultFeatures net/minecraft/data/worldgen/BiomeDefaultFeatures +CL: net/minecraft/data/worldgen/BootstapContext net/minecraft/data/worldgen/BootstapContext +CL: net/minecraft/data/worldgen/Carvers net/minecraft/data/worldgen/Carvers +CL: net/minecraft/data/worldgen/DesertVillagePools net/minecraft/data/worldgen/DesertVillagePools +CL: net/minecraft/data/worldgen/DimensionTypes net/minecraft/data/worldgen/DimensionTypes +CL: net/minecraft/data/worldgen/NoiseData net/minecraft/data/worldgen/NoiseData +CL: net/minecraft/data/worldgen/PillagerOutpostPools net/minecraft/data/worldgen/PillagerOutpostPools +CL: net/minecraft/data/worldgen/PlainVillagePools net/minecraft/data/worldgen/PlainVillagePools +CL: net/minecraft/data/worldgen/Pools net/minecraft/data/worldgen/Pools +CL: net/minecraft/data/worldgen/ProcessorLists net/minecraft/data/worldgen/ProcessorLists +CL: net/minecraft/data/worldgen/SavannaVillagePools net/minecraft/data/worldgen/SavannaVillagePools +CL: net/minecraft/data/worldgen/SnowyVillagePools net/minecraft/data/worldgen/SnowyVillagePools +CL: net/minecraft/data/worldgen/StructureSets net/minecraft/data/worldgen/StructureSets +CL: net/minecraft/data/worldgen/Structures net/minecraft/data/worldgen/Structures +CL: net/minecraft/data/worldgen/SurfaceRuleData net/minecraft/data/worldgen/SurfaceRuleData +CL: net/minecraft/data/worldgen/TaigaVillagePools net/minecraft/data/worldgen/TaigaVillagePools +CL: net/minecraft/data/worldgen/TerrainProvider net/minecraft/data/worldgen/TerrainProvider +CL: net/minecraft/data/worldgen/TrailRuinsStructurePools net/minecraft/data/worldgen/TrailRuinsStructurePools +CL: net/minecraft/data/worldgen/VillagePools net/minecraft/data/worldgen/VillagePools +CL: net/minecraft/data/worldgen/biome/BiomeData net/minecraft/data/worldgen/biome/BiomeData +CL: net/minecraft/data/worldgen/biome/EndBiomes net/minecraft/data/worldgen/biome/EndBiomes +CL: net/minecraft/data/worldgen/biome/NetherBiomes net/minecraft/data/worldgen/biome/NetherBiomes +CL: net/minecraft/data/worldgen/biome/OverworldBiomes net/minecraft/data/worldgen/biome/OverworldBiomes +CL: net/minecraft/data/worldgen/biome/package-info net/minecraft/data/worldgen/biome/package-info +CL: net/minecraft/data/worldgen/features/AquaticFeatures net/minecraft/data/worldgen/features/AquaticFeatures +CL: net/minecraft/data/worldgen/features/CaveFeatures net/minecraft/data/worldgen/features/CaveFeatures +CL: net/minecraft/data/worldgen/features/EndFeatures net/minecraft/data/worldgen/features/EndFeatures +CL: net/minecraft/data/worldgen/features/FeatureUtils net/minecraft/data/worldgen/features/FeatureUtils +CL: net/minecraft/data/worldgen/features/MiscOverworldFeatures net/minecraft/data/worldgen/features/MiscOverworldFeatures +CL: net/minecraft/data/worldgen/features/NetherFeatures net/minecraft/data/worldgen/features/NetherFeatures +CL: net/minecraft/data/worldgen/features/OreFeatures net/minecraft/data/worldgen/features/OreFeatures +CL: net/minecraft/data/worldgen/features/PileFeatures net/minecraft/data/worldgen/features/PileFeatures +CL: net/minecraft/data/worldgen/features/TreeFeatures net/minecraft/data/worldgen/features/TreeFeatures +CL: net/minecraft/data/worldgen/features/VegetationFeatures net/minecraft/data/worldgen/features/VegetationFeatures +CL: net/minecraft/data/worldgen/features/package-info net/minecraft/data/worldgen/features/package-info +CL: net/minecraft/data/worldgen/package-info net/minecraft/data/worldgen/package-info +CL: net/minecraft/data/worldgen/placement/AquaticPlacements net/minecraft/data/worldgen/placement/AquaticPlacements +CL: net/minecraft/data/worldgen/placement/CavePlacements net/minecraft/data/worldgen/placement/CavePlacements +CL: net/minecraft/data/worldgen/placement/EndPlacements net/minecraft/data/worldgen/placement/EndPlacements +CL: net/minecraft/data/worldgen/placement/MiscOverworldPlacements net/minecraft/data/worldgen/placement/MiscOverworldPlacements +CL: net/minecraft/data/worldgen/placement/NetherPlacements net/minecraft/data/worldgen/placement/NetherPlacements +CL: net/minecraft/data/worldgen/placement/OrePlacements net/minecraft/data/worldgen/placement/OrePlacements +CL: net/minecraft/data/worldgen/placement/PlacementUtils net/minecraft/data/worldgen/placement/PlacementUtils +CL: net/minecraft/data/worldgen/placement/TreePlacements net/minecraft/data/worldgen/placement/TreePlacements +CL: net/minecraft/data/worldgen/placement/VegetationPlacements net/minecraft/data/worldgen/placement/VegetationPlacements +CL: net/minecraft/data/worldgen/placement/VillagePlacements net/minecraft/data/worldgen/placement/VillagePlacements +CL: net/minecraft/data/worldgen/placement/package-info net/minecraft/data/worldgen/placement/package-info +CL: net/minecraft/gametest/framework/AfterBatch net/minecraft/gametest/framework/AfterBatch +CL: net/minecraft/gametest/framework/BeforeBatch net/minecraft/gametest/framework/BeforeBatch +CL: net/minecraft/gametest/framework/ExhaustedAttemptsException net/minecraft/gametest/framework/ExhaustedAttemptsException +CL: net/minecraft/gametest/framework/GameTest net/minecraft/gametest/framework/GameTest +CL: net/minecraft/gametest/framework/GameTestAssertException net/minecraft/gametest/framework/GameTestAssertException +CL: net/minecraft/gametest/framework/GameTestAssertPosException net/minecraft/gametest/framework/GameTestAssertPosException +CL: net/minecraft/gametest/framework/GameTestBatch net/minecraft/gametest/framework/GameTestBatch +CL: net/minecraft/gametest/framework/GameTestBatchRunner net/minecraft/gametest/framework/GameTestBatchRunner +CL: net/minecraft/gametest/framework/GameTestBatchRunner$1 net/minecraft/gametest/framework/GameTestBatchRunner$1 +CL: net/minecraft/gametest/framework/GameTestEvent net/minecraft/gametest/framework/GameTestEvent +CL: net/minecraft/gametest/framework/GameTestGenerator net/minecraft/gametest/framework/GameTestGenerator +CL: net/minecraft/gametest/framework/GameTestHelper net/minecraft/gametest/framework/GameTestHelper +CL: net/minecraft/gametest/framework/GameTestHelper$1 net/minecraft/gametest/framework/GameTestHelper$1 +CL: net/minecraft/gametest/framework/GameTestHelper$2 net/minecraft/gametest/framework/GameTestHelper$2 +CL: net/minecraft/gametest/framework/GameTestHelper$3 net/minecraft/gametest/framework/GameTestHelper$3 +CL: net/minecraft/gametest/framework/GameTestInfo net/minecraft/gametest/framework/GameTestInfo +CL: net/minecraft/gametest/framework/GameTestListener net/minecraft/gametest/framework/GameTestListener +CL: net/minecraft/gametest/framework/GameTestRegistry net/minecraft/gametest/framework/GameTestRegistry +CL: net/minecraft/gametest/framework/GameTestRunner net/minecraft/gametest/framework/GameTestRunner +CL: net/minecraft/gametest/framework/GameTestSequence net/minecraft/gametest/framework/GameTestSequence +CL: net/minecraft/gametest/framework/GameTestSequence$Condition net/minecraft/gametest/framework/GameTestSequence$Condition +CL: net/minecraft/gametest/framework/GameTestServer net/minecraft/gametest/framework/GameTestServer +CL: net/minecraft/gametest/framework/GameTestServer$1 net/minecraft/gametest/framework/GameTestServer$1 +CL: net/minecraft/gametest/framework/GameTestTicker net/minecraft/gametest/framework/GameTestTicker +CL: net/minecraft/gametest/framework/GameTestTimeoutException net/minecraft/gametest/framework/GameTestTimeoutException +CL: net/minecraft/gametest/framework/GlobalTestReporter net/minecraft/gametest/framework/GlobalTestReporter +CL: net/minecraft/gametest/framework/JUnitLikeTestReporter net/minecraft/gametest/framework/JUnitLikeTestReporter +CL: net/minecraft/gametest/framework/LogTestReporter net/minecraft/gametest/framework/LogTestReporter +CL: net/minecraft/gametest/framework/MultipleTestTracker net/minecraft/gametest/framework/MultipleTestTracker +CL: net/minecraft/gametest/framework/MultipleTestTracker$1 net/minecraft/gametest/framework/MultipleTestTracker$1 +CL: net/minecraft/gametest/framework/ReportGameListener net/minecraft/gametest/framework/ReportGameListener +CL: net/minecraft/gametest/framework/StructureUtils net/minecraft/gametest/framework/StructureUtils +CL: net/minecraft/gametest/framework/StructureUtils$1 net/minecraft/gametest/framework/StructureUtils$1 +CL: net/minecraft/gametest/framework/TeamcityTestReporter net/minecraft/gametest/framework/TeamcityTestReporter +CL: net/minecraft/gametest/framework/TestClassNameArgument net/minecraft/gametest/framework/TestClassNameArgument +CL: net/minecraft/gametest/framework/TestCommand net/minecraft/gametest/framework/TestCommand +CL: net/minecraft/gametest/framework/TestCommand$TestSummaryDisplayer net/minecraft/gametest/framework/TestCommand$TestSummaryDisplayer +CL: net/minecraft/gametest/framework/TestFunction net/minecraft/gametest/framework/TestFunction +CL: net/minecraft/gametest/framework/TestFunctionArgument net/minecraft/gametest/framework/TestFunctionArgument +CL: net/minecraft/gametest/framework/TestReporter net/minecraft/gametest/framework/TestReporter +CL: net/minecraft/gametest/framework/package-info net/minecraft/gametest/framework/package-info +CL: net/minecraft/locale/Language net/minecraft/locale/Language +CL: net/minecraft/locale/Language$1 net/minecraft/locale/Language$1 +CL: net/minecraft/locale/package-info net/minecraft/locale/package-info +CL: net/minecraft/nbt/ByteArrayTag net/minecraft/nbt/ByteArrayTag +CL: net/minecraft/nbt/ByteArrayTag$1 net/minecraft/nbt/ByteArrayTag$1 +CL: net/minecraft/nbt/ByteTag net/minecraft/nbt/ByteTag +CL: net/minecraft/nbt/ByteTag$1 net/minecraft/nbt/ByteTag$1 +CL: net/minecraft/nbt/ByteTag$Cache net/minecraft/nbt/ByteTag$Cache +CL: net/minecraft/nbt/CollectionTag net/minecraft/nbt/CollectionTag +CL: net/minecraft/nbt/CompoundTag net/minecraft/nbt/CompoundTag +CL: net/minecraft/nbt/CompoundTag$1 net/minecraft/nbt/CompoundTag$1 +CL: net/minecraft/nbt/CompoundTag$2 net/minecraft/nbt/CompoundTag$2 +CL: net/minecraft/nbt/DoubleTag net/minecraft/nbt/DoubleTag +CL: net/minecraft/nbt/DoubleTag$1 net/minecraft/nbt/DoubleTag$1 +CL: net/minecraft/nbt/EndTag net/minecraft/nbt/EndTag +CL: net/minecraft/nbt/EndTag$1 net/minecraft/nbt/EndTag$1 +CL: net/minecraft/nbt/FloatTag net/minecraft/nbt/FloatTag +CL: net/minecraft/nbt/FloatTag$1 net/minecraft/nbt/FloatTag$1 +CL: net/minecraft/nbt/IntArrayTag net/minecraft/nbt/IntArrayTag +CL: net/minecraft/nbt/IntArrayTag$1 net/minecraft/nbt/IntArrayTag$1 +CL: net/minecraft/nbt/IntTag net/minecraft/nbt/IntTag +CL: net/minecraft/nbt/IntTag$1 net/minecraft/nbt/IntTag$1 +CL: net/minecraft/nbt/IntTag$Cache net/minecraft/nbt/IntTag$Cache +CL: net/minecraft/nbt/ListTag net/minecraft/nbt/ListTag +CL: net/minecraft/nbt/ListTag$1 net/minecraft/nbt/ListTag$1 +CL: net/minecraft/nbt/ListTag$2 net/minecraft/nbt/ListTag$2 +CL: net/minecraft/nbt/LongArrayTag net/minecraft/nbt/LongArrayTag +CL: net/minecraft/nbt/LongArrayTag$1 net/minecraft/nbt/LongArrayTag$1 +CL: net/minecraft/nbt/LongTag net/minecraft/nbt/LongTag +CL: net/minecraft/nbt/LongTag$1 net/minecraft/nbt/LongTag$1 +CL: net/minecraft/nbt/LongTag$Cache net/minecraft/nbt/LongTag$Cache +CL: net/minecraft/nbt/NbtAccounter net/minecraft/nbt/NbtAccounter +CL: net/minecraft/nbt/NbtAccounter$1 net/minecraft/nbt/NbtAccounter$1 +CL: net/minecraft/nbt/NbtIo net/minecraft/nbt/NbtIo +CL: net/minecraft/nbt/NbtIo$1 net/minecraft/nbt/NbtIo$1 +CL: net/minecraft/nbt/NbtOps net/minecraft/nbt/NbtOps +CL: net/minecraft/nbt/NbtOps$1 net/minecraft/nbt/NbtOps$1 +CL: net/minecraft/nbt/NbtOps$ByteListCollector net/minecraft/nbt/NbtOps$ByteListCollector +CL: net/minecraft/nbt/NbtOps$HeterogenousListCollector net/minecraft/nbt/NbtOps$HeterogenousListCollector +CL: net/minecraft/nbt/NbtOps$HomogenousListCollector net/minecraft/nbt/NbtOps$HomogenousListCollector +CL: net/minecraft/nbt/NbtOps$InitialListCollector net/minecraft/nbt/NbtOps$InitialListCollector +CL: net/minecraft/nbt/NbtOps$IntListCollector net/minecraft/nbt/NbtOps$IntListCollector +CL: net/minecraft/nbt/NbtOps$ListCollector net/minecraft/nbt/NbtOps$ListCollector +CL: net/minecraft/nbt/NbtOps$LongListCollector net/minecraft/nbt/NbtOps$LongListCollector +CL: net/minecraft/nbt/NbtOps$NbtRecordBuilder net/minecraft/nbt/NbtOps$NbtRecordBuilder +CL: net/minecraft/nbt/NbtUtils net/minecraft/nbt/NbtUtils +CL: net/minecraft/nbt/NumericTag net/minecraft/nbt/NumericTag +CL: net/minecraft/nbt/ShortTag net/minecraft/nbt/ShortTag +CL: net/minecraft/nbt/ShortTag$1 net/minecraft/nbt/ShortTag$1 +CL: net/minecraft/nbt/ShortTag$Cache net/minecraft/nbt/ShortTag$Cache +CL: net/minecraft/nbt/SnbtPrinterTagVisitor net/minecraft/nbt/SnbtPrinterTagVisitor +CL: net/minecraft/nbt/StreamTagVisitor net/minecraft/nbt/StreamTagVisitor +CL: net/minecraft/nbt/StreamTagVisitor$EntryResult net/minecraft/nbt/StreamTagVisitor$EntryResult +CL: net/minecraft/nbt/StreamTagVisitor$ValueResult net/minecraft/nbt/StreamTagVisitor$ValueResult +CL: net/minecraft/nbt/StringTag net/minecraft/nbt/StringTag +CL: net/minecraft/nbt/StringTag$1 net/minecraft/nbt/StringTag$1 +CL: net/minecraft/nbt/StringTagVisitor net/minecraft/nbt/StringTagVisitor +CL: net/minecraft/nbt/Tag net/minecraft/nbt/Tag +CL: net/minecraft/nbt/TagParser net/minecraft/nbt/TagParser +CL: net/minecraft/nbt/TagType net/minecraft/nbt/TagType +CL: net/minecraft/nbt/TagType$1 net/minecraft/nbt/TagType$1 +CL: net/minecraft/nbt/TagType$2 net/minecraft/nbt/TagType$2 +CL: net/minecraft/nbt/TagType$StaticSize net/minecraft/nbt/TagType$StaticSize +CL: net/minecraft/nbt/TagType$VariableSize net/minecraft/nbt/TagType$VariableSize +CL: net/minecraft/nbt/TagTypes net/minecraft/nbt/TagTypes +CL: net/minecraft/nbt/TagVisitor net/minecraft/nbt/TagVisitor +CL: net/minecraft/nbt/TextComponentTagVisitor net/minecraft/nbt/TextComponentTagVisitor +CL: net/minecraft/nbt/package-info net/minecraft/nbt/package-info +CL: net/minecraft/nbt/visitors/CollectFields net/minecraft/nbt/visitors/CollectFields +CL: net/minecraft/nbt/visitors/CollectToTag net/minecraft/nbt/visitors/CollectToTag +CL: net/minecraft/nbt/visitors/FieldSelector net/minecraft/nbt/visitors/FieldSelector +CL: net/minecraft/nbt/visitors/FieldTree net/minecraft/nbt/visitors/FieldTree +CL: net/minecraft/nbt/visitors/SkipAll net/minecraft/nbt/visitors/SkipAll +CL: net/minecraft/nbt/visitors/SkipAll$1 net/minecraft/nbt/visitors/SkipAll$1 +CL: net/minecraft/nbt/visitors/SkipFields net/minecraft/nbt/visitors/SkipFields +CL: net/minecraft/nbt/visitors/package-info net/minecraft/nbt/visitors/package-info +CL: net/minecraft/network/CipherBase net/minecraft/network/CipherBase +CL: net/minecraft/network/CipherDecoder net/minecraft/network/CipherDecoder +CL: net/minecraft/network/CipherEncoder net/minecraft/network/CipherEncoder +CL: net/minecraft/network/CompressionDecoder net/minecraft/network/CompressionDecoder +CL: net/minecraft/network/CompressionEncoder net/minecraft/network/CompressionEncoder +CL: net/minecraft/network/Connection net/minecraft/network/Connection +CL: net/minecraft/network/Connection$1 net/minecraft/network/Connection$1 +CL: net/minecraft/network/Connection$2 net/minecraft/network/Connection$2 +CL: net/minecraft/network/Connection$PacketHolder net/minecraft/network/Connection$PacketHolder +CL: net/minecraft/network/ConnectionProtocol net/minecraft/network/ConnectionProtocol +CL: net/minecraft/network/ConnectionProtocol$PacketSet net/minecraft/network/ConnectionProtocol$PacketSet +CL: net/minecraft/network/ConnectionProtocol$ProtocolBuilder net/minecraft/network/ConnectionProtocol$ProtocolBuilder +CL: net/minecraft/network/FriendlyByteBuf net/minecraft/network/FriendlyByteBuf +CL: net/minecraft/network/FriendlyByteBuf$1 net/minecraft/network/FriendlyByteBuf$1 +CL: net/minecraft/network/FriendlyByteBuf$Reader net/minecraft/network/FriendlyByteBuf$Reader +CL: net/minecraft/network/FriendlyByteBuf$Writer net/minecraft/network/FriendlyByteBuf$Writer +CL: net/minecraft/network/PacketBundlePacker net/minecraft/network/PacketBundlePacker +CL: net/minecraft/network/PacketBundleUnpacker net/minecraft/network/PacketBundleUnpacker +CL: net/minecraft/network/PacketDecoder net/minecraft/network/PacketDecoder +CL: net/minecraft/network/PacketEncoder net/minecraft/network/PacketEncoder +CL: net/minecraft/network/PacketListener net/minecraft/network/PacketListener +CL: net/minecraft/network/PacketSendListener net/minecraft/network/PacketSendListener +CL: net/minecraft/network/PacketSendListener$1 net/minecraft/network/PacketSendListener$1 +CL: net/minecraft/network/PacketSendListener$2 net/minecraft/network/PacketSendListener$2 +CL: net/minecraft/network/RateKickingConnection net/minecraft/network/RateKickingConnection +CL: net/minecraft/network/SkipPacketException net/minecraft/network/SkipPacketException +CL: net/minecraft/network/TickablePacketListener net/minecraft/network/TickablePacketListener +CL: net/minecraft/network/Varint21FrameDecoder net/minecraft/network/Varint21FrameDecoder +CL: net/minecraft/network/Varint21LengthFieldPrepender net/minecraft/network/Varint21LengthFieldPrepender +CL: net/minecraft/network/chat/ChatDecorator net/minecraft/network/chat/ChatDecorator +CL: net/minecraft/network/chat/ChatType net/minecraft/network/chat/ChatType +CL: net/minecraft/network/chat/ChatType$Bound net/minecraft/network/chat/ChatType$Bound +CL: net/minecraft/network/chat/ChatType$BoundNetwork net/minecraft/network/chat/ChatType$BoundNetwork +CL: net/minecraft/network/chat/ChatTypeDecoration net/minecraft/network/chat/ChatTypeDecoration +CL: net/minecraft/network/chat/ChatTypeDecoration$Parameter net/minecraft/network/chat/ChatTypeDecoration$Parameter +CL: net/minecraft/network/chat/ChatTypeDecoration$Parameter$Selector net/minecraft/network/chat/ChatTypeDecoration$Parameter$Selector +CL: net/minecraft/network/chat/ClickEvent net/minecraft/network/chat/ClickEvent +CL: net/minecraft/network/chat/ClickEvent$Action net/minecraft/network/chat/ClickEvent$Action +CL: net/minecraft/network/chat/CommonComponents net/minecraft/network/chat/CommonComponents +CL: net/minecraft/network/chat/Component net/minecraft/network/chat/Component +CL: net/minecraft/network/chat/Component$Serializer net/minecraft/network/chat/Component$Serializer +CL: net/minecraft/network/chat/ComponentContents net/minecraft/network/chat/ComponentContents +CL: net/minecraft/network/chat/ComponentContents$1 net/minecraft/network/chat/ComponentContents$1 +CL: net/minecraft/network/chat/ComponentUtils net/minecraft/network/chat/ComponentUtils +CL: net/minecraft/network/chat/FilterMask net/minecraft/network/chat/FilterMask +CL: net/minecraft/network/chat/FilterMask$1 net/minecraft/network/chat/FilterMask$1 +CL: net/minecraft/network/chat/FilterMask$Type net/minecraft/network/chat/FilterMask$Type +CL: net/minecraft/network/chat/FormattedText net/minecraft/network/chat/FormattedText +CL: net/minecraft/network/chat/FormattedText$1 net/minecraft/network/chat/FormattedText$1 +CL: net/minecraft/network/chat/FormattedText$2 net/minecraft/network/chat/FormattedText$2 +CL: net/minecraft/network/chat/FormattedText$3 net/minecraft/network/chat/FormattedText$3 +CL: net/minecraft/network/chat/FormattedText$4 net/minecraft/network/chat/FormattedText$4 +CL: net/minecraft/network/chat/FormattedText$ContentConsumer net/minecraft/network/chat/FormattedText$ContentConsumer +CL: net/minecraft/network/chat/FormattedText$StyledContentConsumer net/minecraft/network/chat/FormattedText$StyledContentConsumer +CL: net/minecraft/network/chat/HoverEvent net/minecraft/network/chat/HoverEvent +CL: net/minecraft/network/chat/HoverEvent$Action net/minecraft/network/chat/HoverEvent$Action +CL: net/minecraft/network/chat/HoverEvent$EntityTooltipInfo net/minecraft/network/chat/HoverEvent$EntityTooltipInfo +CL: net/minecraft/network/chat/HoverEvent$ItemStackInfo net/minecraft/network/chat/HoverEvent$ItemStackInfo +CL: net/minecraft/network/chat/LastSeenMessages net/minecraft/network/chat/LastSeenMessages +CL: net/minecraft/network/chat/LastSeenMessages$Packed net/minecraft/network/chat/LastSeenMessages$Packed +CL: net/minecraft/network/chat/LastSeenMessages$Update net/minecraft/network/chat/LastSeenMessages$Update +CL: net/minecraft/network/chat/LastSeenMessagesTracker net/minecraft/network/chat/LastSeenMessagesTracker +CL: net/minecraft/network/chat/LastSeenMessagesTracker$Update net/minecraft/network/chat/LastSeenMessagesTracker$Update +CL: net/minecraft/network/chat/LastSeenMessagesValidator net/minecraft/network/chat/LastSeenMessagesValidator +CL: net/minecraft/network/chat/LastSeenTrackedEntry net/minecraft/network/chat/LastSeenTrackedEntry +CL: net/minecraft/network/chat/LocalChatSession net/minecraft/network/chat/LocalChatSession +CL: net/minecraft/network/chat/MessageSignature net/minecraft/network/chat/MessageSignature +CL: net/minecraft/network/chat/MessageSignature$Packed net/minecraft/network/chat/MessageSignature$Packed +CL: net/minecraft/network/chat/MessageSignatureCache net/minecraft/network/chat/MessageSignatureCache +CL: net/minecraft/network/chat/MutableComponent net/minecraft/network/chat/MutableComponent +CL: net/minecraft/network/chat/OutgoingChatMessage net/minecraft/network/chat/OutgoingChatMessage +CL: net/minecraft/network/chat/OutgoingChatMessage$Disguised net/minecraft/network/chat/OutgoingChatMessage$Disguised +CL: net/minecraft/network/chat/OutgoingChatMessage$Player net/minecraft/network/chat/OutgoingChatMessage$Player +CL: net/minecraft/network/chat/PlayerChatMessage net/minecraft/network/chat/PlayerChatMessage +CL: net/minecraft/network/chat/RemoteChatSession net/minecraft/network/chat/RemoteChatSession +CL: net/minecraft/network/chat/RemoteChatSession$Data net/minecraft/network/chat/RemoteChatSession$Data +CL: net/minecraft/network/chat/SignableCommand net/minecraft/network/chat/SignableCommand +CL: net/minecraft/network/chat/SignableCommand$Argument net/minecraft/network/chat/SignableCommand$Argument +CL: net/minecraft/network/chat/SignedMessageBody net/minecraft/network/chat/SignedMessageBody +CL: net/minecraft/network/chat/SignedMessageBody$Packed net/minecraft/network/chat/SignedMessageBody$Packed +CL: net/minecraft/network/chat/SignedMessageChain net/minecraft/network/chat/SignedMessageChain +CL: net/minecraft/network/chat/SignedMessageChain$DecodeException net/minecraft/network/chat/SignedMessageChain$DecodeException +CL: net/minecraft/network/chat/SignedMessageChain$Decoder net/minecraft/network/chat/SignedMessageChain$Decoder +CL: net/minecraft/network/chat/SignedMessageChain$Encoder net/minecraft/network/chat/SignedMessageChain$Encoder +CL: net/minecraft/network/chat/SignedMessageLink net/minecraft/network/chat/SignedMessageLink +CL: net/minecraft/network/chat/SignedMessageValidator net/minecraft/network/chat/SignedMessageValidator +CL: net/minecraft/network/chat/SignedMessageValidator$KeyBased net/minecraft/network/chat/SignedMessageValidator$KeyBased +CL: net/minecraft/network/chat/Style net/minecraft/network/chat/Style +CL: net/minecraft/network/chat/Style$1 net/minecraft/network/chat/Style$1 +CL: net/minecraft/network/chat/Style$1Collector net/minecraft/network/chat/Style$1Collector +CL: net/minecraft/network/chat/Style$Serializer net/minecraft/network/chat/Style$Serializer +CL: net/minecraft/network/chat/SubStringSource net/minecraft/network/chat/SubStringSource +CL: net/minecraft/network/chat/TextColor net/minecraft/network/chat/TextColor +CL: net/minecraft/network/chat/ThrowingComponent net/minecraft/network/chat/ThrowingComponent +CL: net/minecraft/network/chat/contents/BlockDataSource net/minecraft/network/chat/contents/BlockDataSource +CL: net/minecraft/network/chat/contents/DataSource net/minecraft/network/chat/contents/DataSource +CL: net/minecraft/network/chat/contents/EntityDataSource net/minecraft/network/chat/contents/EntityDataSource +CL: net/minecraft/network/chat/contents/KeybindContents net/minecraft/network/chat/contents/KeybindContents +CL: net/minecraft/network/chat/contents/KeybindResolver net/minecraft/network/chat/contents/KeybindResolver +CL: net/minecraft/network/chat/contents/LiteralContents net/minecraft/network/chat/contents/LiteralContents +CL: net/minecraft/network/chat/contents/NbtContents net/minecraft/network/chat/contents/NbtContents +CL: net/minecraft/network/chat/contents/ScoreContents net/minecraft/network/chat/contents/ScoreContents +CL: net/minecraft/network/chat/contents/SelectorContents net/minecraft/network/chat/contents/SelectorContents +CL: net/minecraft/network/chat/contents/StorageDataSource net/minecraft/network/chat/contents/StorageDataSource +CL: net/minecraft/network/chat/contents/TranslatableContents net/minecraft/network/chat/contents/TranslatableContents +CL: net/minecraft/network/chat/contents/TranslatableFormatException net/minecraft/network/chat/contents/TranslatableFormatException +CL: net/minecraft/network/chat/contents/package-info net/minecraft/network/chat/contents/package-info +CL: net/minecraft/network/chat/package-info net/minecraft/network/chat/package-info +CL: net/minecraft/network/package-info net/minecraft/network/package-info +CL: net/minecraft/network/protocol/BundleDelimiterPacket net/minecraft/network/protocol/BundleDelimiterPacket +CL: net/minecraft/network/protocol/BundlePacket net/minecraft/network/protocol/BundlePacket +CL: net/minecraft/network/protocol/BundlerInfo net/minecraft/network/protocol/BundlerInfo +CL: net/minecraft/network/protocol/BundlerInfo$1 net/minecraft/network/protocol/BundlerInfo$1 +CL: net/minecraft/network/protocol/BundlerInfo$2 net/minecraft/network/protocol/BundlerInfo$2 +CL: net/minecraft/network/protocol/BundlerInfo$2$1 net/minecraft/network/protocol/BundlerInfo$2$1 +CL: net/minecraft/network/protocol/BundlerInfo$Bundler net/minecraft/network/protocol/BundlerInfo$Bundler +CL: net/minecraft/network/protocol/BundlerInfo$Provider net/minecraft/network/protocol/BundlerInfo$Provider +CL: net/minecraft/network/protocol/Packet net/minecraft/network/protocol/Packet +CL: net/minecraft/network/protocol/PacketFlow net/minecraft/network/protocol/PacketFlow +CL: net/minecraft/network/protocol/PacketUtils net/minecraft/network/protocol/PacketUtils +CL: net/minecraft/network/protocol/game/ClientGamePacketListener net/minecraft/network/protocol/game/ClientGamePacketListener +CL: net/minecraft/network/protocol/game/ClientboundAddEntityPacket net/minecraft/network/protocol/game/ClientboundAddEntityPacket +CL: net/minecraft/network/protocol/game/ClientboundAddExperienceOrbPacket net/minecraft/network/protocol/game/ClientboundAddExperienceOrbPacket +CL: net/minecraft/network/protocol/game/ClientboundAddPlayerPacket net/minecraft/network/protocol/game/ClientboundAddPlayerPacket +CL: net/minecraft/network/protocol/game/ClientboundAnimatePacket net/minecraft/network/protocol/game/ClientboundAnimatePacket +CL: net/minecraft/network/protocol/game/ClientboundAwardStatsPacket net/minecraft/network/protocol/game/ClientboundAwardStatsPacket +CL: net/minecraft/network/protocol/game/ClientboundBlockChangedAckPacket net/minecraft/network/protocol/game/ClientboundBlockChangedAckPacket +CL: net/minecraft/network/protocol/game/ClientboundBlockDestructionPacket net/minecraft/network/protocol/game/ClientboundBlockDestructionPacket +CL: net/minecraft/network/protocol/game/ClientboundBlockEntityDataPacket net/minecraft/network/protocol/game/ClientboundBlockEntityDataPacket +CL: net/minecraft/network/protocol/game/ClientboundBlockEventPacket net/minecraft/network/protocol/game/ClientboundBlockEventPacket +CL: net/minecraft/network/protocol/game/ClientboundBlockUpdatePacket net/minecraft/network/protocol/game/ClientboundBlockUpdatePacket +CL: net/minecraft/network/protocol/game/ClientboundBossEventPacket net/minecraft/network/protocol/game/ClientboundBossEventPacket +CL: net/minecraft/network/protocol/game/ClientboundBossEventPacket$1 net/minecraft/network/protocol/game/ClientboundBossEventPacket$1 +CL: net/minecraft/network/protocol/game/ClientboundBossEventPacket$AddOperation net/minecraft/network/protocol/game/ClientboundBossEventPacket$AddOperation +CL: net/minecraft/network/protocol/game/ClientboundBossEventPacket$Handler net/minecraft/network/protocol/game/ClientboundBossEventPacket$Handler +CL: net/minecraft/network/protocol/game/ClientboundBossEventPacket$Operation net/minecraft/network/protocol/game/ClientboundBossEventPacket$Operation +CL: net/minecraft/network/protocol/game/ClientboundBossEventPacket$OperationType net/minecraft/network/protocol/game/ClientboundBossEventPacket$OperationType +CL: net/minecraft/network/protocol/game/ClientboundBossEventPacket$UpdateNameOperation net/minecraft/network/protocol/game/ClientboundBossEventPacket$UpdateNameOperation +CL: net/minecraft/network/protocol/game/ClientboundBossEventPacket$UpdateProgressOperation net/minecraft/network/protocol/game/ClientboundBossEventPacket$UpdateProgressOperation +CL: net/minecraft/network/protocol/game/ClientboundBossEventPacket$UpdatePropertiesOperation net/minecraft/network/protocol/game/ClientboundBossEventPacket$UpdatePropertiesOperation +CL: net/minecraft/network/protocol/game/ClientboundBossEventPacket$UpdateStyleOperation net/minecraft/network/protocol/game/ClientboundBossEventPacket$UpdateStyleOperation +CL: net/minecraft/network/protocol/game/ClientboundBundlePacket net/minecraft/network/protocol/game/ClientboundBundlePacket +CL: net/minecraft/network/protocol/game/ClientboundChangeDifficultyPacket net/minecraft/network/protocol/game/ClientboundChangeDifficultyPacket +CL: net/minecraft/network/protocol/game/ClientboundChunksBiomesPacket net/minecraft/network/protocol/game/ClientboundChunksBiomesPacket +CL: net/minecraft/network/protocol/game/ClientboundChunksBiomesPacket$ChunkBiomeData net/minecraft/network/protocol/game/ClientboundChunksBiomesPacket$ChunkBiomeData +CL: net/minecraft/network/protocol/game/ClientboundClearTitlesPacket net/minecraft/network/protocol/game/ClientboundClearTitlesPacket +CL: net/minecraft/network/protocol/game/ClientboundCommandSuggestionsPacket net/minecraft/network/protocol/game/ClientboundCommandSuggestionsPacket +CL: net/minecraft/network/protocol/game/ClientboundCommandsPacket net/minecraft/network/protocol/game/ClientboundCommandsPacket +CL: net/minecraft/network/protocol/game/ClientboundCommandsPacket$ArgumentNodeStub net/minecraft/network/protocol/game/ClientboundCommandsPacket$ArgumentNodeStub +CL: net/minecraft/network/protocol/game/ClientboundCommandsPacket$Entry net/minecraft/network/protocol/game/ClientboundCommandsPacket$Entry +CL: net/minecraft/network/protocol/game/ClientboundCommandsPacket$LiteralNodeStub net/minecraft/network/protocol/game/ClientboundCommandsPacket$LiteralNodeStub +CL: net/minecraft/network/protocol/game/ClientboundCommandsPacket$NodeResolver net/minecraft/network/protocol/game/ClientboundCommandsPacket$NodeResolver +CL: net/minecraft/network/protocol/game/ClientboundCommandsPacket$NodeStub net/minecraft/network/protocol/game/ClientboundCommandsPacket$NodeStub +CL: net/minecraft/network/protocol/game/ClientboundContainerClosePacket net/minecraft/network/protocol/game/ClientboundContainerClosePacket +CL: net/minecraft/network/protocol/game/ClientboundContainerSetContentPacket net/minecraft/network/protocol/game/ClientboundContainerSetContentPacket +CL: net/minecraft/network/protocol/game/ClientboundContainerSetDataPacket net/minecraft/network/protocol/game/ClientboundContainerSetDataPacket +CL: net/minecraft/network/protocol/game/ClientboundContainerSetSlotPacket net/minecraft/network/protocol/game/ClientboundContainerSetSlotPacket +CL: net/minecraft/network/protocol/game/ClientboundCooldownPacket net/minecraft/network/protocol/game/ClientboundCooldownPacket +CL: net/minecraft/network/protocol/game/ClientboundCustomChatCompletionsPacket net/minecraft/network/protocol/game/ClientboundCustomChatCompletionsPacket +CL: net/minecraft/network/protocol/game/ClientboundCustomChatCompletionsPacket$Action net/minecraft/network/protocol/game/ClientboundCustomChatCompletionsPacket$Action +CL: net/minecraft/network/protocol/game/ClientboundCustomPayloadPacket net/minecraft/network/protocol/game/ClientboundCustomPayloadPacket +CL: net/minecraft/network/protocol/game/ClientboundDamageEventPacket net/minecraft/network/protocol/game/ClientboundDamageEventPacket +CL: net/minecraft/network/protocol/game/ClientboundDeleteChatPacket net/minecraft/network/protocol/game/ClientboundDeleteChatPacket +CL: net/minecraft/network/protocol/game/ClientboundDisconnectPacket net/minecraft/network/protocol/game/ClientboundDisconnectPacket +CL: net/minecraft/network/protocol/game/ClientboundDisguisedChatPacket net/minecraft/network/protocol/game/ClientboundDisguisedChatPacket +CL: net/minecraft/network/protocol/game/ClientboundEntityEventPacket net/minecraft/network/protocol/game/ClientboundEntityEventPacket +CL: net/minecraft/network/protocol/game/ClientboundExplodePacket net/minecraft/network/protocol/game/ClientboundExplodePacket +CL: net/minecraft/network/protocol/game/ClientboundForgetLevelChunkPacket net/minecraft/network/protocol/game/ClientboundForgetLevelChunkPacket +CL: net/minecraft/network/protocol/game/ClientboundGameEventPacket net/minecraft/network/protocol/game/ClientboundGameEventPacket +CL: net/minecraft/network/protocol/game/ClientboundGameEventPacket$Type net/minecraft/network/protocol/game/ClientboundGameEventPacket$Type +CL: net/minecraft/network/protocol/game/ClientboundHorseScreenOpenPacket net/minecraft/network/protocol/game/ClientboundHorseScreenOpenPacket +CL: net/minecraft/network/protocol/game/ClientboundHurtAnimationPacket net/minecraft/network/protocol/game/ClientboundHurtAnimationPacket +CL: net/minecraft/network/protocol/game/ClientboundInitializeBorderPacket net/minecraft/network/protocol/game/ClientboundInitializeBorderPacket +CL: net/minecraft/network/protocol/game/ClientboundKeepAlivePacket net/minecraft/network/protocol/game/ClientboundKeepAlivePacket +CL: net/minecraft/network/protocol/game/ClientboundLevelChunkPacketData net/minecraft/network/protocol/game/ClientboundLevelChunkPacketData +CL: net/minecraft/network/protocol/game/ClientboundLevelChunkPacketData$BlockEntityInfo net/minecraft/network/protocol/game/ClientboundLevelChunkPacketData$BlockEntityInfo +CL: net/minecraft/network/protocol/game/ClientboundLevelChunkPacketData$BlockEntityTagOutput net/minecraft/network/protocol/game/ClientboundLevelChunkPacketData$BlockEntityTagOutput +CL: net/minecraft/network/protocol/game/ClientboundLevelChunkWithLightPacket net/minecraft/network/protocol/game/ClientboundLevelChunkWithLightPacket +CL: net/minecraft/network/protocol/game/ClientboundLevelEventPacket net/minecraft/network/protocol/game/ClientboundLevelEventPacket +CL: net/minecraft/network/protocol/game/ClientboundLevelParticlesPacket net/minecraft/network/protocol/game/ClientboundLevelParticlesPacket +CL: net/minecraft/network/protocol/game/ClientboundLightUpdatePacket net/minecraft/network/protocol/game/ClientboundLightUpdatePacket +CL: net/minecraft/network/protocol/game/ClientboundLightUpdatePacketData net/minecraft/network/protocol/game/ClientboundLightUpdatePacketData +CL: net/minecraft/network/protocol/game/ClientboundLoginPacket net/minecraft/network/protocol/game/ClientboundLoginPacket +CL: net/minecraft/network/protocol/game/ClientboundMapItemDataPacket net/minecraft/network/protocol/game/ClientboundMapItemDataPacket +CL: net/minecraft/network/protocol/game/ClientboundMerchantOffersPacket net/minecraft/network/protocol/game/ClientboundMerchantOffersPacket +CL: net/minecraft/network/protocol/game/ClientboundMoveEntityPacket net/minecraft/network/protocol/game/ClientboundMoveEntityPacket +CL: net/minecraft/network/protocol/game/ClientboundMoveEntityPacket$Pos net/minecraft/network/protocol/game/ClientboundMoveEntityPacket$Pos +CL: net/minecraft/network/protocol/game/ClientboundMoveEntityPacket$PosRot net/minecraft/network/protocol/game/ClientboundMoveEntityPacket$PosRot +CL: net/minecraft/network/protocol/game/ClientboundMoveEntityPacket$Rot net/minecraft/network/protocol/game/ClientboundMoveEntityPacket$Rot +CL: net/minecraft/network/protocol/game/ClientboundMoveVehiclePacket net/minecraft/network/protocol/game/ClientboundMoveVehiclePacket +CL: net/minecraft/network/protocol/game/ClientboundOpenBookPacket net/minecraft/network/protocol/game/ClientboundOpenBookPacket +CL: net/minecraft/network/protocol/game/ClientboundOpenScreenPacket net/minecraft/network/protocol/game/ClientboundOpenScreenPacket +CL: net/minecraft/network/protocol/game/ClientboundOpenSignEditorPacket net/minecraft/network/protocol/game/ClientboundOpenSignEditorPacket +CL: net/minecraft/network/protocol/game/ClientboundPingPacket net/minecraft/network/protocol/game/ClientboundPingPacket +CL: net/minecraft/network/protocol/game/ClientboundPlaceGhostRecipePacket net/minecraft/network/protocol/game/ClientboundPlaceGhostRecipePacket +CL: net/minecraft/network/protocol/game/ClientboundPlayerAbilitiesPacket net/minecraft/network/protocol/game/ClientboundPlayerAbilitiesPacket +CL: net/minecraft/network/protocol/game/ClientboundPlayerChatPacket net/minecraft/network/protocol/game/ClientboundPlayerChatPacket +CL: net/minecraft/network/protocol/game/ClientboundPlayerCombatEndPacket net/minecraft/network/protocol/game/ClientboundPlayerCombatEndPacket +CL: net/minecraft/network/protocol/game/ClientboundPlayerCombatEnterPacket net/minecraft/network/protocol/game/ClientboundPlayerCombatEnterPacket +CL: net/minecraft/network/protocol/game/ClientboundPlayerCombatKillPacket net/minecraft/network/protocol/game/ClientboundPlayerCombatKillPacket +CL: net/minecraft/network/protocol/game/ClientboundPlayerInfoRemovePacket net/minecraft/network/protocol/game/ClientboundPlayerInfoRemovePacket +CL: net/minecraft/network/protocol/game/ClientboundPlayerInfoUpdatePacket net/minecraft/network/protocol/game/ClientboundPlayerInfoUpdatePacket +CL: net/minecraft/network/protocol/game/ClientboundPlayerInfoUpdatePacket$Action net/minecraft/network/protocol/game/ClientboundPlayerInfoUpdatePacket$Action +CL: net/minecraft/network/protocol/game/ClientboundPlayerInfoUpdatePacket$Action$Reader net/minecraft/network/protocol/game/ClientboundPlayerInfoUpdatePacket$Action$Reader +CL: net/minecraft/network/protocol/game/ClientboundPlayerInfoUpdatePacket$Action$Writer net/minecraft/network/protocol/game/ClientboundPlayerInfoUpdatePacket$Action$Writer +CL: net/minecraft/network/protocol/game/ClientboundPlayerInfoUpdatePacket$Entry net/minecraft/network/protocol/game/ClientboundPlayerInfoUpdatePacket$Entry +CL: net/minecraft/network/protocol/game/ClientboundPlayerInfoUpdatePacket$EntryBuilder net/minecraft/network/protocol/game/ClientboundPlayerInfoUpdatePacket$EntryBuilder +CL: net/minecraft/network/protocol/game/ClientboundPlayerLookAtPacket net/minecraft/network/protocol/game/ClientboundPlayerLookAtPacket +CL: net/minecraft/network/protocol/game/ClientboundPlayerPositionPacket net/minecraft/network/protocol/game/ClientboundPlayerPositionPacket +CL: net/minecraft/network/protocol/game/ClientboundRecipePacket net/minecraft/network/protocol/game/ClientboundRecipePacket +CL: net/minecraft/network/protocol/game/ClientboundRecipePacket$State net/minecraft/network/protocol/game/ClientboundRecipePacket$State +CL: net/minecraft/network/protocol/game/ClientboundRemoveEntitiesPacket net/minecraft/network/protocol/game/ClientboundRemoveEntitiesPacket +CL: net/minecraft/network/protocol/game/ClientboundRemoveMobEffectPacket net/minecraft/network/protocol/game/ClientboundRemoveMobEffectPacket +CL: net/minecraft/network/protocol/game/ClientboundResourcePackPacket net/minecraft/network/protocol/game/ClientboundResourcePackPacket +CL: net/minecraft/network/protocol/game/ClientboundRespawnPacket net/minecraft/network/protocol/game/ClientboundRespawnPacket +CL: net/minecraft/network/protocol/game/ClientboundRotateHeadPacket net/minecraft/network/protocol/game/ClientboundRotateHeadPacket +CL: net/minecraft/network/protocol/game/ClientboundSectionBlocksUpdatePacket net/minecraft/network/protocol/game/ClientboundSectionBlocksUpdatePacket +CL: net/minecraft/network/protocol/game/ClientboundSelectAdvancementsTabPacket net/minecraft/network/protocol/game/ClientboundSelectAdvancementsTabPacket +CL: net/minecraft/network/protocol/game/ClientboundServerDataPacket net/minecraft/network/protocol/game/ClientboundServerDataPacket +CL: net/minecraft/network/protocol/game/ClientboundSetActionBarTextPacket net/minecraft/network/protocol/game/ClientboundSetActionBarTextPacket +CL: net/minecraft/network/protocol/game/ClientboundSetBorderCenterPacket net/minecraft/network/protocol/game/ClientboundSetBorderCenterPacket +CL: net/minecraft/network/protocol/game/ClientboundSetBorderLerpSizePacket net/minecraft/network/protocol/game/ClientboundSetBorderLerpSizePacket +CL: net/minecraft/network/protocol/game/ClientboundSetBorderSizePacket net/minecraft/network/protocol/game/ClientboundSetBorderSizePacket +CL: net/minecraft/network/protocol/game/ClientboundSetBorderWarningDelayPacket net/minecraft/network/protocol/game/ClientboundSetBorderWarningDelayPacket +CL: net/minecraft/network/protocol/game/ClientboundSetBorderWarningDistancePacket net/minecraft/network/protocol/game/ClientboundSetBorderWarningDistancePacket +CL: net/minecraft/network/protocol/game/ClientboundSetCameraPacket net/minecraft/network/protocol/game/ClientboundSetCameraPacket +CL: net/minecraft/network/protocol/game/ClientboundSetCarriedItemPacket net/minecraft/network/protocol/game/ClientboundSetCarriedItemPacket +CL: net/minecraft/network/protocol/game/ClientboundSetChunkCacheCenterPacket net/minecraft/network/protocol/game/ClientboundSetChunkCacheCenterPacket +CL: net/minecraft/network/protocol/game/ClientboundSetChunkCacheRadiusPacket net/minecraft/network/protocol/game/ClientboundSetChunkCacheRadiusPacket +CL: net/minecraft/network/protocol/game/ClientboundSetDefaultSpawnPositionPacket net/minecraft/network/protocol/game/ClientboundSetDefaultSpawnPositionPacket +CL: net/minecraft/network/protocol/game/ClientboundSetDisplayObjectivePacket net/minecraft/network/protocol/game/ClientboundSetDisplayObjectivePacket +CL: net/minecraft/network/protocol/game/ClientboundSetEntityDataPacket net/minecraft/network/protocol/game/ClientboundSetEntityDataPacket +CL: net/minecraft/network/protocol/game/ClientboundSetEntityLinkPacket net/minecraft/network/protocol/game/ClientboundSetEntityLinkPacket +CL: net/minecraft/network/protocol/game/ClientboundSetEntityMotionPacket net/minecraft/network/protocol/game/ClientboundSetEntityMotionPacket +CL: net/minecraft/network/protocol/game/ClientboundSetEquipmentPacket net/minecraft/network/protocol/game/ClientboundSetEquipmentPacket +CL: net/minecraft/network/protocol/game/ClientboundSetExperiencePacket net/minecraft/network/protocol/game/ClientboundSetExperiencePacket +CL: net/minecraft/network/protocol/game/ClientboundSetHealthPacket net/minecraft/network/protocol/game/ClientboundSetHealthPacket +CL: net/minecraft/network/protocol/game/ClientboundSetObjectivePacket net/minecraft/network/protocol/game/ClientboundSetObjectivePacket +CL: net/minecraft/network/protocol/game/ClientboundSetPassengersPacket net/minecraft/network/protocol/game/ClientboundSetPassengersPacket +CL: net/minecraft/network/protocol/game/ClientboundSetPlayerTeamPacket net/minecraft/network/protocol/game/ClientboundSetPlayerTeamPacket +CL: net/minecraft/network/protocol/game/ClientboundSetPlayerTeamPacket$Action net/minecraft/network/protocol/game/ClientboundSetPlayerTeamPacket$Action +CL: net/minecraft/network/protocol/game/ClientboundSetPlayerTeamPacket$Parameters net/minecraft/network/protocol/game/ClientboundSetPlayerTeamPacket$Parameters +CL: net/minecraft/network/protocol/game/ClientboundSetScorePacket net/minecraft/network/protocol/game/ClientboundSetScorePacket +CL: net/minecraft/network/protocol/game/ClientboundSetSimulationDistancePacket net/minecraft/network/protocol/game/ClientboundSetSimulationDistancePacket +CL: net/minecraft/network/protocol/game/ClientboundSetSubtitleTextPacket net/minecraft/network/protocol/game/ClientboundSetSubtitleTextPacket +CL: net/minecraft/network/protocol/game/ClientboundSetTimePacket net/minecraft/network/protocol/game/ClientboundSetTimePacket +CL: net/minecraft/network/protocol/game/ClientboundSetTitleTextPacket net/minecraft/network/protocol/game/ClientboundSetTitleTextPacket +CL: net/minecraft/network/protocol/game/ClientboundSetTitlesAnimationPacket net/minecraft/network/protocol/game/ClientboundSetTitlesAnimationPacket +CL: net/minecraft/network/protocol/game/ClientboundSoundEntityPacket net/minecraft/network/protocol/game/ClientboundSoundEntityPacket +CL: net/minecraft/network/protocol/game/ClientboundSoundPacket net/minecraft/network/protocol/game/ClientboundSoundPacket +CL: net/minecraft/network/protocol/game/ClientboundStopSoundPacket net/minecraft/network/protocol/game/ClientboundStopSoundPacket +CL: net/minecraft/network/protocol/game/ClientboundSystemChatPacket net/minecraft/network/protocol/game/ClientboundSystemChatPacket +CL: net/minecraft/network/protocol/game/ClientboundTabListPacket net/minecraft/network/protocol/game/ClientboundTabListPacket +CL: net/minecraft/network/protocol/game/ClientboundTagQueryPacket net/minecraft/network/protocol/game/ClientboundTagQueryPacket +CL: net/minecraft/network/protocol/game/ClientboundTakeItemEntityPacket net/minecraft/network/protocol/game/ClientboundTakeItemEntityPacket +CL: net/minecraft/network/protocol/game/ClientboundTeleportEntityPacket net/minecraft/network/protocol/game/ClientboundTeleportEntityPacket +CL: net/minecraft/network/protocol/game/ClientboundUpdateAdvancementsPacket net/minecraft/network/protocol/game/ClientboundUpdateAdvancementsPacket +CL: net/minecraft/network/protocol/game/ClientboundUpdateAttributesPacket net/minecraft/network/protocol/game/ClientboundUpdateAttributesPacket +CL: net/minecraft/network/protocol/game/ClientboundUpdateAttributesPacket$AttributeSnapshot net/minecraft/network/protocol/game/ClientboundUpdateAttributesPacket$AttributeSnapshot +CL: net/minecraft/network/protocol/game/ClientboundUpdateEnabledFeaturesPacket net/minecraft/network/protocol/game/ClientboundUpdateEnabledFeaturesPacket +CL: net/minecraft/network/protocol/game/ClientboundUpdateMobEffectPacket net/minecraft/network/protocol/game/ClientboundUpdateMobEffectPacket +CL: net/minecraft/network/protocol/game/ClientboundUpdateRecipesPacket net/minecraft/network/protocol/game/ClientboundUpdateRecipesPacket +CL: net/minecraft/network/protocol/game/ClientboundUpdateTagsPacket net/minecraft/network/protocol/game/ClientboundUpdateTagsPacket +CL: net/minecraft/network/protocol/game/DebugEntityNameGenerator net/minecraft/network/protocol/game/DebugEntityNameGenerator +CL: net/minecraft/network/protocol/game/DebugPackets net/minecraft/network/protocol/game/DebugPackets +CL: net/minecraft/network/protocol/game/ServerGamePacketListener net/minecraft/network/protocol/game/ServerGamePacketListener +CL: net/minecraft/network/protocol/game/ServerPacketListener net/minecraft/network/protocol/game/ServerPacketListener +CL: net/minecraft/network/protocol/game/ServerboundAcceptTeleportationPacket net/minecraft/network/protocol/game/ServerboundAcceptTeleportationPacket +CL: net/minecraft/network/protocol/game/ServerboundBlockEntityTagQuery net/minecraft/network/protocol/game/ServerboundBlockEntityTagQuery +CL: net/minecraft/network/protocol/game/ServerboundChangeDifficultyPacket net/minecraft/network/protocol/game/ServerboundChangeDifficultyPacket +CL: net/minecraft/network/protocol/game/ServerboundChatAckPacket net/minecraft/network/protocol/game/ServerboundChatAckPacket +CL: net/minecraft/network/protocol/game/ServerboundChatCommandPacket net/minecraft/network/protocol/game/ServerboundChatCommandPacket +CL: net/minecraft/network/protocol/game/ServerboundChatPacket net/minecraft/network/protocol/game/ServerboundChatPacket +CL: net/minecraft/network/protocol/game/ServerboundChatSessionUpdatePacket net/minecraft/network/protocol/game/ServerboundChatSessionUpdatePacket +CL: net/minecraft/network/protocol/game/ServerboundClientCommandPacket net/minecraft/network/protocol/game/ServerboundClientCommandPacket +CL: net/minecraft/network/protocol/game/ServerboundClientCommandPacket$Action net/minecraft/network/protocol/game/ServerboundClientCommandPacket$Action +CL: net/minecraft/network/protocol/game/ServerboundClientInformationPacket net/minecraft/network/protocol/game/ServerboundClientInformationPacket +CL: net/minecraft/network/protocol/game/ServerboundCommandSuggestionPacket net/minecraft/network/protocol/game/ServerboundCommandSuggestionPacket +CL: net/minecraft/network/protocol/game/ServerboundContainerButtonClickPacket net/minecraft/network/protocol/game/ServerboundContainerButtonClickPacket +CL: net/minecraft/network/protocol/game/ServerboundContainerClickPacket net/minecraft/network/protocol/game/ServerboundContainerClickPacket +CL: net/minecraft/network/protocol/game/ServerboundContainerClosePacket net/minecraft/network/protocol/game/ServerboundContainerClosePacket +CL: net/minecraft/network/protocol/game/ServerboundCustomPayloadPacket net/minecraft/network/protocol/game/ServerboundCustomPayloadPacket +CL: net/minecraft/network/protocol/game/ServerboundEditBookPacket net/minecraft/network/protocol/game/ServerboundEditBookPacket +CL: net/minecraft/network/protocol/game/ServerboundEntityTagQuery net/minecraft/network/protocol/game/ServerboundEntityTagQuery +CL: net/minecraft/network/protocol/game/ServerboundInteractPacket net/minecraft/network/protocol/game/ServerboundInteractPacket +CL: net/minecraft/network/protocol/game/ServerboundInteractPacket$1 net/minecraft/network/protocol/game/ServerboundInteractPacket$1 +CL: net/minecraft/network/protocol/game/ServerboundInteractPacket$Action net/minecraft/network/protocol/game/ServerboundInteractPacket$Action +CL: net/minecraft/network/protocol/game/ServerboundInteractPacket$ActionType net/minecraft/network/protocol/game/ServerboundInteractPacket$ActionType +CL: net/minecraft/network/protocol/game/ServerboundInteractPacket$Handler net/minecraft/network/protocol/game/ServerboundInteractPacket$Handler +CL: net/minecraft/network/protocol/game/ServerboundInteractPacket$InteractionAction net/minecraft/network/protocol/game/ServerboundInteractPacket$InteractionAction +CL: net/minecraft/network/protocol/game/ServerboundInteractPacket$InteractionAtLocationAction net/minecraft/network/protocol/game/ServerboundInteractPacket$InteractionAtLocationAction +CL: net/minecraft/network/protocol/game/ServerboundJigsawGeneratePacket net/minecraft/network/protocol/game/ServerboundJigsawGeneratePacket +CL: net/minecraft/network/protocol/game/ServerboundKeepAlivePacket net/minecraft/network/protocol/game/ServerboundKeepAlivePacket +CL: net/minecraft/network/protocol/game/ServerboundLockDifficultyPacket net/minecraft/network/protocol/game/ServerboundLockDifficultyPacket +CL: net/minecraft/network/protocol/game/ServerboundMovePlayerPacket net/minecraft/network/protocol/game/ServerboundMovePlayerPacket +CL: net/minecraft/network/protocol/game/ServerboundMovePlayerPacket$Pos net/minecraft/network/protocol/game/ServerboundMovePlayerPacket$Pos +CL: net/minecraft/network/protocol/game/ServerboundMovePlayerPacket$PosRot net/minecraft/network/protocol/game/ServerboundMovePlayerPacket$PosRot +CL: net/minecraft/network/protocol/game/ServerboundMovePlayerPacket$Rot net/minecraft/network/protocol/game/ServerboundMovePlayerPacket$Rot +CL: net/minecraft/network/protocol/game/ServerboundMovePlayerPacket$StatusOnly net/minecraft/network/protocol/game/ServerboundMovePlayerPacket$StatusOnly +CL: net/minecraft/network/protocol/game/ServerboundMoveVehiclePacket net/minecraft/network/protocol/game/ServerboundMoveVehiclePacket +CL: net/minecraft/network/protocol/game/ServerboundPaddleBoatPacket net/minecraft/network/protocol/game/ServerboundPaddleBoatPacket +CL: net/minecraft/network/protocol/game/ServerboundPickItemPacket net/minecraft/network/protocol/game/ServerboundPickItemPacket +CL: net/minecraft/network/protocol/game/ServerboundPlaceRecipePacket net/minecraft/network/protocol/game/ServerboundPlaceRecipePacket +CL: net/minecraft/network/protocol/game/ServerboundPlayerAbilitiesPacket net/minecraft/network/protocol/game/ServerboundPlayerAbilitiesPacket +CL: net/minecraft/network/protocol/game/ServerboundPlayerActionPacket net/minecraft/network/protocol/game/ServerboundPlayerActionPacket +CL: net/minecraft/network/protocol/game/ServerboundPlayerActionPacket$Action net/minecraft/network/protocol/game/ServerboundPlayerActionPacket$Action +CL: net/minecraft/network/protocol/game/ServerboundPlayerCommandPacket net/minecraft/network/protocol/game/ServerboundPlayerCommandPacket +CL: net/minecraft/network/protocol/game/ServerboundPlayerCommandPacket$Action net/minecraft/network/protocol/game/ServerboundPlayerCommandPacket$Action +CL: net/minecraft/network/protocol/game/ServerboundPlayerInputPacket net/minecraft/network/protocol/game/ServerboundPlayerInputPacket +CL: net/minecraft/network/protocol/game/ServerboundPongPacket net/minecraft/network/protocol/game/ServerboundPongPacket +CL: net/minecraft/network/protocol/game/ServerboundRecipeBookChangeSettingsPacket net/minecraft/network/protocol/game/ServerboundRecipeBookChangeSettingsPacket +CL: net/minecraft/network/protocol/game/ServerboundRecipeBookSeenRecipePacket net/minecraft/network/protocol/game/ServerboundRecipeBookSeenRecipePacket +CL: net/minecraft/network/protocol/game/ServerboundRenameItemPacket net/minecraft/network/protocol/game/ServerboundRenameItemPacket +CL: net/minecraft/network/protocol/game/ServerboundResourcePackPacket net/minecraft/network/protocol/game/ServerboundResourcePackPacket +CL: net/minecraft/network/protocol/game/ServerboundResourcePackPacket$Action net/minecraft/network/protocol/game/ServerboundResourcePackPacket$Action +CL: net/minecraft/network/protocol/game/ServerboundSeenAdvancementsPacket net/minecraft/network/protocol/game/ServerboundSeenAdvancementsPacket +CL: net/minecraft/network/protocol/game/ServerboundSeenAdvancementsPacket$Action net/minecraft/network/protocol/game/ServerboundSeenAdvancementsPacket$Action +CL: net/minecraft/network/protocol/game/ServerboundSelectTradePacket net/minecraft/network/protocol/game/ServerboundSelectTradePacket +CL: net/minecraft/network/protocol/game/ServerboundSetBeaconPacket net/minecraft/network/protocol/game/ServerboundSetBeaconPacket +CL: net/minecraft/network/protocol/game/ServerboundSetCarriedItemPacket net/minecraft/network/protocol/game/ServerboundSetCarriedItemPacket +CL: net/minecraft/network/protocol/game/ServerboundSetCommandBlockPacket net/minecraft/network/protocol/game/ServerboundSetCommandBlockPacket +CL: net/minecraft/network/protocol/game/ServerboundSetCommandMinecartPacket net/minecraft/network/protocol/game/ServerboundSetCommandMinecartPacket +CL: net/minecraft/network/protocol/game/ServerboundSetCreativeModeSlotPacket net/minecraft/network/protocol/game/ServerboundSetCreativeModeSlotPacket +CL: net/minecraft/network/protocol/game/ServerboundSetJigsawBlockPacket net/minecraft/network/protocol/game/ServerboundSetJigsawBlockPacket +CL: net/minecraft/network/protocol/game/ServerboundSetStructureBlockPacket net/minecraft/network/protocol/game/ServerboundSetStructureBlockPacket +CL: net/minecraft/network/protocol/game/ServerboundSignUpdatePacket net/minecraft/network/protocol/game/ServerboundSignUpdatePacket +CL: net/minecraft/network/protocol/game/ServerboundSwingPacket net/minecraft/network/protocol/game/ServerboundSwingPacket +CL: net/minecraft/network/protocol/game/ServerboundTeleportToEntityPacket net/minecraft/network/protocol/game/ServerboundTeleportToEntityPacket +CL: net/minecraft/network/protocol/game/ServerboundUseItemOnPacket net/minecraft/network/protocol/game/ServerboundUseItemOnPacket +CL: net/minecraft/network/protocol/game/ServerboundUseItemPacket net/minecraft/network/protocol/game/ServerboundUseItemPacket +CL: net/minecraft/network/protocol/game/VecDeltaCodec net/minecraft/network/protocol/game/VecDeltaCodec +CL: net/minecraft/network/protocol/game/package-info net/minecraft/network/protocol/game/package-info +CL: net/minecraft/network/protocol/handshake/ClientIntentionPacket net/minecraft/network/protocol/handshake/ClientIntentionPacket +CL: net/minecraft/network/protocol/handshake/ServerHandshakePacketListener net/minecraft/network/protocol/handshake/ServerHandshakePacketListener +CL: net/minecraft/network/protocol/handshake/package-info net/minecraft/network/protocol/handshake/package-info +CL: net/minecraft/network/protocol/login/ClientLoginPacketListener net/minecraft/network/protocol/login/ClientLoginPacketListener +CL: net/minecraft/network/protocol/login/ClientboundCustomQueryPacket net/minecraft/network/protocol/login/ClientboundCustomQueryPacket +CL: net/minecraft/network/protocol/login/ClientboundGameProfilePacket net/minecraft/network/protocol/login/ClientboundGameProfilePacket +CL: net/minecraft/network/protocol/login/ClientboundHelloPacket net/minecraft/network/protocol/login/ClientboundHelloPacket +CL: net/minecraft/network/protocol/login/ClientboundLoginCompressionPacket net/minecraft/network/protocol/login/ClientboundLoginCompressionPacket +CL: net/minecraft/network/protocol/login/ClientboundLoginDisconnectPacket net/minecraft/network/protocol/login/ClientboundLoginDisconnectPacket +CL: net/minecraft/network/protocol/login/ServerLoginPacketListener net/minecraft/network/protocol/login/ServerLoginPacketListener +CL: net/minecraft/network/protocol/login/ServerboundCustomQueryPacket net/minecraft/network/protocol/login/ServerboundCustomQueryPacket +CL: net/minecraft/network/protocol/login/ServerboundHelloPacket net/minecraft/network/protocol/login/ServerboundHelloPacket +CL: net/minecraft/network/protocol/login/ServerboundKeyPacket net/minecraft/network/protocol/login/ServerboundKeyPacket +CL: net/minecraft/network/protocol/login/package-info net/minecraft/network/protocol/login/package-info +CL: net/minecraft/network/protocol/package-info net/minecraft/network/protocol/package-info +CL: net/minecraft/network/protocol/status/ClientStatusPacketListener net/minecraft/network/protocol/status/ClientStatusPacketListener +CL: net/minecraft/network/protocol/status/ClientboundPongResponsePacket net/minecraft/network/protocol/status/ClientboundPongResponsePacket +CL: net/minecraft/network/protocol/status/ClientboundStatusResponsePacket net/minecraft/network/protocol/status/ClientboundStatusResponsePacket +CL: net/minecraft/network/protocol/status/ServerStatus net/minecraft/network/protocol/status/ServerStatus +CL: net/minecraft/network/protocol/status/ServerStatus$Favicon net/minecraft/network/protocol/status/ServerStatus$Favicon +CL: net/minecraft/network/protocol/status/ServerStatus$Players net/minecraft/network/protocol/status/ServerStatus$Players +CL: net/minecraft/network/protocol/status/ServerStatus$Version net/minecraft/network/protocol/status/ServerStatus$Version +CL: net/minecraft/network/protocol/status/ServerStatusPacketListener net/minecraft/network/protocol/status/ServerStatusPacketListener +CL: net/minecraft/network/protocol/status/ServerboundPingRequestPacket net/minecraft/network/protocol/status/ServerboundPingRequestPacket +CL: net/minecraft/network/protocol/status/ServerboundStatusRequestPacket net/minecraft/network/protocol/status/ServerboundStatusRequestPacket +CL: net/minecraft/network/protocol/status/package-info net/minecraft/network/protocol/status/package-info +CL: net/minecraft/network/syncher/EntityDataAccessor net/minecraft/network/syncher/EntityDataAccessor +CL: net/minecraft/network/syncher/EntityDataSerializer net/minecraft/network/syncher/EntityDataSerializer +CL: net/minecraft/network/syncher/EntityDataSerializer$1 net/minecraft/network/syncher/EntityDataSerializer$1 +CL: net/minecraft/network/syncher/EntityDataSerializer$ForValueType net/minecraft/network/syncher/EntityDataSerializer$ForValueType +CL: net/minecraft/network/syncher/EntityDataSerializers net/minecraft/network/syncher/EntityDataSerializers +CL: net/minecraft/network/syncher/EntityDataSerializers$1 net/minecraft/network/syncher/EntityDataSerializers$1 +CL: net/minecraft/network/syncher/EntityDataSerializers$2 net/minecraft/network/syncher/EntityDataSerializers$2 +CL: net/minecraft/network/syncher/EntityDataSerializers$3 net/minecraft/network/syncher/EntityDataSerializers$3 +CL: net/minecraft/network/syncher/EntityDataSerializers$4 net/minecraft/network/syncher/EntityDataSerializers$4 +CL: net/minecraft/network/syncher/EntityDataSerializers$5 net/minecraft/network/syncher/EntityDataSerializers$5 +CL: net/minecraft/network/syncher/EntityDataSerializers$6 net/minecraft/network/syncher/EntityDataSerializers$6 +CL: net/minecraft/network/syncher/EntityDataSerializers$7 net/minecraft/network/syncher/EntityDataSerializers$7 +CL: net/minecraft/network/syncher/SynchedEntityData net/minecraft/network/syncher/SynchedEntityData +CL: net/minecraft/network/syncher/SynchedEntityData$DataItem net/minecraft/network/syncher/SynchedEntityData$DataItem +CL: net/minecraft/network/syncher/SynchedEntityData$DataValue net/minecraft/network/syncher/SynchedEntityData$DataValue +CL: net/minecraft/network/syncher/package-info net/minecraft/network/syncher/package-info +CL: net/minecraft/obfuscate/DontObfuscate net/minecraft/obfuscate/DontObfuscate +CL: net/minecraft/obfuscate/package-info net/minecraft/obfuscate/package-info +CL: net/minecraft/package-info net/minecraft/package-info +CL: net/minecraft/realms/DisconnectedRealmsScreen net/minecraft/realms/DisconnectedRealmsScreen +CL: net/minecraft/realms/RealmsConnect net/minecraft/realms/RealmsConnect +CL: net/minecraft/realms/RealmsConnect$1 net/minecraft/realms/RealmsConnect$1 +CL: net/minecraft/realms/RealmsLabel net/minecraft/realms/RealmsLabel +CL: net/minecraft/realms/RealmsObjectSelectionList net/minecraft/realms/RealmsObjectSelectionList +CL: net/minecraft/realms/RealmsScreen net/minecraft/realms/RealmsScreen +CL: net/minecraft/realms/RepeatedNarrator net/minecraft/realms/RepeatedNarrator +CL: net/minecraft/realms/RepeatedNarrator$Params net/minecraft/realms/RepeatedNarrator$Params +CL: net/minecraft/realms/package-info net/minecraft/realms/package-info +CL: net/minecraft/recipebook/PlaceRecipe net/minecraft/recipebook/PlaceRecipe +CL: net/minecraft/recipebook/ServerPlaceRecipe net/minecraft/recipebook/ServerPlaceRecipe +CL: net/minecraft/recipebook/package-info net/minecraft/recipebook/package-info +CL: net/minecraft/resources/DelegatingOps net/minecraft/resources/DelegatingOps +CL: net/minecraft/resources/FileToIdConverter net/minecraft/resources/FileToIdConverter +CL: net/minecraft/resources/HolderSetCodec net/minecraft/resources/HolderSetCodec +CL: net/minecraft/resources/RegistryDataLoader net/minecraft/resources/RegistryDataLoader +CL: net/minecraft/resources/RegistryDataLoader$1 net/minecraft/resources/RegistryDataLoader$1 +CL: net/minecraft/resources/RegistryDataLoader$Loader net/minecraft/resources/RegistryDataLoader$Loader +CL: net/minecraft/resources/RegistryDataLoader$RegistryData net/minecraft/resources/RegistryDataLoader$RegistryData +CL: net/minecraft/resources/RegistryFileCodec net/minecraft/resources/RegistryFileCodec +CL: net/minecraft/resources/RegistryFixedCodec net/minecraft/resources/RegistryFixedCodec +CL: net/minecraft/resources/RegistryOps net/minecraft/resources/RegistryOps +CL: net/minecraft/resources/RegistryOps$1 net/minecraft/resources/RegistryOps$1 +CL: net/minecraft/resources/RegistryOps$2 net/minecraft/resources/RegistryOps$2 +CL: net/minecraft/resources/RegistryOps$RegistryInfo net/minecraft/resources/RegistryOps$RegistryInfo +CL: net/minecraft/resources/RegistryOps$RegistryInfoLookup net/minecraft/resources/RegistryOps$RegistryInfoLookup +CL: net/minecraft/resources/ResourceKey net/minecraft/resources/ResourceKey +CL: net/minecraft/resources/ResourceKey$InternKey net/minecraft/resources/ResourceKey$InternKey +CL: net/minecraft/resources/ResourceLocation net/minecraft/resources/ResourceLocation +CL: net/minecraft/resources/ResourceLocation$Dummy net/minecraft/resources/ResourceLocation$Dummy +CL: net/minecraft/resources/ResourceLocation$Serializer net/minecraft/resources/ResourceLocation$Serializer +CL: net/minecraft/resources/package-info net/minecraft/resources/package-info +CL: net/minecraft/server/Bootstrap net/minecraft/server/Bootstrap +CL: net/minecraft/server/Bootstrap$1 net/minecraft/server/Bootstrap$1 +CL: net/minecraft/server/ChainedJsonException net/minecraft/server/ChainedJsonException +CL: net/minecraft/server/ChainedJsonException$Entry net/minecraft/server/ChainedJsonException$Entry +CL: net/minecraft/server/ConsoleInput net/minecraft/server/ConsoleInput +CL: net/minecraft/server/DebugLoggedPrintStream net/minecraft/server/DebugLoggedPrintStream +CL: net/minecraft/server/Eula net/minecraft/server/Eula +CL: net/minecraft/server/LoggedPrintStream net/minecraft/server/LoggedPrintStream +CL: net/minecraft/server/Main net/minecraft/server/Main +CL: net/minecraft/server/Main$1 net/minecraft/server/Main$1 +CL: net/minecraft/server/MinecraftServer net/minecraft/server/MinecraftServer +CL: net/minecraft/server/MinecraftServer$1 net/minecraft/server/MinecraftServer$1 +CL: net/minecraft/server/MinecraftServer$ReloadableResources net/minecraft/server/MinecraftServer$ReloadableResources +CL: net/minecraft/server/MinecraftServer$ServerResourcePackInfo net/minecraft/server/MinecraftServer$ServerResourcePackInfo +CL: net/minecraft/server/MinecraftServer$TimeProfiler net/minecraft/server/MinecraftServer$TimeProfiler +CL: net/minecraft/server/MinecraftServer$TimeProfiler$1 net/minecraft/server/MinecraftServer$TimeProfiler$1 +CL: net/minecraft/server/PlayerAdvancements net/minecraft/server/PlayerAdvancements +CL: net/minecraft/server/PlayerAdvancements$1 net/minecraft/server/PlayerAdvancements$1 +CL: net/minecraft/server/RegistryLayer net/minecraft/server/RegistryLayer +CL: net/minecraft/server/ReloadableServerResources net/minecraft/server/ReloadableServerResources +CL: net/minecraft/server/RunningOnDifferentThreadException net/minecraft/server/RunningOnDifferentThreadException +CL: net/minecraft/server/ServerAdvancementManager net/minecraft/server/ServerAdvancementManager +CL: net/minecraft/server/ServerFunctionLibrary net/minecraft/server/ServerFunctionLibrary +CL: net/minecraft/server/ServerFunctionManager net/minecraft/server/ServerFunctionManager +CL: net/minecraft/server/ServerFunctionManager$ExecutionContext net/minecraft/server/ServerFunctionManager$ExecutionContext +CL: net/minecraft/server/ServerFunctionManager$ExecutionContext$AbortingReturnValueConsumer net/minecraft/server/ServerFunctionManager$ExecutionContext$AbortingReturnValueConsumer +CL: net/minecraft/server/ServerFunctionManager$QueuedCommand net/minecraft/server/ServerFunctionManager$QueuedCommand +CL: net/minecraft/server/ServerFunctionManager$TraceCallbacks net/minecraft/server/ServerFunctionManager$TraceCallbacks +CL: net/minecraft/server/ServerInterface net/minecraft/server/ServerInterface +CL: net/minecraft/server/ServerScoreboard net/minecraft/server/ServerScoreboard +CL: net/minecraft/server/ServerScoreboard$Method net/minecraft/server/ServerScoreboard$Method +CL: net/minecraft/server/Services net/minecraft/server/Services +CL: net/minecraft/server/TickTask net/minecraft/server/TickTask +CL: net/minecraft/server/WorldLoader net/minecraft/server/WorldLoader +CL: net/minecraft/server/WorldLoader$DataLoadContext net/minecraft/server/WorldLoader$DataLoadContext +CL: net/minecraft/server/WorldLoader$DataLoadOutput net/minecraft/server/WorldLoader$DataLoadOutput +CL: net/minecraft/server/WorldLoader$InitConfig net/minecraft/server/WorldLoader$InitConfig +CL: net/minecraft/server/WorldLoader$PackConfig net/minecraft/server/WorldLoader$PackConfig +CL: net/minecraft/server/WorldLoader$ResultFactory net/minecraft/server/WorldLoader$ResultFactory +CL: net/minecraft/server/WorldLoader$WorldDataSupplier net/minecraft/server/WorldLoader$WorldDataSupplier +CL: net/minecraft/server/WorldStem net/minecraft/server/WorldStem +CL: net/minecraft/server/advancements/AdvancementVisibilityEvaluator net/minecraft/server/advancements/AdvancementVisibilityEvaluator +CL: net/minecraft/server/advancements/AdvancementVisibilityEvaluator$Output net/minecraft/server/advancements/AdvancementVisibilityEvaluator$Output +CL: net/minecraft/server/advancements/AdvancementVisibilityEvaluator$VisibilityRule net/minecraft/server/advancements/AdvancementVisibilityEvaluator$VisibilityRule +CL: net/minecraft/server/advancements/package-info net/minecraft/server/advancements/package-info +CL: net/minecraft/server/bossevents/CustomBossEvent net/minecraft/server/bossevents/CustomBossEvent +CL: net/minecraft/server/bossevents/CustomBossEvents net/minecraft/server/bossevents/CustomBossEvents +CL: net/minecraft/server/bossevents/package-info net/minecraft/server/bossevents/package-info +CL: net/minecraft/server/chase/ChaseClient net/minecraft/server/chase/ChaseClient +CL: net/minecraft/server/chase/ChaseClient$TeleportTarget net/minecraft/server/chase/ChaseClient$TeleportTarget +CL: net/minecraft/server/chase/ChaseServer net/minecraft/server/chase/ChaseServer +CL: net/minecraft/server/chase/ChaseServer$PlayerPosition net/minecraft/server/chase/ChaseServer$PlayerPosition +CL: net/minecraft/server/chase/package-info net/minecraft/server/chase/package-info +CL: net/minecraft/server/commands/AdvancementCommands net/minecraft/server/commands/AdvancementCommands +CL: net/minecraft/server/commands/AdvancementCommands$Action net/minecraft/server/commands/AdvancementCommands$Action +CL: net/minecraft/server/commands/AdvancementCommands$Action$1 net/minecraft/server/commands/AdvancementCommands$Action$1 +CL: net/minecraft/server/commands/AdvancementCommands$Action$2 net/minecraft/server/commands/AdvancementCommands$Action$2 +CL: net/minecraft/server/commands/AdvancementCommands$Mode net/minecraft/server/commands/AdvancementCommands$Mode +CL: net/minecraft/server/commands/AttributeCommand net/minecraft/server/commands/AttributeCommand +CL: net/minecraft/server/commands/BanIpCommands net/minecraft/server/commands/BanIpCommands +CL: net/minecraft/server/commands/BanListCommands net/minecraft/server/commands/BanListCommands +CL: net/minecraft/server/commands/BanPlayerCommands net/minecraft/server/commands/BanPlayerCommands +CL: net/minecraft/server/commands/BossBarCommands net/minecraft/server/commands/BossBarCommands +CL: net/minecraft/server/commands/ChaseCommand net/minecraft/server/commands/ChaseCommand +CL: net/minecraft/server/commands/ClearInventoryCommands net/minecraft/server/commands/ClearInventoryCommands +CL: net/minecraft/server/commands/CloneCommands net/minecraft/server/commands/CloneCommands +CL: net/minecraft/server/commands/CloneCommands$CloneBlockInfo net/minecraft/server/commands/CloneCommands$CloneBlockInfo +CL: net/minecraft/server/commands/CloneCommands$CommandFunction net/minecraft/server/commands/CloneCommands$CommandFunction +CL: net/minecraft/server/commands/CloneCommands$DimensionAndPosition net/minecraft/server/commands/CloneCommands$DimensionAndPosition +CL: net/minecraft/server/commands/CloneCommands$Mode net/minecraft/server/commands/CloneCommands$Mode +CL: net/minecraft/server/commands/DamageCommand net/minecraft/server/commands/DamageCommand +CL: net/minecraft/server/commands/DataPackCommand net/minecraft/server/commands/DataPackCommand +CL: net/minecraft/server/commands/DataPackCommand$Inserter net/minecraft/server/commands/DataPackCommand$Inserter +CL: net/minecraft/server/commands/DeOpCommands net/minecraft/server/commands/DeOpCommands +CL: net/minecraft/server/commands/DebugCommand net/minecraft/server/commands/DebugCommand +CL: net/minecraft/server/commands/DebugCommand$Tracer net/minecraft/server/commands/DebugCommand$Tracer +CL: net/minecraft/server/commands/DebugMobSpawningCommand net/minecraft/server/commands/DebugMobSpawningCommand +CL: net/minecraft/server/commands/DebugPathCommand net/minecraft/server/commands/DebugPathCommand +CL: net/minecraft/server/commands/DefaultGameModeCommands net/minecraft/server/commands/DefaultGameModeCommands +CL: net/minecraft/server/commands/DifficultyCommand net/minecraft/server/commands/DifficultyCommand +CL: net/minecraft/server/commands/EffectCommands net/minecraft/server/commands/EffectCommands +CL: net/minecraft/server/commands/EmoteCommands net/minecraft/server/commands/EmoteCommands +CL: net/minecraft/server/commands/EnchantCommand net/minecraft/server/commands/EnchantCommand +CL: net/minecraft/server/commands/ExecuteCommand net/minecraft/server/commands/ExecuteCommand +CL: net/minecraft/server/commands/ExecuteCommand$CommandNumericPredicate net/minecraft/server/commands/ExecuteCommand$CommandNumericPredicate +CL: net/minecraft/server/commands/ExecuteCommand$CommandPredicate net/minecraft/server/commands/ExecuteCommand$CommandPredicate +CL: net/minecraft/server/commands/ExperienceCommand net/minecraft/server/commands/ExperienceCommand +CL: net/minecraft/server/commands/ExperienceCommand$Type net/minecraft/server/commands/ExperienceCommand$Type +CL: net/minecraft/server/commands/FillBiomeCommand net/minecraft/server/commands/FillBiomeCommand +CL: net/minecraft/server/commands/FillCommand net/minecraft/server/commands/FillCommand +CL: net/minecraft/server/commands/FillCommand$Mode net/minecraft/server/commands/FillCommand$Mode +CL: net/minecraft/server/commands/ForceLoadCommand net/minecraft/server/commands/ForceLoadCommand +CL: net/minecraft/server/commands/FunctionCommand net/minecraft/server/commands/FunctionCommand +CL: net/minecraft/server/commands/GameModeCommand net/minecraft/server/commands/GameModeCommand +CL: net/minecraft/server/commands/GameRuleCommand net/minecraft/server/commands/GameRuleCommand +CL: net/minecraft/server/commands/GameRuleCommand$1 net/minecraft/server/commands/GameRuleCommand$1 +CL: net/minecraft/server/commands/GiveCommand net/minecraft/server/commands/GiveCommand +CL: net/minecraft/server/commands/HelpCommand net/minecraft/server/commands/HelpCommand +CL: net/minecraft/server/commands/ItemCommands net/minecraft/server/commands/ItemCommands +CL: net/minecraft/server/commands/JfrCommand net/minecraft/server/commands/JfrCommand +CL: net/minecraft/server/commands/KickCommand net/minecraft/server/commands/KickCommand +CL: net/minecraft/server/commands/KillCommand net/minecraft/server/commands/KillCommand +CL: net/minecraft/server/commands/ListPlayersCommand net/minecraft/server/commands/ListPlayersCommand +CL: net/minecraft/server/commands/LocateCommand net/minecraft/server/commands/LocateCommand +CL: net/minecraft/server/commands/LootCommand net/minecraft/server/commands/LootCommand +CL: net/minecraft/server/commands/LootCommand$Callback net/minecraft/server/commands/LootCommand$Callback +CL: net/minecraft/server/commands/LootCommand$DropConsumer net/minecraft/server/commands/LootCommand$DropConsumer +CL: net/minecraft/server/commands/LootCommand$TailProvider net/minecraft/server/commands/LootCommand$TailProvider +CL: net/minecraft/server/commands/MsgCommand net/minecraft/server/commands/MsgCommand +CL: net/minecraft/server/commands/OpCommand net/minecraft/server/commands/OpCommand +CL: net/minecraft/server/commands/PardonCommand net/minecraft/server/commands/PardonCommand +CL: net/minecraft/server/commands/PardonIpCommand net/minecraft/server/commands/PardonIpCommand +CL: net/minecraft/server/commands/ParticleCommand net/minecraft/server/commands/ParticleCommand +CL: net/minecraft/server/commands/PerfCommand net/minecraft/server/commands/PerfCommand +CL: net/minecraft/server/commands/PlaceCommand net/minecraft/server/commands/PlaceCommand +CL: net/minecraft/server/commands/PlaySoundCommand net/minecraft/server/commands/PlaySoundCommand +CL: net/minecraft/server/commands/PublishCommand net/minecraft/server/commands/PublishCommand +CL: net/minecraft/server/commands/RaidCommand net/minecraft/server/commands/RaidCommand +CL: net/minecraft/server/commands/RecipeCommand net/minecraft/server/commands/RecipeCommand +CL: net/minecraft/server/commands/ReloadCommand net/minecraft/server/commands/ReloadCommand +CL: net/minecraft/server/commands/ResetChunksCommand net/minecraft/server/commands/ResetChunksCommand +CL: net/minecraft/server/commands/ReturnCommand net/minecraft/server/commands/ReturnCommand +CL: net/minecraft/server/commands/RideCommand net/minecraft/server/commands/RideCommand +CL: net/minecraft/server/commands/SaveAllCommand net/minecraft/server/commands/SaveAllCommand +CL: net/minecraft/server/commands/SaveOffCommand net/minecraft/server/commands/SaveOffCommand +CL: net/minecraft/server/commands/SaveOnCommand net/minecraft/server/commands/SaveOnCommand +CL: net/minecraft/server/commands/SayCommand net/minecraft/server/commands/SayCommand +CL: net/minecraft/server/commands/ScheduleCommand net/minecraft/server/commands/ScheduleCommand +CL: net/minecraft/server/commands/ScoreboardCommand net/minecraft/server/commands/ScoreboardCommand +CL: net/minecraft/server/commands/SeedCommand net/minecraft/server/commands/SeedCommand +CL: net/minecraft/server/commands/SetBlockCommand net/minecraft/server/commands/SetBlockCommand +CL: net/minecraft/server/commands/SetBlockCommand$Filter net/minecraft/server/commands/SetBlockCommand$Filter +CL: net/minecraft/server/commands/SetBlockCommand$Mode net/minecraft/server/commands/SetBlockCommand$Mode +CL: net/minecraft/server/commands/SetPlayerIdleTimeoutCommand net/minecraft/server/commands/SetPlayerIdleTimeoutCommand +CL: net/minecraft/server/commands/SetSpawnCommand net/minecraft/server/commands/SetSpawnCommand +CL: net/minecraft/server/commands/SetWorldSpawnCommand net/minecraft/server/commands/SetWorldSpawnCommand +CL: net/minecraft/server/commands/SpawnArmorTrimsCommand net/minecraft/server/commands/SpawnArmorTrimsCommand +CL: net/minecraft/server/commands/SpectateCommand net/minecraft/server/commands/SpectateCommand +CL: net/minecraft/server/commands/SpreadPlayersCommand net/minecraft/server/commands/SpreadPlayersCommand +CL: net/minecraft/server/commands/SpreadPlayersCommand$Position net/minecraft/server/commands/SpreadPlayersCommand$Position +CL: net/minecraft/server/commands/StopCommand net/minecraft/server/commands/StopCommand +CL: net/minecraft/server/commands/StopSoundCommand net/minecraft/server/commands/StopSoundCommand +CL: net/minecraft/server/commands/SummonCommand net/minecraft/server/commands/SummonCommand +CL: net/minecraft/server/commands/TagCommand net/minecraft/server/commands/TagCommand +CL: net/minecraft/server/commands/TeamCommand net/minecraft/server/commands/TeamCommand +CL: net/minecraft/server/commands/TeamMsgCommand net/minecraft/server/commands/TeamMsgCommand +CL: net/minecraft/server/commands/TeleportCommand net/minecraft/server/commands/TeleportCommand +CL: net/minecraft/server/commands/TeleportCommand$LookAt net/minecraft/server/commands/TeleportCommand$LookAt +CL: net/minecraft/server/commands/TellRawCommand net/minecraft/server/commands/TellRawCommand +CL: net/minecraft/server/commands/TimeCommand net/minecraft/server/commands/TimeCommand +CL: net/minecraft/server/commands/TitleCommand net/minecraft/server/commands/TitleCommand +CL: net/minecraft/server/commands/TriggerCommand net/minecraft/server/commands/TriggerCommand +CL: net/minecraft/server/commands/WardenSpawnTrackerCommand net/minecraft/server/commands/WardenSpawnTrackerCommand +CL: net/minecraft/server/commands/WeatherCommand net/minecraft/server/commands/WeatherCommand +CL: net/minecraft/server/commands/WhitelistCommand net/minecraft/server/commands/WhitelistCommand +CL: net/minecraft/server/commands/WorldBorderCommand net/minecraft/server/commands/WorldBorderCommand +CL: net/minecraft/server/commands/data/BlockDataAccessor net/minecraft/server/commands/data/BlockDataAccessor +CL: net/minecraft/server/commands/data/BlockDataAccessor$1 net/minecraft/server/commands/data/BlockDataAccessor$1 +CL: net/minecraft/server/commands/data/DataAccessor net/minecraft/server/commands/data/DataAccessor +CL: net/minecraft/server/commands/data/DataCommands net/minecraft/server/commands/data/DataCommands +CL: net/minecraft/server/commands/data/DataCommands$DataManipulator net/minecraft/server/commands/data/DataCommands$DataManipulator +CL: net/minecraft/server/commands/data/DataCommands$DataManipulatorDecorator net/minecraft/server/commands/data/DataCommands$DataManipulatorDecorator +CL: net/minecraft/server/commands/data/DataCommands$DataProvider net/minecraft/server/commands/data/DataCommands$DataProvider +CL: net/minecraft/server/commands/data/DataCommands$StringProcessor net/minecraft/server/commands/data/DataCommands$StringProcessor +CL: net/minecraft/server/commands/data/EntityDataAccessor net/minecraft/server/commands/data/EntityDataAccessor +CL: net/minecraft/server/commands/data/EntityDataAccessor$1 net/minecraft/server/commands/data/EntityDataAccessor$1 +CL: net/minecraft/server/commands/data/StorageDataAccessor net/minecraft/server/commands/data/StorageDataAccessor +CL: net/minecraft/server/commands/data/StorageDataAccessor$1 net/minecraft/server/commands/data/StorageDataAccessor$1 +CL: net/minecraft/server/commands/data/package-info net/minecraft/server/commands/data/package-info +CL: net/minecraft/server/commands/package-info net/minecraft/server/commands/package-info +CL: net/minecraft/server/dedicated/DedicatedPlayerList net/minecraft/server/dedicated/DedicatedPlayerList +CL: net/minecraft/server/dedicated/DedicatedServer net/minecraft/server/dedicated/DedicatedServer +CL: net/minecraft/server/dedicated/DedicatedServer$1 net/minecraft/server/dedicated/DedicatedServer$1 +CL: net/minecraft/server/dedicated/DedicatedServerProperties net/minecraft/server/dedicated/DedicatedServerProperties +CL: net/minecraft/server/dedicated/DedicatedServerProperties$WorldDimensionData net/minecraft/server/dedicated/DedicatedServerProperties$WorldDimensionData +CL: net/minecraft/server/dedicated/DedicatedServerSettings net/minecraft/server/dedicated/DedicatedServerSettings +CL: net/minecraft/server/dedicated/ServerWatchdog net/minecraft/server/dedicated/ServerWatchdog +CL: net/minecraft/server/dedicated/ServerWatchdog$1 net/minecraft/server/dedicated/ServerWatchdog$1 +CL: net/minecraft/server/dedicated/Settings net/minecraft/server/dedicated/Settings +CL: net/minecraft/server/dedicated/Settings$MutableValue net/minecraft/server/dedicated/Settings$MutableValue +CL: net/minecraft/server/dedicated/package-info net/minecraft/server/dedicated/package-info +CL: net/minecraft/server/gui/MinecraftServerGui net/minecraft/server/gui/MinecraftServerGui +CL: net/minecraft/server/gui/MinecraftServerGui$1 net/minecraft/server/gui/MinecraftServerGui$1 +CL: net/minecraft/server/gui/MinecraftServerGui$2 net/minecraft/server/gui/MinecraftServerGui$2 +CL: net/minecraft/server/gui/PlayerListComponent net/minecraft/server/gui/PlayerListComponent +CL: net/minecraft/server/gui/StatsComponent net/minecraft/server/gui/StatsComponent +CL: net/minecraft/server/gui/package-info net/minecraft/server/gui/package-info +CL: net/minecraft/server/level/BlockDestructionProgress net/minecraft/server/level/BlockDestructionProgress +CL: net/minecraft/server/level/ChunkHolder net/minecraft/server/level/ChunkHolder +CL: net/minecraft/server/level/ChunkHolder$1 net/minecraft/server/level/ChunkHolder$1 +CL: net/minecraft/server/level/ChunkHolder$ChunkLoadingFailure net/minecraft/server/level/ChunkHolder$ChunkLoadingFailure +CL: net/minecraft/server/level/ChunkHolder$ChunkLoadingFailure$1 net/minecraft/server/level/ChunkHolder$ChunkLoadingFailure$1 +CL: net/minecraft/server/level/ChunkHolder$ChunkSaveDebug net/minecraft/server/level/ChunkHolder$ChunkSaveDebug +CL: net/minecraft/server/level/ChunkHolder$LevelChangeListener net/minecraft/server/level/ChunkHolder$LevelChangeListener +CL: net/minecraft/server/level/ChunkHolder$PlayerProvider net/minecraft/server/level/ChunkHolder$PlayerProvider +CL: net/minecraft/server/level/ChunkLevel net/minecraft/server/level/ChunkLevel +CL: net/minecraft/server/level/ChunkLevel$1 net/minecraft/server/level/ChunkLevel$1 +CL: net/minecraft/server/level/ChunkMap net/minecraft/server/level/ChunkMap +CL: net/minecraft/server/level/ChunkMap$1 net/minecraft/server/level/ChunkMap$1 +CL: net/minecraft/server/level/ChunkMap$2 net/minecraft/server/level/ChunkMap$2 +CL: net/minecraft/server/level/ChunkMap$DistanceManager net/minecraft/server/level/ChunkMap$DistanceManager +CL: net/minecraft/server/level/ChunkMap$TrackedEntity net/minecraft/server/level/ChunkMap$TrackedEntity +CL: net/minecraft/server/level/ChunkTaskPriorityQueue net/minecraft/server/level/ChunkTaskPriorityQueue +CL: net/minecraft/server/level/ChunkTaskPriorityQueueSorter net/minecraft/server/level/ChunkTaskPriorityQueueSorter +CL: net/minecraft/server/level/ChunkTaskPriorityQueueSorter$Message net/minecraft/server/level/ChunkTaskPriorityQueueSorter$Message +CL: net/minecraft/server/level/ChunkTaskPriorityQueueSorter$Release net/minecraft/server/level/ChunkTaskPriorityQueueSorter$Release +CL: net/minecraft/server/level/ChunkTracker net/minecraft/server/level/ChunkTracker +CL: net/minecraft/server/level/ColumnPos net/minecraft/server/level/ColumnPos +CL: net/minecraft/server/level/DemoMode net/minecraft/server/level/DemoMode +CL: net/minecraft/server/level/DistanceManager net/minecraft/server/level/DistanceManager +CL: net/minecraft/server/level/DistanceManager$ChunkTicketTracker net/minecraft/server/level/DistanceManager$ChunkTicketTracker +CL: net/minecraft/server/level/DistanceManager$FixedPlayerDistanceChunkTracker net/minecraft/server/level/DistanceManager$FixedPlayerDistanceChunkTracker +CL: net/minecraft/server/level/DistanceManager$PlayerTicketTracker net/minecraft/server/level/DistanceManager$PlayerTicketTracker +CL: net/minecraft/server/level/FullChunkStatus net/minecraft/server/level/FullChunkStatus +CL: net/minecraft/server/level/PlayerMap net/minecraft/server/level/PlayerMap +CL: net/minecraft/server/level/PlayerRespawnLogic net/minecraft/server/level/PlayerRespawnLogic +CL: net/minecraft/server/level/SectionTracker net/minecraft/server/level/SectionTracker +CL: net/minecraft/server/level/ServerBossEvent net/minecraft/server/level/ServerBossEvent +CL: net/minecraft/server/level/ServerChunkCache net/minecraft/server/level/ServerChunkCache +CL: net/minecraft/server/level/ServerChunkCache$ChunkAndHolder net/minecraft/server/level/ServerChunkCache$ChunkAndHolder +CL: net/minecraft/server/level/ServerChunkCache$MainThreadExecutor net/minecraft/server/level/ServerChunkCache$MainThreadExecutor +CL: net/minecraft/server/level/ServerEntity net/minecraft/server/level/ServerEntity +CL: net/minecraft/server/level/ServerLevel net/minecraft/server/level/ServerLevel +CL: net/minecraft/server/level/ServerLevel$EntityCallbacks net/minecraft/server/level/ServerLevel$EntityCallbacks +CL: net/minecraft/server/level/ServerPlayer net/minecraft/server/level/ServerPlayer +CL: net/minecraft/server/level/ServerPlayer$1 net/minecraft/server/level/ServerPlayer$1 +CL: net/minecraft/server/level/ServerPlayer$2 net/minecraft/server/level/ServerPlayer$2 +CL: net/minecraft/server/level/ServerPlayerGameMode net/minecraft/server/level/ServerPlayerGameMode +CL: net/minecraft/server/level/ThreadedLevelLightEngine net/minecraft/server/level/ThreadedLevelLightEngine +CL: net/minecraft/server/level/ThreadedLevelLightEngine$TaskType net/minecraft/server/level/ThreadedLevelLightEngine$TaskType +CL: net/minecraft/server/level/Ticket net/minecraft/server/level/Ticket +CL: net/minecraft/server/level/TicketType net/minecraft/server/level/TicketType +CL: net/minecraft/server/level/TickingTracker net/minecraft/server/level/TickingTracker +CL: net/minecraft/server/level/WorldGenRegion net/minecraft/server/level/WorldGenRegion +CL: net/minecraft/server/level/package-info net/minecraft/server/level/package-info +CL: net/minecraft/server/level/progress/ChunkProgressListener net/minecraft/server/level/progress/ChunkProgressListener +CL: net/minecraft/server/level/progress/ChunkProgressListenerFactory net/minecraft/server/level/progress/ChunkProgressListenerFactory +CL: net/minecraft/server/level/progress/LoggerChunkProgressListener net/minecraft/server/level/progress/LoggerChunkProgressListener +CL: net/minecraft/server/level/progress/ProcessorChunkProgressListener net/minecraft/server/level/progress/ProcessorChunkProgressListener +CL: net/minecraft/server/level/progress/StoringChunkProgressListener net/minecraft/server/level/progress/StoringChunkProgressListener +CL: net/minecraft/server/level/progress/package-info net/minecraft/server/level/progress/package-info +CL: net/minecraft/server/network/FilteredText net/minecraft/server/network/FilteredText +CL: net/minecraft/server/network/LegacyQueryHandler net/minecraft/server/network/LegacyQueryHandler +CL: net/minecraft/server/network/MemoryServerHandshakePacketListenerImpl net/minecraft/server/network/MemoryServerHandshakePacketListenerImpl +CL: net/minecraft/server/network/ServerConnectionListener net/minecraft/server/network/ServerConnectionListener +CL: net/minecraft/server/network/ServerConnectionListener$1 net/minecraft/server/network/ServerConnectionListener$1 +CL: net/minecraft/server/network/ServerConnectionListener$2 net/minecraft/server/network/ServerConnectionListener$2 +CL: net/minecraft/server/network/ServerConnectionListener$LatencySimulator net/minecraft/server/network/ServerConnectionListener$LatencySimulator +CL: net/minecraft/server/network/ServerConnectionListener$LatencySimulator$DelayedMessage net/minecraft/server/network/ServerConnectionListener$LatencySimulator$DelayedMessage +CL: net/minecraft/server/network/ServerGamePacketListenerImpl net/minecraft/server/network/ServerGamePacketListenerImpl +CL: net/minecraft/server/network/ServerGamePacketListenerImpl$1 net/minecraft/server/network/ServerGamePacketListenerImpl$1 +CL: net/minecraft/server/network/ServerGamePacketListenerImpl$2 net/minecraft/server/network/ServerGamePacketListenerImpl$2 +CL: net/minecraft/server/network/ServerGamePacketListenerImpl$EntityInteraction net/minecraft/server/network/ServerGamePacketListenerImpl$EntityInteraction +CL: net/minecraft/server/network/ServerHandshakePacketListenerImpl net/minecraft/server/network/ServerHandshakePacketListenerImpl +CL: net/minecraft/server/network/ServerHandshakePacketListenerImpl$1 net/minecraft/server/network/ServerHandshakePacketListenerImpl$1 +CL: net/minecraft/server/network/ServerLoginPacketListenerImpl net/minecraft/server/network/ServerLoginPacketListenerImpl +CL: net/minecraft/server/network/ServerLoginPacketListenerImpl$1 net/minecraft/server/network/ServerLoginPacketListenerImpl$1 +CL: net/minecraft/server/network/ServerLoginPacketListenerImpl$State net/minecraft/server/network/ServerLoginPacketListenerImpl$State +CL: net/minecraft/server/network/ServerPlayerConnection net/minecraft/server/network/ServerPlayerConnection +CL: net/minecraft/server/network/ServerStatusPacketListenerImpl net/minecraft/server/network/ServerStatusPacketListenerImpl +CL: net/minecraft/server/network/TextFilter net/minecraft/server/network/TextFilter +CL: net/minecraft/server/network/TextFilter$1 net/minecraft/server/network/TextFilter$1 +CL: net/minecraft/server/network/TextFilterClient net/minecraft/server/network/TextFilterClient +CL: net/minecraft/server/network/TextFilterClient$IgnoreStrategy net/minecraft/server/network/TextFilterClient$IgnoreStrategy +CL: net/minecraft/server/network/TextFilterClient$JoinOrLeaveEncoder net/minecraft/server/network/TextFilterClient$JoinOrLeaveEncoder +CL: net/minecraft/server/network/TextFilterClient$MessageEncoder net/minecraft/server/network/TextFilterClient$MessageEncoder +CL: net/minecraft/server/network/TextFilterClient$PlayerContext net/minecraft/server/network/TextFilterClient$PlayerContext +CL: net/minecraft/server/network/TextFilterClient$RequestFailedException net/minecraft/server/network/TextFilterClient$RequestFailedException +CL: net/minecraft/server/network/package-info net/minecraft/server/network/package-info +CL: net/minecraft/server/package-info net/minecraft/server/package-info +CL: net/minecraft/server/packs/AbstractPackResources net/minecraft/server/packs/AbstractPackResources +CL: net/minecraft/server/packs/BuiltInMetadata net/minecraft/server/packs/BuiltInMetadata +CL: net/minecraft/server/packs/FeatureFlagsMetadataSection net/minecraft/server/packs/FeatureFlagsMetadataSection +CL: net/minecraft/server/packs/FilePackResources net/minecraft/server/packs/FilePackResources +CL: net/minecraft/server/packs/PackResources net/minecraft/server/packs/PackResources +CL: net/minecraft/server/packs/PackResources$ResourceOutput net/minecraft/server/packs/PackResources$ResourceOutput +CL: net/minecraft/server/packs/PackType net/minecraft/server/packs/PackType +CL: net/minecraft/server/packs/PathPackResources net/minecraft/server/packs/PathPackResources +CL: net/minecraft/server/packs/VanillaPackResources net/minecraft/server/packs/VanillaPackResources +CL: net/minecraft/server/packs/VanillaPackResourcesBuilder net/minecraft/server/packs/VanillaPackResourcesBuilder +CL: net/minecraft/server/packs/linkfs/DummyFileAttributes net/minecraft/server/packs/linkfs/DummyFileAttributes +CL: net/minecraft/server/packs/linkfs/LinkFSFileStore net/minecraft/server/packs/linkfs/LinkFSFileStore +CL: net/minecraft/server/packs/linkfs/LinkFSPath net/minecraft/server/packs/linkfs/LinkFSPath +CL: net/minecraft/server/packs/linkfs/LinkFSPath$1 net/minecraft/server/packs/linkfs/LinkFSPath$1 +CL: net/minecraft/server/packs/linkfs/LinkFSPath$2 net/minecraft/server/packs/linkfs/LinkFSPath$2 +CL: net/minecraft/server/packs/linkfs/LinkFSPath$3 net/minecraft/server/packs/linkfs/LinkFSPath$3 +CL: net/minecraft/server/packs/linkfs/LinkFSProvider net/minecraft/server/packs/linkfs/LinkFSProvider +CL: net/minecraft/server/packs/linkfs/LinkFSProvider$1 net/minecraft/server/packs/linkfs/LinkFSProvider$1 +CL: net/minecraft/server/packs/linkfs/LinkFSProvider$2 net/minecraft/server/packs/linkfs/LinkFSProvider$2 +CL: net/minecraft/server/packs/linkfs/LinkFileSystem net/minecraft/server/packs/linkfs/LinkFileSystem +CL: net/minecraft/server/packs/linkfs/LinkFileSystem$Builder net/minecraft/server/packs/linkfs/LinkFileSystem$Builder +CL: net/minecraft/server/packs/linkfs/LinkFileSystem$DirectoryEntry net/minecraft/server/packs/linkfs/LinkFileSystem$DirectoryEntry +CL: net/minecraft/server/packs/linkfs/PathContents net/minecraft/server/packs/linkfs/PathContents +CL: net/minecraft/server/packs/linkfs/PathContents$1 net/minecraft/server/packs/linkfs/PathContents$1 +CL: net/minecraft/server/packs/linkfs/PathContents$2 net/minecraft/server/packs/linkfs/PathContents$2 +CL: net/minecraft/server/packs/linkfs/PathContents$DirectoryContents net/minecraft/server/packs/linkfs/PathContents$DirectoryContents +CL: net/minecraft/server/packs/linkfs/PathContents$FileContents net/minecraft/server/packs/linkfs/PathContents$FileContents +CL: net/minecraft/server/packs/linkfs/package-info net/minecraft/server/packs/linkfs/package-info +CL: net/minecraft/server/packs/metadata/MetadataSectionSerializer net/minecraft/server/packs/metadata/MetadataSectionSerializer +CL: net/minecraft/server/packs/metadata/MetadataSectionType net/minecraft/server/packs/metadata/MetadataSectionType +CL: net/minecraft/server/packs/metadata/MetadataSectionType$1 net/minecraft/server/packs/metadata/MetadataSectionType$1 +CL: net/minecraft/server/packs/metadata/pack/PackMetadataSection net/minecraft/server/packs/metadata/pack/PackMetadataSection +CL: net/minecraft/server/packs/metadata/pack/PackMetadataSectionSerializer net/minecraft/server/packs/metadata/pack/PackMetadataSectionSerializer +CL: net/minecraft/server/packs/metadata/pack/package-info net/minecraft/server/packs/metadata/pack/package-info +CL: net/minecraft/server/packs/metadata/package-info net/minecraft/server/packs/metadata/package-info +CL: net/minecraft/server/packs/package-info net/minecraft/server/packs/package-info +CL: net/minecraft/server/packs/repository/BuiltInPackSource net/minecraft/server/packs/repository/BuiltInPackSource +CL: net/minecraft/server/packs/repository/FolderRepositorySource net/minecraft/server/packs/repository/FolderRepositorySource +CL: net/minecraft/server/packs/repository/Pack net/minecraft/server/packs/repository/Pack +CL: net/minecraft/server/packs/repository/Pack$Info net/minecraft/server/packs/repository/Pack$Info +CL: net/minecraft/server/packs/repository/Pack$Position net/minecraft/server/packs/repository/Pack$Position +CL: net/minecraft/server/packs/repository/Pack$ResourcesSupplier net/minecraft/server/packs/repository/Pack$ResourcesSupplier +CL: net/minecraft/server/packs/repository/PackCompatibility net/minecraft/server/packs/repository/PackCompatibility +CL: net/minecraft/server/packs/repository/PackRepository net/minecraft/server/packs/repository/PackRepository +CL: net/minecraft/server/packs/repository/PackSource net/minecraft/server/packs/repository/PackSource +CL: net/minecraft/server/packs/repository/PackSource$1 net/minecraft/server/packs/repository/PackSource$1 +CL: net/minecraft/server/packs/repository/RepositorySource net/minecraft/server/packs/repository/RepositorySource +CL: net/minecraft/server/packs/repository/ServerPacksSource net/minecraft/server/packs/repository/ServerPacksSource +CL: net/minecraft/server/packs/repository/package-info net/minecraft/server/packs/repository/package-info +CL: net/minecraft/server/packs/resources/CloseableResourceManager net/minecraft/server/packs/resources/CloseableResourceManager +CL: net/minecraft/server/packs/resources/FallbackResourceManager net/minecraft/server/packs/resources/FallbackResourceManager +CL: net/minecraft/server/packs/resources/FallbackResourceManager$1ResourceWithSourceAndIndex net/minecraft/server/packs/resources/FallbackResourceManager$1ResourceWithSourceAndIndex +CL: net/minecraft/server/packs/resources/FallbackResourceManager$EntryStack net/minecraft/server/packs/resources/FallbackResourceManager$EntryStack +CL: net/minecraft/server/packs/resources/FallbackResourceManager$LeakedResourceWarningInputStream net/minecraft/server/packs/resources/FallbackResourceManager$LeakedResourceWarningInputStream +CL: net/minecraft/server/packs/resources/FallbackResourceManager$PackEntry net/minecraft/server/packs/resources/FallbackResourceManager$PackEntry +CL: net/minecraft/server/packs/resources/FallbackResourceManager$ResourceWithSource net/minecraft/server/packs/resources/FallbackResourceManager$ResourceWithSource +CL: net/minecraft/server/packs/resources/IoSupplier net/minecraft/server/packs/resources/IoSupplier +CL: net/minecraft/server/packs/resources/MultiPackResourceManager net/minecraft/server/packs/resources/MultiPackResourceManager +CL: net/minecraft/server/packs/resources/PreparableReloadListener net/minecraft/server/packs/resources/PreparableReloadListener +CL: net/minecraft/server/packs/resources/PreparableReloadListener$PreparationBarrier net/minecraft/server/packs/resources/PreparableReloadListener$PreparationBarrier +CL: net/minecraft/server/packs/resources/ProfiledReloadInstance net/minecraft/server/packs/resources/ProfiledReloadInstance +CL: net/minecraft/server/packs/resources/ProfiledReloadInstance$State net/minecraft/server/packs/resources/ProfiledReloadInstance$State +CL: net/minecraft/server/packs/resources/ReloadInstance net/minecraft/server/packs/resources/ReloadInstance +CL: net/minecraft/server/packs/resources/ReloadableResourceManager net/minecraft/server/packs/resources/ReloadableResourceManager +CL: net/minecraft/server/packs/resources/Resource net/minecraft/server/packs/resources/Resource +CL: net/minecraft/server/packs/resources/ResourceFilterSection net/minecraft/server/packs/resources/ResourceFilterSection +CL: net/minecraft/server/packs/resources/ResourceManager net/minecraft/server/packs/resources/ResourceManager +CL: net/minecraft/server/packs/resources/ResourceManager$Empty net/minecraft/server/packs/resources/ResourceManager$Empty +CL: net/minecraft/server/packs/resources/ResourceManagerReloadListener net/minecraft/server/packs/resources/ResourceManagerReloadListener +CL: net/minecraft/server/packs/resources/ResourceMetadata net/minecraft/server/packs/resources/ResourceMetadata +CL: net/minecraft/server/packs/resources/ResourceMetadata$1 net/minecraft/server/packs/resources/ResourceMetadata$1 +CL: net/minecraft/server/packs/resources/ResourceMetadata$2 net/minecraft/server/packs/resources/ResourceMetadata$2 +CL: net/minecraft/server/packs/resources/ResourceProvider net/minecraft/server/packs/resources/ResourceProvider +CL: net/minecraft/server/packs/resources/SimpleJsonResourceReloadListener net/minecraft/server/packs/resources/SimpleJsonResourceReloadListener +CL: net/minecraft/server/packs/resources/SimplePreparableReloadListener net/minecraft/server/packs/resources/SimplePreparableReloadListener +CL: net/minecraft/server/packs/resources/SimpleReloadInstance net/minecraft/server/packs/resources/SimpleReloadInstance +CL: net/minecraft/server/packs/resources/SimpleReloadInstance$1 net/minecraft/server/packs/resources/SimpleReloadInstance$1 +CL: net/minecraft/server/packs/resources/SimpleReloadInstance$StateFactory net/minecraft/server/packs/resources/SimpleReloadInstance$StateFactory +CL: net/minecraft/server/packs/resources/package-info net/minecraft/server/packs/resources/package-info +CL: net/minecraft/server/players/BanListEntry net/minecraft/server/players/BanListEntry +CL: net/minecraft/server/players/GameProfileCache net/minecraft/server/players/GameProfileCache +CL: net/minecraft/server/players/GameProfileCache$1 net/minecraft/server/players/GameProfileCache$1 +CL: net/minecraft/server/players/GameProfileCache$GameProfileInfo net/minecraft/server/players/GameProfileCache$GameProfileInfo +CL: net/minecraft/server/players/IpBanList net/minecraft/server/players/IpBanList +CL: net/minecraft/server/players/IpBanListEntry net/minecraft/server/players/IpBanListEntry +CL: net/minecraft/server/players/OldUsersConverter net/minecraft/server/players/OldUsersConverter +CL: net/minecraft/server/players/OldUsersConverter$1 net/minecraft/server/players/OldUsersConverter$1 +CL: net/minecraft/server/players/OldUsersConverter$2 net/minecraft/server/players/OldUsersConverter$2 +CL: net/minecraft/server/players/OldUsersConverter$3 net/minecraft/server/players/OldUsersConverter$3 +CL: net/minecraft/server/players/OldUsersConverter$4 net/minecraft/server/players/OldUsersConverter$4 +CL: net/minecraft/server/players/OldUsersConverter$5 net/minecraft/server/players/OldUsersConverter$5 +CL: net/minecraft/server/players/OldUsersConverter$ConversionError net/minecraft/server/players/OldUsersConverter$ConversionError +CL: net/minecraft/server/players/PlayerList net/minecraft/server/players/PlayerList +CL: net/minecraft/server/players/PlayerList$1 net/minecraft/server/players/PlayerList$1 +CL: net/minecraft/server/players/ServerOpList net/minecraft/server/players/ServerOpList +CL: net/minecraft/server/players/ServerOpListEntry net/minecraft/server/players/ServerOpListEntry +CL: net/minecraft/server/players/SleepStatus net/minecraft/server/players/SleepStatus +CL: net/minecraft/server/players/StoredUserEntry net/minecraft/server/players/StoredUserEntry +CL: net/minecraft/server/players/StoredUserList net/minecraft/server/players/StoredUserList +CL: net/minecraft/server/players/UserBanList net/minecraft/server/players/UserBanList +CL: net/minecraft/server/players/UserBanListEntry net/minecraft/server/players/UserBanListEntry +CL: net/minecraft/server/players/UserWhiteList net/minecraft/server/players/UserWhiteList +CL: net/minecraft/server/players/UserWhiteListEntry net/minecraft/server/players/UserWhiteListEntry +CL: net/minecraft/server/players/package-info net/minecraft/server/players/package-info +CL: net/minecraft/server/rcon/NetworkDataOutputStream net/minecraft/server/rcon/NetworkDataOutputStream +CL: net/minecraft/server/rcon/PktUtils net/minecraft/server/rcon/PktUtils +CL: net/minecraft/server/rcon/RconConsoleSource net/minecraft/server/rcon/RconConsoleSource +CL: net/minecraft/server/rcon/package-info net/minecraft/server/rcon/package-info +CL: net/minecraft/server/rcon/thread/GenericThread net/minecraft/server/rcon/thread/GenericThread +CL: net/minecraft/server/rcon/thread/QueryThreadGs4 net/minecraft/server/rcon/thread/QueryThreadGs4 +CL: net/minecraft/server/rcon/thread/QueryThreadGs4$RequestChallenge net/minecraft/server/rcon/thread/QueryThreadGs4$RequestChallenge +CL: net/minecraft/server/rcon/thread/RconClient net/minecraft/server/rcon/thread/RconClient +CL: net/minecraft/server/rcon/thread/RconThread net/minecraft/server/rcon/thread/RconThread +CL: net/minecraft/server/rcon/thread/package-info net/minecraft/server/rcon/thread/package-info +CL: net/minecraft/sounds/Music net/minecraft/sounds/Music +CL: net/minecraft/sounds/Musics net/minecraft/sounds/Musics +CL: net/minecraft/sounds/SoundEvent net/minecraft/sounds/SoundEvent +CL: net/minecraft/sounds/SoundEvents net/minecraft/sounds/SoundEvents +CL: net/minecraft/sounds/SoundSource net/minecraft/sounds/SoundSource +CL: net/minecraft/sounds/package-info net/minecraft/sounds/package-info +CL: net/minecraft/stats/RecipeBook net/minecraft/stats/RecipeBook +CL: net/minecraft/stats/RecipeBookSettings net/minecraft/stats/RecipeBookSettings +CL: net/minecraft/stats/RecipeBookSettings$TypeSettings net/minecraft/stats/RecipeBookSettings$TypeSettings +CL: net/minecraft/stats/ServerRecipeBook net/minecraft/stats/ServerRecipeBook +CL: net/minecraft/stats/ServerStatsCounter net/minecraft/stats/ServerStatsCounter +CL: net/minecraft/stats/Stat net/minecraft/stats/Stat +CL: net/minecraft/stats/StatFormatter net/minecraft/stats/StatFormatter +CL: net/minecraft/stats/StatType net/minecraft/stats/StatType +CL: net/minecraft/stats/Stats net/minecraft/stats/Stats +CL: net/minecraft/stats/StatsCounter net/minecraft/stats/StatsCounter +CL: net/minecraft/stats/package-info net/minecraft/stats/package-info +CL: net/minecraft/tags/BannerPatternTags net/minecraft/tags/BannerPatternTags +CL: net/minecraft/tags/BiomeTags net/minecraft/tags/BiomeTags +CL: net/minecraft/tags/BlockTags net/minecraft/tags/BlockTags +CL: net/minecraft/tags/CatVariantTags net/minecraft/tags/CatVariantTags +CL: net/minecraft/tags/DamageTypeTags net/minecraft/tags/DamageTypeTags +CL: net/minecraft/tags/EntityTypeTags net/minecraft/tags/EntityTypeTags +CL: net/minecraft/tags/FlatLevelGeneratorPresetTags net/minecraft/tags/FlatLevelGeneratorPresetTags +CL: net/minecraft/tags/FluidTags net/minecraft/tags/FluidTags +CL: net/minecraft/tags/GameEventTags net/minecraft/tags/GameEventTags +CL: net/minecraft/tags/InstrumentTags net/minecraft/tags/InstrumentTags +CL: net/minecraft/tags/ItemTags net/minecraft/tags/ItemTags +CL: net/minecraft/tags/PaintingVariantTags net/minecraft/tags/PaintingVariantTags +CL: net/minecraft/tags/PoiTypeTags net/minecraft/tags/PoiTypeTags +CL: net/minecraft/tags/StructureTags net/minecraft/tags/StructureTags +CL: net/minecraft/tags/TagBuilder net/minecraft/tags/TagBuilder +CL: net/minecraft/tags/TagEntry net/minecraft/tags/TagEntry +CL: net/minecraft/tags/TagEntry$Lookup net/minecraft/tags/TagEntry$Lookup +CL: net/minecraft/tags/TagFile net/minecraft/tags/TagFile +CL: net/minecraft/tags/TagKey net/minecraft/tags/TagKey +CL: net/minecraft/tags/TagLoader net/minecraft/tags/TagLoader +CL: net/minecraft/tags/TagLoader$1 net/minecraft/tags/TagLoader$1 +CL: net/minecraft/tags/TagLoader$EntryWithSource net/minecraft/tags/TagLoader$EntryWithSource +CL: net/minecraft/tags/TagLoader$SortingEntry net/minecraft/tags/TagLoader$SortingEntry +CL: net/minecraft/tags/TagManager net/minecraft/tags/TagManager +CL: net/minecraft/tags/TagManager$LoadResult net/minecraft/tags/TagManager$LoadResult +CL: net/minecraft/tags/TagNetworkSerialization net/minecraft/tags/TagNetworkSerialization +CL: net/minecraft/tags/TagNetworkSerialization$NetworkPayload net/minecraft/tags/TagNetworkSerialization$NetworkPayload +CL: net/minecraft/tags/TagNetworkSerialization$TagOutput net/minecraft/tags/TagNetworkSerialization$TagOutput +CL: net/minecraft/tags/WorldPresetTags net/minecraft/tags/WorldPresetTags +CL: net/minecraft/tags/package-info net/minecraft/tags/package-info +CL: net/minecraft/util/AbortableIterationConsumer net/minecraft/util/AbortableIterationConsumer +CL: net/minecraft/util/AbortableIterationConsumer$Continuation net/minecraft/util/AbortableIterationConsumer$Continuation +CL: net/minecraft/util/BitStorage net/minecraft/util/BitStorage +CL: net/minecraft/util/Brightness net/minecraft/util/Brightness +CL: net/minecraft/util/ByIdMap net/minecraft/util/ByIdMap +CL: net/minecraft/util/ByIdMap$1 net/minecraft/util/ByIdMap$1 +CL: net/minecraft/util/ByIdMap$OutOfBoundsStrategy net/minecraft/util/ByIdMap$OutOfBoundsStrategy +CL: net/minecraft/util/ClassInstanceMultiMap net/minecraft/util/ClassInstanceMultiMap +CL: net/minecraft/util/CommonColors net/minecraft/util/CommonColors +CL: net/minecraft/util/CommonLinks net/minecraft/util/CommonLinks +CL: net/minecraft/util/CrudeIncrementalIntIdentityHashBiMap net/minecraft/util/CrudeIncrementalIntIdentityHashBiMap +CL: net/minecraft/util/Crypt net/minecraft/util/Crypt +CL: net/minecraft/util/Crypt$ByteArrayToKeyFunction net/minecraft/util/Crypt$ByteArrayToKeyFunction +CL: net/minecraft/util/Crypt$SaltSignaturePair net/minecraft/util/Crypt$SaltSignaturePair +CL: net/minecraft/util/Crypt$SaltSupplier net/minecraft/util/Crypt$SaltSupplier +CL: net/minecraft/util/CryptException net/minecraft/util/CryptException +CL: net/minecraft/util/CsvOutput net/minecraft/util/CsvOutput +CL: net/minecraft/util/CsvOutput$Builder net/minecraft/util/CsvOutput$Builder +CL: net/minecraft/util/CubicSampler net/minecraft/util/CubicSampler +CL: net/minecraft/util/CubicSampler$Vec3Fetcher net/minecraft/util/CubicSampler$Vec3Fetcher +CL: net/minecraft/util/CubicSpline net/minecraft/util/CubicSpline +CL: net/minecraft/util/CubicSpline$1Point net/minecraft/util/CubicSpline$1Point +CL: net/minecraft/util/CubicSpline$Builder net/minecraft/util/CubicSpline$Builder +CL: net/minecraft/util/CubicSpline$Constant net/minecraft/util/CubicSpline$Constant +CL: net/minecraft/util/CubicSpline$CoordinateVisitor net/minecraft/util/CubicSpline$CoordinateVisitor +CL: net/minecraft/util/CubicSpline$Multipoint net/minecraft/util/CubicSpline$Multipoint +CL: net/minecraft/util/DebugBuffer net/minecraft/util/DebugBuffer +CL: net/minecraft/util/DependencySorter net/minecraft/util/DependencySorter +CL: net/minecraft/util/DependencySorter$Entry net/minecraft/util/DependencySorter$Entry +CL: net/minecraft/util/DirectoryLock net/minecraft/util/DirectoryLock +CL: net/minecraft/util/DirectoryLock$LockException net/minecraft/util/DirectoryLock$LockException +CL: net/minecraft/util/ExceptionCollector net/minecraft/util/ExceptionCollector +CL: net/minecraft/util/ExtraCodecs net/minecraft/util/ExtraCodecs +CL: net/minecraft/util/ExtraCodecs$1 net/minecraft/util/ExtraCodecs$1 +CL: net/minecraft/util/ExtraCodecs$1ContextRetrievalCodec net/minecraft/util/ExtraCodecs$1ContextRetrievalCodec +CL: net/minecraft/util/ExtraCodecs$2 net/minecraft/util/ExtraCodecs$2 +CL: net/minecraft/util/ExtraCodecs$3 net/minecraft/util/ExtraCodecs$3 +CL: net/minecraft/util/ExtraCodecs$4 net/minecraft/util/ExtraCodecs$4 +CL: net/minecraft/util/ExtraCodecs$EitherCodec net/minecraft/util/ExtraCodecs$EitherCodec +CL: net/minecraft/util/ExtraCodecs$LazyInitializedCodec net/minecraft/util/ExtraCodecs$LazyInitializedCodec +CL: net/minecraft/util/ExtraCodecs$TagOrElementLocation net/minecraft/util/ExtraCodecs$TagOrElementLocation +CL: net/minecraft/util/ExtraCodecs$XorCodec net/minecraft/util/ExtraCodecs$XorCodec +CL: net/minecraft/util/FastBufferedInputStream net/minecraft/util/FastBufferedInputStream +CL: net/minecraft/util/FastColor net/minecraft/util/FastColor +CL: net/minecraft/util/FastColor$ABGR32 net/minecraft/util/FastColor$ABGR32 +CL: net/minecraft/util/FastColor$ARGB32 net/minecraft/util/FastColor$ARGB32 +CL: net/minecraft/util/FileZipper net/minecraft/util/FileZipper +CL: net/minecraft/util/FormattedCharSequence net/minecraft/util/FormattedCharSequence +CL: net/minecraft/util/FormattedCharSink net/minecraft/util/FormattedCharSink +CL: net/minecraft/util/FrameTimer net/minecraft/util/FrameTimer +CL: net/minecraft/util/FutureChain net/minecraft/util/FutureChain +CL: net/minecraft/util/Graph net/minecraft/util/Graph +CL: net/minecraft/util/GsonHelper net/minecraft/util/GsonHelper +CL: net/minecraft/util/HttpUtil net/minecraft/util/HttpUtil +CL: net/minecraft/util/InclusiveRange net/minecraft/util/InclusiveRange +CL: net/minecraft/util/KeyDispatchDataCodec net/minecraft/util/KeyDispatchDataCodec +CL: net/minecraft/util/LazyLoadedValue net/minecraft/util/LazyLoadedValue +CL: net/minecraft/util/LinearCongruentialGenerator net/minecraft/util/LinearCongruentialGenerator +CL: net/minecraft/util/LowerCaseEnumTypeAdapterFactory net/minecraft/util/LowerCaseEnumTypeAdapterFactory +CL: net/minecraft/util/LowerCaseEnumTypeAdapterFactory$1 net/minecraft/util/LowerCaseEnumTypeAdapterFactory$1 +CL: net/minecraft/util/MemoryReserve net/minecraft/util/MemoryReserve +CL: net/minecraft/util/ModCheck net/minecraft/util/ModCheck +CL: net/minecraft/util/ModCheck$Confidence net/minecraft/util/ModCheck$Confidence +CL: net/minecraft/util/Mth net/minecraft/util/Mth +CL: net/minecraft/util/NativeModuleLister net/minecraft/util/NativeModuleLister +CL: net/minecraft/util/NativeModuleLister$NativeModuleInfo net/minecraft/util/NativeModuleLister$NativeModuleInfo +CL: net/minecraft/util/NativeModuleLister$NativeModuleVersion net/minecraft/util/NativeModuleLister$NativeModuleVersion +CL: net/minecraft/util/OptionEnum net/minecraft/util/OptionEnum +CL: net/minecraft/util/ParticleUtils net/minecraft/util/ParticleUtils +CL: net/minecraft/util/ProgressListener net/minecraft/util/ProgressListener +CL: net/minecraft/util/RandomSource net/minecraft/util/RandomSource +CL: net/minecraft/util/ResourceLocationPattern net/minecraft/util/ResourceLocationPattern +CL: net/minecraft/util/SegmentedAnglePrecision net/minecraft/util/SegmentedAnglePrecision +CL: net/minecraft/util/SignatureUpdater net/minecraft/util/SignatureUpdater +CL: net/minecraft/util/SignatureUpdater$Output net/minecraft/util/SignatureUpdater$Output +CL: net/minecraft/util/SignatureValidator net/minecraft/util/SignatureValidator +CL: net/minecraft/util/Signer net/minecraft/util/Signer +CL: net/minecraft/util/SimpleBitStorage net/minecraft/util/SimpleBitStorage +CL: net/minecraft/util/SimpleBitStorage$InitializationException net/minecraft/util/SimpleBitStorage$InitializationException +CL: net/minecraft/util/SingleKeyCache net/minecraft/util/SingleKeyCache +CL: net/minecraft/util/SmoothDouble net/minecraft/util/SmoothDouble +CL: net/minecraft/util/SortedArraySet net/minecraft/util/SortedArraySet +CL: net/minecraft/util/SortedArraySet$ArrayIterator net/minecraft/util/SortedArraySet$ArrayIterator +CL: net/minecraft/util/SpawnUtil net/minecraft/util/SpawnUtil +CL: net/minecraft/util/SpawnUtil$Strategy net/minecraft/util/SpawnUtil$Strategy +CL: net/minecraft/util/StringDecomposer net/minecraft/util/StringDecomposer +CL: net/minecraft/util/StringRepresentable net/minecraft/util/StringRepresentable +CL: net/minecraft/util/StringRepresentable$1 net/minecraft/util/StringRepresentable$1 +CL: net/minecraft/util/StringRepresentable$EnumCodec net/minecraft/util/StringRepresentable$EnumCodec +CL: net/minecraft/util/StringUtil net/minecraft/util/StringUtil +CL: net/minecraft/util/TaskChainer net/minecraft/util/TaskChainer +CL: net/minecraft/util/TaskChainer$DelayedTask net/minecraft/util/TaskChainer$DelayedTask +CL: net/minecraft/util/ThreadingDetector net/minecraft/util/ThreadingDetector +CL: net/minecraft/util/TimeSource net/minecraft/util/TimeSource +CL: net/minecraft/util/TimeSource$NanoTimeSource net/minecraft/util/TimeSource$NanoTimeSource +CL: net/minecraft/util/TimeUtil net/minecraft/util/TimeUtil +CL: net/minecraft/util/ToFloatFunction net/minecraft/util/ToFloatFunction +CL: net/minecraft/util/ToFloatFunction$1 net/minecraft/util/ToFloatFunction$1 +CL: net/minecraft/util/ToFloatFunction$2 net/minecraft/util/ToFloatFunction$2 +CL: net/minecraft/util/Tuple net/minecraft/util/Tuple +CL: net/minecraft/util/Unit net/minecraft/util/Unit +CL: net/minecraft/util/VisibleForDebug net/minecraft/util/VisibleForDebug +CL: net/minecraft/util/ZeroBitStorage net/minecraft/util/ZeroBitStorage +CL: net/minecraft/util/datafix/DataFixTypes net/minecraft/util/datafix/DataFixTypes +CL: net/minecraft/util/datafix/DataFixers net/minecraft/util/datafix/DataFixers +CL: net/minecraft/util/datafix/DataFixers$1 net/minecraft/util/datafix/DataFixers$1 +CL: net/minecraft/util/datafix/DataFixers$2 net/minecraft/util/datafix/DataFixers$2 +CL: net/minecraft/util/datafix/PackedBitStorage net/minecraft/util/datafix/PackedBitStorage +CL: net/minecraft/util/datafix/fixes/AbstractArrowPickupFix net/minecraft/util/datafix/fixes/AbstractArrowPickupFix +CL: net/minecraft/util/datafix/fixes/AbstractPoiSectionFix net/minecraft/util/datafix/fixes/AbstractPoiSectionFix +CL: net/minecraft/util/datafix/fixes/AbstractUUIDFix net/minecraft/util/datafix/fixes/AbstractUUIDFix +CL: net/minecraft/util/datafix/fixes/AddFlagIfNotPresentFix net/minecraft/util/datafix/fixes/AddFlagIfNotPresentFix +CL: net/minecraft/util/datafix/fixes/AddNewChoices net/minecraft/util/datafix/fixes/AddNewChoices +CL: net/minecraft/util/datafix/fixes/AdvancementsFix net/minecraft/util/datafix/fixes/AdvancementsFix +CL: net/minecraft/util/datafix/fixes/AdvancementsRenameFix net/minecraft/util/datafix/fixes/AdvancementsRenameFix +CL: net/minecraft/util/datafix/fixes/AttributesRename net/minecraft/util/datafix/fixes/AttributesRename +CL: net/minecraft/util/datafix/fixes/BedItemColorFix net/minecraft/util/datafix/fixes/BedItemColorFix +CL: net/minecraft/util/datafix/fixes/BiomeFix net/minecraft/util/datafix/fixes/BiomeFix +CL: net/minecraft/util/datafix/fixes/BitStorageAlignFix net/minecraft/util/datafix/fixes/BitStorageAlignFix +CL: net/minecraft/util/datafix/fixes/BlendingDataFix net/minecraft/util/datafix/fixes/BlendingDataFix +CL: net/minecraft/util/datafix/fixes/BlendingDataRemoveFromNetherEndFix net/minecraft/util/datafix/fixes/BlendingDataRemoveFromNetherEndFix +CL: net/minecraft/util/datafix/fixes/BlockEntityBannerColorFix net/minecraft/util/datafix/fixes/BlockEntityBannerColorFix +CL: net/minecraft/util/datafix/fixes/BlockEntityBlockStateFix net/minecraft/util/datafix/fixes/BlockEntityBlockStateFix +CL: net/minecraft/util/datafix/fixes/BlockEntityCustomNameToComponentFix net/minecraft/util/datafix/fixes/BlockEntityCustomNameToComponentFix +CL: net/minecraft/util/datafix/fixes/BlockEntityIdFix net/minecraft/util/datafix/fixes/BlockEntityIdFix +CL: net/minecraft/util/datafix/fixes/BlockEntityJukeboxFix net/minecraft/util/datafix/fixes/BlockEntityJukeboxFix +CL: net/minecraft/util/datafix/fixes/BlockEntityKeepPacked net/minecraft/util/datafix/fixes/BlockEntityKeepPacked +CL: net/minecraft/util/datafix/fixes/BlockEntityRenameFix net/minecraft/util/datafix/fixes/BlockEntityRenameFix +CL: net/minecraft/util/datafix/fixes/BlockEntityShulkerBoxColorFix net/minecraft/util/datafix/fixes/BlockEntityShulkerBoxColorFix +CL: net/minecraft/util/datafix/fixes/BlockEntitySignDoubleSidedEditableTextFix net/minecraft/util/datafix/fixes/BlockEntitySignDoubleSidedEditableTextFix +CL: net/minecraft/util/datafix/fixes/BlockEntitySignTextStrictJsonFix net/minecraft/util/datafix/fixes/BlockEntitySignTextStrictJsonFix +CL: net/minecraft/util/datafix/fixes/BlockEntitySignTextStrictJsonFix$1 net/minecraft/util/datafix/fixes/BlockEntitySignTextStrictJsonFix$1 +CL: net/minecraft/util/datafix/fixes/BlockEntityUUIDFix net/minecraft/util/datafix/fixes/BlockEntityUUIDFix +CL: net/minecraft/util/datafix/fixes/BlockNameFlatteningFix net/minecraft/util/datafix/fixes/BlockNameFlatteningFix +CL: net/minecraft/util/datafix/fixes/BlockRenameFix net/minecraft/util/datafix/fixes/BlockRenameFix +CL: net/minecraft/util/datafix/fixes/BlockRenameFix$1 net/minecraft/util/datafix/fixes/BlockRenameFix$1 +CL: net/minecraft/util/datafix/fixes/BlockRenameFixWithJigsaw net/minecraft/util/datafix/fixes/BlockRenameFixWithJigsaw +CL: net/minecraft/util/datafix/fixes/BlockRenameFixWithJigsaw$1 net/minecraft/util/datafix/fixes/BlockRenameFixWithJigsaw$1 +CL: net/minecraft/util/datafix/fixes/BlockStateData net/minecraft/util/datafix/fixes/BlockStateData +CL: net/minecraft/util/datafix/fixes/BlockStateStructureTemplateFix net/minecraft/util/datafix/fixes/BlockStateStructureTemplateFix +CL: net/minecraft/util/datafix/fixes/CatTypeFix net/minecraft/util/datafix/fixes/CatTypeFix +CL: net/minecraft/util/datafix/fixes/CauldronRenameFix net/minecraft/util/datafix/fixes/CauldronRenameFix +CL: net/minecraft/util/datafix/fixes/CavesAndCliffsRenames net/minecraft/util/datafix/fixes/CavesAndCliffsRenames +CL: net/minecraft/util/datafix/fixes/ChunkBedBlockEntityInjecterFix net/minecraft/util/datafix/fixes/ChunkBedBlockEntityInjecterFix +CL: net/minecraft/util/datafix/fixes/ChunkBiomeFix net/minecraft/util/datafix/fixes/ChunkBiomeFix +CL: net/minecraft/util/datafix/fixes/ChunkDeleteIgnoredLightDataFix net/minecraft/util/datafix/fixes/ChunkDeleteIgnoredLightDataFix +CL: net/minecraft/util/datafix/fixes/ChunkDeleteLightFix net/minecraft/util/datafix/fixes/ChunkDeleteLightFix +CL: net/minecraft/util/datafix/fixes/ChunkHeightAndBiomeFix net/minecraft/util/datafix/fixes/ChunkHeightAndBiomeFix +CL: net/minecraft/util/datafix/fixes/ChunkLightRemoveFix net/minecraft/util/datafix/fixes/ChunkLightRemoveFix +CL: net/minecraft/util/datafix/fixes/ChunkPalettedStorageFix net/minecraft/util/datafix/fixes/ChunkPalettedStorageFix +CL: net/minecraft/util/datafix/fixes/ChunkPalettedStorageFix$1 net/minecraft/util/datafix/fixes/ChunkPalettedStorageFix$1 +CL: net/minecraft/util/datafix/fixes/ChunkPalettedStorageFix$DataLayer net/minecraft/util/datafix/fixes/ChunkPalettedStorageFix$DataLayer +CL: net/minecraft/util/datafix/fixes/ChunkPalettedStorageFix$Direction net/minecraft/util/datafix/fixes/ChunkPalettedStorageFix$Direction +CL: net/minecraft/util/datafix/fixes/ChunkPalettedStorageFix$Direction$Axis net/minecraft/util/datafix/fixes/ChunkPalettedStorageFix$Direction$Axis +CL: net/minecraft/util/datafix/fixes/ChunkPalettedStorageFix$Direction$AxisDirection net/minecraft/util/datafix/fixes/ChunkPalettedStorageFix$Direction$AxisDirection +CL: net/minecraft/util/datafix/fixes/ChunkPalettedStorageFix$Section net/minecraft/util/datafix/fixes/ChunkPalettedStorageFix$Section +CL: net/minecraft/util/datafix/fixes/ChunkPalettedStorageFix$UpgradeChunk net/minecraft/util/datafix/fixes/ChunkPalettedStorageFix$UpgradeChunk +CL: net/minecraft/util/datafix/fixes/ChunkProtoTickListFix net/minecraft/util/datafix/fixes/ChunkProtoTickListFix +CL: net/minecraft/util/datafix/fixes/ChunkProtoTickListFix$PoorMansPalettedContainer net/minecraft/util/datafix/fixes/ChunkProtoTickListFix$PoorMansPalettedContainer +CL: net/minecraft/util/datafix/fixes/ChunkRenamesFix net/minecraft/util/datafix/fixes/ChunkRenamesFix +CL: net/minecraft/util/datafix/fixes/ChunkStatusFix net/minecraft/util/datafix/fixes/ChunkStatusFix +CL: net/minecraft/util/datafix/fixes/ChunkStatusFix2 net/minecraft/util/datafix/fixes/ChunkStatusFix2 +CL: net/minecraft/util/datafix/fixes/ChunkStructuresTemplateRenameFix net/minecraft/util/datafix/fixes/ChunkStructuresTemplateRenameFix +CL: net/minecraft/util/datafix/fixes/ChunkToProtochunkFix net/minecraft/util/datafix/fixes/ChunkToProtochunkFix +CL: net/minecraft/util/datafix/fixes/ColorlessShulkerEntityFix net/minecraft/util/datafix/fixes/ColorlessShulkerEntityFix +CL: net/minecraft/util/datafix/fixes/CriteriaRenameFix net/minecraft/util/datafix/fixes/CriteriaRenameFix +CL: net/minecraft/util/datafix/fixes/DecoratedPotFieldRenameFix net/minecraft/util/datafix/fixes/DecoratedPotFieldRenameFix +CL: net/minecraft/util/datafix/fixes/DyeItemRenameFix net/minecraft/util/datafix/fixes/DyeItemRenameFix +CL: net/minecraft/util/datafix/fixes/EffectDurationFix net/minecraft/util/datafix/fixes/EffectDurationFix +CL: net/minecraft/util/datafix/fixes/EntityArmorStandSilentFix net/minecraft/util/datafix/fixes/EntityArmorStandSilentFix +CL: net/minecraft/util/datafix/fixes/EntityBlockStateFix net/minecraft/util/datafix/fixes/EntityBlockStateFix +CL: net/minecraft/util/datafix/fixes/EntityBrushableBlockFieldsRenameFix net/minecraft/util/datafix/fixes/EntityBrushableBlockFieldsRenameFix +CL: net/minecraft/util/datafix/fixes/EntityCatSplitFix net/minecraft/util/datafix/fixes/EntityCatSplitFix +CL: net/minecraft/util/datafix/fixes/EntityCodSalmonFix net/minecraft/util/datafix/fixes/EntityCodSalmonFix +CL: net/minecraft/util/datafix/fixes/EntityCustomNameToComponentFix net/minecraft/util/datafix/fixes/EntityCustomNameToComponentFix +CL: net/minecraft/util/datafix/fixes/EntityElderGuardianSplitFix net/minecraft/util/datafix/fixes/EntityElderGuardianSplitFix +CL: net/minecraft/util/datafix/fixes/EntityEquipmentToArmorAndHandFix net/minecraft/util/datafix/fixes/EntityEquipmentToArmorAndHandFix +CL: net/minecraft/util/datafix/fixes/EntityGoatMissingStateFix net/minecraft/util/datafix/fixes/EntityGoatMissingStateFix +CL: net/minecraft/util/datafix/fixes/EntityHealthFix net/minecraft/util/datafix/fixes/EntityHealthFix +CL: net/minecraft/util/datafix/fixes/EntityHorseSaddleFix net/minecraft/util/datafix/fixes/EntityHorseSaddleFix +CL: net/minecraft/util/datafix/fixes/EntityHorseSplitFix net/minecraft/util/datafix/fixes/EntityHorseSplitFix +CL: net/minecraft/util/datafix/fixes/EntityIdFix net/minecraft/util/datafix/fixes/EntityIdFix +CL: net/minecraft/util/datafix/fixes/EntityItemFrameDirectionFix net/minecraft/util/datafix/fixes/EntityItemFrameDirectionFix +CL: net/minecraft/util/datafix/fixes/EntityMinecartIdentifiersFix net/minecraft/util/datafix/fixes/EntityMinecartIdentifiersFix +CL: net/minecraft/util/datafix/fixes/EntityPaintingFieldsRenameFix net/minecraft/util/datafix/fixes/EntityPaintingFieldsRenameFix +CL: net/minecraft/util/datafix/fixes/EntityPaintingItemFrameDirectionFix net/minecraft/util/datafix/fixes/EntityPaintingItemFrameDirectionFix +CL: net/minecraft/util/datafix/fixes/EntityPaintingMotiveFix net/minecraft/util/datafix/fixes/EntityPaintingMotiveFix +CL: net/minecraft/util/datafix/fixes/EntityProjectileOwnerFix net/minecraft/util/datafix/fixes/EntityProjectileOwnerFix +CL: net/minecraft/util/datafix/fixes/EntityPufferfishRenameFix net/minecraft/util/datafix/fixes/EntityPufferfishRenameFix +CL: net/minecraft/util/datafix/fixes/EntityRavagerRenameFix net/minecraft/util/datafix/fixes/EntityRavagerRenameFix +CL: net/minecraft/util/datafix/fixes/EntityRedundantChanceTagsFix net/minecraft/util/datafix/fixes/EntityRedundantChanceTagsFix +CL: net/minecraft/util/datafix/fixes/EntityRenameFix net/minecraft/util/datafix/fixes/EntityRenameFix +CL: net/minecraft/util/datafix/fixes/EntityRidingToPassengersFix net/minecraft/util/datafix/fixes/EntityRidingToPassengersFix +CL: net/minecraft/util/datafix/fixes/EntityShulkerColorFix net/minecraft/util/datafix/fixes/EntityShulkerColorFix +CL: net/minecraft/util/datafix/fixes/EntityShulkerRotationFix net/minecraft/util/datafix/fixes/EntityShulkerRotationFix +CL: net/minecraft/util/datafix/fixes/EntitySkeletonSplitFix net/minecraft/util/datafix/fixes/EntitySkeletonSplitFix +CL: net/minecraft/util/datafix/fixes/EntityStringUuidFix net/minecraft/util/datafix/fixes/EntityStringUuidFix +CL: net/minecraft/util/datafix/fixes/EntityTheRenameningFix net/minecraft/util/datafix/fixes/EntityTheRenameningFix +CL: net/minecraft/util/datafix/fixes/EntityTippedArrowFix net/minecraft/util/datafix/fixes/EntityTippedArrowFix +CL: net/minecraft/util/datafix/fixes/EntityUUIDFix net/minecraft/util/datafix/fixes/EntityUUIDFix +CL: net/minecraft/util/datafix/fixes/EntityVariantFix net/minecraft/util/datafix/fixes/EntityVariantFix +CL: net/minecraft/util/datafix/fixes/EntityWolfColorFix net/minecraft/util/datafix/fixes/EntityWolfColorFix +CL: net/minecraft/util/datafix/fixes/EntityZombieSplitFix net/minecraft/util/datafix/fixes/EntityZombieSplitFix +CL: net/minecraft/util/datafix/fixes/EntityZombieVillagerTypeFix net/minecraft/util/datafix/fixes/EntityZombieVillagerTypeFix +CL: net/minecraft/util/datafix/fixes/EntityZombifiedPiglinRenameFix net/minecraft/util/datafix/fixes/EntityZombifiedPiglinRenameFix +CL: net/minecraft/util/datafix/fixes/FeatureFlagRemoveFix net/minecraft/util/datafix/fixes/FeatureFlagRemoveFix +CL: net/minecraft/util/datafix/fixes/FilteredBooksFix net/minecraft/util/datafix/fixes/FilteredBooksFix +CL: net/minecraft/util/datafix/fixes/FilteredSignsFix net/minecraft/util/datafix/fixes/FilteredSignsFix +CL: net/minecraft/util/datafix/fixes/ForcePoiRebuild net/minecraft/util/datafix/fixes/ForcePoiRebuild +CL: net/minecraft/util/datafix/fixes/FurnaceRecipeFix net/minecraft/util/datafix/fixes/FurnaceRecipeFix +CL: net/minecraft/util/datafix/fixes/GoatHornIdFix net/minecraft/util/datafix/fixes/GoatHornIdFix +CL: net/minecraft/util/datafix/fixes/GossipUUIDFix net/minecraft/util/datafix/fixes/GossipUUIDFix +CL: net/minecraft/util/datafix/fixes/HeightmapRenamingFix net/minecraft/util/datafix/fixes/HeightmapRenamingFix +CL: net/minecraft/util/datafix/fixes/IglooMetadataRemovalFix net/minecraft/util/datafix/fixes/IglooMetadataRemovalFix +CL: net/minecraft/util/datafix/fixes/ItemBannerColorFix net/minecraft/util/datafix/fixes/ItemBannerColorFix +CL: net/minecraft/util/datafix/fixes/ItemCustomNameToComponentFix net/minecraft/util/datafix/fixes/ItemCustomNameToComponentFix +CL: net/minecraft/util/datafix/fixes/ItemIdFix net/minecraft/util/datafix/fixes/ItemIdFix +CL: net/minecraft/util/datafix/fixes/ItemLoreFix net/minecraft/util/datafix/fixes/ItemLoreFix +CL: net/minecraft/util/datafix/fixes/ItemPotionFix net/minecraft/util/datafix/fixes/ItemPotionFix +CL: net/minecraft/util/datafix/fixes/ItemRemoveBlockEntityTagFix net/minecraft/util/datafix/fixes/ItemRemoveBlockEntityTagFix +CL: net/minecraft/util/datafix/fixes/ItemRenameFix net/minecraft/util/datafix/fixes/ItemRenameFix +CL: net/minecraft/util/datafix/fixes/ItemRenameFix$1 net/minecraft/util/datafix/fixes/ItemRenameFix$1 +CL: net/minecraft/util/datafix/fixes/ItemShulkerBoxColorFix net/minecraft/util/datafix/fixes/ItemShulkerBoxColorFix +CL: net/minecraft/util/datafix/fixes/ItemSpawnEggFix net/minecraft/util/datafix/fixes/ItemSpawnEggFix +CL: net/minecraft/util/datafix/fixes/ItemStackEnchantmentNamesFix net/minecraft/util/datafix/fixes/ItemStackEnchantmentNamesFix +CL: net/minecraft/util/datafix/fixes/ItemStackMapIdFix net/minecraft/util/datafix/fixes/ItemStackMapIdFix +CL: net/minecraft/util/datafix/fixes/ItemStackSpawnEggFix net/minecraft/util/datafix/fixes/ItemStackSpawnEggFix +CL: net/minecraft/util/datafix/fixes/ItemStackTagFix net/minecraft/util/datafix/fixes/ItemStackTagFix +CL: net/minecraft/util/datafix/fixes/ItemStackTheFlatteningFix net/minecraft/util/datafix/fixes/ItemStackTheFlatteningFix +CL: net/minecraft/util/datafix/fixes/ItemStackUUIDFix net/minecraft/util/datafix/fixes/ItemStackUUIDFix +CL: net/minecraft/util/datafix/fixes/ItemWaterPotionFix net/minecraft/util/datafix/fixes/ItemWaterPotionFix +CL: net/minecraft/util/datafix/fixes/ItemWrittenBookPagesStrictJsonFix net/minecraft/util/datafix/fixes/ItemWrittenBookPagesStrictJsonFix +CL: net/minecraft/util/datafix/fixes/JigsawPropertiesFix net/minecraft/util/datafix/fixes/JigsawPropertiesFix +CL: net/minecraft/util/datafix/fixes/JigsawRotationFix net/minecraft/util/datafix/fixes/JigsawRotationFix +CL: net/minecraft/util/datafix/fixes/LeavesFix net/minecraft/util/datafix/fixes/LeavesFix +CL: net/minecraft/util/datafix/fixes/LeavesFix$LeavesSection net/minecraft/util/datafix/fixes/LeavesFix$LeavesSection +CL: net/minecraft/util/datafix/fixes/LeavesFix$Section net/minecraft/util/datafix/fixes/LeavesFix$Section +CL: net/minecraft/util/datafix/fixes/LegacyDragonFightFix net/minecraft/util/datafix/fixes/LegacyDragonFightFix +CL: net/minecraft/util/datafix/fixes/LevelDataGeneratorOptionsFix net/minecraft/util/datafix/fixes/LevelDataGeneratorOptionsFix +CL: net/minecraft/util/datafix/fixes/LevelFlatGeneratorInfoFix net/minecraft/util/datafix/fixes/LevelFlatGeneratorInfoFix +CL: net/minecraft/util/datafix/fixes/LevelUUIDFix net/minecraft/util/datafix/fixes/LevelUUIDFix +CL: net/minecraft/util/datafix/fixes/MapIdFix net/minecraft/util/datafix/fixes/MapIdFix +CL: net/minecraft/util/datafix/fixes/MemoryExpiryDataFix net/minecraft/util/datafix/fixes/MemoryExpiryDataFix +CL: net/minecraft/util/datafix/fixes/MissingDimensionFix net/minecraft/util/datafix/fixes/MissingDimensionFix +CL: net/minecraft/util/datafix/fixes/MobSpawnerEntityIdentifiersFix net/minecraft/util/datafix/fixes/MobSpawnerEntityIdentifiersFix +CL: net/minecraft/util/datafix/fixes/NamedEntityFix net/minecraft/util/datafix/fixes/NamedEntityFix +CL: net/minecraft/util/datafix/fixes/NamespacedTypeRenameFix net/minecraft/util/datafix/fixes/NamespacedTypeRenameFix +CL: net/minecraft/util/datafix/fixes/NewVillageFix net/minecraft/util/datafix/fixes/NewVillageFix +CL: net/minecraft/util/datafix/fixes/ObjectiveDisplayNameFix net/minecraft/util/datafix/fixes/ObjectiveDisplayNameFix +CL: net/minecraft/util/datafix/fixes/ObjectiveRenderTypeFix net/minecraft/util/datafix/fixes/ObjectiveRenderTypeFix +CL: net/minecraft/util/datafix/fixes/OminousBannerBlockEntityRenameFix net/minecraft/util/datafix/fixes/OminousBannerBlockEntityRenameFix +CL: net/minecraft/util/datafix/fixes/OminousBannerRenameFix net/minecraft/util/datafix/fixes/OminousBannerRenameFix +CL: net/minecraft/util/datafix/fixes/OptionsAccessibilityOnboardFix net/minecraft/util/datafix/fixes/OptionsAccessibilityOnboardFix +CL: net/minecraft/util/datafix/fixes/OptionsAddTextBackgroundFix net/minecraft/util/datafix/fixes/OptionsAddTextBackgroundFix +CL: net/minecraft/util/datafix/fixes/OptionsAmbientOcclusionFix net/minecraft/util/datafix/fixes/OptionsAmbientOcclusionFix +CL: net/minecraft/util/datafix/fixes/OptionsForceVBOFix net/minecraft/util/datafix/fixes/OptionsForceVBOFix +CL: net/minecraft/util/datafix/fixes/OptionsKeyLwjgl3Fix net/minecraft/util/datafix/fixes/OptionsKeyLwjgl3Fix +CL: net/minecraft/util/datafix/fixes/OptionsKeyTranslationFix net/minecraft/util/datafix/fixes/OptionsKeyTranslationFix +CL: net/minecraft/util/datafix/fixes/OptionsLowerCaseLanguageFix net/minecraft/util/datafix/fixes/OptionsLowerCaseLanguageFix +CL: net/minecraft/util/datafix/fixes/OptionsProgrammerArtFix net/minecraft/util/datafix/fixes/OptionsProgrammerArtFix +CL: net/minecraft/util/datafix/fixes/OptionsRenameFieldFix net/minecraft/util/datafix/fixes/OptionsRenameFieldFix +CL: net/minecraft/util/datafix/fixes/OverreachingTickFix net/minecraft/util/datafix/fixes/OverreachingTickFix +CL: net/minecraft/util/datafix/fixes/PlayerUUIDFix net/minecraft/util/datafix/fixes/PlayerUUIDFix +CL: net/minecraft/util/datafix/fixes/PoiTypeRemoveFix net/minecraft/util/datafix/fixes/PoiTypeRemoveFix +CL: net/minecraft/util/datafix/fixes/PoiTypeRenameFix net/minecraft/util/datafix/fixes/PoiTypeRenameFix +CL: net/minecraft/util/datafix/fixes/RecipesFix net/minecraft/util/datafix/fixes/RecipesFix +CL: net/minecraft/util/datafix/fixes/RecipesRenameningFix net/minecraft/util/datafix/fixes/RecipesRenameningFix +CL: net/minecraft/util/datafix/fixes/RedstoneWireConnectionsFix net/minecraft/util/datafix/fixes/RedstoneWireConnectionsFix +CL: net/minecraft/util/datafix/fixes/References net/minecraft/util/datafix/fixes/References +CL: net/minecraft/util/datafix/fixes/RemapChunkStatusFix net/minecraft/util/datafix/fixes/RemapChunkStatusFix +CL: net/minecraft/util/datafix/fixes/RemoveGolemGossipFix net/minecraft/util/datafix/fixes/RemoveGolemGossipFix +CL: net/minecraft/util/datafix/fixes/RenamedCoralFansFix net/minecraft/util/datafix/fixes/RenamedCoralFansFix +CL: net/minecraft/util/datafix/fixes/RenamedCoralFix net/minecraft/util/datafix/fixes/RenamedCoralFix +CL: net/minecraft/util/datafix/fixes/ReorganizePoi net/minecraft/util/datafix/fixes/ReorganizePoi +CL: net/minecraft/util/datafix/fixes/SavedDataFeaturePoolElementFix net/minecraft/util/datafix/fixes/SavedDataFeaturePoolElementFix +CL: net/minecraft/util/datafix/fixes/SavedDataUUIDFix net/minecraft/util/datafix/fixes/SavedDataUUIDFix +CL: net/minecraft/util/datafix/fixes/SimpleEntityRenameFix net/minecraft/util/datafix/fixes/SimpleEntityRenameFix +CL: net/minecraft/util/datafix/fixes/SimplestEntityRenameFix net/minecraft/util/datafix/fixes/SimplestEntityRenameFix +CL: net/minecraft/util/datafix/fixes/SpawnerDataFix net/minecraft/util/datafix/fixes/SpawnerDataFix +CL: net/minecraft/util/datafix/fixes/StatsCounterFix net/minecraft/util/datafix/fixes/StatsCounterFix +CL: net/minecraft/util/datafix/fixes/StatsRenameFix net/minecraft/util/datafix/fixes/StatsRenameFix +CL: net/minecraft/util/datafix/fixes/StriderGravityFix net/minecraft/util/datafix/fixes/StriderGravityFix +CL: net/minecraft/util/datafix/fixes/StructureReferenceCountFix net/minecraft/util/datafix/fixes/StructureReferenceCountFix +CL: net/minecraft/util/datafix/fixes/StructureSettingsFlattenFix net/minecraft/util/datafix/fixes/StructureSettingsFlattenFix +CL: net/minecraft/util/datafix/fixes/StructuresBecomeConfiguredFix net/minecraft/util/datafix/fixes/StructuresBecomeConfiguredFix +CL: net/minecraft/util/datafix/fixes/StructuresBecomeConfiguredFix$Conversion net/minecraft/util/datafix/fixes/StructuresBecomeConfiguredFix$Conversion +CL: net/minecraft/util/datafix/fixes/TeamDisplayNameFix net/minecraft/util/datafix/fixes/TeamDisplayNameFix +CL: net/minecraft/util/datafix/fixes/TrappedChestBlockEntityFix net/minecraft/util/datafix/fixes/TrappedChestBlockEntityFix +CL: net/minecraft/util/datafix/fixes/TrappedChestBlockEntityFix$TrappedChestSection net/minecraft/util/datafix/fixes/TrappedChestBlockEntityFix$TrappedChestSection +CL: net/minecraft/util/datafix/fixes/VariantRenameFix net/minecraft/util/datafix/fixes/VariantRenameFix +CL: net/minecraft/util/datafix/fixes/VillagerDataFix net/minecraft/util/datafix/fixes/VillagerDataFix +CL: net/minecraft/util/datafix/fixes/VillagerFollowRangeFix net/minecraft/util/datafix/fixes/VillagerFollowRangeFix +CL: net/minecraft/util/datafix/fixes/VillagerRebuildLevelAndXpFix net/minecraft/util/datafix/fixes/VillagerRebuildLevelAndXpFix +CL: net/minecraft/util/datafix/fixes/VillagerTradeFix net/minecraft/util/datafix/fixes/VillagerTradeFix +CL: net/minecraft/util/datafix/fixes/WallPropertyFix net/minecraft/util/datafix/fixes/WallPropertyFix +CL: net/minecraft/util/datafix/fixes/WeaponSmithChestLootTableFix net/minecraft/util/datafix/fixes/WeaponSmithChestLootTableFix +CL: net/minecraft/util/datafix/fixes/WorldGenSettingsDisallowOldCustomWorldsFix net/minecraft/util/datafix/fixes/WorldGenSettingsDisallowOldCustomWorldsFix +CL: net/minecraft/util/datafix/fixes/WorldGenSettingsFix net/minecraft/util/datafix/fixes/WorldGenSettingsFix +CL: net/minecraft/util/datafix/fixes/WorldGenSettingsFix$StructureFeatureConfiguration net/minecraft/util/datafix/fixes/WorldGenSettingsFix$StructureFeatureConfiguration +CL: net/minecraft/util/datafix/fixes/WorldGenSettingsHeightAndBiomeFix net/minecraft/util/datafix/fixes/WorldGenSettingsHeightAndBiomeFix +CL: net/minecraft/util/datafix/fixes/WriteAndReadFix net/minecraft/util/datafix/fixes/WriteAndReadFix +CL: net/minecraft/util/datafix/fixes/ZombieVillagerRebuildXpFix net/minecraft/util/datafix/fixes/ZombieVillagerRebuildXpFix +CL: net/minecraft/util/datafix/fixes/package-info net/minecraft/util/datafix/fixes/package-info +CL: net/minecraft/util/datafix/package-info net/minecraft/util/datafix/package-info +CL: net/minecraft/util/datafix/schemas/NamespacedSchema net/minecraft/util/datafix/schemas/NamespacedSchema +CL: net/minecraft/util/datafix/schemas/NamespacedSchema$1 net/minecraft/util/datafix/schemas/NamespacedSchema$1 +CL: net/minecraft/util/datafix/schemas/V100 net/minecraft/util/datafix/schemas/V100 +CL: net/minecraft/util/datafix/schemas/V102 net/minecraft/util/datafix/schemas/V102 +CL: net/minecraft/util/datafix/schemas/V1022 net/minecraft/util/datafix/schemas/V1022 +CL: net/minecraft/util/datafix/schemas/V106 net/minecraft/util/datafix/schemas/V106 +CL: net/minecraft/util/datafix/schemas/V107 net/minecraft/util/datafix/schemas/V107 +CL: net/minecraft/util/datafix/schemas/V1125 net/minecraft/util/datafix/schemas/V1125 +CL: net/minecraft/util/datafix/schemas/V135 net/minecraft/util/datafix/schemas/V135 +CL: net/minecraft/util/datafix/schemas/V143 net/minecraft/util/datafix/schemas/V143 +CL: net/minecraft/util/datafix/schemas/V1451 net/minecraft/util/datafix/schemas/V1451 +CL: net/minecraft/util/datafix/schemas/V1451_1 net/minecraft/util/datafix/schemas/V1451_1 +CL: net/minecraft/util/datafix/schemas/V1451_2 net/minecraft/util/datafix/schemas/V1451_2 +CL: net/minecraft/util/datafix/schemas/V1451_3 net/minecraft/util/datafix/schemas/V1451_3 +CL: net/minecraft/util/datafix/schemas/V1451_4 net/minecraft/util/datafix/schemas/V1451_4 +CL: net/minecraft/util/datafix/schemas/V1451_5 net/minecraft/util/datafix/schemas/V1451_5 +CL: net/minecraft/util/datafix/schemas/V1451_6 net/minecraft/util/datafix/schemas/V1451_6 +CL: net/minecraft/util/datafix/schemas/V1451_6$1 net/minecraft/util/datafix/schemas/V1451_6$1 +CL: net/minecraft/util/datafix/schemas/V1451_6$2 net/minecraft/util/datafix/schemas/V1451_6$2 +CL: net/minecraft/util/datafix/schemas/V1460 net/minecraft/util/datafix/schemas/V1460 +CL: net/minecraft/util/datafix/schemas/V1466 net/minecraft/util/datafix/schemas/V1466 +CL: net/minecraft/util/datafix/schemas/V1470 net/minecraft/util/datafix/schemas/V1470 +CL: net/minecraft/util/datafix/schemas/V1481 net/minecraft/util/datafix/schemas/V1481 +CL: net/minecraft/util/datafix/schemas/V1483 net/minecraft/util/datafix/schemas/V1483 +CL: net/minecraft/util/datafix/schemas/V1486 net/minecraft/util/datafix/schemas/V1486 +CL: net/minecraft/util/datafix/schemas/V1510 net/minecraft/util/datafix/schemas/V1510 +CL: net/minecraft/util/datafix/schemas/V1800 net/minecraft/util/datafix/schemas/V1800 +CL: net/minecraft/util/datafix/schemas/V1801 net/minecraft/util/datafix/schemas/V1801 +CL: net/minecraft/util/datafix/schemas/V1904 net/minecraft/util/datafix/schemas/V1904 +CL: net/minecraft/util/datafix/schemas/V1906 net/minecraft/util/datafix/schemas/V1906 +CL: net/minecraft/util/datafix/schemas/V1909 net/minecraft/util/datafix/schemas/V1909 +CL: net/minecraft/util/datafix/schemas/V1920 net/minecraft/util/datafix/schemas/V1920 +CL: net/minecraft/util/datafix/schemas/V1928 net/minecraft/util/datafix/schemas/V1928 +CL: net/minecraft/util/datafix/schemas/V1929 net/minecraft/util/datafix/schemas/V1929 +CL: net/minecraft/util/datafix/schemas/V1931 net/minecraft/util/datafix/schemas/V1931 +CL: net/minecraft/util/datafix/schemas/V2100 net/minecraft/util/datafix/schemas/V2100 +CL: net/minecraft/util/datafix/schemas/V2501 net/minecraft/util/datafix/schemas/V2501 +CL: net/minecraft/util/datafix/schemas/V2502 net/minecraft/util/datafix/schemas/V2502 +CL: net/minecraft/util/datafix/schemas/V2505 net/minecraft/util/datafix/schemas/V2505 +CL: net/minecraft/util/datafix/schemas/V2509 net/minecraft/util/datafix/schemas/V2509 +CL: net/minecraft/util/datafix/schemas/V2519 net/minecraft/util/datafix/schemas/V2519 +CL: net/minecraft/util/datafix/schemas/V2522 net/minecraft/util/datafix/schemas/V2522 +CL: net/minecraft/util/datafix/schemas/V2551 net/minecraft/util/datafix/schemas/V2551 +CL: net/minecraft/util/datafix/schemas/V2568 net/minecraft/util/datafix/schemas/V2568 +CL: net/minecraft/util/datafix/schemas/V2571 net/minecraft/util/datafix/schemas/V2571 +CL: net/minecraft/util/datafix/schemas/V2684 net/minecraft/util/datafix/schemas/V2684 +CL: net/minecraft/util/datafix/schemas/V2686 net/minecraft/util/datafix/schemas/V2686 +CL: net/minecraft/util/datafix/schemas/V2688 net/minecraft/util/datafix/schemas/V2688 +CL: net/minecraft/util/datafix/schemas/V2704 net/minecraft/util/datafix/schemas/V2704 +CL: net/minecraft/util/datafix/schemas/V2707 net/minecraft/util/datafix/schemas/V2707 +CL: net/minecraft/util/datafix/schemas/V2831 net/minecraft/util/datafix/schemas/V2831 +CL: net/minecraft/util/datafix/schemas/V2832 net/minecraft/util/datafix/schemas/V2832 +CL: net/minecraft/util/datafix/schemas/V2842 net/minecraft/util/datafix/schemas/V2842 +CL: net/minecraft/util/datafix/schemas/V3076 net/minecraft/util/datafix/schemas/V3076 +CL: net/minecraft/util/datafix/schemas/V3078 net/minecraft/util/datafix/schemas/V3078 +CL: net/minecraft/util/datafix/schemas/V3081 net/minecraft/util/datafix/schemas/V3081 +CL: net/minecraft/util/datafix/schemas/V3082 net/minecraft/util/datafix/schemas/V3082 +CL: net/minecraft/util/datafix/schemas/V3083 net/minecraft/util/datafix/schemas/V3083 +CL: net/minecraft/util/datafix/schemas/V3202 net/minecraft/util/datafix/schemas/V3202 +CL: net/minecraft/util/datafix/schemas/V3203 net/minecraft/util/datafix/schemas/V3203 +CL: net/minecraft/util/datafix/schemas/V3204 net/minecraft/util/datafix/schemas/V3204 +CL: net/minecraft/util/datafix/schemas/V3325 net/minecraft/util/datafix/schemas/V3325 +CL: net/minecraft/util/datafix/schemas/V3326 net/minecraft/util/datafix/schemas/V3326 +CL: net/minecraft/util/datafix/schemas/V3327 net/minecraft/util/datafix/schemas/V3327 +CL: net/minecraft/util/datafix/schemas/V3328 net/minecraft/util/datafix/schemas/V3328 +CL: net/minecraft/util/datafix/schemas/V3438 net/minecraft/util/datafix/schemas/V3438 +CL: net/minecraft/util/datafix/schemas/V3448 net/minecraft/util/datafix/schemas/V3448 +CL: net/minecraft/util/datafix/schemas/V501 net/minecraft/util/datafix/schemas/V501 +CL: net/minecraft/util/datafix/schemas/V700 net/minecraft/util/datafix/schemas/V700 +CL: net/minecraft/util/datafix/schemas/V701 net/minecraft/util/datafix/schemas/V701 +CL: net/minecraft/util/datafix/schemas/V702 net/minecraft/util/datafix/schemas/V702 +CL: net/minecraft/util/datafix/schemas/V703 net/minecraft/util/datafix/schemas/V703 +CL: net/minecraft/util/datafix/schemas/V704 net/minecraft/util/datafix/schemas/V704 +CL: net/minecraft/util/datafix/schemas/V704$1 net/minecraft/util/datafix/schemas/V704$1 +CL: net/minecraft/util/datafix/schemas/V705 net/minecraft/util/datafix/schemas/V705 +CL: net/minecraft/util/datafix/schemas/V705$1 net/minecraft/util/datafix/schemas/V705$1 +CL: net/minecraft/util/datafix/schemas/V808 net/minecraft/util/datafix/schemas/V808 +CL: net/minecraft/util/datafix/schemas/V99 net/minecraft/util/datafix/schemas/V99 +CL: net/minecraft/util/datafix/schemas/V99$1 net/minecraft/util/datafix/schemas/V99$1 +CL: net/minecraft/util/datafix/schemas/package-info net/minecraft/util/datafix/schemas/package-info +CL: net/minecraft/util/eventlog/EventLogDirectory net/minecraft/util/eventlog/EventLogDirectory +CL: net/minecraft/util/eventlog/EventLogDirectory$CompressedFile net/minecraft/util/eventlog/EventLogDirectory$CompressedFile +CL: net/minecraft/util/eventlog/EventLogDirectory$File net/minecraft/util/eventlog/EventLogDirectory$File +CL: net/minecraft/util/eventlog/EventLogDirectory$FileId net/minecraft/util/eventlog/EventLogDirectory$FileId +CL: net/minecraft/util/eventlog/EventLogDirectory$FileList net/minecraft/util/eventlog/EventLogDirectory$FileList +CL: net/minecraft/util/eventlog/EventLogDirectory$RawFile net/minecraft/util/eventlog/EventLogDirectory$RawFile +CL: net/minecraft/util/eventlog/JsonEventLog net/minecraft/util/eventlog/JsonEventLog +CL: net/minecraft/util/eventlog/JsonEventLog$1 net/minecraft/util/eventlog/JsonEventLog$1 +CL: net/minecraft/util/eventlog/JsonEventLogReader net/minecraft/util/eventlog/JsonEventLogReader +CL: net/minecraft/util/eventlog/JsonEventLogReader$1 net/minecraft/util/eventlog/JsonEventLogReader$1 +CL: net/minecraft/util/eventlog/package-info net/minecraft/util/eventlog/package-info +CL: net/minecraft/util/monitoring/jmx/MinecraftServerStatistics net/minecraft/util/monitoring/jmx/MinecraftServerStatistics +CL: net/minecraft/util/monitoring/jmx/MinecraftServerStatistics$AttributeDescription net/minecraft/util/monitoring/jmx/MinecraftServerStatistics$AttributeDescription +CL: net/minecraft/util/monitoring/jmx/package-info net/minecraft/util/monitoring/jmx/package-info +CL: net/minecraft/util/package-info net/minecraft/util/package-info +CL: net/minecraft/util/profiling/ActiveProfiler net/minecraft/util/profiling/ActiveProfiler +CL: net/minecraft/util/profiling/ActiveProfiler$PathEntry net/minecraft/util/profiling/ActiveProfiler$PathEntry +CL: net/minecraft/util/profiling/ContinuousProfiler net/minecraft/util/profiling/ContinuousProfiler +CL: net/minecraft/util/profiling/EmptyProfileResults net/minecraft/util/profiling/EmptyProfileResults +CL: net/minecraft/util/profiling/FilledProfileResults net/minecraft/util/profiling/FilledProfileResults +CL: net/minecraft/util/profiling/FilledProfileResults$1 net/minecraft/util/profiling/FilledProfileResults$1 +CL: net/minecraft/util/profiling/FilledProfileResults$CounterCollector net/minecraft/util/profiling/FilledProfileResults$CounterCollector +CL: net/minecraft/util/profiling/InactiveProfiler net/minecraft/util/profiling/InactiveProfiler +CL: net/minecraft/util/profiling/ProfileCollector net/minecraft/util/profiling/ProfileCollector +CL: net/minecraft/util/profiling/ProfileResults net/minecraft/util/profiling/ProfileResults +CL: net/minecraft/util/profiling/ProfilerFiller net/minecraft/util/profiling/ProfilerFiller +CL: net/minecraft/util/profiling/ProfilerFiller$1 net/minecraft/util/profiling/ProfilerFiller$1 +CL: net/minecraft/util/profiling/ProfilerPathEntry net/minecraft/util/profiling/ProfilerPathEntry +CL: net/minecraft/util/profiling/ResultField net/minecraft/util/profiling/ResultField +CL: net/minecraft/util/profiling/SingleTickProfiler net/minecraft/util/profiling/SingleTickProfiler +CL: net/minecraft/util/profiling/jfr/Environment net/minecraft/util/profiling/jfr/Environment +CL: net/minecraft/util/profiling/jfr/JfrProfiler net/minecraft/util/profiling/jfr/JfrProfiler +CL: net/minecraft/util/profiling/jfr/JfrProfiler$1 net/minecraft/util/profiling/jfr/JfrProfiler$1 +CL: net/minecraft/util/profiling/jfr/JvmProfiler net/minecraft/util/profiling/jfr/JvmProfiler +CL: net/minecraft/util/profiling/jfr/JvmProfiler$NoOpProfiler net/minecraft/util/profiling/jfr/JvmProfiler$NoOpProfiler +CL: net/minecraft/util/profiling/jfr/Percentiles net/minecraft/util/profiling/jfr/Percentiles +CL: net/minecraft/util/profiling/jfr/SummaryReporter net/minecraft/util/profiling/jfr/SummaryReporter +CL: net/minecraft/util/profiling/jfr/callback/ProfiledDuration net/minecraft/util/profiling/jfr/callback/ProfiledDuration +CL: net/minecraft/util/profiling/jfr/callback/package-info net/minecraft/util/profiling/jfr/callback/package-info +CL: net/minecraft/util/profiling/jfr/event/ChunkGenerationEvent net/minecraft/util/profiling/jfr/event/ChunkGenerationEvent +CL: net/minecraft/util/profiling/jfr/event/ChunkGenerationEvent$Fields net/minecraft/util/profiling/jfr/event/ChunkGenerationEvent$Fields +CL: net/minecraft/util/profiling/jfr/event/NetworkSummaryEvent net/minecraft/util/profiling/jfr/event/NetworkSummaryEvent +CL: net/minecraft/util/profiling/jfr/event/NetworkSummaryEvent$Fields net/minecraft/util/profiling/jfr/event/NetworkSummaryEvent$Fields +CL: net/minecraft/util/profiling/jfr/event/NetworkSummaryEvent$SumAggregation net/minecraft/util/profiling/jfr/event/NetworkSummaryEvent$SumAggregation +CL: net/minecraft/util/profiling/jfr/event/PacketEvent net/minecraft/util/profiling/jfr/event/PacketEvent +CL: net/minecraft/util/profiling/jfr/event/PacketEvent$Fields net/minecraft/util/profiling/jfr/event/PacketEvent$Fields +CL: net/minecraft/util/profiling/jfr/event/PacketReceivedEvent net/minecraft/util/profiling/jfr/event/PacketReceivedEvent +CL: net/minecraft/util/profiling/jfr/event/PacketSentEvent net/minecraft/util/profiling/jfr/event/PacketSentEvent +CL: net/minecraft/util/profiling/jfr/event/ServerTickTimeEvent net/minecraft/util/profiling/jfr/event/ServerTickTimeEvent +CL: net/minecraft/util/profiling/jfr/event/ServerTickTimeEvent$Fields net/minecraft/util/profiling/jfr/event/ServerTickTimeEvent$Fields +CL: net/minecraft/util/profiling/jfr/event/WorldLoadFinishedEvent net/minecraft/util/profiling/jfr/event/WorldLoadFinishedEvent +CL: net/minecraft/util/profiling/jfr/event/package-info net/minecraft/util/profiling/jfr/event/package-info +CL: net/minecraft/util/profiling/jfr/package-info net/minecraft/util/profiling/jfr/package-info +CL: net/minecraft/util/profiling/jfr/parse/JfrStatsParser net/minecraft/util/profiling/jfr/parse/JfrStatsParser +CL: net/minecraft/util/profiling/jfr/parse/JfrStatsParser$1 net/minecraft/util/profiling/jfr/parse/JfrStatsParser$1 +CL: net/minecraft/util/profiling/jfr/parse/JfrStatsParser$MutableCountAndSize net/minecraft/util/profiling/jfr/parse/JfrStatsParser$MutableCountAndSize +CL: net/minecraft/util/profiling/jfr/parse/JfrStatsResult net/minecraft/util/profiling/jfr/parse/JfrStatsResult +CL: net/minecraft/util/profiling/jfr/parse/package-info net/minecraft/util/profiling/jfr/parse/package-info +CL: net/minecraft/util/profiling/jfr/serialize/JfrResultJsonSerializer net/minecraft/util/profiling/jfr/serialize/JfrResultJsonSerializer +CL: net/minecraft/util/profiling/jfr/serialize/package-info net/minecraft/util/profiling/jfr/serialize/package-info +CL: net/minecraft/util/profiling/jfr/stats/ChunkGenStat net/minecraft/util/profiling/jfr/stats/ChunkGenStat +CL: net/minecraft/util/profiling/jfr/stats/CpuLoadStat net/minecraft/util/profiling/jfr/stats/CpuLoadStat +CL: net/minecraft/util/profiling/jfr/stats/FileIOStat net/minecraft/util/profiling/jfr/stats/FileIOStat +CL: net/minecraft/util/profiling/jfr/stats/FileIOStat$Summary net/minecraft/util/profiling/jfr/stats/FileIOStat$Summary +CL: net/minecraft/util/profiling/jfr/stats/GcHeapStat net/minecraft/util/profiling/jfr/stats/GcHeapStat +CL: net/minecraft/util/profiling/jfr/stats/GcHeapStat$Summary net/minecraft/util/profiling/jfr/stats/GcHeapStat$Summary +CL: net/minecraft/util/profiling/jfr/stats/GcHeapStat$Timing net/minecraft/util/profiling/jfr/stats/GcHeapStat$Timing +CL: net/minecraft/util/profiling/jfr/stats/NetworkPacketSummary net/minecraft/util/profiling/jfr/stats/NetworkPacketSummary +CL: net/minecraft/util/profiling/jfr/stats/NetworkPacketSummary$PacketCountAndSize net/minecraft/util/profiling/jfr/stats/NetworkPacketSummary$PacketCountAndSize +CL: net/minecraft/util/profiling/jfr/stats/NetworkPacketSummary$PacketIdentification net/minecraft/util/profiling/jfr/stats/NetworkPacketSummary$PacketIdentification +CL: net/minecraft/util/profiling/jfr/stats/ThreadAllocationStat net/minecraft/util/profiling/jfr/stats/ThreadAllocationStat +CL: net/minecraft/util/profiling/jfr/stats/ThreadAllocationStat$Summary net/minecraft/util/profiling/jfr/stats/ThreadAllocationStat$Summary +CL: net/minecraft/util/profiling/jfr/stats/TickTimeStat net/minecraft/util/profiling/jfr/stats/TickTimeStat +CL: net/minecraft/util/profiling/jfr/stats/TimeStamped net/minecraft/util/profiling/jfr/stats/TimeStamped +CL: net/minecraft/util/profiling/jfr/stats/TimedStat net/minecraft/util/profiling/jfr/stats/TimedStat +CL: net/minecraft/util/profiling/jfr/stats/TimedStatSummary net/minecraft/util/profiling/jfr/stats/TimedStatSummary +CL: net/minecraft/util/profiling/jfr/stats/package-info net/minecraft/util/profiling/jfr/stats/package-info +CL: net/minecraft/util/profiling/metrics/MetricCategory net/minecraft/util/profiling/metrics/MetricCategory +CL: net/minecraft/util/profiling/metrics/MetricSampler net/minecraft/util/profiling/metrics/MetricSampler +CL: net/minecraft/util/profiling/metrics/MetricSampler$MetricSamplerBuilder net/minecraft/util/profiling/metrics/MetricSampler$MetricSamplerBuilder +CL: net/minecraft/util/profiling/metrics/MetricSampler$SamplerResult net/minecraft/util/profiling/metrics/MetricSampler$SamplerResult +CL: net/minecraft/util/profiling/metrics/MetricSampler$ThresholdTest net/minecraft/util/profiling/metrics/MetricSampler$ThresholdTest +CL: net/minecraft/util/profiling/metrics/MetricSampler$ValueIncreasedByPercentage net/minecraft/util/profiling/metrics/MetricSampler$ValueIncreasedByPercentage +CL: net/minecraft/util/profiling/metrics/MetricsRegistry net/minecraft/util/profiling/metrics/MetricsRegistry +CL: net/minecraft/util/profiling/metrics/MetricsRegistry$AggregatedMetricSampler net/minecraft/util/profiling/metrics/MetricsRegistry$AggregatedMetricSampler +CL: net/minecraft/util/profiling/metrics/MetricsSamplerProvider net/minecraft/util/profiling/metrics/MetricsSamplerProvider +CL: net/minecraft/util/profiling/metrics/ProfilerMeasured net/minecraft/util/profiling/metrics/ProfilerMeasured +CL: net/minecraft/util/profiling/metrics/package-info net/minecraft/util/profiling/metrics/package-info +CL: net/minecraft/util/profiling/metrics/profiling/ActiveMetricsRecorder net/minecraft/util/profiling/metrics/profiling/ActiveMetricsRecorder +CL: net/minecraft/util/profiling/metrics/profiling/InactiveMetricsRecorder net/minecraft/util/profiling/metrics/profiling/InactiveMetricsRecorder +CL: net/minecraft/util/profiling/metrics/profiling/MetricsRecorder net/minecraft/util/profiling/metrics/profiling/MetricsRecorder +CL: net/minecraft/util/profiling/metrics/profiling/ProfilerSamplerAdapter net/minecraft/util/profiling/metrics/profiling/ProfilerSamplerAdapter +CL: net/minecraft/util/profiling/metrics/profiling/ServerMetricsSamplersProvider net/minecraft/util/profiling/metrics/profiling/ServerMetricsSamplersProvider +CL: net/minecraft/util/profiling/metrics/profiling/ServerMetricsSamplersProvider$1 net/minecraft/util/profiling/metrics/profiling/ServerMetricsSamplersProvider$1 +CL: net/minecraft/util/profiling/metrics/profiling/ServerMetricsSamplersProvider$CpuStats net/minecraft/util/profiling/metrics/profiling/ServerMetricsSamplersProvider$CpuStats +CL: net/minecraft/util/profiling/metrics/profiling/package-info net/minecraft/util/profiling/metrics/profiling/package-info +CL: net/minecraft/util/profiling/metrics/storage/MetricsPersister net/minecraft/util/profiling/metrics/storage/MetricsPersister +CL: net/minecraft/util/profiling/metrics/storage/RecordedDeviation net/minecraft/util/profiling/metrics/storage/RecordedDeviation +CL: net/minecraft/util/profiling/metrics/storage/package-info net/minecraft/util/profiling/metrics/storage/package-info +CL: net/minecraft/util/profiling/package-info net/minecraft/util/profiling/package-info +CL: net/minecraft/util/random/SimpleWeightedRandomList net/minecraft/util/random/SimpleWeightedRandomList +CL: net/minecraft/util/random/SimpleWeightedRandomList$Builder net/minecraft/util/random/SimpleWeightedRandomList$Builder +CL: net/minecraft/util/random/Weight net/minecraft/util/random/Weight +CL: net/minecraft/util/random/WeightedEntry net/minecraft/util/random/WeightedEntry +CL: net/minecraft/util/random/WeightedEntry$IntrusiveBase net/minecraft/util/random/WeightedEntry$IntrusiveBase +CL: net/minecraft/util/random/WeightedEntry$Wrapper net/minecraft/util/random/WeightedEntry$Wrapper +CL: net/minecraft/util/random/WeightedRandom net/minecraft/util/random/WeightedRandom +CL: net/minecraft/util/random/WeightedRandomList net/minecraft/util/random/WeightedRandomList +CL: net/minecraft/util/random/package-info net/minecraft/util/random/package-info +CL: net/minecraft/util/thread/BlockableEventLoop net/minecraft/util/thread/BlockableEventLoop +CL: net/minecraft/util/thread/NamedThreadFactory net/minecraft/util/thread/NamedThreadFactory +CL: net/minecraft/util/thread/ProcessorHandle net/minecraft/util/thread/ProcessorHandle +CL: net/minecraft/util/thread/ProcessorHandle$1 net/minecraft/util/thread/ProcessorHandle$1 +CL: net/minecraft/util/thread/ProcessorMailbox net/minecraft/util/thread/ProcessorMailbox +CL: net/minecraft/util/thread/ReentrantBlockableEventLoop net/minecraft/util/thread/ReentrantBlockableEventLoop +CL: net/minecraft/util/thread/StrictQueue net/minecraft/util/thread/StrictQueue +CL: net/minecraft/util/thread/StrictQueue$FixedPriorityQueue net/minecraft/util/thread/StrictQueue$FixedPriorityQueue +CL: net/minecraft/util/thread/StrictQueue$IntRunnable net/minecraft/util/thread/StrictQueue$IntRunnable +CL: net/minecraft/util/thread/StrictQueue$QueueStrictQueue net/minecraft/util/thread/StrictQueue$QueueStrictQueue +CL: net/minecraft/util/thread/package-info net/minecraft/util/thread/package-info +CL: net/minecraft/util/valueproviders/BiasedToBottomInt net/minecraft/util/valueproviders/BiasedToBottomInt +CL: net/minecraft/util/valueproviders/ClampedInt net/minecraft/util/valueproviders/ClampedInt +CL: net/minecraft/util/valueproviders/ClampedNormalFloat net/minecraft/util/valueproviders/ClampedNormalFloat +CL: net/minecraft/util/valueproviders/ClampedNormalInt net/minecraft/util/valueproviders/ClampedNormalInt +CL: net/minecraft/util/valueproviders/ConstantFloat net/minecraft/util/valueproviders/ConstantFloat +CL: net/minecraft/util/valueproviders/ConstantInt net/minecraft/util/valueproviders/ConstantInt +CL: net/minecraft/util/valueproviders/FloatProvider net/minecraft/util/valueproviders/FloatProvider +CL: net/minecraft/util/valueproviders/FloatProviderType net/minecraft/util/valueproviders/FloatProviderType +CL: net/minecraft/util/valueproviders/IntProvider net/minecraft/util/valueproviders/IntProvider +CL: net/minecraft/util/valueproviders/IntProviderType net/minecraft/util/valueproviders/IntProviderType +CL: net/minecraft/util/valueproviders/MultipliedFloats net/minecraft/util/valueproviders/MultipliedFloats +CL: net/minecraft/util/valueproviders/SampledFloat net/minecraft/util/valueproviders/SampledFloat +CL: net/minecraft/util/valueproviders/TrapezoidFloat net/minecraft/util/valueproviders/TrapezoidFloat +CL: net/minecraft/util/valueproviders/UniformFloat net/minecraft/util/valueproviders/UniformFloat +CL: net/minecraft/util/valueproviders/UniformInt net/minecraft/util/valueproviders/UniformInt +CL: net/minecraft/util/valueproviders/WeightedListInt net/minecraft/util/valueproviders/WeightedListInt +CL: net/minecraft/util/valueproviders/package-info net/minecraft/util/valueproviders/package-info +CL: net/minecraft/util/worldupdate/WorldUpgrader net/minecraft/util/worldupdate/WorldUpgrader +CL: net/minecraft/util/worldupdate/package-info net/minecraft/util/worldupdate/package-info +CL: net/minecraft/world/BossEvent net/minecraft/world/BossEvent +CL: net/minecraft/world/BossEvent$BossBarColor net/minecraft/world/BossEvent$BossBarColor +CL: net/minecraft/world/BossEvent$BossBarOverlay net/minecraft/world/BossEvent$BossBarOverlay +CL: net/minecraft/world/Clearable net/minecraft/world/Clearable +CL: net/minecraft/world/CompoundContainer net/minecraft/world/CompoundContainer +CL: net/minecraft/world/Container net/minecraft/world/Container +CL: net/minecraft/world/ContainerHelper net/minecraft/world/ContainerHelper +CL: net/minecraft/world/ContainerListener net/minecraft/world/ContainerListener +CL: net/minecraft/world/Containers net/minecraft/world/Containers +CL: net/minecraft/world/Difficulty net/minecraft/world/Difficulty +CL: net/minecraft/world/DifficultyInstance net/minecraft/world/DifficultyInstance +CL: net/minecraft/world/InteractionHand net/minecraft/world/InteractionHand +CL: net/minecraft/world/InteractionResult net/minecraft/world/InteractionResult +CL: net/minecraft/world/InteractionResultHolder net/minecraft/world/InteractionResultHolder +CL: net/minecraft/world/LockCode net/minecraft/world/LockCode +CL: net/minecraft/world/MenuProvider net/minecraft/world/MenuProvider +CL: net/minecraft/world/Nameable net/minecraft/world/Nameable +CL: net/minecraft/world/RandomSequence net/minecraft/world/RandomSequence +CL: net/minecraft/world/RandomSequences net/minecraft/world/RandomSequences +CL: net/minecraft/world/RandomSequences$1 net/minecraft/world/RandomSequences$1 +CL: net/minecraft/world/SimpleContainer net/minecraft/world/SimpleContainer +CL: net/minecraft/world/SimpleMenuProvider net/minecraft/world/SimpleMenuProvider +CL: net/minecraft/world/WorldlyContainer net/minecraft/world/WorldlyContainer +CL: net/minecraft/world/WorldlyContainerHolder net/minecraft/world/WorldlyContainerHolder +CL: net/minecraft/world/damagesource/CombatEntry net/minecraft/world/damagesource/CombatEntry +CL: net/minecraft/world/damagesource/CombatRules net/minecraft/world/damagesource/CombatRules +CL: net/minecraft/world/damagesource/CombatTracker net/minecraft/world/damagesource/CombatTracker +CL: net/minecraft/world/damagesource/DamageEffects net/minecraft/world/damagesource/DamageEffects +CL: net/minecraft/world/damagesource/DamageScaling net/minecraft/world/damagesource/DamageScaling +CL: net/minecraft/world/damagesource/DamageSource net/minecraft/world/damagesource/DamageSource +CL: net/minecraft/world/damagesource/DamageSource$1 net/minecraft/world/damagesource/DamageSource$1 +CL: net/minecraft/world/damagesource/DamageSources net/minecraft/world/damagesource/DamageSources +CL: net/minecraft/world/damagesource/DamageType net/minecraft/world/damagesource/DamageType +CL: net/minecraft/world/damagesource/DamageTypes net/minecraft/world/damagesource/DamageTypes +CL: net/minecraft/world/damagesource/DeathMessageType net/minecraft/world/damagesource/DeathMessageType +CL: net/minecraft/world/damagesource/FallLocation net/minecraft/world/damagesource/FallLocation +CL: net/minecraft/world/damagesource/package-info net/minecraft/world/damagesource/package-info +CL: net/minecraft/world/effect/AbsoptionMobEffect net/minecraft/world/effect/AbsoptionMobEffect +CL: net/minecraft/world/effect/AttackDamageMobEffect net/minecraft/world/effect/AttackDamageMobEffect +CL: net/minecraft/world/effect/HealthBoostMobEffect net/minecraft/world/effect/HealthBoostMobEffect +CL: net/minecraft/world/effect/InstantenousMobEffect net/minecraft/world/effect/InstantenousMobEffect +CL: net/minecraft/world/effect/MobEffect net/minecraft/world/effect/MobEffect +CL: net/minecraft/world/effect/MobEffectCategory net/minecraft/world/effect/MobEffectCategory +CL: net/minecraft/world/effect/MobEffectInstance net/minecraft/world/effect/MobEffectInstance +CL: net/minecraft/world/effect/MobEffectInstance$FactorData net/minecraft/world/effect/MobEffectInstance$FactorData +CL: net/minecraft/world/effect/MobEffectUtil net/minecraft/world/effect/MobEffectUtil +CL: net/minecraft/world/effect/MobEffects net/minecraft/world/effect/MobEffects +CL: net/minecraft/world/effect/MobEffects$1 net/minecraft/world/effect/MobEffects$1 +CL: net/minecraft/world/effect/package-info net/minecraft/world/effect/package-info +CL: net/minecraft/world/entity/AgeableMob net/minecraft/world/entity/AgeableMob +CL: net/minecraft/world/entity/AgeableMob$AgeableMobGroupData net/minecraft/world/entity/AgeableMob$AgeableMobGroupData +CL: net/minecraft/world/entity/AnimationState net/minecraft/world/entity/AnimationState +CL: net/minecraft/world/entity/AreaEffectCloud net/minecraft/world/entity/AreaEffectCloud +CL: net/minecraft/world/entity/Attackable net/minecraft/world/entity/Attackable +CL: net/minecraft/world/entity/Display net/minecraft/world/entity/Display +CL: net/minecraft/world/entity/Display$1 net/minecraft/world/entity/Display$1 +CL: net/minecraft/world/entity/Display$BillboardConstraints net/minecraft/world/entity/Display$BillboardConstraints +CL: net/minecraft/world/entity/Display$BlockDisplay net/minecraft/world/entity/Display$BlockDisplay +CL: net/minecraft/world/entity/Display$BlockDisplay$BlockRenderState net/minecraft/world/entity/Display$BlockDisplay$BlockRenderState +CL: net/minecraft/world/entity/Display$ColorInterpolator net/minecraft/world/entity/Display$ColorInterpolator +CL: net/minecraft/world/entity/Display$FloatInterpolator net/minecraft/world/entity/Display$FloatInterpolator +CL: net/minecraft/world/entity/Display$GenericInterpolator net/minecraft/world/entity/Display$GenericInterpolator +CL: net/minecraft/world/entity/Display$IntInterpolator net/minecraft/world/entity/Display$IntInterpolator +CL: net/minecraft/world/entity/Display$ItemDisplay net/minecraft/world/entity/Display$ItemDisplay +CL: net/minecraft/world/entity/Display$ItemDisplay$1 net/minecraft/world/entity/Display$ItemDisplay$1 +CL: net/minecraft/world/entity/Display$ItemDisplay$ItemRenderState net/minecraft/world/entity/Display$ItemDisplay$ItemRenderState +CL: net/minecraft/world/entity/Display$LinearFloatInterpolator net/minecraft/world/entity/Display$LinearFloatInterpolator +CL: net/minecraft/world/entity/Display$LinearIntInterpolator net/minecraft/world/entity/Display$LinearIntInterpolator +CL: net/minecraft/world/entity/Display$RenderState net/minecraft/world/entity/Display$RenderState +CL: net/minecraft/world/entity/Display$TextDisplay net/minecraft/world/entity/Display$TextDisplay +CL: net/minecraft/world/entity/Display$TextDisplay$Align net/minecraft/world/entity/Display$TextDisplay$Align +CL: net/minecraft/world/entity/Display$TextDisplay$CachedInfo net/minecraft/world/entity/Display$TextDisplay$CachedInfo +CL: net/minecraft/world/entity/Display$TextDisplay$CachedLine net/minecraft/world/entity/Display$TextDisplay$CachedLine +CL: net/minecraft/world/entity/Display$TextDisplay$LineSplitter net/minecraft/world/entity/Display$TextDisplay$LineSplitter +CL: net/minecraft/world/entity/Display$TextDisplay$TextRenderState net/minecraft/world/entity/Display$TextDisplay$TextRenderState +CL: net/minecraft/world/entity/Display$TransformationInterpolator net/minecraft/world/entity/Display$TransformationInterpolator +CL: net/minecraft/world/entity/Entity net/minecraft/world/entity/Entity +CL: net/minecraft/world/entity/Entity$1 net/minecraft/world/entity/Entity$1 +CL: net/minecraft/world/entity/Entity$MoveFunction net/minecraft/world/entity/Entity$MoveFunction +CL: net/minecraft/world/entity/Entity$MovementEmission net/minecraft/world/entity/Entity$MovementEmission +CL: net/minecraft/world/entity/Entity$RemovalReason net/minecraft/world/entity/Entity$RemovalReason +CL: net/minecraft/world/entity/EntityDimensions net/minecraft/world/entity/EntityDimensions +CL: net/minecraft/world/entity/EntityEvent net/minecraft/world/entity/EntityEvent +CL: net/minecraft/world/entity/EntitySelector net/minecraft/world/entity/EntitySelector +CL: net/minecraft/world/entity/EntitySelector$MobCanWearArmorEntitySelector net/minecraft/world/entity/EntitySelector$MobCanWearArmorEntitySelector +CL: net/minecraft/world/entity/EntityType net/minecraft/world/entity/EntityType +CL: net/minecraft/world/entity/EntityType$1 net/minecraft/world/entity/EntityType$1 +CL: net/minecraft/world/entity/EntityType$Builder net/minecraft/world/entity/EntityType$Builder +CL: net/minecraft/world/entity/EntityType$EntityFactory net/minecraft/world/entity/EntityType$EntityFactory +CL: net/minecraft/world/entity/EquipmentSlot net/minecraft/world/entity/EquipmentSlot +CL: net/minecraft/world/entity/EquipmentSlot$Type net/minecraft/world/entity/EquipmentSlot$Type +CL: net/minecraft/world/entity/ExperienceOrb net/minecraft/world/entity/ExperienceOrb +CL: net/minecraft/world/entity/FlyingMob net/minecraft/world/entity/FlyingMob +CL: net/minecraft/world/entity/GlowSquid net/minecraft/world/entity/GlowSquid +CL: net/minecraft/world/entity/HasCustomInventoryScreen net/minecraft/world/entity/HasCustomInventoryScreen +CL: net/minecraft/world/entity/HumanoidArm net/minecraft/world/entity/HumanoidArm +CL: net/minecraft/world/entity/Interaction net/minecraft/world/entity/Interaction +CL: net/minecraft/world/entity/Interaction$PlayerAction net/minecraft/world/entity/Interaction$PlayerAction +CL: net/minecraft/world/entity/ItemBasedSteering net/minecraft/world/entity/ItemBasedSteering +CL: net/minecraft/world/entity/ItemSteerable net/minecraft/world/entity/ItemSteerable +CL: net/minecraft/world/entity/LerpingModel net/minecraft/world/entity/LerpingModel +CL: net/minecraft/world/entity/LightningBolt net/minecraft/world/entity/LightningBolt +CL: net/minecraft/world/entity/LivingEntity net/minecraft/world/entity/LivingEntity +CL: net/minecraft/world/entity/LivingEntity$1 net/minecraft/world/entity/LivingEntity$1 +CL: net/minecraft/world/entity/LivingEntity$Fallsounds net/minecraft/world/entity/LivingEntity$Fallsounds +CL: net/minecraft/world/entity/Marker net/minecraft/world/entity/Marker +CL: net/minecraft/world/entity/Mob net/minecraft/world/entity/Mob +CL: net/minecraft/world/entity/Mob$1 net/minecraft/world/entity/Mob$1 +CL: net/minecraft/world/entity/MobCategory net/minecraft/world/entity/MobCategory +CL: net/minecraft/world/entity/MobSpawnType net/minecraft/world/entity/MobSpawnType +CL: net/minecraft/world/entity/MobType net/minecraft/world/entity/MobType +CL: net/minecraft/world/entity/MoverType net/minecraft/world/entity/MoverType +CL: net/minecraft/world/entity/NeutralMob net/minecraft/world/entity/NeutralMob +CL: net/minecraft/world/entity/OwnableEntity net/minecraft/world/entity/OwnableEntity +CL: net/minecraft/world/entity/PathfinderMob net/minecraft/world/entity/PathfinderMob +CL: net/minecraft/world/entity/PlayerRideable net/minecraft/world/entity/PlayerRideable +CL: net/minecraft/world/entity/PlayerRideableJumping net/minecraft/world/entity/PlayerRideableJumping +CL: net/minecraft/world/entity/Pose net/minecraft/world/entity/Pose +CL: net/minecraft/world/entity/PowerableMob net/minecraft/world/entity/PowerableMob +CL: net/minecraft/world/entity/RelativeMovement net/minecraft/world/entity/RelativeMovement +CL: net/minecraft/world/entity/ReputationEventHandler net/minecraft/world/entity/ReputationEventHandler +CL: net/minecraft/world/entity/RiderShieldingMount net/minecraft/world/entity/RiderShieldingMount +CL: net/minecraft/world/entity/Saddleable net/minecraft/world/entity/Saddleable +CL: net/minecraft/world/entity/Shearable net/minecraft/world/entity/Shearable +CL: net/minecraft/world/entity/SlotAccess net/minecraft/world/entity/SlotAccess +CL: net/minecraft/world/entity/SlotAccess$1 net/minecraft/world/entity/SlotAccess$1 +CL: net/minecraft/world/entity/SlotAccess$2 net/minecraft/world/entity/SlotAccess$2 +CL: net/minecraft/world/entity/SlotAccess$3 net/minecraft/world/entity/SlotAccess$3 +CL: net/minecraft/world/entity/SpawnGroupData net/minecraft/world/entity/SpawnGroupData +CL: net/minecraft/world/entity/SpawnPlacements net/minecraft/world/entity/SpawnPlacements +CL: net/minecraft/world/entity/SpawnPlacements$Data net/minecraft/world/entity/SpawnPlacements$Data +CL: net/minecraft/world/entity/SpawnPlacements$SpawnPredicate net/minecraft/world/entity/SpawnPlacements$SpawnPredicate +CL: net/minecraft/world/entity/SpawnPlacements$Type net/minecraft/world/entity/SpawnPlacements$Type +CL: net/minecraft/world/entity/TamableAnimal net/minecraft/world/entity/TamableAnimal +CL: net/minecraft/world/entity/Targeting net/minecraft/world/entity/Targeting +CL: net/minecraft/world/entity/TraceableEntity net/minecraft/world/entity/TraceableEntity +CL: net/minecraft/world/entity/VariantHolder net/minecraft/world/entity/VariantHolder +CL: net/minecraft/world/entity/WalkAnimationState net/minecraft/world/entity/WalkAnimationState +CL: net/minecraft/world/entity/ai/Brain net/minecraft/world/entity/ai/Brain +CL: net/minecraft/world/entity/ai/Brain$1 net/minecraft/world/entity/ai/Brain$1 +CL: net/minecraft/world/entity/ai/Brain$MemoryValue net/minecraft/world/entity/ai/Brain$MemoryValue +CL: net/minecraft/world/entity/ai/Brain$Provider net/minecraft/world/entity/ai/Brain$Provider +CL: net/minecraft/world/entity/ai/attributes/Attribute net/minecraft/world/entity/ai/attributes/Attribute +CL: net/minecraft/world/entity/ai/attributes/AttributeInstance net/minecraft/world/entity/ai/attributes/AttributeInstance +CL: net/minecraft/world/entity/ai/attributes/AttributeMap net/minecraft/world/entity/ai/attributes/AttributeMap +CL: net/minecraft/world/entity/ai/attributes/AttributeModifier net/minecraft/world/entity/ai/attributes/AttributeModifier +CL: net/minecraft/world/entity/ai/attributes/AttributeModifier$Operation net/minecraft/world/entity/ai/attributes/AttributeModifier$Operation +CL: net/minecraft/world/entity/ai/attributes/AttributeSupplier net/minecraft/world/entity/ai/attributes/AttributeSupplier +CL: net/minecraft/world/entity/ai/attributes/AttributeSupplier$Builder net/minecraft/world/entity/ai/attributes/AttributeSupplier$Builder +CL: net/minecraft/world/entity/ai/attributes/Attributes net/minecraft/world/entity/ai/attributes/Attributes +CL: net/minecraft/world/entity/ai/attributes/DefaultAttributes net/minecraft/world/entity/ai/attributes/DefaultAttributes +CL: net/minecraft/world/entity/ai/attributes/RangedAttribute net/minecraft/world/entity/ai/attributes/RangedAttribute +CL: net/minecraft/world/entity/ai/attributes/package-info net/minecraft/world/entity/ai/attributes/package-info +CL: net/minecraft/world/entity/ai/behavior/AcquirePoi net/minecraft/world/entity/ai/behavior/AcquirePoi +CL: net/minecraft/world/entity/ai/behavior/AcquirePoi$JitteredLinearRetry net/minecraft/world/entity/ai/behavior/AcquirePoi$JitteredLinearRetry +CL: net/minecraft/world/entity/ai/behavior/AnimalMakeLove net/minecraft/world/entity/ai/behavior/AnimalMakeLove +CL: net/minecraft/world/entity/ai/behavior/AnimalPanic net/minecraft/world/entity/ai/behavior/AnimalPanic +CL: net/minecraft/world/entity/ai/behavior/AssignProfessionFromJobSite net/minecraft/world/entity/ai/behavior/AssignProfessionFromJobSite +CL: net/minecraft/world/entity/ai/behavior/BabyFollowAdult net/minecraft/world/entity/ai/behavior/BabyFollowAdult +CL: net/minecraft/world/entity/ai/behavior/BackUpIfTooClose net/minecraft/world/entity/ai/behavior/BackUpIfTooClose +CL: net/minecraft/world/entity/ai/behavior/BecomePassiveIfMemoryPresent net/minecraft/world/entity/ai/behavior/BecomePassiveIfMemoryPresent +CL: net/minecraft/world/entity/ai/behavior/Behavior net/minecraft/world/entity/ai/behavior/Behavior +CL: net/minecraft/world/entity/ai/behavior/Behavior$Status net/minecraft/world/entity/ai/behavior/Behavior$Status +CL: net/minecraft/world/entity/ai/behavior/BehaviorControl net/minecraft/world/entity/ai/behavior/BehaviorControl +CL: net/minecraft/world/entity/ai/behavior/BehaviorUtils net/minecraft/world/entity/ai/behavior/BehaviorUtils +CL: net/minecraft/world/entity/ai/behavior/BlockPosTracker net/minecraft/world/entity/ai/behavior/BlockPosTracker +CL: net/minecraft/world/entity/ai/behavior/CelebrateVillagersSurvivedRaid net/minecraft/world/entity/ai/behavior/CelebrateVillagersSurvivedRaid +CL: net/minecraft/world/entity/ai/behavior/CopyMemoryWithExpiry net/minecraft/world/entity/ai/behavior/CopyMemoryWithExpiry +CL: net/minecraft/world/entity/ai/behavior/CountDownCooldownTicks net/minecraft/world/entity/ai/behavior/CountDownCooldownTicks +CL: net/minecraft/world/entity/ai/behavior/Croak net/minecraft/world/entity/ai/behavior/Croak +CL: net/minecraft/world/entity/ai/behavior/CrossbowAttack net/minecraft/world/entity/ai/behavior/CrossbowAttack +CL: net/minecraft/world/entity/ai/behavior/CrossbowAttack$CrossbowState net/minecraft/world/entity/ai/behavior/CrossbowAttack$CrossbowState +CL: net/minecraft/world/entity/ai/behavior/DismountOrSkipMounting net/minecraft/world/entity/ai/behavior/DismountOrSkipMounting +CL: net/minecraft/world/entity/ai/behavior/DoNothing net/minecraft/world/entity/ai/behavior/DoNothing +CL: net/minecraft/world/entity/ai/behavior/EntityTracker net/minecraft/world/entity/ai/behavior/EntityTracker +CL: net/minecraft/world/entity/ai/behavior/EraseMemoryIf net/minecraft/world/entity/ai/behavior/EraseMemoryIf +CL: net/minecraft/world/entity/ai/behavior/FollowTemptation net/minecraft/world/entity/ai/behavior/FollowTemptation +CL: net/minecraft/world/entity/ai/behavior/GateBehavior net/minecraft/world/entity/ai/behavior/GateBehavior +CL: net/minecraft/world/entity/ai/behavior/GateBehavior$OrderPolicy net/minecraft/world/entity/ai/behavior/GateBehavior$OrderPolicy +CL: net/minecraft/world/entity/ai/behavior/GateBehavior$RunningPolicy net/minecraft/world/entity/ai/behavior/GateBehavior$RunningPolicy +CL: net/minecraft/world/entity/ai/behavior/GateBehavior$RunningPolicy$1 net/minecraft/world/entity/ai/behavior/GateBehavior$RunningPolicy$1 +CL: net/minecraft/world/entity/ai/behavior/GateBehavior$RunningPolicy$2 net/minecraft/world/entity/ai/behavior/GateBehavior$RunningPolicy$2 +CL: net/minecraft/world/entity/ai/behavior/GiveGiftToHero net/minecraft/world/entity/ai/behavior/GiveGiftToHero +CL: net/minecraft/world/entity/ai/behavior/GoAndGiveItemsToTarget net/minecraft/world/entity/ai/behavior/GoAndGiveItemsToTarget +CL: net/minecraft/world/entity/ai/behavior/GoToClosestVillage net/minecraft/world/entity/ai/behavior/GoToClosestVillage +CL: net/minecraft/world/entity/ai/behavior/GoToPotentialJobSite net/minecraft/world/entity/ai/behavior/GoToPotentialJobSite +CL: net/minecraft/world/entity/ai/behavior/GoToTargetLocation net/minecraft/world/entity/ai/behavior/GoToTargetLocation +CL: net/minecraft/world/entity/ai/behavior/GoToWantedItem net/minecraft/world/entity/ai/behavior/GoToWantedItem +CL: net/minecraft/world/entity/ai/behavior/HarvestFarmland net/minecraft/world/entity/ai/behavior/HarvestFarmland +CL: net/minecraft/world/entity/ai/behavior/InsideBrownianWalk net/minecraft/world/entity/ai/behavior/InsideBrownianWalk +CL: net/minecraft/world/entity/ai/behavior/InteractWith net/minecraft/world/entity/ai/behavior/InteractWith +CL: net/minecraft/world/entity/ai/behavior/InteractWithDoor net/minecraft/world/entity/ai/behavior/InteractWithDoor +CL: net/minecraft/world/entity/ai/behavior/JumpOnBed net/minecraft/world/entity/ai/behavior/JumpOnBed +CL: net/minecraft/world/entity/ai/behavior/LocateHidingPlace net/minecraft/world/entity/ai/behavior/LocateHidingPlace +CL: net/minecraft/world/entity/ai/behavior/LongJumpMidJump net/minecraft/world/entity/ai/behavior/LongJumpMidJump +CL: net/minecraft/world/entity/ai/behavior/LongJumpToPreferredBlock net/minecraft/world/entity/ai/behavior/LongJumpToPreferredBlock +CL: net/minecraft/world/entity/ai/behavior/LongJumpToRandomPos net/minecraft/world/entity/ai/behavior/LongJumpToRandomPos +CL: net/minecraft/world/entity/ai/behavior/LongJumpToRandomPos$PossibleJump net/minecraft/world/entity/ai/behavior/LongJumpToRandomPos$PossibleJump +CL: net/minecraft/world/entity/ai/behavior/LookAndFollowTradingPlayerSink net/minecraft/world/entity/ai/behavior/LookAndFollowTradingPlayerSink +CL: net/minecraft/world/entity/ai/behavior/LookAtTargetSink net/minecraft/world/entity/ai/behavior/LookAtTargetSink +CL: net/minecraft/world/entity/ai/behavior/MeleeAttack net/minecraft/world/entity/ai/behavior/MeleeAttack +CL: net/minecraft/world/entity/ai/behavior/Mount net/minecraft/world/entity/ai/behavior/Mount +CL: net/minecraft/world/entity/ai/behavior/MoveToSkySeeingSpot net/minecraft/world/entity/ai/behavior/MoveToSkySeeingSpot +CL: net/minecraft/world/entity/ai/behavior/MoveToTargetSink net/minecraft/world/entity/ai/behavior/MoveToTargetSink +CL: net/minecraft/world/entity/ai/behavior/OneShot net/minecraft/world/entity/ai/behavior/OneShot +CL: net/minecraft/world/entity/ai/behavior/PlayTagWithOtherKids net/minecraft/world/entity/ai/behavior/PlayTagWithOtherKids +CL: net/minecraft/world/entity/ai/behavior/PoiCompetitorScan net/minecraft/world/entity/ai/behavior/PoiCompetitorScan +CL: net/minecraft/world/entity/ai/behavior/PositionTracker net/minecraft/world/entity/ai/behavior/PositionTracker +CL: net/minecraft/world/entity/ai/behavior/PrepareRamNearestTarget net/minecraft/world/entity/ai/behavior/PrepareRamNearestTarget +CL: net/minecraft/world/entity/ai/behavior/PrepareRamNearestTarget$RamCandidate net/minecraft/world/entity/ai/behavior/PrepareRamNearestTarget$RamCandidate +CL: net/minecraft/world/entity/ai/behavior/RamTarget net/minecraft/world/entity/ai/behavior/RamTarget +CL: net/minecraft/world/entity/ai/behavior/RandomLookAround net/minecraft/world/entity/ai/behavior/RandomLookAround +CL: net/minecraft/world/entity/ai/behavior/RandomStroll net/minecraft/world/entity/ai/behavior/RandomStroll +CL: net/minecraft/world/entity/ai/behavior/ReactToBell net/minecraft/world/entity/ai/behavior/ReactToBell +CL: net/minecraft/world/entity/ai/behavior/ResetProfession net/minecraft/world/entity/ai/behavior/ResetProfession +CL: net/minecraft/world/entity/ai/behavior/ResetRaidStatus net/minecraft/world/entity/ai/behavior/ResetRaidStatus +CL: net/minecraft/world/entity/ai/behavior/RingBell net/minecraft/world/entity/ai/behavior/RingBell +CL: net/minecraft/world/entity/ai/behavior/RunOne net/minecraft/world/entity/ai/behavior/RunOne +CL: net/minecraft/world/entity/ai/behavior/SetClosestHomeAsWalkTarget net/minecraft/world/entity/ai/behavior/SetClosestHomeAsWalkTarget +CL: net/minecraft/world/entity/ai/behavior/SetEntityLookTarget net/minecraft/world/entity/ai/behavior/SetEntityLookTarget +CL: net/minecraft/world/entity/ai/behavior/SetEntityLookTargetSometimes net/minecraft/world/entity/ai/behavior/SetEntityLookTargetSometimes +CL: net/minecraft/world/entity/ai/behavior/SetEntityLookTargetSometimes$Ticker net/minecraft/world/entity/ai/behavior/SetEntityLookTargetSometimes$Ticker +CL: net/minecraft/world/entity/ai/behavior/SetHiddenState net/minecraft/world/entity/ai/behavior/SetHiddenState +CL: net/minecraft/world/entity/ai/behavior/SetLookAndInteract net/minecraft/world/entity/ai/behavior/SetLookAndInteract +CL: net/minecraft/world/entity/ai/behavior/SetRaidStatus net/minecraft/world/entity/ai/behavior/SetRaidStatus +CL: net/minecraft/world/entity/ai/behavior/SetWalkTargetAwayFrom net/minecraft/world/entity/ai/behavior/SetWalkTargetAwayFrom +CL: net/minecraft/world/entity/ai/behavior/SetWalkTargetFromAttackTargetIfTargetOutOfReach net/minecraft/world/entity/ai/behavior/SetWalkTargetFromAttackTargetIfTargetOutOfReach +CL: net/minecraft/world/entity/ai/behavior/SetWalkTargetFromBlockMemory net/minecraft/world/entity/ai/behavior/SetWalkTargetFromBlockMemory +CL: net/minecraft/world/entity/ai/behavior/SetWalkTargetFromLookTarget net/minecraft/world/entity/ai/behavior/SetWalkTargetFromLookTarget +CL: net/minecraft/world/entity/ai/behavior/ShowTradesToPlayer net/minecraft/world/entity/ai/behavior/ShowTradesToPlayer +CL: net/minecraft/world/entity/ai/behavior/ShufflingList net/minecraft/world/entity/ai/behavior/ShufflingList +CL: net/minecraft/world/entity/ai/behavior/ShufflingList$WeightedEntry net/minecraft/world/entity/ai/behavior/ShufflingList$WeightedEntry +CL: net/minecraft/world/entity/ai/behavior/ShufflingList$WeightedEntry$1 net/minecraft/world/entity/ai/behavior/ShufflingList$WeightedEntry$1 +CL: net/minecraft/world/entity/ai/behavior/SleepInBed net/minecraft/world/entity/ai/behavior/SleepInBed +CL: net/minecraft/world/entity/ai/behavior/SocializeAtBell net/minecraft/world/entity/ai/behavior/SocializeAtBell +CL: net/minecraft/world/entity/ai/behavior/StartAttacking net/minecraft/world/entity/ai/behavior/StartAttacking +CL: net/minecraft/world/entity/ai/behavior/StartCelebratingIfTargetDead net/minecraft/world/entity/ai/behavior/StartCelebratingIfTargetDead +CL: net/minecraft/world/entity/ai/behavior/StayCloseToTarget net/minecraft/world/entity/ai/behavior/StayCloseToTarget +CL: net/minecraft/world/entity/ai/behavior/StopAttackingIfTargetInvalid net/minecraft/world/entity/ai/behavior/StopAttackingIfTargetInvalid +CL: net/minecraft/world/entity/ai/behavior/StopBeingAngryIfTargetDead net/minecraft/world/entity/ai/behavior/StopBeingAngryIfTargetDead +CL: net/minecraft/world/entity/ai/behavior/StrollAroundPoi net/minecraft/world/entity/ai/behavior/StrollAroundPoi +CL: net/minecraft/world/entity/ai/behavior/StrollToPoi net/minecraft/world/entity/ai/behavior/StrollToPoi +CL: net/minecraft/world/entity/ai/behavior/StrollToPoiList net/minecraft/world/entity/ai/behavior/StrollToPoiList +CL: net/minecraft/world/entity/ai/behavior/Swim net/minecraft/world/entity/ai/behavior/Swim +CL: net/minecraft/world/entity/ai/behavior/TradeWithVillager net/minecraft/world/entity/ai/behavior/TradeWithVillager +CL: net/minecraft/world/entity/ai/behavior/TriggerGate net/minecraft/world/entity/ai/behavior/TriggerGate +CL: net/minecraft/world/entity/ai/behavior/TryFindLand net/minecraft/world/entity/ai/behavior/TryFindLand +CL: net/minecraft/world/entity/ai/behavior/TryFindLandNearWater net/minecraft/world/entity/ai/behavior/TryFindLandNearWater +CL: net/minecraft/world/entity/ai/behavior/TryFindWater net/minecraft/world/entity/ai/behavior/TryFindWater +CL: net/minecraft/world/entity/ai/behavior/TryLaySpawnOnWaterNearLand net/minecraft/world/entity/ai/behavior/TryLaySpawnOnWaterNearLand +CL: net/minecraft/world/entity/ai/behavior/UpdateActivityFromSchedule net/minecraft/world/entity/ai/behavior/UpdateActivityFromSchedule +CL: net/minecraft/world/entity/ai/behavior/UseBonemeal net/minecraft/world/entity/ai/behavior/UseBonemeal +CL: net/minecraft/world/entity/ai/behavior/ValidateNearbyPoi net/minecraft/world/entity/ai/behavior/ValidateNearbyPoi +CL: net/minecraft/world/entity/ai/behavior/VillageBoundRandomStroll net/minecraft/world/entity/ai/behavior/VillageBoundRandomStroll +CL: net/minecraft/world/entity/ai/behavior/VillagerCalmDown net/minecraft/world/entity/ai/behavior/VillagerCalmDown +CL: net/minecraft/world/entity/ai/behavior/VillagerGoalPackages net/minecraft/world/entity/ai/behavior/VillagerGoalPackages +CL: net/minecraft/world/entity/ai/behavior/VillagerMakeLove net/minecraft/world/entity/ai/behavior/VillagerMakeLove +CL: net/minecraft/world/entity/ai/behavior/VillagerPanicTrigger net/minecraft/world/entity/ai/behavior/VillagerPanicTrigger +CL: net/minecraft/world/entity/ai/behavior/WakeUp net/minecraft/world/entity/ai/behavior/WakeUp +CL: net/minecraft/world/entity/ai/behavior/WorkAtComposter net/minecraft/world/entity/ai/behavior/WorkAtComposter +CL: net/minecraft/world/entity/ai/behavior/WorkAtPoi net/minecraft/world/entity/ai/behavior/WorkAtPoi +CL: net/minecraft/world/entity/ai/behavior/YieldJobSite net/minecraft/world/entity/ai/behavior/YieldJobSite +CL: net/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder net/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder +CL: net/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$1 net/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$1 +CL: net/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Constant net/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Constant +CL: net/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Constant$1 net/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Constant$1 +CL: net/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance net/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance +CL: net/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance$1 net/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance$1 +CL: net/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance$2 net/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance$2 +CL: net/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance$3 net/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance$3 +CL: net/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance$4 net/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance$4 +CL: net/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance$5 net/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance$5 +CL: net/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance$Mu net/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance$Mu +CL: net/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Mu net/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Mu +CL: net/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$PureMemory net/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$PureMemory +CL: net/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$PureMemory$1 net/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$PureMemory$1 +CL: net/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$TriggerWithResult net/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$TriggerWithResult +CL: net/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$TriggerWrapper net/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$TriggerWrapper +CL: net/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$TriggerWrapper$1 net/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$TriggerWrapper$1 +CL: net/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor net/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor +CL: net/minecraft/world/entity/ai/behavior/declarative/MemoryCondition net/minecraft/world/entity/ai/behavior/declarative/MemoryCondition +CL: net/minecraft/world/entity/ai/behavior/declarative/MemoryCondition$Absent net/minecraft/world/entity/ai/behavior/declarative/MemoryCondition$Absent +CL: net/minecraft/world/entity/ai/behavior/declarative/MemoryCondition$Present net/minecraft/world/entity/ai/behavior/declarative/MemoryCondition$Present +CL: net/minecraft/world/entity/ai/behavior/declarative/MemoryCondition$Registered net/minecraft/world/entity/ai/behavior/declarative/MemoryCondition$Registered +CL: net/minecraft/world/entity/ai/behavior/declarative/Trigger net/minecraft/world/entity/ai/behavior/declarative/Trigger +CL: net/minecraft/world/entity/ai/behavior/declarative/package-info net/minecraft/world/entity/ai/behavior/declarative/package-info +CL: net/minecraft/world/entity/ai/behavior/package-info net/minecraft/world/entity/ai/behavior/package-info +CL: net/minecraft/world/entity/ai/behavior/warden/Digging net/minecraft/world/entity/ai/behavior/warden/Digging +CL: net/minecraft/world/entity/ai/behavior/warden/Emerging net/minecraft/world/entity/ai/behavior/warden/Emerging +CL: net/minecraft/world/entity/ai/behavior/warden/ForceUnmount net/minecraft/world/entity/ai/behavior/warden/ForceUnmount +CL: net/minecraft/world/entity/ai/behavior/warden/Roar net/minecraft/world/entity/ai/behavior/warden/Roar +CL: net/minecraft/world/entity/ai/behavior/warden/SetRoarTarget net/minecraft/world/entity/ai/behavior/warden/SetRoarTarget +CL: net/minecraft/world/entity/ai/behavior/warden/SetWardenLookTarget net/minecraft/world/entity/ai/behavior/warden/SetWardenLookTarget +CL: net/minecraft/world/entity/ai/behavior/warden/Sniffing net/minecraft/world/entity/ai/behavior/warden/Sniffing +CL: net/minecraft/world/entity/ai/behavior/warden/SonicBoom net/minecraft/world/entity/ai/behavior/warden/SonicBoom +CL: net/minecraft/world/entity/ai/behavior/warden/TryToSniff net/minecraft/world/entity/ai/behavior/warden/TryToSniff +CL: net/minecraft/world/entity/ai/behavior/warden/package-info net/minecraft/world/entity/ai/behavior/warden/package-info +CL: net/minecraft/world/entity/ai/control/BodyRotationControl net/minecraft/world/entity/ai/control/BodyRotationControl +CL: net/minecraft/world/entity/ai/control/Control net/minecraft/world/entity/ai/control/Control +CL: net/minecraft/world/entity/ai/control/FlyingMoveControl net/minecraft/world/entity/ai/control/FlyingMoveControl +CL: net/minecraft/world/entity/ai/control/JumpControl net/minecraft/world/entity/ai/control/JumpControl +CL: net/minecraft/world/entity/ai/control/LookControl net/minecraft/world/entity/ai/control/LookControl +CL: net/minecraft/world/entity/ai/control/MoveControl net/minecraft/world/entity/ai/control/MoveControl +CL: net/minecraft/world/entity/ai/control/MoveControl$Operation net/minecraft/world/entity/ai/control/MoveControl$Operation +CL: net/minecraft/world/entity/ai/control/SmoothSwimmingLookControl net/minecraft/world/entity/ai/control/SmoothSwimmingLookControl +CL: net/minecraft/world/entity/ai/control/SmoothSwimmingMoveControl net/minecraft/world/entity/ai/control/SmoothSwimmingMoveControl +CL: net/minecraft/world/entity/ai/control/package-info net/minecraft/world/entity/ai/control/package-info +CL: net/minecraft/world/entity/ai/goal/AvoidEntityGoal net/minecraft/world/entity/ai/goal/AvoidEntityGoal +CL: net/minecraft/world/entity/ai/goal/BegGoal net/minecraft/world/entity/ai/goal/BegGoal +CL: net/minecraft/world/entity/ai/goal/BoatGoals net/minecraft/world/entity/ai/goal/BoatGoals +CL: net/minecraft/world/entity/ai/goal/BreakDoorGoal net/minecraft/world/entity/ai/goal/BreakDoorGoal +CL: net/minecraft/world/entity/ai/goal/BreathAirGoal net/minecraft/world/entity/ai/goal/BreathAirGoal +CL: net/minecraft/world/entity/ai/goal/BreedGoal net/minecraft/world/entity/ai/goal/BreedGoal +CL: net/minecraft/world/entity/ai/goal/CatLieOnBedGoal net/minecraft/world/entity/ai/goal/CatLieOnBedGoal +CL: net/minecraft/world/entity/ai/goal/CatSitOnBlockGoal net/minecraft/world/entity/ai/goal/CatSitOnBlockGoal +CL: net/minecraft/world/entity/ai/goal/ClimbOnTopOfPowderSnowGoal net/minecraft/world/entity/ai/goal/ClimbOnTopOfPowderSnowGoal +CL: net/minecraft/world/entity/ai/goal/DolphinJumpGoal net/minecraft/world/entity/ai/goal/DolphinJumpGoal +CL: net/minecraft/world/entity/ai/goal/DoorInteractGoal net/minecraft/world/entity/ai/goal/DoorInteractGoal +CL: net/minecraft/world/entity/ai/goal/EatBlockGoal net/minecraft/world/entity/ai/goal/EatBlockGoal +CL: net/minecraft/world/entity/ai/goal/FleeSunGoal net/minecraft/world/entity/ai/goal/FleeSunGoal +CL: net/minecraft/world/entity/ai/goal/FloatGoal net/minecraft/world/entity/ai/goal/FloatGoal +CL: net/minecraft/world/entity/ai/goal/FollowBoatGoal net/minecraft/world/entity/ai/goal/FollowBoatGoal +CL: net/minecraft/world/entity/ai/goal/FollowFlockLeaderGoal net/minecraft/world/entity/ai/goal/FollowFlockLeaderGoal +CL: net/minecraft/world/entity/ai/goal/FollowMobGoal net/minecraft/world/entity/ai/goal/FollowMobGoal +CL: net/minecraft/world/entity/ai/goal/FollowOwnerGoal net/minecraft/world/entity/ai/goal/FollowOwnerGoal +CL: net/minecraft/world/entity/ai/goal/FollowParentGoal net/minecraft/world/entity/ai/goal/FollowParentGoal +CL: net/minecraft/world/entity/ai/goal/Goal net/minecraft/world/entity/ai/goal/Goal +CL: net/minecraft/world/entity/ai/goal/Goal$Flag net/minecraft/world/entity/ai/goal/Goal$Flag +CL: net/minecraft/world/entity/ai/goal/GoalSelector net/minecraft/world/entity/ai/goal/GoalSelector +CL: net/minecraft/world/entity/ai/goal/GoalSelector$1 net/minecraft/world/entity/ai/goal/GoalSelector$1 +CL: net/minecraft/world/entity/ai/goal/GoalSelector$2 net/minecraft/world/entity/ai/goal/GoalSelector$2 +CL: net/minecraft/world/entity/ai/goal/GolemRandomStrollInVillageGoal net/minecraft/world/entity/ai/goal/GolemRandomStrollInVillageGoal +CL: net/minecraft/world/entity/ai/goal/InteractGoal net/minecraft/world/entity/ai/goal/InteractGoal +CL: net/minecraft/world/entity/ai/goal/JumpGoal net/minecraft/world/entity/ai/goal/JumpGoal +CL: net/minecraft/world/entity/ai/goal/LandOnOwnersShoulderGoal net/minecraft/world/entity/ai/goal/LandOnOwnersShoulderGoal +CL: net/minecraft/world/entity/ai/goal/LeapAtTargetGoal net/minecraft/world/entity/ai/goal/LeapAtTargetGoal +CL: net/minecraft/world/entity/ai/goal/LlamaFollowCaravanGoal net/minecraft/world/entity/ai/goal/LlamaFollowCaravanGoal +CL: net/minecraft/world/entity/ai/goal/LookAtPlayerGoal net/minecraft/world/entity/ai/goal/LookAtPlayerGoal +CL: net/minecraft/world/entity/ai/goal/LookAtTradingPlayerGoal net/minecraft/world/entity/ai/goal/LookAtTradingPlayerGoal +CL: net/minecraft/world/entity/ai/goal/MeleeAttackGoal net/minecraft/world/entity/ai/goal/MeleeAttackGoal +CL: net/minecraft/world/entity/ai/goal/MoveBackToVillageGoal net/minecraft/world/entity/ai/goal/MoveBackToVillageGoal +CL: net/minecraft/world/entity/ai/goal/MoveThroughVillageGoal net/minecraft/world/entity/ai/goal/MoveThroughVillageGoal +CL: net/minecraft/world/entity/ai/goal/MoveToBlockGoal net/minecraft/world/entity/ai/goal/MoveToBlockGoal +CL: net/minecraft/world/entity/ai/goal/MoveTowardsRestrictionGoal net/minecraft/world/entity/ai/goal/MoveTowardsRestrictionGoal +CL: net/minecraft/world/entity/ai/goal/MoveTowardsTargetGoal net/minecraft/world/entity/ai/goal/MoveTowardsTargetGoal +CL: net/minecraft/world/entity/ai/goal/OcelotAttackGoal net/minecraft/world/entity/ai/goal/OcelotAttackGoal +CL: net/minecraft/world/entity/ai/goal/OfferFlowerGoal net/minecraft/world/entity/ai/goal/OfferFlowerGoal +CL: net/minecraft/world/entity/ai/goal/OpenDoorGoal net/minecraft/world/entity/ai/goal/OpenDoorGoal +CL: net/minecraft/world/entity/ai/goal/PanicGoal net/minecraft/world/entity/ai/goal/PanicGoal +CL: net/minecraft/world/entity/ai/goal/PathfindToRaidGoal net/minecraft/world/entity/ai/goal/PathfindToRaidGoal +CL: net/minecraft/world/entity/ai/goal/RandomLookAroundGoal net/minecraft/world/entity/ai/goal/RandomLookAroundGoal +CL: net/minecraft/world/entity/ai/goal/RandomStandGoal net/minecraft/world/entity/ai/goal/RandomStandGoal +CL: net/minecraft/world/entity/ai/goal/RandomStrollGoal net/minecraft/world/entity/ai/goal/RandomStrollGoal +CL: net/minecraft/world/entity/ai/goal/RandomSwimmingGoal net/minecraft/world/entity/ai/goal/RandomSwimmingGoal +CL: net/minecraft/world/entity/ai/goal/RangedAttackGoal net/minecraft/world/entity/ai/goal/RangedAttackGoal +CL: net/minecraft/world/entity/ai/goal/RangedBowAttackGoal net/minecraft/world/entity/ai/goal/RangedBowAttackGoal +CL: net/minecraft/world/entity/ai/goal/RangedCrossbowAttackGoal net/minecraft/world/entity/ai/goal/RangedCrossbowAttackGoal +CL: net/minecraft/world/entity/ai/goal/RangedCrossbowAttackGoal$CrossbowState net/minecraft/world/entity/ai/goal/RangedCrossbowAttackGoal$CrossbowState +CL: net/minecraft/world/entity/ai/goal/RemoveBlockGoal net/minecraft/world/entity/ai/goal/RemoveBlockGoal +CL: net/minecraft/world/entity/ai/goal/RestrictSunGoal net/minecraft/world/entity/ai/goal/RestrictSunGoal +CL: net/minecraft/world/entity/ai/goal/RunAroundLikeCrazyGoal net/minecraft/world/entity/ai/goal/RunAroundLikeCrazyGoal +CL: net/minecraft/world/entity/ai/goal/SitWhenOrderedToGoal net/minecraft/world/entity/ai/goal/SitWhenOrderedToGoal +CL: net/minecraft/world/entity/ai/goal/StrollThroughVillageGoal net/minecraft/world/entity/ai/goal/StrollThroughVillageGoal +CL: net/minecraft/world/entity/ai/goal/SwellGoal net/minecraft/world/entity/ai/goal/SwellGoal +CL: net/minecraft/world/entity/ai/goal/TemptGoal net/minecraft/world/entity/ai/goal/TemptGoal +CL: net/minecraft/world/entity/ai/goal/TradeWithPlayerGoal net/minecraft/world/entity/ai/goal/TradeWithPlayerGoal +CL: net/minecraft/world/entity/ai/goal/TryFindWaterGoal net/minecraft/world/entity/ai/goal/TryFindWaterGoal +CL: net/minecraft/world/entity/ai/goal/UseItemGoal net/minecraft/world/entity/ai/goal/UseItemGoal +CL: net/minecraft/world/entity/ai/goal/WaterAvoidingRandomFlyingGoal net/minecraft/world/entity/ai/goal/WaterAvoidingRandomFlyingGoal +CL: net/minecraft/world/entity/ai/goal/WaterAvoidingRandomStrollGoal net/minecraft/world/entity/ai/goal/WaterAvoidingRandomStrollGoal +CL: net/minecraft/world/entity/ai/goal/WrappedGoal net/minecraft/world/entity/ai/goal/WrappedGoal +CL: net/minecraft/world/entity/ai/goal/ZombieAttackGoal net/minecraft/world/entity/ai/goal/ZombieAttackGoal +CL: net/minecraft/world/entity/ai/goal/package-info net/minecraft/world/entity/ai/goal/package-info +CL: net/minecraft/world/entity/ai/goal/target/DefendVillageTargetGoal net/minecraft/world/entity/ai/goal/target/DefendVillageTargetGoal +CL: net/minecraft/world/entity/ai/goal/target/HurtByTargetGoal net/minecraft/world/entity/ai/goal/target/HurtByTargetGoal +CL: net/minecraft/world/entity/ai/goal/target/NearestAttackableTargetGoal net/minecraft/world/entity/ai/goal/target/NearestAttackableTargetGoal +CL: net/minecraft/world/entity/ai/goal/target/NearestAttackableWitchTargetGoal net/minecraft/world/entity/ai/goal/target/NearestAttackableWitchTargetGoal +CL: net/minecraft/world/entity/ai/goal/target/NearestHealableRaiderTargetGoal net/minecraft/world/entity/ai/goal/target/NearestHealableRaiderTargetGoal +CL: net/minecraft/world/entity/ai/goal/target/NonTameRandomTargetGoal net/minecraft/world/entity/ai/goal/target/NonTameRandomTargetGoal +CL: net/minecraft/world/entity/ai/goal/target/OwnerHurtByTargetGoal net/minecraft/world/entity/ai/goal/target/OwnerHurtByTargetGoal +CL: net/minecraft/world/entity/ai/goal/target/OwnerHurtTargetGoal net/minecraft/world/entity/ai/goal/target/OwnerHurtTargetGoal +CL: net/minecraft/world/entity/ai/goal/target/ResetUniversalAngerTargetGoal net/minecraft/world/entity/ai/goal/target/ResetUniversalAngerTargetGoal +CL: net/minecraft/world/entity/ai/goal/target/TargetGoal net/minecraft/world/entity/ai/goal/target/TargetGoal +CL: net/minecraft/world/entity/ai/goal/target/package-info net/minecraft/world/entity/ai/goal/target/package-info +CL: net/minecraft/world/entity/ai/gossip/GossipContainer net/minecraft/world/entity/ai/gossip/GossipContainer +CL: net/minecraft/world/entity/ai/gossip/GossipContainer$EntityGossips net/minecraft/world/entity/ai/gossip/GossipContainer$EntityGossips +CL: net/minecraft/world/entity/ai/gossip/GossipContainer$GossipEntry net/minecraft/world/entity/ai/gossip/GossipContainer$GossipEntry +CL: net/minecraft/world/entity/ai/gossip/GossipType net/minecraft/world/entity/ai/gossip/GossipType +CL: net/minecraft/world/entity/ai/gossip/package-info net/minecraft/world/entity/ai/gossip/package-info +CL: net/minecraft/world/entity/ai/memory/ExpirableValue net/minecraft/world/entity/ai/memory/ExpirableValue +CL: net/minecraft/world/entity/ai/memory/MemoryModuleType net/minecraft/world/entity/ai/memory/MemoryModuleType +CL: net/minecraft/world/entity/ai/memory/MemoryStatus net/minecraft/world/entity/ai/memory/MemoryStatus +CL: net/minecraft/world/entity/ai/memory/NearestVisibleLivingEntities net/minecraft/world/entity/ai/memory/NearestVisibleLivingEntities +CL: net/minecraft/world/entity/ai/memory/WalkTarget net/minecraft/world/entity/ai/memory/WalkTarget +CL: net/minecraft/world/entity/ai/memory/package-info net/minecraft/world/entity/ai/memory/package-info +CL: net/minecraft/world/entity/ai/navigation/AmphibiousPathNavigation net/minecraft/world/entity/ai/navigation/AmphibiousPathNavigation +CL: net/minecraft/world/entity/ai/navigation/FlyingPathNavigation net/minecraft/world/entity/ai/navigation/FlyingPathNavigation +CL: net/minecraft/world/entity/ai/navigation/GroundPathNavigation net/minecraft/world/entity/ai/navigation/GroundPathNavigation +CL: net/minecraft/world/entity/ai/navigation/PathNavigation net/minecraft/world/entity/ai/navigation/PathNavigation +CL: net/minecraft/world/entity/ai/navigation/WallClimberNavigation net/minecraft/world/entity/ai/navigation/WallClimberNavigation +CL: net/minecraft/world/entity/ai/navigation/WaterBoundPathNavigation net/minecraft/world/entity/ai/navigation/WaterBoundPathNavigation +CL: net/minecraft/world/entity/ai/navigation/package-info net/minecraft/world/entity/ai/navigation/package-info +CL: net/minecraft/world/entity/ai/package-info net/minecraft/world/entity/ai/package-info +CL: net/minecraft/world/entity/ai/sensing/AdultSensor net/minecraft/world/entity/ai/sensing/AdultSensor +CL: net/minecraft/world/entity/ai/sensing/AxolotlAttackablesSensor net/minecraft/world/entity/ai/sensing/AxolotlAttackablesSensor +CL: net/minecraft/world/entity/ai/sensing/DummySensor net/minecraft/world/entity/ai/sensing/DummySensor +CL: net/minecraft/world/entity/ai/sensing/FrogAttackablesSensor net/minecraft/world/entity/ai/sensing/FrogAttackablesSensor +CL: net/minecraft/world/entity/ai/sensing/GolemSensor net/minecraft/world/entity/ai/sensing/GolemSensor +CL: net/minecraft/world/entity/ai/sensing/HoglinSpecificSensor net/minecraft/world/entity/ai/sensing/HoglinSpecificSensor +CL: net/minecraft/world/entity/ai/sensing/HurtBySensor net/minecraft/world/entity/ai/sensing/HurtBySensor +CL: net/minecraft/world/entity/ai/sensing/IsInWaterSensor net/minecraft/world/entity/ai/sensing/IsInWaterSensor +CL: net/minecraft/world/entity/ai/sensing/NearestBedSensor net/minecraft/world/entity/ai/sensing/NearestBedSensor +CL: net/minecraft/world/entity/ai/sensing/NearestItemSensor net/minecraft/world/entity/ai/sensing/NearestItemSensor +CL: net/minecraft/world/entity/ai/sensing/NearestLivingEntitySensor net/minecraft/world/entity/ai/sensing/NearestLivingEntitySensor +CL: net/minecraft/world/entity/ai/sensing/NearestVisibleLivingEntitySensor net/minecraft/world/entity/ai/sensing/NearestVisibleLivingEntitySensor +CL: net/minecraft/world/entity/ai/sensing/PiglinBruteSpecificSensor net/minecraft/world/entity/ai/sensing/PiglinBruteSpecificSensor +CL: net/minecraft/world/entity/ai/sensing/PiglinSpecificSensor net/minecraft/world/entity/ai/sensing/PiglinSpecificSensor +CL: net/minecraft/world/entity/ai/sensing/PlayerSensor net/minecraft/world/entity/ai/sensing/PlayerSensor +CL: net/minecraft/world/entity/ai/sensing/SecondaryPoiSensor net/minecraft/world/entity/ai/sensing/SecondaryPoiSensor +CL: net/minecraft/world/entity/ai/sensing/Sensing net/minecraft/world/entity/ai/sensing/Sensing +CL: net/minecraft/world/entity/ai/sensing/Sensor net/minecraft/world/entity/ai/sensing/Sensor +CL: net/minecraft/world/entity/ai/sensing/SensorType net/minecraft/world/entity/ai/sensing/SensorType +CL: net/minecraft/world/entity/ai/sensing/TemptingSensor net/minecraft/world/entity/ai/sensing/TemptingSensor +CL: net/minecraft/world/entity/ai/sensing/VillagerBabiesSensor net/minecraft/world/entity/ai/sensing/VillagerBabiesSensor +CL: net/minecraft/world/entity/ai/sensing/VillagerHostilesSensor net/minecraft/world/entity/ai/sensing/VillagerHostilesSensor +CL: net/minecraft/world/entity/ai/sensing/WardenEntitySensor net/minecraft/world/entity/ai/sensing/WardenEntitySensor +CL: net/minecraft/world/entity/ai/sensing/package-info net/minecraft/world/entity/ai/sensing/package-info +CL: net/minecraft/world/entity/ai/targeting/TargetingConditions net/minecraft/world/entity/ai/targeting/TargetingConditions +CL: net/minecraft/world/entity/ai/targeting/package-info net/minecraft/world/entity/ai/targeting/package-info +CL: net/minecraft/world/entity/ai/util/AirAndWaterRandomPos net/minecraft/world/entity/ai/util/AirAndWaterRandomPos +CL: net/minecraft/world/entity/ai/util/AirRandomPos net/minecraft/world/entity/ai/util/AirRandomPos +CL: net/minecraft/world/entity/ai/util/DefaultRandomPos net/minecraft/world/entity/ai/util/DefaultRandomPos +CL: net/minecraft/world/entity/ai/util/GoalUtils net/minecraft/world/entity/ai/util/GoalUtils +CL: net/minecraft/world/entity/ai/util/HoverRandomPos net/minecraft/world/entity/ai/util/HoverRandomPos +CL: net/minecraft/world/entity/ai/util/LandRandomPos net/minecraft/world/entity/ai/util/LandRandomPos +CL: net/minecraft/world/entity/ai/util/RandomPos net/minecraft/world/entity/ai/util/RandomPos +CL: net/minecraft/world/entity/ai/util/package-info net/minecraft/world/entity/ai/util/package-info +CL: net/minecraft/world/entity/ai/village/ReputationEventType net/minecraft/world/entity/ai/village/ReputationEventType +CL: net/minecraft/world/entity/ai/village/ReputationEventType$1 net/minecraft/world/entity/ai/village/ReputationEventType$1 +CL: net/minecraft/world/entity/ai/village/VillageSiege net/minecraft/world/entity/ai/village/VillageSiege +CL: net/minecraft/world/entity/ai/village/VillageSiege$State net/minecraft/world/entity/ai/village/VillageSiege$State +CL: net/minecraft/world/entity/ai/village/package-info net/minecraft/world/entity/ai/village/package-info +CL: net/minecraft/world/entity/ai/village/poi/PoiManager net/minecraft/world/entity/ai/village/poi/PoiManager +CL: net/minecraft/world/entity/ai/village/poi/PoiManager$DistanceTracker net/minecraft/world/entity/ai/village/poi/PoiManager$DistanceTracker +CL: net/minecraft/world/entity/ai/village/poi/PoiManager$Occupancy net/minecraft/world/entity/ai/village/poi/PoiManager$Occupancy +CL: net/minecraft/world/entity/ai/village/poi/PoiRecord net/minecraft/world/entity/ai/village/poi/PoiRecord +CL: net/minecraft/world/entity/ai/village/poi/PoiSection net/minecraft/world/entity/ai/village/poi/PoiSection +CL: net/minecraft/world/entity/ai/village/poi/PoiType net/minecraft/world/entity/ai/village/poi/PoiType +CL: net/minecraft/world/entity/ai/village/poi/PoiTypes net/minecraft/world/entity/ai/village/poi/PoiTypes +CL: net/minecraft/world/entity/ai/village/poi/package-info net/minecraft/world/entity/ai/village/poi/package-info +CL: net/minecraft/world/entity/ambient/AmbientCreature net/minecraft/world/entity/ambient/AmbientCreature +CL: net/minecraft/world/entity/ambient/Bat net/minecraft/world/entity/ambient/Bat +CL: net/minecraft/world/entity/ambient/package-info net/minecraft/world/entity/ambient/package-info +CL: net/minecraft/world/entity/animal/AbstractFish net/minecraft/world/entity/animal/AbstractFish +CL: net/minecraft/world/entity/animal/AbstractFish$FishMoveControl net/minecraft/world/entity/animal/AbstractFish$FishMoveControl +CL: net/minecraft/world/entity/animal/AbstractFish$FishSwimGoal net/minecraft/world/entity/animal/AbstractFish$FishSwimGoal +CL: net/minecraft/world/entity/animal/AbstractGolem net/minecraft/world/entity/animal/AbstractGolem +CL: net/minecraft/world/entity/animal/AbstractSchoolingFish net/minecraft/world/entity/animal/AbstractSchoolingFish +CL: net/minecraft/world/entity/animal/AbstractSchoolingFish$SchoolSpawnGroupData net/minecraft/world/entity/animal/AbstractSchoolingFish$SchoolSpawnGroupData +CL: net/minecraft/world/entity/animal/Animal net/minecraft/world/entity/animal/Animal +CL: net/minecraft/world/entity/animal/Bee net/minecraft/world/entity/animal/Bee +CL: net/minecraft/world/entity/animal/Bee$1 net/minecraft/world/entity/animal/Bee$1 +CL: net/minecraft/world/entity/animal/Bee$BaseBeeGoal net/minecraft/world/entity/animal/Bee$BaseBeeGoal +CL: net/minecraft/world/entity/animal/Bee$BeeAttackGoal net/minecraft/world/entity/animal/Bee$BeeAttackGoal +CL: net/minecraft/world/entity/animal/Bee$BeeBecomeAngryTargetGoal net/minecraft/world/entity/animal/Bee$BeeBecomeAngryTargetGoal +CL: net/minecraft/world/entity/animal/Bee$BeeEnterHiveGoal net/minecraft/world/entity/animal/Bee$BeeEnterHiveGoal +CL: net/minecraft/world/entity/animal/Bee$BeeGoToHiveGoal net/minecraft/world/entity/animal/Bee$BeeGoToHiveGoal +CL: net/minecraft/world/entity/animal/Bee$BeeGoToKnownFlowerGoal net/minecraft/world/entity/animal/Bee$BeeGoToKnownFlowerGoal +CL: net/minecraft/world/entity/animal/Bee$BeeGrowCropGoal net/minecraft/world/entity/animal/Bee$BeeGrowCropGoal +CL: net/minecraft/world/entity/animal/Bee$BeeHurtByOtherGoal net/minecraft/world/entity/animal/Bee$BeeHurtByOtherGoal +CL: net/minecraft/world/entity/animal/Bee$BeeLocateHiveGoal net/minecraft/world/entity/animal/Bee$BeeLocateHiveGoal +CL: net/minecraft/world/entity/animal/Bee$BeeLookControl net/minecraft/world/entity/animal/Bee$BeeLookControl +CL: net/minecraft/world/entity/animal/Bee$BeePollinateGoal net/minecraft/world/entity/animal/Bee$BeePollinateGoal +CL: net/minecraft/world/entity/animal/Bee$BeeWanderGoal net/minecraft/world/entity/animal/Bee$BeeWanderGoal +CL: net/minecraft/world/entity/animal/Bucketable net/minecraft/world/entity/animal/Bucketable +CL: net/minecraft/world/entity/animal/Cat net/minecraft/world/entity/animal/Cat +CL: net/minecraft/world/entity/animal/Cat$CatAvoidEntityGoal net/minecraft/world/entity/animal/Cat$CatAvoidEntityGoal +CL: net/minecraft/world/entity/animal/Cat$CatRelaxOnOwnerGoal net/minecraft/world/entity/animal/Cat$CatRelaxOnOwnerGoal +CL: net/minecraft/world/entity/animal/Cat$CatTemptGoal net/minecraft/world/entity/animal/Cat$CatTemptGoal +CL: net/minecraft/world/entity/animal/CatVariant net/minecraft/world/entity/animal/CatVariant +CL: net/minecraft/world/entity/animal/Chicken net/minecraft/world/entity/animal/Chicken +CL: net/minecraft/world/entity/animal/Cod net/minecraft/world/entity/animal/Cod +CL: net/minecraft/world/entity/animal/Cow net/minecraft/world/entity/animal/Cow +CL: net/minecraft/world/entity/animal/Dolphin net/minecraft/world/entity/animal/Dolphin +CL: net/minecraft/world/entity/animal/Dolphin$DolphinSwimToTreasureGoal net/minecraft/world/entity/animal/Dolphin$DolphinSwimToTreasureGoal +CL: net/minecraft/world/entity/animal/Dolphin$DolphinSwimWithPlayerGoal net/minecraft/world/entity/animal/Dolphin$DolphinSwimWithPlayerGoal +CL: net/minecraft/world/entity/animal/Dolphin$PlayWithItemsGoal net/minecraft/world/entity/animal/Dolphin$PlayWithItemsGoal +CL: net/minecraft/world/entity/animal/FlyingAnimal net/minecraft/world/entity/animal/FlyingAnimal +CL: net/minecraft/world/entity/animal/Fox net/minecraft/world/entity/animal/Fox +CL: net/minecraft/world/entity/animal/Fox$DefendTrustedTargetGoal net/minecraft/world/entity/animal/Fox$DefendTrustedTargetGoal +CL: net/minecraft/world/entity/animal/Fox$FaceplantGoal net/minecraft/world/entity/animal/Fox$FaceplantGoal +CL: net/minecraft/world/entity/animal/Fox$FoxAlertableEntitiesSelector net/minecraft/world/entity/animal/Fox$FoxAlertableEntitiesSelector +CL: net/minecraft/world/entity/animal/Fox$FoxBehaviorGoal net/minecraft/world/entity/animal/Fox$FoxBehaviorGoal +CL: net/minecraft/world/entity/animal/Fox$FoxBreedGoal net/minecraft/world/entity/animal/Fox$FoxBreedGoal +CL: net/minecraft/world/entity/animal/Fox$FoxEatBerriesGoal net/minecraft/world/entity/animal/Fox$FoxEatBerriesGoal +CL: net/minecraft/world/entity/animal/Fox$FoxFloatGoal net/minecraft/world/entity/animal/Fox$FoxFloatGoal +CL: net/minecraft/world/entity/animal/Fox$FoxFollowParentGoal net/minecraft/world/entity/animal/Fox$FoxFollowParentGoal +CL: net/minecraft/world/entity/animal/Fox$FoxGroupData net/minecraft/world/entity/animal/Fox$FoxGroupData +CL: net/minecraft/world/entity/animal/Fox$FoxLookAtPlayerGoal net/minecraft/world/entity/animal/Fox$FoxLookAtPlayerGoal +CL: net/minecraft/world/entity/animal/Fox$FoxLookControl net/minecraft/world/entity/animal/Fox$FoxLookControl +CL: net/minecraft/world/entity/animal/Fox$FoxMeleeAttackGoal net/minecraft/world/entity/animal/Fox$FoxMeleeAttackGoal +CL: net/minecraft/world/entity/animal/Fox$FoxMoveControl net/minecraft/world/entity/animal/Fox$FoxMoveControl +CL: net/minecraft/world/entity/animal/Fox$FoxPanicGoal net/minecraft/world/entity/animal/Fox$FoxPanicGoal +CL: net/minecraft/world/entity/animal/Fox$FoxPounceGoal net/minecraft/world/entity/animal/Fox$FoxPounceGoal +CL: net/minecraft/world/entity/animal/Fox$FoxSearchForItemsGoal net/minecraft/world/entity/animal/Fox$FoxSearchForItemsGoal +CL: net/minecraft/world/entity/animal/Fox$FoxStrollThroughVillageGoal net/minecraft/world/entity/animal/Fox$FoxStrollThroughVillageGoal +CL: net/minecraft/world/entity/animal/Fox$PerchAndSearchGoal net/minecraft/world/entity/animal/Fox$PerchAndSearchGoal +CL: net/minecraft/world/entity/animal/Fox$SeekShelterGoal net/minecraft/world/entity/animal/Fox$SeekShelterGoal +CL: net/minecraft/world/entity/animal/Fox$SleepGoal net/minecraft/world/entity/animal/Fox$SleepGoal +CL: net/minecraft/world/entity/animal/Fox$StalkPreyGoal net/minecraft/world/entity/animal/Fox$StalkPreyGoal +CL: net/minecraft/world/entity/animal/Fox$Type net/minecraft/world/entity/animal/Fox$Type +CL: net/minecraft/world/entity/animal/FrogVariant net/minecraft/world/entity/animal/FrogVariant +CL: net/minecraft/world/entity/animal/IronGolem net/minecraft/world/entity/animal/IronGolem +CL: net/minecraft/world/entity/animal/IronGolem$Crackiness net/minecraft/world/entity/animal/IronGolem$Crackiness +CL: net/minecraft/world/entity/animal/MushroomCow net/minecraft/world/entity/animal/MushroomCow +CL: net/minecraft/world/entity/animal/MushroomCow$MushroomType net/minecraft/world/entity/animal/MushroomCow$MushroomType +CL: net/minecraft/world/entity/animal/Ocelot net/minecraft/world/entity/animal/Ocelot +CL: net/minecraft/world/entity/animal/Ocelot$OcelotAvoidEntityGoal net/minecraft/world/entity/animal/Ocelot$OcelotAvoidEntityGoal +CL: net/minecraft/world/entity/animal/Ocelot$OcelotTemptGoal net/minecraft/world/entity/animal/Ocelot$OcelotTemptGoal +CL: net/minecraft/world/entity/animal/Panda net/minecraft/world/entity/animal/Panda +CL: net/minecraft/world/entity/animal/Panda$Gene net/minecraft/world/entity/animal/Panda$Gene +CL: net/minecraft/world/entity/animal/Panda$PandaAttackGoal net/minecraft/world/entity/animal/Panda$PandaAttackGoal +CL: net/minecraft/world/entity/animal/Panda$PandaAvoidGoal net/minecraft/world/entity/animal/Panda$PandaAvoidGoal +CL: net/minecraft/world/entity/animal/Panda$PandaBreedGoal net/minecraft/world/entity/animal/Panda$PandaBreedGoal +CL: net/minecraft/world/entity/animal/Panda$PandaHurtByTargetGoal net/minecraft/world/entity/animal/Panda$PandaHurtByTargetGoal +CL: net/minecraft/world/entity/animal/Panda$PandaLieOnBackGoal net/minecraft/world/entity/animal/Panda$PandaLieOnBackGoal +CL: net/minecraft/world/entity/animal/Panda$PandaLookAtPlayerGoal net/minecraft/world/entity/animal/Panda$PandaLookAtPlayerGoal +CL: net/minecraft/world/entity/animal/Panda$PandaMoveControl net/minecraft/world/entity/animal/Panda$PandaMoveControl +CL: net/minecraft/world/entity/animal/Panda$PandaPanicGoal net/minecraft/world/entity/animal/Panda$PandaPanicGoal +CL: net/minecraft/world/entity/animal/Panda$PandaRollGoal net/minecraft/world/entity/animal/Panda$PandaRollGoal +CL: net/minecraft/world/entity/animal/Panda$PandaSitGoal net/minecraft/world/entity/animal/Panda$PandaSitGoal +CL: net/minecraft/world/entity/animal/Panda$PandaSneezeGoal net/minecraft/world/entity/animal/Panda$PandaSneezeGoal +CL: net/minecraft/world/entity/animal/Parrot net/minecraft/world/entity/animal/Parrot +CL: net/minecraft/world/entity/animal/Parrot$1 net/minecraft/world/entity/animal/Parrot$1 +CL: net/minecraft/world/entity/animal/Parrot$ParrotWanderGoal net/minecraft/world/entity/animal/Parrot$ParrotWanderGoal +CL: net/minecraft/world/entity/animal/Parrot$Variant net/minecraft/world/entity/animal/Parrot$Variant +CL: net/minecraft/world/entity/animal/Pig net/minecraft/world/entity/animal/Pig +CL: net/minecraft/world/entity/animal/PolarBear net/minecraft/world/entity/animal/PolarBear +CL: net/minecraft/world/entity/animal/PolarBear$PolarBearAttackPlayersGoal net/minecraft/world/entity/animal/PolarBear$PolarBearAttackPlayersGoal +CL: net/minecraft/world/entity/animal/PolarBear$PolarBearHurtByTargetGoal net/minecraft/world/entity/animal/PolarBear$PolarBearHurtByTargetGoal +CL: net/minecraft/world/entity/animal/PolarBear$PolarBearMeleeAttackGoal net/minecraft/world/entity/animal/PolarBear$PolarBearMeleeAttackGoal +CL: net/minecraft/world/entity/animal/PolarBear$PolarBearPanicGoal net/minecraft/world/entity/animal/PolarBear$PolarBearPanicGoal +CL: net/minecraft/world/entity/animal/Pufferfish net/minecraft/world/entity/animal/Pufferfish +CL: net/minecraft/world/entity/animal/Pufferfish$PufferfishPuffGoal net/minecraft/world/entity/animal/Pufferfish$PufferfishPuffGoal +CL: net/minecraft/world/entity/animal/Rabbit net/minecraft/world/entity/animal/Rabbit +CL: net/minecraft/world/entity/animal/Rabbit$EvilRabbitAttackGoal net/minecraft/world/entity/animal/Rabbit$EvilRabbitAttackGoal +CL: net/minecraft/world/entity/animal/Rabbit$RabbitAvoidEntityGoal net/minecraft/world/entity/animal/Rabbit$RabbitAvoidEntityGoal +CL: net/minecraft/world/entity/animal/Rabbit$RabbitGroupData net/minecraft/world/entity/animal/Rabbit$RabbitGroupData +CL: net/minecraft/world/entity/animal/Rabbit$RabbitJumpControl net/minecraft/world/entity/animal/Rabbit$RabbitJumpControl +CL: net/minecraft/world/entity/animal/Rabbit$RabbitMoveControl net/minecraft/world/entity/animal/Rabbit$RabbitMoveControl +CL: net/minecraft/world/entity/animal/Rabbit$RabbitPanicGoal net/minecraft/world/entity/animal/Rabbit$RabbitPanicGoal +CL: net/minecraft/world/entity/animal/Rabbit$RaidGardenGoal net/minecraft/world/entity/animal/Rabbit$RaidGardenGoal +CL: net/minecraft/world/entity/animal/Rabbit$Variant net/minecraft/world/entity/animal/Rabbit$Variant +CL: net/minecraft/world/entity/animal/Salmon net/minecraft/world/entity/animal/Salmon +CL: net/minecraft/world/entity/animal/Sheep net/minecraft/world/entity/animal/Sheep +CL: net/minecraft/world/entity/animal/Sheep$1 net/minecraft/world/entity/animal/Sheep$1 +CL: net/minecraft/world/entity/animal/Sheep$2 net/minecraft/world/entity/animal/Sheep$2 +CL: net/minecraft/world/entity/animal/ShoulderRidingEntity net/minecraft/world/entity/animal/ShoulderRidingEntity +CL: net/minecraft/world/entity/animal/SnowGolem net/minecraft/world/entity/animal/SnowGolem +CL: net/minecraft/world/entity/animal/Squid net/minecraft/world/entity/animal/Squid +CL: net/minecraft/world/entity/animal/Squid$SquidFleeGoal net/minecraft/world/entity/animal/Squid$SquidFleeGoal +CL: net/minecraft/world/entity/animal/Squid$SquidRandomMovementGoal net/minecraft/world/entity/animal/Squid$SquidRandomMovementGoal +CL: net/minecraft/world/entity/animal/TropicalFish net/minecraft/world/entity/animal/TropicalFish +CL: net/minecraft/world/entity/animal/TropicalFish$Base net/minecraft/world/entity/animal/TropicalFish$Base +CL: net/minecraft/world/entity/animal/TropicalFish$Pattern net/minecraft/world/entity/animal/TropicalFish$Pattern +CL: net/minecraft/world/entity/animal/TropicalFish$TropicalFishGroupData net/minecraft/world/entity/animal/TropicalFish$TropicalFishGroupData +CL: net/minecraft/world/entity/animal/TropicalFish$Variant net/minecraft/world/entity/animal/TropicalFish$Variant +CL: net/minecraft/world/entity/animal/Turtle net/minecraft/world/entity/animal/Turtle +CL: net/minecraft/world/entity/animal/Turtle$TurtleBreedGoal net/minecraft/world/entity/animal/Turtle$TurtleBreedGoal +CL: net/minecraft/world/entity/animal/Turtle$TurtleGoHomeGoal net/minecraft/world/entity/animal/Turtle$TurtleGoHomeGoal +CL: net/minecraft/world/entity/animal/Turtle$TurtleGoToWaterGoal net/minecraft/world/entity/animal/Turtle$TurtleGoToWaterGoal +CL: net/minecraft/world/entity/animal/Turtle$TurtleLayEggGoal net/minecraft/world/entity/animal/Turtle$TurtleLayEggGoal +CL: net/minecraft/world/entity/animal/Turtle$TurtleMoveControl net/minecraft/world/entity/animal/Turtle$TurtleMoveControl +CL: net/minecraft/world/entity/animal/Turtle$TurtlePanicGoal net/minecraft/world/entity/animal/Turtle$TurtlePanicGoal +CL: net/minecraft/world/entity/animal/Turtle$TurtlePathNavigation net/minecraft/world/entity/animal/Turtle$TurtlePathNavigation +CL: net/minecraft/world/entity/animal/Turtle$TurtleRandomStrollGoal net/minecraft/world/entity/animal/Turtle$TurtleRandomStrollGoal +CL: net/minecraft/world/entity/animal/Turtle$TurtleTravelGoal net/minecraft/world/entity/animal/Turtle$TurtleTravelGoal +CL: net/minecraft/world/entity/animal/WaterAnimal net/minecraft/world/entity/animal/WaterAnimal +CL: net/minecraft/world/entity/animal/Wolf net/minecraft/world/entity/animal/Wolf +CL: net/minecraft/world/entity/animal/Wolf$WolfAvoidEntityGoal net/minecraft/world/entity/animal/Wolf$WolfAvoidEntityGoal +CL: net/minecraft/world/entity/animal/Wolf$WolfPanicGoal net/minecraft/world/entity/animal/Wolf$WolfPanicGoal +CL: net/minecraft/world/entity/animal/allay/Allay net/minecraft/world/entity/animal/allay/Allay +CL: net/minecraft/world/entity/animal/allay/Allay$JukeboxListener net/minecraft/world/entity/animal/allay/Allay$JukeboxListener +CL: net/minecraft/world/entity/animal/allay/Allay$VibrationUser net/minecraft/world/entity/animal/allay/Allay$VibrationUser +CL: net/minecraft/world/entity/animal/allay/AllayAi net/minecraft/world/entity/animal/allay/AllayAi +CL: net/minecraft/world/entity/animal/allay/package-info net/minecraft/world/entity/animal/allay/package-info +CL: net/minecraft/world/entity/animal/axolotl/Axolotl net/minecraft/world/entity/animal/axolotl/Axolotl +CL: net/minecraft/world/entity/animal/axolotl/Axolotl$AxolotlGroupData net/minecraft/world/entity/animal/axolotl/Axolotl$AxolotlGroupData +CL: net/minecraft/world/entity/animal/axolotl/Axolotl$AxolotlLookControl net/minecraft/world/entity/animal/axolotl/Axolotl$AxolotlLookControl +CL: net/minecraft/world/entity/animal/axolotl/Axolotl$AxolotlMoveControl net/minecraft/world/entity/animal/axolotl/Axolotl$AxolotlMoveControl +CL: net/minecraft/world/entity/animal/axolotl/Axolotl$Variant net/minecraft/world/entity/animal/axolotl/Axolotl$Variant +CL: net/minecraft/world/entity/animal/axolotl/AxolotlAi net/minecraft/world/entity/animal/axolotl/AxolotlAi +CL: net/minecraft/world/entity/animal/axolotl/PlayDead net/minecraft/world/entity/animal/axolotl/PlayDead +CL: net/minecraft/world/entity/animal/axolotl/ValidatePlayDead net/minecraft/world/entity/animal/axolotl/ValidatePlayDead +CL: net/minecraft/world/entity/animal/axolotl/package-info net/minecraft/world/entity/animal/axolotl/package-info +CL: net/minecraft/world/entity/animal/camel/Camel net/minecraft/world/entity/animal/camel/Camel +CL: net/minecraft/world/entity/animal/camel/Camel$CamelBodyRotationControl net/minecraft/world/entity/animal/camel/Camel$CamelBodyRotationControl +CL: net/minecraft/world/entity/animal/camel/Camel$CamelMoveControl net/minecraft/world/entity/animal/camel/Camel$CamelMoveControl +CL: net/minecraft/world/entity/animal/camel/CamelAi net/minecraft/world/entity/animal/camel/CamelAi +CL: net/minecraft/world/entity/animal/camel/CamelAi$CamelPanic net/minecraft/world/entity/animal/camel/CamelAi$CamelPanic +CL: net/minecraft/world/entity/animal/camel/CamelAi$RandomSitting net/minecraft/world/entity/animal/camel/CamelAi$RandomSitting +CL: net/minecraft/world/entity/animal/camel/package-info net/minecraft/world/entity/animal/camel/package-info +CL: net/minecraft/world/entity/animal/frog/Frog net/minecraft/world/entity/animal/frog/Frog +CL: net/minecraft/world/entity/animal/frog/Frog$FrogLookControl net/minecraft/world/entity/animal/frog/Frog$FrogLookControl +CL: net/minecraft/world/entity/animal/frog/Frog$FrogNodeEvaluator net/minecraft/world/entity/animal/frog/Frog$FrogNodeEvaluator +CL: net/minecraft/world/entity/animal/frog/Frog$FrogPathNavigation net/minecraft/world/entity/animal/frog/Frog$FrogPathNavigation +CL: net/minecraft/world/entity/animal/frog/FrogAi net/minecraft/world/entity/animal/frog/FrogAi +CL: net/minecraft/world/entity/animal/frog/ShootTongue net/minecraft/world/entity/animal/frog/ShootTongue +CL: net/minecraft/world/entity/animal/frog/ShootTongue$1 net/minecraft/world/entity/animal/frog/ShootTongue$1 +CL: net/minecraft/world/entity/animal/frog/ShootTongue$State net/minecraft/world/entity/animal/frog/ShootTongue$State +CL: net/minecraft/world/entity/animal/frog/Tadpole net/minecraft/world/entity/animal/frog/Tadpole +CL: net/minecraft/world/entity/animal/frog/TadpoleAi net/minecraft/world/entity/animal/frog/TadpoleAi +CL: net/minecraft/world/entity/animal/frog/package-info net/minecraft/world/entity/animal/frog/package-info +CL: net/minecraft/world/entity/animal/goat/Goat net/minecraft/world/entity/animal/goat/Goat +CL: net/minecraft/world/entity/animal/goat/GoatAi net/minecraft/world/entity/animal/goat/GoatAi +CL: net/minecraft/world/entity/animal/goat/package-info net/minecraft/world/entity/animal/goat/package-info +CL: net/minecraft/world/entity/animal/horse/AbstractChestedHorse net/minecraft/world/entity/animal/horse/AbstractChestedHorse +CL: net/minecraft/world/entity/animal/horse/AbstractChestedHorse$1 net/minecraft/world/entity/animal/horse/AbstractChestedHorse$1 +CL: net/minecraft/world/entity/animal/horse/AbstractHorse net/minecraft/world/entity/animal/horse/AbstractHorse +CL: net/minecraft/world/entity/animal/horse/AbstractHorse$1 net/minecraft/world/entity/animal/horse/AbstractHorse$1 +CL: net/minecraft/world/entity/animal/horse/Donkey net/minecraft/world/entity/animal/horse/Donkey +CL: net/minecraft/world/entity/animal/horse/Horse net/minecraft/world/entity/animal/horse/Horse +CL: net/minecraft/world/entity/animal/horse/Horse$HorseGroupData net/minecraft/world/entity/animal/horse/Horse$HorseGroupData +CL: net/minecraft/world/entity/animal/horse/Llama net/minecraft/world/entity/animal/horse/Llama +CL: net/minecraft/world/entity/animal/horse/Llama$LlamaAttackWolfGoal net/minecraft/world/entity/animal/horse/Llama$LlamaAttackWolfGoal +CL: net/minecraft/world/entity/animal/horse/Llama$LlamaGroupData net/minecraft/world/entity/animal/horse/Llama$LlamaGroupData +CL: net/minecraft/world/entity/animal/horse/Llama$LlamaHurtByTargetGoal net/minecraft/world/entity/animal/horse/Llama$LlamaHurtByTargetGoal +CL: net/minecraft/world/entity/animal/horse/Llama$Variant net/minecraft/world/entity/animal/horse/Llama$Variant +CL: net/minecraft/world/entity/animal/horse/Markings net/minecraft/world/entity/animal/horse/Markings +CL: net/minecraft/world/entity/animal/horse/Mule net/minecraft/world/entity/animal/horse/Mule +CL: net/minecraft/world/entity/animal/horse/SkeletonHorse net/minecraft/world/entity/animal/horse/SkeletonHorse +CL: net/minecraft/world/entity/animal/horse/SkeletonTrapGoal net/minecraft/world/entity/animal/horse/SkeletonTrapGoal +CL: net/minecraft/world/entity/animal/horse/TraderLlama net/minecraft/world/entity/animal/horse/TraderLlama +CL: net/minecraft/world/entity/animal/horse/TraderLlama$TraderLlamaDefendWanderingTraderGoal net/minecraft/world/entity/animal/horse/TraderLlama$TraderLlamaDefendWanderingTraderGoal +CL: net/minecraft/world/entity/animal/horse/Variant net/minecraft/world/entity/animal/horse/Variant +CL: net/minecraft/world/entity/animal/horse/ZombieHorse net/minecraft/world/entity/animal/horse/ZombieHorse +CL: net/minecraft/world/entity/animal/horse/package-info net/minecraft/world/entity/animal/horse/package-info +CL: net/minecraft/world/entity/animal/package-info net/minecraft/world/entity/animal/package-info +CL: net/minecraft/world/entity/animal/sniffer/Sniffer net/minecraft/world/entity/animal/sniffer/Sniffer +CL: net/minecraft/world/entity/animal/sniffer/Sniffer$1 net/minecraft/world/entity/animal/sniffer/Sniffer$1 +CL: net/minecraft/world/entity/animal/sniffer/Sniffer$State net/minecraft/world/entity/animal/sniffer/Sniffer$State +CL: net/minecraft/world/entity/animal/sniffer/SnifferAi net/minecraft/world/entity/animal/sniffer/SnifferAi +CL: net/minecraft/world/entity/animal/sniffer/SnifferAi$1 net/minecraft/world/entity/animal/sniffer/SnifferAi$1 +CL: net/minecraft/world/entity/animal/sniffer/SnifferAi$2 net/minecraft/world/entity/animal/sniffer/SnifferAi$2 +CL: net/minecraft/world/entity/animal/sniffer/SnifferAi$3 net/minecraft/world/entity/animal/sniffer/SnifferAi$3 +CL: net/minecraft/world/entity/animal/sniffer/SnifferAi$Digging net/minecraft/world/entity/animal/sniffer/SnifferAi$Digging +CL: net/minecraft/world/entity/animal/sniffer/SnifferAi$FeelingHappy net/minecraft/world/entity/animal/sniffer/SnifferAi$FeelingHappy +CL: net/minecraft/world/entity/animal/sniffer/SnifferAi$FinishedDigging net/minecraft/world/entity/animal/sniffer/SnifferAi$FinishedDigging +CL: net/minecraft/world/entity/animal/sniffer/SnifferAi$Scenting net/minecraft/world/entity/animal/sniffer/SnifferAi$Scenting +CL: net/minecraft/world/entity/animal/sniffer/SnifferAi$Searching net/minecraft/world/entity/animal/sniffer/SnifferAi$Searching +CL: net/minecraft/world/entity/animal/sniffer/SnifferAi$Sniffing net/minecraft/world/entity/animal/sniffer/SnifferAi$Sniffing +CL: net/minecraft/world/entity/boss/EnderDragonPart net/minecraft/world/entity/boss/EnderDragonPart +CL: net/minecraft/world/entity/boss/enderdragon/EndCrystal net/minecraft/world/entity/boss/enderdragon/EndCrystal +CL: net/minecraft/world/entity/boss/enderdragon/EnderDragon net/minecraft/world/entity/boss/enderdragon/EnderDragon +CL: net/minecraft/world/entity/boss/enderdragon/package-info net/minecraft/world/entity/boss/enderdragon/package-info +CL: net/minecraft/world/entity/boss/enderdragon/phases/AbstractDragonPhaseInstance net/minecraft/world/entity/boss/enderdragon/phases/AbstractDragonPhaseInstance +CL: net/minecraft/world/entity/boss/enderdragon/phases/AbstractDragonSittingPhase net/minecraft/world/entity/boss/enderdragon/phases/AbstractDragonSittingPhase +CL: net/minecraft/world/entity/boss/enderdragon/phases/DragonChargePlayerPhase net/minecraft/world/entity/boss/enderdragon/phases/DragonChargePlayerPhase +CL: net/minecraft/world/entity/boss/enderdragon/phases/DragonDeathPhase net/minecraft/world/entity/boss/enderdragon/phases/DragonDeathPhase +CL: net/minecraft/world/entity/boss/enderdragon/phases/DragonHoldingPatternPhase net/minecraft/world/entity/boss/enderdragon/phases/DragonHoldingPatternPhase +CL: net/minecraft/world/entity/boss/enderdragon/phases/DragonHoverPhase net/minecraft/world/entity/boss/enderdragon/phases/DragonHoverPhase +CL: net/minecraft/world/entity/boss/enderdragon/phases/DragonLandingApproachPhase net/minecraft/world/entity/boss/enderdragon/phases/DragonLandingApproachPhase +CL: net/minecraft/world/entity/boss/enderdragon/phases/DragonLandingPhase net/minecraft/world/entity/boss/enderdragon/phases/DragonLandingPhase +CL: net/minecraft/world/entity/boss/enderdragon/phases/DragonPhaseInstance net/minecraft/world/entity/boss/enderdragon/phases/DragonPhaseInstance +CL: net/minecraft/world/entity/boss/enderdragon/phases/DragonSittingAttackingPhase net/minecraft/world/entity/boss/enderdragon/phases/DragonSittingAttackingPhase +CL: net/minecraft/world/entity/boss/enderdragon/phases/DragonSittingFlamingPhase net/minecraft/world/entity/boss/enderdragon/phases/DragonSittingFlamingPhase +CL: net/minecraft/world/entity/boss/enderdragon/phases/DragonSittingScanningPhase net/minecraft/world/entity/boss/enderdragon/phases/DragonSittingScanningPhase +CL: net/minecraft/world/entity/boss/enderdragon/phases/DragonStrafePlayerPhase net/minecraft/world/entity/boss/enderdragon/phases/DragonStrafePlayerPhase +CL: net/minecraft/world/entity/boss/enderdragon/phases/DragonTakeoffPhase net/minecraft/world/entity/boss/enderdragon/phases/DragonTakeoffPhase +CL: net/minecraft/world/entity/boss/enderdragon/phases/EnderDragonPhase net/minecraft/world/entity/boss/enderdragon/phases/EnderDragonPhase +CL: net/minecraft/world/entity/boss/enderdragon/phases/EnderDragonPhaseManager net/minecraft/world/entity/boss/enderdragon/phases/EnderDragonPhaseManager +CL: net/minecraft/world/entity/boss/enderdragon/phases/package-info net/minecraft/world/entity/boss/enderdragon/phases/package-info +CL: net/minecraft/world/entity/boss/package-info net/minecraft/world/entity/boss/package-info +CL: net/minecraft/world/entity/boss/wither/WitherBoss net/minecraft/world/entity/boss/wither/WitherBoss +CL: net/minecraft/world/entity/boss/wither/WitherBoss$WitherDoNothingGoal net/minecraft/world/entity/boss/wither/WitherBoss$WitherDoNothingGoal +CL: net/minecraft/world/entity/boss/wither/package-info net/minecraft/world/entity/boss/wither/package-info +CL: net/minecraft/world/entity/decoration/ArmorStand net/minecraft/world/entity/decoration/ArmorStand +CL: net/minecraft/world/entity/decoration/ArmorStand$1 net/minecraft/world/entity/decoration/ArmorStand$1 +CL: net/minecraft/world/entity/decoration/GlowItemFrame net/minecraft/world/entity/decoration/GlowItemFrame +CL: net/minecraft/world/entity/decoration/HangingEntity net/minecraft/world/entity/decoration/HangingEntity +CL: net/minecraft/world/entity/decoration/HangingEntity$1 net/minecraft/world/entity/decoration/HangingEntity$1 +CL: net/minecraft/world/entity/decoration/ItemFrame net/minecraft/world/entity/decoration/ItemFrame +CL: net/minecraft/world/entity/decoration/ItemFrame$1 net/minecraft/world/entity/decoration/ItemFrame$1 +CL: net/minecraft/world/entity/decoration/ItemFrame$2 net/minecraft/world/entity/decoration/ItemFrame$2 +CL: net/minecraft/world/entity/decoration/LeashFenceKnotEntity net/minecraft/world/entity/decoration/LeashFenceKnotEntity +CL: net/minecraft/world/entity/decoration/Painting net/minecraft/world/entity/decoration/Painting +CL: net/minecraft/world/entity/decoration/PaintingVariant net/minecraft/world/entity/decoration/PaintingVariant +CL: net/minecraft/world/entity/decoration/PaintingVariants net/minecraft/world/entity/decoration/PaintingVariants +CL: net/minecraft/world/entity/decoration/package-info net/minecraft/world/entity/decoration/package-info +CL: net/minecraft/world/entity/item/FallingBlockEntity net/minecraft/world/entity/item/FallingBlockEntity +CL: net/minecraft/world/entity/item/ItemEntity net/minecraft/world/entity/item/ItemEntity +CL: net/minecraft/world/entity/item/PrimedTnt net/minecraft/world/entity/item/PrimedTnt +CL: net/minecraft/world/entity/item/package-info net/minecraft/world/entity/item/package-info +CL: net/minecraft/world/entity/monster/AbstractIllager net/minecraft/world/entity/monster/AbstractIllager +CL: net/minecraft/world/entity/monster/AbstractIllager$IllagerArmPose net/minecraft/world/entity/monster/AbstractIllager$IllagerArmPose +CL: net/minecraft/world/entity/monster/AbstractIllager$RaiderOpenDoorGoal net/minecraft/world/entity/monster/AbstractIllager$RaiderOpenDoorGoal +CL: net/minecraft/world/entity/monster/AbstractSkeleton net/minecraft/world/entity/monster/AbstractSkeleton +CL: net/minecraft/world/entity/monster/AbstractSkeleton$1 net/minecraft/world/entity/monster/AbstractSkeleton$1 +CL: net/minecraft/world/entity/monster/Blaze net/minecraft/world/entity/monster/Blaze +CL: net/minecraft/world/entity/monster/Blaze$BlazeAttackGoal net/minecraft/world/entity/monster/Blaze$BlazeAttackGoal +CL: net/minecraft/world/entity/monster/CaveSpider net/minecraft/world/entity/monster/CaveSpider +CL: net/minecraft/world/entity/monster/Creeper net/minecraft/world/entity/monster/Creeper +CL: net/minecraft/world/entity/monster/CrossbowAttackMob net/minecraft/world/entity/monster/CrossbowAttackMob +CL: net/minecraft/world/entity/monster/Drowned net/minecraft/world/entity/monster/Drowned +CL: net/minecraft/world/entity/monster/Drowned$DrownedAttackGoal net/minecraft/world/entity/monster/Drowned$DrownedAttackGoal +CL: net/minecraft/world/entity/monster/Drowned$DrownedGoToBeachGoal net/minecraft/world/entity/monster/Drowned$DrownedGoToBeachGoal +CL: net/minecraft/world/entity/monster/Drowned$DrownedGoToWaterGoal net/minecraft/world/entity/monster/Drowned$DrownedGoToWaterGoal +CL: net/minecraft/world/entity/monster/Drowned$DrownedMoveControl net/minecraft/world/entity/monster/Drowned$DrownedMoveControl +CL: net/minecraft/world/entity/monster/Drowned$DrownedSwimUpGoal net/minecraft/world/entity/monster/Drowned$DrownedSwimUpGoal +CL: net/minecraft/world/entity/monster/Drowned$DrownedTridentAttackGoal net/minecraft/world/entity/monster/Drowned$DrownedTridentAttackGoal +CL: net/minecraft/world/entity/monster/ElderGuardian net/minecraft/world/entity/monster/ElderGuardian +CL: net/minecraft/world/entity/monster/EnderMan net/minecraft/world/entity/monster/EnderMan +CL: net/minecraft/world/entity/monster/EnderMan$EndermanFreezeWhenLookedAt net/minecraft/world/entity/monster/EnderMan$EndermanFreezeWhenLookedAt +CL: net/minecraft/world/entity/monster/EnderMan$EndermanLeaveBlockGoal net/minecraft/world/entity/monster/EnderMan$EndermanLeaveBlockGoal +CL: net/minecraft/world/entity/monster/EnderMan$EndermanLookForPlayerGoal net/minecraft/world/entity/monster/EnderMan$EndermanLookForPlayerGoal +CL: net/minecraft/world/entity/monster/EnderMan$EndermanTakeBlockGoal net/minecraft/world/entity/monster/EnderMan$EndermanTakeBlockGoal +CL: net/minecraft/world/entity/monster/Endermite net/minecraft/world/entity/monster/Endermite +CL: net/minecraft/world/entity/monster/Enemy net/minecraft/world/entity/monster/Enemy +CL: net/minecraft/world/entity/monster/Evoker net/minecraft/world/entity/monster/Evoker +CL: net/minecraft/world/entity/monster/Evoker$EvokerAttackSpellGoal net/minecraft/world/entity/monster/Evoker$EvokerAttackSpellGoal +CL: net/minecraft/world/entity/monster/Evoker$EvokerCastingSpellGoal net/minecraft/world/entity/monster/Evoker$EvokerCastingSpellGoal +CL: net/minecraft/world/entity/monster/Evoker$EvokerSummonSpellGoal net/minecraft/world/entity/monster/Evoker$EvokerSummonSpellGoal +CL: net/minecraft/world/entity/monster/Evoker$EvokerWololoSpellGoal net/minecraft/world/entity/monster/Evoker$EvokerWololoSpellGoal +CL: net/minecraft/world/entity/monster/Ghast net/minecraft/world/entity/monster/Ghast +CL: net/minecraft/world/entity/monster/Ghast$GhastLookGoal net/minecraft/world/entity/monster/Ghast$GhastLookGoal +CL: net/minecraft/world/entity/monster/Ghast$GhastMoveControl net/minecraft/world/entity/monster/Ghast$GhastMoveControl +CL: net/minecraft/world/entity/monster/Ghast$GhastShootFireballGoal net/minecraft/world/entity/monster/Ghast$GhastShootFireballGoal +CL: net/minecraft/world/entity/monster/Ghast$RandomFloatAroundGoal net/minecraft/world/entity/monster/Ghast$RandomFloatAroundGoal +CL: net/minecraft/world/entity/monster/Giant net/minecraft/world/entity/monster/Giant +CL: net/minecraft/world/entity/monster/Guardian net/minecraft/world/entity/monster/Guardian +CL: net/minecraft/world/entity/monster/Guardian$GuardianAttackGoal net/minecraft/world/entity/monster/Guardian$GuardianAttackGoal +CL: net/minecraft/world/entity/monster/Guardian$GuardianAttackSelector net/minecraft/world/entity/monster/Guardian$GuardianAttackSelector +CL: net/minecraft/world/entity/monster/Guardian$GuardianMoveControl net/minecraft/world/entity/monster/Guardian$GuardianMoveControl +CL: net/minecraft/world/entity/monster/Husk net/minecraft/world/entity/monster/Husk +CL: net/minecraft/world/entity/monster/Illusioner net/minecraft/world/entity/monster/Illusioner +CL: net/minecraft/world/entity/monster/Illusioner$IllusionerBlindnessSpellGoal net/minecraft/world/entity/monster/Illusioner$IllusionerBlindnessSpellGoal +CL: net/minecraft/world/entity/monster/Illusioner$IllusionerMirrorSpellGoal net/minecraft/world/entity/monster/Illusioner$IllusionerMirrorSpellGoal +CL: net/minecraft/world/entity/monster/MagmaCube net/minecraft/world/entity/monster/MagmaCube +CL: net/minecraft/world/entity/monster/Monster net/minecraft/world/entity/monster/Monster +CL: net/minecraft/world/entity/monster/PatrollingMonster net/minecraft/world/entity/monster/PatrollingMonster +CL: net/minecraft/world/entity/monster/PatrollingMonster$LongDistancePatrolGoal net/minecraft/world/entity/monster/PatrollingMonster$LongDistancePatrolGoal +CL: net/minecraft/world/entity/monster/Phantom net/minecraft/world/entity/monster/Phantom +CL: net/minecraft/world/entity/monster/Phantom$AttackPhase net/minecraft/world/entity/monster/Phantom$AttackPhase +CL: net/minecraft/world/entity/monster/Phantom$PhantomAttackPlayerTargetGoal net/minecraft/world/entity/monster/Phantom$PhantomAttackPlayerTargetGoal +CL: net/minecraft/world/entity/monster/Phantom$PhantomAttackStrategyGoal net/minecraft/world/entity/monster/Phantom$PhantomAttackStrategyGoal +CL: net/minecraft/world/entity/monster/Phantom$PhantomBodyRotationControl net/minecraft/world/entity/monster/Phantom$PhantomBodyRotationControl +CL: net/minecraft/world/entity/monster/Phantom$PhantomCircleAroundAnchorGoal net/minecraft/world/entity/monster/Phantom$PhantomCircleAroundAnchorGoal +CL: net/minecraft/world/entity/monster/Phantom$PhantomLookControl net/minecraft/world/entity/monster/Phantom$PhantomLookControl +CL: net/minecraft/world/entity/monster/Phantom$PhantomMoveControl net/minecraft/world/entity/monster/Phantom$PhantomMoveControl +CL: net/minecraft/world/entity/monster/Phantom$PhantomMoveTargetGoal net/minecraft/world/entity/monster/Phantom$PhantomMoveTargetGoal +CL: net/minecraft/world/entity/monster/Phantom$PhantomSweepAttackGoal net/minecraft/world/entity/monster/Phantom$PhantomSweepAttackGoal +CL: net/minecraft/world/entity/monster/Pillager net/minecraft/world/entity/monster/Pillager +CL: net/minecraft/world/entity/monster/RangedAttackMob net/minecraft/world/entity/monster/RangedAttackMob +CL: net/minecraft/world/entity/monster/Ravager net/minecraft/world/entity/monster/Ravager +CL: net/minecraft/world/entity/monster/Ravager$RavagerMeleeAttackGoal net/minecraft/world/entity/monster/Ravager$RavagerMeleeAttackGoal +CL: net/minecraft/world/entity/monster/Shulker net/minecraft/world/entity/monster/Shulker +CL: net/minecraft/world/entity/monster/Shulker$ShulkerAttackGoal net/minecraft/world/entity/monster/Shulker$ShulkerAttackGoal +CL: net/minecraft/world/entity/monster/Shulker$ShulkerBodyRotationControl net/minecraft/world/entity/monster/Shulker$ShulkerBodyRotationControl +CL: net/minecraft/world/entity/monster/Shulker$ShulkerDefenseAttackGoal net/minecraft/world/entity/monster/Shulker$ShulkerDefenseAttackGoal +CL: net/minecraft/world/entity/monster/Shulker$ShulkerLookControl net/minecraft/world/entity/monster/Shulker$ShulkerLookControl +CL: net/minecraft/world/entity/monster/Shulker$ShulkerNearestAttackGoal net/minecraft/world/entity/monster/Shulker$ShulkerNearestAttackGoal +CL: net/minecraft/world/entity/monster/Shulker$ShulkerPeekGoal net/minecraft/world/entity/monster/Shulker$ShulkerPeekGoal +CL: net/minecraft/world/entity/monster/Silverfish net/minecraft/world/entity/monster/Silverfish +CL: net/minecraft/world/entity/monster/Silverfish$SilverfishMergeWithStoneGoal net/minecraft/world/entity/monster/Silverfish$SilverfishMergeWithStoneGoal +CL: net/minecraft/world/entity/monster/Silverfish$SilverfishWakeUpFriendsGoal net/minecraft/world/entity/monster/Silverfish$SilverfishWakeUpFriendsGoal +CL: net/minecraft/world/entity/monster/Skeleton net/minecraft/world/entity/monster/Skeleton +CL: net/minecraft/world/entity/monster/Slime net/minecraft/world/entity/monster/Slime +CL: net/minecraft/world/entity/monster/Slime$SlimeAttackGoal net/minecraft/world/entity/monster/Slime$SlimeAttackGoal +CL: net/minecraft/world/entity/monster/Slime$SlimeFloatGoal net/minecraft/world/entity/monster/Slime$SlimeFloatGoal +CL: net/minecraft/world/entity/monster/Slime$SlimeKeepOnJumpingGoal net/minecraft/world/entity/monster/Slime$SlimeKeepOnJumpingGoal +CL: net/minecraft/world/entity/monster/Slime$SlimeMoveControl net/minecraft/world/entity/monster/Slime$SlimeMoveControl +CL: net/minecraft/world/entity/monster/Slime$SlimeRandomDirectionGoal net/minecraft/world/entity/monster/Slime$SlimeRandomDirectionGoal +CL: net/minecraft/world/entity/monster/SpellcasterIllager net/minecraft/world/entity/monster/SpellcasterIllager +CL: net/minecraft/world/entity/monster/SpellcasterIllager$IllagerSpell net/minecraft/world/entity/monster/SpellcasterIllager$IllagerSpell +CL: net/minecraft/world/entity/monster/SpellcasterIllager$SpellcasterCastingSpellGoal net/minecraft/world/entity/monster/SpellcasterIllager$SpellcasterCastingSpellGoal +CL: net/minecraft/world/entity/monster/SpellcasterIllager$SpellcasterUseSpellGoal net/minecraft/world/entity/monster/SpellcasterIllager$SpellcasterUseSpellGoal +CL: net/minecraft/world/entity/monster/Spider net/minecraft/world/entity/monster/Spider +CL: net/minecraft/world/entity/monster/Spider$SpiderAttackGoal net/minecraft/world/entity/monster/Spider$SpiderAttackGoal +CL: net/minecraft/world/entity/monster/Spider$SpiderEffectsGroupData net/minecraft/world/entity/monster/Spider$SpiderEffectsGroupData +CL: net/minecraft/world/entity/monster/Spider$SpiderTargetGoal net/minecraft/world/entity/monster/Spider$SpiderTargetGoal +CL: net/minecraft/world/entity/monster/Stray net/minecraft/world/entity/monster/Stray +CL: net/minecraft/world/entity/monster/Strider net/minecraft/world/entity/monster/Strider +CL: net/minecraft/world/entity/monster/Strider$StriderGoToLavaGoal net/minecraft/world/entity/monster/Strider$StriderGoToLavaGoal +CL: net/minecraft/world/entity/monster/Strider$StriderPathNavigation net/minecraft/world/entity/monster/Strider$StriderPathNavigation +CL: net/minecraft/world/entity/monster/Vex net/minecraft/world/entity/monster/Vex +CL: net/minecraft/world/entity/monster/Vex$VexChargeAttackGoal net/minecraft/world/entity/monster/Vex$VexChargeAttackGoal +CL: net/minecraft/world/entity/monster/Vex$VexCopyOwnerTargetGoal net/minecraft/world/entity/monster/Vex$VexCopyOwnerTargetGoal +CL: net/minecraft/world/entity/monster/Vex$VexMoveControl net/minecraft/world/entity/monster/Vex$VexMoveControl +CL: net/minecraft/world/entity/monster/Vex$VexRandomMoveGoal net/minecraft/world/entity/monster/Vex$VexRandomMoveGoal +CL: net/minecraft/world/entity/monster/Vindicator net/minecraft/world/entity/monster/Vindicator +CL: net/minecraft/world/entity/monster/Vindicator$VindicatorBreakDoorGoal net/minecraft/world/entity/monster/Vindicator$VindicatorBreakDoorGoal +CL: net/minecraft/world/entity/monster/Vindicator$VindicatorJohnnyAttackGoal net/minecraft/world/entity/monster/Vindicator$VindicatorJohnnyAttackGoal +CL: net/minecraft/world/entity/monster/Vindicator$VindicatorMeleeAttackGoal net/minecraft/world/entity/monster/Vindicator$VindicatorMeleeAttackGoal +CL: net/minecraft/world/entity/monster/Witch net/minecraft/world/entity/monster/Witch +CL: net/minecraft/world/entity/monster/WitherSkeleton net/minecraft/world/entity/monster/WitherSkeleton +CL: net/minecraft/world/entity/monster/Zoglin net/minecraft/world/entity/monster/Zoglin +CL: net/minecraft/world/entity/monster/Zombie net/minecraft/world/entity/monster/Zombie +CL: net/minecraft/world/entity/monster/Zombie$ZombieAttackTurtleEggGoal net/minecraft/world/entity/monster/Zombie$ZombieAttackTurtleEggGoal +CL: net/minecraft/world/entity/monster/Zombie$ZombieGroupData net/minecraft/world/entity/monster/Zombie$ZombieGroupData +CL: net/minecraft/world/entity/monster/ZombieVillager net/minecraft/world/entity/monster/ZombieVillager +CL: net/minecraft/world/entity/monster/ZombifiedPiglin net/minecraft/world/entity/monster/ZombifiedPiglin +CL: net/minecraft/world/entity/monster/hoglin/Hoglin net/minecraft/world/entity/monster/hoglin/Hoglin +CL: net/minecraft/world/entity/monster/hoglin/HoglinAi net/minecraft/world/entity/monster/hoglin/HoglinAi +CL: net/minecraft/world/entity/monster/hoglin/HoglinBase net/minecraft/world/entity/monster/hoglin/HoglinBase +CL: net/minecraft/world/entity/monster/hoglin/package-info net/minecraft/world/entity/monster/hoglin/package-info +CL: net/minecraft/world/entity/monster/package-info net/minecraft/world/entity/monster/package-info +CL: net/minecraft/world/entity/monster/piglin/AbstractPiglin net/minecraft/world/entity/monster/piglin/AbstractPiglin +CL: net/minecraft/world/entity/monster/piglin/Piglin net/minecraft/world/entity/monster/piglin/Piglin +CL: net/minecraft/world/entity/monster/piglin/PiglinAi net/minecraft/world/entity/monster/piglin/PiglinAi +CL: net/minecraft/world/entity/monster/piglin/PiglinArmPose net/minecraft/world/entity/monster/piglin/PiglinArmPose +CL: net/minecraft/world/entity/monster/piglin/PiglinBrute net/minecraft/world/entity/monster/piglin/PiglinBrute +CL: net/minecraft/world/entity/monster/piglin/PiglinBruteAi net/minecraft/world/entity/monster/piglin/PiglinBruteAi +CL: net/minecraft/world/entity/monster/piglin/RememberIfHoglinWasKilled net/minecraft/world/entity/monster/piglin/RememberIfHoglinWasKilled +CL: net/minecraft/world/entity/monster/piglin/StartAdmiringItemIfSeen net/minecraft/world/entity/monster/piglin/StartAdmiringItemIfSeen +CL: net/minecraft/world/entity/monster/piglin/StartHuntingHoglin net/minecraft/world/entity/monster/piglin/StartHuntingHoglin +CL: net/minecraft/world/entity/monster/piglin/StopAdmiringIfItemTooFarAway net/minecraft/world/entity/monster/piglin/StopAdmiringIfItemTooFarAway +CL: net/minecraft/world/entity/monster/piglin/StopAdmiringIfTiredOfTryingToReachItem net/minecraft/world/entity/monster/piglin/StopAdmiringIfTiredOfTryingToReachItem +CL: net/minecraft/world/entity/monster/piglin/StopHoldingItemIfNoLongerAdmiring net/minecraft/world/entity/monster/piglin/StopHoldingItemIfNoLongerAdmiring +CL: net/minecraft/world/entity/monster/piglin/package-info net/minecraft/world/entity/monster/piglin/package-info +CL: net/minecraft/world/entity/monster/warden/AngerLevel net/minecraft/world/entity/monster/warden/AngerLevel +CL: net/minecraft/world/entity/monster/warden/AngerManagement net/minecraft/world/entity/monster/warden/AngerManagement +CL: net/minecraft/world/entity/monster/warden/AngerManagement$1 net/minecraft/world/entity/monster/warden/AngerManagement$1 +CL: net/minecraft/world/entity/monster/warden/AngerManagement$Sorter net/minecraft/world/entity/monster/warden/AngerManagement$Sorter +CL: net/minecraft/world/entity/monster/warden/Warden net/minecraft/world/entity/monster/warden/Warden +CL: net/minecraft/world/entity/monster/warden/Warden$1 net/minecraft/world/entity/monster/warden/Warden$1 +CL: net/minecraft/world/entity/monster/warden/Warden$1$1 net/minecraft/world/entity/monster/warden/Warden$1$1 +CL: net/minecraft/world/entity/monster/warden/Warden$2 net/minecraft/world/entity/monster/warden/Warden$2 +CL: net/minecraft/world/entity/monster/warden/Warden$VibrationUser net/minecraft/world/entity/monster/warden/Warden$VibrationUser +CL: net/minecraft/world/entity/monster/warden/WardenAi net/minecraft/world/entity/monster/warden/WardenAi +CL: net/minecraft/world/entity/monster/warden/WardenSpawnTracker net/minecraft/world/entity/monster/warden/WardenSpawnTracker +CL: net/minecraft/world/entity/monster/warden/package-info net/minecraft/world/entity/monster/warden/package-info +CL: net/minecraft/world/entity/npc/AbstractVillager net/minecraft/world/entity/npc/AbstractVillager +CL: net/minecraft/world/entity/npc/CatSpawner net/minecraft/world/entity/npc/CatSpawner +CL: net/minecraft/world/entity/npc/ClientSideMerchant net/minecraft/world/entity/npc/ClientSideMerchant +CL: net/minecraft/world/entity/npc/InventoryCarrier net/minecraft/world/entity/npc/InventoryCarrier +CL: net/minecraft/world/entity/npc/Npc net/minecraft/world/entity/npc/Npc +CL: net/minecraft/world/entity/npc/Villager net/minecraft/world/entity/npc/Villager +CL: net/minecraft/world/entity/npc/VillagerData net/minecraft/world/entity/npc/VillagerData +CL: net/minecraft/world/entity/npc/VillagerDataHolder net/minecraft/world/entity/npc/VillagerDataHolder +CL: net/minecraft/world/entity/npc/VillagerProfession net/minecraft/world/entity/npc/VillagerProfession +CL: net/minecraft/world/entity/npc/VillagerTrades net/minecraft/world/entity/npc/VillagerTrades +CL: net/minecraft/world/entity/npc/VillagerTrades$DyedArmorForEmeralds net/minecraft/world/entity/npc/VillagerTrades$DyedArmorForEmeralds +CL: net/minecraft/world/entity/npc/VillagerTrades$EmeraldForItems net/minecraft/world/entity/npc/VillagerTrades$EmeraldForItems +CL: net/minecraft/world/entity/npc/VillagerTrades$EmeraldsForVillagerTypeItem net/minecraft/world/entity/npc/VillagerTrades$EmeraldsForVillagerTypeItem +CL: net/minecraft/world/entity/npc/VillagerTrades$EnchantBookForEmeralds net/minecraft/world/entity/npc/VillagerTrades$EnchantBookForEmeralds +CL: net/minecraft/world/entity/npc/VillagerTrades$EnchantedItemForEmeralds net/minecraft/world/entity/npc/VillagerTrades$EnchantedItemForEmeralds +CL: net/minecraft/world/entity/npc/VillagerTrades$ItemListing net/minecraft/world/entity/npc/VillagerTrades$ItemListing +CL: net/minecraft/world/entity/npc/VillagerTrades$ItemsAndEmeraldsToItems net/minecraft/world/entity/npc/VillagerTrades$ItemsAndEmeraldsToItems +CL: net/minecraft/world/entity/npc/VillagerTrades$ItemsForEmeralds net/minecraft/world/entity/npc/VillagerTrades$ItemsForEmeralds +CL: net/minecraft/world/entity/npc/VillagerTrades$SuspiciousStewForEmerald net/minecraft/world/entity/npc/VillagerTrades$SuspiciousStewForEmerald +CL: net/minecraft/world/entity/npc/VillagerTrades$TippedArrowForItemsAndEmeralds net/minecraft/world/entity/npc/VillagerTrades$TippedArrowForItemsAndEmeralds +CL: net/minecraft/world/entity/npc/VillagerTrades$TreasureMapForEmeralds net/minecraft/world/entity/npc/VillagerTrades$TreasureMapForEmeralds +CL: net/minecraft/world/entity/npc/VillagerType net/minecraft/world/entity/npc/VillagerType +CL: net/minecraft/world/entity/npc/WanderingTrader net/minecraft/world/entity/npc/WanderingTrader +CL: net/minecraft/world/entity/npc/WanderingTrader$WanderToPositionGoal net/minecraft/world/entity/npc/WanderingTrader$WanderToPositionGoal +CL: net/minecraft/world/entity/npc/WanderingTraderSpawner net/minecraft/world/entity/npc/WanderingTraderSpawner +CL: net/minecraft/world/entity/npc/package-info net/minecraft/world/entity/npc/package-info +CL: net/minecraft/world/entity/package-info net/minecraft/world/entity/package-info +CL: net/minecraft/world/entity/player/Abilities net/minecraft/world/entity/player/Abilities +CL: net/minecraft/world/entity/player/ChatVisiblity net/minecraft/world/entity/player/ChatVisiblity +CL: net/minecraft/world/entity/player/Inventory net/minecraft/world/entity/player/Inventory +CL: net/minecraft/world/entity/player/Player net/minecraft/world/entity/player/Player +CL: net/minecraft/world/entity/player/Player$1 net/minecraft/world/entity/player/Player$1 +CL: net/minecraft/world/entity/player/Player$BedSleepingProblem net/minecraft/world/entity/player/Player$BedSleepingProblem +CL: net/minecraft/world/entity/player/PlayerModelPart net/minecraft/world/entity/player/PlayerModelPart +CL: net/minecraft/world/entity/player/ProfileKeyPair net/minecraft/world/entity/player/ProfileKeyPair +CL: net/minecraft/world/entity/player/ProfilePublicKey net/minecraft/world/entity/player/ProfilePublicKey +CL: net/minecraft/world/entity/player/ProfilePublicKey$Data net/minecraft/world/entity/player/ProfilePublicKey$Data +CL: net/minecraft/world/entity/player/ProfilePublicKey$ValidationException net/minecraft/world/entity/player/ProfilePublicKey$ValidationException +CL: net/minecraft/world/entity/player/StackedContents net/minecraft/world/entity/player/StackedContents +CL: net/minecraft/world/entity/player/StackedContents$RecipePicker net/minecraft/world/entity/player/StackedContents$RecipePicker +CL: net/minecraft/world/entity/player/package-info net/minecraft/world/entity/player/package-info +CL: net/minecraft/world/entity/projectile/AbstractArrow net/minecraft/world/entity/projectile/AbstractArrow +CL: net/minecraft/world/entity/projectile/AbstractArrow$1 net/minecraft/world/entity/projectile/AbstractArrow$1 +CL: net/minecraft/world/entity/projectile/AbstractArrow$Pickup net/minecraft/world/entity/projectile/AbstractArrow$Pickup +CL: net/minecraft/world/entity/projectile/AbstractHurtingProjectile net/minecraft/world/entity/projectile/AbstractHurtingProjectile +CL: net/minecraft/world/entity/projectile/Arrow net/minecraft/world/entity/projectile/Arrow +CL: net/minecraft/world/entity/projectile/DragonFireball net/minecraft/world/entity/projectile/DragonFireball +CL: net/minecraft/world/entity/projectile/EvokerFangs net/minecraft/world/entity/projectile/EvokerFangs +CL: net/minecraft/world/entity/projectile/EyeOfEnder net/minecraft/world/entity/projectile/EyeOfEnder +CL: net/minecraft/world/entity/projectile/Fireball net/minecraft/world/entity/projectile/Fireball +CL: net/minecraft/world/entity/projectile/FireworkRocketEntity net/minecraft/world/entity/projectile/FireworkRocketEntity +CL: net/minecraft/world/entity/projectile/FishingHook net/minecraft/world/entity/projectile/FishingHook +CL: net/minecraft/world/entity/projectile/FishingHook$1 net/minecraft/world/entity/projectile/FishingHook$1 +CL: net/minecraft/world/entity/projectile/FishingHook$FishHookState net/minecraft/world/entity/projectile/FishingHook$FishHookState +CL: net/minecraft/world/entity/projectile/FishingHook$OpenWaterType net/minecraft/world/entity/projectile/FishingHook$OpenWaterType +CL: net/minecraft/world/entity/projectile/ItemSupplier net/minecraft/world/entity/projectile/ItemSupplier +CL: net/minecraft/world/entity/projectile/LargeFireball net/minecraft/world/entity/projectile/LargeFireball +CL: net/minecraft/world/entity/projectile/LlamaSpit net/minecraft/world/entity/projectile/LlamaSpit +CL: net/minecraft/world/entity/projectile/Projectile net/minecraft/world/entity/projectile/Projectile +CL: net/minecraft/world/entity/projectile/ProjectileUtil net/minecraft/world/entity/projectile/ProjectileUtil +CL: net/minecraft/world/entity/projectile/ShulkerBullet net/minecraft/world/entity/projectile/ShulkerBullet +CL: net/minecraft/world/entity/projectile/SmallFireball net/minecraft/world/entity/projectile/SmallFireball +CL: net/minecraft/world/entity/projectile/Snowball net/minecraft/world/entity/projectile/Snowball +CL: net/minecraft/world/entity/projectile/SpectralArrow net/minecraft/world/entity/projectile/SpectralArrow +CL: net/minecraft/world/entity/projectile/ThrowableItemProjectile net/minecraft/world/entity/projectile/ThrowableItemProjectile +CL: net/minecraft/world/entity/projectile/ThrowableProjectile net/minecraft/world/entity/projectile/ThrowableProjectile +CL: net/minecraft/world/entity/projectile/ThrownEgg net/minecraft/world/entity/projectile/ThrownEgg +CL: net/minecraft/world/entity/projectile/ThrownEnderpearl net/minecraft/world/entity/projectile/ThrownEnderpearl +CL: net/minecraft/world/entity/projectile/ThrownExperienceBottle net/minecraft/world/entity/projectile/ThrownExperienceBottle +CL: net/minecraft/world/entity/projectile/ThrownPotion net/minecraft/world/entity/projectile/ThrownPotion +CL: net/minecraft/world/entity/projectile/ThrownTrident net/minecraft/world/entity/projectile/ThrownTrident +CL: net/minecraft/world/entity/projectile/WitherSkull net/minecraft/world/entity/projectile/WitherSkull +CL: net/minecraft/world/entity/projectile/package-info net/minecraft/world/entity/projectile/package-info +CL: net/minecraft/world/entity/raid/Raid net/minecraft/world/entity/raid/Raid +CL: net/minecraft/world/entity/raid/Raid$1 net/minecraft/world/entity/raid/Raid$1 +CL: net/minecraft/world/entity/raid/Raid$RaidStatus net/minecraft/world/entity/raid/Raid$RaidStatus +CL: net/minecraft/world/entity/raid/Raid$RaiderType net/minecraft/world/entity/raid/Raid$RaiderType +CL: net/minecraft/world/entity/raid/Raider net/minecraft/world/entity/raid/Raider +CL: net/minecraft/world/entity/raid/Raider$HoldGroundAttackGoal net/minecraft/world/entity/raid/Raider$HoldGroundAttackGoal +CL: net/minecraft/world/entity/raid/Raider$ObtainRaidLeaderBannerGoal net/minecraft/world/entity/raid/Raider$ObtainRaidLeaderBannerGoal +CL: net/minecraft/world/entity/raid/Raider$RaiderCelebration net/minecraft/world/entity/raid/Raider$RaiderCelebration +CL: net/minecraft/world/entity/raid/Raider$RaiderMoveThroughVillageGoal net/minecraft/world/entity/raid/Raider$RaiderMoveThroughVillageGoal +CL: net/minecraft/world/entity/raid/Raids net/minecraft/world/entity/raid/Raids +CL: net/minecraft/world/entity/raid/package-info net/minecraft/world/entity/raid/package-info +CL: net/minecraft/world/entity/schedule/Activity net/minecraft/world/entity/schedule/Activity +CL: net/minecraft/world/entity/schedule/Keyframe net/minecraft/world/entity/schedule/Keyframe +CL: net/minecraft/world/entity/schedule/Schedule net/minecraft/world/entity/schedule/Schedule +CL: net/minecraft/world/entity/schedule/ScheduleBuilder net/minecraft/world/entity/schedule/ScheduleBuilder +CL: net/minecraft/world/entity/schedule/ScheduleBuilder$ActivityTransition net/minecraft/world/entity/schedule/ScheduleBuilder$ActivityTransition +CL: net/minecraft/world/entity/schedule/Timeline net/minecraft/world/entity/schedule/Timeline +CL: net/minecraft/world/entity/schedule/package-info net/minecraft/world/entity/schedule/package-info +CL: net/minecraft/world/entity/vehicle/AbstractMinecart net/minecraft/world/entity/vehicle/AbstractMinecart +CL: net/minecraft/world/entity/vehicle/AbstractMinecart$1 net/minecraft/world/entity/vehicle/AbstractMinecart$1 +CL: net/minecraft/world/entity/vehicle/AbstractMinecart$Type net/minecraft/world/entity/vehicle/AbstractMinecart$Type +CL: net/minecraft/world/entity/vehicle/AbstractMinecartContainer net/minecraft/world/entity/vehicle/AbstractMinecartContainer +CL: net/minecraft/world/entity/vehicle/Boat net/minecraft/world/entity/vehicle/Boat +CL: net/minecraft/world/entity/vehicle/Boat$1 net/minecraft/world/entity/vehicle/Boat$1 +CL: net/minecraft/world/entity/vehicle/Boat$Status net/minecraft/world/entity/vehicle/Boat$Status +CL: net/minecraft/world/entity/vehicle/Boat$Type net/minecraft/world/entity/vehicle/Boat$Type +CL: net/minecraft/world/entity/vehicle/ChestBoat net/minecraft/world/entity/vehicle/ChestBoat +CL: net/minecraft/world/entity/vehicle/ChestBoat$1 net/minecraft/world/entity/vehicle/ChestBoat$1 +CL: net/minecraft/world/entity/vehicle/ContainerEntity net/minecraft/world/entity/vehicle/ContainerEntity +CL: net/minecraft/world/entity/vehicle/ContainerEntity$1 net/minecraft/world/entity/vehicle/ContainerEntity$1 +CL: net/minecraft/world/entity/vehicle/DismountHelper net/minecraft/world/entity/vehicle/DismountHelper +CL: net/minecraft/world/entity/vehicle/Minecart net/minecraft/world/entity/vehicle/Minecart +CL: net/minecraft/world/entity/vehicle/MinecartChest net/minecraft/world/entity/vehicle/MinecartChest +CL: net/minecraft/world/entity/vehicle/MinecartCommandBlock net/minecraft/world/entity/vehicle/MinecartCommandBlock +CL: net/minecraft/world/entity/vehicle/MinecartCommandBlock$MinecartCommandBase net/minecraft/world/entity/vehicle/MinecartCommandBlock$MinecartCommandBase +CL: net/minecraft/world/entity/vehicle/MinecartFurnace net/minecraft/world/entity/vehicle/MinecartFurnace +CL: net/minecraft/world/entity/vehicle/MinecartHopper net/minecraft/world/entity/vehicle/MinecartHopper +CL: net/minecraft/world/entity/vehicle/MinecartSpawner net/minecraft/world/entity/vehicle/MinecartSpawner +CL: net/minecraft/world/entity/vehicle/MinecartSpawner$1 net/minecraft/world/entity/vehicle/MinecartSpawner$1 +CL: net/minecraft/world/entity/vehicle/MinecartTNT net/minecraft/world/entity/vehicle/MinecartTNT +CL: net/minecraft/world/entity/vehicle/package-info net/minecraft/world/entity/vehicle/package-info +CL: net/minecraft/world/flag/FeatureElement net/minecraft/world/flag/FeatureElement +CL: net/minecraft/world/flag/FeatureFlag net/minecraft/world/flag/FeatureFlag +CL: net/minecraft/world/flag/FeatureFlagRegistry net/minecraft/world/flag/FeatureFlagRegistry +CL: net/minecraft/world/flag/FeatureFlagRegistry$Builder net/minecraft/world/flag/FeatureFlagRegistry$Builder +CL: net/minecraft/world/flag/FeatureFlagSet net/minecraft/world/flag/FeatureFlagSet +CL: net/minecraft/world/flag/FeatureFlagUniverse net/minecraft/world/flag/FeatureFlagUniverse +CL: net/minecraft/world/flag/FeatureFlags net/minecraft/world/flag/FeatureFlags +CL: net/minecraft/world/flag/package-info net/minecraft/world/flag/package-info +CL: net/minecraft/world/food/FoodConstants net/minecraft/world/food/FoodConstants +CL: net/minecraft/world/food/FoodData net/minecraft/world/food/FoodData +CL: net/minecraft/world/food/FoodProperties net/minecraft/world/food/FoodProperties +CL: net/minecraft/world/food/FoodProperties$Builder net/minecraft/world/food/FoodProperties$Builder +CL: net/minecraft/world/food/Foods net/minecraft/world/food/Foods +CL: net/minecraft/world/food/package-info net/minecraft/world/food/package-info +CL: net/minecraft/world/inventory/AbstractContainerMenu net/minecraft/world/inventory/AbstractContainerMenu +CL: net/minecraft/world/inventory/AbstractContainerMenu$1 net/minecraft/world/inventory/AbstractContainerMenu$1 +CL: net/minecraft/world/inventory/AbstractFurnaceMenu net/minecraft/world/inventory/AbstractFurnaceMenu +CL: net/minecraft/world/inventory/AnvilMenu net/minecraft/world/inventory/AnvilMenu +CL: net/minecraft/world/inventory/AnvilMenu$1 net/minecraft/world/inventory/AnvilMenu$1 +CL: net/minecraft/world/inventory/BeaconMenu net/minecraft/world/inventory/BeaconMenu +CL: net/minecraft/world/inventory/BeaconMenu$1 net/minecraft/world/inventory/BeaconMenu$1 +CL: net/minecraft/world/inventory/BeaconMenu$PaymentSlot net/minecraft/world/inventory/BeaconMenu$PaymentSlot +CL: net/minecraft/world/inventory/BlastFurnaceMenu net/minecraft/world/inventory/BlastFurnaceMenu +CL: net/minecraft/world/inventory/BrewingStandMenu net/minecraft/world/inventory/BrewingStandMenu +CL: net/minecraft/world/inventory/BrewingStandMenu$FuelSlot net/minecraft/world/inventory/BrewingStandMenu$FuelSlot +CL: net/minecraft/world/inventory/BrewingStandMenu$IngredientsSlot net/minecraft/world/inventory/BrewingStandMenu$IngredientsSlot +CL: net/minecraft/world/inventory/BrewingStandMenu$PotionSlot net/minecraft/world/inventory/BrewingStandMenu$PotionSlot +CL: net/minecraft/world/inventory/CartographyTableMenu net/minecraft/world/inventory/CartographyTableMenu +CL: net/minecraft/world/inventory/CartographyTableMenu$1 net/minecraft/world/inventory/CartographyTableMenu$1 +CL: net/minecraft/world/inventory/CartographyTableMenu$2 net/minecraft/world/inventory/CartographyTableMenu$2 +CL: net/minecraft/world/inventory/CartographyTableMenu$3 net/minecraft/world/inventory/CartographyTableMenu$3 +CL: net/minecraft/world/inventory/CartographyTableMenu$4 net/minecraft/world/inventory/CartographyTableMenu$4 +CL: net/minecraft/world/inventory/CartographyTableMenu$5 net/minecraft/world/inventory/CartographyTableMenu$5 +CL: net/minecraft/world/inventory/ChestMenu net/minecraft/world/inventory/ChestMenu +CL: net/minecraft/world/inventory/ClickAction net/minecraft/world/inventory/ClickAction +CL: net/minecraft/world/inventory/ClickType net/minecraft/world/inventory/ClickType +CL: net/minecraft/world/inventory/ContainerData net/minecraft/world/inventory/ContainerData +CL: net/minecraft/world/inventory/ContainerLevelAccess net/minecraft/world/inventory/ContainerLevelAccess +CL: net/minecraft/world/inventory/ContainerLevelAccess$1 net/minecraft/world/inventory/ContainerLevelAccess$1 +CL: net/minecraft/world/inventory/ContainerLevelAccess$2 net/minecraft/world/inventory/ContainerLevelAccess$2 +CL: net/minecraft/world/inventory/ContainerListener net/minecraft/world/inventory/ContainerListener +CL: net/minecraft/world/inventory/ContainerSynchronizer net/minecraft/world/inventory/ContainerSynchronizer +CL: net/minecraft/world/inventory/CraftingContainer net/minecraft/world/inventory/CraftingContainer +CL: net/minecraft/world/inventory/CraftingMenu net/minecraft/world/inventory/CraftingMenu +CL: net/minecraft/world/inventory/DataSlot net/minecraft/world/inventory/DataSlot +CL: net/minecraft/world/inventory/DataSlot$1 net/minecraft/world/inventory/DataSlot$1 +CL: net/minecraft/world/inventory/DataSlot$2 net/minecraft/world/inventory/DataSlot$2 +CL: net/minecraft/world/inventory/DataSlot$3 net/minecraft/world/inventory/DataSlot$3 +CL: net/minecraft/world/inventory/DispenserMenu net/minecraft/world/inventory/DispenserMenu +CL: net/minecraft/world/inventory/EnchantmentMenu net/minecraft/world/inventory/EnchantmentMenu +CL: net/minecraft/world/inventory/EnchantmentMenu$1 net/minecraft/world/inventory/EnchantmentMenu$1 +CL: net/minecraft/world/inventory/EnchantmentMenu$2 net/minecraft/world/inventory/EnchantmentMenu$2 +CL: net/minecraft/world/inventory/EnchantmentMenu$3 net/minecraft/world/inventory/EnchantmentMenu$3 +CL: net/minecraft/world/inventory/FurnaceFuelSlot net/minecraft/world/inventory/FurnaceFuelSlot +CL: net/minecraft/world/inventory/FurnaceMenu net/minecraft/world/inventory/FurnaceMenu +CL: net/minecraft/world/inventory/FurnaceResultSlot net/minecraft/world/inventory/FurnaceResultSlot +CL: net/minecraft/world/inventory/GrindstoneMenu net/minecraft/world/inventory/GrindstoneMenu +CL: net/minecraft/world/inventory/GrindstoneMenu$1 net/minecraft/world/inventory/GrindstoneMenu$1 +CL: net/minecraft/world/inventory/GrindstoneMenu$2 net/minecraft/world/inventory/GrindstoneMenu$2 +CL: net/minecraft/world/inventory/GrindstoneMenu$3 net/minecraft/world/inventory/GrindstoneMenu$3 +CL: net/minecraft/world/inventory/GrindstoneMenu$4 net/minecraft/world/inventory/GrindstoneMenu$4 +CL: net/minecraft/world/inventory/HopperMenu net/minecraft/world/inventory/HopperMenu +CL: net/minecraft/world/inventory/HorseInventoryMenu net/minecraft/world/inventory/HorseInventoryMenu +CL: net/minecraft/world/inventory/HorseInventoryMenu$1 net/minecraft/world/inventory/HorseInventoryMenu$1 +CL: net/minecraft/world/inventory/HorseInventoryMenu$2 net/minecraft/world/inventory/HorseInventoryMenu$2 +CL: net/minecraft/world/inventory/InventoryMenu net/minecraft/world/inventory/InventoryMenu +CL: net/minecraft/world/inventory/InventoryMenu$1 net/minecraft/world/inventory/InventoryMenu$1 +CL: net/minecraft/world/inventory/InventoryMenu$2 net/minecraft/world/inventory/InventoryMenu$2 +CL: net/minecraft/world/inventory/ItemCombinerMenu net/minecraft/world/inventory/ItemCombinerMenu +CL: net/minecraft/world/inventory/ItemCombinerMenu$1 net/minecraft/world/inventory/ItemCombinerMenu$1 +CL: net/minecraft/world/inventory/ItemCombinerMenu$2 net/minecraft/world/inventory/ItemCombinerMenu$2 +CL: net/minecraft/world/inventory/ItemCombinerMenu$3 net/minecraft/world/inventory/ItemCombinerMenu$3 +CL: net/minecraft/world/inventory/ItemCombinerMenuSlotDefinition net/minecraft/world/inventory/ItemCombinerMenuSlotDefinition +CL: net/minecraft/world/inventory/ItemCombinerMenuSlotDefinition$Builder net/minecraft/world/inventory/ItemCombinerMenuSlotDefinition$Builder +CL: net/minecraft/world/inventory/ItemCombinerMenuSlotDefinition$SlotDefinition net/minecraft/world/inventory/ItemCombinerMenuSlotDefinition$SlotDefinition +CL: net/minecraft/world/inventory/LecternMenu net/minecraft/world/inventory/LecternMenu +CL: net/minecraft/world/inventory/LecternMenu$1 net/minecraft/world/inventory/LecternMenu$1 +CL: net/minecraft/world/inventory/LoomMenu net/minecraft/world/inventory/LoomMenu +CL: net/minecraft/world/inventory/LoomMenu$1 net/minecraft/world/inventory/LoomMenu$1 +CL: net/minecraft/world/inventory/LoomMenu$2 net/minecraft/world/inventory/LoomMenu$2 +CL: net/minecraft/world/inventory/LoomMenu$3 net/minecraft/world/inventory/LoomMenu$3 +CL: net/minecraft/world/inventory/LoomMenu$4 net/minecraft/world/inventory/LoomMenu$4 +CL: net/minecraft/world/inventory/LoomMenu$5 net/minecraft/world/inventory/LoomMenu$5 +CL: net/minecraft/world/inventory/LoomMenu$6 net/minecraft/world/inventory/LoomMenu$6 +CL: net/minecraft/world/inventory/MenuConstructor net/minecraft/world/inventory/MenuConstructor +CL: net/minecraft/world/inventory/MenuType net/minecraft/world/inventory/MenuType +CL: net/minecraft/world/inventory/MenuType$MenuSupplier net/minecraft/world/inventory/MenuType$MenuSupplier +CL: net/minecraft/world/inventory/MerchantContainer net/minecraft/world/inventory/MerchantContainer +CL: net/minecraft/world/inventory/MerchantMenu net/minecraft/world/inventory/MerchantMenu +CL: net/minecraft/world/inventory/MerchantResultSlot net/minecraft/world/inventory/MerchantResultSlot +CL: net/minecraft/world/inventory/PlayerEnderChestContainer net/minecraft/world/inventory/PlayerEnderChestContainer +CL: net/minecraft/world/inventory/RecipeBookMenu net/minecraft/world/inventory/RecipeBookMenu +CL: net/minecraft/world/inventory/RecipeBookType net/minecraft/world/inventory/RecipeBookType +CL: net/minecraft/world/inventory/RecipeHolder net/minecraft/world/inventory/RecipeHolder +CL: net/minecraft/world/inventory/ResultContainer net/minecraft/world/inventory/ResultContainer +CL: net/minecraft/world/inventory/ResultSlot net/minecraft/world/inventory/ResultSlot +CL: net/minecraft/world/inventory/ShulkerBoxMenu net/minecraft/world/inventory/ShulkerBoxMenu +CL: net/minecraft/world/inventory/ShulkerBoxSlot net/minecraft/world/inventory/ShulkerBoxSlot +CL: net/minecraft/world/inventory/SimpleContainerData net/minecraft/world/inventory/SimpleContainerData +CL: net/minecraft/world/inventory/Slot net/minecraft/world/inventory/Slot +CL: net/minecraft/world/inventory/SmithingMenu net/minecraft/world/inventory/SmithingMenu +CL: net/minecraft/world/inventory/SmokerMenu net/minecraft/world/inventory/SmokerMenu +CL: net/minecraft/world/inventory/StackedContentsCompatible net/minecraft/world/inventory/StackedContentsCompatible +CL: net/minecraft/world/inventory/StonecutterMenu net/minecraft/world/inventory/StonecutterMenu +CL: net/minecraft/world/inventory/StonecutterMenu$1 net/minecraft/world/inventory/StonecutterMenu$1 +CL: net/minecraft/world/inventory/StonecutterMenu$2 net/minecraft/world/inventory/StonecutterMenu$2 +CL: net/minecraft/world/inventory/TransientCraftingContainer net/minecraft/world/inventory/TransientCraftingContainer +CL: net/minecraft/world/inventory/package-info net/minecraft/world/inventory/package-info +CL: net/minecraft/world/inventory/tooltip/BundleTooltip net/minecraft/world/inventory/tooltip/BundleTooltip +CL: net/minecraft/world/inventory/tooltip/TooltipComponent net/minecraft/world/inventory/tooltip/TooltipComponent +CL: net/minecraft/world/inventory/tooltip/package-info net/minecraft/world/inventory/tooltip/package-info +CL: net/minecraft/world/item/AdventureModeCheck net/minecraft/world/item/AdventureModeCheck +CL: net/minecraft/world/item/AirItem net/minecraft/world/item/AirItem +CL: net/minecraft/world/item/ArmorItem net/minecraft/world/item/ArmorItem +CL: net/minecraft/world/item/ArmorItem$1 net/minecraft/world/item/ArmorItem$1 +CL: net/minecraft/world/item/ArmorItem$Type net/minecraft/world/item/ArmorItem$Type +CL: net/minecraft/world/item/ArmorMaterial net/minecraft/world/item/ArmorMaterial +CL: net/minecraft/world/item/ArmorMaterials net/minecraft/world/item/ArmorMaterials +CL: net/minecraft/world/item/ArmorStandItem net/minecraft/world/item/ArmorStandItem +CL: net/minecraft/world/item/ArrowItem net/minecraft/world/item/ArrowItem +CL: net/minecraft/world/item/AxeItem net/minecraft/world/item/AxeItem +CL: net/minecraft/world/item/BannerItem net/minecraft/world/item/BannerItem +CL: net/minecraft/world/item/BannerPatternItem net/minecraft/world/item/BannerPatternItem +CL: net/minecraft/world/item/BedItem net/minecraft/world/item/BedItem +CL: net/minecraft/world/item/BlockItem net/minecraft/world/item/BlockItem +CL: net/minecraft/world/item/BoatItem net/minecraft/world/item/BoatItem +CL: net/minecraft/world/item/BoneMealItem net/minecraft/world/item/BoneMealItem +CL: net/minecraft/world/item/BookItem net/minecraft/world/item/BookItem +CL: net/minecraft/world/item/BottleItem net/minecraft/world/item/BottleItem +CL: net/minecraft/world/item/BowItem net/minecraft/world/item/BowItem +CL: net/minecraft/world/item/BowlFoodItem net/minecraft/world/item/BowlFoodItem +CL: net/minecraft/world/item/BrushItem net/minecraft/world/item/BrushItem +CL: net/minecraft/world/item/BrushItem$1 net/minecraft/world/item/BrushItem$1 +CL: net/minecraft/world/item/BrushItem$DustParticlesDelta net/minecraft/world/item/BrushItem$DustParticlesDelta +CL: net/minecraft/world/item/BucketItem net/minecraft/world/item/BucketItem +CL: net/minecraft/world/item/BundleItem net/minecraft/world/item/BundleItem +CL: net/minecraft/world/item/ChorusFruitItem net/minecraft/world/item/ChorusFruitItem +CL: net/minecraft/world/item/CompassItem net/minecraft/world/item/CompassItem +CL: net/minecraft/world/item/ComplexItem net/minecraft/world/item/ComplexItem +CL: net/minecraft/world/item/CreativeModeTab net/minecraft/world/item/CreativeModeTab +CL: net/minecraft/world/item/CreativeModeTab$1 net/minecraft/world/item/CreativeModeTab$1 +CL: net/minecraft/world/item/CreativeModeTab$Builder net/minecraft/world/item/CreativeModeTab$Builder +CL: net/minecraft/world/item/CreativeModeTab$DisplayItemsGenerator net/minecraft/world/item/CreativeModeTab$DisplayItemsGenerator +CL: net/minecraft/world/item/CreativeModeTab$ItemDisplayBuilder net/minecraft/world/item/CreativeModeTab$ItemDisplayBuilder +CL: net/minecraft/world/item/CreativeModeTab$ItemDisplayParameters net/minecraft/world/item/CreativeModeTab$ItemDisplayParameters +CL: net/minecraft/world/item/CreativeModeTab$Output net/minecraft/world/item/CreativeModeTab$Output +CL: net/minecraft/world/item/CreativeModeTab$Row net/minecraft/world/item/CreativeModeTab$Row +CL: net/minecraft/world/item/CreativeModeTab$TabVisibility net/minecraft/world/item/CreativeModeTab$TabVisibility +CL: net/minecraft/world/item/CreativeModeTab$Type net/minecraft/world/item/CreativeModeTab$Type +CL: net/minecraft/world/item/CreativeModeTabs net/minecraft/world/item/CreativeModeTabs +CL: net/minecraft/world/item/CrossbowItem net/minecraft/world/item/CrossbowItem +CL: net/minecraft/world/item/DebugStickItem net/minecraft/world/item/DebugStickItem +CL: net/minecraft/world/item/DiggerItem net/minecraft/world/item/DiggerItem +CL: net/minecraft/world/item/DiscFragmentItem net/minecraft/world/item/DiscFragmentItem +CL: net/minecraft/world/item/DispensibleContainerItem net/minecraft/world/item/DispensibleContainerItem +CL: net/minecraft/world/item/DoubleHighBlockItem net/minecraft/world/item/DoubleHighBlockItem +CL: net/minecraft/world/item/DyeColor net/minecraft/world/item/DyeColor +CL: net/minecraft/world/item/DyeItem net/minecraft/world/item/DyeItem +CL: net/minecraft/world/item/DyeableArmorItem net/minecraft/world/item/DyeableArmorItem +CL: net/minecraft/world/item/DyeableHorseArmorItem net/minecraft/world/item/DyeableHorseArmorItem +CL: net/minecraft/world/item/DyeableLeatherItem net/minecraft/world/item/DyeableLeatherItem +CL: net/minecraft/world/item/EggItem net/minecraft/world/item/EggItem +CL: net/minecraft/world/item/ElytraItem net/minecraft/world/item/ElytraItem +CL: net/minecraft/world/item/EmptyMapItem net/minecraft/world/item/EmptyMapItem +CL: net/minecraft/world/item/EnchantedBookItem net/minecraft/world/item/EnchantedBookItem +CL: net/minecraft/world/item/EnchantedGoldenAppleItem net/minecraft/world/item/EnchantedGoldenAppleItem +CL: net/minecraft/world/item/EndCrystalItem net/minecraft/world/item/EndCrystalItem +CL: net/minecraft/world/item/EnderEyeItem net/minecraft/world/item/EnderEyeItem +CL: net/minecraft/world/item/EnderpearlItem net/minecraft/world/item/EnderpearlItem +CL: net/minecraft/world/item/Equipable net/minecraft/world/item/Equipable +CL: net/minecraft/world/item/ExperienceBottleItem net/minecraft/world/item/ExperienceBottleItem +CL: net/minecraft/world/item/FireChargeItem net/minecraft/world/item/FireChargeItem +CL: net/minecraft/world/item/FireworkRocketItem net/minecraft/world/item/FireworkRocketItem +CL: net/minecraft/world/item/FireworkRocketItem$Shape net/minecraft/world/item/FireworkRocketItem$Shape +CL: net/minecraft/world/item/FireworkStarItem net/minecraft/world/item/FireworkStarItem +CL: net/minecraft/world/item/FishingRodItem net/minecraft/world/item/FishingRodItem +CL: net/minecraft/world/item/FlintAndSteelItem net/minecraft/world/item/FlintAndSteelItem +CL: net/minecraft/world/item/FoodOnAStickItem net/minecraft/world/item/FoodOnAStickItem +CL: net/minecraft/world/item/GameMasterBlockItem net/minecraft/world/item/GameMasterBlockItem +CL: net/minecraft/world/item/GlowInkSacItem net/minecraft/world/item/GlowInkSacItem +CL: net/minecraft/world/item/HangingEntityItem net/minecraft/world/item/HangingEntityItem +CL: net/minecraft/world/item/HangingSignItem net/minecraft/world/item/HangingSignItem +CL: net/minecraft/world/item/HoeItem net/minecraft/world/item/HoeItem +CL: net/minecraft/world/item/HoneyBottleItem net/minecraft/world/item/HoneyBottleItem +CL: net/minecraft/world/item/HoneycombItem net/minecraft/world/item/HoneycombItem +CL: net/minecraft/world/item/HorseArmorItem net/minecraft/world/item/HorseArmorItem +CL: net/minecraft/world/item/InkSacItem net/minecraft/world/item/InkSacItem +CL: net/minecraft/world/item/Instrument net/minecraft/world/item/Instrument +CL: net/minecraft/world/item/InstrumentItem net/minecraft/world/item/InstrumentItem +CL: net/minecraft/world/item/Instruments net/minecraft/world/item/Instruments +CL: net/minecraft/world/item/Item net/minecraft/world/item/Item +CL: net/minecraft/world/item/Item$1 net/minecraft/world/item/Item$1 +CL: net/minecraft/world/item/Item$Properties net/minecraft/world/item/Item$Properties +CL: net/minecraft/world/item/ItemCooldowns net/minecraft/world/item/ItemCooldowns +CL: net/minecraft/world/item/ItemCooldowns$CooldownInstance net/minecraft/world/item/ItemCooldowns$CooldownInstance +CL: net/minecraft/world/item/ItemDisplayContext net/minecraft/world/item/ItemDisplayContext +CL: net/minecraft/world/item/ItemFrameItem net/minecraft/world/item/ItemFrameItem +CL: net/minecraft/world/item/ItemNameBlockItem net/minecraft/world/item/ItemNameBlockItem +CL: net/minecraft/world/item/ItemStack net/minecraft/world/item/ItemStack +CL: net/minecraft/world/item/ItemStack$TooltipPart net/minecraft/world/item/ItemStack$TooltipPart +CL: net/minecraft/world/item/ItemStackLinkedSet net/minecraft/world/item/ItemStackLinkedSet +CL: net/minecraft/world/item/ItemStackLinkedSet$1 net/minecraft/world/item/ItemStackLinkedSet$1 +CL: net/minecraft/world/item/ItemUtils net/minecraft/world/item/ItemUtils +CL: net/minecraft/world/item/Items net/minecraft/world/item/Items +CL: net/minecraft/world/item/KnowledgeBookItem net/minecraft/world/item/KnowledgeBookItem +CL: net/minecraft/world/item/LeadItem net/minecraft/world/item/LeadItem +CL: net/minecraft/world/item/LingeringPotionItem net/minecraft/world/item/LingeringPotionItem +CL: net/minecraft/world/item/MapItem net/minecraft/world/item/MapItem +CL: net/minecraft/world/item/MilkBucketItem net/minecraft/world/item/MilkBucketItem +CL: net/minecraft/world/item/MinecartItem net/minecraft/world/item/MinecartItem +CL: net/minecraft/world/item/MinecartItem$1 net/minecraft/world/item/MinecartItem$1 +CL: net/minecraft/world/item/MobBucketItem net/minecraft/world/item/MobBucketItem +CL: net/minecraft/world/item/NameTagItem net/minecraft/world/item/NameTagItem +CL: net/minecraft/world/item/PickaxeItem net/minecraft/world/item/PickaxeItem +CL: net/minecraft/world/item/PlaceOnWaterBlockItem net/minecraft/world/item/PlaceOnWaterBlockItem +CL: net/minecraft/world/item/PlayerHeadItem net/minecraft/world/item/PlayerHeadItem +CL: net/minecraft/world/item/PotionItem net/minecraft/world/item/PotionItem +CL: net/minecraft/world/item/ProjectileWeaponItem net/minecraft/world/item/ProjectileWeaponItem +CL: net/minecraft/world/item/Rarity net/minecraft/world/item/Rarity +CL: net/minecraft/world/item/RecordItem net/minecraft/world/item/RecordItem +CL: net/minecraft/world/item/SaddleItem net/minecraft/world/item/SaddleItem +CL: net/minecraft/world/item/ScaffoldingBlockItem net/minecraft/world/item/ScaffoldingBlockItem +CL: net/minecraft/world/item/ServerItemCooldowns net/minecraft/world/item/ServerItemCooldowns +CL: net/minecraft/world/item/ShearsItem net/minecraft/world/item/ShearsItem +CL: net/minecraft/world/item/ShieldItem net/minecraft/world/item/ShieldItem +CL: net/minecraft/world/item/ShovelItem net/minecraft/world/item/ShovelItem +CL: net/minecraft/world/item/SignApplicator net/minecraft/world/item/SignApplicator +CL: net/minecraft/world/item/SignItem net/minecraft/world/item/SignItem +CL: net/minecraft/world/item/SimpleFoiledItem net/minecraft/world/item/SimpleFoiledItem +CL: net/minecraft/world/item/SmithingTemplateItem net/minecraft/world/item/SmithingTemplateItem +CL: net/minecraft/world/item/SnowballItem net/minecraft/world/item/SnowballItem +CL: net/minecraft/world/item/SolidBucketItem net/minecraft/world/item/SolidBucketItem +CL: net/minecraft/world/item/SpawnEggItem net/minecraft/world/item/SpawnEggItem +CL: net/minecraft/world/item/SpectralArrowItem net/minecraft/world/item/SpectralArrowItem +CL: net/minecraft/world/item/SplashPotionItem net/minecraft/world/item/SplashPotionItem +CL: net/minecraft/world/item/SpyglassItem net/minecraft/world/item/SpyglassItem +CL: net/minecraft/world/item/StandingAndWallBlockItem net/minecraft/world/item/StandingAndWallBlockItem +CL: net/minecraft/world/item/SuspiciousStewItem net/minecraft/world/item/SuspiciousStewItem +CL: net/minecraft/world/item/SwordItem net/minecraft/world/item/SwordItem +CL: net/minecraft/world/item/ThrowablePotionItem net/minecraft/world/item/ThrowablePotionItem +CL: net/minecraft/world/item/Tier net/minecraft/world/item/Tier +CL: net/minecraft/world/item/TieredItem net/minecraft/world/item/TieredItem +CL: net/minecraft/world/item/Tiers net/minecraft/world/item/Tiers +CL: net/minecraft/world/item/TippedArrowItem net/minecraft/world/item/TippedArrowItem +CL: net/minecraft/world/item/TooltipFlag net/minecraft/world/item/TooltipFlag +CL: net/minecraft/world/item/TooltipFlag$Default net/minecraft/world/item/TooltipFlag$Default +CL: net/minecraft/world/item/TridentItem net/minecraft/world/item/TridentItem +CL: net/minecraft/world/item/UseAnim net/minecraft/world/item/UseAnim +CL: net/minecraft/world/item/Vanishable net/minecraft/world/item/Vanishable +CL: net/minecraft/world/item/WritableBookItem net/minecraft/world/item/WritableBookItem +CL: net/minecraft/world/item/WrittenBookItem net/minecraft/world/item/WrittenBookItem +CL: net/minecraft/world/item/alchemy/Potion net/minecraft/world/item/alchemy/Potion +CL: net/minecraft/world/item/alchemy/PotionBrewing net/minecraft/world/item/alchemy/PotionBrewing +CL: net/minecraft/world/item/alchemy/PotionBrewing$Mix net/minecraft/world/item/alchemy/PotionBrewing$Mix +CL: net/minecraft/world/item/alchemy/PotionUtils net/minecraft/world/item/alchemy/PotionUtils +CL: net/minecraft/world/item/alchemy/Potions net/minecraft/world/item/alchemy/Potions +CL: net/minecraft/world/item/alchemy/package-info net/minecraft/world/item/alchemy/package-info +CL: net/minecraft/world/item/armortrim/ArmorTrim net/minecraft/world/item/armortrim/ArmorTrim +CL: net/minecraft/world/item/armortrim/TrimMaterial net/minecraft/world/item/armortrim/TrimMaterial +CL: net/minecraft/world/item/armortrim/TrimMaterials net/minecraft/world/item/armortrim/TrimMaterials +CL: net/minecraft/world/item/armortrim/TrimPattern net/minecraft/world/item/armortrim/TrimPattern +CL: net/minecraft/world/item/armortrim/TrimPatterns net/minecraft/world/item/armortrim/TrimPatterns +CL: net/minecraft/world/item/armortrim/package-info net/minecraft/world/item/armortrim/package-info +CL: net/minecraft/world/item/context/BlockPlaceContext net/minecraft/world/item/context/BlockPlaceContext +CL: net/minecraft/world/item/context/DirectionalPlaceContext net/minecraft/world/item/context/DirectionalPlaceContext +CL: net/minecraft/world/item/context/DirectionalPlaceContext$1 net/minecraft/world/item/context/DirectionalPlaceContext$1 +CL: net/minecraft/world/item/context/UseOnContext net/minecraft/world/item/context/UseOnContext +CL: net/minecraft/world/item/context/package-info net/minecraft/world/item/context/package-info +CL: net/minecraft/world/item/crafting/AbstractCookingRecipe net/minecraft/world/item/crafting/AbstractCookingRecipe +CL: net/minecraft/world/item/crafting/ArmorDyeRecipe net/minecraft/world/item/crafting/ArmorDyeRecipe +CL: net/minecraft/world/item/crafting/BannerDuplicateRecipe net/minecraft/world/item/crafting/BannerDuplicateRecipe +CL: net/minecraft/world/item/crafting/BlastingRecipe net/minecraft/world/item/crafting/BlastingRecipe +CL: net/minecraft/world/item/crafting/BookCloningRecipe net/minecraft/world/item/crafting/BookCloningRecipe +CL: net/minecraft/world/item/crafting/CampfireCookingRecipe net/minecraft/world/item/crafting/CampfireCookingRecipe +CL: net/minecraft/world/item/crafting/CookingBookCategory net/minecraft/world/item/crafting/CookingBookCategory +CL: net/minecraft/world/item/crafting/CraftingBookCategory net/minecraft/world/item/crafting/CraftingBookCategory +CL: net/minecraft/world/item/crafting/CraftingRecipe net/minecraft/world/item/crafting/CraftingRecipe +CL: net/minecraft/world/item/crafting/CustomRecipe net/minecraft/world/item/crafting/CustomRecipe +CL: net/minecraft/world/item/crafting/DecoratedPotRecipe net/minecraft/world/item/crafting/DecoratedPotRecipe +CL: net/minecraft/world/item/crafting/FireworkRocketRecipe net/minecraft/world/item/crafting/FireworkRocketRecipe +CL: net/minecraft/world/item/crafting/FireworkStarFadeRecipe net/minecraft/world/item/crafting/FireworkStarFadeRecipe +CL: net/minecraft/world/item/crafting/FireworkStarRecipe net/minecraft/world/item/crafting/FireworkStarRecipe +CL: net/minecraft/world/item/crafting/Ingredient net/minecraft/world/item/crafting/Ingredient +CL: net/minecraft/world/item/crafting/Ingredient$ItemValue net/minecraft/world/item/crafting/Ingredient$ItemValue +CL: net/minecraft/world/item/crafting/Ingredient$TagValue net/minecraft/world/item/crafting/Ingredient$TagValue +CL: net/minecraft/world/item/crafting/Ingredient$Value net/minecraft/world/item/crafting/Ingredient$Value +CL: net/minecraft/world/item/crafting/MapCloningRecipe net/minecraft/world/item/crafting/MapCloningRecipe +CL: net/minecraft/world/item/crafting/MapExtendingRecipe net/minecraft/world/item/crafting/MapExtendingRecipe +CL: net/minecraft/world/item/crafting/Recipe net/minecraft/world/item/crafting/Recipe +CL: net/minecraft/world/item/crafting/RecipeManager net/minecraft/world/item/crafting/RecipeManager +CL: net/minecraft/world/item/crafting/RecipeManager$1 net/minecraft/world/item/crafting/RecipeManager$1 +CL: net/minecraft/world/item/crafting/RecipeManager$CachedCheck net/minecraft/world/item/crafting/RecipeManager$CachedCheck +CL: net/minecraft/world/item/crafting/RecipeSerializer net/minecraft/world/item/crafting/RecipeSerializer +CL: net/minecraft/world/item/crafting/RecipeType net/minecraft/world/item/crafting/RecipeType +CL: net/minecraft/world/item/crafting/RecipeType$1 net/minecraft/world/item/crafting/RecipeType$1 +CL: net/minecraft/world/item/crafting/RepairItemRecipe net/minecraft/world/item/crafting/RepairItemRecipe +CL: net/minecraft/world/item/crafting/ShapedRecipe net/minecraft/world/item/crafting/ShapedRecipe +CL: net/minecraft/world/item/crafting/ShapedRecipe$Serializer net/minecraft/world/item/crafting/ShapedRecipe$Serializer +CL: net/minecraft/world/item/crafting/ShapelessRecipe net/minecraft/world/item/crafting/ShapelessRecipe +CL: net/minecraft/world/item/crafting/ShapelessRecipe$Serializer net/minecraft/world/item/crafting/ShapelessRecipe$Serializer +CL: net/minecraft/world/item/crafting/ShieldDecorationRecipe net/minecraft/world/item/crafting/ShieldDecorationRecipe +CL: net/minecraft/world/item/crafting/ShulkerBoxColoring net/minecraft/world/item/crafting/ShulkerBoxColoring +CL: net/minecraft/world/item/crafting/SimpleCookingSerializer net/minecraft/world/item/crafting/SimpleCookingSerializer +CL: net/minecraft/world/item/crafting/SimpleCookingSerializer$CookieBaker net/minecraft/world/item/crafting/SimpleCookingSerializer$CookieBaker +CL: net/minecraft/world/item/crafting/SimpleCraftingRecipeSerializer net/minecraft/world/item/crafting/SimpleCraftingRecipeSerializer +CL: net/minecraft/world/item/crafting/SimpleCraftingRecipeSerializer$Factory net/minecraft/world/item/crafting/SimpleCraftingRecipeSerializer$Factory +CL: net/minecraft/world/item/crafting/SingleItemRecipe net/minecraft/world/item/crafting/SingleItemRecipe +CL: net/minecraft/world/item/crafting/SingleItemRecipe$Serializer net/minecraft/world/item/crafting/SingleItemRecipe$Serializer +CL: net/minecraft/world/item/crafting/SingleItemRecipe$Serializer$SingleItemMaker net/minecraft/world/item/crafting/SingleItemRecipe$Serializer$SingleItemMaker +CL: net/minecraft/world/item/crafting/SmeltingRecipe net/minecraft/world/item/crafting/SmeltingRecipe +CL: net/minecraft/world/item/crafting/SmithingRecipe net/minecraft/world/item/crafting/SmithingRecipe +CL: net/minecraft/world/item/crafting/SmithingTransformRecipe net/minecraft/world/item/crafting/SmithingTransformRecipe +CL: net/minecraft/world/item/crafting/SmithingTransformRecipe$Serializer net/minecraft/world/item/crafting/SmithingTransformRecipe$Serializer +CL: net/minecraft/world/item/crafting/SmithingTrimRecipe net/minecraft/world/item/crafting/SmithingTrimRecipe +CL: net/minecraft/world/item/crafting/SmithingTrimRecipe$Serializer net/minecraft/world/item/crafting/SmithingTrimRecipe$Serializer +CL: net/minecraft/world/item/crafting/SmokingRecipe net/minecraft/world/item/crafting/SmokingRecipe +CL: net/minecraft/world/item/crafting/StonecutterRecipe net/minecraft/world/item/crafting/StonecutterRecipe +CL: net/minecraft/world/item/crafting/SuspiciousStewRecipe net/minecraft/world/item/crafting/SuspiciousStewRecipe +CL: net/minecraft/world/item/crafting/TippedArrowRecipe net/minecraft/world/item/crafting/TippedArrowRecipe +CL: net/minecraft/world/item/crafting/package-info net/minecraft/world/item/crafting/package-info +CL: net/minecraft/world/item/enchantment/ArrowDamageEnchantment net/minecraft/world/item/enchantment/ArrowDamageEnchantment +CL: net/minecraft/world/item/enchantment/ArrowFireEnchantment net/minecraft/world/item/enchantment/ArrowFireEnchantment +CL: net/minecraft/world/item/enchantment/ArrowInfiniteEnchantment net/minecraft/world/item/enchantment/ArrowInfiniteEnchantment +CL: net/minecraft/world/item/enchantment/ArrowKnockbackEnchantment net/minecraft/world/item/enchantment/ArrowKnockbackEnchantment +CL: net/minecraft/world/item/enchantment/ArrowPiercingEnchantment net/minecraft/world/item/enchantment/ArrowPiercingEnchantment +CL: net/minecraft/world/item/enchantment/BindingCurseEnchantment net/minecraft/world/item/enchantment/BindingCurseEnchantment +CL: net/minecraft/world/item/enchantment/DamageEnchantment net/minecraft/world/item/enchantment/DamageEnchantment +CL: net/minecraft/world/item/enchantment/DigDurabilityEnchantment net/minecraft/world/item/enchantment/DigDurabilityEnchantment +CL: net/minecraft/world/item/enchantment/DiggingEnchantment net/minecraft/world/item/enchantment/DiggingEnchantment +CL: net/minecraft/world/item/enchantment/Enchantment net/minecraft/world/item/enchantment/Enchantment +CL: net/minecraft/world/item/enchantment/Enchantment$Rarity net/minecraft/world/item/enchantment/Enchantment$Rarity +CL: net/minecraft/world/item/enchantment/EnchantmentCategory net/minecraft/world/item/enchantment/EnchantmentCategory +CL: net/minecraft/world/item/enchantment/EnchantmentCategory$1 net/minecraft/world/item/enchantment/EnchantmentCategory$1 +CL: net/minecraft/world/item/enchantment/EnchantmentCategory$10 net/minecraft/world/item/enchantment/EnchantmentCategory$10 +CL: net/minecraft/world/item/enchantment/EnchantmentCategory$11 net/minecraft/world/item/enchantment/EnchantmentCategory$11 +CL: net/minecraft/world/item/enchantment/EnchantmentCategory$12 net/minecraft/world/item/enchantment/EnchantmentCategory$12 +CL: net/minecraft/world/item/enchantment/EnchantmentCategory$13 net/minecraft/world/item/enchantment/EnchantmentCategory$13 +CL: net/minecraft/world/item/enchantment/EnchantmentCategory$14 net/minecraft/world/item/enchantment/EnchantmentCategory$14 +CL: net/minecraft/world/item/enchantment/EnchantmentCategory$2 net/minecraft/world/item/enchantment/EnchantmentCategory$2 +CL: net/minecraft/world/item/enchantment/EnchantmentCategory$3 net/minecraft/world/item/enchantment/EnchantmentCategory$3 +CL: net/minecraft/world/item/enchantment/EnchantmentCategory$4 net/minecraft/world/item/enchantment/EnchantmentCategory$4 +CL: net/minecraft/world/item/enchantment/EnchantmentCategory$5 net/minecraft/world/item/enchantment/EnchantmentCategory$5 +CL: net/minecraft/world/item/enchantment/EnchantmentCategory$6 net/minecraft/world/item/enchantment/EnchantmentCategory$6 +CL: net/minecraft/world/item/enchantment/EnchantmentCategory$7 net/minecraft/world/item/enchantment/EnchantmentCategory$7 +CL: net/minecraft/world/item/enchantment/EnchantmentCategory$8 net/minecraft/world/item/enchantment/EnchantmentCategory$8 +CL: net/minecraft/world/item/enchantment/EnchantmentCategory$9 net/minecraft/world/item/enchantment/EnchantmentCategory$9 +CL: net/minecraft/world/item/enchantment/EnchantmentHelper net/minecraft/world/item/enchantment/EnchantmentHelper +CL: net/minecraft/world/item/enchantment/EnchantmentHelper$EnchantmentVisitor net/minecraft/world/item/enchantment/EnchantmentHelper$EnchantmentVisitor +CL: net/minecraft/world/item/enchantment/EnchantmentInstance net/minecraft/world/item/enchantment/EnchantmentInstance +CL: net/minecraft/world/item/enchantment/Enchantments net/minecraft/world/item/enchantment/Enchantments +CL: net/minecraft/world/item/enchantment/FireAspectEnchantment net/minecraft/world/item/enchantment/FireAspectEnchantment +CL: net/minecraft/world/item/enchantment/FishingSpeedEnchantment net/minecraft/world/item/enchantment/FishingSpeedEnchantment +CL: net/minecraft/world/item/enchantment/FrostWalkerEnchantment net/minecraft/world/item/enchantment/FrostWalkerEnchantment +CL: net/minecraft/world/item/enchantment/KnockbackEnchantment net/minecraft/world/item/enchantment/KnockbackEnchantment +CL: net/minecraft/world/item/enchantment/LootBonusEnchantment net/minecraft/world/item/enchantment/LootBonusEnchantment +CL: net/minecraft/world/item/enchantment/MendingEnchantment net/minecraft/world/item/enchantment/MendingEnchantment +CL: net/minecraft/world/item/enchantment/MultiShotEnchantment net/minecraft/world/item/enchantment/MultiShotEnchantment +CL: net/minecraft/world/item/enchantment/OxygenEnchantment net/minecraft/world/item/enchantment/OxygenEnchantment +CL: net/minecraft/world/item/enchantment/ProtectionEnchantment net/minecraft/world/item/enchantment/ProtectionEnchantment +CL: net/minecraft/world/item/enchantment/ProtectionEnchantment$Type net/minecraft/world/item/enchantment/ProtectionEnchantment$Type +CL: net/minecraft/world/item/enchantment/QuickChargeEnchantment net/minecraft/world/item/enchantment/QuickChargeEnchantment +CL: net/minecraft/world/item/enchantment/SoulSpeedEnchantment net/minecraft/world/item/enchantment/SoulSpeedEnchantment +CL: net/minecraft/world/item/enchantment/SweepingEdgeEnchantment net/minecraft/world/item/enchantment/SweepingEdgeEnchantment +CL: net/minecraft/world/item/enchantment/SwiftSneakEnchantment net/minecraft/world/item/enchantment/SwiftSneakEnchantment +CL: net/minecraft/world/item/enchantment/ThornsEnchantment net/minecraft/world/item/enchantment/ThornsEnchantment +CL: net/minecraft/world/item/enchantment/TridentChannelingEnchantment net/minecraft/world/item/enchantment/TridentChannelingEnchantment +CL: net/minecraft/world/item/enchantment/TridentImpalerEnchantment net/minecraft/world/item/enchantment/TridentImpalerEnchantment +CL: net/minecraft/world/item/enchantment/TridentLoyaltyEnchantment net/minecraft/world/item/enchantment/TridentLoyaltyEnchantment +CL: net/minecraft/world/item/enchantment/TridentRiptideEnchantment net/minecraft/world/item/enchantment/TridentRiptideEnchantment +CL: net/minecraft/world/item/enchantment/UntouchingEnchantment net/minecraft/world/item/enchantment/UntouchingEnchantment +CL: net/minecraft/world/item/enchantment/VanishingCurseEnchantment net/minecraft/world/item/enchantment/VanishingCurseEnchantment +CL: net/minecraft/world/item/enchantment/WaterWalkerEnchantment net/minecraft/world/item/enchantment/WaterWalkerEnchantment +CL: net/minecraft/world/item/enchantment/WaterWorkerEnchantment net/minecraft/world/item/enchantment/WaterWorkerEnchantment +CL: net/minecraft/world/item/enchantment/package-info net/minecraft/world/item/enchantment/package-info +CL: net/minecraft/world/item/package-info net/minecraft/world/item/package-info +CL: net/minecraft/world/item/trading/Merchant net/minecraft/world/item/trading/Merchant +CL: net/minecraft/world/item/trading/MerchantOffer net/minecraft/world/item/trading/MerchantOffer +CL: net/minecraft/world/item/trading/MerchantOffers net/minecraft/world/item/trading/MerchantOffers +CL: net/minecraft/world/item/trading/package-info net/minecraft/world/item/trading/package-info +CL: net/minecraft/world/level/BaseCommandBlock net/minecraft/world/level/BaseCommandBlock +CL: net/minecraft/world/level/BaseSpawner net/minecraft/world/level/BaseSpawner +CL: net/minecraft/world/level/BlockAndTintGetter net/minecraft/world/level/BlockAndTintGetter +CL: net/minecraft/world/level/BlockCollisions net/minecraft/world/level/BlockCollisions +CL: net/minecraft/world/level/BlockEventData net/minecraft/world/level/BlockEventData +CL: net/minecraft/world/level/BlockGetter net/minecraft/world/level/BlockGetter +CL: net/minecraft/world/level/ChunkPos net/minecraft/world/level/ChunkPos +CL: net/minecraft/world/level/ChunkPos$1 net/minecraft/world/level/ChunkPos$1 +CL: net/minecraft/world/level/ClipBlockStateContext net/minecraft/world/level/ClipBlockStateContext +CL: net/minecraft/world/level/ClipContext net/minecraft/world/level/ClipContext +CL: net/minecraft/world/level/ClipContext$Block net/minecraft/world/level/ClipContext$Block +CL: net/minecraft/world/level/ClipContext$Fluid net/minecraft/world/level/ClipContext$Fluid +CL: net/minecraft/world/level/ClipContext$ShapeGetter net/minecraft/world/level/ClipContext$ShapeGetter +CL: net/minecraft/world/level/CollisionGetter net/minecraft/world/level/CollisionGetter +CL: net/minecraft/world/level/ColorResolver net/minecraft/world/level/ColorResolver +CL: net/minecraft/world/level/CommonLevelAccessor net/minecraft/world/level/CommonLevelAccessor +CL: net/minecraft/world/level/CustomSpawner net/minecraft/world/level/CustomSpawner +CL: net/minecraft/world/level/DataPackConfig net/minecraft/world/level/DataPackConfig +CL: net/minecraft/world/level/EmptyBlockGetter net/minecraft/world/level/EmptyBlockGetter +CL: net/minecraft/world/level/EntityBasedExplosionDamageCalculator net/minecraft/world/level/EntityBasedExplosionDamageCalculator +CL: net/minecraft/world/level/EntityGetter net/minecraft/world/level/EntityGetter +CL: net/minecraft/world/level/Explosion net/minecraft/world/level/Explosion +CL: net/minecraft/world/level/Explosion$BlockInteraction net/minecraft/world/level/Explosion$BlockInteraction +CL: net/minecraft/world/level/ExplosionDamageCalculator net/minecraft/world/level/ExplosionDamageCalculator +CL: net/minecraft/world/level/FoliageColor net/minecraft/world/level/FoliageColor +CL: net/minecraft/world/level/ForcedChunksSavedData net/minecraft/world/level/ForcedChunksSavedData +CL: net/minecraft/world/level/GameRules net/minecraft/world/level/GameRules +CL: net/minecraft/world/level/GameRules$BooleanValue net/minecraft/world/level/GameRules$BooleanValue +CL: net/minecraft/world/level/GameRules$Category net/minecraft/world/level/GameRules$Category +CL: net/minecraft/world/level/GameRules$GameRuleTypeVisitor net/minecraft/world/level/GameRules$GameRuleTypeVisitor +CL: net/minecraft/world/level/GameRules$IntegerValue net/minecraft/world/level/GameRules$IntegerValue +CL: net/minecraft/world/level/GameRules$Key net/minecraft/world/level/GameRules$Key +CL: net/minecraft/world/level/GameRules$Type net/minecraft/world/level/GameRules$Type +CL: net/minecraft/world/level/GameRules$Value net/minecraft/world/level/GameRules$Value +CL: net/minecraft/world/level/GameRules$VisitorCaller net/minecraft/world/level/GameRules$VisitorCaller +CL: net/minecraft/world/level/GameType net/minecraft/world/level/GameType +CL: net/minecraft/world/level/GrassColor net/minecraft/world/level/GrassColor +CL: net/minecraft/world/level/ItemLike net/minecraft/world/level/ItemLike +CL: net/minecraft/world/level/Level net/minecraft/world/level/Level +CL: net/minecraft/world/level/Level$1 net/minecraft/world/level/Level$1 +CL: net/minecraft/world/level/Level$2 net/minecraft/world/level/Level$2 +CL: net/minecraft/world/level/Level$ExplosionInteraction net/minecraft/world/level/Level$ExplosionInteraction +CL: net/minecraft/world/level/LevelAccessor net/minecraft/world/level/LevelAccessor +CL: net/minecraft/world/level/LevelHeightAccessor net/minecraft/world/level/LevelHeightAccessor +CL: net/minecraft/world/level/LevelHeightAccessor$1 net/minecraft/world/level/LevelHeightAccessor$1 +CL: net/minecraft/world/level/LevelReader net/minecraft/world/level/LevelReader +CL: net/minecraft/world/level/LevelSettings net/minecraft/world/level/LevelSettings +CL: net/minecraft/world/level/LevelSimulatedRW net/minecraft/world/level/LevelSimulatedRW +CL: net/minecraft/world/level/LevelSimulatedReader net/minecraft/world/level/LevelSimulatedReader +CL: net/minecraft/world/level/LevelTimeAccess net/minecraft/world/level/LevelTimeAccess +CL: net/minecraft/world/level/LevelWriter net/minecraft/world/level/LevelWriter +CL: net/minecraft/world/level/LightLayer net/minecraft/world/level/LightLayer +CL: net/minecraft/world/level/LocalMobCapCalculator net/minecraft/world/level/LocalMobCapCalculator +CL: net/minecraft/world/level/LocalMobCapCalculator$MobCounts net/minecraft/world/level/LocalMobCapCalculator$MobCounts +CL: net/minecraft/world/level/NaturalSpawner net/minecraft/world/level/NaturalSpawner +CL: net/minecraft/world/level/NaturalSpawner$1 net/minecraft/world/level/NaturalSpawner$1 +CL: net/minecraft/world/level/NaturalSpawner$AfterSpawnCallback net/minecraft/world/level/NaturalSpawner$AfterSpawnCallback +CL: net/minecraft/world/level/NaturalSpawner$ChunkGetter net/minecraft/world/level/NaturalSpawner$ChunkGetter +CL: net/minecraft/world/level/NaturalSpawner$SpawnPredicate net/minecraft/world/level/NaturalSpawner$SpawnPredicate +CL: net/minecraft/world/level/NaturalSpawner$SpawnState net/minecraft/world/level/NaturalSpawner$SpawnState +CL: net/minecraft/world/level/NoiseColumn net/minecraft/world/level/NoiseColumn +CL: net/minecraft/world/level/PathNavigationRegion net/minecraft/world/level/PathNavigationRegion +CL: net/minecraft/world/level/PotentialCalculator net/minecraft/world/level/PotentialCalculator +CL: net/minecraft/world/level/PotentialCalculator$PointCharge net/minecraft/world/level/PotentialCalculator$PointCharge +CL: net/minecraft/world/level/ServerLevelAccessor net/minecraft/world/level/ServerLevelAccessor +CL: net/minecraft/world/level/SignalGetter net/minecraft/world/level/SignalGetter +CL: net/minecraft/world/level/SpawnData net/minecraft/world/level/SpawnData +CL: net/minecraft/world/level/SpawnData$CustomSpawnRules net/minecraft/world/level/SpawnData$CustomSpawnRules +CL: net/minecraft/world/level/StructureManager net/minecraft/world/level/StructureManager +CL: net/minecraft/world/level/WorldDataConfiguration net/minecraft/world/level/WorldDataConfiguration +CL: net/minecraft/world/level/WorldGenLevel net/minecraft/world/level/WorldGenLevel +CL: net/minecraft/world/level/biome/AmbientAdditionsSettings net/minecraft/world/level/biome/AmbientAdditionsSettings +CL: net/minecraft/world/level/biome/AmbientMoodSettings net/minecraft/world/level/biome/AmbientMoodSettings +CL: net/minecraft/world/level/biome/AmbientParticleSettings net/minecraft/world/level/biome/AmbientParticleSettings +CL: net/minecraft/world/level/biome/Biome net/minecraft/world/level/biome/Biome +CL: net/minecraft/world/level/biome/Biome$1 net/minecraft/world/level/biome/Biome$1 +CL: net/minecraft/world/level/biome/Biome$BiomeBuilder net/minecraft/world/level/biome/Biome$BiomeBuilder +CL: net/minecraft/world/level/biome/Biome$ClimateSettings net/minecraft/world/level/biome/Biome$ClimateSettings +CL: net/minecraft/world/level/biome/Biome$Precipitation net/minecraft/world/level/biome/Biome$Precipitation +CL: net/minecraft/world/level/biome/Biome$TemperatureModifier net/minecraft/world/level/biome/Biome$TemperatureModifier +CL: net/minecraft/world/level/biome/Biome$TemperatureModifier$1 net/minecraft/world/level/biome/Biome$TemperatureModifier$1 +CL: net/minecraft/world/level/biome/Biome$TemperatureModifier$2 net/minecraft/world/level/biome/Biome$TemperatureModifier$2 +CL: net/minecraft/world/level/biome/BiomeGenerationSettings net/minecraft/world/level/biome/BiomeGenerationSettings +CL: net/minecraft/world/level/biome/BiomeGenerationSettings$Builder net/minecraft/world/level/biome/BiomeGenerationSettings$Builder +CL: net/minecraft/world/level/biome/BiomeGenerationSettings$PlainBuilder net/minecraft/world/level/biome/BiomeGenerationSettings$PlainBuilder +CL: net/minecraft/world/level/biome/BiomeManager net/minecraft/world/level/biome/BiomeManager +CL: net/minecraft/world/level/biome/BiomeManager$NoiseBiomeSource net/minecraft/world/level/biome/BiomeManager$NoiseBiomeSource +CL: net/minecraft/world/level/biome/BiomeResolver net/minecraft/world/level/biome/BiomeResolver +CL: net/minecraft/world/level/biome/BiomeSource net/minecraft/world/level/biome/BiomeSource +CL: net/minecraft/world/level/biome/BiomeSources net/minecraft/world/level/biome/BiomeSources +CL: net/minecraft/world/level/biome/BiomeSpecialEffects net/minecraft/world/level/biome/BiomeSpecialEffects +CL: net/minecraft/world/level/biome/BiomeSpecialEffects$Builder net/minecraft/world/level/biome/BiomeSpecialEffects$Builder +CL: net/minecraft/world/level/biome/BiomeSpecialEffects$GrassColorModifier net/minecraft/world/level/biome/BiomeSpecialEffects$GrassColorModifier +CL: net/minecraft/world/level/biome/BiomeSpecialEffects$GrassColorModifier$1 net/minecraft/world/level/biome/BiomeSpecialEffects$GrassColorModifier$1 +CL: net/minecraft/world/level/biome/BiomeSpecialEffects$GrassColorModifier$2 net/minecraft/world/level/biome/BiomeSpecialEffects$GrassColorModifier$2 +CL: net/minecraft/world/level/biome/BiomeSpecialEffects$GrassColorModifier$3 net/minecraft/world/level/biome/BiomeSpecialEffects$GrassColorModifier$3 +CL: net/minecraft/world/level/biome/Biomes net/minecraft/world/level/biome/Biomes +CL: net/minecraft/world/level/biome/CheckerboardColumnBiomeSource net/minecraft/world/level/biome/CheckerboardColumnBiomeSource +CL: net/minecraft/world/level/biome/Climate net/minecraft/world/level/biome/Climate +CL: net/minecraft/world/level/biome/Climate$DistanceMetric net/minecraft/world/level/biome/Climate$DistanceMetric +CL: net/minecraft/world/level/biome/Climate$Parameter net/minecraft/world/level/biome/Climate$Parameter +CL: net/minecraft/world/level/biome/Climate$ParameterList net/minecraft/world/level/biome/Climate$ParameterList +CL: net/minecraft/world/level/biome/Climate$ParameterPoint net/minecraft/world/level/biome/Climate$ParameterPoint +CL: net/minecraft/world/level/biome/Climate$RTree net/minecraft/world/level/biome/Climate$RTree +CL: net/minecraft/world/level/biome/Climate$RTree$Leaf net/minecraft/world/level/biome/Climate$RTree$Leaf +CL: net/minecraft/world/level/biome/Climate$RTree$Node net/minecraft/world/level/biome/Climate$RTree$Node +CL: net/minecraft/world/level/biome/Climate$RTree$SubTree net/minecraft/world/level/biome/Climate$RTree$SubTree +CL: net/minecraft/world/level/biome/Climate$Sampler net/minecraft/world/level/biome/Climate$Sampler +CL: net/minecraft/world/level/biome/Climate$SpawnFinder net/minecraft/world/level/biome/Climate$SpawnFinder +CL: net/minecraft/world/level/biome/Climate$SpawnFinder$Result net/minecraft/world/level/biome/Climate$SpawnFinder$Result +CL: net/minecraft/world/level/biome/Climate$TargetPoint net/minecraft/world/level/biome/Climate$TargetPoint +CL: net/minecraft/world/level/biome/FeatureSorter net/minecraft/world/level/biome/FeatureSorter +CL: net/minecraft/world/level/biome/FeatureSorter$1FeatureData net/minecraft/world/level/biome/FeatureSorter$1FeatureData +CL: net/minecraft/world/level/biome/FeatureSorter$StepFeatureData net/minecraft/world/level/biome/FeatureSorter$StepFeatureData +CL: net/minecraft/world/level/biome/FixedBiomeSource net/minecraft/world/level/biome/FixedBiomeSource +CL: net/minecraft/world/level/biome/MobSpawnSettings net/minecraft/world/level/biome/MobSpawnSettings +CL: net/minecraft/world/level/biome/MobSpawnSettings$Builder net/minecraft/world/level/biome/MobSpawnSettings$Builder +CL: net/minecraft/world/level/biome/MobSpawnSettings$MobSpawnCost net/minecraft/world/level/biome/MobSpawnSettings$MobSpawnCost +CL: net/minecraft/world/level/biome/MobSpawnSettings$SpawnerData net/minecraft/world/level/biome/MobSpawnSettings$SpawnerData +CL: net/minecraft/world/level/biome/MultiNoiseBiomeSource net/minecraft/world/level/biome/MultiNoiseBiomeSource +CL: net/minecraft/world/level/biome/MultiNoiseBiomeSourceParameterList net/minecraft/world/level/biome/MultiNoiseBiomeSourceParameterList +CL: net/minecraft/world/level/biome/MultiNoiseBiomeSourceParameterList$Preset net/minecraft/world/level/biome/MultiNoiseBiomeSourceParameterList$Preset +CL: net/minecraft/world/level/biome/MultiNoiseBiomeSourceParameterList$Preset$1 net/minecraft/world/level/biome/MultiNoiseBiomeSourceParameterList$Preset$1 +CL: net/minecraft/world/level/biome/MultiNoiseBiomeSourceParameterList$Preset$2 net/minecraft/world/level/biome/MultiNoiseBiomeSourceParameterList$Preset$2 +CL: net/minecraft/world/level/biome/MultiNoiseBiomeSourceParameterList$Preset$SourceProvider net/minecraft/world/level/biome/MultiNoiseBiomeSourceParameterList$Preset$SourceProvider +CL: net/minecraft/world/level/biome/MultiNoiseBiomeSourceParameterLists net/minecraft/world/level/biome/MultiNoiseBiomeSourceParameterLists +CL: net/minecraft/world/level/biome/OverworldBiomeBuilder net/minecraft/world/level/biome/OverworldBiomeBuilder +CL: net/minecraft/world/level/biome/TheEndBiomeSource net/minecraft/world/level/biome/TheEndBiomeSource +CL: net/minecraft/world/level/biome/package-info net/minecraft/world/level/biome/package-info +CL: net/minecraft/world/level/block/AbstractBannerBlock net/minecraft/world/level/block/AbstractBannerBlock +CL: net/minecraft/world/level/block/AbstractCandleBlock net/minecraft/world/level/block/AbstractCandleBlock +CL: net/minecraft/world/level/block/AbstractCauldronBlock net/minecraft/world/level/block/AbstractCauldronBlock +CL: net/minecraft/world/level/block/AbstractChestBlock net/minecraft/world/level/block/AbstractChestBlock +CL: net/minecraft/world/level/block/AbstractFurnaceBlock net/minecraft/world/level/block/AbstractFurnaceBlock +CL: net/minecraft/world/level/block/AbstractGlassBlock net/minecraft/world/level/block/AbstractGlassBlock +CL: net/minecraft/world/level/block/AbstractSkullBlock net/minecraft/world/level/block/AbstractSkullBlock +CL: net/minecraft/world/level/block/AirBlock net/minecraft/world/level/block/AirBlock +CL: net/minecraft/world/level/block/AmethystBlock net/minecraft/world/level/block/AmethystBlock +CL: net/minecraft/world/level/block/AmethystClusterBlock net/minecraft/world/level/block/AmethystClusterBlock +CL: net/minecraft/world/level/block/AmethystClusterBlock$1 net/minecraft/world/level/block/AmethystClusterBlock$1 +CL: net/minecraft/world/level/block/AnvilBlock net/minecraft/world/level/block/AnvilBlock +CL: net/minecraft/world/level/block/AttachedStemBlock net/minecraft/world/level/block/AttachedStemBlock +CL: net/minecraft/world/level/block/AzaleaBlock net/minecraft/world/level/block/AzaleaBlock +CL: net/minecraft/world/level/block/BambooSaplingBlock net/minecraft/world/level/block/BambooSaplingBlock +CL: net/minecraft/world/level/block/BambooStalkBlock net/minecraft/world/level/block/BambooStalkBlock +CL: net/minecraft/world/level/block/BannerBlock net/minecraft/world/level/block/BannerBlock +CL: net/minecraft/world/level/block/BarrelBlock net/minecraft/world/level/block/BarrelBlock +CL: net/minecraft/world/level/block/BarrierBlock net/minecraft/world/level/block/BarrierBlock +CL: net/minecraft/world/level/block/BaseCoralFanBlock net/minecraft/world/level/block/BaseCoralFanBlock +CL: net/minecraft/world/level/block/BaseCoralPlantBlock net/minecraft/world/level/block/BaseCoralPlantBlock +CL: net/minecraft/world/level/block/BaseCoralPlantTypeBlock net/minecraft/world/level/block/BaseCoralPlantTypeBlock +CL: net/minecraft/world/level/block/BaseCoralWallFanBlock net/minecraft/world/level/block/BaseCoralWallFanBlock +CL: net/minecraft/world/level/block/BaseEntityBlock net/minecraft/world/level/block/BaseEntityBlock +CL: net/minecraft/world/level/block/BaseFireBlock net/minecraft/world/level/block/BaseFireBlock +CL: net/minecraft/world/level/block/BasePressurePlateBlock net/minecraft/world/level/block/BasePressurePlateBlock +CL: net/minecraft/world/level/block/BaseRailBlock net/minecraft/world/level/block/BaseRailBlock +CL: net/minecraft/world/level/block/BaseRailBlock$1 net/minecraft/world/level/block/BaseRailBlock$1 +CL: net/minecraft/world/level/block/BeaconBeamBlock net/minecraft/world/level/block/BeaconBeamBlock +CL: net/minecraft/world/level/block/BeaconBlock net/minecraft/world/level/block/BeaconBlock +CL: net/minecraft/world/level/block/BedBlock net/minecraft/world/level/block/BedBlock +CL: net/minecraft/world/level/block/BedBlock$1 net/minecraft/world/level/block/BedBlock$1 +CL: net/minecraft/world/level/block/BeehiveBlock net/minecraft/world/level/block/BeehiveBlock +CL: net/minecraft/world/level/block/BeetrootBlock net/minecraft/world/level/block/BeetrootBlock +CL: net/minecraft/world/level/block/BellBlock net/minecraft/world/level/block/BellBlock +CL: net/minecraft/world/level/block/BellBlock$1 net/minecraft/world/level/block/BellBlock$1 +CL: net/minecraft/world/level/block/BigDripleafBlock net/minecraft/world/level/block/BigDripleafBlock +CL: net/minecraft/world/level/block/BigDripleafStemBlock net/minecraft/world/level/block/BigDripleafStemBlock +CL: net/minecraft/world/level/block/BigDripleafStemBlock$1 net/minecraft/world/level/block/BigDripleafStemBlock$1 +CL: net/minecraft/world/level/block/BlastFurnaceBlock net/minecraft/world/level/block/BlastFurnaceBlock +CL: net/minecraft/world/level/block/Block net/minecraft/world/level/block/Block +CL: net/minecraft/world/level/block/Block$1 net/minecraft/world/level/block/Block$1 +CL: net/minecraft/world/level/block/Block$2 net/minecraft/world/level/block/Block$2 +CL: net/minecraft/world/level/block/Block$BlockStatePairKey net/minecraft/world/level/block/Block$BlockStatePairKey +CL: net/minecraft/world/level/block/Blocks net/minecraft/world/level/block/Blocks +CL: net/minecraft/world/level/block/BonemealableBlock net/minecraft/world/level/block/BonemealableBlock +CL: net/minecraft/world/level/block/BrewingStandBlock net/minecraft/world/level/block/BrewingStandBlock +CL: net/minecraft/world/level/block/BrushableBlock net/minecraft/world/level/block/BrushableBlock +CL: net/minecraft/world/level/block/BubbleColumnBlock net/minecraft/world/level/block/BubbleColumnBlock +CL: net/minecraft/world/level/block/BucketPickup net/minecraft/world/level/block/BucketPickup +CL: net/minecraft/world/level/block/BuddingAmethystBlock net/minecraft/world/level/block/BuddingAmethystBlock +CL: net/minecraft/world/level/block/BushBlock net/minecraft/world/level/block/BushBlock +CL: net/minecraft/world/level/block/ButtonBlock net/minecraft/world/level/block/ButtonBlock +CL: net/minecraft/world/level/block/ButtonBlock$1 net/minecraft/world/level/block/ButtonBlock$1 +CL: net/minecraft/world/level/block/CactusBlock net/minecraft/world/level/block/CactusBlock +CL: net/minecraft/world/level/block/CakeBlock net/minecraft/world/level/block/CakeBlock +CL: net/minecraft/world/level/block/CalibratedSculkSensorBlock net/minecraft/world/level/block/CalibratedSculkSensorBlock +CL: net/minecraft/world/level/block/CampfireBlock net/minecraft/world/level/block/CampfireBlock +CL: net/minecraft/world/level/block/CandleBlock net/minecraft/world/level/block/CandleBlock +CL: net/minecraft/world/level/block/CandleCakeBlock net/minecraft/world/level/block/CandleCakeBlock +CL: net/minecraft/world/level/block/CarpetBlock net/minecraft/world/level/block/CarpetBlock +CL: net/minecraft/world/level/block/CarrotBlock net/minecraft/world/level/block/CarrotBlock +CL: net/minecraft/world/level/block/CartographyTableBlock net/minecraft/world/level/block/CartographyTableBlock +CL: net/minecraft/world/level/block/CarvedPumpkinBlock net/minecraft/world/level/block/CarvedPumpkinBlock +CL: net/minecraft/world/level/block/CauldronBlock net/minecraft/world/level/block/CauldronBlock +CL: net/minecraft/world/level/block/CaveVines net/minecraft/world/level/block/CaveVines +CL: net/minecraft/world/level/block/CaveVinesBlock net/minecraft/world/level/block/CaveVinesBlock +CL: net/minecraft/world/level/block/CaveVinesPlantBlock net/minecraft/world/level/block/CaveVinesPlantBlock +CL: net/minecraft/world/level/block/CeilingHangingSignBlock net/minecraft/world/level/block/CeilingHangingSignBlock +CL: net/minecraft/world/level/block/ChainBlock net/minecraft/world/level/block/ChainBlock +CL: net/minecraft/world/level/block/ChainBlock$1 net/minecraft/world/level/block/ChainBlock$1 +CL: net/minecraft/world/level/block/ChangeOverTimeBlock net/minecraft/world/level/block/ChangeOverTimeBlock +CL: net/minecraft/world/level/block/CherryLeavesBlock net/minecraft/world/level/block/CherryLeavesBlock +CL: net/minecraft/world/level/block/ChestBlock net/minecraft/world/level/block/ChestBlock +CL: net/minecraft/world/level/block/ChestBlock$1 net/minecraft/world/level/block/ChestBlock$1 +CL: net/minecraft/world/level/block/ChestBlock$2 net/minecraft/world/level/block/ChestBlock$2 +CL: net/minecraft/world/level/block/ChestBlock$2$1 net/minecraft/world/level/block/ChestBlock$2$1 +CL: net/minecraft/world/level/block/ChestBlock$3 net/minecraft/world/level/block/ChestBlock$3 +CL: net/minecraft/world/level/block/ChestBlock$4 net/minecraft/world/level/block/ChestBlock$4 +CL: net/minecraft/world/level/block/ChiseledBookShelfBlock net/minecraft/world/level/block/ChiseledBookShelfBlock +CL: net/minecraft/world/level/block/ChiseledBookShelfBlock$1 net/minecraft/world/level/block/ChiseledBookShelfBlock$1 +CL: net/minecraft/world/level/block/ChorusFlowerBlock net/minecraft/world/level/block/ChorusFlowerBlock +CL: net/minecraft/world/level/block/ChorusPlantBlock net/minecraft/world/level/block/ChorusPlantBlock +CL: net/minecraft/world/level/block/CocoaBlock net/minecraft/world/level/block/CocoaBlock +CL: net/minecraft/world/level/block/CocoaBlock$1 net/minecraft/world/level/block/CocoaBlock$1 +CL: net/minecraft/world/level/block/CommandBlock net/minecraft/world/level/block/CommandBlock +CL: net/minecraft/world/level/block/ComparatorBlock net/minecraft/world/level/block/ComparatorBlock +CL: net/minecraft/world/level/block/ComposterBlock net/minecraft/world/level/block/ComposterBlock +CL: net/minecraft/world/level/block/ComposterBlock$EmptyContainer net/minecraft/world/level/block/ComposterBlock$EmptyContainer +CL: net/minecraft/world/level/block/ComposterBlock$InputContainer net/minecraft/world/level/block/ComposterBlock$InputContainer +CL: net/minecraft/world/level/block/ComposterBlock$OutputContainer net/minecraft/world/level/block/ComposterBlock$OutputContainer +CL: net/minecraft/world/level/block/ConcretePowderBlock net/minecraft/world/level/block/ConcretePowderBlock +CL: net/minecraft/world/level/block/ConduitBlock net/minecraft/world/level/block/ConduitBlock +CL: net/minecraft/world/level/block/CoralBlock net/minecraft/world/level/block/CoralBlock +CL: net/minecraft/world/level/block/CoralFanBlock net/minecraft/world/level/block/CoralFanBlock +CL: net/minecraft/world/level/block/CoralPlantBlock net/minecraft/world/level/block/CoralPlantBlock +CL: net/minecraft/world/level/block/CoralWallFanBlock net/minecraft/world/level/block/CoralWallFanBlock +CL: net/minecraft/world/level/block/CraftingTableBlock net/minecraft/world/level/block/CraftingTableBlock +CL: net/minecraft/world/level/block/CropBlock net/minecraft/world/level/block/CropBlock +CL: net/minecraft/world/level/block/CrossCollisionBlock net/minecraft/world/level/block/CrossCollisionBlock +CL: net/minecraft/world/level/block/CrossCollisionBlock$1 net/minecraft/world/level/block/CrossCollisionBlock$1 +CL: net/minecraft/world/level/block/CryingObsidianBlock net/minecraft/world/level/block/CryingObsidianBlock +CL: net/minecraft/world/level/block/DaylightDetectorBlock net/minecraft/world/level/block/DaylightDetectorBlock +CL: net/minecraft/world/level/block/DeadBushBlock net/minecraft/world/level/block/DeadBushBlock +CL: net/minecraft/world/level/block/DecoratedPotBlock net/minecraft/world/level/block/DecoratedPotBlock +CL: net/minecraft/world/level/block/DetectorRailBlock net/minecraft/world/level/block/DetectorRailBlock +CL: net/minecraft/world/level/block/DetectorRailBlock$1 net/minecraft/world/level/block/DetectorRailBlock$1 +CL: net/minecraft/world/level/block/DiodeBlock net/minecraft/world/level/block/DiodeBlock +CL: net/minecraft/world/level/block/DirectionalBlock net/minecraft/world/level/block/DirectionalBlock +CL: net/minecraft/world/level/block/DirtPathBlock net/minecraft/world/level/block/DirtPathBlock +CL: net/minecraft/world/level/block/DispenserBlock net/minecraft/world/level/block/DispenserBlock +CL: net/minecraft/world/level/block/DoorBlock net/minecraft/world/level/block/DoorBlock +CL: net/minecraft/world/level/block/DoorBlock$1 net/minecraft/world/level/block/DoorBlock$1 +CL: net/minecraft/world/level/block/DoubleBlockCombiner net/minecraft/world/level/block/DoubleBlockCombiner +CL: net/minecraft/world/level/block/DoubleBlockCombiner$BlockType net/minecraft/world/level/block/DoubleBlockCombiner$BlockType +CL: net/minecraft/world/level/block/DoubleBlockCombiner$Combiner net/minecraft/world/level/block/DoubleBlockCombiner$Combiner +CL: net/minecraft/world/level/block/DoubleBlockCombiner$NeighborCombineResult net/minecraft/world/level/block/DoubleBlockCombiner$NeighborCombineResult +CL: net/minecraft/world/level/block/DoubleBlockCombiner$NeighborCombineResult$Double net/minecraft/world/level/block/DoubleBlockCombiner$NeighborCombineResult$Double +CL: net/minecraft/world/level/block/DoubleBlockCombiner$NeighborCombineResult$Single net/minecraft/world/level/block/DoubleBlockCombiner$NeighborCombineResult$Single +CL: net/minecraft/world/level/block/DoublePlantBlock net/minecraft/world/level/block/DoublePlantBlock +CL: net/minecraft/world/level/block/DragonEggBlock net/minecraft/world/level/block/DragonEggBlock +CL: net/minecraft/world/level/block/DropExperienceBlock net/minecraft/world/level/block/DropExperienceBlock +CL: net/minecraft/world/level/block/DropperBlock net/minecraft/world/level/block/DropperBlock +CL: net/minecraft/world/level/block/EnchantmentTableBlock net/minecraft/world/level/block/EnchantmentTableBlock +CL: net/minecraft/world/level/block/EndGatewayBlock net/minecraft/world/level/block/EndGatewayBlock +CL: net/minecraft/world/level/block/EndPortalBlock net/minecraft/world/level/block/EndPortalBlock +CL: net/minecraft/world/level/block/EndPortalFrameBlock net/minecraft/world/level/block/EndPortalFrameBlock +CL: net/minecraft/world/level/block/EndRodBlock net/minecraft/world/level/block/EndRodBlock +CL: net/minecraft/world/level/block/EnderChestBlock net/minecraft/world/level/block/EnderChestBlock +CL: net/minecraft/world/level/block/EntityBlock net/minecraft/world/level/block/EntityBlock +CL: net/minecraft/world/level/block/EquipableCarvedPumpkinBlock net/minecraft/world/level/block/EquipableCarvedPumpkinBlock +CL: net/minecraft/world/level/block/FaceAttachedHorizontalDirectionalBlock net/minecraft/world/level/block/FaceAttachedHorizontalDirectionalBlock +CL: net/minecraft/world/level/block/FaceAttachedHorizontalDirectionalBlock$1 net/minecraft/world/level/block/FaceAttachedHorizontalDirectionalBlock$1 +CL: net/minecraft/world/level/block/Fallable net/minecraft/world/level/block/Fallable +CL: net/minecraft/world/level/block/FallingBlock net/minecraft/world/level/block/FallingBlock +CL: net/minecraft/world/level/block/FarmBlock net/minecraft/world/level/block/FarmBlock +CL: net/minecraft/world/level/block/FenceBlock net/minecraft/world/level/block/FenceBlock +CL: net/minecraft/world/level/block/FenceGateBlock net/minecraft/world/level/block/FenceGateBlock +CL: net/minecraft/world/level/block/FenceGateBlock$1 net/minecraft/world/level/block/FenceGateBlock$1 +CL: net/minecraft/world/level/block/FireBlock net/minecraft/world/level/block/FireBlock +CL: net/minecraft/world/level/block/FletchingTableBlock net/minecraft/world/level/block/FletchingTableBlock +CL: net/minecraft/world/level/block/FlowerBlock net/minecraft/world/level/block/FlowerBlock +CL: net/minecraft/world/level/block/FlowerPotBlock net/minecraft/world/level/block/FlowerPotBlock +CL: net/minecraft/world/level/block/FrogspawnBlock net/minecraft/world/level/block/FrogspawnBlock +CL: net/minecraft/world/level/block/FrostedIceBlock net/minecraft/world/level/block/FrostedIceBlock +CL: net/minecraft/world/level/block/FungusBlock net/minecraft/world/level/block/FungusBlock +CL: net/minecraft/world/level/block/FurnaceBlock net/minecraft/world/level/block/FurnaceBlock +CL: net/minecraft/world/level/block/GameMasterBlock net/minecraft/world/level/block/GameMasterBlock +CL: net/minecraft/world/level/block/GlassBlock net/minecraft/world/level/block/GlassBlock +CL: net/minecraft/world/level/block/GlazedTerracottaBlock net/minecraft/world/level/block/GlazedTerracottaBlock +CL: net/minecraft/world/level/block/GlowLichenBlock net/minecraft/world/level/block/GlowLichenBlock +CL: net/minecraft/world/level/block/GrassBlock net/minecraft/world/level/block/GrassBlock +CL: net/minecraft/world/level/block/GravelBlock net/minecraft/world/level/block/GravelBlock +CL: net/minecraft/world/level/block/GrindstoneBlock net/minecraft/world/level/block/GrindstoneBlock +CL: net/minecraft/world/level/block/GrindstoneBlock$1 net/minecraft/world/level/block/GrindstoneBlock$1 +CL: net/minecraft/world/level/block/GrowingPlantBlock net/minecraft/world/level/block/GrowingPlantBlock +CL: net/minecraft/world/level/block/GrowingPlantBodyBlock net/minecraft/world/level/block/GrowingPlantBodyBlock +CL: net/minecraft/world/level/block/GrowingPlantHeadBlock net/minecraft/world/level/block/GrowingPlantHeadBlock +CL: net/minecraft/world/level/block/HalfTransparentBlock net/minecraft/world/level/block/HalfTransparentBlock +CL: net/minecraft/world/level/block/HangingRootsBlock net/minecraft/world/level/block/HangingRootsBlock +CL: net/minecraft/world/level/block/HayBlock net/minecraft/world/level/block/HayBlock +CL: net/minecraft/world/level/block/HoneyBlock net/minecraft/world/level/block/HoneyBlock +CL: net/minecraft/world/level/block/HopperBlock net/minecraft/world/level/block/HopperBlock +CL: net/minecraft/world/level/block/HopperBlock$1 net/minecraft/world/level/block/HopperBlock$1 +CL: net/minecraft/world/level/block/HorizontalDirectionalBlock net/minecraft/world/level/block/HorizontalDirectionalBlock +CL: net/minecraft/world/level/block/HugeMushroomBlock net/minecraft/world/level/block/HugeMushroomBlock +CL: net/minecraft/world/level/block/IceBlock net/minecraft/world/level/block/IceBlock +CL: net/minecraft/world/level/block/InfestedBlock net/minecraft/world/level/block/InfestedBlock +CL: net/minecraft/world/level/block/InfestedRotatedPillarBlock net/minecraft/world/level/block/InfestedRotatedPillarBlock +CL: net/minecraft/world/level/block/IronBarsBlock net/minecraft/world/level/block/IronBarsBlock +CL: net/minecraft/world/level/block/JigsawBlock net/minecraft/world/level/block/JigsawBlock +CL: net/minecraft/world/level/block/JukeboxBlock net/minecraft/world/level/block/JukeboxBlock +CL: net/minecraft/world/level/block/KelpBlock net/minecraft/world/level/block/KelpBlock +CL: net/minecraft/world/level/block/KelpPlantBlock net/minecraft/world/level/block/KelpPlantBlock +CL: net/minecraft/world/level/block/LadderBlock net/minecraft/world/level/block/LadderBlock +CL: net/minecraft/world/level/block/LadderBlock$1 net/minecraft/world/level/block/LadderBlock$1 +CL: net/minecraft/world/level/block/LanternBlock net/minecraft/world/level/block/LanternBlock +CL: net/minecraft/world/level/block/LavaCauldronBlock net/minecraft/world/level/block/LavaCauldronBlock +CL: net/minecraft/world/level/block/LayeredCauldronBlock net/minecraft/world/level/block/LayeredCauldronBlock +CL: net/minecraft/world/level/block/LeavesBlock net/minecraft/world/level/block/LeavesBlock +CL: net/minecraft/world/level/block/LecternBlock net/minecraft/world/level/block/LecternBlock +CL: net/minecraft/world/level/block/LecternBlock$1 net/minecraft/world/level/block/LecternBlock$1 +CL: net/minecraft/world/level/block/LevelEvent net/minecraft/world/level/block/LevelEvent +CL: net/minecraft/world/level/block/LeverBlock net/minecraft/world/level/block/LeverBlock +CL: net/minecraft/world/level/block/LeverBlock$1 net/minecraft/world/level/block/LeverBlock$1 +CL: net/minecraft/world/level/block/LightBlock net/minecraft/world/level/block/LightBlock +CL: net/minecraft/world/level/block/LightningRodBlock net/minecraft/world/level/block/LightningRodBlock +CL: net/minecraft/world/level/block/LiquidBlock net/minecraft/world/level/block/LiquidBlock +CL: net/minecraft/world/level/block/LiquidBlockContainer net/minecraft/world/level/block/LiquidBlockContainer +CL: net/minecraft/world/level/block/LoomBlock net/minecraft/world/level/block/LoomBlock +CL: net/minecraft/world/level/block/MagmaBlock net/minecraft/world/level/block/MagmaBlock +CL: net/minecraft/world/level/block/MangroveLeavesBlock net/minecraft/world/level/block/MangroveLeavesBlock +CL: net/minecraft/world/level/block/MangrovePropaguleBlock net/minecraft/world/level/block/MangrovePropaguleBlock +CL: net/minecraft/world/level/block/MangroveRootsBlock net/minecraft/world/level/block/MangroveRootsBlock +CL: net/minecraft/world/level/block/MelonBlock net/minecraft/world/level/block/MelonBlock +CL: net/minecraft/world/level/block/Mirror net/minecraft/world/level/block/Mirror +CL: net/minecraft/world/level/block/Mirror$1 net/minecraft/world/level/block/Mirror$1 +CL: net/minecraft/world/level/block/MossBlock net/minecraft/world/level/block/MossBlock +CL: net/minecraft/world/level/block/MudBlock net/minecraft/world/level/block/MudBlock +CL: net/minecraft/world/level/block/MultifaceBlock net/minecraft/world/level/block/MultifaceBlock +CL: net/minecraft/world/level/block/MultifaceSpreader net/minecraft/world/level/block/MultifaceSpreader +CL: net/minecraft/world/level/block/MultifaceSpreader$DefaultSpreaderConfig net/minecraft/world/level/block/MultifaceSpreader$DefaultSpreaderConfig +CL: net/minecraft/world/level/block/MultifaceSpreader$SpreadConfig net/minecraft/world/level/block/MultifaceSpreader$SpreadConfig +CL: net/minecraft/world/level/block/MultifaceSpreader$SpreadPos net/minecraft/world/level/block/MultifaceSpreader$SpreadPos +CL: net/minecraft/world/level/block/MultifaceSpreader$SpreadPredicate net/minecraft/world/level/block/MultifaceSpreader$SpreadPredicate +CL: net/minecraft/world/level/block/MultifaceSpreader$SpreadType net/minecraft/world/level/block/MultifaceSpreader$SpreadType +CL: net/minecraft/world/level/block/MultifaceSpreader$SpreadType$1 net/minecraft/world/level/block/MultifaceSpreader$SpreadType$1 +CL: net/minecraft/world/level/block/MultifaceSpreader$SpreadType$2 net/minecraft/world/level/block/MultifaceSpreader$SpreadType$2 +CL: net/minecraft/world/level/block/MultifaceSpreader$SpreadType$3 net/minecraft/world/level/block/MultifaceSpreader$SpreadType$3 +CL: net/minecraft/world/level/block/MushroomBlock net/minecraft/world/level/block/MushroomBlock +CL: net/minecraft/world/level/block/MyceliumBlock net/minecraft/world/level/block/MyceliumBlock +CL: net/minecraft/world/level/block/NetherPortalBlock net/minecraft/world/level/block/NetherPortalBlock +CL: net/minecraft/world/level/block/NetherPortalBlock$1 net/minecraft/world/level/block/NetherPortalBlock$1 +CL: net/minecraft/world/level/block/NetherSproutsBlock net/minecraft/world/level/block/NetherSproutsBlock +CL: net/minecraft/world/level/block/NetherVines net/minecraft/world/level/block/NetherVines +CL: net/minecraft/world/level/block/NetherWartBlock net/minecraft/world/level/block/NetherWartBlock +CL: net/minecraft/world/level/block/NetherrackBlock net/minecraft/world/level/block/NetherrackBlock +CL: net/minecraft/world/level/block/NoteBlock net/minecraft/world/level/block/NoteBlock +CL: net/minecraft/world/level/block/NyliumBlock net/minecraft/world/level/block/NyliumBlock +CL: net/minecraft/world/level/block/ObserverBlock net/minecraft/world/level/block/ObserverBlock +CL: net/minecraft/world/level/block/PiglinWallSkullBlock net/minecraft/world/level/block/PiglinWallSkullBlock +CL: net/minecraft/world/level/block/PinkPetalsBlock net/minecraft/world/level/block/PinkPetalsBlock +CL: net/minecraft/world/level/block/PipeBlock net/minecraft/world/level/block/PipeBlock +CL: net/minecraft/world/level/block/PitcherCropBlock net/minecraft/world/level/block/PitcherCropBlock +CL: net/minecraft/world/level/block/PitcherCropBlock$PosAndState net/minecraft/world/level/block/PitcherCropBlock$PosAndState +CL: net/minecraft/world/level/block/PlayerHeadBlock net/minecraft/world/level/block/PlayerHeadBlock +CL: net/minecraft/world/level/block/PlayerWallHeadBlock net/minecraft/world/level/block/PlayerWallHeadBlock +CL: net/minecraft/world/level/block/PointedDripstoneBlock net/minecraft/world/level/block/PointedDripstoneBlock +CL: net/minecraft/world/level/block/PointedDripstoneBlock$FluidInfo net/minecraft/world/level/block/PointedDripstoneBlock$FluidInfo +CL: net/minecraft/world/level/block/PotatoBlock net/minecraft/world/level/block/PotatoBlock +CL: net/minecraft/world/level/block/PowderSnowBlock net/minecraft/world/level/block/PowderSnowBlock +CL: net/minecraft/world/level/block/PowderSnowCauldronBlock net/minecraft/world/level/block/PowderSnowCauldronBlock +CL: net/minecraft/world/level/block/PoweredBlock net/minecraft/world/level/block/PoweredBlock +CL: net/minecraft/world/level/block/PoweredRailBlock net/minecraft/world/level/block/PoweredRailBlock +CL: net/minecraft/world/level/block/PoweredRailBlock$1 net/minecraft/world/level/block/PoweredRailBlock$1 +CL: net/minecraft/world/level/block/PressurePlateBlock net/minecraft/world/level/block/PressurePlateBlock +CL: net/minecraft/world/level/block/PressurePlateBlock$1 net/minecraft/world/level/block/PressurePlateBlock$1 +CL: net/minecraft/world/level/block/PressurePlateBlock$Sensitivity net/minecraft/world/level/block/PressurePlateBlock$Sensitivity +CL: net/minecraft/world/level/block/PumpkinBlock net/minecraft/world/level/block/PumpkinBlock +CL: net/minecraft/world/level/block/RailBlock net/minecraft/world/level/block/RailBlock +CL: net/minecraft/world/level/block/RailBlock$1 net/minecraft/world/level/block/RailBlock$1 +CL: net/minecraft/world/level/block/RailState net/minecraft/world/level/block/RailState +CL: net/minecraft/world/level/block/RailState$1 net/minecraft/world/level/block/RailState$1 +CL: net/minecraft/world/level/block/RedStoneOreBlock net/minecraft/world/level/block/RedStoneOreBlock +CL: net/minecraft/world/level/block/RedStoneWireBlock net/minecraft/world/level/block/RedStoneWireBlock +CL: net/minecraft/world/level/block/RedStoneWireBlock$1 net/minecraft/world/level/block/RedStoneWireBlock$1 +CL: net/minecraft/world/level/block/RedstoneLampBlock net/minecraft/world/level/block/RedstoneLampBlock +CL: net/minecraft/world/level/block/RedstoneTorchBlock net/minecraft/world/level/block/RedstoneTorchBlock +CL: net/minecraft/world/level/block/RedstoneTorchBlock$Toggle net/minecraft/world/level/block/RedstoneTorchBlock$Toggle +CL: net/minecraft/world/level/block/RedstoneWallTorchBlock net/minecraft/world/level/block/RedstoneWallTorchBlock +CL: net/minecraft/world/level/block/RenderShape net/minecraft/world/level/block/RenderShape +CL: net/minecraft/world/level/block/RepeaterBlock net/minecraft/world/level/block/RepeaterBlock +CL: net/minecraft/world/level/block/RespawnAnchorBlock net/minecraft/world/level/block/RespawnAnchorBlock +CL: net/minecraft/world/level/block/RespawnAnchorBlock$1 net/minecraft/world/level/block/RespawnAnchorBlock$1 +CL: net/minecraft/world/level/block/RodBlock net/minecraft/world/level/block/RodBlock +CL: net/minecraft/world/level/block/RodBlock$1 net/minecraft/world/level/block/RodBlock$1 +CL: net/minecraft/world/level/block/RootedDirtBlock net/minecraft/world/level/block/RootedDirtBlock +CL: net/minecraft/world/level/block/RootsBlock net/minecraft/world/level/block/RootsBlock +CL: net/minecraft/world/level/block/RotatedPillarBlock net/minecraft/world/level/block/RotatedPillarBlock +CL: net/minecraft/world/level/block/RotatedPillarBlock$1 net/minecraft/world/level/block/RotatedPillarBlock$1 +CL: net/minecraft/world/level/block/Rotation net/minecraft/world/level/block/Rotation +CL: net/minecraft/world/level/block/Rotation$1 net/minecraft/world/level/block/Rotation$1 +CL: net/minecraft/world/level/block/SandBlock net/minecraft/world/level/block/SandBlock +CL: net/minecraft/world/level/block/SaplingBlock net/minecraft/world/level/block/SaplingBlock +CL: net/minecraft/world/level/block/ScaffoldingBlock net/minecraft/world/level/block/ScaffoldingBlock +CL: net/minecraft/world/level/block/SculkBehaviour net/minecraft/world/level/block/SculkBehaviour +CL: net/minecraft/world/level/block/SculkBehaviour$1 net/minecraft/world/level/block/SculkBehaviour$1 +CL: net/minecraft/world/level/block/SculkBlock net/minecraft/world/level/block/SculkBlock +CL: net/minecraft/world/level/block/SculkCatalystBlock net/minecraft/world/level/block/SculkCatalystBlock +CL: net/minecraft/world/level/block/SculkSensorBlock net/minecraft/world/level/block/SculkSensorBlock +CL: net/minecraft/world/level/block/SculkShriekerBlock net/minecraft/world/level/block/SculkShriekerBlock +CL: net/minecraft/world/level/block/SculkSpreader net/minecraft/world/level/block/SculkSpreader +CL: net/minecraft/world/level/block/SculkSpreader$ChargeCursor net/minecraft/world/level/block/SculkSpreader$ChargeCursor +CL: net/minecraft/world/level/block/SculkVeinBlock net/minecraft/world/level/block/SculkVeinBlock +CL: net/minecraft/world/level/block/SculkVeinBlock$SculkVeinSpreaderConfig net/minecraft/world/level/block/SculkVeinBlock$SculkVeinSpreaderConfig +CL: net/minecraft/world/level/block/SeaPickleBlock net/minecraft/world/level/block/SeaPickleBlock +CL: net/minecraft/world/level/block/SeagrassBlock net/minecraft/world/level/block/SeagrassBlock +CL: net/minecraft/world/level/block/ShulkerBoxBlock net/minecraft/world/level/block/ShulkerBoxBlock +CL: net/minecraft/world/level/block/ShulkerBoxBlock$1 net/minecraft/world/level/block/ShulkerBoxBlock$1 +CL: net/minecraft/world/level/block/SignBlock net/minecraft/world/level/block/SignBlock +CL: net/minecraft/world/level/block/SimpleWaterloggedBlock net/minecraft/world/level/block/SimpleWaterloggedBlock +CL: net/minecraft/world/level/block/SkullBlock net/minecraft/world/level/block/SkullBlock +CL: net/minecraft/world/level/block/SkullBlock$Type net/minecraft/world/level/block/SkullBlock$Type +CL: net/minecraft/world/level/block/SkullBlock$Types net/minecraft/world/level/block/SkullBlock$Types +CL: net/minecraft/world/level/block/SlabBlock net/minecraft/world/level/block/SlabBlock +CL: net/minecraft/world/level/block/SlabBlock$1 net/minecraft/world/level/block/SlabBlock$1 +CL: net/minecraft/world/level/block/SlimeBlock net/minecraft/world/level/block/SlimeBlock +CL: net/minecraft/world/level/block/SmallDripleafBlock net/minecraft/world/level/block/SmallDripleafBlock +CL: net/minecraft/world/level/block/SmithingTableBlock net/minecraft/world/level/block/SmithingTableBlock +CL: net/minecraft/world/level/block/SmokerBlock net/minecraft/world/level/block/SmokerBlock +CL: net/minecraft/world/level/block/SnifferEggBlock net/minecraft/world/level/block/SnifferEggBlock +CL: net/minecraft/world/level/block/SnowLayerBlock net/minecraft/world/level/block/SnowLayerBlock +CL: net/minecraft/world/level/block/SnowLayerBlock$1 net/minecraft/world/level/block/SnowLayerBlock$1 +CL: net/minecraft/world/level/block/SnowyDirtBlock net/minecraft/world/level/block/SnowyDirtBlock +CL: net/minecraft/world/level/block/SoulFireBlock net/minecraft/world/level/block/SoulFireBlock +CL: net/minecraft/world/level/block/SoulSandBlock net/minecraft/world/level/block/SoulSandBlock +CL: net/minecraft/world/level/block/SoundType net/minecraft/world/level/block/SoundType +CL: net/minecraft/world/level/block/SpawnerBlock net/minecraft/world/level/block/SpawnerBlock +CL: net/minecraft/world/level/block/SpongeBlock net/minecraft/world/level/block/SpongeBlock +CL: net/minecraft/world/level/block/SporeBlossomBlock net/minecraft/world/level/block/SporeBlossomBlock +CL: net/minecraft/world/level/block/SpreadingSnowyDirtBlock net/minecraft/world/level/block/SpreadingSnowyDirtBlock +CL: net/minecraft/world/level/block/StainedGlassBlock net/minecraft/world/level/block/StainedGlassBlock +CL: net/minecraft/world/level/block/StainedGlassPaneBlock net/minecraft/world/level/block/StainedGlassPaneBlock +CL: net/minecraft/world/level/block/StairBlock net/minecraft/world/level/block/StairBlock +CL: net/minecraft/world/level/block/StairBlock$1 net/minecraft/world/level/block/StairBlock$1 +CL: net/minecraft/world/level/block/StandingSignBlock net/minecraft/world/level/block/StandingSignBlock +CL: net/minecraft/world/level/block/StemBlock net/minecraft/world/level/block/StemBlock +CL: net/minecraft/world/level/block/StemGrownBlock net/minecraft/world/level/block/StemGrownBlock +CL: net/minecraft/world/level/block/StonecutterBlock net/minecraft/world/level/block/StonecutterBlock +CL: net/minecraft/world/level/block/StructureBlock net/minecraft/world/level/block/StructureBlock +CL: net/minecraft/world/level/block/StructureBlock$1 net/minecraft/world/level/block/StructureBlock$1 +CL: net/minecraft/world/level/block/StructureVoidBlock net/minecraft/world/level/block/StructureVoidBlock +CL: net/minecraft/world/level/block/SugarCaneBlock net/minecraft/world/level/block/SugarCaneBlock +CL: net/minecraft/world/level/block/SupportType net/minecraft/world/level/block/SupportType +CL: net/minecraft/world/level/block/SupportType$1 net/minecraft/world/level/block/SupportType$1 +CL: net/minecraft/world/level/block/SupportType$2 net/minecraft/world/level/block/SupportType$2 +CL: net/minecraft/world/level/block/SupportType$3 net/minecraft/world/level/block/SupportType$3 +CL: net/minecraft/world/level/block/SuspiciousEffectHolder net/minecraft/world/level/block/SuspiciousEffectHolder +CL: net/minecraft/world/level/block/SweetBerryBushBlock net/minecraft/world/level/block/SweetBerryBushBlock +CL: net/minecraft/world/level/block/TallFlowerBlock net/minecraft/world/level/block/TallFlowerBlock +CL: net/minecraft/world/level/block/TallGrassBlock net/minecraft/world/level/block/TallGrassBlock +CL: net/minecraft/world/level/block/TallSeagrassBlock net/minecraft/world/level/block/TallSeagrassBlock +CL: net/minecraft/world/level/block/TargetBlock net/minecraft/world/level/block/TargetBlock +CL: net/minecraft/world/level/block/TintedGlassBlock net/minecraft/world/level/block/TintedGlassBlock +CL: net/minecraft/world/level/block/TntBlock net/minecraft/world/level/block/TntBlock +CL: net/minecraft/world/level/block/TorchBlock net/minecraft/world/level/block/TorchBlock +CL: net/minecraft/world/level/block/TorchflowerCropBlock net/minecraft/world/level/block/TorchflowerCropBlock +CL: net/minecraft/world/level/block/TrapDoorBlock net/minecraft/world/level/block/TrapDoorBlock +CL: net/minecraft/world/level/block/TrapDoorBlock$1 net/minecraft/world/level/block/TrapDoorBlock$1 +CL: net/minecraft/world/level/block/TrappedChestBlock net/minecraft/world/level/block/TrappedChestBlock +CL: net/minecraft/world/level/block/TripWireBlock net/minecraft/world/level/block/TripWireBlock +CL: net/minecraft/world/level/block/TripWireBlock$1 net/minecraft/world/level/block/TripWireBlock$1 +CL: net/minecraft/world/level/block/TripWireHookBlock net/minecraft/world/level/block/TripWireHookBlock +CL: net/minecraft/world/level/block/TripWireHookBlock$1 net/minecraft/world/level/block/TripWireHookBlock$1 +CL: net/minecraft/world/level/block/TurtleEggBlock net/minecraft/world/level/block/TurtleEggBlock +CL: net/minecraft/world/level/block/TwistingVinesBlock net/minecraft/world/level/block/TwistingVinesBlock +CL: net/minecraft/world/level/block/TwistingVinesPlantBlock net/minecraft/world/level/block/TwistingVinesPlantBlock +CL: net/minecraft/world/level/block/VineBlock net/minecraft/world/level/block/VineBlock +CL: net/minecraft/world/level/block/VineBlock$1 net/minecraft/world/level/block/VineBlock$1 +CL: net/minecraft/world/level/block/WallBannerBlock net/minecraft/world/level/block/WallBannerBlock +CL: net/minecraft/world/level/block/WallBlock net/minecraft/world/level/block/WallBlock +CL: net/minecraft/world/level/block/WallBlock$1 net/minecraft/world/level/block/WallBlock$1 +CL: net/minecraft/world/level/block/WallHangingSignBlock net/minecraft/world/level/block/WallHangingSignBlock +CL: net/minecraft/world/level/block/WallHangingSignBlock$1 net/minecraft/world/level/block/WallHangingSignBlock$1 +CL: net/minecraft/world/level/block/WallSignBlock net/minecraft/world/level/block/WallSignBlock +CL: net/minecraft/world/level/block/WallSkullBlock net/minecraft/world/level/block/WallSkullBlock +CL: net/minecraft/world/level/block/WallTorchBlock net/minecraft/world/level/block/WallTorchBlock +CL: net/minecraft/world/level/block/WaterlilyBlock net/minecraft/world/level/block/WaterlilyBlock +CL: net/minecraft/world/level/block/WeatheringCopper net/minecraft/world/level/block/WeatheringCopper +CL: net/minecraft/world/level/block/WeatheringCopper$WeatherState net/minecraft/world/level/block/WeatheringCopper$WeatherState +CL: net/minecraft/world/level/block/WeatheringCopperFullBlock net/minecraft/world/level/block/WeatheringCopperFullBlock +CL: net/minecraft/world/level/block/WeatheringCopperSlabBlock net/minecraft/world/level/block/WeatheringCopperSlabBlock +CL: net/minecraft/world/level/block/WeatheringCopperStairBlock net/minecraft/world/level/block/WeatheringCopperStairBlock +CL: net/minecraft/world/level/block/WebBlock net/minecraft/world/level/block/WebBlock +CL: net/minecraft/world/level/block/WeepingVinesBlock net/minecraft/world/level/block/WeepingVinesBlock +CL: net/minecraft/world/level/block/WeepingVinesPlantBlock net/minecraft/world/level/block/WeepingVinesPlantBlock +CL: net/minecraft/world/level/block/WeightedPressurePlateBlock net/minecraft/world/level/block/WeightedPressurePlateBlock +CL: net/minecraft/world/level/block/WetSpongeBlock net/minecraft/world/level/block/WetSpongeBlock +CL: net/minecraft/world/level/block/WitherRoseBlock net/minecraft/world/level/block/WitherRoseBlock +CL: net/minecraft/world/level/block/WitherSkullBlock net/minecraft/world/level/block/WitherSkullBlock +CL: net/minecraft/world/level/block/WitherWallSkullBlock net/minecraft/world/level/block/WitherWallSkullBlock +CL: net/minecraft/world/level/block/WoolCarpetBlock net/minecraft/world/level/block/WoolCarpetBlock +CL: net/minecraft/world/level/block/entity/AbstractFurnaceBlockEntity net/minecraft/world/level/block/entity/AbstractFurnaceBlockEntity +CL: net/minecraft/world/level/block/entity/AbstractFurnaceBlockEntity$1 net/minecraft/world/level/block/entity/AbstractFurnaceBlockEntity$1 +CL: net/minecraft/world/level/block/entity/BannerBlockEntity net/minecraft/world/level/block/entity/BannerBlockEntity +CL: net/minecraft/world/level/block/entity/BannerPattern net/minecraft/world/level/block/entity/BannerPattern +CL: net/minecraft/world/level/block/entity/BannerPattern$Builder net/minecraft/world/level/block/entity/BannerPattern$Builder +CL: net/minecraft/world/level/block/entity/BannerPatterns net/minecraft/world/level/block/entity/BannerPatterns +CL: net/minecraft/world/level/block/entity/BarrelBlockEntity net/minecraft/world/level/block/entity/BarrelBlockEntity +CL: net/minecraft/world/level/block/entity/BarrelBlockEntity$1 net/minecraft/world/level/block/entity/BarrelBlockEntity$1 +CL: net/minecraft/world/level/block/entity/BaseContainerBlockEntity net/minecraft/world/level/block/entity/BaseContainerBlockEntity +CL: net/minecraft/world/level/block/entity/BeaconBlockEntity net/minecraft/world/level/block/entity/BeaconBlockEntity +CL: net/minecraft/world/level/block/entity/BeaconBlockEntity$1 net/minecraft/world/level/block/entity/BeaconBlockEntity$1 +CL: net/minecraft/world/level/block/entity/BeaconBlockEntity$BeaconBeamSection net/minecraft/world/level/block/entity/BeaconBlockEntity$BeaconBeamSection +CL: net/minecraft/world/level/block/entity/BedBlockEntity net/minecraft/world/level/block/entity/BedBlockEntity +CL: net/minecraft/world/level/block/entity/BeehiveBlockEntity net/minecraft/world/level/block/entity/BeehiveBlockEntity +CL: net/minecraft/world/level/block/entity/BeehiveBlockEntity$BeeData net/minecraft/world/level/block/entity/BeehiveBlockEntity$BeeData +CL: net/minecraft/world/level/block/entity/BeehiveBlockEntity$BeeReleaseStatus net/minecraft/world/level/block/entity/BeehiveBlockEntity$BeeReleaseStatus +CL: net/minecraft/world/level/block/entity/BellBlockEntity net/minecraft/world/level/block/entity/BellBlockEntity +CL: net/minecraft/world/level/block/entity/BellBlockEntity$ResonationEndAction net/minecraft/world/level/block/entity/BellBlockEntity$ResonationEndAction +CL: net/minecraft/world/level/block/entity/BlastFurnaceBlockEntity net/minecraft/world/level/block/entity/BlastFurnaceBlockEntity +CL: net/minecraft/world/level/block/entity/BlockEntity net/minecraft/world/level/block/entity/BlockEntity +CL: net/minecraft/world/level/block/entity/BlockEntityTicker net/minecraft/world/level/block/entity/BlockEntityTicker +CL: net/minecraft/world/level/block/entity/BlockEntityType net/minecraft/world/level/block/entity/BlockEntityType +CL: net/minecraft/world/level/block/entity/BlockEntityType$BlockEntitySupplier net/minecraft/world/level/block/entity/BlockEntityType$BlockEntitySupplier +CL: net/minecraft/world/level/block/entity/BlockEntityType$Builder net/minecraft/world/level/block/entity/BlockEntityType$Builder +CL: net/minecraft/world/level/block/entity/BrewingStandBlockEntity net/minecraft/world/level/block/entity/BrewingStandBlockEntity +CL: net/minecraft/world/level/block/entity/BrewingStandBlockEntity$1 net/minecraft/world/level/block/entity/BrewingStandBlockEntity$1 +CL: net/minecraft/world/level/block/entity/BrushableBlockEntity net/minecraft/world/level/block/entity/BrushableBlockEntity +CL: net/minecraft/world/level/block/entity/CalibratedSculkSensorBlockEntity net/minecraft/world/level/block/entity/CalibratedSculkSensorBlockEntity +CL: net/minecraft/world/level/block/entity/CalibratedSculkSensorBlockEntity$VibrationUser net/minecraft/world/level/block/entity/CalibratedSculkSensorBlockEntity$VibrationUser +CL: net/minecraft/world/level/block/entity/CampfireBlockEntity net/minecraft/world/level/block/entity/CampfireBlockEntity +CL: net/minecraft/world/level/block/entity/ChestBlockEntity net/minecraft/world/level/block/entity/ChestBlockEntity +CL: net/minecraft/world/level/block/entity/ChestBlockEntity$1 net/minecraft/world/level/block/entity/ChestBlockEntity$1 +CL: net/minecraft/world/level/block/entity/ChestLidController net/minecraft/world/level/block/entity/ChestLidController +CL: net/minecraft/world/level/block/entity/ChiseledBookShelfBlockEntity net/minecraft/world/level/block/entity/ChiseledBookShelfBlockEntity +CL: net/minecraft/world/level/block/entity/CommandBlockEntity net/minecraft/world/level/block/entity/CommandBlockEntity +CL: net/minecraft/world/level/block/entity/CommandBlockEntity$1 net/minecraft/world/level/block/entity/CommandBlockEntity$1 +CL: net/minecraft/world/level/block/entity/CommandBlockEntity$Mode net/minecraft/world/level/block/entity/CommandBlockEntity$Mode +CL: net/minecraft/world/level/block/entity/ComparatorBlockEntity net/minecraft/world/level/block/entity/ComparatorBlockEntity +CL: net/minecraft/world/level/block/entity/ConduitBlockEntity net/minecraft/world/level/block/entity/ConduitBlockEntity +CL: net/minecraft/world/level/block/entity/ContainerOpenersCounter net/minecraft/world/level/block/entity/ContainerOpenersCounter +CL: net/minecraft/world/level/block/entity/DaylightDetectorBlockEntity net/minecraft/world/level/block/entity/DaylightDetectorBlockEntity +CL: net/minecraft/world/level/block/entity/DecoratedPotBlockEntity net/minecraft/world/level/block/entity/DecoratedPotBlockEntity +CL: net/minecraft/world/level/block/entity/DecoratedPotBlockEntity$Decorations net/minecraft/world/level/block/entity/DecoratedPotBlockEntity$Decorations +CL: net/minecraft/world/level/block/entity/DecoratedPotPatterns net/minecraft/world/level/block/entity/DecoratedPotPatterns +CL: net/minecraft/world/level/block/entity/DispenserBlockEntity net/minecraft/world/level/block/entity/DispenserBlockEntity +CL: net/minecraft/world/level/block/entity/DropperBlockEntity net/minecraft/world/level/block/entity/DropperBlockEntity +CL: net/minecraft/world/level/block/entity/EnchantmentTableBlockEntity net/minecraft/world/level/block/entity/EnchantmentTableBlockEntity +CL: net/minecraft/world/level/block/entity/EnderChestBlockEntity net/minecraft/world/level/block/entity/EnderChestBlockEntity +CL: net/minecraft/world/level/block/entity/EnderChestBlockEntity$1 net/minecraft/world/level/block/entity/EnderChestBlockEntity$1 +CL: net/minecraft/world/level/block/entity/FurnaceBlockEntity net/minecraft/world/level/block/entity/FurnaceBlockEntity +CL: net/minecraft/world/level/block/entity/HangingSignBlockEntity net/minecraft/world/level/block/entity/HangingSignBlockEntity +CL: net/minecraft/world/level/block/entity/Hopper net/minecraft/world/level/block/entity/Hopper +CL: net/minecraft/world/level/block/entity/HopperBlockEntity net/minecraft/world/level/block/entity/HopperBlockEntity +CL: net/minecraft/world/level/block/entity/JigsawBlockEntity net/minecraft/world/level/block/entity/JigsawBlockEntity +CL: net/minecraft/world/level/block/entity/JigsawBlockEntity$JointType net/minecraft/world/level/block/entity/JigsawBlockEntity$JointType +CL: net/minecraft/world/level/block/entity/JukeboxBlockEntity net/minecraft/world/level/block/entity/JukeboxBlockEntity +CL: net/minecraft/world/level/block/entity/LecternBlockEntity net/minecraft/world/level/block/entity/LecternBlockEntity +CL: net/minecraft/world/level/block/entity/LecternBlockEntity$1 net/minecraft/world/level/block/entity/LecternBlockEntity$1 +CL: net/minecraft/world/level/block/entity/LecternBlockEntity$2 net/minecraft/world/level/block/entity/LecternBlockEntity$2 +CL: net/minecraft/world/level/block/entity/LidBlockEntity net/minecraft/world/level/block/entity/LidBlockEntity +CL: net/minecraft/world/level/block/entity/RandomizableContainerBlockEntity net/minecraft/world/level/block/entity/RandomizableContainerBlockEntity +CL: net/minecraft/world/level/block/entity/SculkCatalystBlockEntity net/minecraft/world/level/block/entity/SculkCatalystBlockEntity +CL: net/minecraft/world/level/block/entity/SculkCatalystBlockEntity$CatalystListener net/minecraft/world/level/block/entity/SculkCatalystBlockEntity$CatalystListener +CL: net/minecraft/world/level/block/entity/SculkSensorBlockEntity net/minecraft/world/level/block/entity/SculkSensorBlockEntity +CL: net/minecraft/world/level/block/entity/SculkSensorBlockEntity$VibrationUser net/minecraft/world/level/block/entity/SculkSensorBlockEntity$VibrationUser +CL: net/minecraft/world/level/block/entity/SculkShriekerBlockEntity net/minecraft/world/level/block/entity/SculkShriekerBlockEntity +CL: net/minecraft/world/level/block/entity/SculkShriekerBlockEntity$VibrationUser net/minecraft/world/level/block/entity/SculkShriekerBlockEntity$VibrationUser +CL: net/minecraft/world/level/block/entity/ShulkerBoxBlockEntity net/minecraft/world/level/block/entity/ShulkerBoxBlockEntity +CL: net/minecraft/world/level/block/entity/ShulkerBoxBlockEntity$1 net/minecraft/world/level/block/entity/ShulkerBoxBlockEntity$1 +CL: net/minecraft/world/level/block/entity/ShulkerBoxBlockEntity$AnimationStatus net/minecraft/world/level/block/entity/ShulkerBoxBlockEntity$AnimationStatus +CL: net/minecraft/world/level/block/entity/SignBlockEntity net/minecraft/world/level/block/entity/SignBlockEntity +CL: net/minecraft/world/level/block/entity/SignText net/minecraft/world/level/block/entity/SignText +CL: net/minecraft/world/level/block/entity/SkullBlockEntity net/minecraft/world/level/block/entity/SkullBlockEntity +CL: net/minecraft/world/level/block/entity/SmokerBlockEntity net/minecraft/world/level/block/entity/SmokerBlockEntity +CL: net/minecraft/world/level/block/entity/SpawnerBlockEntity net/minecraft/world/level/block/entity/SpawnerBlockEntity +CL: net/minecraft/world/level/block/entity/SpawnerBlockEntity$1 net/minecraft/world/level/block/entity/SpawnerBlockEntity$1 +CL: net/minecraft/world/level/block/entity/StructureBlockEntity net/minecraft/world/level/block/entity/StructureBlockEntity +CL: net/minecraft/world/level/block/entity/StructureBlockEntity$UpdateType net/minecraft/world/level/block/entity/StructureBlockEntity$UpdateType +CL: net/minecraft/world/level/block/entity/TheEndGatewayBlockEntity net/minecraft/world/level/block/entity/TheEndGatewayBlockEntity +CL: net/minecraft/world/level/block/entity/TheEndPortalBlockEntity net/minecraft/world/level/block/entity/TheEndPortalBlockEntity +CL: net/minecraft/world/level/block/entity/TickingBlockEntity net/minecraft/world/level/block/entity/TickingBlockEntity +CL: net/minecraft/world/level/block/entity/TrappedChestBlockEntity net/minecraft/world/level/block/entity/TrappedChestBlockEntity +CL: net/minecraft/world/level/block/entity/package-info net/minecraft/world/level/block/entity/package-info +CL: net/minecraft/world/level/block/grower/AbstractMegaTreeGrower net/minecraft/world/level/block/grower/AbstractMegaTreeGrower +CL: net/minecraft/world/level/block/grower/AbstractTreeGrower net/minecraft/world/level/block/grower/AbstractTreeGrower +CL: net/minecraft/world/level/block/grower/AcaciaTreeGrower net/minecraft/world/level/block/grower/AcaciaTreeGrower +CL: net/minecraft/world/level/block/grower/AzaleaTreeGrower net/minecraft/world/level/block/grower/AzaleaTreeGrower +CL: net/minecraft/world/level/block/grower/BirchTreeGrower net/minecraft/world/level/block/grower/BirchTreeGrower +CL: net/minecraft/world/level/block/grower/CherryTreeGrower net/minecraft/world/level/block/grower/CherryTreeGrower +CL: net/minecraft/world/level/block/grower/DarkOakTreeGrower net/minecraft/world/level/block/grower/DarkOakTreeGrower +CL: net/minecraft/world/level/block/grower/JungleTreeGrower net/minecraft/world/level/block/grower/JungleTreeGrower +CL: net/minecraft/world/level/block/grower/MangroveTreeGrower net/minecraft/world/level/block/grower/MangroveTreeGrower +CL: net/minecraft/world/level/block/grower/OakTreeGrower net/minecraft/world/level/block/grower/OakTreeGrower +CL: net/minecraft/world/level/block/grower/SpruceTreeGrower net/minecraft/world/level/block/grower/SpruceTreeGrower +CL: net/minecraft/world/level/block/grower/package-info net/minecraft/world/level/block/grower/package-info +CL: net/minecraft/world/level/block/package-info net/minecraft/world/level/block/package-info +CL: net/minecraft/world/level/block/piston/MovingPistonBlock net/minecraft/world/level/block/piston/MovingPistonBlock +CL: net/minecraft/world/level/block/piston/PistonBaseBlock net/minecraft/world/level/block/piston/PistonBaseBlock +CL: net/minecraft/world/level/block/piston/PistonBaseBlock$1 net/minecraft/world/level/block/piston/PistonBaseBlock$1 +CL: net/minecraft/world/level/block/piston/PistonHeadBlock net/minecraft/world/level/block/piston/PistonHeadBlock +CL: net/minecraft/world/level/block/piston/PistonHeadBlock$1 net/minecraft/world/level/block/piston/PistonHeadBlock$1 +CL: net/minecraft/world/level/block/piston/PistonMath net/minecraft/world/level/block/piston/PistonMath +CL: net/minecraft/world/level/block/piston/PistonMath$1 net/minecraft/world/level/block/piston/PistonMath$1 +CL: net/minecraft/world/level/block/piston/PistonMovingBlockEntity net/minecraft/world/level/block/piston/PistonMovingBlockEntity +CL: net/minecraft/world/level/block/piston/PistonMovingBlockEntity$1 net/minecraft/world/level/block/piston/PistonMovingBlockEntity$1 +CL: net/minecraft/world/level/block/piston/PistonStructureResolver net/minecraft/world/level/block/piston/PistonStructureResolver +CL: net/minecraft/world/level/block/piston/package-info net/minecraft/world/level/block/piston/package-info +CL: net/minecraft/world/level/block/state/BlockBehaviour net/minecraft/world/level/block/state/BlockBehaviour +CL: net/minecraft/world/level/block/state/BlockBehaviour$1 net/minecraft/world/level/block/state/BlockBehaviour$1 +CL: net/minecraft/world/level/block/state/BlockBehaviour$BlockStateBase net/minecraft/world/level/block/state/BlockBehaviour$BlockStateBase +CL: net/minecraft/world/level/block/state/BlockBehaviour$BlockStateBase$Cache net/minecraft/world/level/block/state/BlockBehaviour$BlockStateBase$Cache +CL: net/minecraft/world/level/block/state/BlockBehaviour$OffsetFunction net/minecraft/world/level/block/state/BlockBehaviour$OffsetFunction +CL: net/minecraft/world/level/block/state/BlockBehaviour$OffsetType net/minecraft/world/level/block/state/BlockBehaviour$OffsetType +CL: net/minecraft/world/level/block/state/BlockBehaviour$Properties net/minecraft/world/level/block/state/BlockBehaviour$Properties +CL: net/minecraft/world/level/block/state/BlockBehaviour$StateArgumentPredicate net/minecraft/world/level/block/state/BlockBehaviour$StateArgumentPredicate +CL: net/minecraft/world/level/block/state/BlockBehaviour$StatePredicate net/minecraft/world/level/block/state/BlockBehaviour$StatePredicate +CL: net/minecraft/world/level/block/state/BlockState net/minecraft/world/level/block/state/BlockState +CL: net/minecraft/world/level/block/state/StateDefinition net/minecraft/world/level/block/state/StateDefinition +CL: net/minecraft/world/level/block/state/StateDefinition$Builder net/minecraft/world/level/block/state/StateDefinition$Builder +CL: net/minecraft/world/level/block/state/StateDefinition$Factory net/minecraft/world/level/block/state/StateDefinition$Factory +CL: net/minecraft/world/level/block/state/StateHolder net/minecraft/world/level/block/state/StateHolder +CL: net/minecraft/world/level/block/state/StateHolder$1 net/minecraft/world/level/block/state/StateHolder$1 +CL: net/minecraft/world/level/block/state/package-info net/minecraft/world/level/block/state/package-info +CL: net/minecraft/world/level/block/state/pattern/BlockInWorld net/minecraft/world/level/block/state/pattern/BlockInWorld +CL: net/minecraft/world/level/block/state/pattern/BlockPattern net/minecraft/world/level/block/state/pattern/BlockPattern +CL: net/minecraft/world/level/block/state/pattern/BlockPattern$BlockCacheLoader net/minecraft/world/level/block/state/pattern/BlockPattern$BlockCacheLoader +CL: net/minecraft/world/level/block/state/pattern/BlockPattern$BlockPatternMatch net/minecraft/world/level/block/state/pattern/BlockPattern$BlockPatternMatch +CL: net/minecraft/world/level/block/state/pattern/BlockPatternBuilder net/minecraft/world/level/block/state/pattern/BlockPatternBuilder +CL: net/minecraft/world/level/block/state/pattern/package-info net/minecraft/world/level/block/state/pattern/package-info +CL: net/minecraft/world/level/block/state/predicate/BlockPredicate net/minecraft/world/level/block/state/predicate/BlockPredicate +CL: net/minecraft/world/level/block/state/predicate/BlockStatePredicate net/minecraft/world/level/block/state/predicate/BlockStatePredicate +CL: net/minecraft/world/level/block/state/predicate/package-info net/minecraft/world/level/block/state/predicate/package-info +CL: net/minecraft/world/level/block/state/properties/AttachFace net/minecraft/world/level/block/state/properties/AttachFace +CL: net/minecraft/world/level/block/state/properties/BambooLeaves net/minecraft/world/level/block/state/properties/BambooLeaves +CL: net/minecraft/world/level/block/state/properties/BedPart net/minecraft/world/level/block/state/properties/BedPart +CL: net/minecraft/world/level/block/state/properties/BellAttachType net/minecraft/world/level/block/state/properties/BellAttachType +CL: net/minecraft/world/level/block/state/properties/BlockSetType net/minecraft/world/level/block/state/properties/BlockSetType +CL: net/minecraft/world/level/block/state/properties/BlockStateProperties net/minecraft/world/level/block/state/properties/BlockStateProperties +CL: net/minecraft/world/level/block/state/properties/BooleanProperty net/minecraft/world/level/block/state/properties/BooleanProperty +CL: net/minecraft/world/level/block/state/properties/ChestType net/minecraft/world/level/block/state/properties/ChestType +CL: net/minecraft/world/level/block/state/properties/ChestType$1 net/minecraft/world/level/block/state/properties/ChestType$1 +CL: net/minecraft/world/level/block/state/properties/ComparatorMode net/minecraft/world/level/block/state/properties/ComparatorMode +CL: net/minecraft/world/level/block/state/properties/DirectionProperty net/minecraft/world/level/block/state/properties/DirectionProperty +CL: net/minecraft/world/level/block/state/properties/DoorHingeSide net/minecraft/world/level/block/state/properties/DoorHingeSide +CL: net/minecraft/world/level/block/state/properties/DoubleBlockHalf net/minecraft/world/level/block/state/properties/DoubleBlockHalf +CL: net/minecraft/world/level/block/state/properties/DripstoneThickness net/minecraft/world/level/block/state/properties/DripstoneThickness +CL: net/minecraft/world/level/block/state/properties/EnumProperty net/minecraft/world/level/block/state/properties/EnumProperty +CL: net/minecraft/world/level/block/state/properties/Half net/minecraft/world/level/block/state/properties/Half +CL: net/minecraft/world/level/block/state/properties/IntegerProperty net/minecraft/world/level/block/state/properties/IntegerProperty +CL: net/minecraft/world/level/block/state/properties/NoteBlockInstrument net/minecraft/world/level/block/state/properties/NoteBlockInstrument +CL: net/minecraft/world/level/block/state/properties/NoteBlockInstrument$Type net/minecraft/world/level/block/state/properties/NoteBlockInstrument$Type +CL: net/minecraft/world/level/block/state/properties/PistonType net/minecraft/world/level/block/state/properties/PistonType +CL: net/minecraft/world/level/block/state/properties/Property net/minecraft/world/level/block/state/properties/Property +CL: net/minecraft/world/level/block/state/properties/Property$Value net/minecraft/world/level/block/state/properties/Property$Value +CL: net/minecraft/world/level/block/state/properties/RailShape net/minecraft/world/level/block/state/properties/RailShape +CL: net/minecraft/world/level/block/state/properties/RedstoneSide net/minecraft/world/level/block/state/properties/RedstoneSide +CL: net/minecraft/world/level/block/state/properties/RotationSegment net/minecraft/world/level/block/state/properties/RotationSegment +CL: net/minecraft/world/level/block/state/properties/SculkSensorPhase net/minecraft/world/level/block/state/properties/SculkSensorPhase +CL: net/minecraft/world/level/block/state/properties/SlabType net/minecraft/world/level/block/state/properties/SlabType +CL: net/minecraft/world/level/block/state/properties/StairsShape net/minecraft/world/level/block/state/properties/StairsShape +CL: net/minecraft/world/level/block/state/properties/StructureMode net/minecraft/world/level/block/state/properties/StructureMode +CL: net/minecraft/world/level/block/state/properties/Tilt net/minecraft/world/level/block/state/properties/Tilt +CL: net/minecraft/world/level/block/state/properties/WallSide net/minecraft/world/level/block/state/properties/WallSide +CL: net/minecraft/world/level/block/state/properties/WoodType net/minecraft/world/level/block/state/properties/WoodType +CL: net/minecraft/world/level/block/state/properties/package-info net/minecraft/world/level/block/state/properties/package-info +CL: net/minecraft/world/level/border/BorderChangeListener net/minecraft/world/level/border/BorderChangeListener +CL: net/minecraft/world/level/border/BorderChangeListener$DelegateBorderChangeListener net/minecraft/world/level/border/BorderChangeListener$DelegateBorderChangeListener +CL: net/minecraft/world/level/border/BorderStatus net/minecraft/world/level/border/BorderStatus +CL: net/minecraft/world/level/border/WorldBorder net/minecraft/world/level/border/WorldBorder +CL: net/minecraft/world/level/border/WorldBorder$BorderExtent net/minecraft/world/level/border/WorldBorder$BorderExtent +CL: net/minecraft/world/level/border/WorldBorder$MovingBorderExtent net/minecraft/world/level/border/WorldBorder$MovingBorderExtent +CL: net/minecraft/world/level/border/WorldBorder$Settings net/minecraft/world/level/border/WorldBorder$Settings +CL: net/minecraft/world/level/border/WorldBorder$StaticBorderExtent net/minecraft/world/level/border/WorldBorder$StaticBorderExtent +CL: net/minecraft/world/level/border/package-info net/minecraft/world/level/border/package-info +CL: net/minecraft/world/level/chunk/BlockColumn net/minecraft/world/level/chunk/BlockColumn +CL: net/minecraft/world/level/chunk/BulkSectionAccess net/minecraft/world/level/chunk/BulkSectionAccess +CL: net/minecraft/world/level/chunk/CarvingMask net/minecraft/world/level/chunk/CarvingMask +CL: net/minecraft/world/level/chunk/CarvingMask$Mask net/minecraft/world/level/chunk/CarvingMask$Mask +CL: net/minecraft/world/level/chunk/ChunkAccess net/minecraft/world/level/chunk/ChunkAccess +CL: net/minecraft/world/level/chunk/ChunkAccess$TicksToSave net/minecraft/world/level/chunk/ChunkAccess$TicksToSave +CL: net/minecraft/world/level/chunk/ChunkGenerator net/minecraft/world/level/chunk/ChunkGenerator +CL: net/minecraft/world/level/chunk/ChunkGeneratorStructureState net/minecraft/world/level/chunk/ChunkGeneratorStructureState +CL: net/minecraft/world/level/chunk/ChunkGenerators net/minecraft/world/level/chunk/ChunkGenerators +CL: net/minecraft/world/level/chunk/ChunkSource net/minecraft/world/level/chunk/ChunkSource +CL: net/minecraft/world/level/chunk/ChunkStatus net/minecraft/world/level/chunk/ChunkStatus +CL: net/minecraft/world/level/chunk/ChunkStatus$ChunkType net/minecraft/world/level/chunk/ChunkStatus$ChunkType +CL: net/minecraft/world/level/chunk/ChunkStatus$GenerationTask net/minecraft/world/level/chunk/ChunkStatus$GenerationTask +CL: net/minecraft/world/level/chunk/ChunkStatus$LoadingTask net/minecraft/world/level/chunk/ChunkStatus$LoadingTask +CL: net/minecraft/world/level/chunk/ChunkStatus$SimpleGenerationTask net/minecraft/world/level/chunk/ChunkStatus$SimpleGenerationTask +CL: net/minecraft/world/level/chunk/DataLayer net/minecraft/world/level/chunk/DataLayer +CL: net/minecraft/world/level/chunk/EmptyLevelChunk net/minecraft/world/level/chunk/EmptyLevelChunk +CL: net/minecraft/world/level/chunk/GlobalPalette net/minecraft/world/level/chunk/GlobalPalette +CL: net/minecraft/world/level/chunk/HashMapPalette net/minecraft/world/level/chunk/HashMapPalette +CL: net/minecraft/world/level/chunk/ImposterProtoChunk net/minecraft/world/level/chunk/ImposterProtoChunk +CL: net/minecraft/world/level/chunk/LevelChunk net/minecraft/world/level/chunk/LevelChunk +CL: net/minecraft/world/level/chunk/LevelChunk$1 net/minecraft/world/level/chunk/LevelChunk$1 +CL: net/minecraft/world/level/chunk/LevelChunk$BoundTickingBlockEntity net/minecraft/world/level/chunk/LevelChunk$BoundTickingBlockEntity +CL: net/minecraft/world/level/chunk/LevelChunk$EntityCreationType net/minecraft/world/level/chunk/LevelChunk$EntityCreationType +CL: net/minecraft/world/level/chunk/LevelChunk$PostLoadProcessor net/minecraft/world/level/chunk/LevelChunk$PostLoadProcessor +CL: net/minecraft/world/level/chunk/LevelChunk$RebindableTickingBlockEntityWrapper net/minecraft/world/level/chunk/LevelChunk$RebindableTickingBlockEntityWrapper +CL: net/minecraft/world/level/chunk/LevelChunkSection net/minecraft/world/level/chunk/LevelChunkSection +CL: net/minecraft/world/level/chunk/LevelChunkSection$1BlockCounter net/minecraft/world/level/chunk/LevelChunkSection$1BlockCounter +CL: net/minecraft/world/level/chunk/LightChunk net/minecraft/world/level/chunk/LightChunk +CL: net/minecraft/world/level/chunk/LightChunkGetter net/minecraft/world/level/chunk/LightChunkGetter +CL: net/minecraft/world/level/chunk/LinearPalette net/minecraft/world/level/chunk/LinearPalette +CL: net/minecraft/world/level/chunk/MissingPaletteEntryException net/minecraft/world/level/chunk/MissingPaletteEntryException +CL: net/minecraft/world/level/chunk/Palette net/minecraft/world/level/chunk/Palette +CL: net/minecraft/world/level/chunk/Palette$Factory net/minecraft/world/level/chunk/Palette$Factory +CL: net/minecraft/world/level/chunk/PaletteResize net/minecraft/world/level/chunk/PaletteResize +CL: net/minecraft/world/level/chunk/PalettedContainer net/minecraft/world/level/chunk/PalettedContainer +CL: net/minecraft/world/level/chunk/PalettedContainer$Configuration net/minecraft/world/level/chunk/PalettedContainer$Configuration +CL: net/minecraft/world/level/chunk/PalettedContainer$CountConsumer net/minecraft/world/level/chunk/PalettedContainer$CountConsumer +CL: net/minecraft/world/level/chunk/PalettedContainer$Data net/minecraft/world/level/chunk/PalettedContainer$Data +CL: net/minecraft/world/level/chunk/PalettedContainer$Strategy net/minecraft/world/level/chunk/PalettedContainer$Strategy +CL: net/minecraft/world/level/chunk/PalettedContainer$Strategy$1 net/minecraft/world/level/chunk/PalettedContainer$Strategy$1 +CL: net/minecraft/world/level/chunk/PalettedContainer$Strategy$2 net/minecraft/world/level/chunk/PalettedContainer$Strategy$2 +CL: net/minecraft/world/level/chunk/PalettedContainerRO net/minecraft/world/level/chunk/PalettedContainerRO +CL: net/minecraft/world/level/chunk/PalettedContainerRO$PackedData net/minecraft/world/level/chunk/PalettedContainerRO$PackedData +CL: net/minecraft/world/level/chunk/PalettedContainerRO$Unpacker net/minecraft/world/level/chunk/PalettedContainerRO$Unpacker +CL: net/minecraft/world/level/chunk/ProtoChunk net/minecraft/world/level/chunk/ProtoChunk +CL: net/minecraft/world/level/chunk/SingleValuePalette net/minecraft/world/level/chunk/SingleValuePalette +CL: net/minecraft/world/level/chunk/StructureAccess net/minecraft/world/level/chunk/StructureAccess +CL: net/minecraft/world/level/chunk/UpgradeData net/minecraft/world/level/chunk/UpgradeData +CL: net/minecraft/world/level/chunk/UpgradeData$BlockFixer net/minecraft/world/level/chunk/UpgradeData$BlockFixer +CL: net/minecraft/world/level/chunk/UpgradeData$BlockFixers net/minecraft/world/level/chunk/UpgradeData$BlockFixers +CL: net/minecraft/world/level/chunk/UpgradeData$BlockFixers$1 net/minecraft/world/level/chunk/UpgradeData$BlockFixers$1 +CL: net/minecraft/world/level/chunk/UpgradeData$BlockFixers$2 net/minecraft/world/level/chunk/UpgradeData$BlockFixers$2 +CL: net/minecraft/world/level/chunk/UpgradeData$BlockFixers$3 net/minecraft/world/level/chunk/UpgradeData$BlockFixers$3 +CL: net/minecraft/world/level/chunk/UpgradeData$BlockFixers$4 net/minecraft/world/level/chunk/UpgradeData$BlockFixers$4 +CL: net/minecraft/world/level/chunk/UpgradeData$BlockFixers$5 net/minecraft/world/level/chunk/UpgradeData$BlockFixers$5 +CL: net/minecraft/world/level/chunk/package-info net/minecraft/world/level/chunk/package-info +CL: net/minecraft/world/level/chunk/storage/ChunkScanAccess net/minecraft/world/level/chunk/storage/ChunkScanAccess +CL: net/minecraft/world/level/chunk/storage/ChunkSerializer net/minecraft/world/level/chunk/storage/ChunkSerializer +CL: net/minecraft/world/level/chunk/storage/ChunkStorage net/minecraft/world/level/chunk/storage/ChunkStorage +CL: net/minecraft/world/level/chunk/storage/EntityStorage net/minecraft/world/level/chunk/storage/EntityStorage +CL: net/minecraft/world/level/chunk/storage/IOWorker net/minecraft/world/level/chunk/storage/IOWorker +CL: net/minecraft/world/level/chunk/storage/IOWorker$PendingStore net/minecraft/world/level/chunk/storage/IOWorker$PendingStore +CL: net/minecraft/world/level/chunk/storage/IOWorker$Priority net/minecraft/world/level/chunk/storage/IOWorker$Priority +CL: net/minecraft/world/level/chunk/storage/RegionBitmap net/minecraft/world/level/chunk/storage/RegionBitmap +CL: net/minecraft/world/level/chunk/storage/RegionFile net/minecraft/world/level/chunk/storage/RegionFile +CL: net/minecraft/world/level/chunk/storage/RegionFile$ChunkBuffer net/minecraft/world/level/chunk/storage/RegionFile$ChunkBuffer +CL: net/minecraft/world/level/chunk/storage/RegionFile$CommitOp net/minecraft/world/level/chunk/storage/RegionFile$CommitOp +CL: net/minecraft/world/level/chunk/storage/RegionFileStorage net/minecraft/world/level/chunk/storage/RegionFileStorage +CL: net/minecraft/world/level/chunk/storage/RegionFileVersion net/minecraft/world/level/chunk/storage/RegionFileVersion +CL: net/minecraft/world/level/chunk/storage/RegionFileVersion$StreamWrapper net/minecraft/world/level/chunk/storage/RegionFileVersion$StreamWrapper +CL: net/minecraft/world/level/chunk/storage/SectionStorage net/minecraft/world/level/chunk/storage/SectionStorage +CL: net/minecraft/world/level/chunk/storage/package-info net/minecraft/world/level/chunk/storage/package-info +CL: net/minecraft/world/level/dimension/BuiltinDimensionTypes net/minecraft/world/level/dimension/BuiltinDimensionTypes +CL: net/minecraft/world/level/dimension/DimensionDefaults net/minecraft/world/level/dimension/DimensionDefaults +CL: net/minecraft/world/level/dimension/DimensionType net/minecraft/world/level/dimension/DimensionType +CL: net/minecraft/world/level/dimension/DimensionType$MonsterSettings net/minecraft/world/level/dimension/DimensionType$MonsterSettings +CL: net/minecraft/world/level/dimension/LevelStem net/minecraft/world/level/dimension/LevelStem +CL: net/minecraft/world/level/dimension/end/DragonRespawnAnimation net/minecraft/world/level/dimension/end/DragonRespawnAnimation +CL: net/minecraft/world/level/dimension/end/DragonRespawnAnimation$1 net/minecraft/world/level/dimension/end/DragonRespawnAnimation$1 +CL: net/minecraft/world/level/dimension/end/DragonRespawnAnimation$2 net/minecraft/world/level/dimension/end/DragonRespawnAnimation$2 +CL: net/minecraft/world/level/dimension/end/DragonRespawnAnimation$3 net/minecraft/world/level/dimension/end/DragonRespawnAnimation$3 +CL: net/minecraft/world/level/dimension/end/DragonRespawnAnimation$4 net/minecraft/world/level/dimension/end/DragonRespawnAnimation$4 +CL: net/minecraft/world/level/dimension/end/DragonRespawnAnimation$5 net/minecraft/world/level/dimension/end/DragonRespawnAnimation$5 +CL: net/minecraft/world/level/dimension/end/EndDragonFight net/minecraft/world/level/dimension/end/EndDragonFight +CL: net/minecraft/world/level/dimension/end/EndDragonFight$Data net/minecraft/world/level/dimension/end/EndDragonFight$Data +CL: net/minecraft/world/level/dimension/end/package-info net/minecraft/world/level/dimension/end/package-info +CL: net/minecraft/world/level/dimension/package-info net/minecraft/world/level/dimension/package-info +CL: net/minecraft/world/level/entity/ChunkEntities net/minecraft/world/level/entity/ChunkEntities +CL: net/minecraft/world/level/entity/ChunkStatusUpdateListener net/minecraft/world/level/entity/ChunkStatusUpdateListener +CL: net/minecraft/world/level/entity/EntityAccess net/minecraft/world/level/entity/EntityAccess +CL: net/minecraft/world/level/entity/EntityInLevelCallback net/minecraft/world/level/entity/EntityInLevelCallback +CL: net/minecraft/world/level/entity/EntityInLevelCallback$1 net/minecraft/world/level/entity/EntityInLevelCallback$1 +CL: net/minecraft/world/level/entity/EntityLookup net/minecraft/world/level/entity/EntityLookup +CL: net/minecraft/world/level/entity/EntityPersistentStorage net/minecraft/world/level/entity/EntityPersistentStorage +CL: net/minecraft/world/level/entity/EntitySection net/minecraft/world/level/entity/EntitySection +CL: net/minecraft/world/level/entity/EntitySectionStorage net/minecraft/world/level/entity/EntitySectionStorage +CL: net/minecraft/world/level/entity/EntityTickList net/minecraft/world/level/entity/EntityTickList +CL: net/minecraft/world/level/entity/EntityTypeTest net/minecraft/world/level/entity/EntityTypeTest +CL: net/minecraft/world/level/entity/EntityTypeTest$1 net/minecraft/world/level/entity/EntityTypeTest$1 +CL: net/minecraft/world/level/entity/LevelCallback net/minecraft/world/level/entity/LevelCallback +CL: net/minecraft/world/level/entity/LevelEntityGetter net/minecraft/world/level/entity/LevelEntityGetter +CL: net/minecraft/world/level/entity/LevelEntityGetterAdapter net/minecraft/world/level/entity/LevelEntityGetterAdapter +CL: net/minecraft/world/level/entity/PersistentEntitySectionManager net/minecraft/world/level/entity/PersistentEntitySectionManager +CL: net/minecraft/world/level/entity/PersistentEntitySectionManager$Callback net/minecraft/world/level/entity/PersistentEntitySectionManager$Callback +CL: net/minecraft/world/level/entity/PersistentEntitySectionManager$ChunkLoadStatus net/minecraft/world/level/entity/PersistentEntitySectionManager$ChunkLoadStatus +CL: net/minecraft/world/level/entity/TransientEntitySectionManager net/minecraft/world/level/entity/TransientEntitySectionManager +CL: net/minecraft/world/level/entity/TransientEntitySectionManager$Callback net/minecraft/world/level/entity/TransientEntitySectionManager$Callback +CL: net/minecraft/world/level/entity/Visibility net/minecraft/world/level/entity/Visibility +CL: net/minecraft/world/level/entity/package-info net/minecraft/world/level/entity/package-info +CL: net/minecraft/world/level/gameevent/BlockPositionSource net/minecraft/world/level/gameevent/BlockPositionSource +CL: net/minecraft/world/level/gameevent/BlockPositionSource$Type net/minecraft/world/level/gameevent/BlockPositionSource$Type +CL: net/minecraft/world/level/gameevent/DynamicGameEventListener net/minecraft/world/level/gameevent/DynamicGameEventListener +CL: net/minecraft/world/level/gameevent/EntityPositionSource net/minecraft/world/level/gameevent/EntityPositionSource +CL: net/minecraft/world/level/gameevent/EntityPositionSource$Type net/minecraft/world/level/gameevent/EntityPositionSource$Type +CL: net/minecraft/world/level/gameevent/EuclideanGameEventListenerRegistry net/minecraft/world/level/gameevent/EuclideanGameEventListenerRegistry +CL: net/minecraft/world/level/gameevent/EuclideanGameEventListenerRegistry$OnEmptyAction net/minecraft/world/level/gameevent/EuclideanGameEventListenerRegistry$OnEmptyAction +CL: net/minecraft/world/level/gameevent/GameEvent net/minecraft/world/level/gameevent/GameEvent +CL: net/minecraft/world/level/gameevent/GameEvent$Context net/minecraft/world/level/gameevent/GameEvent$Context +CL: net/minecraft/world/level/gameevent/GameEvent$ListenerInfo net/minecraft/world/level/gameevent/GameEvent$ListenerInfo +CL: net/minecraft/world/level/gameevent/GameEventDispatcher net/minecraft/world/level/gameevent/GameEventDispatcher +CL: net/minecraft/world/level/gameevent/GameEventListener net/minecraft/world/level/gameevent/GameEventListener +CL: net/minecraft/world/level/gameevent/GameEventListener$DeliveryMode net/minecraft/world/level/gameevent/GameEventListener$DeliveryMode +CL: net/minecraft/world/level/gameevent/GameEventListener$Holder net/minecraft/world/level/gameevent/GameEventListener$Holder +CL: net/minecraft/world/level/gameevent/GameEventListenerRegistry net/minecraft/world/level/gameevent/GameEventListenerRegistry +CL: net/minecraft/world/level/gameevent/GameEventListenerRegistry$1 net/minecraft/world/level/gameevent/GameEventListenerRegistry$1 +CL: net/minecraft/world/level/gameevent/GameEventListenerRegistry$ListenerVisitor net/minecraft/world/level/gameevent/GameEventListenerRegistry$ListenerVisitor +CL: net/minecraft/world/level/gameevent/PositionSource net/minecraft/world/level/gameevent/PositionSource +CL: net/minecraft/world/level/gameevent/PositionSourceType net/minecraft/world/level/gameevent/PositionSourceType +CL: net/minecraft/world/level/gameevent/package-info net/minecraft/world/level/gameevent/package-info +CL: net/minecraft/world/level/gameevent/vibrations/VibrationInfo net/minecraft/world/level/gameevent/vibrations/VibrationInfo +CL: net/minecraft/world/level/gameevent/vibrations/VibrationSelector net/minecraft/world/level/gameevent/vibrations/VibrationSelector +CL: net/minecraft/world/level/gameevent/vibrations/VibrationSystem net/minecraft/world/level/gameevent/vibrations/VibrationSystem +CL: net/minecraft/world/level/gameevent/vibrations/VibrationSystem$Data net/minecraft/world/level/gameevent/vibrations/VibrationSystem$Data +CL: net/minecraft/world/level/gameevent/vibrations/VibrationSystem$Listener net/minecraft/world/level/gameevent/vibrations/VibrationSystem$Listener +CL: net/minecraft/world/level/gameevent/vibrations/VibrationSystem$Ticker net/minecraft/world/level/gameevent/vibrations/VibrationSystem$Ticker +CL: net/minecraft/world/level/gameevent/vibrations/VibrationSystem$User net/minecraft/world/level/gameevent/vibrations/VibrationSystem$User +CL: net/minecraft/world/level/gameevent/vibrations/package-info net/minecraft/world/level/gameevent/vibrations/package-info +CL: net/minecraft/world/level/levelgen/Aquifer net/minecraft/world/level/levelgen/Aquifer +CL: net/minecraft/world/level/levelgen/Aquifer$1 net/minecraft/world/level/levelgen/Aquifer$1 +CL: net/minecraft/world/level/levelgen/Aquifer$FluidPicker net/minecraft/world/level/levelgen/Aquifer$FluidPicker +CL: net/minecraft/world/level/levelgen/Aquifer$FluidStatus net/minecraft/world/level/levelgen/Aquifer$FluidStatus +CL: net/minecraft/world/level/levelgen/Aquifer$NoiseBasedAquifer net/minecraft/world/level/levelgen/Aquifer$NoiseBasedAquifer +CL: net/minecraft/world/level/levelgen/Beardifier net/minecraft/world/level/levelgen/Beardifier +CL: net/minecraft/world/level/levelgen/Beardifier$1 net/minecraft/world/level/levelgen/Beardifier$1 +CL: net/minecraft/world/level/levelgen/Beardifier$Rigid net/minecraft/world/level/levelgen/Beardifier$Rigid +CL: net/minecraft/world/level/levelgen/BelowZeroRetrogen net/minecraft/world/level/levelgen/BelowZeroRetrogen +CL: net/minecraft/world/level/levelgen/BelowZeroRetrogen$1 net/minecraft/world/level/levelgen/BelowZeroRetrogen$1 +CL: net/minecraft/world/level/levelgen/BitRandomSource net/minecraft/world/level/levelgen/BitRandomSource +CL: net/minecraft/world/level/levelgen/Column net/minecraft/world/level/levelgen/Column +CL: net/minecraft/world/level/levelgen/Column$Line net/minecraft/world/level/levelgen/Column$Line +CL: net/minecraft/world/level/levelgen/Column$Range net/minecraft/world/level/levelgen/Column$Range +CL: net/minecraft/world/level/levelgen/Column$Ray net/minecraft/world/level/levelgen/Column$Ray +CL: net/minecraft/world/level/levelgen/DebugLevelSource net/minecraft/world/level/levelgen/DebugLevelSource +CL: net/minecraft/world/level/levelgen/Density net/minecraft/world/level/levelgen/Density +CL: net/minecraft/world/level/levelgen/DensityFunction net/minecraft/world/level/levelgen/DensityFunction +CL: net/minecraft/world/level/levelgen/DensityFunction$ContextProvider net/minecraft/world/level/levelgen/DensityFunction$ContextProvider +CL: net/minecraft/world/level/levelgen/DensityFunction$FunctionContext net/minecraft/world/level/levelgen/DensityFunction$FunctionContext +CL: net/minecraft/world/level/levelgen/DensityFunction$NoiseHolder net/minecraft/world/level/levelgen/DensityFunction$NoiseHolder +CL: net/minecraft/world/level/levelgen/DensityFunction$SimpleFunction net/minecraft/world/level/levelgen/DensityFunction$SimpleFunction +CL: net/minecraft/world/level/levelgen/DensityFunction$SinglePointContext net/minecraft/world/level/levelgen/DensityFunction$SinglePointContext +CL: net/minecraft/world/level/levelgen/DensityFunction$Visitor net/minecraft/world/level/levelgen/DensityFunction$Visitor +CL: net/minecraft/world/level/levelgen/DensityFunctions net/minecraft/world/level/levelgen/DensityFunctions +CL: net/minecraft/world/level/levelgen/DensityFunctions$1 net/minecraft/world/level/levelgen/DensityFunctions$1 +CL: net/minecraft/world/level/levelgen/DensityFunctions$Ap2 net/minecraft/world/level/levelgen/DensityFunctions$Ap2 +CL: net/minecraft/world/level/levelgen/DensityFunctions$BeardifierMarker net/minecraft/world/level/levelgen/DensityFunctions$BeardifierMarker +CL: net/minecraft/world/level/levelgen/DensityFunctions$BeardifierOrMarker net/minecraft/world/level/levelgen/DensityFunctions$BeardifierOrMarker +CL: net/minecraft/world/level/levelgen/DensityFunctions$BlendAlpha net/minecraft/world/level/levelgen/DensityFunctions$BlendAlpha +CL: net/minecraft/world/level/levelgen/DensityFunctions$BlendDensity net/minecraft/world/level/levelgen/DensityFunctions$BlendDensity +CL: net/minecraft/world/level/levelgen/DensityFunctions$BlendOffset net/minecraft/world/level/levelgen/DensityFunctions$BlendOffset +CL: net/minecraft/world/level/levelgen/DensityFunctions$Clamp net/minecraft/world/level/levelgen/DensityFunctions$Clamp +CL: net/minecraft/world/level/levelgen/DensityFunctions$Constant net/minecraft/world/level/levelgen/DensityFunctions$Constant +CL: net/minecraft/world/level/levelgen/DensityFunctions$EndIslandDensityFunction net/minecraft/world/level/levelgen/DensityFunctions$EndIslandDensityFunction +CL: net/minecraft/world/level/levelgen/DensityFunctions$HolderHolder net/minecraft/world/level/levelgen/DensityFunctions$HolderHolder +CL: net/minecraft/world/level/levelgen/DensityFunctions$Mapped net/minecraft/world/level/levelgen/DensityFunctions$Mapped +CL: net/minecraft/world/level/levelgen/DensityFunctions$Mapped$Type net/minecraft/world/level/levelgen/DensityFunctions$Mapped$Type +CL: net/minecraft/world/level/levelgen/DensityFunctions$Marker net/minecraft/world/level/levelgen/DensityFunctions$Marker +CL: net/minecraft/world/level/levelgen/DensityFunctions$Marker$Type net/minecraft/world/level/levelgen/DensityFunctions$Marker$Type +CL: net/minecraft/world/level/levelgen/DensityFunctions$MarkerOrMarked net/minecraft/world/level/levelgen/DensityFunctions$MarkerOrMarked +CL: net/minecraft/world/level/levelgen/DensityFunctions$MulOrAdd net/minecraft/world/level/levelgen/DensityFunctions$MulOrAdd +CL: net/minecraft/world/level/levelgen/DensityFunctions$MulOrAdd$Type net/minecraft/world/level/levelgen/DensityFunctions$MulOrAdd$Type +CL: net/minecraft/world/level/levelgen/DensityFunctions$Noise net/minecraft/world/level/levelgen/DensityFunctions$Noise +CL: net/minecraft/world/level/levelgen/DensityFunctions$PureTransformer net/minecraft/world/level/levelgen/DensityFunctions$PureTransformer +CL: net/minecraft/world/level/levelgen/DensityFunctions$RangeChoice net/minecraft/world/level/levelgen/DensityFunctions$RangeChoice +CL: net/minecraft/world/level/levelgen/DensityFunctions$Shift net/minecraft/world/level/levelgen/DensityFunctions$Shift +CL: net/minecraft/world/level/levelgen/DensityFunctions$ShiftA net/minecraft/world/level/levelgen/DensityFunctions$ShiftA +CL: net/minecraft/world/level/levelgen/DensityFunctions$ShiftB net/minecraft/world/level/levelgen/DensityFunctions$ShiftB +CL: net/minecraft/world/level/levelgen/DensityFunctions$ShiftNoise net/minecraft/world/level/levelgen/DensityFunctions$ShiftNoise +CL: net/minecraft/world/level/levelgen/DensityFunctions$ShiftedNoise net/minecraft/world/level/levelgen/DensityFunctions$ShiftedNoise +CL: net/minecraft/world/level/levelgen/DensityFunctions$Spline net/minecraft/world/level/levelgen/DensityFunctions$Spline +CL: net/minecraft/world/level/levelgen/DensityFunctions$Spline$Coordinate net/minecraft/world/level/levelgen/DensityFunctions$Spline$Coordinate +CL: net/minecraft/world/level/levelgen/DensityFunctions$Spline$Point net/minecraft/world/level/levelgen/DensityFunctions$Spline$Point +CL: net/minecraft/world/level/levelgen/DensityFunctions$TransformerWithContext net/minecraft/world/level/levelgen/DensityFunctions$TransformerWithContext +CL: net/minecraft/world/level/levelgen/DensityFunctions$TwoArgumentSimpleFunction net/minecraft/world/level/levelgen/DensityFunctions$TwoArgumentSimpleFunction +CL: net/minecraft/world/level/levelgen/DensityFunctions$TwoArgumentSimpleFunction$Type net/minecraft/world/level/levelgen/DensityFunctions$TwoArgumentSimpleFunction$Type +CL: net/minecraft/world/level/levelgen/DensityFunctions$WeirdScaledSampler net/minecraft/world/level/levelgen/DensityFunctions$WeirdScaledSampler +CL: net/minecraft/world/level/levelgen/DensityFunctions$WeirdScaledSampler$RarityValueMapper net/minecraft/world/level/levelgen/DensityFunctions$WeirdScaledSampler$RarityValueMapper +CL: net/minecraft/world/level/levelgen/DensityFunctions$YClampedGradient net/minecraft/world/level/levelgen/DensityFunctions$YClampedGradient +CL: net/minecraft/world/level/levelgen/FlatLevelSource net/minecraft/world/level/levelgen/FlatLevelSource +CL: net/minecraft/world/level/levelgen/GenerationStep net/minecraft/world/level/levelgen/GenerationStep +CL: net/minecraft/world/level/levelgen/GenerationStep$Carving net/minecraft/world/level/levelgen/GenerationStep$Carving +CL: net/minecraft/world/level/levelgen/GenerationStep$Decoration net/minecraft/world/level/levelgen/GenerationStep$Decoration +CL: net/minecraft/world/level/levelgen/GeodeBlockSettings net/minecraft/world/level/levelgen/GeodeBlockSettings +CL: net/minecraft/world/level/levelgen/GeodeCrackSettings net/minecraft/world/level/levelgen/GeodeCrackSettings +CL: net/minecraft/world/level/levelgen/GeodeLayerSettings net/minecraft/world/level/levelgen/GeodeLayerSettings +CL: net/minecraft/world/level/levelgen/Heightmap net/minecraft/world/level/levelgen/Heightmap +CL: net/minecraft/world/level/levelgen/Heightmap$Types net/minecraft/world/level/levelgen/Heightmap$Types +CL: net/minecraft/world/level/levelgen/Heightmap$Usage net/minecraft/world/level/levelgen/Heightmap$Usage +CL: net/minecraft/world/level/levelgen/LegacyRandomSource net/minecraft/world/level/levelgen/LegacyRandomSource +CL: net/minecraft/world/level/levelgen/LegacyRandomSource$LegacyPositionalRandomFactory net/minecraft/world/level/levelgen/LegacyRandomSource$LegacyPositionalRandomFactory +CL: net/minecraft/world/level/levelgen/MarsagliaPolarGaussian net/minecraft/world/level/levelgen/MarsagliaPolarGaussian +CL: net/minecraft/world/level/levelgen/NoiseBasedChunkGenerator net/minecraft/world/level/levelgen/NoiseBasedChunkGenerator +CL: net/minecraft/world/level/levelgen/NoiseChunk net/minecraft/world/level/levelgen/NoiseChunk +CL: net/minecraft/world/level/levelgen/NoiseChunk$1 net/minecraft/world/level/levelgen/NoiseChunk$1 +CL: net/minecraft/world/level/levelgen/NoiseChunk$2 net/minecraft/world/level/levelgen/NoiseChunk$2 +CL: net/minecraft/world/level/levelgen/NoiseChunk$BlendAlpha net/minecraft/world/level/levelgen/NoiseChunk$BlendAlpha +CL: net/minecraft/world/level/levelgen/NoiseChunk$BlendOffset net/minecraft/world/level/levelgen/NoiseChunk$BlendOffset +CL: net/minecraft/world/level/levelgen/NoiseChunk$BlockStateFiller net/minecraft/world/level/levelgen/NoiseChunk$BlockStateFiller +CL: net/minecraft/world/level/levelgen/NoiseChunk$Cache2D net/minecraft/world/level/levelgen/NoiseChunk$Cache2D +CL: net/minecraft/world/level/levelgen/NoiseChunk$CacheAllInCell net/minecraft/world/level/levelgen/NoiseChunk$CacheAllInCell +CL: net/minecraft/world/level/levelgen/NoiseChunk$CacheOnce net/minecraft/world/level/levelgen/NoiseChunk$CacheOnce +CL: net/minecraft/world/level/levelgen/NoiseChunk$FlatCache net/minecraft/world/level/levelgen/NoiseChunk$FlatCache +CL: net/minecraft/world/level/levelgen/NoiseChunk$NoiseChunkDensityFunction net/minecraft/world/level/levelgen/NoiseChunk$NoiseChunkDensityFunction +CL: net/minecraft/world/level/levelgen/NoiseChunk$NoiseInterpolator net/minecraft/world/level/levelgen/NoiseChunk$NoiseInterpolator +CL: net/minecraft/world/level/levelgen/NoiseGeneratorSettings net/minecraft/world/level/levelgen/NoiseGeneratorSettings +CL: net/minecraft/world/level/levelgen/NoiseRouter net/minecraft/world/level/levelgen/NoiseRouter +CL: net/minecraft/world/level/levelgen/NoiseRouterData net/minecraft/world/level/levelgen/NoiseRouterData +CL: net/minecraft/world/level/levelgen/NoiseRouterData$QuantizedSpaghettiRarity net/minecraft/world/level/levelgen/NoiseRouterData$QuantizedSpaghettiRarity +CL: net/minecraft/world/level/levelgen/NoiseSettings net/minecraft/world/level/levelgen/NoiseSettings +CL: net/minecraft/world/level/levelgen/Noises net/minecraft/world/level/levelgen/Noises +CL: net/minecraft/world/level/levelgen/OreVeinifier net/minecraft/world/level/levelgen/OreVeinifier +CL: net/minecraft/world/level/levelgen/OreVeinifier$VeinType net/minecraft/world/level/levelgen/OreVeinifier$VeinType +CL: net/minecraft/world/level/levelgen/PatrolSpawner net/minecraft/world/level/levelgen/PatrolSpawner +CL: net/minecraft/world/level/levelgen/PhantomSpawner net/minecraft/world/level/levelgen/PhantomSpawner +CL: net/minecraft/world/level/levelgen/PositionalRandomFactory net/minecraft/world/level/levelgen/PositionalRandomFactory +CL: net/minecraft/world/level/levelgen/RandomState net/minecraft/world/level/levelgen/RandomState +CL: net/minecraft/world/level/levelgen/RandomState$1 net/minecraft/world/level/levelgen/RandomState$1 +CL: net/minecraft/world/level/levelgen/RandomState$1NoiseWiringHelper net/minecraft/world/level/levelgen/RandomState$1NoiseWiringHelper +CL: net/minecraft/world/level/levelgen/RandomSupport net/minecraft/world/level/levelgen/RandomSupport +CL: net/minecraft/world/level/levelgen/RandomSupport$Seed128bit net/minecraft/world/level/levelgen/RandomSupport$Seed128bit +CL: net/minecraft/world/level/levelgen/SingleThreadedRandomSource net/minecraft/world/level/levelgen/SingleThreadedRandomSource +CL: net/minecraft/world/level/levelgen/SurfaceRules net/minecraft/world/level/levelgen/SurfaceRules +CL: net/minecraft/world/level/levelgen/SurfaceRules$AbovePreliminarySurface net/minecraft/world/level/levelgen/SurfaceRules$AbovePreliminarySurface +CL: net/minecraft/world/level/levelgen/SurfaceRules$Bandlands net/minecraft/world/level/levelgen/SurfaceRules$Bandlands +CL: net/minecraft/world/level/levelgen/SurfaceRules$BiomeConditionSource net/minecraft/world/level/levelgen/SurfaceRules$BiomeConditionSource +CL: net/minecraft/world/level/levelgen/SurfaceRules$BiomeConditionSource$1BiomeCondition net/minecraft/world/level/levelgen/SurfaceRules$BiomeConditionSource$1BiomeCondition +CL: net/minecraft/world/level/levelgen/SurfaceRules$BlockRuleSource net/minecraft/world/level/levelgen/SurfaceRules$BlockRuleSource +CL: net/minecraft/world/level/levelgen/SurfaceRules$Condition net/minecraft/world/level/levelgen/SurfaceRules$Condition +CL: net/minecraft/world/level/levelgen/SurfaceRules$ConditionSource net/minecraft/world/level/levelgen/SurfaceRules$ConditionSource +CL: net/minecraft/world/level/levelgen/SurfaceRules$Context net/minecraft/world/level/levelgen/SurfaceRules$Context +CL: net/minecraft/world/level/levelgen/SurfaceRules$Context$AbovePreliminarySurfaceCondition net/minecraft/world/level/levelgen/SurfaceRules$Context$AbovePreliminarySurfaceCondition +CL: net/minecraft/world/level/levelgen/SurfaceRules$Context$HoleCondition net/minecraft/world/level/levelgen/SurfaceRules$Context$HoleCondition +CL: net/minecraft/world/level/levelgen/SurfaceRules$Context$SteepMaterialCondition net/minecraft/world/level/levelgen/SurfaceRules$Context$SteepMaterialCondition +CL: net/minecraft/world/level/levelgen/SurfaceRules$Context$TemperatureHelperCondition net/minecraft/world/level/levelgen/SurfaceRules$Context$TemperatureHelperCondition +CL: net/minecraft/world/level/levelgen/SurfaceRules$Hole net/minecraft/world/level/levelgen/SurfaceRules$Hole +CL: net/minecraft/world/level/levelgen/SurfaceRules$LazyCondition net/minecraft/world/level/levelgen/SurfaceRules$LazyCondition +CL: net/minecraft/world/level/levelgen/SurfaceRules$LazyXZCondition net/minecraft/world/level/levelgen/SurfaceRules$LazyXZCondition +CL: net/minecraft/world/level/levelgen/SurfaceRules$LazyYCondition net/minecraft/world/level/levelgen/SurfaceRules$LazyYCondition +CL: net/minecraft/world/level/levelgen/SurfaceRules$NoiseThresholdConditionSource net/minecraft/world/level/levelgen/SurfaceRules$NoiseThresholdConditionSource +CL: net/minecraft/world/level/levelgen/SurfaceRules$NoiseThresholdConditionSource$1NoiseThresholdCondition net/minecraft/world/level/levelgen/SurfaceRules$NoiseThresholdConditionSource$1NoiseThresholdCondition +CL: net/minecraft/world/level/levelgen/SurfaceRules$NotCondition net/minecraft/world/level/levelgen/SurfaceRules$NotCondition +CL: net/minecraft/world/level/levelgen/SurfaceRules$NotConditionSource net/minecraft/world/level/levelgen/SurfaceRules$NotConditionSource +CL: net/minecraft/world/level/levelgen/SurfaceRules$RuleSource net/minecraft/world/level/levelgen/SurfaceRules$RuleSource +CL: net/minecraft/world/level/levelgen/SurfaceRules$SequenceRule net/minecraft/world/level/levelgen/SurfaceRules$SequenceRule +CL: net/minecraft/world/level/levelgen/SurfaceRules$SequenceRuleSource net/minecraft/world/level/levelgen/SurfaceRules$SequenceRuleSource +CL: net/minecraft/world/level/levelgen/SurfaceRules$StateRule net/minecraft/world/level/levelgen/SurfaceRules$StateRule +CL: net/minecraft/world/level/levelgen/SurfaceRules$Steep net/minecraft/world/level/levelgen/SurfaceRules$Steep +CL: net/minecraft/world/level/levelgen/SurfaceRules$StoneDepthCheck net/minecraft/world/level/levelgen/SurfaceRules$StoneDepthCheck +CL: net/minecraft/world/level/levelgen/SurfaceRules$StoneDepthCheck$1StoneDepthCondition net/minecraft/world/level/levelgen/SurfaceRules$StoneDepthCheck$1StoneDepthCondition +CL: net/minecraft/world/level/levelgen/SurfaceRules$SurfaceRule net/minecraft/world/level/levelgen/SurfaceRules$SurfaceRule +CL: net/minecraft/world/level/levelgen/SurfaceRules$Temperature net/minecraft/world/level/levelgen/SurfaceRules$Temperature +CL: net/minecraft/world/level/levelgen/SurfaceRules$TestRule net/minecraft/world/level/levelgen/SurfaceRules$TestRule +CL: net/minecraft/world/level/levelgen/SurfaceRules$TestRuleSource net/minecraft/world/level/levelgen/SurfaceRules$TestRuleSource +CL: net/minecraft/world/level/levelgen/SurfaceRules$VerticalGradientConditionSource net/minecraft/world/level/levelgen/SurfaceRules$VerticalGradientConditionSource +CL: net/minecraft/world/level/levelgen/SurfaceRules$VerticalGradientConditionSource$1VerticalGradientCondition net/minecraft/world/level/levelgen/SurfaceRules$VerticalGradientConditionSource$1VerticalGradientCondition +CL: net/minecraft/world/level/levelgen/SurfaceRules$WaterConditionSource net/minecraft/world/level/levelgen/SurfaceRules$WaterConditionSource +CL: net/minecraft/world/level/levelgen/SurfaceRules$WaterConditionSource$1WaterCondition net/minecraft/world/level/levelgen/SurfaceRules$WaterConditionSource$1WaterCondition +CL: net/minecraft/world/level/levelgen/SurfaceRules$YConditionSource net/minecraft/world/level/levelgen/SurfaceRules$YConditionSource +CL: net/minecraft/world/level/levelgen/SurfaceRules$YConditionSource$1YCondition net/minecraft/world/level/levelgen/SurfaceRules$YConditionSource$1YCondition +CL: net/minecraft/world/level/levelgen/SurfaceSystem net/minecraft/world/level/levelgen/SurfaceSystem +CL: net/minecraft/world/level/levelgen/SurfaceSystem$1 net/minecraft/world/level/levelgen/SurfaceSystem$1 +CL: net/minecraft/world/level/levelgen/ThreadSafeLegacyRandomSource net/minecraft/world/level/levelgen/ThreadSafeLegacyRandomSource +CL: net/minecraft/world/level/levelgen/VerticalAnchor net/minecraft/world/level/levelgen/VerticalAnchor +CL: net/minecraft/world/level/levelgen/VerticalAnchor$AboveBottom net/minecraft/world/level/levelgen/VerticalAnchor$AboveBottom +CL: net/minecraft/world/level/levelgen/VerticalAnchor$Absolute net/minecraft/world/level/levelgen/VerticalAnchor$Absolute +CL: net/minecraft/world/level/levelgen/VerticalAnchor$BelowTop net/minecraft/world/level/levelgen/VerticalAnchor$BelowTop +CL: net/minecraft/world/level/levelgen/WorldDimensions net/minecraft/world/level/levelgen/WorldDimensions +CL: net/minecraft/world/level/levelgen/WorldDimensions$1Entry net/minecraft/world/level/levelgen/WorldDimensions$1Entry +CL: net/minecraft/world/level/levelgen/WorldDimensions$Complete net/minecraft/world/level/levelgen/WorldDimensions$Complete +CL: net/minecraft/world/level/levelgen/WorldGenSettings net/minecraft/world/level/levelgen/WorldGenSettings +CL: net/minecraft/world/level/levelgen/WorldGenerationContext net/minecraft/world/level/levelgen/WorldGenerationContext +CL: net/minecraft/world/level/levelgen/WorldOptions net/minecraft/world/level/levelgen/WorldOptions +CL: net/minecraft/world/level/levelgen/WorldgenRandom net/minecraft/world/level/levelgen/WorldgenRandom +CL: net/minecraft/world/level/levelgen/WorldgenRandom$Algorithm net/minecraft/world/level/levelgen/WorldgenRandom$Algorithm +CL: net/minecraft/world/level/levelgen/Xoroshiro128PlusPlus net/minecraft/world/level/levelgen/Xoroshiro128PlusPlus +CL: net/minecraft/world/level/levelgen/XoroshiroRandomSource net/minecraft/world/level/levelgen/XoroshiroRandomSource +CL: net/minecraft/world/level/levelgen/XoroshiroRandomSource$XoroshiroPositionalRandomFactory net/minecraft/world/level/levelgen/XoroshiroRandomSource$XoroshiroPositionalRandomFactory +CL: net/minecraft/world/level/levelgen/blending/Blender net/minecraft/world/level/levelgen/blending/Blender +CL: net/minecraft/world/level/levelgen/blending/Blender$1 net/minecraft/world/level/levelgen/blending/Blender$1 +CL: net/minecraft/world/level/levelgen/blending/Blender$BlendingOutput net/minecraft/world/level/levelgen/blending/Blender$BlendingOutput +CL: net/minecraft/world/level/levelgen/blending/Blender$CellValueGetter net/minecraft/world/level/levelgen/blending/Blender$CellValueGetter +CL: net/minecraft/world/level/levelgen/blending/Blender$DistanceGetter net/minecraft/world/level/levelgen/blending/Blender$DistanceGetter +CL: net/minecraft/world/level/levelgen/blending/BlendingData net/minecraft/world/level/levelgen/blending/BlendingData +CL: net/minecraft/world/level/levelgen/blending/BlendingData$BiomeConsumer net/minecraft/world/level/levelgen/blending/BlendingData$BiomeConsumer +CL: net/minecraft/world/level/levelgen/blending/BlendingData$DensityConsumer net/minecraft/world/level/levelgen/blending/BlendingData$DensityConsumer +CL: net/minecraft/world/level/levelgen/blending/BlendingData$HeightConsumer net/minecraft/world/level/levelgen/blending/BlendingData$HeightConsumer +CL: net/minecraft/world/level/levelgen/blending/package-info net/minecraft/world/level/levelgen/blending/package-info +CL: net/minecraft/world/level/levelgen/blockpredicates/AllOfPredicate net/minecraft/world/level/levelgen/blockpredicates/AllOfPredicate +CL: net/minecraft/world/level/levelgen/blockpredicates/AnyOfPredicate net/minecraft/world/level/levelgen/blockpredicates/AnyOfPredicate +CL: net/minecraft/world/level/levelgen/blockpredicates/BlockPredicate net/minecraft/world/level/levelgen/blockpredicates/BlockPredicate +CL: net/minecraft/world/level/levelgen/blockpredicates/BlockPredicateType net/minecraft/world/level/levelgen/blockpredicates/BlockPredicateType +CL: net/minecraft/world/level/levelgen/blockpredicates/CombiningPredicate net/minecraft/world/level/levelgen/blockpredicates/CombiningPredicate +CL: net/minecraft/world/level/levelgen/blockpredicates/HasSturdyFacePredicate net/minecraft/world/level/levelgen/blockpredicates/HasSturdyFacePredicate +CL: net/minecraft/world/level/levelgen/blockpredicates/InsideWorldBoundsPredicate net/minecraft/world/level/levelgen/blockpredicates/InsideWorldBoundsPredicate +CL: net/minecraft/world/level/levelgen/blockpredicates/MatchingBlockTagPredicate net/minecraft/world/level/levelgen/blockpredicates/MatchingBlockTagPredicate +CL: net/minecraft/world/level/levelgen/blockpredicates/MatchingBlocksPredicate net/minecraft/world/level/levelgen/blockpredicates/MatchingBlocksPredicate +CL: net/minecraft/world/level/levelgen/blockpredicates/MatchingFluidsPredicate net/minecraft/world/level/levelgen/blockpredicates/MatchingFluidsPredicate +CL: net/minecraft/world/level/levelgen/blockpredicates/NotPredicate net/minecraft/world/level/levelgen/blockpredicates/NotPredicate +CL: net/minecraft/world/level/levelgen/blockpredicates/ReplaceablePredicate net/minecraft/world/level/levelgen/blockpredicates/ReplaceablePredicate +CL: net/minecraft/world/level/levelgen/blockpredicates/SolidPredicate net/minecraft/world/level/levelgen/blockpredicates/SolidPredicate +CL: net/minecraft/world/level/levelgen/blockpredicates/StateTestingPredicate net/minecraft/world/level/levelgen/blockpredicates/StateTestingPredicate +CL: net/minecraft/world/level/levelgen/blockpredicates/TrueBlockPredicate net/minecraft/world/level/levelgen/blockpredicates/TrueBlockPredicate +CL: net/minecraft/world/level/levelgen/blockpredicates/WouldSurvivePredicate net/minecraft/world/level/levelgen/blockpredicates/WouldSurvivePredicate +CL: net/minecraft/world/level/levelgen/blockpredicates/package-info net/minecraft/world/level/levelgen/blockpredicates/package-info +CL: net/minecraft/world/level/levelgen/carver/CanyonCarverConfiguration net/minecraft/world/level/levelgen/carver/CanyonCarverConfiguration +CL: net/minecraft/world/level/levelgen/carver/CanyonCarverConfiguration$CanyonShapeConfiguration net/minecraft/world/level/levelgen/carver/CanyonCarverConfiguration$CanyonShapeConfiguration +CL: net/minecraft/world/level/levelgen/carver/CanyonWorldCarver net/minecraft/world/level/levelgen/carver/CanyonWorldCarver +CL: net/minecraft/world/level/levelgen/carver/CarverConfiguration net/minecraft/world/level/levelgen/carver/CarverConfiguration +CL: net/minecraft/world/level/levelgen/carver/CarverDebugSettings net/minecraft/world/level/levelgen/carver/CarverDebugSettings +CL: net/minecraft/world/level/levelgen/carver/CarvingContext net/minecraft/world/level/levelgen/carver/CarvingContext +CL: net/minecraft/world/level/levelgen/carver/CaveCarverConfiguration net/minecraft/world/level/levelgen/carver/CaveCarverConfiguration +CL: net/minecraft/world/level/levelgen/carver/CaveWorldCarver net/minecraft/world/level/levelgen/carver/CaveWorldCarver +CL: net/minecraft/world/level/levelgen/carver/ConfiguredWorldCarver net/minecraft/world/level/levelgen/carver/ConfiguredWorldCarver +CL: net/minecraft/world/level/levelgen/carver/NetherWorldCarver net/minecraft/world/level/levelgen/carver/NetherWorldCarver +CL: net/minecraft/world/level/levelgen/carver/WorldCarver net/minecraft/world/level/levelgen/carver/WorldCarver +CL: net/minecraft/world/level/levelgen/carver/WorldCarver$CarveSkipChecker net/minecraft/world/level/levelgen/carver/WorldCarver$CarveSkipChecker +CL: net/minecraft/world/level/levelgen/carver/package-info net/minecraft/world/level/levelgen/carver/package-info +CL: net/minecraft/world/level/levelgen/feature/AbstractHugeMushroomFeature net/minecraft/world/level/levelgen/feature/AbstractHugeMushroomFeature +CL: net/minecraft/world/level/levelgen/feature/BambooFeature net/minecraft/world/level/levelgen/feature/BambooFeature +CL: net/minecraft/world/level/levelgen/feature/BasaltColumnsFeature net/minecraft/world/level/levelgen/feature/BasaltColumnsFeature +CL: net/minecraft/world/level/levelgen/feature/BasaltPillarFeature net/minecraft/world/level/levelgen/feature/BasaltPillarFeature +CL: net/minecraft/world/level/levelgen/feature/BlockBlobFeature net/minecraft/world/level/levelgen/feature/BlockBlobFeature +CL: net/minecraft/world/level/levelgen/feature/BlockColumnFeature net/minecraft/world/level/levelgen/feature/BlockColumnFeature +CL: net/minecraft/world/level/levelgen/feature/BlockPileFeature net/minecraft/world/level/levelgen/feature/BlockPileFeature +CL: net/minecraft/world/level/levelgen/feature/BlueIceFeature net/minecraft/world/level/levelgen/feature/BlueIceFeature +CL: net/minecraft/world/level/levelgen/feature/BonusChestFeature net/minecraft/world/level/levelgen/feature/BonusChestFeature +CL: net/minecraft/world/level/levelgen/feature/ChorusPlantFeature net/minecraft/world/level/levelgen/feature/ChorusPlantFeature +CL: net/minecraft/world/level/levelgen/feature/ConfiguredFeature net/minecraft/world/level/levelgen/feature/ConfiguredFeature +CL: net/minecraft/world/level/levelgen/feature/CoralClawFeature net/minecraft/world/level/levelgen/feature/CoralClawFeature +CL: net/minecraft/world/level/levelgen/feature/CoralFeature net/minecraft/world/level/levelgen/feature/CoralFeature +CL: net/minecraft/world/level/levelgen/feature/CoralMushroomFeature net/minecraft/world/level/levelgen/feature/CoralMushroomFeature +CL: net/minecraft/world/level/levelgen/feature/CoralTreeFeature net/minecraft/world/level/levelgen/feature/CoralTreeFeature +CL: net/minecraft/world/level/levelgen/feature/DeltaFeature net/minecraft/world/level/levelgen/feature/DeltaFeature +CL: net/minecraft/world/level/levelgen/feature/DesertWellFeature net/minecraft/world/level/levelgen/feature/DesertWellFeature +CL: net/minecraft/world/level/levelgen/feature/DiskFeature net/minecraft/world/level/levelgen/feature/DiskFeature +CL: net/minecraft/world/level/levelgen/feature/DripstoneClusterFeature net/minecraft/world/level/levelgen/feature/DripstoneClusterFeature +CL: net/minecraft/world/level/levelgen/feature/DripstoneUtils net/minecraft/world/level/levelgen/feature/DripstoneUtils +CL: net/minecraft/world/level/levelgen/feature/EndGatewayFeature net/minecraft/world/level/levelgen/feature/EndGatewayFeature +CL: net/minecraft/world/level/levelgen/feature/EndIslandFeature net/minecraft/world/level/levelgen/feature/EndIslandFeature +CL: net/minecraft/world/level/levelgen/feature/EndPodiumFeature net/minecraft/world/level/levelgen/feature/EndPodiumFeature +CL: net/minecraft/world/level/levelgen/feature/Feature net/minecraft/world/level/levelgen/feature/Feature +CL: net/minecraft/world/level/levelgen/feature/FeatureCountTracker net/minecraft/world/level/levelgen/feature/FeatureCountTracker +CL: net/minecraft/world/level/levelgen/feature/FeatureCountTracker$1 net/minecraft/world/level/levelgen/feature/FeatureCountTracker$1 +CL: net/minecraft/world/level/levelgen/feature/FeatureCountTracker$FeatureData net/minecraft/world/level/levelgen/feature/FeatureCountTracker$FeatureData +CL: net/minecraft/world/level/levelgen/feature/FeatureCountTracker$LevelData net/minecraft/world/level/levelgen/feature/FeatureCountTracker$LevelData +CL: net/minecraft/world/level/levelgen/feature/FeaturePlaceContext net/minecraft/world/level/levelgen/feature/FeaturePlaceContext +CL: net/minecraft/world/level/levelgen/feature/FillLayerFeature net/minecraft/world/level/levelgen/feature/FillLayerFeature +CL: net/minecraft/world/level/levelgen/feature/FossilFeature net/minecraft/world/level/levelgen/feature/FossilFeature +CL: net/minecraft/world/level/levelgen/feature/FossilFeatureConfiguration net/minecraft/world/level/levelgen/feature/FossilFeatureConfiguration +CL: net/minecraft/world/level/levelgen/feature/GeodeFeature net/minecraft/world/level/levelgen/feature/GeodeFeature +CL: net/minecraft/world/level/levelgen/feature/GlowstoneFeature net/minecraft/world/level/levelgen/feature/GlowstoneFeature +CL: net/minecraft/world/level/levelgen/feature/HugeBrownMushroomFeature net/minecraft/world/level/levelgen/feature/HugeBrownMushroomFeature +CL: net/minecraft/world/level/levelgen/feature/HugeFungusConfiguration net/minecraft/world/level/levelgen/feature/HugeFungusConfiguration +CL: net/minecraft/world/level/levelgen/feature/HugeFungusFeature net/minecraft/world/level/levelgen/feature/HugeFungusFeature +CL: net/minecraft/world/level/levelgen/feature/HugeRedMushroomFeature net/minecraft/world/level/levelgen/feature/HugeRedMushroomFeature +CL: net/minecraft/world/level/levelgen/feature/IceSpikeFeature net/minecraft/world/level/levelgen/feature/IceSpikeFeature +CL: net/minecraft/world/level/levelgen/feature/IcebergFeature net/minecraft/world/level/levelgen/feature/IcebergFeature +CL: net/minecraft/world/level/levelgen/feature/KelpFeature net/minecraft/world/level/levelgen/feature/KelpFeature +CL: net/minecraft/world/level/levelgen/feature/LakeFeature net/minecraft/world/level/levelgen/feature/LakeFeature +CL: net/minecraft/world/level/levelgen/feature/LakeFeature$Configuration net/minecraft/world/level/levelgen/feature/LakeFeature$Configuration +CL: net/minecraft/world/level/levelgen/feature/LargeDripstoneFeature net/minecraft/world/level/levelgen/feature/LargeDripstoneFeature +CL: net/minecraft/world/level/levelgen/feature/LargeDripstoneFeature$LargeDripstone net/minecraft/world/level/levelgen/feature/LargeDripstoneFeature$LargeDripstone +CL: net/minecraft/world/level/levelgen/feature/LargeDripstoneFeature$WindOffsetter net/minecraft/world/level/levelgen/feature/LargeDripstoneFeature$WindOffsetter +CL: net/minecraft/world/level/levelgen/feature/MonsterRoomFeature net/minecraft/world/level/levelgen/feature/MonsterRoomFeature +CL: net/minecraft/world/level/levelgen/feature/MultifaceGrowthFeature net/minecraft/world/level/levelgen/feature/MultifaceGrowthFeature +CL: net/minecraft/world/level/levelgen/feature/NetherForestVegetationFeature net/minecraft/world/level/levelgen/feature/NetherForestVegetationFeature +CL: net/minecraft/world/level/levelgen/feature/NoOpFeature net/minecraft/world/level/levelgen/feature/NoOpFeature +CL: net/minecraft/world/level/levelgen/feature/OreFeature net/minecraft/world/level/levelgen/feature/OreFeature +CL: net/minecraft/world/level/levelgen/feature/PointedDripstoneFeature net/minecraft/world/level/levelgen/feature/PointedDripstoneFeature +CL: net/minecraft/world/level/levelgen/feature/RandomBooleanSelectorFeature net/minecraft/world/level/levelgen/feature/RandomBooleanSelectorFeature +CL: net/minecraft/world/level/levelgen/feature/RandomPatchFeature net/minecraft/world/level/levelgen/feature/RandomPatchFeature +CL: net/minecraft/world/level/levelgen/feature/RandomSelectorFeature net/minecraft/world/level/levelgen/feature/RandomSelectorFeature +CL: net/minecraft/world/level/levelgen/feature/ReplaceBlobsFeature net/minecraft/world/level/levelgen/feature/ReplaceBlobsFeature +CL: net/minecraft/world/level/levelgen/feature/ReplaceBlockFeature net/minecraft/world/level/levelgen/feature/ReplaceBlockFeature +CL: net/minecraft/world/level/levelgen/feature/RootSystemFeature net/minecraft/world/level/levelgen/feature/RootSystemFeature +CL: net/minecraft/world/level/levelgen/feature/ScatteredOreFeature net/minecraft/world/level/levelgen/feature/ScatteredOreFeature +CL: net/minecraft/world/level/levelgen/feature/SculkPatchFeature net/minecraft/world/level/levelgen/feature/SculkPatchFeature +CL: net/minecraft/world/level/levelgen/feature/SeaPickleFeature net/minecraft/world/level/levelgen/feature/SeaPickleFeature +CL: net/minecraft/world/level/levelgen/feature/SeagrassFeature net/minecraft/world/level/levelgen/feature/SeagrassFeature +CL: net/minecraft/world/level/levelgen/feature/SimpleBlockFeature net/minecraft/world/level/levelgen/feature/SimpleBlockFeature +CL: net/minecraft/world/level/levelgen/feature/SimpleRandomSelectorFeature net/minecraft/world/level/levelgen/feature/SimpleRandomSelectorFeature +CL: net/minecraft/world/level/levelgen/feature/SnowAndFreezeFeature net/minecraft/world/level/levelgen/feature/SnowAndFreezeFeature +CL: net/minecraft/world/level/levelgen/feature/SpikeFeature net/minecraft/world/level/levelgen/feature/SpikeFeature +CL: net/minecraft/world/level/levelgen/feature/SpikeFeature$EndSpike net/minecraft/world/level/levelgen/feature/SpikeFeature$EndSpike +CL: net/minecraft/world/level/levelgen/feature/SpikeFeature$SpikeCacheLoader net/minecraft/world/level/levelgen/feature/SpikeFeature$SpikeCacheLoader +CL: net/minecraft/world/level/levelgen/feature/SpringFeature net/minecraft/world/level/levelgen/feature/SpringFeature +CL: net/minecraft/world/level/levelgen/feature/TreeFeature net/minecraft/world/level/levelgen/feature/TreeFeature +CL: net/minecraft/world/level/levelgen/feature/TreeFeature$1 net/minecraft/world/level/levelgen/feature/TreeFeature$1 +CL: net/minecraft/world/level/levelgen/feature/TwistingVinesFeature net/minecraft/world/level/levelgen/feature/TwistingVinesFeature +CL: net/minecraft/world/level/levelgen/feature/UnderwaterMagmaFeature net/minecraft/world/level/levelgen/feature/UnderwaterMagmaFeature +CL: net/minecraft/world/level/levelgen/feature/VegetationPatchFeature net/minecraft/world/level/levelgen/feature/VegetationPatchFeature +CL: net/minecraft/world/level/levelgen/feature/VinesFeature net/minecraft/world/level/levelgen/feature/VinesFeature +CL: net/minecraft/world/level/levelgen/feature/VoidStartPlatformFeature net/minecraft/world/level/levelgen/feature/VoidStartPlatformFeature +CL: net/minecraft/world/level/levelgen/feature/WaterloggedVegetationPatchFeature net/minecraft/world/level/levelgen/feature/WaterloggedVegetationPatchFeature +CL: net/minecraft/world/level/levelgen/feature/WeepingVinesFeature net/minecraft/world/level/levelgen/feature/WeepingVinesFeature +CL: net/minecraft/world/level/levelgen/feature/WeightedPlacedFeature net/minecraft/world/level/levelgen/feature/WeightedPlacedFeature +CL: net/minecraft/world/level/levelgen/feature/configurations/BlockColumnConfiguration net/minecraft/world/level/levelgen/feature/configurations/BlockColumnConfiguration +CL: net/minecraft/world/level/levelgen/feature/configurations/BlockColumnConfiguration$Layer net/minecraft/world/level/levelgen/feature/configurations/BlockColumnConfiguration$Layer +CL: net/minecraft/world/level/levelgen/feature/configurations/BlockPileConfiguration net/minecraft/world/level/levelgen/feature/configurations/BlockPileConfiguration +CL: net/minecraft/world/level/levelgen/feature/configurations/BlockStateConfiguration net/minecraft/world/level/levelgen/feature/configurations/BlockStateConfiguration +CL: net/minecraft/world/level/levelgen/feature/configurations/ColumnFeatureConfiguration net/minecraft/world/level/levelgen/feature/configurations/ColumnFeatureConfiguration +CL: net/minecraft/world/level/levelgen/feature/configurations/CountConfiguration net/minecraft/world/level/levelgen/feature/configurations/CountConfiguration +CL: net/minecraft/world/level/levelgen/feature/configurations/DeltaFeatureConfiguration net/minecraft/world/level/levelgen/feature/configurations/DeltaFeatureConfiguration +CL: net/minecraft/world/level/levelgen/feature/configurations/DiskConfiguration net/minecraft/world/level/levelgen/feature/configurations/DiskConfiguration +CL: net/minecraft/world/level/levelgen/feature/configurations/DripstoneClusterConfiguration net/minecraft/world/level/levelgen/feature/configurations/DripstoneClusterConfiguration +CL: net/minecraft/world/level/levelgen/feature/configurations/EndGatewayConfiguration net/minecraft/world/level/levelgen/feature/configurations/EndGatewayConfiguration +CL: net/minecraft/world/level/levelgen/feature/configurations/FeatureConfiguration net/minecraft/world/level/levelgen/feature/configurations/FeatureConfiguration +CL: net/minecraft/world/level/levelgen/feature/configurations/GeodeConfiguration net/minecraft/world/level/levelgen/feature/configurations/GeodeConfiguration +CL: net/minecraft/world/level/levelgen/feature/configurations/HugeMushroomFeatureConfiguration net/minecraft/world/level/levelgen/feature/configurations/HugeMushroomFeatureConfiguration +CL: net/minecraft/world/level/levelgen/feature/configurations/LargeDripstoneConfiguration net/minecraft/world/level/levelgen/feature/configurations/LargeDripstoneConfiguration +CL: net/minecraft/world/level/levelgen/feature/configurations/LayerConfiguration net/minecraft/world/level/levelgen/feature/configurations/LayerConfiguration +CL: net/minecraft/world/level/levelgen/feature/configurations/MultifaceGrowthConfiguration net/minecraft/world/level/levelgen/feature/configurations/MultifaceGrowthConfiguration +CL: net/minecraft/world/level/levelgen/feature/configurations/NetherForestVegetationConfig net/minecraft/world/level/levelgen/feature/configurations/NetherForestVegetationConfig +CL: net/minecraft/world/level/levelgen/feature/configurations/NoneFeatureConfiguration net/minecraft/world/level/levelgen/feature/configurations/NoneFeatureConfiguration +CL: net/minecraft/world/level/levelgen/feature/configurations/OreConfiguration net/minecraft/world/level/levelgen/feature/configurations/OreConfiguration +CL: net/minecraft/world/level/levelgen/feature/configurations/OreConfiguration$TargetBlockState net/minecraft/world/level/levelgen/feature/configurations/OreConfiguration$TargetBlockState +CL: net/minecraft/world/level/levelgen/feature/configurations/PointedDripstoneConfiguration net/minecraft/world/level/levelgen/feature/configurations/PointedDripstoneConfiguration +CL: net/minecraft/world/level/levelgen/feature/configurations/ProbabilityFeatureConfiguration net/minecraft/world/level/levelgen/feature/configurations/ProbabilityFeatureConfiguration +CL: net/minecraft/world/level/levelgen/feature/configurations/RandomBooleanFeatureConfiguration net/minecraft/world/level/levelgen/feature/configurations/RandomBooleanFeatureConfiguration +CL: net/minecraft/world/level/levelgen/feature/configurations/RandomFeatureConfiguration net/minecraft/world/level/levelgen/feature/configurations/RandomFeatureConfiguration +CL: net/minecraft/world/level/levelgen/feature/configurations/RandomPatchConfiguration net/minecraft/world/level/levelgen/feature/configurations/RandomPatchConfiguration +CL: net/minecraft/world/level/levelgen/feature/configurations/ReplaceBlockConfiguration net/minecraft/world/level/levelgen/feature/configurations/ReplaceBlockConfiguration +CL: net/minecraft/world/level/levelgen/feature/configurations/ReplaceSphereConfiguration net/minecraft/world/level/levelgen/feature/configurations/ReplaceSphereConfiguration +CL: net/minecraft/world/level/levelgen/feature/configurations/RootSystemConfiguration net/minecraft/world/level/levelgen/feature/configurations/RootSystemConfiguration +CL: net/minecraft/world/level/levelgen/feature/configurations/SculkPatchConfiguration net/minecraft/world/level/levelgen/feature/configurations/SculkPatchConfiguration +CL: net/minecraft/world/level/levelgen/feature/configurations/SimpleBlockConfiguration net/minecraft/world/level/levelgen/feature/configurations/SimpleBlockConfiguration +CL: net/minecraft/world/level/levelgen/feature/configurations/SimpleRandomFeatureConfiguration net/minecraft/world/level/levelgen/feature/configurations/SimpleRandomFeatureConfiguration +CL: net/minecraft/world/level/levelgen/feature/configurations/SpikeConfiguration net/minecraft/world/level/levelgen/feature/configurations/SpikeConfiguration +CL: net/minecraft/world/level/levelgen/feature/configurations/SpringConfiguration net/minecraft/world/level/levelgen/feature/configurations/SpringConfiguration +CL: net/minecraft/world/level/levelgen/feature/configurations/TreeConfiguration net/minecraft/world/level/levelgen/feature/configurations/TreeConfiguration +CL: net/minecraft/world/level/levelgen/feature/configurations/TreeConfiguration$TreeConfigurationBuilder net/minecraft/world/level/levelgen/feature/configurations/TreeConfiguration$TreeConfigurationBuilder +CL: net/minecraft/world/level/levelgen/feature/configurations/TwistingVinesConfig net/minecraft/world/level/levelgen/feature/configurations/TwistingVinesConfig +CL: net/minecraft/world/level/levelgen/feature/configurations/UnderwaterMagmaConfiguration net/minecraft/world/level/levelgen/feature/configurations/UnderwaterMagmaConfiguration +CL: net/minecraft/world/level/levelgen/feature/configurations/VegetationPatchConfiguration net/minecraft/world/level/levelgen/feature/configurations/VegetationPatchConfiguration +CL: net/minecraft/world/level/levelgen/feature/configurations/package-info net/minecraft/world/level/levelgen/feature/configurations/package-info +CL: net/minecraft/world/level/levelgen/feature/featuresize/FeatureSize net/minecraft/world/level/levelgen/feature/featuresize/FeatureSize +CL: net/minecraft/world/level/levelgen/feature/featuresize/FeatureSizeType net/minecraft/world/level/levelgen/feature/featuresize/FeatureSizeType +CL: net/minecraft/world/level/levelgen/feature/featuresize/ThreeLayersFeatureSize net/minecraft/world/level/levelgen/feature/featuresize/ThreeLayersFeatureSize +CL: net/minecraft/world/level/levelgen/feature/featuresize/TwoLayersFeatureSize net/minecraft/world/level/levelgen/feature/featuresize/TwoLayersFeatureSize +CL: net/minecraft/world/level/levelgen/feature/featuresize/package-info net/minecraft/world/level/levelgen/feature/featuresize/package-info +CL: net/minecraft/world/level/levelgen/feature/foliageplacers/AcaciaFoliagePlacer net/minecraft/world/level/levelgen/feature/foliageplacers/AcaciaFoliagePlacer +CL: net/minecraft/world/level/levelgen/feature/foliageplacers/BlobFoliagePlacer net/minecraft/world/level/levelgen/feature/foliageplacers/BlobFoliagePlacer +CL: net/minecraft/world/level/levelgen/feature/foliageplacers/BushFoliagePlacer net/minecraft/world/level/levelgen/feature/foliageplacers/BushFoliagePlacer +CL: net/minecraft/world/level/levelgen/feature/foliageplacers/CherryFoliagePlacer net/minecraft/world/level/levelgen/feature/foliageplacers/CherryFoliagePlacer +CL: net/minecraft/world/level/levelgen/feature/foliageplacers/DarkOakFoliagePlacer net/minecraft/world/level/levelgen/feature/foliageplacers/DarkOakFoliagePlacer +CL: net/minecraft/world/level/levelgen/feature/foliageplacers/FancyFoliagePlacer net/minecraft/world/level/levelgen/feature/foliageplacers/FancyFoliagePlacer +CL: net/minecraft/world/level/levelgen/feature/foliageplacers/FoliagePlacer net/minecraft/world/level/levelgen/feature/foliageplacers/FoliagePlacer +CL: net/minecraft/world/level/levelgen/feature/foliageplacers/FoliagePlacer$FoliageAttachment net/minecraft/world/level/levelgen/feature/foliageplacers/FoliagePlacer$FoliageAttachment +CL: net/minecraft/world/level/levelgen/feature/foliageplacers/FoliagePlacer$FoliageSetter net/minecraft/world/level/levelgen/feature/foliageplacers/FoliagePlacer$FoliageSetter +CL: net/minecraft/world/level/levelgen/feature/foliageplacers/FoliagePlacerType net/minecraft/world/level/levelgen/feature/foliageplacers/FoliagePlacerType +CL: net/minecraft/world/level/levelgen/feature/foliageplacers/MegaJungleFoliagePlacer net/minecraft/world/level/levelgen/feature/foliageplacers/MegaJungleFoliagePlacer +CL: net/minecraft/world/level/levelgen/feature/foliageplacers/MegaPineFoliagePlacer net/minecraft/world/level/levelgen/feature/foliageplacers/MegaPineFoliagePlacer +CL: net/minecraft/world/level/levelgen/feature/foliageplacers/PineFoliagePlacer net/minecraft/world/level/levelgen/feature/foliageplacers/PineFoliagePlacer +CL: net/minecraft/world/level/levelgen/feature/foliageplacers/RandomSpreadFoliagePlacer net/minecraft/world/level/levelgen/feature/foliageplacers/RandomSpreadFoliagePlacer +CL: net/minecraft/world/level/levelgen/feature/foliageplacers/SpruceFoliagePlacer net/minecraft/world/level/levelgen/feature/foliageplacers/SpruceFoliagePlacer +CL: net/minecraft/world/level/levelgen/feature/foliageplacers/package-info net/minecraft/world/level/levelgen/feature/foliageplacers/package-info +CL: net/minecraft/world/level/levelgen/feature/package-info net/minecraft/world/level/levelgen/feature/package-info +CL: net/minecraft/world/level/levelgen/feature/rootplacers/AboveRootPlacement net/minecraft/world/level/levelgen/feature/rootplacers/AboveRootPlacement +CL: net/minecraft/world/level/levelgen/feature/rootplacers/MangroveRootPlacement net/minecraft/world/level/levelgen/feature/rootplacers/MangroveRootPlacement +CL: net/minecraft/world/level/levelgen/feature/rootplacers/MangroveRootPlacer net/minecraft/world/level/levelgen/feature/rootplacers/MangroveRootPlacer +CL: net/minecraft/world/level/levelgen/feature/rootplacers/RootPlacer net/minecraft/world/level/levelgen/feature/rootplacers/RootPlacer +CL: net/minecraft/world/level/levelgen/feature/rootplacers/RootPlacerType net/minecraft/world/level/levelgen/feature/rootplacers/RootPlacerType +CL: net/minecraft/world/level/levelgen/feature/rootplacers/package-info net/minecraft/world/level/levelgen/feature/rootplacers/package-info +CL: net/minecraft/world/level/levelgen/feature/stateproviders/BlockStateProvider net/minecraft/world/level/levelgen/feature/stateproviders/BlockStateProvider +CL: net/minecraft/world/level/levelgen/feature/stateproviders/BlockStateProviderType net/minecraft/world/level/levelgen/feature/stateproviders/BlockStateProviderType +CL: net/minecraft/world/level/levelgen/feature/stateproviders/DualNoiseProvider net/minecraft/world/level/levelgen/feature/stateproviders/DualNoiseProvider +CL: net/minecraft/world/level/levelgen/feature/stateproviders/NoiseBasedStateProvider net/minecraft/world/level/levelgen/feature/stateproviders/NoiseBasedStateProvider +CL: net/minecraft/world/level/levelgen/feature/stateproviders/NoiseProvider net/minecraft/world/level/levelgen/feature/stateproviders/NoiseProvider +CL: net/minecraft/world/level/levelgen/feature/stateproviders/NoiseThresholdProvider net/minecraft/world/level/levelgen/feature/stateproviders/NoiseThresholdProvider +CL: net/minecraft/world/level/levelgen/feature/stateproviders/RandomizedIntStateProvider net/minecraft/world/level/levelgen/feature/stateproviders/RandomizedIntStateProvider +CL: net/minecraft/world/level/levelgen/feature/stateproviders/RotatedBlockProvider net/minecraft/world/level/levelgen/feature/stateproviders/RotatedBlockProvider +CL: net/minecraft/world/level/levelgen/feature/stateproviders/RuleBasedBlockStateProvider net/minecraft/world/level/levelgen/feature/stateproviders/RuleBasedBlockStateProvider +CL: net/minecraft/world/level/levelgen/feature/stateproviders/RuleBasedBlockStateProvider$Rule net/minecraft/world/level/levelgen/feature/stateproviders/RuleBasedBlockStateProvider$Rule +CL: net/minecraft/world/level/levelgen/feature/stateproviders/SimpleStateProvider net/minecraft/world/level/levelgen/feature/stateproviders/SimpleStateProvider +CL: net/minecraft/world/level/levelgen/feature/stateproviders/WeightedStateProvider net/minecraft/world/level/levelgen/feature/stateproviders/WeightedStateProvider +CL: net/minecraft/world/level/levelgen/feature/stateproviders/package-info net/minecraft/world/level/levelgen/feature/stateproviders/package-info +CL: net/minecraft/world/level/levelgen/feature/treedecorators/AlterGroundDecorator net/minecraft/world/level/levelgen/feature/treedecorators/AlterGroundDecorator +CL: net/minecraft/world/level/levelgen/feature/treedecorators/AttachedToLeavesDecorator net/minecraft/world/level/levelgen/feature/treedecorators/AttachedToLeavesDecorator +CL: net/minecraft/world/level/levelgen/feature/treedecorators/BeehiveDecorator net/minecraft/world/level/levelgen/feature/treedecorators/BeehiveDecorator +CL: net/minecraft/world/level/levelgen/feature/treedecorators/CocoaDecorator net/minecraft/world/level/levelgen/feature/treedecorators/CocoaDecorator +CL: net/minecraft/world/level/levelgen/feature/treedecorators/LeaveVineDecorator net/minecraft/world/level/levelgen/feature/treedecorators/LeaveVineDecorator +CL: net/minecraft/world/level/levelgen/feature/treedecorators/TreeDecorator net/minecraft/world/level/levelgen/feature/treedecorators/TreeDecorator +CL: net/minecraft/world/level/levelgen/feature/treedecorators/TreeDecorator$Context net/minecraft/world/level/levelgen/feature/treedecorators/TreeDecorator$Context +CL: net/minecraft/world/level/levelgen/feature/treedecorators/TreeDecoratorType net/minecraft/world/level/levelgen/feature/treedecorators/TreeDecoratorType +CL: net/minecraft/world/level/levelgen/feature/treedecorators/TrunkVineDecorator net/minecraft/world/level/levelgen/feature/treedecorators/TrunkVineDecorator +CL: net/minecraft/world/level/levelgen/feature/treedecorators/package-info net/minecraft/world/level/levelgen/feature/treedecorators/package-info +CL: net/minecraft/world/level/levelgen/feature/trunkplacers/BendingTrunkPlacer net/minecraft/world/level/levelgen/feature/trunkplacers/BendingTrunkPlacer +CL: net/minecraft/world/level/levelgen/feature/trunkplacers/CherryTrunkPlacer net/minecraft/world/level/levelgen/feature/trunkplacers/CherryTrunkPlacer +CL: net/minecraft/world/level/levelgen/feature/trunkplacers/DarkOakTrunkPlacer net/minecraft/world/level/levelgen/feature/trunkplacers/DarkOakTrunkPlacer +CL: net/minecraft/world/level/levelgen/feature/trunkplacers/FancyTrunkPlacer net/minecraft/world/level/levelgen/feature/trunkplacers/FancyTrunkPlacer +CL: net/minecraft/world/level/levelgen/feature/trunkplacers/FancyTrunkPlacer$FoliageCoords net/minecraft/world/level/levelgen/feature/trunkplacers/FancyTrunkPlacer$FoliageCoords +CL: net/minecraft/world/level/levelgen/feature/trunkplacers/ForkingTrunkPlacer net/minecraft/world/level/levelgen/feature/trunkplacers/ForkingTrunkPlacer +CL: net/minecraft/world/level/levelgen/feature/trunkplacers/GiantTrunkPlacer net/minecraft/world/level/levelgen/feature/trunkplacers/GiantTrunkPlacer +CL: net/minecraft/world/level/levelgen/feature/trunkplacers/MegaJungleTrunkPlacer net/minecraft/world/level/levelgen/feature/trunkplacers/MegaJungleTrunkPlacer +CL: net/minecraft/world/level/levelgen/feature/trunkplacers/StraightTrunkPlacer net/minecraft/world/level/levelgen/feature/trunkplacers/StraightTrunkPlacer +CL: net/minecraft/world/level/levelgen/feature/trunkplacers/TrunkPlacer net/minecraft/world/level/levelgen/feature/trunkplacers/TrunkPlacer +CL: net/minecraft/world/level/levelgen/feature/trunkplacers/TrunkPlacerType net/minecraft/world/level/levelgen/feature/trunkplacers/TrunkPlacerType +CL: net/minecraft/world/level/levelgen/feature/trunkplacers/UpwardsBranchingTrunkPlacer net/minecraft/world/level/levelgen/feature/trunkplacers/UpwardsBranchingTrunkPlacer +CL: net/minecraft/world/level/levelgen/feature/trunkplacers/package-info net/minecraft/world/level/levelgen/feature/trunkplacers/package-info +CL: net/minecraft/world/level/levelgen/flat/FlatLayerInfo net/minecraft/world/level/levelgen/flat/FlatLayerInfo +CL: net/minecraft/world/level/levelgen/flat/FlatLevelGeneratorPreset net/minecraft/world/level/levelgen/flat/FlatLevelGeneratorPreset +CL: net/minecraft/world/level/levelgen/flat/FlatLevelGeneratorPresets net/minecraft/world/level/levelgen/flat/FlatLevelGeneratorPresets +CL: net/minecraft/world/level/levelgen/flat/FlatLevelGeneratorPresets$Bootstrap net/minecraft/world/level/levelgen/flat/FlatLevelGeneratorPresets$Bootstrap +CL: net/minecraft/world/level/levelgen/flat/FlatLevelGeneratorSettings net/minecraft/world/level/levelgen/flat/FlatLevelGeneratorSettings +CL: net/minecraft/world/level/levelgen/flat/package-info net/minecraft/world/level/levelgen/flat/package-info +CL: net/minecraft/world/level/levelgen/heightproviders/BiasedToBottomHeight net/minecraft/world/level/levelgen/heightproviders/BiasedToBottomHeight +CL: net/minecraft/world/level/levelgen/heightproviders/ConstantHeight net/minecraft/world/level/levelgen/heightproviders/ConstantHeight +CL: net/minecraft/world/level/levelgen/heightproviders/HeightProvider net/minecraft/world/level/levelgen/heightproviders/HeightProvider +CL: net/minecraft/world/level/levelgen/heightproviders/HeightProviderType net/minecraft/world/level/levelgen/heightproviders/HeightProviderType +CL: net/minecraft/world/level/levelgen/heightproviders/TrapezoidHeight net/minecraft/world/level/levelgen/heightproviders/TrapezoidHeight +CL: net/minecraft/world/level/levelgen/heightproviders/UniformHeight net/minecraft/world/level/levelgen/heightproviders/UniformHeight +CL: net/minecraft/world/level/levelgen/heightproviders/VeryBiasedToBottomHeight net/minecraft/world/level/levelgen/heightproviders/VeryBiasedToBottomHeight +CL: net/minecraft/world/level/levelgen/heightproviders/WeightedListHeight net/minecraft/world/level/levelgen/heightproviders/WeightedListHeight +CL: net/minecraft/world/level/levelgen/heightproviders/package-info net/minecraft/world/level/levelgen/heightproviders/package-info +CL: net/minecraft/world/level/levelgen/material/MaterialRuleList net/minecraft/world/level/levelgen/material/MaterialRuleList +CL: net/minecraft/world/level/levelgen/material/WorldGenMaterialRule net/minecraft/world/level/levelgen/material/WorldGenMaterialRule +CL: net/minecraft/world/level/levelgen/material/package-info net/minecraft/world/level/levelgen/material/package-info +CL: net/minecraft/world/level/levelgen/package-info net/minecraft/world/level/levelgen/package-info +CL: net/minecraft/world/level/levelgen/placement/BiomeFilter net/minecraft/world/level/levelgen/placement/BiomeFilter +CL: net/minecraft/world/level/levelgen/placement/BlockPredicateFilter net/minecraft/world/level/levelgen/placement/BlockPredicateFilter +CL: net/minecraft/world/level/levelgen/placement/CarvingMaskPlacement net/minecraft/world/level/levelgen/placement/CarvingMaskPlacement +CL: net/minecraft/world/level/levelgen/placement/CaveSurface net/minecraft/world/level/levelgen/placement/CaveSurface +CL: net/minecraft/world/level/levelgen/placement/CountOnEveryLayerPlacement net/minecraft/world/level/levelgen/placement/CountOnEveryLayerPlacement +CL: net/minecraft/world/level/levelgen/placement/CountPlacement net/minecraft/world/level/levelgen/placement/CountPlacement +CL: net/minecraft/world/level/levelgen/placement/EnvironmentScanPlacement net/minecraft/world/level/levelgen/placement/EnvironmentScanPlacement +CL: net/minecraft/world/level/levelgen/placement/HeightRangePlacement net/minecraft/world/level/levelgen/placement/HeightRangePlacement +CL: net/minecraft/world/level/levelgen/placement/HeightmapPlacement net/minecraft/world/level/levelgen/placement/HeightmapPlacement +CL: net/minecraft/world/level/levelgen/placement/InSquarePlacement net/minecraft/world/level/levelgen/placement/InSquarePlacement +CL: net/minecraft/world/level/levelgen/placement/NoiseBasedCountPlacement net/minecraft/world/level/levelgen/placement/NoiseBasedCountPlacement +CL: net/minecraft/world/level/levelgen/placement/NoiseThresholdCountPlacement net/minecraft/world/level/levelgen/placement/NoiseThresholdCountPlacement +CL: net/minecraft/world/level/levelgen/placement/PlacedFeature net/minecraft/world/level/levelgen/placement/PlacedFeature +CL: net/minecraft/world/level/levelgen/placement/PlacementContext net/minecraft/world/level/levelgen/placement/PlacementContext +CL: net/minecraft/world/level/levelgen/placement/PlacementFilter net/minecraft/world/level/levelgen/placement/PlacementFilter +CL: net/minecraft/world/level/levelgen/placement/PlacementModifier net/minecraft/world/level/levelgen/placement/PlacementModifier +CL: net/minecraft/world/level/levelgen/placement/PlacementModifierType net/minecraft/world/level/levelgen/placement/PlacementModifierType +CL: net/minecraft/world/level/levelgen/placement/RandomOffsetPlacement net/minecraft/world/level/levelgen/placement/RandomOffsetPlacement +CL: net/minecraft/world/level/levelgen/placement/RarityFilter net/minecraft/world/level/levelgen/placement/RarityFilter +CL: net/minecraft/world/level/levelgen/placement/RepeatingPlacement net/minecraft/world/level/levelgen/placement/RepeatingPlacement +CL: net/minecraft/world/level/levelgen/placement/SurfaceRelativeThresholdFilter net/minecraft/world/level/levelgen/placement/SurfaceRelativeThresholdFilter +CL: net/minecraft/world/level/levelgen/placement/SurfaceWaterDepthFilter net/minecraft/world/level/levelgen/placement/SurfaceWaterDepthFilter +CL: net/minecraft/world/level/levelgen/placement/package-info net/minecraft/world/level/levelgen/placement/package-info +CL: net/minecraft/world/level/levelgen/presets/WorldPreset net/minecraft/world/level/levelgen/presets/WorldPreset +CL: net/minecraft/world/level/levelgen/presets/WorldPresets net/minecraft/world/level/levelgen/presets/WorldPresets +CL: net/minecraft/world/level/levelgen/presets/WorldPresets$Bootstrap net/minecraft/world/level/levelgen/presets/WorldPresets$Bootstrap +CL: net/minecraft/world/level/levelgen/presets/package-info net/minecraft/world/level/levelgen/presets/package-info +CL: net/minecraft/world/level/levelgen/structure/BoundingBox net/minecraft/world/level/levelgen/structure/BoundingBox +CL: net/minecraft/world/level/levelgen/structure/BoundingBox$1 net/minecraft/world/level/levelgen/structure/BoundingBox$1 +CL: net/minecraft/world/level/levelgen/structure/BuiltinStructureSets net/minecraft/world/level/levelgen/structure/BuiltinStructureSets +CL: net/minecraft/world/level/levelgen/structure/BuiltinStructures net/minecraft/world/level/levelgen/structure/BuiltinStructures +CL: net/minecraft/world/level/levelgen/structure/LegacyStructureDataHandler net/minecraft/world/level/levelgen/structure/LegacyStructureDataHandler +CL: net/minecraft/world/level/levelgen/structure/PoolElementStructurePiece net/minecraft/world/level/levelgen/structure/PoolElementStructurePiece +CL: net/minecraft/world/level/levelgen/structure/PostPlacementProcessor net/minecraft/world/level/levelgen/structure/PostPlacementProcessor +CL: net/minecraft/world/level/levelgen/structure/ScatteredFeaturePiece net/minecraft/world/level/levelgen/structure/ScatteredFeaturePiece +CL: net/minecraft/world/level/levelgen/structure/SinglePieceStructure net/minecraft/world/level/levelgen/structure/SinglePieceStructure +CL: net/minecraft/world/level/levelgen/structure/SinglePieceStructure$PieceConstructor net/minecraft/world/level/levelgen/structure/SinglePieceStructure$PieceConstructor +CL: net/minecraft/world/level/levelgen/structure/Structure net/minecraft/world/level/levelgen/structure/Structure +CL: net/minecraft/world/level/levelgen/structure/Structure$GenerationContext net/minecraft/world/level/levelgen/structure/Structure$GenerationContext +CL: net/minecraft/world/level/levelgen/structure/Structure$GenerationStub net/minecraft/world/level/levelgen/structure/Structure$GenerationStub +CL: net/minecraft/world/level/levelgen/structure/Structure$StructureSettings net/minecraft/world/level/levelgen/structure/Structure$StructureSettings +CL: net/minecraft/world/level/levelgen/structure/StructureCheck net/minecraft/world/level/levelgen/structure/StructureCheck +CL: net/minecraft/world/level/levelgen/structure/StructureCheckResult net/minecraft/world/level/levelgen/structure/StructureCheckResult +CL: net/minecraft/world/level/levelgen/structure/StructureFeatureIndexSavedData net/minecraft/world/level/levelgen/structure/StructureFeatureIndexSavedData +CL: net/minecraft/world/level/levelgen/structure/StructurePiece net/minecraft/world/level/levelgen/structure/StructurePiece +CL: net/minecraft/world/level/levelgen/structure/StructurePiece$1 net/minecraft/world/level/levelgen/structure/StructurePiece$1 +CL: net/minecraft/world/level/levelgen/structure/StructurePiece$BlockSelector net/minecraft/world/level/levelgen/structure/StructurePiece$BlockSelector +CL: net/minecraft/world/level/levelgen/structure/StructurePieceAccessor net/minecraft/world/level/levelgen/structure/StructurePieceAccessor +CL: net/minecraft/world/level/levelgen/structure/StructureSet net/minecraft/world/level/levelgen/structure/StructureSet +CL: net/minecraft/world/level/levelgen/structure/StructureSet$StructureSelectionEntry net/minecraft/world/level/levelgen/structure/StructureSet$StructureSelectionEntry +CL: net/minecraft/world/level/levelgen/structure/StructureSpawnOverride net/minecraft/world/level/levelgen/structure/StructureSpawnOverride +CL: net/minecraft/world/level/levelgen/structure/StructureSpawnOverride$BoundingBoxType net/minecraft/world/level/levelgen/structure/StructureSpawnOverride$BoundingBoxType +CL: net/minecraft/world/level/levelgen/structure/StructureStart net/minecraft/world/level/levelgen/structure/StructureStart +CL: net/minecraft/world/level/levelgen/structure/StructureType net/minecraft/world/level/levelgen/structure/StructureType +CL: net/minecraft/world/level/levelgen/structure/TemplateStructurePiece net/minecraft/world/level/levelgen/structure/TemplateStructurePiece +CL: net/minecraft/world/level/levelgen/structure/TerrainAdjustment net/minecraft/world/level/levelgen/structure/TerrainAdjustment +CL: net/minecraft/world/level/levelgen/structure/package-info net/minecraft/world/level/levelgen/structure/package-info +CL: net/minecraft/world/level/levelgen/structure/pieces/PieceGenerator net/minecraft/world/level/levelgen/structure/pieces/PieceGenerator +CL: net/minecraft/world/level/levelgen/structure/pieces/PieceGenerator$Context net/minecraft/world/level/levelgen/structure/pieces/PieceGenerator$Context +CL: net/minecraft/world/level/levelgen/structure/pieces/PieceGeneratorSupplier net/minecraft/world/level/levelgen/structure/pieces/PieceGeneratorSupplier +CL: net/minecraft/world/level/levelgen/structure/pieces/PieceGeneratorSupplier$Context net/minecraft/world/level/levelgen/structure/pieces/PieceGeneratorSupplier$Context +CL: net/minecraft/world/level/levelgen/structure/pieces/PiecesContainer net/minecraft/world/level/levelgen/structure/pieces/PiecesContainer +CL: net/minecraft/world/level/levelgen/structure/pieces/StructurePieceSerializationContext net/minecraft/world/level/levelgen/structure/pieces/StructurePieceSerializationContext +CL: net/minecraft/world/level/levelgen/structure/pieces/StructurePieceType net/minecraft/world/level/levelgen/structure/pieces/StructurePieceType +CL: net/minecraft/world/level/levelgen/structure/pieces/StructurePieceType$ContextlessType net/minecraft/world/level/levelgen/structure/pieces/StructurePieceType$ContextlessType +CL: net/minecraft/world/level/levelgen/structure/pieces/StructurePieceType$StructureTemplateType net/minecraft/world/level/levelgen/structure/pieces/StructurePieceType$StructureTemplateType +CL: net/minecraft/world/level/levelgen/structure/pieces/StructurePiecesBuilder net/minecraft/world/level/levelgen/structure/pieces/StructurePiecesBuilder +CL: net/minecraft/world/level/levelgen/structure/pieces/package-info net/minecraft/world/level/levelgen/structure/pieces/package-info +CL: net/minecraft/world/level/levelgen/structure/placement/ConcentricRingsStructurePlacement net/minecraft/world/level/levelgen/structure/placement/ConcentricRingsStructurePlacement +CL: net/minecraft/world/level/levelgen/structure/placement/RandomSpreadStructurePlacement net/minecraft/world/level/levelgen/structure/placement/RandomSpreadStructurePlacement +CL: net/minecraft/world/level/levelgen/structure/placement/RandomSpreadType net/minecraft/world/level/levelgen/structure/placement/RandomSpreadType +CL: net/minecraft/world/level/levelgen/structure/placement/RandomSpreadType$1 net/minecraft/world/level/levelgen/structure/placement/RandomSpreadType$1 +CL: net/minecraft/world/level/levelgen/structure/placement/StructurePlacement net/minecraft/world/level/levelgen/structure/placement/StructurePlacement +CL: net/minecraft/world/level/levelgen/structure/placement/StructurePlacement$ExclusionZone net/minecraft/world/level/levelgen/structure/placement/StructurePlacement$ExclusionZone +CL: net/minecraft/world/level/levelgen/structure/placement/StructurePlacement$FrequencyReducer net/minecraft/world/level/levelgen/structure/placement/StructurePlacement$FrequencyReducer +CL: net/minecraft/world/level/levelgen/structure/placement/StructurePlacement$FrequencyReductionMethod net/minecraft/world/level/levelgen/structure/placement/StructurePlacement$FrequencyReductionMethod +CL: net/minecraft/world/level/levelgen/structure/placement/StructurePlacementType net/minecraft/world/level/levelgen/structure/placement/StructurePlacementType +CL: net/minecraft/world/level/levelgen/structure/placement/package-info net/minecraft/world/level/levelgen/structure/placement/package-info +CL: net/minecraft/world/level/levelgen/structure/pools/EmptyPoolElement net/minecraft/world/level/levelgen/structure/pools/EmptyPoolElement +CL: net/minecraft/world/level/levelgen/structure/pools/FeaturePoolElement net/minecraft/world/level/levelgen/structure/pools/FeaturePoolElement +CL: net/minecraft/world/level/levelgen/structure/pools/JigsawJunction net/minecraft/world/level/levelgen/structure/pools/JigsawJunction +CL: net/minecraft/world/level/levelgen/structure/pools/JigsawPlacement net/minecraft/world/level/levelgen/structure/pools/JigsawPlacement +CL: net/minecraft/world/level/levelgen/structure/pools/JigsawPlacement$PieceState net/minecraft/world/level/levelgen/structure/pools/JigsawPlacement$PieceState +CL: net/minecraft/world/level/levelgen/structure/pools/JigsawPlacement$Placer net/minecraft/world/level/levelgen/structure/pools/JigsawPlacement$Placer +CL: net/minecraft/world/level/levelgen/structure/pools/LegacySinglePoolElement net/minecraft/world/level/levelgen/structure/pools/LegacySinglePoolElement +CL: net/minecraft/world/level/levelgen/structure/pools/ListPoolElement net/minecraft/world/level/levelgen/structure/pools/ListPoolElement +CL: net/minecraft/world/level/levelgen/structure/pools/SinglePoolElement net/minecraft/world/level/levelgen/structure/pools/SinglePoolElement +CL: net/minecraft/world/level/levelgen/structure/pools/StructurePoolElement net/minecraft/world/level/levelgen/structure/pools/StructurePoolElement +CL: net/minecraft/world/level/levelgen/structure/pools/StructurePoolElementType net/minecraft/world/level/levelgen/structure/pools/StructurePoolElementType +CL: net/minecraft/world/level/levelgen/structure/pools/StructureTemplatePool net/minecraft/world/level/levelgen/structure/pools/StructureTemplatePool +CL: net/minecraft/world/level/levelgen/structure/pools/StructureTemplatePool$Projection net/minecraft/world/level/levelgen/structure/pools/StructureTemplatePool$Projection +CL: net/minecraft/world/level/levelgen/structure/pools/package-info net/minecraft/world/level/levelgen/structure/pools/package-info +CL: net/minecraft/world/level/levelgen/structure/structures/BuriedTreasurePieces net/minecraft/world/level/levelgen/structure/structures/BuriedTreasurePieces +CL: net/minecraft/world/level/levelgen/structure/structures/BuriedTreasurePieces$BuriedTreasurePiece net/minecraft/world/level/levelgen/structure/structures/BuriedTreasurePieces$BuriedTreasurePiece +CL: net/minecraft/world/level/levelgen/structure/structures/BuriedTreasureStructure net/minecraft/world/level/levelgen/structure/structures/BuriedTreasureStructure +CL: net/minecraft/world/level/levelgen/structure/structures/DesertPyramidPiece net/minecraft/world/level/levelgen/structure/structures/DesertPyramidPiece +CL: net/minecraft/world/level/levelgen/structure/structures/DesertPyramidStructure net/minecraft/world/level/levelgen/structure/structures/DesertPyramidStructure +CL: net/minecraft/world/level/levelgen/structure/structures/EndCityPieces net/minecraft/world/level/levelgen/structure/structures/EndCityPieces +CL: net/minecraft/world/level/levelgen/structure/structures/EndCityPieces$1 net/minecraft/world/level/levelgen/structure/structures/EndCityPieces$1 +CL: net/minecraft/world/level/levelgen/structure/structures/EndCityPieces$2 net/minecraft/world/level/levelgen/structure/structures/EndCityPieces$2 +CL: net/minecraft/world/level/levelgen/structure/structures/EndCityPieces$3 net/minecraft/world/level/levelgen/structure/structures/EndCityPieces$3 +CL: net/minecraft/world/level/levelgen/structure/structures/EndCityPieces$4 net/minecraft/world/level/levelgen/structure/structures/EndCityPieces$4 +CL: net/minecraft/world/level/levelgen/structure/structures/EndCityPieces$EndCityPiece net/minecraft/world/level/levelgen/structure/structures/EndCityPieces$EndCityPiece +CL: net/minecraft/world/level/levelgen/structure/structures/EndCityPieces$SectionGenerator net/minecraft/world/level/levelgen/structure/structures/EndCityPieces$SectionGenerator +CL: net/minecraft/world/level/levelgen/structure/structures/EndCityStructure net/minecraft/world/level/levelgen/structure/structures/EndCityStructure +CL: net/minecraft/world/level/levelgen/structure/structures/IglooPieces net/minecraft/world/level/levelgen/structure/structures/IglooPieces +CL: net/minecraft/world/level/levelgen/structure/structures/IglooPieces$IglooPiece net/minecraft/world/level/levelgen/structure/structures/IglooPieces$IglooPiece +CL: net/minecraft/world/level/levelgen/structure/structures/IglooStructure net/minecraft/world/level/levelgen/structure/structures/IglooStructure +CL: net/minecraft/world/level/levelgen/structure/structures/JigsawStructure net/minecraft/world/level/levelgen/structure/structures/JigsawStructure +CL: net/minecraft/world/level/levelgen/structure/structures/JigsawStructure$1 net/minecraft/world/level/levelgen/structure/structures/JigsawStructure$1 +CL: net/minecraft/world/level/levelgen/structure/structures/JungleTemplePiece net/minecraft/world/level/levelgen/structure/structures/JungleTemplePiece +CL: net/minecraft/world/level/levelgen/structure/structures/JungleTemplePiece$MossStoneSelector net/minecraft/world/level/levelgen/structure/structures/JungleTemplePiece$MossStoneSelector +CL: net/minecraft/world/level/levelgen/structure/structures/JungleTempleStructure net/minecraft/world/level/levelgen/structure/structures/JungleTempleStructure +CL: net/minecraft/world/level/levelgen/structure/structures/MineshaftPieces net/minecraft/world/level/levelgen/structure/structures/MineshaftPieces +CL: net/minecraft/world/level/levelgen/structure/structures/MineshaftPieces$1 net/minecraft/world/level/levelgen/structure/structures/MineshaftPieces$1 +CL: net/minecraft/world/level/levelgen/structure/structures/MineshaftPieces$MineShaftCorridor net/minecraft/world/level/levelgen/structure/structures/MineshaftPieces$MineShaftCorridor +CL: net/minecraft/world/level/levelgen/structure/structures/MineshaftPieces$MineShaftCrossing net/minecraft/world/level/levelgen/structure/structures/MineshaftPieces$MineShaftCrossing +CL: net/minecraft/world/level/levelgen/structure/structures/MineshaftPieces$MineShaftPiece net/minecraft/world/level/levelgen/structure/structures/MineshaftPieces$MineShaftPiece +CL: net/minecraft/world/level/levelgen/structure/structures/MineshaftPieces$MineShaftRoom net/minecraft/world/level/levelgen/structure/structures/MineshaftPieces$MineShaftRoom +CL: net/minecraft/world/level/levelgen/structure/structures/MineshaftPieces$MineShaftStairs net/minecraft/world/level/levelgen/structure/structures/MineshaftPieces$MineShaftStairs +CL: net/minecraft/world/level/levelgen/structure/structures/MineshaftStructure net/minecraft/world/level/levelgen/structure/structures/MineshaftStructure +CL: net/minecraft/world/level/levelgen/structure/structures/MineshaftStructure$Type net/minecraft/world/level/levelgen/structure/structures/MineshaftStructure$Type +CL: net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces +CL: net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$1 net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$1 +CL: net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$BridgeCrossing net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$BridgeCrossing +CL: net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$BridgeEndFiller net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$BridgeEndFiller +CL: net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$BridgeStraight net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$BridgeStraight +CL: net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$CastleCorridorStairsPiece net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$CastleCorridorStairsPiece +CL: net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$CastleCorridorTBalconyPiece net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$CastleCorridorTBalconyPiece +CL: net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$CastleEntrance net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$CastleEntrance +CL: net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$CastleSmallCorridorCrossingPiece net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$CastleSmallCorridorCrossingPiece +CL: net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$CastleSmallCorridorLeftTurnPiece net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$CastleSmallCorridorLeftTurnPiece +CL: net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$CastleSmallCorridorPiece net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$CastleSmallCorridorPiece +CL: net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$CastleSmallCorridorRightTurnPiece net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$CastleSmallCorridorRightTurnPiece +CL: net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$CastleStalkRoom net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$CastleStalkRoom +CL: net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$MonsterThrone net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$MonsterThrone +CL: net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$NetherBridgePiece net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$NetherBridgePiece +CL: net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$PieceWeight net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$PieceWeight +CL: net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$RoomCrossing net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$RoomCrossing +CL: net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$StairsRoom net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$StairsRoom +CL: net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$StartPiece net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$StartPiece +CL: net/minecraft/world/level/levelgen/structure/structures/NetherFortressStructure net/minecraft/world/level/levelgen/structure/structures/NetherFortressStructure +CL: net/minecraft/world/level/levelgen/structure/structures/NetherFossilPieces net/minecraft/world/level/levelgen/structure/structures/NetherFossilPieces +CL: net/minecraft/world/level/levelgen/structure/structures/NetherFossilPieces$NetherFossilPiece net/minecraft/world/level/levelgen/structure/structures/NetherFossilPieces$NetherFossilPiece +CL: net/minecraft/world/level/levelgen/structure/structures/NetherFossilStructure net/minecraft/world/level/levelgen/structure/structures/NetherFossilStructure +CL: net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces +CL: net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$1 net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$1 +CL: net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$FitDoubleXRoom net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$FitDoubleXRoom +CL: net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$FitDoubleXYRoom net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$FitDoubleXYRoom +CL: net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$FitDoubleYRoom net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$FitDoubleYRoom +CL: net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$FitDoubleYZRoom net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$FitDoubleYZRoom +CL: net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$FitDoubleZRoom net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$FitDoubleZRoom +CL: net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$FitSimpleRoom net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$FitSimpleRoom +CL: net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$FitSimpleTopRoom net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$FitSimpleTopRoom +CL: net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$MonumentBuilding net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$MonumentBuilding +CL: net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$MonumentRoomFitter net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$MonumentRoomFitter +CL: net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$OceanMonumentCoreRoom net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$OceanMonumentCoreRoom +CL: net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$OceanMonumentDoubleXRoom net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$OceanMonumentDoubleXRoom +CL: net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$OceanMonumentDoubleXYRoom net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$OceanMonumentDoubleXYRoom +CL: net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$OceanMonumentDoubleYRoom net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$OceanMonumentDoubleYRoom +CL: net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$OceanMonumentDoubleYZRoom net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$OceanMonumentDoubleYZRoom +CL: net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$OceanMonumentDoubleZRoom net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$OceanMonumentDoubleZRoom +CL: net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$OceanMonumentEntryRoom net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$OceanMonumentEntryRoom +CL: net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$OceanMonumentPenthouse net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$OceanMonumentPenthouse +CL: net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$OceanMonumentPiece net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$OceanMonumentPiece +CL: net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$OceanMonumentSimpleRoom net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$OceanMonumentSimpleRoom +CL: net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$OceanMonumentSimpleTopRoom net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$OceanMonumentSimpleTopRoom +CL: net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$OceanMonumentWingRoom net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$OceanMonumentWingRoom +CL: net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$RoomDefinition net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$RoomDefinition +CL: net/minecraft/world/level/levelgen/structure/structures/OceanMonumentStructure net/minecraft/world/level/levelgen/structure/structures/OceanMonumentStructure +CL: net/minecraft/world/level/levelgen/structure/structures/OceanRuinPieces net/minecraft/world/level/levelgen/structure/structures/OceanRuinPieces +CL: net/minecraft/world/level/levelgen/structure/structures/OceanRuinPieces$1 net/minecraft/world/level/levelgen/structure/structures/OceanRuinPieces$1 +CL: net/minecraft/world/level/levelgen/structure/structures/OceanRuinPieces$OceanRuinPiece net/minecraft/world/level/levelgen/structure/structures/OceanRuinPieces$OceanRuinPiece +CL: net/minecraft/world/level/levelgen/structure/structures/OceanRuinStructure net/minecraft/world/level/levelgen/structure/structures/OceanRuinStructure +CL: net/minecraft/world/level/levelgen/structure/structures/OceanRuinStructure$Type net/minecraft/world/level/levelgen/structure/structures/OceanRuinStructure$Type +CL: net/minecraft/world/level/levelgen/structure/structures/RuinedPortalPiece net/minecraft/world/level/levelgen/structure/structures/RuinedPortalPiece +CL: net/minecraft/world/level/levelgen/structure/structures/RuinedPortalPiece$Properties net/minecraft/world/level/levelgen/structure/structures/RuinedPortalPiece$Properties +CL: net/minecraft/world/level/levelgen/structure/structures/RuinedPortalPiece$VerticalPlacement net/minecraft/world/level/levelgen/structure/structures/RuinedPortalPiece$VerticalPlacement +CL: net/minecraft/world/level/levelgen/structure/structures/RuinedPortalStructure net/minecraft/world/level/levelgen/structure/structures/RuinedPortalStructure +CL: net/minecraft/world/level/levelgen/structure/structures/RuinedPortalStructure$Setup net/minecraft/world/level/levelgen/structure/structures/RuinedPortalStructure$Setup +CL: net/minecraft/world/level/levelgen/structure/structures/ShipwreckPieces net/minecraft/world/level/levelgen/structure/structures/ShipwreckPieces +CL: net/minecraft/world/level/levelgen/structure/structures/ShipwreckPieces$ShipwreckPiece net/minecraft/world/level/levelgen/structure/structures/ShipwreckPieces$ShipwreckPiece +CL: net/minecraft/world/level/levelgen/structure/structures/ShipwreckStructure net/minecraft/world/level/levelgen/structure/structures/ShipwreckStructure +CL: net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces +CL: net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$1 net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$1 +CL: net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$2 net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$2 +CL: net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$3 net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$3 +CL: net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$ChestCorridor net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$ChestCorridor +CL: net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$FillerCorridor net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$FillerCorridor +CL: net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$FiveCrossing net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$FiveCrossing +CL: net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$LeftTurn net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$LeftTurn +CL: net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$Library net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$Library +CL: net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$PieceWeight net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$PieceWeight +CL: net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$PortalRoom net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$PortalRoom +CL: net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$PrisonHall net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$PrisonHall +CL: net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$RightTurn net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$RightTurn +CL: net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$RoomCrossing net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$RoomCrossing +CL: net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$SmoothStoneSelector net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$SmoothStoneSelector +CL: net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$StairsDown net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$StairsDown +CL: net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$StartPiece net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$StartPiece +CL: net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$Straight net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$Straight +CL: net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$StraightStairsDown net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$StraightStairsDown +CL: net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$StrongholdPiece net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$StrongholdPiece +CL: net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$StrongholdPiece$SmallDoorType net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$StrongholdPiece$SmallDoorType +CL: net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$Turn net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$Turn +CL: net/minecraft/world/level/levelgen/structure/structures/StrongholdStructure net/minecraft/world/level/levelgen/structure/structures/StrongholdStructure +CL: net/minecraft/world/level/levelgen/structure/structures/SwampHutPiece net/minecraft/world/level/levelgen/structure/structures/SwampHutPiece +CL: net/minecraft/world/level/levelgen/structure/structures/SwampHutStructure net/minecraft/world/level/levelgen/structure/structures/SwampHutStructure +CL: net/minecraft/world/level/levelgen/structure/structures/WoodlandMansionPieces net/minecraft/world/level/levelgen/structure/structures/WoodlandMansionPieces +CL: net/minecraft/world/level/levelgen/structure/structures/WoodlandMansionPieces$FirstFloorRoomCollection net/minecraft/world/level/levelgen/structure/structures/WoodlandMansionPieces$FirstFloorRoomCollection +CL: net/minecraft/world/level/levelgen/structure/structures/WoodlandMansionPieces$FloorRoomCollection net/minecraft/world/level/levelgen/structure/structures/WoodlandMansionPieces$FloorRoomCollection +CL: net/minecraft/world/level/levelgen/structure/structures/WoodlandMansionPieces$MansionGrid net/minecraft/world/level/levelgen/structure/structures/WoodlandMansionPieces$MansionGrid +CL: net/minecraft/world/level/levelgen/structure/structures/WoodlandMansionPieces$MansionPiecePlacer net/minecraft/world/level/levelgen/structure/structures/WoodlandMansionPieces$MansionPiecePlacer +CL: net/minecraft/world/level/levelgen/structure/structures/WoodlandMansionPieces$PlacementData net/minecraft/world/level/levelgen/structure/structures/WoodlandMansionPieces$PlacementData +CL: net/minecraft/world/level/levelgen/structure/structures/WoodlandMansionPieces$SecondFloorRoomCollection net/minecraft/world/level/levelgen/structure/structures/WoodlandMansionPieces$SecondFloorRoomCollection +CL: net/minecraft/world/level/levelgen/structure/structures/WoodlandMansionPieces$SimpleGrid net/minecraft/world/level/levelgen/structure/structures/WoodlandMansionPieces$SimpleGrid +CL: net/minecraft/world/level/levelgen/structure/structures/WoodlandMansionPieces$ThirdFloorRoomCollection net/minecraft/world/level/levelgen/structure/structures/WoodlandMansionPieces$ThirdFloorRoomCollection +CL: net/minecraft/world/level/levelgen/structure/structures/WoodlandMansionPieces$WoodlandMansionPiece net/minecraft/world/level/levelgen/structure/structures/WoodlandMansionPieces$WoodlandMansionPiece +CL: net/minecraft/world/level/levelgen/structure/structures/WoodlandMansionStructure net/minecraft/world/level/levelgen/structure/structures/WoodlandMansionStructure +CL: net/minecraft/world/level/levelgen/structure/structures/package-info net/minecraft/world/level/levelgen/structure/structures/package-info +CL: net/minecraft/world/level/levelgen/structure/templatesystem/AlwaysTrueTest net/minecraft/world/level/levelgen/structure/templatesystem/AlwaysTrueTest +CL: net/minecraft/world/level/levelgen/structure/templatesystem/AxisAlignedLinearPosTest net/minecraft/world/level/levelgen/structure/templatesystem/AxisAlignedLinearPosTest +CL: net/minecraft/world/level/levelgen/structure/templatesystem/BlackstoneReplaceProcessor net/minecraft/world/level/levelgen/structure/templatesystem/BlackstoneReplaceProcessor +CL: net/minecraft/world/level/levelgen/structure/templatesystem/BlockAgeProcessor net/minecraft/world/level/levelgen/structure/templatesystem/BlockAgeProcessor +CL: net/minecraft/world/level/levelgen/structure/templatesystem/BlockIgnoreProcessor net/minecraft/world/level/levelgen/structure/templatesystem/BlockIgnoreProcessor +CL: net/minecraft/world/level/levelgen/structure/templatesystem/BlockMatchTest net/minecraft/world/level/levelgen/structure/templatesystem/BlockMatchTest +CL: net/minecraft/world/level/levelgen/structure/templatesystem/BlockRotProcessor net/minecraft/world/level/levelgen/structure/templatesystem/BlockRotProcessor +CL: net/minecraft/world/level/levelgen/structure/templatesystem/BlockStateMatchTest net/minecraft/world/level/levelgen/structure/templatesystem/BlockStateMatchTest +CL: net/minecraft/world/level/levelgen/structure/templatesystem/CappedProcessor net/minecraft/world/level/levelgen/structure/templatesystem/CappedProcessor +CL: net/minecraft/world/level/levelgen/structure/templatesystem/GravityProcessor net/minecraft/world/level/levelgen/structure/templatesystem/GravityProcessor +CL: net/minecraft/world/level/levelgen/structure/templatesystem/JigsawReplacementProcessor net/minecraft/world/level/levelgen/structure/templatesystem/JigsawReplacementProcessor +CL: net/minecraft/world/level/levelgen/structure/templatesystem/LavaSubmergedBlockProcessor net/minecraft/world/level/levelgen/structure/templatesystem/LavaSubmergedBlockProcessor +CL: net/minecraft/world/level/levelgen/structure/templatesystem/LinearPosTest net/minecraft/world/level/levelgen/structure/templatesystem/LinearPosTest +CL: net/minecraft/world/level/levelgen/structure/templatesystem/NopProcessor net/minecraft/world/level/levelgen/structure/templatesystem/NopProcessor +CL: net/minecraft/world/level/levelgen/structure/templatesystem/PosAlwaysTrueTest net/minecraft/world/level/levelgen/structure/templatesystem/PosAlwaysTrueTest +CL: net/minecraft/world/level/levelgen/structure/templatesystem/PosRuleTest net/minecraft/world/level/levelgen/structure/templatesystem/PosRuleTest +CL: net/minecraft/world/level/levelgen/structure/templatesystem/PosRuleTestType net/minecraft/world/level/levelgen/structure/templatesystem/PosRuleTestType +CL: net/minecraft/world/level/levelgen/structure/templatesystem/ProcessorRule net/minecraft/world/level/levelgen/structure/templatesystem/ProcessorRule +CL: net/minecraft/world/level/levelgen/structure/templatesystem/ProtectedBlockProcessor net/minecraft/world/level/levelgen/structure/templatesystem/ProtectedBlockProcessor +CL: net/minecraft/world/level/levelgen/structure/templatesystem/RandomBlockMatchTest net/minecraft/world/level/levelgen/structure/templatesystem/RandomBlockMatchTest +CL: net/minecraft/world/level/levelgen/structure/templatesystem/RandomBlockStateMatchTest net/minecraft/world/level/levelgen/structure/templatesystem/RandomBlockStateMatchTest +CL: net/minecraft/world/level/levelgen/structure/templatesystem/RuleProcessor net/minecraft/world/level/levelgen/structure/templatesystem/RuleProcessor +CL: net/minecraft/world/level/levelgen/structure/templatesystem/RuleTest net/minecraft/world/level/levelgen/structure/templatesystem/RuleTest +CL: net/minecraft/world/level/levelgen/structure/templatesystem/RuleTestType net/minecraft/world/level/levelgen/structure/templatesystem/RuleTestType +CL: net/minecraft/world/level/levelgen/structure/templatesystem/StructurePlaceSettings net/minecraft/world/level/levelgen/structure/templatesystem/StructurePlaceSettings +CL: net/minecraft/world/level/levelgen/structure/templatesystem/StructureProcessor net/minecraft/world/level/levelgen/structure/templatesystem/StructureProcessor +CL: net/minecraft/world/level/levelgen/structure/templatesystem/StructureProcessorList net/minecraft/world/level/levelgen/structure/templatesystem/StructureProcessorList +CL: net/minecraft/world/level/levelgen/structure/templatesystem/StructureProcessorType net/minecraft/world/level/levelgen/structure/templatesystem/StructureProcessorType +CL: net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate +CL: net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate$1 net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate$1 +CL: net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate$Palette net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate$Palette +CL: net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate$SimplePalette net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate$SimplePalette +CL: net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate$StructureBlockInfo net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate$StructureBlockInfo +CL: net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate$StructureEntityInfo net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate$StructureEntityInfo +CL: net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager +CL: net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager$InputStreamOpener net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager$InputStreamOpener +CL: net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager$Source net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager$Source +CL: net/minecraft/world/level/levelgen/structure/templatesystem/TagMatchTest net/minecraft/world/level/levelgen/structure/templatesystem/TagMatchTest +CL: net/minecraft/world/level/levelgen/structure/templatesystem/package-info net/minecraft/world/level/levelgen/structure/templatesystem/package-info +CL: net/minecraft/world/level/levelgen/structure/templatesystem/rule/blockentity/AppendLoot net/minecraft/world/level/levelgen/structure/templatesystem/rule/blockentity/AppendLoot +CL: net/minecraft/world/level/levelgen/structure/templatesystem/rule/blockentity/AppendStatic net/minecraft/world/level/levelgen/structure/templatesystem/rule/blockentity/AppendStatic +CL: net/minecraft/world/level/levelgen/structure/templatesystem/rule/blockentity/Clear net/minecraft/world/level/levelgen/structure/templatesystem/rule/blockentity/Clear +CL: net/minecraft/world/level/levelgen/structure/templatesystem/rule/blockentity/Passthrough net/minecraft/world/level/levelgen/structure/templatesystem/rule/blockentity/Passthrough +CL: net/minecraft/world/level/levelgen/structure/templatesystem/rule/blockentity/RuleBlockEntityModifier net/minecraft/world/level/levelgen/structure/templatesystem/rule/blockentity/RuleBlockEntityModifier +CL: net/minecraft/world/level/levelgen/structure/templatesystem/rule/blockentity/RuleBlockEntityModifierType net/minecraft/world/level/levelgen/structure/templatesystem/rule/blockentity/RuleBlockEntityModifierType +CL: net/minecraft/world/level/levelgen/structure/templatesystem/rule/blockentity/package-info net/minecraft/world/level/levelgen/structure/templatesystem/rule/blockentity/package-info +CL: net/minecraft/world/level/levelgen/synth/BlendedNoise net/minecraft/world/level/levelgen/synth/BlendedNoise +CL: net/minecraft/world/level/levelgen/synth/ImprovedNoise net/minecraft/world/level/levelgen/synth/ImprovedNoise +CL: net/minecraft/world/level/levelgen/synth/NoiseUtils net/minecraft/world/level/levelgen/synth/NoiseUtils +CL: net/minecraft/world/level/levelgen/synth/NormalNoise net/minecraft/world/level/levelgen/synth/NormalNoise +CL: net/minecraft/world/level/levelgen/synth/NormalNoise$NoiseParameters net/minecraft/world/level/levelgen/synth/NormalNoise$NoiseParameters +CL: net/minecraft/world/level/levelgen/synth/PerlinNoise net/minecraft/world/level/levelgen/synth/PerlinNoise +CL: net/minecraft/world/level/levelgen/synth/PerlinSimplexNoise net/minecraft/world/level/levelgen/synth/PerlinSimplexNoise +CL: net/minecraft/world/level/levelgen/synth/SimplexNoise net/minecraft/world/level/levelgen/synth/SimplexNoise +CL: net/minecraft/world/level/levelgen/synth/package-info net/minecraft/world/level/levelgen/synth/package-info +CL: net/minecraft/world/level/lighting/BlockLightEngine net/minecraft/world/level/lighting/BlockLightEngine +CL: net/minecraft/world/level/lighting/BlockLightSectionStorage net/minecraft/world/level/lighting/BlockLightSectionStorage +CL: net/minecraft/world/level/lighting/BlockLightSectionStorage$BlockDataLayerStorageMap net/minecraft/world/level/lighting/BlockLightSectionStorage$BlockDataLayerStorageMap +CL: net/minecraft/world/level/lighting/ChunkSkyLightSources net/minecraft/world/level/lighting/ChunkSkyLightSources +CL: net/minecraft/world/level/lighting/DataLayerStorageMap net/minecraft/world/level/lighting/DataLayerStorageMap +CL: net/minecraft/world/level/lighting/DynamicGraphMinFixedPoint net/minecraft/world/level/lighting/DynamicGraphMinFixedPoint +CL: net/minecraft/world/level/lighting/DynamicGraphMinFixedPoint$1 net/minecraft/world/level/lighting/DynamicGraphMinFixedPoint$1 +CL: net/minecraft/world/level/lighting/LayerLightEventListener net/minecraft/world/level/lighting/LayerLightEventListener +CL: net/minecraft/world/level/lighting/LayerLightEventListener$DummyLightLayerEventListener net/minecraft/world/level/lighting/LayerLightEventListener$DummyLightLayerEventListener +CL: net/minecraft/world/level/lighting/LayerLightSectionStorage net/minecraft/world/level/lighting/LayerLightSectionStorage +CL: net/minecraft/world/level/lighting/LayerLightSectionStorage$SectionState net/minecraft/world/level/lighting/LayerLightSectionStorage$SectionState +CL: net/minecraft/world/level/lighting/LayerLightSectionStorage$SectionType net/minecraft/world/level/lighting/LayerLightSectionStorage$SectionType +CL: net/minecraft/world/level/lighting/LevelLightEngine net/minecraft/world/level/lighting/LevelLightEngine +CL: net/minecraft/world/level/lighting/LeveledPriorityQueue net/minecraft/world/level/lighting/LeveledPriorityQueue +CL: net/minecraft/world/level/lighting/LeveledPriorityQueue$1 net/minecraft/world/level/lighting/LeveledPriorityQueue$1 +CL: net/minecraft/world/level/lighting/LightEngine net/minecraft/world/level/lighting/LightEngine +CL: net/minecraft/world/level/lighting/LightEngine$QueueEntry net/minecraft/world/level/lighting/LightEngine$QueueEntry +CL: net/minecraft/world/level/lighting/LightEventListener net/minecraft/world/level/lighting/LightEventListener +CL: net/minecraft/world/level/lighting/SkyLightEngine net/minecraft/world/level/lighting/SkyLightEngine +CL: net/minecraft/world/level/lighting/SkyLightEngine$1 net/minecraft/world/level/lighting/SkyLightEngine$1 +CL: net/minecraft/world/level/lighting/SkyLightSectionStorage net/minecraft/world/level/lighting/SkyLightSectionStorage +CL: net/minecraft/world/level/lighting/SkyLightSectionStorage$SkyDataLayerStorageMap net/minecraft/world/level/lighting/SkyLightSectionStorage$SkyDataLayerStorageMap +CL: net/minecraft/world/level/lighting/SpatialLongSet net/minecraft/world/level/lighting/SpatialLongSet +CL: net/minecraft/world/level/lighting/SpatialLongSet$InternalMap net/minecraft/world/level/lighting/SpatialLongSet$InternalMap +CL: net/minecraft/world/level/lighting/package-info net/minecraft/world/level/lighting/package-info +CL: net/minecraft/world/level/material/EmptyFluid net/minecraft/world/level/material/EmptyFluid +CL: net/minecraft/world/level/material/FlowingFluid net/minecraft/world/level/material/FlowingFluid +CL: net/minecraft/world/level/material/FlowingFluid$1 net/minecraft/world/level/material/FlowingFluid$1 +CL: net/minecraft/world/level/material/Fluid net/minecraft/world/level/material/Fluid +CL: net/minecraft/world/level/material/FluidState net/minecraft/world/level/material/FluidState +CL: net/minecraft/world/level/material/Fluids net/minecraft/world/level/material/Fluids +CL: net/minecraft/world/level/material/FogType net/minecraft/world/level/material/FogType +CL: net/minecraft/world/level/material/LavaFluid net/minecraft/world/level/material/LavaFluid +CL: net/minecraft/world/level/material/LavaFluid$Flowing net/minecraft/world/level/material/LavaFluid$Flowing +CL: net/minecraft/world/level/material/LavaFluid$Source net/minecraft/world/level/material/LavaFluid$Source +CL: net/minecraft/world/level/material/MapColor net/minecraft/world/level/material/MapColor +CL: net/minecraft/world/level/material/MapColor$Brightness net/minecraft/world/level/material/MapColor$Brightness +CL: net/minecraft/world/level/material/PushReaction net/minecraft/world/level/material/PushReaction +CL: net/minecraft/world/level/material/WaterFluid net/minecraft/world/level/material/WaterFluid +CL: net/minecraft/world/level/material/WaterFluid$Flowing net/minecraft/world/level/material/WaterFluid$Flowing +CL: net/minecraft/world/level/material/WaterFluid$Source net/minecraft/world/level/material/WaterFluid$Source +CL: net/minecraft/world/level/material/package-info net/minecraft/world/level/material/package-info +CL: net/minecraft/world/level/package-info net/minecraft/world/level/package-info +CL: net/minecraft/world/level/pathfinder/AmphibiousNodeEvaluator net/minecraft/world/level/pathfinder/AmphibiousNodeEvaluator +CL: net/minecraft/world/level/pathfinder/BinaryHeap net/minecraft/world/level/pathfinder/BinaryHeap +CL: net/minecraft/world/level/pathfinder/BlockPathTypes net/minecraft/world/level/pathfinder/BlockPathTypes +CL: net/minecraft/world/level/pathfinder/FlyNodeEvaluator net/minecraft/world/level/pathfinder/FlyNodeEvaluator +CL: net/minecraft/world/level/pathfinder/Node net/minecraft/world/level/pathfinder/Node +CL: net/minecraft/world/level/pathfinder/NodeEvaluator net/minecraft/world/level/pathfinder/NodeEvaluator +CL: net/minecraft/world/level/pathfinder/Path net/minecraft/world/level/pathfinder/Path +CL: net/minecraft/world/level/pathfinder/PathComputationType net/minecraft/world/level/pathfinder/PathComputationType +CL: net/minecraft/world/level/pathfinder/PathFinder net/minecraft/world/level/pathfinder/PathFinder +CL: net/minecraft/world/level/pathfinder/SwimNodeEvaluator net/minecraft/world/level/pathfinder/SwimNodeEvaluator +CL: net/minecraft/world/level/pathfinder/Target net/minecraft/world/level/pathfinder/Target +CL: net/minecraft/world/level/pathfinder/WalkNodeEvaluator net/minecraft/world/level/pathfinder/WalkNodeEvaluator +CL: net/minecraft/world/level/pathfinder/package-info net/minecraft/world/level/pathfinder/package-info +CL: net/minecraft/world/level/portal/PortalForcer net/minecraft/world/level/portal/PortalForcer +CL: net/minecraft/world/level/portal/PortalInfo net/minecraft/world/level/portal/PortalInfo +CL: net/minecraft/world/level/portal/PortalShape net/minecraft/world/level/portal/PortalShape +CL: net/minecraft/world/level/portal/package-info net/minecraft/world/level/portal/package-info +CL: net/minecraft/world/level/redstone/CollectingNeighborUpdater net/minecraft/world/level/redstone/CollectingNeighborUpdater +CL: net/minecraft/world/level/redstone/CollectingNeighborUpdater$FullNeighborUpdate net/minecraft/world/level/redstone/CollectingNeighborUpdater$FullNeighborUpdate +CL: net/minecraft/world/level/redstone/CollectingNeighborUpdater$MultiNeighborUpdate net/minecraft/world/level/redstone/CollectingNeighborUpdater$MultiNeighborUpdate +CL: net/minecraft/world/level/redstone/CollectingNeighborUpdater$NeighborUpdates net/minecraft/world/level/redstone/CollectingNeighborUpdater$NeighborUpdates +CL: net/minecraft/world/level/redstone/CollectingNeighborUpdater$ShapeUpdate net/minecraft/world/level/redstone/CollectingNeighborUpdater$ShapeUpdate +CL: net/minecraft/world/level/redstone/CollectingNeighborUpdater$SimpleNeighborUpdate net/minecraft/world/level/redstone/CollectingNeighborUpdater$SimpleNeighborUpdate +CL: net/minecraft/world/level/redstone/InstantNeighborUpdater net/minecraft/world/level/redstone/InstantNeighborUpdater +CL: net/minecraft/world/level/redstone/NeighborUpdater net/minecraft/world/level/redstone/NeighborUpdater +CL: net/minecraft/world/level/redstone/Redstone net/minecraft/world/level/redstone/Redstone +CL: net/minecraft/world/level/redstone/package-info net/minecraft/world/level/redstone/package-info +CL: net/minecraft/world/level/saveddata/SavedData net/minecraft/world/level/saveddata/SavedData +CL: net/minecraft/world/level/saveddata/maps/MapBanner net/minecraft/world/level/saveddata/maps/MapBanner +CL: net/minecraft/world/level/saveddata/maps/MapBanner$1 net/minecraft/world/level/saveddata/maps/MapBanner$1 +CL: net/minecraft/world/level/saveddata/maps/MapDecoration net/minecraft/world/level/saveddata/maps/MapDecoration +CL: net/minecraft/world/level/saveddata/maps/MapDecoration$Type net/minecraft/world/level/saveddata/maps/MapDecoration$Type +CL: net/minecraft/world/level/saveddata/maps/MapFrame net/minecraft/world/level/saveddata/maps/MapFrame +CL: net/minecraft/world/level/saveddata/maps/MapIndex net/minecraft/world/level/saveddata/maps/MapIndex +CL: net/minecraft/world/level/saveddata/maps/MapItemSavedData net/minecraft/world/level/saveddata/maps/MapItemSavedData +CL: net/minecraft/world/level/saveddata/maps/MapItemSavedData$HoldingPlayer net/minecraft/world/level/saveddata/maps/MapItemSavedData$HoldingPlayer +CL: net/minecraft/world/level/saveddata/maps/MapItemSavedData$MapPatch net/minecraft/world/level/saveddata/maps/MapItemSavedData$MapPatch +CL: net/minecraft/world/level/saveddata/maps/package-info net/minecraft/world/level/saveddata/maps/package-info +CL: net/minecraft/world/level/saveddata/package-info net/minecraft/world/level/saveddata/package-info +CL: net/minecraft/world/level/storage/CommandStorage net/minecraft/world/level/storage/CommandStorage +CL: net/minecraft/world/level/storage/CommandStorage$Container net/minecraft/world/level/storage/CommandStorage$Container +CL: net/minecraft/world/level/storage/DataVersion net/minecraft/world/level/storage/DataVersion +CL: net/minecraft/world/level/storage/DerivedLevelData net/minecraft/world/level/storage/DerivedLevelData +CL: net/minecraft/world/level/storage/DimensionDataStorage net/minecraft/world/level/storage/DimensionDataStorage +CL: net/minecraft/world/level/storage/LevelData net/minecraft/world/level/storage/LevelData +CL: net/minecraft/world/level/storage/LevelResource net/minecraft/world/level/storage/LevelResource +CL: net/minecraft/world/level/storage/LevelStorageException net/minecraft/world/level/storage/LevelStorageException +CL: net/minecraft/world/level/storage/LevelStorageSource net/minecraft/world/level/storage/LevelStorageSource +CL: net/minecraft/world/level/storage/LevelStorageSource$LevelCandidates net/minecraft/world/level/storage/LevelStorageSource$LevelCandidates +CL: net/minecraft/world/level/storage/LevelStorageSource$LevelDirectory net/minecraft/world/level/storage/LevelStorageSource$LevelDirectory +CL: net/minecraft/world/level/storage/LevelStorageSource$LevelStorageAccess net/minecraft/world/level/storage/LevelStorageSource$LevelStorageAccess +CL: net/minecraft/world/level/storage/LevelStorageSource$LevelStorageAccess$1 net/minecraft/world/level/storage/LevelStorageSource$LevelStorageAccess$1 +CL: net/minecraft/world/level/storage/LevelStorageSource$LevelStorageAccess$2 net/minecraft/world/level/storage/LevelStorageSource$LevelStorageAccess$2 +CL: net/minecraft/world/level/storage/LevelSummary net/minecraft/world/level/storage/LevelSummary +CL: net/minecraft/world/level/storage/LevelSummary$BackupStatus net/minecraft/world/level/storage/LevelSummary$BackupStatus +CL: net/minecraft/world/level/storage/LevelSummary$SymlinkLevelSummary net/minecraft/world/level/storage/LevelSummary$SymlinkLevelSummary +CL: net/minecraft/world/level/storage/LevelVersion net/minecraft/world/level/storage/LevelVersion +CL: net/minecraft/world/level/storage/PlayerDataStorage net/minecraft/world/level/storage/PlayerDataStorage +CL: net/minecraft/world/level/storage/PrimaryLevelData net/minecraft/world/level/storage/PrimaryLevelData +CL: net/minecraft/world/level/storage/PrimaryLevelData$SpecialWorldProperty net/minecraft/world/level/storage/PrimaryLevelData$SpecialWorldProperty +CL: net/minecraft/world/level/storage/ServerLevelData net/minecraft/world/level/storage/ServerLevelData +CL: net/minecraft/world/level/storage/WorldData net/minecraft/world/level/storage/WorldData +CL: net/minecraft/world/level/storage/WritableLevelData net/minecraft/world/level/storage/WritableLevelData +CL: net/minecraft/world/level/storage/loot/BuiltInLootTables net/minecraft/world/level/storage/loot/BuiltInLootTables +CL: net/minecraft/world/level/storage/loot/Deserializers net/minecraft/world/level/storage/loot/Deserializers +CL: net/minecraft/world/level/storage/loot/GsonAdapterFactory net/minecraft/world/level/storage/loot/GsonAdapterFactory +CL: net/minecraft/world/level/storage/loot/GsonAdapterFactory$Builder net/minecraft/world/level/storage/loot/GsonAdapterFactory$Builder +CL: net/minecraft/world/level/storage/loot/GsonAdapterFactory$InlineSerializer net/minecraft/world/level/storage/loot/GsonAdapterFactory$InlineSerializer +CL: net/minecraft/world/level/storage/loot/GsonAdapterFactory$JsonAdapter net/minecraft/world/level/storage/loot/GsonAdapterFactory$JsonAdapter +CL: net/minecraft/world/level/storage/loot/IntRange net/minecraft/world/level/storage/loot/IntRange +CL: net/minecraft/world/level/storage/loot/IntRange$IntChecker net/minecraft/world/level/storage/loot/IntRange$IntChecker +CL: net/minecraft/world/level/storage/loot/IntRange$IntLimiter net/minecraft/world/level/storage/loot/IntRange$IntLimiter +CL: net/minecraft/world/level/storage/loot/IntRange$Serializer net/minecraft/world/level/storage/loot/IntRange$Serializer +CL: net/minecraft/world/level/storage/loot/LootContext net/minecraft/world/level/storage/loot/LootContext +CL: net/minecraft/world/level/storage/loot/LootContext$Builder net/minecraft/world/level/storage/loot/LootContext$Builder +CL: net/minecraft/world/level/storage/loot/LootContext$EntityTarget net/minecraft/world/level/storage/loot/LootContext$EntityTarget +CL: net/minecraft/world/level/storage/loot/LootContext$EntityTarget$Serializer net/minecraft/world/level/storage/loot/LootContext$EntityTarget$Serializer +CL: net/minecraft/world/level/storage/loot/LootContext$VisitedEntry net/minecraft/world/level/storage/loot/LootContext$VisitedEntry +CL: net/minecraft/world/level/storage/loot/LootContextUser net/minecraft/world/level/storage/loot/LootContextUser +CL: net/minecraft/world/level/storage/loot/LootDataId net/minecraft/world/level/storage/loot/LootDataId +CL: net/minecraft/world/level/storage/loot/LootDataManager net/minecraft/world/level/storage/loot/LootDataManager +CL: net/minecraft/world/level/storage/loot/LootDataManager$1 net/minecraft/world/level/storage/loot/LootDataManager$1 +CL: net/minecraft/world/level/storage/loot/LootDataManager$CompositePredicate net/minecraft/world/level/storage/loot/LootDataManager$CompositePredicate +CL: net/minecraft/world/level/storage/loot/LootDataManager$FunctionSequence net/minecraft/world/level/storage/loot/LootDataManager$FunctionSequence +CL: net/minecraft/world/level/storage/loot/LootDataResolver net/minecraft/world/level/storage/loot/LootDataResolver +CL: net/minecraft/world/level/storage/loot/LootDataType net/minecraft/world/level/storage/loot/LootDataType +CL: net/minecraft/world/level/storage/loot/LootDataType$Validator net/minecraft/world/level/storage/loot/LootDataType$Validator +CL: net/minecraft/world/level/storage/loot/LootParams net/minecraft/world/level/storage/loot/LootParams +CL: net/minecraft/world/level/storage/loot/LootParams$Builder net/minecraft/world/level/storage/loot/LootParams$Builder +CL: net/minecraft/world/level/storage/loot/LootParams$DynamicDrop net/minecraft/world/level/storage/loot/LootParams$DynamicDrop +CL: net/minecraft/world/level/storage/loot/LootPool net/minecraft/world/level/storage/loot/LootPool +CL: net/minecraft/world/level/storage/loot/LootPool$Builder net/minecraft/world/level/storage/loot/LootPool$Builder +CL: net/minecraft/world/level/storage/loot/LootPool$Serializer net/minecraft/world/level/storage/loot/LootPool$Serializer +CL: net/minecraft/world/level/storage/loot/LootTable net/minecraft/world/level/storage/loot/LootTable +CL: net/minecraft/world/level/storage/loot/LootTable$Builder net/minecraft/world/level/storage/loot/LootTable$Builder +CL: net/minecraft/world/level/storage/loot/LootTable$Serializer net/minecraft/world/level/storage/loot/LootTable$Serializer +CL: net/minecraft/world/level/storage/loot/Serializer net/minecraft/world/level/storage/loot/Serializer +CL: net/minecraft/world/level/storage/loot/SerializerType net/minecraft/world/level/storage/loot/SerializerType +CL: net/minecraft/world/level/storage/loot/ValidationContext net/minecraft/world/level/storage/loot/ValidationContext +CL: net/minecraft/world/level/storage/loot/entries/AlternativesEntry net/minecraft/world/level/storage/loot/entries/AlternativesEntry +CL: net/minecraft/world/level/storage/loot/entries/AlternativesEntry$Builder net/minecraft/world/level/storage/loot/entries/AlternativesEntry$Builder +CL: net/minecraft/world/level/storage/loot/entries/ComposableEntryContainer net/minecraft/world/level/storage/loot/entries/ComposableEntryContainer +CL: net/minecraft/world/level/storage/loot/entries/CompositeEntryBase net/minecraft/world/level/storage/loot/entries/CompositeEntryBase +CL: net/minecraft/world/level/storage/loot/entries/CompositeEntryBase$1 net/minecraft/world/level/storage/loot/entries/CompositeEntryBase$1 +CL: net/minecraft/world/level/storage/loot/entries/CompositeEntryBase$CompositeEntryConstructor net/minecraft/world/level/storage/loot/entries/CompositeEntryBase$CompositeEntryConstructor +CL: net/minecraft/world/level/storage/loot/entries/DynamicLoot net/minecraft/world/level/storage/loot/entries/DynamicLoot +CL: net/minecraft/world/level/storage/loot/entries/DynamicLoot$Serializer net/minecraft/world/level/storage/loot/entries/DynamicLoot$Serializer +CL: net/minecraft/world/level/storage/loot/entries/EmptyLootItem net/minecraft/world/level/storage/loot/entries/EmptyLootItem +CL: net/minecraft/world/level/storage/loot/entries/EmptyLootItem$Serializer net/minecraft/world/level/storage/loot/entries/EmptyLootItem$Serializer +CL: net/minecraft/world/level/storage/loot/entries/EntryGroup net/minecraft/world/level/storage/loot/entries/EntryGroup +CL: net/minecraft/world/level/storage/loot/entries/EntryGroup$Builder net/minecraft/world/level/storage/loot/entries/EntryGroup$Builder +CL: net/minecraft/world/level/storage/loot/entries/LootItem net/minecraft/world/level/storage/loot/entries/LootItem +CL: net/minecraft/world/level/storage/loot/entries/LootItem$Serializer net/minecraft/world/level/storage/loot/entries/LootItem$Serializer +CL: net/minecraft/world/level/storage/loot/entries/LootPoolEntries net/minecraft/world/level/storage/loot/entries/LootPoolEntries +CL: net/minecraft/world/level/storage/loot/entries/LootPoolEntry net/minecraft/world/level/storage/loot/entries/LootPoolEntry +CL: net/minecraft/world/level/storage/loot/entries/LootPoolEntryContainer net/minecraft/world/level/storage/loot/entries/LootPoolEntryContainer +CL: net/minecraft/world/level/storage/loot/entries/LootPoolEntryContainer$Builder net/minecraft/world/level/storage/loot/entries/LootPoolEntryContainer$Builder +CL: net/minecraft/world/level/storage/loot/entries/LootPoolEntryContainer$Serializer net/minecraft/world/level/storage/loot/entries/LootPoolEntryContainer$Serializer +CL: net/minecraft/world/level/storage/loot/entries/LootPoolEntryType net/minecraft/world/level/storage/loot/entries/LootPoolEntryType +CL: net/minecraft/world/level/storage/loot/entries/LootPoolSingletonContainer net/minecraft/world/level/storage/loot/entries/LootPoolSingletonContainer +CL: net/minecraft/world/level/storage/loot/entries/LootPoolSingletonContainer$1 net/minecraft/world/level/storage/loot/entries/LootPoolSingletonContainer$1 +CL: net/minecraft/world/level/storage/loot/entries/LootPoolSingletonContainer$Builder net/minecraft/world/level/storage/loot/entries/LootPoolSingletonContainer$Builder +CL: net/minecraft/world/level/storage/loot/entries/LootPoolSingletonContainer$DummyBuilder net/minecraft/world/level/storage/loot/entries/LootPoolSingletonContainer$DummyBuilder +CL: net/minecraft/world/level/storage/loot/entries/LootPoolSingletonContainer$EntryBase net/minecraft/world/level/storage/loot/entries/LootPoolSingletonContainer$EntryBase +CL: net/minecraft/world/level/storage/loot/entries/LootPoolSingletonContainer$EntryConstructor net/minecraft/world/level/storage/loot/entries/LootPoolSingletonContainer$EntryConstructor +CL: net/minecraft/world/level/storage/loot/entries/LootPoolSingletonContainer$Serializer net/minecraft/world/level/storage/loot/entries/LootPoolSingletonContainer$Serializer +CL: net/minecraft/world/level/storage/loot/entries/LootTableReference net/minecraft/world/level/storage/loot/entries/LootTableReference +CL: net/minecraft/world/level/storage/loot/entries/LootTableReference$Serializer net/minecraft/world/level/storage/loot/entries/LootTableReference$Serializer +CL: net/minecraft/world/level/storage/loot/entries/SequentialEntry net/minecraft/world/level/storage/loot/entries/SequentialEntry +CL: net/minecraft/world/level/storage/loot/entries/SequentialEntry$Builder net/minecraft/world/level/storage/loot/entries/SequentialEntry$Builder +CL: net/minecraft/world/level/storage/loot/entries/TagEntry net/minecraft/world/level/storage/loot/entries/TagEntry +CL: net/minecraft/world/level/storage/loot/entries/TagEntry$1 net/minecraft/world/level/storage/loot/entries/TagEntry$1 +CL: net/minecraft/world/level/storage/loot/entries/TagEntry$Serializer net/minecraft/world/level/storage/loot/entries/TagEntry$Serializer +CL: net/minecraft/world/level/storage/loot/entries/package-info net/minecraft/world/level/storage/loot/entries/package-info +CL: net/minecraft/world/level/storage/loot/functions/ApplyBonusCount net/minecraft/world/level/storage/loot/functions/ApplyBonusCount +CL: net/minecraft/world/level/storage/loot/functions/ApplyBonusCount$BinomialWithBonusCount net/minecraft/world/level/storage/loot/functions/ApplyBonusCount$BinomialWithBonusCount +CL: net/minecraft/world/level/storage/loot/functions/ApplyBonusCount$Formula net/minecraft/world/level/storage/loot/functions/ApplyBonusCount$Formula +CL: net/minecraft/world/level/storage/loot/functions/ApplyBonusCount$FormulaDeserializer net/minecraft/world/level/storage/loot/functions/ApplyBonusCount$FormulaDeserializer +CL: net/minecraft/world/level/storage/loot/functions/ApplyBonusCount$OreDrops net/minecraft/world/level/storage/loot/functions/ApplyBonusCount$OreDrops +CL: net/minecraft/world/level/storage/loot/functions/ApplyBonusCount$Serializer net/minecraft/world/level/storage/loot/functions/ApplyBonusCount$Serializer +CL: net/minecraft/world/level/storage/loot/functions/ApplyBonusCount$UniformBonusCount net/minecraft/world/level/storage/loot/functions/ApplyBonusCount$UniformBonusCount +CL: net/minecraft/world/level/storage/loot/functions/ApplyExplosionDecay net/minecraft/world/level/storage/loot/functions/ApplyExplosionDecay +CL: net/minecraft/world/level/storage/loot/functions/ApplyExplosionDecay$Serializer net/minecraft/world/level/storage/loot/functions/ApplyExplosionDecay$Serializer +CL: net/minecraft/world/level/storage/loot/functions/CopyBlockState net/minecraft/world/level/storage/loot/functions/CopyBlockState +CL: net/minecraft/world/level/storage/loot/functions/CopyBlockState$Builder net/minecraft/world/level/storage/loot/functions/CopyBlockState$Builder +CL: net/minecraft/world/level/storage/loot/functions/CopyBlockState$Serializer net/minecraft/world/level/storage/loot/functions/CopyBlockState$Serializer +CL: net/minecraft/world/level/storage/loot/functions/CopyNameFunction net/minecraft/world/level/storage/loot/functions/CopyNameFunction +CL: net/minecraft/world/level/storage/loot/functions/CopyNameFunction$NameSource net/minecraft/world/level/storage/loot/functions/CopyNameFunction$NameSource +CL: net/minecraft/world/level/storage/loot/functions/CopyNameFunction$Serializer net/minecraft/world/level/storage/loot/functions/CopyNameFunction$Serializer +CL: net/minecraft/world/level/storage/loot/functions/CopyNbtFunction net/minecraft/world/level/storage/loot/functions/CopyNbtFunction +CL: net/minecraft/world/level/storage/loot/functions/CopyNbtFunction$Builder net/minecraft/world/level/storage/loot/functions/CopyNbtFunction$Builder +CL: net/minecraft/world/level/storage/loot/functions/CopyNbtFunction$CopyOperation net/minecraft/world/level/storage/loot/functions/CopyNbtFunction$CopyOperation +CL: net/minecraft/world/level/storage/loot/functions/CopyNbtFunction$MergeStrategy net/minecraft/world/level/storage/loot/functions/CopyNbtFunction$MergeStrategy +CL: net/minecraft/world/level/storage/loot/functions/CopyNbtFunction$MergeStrategy$1 net/minecraft/world/level/storage/loot/functions/CopyNbtFunction$MergeStrategy$1 +CL: net/minecraft/world/level/storage/loot/functions/CopyNbtFunction$MergeStrategy$2 net/minecraft/world/level/storage/loot/functions/CopyNbtFunction$MergeStrategy$2 +CL: net/minecraft/world/level/storage/loot/functions/CopyNbtFunction$MergeStrategy$3 net/minecraft/world/level/storage/loot/functions/CopyNbtFunction$MergeStrategy$3 +CL: net/minecraft/world/level/storage/loot/functions/CopyNbtFunction$Serializer net/minecraft/world/level/storage/loot/functions/CopyNbtFunction$Serializer +CL: net/minecraft/world/level/storage/loot/functions/EnchantRandomlyFunction net/minecraft/world/level/storage/loot/functions/EnchantRandomlyFunction +CL: net/minecraft/world/level/storage/loot/functions/EnchantRandomlyFunction$Builder net/minecraft/world/level/storage/loot/functions/EnchantRandomlyFunction$Builder +CL: net/minecraft/world/level/storage/loot/functions/EnchantRandomlyFunction$Serializer net/minecraft/world/level/storage/loot/functions/EnchantRandomlyFunction$Serializer +CL: net/minecraft/world/level/storage/loot/functions/EnchantWithLevelsFunction net/minecraft/world/level/storage/loot/functions/EnchantWithLevelsFunction +CL: net/minecraft/world/level/storage/loot/functions/EnchantWithLevelsFunction$Builder net/minecraft/world/level/storage/loot/functions/EnchantWithLevelsFunction$Builder +CL: net/minecraft/world/level/storage/loot/functions/EnchantWithLevelsFunction$Serializer net/minecraft/world/level/storage/loot/functions/EnchantWithLevelsFunction$Serializer +CL: net/minecraft/world/level/storage/loot/functions/ExplorationMapFunction net/minecraft/world/level/storage/loot/functions/ExplorationMapFunction +CL: net/minecraft/world/level/storage/loot/functions/ExplorationMapFunction$Builder net/minecraft/world/level/storage/loot/functions/ExplorationMapFunction$Builder +CL: net/minecraft/world/level/storage/loot/functions/ExplorationMapFunction$Serializer net/minecraft/world/level/storage/loot/functions/ExplorationMapFunction$Serializer +CL: net/minecraft/world/level/storage/loot/functions/FillPlayerHead net/minecraft/world/level/storage/loot/functions/FillPlayerHead +CL: net/minecraft/world/level/storage/loot/functions/FillPlayerHead$Serializer net/minecraft/world/level/storage/loot/functions/FillPlayerHead$Serializer +CL: net/minecraft/world/level/storage/loot/functions/FunctionReference net/minecraft/world/level/storage/loot/functions/FunctionReference +CL: net/minecraft/world/level/storage/loot/functions/FunctionReference$Serializer net/minecraft/world/level/storage/loot/functions/FunctionReference$Serializer +CL: net/minecraft/world/level/storage/loot/functions/FunctionUserBuilder net/minecraft/world/level/storage/loot/functions/FunctionUserBuilder +CL: net/minecraft/world/level/storage/loot/functions/LimitCount net/minecraft/world/level/storage/loot/functions/LimitCount +CL: net/minecraft/world/level/storage/loot/functions/LimitCount$Serializer net/minecraft/world/level/storage/loot/functions/LimitCount$Serializer +CL: net/minecraft/world/level/storage/loot/functions/LootItemConditionalFunction net/minecraft/world/level/storage/loot/functions/LootItemConditionalFunction +CL: net/minecraft/world/level/storage/loot/functions/LootItemConditionalFunction$Builder net/minecraft/world/level/storage/loot/functions/LootItemConditionalFunction$Builder +CL: net/minecraft/world/level/storage/loot/functions/LootItemConditionalFunction$DummyBuilder net/minecraft/world/level/storage/loot/functions/LootItemConditionalFunction$DummyBuilder +CL: net/minecraft/world/level/storage/loot/functions/LootItemConditionalFunction$Serializer net/minecraft/world/level/storage/loot/functions/LootItemConditionalFunction$Serializer +CL: net/minecraft/world/level/storage/loot/functions/LootItemFunction net/minecraft/world/level/storage/loot/functions/LootItemFunction +CL: net/minecraft/world/level/storage/loot/functions/LootItemFunction$Builder net/minecraft/world/level/storage/loot/functions/LootItemFunction$Builder +CL: net/minecraft/world/level/storage/loot/functions/LootItemFunctionType net/minecraft/world/level/storage/loot/functions/LootItemFunctionType +CL: net/minecraft/world/level/storage/loot/functions/LootItemFunctions net/minecraft/world/level/storage/loot/functions/LootItemFunctions +CL: net/minecraft/world/level/storage/loot/functions/LootingEnchantFunction net/minecraft/world/level/storage/loot/functions/LootingEnchantFunction +CL: net/minecraft/world/level/storage/loot/functions/LootingEnchantFunction$Builder net/minecraft/world/level/storage/loot/functions/LootingEnchantFunction$Builder +CL: net/minecraft/world/level/storage/loot/functions/LootingEnchantFunction$Serializer net/minecraft/world/level/storage/loot/functions/LootingEnchantFunction$Serializer +CL: net/minecraft/world/level/storage/loot/functions/SetAttributesFunction net/minecraft/world/level/storage/loot/functions/SetAttributesFunction +CL: net/minecraft/world/level/storage/loot/functions/SetAttributesFunction$1 net/minecraft/world/level/storage/loot/functions/SetAttributesFunction$1 +CL: net/minecraft/world/level/storage/loot/functions/SetAttributesFunction$Builder net/minecraft/world/level/storage/loot/functions/SetAttributesFunction$Builder +CL: net/minecraft/world/level/storage/loot/functions/SetAttributesFunction$Modifier net/minecraft/world/level/storage/loot/functions/SetAttributesFunction$Modifier +CL: net/minecraft/world/level/storage/loot/functions/SetAttributesFunction$ModifierBuilder net/minecraft/world/level/storage/loot/functions/SetAttributesFunction$ModifierBuilder +CL: net/minecraft/world/level/storage/loot/functions/SetAttributesFunction$Serializer net/minecraft/world/level/storage/loot/functions/SetAttributesFunction$Serializer +CL: net/minecraft/world/level/storage/loot/functions/SetBannerPatternFunction net/minecraft/world/level/storage/loot/functions/SetBannerPatternFunction +CL: net/minecraft/world/level/storage/loot/functions/SetBannerPatternFunction$Builder net/minecraft/world/level/storage/loot/functions/SetBannerPatternFunction$Builder +CL: net/minecraft/world/level/storage/loot/functions/SetBannerPatternFunction$Serializer net/minecraft/world/level/storage/loot/functions/SetBannerPatternFunction$Serializer +CL: net/minecraft/world/level/storage/loot/functions/SetContainerContents net/minecraft/world/level/storage/loot/functions/SetContainerContents +CL: net/minecraft/world/level/storage/loot/functions/SetContainerContents$Builder net/minecraft/world/level/storage/loot/functions/SetContainerContents$Builder +CL: net/minecraft/world/level/storage/loot/functions/SetContainerContents$Serializer net/minecraft/world/level/storage/loot/functions/SetContainerContents$Serializer +CL: net/minecraft/world/level/storage/loot/functions/SetContainerLootTable net/minecraft/world/level/storage/loot/functions/SetContainerLootTable +CL: net/minecraft/world/level/storage/loot/functions/SetContainerLootTable$Serializer net/minecraft/world/level/storage/loot/functions/SetContainerLootTable$Serializer +CL: net/minecraft/world/level/storage/loot/functions/SetEnchantmentsFunction net/minecraft/world/level/storage/loot/functions/SetEnchantmentsFunction +CL: net/minecraft/world/level/storage/loot/functions/SetEnchantmentsFunction$Builder net/minecraft/world/level/storage/loot/functions/SetEnchantmentsFunction$Builder +CL: net/minecraft/world/level/storage/loot/functions/SetEnchantmentsFunction$Serializer net/minecraft/world/level/storage/loot/functions/SetEnchantmentsFunction$Serializer +CL: net/minecraft/world/level/storage/loot/functions/SetInstrumentFunction net/minecraft/world/level/storage/loot/functions/SetInstrumentFunction +CL: net/minecraft/world/level/storage/loot/functions/SetInstrumentFunction$Serializer net/minecraft/world/level/storage/loot/functions/SetInstrumentFunction$Serializer +CL: net/minecraft/world/level/storage/loot/functions/SetItemCountFunction net/minecraft/world/level/storage/loot/functions/SetItemCountFunction +CL: net/minecraft/world/level/storage/loot/functions/SetItemCountFunction$Serializer net/minecraft/world/level/storage/loot/functions/SetItemCountFunction$Serializer +CL: net/minecraft/world/level/storage/loot/functions/SetItemDamageFunction net/minecraft/world/level/storage/loot/functions/SetItemDamageFunction +CL: net/minecraft/world/level/storage/loot/functions/SetItemDamageFunction$Serializer net/minecraft/world/level/storage/loot/functions/SetItemDamageFunction$Serializer +CL: net/minecraft/world/level/storage/loot/functions/SetLoreFunction net/minecraft/world/level/storage/loot/functions/SetLoreFunction +CL: net/minecraft/world/level/storage/loot/functions/SetLoreFunction$Builder net/minecraft/world/level/storage/loot/functions/SetLoreFunction$Builder +CL: net/minecraft/world/level/storage/loot/functions/SetLoreFunction$Serializer net/minecraft/world/level/storage/loot/functions/SetLoreFunction$Serializer +CL: net/minecraft/world/level/storage/loot/functions/SetNameFunction net/minecraft/world/level/storage/loot/functions/SetNameFunction +CL: net/minecraft/world/level/storage/loot/functions/SetNameFunction$Serializer net/minecraft/world/level/storage/loot/functions/SetNameFunction$Serializer +CL: net/minecraft/world/level/storage/loot/functions/SetNbtFunction net/minecraft/world/level/storage/loot/functions/SetNbtFunction +CL: net/minecraft/world/level/storage/loot/functions/SetNbtFunction$Serializer net/minecraft/world/level/storage/loot/functions/SetNbtFunction$Serializer +CL: net/minecraft/world/level/storage/loot/functions/SetPotionFunction net/minecraft/world/level/storage/loot/functions/SetPotionFunction +CL: net/minecraft/world/level/storage/loot/functions/SetPotionFunction$Serializer net/minecraft/world/level/storage/loot/functions/SetPotionFunction$Serializer +CL: net/minecraft/world/level/storage/loot/functions/SetStewEffectFunction net/minecraft/world/level/storage/loot/functions/SetStewEffectFunction +CL: net/minecraft/world/level/storage/loot/functions/SetStewEffectFunction$Builder net/minecraft/world/level/storage/loot/functions/SetStewEffectFunction$Builder +CL: net/minecraft/world/level/storage/loot/functions/SetStewEffectFunction$Serializer net/minecraft/world/level/storage/loot/functions/SetStewEffectFunction$Serializer +CL: net/minecraft/world/level/storage/loot/functions/SmeltItemFunction net/minecraft/world/level/storage/loot/functions/SmeltItemFunction +CL: net/minecraft/world/level/storage/loot/functions/SmeltItemFunction$Serializer net/minecraft/world/level/storage/loot/functions/SmeltItemFunction$Serializer +CL: net/minecraft/world/level/storage/loot/functions/package-info net/minecraft/world/level/storage/loot/functions/package-info +CL: net/minecraft/world/level/storage/loot/package-info net/minecraft/world/level/storage/loot/package-info +CL: net/minecraft/world/level/storage/loot/parameters/LootContextParam net/minecraft/world/level/storage/loot/parameters/LootContextParam +CL: net/minecraft/world/level/storage/loot/parameters/LootContextParamSet net/minecraft/world/level/storage/loot/parameters/LootContextParamSet +CL: net/minecraft/world/level/storage/loot/parameters/LootContextParamSet$Builder net/minecraft/world/level/storage/loot/parameters/LootContextParamSet$Builder +CL: net/minecraft/world/level/storage/loot/parameters/LootContextParamSets net/minecraft/world/level/storage/loot/parameters/LootContextParamSets +CL: net/minecraft/world/level/storage/loot/parameters/LootContextParams net/minecraft/world/level/storage/loot/parameters/LootContextParams +CL: net/minecraft/world/level/storage/loot/parameters/package-info net/minecraft/world/level/storage/loot/parameters/package-info +CL: net/minecraft/world/level/storage/loot/predicates/AllOfCondition net/minecraft/world/level/storage/loot/predicates/AllOfCondition +CL: net/minecraft/world/level/storage/loot/predicates/AllOfCondition$Builder net/minecraft/world/level/storage/loot/predicates/AllOfCondition$Builder +CL: net/minecraft/world/level/storage/loot/predicates/AllOfCondition$Serializer net/minecraft/world/level/storage/loot/predicates/AllOfCondition$Serializer +CL: net/minecraft/world/level/storage/loot/predicates/AnyOfCondition net/minecraft/world/level/storage/loot/predicates/AnyOfCondition +CL: net/minecraft/world/level/storage/loot/predicates/AnyOfCondition$Builder net/minecraft/world/level/storage/loot/predicates/AnyOfCondition$Builder +CL: net/minecraft/world/level/storage/loot/predicates/AnyOfCondition$Serializer net/minecraft/world/level/storage/loot/predicates/AnyOfCondition$Serializer +CL: net/minecraft/world/level/storage/loot/predicates/BonusLevelTableCondition net/minecraft/world/level/storage/loot/predicates/BonusLevelTableCondition +CL: net/minecraft/world/level/storage/loot/predicates/BonusLevelTableCondition$Serializer net/minecraft/world/level/storage/loot/predicates/BonusLevelTableCondition$Serializer +CL: net/minecraft/world/level/storage/loot/predicates/CompositeLootItemCondition net/minecraft/world/level/storage/loot/predicates/CompositeLootItemCondition +CL: net/minecraft/world/level/storage/loot/predicates/CompositeLootItemCondition$Builder net/minecraft/world/level/storage/loot/predicates/CompositeLootItemCondition$Builder +CL: net/minecraft/world/level/storage/loot/predicates/CompositeLootItemCondition$Serializer net/minecraft/world/level/storage/loot/predicates/CompositeLootItemCondition$Serializer +CL: net/minecraft/world/level/storage/loot/predicates/ConditionReference net/minecraft/world/level/storage/loot/predicates/ConditionReference +CL: net/minecraft/world/level/storage/loot/predicates/ConditionReference$Serializer net/minecraft/world/level/storage/loot/predicates/ConditionReference$Serializer +CL: net/minecraft/world/level/storage/loot/predicates/ConditionUserBuilder net/minecraft/world/level/storage/loot/predicates/ConditionUserBuilder +CL: net/minecraft/world/level/storage/loot/predicates/DamageSourceCondition net/minecraft/world/level/storage/loot/predicates/DamageSourceCondition +CL: net/minecraft/world/level/storage/loot/predicates/DamageSourceCondition$Serializer net/minecraft/world/level/storage/loot/predicates/DamageSourceCondition$Serializer +CL: net/minecraft/world/level/storage/loot/predicates/EntityHasScoreCondition net/minecraft/world/level/storage/loot/predicates/EntityHasScoreCondition +CL: net/minecraft/world/level/storage/loot/predicates/EntityHasScoreCondition$Builder net/minecraft/world/level/storage/loot/predicates/EntityHasScoreCondition$Builder +CL: net/minecraft/world/level/storage/loot/predicates/EntityHasScoreCondition$Serializer net/minecraft/world/level/storage/loot/predicates/EntityHasScoreCondition$Serializer +CL: net/minecraft/world/level/storage/loot/predicates/ExplosionCondition net/minecraft/world/level/storage/loot/predicates/ExplosionCondition +CL: net/minecraft/world/level/storage/loot/predicates/ExplosionCondition$Serializer net/minecraft/world/level/storage/loot/predicates/ExplosionCondition$Serializer +CL: net/minecraft/world/level/storage/loot/predicates/InvertedLootItemCondition net/minecraft/world/level/storage/loot/predicates/InvertedLootItemCondition +CL: net/minecraft/world/level/storage/loot/predicates/InvertedLootItemCondition$Serializer net/minecraft/world/level/storage/loot/predicates/InvertedLootItemCondition$Serializer +CL: net/minecraft/world/level/storage/loot/predicates/LocationCheck net/minecraft/world/level/storage/loot/predicates/LocationCheck +CL: net/minecraft/world/level/storage/loot/predicates/LocationCheck$Serializer net/minecraft/world/level/storage/loot/predicates/LocationCheck$Serializer +CL: net/minecraft/world/level/storage/loot/predicates/LootItemBlockStatePropertyCondition net/minecraft/world/level/storage/loot/predicates/LootItemBlockStatePropertyCondition +CL: net/minecraft/world/level/storage/loot/predicates/LootItemBlockStatePropertyCondition$Builder net/minecraft/world/level/storage/loot/predicates/LootItemBlockStatePropertyCondition$Builder +CL: net/minecraft/world/level/storage/loot/predicates/LootItemBlockStatePropertyCondition$Serializer net/minecraft/world/level/storage/loot/predicates/LootItemBlockStatePropertyCondition$Serializer +CL: net/minecraft/world/level/storage/loot/predicates/LootItemCondition net/minecraft/world/level/storage/loot/predicates/LootItemCondition +CL: net/minecraft/world/level/storage/loot/predicates/LootItemCondition$Builder net/minecraft/world/level/storage/loot/predicates/LootItemCondition$Builder +CL: net/minecraft/world/level/storage/loot/predicates/LootItemConditionType net/minecraft/world/level/storage/loot/predicates/LootItemConditionType +CL: net/minecraft/world/level/storage/loot/predicates/LootItemConditions net/minecraft/world/level/storage/loot/predicates/LootItemConditions +CL: net/minecraft/world/level/storage/loot/predicates/LootItemEntityPropertyCondition net/minecraft/world/level/storage/loot/predicates/LootItemEntityPropertyCondition +CL: net/minecraft/world/level/storage/loot/predicates/LootItemEntityPropertyCondition$Serializer net/minecraft/world/level/storage/loot/predicates/LootItemEntityPropertyCondition$Serializer +CL: net/minecraft/world/level/storage/loot/predicates/LootItemKilledByPlayerCondition net/minecraft/world/level/storage/loot/predicates/LootItemKilledByPlayerCondition +CL: net/minecraft/world/level/storage/loot/predicates/LootItemKilledByPlayerCondition$Serializer net/minecraft/world/level/storage/loot/predicates/LootItemKilledByPlayerCondition$Serializer +CL: net/minecraft/world/level/storage/loot/predicates/LootItemRandomChanceCondition net/minecraft/world/level/storage/loot/predicates/LootItemRandomChanceCondition +CL: net/minecraft/world/level/storage/loot/predicates/LootItemRandomChanceCondition$Serializer net/minecraft/world/level/storage/loot/predicates/LootItemRandomChanceCondition$Serializer +CL: net/minecraft/world/level/storage/loot/predicates/LootItemRandomChanceWithLootingCondition net/minecraft/world/level/storage/loot/predicates/LootItemRandomChanceWithLootingCondition +CL: net/minecraft/world/level/storage/loot/predicates/LootItemRandomChanceWithLootingCondition$Serializer net/minecraft/world/level/storage/loot/predicates/LootItemRandomChanceWithLootingCondition$Serializer +CL: net/minecraft/world/level/storage/loot/predicates/MatchTool net/minecraft/world/level/storage/loot/predicates/MatchTool +CL: net/minecraft/world/level/storage/loot/predicates/MatchTool$Serializer net/minecraft/world/level/storage/loot/predicates/MatchTool$Serializer +CL: net/minecraft/world/level/storage/loot/predicates/TimeCheck net/minecraft/world/level/storage/loot/predicates/TimeCheck +CL: net/minecraft/world/level/storage/loot/predicates/TimeCheck$Builder net/minecraft/world/level/storage/loot/predicates/TimeCheck$Builder +CL: net/minecraft/world/level/storage/loot/predicates/TimeCheck$Serializer net/minecraft/world/level/storage/loot/predicates/TimeCheck$Serializer +CL: net/minecraft/world/level/storage/loot/predicates/ValueCheckCondition net/minecraft/world/level/storage/loot/predicates/ValueCheckCondition +CL: net/minecraft/world/level/storage/loot/predicates/ValueCheckCondition$Serializer net/minecraft/world/level/storage/loot/predicates/ValueCheckCondition$Serializer +CL: net/minecraft/world/level/storage/loot/predicates/WeatherCheck net/minecraft/world/level/storage/loot/predicates/WeatherCheck +CL: net/minecraft/world/level/storage/loot/predicates/WeatherCheck$Builder net/minecraft/world/level/storage/loot/predicates/WeatherCheck$Builder +CL: net/minecraft/world/level/storage/loot/predicates/WeatherCheck$Serializer net/minecraft/world/level/storage/loot/predicates/WeatherCheck$Serializer +CL: net/minecraft/world/level/storage/loot/predicates/package-info net/minecraft/world/level/storage/loot/predicates/package-info +CL: net/minecraft/world/level/storage/loot/providers/nbt/ContextNbtProvider net/minecraft/world/level/storage/loot/providers/nbt/ContextNbtProvider +CL: net/minecraft/world/level/storage/loot/providers/nbt/ContextNbtProvider$1 net/minecraft/world/level/storage/loot/providers/nbt/ContextNbtProvider$1 +CL: net/minecraft/world/level/storage/loot/providers/nbt/ContextNbtProvider$2 net/minecraft/world/level/storage/loot/providers/nbt/ContextNbtProvider$2 +CL: net/minecraft/world/level/storage/loot/providers/nbt/ContextNbtProvider$Getter net/minecraft/world/level/storage/loot/providers/nbt/ContextNbtProvider$Getter +CL: net/minecraft/world/level/storage/loot/providers/nbt/ContextNbtProvider$InlineSerializer net/minecraft/world/level/storage/loot/providers/nbt/ContextNbtProvider$InlineSerializer +CL: net/minecraft/world/level/storage/loot/providers/nbt/ContextNbtProvider$Serializer net/minecraft/world/level/storage/loot/providers/nbt/ContextNbtProvider$Serializer +CL: net/minecraft/world/level/storage/loot/providers/nbt/LootNbtProviderType net/minecraft/world/level/storage/loot/providers/nbt/LootNbtProviderType +CL: net/minecraft/world/level/storage/loot/providers/nbt/NbtProvider net/minecraft/world/level/storage/loot/providers/nbt/NbtProvider +CL: net/minecraft/world/level/storage/loot/providers/nbt/NbtProviders net/minecraft/world/level/storage/loot/providers/nbt/NbtProviders +CL: net/minecraft/world/level/storage/loot/providers/nbt/StorageNbtProvider net/minecraft/world/level/storage/loot/providers/nbt/StorageNbtProvider +CL: net/minecraft/world/level/storage/loot/providers/nbt/StorageNbtProvider$Serializer net/minecraft/world/level/storage/loot/providers/nbt/StorageNbtProvider$Serializer +CL: net/minecraft/world/level/storage/loot/providers/nbt/package-info net/minecraft/world/level/storage/loot/providers/nbt/package-info +CL: net/minecraft/world/level/storage/loot/providers/number/BinomialDistributionGenerator net/minecraft/world/level/storage/loot/providers/number/BinomialDistributionGenerator +CL: net/minecraft/world/level/storage/loot/providers/number/BinomialDistributionGenerator$Serializer net/minecraft/world/level/storage/loot/providers/number/BinomialDistributionGenerator$Serializer +CL: net/minecraft/world/level/storage/loot/providers/number/ConstantValue net/minecraft/world/level/storage/loot/providers/number/ConstantValue +CL: net/minecraft/world/level/storage/loot/providers/number/ConstantValue$InlineSerializer net/minecraft/world/level/storage/loot/providers/number/ConstantValue$InlineSerializer +CL: net/minecraft/world/level/storage/loot/providers/number/ConstantValue$Serializer net/minecraft/world/level/storage/loot/providers/number/ConstantValue$Serializer +CL: net/minecraft/world/level/storage/loot/providers/number/LootNumberProviderType net/minecraft/world/level/storage/loot/providers/number/LootNumberProviderType +CL: net/minecraft/world/level/storage/loot/providers/number/NumberProvider net/minecraft/world/level/storage/loot/providers/number/NumberProvider +CL: net/minecraft/world/level/storage/loot/providers/number/NumberProviders net/minecraft/world/level/storage/loot/providers/number/NumberProviders +CL: net/minecraft/world/level/storage/loot/providers/number/ScoreboardValue net/minecraft/world/level/storage/loot/providers/number/ScoreboardValue +CL: net/minecraft/world/level/storage/loot/providers/number/ScoreboardValue$Serializer net/minecraft/world/level/storage/loot/providers/number/ScoreboardValue$Serializer +CL: net/minecraft/world/level/storage/loot/providers/number/UniformGenerator net/minecraft/world/level/storage/loot/providers/number/UniformGenerator +CL: net/minecraft/world/level/storage/loot/providers/number/UniformGenerator$Serializer net/minecraft/world/level/storage/loot/providers/number/UniformGenerator$Serializer +CL: net/minecraft/world/level/storage/loot/providers/number/package-info net/minecraft/world/level/storage/loot/providers/number/package-info +CL: net/minecraft/world/level/storage/loot/providers/score/ContextScoreboardNameProvider net/minecraft/world/level/storage/loot/providers/score/ContextScoreboardNameProvider +CL: net/minecraft/world/level/storage/loot/providers/score/ContextScoreboardNameProvider$InlineSerializer net/minecraft/world/level/storage/loot/providers/score/ContextScoreboardNameProvider$InlineSerializer +CL: net/minecraft/world/level/storage/loot/providers/score/ContextScoreboardNameProvider$Serializer net/minecraft/world/level/storage/loot/providers/score/ContextScoreboardNameProvider$Serializer +CL: net/minecraft/world/level/storage/loot/providers/score/FixedScoreboardNameProvider net/minecraft/world/level/storage/loot/providers/score/FixedScoreboardNameProvider +CL: net/minecraft/world/level/storage/loot/providers/score/FixedScoreboardNameProvider$Serializer net/minecraft/world/level/storage/loot/providers/score/FixedScoreboardNameProvider$Serializer +CL: net/minecraft/world/level/storage/loot/providers/score/LootScoreProviderType net/minecraft/world/level/storage/loot/providers/score/LootScoreProviderType +CL: net/minecraft/world/level/storage/loot/providers/score/ScoreboardNameProvider net/minecraft/world/level/storage/loot/providers/score/ScoreboardNameProvider +CL: net/minecraft/world/level/storage/loot/providers/score/ScoreboardNameProviders net/minecraft/world/level/storage/loot/providers/score/ScoreboardNameProviders +CL: net/minecraft/world/level/storage/loot/providers/score/package-info net/minecraft/world/level/storage/loot/providers/score/package-info +CL: net/minecraft/world/level/storage/package-info net/minecraft/world/level/storage/package-info +CL: net/minecraft/world/level/timers/FunctionCallback net/minecraft/world/level/timers/FunctionCallback +CL: net/minecraft/world/level/timers/FunctionCallback$Serializer net/minecraft/world/level/timers/FunctionCallback$Serializer +CL: net/minecraft/world/level/timers/FunctionTagCallback net/minecraft/world/level/timers/FunctionTagCallback +CL: net/minecraft/world/level/timers/FunctionTagCallback$Serializer net/minecraft/world/level/timers/FunctionTagCallback$Serializer +CL: net/minecraft/world/level/timers/TimerCallback net/minecraft/world/level/timers/TimerCallback +CL: net/minecraft/world/level/timers/TimerCallback$Serializer net/minecraft/world/level/timers/TimerCallback$Serializer +CL: net/minecraft/world/level/timers/TimerCallbacks net/minecraft/world/level/timers/TimerCallbacks +CL: net/minecraft/world/level/timers/TimerQueue net/minecraft/world/level/timers/TimerQueue +CL: net/minecraft/world/level/timers/TimerQueue$Event net/minecraft/world/level/timers/TimerQueue$Event +CL: net/minecraft/world/level/timers/package-info net/minecraft/world/level/timers/package-info +CL: net/minecraft/world/level/validation/ContentValidationException net/minecraft/world/level/validation/ContentValidationException +CL: net/minecraft/world/level/validation/DirectoryValidator net/minecraft/world/level/validation/DirectoryValidator +CL: net/minecraft/world/level/validation/DirectoryValidator$1 net/minecraft/world/level/validation/DirectoryValidator$1 +CL: net/minecraft/world/level/validation/ForbiddenSymlinkInfo net/minecraft/world/level/validation/ForbiddenSymlinkInfo +CL: net/minecraft/world/level/validation/PathAllowList net/minecraft/world/level/validation/PathAllowList +CL: net/minecraft/world/level/validation/PathAllowList$ConfigEntry net/minecraft/world/level/validation/PathAllowList$ConfigEntry +CL: net/minecraft/world/level/validation/PathAllowList$EntryType net/minecraft/world/level/validation/PathAllowList$EntryType +CL: net/minecraft/world/level/validation/package-info net/minecraft/world/level/validation/package-info +CL: net/minecraft/world/package-info net/minecraft/world/package-info +CL: net/minecraft/world/phys/AABB net/minecraft/world/phys/AABB +CL: net/minecraft/world/phys/BlockHitResult net/minecraft/world/phys/BlockHitResult +CL: net/minecraft/world/phys/EntityHitResult net/minecraft/world/phys/EntityHitResult +CL: net/minecraft/world/phys/HitResult net/minecraft/world/phys/HitResult +CL: net/minecraft/world/phys/HitResult$Type net/minecraft/world/phys/HitResult$Type +CL: net/minecraft/world/phys/Vec2 net/minecraft/world/phys/Vec2 +CL: net/minecraft/world/phys/Vec3 net/minecraft/world/phys/Vec3 +CL: net/minecraft/world/phys/package-info net/minecraft/world/phys/package-info +CL: net/minecraft/world/phys/shapes/ArrayVoxelShape net/minecraft/world/phys/shapes/ArrayVoxelShape +CL: net/minecraft/world/phys/shapes/ArrayVoxelShape$1 net/minecraft/world/phys/shapes/ArrayVoxelShape$1 +CL: net/minecraft/world/phys/shapes/BitSetDiscreteVoxelShape net/minecraft/world/phys/shapes/BitSetDiscreteVoxelShape +CL: net/minecraft/world/phys/shapes/BooleanOp net/minecraft/world/phys/shapes/BooleanOp +CL: net/minecraft/world/phys/shapes/CollisionContext net/minecraft/world/phys/shapes/CollisionContext +CL: net/minecraft/world/phys/shapes/CubePointRange net/minecraft/world/phys/shapes/CubePointRange +CL: net/minecraft/world/phys/shapes/CubeVoxelShape net/minecraft/world/phys/shapes/CubeVoxelShape +CL: net/minecraft/world/phys/shapes/DiscreteCubeMerger net/minecraft/world/phys/shapes/DiscreteCubeMerger +CL: net/minecraft/world/phys/shapes/DiscreteVoxelShape net/minecraft/world/phys/shapes/DiscreteVoxelShape +CL: net/minecraft/world/phys/shapes/DiscreteVoxelShape$IntFaceConsumer net/minecraft/world/phys/shapes/DiscreteVoxelShape$IntFaceConsumer +CL: net/minecraft/world/phys/shapes/DiscreteVoxelShape$IntLineConsumer net/minecraft/world/phys/shapes/DiscreteVoxelShape$IntLineConsumer +CL: net/minecraft/world/phys/shapes/EntityCollisionContext net/minecraft/world/phys/shapes/EntityCollisionContext +CL: net/minecraft/world/phys/shapes/EntityCollisionContext$1 net/minecraft/world/phys/shapes/EntityCollisionContext$1 +CL: net/minecraft/world/phys/shapes/IdenticalMerger net/minecraft/world/phys/shapes/IdenticalMerger +CL: net/minecraft/world/phys/shapes/IndexMerger net/minecraft/world/phys/shapes/IndexMerger +CL: net/minecraft/world/phys/shapes/IndexMerger$IndexConsumer net/minecraft/world/phys/shapes/IndexMerger$IndexConsumer +CL: net/minecraft/world/phys/shapes/IndirectMerger net/minecraft/world/phys/shapes/IndirectMerger +CL: net/minecraft/world/phys/shapes/NonOverlappingMerger net/minecraft/world/phys/shapes/NonOverlappingMerger +CL: net/minecraft/world/phys/shapes/OffsetDoubleList net/minecraft/world/phys/shapes/OffsetDoubleList +CL: net/minecraft/world/phys/shapes/Shapes net/minecraft/world/phys/shapes/Shapes +CL: net/minecraft/world/phys/shapes/Shapes$DoubleLineConsumer net/minecraft/world/phys/shapes/Shapes$DoubleLineConsumer +CL: net/minecraft/world/phys/shapes/SliceShape net/minecraft/world/phys/shapes/SliceShape +CL: net/minecraft/world/phys/shapes/SubShape net/minecraft/world/phys/shapes/SubShape +CL: net/minecraft/world/phys/shapes/VoxelShape net/minecraft/world/phys/shapes/VoxelShape +CL: net/minecraft/world/phys/shapes/package-info net/minecraft/world/phys/shapes/package-info +CL: net/minecraft/world/scores/Objective net/minecraft/world/scores/Objective +CL: net/minecraft/world/scores/PlayerTeam net/minecraft/world/scores/PlayerTeam +CL: net/minecraft/world/scores/Score net/minecraft/world/scores/Score +CL: net/minecraft/world/scores/Scoreboard net/minecraft/world/scores/Scoreboard +CL: net/minecraft/world/scores/ScoreboardSaveData net/minecraft/world/scores/ScoreboardSaveData +CL: net/minecraft/world/scores/Team net/minecraft/world/scores/Team +CL: net/minecraft/world/scores/Team$CollisionRule net/minecraft/world/scores/Team$CollisionRule +CL: net/minecraft/world/scores/Team$Visibility net/minecraft/world/scores/Team$Visibility +CL: net/minecraft/world/scores/criteria/ObjectiveCriteria net/minecraft/world/scores/criteria/ObjectiveCriteria +CL: net/minecraft/world/scores/criteria/ObjectiveCriteria$RenderType net/minecraft/world/scores/criteria/ObjectiveCriteria$RenderType +CL: net/minecraft/world/scores/criteria/package-info net/minecraft/world/scores/criteria/package-info +CL: net/minecraft/world/scores/package-info net/minecraft/world/scores/package-info +CL: net/minecraft/world/ticks/BlackholeTickAccess net/minecraft/world/ticks/BlackholeTickAccess +CL: net/minecraft/world/ticks/BlackholeTickAccess$1 net/minecraft/world/ticks/BlackholeTickAccess$1 +CL: net/minecraft/world/ticks/BlackholeTickAccess$2 net/minecraft/world/ticks/BlackholeTickAccess$2 +CL: net/minecraft/world/ticks/ContainerSingleItem net/minecraft/world/ticks/ContainerSingleItem +CL: net/minecraft/world/ticks/LevelChunkTicks net/minecraft/world/ticks/LevelChunkTicks +CL: net/minecraft/world/ticks/LevelTickAccess net/minecraft/world/ticks/LevelTickAccess +CL: net/minecraft/world/ticks/LevelTicks net/minecraft/world/ticks/LevelTicks +CL: net/minecraft/world/ticks/LevelTicks$PosAndContainerConsumer net/minecraft/world/ticks/LevelTicks$PosAndContainerConsumer +CL: net/minecraft/world/ticks/ProtoChunkTicks net/minecraft/world/ticks/ProtoChunkTicks +CL: net/minecraft/world/ticks/SavedTick net/minecraft/world/ticks/SavedTick +CL: net/minecraft/world/ticks/SavedTick$1 net/minecraft/world/ticks/SavedTick$1 +CL: net/minecraft/world/ticks/ScheduledTick net/minecraft/world/ticks/ScheduledTick +CL: net/minecraft/world/ticks/ScheduledTick$1 net/minecraft/world/ticks/ScheduledTick$1 +CL: net/minecraft/world/ticks/SerializableTickContainer net/minecraft/world/ticks/SerializableTickContainer +CL: net/minecraft/world/ticks/TickAccess net/minecraft/world/ticks/TickAccess +CL: net/minecraft/world/ticks/TickContainerAccess net/minecraft/world/ticks/TickContainerAccess +CL: net/minecraft/world/ticks/TickPriority net/minecraft/world/ticks/TickPriority +CL: net/minecraft/world/ticks/WorldGenTickAccess net/minecraft/world/ticks/WorldGenTickAccess +CL: net/minecraft/world/ticks/package-info net/minecraft/world/ticks/package-info +FD: com/mojang/blaze3d/audio/Channel/f_166124_ com/mojang/blaze3d/audio/Channel/BUFFER_DURATION_SECONDS +FD: com/mojang/blaze3d/audio/Channel/f_166125_ com/mojang/blaze3d/audio/Channel/QUEUED_BUFFER_COUNT +FD: com/mojang/blaze3d/audio/Channel/f_83641_ com/mojang/blaze3d/audio/Channel/LOGGER +FD: com/mojang/blaze3d/audio/Channel/f_83642_ com/mojang/blaze3d/audio/Channel/source +FD: com/mojang/blaze3d/audio/Channel/f_83643_ com/mojang/blaze3d/audio/Channel/initialized +FD: com/mojang/blaze3d/audio/Channel/f_83644_ com/mojang/blaze3d/audio/Channel/streamingBufferSize +FD: com/mojang/blaze3d/audio/Channel/f_83645_ com/mojang/blaze3d/audio/Channel/stream +FD: com/mojang/blaze3d/audio/Library/f_166128_ com/mojang/blaze3d/audio/Library/DEFAULT_CHANNEL_COUNT +FD: com/mojang/blaze3d/audio/Library/f_193464_ com/mojang/blaze3d/audio/Library/NO_DEVICE +FD: com/mojang/blaze3d/audio/Library/f_193465_ com/mojang/blaze3d/audio/Library/currentDevice +FD: com/mojang/blaze3d/audio/Library/f_193466_ com/mojang/blaze3d/audio/Library/supportsDisconnections +FD: com/mojang/blaze3d/audio/Library/f_193467_ com/mojang/blaze3d/audio/Library/defaultDeviceName +FD: com/mojang/blaze3d/audio/Library/f_83685_ com/mojang/blaze3d/audio/Library/LOGGER +FD: com/mojang/blaze3d/audio/Library/f_83687_ com/mojang/blaze3d/audio/Library/context +FD: com/mojang/blaze3d/audio/Library/f_83688_ com/mojang/blaze3d/audio/Library/EMPTY +FD: com/mojang/blaze3d/audio/Library/f_83689_ com/mojang/blaze3d/audio/Library/staticChannels +FD: com/mojang/blaze3d/audio/Library/f_83690_ com/mojang/blaze3d/audio/Library/streamingChannels +FD: com/mojang/blaze3d/audio/Library/f_83691_ com/mojang/blaze3d/audio/Library/listener +FD: com/mojang/blaze3d/audio/Library$CountingChannelPool/f_83713_ com/mojang/blaze3d/audio/Library$CountingChannelPool/limit +FD: com/mojang/blaze3d/audio/Library$CountingChannelPool/f_83714_ com/mojang/blaze3d/audio/Library$CountingChannelPool/activeChannels +FD: com/mojang/blaze3d/audio/Library$Pool/$VALUES com/mojang/blaze3d/audio/Library$Pool/$VALUES +FD: com/mojang/blaze3d/audio/Library$Pool/STATIC com/mojang/blaze3d/audio/Library$Pool/STATIC +FD: com/mojang/blaze3d/audio/Library$Pool/STREAMING com/mojang/blaze3d/audio/Library$Pool/STREAMING +FD: com/mojang/blaze3d/audio/Listener/f_83733_ com/mojang/blaze3d/audio/Listener/gain +FD: com/mojang/blaze3d/audio/Listener/f_83734_ com/mojang/blaze3d/audio/Listener/position +FD: com/mojang/blaze3d/audio/OggAudioStream/f_166130_ com/mojang/blaze3d/audio/OggAudioStream/EXPECTED_MAX_FRAME_SIZE +FD: com/mojang/blaze3d/audio/OggAudioStream/f_83746_ com/mojang/blaze3d/audio/OggAudioStream/handle +FD: com/mojang/blaze3d/audio/OggAudioStream/f_83747_ com/mojang/blaze3d/audio/OggAudioStream/audioFormat +FD: com/mojang/blaze3d/audio/OggAudioStream/f_83748_ com/mojang/blaze3d/audio/OggAudioStream/input +FD: com/mojang/blaze3d/audio/OggAudioStream/f_83749_ com/mojang/blaze3d/audio/OggAudioStream/buffer +FD: com/mojang/blaze3d/audio/OggAudioStream$OutputConcat/f_83768_ com/mojang/blaze3d/audio/OggAudioStream$OutputConcat/buffers +FD: com/mojang/blaze3d/audio/OggAudioStream$OutputConcat/f_83769_ com/mojang/blaze3d/audio/OggAudioStream$OutputConcat/bufferSize +FD: com/mojang/blaze3d/audio/OggAudioStream$OutputConcat/f_83770_ com/mojang/blaze3d/audio/OggAudioStream$OutputConcat/byteCount +FD: com/mojang/blaze3d/audio/OggAudioStream$OutputConcat/f_83771_ com/mojang/blaze3d/audio/OggAudioStream$OutputConcat/currentBuffer +FD: com/mojang/blaze3d/audio/OpenAlUtil/f_83780_ com/mojang/blaze3d/audio/OpenAlUtil/LOGGER +FD: com/mojang/blaze3d/audio/SoundBuffer/f_83793_ com/mojang/blaze3d/audio/SoundBuffer/data +FD: com/mojang/blaze3d/audio/SoundBuffer/f_83794_ com/mojang/blaze3d/audio/SoundBuffer/format +FD: com/mojang/blaze3d/audio/SoundBuffer/f_83795_ com/mojang/blaze3d/audio/SoundBuffer/hasAlBuffer +FD: com/mojang/blaze3d/audio/SoundBuffer/f_83796_ com/mojang/blaze3d/audio/SoundBuffer/alBuffer +FD: com/mojang/blaze3d/font/SpaceProvider/f_231098_ com/mojang/blaze3d/font/SpaceProvider/glyphs +FD: com/mojang/blaze3d/font/SpaceProvider$Definition/f_285580_ com/mojang/blaze3d/font/SpaceProvider$Definition/advances +FD: com/mojang/blaze3d/font/SpaceProvider$Definition/f_285661_ com/mojang/blaze3d/font/SpaceProvider$Definition/CODEC +FD: com/mojang/blaze3d/font/TrueTypeGlyphProvider/f_83837_ com/mojang/blaze3d/font/TrueTypeGlyphProvider/fontMemory +FD: com/mojang/blaze3d/font/TrueTypeGlyphProvider/f_83838_ com/mojang/blaze3d/font/TrueTypeGlyphProvider/font +FD: com/mojang/blaze3d/font/TrueTypeGlyphProvider/f_83839_ com/mojang/blaze3d/font/TrueTypeGlyphProvider/oversample +FD: com/mojang/blaze3d/font/TrueTypeGlyphProvider/f_83840_ com/mojang/blaze3d/font/TrueTypeGlyphProvider/skip +FD: com/mojang/blaze3d/font/TrueTypeGlyphProvider/f_83841_ com/mojang/blaze3d/font/TrueTypeGlyphProvider/shiftX +FD: com/mojang/blaze3d/font/TrueTypeGlyphProvider/f_83842_ com/mojang/blaze3d/font/TrueTypeGlyphProvider/shiftY +FD: com/mojang/blaze3d/font/TrueTypeGlyphProvider/f_83843_ com/mojang/blaze3d/font/TrueTypeGlyphProvider/pointScale +FD: com/mojang/blaze3d/font/TrueTypeGlyphProvider/f_83844_ com/mojang/blaze3d/font/TrueTypeGlyphProvider/ascent +FD: com/mojang/blaze3d/font/TrueTypeGlyphProvider$Glyph/f_83873_ com/mojang/blaze3d/font/TrueTypeGlyphProvider$Glyph/this$0 +FD: com/mojang/blaze3d/font/TrueTypeGlyphProvider$Glyph/f_83874_ com/mojang/blaze3d/font/TrueTypeGlyphProvider$Glyph/width +FD: com/mojang/blaze3d/font/TrueTypeGlyphProvider$Glyph/f_83875_ com/mojang/blaze3d/font/TrueTypeGlyphProvider$Glyph/height +FD: com/mojang/blaze3d/font/TrueTypeGlyphProvider$Glyph/f_83876_ com/mojang/blaze3d/font/TrueTypeGlyphProvider$Glyph/bearingX +FD: com/mojang/blaze3d/font/TrueTypeGlyphProvider$Glyph/f_83877_ com/mojang/blaze3d/font/TrueTypeGlyphProvider$Glyph/bearingY +FD: com/mojang/blaze3d/font/TrueTypeGlyphProvider$Glyph/f_83878_ com/mojang/blaze3d/font/TrueTypeGlyphProvider$Glyph/advance +FD: com/mojang/blaze3d/font/TrueTypeGlyphProvider$Glyph/f_83879_ com/mojang/blaze3d/font/TrueTypeGlyphProvider$Glyph/index +FD: com/mojang/blaze3d/font/TrueTypeGlyphProvider$Glyph$1/f_231121_ com/mojang/blaze3d/font/TrueTypeGlyphProvider$Glyph$1/this$1 +FD: com/mojang/blaze3d/pipeline/MainTarget/f_166132_ com/mojang/blaze3d/pipeline/MainTarget/DEFAULT_WIDTH +FD: com/mojang/blaze3d/pipeline/MainTarget/f_166133_ com/mojang/blaze3d/pipeline/MainTarget/DEFAULT_HEIGHT +FD: com/mojang/blaze3d/pipeline/MainTarget/f_166134_ com/mojang/blaze3d/pipeline/MainTarget/DEFAULT_DIMENSIONS +FD: com/mojang/blaze3d/pipeline/MainTarget$AttachmentState/$VALUES com/mojang/blaze3d/pipeline/MainTarget$AttachmentState/$VALUES +FD: com/mojang/blaze3d/pipeline/MainTarget$AttachmentState/COLOR com/mojang/blaze3d/pipeline/MainTarget$AttachmentState/COLOR +FD: com/mojang/blaze3d/pipeline/MainTarget$AttachmentState/COLOR_DEPTH com/mojang/blaze3d/pipeline/MainTarget$AttachmentState/COLOR_DEPTH +FD: com/mojang/blaze3d/pipeline/MainTarget$AttachmentState/DEPTH com/mojang/blaze3d/pipeline/MainTarget$AttachmentState/DEPTH +FD: com/mojang/blaze3d/pipeline/MainTarget$AttachmentState/NONE com/mojang/blaze3d/pipeline/MainTarget$AttachmentState/NONE +FD: com/mojang/blaze3d/pipeline/MainTarget$AttachmentState/f_166156_ com/mojang/blaze3d/pipeline/MainTarget$AttachmentState/VALUES +FD: com/mojang/blaze3d/pipeline/MainTarget$Dimension/f_166168_ com/mojang/blaze3d/pipeline/MainTarget$Dimension/width +FD: com/mojang/blaze3d/pipeline/MainTarget$Dimension/f_166169_ com/mojang/blaze3d/pipeline/MainTarget$Dimension/height +FD: com/mojang/blaze3d/pipeline/RenderPipeline/f_166180_ com/mojang/blaze3d/pipeline/RenderPipeline/isRecording +FD: com/mojang/blaze3d/pipeline/RenderPipeline/f_166181_ com/mojang/blaze3d/pipeline/RenderPipeline/isProcessing +FD: com/mojang/blaze3d/pipeline/RenderPipeline/f_83910_ com/mojang/blaze3d/pipeline/RenderPipeline/renderCalls +FD: com/mojang/blaze3d/pipeline/RenderPipeline/f_83911_ com/mojang/blaze3d/pipeline/RenderPipeline/recordingBuffer +FD: com/mojang/blaze3d/pipeline/RenderPipeline/f_83912_ com/mojang/blaze3d/pipeline/RenderPipeline/processedBuffer +FD: com/mojang/blaze3d/pipeline/RenderPipeline/f_83913_ com/mojang/blaze3d/pipeline/RenderPipeline/renderingBuffer +FD: com/mojang/blaze3d/pipeline/RenderTarget/f_166194_ com/mojang/blaze3d/pipeline/RenderTarget/RED_CHANNEL +FD: com/mojang/blaze3d/pipeline/RenderTarget/f_166195_ com/mojang/blaze3d/pipeline/RenderTarget/GREEN_CHANNEL +FD: com/mojang/blaze3d/pipeline/RenderTarget/f_166196_ com/mojang/blaze3d/pipeline/RenderTarget/BLUE_CHANNEL +FD: com/mojang/blaze3d/pipeline/RenderTarget/f_166197_ com/mojang/blaze3d/pipeline/RenderTarget/ALPHA_CHANNEL +FD: com/mojang/blaze3d/pipeline/RenderTarget/f_83915_ com/mojang/blaze3d/pipeline/RenderTarget/width +FD: com/mojang/blaze3d/pipeline/RenderTarget/f_83916_ com/mojang/blaze3d/pipeline/RenderTarget/height +FD: com/mojang/blaze3d/pipeline/RenderTarget/f_83917_ com/mojang/blaze3d/pipeline/RenderTarget/viewWidth +FD: com/mojang/blaze3d/pipeline/RenderTarget/f_83918_ com/mojang/blaze3d/pipeline/RenderTarget/viewHeight +FD: com/mojang/blaze3d/pipeline/RenderTarget/f_83919_ com/mojang/blaze3d/pipeline/RenderTarget/useDepth +FD: com/mojang/blaze3d/pipeline/RenderTarget/f_83920_ com/mojang/blaze3d/pipeline/RenderTarget/frameBufferId +FD: com/mojang/blaze3d/pipeline/RenderTarget/f_83921_ com/mojang/blaze3d/pipeline/RenderTarget/clearChannels +FD: com/mojang/blaze3d/pipeline/RenderTarget/f_83922_ com/mojang/blaze3d/pipeline/RenderTarget/filterMode +FD: com/mojang/blaze3d/pipeline/RenderTarget/f_83923_ com/mojang/blaze3d/pipeline/RenderTarget/colorTextureId +FD: com/mojang/blaze3d/pipeline/RenderTarget/f_83924_ com/mojang/blaze3d/pipeline/RenderTarget/depthBufferId +FD: com/mojang/blaze3d/platform/ClipboardManager/f_166218_ com/mojang/blaze3d/platform/ClipboardManager/FORMAT_UNAVAILABLE +FD: com/mojang/blaze3d/platform/ClipboardManager/f_83986_ com/mojang/blaze3d/platform/ClipboardManager/clipboardScratchBuffer +FD: com/mojang/blaze3d/platform/DebugMemoryUntracker/f_83998_ com/mojang/blaze3d/platform/DebugMemoryUntracker/UNTRACK +FD: com/mojang/blaze3d/platform/DisplayData/f_84005_ com/mojang/blaze3d/platform/DisplayData/width +FD: com/mojang/blaze3d/platform/DisplayData/f_84006_ com/mojang/blaze3d/platform/DisplayData/height +FD: com/mojang/blaze3d/platform/DisplayData/f_84007_ com/mojang/blaze3d/platform/DisplayData/fullscreenWidth +FD: com/mojang/blaze3d/platform/DisplayData/f_84008_ com/mojang/blaze3d/platform/DisplayData/fullscreenHeight +FD: com/mojang/blaze3d/platform/DisplayData/f_84009_ com/mojang/blaze3d/platform/DisplayData/isFullscreen +FD: com/mojang/blaze3d/platform/GLX/LOGGER com/mojang/blaze3d/platform/GLX/LOGGER +FD: com/mojang/blaze3d/platform/GLX/cpuInfo com/mojang/blaze3d/platform/GLX/cpuInfo +FD: com/mojang/blaze3d/platform/GlConst/GL_ALPHA_BIAS com/mojang/blaze3d/platform/GlConst/GL_ALPHA_BIAS +FD: com/mojang/blaze3d/platform/GlConst/GL_ALWAYS com/mojang/blaze3d/platform/GlConst/GL_ALWAYS +FD: com/mojang/blaze3d/platform/GlConst/GL_ARRAY_BUFFER com/mojang/blaze3d/platform/GlConst/GL_ARRAY_BUFFER +FD: com/mojang/blaze3d/platform/GlConst/GL_BGR com/mojang/blaze3d/platform/GlConst/GL_BGR +FD: com/mojang/blaze3d/platform/GlConst/GL_BYTE com/mojang/blaze3d/platform/GlConst/GL_BYTE +FD: com/mojang/blaze3d/platform/GlConst/GL_CLAMP_TO_EDGE com/mojang/blaze3d/platform/GlConst/GL_CLAMP_TO_EDGE +FD: com/mojang/blaze3d/platform/GlConst/GL_COLOR_ATTACHMENT0 com/mojang/blaze3d/platform/GlConst/GL_COLOR_ATTACHMENT0 +FD: com/mojang/blaze3d/platform/GlConst/GL_COLOR_BUFFER_BIT com/mojang/blaze3d/platform/GlConst/GL_COLOR_BUFFER_BIT +FD: com/mojang/blaze3d/platform/GlConst/GL_COMPILE_STATUS com/mojang/blaze3d/platform/GlConst/GL_COMPILE_STATUS +FD: com/mojang/blaze3d/platform/GlConst/GL_DEPTH_ATTACHMENT com/mojang/blaze3d/platform/GlConst/GL_DEPTH_ATTACHMENT +FD: com/mojang/blaze3d/platform/GlConst/GL_DEPTH_BUFFER_BIT com/mojang/blaze3d/platform/GlConst/GL_DEPTH_BUFFER_BIT +FD: com/mojang/blaze3d/platform/GlConst/GL_DEPTH_COMPONENT com/mojang/blaze3d/platform/GlConst/GL_DEPTH_COMPONENT +FD: com/mojang/blaze3d/platform/GlConst/GL_DEPTH_COMPONENT24 com/mojang/blaze3d/platform/GlConst/GL_DEPTH_COMPONENT24 +FD: com/mojang/blaze3d/platform/GlConst/GL_DEPTH_COMPONENT32 com/mojang/blaze3d/platform/GlConst/GL_DEPTH_COMPONENT32 +FD: com/mojang/blaze3d/platform/GlConst/GL_DEPTH_TEXTURE_MODE com/mojang/blaze3d/platform/GlConst/GL_DEPTH_TEXTURE_MODE +FD: com/mojang/blaze3d/platform/GlConst/GL_DRAW_FRAMEBUFFER com/mojang/blaze3d/platform/GlConst/GL_DRAW_FRAMEBUFFER +FD: com/mojang/blaze3d/platform/GlConst/GL_DST_ALPHA com/mojang/blaze3d/platform/GlConst/GL_DST_ALPHA +FD: com/mojang/blaze3d/platform/GlConst/GL_DST_COLOR com/mojang/blaze3d/platform/GlConst/GL_DST_COLOR +FD: com/mojang/blaze3d/platform/GlConst/GL_DYNAMIC_DRAW com/mojang/blaze3d/platform/GlConst/GL_DYNAMIC_DRAW +FD: com/mojang/blaze3d/platform/GlConst/GL_ELEMENT_ARRAY_BUFFER com/mojang/blaze3d/platform/GlConst/GL_ELEMENT_ARRAY_BUFFER +FD: com/mojang/blaze3d/platform/GlConst/GL_EQUAL com/mojang/blaze3d/platform/GlConst/GL_EQUAL +FD: com/mojang/blaze3d/platform/GlConst/GL_FALSE com/mojang/blaze3d/platform/GlConst/GL_FALSE +FD: com/mojang/blaze3d/platform/GlConst/GL_FILL com/mojang/blaze3d/platform/GlConst/GL_FILL +FD: com/mojang/blaze3d/platform/GlConst/GL_FLOAT com/mojang/blaze3d/platform/GlConst/GL_FLOAT +FD: com/mojang/blaze3d/platform/GlConst/GL_FRAGMENT_SHADER com/mojang/blaze3d/platform/GlConst/GL_FRAGMENT_SHADER +FD: com/mojang/blaze3d/platform/GlConst/GL_FRAMEBUFFER com/mojang/blaze3d/platform/GlConst/GL_FRAMEBUFFER +FD: com/mojang/blaze3d/platform/GlConst/GL_FRAMEBUFFER_COMPLETE com/mojang/blaze3d/platform/GlConst/GL_FRAMEBUFFER_COMPLETE +FD: com/mojang/blaze3d/platform/GlConst/GL_FRAMEBUFFER_INCOMPLETE_ATTACHMENT com/mojang/blaze3d/platform/GlConst/GL_FRAMEBUFFER_INCOMPLETE_ATTACHMENT +FD: com/mojang/blaze3d/platform/GlConst/GL_FRAMEBUFFER_INCOMPLETE_DRAW_BUFFER com/mojang/blaze3d/platform/GlConst/GL_FRAMEBUFFER_INCOMPLETE_DRAW_BUFFER +FD: com/mojang/blaze3d/platform/GlConst/GL_FRAMEBUFFER_INCOMPLETE_MISSING_ATTACHMENT com/mojang/blaze3d/platform/GlConst/GL_FRAMEBUFFER_INCOMPLETE_MISSING_ATTACHMENT +FD: com/mojang/blaze3d/platform/GlConst/GL_FRAMEBUFFER_INCOMPLETE_READ_BUFFER com/mojang/blaze3d/platform/GlConst/GL_FRAMEBUFFER_INCOMPLETE_READ_BUFFER +FD: com/mojang/blaze3d/platform/GlConst/GL_FRAMEBUFFER_UNSUPPORTED com/mojang/blaze3d/platform/GlConst/GL_FRAMEBUFFER_UNSUPPORTED +FD: com/mojang/blaze3d/platform/GlConst/GL_FRONT com/mojang/blaze3d/platform/GlConst/GL_FRONT +FD: com/mojang/blaze3d/platform/GlConst/GL_FRONT_AND_BACK com/mojang/blaze3d/platform/GlConst/GL_FRONT_AND_BACK +FD: com/mojang/blaze3d/platform/GlConst/GL_FUNC_ADD com/mojang/blaze3d/platform/GlConst/GL_FUNC_ADD +FD: com/mojang/blaze3d/platform/GlConst/GL_FUNC_REVERSE_SUBTRACT com/mojang/blaze3d/platform/GlConst/GL_FUNC_REVERSE_SUBTRACT +FD: com/mojang/blaze3d/platform/GlConst/GL_FUNC_SUBTRACT com/mojang/blaze3d/platform/GlConst/GL_FUNC_SUBTRACT +FD: com/mojang/blaze3d/platform/GlConst/GL_GEQUAL com/mojang/blaze3d/platform/GlConst/GL_GEQUAL +FD: com/mojang/blaze3d/platform/GlConst/GL_GREATER com/mojang/blaze3d/platform/GlConst/GL_GREATER +FD: com/mojang/blaze3d/platform/GlConst/GL_INT com/mojang/blaze3d/platform/GlConst/GL_INT +FD: com/mojang/blaze3d/platform/GlConst/GL_LEQUAL com/mojang/blaze3d/platform/GlConst/GL_LEQUAL +FD: com/mojang/blaze3d/platform/GlConst/GL_LINE com/mojang/blaze3d/platform/GlConst/GL_LINE +FD: com/mojang/blaze3d/platform/GlConst/GL_LINEAR com/mojang/blaze3d/platform/GlConst/GL_LINEAR +FD: com/mojang/blaze3d/platform/GlConst/GL_LINEAR_MIPMAP_LINEAR com/mojang/blaze3d/platform/GlConst/GL_LINEAR_MIPMAP_LINEAR +FD: com/mojang/blaze3d/platform/GlConst/GL_LINES com/mojang/blaze3d/platform/GlConst/GL_LINES +FD: com/mojang/blaze3d/platform/GlConst/GL_LINE_STRIP com/mojang/blaze3d/platform/GlConst/GL_LINE_STRIP +FD: com/mojang/blaze3d/platform/GlConst/GL_LINK_STATUS com/mojang/blaze3d/platform/GlConst/GL_LINK_STATUS +FD: com/mojang/blaze3d/platform/GlConst/GL_MAX com/mojang/blaze3d/platform/GlConst/GL_MAX +FD: com/mojang/blaze3d/platform/GlConst/GL_MAX_TEXTURE_SIZE com/mojang/blaze3d/platform/GlConst/GL_MAX_TEXTURE_SIZE +FD: com/mojang/blaze3d/platform/GlConst/GL_MIN com/mojang/blaze3d/platform/GlConst/GL_MIN +FD: com/mojang/blaze3d/platform/GlConst/GL_NEAREST com/mojang/blaze3d/platform/GlConst/GL_NEAREST +FD: com/mojang/blaze3d/platform/GlConst/GL_NEAREST_MIPMAP_LINEAR com/mojang/blaze3d/platform/GlConst/GL_NEAREST_MIPMAP_LINEAR +FD: com/mojang/blaze3d/platform/GlConst/GL_NONE com/mojang/blaze3d/platform/GlConst/GL_NONE +FD: com/mojang/blaze3d/platform/GlConst/GL_ONE com/mojang/blaze3d/platform/GlConst/GL_ONE +FD: com/mojang/blaze3d/platform/GlConst/GL_ONE_MINUS_DST_ALPHA com/mojang/blaze3d/platform/GlConst/GL_ONE_MINUS_DST_ALPHA +FD: com/mojang/blaze3d/platform/GlConst/GL_ONE_MINUS_DST_COLOR com/mojang/blaze3d/platform/GlConst/GL_ONE_MINUS_DST_COLOR +FD: com/mojang/blaze3d/platform/GlConst/GL_ONE_MINUS_SRC_ALPHA com/mojang/blaze3d/platform/GlConst/GL_ONE_MINUS_SRC_ALPHA +FD: com/mojang/blaze3d/platform/GlConst/GL_ONE_MINUS_SRC_COLOR com/mojang/blaze3d/platform/GlConst/GL_ONE_MINUS_SRC_COLOR +FD: com/mojang/blaze3d/platform/GlConst/GL_OUT_OF_MEMORY com/mojang/blaze3d/platform/GlConst/GL_OUT_OF_MEMORY +FD: com/mojang/blaze3d/platform/GlConst/GL_PACK_ALIGNMENT com/mojang/blaze3d/platform/GlConst/GL_PACK_ALIGNMENT +FD: com/mojang/blaze3d/platform/GlConst/GL_PROXY_TEXTURE_2D com/mojang/blaze3d/platform/GlConst/GL_PROXY_TEXTURE_2D +FD: com/mojang/blaze3d/platform/GlConst/GL_READ_FRAMEBUFFER com/mojang/blaze3d/platform/GlConst/GL_READ_FRAMEBUFFER +FD: com/mojang/blaze3d/platform/GlConst/GL_RED com/mojang/blaze3d/platform/GlConst/GL_RED +FD: com/mojang/blaze3d/platform/GlConst/GL_RENDERBUFFER com/mojang/blaze3d/platform/GlConst/GL_RENDERBUFFER +FD: com/mojang/blaze3d/platform/GlConst/GL_REPLACE com/mojang/blaze3d/platform/GlConst/GL_REPLACE +FD: com/mojang/blaze3d/platform/GlConst/GL_RG com/mojang/blaze3d/platform/GlConst/GL_RG +FD: com/mojang/blaze3d/platform/GlConst/GL_RGB com/mojang/blaze3d/platform/GlConst/GL_RGB +FD: com/mojang/blaze3d/platform/GlConst/GL_RGBA com/mojang/blaze3d/platform/GlConst/GL_RGBA +FD: com/mojang/blaze3d/platform/GlConst/GL_RGBA8 com/mojang/blaze3d/platform/GlConst/GL_RGBA8 +FD: com/mojang/blaze3d/platform/GlConst/GL_SHORT com/mojang/blaze3d/platform/GlConst/GL_SHORT +FD: com/mojang/blaze3d/platform/GlConst/GL_SRC_ALPHA com/mojang/blaze3d/platform/GlConst/GL_SRC_ALPHA +FD: com/mojang/blaze3d/platform/GlConst/GL_SRC_COLOR com/mojang/blaze3d/platform/GlConst/GL_SRC_COLOR +FD: com/mojang/blaze3d/platform/GlConst/GL_STATIC_DRAW com/mojang/blaze3d/platform/GlConst/GL_STATIC_DRAW +FD: com/mojang/blaze3d/platform/GlConst/GL_TEXTURE0 com/mojang/blaze3d/platform/GlConst/GL_TEXTURE0 +FD: com/mojang/blaze3d/platform/GlConst/GL_TEXTURE1 com/mojang/blaze3d/platform/GlConst/GL_TEXTURE1 +FD: com/mojang/blaze3d/platform/GlConst/GL_TEXTURE2 com/mojang/blaze3d/platform/GlConst/GL_TEXTURE2 +FD: com/mojang/blaze3d/platform/GlConst/GL_TEXTURE_2D com/mojang/blaze3d/platform/GlConst/GL_TEXTURE_2D +FD: com/mojang/blaze3d/platform/GlConst/GL_TEXTURE_COMPARE_MODE com/mojang/blaze3d/platform/GlConst/GL_TEXTURE_COMPARE_MODE +FD: com/mojang/blaze3d/platform/GlConst/GL_TEXTURE_MAG_FILTER com/mojang/blaze3d/platform/GlConst/GL_TEXTURE_MAG_FILTER +FD: com/mojang/blaze3d/platform/GlConst/GL_TEXTURE_MIN_FILTER com/mojang/blaze3d/platform/GlConst/GL_TEXTURE_MIN_FILTER +FD: com/mojang/blaze3d/platform/GlConst/GL_TEXTURE_WIDTH com/mojang/blaze3d/platform/GlConst/GL_TEXTURE_WIDTH +FD: com/mojang/blaze3d/platform/GlConst/GL_TEXTURE_WRAP_S com/mojang/blaze3d/platform/GlConst/GL_TEXTURE_WRAP_S +FD: com/mojang/blaze3d/platform/GlConst/GL_TEXTURE_WRAP_T com/mojang/blaze3d/platform/GlConst/GL_TEXTURE_WRAP_T +FD: com/mojang/blaze3d/platform/GlConst/GL_TRIANGLES com/mojang/blaze3d/platform/GlConst/GL_TRIANGLES +FD: com/mojang/blaze3d/platform/GlConst/GL_TRIANGLE_FAN com/mojang/blaze3d/platform/GlConst/GL_TRIANGLE_FAN +FD: com/mojang/blaze3d/platform/GlConst/GL_TRIANGLE_STRIP com/mojang/blaze3d/platform/GlConst/GL_TRIANGLE_STRIP +FD: com/mojang/blaze3d/platform/GlConst/GL_TRUE com/mojang/blaze3d/platform/GlConst/GL_TRUE +FD: com/mojang/blaze3d/platform/GlConst/GL_UNPACK_ALIGNMENT com/mojang/blaze3d/platform/GlConst/GL_UNPACK_ALIGNMENT +FD: com/mojang/blaze3d/platform/GlConst/GL_UNPACK_LSB_FIRST com/mojang/blaze3d/platform/GlConst/GL_UNPACK_LSB_FIRST +FD: com/mojang/blaze3d/platform/GlConst/GL_UNPACK_ROW_LENGTH com/mojang/blaze3d/platform/GlConst/GL_UNPACK_ROW_LENGTH +FD: com/mojang/blaze3d/platform/GlConst/GL_UNPACK_SKIP_PIXELS com/mojang/blaze3d/platform/GlConst/GL_UNPACK_SKIP_PIXELS +FD: com/mojang/blaze3d/platform/GlConst/GL_UNPACK_SKIP_ROWS com/mojang/blaze3d/platform/GlConst/GL_UNPACK_SKIP_ROWS +FD: com/mojang/blaze3d/platform/GlConst/GL_UNPACK_SWAP_BYTES com/mojang/blaze3d/platform/GlConst/GL_UNPACK_SWAP_BYTES +FD: com/mojang/blaze3d/platform/GlConst/GL_UNSIGNED_BYTE com/mojang/blaze3d/platform/GlConst/GL_UNSIGNED_BYTE +FD: com/mojang/blaze3d/platform/GlConst/GL_UNSIGNED_INT com/mojang/blaze3d/platform/GlConst/GL_UNSIGNED_INT +FD: com/mojang/blaze3d/platform/GlConst/GL_UNSIGNED_SHORT com/mojang/blaze3d/platform/GlConst/GL_UNSIGNED_SHORT +FD: com/mojang/blaze3d/platform/GlConst/GL_VERTEX_SHADER com/mojang/blaze3d/platform/GlConst/GL_VERTEX_SHADER +FD: com/mojang/blaze3d/platform/GlConst/GL_WRITE_ONLY com/mojang/blaze3d/platform/GlConst/GL_WRITE_ONLY +FD: com/mojang/blaze3d/platform/GlConst/GL_ZERO com/mojang/blaze3d/platform/GlConst/GL_ZERO +FD: com/mojang/blaze3d/platform/GlDebug/f_166220_ com/mojang/blaze3d/platform/GlDebug/CIRCULAR_LOG_SIZE +FD: com/mojang/blaze3d/platform/GlDebug/f_166221_ com/mojang/blaze3d/platform/GlDebug/MESSAGE_BUFFER +FD: com/mojang/blaze3d/platform/GlDebug/f_166222_ com/mojang/blaze3d/platform/GlDebug/lastEntry +FD: com/mojang/blaze3d/platform/GlDebug/f_166223_ com/mojang/blaze3d/platform/GlDebug/debugEnabled +FD: com/mojang/blaze3d/platform/GlDebug/f_84028_ com/mojang/blaze3d/platform/GlDebug/LOGGER +FD: com/mojang/blaze3d/platform/GlDebug/f_84032_ com/mojang/blaze3d/platform/GlDebug/DEBUG_LEVELS +FD: com/mojang/blaze3d/platform/GlDebug/f_84033_ com/mojang/blaze3d/platform/GlDebug/DEBUG_LEVELS_ARB +FD: com/mojang/blaze3d/platform/GlDebug$LogEntry/f_166227_ com/mojang/blaze3d/platform/GlDebug$LogEntry/id +FD: com/mojang/blaze3d/platform/GlDebug$LogEntry/f_166228_ com/mojang/blaze3d/platform/GlDebug$LogEntry/source +FD: com/mojang/blaze3d/platform/GlDebug$LogEntry/f_166229_ com/mojang/blaze3d/platform/GlDebug$LogEntry/type +FD: com/mojang/blaze3d/platform/GlDebug$LogEntry/f_166230_ com/mojang/blaze3d/platform/GlDebug$LogEntry/severity +FD: com/mojang/blaze3d/platform/GlDebug$LogEntry/f_166231_ com/mojang/blaze3d/platform/GlDebug$LogEntry/message +FD: com/mojang/blaze3d/platform/GlDebug$LogEntry/f_166232_ com/mojang/blaze3d/platform/GlDebug$LogEntry/count +FD: com/mojang/blaze3d/platform/GlStateManager/BLEND com/mojang/blaze3d/platform/GlStateManager/BLEND +FD: com/mojang/blaze3d/platform/GlStateManager/COLOR_LOGIC com/mojang/blaze3d/platform/GlStateManager/COLOR_LOGIC +FD: com/mojang/blaze3d/platform/GlStateManager/COLOR_MASK com/mojang/blaze3d/platform/GlStateManager/COLOR_MASK +FD: com/mojang/blaze3d/platform/GlStateManager/CULL com/mojang/blaze3d/platform/GlStateManager/CULL +FD: com/mojang/blaze3d/platform/GlStateManager/DEPTH com/mojang/blaze3d/platform/GlStateManager/DEPTH +FD: com/mojang/blaze3d/platform/GlStateManager/ON_LINUX com/mojang/blaze3d/platform/GlStateManager/ON_LINUX +FD: com/mojang/blaze3d/platform/GlStateManager/POLY_OFFSET com/mojang/blaze3d/platform/GlStateManager/POLY_OFFSET +FD: com/mojang/blaze3d/platform/GlStateManager/SCISSOR com/mojang/blaze3d/platform/GlStateManager/SCISSOR +FD: com/mojang/blaze3d/platform/GlStateManager/STENCIL com/mojang/blaze3d/platform/GlStateManager/STENCIL +FD: com/mojang/blaze3d/platform/GlStateManager/TEXTURES com/mojang/blaze3d/platform/GlStateManager/TEXTURES +FD: com/mojang/blaze3d/platform/GlStateManager/TEXTURE_COUNT com/mojang/blaze3d/platform/GlStateManager/TEXTURE_COUNT +FD: com/mojang/blaze3d/platform/GlStateManager/activeTexture com/mojang/blaze3d/platform/GlStateManager/activeTexture +FD: com/mojang/blaze3d/platform/GlStateManager$BlendState/f_84577_ com/mojang/blaze3d/platform/GlStateManager$BlendState/mode +FD: com/mojang/blaze3d/platform/GlStateManager$BlendState/f_84578_ com/mojang/blaze3d/platform/GlStateManager$BlendState/srcRgb +FD: com/mojang/blaze3d/platform/GlStateManager$BlendState/f_84579_ com/mojang/blaze3d/platform/GlStateManager$BlendState/dstRgb +FD: com/mojang/blaze3d/platform/GlStateManager$BlendState/f_84580_ com/mojang/blaze3d/platform/GlStateManager$BlendState/srcAlpha +FD: com/mojang/blaze3d/platform/GlStateManager$BlendState/f_84581_ com/mojang/blaze3d/platform/GlStateManager$BlendState/dstAlpha +FD: com/mojang/blaze3d/platform/GlStateManager$BooleanState/f_84585_ com/mojang/blaze3d/platform/GlStateManager$BooleanState/state +FD: com/mojang/blaze3d/platform/GlStateManager$BooleanState/f_84586_ com/mojang/blaze3d/platform/GlStateManager$BooleanState/enabled +FD: com/mojang/blaze3d/platform/GlStateManager$ColorLogicState/f_84603_ com/mojang/blaze3d/platform/GlStateManager$ColorLogicState/enable +FD: com/mojang/blaze3d/platform/GlStateManager$ColorLogicState/f_84604_ com/mojang/blaze3d/platform/GlStateManager$ColorLogicState/op +FD: com/mojang/blaze3d/platform/GlStateManager$ColorMask/f_84608_ com/mojang/blaze3d/platform/GlStateManager$ColorMask/red +FD: com/mojang/blaze3d/platform/GlStateManager$ColorMask/f_84609_ com/mojang/blaze3d/platform/GlStateManager$ColorMask/green +FD: com/mojang/blaze3d/platform/GlStateManager$ColorMask/f_84610_ com/mojang/blaze3d/platform/GlStateManager$ColorMask/blue +FD: com/mojang/blaze3d/platform/GlStateManager$ColorMask/f_84611_ com/mojang/blaze3d/platform/GlStateManager$ColorMask/alpha +FD: com/mojang/blaze3d/platform/GlStateManager$CullState/f_84621_ com/mojang/blaze3d/platform/GlStateManager$CullState/enable +FD: com/mojang/blaze3d/platform/GlStateManager$CullState/f_84622_ com/mojang/blaze3d/platform/GlStateManager$CullState/mode +FD: com/mojang/blaze3d/platform/GlStateManager$DepthState/f_84626_ com/mojang/blaze3d/platform/GlStateManager$DepthState/mode +FD: com/mojang/blaze3d/platform/GlStateManager$DepthState/f_84627_ com/mojang/blaze3d/platform/GlStateManager$DepthState/mask +FD: com/mojang/blaze3d/platform/GlStateManager$DepthState/f_84628_ com/mojang/blaze3d/platform/GlStateManager$DepthState/func +FD: com/mojang/blaze3d/platform/GlStateManager$DestFactor/$VALUES com/mojang/blaze3d/platform/GlStateManager$DestFactor/$VALUES +FD: com/mojang/blaze3d/platform/GlStateManager$DestFactor/CONSTANT_ALPHA com/mojang/blaze3d/platform/GlStateManager$DestFactor/CONSTANT_ALPHA +FD: com/mojang/blaze3d/platform/GlStateManager$DestFactor/CONSTANT_COLOR com/mojang/blaze3d/platform/GlStateManager$DestFactor/CONSTANT_COLOR +FD: com/mojang/blaze3d/platform/GlStateManager$DestFactor/DST_ALPHA com/mojang/blaze3d/platform/GlStateManager$DestFactor/DST_ALPHA +FD: com/mojang/blaze3d/platform/GlStateManager$DestFactor/DST_COLOR com/mojang/blaze3d/platform/GlStateManager$DestFactor/DST_COLOR +FD: com/mojang/blaze3d/platform/GlStateManager$DestFactor/ONE com/mojang/blaze3d/platform/GlStateManager$DestFactor/ONE +FD: com/mojang/blaze3d/platform/GlStateManager$DestFactor/ONE_MINUS_CONSTANT_ALPHA com/mojang/blaze3d/platform/GlStateManager$DestFactor/ONE_MINUS_CONSTANT_ALPHA +FD: com/mojang/blaze3d/platform/GlStateManager$DestFactor/ONE_MINUS_CONSTANT_COLOR com/mojang/blaze3d/platform/GlStateManager$DestFactor/ONE_MINUS_CONSTANT_COLOR +FD: com/mojang/blaze3d/platform/GlStateManager$DestFactor/ONE_MINUS_DST_ALPHA com/mojang/blaze3d/platform/GlStateManager$DestFactor/ONE_MINUS_DST_ALPHA +FD: com/mojang/blaze3d/platform/GlStateManager$DestFactor/ONE_MINUS_DST_COLOR com/mojang/blaze3d/platform/GlStateManager$DestFactor/ONE_MINUS_DST_COLOR +FD: com/mojang/blaze3d/platform/GlStateManager$DestFactor/ONE_MINUS_SRC_ALPHA com/mojang/blaze3d/platform/GlStateManager$DestFactor/ONE_MINUS_SRC_ALPHA +FD: com/mojang/blaze3d/platform/GlStateManager$DestFactor/ONE_MINUS_SRC_COLOR com/mojang/blaze3d/platform/GlStateManager$DestFactor/ONE_MINUS_SRC_COLOR +FD: com/mojang/blaze3d/platform/GlStateManager$DestFactor/SRC_ALPHA com/mojang/blaze3d/platform/GlStateManager$DestFactor/SRC_ALPHA +FD: com/mojang/blaze3d/platform/GlStateManager$DestFactor/SRC_COLOR com/mojang/blaze3d/platform/GlStateManager$DestFactor/SRC_COLOR +FD: com/mojang/blaze3d/platform/GlStateManager$DestFactor/ZERO com/mojang/blaze3d/platform/GlStateManager$DestFactor/ZERO +FD: com/mojang/blaze3d/platform/GlStateManager$DestFactor/value com/mojang/blaze3d/platform/GlStateManager$DestFactor/value +FD: com/mojang/blaze3d/platform/GlStateManager$LogicOp/$VALUES com/mojang/blaze3d/platform/GlStateManager$LogicOp/$VALUES +FD: com/mojang/blaze3d/platform/GlStateManager$LogicOp/AND com/mojang/blaze3d/platform/GlStateManager$LogicOp/AND +FD: com/mojang/blaze3d/platform/GlStateManager$LogicOp/AND_INVERTED com/mojang/blaze3d/platform/GlStateManager$LogicOp/AND_INVERTED +FD: com/mojang/blaze3d/platform/GlStateManager$LogicOp/AND_REVERSE com/mojang/blaze3d/platform/GlStateManager$LogicOp/AND_REVERSE +FD: com/mojang/blaze3d/platform/GlStateManager$LogicOp/CLEAR com/mojang/blaze3d/platform/GlStateManager$LogicOp/CLEAR +FD: com/mojang/blaze3d/platform/GlStateManager$LogicOp/COPY com/mojang/blaze3d/platform/GlStateManager$LogicOp/COPY +FD: com/mojang/blaze3d/platform/GlStateManager$LogicOp/COPY_INVERTED com/mojang/blaze3d/platform/GlStateManager$LogicOp/COPY_INVERTED +FD: com/mojang/blaze3d/platform/GlStateManager$LogicOp/EQUIV com/mojang/blaze3d/platform/GlStateManager$LogicOp/EQUIV +FD: com/mojang/blaze3d/platform/GlStateManager$LogicOp/INVERT com/mojang/blaze3d/platform/GlStateManager$LogicOp/INVERT +FD: com/mojang/blaze3d/platform/GlStateManager$LogicOp/NAND com/mojang/blaze3d/platform/GlStateManager$LogicOp/NAND +FD: com/mojang/blaze3d/platform/GlStateManager$LogicOp/NOOP com/mojang/blaze3d/platform/GlStateManager$LogicOp/NOOP +FD: com/mojang/blaze3d/platform/GlStateManager$LogicOp/NOR com/mojang/blaze3d/platform/GlStateManager$LogicOp/NOR +FD: com/mojang/blaze3d/platform/GlStateManager$LogicOp/OR com/mojang/blaze3d/platform/GlStateManager$LogicOp/OR +FD: com/mojang/blaze3d/platform/GlStateManager$LogicOp/OR_INVERTED com/mojang/blaze3d/platform/GlStateManager$LogicOp/OR_INVERTED +FD: com/mojang/blaze3d/platform/GlStateManager$LogicOp/OR_REVERSE com/mojang/blaze3d/platform/GlStateManager$LogicOp/OR_REVERSE +FD: com/mojang/blaze3d/platform/GlStateManager$LogicOp/SET com/mojang/blaze3d/platform/GlStateManager$LogicOp/SET +FD: com/mojang/blaze3d/platform/GlStateManager$LogicOp/XOR com/mojang/blaze3d/platform/GlStateManager$LogicOp/XOR +FD: com/mojang/blaze3d/platform/GlStateManager$LogicOp/f_84715_ com/mojang/blaze3d/platform/GlStateManager$LogicOp/value +FD: com/mojang/blaze3d/platform/GlStateManager$PolygonOffsetState/f_84725_ com/mojang/blaze3d/platform/GlStateManager$PolygonOffsetState/fill +FD: com/mojang/blaze3d/platform/GlStateManager$PolygonOffsetState/f_84726_ com/mojang/blaze3d/platform/GlStateManager$PolygonOffsetState/line +FD: com/mojang/blaze3d/platform/GlStateManager$PolygonOffsetState/f_84727_ com/mojang/blaze3d/platform/GlStateManager$PolygonOffsetState/factor +FD: com/mojang/blaze3d/platform/GlStateManager$PolygonOffsetState/f_84728_ com/mojang/blaze3d/platform/GlStateManager$PolygonOffsetState/units +FD: com/mojang/blaze3d/platform/GlStateManager$ScissorState/f_84732_ com/mojang/blaze3d/platform/GlStateManager$ScissorState/mode +FD: com/mojang/blaze3d/platform/GlStateManager$SourceFactor/$VALUES com/mojang/blaze3d/platform/GlStateManager$SourceFactor/$VALUES +FD: com/mojang/blaze3d/platform/GlStateManager$SourceFactor/CONSTANT_ALPHA com/mojang/blaze3d/platform/GlStateManager$SourceFactor/CONSTANT_ALPHA +FD: com/mojang/blaze3d/platform/GlStateManager$SourceFactor/CONSTANT_COLOR com/mojang/blaze3d/platform/GlStateManager$SourceFactor/CONSTANT_COLOR +FD: com/mojang/blaze3d/platform/GlStateManager$SourceFactor/DST_ALPHA com/mojang/blaze3d/platform/GlStateManager$SourceFactor/DST_ALPHA +FD: com/mojang/blaze3d/platform/GlStateManager$SourceFactor/DST_COLOR com/mojang/blaze3d/platform/GlStateManager$SourceFactor/DST_COLOR +FD: com/mojang/blaze3d/platform/GlStateManager$SourceFactor/ONE com/mojang/blaze3d/platform/GlStateManager$SourceFactor/ONE +FD: com/mojang/blaze3d/platform/GlStateManager$SourceFactor/ONE_MINUS_CONSTANT_ALPHA com/mojang/blaze3d/platform/GlStateManager$SourceFactor/ONE_MINUS_CONSTANT_ALPHA +FD: com/mojang/blaze3d/platform/GlStateManager$SourceFactor/ONE_MINUS_CONSTANT_COLOR com/mojang/blaze3d/platform/GlStateManager$SourceFactor/ONE_MINUS_CONSTANT_COLOR +FD: com/mojang/blaze3d/platform/GlStateManager$SourceFactor/ONE_MINUS_DST_ALPHA com/mojang/blaze3d/platform/GlStateManager$SourceFactor/ONE_MINUS_DST_ALPHA +FD: com/mojang/blaze3d/platform/GlStateManager$SourceFactor/ONE_MINUS_DST_COLOR com/mojang/blaze3d/platform/GlStateManager$SourceFactor/ONE_MINUS_DST_COLOR +FD: com/mojang/blaze3d/platform/GlStateManager$SourceFactor/ONE_MINUS_SRC_ALPHA com/mojang/blaze3d/platform/GlStateManager$SourceFactor/ONE_MINUS_SRC_ALPHA +FD: com/mojang/blaze3d/platform/GlStateManager$SourceFactor/ONE_MINUS_SRC_COLOR com/mojang/blaze3d/platform/GlStateManager$SourceFactor/ONE_MINUS_SRC_COLOR +FD: com/mojang/blaze3d/platform/GlStateManager$SourceFactor/SRC_ALPHA com/mojang/blaze3d/platform/GlStateManager$SourceFactor/SRC_ALPHA +FD: com/mojang/blaze3d/platform/GlStateManager$SourceFactor/SRC_ALPHA_SATURATE com/mojang/blaze3d/platform/GlStateManager$SourceFactor/SRC_ALPHA_SATURATE +FD: com/mojang/blaze3d/platform/GlStateManager$SourceFactor/SRC_COLOR com/mojang/blaze3d/platform/GlStateManager$SourceFactor/SRC_COLOR +FD: com/mojang/blaze3d/platform/GlStateManager$SourceFactor/ZERO com/mojang/blaze3d/platform/GlStateManager$SourceFactor/ZERO +FD: com/mojang/blaze3d/platform/GlStateManager$SourceFactor/value com/mojang/blaze3d/platform/GlStateManager$SourceFactor/value +FD: com/mojang/blaze3d/platform/GlStateManager$StencilFunc/f_84761_ com/mojang/blaze3d/platform/GlStateManager$StencilFunc/func +FD: com/mojang/blaze3d/platform/GlStateManager$StencilFunc/f_84762_ com/mojang/blaze3d/platform/GlStateManager$StencilFunc/ref +FD: com/mojang/blaze3d/platform/GlStateManager$StencilFunc/f_84763_ com/mojang/blaze3d/platform/GlStateManager$StencilFunc/mask +FD: com/mojang/blaze3d/platform/GlStateManager$StencilState/f_84767_ com/mojang/blaze3d/platform/GlStateManager$StencilState/func +FD: com/mojang/blaze3d/platform/GlStateManager$StencilState/f_84768_ com/mojang/blaze3d/platform/GlStateManager$StencilState/mask +FD: com/mojang/blaze3d/platform/GlStateManager$StencilState/f_84769_ com/mojang/blaze3d/platform/GlStateManager$StencilState/fail +FD: com/mojang/blaze3d/platform/GlStateManager$StencilState/f_84770_ com/mojang/blaze3d/platform/GlStateManager$StencilState/zfail +FD: com/mojang/blaze3d/platform/GlStateManager$StencilState/f_84771_ com/mojang/blaze3d/platform/GlStateManager$StencilState/zpass +FD: com/mojang/blaze3d/platform/GlStateManager$TextureState/f_84801_ com/mojang/blaze3d/platform/GlStateManager$TextureState/binding +FD: com/mojang/blaze3d/platform/GlStateManager$Viewport/$VALUES com/mojang/blaze3d/platform/GlStateManager$Viewport/$VALUES +FD: com/mojang/blaze3d/platform/GlStateManager$Viewport/INSTANCE com/mojang/blaze3d/platform/GlStateManager$Viewport/INSTANCE +FD: com/mojang/blaze3d/platform/GlStateManager$Viewport/f_84806_ com/mojang/blaze3d/platform/GlStateManager$Viewport/x +FD: com/mojang/blaze3d/platform/GlStateManager$Viewport/f_84807_ com/mojang/blaze3d/platform/GlStateManager$Viewport/y +FD: com/mojang/blaze3d/platform/GlStateManager$Viewport/f_84808_ com/mojang/blaze3d/platform/GlStateManager$Viewport/width +FD: com/mojang/blaze3d/platform/GlStateManager$Viewport/f_84809_ com/mojang/blaze3d/platform/GlStateManager$Viewport/height +FD: com/mojang/blaze3d/platform/IconSet/$VALUES com/mojang/blaze3d/platform/IconSet/$VALUES +FD: com/mojang/blaze3d/platform/IconSet/RELEASE com/mojang/blaze3d/platform/IconSet/RELEASE +FD: com/mojang/blaze3d/platform/IconSet/SNAPSHOT com/mojang/blaze3d/platform/IconSet/SNAPSHOT +FD: com/mojang/blaze3d/platform/IconSet/f_279589_ com/mojang/blaze3d/platform/IconSet/path +FD: com/mojang/blaze3d/platform/InputConstants/f_166253_ com/mojang/blaze3d/platform/InputConstants/KEY_Q +FD: com/mojang/blaze3d/platform/InputConstants/f_166254_ com/mojang/blaze3d/platform/InputConstants/KEY_R +FD: com/mojang/blaze3d/platform/InputConstants/f_166255_ com/mojang/blaze3d/platform/InputConstants/KEY_S +FD: com/mojang/blaze3d/platform/InputConstants/f_166256_ com/mojang/blaze3d/platform/InputConstants/KEY_T +FD: com/mojang/blaze3d/platform/InputConstants/f_166257_ com/mojang/blaze3d/platform/InputConstants/KEY_U +FD: com/mojang/blaze3d/platform/InputConstants/f_166258_ com/mojang/blaze3d/platform/InputConstants/KEY_V +FD: com/mojang/blaze3d/platform/InputConstants/f_166259_ com/mojang/blaze3d/platform/InputConstants/KEY_W +FD: com/mojang/blaze3d/platform/InputConstants/f_166260_ com/mojang/blaze3d/platform/InputConstants/KEY_X +FD: com/mojang/blaze3d/platform/InputConstants/f_166261_ com/mojang/blaze3d/platform/InputConstants/KEY_Y +FD: com/mojang/blaze3d/platform/InputConstants/f_166262_ com/mojang/blaze3d/platform/InputConstants/KEY_Z +FD: com/mojang/blaze3d/platform/InputConstants/f_166263_ com/mojang/blaze3d/platform/InputConstants/KEY_F1 +FD: com/mojang/blaze3d/platform/InputConstants/f_166264_ com/mojang/blaze3d/platform/InputConstants/KEY_F2 +FD: com/mojang/blaze3d/platform/InputConstants/f_166265_ com/mojang/blaze3d/platform/InputConstants/KEY_F3 +FD: com/mojang/blaze3d/platform/InputConstants/f_166266_ com/mojang/blaze3d/platform/InputConstants/KEY_F4 +FD: com/mojang/blaze3d/platform/InputConstants/f_166267_ com/mojang/blaze3d/platform/InputConstants/KEY_F5 +FD: com/mojang/blaze3d/platform/InputConstants/f_166268_ com/mojang/blaze3d/platform/InputConstants/KEY_F6 +FD: com/mojang/blaze3d/platform/InputConstants/f_166269_ com/mojang/blaze3d/platform/InputConstants/KEY_F7 +FD: com/mojang/blaze3d/platform/InputConstants/f_166270_ com/mojang/blaze3d/platform/InputConstants/KEY_F8 +FD: com/mojang/blaze3d/platform/InputConstants/f_166271_ com/mojang/blaze3d/platform/InputConstants/KEY_F9 +FD: com/mojang/blaze3d/platform/InputConstants/f_166272_ com/mojang/blaze3d/platform/InputConstants/KEY_F10 +FD: com/mojang/blaze3d/platform/InputConstants/f_166273_ com/mojang/blaze3d/platform/InputConstants/KEY_F11 +FD: com/mojang/blaze3d/platform/InputConstants/f_166274_ com/mojang/blaze3d/platform/InputConstants/KEY_F12 +FD: com/mojang/blaze3d/platform/InputConstants/f_166275_ com/mojang/blaze3d/platform/InputConstants/KEY_F13 +FD: com/mojang/blaze3d/platform/InputConstants/f_166276_ com/mojang/blaze3d/platform/InputConstants/KEY_F14 +FD: com/mojang/blaze3d/platform/InputConstants/f_166277_ com/mojang/blaze3d/platform/InputConstants/KEY_F15 +FD: com/mojang/blaze3d/platform/InputConstants/f_166278_ com/mojang/blaze3d/platform/InputConstants/KEY_F16 +FD: com/mojang/blaze3d/platform/InputConstants/f_166279_ com/mojang/blaze3d/platform/InputConstants/KEY_0 +FD: com/mojang/blaze3d/platform/InputConstants/f_166280_ com/mojang/blaze3d/platform/InputConstants/KEY_UP +FD: com/mojang/blaze3d/platform/InputConstants/f_166281_ com/mojang/blaze3d/platform/InputConstants/KEY_ADD +FD: com/mojang/blaze3d/platform/InputConstants/f_166282_ com/mojang/blaze3d/platform/InputConstants/KEY_APOSTROPHE +FD: com/mojang/blaze3d/platform/InputConstants/f_166283_ com/mojang/blaze3d/platform/InputConstants/KEY_BACKSLASH +FD: com/mojang/blaze3d/platform/InputConstants/f_166284_ com/mojang/blaze3d/platform/InputConstants/KEY_COMMA +FD: com/mojang/blaze3d/platform/InputConstants/f_166285_ com/mojang/blaze3d/platform/InputConstants/KEY_EQUALS +FD: com/mojang/blaze3d/platform/InputConstants/f_166286_ com/mojang/blaze3d/platform/InputConstants/KEY_GRAVE +FD: com/mojang/blaze3d/platform/InputConstants/f_166287_ com/mojang/blaze3d/platform/InputConstants/KEY_LBRACKET +FD: com/mojang/blaze3d/platform/InputConstants/f_166288_ com/mojang/blaze3d/platform/InputConstants/KEY_MINUS +FD: com/mojang/blaze3d/platform/InputConstants/f_166289_ com/mojang/blaze3d/platform/InputConstants/KEY_MULTIPLY +FD: com/mojang/blaze3d/platform/InputConstants/f_166290_ com/mojang/blaze3d/platform/InputConstants/KEY_PERIOD +FD: com/mojang/blaze3d/platform/InputConstants/f_166291_ com/mojang/blaze3d/platform/InputConstants/KEY_RBRACKET +FD: com/mojang/blaze3d/platform/InputConstants/f_166292_ com/mojang/blaze3d/platform/InputConstants/KEY_SEMICOLON +FD: com/mojang/blaze3d/platform/InputConstants/f_166293_ com/mojang/blaze3d/platform/InputConstants/KEY_SLASH +FD: com/mojang/blaze3d/platform/InputConstants/f_166294_ com/mojang/blaze3d/platform/InputConstants/KEY_SPACE +FD: com/mojang/blaze3d/platform/InputConstants/f_166295_ com/mojang/blaze3d/platform/InputConstants/KEY_TAB +FD: com/mojang/blaze3d/platform/InputConstants/f_166296_ com/mojang/blaze3d/platform/InputConstants/KEY_LALT +FD: com/mojang/blaze3d/platform/InputConstants/f_166297_ com/mojang/blaze3d/platform/InputConstants/KEY_LCONTROL +FD: com/mojang/blaze3d/platform/InputConstants/f_166298_ com/mojang/blaze3d/platform/InputConstants/KEY_LSHIFT +FD: com/mojang/blaze3d/platform/InputConstants/f_166299_ com/mojang/blaze3d/platform/InputConstants/KEY_LWIN +FD: com/mojang/blaze3d/platform/InputConstants/f_166300_ com/mojang/blaze3d/platform/InputConstants/KEY_RALT +FD: com/mojang/blaze3d/platform/InputConstants/f_166301_ com/mojang/blaze3d/platform/InputConstants/KEY_RCONTROL +FD: com/mojang/blaze3d/platform/InputConstants/f_166302_ com/mojang/blaze3d/platform/InputConstants/KEY_RSHIFT +FD: com/mojang/blaze3d/platform/InputConstants/f_166303_ com/mojang/blaze3d/platform/InputConstants/KEY_RWIN +FD: com/mojang/blaze3d/platform/InputConstants/f_166304_ com/mojang/blaze3d/platform/InputConstants/KEY_RETURN +FD: com/mojang/blaze3d/platform/InputConstants/f_166305_ com/mojang/blaze3d/platform/InputConstants/KEY_ESCAPE +FD: com/mojang/blaze3d/platform/InputConstants/f_166306_ com/mojang/blaze3d/platform/InputConstants/KEY_F17 +FD: com/mojang/blaze3d/platform/InputConstants/f_166307_ com/mojang/blaze3d/platform/InputConstants/KEY_F18 +FD: com/mojang/blaze3d/platform/InputConstants/f_166308_ com/mojang/blaze3d/platform/InputConstants/KEY_F19 +FD: com/mojang/blaze3d/platform/InputConstants/f_166309_ com/mojang/blaze3d/platform/InputConstants/KEY_F20 +FD: com/mojang/blaze3d/platform/InputConstants/f_166310_ com/mojang/blaze3d/platform/InputConstants/KEY_F21 +FD: com/mojang/blaze3d/platform/InputConstants/f_166311_ com/mojang/blaze3d/platform/InputConstants/KEY_F22 +FD: com/mojang/blaze3d/platform/InputConstants/f_166312_ com/mojang/blaze3d/platform/InputConstants/KEY_F23 +FD: com/mojang/blaze3d/platform/InputConstants/f_166313_ com/mojang/blaze3d/platform/InputConstants/KEY_F24 +FD: com/mojang/blaze3d/platform/InputConstants/f_166314_ com/mojang/blaze3d/platform/InputConstants/KEY_F25 +FD: com/mojang/blaze3d/platform/InputConstants/f_166315_ com/mojang/blaze3d/platform/InputConstants/KEY_NUMLOCK +FD: com/mojang/blaze3d/platform/InputConstants/f_166316_ com/mojang/blaze3d/platform/InputConstants/KEY_NUMPAD0 +FD: com/mojang/blaze3d/platform/InputConstants/f_166317_ com/mojang/blaze3d/platform/InputConstants/KEY_NUMPAD1 +FD: com/mojang/blaze3d/platform/InputConstants/f_166318_ com/mojang/blaze3d/platform/InputConstants/KEY_NUMPAD2 +FD: com/mojang/blaze3d/platform/InputConstants/f_166319_ com/mojang/blaze3d/platform/InputConstants/KEY_NUMPAD3 +FD: com/mojang/blaze3d/platform/InputConstants/f_166320_ com/mojang/blaze3d/platform/InputConstants/KEY_NUMPAD4 +FD: com/mojang/blaze3d/platform/InputConstants/f_166321_ com/mojang/blaze3d/platform/InputConstants/KEY_NUMPAD5 +FD: com/mojang/blaze3d/platform/InputConstants/f_166322_ com/mojang/blaze3d/platform/InputConstants/KEY_NUMPAD6 +FD: com/mojang/blaze3d/platform/InputConstants/f_166323_ com/mojang/blaze3d/platform/InputConstants/KEY_NUMPAD7 +FD: com/mojang/blaze3d/platform/InputConstants/f_166324_ com/mojang/blaze3d/platform/InputConstants/KEY_NUMPAD8 +FD: com/mojang/blaze3d/platform/InputConstants/f_166325_ com/mojang/blaze3d/platform/InputConstants/KEY_NUMPAD9 +FD: com/mojang/blaze3d/platform/InputConstants/f_166326_ com/mojang/blaze3d/platform/InputConstants/KEY_NUMPADCOMMA +FD: com/mojang/blaze3d/platform/InputConstants/f_166327_ com/mojang/blaze3d/platform/InputConstants/KEY_NUMPADENTER +FD: com/mojang/blaze3d/platform/InputConstants/f_166328_ com/mojang/blaze3d/platform/InputConstants/KEY_NUMPADEQUALS +FD: com/mojang/blaze3d/platform/InputConstants/f_166329_ com/mojang/blaze3d/platform/InputConstants/KEY_DOWN +FD: com/mojang/blaze3d/platform/InputConstants/f_166330_ com/mojang/blaze3d/platform/InputConstants/KEY_LEFT +FD: com/mojang/blaze3d/platform/InputConstants/f_166331_ com/mojang/blaze3d/platform/InputConstants/KEY_RIGHT +FD: com/mojang/blaze3d/platform/InputConstants/f_166332_ com/mojang/blaze3d/platform/InputConstants/KEY_1 +FD: com/mojang/blaze3d/platform/InputConstants/f_166333_ com/mojang/blaze3d/platform/InputConstants/KEY_BACKSPACE +FD: com/mojang/blaze3d/platform/InputConstants/f_166334_ com/mojang/blaze3d/platform/InputConstants/KEY_DELETE +FD: com/mojang/blaze3d/platform/InputConstants/f_166335_ com/mojang/blaze3d/platform/InputConstants/KEY_END +FD: com/mojang/blaze3d/platform/InputConstants/f_166336_ com/mojang/blaze3d/platform/InputConstants/KEY_HOME +FD: com/mojang/blaze3d/platform/InputConstants/f_166337_ com/mojang/blaze3d/platform/InputConstants/KEY_INSERT +FD: com/mojang/blaze3d/platform/InputConstants/f_166338_ com/mojang/blaze3d/platform/InputConstants/KEY_PAGEDOWN +FD: com/mojang/blaze3d/platform/InputConstants/f_166339_ com/mojang/blaze3d/platform/InputConstants/KEY_PAGEUP +FD: com/mojang/blaze3d/platform/InputConstants/f_166340_ com/mojang/blaze3d/platform/InputConstants/KEY_CAPSLOCK +FD: com/mojang/blaze3d/platform/InputConstants/f_166341_ com/mojang/blaze3d/platform/InputConstants/KEY_PAUSE +FD: com/mojang/blaze3d/platform/InputConstants/f_166342_ com/mojang/blaze3d/platform/InputConstants/KEY_SCROLLLOCK +FD: com/mojang/blaze3d/platform/InputConstants/f_166343_ com/mojang/blaze3d/platform/InputConstants/KEY_PRINTSCREEN +FD: com/mojang/blaze3d/platform/InputConstants/f_166344_ com/mojang/blaze3d/platform/InputConstants/PRESS +FD: com/mojang/blaze3d/platform/InputConstants/f_166345_ com/mojang/blaze3d/platform/InputConstants/RELEASE +FD: com/mojang/blaze3d/platform/InputConstants/f_166346_ com/mojang/blaze3d/platform/InputConstants/REPEAT +FD: com/mojang/blaze3d/platform/InputConstants/f_166347_ com/mojang/blaze3d/platform/InputConstants/MOUSE_BUTTON_LEFT +FD: com/mojang/blaze3d/platform/InputConstants/f_166348_ com/mojang/blaze3d/platform/InputConstants/MOUSE_BUTTON_MIDDLE +FD: com/mojang/blaze3d/platform/InputConstants/f_166349_ com/mojang/blaze3d/platform/InputConstants/MOUSE_BUTTON_RIGHT +FD: com/mojang/blaze3d/platform/InputConstants/f_166350_ com/mojang/blaze3d/platform/InputConstants/MOD_CONTROL +FD: com/mojang/blaze3d/platform/InputConstants/f_166351_ com/mojang/blaze3d/platform/InputConstants/CURSOR +FD: com/mojang/blaze3d/platform/InputConstants/f_166352_ com/mojang/blaze3d/platform/InputConstants/CURSOR_DISABLED +FD: com/mojang/blaze3d/platform/InputConstants/f_166353_ com/mojang/blaze3d/platform/InputConstants/CURSOR_NORMAL +FD: com/mojang/blaze3d/platform/InputConstants/f_166354_ com/mojang/blaze3d/platform/InputConstants/GLFW_RAW_MOUSE_MOTION_SUPPORTED +FD: com/mojang/blaze3d/platform/InputConstants/f_166355_ com/mojang/blaze3d/platform/InputConstants/KEY_2 +FD: com/mojang/blaze3d/platform/InputConstants/f_166356_ com/mojang/blaze3d/platform/InputConstants/KEY_3 +FD: com/mojang/blaze3d/platform/InputConstants/f_166357_ com/mojang/blaze3d/platform/InputConstants/KEY_4 +FD: com/mojang/blaze3d/platform/InputConstants/f_166358_ com/mojang/blaze3d/platform/InputConstants/KEY_5 +FD: com/mojang/blaze3d/platform/InputConstants/f_166359_ com/mojang/blaze3d/platform/InputConstants/KEY_6 +FD: com/mojang/blaze3d/platform/InputConstants/f_166360_ com/mojang/blaze3d/platform/InputConstants/KEY_7 +FD: com/mojang/blaze3d/platform/InputConstants/f_166361_ com/mojang/blaze3d/platform/InputConstants/KEY_8 +FD: com/mojang/blaze3d/platform/InputConstants/f_166362_ com/mojang/blaze3d/platform/InputConstants/KEY_9 +FD: com/mojang/blaze3d/platform/InputConstants/f_166363_ com/mojang/blaze3d/platform/InputConstants/KEY_A +FD: com/mojang/blaze3d/platform/InputConstants/f_166364_ com/mojang/blaze3d/platform/InputConstants/KEY_B +FD: com/mojang/blaze3d/platform/InputConstants/f_166365_ com/mojang/blaze3d/platform/InputConstants/KEY_C +FD: com/mojang/blaze3d/platform/InputConstants/f_166366_ com/mojang/blaze3d/platform/InputConstants/KEY_D +FD: com/mojang/blaze3d/platform/InputConstants/f_166367_ com/mojang/blaze3d/platform/InputConstants/KEY_E +FD: com/mojang/blaze3d/platform/InputConstants/f_166368_ com/mojang/blaze3d/platform/InputConstants/KEY_F +FD: com/mojang/blaze3d/platform/InputConstants/f_166369_ com/mojang/blaze3d/platform/InputConstants/KEY_G +FD: com/mojang/blaze3d/platform/InputConstants/f_166370_ com/mojang/blaze3d/platform/InputConstants/KEY_H +FD: com/mojang/blaze3d/platform/InputConstants/f_166371_ com/mojang/blaze3d/platform/InputConstants/KEY_I +FD: com/mojang/blaze3d/platform/InputConstants/f_166372_ com/mojang/blaze3d/platform/InputConstants/KEY_J +FD: com/mojang/blaze3d/platform/InputConstants/f_166373_ com/mojang/blaze3d/platform/InputConstants/KEY_K +FD: com/mojang/blaze3d/platform/InputConstants/f_166374_ com/mojang/blaze3d/platform/InputConstants/KEY_L +FD: com/mojang/blaze3d/platform/InputConstants/f_166375_ com/mojang/blaze3d/platform/InputConstants/KEY_M +FD: com/mojang/blaze3d/platform/InputConstants/f_166376_ com/mojang/blaze3d/platform/InputConstants/KEY_N +FD: com/mojang/blaze3d/platform/InputConstants/f_166377_ com/mojang/blaze3d/platform/InputConstants/KEY_O +FD: com/mojang/blaze3d/platform/InputConstants/f_166378_ com/mojang/blaze3d/platform/InputConstants/KEY_P +FD: com/mojang/blaze3d/platform/InputConstants/f_84822_ com/mojang/blaze3d/platform/InputConstants/UNKNOWN +FD: com/mojang/blaze3d/platform/InputConstants/f_84824_ com/mojang/blaze3d/platform/InputConstants/GLFW_RAW_MOUSE_MOTION +FD: com/mojang/blaze3d/platform/InputConstants$Key/f_84853_ com/mojang/blaze3d/platform/InputConstants$Key/name +FD: com/mojang/blaze3d/platform/InputConstants$Key/f_84854_ com/mojang/blaze3d/platform/InputConstants$Key/type +FD: com/mojang/blaze3d/platform/InputConstants$Key/f_84855_ com/mojang/blaze3d/platform/InputConstants$Key/value +FD: com/mojang/blaze3d/platform/InputConstants$Key/f_84856_ com/mojang/blaze3d/platform/InputConstants$Key/displayName +FD: com/mojang/blaze3d/platform/InputConstants$Key/f_84857_ com/mojang/blaze3d/platform/InputConstants$Key/NAME_MAP +FD: com/mojang/blaze3d/platform/InputConstants$Type/$VALUES com/mojang/blaze3d/platform/InputConstants$Type/$VALUES +FD: com/mojang/blaze3d/platform/InputConstants$Type/KEYSYM com/mojang/blaze3d/platform/InputConstants$Type/KEYSYM +FD: com/mojang/blaze3d/platform/InputConstants$Type/MOUSE com/mojang/blaze3d/platform/InputConstants$Type/MOUSE +FD: com/mojang/blaze3d/platform/InputConstants$Type/SCANCODE com/mojang/blaze3d/platform/InputConstants$Type/SCANCODE +FD: com/mojang/blaze3d/platform/InputConstants$Type/f_287790_ com/mojang/blaze3d/platform/InputConstants$Type/KEY_KEYBOARD_UNKNOWN +FD: com/mojang/blaze3d/platform/InputConstants$Type/f_84885_ com/mojang/blaze3d/platform/InputConstants$Type/map +FD: com/mojang/blaze3d/platform/InputConstants$Type/f_84886_ com/mojang/blaze3d/platform/InputConstants$Type/defaultPrefix +FD: com/mojang/blaze3d/platform/InputConstants$Type/f_84887_ com/mojang/blaze3d/platform/InputConstants$Type/displayTextSupplier +FD: com/mojang/blaze3d/platform/Lighting/f_166381_ com/mojang/blaze3d/platform/Lighting/INVENTORY_DIFFUSE_LIGHT_0 +FD: com/mojang/blaze3d/platform/Lighting/f_166382_ com/mojang/blaze3d/platform/Lighting/INVENTORY_DIFFUSE_LIGHT_1 +FD: com/mojang/blaze3d/platform/Lighting/f_84919_ com/mojang/blaze3d/platform/Lighting/DIFFUSE_LIGHT_0 +FD: com/mojang/blaze3d/platform/Lighting/f_84920_ com/mojang/blaze3d/platform/Lighting/DIFFUSE_LIGHT_1 +FD: com/mojang/blaze3d/platform/Lighting/f_84921_ com/mojang/blaze3d/platform/Lighting/NETHER_DIFFUSE_LIGHT_0 +FD: com/mojang/blaze3d/platform/Lighting/f_84922_ com/mojang/blaze3d/platform/Lighting/NETHER_DIFFUSE_LIGHT_1 +FD: com/mojang/blaze3d/platform/MacosUtil/f_182515_ com/mojang/blaze3d/platform/MacosUtil/NS_FULL_SCREEN_WINDOW_MASK +FD: com/mojang/blaze3d/platform/MemoryTracker/f_182525_ com/mojang/blaze3d/platform/MemoryTracker/ALLOCATOR +FD: com/mojang/blaze3d/platform/Monitor/f_84936_ com/mojang/blaze3d/platform/Monitor/monitor +FD: com/mojang/blaze3d/platform/Monitor/f_84937_ com/mojang/blaze3d/platform/Monitor/videoModes +FD: com/mojang/blaze3d/platform/Monitor/f_84938_ com/mojang/blaze3d/platform/Monitor/currentMode +FD: com/mojang/blaze3d/platform/Monitor/f_84939_ com/mojang/blaze3d/platform/Monitor/x +FD: com/mojang/blaze3d/platform/Monitor/f_84940_ com/mojang/blaze3d/platform/Monitor/y +FD: com/mojang/blaze3d/platform/NativeImage/f_84958_ com/mojang/blaze3d/platform/NativeImage/LOGGER +FD: com/mojang/blaze3d/platform/NativeImage/f_84959_ com/mojang/blaze3d/platform/NativeImage/OPEN_OPTIONS +FD: com/mojang/blaze3d/platform/NativeImage/f_84960_ com/mojang/blaze3d/platform/NativeImage/format +FD: com/mojang/blaze3d/platform/NativeImage/f_84961_ com/mojang/blaze3d/platform/NativeImage/width +FD: com/mojang/blaze3d/platform/NativeImage/f_84962_ com/mojang/blaze3d/platform/NativeImage/height +FD: com/mojang/blaze3d/platform/NativeImage/f_84963_ com/mojang/blaze3d/platform/NativeImage/useStbFree +FD: com/mojang/blaze3d/platform/NativeImage/f_84964_ com/mojang/blaze3d/platform/NativeImage/pixels +FD: com/mojang/blaze3d/platform/NativeImage/f_84965_ com/mojang/blaze3d/platform/NativeImage/size +FD: com/mojang/blaze3d/platform/NativeImage$Format/$VALUES com/mojang/blaze3d/platform/NativeImage$Format/$VALUES +FD: com/mojang/blaze3d/platform/NativeImage$Format/LUMINANCE com/mojang/blaze3d/platform/NativeImage$Format/LUMINANCE +FD: com/mojang/blaze3d/platform/NativeImage$Format/LUMINANCE_ALPHA com/mojang/blaze3d/platform/NativeImage$Format/LUMINANCE_ALPHA +FD: com/mojang/blaze3d/platform/NativeImage$Format/RGB com/mojang/blaze3d/platform/NativeImage$Format/RGB +FD: com/mojang/blaze3d/platform/NativeImage$Format/RGBA com/mojang/blaze3d/platform/NativeImage$Format/RGBA +FD: com/mojang/blaze3d/platform/NativeImage$Format/f_85130_ com/mojang/blaze3d/platform/NativeImage$Format/components +FD: com/mojang/blaze3d/platform/NativeImage$Format/f_85131_ com/mojang/blaze3d/platform/NativeImage$Format/glFormat +FD: com/mojang/blaze3d/platform/NativeImage$Format/f_85132_ com/mojang/blaze3d/platform/NativeImage$Format/hasRed +FD: com/mojang/blaze3d/platform/NativeImage$Format/f_85133_ com/mojang/blaze3d/platform/NativeImage$Format/hasGreen +FD: com/mojang/blaze3d/platform/NativeImage$Format/f_85134_ com/mojang/blaze3d/platform/NativeImage$Format/hasBlue +FD: com/mojang/blaze3d/platform/NativeImage$Format/f_85135_ com/mojang/blaze3d/platform/NativeImage$Format/hasLuminance +FD: com/mojang/blaze3d/platform/NativeImage$Format/f_85136_ com/mojang/blaze3d/platform/NativeImage$Format/hasAlpha +FD: com/mojang/blaze3d/platform/NativeImage$Format/f_85137_ com/mojang/blaze3d/platform/NativeImage$Format/redOffset +FD: com/mojang/blaze3d/platform/NativeImage$Format/f_85138_ com/mojang/blaze3d/platform/NativeImage$Format/greenOffset +FD: com/mojang/blaze3d/platform/NativeImage$Format/f_85139_ com/mojang/blaze3d/platform/NativeImage$Format/blueOffset +FD: com/mojang/blaze3d/platform/NativeImage$Format/f_85140_ com/mojang/blaze3d/platform/NativeImage$Format/luminanceOffset +FD: com/mojang/blaze3d/platform/NativeImage$Format/f_85141_ com/mojang/blaze3d/platform/NativeImage$Format/alphaOffset +FD: com/mojang/blaze3d/platform/NativeImage$Format/f_85142_ com/mojang/blaze3d/platform/NativeImage$Format/supportedByStb +FD: com/mojang/blaze3d/platform/NativeImage$InternalGlFormat/$VALUES com/mojang/blaze3d/platform/NativeImage$InternalGlFormat/$VALUES +FD: com/mojang/blaze3d/platform/NativeImage$InternalGlFormat/RED com/mojang/blaze3d/platform/NativeImage$InternalGlFormat/RED +FD: com/mojang/blaze3d/platform/NativeImage$InternalGlFormat/RG com/mojang/blaze3d/platform/NativeImage$InternalGlFormat/RG +FD: com/mojang/blaze3d/platform/NativeImage$InternalGlFormat/RGB com/mojang/blaze3d/platform/NativeImage$InternalGlFormat/RGB +FD: com/mojang/blaze3d/platform/NativeImage$InternalGlFormat/RGBA com/mojang/blaze3d/platform/NativeImage$InternalGlFormat/RGBA +FD: com/mojang/blaze3d/platform/NativeImage$InternalGlFormat/f_85184_ com/mojang/blaze3d/platform/NativeImage$InternalGlFormat/glFormat +FD: com/mojang/blaze3d/platform/NativeImage$WriteCallback/f_85195_ com/mojang/blaze3d/platform/NativeImage$WriteCallback/output +FD: com/mojang/blaze3d/platform/NativeImage$WriteCallback/f_85196_ com/mojang/blaze3d/platform/NativeImage$WriteCallback/exception +FD: com/mojang/blaze3d/platform/ScreenManager/f_212357_ com/mojang/blaze3d/platform/ScreenManager/LOGGER +FD: com/mojang/blaze3d/platform/ScreenManager/f_85262_ com/mojang/blaze3d/platform/ScreenManager/monitors +FD: com/mojang/blaze3d/platform/ScreenManager/f_85263_ com/mojang/blaze3d/platform/ScreenManager/monitorCreator +FD: com/mojang/blaze3d/platform/TextureUtil/DEFAULT_IMAGE_BUFFER_SIZE com/mojang/blaze3d/platform/TextureUtil/DEFAULT_IMAGE_BUFFER_SIZE +FD: com/mojang/blaze3d/platform/TextureUtil/LOGGER com/mojang/blaze3d/platform/TextureUtil/LOGGER +FD: com/mojang/blaze3d/platform/TextureUtil/MIN_MIPMAP_LEVEL com/mojang/blaze3d/platform/TextureUtil/MIN_MIPMAP_LEVEL +FD: com/mojang/blaze3d/platform/VideoMode/f_85313_ com/mojang/blaze3d/platform/VideoMode/width +FD: com/mojang/blaze3d/platform/VideoMode/f_85314_ com/mojang/blaze3d/platform/VideoMode/height +FD: com/mojang/blaze3d/platform/VideoMode/f_85315_ com/mojang/blaze3d/platform/VideoMode/redBits +FD: com/mojang/blaze3d/platform/VideoMode/f_85316_ com/mojang/blaze3d/platform/VideoMode/greenBits +FD: com/mojang/blaze3d/platform/VideoMode/f_85317_ com/mojang/blaze3d/platform/VideoMode/blueBits +FD: com/mojang/blaze3d/platform/VideoMode/f_85318_ com/mojang/blaze3d/platform/VideoMode/refreshRate +FD: com/mojang/blaze3d/platform/VideoMode/f_85319_ com/mojang/blaze3d/platform/VideoMode/PATTERN +FD: com/mojang/blaze3d/platform/Window/f_85345_ com/mojang/blaze3d/platform/Window/LOGGER +FD: com/mojang/blaze3d/platform/Window/f_85346_ com/mojang/blaze3d/platform/Window/defaultErrorCallback +FD: com/mojang/blaze3d/platform/Window/f_85347_ com/mojang/blaze3d/platform/Window/eventHandler +FD: com/mojang/blaze3d/platform/Window/f_85348_ com/mojang/blaze3d/platform/Window/screenManager +FD: com/mojang/blaze3d/platform/Window/f_85349_ com/mojang/blaze3d/platform/Window/window +FD: com/mojang/blaze3d/platform/Window/f_85350_ com/mojang/blaze3d/platform/Window/windowedX +FD: com/mojang/blaze3d/platform/Window/f_85351_ com/mojang/blaze3d/platform/Window/windowedY +FD: com/mojang/blaze3d/platform/Window/f_85352_ com/mojang/blaze3d/platform/Window/windowedWidth +FD: com/mojang/blaze3d/platform/Window/f_85353_ com/mojang/blaze3d/platform/Window/windowedHeight +FD: com/mojang/blaze3d/platform/Window/f_85354_ com/mojang/blaze3d/platform/Window/preferredFullscreenVideoMode +FD: com/mojang/blaze3d/platform/Window/f_85355_ com/mojang/blaze3d/platform/Window/fullscreen +FD: com/mojang/blaze3d/platform/Window/f_85356_ com/mojang/blaze3d/platform/Window/actuallyFullscreen +FD: com/mojang/blaze3d/platform/Window/f_85357_ com/mojang/blaze3d/platform/Window/x +FD: com/mojang/blaze3d/platform/Window/f_85358_ com/mojang/blaze3d/platform/Window/y +FD: com/mojang/blaze3d/platform/Window/f_85359_ com/mojang/blaze3d/platform/Window/width +FD: com/mojang/blaze3d/platform/Window/f_85360_ com/mojang/blaze3d/platform/Window/height +FD: com/mojang/blaze3d/platform/Window/f_85361_ com/mojang/blaze3d/platform/Window/framebufferWidth +FD: com/mojang/blaze3d/platform/Window/f_85362_ com/mojang/blaze3d/platform/Window/framebufferHeight +FD: com/mojang/blaze3d/platform/Window/f_85363_ com/mojang/blaze3d/platform/Window/guiScaledWidth +FD: com/mojang/blaze3d/platform/Window/f_85364_ com/mojang/blaze3d/platform/Window/guiScaledHeight +FD: com/mojang/blaze3d/platform/Window/f_85365_ com/mojang/blaze3d/platform/Window/guiScale +FD: com/mojang/blaze3d/platform/Window/f_85366_ com/mojang/blaze3d/platform/Window/errorSection +FD: com/mojang/blaze3d/platform/Window/f_85367_ com/mojang/blaze3d/platform/Window/dirty +FD: com/mojang/blaze3d/platform/Window/f_85368_ com/mojang/blaze3d/platform/Window/framerateLimit +FD: com/mojang/blaze3d/platform/Window/f_85369_ com/mojang/blaze3d/platform/Window/vsync +FD: com/mojang/blaze3d/preprocessor/GlslPreprocessor/f_166454_ com/mojang/blaze3d/preprocessor/GlslPreprocessor/C_COMMENT +FD: com/mojang/blaze3d/preprocessor/GlslPreprocessor/f_166455_ com/mojang/blaze3d/preprocessor/GlslPreprocessor/LINE_COMMENT +FD: com/mojang/blaze3d/preprocessor/GlslPreprocessor/f_166456_ com/mojang/blaze3d/preprocessor/GlslPreprocessor/REGEX_MOJ_IMPORT +FD: com/mojang/blaze3d/preprocessor/GlslPreprocessor/f_166457_ com/mojang/blaze3d/preprocessor/GlslPreprocessor/REGEX_VERSION +FD: com/mojang/blaze3d/preprocessor/GlslPreprocessor/f_166458_ com/mojang/blaze3d/preprocessor/GlslPreprocessor/REGEX_ENDS_WITH_WHITESPACE +FD: com/mojang/blaze3d/preprocessor/GlslPreprocessor$Context/f_166482_ com/mojang/blaze3d/preprocessor/GlslPreprocessor$Context/glslVersion +FD: com/mojang/blaze3d/preprocessor/GlslPreprocessor$Context/f_166483_ com/mojang/blaze3d/preprocessor/GlslPreprocessor$Context/sourceId +FD: com/mojang/blaze3d/shaders/BlendMode/f_85499_ com/mojang/blaze3d/shaders/BlendMode/lastApplied +FD: com/mojang/blaze3d/shaders/BlendMode/f_85500_ com/mojang/blaze3d/shaders/BlendMode/srcColorFactor +FD: com/mojang/blaze3d/shaders/BlendMode/f_85501_ com/mojang/blaze3d/shaders/BlendMode/srcAlphaFactor +FD: com/mojang/blaze3d/shaders/BlendMode/f_85502_ com/mojang/blaze3d/shaders/BlendMode/dstColorFactor +FD: com/mojang/blaze3d/shaders/BlendMode/f_85503_ com/mojang/blaze3d/shaders/BlendMode/dstAlphaFactor +FD: com/mojang/blaze3d/shaders/BlendMode/f_85504_ com/mojang/blaze3d/shaders/BlendMode/blendFunc +FD: com/mojang/blaze3d/shaders/BlendMode/f_85505_ com/mojang/blaze3d/shaders/BlendMode/separateBlend +FD: com/mojang/blaze3d/shaders/BlendMode/f_85506_ com/mojang/blaze3d/shaders/BlendMode/opaque +FD: com/mojang/blaze3d/shaders/EffectProgram/f_166578_ com/mojang/blaze3d/shaders/EffectProgram/PREPROCESSOR +FD: com/mojang/blaze3d/shaders/EffectProgram/f_166579_ com/mojang/blaze3d/shaders/EffectProgram/references +FD: com/mojang/blaze3d/shaders/FogShape/$VALUES com/mojang/blaze3d/shaders/FogShape/$VALUES +FD: com/mojang/blaze3d/shaders/FogShape/CYLINDER com/mojang/blaze3d/shaders/FogShape/CYLINDER +FD: com/mojang/blaze3d/shaders/FogShape/SPHERE com/mojang/blaze3d/shaders/FogShape/SPHERE +FD: com/mojang/blaze3d/shaders/FogShape/f_202317_ com/mojang/blaze3d/shaders/FogShape/index +FD: com/mojang/blaze3d/shaders/Program/f_166598_ com/mojang/blaze3d/shaders/Program/MAX_LOG_LENGTH +FD: com/mojang/blaze3d/shaders/Program/f_85535_ com/mojang/blaze3d/shaders/Program/type +FD: com/mojang/blaze3d/shaders/Program/f_85536_ com/mojang/blaze3d/shaders/Program/name +FD: com/mojang/blaze3d/shaders/Program/f_85537_ com/mojang/blaze3d/shaders/Program/id +FD: com/mojang/blaze3d/shaders/Program$Type/$VALUES com/mojang/blaze3d/shaders/Program$Type/$VALUES +FD: com/mojang/blaze3d/shaders/Program$Type/FRAGMENT com/mojang/blaze3d/shaders/Program$Type/FRAGMENT +FD: com/mojang/blaze3d/shaders/Program$Type/VERTEX com/mojang/blaze3d/shaders/Program$Type/VERTEX +FD: com/mojang/blaze3d/shaders/Program$Type/f_85554_ com/mojang/blaze3d/shaders/Program$Type/name +FD: com/mojang/blaze3d/shaders/Program$Type/f_85555_ com/mojang/blaze3d/shaders/Program$Type/extension +FD: com/mojang/blaze3d/shaders/Program$Type/f_85556_ com/mojang/blaze3d/shaders/Program$Type/glType +FD: com/mojang/blaze3d/shaders/Program$Type/f_85557_ com/mojang/blaze3d/shaders/Program$Type/programs +FD: com/mojang/blaze3d/shaders/ProgramManager/f_85575_ com/mojang/blaze3d/shaders/ProgramManager/LOGGER +FD: com/mojang/blaze3d/shaders/Uniform/f_166625_ com/mojang/blaze3d/shaders/Uniform/UT_INT1 +FD: com/mojang/blaze3d/shaders/Uniform/f_166626_ com/mojang/blaze3d/shaders/Uniform/UT_INT2 +FD: com/mojang/blaze3d/shaders/Uniform/f_166627_ com/mojang/blaze3d/shaders/Uniform/UT_INT3 +FD: com/mojang/blaze3d/shaders/Uniform/f_166628_ com/mojang/blaze3d/shaders/Uniform/UT_INT4 +FD: com/mojang/blaze3d/shaders/Uniform/f_166629_ com/mojang/blaze3d/shaders/Uniform/UT_FLOAT1 +FD: com/mojang/blaze3d/shaders/Uniform/f_166630_ com/mojang/blaze3d/shaders/Uniform/UT_FLOAT2 +FD: com/mojang/blaze3d/shaders/Uniform/f_166631_ com/mojang/blaze3d/shaders/Uniform/UT_FLOAT3 +FD: com/mojang/blaze3d/shaders/Uniform/f_166632_ com/mojang/blaze3d/shaders/Uniform/UT_FLOAT4 +FD: com/mojang/blaze3d/shaders/Uniform/f_166633_ com/mojang/blaze3d/shaders/Uniform/UT_MAT2 +FD: com/mojang/blaze3d/shaders/Uniform/f_166634_ com/mojang/blaze3d/shaders/Uniform/UT_MAT3 +FD: com/mojang/blaze3d/shaders/Uniform/f_166635_ com/mojang/blaze3d/shaders/Uniform/UT_MAT4 +FD: com/mojang/blaze3d/shaders/Uniform/f_166636_ com/mojang/blaze3d/shaders/Uniform/TRANSPOSE_MATRICIES +FD: com/mojang/blaze3d/shaders/Uniform/f_85584_ com/mojang/blaze3d/shaders/Uniform/LOGGER +FD: com/mojang/blaze3d/shaders/Uniform/f_85585_ com/mojang/blaze3d/shaders/Uniform/location +FD: com/mojang/blaze3d/shaders/Uniform/f_85586_ com/mojang/blaze3d/shaders/Uniform/count +FD: com/mojang/blaze3d/shaders/Uniform/f_85587_ com/mojang/blaze3d/shaders/Uniform/type +FD: com/mojang/blaze3d/shaders/Uniform/f_85588_ com/mojang/blaze3d/shaders/Uniform/intValues +FD: com/mojang/blaze3d/shaders/Uniform/f_85589_ com/mojang/blaze3d/shaders/Uniform/floatValues +FD: com/mojang/blaze3d/shaders/Uniform/f_85590_ com/mojang/blaze3d/shaders/Uniform/name +FD: com/mojang/blaze3d/shaders/Uniform/f_85591_ com/mojang/blaze3d/shaders/Uniform/dirty +FD: com/mojang/blaze3d/shaders/Uniform/f_85592_ com/mojang/blaze3d/shaders/Uniform/parent +FD: com/mojang/blaze3d/systems/RenderSystem/LOGGER com/mojang/blaze3d/systems/RenderSystem/LOGGER +FD: com/mojang/blaze3d/systems/RenderSystem/MAX_SUPPORTED_TEXTURE_SIZE com/mojang/blaze3d/systems/RenderSystem/MAX_SUPPORTED_TEXTURE_SIZE +FD: com/mojang/blaze3d/systems/RenderSystem/MINIMUM_ATLAS_TEXTURE_SIZE com/mojang/blaze3d/systems/RenderSystem/MINIMUM_ATLAS_TEXTURE_SIZE +FD: com/mojang/blaze3d/systems/RenderSystem/RENDER_THREAD_TESSELATOR com/mojang/blaze3d/systems/RenderSystem/RENDER_THREAD_TESSELATOR +FD: com/mojang/blaze3d/systems/RenderSystem/apiDescription com/mojang/blaze3d/systems/RenderSystem/apiDescription +FD: com/mojang/blaze3d/systems/RenderSystem/gameThread com/mojang/blaze3d/systems/RenderSystem/gameThread +FD: com/mojang/blaze3d/systems/RenderSystem/inverseViewRotationMatrix com/mojang/blaze3d/systems/RenderSystem/inverseViewRotationMatrix +FD: com/mojang/blaze3d/systems/RenderSystem/isInInit com/mojang/blaze3d/systems/RenderSystem/isInInit +FD: com/mojang/blaze3d/systems/RenderSystem/isReplayingQueue com/mojang/blaze3d/systems/RenderSystem/isReplayingQueue +FD: com/mojang/blaze3d/systems/RenderSystem/lastDrawTime com/mojang/blaze3d/systems/RenderSystem/lastDrawTime +FD: com/mojang/blaze3d/systems/RenderSystem/modelViewMatrix com/mojang/blaze3d/systems/RenderSystem/modelViewMatrix +FD: com/mojang/blaze3d/systems/RenderSystem/modelViewStack com/mojang/blaze3d/systems/RenderSystem/modelViewStack +FD: com/mojang/blaze3d/systems/RenderSystem/pollEventsWaitStart com/mojang/blaze3d/systems/RenderSystem/pollEventsWaitStart +FD: com/mojang/blaze3d/systems/RenderSystem/pollingEvents com/mojang/blaze3d/systems/RenderSystem/pollingEvents +FD: com/mojang/blaze3d/systems/RenderSystem/projectionMatrix com/mojang/blaze3d/systems/RenderSystem/projectionMatrix +FD: com/mojang/blaze3d/systems/RenderSystem/recordingQueue com/mojang/blaze3d/systems/RenderSystem/recordingQueue +FD: com/mojang/blaze3d/systems/RenderSystem/renderThread com/mojang/blaze3d/systems/RenderSystem/renderThread +FD: com/mojang/blaze3d/systems/RenderSystem/savedProjectionMatrix com/mojang/blaze3d/systems/RenderSystem/savedProjectionMatrix +FD: com/mojang/blaze3d/systems/RenderSystem/savedVertexSorting com/mojang/blaze3d/systems/RenderSystem/savedVertexSorting +FD: com/mojang/blaze3d/systems/RenderSystem/shader com/mojang/blaze3d/systems/RenderSystem/shader +FD: com/mojang/blaze3d/systems/RenderSystem/shaderColor com/mojang/blaze3d/systems/RenderSystem/shaderColor +FD: com/mojang/blaze3d/systems/RenderSystem/shaderFogColor com/mojang/blaze3d/systems/RenderSystem/shaderFogColor +FD: com/mojang/blaze3d/systems/RenderSystem/shaderFogEnd com/mojang/blaze3d/systems/RenderSystem/shaderFogEnd +FD: com/mojang/blaze3d/systems/RenderSystem/shaderFogShape com/mojang/blaze3d/systems/RenderSystem/shaderFogShape +FD: com/mojang/blaze3d/systems/RenderSystem/shaderFogStart com/mojang/blaze3d/systems/RenderSystem/shaderFogStart +FD: com/mojang/blaze3d/systems/RenderSystem/shaderGameTime com/mojang/blaze3d/systems/RenderSystem/shaderGameTime +FD: com/mojang/blaze3d/systems/RenderSystem/shaderGlintAlpha com/mojang/blaze3d/systems/RenderSystem/shaderGlintAlpha +FD: com/mojang/blaze3d/systems/RenderSystem/shaderLightDirections com/mojang/blaze3d/systems/RenderSystem/shaderLightDirections +FD: com/mojang/blaze3d/systems/RenderSystem/shaderLineWidth com/mojang/blaze3d/systems/RenderSystem/shaderLineWidth +FD: com/mojang/blaze3d/systems/RenderSystem/shaderTextures com/mojang/blaze3d/systems/RenderSystem/shaderTextures +FD: com/mojang/blaze3d/systems/RenderSystem/sharedSequential com/mojang/blaze3d/systems/RenderSystem/sharedSequential +FD: com/mojang/blaze3d/systems/RenderSystem/sharedSequentialLines com/mojang/blaze3d/systems/RenderSystem/sharedSequentialLines +FD: com/mojang/blaze3d/systems/RenderSystem/sharedSequentialQuad com/mojang/blaze3d/systems/RenderSystem/sharedSequentialQuad +FD: com/mojang/blaze3d/systems/RenderSystem/textureMatrix com/mojang/blaze3d/systems/RenderSystem/textureMatrix +FD: com/mojang/blaze3d/systems/RenderSystem/vertexSorting com/mojang/blaze3d/systems/RenderSystem/vertexSorting +FD: com/mojang/blaze3d/systems/RenderSystem$1/f_157463_ com/mojang/blaze3d/systems/RenderSystem$1/$SwitchMap$com$mojang$blaze3d$vertex$VertexFormat$IndexType +FD: com/mojang/blaze3d/systems/RenderSystem$1/f_221943_ com/mojang/blaze3d/systems/RenderSystem$1/$SwitchMap$com$mojang$blaze3d$vertex$VertexFormat$Mode +FD: com/mojang/blaze3d/systems/RenderSystem$AutoStorageIndexBuffer/f_157465_ com/mojang/blaze3d/systems/RenderSystem$AutoStorageIndexBuffer/vertexStride +FD: com/mojang/blaze3d/systems/RenderSystem$AutoStorageIndexBuffer/f_157466_ com/mojang/blaze3d/systems/RenderSystem$AutoStorageIndexBuffer/indexStride +FD: com/mojang/blaze3d/systems/RenderSystem$AutoStorageIndexBuffer/f_157467_ com/mojang/blaze3d/systems/RenderSystem$AutoStorageIndexBuffer/generator +FD: com/mojang/blaze3d/systems/RenderSystem$AutoStorageIndexBuffer/f_157468_ com/mojang/blaze3d/systems/RenderSystem$AutoStorageIndexBuffer/name +FD: com/mojang/blaze3d/systems/RenderSystem$AutoStorageIndexBuffer/f_157469_ com/mojang/blaze3d/systems/RenderSystem$AutoStorageIndexBuffer/type +FD: com/mojang/blaze3d/systems/RenderSystem$AutoStorageIndexBuffer/f_157470_ com/mojang/blaze3d/systems/RenderSystem$AutoStorageIndexBuffer/indexCount +FD: com/mojang/blaze3d/systems/TimerQuery/f_231138_ com/mojang/blaze3d/systems/TimerQuery/nextQueryName +FD: com/mojang/blaze3d/systems/TimerQuery$FrameProfile/f_231143_ com/mojang/blaze3d/systems/TimerQuery$FrameProfile/NO_RESULT +FD: com/mojang/blaze3d/systems/TimerQuery$FrameProfile/f_231144_ com/mojang/blaze3d/systems/TimerQuery$FrameProfile/CANCELLED_RESULT +FD: com/mojang/blaze3d/systems/TimerQuery$FrameProfile/f_231145_ com/mojang/blaze3d/systems/TimerQuery$FrameProfile/queryName +FD: com/mojang/blaze3d/systems/TimerQuery$FrameProfile/f_231146_ com/mojang/blaze3d/systems/TimerQuery$FrameProfile/result +FD: com/mojang/blaze3d/systems/TimerQuery$TimerQueryLazyLoader/f_231152_ com/mojang/blaze3d/systems/TimerQuery$TimerQueryLazyLoader/INSTANCE +FD: com/mojang/blaze3d/vertex/BufferBuilder/f_166762_ com/mojang/blaze3d/vertex/BufferBuilder/indexOnly +FD: com/mojang/blaze3d/vertex/BufferBuilder/f_166763_ com/mojang/blaze3d/vertex/BufferBuilder/GROWTH_SIZE +FD: com/mojang/blaze3d/vertex/BufferBuilder/f_166766_ com/mojang/blaze3d/vertex/BufferBuilder/sortingPoints +FD: com/mojang/blaze3d/vertex/BufferBuilder/f_231156_ com/mojang/blaze3d/vertex/BufferBuilder/renderedBufferCount +FD: com/mojang/blaze3d/vertex/BufferBuilder/f_231157_ com/mojang/blaze3d/vertex/BufferBuilder/renderedBufferPointer +FD: com/mojang/blaze3d/vertex/BufferBuilder/f_276463_ com/mojang/blaze3d/vertex/BufferBuilder/sorting +FD: com/mojang/blaze3d/vertex/BufferBuilder/f_85647_ com/mojang/blaze3d/vertex/BufferBuilder/LOGGER +FD: com/mojang/blaze3d/vertex/BufferBuilder/f_85648_ com/mojang/blaze3d/vertex/BufferBuilder/buffer +FD: com/mojang/blaze3d/vertex/BufferBuilder/f_85652_ com/mojang/blaze3d/vertex/BufferBuilder/nextElementByte +FD: com/mojang/blaze3d/vertex/BufferBuilder/f_85654_ com/mojang/blaze3d/vertex/BufferBuilder/vertices +FD: com/mojang/blaze3d/vertex/BufferBuilder/f_85655_ com/mojang/blaze3d/vertex/BufferBuilder/currentElement +FD: com/mojang/blaze3d/vertex/BufferBuilder/f_85656_ com/mojang/blaze3d/vertex/BufferBuilder/elementIndex +FD: com/mojang/blaze3d/vertex/BufferBuilder/f_85657_ com/mojang/blaze3d/vertex/BufferBuilder/mode +FD: com/mojang/blaze3d/vertex/BufferBuilder/f_85658_ com/mojang/blaze3d/vertex/BufferBuilder/format +FD: com/mojang/blaze3d/vertex/BufferBuilder/f_85659_ com/mojang/blaze3d/vertex/BufferBuilder/fastFormat +FD: com/mojang/blaze3d/vertex/BufferBuilder/f_85660_ com/mojang/blaze3d/vertex/BufferBuilder/fullFormat +FD: com/mojang/blaze3d/vertex/BufferBuilder/f_85661_ com/mojang/blaze3d/vertex/BufferBuilder/building +FD: com/mojang/blaze3d/vertex/BufferBuilder$1/f_166795_ com/mojang/blaze3d/vertex/BufferBuilder$1/$SwitchMap$com$mojang$blaze3d$vertex$VertexFormat$IndexType +FD: com/mojang/blaze3d/vertex/BufferBuilder$DrawState/f_166797_ com/mojang/blaze3d/vertex/BufferBuilder$DrawState/indexCount +FD: com/mojang/blaze3d/vertex/BufferBuilder$DrawState/f_166798_ com/mojang/blaze3d/vertex/BufferBuilder$DrawState/indexType +FD: com/mojang/blaze3d/vertex/BufferBuilder$DrawState/f_166799_ com/mojang/blaze3d/vertex/BufferBuilder$DrawState/indexOnly +FD: com/mojang/blaze3d/vertex/BufferBuilder$DrawState/f_166800_ com/mojang/blaze3d/vertex/BufferBuilder$DrawState/sequentialIndex +FD: com/mojang/blaze3d/vertex/BufferBuilder$DrawState/f_85733_ com/mojang/blaze3d/vertex/BufferBuilder$DrawState/format +FD: com/mojang/blaze3d/vertex/BufferBuilder$DrawState/f_85734_ com/mojang/blaze3d/vertex/BufferBuilder$DrawState/vertexCount +FD: com/mojang/blaze3d/vertex/BufferBuilder$DrawState/f_85735_ com/mojang/blaze3d/vertex/BufferBuilder$DrawState/mode +FD: com/mojang/blaze3d/vertex/BufferBuilder$RenderedBuffer/f_231188_ com/mojang/blaze3d/vertex/BufferBuilder$RenderedBuffer/this$0 +FD: com/mojang/blaze3d/vertex/BufferBuilder$RenderedBuffer/f_231189_ com/mojang/blaze3d/vertex/BufferBuilder$RenderedBuffer/pointer +FD: com/mojang/blaze3d/vertex/BufferBuilder$RenderedBuffer/f_231190_ com/mojang/blaze3d/vertex/BufferBuilder$RenderedBuffer/drawState +FD: com/mojang/blaze3d/vertex/BufferBuilder$RenderedBuffer/f_231191_ com/mojang/blaze3d/vertex/BufferBuilder$RenderedBuffer/released +FD: com/mojang/blaze3d/vertex/BufferBuilder$SortState/f_166817_ com/mojang/blaze3d/vertex/BufferBuilder$SortState/mode +FD: com/mojang/blaze3d/vertex/BufferBuilder$SortState/f_166818_ com/mojang/blaze3d/vertex/BufferBuilder$SortState/vertices +FD: com/mojang/blaze3d/vertex/BufferBuilder$SortState/f_166819_ com/mojang/blaze3d/vertex/BufferBuilder$SortState/sortingPoints +FD: com/mojang/blaze3d/vertex/BufferBuilder$SortState/f_276566_ com/mojang/blaze3d/vertex/BufferBuilder$SortState/sorting +FD: com/mojang/blaze3d/vertex/BufferUploader/f_231201_ com/mojang/blaze3d/vertex/BufferUploader/lastImmediateBuffer +FD: com/mojang/blaze3d/vertex/DefaultVertexFormat/f_166849_ com/mojang/blaze3d/vertex/DefaultVertexFormat/ELEMENT_UV +FD: com/mojang/blaze3d/vertex/DefaultVertexFormat/f_166850_ com/mojang/blaze3d/vertex/DefaultVertexFormat/BLIT_SCREEN +FD: com/mojang/blaze3d/vertex/DefaultVertexFormat/f_166851_ com/mojang/blaze3d/vertex/DefaultVertexFormat/POSITION_COLOR_NORMAL +FD: com/mojang/blaze3d/vertex/DefaultVertexFormat/f_85804_ com/mojang/blaze3d/vertex/DefaultVertexFormat/ELEMENT_POSITION +FD: com/mojang/blaze3d/vertex/DefaultVertexFormat/f_85805_ com/mojang/blaze3d/vertex/DefaultVertexFormat/ELEMENT_COLOR +FD: com/mojang/blaze3d/vertex/DefaultVertexFormat/f_85806_ com/mojang/blaze3d/vertex/DefaultVertexFormat/ELEMENT_UV0 +FD: com/mojang/blaze3d/vertex/DefaultVertexFormat/f_85807_ com/mojang/blaze3d/vertex/DefaultVertexFormat/ELEMENT_UV1 +FD: com/mojang/blaze3d/vertex/DefaultVertexFormat/f_85808_ com/mojang/blaze3d/vertex/DefaultVertexFormat/ELEMENT_UV2 +FD: com/mojang/blaze3d/vertex/DefaultVertexFormat/f_85809_ com/mojang/blaze3d/vertex/DefaultVertexFormat/ELEMENT_NORMAL +FD: com/mojang/blaze3d/vertex/DefaultVertexFormat/f_85810_ com/mojang/blaze3d/vertex/DefaultVertexFormat/ELEMENT_PADDING +FD: com/mojang/blaze3d/vertex/DefaultVertexFormat/f_85811_ com/mojang/blaze3d/vertex/DefaultVertexFormat/BLOCK +FD: com/mojang/blaze3d/vertex/DefaultVertexFormat/f_85812_ com/mojang/blaze3d/vertex/DefaultVertexFormat/NEW_ENTITY +FD: com/mojang/blaze3d/vertex/DefaultVertexFormat/f_85813_ com/mojang/blaze3d/vertex/DefaultVertexFormat/PARTICLE +FD: com/mojang/blaze3d/vertex/DefaultVertexFormat/f_85814_ com/mojang/blaze3d/vertex/DefaultVertexFormat/POSITION +FD: com/mojang/blaze3d/vertex/DefaultVertexFormat/f_85815_ com/mojang/blaze3d/vertex/DefaultVertexFormat/POSITION_COLOR +FD: com/mojang/blaze3d/vertex/DefaultVertexFormat/f_85816_ com/mojang/blaze3d/vertex/DefaultVertexFormat/POSITION_COLOR_LIGHTMAP +FD: com/mojang/blaze3d/vertex/DefaultVertexFormat/f_85817_ com/mojang/blaze3d/vertex/DefaultVertexFormat/POSITION_TEX +FD: com/mojang/blaze3d/vertex/DefaultVertexFormat/f_85818_ com/mojang/blaze3d/vertex/DefaultVertexFormat/POSITION_COLOR_TEX +FD: com/mojang/blaze3d/vertex/DefaultVertexFormat/f_85819_ com/mojang/blaze3d/vertex/DefaultVertexFormat/POSITION_TEX_COLOR +FD: com/mojang/blaze3d/vertex/DefaultVertexFormat/f_85820_ com/mojang/blaze3d/vertex/DefaultVertexFormat/POSITION_COLOR_TEX_LIGHTMAP +FD: com/mojang/blaze3d/vertex/DefaultVertexFormat/f_85821_ com/mojang/blaze3d/vertex/DefaultVertexFormat/POSITION_TEX_LIGHTMAP_COLOR +FD: com/mojang/blaze3d/vertex/DefaultVertexFormat/f_85822_ com/mojang/blaze3d/vertex/DefaultVertexFormat/POSITION_TEX_COLOR_NORMAL +FD: com/mojang/blaze3d/vertex/DefaultedVertexConsumer/f_85824_ com/mojang/blaze3d/vertex/DefaultedVertexConsumer/defaultColorSet +FD: com/mojang/blaze3d/vertex/DefaultedVertexConsumer/f_85825_ com/mojang/blaze3d/vertex/DefaultedVertexConsumer/defaultR +FD: com/mojang/blaze3d/vertex/DefaultedVertexConsumer/f_85826_ com/mojang/blaze3d/vertex/DefaultedVertexConsumer/defaultG +FD: com/mojang/blaze3d/vertex/DefaultedVertexConsumer/f_85827_ com/mojang/blaze3d/vertex/DefaultedVertexConsumer/defaultB +FD: com/mojang/blaze3d/vertex/DefaultedVertexConsumer/f_85828_ com/mojang/blaze3d/vertex/DefaultedVertexConsumer/defaultA +FD: com/mojang/blaze3d/vertex/PoseStack/f_85834_ com/mojang/blaze3d/vertex/PoseStack/poseStack +FD: com/mojang/blaze3d/vertex/PoseStack$Pose/f_85852_ com/mojang/blaze3d/vertex/PoseStack$Pose/pose +FD: com/mojang/blaze3d/vertex/PoseStack$Pose/f_85853_ com/mojang/blaze3d/vertex/PoseStack$Pose/normal +FD: com/mojang/blaze3d/vertex/SheetedDecalTextureGenerator/f_256811_ com/mojang/blaze3d/vertex/SheetedDecalTextureGenerator/textureScale +FD: com/mojang/blaze3d/vertex/SheetedDecalTextureGenerator/f_85867_ com/mojang/blaze3d/vertex/SheetedDecalTextureGenerator/delegate +FD: com/mojang/blaze3d/vertex/SheetedDecalTextureGenerator/f_85868_ com/mojang/blaze3d/vertex/SheetedDecalTextureGenerator/cameraInversePose +FD: com/mojang/blaze3d/vertex/SheetedDecalTextureGenerator/f_85869_ com/mojang/blaze3d/vertex/SheetedDecalTextureGenerator/normalInversePose +FD: com/mojang/blaze3d/vertex/SheetedDecalTextureGenerator/f_85870_ com/mojang/blaze3d/vertex/SheetedDecalTextureGenerator/x +FD: com/mojang/blaze3d/vertex/SheetedDecalTextureGenerator/f_85871_ com/mojang/blaze3d/vertex/SheetedDecalTextureGenerator/y +FD: com/mojang/blaze3d/vertex/SheetedDecalTextureGenerator/f_85872_ com/mojang/blaze3d/vertex/SheetedDecalTextureGenerator/z +FD: com/mojang/blaze3d/vertex/SheetedDecalTextureGenerator/f_85873_ com/mojang/blaze3d/vertex/SheetedDecalTextureGenerator/overlayU +FD: com/mojang/blaze3d/vertex/SheetedDecalTextureGenerator/f_85874_ com/mojang/blaze3d/vertex/SheetedDecalTextureGenerator/overlayV +FD: com/mojang/blaze3d/vertex/SheetedDecalTextureGenerator/f_85875_ com/mojang/blaze3d/vertex/SheetedDecalTextureGenerator/lightCoords +FD: com/mojang/blaze3d/vertex/SheetedDecalTextureGenerator/f_85876_ com/mojang/blaze3d/vertex/SheetedDecalTextureGenerator/nx +FD: com/mojang/blaze3d/vertex/SheetedDecalTextureGenerator/f_85877_ com/mojang/blaze3d/vertex/SheetedDecalTextureGenerator/ny +FD: com/mojang/blaze3d/vertex/SheetedDecalTextureGenerator/f_85878_ com/mojang/blaze3d/vertex/SheetedDecalTextureGenerator/nz +FD: com/mojang/blaze3d/vertex/Tesselator/f_166857_ com/mojang/blaze3d/vertex/Tesselator/MAX_MEMORY_USE +FD: com/mojang/blaze3d/vertex/Tesselator/f_166858_ com/mojang/blaze3d/vertex/Tesselator/MAX_FLOATS +FD: com/mojang/blaze3d/vertex/Tesselator/f_85907_ com/mojang/blaze3d/vertex/Tesselator/builder +FD: com/mojang/blaze3d/vertex/Tesselator/f_85908_ com/mojang/blaze3d/vertex/Tesselator/INSTANCE +FD: com/mojang/blaze3d/vertex/VertexBuffer/f_166860_ com/mojang/blaze3d/vertex/VertexBuffer/indexBufferId +FD: com/mojang/blaze3d/vertex/VertexBuffer/f_166861_ com/mojang/blaze3d/vertex/VertexBuffer/indexType +FD: com/mojang/blaze3d/vertex/VertexBuffer/f_166862_ com/mojang/blaze3d/vertex/VertexBuffer/arrayObjectId +FD: com/mojang/blaze3d/vertex/VertexBuffer/f_166863_ com/mojang/blaze3d/vertex/VertexBuffer/indexCount +FD: com/mojang/blaze3d/vertex/VertexBuffer/f_166864_ com/mojang/blaze3d/vertex/VertexBuffer/mode +FD: com/mojang/blaze3d/vertex/VertexBuffer/f_166865_ com/mojang/blaze3d/vertex/VertexBuffer/sequentialIndices +FD: com/mojang/blaze3d/vertex/VertexBuffer/f_231217_ com/mojang/blaze3d/vertex/VertexBuffer/vertexBufferId +FD: com/mojang/blaze3d/vertex/VertexBuffer/f_285574_ com/mojang/blaze3d/vertex/VertexBuffer/usage +FD: com/mojang/blaze3d/vertex/VertexBuffer/f_85917_ com/mojang/blaze3d/vertex/VertexBuffer/format +FD: com/mojang/blaze3d/vertex/VertexBuffer$Usage/$VALUES com/mojang/blaze3d/vertex/VertexBuffer$Usage/$VALUES +FD: com/mojang/blaze3d/vertex/VertexBuffer$Usage/DYNAMIC com/mojang/blaze3d/vertex/VertexBuffer$Usage/DYNAMIC +FD: com/mojang/blaze3d/vertex/VertexBuffer$Usage/STATIC com/mojang/blaze3d/vertex/VertexBuffer$Usage/STATIC +FD: com/mojang/blaze3d/vertex/VertexBuffer$Usage/f_285654_ com/mojang/blaze3d/vertex/VertexBuffer$Usage/id +FD: com/mojang/blaze3d/vertex/VertexFormat/f_166905_ com/mojang/blaze3d/vertex/VertexFormat/elementMapping +FD: com/mojang/blaze3d/vertex/VertexFormat/f_231232_ com/mojang/blaze3d/vertex/VertexFormat/immediateDrawVertexBuffer +FD: com/mojang/blaze3d/vertex/VertexFormat/f_86012_ com/mojang/blaze3d/vertex/VertexFormat/elements +FD: com/mojang/blaze3d/vertex/VertexFormat/f_86013_ com/mojang/blaze3d/vertex/VertexFormat/offsets +FD: com/mojang/blaze3d/vertex/VertexFormat/f_86014_ com/mojang/blaze3d/vertex/VertexFormat/vertexSize +FD: com/mojang/blaze3d/vertex/VertexFormat$1/f_166918_ com/mojang/blaze3d/vertex/VertexFormat$1/$SwitchMap$com$mojang$blaze3d$vertex$VertexFormat$Mode +FD: com/mojang/blaze3d/vertex/VertexFormat$IndexType/$VALUES com/mojang/blaze3d/vertex/VertexFormat$IndexType/$VALUES +FD: com/mojang/blaze3d/vertex/VertexFormat$IndexType/INT com/mojang/blaze3d/vertex/VertexFormat$IndexType/INT +FD: com/mojang/blaze3d/vertex/VertexFormat$IndexType/SHORT com/mojang/blaze3d/vertex/VertexFormat$IndexType/SHORT +FD: com/mojang/blaze3d/vertex/VertexFormat$IndexType/f_166923_ com/mojang/blaze3d/vertex/VertexFormat$IndexType/asGLType +FD: com/mojang/blaze3d/vertex/VertexFormat$IndexType/f_166924_ com/mojang/blaze3d/vertex/VertexFormat$IndexType/bytes +FD: com/mojang/blaze3d/vertex/VertexFormat$Mode/$VALUES com/mojang/blaze3d/vertex/VertexFormat$Mode/$VALUES +FD: com/mojang/blaze3d/vertex/VertexFormat$Mode/DEBUG_LINES com/mojang/blaze3d/vertex/VertexFormat$Mode/DEBUG_LINES +FD: com/mojang/blaze3d/vertex/VertexFormat$Mode/DEBUG_LINE_STRIP com/mojang/blaze3d/vertex/VertexFormat$Mode/DEBUG_LINE_STRIP +FD: com/mojang/blaze3d/vertex/VertexFormat$Mode/LINES com/mojang/blaze3d/vertex/VertexFormat$Mode/LINES +FD: com/mojang/blaze3d/vertex/VertexFormat$Mode/LINE_STRIP com/mojang/blaze3d/vertex/VertexFormat$Mode/LINE_STRIP +FD: com/mojang/blaze3d/vertex/VertexFormat$Mode/QUADS com/mojang/blaze3d/vertex/VertexFormat$Mode/QUADS +FD: com/mojang/blaze3d/vertex/VertexFormat$Mode/TRIANGLES com/mojang/blaze3d/vertex/VertexFormat$Mode/TRIANGLES +FD: com/mojang/blaze3d/vertex/VertexFormat$Mode/TRIANGLE_FAN com/mojang/blaze3d/vertex/VertexFormat$Mode/TRIANGLE_FAN +FD: com/mojang/blaze3d/vertex/VertexFormat$Mode/TRIANGLE_STRIP com/mojang/blaze3d/vertex/VertexFormat$Mode/TRIANGLE_STRIP +FD: com/mojang/blaze3d/vertex/VertexFormat$Mode/f_166946_ com/mojang/blaze3d/vertex/VertexFormat$Mode/asGLMode +FD: com/mojang/blaze3d/vertex/VertexFormat$Mode/f_166947_ com/mojang/blaze3d/vertex/VertexFormat$Mode/primitiveLength +FD: com/mojang/blaze3d/vertex/VertexFormat$Mode/f_166948_ com/mojang/blaze3d/vertex/VertexFormat$Mode/primitiveStride +FD: com/mojang/blaze3d/vertex/VertexFormat$Mode/f_231234_ com/mojang/blaze3d/vertex/VertexFormat$Mode/connectedPrimitives +FD: com/mojang/blaze3d/vertex/VertexFormatElement/f_86030_ com/mojang/blaze3d/vertex/VertexFormatElement/type +FD: com/mojang/blaze3d/vertex/VertexFormatElement/f_86031_ com/mojang/blaze3d/vertex/VertexFormatElement/usage +FD: com/mojang/blaze3d/vertex/VertexFormatElement/f_86032_ com/mojang/blaze3d/vertex/VertexFormatElement/index +FD: com/mojang/blaze3d/vertex/VertexFormatElement/f_86033_ com/mojang/blaze3d/vertex/VertexFormatElement/count +FD: com/mojang/blaze3d/vertex/VertexFormatElement/f_86034_ com/mojang/blaze3d/vertex/VertexFormatElement/byteSize +FD: com/mojang/blaze3d/vertex/VertexFormatElement$Type/$VALUES com/mojang/blaze3d/vertex/VertexFormatElement$Type/$VALUES +FD: com/mojang/blaze3d/vertex/VertexFormatElement$Type/BYTE com/mojang/blaze3d/vertex/VertexFormatElement$Type/BYTE +FD: com/mojang/blaze3d/vertex/VertexFormatElement$Type/FLOAT com/mojang/blaze3d/vertex/VertexFormatElement$Type/FLOAT +FD: com/mojang/blaze3d/vertex/VertexFormatElement$Type/INT com/mojang/blaze3d/vertex/VertexFormatElement$Type/INT +FD: com/mojang/blaze3d/vertex/VertexFormatElement$Type/SHORT com/mojang/blaze3d/vertex/VertexFormatElement$Type/SHORT +FD: com/mojang/blaze3d/vertex/VertexFormatElement$Type/UBYTE com/mojang/blaze3d/vertex/VertexFormatElement$Type/UBYTE +FD: com/mojang/blaze3d/vertex/VertexFormatElement$Type/UINT com/mojang/blaze3d/vertex/VertexFormatElement$Type/UINT +FD: com/mojang/blaze3d/vertex/VertexFormatElement$Type/USHORT com/mojang/blaze3d/vertex/VertexFormatElement$Type/USHORT +FD: com/mojang/blaze3d/vertex/VertexFormatElement$Type/f_86063_ com/mojang/blaze3d/vertex/VertexFormatElement$Type/size +FD: com/mojang/blaze3d/vertex/VertexFormatElement$Type/f_86064_ com/mojang/blaze3d/vertex/VertexFormatElement$Type/name +FD: com/mojang/blaze3d/vertex/VertexFormatElement$Type/f_86065_ com/mojang/blaze3d/vertex/VertexFormatElement$Type/glType +FD: com/mojang/blaze3d/vertex/VertexFormatElement$Usage/$VALUES com/mojang/blaze3d/vertex/VertexFormatElement$Usage/$VALUES +FD: com/mojang/blaze3d/vertex/VertexFormatElement$Usage/COLOR com/mojang/blaze3d/vertex/VertexFormatElement$Usage/COLOR +FD: com/mojang/blaze3d/vertex/VertexFormatElement$Usage/GENERIC com/mojang/blaze3d/vertex/VertexFormatElement$Usage/GENERIC +FD: com/mojang/blaze3d/vertex/VertexFormatElement$Usage/NORMAL com/mojang/blaze3d/vertex/VertexFormatElement$Usage/NORMAL +FD: com/mojang/blaze3d/vertex/VertexFormatElement$Usage/PADDING com/mojang/blaze3d/vertex/VertexFormatElement$Usage/PADDING +FD: com/mojang/blaze3d/vertex/VertexFormatElement$Usage/POSITION com/mojang/blaze3d/vertex/VertexFormatElement$Usage/POSITION +FD: com/mojang/blaze3d/vertex/VertexFormatElement$Usage/UV com/mojang/blaze3d/vertex/VertexFormatElement$Usage/UV +FD: com/mojang/blaze3d/vertex/VertexFormatElement$Usage/f_86086_ com/mojang/blaze3d/vertex/VertexFormatElement$Usage/name +FD: com/mojang/blaze3d/vertex/VertexFormatElement$Usage/f_86087_ com/mojang/blaze3d/vertex/VertexFormatElement$Usage/setupState +FD: com/mojang/blaze3d/vertex/VertexFormatElement$Usage/f_86088_ com/mojang/blaze3d/vertex/VertexFormatElement$Usage/clearState +FD: com/mojang/blaze3d/vertex/VertexMultiConsumer$Double/f_86171_ com/mojang/blaze3d/vertex/VertexMultiConsumer$Double/first +FD: com/mojang/blaze3d/vertex/VertexMultiConsumer$Double/f_86172_ com/mojang/blaze3d/vertex/VertexMultiConsumer$Double/second +FD: com/mojang/blaze3d/vertex/VertexMultiConsumer$Multiple/f_167071_ com/mojang/blaze3d/vertex/VertexMultiConsumer$Multiple/delegates +FD: com/mojang/blaze3d/vertex/VertexSorting/f_276450_ com/mojang/blaze3d/vertex/VertexSorting/DISTANCE_TO_ORIGIN +FD: com/mojang/blaze3d/vertex/VertexSorting/f_276633_ com/mojang/blaze3d/vertex/VertexSorting/ORTHOGRAPHIC_Z +FD: com/mojang/math/Axis/f_252392_ com/mojang/math/Axis/YN +FD: com/mojang/math/Axis/f_252393_ com/mojang/math/Axis/ZN +FD: com/mojang/math/Axis/f_252403_ com/mojang/math/Axis/ZP +FD: com/mojang/math/Axis/f_252436_ com/mojang/math/Axis/YP +FD: com/mojang/math/Axis/f_252495_ com/mojang/math/Axis/XN +FD: com/mojang/math/Axis/f_252529_ com/mojang/math/Axis/XP +FD: com/mojang/math/Constants/f_142767_ com/mojang/math/Constants/PI +FD: com/mojang/math/Constants/f_142768_ com/mojang/math/Constants/RAD_TO_DEG +FD: com/mojang/math/Constants/f_142769_ com/mojang/math/Constants/DEG_TO_RAD +FD: com/mojang/math/Constants/f_142770_ com/mojang/math/Constants/EPSILON +FD: com/mojang/math/Divisor/f_252404_ com/mojang/math/Divisor/returnedParts +FD: com/mojang/math/Divisor/f_252437_ com/mojang/math/Divisor/remainder +FD: com/mojang/math/Divisor/f_252455_ com/mojang/math/Divisor/mod +FD: com/mojang/math/Divisor/f_252516_ com/mojang/math/Divisor/denominator +FD: com/mojang/math/Divisor/f_252539_ com/mojang/math/Divisor/quotient +FD: com/mojang/math/GivensParameters/f_276137_ com/mojang/math/GivensParameters/cosHalf +FD: com/mojang/math/GivensParameters/f_276143_ com/mojang/math/GivensParameters/sinHalf +FD: com/mojang/math/MatrixUtil/f_252537_ com/mojang/math/MatrixUtil/G +FD: com/mojang/math/MatrixUtil/f_276163_ com/mojang/math/MatrixUtil/PI_4 +FD: com/mojang/math/OctahedralGroup/$VALUES com/mojang/math/OctahedralGroup/$VALUES +FD: com/mojang/math/OctahedralGroup/IDENTITY com/mojang/math/OctahedralGroup/IDENTITY +FD: com/mojang/math/OctahedralGroup/INVERSION com/mojang/math/OctahedralGroup/INVERSION +FD: com/mojang/math/OctahedralGroup/INVERT_X com/mojang/math/OctahedralGroup/INVERT_X +FD: com/mojang/math/OctahedralGroup/INVERT_Y com/mojang/math/OctahedralGroup/INVERT_Y +FD: com/mojang/math/OctahedralGroup/INVERT_Z com/mojang/math/OctahedralGroup/INVERT_Z +FD: com/mojang/math/OctahedralGroup/ROT_120_NNN com/mojang/math/OctahedralGroup/ROT_120_NNN +FD: com/mojang/math/OctahedralGroup/ROT_120_NNP com/mojang/math/OctahedralGroup/ROT_120_NNP +FD: com/mojang/math/OctahedralGroup/ROT_120_NPN com/mojang/math/OctahedralGroup/ROT_120_NPN +FD: com/mojang/math/OctahedralGroup/ROT_120_NPP com/mojang/math/OctahedralGroup/ROT_120_NPP +FD: com/mojang/math/OctahedralGroup/ROT_120_PNN com/mojang/math/OctahedralGroup/ROT_120_PNN +FD: com/mojang/math/OctahedralGroup/ROT_120_PNP com/mojang/math/OctahedralGroup/ROT_120_PNP +FD: com/mojang/math/OctahedralGroup/ROT_120_PPN com/mojang/math/OctahedralGroup/ROT_120_PPN +FD: com/mojang/math/OctahedralGroup/ROT_120_PPP com/mojang/math/OctahedralGroup/ROT_120_PPP +FD: com/mojang/math/OctahedralGroup/ROT_180_EDGE_XY_NEG com/mojang/math/OctahedralGroup/ROT_180_EDGE_XY_NEG +FD: com/mojang/math/OctahedralGroup/ROT_180_EDGE_XY_POS com/mojang/math/OctahedralGroup/ROT_180_EDGE_XY_POS +FD: com/mojang/math/OctahedralGroup/ROT_180_EDGE_XZ_NEG com/mojang/math/OctahedralGroup/ROT_180_EDGE_XZ_NEG +FD: com/mojang/math/OctahedralGroup/ROT_180_EDGE_XZ_POS com/mojang/math/OctahedralGroup/ROT_180_EDGE_XZ_POS +FD: com/mojang/math/OctahedralGroup/ROT_180_EDGE_YZ_NEG com/mojang/math/OctahedralGroup/ROT_180_EDGE_YZ_NEG +FD: com/mojang/math/OctahedralGroup/ROT_180_EDGE_YZ_POS com/mojang/math/OctahedralGroup/ROT_180_EDGE_YZ_POS +FD: com/mojang/math/OctahedralGroup/ROT_180_FACE_XY com/mojang/math/OctahedralGroup/ROT_180_FACE_XY +FD: com/mojang/math/OctahedralGroup/ROT_180_FACE_XZ com/mojang/math/OctahedralGroup/ROT_180_FACE_XZ +FD: com/mojang/math/OctahedralGroup/ROT_180_FACE_YZ com/mojang/math/OctahedralGroup/ROT_180_FACE_YZ +FD: com/mojang/math/OctahedralGroup/ROT_60_REF_NNN com/mojang/math/OctahedralGroup/ROT_60_REF_NNN +FD: com/mojang/math/OctahedralGroup/ROT_60_REF_NNP com/mojang/math/OctahedralGroup/ROT_60_REF_NNP +FD: com/mojang/math/OctahedralGroup/ROT_60_REF_NPN com/mojang/math/OctahedralGroup/ROT_60_REF_NPN +FD: com/mojang/math/OctahedralGroup/ROT_60_REF_NPP com/mojang/math/OctahedralGroup/ROT_60_REF_NPP +FD: com/mojang/math/OctahedralGroup/ROT_60_REF_PNN com/mojang/math/OctahedralGroup/ROT_60_REF_PNN +FD: com/mojang/math/OctahedralGroup/ROT_60_REF_PNP com/mojang/math/OctahedralGroup/ROT_60_REF_PNP +FD: com/mojang/math/OctahedralGroup/ROT_60_REF_PPN com/mojang/math/OctahedralGroup/ROT_60_REF_PPN +FD: com/mojang/math/OctahedralGroup/ROT_60_REF_PPP com/mojang/math/OctahedralGroup/ROT_60_REF_PPP +FD: com/mojang/math/OctahedralGroup/ROT_90_REF_X_NEG com/mojang/math/OctahedralGroup/ROT_90_REF_X_NEG +FD: com/mojang/math/OctahedralGroup/ROT_90_REF_X_POS com/mojang/math/OctahedralGroup/ROT_90_REF_X_POS +FD: com/mojang/math/OctahedralGroup/ROT_90_REF_Y_NEG com/mojang/math/OctahedralGroup/ROT_90_REF_Y_NEG +FD: com/mojang/math/OctahedralGroup/ROT_90_REF_Y_POS com/mojang/math/OctahedralGroup/ROT_90_REF_Y_POS +FD: com/mojang/math/OctahedralGroup/ROT_90_REF_Z_NEG com/mojang/math/OctahedralGroup/ROT_90_REF_Z_NEG +FD: com/mojang/math/OctahedralGroup/ROT_90_REF_Z_POS com/mojang/math/OctahedralGroup/ROT_90_REF_Z_POS +FD: com/mojang/math/OctahedralGroup/ROT_90_X_NEG com/mojang/math/OctahedralGroup/ROT_90_X_NEG +FD: com/mojang/math/OctahedralGroup/ROT_90_X_POS com/mojang/math/OctahedralGroup/ROT_90_X_POS +FD: com/mojang/math/OctahedralGroup/ROT_90_Y_NEG com/mojang/math/OctahedralGroup/ROT_90_Y_NEG +FD: com/mojang/math/OctahedralGroup/ROT_90_Y_POS com/mojang/math/OctahedralGroup/ROT_90_Y_POS +FD: com/mojang/math/OctahedralGroup/ROT_90_Z_NEG com/mojang/math/OctahedralGroup/ROT_90_Z_NEG +FD: com/mojang/math/OctahedralGroup/ROT_90_Z_POS com/mojang/math/OctahedralGroup/ROT_90_Z_POS +FD: com/mojang/math/OctahedralGroup/SWAP_NEG_XY com/mojang/math/OctahedralGroup/SWAP_NEG_XY +FD: com/mojang/math/OctahedralGroup/SWAP_NEG_XZ com/mojang/math/OctahedralGroup/SWAP_NEG_XZ +FD: com/mojang/math/OctahedralGroup/SWAP_NEG_YZ com/mojang/math/OctahedralGroup/SWAP_NEG_YZ +FD: com/mojang/math/OctahedralGroup/SWAP_XY com/mojang/math/OctahedralGroup/SWAP_XY +FD: com/mojang/math/OctahedralGroup/SWAP_XZ com/mojang/math/OctahedralGroup/SWAP_XZ +FD: com/mojang/math/OctahedralGroup/SWAP_YZ com/mojang/math/OctahedralGroup/SWAP_YZ +FD: com/mojang/math/OctahedralGroup/f_56473_ com/mojang/math/OctahedralGroup/transformation +FD: com/mojang/math/OctahedralGroup/f_56474_ com/mojang/math/OctahedralGroup/name +FD: com/mojang/math/OctahedralGroup/f_56475_ com/mojang/math/OctahedralGroup/rotatedDirections +FD: com/mojang/math/OctahedralGroup/f_56476_ com/mojang/math/OctahedralGroup/invertX +FD: com/mojang/math/OctahedralGroup/f_56478_ com/mojang/math/OctahedralGroup/invertY +FD: com/mojang/math/OctahedralGroup/f_56479_ com/mojang/math/OctahedralGroup/invertZ +FD: com/mojang/math/OctahedralGroup/f_56480_ com/mojang/math/OctahedralGroup/permutation +FD: com/mojang/math/OctahedralGroup/f_56481_ com/mojang/math/OctahedralGroup/cayleyTable +FD: com/mojang/math/OctahedralGroup/f_56482_ com/mojang/math/OctahedralGroup/inverseTable +FD: com/mojang/math/OctahedralGroup$1/f_56545_ com/mojang/math/OctahedralGroup$1/$SwitchMap$net$minecraft$core$Direction$Axis +FD: com/mojang/math/SymmetricGroup3/$VALUES com/mojang/math/SymmetricGroup3/$VALUES +FD: com/mojang/math/SymmetricGroup3/P123 com/mojang/math/SymmetricGroup3/P123 +FD: com/mojang/math/SymmetricGroup3/P132 com/mojang/math/SymmetricGroup3/P132 +FD: com/mojang/math/SymmetricGroup3/P213 com/mojang/math/SymmetricGroup3/P213 +FD: com/mojang/math/SymmetricGroup3/P231 com/mojang/math/SymmetricGroup3/P231 +FD: com/mojang/math/SymmetricGroup3/P312 com/mojang/math/SymmetricGroup3/P312 +FD: com/mojang/math/SymmetricGroup3/P321 com/mojang/math/SymmetricGroup3/P321 +FD: com/mojang/math/SymmetricGroup3/f_109168_ com/mojang/math/SymmetricGroup3/permutation +FD: com/mojang/math/SymmetricGroup3/f_109169_ com/mojang/math/SymmetricGroup3/transformation +FD: com/mojang/math/SymmetricGroup3/f_109170_ com/mojang/math/SymmetricGroup3/cayleyTable +FD: com/mojang/math/SymmetricGroup3/f_175574_ com/mojang/math/SymmetricGroup3/ORDER +FD: com/mojang/math/Transformation/f_121078_ com/mojang/math/Transformation/matrix +FD: com/mojang/math/Transformation/f_121079_ com/mojang/math/Transformation/decomposed +FD: com/mojang/math/Transformation/f_121080_ com/mojang/math/Transformation/translation +FD: com/mojang/math/Transformation/f_121081_ com/mojang/math/Transformation/leftRotation +FD: com/mojang/math/Transformation/f_121082_ com/mojang/math/Transformation/scale +FD: com/mojang/math/Transformation/f_121083_ com/mojang/math/Transformation/rightRotation +FD: com/mojang/math/Transformation/f_121084_ com/mojang/math/Transformation/IDENTITY +FD: com/mojang/math/Transformation/f_268453_ com/mojang/math/Transformation/CODEC +FD: com/mojang/math/Transformation/f_268620_ com/mojang/math/Transformation/EXTENDED_CODEC +FD: com/mojang/realmsclient/KeyCombo/f_86221_ com/mojang/realmsclient/KeyCombo/chars +FD: com/mojang/realmsclient/KeyCombo/f_86222_ com/mojang/realmsclient/KeyCombo/matchIndex +FD: com/mojang/realmsclient/KeyCombo/f_86223_ com/mojang/realmsclient/KeyCombo/onCompletion +FD: com/mojang/realmsclient/RealmsMainScreen/f_167173_ com/mojang/realmsclient/RealmsMainScreen/TRIAL_TEXT +FD: com/mojang/realmsclient/RealmsMainScreen/f_167174_ com/mojang/realmsclient/RealmsMainScreen/realmsSelectionListAdded +FD: com/mojang/realmsclient/RealmsMainScreen/f_167175_ com/mojang/realmsclient/RealmsMainScreen/UNITIALIZED_WORLD_NARRATION +FD: com/mojang/realmsclient/RealmsMainScreen/f_212359_ com/mojang/realmsclient/RealmsMainScreen/lastClickTime +FD: com/mojang/realmsclient/RealmsMainScreen/f_238533_ com/mojang/realmsclient/RealmsMainScreen/serverList +FD: com/mojang/realmsclient/RealmsMainScreen/f_238705_ com/mojang/realmsclient/RealmsMainScreen/dataSubscription +FD: com/mojang/realmsclient/RealmsMainScreen/f_271231_ com/mojang/realmsclient/RealmsMainScreen/LEAVE_SERVER_TEXT +FD: com/mojang/realmsclient/RealmsMainScreen/f_271271_ com/mojang/realmsclient/RealmsMainScreen/BUTTON_BOTTOM_ROW_WIDTH +FD: com/mojang/realmsclient/RealmsMainScreen/f_271303_ com/mojang/realmsclient/RealmsMainScreen/PLAY_TEXT +FD: com/mojang/realmsclient/RealmsMainScreen/f_271314_ com/mojang/realmsclient/RealmsMainScreen/FOOTER_HEIGHT +FD: com/mojang/realmsclient/RealmsMainScreen/f_271378_ com/mojang/realmsclient/RealmsMainScreen/BUTTON_WIDTH +FD: com/mojang/realmsclient/RealmsMainScreen/f_271412_ com/mojang/realmsclient/RealmsMainScreen/BUTTON_TOP_ROW_WIDTH +FD: com/mojang/realmsclient/RealmsMainScreen/f_271441_ com/mojang/realmsclient/RealmsMainScreen/CONFIGURE_SERVER_TEXT +FD: com/mojang/realmsclient/RealmsMainScreen/f_273868_ com/mojang/realmsclient/RealmsMainScreen/INFO_ICON_LOCATION +FD: com/mojang/realmsclient/RealmsMainScreen/f_273876_ com/mojang/realmsclient/RealmsMainScreen/handledSeenNotifications +FD: com/mojang/realmsclient/RealmsMainScreen/f_273903_ com/mojang/realmsclient/RealmsMainScreen/notifications +FD: com/mojang/realmsclient/RealmsMainScreen/f_278420_ com/mojang/realmsclient/RealmsMainScreen/LOGO_WIDTH +FD: com/mojang/realmsclient/RealmsMainScreen/f_278430_ com/mojang/realmsclient/RealmsMainScreen/LOGO_TEXTURE_WIDTH +FD: com/mojang/realmsclient/RealmsMainScreen/f_278451_ com/mojang/realmsclient/RealmsMainScreen/LOGO_PADDING +FD: com/mojang/realmsclient/RealmsMainScreen/f_278457_ com/mojang/realmsclient/RealmsMainScreen/HEADER_HEIGHT +FD: com/mojang/realmsclient/RealmsMainScreen/f_278488_ com/mojang/realmsclient/RealmsMainScreen/LOGO_TEXTURE_HEIGHT +FD: com/mojang/realmsclient/RealmsMainScreen/f_278497_ com/mojang/realmsclient/RealmsMainScreen/LOGO_HEIGHT +FD: com/mojang/realmsclient/RealmsMainScreen/f_86231_ com/mojang/realmsclient/RealmsMainScreen/DARKEN_LOCATION +FD: com/mojang/realmsclient/RealmsMainScreen/f_86232_ com/mojang/realmsclient/RealmsMainScreen/CROSS_ICON_LOCATION +FD: com/mojang/realmsclient/RealmsMainScreen/f_86233_ com/mojang/realmsclient/RealmsMainScreen/TRIAL_ICON_LOCATION +FD: com/mojang/realmsclient/RealmsMainScreen/f_86237_ com/mojang/realmsclient/RealmsMainScreen/TRIAL_MESSAGE_LINES +FD: com/mojang/realmsclient/RealmsMainScreen/f_86238_ com/mojang/realmsclient/RealmsMainScreen/SERVER_UNITIALIZED_TEXT +FD: com/mojang/realmsclient/RealmsMainScreen/f_86239_ com/mojang/realmsclient/RealmsMainScreen/SUBSCRIPTION_EXPIRED_TEXT +FD: com/mojang/realmsclient/RealmsMainScreen/f_86240_ com/mojang/realmsclient/RealmsMainScreen/SUBSCRIPTION_RENEW_TEXT +FD: com/mojang/realmsclient/RealmsMainScreen/f_86241_ com/mojang/realmsclient/RealmsMainScreen/TRIAL_EXPIRED_TEXT +FD: com/mojang/realmsclient/RealmsMainScreen/f_86243_ com/mojang/realmsclient/RealmsMainScreen/SELECT_MINIGAME_PREFIX +FD: com/mojang/realmsclient/RealmsMainScreen/f_86244_ com/mojang/realmsclient/RealmsMainScreen/POPUP_TEXT +FD: com/mojang/realmsclient/RealmsMainScreen/f_86245_ com/mojang/realmsclient/RealmsMainScreen/SERVER_EXPIRED_TOOLTIP +FD: com/mojang/realmsclient/RealmsMainScreen/f_86246_ com/mojang/realmsclient/RealmsMainScreen/SERVER_EXPIRES_SOON_TOOLTIP +FD: com/mojang/realmsclient/RealmsMainScreen/f_86247_ com/mojang/realmsclient/RealmsMainScreen/SERVER_EXPIRES_IN_DAY_TOOLTIP +FD: com/mojang/realmsclient/RealmsMainScreen/f_86248_ com/mojang/realmsclient/RealmsMainScreen/SERVER_OPEN_TOOLTIP +FD: com/mojang/realmsclient/RealmsMainScreen/f_86249_ com/mojang/realmsclient/RealmsMainScreen/SERVER_CLOSED_TOOLTIP +FD: com/mojang/realmsclient/RealmsMainScreen/f_86253_ com/mojang/realmsclient/RealmsMainScreen/NEWS_TOOLTIP +FD: com/mojang/realmsclient/RealmsMainScreen/f_86254_ com/mojang/realmsclient/RealmsMainScreen/teaserImages +FD: com/mojang/realmsclient/RealmsMainScreen/f_86256_ com/mojang/realmsclient/RealmsMainScreen/overrideConfigure +FD: com/mojang/realmsclient/RealmsMainScreen/f_86257_ com/mojang/realmsclient/RealmsMainScreen/LOGGER +FD: com/mojang/realmsclient/RealmsMainScreen/f_86258_ com/mojang/realmsclient/RealmsMainScreen/hasUnreadNews +FD: com/mojang/realmsclient/RealmsMainScreen/f_86259_ com/mojang/realmsclient/RealmsMainScreen/newsLink +FD: com/mojang/realmsclient/RealmsMainScreen/f_86260_ com/mojang/realmsclient/RealmsMainScreen/carouselIndex +FD: com/mojang/realmsclient/RealmsMainScreen/f_86261_ com/mojang/realmsclient/RealmsMainScreen/carouselTick +FD: com/mojang/realmsclient/RealmsMainScreen/f_86262_ com/mojang/realmsclient/RealmsMainScreen/hasSwitchedCarouselImage +FD: com/mojang/realmsclient/RealmsMainScreen/f_86263_ com/mojang/realmsclient/RealmsMainScreen/keyCombos +FD: com/mojang/realmsclient/RealmsMainScreen/f_86265_ com/mojang/realmsclient/RealmsMainScreen/connectLock +FD: com/mojang/realmsclient/RealmsMainScreen/f_86266_ com/mojang/realmsclient/RealmsMainScreen/formattedPopup +FD: com/mojang/realmsclient/RealmsMainScreen/f_86268_ com/mojang/realmsclient/RealmsMainScreen/showPopupButton +FD: com/mojang/realmsclient/RealmsMainScreen/f_86269_ com/mojang/realmsclient/RealmsMainScreen/pendingInvitesButton +FD: com/mojang/realmsclient/RealmsMainScreen/f_86270_ com/mojang/realmsclient/RealmsMainScreen/newsButton +FD: com/mojang/realmsclient/RealmsMainScreen/f_86271_ com/mojang/realmsclient/RealmsMainScreen/createTrialButton +FD: com/mojang/realmsclient/RealmsMainScreen/f_86272_ com/mojang/realmsclient/RealmsMainScreen/buyARealmButton +FD: com/mojang/realmsclient/RealmsMainScreen/f_86273_ com/mojang/realmsclient/RealmsMainScreen/closeButton +FD: com/mojang/realmsclient/RealmsMainScreen/f_86274_ com/mojang/realmsclient/RealmsMainScreen/lastScrollYPosition +FD: com/mojang/realmsclient/RealmsMainScreen/f_86275_ com/mojang/realmsclient/RealmsMainScreen/hasParentalConsent +FD: com/mojang/realmsclient/RealmsMainScreen/f_86276_ com/mojang/realmsclient/RealmsMainScreen/checkedParentalConsent +FD: com/mojang/realmsclient/RealmsMainScreen/f_86277_ com/mojang/realmsclient/RealmsMainScreen/checkedClientCompatability +FD: com/mojang/realmsclient/RealmsMainScreen/f_86278_ com/mojang/realmsclient/RealmsMainScreen/realmsGenericErrorScreen +FD: com/mojang/realmsclient/RealmsMainScreen/f_86279_ com/mojang/realmsclient/RealmsMainScreen/regionsPinged +FD: com/mojang/realmsclient/RealmsMainScreen/f_86280_ com/mojang/realmsclient/RealmsMainScreen/inviteNarrationLimiter +FD: com/mojang/realmsclient/RealmsMainScreen/f_86281_ com/mojang/realmsclient/RealmsMainScreen/dontSetConnectedToRealms +FD: com/mojang/realmsclient/RealmsMainScreen/f_86282_ com/mojang/realmsclient/RealmsMainScreen/lastScreen +FD: com/mojang/realmsclient/RealmsMainScreen/f_86283_ com/mojang/realmsclient/RealmsMainScreen/realmSelectionList +FD: com/mojang/realmsclient/RealmsMainScreen/f_86285_ com/mojang/realmsclient/RealmsMainScreen/playButton +FD: com/mojang/realmsclient/RealmsMainScreen/f_86286_ com/mojang/realmsclient/RealmsMainScreen/backButton +FD: com/mojang/realmsclient/RealmsMainScreen/f_86287_ com/mojang/realmsclient/RealmsMainScreen/renewButton +FD: com/mojang/realmsclient/RealmsMainScreen/f_86288_ com/mojang/realmsclient/RealmsMainScreen/configureButton +FD: com/mojang/realmsclient/RealmsMainScreen/f_86289_ com/mojang/realmsclient/RealmsMainScreen/leaveButton +FD: com/mojang/realmsclient/RealmsMainScreen/f_86291_ com/mojang/realmsclient/RealmsMainScreen/realmsServers +FD: com/mojang/realmsclient/RealmsMainScreen/f_86292_ com/mojang/realmsclient/RealmsMainScreen/numberOfPendingInvites +FD: com/mojang/realmsclient/RealmsMainScreen/f_86293_ com/mojang/realmsclient/RealmsMainScreen/animTick +FD: com/mojang/realmsclient/RealmsMainScreen/f_86294_ com/mojang/realmsclient/RealmsMainScreen/hasFetchedServers +FD: com/mojang/realmsclient/RealmsMainScreen/f_86295_ com/mojang/realmsclient/RealmsMainScreen/popupOpenedByUser +FD: com/mojang/realmsclient/RealmsMainScreen/f_86296_ com/mojang/realmsclient/RealmsMainScreen/justClosedPopup +FD: com/mojang/realmsclient/RealmsMainScreen/f_86297_ com/mojang/realmsclient/RealmsMainScreen/trialsAvailable +FD: com/mojang/realmsclient/RealmsMainScreen/f_86298_ com/mojang/realmsclient/RealmsMainScreen/createdTrial +FD: com/mojang/realmsclient/RealmsMainScreen/f_86299_ com/mojang/realmsclient/RealmsMainScreen/showingPopup +FD: com/mojang/realmsclient/RealmsMainScreen/f_86300_ com/mojang/realmsclient/RealmsMainScreen/ON_ICON_LOCATION +FD: com/mojang/realmsclient/RealmsMainScreen/f_86301_ com/mojang/realmsclient/RealmsMainScreen/OFF_ICON_LOCATION +FD: com/mojang/realmsclient/RealmsMainScreen/f_86302_ com/mojang/realmsclient/RealmsMainScreen/EXPIRED_ICON_LOCATION +FD: com/mojang/realmsclient/RealmsMainScreen/f_86303_ com/mojang/realmsclient/RealmsMainScreen/EXPIRES_SOON_ICON_LOCATION +FD: com/mojang/realmsclient/RealmsMainScreen/f_86305_ com/mojang/realmsclient/RealmsMainScreen/INVITATION_ICONS_LOCATION +FD: com/mojang/realmsclient/RealmsMainScreen/f_86306_ com/mojang/realmsclient/RealmsMainScreen/INVITE_ICON_LOCATION +FD: com/mojang/realmsclient/RealmsMainScreen/f_86307_ com/mojang/realmsclient/RealmsMainScreen/WORLDICON_LOCATION +FD: com/mojang/realmsclient/RealmsMainScreen/f_86308_ com/mojang/realmsclient/RealmsMainScreen/LOGO_LOCATION +FD: com/mojang/realmsclient/RealmsMainScreen/f_86311_ com/mojang/realmsclient/RealmsMainScreen/NEWS_LOCATION +FD: com/mojang/realmsclient/RealmsMainScreen/f_86312_ com/mojang/realmsclient/RealmsMainScreen/POPUP_LOCATION +FD: com/mojang/realmsclient/RealmsMainScreen$1/f_86733_ com/mojang/realmsclient/RealmsMainScreen$1/this$0 +FD: com/mojang/realmsclient/RealmsMainScreen$2/f_86743_ com/mojang/realmsclient/RealmsMainScreen$2/this$0 +FD: com/mojang/realmsclient/RealmsMainScreen$3/f_86751_ com/mojang/realmsclient/RealmsMainScreen$3/this$0 +FD: com/mojang/realmsclient/RealmsMainScreen$4/f_86756_ com/mojang/realmsclient/RealmsMainScreen$4/this$0 +FD: com/mojang/realmsclient/RealmsMainScreen$5/f_193501_ com/mojang/realmsclient/RealmsMainScreen$5/val$server +FD: com/mojang/realmsclient/RealmsMainScreen$5/f_86761_ com/mojang/realmsclient/RealmsMainScreen$5/this$0 +FD: com/mojang/realmsclient/RealmsMainScreen$ButtonEntry/f_273836_ com/mojang/realmsclient/RealmsMainScreen$ButtonEntry/xPos +FD: com/mojang/realmsclient/RealmsMainScreen$ButtonEntry/f_273854_ com/mojang/realmsclient/RealmsMainScreen$ButtonEntry/this$0 +FD: com/mojang/realmsclient/RealmsMainScreen$ButtonEntry/f_273936_ com/mojang/realmsclient/RealmsMainScreen$ButtonEntry/button +FD: com/mojang/realmsclient/RealmsMainScreen$CloseButton/f_86770_ com/mojang/realmsclient/RealmsMainScreen$CloseButton/this$0 +FD: com/mojang/realmsclient/RealmsMainScreen$Entry/f_86781_ com/mojang/realmsclient/RealmsMainScreen$Entry/this$0 +FD: com/mojang/realmsclient/RealmsMainScreen$NewsButton/f_278375_ com/mojang/realmsclient/RealmsMainScreen$NewsButton/SIDE +FD: com/mojang/realmsclient/RealmsMainScreen$NewsButton/f_86799_ com/mojang/realmsclient/RealmsMainScreen$NewsButton/this$0 +FD: com/mojang/realmsclient/RealmsMainScreen$NotificationMessageEntry/f_273811_ com/mojang/realmsclient/RealmsMainScreen$NotificationMessageEntry/textFrame +FD: com/mojang/realmsclient/RealmsMainScreen$NotificationMessageEntry/f_273817_ com/mojang/realmsclient/RealmsMainScreen$NotificationMessageEntry/textWidget +FD: com/mojang/realmsclient/RealmsMainScreen$NotificationMessageEntry/f_273824_ com/mojang/realmsclient/RealmsMainScreen$NotificationMessageEntry/this$0 +FD: com/mojang/realmsclient/RealmsMainScreen$NotificationMessageEntry/f_273834_ com/mojang/realmsclient/RealmsMainScreen$NotificationMessageEntry/SIDE_MARGINS +FD: com/mojang/realmsclient/RealmsMainScreen$NotificationMessageEntry/f_273835_ com/mojang/realmsclient/RealmsMainScreen$NotificationMessageEntry/text +FD: com/mojang/realmsclient/RealmsMainScreen$NotificationMessageEntry/f_273853_ com/mojang/realmsclient/RealmsMainScreen$NotificationMessageEntry/OUTLINE_COLOR +FD: com/mojang/realmsclient/RealmsMainScreen$NotificationMessageEntry/f_273894_ com/mojang/realmsclient/RealmsMainScreen$NotificationMessageEntry/ITEM_HEIGHT +FD: com/mojang/realmsclient/RealmsMainScreen$NotificationMessageEntry/f_273902_ com/mojang/realmsclient/RealmsMainScreen$NotificationMessageEntry/gridLayout +FD: com/mojang/realmsclient/RealmsMainScreen$NotificationMessageEntry/f_273924_ com/mojang/realmsclient/RealmsMainScreen$NotificationMessageEntry/children +FD: com/mojang/realmsclient/RealmsMainScreen$NotificationMessageEntry/f_273937_ com/mojang/realmsclient/RealmsMainScreen$NotificationMessageEntry/lastEntryWidth +FD: com/mojang/realmsclient/RealmsMainScreen$NotificationMessageEntry/f_273947_ com/mojang/realmsclient/RealmsMainScreen$NotificationMessageEntry/dismissButton +FD: com/mojang/realmsclient/RealmsMainScreen$PendingInvitesButton/f_278376_ com/mojang/realmsclient/RealmsMainScreen$PendingInvitesButton/HEIGHT +FD: com/mojang/realmsclient/RealmsMainScreen$PendingInvitesButton/f_278385_ com/mojang/realmsclient/RealmsMainScreen$PendingInvitesButton/INVITES_WIDTH +FD: com/mojang/realmsclient/RealmsMainScreen$PendingInvitesButton/f_278403_ com/mojang/realmsclient/RealmsMainScreen$PendingInvitesButton/NO_PENDING_INVITES +FD: com/mojang/realmsclient/RealmsMainScreen$PendingInvitesButton/f_278406_ com/mojang/realmsclient/RealmsMainScreen$PendingInvitesButton/TITLE +FD: com/mojang/realmsclient/RealmsMainScreen$PendingInvitesButton/f_278408_ com/mojang/realmsclient/RealmsMainScreen$PendingInvitesButton/X_OFFSET +FD: com/mojang/realmsclient/RealmsMainScreen$PendingInvitesButton/f_278435_ com/mojang/realmsclient/RealmsMainScreen$PendingInvitesButton/WIDTH +FD: com/mojang/realmsclient/RealmsMainScreen$PendingInvitesButton/f_278437_ com/mojang/realmsclient/RealmsMainScreen$PendingInvitesButton/INVITES_OFFSET +FD: com/mojang/realmsclient/RealmsMainScreen$PendingInvitesButton/f_278453_ com/mojang/realmsclient/RealmsMainScreen$PendingInvitesButton/INVITES_HEIGHT +FD: com/mojang/realmsclient/RealmsMainScreen$PendingInvitesButton/f_278506_ com/mojang/realmsclient/RealmsMainScreen$PendingInvitesButton/PENDING_INVITES +FD: com/mojang/realmsclient/RealmsMainScreen$PendingInvitesButton/f_86810_ com/mojang/realmsclient/RealmsMainScreen$PendingInvitesButton/this$0 +FD: com/mojang/realmsclient/RealmsMainScreen$RealmSelectionList/f_86822_ com/mojang/realmsclient/RealmsMainScreen$RealmSelectionList/this$0 +FD: com/mojang/realmsclient/RealmsMainScreen$ServerEntry/f_167228_ com/mojang/realmsclient/RealmsMainScreen$ServerEntry/SKIN_HEAD_LARGE_WIDTH +FD: com/mojang/realmsclient/RealmsMainScreen$ServerEntry/f_86852_ com/mojang/realmsclient/RealmsMainScreen$ServerEntry/this$0 +FD: com/mojang/realmsclient/RealmsMainScreen$ServerEntry/f_86853_ com/mojang/realmsclient/RealmsMainScreen$ServerEntry/serverData +FD: com/mojang/realmsclient/RealmsMainScreen$TrialEntry/f_86903_ com/mojang/realmsclient/RealmsMainScreen$TrialEntry/this$0 +FD: com/mojang/realmsclient/Unit/$VALUES com/mojang/realmsclient/Unit/$VALUES +FD: com/mojang/realmsclient/Unit/B com/mojang/realmsclient/Unit/B +FD: com/mojang/realmsclient/Unit/GB com/mojang/realmsclient/Unit/GB +FD: com/mojang/realmsclient/Unit/KB com/mojang/realmsclient/Unit/KB +FD: com/mojang/realmsclient/Unit/MB com/mojang/realmsclient/Unit/MB +FD: com/mojang/realmsclient/Unit/f_167231_ com/mojang/realmsclient/Unit/BASE_UNIT +FD: com/mojang/realmsclient/client/FileDownload/f_86953_ com/mojang/realmsclient/client/FileDownload/LOGGER +FD: com/mojang/realmsclient/client/FileDownload/f_86954_ com/mojang/realmsclient/client/FileDownload/cancelled +FD: com/mojang/realmsclient/client/FileDownload/f_86955_ com/mojang/realmsclient/client/FileDownload/finished +FD: com/mojang/realmsclient/client/FileDownload/f_86956_ com/mojang/realmsclient/client/FileDownload/error +FD: com/mojang/realmsclient/client/FileDownload/f_86957_ com/mojang/realmsclient/client/FileDownload/extracting +FD: com/mojang/realmsclient/client/FileDownload/f_86958_ com/mojang/realmsclient/client/FileDownload/tempFile +FD: com/mojang/realmsclient/client/FileDownload/f_86959_ com/mojang/realmsclient/client/FileDownload/resourcePackPath +FD: com/mojang/realmsclient/client/FileDownload/f_86960_ com/mojang/realmsclient/client/FileDownload/request +FD: com/mojang/realmsclient/client/FileDownload/f_86961_ com/mojang/realmsclient/client/FileDownload/currentThread +FD: com/mojang/realmsclient/client/FileDownload/f_86962_ com/mojang/realmsclient/client/FileDownload/requestConfig +FD: com/mojang/realmsclient/client/FileDownload/f_86963_ com/mojang/realmsclient/client/FileDownload/INVALID_FILE_NAMES +FD: com/mojang/realmsclient/client/FileDownload$DownloadCountingOutputStream/f_87012_ com/mojang/realmsclient/client/FileDownload$DownloadCountingOutputStream/listener +FD: com/mojang/realmsclient/client/FileDownload$ProgressListener/f_87020_ com/mojang/realmsclient/client/FileDownload$ProgressListener/this$0 +FD: com/mojang/realmsclient/client/FileDownload$ProgressListener/f_87021_ com/mojang/realmsclient/client/FileDownload$ProgressListener/worldName +FD: com/mojang/realmsclient/client/FileDownload$ProgressListener/f_87022_ com/mojang/realmsclient/client/FileDownload$ProgressListener/tempFile +FD: com/mojang/realmsclient/client/FileDownload$ProgressListener/f_87023_ com/mojang/realmsclient/client/FileDownload$ProgressListener/levelStorageSource +FD: com/mojang/realmsclient/client/FileDownload$ProgressListener/f_87024_ com/mojang/realmsclient/client/FileDownload$ProgressListener/downloadStatus +FD: com/mojang/realmsclient/client/FileDownload$ResourcePackProgressListener/f_87040_ com/mojang/realmsclient/client/FileDownload$ResourcePackProgressListener/this$0 +FD: com/mojang/realmsclient/client/FileDownload$ResourcePackProgressListener/f_87041_ com/mojang/realmsclient/client/FileDownload$ResourcePackProgressListener/tempFile +FD: com/mojang/realmsclient/client/FileDownload$ResourcePackProgressListener/f_87042_ com/mojang/realmsclient/client/FileDownload$ResourcePackProgressListener/downloadStatus +FD: com/mojang/realmsclient/client/FileDownload$ResourcePackProgressListener/f_87043_ com/mojang/realmsclient/client/FileDownload$ResourcePackProgressListener/worldDownload +FD: com/mojang/realmsclient/client/FileUpload/f_167233_ com/mojang/realmsclient/client/FileUpload/MAX_RETRIES +FD: com/mojang/realmsclient/client/FileUpload/f_167234_ com/mojang/realmsclient/client/FileUpload/UPLOAD_PATH +FD: com/mojang/realmsclient/client/FileUpload/f_87057_ com/mojang/realmsclient/client/FileUpload/LOGGER +FD: com/mojang/realmsclient/client/FileUpload/f_87058_ com/mojang/realmsclient/client/FileUpload/file +FD: com/mojang/realmsclient/client/FileUpload/f_87059_ com/mojang/realmsclient/client/FileUpload/worldId +FD: com/mojang/realmsclient/client/FileUpload/f_87060_ com/mojang/realmsclient/client/FileUpload/slotId +FD: com/mojang/realmsclient/client/FileUpload/f_87061_ com/mojang/realmsclient/client/FileUpload/uploadInfo +FD: com/mojang/realmsclient/client/FileUpload/f_87062_ com/mojang/realmsclient/client/FileUpload/sessionId +FD: com/mojang/realmsclient/client/FileUpload/f_87063_ com/mojang/realmsclient/client/FileUpload/username +FD: com/mojang/realmsclient/client/FileUpload/f_87064_ com/mojang/realmsclient/client/FileUpload/clientVersion +FD: com/mojang/realmsclient/client/FileUpload/f_87065_ com/mojang/realmsclient/client/FileUpload/uploadStatus +FD: com/mojang/realmsclient/client/FileUpload/f_87066_ com/mojang/realmsclient/client/FileUpload/cancelled +FD: com/mojang/realmsclient/client/FileUpload/f_87067_ com/mojang/realmsclient/client/FileUpload/uploadTask +FD: com/mojang/realmsclient/client/FileUpload/f_87068_ com/mojang/realmsclient/client/FileUpload/requestConfig +FD: com/mojang/realmsclient/client/FileUpload$CustomInputStreamEntity/f_87101_ com/mojang/realmsclient/client/FileUpload$CustomInputStreamEntity/length +FD: com/mojang/realmsclient/client/FileUpload$CustomInputStreamEntity/f_87102_ com/mojang/realmsclient/client/FileUpload$CustomInputStreamEntity/content +FD: com/mojang/realmsclient/client/FileUpload$CustomInputStreamEntity/f_87103_ com/mojang/realmsclient/client/FileUpload$CustomInputStreamEntity/uploadStatus +FD: com/mojang/realmsclient/client/Ping$Region/$VALUES com/mojang/realmsclient/client/Ping$Region/$VALUES +FD: com/mojang/realmsclient/client/Ping$Region/AP_NORTHEAST_1 com/mojang/realmsclient/client/Ping$Region/AP_NORTHEAST_1 +FD: com/mojang/realmsclient/client/Ping$Region/AP_SOUTHEAST_1 com/mojang/realmsclient/client/Ping$Region/AP_SOUTHEAST_1 +FD: com/mojang/realmsclient/client/Ping$Region/AP_SOUTHEAST_2 com/mojang/realmsclient/client/Ping$Region/AP_SOUTHEAST_2 +FD: com/mojang/realmsclient/client/Ping$Region/EU_WEST_1 com/mojang/realmsclient/client/Ping$Region/EU_WEST_1 +FD: com/mojang/realmsclient/client/Ping$Region/SA_EAST_1 com/mojang/realmsclient/client/Ping$Region/SA_EAST_1 +FD: com/mojang/realmsclient/client/Ping$Region/US_EAST_1 com/mojang/realmsclient/client/Ping$Region/US_EAST_1 +FD: com/mojang/realmsclient/client/Ping$Region/US_WEST_1 com/mojang/realmsclient/client/Ping$Region/US_WEST_1 +FD: com/mojang/realmsclient/client/Ping$Region/US_WEST_2 com/mojang/realmsclient/client/Ping$Region/US_WEST_2 +FD: com/mojang/realmsclient/client/Ping$Region/f_87141_ com/mojang/realmsclient/client/Ping$Region/name +FD: com/mojang/realmsclient/client/Ping$Region/f_87142_ com/mojang/realmsclient/client/Ping$Region/endpoint +FD: com/mojang/realmsclient/client/RealmsClient/f_167237_ com/mojang/realmsclient/client/RealmsClient/PATH_PENDING_INVITES_COUNT +FD: com/mojang/realmsclient/client/RealmsClient/f_167238_ com/mojang/realmsclient/client/RealmsClient/PATH_PENDING_INVITES +FD: com/mojang/realmsclient/client/RealmsClient/f_167239_ com/mojang/realmsclient/client/RealmsClient/PATH_ACCEPT_INVITE +FD: com/mojang/realmsclient/client/RealmsClient/f_167240_ com/mojang/realmsclient/client/RealmsClient/PATH_REJECT_INVITE +FD: com/mojang/realmsclient/client/RealmsClient/f_167241_ com/mojang/realmsclient/client/RealmsClient/PATH_UNINVITE_MYSELF +FD: com/mojang/realmsclient/client/RealmsClient/f_167242_ com/mojang/realmsclient/client/RealmsClient/PATH_WORLD_UPDATE +FD: com/mojang/realmsclient/client/RealmsClient/f_167243_ com/mojang/realmsclient/client/RealmsClient/PATH_SLOT +FD: com/mojang/realmsclient/client/RealmsClient/f_167244_ com/mojang/realmsclient/client/RealmsClient/PATH_WORLD_OPEN +FD: com/mojang/realmsclient/client/RealmsClient/f_167245_ com/mojang/realmsclient/client/RealmsClient/PATH_WORLD_CLOSE +FD: com/mojang/realmsclient/client/RealmsClient/f_167246_ com/mojang/realmsclient/client/RealmsClient/PATH_WORLD_RESET +FD: com/mojang/realmsclient/client/RealmsClient/f_167247_ com/mojang/realmsclient/client/RealmsClient/PATH_DELETE_WORLD +FD: com/mojang/realmsclient/client/RealmsClient/f_167248_ com/mojang/realmsclient/client/RealmsClient/PATH_WORLD_BACKUPS +FD: com/mojang/realmsclient/client/RealmsClient/f_167249_ com/mojang/realmsclient/client/RealmsClient/PATH_WORLD_DOWNLOAD +FD: com/mojang/realmsclient/client/RealmsClient/f_167250_ com/mojang/realmsclient/client/RealmsClient/PATH_WORLD_UPLOAD +FD: com/mojang/realmsclient/client/RealmsClient/f_167251_ com/mojang/realmsclient/client/RealmsClient/PATH_CLIENT_COMPATIBLE +FD: com/mojang/realmsclient/client/RealmsClient/f_167252_ com/mojang/realmsclient/client/RealmsClient/PATH_TOS_AGREED +FD: com/mojang/realmsclient/client/RealmsClient/f_167253_ com/mojang/realmsclient/client/RealmsClient/PATH_NEWS +FD: com/mojang/realmsclient/client/RealmsClient/f_167254_ com/mojang/realmsclient/client/RealmsClient/PATH_STAGE_AVAILABLE +FD: com/mojang/realmsclient/client/RealmsClient/f_167255_ com/mojang/realmsclient/client/RealmsClient/WORLDS_RESOURCE_PATH +FD: com/mojang/realmsclient/client/RealmsClient/f_167256_ com/mojang/realmsclient/client/RealmsClient/INVITES_RESOURCE_PATH +FD: com/mojang/realmsclient/client/RealmsClient/f_167257_ com/mojang/realmsclient/client/RealmsClient/MCO_RESOURCE_PATH +FD: com/mojang/realmsclient/client/RealmsClient/f_167258_ com/mojang/realmsclient/client/RealmsClient/SUBSCRIPTION_RESOURCE +FD: com/mojang/realmsclient/client/RealmsClient/f_167259_ com/mojang/realmsclient/client/RealmsClient/ACTIVITIES_RESOURCE +FD: com/mojang/realmsclient/client/RealmsClient/f_167260_ com/mojang/realmsclient/client/RealmsClient/OPS_RESOURCE +FD: com/mojang/realmsclient/client/RealmsClient/f_167261_ com/mojang/realmsclient/client/RealmsClient/REGIONS_RESOURCE +FD: com/mojang/realmsclient/client/RealmsClient/f_167262_ com/mojang/realmsclient/client/RealmsClient/TRIALS_RESOURCE +FD: com/mojang/realmsclient/client/RealmsClient/f_167263_ com/mojang/realmsclient/client/RealmsClient/PATH_INITIALIZE +FD: com/mojang/realmsclient/client/RealmsClient/f_167264_ com/mojang/realmsclient/client/RealmsClient/PATH_GET_ACTIVTIES +FD: com/mojang/realmsclient/client/RealmsClient/f_167265_ com/mojang/realmsclient/client/RealmsClient/PATH_GET_LIVESTATS +FD: com/mojang/realmsclient/client/RealmsClient/f_167266_ com/mojang/realmsclient/client/RealmsClient/PATH_GET_SUBSCRIPTION +FD: com/mojang/realmsclient/client/RealmsClient/f_167267_ com/mojang/realmsclient/client/RealmsClient/PATH_OP +FD: com/mojang/realmsclient/client/RealmsClient/f_167268_ com/mojang/realmsclient/client/RealmsClient/PATH_PUT_INTO_MINIGAMES_MODE +FD: com/mojang/realmsclient/client/RealmsClient/f_167269_ com/mojang/realmsclient/client/RealmsClient/PATH_AVAILABLE +FD: com/mojang/realmsclient/client/RealmsClient/f_167270_ com/mojang/realmsclient/client/RealmsClient/PATH_TEMPLATES +FD: com/mojang/realmsclient/client/RealmsClient/f_167271_ com/mojang/realmsclient/client/RealmsClient/PATH_WORLD_JOIN +FD: com/mojang/realmsclient/client/RealmsClient/f_167272_ com/mojang/realmsclient/client/RealmsClient/PATH_WORLD_GET +FD: com/mojang/realmsclient/client/RealmsClient/f_167273_ com/mojang/realmsclient/client/RealmsClient/PATH_WORLD_INVITES +FD: com/mojang/realmsclient/client/RealmsClient/f_167274_ com/mojang/realmsclient/client/RealmsClient/PATH_WORLD_UNINVITE +FD: com/mojang/realmsclient/client/RealmsClient/f_273827_ com/mojang/realmsclient/client/RealmsClient/PATH_MARK_NOTIFICATIONS_SEEN +FD: com/mojang/realmsclient/client/RealmsClient/f_273877_ com/mojang/realmsclient/client/RealmsClient/PATH_DISMISS_NOTIFICATIONS +FD: com/mojang/realmsclient/client/RealmsClient/f_273928_ com/mojang/realmsclient/client/RealmsClient/NOTIFICATIONS_RESOURCE +FD: com/mojang/realmsclient/client/RealmsClient/f_87157_ com/mojang/realmsclient/client/RealmsClient/currentEnvironment +FD: com/mojang/realmsclient/client/RealmsClient/f_87158_ com/mojang/realmsclient/client/RealmsClient/initialized +FD: com/mojang/realmsclient/client/RealmsClient/f_87159_ com/mojang/realmsclient/client/RealmsClient/LOGGER +FD: com/mojang/realmsclient/client/RealmsClient/f_87160_ com/mojang/realmsclient/client/RealmsClient/sessionId +FD: com/mojang/realmsclient/client/RealmsClient/f_87161_ com/mojang/realmsclient/client/RealmsClient/username +FD: com/mojang/realmsclient/client/RealmsClient/f_87162_ com/mojang/realmsclient/client/RealmsClient/minecraft +FD: com/mojang/realmsclient/client/RealmsClient/f_87163_ com/mojang/realmsclient/client/RealmsClient/GSON +FD: com/mojang/realmsclient/client/RealmsClient$CompatibleVersionResponse/$VALUES com/mojang/realmsclient/client/RealmsClient$CompatibleVersionResponse/$VALUES +FD: com/mojang/realmsclient/client/RealmsClient$CompatibleVersionResponse/COMPATIBLE com/mojang/realmsclient/client/RealmsClient$CompatibleVersionResponse/COMPATIBLE +FD: com/mojang/realmsclient/client/RealmsClient$CompatibleVersionResponse/OTHER com/mojang/realmsclient/client/RealmsClient$CompatibleVersionResponse/OTHER +FD: com/mojang/realmsclient/client/RealmsClient$CompatibleVersionResponse/OUTDATED com/mojang/realmsclient/client/RealmsClient$CompatibleVersionResponse/OUTDATED +FD: com/mojang/realmsclient/client/RealmsClient$Environment/$VALUES com/mojang/realmsclient/client/RealmsClient$Environment/$VALUES +FD: com/mojang/realmsclient/client/RealmsClient$Environment/LOCAL com/mojang/realmsclient/client/RealmsClient$Environment/LOCAL +FD: com/mojang/realmsclient/client/RealmsClient$Environment/PRODUCTION com/mojang/realmsclient/client/RealmsClient$Environment/PRODUCTION +FD: com/mojang/realmsclient/client/RealmsClient$Environment/STAGE com/mojang/realmsclient/client/RealmsClient$Environment/STAGE +FD: com/mojang/realmsclient/client/RealmsClient$Environment/f_87279_ com/mojang/realmsclient/client/RealmsClient$Environment/baseUrl +FD: com/mojang/realmsclient/client/RealmsClient$Environment/f_87280_ com/mojang/realmsclient/client/RealmsClient$Environment/protocol +FD: com/mojang/realmsclient/client/RealmsClientConfig/f_87291_ com/mojang/realmsclient/client/RealmsClientConfig/proxy +FD: com/mojang/realmsclient/client/RealmsError/f_87295_ com/mojang/realmsclient/client/RealmsError/LOGGER +FD: com/mojang/realmsclient/client/RealmsError/f_87296_ com/mojang/realmsclient/client/RealmsError/errorMessage +FD: com/mojang/realmsclient/client/RealmsError/f_87297_ com/mojang/realmsclient/client/RealmsError/errorCode +FD: com/mojang/realmsclient/client/Request/f_167283_ com/mojang/realmsclient/client/Request/DEFAULT_READ_TIMEOUT +FD: com/mojang/realmsclient/client/Request/f_167284_ com/mojang/realmsclient/client/Request/DEFAULT_CONNECT_TIMEOUT +FD: com/mojang/realmsclient/client/Request/f_87306_ com/mojang/realmsclient/client/Request/connection +FD: com/mojang/realmsclient/client/Request/f_87307_ com/mojang/realmsclient/client/Request/url +FD: com/mojang/realmsclient/client/Request/f_87308_ com/mojang/realmsclient/client/Request/connected +FD: com/mojang/realmsclient/client/Request$Post/f_87370_ com/mojang/realmsclient/client/Request$Post/content +FD: com/mojang/realmsclient/client/Request$Put/f_87378_ com/mojang/realmsclient/client/Request$Put/content +FD: com/mojang/realmsclient/client/UploadStatus/f_87386_ com/mojang/realmsclient/client/UploadStatus/bytesWritten +FD: com/mojang/realmsclient/client/UploadStatus/f_87387_ com/mojang/realmsclient/client/UploadStatus/totalBytes +FD: com/mojang/realmsclient/dto/Backup/f_87389_ com/mojang/realmsclient/dto/Backup/backupId +FD: com/mojang/realmsclient/dto/Backup/f_87390_ com/mojang/realmsclient/dto/Backup/lastModifiedDate +FD: com/mojang/realmsclient/dto/Backup/f_87391_ com/mojang/realmsclient/dto/Backup/size +FD: com/mojang/realmsclient/dto/Backup/f_87392_ com/mojang/realmsclient/dto/Backup/metadata +FD: com/mojang/realmsclient/dto/Backup/f_87393_ com/mojang/realmsclient/dto/Backup/changeList +FD: com/mojang/realmsclient/dto/Backup/f_87394_ com/mojang/realmsclient/dto/Backup/LOGGER +FD: com/mojang/realmsclient/dto/Backup/f_87395_ com/mojang/realmsclient/dto/Backup/uploadedVersion +FD: com/mojang/realmsclient/dto/BackupList/f_87405_ com/mojang/realmsclient/dto/BackupList/backups +FD: com/mojang/realmsclient/dto/BackupList/f_87406_ com/mojang/realmsclient/dto/BackupList/LOGGER +FD: com/mojang/realmsclient/dto/GuardedSerializer/f_87411_ com/mojang/realmsclient/dto/GuardedSerializer/gson +FD: com/mojang/realmsclient/dto/Ops/f_87418_ com/mojang/realmsclient/dto/Ops/ops +FD: com/mojang/realmsclient/dto/PendingInvite/f_87422_ com/mojang/realmsclient/dto/PendingInvite/invitationId +FD: com/mojang/realmsclient/dto/PendingInvite/f_87423_ com/mojang/realmsclient/dto/PendingInvite/worldName +FD: com/mojang/realmsclient/dto/PendingInvite/f_87424_ com/mojang/realmsclient/dto/PendingInvite/worldOwnerName +FD: com/mojang/realmsclient/dto/PendingInvite/f_87425_ com/mojang/realmsclient/dto/PendingInvite/worldOwnerUuid +FD: com/mojang/realmsclient/dto/PendingInvite/f_87426_ com/mojang/realmsclient/dto/PendingInvite/date +FD: com/mojang/realmsclient/dto/PendingInvite/f_87427_ com/mojang/realmsclient/dto/PendingInvite/LOGGER +FD: com/mojang/realmsclient/dto/PendingInvitesList/f_87432_ com/mojang/realmsclient/dto/PendingInvitesList/pendingInvites +FD: com/mojang/realmsclient/dto/PendingInvitesList/f_87433_ com/mojang/realmsclient/dto/PendingInvitesList/LOGGER +FD: com/mojang/realmsclient/dto/PingResult/f_87438_ com/mojang/realmsclient/dto/PingResult/pingResults +FD: com/mojang/realmsclient/dto/PingResult/f_87439_ com/mojang/realmsclient/dto/PingResult/worldIds +FD: com/mojang/realmsclient/dto/PlayerInfo/f_87441_ com/mojang/realmsclient/dto/PlayerInfo/name +FD: com/mojang/realmsclient/dto/PlayerInfo/f_87442_ com/mojang/realmsclient/dto/PlayerInfo/uuid +FD: com/mojang/realmsclient/dto/PlayerInfo/f_87443_ com/mojang/realmsclient/dto/PlayerInfo/operator +FD: com/mojang/realmsclient/dto/PlayerInfo/f_87444_ com/mojang/realmsclient/dto/PlayerInfo/accepted +FD: com/mojang/realmsclient/dto/PlayerInfo/f_87445_ com/mojang/realmsclient/dto/PlayerInfo/online +FD: com/mojang/realmsclient/dto/RealmsDescriptionDto/f_87462_ com/mojang/realmsclient/dto/RealmsDescriptionDto/name +FD: com/mojang/realmsclient/dto/RealmsDescriptionDto/f_87463_ com/mojang/realmsclient/dto/RealmsDescriptionDto/description +FD: com/mojang/realmsclient/dto/RealmsNews/f_87467_ com/mojang/realmsclient/dto/RealmsNews/newsLink +FD: com/mojang/realmsclient/dto/RealmsNews/f_87468_ com/mojang/realmsclient/dto/RealmsNews/LOGGER +FD: com/mojang/realmsclient/dto/RealmsNotification/f_273813_ com/mojang/realmsclient/dto/RealmsNotification/dismissable +FD: com/mojang/realmsclient/dto/RealmsNotification/f_273826_ com/mojang/realmsclient/dto/RealmsNotification/SEEN +FD: com/mojang/realmsclient/dto/RealmsNotification/f_273846_ com/mojang/realmsclient/dto/RealmsNotification/NOTIFICATION_UUID +FD: com/mojang/realmsclient/dto/RealmsNotification/f_273860_ com/mojang/realmsclient/dto/RealmsNotification/TYPE +FD: com/mojang/realmsclient/dto/RealmsNotification/f_273874_ com/mojang/realmsclient/dto/RealmsNotification/LOGGER +FD: com/mojang/realmsclient/dto/RealmsNotification/f_273896_ com/mojang/realmsclient/dto/RealmsNotification/VISIT_URL +FD: com/mojang/realmsclient/dto/RealmsNotification/f_273916_ com/mojang/realmsclient/dto/RealmsNotification/seen +FD: com/mojang/realmsclient/dto/RealmsNotification/f_273939_ com/mojang/realmsclient/dto/RealmsNotification/type +FD: com/mojang/realmsclient/dto/RealmsNotification/f_273940_ com/mojang/realmsclient/dto/RealmsNotification/DISMISSABLE +FD: com/mojang/realmsclient/dto/RealmsNotification/f_273948_ com/mojang/realmsclient/dto/RealmsNotification/uuid +FD: com/mojang/realmsclient/dto/RealmsNotification$VisitUrl/f_273863_ com/mojang/realmsclient/dto/RealmsNotification$VisitUrl/BUTTON_TEXT +FD: com/mojang/realmsclient/dto/RealmsNotification$VisitUrl/f_273906_ com/mojang/realmsclient/dto/RealmsNotification$VisitUrl/MESSAGE +FD: com/mojang/realmsclient/dto/RealmsNotification$VisitUrl/f_273914_ com/mojang/realmsclient/dto/RealmsNotification$VisitUrl/url +FD: com/mojang/realmsclient/dto/RealmsNotification$VisitUrl/f_273925_ com/mojang/realmsclient/dto/RealmsNotification$VisitUrl/URL +FD: com/mojang/realmsclient/dto/RealmsNotification$VisitUrl/f_273945_ com/mojang/realmsclient/dto/RealmsNotification$VisitUrl/message +FD: com/mojang/realmsclient/dto/RealmsNotification$VisitUrl/f_273949_ com/mojang/realmsclient/dto/RealmsNotification$VisitUrl/buttonText +FD: com/mojang/realmsclient/dto/RealmsServer/f_87473_ com/mojang/realmsclient/dto/RealmsServer/id +FD: com/mojang/realmsclient/dto/RealmsServer/f_87474_ com/mojang/realmsclient/dto/RealmsServer/remoteSubscriptionId +FD: com/mojang/realmsclient/dto/RealmsServer/f_87475_ com/mojang/realmsclient/dto/RealmsServer/name +FD: com/mojang/realmsclient/dto/RealmsServer/f_87476_ com/mojang/realmsclient/dto/RealmsServer/motd +FD: com/mojang/realmsclient/dto/RealmsServer/f_87477_ com/mojang/realmsclient/dto/RealmsServer/state +FD: com/mojang/realmsclient/dto/RealmsServer/f_87478_ com/mojang/realmsclient/dto/RealmsServer/owner +FD: com/mojang/realmsclient/dto/RealmsServer/f_87479_ com/mojang/realmsclient/dto/RealmsServer/ownerUUID +FD: com/mojang/realmsclient/dto/RealmsServer/f_87480_ com/mojang/realmsclient/dto/RealmsServer/players +FD: com/mojang/realmsclient/dto/RealmsServer/f_87481_ com/mojang/realmsclient/dto/RealmsServer/slots +FD: com/mojang/realmsclient/dto/RealmsServer/f_87482_ com/mojang/realmsclient/dto/RealmsServer/expired +FD: com/mojang/realmsclient/dto/RealmsServer/f_87483_ com/mojang/realmsclient/dto/RealmsServer/expiredTrial +FD: com/mojang/realmsclient/dto/RealmsServer/f_87484_ com/mojang/realmsclient/dto/RealmsServer/daysLeft +FD: com/mojang/realmsclient/dto/RealmsServer/f_87485_ com/mojang/realmsclient/dto/RealmsServer/worldType +FD: com/mojang/realmsclient/dto/RealmsServer/f_87486_ com/mojang/realmsclient/dto/RealmsServer/activeSlot +FD: com/mojang/realmsclient/dto/RealmsServer/f_87487_ com/mojang/realmsclient/dto/RealmsServer/minigameName +FD: com/mojang/realmsclient/dto/RealmsServer/f_87488_ com/mojang/realmsclient/dto/RealmsServer/minigameId +FD: com/mojang/realmsclient/dto/RealmsServer/f_87489_ com/mojang/realmsclient/dto/RealmsServer/minigameImage +FD: com/mojang/realmsclient/dto/RealmsServer/f_87490_ com/mojang/realmsclient/dto/RealmsServer/serverPing +FD: com/mojang/realmsclient/dto/RealmsServer/f_87491_ com/mojang/realmsclient/dto/RealmsServer/LOGGER +FD: com/mojang/realmsclient/dto/RealmsServer$McoServerComparator/f_87532_ com/mojang/realmsclient/dto/RealmsServer$McoServerComparator/refOwner +FD: com/mojang/realmsclient/dto/RealmsServer$State/$VALUES com/mojang/realmsclient/dto/RealmsServer$State/$VALUES +FD: com/mojang/realmsclient/dto/RealmsServer$State/CLOSED com/mojang/realmsclient/dto/RealmsServer$State/CLOSED +FD: com/mojang/realmsclient/dto/RealmsServer$State/OPEN com/mojang/realmsclient/dto/RealmsServer$State/OPEN +FD: com/mojang/realmsclient/dto/RealmsServer$State/UNINITIALIZED com/mojang/realmsclient/dto/RealmsServer$State/UNINITIALIZED +FD: com/mojang/realmsclient/dto/RealmsServer$WorldType/$VALUES com/mojang/realmsclient/dto/RealmsServer$WorldType/$VALUES +FD: com/mojang/realmsclient/dto/RealmsServer$WorldType/ADVENTUREMAP com/mojang/realmsclient/dto/RealmsServer$WorldType/ADVENTUREMAP +FD: com/mojang/realmsclient/dto/RealmsServer$WorldType/EXPERIENCE com/mojang/realmsclient/dto/RealmsServer$WorldType/EXPERIENCE +FD: com/mojang/realmsclient/dto/RealmsServer$WorldType/INSPIRATION com/mojang/realmsclient/dto/RealmsServer$WorldType/INSPIRATION +FD: com/mojang/realmsclient/dto/RealmsServer$WorldType/MINIGAME com/mojang/realmsclient/dto/RealmsServer$WorldType/MINIGAME +FD: com/mojang/realmsclient/dto/RealmsServer$WorldType/NORMAL com/mojang/realmsclient/dto/RealmsServer$WorldType/NORMAL +FD: com/mojang/realmsclient/dto/RealmsServerAddress/f_87565_ com/mojang/realmsclient/dto/RealmsServerAddress/address +FD: com/mojang/realmsclient/dto/RealmsServerAddress/f_87566_ com/mojang/realmsclient/dto/RealmsServerAddress/resourcePackUrl +FD: com/mojang/realmsclient/dto/RealmsServerAddress/f_87567_ com/mojang/realmsclient/dto/RealmsServerAddress/resourcePackHash +FD: com/mojang/realmsclient/dto/RealmsServerAddress/f_87568_ com/mojang/realmsclient/dto/RealmsServerAddress/LOGGER +FD: com/mojang/realmsclient/dto/RealmsServerList/f_87573_ com/mojang/realmsclient/dto/RealmsServerList/servers +FD: com/mojang/realmsclient/dto/RealmsServerList/f_87574_ com/mojang/realmsclient/dto/RealmsServerList/LOGGER +FD: com/mojang/realmsclient/dto/RealmsServerPing/f_87579_ com/mojang/realmsclient/dto/RealmsServerPing/nrOfPlayers +FD: com/mojang/realmsclient/dto/RealmsServerPing/f_87580_ com/mojang/realmsclient/dto/RealmsServerPing/playerList +FD: com/mojang/realmsclient/dto/RealmsServerPlayerList/f_87582_ com/mojang/realmsclient/dto/RealmsServerPlayerList/serverId +FD: com/mojang/realmsclient/dto/RealmsServerPlayerList/f_87583_ com/mojang/realmsclient/dto/RealmsServerPlayerList/players +FD: com/mojang/realmsclient/dto/RealmsServerPlayerList/f_87584_ com/mojang/realmsclient/dto/RealmsServerPlayerList/LOGGER +FD: com/mojang/realmsclient/dto/RealmsServerPlayerList/f_87585_ com/mojang/realmsclient/dto/RealmsServerPlayerList/JSON_PARSER +FD: com/mojang/realmsclient/dto/RealmsServerPlayerLists/f_87592_ com/mojang/realmsclient/dto/RealmsServerPlayerLists/servers +FD: com/mojang/realmsclient/dto/RealmsServerPlayerLists/f_87593_ com/mojang/realmsclient/dto/RealmsServerPlayerLists/LOGGER +FD: com/mojang/realmsclient/dto/RealmsText/f_273818_ com/mojang/realmsclient/dto/RealmsText/ARGS +FD: com/mojang/realmsclient/dto/RealmsText/f_273881_ com/mojang/realmsclient/dto/RealmsText/translationKey +FD: com/mojang/realmsclient/dto/RealmsText/f_273889_ com/mojang/realmsclient/dto/RealmsText/TRANSLATION_KEY +FD: com/mojang/realmsclient/dto/RealmsText/f_273935_ com/mojang/realmsclient/dto/RealmsText/args +FD: com/mojang/realmsclient/dto/RealmsWorldOptions/f_167290_ com/mojang/realmsclient/dto/RealmsWorldOptions/DEFAULT_FORCE_GAME_MODE +FD: com/mojang/realmsclient/dto/RealmsWorldOptions/f_167291_ com/mojang/realmsclient/dto/RealmsWorldOptions/DEFAULT_PVP +FD: com/mojang/realmsclient/dto/RealmsWorldOptions/f_167292_ com/mojang/realmsclient/dto/RealmsWorldOptions/DEFAULT_SPAWN_ANIMALS +FD: com/mojang/realmsclient/dto/RealmsWorldOptions/f_167293_ com/mojang/realmsclient/dto/RealmsWorldOptions/DEFAULT_SPAWN_MONSTERS +FD: com/mojang/realmsclient/dto/RealmsWorldOptions/f_167294_ com/mojang/realmsclient/dto/RealmsWorldOptions/DEFAULT_SPAWN_NPCS +FD: com/mojang/realmsclient/dto/RealmsWorldOptions/f_167295_ com/mojang/realmsclient/dto/RealmsWorldOptions/DEFAULT_SPAWN_PROTECTION +FD: com/mojang/realmsclient/dto/RealmsWorldOptions/f_167296_ com/mojang/realmsclient/dto/RealmsWorldOptions/DEFAULT_COMMAND_BLOCKS +FD: com/mojang/realmsclient/dto/RealmsWorldOptions/f_167297_ com/mojang/realmsclient/dto/RealmsWorldOptions/DEFAULT_DIFFICULTY +FD: com/mojang/realmsclient/dto/RealmsWorldOptions/f_167298_ com/mojang/realmsclient/dto/RealmsWorldOptions/DEFAULT_GAME_MODE +FD: com/mojang/realmsclient/dto/RealmsWorldOptions/f_167299_ com/mojang/realmsclient/dto/RealmsWorldOptions/DEFAULT_SLOT_NAME +FD: com/mojang/realmsclient/dto/RealmsWorldOptions/f_167300_ com/mojang/realmsclient/dto/RealmsWorldOptions/DEFAULT_TEMPLATE_ID +FD: com/mojang/realmsclient/dto/RealmsWorldOptions/f_87598_ com/mojang/realmsclient/dto/RealmsWorldOptions/pvp +FD: com/mojang/realmsclient/dto/RealmsWorldOptions/f_87599_ com/mojang/realmsclient/dto/RealmsWorldOptions/spawnAnimals +FD: com/mojang/realmsclient/dto/RealmsWorldOptions/f_87600_ com/mojang/realmsclient/dto/RealmsWorldOptions/spawnMonsters +FD: com/mojang/realmsclient/dto/RealmsWorldOptions/f_87601_ com/mojang/realmsclient/dto/RealmsWorldOptions/spawnNPCs +FD: com/mojang/realmsclient/dto/RealmsWorldOptions/f_87602_ com/mojang/realmsclient/dto/RealmsWorldOptions/spawnProtection +FD: com/mojang/realmsclient/dto/RealmsWorldOptions/f_87603_ com/mojang/realmsclient/dto/RealmsWorldOptions/commandBlocks +FD: com/mojang/realmsclient/dto/RealmsWorldOptions/f_87604_ com/mojang/realmsclient/dto/RealmsWorldOptions/forceGameMode +FD: com/mojang/realmsclient/dto/RealmsWorldOptions/f_87605_ com/mojang/realmsclient/dto/RealmsWorldOptions/difficulty +FD: com/mojang/realmsclient/dto/RealmsWorldOptions/f_87606_ com/mojang/realmsclient/dto/RealmsWorldOptions/gameMode +FD: com/mojang/realmsclient/dto/RealmsWorldOptions/f_87607_ com/mojang/realmsclient/dto/RealmsWorldOptions/slotName +FD: com/mojang/realmsclient/dto/RealmsWorldOptions/f_87608_ com/mojang/realmsclient/dto/RealmsWorldOptions/templateId +FD: com/mojang/realmsclient/dto/RealmsWorldOptions/f_87609_ com/mojang/realmsclient/dto/RealmsWorldOptions/templateImage +FD: com/mojang/realmsclient/dto/RealmsWorldOptions/f_87611_ com/mojang/realmsclient/dto/RealmsWorldOptions/empty +FD: com/mojang/realmsclient/dto/RealmsWorldOptions/f_87612_ com/mojang/realmsclient/dto/RealmsWorldOptions/DEFAULT_TEMPLATE_IMAGE +FD: com/mojang/realmsclient/dto/RealmsWorldResetDto/f_87638_ com/mojang/realmsclient/dto/RealmsWorldResetDto/seed +FD: com/mojang/realmsclient/dto/RealmsWorldResetDto/f_87639_ com/mojang/realmsclient/dto/RealmsWorldResetDto/worldTemplateId +FD: com/mojang/realmsclient/dto/RealmsWorldResetDto/f_87640_ com/mojang/realmsclient/dto/RealmsWorldResetDto/levelType +FD: com/mojang/realmsclient/dto/RealmsWorldResetDto/f_87641_ com/mojang/realmsclient/dto/RealmsWorldResetDto/generateStructures +FD: com/mojang/realmsclient/dto/RegionPingResult/f_87647_ com/mojang/realmsclient/dto/RegionPingResult/regionName +FD: com/mojang/realmsclient/dto/RegionPingResult/f_87648_ com/mojang/realmsclient/dto/RegionPingResult/ping +FD: com/mojang/realmsclient/dto/ServerActivity/f_167312_ com/mojang/realmsclient/dto/ServerActivity/profileUuid +FD: com/mojang/realmsclient/dto/ServerActivity/f_167313_ com/mojang/realmsclient/dto/ServerActivity/joinTime +FD: com/mojang/realmsclient/dto/ServerActivity/f_167314_ com/mojang/realmsclient/dto/ServerActivity/leaveTime +FD: com/mojang/realmsclient/dto/ServerActivityList/f_167318_ com/mojang/realmsclient/dto/ServerActivityList/periodInMillis +FD: com/mojang/realmsclient/dto/ServerActivityList/f_167319_ com/mojang/realmsclient/dto/ServerActivityList/serverActivities +FD: com/mojang/realmsclient/dto/Subscription/f_87666_ com/mojang/realmsclient/dto/Subscription/startDate +FD: com/mojang/realmsclient/dto/Subscription/f_87667_ com/mojang/realmsclient/dto/Subscription/daysLeft +FD: com/mojang/realmsclient/dto/Subscription/f_87668_ com/mojang/realmsclient/dto/Subscription/type +FD: com/mojang/realmsclient/dto/Subscription/f_87669_ com/mojang/realmsclient/dto/Subscription/LOGGER +FD: com/mojang/realmsclient/dto/Subscription$SubscriptionType/$VALUES com/mojang/realmsclient/dto/Subscription$SubscriptionType/$VALUES +FD: com/mojang/realmsclient/dto/Subscription$SubscriptionType/NORMAL com/mojang/realmsclient/dto/Subscription$SubscriptionType/NORMAL +FD: com/mojang/realmsclient/dto/Subscription$SubscriptionType/RECURRING com/mojang/realmsclient/dto/Subscription$SubscriptionType/RECURRING +FD: com/mojang/realmsclient/dto/UploadInfo/f_167324_ com/mojang/realmsclient/dto/UploadInfo/DEFAULT_SCHEMA +FD: com/mojang/realmsclient/dto/UploadInfo/f_167325_ com/mojang/realmsclient/dto/UploadInfo/DEFAULT_PORT +FD: com/mojang/realmsclient/dto/UploadInfo/f_87686_ com/mojang/realmsclient/dto/UploadInfo/LOGGER +FD: com/mojang/realmsclient/dto/UploadInfo/f_87687_ com/mojang/realmsclient/dto/UploadInfo/URI_SCHEMA_PATTERN +FD: com/mojang/realmsclient/dto/UploadInfo/f_87688_ com/mojang/realmsclient/dto/UploadInfo/worldClosed +FD: com/mojang/realmsclient/dto/UploadInfo/f_87689_ com/mojang/realmsclient/dto/UploadInfo/token +FD: com/mojang/realmsclient/dto/UploadInfo/f_87690_ com/mojang/realmsclient/dto/UploadInfo/uploadEndpoint +FD: com/mojang/realmsclient/dto/WorldDownload/f_87718_ com/mojang/realmsclient/dto/WorldDownload/downloadLink +FD: com/mojang/realmsclient/dto/WorldDownload/f_87719_ com/mojang/realmsclient/dto/WorldDownload/resourcePackUrl +FD: com/mojang/realmsclient/dto/WorldDownload/f_87720_ com/mojang/realmsclient/dto/WorldDownload/resourcePackHash +FD: com/mojang/realmsclient/dto/WorldDownload/f_87721_ com/mojang/realmsclient/dto/WorldDownload/LOGGER +FD: com/mojang/realmsclient/dto/WorldTemplate/f_87726_ com/mojang/realmsclient/dto/WorldTemplate/id +FD: com/mojang/realmsclient/dto/WorldTemplate/f_87727_ com/mojang/realmsclient/dto/WorldTemplate/name +FD: com/mojang/realmsclient/dto/WorldTemplate/f_87728_ com/mojang/realmsclient/dto/WorldTemplate/version +FD: com/mojang/realmsclient/dto/WorldTemplate/f_87729_ com/mojang/realmsclient/dto/WorldTemplate/author +FD: com/mojang/realmsclient/dto/WorldTemplate/f_87730_ com/mojang/realmsclient/dto/WorldTemplate/link +FD: com/mojang/realmsclient/dto/WorldTemplate/f_87731_ com/mojang/realmsclient/dto/WorldTemplate/image +FD: com/mojang/realmsclient/dto/WorldTemplate/f_87732_ com/mojang/realmsclient/dto/WorldTemplate/trailer +FD: com/mojang/realmsclient/dto/WorldTemplate/f_87733_ com/mojang/realmsclient/dto/WorldTemplate/recommendedPlayers +FD: com/mojang/realmsclient/dto/WorldTemplate/f_87734_ com/mojang/realmsclient/dto/WorldTemplate/type +FD: com/mojang/realmsclient/dto/WorldTemplate/f_87735_ com/mojang/realmsclient/dto/WorldTemplate/LOGGER +FD: com/mojang/realmsclient/dto/WorldTemplate$WorldTemplateType/$VALUES com/mojang/realmsclient/dto/WorldTemplate$WorldTemplateType/$VALUES +FD: com/mojang/realmsclient/dto/WorldTemplate$WorldTemplateType/ADVENTUREMAP com/mojang/realmsclient/dto/WorldTemplate$WorldTemplateType/ADVENTUREMAP +FD: com/mojang/realmsclient/dto/WorldTemplate$WorldTemplateType/EXPERIENCE com/mojang/realmsclient/dto/WorldTemplate$WorldTemplateType/EXPERIENCE +FD: com/mojang/realmsclient/dto/WorldTemplate$WorldTemplateType/INSPIRATION com/mojang/realmsclient/dto/WorldTemplate$WorldTemplateType/INSPIRATION +FD: com/mojang/realmsclient/dto/WorldTemplate$WorldTemplateType/MINIGAME com/mojang/realmsclient/dto/WorldTemplate$WorldTemplateType/MINIGAME +FD: com/mojang/realmsclient/dto/WorldTemplate$WorldTemplateType/WORLD_TEMPLATE com/mojang/realmsclient/dto/WorldTemplate$WorldTemplateType/WORLD_TEMPLATE +FD: com/mojang/realmsclient/dto/WorldTemplatePaginatedList/f_87753_ com/mojang/realmsclient/dto/WorldTemplatePaginatedList/templates +FD: com/mojang/realmsclient/dto/WorldTemplatePaginatedList/f_87754_ com/mojang/realmsclient/dto/WorldTemplatePaginatedList/page +FD: com/mojang/realmsclient/dto/WorldTemplatePaginatedList/f_87755_ com/mojang/realmsclient/dto/WorldTemplatePaginatedList/size +FD: com/mojang/realmsclient/dto/WorldTemplatePaginatedList/f_87756_ com/mojang/realmsclient/dto/WorldTemplatePaginatedList/total +FD: com/mojang/realmsclient/dto/WorldTemplatePaginatedList/f_87757_ com/mojang/realmsclient/dto/WorldTemplatePaginatedList/LOGGER +FD: com/mojang/realmsclient/exception/RealmsDefaultUncaughtExceptionHandler/f_87764_ com/mojang/realmsclient/exception/RealmsDefaultUncaughtExceptionHandler/logger +FD: com/mojang/realmsclient/exception/RealmsServiceException/f_200940_ com/mojang/realmsclient/exception/RealmsServiceException/rawResponse +FD: com/mojang/realmsclient/exception/RealmsServiceException/f_200941_ com/mojang/realmsclient/exception/RealmsServiceException/realmsError +FD: com/mojang/realmsclient/exception/RealmsServiceException/f_87773_ com/mojang/realmsclient/exception/RealmsServiceException/httpResultCode +FD: com/mojang/realmsclient/exception/RetryCallException/f_167328_ com/mojang/realmsclient/exception/RetryCallException/DEFAULT_DELAY +FD: com/mojang/realmsclient/exception/RetryCallException/f_87787_ com/mojang/realmsclient/exception/RetryCallException/delaySeconds +FD: com/mojang/realmsclient/gui/RealmsDataFetcher/f_238549_ com/mojang/realmsclient/gui/RealmsDataFetcher/dataFetcher +FD: com/mojang/realmsclient/gui/RealmsDataFetcher/f_238681_ com/mojang/realmsclient/gui/RealmsDataFetcher/newsTask +FD: com/mojang/realmsclient/gui/RealmsDataFetcher/f_238709_ com/mojang/realmsclient/gui/RealmsDataFetcher/pendingInvitesTask +FD: com/mojang/realmsclient/gui/RealmsDataFetcher/f_238737_ com/mojang/realmsclient/gui/RealmsDataFetcher/newsManager +FD: com/mojang/realmsclient/gui/RealmsDataFetcher/f_273926_ com/mojang/realmsclient/gui/RealmsDataFetcher/notificationsTask +FD: com/mojang/realmsclient/gui/RealmsDataFetcher/f_87797_ com/mojang/realmsclient/gui/RealmsDataFetcher/serverListUpdateTask +FD: com/mojang/realmsclient/gui/RealmsDataFetcher/f_87799_ com/mojang/realmsclient/gui/RealmsDataFetcher/trialAvailabilityTask +FD: com/mojang/realmsclient/gui/RealmsDataFetcher/f_87800_ com/mojang/realmsclient/gui/RealmsDataFetcher/liveStatsTask +FD: com/mojang/realmsclient/gui/RealmsNewsManager/f_238573_ com/mojang/realmsclient/gui/RealmsNewsManager/newsLink +FD: com/mojang/realmsclient/gui/RealmsNewsManager/f_238804_ com/mojang/realmsclient/gui/RealmsNewsManager/newsLocalStorage +FD: com/mojang/realmsclient/gui/RealmsNewsManager/f_238831_ com/mojang/realmsclient/gui/RealmsNewsManager/hasUnreadNews +FD: com/mojang/realmsclient/gui/RealmsServerList/f_238560_ com/mojang/realmsclient/gui/RealmsServerList/removedServers +FD: com/mojang/realmsclient/gui/RealmsServerList/f_238634_ com/mojang/realmsclient/gui/RealmsServerList/minecraft +FD: com/mojang/realmsclient/gui/RealmsServerList/f_238698_ com/mojang/realmsclient/gui/RealmsServerList/servers +FD: com/mojang/realmsclient/gui/RealmsWorldSlotButton/f_231297_ com/mojang/realmsclient/gui/RealmsWorldSlotButton/CHECK_MARK_LOCATION +FD: com/mojang/realmsclient/gui/RealmsWorldSlotButton/f_286987_ com/mojang/realmsclient/gui/RealmsWorldSlotButton/MINIGAME +FD: com/mojang/realmsclient/gui/RealmsWorldSlotButton/f_87914_ com/mojang/realmsclient/gui/RealmsWorldSlotButton/slotIndex +FD: com/mojang/realmsclient/gui/RealmsWorldSlotButton/f_87916_ com/mojang/realmsclient/gui/RealmsWorldSlotButton/state +FD: com/mojang/realmsclient/gui/RealmsWorldSlotButton/f_87917_ com/mojang/realmsclient/gui/RealmsWorldSlotButton/SLOT_FRAME_LOCATION +FD: com/mojang/realmsclient/gui/RealmsWorldSlotButton/f_87918_ com/mojang/realmsclient/gui/RealmsWorldSlotButton/EMPTY_SLOT_LOCATION +FD: com/mojang/realmsclient/gui/RealmsWorldSlotButton/f_87919_ com/mojang/realmsclient/gui/RealmsWorldSlotButton/DEFAULT_WORLD_SLOT_1 +FD: com/mojang/realmsclient/gui/RealmsWorldSlotButton/f_87920_ com/mojang/realmsclient/gui/RealmsWorldSlotButton/DEFAULT_WORLD_SLOT_2 +FD: com/mojang/realmsclient/gui/RealmsWorldSlotButton/f_87921_ com/mojang/realmsclient/gui/RealmsWorldSlotButton/DEFAULT_WORLD_SLOT_3 +FD: com/mojang/realmsclient/gui/RealmsWorldSlotButton/f_87922_ com/mojang/realmsclient/gui/RealmsWorldSlotButton/SLOT_ACTIVE_TOOLTIP +FD: com/mojang/realmsclient/gui/RealmsWorldSlotButton/f_87923_ com/mojang/realmsclient/gui/RealmsWorldSlotButton/SWITCH_TO_MINIGAME_SLOT_TOOLTIP +FD: com/mojang/realmsclient/gui/RealmsWorldSlotButton/f_87924_ com/mojang/realmsclient/gui/RealmsWorldSlotButton/SWITCH_TO_WORLD_SLOT_TOOLTIP +FD: com/mojang/realmsclient/gui/RealmsWorldSlotButton/f_87925_ com/mojang/realmsclient/gui/RealmsWorldSlotButton/serverDataProvider +FD: com/mojang/realmsclient/gui/RealmsWorldSlotButton/f_87926_ com/mojang/realmsclient/gui/RealmsWorldSlotButton/toolTipSetter +FD: com/mojang/realmsclient/gui/RealmsWorldSlotButton$Action/$VALUES com/mojang/realmsclient/gui/RealmsWorldSlotButton$Action/$VALUES +FD: com/mojang/realmsclient/gui/RealmsWorldSlotButton$Action/JOIN com/mojang/realmsclient/gui/RealmsWorldSlotButton$Action/JOIN +FD: com/mojang/realmsclient/gui/RealmsWorldSlotButton$Action/NOTHING com/mojang/realmsclient/gui/RealmsWorldSlotButton$Action/NOTHING +FD: com/mojang/realmsclient/gui/RealmsWorldSlotButton$Action/SWITCH_SLOT com/mojang/realmsclient/gui/RealmsWorldSlotButton$Action/SWITCH_SLOT +FD: com/mojang/realmsclient/gui/RealmsWorldSlotButton$State/f_87980_ com/mojang/realmsclient/gui/RealmsWorldSlotButton$State/empty +FD: com/mojang/realmsclient/gui/RealmsWorldSlotButton$State/f_87981_ com/mojang/realmsclient/gui/RealmsWorldSlotButton$State/minigame +FD: com/mojang/realmsclient/gui/RealmsWorldSlotButton$State/f_87982_ com/mojang/realmsclient/gui/RealmsWorldSlotButton$State/action +FD: com/mojang/realmsclient/gui/RealmsWorldSlotButton$State/f_87983_ com/mojang/realmsclient/gui/RealmsWorldSlotButton$State/isCurrentlyActiveSlot +FD: com/mojang/realmsclient/gui/RealmsWorldSlotButton$State/f_87984_ com/mojang/realmsclient/gui/RealmsWorldSlotButton$State/slotName +FD: com/mojang/realmsclient/gui/RealmsWorldSlotButton$State/f_87985_ com/mojang/realmsclient/gui/RealmsWorldSlotButton$State/imageId +FD: com/mojang/realmsclient/gui/RealmsWorldSlotButton$State/f_87986_ com/mojang/realmsclient/gui/RealmsWorldSlotButton$State/image +FD: com/mojang/realmsclient/gui/RealmsWorldSlotButton$State/f_87987_ com/mojang/realmsclient/gui/RealmsWorldSlotButton$State/actionPrompt +FD: com/mojang/realmsclient/gui/RowButton/f_88007_ com/mojang/realmsclient/gui/RowButton/width +FD: com/mojang/realmsclient/gui/RowButton/f_88008_ com/mojang/realmsclient/gui/RowButton/height +FD: com/mojang/realmsclient/gui/RowButton/f_88009_ com/mojang/realmsclient/gui/RowButton/xOffset +FD: com/mojang/realmsclient/gui/RowButton/f_88010_ com/mojang/realmsclient/gui/RowButton/yOffset +FD: com/mojang/realmsclient/gui/screens/RealmsBackupInfoScreen/f_167352_ com/mojang/realmsclient/gui/screens/RealmsBackupInfoScreen/UNKNOWN +FD: com/mojang/realmsclient/gui/screens/RealmsBackupInfoScreen/f_88044_ com/mojang/realmsclient/gui/screens/RealmsBackupInfoScreen/lastScreen +FD: com/mojang/realmsclient/gui/screens/RealmsBackupInfoScreen/f_88045_ com/mojang/realmsclient/gui/screens/RealmsBackupInfoScreen/backup +FD: com/mojang/realmsclient/gui/screens/RealmsBackupInfoScreen/f_88046_ com/mojang/realmsclient/gui/screens/RealmsBackupInfoScreen/backupInfoList +FD: com/mojang/realmsclient/gui/screens/RealmsBackupInfoScreen$BackupInfoList/f_88079_ com/mojang/realmsclient/gui/screens/RealmsBackupInfoScreen$BackupInfoList/this$0 +FD: com/mojang/realmsclient/gui/screens/RealmsBackupInfoScreen$BackupInfoListEntry/f_286932_ com/mojang/realmsclient/gui/screens/RealmsBackupInfoScreen$BackupInfoListEntry/WORLD_TYPE +FD: com/mojang/realmsclient/gui/screens/RealmsBackupInfoScreen$BackupInfoListEntry/f_286935_ com/mojang/realmsclient/gui/screens/RealmsBackupInfoScreen$BackupInfoListEntry/NAME +FD: com/mojang/realmsclient/gui/screens/RealmsBackupInfoScreen$BackupInfoListEntry/f_286941_ com/mojang/realmsclient/gui/screens/RealmsBackupInfoScreen$BackupInfoListEntry/SEED +FD: com/mojang/realmsclient/gui/screens/RealmsBackupInfoScreen$BackupInfoListEntry/f_286952_ com/mojang/realmsclient/gui/screens/RealmsBackupInfoScreen$BackupInfoListEntry/DESCRIPTION +FD: com/mojang/realmsclient/gui/screens/RealmsBackupInfoScreen$BackupInfoListEntry/f_286960_ com/mojang/realmsclient/gui/screens/RealmsBackupInfoScreen$BackupInfoListEntry/GAME_SERVER_VERSION +FD: com/mojang/realmsclient/gui/screens/RealmsBackupInfoScreen$BackupInfoListEntry/f_286961_ com/mojang/realmsclient/gui/screens/RealmsBackupInfoScreen$BackupInfoListEntry/UPLOADED +FD: com/mojang/realmsclient/gui/screens/RealmsBackupInfoScreen$BackupInfoListEntry/f_286970_ com/mojang/realmsclient/gui/screens/RealmsBackupInfoScreen$BackupInfoListEntry/ENABLED_PACK +FD: com/mojang/realmsclient/gui/screens/RealmsBackupInfoScreen$BackupInfoListEntry/f_286974_ com/mojang/realmsclient/gui/screens/RealmsBackupInfoScreen$BackupInfoListEntry/TEMPLATE_NAME +FD: com/mojang/realmsclient/gui/screens/RealmsBackupInfoScreen$BackupInfoListEntry/f_286978_ com/mojang/realmsclient/gui/screens/RealmsBackupInfoScreen$BackupInfoListEntry/GAME_DIFFICULTY +FD: com/mojang/realmsclient/gui/screens/RealmsBackupInfoScreen$BackupInfoListEntry/f_286990_ com/mojang/realmsclient/gui/screens/RealmsBackupInfoScreen$BackupInfoListEntry/GAME_MODE +FD: com/mojang/realmsclient/gui/screens/RealmsBackupInfoScreen$BackupInfoListEntry/f_287001_ com/mojang/realmsclient/gui/screens/RealmsBackupInfoScreen$BackupInfoListEntry/UNDEFINED +FD: com/mojang/realmsclient/gui/screens/RealmsBackupInfoScreen$BackupInfoListEntry/f_88086_ com/mojang/realmsclient/gui/screens/RealmsBackupInfoScreen$BackupInfoListEntry/this$0 +FD: com/mojang/realmsclient/gui/screens/RealmsBackupInfoScreen$BackupInfoListEntry/f_88087_ com/mojang/realmsclient/gui/screens/RealmsBackupInfoScreen$BackupInfoListEntry/key +FD: com/mojang/realmsclient/gui/screens/RealmsBackupInfoScreen$BackupInfoListEntry/f_88088_ com/mojang/realmsclient/gui/screens/RealmsBackupInfoScreen$BackupInfoListEntry/value +FD: com/mojang/realmsclient/gui/screens/RealmsBackupScreen/f_167355_ com/mojang/realmsclient/gui/screens/RealmsBackupScreen/UPLOADED_KEY +FD: com/mojang/realmsclient/gui/screens/RealmsBackupScreen/f_88104_ com/mojang/realmsclient/gui/screens/RealmsBackupScreen/downloadButton +FD: com/mojang/realmsclient/gui/screens/RealmsBackupScreen/f_88105_ com/mojang/realmsclient/gui/screens/RealmsBackupScreen/restoreButton +FD: com/mojang/realmsclient/gui/screens/RealmsBackupScreen/f_88106_ com/mojang/realmsclient/gui/screens/RealmsBackupScreen/changesButton +FD: com/mojang/realmsclient/gui/screens/RealmsBackupScreen/f_88107_ com/mojang/realmsclient/gui/screens/RealmsBackupScreen/noBackups +FD: com/mojang/realmsclient/gui/screens/RealmsBackupScreen/f_88108_ com/mojang/realmsclient/gui/screens/RealmsBackupScreen/serverData +FD: com/mojang/realmsclient/gui/screens/RealmsBackupScreen/f_88110_ com/mojang/realmsclient/gui/screens/RealmsBackupScreen/LOGGER +FD: com/mojang/realmsclient/gui/screens/RealmsBackupScreen/f_88111_ com/mojang/realmsclient/gui/screens/RealmsBackupScreen/PLUS_ICON_LOCATION +FD: com/mojang/realmsclient/gui/screens/RealmsBackupScreen/f_88112_ com/mojang/realmsclient/gui/screens/RealmsBackupScreen/RESTORE_ICON_LOCATION +FD: com/mojang/realmsclient/gui/screens/RealmsBackupScreen/f_88113_ com/mojang/realmsclient/gui/screens/RealmsBackupScreen/RESTORE_TOOLTIP +FD: com/mojang/realmsclient/gui/screens/RealmsBackupScreen/f_88114_ com/mojang/realmsclient/gui/screens/RealmsBackupScreen/HAS_CHANGES_TOOLTIP +FD: com/mojang/realmsclient/gui/screens/RealmsBackupScreen/f_88115_ com/mojang/realmsclient/gui/screens/RealmsBackupScreen/TITLE +FD: com/mojang/realmsclient/gui/screens/RealmsBackupScreen/f_88116_ com/mojang/realmsclient/gui/screens/RealmsBackupScreen/NO_BACKUPS_LABEL +FD: com/mojang/realmsclient/gui/screens/RealmsBackupScreen/f_88118_ com/mojang/realmsclient/gui/screens/RealmsBackupScreen/lastScreen +FD: com/mojang/realmsclient/gui/screens/RealmsBackupScreen/f_88119_ com/mojang/realmsclient/gui/screens/RealmsBackupScreen/backups +FD: com/mojang/realmsclient/gui/screens/RealmsBackupScreen/f_88121_ com/mojang/realmsclient/gui/screens/RealmsBackupScreen/backupObjectSelectionList +FD: com/mojang/realmsclient/gui/screens/RealmsBackupScreen/f_88122_ com/mojang/realmsclient/gui/screens/RealmsBackupScreen/selectedBackup +FD: com/mojang/realmsclient/gui/screens/RealmsBackupScreen/f_88123_ com/mojang/realmsclient/gui/screens/RealmsBackupScreen/slotId +FD: com/mojang/realmsclient/gui/screens/RealmsBackupScreen$1/f_88210_ com/mojang/realmsclient/gui/screens/RealmsBackupScreen$1/this$0 +FD: com/mojang/realmsclient/gui/screens/RealmsBackupScreen$BackupObjectSelectionList/f_88217_ com/mojang/realmsclient/gui/screens/RealmsBackupScreen$BackupObjectSelectionList/this$0 +FD: com/mojang/realmsclient/gui/screens/RealmsBackupScreen$Entry/f_278378_ com/mojang/realmsclient/gui/screens/RealmsBackupScreen$Entry/restoreButton +FD: com/mojang/realmsclient/gui/screens/RealmsBackupScreen$Entry/f_278387_ com/mojang/realmsclient/gui/screens/RealmsBackupScreen$Entry/X_PADDING +FD: com/mojang/realmsclient/gui/screens/RealmsBackupScreen$Entry/f_278395_ com/mojang/realmsclient/gui/screens/RealmsBackupScreen$Entry/Y_PADDING +FD: com/mojang/realmsclient/gui/screens/RealmsBackupScreen$Entry/f_278436_ com/mojang/realmsclient/gui/screens/RealmsBackupScreen$Entry/children +FD: com/mojang/realmsclient/gui/screens/RealmsBackupScreen$Entry/f_278470_ com/mojang/realmsclient/gui/screens/RealmsBackupScreen$Entry/changesButton +FD: com/mojang/realmsclient/gui/screens/RealmsBackupScreen$Entry/f_88246_ com/mojang/realmsclient/gui/screens/RealmsBackupScreen$Entry/this$0 +FD: com/mojang/realmsclient/gui/screens/RealmsBackupScreen$Entry/f_88247_ com/mojang/realmsclient/gui/screens/RealmsBackupScreen$Entry/backup +FD: com/mojang/realmsclient/gui/screens/RealmsBrokenWorldScreen/f_167363_ com/mojang/realmsclient/gui/screens/RealmsBrokenWorldScreen/DEFAULT_BUTTON_WIDTH +FD: com/mojang/realmsclient/gui/screens/RealmsBrokenWorldScreen/f_88283_ com/mojang/realmsclient/gui/screens/RealmsBrokenWorldScreen/LOGGER +FD: com/mojang/realmsclient/gui/screens/RealmsBrokenWorldScreen/f_88284_ com/mojang/realmsclient/gui/screens/RealmsBrokenWorldScreen/lastScreen +FD: com/mojang/realmsclient/gui/screens/RealmsBrokenWorldScreen/f_88285_ com/mojang/realmsclient/gui/screens/RealmsBrokenWorldScreen/mainScreen +FD: com/mojang/realmsclient/gui/screens/RealmsBrokenWorldScreen/f_88286_ com/mojang/realmsclient/gui/screens/RealmsBrokenWorldScreen/serverData +FD: com/mojang/realmsclient/gui/screens/RealmsBrokenWorldScreen/f_88287_ com/mojang/realmsclient/gui/screens/RealmsBrokenWorldScreen/serverId +FD: com/mojang/realmsclient/gui/screens/RealmsBrokenWorldScreen/f_88289_ com/mojang/realmsclient/gui/screens/RealmsBrokenWorldScreen/message +FD: com/mojang/realmsclient/gui/screens/RealmsBrokenWorldScreen/f_88290_ com/mojang/realmsclient/gui/screens/RealmsBrokenWorldScreen/leftX +FD: com/mojang/realmsclient/gui/screens/RealmsBrokenWorldScreen/f_88291_ com/mojang/realmsclient/gui/screens/RealmsBrokenWorldScreen/rightX +FD: com/mojang/realmsclient/gui/screens/RealmsBrokenWorldScreen/f_88292_ com/mojang/realmsclient/gui/screens/RealmsBrokenWorldScreen/slotsThatHasBeenDownloaded +FD: com/mojang/realmsclient/gui/screens/RealmsBrokenWorldScreen/f_88293_ com/mojang/realmsclient/gui/screens/RealmsBrokenWorldScreen/animTick +FD: com/mojang/realmsclient/gui/screens/RealmsClientOutdatedScreen/f_231302_ com/mojang/realmsclient/gui/screens/RealmsClientOutdatedScreen/INCOMPATIBLE_MESSAGES_SNAPSHOT +FD: com/mojang/realmsclient/gui/screens/RealmsClientOutdatedScreen/f_88360_ com/mojang/realmsclient/gui/screens/RealmsClientOutdatedScreen/INCOMPATIBLE_TITLE +FD: com/mojang/realmsclient/gui/screens/RealmsClientOutdatedScreen/f_88361_ com/mojang/realmsclient/gui/screens/RealmsClientOutdatedScreen/INCOMPATIBLE_MESSAGES +FD: com/mojang/realmsclient/gui/screens/RealmsClientOutdatedScreen/f_88362_ com/mojang/realmsclient/gui/screens/RealmsClientOutdatedScreen/lastScreen +FD: com/mojang/realmsclient/gui/screens/RealmsConfigureWorldScreen/f_167372_ com/mojang/realmsclient/gui/screens/RealmsConfigureWorldScreen/WORLD_LIST_TITLE +FD: com/mojang/realmsclient/gui/screens/RealmsConfigureWorldScreen/f_167373_ com/mojang/realmsclient/gui/screens/RealmsConfigureWorldScreen/DEFAULT_BUTTON_WIDTH +FD: com/mojang/realmsclient/gui/screens/RealmsConfigureWorldScreen/f_167374_ com/mojang/realmsclient/gui/screens/RealmsConfigureWorldScreen/DEFAULT_BUTTON_OFFSET +FD: com/mojang/realmsclient/gui/screens/RealmsConfigureWorldScreen/f_167375_ com/mojang/realmsclient/gui/screens/RealmsConfigureWorldScreen/slotButtonList +FD: com/mojang/realmsclient/gui/screens/RealmsConfigureWorldScreen/f_88380_ com/mojang/realmsclient/gui/screens/RealmsConfigureWorldScreen/lastScreen +FD: com/mojang/realmsclient/gui/screens/RealmsConfigureWorldScreen/f_88381_ com/mojang/realmsclient/gui/screens/RealmsConfigureWorldScreen/serverData +FD: com/mojang/realmsclient/gui/screens/RealmsConfigureWorldScreen/f_88382_ com/mojang/realmsclient/gui/screens/RealmsConfigureWorldScreen/serverId +FD: com/mojang/realmsclient/gui/screens/RealmsConfigureWorldScreen/f_88383_ com/mojang/realmsclient/gui/screens/RealmsConfigureWorldScreen/leftX +FD: com/mojang/realmsclient/gui/screens/RealmsConfigureWorldScreen/f_88384_ com/mojang/realmsclient/gui/screens/RealmsConfigureWorldScreen/rightX +FD: com/mojang/realmsclient/gui/screens/RealmsConfigureWorldScreen/f_88385_ com/mojang/realmsclient/gui/screens/RealmsConfigureWorldScreen/playersButton +FD: com/mojang/realmsclient/gui/screens/RealmsConfigureWorldScreen/f_88386_ com/mojang/realmsclient/gui/screens/RealmsConfigureWorldScreen/settingsButton +FD: com/mojang/realmsclient/gui/screens/RealmsConfigureWorldScreen/f_88387_ com/mojang/realmsclient/gui/screens/RealmsConfigureWorldScreen/subscriptionButton +FD: com/mojang/realmsclient/gui/screens/RealmsConfigureWorldScreen/f_88388_ com/mojang/realmsclient/gui/screens/RealmsConfigureWorldScreen/optionsButton +FD: com/mojang/realmsclient/gui/screens/RealmsConfigureWorldScreen/f_88389_ com/mojang/realmsclient/gui/screens/RealmsConfigureWorldScreen/backupButton +FD: com/mojang/realmsclient/gui/screens/RealmsConfigureWorldScreen/f_88390_ com/mojang/realmsclient/gui/screens/RealmsConfigureWorldScreen/resetWorldButton +FD: com/mojang/realmsclient/gui/screens/RealmsConfigureWorldScreen/f_88391_ com/mojang/realmsclient/gui/screens/RealmsConfigureWorldScreen/switchMinigameButton +FD: com/mojang/realmsclient/gui/screens/RealmsConfigureWorldScreen/f_88392_ com/mojang/realmsclient/gui/screens/RealmsConfigureWorldScreen/stateChanged +FD: com/mojang/realmsclient/gui/screens/RealmsConfigureWorldScreen/f_88393_ com/mojang/realmsclient/gui/screens/RealmsConfigureWorldScreen/animTick +FD: com/mojang/realmsclient/gui/screens/RealmsConfigureWorldScreen/f_88394_ com/mojang/realmsclient/gui/screens/RealmsConfigureWorldScreen/clicks +FD: com/mojang/realmsclient/gui/screens/RealmsConfigureWorldScreen/f_88395_ com/mojang/realmsclient/gui/screens/RealmsConfigureWorldScreen/LOGGER +FD: com/mojang/realmsclient/gui/screens/RealmsConfigureWorldScreen/f_88396_ com/mojang/realmsclient/gui/screens/RealmsConfigureWorldScreen/ON_ICON_LOCATION +FD: com/mojang/realmsclient/gui/screens/RealmsConfigureWorldScreen/f_88397_ com/mojang/realmsclient/gui/screens/RealmsConfigureWorldScreen/OFF_ICON_LOCATION +FD: com/mojang/realmsclient/gui/screens/RealmsConfigureWorldScreen/f_88398_ com/mojang/realmsclient/gui/screens/RealmsConfigureWorldScreen/EXPIRED_ICON_LOCATION +FD: com/mojang/realmsclient/gui/screens/RealmsConfigureWorldScreen/f_88399_ com/mojang/realmsclient/gui/screens/RealmsConfigureWorldScreen/EXPIRES_SOON_ICON_LOCATION +FD: com/mojang/realmsclient/gui/screens/RealmsConfigureWorldScreen/f_88400_ com/mojang/realmsclient/gui/screens/RealmsConfigureWorldScreen/TITLE +FD: com/mojang/realmsclient/gui/screens/RealmsConfigureWorldScreen/f_88403_ com/mojang/realmsclient/gui/screens/RealmsConfigureWorldScreen/SERVER_EXPIRED_TOOLTIP +FD: com/mojang/realmsclient/gui/screens/RealmsConfigureWorldScreen/f_88404_ com/mojang/realmsclient/gui/screens/RealmsConfigureWorldScreen/SERVER_EXPIRING_SOON_TOOLTIP +FD: com/mojang/realmsclient/gui/screens/RealmsConfigureWorldScreen/f_88405_ com/mojang/realmsclient/gui/screens/RealmsConfigureWorldScreen/SERVER_EXPIRING_IN_DAY_TOOLTIP +FD: com/mojang/realmsclient/gui/screens/RealmsConfigureWorldScreen/f_88406_ com/mojang/realmsclient/gui/screens/RealmsConfigureWorldScreen/SERVER_OPEN_TOOLTIP +FD: com/mojang/realmsclient/gui/screens/RealmsConfigureWorldScreen/f_88407_ com/mojang/realmsclient/gui/screens/RealmsConfigureWorldScreen/SERVER_CLOSED_TOOLTIP +FD: com/mojang/realmsclient/gui/screens/RealmsConfigureWorldScreen/f_88408_ com/mojang/realmsclient/gui/screens/RealmsConfigureWorldScreen/toolTip +FD: com/mojang/realmsclient/gui/screens/RealmsConfigureWorldScreen$1/f_88543_ com/mojang/realmsclient/gui/screens/RealmsConfigureWorldScreen$1/$SwitchMap$com$mojang$realmsclient$gui$RealmsWorldSlotButton$Action +FD: com/mojang/realmsclient/gui/screens/RealmsConfirmScreen/f_88545_ com/mojang/realmsclient/gui/screens/RealmsConfirmScreen/callback +FD: com/mojang/realmsclient/gui/screens/RealmsConfirmScreen/f_88546_ com/mojang/realmsclient/gui/screens/RealmsConfirmScreen/title1 +FD: com/mojang/realmsclient/gui/screens/RealmsConfirmScreen/f_88547_ com/mojang/realmsclient/gui/screens/RealmsConfirmScreen/title2 +FD: com/mojang/realmsclient/gui/screens/RealmsCreateRealmScreen/f_88564_ com/mojang/realmsclient/gui/screens/RealmsCreateRealmScreen/NAME_LABEL +FD: com/mojang/realmsclient/gui/screens/RealmsCreateRealmScreen/f_88565_ com/mojang/realmsclient/gui/screens/RealmsCreateRealmScreen/DESCRIPTION_LABEL +FD: com/mojang/realmsclient/gui/screens/RealmsCreateRealmScreen/f_88566_ com/mojang/realmsclient/gui/screens/RealmsCreateRealmScreen/server +FD: com/mojang/realmsclient/gui/screens/RealmsCreateRealmScreen/f_88567_ com/mojang/realmsclient/gui/screens/RealmsCreateRealmScreen/lastScreen +FD: com/mojang/realmsclient/gui/screens/RealmsCreateRealmScreen/f_88568_ com/mojang/realmsclient/gui/screens/RealmsCreateRealmScreen/nameBox +FD: com/mojang/realmsclient/gui/screens/RealmsCreateRealmScreen/f_88569_ com/mojang/realmsclient/gui/screens/RealmsCreateRealmScreen/descriptionBox +FD: com/mojang/realmsclient/gui/screens/RealmsCreateRealmScreen/f_88570_ com/mojang/realmsclient/gui/screens/RealmsCreateRealmScreen/createButton +FD: com/mojang/realmsclient/gui/screens/RealmsDownloadLatestWorldScreen/f_263743_ com/mojang/realmsclient/gui/screens/RealmsDownloadLatestWorldScreen/BAR_TOP +FD: com/mojang/realmsclient/gui/screens/RealmsDownloadLatestWorldScreen/f_263771_ com/mojang/realmsclient/gui/screens/RealmsDownloadLatestWorldScreen/BAR_BORDER +FD: com/mojang/realmsclient/gui/screens/RealmsDownloadLatestWorldScreen/f_263777_ com/mojang/realmsclient/gui/screens/RealmsDownloadLatestWorldScreen/BAR_BOTTOM +FD: com/mojang/realmsclient/gui/screens/RealmsDownloadLatestWorldScreen/f_263827_ com/mojang/realmsclient/gui/screens/RealmsDownloadLatestWorldScreen/BAR_WIDTH +FD: com/mojang/realmsclient/gui/screens/RealmsDownloadLatestWorldScreen/f_88599_ com/mojang/realmsclient/gui/screens/RealmsDownloadLatestWorldScreen/finished +FD: com/mojang/realmsclient/gui/screens/RealmsDownloadLatestWorldScreen/f_88600_ com/mojang/realmsclient/gui/screens/RealmsDownloadLatestWorldScreen/extracting +FD: com/mojang/realmsclient/gui/screens/RealmsDownloadLatestWorldScreen/f_88601_ com/mojang/realmsclient/gui/screens/RealmsDownloadLatestWorldScreen/previousWrittenBytes +FD: com/mojang/realmsclient/gui/screens/RealmsDownloadLatestWorldScreen/f_88602_ com/mojang/realmsclient/gui/screens/RealmsDownloadLatestWorldScreen/previousTimeSnapshot +FD: com/mojang/realmsclient/gui/screens/RealmsDownloadLatestWorldScreen/f_88603_ com/mojang/realmsclient/gui/screens/RealmsDownloadLatestWorldScreen/bytesPersSecond +FD: com/mojang/realmsclient/gui/screens/RealmsDownloadLatestWorldScreen/f_88604_ com/mojang/realmsclient/gui/screens/RealmsDownloadLatestWorldScreen/animTick +FD: com/mojang/realmsclient/gui/screens/RealmsDownloadLatestWorldScreen/f_88605_ com/mojang/realmsclient/gui/screens/RealmsDownloadLatestWorldScreen/DOTS +FD: com/mojang/realmsclient/gui/screens/RealmsDownloadLatestWorldScreen/f_88606_ com/mojang/realmsclient/gui/screens/RealmsDownloadLatestWorldScreen/dotIndex +FD: com/mojang/realmsclient/gui/screens/RealmsDownloadLatestWorldScreen/f_88607_ com/mojang/realmsclient/gui/screens/RealmsDownloadLatestWorldScreen/checked +FD: com/mojang/realmsclient/gui/screens/RealmsDownloadLatestWorldScreen/f_88608_ com/mojang/realmsclient/gui/screens/RealmsDownloadLatestWorldScreen/callback +FD: com/mojang/realmsclient/gui/screens/RealmsDownloadLatestWorldScreen/f_88609_ com/mojang/realmsclient/gui/screens/RealmsDownloadLatestWorldScreen/LOGGER +FD: com/mojang/realmsclient/gui/screens/RealmsDownloadLatestWorldScreen/f_88610_ com/mojang/realmsclient/gui/screens/RealmsDownloadLatestWorldScreen/DOWNLOAD_LOCK +FD: com/mojang/realmsclient/gui/screens/RealmsDownloadLatestWorldScreen/f_88611_ com/mojang/realmsclient/gui/screens/RealmsDownloadLatestWorldScreen/lastScreen +FD: com/mojang/realmsclient/gui/screens/RealmsDownloadLatestWorldScreen/f_88612_ com/mojang/realmsclient/gui/screens/RealmsDownloadLatestWorldScreen/worldDownload +FD: com/mojang/realmsclient/gui/screens/RealmsDownloadLatestWorldScreen/f_88613_ com/mojang/realmsclient/gui/screens/RealmsDownloadLatestWorldScreen/downloadTitle +FD: com/mojang/realmsclient/gui/screens/RealmsDownloadLatestWorldScreen/f_88614_ com/mojang/realmsclient/gui/screens/RealmsDownloadLatestWorldScreen/narrationRateLimiter +FD: com/mojang/realmsclient/gui/screens/RealmsDownloadLatestWorldScreen/f_88615_ com/mojang/realmsclient/gui/screens/RealmsDownloadLatestWorldScreen/cancelButton +FD: com/mojang/realmsclient/gui/screens/RealmsDownloadLatestWorldScreen/f_88616_ com/mojang/realmsclient/gui/screens/RealmsDownloadLatestWorldScreen/worldName +FD: com/mojang/realmsclient/gui/screens/RealmsDownloadLatestWorldScreen/f_88617_ com/mojang/realmsclient/gui/screens/RealmsDownloadLatestWorldScreen/downloadStatus +FD: com/mojang/realmsclient/gui/screens/RealmsDownloadLatestWorldScreen/f_88618_ com/mojang/realmsclient/gui/screens/RealmsDownloadLatestWorldScreen/errorMessage +FD: com/mojang/realmsclient/gui/screens/RealmsDownloadLatestWorldScreen/f_88619_ com/mojang/realmsclient/gui/screens/RealmsDownloadLatestWorldScreen/status +FD: com/mojang/realmsclient/gui/screens/RealmsDownloadLatestWorldScreen/f_88620_ com/mojang/realmsclient/gui/screens/RealmsDownloadLatestWorldScreen/progress +FD: com/mojang/realmsclient/gui/screens/RealmsDownloadLatestWorldScreen/f_88621_ com/mojang/realmsclient/gui/screens/RealmsDownloadLatestWorldScreen/cancelled +FD: com/mojang/realmsclient/gui/screens/RealmsDownloadLatestWorldScreen/f_88622_ com/mojang/realmsclient/gui/screens/RealmsDownloadLatestWorldScreen/showDots +FD: com/mojang/realmsclient/gui/screens/RealmsDownloadLatestWorldScreen$DownloadStatus/f_88660_ com/mojang/realmsclient/gui/screens/RealmsDownloadLatestWorldScreen$DownloadStatus/bytesWritten +FD: com/mojang/realmsclient/gui/screens/RealmsDownloadLatestWorldScreen$DownloadStatus/f_88661_ com/mojang/realmsclient/gui/screens/RealmsDownloadLatestWorldScreen$DownloadStatus/totalBytes +FD: com/mojang/realmsclient/gui/screens/RealmsGenericErrorScreen/f_200947_ com/mojang/realmsclient/gui/screens/RealmsGenericErrorScreen/lines +FD: com/mojang/realmsclient/gui/screens/RealmsGenericErrorScreen/f_200948_ com/mojang/realmsclient/gui/screens/RealmsGenericErrorScreen/line2Split +FD: com/mojang/realmsclient/gui/screens/RealmsGenericErrorScreen/f_88665_ com/mojang/realmsclient/gui/screens/RealmsGenericErrorScreen/nextScreen +FD: com/mojang/realmsclient/gui/screens/RealmsGenericErrorScreen$ErrorMessage/f_287787_ com/mojang/realmsclient/gui/screens/RealmsGenericErrorScreen$ErrorMessage/detail +FD: com/mojang/realmsclient/gui/screens/RealmsGenericErrorScreen$ErrorMessage/f_287789_ com/mojang/realmsclient/gui/screens/RealmsGenericErrorScreen$ErrorMessage/title +FD: com/mojang/realmsclient/gui/screens/RealmsInviteScreen/f_289575_ com/mojang/realmsclient/gui/screens/RealmsInviteScreen/message +FD: com/mojang/realmsclient/gui/screens/RealmsInviteScreen/f_289576_ com/mojang/realmsclient/gui/screens/RealmsInviteScreen/inviteButton +FD: com/mojang/realmsclient/gui/screens/RealmsInviteScreen/f_289578_ com/mojang/realmsclient/gui/screens/RealmsInviteScreen/INVITING_PLAYER_TEXT +FD: com/mojang/realmsclient/gui/screens/RealmsInviteScreen/f_88693_ com/mojang/realmsclient/gui/screens/RealmsInviteScreen/LOGGER +FD: com/mojang/realmsclient/gui/screens/RealmsInviteScreen/f_88694_ com/mojang/realmsclient/gui/screens/RealmsInviteScreen/NAME_LABEL +FD: com/mojang/realmsclient/gui/screens/RealmsInviteScreen/f_88695_ com/mojang/realmsclient/gui/screens/RealmsInviteScreen/NO_SUCH_PLAYER_ERROR_TEXT +FD: com/mojang/realmsclient/gui/screens/RealmsInviteScreen/f_88696_ com/mojang/realmsclient/gui/screens/RealmsInviteScreen/profileName +FD: com/mojang/realmsclient/gui/screens/RealmsInviteScreen/f_88697_ com/mojang/realmsclient/gui/screens/RealmsInviteScreen/serverData +FD: com/mojang/realmsclient/gui/screens/RealmsInviteScreen/f_88698_ com/mojang/realmsclient/gui/screens/RealmsInviteScreen/configureScreen +FD: com/mojang/realmsclient/gui/screens/RealmsInviteScreen/f_88699_ com/mojang/realmsclient/gui/screens/RealmsInviteScreen/lastScreen +FD: com/mojang/realmsclient/gui/screens/RealmsLongConfirmationScreen/f_286953_ com/mojang/realmsclient/gui/screens/RealmsLongConfirmationScreen/WARNING +FD: com/mojang/realmsclient/gui/screens/RealmsLongConfirmationScreen/f_286975_ com/mojang/realmsclient/gui/screens/RealmsLongConfirmationScreen/INFO +FD: com/mojang/realmsclient/gui/screens/RealmsLongConfirmationScreen/f_88725_ com/mojang/realmsclient/gui/screens/RealmsLongConfirmationScreen/callback +FD: com/mojang/realmsclient/gui/screens/RealmsLongConfirmationScreen/f_88726_ com/mojang/realmsclient/gui/screens/RealmsLongConfirmationScreen/type +FD: com/mojang/realmsclient/gui/screens/RealmsLongConfirmationScreen/f_88727_ com/mojang/realmsclient/gui/screens/RealmsLongConfirmationScreen/line2 +FD: com/mojang/realmsclient/gui/screens/RealmsLongConfirmationScreen/f_88728_ com/mojang/realmsclient/gui/screens/RealmsLongConfirmationScreen/line3 +FD: com/mojang/realmsclient/gui/screens/RealmsLongConfirmationScreen/f_88729_ com/mojang/realmsclient/gui/screens/RealmsLongConfirmationScreen/yesNoQuestion +FD: com/mojang/realmsclient/gui/screens/RealmsLongConfirmationScreen$Type/$VALUES com/mojang/realmsclient/gui/screens/RealmsLongConfirmationScreen$Type/$VALUES +FD: com/mojang/realmsclient/gui/screens/RealmsLongConfirmationScreen$Type/INFO com/mojang/realmsclient/gui/screens/RealmsLongConfirmationScreen$Type/INFO +FD: com/mojang/realmsclient/gui/screens/RealmsLongConfirmationScreen$Type/WARNING com/mojang/realmsclient/gui/screens/RealmsLongConfirmationScreen$Type/WARNING +FD: com/mojang/realmsclient/gui/screens/RealmsLongConfirmationScreen$Type/f_88754_ com/mojang/realmsclient/gui/screens/RealmsLongConfirmationScreen$Type/colorCode +FD: com/mojang/realmsclient/gui/screens/RealmsLongConfirmationScreen$Type/f_88755_ com/mojang/realmsclient/gui/screens/RealmsLongConfirmationScreen$Type/text +FD: com/mojang/realmsclient/gui/screens/RealmsLongRunningMcoTaskScreen/f_167413_ com/mojang/realmsclient/gui/screens/RealmsLongRunningMcoTaskScreen/cancelOrBackButton +FD: com/mojang/realmsclient/gui/screens/RealmsLongRunningMcoTaskScreen/f_167414_ com/mojang/realmsclient/gui/screens/RealmsLongRunningMcoTaskScreen/REPEATED_NARRATOR +FD: com/mojang/realmsclient/gui/screens/RealmsLongRunningMcoTaskScreen/f_88766_ com/mojang/realmsclient/gui/screens/RealmsLongRunningMcoTaskScreen/SYMBOLS +FD: com/mojang/realmsclient/gui/screens/RealmsLongRunningMcoTaskScreen/f_88767_ com/mojang/realmsclient/gui/screens/RealmsLongRunningMcoTaskScreen/LOGGER +FD: com/mojang/realmsclient/gui/screens/RealmsLongRunningMcoTaskScreen/f_88768_ com/mojang/realmsclient/gui/screens/RealmsLongRunningMcoTaskScreen/lastScreen +FD: com/mojang/realmsclient/gui/screens/RealmsLongRunningMcoTaskScreen/f_88769_ com/mojang/realmsclient/gui/screens/RealmsLongRunningMcoTaskScreen/title +FD: com/mojang/realmsclient/gui/screens/RealmsLongRunningMcoTaskScreen/f_88770_ com/mojang/realmsclient/gui/screens/RealmsLongRunningMcoTaskScreen/errorMessage +FD: com/mojang/realmsclient/gui/screens/RealmsLongRunningMcoTaskScreen/f_88771_ com/mojang/realmsclient/gui/screens/RealmsLongRunningMcoTaskScreen/aborted +FD: com/mojang/realmsclient/gui/screens/RealmsLongRunningMcoTaskScreen/f_88772_ com/mojang/realmsclient/gui/screens/RealmsLongRunningMcoTaskScreen/animTicks +FD: com/mojang/realmsclient/gui/screens/RealmsLongRunningMcoTaskScreen/f_88773_ com/mojang/realmsclient/gui/screens/RealmsLongRunningMcoTaskScreen/task +FD: com/mojang/realmsclient/gui/screens/RealmsLongRunningMcoTaskScreen/f_88774_ com/mojang/realmsclient/gui/screens/RealmsLongRunningMcoTaskScreen/buttonLength +FD: com/mojang/realmsclient/gui/screens/RealmsNotificationsScreen/f_238623_ com/mojang/realmsclient/gui/screens/RealmsNotificationsScreen/realmsDataSubscription +FD: com/mojang/realmsclient/gui/screens/RealmsNotificationsScreen/f_273849_ com/mojang/realmsclient/gui/screens/RealmsNotificationsScreen/onlyNotifications +FD: com/mojang/realmsclient/gui/screens/RealmsNotificationsScreen/f_273879_ com/mojang/realmsclient/gui/screens/RealmsNotificationsScreen/UNSEEN_NOTIFICATION_ICON_LOCATION +FD: com/mojang/realmsclient/gui/screens/RealmsNotificationsScreen/f_273898_ com/mojang/realmsclient/gui/screens/RealmsNotificationsScreen/currentConfiguration +FD: com/mojang/realmsclient/gui/screens/RealmsNotificationsScreen/f_273899_ com/mojang/realmsclient/gui/screens/RealmsNotificationsScreen/showAll +FD: com/mojang/realmsclient/gui/screens/RealmsNotificationsScreen/f_273905_ com/mojang/realmsclient/gui/screens/RealmsNotificationsScreen/hasUnseenNotifications +FD: com/mojang/realmsclient/gui/screens/RealmsNotificationsScreen/f_88821_ com/mojang/realmsclient/gui/screens/RealmsNotificationsScreen/INVITE_ICON_LOCATION +FD: com/mojang/realmsclient/gui/screens/RealmsNotificationsScreen/f_88822_ com/mojang/realmsclient/gui/screens/RealmsNotificationsScreen/TRIAL_ICON_LOCATION +FD: com/mojang/realmsclient/gui/screens/RealmsNotificationsScreen/f_88823_ com/mojang/realmsclient/gui/screens/RealmsNotificationsScreen/NEWS_ICON_LOCATION +FD: com/mojang/realmsclient/gui/screens/RealmsNotificationsScreen/f_88825_ com/mojang/realmsclient/gui/screens/RealmsNotificationsScreen/numberOfPendingInvites +FD: com/mojang/realmsclient/gui/screens/RealmsNotificationsScreen/f_88826_ com/mojang/realmsclient/gui/screens/RealmsNotificationsScreen/checkedMcoAvailability +FD: com/mojang/realmsclient/gui/screens/RealmsNotificationsScreen/f_88827_ com/mojang/realmsclient/gui/screens/RealmsNotificationsScreen/trialAvailable +FD: com/mojang/realmsclient/gui/screens/RealmsNotificationsScreen/f_88828_ com/mojang/realmsclient/gui/screens/RealmsNotificationsScreen/validClient +FD: com/mojang/realmsclient/gui/screens/RealmsNotificationsScreen/f_88829_ com/mojang/realmsclient/gui/screens/RealmsNotificationsScreen/hasUnreadNews +FD: com/mojang/realmsclient/gui/screens/RealmsNotificationsScreen$1/f_88851_ com/mojang/realmsclient/gui/screens/RealmsNotificationsScreen$1/this$0 +FD: com/mojang/realmsclient/gui/screens/RealmsNotificationsScreen$2/f_273929_ com/mojang/realmsclient/gui/screens/RealmsNotificationsScreen$2/this$0 +FD: com/mojang/realmsclient/gui/screens/RealmsNotificationsScreen$3/f_273900_ com/mojang/realmsclient/gui/screens/RealmsNotificationsScreen$3/this$0 +FD: com/mojang/realmsclient/gui/screens/RealmsParentalConsentScreen/f_88856_ com/mojang/realmsclient/gui/screens/RealmsParentalConsentScreen/MESSAGE +FD: com/mojang/realmsclient/gui/screens/RealmsParentalConsentScreen/f_88857_ com/mojang/realmsclient/gui/screens/RealmsParentalConsentScreen/nextScreen +FD: com/mojang/realmsclient/gui/screens/RealmsParentalConsentScreen/f_88858_ com/mojang/realmsclient/gui/screens/RealmsParentalConsentScreen/messageLines +FD: com/mojang/realmsclient/gui/screens/RealmsPendingInvitesScreen/f_88874_ com/mojang/realmsclient/gui/screens/RealmsPendingInvitesScreen/LOGGER +FD: com/mojang/realmsclient/gui/screens/RealmsPendingInvitesScreen/f_88875_ com/mojang/realmsclient/gui/screens/RealmsPendingInvitesScreen/ACCEPT_ICON_LOCATION +FD: com/mojang/realmsclient/gui/screens/RealmsPendingInvitesScreen/f_88876_ com/mojang/realmsclient/gui/screens/RealmsPendingInvitesScreen/REJECT_ICON_LOCATION +FD: com/mojang/realmsclient/gui/screens/RealmsPendingInvitesScreen/f_88877_ com/mojang/realmsclient/gui/screens/RealmsPendingInvitesScreen/NO_PENDING_INVITES_TEXT +FD: com/mojang/realmsclient/gui/screens/RealmsPendingInvitesScreen/f_88878_ com/mojang/realmsclient/gui/screens/RealmsPendingInvitesScreen/ACCEPT_INVITE_TOOLTIP +FD: com/mojang/realmsclient/gui/screens/RealmsPendingInvitesScreen/f_88879_ com/mojang/realmsclient/gui/screens/RealmsPendingInvitesScreen/REJECT_INVITE_TOOLTIP +FD: com/mojang/realmsclient/gui/screens/RealmsPendingInvitesScreen/f_88880_ com/mojang/realmsclient/gui/screens/RealmsPendingInvitesScreen/lastScreen +FD: com/mojang/realmsclient/gui/screens/RealmsPendingInvitesScreen/f_88881_ com/mojang/realmsclient/gui/screens/RealmsPendingInvitesScreen/toolTip +FD: com/mojang/realmsclient/gui/screens/RealmsPendingInvitesScreen/f_88882_ com/mojang/realmsclient/gui/screens/RealmsPendingInvitesScreen/loaded +FD: com/mojang/realmsclient/gui/screens/RealmsPendingInvitesScreen/f_88883_ com/mojang/realmsclient/gui/screens/RealmsPendingInvitesScreen/pendingInvitationSelectionList +FD: com/mojang/realmsclient/gui/screens/RealmsPendingInvitesScreen/f_88885_ com/mojang/realmsclient/gui/screens/RealmsPendingInvitesScreen/selectedInvite +FD: com/mojang/realmsclient/gui/screens/RealmsPendingInvitesScreen/f_88886_ com/mojang/realmsclient/gui/screens/RealmsPendingInvitesScreen/acceptButton +FD: com/mojang/realmsclient/gui/screens/RealmsPendingInvitesScreen/f_88887_ com/mojang/realmsclient/gui/screens/RealmsPendingInvitesScreen/rejectButton +FD: com/mojang/realmsclient/gui/screens/RealmsPendingInvitesScreen$1/f_88964_ com/mojang/realmsclient/gui/screens/RealmsPendingInvitesScreen$1/this$0 +FD: com/mojang/realmsclient/gui/screens/RealmsPendingInvitesScreen$2/f_88973_ com/mojang/realmsclient/gui/screens/RealmsPendingInvitesScreen$2/val$slot +FD: com/mojang/realmsclient/gui/screens/RealmsPendingInvitesScreen$2/f_88974_ com/mojang/realmsclient/gui/screens/RealmsPendingInvitesScreen$2/this$0 +FD: com/mojang/realmsclient/gui/screens/RealmsPendingInvitesScreen$3/f_88982_ com/mojang/realmsclient/gui/screens/RealmsPendingInvitesScreen$3/val$slot +FD: com/mojang/realmsclient/gui/screens/RealmsPendingInvitesScreen$3/f_88983_ com/mojang/realmsclient/gui/screens/RealmsPendingInvitesScreen$3/this$0 +FD: com/mojang/realmsclient/gui/screens/RealmsPendingInvitesScreen$Entry/f_167427_ com/mojang/realmsclient/gui/screens/RealmsPendingInvitesScreen$Entry/TEXT_LEFT +FD: com/mojang/realmsclient/gui/screens/RealmsPendingInvitesScreen$Entry/f_88991_ com/mojang/realmsclient/gui/screens/RealmsPendingInvitesScreen$Entry/this$0 +FD: com/mojang/realmsclient/gui/screens/RealmsPendingInvitesScreen$Entry/f_88992_ com/mojang/realmsclient/gui/screens/RealmsPendingInvitesScreen$Entry/pendingInvite +FD: com/mojang/realmsclient/gui/screens/RealmsPendingInvitesScreen$Entry/f_88993_ com/mojang/realmsclient/gui/screens/RealmsPendingInvitesScreen$Entry/rowButtons +FD: com/mojang/realmsclient/gui/screens/RealmsPendingInvitesScreen$Entry$AcceptRowButton/f_89025_ com/mojang/realmsclient/gui/screens/RealmsPendingInvitesScreen$Entry$AcceptRowButton/this$1 +FD: com/mojang/realmsclient/gui/screens/RealmsPendingInvitesScreen$Entry$RejectRowButton/f_89035_ com/mojang/realmsclient/gui/screens/RealmsPendingInvitesScreen$Entry$RejectRowButton/this$1 +FD: com/mojang/realmsclient/gui/screens/RealmsPendingInvitesScreen$PendingInvitationSelectionList/f_89045_ com/mojang/realmsclient/gui/screens/RealmsPendingInvitesScreen$PendingInvitationSelectionList/this$0 +FD: com/mojang/realmsclient/gui/screens/RealmsPlayerScreen/f_278447_ com/mojang/realmsclient/gui/screens/RealmsPlayerScreen/NO_ENTRY_SELECTED +FD: com/mojang/realmsclient/gui/screens/RealmsPlayerScreen/f_286965_ com/mojang/realmsclient/gui/screens/RealmsPlayerScreen/QUESTION_TITLE +FD: com/mojang/realmsclient/gui/screens/RealmsPlayerScreen/f_89063_ com/mojang/realmsclient/gui/screens/RealmsPlayerScreen/columnWidth +FD: com/mojang/realmsclient/gui/screens/RealmsPlayerScreen/f_89065_ com/mojang/realmsclient/gui/screens/RealmsPlayerScreen/removeButton +FD: com/mojang/realmsclient/gui/screens/RealmsPlayerScreen/f_89066_ com/mojang/realmsclient/gui/screens/RealmsPlayerScreen/opdeopButton +FD: com/mojang/realmsclient/gui/screens/RealmsPlayerScreen/f_89069_ com/mojang/realmsclient/gui/screens/RealmsPlayerScreen/playerIndex +FD: com/mojang/realmsclient/gui/screens/RealmsPlayerScreen/f_89070_ com/mojang/realmsclient/gui/screens/RealmsPlayerScreen/stateChanged +FD: com/mojang/realmsclient/gui/screens/RealmsPlayerScreen/f_89073_ com/mojang/realmsclient/gui/screens/RealmsPlayerScreen/LOGGER +FD: com/mojang/realmsclient/gui/screens/RealmsPlayerScreen/f_89074_ com/mojang/realmsclient/gui/screens/RealmsPlayerScreen/OP_ICON_LOCATION +FD: com/mojang/realmsclient/gui/screens/RealmsPlayerScreen/f_89075_ com/mojang/realmsclient/gui/screens/RealmsPlayerScreen/USER_ICON_LOCATION +FD: com/mojang/realmsclient/gui/screens/RealmsPlayerScreen/f_89076_ com/mojang/realmsclient/gui/screens/RealmsPlayerScreen/CROSS_ICON_LOCATION +FD: com/mojang/realmsclient/gui/screens/RealmsPlayerScreen/f_89077_ com/mojang/realmsclient/gui/screens/RealmsPlayerScreen/OPTIONS_BACKGROUND +FD: com/mojang/realmsclient/gui/screens/RealmsPlayerScreen/f_89078_ com/mojang/realmsclient/gui/screens/RealmsPlayerScreen/NORMAL_USER_TOOLTIP +FD: com/mojang/realmsclient/gui/screens/RealmsPlayerScreen/f_89079_ com/mojang/realmsclient/gui/screens/RealmsPlayerScreen/OP_TOOLTIP +FD: com/mojang/realmsclient/gui/screens/RealmsPlayerScreen/f_89080_ com/mojang/realmsclient/gui/screens/RealmsPlayerScreen/REMOVE_ENTRY_TOOLTIP +FD: com/mojang/realmsclient/gui/screens/RealmsPlayerScreen/f_89083_ com/mojang/realmsclient/gui/screens/RealmsPlayerScreen/lastScreen +FD: com/mojang/realmsclient/gui/screens/RealmsPlayerScreen/f_89084_ com/mojang/realmsclient/gui/screens/RealmsPlayerScreen/serverData +FD: com/mojang/realmsclient/gui/screens/RealmsPlayerScreen/f_89085_ com/mojang/realmsclient/gui/screens/RealmsPlayerScreen/invitedObjectSelectionList +FD: com/mojang/realmsclient/gui/screens/RealmsPlayerScreen/f_89086_ com/mojang/realmsclient/gui/screens/RealmsPlayerScreen/column1X +FD: com/mojang/realmsclient/gui/screens/RealmsPlayerScreen$Entry/f_278386_ com/mojang/realmsclient/gui/screens/RealmsPlayerScreen$Entry/X_OFFSET +FD: com/mojang/realmsclient/gui/screens/RealmsPlayerScreen$Entry/f_278388_ com/mojang/realmsclient/gui/screens/RealmsPlayerScreen$Entry/makeOpButton +FD: com/mojang/realmsclient/gui/screens/RealmsPlayerScreen$Entry/f_278389_ com/mojang/realmsclient/gui/screens/RealmsPlayerScreen$Entry/children +FD: com/mojang/realmsclient/gui/screens/RealmsPlayerScreen$Entry/f_278391_ com/mojang/realmsclient/gui/screens/RealmsPlayerScreen$Entry/BUTTON_HEIGHT +FD: com/mojang/realmsclient/gui/screens/RealmsPlayerScreen$Entry/f_278432_ com/mojang/realmsclient/gui/screens/RealmsPlayerScreen$Entry/removeButton +FD: com/mojang/realmsclient/gui/screens/RealmsPlayerScreen$Entry/f_278444_ com/mojang/realmsclient/gui/screens/RealmsPlayerScreen$Entry/Y_PADDING +FD: com/mojang/realmsclient/gui/screens/RealmsPlayerScreen$Entry/f_278454_ com/mojang/realmsclient/gui/screens/RealmsPlayerScreen$Entry/BUTTON_WIDTH +FD: com/mojang/realmsclient/gui/screens/RealmsPlayerScreen$Entry/f_278510_ com/mojang/realmsclient/gui/screens/RealmsPlayerScreen$Entry/removeOpButton +FD: com/mojang/realmsclient/gui/screens/RealmsPlayerScreen$Entry/f_89200_ com/mojang/realmsclient/gui/screens/RealmsPlayerScreen$Entry/this$0 +FD: com/mojang/realmsclient/gui/screens/RealmsPlayerScreen$Entry/f_89201_ com/mojang/realmsclient/gui/screens/RealmsPlayerScreen$Entry/playerInfo +FD: com/mojang/realmsclient/gui/screens/RealmsPlayerScreen$InvitedObjectSelectionList/f_89226_ com/mojang/realmsclient/gui/screens/RealmsPlayerScreen$InvitedObjectSelectionList/this$0 +FD: com/mojang/realmsclient/gui/screens/RealmsResetNormalWorldScreen/f_167435_ com/mojang/realmsclient/gui/screens/RealmsResetNormalWorldScreen/levelType +FD: com/mojang/realmsclient/gui/screens/RealmsResetNormalWorldScreen/f_167436_ com/mojang/realmsclient/gui/screens/RealmsResetNormalWorldScreen/callback +FD: com/mojang/realmsclient/gui/screens/RealmsResetNormalWorldScreen/f_89266_ com/mojang/realmsclient/gui/screens/RealmsResetNormalWorldScreen/SEED_LABEL +FD: com/mojang/realmsclient/gui/screens/RealmsResetNormalWorldScreen/f_89270_ com/mojang/realmsclient/gui/screens/RealmsResetNormalWorldScreen/seedEdit +FD: com/mojang/realmsclient/gui/screens/RealmsResetNormalWorldScreen/f_89271_ com/mojang/realmsclient/gui/screens/RealmsResetNormalWorldScreen/generateStructures +FD: com/mojang/realmsclient/gui/screens/RealmsResetNormalWorldScreen/f_89273_ com/mojang/realmsclient/gui/screens/RealmsResetNormalWorldScreen/buttonTitle +FD: com/mojang/realmsclient/gui/screens/RealmsResetWorldScreen/f_89300_ com/mojang/realmsclient/gui/screens/RealmsResetWorldScreen/NEW_WORLD_LOCATION +FD: com/mojang/realmsclient/gui/screens/RealmsResetWorldScreen/f_89301_ com/mojang/realmsclient/gui/screens/RealmsResetWorldScreen/EXPERIENCE_LOCATION +FD: com/mojang/realmsclient/gui/screens/RealmsResetWorldScreen/f_89302_ com/mojang/realmsclient/gui/screens/RealmsResetWorldScreen/INSPIRATION_LOCATION +FD: com/mojang/realmsclient/gui/screens/RealmsResetWorldScreen/f_89303_ com/mojang/realmsclient/gui/screens/RealmsResetWorldScreen/templates +FD: com/mojang/realmsclient/gui/screens/RealmsResetWorldScreen/f_89304_ com/mojang/realmsclient/gui/screens/RealmsResetWorldScreen/adventuremaps +FD: com/mojang/realmsclient/gui/screens/RealmsResetWorldScreen/f_89305_ com/mojang/realmsclient/gui/screens/RealmsResetWorldScreen/experiences +FD: com/mojang/realmsclient/gui/screens/RealmsResetWorldScreen/f_89306_ com/mojang/realmsclient/gui/screens/RealmsResetWorldScreen/inspirations +FD: com/mojang/realmsclient/gui/screens/RealmsResetWorldScreen/f_89310_ com/mojang/realmsclient/gui/screens/RealmsResetWorldScreen/resetTitle +FD: com/mojang/realmsclient/gui/screens/RealmsResetWorldScreen/f_89311_ com/mojang/realmsclient/gui/screens/RealmsResetWorldScreen/resetWorldRunnable +FD: com/mojang/realmsclient/gui/screens/RealmsResetWorldScreen/f_89312_ com/mojang/realmsclient/gui/screens/RealmsResetWorldScreen/callback +FD: com/mojang/realmsclient/gui/screens/RealmsResetWorldScreen/f_89313_ com/mojang/realmsclient/gui/screens/RealmsResetWorldScreen/slot +FD: com/mojang/realmsclient/gui/screens/RealmsResetWorldScreen/f_89314_ com/mojang/realmsclient/gui/screens/RealmsResetWorldScreen/LOGGER +FD: com/mojang/realmsclient/gui/screens/RealmsResetWorldScreen/f_89315_ com/mojang/realmsclient/gui/screens/RealmsResetWorldScreen/lastScreen +FD: com/mojang/realmsclient/gui/screens/RealmsResetWorldScreen/f_89316_ com/mojang/realmsclient/gui/screens/RealmsResetWorldScreen/serverData +FD: com/mojang/realmsclient/gui/screens/RealmsResetWorldScreen/f_89320_ com/mojang/realmsclient/gui/screens/RealmsResetWorldScreen/subtitle +FD: com/mojang/realmsclient/gui/screens/RealmsResetWorldScreen/f_89321_ com/mojang/realmsclient/gui/screens/RealmsResetWorldScreen/buttonTitle +FD: com/mojang/realmsclient/gui/screens/RealmsResetWorldScreen/f_89322_ com/mojang/realmsclient/gui/screens/RealmsResetWorldScreen/subtitleColor +FD: com/mojang/realmsclient/gui/screens/RealmsResetWorldScreen/f_89323_ com/mojang/realmsclient/gui/screens/RealmsResetWorldScreen/SLOT_FRAME_LOCATION +FD: com/mojang/realmsclient/gui/screens/RealmsResetWorldScreen/f_89324_ com/mojang/realmsclient/gui/screens/RealmsResetWorldScreen/UPLOAD_LOCATION +FD: com/mojang/realmsclient/gui/screens/RealmsResetWorldScreen/f_89325_ com/mojang/realmsclient/gui/screens/RealmsResetWorldScreen/ADVENTURE_MAP_LOCATION +FD: com/mojang/realmsclient/gui/screens/RealmsResetWorldScreen/f_89326_ com/mojang/realmsclient/gui/screens/RealmsResetWorldScreen/SURVIVAL_SPAWN_LOCATION +FD: com/mojang/realmsclient/gui/screens/RealmsResetWorldScreen$1/f_89422_ com/mojang/realmsclient/gui/screens/RealmsResetWorldScreen$1/this$0 +FD: com/mojang/realmsclient/gui/screens/RealmsResetWorldScreen$FrameButton/f_89435_ com/mojang/realmsclient/gui/screens/RealmsResetWorldScreen$FrameButton/this$0 +FD: com/mojang/realmsclient/gui/screens/RealmsResetWorldScreen$FrameButton/f_89436_ com/mojang/realmsclient/gui/screens/RealmsResetWorldScreen$FrameButton/image +FD: com/mojang/realmsclient/gui/screens/RealmsSelectFileToUploadScreen/f_286962_ com/mojang/realmsclient/gui/screens/RealmsSelectFileToUploadScreen/UNABLE_TO_LOAD_WORLD +FD: com/mojang/realmsclient/gui/screens/RealmsSelectFileToUploadScreen/f_89481_ com/mojang/realmsclient/gui/screens/RealmsSelectFileToUploadScreen/callback +FD: com/mojang/realmsclient/gui/screens/RealmsSelectFileToUploadScreen/f_89482_ com/mojang/realmsclient/gui/screens/RealmsSelectFileToUploadScreen/LOGGER +FD: com/mojang/realmsclient/gui/screens/RealmsSelectFileToUploadScreen/f_89483_ com/mojang/realmsclient/gui/screens/RealmsSelectFileToUploadScreen/WORLD_TEXT +FD: com/mojang/realmsclient/gui/screens/RealmsSelectFileToUploadScreen/f_89485_ com/mojang/realmsclient/gui/screens/RealmsSelectFileToUploadScreen/HARDCORE_TEXT +FD: com/mojang/realmsclient/gui/screens/RealmsSelectFileToUploadScreen/f_89486_ com/mojang/realmsclient/gui/screens/RealmsSelectFileToUploadScreen/CHEATS_TEXT +FD: com/mojang/realmsclient/gui/screens/RealmsSelectFileToUploadScreen/f_89487_ com/mojang/realmsclient/gui/screens/RealmsSelectFileToUploadScreen/DATE_FORMAT +FD: com/mojang/realmsclient/gui/screens/RealmsSelectFileToUploadScreen/f_89488_ com/mojang/realmsclient/gui/screens/RealmsSelectFileToUploadScreen/lastScreen +FD: com/mojang/realmsclient/gui/screens/RealmsSelectFileToUploadScreen/f_89489_ com/mojang/realmsclient/gui/screens/RealmsSelectFileToUploadScreen/worldId +FD: com/mojang/realmsclient/gui/screens/RealmsSelectFileToUploadScreen/f_89490_ com/mojang/realmsclient/gui/screens/RealmsSelectFileToUploadScreen/slotId +FD: com/mojang/realmsclient/gui/screens/RealmsSelectFileToUploadScreen/f_89491_ com/mojang/realmsclient/gui/screens/RealmsSelectFileToUploadScreen/uploadButton +FD: com/mojang/realmsclient/gui/screens/RealmsSelectFileToUploadScreen/f_89492_ com/mojang/realmsclient/gui/screens/RealmsSelectFileToUploadScreen/levelList +FD: com/mojang/realmsclient/gui/screens/RealmsSelectFileToUploadScreen/f_89493_ com/mojang/realmsclient/gui/screens/RealmsSelectFileToUploadScreen/selectedWorld +FD: com/mojang/realmsclient/gui/screens/RealmsSelectFileToUploadScreen/f_89494_ com/mojang/realmsclient/gui/screens/RealmsSelectFileToUploadScreen/worldSelectionList +FD: com/mojang/realmsclient/gui/screens/RealmsSelectFileToUploadScreen$Entry/f_89553_ com/mojang/realmsclient/gui/screens/RealmsSelectFileToUploadScreen$Entry/this$0 +FD: com/mojang/realmsclient/gui/screens/RealmsSelectFileToUploadScreen$Entry/f_89554_ com/mojang/realmsclient/gui/screens/RealmsSelectFileToUploadScreen$Entry/levelSummary +FD: com/mojang/realmsclient/gui/screens/RealmsSelectFileToUploadScreen$Entry/f_89555_ com/mojang/realmsclient/gui/screens/RealmsSelectFileToUploadScreen$Entry/name +FD: com/mojang/realmsclient/gui/screens/RealmsSelectFileToUploadScreen$Entry/f_89556_ com/mojang/realmsclient/gui/screens/RealmsSelectFileToUploadScreen$Entry/id +FD: com/mojang/realmsclient/gui/screens/RealmsSelectFileToUploadScreen$Entry/f_89557_ com/mojang/realmsclient/gui/screens/RealmsSelectFileToUploadScreen$Entry/info +FD: com/mojang/realmsclient/gui/screens/RealmsSelectFileToUploadScreen$WorldSelectionList/f_89582_ com/mojang/realmsclient/gui/screens/RealmsSelectFileToUploadScreen$WorldSelectionList/this$0 +FD: com/mojang/realmsclient/gui/screens/RealmsSelectWorldTemplateScreen/f_167479_ com/mojang/realmsclient/gui/screens/RealmsSelectWorldTemplateScreen/callback +FD: com/mojang/realmsclient/gui/screens/RealmsSelectWorldTemplateScreen/f_89597_ com/mojang/realmsclient/gui/screens/RealmsSelectWorldTemplateScreen/currentLink +FD: com/mojang/realmsclient/gui/screens/RealmsSelectWorldTemplateScreen/f_89598_ com/mojang/realmsclient/gui/screens/RealmsSelectWorldTemplateScreen/worldType +FD: com/mojang/realmsclient/gui/screens/RealmsSelectWorldTemplateScreen/f_89599_ com/mojang/realmsclient/gui/screens/RealmsSelectWorldTemplateScreen/clicks +FD: com/mojang/realmsclient/gui/screens/RealmsSelectWorldTemplateScreen/f_89600_ com/mojang/realmsclient/gui/screens/RealmsSelectWorldTemplateScreen/warning +FD: com/mojang/realmsclient/gui/screens/RealmsSelectWorldTemplateScreen/f_89601_ com/mojang/realmsclient/gui/screens/RealmsSelectWorldTemplateScreen/warningURL +FD: com/mojang/realmsclient/gui/screens/RealmsSelectWorldTemplateScreen/f_89602_ com/mojang/realmsclient/gui/screens/RealmsSelectWorldTemplateScreen/displayWarning +FD: com/mojang/realmsclient/gui/screens/RealmsSelectWorldTemplateScreen/f_89603_ com/mojang/realmsclient/gui/screens/RealmsSelectWorldTemplateScreen/hoverWarning +FD: com/mojang/realmsclient/gui/screens/RealmsSelectWorldTemplateScreen/f_89604_ com/mojang/realmsclient/gui/screens/RealmsSelectWorldTemplateScreen/noTemplatesMessage +FD: com/mojang/realmsclient/gui/screens/RealmsSelectWorldTemplateScreen/f_89605_ com/mojang/realmsclient/gui/screens/RealmsSelectWorldTemplateScreen/LOGGER +FD: com/mojang/realmsclient/gui/screens/RealmsSelectWorldTemplateScreen/f_89606_ com/mojang/realmsclient/gui/screens/RealmsSelectWorldTemplateScreen/LINK_ICON +FD: com/mojang/realmsclient/gui/screens/RealmsSelectWorldTemplateScreen/f_89607_ com/mojang/realmsclient/gui/screens/RealmsSelectWorldTemplateScreen/TRAILER_ICON +FD: com/mojang/realmsclient/gui/screens/RealmsSelectWorldTemplateScreen/f_89608_ com/mojang/realmsclient/gui/screens/RealmsSelectWorldTemplateScreen/SLOT_FRAME_LOCATION +FD: com/mojang/realmsclient/gui/screens/RealmsSelectWorldTemplateScreen/f_89609_ com/mojang/realmsclient/gui/screens/RealmsSelectWorldTemplateScreen/PUBLISHER_LINK_TOOLTIP +FD: com/mojang/realmsclient/gui/screens/RealmsSelectWorldTemplateScreen/f_89610_ com/mojang/realmsclient/gui/screens/RealmsSelectWorldTemplateScreen/TRAILER_LINK_TOOLTIP +FD: com/mojang/realmsclient/gui/screens/RealmsSelectWorldTemplateScreen/f_89612_ com/mojang/realmsclient/gui/screens/RealmsSelectWorldTemplateScreen/worldTemplateObjectSelectionList +FD: com/mojang/realmsclient/gui/screens/RealmsSelectWorldTemplateScreen/f_89613_ com/mojang/realmsclient/gui/screens/RealmsSelectWorldTemplateScreen/selectedTemplate +FD: com/mojang/realmsclient/gui/screens/RealmsSelectWorldTemplateScreen/f_89615_ com/mojang/realmsclient/gui/screens/RealmsSelectWorldTemplateScreen/selectButton +FD: com/mojang/realmsclient/gui/screens/RealmsSelectWorldTemplateScreen/f_89616_ com/mojang/realmsclient/gui/screens/RealmsSelectWorldTemplateScreen/trailerButton +FD: com/mojang/realmsclient/gui/screens/RealmsSelectWorldTemplateScreen/f_89617_ com/mojang/realmsclient/gui/screens/RealmsSelectWorldTemplateScreen/publisherButton +FD: com/mojang/realmsclient/gui/screens/RealmsSelectWorldTemplateScreen/f_89618_ com/mojang/realmsclient/gui/screens/RealmsSelectWorldTemplateScreen/toolTip +FD: com/mojang/realmsclient/gui/screens/RealmsSelectWorldTemplateScreen$1/f_89740_ com/mojang/realmsclient/gui/screens/RealmsSelectWorldTemplateScreen$1/val$startPage +FD: com/mojang/realmsclient/gui/screens/RealmsSelectWorldTemplateScreen$1/f_89741_ com/mojang/realmsclient/gui/screens/RealmsSelectWorldTemplateScreen$1/this$0 +FD: com/mojang/realmsclient/gui/screens/RealmsSelectWorldTemplateScreen$Entry/f_89749_ com/mojang/realmsclient/gui/screens/RealmsSelectWorldTemplateScreen$Entry/this$0 +FD: com/mojang/realmsclient/gui/screens/RealmsSelectWorldTemplateScreen$Entry/f_89750_ com/mojang/realmsclient/gui/screens/RealmsSelectWorldTemplateScreen$Entry/template +FD: com/mojang/realmsclient/gui/screens/RealmsSelectWorldTemplateScreen$WorldTemplateObjectSelectionList/f_89790_ com/mojang/realmsclient/gui/screens/RealmsSelectWorldTemplateScreen$WorldTemplateObjectSelectionList/this$0 +FD: com/mojang/realmsclient/gui/screens/RealmsSettingsScreen/f_167508_ com/mojang/realmsclient/gui/screens/RealmsSettingsScreen/COMPONENT_WIDTH +FD: com/mojang/realmsclient/gui/screens/RealmsSettingsScreen/f_89819_ com/mojang/realmsclient/gui/screens/RealmsSettingsScreen/NAME_LABEL +FD: com/mojang/realmsclient/gui/screens/RealmsSettingsScreen/f_89820_ com/mojang/realmsclient/gui/screens/RealmsSettingsScreen/DESCRIPTION_LABEL +FD: com/mojang/realmsclient/gui/screens/RealmsSettingsScreen/f_89821_ com/mojang/realmsclient/gui/screens/RealmsSettingsScreen/configureWorldScreen +FD: com/mojang/realmsclient/gui/screens/RealmsSettingsScreen/f_89822_ com/mojang/realmsclient/gui/screens/RealmsSettingsScreen/serverData +FD: com/mojang/realmsclient/gui/screens/RealmsSettingsScreen/f_89823_ com/mojang/realmsclient/gui/screens/RealmsSettingsScreen/doneButton +FD: com/mojang/realmsclient/gui/screens/RealmsSettingsScreen/f_89824_ com/mojang/realmsclient/gui/screens/RealmsSettingsScreen/descEdit +FD: com/mojang/realmsclient/gui/screens/RealmsSettingsScreen/f_89825_ com/mojang/realmsclient/gui/screens/RealmsSettingsScreen/nameEdit +FD: com/mojang/realmsclient/gui/screens/RealmsSlotOptionsScreen/f_167511_ com/mojang/realmsclient/gui/screens/RealmsSlotOptionsScreen/DEFAULT_DIFFICULTY +FD: com/mojang/realmsclient/gui/screens/RealmsSlotOptionsScreen/f_167512_ com/mojang/realmsclient/gui/screens/RealmsSlotOptionsScreen/DEFAULT_GAME_MODE +FD: com/mojang/realmsclient/gui/screens/RealmsSlotOptionsScreen/f_167513_ com/mojang/realmsclient/gui/screens/RealmsSlotOptionsScreen/SPAWN_PROTECTION_TEXT +FD: com/mojang/realmsclient/gui/screens/RealmsSlotOptionsScreen/f_231308_ com/mojang/realmsclient/gui/screens/RealmsSlotOptionsScreen/SPAWN_WARNING_TITLE +FD: com/mojang/realmsclient/gui/screens/RealmsSlotOptionsScreen/f_231309_ com/mojang/realmsclient/gui/screens/RealmsSlotOptionsScreen/defaultSlotName +FD: com/mojang/realmsclient/gui/screens/RealmsSlotOptionsScreen/f_231310_ com/mojang/realmsclient/gui/screens/RealmsSlotOptionsScreen/worldName +FD: com/mojang/realmsclient/gui/screens/RealmsSlotOptionsScreen/f_89852_ com/mojang/realmsclient/gui/screens/RealmsSlotOptionsScreen/difficulty +FD: com/mojang/realmsclient/gui/screens/RealmsSlotOptionsScreen/f_89853_ com/mojang/realmsclient/gui/screens/RealmsSlotOptionsScreen/gameMode +FD: com/mojang/realmsclient/gui/screens/RealmsSlotOptionsScreen/f_89854_ com/mojang/realmsclient/gui/screens/RealmsSlotOptionsScreen/pvp +FD: com/mojang/realmsclient/gui/screens/RealmsSlotOptionsScreen/f_89855_ com/mojang/realmsclient/gui/screens/RealmsSlotOptionsScreen/spawnNPCs +FD: com/mojang/realmsclient/gui/screens/RealmsSlotOptionsScreen/f_89856_ com/mojang/realmsclient/gui/screens/RealmsSlotOptionsScreen/spawnAnimals +FD: com/mojang/realmsclient/gui/screens/RealmsSlotOptionsScreen/f_89857_ com/mojang/realmsclient/gui/screens/RealmsSlotOptionsScreen/spawnMonsters +FD: com/mojang/realmsclient/gui/screens/RealmsSlotOptionsScreen/f_89858_ com/mojang/realmsclient/gui/screens/RealmsSlotOptionsScreen/spawnProtection +FD: com/mojang/realmsclient/gui/screens/RealmsSlotOptionsScreen/f_89859_ com/mojang/realmsclient/gui/screens/RealmsSlotOptionsScreen/commandBlocks +FD: com/mojang/realmsclient/gui/screens/RealmsSlotOptionsScreen/f_89860_ com/mojang/realmsclient/gui/screens/RealmsSlotOptionsScreen/forceGameMode +FD: com/mojang/realmsclient/gui/screens/RealmsSlotOptionsScreen/f_89865_ com/mojang/realmsclient/gui/screens/RealmsSlotOptionsScreen/spawnProtectionButton +FD: com/mojang/realmsclient/gui/screens/RealmsSlotOptionsScreen/f_89870_ com/mojang/realmsclient/gui/screens/RealmsSlotOptionsScreen/DIFFICULTIES +FD: com/mojang/realmsclient/gui/screens/RealmsSlotOptionsScreen/f_89871_ com/mojang/realmsclient/gui/screens/RealmsSlotOptionsScreen/GAME_MODES +FD: com/mojang/realmsclient/gui/screens/RealmsSlotOptionsScreen/f_89872_ com/mojang/realmsclient/gui/screens/RealmsSlotOptionsScreen/parent +FD: com/mojang/realmsclient/gui/screens/RealmsSlotOptionsScreen/f_89876_ com/mojang/realmsclient/gui/screens/RealmsSlotOptionsScreen/NAME_LABEL +FD: com/mojang/realmsclient/gui/screens/RealmsSlotOptionsScreen/f_89877_ com/mojang/realmsclient/gui/screens/RealmsSlotOptionsScreen/nameEdit +FD: com/mojang/realmsclient/gui/screens/RealmsSlotOptionsScreen/f_89878_ com/mojang/realmsclient/gui/screens/RealmsSlotOptionsScreen/column1X +FD: com/mojang/realmsclient/gui/screens/RealmsSlotOptionsScreen/f_89879_ com/mojang/realmsclient/gui/screens/RealmsSlotOptionsScreen/columnWidth +FD: com/mojang/realmsclient/gui/screens/RealmsSlotOptionsScreen/f_89881_ com/mojang/realmsclient/gui/screens/RealmsSlotOptionsScreen/options +FD: com/mojang/realmsclient/gui/screens/RealmsSlotOptionsScreen/f_89882_ com/mojang/realmsclient/gui/screens/RealmsSlotOptionsScreen/worldType +FD: com/mojang/realmsclient/gui/screens/RealmsSlotOptionsScreen$SettingsSlider/f_89941_ com/mojang/realmsclient/gui/screens/RealmsSlotOptionsScreen$SettingsSlider/this$0 +FD: com/mojang/realmsclient/gui/screens/RealmsSlotOptionsScreen$SettingsSlider/f_89942_ com/mojang/realmsclient/gui/screens/RealmsSlotOptionsScreen$SettingsSlider/minValue +FD: com/mojang/realmsclient/gui/screens/RealmsSlotOptionsScreen$SettingsSlider/f_89943_ com/mojang/realmsclient/gui/screens/RealmsSlotOptionsScreen$SettingsSlider/maxValue +FD: com/mojang/realmsclient/gui/screens/RealmsSubscriptionInfoScreen/f_182537_ com/mojang/realmsclient/gui/screens/RealmsSubscriptionInfoScreen/UNKNOWN +FD: com/mojang/realmsclient/gui/screens/RealmsSubscriptionInfoScreen/f_276373_ com/mojang/realmsclient/gui/screens/RealmsSubscriptionInfoScreen/RECURRING_INFO +FD: com/mojang/realmsclient/gui/screens/RealmsSubscriptionInfoScreen/f_89960_ com/mojang/realmsclient/gui/screens/RealmsSubscriptionInfoScreen/daysLeft +FD: com/mojang/realmsclient/gui/screens/RealmsSubscriptionInfoScreen/f_89961_ com/mojang/realmsclient/gui/screens/RealmsSubscriptionInfoScreen/startDate +FD: com/mojang/realmsclient/gui/screens/RealmsSubscriptionInfoScreen/f_89962_ com/mojang/realmsclient/gui/screens/RealmsSubscriptionInfoScreen/type +FD: com/mojang/realmsclient/gui/screens/RealmsSubscriptionInfoScreen/f_89963_ com/mojang/realmsclient/gui/screens/RealmsSubscriptionInfoScreen/LOGGER +FD: com/mojang/realmsclient/gui/screens/RealmsSubscriptionInfoScreen/f_89964_ com/mojang/realmsclient/gui/screens/RealmsSubscriptionInfoScreen/SUBSCRIPTION_TITLE +FD: com/mojang/realmsclient/gui/screens/RealmsSubscriptionInfoScreen/f_89965_ com/mojang/realmsclient/gui/screens/RealmsSubscriptionInfoScreen/SUBSCRIPTION_START_LABEL +FD: com/mojang/realmsclient/gui/screens/RealmsSubscriptionInfoScreen/f_89966_ com/mojang/realmsclient/gui/screens/RealmsSubscriptionInfoScreen/TIME_LEFT_LABEL +FD: com/mojang/realmsclient/gui/screens/RealmsSubscriptionInfoScreen/f_89967_ com/mojang/realmsclient/gui/screens/RealmsSubscriptionInfoScreen/DAYS_LEFT_LABEL +FD: com/mojang/realmsclient/gui/screens/RealmsSubscriptionInfoScreen/f_89968_ com/mojang/realmsclient/gui/screens/RealmsSubscriptionInfoScreen/SUBSCRIPTION_EXPIRED_TEXT +FD: com/mojang/realmsclient/gui/screens/RealmsSubscriptionInfoScreen/f_89969_ com/mojang/realmsclient/gui/screens/RealmsSubscriptionInfoScreen/SUBSCRIPTION_LESS_THAN_A_DAY_TEXT +FD: com/mojang/realmsclient/gui/screens/RealmsSubscriptionInfoScreen/f_89974_ com/mojang/realmsclient/gui/screens/RealmsSubscriptionInfoScreen/lastScreen +FD: com/mojang/realmsclient/gui/screens/RealmsSubscriptionInfoScreen/f_89975_ com/mojang/realmsclient/gui/screens/RealmsSubscriptionInfoScreen/serverData +FD: com/mojang/realmsclient/gui/screens/RealmsSubscriptionInfoScreen/f_89976_ com/mojang/realmsclient/gui/screens/RealmsSubscriptionInfoScreen/mainScreen +FD: com/mojang/realmsclient/gui/screens/RealmsSubscriptionInfoScreen$1/f_90016_ com/mojang/realmsclient/gui/screens/RealmsSubscriptionInfoScreen$1/this$0 +FD: com/mojang/realmsclient/gui/screens/RealmsTermsScreen/f_90022_ com/mojang/realmsclient/gui/screens/RealmsTermsScreen/LOGGER +FD: com/mojang/realmsclient/gui/screens/RealmsTermsScreen/f_90023_ com/mojang/realmsclient/gui/screens/RealmsTermsScreen/TITLE +FD: com/mojang/realmsclient/gui/screens/RealmsTermsScreen/f_90024_ com/mojang/realmsclient/gui/screens/RealmsTermsScreen/TERMS_STATIC_TEXT +FD: com/mojang/realmsclient/gui/screens/RealmsTermsScreen/f_90025_ com/mojang/realmsclient/gui/screens/RealmsTermsScreen/TERMS_LINK_TEXT +FD: com/mojang/realmsclient/gui/screens/RealmsTermsScreen/f_90026_ com/mojang/realmsclient/gui/screens/RealmsTermsScreen/lastScreen +FD: com/mojang/realmsclient/gui/screens/RealmsTermsScreen/f_90027_ com/mojang/realmsclient/gui/screens/RealmsTermsScreen/mainScreen +FD: com/mojang/realmsclient/gui/screens/RealmsTermsScreen/f_90028_ com/mojang/realmsclient/gui/screens/RealmsTermsScreen/realmsServer +FD: com/mojang/realmsclient/gui/screens/RealmsTermsScreen/f_90029_ com/mojang/realmsclient/gui/screens/RealmsTermsScreen/onLink +FD: com/mojang/realmsclient/gui/screens/RealmsUploadScreen/f_263667_ com/mojang/realmsclient/gui/screens/RealmsUploadScreen/BAR_WIDTH +FD: com/mojang/realmsclient/gui/screens/RealmsUploadScreen/f_263693_ com/mojang/realmsclient/gui/screens/RealmsUploadScreen/BAR_BOTTOM +FD: com/mojang/realmsclient/gui/screens/RealmsUploadScreen/f_263749_ com/mojang/realmsclient/gui/screens/RealmsUploadScreen/BAR_TOP +FD: com/mojang/realmsclient/gui/screens/RealmsUploadScreen/f_263789_ com/mojang/realmsclient/gui/screens/RealmsUploadScreen/BAR_BORDER +FD: com/mojang/realmsclient/gui/screens/RealmsUploadScreen/f_90057_ com/mojang/realmsclient/gui/screens/RealmsUploadScreen/uploadFinished +FD: com/mojang/realmsclient/gui/screens/RealmsUploadScreen/f_90058_ com/mojang/realmsclient/gui/screens/RealmsUploadScreen/showDots +FD: com/mojang/realmsclient/gui/screens/RealmsUploadScreen/f_90059_ com/mojang/realmsclient/gui/screens/RealmsUploadScreen/uploadStarted +FD: com/mojang/realmsclient/gui/screens/RealmsUploadScreen/f_90060_ com/mojang/realmsclient/gui/screens/RealmsUploadScreen/backButton +FD: com/mojang/realmsclient/gui/screens/RealmsUploadScreen/f_90061_ com/mojang/realmsclient/gui/screens/RealmsUploadScreen/cancelButton +FD: com/mojang/realmsclient/gui/screens/RealmsUploadScreen/f_90062_ com/mojang/realmsclient/gui/screens/RealmsUploadScreen/tickCount +FD: com/mojang/realmsclient/gui/screens/RealmsUploadScreen/f_90063_ com/mojang/realmsclient/gui/screens/RealmsUploadScreen/previousWrittenBytes +FD: com/mojang/realmsclient/gui/screens/RealmsUploadScreen/f_90064_ com/mojang/realmsclient/gui/screens/RealmsUploadScreen/previousTimeSnapshot +FD: com/mojang/realmsclient/gui/screens/RealmsUploadScreen/f_90065_ com/mojang/realmsclient/gui/screens/RealmsUploadScreen/bytesPersSecond +FD: com/mojang/realmsclient/gui/screens/RealmsUploadScreen/f_90066_ com/mojang/realmsclient/gui/screens/RealmsUploadScreen/callback +FD: com/mojang/realmsclient/gui/screens/RealmsUploadScreen/f_90067_ com/mojang/realmsclient/gui/screens/RealmsUploadScreen/LOGGER +FD: com/mojang/realmsclient/gui/screens/RealmsUploadScreen/f_90068_ com/mojang/realmsclient/gui/screens/RealmsUploadScreen/UPLOAD_LOCK +FD: com/mojang/realmsclient/gui/screens/RealmsUploadScreen/f_90069_ com/mojang/realmsclient/gui/screens/RealmsUploadScreen/DOTS +FD: com/mojang/realmsclient/gui/screens/RealmsUploadScreen/f_90070_ com/mojang/realmsclient/gui/screens/RealmsUploadScreen/VERIFYING_TEXT +FD: com/mojang/realmsclient/gui/screens/RealmsUploadScreen/f_90071_ com/mojang/realmsclient/gui/screens/RealmsUploadScreen/lastScreen +FD: com/mojang/realmsclient/gui/screens/RealmsUploadScreen/f_90072_ com/mojang/realmsclient/gui/screens/RealmsUploadScreen/selectedLevel +FD: com/mojang/realmsclient/gui/screens/RealmsUploadScreen/f_90073_ com/mojang/realmsclient/gui/screens/RealmsUploadScreen/worldId +FD: com/mojang/realmsclient/gui/screens/RealmsUploadScreen/f_90074_ com/mojang/realmsclient/gui/screens/RealmsUploadScreen/slotId +FD: com/mojang/realmsclient/gui/screens/RealmsUploadScreen/f_90075_ com/mojang/realmsclient/gui/screens/RealmsUploadScreen/uploadStatus +FD: com/mojang/realmsclient/gui/screens/RealmsUploadScreen/f_90076_ com/mojang/realmsclient/gui/screens/RealmsUploadScreen/narrationRateLimiter +FD: com/mojang/realmsclient/gui/screens/RealmsUploadScreen/f_90077_ com/mojang/realmsclient/gui/screens/RealmsUploadScreen/errorMessage +FD: com/mojang/realmsclient/gui/screens/RealmsUploadScreen/f_90078_ com/mojang/realmsclient/gui/screens/RealmsUploadScreen/status +FD: com/mojang/realmsclient/gui/screens/RealmsUploadScreen/f_90079_ com/mojang/realmsclient/gui/screens/RealmsUploadScreen/progress +FD: com/mojang/realmsclient/gui/screens/RealmsUploadScreen/f_90080_ com/mojang/realmsclient/gui/screens/RealmsUploadScreen/cancelled +FD: com/mojang/realmsclient/gui/screens/UploadResult/f_90133_ com/mojang/realmsclient/gui/screens/UploadResult/statusCode +FD: com/mojang/realmsclient/gui/screens/UploadResult/f_90134_ com/mojang/realmsclient/gui/screens/UploadResult/errorMessage +FD: com/mojang/realmsclient/gui/screens/UploadResult$Builder/f_90142_ com/mojang/realmsclient/gui/screens/UploadResult$Builder/statusCode +FD: com/mojang/realmsclient/gui/screens/UploadResult$Builder/f_90143_ com/mojang/realmsclient/gui/screens/UploadResult$Builder/errorMessage +FD: com/mojang/realmsclient/gui/task/DataFetcher/f_238658_ com/mojang/realmsclient/gui/task/DataFetcher/executor +FD: com/mojang/realmsclient/gui/task/DataFetcher/f_238747_ com/mojang/realmsclient/gui/task/DataFetcher/LOGGER +FD: com/mojang/realmsclient/gui/task/DataFetcher/f_238755_ com/mojang/realmsclient/gui/task/DataFetcher/resolution +FD: com/mojang/realmsclient/gui/task/DataFetcher/f_238834_ com/mojang/realmsclient/gui/task/DataFetcher/timeSource +FD: com/mojang/realmsclient/gui/task/DataFetcher$ComputationResult/f_238664_ com/mojang/realmsclient/gui/task/DataFetcher$ComputationResult/time +FD: com/mojang/realmsclient/gui/task/DataFetcher$ComputationResult/f_238822_ com/mojang/realmsclient/gui/task/DataFetcher$ComputationResult/value +FD: com/mojang/realmsclient/gui/task/DataFetcher$SubscribedTask/f_238534_ com/mojang/realmsclient/gui/task/DataFetcher$SubscribedTask/lastCheckTime +FD: com/mojang/realmsclient/gui/task/DataFetcher$SubscribedTask/f_238778_ com/mojang/realmsclient/gui/task/DataFetcher$SubscribedTask/task +FD: com/mojang/realmsclient/gui/task/DataFetcher$SubscribedTask/f_238821_ com/mojang/realmsclient/gui/task/DataFetcher$SubscribedTask/this$0 +FD: com/mojang/realmsclient/gui/task/DataFetcher$SubscribedTask/f_238835_ com/mojang/realmsclient/gui/task/DataFetcher$SubscribedTask/output +FD: com/mojang/realmsclient/gui/task/DataFetcher$Subscription/f_238520_ com/mojang/realmsclient/gui/task/DataFetcher$Subscription/subscriptions +FD: com/mojang/realmsclient/gui/task/DataFetcher$Subscription/f_238725_ com/mojang/realmsclient/gui/task/DataFetcher$Subscription/this$0 +FD: com/mojang/realmsclient/gui/task/DataFetcher$SuccessfulComputationResult/f_238529_ com/mojang/realmsclient/gui/task/DataFetcher$SuccessfulComputationResult/value +FD: com/mojang/realmsclient/gui/task/DataFetcher$SuccessfulComputationResult/f_238539_ com/mojang/realmsclient/gui/task/DataFetcher$SuccessfulComputationResult/time +FD: com/mojang/realmsclient/gui/task/DataFetcher$Task/f_238571_ com/mojang/realmsclient/gui/task/DataFetcher$Task/period +FD: com/mojang/realmsclient/gui/task/DataFetcher$Task/f_238608_ com/mojang/realmsclient/gui/task/DataFetcher$Task/id +FD: com/mojang/realmsclient/gui/task/DataFetcher$Task/f_238610_ com/mojang/realmsclient/gui/task/DataFetcher$Task/lastResult +FD: com/mojang/realmsclient/gui/task/DataFetcher$Task/f_238639_ com/mojang/realmsclient/gui/task/DataFetcher$Task/repeatStrategy +FD: com/mojang/realmsclient/gui/task/DataFetcher$Task/f_238640_ com/mojang/realmsclient/gui/task/DataFetcher$Task/updater +FD: com/mojang/realmsclient/gui/task/DataFetcher$Task/f_238738_ com/mojang/realmsclient/gui/task/DataFetcher$Task/this$0 +FD: com/mojang/realmsclient/gui/task/DataFetcher$Task/f_238812_ com/mojang/realmsclient/gui/task/DataFetcher$Task/nextUpdate +FD: com/mojang/realmsclient/gui/task/DataFetcher$Task/f_238827_ com/mojang/realmsclient/gui/task/DataFetcher$Task/pendingTask +FD: com/mojang/realmsclient/gui/task/RepeatedDelayStrategy/f_238691_ com/mojang/realmsclient/gui/task/RepeatedDelayStrategy/CONSTANT +FD: com/mojang/realmsclient/gui/task/RepeatedDelayStrategy$2/f_238635_ com/mojang/realmsclient/gui/task/RepeatedDelayStrategy$2/LOGGER +FD: com/mojang/realmsclient/gui/task/RepeatedDelayStrategy$2/f_238730_ com/mojang/realmsclient/gui/task/RepeatedDelayStrategy$2/failureCount +FD: com/mojang/realmsclient/gui/task/RepeatedDelayStrategy$2/f_238793_ com/mojang/realmsclient/gui/task/RepeatedDelayStrategy$2/val$maxBackoff +FD: com/mojang/realmsclient/util/LevelType/$VALUES com/mojang/realmsclient/util/LevelType/$VALUES +FD: com/mojang/realmsclient/util/LevelType/AMPLIFIED com/mojang/realmsclient/util/LevelType/AMPLIFIED +FD: com/mojang/realmsclient/util/LevelType/DEFAULT com/mojang/realmsclient/util/LevelType/DEFAULT +FD: com/mojang/realmsclient/util/LevelType/FLAT com/mojang/realmsclient/util/LevelType/FLAT +FD: com/mojang/realmsclient/util/LevelType/LARGE_BIOMES com/mojang/realmsclient/util/LevelType/LARGE_BIOMES +FD: com/mojang/realmsclient/util/LevelType/f_167598_ com/mojang/realmsclient/util/LevelType/index +FD: com/mojang/realmsclient/util/LevelType/f_167599_ com/mojang/realmsclient/util/LevelType/name +FD: com/mojang/realmsclient/util/RealmsPersistence/f_167613_ com/mojang/realmsclient/util/RealmsPersistence/FILE_NAME +FD: com/mojang/realmsclient/util/RealmsPersistence/f_240227_ com/mojang/realmsclient/util/RealmsPersistence/LOGGER +FD: com/mojang/realmsclient/util/RealmsPersistence/f_90169_ com/mojang/realmsclient/util/RealmsPersistence/GSON +FD: com/mojang/realmsclient/util/RealmsPersistence$RealmsPersistenceData/f_90175_ com/mojang/realmsclient/util/RealmsPersistence$RealmsPersistenceData/newsLink +FD: com/mojang/realmsclient/util/RealmsPersistence$RealmsPersistenceData/f_90176_ com/mojang/realmsclient/util/RealmsPersistence$RealmsPersistenceData/hasUnreadNews +FD: com/mojang/realmsclient/util/RealmsTextureManager/f_90178_ com/mojang/realmsclient/util/RealmsTextureManager/TEXTURES +FD: com/mojang/realmsclient/util/RealmsTextureManager/f_90181_ com/mojang/realmsclient/util/RealmsTextureManager/LOGGER +FD: com/mojang/realmsclient/util/RealmsTextureManager/f_90182_ com/mojang/realmsclient/util/RealmsTextureManager/TEMPLATE_ICON_LOCATION +FD: com/mojang/realmsclient/util/RealmsTextureManager$RealmsTexture/f_90205_ com/mojang/realmsclient/util/RealmsTextureManager$RealmsTexture/image +FD: com/mojang/realmsclient/util/RealmsTextureManager$RealmsTexture/f_90206_ com/mojang/realmsclient/util/RealmsTextureManager$RealmsTexture/textureId +FD: com/mojang/realmsclient/util/RealmsUtil/f_167619_ com/mojang/realmsclient/util/RealmsUtil/MINUTES +FD: com/mojang/realmsclient/util/RealmsUtil/f_167620_ com/mojang/realmsclient/util/RealmsUtil/HOURS +FD: com/mojang/realmsclient/util/RealmsUtil/f_167621_ com/mojang/realmsclient/util/RealmsUtil/DAYS +FD: com/mojang/realmsclient/util/RealmsUtil/f_268555_ com/mojang/realmsclient/util/RealmsUtil/GAME_PROFILE_CACHE +FD: com/mojang/realmsclient/util/RealmsUtil/f_286936_ com/mojang/realmsclient/util/RealmsUtil/RIGHT_NOW +FD: com/mojang/realmsclient/util/RealmsUtil/f_90216_ com/mojang/realmsclient/util/RealmsUtil/SESSION_SERVICE +FD: com/mojang/realmsclient/util/TextRenderingUtils$Line/f_90262_ com/mojang/realmsclient/util/TextRenderingUtils$Line/segments +FD: com/mojang/realmsclient/util/TextRenderingUtils$LineSegment/f_90269_ com/mojang/realmsclient/util/TextRenderingUtils$LineSegment/fullText +FD: com/mojang/realmsclient/util/TextRenderingUtils$LineSegment/f_90270_ com/mojang/realmsclient/util/TextRenderingUtils$LineSegment/linkTitle +FD: com/mojang/realmsclient/util/TextRenderingUtils$LineSegment/f_90271_ com/mojang/realmsclient/util/TextRenderingUtils$LineSegment/linkUrl +FD: com/mojang/realmsclient/util/UploadTokenCache/f_90290_ com/mojang/realmsclient/util/UploadTokenCache/TOKEN_CACHE +FD: com/mojang/realmsclient/util/WorldGenerationInfo/f_167627_ com/mojang/realmsclient/util/WorldGenerationInfo/seed +FD: com/mojang/realmsclient/util/WorldGenerationInfo/f_167628_ com/mojang/realmsclient/util/WorldGenerationInfo/levelType +FD: com/mojang/realmsclient/util/WorldGenerationInfo/f_167629_ com/mojang/realmsclient/util/WorldGenerationInfo/generateStructures +FD: com/mojang/realmsclient/util/task/CloseServerTask/f_202333_ com/mojang/realmsclient/util/task/CloseServerTask/LOGGER +FD: com/mojang/realmsclient/util/task/CloseServerTask/f_90299_ com/mojang/realmsclient/util/task/CloseServerTask/serverData +FD: com/mojang/realmsclient/util/task/CloseServerTask/f_90300_ com/mojang/realmsclient/util/task/CloseServerTask/configureScreen +FD: com/mojang/realmsclient/util/task/ConnectTask/f_90305_ com/mojang/realmsclient/util/task/ConnectTask/realmsConnect +FD: com/mojang/realmsclient/util/task/ConnectTask/f_90306_ com/mojang/realmsclient/util/task/ConnectTask/server +FD: com/mojang/realmsclient/util/task/ConnectTask/f_90307_ com/mojang/realmsclient/util/task/ConnectTask/address +FD: com/mojang/realmsclient/util/task/DownloadTask/f_202335_ com/mojang/realmsclient/util/task/DownloadTask/LOGGER +FD: com/mojang/realmsclient/util/task/DownloadTask/f_90315_ com/mojang/realmsclient/util/task/DownloadTask/worldId +FD: com/mojang/realmsclient/util/task/DownloadTask/f_90316_ com/mojang/realmsclient/util/task/DownloadTask/slot +FD: com/mojang/realmsclient/util/task/DownloadTask/f_90317_ com/mojang/realmsclient/util/task/DownloadTask/lastScreen +FD: com/mojang/realmsclient/util/task/DownloadTask/f_90318_ com/mojang/realmsclient/util/task/DownloadTask/downloadName +FD: com/mojang/realmsclient/util/task/GetServerDetailsTask/f_202337_ com/mojang/realmsclient/util/task/GetServerDetailsTask/LOGGER +FD: com/mojang/realmsclient/util/task/GetServerDetailsTask/f_90327_ com/mojang/realmsclient/util/task/GetServerDetailsTask/server +FD: com/mojang/realmsclient/util/task/GetServerDetailsTask/f_90328_ com/mojang/realmsclient/util/task/GetServerDetailsTask/lastScreen +FD: com/mojang/realmsclient/util/task/GetServerDetailsTask/f_90329_ com/mojang/realmsclient/util/task/GetServerDetailsTask/mainScreen +FD: com/mojang/realmsclient/util/task/GetServerDetailsTask/f_90330_ com/mojang/realmsclient/util/task/GetServerDetailsTask/connectLock +FD: com/mojang/realmsclient/util/task/LongRunningTask/f_167654_ com/mojang/realmsclient/util/task/LongRunningTask/NUMBER_OF_RETRIES +FD: com/mojang/realmsclient/util/task/LongRunningTask/f_90394_ com/mojang/realmsclient/util/task/LongRunningTask/LOGGER +FD: com/mojang/realmsclient/util/task/LongRunningTask/f_90395_ com/mojang/realmsclient/util/task/LongRunningTask/longRunningMcoTaskScreen +FD: com/mojang/realmsclient/util/task/OpenServerTask/f_181342_ com/mojang/realmsclient/util/task/OpenServerTask/minecraft +FD: com/mojang/realmsclient/util/task/OpenServerTask/f_202342_ com/mojang/realmsclient/util/task/OpenServerTask/LOGGER +FD: com/mojang/realmsclient/util/task/OpenServerTask/f_90413_ com/mojang/realmsclient/util/task/OpenServerTask/serverData +FD: com/mojang/realmsclient/util/task/OpenServerTask/f_90414_ com/mojang/realmsclient/util/task/OpenServerTask/returnScreen +FD: com/mojang/realmsclient/util/task/OpenServerTask/f_90415_ com/mojang/realmsclient/util/task/OpenServerTask/join +FD: com/mojang/realmsclient/util/task/OpenServerTask/f_90416_ com/mojang/realmsclient/util/task/OpenServerTask/mainScreen +FD: com/mojang/realmsclient/util/task/ResettingGeneratedWorldTask/f_167657_ com/mojang/realmsclient/util/task/ResettingGeneratedWorldTask/generationInfo +FD: com/mojang/realmsclient/util/task/ResettingTemplateWorldTask/f_167666_ com/mojang/realmsclient/util/task/ResettingTemplateWorldTask/template +FD: com/mojang/realmsclient/util/task/ResettingWorldTask/f_202344_ com/mojang/realmsclient/util/task/ResettingWorldTask/LOGGER +FD: com/mojang/realmsclient/util/task/ResettingWorldTask/f_90427_ com/mojang/realmsclient/util/task/ResettingWorldTask/serverId +FD: com/mojang/realmsclient/util/task/ResettingWorldTask/f_90428_ com/mojang/realmsclient/util/task/ResettingWorldTask/title +FD: com/mojang/realmsclient/util/task/ResettingWorldTask/f_90429_ com/mojang/realmsclient/util/task/ResettingWorldTask/callback +FD: com/mojang/realmsclient/util/task/RestoreTask/f_202346_ com/mojang/realmsclient/util/task/RestoreTask/LOGGER +FD: com/mojang/realmsclient/util/task/RestoreTask/f_90439_ com/mojang/realmsclient/util/task/RestoreTask/backup +FD: com/mojang/realmsclient/util/task/RestoreTask/f_90440_ com/mojang/realmsclient/util/task/RestoreTask/worldId +FD: com/mojang/realmsclient/util/task/RestoreTask/f_90441_ com/mojang/realmsclient/util/task/RestoreTask/lastScreen +FD: com/mojang/realmsclient/util/task/SwitchMinigameTask/f_202348_ com/mojang/realmsclient/util/task/SwitchMinigameTask/LOGGER +FD: com/mojang/realmsclient/util/task/SwitchMinigameTask/f_90447_ com/mojang/realmsclient/util/task/SwitchMinigameTask/worldId +FD: com/mojang/realmsclient/util/task/SwitchMinigameTask/f_90448_ com/mojang/realmsclient/util/task/SwitchMinigameTask/worldTemplate +FD: com/mojang/realmsclient/util/task/SwitchMinigameTask/f_90449_ com/mojang/realmsclient/util/task/SwitchMinigameTask/lastScreen +FD: com/mojang/realmsclient/util/task/SwitchSlotTask/f_202350_ com/mojang/realmsclient/util/task/SwitchSlotTask/LOGGER +FD: com/mojang/realmsclient/util/task/SwitchSlotTask/f_90455_ com/mojang/realmsclient/util/task/SwitchSlotTask/worldId +FD: com/mojang/realmsclient/util/task/SwitchSlotTask/f_90456_ com/mojang/realmsclient/util/task/SwitchSlotTask/slot +FD: com/mojang/realmsclient/util/task/SwitchSlotTask/f_90457_ com/mojang/realmsclient/util/task/SwitchSlotTask/callback +FD: com/mojang/realmsclient/util/task/WorldCreationTask/f_202352_ com/mojang/realmsclient/util/task/WorldCreationTask/LOGGER +FD: com/mojang/realmsclient/util/task/WorldCreationTask/f_90463_ com/mojang/realmsclient/util/task/WorldCreationTask/name +FD: com/mojang/realmsclient/util/task/WorldCreationTask/f_90464_ com/mojang/realmsclient/util/task/WorldCreationTask/motd +FD: com/mojang/realmsclient/util/task/WorldCreationTask/f_90465_ com/mojang/realmsclient/util/task/WorldCreationTask/worldId +FD: com/mojang/realmsclient/util/task/WorldCreationTask/f_90466_ com/mojang/realmsclient/util/task/WorldCreationTask/lastScreen +FD: net/minecraft/BlockUtil$FoundRectangle/f_124348_ net/minecraft/BlockUtil$FoundRectangle/minCorner +FD: net/minecraft/BlockUtil$FoundRectangle/f_124349_ net/minecraft/BlockUtil$FoundRectangle/axis1Size +FD: net/minecraft/BlockUtil$FoundRectangle/f_124350_ net/minecraft/BlockUtil$FoundRectangle/axis2Size +FD: net/minecraft/BlockUtil$IntBounds/f_124355_ net/minecraft/BlockUtil$IntBounds/min +FD: net/minecraft/BlockUtil$IntBounds/f_124356_ net/minecraft/BlockUtil$IntBounds/max +FD: net/minecraft/ChatFormatting/$VALUES net/minecraft/ChatFormatting/$VALUES +FD: net/minecraft/ChatFormatting/AQUA net/minecraft/ChatFormatting/AQUA +FD: net/minecraft/ChatFormatting/BLACK net/minecraft/ChatFormatting/BLACK +FD: net/minecraft/ChatFormatting/BLUE net/minecraft/ChatFormatting/BLUE +FD: net/minecraft/ChatFormatting/BOLD net/minecraft/ChatFormatting/BOLD +FD: net/minecraft/ChatFormatting/DARK_AQUA net/minecraft/ChatFormatting/DARK_AQUA +FD: net/minecraft/ChatFormatting/DARK_BLUE net/minecraft/ChatFormatting/DARK_BLUE +FD: net/minecraft/ChatFormatting/DARK_GRAY net/minecraft/ChatFormatting/DARK_GRAY +FD: net/minecraft/ChatFormatting/DARK_GREEN net/minecraft/ChatFormatting/DARK_GREEN +FD: net/minecraft/ChatFormatting/DARK_PURPLE net/minecraft/ChatFormatting/DARK_PURPLE +FD: net/minecraft/ChatFormatting/DARK_RED net/minecraft/ChatFormatting/DARK_RED +FD: net/minecraft/ChatFormatting/GOLD net/minecraft/ChatFormatting/GOLD +FD: net/minecraft/ChatFormatting/GRAY net/minecraft/ChatFormatting/GRAY +FD: net/minecraft/ChatFormatting/GREEN net/minecraft/ChatFormatting/GREEN +FD: net/minecraft/ChatFormatting/ITALIC net/minecraft/ChatFormatting/ITALIC +FD: net/minecraft/ChatFormatting/LIGHT_PURPLE net/minecraft/ChatFormatting/LIGHT_PURPLE +FD: net/minecraft/ChatFormatting/OBFUSCATED net/minecraft/ChatFormatting/OBFUSCATED +FD: net/minecraft/ChatFormatting/RED net/minecraft/ChatFormatting/RED +FD: net/minecraft/ChatFormatting/RESET net/minecraft/ChatFormatting/RESET +FD: net/minecraft/ChatFormatting/STRIKETHROUGH net/minecraft/ChatFormatting/STRIKETHROUGH +FD: net/minecraft/ChatFormatting/UNDERLINE net/minecraft/ChatFormatting/UNDERLINE +FD: net/minecraft/ChatFormatting/WHITE net/minecraft/ChatFormatting/WHITE +FD: net/minecraft/ChatFormatting/YELLOW net/minecraft/ChatFormatting/YELLOW +FD: net/minecraft/ChatFormatting/f_126592_ net/minecraft/ChatFormatting/isFormat +FD: net/minecraft/ChatFormatting/f_126593_ net/minecraft/ChatFormatting/toString +FD: net/minecraft/ChatFormatting/f_126594_ net/minecraft/ChatFormatting/id +FD: net/minecraft/ChatFormatting/f_126595_ net/minecraft/ChatFormatting/color +FD: net/minecraft/ChatFormatting/f_126619_ net/minecraft/ChatFormatting/FORMATTING_BY_NAME +FD: net/minecraft/ChatFormatting/f_126620_ net/minecraft/ChatFormatting/STRIP_FORMATTING_PATTERN +FD: net/minecraft/ChatFormatting/f_126621_ net/minecraft/ChatFormatting/name +FD: net/minecraft/ChatFormatting/f_126622_ net/minecraft/ChatFormatting/code +FD: net/minecraft/ChatFormatting/f_178509_ net/minecraft/ChatFormatting/PREFIX_CODE +FD: net/minecraft/ChatFormatting/f_236796_ net/minecraft/ChatFormatting/CODEC +FD: net/minecraft/CrashReport/f_127499_ net/minecraft/CrashReport/LOGGER +FD: net/minecraft/CrashReport/f_127500_ net/minecraft/CrashReport/title +FD: net/minecraft/CrashReport/f_127501_ net/minecraft/CrashReport/exception +FD: net/minecraft/CrashReport/f_127503_ net/minecraft/CrashReport/details +FD: net/minecraft/CrashReport/f_127504_ net/minecraft/CrashReport/saveFile +FD: net/minecraft/CrashReport/f_127505_ net/minecraft/CrashReport/trackingStackTrace +FD: net/minecraft/CrashReport/f_127506_ net/minecraft/CrashReport/uncategorizedStackTrace +FD: net/minecraft/CrashReport/f_178624_ net/minecraft/CrashReport/systemReport +FD: net/minecraft/CrashReport/f_241641_ net/minecraft/CrashReport/DATE_TIME_FORMATTER +FD: net/minecraft/CrashReportCategory/f_128137_ net/minecraft/CrashReportCategory/title +FD: net/minecraft/CrashReportCategory/f_128138_ net/minecraft/CrashReportCategory/entries +FD: net/minecraft/CrashReportCategory/f_128139_ net/minecraft/CrashReportCategory/stackTrace +FD: net/minecraft/CrashReportCategory$Entry/f_128178_ net/minecraft/CrashReportCategory$Entry/key +FD: net/minecraft/CrashReportCategory$Entry/f_128179_ net/minecraft/CrashReportCategory$Entry/value +FD: net/minecraft/DefaultUncaughtExceptionHandler/f_131075_ net/minecraft/DefaultUncaughtExceptionHandler/logger +FD: net/minecraft/DefaultUncaughtExceptionHandlerWithName/f_131799_ net/minecraft/DefaultUncaughtExceptionHandlerWithName/logger +FD: net/minecraft/DetectedVersion/f_132476_ net/minecraft/DetectedVersion/BUILT_IN +FD: net/minecraft/DetectedVersion/f_132477_ net/minecraft/DetectedVersion/LOGGER +FD: net/minecraft/DetectedVersion/f_132478_ net/minecraft/DetectedVersion/id +FD: net/minecraft/DetectedVersion/f_132479_ net/minecraft/DetectedVersion/name +FD: net/minecraft/DetectedVersion/f_132480_ net/minecraft/DetectedVersion/stable +FD: net/minecraft/DetectedVersion/f_132481_ net/minecraft/DetectedVersion/worldVersion +FD: net/minecraft/DetectedVersion/f_132482_ net/minecraft/DetectedVersion/protocolVersion +FD: net/minecraft/DetectedVersion/f_132484_ net/minecraft/DetectedVersion/buildTime +FD: net/minecraft/DetectedVersion/f_179761_ net/minecraft/DetectedVersion/resourcePackVersion +FD: net/minecraft/DetectedVersion/f_179762_ net/minecraft/DetectedVersion/dataPackVersion +FD: net/minecraft/FileUtil/f_133725_ net/minecraft/FileUtil/COPY_COUNTER_PATTERN +FD: net/minecraft/FileUtil/f_133726_ net/minecraft/FileUtil/RESERVED_WINDOWS_FILENAMES +FD: net/minecraft/FileUtil/f_179920_ net/minecraft/FileUtil/MAX_FILE_NAME +FD: net/minecraft/FileUtil/f_244114_ net/minecraft/FileUtil/STRICT_PATH_SEGMENT_CHECK +FD: net/minecraft/ReportedException/f_134758_ net/minecraft/ReportedException/report +FD: net/minecraft/SharedConstants/f_136180_ net/minecraft/SharedConstants/NETTY_LEAK_DETECTION +FD: net/minecraft/SharedConstants/f_136181_ net/minecraft/SharedConstants/MAXIMUM_TICK_TIME_NANOS +FD: net/minecraft/SharedConstants/f_136182_ net/minecraft/SharedConstants/CHECK_DATA_FIXER_SCHEMA +FD: net/minecraft/SharedConstants/f_136183_ net/minecraft/SharedConstants/IS_RUNNING_IN_IDE +FD: net/minecraft/SharedConstants/f_136184_ net/minecraft/SharedConstants/ILLEGAL_FILE_CHARACTERS +FD: net/minecraft/SharedConstants/f_136185_ net/minecraft/SharedConstants/CURRENT_VERSION +FD: net/minecraft/SharedConstants/f_142886_ net/minecraft/SharedConstants/DEBUG_WATER +FD: net/minecraft/SharedConstants/f_142887_ net/minecraft/SharedConstants/DEBUG_HEIGHTMAP +FD: net/minecraft/SharedConstants/f_142888_ net/minecraft/SharedConstants/DEBUG_COLLISION +FD: net/minecraft/SharedConstants/f_142889_ net/minecraft/SharedConstants/DEBUG_SHAPES +FD: net/minecraft/SharedConstants/f_142890_ net/minecraft/SharedConstants/DEBUG_NEIGHBORSUPDATE +FD: net/minecraft/SharedConstants/f_142891_ net/minecraft/SharedConstants/DEBUG_STRUCTURES +FD: net/minecraft/SharedConstants/f_142892_ net/minecraft/SharedConstants/DEBUG_LIGHT +FD: net/minecraft/SharedConstants/f_142893_ net/minecraft/SharedConstants/DEBUG_WORLDGENATTEMPT +FD: net/minecraft/SharedConstants/f_142894_ net/minecraft/SharedConstants/DEBUG_SOLID_FACE +FD: net/minecraft/SharedConstants/f_142895_ net/minecraft/SharedConstants/DEBUG_CHUNKS +FD: net/minecraft/SharedConstants/f_142896_ net/minecraft/SharedConstants/DEBUG_GAME_EVENT_LISTENERS +FD: net/minecraft/SharedConstants/f_142897_ net/minecraft/SharedConstants/DEBUG_DUMP_TEXTURE_ATLAS +FD: net/minecraft/SharedConstants/f_142898_ net/minecraft/SharedConstants/DEBUG_DUMP_INTERPOLATED_TEXTURE_FRAMES +FD: net/minecraft/SharedConstants/f_142899_ net/minecraft/SharedConstants/DEBUG_STRUCTURE_EDIT_MODE +FD: net/minecraft/SharedConstants/f_142900_ net/minecraft/SharedConstants/DEBUG_SAVE_STRUCTURES_AS_SNBT +FD: net/minecraft/SharedConstants/f_142901_ net/minecraft/SharedConstants/DEBUG_SYNCHRONOUS_GL_LOGS +FD: net/minecraft/SharedConstants/f_142902_ net/minecraft/SharedConstants/DEBUG_VERBOSE_SERVER_EVENTS +FD: net/minecraft/SharedConstants/f_142903_ net/minecraft/SharedConstants/DEBUG_NAMED_RUNNABLES +FD: net/minecraft/SharedConstants/f_142904_ net/minecraft/SharedConstants/DEBUG_GOAL_SELECTOR +FD: net/minecraft/SharedConstants/f_142905_ net/minecraft/SharedConstants/DEBUG_VILLAGE_SECTIONS +FD: net/minecraft/SharedConstants/f_142906_ net/minecraft/SharedConstants/DEBUG_BRAIN +FD: net/minecraft/SharedConstants/f_142907_ net/minecraft/SharedConstants/DEBUG_BEES +FD: net/minecraft/SharedConstants/f_142908_ net/minecraft/SharedConstants/DEBUG_RAIDS +FD: net/minecraft/SharedConstants/f_142909_ net/minecraft/SharedConstants/DEBUG_BLOCK_BREAK +FD: net/minecraft/SharedConstants/f_142910_ net/minecraft/SharedConstants/DEBUG_RESOURCE_LOAD_TIMES +FD: net/minecraft/SharedConstants/f_142911_ net/minecraft/SharedConstants/DEBUG_MONITOR_TICK_TIMES +FD: net/minecraft/SharedConstants/f_142912_ net/minecraft/SharedConstants/SNAPSHOT +FD: net/minecraft/SharedConstants/f_142913_ net/minecraft/SharedConstants/DEBUG_SHOW_SERVER_DEBUG_VALUES +FD: net/minecraft/SharedConstants/f_142914_ net/minecraft/SharedConstants/DEBUG_STORE_CHUNK_STACKTRACES +FD: net/minecraft/SharedConstants/f_142916_ net/minecraft/SharedConstants/WORLD_RESOLUTION +FD: net/minecraft/SharedConstants/f_142917_ net/minecraft/SharedConstants/MAX_CHAT_LENGTH +FD: net/minecraft/SharedConstants/f_142918_ net/minecraft/SharedConstants/MAX_COMMAND_LENGTH +FD: net/minecraft/SharedConstants/f_142919_ net/minecraft/SharedConstants/TICKS_PER_SECOND +FD: net/minecraft/SharedConstants/f_142920_ net/minecraft/SharedConstants/TICKS_PER_MINUTE +FD: net/minecraft/SharedConstants/f_142921_ net/minecraft/SharedConstants/TICKS_PER_GAME_DAY +FD: net/minecraft/SharedConstants/f_142922_ net/minecraft/SharedConstants/AVERAGE_GAME_TICKS_PER_RANDOM_TICK_PER_BLOCK +FD: net/minecraft/SharedConstants/f_142923_ net/minecraft/SharedConstants/AVERAGE_RANDOM_TICKS_PER_BLOCK_PER_MINUTE +FD: net/minecraft/SharedConstants/f_142924_ net/minecraft/SharedConstants/AVERAGE_RANDOM_TICKS_PER_BLOCK_PER_GAME_DAY +FD: net/minecraft/SharedConstants/f_142925_ net/minecraft/SharedConstants/SNAPSHOT_PROTOCOL_BIT +FD: net/minecraft/SharedConstants/f_142926_ net/minecraft/SharedConstants/DEBUG_KEEP_JIGSAW_BLOCKS_DURING_STRUCTURE_GEN +FD: net/minecraft/SharedConstants/f_142927_ net/minecraft/SharedConstants/DEBUG_DONT_SAVE_WORLD +FD: net/minecraft/SharedConstants/f_142928_ net/minecraft/SharedConstants/DEBUG_LARGE_DRIPSTONE +FD: net/minecraft/SharedConstants/f_142929_ net/minecraft/SharedConstants/DEBUG_PACKET_SERIALIZATION +FD: net/minecraft/SharedConstants/f_142930_ net/minecraft/SharedConstants/DEBUG_CARVERS +FD: net/minecraft/SharedConstants/f_142931_ net/minecraft/SharedConstants/DEBUG_ORE_VEINS +FD: net/minecraft/SharedConstants/f_142932_ net/minecraft/SharedConstants/DEBUG_SMALL_SPAWN +FD: net/minecraft/SharedConstants/f_142933_ net/minecraft/SharedConstants/DEBUG_DISABLE_LIQUID_SPREADING +FD: net/minecraft/SharedConstants/f_142934_ net/minecraft/SharedConstants/DEBUG_ONLY_GENERATE_HALF_THE_WORLD +FD: net/minecraft/SharedConstants/f_142935_ net/minecraft/SharedConstants/DEBUG_DISABLE_FLUID_GENERATION +FD: net/minecraft/SharedConstants/f_142936_ net/minecraft/SharedConstants/DEBUG_DISABLE_AQUIFERS +FD: net/minecraft/SharedConstants/f_142938_ net/minecraft/SharedConstants/DEBUG_DISABLE_SURFACE +FD: net/minecraft/SharedConstants/f_142939_ net/minecraft/SharedConstants/DEBUG_DISABLE_CARVERS +FD: net/minecraft/SharedConstants/f_142940_ net/minecraft/SharedConstants/DEBUG_DISABLE_STRUCTURES +FD: net/minecraft/SharedConstants/f_142941_ net/minecraft/SharedConstants/DEBUG_DISABLE_FEATURES +FD: net/minecraft/SharedConstants/f_142942_ net/minecraft/SharedConstants/DEBUG_DISABLE_ORE_VEINS +FD: net/minecraft/SharedConstants/f_142944_ net/minecraft/SharedConstants/DEFAULT_MINECRAFT_PORT +FD: net/minecraft/SharedConstants/f_142945_ net/minecraft/SharedConstants/INGAME_DEBUG_OUTPUT +FD: net/minecraft/SharedConstants/f_142946_ net/minecraft/SharedConstants/DEBUG_SUBTITLES +FD: net/minecraft/SharedConstants/f_142947_ net/minecraft/SharedConstants/FAKE_MS_LATENCY +FD: net/minecraft/SharedConstants/f_142948_ net/minecraft/SharedConstants/FAKE_MS_JITTER +FD: net/minecraft/SharedConstants/f_142949_ net/minecraft/SharedConstants/COMMAND_STACK_TRACES +FD: net/minecraft/SharedConstants/f_142950_ net/minecraft/SharedConstants/DEBUG_WORLD_RECREATE +FD: net/minecraft/SharedConstants/f_142951_ net/minecraft/SharedConstants/WORLD_VERSION +FD: net/minecraft/SharedConstants/f_142952_ net/minecraft/SharedConstants/VERSION_STRING +FD: net/minecraft/SharedConstants/f_142954_ net/minecraft/SharedConstants/RELEASE_NETWORK_PROTOCOL_VERSION +FD: net/minecraft/SharedConstants/f_142955_ net/minecraft/SharedConstants/SNAPSHOT_NETWORK_PROTOCOL_VERSION +FD: net/minecraft/SharedConstants/f_142956_ net/minecraft/SharedConstants/SNBT_NAG_VERSION +FD: net/minecraft/SharedConstants/f_142957_ net/minecraft/SharedConstants/RESOURCE_PACK_FORMAT +FD: net/minecraft/SharedConstants/f_142958_ net/minecraft/SharedConstants/DATA_PACK_FORMAT +FD: net/minecraft/SharedConstants/f_142959_ net/minecraft/SharedConstants/DATA_VERSION_TAG +FD: net/minecraft/SharedConstants/f_142965_ net/minecraft/SharedConstants/USE_NEW_RENDERSYSTEM +FD: net/minecraft/SharedConstants/f_142966_ net/minecraft/SharedConstants/MULTITHREADED_RENDERING +FD: net/minecraft/SharedConstants/f_142967_ net/minecraft/SharedConstants/FIX_TNT_DUPE +FD: net/minecraft/SharedConstants/f_142968_ net/minecraft/SharedConstants/FIX_SAND_DUPE +FD: net/minecraft/SharedConstants/f_142970_ net/minecraft/SharedConstants/USE_DEBUG_FEATURES +FD: net/minecraft/SharedConstants/f_142972_ net/minecraft/SharedConstants/DEBUG_HOTKEYS +FD: net/minecraft/SharedConstants/f_142973_ net/minecraft/SharedConstants/DEBUG_UI_NARRATION +FD: net/minecraft/SharedConstants/f_142974_ net/minecraft/SharedConstants/DEBUG_RENDER +FD: net/minecraft/SharedConstants/f_142975_ net/minecraft/SharedConstants/DEBUG_PATHFINDING +FD: net/minecraft/SharedConstants/f_183694_ net/minecraft/SharedConstants/DEBUG_FEATURE_COUNT +FD: net/minecraft/SharedConstants/f_183695_ net/minecraft/SharedConstants/DEBUG_IGNORE_LOCAL_MOB_CAP +FD: net/minecraft/SharedConstants/f_183696_ net/minecraft/SharedConstants/DEBUG_AQUIFERS +FD: net/minecraft/SharedConstants/f_183697_ net/minecraft/SharedConstants/DEBUG_JFR_PROFILING_ENABLE_LEVEL_LOADING +FD: net/minecraft/SharedConstants/f_183698_ net/minecraft/SharedConstants/debugGenerateSquareTerrainWithoutNoise +FD: net/minecraft/SharedConstants/f_183699_ net/minecraft/SharedConstants/debugGenerateStripedTerrainWithoutNoise +FD: net/minecraft/SharedConstants/f_183700_ net/minecraft/SharedConstants/DEBUG_DISABLE_BLENDING +FD: net/minecraft/SharedConstants/f_183701_ net/minecraft/SharedConstants/DEBUG_DISABLE_BELOW_ZERO_RETROGENERATION +FD: net/minecraft/SharedConstants/f_183702_ net/minecraft/SharedConstants/SERIES +FD: net/minecraft/SharedConstants/f_183703_ net/minecraft/SharedConstants/DEBUG_OPEN_INCOMPATIBLE_WORLDS +FD: net/minecraft/SharedConstants/f_183704_ net/minecraft/SharedConstants/DEBUG_ALLOW_LOW_SIM_DISTANCE +FD: net/minecraft/SharedConstants/f_201847_ net/minecraft/SharedConstants/THROW_ON_TASK_FAILURE +FD: net/minecraft/SharedConstants/f_214355_ net/minecraft/SharedConstants/MAX_CHAINED_NEIGHBOR_UPDATES +FD: net/minecraft/SharedConstants/f_214356_ net/minecraft/SharedConstants/DEBUG_SCULK_CATALYST +FD: net/minecraft/SharedConstants/f_214357_ net/minecraft/SharedConstants/DEBUG_BYPASS_REALMS_VERSION_CHECK +FD: net/minecraft/SharedConstants/f_238781_ net/minecraft/SharedConstants/DEBUG_SOCIAL_INTERACTIONS +FD: net/minecraft/SharedConstants/f_242499_ net/minecraft/SharedConstants/MAX_RENDER_DISTANCE +FD: net/minecraft/SharedConstants/f_243691_ net/minecraft/SharedConstants/DEBUG_VALIDATE_RESOURCE_PATH_CASE +FD: net/minecraft/SharedConstants/f_243898_ net/minecraft/SharedConstants/DEBUG_RESOURCE_GENERATION_OVERRIDE +FD: net/minecraft/SharedConstants/f_243916_ net/minecraft/SharedConstants/REPORT_FORMAT_VERSION +FD: net/minecraft/SharedConstants/f_244360_ net/minecraft/SharedConstants/LANGUAGE_FORMAT +FD: net/minecraft/SharedConstants/f_260664_ net/minecraft/SharedConstants/DEBUG_FORCE_TELEMETRY +FD: net/minecraft/SharedConstants/f_273866_ net/minecraft/SharedConstants/DATA_FIX_TYPES_TO_OPTIMIZE +FD: net/minecraft/SharedConstants/f_279535_ net/minecraft/SharedConstants/DEBUG_SKY_LIGHT_SECTIONS +FD: net/minecraft/SharedConstants/f_279621_ net/minecraft/SharedConstants/USE_WORKFLOWS_HOOKS +FD: net/minecraft/SharedConstants/f_285593_ net/minecraft/SharedConstants/DEBUG_SUPPORT_BLOCKS +FD: net/minecraft/SharedConstants/f_285651_ net/minecraft/SharedConstants/DEBUG_DONT_SEND_TELEMETRY_TO_BACKEND +FD: net/minecraft/SharedConstants/f_289041_ net/minecraft/SharedConstants/WORLD_ICON_SIZE +FD: net/minecraft/SystemReport/f_143506_ net/minecraft/SystemReport/BYTES_PER_MEBIBYTE +FD: net/minecraft/SystemReport/f_143507_ net/minecraft/SystemReport/ONE_GIGA +FD: net/minecraft/SystemReport/f_143508_ net/minecraft/SystemReport/LOGGER +FD: net/minecraft/SystemReport/f_143509_ net/minecraft/SystemReport/OPERATING_SYSTEM +FD: net/minecraft/SystemReport/f_143510_ net/minecraft/SystemReport/JAVA_VERSION +FD: net/minecraft/SystemReport/f_143511_ net/minecraft/SystemReport/JAVA_VM_VERSION +FD: net/minecraft/SystemReport/f_143512_ net/minecraft/SystemReport/entries +FD: net/minecraft/Util/f_137440_ net/minecraft/Util/timeSource +FD: net/minecraft/Util/f_137441_ net/minecraft/Util/NIL_UUID +FD: net/minecraft/Util/f_137442_ net/minecraft/Util/WORKER_COUNT +FD: net/minecraft/Util/f_137444_ net/minecraft/Util/BACKGROUND_EXECUTOR +FD: net/minecraft/Util/f_137445_ net/minecraft/Util/IO_POOL +FD: net/minecraft/Util/f_137446_ net/minecraft/Util/LOGGER +FD: net/minecraft/Util/f_143778_ net/minecraft/Util/ZIP_FILE_SYSTEM_PROVIDER +FD: net/minecraft/Util/f_183935_ net/minecraft/Util/DEFAULT_MAX_THREADS +FD: net/minecraft/Util/f_183936_ net/minecraft/Util/MAX_THREADS_SYSTEM_PROPERTY +FD: net/minecraft/Util/f_183937_ net/minecraft/Util/thePauser +FD: net/minecraft/Util/f_211544_ net/minecraft/Util/TICKER +FD: net/minecraft/Util/f_241646_ net/minecraft/Util/FILENAME_DATE_TIME_FORMATTER +FD: net/minecraft/Util$10/f_211547_ net/minecraft/Util$10/val$function +FD: net/minecraft/Util$10/f_211548_ net/minecraft/Util$10/cache +FD: net/minecraft/Util$11/f_214692_ net/minecraft/Util$11/val$function +FD: net/minecraft/Util$11/f_214693_ net/minecraft/Util$11/cache +FD: net/minecraft/Util$5/f_214703_ net/minecraft/Util$5/val$from +FD: net/minecraft/Util$5/f_214704_ net/minecraft/Util$5/val$to +FD: net/minecraft/Util$6/f_137608_ net/minecraft/Util$6/val$target +FD: net/minecraft/Util$7/f_211567_ net/minecraft/Util$7/val$target +FD: net/minecraft/Util$8/f_214708_ net/minecraft/Util$8/val$target +FD: net/minecraft/Util$IdentityStrategy/$VALUES net/minecraft/Util$IdentityStrategy/$VALUES +FD: net/minecraft/Util$IdentityStrategy/INSTANCE net/minecraft/Util$IdentityStrategy/INSTANCE +FD: net/minecraft/Util$OS/$VALUES net/minecraft/Util$OS/$VALUES +FD: net/minecraft/Util$OS/LINUX net/minecraft/Util$OS/LINUX +FD: net/minecraft/Util$OS/OSX net/minecraft/Util$OS/OSX +FD: net/minecraft/Util$OS/SOLARIS net/minecraft/Util$OS/SOLARIS +FD: net/minecraft/Util$OS/UNKNOWN net/minecraft/Util$OS/UNKNOWN +FD: net/minecraft/Util$OS/WINDOWS net/minecraft/Util$OS/WINDOWS +FD: net/minecraft/Util$OS/f_183994_ net/minecraft/Util$OS/telemetryName +FD: net/minecraft/advancements/Advancement/f_138298_ net/minecraft/advancements/Advancement/parent +FD: net/minecraft/advancements/Advancement/f_138299_ net/minecraft/advancements/Advancement/display +FD: net/minecraft/advancements/Advancement/f_138300_ net/minecraft/advancements/Advancement/rewards +FD: net/minecraft/advancements/Advancement/f_138301_ net/minecraft/advancements/Advancement/id +FD: net/minecraft/advancements/Advancement/f_138302_ net/minecraft/advancements/Advancement/criteria +FD: net/minecraft/advancements/Advancement/f_138303_ net/minecraft/advancements/Advancement/requirements +FD: net/minecraft/advancements/Advancement/f_138304_ net/minecraft/advancements/Advancement/children +FD: net/minecraft/advancements/Advancement/f_138305_ net/minecraft/advancements/Advancement/chatComponent +FD: net/minecraft/advancements/Advancement/f_285575_ net/minecraft/advancements/Advancement/sendsTelemetryEvent +FD: net/minecraft/advancements/Advancement$Builder/f_138332_ net/minecraft/advancements/Advancement$Builder/parentId +FD: net/minecraft/advancements/Advancement$Builder/f_138333_ net/minecraft/advancements/Advancement$Builder/parent +FD: net/minecraft/advancements/Advancement$Builder/f_138334_ net/minecraft/advancements/Advancement$Builder/display +FD: net/minecraft/advancements/Advancement$Builder/f_138335_ net/minecraft/advancements/Advancement$Builder/rewards +FD: net/minecraft/advancements/Advancement$Builder/f_138336_ net/minecraft/advancements/Advancement$Builder/criteria +FD: net/minecraft/advancements/Advancement$Builder/f_138337_ net/minecraft/advancements/Advancement$Builder/requirements +FD: net/minecraft/advancements/Advancement$Builder/f_138338_ net/minecraft/advancements/Advancement$Builder/requirementsStrategy +FD: net/minecraft/advancements/Advancement$Builder/f_285655_ net/minecraft/advancements/Advancement$Builder/sendsTelemetryEvent +FD: net/minecraft/advancements/AdvancementList/f_139325_ net/minecraft/advancements/AdvancementList/LOGGER +FD: net/minecraft/advancements/AdvancementList/f_139326_ net/minecraft/advancements/AdvancementList/advancements +FD: net/minecraft/advancements/AdvancementList/f_139327_ net/minecraft/advancements/AdvancementList/roots +FD: net/minecraft/advancements/AdvancementList/f_139328_ net/minecraft/advancements/AdvancementList/tasks +FD: net/minecraft/advancements/AdvancementList/f_139329_ net/minecraft/advancements/AdvancementList/listener +FD: net/minecraft/advancements/AdvancementProgress/f_8190_ net/minecraft/advancements/AdvancementProgress/criteria +FD: net/minecraft/advancements/AdvancementProgress/f_8191_ net/minecraft/advancements/AdvancementProgress/requirements +FD: net/minecraft/advancements/AdvancementRewards/f_9978_ net/minecraft/advancements/AdvancementRewards/EMPTY +FD: net/minecraft/advancements/AdvancementRewards/f_9979_ net/minecraft/advancements/AdvancementRewards/experience +FD: net/minecraft/advancements/AdvancementRewards/f_9980_ net/minecraft/advancements/AdvancementRewards/loot +FD: net/minecraft/advancements/AdvancementRewards/f_9981_ net/minecraft/advancements/AdvancementRewards/recipes +FD: net/minecraft/advancements/AdvancementRewards/f_9982_ net/minecraft/advancements/AdvancementRewards/function +FD: net/minecraft/advancements/AdvancementRewards$Builder/f_10000_ net/minecraft/advancements/AdvancementRewards$Builder/loot +FD: net/minecraft/advancements/AdvancementRewards$Builder/f_10001_ net/minecraft/advancements/AdvancementRewards$Builder/recipes +FD: net/minecraft/advancements/AdvancementRewards$Builder/f_10002_ net/minecraft/advancements/AdvancementRewards$Builder/function +FD: net/minecraft/advancements/AdvancementRewards$Builder/f_9999_ net/minecraft/advancements/AdvancementRewards$Builder/experience +FD: net/minecraft/advancements/CriteriaTriggers/f_10550_ net/minecraft/advancements/CriteriaTriggers/EFFECTS_CHANGED +FD: net/minecraft/advancements/CriteriaTriggers/f_10551_ net/minecraft/advancements/CriteriaTriggers/USED_TOTEM +FD: net/minecraft/advancements/CriteriaTriggers/f_10552_ net/minecraft/advancements/CriteriaTriggers/NETHER_TRAVEL +FD: net/minecraft/advancements/CriteriaTriggers/f_10553_ net/minecraft/advancements/CriteriaTriggers/FISHING_ROD_HOOKED +FD: net/minecraft/advancements/CriteriaTriggers/f_10554_ net/minecraft/advancements/CriteriaTriggers/CHANNELED_LIGHTNING +FD: net/minecraft/advancements/CriteriaTriggers/f_10555_ net/minecraft/advancements/CriteriaTriggers/SHOT_CROSSBOW +FD: net/minecraft/advancements/CriteriaTriggers/f_10556_ net/minecraft/advancements/CriteriaTriggers/KILLED_BY_CROSSBOW +FD: net/minecraft/advancements/CriteriaTriggers/f_10557_ net/minecraft/advancements/CriteriaTriggers/RAID_WIN +FD: net/minecraft/advancements/CriteriaTriggers/f_10558_ net/minecraft/advancements/CriteriaTriggers/BAD_OMEN +FD: net/minecraft/advancements/CriteriaTriggers/f_10559_ net/minecraft/advancements/CriteriaTriggers/HONEY_BLOCK_SLIDE +FD: net/minecraft/advancements/CriteriaTriggers/f_10560_ net/minecraft/advancements/CriteriaTriggers/BEE_NEST_DESTROYED +FD: net/minecraft/advancements/CriteriaTriggers/f_10561_ net/minecraft/advancements/CriteriaTriggers/TARGET_BLOCK_HIT +FD: net/minecraft/advancements/CriteriaTriggers/f_10562_ net/minecraft/advancements/CriteriaTriggers/ITEM_USED_ON_BLOCK +FD: net/minecraft/advancements/CriteriaTriggers/f_10563_ net/minecraft/advancements/CriteriaTriggers/GENERATE_LOOT +FD: net/minecraft/advancements/CriteriaTriggers/f_10565_ net/minecraft/advancements/CriteriaTriggers/PLAYER_INTERACTED_WITH_ENTITY +FD: net/minecraft/advancements/CriteriaTriggers/f_10566_ net/minecraft/advancements/CriteriaTriggers/CRITERIA +FD: net/minecraft/advancements/CriteriaTriggers/f_10567_ net/minecraft/advancements/CriteriaTriggers/IMPOSSIBLE +FD: net/minecraft/advancements/CriteriaTriggers/f_10568_ net/minecraft/advancements/CriteriaTriggers/PLAYER_KILLED_ENTITY +FD: net/minecraft/advancements/CriteriaTriggers/f_10569_ net/minecraft/advancements/CriteriaTriggers/ENTITY_KILLED_PLAYER +FD: net/minecraft/advancements/CriteriaTriggers/f_10570_ net/minecraft/advancements/CriteriaTriggers/ENTER_BLOCK +FD: net/minecraft/advancements/CriteriaTriggers/f_10571_ net/minecraft/advancements/CriteriaTriggers/INVENTORY_CHANGED +FD: net/minecraft/advancements/CriteriaTriggers/f_10572_ net/minecraft/advancements/CriteriaTriggers/RECIPE_UNLOCKED +FD: net/minecraft/advancements/CriteriaTriggers/f_10573_ net/minecraft/advancements/CriteriaTriggers/PLAYER_HURT_ENTITY +FD: net/minecraft/advancements/CriteriaTriggers/f_10574_ net/minecraft/advancements/CriteriaTriggers/ENTITY_HURT_PLAYER +FD: net/minecraft/advancements/CriteriaTriggers/f_10575_ net/minecraft/advancements/CriteriaTriggers/ENCHANTED_ITEM +FD: net/minecraft/advancements/CriteriaTriggers/f_10576_ net/minecraft/advancements/CriteriaTriggers/FILLED_BUCKET +FD: net/minecraft/advancements/CriteriaTriggers/f_10577_ net/minecraft/advancements/CriteriaTriggers/BREWED_POTION +FD: net/minecraft/advancements/CriteriaTriggers/f_10578_ net/minecraft/advancements/CriteriaTriggers/CONSTRUCT_BEACON +FD: net/minecraft/advancements/CriteriaTriggers/f_10579_ net/minecraft/advancements/CriteriaTriggers/USED_ENDER_EYE +FD: net/minecraft/advancements/CriteriaTriggers/f_10580_ net/minecraft/advancements/CriteriaTriggers/SUMMONED_ENTITY +FD: net/minecraft/advancements/CriteriaTriggers/f_10581_ net/minecraft/advancements/CriteriaTriggers/BRED_ANIMALS +FD: net/minecraft/advancements/CriteriaTriggers/f_10582_ net/minecraft/advancements/CriteriaTriggers/LOCATION +FD: net/minecraft/advancements/CriteriaTriggers/f_10583_ net/minecraft/advancements/CriteriaTriggers/SLEPT_IN_BED +FD: net/minecraft/advancements/CriteriaTriggers/f_10584_ net/minecraft/advancements/CriteriaTriggers/CURED_ZOMBIE_VILLAGER +FD: net/minecraft/advancements/CriteriaTriggers/f_10585_ net/minecraft/advancements/CriteriaTriggers/TRADE +FD: net/minecraft/advancements/CriteriaTriggers/f_10586_ net/minecraft/advancements/CriteriaTriggers/ITEM_DURABILITY_CHANGED +FD: net/minecraft/advancements/CriteriaTriggers/f_10587_ net/minecraft/advancements/CriteriaTriggers/LEVITATION +FD: net/minecraft/advancements/CriteriaTriggers/f_10588_ net/minecraft/advancements/CriteriaTriggers/CHANGED_DIMENSION +FD: net/minecraft/advancements/CriteriaTriggers/f_10589_ net/minecraft/advancements/CriteriaTriggers/TICK +FD: net/minecraft/advancements/CriteriaTriggers/f_10590_ net/minecraft/advancements/CriteriaTriggers/TAME_ANIMAL +FD: net/minecraft/advancements/CriteriaTriggers/f_10591_ net/minecraft/advancements/CriteriaTriggers/PLACED_BLOCK +FD: net/minecraft/advancements/CriteriaTriggers/f_10592_ net/minecraft/advancements/CriteriaTriggers/CONSUME_ITEM +FD: net/minecraft/advancements/CriteriaTriggers/f_145088_ net/minecraft/advancements/CriteriaTriggers/START_RIDING_TRIGGER +FD: net/minecraft/advancements/CriteriaTriggers/f_145089_ net/minecraft/advancements/CriteriaTriggers/LIGHTNING_STRIKE +FD: net/minecraft/advancements/CriteriaTriggers/f_145090_ net/minecraft/advancements/CriteriaTriggers/USING_ITEM +FD: net/minecraft/advancements/CriteriaTriggers/f_184759_ net/minecraft/advancements/CriteriaTriggers/FALL_FROM_HEIGHT +FD: net/minecraft/advancements/CriteriaTriggers/f_184760_ net/minecraft/advancements/CriteriaTriggers/RIDE_ENTITY_IN_LAVA_TRIGGER +FD: net/minecraft/advancements/CriteriaTriggers/f_215654_ net/minecraft/advancements/CriteriaTriggers/THROWN_ITEM_PICKED_UP_BY_ENTITY +FD: net/minecraft/advancements/CriteriaTriggers/f_215655_ net/minecraft/advancements/CriteriaTriggers/THROWN_ITEM_PICKED_UP_BY_PLAYER +FD: net/minecraft/advancements/CriteriaTriggers/f_215656_ net/minecraft/advancements/CriteriaTriggers/KILL_MOB_NEAR_SCULK_CATALYST +FD: net/minecraft/advancements/CriteriaTriggers/f_215657_ net/minecraft/advancements/CriteriaTriggers/ALLAY_DROP_ITEM_ON_BLOCK +FD: net/minecraft/advancements/CriteriaTriggers/f_215658_ net/minecraft/advancements/CriteriaTriggers/AVOID_VIBRATION +FD: net/minecraft/advancements/CriteriaTriggers/f_279543_ net/minecraft/advancements/CriteriaTriggers/RECIPE_CRAFTED +FD: net/minecraft/advancements/Criterion/f_11412_ net/minecraft/advancements/Criterion/trigger +FD: net/minecraft/advancements/CriterionProgress/f_12907_ net/minecraft/advancements/CriterionProgress/DATE_FORMAT +FD: net/minecraft/advancements/CriterionProgress/f_12908_ net/minecraft/advancements/CriterionProgress/obtained +FD: net/minecraft/advancements/CriterionTrigger$Listener/f_13678_ net/minecraft/advancements/CriterionTrigger$Listener/trigger +FD: net/minecraft/advancements/CriterionTrigger$Listener/f_13679_ net/minecraft/advancements/CriterionTrigger$Listener/advancement +FD: net/minecraft/advancements/CriterionTrigger$Listener/f_13680_ net/minecraft/advancements/CriterionTrigger$Listener/criterion +FD: net/minecraft/advancements/DisplayInfo/f_14958_ net/minecraft/advancements/DisplayInfo/title +FD: net/minecraft/advancements/DisplayInfo/f_14959_ net/minecraft/advancements/DisplayInfo/description +FD: net/minecraft/advancements/DisplayInfo/f_14960_ net/minecraft/advancements/DisplayInfo/icon +FD: net/minecraft/advancements/DisplayInfo/f_14961_ net/minecraft/advancements/DisplayInfo/background +FD: net/minecraft/advancements/DisplayInfo/f_14962_ net/minecraft/advancements/DisplayInfo/frame +FD: net/minecraft/advancements/DisplayInfo/f_14963_ net/minecraft/advancements/DisplayInfo/showToast +FD: net/minecraft/advancements/DisplayInfo/f_14964_ net/minecraft/advancements/DisplayInfo/announceChat +FD: net/minecraft/advancements/DisplayInfo/f_14965_ net/minecraft/advancements/DisplayInfo/hidden +FD: net/minecraft/advancements/DisplayInfo/f_14966_ net/minecraft/advancements/DisplayInfo/x +FD: net/minecraft/advancements/DisplayInfo/f_14967_ net/minecraft/advancements/DisplayInfo/y +FD: net/minecraft/advancements/FrameType/$VALUES net/minecraft/advancements/FrameType/$VALUES +FD: net/minecraft/advancements/FrameType/CHALLENGE net/minecraft/advancements/FrameType/CHALLENGE +FD: net/minecraft/advancements/FrameType/GOAL net/minecraft/advancements/FrameType/GOAL +FD: net/minecraft/advancements/FrameType/TASK net/minecraft/advancements/FrameType/TASK +FD: net/minecraft/advancements/FrameType/f_15536_ net/minecraft/advancements/FrameType/name +FD: net/minecraft/advancements/FrameType/f_15537_ net/minecraft/advancements/FrameType/texture +FD: net/minecraft/advancements/FrameType/f_15538_ net/minecraft/advancements/FrameType/chatColor +FD: net/minecraft/advancements/FrameType/f_15539_ net/minecraft/advancements/FrameType/displayName +FD: net/minecraft/advancements/RequirementsStrategy/f_15978_ net/minecraft/advancements/RequirementsStrategy/AND +FD: net/minecraft/advancements/RequirementsStrategy/f_15979_ net/minecraft/advancements/RequirementsStrategy/OR +FD: net/minecraft/advancements/TreeNodePosition/f_16554_ net/minecraft/advancements/TreeNodePosition/advancement +FD: net/minecraft/advancements/TreeNodePosition/f_16555_ net/minecraft/advancements/TreeNodePosition/parent +FD: net/minecraft/advancements/TreeNodePosition/f_16556_ net/minecraft/advancements/TreeNodePosition/previousSibling +FD: net/minecraft/advancements/TreeNodePosition/f_16557_ net/minecraft/advancements/TreeNodePosition/childIndex +FD: net/minecraft/advancements/TreeNodePosition/f_16558_ net/minecraft/advancements/TreeNodePosition/children +FD: net/minecraft/advancements/TreeNodePosition/f_16559_ net/minecraft/advancements/TreeNodePosition/ancestor +FD: net/minecraft/advancements/TreeNodePosition/f_16560_ net/minecraft/advancements/TreeNodePosition/thread +FD: net/minecraft/advancements/TreeNodePosition/f_16561_ net/minecraft/advancements/TreeNodePosition/x +FD: net/minecraft/advancements/TreeNodePosition/f_16562_ net/minecraft/advancements/TreeNodePosition/y +FD: net/minecraft/advancements/TreeNodePosition/f_16563_ net/minecraft/advancements/TreeNodePosition/mod +FD: net/minecraft/advancements/TreeNodePosition/f_16564_ net/minecraft/advancements/TreeNodePosition/change +FD: net/minecraft/advancements/TreeNodePosition/f_16565_ net/minecraft/advancements/TreeNodePosition/shift +FD: net/minecraft/advancements/critereon/AbstractCriterionTriggerInstance/f_16972_ net/minecraft/advancements/critereon/AbstractCriterionTriggerInstance/criterion +FD: net/minecraft/advancements/critereon/AbstractCriterionTriggerInstance/f_16973_ net/minecraft/advancements/critereon/AbstractCriterionTriggerInstance/player +FD: net/minecraft/advancements/critereon/BeeNestDestroyedTrigger/f_17473_ net/minecraft/advancements/critereon/BeeNestDestroyedTrigger/ID +FD: net/minecraft/advancements/critereon/BeeNestDestroyedTrigger$TriggerInstance/f_17500_ net/minecraft/advancements/critereon/BeeNestDestroyedTrigger$TriggerInstance/block +FD: net/minecraft/advancements/critereon/BeeNestDestroyedTrigger$TriggerInstance/f_17501_ net/minecraft/advancements/critereon/BeeNestDestroyedTrigger$TriggerInstance/item +FD: net/minecraft/advancements/critereon/BeeNestDestroyedTrigger$TriggerInstance/f_17502_ net/minecraft/advancements/critereon/BeeNestDestroyedTrigger$TriggerInstance/numBees +FD: net/minecraft/advancements/critereon/BlockPredicate/f_146710_ net/minecraft/advancements/critereon/BlockPredicate/blocks +FD: net/minecraft/advancements/critereon/BlockPredicate/f_17902_ net/minecraft/advancements/critereon/BlockPredicate/ANY +FD: net/minecraft/advancements/critereon/BlockPredicate/f_17903_ net/minecraft/advancements/critereon/BlockPredicate/tag +FD: net/minecraft/advancements/critereon/BlockPredicate/f_17905_ net/minecraft/advancements/critereon/BlockPredicate/properties +FD: net/minecraft/advancements/critereon/BlockPredicate/f_17906_ net/minecraft/advancements/critereon/BlockPredicate/nbt +FD: net/minecraft/advancements/critereon/BlockPredicate$Builder/f_146721_ net/minecraft/advancements/critereon/BlockPredicate$Builder/tag +FD: net/minecraft/advancements/critereon/BlockPredicate$Builder/f_17920_ net/minecraft/advancements/critereon/BlockPredicate$Builder/blocks +FD: net/minecraft/advancements/critereon/BlockPredicate$Builder/f_17921_ net/minecraft/advancements/critereon/BlockPredicate$Builder/properties +FD: net/minecraft/advancements/critereon/BlockPredicate$Builder/f_17922_ net/minecraft/advancements/critereon/BlockPredicate$Builder/nbt +FD: net/minecraft/advancements/critereon/BredAnimalsTrigger/f_18636_ net/minecraft/advancements/critereon/BredAnimalsTrigger/ID +FD: net/minecraft/advancements/critereon/BredAnimalsTrigger$TriggerInstance/f_18659_ net/minecraft/advancements/critereon/BredAnimalsTrigger$TriggerInstance/parent +FD: net/minecraft/advancements/critereon/BredAnimalsTrigger$TriggerInstance/f_18660_ net/minecraft/advancements/critereon/BredAnimalsTrigger$TriggerInstance/partner +FD: net/minecraft/advancements/critereon/BredAnimalsTrigger$TriggerInstance/f_18661_ net/minecraft/advancements/critereon/BredAnimalsTrigger$TriggerInstance/child +FD: net/minecraft/advancements/critereon/BrewedPotionTrigger/f_19116_ net/minecraft/advancements/critereon/BrewedPotionTrigger/ID +FD: net/minecraft/advancements/critereon/BrewedPotionTrigger$TriggerInstance/f_19137_ net/minecraft/advancements/critereon/BrewedPotionTrigger$TriggerInstance/potion +FD: net/minecraft/advancements/critereon/ChangeDimensionTrigger/f_19753_ net/minecraft/advancements/critereon/ChangeDimensionTrigger/ID +FD: net/minecraft/advancements/critereon/ChangeDimensionTrigger$TriggerInstance/f_19774_ net/minecraft/advancements/critereon/ChangeDimensionTrigger$TriggerInstance/from +FD: net/minecraft/advancements/critereon/ChangeDimensionTrigger$TriggerInstance/f_19775_ net/minecraft/advancements/critereon/ChangeDimensionTrigger$TriggerInstance/to +FD: net/minecraft/advancements/critereon/ChanneledLightningTrigger/f_21714_ net/minecraft/advancements/critereon/ChanneledLightningTrigger/ID +FD: net/minecraft/advancements/critereon/ChanneledLightningTrigger$TriggerInstance/f_21736_ net/minecraft/advancements/critereon/ChanneledLightningTrigger$TriggerInstance/victims +FD: net/minecraft/advancements/critereon/ConstructBeaconTrigger/f_22742_ net/minecraft/advancements/critereon/ConstructBeaconTrigger/ID +FD: net/minecraft/advancements/critereon/ConstructBeaconTrigger$TriggerInstance/f_22761_ net/minecraft/advancements/critereon/ConstructBeaconTrigger$TriggerInstance/level +FD: net/minecraft/advancements/critereon/ConsumeItemTrigger/f_23678_ net/minecraft/advancements/critereon/ConsumeItemTrigger/ID +FD: net/minecraft/advancements/critereon/ConsumeItemTrigger$TriggerInstance/f_23697_ net/minecraft/advancements/critereon/ConsumeItemTrigger$TriggerInstance/item +FD: net/minecraft/advancements/critereon/ContextAwarePredicate/f_285559_ net/minecraft/advancements/critereon/ContextAwarePredicate/compositePredicates +FD: net/minecraft/advancements/critereon/ContextAwarePredicate/f_285567_ net/minecraft/advancements/critereon/ContextAwarePredicate/ANY +FD: net/minecraft/advancements/critereon/ContextAwarePredicate/f_285622_ net/minecraft/advancements/critereon/ContextAwarePredicate/conditions +FD: net/minecraft/advancements/critereon/CuredZombieVillagerTrigger/f_24270_ net/minecraft/advancements/critereon/CuredZombieVillagerTrigger/ID +FD: net/minecraft/advancements/critereon/CuredZombieVillagerTrigger$TriggerInstance/f_24291_ net/minecraft/advancements/critereon/CuredZombieVillagerTrigger$TriggerInstance/zombie +FD: net/minecraft/advancements/critereon/CuredZombieVillagerTrigger$TriggerInstance/f_24292_ net/minecraft/advancements/critereon/CuredZombieVillagerTrigger$TriggerInstance/villager +FD: net/minecraft/advancements/critereon/DamagePredicate/f_24902_ net/minecraft/advancements/critereon/DamagePredicate/ANY +FD: net/minecraft/advancements/critereon/DamagePredicate/f_24903_ net/minecraft/advancements/critereon/DamagePredicate/dealtDamage +FD: net/minecraft/advancements/critereon/DamagePredicate/f_24904_ net/minecraft/advancements/critereon/DamagePredicate/takenDamage +FD: net/minecraft/advancements/critereon/DamagePredicate/f_24905_ net/minecraft/advancements/critereon/DamagePredicate/sourceEntity +FD: net/minecraft/advancements/critereon/DamagePredicate/f_24906_ net/minecraft/advancements/critereon/DamagePredicate/blocked +FD: net/minecraft/advancements/critereon/DamagePredicate/f_24907_ net/minecraft/advancements/critereon/DamagePredicate/type +FD: net/minecraft/advancements/critereon/DamagePredicate$Builder/f_24925_ net/minecraft/advancements/critereon/DamagePredicate$Builder/dealtDamage +FD: net/minecraft/advancements/critereon/DamagePredicate$Builder/f_24926_ net/minecraft/advancements/critereon/DamagePredicate$Builder/takenDamage +FD: net/minecraft/advancements/critereon/DamagePredicate$Builder/f_24927_ net/minecraft/advancements/critereon/DamagePredicate$Builder/sourceEntity +FD: net/minecraft/advancements/critereon/DamagePredicate$Builder/f_24928_ net/minecraft/advancements/critereon/DamagePredicate$Builder/blocked +FD: net/minecraft/advancements/critereon/DamagePredicate$Builder/f_24929_ net/minecraft/advancements/critereon/DamagePredicate$Builder/type +FD: net/minecraft/advancements/critereon/DamageSourcePredicate/f_25420_ net/minecraft/advancements/critereon/DamageSourcePredicate/ANY +FD: net/minecraft/advancements/critereon/DamageSourcePredicate/f_25429_ net/minecraft/advancements/critereon/DamageSourcePredicate/directEntity +FD: net/minecraft/advancements/critereon/DamageSourcePredicate/f_25430_ net/minecraft/advancements/critereon/DamageSourcePredicate/sourceEntity +FD: net/minecraft/advancements/critereon/DamageSourcePredicate/f_268608_ net/minecraft/advancements/critereon/DamageSourcePredicate/tags +FD: net/minecraft/advancements/critereon/DamageSourcePredicate$Builder/f_25468_ net/minecraft/advancements/critereon/DamageSourcePredicate$Builder/directEntity +FD: net/minecraft/advancements/critereon/DamageSourcePredicate$Builder/f_25469_ net/minecraft/advancements/critereon/DamageSourcePredicate$Builder/sourceEntity +FD: net/minecraft/advancements/critereon/DamageSourcePredicate$Builder/f_268703_ net/minecraft/advancements/critereon/DamageSourcePredicate$Builder/tags +FD: net/minecraft/advancements/critereon/DeserializationContext/f_25865_ net/minecraft/advancements/critereon/DeserializationContext/LOGGER +FD: net/minecraft/advancements/critereon/DeserializationContext/f_25866_ net/minecraft/advancements/critereon/DeserializationContext/id +FD: net/minecraft/advancements/critereon/DeserializationContext/f_25868_ net/minecraft/advancements/critereon/DeserializationContext/predicateGson +FD: net/minecraft/advancements/critereon/DeserializationContext/f_278452_ net/minecraft/advancements/critereon/DeserializationContext/lootData +FD: net/minecraft/advancements/critereon/DistancePredicate/f_26241_ net/minecraft/advancements/critereon/DistancePredicate/ANY +FD: net/minecraft/advancements/critereon/DistancePredicate/f_26242_ net/minecraft/advancements/critereon/DistancePredicate/x +FD: net/minecraft/advancements/critereon/DistancePredicate/f_26243_ net/minecraft/advancements/critereon/DistancePredicate/y +FD: net/minecraft/advancements/critereon/DistancePredicate/f_26244_ net/minecraft/advancements/critereon/DistancePredicate/z +FD: net/minecraft/advancements/critereon/DistancePredicate/f_26245_ net/minecraft/advancements/critereon/DistancePredicate/horizontal +FD: net/minecraft/advancements/critereon/DistancePredicate/f_26246_ net/minecraft/advancements/critereon/DistancePredicate/absolute +FD: net/minecraft/advancements/critereon/DistanceTrigger/f_186161_ net/minecraft/advancements/critereon/DistanceTrigger/id +FD: net/minecraft/advancements/critereon/DistanceTrigger$TriggerInstance/f_186181_ net/minecraft/advancements/critereon/DistanceTrigger$TriggerInstance/startPosition +FD: net/minecraft/advancements/critereon/DistanceTrigger$TriggerInstance/f_186182_ net/minecraft/advancements/critereon/DistanceTrigger$TriggerInstance/distance +FD: net/minecraft/advancements/critereon/EffectsChangedTrigger/f_26756_ net/minecraft/advancements/critereon/EffectsChangedTrigger/ID +FD: net/minecraft/advancements/critereon/EffectsChangedTrigger$TriggerInstance/f_149269_ net/minecraft/advancements/critereon/EffectsChangedTrigger$TriggerInstance/source +FD: net/minecraft/advancements/critereon/EffectsChangedTrigger$TriggerInstance/f_26774_ net/minecraft/advancements/critereon/EffectsChangedTrigger$TriggerInstance/effects +FD: net/minecraft/advancements/critereon/EnchantedItemTrigger/f_27664_ net/minecraft/advancements/critereon/EnchantedItemTrigger/ID +FD: net/minecraft/advancements/critereon/EnchantedItemTrigger$TriggerInstance/f_27685_ net/minecraft/advancements/critereon/EnchantedItemTrigger$TriggerInstance/item +FD: net/minecraft/advancements/critereon/EnchantedItemTrigger$TriggerInstance/f_27686_ net/minecraft/advancements/critereon/EnchantedItemTrigger$TriggerInstance/levels +FD: net/minecraft/advancements/critereon/EnchantmentPredicate/f_30464_ net/minecraft/advancements/critereon/EnchantmentPredicate/ANY +FD: net/minecraft/advancements/critereon/EnchantmentPredicate/f_30465_ net/minecraft/advancements/critereon/EnchantmentPredicate/NONE +FD: net/minecraft/advancements/critereon/EnchantmentPredicate/f_30466_ net/minecraft/advancements/critereon/EnchantmentPredicate/enchantment +FD: net/minecraft/advancements/critereon/EnchantmentPredicate/f_30467_ net/minecraft/advancements/critereon/EnchantmentPredicate/level +FD: net/minecraft/advancements/critereon/EnterBlockTrigger/f_31265_ net/minecraft/advancements/critereon/EnterBlockTrigger/ID +FD: net/minecraft/advancements/critereon/EnterBlockTrigger$TriggerInstance/f_31291_ net/minecraft/advancements/critereon/EnterBlockTrigger$TriggerInstance/block +FD: net/minecraft/advancements/critereon/EnterBlockTrigger$TriggerInstance/f_31292_ net/minecraft/advancements/critereon/EnterBlockTrigger$TriggerInstance/state +FD: net/minecraft/advancements/critereon/EntityEquipmentPredicate/f_32176_ net/minecraft/advancements/critereon/EntityEquipmentPredicate/ANY +FD: net/minecraft/advancements/critereon/EntityEquipmentPredicate/f_32177_ net/minecraft/advancements/critereon/EntityEquipmentPredicate/CAPTAIN +FD: net/minecraft/advancements/critereon/EntityEquipmentPredicate/f_32178_ net/minecraft/advancements/critereon/EntityEquipmentPredicate/head +FD: net/minecraft/advancements/critereon/EntityEquipmentPredicate/f_32179_ net/minecraft/advancements/critereon/EntityEquipmentPredicate/chest +FD: net/minecraft/advancements/critereon/EntityEquipmentPredicate/f_32180_ net/minecraft/advancements/critereon/EntityEquipmentPredicate/legs +FD: net/minecraft/advancements/critereon/EntityEquipmentPredicate/f_32181_ net/minecraft/advancements/critereon/EntityEquipmentPredicate/feet +FD: net/minecraft/advancements/critereon/EntityEquipmentPredicate/f_32182_ net/minecraft/advancements/critereon/EntityEquipmentPredicate/mainhand +FD: net/minecraft/advancements/critereon/EntityEquipmentPredicate/f_32183_ net/minecraft/advancements/critereon/EntityEquipmentPredicate/offhand +FD: net/minecraft/advancements/critereon/EntityEquipmentPredicate$Builder/f_32197_ net/minecraft/advancements/critereon/EntityEquipmentPredicate$Builder/head +FD: net/minecraft/advancements/critereon/EntityEquipmentPredicate$Builder/f_32198_ net/minecraft/advancements/critereon/EntityEquipmentPredicate$Builder/chest +FD: net/minecraft/advancements/critereon/EntityEquipmentPredicate$Builder/f_32199_ net/minecraft/advancements/critereon/EntityEquipmentPredicate$Builder/legs +FD: net/minecraft/advancements/critereon/EntityEquipmentPredicate$Builder/f_32200_ net/minecraft/advancements/critereon/EntityEquipmentPredicate$Builder/feet +FD: net/minecraft/advancements/critereon/EntityEquipmentPredicate$Builder/f_32201_ net/minecraft/advancements/critereon/EntityEquipmentPredicate$Builder/mainhand +FD: net/minecraft/advancements/critereon/EntityEquipmentPredicate$Builder/f_32202_ net/minecraft/advancements/critereon/EntityEquipmentPredicate$Builder/offhand +FD: net/minecraft/advancements/critereon/EntityFlagsPredicate/f_33682_ net/minecraft/advancements/critereon/EntityFlagsPredicate/ANY +FD: net/minecraft/advancements/critereon/EntityFlagsPredicate/f_33683_ net/minecraft/advancements/critereon/EntityFlagsPredicate/isOnFire +FD: net/minecraft/advancements/critereon/EntityFlagsPredicate/f_33684_ net/minecraft/advancements/critereon/EntityFlagsPredicate/isCrouching +FD: net/minecraft/advancements/critereon/EntityFlagsPredicate/f_33685_ net/minecraft/advancements/critereon/EntityFlagsPredicate/isSprinting +FD: net/minecraft/advancements/critereon/EntityFlagsPredicate/f_33686_ net/minecraft/advancements/critereon/EntityFlagsPredicate/isSwimming +FD: net/minecraft/advancements/critereon/EntityFlagsPredicate/f_33687_ net/minecraft/advancements/critereon/EntityFlagsPredicate/isBaby +FD: net/minecraft/advancements/critereon/EntityFlagsPredicate$Builder/f_33707_ net/minecraft/advancements/critereon/EntityFlagsPredicate$Builder/isOnFire +FD: net/minecraft/advancements/critereon/EntityFlagsPredicate$Builder/f_33708_ net/minecraft/advancements/critereon/EntityFlagsPredicate$Builder/isCrouching +FD: net/minecraft/advancements/critereon/EntityFlagsPredicate$Builder/f_33709_ net/minecraft/advancements/critereon/EntityFlagsPredicate$Builder/isSprinting +FD: net/minecraft/advancements/critereon/EntityFlagsPredicate$Builder/f_33710_ net/minecraft/advancements/critereon/EntityFlagsPredicate$Builder/isSwimming +FD: net/minecraft/advancements/critereon/EntityFlagsPredicate$Builder/f_33711_ net/minecraft/advancements/critereon/EntityFlagsPredicate$Builder/isBaby +FD: net/minecraft/advancements/critereon/EntityHurtPlayerTrigger/f_35170_ net/minecraft/advancements/critereon/EntityHurtPlayerTrigger/ID +FD: net/minecraft/advancements/critereon/EntityHurtPlayerTrigger$TriggerInstance/f_35196_ net/minecraft/advancements/critereon/EntityHurtPlayerTrigger$TriggerInstance/damage +FD: net/minecraft/advancements/critereon/EntityPredicate/f_150285_ net/minecraft/advancements/critereon/EntityPredicate/steppingOnLocation +FD: net/minecraft/advancements/critereon/EntityPredicate/f_150287_ net/minecraft/advancements/critereon/EntityPredicate/passenger +FD: net/minecraft/advancements/critereon/EntityPredicate/f_218773_ net/minecraft/advancements/critereon/EntityPredicate/subPredicate +FD: net/minecraft/advancements/critereon/EntityPredicate/f_36550_ net/minecraft/advancements/critereon/EntityPredicate/ANY +FD: net/minecraft/advancements/critereon/EntityPredicate/f_36551_ net/minecraft/advancements/critereon/EntityPredicate/entityType +FD: net/minecraft/advancements/critereon/EntityPredicate/f_36552_ net/minecraft/advancements/critereon/EntityPredicate/distanceToPlayer +FD: net/minecraft/advancements/critereon/EntityPredicate/f_36553_ net/minecraft/advancements/critereon/EntityPredicate/location +FD: net/minecraft/advancements/critereon/EntityPredicate/f_36554_ net/minecraft/advancements/critereon/EntityPredicate/effects +FD: net/minecraft/advancements/critereon/EntityPredicate/f_36555_ net/minecraft/advancements/critereon/EntityPredicate/nbt +FD: net/minecraft/advancements/critereon/EntityPredicate/f_36556_ net/minecraft/advancements/critereon/EntityPredicate/flags +FD: net/minecraft/advancements/critereon/EntityPredicate/f_36557_ net/minecraft/advancements/critereon/EntityPredicate/equipment +FD: net/minecraft/advancements/critereon/EntityPredicate/f_36560_ net/minecraft/advancements/critereon/EntityPredicate/vehicle +FD: net/minecraft/advancements/critereon/EntityPredicate/f_36561_ net/minecraft/advancements/critereon/EntityPredicate/targetedEntity +FD: net/minecraft/advancements/critereon/EntityPredicate/f_36562_ net/minecraft/advancements/critereon/EntityPredicate/team +FD: net/minecraft/advancements/critereon/EntityPredicate$Builder/f_150323_ net/minecraft/advancements/critereon/EntityPredicate$Builder/steppingOnLocation +FD: net/minecraft/advancements/critereon/EntityPredicate$Builder/f_150325_ net/minecraft/advancements/critereon/EntityPredicate$Builder/passenger +FD: net/minecraft/advancements/critereon/EntityPredicate$Builder/f_218799_ net/minecraft/advancements/critereon/EntityPredicate$Builder/subPredicate +FD: net/minecraft/advancements/critereon/EntityPredicate$Builder/f_36619_ net/minecraft/advancements/critereon/EntityPredicate$Builder/entityType +FD: net/minecraft/advancements/critereon/EntityPredicate$Builder/f_36620_ net/minecraft/advancements/critereon/EntityPredicate$Builder/distanceToPlayer +FD: net/minecraft/advancements/critereon/EntityPredicate$Builder/f_36621_ net/minecraft/advancements/critereon/EntityPredicate$Builder/location +FD: net/minecraft/advancements/critereon/EntityPredicate$Builder/f_36622_ net/minecraft/advancements/critereon/EntityPredicate$Builder/effects +FD: net/minecraft/advancements/critereon/EntityPredicate$Builder/f_36623_ net/minecraft/advancements/critereon/EntityPredicate$Builder/nbt +FD: net/minecraft/advancements/critereon/EntityPredicate$Builder/f_36624_ net/minecraft/advancements/critereon/EntityPredicate$Builder/flags +FD: net/minecraft/advancements/critereon/EntityPredicate$Builder/f_36625_ net/minecraft/advancements/critereon/EntityPredicate$Builder/equipment +FD: net/minecraft/advancements/critereon/EntityPredicate$Builder/f_36628_ net/minecraft/advancements/critereon/EntityPredicate$Builder/vehicle +FD: net/minecraft/advancements/critereon/EntityPredicate$Builder/f_36629_ net/minecraft/advancements/critereon/EntityPredicate$Builder/targetedEntity +FD: net/minecraft/advancements/critereon/EntityPredicate$Builder/f_36630_ net/minecraft/advancements/critereon/EntityPredicate$Builder/team +FD: net/minecraft/advancements/critereon/EntitySubPredicate/f_218826_ net/minecraft/advancements/critereon/EntitySubPredicate/ANY +FD: net/minecraft/advancements/critereon/EntitySubPredicate$Types/f_218847_ net/minecraft/advancements/critereon/EntitySubPredicate$Types/ANY +FD: net/minecraft/advancements/critereon/EntitySubPredicate$Types/f_218848_ net/minecraft/advancements/critereon/EntitySubPredicate$Types/LIGHTNING +FD: net/minecraft/advancements/critereon/EntitySubPredicate$Types/f_218849_ net/minecraft/advancements/critereon/EntitySubPredicate$Types/FISHING_HOOK +FD: net/minecraft/advancements/critereon/EntitySubPredicate$Types/f_218850_ net/minecraft/advancements/critereon/EntitySubPredicate$Types/PLAYER +FD: net/minecraft/advancements/critereon/EntitySubPredicate$Types/f_218851_ net/minecraft/advancements/critereon/EntitySubPredicate$Types/SLIME +FD: net/minecraft/advancements/critereon/EntitySubPredicate$Types/f_218852_ net/minecraft/advancements/critereon/EntitySubPredicate$Types/CAT +FD: net/minecraft/advancements/critereon/EntitySubPredicate$Types/f_218853_ net/minecraft/advancements/critereon/EntitySubPredicate$Types/FROG +FD: net/minecraft/advancements/critereon/EntitySubPredicate$Types/f_218854_ net/minecraft/advancements/critereon/EntitySubPredicate$Types/TYPES +FD: net/minecraft/advancements/critereon/EntitySubPredicate$Types/f_262202_ net/minecraft/advancements/critereon/EntitySubPredicate$Types/MOOSHROOM +FD: net/minecraft/advancements/critereon/EntitySubPredicate$Types/f_262221_ net/minecraft/advancements/critereon/EntitySubPredicate$Types/TROPICAL_FISH +FD: net/minecraft/advancements/critereon/EntitySubPredicate$Types/f_262222_ net/minecraft/advancements/critereon/EntitySubPredicate$Types/BOAT +FD: net/minecraft/advancements/critereon/EntitySubPredicate$Types/f_262231_ net/minecraft/advancements/critereon/EntitySubPredicate$Types/PARROT +FD: net/minecraft/advancements/critereon/EntitySubPredicate$Types/f_262257_ net/minecraft/advancements/critereon/EntitySubPredicate$Types/AXOLOTL +FD: net/minecraft/advancements/critereon/EntitySubPredicate$Types/f_262259_ net/minecraft/advancements/critereon/EntitySubPredicate$Types/HORSE +FD: net/minecraft/advancements/critereon/EntitySubPredicate$Types/f_262265_ net/minecraft/advancements/critereon/EntitySubPredicate$Types/VILLAGER +FD: net/minecraft/advancements/critereon/EntitySubPredicate$Types/f_262266_ net/minecraft/advancements/critereon/EntitySubPredicate$Types/LLAMA +FD: net/minecraft/advancements/critereon/EntitySubPredicate$Types/f_262285_ net/minecraft/advancements/critereon/EntitySubPredicate$Types/RABBIT +FD: net/minecraft/advancements/critereon/EntitySubPredicate$Types/f_262296_ net/minecraft/advancements/critereon/EntitySubPredicate$Types/PAINTING +FD: net/minecraft/advancements/critereon/EntitySubPredicate$Types/f_262303_ net/minecraft/advancements/critereon/EntitySubPredicate$Types/FOX +FD: net/minecraft/advancements/critereon/EntityTypePredicate/f_37636_ net/minecraft/advancements/critereon/EntityTypePredicate/ANY +FD: net/minecraft/advancements/critereon/EntityTypePredicate/f_37637_ net/minecraft/advancements/critereon/EntityTypePredicate/COMMA_JOINER +FD: net/minecraft/advancements/critereon/EntityTypePredicate$TagPredicate/f_37653_ net/minecraft/advancements/critereon/EntityTypePredicate$TagPredicate/tag +FD: net/minecraft/advancements/critereon/EntityTypePredicate$TypePredicate/f_37659_ net/minecraft/advancements/critereon/EntityTypePredicate$TypePredicate/type +FD: net/minecraft/advancements/critereon/EntityVariantPredicate/f_219082_ net/minecraft/advancements/critereon/EntityVariantPredicate/VARIANT_KEY +FD: net/minecraft/advancements/critereon/EntityVariantPredicate/f_219084_ net/minecraft/advancements/critereon/EntityVariantPredicate/getter +FD: net/minecraft/advancements/critereon/EntityVariantPredicate/f_219085_ net/minecraft/advancements/critereon/EntityVariantPredicate/type +FD: net/minecraft/advancements/critereon/EntityVariantPredicate/f_262213_ net/minecraft/advancements/critereon/EntityVariantPredicate/variantCodec +FD: net/minecraft/advancements/critereon/EntityVariantPredicate$1/f_219098_ net/minecraft/advancements/critereon/EntityVariantPredicate$1/val$variant +FD: net/minecraft/advancements/critereon/EntityVariantPredicate$1/f_219099_ net/minecraft/advancements/critereon/EntityVariantPredicate$1/this$0 +FD: net/minecraft/advancements/critereon/FilledBucketTrigger/f_38768_ net/minecraft/advancements/critereon/FilledBucketTrigger/ID +FD: net/minecraft/advancements/critereon/FilledBucketTrigger$TriggerInstance/f_38787_ net/minecraft/advancements/critereon/FilledBucketTrigger$TriggerInstance/item +FD: net/minecraft/advancements/critereon/FishingHookPredicate/f_150706_ net/minecraft/advancements/critereon/FishingHookPredicate/IN_OPEN_WATER_KEY +FD: net/minecraft/advancements/critereon/FishingHookPredicate/f_39756_ net/minecraft/advancements/critereon/FishingHookPredicate/ANY +FD: net/minecraft/advancements/critereon/FishingHookPredicate/f_39757_ net/minecraft/advancements/critereon/FishingHookPredicate/inOpenWater +FD: net/minecraft/advancements/critereon/FishingRodHookedTrigger/f_40412_ net/minecraft/advancements/critereon/FishingRodHookedTrigger/ID +FD: net/minecraft/advancements/critereon/FishingRodHookedTrigger$TriggerInstance/f_40435_ net/minecraft/advancements/critereon/FishingRodHookedTrigger$TriggerInstance/rod +FD: net/minecraft/advancements/critereon/FishingRodHookedTrigger$TriggerInstance/f_40436_ net/minecraft/advancements/critereon/FishingRodHookedTrigger$TriggerInstance/entity +FD: net/minecraft/advancements/critereon/FishingRodHookedTrigger$TriggerInstance/f_40437_ net/minecraft/advancements/critereon/FishingRodHookedTrigger$TriggerInstance/item +FD: net/minecraft/advancements/critereon/FluidPredicate/f_41094_ net/minecraft/advancements/critereon/FluidPredicate/ANY +FD: net/minecraft/advancements/critereon/FluidPredicate/f_41095_ net/minecraft/advancements/critereon/FluidPredicate/tag +FD: net/minecraft/advancements/critereon/FluidPredicate/f_41096_ net/minecraft/advancements/critereon/FluidPredicate/fluid +FD: net/minecraft/advancements/critereon/FluidPredicate/f_41097_ net/minecraft/advancements/critereon/FluidPredicate/properties +FD: net/minecraft/advancements/critereon/FluidPredicate$Builder/f_151162_ net/minecraft/advancements/critereon/FluidPredicate$Builder/fluid +FD: net/minecraft/advancements/critereon/FluidPredicate$Builder/f_151163_ net/minecraft/advancements/critereon/FluidPredicate$Builder/fluids +FD: net/minecraft/advancements/critereon/FluidPredicate$Builder/f_151164_ net/minecraft/advancements/critereon/FluidPredicate$Builder/properties +FD: net/minecraft/advancements/critereon/ImpossibleTrigger/f_41555_ net/minecraft/advancements/critereon/ImpossibleTrigger/ID +FD: net/minecraft/advancements/critereon/InventoryChangeTrigger/f_43145_ net/minecraft/advancements/critereon/InventoryChangeTrigger/ID +FD: net/minecraft/advancements/critereon/InventoryChangeTrigger$TriggerInstance/f_43176_ net/minecraft/advancements/critereon/InventoryChangeTrigger$TriggerInstance/slotsOccupied +FD: net/minecraft/advancements/critereon/InventoryChangeTrigger$TriggerInstance/f_43177_ net/minecraft/advancements/critereon/InventoryChangeTrigger$TriggerInstance/slotsFull +FD: net/minecraft/advancements/critereon/InventoryChangeTrigger$TriggerInstance/f_43178_ net/minecraft/advancements/critereon/InventoryChangeTrigger$TriggerInstance/slotsEmpty +FD: net/minecraft/advancements/critereon/InventoryChangeTrigger$TriggerInstance/f_43179_ net/minecraft/advancements/critereon/InventoryChangeTrigger$TriggerInstance/predicates +FD: net/minecraft/advancements/critereon/ItemDurabilityTrigger/f_43665_ net/minecraft/advancements/critereon/ItemDurabilityTrigger/ID +FD: net/minecraft/advancements/critereon/ItemDurabilityTrigger$TriggerInstance/f_43686_ net/minecraft/advancements/critereon/ItemDurabilityTrigger$TriggerInstance/item +FD: net/minecraft/advancements/critereon/ItemDurabilityTrigger$TriggerInstance/f_43687_ net/minecraft/advancements/critereon/ItemDurabilityTrigger$TriggerInstance/durability +FD: net/minecraft/advancements/critereon/ItemDurabilityTrigger$TriggerInstance/f_43688_ net/minecraft/advancements/critereon/ItemDurabilityTrigger$TriggerInstance/delta +FD: net/minecraft/advancements/critereon/ItemPredicate/f_151427_ net/minecraft/advancements/critereon/ItemPredicate/items +FD: net/minecraft/advancements/critereon/ItemPredicate/f_45028_ net/minecraft/advancements/critereon/ItemPredicate/ANY +FD: net/minecraft/advancements/critereon/ItemPredicate/f_45029_ net/minecraft/advancements/critereon/ItemPredicate/tag +FD: net/minecraft/advancements/critereon/ItemPredicate/f_45031_ net/minecraft/advancements/critereon/ItemPredicate/count +FD: net/minecraft/advancements/critereon/ItemPredicate/f_45032_ net/minecraft/advancements/critereon/ItemPredicate/durability +FD: net/minecraft/advancements/critereon/ItemPredicate/f_45033_ net/minecraft/advancements/critereon/ItemPredicate/enchantments +FD: net/minecraft/advancements/critereon/ItemPredicate/f_45034_ net/minecraft/advancements/critereon/ItemPredicate/storedEnchantments +FD: net/minecraft/advancements/critereon/ItemPredicate/f_45035_ net/minecraft/advancements/critereon/ItemPredicate/potion +FD: net/minecraft/advancements/critereon/ItemPredicate/f_45036_ net/minecraft/advancements/critereon/ItemPredicate/nbt +FD: net/minecraft/advancements/critereon/ItemPredicate$Builder/f_151440_ net/minecraft/advancements/critereon/ItemPredicate$Builder/items +FD: net/minecraft/advancements/critereon/ItemPredicate$Builder/f_45059_ net/minecraft/advancements/critereon/ItemPredicate$Builder/enchantments +FD: net/minecraft/advancements/critereon/ItemPredicate$Builder/f_45060_ net/minecraft/advancements/critereon/ItemPredicate$Builder/storedEnchantments +FD: net/minecraft/advancements/critereon/ItemPredicate$Builder/f_45062_ net/minecraft/advancements/critereon/ItemPredicate$Builder/tag +FD: net/minecraft/advancements/critereon/ItemPredicate$Builder/f_45063_ net/minecraft/advancements/critereon/ItemPredicate$Builder/count +FD: net/minecraft/advancements/critereon/ItemPredicate$Builder/f_45064_ net/minecraft/advancements/critereon/ItemPredicate$Builder/durability +FD: net/minecraft/advancements/critereon/ItemPredicate$Builder/f_45065_ net/minecraft/advancements/critereon/ItemPredicate$Builder/potion +FD: net/minecraft/advancements/critereon/ItemPredicate$Builder/f_45066_ net/minecraft/advancements/critereon/ItemPredicate$Builder/nbt +FD: net/minecraft/advancements/critereon/ItemUsedOnLocationTrigger/f_285601_ net/minecraft/advancements/critereon/ItemUsedOnLocationTrigger/id +FD: net/minecraft/advancements/critereon/ItemUsedOnLocationTrigger$TriggerInstance/f_285570_ net/minecraft/advancements/critereon/ItemUsedOnLocationTrigger$TriggerInstance/location +FD: net/minecraft/advancements/critereon/KilledByCrossbowTrigger/f_46867_ net/minecraft/advancements/critereon/KilledByCrossbowTrigger/ID +FD: net/minecraft/advancements/critereon/KilledByCrossbowTrigger$TriggerInstance/f_46887_ net/minecraft/advancements/critereon/KilledByCrossbowTrigger$TriggerInstance/victims +FD: net/minecraft/advancements/critereon/KilledByCrossbowTrigger$TriggerInstance/f_46888_ net/minecraft/advancements/critereon/KilledByCrossbowTrigger$TriggerInstance/uniqueEntityTypes +FD: net/minecraft/advancements/critereon/KilledTrigger/f_48100_ net/minecraft/advancements/critereon/KilledTrigger/id +FD: net/minecraft/advancements/critereon/KilledTrigger$TriggerInstance/f_48123_ net/minecraft/advancements/critereon/KilledTrigger$TriggerInstance/entityPredicate +FD: net/minecraft/advancements/critereon/KilledTrigger$TriggerInstance/f_48124_ net/minecraft/advancements/critereon/KilledTrigger$TriggerInstance/killingBlow +FD: net/minecraft/advancements/critereon/LevitationTrigger/f_49112_ net/minecraft/advancements/critereon/LevitationTrigger/ID +FD: net/minecraft/advancements/critereon/LevitationTrigger$TriggerInstance/f_49134_ net/minecraft/advancements/critereon/LevitationTrigger$TriggerInstance/distance +FD: net/minecraft/advancements/critereon/LevitationTrigger$TriggerInstance/f_49135_ net/minecraft/advancements/critereon/LevitationTrigger$TriggerInstance/duration +FD: net/minecraft/advancements/critereon/LightPredicate/f_51335_ net/minecraft/advancements/critereon/LightPredicate/ANY +FD: net/minecraft/advancements/critereon/LightPredicate/f_51336_ net/minecraft/advancements/critereon/LightPredicate/composite +FD: net/minecraft/advancements/critereon/LightPredicate$Builder/f_153101_ net/minecraft/advancements/critereon/LightPredicate$Builder/composite +FD: net/minecraft/advancements/critereon/LighthingBoltPredicate/f_153233_ net/minecraft/advancements/critereon/LighthingBoltPredicate/BLOCKS_SET_ON_FIRE_KEY +FD: net/minecraft/advancements/critereon/LighthingBoltPredicate/f_153234_ net/minecraft/advancements/critereon/LighthingBoltPredicate/ENTITY_STRUCK_KEY +FD: net/minecraft/advancements/critereon/LighthingBoltPredicate/f_153235_ net/minecraft/advancements/critereon/LighthingBoltPredicate/blocksSetOnFire +FD: net/minecraft/advancements/critereon/LighthingBoltPredicate/f_153236_ net/minecraft/advancements/critereon/LighthingBoltPredicate/entityStruck +FD: net/minecraft/advancements/critereon/LightningStrikeTrigger/f_153384_ net/minecraft/advancements/critereon/LightningStrikeTrigger/ID +FD: net/minecraft/advancements/critereon/LightningStrikeTrigger$TriggerInstance/f_153407_ net/minecraft/advancements/critereon/LightningStrikeTrigger$TriggerInstance/lightning +FD: net/minecraft/advancements/critereon/LightningStrikeTrigger$TriggerInstance/f_153408_ net/minecraft/advancements/critereon/LightningStrikeTrigger$TriggerInstance/bystander +FD: net/minecraft/advancements/critereon/LocationPredicate/f_220588_ net/minecraft/advancements/critereon/LocationPredicate/structure +FD: net/minecraft/advancements/critereon/LocationPredicate/f_52592_ net/minecraft/advancements/critereon/LocationPredicate/ANY +FD: net/minecraft/advancements/critereon/LocationPredicate/f_52593_ net/minecraft/advancements/critereon/LocationPredicate/LOGGER +FD: net/minecraft/advancements/critereon/LocationPredicate/f_52594_ net/minecraft/advancements/critereon/LocationPredicate/x +FD: net/minecraft/advancements/critereon/LocationPredicate/f_52595_ net/minecraft/advancements/critereon/LocationPredicate/y +FD: net/minecraft/advancements/critereon/LocationPredicate/f_52596_ net/minecraft/advancements/critereon/LocationPredicate/z +FD: net/minecraft/advancements/critereon/LocationPredicate/f_52597_ net/minecraft/advancements/critereon/LocationPredicate/biome +FD: net/minecraft/advancements/critereon/LocationPredicate/f_52599_ net/minecraft/advancements/critereon/LocationPredicate/dimension +FD: net/minecraft/advancements/critereon/LocationPredicate/f_52600_ net/minecraft/advancements/critereon/LocationPredicate/smokey +FD: net/minecraft/advancements/critereon/LocationPredicate/f_52601_ net/minecraft/advancements/critereon/LocationPredicate/light +FD: net/minecraft/advancements/critereon/LocationPredicate/f_52602_ net/minecraft/advancements/critereon/LocationPredicate/block +FD: net/minecraft/advancements/critereon/LocationPredicate/f_52603_ net/minecraft/advancements/critereon/LocationPredicate/fluid +FD: net/minecraft/advancements/critereon/LocationPredicate$Builder/f_220591_ net/minecraft/advancements/critereon/LocationPredicate$Builder/structure +FD: net/minecraft/advancements/critereon/LocationPredicate$Builder/f_52640_ net/minecraft/advancements/critereon/LocationPredicate$Builder/x +FD: net/minecraft/advancements/critereon/LocationPredicate$Builder/f_52641_ net/minecraft/advancements/critereon/LocationPredicate$Builder/y +FD: net/minecraft/advancements/critereon/LocationPredicate$Builder/f_52642_ net/minecraft/advancements/critereon/LocationPredicate$Builder/z +FD: net/minecraft/advancements/critereon/LocationPredicate$Builder/f_52643_ net/minecraft/advancements/critereon/LocationPredicate$Builder/biome +FD: net/minecraft/advancements/critereon/LocationPredicate$Builder/f_52645_ net/minecraft/advancements/critereon/LocationPredicate$Builder/dimension +FD: net/minecraft/advancements/critereon/LocationPredicate$Builder/f_52646_ net/minecraft/advancements/critereon/LocationPredicate$Builder/smokey +FD: net/minecraft/advancements/critereon/LocationPredicate$Builder/f_52647_ net/minecraft/advancements/critereon/LocationPredicate$Builder/light +FD: net/minecraft/advancements/critereon/LocationPredicate$Builder/f_52648_ net/minecraft/advancements/critereon/LocationPredicate$Builder/block +FD: net/minecraft/advancements/critereon/LocationPredicate$Builder/f_52649_ net/minecraft/advancements/critereon/LocationPredicate$Builder/fluid +FD: net/minecraft/advancements/critereon/LootTableTrigger/f_54593_ net/minecraft/advancements/critereon/LootTableTrigger/ID +FD: net/minecraft/advancements/critereon/LootTableTrigger$TriggerInstance/f_54612_ net/minecraft/advancements/critereon/LootTableTrigger$TriggerInstance/lootTable +FD: net/minecraft/advancements/critereon/MinMaxBounds/f_55297_ net/minecraft/advancements/critereon/MinMaxBounds/ERROR_EMPTY +FD: net/minecraft/advancements/critereon/MinMaxBounds/f_55298_ net/minecraft/advancements/critereon/MinMaxBounds/ERROR_SWAPPED +FD: net/minecraft/advancements/critereon/MinMaxBounds/f_55299_ net/minecraft/advancements/critereon/MinMaxBounds/min +FD: net/minecraft/advancements/critereon/MinMaxBounds/f_55300_ net/minecraft/advancements/critereon/MinMaxBounds/max +FD: net/minecraft/advancements/critereon/MinMaxBounds$Doubles/f_154779_ net/minecraft/advancements/critereon/MinMaxBounds$Doubles/ANY +FD: net/minecraft/advancements/critereon/MinMaxBounds$Doubles/f_154780_ net/minecraft/advancements/critereon/MinMaxBounds$Doubles/minSq +FD: net/minecraft/advancements/critereon/MinMaxBounds$Doubles/f_154781_ net/minecraft/advancements/critereon/MinMaxBounds$Doubles/maxSq +FD: net/minecraft/advancements/critereon/MinMaxBounds$Ints/f_55364_ net/minecraft/advancements/critereon/MinMaxBounds$Ints/ANY +FD: net/minecraft/advancements/critereon/MinMaxBounds$Ints/f_55365_ net/minecraft/advancements/critereon/MinMaxBounds$Ints/minSq +FD: net/minecraft/advancements/critereon/MinMaxBounds$Ints/f_55366_ net/minecraft/advancements/critereon/MinMaxBounds$Ints/maxSq +FD: net/minecraft/advancements/critereon/MobEffectsPredicate/f_56547_ net/minecraft/advancements/critereon/MobEffectsPredicate/ANY +FD: net/minecraft/advancements/critereon/MobEffectsPredicate/f_56548_ net/minecraft/advancements/critereon/MobEffectsPredicate/effects +FD: net/minecraft/advancements/critereon/MobEffectsPredicate$MobEffectInstancePredicate/f_56566_ net/minecraft/advancements/critereon/MobEffectsPredicate$MobEffectInstancePredicate/amplifier +FD: net/minecraft/advancements/critereon/MobEffectsPredicate$MobEffectInstancePredicate/f_56567_ net/minecraft/advancements/critereon/MobEffectsPredicate$MobEffectInstancePredicate/duration +FD: net/minecraft/advancements/critereon/MobEffectsPredicate$MobEffectInstancePredicate/f_56568_ net/minecraft/advancements/critereon/MobEffectsPredicate$MobEffectInstancePredicate/ambient +FD: net/minecraft/advancements/critereon/MobEffectsPredicate$MobEffectInstancePredicate/f_56569_ net/minecraft/advancements/critereon/MobEffectsPredicate$MobEffectInstancePredicate/visible +FD: net/minecraft/advancements/critereon/NbtPredicate/f_57471_ net/minecraft/advancements/critereon/NbtPredicate/ANY +FD: net/minecraft/advancements/critereon/NbtPredicate/f_57472_ net/minecraft/advancements/critereon/NbtPredicate/tag +FD: net/minecraft/advancements/critereon/PickedUpItemTrigger/f_221294_ net/minecraft/advancements/critereon/PickedUpItemTrigger/id +FD: net/minecraft/advancements/critereon/PickedUpItemTrigger$TriggerInstance/f_221315_ net/minecraft/advancements/critereon/PickedUpItemTrigger$TriggerInstance/item +FD: net/minecraft/advancements/critereon/PickedUpItemTrigger$TriggerInstance/f_221316_ net/minecraft/advancements/critereon/PickedUpItemTrigger$TriggerInstance/entity +FD: net/minecraft/advancements/critereon/PlayerHurtEntityTrigger/f_60108_ net/minecraft/advancements/critereon/PlayerHurtEntityTrigger/ID +FD: net/minecraft/advancements/critereon/PlayerHurtEntityTrigger$TriggerInstance/f_60136_ net/minecraft/advancements/critereon/PlayerHurtEntityTrigger$TriggerInstance/damage +FD: net/minecraft/advancements/critereon/PlayerHurtEntityTrigger$TriggerInstance/f_60137_ net/minecraft/advancements/critereon/PlayerHurtEntityTrigger$TriggerInstance/entity +FD: net/minecraft/advancements/critereon/PlayerInteractTrigger/f_61490_ net/minecraft/advancements/critereon/PlayerInteractTrigger/ID +FD: net/minecraft/advancements/critereon/PlayerInteractTrigger$TriggerInstance/f_61511_ net/minecraft/advancements/critereon/PlayerInteractTrigger$TriggerInstance/item +FD: net/minecraft/advancements/critereon/PlayerInteractTrigger$TriggerInstance/f_61512_ net/minecraft/advancements/critereon/PlayerInteractTrigger$TriggerInstance/entity +FD: net/minecraft/advancements/critereon/PlayerPredicate/f_156743_ net/minecraft/advancements/critereon/PlayerPredicate/LOOKING_AT_RANGE +FD: net/minecraft/advancements/critereon/PlayerPredicate/f_156744_ net/minecraft/advancements/critereon/PlayerPredicate/lookingAt +FD: net/minecraft/advancements/critereon/PlayerPredicate/f_62245_ net/minecraft/advancements/critereon/PlayerPredicate/level +FD: net/minecraft/advancements/critereon/PlayerPredicate/f_62246_ net/minecraft/advancements/critereon/PlayerPredicate/gameType +FD: net/minecraft/advancements/critereon/PlayerPredicate/f_62247_ net/minecraft/advancements/critereon/PlayerPredicate/stats +FD: net/minecraft/advancements/critereon/PlayerPredicate/f_62248_ net/minecraft/advancements/critereon/PlayerPredicate/recipes +FD: net/minecraft/advancements/critereon/PlayerPredicate/f_62249_ net/minecraft/advancements/critereon/PlayerPredicate/advancements +FD: net/minecraft/advancements/critereon/PlayerPredicate$AdvancementCriterionsPredicate/f_62291_ net/minecraft/advancements/critereon/PlayerPredicate$AdvancementCriterionsPredicate/criterions +FD: net/minecraft/advancements/critereon/PlayerPredicate$AdvancementDonePredicate/f_62299_ net/minecraft/advancements/critereon/PlayerPredicate$AdvancementDonePredicate/state +FD: net/minecraft/advancements/critereon/PlayerPredicate$Builder/f_156766_ net/minecraft/advancements/critereon/PlayerPredicate$Builder/lookingAt +FD: net/minecraft/advancements/critereon/PlayerPredicate$Builder/f_62307_ net/minecraft/advancements/critereon/PlayerPredicate$Builder/level +FD: net/minecraft/advancements/critereon/PlayerPredicate$Builder/f_62308_ net/minecraft/advancements/critereon/PlayerPredicate$Builder/gameType +FD: net/minecraft/advancements/critereon/PlayerPredicate$Builder/f_62309_ net/minecraft/advancements/critereon/PlayerPredicate$Builder/stats +FD: net/minecraft/advancements/critereon/PlayerPredicate$Builder/f_62310_ net/minecraft/advancements/critereon/PlayerPredicate$Builder/recipes +FD: net/minecraft/advancements/critereon/PlayerPredicate$Builder/f_62311_ net/minecraft/advancements/critereon/PlayerPredicate$Builder/advancements +FD: net/minecraft/advancements/critereon/PlayerTrigger/f_222614_ net/minecraft/advancements/critereon/PlayerTrigger/id +FD: net/minecraft/advancements/critereon/RecipeCraftedTrigger/f_279610_ net/minecraft/advancements/critereon/RecipeCraftedTrigger/ID +FD: net/minecraft/advancements/critereon/RecipeCraftedTrigger$TriggerInstance/f_279530_ net/minecraft/advancements/critereon/RecipeCraftedTrigger$TriggerInstance/predicates +FD: net/minecraft/advancements/critereon/RecipeCraftedTrigger$TriggerInstance/f_279628_ net/minecraft/advancements/critereon/RecipeCraftedTrigger$TriggerInstance/recipeId +FD: net/minecraft/advancements/critereon/RecipeUnlockedTrigger/f_63714_ net/minecraft/advancements/critereon/RecipeUnlockedTrigger/ID +FD: net/minecraft/advancements/critereon/RecipeUnlockedTrigger$TriggerInstance/f_63735_ net/minecraft/advancements/critereon/RecipeUnlockedTrigger$TriggerInstance/recipe +FD: net/minecraft/advancements/critereon/SerializationContext/f_64768_ net/minecraft/advancements/critereon/SerializationContext/INSTANCE +FD: net/minecraft/advancements/critereon/SerializationContext/f_64769_ net/minecraft/advancements/critereon/SerializationContext/predicateGson +FD: net/minecraft/advancements/critereon/ShotCrossbowTrigger/f_65458_ net/minecraft/advancements/critereon/ShotCrossbowTrigger/ID +FD: net/minecraft/advancements/critereon/ShotCrossbowTrigger$TriggerInstance/f_65477_ net/minecraft/advancements/critereon/ShotCrossbowTrigger$TriggerInstance/item +FD: net/minecraft/advancements/critereon/SimpleCriterionTrigger/f_66232_ net/minecraft/advancements/critereon/SimpleCriterionTrigger/players +FD: net/minecraft/advancements/critereon/SlideDownBlockTrigger/f_66974_ net/minecraft/advancements/critereon/SlideDownBlockTrigger/ID +FD: net/minecraft/advancements/critereon/SlideDownBlockTrigger$TriggerInstance/f_67000_ net/minecraft/advancements/critereon/SlideDownBlockTrigger$TriggerInstance/block +FD: net/minecraft/advancements/critereon/SlideDownBlockTrigger$TriggerInstance/f_67001_ net/minecraft/advancements/critereon/SlideDownBlockTrigger$TriggerInstance/state +FD: net/minecraft/advancements/critereon/SlimePredicate/f_223418_ net/minecraft/advancements/critereon/SlimePredicate/size +FD: net/minecraft/advancements/critereon/StartRidingTrigger/f_160383_ net/minecraft/advancements/critereon/StartRidingTrigger/ID +FD: net/minecraft/advancements/critereon/StatePropertiesPredicate/f_67658_ net/minecraft/advancements/critereon/StatePropertiesPredicate/ANY +FD: net/minecraft/advancements/critereon/StatePropertiesPredicate/f_67659_ net/minecraft/advancements/critereon/StatePropertiesPredicate/properties +FD: net/minecraft/advancements/critereon/StatePropertiesPredicate$Builder/f_67691_ net/minecraft/advancements/critereon/StatePropertiesPredicate$Builder/matchers +FD: net/minecraft/advancements/critereon/StatePropertiesPredicate$ExactPropertyMatcher/f_67707_ net/minecraft/advancements/critereon/StatePropertiesPredicate$ExactPropertyMatcher/value +FD: net/minecraft/advancements/critereon/StatePropertiesPredicate$PropertyMatcher/f_67715_ net/minecraft/advancements/critereon/StatePropertiesPredicate$PropertyMatcher/name +FD: net/minecraft/advancements/critereon/StatePropertiesPredicate$RangedPropertyMatcher/f_67727_ net/minecraft/advancements/critereon/StatePropertiesPredicate$RangedPropertyMatcher/minValue +FD: net/minecraft/advancements/critereon/StatePropertiesPredicate$RangedPropertyMatcher/f_67728_ net/minecraft/advancements/critereon/StatePropertiesPredicate$RangedPropertyMatcher/maxValue +FD: net/minecraft/advancements/critereon/SummonedEntityTrigger/f_68252_ net/minecraft/advancements/critereon/SummonedEntityTrigger/ID +FD: net/minecraft/advancements/critereon/SummonedEntityTrigger$TriggerInstance/f_68271_ net/minecraft/advancements/critereon/SummonedEntityTrigger$TriggerInstance/entity +FD: net/minecraft/advancements/critereon/TagPredicate/f_268414_ net/minecraft/advancements/critereon/TagPredicate/expected +FD: net/minecraft/advancements/critereon/TagPredicate/f_268479_ net/minecraft/advancements/critereon/TagPredicate/tag +FD: net/minecraft/advancements/critereon/TameAnimalTrigger/f_68825_ net/minecraft/advancements/critereon/TameAnimalTrigger/ID +FD: net/minecraft/advancements/critereon/TameAnimalTrigger$TriggerInstance/f_68844_ net/minecraft/advancements/critereon/TameAnimalTrigger$TriggerInstance/entity +FD: net/minecraft/advancements/critereon/TargetBlockTrigger/f_70207_ net/minecraft/advancements/critereon/TargetBlockTrigger/ID +FD: net/minecraft/advancements/critereon/TargetBlockTrigger$TriggerInstance/f_70230_ net/minecraft/advancements/critereon/TargetBlockTrigger$TriggerInstance/signalStrength +FD: net/minecraft/advancements/critereon/TargetBlockTrigger$TriggerInstance/f_70231_ net/minecraft/advancements/critereon/TargetBlockTrigger$TriggerInstance/projectile +FD: net/minecraft/advancements/critereon/TradeTrigger/f_70955_ net/minecraft/advancements/critereon/TradeTrigger/ID +FD: net/minecraft/advancements/critereon/TradeTrigger$TriggerInstance/f_70976_ net/minecraft/advancements/critereon/TradeTrigger$TriggerInstance/villager +FD: net/minecraft/advancements/critereon/TradeTrigger$TriggerInstance/f_70977_ net/minecraft/advancements/critereon/TradeTrigger$TriggerInstance/item +FD: net/minecraft/advancements/critereon/UsedEnderEyeTrigger/f_73928_ net/minecraft/advancements/critereon/UsedEnderEyeTrigger/ID +FD: net/minecraft/advancements/critereon/UsedEnderEyeTrigger$TriggerInstance/f_73947_ net/minecraft/advancements/critereon/UsedEnderEyeTrigger$TriggerInstance/level +FD: net/minecraft/advancements/critereon/UsedTotemTrigger/f_74427_ net/minecraft/advancements/critereon/UsedTotemTrigger/ID +FD: net/minecraft/advancements/critereon/UsedTotemTrigger$TriggerInstance/f_74446_ net/minecraft/advancements/critereon/UsedTotemTrigger$TriggerInstance/item +FD: net/minecraft/advancements/critereon/UsingItemTrigger/f_163861_ net/minecraft/advancements/critereon/UsingItemTrigger/ID +FD: net/minecraft/advancements/critereon/UsingItemTrigger$TriggerInstance/f_163879_ net/minecraft/advancements/critereon/UsingItemTrigger$TriggerInstance/item +FD: net/minecraft/advancements/critereon/WrappedMinMaxBounds/f_75350_ net/minecraft/advancements/critereon/WrappedMinMaxBounds/ANY +FD: net/minecraft/advancements/critereon/WrappedMinMaxBounds/f_75351_ net/minecraft/advancements/critereon/WrappedMinMaxBounds/ERROR_INTS_ONLY +FD: net/minecraft/advancements/critereon/WrappedMinMaxBounds/f_75352_ net/minecraft/advancements/critereon/WrappedMinMaxBounds/min +FD: net/minecraft/advancements/critereon/WrappedMinMaxBounds/f_75353_ net/minecraft/advancements/critereon/WrappedMinMaxBounds/max +FD: net/minecraft/client/AttackIndicatorStatus/$VALUES net/minecraft/client/AttackIndicatorStatus/$VALUES +FD: net/minecraft/client/AttackIndicatorStatus/CROSSHAIR net/minecraft/client/AttackIndicatorStatus/CROSSHAIR +FD: net/minecraft/client/AttackIndicatorStatus/HOTBAR net/minecraft/client/AttackIndicatorStatus/HOTBAR +FD: net/minecraft/client/AttackIndicatorStatus/OFF net/minecraft/client/AttackIndicatorStatus/OFF +FD: net/minecraft/client/AttackIndicatorStatus/f_90498_ net/minecraft/client/AttackIndicatorStatus/BY_ID +FD: net/minecraft/client/AttackIndicatorStatus/f_90499_ net/minecraft/client/AttackIndicatorStatus/id +FD: net/minecraft/client/AttackIndicatorStatus/f_90500_ net/minecraft/client/AttackIndicatorStatus/key +FD: net/minecraft/client/Camera/f_167683_ net/minecraft/client/Camera/FOG_DISTANCE_SCALE +FD: net/minecraft/client/Camera/f_90549_ net/minecraft/client/Camera/initialized +FD: net/minecraft/client/Camera/f_90550_ net/minecraft/client/Camera/level +FD: net/minecraft/client/Camera/f_90551_ net/minecraft/client/Camera/entity +FD: net/minecraft/client/Camera/f_90552_ net/minecraft/client/Camera/position +FD: net/minecraft/client/Camera/f_90553_ net/minecraft/client/Camera/blockPosition +FD: net/minecraft/client/Camera/f_90554_ net/minecraft/client/Camera/forwards +FD: net/minecraft/client/Camera/f_90555_ net/minecraft/client/Camera/up +FD: net/minecraft/client/Camera/f_90556_ net/minecraft/client/Camera/left +FD: net/minecraft/client/Camera/f_90557_ net/minecraft/client/Camera/xRot +FD: net/minecraft/client/Camera/f_90558_ net/minecraft/client/Camera/yRot +FD: net/minecraft/client/Camera/f_90559_ net/minecraft/client/Camera/rotation +FD: net/minecraft/client/Camera/f_90560_ net/minecraft/client/Camera/detached +FD: net/minecraft/client/Camera/f_90562_ net/minecraft/client/Camera/eyeHeight +FD: net/minecraft/client/Camera/f_90563_ net/minecraft/client/Camera/eyeHeightOld +FD: net/minecraft/client/Camera$NearPlane/f_167687_ net/minecraft/client/Camera$NearPlane/forward +FD: net/minecraft/client/Camera$NearPlane/f_167688_ net/minecraft/client/Camera$NearPlane/left +FD: net/minecraft/client/Camera$NearPlane/f_167689_ net/minecraft/client/Camera$NearPlane/up +FD: net/minecraft/client/CameraType/$VALUES net/minecraft/client/CameraType/$VALUES +FD: net/minecraft/client/CameraType/FIRST_PERSON net/minecraft/client/CameraType/FIRST_PERSON +FD: net/minecraft/client/CameraType/THIRD_PERSON_BACK net/minecraft/client/CameraType/THIRD_PERSON_BACK +FD: net/minecraft/client/CameraType/THIRD_PERSON_FRONT net/minecraft/client/CameraType/THIRD_PERSON_FRONT +FD: net/minecraft/client/CameraType/f_90602_ net/minecraft/client/CameraType/VALUES +FD: net/minecraft/client/CameraType/f_90603_ net/minecraft/client/CameraType/firstPerson +FD: net/minecraft/client/CameraType/f_90604_ net/minecraft/client/CameraType/mirrored +FD: net/minecraft/client/ClientBrandRetriever/f_177870_ net/minecraft/client/ClientBrandRetriever/VANILLA_NAME +FD: net/minecraft/client/ClientRecipeBook/f_90618_ net/minecraft/client/ClientRecipeBook/LOGGER +FD: net/minecraft/client/ClientRecipeBook/f_90619_ net/minecraft/client/ClientRecipeBook/collectionsByTab +FD: net/minecraft/client/ClientRecipeBook/f_90620_ net/minecraft/client/ClientRecipeBook/allCollections +FD: net/minecraft/client/ClientRecipeBook$1/f_244126_ net/minecraft/client/ClientRecipeBook$1/$SwitchMap$net$minecraft$world$item$crafting$CookingBookCategory +FD: net/minecraft/client/ClientRecipeBook$1/f_244493_ net/minecraft/client/ClientRecipeBook$1/$SwitchMap$net$minecraft$world$item$crafting$CraftingBookCategory +FD: net/minecraft/client/CloudStatus/$VALUES net/minecraft/client/CloudStatus/$VALUES +FD: net/minecraft/client/CloudStatus/FANCY net/minecraft/client/CloudStatus/FANCY +FD: net/minecraft/client/CloudStatus/FAST net/minecraft/client/CloudStatus/FAST +FD: net/minecraft/client/CloudStatus/OFF net/minecraft/client/CloudStatus/OFF +FD: net/minecraft/client/CloudStatus/f_231330_ net/minecraft/client/CloudStatus/id +FD: net/minecraft/client/CloudStatus/f_90655_ net/minecraft/client/CloudStatus/key +FD: net/minecraft/client/ComponentCollector/f_90672_ net/minecraft/client/ComponentCollector/parts +FD: net/minecraft/client/DebugQueryHandler/f_90697_ net/minecraft/client/DebugQueryHandler/connection +FD: net/minecraft/client/DebugQueryHandler/f_90698_ net/minecraft/client/DebugQueryHandler/transactionId +FD: net/minecraft/client/DebugQueryHandler/f_90699_ net/minecraft/client/DebugQueryHandler/callback +FD: net/minecraft/client/GameNarrator/f_240371_ net/minecraft/client/GameNarrator/minecraft +FD: net/minecraft/client/GameNarrator/f_93310_ net/minecraft/client/GameNarrator/NO_TITLE +FD: net/minecraft/client/GameNarrator/f_93311_ net/minecraft/client/GameNarrator/LOGGER +FD: net/minecraft/client/GameNarrator/f_93313_ net/minecraft/client/GameNarrator/narrator +FD: net/minecraft/client/GraphicsStatus/$VALUES net/minecraft/client/GraphicsStatus/$VALUES +FD: net/minecraft/client/GraphicsStatus/FABULOUS net/minecraft/client/GraphicsStatus/FABULOUS +FD: net/minecraft/client/GraphicsStatus/FANCY net/minecraft/client/GraphicsStatus/FANCY +FD: net/minecraft/client/GraphicsStatus/FAST net/minecraft/client/GraphicsStatus/FAST +FD: net/minecraft/client/GraphicsStatus/f_90763_ net/minecraft/client/GraphicsStatus/BY_ID +FD: net/minecraft/client/GraphicsStatus/f_90764_ net/minecraft/client/GraphicsStatus/id +FD: net/minecraft/client/GraphicsStatus/f_90765_ net/minecraft/client/GraphicsStatus/key +FD: net/minecraft/client/GraphicsStatus$1/f_90784_ net/minecraft/client/GraphicsStatus$1/$SwitchMap$net$minecraft$client$GraphicsStatus +FD: net/minecraft/client/GuiMessage/f_240352_ net/minecraft/client/GuiMessage/tag +FD: net/minecraft/client/GuiMessage/f_240363_ net/minecraft/client/GuiMessage/content +FD: net/minecraft/client/GuiMessage/f_240905_ net/minecraft/client/GuiMessage/signature +FD: net/minecraft/client/GuiMessage/f_90786_ net/minecraft/client/GuiMessage/addedTime +FD: net/minecraft/client/GuiMessage$Line/f_240339_ net/minecraft/client/GuiMessage$Line/content +FD: net/minecraft/client/GuiMessage$Line/f_240350_ net/minecraft/client/GuiMessage$Line/addedTime +FD: net/minecraft/client/GuiMessage$Line/f_240351_ net/minecraft/client/GuiMessage$Line/tag +FD: net/minecraft/client/GuiMessage$Line/f_240367_ net/minecraft/client/GuiMessage$Line/endOfEntry +FD: net/minecraft/client/GuiMessageTag/f_240342_ net/minecraft/client/GuiMessageTag/logTag +FD: net/minecraft/client/GuiMessageTag/f_240343_ net/minecraft/client/GuiMessageTag/TEXTURE_LOCATION +FD: net/minecraft/client/GuiMessageTag/f_240355_ net/minecraft/client/GuiMessageTag/icon +FD: net/minecraft/client/GuiMessageTag/f_240357_ net/minecraft/client/GuiMessageTag/CHAT_MODIFIED_INDICATOR_COLOR +FD: net/minecraft/client/GuiMessageTag/f_240362_ net/minecraft/client/GuiMessageTag/CHAT_NOT_SECURE +FD: net/minecraft/client/GuiMessageTag/f_240377_ net/minecraft/client/GuiMessageTag/CHAT_MODIFIED_TEXT +FD: net/minecraft/client/GuiMessageTag/f_240380_ net/minecraft/client/GuiMessageTag/CHAT_NOT_SECURE_TEXT +FD: net/minecraft/client/GuiMessageTag/f_240381_ net/minecraft/client/GuiMessageTag/text +FD: net/minecraft/client/GuiMessageTag/f_240384_ net/minecraft/client/GuiMessageTag/CHAT_NOT_SECURE_INDICATOR_COLOR +FD: net/minecraft/client/GuiMessageTag/f_240386_ net/minecraft/client/GuiMessageTag/indicatorColor +FD: net/minecraft/client/GuiMessageTag/f_240673_ net/minecraft/client/GuiMessageTag/SYSTEM +FD: net/minecraft/client/GuiMessageTag/f_244099_ net/minecraft/client/GuiMessageTag/SYSTEM_TEXT +FD: net/minecraft/client/GuiMessageTag/f_256799_ net/minecraft/client/GuiMessageTag/SYSTEM_SINGLE_PLAYER +FD: net/minecraft/client/GuiMessageTag/f_256832_ net/minecraft/client/GuiMessageTag/SYSTEM_TEXT_SINGLE_PLAYER +FD: net/minecraft/client/GuiMessageTag$Icon/$VALUES net/minecraft/client/GuiMessageTag$Icon/$VALUES +FD: net/minecraft/client/GuiMessageTag$Icon/CHAT_MODIFIED net/minecraft/client/GuiMessageTag$Icon/CHAT_MODIFIED +FD: net/minecraft/client/GuiMessageTag$Icon/f_240349_ net/minecraft/client/GuiMessageTag$Icon/v +FD: net/minecraft/client/GuiMessageTag$Icon/f_240358_ net/minecraft/client/GuiMessageTag$Icon/width +FD: net/minecraft/client/GuiMessageTag$Icon/f_240366_ net/minecraft/client/GuiMessageTag$Icon/u +FD: net/minecraft/client/GuiMessageTag$Icon/f_240372_ net/minecraft/client/GuiMessageTag$Icon/height +FD: net/minecraft/client/HotbarManager/f_167804_ net/minecraft/client/HotbarManager/NUM_HOTBAR_GROUPS +FD: net/minecraft/client/HotbarManager/f_90796_ net/minecraft/client/HotbarManager/LOGGER +FD: net/minecraft/client/HotbarManager/f_90797_ net/minecraft/client/HotbarManager/optionsFile +FD: net/minecraft/client/HotbarManager/f_90798_ net/minecraft/client/HotbarManager/fixerUpper +FD: net/minecraft/client/HotbarManager/f_90799_ net/minecraft/client/HotbarManager/hotbars +FD: net/minecraft/client/HotbarManager/f_90800_ net/minecraft/client/HotbarManager/loaded +FD: net/minecraft/client/InputType/$VALUES net/minecraft/client/InputType/$VALUES +FD: net/minecraft/client/InputType/KEYBOARD_ARROW net/minecraft/client/InputType/KEYBOARD_ARROW +FD: net/minecraft/client/InputType/KEYBOARD_TAB net/minecraft/client/InputType/KEYBOARD_TAB +FD: net/minecraft/client/InputType/MOUSE net/minecraft/client/InputType/MOUSE +FD: net/minecraft/client/InputType/NONE net/minecraft/client/InputType/NONE +FD: net/minecraft/client/KeyMapping/f_167805_ net/minecraft/client/KeyMapping/CATEGORY_MOVEMENT +FD: net/minecraft/client/KeyMapping/f_167806_ net/minecraft/client/KeyMapping/CATEGORY_MISC +FD: net/minecraft/client/KeyMapping/f_167807_ net/minecraft/client/KeyMapping/CATEGORY_MULTIPLAYER +FD: net/minecraft/client/KeyMapping/f_167808_ net/minecraft/client/KeyMapping/CATEGORY_GAMEPLAY +FD: net/minecraft/client/KeyMapping/f_167809_ net/minecraft/client/KeyMapping/CATEGORY_INVENTORY +FD: net/minecraft/client/KeyMapping/f_167810_ net/minecraft/client/KeyMapping/CATEGORY_INTERFACE +FD: net/minecraft/client/KeyMapping/f_167811_ net/minecraft/client/KeyMapping/CATEGORY_CREATIVE +FD: net/minecraft/client/KeyMapping/f_90809_ net/minecraft/client/KeyMapping/ALL +FD: net/minecraft/client/KeyMapping/f_90810_ net/minecraft/client/KeyMapping/MAP +FD: net/minecraft/client/KeyMapping/f_90811_ net/minecraft/client/KeyMapping/CATEGORIES +FD: net/minecraft/client/KeyMapping/f_90812_ net/minecraft/client/KeyMapping/CATEGORY_SORT_ORDER +FD: net/minecraft/client/KeyMapping/f_90813_ net/minecraft/client/KeyMapping/name +FD: net/minecraft/client/KeyMapping/f_90814_ net/minecraft/client/KeyMapping/defaultKey +FD: net/minecraft/client/KeyMapping/f_90815_ net/minecraft/client/KeyMapping/category +FD: net/minecraft/client/KeyMapping/f_90816_ net/minecraft/client/KeyMapping/key +FD: net/minecraft/client/KeyMapping/f_90817_ net/minecraft/client/KeyMapping/isDown +FD: net/minecraft/client/KeyMapping/f_90818_ net/minecraft/client/KeyMapping/clickCount +FD: net/minecraft/client/KeyboardHandler/f_167812_ net/minecraft/client/KeyboardHandler/DEBUG_CRASH_TIME +FD: net/minecraft/client/KeyboardHandler/f_90867_ net/minecraft/client/KeyboardHandler/minecraft +FD: net/minecraft/client/KeyboardHandler/f_90869_ net/minecraft/client/KeyboardHandler/clipboardManager +FD: net/minecraft/client/KeyboardHandler/f_90870_ net/minecraft/client/KeyboardHandler/debugCrashKeyTime +FD: net/minecraft/client/KeyboardHandler/f_90871_ net/minecraft/client/KeyboardHandler/debugCrashKeyReportedTime +FD: net/minecraft/client/KeyboardHandler/f_90872_ net/minecraft/client/KeyboardHandler/debugCrashKeyReportedCount +FD: net/minecraft/client/KeyboardHandler/f_90873_ net/minecraft/client/KeyboardHandler/handledDebugKey +FD: net/minecraft/client/KeyboardHandler$1/f_90963_ net/minecraft/client/KeyboardHandler$1/$SwitchMap$net$minecraft$world$phys$HitResult$Type +FD: net/minecraft/client/Minecraft/f_167842_ net/minecraft/client/Minecraft/wireframe +FD: net/minecraft/client/Minecraft/f_167843_ net/minecraft/client/Minecraft/MAX_TICKS_PER_UPDATE +FD: net/minecraft/client/Minecraft/f_167844_ net/minecraft/client/Minecraft/entityModels +FD: net/minecraft/client/Minecraft/f_167845_ net/minecraft/client/Minecraft/blockEntityRenderDispatcher +FD: net/minecraft/client/Minecraft/f_167846_ net/minecraft/client/Minecraft/metricsRecorder +FD: net/minecraft/client/Minecraft/f_167847_ net/minecraft/client/Minecraft/reloadStateTracker +FD: net/minecraft/client/Minecraft/f_167848_ net/minecraft/client/Minecraft/UPDATE_DRIVERS_ADVICE +FD: net/minecraft/client/Minecraft/f_193584_ net/minecraft/client/Minecraft/userApiService +FD: net/minecraft/client/Minecraft/f_205119_ net/minecraft/client/Minecraft/REGIONAL_COMPLIANCIES +FD: net/minecraft/client/Minecraft/f_205120_ net/minecraft/client/Minecraft/regionalCompliancies +FD: net/minecraft/client/Minecraft/f_231337_ net/minecraft/client/Minecraft/profileKeyPairManager +FD: net/minecraft/client/Minecraft/f_231338_ net/minecraft/client/Minecraft/authenticationService +FD: net/minecraft/client/Minecraft/f_231340_ net/minecraft/client/Minecraft/savedCpuDuration +FD: net/minecraft/client/Minecraft/f_231341_ net/minecraft/client/Minecraft/gpuUtilization +FD: net/minecraft/client/Minecraft/f_231342_ net/minecraft/client/Minecraft/currentFrameProfile +FD: net/minecraft/client/Minecraft/f_231343_ net/minecraft/client/Minecraft/realms32BitWarningStatus +FD: net/minecraft/client/Minecraft/f_238638_ net/minecraft/client/Minecraft/reportingContext +FD: net/minecraft/client/Minecraft/f_238717_ net/minecraft/client/Minecraft/realmsDataFetcher +FD: net/minecraft/client/Minecraft/f_240365_ net/minecraft/client/Minecraft/narrator +FD: net/minecraft/client/Minecraft/f_240378_ net/minecraft/client/Minecraft/chatListener +FD: net/minecraft/client/Minecraft/f_243022_ net/minecraft/client/Minecraft/fontFilterFishy +FD: net/minecraft/client/Minecraft/f_243783_ net/minecraft/client/Minecraft/vanillaPackResources +FD: net/minecraft/client/Minecraft/f_243981_ net/minecraft/client/Minecraft/downloadedPackSource +FD: net/minecraft/client/Minecraft/f_260560_ net/minecraft/client/Minecraft/frameTimeNs +FD: net/minecraft/client/Minecraft/f_260676_ net/minecraft/client/Minecraft/telemetryManager +FD: net/minecraft/client/Minecraft/f_263699_ net/minecraft/client/Minecraft/lastInputType +FD: net/minecraft/client/Minecraft/f_278504_ net/minecraft/client/Minecraft/quickPlayLog +FD: net/minecraft/client/Minecraft/f_90977_ net/minecraft/client/Minecraft/fpsString +FD: net/minecraft/client/Minecraft/f_90978_ net/minecraft/client/Minecraft/chunkPath +FD: net/minecraft/client/Minecraft/f_90979_ net/minecraft/client/Minecraft/chunkVisibility +FD: net/minecraft/client/Minecraft/f_90980_ net/minecraft/client/Minecraft/smartCull +FD: net/minecraft/client/Minecraft/f_90981_ net/minecraft/client/Minecraft/instance +FD: net/minecraft/client/Minecraft/f_90982_ net/minecraft/client/Minecraft/LOGGER +FD: net/minecraft/client/Minecraft/f_90983_ net/minecraft/client/Minecraft/RESOURCE_RELOAD_INITIAL_TASK +FD: net/minecraft/client/Minecraft/f_90984_ net/minecraft/client/Minecraft/SOCIAL_INTERACTIONS_NOT_AVAILABLE +FD: net/minecraft/client/Minecraft/f_90985_ net/minecraft/client/Minecraft/resourcePackDirectory +FD: net/minecraft/client/Minecraft/f_90986_ net/minecraft/client/Minecraft/profileProperties +FD: net/minecraft/client/Minecraft/f_90987_ net/minecraft/client/Minecraft/textureManager +FD: net/minecraft/client/Minecraft/f_90988_ net/minecraft/client/Minecraft/fixerUpper +FD: net/minecraft/client/Minecraft/f_90989_ net/minecraft/client/Minecraft/virtualScreen +FD: net/minecraft/client/Minecraft/f_90990_ net/minecraft/client/Minecraft/window +FD: net/minecraft/client/Minecraft/f_90991_ net/minecraft/client/Minecraft/timer +FD: net/minecraft/client/Minecraft/f_90993_ net/minecraft/client/Minecraft/renderBuffers +FD: net/minecraft/client/Minecraft/f_90994_ net/minecraft/client/Minecraft/entityRenderDispatcher +FD: net/minecraft/client/Minecraft/f_90995_ net/minecraft/client/Minecraft/itemRenderer +FD: net/minecraft/client/Minecraft/f_90997_ net/minecraft/client/Minecraft/searchRegistry +FD: net/minecraft/client/Minecraft/f_90998_ net/minecraft/client/Minecraft/user +FD: net/minecraft/client/Minecraft/f_90999_ net/minecraft/client/Minecraft/progressListener +FD: net/minecraft/client/Minecraft/f_91000_ net/minecraft/client/Minecraft/hotbarManager +FD: net/minecraft/client/Minecraft/f_91001_ net/minecraft/client/Minecraft/launchedVersion +FD: net/minecraft/client/Minecraft/f_91002_ net/minecraft/client/Minecraft/ON_OSX +FD: net/minecraft/client/Minecraft/f_91003_ net/minecraft/client/Minecraft/toast +FD: net/minecraft/client/Minecraft/f_91005_ net/minecraft/client/Minecraft/tutorial +FD: net/minecraft/client/Minecraft/f_91006_ net/minecraft/client/Minecraft/playerSocialManager +FD: net/minecraft/client/Minecraft/f_91007_ net/minecraft/client/Minecraft/singleplayerServer +FD: net/minecraft/client/Minecraft/f_91009_ net/minecraft/client/Minecraft/pendingConnection +FD: net/minecraft/client/Minecraft/f_91010_ net/minecraft/client/Minecraft/isLocalServer +FD: net/minecraft/client/Minecraft/f_91011_ net/minecraft/client/Minecraft/rightClickDelay +FD: net/minecraft/client/Minecraft/f_91012_ net/minecraft/client/Minecraft/pause +FD: net/minecraft/client/Minecraft/f_91013_ net/minecraft/client/Minecraft/pausePartialTick +FD: net/minecraft/client/Minecraft/f_91014_ net/minecraft/client/Minecraft/lastNanoTime +FD: net/minecraft/client/Minecraft/f_91015_ net/minecraft/client/Minecraft/lastTime +FD: net/minecraft/client/Minecraft/f_91016_ net/minecraft/client/Minecraft/frames +FD: net/minecraft/client/Minecraft/f_91017_ net/minecraft/client/Minecraft/connectedToRealms +FD: net/minecraft/client/Minecraft/f_91018_ net/minecraft/client/Minecraft/gameThread +FD: net/minecraft/client/Minecraft/f_91019_ net/minecraft/client/Minecraft/running +FD: net/minecraft/client/Minecraft/f_91020_ net/minecraft/client/Minecraft/delayedCrash +FD: net/minecraft/client/Minecraft/f_91021_ net/minecraft/client/Minecraft/fps +FD: net/minecraft/client/Minecraft/f_91022_ net/minecraft/client/Minecraft/windowActive +FD: net/minecraft/client/Minecraft/f_91023_ net/minecraft/client/Minecraft/progressTasks +FD: net/minecraft/client/Minecraft/f_91024_ net/minecraft/client/Minecraft/pendingReload +FD: net/minecraft/client/Minecraft/f_91025_ net/minecraft/client/Minecraft/socialInteractionsToast +FD: net/minecraft/client/Minecraft/f_91026_ net/minecraft/client/Minecraft/profiler +FD: net/minecraft/client/Minecraft/f_91027_ net/minecraft/client/Minecraft/fpsPieRenderTicks +FD: net/minecraft/client/Minecraft/f_91028_ net/minecraft/client/Minecraft/fpsPieProfiler +FD: net/minecraft/client/Minecraft/f_91029_ net/minecraft/client/Minecraft/versionType +FD: net/minecraft/client/Minecraft/f_91030_ net/minecraft/client/Minecraft/proxy +FD: net/minecraft/client/Minecraft/f_91031_ net/minecraft/client/Minecraft/levelSource +FD: net/minecraft/client/Minecraft/f_91032_ net/minecraft/client/Minecraft/is64bit +FD: net/minecraft/client/Minecraft/f_91033_ net/minecraft/client/Minecraft/demo +FD: net/minecraft/client/Minecraft/f_91034_ net/minecraft/client/Minecraft/allowsMultiplayer +FD: net/minecraft/client/Minecraft/f_91035_ net/minecraft/client/Minecraft/allowsChat +FD: net/minecraft/client/Minecraft/f_91036_ net/minecraft/client/Minecraft/resourceManager +FD: net/minecraft/client/Minecraft/f_91038_ net/minecraft/client/Minecraft/resourcePackRepository +FD: net/minecraft/client/Minecraft/f_91039_ net/minecraft/client/Minecraft/languageManager +FD: net/minecraft/client/Minecraft/f_91040_ net/minecraft/client/Minecraft/blockColors +FD: net/minecraft/client/Minecraft/f_91041_ net/minecraft/client/Minecraft/itemColors +FD: net/minecraft/client/Minecraft/f_91042_ net/minecraft/client/Minecraft/mainRenderTarget +FD: net/minecraft/client/Minecraft/f_91043_ net/minecraft/client/Minecraft/soundManager +FD: net/minecraft/client/Minecraft/f_91044_ net/minecraft/client/Minecraft/musicManager +FD: net/minecraft/client/Minecraft/f_91045_ net/minecraft/client/Minecraft/fontManager +FD: net/minecraft/client/Minecraft/f_91046_ net/minecraft/client/Minecraft/splashManager +FD: net/minecraft/client/Minecraft/f_91047_ net/minecraft/client/Minecraft/gpuWarnlistManager +FD: net/minecraft/client/Minecraft/f_91048_ net/minecraft/client/Minecraft/minecraftSessionService +FD: net/minecraft/client/Minecraft/f_91050_ net/minecraft/client/Minecraft/skinManager +FD: net/minecraft/client/Minecraft/f_91051_ net/minecraft/client/Minecraft/modelManager +FD: net/minecraft/client/Minecraft/f_91052_ net/minecraft/client/Minecraft/blockRenderer +FD: net/minecraft/client/Minecraft/f_91053_ net/minecraft/client/Minecraft/paintingTextures +FD: net/minecraft/client/Minecraft/f_91054_ net/minecraft/client/Minecraft/mobEffectTextures +FD: net/minecraft/client/Minecraft/f_91055_ net/minecraft/client/Minecraft/DEFAULT_FONT +FD: net/minecraft/client/Minecraft/f_91056_ net/minecraft/client/Minecraft/fpsPieResults +FD: net/minecraft/client/Minecraft/f_91057_ net/minecraft/client/Minecraft/debugPath +FD: net/minecraft/client/Minecraft/f_91058_ net/minecraft/client/Minecraft/UNIFORM_FONT +FD: net/minecraft/client/Minecraft/f_91059_ net/minecraft/client/Minecraft/ALT_FONT +FD: net/minecraft/client/Minecraft/f_91060_ net/minecraft/client/Minecraft/levelRenderer +FD: net/minecraft/client/Minecraft/f_91061_ net/minecraft/client/Minecraft/particleEngine +FD: net/minecraft/client/Minecraft/f_91062_ net/minecraft/client/Minecraft/font +FD: net/minecraft/client/Minecraft/f_91063_ net/minecraft/client/Minecraft/gameRenderer +FD: net/minecraft/client/Minecraft/f_91064_ net/minecraft/client/Minecraft/debugRenderer +FD: net/minecraft/client/Minecraft/f_91065_ net/minecraft/client/Minecraft/gui +FD: net/minecraft/client/Minecraft/f_91066_ net/minecraft/client/Minecraft/options +FD: net/minecraft/client/Minecraft/f_91067_ net/minecraft/client/Minecraft/mouseHandler +FD: net/minecraft/client/Minecraft/f_91068_ net/minecraft/client/Minecraft/keyboardHandler +FD: net/minecraft/client/Minecraft/f_91069_ net/minecraft/client/Minecraft/gameDirectory +FD: net/minecraft/client/Minecraft/f_91070_ net/minecraft/client/Minecraft/frameTimer +FD: net/minecraft/client/Minecraft/f_91072_ net/minecraft/client/Minecraft/gameMode +FD: net/minecraft/client/Minecraft/f_91073_ net/minecraft/client/Minecraft/level +FD: net/minecraft/client/Minecraft/f_91074_ net/minecraft/client/Minecraft/player +FD: net/minecraft/client/Minecraft/f_91075_ net/minecraft/client/Minecraft/cameraEntity +FD: net/minecraft/client/Minecraft/f_91076_ net/minecraft/client/Minecraft/crosshairPickEntity +FD: net/minecraft/client/Minecraft/f_91077_ net/minecraft/client/Minecraft/hitResult +FD: net/minecraft/client/Minecraft/f_91078_ net/minecraft/client/Minecraft/missTime +FD: net/minecraft/client/Minecraft/f_91079_ net/minecraft/client/Minecraft/noRender +FD: net/minecraft/client/Minecraft/f_91080_ net/minecraft/client/Minecraft/screen +FD: net/minecraft/client/Minecraft/f_91081_ net/minecraft/client/Minecraft/overlay +FD: net/minecraft/client/Minecraft$1/f_91406_ net/minecraft/client/Minecraft$1/$SwitchMap$net$minecraft$world$phys$HitResult$Type +FD: net/minecraft/client/Minecraft$ChatStatus/$VALUES net/minecraft/client/Minecraft$ChatStatus/$VALUES +FD: net/minecraft/client/Minecraft$ChatStatus/DISABLED_BY_LAUNCHER net/minecraft/client/Minecraft$ChatStatus/DISABLED_BY_LAUNCHER +FD: net/minecraft/client/Minecraft$ChatStatus/DISABLED_BY_OPTIONS net/minecraft/client/Minecraft$ChatStatus/DISABLED_BY_OPTIONS +FD: net/minecraft/client/Minecraft$ChatStatus/DISABLED_BY_PROFILE net/minecraft/client/Minecraft$ChatStatus/DISABLED_BY_PROFILE +FD: net/minecraft/client/Minecraft$ChatStatus/ENABLED net/minecraft/client/Minecraft$ChatStatus/ENABLED +FD: net/minecraft/client/Minecraft$ChatStatus/f_168027_ net/minecraft/client/Minecraft$ChatStatus/message +FD: net/minecraft/client/Minecraft$ChatStatus/f_238170_ net/minecraft/client/Minecraft$ChatStatus/INFO_DISABLED_BY_PROFILE +FD: net/minecraft/client/MouseHandler/f_91503_ net/minecraft/client/MouseHandler/minecraft +FD: net/minecraft/client/MouseHandler/f_91504_ net/minecraft/client/MouseHandler/isLeftPressed +FD: net/minecraft/client/MouseHandler/f_91505_ net/minecraft/client/MouseHandler/isMiddlePressed +FD: net/minecraft/client/MouseHandler/f_91506_ net/minecraft/client/MouseHandler/isRightPressed +FD: net/minecraft/client/MouseHandler/f_91507_ net/minecraft/client/MouseHandler/xpos +FD: net/minecraft/client/MouseHandler/f_91508_ net/minecraft/client/MouseHandler/ypos +FD: net/minecraft/client/MouseHandler/f_91509_ net/minecraft/client/MouseHandler/fakeRightMouse +FD: net/minecraft/client/MouseHandler/f_91510_ net/minecraft/client/MouseHandler/activeButton +FD: net/minecraft/client/MouseHandler/f_91511_ net/minecraft/client/MouseHandler/ignoreFirstMove +FD: net/minecraft/client/MouseHandler/f_91512_ net/minecraft/client/MouseHandler/clickDepth +FD: net/minecraft/client/MouseHandler/f_91513_ net/minecraft/client/MouseHandler/mousePressedTime +FD: net/minecraft/client/MouseHandler/f_91514_ net/minecraft/client/MouseHandler/smoothTurnX +FD: net/minecraft/client/MouseHandler/f_91515_ net/minecraft/client/MouseHandler/smoothTurnY +FD: net/minecraft/client/MouseHandler/f_91516_ net/minecraft/client/MouseHandler/accumulatedDX +FD: net/minecraft/client/MouseHandler/f_91517_ net/minecraft/client/MouseHandler/accumulatedDY +FD: net/minecraft/client/MouseHandler/f_91518_ net/minecraft/client/MouseHandler/accumulatedScroll +FD: net/minecraft/client/MouseHandler/f_91519_ net/minecraft/client/MouseHandler/lastMouseEventTime +FD: net/minecraft/client/MouseHandler/f_91520_ net/minecraft/client/MouseHandler/mouseGrabbed +FD: net/minecraft/client/NarratorStatus/$VALUES net/minecraft/client/NarratorStatus/$VALUES +FD: net/minecraft/client/NarratorStatus/ALL net/minecraft/client/NarratorStatus/ALL +FD: net/minecraft/client/NarratorStatus/CHAT net/minecraft/client/NarratorStatus/CHAT +FD: net/minecraft/client/NarratorStatus/OFF net/minecraft/client/NarratorStatus/OFF +FD: net/minecraft/client/NarratorStatus/SYSTEM net/minecraft/client/NarratorStatus/SYSTEM +FD: net/minecraft/client/NarratorStatus/f_91608_ net/minecraft/client/NarratorStatus/BY_ID +FD: net/minecraft/client/NarratorStatus/f_91609_ net/minecraft/client/NarratorStatus/id +FD: net/minecraft/client/NarratorStatus/f_91610_ net/minecraft/client/NarratorStatus/name +FD: net/minecraft/client/OptionInstance/f_231471_ net/minecraft/client/OptionInstance/BOOLEAN_VALUES +FD: net/minecraft/client/OptionInstance/f_231472_ net/minecraft/client/OptionInstance/LOGGER +FD: net/minecraft/client/OptionInstance/f_231474_ net/minecraft/client/OptionInstance/tooltip +FD: net/minecraft/client/OptionInstance/f_231475_ net/minecraft/client/OptionInstance/toString +FD: net/minecraft/client/OptionInstance/f_231476_ net/minecraft/client/OptionInstance/values +FD: net/minecraft/client/OptionInstance/f_231477_ net/minecraft/client/OptionInstance/codec +FD: net/minecraft/client/OptionInstance/f_231478_ net/minecraft/client/OptionInstance/initialValue +FD: net/minecraft/client/OptionInstance/f_231479_ net/minecraft/client/OptionInstance/onValueUpdate +FD: net/minecraft/client/OptionInstance/f_231480_ net/minecraft/client/OptionInstance/caption +FD: net/minecraft/client/OptionInstance/f_231481_ net/minecraft/client/OptionInstance/value +FD: net/minecraft/client/OptionInstance/f_260471_ net/minecraft/client/OptionInstance/BOOLEAN_TO_STRING +FD: net/minecraft/client/OptionInstance$AltEnum/f_231557_ net/minecraft/client/OptionInstance$AltEnum/values +FD: net/minecraft/client/OptionInstance$AltEnum/f_231558_ net/minecraft/client/OptionInstance$AltEnum/altValues +FD: net/minecraft/client/OptionInstance$AltEnum/f_231559_ net/minecraft/client/OptionInstance$AltEnum/altCondition +FD: net/minecraft/client/OptionInstance$AltEnum/f_231560_ net/minecraft/client/OptionInstance$AltEnum/valueSetter +FD: net/minecraft/client/OptionInstance$AltEnum/f_231561_ net/minecraft/client/OptionInstance$AltEnum/codec +FD: net/minecraft/client/OptionInstance$ClampingLazyMaxIntRange/f_231583_ net/minecraft/client/OptionInstance$ClampingLazyMaxIntRange/minInclusive +FD: net/minecraft/client/OptionInstance$ClampingLazyMaxIntRange/f_231584_ net/minecraft/client/OptionInstance$ClampingLazyMaxIntRange/maxSupplier +FD: net/minecraft/client/OptionInstance$ClampingLazyMaxIntRange/f_276069_ net/minecraft/client/OptionInstance$ClampingLazyMaxIntRange/encodableMaxInclusive +FD: net/minecraft/client/OptionInstance$Enum/f_231625_ net/minecraft/client/OptionInstance$Enum/values +FD: net/minecraft/client/OptionInstance$Enum/f_231626_ net/minecraft/client/OptionInstance$Enum/codec +FD: net/minecraft/client/OptionInstance$IntRange/f_231639_ net/minecraft/client/OptionInstance$IntRange/minInclusive +FD: net/minecraft/client/OptionInstance$IntRange/f_231640_ net/minecraft/client/OptionInstance$IntRange/maxInclusive +FD: net/minecraft/client/OptionInstance$IntRangeBase$1/f_231666_ net/minecraft/client/OptionInstance$IntRangeBase$1/val$from +FD: net/minecraft/client/OptionInstance$IntRangeBase$1/f_231667_ net/minecraft/client/OptionInstance$IntRangeBase$1/val$to +FD: net/minecraft/client/OptionInstance$IntRangeBase$1/f_231668_ net/minecraft/client/OptionInstance$IntRangeBase$1/this$0 +FD: net/minecraft/client/OptionInstance$LazyEnum/f_231680_ net/minecraft/client/OptionInstance$LazyEnum/values +FD: net/minecraft/client/OptionInstance$LazyEnum/f_231681_ net/minecraft/client/OptionInstance$LazyEnum/validateValue +FD: net/minecraft/client/OptionInstance$LazyEnum/f_231682_ net/minecraft/client/OptionInstance$LazyEnum/codec +FD: net/minecraft/client/OptionInstance$OptionInstanceSliderButton/f_231697_ net/minecraft/client/OptionInstance$OptionInstanceSliderButton/instance +FD: net/minecraft/client/OptionInstance$OptionInstanceSliderButton/f_231698_ net/minecraft/client/OptionInstance$OptionInstanceSliderButton/values +FD: net/minecraft/client/OptionInstance$OptionInstanceSliderButton/f_256889_ net/minecraft/client/OptionInstance$OptionInstanceSliderButton/tooltipSupplier +FD: net/minecraft/client/OptionInstance$OptionInstanceSliderButton/f_260531_ net/minecraft/client/OptionInstance$OptionInstanceSliderButton/onValueChanged +FD: net/minecraft/client/OptionInstance$UnitDouble/$VALUES net/minecraft/client/OptionInstance$UnitDouble/$VALUES +FD: net/minecraft/client/OptionInstance$UnitDouble/INSTANCE net/minecraft/client/OptionInstance$UnitDouble/INSTANCE +FD: net/minecraft/client/OptionInstance$UnitDouble$1/f_231765_ net/minecraft/client/OptionInstance$UnitDouble$1/val$from +FD: net/minecraft/client/OptionInstance$UnitDouble$1/f_231766_ net/minecraft/client/OptionInstance$UnitDouble$1/val$to +FD: net/minecraft/client/OptionInstance$UnitDouble$1/f_231767_ net/minecraft/client/OptionInstance$UnitDouble$1/this$0 +FD: net/minecraft/client/Options/f_168405_ net/minecraft/client/Options/hideBundleTutorial +FD: net/minecraft/client/Options/f_168406_ net/minecraft/client/Options/RENDER_DISTANCE_TINY +FD: net/minecraft/client/Options/f_168407_ net/minecraft/client/Options/RENDER_DISTANCE_SHORT +FD: net/minecraft/client/Options/f_168408_ net/minecraft/client/Options/DEFAULT_VOLUME +FD: net/minecraft/client/Options/f_168409_ net/minecraft/client/Options/RENDER_DISTANCE_NORMAL +FD: net/minecraft/client/Options/f_168410_ net/minecraft/client/Options/RENDER_DISTANCE_FAR +FD: net/minecraft/client/Options/f_168411_ net/minecraft/client/Options/RENDER_DISTANCE_REALLY_FAR +FD: net/minecraft/client/Options/f_168412_ net/minecraft/client/Options/RENDER_DISTANCE_EXTREME +FD: net/minecraft/client/Options/f_168413_ net/minecraft/client/Options/darkMojangStudiosBackground +FD: net/minecraft/client/Options/f_193762_ net/minecraft/client/Options/allowServerListing +FD: net/minecraft/client/Options/f_193763_ net/minecraft/client/Options/showAutosaveIndicator +FD: net/minecraft/client/Options/f_193764_ net/minecraft/client/Options/soundDevice +FD: net/minecraft/client/Options/f_193765_ net/minecraft/client/Options/serverRenderDistance +FD: net/minecraft/client/Options/f_193766_ net/minecraft/client/Options/DEFAULT_SOUND_DEVICE +FD: net/minecraft/client/Options/f_193768_ net/minecraft/client/Options/simulationDistance +FD: net/minecraft/client/Options/f_193769_ net/minecraft/client/Options/prioritizeChunkUpdates +FD: net/minecraft/client/Options/f_210816_ net/minecraft/client/Options/skipRealms32bitWarning +FD: net/minecraft/client/Options/f_231785_ net/minecraft/client/Options/GRAPHICS_TOOLTIP_FANCY +FD: net/minecraft/client/Options/f_231786_ net/minecraft/client/Options/PRIORITIZE_CHUNK_TOOLTIP_NONE +FD: net/minecraft/client/Options/f_231787_ net/minecraft/client/Options/PRIORITIZE_CHUNK_TOOLTIP_PLAYER_AFFECTED +FD: net/minecraft/client/Options/f_231788_ net/minecraft/client/Options/PRIORITIZE_CHUNK_TOOLTIP_NEARBY +FD: net/minecraft/client/Options/f_231789_ net/minecraft/client/Options/ACCESSIBILITY_TOOLTIP_DARK_MOJANG_BACKGROUND +FD: net/minecraft/client/Options/f_231790_ net/minecraft/client/Options/ACCESSIBILITY_TOOLTIP_HIDE_LIGHTNING_FLASHES +FD: net/minecraft/client/Options/f_231791_ net/minecraft/client/Options/hideLightningFlash +FD: net/minecraft/client/Options/f_231792_ net/minecraft/client/Options/cloudStatus +FD: net/minecraft/client/Options/f_231793_ net/minecraft/client/Options/GRAPHICS_TOOLTIP_FAST +FD: net/minecraft/client/Options/f_231794_ net/minecraft/client/Options/GRAPHICS_TOOLTIP_FABULOUS +FD: net/minecraft/client/Options/f_231797_ net/minecraft/client/Options/CHAT_TOOLTIP_ONLY_SHOW_SECURE +FD: net/minecraft/client/Options/f_231798_ net/minecraft/client/Options/onlyShowSecureChat +FD: net/minecraft/client/Options/f_231799_ net/minecraft/client/Options/ACCESSIBILITY_TOOLTIP_SCREEN_EFFECT +FD: net/minecraft/client/Options/f_231800_ net/minecraft/client/Options/ACCESSIBILITY_TOOLTIP_FOV_EFFECT +FD: net/minecraft/client/Options/f_231801_ net/minecraft/client/Options/ACCESSIBILITY_TOOLTIP_DARKNESS_EFFECT +FD: net/minecraft/client/Options/f_231802_ net/minecraft/client/Options/darknessEffectScale +FD: net/minecraft/client/Options/f_231803_ net/minecraft/client/Options/narrator +FD: net/minecraft/client/Options/f_231804_ net/minecraft/client/Options/ALLOW_SERVER_LISTING_TOOLTIP +FD: net/minecraft/client/Options/f_231805_ net/minecraft/client/Options/DIRECTIONAL_AUDIO_TOOLTIP_ON +FD: net/minecraft/client/Options/f_231806_ net/minecraft/client/Options/DIRECTIONAL_AUDIO_TOOLTIP_OFF +FD: net/minecraft/client/Options/f_231807_ net/minecraft/client/Options/directionalAudio +FD: net/minecraft/client/Options/f_231808_ net/minecraft/client/Options/MOVEMENT_TOGGLE +FD: net/minecraft/client/Options/f_231809_ net/minecraft/client/Options/MOVEMENT_HOLD +FD: net/minecraft/client/Options/f_231810_ net/minecraft/client/Options/CHAT_TOOLTIP_HIDE_MATCHED_NAMES +FD: net/minecraft/client/Options/f_231811_ net/minecraft/client/Options/UNLIMITED_FRAMERATE_CUTOFF +FD: net/minecraft/client/Options/f_244402_ net/minecraft/client/Options/panoramaSpeed +FD: net/minecraft/client/Options/f_244498_ net/minecraft/client/Options/soundSourceVolumes +FD: net/minecraft/client/Options/f_256834_ net/minecraft/client/Options/operatorItemsTab +FD: net/minecraft/client/Options/f_260461_ net/minecraft/client/Options/telemetryOptInExtra +FD: net/minecraft/client/Options/f_260656_ net/minecraft/client/Options/TELEMETRY_TOOLTIP +FD: net/minecraft/client/Options/f_263718_ net/minecraft/client/Options/notificationDisplayTime +FD: net/minecraft/client/Options/f_263744_ net/minecraft/client/Options/onboardAccessibility +FD: net/minecraft/client/Options/f_263815_ net/minecraft/client/Options/ACCESSIBILITY_TOOLTIP_NOTIFICATION_DISPLAY_TIME +FD: net/minecraft/client/Options/f_267409_ net/minecraft/client/Options/ACCESSIBILITY_TOOLTIP_GLINT_SPEED +FD: net/minecraft/client/Options/f_267450_ net/minecraft/client/Options/ACCESSIBILITY_TOOLTIP_GLINT_STRENGTH +FD: net/minecraft/client/Options/f_267458_ net/minecraft/client/Options/glintSpeed +FD: net/minecraft/client/Options/f_267462_ net/minecraft/client/Options/glintStrength +FD: net/minecraft/client/Options/f_268427_ net/minecraft/client/Options/damageTiltStrength +FD: net/minecraft/client/Options/f_268597_ net/minecraft/client/Options/ACCESSIBILITY_TOOLTIP_DAMAGE_TILT_STRENGTH +FD: net/minecraft/client/Options/f_273812_ net/minecraft/client/Options/ACCESSIBILITY_TOOLTIP_CONTRAST_MODE +FD: net/minecraft/client/Options/f_273910_ net/minecraft/client/Options/highContrast +FD: net/minecraft/client/Options/f_276073_ net/minecraft/client/Options/MAX_GUI_SCALE_INCLUSIVE +FD: net/minecraft/client/Options/f_278127_ net/minecraft/client/Options/AUTO_GUI_SCALE +FD: net/minecraft/client/Options/f_92027_ net/minecraft/client/Options/mipmapLevels +FD: net/minecraft/client/Options/f_92028_ net/minecraft/client/Options/useNativeTransport +FD: net/minecraft/client/Options/f_92029_ net/minecraft/client/Options/attackIndicator +FD: net/minecraft/client/Options/f_92030_ net/minecraft/client/Options/tutorialStep +FD: net/minecraft/client/Options/f_92031_ net/minecraft/client/Options/joinedFirstServer +FD: net/minecraft/client/Options/f_92032_ net/minecraft/client/Options/biomeBlendRadius +FD: net/minecraft/client/Options/f_92033_ net/minecraft/client/Options/mouseWheelSensitivity +FD: net/minecraft/client/Options/f_92034_ net/minecraft/client/Options/rawMouseInput +FD: net/minecraft/client/Options/f_92035_ net/minecraft/client/Options/glDebugVerbosity +FD: net/minecraft/client/Options/f_92036_ net/minecraft/client/Options/autoJump +FD: net/minecraft/client/Options/f_92037_ net/minecraft/client/Options/autoSuggestions +FD: net/minecraft/client/Options/f_92038_ net/minecraft/client/Options/chatColors +FD: net/minecraft/client/Options/f_92039_ net/minecraft/client/Options/chatLinks +FD: net/minecraft/client/Options/f_92040_ net/minecraft/client/Options/chatLinksPrompt +FD: net/minecraft/client/Options/f_92041_ net/minecraft/client/Options/enableVsync +FD: net/minecraft/client/Options/f_92042_ net/minecraft/client/Options/entityShadows +FD: net/minecraft/client/Options/f_92043_ net/minecraft/client/Options/forceUnicodeFont +FD: net/minecraft/client/Options/f_92044_ net/minecraft/client/Options/invertYMouse +FD: net/minecraft/client/Options/f_92045_ net/minecraft/client/Options/discreteMouseScroll +FD: net/minecraft/client/Options/f_92046_ net/minecraft/client/Options/realmsNotifications +FD: net/minecraft/client/Options/f_92047_ net/minecraft/client/Options/reducedDebugInfo +FD: net/minecraft/client/Options/f_92049_ net/minecraft/client/Options/showSubtitles +FD: net/minecraft/client/Options/f_92050_ net/minecraft/client/Options/backgroundForChatOnly +FD: net/minecraft/client/Options/f_92051_ net/minecraft/client/Options/touchscreen +FD: net/minecraft/client/Options/f_92052_ net/minecraft/client/Options/fullscreen +FD: net/minecraft/client/Options/f_92053_ net/minecraft/client/Options/sensitivity +FD: net/minecraft/client/Options/f_92054_ net/minecraft/client/Options/keySpectatorOutlines +FD: net/minecraft/client/Options/f_92055_ net/minecraft/client/Options/keyAdvancements +FD: net/minecraft/client/Options/f_92056_ net/minecraft/client/Options/keyHotbarSlots +FD: net/minecraft/client/Options/f_92057_ net/minecraft/client/Options/keySaveHotbarActivator +FD: net/minecraft/client/Options/f_92058_ net/minecraft/client/Options/keyLoadHotbarActivator +FD: net/minecraft/client/Options/f_92059_ net/minecraft/client/Options/keyMappings +FD: net/minecraft/client/Options/f_92060_ net/minecraft/client/Options/minecraft +FD: net/minecraft/client/Options/f_92062_ net/minecraft/client/Options/hideGui +FD: net/minecraft/client/Options/f_92063_ net/minecraft/client/Options/renderDebug +FD: net/minecraft/client/Options/f_92064_ net/minecraft/client/Options/renderDebugCharts +FD: net/minecraft/client/Options/f_92065_ net/minecraft/client/Options/renderFpsChart +FD: net/minecraft/client/Options/f_92066_ net/minecraft/client/Options/lastMpIp +FD: net/minecraft/client/Options/f_92067_ net/minecraft/client/Options/smoothCamera +FD: net/minecraft/client/Options/f_92068_ net/minecraft/client/Options/fov +FD: net/minecraft/client/Options/f_92069_ net/minecraft/client/Options/screenEffectScale +FD: net/minecraft/client/Options/f_92070_ net/minecraft/client/Options/fovEffectScale +FD: net/minecraft/client/Options/f_92071_ net/minecraft/client/Options/gamma +FD: net/minecraft/client/Options/f_92072_ net/minecraft/client/Options/guiScale +FD: net/minecraft/client/Options/f_92073_ net/minecraft/client/Options/particles +FD: net/minecraft/client/Options/f_92075_ net/minecraft/client/Options/languageCode +FD: net/minecraft/client/Options/f_92076_ net/minecraft/client/Options/syncWrites +FD: net/minecraft/client/Options/f_92077_ net/minecraft/client/Options/LOGGER +FD: net/minecraft/client/Options/f_92078_ net/minecraft/client/Options/GSON +FD: net/minecraft/client/Options/f_92079_ net/minecraft/client/Options/RESOURCE_PACK_TYPE +FD: net/minecraft/client/Options/f_92080_ net/minecraft/client/Options/bobView +FD: net/minecraft/client/Options/f_92081_ net/minecraft/client/Options/toggleCrouch +FD: net/minecraft/client/Options/f_92082_ net/minecraft/client/Options/toggleSprint +FD: net/minecraft/client/Options/f_92083_ net/minecraft/client/Options/skipMultiplayerWarning +FD: net/minecraft/client/Options/f_92084_ net/minecraft/client/Options/hideMatchedNames +FD: net/minecraft/client/Options/f_92085_ net/minecraft/client/Options/keyUp +FD: net/minecraft/client/Options/f_92086_ net/minecraft/client/Options/keyLeft +FD: net/minecraft/client/Options/f_92087_ net/minecraft/client/Options/keyDown +FD: net/minecraft/client/Options/f_92088_ net/minecraft/client/Options/keyRight +FD: net/minecraft/client/Options/f_92089_ net/minecraft/client/Options/keyJump +FD: net/minecraft/client/Options/f_92090_ net/minecraft/client/Options/keyShift +FD: net/minecraft/client/Options/f_92091_ net/minecraft/client/Options/keySprint +FD: net/minecraft/client/Options/f_92092_ net/minecraft/client/Options/keyInventory +FD: net/minecraft/client/Options/f_92093_ net/minecraft/client/Options/keySwapOffhand +FD: net/minecraft/client/Options/f_92094_ net/minecraft/client/Options/keyDrop +FD: net/minecraft/client/Options/f_92095_ net/minecraft/client/Options/keyUse +FD: net/minecraft/client/Options/f_92096_ net/minecraft/client/Options/keyAttack +FD: net/minecraft/client/Options/f_92097_ net/minecraft/client/Options/keyPickItem +FD: net/minecraft/client/Options/f_92098_ net/minecraft/client/Options/keyChat +FD: net/minecraft/client/Options/f_92099_ net/minecraft/client/Options/keyPlayerList +FD: net/minecraft/client/Options/f_92100_ net/minecraft/client/Options/keyCommand +FD: net/minecraft/client/Options/f_92101_ net/minecraft/client/Options/keySocialInteractions +FD: net/minecraft/client/Options/f_92102_ net/minecraft/client/Options/keyScreenshot +FD: net/minecraft/client/Options/f_92103_ net/minecraft/client/Options/keyTogglePerspective +FD: net/minecraft/client/Options/f_92104_ net/minecraft/client/Options/keySmoothCamera +FD: net/minecraft/client/Options/f_92105_ net/minecraft/client/Options/keyFullscreen +FD: net/minecraft/client/Options/f_92106_ net/minecraft/client/Options/renderDistance +FD: net/minecraft/client/Options/f_92107_ net/minecraft/client/Options/OPTION_SPLITTER +FD: net/minecraft/client/Options/f_92108_ net/minecraft/client/Options/modelParts +FD: net/minecraft/client/Options/f_92110_ net/minecraft/client/Options/optionsFile +FD: net/minecraft/client/Options/f_92111_ net/minecraft/client/Options/cameraType +FD: net/minecraft/client/Options/f_92112_ net/minecraft/client/Options/entityDistanceScaling +FD: net/minecraft/client/Options/f_92113_ net/minecraft/client/Options/framerateLimit +FD: net/minecraft/client/Options/f_92115_ net/minecraft/client/Options/graphicsMode +FD: net/minecraft/client/Options/f_92116_ net/minecraft/client/Options/ambientOcclusion +FD: net/minecraft/client/Options/f_92117_ net/minecraft/client/Options/resourcePacks +FD: net/minecraft/client/Options/f_92118_ net/minecraft/client/Options/incompatibleResourcePacks +FD: net/minecraft/client/Options/f_92119_ net/minecraft/client/Options/chatVisibility +FD: net/minecraft/client/Options/f_92120_ net/minecraft/client/Options/chatOpacity +FD: net/minecraft/client/Options/f_92121_ net/minecraft/client/Options/chatLineSpacing +FD: net/minecraft/client/Options/f_92122_ net/minecraft/client/Options/textBackgroundOpacity +FD: net/minecraft/client/Options/f_92123_ net/minecraft/client/Options/fullscreenVideoModeString +FD: net/minecraft/client/Options/f_92124_ net/minecraft/client/Options/hideServerAddress +FD: net/minecraft/client/Options/f_92125_ net/minecraft/client/Options/advancedItemTooltips +FD: net/minecraft/client/Options/f_92126_ net/minecraft/client/Options/pauseOnLostFocus +FD: net/minecraft/client/Options/f_92127_ net/minecraft/client/Options/mainHand +FD: net/minecraft/client/Options/f_92128_ net/minecraft/client/Options/overrideWidth +FD: net/minecraft/client/Options/f_92129_ net/minecraft/client/Options/overrideHeight +FD: net/minecraft/client/Options/f_92131_ net/minecraft/client/Options/chatScale +FD: net/minecraft/client/Options/f_92132_ net/minecraft/client/Options/chatWidth +FD: net/minecraft/client/Options/f_92133_ net/minecraft/client/Options/chatHeightUnfocused +FD: net/minecraft/client/Options/f_92134_ net/minecraft/client/Options/chatHeightFocused +FD: net/minecraft/client/Options/f_92135_ net/minecraft/client/Options/chatDelay +FD: net/minecraft/client/Options$2/f_168453_ net/minecraft/client/Options$2/val$options +FD: net/minecraft/client/Options$2/f_168454_ net/minecraft/client/Options$2/this$0 +FD: net/minecraft/client/Options$3/f_168485_ net/minecraft/client/Options$3/val$writer +FD: net/minecraft/client/Options$3/f_168486_ net/minecraft/client/Options$3/this$0 +FD: net/minecraft/client/Options$4/f_168517_ net/minecraft/client/Options$4/$SwitchMap$net$minecraft$client$CloudStatus +FD: net/minecraft/client/Options$4/f_232141_ net/minecraft/client/Options$4/$SwitchMap$net$minecraft$client$PrioritizeChunkUpdates +FD: net/minecraft/client/Options$4/f_232142_ net/minecraft/client/Options$4/$SwitchMap$net$minecraft$client$GraphicsStatus +FD: net/minecraft/client/ParticleStatus/$VALUES net/minecraft/client/ParticleStatus/$VALUES +FD: net/minecraft/client/ParticleStatus/ALL net/minecraft/client/ParticleStatus/ALL +FD: net/minecraft/client/ParticleStatus/DECREASED net/minecraft/client/ParticleStatus/DECREASED +FD: net/minecraft/client/ParticleStatus/MINIMAL net/minecraft/client/ParticleStatus/MINIMAL +FD: net/minecraft/client/ParticleStatus/f_92185_ net/minecraft/client/ParticleStatus/BY_ID +FD: net/minecraft/client/ParticleStatus/f_92186_ net/minecraft/client/ParticleStatus/id +FD: net/minecraft/client/ParticleStatus/f_92187_ net/minecraft/client/ParticleStatus/key +FD: net/minecraft/client/PeriodicNotificationManager/f_205285_ net/minecraft/client/PeriodicNotificationManager/CODEC +FD: net/minecraft/client/PeriodicNotificationManager/f_205286_ net/minecraft/client/PeriodicNotificationManager/LOGGER +FD: net/minecraft/client/PeriodicNotificationManager/f_205287_ net/minecraft/client/PeriodicNotificationManager/notifications +FD: net/minecraft/client/PeriodicNotificationManager/f_205288_ net/minecraft/client/PeriodicNotificationManager/selector +FD: net/minecraft/client/PeriodicNotificationManager/f_205289_ net/minecraft/client/PeriodicNotificationManager/timer +FD: net/minecraft/client/PeriodicNotificationManager/f_205290_ net/minecraft/client/PeriodicNotificationManager/notificationTask +FD: net/minecraft/client/PeriodicNotificationManager$Notification/f_205328_ net/minecraft/client/PeriodicNotificationManager$Notification/delay +FD: net/minecraft/client/PeriodicNotificationManager$Notification/f_205329_ net/minecraft/client/PeriodicNotificationManager$Notification/period +FD: net/minecraft/client/PeriodicNotificationManager$Notification/f_205330_ net/minecraft/client/PeriodicNotificationManager$Notification/title +FD: net/minecraft/client/PeriodicNotificationManager$Notification/f_205331_ net/minecraft/client/PeriodicNotificationManager$Notification/message +FD: net/minecraft/client/PeriodicNotificationManager$NotificationTask/f_205345_ net/minecraft/client/PeriodicNotificationManager$NotificationTask/minecraft +FD: net/minecraft/client/PeriodicNotificationManager$NotificationTask/f_205346_ net/minecraft/client/PeriodicNotificationManager$NotificationTask/notifications +FD: net/minecraft/client/PeriodicNotificationManager$NotificationTask/f_205347_ net/minecraft/client/PeriodicNotificationManager$NotificationTask/period +FD: net/minecraft/client/PeriodicNotificationManager$NotificationTask/f_205348_ net/minecraft/client/PeriodicNotificationManager$NotificationTask/elapsed +FD: net/minecraft/client/PrioritizeChunkUpdates/$VALUES net/minecraft/client/PrioritizeChunkUpdates/$VALUES +FD: net/minecraft/client/PrioritizeChunkUpdates/NEARBY net/minecraft/client/PrioritizeChunkUpdates/NEARBY +FD: net/minecraft/client/PrioritizeChunkUpdates/NONE net/minecraft/client/PrioritizeChunkUpdates/NONE +FD: net/minecraft/client/PrioritizeChunkUpdates/PLAYER_AFFECTED net/minecraft/client/PrioritizeChunkUpdates/PLAYER_AFFECTED +FD: net/minecraft/client/PrioritizeChunkUpdates/f_193776_ net/minecraft/client/PrioritizeChunkUpdates/BY_ID +FD: net/minecraft/client/PrioritizeChunkUpdates/f_193777_ net/minecraft/client/PrioritizeChunkUpdates/id +FD: net/minecraft/client/PrioritizeChunkUpdates/f_193778_ net/minecraft/client/PrioritizeChunkUpdates/key +FD: net/minecraft/client/Realms32BitWarningStatus/f_232198_ net/minecraft/client/Realms32BitWarningStatus/LOGGER +FD: net/minecraft/client/Realms32BitWarningStatus/f_232199_ net/minecraft/client/Realms32BitWarningStatus/minecraft +FD: net/minecraft/client/Realms32BitWarningStatus/f_232200_ net/minecraft/client/Realms32BitWarningStatus/subscriptionCheck +FD: net/minecraft/client/Realms32BitWarningStatus/f_232201_ net/minecraft/client/Realms32BitWarningStatus/warningScreenShown +FD: net/minecraft/client/RecipeBookCategories/$VALUES net/minecraft/client/RecipeBookCategories/$VALUES +FD: net/minecraft/client/RecipeBookCategories/BLAST_FURNACE_BLOCKS net/minecraft/client/RecipeBookCategories/BLAST_FURNACE_BLOCKS +FD: net/minecraft/client/RecipeBookCategories/BLAST_FURNACE_MISC net/minecraft/client/RecipeBookCategories/BLAST_FURNACE_MISC +FD: net/minecraft/client/RecipeBookCategories/BLAST_FURNACE_SEARCH net/minecraft/client/RecipeBookCategories/BLAST_FURNACE_SEARCH +FD: net/minecraft/client/RecipeBookCategories/CAMPFIRE net/minecraft/client/RecipeBookCategories/CAMPFIRE +FD: net/minecraft/client/RecipeBookCategories/CRAFTING_BUILDING_BLOCKS net/minecraft/client/RecipeBookCategories/CRAFTING_BUILDING_BLOCKS +FD: net/minecraft/client/RecipeBookCategories/CRAFTING_EQUIPMENT net/minecraft/client/RecipeBookCategories/CRAFTING_EQUIPMENT +FD: net/minecraft/client/RecipeBookCategories/CRAFTING_MISC net/minecraft/client/RecipeBookCategories/CRAFTING_MISC +FD: net/minecraft/client/RecipeBookCategories/CRAFTING_REDSTONE net/minecraft/client/RecipeBookCategories/CRAFTING_REDSTONE +FD: net/minecraft/client/RecipeBookCategories/CRAFTING_SEARCH net/minecraft/client/RecipeBookCategories/CRAFTING_SEARCH +FD: net/minecraft/client/RecipeBookCategories/FURNACE_BLOCKS net/minecraft/client/RecipeBookCategories/FURNACE_BLOCKS +FD: net/minecraft/client/RecipeBookCategories/FURNACE_FOOD net/minecraft/client/RecipeBookCategories/FURNACE_FOOD +FD: net/minecraft/client/RecipeBookCategories/FURNACE_MISC net/minecraft/client/RecipeBookCategories/FURNACE_MISC +FD: net/minecraft/client/RecipeBookCategories/FURNACE_SEARCH net/minecraft/client/RecipeBookCategories/FURNACE_SEARCH +FD: net/minecraft/client/RecipeBookCategories/SMITHING net/minecraft/client/RecipeBookCategories/SMITHING +FD: net/minecraft/client/RecipeBookCategories/SMOKER_FOOD net/minecraft/client/RecipeBookCategories/SMOKER_FOOD +FD: net/minecraft/client/RecipeBookCategories/SMOKER_SEARCH net/minecraft/client/RecipeBookCategories/SMOKER_SEARCH +FD: net/minecraft/client/RecipeBookCategories/STONECUTTER net/minecraft/client/RecipeBookCategories/STONECUTTER +FD: net/minecraft/client/RecipeBookCategories/UNKNOWN net/minecraft/client/RecipeBookCategories/UNKNOWN +FD: net/minecraft/client/RecipeBookCategories/f_92256_ net/minecraft/client/RecipeBookCategories/SMOKER_CATEGORIES +FD: net/minecraft/client/RecipeBookCategories/f_92257_ net/minecraft/client/RecipeBookCategories/BLAST_FURNACE_CATEGORIES +FD: net/minecraft/client/RecipeBookCategories/f_92258_ net/minecraft/client/RecipeBookCategories/FURNACE_CATEGORIES +FD: net/minecraft/client/RecipeBookCategories/f_92259_ net/minecraft/client/RecipeBookCategories/CRAFTING_CATEGORIES +FD: net/minecraft/client/RecipeBookCategories/f_92260_ net/minecraft/client/RecipeBookCategories/AGGREGATE_CATEGORIES +FD: net/minecraft/client/RecipeBookCategories/f_92261_ net/minecraft/client/RecipeBookCategories/itemIcons +FD: net/minecraft/client/RecipeBookCategories$1/f_92274_ net/minecraft/client/RecipeBookCategories$1/$SwitchMap$net$minecraft$world$inventory$RecipeBookType +FD: net/minecraft/client/ResourceLoadStateTracker/f_168551_ net/minecraft/client/ResourceLoadStateTracker/LOGGER +FD: net/minecraft/client/ResourceLoadStateTracker/f_168552_ net/minecraft/client/ResourceLoadStateTracker/reloadState +FD: net/minecraft/client/ResourceLoadStateTracker/f_168553_ net/minecraft/client/ResourceLoadStateTracker/reloadCount +FD: net/minecraft/client/ResourceLoadStateTracker$RecoveryInfo/f_168564_ net/minecraft/client/ResourceLoadStateTracker$RecoveryInfo/error +FD: net/minecraft/client/ResourceLoadStateTracker$ReloadReason/$VALUES net/minecraft/client/ResourceLoadStateTracker$ReloadReason/$VALUES +FD: net/minecraft/client/ResourceLoadStateTracker$ReloadReason/INITIAL net/minecraft/client/ResourceLoadStateTracker$ReloadReason/INITIAL +FD: net/minecraft/client/ResourceLoadStateTracker$ReloadReason/MANUAL net/minecraft/client/ResourceLoadStateTracker$ReloadReason/MANUAL +FD: net/minecraft/client/ResourceLoadStateTracker$ReloadReason/UNKNOWN net/minecraft/client/ResourceLoadStateTracker$ReloadReason/UNKNOWN +FD: net/minecraft/client/ResourceLoadStateTracker$ReloadReason/f_168573_ net/minecraft/client/ResourceLoadStateTracker$ReloadReason/name +FD: net/minecraft/client/ResourceLoadStateTracker$ReloadState/f_168584_ net/minecraft/client/ResourceLoadStateTracker$ReloadState/reloadReason +FD: net/minecraft/client/ResourceLoadStateTracker$ReloadState/f_168585_ net/minecraft/client/ResourceLoadStateTracker$ReloadState/packs +FD: net/minecraft/client/ResourceLoadStateTracker$ReloadState/f_168586_ net/minecraft/client/ResourceLoadStateTracker$ReloadState/recoveryReloadInfo +FD: net/minecraft/client/ResourceLoadStateTracker$ReloadState/f_168587_ net/minecraft/client/ResourceLoadStateTracker$ReloadState/finished +FD: net/minecraft/client/Screenshot/f_168594_ net/minecraft/client/Screenshot/rowHeight +FD: net/minecraft/client/Screenshot/f_168595_ net/minecraft/client/Screenshot/outputStream +FD: net/minecraft/client/Screenshot/f_168596_ net/minecraft/client/Screenshot/bytes +FD: net/minecraft/client/Screenshot/f_168597_ net/minecraft/client/Screenshot/width +FD: net/minecraft/client/Screenshot/f_168598_ net/minecraft/client/Screenshot/height +FD: net/minecraft/client/Screenshot/f_168599_ net/minecraft/client/Screenshot/file +FD: net/minecraft/client/Screenshot/f_260508_ net/minecraft/client/Screenshot/SCREENSHOT_DIR +FD: net/minecraft/client/Screenshot/f_92276_ net/minecraft/client/Screenshot/LOGGER +FD: net/minecraft/client/StringSplitter/f_92333_ net/minecraft/client/StringSplitter/widthProvider +FD: net/minecraft/client/StringSplitter$1/f_92436_ net/minecraft/client/StringSplitter$1/val$output +FD: net/minecraft/client/StringSplitter$1/f_92437_ net/minecraft/client/StringSplitter$1/this$0 +FD: net/minecraft/client/StringSplitter$1/f_92438_ net/minecraft/client/StringSplitter$1/collector +FD: net/minecraft/client/StringSplitter$FlatComponents/f_92445_ net/minecraft/client/StringSplitter$FlatComponents/parts +FD: net/minecraft/client/StringSplitter$FlatComponents/f_92446_ net/minecraft/client/StringSplitter$FlatComponents/flatParts +FD: net/minecraft/client/StringSplitter$LineBreakFinder/f_92460_ net/minecraft/client/StringSplitter$LineBreakFinder/this$0 +FD: net/minecraft/client/StringSplitter$LineBreakFinder/f_92461_ net/minecraft/client/StringSplitter$LineBreakFinder/maxWidth +FD: net/minecraft/client/StringSplitter$LineBreakFinder/f_92462_ net/minecraft/client/StringSplitter$LineBreakFinder/lineBreak +FD: net/minecraft/client/StringSplitter$LineBreakFinder/f_92463_ net/minecraft/client/StringSplitter$LineBreakFinder/lineBreakStyle +FD: net/minecraft/client/StringSplitter$LineBreakFinder/f_92464_ net/minecraft/client/StringSplitter$LineBreakFinder/hadNonZeroWidthChar +FD: net/minecraft/client/StringSplitter$LineBreakFinder/f_92465_ net/minecraft/client/StringSplitter$LineBreakFinder/width +FD: net/minecraft/client/StringSplitter$LineBreakFinder/f_92466_ net/minecraft/client/StringSplitter$LineBreakFinder/lastSpace +FD: net/minecraft/client/StringSplitter$LineBreakFinder/f_92467_ net/minecraft/client/StringSplitter$LineBreakFinder/lastSpaceStyle +FD: net/minecraft/client/StringSplitter$LineBreakFinder/f_92468_ net/minecraft/client/StringSplitter$LineBreakFinder/nextChar +FD: net/minecraft/client/StringSplitter$LineBreakFinder/f_92469_ net/minecraft/client/StringSplitter$LineBreakFinder/offset +FD: net/minecraft/client/StringSplitter$LineComponent/f_92485_ net/minecraft/client/StringSplitter$LineComponent/contents +FD: net/minecraft/client/StringSplitter$LineComponent/f_92486_ net/minecraft/client/StringSplitter$LineComponent/style +FD: net/minecraft/client/StringSplitter$WidthLimitedCharSink/f_92503_ net/minecraft/client/StringSplitter$WidthLimitedCharSink/this$0 +FD: net/minecraft/client/StringSplitter$WidthLimitedCharSink/f_92504_ net/minecraft/client/StringSplitter$WidthLimitedCharSink/maxWidth +FD: net/minecraft/client/StringSplitter$WidthLimitedCharSink/f_92505_ net/minecraft/client/StringSplitter$WidthLimitedCharSink/position +FD: net/minecraft/client/Timer/f_92518_ net/minecraft/client/Timer/partialTick +FD: net/minecraft/client/Timer/f_92519_ net/minecraft/client/Timer/tickDelta +FD: net/minecraft/client/Timer/f_92520_ net/minecraft/client/Timer/lastMs +FD: net/minecraft/client/Timer/f_92521_ net/minecraft/client/Timer/msPerTick +FD: net/minecraft/client/ToggleKeyMapping/f_92527_ net/minecraft/client/ToggleKeyMapping/needsToggle +FD: net/minecraft/client/User/f_193796_ net/minecraft/client/User/xuid +FD: net/minecraft/client/User/f_193797_ net/minecraft/client/User/clientId +FD: net/minecraft/client/User/f_92535_ net/minecraft/client/User/name +FD: net/minecraft/client/User/f_92536_ net/minecraft/client/User/uuid +FD: net/minecraft/client/User/f_92537_ net/minecraft/client/User/accessToken +FD: net/minecraft/client/User/f_92538_ net/minecraft/client/User/type +FD: net/minecraft/client/User$Type/$VALUES net/minecraft/client/User$Type/$VALUES +FD: net/minecraft/client/User$Type/LEGACY net/minecraft/client/User$Type/LEGACY +FD: net/minecraft/client/User$Type/MOJANG net/minecraft/client/User$Type/MOJANG +FD: net/minecraft/client/User$Type/MSA net/minecraft/client/User$Type/MSA +FD: net/minecraft/client/User$Type/f_92551_ net/minecraft/client/User$Type/BY_NAME +FD: net/minecraft/client/User$Type/f_92552_ net/minecraft/client/User$Type/name +FD: net/minecraft/client/animation/AnimationChannel/f_232211_ net/minecraft/client/animation/AnimationChannel/target +FD: net/minecraft/client/animation/AnimationChannel/f_232212_ net/minecraft/client/animation/AnimationChannel/keyframes +FD: net/minecraft/client/animation/AnimationChannel$Interpolations/f_232229_ net/minecraft/client/animation/AnimationChannel$Interpolations/LINEAR +FD: net/minecraft/client/animation/AnimationChannel$Interpolations/f_232230_ net/minecraft/client/animation/AnimationChannel$Interpolations/CATMULLROM +FD: net/minecraft/client/animation/AnimationChannel$Targets/f_232250_ net/minecraft/client/animation/AnimationChannel$Targets/POSITION +FD: net/minecraft/client/animation/AnimationChannel$Targets/f_232251_ net/minecraft/client/animation/AnimationChannel$Targets/ROTATION +FD: net/minecraft/client/animation/AnimationChannel$Targets/f_232252_ net/minecraft/client/animation/AnimationChannel$Targets/SCALE +FD: net/minecraft/client/animation/AnimationDefinition/f_232255_ net/minecraft/client/animation/AnimationDefinition/lengthInSeconds +FD: net/minecraft/client/animation/AnimationDefinition/f_232256_ net/minecraft/client/animation/AnimationDefinition/looping +FD: net/minecraft/client/animation/AnimationDefinition/f_232257_ net/minecraft/client/animation/AnimationDefinition/boneAnimations +FD: net/minecraft/client/animation/AnimationDefinition$Builder/f_232269_ net/minecraft/client/animation/AnimationDefinition$Builder/length +FD: net/minecraft/client/animation/AnimationDefinition$Builder/f_232270_ net/minecraft/client/animation/AnimationDefinition$Builder/animationByBone +FD: net/minecraft/client/animation/AnimationDefinition$Builder/f_232271_ net/minecraft/client/animation/AnimationDefinition$Builder/looping +FD: net/minecraft/client/animation/Keyframe/f_232283_ net/minecraft/client/animation/Keyframe/timestamp +FD: net/minecraft/client/animation/Keyframe/f_232284_ net/minecraft/client/animation/Keyframe/target +FD: net/minecraft/client/animation/Keyframe/f_232285_ net/minecraft/client/animation/Keyframe/interpolation +FD: net/minecraft/client/animation/definitions/CamelAnimation/f_243786_ net/minecraft/client/animation/definitions/CamelAnimation/CAMEL_DASH +FD: net/minecraft/client/animation/definitions/CamelAnimation/f_243801_ net/minecraft/client/animation/definitions/CamelAnimation/CAMEL_SIT +FD: net/minecraft/client/animation/definitions/CamelAnimation/f_243891_ net/minecraft/client/animation/definitions/CamelAnimation/CAMEL_IDLE +FD: net/minecraft/client/animation/definitions/CamelAnimation/f_244081_ net/minecraft/client/animation/definitions/CamelAnimation/CAMEL_WALK +FD: net/minecraft/client/animation/definitions/CamelAnimation/f_244495_ net/minecraft/client/animation/definitions/CamelAnimation/CAMEL_STANDUP +FD: net/minecraft/client/animation/definitions/CamelAnimation/f_252502_ net/minecraft/client/animation/definitions/CamelAnimation/CAMEL_SIT_POSE +FD: net/minecraft/client/animation/definitions/FrogAnimation/f_232335_ net/minecraft/client/animation/definitions/FrogAnimation/FROG_CROAK +FD: net/minecraft/client/animation/definitions/FrogAnimation/f_232336_ net/minecraft/client/animation/definitions/FrogAnimation/FROG_WALK +FD: net/minecraft/client/animation/definitions/FrogAnimation/f_232337_ net/minecraft/client/animation/definitions/FrogAnimation/FROG_JUMP +FD: net/minecraft/client/animation/definitions/FrogAnimation/f_232338_ net/minecraft/client/animation/definitions/FrogAnimation/FROG_TONGUE +FD: net/minecraft/client/animation/definitions/FrogAnimation/f_232339_ net/minecraft/client/animation/definitions/FrogAnimation/FROG_SWIM +FD: net/minecraft/client/animation/definitions/FrogAnimation/f_232340_ net/minecraft/client/animation/definitions/FrogAnimation/FROG_IDLE_WATER +FD: net/minecraft/client/animation/definitions/SnifferAnimation/f_271108_ net/minecraft/client/animation/definitions/SnifferAnimation/SNIFFER_LONGSNIFF +FD: net/minecraft/client/animation/definitions/SnifferAnimation/f_271160_ net/minecraft/client/animation/definitions/SnifferAnimation/SNIFFER_BABY_FALL +FD: net/minecraft/client/animation/definitions/SnifferAnimation/f_271223_ net/minecraft/client/animation/definitions/SnifferAnimation/SNIFFER_HAPPY +FD: net/minecraft/client/animation/definitions/SnifferAnimation/f_271269_ net/minecraft/client/animation/definitions/SnifferAnimation/SNIFFER_SNIFF_SEARCH +FD: net/minecraft/client/animation/definitions/SnifferAnimation/f_271364_ net/minecraft/client/animation/definitions/SnifferAnimation/SNIFFER_SNIFFSNIFF +FD: net/minecraft/client/animation/definitions/SnifferAnimation/f_271455_ net/minecraft/client/animation/definitions/SnifferAnimation/SNIFFER_STAND_UP +FD: net/minecraft/client/animation/definitions/SnifferAnimation/f_271495_ net/minecraft/client/animation/definitions/SnifferAnimation/SNIFFER_DIG +FD: net/minecraft/client/animation/definitions/SnifferAnimation/f_271534_ net/minecraft/client/animation/definitions/SnifferAnimation/SNIFFER_WALK +FD: net/minecraft/client/animation/definitions/SnifferAnimation/f_278126_ net/minecraft/client/animation/definitions/SnifferAnimation/BABY_TRANSFORM +FD: net/minecraft/client/animation/definitions/WardenAnimation/f_232343_ net/minecraft/client/animation/definitions/WardenAnimation/WARDEN_EMERGE +FD: net/minecraft/client/animation/definitions/WardenAnimation/f_232344_ net/minecraft/client/animation/definitions/WardenAnimation/WARDEN_DIG +FD: net/minecraft/client/animation/definitions/WardenAnimation/f_232345_ net/minecraft/client/animation/definitions/WardenAnimation/WARDEN_ROAR +FD: net/minecraft/client/animation/definitions/WardenAnimation/f_232346_ net/minecraft/client/animation/definitions/WardenAnimation/WARDEN_SNIFF +FD: net/minecraft/client/animation/definitions/WardenAnimation/f_232347_ net/minecraft/client/animation/definitions/WardenAnimation/WARDEN_ATTACK +FD: net/minecraft/client/animation/definitions/WardenAnimation/f_232348_ net/minecraft/client/animation/definitions/WardenAnimation/WARDEN_SONIC_BOOM +FD: net/minecraft/client/color/block/BlockColors/f_168640_ net/minecraft/client/color/block/BlockColors/DEFAULT +FD: net/minecraft/client/color/block/BlockColors/f_92571_ net/minecraft/client/color/block/BlockColors/blockColors +FD: net/minecraft/client/color/block/BlockColors/f_92572_ net/minecraft/client/color/block/BlockColors/coloringStates +FD: net/minecraft/client/color/block/BlockTintCache/f_168641_ net/minecraft/client/color/block/BlockTintCache/MAX_CACHE_ENTRIES +FD: net/minecraft/client/color/block/BlockTintCache/f_193809_ net/minecraft/client/color/block/BlockTintCache/source +FD: net/minecraft/client/color/block/BlockTintCache/f_92650_ net/minecraft/client/color/block/BlockTintCache/latestChunkOnThread +FD: net/minecraft/client/color/block/BlockTintCache/f_92651_ net/minecraft/client/color/block/BlockTintCache/cache +FD: net/minecraft/client/color/block/BlockTintCache/f_92652_ net/minecraft/client/color/block/BlockTintCache/lock +FD: net/minecraft/client/color/block/BlockTintCache$CacheData/f_193817_ net/minecraft/client/color/block/BlockTintCache$CacheData/cache +FD: net/minecraft/client/color/block/BlockTintCache$CacheData/f_193818_ net/minecraft/client/color/block/BlockTintCache$CacheData/lock +FD: net/minecraft/client/color/block/BlockTintCache$CacheData/f_193819_ net/minecraft/client/color/block/BlockTintCache$CacheData/BLOCKS_PER_LAYER +FD: net/minecraft/client/color/block/BlockTintCache$CacheData/f_262289_ net/minecraft/client/color/block/BlockTintCache$CacheData/invalidated +FD: net/minecraft/client/color/block/BlockTintCache$LatestCacheInfo/f_92665_ net/minecraft/client/color/block/BlockTintCache$LatestCacheInfo/x +FD: net/minecraft/client/color/block/BlockTintCache$LatestCacheInfo/f_92666_ net/minecraft/client/color/block/BlockTintCache$LatestCacheInfo/z +FD: net/minecraft/client/color/block/BlockTintCache$LatestCacheInfo/f_92667_ net/minecraft/client/color/block/BlockTintCache$LatestCacheInfo/cache +FD: net/minecraft/client/color/item/ItemColors/f_168642_ net/minecraft/client/color/item/ItemColors/DEFAULT +FD: net/minecraft/client/color/item/ItemColors/f_92674_ net/minecraft/client/color/item/ItemColors/itemColors +FD: net/minecraft/client/gui/ComponentPath$Leaf/f_263802_ net/minecraft/client/gui/ComponentPath$Leaf/component +FD: net/minecraft/client/gui/ComponentPath$Path/f_263715_ net/minecraft/client/gui/ComponentPath$Path/component +FD: net/minecraft/client/gui/ComponentPath$Path/f_263808_ net/minecraft/client/gui/ComponentPath$Path/childPath +FD: net/minecraft/client/gui/Font/f_168643_ net/minecraft/client/gui/Font/EFFECT_DEPTH +FD: net/minecraft/client/gui/Font/f_193827_ net/minecraft/client/gui/Font/ALPHA_CUTOFF +FD: net/minecraft/client/gui/Font/f_242994_ net/minecraft/client/gui/Font/filterFishyGlyphs +FD: net/minecraft/client/gui/Font/f_92710_ net/minecraft/client/gui/Font/lineHeight +FD: net/minecraft/client/gui/Font/f_92711_ net/minecraft/client/gui/Font/random +FD: net/minecraft/client/gui/Font/f_92712_ net/minecraft/client/gui/Font/SHADOW_OFFSET +FD: net/minecraft/client/gui/Font/f_92713_ net/minecraft/client/gui/Font/fonts +FD: net/minecraft/client/gui/Font/f_92714_ net/minecraft/client/gui/Font/splitter +FD: net/minecraft/client/gui/Font$DisplayMode/$VALUES net/minecraft/client/gui/Font$DisplayMode/$VALUES +FD: net/minecraft/client/gui/Font$DisplayMode/NORMAL net/minecraft/client/gui/Font$DisplayMode/NORMAL +FD: net/minecraft/client/gui/Font$DisplayMode/POLYGON_OFFSET net/minecraft/client/gui/Font$DisplayMode/POLYGON_OFFSET +FD: net/minecraft/client/gui/Font$DisplayMode/SEE_THROUGH net/minecraft/client/gui/Font$DisplayMode/SEE_THROUGH +FD: net/minecraft/client/gui/Font$StringRenderOutput/f_181362_ net/minecraft/client/gui/Font$StringRenderOutput/mode +FD: net/minecraft/client/gui/Font$StringRenderOutput/f_92937_ net/minecraft/client/gui/Font$StringRenderOutput/bufferSource +FD: net/minecraft/client/gui/Font$StringRenderOutput/f_92938_ net/minecraft/client/gui/Font$StringRenderOutput/this$0 +FD: net/minecraft/client/gui/Font$StringRenderOutput/f_92939_ net/minecraft/client/gui/Font$StringRenderOutput/dropShadow +FD: net/minecraft/client/gui/Font$StringRenderOutput/f_92940_ net/minecraft/client/gui/Font$StringRenderOutput/dimFactor +FD: net/minecraft/client/gui/Font$StringRenderOutput/f_92941_ net/minecraft/client/gui/Font$StringRenderOutput/r +FD: net/minecraft/client/gui/Font$StringRenderOutput/f_92942_ net/minecraft/client/gui/Font$StringRenderOutput/g +FD: net/minecraft/client/gui/Font$StringRenderOutput/f_92943_ net/minecraft/client/gui/Font$StringRenderOutput/b +FD: net/minecraft/client/gui/Font$StringRenderOutput/f_92944_ net/minecraft/client/gui/Font$StringRenderOutput/a +FD: net/minecraft/client/gui/Font$StringRenderOutput/f_92945_ net/minecraft/client/gui/Font$StringRenderOutput/pose +FD: net/minecraft/client/gui/Font$StringRenderOutput/f_92947_ net/minecraft/client/gui/Font$StringRenderOutput/packedLightCoords +FD: net/minecraft/client/gui/Font$StringRenderOutput/f_92948_ net/minecraft/client/gui/Font$StringRenderOutput/x +FD: net/minecraft/client/gui/Font$StringRenderOutput/f_92949_ net/minecraft/client/gui/Font$StringRenderOutput/y +FD: net/minecraft/client/gui/Font$StringRenderOutput/f_92950_ net/minecraft/client/gui/Font$StringRenderOutput/effects +FD: net/minecraft/client/gui/Gui/f_168664_ net/minecraft/client/gui/Gui/scopeScale +FD: net/minecraft/client/gui/Gui/f_168665_ net/minecraft/client/gui/Gui/SPYGLASS_SCOPE_LOCATION +FD: net/minecraft/client/gui/Gui/f_168666_ net/minecraft/client/gui/Gui/POWDER_SNOW_OUTLINE_LOCATION +FD: net/minecraft/client/gui/Gui/f_168667_ net/minecraft/client/gui/Gui/COLOR_WHITE +FD: net/minecraft/client/gui/Gui/f_168668_ net/minecraft/client/gui/Gui/MIN_CROSSHAIR_ATTACK_SPEED +FD: net/minecraft/client/gui/Gui/f_168669_ net/minecraft/client/gui/Gui/NUM_HEARTS_PER_ROW +FD: net/minecraft/client/gui/Gui/f_168670_ net/minecraft/client/gui/Gui/LINE_HEIGHT +FD: net/minecraft/client/gui/Gui/f_168671_ net/minecraft/client/gui/Gui/SPACER +FD: net/minecraft/client/gui/Gui/f_168672_ net/minecraft/client/gui/Gui/PORTAL_OVERLAY_ALPHA_MIN +FD: net/minecraft/client/gui/Gui/f_168673_ net/minecraft/client/gui/Gui/HEART_SIZE +FD: net/minecraft/client/gui/Gui/f_168674_ net/minecraft/client/gui/Gui/HEART_SEPARATION +FD: net/minecraft/client/gui/Gui/f_193828_ net/minecraft/client/gui/Gui/autosaveIndicatorValue +FD: net/minecraft/client/gui/Gui/f_193829_ net/minecraft/client/gui/Gui/lastAutosaveIndicatorValue +FD: net/minecraft/client/gui/Gui/f_193830_ net/minecraft/client/gui/Gui/SAVING_TEXT +FD: net/minecraft/client/gui/Gui/f_193831_ net/minecraft/client/gui/Gui/AUTOSAVE_FADE_SPEED_FACTOR +FD: net/minecraft/client/gui/Gui/f_238167_ net/minecraft/client/gui/Gui/chatDisabledByPlayerShown +FD: net/minecraft/client/gui/Gui/f_279580_ net/minecraft/client/gui/Gui/GUI_ICONS_LOCATION +FD: net/minecraft/client/gui/Gui/f_92970_ net/minecraft/client/gui/Gui/titleFadeInTime +FD: net/minecraft/client/gui/Gui/f_92971_ net/minecraft/client/gui/Gui/titleStayTime +FD: net/minecraft/client/gui/Gui/f_92972_ net/minecraft/client/gui/Gui/titleFadeOutTime +FD: net/minecraft/client/gui/Gui/f_92973_ net/minecraft/client/gui/Gui/lastHealth +FD: net/minecraft/client/gui/Gui/f_92974_ net/minecraft/client/gui/Gui/displayHealth +FD: net/minecraft/client/gui/Gui/f_92975_ net/minecraft/client/gui/Gui/lastHealthTime +FD: net/minecraft/client/gui/Gui/f_92976_ net/minecraft/client/gui/Gui/healthBlinkTime +FD: net/minecraft/client/gui/Gui/f_92977_ net/minecraft/client/gui/Gui/screenWidth +FD: net/minecraft/client/gui/Gui/f_92978_ net/minecraft/client/gui/Gui/screenHeight +FD: net/minecraft/client/gui/Gui/f_92980_ net/minecraft/client/gui/Gui/vignetteBrightness +FD: net/minecraft/client/gui/Gui/f_92981_ net/minecraft/client/gui/Gui/VIGNETTE_LOCATION +FD: net/minecraft/client/gui/Gui/f_92982_ net/minecraft/client/gui/Gui/WIDGETS_LOCATION +FD: net/minecraft/client/gui/Gui/f_92983_ net/minecraft/client/gui/Gui/PUMPKIN_BLUR_LOCATION +FD: net/minecraft/client/gui/Gui/f_92984_ net/minecraft/client/gui/Gui/DEMO_EXPIRED_TEXT +FD: net/minecraft/client/gui/Gui/f_92985_ net/minecraft/client/gui/Gui/random +FD: net/minecraft/client/gui/Gui/f_92986_ net/minecraft/client/gui/Gui/minecraft +FD: net/minecraft/client/gui/Gui/f_92987_ net/minecraft/client/gui/Gui/itemRenderer +FD: net/minecraft/client/gui/Gui/f_92988_ net/minecraft/client/gui/Gui/chat +FD: net/minecraft/client/gui/Gui/f_92989_ net/minecraft/client/gui/Gui/tickCount +FD: net/minecraft/client/gui/Gui/f_92990_ net/minecraft/client/gui/Gui/overlayMessageString +FD: net/minecraft/client/gui/Gui/f_92991_ net/minecraft/client/gui/Gui/overlayMessageTime +FD: net/minecraft/client/gui/Gui/f_92992_ net/minecraft/client/gui/Gui/animateOverlayMessageColor +FD: net/minecraft/client/gui/Gui/f_92993_ net/minecraft/client/gui/Gui/toolHighlightTimer +FD: net/minecraft/client/gui/Gui/f_92994_ net/minecraft/client/gui/Gui/lastToolHighlight +FD: net/minecraft/client/gui/Gui/f_92995_ net/minecraft/client/gui/Gui/debugScreen +FD: net/minecraft/client/gui/Gui/f_92996_ net/minecraft/client/gui/Gui/subtitleOverlay +FD: net/minecraft/client/gui/Gui/f_92997_ net/minecraft/client/gui/Gui/spectatorGui +FD: net/minecraft/client/gui/Gui/f_92998_ net/minecraft/client/gui/Gui/tabList +FD: net/minecraft/client/gui/Gui/f_92999_ net/minecraft/client/gui/Gui/bossOverlay +FD: net/minecraft/client/gui/Gui/f_93000_ net/minecraft/client/gui/Gui/titleTime +FD: net/minecraft/client/gui/Gui/f_93001_ net/minecraft/client/gui/Gui/title +FD: net/minecraft/client/gui/Gui/f_93002_ net/minecraft/client/gui/Gui/subtitle +FD: net/minecraft/client/gui/Gui$HeartType/$VALUES net/minecraft/client/gui/Gui$HeartType/$VALUES +FD: net/minecraft/client/gui/Gui$HeartType/ABSORBING net/minecraft/client/gui/Gui$HeartType/ABSORBING +FD: net/minecraft/client/gui/Gui$HeartType/CONTAINER net/minecraft/client/gui/Gui$HeartType/CONTAINER +FD: net/minecraft/client/gui/Gui$HeartType/FROZEN net/minecraft/client/gui/Gui$HeartType/FROZEN +FD: net/minecraft/client/gui/Gui$HeartType/NORMAL net/minecraft/client/gui/Gui$HeartType/NORMAL +FD: net/minecraft/client/gui/Gui$HeartType/POISIONED net/minecraft/client/gui/Gui$HeartType/POISIONED +FD: net/minecraft/client/gui/Gui$HeartType/WITHERED net/minecraft/client/gui/Gui$HeartType/WITHERED +FD: net/minecraft/client/gui/Gui$HeartType/f_168722_ net/minecraft/client/gui/Gui$HeartType/index +FD: net/minecraft/client/gui/Gui$HeartType/f_168723_ net/minecraft/client/gui/Gui$HeartType/canBlink +FD: net/minecraft/client/gui/GuiGraphics/f_279544_ net/minecraft/client/gui/GuiGraphics/minecraft +FD: net/minecraft/client/gui/GuiGraphics/f_279564_ net/minecraft/client/gui/GuiGraphics/EXTRA_SPACE_AFTER_FIRST_TOOLTIP_LINE +FD: net/minecraft/client/gui/GuiGraphics/f_279587_ net/minecraft/client/gui/GuiGraphics/scissorStack +FD: net/minecraft/client/gui/GuiGraphics/f_279612_ net/minecraft/client/gui/GuiGraphics/pose +FD: net/minecraft/client/gui/GuiGraphics/f_279627_ net/minecraft/client/gui/GuiGraphics/bufferSource +FD: net/minecraft/client/gui/GuiGraphics/f_285610_ net/minecraft/client/gui/GuiGraphics/managed +FD: net/minecraft/client/gui/GuiGraphics/f_289038_ net/minecraft/client/gui/GuiGraphics/MIN_GUI_Z +FD: net/minecraft/client/gui/GuiGraphics/f_289044_ net/minecraft/client/gui/GuiGraphics/MAX_GUI_Z +FD: net/minecraft/client/gui/GuiGraphics$ScissorStack/f_279656_ net/minecraft/client/gui/GuiGraphics$ScissorStack/stack +FD: net/minecraft/client/gui/MapRenderer/f_168763_ net/minecraft/client/gui/MapRenderer/WIDTH +FD: net/minecraft/client/gui/MapRenderer/f_168764_ net/minecraft/client/gui/MapRenderer/HEIGHT +FD: net/minecraft/client/gui/MapRenderer/f_93253_ net/minecraft/client/gui/MapRenderer/MAP_ICONS_LOCATION +FD: net/minecraft/client/gui/MapRenderer/f_93254_ net/minecraft/client/gui/MapRenderer/MAP_ICONS +FD: net/minecraft/client/gui/MapRenderer/f_93255_ net/minecraft/client/gui/MapRenderer/textureManager +FD: net/minecraft/client/gui/MapRenderer/f_93256_ net/minecraft/client/gui/MapRenderer/maps +FD: net/minecraft/client/gui/MapRenderer$MapInstance/f_182565_ net/minecraft/client/gui/MapRenderer$MapInstance/requiresUpload +FD: net/minecraft/client/gui/MapRenderer$MapInstance/f_93279_ net/minecraft/client/gui/MapRenderer$MapInstance/this$0 +FD: net/minecraft/client/gui/MapRenderer$MapInstance/f_93280_ net/minecraft/client/gui/MapRenderer$MapInstance/data +FD: net/minecraft/client/gui/MapRenderer$MapInstance/f_93281_ net/minecraft/client/gui/MapRenderer$MapInstance/texture +FD: net/minecraft/client/gui/MapRenderer$MapInstance/f_93282_ net/minecraft/client/gui/MapRenderer$MapInstance/renderType +FD: net/minecraft/client/gui/components/AbstractButton/f_273820_ net/minecraft/client/gui/components/AbstractButton/TEXTURE_WIDTH +FD: net/minecraft/client/gui/components/AbstractButton/f_273867_ net/minecraft/client/gui/components/AbstractButton/TEXT_MARGIN +FD: net/minecraft/client/gui/components/AbstractButton/f_273885_ net/minecraft/client/gui/components/AbstractButton/TEXTURE_HEIGHT +FD: net/minecraft/client/gui/components/AbstractButton/f_273923_ net/minecraft/client/gui/components/AbstractButton/TEXTURE_Y_OFFSET +FD: net/minecraft/client/gui/components/AbstractButton/f_275753_ net/minecraft/client/gui/components/AbstractButton/TEXTURE_BORDER_X +FD: net/minecraft/client/gui/components/AbstractButton/f_275757_ net/minecraft/client/gui/components/AbstractButton/TEXTURE_BORDER_Y +FD: net/minecraft/client/gui/components/AbstractOptionSliderButton/f_93377_ net/minecraft/client/gui/components/AbstractOptionSliderButton/options +FD: net/minecraft/client/gui/components/AbstractScrollWidget/f_238564_ net/minecraft/client/gui/components/AbstractScrollWidget/scrollAmount +FD: net/minecraft/client/gui/components/AbstractScrollWidget/f_238748_ net/minecraft/client/gui/components/AbstractScrollWidget/BACKGROUND_COLOR +FD: net/minecraft/client/gui/components/AbstractScrollWidget/f_238777_ net/minecraft/client/gui/components/AbstractScrollWidget/INNER_PADDING +FD: net/minecraft/client/gui/components/AbstractScrollWidget/f_238779_ net/minecraft/client/gui/components/AbstractScrollWidget/scrolling +FD: net/minecraft/client/gui/components/AbstractScrollWidget/f_238809_ net/minecraft/client/gui/components/AbstractScrollWidget/BORDER_COLOR_FOCUSED +FD: net/minecraft/client/gui/components/AbstractScrollWidget/f_238810_ net/minecraft/client/gui/components/AbstractScrollWidget/BORDER_COLOR +FD: net/minecraft/client/gui/components/AbstractSelectionList/f_168789_ net/minecraft/client/gui/components/AbstractSelectionList/hovered +FD: net/minecraft/client/gui/components/AbstractSelectionList/f_93385_ net/minecraft/client/gui/components/AbstractSelectionList/children +FD: net/minecraft/client/gui/components/AbstractSelectionList/f_93386_ net/minecraft/client/gui/components/AbstractSelectionList/minecraft +FD: net/minecraft/client/gui/components/AbstractSelectionList/f_93387_ net/minecraft/client/gui/components/AbstractSelectionList/itemHeight +FD: net/minecraft/client/gui/components/AbstractSelectionList/f_93388_ net/minecraft/client/gui/components/AbstractSelectionList/width +FD: net/minecraft/client/gui/components/AbstractSelectionList/f_93389_ net/minecraft/client/gui/components/AbstractSelectionList/height +FD: net/minecraft/client/gui/components/AbstractSelectionList/f_93390_ net/minecraft/client/gui/components/AbstractSelectionList/y0 +FD: net/minecraft/client/gui/components/AbstractSelectionList/f_93391_ net/minecraft/client/gui/components/AbstractSelectionList/y1 +FD: net/minecraft/client/gui/components/AbstractSelectionList/f_93392_ net/minecraft/client/gui/components/AbstractSelectionList/x1 +FD: net/minecraft/client/gui/components/AbstractSelectionList/f_93393_ net/minecraft/client/gui/components/AbstractSelectionList/x0 +FD: net/minecraft/client/gui/components/AbstractSelectionList/f_93394_ net/minecraft/client/gui/components/AbstractSelectionList/centerListVertically +FD: net/minecraft/client/gui/components/AbstractSelectionList/f_93395_ net/minecraft/client/gui/components/AbstractSelectionList/headerHeight +FD: net/minecraft/client/gui/components/AbstractSelectionList/f_93396_ net/minecraft/client/gui/components/AbstractSelectionList/scrollAmount +FD: net/minecraft/client/gui/components/AbstractSelectionList/f_93397_ net/minecraft/client/gui/components/AbstractSelectionList/renderSelection +FD: net/minecraft/client/gui/components/AbstractSelectionList/f_93398_ net/minecraft/client/gui/components/AbstractSelectionList/renderHeader +FD: net/minecraft/client/gui/components/AbstractSelectionList/f_93399_ net/minecraft/client/gui/components/AbstractSelectionList/scrolling +FD: net/minecraft/client/gui/components/AbstractSelectionList/f_93400_ net/minecraft/client/gui/components/AbstractSelectionList/selected +FD: net/minecraft/client/gui/components/AbstractSelectionList/f_93401_ net/minecraft/client/gui/components/AbstractSelectionList/renderBackground +FD: net/minecraft/client/gui/components/AbstractSelectionList/f_93402_ net/minecraft/client/gui/components/AbstractSelectionList/renderTopAndBottom +FD: net/minecraft/client/gui/components/AbstractSelectionList$1/f_263843_ net/minecraft/client/gui/components/AbstractSelectionList$1/$SwitchMap$net$minecraft$client$gui$navigation$ScreenDirection +FD: net/minecraft/client/gui/components/AbstractSelectionList$Entry/f_93521_ net/minecraft/client/gui/components/AbstractSelectionList$Entry/list +FD: net/minecraft/client/gui/components/AbstractSelectionList$TrackedList/f_93549_ net/minecraft/client/gui/components/AbstractSelectionList$TrackedList/this$0 +FD: net/minecraft/client/gui/components/AbstractSelectionList$TrackedList/f_93550_ net/minecraft/client/gui/components/AbstractSelectionList$TrackedList/delegate +FD: net/minecraft/client/gui/components/AbstractSliderButton/f_263653_ net/minecraft/client/gui/components/AbstractSliderButton/HANDLE_HALF_WIDTH +FD: net/minecraft/client/gui/components/AbstractSliderButton/f_263683_ net/minecraft/client/gui/components/AbstractSliderButton/SLIDER_LOCATION +FD: net/minecraft/client/gui/components/AbstractSliderButton/f_263685_ net/minecraft/client/gui/components/AbstractSliderButton/HANDLE_WIDTH +FD: net/minecraft/client/gui/components/AbstractSliderButton/f_263690_ net/minecraft/client/gui/components/AbstractSliderButton/HANDLE_FOCUSED +FD: net/minecraft/client/gui/components/AbstractSliderButton/f_263696_ net/minecraft/client/gui/components/AbstractSliderButton/HEIGHT +FD: net/minecraft/client/gui/components/AbstractSliderButton/f_263731_ net/minecraft/client/gui/components/AbstractSliderButton/HANDLE +FD: net/minecraft/client/gui/components/AbstractSliderButton/f_263751_ net/minecraft/client/gui/components/AbstractSliderButton/BACKGROUND_FOCUSED +FD: net/minecraft/client/gui/components/AbstractSliderButton/f_263772_ net/minecraft/client/gui/components/AbstractSliderButton/canChangeValue +FD: net/minecraft/client/gui/components/AbstractSliderButton/f_263817_ net/minecraft/client/gui/components/AbstractSliderButton/BACKGROUND +FD: net/minecraft/client/gui/components/AbstractSliderButton/f_273852_ net/minecraft/client/gui/components/AbstractSliderButton/TEXTURE_HEIGHT +FD: net/minecraft/client/gui/components/AbstractSliderButton/f_273913_ net/minecraft/client/gui/components/AbstractSliderButton/TEXTURE_WIDTH +FD: net/minecraft/client/gui/components/AbstractSliderButton/f_273931_ net/minecraft/client/gui/components/AbstractSliderButton/TEXT_MARGIN +FD: net/minecraft/client/gui/components/AbstractSliderButton/f_275750_ net/minecraft/client/gui/components/AbstractSliderButton/TEXTURE_BORDER_Y +FD: net/minecraft/client/gui/components/AbstractSliderButton/f_275758_ net/minecraft/client/gui/components/AbstractSliderButton/TEXTURE_BORDER_X +FD: net/minecraft/client/gui/components/AbstractSliderButton/f_93577_ net/minecraft/client/gui/components/AbstractSliderButton/value +FD: net/minecraft/client/gui/components/AbstractStringWidget/f_268558_ net/minecraft/client/gui/components/AbstractStringWidget/color +FD: net/minecraft/client/gui/components/AbstractStringWidget/f_268594_ net/minecraft/client/gui/components/AbstractStringWidget/font +FD: net/minecraft/client/gui/components/AbstractWidget/f_256816_ net/minecraft/client/gui/components/AbstractWidget/tooltip +FD: net/minecraft/client/gui/components/AbstractWidget/f_256916_ net/minecraft/client/gui/components/AbstractWidget/wasHoveredOrFocused +FD: net/minecraft/client/gui/components/AbstractWidget/f_256936_ net/minecraft/client/gui/components/AbstractWidget/tooltipMsDelay +FD: net/minecraft/client/gui/components/AbstractWidget/f_256960_ net/minecraft/client/gui/components/AbstractWidget/hoverOrFocusedStartTime +FD: net/minecraft/client/gui/components/AbstractWidget/f_267372_ net/minecraft/client/gui/components/AbstractWidget/ACCESSIBILITY_TEXTURE +FD: net/minecraft/client/gui/components/AbstractWidget/f_267443_ net/minecraft/client/gui/components/AbstractWidget/tabOrderGroup +FD: net/minecraft/client/gui/components/AbstractWidget/f_273840_ net/minecraft/client/gui/components/AbstractWidget/MIN_SCROLL_PERIOD +FD: net/minecraft/client/gui/components/AbstractWidget/f_273912_ net/minecraft/client/gui/components/AbstractWidget/PERIOD_PER_SCROLLED_PIXEL +FD: net/minecraft/client/gui/components/AbstractWidget/f_93614_ net/minecraft/client/gui/components/AbstractWidget/message +FD: net/minecraft/client/gui/components/AbstractWidget/f_93616_ net/minecraft/client/gui/components/AbstractWidget/focused +FD: net/minecraft/client/gui/components/AbstractWidget/f_93617_ net/minecraft/client/gui/components/AbstractWidget/WIDGETS_LOCATION +FD: net/minecraft/client/gui/components/AbstractWidget/f_93618_ net/minecraft/client/gui/components/AbstractWidget/width +FD: net/minecraft/client/gui/components/AbstractWidget/f_93619_ net/minecraft/client/gui/components/AbstractWidget/height +FD: net/minecraft/client/gui/components/AbstractWidget/f_93620_ net/minecraft/client/gui/components/AbstractWidget/x +FD: net/minecraft/client/gui/components/AbstractWidget/f_93621_ net/minecraft/client/gui/components/AbstractWidget/y +FD: net/minecraft/client/gui/components/AbstractWidget/f_93622_ net/minecraft/client/gui/components/AbstractWidget/isHovered +FD: net/minecraft/client/gui/components/AbstractWidget/f_93623_ net/minecraft/client/gui/components/AbstractWidget/active +FD: net/minecraft/client/gui/components/AbstractWidget/f_93624_ net/minecraft/client/gui/components/AbstractWidget/visible +FD: net/minecraft/client/gui/components/AbstractWidget/f_93625_ net/minecraft/client/gui/components/AbstractWidget/alpha +FD: net/minecraft/client/gui/components/AccessibilityOnboardingTextWidget/f_263672_ net/minecraft/client/gui/components/AccessibilityOnboardingTextWidget/PADDING +FD: net/minecraft/client/gui/components/AccessibilityOnboardingTextWidget/f_263703_ net/minecraft/client/gui/components/AccessibilityOnboardingTextWidget/BORDER_COLOR +FD: net/minecraft/client/gui/components/AccessibilityOnboardingTextWidget/f_263807_ net/minecraft/client/gui/components/AccessibilityOnboardingTextWidget/BORDER_COLOR_FOCUSED +FD: net/minecraft/client/gui/components/AccessibilityOnboardingTextWidget/f_263813_ net/minecraft/client/gui/components/AccessibilityOnboardingTextWidget/BORDER +FD: net/minecraft/client/gui/components/AccessibilityOnboardingTextWidget/f_263820_ net/minecraft/client/gui/components/AccessibilityOnboardingTextWidget/BACKGROUND_COLOR +FD: net/minecraft/client/gui/components/BossHealthOverlay/f_168805_ net/minecraft/client/gui/components/BossHealthOverlay/BAR_WIDTH +FD: net/minecraft/client/gui/components/BossHealthOverlay/f_168806_ net/minecraft/client/gui/components/BossHealthOverlay/BAR_HEIGHT +FD: net/minecraft/client/gui/components/BossHealthOverlay/f_168807_ net/minecraft/client/gui/components/BossHealthOverlay/OVERLAY_OFFSET +FD: net/minecraft/client/gui/components/BossHealthOverlay/f_93697_ net/minecraft/client/gui/components/BossHealthOverlay/GUI_BARS_LOCATION +FD: net/minecraft/client/gui/components/BossHealthOverlay/f_93698_ net/minecraft/client/gui/components/BossHealthOverlay/minecraft +FD: net/minecraft/client/gui/components/BossHealthOverlay/f_93699_ net/minecraft/client/gui/components/BossHealthOverlay/events +FD: net/minecraft/client/gui/components/BossHealthOverlay$1/f_168808_ net/minecraft/client/gui/components/BossHealthOverlay$1/this$0 +FD: net/minecraft/client/gui/components/Button/f_238663_ net/minecraft/client/gui/components/Button/SMALL_WIDTH +FD: net/minecraft/client/gui/components/Button/f_238716_ net/minecraft/client/gui/components/Button/DEFAULT_WIDTH +FD: net/minecraft/client/gui/components/Button/f_238808_ net/minecraft/client/gui/components/Button/DEFAULT_HEIGHT +FD: net/minecraft/client/gui/components/Button/f_252416_ net/minecraft/client/gui/components/Button/createNarration +FD: net/minecraft/client/gui/components/Button/f_252438_ net/minecraft/client/gui/components/Button/DEFAULT_NARRATION +FD: net/minecraft/client/gui/components/Button/f_93717_ net/minecraft/client/gui/components/Button/onPress +FD: net/minecraft/client/gui/components/Button$Builder/f_252401_ net/minecraft/client/gui/components/Button$Builder/message +FD: net/minecraft/client/gui/components/Button$Builder/f_252431_ net/minecraft/client/gui/components/Button$Builder/createNarration +FD: net/minecraft/client/gui/components/Button$Builder/f_252447_ net/minecraft/client/gui/components/Button$Builder/height +FD: net/minecraft/client/gui/components/Button$Builder/f_252462_ net/minecraft/client/gui/components/Button$Builder/y +FD: net/minecraft/client/gui/components/Button$Builder/f_252468_ net/minecraft/client/gui/components/Button$Builder/onPress +FD: net/minecraft/client/gui/components/Button$Builder/f_252510_ net/minecraft/client/gui/components/Button$Builder/width +FD: net/minecraft/client/gui/components/Button$Builder/f_252538_ net/minecraft/client/gui/components/Button$Builder/x +FD: net/minecraft/client/gui/components/Button$Builder/f_256855_ net/minecraft/client/gui/components/Button$Builder/tooltip +FD: net/minecraft/client/gui/components/ChatComponent/f_168843_ net/minecraft/client/gui/components/ChatComponent/MAX_CHAT_HISTORY +FD: net/minecraft/client/gui/components/ChatComponent/f_240336_ net/minecraft/client/gui/components/ChatComponent/MESSAGE_NOT_FOUND +FD: net/minecraft/client/gui/components/ChatComponent/f_240337_ net/minecraft/client/gui/components/ChatComponent/MESSAGE_TAG_MARGIN_LEFT +FD: net/minecraft/client/gui/components/ChatComponent/f_240385_ net/minecraft/client/gui/components/ChatComponent/MESSAGE_INDENT +FD: net/minecraft/client/gui/components/ChatComponent/f_243892_ net/minecraft/client/gui/components/ChatComponent/TIME_BEFORE_MESSAGE_DELETION +FD: net/minecraft/client/gui/components/ChatComponent/f_244052_ net/minecraft/client/gui/components/ChatComponent/messageDeletionQueue +FD: net/minecraft/client/gui/components/ChatComponent/f_244190_ net/minecraft/client/gui/components/ChatComponent/DELETED_CHAT_MESSAGE +FD: net/minecraft/client/gui/components/ChatComponent/f_244226_ net/minecraft/client/gui/components/ChatComponent/BOTTOM_MARGIN +FD: net/minecraft/client/gui/components/ChatComponent/f_93757_ net/minecraft/client/gui/components/ChatComponent/LOGGER +FD: net/minecraft/client/gui/components/ChatComponent/f_93758_ net/minecraft/client/gui/components/ChatComponent/minecraft +FD: net/minecraft/client/gui/components/ChatComponent/f_93759_ net/minecraft/client/gui/components/ChatComponent/recentChat +FD: net/minecraft/client/gui/components/ChatComponent/f_93760_ net/minecraft/client/gui/components/ChatComponent/allMessages +FD: net/minecraft/client/gui/components/ChatComponent/f_93761_ net/minecraft/client/gui/components/ChatComponent/trimmedMessages +FD: net/minecraft/client/gui/components/ChatComponent/f_93763_ net/minecraft/client/gui/components/ChatComponent/chatScrollbarPos +FD: net/minecraft/client/gui/components/ChatComponent/f_93764_ net/minecraft/client/gui/components/ChatComponent/newMessageSinceScroll +FD: net/minecraft/client/gui/components/ChatComponent$DelayedMessageDeletion/f_244186_ net/minecraft/client/gui/components/ChatComponent$DelayedMessageDeletion/signature +FD: net/minecraft/client/gui/components/ChatComponent$DelayedMessageDeletion/f_244411_ net/minecraft/client/gui/components/ChatComponent$DelayedMessageDeletion/deletableAfter +FD: net/minecraft/client/gui/components/Checkbox/f_168844_ net/minecraft/client/gui/components/Checkbox/TEXT_COLOR +FD: net/minecraft/client/gui/components/Checkbox/f_93821_ net/minecraft/client/gui/components/Checkbox/TEXTURE +FD: net/minecraft/client/gui/components/Checkbox/f_93822_ net/minecraft/client/gui/components/Checkbox/selected +FD: net/minecraft/client/gui/components/Checkbox/f_93823_ net/minecraft/client/gui/components/Checkbox/showLabel +FD: net/minecraft/client/gui/components/CommandSuggestions/f_93847_ net/minecraft/client/gui/components/CommandSuggestions/WHITESPACE_PATTERN +FD: net/minecraft/client/gui/components/CommandSuggestions/f_93848_ net/minecraft/client/gui/components/CommandSuggestions/UNPARSED_STYLE +FD: net/minecraft/client/gui/components/CommandSuggestions/f_93849_ net/minecraft/client/gui/components/CommandSuggestions/LITERAL_STYLE +FD: net/minecraft/client/gui/components/CommandSuggestions/f_93850_ net/minecraft/client/gui/components/CommandSuggestions/ARGUMENT_STYLES +FD: net/minecraft/client/gui/components/CommandSuggestions/f_93851_ net/minecraft/client/gui/components/CommandSuggestions/minecraft +FD: net/minecraft/client/gui/components/CommandSuggestions/f_93852_ net/minecraft/client/gui/components/CommandSuggestions/screen +FD: net/minecraft/client/gui/components/CommandSuggestions/f_93853_ net/minecraft/client/gui/components/CommandSuggestions/input +FD: net/minecraft/client/gui/components/CommandSuggestions/f_93854_ net/minecraft/client/gui/components/CommandSuggestions/font +FD: net/minecraft/client/gui/components/CommandSuggestions/f_93855_ net/minecraft/client/gui/components/CommandSuggestions/commandsOnly +FD: net/minecraft/client/gui/components/CommandSuggestions/f_93856_ net/minecraft/client/gui/components/CommandSuggestions/onlyShowIfCursorPastError +FD: net/minecraft/client/gui/components/CommandSuggestions/f_93857_ net/minecraft/client/gui/components/CommandSuggestions/lineStartOffset +FD: net/minecraft/client/gui/components/CommandSuggestions/f_93858_ net/minecraft/client/gui/components/CommandSuggestions/suggestionLineLimit +FD: net/minecraft/client/gui/components/CommandSuggestions/f_93859_ net/minecraft/client/gui/components/CommandSuggestions/anchorToBottom +FD: net/minecraft/client/gui/components/CommandSuggestions/f_93860_ net/minecraft/client/gui/components/CommandSuggestions/fillColor +FD: net/minecraft/client/gui/components/CommandSuggestions/f_93861_ net/minecraft/client/gui/components/CommandSuggestions/commandUsage +FD: net/minecraft/client/gui/components/CommandSuggestions/f_93862_ net/minecraft/client/gui/components/CommandSuggestions/commandUsagePosition +FD: net/minecraft/client/gui/components/CommandSuggestions/f_93863_ net/minecraft/client/gui/components/CommandSuggestions/commandUsageWidth +FD: net/minecraft/client/gui/components/CommandSuggestions/f_93864_ net/minecraft/client/gui/components/CommandSuggestions/currentParse +FD: net/minecraft/client/gui/components/CommandSuggestions/f_93865_ net/minecraft/client/gui/components/CommandSuggestions/pendingSuggestions +FD: net/minecraft/client/gui/components/CommandSuggestions/f_93866_ net/minecraft/client/gui/components/CommandSuggestions/suggestions +FD: net/minecraft/client/gui/components/CommandSuggestions/f_93867_ net/minecraft/client/gui/components/CommandSuggestions/allowSuggestions +FD: net/minecraft/client/gui/components/CommandSuggestions/f_93868_ net/minecraft/client/gui/components/CommandSuggestions/keepSuggestions +FD: net/minecraft/client/gui/components/CommandSuggestions$SuggestionsList/f_93946_ net/minecraft/client/gui/components/CommandSuggestions$SuggestionsList/this$0 +FD: net/minecraft/client/gui/components/CommandSuggestions$SuggestionsList/f_93947_ net/minecraft/client/gui/components/CommandSuggestions$SuggestionsList/rect +FD: net/minecraft/client/gui/components/CommandSuggestions$SuggestionsList/f_93948_ net/minecraft/client/gui/components/CommandSuggestions$SuggestionsList/originalContents +FD: net/minecraft/client/gui/components/CommandSuggestions$SuggestionsList/f_93949_ net/minecraft/client/gui/components/CommandSuggestions$SuggestionsList/suggestionList +FD: net/minecraft/client/gui/components/CommandSuggestions$SuggestionsList/f_93950_ net/minecraft/client/gui/components/CommandSuggestions$SuggestionsList/offset +FD: net/minecraft/client/gui/components/CommandSuggestions$SuggestionsList/f_93951_ net/minecraft/client/gui/components/CommandSuggestions$SuggestionsList/current +FD: net/minecraft/client/gui/components/CommandSuggestions$SuggestionsList/f_93952_ net/minecraft/client/gui/components/CommandSuggestions$SuggestionsList/lastMouse +FD: net/minecraft/client/gui/components/CommandSuggestions$SuggestionsList/f_93953_ net/minecraft/client/gui/components/CommandSuggestions$SuggestionsList/tabCycles +FD: net/minecraft/client/gui/components/CommandSuggestions$SuggestionsList/f_93954_ net/minecraft/client/gui/components/CommandSuggestions$SuggestionsList/lastNarratedEntry +FD: net/minecraft/client/gui/components/ComponentRenderUtils/f_93993_ net/minecraft/client/gui/components/ComponentRenderUtils/INDENT +FD: net/minecraft/client/gui/components/ContainerObjectSelectionList$1/f_263717_ net/minecraft/client/gui/components/ContainerObjectSelectionList$1/$SwitchMap$net$minecraft$client$gui$navigation$ScreenDirection +FD: net/minecraft/client/gui/components/ContainerObjectSelectionList$Entry/f_168853_ net/minecraft/client/gui/components/ContainerObjectSelectionList$Entry/lastNarratable +FD: net/minecraft/client/gui/components/ContainerObjectSelectionList$Entry/f_94020_ net/minecraft/client/gui/components/ContainerObjectSelectionList$Entry/focused +FD: net/minecraft/client/gui/components/ContainerObjectSelectionList$Entry/f_94021_ net/minecraft/client/gui/components/ContainerObjectSelectionList$Entry/dragging +FD: net/minecraft/client/gui/components/CycleButton/f_168856_ net/minecraft/client/gui/components/CycleButton/DEFAULT_ALT_LIST_SELECTOR +FD: net/minecraft/client/gui/components/CycleButton/f_168857_ net/minecraft/client/gui/components/CycleButton/BOOLEAN_OPTIONS +FD: net/minecraft/client/gui/components/CycleButton/f_168858_ net/minecraft/client/gui/components/CycleButton/name +FD: net/minecraft/client/gui/components/CycleButton/f_168859_ net/minecraft/client/gui/components/CycleButton/index +FD: net/minecraft/client/gui/components/CycleButton/f_168860_ net/minecraft/client/gui/components/CycleButton/value +FD: net/minecraft/client/gui/components/CycleButton/f_168861_ net/minecraft/client/gui/components/CycleButton/values +FD: net/minecraft/client/gui/components/CycleButton/f_168862_ net/minecraft/client/gui/components/CycleButton/valueStringifier +FD: net/minecraft/client/gui/components/CycleButton/f_168863_ net/minecraft/client/gui/components/CycleButton/narrationProvider +FD: net/minecraft/client/gui/components/CycleButton/f_168864_ net/minecraft/client/gui/components/CycleButton/onValueChange +FD: net/minecraft/client/gui/components/CycleButton/f_168865_ net/minecraft/client/gui/components/CycleButton/tooltipSupplier +FD: net/minecraft/client/gui/components/CycleButton/f_168866_ net/minecraft/client/gui/components/CycleButton/displayOnlyValue +FD: net/minecraft/client/gui/components/CycleButton$Builder/f_168920_ net/minecraft/client/gui/components/CycleButton$Builder/initialIndex +FD: net/minecraft/client/gui/components/CycleButton$Builder/f_168921_ net/minecraft/client/gui/components/CycleButton$Builder/initialValue +FD: net/minecraft/client/gui/components/CycleButton$Builder/f_168922_ net/minecraft/client/gui/components/CycleButton$Builder/valueStringifier +FD: net/minecraft/client/gui/components/CycleButton$Builder/f_168923_ net/minecraft/client/gui/components/CycleButton$Builder/tooltipSupplier +FD: net/minecraft/client/gui/components/CycleButton$Builder/f_168924_ net/minecraft/client/gui/components/CycleButton$Builder/narrationProvider +FD: net/minecraft/client/gui/components/CycleButton$Builder/f_168925_ net/minecraft/client/gui/components/CycleButton$Builder/values +FD: net/minecraft/client/gui/components/CycleButton$Builder/f_168926_ net/minecraft/client/gui/components/CycleButton$Builder/displayOnlyValue +FD: net/minecraft/client/gui/components/CycleButton$ValueListSupplier$1/f_168974_ net/minecraft/client/gui/components/CycleButton$ValueListSupplier$1/val$copy +FD: net/minecraft/client/gui/components/CycleButton$ValueListSupplier$2/f_168979_ net/minecraft/client/gui/components/CycleButton$ValueListSupplier$2/val$altSelector +FD: net/minecraft/client/gui/components/CycleButton$ValueListSupplier$2/f_168980_ net/minecraft/client/gui/components/CycleButton$ValueListSupplier$2/val$altCopy +FD: net/minecraft/client/gui/components/CycleButton$ValueListSupplier$2/f_168981_ net/minecraft/client/gui/components/CycleButton$ValueListSupplier$2/val$defaultCopy +FD: net/minecraft/client/gui/components/DebugScreenOverlay/f_168988_ net/minecraft/client/gui/components/DebugScreenOverlay/COLOR_GREY +FD: net/minecraft/client/gui/components/DebugScreenOverlay/f_168989_ net/minecraft/client/gui/components/DebugScreenOverlay/MARGIN_RIGHT +FD: net/minecraft/client/gui/components/DebugScreenOverlay/f_168990_ net/minecraft/client/gui/components/DebugScreenOverlay/MARGIN_LEFT +FD: net/minecraft/client/gui/components/DebugScreenOverlay/f_168991_ net/minecraft/client/gui/components/DebugScreenOverlay/MARGIN_TOP +FD: net/minecraft/client/gui/components/DebugScreenOverlay/f_168992_ net/minecraft/client/gui/components/DebugScreenOverlay/RED +FD: net/minecraft/client/gui/components/DebugScreenOverlay/f_168993_ net/minecraft/client/gui/components/DebugScreenOverlay/YELLOW +FD: net/minecraft/client/gui/components/DebugScreenOverlay/f_168994_ net/minecraft/client/gui/components/DebugScreenOverlay/GREEN +FD: net/minecraft/client/gui/components/DebugScreenOverlay/f_232506_ net/minecraft/client/gui/components/DebugScreenOverlay/allocationRateCalculator +FD: net/minecraft/client/gui/components/DebugScreenOverlay/f_94029_ net/minecraft/client/gui/components/DebugScreenOverlay/HEIGHTMAP_NAMES +FD: net/minecraft/client/gui/components/DebugScreenOverlay/f_94030_ net/minecraft/client/gui/components/DebugScreenOverlay/minecraft +FD: net/minecraft/client/gui/components/DebugScreenOverlay/f_94031_ net/minecraft/client/gui/components/DebugScreenOverlay/font +FD: net/minecraft/client/gui/components/DebugScreenOverlay/f_94032_ net/minecraft/client/gui/components/DebugScreenOverlay/block +FD: net/minecraft/client/gui/components/DebugScreenOverlay/f_94033_ net/minecraft/client/gui/components/DebugScreenOverlay/liquid +FD: net/minecraft/client/gui/components/DebugScreenOverlay/f_94034_ net/minecraft/client/gui/components/DebugScreenOverlay/lastPos +FD: net/minecraft/client/gui/components/DebugScreenOverlay/f_94035_ net/minecraft/client/gui/components/DebugScreenOverlay/clientChunk +FD: net/minecraft/client/gui/components/DebugScreenOverlay/f_94036_ net/minecraft/client/gui/components/DebugScreenOverlay/serverChunk +FD: net/minecraft/client/gui/components/DebugScreenOverlay$1/f_94086_ net/minecraft/client/gui/components/DebugScreenOverlay$1/$SwitchMap$net$minecraft$core$Direction +FD: net/minecraft/client/gui/components/DebugScreenOverlay$AllocationRateCalculator/f_232507_ net/minecraft/client/gui/components/DebugScreenOverlay$AllocationRateCalculator/UPDATE_INTERVAL_MS +FD: net/minecraft/client/gui/components/DebugScreenOverlay$AllocationRateCalculator/f_232508_ net/minecraft/client/gui/components/DebugScreenOverlay$AllocationRateCalculator/GC_MBEANS +FD: net/minecraft/client/gui/components/DebugScreenOverlay$AllocationRateCalculator/f_232509_ net/minecraft/client/gui/components/DebugScreenOverlay$AllocationRateCalculator/lastTime +FD: net/minecraft/client/gui/components/DebugScreenOverlay$AllocationRateCalculator/f_232510_ net/minecraft/client/gui/components/DebugScreenOverlay$AllocationRateCalculator/lastHeapUsage +FD: net/minecraft/client/gui/components/DebugScreenOverlay$AllocationRateCalculator/f_232511_ net/minecraft/client/gui/components/DebugScreenOverlay$AllocationRateCalculator/lastGcCounts +FD: net/minecraft/client/gui/components/DebugScreenOverlay$AllocationRateCalculator/f_232512_ net/minecraft/client/gui/components/DebugScreenOverlay$AllocationRateCalculator/lastRate +FD: net/minecraft/client/gui/components/EditBox/f_168999_ net/minecraft/client/gui/components/EditBox/BACKWARDS +FD: net/minecraft/client/gui/components/EditBox/f_169000_ net/minecraft/client/gui/components/EditBox/FORWARDS +FD: net/minecraft/client/gui/components/EditBox/f_169001_ net/minecraft/client/gui/components/EditBox/DEFAULT_TEXT_COLOR +FD: net/minecraft/client/gui/components/EditBox/f_169002_ net/minecraft/client/gui/components/EditBox/CURSOR_INSERT_WIDTH +FD: net/minecraft/client/gui/components/EditBox/f_169003_ net/minecraft/client/gui/components/EditBox/CURSOR_INSERT_COLOR +FD: net/minecraft/client/gui/components/EditBox/f_169004_ net/minecraft/client/gui/components/EditBox/CURSOR_APPEND_CHARACTER +FD: net/minecraft/client/gui/components/EditBox/f_169005_ net/minecraft/client/gui/components/EditBox/BORDER_COLOR_FOCUSED +FD: net/minecraft/client/gui/components/EditBox/f_169006_ net/minecraft/client/gui/components/EditBox/BORDER_COLOR +FD: net/minecraft/client/gui/components/EditBox/f_169007_ net/minecraft/client/gui/components/EditBox/BACKGROUND_COLOR +FD: net/minecraft/client/gui/components/EditBox/f_256828_ net/minecraft/client/gui/components/EditBox/hint +FD: net/minecraft/client/gui/components/EditBox/f_94088_ net/minecraft/client/gui/components/EditBox/suggestion +FD: net/minecraft/client/gui/components/EditBox/f_94089_ net/minecraft/client/gui/components/EditBox/responder +FD: net/minecraft/client/gui/components/EditBox/f_94090_ net/minecraft/client/gui/components/EditBox/filter +FD: net/minecraft/client/gui/components/EditBox/f_94091_ net/minecraft/client/gui/components/EditBox/formatter +FD: net/minecraft/client/gui/components/EditBox/f_94092_ net/minecraft/client/gui/components/EditBox/font +FD: net/minecraft/client/gui/components/EditBox/f_94093_ net/minecraft/client/gui/components/EditBox/value +FD: net/minecraft/client/gui/components/EditBox/f_94094_ net/minecraft/client/gui/components/EditBox/maxLength +FD: net/minecraft/client/gui/components/EditBox/f_94095_ net/minecraft/client/gui/components/EditBox/frame +FD: net/minecraft/client/gui/components/EditBox/f_94096_ net/minecraft/client/gui/components/EditBox/bordered +FD: net/minecraft/client/gui/components/EditBox/f_94097_ net/minecraft/client/gui/components/EditBox/canLoseFocus +FD: net/minecraft/client/gui/components/EditBox/f_94098_ net/minecraft/client/gui/components/EditBox/isEditable +FD: net/minecraft/client/gui/components/EditBox/f_94099_ net/minecraft/client/gui/components/EditBox/shiftPressed +FD: net/minecraft/client/gui/components/EditBox/f_94100_ net/minecraft/client/gui/components/EditBox/displayPos +FD: net/minecraft/client/gui/components/EditBox/f_94101_ net/minecraft/client/gui/components/EditBox/cursorPos +FD: net/minecraft/client/gui/components/EditBox/f_94102_ net/minecraft/client/gui/components/EditBox/highlightPos +FD: net/minecraft/client/gui/components/EditBox/f_94103_ net/minecraft/client/gui/components/EditBox/textColor +FD: net/minecraft/client/gui/components/EditBox/f_94104_ net/minecraft/client/gui/components/EditBox/textColorUneditable +FD: net/minecraft/client/gui/components/FittingMultiLineTextWidget/f_289701_ net/minecraft/client/gui/components/FittingMultiLineTextWidget/font +FD: net/minecraft/client/gui/components/FittingMultiLineTextWidget/f_289706_ net/minecraft/client/gui/components/FittingMultiLineTextWidget/multilineWidget +FD: net/minecraft/client/gui/components/ImageButton/f_94223_ net/minecraft/client/gui/components/ImageButton/resourceLocation +FD: net/minecraft/client/gui/components/ImageButton/f_94224_ net/minecraft/client/gui/components/ImageButton/xTexStart +FD: net/minecraft/client/gui/components/ImageButton/f_94225_ net/minecraft/client/gui/components/ImageButton/yTexStart +FD: net/minecraft/client/gui/components/ImageButton/f_94226_ net/minecraft/client/gui/components/ImageButton/yDiffTex +FD: net/minecraft/client/gui/components/ImageButton/f_94227_ net/minecraft/client/gui/components/ImageButton/textureWidth +FD: net/minecraft/client/gui/components/ImageButton/f_94228_ net/minecraft/client/gui/components/ImageButton/textureHeight +FD: net/minecraft/client/gui/components/ImageWidget/f_273859_ net/minecraft/client/gui/components/ImageWidget/imageLocation +FD: net/minecraft/client/gui/components/LerpingBossEvent/f_169019_ net/minecraft/client/gui/components/LerpingBossEvent/LERP_MILLISECONDS +FD: net/minecraft/client/gui/components/LerpingBossEvent/f_94286_ net/minecraft/client/gui/components/LerpingBossEvent/targetPercent +FD: net/minecraft/client/gui/components/LerpingBossEvent/f_94287_ net/minecraft/client/gui/components/LerpingBossEvent/setTime +FD: net/minecraft/client/gui/components/LockIconButton/f_94297_ net/minecraft/client/gui/components/LockIconButton/locked +FD: net/minecraft/client/gui/components/LockIconButton$Icon/$VALUES net/minecraft/client/gui/components/LockIconButton$Icon/$VALUES +FD: net/minecraft/client/gui/components/LockIconButton$Icon/LOCKED net/minecraft/client/gui/components/LockIconButton$Icon/LOCKED +FD: net/minecraft/client/gui/components/LockIconButton$Icon/LOCKED_DISABLED net/minecraft/client/gui/components/LockIconButton$Icon/LOCKED_DISABLED +FD: net/minecraft/client/gui/components/LockIconButton$Icon/LOCKED_HOVER net/minecraft/client/gui/components/LockIconButton$Icon/LOCKED_HOVER +FD: net/minecraft/client/gui/components/LockIconButton$Icon/UNLOCKED net/minecraft/client/gui/components/LockIconButton$Icon/UNLOCKED +FD: net/minecraft/client/gui/components/LockIconButton$Icon/UNLOCKED_DISABLED net/minecraft/client/gui/components/LockIconButton$Icon/UNLOCKED_DISABLED +FD: net/minecraft/client/gui/components/LockIconButton$Icon/UNLOCKED_HOVER net/minecraft/client/gui/components/LockIconButton$Icon/UNLOCKED_HOVER +FD: net/minecraft/client/gui/components/LockIconButton$Icon/f_94317_ net/minecraft/client/gui/components/LockIconButton$Icon/x +FD: net/minecraft/client/gui/components/LockIconButton$Icon/f_94318_ net/minecraft/client/gui/components/LockIconButton$Icon/y +FD: net/minecraft/client/gui/components/LogoRenderer/f_263665_ net/minecraft/client/gui/components/LogoRenderer/showEasterEgg +FD: net/minecraft/client/gui/components/LogoRenderer/f_263676_ net/minecraft/client/gui/components/LogoRenderer/DEFAULT_HEIGHT_OFFSET +FD: net/minecraft/client/gui/components/LogoRenderer/f_263708_ net/minecraft/client/gui/components/LogoRenderer/keepLogoThroughFade +FD: net/minecraft/client/gui/components/LogoRenderer/f_263712_ net/minecraft/client/gui/components/LogoRenderer/MINECRAFT_LOGO +FD: net/minecraft/client/gui/components/LogoRenderer/f_263775_ net/minecraft/client/gui/components/LogoRenderer/LOGO_HEIGHT +FD: net/minecraft/client/gui/components/LogoRenderer/f_263806_ net/minecraft/client/gui/components/LogoRenderer/MINECRAFT_EDITION +FD: net/minecraft/client/gui/components/LogoRenderer/f_263835_ net/minecraft/client/gui/components/LogoRenderer/LOGO_WIDTH +FD: net/minecraft/client/gui/components/LogoRenderer/f_278377_ net/minecraft/client/gui/components/LogoRenderer/EDITION_TEXTURE_WIDTH +FD: net/minecraft/client/gui/components/LogoRenderer/f_278399_ net/minecraft/client/gui/components/LogoRenderer/EDITION_HEIGHT +FD: net/minecraft/client/gui/components/LogoRenderer/f_278401_ net/minecraft/client/gui/components/LogoRenderer/EDITION_TEXTURE_HEIGHT +FD: net/minecraft/client/gui/components/LogoRenderer/f_278414_ net/minecraft/client/gui/components/LogoRenderer/LOGO_TEXTURE_HEIGHT +FD: net/minecraft/client/gui/components/LogoRenderer/f_278419_ net/minecraft/client/gui/components/LogoRenderer/EASTER_EGG_LOGO +FD: net/minecraft/client/gui/components/LogoRenderer/f_278428_ net/minecraft/client/gui/components/LogoRenderer/LOGO_TEXTURE_WIDTH +FD: net/minecraft/client/gui/components/LogoRenderer/f_278429_ net/minecraft/client/gui/components/LogoRenderer/EDITION_WIDTH +FD: net/minecraft/client/gui/components/LogoRenderer/f_278513_ net/minecraft/client/gui/components/LogoRenderer/EDITION_LOGO_OVERLAP +FD: net/minecraft/client/gui/components/MultiLineEditBox/f_238540_ net/minecraft/client/gui/components/MultiLineEditBox/textField +FD: net/minecraft/client/gui/components/MultiLineEditBox/f_238647_ net/minecraft/client/gui/components/MultiLineEditBox/CURSOR_APPEND_CHARACTER +FD: net/minecraft/client/gui/components/MultiLineEditBox/f_238653_ net/minecraft/client/gui/components/MultiLineEditBox/placeholder +FD: net/minecraft/client/gui/components/MultiLineEditBox/f_238688_ net/minecraft/client/gui/components/MultiLineEditBox/CURSOR_INSERT_COLOR +FD: net/minecraft/client/gui/components/MultiLineEditBox/f_238712_ net/minecraft/client/gui/components/MultiLineEditBox/TEXT_COLOR +FD: net/minecraft/client/gui/components/MultiLineEditBox/f_238758_ net/minecraft/client/gui/components/MultiLineEditBox/PLACEHOLDER_TEXT_COLOR +FD: net/minecraft/client/gui/components/MultiLineEditBox/f_238790_ net/minecraft/client/gui/components/MultiLineEditBox/font +FD: net/minecraft/client/gui/components/MultiLineEditBox/f_238824_ net/minecraft/client/gui/components/MultiLineEditBox/frame +FD: net/minecraft/client/gui/components/MultiLineEditBox/f_238826_ net/minecraft/client/gui/components/MultiLineEditBox/CURSOR_INSERT_WIDTH +FD: net/minecraft/client/gui/components/MultiLineLabel/f_94331_ net/minecraft/client/gui/components/MultiLineLabel/EMPTY +FD: net/minecraft/client/gui/components/MultiLineLabel$2/f_232519_ net/minecraft/client/gui/components/MultiLineLabel$2/width +FD: net/minecraft/client/gui/components/MultiLineLabel$2/f_94399_ net/minecraft/client/gui/components/MultiLineLabel$2/val$font +FD: net/minecraft/client/gui/components/MultiLineLabel$2/f_94400_ net/minecraft/client/gui/components/MultiLineLabel$2/val$lines +FD: net/minecraft/client/gui/components/MultiLineLabel$TextWithWidth/f_94427_ net/minecraft/client/gui/components/MultiLineLabel$TextWithWidth/text +FD: net/minecraft/client/gui/components/MultiLineLabel$TextWithWidth/f_94428_ net/minecraft/client/gui/components/MultiLineLabel$TextWithWidth/width +FD: net/minecraft/client/gui/components/MultiLineTextWidget/f_260670_ net/minecraft/client/gui/components/MultiLineTextWidget/centered +FD: net/minecraft/client/gui/components/MultiLineTextWidget/f_268539_ net/minecraft/client/gui/components/MultiLineTextWidget/cache +FD: net/minecraft/client/gui/components/MultiLineTextWidget/f_268603_ net/minecraft/client/gui/components/MultiLineTextWidget/maxRows +FD: net/minecraft/client/gui/components/MultiLineTextWidget/f_268685_ net/minecraft/client/gui/components/MultiLineTextWidget/maxWidth +FD: net/minecraft/client/gui/components/MultiLineTextWidget$CacheKey/f_268550_ net/minecraft/client/gui/components/MultiLineTextWidget$CacheKey/maxRows +FD: net/minecraft/client/gui/components/MultiLineTextWidget$CacheKey/f_268646_ net/minecraft/client/gui/components/MultiLineTextWidget$CacheKey/maxWidth +FD: net/minecraft/client/gui/components/MultiLineTextWidget$CacheKey/f_268701_ net/minecraft/client/gui/components/MultiLineTextWidget$CacheKey/message +FD: net/minecraft/client/gui/components/MultilineTextField/f_238527_ net/minecraft/client/gui/components/MultilineTextField/valueListener +FD: net/minecraft/client/gui/components/MultilineTextField/f_238538_ net/minecraft/client/gui/components/MultilineTextField/font +FD: net/minecraft/client/gui/components/MultilineTextField/f_238550_ net/minecraft/client/gui/components/MultilineTextField/selectCursor +FD: net/minecraft/client/gui/components/MultilineTextField/f_238557_ net/minecraft/client/gui/components/MultilineTextField/selecting +FD: net/minecraft/client/gui/components/MultilineTextField/f_238566_ net/minecraft/client/gui/components/MultilineTextField/cursor +FD: net/minecraft/client/gui/components/MultilineTextField/f_238569_ net/minecraft/client/gui/components/MultilineTextField/characterLimit +FD: net/minecraft/client/gui/components/MultilineTextField/f_238603_ net/minecraft/client/gui/components/MultilineTextField/width +FD: net/minecraft/client/gui/components/MultilineTextField/f_238620_ net/minecraft/client/gui/components/MultilineTextField/LINE_SEEK_PIXEL_BIAS +FD: net/minecraft/client/gui/components/MultilineTextField/f_238625_ net/minecraft/client/gui/components/MultilineTextField/cursorListener +FD: net/minecraft/client/gui/components/MultilineTextField/f_238645_ net/minecraft/client/gui/components/MultilineTextField/value +FD: net/minecraft/client/gui/components/MultilineTextField/f_238667_ net/minecraft/client/gui/components/MultilineTextField/NO_CHARACTER_LIMIT +FD: net/minecraft/client/gui/components/MultilineTextField/f_238722_ net/minecraft/client/gui/components/MultilineTextField/displayLines +FD: net/minecraft/client/gui/components/MultilineTextField$1/f_238786_ net/minecraft/client/gui/components/MultilineTextField$1/$SwitchMap$net$minecraft$client$gui$components$Whence +FD: net/minecraft/client/gui/components/MultilineTextField$StringView/f_238547_ net/minecraft/client/gui/components/MultilineTextField$StringView/EMPTY +FD: net/minecraft/client/gui/components/MultilineTextField$StringView/f_238590_ net/minecraft/client/gui/components/MultilineTextField$StringView/beginIndex +FD: net/minecraft/client/gui/components/MultilineTextField$StringView/f_238654_ net/minecraft/client/gui/components/MultilineTextField$StringView/endIndex +FD: net/minecraft/client/gui/components/ObjectSelectionList/f_169039_ net/minecraft/client/gui/components/ObjectSelectionList/USAGE_NARRATION +FD: net/minecraft/client/gui/components/OptionsList$Entry/f_169045_ net/minecraft/client/gui/components/OptionsList$Entry/options +FD: net/minecraft/client/gui/components/OptionsList$Entry/f_94485_ net/minecraft/client/gui/components/OptionsList$Entry/children +FD: net/minecraft/client/gui/components/PlainTextButton/f_211751_ net/minecraft/client/gui/components/PlainTextButton/font +FD: net/minecraft/client/gui/components/PlainTextButton/f_211752_ net/minecraft/client/gui/components/PlainTextButton/message +FD: net/minecraft/client/gui/components/PlainTextButton/f_211753_ net/minecraft/client/gui/components/PlainTextButton/underlinedMessage +FD: net/minecraft/client/gui/components/PlayerFaceRenderer/f_238559_ net/minecraft/client/gui/components/PlayerFaceRenderer/SKIN_HAT_U +FD: net/minecraft/client/gui/components/PlayerFaceRenderer/f_238562_ net/minecraft/client/gui/components/PlayerFaceRenderer/SKIN_HAT_HEIGHT +FD: net/minecraft/client/gui/components/PlayerFaceRenderer/f_238605_ net/minecraft/client/gui/components/PlayerFaceRenderer/SKIN_HEAD_WIDTH +FD: net/minecraft/client/gui/components/PlayerFaceRenderer/f_238606_ net/minecraft/client/gui/components/PlayerFaceRenderer/SKIN_HEAD_HEIGHT +FD: net/minecraft/client/gui/components/PlayerFaceRenderer/f_238628_ net/minecraft/client/gui/components/PlayerFaceRenderer/SKIN_HEAD_V +FD: net/minecraft/client/gui/components/PlayerFaceRenderer/f_238683_ net/minecraft/client/gui/components/PlayerFaceRenderer/SKIN_HEAD_U +FD: net/minecraft/client/gui/components/PlayerFaceRenderer/f_238692_ net/minecraft/client/gui/components/PlayerFaceRenderer/SKIN_HAT_WIDTH +FD: net/minecraft/client/gui/components/PlayerFaceRenderer/f_238699_ net/minecraft/client/gui/components/PlayerFaceRenderer/SKIN_TEX_WIDTH +FD: net/minecraft/client/gui/components/PlayerFaceRenderer/f_238759_ net/minecraft/client/gui/components/PlayerFaceRenderer/SKIN_HAT_V +FD: net/minecraft/client/gui/components/PlayerFaceRenderer/f_238780_ net/minecraft/client/gui/components/PlayerFaceRenderer/SKIN_TEX_HEIGHT +FD: net/minecraft/client/gui/components/PlayerTabOverlay/f_169049_ net/minecraft/client/gui/components/PlayerTabOverlay/MAX_ROWS_PER_COL +FD: net/minecraft/client/gui/components/PlayerTabOverlay/f_169050_ net/minecraft/client/gui/components/PlayerTabOverlay/HEART_EMPTY_CONTAINER +FD: net/minecraft/client/gui/components/PlayerTabOverlay/f_169051_ net/minecraft/client/gui/components/PlayerTabOverlay/HEART_EMPTY_CONTAINER_BLINKING +FD: net/minecraft/client/gui/components/PlayerTabOverlay/f_169052_ net/minecraft/client/gui/components/PlayerTabOverlay/HEART_FULL +FD: net/minecraft/client/gui/components/PlayerTabOverlay/f_169053_ net/minecraft/client/gui/components/PlayerTabOverlay/HEART_HALF_FULL +FD: net/minecraft/client/gui/components/PlayerTabOverlay/f_169054_ net/minecraft/client/gui/components/PlayerTabOverlay/HEART_GOLDEN_FULL +FD: net/minecraft/client/gui/components/PlayerTabOverlay/f_169055_ net/minecraft/client/gui/components/PlayerTabOverlay/HEART_GOLDEN_HALF_FULL +FD: net/minecraft/client/gui/components/PlayerTabOverlay/f_169056_ net/minecraft/client/gui/components/PlayerTabOverlay/HEART_GHOST_FULL +FD: net/minecraft/client/gui/components/PlayerTabOverlay/f_169057_ net/minecraft/client/gui/components/PlayerTabOverlay/HEART_GHOST_HALF_FULL +FD: net/minecraft/client/gui/components/PlayerTabOverlay/f_243768_ net/minecraft/client/gui/components/PlayerTabOverlay/PLAYER_COMPARATOR +FD: net/minecraft/client/gui/components/PlayerTabOverlay/f_244278_ net/minecraft/client/gui/components/PlayerTabOverlay/healthStates +FD: net/minecraft/client/gui/components/PlayerTabOverlay/f_279565_ net/minecraft/client/gui/components/PlayerTabOverlay/GUI_ICONS_LOCATION +FD: net/minecraft/client/gui/components/PlayerTabOverlay/f_94519_ net/minecraft/client/gui/components/PlayerTabOverlay/minecraft +FD: net/minecraft/client/gui/components/PlayerTabOverlay/f_94520_ net/minecraft/client/gui/components/PlayerTabOverlay/gui +FD: net/minecraft/client/gui/components/PlayerTabOverlay/f_94521_ net/minecraft/client/gui/components/PlayerTabOverlay/footer +FD: net/minecraft/client/gui/components/PlayerTabOverlay/f_94522_ net/minecraft/client/gui/components/PlayerTabOverlay/header +FD: net/minecraft/client/gui/components/PlayerTabOverlay/f_94524_ net/minecraft/client/gui/components/PlayerTabOverlay/visible +FD: net/minecraft/client/gui/components/PlayerTabOverlay$HealthState/f_243756_ net/minecraft/client/gui/components/PlayerTabOverlay$HealthState/INCREASE_BLINK_DURATION +FD: net/minecraft/client/gui/components/PlayerTabOverlay$HealthState/f_243817_ net/minecraft/client/gui/components/PlayerTabOverlay$HealthState/lastUpdateTick +FD: net/minecraft/client/gui/components/PlayerTabOverlay$HealthState/f_243946_ net/minecraft/client/gui/components/PlayerTabOverlay$HealthState/lastValue +FD: net/minecraft/client/gui/components/PlayerTabOverlay$HealthState/f_244019_ net/minecraft/client/gui/components/PlayerTabOverlay$HealthState/displayedValue +FD: net/minecraft/client/gui/components/PlayerTabOverlay$HealthState/f_244222_ net/minecraft/client/gui/components/PlayerTabOverlay$HealthState/DECREASE_BLINK_DURATION +FD: net/minecraft/client/gui/components/PlayerTabOverlay$HealthState/f_244325_ net/minecraft/client/gui/components/PlayerTabOverlay$HealthState/DISPLAY_UPDATE_DELAY +FD: net/minecraft/client/gui/components/PlayerTabOverlay$HealthState/f_244517_ net/minecraft/client/gui/components/PlayerTabOverlay$HealthState/blinkUntilTick +FD: net/minecraft/client/gui/components/SplashRenderer/f_279542_ net/minecraft/client/gui/components/SplashRenderer/NEW_YEAR +FD: net/minecraft/client/gui/components/SplashRenderer/f_279554_ net/minecraft/client/gui/components/SplashRenderer/CHRISTMAS +FD: net/minecraft/client/gui/components/SplashRenderer/f_279574_ net/minecraft/client/gui/components/SplashRenderer/HALLOWEEN +FD: net/minecraft/client/gui/components/SplashRenderer/f_279585_ net/minecraft/client/gui/components/SplashRenderer/WIDTH_OFFSET +FD: net/minecraft/client/gui/components/SplashRenderer/f_279597_ net/minecraft/client/gui/components/SplashRenderer/splash +FD: net/minecraft/client/gui/components/SplashRenderer/f_279658_ net/minecraft/client/gui/components/SplashRenderer/HEIGH_OFFSET +FD: net/minecraft/client/gui/components/StateSwitchingButton/f_94608_ net/minecraft/client/gui/components/StateSwitchingButton/resourceLocation +FD: net/minecraft/client/gui/components/StateSwitchingButton/f_94609_ net/minecraft/client/gui/components/StateSwitchingButton/isStateTriggered +FD: net/minecraft/client/gui/components/StateSwitchingButton/f_94610_ net/minecraft/client/gui/components/StateSwitchingButton/xTexStart +FD: net/minecraft/client/gui/components/StateSwitchingButton/f_94611_ net/minecraft/client/gui/components/StateSwitchingButton/yTexStart +FD: net/minecraft/client/gui/components/StateSwitchingButton/f_94612_ net/minecraft/client/gui/components/StateSwitchingButton/xDiffTex +FD: net/minecraft/client/gui/components/StateSwitchingButton/f_94613_ net/minecraft/client/gui/components/StateSwitchingButton/yDiffTex +FD: net/minecraft/client/gui/components/StringWidget/f_267370_ net/minecraft/client/gui/components/StringWidget/alignX +FD: net/minecraft/client/gui/components/SubtitleOverlay/f_169070_ net/minecraft/client/gui/components/SubtitleOverlay/DISPLAY_TIME +FD: net/minecraft/client/gui/components/SubtitleOverlay/f_94637_ net/minecraft/client/gui/components/SubtitleOverlay/minecraft +FD: net/minecraft/client/gui/components/SubtitleOverlay/f_94638_ net/minecraft/client/gui/components/SubtitleOverlay/subtitles +FD: net/minecraft/client/gui/components/SubtitleOverlay/f_94639_ net/minecraft/client/gui/components/SubtitleOverlay/isListening +FD: net/minecraft/client/gui/components/SubtitleOverlay$Subtitle/f_94648_ net/minecraft/client/gui/components/SubtitleOverlay$Subtitle/text +FD: net/minecraft/client/gui/components/SubtitleOverlay$Subtitle/f_94649_ net/minecraft/client/gui/components/SubtitleOverlay$Subtitle/time +FD: net/minecraft/client/gui/components/SubtitleOverlay$Subtitle/f_94650_ net/minecraft/client/gui/components/SubtitleOverlay$Subtitle/location +FD: net/minecraft/client/gui/components/TabButton/f_273822_ net/minecraft/client/gui/components/TabButton/TEXTURE_BORDER_BOTTOM +FD: net/minecraft/client/gui/components/TabButton/f_273828_ net/minecraft/client/gui/components/TabButton/TEXTURE_HEIGHT +FD: net/minecraft/client/gui/components/TabButton/f_273837_ net/minecraft/client/gui/components/TabButton/tab +FD: net/minecraft/client/gui/components/TabButton/f_273844_ net/minecraft/client/gui/components/TabButton/UNDERLINE_MARGIN_BOTTOM +FD: net/minecraft/client/gui/components/TabButton/f_273861_ net/minecraft/client/gui/components/TabButton/SELECTED_OFFSET +FD: net/minecraft/client/gui/components/TabButton/f_273873_ net/minecraft/client/gui/components/TabButton/TEXT_MARGIN +FD: net/minecraft/client/gui/components/TabButton/f_273883_ net/minecraft/client/gui/components/TabButton/TEXTURE_BORDER +FD: net/minecraft/client/gui/components/TabButton/f_273884_ net/minecraft/client/gui/components/TabButton/tabManager +FD: net/minecraft/client/gui/components/TabButton/f_273895_ net/minecraft/client/gui/components/TabButton/UNDERLINE_HEIGHT +FD: net/minecraft/client/gui/components/TabButton/f_273920_ net/minecraft/client/gui/components/TabButton/TEXTURE_LOCATION +FD: net/minecraft/client/gui/components/TabButton/f_273921_ net/minecraft/client/gui/components/TabButton/UNDERLINE_MARGIN_X +FD: net/minecraft/client/gui/components/TabButton/f_273933_ net/minecraft/client/gui/components/TabButton/TEXTURE_WIDTH +FD: net/minecraft/client/gui/components/TextAndImageButton/f_267392_ net/minecraft/client/gui/components/TextAndImageButton/xOffset +FD: net/minecraft/client/gui/components/TextAndImageButton/f_267434_ net/minecraft/client/gui/components/TextAndImageButton/usedTextureHeight +FD: net/minecraft/client/gui/components/TextAndImageButton/f_267436_ net/minecraft/client/gui/components/TextAndImageButton/usedTextureWidth +FD: net/minecraft/client/gui/components/TextAndImageButton/f_267457_ net/minecraft/client/gui/components/TextAndImageButton/yOffset +FD: net/minecraft/client/gui/components/TextAndImageButton/f_273857_ net/minecraft/client/gui/components/TextAndImageButton/yTexStart +FD: net/minecraft/client/gui/components/TextAndImageButton/f_273871_ net/minecraft/client/gui/components/TextAndImageButton/textureHeight +FD: net/minecraft/client/gui/components/TextAndImageButton/f_273880_ net/minecraft/client/gui/components/TextAndImageButton/textureWidth +FD: net/minecraft/client/gui/components/TextAndImageButton/f_273904_ net/minecraft/client/gui/components/TextAndImageButton/xTexStart +FD: net/minecraft/client/gui/components/TextAndImageButton/f_273911_ net/minecraft/client/gui/components/TextAndImageButton/yDiffTex +FD: net/minecraft/client/gui/components/TextAndImageButton/f_273941_ net/minecraft/client/gui/components/TextAndImageButton/resourceLocation +FD: net/minecraft/client/gui/components/TextAndImageButton$Builder/f_267364_ net/minecraft/client/gui/components/TextAndImageButton$Builder/usedTextureWidth +FD: net/minecraft/client/gui/components/TextAndImageButton$Builder/f_267366_ net/minecraft/client/gui/components/TextAndImageButton$Builder/yTexStart +FD: net/minecraft/client/gui/components/TextAndImageButton$Builder/f_267375_ net/minecraft/client/gui/components/TextAndImageButton$Builder/message +FD: net/minecraft/client/gui/components/TextAndImageButton$Builder/f_267378_ net/minecraft/client/gui/components/TextAndImageButton$Builder/resourceLocation +FD: net/minecraft/client/gui/components/TextAndImageButton$Builder/f_267387_ net/minecraft/client/gui/components/TextAndImageButton$Builder/textureHeight +FD: net/minecraft/client/gui/components/TextAndImageButton$Builder/f_267408_ net/minecraft/client/gui/components/TextAndImageButton$Builder/usedTextureHeight +FD: net/minecraft/client/gui/components/TextAndImageButton$Builder/f_267417_ net/minecraft/client/gui/components/TextAndImageButton$Builder/xOffset +FD: net/minecraft/client/gui/components/TextAndImageButton$Builder/f_267427_ net/minecraft/client/gui/components/TextAndImageButton$Builder/onPress +FD: net/minecraft/client/gui/components/TextAndImageButton$Builder/f_267430_ net/minecraft/client/gui/components/TextAndImageButton$Builder/textureWidth +FD: net/minecraft/client/gui/components/TextAndImageButton$Builder/f_267433_ net/minecraft/client/gui/components/TextAndImageButton$Builder/yOffset +FD: net/minecraft/client/gui/components/TextAndImageButton$Builder/f_267451_ net/minecraft/client/gui/components/TextAndImageButton$Builder/yDiffTex +FD: net/minecraft/client/gui/components/TextAndImageButton$Builder/f_267472_ net/minecraft/client/gui/components/TextAndImageButton$Builder/xTexStart +FD: net/minecraft/client/gui/components/Tooltip/f_256766_ net/minecraft/client/gui/components/Tooltip/cachedTooltip +FD: net/minecraft/client/gui/components/Tooltip/f_256850_ net/minecraft/client/gui/components/Tooltip/message +FD: net/minecraft/client/gui/components/Tooltip/f_257004_ net/minecraft/client/gui/components/Tooltip/narration +FD: net/minecraft/client/gui/components/Tooltip/f_257026_ net/minecraft/client/gui/components/Tooltip/MAX_WIDTH +FD: net/minecraft/client/gui/components/Whence/$VALUES net/minecraft/client/gui/components/Whence/$VALUES +FD: net/minecraft/client/gui/components/Whence/ABSOLUTE net/minecraft/client/gui/components/Whence/ABSOLUTE +FD: net/minecraft/client/gui/components/Whence/END net/minecraft/client/gui/components/Whence/END +FD: net/minecraft/client/gui/components/Whence/RELATIVE net/minecraft/client/gui/components/Whence/RELATIVE +FD: net/minecraft/client/gui/components/events/AbstractContainerEventHandler/f_94673_ net/minecraft/client/gui/components/events/AbstractContainerEventHandler/focused +FD: net/minecraft/client/gui/components/events/AbstractContainerEventHandler/f_94674_ net/minecraft/client/gui/components/events/AbstractContainerEventHandler/isDragging +FD: net/minecraft/client/gui/components/events/GuiEventListener/f_212360_ net/minecraft/client/gui/components/events/GuiEventListener/DOUBLE_CLICK_THRESHOLD_MS +FD: net/minecraft/client/gui/components/spectator/SpectatorGui/f_169074_ net/minecraft/client/gui/components/spectator/SpectatorGui/FADE_OUT_DELAY +FD: net/minecraft/client/gui/components/spectator/SpectatorGui/f_169075_ net/minecraft/client/gui/components/spectator/SpectatorGui/FADE_OUT_TIME +FD: net/minecraft/client/gui/components/spectator/SpectatorGui/f_94760_ net/minecraft/client/gui/components/spectator/SpectatorGui/SPECTATOR_LOCATION +FD: net/minecraft/client/gui/components/spectator/SpectatorGui/f_94761_ net/minecraft/client/gui/components/spectator/SpectatorGui/WIDGETS_LOCATION +FD: net/minecraft/client/gui/components/spectator/SpectatorGui/f_94762_ net/minecraft/client/gui/components/spectator/SpectatorGui/minecraft +FD: net/minecraft/client/gui/components/spectator/SpectatorGui/f_94763_ net/minecraft/client/gui/components/spectator/SpectatorGui/lastSelectionTime +FD: net/minecraft/client/gui/components/spectator/SpectatorGui/f_94764_ net/minecraft/client/gui/components/spectator/SpectatorGui/menu +FD: net/minecraft/client/gui/components/tabs/GridLayoutTab/f_267367_ net/minecraft/client/gui/components/tabs/GridLayoutTab/layout +FD: net/minecraft/client/gui/components/tabs/GridLayoutTab/f_267410_ net/minecraft/client/gui/components/tabs/GridLayoutTab/title +FD: net/minecraft/client/gui/components/tabs/TabManager/f_267400_ net/minecraft/client/gui/components/tabs/TabManager/currentTab +FD: net/minecraft/client/gui/components/tabs/TabManager/f_267431_ net/minecraft/client/gui/components/tabs/TabManager/addWidget +FD: net/minecraft/client/gui/components/tabs/TabManager/f_267452_ net/minecraft/client/gui/components/tabs/TabManager/removeWidget +FD: net/minecraft/client/gui/components/tabs/TabManager/f_267478_ net/minecraft/client/gui/components/tabs/TabManager/tabArea +FD: net/minecraft/client/gui/components/tabs/TabNavigationBar/f_267380_ net/minecraft/client/gui/components/tabs/TabNavigationBar/tabs +FD: net/minecraft/client/gui/components/tabs/TabNavigationBar/f_267401_ net/minecraft/client/gui/components/tabs/TabNavigationBar/tabManager +FD: net/minecraft/client/gui/components/tabs/TabNavigationBar/f_267467_ net/minecraft/client/gui/components/tabs/TabNavigationBar/width +FD: net/minecraft/client/gui/components/tabs/TabNavigationBar/f_267495_ net/minecraft/client/gui/components/tabs/TabNavigationBar/tabButtons +FD: net/minecraft/client/gui/components/tabs/TabNavigationBar/f_268741_ net/minecraft/client/gui/components/tabs/TabNavigationBar/NO_TAB +FD: net/minecraft/client/gui/components/tabs/TabNavigationBar/f_273831_ net/minecraft/client/gui/components/tabs/TabNavigationBar/HEIGHT +FD: net/minecraft/client/gui/components/tabs/TabNavigationBar/f_273832_ net/minecraft/client/gui/components/tabs/TabNavigationBar/MAX_WIDTH +FD: net/minecraft/client/gui/components/tabs/TabNavigationBar/f_273887_ net/minecraft/client/gui/components/tabs/TabNavigationBar/MARGIN +FD: net/minecraft/client/gui/components/tabs/TabNavigationBar/f_273890_ net/minecraft/client/gui/components/tabs/TabNavigationBar/USAGE_NARRATION +FD: net/minecraft/client/gui/components/tabs/TabNavigationBar/f_273942_ net/minecraft/client/gui/components/tabs/TabNavigationBar/layout +FD: net/minecraft/client/gui/components/tabs/TabNavigationBar$Builder/f_267429_ net/minecraft/client/gui/components/tabs/TabNavigationBar$Builder/width +FD: net/minecraft/client/gui/components/tabs/TabNavigationBar$Builder/f_267468_ net/minecraft/client/gui/components/tabs/TabNavigationBar$Builder/tabManager +FD: net/minecraft/client/gui/components/tabs/TabNavigationBar$Builder/f_267496_ net/minecraft/client/gui/components/tabs/TabNavigationBar$Builder/tabs +FD: net/minecraft/client/gui/components/toasts/AdvancementToast/f_263764_ net/minecraft/client/gui/components/toasts/AdvancementToast/DISPLAY_TIME +FD: net/minecraft/client/gui/components/toasts/AdvancementToast/f_94795_ net/minecraft/client/gui/components/toasts/AdvancementToast/advancement +FD: net/minecraft/client/gui/components/toasts/AdvancementToast/f_94796_ net/minecraft/client/gui/components/toasts/AdvancementToast/playedSound +FD: net/minecraft/client/gui/components/toasts/RecipeToast/f_169076_ net/minecraft/client/gui/components/toasts/RecipeToast/DISPLAY_TIME +FD: net/minecraft/client/gui/components/toasts/RecipeToast/f_94803_ net/minecraft/client/gui/components/toasts/RecipeToast/TITLE_TEXT +FD: net/minecraft/client/gui/components/toasts/RecipeToast/f_94804_ net/minecraft/client/gui/components/toasts/RecipeToast/DESCRIPTION_TEXT +FD: net/minecraft/client/gui/components/toasts/RecipeToast/f_94805_ net/minecraft/client/gui/components/toasts/RecipeToast/recipes +FD: net/minecraft/client/gui/components/toasts/RecipeToast/f_94806_ net/minecraft/client/gui/components/toasts/RecipeToast/lastChanged +FD: net/minecraft/client/gui/components/toasts/RecipeToast/f_94807_ net/minecraft/client/gui/components/toasts/RecipeToast/changed +FD: net/minecraft/client/gui/components/toasts/SystemToast/f_169078_ net/minecraft/client/gui/components/toasts/SystemToast/MAX_LINE_SIZE +FD: net/minecraft/client/gui/components/toasts/SystemToast/f_243015_ net/minecraft/client/gui/components/toasts/SystemToast/LINE_SPACING +FD: net/minecraft/client/gui/components/toasts/SystemToast/f_243021_ net/minecraft/client/gui/components/toasts/SystemToast/MARGIN +FD: net/minecraft/client/gui/components/toasts/SystemToast/f_94820_ net/minecraft/client/gui/components/toasts/SystemToast/id +FD: net/minecraft/client/gui/components/toasts/SystemToast/f_94821_ net/minecraft/client/gui/components/toasts/SystemToast/title +FD: net/minecraft/client/gui/components/toasts/SystemToast/f_94822_ net/minecraft/client/gui/components/toasts/SystemToast/messageLines +FD: net/minecraft/client/gui/components/toasts/SystemToast/f_94823_ net/minecraft/client/gui/components/toasts/SystemToast/lastChanged +FD: net/minecraft/client/gui/components/toasts/SystemToast/f_94824_ net/minecraft/client/gui/components/toasts/SystemToast/changed +FD: net/minecraft/client/gui/components/toasts/SystemToast/f_94825_ net/minecraft/client/gui/components/toasts/SystemToast/width +FD: net/minecraft/client/gui/components/toasts/SystemToast$SystemToastIds/$VALUES net/minecraft/client/gui/components/toasts/SystemToast$SystemToastIds/$VALUES +FD: net/minecraft/client/gui/components/toasts/SystemToast$SystemToastIds/NARRATOR_TOGGLE net/minecraft/client/gui/components/toasts/SystemToast$SystemToastIds/NARRATOR_TOGGLE +FD: net/minecraft/client/gui/components/toasts/SystemToast$SystemToastIds/PACK_COPY_FAILURE net/minecraft/client/gui/components/toasts/SystemToast$SystemToastIds/PACK_COPY_FAILURE +FD: net/minecraft/client/gui/components/toasts/SystemToast$SystemToastIds/PACK_LOAD_FAILURE net/minecraft/client/gui/components/toasts/SystemToast$SystemToastIds/PACK_LOAD_FAILURE +FD: net/minecraft/client/gui/components/toasts/SystemToast$SystemToastIds/PERIODIC_NOTIFICATION net/minecraft/client/gui/components/toasts/SystemToast$SystemToastIds/PERIODIC_NOTIFICATION +FD: net/minecraft/client/gui/components/toasts/SystemToast$SystemToastIds/TUTORIAL_HINT net/minecraft/client/gui/components/toasts/SystemToast$SystemToastIds/TUTORIAL_HINT +FD: net/minecraft/client/gui/components/toasts/SystemToast$SystemToastIds/UNSECURE_SERVER_WARNING net/minecraft/client/gui/components/toasts/SystemToast$SystemToastIds/UNSECURE_SERVER_WARNING +FD: net/minecraft/client/gui/components/toasts/SystemToast$SystemToastIds/WORLD_ACCESS_FAILURE net/minecraft/client/gui/components/toasts/SystemToast$SystemToastIds/WORLD_ACCESS_FAILURE +FD: net/minecraft/client/gui/components/toasts/SystemToast$SystemToastIds/WORLD_BACKUP net/minecraft/client/gui/components/toasts/SystemToast$SystemToastIds/WORLD_BACKUP +FD: net/minecraft/client/gui/components/toasts/SystemToast$SystemToastIds/f_232547_ net/minecraft/client/gui/components/toasts/SystemToast$SystemToastIds/displayTime +FD: net/minecraft/client/gui/components/toasts/Toast/f_243003_ net/minecraft/client/gui/components/toasts/Toast/SLOT_HEIGHT +FD: net/minecraft/client/gui/components/toasts/Toast/f_94893_ net/minecraft/client/gui/components/toasts/Toast/TEXTURE +FD: net/minecraft/client/gui/components/toasts/Toast/f_94894_ net/minecraft/client/gui/components/toasts/Toast/NO_TOKEN +FD: net/minecraft/client/gui/components/toasts/Toast$Visibility/$VALUES net/minecraft/client/gui/components/toasts/Toast$Visibility/$VALUES +FD: net/minecraft/client/gui/components/toasts/Toast$Visibility/HIDE net/minecraft/client/gui/components/toasts/Toast$Visibility/HIDE +FD: net/minecraft/client/gui/components/toasts/Toast$Visibility/SHOW net/minecraft/client/gui/components/toasts/Toast$Visibility/SHOW +FD: net/minecraft/client/gui/components/toasts/Toast$Visibility/f_94902_ net/minecraft/client/gui/components/toasts/Toast$Visibility/soundEvent +FD: net/minecraft/client/gui/components/toasts/ToastComponent/f_242998_ net/minecraft/client/gui/components/toasts/ToastComponent/occupiedSlots +FD: net/minecraft/client/gui/components/toasts/ToastComponent/f_243005_ net/minecraft/client/gui/components/toasts/ToastComponent/SLOT_COUNT +FD: net/minecraft/client/gui/components/toasts/ToastComponent/f_243024_ net/minecraft/client/gui/components/toasts/ToastComponent/NO_SPACE +FD: net/minecraft/client/gui/components/toasts/ToastComponent/f_94914_ net/minecraft/client/gui/components/toasts/ToastComponent/minecraft +FD: net/minecraft/client/gui/components/toasts/ToastComponent/f_94915_ net/minecraft/client/gui/components/toasts/ToastComponent/visible +FD: net/minecraft/client/gui/components/toasts/ToastComponent/f_94916_ net/minecraft/client/gui/components/toasts/ToastComponent/queued +FD: net/minecraft/client/gui/components/toasts/ToastComponent$ToastInstance/f_169082_ net/minecraft/client/gui/components/toasts/ToastComponent$ToastInstance/ANIMATION_TIME +FD: net/minecraft/client/gui/components/toasts/ToastComponent$ToastInstance/f_242993_ net/minecraft/client/gui/components/toasts/ToastComponent$ToastInstance/index +FD: net/minecraft/client/gui/components/toasts/ToastComponent$ToastInstance/f_243000_ net/minecraft/client/gui/components/toasts/ToastComponent$ToastInstance/slotCount +FD: net/minecraft/client/gui/components/toasts/ToastComponent$ToastInstance/f_94930_ net/minecraft/client/gui/components/toasts/ToastComponent$ToastInstance/this$0 +FD: net/minecraft/client/gui/components/toasts/ToastComponent$ToastInstance/f_94931_ net/minecraft/client/gui/components/toasts/ToastComponent$ToastInstance/toast +FD: net/minecraft/client/gui/components/toasts/ToastComponent$ToastInstance/f_94932_ net/minecraft/client/gui/components/toasts/ToastComponent$ToastInstance/animationTime +FD: net/minecraft/client/gui/components/toasts/ToastComponent$ToastInstance/f_94933_ net/minecraft/client/gui/components/toasts/ToastComponent$ToastInstance/visibleTime +FD: net/minecraft/client/gui/components/toasts/ToastComponent$ToastInstance/f_94934_ net/minecraft/client/gui/components/toasts/ToastComponent$ToastInstance/visibility +FD: net/minecraft/client/gui/components/toasts/TutorialToast/f_169083_ net/minecraft/client/gui/components/toasts/TutorialToast/PROGRESS_BAR_WIDTH +FD: net/minecraft/client/gui/components/toasts/TutorialToast/f_169084_ net/minecraft/client/gui/components/toasts/TutorialToast/PROGRESS_BAR_HEIGHT +FD: net/minecraft/client/gui/components/toasts/TutorialToast/f_169085_ net/minecraft/client/gui/components/toasts/TutorialToast/PROGRESS_BAR_X +FD: net/minecraft/client/gui/components/toasts/TutorialToast/f_169086_ net/minecraft/client/gui/components/toasts/TutorialToast/PROGRESS_BAR_Y +FD: net/minecraft/client/gui/components/toasts/TutorialToast/f_94949_ net/minecraft/client/gui/components/toasts/TutorialToast/icon +FD: net/minecraft/client/gui/components/toasts/TutorialToast/f_94950_ net/minecraft/client/gui/components/toasts/TutorialToast/title +FD: net/minecraft/client/gui/components/toasts/TutorialToast/f_94951_ net/minecraft/client/gui/components/toasts/TutorialToast/message +FD: net/minecraft/client/gui/components/toasts/TutorialToast/f_94952_ net/minecraft/client/gui/components/toasts/TutorialToast/visibility +FD: net/minecraft/client/gui/components/toasts/TutorialToast/f_94953_ net/minecraft/client/gui/components/toasts/TutorialToast/lastProgressTime +FD: net/minecraft/client/gui/components/toasts/TutorialToast/f_94954_ net/minecraft/client/gui/components/toasts/TutorialToast/lastProgress +FD: net/minecraft/client/gui/components/toasts/TutorialToast/f_94955_ net/minecraft/client/gui/components/toasts/TutorialToast/progress +FD: net/minecraft/client/gui/components/toasts/TutorialToast/f_94956_ net/minecraft/client/gui/components/toasts/TutorialToast/progressable +FD: net/minecraft/client/gui/components/toasts/TutorialToast$Icons/$VALUES net/minecraft/client/gui/components/toasts/TutorialToast$Icons/$VALUES +FD: net/minecraft/client/gui/components/toasts/TutorialToast$Icons/MOUSE net/minecraft/client/gui/components/toasts/TutorialToast$Icons/MOUSE +FD: net/minecraft/client/gui/components/toasts/TutorialToast$Icons/MOVEMENT_KEYS net/minecraft/client/gui/components/toasts/TutorialToast$Icons/MOVEMENT_KEYS +FD: net/minecraft/client/gui/components/toasts/TutorialToast$Icons/RECIPE_BOOK net/minecraft/client/gui/components/toasts/TutorialToast$Icons/RECIPE_BOOK +FD: net/minecraft/client/gui/components/toasts/TutorialToast$Icons/RIGHT_CLICK net/minecraft/client/gui/components/toasts/TutorialToast$Icons/RIGHT_CLICK +FD: net/minecraft/client/gui/components/toasts/TutorialToast$Icons/SOCIAL_INTERACTIONS net/minecraft/client/gui/components/toasts/TutorialToast$Icons/SOCIAL_INTERACTIONS +FD: net/minecraft/client/gui/components/toasts/TutorialToast$Icons/TREE net/minecraft/client/gui/components/toasts/TutorialToast$Icons/TREE +FD: net/minecraft/client/gui/components/toasts/TutorialToast$Icons/WOODEN_PLANKS net/minecraft/client/gui/components/toasts/TutorialToast$Icons/WOODEN_PLANKS +FD: net/minecraft/client/gui/components/toasts/TutorialToast$Icons/f_94975_ net/minecraft/client/gui/components/toasts/TutorialToast$Icons/x +FD: net/minecraft/client/gui/components/toasts/TutorialToast$Icons/f_94976_ net/minecraft/client/gui/components/toasts/TutorialToast$Icons/y +FD: net/minecraft/client/gui/font/CodepointMap/f_283773_ net/minecraft/client/gui/font/CodepointMap/blockConstructor +FD: net/minecraft/client/gui/font/CodepointMap/f_283789_ net/minecraft/client/gui/font/CodepointMap/BLOCK_COUNT +FD: net/minecraft/client/gui/font/CodepointMap/f_283806_ net/minecraft/client/gui/font/CodepointMap/IN_BLOCK_MASK +FD: net/minecraft/client/gui/font/CodepointMap/f_283822_ net/minecraft/client/gui/font/CodepointMap/MAX_BLOCK +FD: net/minecraft/client/gui/font/CodepointMap/f_283858_ net/minecraft/client/gui/font/CodepointMap/BLOCK_BITS +FD: net/minecraft/client/gui/font/CodepointMap/f_283879_ net/minecraft/client/gui/font/CodepointMap/BLOCK_SIZE +FD: net/minecraft/client/gui/font/CodepointMap/f_283911_ net/minecraft/client/gui/font/CodepointMap/empty +FD: net/minecraft/client/gui/font/CodepointMap/f_283938_ net/minecraft/client/gui/font/CodepointMap/blockMap +FD: net/minecraft/client/gui/font/FontManager/f_169089_ net/minecraft/client/gui/font/FontManager/FONTS_PATH +FD: net/minecraft/client/gui/font/FontManager/f_244245_ net/minecraft/client/gui/font/FontManager/FONT_DEFINITIONS +FD: net/minecraft/client/gui/font/FontManager/f_283839_ net/minecraft/client/gui/font/FontManager/providersToClose +FD: net/minecraft/client/gui/font/FontManager/f_283881_ net/minecraft/client/gui/font/FontManager/GSON +FD: net/minecraft/client/gui/font/FontManager/f_94996_ net/minecraft/client/gui/font/FontManager/MISSING_FONT +FD: net/minecraft/client/gui/font/FontManager/f_94997_ net/minecraft/client/gui/font/FontManager/LOGGER +FD: net/minecraft/client/gui/font/FontManager/f_94998_ net/minecraft/client/gui/font/FontManager/missingFontSet +FD: net/minecraft/client/gui/font/FontManager/f_94999_ net/minecraft/client/gui/font/FontManager/fontSets +FD: net/minecraft/client/gui/font/FontManager/f_95000_ net/minecraft/client/gui/font/FontManager/textureManager +FD: net/minecraft/client/gui/font/FontManager/f_95001_ net/minecraft/client/gui/font/FontManager/renames +FD: net/minecraft/client/gui/font/FontManager$BuilderId/f_283782_ net/minecraft/client/gui/font/FontManager$BuilderId/fontId +FD: net/minecraft/client/gui/font/FontManager$BuilderId/f_283885_ net/minecraft/client/gui/font/FontManager$BuilderId/pack +FD: net/minecraft/client/gui/font/FontManager$BuilderId/f_283900_ net/minecraft/client/gui/font/FontManager$BuilderId/index +FD: net/minecraft/client/gui/font/FontManager$BuilderResult/f_283838_ net/minecraft/client/gui/font/FontManager$BuilderResult/id +FD: net/minecraft/client/gui/font/FontManager$BuilderResult/f_283894_ net/minecraft/client/gui/font/FontManager$BuilderResult/result +FD: net/minecraft/client/gui/font/FontManager$FontDefinitionFile/f_285562_ net/minecraft/client/gui/font/FontManager$FontDefinitionFile/CODEC +FD: net/minecraft/client/gui/font/FontManager$FontDefinitionFile/f_285612_ net/minecraft/client/gui/font/FontManager$FontDefinitionFile/providers +FD: net/minecraft/client/gui/font/FontManager$Preparation/f_283866_ net/minecraft/client/gui/font/FontManager$Preparation/allProviders +FD: net/minecraft/client/gui/font/FontManager$Preparation/f_283921_ net/minecraft/client/gui/font/FontManager$Preparation/providers +FD: net/minecraft/client/gui/font/FontManager$UnresolvedBuilderBundle/f_283760_ net/minecraft/client/gui/font/FontManager$UnresolvedBuilderBundle/fontId +FD: net/minecraft/client/gui/font/FontManager$UnresolvedBuilderBundle/f_283826_ net/minecraft/client/gui/font/FontManager$UnresolvedBuilderBundle/builders +FD: net/minecraft/client/gui/font/FontManager$UnresolvedBuilderBundle/f_283897_ net/minecraft/client/gui/font/FontManager$UnresolvedBuilderBundle/dependencies +FD: net/minecraft/client/gui/font/FontSet/f_242991_ net/minecraft/client/gui/font/FontSet/LARGE_FORWARD_ADVANCE +FD: net/minecraft/client/gui/font/FontSet/f_95050_ net/minecraft/client/gui/font/FontSet/RANDOM +FD: net/minecraft/client/gui/font/FontSet/f_95051_ net/minecraft/client/gui/font/FontSet/textureManager +FD: net/minecraft/client/gui/font/FontSet/f_95052_ net/minecraft/client/gui/font/FontSet/name +FD: net/minecraft/client/gui/font/FontSet/f_95053_ net/minecraft/client/gui/font/FontSet/missingGlyph +FD: net/minecraft/client/gui/font/FontSet/f_95054_ net/minecraft/client/gui/font/FontSet/whiteGlyph +FD: net/minecraft/client/gui/font/FontSet/f_95055_ net/minecraft/client/gui/font/FontSet/providers +FD: net/minecraft/client/gui/font/FontSet/f_95056_ net/minecraft/client/gui/font/FontSet/glyphs +FD: net/minecraft/client/gui/font/FontSet/f_95057_ net/minecraft/client/gui/font/FontSet/glyphInfos +FD: net/minecraft/client/gui/font/FontSet/f_95058_ net/minecraft/client/gui/font/FontSet/glyphsByWidth +FD: net/minecraft/client/gui/font/FontSet/f_95059_ net/minecraft/client/gui/font/FontSet/textures +FD: net/minecraft/client/gui/font/FontSet$GlyphInfoFilter/f_243006_ net/minecraft/client/gui/font/FontSet$GlyphInfoFilter/glyphInfoNotFishy +FD: net/minecraft/client/gui/font/FontSet$GlyphInfoFilter/f_243013_ net/minecraft/client/gui/font/FontSet$GlyphInfoFilter/glyphInfo +FD: net/minecraft/client/gui/font/FontSet$GlyphInfoFilter/f_243023_ net/minecraft/client/gui/font/FontSet$GlyphInfoFilter/MISSING +FD: net/minecraft/client/gui/font/FontTexture/f_169092_ net/minecraft/client/gui/font/FontTexture/SIZE +FD: net/minecraft/client/gui/font/FontTexture/f_283837_ net/minecraft/client/gui/font/FontTexture/renderTypes +FD: net/minecraft/client/gui/font/FontTexture/f_95094_ net/minecraft/client/gui/font/FontTexture/colored +FD: net/minecraft/client/gui/font/FontTexture/f_95095_ net/minecraft/client/gui/font/FontTexture/root +FD: net/minecraft/client/gui/font/FontTexture$Node/f_95105_ net/minecraft/client/gui/font/FontTexture$Node/x +FD: net/minecraft/client/gui/font/FontTexture$Node/f_95106_ net/minecraft/client/gui/font/FontTexture$Node/y +FD: net/minecraft/client/gui/font/FontTexture$Node/f_95107_ net/minecraft/client/gui/font/FontTexture$Node/width +FD: net/minecraft/client/gui/font/FontTexture$Node/f_95108_ net/minecraft/client/gui/font/FontTexture$Node/height +FD: net/minecraft/client/gui/font/FontTexture$Node/f_95109_ net/minecraft/client/gui/font/FontTexture$Node/left +FD: net/minecraft/client/gui/font/FontTexture$Node/f_95110_ net/minecraft/client/gui/font/FontTexture$Node/right +FD: net/minecraft/client/gui/font/FontTexture$Node/f_95111_ net/minecraft/client/gui/font/FontTexture$Node/occupied +FD: net/minecraft/client/gui/font/GlyphRenderTypes/f_283751_ net/minecraft/client/gui/font/GlyphRenderTypes/polygonOffset +FD: net/minecraft/client/gui/font/GlyphRenderTypes/f_283780_ net/minecraft/client/gui/font/GlyphRenderTypes/normal +FD: net/minecraft/client/gui/font/GlyphRenderTypes/f_283831_ net/minecraft/client/gui/font/GlyphRenderTypes/seeThrough +FD: net/minecraft/client/gui/font/GlyphRenderTypes$1/f_283946_ net/minecraft/client/gui/font/GlyphRenderTypes$1/$SwitchMap$net$minecraft$client$gui$Font$DisplayMode +FD: net/minecraft/client/gui/font/TextFieldHelper/f_95129_ net/minecraft/client/gui/font/TextFieldHelper/getMessageFn +FD: net/minecraft/client/gui/font/TextFieldHelper/f_95130_ net/minecraft/client/gui/font/TextFieldHelper/setMessageFn +FD: net/minecraft/client/gui/font/TextFieldHelper/f_95131_ net/minecraft/client/gui/font/TextFieldHelper/getClipboardFn +FD: net/minecraft/client/gui/font/TextFieldHelper/f_95132_ net/minecraft/client/gui/font/TextFieldHelper/setClipboardFn +FD: net/minecraft/client/gui/font/TextFieldHelper/f_95133_ net/minecraft/client/gui/font/TextFieldHelper/stringValidator +FD: net/minecraft/client/gui/font/TextFieldHelper/f_95134_ net/minecraft/client/gui/font/TextFieldHelper/cursorPos +FD: net/minecraft/client/gui/font/TextFieldHelper/f_95135_ net/minecraft/client/gui/font/TextFieldHelper/selectionPos +FD: net/minecraft/client/gui/font/TextFieldHelper$1/f_232581_ net/minecraft/client/gui/font/TextFieldHelper$1/$SwitchMap$net$minecraft$client$gui$font$TextFieldHelper$CursorStep +FD: net/minecraft/client/gui/font/TextFieldHelper$CursorStep/$VALUES net/minecraft/client/gui/font/TextFieldHelper$CursorStep/$VALUES +FD: net/minecraft/client/gui/font/TextFieldHelper$CursorStep/CHARACTER net/minecraft/client/gui/font/TextFieldHelper$CursorStep/CHARACTER +FD: net/minecraft/client/gui/font/TextFieldHelper$CursorStep/WORD net/minecraft/client/gui/font/TextFieldHelper$CursorStep/WORD +FD: net/minecraft/client/gui/font/glyphs/BakedGlyph/f_283799_ net/minecraft/client/gui/font/glyphs/BakedGlyph/renderTypes +FD: net/minecraft/client/gui/font/glyphs/BakedGlyph/f_95201_ net/minecraft/client/gui/font/glyphs/BakedGlyph/u0 +FD: net/minecraft/client/gui/font/glyphs/BakedGlyph/f_95202_ net/minecraft/client/gui/font/glyphs/BakedGlyph/u1 +FD: net/minecraft/client/gui/font/glyphs/BakedGlyph/f_95203_ net/minecraft/client/gui/font/glyphs/BakedGlyph/v0 +FD: net/minecraft/client/gui/font/glyphs/BakedGlyph/f_95204_ net/minecraft/client/gui/font/glyphs/BakedGlyph/v1 +FD: net/minecraft/client/gui/font/glyphs/BakedGlyph/f_95205_ net/minecraft/client/gui/font/glyphs/BakedGlyph/left +FD: net/minecraft/client/gui/font/glyphs/BakedGlyph/f_95206_ net/minecraft/client/gui/font/glyphs/BakedGlyph/right +FD: net/minecraft/client/gui/font/glyphs/BakedGlyph/f_95207_ net/minecraft/client/gui/font/glyphs/BakedGlyph/up +FD: net/minecraft/client/gui/font/glyphs/BakedGlyph/f_95208_ net/minecraft/client/gui/font/glyphs/BakedGlyph/down +FD: net/minecraft/client/gui/font/glyphs/BakedGlyph$Effect/f_95237_ net/minecraft/client/gui/font/glyphs/BakedGlyph$Effect/x0 +FD: net/minecraft/client/gui/font/glyphs/BakedGlyph$Effect/f_95238_ net/minecraft/client/gui/font/glyphs/BakedGlyph$Effect/y0 +FD: net/minecraft/client/gui/font/glyphs/BakedGlyph$Effect/f_95239_ net/minecraft/client/gui/font/glyphs/BakedGlyph$Effect/x1 +FD: net/minecraft/client/gui/font/glyphs/BakedGlyph$Effect/f_95240_ net/minecraft/client/gui/font/glyphs/BakedGlyph$Effect/y1 +FD: net/minecraft/client/gui/font/glyphs/BakedGlyph$Effect/f_95241_ net/minecraft/client/gui/font/glyphs/BakedGlyph$Effect/depth +FD: net/minecraft/client/gui/font/glyphs/BakedGlyph$Effect/f_95242_ net/minecraft/client/gui/font/glyphs/BakedGlyph$Effect/r +FD: net/minecraft/client/gui/font/glyphs/BakedGlyph$Effect/f_95243_ net/minecraft/client/gui/font/glyphs/BakedGlyph$Effect/g +FD: net/minecraft/client/gui/font/glyphs/BakedGlyph$Effect/f_95244_ net/minecraft/client/gui/font/glyphs/BakedGlyph$Effect/b +FD: net/minecraft/client/gui/font/glyphs/BakedGlyph$Effect/f_95245_ net/minecraft/client/gui/font/glyphs/BakedGlyph$Effect/a +FD: net/minecraft/client/gui/font/glyphs/EmptyGlyph/f_232594_ net/minecraft/client/gui/font/glyphs/EmptyGlyph/INSTANCE +FD: net/minecraft/client/gui/font/glyphs/SpecialGlyphs/$VALUES net/minecraft/client/gui/font/glyphs/SpecialGlyphs/$VALUES +FD: net/minecraft/client/gui/font/glyphs/SpecialGlyphs/MISSING net/minecraft/client/gui/font/glyphs/SpecialGlyphs/MISSING +FD: net/minecraft/client/gui/font/glyphs/SpecialGlyphs/WHITE net/minecraft/client/gui/font/glyphs/SpecialGlyphs/WHITE +FD: net/minecraft/client/gui/font/glyphs/SpecialGlyphs/f_232598_ net/minecraft/client/gui/font/glyphs/SpecialGlyphs/image +FD: net/minecraft/client/gui/font/glyphs/SpecialGlyphs$1/f_232624_ net/minecraft/client/gui/font/glyphs/SpecialGlyphs$1/this$0 +FD: net/minecraft/client/gui/font/providers/BitmapProvider/f_95328_ net/minecraft/client/gui/font/providers/BitmapProvider/LOGGER +FD: net/minecraft/client/gui/font/providers/BitmapProvider/f_95329_ net/minecraft/client/gui/font/providers/BitmapProvider/image +FD: net/minecraft/client/gui/font/providers/BitmapProvider/f_95330_ net/minecraft/client/gui/font/providers/BitmapProvider/glyphs +FD: net/minecraft/client/gui/font/providers/BitmapProvider$Definition/f_285577_ net/minecraft/client/gui/font/providers/BitmapProvider$Definition/ascent +FD: net/minecraft/client/gui/font/providers/BitmapProvider$Definition/f_285599_ net/minecraft/client/gui/font/providers/BitmapProvider$Definition/CODEPOINT_GRID_CODEC +FD: net/minecraft/client/gui/font/providers/BitmapProvider$Definition/f_285606_ net/minecraft/client/gui/font/providers/BitmapProvider$Definition/CODEC +FD: net/minecraft/client/gui/font/providers/BitmapProvider$Definition/f_285611_ net/minecraft/client/gui/font/providers/BitmapProvider$Definition/codepointGrid +FD: net/minecraft/client/gui/font/providers/BitmapProvider$Definition/f_285631_ net/minecraft/client/gui/font/providers/BitmapProvider$Definition/file +FD: net/minecraft/client/gui/font/providers/BitmapProvider$Definition/f_285660_ net/minecraft/client/gui/font/providers/BitmapProvider$Definition/height +FD: net/minecraft/client/gui/font/providers/BitmapProvider$Glyph/f_95363_ net/minecraft/client/gui/font/providers/BitmapProvider$Glyph/scale +FD: net/minecraft/client/gui/font/providers/BitmapProvider$Glyph/f_95364_ net/minecraft/client/gui/font/providers/BitmapProvider$Glyph/image +FD: net/minecraft/client/gui/font/providers/BitmapProvider$Glyph/f_95365_ net/minecraft/client/gui/font/providers/BitmapProvider$Glyph/offsetX +FD: net/minecraft/client/gui/font/providers/BitmapProvider$Glyph/f_95366_ net/minecraft/client/gui/font/providers/BitmapProvider$Glyph/offsetY +FD: net/minecraft/client/gui/font/providers/BitmapProvider$Glyph/f_95367_ net/minecraft/client/gui/font/providers/BitmapProvider$Glyph/width +FD: net/minecraft/client/gui/font/providers/BitmapProvider$Glyph/f_95368_ net/minecraft/client/gui/font/providers/BitmapProvider$Glyph/height +FD: net/minecraft/client/gui/font/providers/BitmapProvider$Glyph/f_95369_ net/minecraft/client/gui/font/providers/BitmapProvider$Glyph/advance +FD: net/minecraft/client/gui/font/providers/BitmapProvider$Glyph/f_95370_ net/minecraft/client/gui/font/providers/BitmapProvider$Glyph/ascent +FD: net/minecraft/client/gui/font/providers/BitmapProvider$Glyph$1/f_232653_ net/minecraft/client/gui/font/providers/BitmapProvider$Glyph$1/this$0 +FD: net/minecraft/client/gui/font/providers/GlyphProviderDefinition/f_285650_ net/minecraft/client/gui/font/providers/GlyphProviderDefinition/CODEC +FD: net/minecraft/client/gui/font/providers/GlyphProviderDefinition$Reference/f_285563_ net/minecraft/client/gui/font/providers/GlyphProviderDefinition$Reference/id +FD: net/minecraft/client/gui/font/providers/GlyphProviderType/$VALUES net/minecraft/client/gui/font/providers/GlyphProviderType/$VALUES +FD: net/minecraft/client/gui/font/providers/GlyphProviderType/BITMAP net/minecraft/client/gui/font/providers/GlyphProviderType/BITMAP +FD: net/minecraft/client/gui/font/providers/GlyphProviderType/REFERENCE net/minecraft/client/gui/font/providers/GlyphProviderType/REFERENCE +FD: net/minecraft/client/gui/font/providers/GlyphProviderType/SPACE net/minecraft/client/gui/font/providers/GlyphProviderType/SPACE +FD: net/minecraft/client/gui/font/providers/GlyphProviderType/TTF net/minecraft/client/gui/font/providers/GlyphProviderType/TTF +FD: net/minecraft/client/gui/font/providers/GlyphProviderType/UNIHEX net/minecraft/client/gui/font/providers/GlyphProviderType/UNIHEX +FD: net/minecraft/client/gui/font/providers/GlyphProviderType/f_285583_ net/minecraft/client/gui/font/providers/GlyphProviderType/codec +FD: net/minecraft/client/gui/font/providers/GlyphProviderType/f_285607_ net/minecraft/client/gui/font/providers/GlyphProviderType/CODEC +FD: net/minecraft/client/gui/font/providers/GlyphProviderType/f_285630_ net/minecraft/client/gui/font/providers/GlyphProviderType/name +FD: net/minecraft/client/gui/font/providers/ProviderReferenceDefinition/f_285571_ net/minecraft/client/gui/font/providers/ProviderReferenceDefinition/id +FD: net/minecraft/client/gui/font/providers/ProviderReferenceDefinition/f_285617_ net/minecraft/client/gui/font/providers/ProviderReferenceDefinition/CODEC +FD: net/minecraft/client/gui/font/providers/TrueTypeGlyphProviderDefinition/f_285564_ net/minecraft/client/gui/font/providers/TrueTypeGlyphProviderDefinition/location +FD: net/minecraft/client/gui/font/providers/TrueTypeGlyphProviderDefinition/f_285576_ net/minecraft/client/gui/font/providers/TrueTypeGlyphProviderDefinition/oversample +FD: net/minecraft/client/gui/font/providers/TrueTypeGlyphProviderDefinition/f_285584_ net/minecraft/client/gui/font/providers/TrueTypeGlyphProviderDefinition/shift +FD: net/minecraft/client/gui/font/providers/TrueTypeGlyphProviderDefinition/f_285590_ net/minecraft/client/gui/font/providers/TrueTypeGlyphProviderDefinition/size +FD: net/minecraft/client/gui/font/providers/TrueTypeGlyphProviderDefinition/f_285645_ net/minecraft/client/gui/font/providers/TrueTypeGlyphProviderDefinition/CODEC +FD: net/minecraft/client/gui/font/providers/TrueTypeGlyphProviderDefinition/f_285652_ net/minecraft/client/gui/font/providers/TrueTypeGlyphProviderDefinition/SKIP_LIST_CODEC +FD: net/minecraft/client/gui/font/providers/TrueTypeGlyphProviderDefinition/f_285657_ net/minecraft/client/gui/font/providers/TrueTypeGlyphProviderDefinition/skip +FD: net/minecraft/client/gui/font/providers/TrueTypeGlyphProviderDefinition$Shift/f_285596_ net/minecraft/client/gui/font/providers/TrueTypeGlyphProviderDefinition$Shift/x +FD: net/minecraft/client/gui/font/providers/TrueTypeGlyphProviderDefinition$Shift/f_285597_ net/minecraft/client/gui/font/providers/TrueTypeGlyphProviderDefinition$Shift/y +FD: net/minecraft/client/gui/font/providers/TrueTypeGlyphProviderDefinition$Shift/f_285613_ net/minecraft/client/gui/font/providers/TrueTypeGlyphProviderDefinition$Shift/NONE +FD: net/minecraft/client/gui/font/providers/TrueTypeGlyphProviderDefinition$Shift/f_285647_ net/minecraft/client/gui/font/providers/TrueTypeGlyphProviderDefinition$Shift/CODEC +FD: net/minecraft/client/gui/font/providers/UnihexProvider/f_283764_ net/minecraft/client/gui/font/providers/UnihexProvider/LOGGER +FD: net/minecraft/client/gui/font/providers/UnihexProvider/f_283800_ net/minecraft/client/gui/font/providers/UnihexProvider/DIGITS_FOR_WIDTH_24 +FD: net/minecraft/client/gui/font/providers/UnihexProvider/f_283802_ net/minecraft/client/gui/font/providers/UnihexProvider/DIGITS_PER_BYTE +FD: net/minecraft/client/gui/font/providers/UnihexProvider/f_283803_ net/minecraft/client/gui/font/providers/UnihexProvider/DIGITS_FOR_WIDTH_8 +FD: net/minecraft/client/gui/font/providers/UnihexProvider/f_283867_ net/minecraft/client/gui/font/providers/UnihexProvider/DIGITS_FOR_WIDTH_32 +FD: net/minecraft/client/gui/font/providers/UnihexProvider/f_283901_ net/minecraft/client/gui/font/providers/UnihexProvider/glyphs +FD: net/minecraft/client/gui/font/providers/UnihexProvider/f_283929_ net/minecraft/client/gui/font/providers/UnihexProvider/DIGITS_FOR_WIDTH_16 +FD: net/minecraft/client/gui/font/providers/UnihexProvider/f_283936_ net/minecraft/client/gui/font/providers/UnihexProvider/GLYPH_HEIGHT +FD: net/minecraft/client/gui/font/providers/UnihexProvider$ByteContents/f_283836_ net/minecraft/client/gui/font/providers/UnihexProvider$ByteContents/contents +FD: net/minecraft/client/gui/font/providers/UnihexProvider$Definition/f_285560_ net/minecraft/client/gui/font/providers/UnihexProvider$Definition/hexFile +FD: net/minecraft/client/gui/font/providers/UnihexProvider$Definition/f_285591_ net/minecraft/client/gui/font/providers/UnihexProvider$Definition/CODEC +FD: net/minecraft/client/gui/font/providers/UnihexProvider$Definition/f_285626_ net/minecraft/client/gui/font/providers/UnihexProvider$Definition/sizeOverrides +FD: net/minecraft/client/gui/font/providers/UnihexProvider$Dimensions/f_283768_ net/minecraft/client/gui/font/providers/UnihexProvider$Dimensions/left +FD: net/minecraft/client/gui/font/providers/UnihexProvider$Dimensions/f_283776_ net/minecraft/client/gui/font/providers/UnihexProvider$Dimensions/right +FD: net/minecraft/client/gui/font/providers/UnihexProvider$Dimensions/f_283777_ net/minecraft/client/gui/font/providers/UnihexProvider$Dimensions/MAP_CODEC +FD: net/minecraft/client/gui/font/providers/UnihexProvider$Dimensions/f_283924_ net/minecraft/client/gui/font/providers/UnihexProvider$Dimensions/CODEC +FD: net/minecraft/client/gui/font/providers/UnihexProvider$Glyph/f_283848_ net/minecraft/client/gui/font/providers/UnihexProvider$Glyph/right +FD: net/minecraft/client/gui/font/providers/UnihexProvider$Glyph/f_283857_ net/minecraft/client/gui/font/providers/UnihexProvider$Glyph/contents +FD: net/minecraft/client/gui/font/providers/UnihexProvider$Glyph/f_283887_ net/minecraft/client/gui/font/providers/UnihexProvider$Glyph/left +FD: net/minecraft/client/gui/font/providers/UnihexProvider$Glyph$1/f_283899_ net/minecraft/client/gui/font/providers/UnihexProvider$Glyph$1/this$0 +FD: net/minecraft/client/gui/font/providers/UnihexProvider$IntContents/f_283738_ net/minecraft/client/gui/font/providers/UnihexProvider$IntContents/contents +FD: net/minecraft/client/gui/font/providers/UnihexProvider$IntContents/f_283787_ net/minecraft/client/gui/font/providers/UnihexProvider$IntContents/bitWidth +FD: net/minecraft/client/gui/font/providers/UnihexProvider$IntContents/f_283925_ net/minecraft/client/gui/font/providers/UnihexProvider$IntContents/SIZE_24 +FD: net/minecraft/client/gui/font/providers/UnihexProvider$OverrideRange/f_283797_ net/minecraft/client/gui/font/providers/UnihexProvider$OverrideRange/from +FD: net/minecraft/client/gui/font/providers/UnihexProvider$OverrideRange/f_283834_ net/minecraft/client/gui/font/providers/UnihexProvider$OverrideRange/RAW_CODEC +FD: net/minecraft/client/gui/font/providers/UnihexProvider$OverrideRange/f_283851_ net/minecraft/client/gui/font/providers/UnihexProvider$OverrideRange/to +FD: net/minecraft/client/gui/font/providers/UnihexProvider$OverrideRange/f_283891_ net/minecraft/client/gui/font/providers/UnihexProvider$OverrideRange/dimensions +FD: net/minecraft/client/gui/font/providers/UnihexProvider$OverrideRange/f_283923_ net/minecraft/client/gui/font/providers/UnihexProvider$OverrideRange/CODEC +FD: net/minecraft/client/gui/font/providers/UnihexProvider$ShortContents/f_283874_ net/minecraft/client/gui/font/providers/UnihexProvider$ShortContents/contents +FD: net/minecraft/client/gui/layouts/AbstractLayout/f_263674_ net/minecraft/client/gui/layouts/AbstractLayout/width +FD: net/minecraft/client/gui/layouts/AbstractLayout/f_263818_ net/minecraft/client/gui/layouts/AbstractLayout/height +FD: net/minecraft/client/gui/layouts/AbstractLayout/f_263829_ net/minecraft/client/gui/layouts/AbstractLayout/x +FD: net/minecraft/client/gui/layouts/AbstractLayout/f_263844_ net/minecraft/client/gui/layouts/AbstractLayout/y +FD: net/minecraft/client/gui/layouts/AbstractLayout$AbstractChildWrapper/f_263678_ net/minecraft/client/gui/layouts/AbstractLayout$AbstractChildWrapper/layoutSettings +FD: net/minecraft/client/gui/layouts/AbstractLayout$AbstractChildWrapper/f_263728_ net/minecraft/client/gui/layouts/AbstractLayout$AbstractChildWrapper/child +FD: net/minecraft/client/gui/layouts/FrameLayout/f_263739_ net/minecraft/client/gui/layouts/FrameLayout/defaultChildLayoutSettings +FD: net/minecraft/client/gui/layouts/FrameLayout/f_263788_ net/minecraft/client/gui/layouts/FrameLayout/children +FD: net/minecraft/client/gui/layouts/FrameLayout/f_263810_ net/minecraft/client/gui/layouts/FrameLayout/minHeight +FD: net/minecraft/client/gui/layouts/FrameLayout/f_263834_ net/minecraft/client/gui/layouts/FrameLayout/minWidth +FD: net/minecraft/client/gui/layouts/GridLayout/f_263660_ net/minecraft/client/gui/layouts/GridLayout/cellInhabitants +FD: net/minecraft/client/gui/layouts/GridLayout/f_263670_ net/minecraft/client/gui/layouts/GridLayout/children +FD: net/minecraft/client/gui/layouts/GridLayout/f_263692_ net/minecraft/client/gui/layouts/GridLayout/defaultCellSettings +FD: net/minecraft/client/gui/layouts/GridLayout/f_267432_ net/minecraft/client/gui/layouts/GridLayout/rowSpacing +FD: net/minecraft/client/gui/layouts/GridLayout/f_267488_ net/minecraft/client/gui/layouts/GridLayout/columnSpacing +FD: net/minecraft/client/gui/layouts/GridLayout$CellInhabitant/f_263652_ net/minecraft/client/gui/layouts/GridLayout$CellInhabitant/row +FD: net/minecraft/client/gui/layouts/GridLayout$CellInhabitant/f_263773_ net/minecraft/client/gui/layouts/GridLayout$CellInhabitant/occupiedColumns +FD: net/minecraft/client/gui/layouts/GridLayout$CellInhabitant/f_263786_ net/minecraft/client/gui/layouts/GridLayout$CellInhabitant/occupiedRows +FD: net/minecraft/client/gui/layouts/GridLayout$CellInhabitant/f_263837_ net/minecraft/client/gui/layouts/GridLayout$CellInhabitant/column +FD: net/minecraft/client/gui/layouts/GridLayout$RowHelper/f_263661_ net/minecraft/client/gui/layouts/GridLayout$RowHelper/index +FD: net/minecraft/client/gui/layouts/GridLayout$RowHelper/f_263722_ net/minecraft/client/gui/layouts/GridLayout$RowHelper/columns +FD: net/minecraft/client/gui/layouts/GridLayout$RowHelper/f_263754_ net/minecraft/client/gui/layouts/GridLayout$RowHelper/this$0 +FD: net/minecraft/client/gui/layouts/HeaderAndFooterLayout/f_268466_ net/minecraft/client/gui/layouts/HeaderAndFooterLayout/contentsFrame +FD: net/minecraft/client/gui/layouts/HeaderAndFooterLayout/f_268474_ net/minecraft/client/gui/layouts/HeaderAndFooterLayout/DEFAULT_HEADER_AND_FOOTER_HEIGHT +FD: net/minecraft/client/gui/layouts/HeaderAndFooterLayout/f_268509_ net/minecraft/client/gui/layouts/HeaderAndFooterLayout/headerHeight +FD: net/minecraft/client/gui/layouts/HeaderAndFooterLayout/f_268592_ net/minecraft/client/gui/layouts/HeaderAndFooterLayout/footerFrame +FD: net/minecraft/client/gui/layouts/HeaderAndFooterLayout/f_268680_ net/minecraft/client/gui/layouts/HeaderAndFooterLayout/footerHeight +FD: net/minecraft/client/gui/layouts/HeaderAndFooterLayout/f_268706_ net/minecraft/client/gui/layouts/HeaderAndFooterLayout/screen +FD: net/minecraft/client/gui/layouts/HeaderAndFooterLayout/f_268720_ net/minecraft/client/gui/layouts/HeaderAndFooterLayout/headerFrame +FD: net/minecraft/client/gui/layouts/HeaderAndFooterLayout/f_276136_ net/minecraft/client/gui/layouts/HeaderAndFooterLayout/DEFAULT_CONTENT_MARGIN_TOP +FD: net/minecraft/client/gui/layouts/LayoutSettings$LayoutSettingsImpl/f_263651_ net/minecraft/client/gui/layouts/LayoutSettings$LayoutSettingsImpl/paddingBottom +FD: net/minecraft/client/gui/layouts/LayoutSettings$LayoutSettingsImpl/f_263656_ net/minecraft/client/gui/layouts/LayoutSettings$LayoutSettingsImpl/paddingLeft +FD: net/minecraft/client/gui/layouts/LayoutSettings$LayoutSettingsImpl/f_263738_ net/minecraft/client/gui/layouts/LayoutSettings$LayoutSettingsImpl/paddingTop +FD: net/minecraft/client/gui/layouts/LayoutSettings$LayoutSettingsImpl/f_263758_ net/minecraft/client/gui/layouts/LayoutSettings$LayoutSettingsImpl/xAlignment +FD: net/minecraft/client/gui/layouts/LayoutSettings$LayoutSettingsImpl/f_263809_ net/minecraft/client/gui/layouts/LayoutSettings$LayoutSettingsImpl/yAlignment +FD: net/minecraft/client/gui/layouts/LayoutSettings$LayoutSettingsImpl/f_263822_ net/minecraft/client/gui/layouts/LayoutSettings$LayoutSettingsImpl/paddingRight +FD: net/minecraft/client/gui/layouts/LinearLayout/f_263650_ net/minecraft/client/gui/layouts/LinearLayout/orientation +FD: net/minecraft/client/gui/layouts/LinearLayout/f_263686_ net/minecraft/client/gui/layouts/LinearLayout/defaultChildLayoutSettings +FD: net/minecraft/client/gui/layouts/LinearLayout/f_263711_ net/minecraft/client/gui/layouts/LinearLayout/children +FD: net/minecraft/client/gui/layouts/LinearLayout$1/f_263841_ net/minecraft/client/gui/layouts/LinearLayout$1/$SwitchMap$net$minecraft$client$gui$layouts$LinearLayout$Orientation +FD: net/minecraft/client/gui/layouts/LinearLayout$Orientation/$VALUES net/minecraft/client/gui/layouts/LinearLayout$Orientation/$VALUES +FD: net/minecraft/client/gui/layouts/LinearLayout$Orientation/HORIZONTAL net/minecraft/client/gui/layouts/LinearLayout$Orientation/HORIZONTAL +FD: net/minecraft/client/gui/layouts/LinearLayout$Orientation/VERTICAL net/minecraft/client/gui/layouts/LinearLayout$Orientation/VERTICAL +FD: net/minecraft/client/gui/layouts/SpacerElement/f_263666_ net/minecraft/client/gui/layouts/SpacerElement/height +FD: net/minecraft/client/gui/layouts/SpacerElement/f_263668_ net/minecraft/client/gui/layouts/SpacerElement/x +FD: net/minecraft/client/gui/layouts/SpacerElement/f_263679_ net/minecraft/client/gui/layouts/SpacerElement/width +FD: net/minecraft/client/gui/layouts/SpacerElement/f_263726_ net/minecraft/client/gui/layouts/SpacerElement/y +FD: net/minecraft/client/gui/narration/NarratableEntry$NarrationPriority/$VALUES net/minecraft/client/gui/narration/NarratableEntry$NarrationPriority/$VALUES +FD: net/minecraft/client/gui/narration/NarratableEntry$NarrationPriority/FOCUSED net/minecraft/client/gui/narration/NarratableEntry$NarrationPriority/FOCUSED +FD: net/minecraft/client/gui/narration/NarratableEntry$NarrationPriority/HOVERED net/minecraft/client/gui/narration/NarratableEntry$NarrationPriority/HOVERED +FD: net/minecraft/client/gui/narration/NarratableEntry$NarrationPriority/NONE net/minecraft/client/gui/narration/NarratableEntry$NarrationPriority/NONE +FD: net/minecraft/client/gui/narration/NarratedElementType/$VALUES net/minecraft/client/gui/narration/NarratedElementType/$VALUES +FD: net/minecraft/client/gui/narration/NarratedElementType/HINT net/minecraft/client/gui/narration/NarratedElementType/HINT +FD: net/minecraft/client/gui/narration/NarratedElementType/POSITION net/minecraft/client/gui/narration/NarratedElementType/POSITION +FD: net/minecraft/client/gui/narration/NarratedElementType/TITLE net/minecraft/client/gui/narration/NarratedElementType/TITLE +FD: net/minecraft/client/gui/narration/NarratedElementType/USAGE net/minecraft/client/gui/narration/NarratedElementType/USAGE +FD: net/minecraft/client/gui/narration/NarrationThunk/f_169153_ net/minecraft/client/gui/narration/NarrationThunk/EMPTY +FD: net/minecraft/client/gui/narration/NarrationThunk/f_169154_ net/minecraft/client/gui/narration/NarrationThunk/contents +FD: net/minecraft/client/gui/narration/NarrationThunk/f_169155_ net/minecraft/client/gui/narration/NarrationThunk/converter +FD: net/minecraft/client/gui/narration/ScreenNarrationCollector/f_169181_ net/minecraft/client/gui/narration/ScreenNarrationCollector/generation +FD: net/minecraft/client/gui/narration/ScreenNarrationCollector/f_169182_ net/minecraft/client/gui/narration/ScreenNarrationCollector/entries +FD: net/minecraft/client/gui/narration/ScreenNarrationCollector$1/f_169197_ net/minecraft/client/gui/narration/ScreenNarrationCollector$1/val$result +FD: net/minecraft/client/gui/narration/ScreenNarrationCollector$1/f_169198_ net/minecraft/client/gui/narration/ScreenNarrationCollector$1/this$0 +FD: net/minecraft/client/gui/narration/ScreenNarrationCollector$1/f_169199_ net/minecraft/client/gui/narration/ScreenNarrationCollector$1/firstEntry +FD: net/minecraft/client/gui/narration/ScreenNarrationCollector$EntryKey/f_169207_ net/minecraft/client/gui/narration/ScreenNarrationCollector$EntryKey/type +FD: net/minecraft/client/gui/narration/ScreenNarrationCollector$EntryKey/f_169208_ net/minecraft/client/gui/narration/ScreenNarrationCollector$EntryKey/depth +FD: net/minecraft/client/gui/narration/ScreenNarrationCollector$NarrationEntry/f_169212_ net/minecraft/client/gui/narration/ScreenNarrationCollector$NarrationEntry/contents +FD: net/minecraft/client/gui/narration/ScreenNarrationCollector$NarrationEntry/f_169213_ net/minecraft/client/gui/narration/ScreenNarrationCollector$NarrationEntry/generation +FD: net/minecraft/client/gui/narration/ScreenNarrationCollector$NarrationEntry/f_169214_ net/minecraft/client/gui/narration/ScreenNarrationCollector$NarrationEntry/alreadyNarrated +FD: net/minecraft/client/gui/narration/ScreenNarrationCollector$Output/f_169219_ net/minecraft/client/gui/narration/ScreenNarrationCollector$Output/this$0 +FD: net/minecraft/client/gui/narration/ScreenNarrationCollector$Output/f_169220_ net/minecraft/client/gui/narration/ScreenNarrationCollector$Output/depth +FD: net/minecraft/client/gui/navigation/FocusNavigationEvent$ArrowNavigation/f_263812_ net/minecraft/client/gui/navigation/FocusNavigationEvent$ArrowNavigation/direction +FD: net/minecraft/client/gui/navigation/FocusNavigationEvent$TabNavigation/f_263782_ net/minecraft/client/gui/navigation/FocusNavigationEvent$TabNavigation/forward +FD: net/minecraft/client/gui/navigation/ScreenAxis/$VALUES net/minecraft/client/gui/navigation/ScreenAxis/$VALUES +FD: net/minecraft/client/gui/navigation/ScreenAxis/HORIZONTAL net/minecraft/client/gui/navigation/ScreenAxis/HORIZONTAL +FD: net/minecraft/client/gui/navigation/ScreenAxis/VERTICAL net/minecraft/client/gui/navigation/ScreenAxis/VERTICAL +FD: net/minecraft/client/gui/navigation/ScreenAxis$1/f_263669_ net/minecraft/client/gui/navigation/ScreenAxis$1/$SwitchMap$net$minecraft$client$gui$navigation$ScreenAxis +FD: net/minecraft/client/gui/navigation/ScreenDirection/$VALUES net/minecraft/client/gui/navigation/ScreenDirection/$VALUES +FD: net/minecraft/client/gui/navigation/ScreenDirection/DOWN net/minecraft/client/gui/navigation/ScreenDirection/DOWN +FD: net/minecraft/client/gui/navigation/ScreenDirection/LEFT net/minecraft/client/gui/navigation/ScreenDirection/LEFT +FD: net/minecraft/client/gui/navigation/ScreenDirection/RIGHT net/minecraft/client/gui/navigation/ScreenDirection/RIGHT +FD: net/minecraft/client/gui/navigation/ScreenDirection/UP net/minecraft/client/gui/navigation/ScreenDirection/UP +FD: net/minecraft/client/gui/navigation/ScreenDirection/f_263848_ net/minecraft/client/gui/navigation/ScreenDirection/coordinateValueComparator +FD: net/minecraft/client/gui/navigation/ScreenDirection$1/f_263734_ net/minecraft/client/gui/navigation/ScreenDirection$1/$SwitchMap$net$minecraft$client$gui$navigation$ScreenDirection +FD: net/minecraft/client/gui/navigation/ScreenPosition/f_263694_ net/minecraft/client/gui/navigation/ScreenPosition/y +FD: net/minecraft/client/gui/navigation/ScreenPosition/f_263719_ net/minecraft/client/gui/navigation/ScreenPosition/x +FD: net/minecraft/client/gui/navigation/ScreenPosition$1/f_263709_ net/minecraft/client/gui/navigation/ScreenPosition$1/$SwitchMap$net$minecraft$client$gui$navigation$ScreenAxis +FD: net/minecraft/client/gui/navigation/ScreenPosition$1/f_263713_ net/minecraft/client/gui/navigation/ScreenPosition$1/$SwitchMap$net$minecraft$client$gui$navigation$ScreenDirection +FD: net/minecraft/client/gui/navigation/ScreenRectangle/f_263720_ net/minecraft/client/gui/navigation/ScreenRectangle/EMPTY +FD: net/minecraft/client/gui/navigation/ScreenRectangle/f_263770_ net/minecraft/client/gui/navigation/ScreenRectangle/width +FD: net/minecraft/client/gui/navigation/ScreenRectangle/f_263800_ net/minecraft/client/gui/navigation/ScreenRectangle/height +FD: net/minecraft/client/gui/navigation/ScreenRectangle/f_263846_ net/minecraft/client/gui/navigation/ScreenRectangle/position +FD: net/minecraft/client/gui/navigation/ScreenRectangle$1/f_263804_ net/minecraft/client/gui/navigation/ScreenRectangle$1/$SwitchMap$net$minecraft$client$gui$navigation$ScreenAxis +FD: net/minecraft/client/gui/screens/AccessibilityOnboardingScreen/f_263677_ net/minecraft/client/gui/screens/AccessibilityOnboardingScreen/timer +FD: net/minecraft/client/gui/screens/AccessibilityOnboardingScreen/f_263729_ net/minecraft/client/gui/screens/AccessibilityOnboardingScreen/hasNarrated +FD: net/minecraft/client/gui/screens/AccessibilityOnboardingScreen/f_263756_ net/minecraft/client/gui/screens/AccessibilityOnboardingScreen/TITLE_PADDING +FD: net/minecraft/client/gui/screens/AccessibilityOnboardingScreen/f_263759_ net/minecraft/client/gui/screens/AccessibilityOnboardingScreen/textWidget +FD: net/minecraft/client/gui/screens/AccessibilityOnboardingScreen/f_263761_ net/minecraft/client/gui/screens/AccessibilityOnboardingScreen/logoRenderer +FD: net/minecraft/client/gui/screens/AccessibilityOnboardingScreen/f_263779_ net/minecraft/client/gui/screens/AccessibilityOnboardingScreen/PADDING +FD: net/minecraft/client/gui/screens/AccessibilityOnboardingScreen/f_263816_ net/minecraft/client/gui/screens/AccessibilityOnboardingScreen/options +FD: net/minecraft/client/gui/screens/AccessibilityOnboardingScreen/f_263845_ net/minecraft/client/gui/screens/AccessibilityOnboardingScreen/ONBOARDING_NARRATOR_MESSAGE +FD: net/minecraft/client/gui/screens/AccessibilityOnboardingScreen/f_263849_ net/minecraft/client/gui/screens/AccessibilityOnboardingScreen/panorama +FD: net/minecraft/client/gui/screens/AccessibilityOnboardingScreen/f_265927_ net/minecraft/client/gui/screens/AccessibilityOnboardingScreen/narratorAvailable +FD: net/minecraft/client/gui/screens/AlertScreen/f_238618_ net/minecraft/client/gui/screens/AlertScreen/messageText +FD: net/minecraft/client/gui/screens/AlertScreen/f_238636_ net/minecraft/client/gui/screens/AlertScreen/LABEL_Y +FD: net/minecraft/client/gui/screens/AlertScreen/f_238724_ net/minecraft/client/gui/screens/AlertScreen/shouldCloseOnEsc +FD: net/minecraft/client/gui/screens/AlertScreen/f_95514_ net/minecraft/client/gui/screens/AlertScreen/okButton +FD: net/minecraft/client/gui/screens/AlertScreen/f_95515_ net/minecraft/client/gui/screens/AlertScreen/callback +FD: net/minecraft/client/gui/screens/AlertScreen/f_95516_ net/minecraft/client/gui/screens/AlertScreen/message +FD: net/minecraft/client/gui/screens/BackupConfirmScreen/f_169233_ net/minecraft/client/gui/screens/BackupConfirmScreen/id +FD: net/minecraft/client/gui/screens/BackupConfirmScreen/f_95536_ net/minecraft/client/gui/screens/BackupConfirmScreen/listener +FD: net/minecraft/client/gui/screens/BackupConfirmScreen/f_95537_ net/minecraft/client/gui/screens/BackupConfirmScreen/lastScreen +FD: net/minecraft/client/gui/screens/BackupConfirmScreen/f_95538_ net/minecraft/client/gui/screens/BackupConfirmScreen/description +FD: net/minecraft/client/gui/screens/BackupConfirmScreen/f_95539_ net/minecraft/client/gui/screens/BackupConfirmScreen/promptForCacheErase +FD: net/minecraft/client/gui/screens/BackupConfirmScreen/f_95540_ net/minecraft/client/gui/screens/BackupConfirmScreen/message +FD: net/minecraft/client/gui/screens/BackupConfirmScreen/f_95541_ net/minecraft/client/gui/screens/BackupConfirmScreen/eraseCache +FD: net/minecraft/client/gui/screens/BanNoticeScreen/f_238586_ net/minecraft/client/gui/screens/BanNoticeScreen/TEMPORARY_BAN_TITLE +FD: net/minecraft/client/gui/screens/BanNoticeScreen/f_238702_ net/minecraft/client/gui/screens/BanNoticeScreen/PERMANENT_BAN_TITLE +FD: net/minecraft/client/gui/screens/ChatScreen/f_169234_ net/minecraft/client/gui/screens/ChatScreen/MOUSE_SCROLL_SPEED +FD: net/minecraft/client/gui/screens/ChatScreen/f_169235_ net/minecraft/client/gui/screens/ChatScreen/USAGE_TEXT +FD: net/minecraft/client/gui/screens/ChatScreen/f_240354_ net/minecraft/client/gui/screens/ChatScreen/TOOLTIP_MAX_WIDTH +FD: net/minecraft/client/gui/screens/ChatScreen/f_95573_ net/minecraft/client/gui/screens/ChatScreen/input +FD: net/minecraft/client/gui/screens/ChatScreen/f_95574_ net/minecraft/client/gui/screens/ChatScreen/historyBuffer +FD: net/minecraft/client/gui/screens/ChatScreen/f_95575_ net/minecraft/client/gui/screens/ChatScreen/historyPos +FD: net/minecraft/client/gui/screens/ChatScreen/f_95576_ net/minecraft/client/gui/screens/ChatScreen/initial +FD: net/minecraft/client/gui/screens/ChatScreen/f_95577_ net/minecraft/client/gui/screens/ChatScreen/commandSuggestions +FD: net/minecraft/client/gui/screens/ChatScreen$1/f_95616_ net/minecraft/client/gui/screens/ChatScreen$1/this$0 +FD: net/minecraft/client/gui/screens/ConfirmLinkScreen/f_169239_ net/minecraft/client/gui/screens/ConfirmLinkScreen/COPY_BUTTON_TEXT +FD: net/minecraft/client/gui/screens/ConfirmLinkScreen/f_169240_ net/minecraft/client/gui/screens/ConfirmLinkScreen/WARNING_TEXT +FD: net/minecraft/client/gui/screens/ConfirmLinkScreen/f_95628_ net/minecraft/client/gui/screens/ConfirmLinkScreen/url +FD: net/minecraft/client/gui/screens/ConfirmLinkScreen/f_95629_ net/minecraft/client/gui/screens/ConfirmLinkScreen/showWarning +FD: net/minecraft/client/gui/screens/ConfirmScreen/f_169251_ net/minecraft/client/gui/screens/ConfirmScreen/exitButtons +FD: net/minecraft/client/gui/screens/ConfirmScreen/f_238524_ net/minecraft/client/gui/screens/ConfirmScreen/MARGIN +FD: net/minecraft/client/gui/screens/ConfirmScreen/f_238703_ net/minecraft/client/gui/screens/ConfirmScreen/multilineMessage +FD: net/minecraft/client/gui/screens/ConfirmScreen/f_95647_ net/minecraft/client/gui/screens/ConfirmScreen/yesButton +FD: net/minecraft/client/gui/screens/ConfirmScreen/f_95648_ net/minecraft/client/gui/screens/ConfirmScreen/noButton +FD: net/minecraft/client/gui/screens/ConfirmScreen/f_95649_ net/minecraft/client/gui/screens/ConfirmScreen/callback +FD: net/minecraft/client/gui/screens/ConfirmScreen/f_95651_ net/minecraft/client/gui/screens/ConfirmScreen/message +FD: net/minecraft/client/gui/screens/ConfirmScreen/f_95652_ net/minecraft/client/gui/screens/ConfirmScreen/delayTicker +FD: net/minecraft/client/gui/screens/ConnectScreen/f_169260_ net/minecraft/client/gui/screens/ConnectScreen/UNKNOWN_HOST_MESSAGE +FD: net/minecraft/client/gui/screens/ConnectScreen/f_169261_ net/minecraft/client/gui/screens/ConnectScreen/NARRATION_DELAY_MS +FD: net/minecraft/client/gui/screens/ConnectScreen/f_278471_ net/minecraft/client/gui/screens/ConnectScreen/connectFailedTitle +FD: net/minecraft/client/gui/screens/ConnectScreen/f_290019_ net/minecraft/client/gui/screens/ConnectScreen/ABORT_CONNECTION +FD: net/minecraft/client/gui/screens/ConnectScreen/f_290020_ net/minecraft/client/gui/screens/ConnectScreen/channelFuture +FD: net/minecraft/client/gui/screens/ConnectScreen/f_95682_ net/minecraft/client/gui/screens/ConnectScreen/UNIQUE_THREAD_ID +FD: net/minecraft/client/gui/screens/ConnectScreen/f_95683_ net/minecraft/client/gui/screens/ConnectScreen/LOGGER +FD: net/minecraft/client/gui/screens/ConnectScreen/f_95684_ net/minecraft/client/gui/screens/ConnectScreen/connection +FD: net/minecraft/client/gui/screens/ConnectScreen/f_95685_ net/minecraft/client/gui/screens/ConnectScreen/aborted +FD: net/minecraft/client/gui/screens/ConnectScreen/f_95686_ net/minecraft/client/gui/screens/ConnectScreen/parent +FD: net/minecraft/client/gui/screens/ConnectScreen/f_95687_ net/minecraft/client/gui/screens/ConnectScreen/status +FD: net/minecraft/client/gui/screens/ConnectScreen/f_95688_ net/minecraft/client/gui/screens/ConnectScreen/lastNarration +FD: net/minecraft/client/gui/screens/ConnectScreen$1/f_169272_ net/minecraft/client/gui/screens/ConnectScreen$1/val$hostAndPort +FD: net/minecraft/client/gui/screens/ConnectScreen$1/f_169273_ net/minecraft/client/gui/screens/ConnectScreen$1/val$minecraft +FD: net/minecraft/client/gui/screens/ConnectScreen$1/f_244070_ net/minecraft/client/gui/screens/ConnectScreen$1/val$server +FD: net/minecraft/client/gui/screens/ConnectScreen$1/f_95729_ net/minecraft/client/gui/screens/ConnectScreen$1/this$0 +FD: net/minecraft/client/gui/screens/CreateBuffetWorldScreen/f_95742_ net/minecraft/client/gui/screens/CreateBuffetWorldScreen/BIOME_SELECT_INFO +FD: net/minecraft/client/gui/screens/CreateBuffetWorldScreen/f_95743_ net/minecraft/client/gui/screens/CreateBuffetWorldScreen/parent +FD: net/minecraft/client/gui/screens/CreateBuffetWorldScreen/f_95744_ net/minecraft/client/gui/screens/CreateBuffetWorldScreen/applySettings +FD: net/minecraft/client/gui/screens/CreateBuffetWorldScreen/f_95745_ net/minecraft/client/gui/screens/CreateBuffetWorldScreen/biomes +FD: net/minecraft/client/gui/screens/CreateBuffetWorldScreen/f_95746_ net/minecraft/client/gui/screens/CreateBuffetWorldScreen/list +FD: net/minecraft/client/gui/screens/CreateBuffetWorldScreen/f_95747_ net/minecraft/client/gui/screens/CreateBuffetWorldScreen/biome +FD: net/minecraft/client/gui/screens/CreateBuffetWorldScreen/f_95748_ net/minecraft/client/gui/screens/CreateBuffetWorldScreen/doneButton +FD: net/minecraft/client/gui/screens/CreateBuffetWorldScreen$BiomeList/f_95776_ net/minecraft/client/gui/screens/CreateBuffetWorldScreen$BiomeList/this$0 +FD: net/minecraft/client/gui/screens/CreateBuffetWorldScreen$BiomeList$Entry/f_95791_ net/minecraft/client/gui/screens/CreateBuffetWorldScreen$BiomeList$Entry/this$1 +FD: net/minecraft/client/gui/screens/CreateBuffetWorldScreen$BiomeList$Entry/f_95792_ net/minecraft/client/gui/screens/CreateBuffetWorldScreen$BiomeList$Entry/biome +FD: net/minecraft/client/gui/screens/CreateBuffetWorldScreen$BiomeList$Entry/f_95793_ net/minecraft/client/gui/screens/CreateBuffetWorldScreen$BiomeList$Entry/name +FD: net/minecraft/client/gui/screens/CreateFlatWorldScreen/f_169285_ net/minecraft/client/gui/screens/CreateFlatWorldScreen/SLOT_TEX_SIZE +FD: net/minecraft/client/gui/screens/CreateFlatWorldScreen/f_169286_ net/minecraft/client/gui/screens/CreateFlatWorldScreen/SLOT_BG_SIZE +FD: net/minecraft/client/gui/screens/CreateFlatWorldScreen/f_169287_ net/minecraft/client/gui/screens/CreateFlatWorldScreen/SLOT_STAT_HEIGHT +FD: net/minecraft/client/gui/screens/CreateFlatWorldScreen/f_169288_ net/minecraft/client/gui/screens/CreateFlatWorldScreen/SLOT_BG_X +FD: net/minecraft/client/gui/screens/CreateFlatWorldScreen/f_169289_ net/minecraft/client/gui/screens/CreateFlatWorldScreen/SLOT_BG_Y +FD: net/minecraft/client/gui/screens/CreateFlatWorldScreen/f_169290_ net/minecraft/client/gui/screens/CreateFlatWorldScreen/SLOT_FG_X +FD: net/minecraft/client/gui/screens/CreateFlatWorldScreen/f_169291_ net/minecraft/client/gui/screens/CreateFlatWorldScreen/SLOT_FG_Y +FD: net/minecraft/client/gui/screens/CreateFlatWorldScreen/f_95814_ net/minecraft/client/gui/screens/CreateFlatWorldScreen/parent +FD: net/minecraft/client/gui/screens/CreateFlatWorldScreen/f_95815_ net/minecraft/client/gui/screens/CreateFlatWorldScreen/applySettings +FD: net/minecraft/client/gui/screens/CreateFlatWorldScreen/f_95816_ net/minecraft/client/gui/screens/CreateFlatWorldScreen/generator +FD: net/minecraft/client/gui/screens/CreateFlatWorldScreen/f_95817_ net/minecraft/client/gui/screens/CreateFlatWorldScreen/columnType +FD: net/minecraft/client/gui/screens/CreateFlatWorldScreen/f_95818_ net/minecraft/client/gui/screens/CreateFlatWorldScreen/columnHeight +FD: net/minecraft/client/gui/screens/CreateFlatWorldScreen/f_95819_ net/minecraft/client/gui/screens/CreateFlatWorldScreen/list +FD: net/minecraft/client/gui/screens/CreateFlatWorldScreen/f_95820_ net/minecraft/client/gui/screens/CreateFlatWorldScreen/deleteLayerButton +FD: net/minecraft/client/gui/screens/CreateFlatWorldScreen$DetailsList/f_279578_ net/minecraft/client/gui/screens/CreateFlatWorldScreen$DetailsList/STATS_ICON_LOCATION +FD: net/minecraft/client/gui/screens/CreateFlatWorldScreen$DetailsList/f_95849_ net/minecraft/client/gui/screens/CreateFlatWorldScreen$DetailsList/this$0 +FD: net/minecraft/client/gui/screens/CreateFlatWorldScreen$DetailsList$Entry/f_95861_ net/minecraft/client/gui/screens/CreateFlatWorldScreen$DetailsList$Entry/this$1 +FD: net/minecraft/client/gui/screens/CreditsAndAttributionScreen/f_276138_ net/minecraft/client/gui/screens/CreditsAndAttributionScreen/CREDITS_BUTTON +FD: net/minecraft/client/gui/screens/CreditsAndAttributionScreen/f_276148_ net/minecraft/client/gui/screens/CreditsAndAttributionScreen/BUTTON_SPACING +FD: net/minecraft/client/gui/screens/CreditsAndAttributionScreen/f_276154_ net/minecraft/client/gui/screens/CreditsAndAttributionScreen/layout +FD: net/minecraft/client/gui/screens/CreditsAndAttributionScreen/f_276155_ net/minecraft/client/gui/screens/CreditsAndAttributionScreen/lastScreen +FD: net/minecraft/client/gui/screens/CreditsAndAttributionScreen/f_276161_ net/minecraft/client/gui/screens/CreditsAndAttributionScreen/LICENSES_BUTTON +FD: net/minecraft/client/gui/screens/CreditsAndAttributionScreen/f_276162_ net/minecraft/client/gui/screens/CreditsAndAttributionScreen/TITLE +FD: net/minecraft/client/gui/screens/CreditsAndAttributionScreen/f_276164_ net/minecraft/client/gui/screens/CreditsAndAttributionScreen/BUTTON_WIDTH +FD: net/minecraft/client/gui/screens/CreditsAndAttributionScreen/f_276166_ net/minecraft/client/gui/screens/CreditsAndAttributionScreen/ATTRIBUTION_BUTTON +FD: net/minecraft/client/gui/screens/DatapackLoadFailureScreen/f_95891_ net/minecraft/client/gui/screens/DatapackLoadFailureScreen/message +FD: net/minecraft/client/gui/screens/DatapackLoadFailureScreen/f_95892_ net/minecraft/client/gui/screens/DatapackLoadFailureScreen/callback +FD: net/minecraft/client/gui/screens/DeathScreen/f_169295_ net/minecraft/client/gui/screens/DeathScreen/exitButtons +FD: net/minecraft/client/gui/screens/DeathScreen/f_262755_ net/minecraft/client/gui/screens/DeathScreen/exitToTitleButton +FD: net/minecraft/client/gui/screens/DeathScreen/f_95906_ net/minecraft/client/gui/screens/DeathScreen/delayTicker +FD: net/minecraft/client/gui/screens/DeathScreen/f_95907_ net/minecraft/client/gui/screens/DeathScreen/causeOfDeath +FD: net/minecraft/client/gui/screens/DeathScreen/f_95908_ net/minecraft/client/gui/screens/DeathScreen/hardcore +FD: net/minecraft/client/gui/screens/DeathScreen/f_95909_ net/minecraft/client/gui/screens/DeathScreen/deathScore +FD: net/minecraft/client/gui/screens/DemoIntroScreen/f_95935_ net/minecraft/client/gui/screens/DemoIntroScreen/DEMO_BACKGROUND_LOCATION +FD: net/minecraft/client/gui/screens/DemoIntroScreen/f_95936_ net/minecraft/client/gui/screens/DemoIntroScreen/movementMessage +FD: net/minecraft/client/gui/screens/DemoIntroScreen/f_95937_ net/minecraft/client/gui/screens/DemoIntroScreen/durationMessage +FD: net/minecraft/client/gui/screens/DirectJoinServerScreen/f_95952_ net/minecraft/client/gui/screens/DirectJoinServerScreen/ENTER_IP_LABEL +FD: net/minecraft/client/gui/screens/DirectJoinServerScreen/f_95953_ net/minecraft/client/gui/screens/DirectJoinServerScreen/selectButton +FD: net/minecraft/client/gui/screens/DirectJoinServerScreen/f_95954_ net/minecraft/client/gui/screens/DirectJoinServerScreen/serverData +FD: net/minecraft/client/gui/screens/DirectJoinServerScreen/f_95955_ net/minecraft/client/gui/screens/DirectJoinServerScreen/ipEdit +FD: net/minecraft/client/gui/screens/DirectJoinServerScreen/f_95956_ net/minecraft/client/gui/screens/DirectJoinServerScreen/callback +FD: net/minecraft/client/gui/screens/DirectJoinServerScreen/f_95957_ net/minecraft/client/gui/screens/DirectJoinServerScreen/lastScreen +FD: net/minecraft/client/gui/screens/DisconnectedScreen/f_278396_ net/minecraft/client/gui/screens/DisconnectedScreen/buttonText +FD: net/minecraft/client/gui/screens/DisconnectedScreen/f_278455_ net/minecraft/client/gui/screens/DisconnectedScreen/layout +FD: net/minecraft/client/gui/screens/DisconnectedScreen/f_278465_ net/minecraft/client/gui/screens/DisconnectedScreen/TO_SERVER_LIST +FD: net/minecraft/client/gui/screens/DisconnectedScreen/f_278482_ net/minecraft/client/gui/screens/DisconnectedScreen/TO_TITLE +FD: net/minecraft/client/gui/screens/DisconnectedScreen/f_95988_ net/minecraft/client/gui/screens/DisconnectedScreen/reason +FD: net/minecraft/client/gui/screens/DisconnectedScreen/f_95990_ net/minecraft/client/gui/screens/DisconnectedScreen/parent +FD: net/minecraft/client/gui/screens/EditServerScreen/f_96005_ net/minecraft/client/gui/screens/EditServerScreen/NAME_LABEL +FD: net/minecraft/client/gui/screens/EditServerScreen/f_96006_ net/minecraft/client/gui/screens/EditServerScreen/IP_LABEL +FD: net/minecraft/client/gui/screens/EditServerScreen/f_96007_ net/minecraft/client/gui/screens/EditServerScreen/addButton +FD: net/minecraft/client/gui/screens/EditServerScreen/f_96008_ net/minecraft/client/gui/screens/EditServerScreen/callback +FD: net/minecraft/client/gui/screens/EditServerScreen/f_96009_ net/minecraft/client/gui/screens/EditServerScreen/serverData +FD: net/minecraft/client/gui/screens/EditServerScreen/f_96010_ net/minecraft/client/gui/screens/EditServerScreen/ipEdit +FD: net/minecraft/client/gui/screens/EditServerScreen/f_96011_ net/minecraft/client/gui/screens/EditServerScreen/nameEdit +FD: net/minecraft/client/gui/screens/EditServerScreen/f_96013_ net/minecraft/client/gui/screens/EditServerScreen/lastScreen +FD: net/minecraft/client/gui/screens/ErrorScreen/f_96047_ net/minecraft/client/gui/screens/ErrorScreen/message +FD: net/minecraft/client/gui/screens/FaviconTexture/f_289028_ net/minecraft/client/gui/screens/FaviconTexture/WIDTH +FD: net/minecraft/client/gui/screens/FaviconTexture/f_289029_ net/minecraft/client/gui/screens/FaviconTexture/closed +FD: net/minecraft/client/gui/screens/FaviconTexture/f_289034_ net/minecraft/client/gui/screens/FaviconTexture/textureManager +FD: net/minecraft/client/gui/screens/FaviconTexture/f_289036_ net/minecraft/client/gui/screens/FaviconTexture/MISSING_LOCATION +FD: net/minecraft/client/gui/screens/FaviconTexture/f_289037_ net/minecraft/client/gui/screens/FaviconTexture/textureLocation +FD: net/minecraft/client/gui/screens/FaviconTexture/f_289043_ net/minecraft/client/gui/screens/FaviconTexture/texture +FD: net/minecraft/client/gui/screens/FaviconTexture/f_289045_ net/minecraft/client/gui/screens/FaviconTexture/HEIGHT +FD: net/minecraft/client/gui/screens/GenericWaitingScreen/f_238521_ net/minecraft/client/gui/screens/GenericWaitingScreen/message +FD: net/minecraft/client/gui/screens/GenericWaitingScreen/f_238592_ net/minecraft/client/gui/screens/GenericWaitingScreen/MESSAGE_Y +FD: net/minecraft/client/gui/screens/GenericWaitingScreen/f_238731_ net/minecraft/client/gui/screens/GenericWaitingScreen/MESSAGE_MAX_WIDTH +FD: net/minecraft/client/gui/screens/GenericWaitingScreen/f_238734_ net/minecraft/client/gui/screens/GenericWaitingScreen/buttonCallback +FD: net/minecraft/client/gui/screens/GenericWaitingScreen/f_238767_ net/minecraft/client/gui/screens/GenericWaitingScreen/button +FD: net/minecraft/client/gui/screens/GenericWaitingScreen/f_238770_ net/minecraft/client/gui/screens/GenericWaitingScreen/buttonLabel +FD: net/minecraft/client/gui/screens/GenericWaitingScreen/f_238805_ net/minecraft/client/gui/screens/GenericWaitingScreen/TITLE_Y +FD: net/minecraft/client/gui/screens/GenericWaitingScreen/f_240231_ net/minecraft/client/gui/screens/GenericWaitingScreen/messageText +FD: net/minecraft/client/gui/screens/GenericWaitingScreen/f_240233_ net/minecraft/client/gui/screens/GenericWaitingScreen/disableButtonTicks +FD: net/minecraft/client/gui/screens/InBedChatScreen/f_263129_ net/minecraft/client/gui/screens/InBedChatScreen/leaveBedButton +FD: net/minecraft/client/gui/screens/LanguageSelectScreen/f_96078_ net/minecraft/client/gui/screens/LanguageSelectScreen/WARNING_LABEL +FD: net/minecraft/client/gui/screens/LanguageSelectScreen/f_96079_ net/minecraft/client/gui/screens/LanguageSelectScreen/packSelectionList +FD: net/minecraft/client/gui/screens/LanguageSelectScreen/f_96080_ net/minecraft/client/gui/screens/LanguageSelectScreen/languageManager +FD: net/minecraft/client/gui/screens/LanguageSelectScreen$LanguageSelectionList/f_96100_ net/minecraft/client/gui/screens/LanguageSelectScreen$LanguageSelectionList/this$0 +FD: net/minecraft/client/gui/screens/LanguageSelectScreen$LanguageSelectionList$Entry/f_263697_ net/minecraft/client/gui/screens/LanguageSelectScreen$LanguageSelectionList$Entry/code +FD: net/minecraft/client/gui/screens/LanguageSelectScreen$LanguageSelectionList$Entry/f_287791_ net/minecraft/client/gui/screens/LanguageSelectScreen$LanguageSelectionList$Entry/lastClickTime +FD: net/minecraft/client/gui/screens/LanguageSelectScreen$LanguageSelectionList$Entry/f_96115_ net/minecraft/client/gui/screens/LanguageSelectScreen$LanguageSelectionList$Entry/this$1 +FD: net/minecraft/client/gui/screens/LanguageSelectScreen$LanguageSelectionList$Entry/f_96116_ net/minecraft/client/gui/screens/LanguageSelectScreen$LanguageSelectionList$Entry/language +FD: net/minecraft/client/gui/screens/LevelLoadingScreen/f_169309_ net/minecraft/client/gui/screens/LevelLoadingScreen/NARRATION_DELAY_MS +FD: net/minecraft/client/gui/screens/LevelLoadingScreen/f_169310_ net/minecraft/client/gui/screens/LevelLoadingScreen/done +FD: net/minecraft/client/gui/screens/LevelLoadingScreen/f_96138_ net/minecraft/client/gui/screens/LevelLoadingScreen/progressListener +FD: net/minecraft/client/gui/screens/LevelLoadingScreen/f_96139_ net/minecraft/client/gui/screens/LevelLoadingScreen/lastNarration +FD: net/minecraft/client/gui/screens/LevelLoadingScreen/f_96140_ net/minecraft/client/gui/screens/LevelLoadingScreen/COLORS +FD: net/minecraft/client/gui/screens/LoadingDotsText/f_232740_ net/minecraft/client/gui/screens/LoadingDotsText/FRAMES +FD: net/minecraft/client/gui/screens/LoadingDotsText/f_232741_ net/minecraft/client/gui/screens/LoadingDotsText/INTERVAL_MS +FD: net/minecraft/client/gui/screens/LoadingOverlay/f_169314_ net/minecraft/client/gui/screens/LoadingOverlay/FADE_OUT_TIME +FD: net/minecraft/client/gui/screens/LoadingOverlay/f_169315_ net/minecraft/client/gui/screens/LoadingOverlay/FADE_IN_TIME +FD: net/minecraft/client/gui/screens/LoadingOverlay/f_169316_ net/minecraft/client/gui/screens/LoadingOverlay/LOGO_BACKGROUND_COLOR +FD: net/minecraft/client/gui/screens/LoadingOverlay/f_169317_ net/minecraft/client/gui/screens/LoadingOverlay/LOGO_BACKGROUND_COLOR_DARK +FD: net/minecraft/client/gui/screens/LoadingOverlay/f_169318_ net/minecraft/client/gui/screens/LoadingOverlay/LOGO_SCALE +FD: net/minecraft/client/gui/screens/LoadingOverlay/f_169319_ net/minecraft/client/gui/screens/LoadingOverlay/LOGO_QUARTER_FLOAT +FD: net/minecraft/client/gui/screens/LoadingOverlay/f_169320_ net/minecraft/client/gui/screens/LoadingOverlay/LOGO_QUARTER +FD: net/minecraft/client/gui/screens/LoadingOverlay/f_169321_ net/minecraft/client/gui/screens/LoadingOverlay/LOGO_HALF +FD: net/minecraft/client/gui/screens/LoadingOverlay/f_169322_ net/minecraft/client/gui/screens/LoadingOverlay/LOGO_OVERLAP +FD: net/minecraft/client/gui/screens/LoadingOverlay/f_169323_ net/minecraft/client/gui/screens/LoadingOverlay/SMOOTHING +FD: net/minecraft/client/gui/screens/LoadingOverlay/f_96160_ net/minecraft/client/gui/screens/LoadingOverlay/MOJANG_STUDIOS_LOGO_LOCATION +FD: net/minecraft/client/gui/screens/LoadingOverlay/f_96161_ net/minecraft/client/gui/screens/LoadingOverlay/BRAND_BACKGROUND +FD: net/minecraft/client/gui/screens/LoadingOverlay/f_96163_ net/minecraft/client/gui/screens/LoadingOverlay/minecraft +FD: net/minecraft/client/gui/screens/LoadingOverlay/f_96164_ net/minecraft/client/gui/screens/LoadingOverlay/reload +FD: net/minecraft/client/gui/screens/LoadingOverlay/f_96165_ net/minecraft/client/gui/screens/LoadingOverlay/onFinish +FD: net/minecraft/client/gui/screens/LoadingOverlay/f_96166_ net/minecraft/client/gui/screens/LoadingOverlay/fadeIn +FD: net/minecraft/client/gui/screens/LoadingOverlay/f_96167_ net/minecraft/client/gui/screens/LoadingOverlay/currentProgress +FD: net/minecraft/client/gui/screens/LoadingOverlay/f_96168_ net/minecraft/client/gui/screens/LoadingOverlay/fadeOutStart +FD: net/minecraft/client/gui/screens/LoadingOverlay/f_96169_ net/minecraft/client/gui/screens/LoadingOverlay/fadeInStart +FD: net/minecraft/client/gui/screens/MenuScreens/f_96195_ net/minecraft/client/gui/screens/MenuScreens/LOGGER +FD: net/minecraft/client/gui/screens/MenuScreens/f_96196_ net/minecraft/client/gui/screens/MenuScreens/SCREENS +FD: net/minecraft/client/gui/screens/MouseSettingsScreen/f_96218_ net/minecraft/client/gui/screens/MouseSettingsScreen/list +FD: net/minecraft/client/gui/screens/OnlineOptionsScreen/f_260696_ net/minecraft/client/gui/screens/OnlineOptionsScreen/difficultyDisplay +FD: net/minecraft/client/gui/screens/OptionsScreen/f_260474_ net/minecraft/client/gui/screens/OptionsScreen/CONTROLS +FD: net/minecraft/client/gui/screens/OptionsScreen/f_260529_ net/minecraft/client/gui/screens/OptionsScreen/LANGUAGE +FD: net/minecraft/client/gui/screens/OptionsScreen/f_260541_ net/minecraft/client/gui/screens/OptionsScreen/CHAT +FD: net/minecraft/client/gui/screens/OptionsScreen/f_260552_ net/minecraft/client/gui/screens/OptionsScreen/VIDEO +FD: net/minecraft/client/gui/screens/OptionsScreen/f_260594_ net/minecraft/client/gui/screens/OptionsScreen/TELEMETRY +FD: net/minecraft/client/gui/screens/OptionsScreen/f_260601_ net/minecraft/client/gui/screens/OptionsScreen/SOUNDS +FD: net/minecraft/client/gui/screens/OptionsScreen/f_260607_ net/minecraft/client/gui/screens/OptionsScreen/COLUMNS +FD: net/minecraft/client/gui/screens/OptionsScreen/f_260611_ net/minecraft/client/gui/screens/OptionsScreen/RESOURCEPACK +FD: net/minecraft/client/gui/screens/OptionsScreen/f_260624_ net/minecraft/client/gui/screens/OptionsScreen/ACCESSIBILITY +FD: net/minecraft/client/gui/screens/OptionsScreen/f_260695_ net/minecraft/client/gui/screens/OptionsScreen/SKIN_CUSTOMIZATION +FD: net/minecraft/client/gui/screens/OptionsScreen/f_276165_ net/minecraft/client/gui/screens/OptionsScreen/CREDITS_AND_ATTRIBUTION +FD: net/minecraft/client/gui/screens/OptionsScreen/f_96235_ net/minecraft/client/gui/screens/OptionsScreen/lastScreen +FD: net/minecraft/client/gui/screens/OptionsScreen/f_96236_ net/minecraft/client/gui/screens/OptionsScreen/options +FD: net/minecraft/client/gui/screens/OptionsScreen/f_96237_ net/minecraft/client/gui/screens/OptionsScreen/difficultyButton +FD: net/minecraft/client/gui/screens/OptionsScreen/f_96238_ net/minecraft/client/gui/screens/OptionsScreen/lockButton +FD: net/minecraft/client/gui/screens/OptionsSubScreen/f_96281_ net/minecraft/client/gui/screens/OptionsSubScreen/lastScreen +FD: net/minecraft/client/gui/screens/OptionsSubScreen/f_96282_ net/minecraft/client/gui/screens/OptionsSubScreen/options +FD: net/minecraft/client/gui/screens/OutOfMemoryScreen/f_232750_ net/minecraft/client/gui/screens/OutOfMemoryScreen/message +FD: net/minecraft/client/gui/screens/PauseScreen/f_252482_ net/minecraft/client/gui/screens/PauseScreen/disconnectButton +FD: net/minecraft/client/gui/screens/PauseScreen/f_262210_ net/minecraft/client/gui/screens/PauseScreen/SHARE_TO_LAN +FD: net/minecraft/client/gui/screens/PauseScreen/f_262212_ net/minecraft/client/gui/screens/PauseScreen/SAVING_LEVEL +FD: net/minecraft/client/gui/screens/PauseScreen/f_262216_ net/minecraft/client/gui/screens/PauseScreen/ADVANCEMENTS +FD: net/minecraft/client/gui/screens/PauseScreen/f_262217_ net/minecraft/client/gui/screens/PauseScreen/RETURN_TO_MENU +FD: net/minecraft/client/gui/screens/PauseScreen/f_262226_ net/minecraft/client/gui/screens/PauseScreen/REPORT_BUGS +FD: net/minecraft/client/gui/screens/PauseScreen/f_262229_ net/minecraft/client/gui/screens/PauseScreen/BUTTON_WIDTH_HALF +FD: net/minecraft/client/gui/screens/PauseScreen/f_262246_ net/minecraft/client/gui/screens/PauseScreen/DISCONNECT +FD: net/minecraft/client/gui/screens/PauseScreen/f_262248_ net/minecraft/client/gui/screens/PauseScreen/BUTTON_PADDING +FD: net/minecraft/client/gui/screens/PauseScreen/f_262254_ net/minecraft/client/gui/screens/PauseScreen/PLAYER_REPORTING +FD: net/minecraft/client/gui/screens/PauseScreen/f_262255_ net/minecraft/client/gui/screens/PauseScreen/STATS +FD: net/minecraft/client/gui/screens/PauseScreen/f_262258_ net/minecraft/client/gui/screens/PauseScreen/MENU_PADDING_TOP +FD: net/minecraft/client/gui/screens/PauseScreen/f_262268_ net/minecraft/client/gui/screens/PauseScreen/BUTTON_WIDTH_FULL +FD: net/minecraft/client/gui/screens/PauseScreen/f_262276_ net/minecraft/client/gui/screens/PauseScreen/RETURN_TO_GAME +FD: net/minecraft/client/gui/screens/PauseScreen/f_262286_ net/minecraft/client/gui/screens/PauseScreen/COLUMNS +FD: net/minecraft/client/gui/screens/PauseScreen/f_262287_ net/minecraft/client/gui/screens/PauseScreen/GAME +FD: net/minecraft/client/gui/screens/PauseScreen/f_262313_ net/minecraft/client/gui/screens/PauseScreen/PAUSED +FD: net/minecraft/client/gui/screens/PauseScreen/f_262318_ net/minecraft/client/gui/screens/PauseScreen/OPTIONS +FD: net/minecraft/client/gui/screens/PauseScreen/f_262322_ net/minecraft/client/gui/screens/PauseScreen/SEND_FEEDBACK +FD: net/minecraft/client/gui/screens/PauseScreen/f_96306_ net/minecraft/client/gui/screens/PauseScreen/showPauseMenu +FD: net/minecraft/client/gui/screens/PopupScreen/f_169340_ net/minecraft/client/gui/screens/PopupScreen/BUTTON_PADDING +FD: net/minecraft/client/gui/screens/PopupScreen/f_169341_ net/minecraft/client/gui/screens/PopupScreen/BUTTON_MARGIN +FD: net/minecraft/client/gui/screens/PopupScreen/f_169342_ net/minecraft/client/gui/screens/PopupScreen/BUTTON_HEIGHT +FD: net/minecraft/client/gui/screens/PopupScreen/f_169343_ net/minecraft/client/gui/screens/PopupScreen/narrationMessage +FD: net/minecraft/client/gui/screens/PopupScreen/f_96339_ net/minecraft/client/gui/screens/PopupScreen/message +FD: net/minecraft/client/gui/screens/PopupScreen/f_96340_ net/minecraft/client/gui/screens/PopupScreen/buttonOptions +FD: net/minecraft/client/gui/screens/PopupScreen/f_96341_ net/minecraft/client/gui/screens/PopupScreen/messageLines +FD: net/minecraft/client/gui/screens/PopupScreen/f_96342_ net/minecraft/client/gui/screens/PopupScreen/contentTop +FD: net/minecraft/client/gui/screens/PopupScreen/f_96343_ net/minecraft/client/gui/screens/PopupScreen/buttonWidth +FD: net/minecraft/client/gui/screens/PopupScreen$ButtonOption/f_96359_ net/minecraft/client/gui/screens/PopupScreen$ButtonOption/message +FD: net/minecraft/client/gui/screens/PopupScreen$ButtonOption/f_96360_ net/minecraft/client/gui/screens/PopupScreen$ButtonOption/onPress +FD: net/minecraft/client/gui/screens/PresetFlatWorldScreen/f_169346_ net/minecraft/client/gui/screens/PresetFlatWorldScreen/SLOT_TEX_SIZE +FD: net/minecraft/client/gui/screens/PresetFlatWorldScreen/f_169347_ net/minecraft/client/gui/screens/PresetFlatWorldScreen/SLOT_BG_SIZE +FD: net/minecraft/client/gui/screens/PresetFlatWorldScreen/f_169348_ net/minecraft/client/gui/screens/PresetFlatWorldScreen/SLOT_STAT_HEIGHT +FD: net/minecraft/client/gui/screens/PresetFlatWorldScreen/f_169349_ net/minecraft/client/gui/screens/PresetFlatWorldScreen/SLOT_BG_X +FD: net/minecraft/client/gui/screens/PresetFlatWorldScreen/f_169350_ net/minecraft/client/gui/screens/PresetFlatWorldScreen/SLOT_BG_Y +FD: net/minecraft/client/gui/screens/PresetFlatWorldScreen/f_169351_ net/minecraft/client/gui/screens/PresetFlatWorldScreen/SLOT_FG_X +FD: net/minecraft/client/gui/screens/PresetFlatWorldScreen/f_169352_ net/minecraft/client/gui/screens/PresetFlatWorldScreen/SLOT_FG_Y +FD: net/minecraft/client/gui/screens/PresetFlatWorldScreen/f_169353_ net/minecraft/client/gui/screens/PresetFlatWorldScreen/DEFAULT_BIOME +FD: net/minecraft/client/gui/screens/PresetFlatWorldScreen/f_232751_ net/minecraft/client/gui/screens/PresetFlatWorldScreen/UNKNOWN_PRESET +FD: net/minecraft/client/gui/screens/PresetFlatWorldScreen/f_96368_ net/minecraft/client/gui/screens/PresetFlatWorldScreen/LOGGER +FD: net/minecraft/client/gui/screens/PresetFlatWorldScreen/f_96370_ net/minecraft/client/gui/screens/PresetFlatWorldScreen/parent +FD: net/minecraft/client/gui/screens/PresetFlatWorldScreen/f_96371_ net/minecraft/client/gui/screens/PresetFlatWorldScreen/shareText +FD: net/minecraft/client/gui/screens/PresetFlatWorldScreen/f_96372_ net/minecraft/client/gui/screens/PresetFlatWorldScreen/listText +FD: net/minecraft/client/gui/screens/PresetFlatWorldScreen/f_96373_ net/minecraft/client/gui/screens/PresetFlatWorldScreen/list +FD: net/minecraft/client/gui/screens/PresetFlatWorldScreen/f_96374_ net/minecraft/client/gui/screens/PresetFlatWorldScreen/selectButton +FD: net/minecraft/client/gui/screens/PresetFlatWorldScreen/f_96375_ net/minecraft/client/gui/screens/PresetFlatWorldScreen/export +FD: net/minecraft/client/gui/screens/PresetFlatWorldScreen/f_96376_ net/minecraft/client/gui/screens/PresetFlatWorldScreen/settings +FD: net/minecraft/client/gui/screens/PresetFlatWorldScreen$PresetsList/f_96462_ net/minecraft/client/gui/screens/PresetFlatWorldScreen$PresetsList/this$0 +FD: net/minecraft/client/gui/screens/PresetFlatWorldScreen$PresetsList$Entry/f_169357_ net/minecraft/client/gui/screens/PresetFlatWorldScreen$PresetsList$Entry/preset +FD: net/minecraft/client/gui/screens/PresetFlatWorldScreen$PresetsList$Entry/f_232755_ net/minecraft/client/gui/screens/PresetFlatWorldScreen$PresetsList$Entry/name +FD: net/minecraft/client/gui/screens/PresetFlatWorldScreen$PresetsList$Entry/f_279577_ net/minecraft/client/gui/screens/PresetFlatWorldScreen$PresetsList$Entry/STATS_ICON_LOCATION +FD: net/minecraft/client/gui/screens/PresetFlatWorldScreen$PresetsList$Entry/f_96476_ net/minecraft/client/gui/screens/PresetFlatWorldScreen$PresetsList$Entry/this$1 +FD: net/minecraft/client/gui/screens/ProgressScreen/f_169362_ net/minecraft/client/gui/screens/ProgressScreen/clearScreenAfterStop +FD: net/minecraft/client/gui/screens/ProgressScreen/f_96506_ net/minecraft/client/gui/screens/ProgressScreen/header +FD: net/minecraft/client/gui/screens/ProgressScreen/f_96507_ net/minecraft/client/gui/screens/ProgressScreen/stage +FD: net/minecraft/client/gui/screens/ProgressScreen/f_96508_ net/minecraft/client/gui/screens/ProgressScreen/progress +FD: net/minecraft/client/gui/screens/ProgressScreen/f_96509_ net/minecraft/client/gui/screens/ProgressScreen/stop +FD: net/minecraft/client/gui/screens/ReceivingLevelScreen/f_202370_ net/minecraft/client/gui/screens/ReceivingLevelScreen/CHUNK_LOADING_START_WAIT_LIMIT_MS +FD: net/minecraft/client/gui/screens/ReceivingLevelScreen/f_202371_ net/minecraft/client/gui/screens/ReceivingLevelScreen/loadingPacketsReceived +FD: net/minecraft/client/gui/screens/ReceivingLevelScreen/f_202372_ net/minecraft/client/gui/screens/ReceivingLevelScreen/oneTickSkipped +FD: net/minecraft/client/gui/screens/ReceivingLevelScreen/f_202373_ net/minecraft/client/gui/screens/ReceivingLevelScreen/createdAt +FD: net/minecraft/client/gui/screens/ReceivingLevelScreen/f_96526_ net/minecraft/client/gui/screens/ReceivingLevelScreen/DOWNLOADING_TERRAIN_TEXT +FD: net/minecraft/client/gui/screens/Screen/f_169365_ net/minecraft/client/gui/screens/Screen/lastNarratable +FD: net/minecraft/client/gui/screens/Screen/f_169367_ net/minecraft/client/gui/screens/Screen/USAGE_NARRATION +FD: net/minecraft/client/gui/screens/Screen/f_169368_ net/minecraft/client/gui/screens/Screen/narratables +FD: net/minecraft/client/gui/screens/Screen/f_169369_ net/minecraft/client/gui/screens/Screen/renderables +FD: net/minecraft/client/gui/screens/Screen/f_169370_ net/minecraft/client/gui/screens/Screen/NARRATE_SUPPRESS_AFTER_INIT_TIME +FD: net/minecraft/client/gui/screens/Screen/f_169371_ net/minecraft/client/gui/screens/Screen/NARRATE_DELAY_NARRATOR_ENABLED +FD: net/minecraft/client/gui/screens/Screen/f_169372_ net/minecraft/client/gui/screens/Screen/NARRATE_DELAY_MOUSE_MOVE +FD: net/minecraft/client/gui/screens/Screen/f_169373_ net/minecraft/client/gui/screens/Screen/NARRATE_DELAY_MOUSE_ACTION +FD: net/minecraft/client/gui/screens/Screen/f_169374_ net/minecraft/client/gui/screens/Screen/NARRATE_DELAY_KEYBOARD_ACTION +FD: net/minecraft/client/gui/screens/Screen/f_169375_ net/minecraft/client/gui/screens/Screen/narrationState +FD: net/minecraft/client/gui/screens/Screen/f_169376_ net/minecraft/client/gui/screens/Screen/narrationSuppressTime +FD: net/minecraft/client/gui/screens/Screen/f_169377_ net/minecraft/client/gui/screens/Screen/nextNarrationTime +FD: net/minecraft/client/gui/screens/Screen/f_262730_ net/minecraft/client/gui/screens/Screen/deferredTooltipRendering +FD: net/minecraft/client/gui/screens/Screen/f_267454_ net/minecraft/client/gui/screens/Screen/initialized +FD: net/minecraft/client/gui/screens/Screen/f_279548_ net/minecraft/client/gui/screens/Screen/BACKGROUND_LOCATION +FD: net/minecraft/client/gui/screens/Screen/f_289574_ net/minecraft/client/gui/screens/Screen/screenExecutor +FD: net/minecraft/client/gui/screens/Screen/f_96536_ net/minecraft/client/gui/screens/Screen/LOGGER +FD: net/minecraft/client/gui/screens/Screen/f_96537_ net/minecraft/client/gui/screens/Screen/ALLOWED_PROTOCOLS +FD: net/minecraft/client/gui/screens/Screen/f_96538_ net/minecraft/client/gui/screens/Screen/clickedLink +FD: net/minecraft/client/gui/screens/Screen/f_96539_ net/minecraft/client/gui/screens/Screen/title +FD: net/minecraft/client/gui/screens/Screen/f_96540_ net/minecraft/client/gui/screens/Screen/children +FD: net/minecraft/client/gui/screens/Screen/f_96541_ net/minecraft/client/gui/screens/Screen/minecraft +FD: net/minecraft/client/gui/screens/Screen/f_96543_ net/minecraft/client/gui/screens/Screen/width +FD: net/minecraft/client/gui/screens/Screen/f_96544_ net/minecraft/client/gui/screens/Screen/height +FD: net/minecraft/client/gui/screens/Screen/f_96547_ net/minecraft/client/gui/screens/Screen/font +FD: net/minecraft/client/gui/screens/Screen$DeferredTooltipRendering/f_262736_ net/minecraft/client/gui/screens/Screen$DeferredTooltipRendering/tooltip +FD: net/minecraft/client/gui/screens/Screen$DeferredTooltipRendering/f_262758_ net/minecraft/client/gui/screens/Screen$DeferredTooltipRendering/positioner +FD: net/minecraft/client/gui/screens/Screen$NarratableSearchResult/f_169420_ net/minecraft/client/gui/screens/Screen$NarratableSearchResult/entry +FD: net/minecraft/client/gui/screens/Screen$NarratableSearchResult/f_169421_ net/minecraft/client/gui/screens/Screen$NarratableSearchResult/index +FD: net/minecraft/client/gui/screens/Screen$NarratableSearchResult/f_169422_ net/minecraft/client/gui/screens/Screen$NarratableSearchResult/priority +FD: net/minecraft/client/gui/screens/ShareToLanScreen/f_169427_ net/minecraft/client/gui/screens/ShareToLanScreen/gameMode +FD: net/minecraft/client/gui/screens/ShareToLanScreen/f_256803_ net/minecraft/client/gui/screens/ShareToLanScreen/portEdit +FD: net/minecraft/client/gui/screens/ShareToLanScreen/f_256852_ net/minecraft/client/gui/screens/ShareToLanScreen/port +FD: net/minecraft/client/gui/screens/ShareToLanScreen/f_256909_ net/minecraft/client/gui/screens/ShareToLanScreen/INVALID_PORT +FD: net/minecraft/client/gui/screens/ShareToLanScreen/f_257007_ net/minecraft/client/gui/screens/ShareToLanScreen/PORT_INFO_TEXT +FD: net/minecraft/client/gui/screens/ShareToLanScreen/f_257022_ net/minecraft/client/gui/screens/ShareToLanScreen/INVALID_PORT_COLOR +FD: net/minecraft/client/gui/screens/ShareToLanScreen/f_257045_ net/minecraft/client/gui/screens/ShareToLanScreen/PORT_UNAVAILABLE +FD: net/minecraft/client/gui/screens/ShareToLanScreen/f_262301_ net/minecraft/client/gui/screens/ShareToLanScreen/PORT_HIGHER_BOUND +FD: net/minecraft/client/gui/screens/ShareToLanScreen/f_262314_ net/minecraft/client/gui/screens/ShareToLanScreen/PORT_LOWER_BOUND +FD: net/minecraft/client/gui/screens/ShareToLanScreen/f_96640_ net/minecraft/client/gui/screens/ShareToLanScreen/ALLOW_COMMANDS_LABEL +FD: net/minecraft/client/gui/screens/ShareToLanScreen/f_96641_ net/minecraft/client/gui/screens/ShareToLanScreen/GAME_MODE_LABEL +FD: net/minecraft/client/gui/screens/ShareToLanScreen/f_96642_ net/minecraft/client/gui/screens/ShareToLanScreen/INFO_TEXT +FD: net/minecraft/client/gui/screens/ShareToLanScreen/f_96643_ net/minecraft/client/gui/screens/ShareToLanScreen/lastScreen +FD: net/minecraft/client/gui/screens/ShareToLanScreen/f_96647_ net/minecraft/client/gui/screens/ShareToLanScreen/commands +FD: net/minecraft/client/gui/screens/SimpleOptionsSubScreen/f_96666_ net/minecraft/client/gui/screens/SimpleOptionsSubScreen/smallOptions +FD: net/minecraft/client/gui/screens/SimpleOptionsSubScreen/f_96667_ net/minecraft/client/gui/screens/SimpleOptionsSubScreen/narratorButton +FD: net/minecraft/client/gui/screens/SimpleOptionsSubScreen/f_96668_ net/minecraft/client/gui/screens/SimpleOptionsSubScreen/list +FD: net/minecraft/client/gui/screens/SoundOptionsScreen/f_244146_ net/minecraft/client/gui/screens/SoundOptionsScreen/list +FD: net/minecraft/client/gui/screens/SymlinkWarningScreen/f_289817_ net/minecraft/client/gui/screens/SymlinkWarningScreen/TITLE +FD: net/minecraft/client/gui/screens/SymlinkWarningScreen/f_289819_ net/minecraft/client/gui/screens/SymlinkWarningScreen/layout +FD: net/minecraft/client/gui/screens/SymlinkWarningScreen/f_289825_ net/minecraft/client/gui/screens/SymlinkWarningScreen/MESSAGE_TEXT +FD: net/minecraft/client/gui/screens/SymlinkWarningScreen/f_289827_ net/minecraft/client/gui/screens/SymlinkWarningScreen/callbackScreen +FD: net/minecraft/client/gui/screens/TitleScreen/f_169438_ net/minecraft/client/gui/screens/TitleScreen/COPYRIGHT_TEXT +FD: net/minecraft/client/gui/screens/TitleScreen/f_169439_ net/minecraft/client/gui/screens/TitleScreen/DEMO_LEVEL_ID +FD: net/minecraft/client/gui/screens/TitleScreen/f_232768_ net/minecraft/client/gui/screens/TitleScreen/warningLabel +FD: net/minecraft/client/gui/screens/TitleScreen/f_263781_ net/minecraft/client/gui/screens/TitleScreen/logoRenderer +FD: net/minecraft/client/gui/screens/TitleScreen/f_96714_ net/minecraft/client/gui/screens/TitleScreen/fading +FD: net/minecraft/client/gui/screens/TitleScreen/f_96715_ net/minecraft/client/gui/screens/TitleScreen/fadeInStart +FD: net/minecraft/client/gui/screens/TitleScreen/f_96716_ net/minecraft/client/gui/screens/TitleScreen/CUBE_MAP +FD: net/minecraft/client/gui/screens/TitleScreen/f_96717_ net/minecraft/client/gui/screens/TitleScreen/LOGGER +FD: net/minecraft/client/gui/screens/TitleScreen/f_96718_ net/minecraft/client/gui/screens/TitleScreen/PANORAMA_OVERLAY +FD: net/minecraft/client/gui/screens/TitleScreen/f_96721_ net/minecraft/client/gui/screens/TitleScreen/splash +FD: net/minecraft/client/gui/screens/TitleScreen/f_96722_ net/minecraft/client/gui/screens/TitleScreen/resetDemoButton +FD: net/minecraft/client/gui/screens/TitleScreen/f_96726_ net/minecraft/client/gui/screens/TitleScreen/realmsNotificationsScreen +FD: net/minecraft/client/gui/screens/TitleScreen/f_96729_ net/minecraft/client/gui/screens/TitleScreen/panorama +FD: net/minecraft/client/gui/screens/TitleScreen$WarningLabel/f_232780_ net/minecraft/client/gui/screens/TitleScreen$WarningLabel/font +FD: net/minecraft/client/gui/screens/TitleScreen$WarningLabel/f_232781_ net/minecraft/client/gui/screens/TitleScreen$WarningLabel/label +FD: net/minecraft/client/gui/screens/TitleScreen$WarningLabel/f_232782_ net/minecraft/client/gui/screens/TitleScreen$WarningLabel/x +FD: net/minecraft/client/gui/screens/TitleScreen$WarningLabel/f_232783_ net/minecraft/client/gui/screens/TitleScreen$WarningLabel/y +FD: net/minecraft/client/gui/screens/VideoSettingsScreen/f_96794_ net/minecraft/client/gui/screens/VideoSettingsScreen/FABULOUS +FD: net/minecraft/client/gui/screens/VideoSettingsScreen/f_96795_ net/minecraft/client/gui/screens/VideoSettingsScreen/WARNING_MESSAGE +FD: net/minecraft/client/gui/screens/VideoSettingsScreen/f_96796_ net/minecraft/client/gui/screens/VideoSettingsScreen/WARNING_TITLE +FD: net/minecraft/client/gui/screens/VideoSettingsScreen/f_96797_ net/minecraft/client/gui/screens/VideoSettingsScreen/BUTTON_ACCEPT +FD: net/minecraft/client/gui/screens/VideoSettingsScreen/f_96798_ net/minecraft/client/gui/screens/VideoSettingsScreen/BUTTON_CANCEL +FD: net/minecraft/client/gui/screens/VideoSettingsScreen/f_96801_ net/minecraft/client/gui/screens/VideoSettingsScreen/list +FD: net/minecraft/client/gui/screens/VideoSettingsScreen/f_96802_ net/minecraft/client/gui/screens/VideoSettingsScreen/gpuWarnlistManager +FD: net/minecraft/client/gui/screens/VideoSettingsScreen/f_96803_ net/minecraft/client/gui/screens/VideoSettingsScreen/oldMipmaps +FD: net/minecraft/client/gui/screens/WinScreen/f_169462_ net/minecraft/client/gui/screens/WinScreen/unmodifiedScrollSpeed +FD: net/minecraft/client/gui/screens/WinScreen/f_169463_ net/minecraft/client/gui/screens/WinScreen/SECTION_HEADING +FD: net/minecraft/client/gui/screens/WinScreen/f_169464_ net/minecraft/client/gui/screens/WinScreen/NAME_PREFIX +FD: net/minecraft/client/gui/screens/WinScreen/f_169466_ net/minecraft/client/gui/screens/WinScreen/SPEEDUP_FACTOR +FD: net/minecraft/client/gui/screens/WinScreen/f_169467_ net/minecraft/client/gui/screens/WinScreen/scroll +FD: net/minecraft/client/gui/screens/WinScreen/f_181391_ net/minecraft/client/gui/screens/WinScreen/speedupActive +FD: net/minecraft/client/gui/screens/WinScreen/f_181392_ net/minecraft/client/gui/screens/WinScreen/speedupModifiers +FD: net/minecraft/client/gui/screens/WinScreen/f_181393_ net/minecraft/client/gui/screens/WinScreen/SPEEDUP_FACTOR_FAST +FD: net/minecraft/client/gui/screens/WinScreen/f_263706_ net/minecraft/client/gui/screens/WinScreen/logoRenderer +FD: net/minecraft/client/gui/screens/WinScreen/f_283835_ net/minecraft/client/gui/screens/WinScreen/direction +FD: net/minecraft/client/gui/screens/WinScreen/f_96863_ net/minecraft/client/gui/screens/WinScreen/LOGGER +FD: net/minecraft/client/gui/screens/WinScreen/f_96866_ net/minecraft/client/gui/screens/WinScreen/VIGNETTE_LOCATION +FD: net/minecraft/client/gui/screens/WinScreen/f_96867_ net/minecraft/client/gui/screens/WinScreen/OBFUSCATE_TOKEN +FD: net/minecraft/client/gui/screens/WinScreen/f_96868_ net/minecraft/client/gui/screens/WinScreen/poem +FD: net/minecraft/client/gui/screens/WinScreen/f_96869_ net/minecraft/client/gui/screens/WinScreen/onFinished +FD: net/minecraft/client/gui/screens/WinScreen/f_96871_ net/minecraft/client/gui/screens/WinScreen/lines +FD: net/minecraft/client/gui/screens/WinScreen/f_96872_ net/minecraft/client/gui/screens/WinScreen/centeredLines +FD: net/minecraft/client/gui/screens/WinScreen/f_96873_ net/minecraft/client/gui/screens/WinScreen/totalScrollLength +FD: net/minecraft/client/gui/screens/WinScreen/f_96874_ net/minecraft/client/gui/screens/WinScreen/scrollSpeed +FD: net/minecraft/client/gui/screens/achievement/StatsScreen/f_169484_ net/minecraft/client/gui/screens/achievement/StatsScreen/SLOT_LEFT_INSERT +FD: net/minecraft/client/gui/screens/achievement/StatsScreen/f_169485_ net/minecraft/client/gui/screens/achievement/StatsScreen/SLOT_TEXT_OFFSET +FD: net/minecraft/client/gui/screens/achievement/StatsScreen/f_169486_ net/minecraft/client/gui/screens/achievement/StatsScreen/SORT_NONE +FD: net/minecraft/client/gui/screens/achievement/StatsScreen/f_169487_ net/minecraft/client/gui/screens/achievement/StatsScreen/SORT_DOWN +FD: net/minecraft/client/gui/screens/achievement/StatsScreen/f_169488_ net/minecraft/client/gui/screens/achievement/StatsScreen/SORT_UP +FD: net/minecraft/client/gui/screens/achievement/StatsScreen/f_169489_ net/minecraft/client/gui/screens/achievement/StatsScreen/SLOT_TEX_SIZE +FD: net/minecraft/client/gui/screens/achievement/StatsScreen/f_169490_ net/minecraft/client/gui/screens/achievement/StatsScreen/SLOT_BG_SIZE +FD: net/minecraft/client/gui/screens/achievement/StatsScreen/f_169491_ net/minecraft/client/gui/screens/achievement/StatsScreen/SLOT_STAT_HEIGHT +FD: net/minecraft/client/gui/screens/achievement/StatsScreen/f_169492_ net/minecraft/client/gui/screens/achievement/StatsScreen/SLOT_BG_X +FD: net/minecraft/client/gui/screens/achievement/StatsScreen/f_169493_ net/minecraft/client/gui/screens/achievement/StatsScreen/SLOT_BG_Y +FD: net/minecraft/client/gui/screens/achievement/StatsScreen/f_169494_ net/minecraft/client/gui/screens/achievement/StatsScreen/SLOT_FG_X +FD: net/minecraft/client/gui/screens/achievement/StatsScreen/f_169495_ net/minecraft/client/gui/screens/achievement/StatsScreen/SLOT_FG_Y +FD: net/minecraft/client/gui/screens/achievement/StatsScreen/f_279607_ net/minecraft/client/gui/screens/achievement/StatsScreen/STATS_ICON_LOCATION +FD: net/minecraft/client/gui/screens/achievement/StatsScreen/f_96896_ net/minecraft/client/gui/screens/achievement/StatsScreen/lastScreen +FD: net/minecraft/client/gui/screens/achievement/StatsScreen/f_96897_ net/minecraft/client/gui/screens/achievement/StatsScreen/PENDING_TEXT +FD: net/minecraft/client/gui/screens/achievement/StatsScreen/f_96898_ net/minecraft/client/gui/screens/achievement/StatsScreen/statsList +FD: net/minecraft/client/gui/screens/achievement/StatsScreen/f_96899_ net/minecraft/client/gui/screens/achievement/StatsScreen/itemStatsList +FD: net/minecraft/client/gui/screens/achievement/StatsScreen/f_96900_ net/minecraft/client/gui/screens/achievement/StatsScreen/mobsStatsList +FD: net/minecraft/client/gui/screens/achievement/StatsScreen/f_96901_ net/minecraft/client/gui/screens/achievement/StatsScreen/stats +FD: net/minecraft/client/gui/screens/achievement/StatsScreen/f_96902_ net/minecraft/client/gui/screens/achievement/StatsScreen/activeList +FD: net/minecraft/client/gui/screens/achievement/StatsScreen/f_96903_ net/minecraft/client/gui/screens/achievement/StatsScreen/isLoading +FD: net/minecraft/client/gui/screens/achievement/StatsScreen$GeneralStatisticsList/f_96992_ net/minecraft/client/gui/screens/achievement/StatsScreen$GeneralStatisticsList/this$0 +FD: net/minecraft/client/gui/screens/achievement/StatsScreen$GeneralStatisticsList$Entry/f_97000_ net/minecraft/client/gui/screens/achievement/StatsScreen$GeneralStatisticsList$Entry/this$1 +FD: net/minecraft/client/gui/screens/achievement/StatsScreen$GeneralStatisticsList$Entry/f_97001_ net/minecraft/client/gui/screens/achievement/StatsScreen$GeneralStatisticsList$Entry/stat +FD: net/minecraft/client/gui/screens/achievement/StatsScreen$GeneralStatisticsList$Entry/f_97002_ net/minecraft/client/gui/screens/achievement/StatsScreen$GeneralStatisticsList$Entry/statDisplay +FD: net/minecraft/client/gui/screens/achievement/StatsScreen$ItemStatisticsList/f_97021_ net/minecraft/client/gui/screens/achievement/StatsScreen$ItemStatisticsList/blockColumns +FD: net/minecraft/client/gui/screens/achievement/StatsScreen$ItemStatisticsList/f_97022_ net/minecraft/client/gui/screens/achievement/StatsScreen$ItemStatisticsList/itemColumns +FD: net/minecraft/client/gui/screens/achievement/StatsScreen$ItemStatisticsList/f_97023_ net/minecraft/client/gui/screens/achievement/StatsScreen$ItemStatisticsList/headerPressed +FD: net/minecraft/client/gui/screens/achievement/StatsScreen$ItemStatisticsList/f_97025_ net/minecraft/client/gui/screens/achievement/StatsScreen$ItemStatisticsList/itemStatSorter +FD: net/minecraft/client/gui/screens/achievement/StatsScreen$ItemStatisticsList/f_97026_ net/minecraft/client/gui/screens/achievement/StatsScreen$ItemStatisticsList/sortColumn +FD: net/minecraft/client/gui/screens/achievement/StatsScreen$ItemStatisticsList/f_97027_ net/minecraft/client/gui/screens/achievement/StatsScreen$ItemStatisticsList/sortOrder +FD: net/minecraft/client/gui/screens/achievement/StatsScreen$ItemStatisticsList/f_97028_ net/minecraft/client/gui/screens/achievement/StatsScreen$ItemStatisticsList/this$0 +FD: net/minecraft/client/gui/screens/achievement/StatsScreen$ItemStatisticsList/f_97029_ net/minecraft/client/gui/screens/achievement/StatsScreen$ItemStatisticsList/iconOffsets +FD: net/minecraft/client/gui/screens/achievement/StatsScreen$ItemStatisticsList$ItemRow/f_169514_ net/minecraft/client/gui/screens/achievement/StatsScreen$ItemStatisticsList$ItemRow/item +FD: net/minecraft/client/gui/screens/achievement/StatsScreen$ItemStatisticsList$ItemRow/f_97074_ net/minecraft/client/gui/screens/achievement/StatsScreen$ItemStatisticsList$ItemRow/this$1 +FD: net/minecraft/client/gui/screens/achievement/StatsScreen$ItemStatisticsList$ItemRowComparator/f_169520_ net/minecraft/client/gui/screens/achievement/StatsScreen$ItemStatisticsList$ItemRowComparator/this$1 +FD: net/minecraft/client/gui/screens/achievement/StatsScreen$MobsStatisticsList/f_97097_ net/minecraft/client/gui/screens/achievement/StatsScreen$MobsStatisticsList/this$0 +FD: net/minecraft/client/gui/screens/achievement/StatsScreen$MobsStatisticsList$MobRow/f_97103_ net/minecraft/client/gui/screens/achievement/StatsScreen$MobsStatisticsList$MobRow/this$1 +FD: net/minecraft/client/gui/screens/achievement/StatsScreen$MobsStatisticsList$MobRow/f_97105_ net/minecraft/client/gui/screens/achievement/StatsScreen$MobsStatisticsList$MobRow/mobName +FD: net/minecraft/client/gui/screens/achievement/StatsScreen$MobsStatisticsList$MobRow/f_97106_ net/minecraft/client/gui/screens/achievement/StatsScreen$MobsStatisticsList$MobRow/kills +FD: net/minecraft/client/gui/screens/achievement/StatsScreen$MobsStatisticsList$MobRow/f_97107_ net/minecraft/client/gui/screens/achievement/StatsScreen$MobsStatisticsList$MobRow/hasKills +FD: net/minecraft/client/gui/screens/achievement/StatsScreen$MobsStatisticsList$MobRow/f_97108_ net/minecraft/client/gui/screens/achievement/StatsScreen$MobsStatisticsList$MobRow/killedBy +FD: net/minecraft/client/gui/screens/achievement/StatsScreen$MobsStatisticsList$MobRow/f_97109_ net/minecraft/client/gui/screens/achievement/StatsScreen$MobsStatisticsList$MobRow/wasKilledBy +FD: net/minecraft/client/gui/screens/achievement/StatsUpdateListener/f_97124_ net/minecraft/client/gui/screens/achievement/StatsUpdateListener/LOADING_SYMBOLS +FD: net/minecraft/client/gui/screens/advancements/AdvancementTab/f_97126_ net/minecraft/client/gui/screens/advancements/AdvancementTab/minecraft +FD: net/minecraft/client/gui/screens/advancements/AdvancementTab/f_97127_ net/minecraft/client/gui/screens/advancements/AdvancementTab/screen +FD: net/minecraft/client/gui/screens/advancements/AdvancementTab/f_97128_ net/minecraft/client/gui/screens/advancements/AdvancementTab/type +FD: net/minecraft/client/gui/screens/advancements/AdvancementTab/f_97129_ net/minecraft/client/gui/screens/advancements/AdvancementTab/index +FD: net/minecraft/client/gui/screens/advancements/AdvancementTab/f_97130_ net/minecraft/client/gui/screens/advancements/AdvancementTab/advancement +FD: net/minecraft/client/gui/screens/advancements/AdvancementTab/f_97131_ net/minecraft/client/gui/screens/advancements/AdvancementTab/display +FD: net/minecraft/client/gui/screens/advancements/AdvancementTab/f_97132_ net/minecraft/client/gui/screens/advancements/AdvancementTab/icon +FD: net/minecraft/client/gui/screens/advancements/AdvancementTab/f_97133_ net/minecraft/client/gui/screens/advancements/AdvancementTab/title +FD: net/minecraft/client/gui/screens/advancements/AdvancementTab/f_97134_ net/minecraft/client/gui/screens/advancements/AdvancementTab/root +FD: net/minecraft/client/gui/screens/advancements/AdvancementTab/f_97135_ net/minecraft/client/gui/screens/advancements/AdvancementTab/widgets +FD: net/minecraft/client/gui/screens/advancements/AdvancementTab/f_97136_ net/minecraft/client/gui/screens/advancements/AdvancementTab/scrollX +FD: net/minecraft/client/gui/screens/advancements/AdvancementTab/f_97137_ net/minecraft/client/gui/screens/advancements/AdvancementTab/scrollY +FD: net/minecraft/client/gui/screens/advancements/AdvancementTab/f_97138_ net/minecraft/client/gui/screens/advancements/AdvancementTab/minX +FD: net/minecraft/client/gui/screens/advancements/AdvancementTab/f_97139_ net/minecraft/client/gui/screens/advancements/AdvancementTab/minY +FD: net/minecraft/client/gui/screens/advancements/AdvancementTab/f_97140_ net/minecraft/client/gui/screens/advancements/AdvancementTab/maxX +FD: net/minecraft/client/gui/screens/advancements/AdvancementTab/f_97141_ net/minecraft/client/gui/screens/advancements/AdvancementTab/maxY +FD: net/minecraft/client/gui/screens/advancements/AdvancementTab/f_97142_ net/minecraft/client/gui/screens/advancements/AdvancementTab/fade +FD: net/minecraft/client/gui/screens/advancements/AdvancementTab/f_97143_ net/minecraft/client/gui/screens/advancements/AdvancementTab/centered +FD: net/minecraft/client/gui/screens/advancements/AdvancementTabType/$VALUES net/minecraft/client/gui/screens/advancements/AdvancementTabType/$VALUES +FD: net/minecraft/client/gui/screens/advancements/AdvancementTabType/ABOVE net/minecraft/client/gui/screens/advancements/AdvancementTabType/ABOVE +FD: net/minecraft/client/gui/screens/advancements/AdvancementTabType/BELOW net/minecraft/client/gui/screens/advancements/AdvancementTabType/BELOW +FD: net/minecraft/client/gui/screens/advancements/AdvancementTabType/LEFT net/minecraft/client/gui/screens/advancements/AdvancementTabType/LEFT +FD: net/minecraft/client/gui/screens/advancements/AdvancementTabType/RIGHT net/minecraft/client/gui/screens/advancements/AdvancementTabType/RIGHT +FD: net/minecraft/client/gui/screens/advancements/AdvancementTabType/f_97195_ net/minecraft/client/gui/screens/advancements/AdvancementTabType/textureX +FD: net/minecraft/client/gui/screens/advancements/AdvancementTabType/f_97196_ net/minecraft/client/gui/screens/advancements/AdvancementTabType/textureY +FD: net/minecraft/client/gui/screens/advancements/AdvancementTabType/f_97197_ net/minecraft/client/gui/screens/advancements/AdvancementTabType/width +FD: net/minecraft/client/gui/screens/advancements/AdvancementTabType/f_97198_ net/minecraft/client/gui/screens/advancements/AdvancementTabType/height +FD: net/minecraft/client/gui/screens/advancements/AdvancementTabType/f_97199_ net/minecraft/client/gui/screens/advancements/AdvancementTabType/max +FD: net/minecraft/client/gui/screens/advancements/AdvancementTabType$1/f_97237_ net/minecraft/client/gui/screens/advancements/AdvancementTabType$1/$SwitchMap$net$minecraft$client$gui$screens$advancements$AdvancementTabType +FD: net/minecraft/client/gui/screens/advancements/AdvancementWidget/f_169542_ net/minecraft/client/gui/screens/advancements/AdvancementWidget/HEIGHT +FD: net/minecraft/client/gui/screens/advancements/AdvancementWidget/f_169543_ net/minecraft/client/gui/screens/advancements/AdvancementWidget/BOX_X +FD: net/minecraft/client/gui/screens/advancements/AdvancementWidget/f_169544_ net/minecraft/client/gui/screens/advancements/AdvancementWidget/BOX_WIDTH +FD: net/minecraft/client/gui/screens/advancements/AdvancementWidget/f_169545_ net/minecraft/client/gui/screens/advancements/AdvancementWidget/FRAME_WIDTH +FD: net/minecraft/client/gui/screens/advancements/AdvancementWidget/f_169546_ net/minecraft/client/gui/screens/advancements/AdvancementWidget/ICON_X +FD: net/minecraft/client/gui/screens/advancements/AdvancementWidget/f_169547_ net/minecraft/client/gui/screens/advancements/AdvancementWidget/ICON_Y +FD: net/minecraft/client/gui/screens/advancements/AdvancementWidget/f_169548_ net/minecraft/client/gui/screens/advancements/AdvancementWidget/ICON_WIDTH +FD: net/minecraft/client/gui/screens/advancements/AdvancementWidget/f_169549_ net/minecraft/client/gui/screens/advancements/AdvancementWidget/TITLE_PADDING_LEFT +FD: net/minecraft/client/gui/screens/advancements/AdvancementWidget/f_169550_ net/minecraft/client/gui/screens/advancements/AdvancementWidget/TITLE_PADDING_RIGHT +FD: net/minecraft/client/gui/screens/advancements/AdvancementWidget/f_169551_ net/minecraft/client/gui/screens/advancements/AdvancementWidget/TITLE_X +FD: net/minecraft/client/gui/screens/advancements/AdvancementWidget/f_169552_ net/minecraft/client/gui/screens/advancements/AdvancementWidget/TITLE_Y +FD: net/minecraft/client/gui/screens/advancements/AdvancementWidget/f_169553_ net/minecraft/client/gui/screens/advancements/AdvancementWidget/TITLE_MAX_WIDTH +FD: net/minecraft/client/gui/screens/advancements/AdvancementWidget/f_97239_ net/minecraft/client/gui/screens/advancements/AdvancementWidget/WIDGETS_LOCATION +FD: net/minecraft/client/gui/screens/advancements/AdvancementWidget/f_97240_ net/minecraft/client/gui/screens/advancements/AdvancementWidget/TEST_SPLIT_OFFSETS +FD: net/minecraft/client/gui/screens/advancements/AdvancementWidget/f_97241_ net/minecraft/client/gui/screens/advancements/AdvancementWidget/tab +FD: net/minecraft/client/gui/screens/advancements/AdvancementWidget/f_97242_ net/minecraft/client/gui/screens/advancements/AdvancementWidget/advancement +FD: net/minecraft/client/gui/screens/advancements/AdvancementWidget/f_97243_ net/minecraft/client/gui/screens/advancements/AdvancementWidget/display +FD: net/minecraft/client/gui/screens/advancements/AdvancementWidget/f_97244_ net/minecraft/client/gui/screens/advancements/AdvancementWidget/title +FD: net/minecraft/client/gui/screens/advancements/AdvancementWidget/f_97245_ net/minecraft/client/gui/screens/advancements/AdvancementWidget/width +FD: net/minecraft/client/gui/screens/advancements/AdvancementWidget/f_97246_ net/minecraft/client/gui/screens/advancements/AdvancementWidget/description +FD: net/minecraft/client/gui/screens/advancements/AdvancementWidget/f_97247_ net/minecraft/client/gui/screens/advancements/AdvancementWidget/minecraft +FD: net/minecraft/client/gui/screens/advancements/AdvancementWidget/f_97248_ net/minecraft/client/gui/screens/advancements/AdvancementWidget/parent +FD: net/minecraft/client/gui/screens/advancements/AdvancementWidget/f_97249_ net/minecraft/client/gui/screens/advancements/AdvancementWidget/children +FD: net/minecraft/client/gui/screens/advancements/AdvancementWidget/f_97250_ net/minecraft/client/gui/screens/advancements/AdvancementWidget/progress +FD: net/minecraft/client/gui/screens/advancements/AdvancementWidget/f_97251_ net/minecraft/client/gui/screens/advancements/AdvancementWidget/x +FD: net/minecraft/client/gui/screens/advancements/AdvancementWidget/f_97252_ net/minecraft/client/gui/screens/advancements/AdvancementWidget/y +FD: net/minecraft/client/gui/screens/advancements/AdvancementWidgetType/$VALUES net/minecraft/client/gui/screens/advancements/AdvancementWidgetType/$VALUES +FD: net/minecraft/client/gui/screens/advancements/AdvancementWidgetType/OBTAINED net/minecraft/client/gui/screens/advancements/AdvancementWidgetType/OBTAINED +FD: net/minecraft/client/gui/screens/advancements/AdvancementWidgetType/UNOBTAINED net/minecraft/client/gui/screens/advancements/AdvancementWidgetType/UNOBTAINED +FD: net/minecraft/client/gui/screens/advancements/AdvancementWidgetType/f_97318_ net/minecraft/client/gui/screens/advancements/AdvancementWidgetType/y +FD: net/minecraft/client/gui/screens/advancements/AdvancementsScreen/f_169556_ net/minecraft/client/gui/screens/advancements/AdvancementsScreen/WINDOW_WIDTH +FD: net/minecraft/client/gui/screens/advancements/AdvancementsScreen/f_169557_ net/minecraft/client/gui/screens/advancements/AdvancementsScreen/WINDOW_HEIGHT +FD: net/minecraft/client/gui/screens/advancements/AdvancementsScreen/f_169558_ net/minecraft/client/gui/screens/advancements/AdvancementsScreen/WINDOW_INSIDE_WIDTH +FD: net/minecraft/client/gui/screens/advancements/AdvancementsScreen/f_169559_ net/minecraft/client/gui/screens/advancements/AdvancementsScreen/WINDOW_INSIDE_HEIGHT +FD: net/minecraft/client/gui/screens/advancements/AdvancementsScreen/f_169560_ net/minecraft/client/gui/screens/advancements/AdvancementsScreen/BACKGROUND_TILE_WIDTH +FD: net/minecraft/client/gui/screens/advancements/AdvancementsScreen/f_169561_ net/minecraft/client/gui/screens/advancements/AdvancementsScreen/BACKGROUND_TILE_HEIGHT +FD: net/minecraft/client/gui/screens/advancements/AdvancementsScreen/f_169562_ net/minecraft/client/gui/screens/advancements/AdvancementsScreen/BACKGROUND_TILE_COUNT_X +FD: net/minecraft/client/gui/screens/advancements/AdvancementsScreen/f_169563_ net/minecraft/client/gui/screens/advancements/AdvancementsScreen/BACKGROUND_TILE_COUNT_Y +FD: net/minecraft/client/gui/screens/advancements/AdvancementsScreen/f_169564_ net/minecraft/client/gui/screens/advancements/AdvancementsScreen/WINDOW_INSIDE_X +FD: net/minecraft/client/gui/screens/advancements/AdvancementsScreen/f_169565_ net/minecraft/client/gui/screens/advancements/AdvancementsScreen/WINDOW_INSIDE_Y +FD: net/minecraft/client/gui/screens/advancements/AdvancementsScreen/f_169566_ net/minecraft/client/gui/screens/advancements/AdvancementsScreen/WINDOW_TITLE_X +FD: net/minecraft/client/gui/screens/advancements/AdvancementsScreen/f_169567_ net/minecraft/client/gui/screens/advancements/AdvancementsScreen/WINDOW_TITLE_Y +FD: net/minecraft/client/gui/screens/advancements/AdvancementsScreen/f_97329_ net/minecraft/client/gui/screens/advancements/AdvancementsScreen/WINDOW_LOCATION +FD: net/minecraft/client/gui/screens/advancements/AdvancementsScreen/f_97330_ net/minecraft/client/gui/screens/advancements/AdvancementsScreen/TABS_LOCATION +FD: net/minecraft/client/gui/screens/advancements/AdvancementsScreen/f_97331_ net/minecraft/client/gui/screens/advancements/AdvancementsScreen/VERY_SAD_LABEL +FD: net/minecraft/client/gui/screens/advancements/AdvancementsScreen/f_97332_ net/minecraft/client/gui/screens/advancements/AdvancementsScreen/NO_ADVANCEMENTS_LABEL +FD: net/minecraft/client/gui/screens/advancements/AdvancementsScreen/f_97333_ net/minecraft/client/gui/screens/advancements/AdvancementsScreen/TITLE +FD: net/minecraft/client/gui/screens/advancements/AdvancementsScreen/f_97334_ net/minecraft/client/gui/screens/advancements/AdvancementsScreen/advancements +FD: net/minecraft/client/gui/screens/advancements/AdvancementsScreen/f_97335_ net/minecraft/client/gui/screens/advancements/AdvancementsScreen/tabs +FD: net/minecraft/client/gui/screens/advancements/AdvancementsScreen/f_97336_ net/minecraft/client/gui/screens/advancements/AdvancementsScreen/selectedTab +FD: net/minecraft/client/gui/screens/advancements/AdvancementsScreen/f_97337_ net/minecraft/client/gui/screens/advancements/AdvancementsScreen/isScrolling +FD: net/minecraft/client/gui/screens/controls/ControlsScreen/f_202378_ net/minecraft/client/gui/screens/controls/ControlsScreen/ROW_SPACING +FD: net/minecraft/client/gui/screens/controls/KeyBindsList/f_193858_ net/minecraft/client/gui/screens/controls/KeyBindsList/keyBindsScreen +FD: net/minecraft/client/gui/screens/controls/KeyBindsList/f_193859_ net/minecraft/client/gui/screens/controls/KeyBindsList/maxNameWidth +FD: net/minecraft/client/gui/screens/controls/KeyBindsList$CategoryEntry/f_193881_ net/minecraft/client/gui/screens/controls/KeyBindsList$CategoryEntry/this$0 +FD: net/minecraft/client/gui/screens/controls/KeyBindsList$CategoryEntry/f_193882_ net/minecraft/client/gui/screens/controls/KeyBindsList$CategoryEntry/name +FD: net/minecraft/client/gui/screens/controls/KeyBindsList$CategoryEntry/f_193883_ net/minecraft/client/gui/screens/controls/KeyBindsList$CategoryEntry/width +FD: net/minecraft/client/gui/screens/controls/KeyBindsList$CategoryEntry$1/f_193902_ net/minecraft/client/gui/screens/controls/KeyBindsList$CategoryEntry$1/this$1 +FD: net/minecraft/client/gui/screens/controls/KeyBindsList$KeyEntry/f_193909_ net/minecraft/client/gui/screens/controls/KeyBindsList$KeyEntry/this$0 +FD: net/minecraft/client/gui/screens/controls/KeyBindsList$KeyEntry/f_193910_ net/minecraft/client/gui/screens/controls/KeyBindsList$KeyEntry/key +FD: net/minecraft/client/gui/screens/controls/KeyBindsList$KeyEntry/f_193911_ net/minecraft/client/gui/screens/controls/KeyBindsList$KeyEntry/name +FD: net/minecraft/client/gui/screens/controls/KeyBindsList$KeyEntry/f_193912_ net/minecraft/client/gui/screens/controls/KeyBindsList$KeyEntry/changeButton +FD: net/minecraft/client/gui/screens/controls/KeyBindsList$KeyEntry/f_193913_ net/minecraft/client/gui/screens/controls/KeyBindsList$KeyEntry/resetButton +FD: net/minecraft/client/gui/screens/controls/KeyBindsList$KeyEntry/f_268447_ net/minecraft/client/gui/screens/controls/KeyBindsList$KeyEntry/hasCollision +FD: net/minecraft/client/gui/screens/controls/KeyBindsScreen/f_193975_ net/minecraft/client/gui/screens/controls/KeyBindsScreen/selectedKey +FD: net/minecraft/client/gui/screens/controls/KeyBindsScreen/f_193976_ net/minecraft/client/gui/screens/controls/KeyBindsScreen/lastKeySelection +FD: net/minecraft/client/gui/screens/controls/KeyBindsScreen/f_193977_ net/minecraft/client/gui/screens/controls/KeyBindsScreen/keyBindsList +FD: net/minecraft/client/gui/screens/controls/KeyBindsScreen/f_193978_ net/minecraft/client/gui/screens/controls/KeyBindsScreen/resetButton +FD: net/minecraft/client/gui/screens/debug/GameModeSwitcherScreen/f_169582_ net/minecraft/client/gui/screens/debug/GameModeSwitcherScreen/SPRITE_SHEET_WIDTH +FD: net/minecraft/client/gui/screens/debug/GameModeSwitcherScreen/f_169583_ net/minecraft/client/gui/screens/debug/GameModeSwitcherScreen/SPRITE_SHEET_HEIGHT +FD: net/minecraft/client/gui/screens/debug/GameModeSwitcherScreen/f_169584_ net/minecraft/client/gui/screens/debug/GameModeSwitcherScreen/SLOT_AREA +FD: net/minecraft/client/gui/screens/debug/GameModeSwitcherScreen/f_169585_ net/minecraft/client/gui/screens/debug/GameModeSwitcherScreen/SLOT_PADDING +FD: net/minecraft/client/gui/screens/debug/GameModeSwitcherScreen/f_169586_ net/minecraft/client/gui/screens/debug/GameModeSwitcherScreen/SLOT_AREA_PADDED +FD: net/minecraft/client/gui/screens/debug/GameModeSwitcherScreen/f_169587_ net/minecraft/client/gui/screens/debug/GameModeSwitcherScreen/HELP_TIPS_OFFSET_Y +FD: net/minecraft/client/gui/screens/debug/GameModeSwitcherScreen/f_97541_ net/minecraft/client/gui/screens/debug/GameModeSwitcherScreen/GAMEMODE_SWITCHER_LOCATION +FD: net/minecraft/client/gui/screens/debug/GameModeSwitcherScreen/f_97542_ net/minecraft/client/gui/screens/debug/GameModeSwitcherScreen/ALL_SLOTS_WIDTH +FD: net/minecraft/client/gui/screens/debug/GameModeSwitcherScreen/f_97543_ net/minecraft/client/gui/screens/debug/GameModeSwitcherScreen/SELECT_KEY +FD: net/minecraft/client/gui/screens/debug/GameModeSwitcherScreen/f_97544_ net/minecraft/client/gui/screens/debug/GameModeSwitcherScreen/previousHovered +FD: net/minecraft/client/gui/screens/debug/GameModeSwitcherScreen/f_97545_ net/minecraft/client/gui/screens/debug/GameModeSwitcherScreen/currentlyHovered +FD: net/minecraft/client/gui/screens/debug/GameModeSwitcherScreen/f_97546_ net/minecraft/client/gui/screens/debug/GameModeSwitcherScreen/firstMouseX +FD: net/minecraft/client/gui/screens/debug/GameModeSwitcherScreen/f_97547_ net/minecraft/client/gui/screens/debug/GameModeSwitcherScreen/firstMouseY +FD: net/minecraft/client/gui/screens/debug/GameModeSwitcherScreen/f_97548_ net/minecraft/client/gui/screens/debug/GameModeSwitcherScreen/setFirstMousePos +FD: net/minecraft/client/gui/screens/debug/GameModeSwitcherScreen/f_97549_ net/minecraft/client/gui/screens/debug/GameModeSwitcherScreen/slots +FD: net/minecraft/client/gui/screens/debug/GameModeSwitcherScreen$1/f_97578_ net/minecraft/client/gui/screens/debug/GameModeSwitcherScreen$1/$SwitchMap$net$minecraft$client$gui$screens$debug$GameModeSwitcherScreen$GameModeIcon +FD: net/minecraft/client/gui/screens/debug/GameModeSwitcherScreen$1/f_97579_ net/minecraft/client/gui/screens/debug/GameModeSwitcherScreen$1/$SwitchMap$net$minecraft$world$level$GameType +FD: net/minecraft/client/gui/screens/debug/GameModeSwitcherScreen$GameModeIcon/$VALUES net/minecraft/client/gui/screens/debug/GameModeSwitcherScreen$GameModeIcon/$VALUES +FD: net/minecraft/client/gui/screens/debug/GameModeSwitcherScreen$GameModeIcon/ADVENTURE net/minecraft/client/gui/screens/debug/GameModeSwitcherScreen$GameModeIcon/ADVENTURE +FD: net/minecraft/client/gui/screens/debug/GameModeSwitcherScreen$GameModeIcon/CREATIVE net/minecraft/client/gui/screens/debug/GameModeSwitcherScreen$GameModeIcon/CREATIVE +FD: net/minecraft/client/gui/screens/debug/GameModeSwitcherScreen$GameModeIcon/SPECTATOR net/minecraft/client/gui/screens/debug/GameModeSwitcherScreen$GameModeIcon/SPECTATOR +FD: net/minecraft/client/gui/screens/debug/GameModeSwitcherScreen$GameModeIcon/SURVIVAL net/minecraft/client/gui/screens/debug/GameModeSwitcherScreen$GameModeIcon/SURVIVAL +FD: net/minecraft/client/gui/screens/debug/GameModeSwitcherScreen$GameModeIcon/f_169590_ net/minecraft/client/gui/screens/debug/GameModeSwitcherScreen$GameModeIcon/ICON_TOP_LEFT +FD: net/minecraft/client/gui/screens/debug/GameModeSwitcherScreen$GameModeIcon/f_169591_ net/minecraft/client/gui/screens/debug/GameModeSwitcherScreen$GameModeIcon/ICON_AREA +FD: net/minecraft/client/gui/screens/debug/GameModeSwitcherScreen$GameModeIcon/f_97585_ net/minecraft/client/gui/screens/debug/GameModeSwitcherScreen$GameModeIcon/VALUES +FD: net/minecraft/client/gui/screens/debug/GameModeSwitcherScreen$GameModeIcon/f_97586_ net/minecraft/client/gui/screens/debug/GameModeSwitcherScreen$GameModeIcon/name +FD: net/minecraft/client/gui/screens/debug/GameModeSwitcherScreen$GameModeIcon/f_97587_ net/minecraft/client/gui/screens/debug/GameModeSwitcherScreen$GameModeIcon/command +FD: net/minecraft/client/gui/screens/debug/GameModeSwitcherScreen$GameModeIcon/f_97588_ net/minecraft/client/gui/screens/debug/GameModeSwitcherScreen$GameModeIcon/renderStack +FD: net/minecraft/client/gui/screens/debug/GameModeSwitcherScreen$GameModeSlot/f_97622_ net/minecraft/client/gui/screens/debug/GameModeSwitcherScreen$GameModeSlot/this$0 +FD: net/minecraft/client/gui/screens/debug/GameModeSwitcherScreen$GameModeSlot/f_97623_ net/minecraft/client/gui/screens/debug/GameModeSwitcherScreen$GameModeSlot/icon +FD: net/minecraft/client/gui/screens/debug/GameModeSwitcherScreen$GameModeSlot/f_97624_ net/minecraft/client/gui/screens/debug/GameModeSwitcherScreen$GameModeSlot/isSelected +FD: net/minecraft/client/gui/screens/inventory/AbstractCommandBlockEditScreen/f_97646_ net/minecraft/client/gui/screens/inventory/AbstractCommandBlockEditScreen/commandEdit +FD: net/minecraft/client/gui/screens/inventory/AbstractCommandBlockEditScreen/f_97647_ net/minecraft/client/gui/screens/inventory/AbstractCommandBlockEditScreen/previousEdit +FD: net/minecraft/client/gui/screens/inventory/AbstractCommandBlockEditScreen/f_97648_ net/minecraft/client/gui/screens/inventory/AbstractCommandBlockEditScreen/doneButton +FD: net/minecraft/client/gui/screens/inventory/AbstractCommandBlockEditScreen/f_97649_ net/minecraft/client/gui/screens/inventory/AbstractCommandBlockEditScreen/cancelButton +FD: net/minecraft/client/gui/screens/inventory/AbstractCommandBlockEditScreen/f_97650_ net/minecraft/client/gui/screens/inventory/AbstractCommandBlockEditScreen/outputButton +FD: net/minecraft/client/gui/screens/inventory/AbstractCommandBlockEditScreen/f_97652_ net/minecraft/client/gui/screens/inventory/AbstractCommandBlockEditScreen/SET_COMMAND_LABEL +FD: net/minecraft/client/gui/screens/inventory/AbstractCommandBlockEditScreen/f_97653_ net/minecraft/client/gui/screens/inventory/AbstractCommandBlockEditScreen/COMMAND_LABEL +FD: net/minecraft/client/gui/screens/inventory/AbstractCommandBlockEditScreen/f_97654_ net/minecraft/client/gui/screens/inventory/AbstractCommandBlockEditScreen/PREVIOUS_OUTPUT_LABEL +FD: net/minecraft/client/gui/screens/inventory/AbstractCommandBlockEditScreen/f_97655_ net/minecraft/client/gui/screens/inventory/AbstractCommandBlockEditScreen/commandSuggestions +FD: net/minecraft/client/gui/screens/inventory/AbstractCommandBlockEditScreen$1/f_97696_ net/minecraft/client/gui/screens/inventory/AbstractCommandBlockEditScreen$1/this$0 +FD: net/minecraft/client/gui/screens/inventory/AbstractContainerScreen/f_169600_ net/minecraft/client/gui/screens/inventory/AbstractContainerScreen/QUICKDROP_DELAY +FD: net/minecraft/client/gui/screens/inventory/AbstractContainerScreen/f_169602_ net/minecraft/client/gui/screens/inventory/AbstractContainerScreen/HOVER_ITEM_BLIT_OFFSET +FD: net/minecraft/client/gui/screens/inventory/AbstractContainerScreen/f_169603_ net/minecraft/client/gui/screens/inventory/AbstractContainerScreen/SLOT_ITEM_BLIT_OFFSET +FD: net/minecraft/client/gui/screens/inventory/AbstractContainerScreen/f_169604_ net/minecraft/client/gui/screens/inventory/AbstractContainerScreen/playerInventoryTitle +FD: net/minecraft/client/gui/screens/inventory/AbstractContainerScreen/f_169605_ net/minecraft/client/gui/screens/inventory/AbstractContainerScreen/SNAPBACK_SPEED +FD: net/minecraft/client/gui/screens/inventory/AbstractContainerScreen/f_97706_ net/minecraft/client/gui/screens/inventory/AbstractContainerScreen/clickedSlot +FD: net/minecraft/client/gui/screens/inventory/AbstractContainerScreen/f_97707_ net/minecraft/client/gui/screens/inventory/AbstractContainerScreen/snapbackEnd +FD: net/minecraft/client/gui/screens/inventory/AbstractContainerScreen/f_97708_ net/minecraft/client/gui/screens/inventory/AbstractContainerScreen/quickdropSlot +FD: net/minecraft/client/gui/screens/inventory/AbstractContainerScreen/f_97709_ net/minecraft/client/gui/screens/inventory/AbstractContainerScreen/lastClickSlot +FD: net/minecraft/client/gui/screens/inventory/AbstractContainerScreen/f_97710_ net/minecraft/client/gui/screens/inventory/AbstractContainerScreen/isSplittingStack +FD: net/minecraft/client/gui/screens/inventory/AbstractContainerScreen/f_97711_ net/minecraft/client/gui/screens/inventory/AbstractContainerScreen/draggingItem +FD: net/minecraft/client/gui/screens/inventory/AbstractContainerScreen/f_97712_ net/minecraft/client/gui/screens/inventory/AbstractContainerScreen/snapbackStartX +FD: net/minecraft/client/gui/screens/inventory/AbstractContainerScreen/f_97713_ net/minecraft/client/gui/screens/inventory/AbstractContainerScreen/snapbackStartY +FD: net/minecraft/client/gui/screens/inventory/AbstractContainerScreen/f_97714_ net/minecraft/client/gui/screens/inventory/AbstractContainerScreen/snapbackTime +FD: net/minecraft/client/gui/screens/inventory/AbstractContainerScreen/f_97715_ net/minecraft/client/gui/screens/inventory/AbstractContainerScreen/snapbackItem +FD: net/minecraft/client/gui/screens/inventory/AbstractContainerScreen/f_97716_ net/minecraft/client/gui/screens/inventory/AbstractContainerScreen/quickdropTime +FD: net/minecraft/client/gui/screens/inventory/AbstractContainerScreen/f_97717_ net/minecraft/client/gui/screens/inventory/AbstractContainerScreen/quickCraftingType +FD: net/minecraft/client/gui/screens/inventory/AbstractContainerScreen/f_97718_ net/minecraft/client/gui/screens/inventory/AbstractContainerScreen/quickCraftingButton +FD: net/minecraft/client/gui/screens/inventory/AbstractContainerScreen/f_97719_ net/minecraft/client/gui/screens/inventory/AbstractContainerScreen/skipNextRelease +FD: net/minecraft/client/gui/screens/inventory/AbstractContainerScreen/f_97720_ net/minecraft/client/gui/screens/inventory/AbstractContainerScreen/quickCraftingRemainder +FD: net/minecraft/client/gui/screens/inventory/AbstractContainerScreen/f_97721_ net/minecraft/client/gui/screens/inventory/AbstractContainerScreen/lastClickTime +FD: net/minecraft/client/gui/screens/inventory/AbstractContainerScreen/f_97722_ net/minecraft/client/gui/screens/inventory/AbstractContainerScreen/lastClickButton +FD: net/minecraft/client/gui/screens/inventory/AbstractContainerScreen/f_97723_ net/minecraft/client/gui/screens/inventory/AbstractContainerScreen/doubleclick +FD: net/minecraft/client/gui/screens/inventory/AbstractContainerScreen/f_97724_ net/minecraft/client/gui/screens/inventory/AbstractContainerScreen/lastQuickMoved +FD: net/minecraft/client/gui/screens/inventory/AbstractContainerScreen/f_97725_ net/minecraft/client/gui/screens/inventory/AbstractContainerScreen/INVENTORY_LOCATION +FD: net/minecraft/client/gui/screens/inventory/AbstractContainerScreen/f_97726_ net/minecraft/client/gui/screens/inventory/AbstractContainerScreen/imageWidth +FD: net/minecraft/client/gui/screens/inventory/AbstractContainerScreen/f_97727_ net/minecraft/client/gui/screens/inventory/AbstractContainerScreen/imageHeight +FD: net/minecraft/client/gui/screens/inventory/AbstractContainerScreen/f_97728_ net/minecraft/client/gui/screens/inventory/AbstractContainerScreen/titleLabelX +FD: net/minecraft/client/gui/screens/inventory/AbstractContainerScreen/f_97729_ net/minecraft/client/gui/screens/inventory/AbstractContainerScreen/titleLabelY +FD: net/minecraft/client/gui/screens/inventory/AbstractContainerScreen/f_97730_ net/minecraft/client/gui/screens/inventory/AbstractContainerScreen/inventoryLabelX +FD: net/minecraft/client/gui/screens/inventory/AbstractContainerScreen/f_97731_ net/minecraft/client/gui/screens/inventory/AbstractContainerScreen/inventoryLabelY +FD: net/minecraft/client/gui/screens/inventory/AbstractContainerScreen/f_97732_ net/minecraft/client/gui/screens/inventory/AbstractContainerScreen/menu +FD: net/minecraft/client/gui/screens/inventory/AbstractContainerScreen/f_97734_ net/minecraft/client/gui/screens/inventory/AbstractContainerScreen/hoveredSlot +FD: net/minecraft/client/gui/screens/inventory/AbstractContainerScreen/f_97735_ net/minecraft/client/gui/screens/inventory/AbstractContainerScreen/leftPos +FD: net/minecraft/client/gui/screens/inventory/AbstractContainerScreen/f_97736_ net/minecraft/client/gui/screens/inventory/AbstractContainerScreen/topPos +FD: net/minecraft/client/gui/screens/inventory/AbstractContainerScreen/f_97737_ net/minecraft/client/gui/screens/inventory/AbstractContainerScreen/quickCraftSlots +FD: net/minecraft/client/gui/screens/inventory/AbstractContainerScreen/f_97738_ net/minecraft/client/gui/screens/inventory/AbstractContainerScreen/isQuickCrafting +FD: net/minecraft/client/gui/screens/inventory/AbstractFurnaceScreen/f_97819_ net/minecraft/client/gui/screens/inventory/AbstractFurnaceScreen/recipeBookComponent +FD: net/minecraft/client/gui/screens/inventory/AbstractFurnaceScreen/f_97820_ net/minecraft/client/gui/screens/inventory/AbstractFurnaceScreen/RECIPE_BUTTON_LOCATION +FD: net/minecraft/client/gui/screens/inventory/AbstractFurnaceScreen/f_97821_ net/minecraft/client/gui/screens/inventory/AbstractFurnaceScreen/widthTooNarrow +FD: net/minecraft/client/gui/screens/inventory/AbstractFurnaceScreen/f_97822_ net/minecraft/client/gui/screens/inventory/AbstractFurnaceScreen/texture +FD: net/minecraft/client/gui/screens/inventory/AbstractSignEditScreen/f_243993_ net/minecraft/client/gui/screens/inventory/AbstractSignEditScreen/signField +FD: net/minecraft/client/gui/screens/inventory/AbstractSignEditScreen/f_244069_ net/minecraft/client/gui/screens/inventory/AbstractSignEditScreen/woodType +FD: net/minecraft/client/gui/screens/inventory/AbstractSignEditScreen/f_244140_ net/minecraft/client/gui/screens/inventory/AbstractSignEditScreen/sign +FD: net/minecraft/client/gui/screens/inventory/AbstractSignEditScreen/f_244359_ net/minecraft/client/gui/screens/inventory/AbstractSignEditScreen/messages +FD: net/minecraft/client/gui/screens/inventory/AbstractSignEditScreen/f_244562_ net/minecraft/client/gui/screens/inventory/AbstractSignEditScreen/line +FD: net/minecraft/client/gui/screens/inventory/AbstractSignEditScreen/f_244564_ net/minecraft/client/gui/screens/inventory/AbstractSignEditScreen/frame +FD: net/minecraft/client/gui/screens/inventory/AbstractSignEditScreen/f_276451_ net/minecraft/client/gui/screens/inventory/AbstractSignEditScreen/isFrontText +FD: net/minecraft/client/gui/screens/inventory/AbstractSignEditScreen/f_276619_ net/minecraft/client/gui/screens/inventory/AbstractSignEditScreen/text +FD: net/minecraft/client/gui/screens/inventory/AnvilScreen/f_169611_ net/minecraft/client/gui/screens/inventory/AnvilScreen/player +FD: net/minecraft/client/gui/screens/inventory/AnvilScreen/f_97869_ net/minecraft/client/gui/screens/inventory/AnvilScreen/ANVIL_LOCATION +FD: net/minecraft/client/gui/screens/inventory/AnvilScreen/f_97870_ net/minecraft/client/gui/screens/inventory/AnvilScreen/TOO_EXPENSIVE_TEXT +FD: net/minecraft/client/gui/screens/inventory/AnvilScreen/f_97871_ net/minecraft/client/gui/screens/inventory/AnvilScreen/name +FD: net/minecraft/client/gui/screens/inventory/BeaconScreen/f_169612_ net/minecraft/client/gui/screens/inventory/BeaconScreen/beaconButtons +FD: net/minecraft/client/gui/screens/inventory/BeaconScreen/f_97903_ net/minecraft/client/gui/screens/inventory/BeaconScreen/BEACON_LOCATION +FD: net/minecraft/client/gui/screens/inventory/BeaconScreen/f_97904_ net/minecraft/client/gui/screens/inventory/BeaconScreen/PRIMARY_EFFECT_LABEL +FD: net/minecraft/client/gui/screens/inventory/BeaconScreen/f_97905_ net/minecraft/client/gui/screens/inventory/BeaconScreen/SECONDARY_EFFECT_LABEL +FD: net/minecraft/client/gui/screens/inventory/BeaconScreen/f_97908_ net/minecraft/client/gui/screens/inventory/BeaconScreen/primary +FD: net/minecraft/client/gui/screens/inventory/BeaconScreen/f_97909_ net/minecraft/client/gui/screens/inventory/BeaconScreen/secondary +FD: net/minecraft/client/gui/screens/inventory/BeaconScreen$1/f_97963_ net/minecraft/client/gui/screens/inventory/BeaconScreen$1/val$menu +FD: net/minecraft/client/gui/screens/inventory/BeaconScreen$1/f_97964_ net/minecraft/client/gui/screens/inventory/BeaconScreen$1/this$0 +FD: net/minecraft/client/gui/screens/inventory/BeaconScreen$BeaconCancelButton/f_97979_ net/minecraft/client/gui/screens/inventory/BeaconScreen$BeaconCancelButton/this$0 +FD: net/minecraft/client/gui/screens/inventory/BeaconScreen$BeaconConfirmButton/f_97989_ net/minecraft/client/gui/screens/inventory/BeaconScreen$BeaconConfirmButton/this$0 +FD: net/minecraft/client/gui/screens/inventory/BeaconScreen$BeaconPowerButton/f_169639_ net/minecraft/client/gui/screens/inventory/BeaconScreen$BeaconPowerButton/tier +FD: net/minecraft/client/gui/screens/inventory/BeaconScreen$BeaconPowerButton/f_97999_ net/minecraft/client/gui/screens/inventory/BeaconScreen$BeaconPowerButton/this$0 +FD: net/minecraft/client/gui/screens/inventory/BeaconScreen$BeaconPowerButton/f_98000_ net/minecraft/client/gui/screens/inventory/BeaconScreen$BeaconPowerButton/effect +FD: net/minecraft/client/gui/screens/inventory/BeaconScreen$BeaconPowerButton/f_98001_ net/minecraft/client/gui/screens/inventory/BeaconScreen$BeaconPowerButton/sprite +FD: net/minecraft/client/gui/screens/inventory/BeaconScreen$BeaconPowerButton/f_98002_ net/minecraft/client/gui/screens/inventory/BeaconScreen$BeaconPowerButton/isPrimary +FD: net/minecraft/client/gui/screens/inventory/BeaconScreen$BeaconScreenButton/f_98020_ net/minecraft/client/gui/screens/inventory/BeaconScreen$BeaconScreenButton/selected +FD: net/minecraft/client/gui/screens/inventory/BeaconScreen$BeaconSpriteScreenButton/f_98033_ net/minecraft/client/gui/screens/inventory/BeaconScreen$BeaconSpriteScreenButton/iconX +FD: net/minecraft/client/gui/screens/inventory/BeaconScreen$BeaconSpriteScreenButton/f_98034_ net/minecraft/client/gui/screens/inventory/BeaconScreen$BeaconSpriteScreenButton/iconY +FD: net/minecraft/client/gui/screens/inventory/BeaconScreen$BeaconUpgradePowerButton/f_169672_ net/minecraft/client/gui/screens/inventory/BeaconScreen$BeaconUpgradePowerButton/this$0 +FD: net/minecraft/client/gui/screens/inventory/BlastFurnaceScreen/f_98042_ net/minecraft/client/gui/screens/inventory/BlastFurnaceScreen/TEXTURE +FD: net/minecraft/client/gui/screens/inventory/BookEditScreen/f_169682_ net/minecraft/client/gui/screens/inventory/BookEditScreen/TEXT_WIDTH +FD: net/minecraft/client/gui/screens/inventory/BookEditScreen/f_169683_ net/minecraft/client/gui/screens/inventory/BookEditScreen/TEXT_HEIGHT +FD: net/minecraft/client/gui/screens/inventory/BookEditScreen/f_169685_ net/minecraft/client/gui/screens/inventory/BookEditScreen/IMAGE_WIDTH +FD: net/minecraft/client/gui/screens/inventory/BookEditScreen/f_169686_ net/minecraft/client/gui/screens/inventory/BookEditScreen/IMAGE_HEIGHT +FD: net/minecraft/client/gui/screens/inventory/BookEditScreen/f_98048_ net/minecraft/client/gui/screens/inventory/BookEditScreen/lastClickTime +FD: net/minecraft/client/gui/screens/inventory/BookEditScreen/f_98049_ net/minecraft/client/gui/screens/inventory/BookEditScreen/lastIndex +FD: net/minecraft/client/gui/screens/inventory/BookEditScreen/f_98050_ net/minecraft/client/gui/screens/inventory/BookEditScreen/forwardButton +FD: net/minecraft/client/gui/screens/inventory/BookEditScreen/f_98051_ net/minecraft/client/gui/screens/inventory/BookEditScreen/backButton +FD: net/minecraft/client/gui/screens/inventory/BookEditScreen/f_98052_ net/minecraft/client/gui/screens/inventory/BookEditScreen/doneButton +FD: net/minecraft/client/gui/screens/inventory/BookEditScreen/f_98053_ net/minecraft/client/gui/screens/inventory/BookEditScreen/signButton +FD: net/minecraft/client/gui/screens/inventory/BookEditScreen/f_98054_ net/minecraft/client/gui/screens/inventory/BookEditScreen/finalizeButton +FD: net/minecraft/client/gui/screens/inventory/BookEditScreen/f_98055_ net/minecraft/client/gui/screens/inventory/BookEditScreen/cancelButton +FD: net/minecraft/client/gui/screens/inventory/BookEditScreen/f_98056_ net/minecraft/client/gui/screens/inventory/BookEditScreen/hand +FD: net/minecraft/client/gui/screens/inventory/BookEditScreen/f_98057_ net/minecraft/client/gui/screens/inventory/BookEditScreen/displayCache +FD: net/minecraft/client/gui/screens/inventory/BookEditScreen/f_98058_ net/minecraft/client/gui/screens/inventory/BookEditScreen/pageMsg +FD: net/minecraft/client/gui/screens/inventory/BookEditScreen/f_98059_ net/minecraft/client/gui/screens/inventory/BookEditScreen/ownerText +FD: net/minecraft/client/gui/screens/inventory/BookEditScreen/f_98060_ net/minecraft/client/gui/screens/inventory/BookEditScreen/EDIT_TITLE_LABEL +FD: net/minecraft/client/gui/screens/inventory/BookEditScreen/f_98061_ net/minecraft/client/gui/screens/inventory/BookEditScreen/FINALIZE_WARNING_LABEL +FD: net/minecraft/client/gui/screens/inventory/BookEditScreen/f_98062_ net/minecraft/client/gui/screens/inventory/BookEditScreen/BLACK_CURSOR +FD: net/minecraft/client/gui/screens/inventory/BookEditScreen/f_98063_ net/minecraft/client/gui/screens/inventory/BookEditScreen/GRAY_CURSOR +FD: net/minecraft/client/gui/screens/inventory/BookEditScreen/f_98064_ net/minecraft/client/gui/screens/inventory/BookEditScreen/owner +FD: net/minecraft/client/gui/screens/inventory/BookEditScreen/f_98065_ net/minecraft/client/gui/screens/inventory/BookEditScreen/book +FD: net/minecraft/client/gui/screens/inventory/BookEditScreen/f_98066_ net/minecraft/client/gui/screens/inventory/BookEditScreen/isModified +FD: net/minecraft/client/gui/screens/inventory/BookEditScreen/f_98067_ net/minecraft/client/gui/screens/inventory/BookEditScreen/isSigning +FD: net/minecraft/client/gui/screens/inventory/BookEditScreen/f_98068_ net/minecraft/client/gui/screens/inventory/BookEditScreen/frameTick +FD: net/minecraft/client/gui/screens/inventory/BookEditScreen/f_98069_ net/minecraft/client/gui/screens/inventory/BookEditScreen/currentPage +FD: net/minecraft/client/gui/screens/inventory/BookEditScreen/f_98070_ net/minecraft/client/gui/screens/inventory/BookEditScreen/pages +FD: net/minecraft/client/gui/screens/inventory/BookEditScreen/f_98071_ net/minecraft/client/gui/screens/inventory/BookEditScreen/title +FD: net/minecraft/client/gui/screens/inventory/BookEditScreen/f_98072_ net/minecraft/client/gui/screens/inventory/BookEditScreen/pageEdit +FD: net/minecraft/client/gui/screens/inventory/BookEditScreen/f_98073_ net/minecraft/client/gui/screens/inventory/BookEditScreen/titleEdit +FD: net/minecraft/client/gui/screens/inventory/BookEditScreen$DisplayCache/f_98192_ net/minecraft/client/gui/screens/inventory/BookEditScreen$DisplayCache/EMPTY +FD: net/minecraft/client/gui/screens/inventory/BookEditScreen$DisplayCache/f_98193_ net/minecraft/client/gui/screens/inventory/BookEditScreen$DisplayCache/fullText +FD: net/minecraft/client/gui/screens/inventory/BookEditScreen$DisplayCache/f_98194_ net/minecraft/client/gui/screens/inventory/BookEditScreen$DisplayCache/cursor +FD: net/minecraft/client/gui/screens/inventory/BookEditScreen$DisplayCache/f_98195_ net/minecraft/client/gui/screens/inventory/BookEditScreen$DisplayCache/cursorAtEnd +FD: net/minecraft/client/gui/screens/inventory/BookEditScreen$DisplayCache/f_98196_ net/minecraft/client/gui/screens/inventory/BookEditScreen$DisplayCache/lineStarts +FD: net/minecraft/client/gui/screens/inventory/BookEditScreen$DisplayCache/f_98197_ net/minecraft/client/gui/screens/inventory/BookEditScreen$DisplayCache/lines +FD: net/minecraft/client/gui/screens/inventory/BookEditScreen$DisplayCache/f_98198_ net/minecraft/client/gui/screens/inventory/BookEditScreen$DisplayCache/selection +FD: net/minecraft/client/gui/screens/inventory/BookEditScreen$LineInfo/f_98226_ net/minecraft/client/gui/screens/inventory/BookEditScreen$LineInfo/style +FD: net/minecraft/client/gui/screens/inventory/BookEditScreen$LineInfo/f_98227_ net/minecraft/client/gui/screens/inventory/BookEditScreen$LineInfo/contents +FD: net/minecraft/client/gui/screens/inventory/BookEditScreen$LineInfo/f_98228_ net/minecraft/client/gui/screens/inventory/BookEditScreen$LineInfo/asComponent +FD: net/minecraft/client/gui/screens/inventory/BookEditScreen$LineInfo/f_98229_ net/minecraft/client/gui/screens/inventory/BookEditScreen$LineInfo/x +FD: net/minecraft/client/gui/screens/inventory/BookEditScreen$LineInfo/f_98230_ net/minecraft/client/gui/screens/inventory/BookEditScreen$LineInfo/y +FD: net/minecraft/client/gui/screens/inventory/BookEditScreen$Pos2i/f_98246_ net/minecraft/client/gui/screens/inventory/BookEditScreen$Pos2i/x +FD: net/minecraft/client/gui/screens/inventory/BookEditScreen$Pos2i/f_98247_ net/minecraft/client/gui/screens/inventory/BookEditScreen$Pos2i/y +FD: net/minecraft/client/gui/screens/inventory/BookViewScreen/f_169687_ net/minecraft/client/gui/screens/inventory/BookViewScreen/PAGE_INDICATOR_TEXT_Y_OFFSET +FD: net/minecraft/client/gui/screens/inventory/BookViewScreen/f_169688_ net/minecraft/client/gui/screens/inventory/BookViewScreen/PAGE_TEXT_X_OFFSET +FD: net/minecraft/client/gui/screens/inventory/BookViewScreen/f_169689_ net/minecraft/client/gui/screens/inventory/BookViewScreen/PAGE_TEXT_Y_OFFSET +FD: net/minecraft/client/gui/screens/inventory/BookViewScreen/f_169690_ net/minecraft/client/gui/screens/inventory/BookViewScreen/TEXT_WIDTH +FD: net/minecraft/client/gui/screens/inventory/BookViewScreen/f_169691_ net/minecraft/client/gui/screens/inventory/BookViewScreen/TEXT_HEIGHT +FD: net/minecraft/client/gui/screens/inventory/BookViewScreen/f_169692_ net/minecraft/client/gui/screens/inventory/BookViewScreen/IMAGE_WIDTH +FD: net/minecraft/client/gui/screens/inventory/BookViewScreen/f_169693_ net/minecraft/client/gui/screens/inventory/BookViewScreen/IMAGE_HEIGHT +FD: net/minecraft/client/gui/screens/inventory/BookViewScreen/f_98251_ net/minecraft/client/gui/screens/inventory/BookViewScreen/EMPTY_ACCESS +FD: net/minecraft/client/gui/screens/inventory/BookViewScreen/f_98252_ net/minecraft/client/gui/screens/inventory/BookViewScreen/BOOK_LOCATION +FD: net/minecraft/client/gui/screens/inventory/BookViewScreen/f_98253_ net/minecraft/client/gui/screens/inventory/BookViewScreen/bookAccess +FD: net/minecraft/client/gui/screens/inventory/BookViewScreen/f_98254_ net/minecraft/client/gui/screens/inventory/BookViewScreen/currentPage +FD: net/minecraft/client/gui/screens/inventory/BookViewScreen/f_98255_ net/minecraft/client/gui/screens/inventory/BookViewScreen/cachedPageComponents +FD: net/minecraft/client/gui/screens/inventory/BookViewScreen/f_98256_ net/minecraft/client/gui/screens/inventory/BookViewScreen/cachedPage +FD: net/minecraft/client/gui/screens/inventory/BookViewScreen/f_98257_ net/minecraft/client/gui/screens/inventory/BookViewScreen/pageMsg +FD: net/minecraft/client/gui/screens/inventory/BookViewScreen/f_98258_ net/minecraft/client/gui/screens/inventory/BookViewScreen/forwardButton +FD: net/minecraft/client/gui/screens/inventory/BookViewScreen/f_98259_ net/minecraft/client/gui/screens/inventory/BookViewScreen/backButton +FD: net/minecraft/client/gui/screens/inventory/BookViewScreen/f_98260_ net/minecraft/client/gui/screens/inventory/BookViewScreen/playTurnSound +FD: net/minecraft/client/gui/screens/inventory/BookViewScreen$WritableBookAccess/f_98312_ net/minecraft/client/gui/screens/inventory/BookViewScreen$WritableBookAccess/pages +FD: net/minecraft/client/gui/screens/inventory/BookViewScreen$WrittenBookAccess/f_98320_ net/minecraft/client/gui/screens/inventory/BookViewScreen$WrittenBookAccess/pages +FD: net/minecraft/client/gui/screens/inventory/BrewingStandScreen/f_98328_ net/minecraft/client/gui/screens/inventory/BrewingStandScreen/BREWING_STAND_LOCATION +FD: net/minecraft/client/gui/screens/inventory/BrewingStandScreen/f_98329_ net/minecraft/client/gui/screens/inventory/BrewingStandScreen/BUBBLELENGTHS +FD: net/minecraft/client/gui/screens/inventory/CartographyTableScreen/f_98346_ net/minecraft/client/gui/screens/inventory/CartographyTableScreen/BG_LOCATION +FD: net/minecraft/client/gui/screens/inventory/CommandBlockEditScreen/f_98374_ net/minecraft/client/gui/screens/inventory/CommandBlockEditScreen/autoCommandBlock +FD: net/minecraft/client/gui/screens/inventory/CommandBlockEditScreen/f_98375_ net/minecraft/client/gui/screens/inventory/CommandBlockEditScreen/modeButton +FD: net/minecraft/client/gui/screens/inventory/CommandBlockEditScreen/f_98376_ net/minecraft/client/gui/screens/inventory/CommandBlockEditScreen/conditionalButton +FD: net/minecraft/client/gui/screens/inventory/CommandBlockEditScreen/f_98377_ net/minecraft/client/gui/screens/inventory/CommandBlockEditScreen/autoexecButton +FD: net/minecraft/client/gui/screens/inventory/CommandBlockEditScreen/f_98378_ net/minecraft/client/gui/screens/inventory/CommandBlockEditScreen/mode +FD: net/minecraft/client/gui/screens/inventory/CommandBlockEditScreen/f_98379_ net/minecraft/client/gui/screens/inventory/CommandBlockEditScreen/conditional +FD: net/minecraft/client/gui/screens/inventory/CommandBlockEditScreen/f_98380_ net/minecraft/client/gui/screens/inventory/CommandBlockEditScreen/autoexec +FD: net/minecraft/client/gui/screens/inventory/CommandBlockEditScreen$1/f_98403_ net/minecraft/client/gui/screens/inventory/CommandBlockEditScreen$1/$SwitchMap$net$minecraft$world$level$block$entity$CommandBlockEntity$Mode +FD: net/minecraft/client/gui/screens/inventory/ContainerScreen/f_98405_ net/minecraft/client/gui/screens/inventory/ContainerScreen/CONTAINER_BACKGROUND +FD: net/minecraft/client/gui/screens/inventory/ContainerScreen/f_98406_ net/minecraft/client/gui/screens/inventory/ContainerScreen/containerRows +FD: net/minecraft/client/gui/screens/inventory/CraftingScreen/f_98442_ net/minecraft/client/gui/screens/inventory/CraftingScreen/CRAFTING_TABLE_LOCATION +FD: net/minecraft/client/gui/screens/inventory/CraftingScreen/f_98443_ net/minecraft/client/gui/screens/inventory/CraftingScreen/RECIPE_BUTTON_LOCATION +FD: net/minecraft/client/gui/screens/inventory/CraftingScreen/f_98444_ net/minecraft/client/gui/screens/inventory/CraftingScreen/recipeBookComponent +FD: net/minecraft/client/gui/screens/inventory/CraftingScreen/f_98445_ net/minecraft/client/gui/screens/inventory/CraftingScreen/widthTooNarrow +FD: net/minecraft/client/gui/screens/inventory/CreativeInventoryListener/f_98490_ net/minecraft/client/gui/screens/inventory/CreativeInventoryListener/minecraft +FD: net/minecraft/client/gui/screens/inventory/CreativeModeInventoryScreen/f_169735_ net/minecraft/client/gui/screens/inventory/CreativeModeInventoryScreen/GUI_CREATIVE_TAB_PREFIX +FD: net/minecraft/client/gui/screens/inventory/CreativeModeInventoryScreen/f_169736_ net/minecraft/client/gui/screens/inventory/CreativeModeInventoryScreen/CUSTOM_SLOT_LOCK +FD: net/minecraft/client/gui/screens/inventory/CreativeModeInventoryScreen/f_169737_ net/minecraft/client/gui/screens/inventory/CreativeModeInventoryScreen/NUM_ROWS +FD: net/minecraft/client/gui/screens/inventory/CreativeModeInventoryScreen/f_169738_ net/minecraft/client/gui/screens/inventory/CreativeModeInventoryScreen/NUM_COLS +FD: net/minecraft/client/gui/screens/inventory/CreativeModeInventoryScreen/f_169739_ net/minecraft/client/gui/screens/inventory/CreativeModeInventoryScreen/TAB_WIDTH +FD: net/minecraft/client/gui/screens/inventory/CreativeModeInventoryScreen/f_169740_ net/minecraft/client/gui/screens/inventory/CreativeModeInventoryScreen/TAB_HEIGHT +FD: net/minecraft/client/gui/screens/inventory/CreativeModeInventoryScreen/f_169741_ net/minecraft/client/gui/screens/inventory/CreativeModeInventoryScreen/SCROLLER_WIDTH +FD: net/minecraft/client/gui/screens/inventory/CreativeModeInventoryScreen/f_169742_ net/minecraft/client/gui/screens/inventory/CreativeModeInventoryScreen/SCROLLER_HEIGHT +FD: net/minecraft/client/gui/screens/inventory/CreativeModeInventoryScreen/f_169743_ net/minecraft/client/gui/screens/inventory/CreativeModeInventoryScreen/TEXT_COLOR +FD: net/minecraft/client/gui/screens/inventory/CreativeModeInventoryScreen/f_256872_ net/minecraft/client/gui/screens/inventory/CreativeModeInventoryScreen/displayOperatorCreativeTab +FD: net/minecraft/client/gui/screens/inventory/CreativeModeInventoryScreen/f_98504_ net/minecraft/client/gui/screens/inventory/CreativeModeInventoryScreen/CREATIVE_TABS_LOCATION +FD: net/minecraft/client/gui/screens/inventory/CreativeModeInventoryScreen/f_98505_ net/minecraft/client/gui/screens/inventory/CreativeModeInventoryScreen/CONTAINER +FD: net/minecraft/client/gui/screens/inventory/CreativeModeInventoryScreen/f_98506_ net/minecraft/client/gui/screens/inventory/CreativeModeInventoryScreen/TRASH_SLOT_TOOLTIP +FD: net/minecraft/client/gui/screens/inventory/CreativeModeInventoryScreen/f_98507_ net/minecraft/client/gui/screens/inventory/CreativeModeInventoryScreen/selectedTab +FD: net/minecraft/client/gui/screens/inventory/CreativeModeInventoryScreen/f_98508_ net/minecraft/client/gui/screens/inventory/CreativeModeInventoryScreen/scrollOffs +FD: net/minecraft/client/gui/screens/inventory/CreativeModeInventoryScreen/f_98509_ net/minecraft/client/gui/screens/inventory/CreativeModeInventoryScreen/scrolling +FD: net/minecraft/client/gui/screens/inventory/CreativeModeInventoryScreen/f_98510_ net/minecraft/client/gui/screens/inventory/CreativeModeInventoryScreen/searchBox +FD: net/minecraft/client/gui/screens/inventory/CreativeModeInventoryScreen/f_98511_ net/minecraft/client/gui/screens/inventory/CreativeModeInventoryScreen/originalSlots +FD: net/minecraft/client/gui/screens/inventory/CreativeModeInventoryScreen/f_98512_ net/minecraft/client/gui/screens/inventory/CreativeModeInventoryScreen/destroyItemSlot +FD: net/minecraft/client/gui/screens/inventory/CreativeModeInventoryScreen/f_98513_ net/minecraft/client/gui/screens/inventory/CreativeModeInventoryScreen/listener +FD: net/minecraft/client/gui/screens/inventory/CreativeModeInventoryScreen/f_98514_ net/minecraft/client/gui/screens/inventory/CreativeModeInventoryScreen/ignoreTextInput +FD: net/minecraft/client/gui/screens/inventory/CreativeModeInventoryScreen/f_98515_ net/minecraft/client/gui/screens/inventory/CreativeModeInventoryScreen/hasClickedOutside +FD: net/minecraft/client/gui/screens/inventory/CreativeModeInventoryScreen/f_98516_ net/minecraft/client/gui/screens/inventory/CreativeModeInventoryScreen/visibleTags +FD: net/minecraft/client/gui/screens/inventory/CreativeModeInventoryScreen$ItemPickerMenu/f_169749_ net/minecraft/client/gui/screens/inventory/CreativeModeInventoryScreen$ItemPickerMenu/inventoryMenu +FD: net/minecraft/client/gui/screens/inventory/CreativeModeInventoryScreen$ItemPickerMenu/f_98639_ net/minecraft/client/gui/screens/inventory/CreativeModeInventoryScreen$ItemPickerMenu/items +FD: net/minecraft/client/gui/screens/inventory/CreativeModeInventoryScreen$SlotWrapper/f_98655_ net/minecraft/client/gui/screens/inventory/CreativeModeInventoryScreen$SlotWrapper/target +FD: net/minecraft/client/gui/screens/inventory/CyclingSlotBackground/f_265868_ net/minecraft/client/gui/screens/inventory/CyclingSlotBackground/iconIndex +FD: net/minecraft/client/gui/screens/inventory/CyclingSlotBackground/f_265871_ net/minecraft/client/gui/screens/inventory/CyclingSlotBackground/slotIndex +FD: net/minecraft/client/gui/screens/inventory/CyclingSlotBackground/f_265954_ net/minecraft/client/gui/screens/inventory/CyclingSlotBackground/ICON_TRANSITION_TICK_DURATION +FD: net/minecraft/client/gui/screens/inventory/CyclingSlotBackground/f_265991_ net/minecraft/client/gui/screens/inventory/CyclingSlotBackground/ICON_SIZE +FD: net/minecraft/client/gui/screens/inventory/CyclingSlotBackground/f_265999_ net/minecraft/client/gui/screens/inventory/CyclingSlotBackground/ICON_CHANGE_TICK_RATE +FD: net/minecraft/client/gui/screens/inventory/CyclingSlotBackground/f_266101_ net/minecraft/client/gui/screens/inventory/CyclingSlotBackground/tick +FD: net/minecraft/client/gui/screens/inventory/CyclingSlotBackground/f_266106_ net/minecraft/client/gui/screens/inventory/CyclingSlotBackground/icons +FD: net/minecraft/client/gui/screens/inventory/DispenserScreen/f_98682_ net/minecraft/client/gui/screens/inventory/DispenserScreen/CONTAINER_LOCATION +FD: net/minecraft/client/gui/screens/inventory/EnchantmentNames/f_98727_ net/minecraft/client/gui/screens/inventory/EnchantmentNames/ALT_FONT +FD: net/minecraft/client/gui/screens/inventory/EnchantmentNames/f_98728_ net/minecraft/client/gui/screens/inventory/EnchantmentNames/ROOT_STYLE +FD: net/minecraft/client/gui/screens/inventory/EnchantmentNames/f_98729_ net/minecraft/client/gui/screens/inventory/EnchantmentNames/INSTANCE +FD: net/minecraft/client/gui/screens/inventory/EnchantmentNames/f_98730_ net/minecraft/client/gui/screens/inventory/EnchantmentNames/random +FD: net/minecraft/client/gui/screens/inventory/EnchantmentNames/f_98731_ net/minecraft/client/gui/screens/inventory/EnchantmentNames/words +FD: net/minecraft/client/gui/screens/inventory/EnchantmentScreen/f_169756_ net/minecraft/client/gui/screens/inventory/EnchantmentScreen/bookModel +FD: net/minecraft/client/gui/screens/inventory/EnchantmentScreen/f_98740_ net/minecraft/client/gui/screens/inventory/EnchantmentScreen/time +FD: net/minecraft/client/gui/screens/inventory/EnchantmentScreen/f_98741_ net/minecraft/client/gui/screens/inventory/EnchantmentScreen/flip +FD: net/minecraft/client/gui/screens/inventory/EnchantmentScreen/f_98742_ net/minecraft/client/gui/screens/inventory/EnchantmentScreen/oFlip +FD: net/minecraft/client/gui/screens/inventory/EnchantmentScreen/f_98743_ net/minecraft/client/gui/screens/inventory/EnchantmentScreen/flipT +FD: net/minecraft/client/gui/screens/inventory/EnchantmentScreen/f_98744_ net/minecraft/client/gui/screens/inventory/EnchantmentScreen/flipA +FD: net/minecraft/client/gui/screens/inventory/EnchantmentScreen/f_98745_ net/minecraft/client/gui/screens/inventory/EnchantmentScreen/open +FD: net/minecraft/client/gui/screens/inventory/EnchantmentScreen/f_98746_ net/minecraft/client/gui/screens/inventory/EnchantmentScreen/oOpen +FD: net/minecraft/client/gui/screens/inventory/EnchantmentScreen/f_98747_ net/minecraft/client/gui/screens/inventory/EnchantmentScreen/ENCHANTING_TABLE_LOCATION +FD: net/minecraft/client/gui/screens/inventory/EnchantmentScreen/f_98748_ net/minecraft/client/gui/screens/inventory/EnchantmentScreen/ENCHANTING_BOOK_LOCATION +FD: net/minecraft/client/gui/screens/inventory/EnchantmentScreen/f_98750_ net/minecraft/client/gui/screens/inventory/EnchantmentScreen/random +FD: net/minecraft/client/gui/screens/inventory/EnchantmentScreen/f_98751_ net/minecraft/client/gui/screens/inventory/EnchantmentScreen/last +FD: net/minecraft/client/gui/screens/inventory/FurnaceScreen/f_98773_ net/minecraft/client/gui/screens/inventory/FurnaceScreen/TEXTURE +FD: net/minecraft/client/gui/screens/inventory/GrindstoneScreen/f_98779_ net/minecraft/client/gui/screens/inventory/GrindstoneScreen/GRINDSTONE_LOCATION +FD: net/minecraft/client/gui/screens/inventory/HangingSignEditScreen/f_243720_ net/minecraft/client/gui/screens/inventory/HangingSignEditScreen/texture +FD: net/minecraft/client/gui/screens/inventory/HangingSignEditScreen/f_243728_ net/minecraft/client/gui/screens/inventory/HangingSignEditScreen/TEXT_SCALE +FD: net/minecraft/client/gui/screens/inventory/HangingSignEditScreen/f_243962_ net/minecraft/client/gui/screens/inventory/HangingSignEditScreen/MAGIC_BACKGROUND_SCALE +FD: net/minecraft/client/gui/screens/inventory/HangingSignEditScreen/f_244207_ net/minecraft/client/gui/screens/inventory/HangingSignEditScreen/TEXTURE_HEIGHT +FD: net/minecraft/client/gui/screens/inventory/HangingSignEditScreen/f_244604_ net/minecraft/client/gui/screens/inventory/HangingSignEditScreen/TEXTURE_WIDTH +FD: net/minecraft/client/gui/screens/inventory/HopperScreen/f_98795_ net/minecraft/client/gui/screens/inventory/HopperScreen/HOPPER_LOCATION +FD: net/minecraft/client/gui/screens/inventory/HorseInventoryScreen/f_98811_ net/minecraft/client/gui/screens/inventory/HorseInventoryScreen/HORSE_INVENTORY_LOCATION +FD: net/minecraft/client/gui/screens/inventory/HorseInventoryScreen/f_98812_ net/minecraft/client/gui/screens/inventory/HorseInventoryScreen/horse +FD: net/minecraft/client/gui/screens/inventory/HorseInventoryScreen/f_98813_ net/minecraft/client/gui/screens/inventory/HorseInventoryScreen/xMouse +FD: net/minecraft/client/gui/screens/inventory/HorseInventoryScreen/f_98814_ net/minecraft/client/gui/screens/inventory/HorseInventoryScreen/yMouse +FD: net/minecraft/client/gui/screens/inventory/InventoryScreen/f_98830_ net/minecraft/client/gui/screens/inventory/InventoryScreen/RECIPE_BUTTON_LOCATION +FD: net/minecraft/client/gui/screens/inventory/InventoryScreen/f_98831_ net/minecraft/client/gui/screens/inventory/InventoryScreen/xMouse +FD: net/minecraft/client/gui/screens/inventory/InventoryScreen/f_98832_ net/minecraft/client/gui/screens/inventory/InventoryScreen/yMouse +FD: net/minecraft/client/gui/screens/inventory/InventoryScreen/f_98833_ net/minecraft/client/gui/screens/inventory/InventoryScreen/recipeBookComponent +FD: net/minecraft/client/gui/screens/inventory/InventoryScreen/f_98835_ net/minecraft/client/gui/screens/inventory/InventoryScreen/widthTooNarrow +FD: net/minecraft/client/gui/screens/inventory/InventoryScreen/f_98836_ net/minecraft/client/gui/screens/inventory/InventoryScreen/buttonClicked +FD: net/minecraft/client/gui/screens/inventory/ItemCombinerScreen/f_98899_ net/minecraft/client/gui/screens/inventory/ItemCombinerScreen/menuResource +FD: net/minecraft/client/gui/screens/inventory/JigsawBlockEditScreen/f_169762_ net/minecraft/client/gui/screens/inventory/JigsawBlockEditScreen/MAX_LEVELS +FD: net/minecraft/client/gui/screens/inventory/JigsawBlockEditScreen/f_169763_ net/minecraft/client/gui/screens/inventory/JigsawBlockEditScreen/generateButton +FD: net/minecraft/client/gui/screens/inventory/JigsawBlockEditScreen/f_98932_ net/minecraft/client/gui/screens/inventory/JigsawBlockEditScreen/joint +FD: net/minecraft/client/gui/screens/inventory/JigsawBlockEditScreen/f_98933_ net/minecraft/client/gui/screens/inventory/JigsawBlockEditScreen/JOINT_LABEL +FD: net/minecraft/client/gui/screens/inventory/JigsawBlockEditScreen/f_98934_ net/minecraft/client/gui/screens/inventory/JigsawBlockEditScreen/POOL_LABEL +FD: net/minecraft/client/gui/screens/inventory/JigsawBlockEditScreen/f_98935_ net/minecraft/client/gui/screens/inventory/JigsawBlockEditScreen/NAME_LABEL +FD: net/minecraft/client/gui/screens/inventory/JigsawBlockEditScreen/f_98936_ net/minecraft/client/gui/screens/inventory/JigsawBlockEditScreen/TARGET_LABEL +FD: net/minecraft/client/gui/screens/inventory/JigsawBlockEditScreen/f_98937_ net/minecraft/client/gui/screens/inventory/JigsawBlockEditScreen/FINAL_STATE_LABEL +FD: net/minecraft/client/gui/screens/inventory/JigsawBlockEditScreen/f_98938_ net/minecraft/client/gui/screens/inventory/JigsawBlockEditScreen/jigsawEntity +FD: net/minecraft/client/gui/screens/inventory/JigsawBlockEditScreen/f_98939_ net/minecraft/client/gui/screens/inventory/JigsawBlockEditScreen/nameEdit +FD: net/minecraft/client/gui/screens/inventory/JigsawBlockEditScreen/f_98940_ net/minecraft/client/gui/screens/inventory/JigsawBlockEditScreen/targetEdit +FD: net/minecraft/client/gui/screens/inventory/JigsawBlockEditScreen/f_98941_ net/minecraft/client/gui/screens/inventory/JigsawBlockEditScreen/poolEdit +FD: net/minecraft/client/gui/screens/inventory/JigsawBlockEditScreen/f_98942_ net/minecraft/client/gui/screens/inventory/JigsawBlockEditScreen/finalStateEdit +FD: net/minecraft/client/gui/screens/inventory/JigsawBlockEditScreen/f_98943_ net/minecraft/client/gui/screens/inventory/JigsawBlockEditScreen/levels +FD: net/minecraft/client/gui/screens/inventory/JigsawBlockEditScreen/f_98944_ net/minecraft/client/gui/screens/inventory/JigsawBlockEditScreen/keepJigsaws +FD: net/minecraft/client/gui/screens/inventory/JigsawBlockEditScreen/f_98945_ net/minecraft/client/gui/screens/inventory/JigsawBlockEditScreen/jointButton +FD: net/minecraft/client/gui/screens/inventory/JigsawBlockEditScreen/f_98946_ net/minecraft/client/gui/screens/inventory/JigsawBlockEditScreen/doneButton +FD: net/minecraft/client/gui/screens/inventory/JigsawBlockEditScreen$1/f_98996_ net/minecraft/client/gui/screens/inventory/JigsawBlockEditScreen$1/this$0 +FD: net/minecraft/client/gui/screens/inventory/LecternScreen/f_99017_ net/minecraft/client/gui/screens/inventory/LecternScreen/menu +FD: net/minecraft/client/gui/screens/inventory/LecternScreen/f_99018_ net/minecraft/client/gui/screens/inventory/LecternScreen/listener +FD: net/minecraft/client/gui/screens/inventory/LecternScreen$1/f_99046_ net/minecraft/client/gui/screens/inventory/LecternScreen$1/this$0 +FD: net/minecraft/client/gui/screens/inventory/LoomScreen/f_169776_ net/minecraft/client/gui/screens/inventory/LoomScreen/PATTERN_COLUMNS +FD: net/minecraft/client/gui/screens/inventory/LoomScreen/f_169777_ net/minecraft/client/gui/screens/inventory/LoomScreen/PATTERN_ROWS +FD: net/minecraft/client/gui/screens/inventory/LoomScreen/f_169778_ net/minecraft/client/gui/screens/inventory/LoomScreen/SCROLLER_WIDTH +FD: net/minecraft/client/gui/screens/inventory/LoomScreen/f_169779_ net/minecraft/client/gui/screens/inventory/LoomScreen/SCROLLER_HEIGHT +FD: net/minecraft/client/gui/screens/inventory/LoomScreen/f_169780_ net/minecraft/client/gui/screens/inventory/LoomScreen/PATTERN_IMAGE_SIZE +FD: net/minecraft/client/gui/screens/inventory/LoomScreen/f_169781_ net/minecraft/client/gui/screens/inventory/LoomScreen/SCROLLER_FULL_HEIGHT +FD: net/minecraft/client/gui/screens/inventory/LoomScreen/f_169782_ net/minecraft/client/gui/screens/inventory/LoomScreen/PATTERNS_X +FD: net/minecraft/client/gui/screens/inventory/LoomScreen/f_169783_ net/minecraft/client/gui/screens/inventory/LoomScreen/PATTERNS_Y +FD: net/minecraft/client/gui/screens/inventory/LoomScreen/f_232823_ net/minecraft/client/gui/screens/inventory/LoomScreen/startRow +FD: net/minecraft/client/gui/screens/inventory/LoomScreen/f_99060_ net/minecraft/client/gui/screens/inventory/LoomScreen/BG_LOCATION +FD: net/minecraft/client/gui/screens/inventory/LoomScreen/f_99062_ net/minecraft/client/gui/screens/inventory/LoomScreen/flag +FD: net/minecraft/client/gui/screens/inventory/LoomScreen/f_99063_ net/minecraft/client/gui/screens/inventory/LoomScreen/resultBannerPatterns +FD: net/minecraft/client/gui/screens/inventory/LoomScreen/f_99064_ net/minecraft/client/gui/screens/inventory/LoomScreen/bannerStack +FD: net/minecraft/client/gui/screens/inventory/LoomScreen/f_99065_ net/minecraft/client/gui/screens/inventory/LoomScreen/dyeStack +FD: net/minecraft/client/gui/screens/inventory/LoomScreen/f_99066_ net/minecraft/client/gui/screens/inventory/LoomScreen/patternStack +FD: net/minecraft/client/gui/screens/inventory/LoomScreen/f_99067_ net/minecraft/client/gui/screens/inventory/LoomScreen/displayPatterns +FD: net/minecraft/client/gui/screens/inventory/LoomScreen/f_99069_ net/minecraft/client/gui/screens/inventory/LoomScreen/hasMaxPatterns +FD: net/minecraft/client/gui/screens/inventory/LoomScreen/f_99070_ net/minecraft/client/gui/screens/inventory/LoomScreen/scrollOffs +FD: net/minecraft/client/gui/screens/inventory/LoomScreen/f_99071_ net/minecraft/client/gui/screens/inventory/LoomScreen/scrolling +FD: net/minecraft/client/gui/screens/inventory/MerchantScreen/f_169785_ net/minecraft/client/gui/screens/inventory/MerchantScreen/TEXTURE_WIDTH +FD: net/minecraft/client/gui/screens/inventory/MerchantScreen/f_169786_ net/minecraft/client/gui/screens/inventory/MerchantScreen/TEXTURE_HEIGHT +FD: net/minecraft/client/gui/screens/inventory/MerchantScreen/f_169787_ net/minecraft/client/gui/screens/inventory/MerchantScreen/MERCHANT_MENU_PART_X +FD: net/minecraft/client/gui/screens/inventory/MerchantScreen/f_169788_ net/minecraft/client/gui/screens/inventory/MerchantScreen/PROGRESS_BAR_X +FD: net/minecraft/client/gui/screens/inventory/MerchantScreen/f_169789_ net/minecraft/client/gui/screens/inventory/MerchantScreen/PROGRESS_BAR_Y +FD: net/minecraft/client/gui/screens/inventory/MerchantScreen/f_169790_ net/minecraft/client/gui/screens/inventory/MerchantScreen/SELL_ITEM_1_X +FD: net/minecraft/client/gui/screens/inventory/MerchantScreen/f_169791_ net/minecraft/client/gui/screens/inventory/MerchantScreen/SELL_ITEM_2_X +FD: net/minecraft/client/gui/screens/inventory/MerchantScreen/f_169792_ net/minecraft/client/gui/screens/inventory/MerchantScreen/BUY_ITEM_X +FD: net/minecraft/client/gui/screens/inventory/MerchantScreen/f_169793_ net/minecraft/client/gui/screens/inventory/MerchantScreen/LABEL_Y +FD: net/minecraft/client/gui/screens/inventory/MerchantScreen/f_169794_ net/minecraft/client/gui/screens/inventory/MerchantScreen/NUMBER_OF_OFFER_BUTTONS +FD: net/minecraft/client/gui/screens/inventory/MerchantScreen/f_169795_ net/minecraft/client/gui/screens/inventory/MerchantScreen/TRADE_BUTTON_X +FD: net/minecraft/client/gui/screens/inventory/MerchantScreen/f_169796_ net/minecraft/client/gui/screens/inventory/MerchantScreen/TRADE_BUTTON_HEIGHT +FD: net/minecraft/client/gui/screens/inventory/MerchantScreen/f_169797_ net/minecraft/client/gui/screens/inventory/MerchantScreen/TRADE_BUTTON_WIDTH +FD: net/minecraft/client/gui/screens/inventory/MerchantScreen/f_169798_ net/minecraft/client/gui/screens/inventory/MerchantScreen/SCROLLER_HEIGHT +FD: net/minecraft/client/gui/screens/inventory/MerchantScreen/f_169799_ net/minecraft/client/gui/screens/inventory/MerchantScreen/SCROLLER_WIDTH +FD: net/minecraft/client/gui/screens/inventory/MerchantScreen/f_169800_ net/minecraft/client/gui/screens/inventory/MerchantScreen/SCROLL_BAR_HEIGHT +FD: net/minecraft/client/gui/screens/inventory/MerchantScreen/f_169801_ net/minecraft/client/gui/screens/inventory/MerchantScreen/SCROLL_BAR_TOP_POS_Y +FD: net/minecraft/client/gui/screens/inventory/MerchantScreen/f_169802_ net/minecraft/client/gui/screens/inventory/MerchantScreen/SCROLL_BAR_START_X +FD: net/minecraft/client/gui/screens/inventory/MerchantScreen/f_99113_ net/minecraft/client/gui/screens/inventory/MerchantScreen/VILLAGER_LOCATION +FD: net/minecraft/client/gui/screens/inventory/MerchantScreen/f_99114_ net/minecraft/client/gui/screens/inventory/MerchantScreen/TRADES_LABEL +FD: net/minecraft/client/gui/screens/inventory/MerchantScreen/f_99115_ net/minecraft/client/gui/screens/inventory/MerchantScreen/LEVEL_SEPARATOR +FD: net/minecraft/client/gui/screens/inventory/MerchantScreen/f_99116_ net/minecraft/client/gui/screens/inventory/MerchantScreen/DEPRECATED_TOOLTIP +FD: net/minecraft/client/gui/screens/inventory/MerchantScreen/f_99117_ net/minecraft/client/gui/screens/inventory/MerchantScreen/shopItem +FD: net/minecraft/client/gui/screens/inventory/MerchantScreen/f_99118_ net/minecraft/client/gui/screens/inventory/MerchantScreen/tradeOfferButtons +FD: net/minecraft/client/gui/screens/inventory/MerchantScreen/f_99119_ net/minecraft/client/gui/screens/inventory/MerchantScreen/scrollOff +FD: net/minecraft/client/gui/screens/inventory/MerchantScreen/f_99120_ net/minecraft/client/gui/screens/inventory/MerchantScreen/isDragging +FD: net/minecraft/client/gui/screens/inventory/MerchantScreen$TradeOfferButton/f_99201_ net/minecraft/client/gui/screens/inventory/MerchantScreen$TradeOfferButton/index +FD: net/minecraft/client/gui/screens/inventory/MerchantScreen$TradeOfferButton/f_99202_ net/minecraft/client/gui/screens/inventory/MerchantScreen$TradeOfferButton/this$0 +FD: net/minecraft/client/gui/screens/inventory/MinecartCommandBlockEditScreen/f_99214_ net/minecraft/client/gui/screens/inventory/MinecartCommandBlockEditScreen/commandBlock +FD: net/minecraft/client/gui/screens/inventory/PageButton/f_99222_ net/minecraft/client/gui/screens/inventory/PageButton/isForward +FD: net/minecraft/client/gui/screens/inventory/PageButton/f_99223_ net/minecraft/client/gui/screens/inventory/PageButton/playTurnSound +FD: net/minecraft/client/gui/screens/inventory/ShulkerBoxScreen/f_99237_ net/minecraft/client/gui/screens/inventory/ShulkerBoxScreen/CONTAINER_TEXTURE +FD: net/minecraft/client/gui/screens/inventory/SignEditScreen/f_244300_ net/minecraft/client/gui/screens/inventory/SignEditScreen/MAGIC_TEXT_SCALE +FD: net/minecraft/client/gui/screens/inventory/SignEditScreen/f_244337_ net/minecraft/client/gui/screens/inventory/SignEditScreen/MAGIC_SCALE_NUMBER +FD: net/minecraft/client/gui/screens/inventory/SignEditScreen/f_244494_ net/minecraft/client/gui/screens/inventory/SignEditScreen/TEXT_SCALE +FD: net/minecraft/client/gui/screens/inventory/SignEditScreen/f_99253_ net/minecraft/client/gui/screens/inventory/SignEditScreen/signModel +FD: net/minecraft/client/gui/screens/inventory/SmithingScreen/f_265852_ net/minecraft/client/gui/screens/inventory/SmithingScreen/ARMOR_STAND_Y_ROT +FD: net/minecraft/client/gui/screens/inventory/SmithingScreen/f_265861_ net/minecraft/client/gui/screens/inventory/SmithingScreen/EMPTY_SLOT_SMITHING_TEMPLATE_ARMOR_TRIM +FD: net/minecraft/client/gui/screens/inventory/SmithingScreen/f_265867_ net/minecraft/client/gui/screens/inventory/SmithingScreen/ARMOR_STAND_ANGLE +FD: net/minecraft/client/gui/screens/inventory/SmithingScreen/f_265883_ net/minecraft/client/gui/screens/inventory/SmithingScreen/EMPTY_SLOT_SMITHING_TEMPLATES +FD: net/minecraft/client/gui/screens/inventory/SmithingScreen/f_265886_ net/minecraft/client/gui/screens/inventory/SmithingScreen/TITLE_LABEL_X +FD: net/minecraft/client/gui/screens/inventory/SmithingScreen/f_265904_ net/minecraft/client/gui/screens/inventory/SmithingScreen/ERROR_ICON_Y +FD: net/minecraft/client/gui/screens/inventory/SmithingScreen/f_265920_ net/minecraft/client/gui/screens/inventory/SmithingScreen/additionalIcon +FD: net/minecraft/client/gui/screens/inventory/SmithingScreen/f_265925_ net/minecraft/client/gui/screens/inventory/SmithingScreen/ARMOR_STAND_OFFSET_Y +FD: net/minecraft/client/gui/screens/inventory/SmithingScreen/f_265934_ net/minecraft/client/gui/screens/inventory/SmithingScreen/TOOLTIP_WIDTH +FD: net/minecraft/client/gui/screens/inventory/SmithingScreen/f_265938_ net/minecraft/client/gui/screens/inventory/SmithingScreen/ERROR_ICON_HEIGHT +FD: net/minecraft/client/gui/screens/inventory/SmithingScreen/f_265945_ net/minecraft/client/gui/screens/inventory/SmithingScreen/templateIcon +FD: net/minecraft/client/gui/screens/inventory/SmithingScreen/f_265973_ net/minecraft/client/gui/screens/inventory/SmithingScreen/baseIcon +FD: net/minecraft/client/gui/screens/inventory/SmithingScreen/f_265993_ net/minecraft/client/gui/screens/inventory/SmithingScreen/EMPTY_SLOT_SMITHING_TEMPLATE_NETHERITE_UPGRADE +FD: net/minecraft/client/gui/screens/inventory/SmithingScreen/f_266007_ net/minecraft/client/gui/screens/inventory/SmithingScreen/ERROR_ICON_WIDTH +FD: net/minecraft/client/gui/screens/inventory/SmithingScreen/f_266014_ net/minecraft/client/gui/screens/inventory/SmithingScreen/ERROR_TOOLTIP +FD: net/minecraft/client/gui/screens/inventory/SmithingScreen/f_266017_ net/minecraft/client/gui/screens/inventory/SmithingScreen/ARMOR_STAND_SCALE +FD: net/minecraft/client/gui/screens/inventory/SmithingScreen/f_266031_ net/minecraft/client/gui/screens/inventory/SmithingScreen/armorStandPreview +FD: net/minecraft/client/gui/screens/inventory/SmithingScreen/f_266043_ net/minecraft/client/gui/screens/inventory/SmithingScreen/MISSING_TEMPLATE_TOOLTIP +FD: net/minecraft/client/gui/screens/inventory/SmithingScreen/f_266067_ net/minecraft/client/gui/screens/inventory/SmithingScreen/ARMOR_STAND_X_ROT +FD: net/minecraft/client/gui/screens/inventory/SmithingScreen/f_266080_ net/minecraft/client/gui/screens/inventory/SmithingScreen/TITLE_LABEL_Y +FD: net/minecraft/client/gui/screens/inventory/SmithingScreen/f_266081_ net/minecraft/client/gui/screens/inventory/SmithingScreen/ARMOR_STAND_OFFSET_X +FD: net/minecraft/client/gui/screens/inventory/SmithingScreen/f_266104_ net/minecraft/client/gui/screens/inventory/SmithingScreen/ERROR_ICON_X +FD: net/minecraft/client/gui/screens/inventory/SmithingScreen/f_99287_ net/minecraft/client/gui/screens/inventory/SmithingScreen/SMITHING_LOCATION +FD: net/minecraft/client/gui/screens/inventory/SmokerScreen/f_99297_ net/minecraft/client/gui/screens/inventory/SmokerScreen/TEXTURE +FD: net/minecraft/client/gui/screens/inventory/StonecutterScreen/f_169826_ net/minecraft/client/gui/screens/inventory/StonecutterScreen/SCROLLER_WIDTH +FD: net/minecraft/client/gui/screens/inventory/StonecutterScreen/f_169827_ net/minecraft/client/gui/screens/inventory/StonecutterScreen/SCROLLER_HEIGHT +FD: net/minecraft/client/gui/screens/inventory/StonecutterScreen/f_169828_ net/minecraft/client/gui/screens/inventory/StonecutterScreen/RECIPES_COLUMNS +FD: net/minecraft/client/gui/screens/inventory/StonecutterScreen/f_169829_ net/minecraft/client/gui/screens/inventory/StonecutterScreen/RECIPES_ROWS +FD: net/minecraft/client/gui/screens/inventory/StonecutterScreen/f_169830_ net/minecraft/client/gui/screens/inventory/StonecutterScreen/RECIPES_IMAGE_SIZE_WIDTH +FD: net/minecraft/client/gui/screens/inventory/StonecutterScreen/f_169831_ net/minecraft/client/gui/screens/inventory/StonecutterScreen/RECIPES_IMAGE_SIZE_HEIGHT +FD: net/minecraft/client/gui/screens/inventory/StonecutterScreen/f_169832_ net/minecraft/client/gui/screens/inventory/StonecutterScreen/SCROLLER_FULL_HEIGHT +FD: net/minecraft/client/gui/screens/inventory/StonecutterScreen/f_169833_ net/minecraft/client/gui/screens/inventory/StonecutterScreen/RECIPES_X +FD: net/minecraft/client/gui/screens/inventory/StonecutterScreen/f_169834_ net/minecraft/client/gui/screens/inventory/StonecutterScreen/RECIPES_Y +FD: net/minecraft/client/gui/screens/inventory/StonecutterScreen/f_99303_ net/minecraft/client/gui/screens/inventory/StonecutterScreen/BG_LOCATION +FD: net/minecraft/client/gui/screens/inventory/StonecutterScreen/f_99304_ net/minecraft/client/gui/screens/inventory/StonecutterScreen/scrollOffs +FD: net/minecraft/client/gui/screens/inventory/StonecutterScreen/f_99305_ net/minecraft/client/gui/screens/inventory/StonecutterScreen/scrolling +FD: net/minecraft/client/gui/screens/inventory/StonecutterScreen/f_99306_ net/minecraft/client/gui/screens/inventory/StonecutterScreen/startIndex +FD: net/minecraft/client/gui/screens/inventory/StonecutterScreen/f_99307_ net/minecraft/client/gui/screens/inventory/StonecutterScreen/displayRecipes +FD: net/minecraft/client/gui/screens/inventory/StructureBlockEditScreen/f_169835_ net/minecraft/client/gui/screens/inventory/StructureBlockEditScreen/includeEntitiesButton +FD: net/minecraft/client/gui/screens/inventory/StructureBlockEditScreen/f_169836_ net/minecraft/client/gui/screens/inventory/StructureBlockEditScreen/ALL_MODES +FD: net/minecraft/client/gui/screens/inventory/StructureBlockEditScreen/f_169837_ net/minecraft/client/gui/screens/inventory/StructureBlockEditScreen/DEFAULT_MODES +FD: net/minecraft/client/gui/screens/inventory/StructureBlockEditScreen/f_99355_ net/minecraft/client/gui/screens/inventory/StructureBlockEditScreen/initialShowAir +FD: net/minecraft/client/gui/screens/inventory/StructureBlockEditScreen/f_99356_ net/minecraft/client/gui/screens/inventory/StructureBlockEditScreen/initialShowBoundingBox +FD: net/minecraft/client/gui/screens/inventory/StructureBlockEditScreen/f_99357_ net/minecraft/client/gui/screens/inventory/StructureBlockEditScreen/nameEdit +FD: net/minecraft/client/gui/screens/inventory/StructureBlockEditScreen/f_99358_ net/minecraft/client/gui/screens/inventory/StructureBlockEditScreen/posXEdit +FD: net/minecraft/client/gui/screens/inventory/StructureBlockEditScreen/f_99359_ net/minecraft/client/gui/screens/inventory/StructureBlockEditScreen/posYEdit +FD: net/minecraft/client/gui/screens/inventory/StructureBlockEditScreen/f_99360_ net/minecraft/client/gui/screens/inventory/StructureBlockEditScreen/posZEdit +FD: net/minecraft/client/gui/screens/inventory/StructureBlockEditScreen/f_99361_ net/minecraft/client/gui/screens/inventory/StructureBlockEditScreen/sizeXEdit +FD: net/minecraft/client/gui/screens/inventory/StructureBlockEditScreen/f_99362_ net/minecraft/client/gui/screens/inventory/StructureBlockEditScreen/sizeYEdit +FD: net/minecraft/client/gui/screens/inventory/StructureBlockEditScreen/f_99363_ net/minecraft/client/gui/screens/inventory/StructureBlockEditScreen/sizeZEdit +FD: net/minecraft/client/gui/screens/inventory/StructureBlockEditScreen/f_99364_ net/minecraft/client/gui/screens/inventory/StructureBlockEditScreen/integrityEdit +FD: net/minecraft/client/gui/screens/inventory/StructureBlockEditScreen/f_99365_ net/minecraft/client/gui/screens/inventory/StructureBlockEditScreen/seedEdit +FD: net/minecraft/client/gui/screens/inventory/StructureBlockEditScreen/f_99366_ net/minecraft/client/gui/screens/inventory/StructureBlockEditScreen/dataEdit +FD: net/minecraft/client/gui/screens/inventory/StructureBlockEditScreen/f_99369_ net/minecraft/client/gui/screens/inventory/StructureBlockEditScreen/saveButton +FD: net/minecraft/client/gui/screens/inventory/StructureBlockEditScreen/f_99370_ net/minecraft/client/gui/screens/inventory/StructureBlockEditScreen/loadButton +FD: net/minecraft/client/gui/screens/inventory/StructureBlockEditScreen/f_99371_ net/minecraft/client/gui/screens/inventory/StructureBlockEditScreen/rot0Button +FD: net/minecraft/client/gui/screens/inventory/StructureBlockEditScreen/f_99372_ net/minecraft/client/gui/screens/inventory/StructureBlockEditScreen/rot90Button +FD: net/minecraft/client/gui/screens/inventory/StructureBlockEditScreen/f_99373_ net/minecraft/client/gui/screens/inventory/StructureBlockEditScreen/rot180Button +FD: net/minecraft/client/gui/screens/inventory/StructureBlockEditScreen/f_99374_ net/minecraft/client/gui/screens/inventory/StructureBlockEditScreen/rot270Button +FD: net/minecraft/client/gui/screens/inventory/StructureBlockEditScreen/f_99376_ net/minecraft/client/gui/screens/inventory/StructureBlockEditScreen/detectButton +FD: net/minecraft/client/gui/screens/inventory/StructureBlockEditScreen/f_99378_ net/minecraft/client/gui/screens/inventory/StructureBlockEditScreen/mirrorButton +FD: net/minecraft/client/gui/screens/inventory/StructureBlockEditScreen/f_99379_ net/minecraft/client/gui/screens/inventory/StructureBlockEditScreen/toggleAirButton +FD: net/minecraft/client/gui/screens/inventory/StructureBlockEditScreen/f_99380_ net/minecraft/client/gui/screens/inventory/StructureBlockEditScreen/toggleBoundingBox +FD: net/minecraft/client/gui/screens/inventory/StructureBlockEditScreen/f_99381_ net/minecraft/client/gui/screens/inventory/StructureBlockEditScreen/NAME_LABEL +FD: net/minecraft/client/gui/screens/inventory/StructureBlockEditScreen/f_99382_ net/minecraft/client/gui/screens/inventory/StructureBlockEditScreen/decimalFormat +FD: net/minecraft/client/gui/screens/inventory/StructureBlockEditScreen/f_99383_ net/minecraft/client/gui/screens/inventory/StructureBlockEditScreen/POSITION_LABEL +FD: net/minecraft/client/gui/screens/inventory/StructureBlockEditScreen/f_99384_ net/minecraft/client/gui/screens/inventory/StructureBlockEditScreen/SIZE_LABEL +FD: net/minecraft/client/gui/screens/inventory/StructureBlockEditScreen/f_99385_ net/minecraft/client/gui/screens/inventory/StructureBlockEditScreen/INTEGRITY_LABEL +FD: net/minecraft/client/gui/screens/inventory/StructureBlockEditScreen/f_99386_ net/minecraft/client/gui/screens/inventory/StructureBlockEditScreen/CUSTOM_DATA_LABEL +FD: net/minecraft/client/gui/screens/inventory/StructureBlockEditScreen/f_99387_ net/minecraft/client/gui/screens/inventory/StructureBlockEditScreen/INCLUDE_ENTITIES_LABEL +FD: net/minecraft/client/gui/screens/inventory/StructureBlockEditScreen/f_99388_ net/minecraft/client/gui/screens/inventory/StructureBlockEditScreen/DETECT_SIZE_LABEL +FD: net/minecraft/client/gui/screens/inventory/StructureBlockEditScreen/f_99389_ net/minecraft/client/gui/screens/inventory/StructureBlockEditScreen/SHOW_AIR_LABEL +FD: net/minecraft/client/gui/screens/inventory/StructureBlockEditScreen/f_99390_ net/minecraft/client/gui/screens/inventory/StructureBlockEditScreen/SHOW_BOUNDING_BOX_LABEL +FD: net/minecraft/client/gui/screens/inventory/StructureBlockEditScreen/f_99391_ net/minecraft/client/gui/screens/inventory/StructureBlockEditScreen/structure +FD: net/minecraft/client/gui/screens/inventory/StructureBlockEditScreen/f_99392_ net/minecraft/client/gui/screens/inventory/StructureBlockEditScreen/initialMirror +FD: net/minecraft/client/gui/screens/inventory/StructureBlockEditScreen/f_99393_ net/minecraft/client/gui/screens/inventory/StructureBlockEditScreen/initialRotation +FD: net/minecraft/client/gui/screens/inventory/StructureBlockEditScreen/f_99394_ net/minecraft/client/gui/screens/inventory/StructureBlockEditScreen/initialMode +FD: net/minecraft/client/gui/screens/inventory/StructureBlockEditScreen/f_99395_ net/minecraft/client/gui/screens/inventory/StructureBlockEditScreen/initialEntityIgnoring +FD: net/minecraft/client/gui/screens/inventory/StructureBlockEditScreen$1/f_99466_ net/minecraft/client/gui/screens/inventory/StructureBlockEditScreen$1/this$0 +FD: net/minecraft/client/gui/screens/inventory/StructureBlockEditScreen$2/f_99479_ net/minecraft/client/gui/screens/inventory/StructureBlockEditScreen$2/$SwitchMap$net$minecraft$world$level$block$Rotation +FD: net/minecraft/client/gui/screens/inventory/StructureBlockEditScreen$2/f_99480_ net/minecraft/client/gui/screens/inventory/StructureBlockEditScreen$2/$SwitchMap$net$minecraft$world$level$block$state$properties$StructureMode +FD: net/minecraft/client/gui/screens/inventory/tooltip/BelowOrAboveWidgetTooltipPositioner/f_262738_ net/minecraft/client/gui/screens/inventory/tooltip/BelowOrAboveWidgetTooltipPositioner/widget +FD: net/minecraft/client/gui/screens/inventory/tooltip/ClientBundleTooltip/f_169863_ net/minecraft/client/gui/screens/inventory/tooltip/ClientBundleTooltip/TEXTURE_LOCATION +FD: net/minecraft/client/gui/screens/inventory/tooltip/ClientBundleTooltip/f_169864_ net/minecraft/client/gui/screens/inventory/tooltip/ClientBundleTooltip/MARGIN_Y +FD: net/minecraft/client/gui/screens/inventory/tooltip/ClientBundleTooltip/f_169865_ net/minecraft/client/gui/screens/inventory/tooltip/ClientBundleTooltip/BORDER_WIDTH +FD: net/minecraft/client/gui/screens/inventory/tooltip/ClientBundleTooltip/f_169866_ net/minecraft/client/gui/screens/inventory/tooltip/ClientBundleTooltip/TEX_SIZE +FD: net/minecraft/client/gui/screens/inventory/tooltip/ClientBundleTooltip/f_169867_ net/minecraft/client/gui/screens/inventory/tooltip/ClientBundleTooltip/SLOT_SIZE_X +FD: net/minecraft/client/gui/screens/inventory/tooltip/ClientBundleTooltip/f_169868_ net/minecraft/client/gui/screens/inventory/tooltip/ClientBundleTooltip/SLOT_SIZE_Y +FD: net/minecraft/client/gui/screens/inventory/tooltip/ClientBundleTooltip/f_169869_ net/minecraft/client/gui/screens/inventory/tooltip/ClientBundleTooltip/items +FD: net/minecraft/client/gui/screens/inventory/tooltip/ClientBundleTooltip/f_169870_ net/minecraft/client/gui/screens/inventory/tooltip/ClientBundleTooltip/weight +FD: net/minecraft/client/gui/screens/inventory/tooltip/ClientBundleTooltip$Texture/$VALUES net/minecraft/client/gui/screens/inventory/tooltip/ClientBundleTooltip$Texture/$VALUES +FD: net/minecraft/client/gui/screens/inventory/tooltip/ClientBundleTooltip$Texture/BLOCKED_SLOT net/minecraft/client/gui/screens/inventory/tooltip/ClientBundleTooltip$Texture/BLOCKED_SLOT +FD: net/minecraft/client/gui/screens/inventory/tooltip/ClientBundleTooltip$Texture/BORDER_CORNER_BOTTOM net/minecraft/client/gui/screens/inventory/tooltip/ClientBundleTooltip$Texture/BORDER_CORNER_BOTTOM +FD: net/minecraft/client/gui/screens/inventory/tooltip/ClientBundleTooltip$Texture/BORDER_CORNER_TOP net/minecraft/client/gui/screens/inventory/tooltip/ClientBundleTooltip$Texture/BORDER_CORNER_TOP +FD: net/minecraft/client/gui/screens/inventory/tooltip/ClientBundleTooltip$Texture/BORDER_HORIZONTAL_BOTTOM net/minecraft/client/gui/screens/inventory/tooltip/ClientBundleTooltip$Texture/BORDER_HORIZONTAL_BOTTOM +FD: net/minecraft/client/gui/screens/inventory/tooltip/ClientBundleTooltip$Texture/BORDER_HORIZONTAL_TOP net/minecraft/client/gui/screens/inventory/tooltip/ClientBundleTooltip$Texture/BORDER_HORIZONTAL_TOP +FD: net/minecraft/client/gui/screens/inventory/tooltip/ClientBundleTooltip$Texture/BORDER_VERTICAL net/minecraft/client/gui/screens/inventory/tooltip/ClientBundleTooltip$Texture/BORDER_VERTICAL +FD: net/minecraft/client/gui/screens/inventory/tooltip/ClientBundleTooltip$Texture/SLOT net/minecraft/client/gui/screens/inventory/tooltip/ClientBundleTooltip$Texture/SLOT +FD: net/minecraft/client/gui/screens/inventory/tooltip/ClientBundleTooltip$Texture/f_169919_ net/minecraft/client/gui/screens/inventory/tooltip/ClientBundleTooltip$Texture/x +FD: net/minecraft/client/gui/screens/inventory/tooltip/ClientBundleTooltip$Texture/f_169920_ net/minecraft/client/gui/screens/inventory/tooltip/ClientBundleTooltip$Texture/y +FD: net/minecraft/client/gui/screens/inventory/tooltip/ClientBundleTooltip$Texture/f_169921_ net/minecraft/client/gui/screens/inventory/tooltip/ClientBundleTooltip$Texture/w +FD: net/minecraft/client/gui/screens/inventory/tooltip/ClientBundleTooltip$Texture/f_169922_ net/minecraft/client/gui/screens/inventory/tooltip/ClientBundleTooltip$Texture/h +FD: net/minecraft/client/gui/screens/inventory/tooltip/ClientTextTooltip/f_169936_ net/minecraft/client/gui/screens/inventory/tooltip/ClientTextTooltip/text +FD: net/minecraft/client/gui/screens/inventory/tooltip/DefaultTooltipPositioner/f_262752_ net/minecraft/client/gui/screens/inventory/tooltip/DefaultTooltipPositioner/INSTANCE +FD: net/minecraft/client/gui/screens/inventory/tooltip/MenuTooltipPositioner/f_267383_ net/minecraft/client/gui/screens/inventory/tooltip/MenuTooltipPositioner/MARGIN +FD: net/minecraft/client/gui/screens/inventory/tooltip/MenuTooltipPositioner/f_267390_ net/minecraft/client/gui/screens/inventory/tooltip/MenuTooltipPositioner/MOUSE_OFFSET_X +FD: net/minecraft/client/gui/screens/inventory/tooltip/MenuTooltipPositioner/f_267404_ net/minecraft/client/gui/screens/inventory/tooltip/MenuTooltipPositioner/MAX_OVERLAP_WITH_WIDGET +FD: net/minecraft/client/gui/screens/inventory/tooltip/MenuTooltipPositioner/f_267414_ net/minecraft/client/gui/screens/inventory/tooltip/MenuTooltipPositioner/MAX_DISTANCE_TO_WIDGET +FD: net/minecraft/client/gui/screens/inventory/tooltip/MenuTooltipPositioner/f_267435_ net/minecraft/client/gui/screens/inventory/tooltip/MenuTooltipPositioner/widget +FD: net/minecraft/client/gui/screens/inventory/tooltip/TooltipRenderUtil/f_262725_ net/minecraft/client/gui/screens/inventory/tooltip/TooltipRenderUtil/BORDER_COLOR_TOP +FD: net/minecraft/client/gui/screens/inventory/tooltip/TooltipRenderUtil/f_262731_ net/minecraft/client/gui/screens/inventory/tooltip/TooltipRenderUtil/MOUSE_OFFSET +FD: net/minecraft/client/gui/screens/inventory/tooltip/TooltipRenderUtil/f_262737_ net/minecraft/client/gui/screens/inventory/tooltip/TooltipRenderUtil/PADDING +FD: net/minecraft/client/gui/screens/inventory/tooltip/TooltipRenderUtil/f_262741_ net/minecraft/client/gui/screens/inventory/tooltip/TooltipRenderUtil/PADDING_RIGHT +FD: net/minecraft/client/gui/screens/inventory/tooltip/TooltipRenderUtil/f_262743_ net/minecraft/client/gui/screens/inventory/tooltip/TooltipRenderUtil/BORDER_COLOR_BOTTOM +FD: net/minecraft/client/gui/screens/inventory/tooltip/TooltipRenderUtil/f_262744_ net/minecraft/client/gui/screens/inventory/tooltip/TooltipRenderUtil/BACKGROUND_COLOR +FD: net/minecraft/client/gui/screens/inventory/tooltip/TooltipRenderUtil/f_262749_ net/minecraft/client/gui/screens/inventory/tooltip/TooltipRenderUtil/PADDING_TOP +FD: net/minecraft/client/gui/screens/inventory/tooltip/TooltipRenderUtil/f_262753_ net/minecraft/client/gui/screens/inventory/tooltip/TooltipRenderUtil/PADDING_LEFT +FD: net/minecraft/client/gui/screens/inventory/tooltip/TooltipRenderUtil/f_262756_ net/minecraft/client/gui/screens/inventory/tooltip/TooltipRenderUtil/PADDING_BOTTOM +FD: net/minecraft/client/gui/screens/multiplayer/JoinMultiplayerScreen/f_263689_ net/minecraft/client/gui/screens/multiplayer/JoinMultiplayerScreen/TOP_ROW_BUTTON_WIDTH +FD: net/minecraft/client/gui/screens/multiplayer/JoinMultiplayerScreen/f_263727_ net/minecraft/client/gui/screens/multiplayer/JoinMultiplayerScreen/LOWER_ROW_BUTTON_WIDTH +FD: net/minecraft/client/gui/screens/multiplayer/JoinMultiplayerScreen/f_263797_ net/minecraft/client/gui/screens/multiplayer/JoinMultiplayerScreen/BUTTON_ROW_WIDTH +FD: net/minecraft/client/gui/screens/multiplayer/JoinMultiplayerScreen/f_263805_ net/minecraft/client/gui/screens/multiplayer/JoinMultiplayerScreen/FOOTER_HEIGHT +FD: net/minecraft/client/gui/screens/multiplayer/JoinMultiplayerScreen/f_99673_ net/minecraft/client/gui/screens/multiplayer/JoinMultiplayerScreen/serverSelectionList +FD: net/minecraft/client/gui/screens/multiplayer/JoinMultiplayerScreen/f_99674_ net/minecraft/client/gui/screens/multiplayer/JoinMultiplayerScreen/LOGGER +FD: net/minecraft/client/gui/screens/multiplayer/JoinMultiplayerScreen/f_99675_ net/minecraft/client/gui/screens/multiplayer/JoinMultiplayerScreen/pinger +FD: net/minecraft/client/gui/screens/multiplayer/JoinMultiplayerScreen/f_99676_ net/minecraft/client/gui/screens/multiplayer/JoinMultiplayerScreen/lastScreen +FD: net/minecraft/client/gui/screens/multiplayer/JoinMultiplayerScreen/f_99677_ net/minecraft/client/gui/screens/multiplayer/JoinMultiplayerScreen/servers +FD: net/minecraft/client/gui/screens/multiplayer/JoinMultiplayerScreen/f_99678_ net/minecraft/client/gui/screens/multiplayer/JoinMultiplayerScreen/editButton +FD: net/minecraft/client/gui/screens/multiplayer/JoinMultiplayerScreen/f_99679_ net/minecraft/client/gui/screens/multiplayer/JoinMultiplayerScreen/selectButton +FD: net/minecraft/client/gui/screens/multiplayer/JoinMultiplayerScreen/f_99680_ net/minecraft/client/gui/screens/multiplayer/JoinMultiplayerScreen/deleteButton +FD: net/minecraft/client/gui/screens/multiplayer/JoinMultiplayerScreen/f_99681_ net/minecraft/client/gui/screens/multiplayer/JoinMultiplayerScreen/toolTip +FD: net/minecraft/client/gui/screens/multiplayer/JoinMultiplayerScreen/f_99682_ net/minecraft/client/gui/screens/multiplayer/JoinMultiplayerScreen/editingServer +FD: net/minecraft/client/gui/screens/multiplayer/JoinMultiplayerScreen/f_99683_ net/minecraft/client/gui/screens/multiplayer/JoinMultiplayerScreen/lanServerList +FD: net/minecraft/client/gui/screens/multiplayer/JoinMultiplayerScreen/f_99684_ net/minecraft/client/gui/screens/multiplayer/JoinMultiplayerScreen/lanServerDetector +FD: net/minecraft/client/gui/screens/multiplayer/JoinMultiplayerScreen/f_99685_ net/minecraft/client/gui/screens/multiplayer/JoinMultiplayerScreen/initedOnce +FD: net/minecraft/client/gui/screens/multiplayer/Realms32bitWarningScreen/f_210892_ net/minecraft/client/gui/screens/multiplayer/Realms32bitWarningScreen/TITLE +FD: net/minecraft/client/gui/screens/multiplayer/Realms32bitWarningScreen/f_210893_ net/minecraft/client/gui/screens/multiplayer/Realms32bitWarningScreen/CONTENT +FD: net/minecraft/client/gui/screens/multiplayer/Realms32bitWarningScreen/f_210894_ net/minecraft/client/gui/screens/multiplayer/Realms32bitWarningScreen/CHECK +FD: net/minecraft/client/gui/screens/multiplayer/Realms32bitWarningScreen/f_210895_ net/minecraft/client/gui/screens/multiplayer/Realms32bitWarningScreen/NARRATION +FD: net/minecraft/client/gui/screens/multiplayer/Realms32bitWarningScreen/f_232849_ net/minecraft/client/gui/screens/multiplayer/Realms32bitWarningScreen/previous +FD: net/minecraft/client/gui/screens/multiplayer/SafetyScreen/f_232850_ net/minecraft/client/gui/screens/multiplayer/SafetyScreen/previous +FD: net/minecraft/client/gui/screens/multiplayer/SafetyScreen/f_99735_ net/minecraft/client/gui/screens/multiplayer/SafetyScreen/TITLE +FD: net/minecraft/client/gui/screens/multiplayer/SafetyScreen/f_99736_ net/minecraft/client/gui/screens/multiplayer/SafetyScreen/CONTENT +FD: net/minecraft/client/gui/screens/multiplayer/SafetyScreen/f_99737_ net/minecraft/client/gui/screens/multiplayer/SafetyScreen/CHECK +FD: net/minecraft/client/gui/screens/multiplayer/SafetyScreen/f_99738_ net/minecraft/client/gui/screens/multiplayer/SafetyScreen/NARRATION +FD: net/minecraft/client/gui/screens/multiplayer/ServerSelectionList/f_263746_ net/minecraft/client/gui/screens/multiplayer/ServerSelectionList/PINGING_STATUS +FD: net/minecraft/client/gui/screens/multiplayer/ServerSelectionList/f_263785_ net/minecraft/client/gui/screens/multiplayer/ServerSelectionList/ONLINE_STATUS +FD: net/minecraft/client/gui/screens/multiplayer/ServerSelectionList/f_263833_ net/minecraft/client/gui/screens/multiplayer/ServerSelectionList/INCOMPATIBLE_STATUS +FD: net/minecraft/client/gui/screens/multiplayer/ServerSelectionList/f_263836_ net/minecraft/client/gui/screens/multiplayer/ServerSelectionList/NO_CONNECTION_STATUS +FD: net/minecraft/client/gui/screens/multiplayer/ServerSelectionList/f_279631_ net/minecraft/client/gui/screens/multiplayer/ServerSelectionList/GUI_ICONS_LOCATION +FD: net/minecraft/client/gui/screens/multiplayer/ServerSelectionList/f_99755_ net/minecraft/client/gui/screens/multiplayer/ServerSelectionList/networkServers +FD: net/minecraft/client/gui/screens/multiplayer/ServerSelectionList/f_99756_ net/minecraft/client/gui/screens/multiplayer/ServerSelectionList/LOGGER +FD: net/minecraft/client/gui/screens/multiplayer/ServerSelectionList/f_99757_ net/minecraft/client/gui/screens/multiplayer/ServerSelectionList/THREAD_POOL +FD: net/minecraft/client/gui/screens/multiplayer/ServerSelectionList/f_99758_ net/minecraft/client/gui/screens/multiplayer/ServerSelectionList/ICON_MISSING +FD: net/minecraft/client/gui/screens/multiplayer/ServerSelectionList/f_99759_ net/minecraft/client/gui/screens/multiplayer/ServerSelectionList/ICON_OVERLAY_LOCATION +FD: net/minecraft/client/gui/screens/multiplayer/ServerSelectionList/f_99760_ net/minecraft/client/gui/screens/multiplayer/ServerSelectionList/SCANNING_LABEL +FD: net/minecraft/client/gui/screens/multiplayer/ServerSelectionList/f_99761_ net/minecraft/client/gui/screens/multiplayer/ServerSelectionList/CANT_RESOLVE_TEXT +FD: net/minecraft/client/gui/screens/multiplayer/ServerSelectionList/f_99762_ net/minecraft/client/gui/screens/multiplayer/ServerSelectionList/CANT_CONNECT_TEXT +FD: net/minecraft/client/gui/screens/multiplayer/ServerSelectionList/f_99766_ net/minecraft/client/gui/screens/multiplayer/ServerSelectionList/screen +FD: net/minecraft/client/gui/screens/multiplayer/ServerSelectionList/f_99767_ net/minecraft/client/gui/screens/multiplayer/ServerSelectionList/onlineServers +FD: net/minecraft/client/gui/screens/multiplayer/ServerSelectionList/f_99768_ net/minecraft/client/gui/screens/multiplayer/ServerSelectionList/lanHeader +FD: net/minecraft/client/gui/screens/multiplayer/ServerSelectionList$LANHeader/f_99815_ net/minecraft/client/gui/screens/multiplayer/ServerSelectionList$LANHeader/minecraft +FD: net/minecraft/client/gui/screens/multiplayer/ServerSelectionList$NetworkServerEntry/f_169981_ net/minecraft/client/gui/screens/multiplayer/ServerSelectionList$NetworkServerEntry/ICON_WIDTH +FD: net/minecraft/client/gui/screens/multiplayer/ServerSelectionList$NetworkServerEntry/f_99828_ net/minecraft/client/gui/screens/multiplayer/ServerSelectionList$NetworkServerEntry/minecraft +FD: net/minecraft/client/gui/screens/multiplayer/ServerSelectionList$NetworkServerEntry/f_99829_ net/minecraft/client/gui/screens/multiplayer/ServerSelectionList$NetworkServerEntry/serverData +FD: net/minecraft/client/gui/screens/multiplayer/ServerSelectionList$NetworkServerEntry/f_99830_ net/minecraft/client/gui/screens/multiplayer/ServerSelectionList$NetworkServerEntry/LAN_SERVER_HEADER +FD: net/minecraft/client/gui/screens/multiplayer/ServerSelectionList$NetworkServerEntry/f_99831_ net/minecraft/client/gui/screens/multiplayer/ServerSelectionList$NetworkServerEntry/HIDDEN_ADDRESS_TEXT +FD: net/minecraft/client/gui/screens/multiplayer/ServerSelectionList$NetworkServerEntry/f_99832_ net/minecraft/client/gui/screens/multiplayer/ServerSelectionList$NetworkServerEntry/screen +FD: net/minecraft/client/gui/screens/multiplayer/ServerSelectionList$NetworkServerEntry/f_99833_ net/minecraft/client/gui/screens/multiplayer/ServerSelectionList$NetworkServerEntry/lastClickTime +FD: net/minecraft/client/gui/screens/multiplayer/ServerSelectionList$OnlineServerEntry/f_169983_ net/minecraft/client/gui/screens/multiplayer/ServerSelectionList$OnlineServerEntry/ICON_WIDTH +FD: net/minecraft/client/gui/screens/multiplayer/ServerSelectionList$OnlineServerEntry/f_169984_ net/minecraft/client/gui/screens/multiplayer/ServerSelectionList$OnlineServerEntry/ICON_HEIGHT +FD: net/minecraft/client/gui/screens/multiplayer/ServerSelectionList$OnlineServerEntry/f_169985_ net/minecraft/client/gui/screens/multiplayer/ServerSelectionList$OnlineServerEntry/ICON_OVERLAY_X_MOVE_RIGHT +FD: net/minecraft/client/gui/screens/multiplayer/ServerSelectionList$OnlineServerEntry/f_169986_ net/minecraft/client/gui/screens/multiplayer/ServerSelectionList$OnlineServerEntry/ICON_OVERLAY_X_MOVE_LEFT +FD: net/minecraft/client/gui/screens/multiplayer/ServerSelectionList$OnlineServerEntry/f_169987_ net/minecraft/client/gui/screens/multiplayer/ServerSelectionList$OnlineServerEntry/ICON_OVERLAY_X_MOVE_DOWN +FD: net/minecraft/client/gui/screens/multiplayer/ServerSelectionList$OnlineServerEntry/f_169988_ net/minecraft/client/gui/screens/multiplayer/ServerSelectionList$OnlineServerEntry/ICON_OVERLAY_X_MOVE_UP +FD: net/minecraft/client/gui/screens/multiplayer/ServerSelectionList$OnlineServerEntry/f_169989_ net/minecraft/client/gui/screens/multiplayer/ServerSelectionList$OnlineServerEntry/ICON_OVERLAY_Y_UNSELECTED +FD: net/minecraft/client/gui/screens/multiplayer/ServerSelectionList$OnlineServerEntry/f_169990_ net/minecraft/client/gui/screens/multiplayer/ServerSelectionList$OnlineServerEntry/ICON_OVERLAY_Y_SELECTED +FD: net/minecraft/client/gui/screens/multiplayer/ServerSelectionList$OnlineServerEntry/f_271423_ net/minecraft/client/gui/screens/multiplayer/ServerSelectionList$OnlineServerEntry/lastIconBytes +FD: net/minecraft/client/gui/screens/multiplayer/ServerSelectionList$OnlineServerEntry/f_99854_ net/minecraft/client/gui/screens/multiplayer/ServerSelectionList$OnlineServerEntry/this$0 +FD: net/minecraft/client/gui/screens/multiplayer/ServerSelectionList$OnlineServerEntry/f_99855_ net/minecraft/client/gui/screens/multiplayer/ServerSelectionList$OnlineServerEntry/screen +FD: net/minecraft/client/gui/screens/multiplayer/ServerSelectionList$OnlineServerEntry/f_99856_ net/minecraft/client/gui/screens/multiplayer/ServerSelectionList$OnlineServerEntry/minecraft +FD: net/minecraft/client/gui/screens/multiplayer/ServerSelectionList$OnlineServerEntry/f_99857_ net/minecraft/client/gui/screens/multiplayer/ServerSelectionList$OnlineServerEntry/serverData +FD: net/minecraft/client/gui/screens/multiplayer/ServerSelectionList$OnlineServerEntry/f_99860_ net/minecraft/client/gui/screens/multiplayer/ServerSelectionList$OnlineServerEntry/icon +FD: net/minecraft/client/gui/screens/multiplayer/ServerSelectionList$OnlineServerEntry/f_99861_ net/minecraft/client/gui/screens/multiplayer/ServerSelectionList$OnlineServerEntry/lastClickTime +FD: net/minecraft/client/gui/screens/multiplayer/WarningScreen/f_210910_ net/minecraft/client/gui/screens/multiplayer/WarningScreen/stopShowing +FD: net/minecraft/client/gui/screens/multiplayer/WarningScreen/f_210912_ net/minecraft/client/gui/screens/multiplayer/WarningScreen/content +FD: net/minecraft/client/gui/screens/multiplayer/WarningScreen/f_210913_ net/minecraft/client/gui/screens/multiplayer/WarningScreen/check +FD: net/minecraft/client/gui/screens/multiplayer/WarningScreen/f_210914_ net/minecraft/client/gui/screens/multiplayer/WarningScreen/narration +FD: net/minecraft/client/gui/screens/multiplayer/WarningScreen/f_210915_ net/minecraft/client/gui/screens/multiplayer/WarningScreen/message +FD: net/minecraft/client/gui/screens/packs/PackSelectionModel/f_99902_ net/minecraft/client/gui/screens/packs/PackSelectionModel/repository +FD: net/minecraft/client/gui/screens/packs/PackSelectionModel/f_99903_ net/minecraft/client/gui/screens/packs/PackSelectionModel/selected +FD: net/minecraft/client/gui/screens/packs/PackSelectionModel/f_99904_ net/minecraft/client/gui/screens/packs/PackSelectionModel/unselected +FD: net/minecraft/client/gui/screens/packs/PackSelectionModel/f_99905_ net/minecraft/client/gui/screens/packs/PackSelectionModel/iconGetter +FD: net/minecraft/client/gui/screens/packs/PackSelectionModel/f_99906_ net/minecraft/client/gui/screens/packs/PackSelectionModel/onListChanged +FD: net/minecraft/client/gui/screens/packs/PackSelectionModel/f_99907_ net/minecraft/client/gui/screens/packs/PackSelectionModel/output +FD: net/minecraft/client/gui/screens/packs/PackSelectionModel$EntryBase/f_99932_ net/minecraft/client/gui/screens/packs/PackSelectionModel$EntryBase/this$0 +FD: net/minecraft/client/gui/screens/packs/PackSelectionModel$EntryBase/f_99933_ net/minecraft/client/gui/screens/packs/PackSelectionModel$EntryBase/pack +FD: net/minecraft/client/gui/screens/packs/PackSelectionModel$SelectedPackEntry/f_99951_ net/minecraft/client/gui/screens/packs/PackSelectionModel$SelectedPackEntry/this$0 +FD: net/minecraft/client/gui/screens/packs/PackSelectionModel$UnselectedPackEntry/f_99960_ net/minecraft/client/gui/screens/packs/PackSelectionModel$UnselectedPackEntry/this$0 +FD: net/minecraft/client/gui/screens/packs/PackSelectionScreen/f_169993_ net/minecraft/client/gui/screens/packs/PackSelectionScreen/LIST_WIDTH +FD: net/minecraft/client/gui/screens/packs/PackSelectionScreen/f_169994_ net/minecraft/client/gui/screens/packs/PackSelectionScreen/RELOAD_COOLDOWN +FD: net/minecraft/client/gui/screens/packs/PackSelectionScreen/f_99969_ net/minecraft/client/gui/screens/packs/PackSelectionScreen/LOGGER +FD: net/minecraft/client/gui/screens/packs/PackSelectionScreen/f_99970_ net/minecraft/client/gui/screens/packs/PackSelectionScreen/DRAG_AND_DROP +FD: net/minecraft/client/gui/screens/packs/PackSelectionScreen/f_99971_ net/minecraft/client/gui/screens/packs/PackSelectionScreen/DIRECTORY_BUTTON_TOOLTIP +FD: net/minecraft/client/gui/screens/packs/PackSelectionScreen/f_99972_ net/minecraft/client/gui/screens/packs/PackSelectionScreen/DEFAULT_ICON +FD: net/minecraft/client/gui/screens/packs/PackSelectionScreen/f_99973_ net/minecraft/client/gui/screens/packs/PackSelectionScreen/model +FD: net/minecraft/client/gui/screens/packs/PackSelectionScreen/f_99975_ net/minecraft/client/gui/screens/packs/PackSelectionScreen/watcher +FD: net/minecraft/client/gui/screens/packs/PackSelectionScreen/f_99976_ net/minecraft/client/gui/screens/packs/PackSelectionScreen/ticksToReload +FD: net/minecraft/client/gui/screens/packs/PackSelectionScreen/f_99977_ net/minecraft/client/gui/screens/packs/PackSelectionScreen/availablePackList +FD: net/minecraft/client/gui/screens/packs/PackSelectionScreen/f_99978_ net/minecraft/client/gui/screens/packs/PackSelectionScreen/selectedPackList +FD: net/minecraft/client/gui/screens/packs/PackSelectionScreen/f_99979_ net/minecraft/client/gui/screens/packs/PackSelectionScreen/packDir +FD: net/minecraft/client/gui/screens/packs/PackSelectionScreen/f_99980_ net/minecraft/client/gui/screens/packs/PackSelectionScreen/doneButton +FD: net/minecraft/client/gui/screens/packs/PackSelectionScreen/f_99981_ net/minecraft/client/gui/screens/packs/PackSelectionScreen/packIcons +FD: net/minecraft/client/gui/screens/packs/PackSelectionScreen$Watcher/f_100042_ net/minecraft/client/gui/screens/packs/PackSelectionScreen$Watcher/watcher +FD: net/minecraft/client/gui/screens/packs/PackSelectionScreen$Watcher/f_100043_ net/minecraft/client/gui/screens/packs/PackSelectionScreen$Watcher/packPath +FD: net/minecraft/client/gui/screens/packs/TransferableSelectionList/f_100052_ net/minecraft/client/gui/screens/packs/TransferableSelectionList/ICON_OVERLAY_LOCATION +FD: net/minecraft/client/gui/screens/packs/TransferableSelectionList/f_100053_ net/minecraft/client/gui/screens/packs/TransferableSelectionList/INCOMPATIBLE_TITLE +FD: net/minecraft/client/gui/screens/packs/TransferableSelectionList/f_100054_ net/minecraft/client/gui/screens/packs/TransferableSelectionList/INCOMPATIBLE_CONFIRM_TITLE +FD: net/minecraft/client/gui/screens/packs/TransferableSelectionList/f_100055_ net/minecraft/client/gui/screens/packs/TransferableSelectionList/title +FD: net/minecraft/client/gui/screens/packs/TransferableSelectionList/f_263433_ net/minecraft/client/gui/screens/packs/TransferableSelectionList/screen +FD: net/minecraft/client/gui/screens/packs/TransferableSelectionList$PackEntry/f_100075_ net/minecraft/client/gui/screens/packs/TransferableSelectionList$PackEntry/minecraft +FD: net/minecraft/client/gui/screens/packs/TransferableSelectionList$PackEntry/f_100077_ net/minecraft/client/gui/screens/packs/TransferableSelectionList$PackEntry/parent +FD: net/minecraft/client/gui/screens/packs/TransferableSelectionList$PackEntry/f_100078_ net/minecraft/client/gui/screens/packs/TransferableSelectionList$PackEntry/pack +FD: net/minecraft/client/gui/screens/packs/TransferableSelectionList$PackEntry/f_100079_ net/minecraft/client/gui/screens/packs/TransferableSelectionList$PackEntry/nameDisplayCache +FD: net/minecraft/client/gui/screens/packs/TransferableSelectionList$PackEntry/f_100080_ net/minecraft/client/gui/screens/packs/TransferableSelectionList$PackEntry/descriptionDisplayCache +FD: net/minecraft/client/gui/screens/packs/TransferableSelectionList$PackEntry/f_100081_ net/minecraft/client/gui/screens/packs/TransferableSelectionList$PackEntry/incompatibleNameDisplayCache +FD: net/minecraft/client/gui/screens/packs/TransferableSelectionList$PackEntry/f_100082_ net/minecraft/client/gui/screens/packs/TransferableSelectionList$PackEntry/incompatibleDescriptionDisplayCache +FD: net/minecraft/client/gui/screens/packs/TransferableSelectionList$PackEntry/f_170026_ net/minecraft/client/gui/screens/packs/TransferableSelectionList$PackEntry/ICON_OVERLAY_X_MOVE_RIGHT +FD: net/minecraft/client/gui/screens/packs/TransferableSelectionList$PackEntry/f_170027_ net/minecraft/client/gui/screens/packs/TransferableSelectionList$PackEntry/ICON_OVERLAY_X_MOVE_LEFT +FD: net/minecraft/client/gui/screens/packs/TransferableSelectionList$PackEntry/f_170028_ net/minecraft/client/gui/screens/packs/TransferableSelectionList$PackEntry/ICON_OVERLAY_X_MOVE_DOWN +FD: net/minecraft/client/gui/screens/packs/TransferableSelectionList$PackEntry/f_170029_ net/minecraft/client/gui/screens/packs/TransferableSelectionList$PackEntry/ICON_OVERLAY_X_MOVE_UP +FD: net/minecraft/client/gui/screens/packs/TransferableSelectionList$PackEntry/f_170030_ net/minecraft/client/gui/screens/packs/TransferableSelectionList$PackEntry/ICON_OVERLAY_Y_UNSELECTED +FD: net/minecraft/client/gui/screens/packs/TransferableSelectionList$PackEntry/f_170031_ net/minecraft/client/gui/screens/packs/TransferableSelectionList$PackEntry/ICON_OVERLAY_Y_SELECTED +FD: net/minecraft/client/gui/screens/packs/TransferableSelectionList$PackEntry/f_170032_ net/minecraft/client/gui/screens/packs/TransferableSelectionList$PackEntry/MAX_DESCRIPTION_WIDTH_PIXELS +FD: net/minecraft/client/gui/screens/packs/TransferableSelectionList$PackEntry/f_170033_ net/minecraft/client/gui/screens/packs/TransferableSelectionList$PackEntry/MAX_NAME_WIDTH_PIXELS +FD: net/minecraft/client/gui/screens/packs/TransferableSelectionList$PackEntry/f_170034_ net/minecraft/client/gui/screens/packs/TransferableSelectionList$PackEntry/TOO_LONG_NAME_SUFFIX +FD: net/minecraft/client/gui/screens/recipebook/AbstractFurnaceRecipeBookComponent/f_100113_ net/minecraft/client/gui/screens/recipebook/AbstractFurnaceRecipeBookComponent/fuels +FD: net/minecraft/client/gui/screens/recipebook/BlastingRecipeBookComponent/f_100131_ net/minecraft/client/gui/screens/recipebook/BlastingRecipeBookComponent/FILTER_NAME +FD: net/minecraft/client/gui/screens/recipebook/GhostRecipe/f_100136_ net/minecraft/client/gui/screens/recipebook/GhostRecipe/recipe +FD: net/minecraft/client/gui/screens/recipebook/GhostRecipe/f_100137_ net/minecraft/client/gui/screens/recipebook/GhostRecipe/ingredients +FD: net/minecraft/client/gui/screens/recipebook/GhostRecipe/f_100138_ net/minecraft/client/gui/screens/recipebook/GhostRecipe/time +FD: net/minecraft/client/gui/screens/recipebook/GhostRecipe$GhostIngredient/f_100160_ net/minecraft/client/gui/screens/recipebook/GhostRecipe$GhostIngredient/this$0 +FD: net/minecraft/client/gui/screens/recipebook/GhostRecipe$GhostIngredient/f_100161_ net/minecraft/client/gui/screens/recipebook/GhostRecipe$GhostIngredient/ingredient +FD: net/minecraft/client/gui/screens/recipebook/GhostRecipe$GhostIngredient/f_100162_ net/minecraft/client/gui/screens/recipebook/GhostRecipe$GhostIngredient/x +FD: net/minecraft/client/gui/screens/recipebook/GhostRecipe$GhostIngredient/f_100163_ net/minecraft/client/gui/screens/recipebook/GhostRecipe$GhostIngredient/y +FD: net/minecraft/client/gui/screens/recipebook/OverlayRecipeComponent/f_100172_ net/minecraft/client/gui/screens/recipebook/OverlayRecipeComponent/RECIPE_BOOK_LOCATION +FD: net/minecraft/client/gui/screens/recipebook/OverlayRecipeComponent/f_100173_ net/minecraft/client/gui/screens/recipebook/OverlayRecipeComponent/recipeButtons +FD: net/minecraft/client/gui/screens/recipebook/OverlayRecipeComponent/f_100174_ net/minecraft/client/gui/screens/recipebook/OverlayRecipeComponent/isVisible +FD: net/minecraft/client/gui/screens/recipebook/OverlayRecipeComponent/f_100175_ net/minecraft/client/gui/screens/recipebook/OverlayRecipeComponent/x +FD: net/minecraft/client/gui/screens/recipebook/OverlayRecipeComponent/f_100176_ net/minecraft/client/gui/screens/recipebook/OverlayRecipeComponent/y +FD: net/minecraft/client/gui/screens/recipebook/OverlayRecipeComponent/f_100177_ net/minecraft/client/gui/screens/recipebook/OverlayRecipeComponent/minecraft +FD: net/minecraft/client/gui/screens/recipebook/OverlayRecipeComponent/f_100178_ net/minecraft/client/gui/screens/recipebook/OverlayRecipeComponent/collection +FD: net/minecraft/client/gui/screens/recipebook/OverlayRecipeComponent/f_100179_ net/minecraft/client/gui/screens/recipebook/OverlayRecipeComponent/lastRecipeClicked +FD: net/minecraft/client/gui/screens/recipebook/OverlayRecipeComponent/f_100180_ net/minecraft/client/gui/screens/recipebook/OverlayRecipeComponent/time +FD: net/minecraft/client/gui/screens/recipebook/OverlayRecipeComponent/f_100181_ net/minecraft/client/gui/screens/recipebook/OverlayRecipeComponent/isFurnaceMenu +FD: net/minecraft/client/gui/screens/recipebook/OverlayRecipeComponent/f_170036_ net/minecraft/client/gui/screens/recipebook/OverlayRecipeComponent/MAX_ROW +FD: net/minecraft/client/gui/screens/recipebook/OverlayRecipeComponent/f_170037_ net/minecraft/client/gui/screens/recipebook/OverlayRecipeComponent/MAX_ROW_LARGE +FD: net/minecraft/client/gui/screens/recipebook/OverlayRecipeComponent/f_170038_ net/minecraft/client/gui/screens/recipebook/OverlayRecipeComponent/ITEM_RENDER_SCALE +FD: net/minecraft/client/gui/screens/recipebook/OverlayRecipeComponent/f_267446_ net/minecraft/client/gui/screens/recipebook/OverlayRecipeComponent/BUTTON_SIZE +FD: net/minecraft/client/gui/screens/recipebook/OverlayRecipeComponent$OverlayRecipeButton/f_100226_ net/minecraft/client/gui/screens/recipebook/OverlayRecipeComponent$OverlayRecipeButton/ingredientPos +FD: net/minecraft/client/gui/screens/recipebook/OverlayRecipeComponent$OverlayRecipeButton/f_100227_ net/minecraft/client/gui/screens/recipebook/OverlayRecipeComponent$OverlayRecipeButton/this$0 +FD: net/minecraft/client/gui/screens/recipebook/OverlayRecipeComponent$OverlayRecipeButton/f_100228_ net/minecraft/client/gui/screens/recipebook/OverlayRecipeComponent$OverlayRecipeButton/recipe +FD: net/minecraft/client/gui/screens/recipebook/OverlayRecipeComponent$OverlayRecipeButton/f_100229_ net/minecraft/client/gui/screens/recipebook/OverlayRecipeComponent$OverlayRecipeButton/isCraftable +FD: net/minecraft/client/gui/screens/recipebook/OverlayRecipeComponent$OverlayRecipeButton$Pos/f_100250_ net/minecraft/client/gui/screens/recipebook/OverlayRecipeComponent$OverlayRecipeButton$Pos/ingredients +FD: net/minecraft/client/gui/screens/recipebook/OverlayRecipeComponent$OverlayRecipeButton$Pos/f_100251_ net/minecraft/client/gui/screens/recipebook/OverlayRecipeComponent$OverlayRecipeButton$Pos/x +FD: net/minecraft/client/gui/screens/recipebook/OverlayRecipeComponent$OverlayRecipeButton$Pos/f_100252_ net/minecraft/client/gui/screens/recipebook/OverlayRecipeComponent$OverlayRecipeButton$Pos/y +FD: net/minecraft/client/gui/screens/recipebook/OverlayRecipeComponent$OverlayRecipeButton$Pos/f_100253_ net/minecraft/client/gui/screens/recipebook/OverlayRecipeComponent$OverlayRecipeButton$Pos/this$1 +FD: net/minecraft/client/gui/screens/recipebook/OverlayRecipeComponent$OverlaySmeltingRecipeButton/f_100259_ net/minecraft/client/gui/screens/recipebook/OverlayRecipeComponent$OverlaySmeltingRecipeButton/this$0 +FD: net/minecraft/client/gui/screens/recipebook/RecipeBookComponent/f_100268_ net/minecraft/client/gui/screens/recipebook/RecipeBookComponent/RECIPE_BOOK_LOCATION +FD: net/minecraft/client/gui/screens/recipebook/RecipeBookComponent/f_100269_ net/minecraft/client/gui/screens/recipebook/RecipeBookComponent/ghostRecipe +FD: net/minecraft/client/gui/screens/recipebook/RecipeBookComponent/f_100270_ net/minecraft/client/gui/screens/recipebook/RecipeBookComponent/filterButton +FD: net/minecraft/client/gui/screens/recipebook/RecipeBookComponent/f_100271_ net/minecraft/client/gui/screens/recipebook/RecipeBookComponent/menu +FD: net/minecraft/client/gui/screens/recipebook/RecipeBookComponent/f_100272_ net/minecraft/client/gui/screens/recipebook/RecipeBookComponent/minecraft +FD: net/minecraft/client/gui/screens/recipebook/RecipeBookComponent/f_100273_ net/minecraft/client/gui/screens/recipebook/RecipeBookComponent/SEARCH_HINT +FD: net/minecraft/client/gui/screens/recipebook/RecipeBookComponent/f_100274_ net/minecraft/client/gui/screens/recipebook/RecipeBookComponent/ONLY_CRAFTABLES_TOOLTIP +FD: net/minecraft/client/gui/screens/recipebook/RecipeBookComponent/f_100275_ net/minecraft/client/gui/screens/recipebook/RecipeBookComponent/ALL_RECIPES_TOOLTIP +FD: net/minecraft/client/gui/screens/recipebook/RecipeBookComponent/f_100276_ net/minecraft/client/gui/screens/recipebook/RecipeBookComponent/xOffset +FD: net/minecraft/client/gui/screens/recipebook/RecipeBookComponent/f_100277_ net/minecraft/client/gui/screens/recipebook/RecipeBookComponent/width +FD: net/minecraft/client/gui/screens/recipebook/RecipeBookComponent/f_100278_ net/minecraft/client/gui/screens/recipebook/RecipeBookComponent/height +FD: net/minecraft/client/gui/screens/recipebook/RecipeBookComponent/f_100279_ net/minecraft/client/gui/screens/recipebook/RecipeBookComponent/tabButtons +FD: net/minecraft/client/gui/screens/recipebook/RecipeBookComponent/f_100280_ net/minecraft/client/gui/screens/recipebook/RecipeBookComponent/selectedTab +FD: net/minecraft/client/gui/screens/recipebook/RecipeBookComponent/f_100281_ net/minecraft/client/gui/screens/recipebook/RecipeBookComponent/searchBox +FD: net/minecraft/client/gui/screens/recipebook/RecipeBookComponent/f_100282_ net/minecraft/client/gui/screens/recipebook/RecipeBookComponent/lastSearch +FD: net/minecraft/client/gui/screens/recipebook/RecipeBookComponent/f_100283_ net/minecraft/client/gui/screens/recipebook/RecipeBookComponent/book +FD: net/minecraft/client/gui/screens/recipebook/RecipeBookComponent/f_100284_ net/minecraft/client/gui/screens/recipebook/RecipeBookComponent/recipeBookPage +FD: net/minecraft/client/gui/screens/recipebook/RecipeBookComponent/f_100285_ net/minecraft/client/gui/screens/recipebook/RecipeBookComponent/stackedContents +FD: net/minecraft/client/gui/screens/recipebook/RecipeBookComponent/f_100286_ net/minecraft/client/gui/screens/recipebook/RecipeBookComponent/timesInventoryChanged +FD: net/minecraft/client/gui/screens/recipebook/RecipeBookComponent/f_100287_ net/minecraft/client/gui/screens/recipebook/RecipeBookComponent/ignoreTextInput +FD: net/minecraft/client/gui/screens/recipebook/RecipeBookComponent/f_170041_ net/minecraft/client/gui/screens/recipebook/RecipeBookComponent/visible +FD: net/minecraft/client/gui/screens/recipebook/RecipeBookComponent/f_170042_ net/minecraft/client/gui/screens/recipebook/RecipeBookComponent/IMAGE_WIDTH +FD: net/minecraft/client/gui/screens/recipebook/RecipeBookComponent/f_170043_ net/minecraft/client/gui/screens/recipebook/RecipeBookComponent/IMAGE_HEIGHT +FD: net/minecraft/client/gui/screens/recipebook/RecipeBookComponent/f_170044_ net/minecraft/client/gui/screens/recipebook/RecipeBookComponent/OFFSET_X_POSITION +FD: net/minecraft/client/gui/screens/recipebook/RecipeBookComponent/f_181400_ net/minecraft/client/gui/screens/recipebook/RecipeBookComponent/widthTooNarrow +FD: net/minecraft/client/gui/screens/recipebook/RecipeBookPage/f_100394_ net/minecraft/client/gui/screens/recipebook/RecipeBookPage/buttons +FD: net/minecraft/client/gui/screens/recipebook/RecipeBookPage/f_100395_ net/minecraft/client/gui/screens/recipebook/RecipeBookPage/hoveredButton +FD: net/minecraft/client/gui/screens/recipebook/RecipeBookPage/f_100396_ net/minecraft/client/gui/screens/recipebook/RecipeBookPage/overlay +FD: net/minecraft/client/gui/screens/recipebook/RecipeBookPage/f_100397_ net/minecraft/client/gui/screens/recipebook/RecipeBookPage/minecraft +FD: net/minecraft/client/gui/screens/recipebook/RecipeBookPage/f_100398_ net/minecraft/client/gui/screens/recipebook/RecipeBookPage/showListeners +FD: net/minecraft/client/gui/screens/recipebook/RecipeBookPage/f_100399_ net/minecraft/client/gui/screens/recipebook/RecipeBookPage/recipeCollections +FD: net/minecraft/client/gui/screens/recipebook/RecipeBookPage/f_100400_ net/minecraft/client/gui/screens/recipebook/RecipeBookPage/forwardButton +FD: net/minecraft/client/gui/screens/recipebook/RecipeBookPage/f_100401_ net/minecraft/client/gui/screens/recipebook/RecipeBookPage/backButton +FD: net/minecraft/client/gui/screens/recipebook/RecipeBookPage/f_100402_ net/minecraft/client/gui/screens/recipebook/RecipeBookPage/totalPages +FD: net/minecraft/client/gui/screens/recipebook/RecipeBookPage/f_100403_ net/minecraft/client/gui/screens/recipebook/RecipeBookPage/currentPage +FD: net/minecraft/client/gui/screens/recipebook/RecipeBookPage/f_100404_ net/minecraft/client/gui/screens/recipebook/RecipeBookPage/recipeBook +FD: net/minecraft/client/gui/screens/recipebook/RecipeBookPage/f_100405_ net/minecraft/client/gui/screens/recipebook/RecipeBookPage/lastClickedRecipe +FD: net/minecraft/client/gui/screens/recipebook/RecipeBookPage/f_100406_ net/minecraft/client/gui/screens/recipebook/RecipeBookPage/lastClickedRecipeCollection +FD: net/minecraft/client/gui/screens/recipebook/RecipeBookPage/f_170052_ net/minecraft/client/gui/screens/recipebook/RecipeBookPage/ITEMS_PER_PAGE +FD: net/minecraft/client/gui/screens/recipebook/RecipeBookTabButton/f_100445_ net/minecraft/client/gui/screens/recipebook/RecipeBookTabButton/category +FD: net/minecraft/client/gui/screens/recipebook/RecipeBookTabButton/f_100446_ net/minecraft/client/gui/screens/recipebook/RecipeBookTabButton/animationTime +FD: net/minecraft/client/gui/screens/recipebook/RecipeBookTabButton/f_170055_ net/minecraft/client/gui/screens/recipebook/RecipeBookTabButton/ANIMATION_TIME +FD: net/minecraft/client/gui/screens/recipebook/RecipeButton/f_100461_ net/minecraft/client/gui/screens/recipebook/RecipeButton/RECIPE_BOOK_LOCATION +FD: net/minecraft/client/gui/screens/recipebook/RecipeButton/f_100462_ net/minecraft/client/gui/screens/recipebook/RecipeButton/MORE_RECIPES_TOOLTIP +FD: net/minecraft/client/gui/screens/recipebook/RecipeButton/f_100463_ net/minecraft/client/gui/screens/recipebook/RecipeButton/menu +FD: net/minecraft/client/gui/screens/recipebook/RecipeButton/f_100464_ net/minecraft/client/gui/screens/recipebook/RecipeButton/book +FD: net/minecraft/client/gui/screens/recipebook/RecipeButton/f_100465_ net/minecraft/client/gui/screens/recipebook/RecipeButton/collection +FD: net/minecraft/client/gui/screens/recipebook/RecipeButton/f_100466_ net/minecraft/client/gui/screens/recipebook/RecipeButton/time +FD: net/minecraft/client/gui/screens/recipebook/RecipeButton/f_100467_ net/minecraft/client/gui/screens/recipebook/RecipeButton/animationTime +FD: net/minecraft/client/gui/screens/recipebook/RecipeButton/f_100468_ net/minecraft/client/gui/screens/recipebook/RecipeButton/currentIndex +FD: net/minecraft/client/gui/screens/recipebook/RecipeButton/f_170056_ net/minecraft/client/gui/screens/recipebook/RecipeButton/TICKS_TO_SWAP +FD: net/minecraft/client/gui/screens/recipebook/RecipeButton/f_170057_ net/minecraft/client/gui/screens/recipebook/RecipeButton/ANIMATION_TIME +FD: net/minecraft/client/gui/screens/recipebook/RecipeButton/f_170058_ net/minecraft/client/gui/screens/recipebook/RecipeButton/BACKGROUND_SIZE +FD: net/minecraft/client/gui/screens/recipebook/RecipeCollection/f_100491_ net/minecraft/client/gui/screens/recipebook/RecipeCollection/recipes +FD: net/minecraft/client/gui/screens/recipebook/RecipeCollection/f_100492_ net/minecraft/client/gui/screens/recipebook/RecipeCollection/singleResultItem +FD: net/minecraft/client/gui/screens/recipebook/RecipeCollection/f_100493_ net/minecraft/client/gui/screens/recipebook/RecipeCollection/craftable +FD: net/minecraft/client/gui/screens/recipebook/RecipeCollection/f_100494_ net/minecraft/client/gui/screens/recipebook/RecipeCollection/fitsDimensions +FD: net/minecraft/client/gui/screens/recipebook/RecipeCollection/f_100495_ net/minecraft/client/gui/screens/recipebook/RecipeCollection/known +FD: net/minecraft/client/gui/screens/recipebook/RecipeCollection/f_265919_ net/minecraft/client/gui/screens/recipebook/RecipeCollection/registryAccess +FD: net/minecraft/client/gui/screens/recipebook/SmeltingRecipeBookComponent/f_100519_ net/minecraft/client/gui/screens/recipebook/SmeltingRecipeBookComponent/FILTER_NAME +FD: net/minecraft/client/gui/screens/recipebook/SmokingRecipeBookComponent/f_100524_ net/minecraft/client/gui/screens/recipebook/SmokingRecipeBookComponent/FILTER_NAME +FD: net/minecraft/client/gui/screens/reporting/ChatReportScreen/f_238525_ net/minecraft/client/gui/screens/reporting/ChatReportScreen/BUTTON_WIDTH +FD: net/minecraft/client/gui/screens/reporting/ChatReportScreen/f_238530_ net/minecraft/client/gui/screens/reporting/ChatReportScreen/REPORT_SENT_MESSAGE +FD: net/minecraft/client/gui/screens/reporting/ChatReportScreen/f_238545_ net/minecraft/client/gui/screens/reporting/ChatReportScreen/DESCRIBE_PLACEHOLDER +FD: net/minecraft/client/gui/screens/reporting/ChatReportScreen/f_238551_ net/minecraft/client/gui/screens/reporting/ChatReportScreen/reasonDescriptionLabel +FD: net/minecraft/client/gui/screens/reporting/ChatReportScreen/f_238555_ net/minecraft/client/gui/screens/reporting/ChatReportScreen/REPORT_SEND_GENERIC_ERROR +FD: net/minecraft/client/gui/screens/reporting/ChatReportScreen/f_238558_ net/minecraft/client/gui/screens/reporting/ChatReportScreen/SCREEN_HEIGHT +FD: net/minecraft/client/gui/screens/reporting/ChatReportScreen/f_238561_ net/minecraft/client/gui/screens/reporting/ChatReportScreen/sendButton +FD: net/minecraft/client/gui/screens/reporting/ChatReportScreen/f_238565_ net/minecraft/client/gui/screens/reporting/ChatReportScreen/BUTTON_HEIGHT +FD: net/minecraft/client/gui/screens/reporting/ChatReportScreen/f_238568_ net/minecraft/client/gui/screens/reporting/ChatReportScreen/LOGGER +FD: net/minecraft/client/gui/screens/reporting/ChatReportScreen/f_238596_ net/minecraft/client/gui/screens/reporting/ChatReportScreen/lastScreen +FD: net/minecraft/client/gui/screens/reporting/ChatReportScreen/f_238607_ net/minecraft/client/gui/screens/reporting/ChatReportScreen/MORE_COMMENTS_LABEL +FD: net/minecraft/client/gui/screens/reporting/ChatReportScreen/f_238671_ net/minecraft/client/gui/screens/reporting/ChatReportScreen/LABEL_HEIGHT +FD: net/minecraft/client/gui/screens/reporting/ChatReportScreen/f_238678_ net/minecraft/client/gui/screens/reporting/ChatReportScreen/BUTTON_MARGIN_HALF +FD: net/minecraft/client/gui/screens/reporting/ChatReportScreen/f_238723_ net/minecraft/client/gui/screens/reporting/ChatReportScreen/SELECT_REASON +FD: net/minecraft/client/gui/screens/reporting/ChatReportScreen/f_238745_ net/minecraft/client/gui/screens/reporting/ChatReportScreen/SCREEN_WIDTH +FD: net/minecraft/client/gui/screens/reporting/ChatReportScreen/f_238771_ net/minecraft/client/gui/screens/reporting/ChatReportScreen/OBSERVED_WHAT_LABEL +FD: net/minecraft/client/gui/screens/reporting/ChatReportScreen/f_238773_ net/minecraft/client/gui/screens/reporting/ChatReportScreen/cannotBuildReason +FD: net/minecraft/client/gui/screens/reporting/ChatReportScreen/f_238775_ net/minecraft/client/gui/screens/reporting/ChatReportScreen/commentBox +FD: net/minecraft/client/gui/screens/reporting/ChatReportScreen/f_238783_ net/minecraft/client/gui/screens/reporting/ChatReportScreen/REPORT_SENDING_TITLE +FD: net/minecraft/client/gui/screens/reporting/ChatReportScreen/f_238795_ net/minecraft/client/gui/screens/reporting/ChatReportScreen/SELECT_CHAT_MESSAGE +FD: net/minecraft/client/gui/screens/reporting/ChatReportScreen/f_238807_ net/minecraft/client/gui/screens/reporting/ChatReportScreen/BUTTON_MARGIN +FD: net/minecraft/client/gui/screens/reporting/ChatReportScreen/f_238816_ net/minecraft/client/gui/screens/reporting/ChatReportScreen/reportingContext +FD: net/minecraft/client/gui/screens/reporting/ChatReportScreen/f_240228_ net/minecraft/client/gui/screens/reporting/ChatReportScreen/REPORT_SENT_TITLE +FD: net/minecraft/client/gui/screens/reporting/ChatReportScreen/f_240232_ net/minecraft/client/gui/screens/reporting/ChatReportScreen/REPORT_ERROR_TITLE +FD: net/minecraft/client/gui/screens/reporting/ChatReportScreen/f_252515_ net/minecraft/client/gui/screens/reporting/ChatReportScreen/reportBuilder +FD: net/minecraft/client/gui/screens/reporting/ChatReportScreen$DiscardReportWarningScreen/f_238630_ net/minecraft/client/gui/screens/reporting/ChatReportScreen$DiscardReportWarningScreen/RETURN +FD: net/minecraft/client/gui/screens/reporting/ChatReportScreen$DiscardReportWarningScreen/f_238642_ net/minecraft/client/gui/screens/reporting/ChatReportScreen$DiscardReportWarningScreen/this$0 +FD: net/minecraft/client/gui/screens/reporting/ChatReportScreen$DiscardReportWarningScreen/f_238679_ net/minecraft/client/gui/screens/reporting/ChatReportScreen$DiscardReportWarningScreen/DISCARD +FD: net/minecraft/client/gui/screens/reporting/ChatReportScreen$DiscardReportWarningScreen/f_238704_ net/minecraft/client/gui/screens/reporting/ChatReportScreen$DiscardReportWarningScreen/MESSAGE +FD: net/minecraft/client/gui/screens/reporting/ChatReportScreen$DiscardReportWarningScreen/f_238729_ net/minecraft/client/gui/screens/reporting/ChatReportScreen$DiscardReportWarningScreen/TITLE +FD: net/minecraft/client/gui/screens/reporting/ChatReportScreen$DiscardReportWarningScreen/f_252405_ net/minecraft/client/gui/screens/reporting/ChatReportScreen$DiscardReportWarningScreen/DRAFT +FD: net/minecraft/client/gui/screens/reporting/ChatSelectionLogFiller/f_238535_ net/minecraft/client/gui/screens/reporting/ChatSelectionLogFiller/canReport +FD: net/minecraft/client/gui/screens/reporting/ChatSelectionLogFiller/f_238669_ net/minecraft/client/gui/screens/reporting/ChatSelectionLogFiller/log +FD: net/minecraft/client/gui/screens/reporting/ChatSelectionLogFiller/f_243871_ net/minecraft/client/gui/screens/reporting/ChatSelectionLogFiller/contextBuilder +FD: net/minecraft/client/gui/screens/reporting/ChatSelectionLogFiller/f_244006_ net/minecraft/client/gui/screens/reporting/ChatSelectionLogFiller/missedCount +FD: net/minecraft/client/gui/screens/reporting/ChatSelectionLogFiller/f_244035_ net/minecraft/client/gui/screens/reporting/ChatSelectionLogFiller/eventId +FD: net/minecraft/client/gui/screens/reporting/ChatSelectionLogFiller/f_244367_ net/minecraft/client/gui/screens/reporting/ChatSelectionLogFiller/lastMessage +FD: net/minecraft/client/gui/screens/reporting/ChatSelectionLogFiller/f_252430_ net/minecraft/client/gui/screens/reporting/ChatSelectionLogFiller/previousLink +FD: net/minecraft/client/gui/screens/reporting/ChatSelectionScreen/f_238567_ net/minecraft/client/gui/screens/reporting/ChatSelectionScreen/report +FD: net/minecraft/client/gui/screens/reporting/ChatSelectionScreen/f_238622_ net/minecraft/client/gui/screens/reporting/ChatSelectionScreen/CONTEXT_INFO +FD: net/minecraft/client/gui/screens/reporting/ChatSelectionScreen/f_238651_ net/minecraft/client/gui/screens/reporting/ChatSelectionScreen/reportingContext +FD: net/minecraft/client/gui/screens/reporting/ChatSelectionScreen/f_238686_ net/minecraft/client/gui/screens/reporting/ChatSelectionScreen/chatSelectionList +FD: net/minecraft/client/gui/screens/reporting/ChatSelectionScreen/f_238718_ net/minecraft/client/gui/screens/reporting/ChatSelectionScreen/TITLE +FD: net/minecraft/client/gui/screens/reporting/ChatSelectionScreen/f_238733_ net/minecraft/client/gui/screens/reporting/ChatSelectionScreen/chatLogFiller +FD: net/minecraft/client/gui/screens/reporting/ChatSelectionScreen/f_238763_ net/minecraft/client/gui/screens/reporting/ChatSelectionScreen/confirmSelectedButton +FD: net/minecraft/client/gui/screens/reporting/ChatSelectionScreen/f_238785_ net/minecraft/client/gui/screens/reporting/ChatSelectionScreen/contextInfoLabel +FD: net/minecraft/client/gui/screens/reporting/ChatSelectionScreen/f_238797_ net/minecraft/client/gui/screens/reporting/ChatSelectionScreen/lastScreen +FD: net/minecraft/client/gui/screens/reporting/ChatSelectionScreen/f_238817_ net/minecraft/client/gui/screens/reporting/ChatSelectionScreen/onSelected +FD: net/minecraft/client/gui/screens/reporting/ChatSelectionScreen$ChatSelectionList/f_238829_ net/minecraft/client/gui/screens/reporting/ChatSelectionScreen$ChatSelectionList/this$0 +FD: net/minecraft/client/gui/screens/reporting/ChatSelectionScreen$ChatSelectionList/f_238832_ net/minecraft/client/gui/screens/reporting/ChatSelectionScreen$ChatSelectionList/previousHeading +FD: net/minecraft/client/gui/screens/reporting/ChatSelectionScreen$ChatSelectionList$DividerEntry/f_238611_ net/minecraft/client/gui/screens/reporting/ChatSelectionScreen$ChatSelectionList$DividerEntry/this$1 +FD: net/minecraft/client/gui/screens/reporting/ChatSelectionScreen$ChatSelectionList$DividerEntry/f_238646_ net/minecraft/client/gui/screens/reporting/ChatSelectionScreen$ChatSelectionList$DividerEntry/COLOR +FD: net/minecraft/client/gui/screens/reporting/ChatSelectionScreen$ChatSelectionList$DividerEntry/f_238728_ net/minecraft/client/gui/screens/reporting/ChatSelectionScreen$ChatSelectionList$DividerEntry/text +FD: net/minecraft/client/gui/screens/reporting/ChatSelectionScreen$ChatSelectionList$Entry/f_238585_ net/minecraft/client/gui/screens/reporting/ChatSelectionScreen$ChatSelectionList$Entry/this$1 +FD: net/minecraft/client/gui/screens/reporting/ChatSelectionScreen$ChatSelectionList$Heading/f_238587_ net/minecraft/client/gui/screens/reporting/ChatSelectionScreen$ChatSelectionList$Heading/sender +FD: net/minecraft/client/gui/screens/reporting/ChatSelectionScreen$ChatSelectionList$Heading/f_238665_ net/minecraft/client/gui/screens/reporting/ChatSelectionScreen$ChatSelectionList$Heading/entry +FD: net/minecraft/client/gui/screens/reporting/ChatSelectionScreen$ChatSelectionList$MessageEntry/f_238546_ net/minecraft/client/gui/screens/reporting/ChatSelectionScreen$ChatSelectionList$MessageEntry/chatId +FD: net/minecraft/client/gui/screens/reporting/ChatSelectionScreen$ChatSelectionList$MessageEntry/f_238593_ net/minecraft/client/gui/screens/reporting/ChatSelectionScreen$ChatSelectionList$MessageEntry/playerMessage +FD: net/minecraft/client/gui/screens/reporting/ChatSelectionScreen$ChatSelectionList$MessageEntry/f_238609_ net/minecraft/client/gui/screens/reporting/ChatSelectionScreen$ChatSelectionList$MessageEntry/narration +FD: net/minecraft/client/gui/screens/reporting/ChatSelectionScreen$ChatSelectionList$MessageEntry/f_238660_ net/minecraft/client/gui/screens/reporting/ChatSelectionScreen$ChatSelectionList$MessageEntry/text +FD: net/minecraft/client/gui/screens/reporting/ChatSelectionScreen$ChatSelectionList$MessageEntry/f_238672_ net/minecraft/client/gui/screens/reporting/ChatSelectionScreen$ChatSelectionList$MessageEntry/INDENT_AMOUNT +FD: net/minecraft/client/gui/screens/reporting/ChatSelectionScreen$ChatSelectionList$MessageEntry/f_238726_ net/minecraft/client/gui/screens/reporting/ChatSelectionScreen$ChatSelectionList$MessageEntry/hoverText +FD: net/minecraft/client/gui/screens/reporting/ChatSelectionScreen$ChatSelectionList$MessageEntry/f_238811_ net/minecraft/client/gui/screens/reporting/ChatSelectionScreen$ChatSelectionList$MessageEntry/canReport +FD: net/minecraft/client/gui/screens/reporting/ChatSelectionScreen$ChatSelectionList$MessageEntry/f_238833_ net/minecraft/client/gui/screens/reporting/ChatSelectionScreen$ChatSelectionList$MessageEntry/this$1 +FD: net/minecraft/client/gui/screens/reporting/ChatSelectionScreen$ChatSelectionList$MessageEntry/f_240224_ net/minecraft/client/gui/screens/reporting/ChatSelectionScreen$ChatSelectionList$MessageEntry/CHECKMARK_HEIGHT +FD: net/minecraft/client/gui/screens/reporting/ChatSelectionScreen$ChatSelectionList$MessageEntry/f_240226_ net/minecraft/client/gui/screens/reporting/ChatSelectionScreen$ChatSelectionList$MessageEntry/CHECKMARK_TEXTURE +FD: net/minecraft/client/gui/screens/reporting/ChatSelectionScreen$ChatSelectionList$MessageEntry/f_240229_ net/minecraft/client/gui/screens/reporting/ChatSelectionScreen$ChatSelectionList$MessageEntry/CHECKMARK_WIDTH +FD: net/minecraft/client/gui/screens/reporting/ChatSelectionScreen$ChatSelectionList$MessageEntry/f_240345_ net/minecraft/client/gui/screens/reporting/ChatSelectionScreen$ChatSelectionList$MessageEntry/TAG_MARGIN_LEFT +FD: net/minecraft/client/gui/screens/reporting/ChatSelectionScreen$ChatSelectionList$MessageEntry/f_240368_ net/minecraft/client/gui/screens/reporting/ChatSelectionScreen$ChatSelectionList$MessageEntry/tagIcon +FD: net/minecraft/client/gui/screens/reporting/ChatSelectionScreen$ChatSelectionList$MessageEntry/f_240376_ net/minecraft/client/gui/screens/reporting/ChatSelectionScreen$ChatSelectionList$MessageEntry/tagHoverText +FD: net/minecraft/client/gui/screens/reporting/ChatSelectionScreen$ChatSelectionList$MessageHeadingEntry/f_238556_ net/minecraft/client/gui/screens/reporting/ChatSelectionScreen$ChatSelectionList$MessageHeadingEntry/canReport +FD: net/minecraft/client/gui/screens/reporting/ChatSelectionScreen$ChatSelectionList$MessageHeadingEntry/f_238600_ net/minecraft/client/gui/screens/reporting/ChatSelectionScreen$ChatSelectionList$MessageHeadingEntry/heading +FD: net/minecraft/client/gui/screens/reporting/ChatSelectionScreen$ChatSelectionList$MessageHeadingEntry/f_238674_ net/minecraft/client/gui/screens/reporting/ChatSelectionScreen$ChatSelectionList$MessageHeadingEntry/skin +FD: net/minecraft/client/gui/screens/reporting/ChatSelectionScreen$ChatSelectionList$MessageHeadingEntry/f_238676_ net/minecraft/client/gui/screens/reporting/ChatSelectionScreen$ChatSelectionList$MessageHeadingEntry/FACE_SIZE +FD: net/minecraft/client/gui/screens/reporting/ChatSelectionScreen$ChatSelectionList$MessageHeadingEntry/f_238721_ net/minecraft/client/gui/screens/reporting/ChatSelectionScreen$ChatSelectionList$MessageHeadingEntry/this$1 +FD: net/minecraft/client/gui/screens/reporting/ChatSelectionScreen$ChatSelectionList$PaddingEntry/f_238760_ net/minecraft/client/gui/screens/reporting/ChatSelectionScreen$ChatSelectionList$PaddingEntry/this$1 +FD: net/minecraft/client/gui/screens/reporting/ReportReasonSelectionScreen/f_238542_ net/minecraft/client/gui/screens/reporting/ReportReasonSelectionScreen/CONTENT_WIDTH +FD: net/minecraft/client/gui/screens/reporting/ReportReasonSelectionScreen/f_238582_ net/minecraft/client/gui/screens/reporting/ReportReasonSelectionScreen/BUTTON_HEIGHT +FD: net/minecraft/client/gui/screens/reporting/ReportReasonSelectionScreen/f_238588_ net/minecraft/client/gui/screens/reporting/ReportReasonSelectionScreen/REASON_TITLE +FD: net/minecraft/client/gui/screens/reporting/ReportReasonSelectionScreen/f_238612_ net/minecraft/client/gui/screens/reporting/ReportReasonSelectionScreen/REASON_DESCRIPTION +FD: net/minecraft/client/gui/screens/reporting/ReportReasonSelectionScreen/f_238613_ net/minecraft/client/gui/screens/reporting/ReportReasonSelectionScreen/reasonSelectionList +FD: net/minecraft/client/gui/screens/reporting/ReportReasonSelectionScreen/f_238626_ net/minecraft/client/gui/screens/reporting/ReportReasonSelectionScreen/onSelectedReason +FD: net/minecraft/client/gui/screens/reporting/ReportReasonSelectionScreen/f_238643_ net/minecraft/client/gui/screens/reporting/ReportReasonSelectionScreen/lastScreen +FD: net/minecraft/client/gui/screens/reporting/ReportReasonSelectionScreen/f_238652_ net/minecraft/client/gui/screens/reporting/ReportReasonSelectionScreen/PADDING +FD: net/minecraft/client/gui/screens/reporting/ReportReasonSelectionScreen/f_238753_ net/minecraft/client/gui/screens/reporting/ReportReasonSelectionScreen/FOOTER_HEIGHT +FD: net/minecraft/client/gui/screens/reporting/ReportReasonSelectionScreen/f_238813_ net/minecraft/client/gui/screens/reporting/ReportReasonSelectionScreen/BUTTON_WIDTH +FD: net/minecraft/client/gui/screens/reporting/ReportReasonSelectionScreen/f_240235_ net/minecraft/client/gui/screens/reporting/ReportReasonSelectionScreen/READ_INFO_LABEL +FD: net/minecraft/client/gui/screens/reporting/ReportReasonSelectionScreen/f_240344_ net/minecraft/client/gui/screens/reporting/ReportReasonSelectionScreen/currentlySelectedReason +FD: net/minecraft/client/gui/screens/reporting/ReportReasonSelectionScreen$ReasonSelectionList/f_238751_ net/minecraft/client/gui/screens/reporting/ReportReasonSelectionScreen$ReasonSelectionList/this$0 +FD: net/minecraft/client/gui/screens/reporting/ReportReasonSelectionScreen$ReasonSelectionList$Entry/f_238519_ net/minecraft/client/gui/screens/reporting/ReportReasonSelectionScreen$ReasonSelectionList$Entry/reason +FD: net/minecraft/client/gui/screens/reporting/ReportReasonSelectionScreen$ReasonSelectionList$Entry/f_238684_ net/minecraft/client/gui/screens/reporting/ReportReasonSelectionScreen$ReasonSelectionList$Entry/this$1 +FD: net/minecraft/client/gui/screens/social/PlayerEntry/f_100529_ net/minecraft/client/gui/screens/social/PlayerEntry/SKIN_SHADE +FD: net/minecraft/client/gui/screens/social/PlayerEntry/f_100530_ net/minecraft/client/gui/screens/social/PlayerEntry/BG_FILL +FD: net/minecraft/client/gui/screens/social/PlayerEntry/f_100531_ net/minecraft/client/gui/screens/social/PlayerEntry/BG_FILL_REMOVED +FD: net/minecraft/client/gui/screens/social/PlayerEntry/f_100532_ net/minecraft/client/gui/screens/social/PlayerEntry/PLAYERNAME_COLOR +FD: net/minecraft/client/gui/screens/social/PlayerEntry/f_100533_ net/minecraft/client/gui/screens/social/PlayerEntry/PLAYER_STATUS_COLOR +FD: net/minecraft/client/gui/screens/social/PlayerEntry/f_100534_ net/minecraft/client/gui/screens/social/PlayerEntry/minecraft +FD: net/minecraft/client/gui/screens/social/PlayerEntry/f_100535_ net/minecraft/client/gui/screens/social/PlayerEntry/children +FD: net/minecraft/client/gui/screens/social/PlayerEntry/f_100536_ net/minecraft/client/gui/screens/social/PlayerEntry/id +FD: net/minecraft/client/gui/screens/social/PlayerEntry/f_100537_ net/minecraft/client/gui/screens/social/PlayerEntry/playerName +FD: net/minecraft/client/gui/screens/social/PlayerEntry/f_100538_ net/minecraft/client/gui/screens/social/PlayerEntry/skinGetter +FD: net/minecraft/client/gui/screens/social/PlayerEntry/f_100539_ net/minecraft/client/gui/screens/social/PlayerEntry/isRemoved +FD: net/minecraft/client/gui/screens/social/PlayerEntry/f_100540_ net/minecraft/client/gui/screens/social/PlayerEntry/hideButton +FD: net/minecraft/client/gui/screens/social/PlayerEntry/f_100541_ net/minecraft/client/gui/screens/social/PlayerEntry/showButton +FD: net/minecraft/client/gui/screens/social/PlayerEntry/f_100544_ net/minecraft/client/gui/screens/social/PlayerEntry/tooltipHoverTime +FD: net/minecraft/client/gui/screens/social/PlayerEntry/f_100545_ net/minecraft/client/gui/screens/social/PlayerEntry/HIDDEN +FD: net/minecraft/client/gui/screens/social/PlayerEntry/f_100546_ net/minecraft/client/gui/screens/social/PlayerEntry/BLOCKED +FD: net/minecraft/client/gui/screens/social/PlayerEntry/f_100547_ net/minecraft/client/gui/screens/social/PlayerEntry/OFFLINE +FD: net/minecraft/client/gui/screens/social/PlayerEntry/f_100548_ net/minecraft/client/gui/screens/social/PlayerEntry/HIDDEN_OFFLINE +FD: net/minecraft/client/gui/screens/social/PlayerEntry/f_100549_ net/minecraft/client/gui/screens/social/PlayerEntry/BLOCKED_OFFLINE +FD: net/minecraft/client/gui/screens/social/PlayerEntry/f_170061_ net/minecraft/client/gui/screens/social/PlayerEntry/PADDING +FD: net/minecraft/client/gui/screens/social/PlayerEntry/f_170062_ net/minecraft/client/gui/screens/social/PlayerEntry/CHAT_TOGGLE_ICON_SIZE +FD: net/minecraft/client/gui/screens/social/PlayerEntry/f_170063_ net/minecraft/client/gui/screens/social/PlayerEntry/CHAT_TOGGLE_ICON_X +FD: net/minecraft/client/gui/screens/social/PlayerEntry/f_170064_ net/minecraft/client/gui/screens/social/PlayerEntry/CHAT_TOGGLE_ICON_Y +FD: net/minecraft/client/gui/screens/social/PlayerEntry/f_170065_ net/minecraft/client/gui/screens/social/PlayerEntry/TOOLTIP_DELAY +FD: net/minecraft/client/gui/screens/social/PlayerEntry/f_170069_ net/minecraft/client/gui/screens/social/PlayerEntry/SKIN_SIZE +FD: net/minecraft/client/gui/screens/social/PlayerEntry/f_238614_ net/minecraft/client/gui/screens/social/PlayerEntry/reportButton +FD: net/minecraft/client/gui/screens/social/PlayerEntry/f_238715_ net/minecraft/client/gui/screens/social/PlayerEntry/REPORT_DISABLED_TOOLTIP +FD: net/minecraft/client/gui/screens/social/PlayerEntry/f_238820_ net/minecraft/client/gui/screens/social/PlayerEntry/REPORT_BUTTON_LOCATION +FD: net/minecraft/client/gui/screens/social/PlayerEntry/f_240655_ net/minecraft/client/gui/screens/social/PlayerEntry/REPORT_PLAYER_TOOLTIP +FD: net/minecraft/client/gui/screens/social/PlayerEntry/f_240656_ net/minecraft/client/gui/screens/social/PlayerEntry/HIDE_TEXT_TOOLTIP +FD: net/minecraft/client/gui/screens/social/PlayerEntry/f_240657_ net/minecraft/client/gui/screens/social/PlayerEntry/SHOW_TEXT_TOOLTIP +FD: net/minecraft/client/gui/screens/social/PlayerEntry/f_240670_ net/minecraft/client/gui/screens/social/PlayerEntry/reportingEnabled +FD: net/minecraft/client/gui/screens/social/PlayerEntry/f_240676_ net/minecraft/client/gui/screens/social/PlayerEntry/hasRecentMessages +FD: net/minecraft/client/gui/screens/social/PlayerEntry/f_242995_ net/minecraft/client/gui/screens/social/PlayerEntry/NOT_REPORTABLE_TOOLTIP +FD: net/minecraft/client/gui/screens/social/PlayerEntry/f_243019_ net/minecraft/client/gui/screens/social/PlayerEntry/playerReportable +FD: net/minecraft/client/gui/screens/social/PlayerEntry/f_252399_ net/minecraft/client/gui/screens/social/PlayerEntry/hasDraftReport +FD: net/minecraft/client/gui/screens/social/PlayerEntry$1/f_100622_ net/minecraft/client/gui/screens/social/PlayerEntry$1/this$0 +FD: net/minecraft/client/gui/screens/social/PlayerEntry$2/f_100639_ net/minecraft/client/gui/screens/social/PlayerEntry$2/this$0 +FD: net/minecraft/client/gui/screens/social/PlayerEntry$3/f_170096_ net/minecraft/client/gui/screens/social/PlayerEntry$3/this$0 +FD: net/minecraft/client/gui/screens/social/PlayerSocialManager/f_100668_ net/minecraft/client/gui/screens/social/PlayerSocialManager/minecraft +FD: net/minecraft/client/gui/screens/social/PlayerSocialManager/f_100669_ net/minecraft/client/gui/screens/social/PlayerSocialManager/hiddenPlayers +FD: net/minecraft/client/gui/screens/social/PlayerSocialManager/f_100670_ net/minecraft/client/gui/screens/social/PlayerSocialManager/service +FD: net/minecraft/client/gui/screens/social/PlayerSocialManager/f_100671_ net/minecraft/client/gui/screens/social/PlayerSocialManager/discoveredNamesToUUID +FD: net/minecraft/client/gui/screens/social/PlayerSocialManager/f_194054_ net/minecraft/client/gui/screens/social/PlayerSocialManager/onlineMode +FD: net/minecraft/client/gui/screens/social/PlayerSocialManager/f_194055_ net/minecraft/client/gui/screens/social/PlayerSocialManager/pendingBlockListRefresh +FD: net/minecraft/client/gui/screens/social/SocialInteractionsPlayerList/f_100692_ net/minecraft/client/gui/screens/social/SocialInteractionsPlayerList/socialInteractionsScreen +FD: net/minecraft/client/gui/screens/social/SocialInteractionsPlayerList/f_100694_ net/minecraft/client/gui/screens/social/SocialInteractionsPlayerList/players +FD: net/minecraft/client/gui/screens/social/SocialInteractionsPlayerList/f_100695_ net/minecraft/client/gui/screens/social/SocialInteractionsPlayerList/filter +FD: net/minecraft/client/gui/screens/social/SocialInteractionsScreen/f_100726_ net/minecraft/client/gui/screens/social/SocialInteractionsScreen/lastSearch +FD: net/minecraft/client/gui/screens/social/SocialInteractionsScreen/f_100727_ net/minecraft/client/gui/screens/social/SocialInteractionsScreen/page +FD: net/minecraft/client/gui/screens/social/SocialInteractionsScreen/f_100728_ net/minecraft/client/gui/screens/social/SocialInteractionsScreen/allButton +FD: net/minecraft/client/gui/screens/social/SocialInteractionsScreen/f_100729_ net/minecraft/client/gui/screens/social/SocialInteractionsScreen/hiddenButton +FD: net/minecraft/client/gui/screens/social/SocialInteractionsScreen/f_100730_ net/minecraft/client/gui/screens/social/SocialInteractionsScreen/blockedButton +FD: net/minecraft/client/gui/screens/social/SocialInteractionsScreen/f_100731_ net/minecraft/client/gui/screens/social/SocialInteractionsScreen/blockingHintButton +FD: net/minecraft/client/gui/screens/social/SocialInteractionsScreen/f_100732_ net/minecraft/client/gui/screens/social/SocialInteractionsScreen/serverLabel +FD: net/minecraft/client/gui/screens/social/SocialInteractionsScreen/f_100733_ net/minecraft/client/gui/screens/social/SocialInteractionsScreen/playerCount +FD: net/minecraft/client/gui/screens/social/SocialInteractionsScreen/f_100734_ net/minecraft/client/gui/screens/social/SocialInteractionsScreen/initialized +FD: net/minecraft/client/gui/screens/social/SocialInteractionsScreen/f_100736_ net/minecraft/client/gui/screens/social/SocialInteractionsScreen/SOCIAL_INTERACTIONS_LOCATION +FD: net/minecraft/client/gui/screens/social/SocialInteractionsScreen/f_100737_ net/minecraft/client/gui/screens/social/SocialInteractionsScreen/TAB_ALL +FD: net/minecraft/client/gui/screens/social/SocialInteractionsScreen/f_100738_ net/minecraft/client/gui/screens/social/SocialInteractionsScreen/TAB_HIDDEN +FD: net/minecraft/client/gui/screens/social/SocialInteractionsScreen/f_100739_ net/minecraft/client/gui/screens/social/SocialInteractionsScreen/TAB_BLOCKED +FD: net/minecraft/client/gui/screens/social/SocialInteractionsScreen/f_100740_ net/minecraft/client/gui/screens/social/SocialInteractionsScreen/TAB_ALL_SELECTED +FD: net/minecraft/client/gui/screens/social/SocialInteractionsScreen/f_100741_ net/minecraft/client/gui/screens/social/SocialInteractionsScreen/TAB_HIDDEN_SELECTED +FD: net/minecraft/client/gui/screens/social/SocialInteractionsScreen/f_100742_ net/minecraft/client/gui/screens/social/SocialInteractionsScreen/TAB_BLOCKED_SELECTED +FD: net/minecraft/client/gui/screens/social/SocialInteractionsScreen/f_100743_ net/minecraft/client/gui/screens/social/SocialInteractionsScreen/SEARCH_HINT +FD: net/minecraft/client/gui/screens/social/SocialInteractionsScreen/f_100744_ net/minecraft/client/gui/screens/social/SocialInteractionsScreen/EMPTY_SEARCH +FD: net/minecraft/client/gui/screens/social/SocialInteractionsScreen/f_100745_ net/minecraft/client/gui/screens/social/SocialInteractionsScreen/EMPTY_HIDDEN +FD: net/minecraft/client/gui/screens/social/SocialInteractionsScreen/f_100746_ net/minecraft/client/gui/screens/social/SocialInteractionsScreen/EMPTY_BLOCKED +FD: net/minecraft/client/gui/screens/social/SocialInteractionsScreen/f_100747_ net/minecraft/client/gui/screens/social/SocialInteractionsScreen/BLOCKING_HINT +FD: net/minecraft/client/gui/screens/social/SocialInteractionsScreen/f_100748_ net/minecraft/client/gui/screens/social/SocialInteractionsScreen/socialInteractionsPlayerList +FD: net/minecraft/client/gui/screens/social/SocialInteractionsScreen/f_100749_ net/minecraft/client/gui/screens/social/SocialInteractionsScreen/searchBox +FD: net/minecraft/client/gui/screens/social/SocialInteractionsScreen/f_170131_ net/minecraft/client/gui/screens/social/SocialInteractionsScreen/BG_WIDTH +FD: net/minecraft/client/gui/screens/social/SocialInteractionsScreen/f_170132_ net/minecraft/client/gui/screens/social/SocialInteractionsScreen/SEARCH_HEIGHT +FD: net/minecraft/client/gui/screens/social/SocialInteractionsScreen/f_170133_ net/minecraft/client/gui/screens/social/SocialInteractionsScreen/MARGIN_Y +FD: net/minecraft/client/gui/screens/social/SocialInteractionsScreen/f_170134_ net/minecraft/client/gui/screens/social/SocialInteractionsScreen/IMAGE_WIDTH +FD: net/minecraft/client/gui/screens/social/SocialInteractionsScreen/f_170135_ net/minecraft/client/gui/screens/social/SocialInteractionsScreen/BUTTON_HEIGHT +FD: net/minecraft/client/gui/screens/social/SocialInteractionsScreen/f_170136_ net/minecraft/client/gui/screens/social/SocialInteractionsScreen/ITEM_HEIGHT +FD: net/minecraft/client/gui/screens/social/SocialInteractionsScreen/f_170137_ net/minecraft/client/gui/screens/social/SocialInteractionsScreen/LIST_START +FD: net/minecraft/client/gui/screens/social/SocialInteractionsScreen/f_170138_ net/minecraft/client/gui/screens/social/SocialInteractionsScreen/SEARCH_START +FD: net/minecraft/client/gui/screens/social/SocialInteractionsScreen/f_170140_ net/minecraft/client/gui/screens/social/SocialInteractionsScreen/BG_BORDER_SIZE +FD: net/minecraft/client/gui/screens/social/SocialInteractionsScreen$1/f_100803_ net/minecraft/client/gui/screens/social/SocialInteractionsScreen$1/this$0 +FD: net/minecraft/client/gui/screens/social/SocialInteractionsScreen$2/f_100813_ net/minecraft/client/gui/screens/social/SocialInteractionsScreen$2/$SwitchMap$net$minecraft$client$gui$screens$social$SocialInteractionsScreen$Page +FD: net/minecraft/client/gui/screens/social/SocialInteractionsScreen$Page/$VALUES net/minecraft/client/gui/screens/social/SocialInteractionsScreen$Page/$VALUES +FD: net/minecraft/client/gui/screens/social/SocialInteractionsScreen$Page/ALL net/minecraft/client/gui/screens/social/SocialInteractionsScreen$Page/ALL +FD: net/minecraft/client/gui/screens/social/SocialInteractionsScreen$Page/BLOCKED net/minecraft/client/gui/screens/social/SocialInteractionsScreen$Page/BLOCKED +FD: net/minecraft/client/gui/screens/social/SocialInteractionsScreen$Page/HIDDEN net/minecraft/client/gui/screens/social/SocialInteractionsScreen$Page/HIDDEN +FD: net/minecraft/client/gui/screens/telemetry/TelemetryEventWidget/f_260432_ net/minecraft/client/gui/screens/telemetry/TelemetryEventWidget/PROPERTY_TITLE +FD: net/minecraft/client/gui/screens/telemetry/TelemetryEventWidget/f_260489_ net/minecraft/client/gui/screens/telemetry/TelemetryEventWidget/content +FD: net/minecraft/client/gui/screens/telemetry/TelemetryEventWidget/f_260606_ net/minecraft/client/gui/screens/telemetry/TelemetryEventWidget/font +FD: net/minecraft/client/gui/screens/telemetry/TelemetryEventWidget/f_260637_ net/minecraft/client/gui/screens/telemetry/TelemetryEventWidget/TELEMETRY_REQUIRED_TRANSLATION_KEY +FD: net/minecraft/client/gui/screens/telemetry/TelemetryEventWidget/f_260658_ net/minecraft/client/gui/screens/telemetry/TelemetryEventWidget/TELEMETRY_OPTIONAL_TRANSLATION_KEY +FD: net/minecraft/client/gui/screens/telemetry/TelemetryEventWidget/f_260673_ net/minecraft/client/gui/screens/telemetry/TelemetryEventWidget/onScrolledListener +FD: net/minecraft/client/gui/screens/telemetry/TelemetryEventWidget/f_260678_ net/minecraft/client/gui/screens/telemetry/TelemetryEventWidget/HEADER_HORIZONTAL_PADDING +FD: net/minecraft/client/gui/screens/telemetry/TelemetryEventWidget$Content/f_260488_ net/minecraft/client/gui/screens/telemetry/TelemetryEventWidget$Content/narration +FD: net/minecraft/client/gui/screens/telemetry/TelemetryEventWidget$Content/f_260717_ net/minecraft/client/gui/screens/telemetry/TelemetryEventWidget$Content/container +FD: net/minecraft/client/gui/screens/telemetry/TelemetryEventWidget$ContentBuilder/f_260507_ net/minecraft/client/gui/screens/telemetry/TelemetryEventWidget$ContentBuilder/narration +FD: net/minecraft/client/gui/screens/telemetry/TelemetryEventWidget$ContentBuilder/f_260525_ net/minecraft/client/gui/screens/telemetry/TelemetryEventWidget$ContentBuilder/alignHeader +FD: net/minecraft/client/gui/screens/telemetry/TelemetryEventWidget$ContentBuilder/f_260584_ net/minecraft/client/gui/screens/telemetry/TelemetryEventWidget$ContentBuilder/helper +FD: net/minecraft/client/gui/screens/telemetry/TelemetryEventWidget$ContentBuilder/f_260618_ net/minecraft/client/gui/screens/telemetry/TelemetryEventWidget$ContentBuilder/width +FD: net/minecraft/client/gui/screens/telemetry/TelemetryEventWidget$ContentBuilder/f_260715_ net/minecraft/client/gui/screens/telemetry/TelemetryEventWidget$ContentBuilder/grid +FD: net/minecraft/client/gui/screens/telemetry/TelemetryInfoScreen/f_260462_ net/minecraft/client/gui/screens/telemetry/TelemetryInfoScreen/PADDING +FD: net/minecraft/client/gui/screens/telemetry/TelemetryInfoScreen/f_260486_ net/minecraft/client/gui/screens/telemetry/TelemetryInfoScreen/DESCRIPTION +FD: net/minecraft/client/gui/screens/telemetry/TelemetryInfoScreen/f_260498_ net/minecraft/client/gui/screens/telemetry/TelemetryInfoScreen/BUTTON_GIVE_FEEDBACK +FD: net/minecraft/client/gui/screens/telemetry/TelemetryInfoScreen/f_260514_ net/minecraft/client/gui/screens/telemetry/TelemetryInfoScreen/telemetryEventWidget +FD: net/minecraft/client/gui/screens/telemetry/TelemetryInfoScreen/f_260521_ net/minecraft/client/gui/screens/telemetry/TelemetryInfoScreen/options +FD: net/minecraft/client/gui/screens/telemetry/TelemetryInfoScreen/f_260608_ net/minecraft/client/gui/screens/telemetry/TelemetryInfoScreen/TITLE +FD: net/minecraft/client/gui/screens/telemetry/TelemetryInfoScreen/f_260671_ net/minecraft/client/gui/screens/telemetry/TelemetryInfoScreen/lastScreen +FD: net/minecraft/client/gui/screens/telemetry/TelemetryInfoScreen/f_260692_ net/minecraft/client/gui/screens/telemetry/TelemetryInfoScreen/savedScroll +FD: net/minecraft/client/gui/screens/telemetry/TelemetryInfoScreen/f_260718_ net/minecraft/client/gui/screens/telemetry/TelemetryInfoScreen/BUTTON_SHOW_DATA +FD: net/minecraft/client/gui/screens/worldselection/ConfirmExperimentalFeaturesScreen/f_244027_ net/minecraft/client/gui/screens/worldselection/ConfirmExperimentalFeaturesScreen/MESSAGE +FD: net/minecraft/client/gui/screens/worldselection/ConfirmExperimentalFeaturesScreen/f_244180_ net/minecraft/client/gui/screens/worldselection/ConfirmExperimentalFeaturesScreen/enabledPacks +FD: net/minecraft/client/gui/screens/worldselection/ConfirmExperimentalFeaturesScreen/f_244340_ net/minecraft/client/gui/screens/worldselection/ConfirmExperimentalFeaturesScreen/callback +FD: net/minecraft/client/gui/screens/worldselection/ConfirmExperimentalFeaturesScreen/f_244466_ net/minecraft/client/gui/screens/worldselection/ConfirmExperimentalFeaturesScreen/DETAILS_BUTTON +FD: net/minecraft/client/gui/screens/worldselection/ConfirmExperimentalFeaturesScreen/f_244576_ net/minecraft/client/gui/screens/worldselection/ConfirmExperimentalFeaturesScreen/TITLE +FD: net/minecraft/client/gui/screens/worldselection/ConfirmExperimentalFeaturesScreen/f_268508_ net/minecraft/client/gui/screens/worldselection/ConfirmExperimentalFeaturesScreen/layout +FD: net/minecraft/client/gui/screens/worldselection/ConfirmExperimentalFeaturesScreen/f_268547_ net/minecraft/client/gui/screens/worldselection/ConfirmExperimentalFeaturesScreen/COLUMN_SPACING +FD: net/minecraft/client/gui/screens/worldselection/ConfirmExperimentalFeaturesScreen/f_268664_ net/minecraft/client/gui/screens/worldselection/ConfirmExperimentalFeaturesScreen/DETAILS_BUTTON_WIDTH +FD: net/minecraft/client/gui/screens/worldselection/ConfirmExperimentalFeaturesScreen$DetailsScreen/f_244011_ net/minecraft/client/gui/screens/worldselection/ConfirmExperimentalFeaturesScreen$DetailsScreen/this$0 +FD: net/minecraft/client/gui/screens/worldselection/ConfirmExperimentalFeaturesScreen$DetailsScreen/f_244097_ net/minecraft/client/gui/screens/worldselection/ConfirmExperimentalFeaturesScreen$DetailsScreen/packList +FD: net/minecraft/client/gui/screens/worldselection/ConfirmExperimentalFeaturesScreen$DetailsScreen$PackList/f_243827_ net/minecraft/client/gui/screens/worldselection/ConfirmExperimentalFeaturesScreen$DetailsScreen$PackList/this$1 +FD: net/minecraft/client/gui/screens/worldselection/ConfirmExperimentalFeaturesScreen$DetailsScreen$PackListEntry/f_243880_ net/minecraft/client/gui/screens/worldselection/ConfirmExperimentalFeaturesScreen$DetailsScreen$PackListEntry/splitMessage +FD: net/minecraft/client/gui/screens/worldselection/ConfirmExperimentalFeaturesScreen$DetailsScreen$PackListEntry/f_244046_ net/minecraft/client/gui/screens/worldselection/ConfirmExperimentalFeaturesScreen$DetailsScreen$PackListEntry/message +FD: net/minecraft/client/gui/screens/worldselection/ConfirmExperimentalFeaturesScreen$DetailsScreen$PackListEntry/f_244480_ net/minecraft/client/gui/screens/worldselection/ConfirmExperimentalFeaturesScreen$DetailsScreen$PackListEntry/packId +FD: net/minecraft/client/gui/screens/worldselection/ConfirmExperimentalFeaturesScreen$DetailsScreen$PackListEntry/f_244507_ net/minecraft/client/gui/screens/worldselection/ConfirmExperimentalFeaturesScreen$DetailsScreen$PackListEntry/this$1 +FD: net/minecraft/client/gui/screens/worldselection/CreateWorldScreen/f_100831_ net/minecraft/client/gui/screens/worldselection/CreateWorldScreen/tempDataPackDir +FD: net/minecraft/client/gui/screens/worldselection/CreateWorldScreen/f_100832_ net/minecraft/client/gui/screens/worldselection/CreateWorldScreen/tempDataPackRepository +FD: net/minecraft/client/gui/screens/worldselection/CreateWorldScreen/f_100848_ net/minecraft/client/gui/screens/worldselection/CreateWorldScreen/LOGGER +FD: net/minecraft/client/gui/screens/worldselection/CreateWorldScreen/f_100849_ net/minecraft/client/gui/screens/worldselection/CreateWorldScreen/GAME_MODEL_LABEL +FD: net/minecraft/client/gui/screens/worldselection/CreateWorldScreen/f_100852_ net/minecraft/client/gui/screens/worldselection/CreateWorldScreen/NAME_LABEL +FD: net/minecraft/client/gui/screens/worldselection/CreateWorldScreen/f_100855_ net/minecraft/client/gui/screens/worldselection/CreateWorldScreen/lastScreen +FD: net/minecraft/client/gui/screens/worldselection/CreateWorldScreen/f_170147_ net/minecraft/client/gui/screens/worldselection/CreateWorldScreen/TEMP_WORLD_PREFIX +FD: net/minecraft/client/gui/screens/worldselection/CreateWorldScreen/f_232866_ net/minecraft/client/gui/screens/worldselection/CreateWorldScreen/PREPARING_WORLD_DATA +FD: net/minecraft/client/gui/screens/worldselection/CreateWorldScreen/f_267356_ net/minecraft/client/gui/screens/worldselection/CreateWorldScreen/TEXT_INDENT +FD: net/minecraft/client/gui/screens/worldselection/CreateWorldScreen/f_267389_ net/minecraft/client/gui/screens/worldselection/CreateWorldScreen/uiState +FD: net/minecraft/client/gui/screens/worldselection/CreateWorldScreen/f_267391_ net/minecraft/client/gui/screens/worldselection/CreateWorldScreen/bottomButtons +FD: net/minecraft/client/gui/screens/worldselection/CreateWorldScreen/f_267420_ net/minecraft/client/gui/screens/worldselection/CreateWorldScreen/HORIZONTAL_BUTTON_SPACING +FD: net/minecraft/client/gui/screens/worldselection/CreateWorldScreen/f_267424_ net/minecraft/client/gui/screens/worldselection/CreateWorldScreen/tabManager +FD: net/minecraft/client/gui/screens/worldselection/CreateWorldScreen/f_267453_ net/minecraft/client/gui/screens/worldselection/CreateWorldScreen/FOOTER_HEIGHT +FD: net/minecraft/client/gui/screens/worldselection/CreateWorldScreen/f_267456_ net/minecraft/client/gui/screens/worldselection/CreateWorldScreen/ALLOW_CHEATS_INFO +FD: net/minecraft/client/gui/screens/worldselection/CreateWorldScreen/f_267460_ net/minecraft/client/gui/screens/worldselection/CreateWorldScreen/VERTICAL_BUTTON_SPACING +FD: net/minecraft/client/gui/screens/worldselection/CreateWorldScreen/f_267463_ net/minecraft/client/gui/screens/worldselection/CreateWorldScreen/GROUP_BOTTOM +FD: net/minecraft/client/gui/screens/worldselection/CreateWorldScreen/f_267486_ net/minecraft/client/gui/screens/worldselection/CreateWorldScreen/TAB_COLUMN_WIDTH +FD: net/minecraft/client/gui/screens/worldselection/CreateWorldScreen/f_267490_ net/minecraft/client/gui/screens/worldselection/CreateWorldScreen/tabNavigationBar +FD: net/minecraft/client/gui/screens/worldselection/CreateWorldScreen/f_268587_ net/minecraft/client/gui/screens/worldselection/CreateWorldScreen/recreated +FD: net/minecraft/client/gui/screens/worldselection/CreateWorldScreen/f_268721_ net/minecraft/client/gui/screens/worldselection/CreateWorldScreen/EXPERIMENTS_LABEL +FD: net/minecraft/client/gui/screens/worldselection/CreateWorldScreen/f_273823_ net/minecraft/client/gui/screens/worldselection/CreateWorldScreen/HEADER_SEPERATOR +FD: net/minecraft/client/gui/screens/worldselection/CreateWorldScreen/f_273875_ net/minecraft/client/gui/screens/worldselection/CreateWorldScreen/FOOTER_SEPERATOR +FD: net/minecraft/client/gui/screens/worldselection/CreateWorldScreen/f_279536_ net/minecraft/client/gui/screens/worldselection/CreateWorldScreen/LIGHT_DIRT_BACKGROUND +FD: net/minecraft/client/gui/screens/worldselection/CreateWorldScreen$DataPackReloadCookie/f_243966_ net/minecraft/client/gui/screens/worldselection/CreateWorldScreen$DataPackReloadCookie/worldGenSettings +FD: net/minecraft/client/gui/screens/worldselection/CreateWorldScreen$DataPackReloadCookie/f_243979_ net/minecraft/client/gui/screens/worldselection/CreateWorldScreen$DataPackReloadCookie/dataConfiguration +FD: net/minecraft/client/gui/screens/worldselection/CreateWorldScreen$GameTab/f_267363_ net/minecraft/client/gui/screens/worldselection/CreateWorldScreen$GameTab/this$0 +FD: net/minecraft/client/gui/screens/worldselection/CreateWorldScreen$GameTab/f_267368_ net/minecraft/client/gui/screens/worldselection/CreateWorldScreen$GameTab/nameEdit +FD: net/minecraft/client/gui/screens/worldselection/CreateWorldScreen$GameTab/f_267376_ net/minecraft/client/gui/screens/worldselection/CreateWorldScreen$GameTab/ALLOW_CHEATS +FD: net/minecraft/client/gui/screens/worldselection/CreateWorldScreen$GameTab/f_267405_ net/minecraft/client/gui/screens/worldselection/CreateWorldScreen$GameTab/TITLE +FD: net/minecraft/client/gui/screens/worldselection/CreateWorldScreen$MoreTab/f_267379_ net/minecraft/client/gui/screens/worldselection/CreateWorldScreen$MoreTab/TITLE +FD: net/minecraft/client/gui/screens/worldselection/CreateWorldScreen$MoreTab/f_267394_ net/minecraft/client/gui/screens/worldselection/CreateWorldScreen$MoreTab/GAME_RULES_LABEL +FD: net/minecraft/client/gui/screens/worldselection/CreateWorldScreen$MoreTab/f_267448_ net/minecraft/client/gui/screens/worldselection/CreateWorldScreen$MoreTab/this$0 +FD: net/minecraft/client/gui/screens/worldselection/CreateWorldScreen$MoreTab/f_267461_ net/minecraft/client/gui/screens/worldselection/CreateWorldScreen$MoreTab/DATA_PACKS_LABEL +FD: net/minecraft/client/gui/screens/worldselection/CreateWorldScreen$WorldTab/f_267365_ net/minecraft/client/gui/screens/worldselection/CreateWorldScreen$WorldTab/customizeTypeButton +FD: net/minecraft/client/gui/screens/worldselection/CreateWorldScreen$WorldTab/f_267381_ net/minecraft/client/gui/screens/worldselection/CreateWorldScreen$WorldTab/AMPLIFIED_HELP_TEXT +FD: net/minecraft/client/gui/screens/worldselection/CreateWorldScreen$WorldTab/f_267384_ net/minecraft/client/gui/screens/worldselection/CreateWorldScreen$WorldTab/GENERATE_STRUCTURES_INFO +FD: net/minecraft/client/gui/screens/worldselection/CreateWorldScreen$WorldTab/f_267412_ net/minecraft/client/gui/screens/worldselection/CreateWorldScreen$WorldTab/seedEdit +FD: net/minecraft/client/gui/screens/worldselection/CreateWorldScreen$WorldTab/f_267413_ net/minecraft/client/gui/screens/worldselection/CreateWorldScreen$WorldTab/GENERATE_STRUCTURES +FD: net/minecraft/client/gui/screens/worldselection/CreateWorldScreen$WorldTab/f_267437_ net/minecraft/client/gui/screens/worldselection/CreateWorldScreen$WorldTab/WORLD_TAB_WIDTH +FD: net/minecraft/client/gui/screens/worldselection/CreateWorldScreen$WorldTab/f_267438_ net/minecraft/client/gui/screens/worldselection/CreateWorldScreen$WorldTab/this$0 +FD: net/minecraft/client/gui/screens/worldselection/CreateWorldScreen$WorldTab/f_267449_ net/minecraft/client/gui/screens/worldselection/CreateWorldScreen$WorldTab/TITLE +FD: net/minecraft/client/gui/screens/worldselection/CreateWorldScreen$WorldTab/f_267459_ net/minecraft/client/gui/screens/worldselection/CreateWorldScreen$WorldTab/SEED_EMPTY_HINT +FD: net/minecraft/client/gui/screens/worldselection/CreateWorldScreen$WorldTab/f_267471_ net/minecraft/client/gui/screens/worldselection/CreateWorldScreen$WorldTab/SEED_LABEL +FD: net/minecraft/client/gui/screens/worldselection/CreateWorldScreen$WorldTab/f_267474_ net/minecraft/client/gui/screens/worldselection/CreateWorldScreen$WorldTab/BONUS_CHEST +FD: net/minecraft/client/gui/screens/worldselection/CreateWorldScreen$WorldTab$1/f_267477_ net/minecraft/client/gui/screens/worldselection/CreateWorldScreen$WorldTab$1/val$this$0 +FD: net/minecraft/client/gui/screens/worldselection/CreateWorldScreen$WorldTab$1/f_267479_ net/minecraft/client/gui/screens/worldselection/CreateWorldScreen$WorldTab$1/this$1 +FD: net/minecraft/client/gui/screens/worldselection/CreateWorldScreen$WorldTab$2/f_267476_ net/minecraft/client/gui/screens/worldselection/CreateWorldScreen$WorldTab$2/this$1 +FD: net/minecraft/client/gui/screens/worldselection/EditGameRulesScreen/f_101044_ net/minecraft/client/gui/screens/worldselection/EditGameRulesScreen/exitCallback +FD: net/minecraft/client/gui/screens/worldselection/EditGameRulesScreen/f_101045_ net/minecraft/client/gui/screens/worldselection/EditGameRulesScreen/rules +FD: net/minecraft/client/gui/screens/worldselection/EditGameRulesScreen/f_101046_ net/minecraft/client/gui/screens/worldselection/EditGameRulesScreen/invalidEntries +FD: net/minecraft/client/gui/screens/worldselection/EditGameRulesScreen/f_101047_ net/minecraft/client/gui/screens/worldselection/EditGameRulesScreen/doneButton +FD: net/minecraft/client/gui/screens/worldselection/EditGameRulesScreen/f_101048_ net/minecraft/client/gui/screens/worldselection/EditGameRulesScreen/tooltip +FD: net/minecraft/client/gui/screens/worldselection/EditGameRulesScreen/f_101049_ net/minecraft/client/gui/screens/worldselection/EditGameRulesScreen/gameRules +FD: net/minecraft/client/gui/screens/worldselection/EditGameRulesScreen$BooleanRuleEntry/f_101097_ net/minecraft/client/gui/screens/worldselection/EditGameRulesScreen$BooleanRuleEntry/this$0 +FD: net/minecraft/client/gui/screens/worldselection/EditGameRulesScreen$BooleanRuleEntry/f_101098_ net/minecraft/client/gui/screens/worldselection/EditGameRulesScreen$BooleanRuleEntry/checkbox +FD: net/minecraft/client/gui/screens/worldselection/EditGameRulesScreen$CategoryRuleEntry/f_101137_ net/minecraft/client/gui/screens/worldselection/EditGameRulesScreen$CategoryRuleEntry/this$0 +FD: net/minecraft/client/gui/screens/worldselection/EditGameRulesScreen$CategoryRuleEntry/f_101138_ net/minecraft/client/gui/screens/worldselection/EditGameRulesScreen$CategoryRuleEntry/label +FD: net/minecraft/client/gui/screens/worldselection/EditGameRulesScreen$CategoryRuleEntry$1/f_170221_ net/minecraft/client/gui/screens/worldselection/EditGameRulesScreen$CategoryRuleEntry$1/this$1 +FD: net/minecraft/client/gui/screens/worldselection/EditGameRulesScreen$GameRuleEntry/f_101159_ net/minecraft/client/gui/screens/worldselection/EditGameRulesScreen$GameRuleEntry/label +FD: net/minecraft/client/gui/screens/worldselection/EditGameRulesScreen$GameRuleEntry/f_101160_ net/minecraft/client/gui/screens/worldselection/EditGameRulesScreen$GameRuleEntry/children +FD: net/minecraft/client/gui/screens/worldselection/EditGameRulesScreen$GameRuleEntry/f_101161_ net/minecraft/client/gui/screens/worldselection/EditGameRulesScreen$GameRuleEntry/this$0 +FD: net/minecraft/client/gui/screens/worldselection/EditGameRulesScreen$IntegerRuleEntry/f_101171_ net/minecraft/client/gui/screens/worldselection/EditGameRulesScreen$IntegerRuleEntry/this$0 +FD: net/minecraft/client/gui/screens/worldselection/EditGameRulesScreen$IntegerRuleEntry/f_101172_ net/minecraft/client/gui/screens/worldselection/EditGameRulesScreen$IntegerRuleEntry/input +FD: net/minecraft/client/gui/screens/worldselection/EditGameRulesScreen$RuleEntry/f_101193_ net/minecraft/client/gui/screens/worldselection/EditGameRulesScreen$RuleEntry/tooltip +FD: net/minecraft/client/gui/screens/worldselection/EditGameRulesScreen$RuleList/f_101200_ net/minecraft/client/gui/screens/worldselection/EditGameRulesScreen$RuleList/this$0 +FD: net/minecraft/client/gui/screens/worldselection/EditGameRulesScreen$RuleList$1/f_101213_ net/minecraft/client/gui/screens/worldselection/EditGameRulesScreen$RuleList$1/val$this$0 +FD: net/minecraft/client/gui/screens/worldselection/EditGameRulesScreen$RuleList$1/f_101214_ net/minecraft/client/gui/screens/worldselection/EditGameRulesScreen$RuleList$1/val$gameRules +FD: net/minecraft/client/gui/screens/worldselection/EditGameRulesScreen$RuleList$1/f_101215_ net/minecraft/client/gui/screens/worldselection/EditGameRulesScreen$RuleList$1/val$entries +FD: net/minecraft/client/gui/screens/worldselection/EditGameRulesScreen$RuleList$1/f_101216_ net/minecraft/client/gui/screens/worldselection/EditGameRulesScreen$RuleList$1/this$1 +FD: net/minecraft/client/gui/screens/worldselection/EditWorldScreen/f_101243_ net/minecraft/client/gui/screens/worldselection/EditWorldScreen/LOGGER +FD: net/minecraft/client/gui/screens/worldselection/EditWorldScreen/f_101245_ net/minecraft/client/gui/screens/worldselection/EditWorldScreen/NAME_LABEL +FD: net/minecraft/client/gui/screens/worldselection/EditWorldScreen/f_101246_ net/minecraft/client/gui/screens/worldselection/EditWorldScreen/renameButton +FD: net/minecraft/client/gui/screens/worldselection/EditWorldScreen/f_101247_ net/minecraft/client/gui/screens/worldselection/EditWorldScreen/callback +FD: net/minecraft/client/gui/screens/worldselection/EditWorldScreen/f_101248_ net/minecraft/client/gui/screens/worldselection/EditWorldScreen/nameEdit +FD: net/minecraft/client/gui/screens/worldselection/EditWorldScreen/f_101249_ net/minecraft/client/gui/screens/worldselection/EditWorldScreen/levelAccess +FD: net/minecraft/client/gui/screens/worldselection/ExperimentsScreen/f_268424_ net/minecraft/client/gui/screens/worldselection/ExperimentsScreen/MAIN_CONTENT_WIDTH +FD: net/minecraft/client/gui/screens/worldselection/ExperimentsScreen/f_268430_ net/minecraft/client/gui/screens/worldselection/ExperimentsScreen/layout +FD: net/minecraft/client/gui/screens/worldselection/ExperimentsScreen/f_268531_ net/minecraft/client/gui/screens/worldselection/ExperimentsScreen/packs +FD: net/minecraft/client/gui/screens/worldselection/ExperimentsScreen/f_268615_ net/minecraft/client/gui/screens/worldselection/ExperimentsScreen/parent +FD: net/minecraft/client/gui/screens/worldselection/ExperimentsScreen/f_268626_ net/minecraft/client/gui/screens/worldselection/ExperimentsScreen/packRepository +FD: net/minecraft/client/gui/screens/worldselection/ExperimentsScreen/f_268670_ net/minecraft/client/gui/screens/worldselection/ExperimentsScreen/output +FD: net/minecraft/client/gui/screens/worldselection/OptimizeWorldScreen/f_101298_ net/minecraft/client/gui/screens/worldselection/OptimizeWorldScreen/LOGGER +FD: net/minecraft/client/gui/screens/worldselection/OptimizeWorldScreen/f_101299_ net/minecraft/client/gui/screens/worldselection/OptimizeWorldScreen/DIMENSION_COLORS +FD: net/minecraft/client/gui/screens/worldselection/OptimizeWorldScreen/f_101300_ net/minecraft/client/gui/screens/worldselection/OptimizeWorldScreen/callback +FD: net/minecraft/client/gui/screens/worldselection/OptimizeWorldScreen/f_101301_ net/minecraft/client/gui/screens/worldselection/OptimizeWorldScreen/upgrader +FD: net/minecraft/client/gui/screens/worldselection/PresetEditor/f_232950_ net/minecraft/client/gui/screens/worldselection/PresetEditor/EDITORS +FD: net/minecraft/client/gui/screens/worldselection/SelectWorldScreen/f_101329_ net/minecraft/client/gui/screens/worldselection/SelectWorldScreen/lastScreen +FD: net/minecraft/client/gui/screens/worldselection/SelectWorldScreen/f_101330_ net/minecraft/client/gui/screens/worldselection/SelectWorldScreen/searchBox +FD: net/minecraft/client/gui/screens/worldselection/SelectWorldScreen/f_101332_ net/minecraft/client/gui/screens/worldselection/SelectWorldScreen/deleteButton +FD: net/minecraft/client/gui/screens/worldselection/SelectWorldScreen/f_101333_ net/minecraft/client/gui/screens/worldselection/SelectWorldScreen/selectButton +FD: net/minecraft/client/gui/screens/worldselection/SelectWorldScreen/f_101334_ net/minecraft/client/gui/screens/worldselection/SelectWorldScreen/renameButton +FD: net/minecraft/client/gui/screens/worldselection/SelectWorldScreen/f_101335_ net/minecraft/client/gui/screens/worldselection/SelectWorldScreen/copyButton +FD: net/minecraft/client/gui/screens/worldselection/SelectWorldScreen/f_101336_ net/minecraft/client/gui/screens/worldselection/SelectWorldScreen/list +FD: net/minecraft/client/gui/screens/worldselection/SelectWorldScreen/f_170237_ net/minecraft/client/gui/screens/worldselection/SelectWorldScreen/LOGGER +FD: net/minecraft/client/gui/screens/worldselection/SelectWorldScreen/f_244251_ net/minecraft/client/gui/screens/worldselection/SelectWorldScreen/TEST_OPTIONS +FD: net/minecraft/client/gui/screens/worldselection/SwitchGrid/f_267419_ net/minecraft/client/gui/screens/worldselection/SwitchGrid/DEFAULT_SWITCH_BUTTON_WIDTH +FD: net/minecraft/client/gui/screens/worldselection/SwitchGrid/f_267482_ net/minecraft/client/gui/screens/worldselection/SwitchGrid/switches +FD: net/minecraft/client/gui/screens/worldselection/SwitchGrid$Builder/f_267393_ net/minecraft/client/gui/screens/worldselection/SwitchGrid$Builder/switchBuilders +FD: net/minecraft/client/gui/screens/worldselection/SwitchGrid$Builder/f_267428_ net/minecraft/client/gui/screens/worldselection/SwitchGrid$Builder/paddingLeft +FD: net/minecraft/client/gui/screens/worldselection/SwitchGrid$Builder/f_267465_ net/minecraft/client/gui/screens/worldselection/SwitchGrid$Builder/width +FD: net/minecraft/client/gui/screens/worldselection/SwitchGrid$Builder/f_268462_ net/minecraft/client/gui/screens/worldselection/SwitchGrid$Builder/infoUnderneath +FD: net/minecraft/client/gui/screens/worldselection/SwitchGrid$Builder/f_268625_ net/minecraft/client/gui/screens/worldselection/SwitchGrid$Builder/rowSpacing +FD: net/minecraft/client/gui/screens/worldselection/SwitchGrid$Builder/f_268635_ net/minecraft/client/gui/screens/worldselection/SwitchGrid$Builder/rowCount +FD: net/minecraft/client/gui/screens/worldselection/SwitchGrid$InfoUnderneathSettings/f_268439_ net/minecraft/client/gui/screens/worldselection/SwitchGrid$InfoUnderneathSettings/maxInfoRows +FD: net/minecraft/client/gui/screens/worldselection/SwitchGrid$InfoUnderneathSettings/f_268690_ net/minecraft/client/gui/screens/worldselection/SwitchGrid$InfoUnderneathSettings/alwaysMaxHeight +FD: net/minecraft/client/gui/screens/worldselection/SwitchGrid$LabeledSwitch/f_267403_ net/minecraft/client/gui/screens/worldselection/SwitchGrid$LabeledSwitch/stateSupplier +FD: net/minecraft/client/gui/screens/worldselection/SwitchGrid$LabeledSwitch/f_267423_ net/minecraft/client/gui/screens/worldselection/SwitchGrid$LabeledSwitch/button +FD: net/minecraft/client/gui/screens/worldselection/SwitchGrid$LabeledSwitch/f_267483_ net/minecraft/client/gui/screens/worldselection/SwitchGrid$LabeledSwitch/isActiveCondition +FD: net/minecraft/client/gui/screens/worldselection/SwitchGrid$SwitchBuilder/f_267360_ net/minecraft/client/gui/screens/worldselection/SwitchGrid$SwitchBuilder/isActiveCondition +FD: net/minecraft/client/gui/screens/worldselection/SwitchGrid$SwitchBuilder/f_267377_ net/minecraft/client/gui/screens/worldselection/SwitchGrid$SwitchBuilder/info +FD: net/minecraft/client/gui/screens/worldselection/SwitchGrid$SwitchBuilder/f_267416_ net/minecraft/client/gui/screens/worldselection/SwitchGrid$SwitchBuilder/stateSupplier +FD: net/minecraft/client/gui/screens/worldselection/SwitchGrid$SwitchBuilder/f_267466_ net/minecraft/client/gui/screens/worldselection/SwitchGrid$SwitchBuilder/onClicked +FD: net/minecraft/client/gui/screens/worldselection/SwitchGrid$SwitchBuilder/f_267480_ net/minecraft/client/gui/screens/worldselection/SwitchGrid$SwitchBuilder/buttonWidth +FD: net/minecraft/client/gui/screens/worldselection/SwitchGrid$SwitchBuilder/f_267484_ net/minecraft/client/gui/screens/worldselection/SwitchGrid$SwitchBuilder/label +FD: net/minecraft/client/gui/screens/worldselection/WorldCreationContext/f_232990_ net/minecraft/client/gui/screens/worldselection/WorldCreationContext/dataPackResources +FD: net/minecraft/client/gui/screens/worldselection/WorldCreationContext/f_243708_ net/minecraft/client/gui/screens/worldselection/WorldCreationContext/worldgenRegistries +FD: net/minecraft/client/gui/screens/worldselection/WorldCreationContext/f_243796_ net/minecraft/client/gui/screens/worldselection/WorldCreationContext/selectedDimensions +FD: net/minecraft/client/gui/screens/worldselection/WorldCreationContext/f_243842_ net/minecraft/client/gui/screens/worldselection/WorldCreationContext/dataConfiguration +FD: net/minecraft/client/gui/screens/worldselection/WorldCreationContext/f_244272_ net/minecraft/client/gui/screens/worldselection/WorldCreationContext/options +FD: net/minecraft/client/gui/screens/worldselection/WorldCreationContext/f_244375_ net/minecraft/client/gui/screens/worldselection/WorldCreationContext/datapackDimensions +FD: net/minecraft/client/gui/screens/worldselection/WorldCreationUiState/f_267359_ net/minecraft/client/gui/screens/worldselection/WorldCreationUiState/name +FD: net/minecraft/client/gui/screens/worldselection/WorldCreationUiState/f_267369_ net/minecraft/client/gui/screens/worldselection/WorldCreationUiState/altPresetList +FD: net/minecraft/client/gui/screens/worldselection/WorldCreationUiState/f_267382_ net/minecraft/client/gui/screens/worldselection/WorldCreationUiState/seed +FD: net/minecraft/client/gui/screens/worldselection/WorldCreationUiState/f_267386_ net/minecraft/client/gui/screens/worldselection/WorldCreationUiState/generateStructures +FD: net/minecraft/client/gui/screens/worldselection/WorldCreationUiState/f_267395_ net/minecraft/client/gui/screens/worldselection/WorldCreationUiState/gameMode +FD: net/minecraft/client/gui/screens/worldselection/WorldCreationUiState/f_267407_ net/minecraft/client/gui/screens/worldselection/WorldCreationUiState/gameRules +FD: net/minecraft/client/gui/screens/worldselection/WorldCreationUiState/f_267425_ net/minecraft/client/gui/screens/worldselection/WorldCreationUiState/difficulty +FD: net/minecraft/client/gui/screens/worldselection/WorldCreationUiState/f_267426_ net/minecraft/client/gui/screens/worldselection/WorldCreationUiState/settings +FD: net/minecraft/client/gui/screens/worldselection/WorldCreationUiState/f_267439_ net/minecraft/client/gui/screens/worldselection/WorldCreationUiState/normalPresetList +FD: net/minecraft/client/gui/screens/worldselection/WorldCreationUiState/f_267455_ net/minecraft/client/gui/screens/worldselection/WorldCreationUiState/bonusChest +FD: net/minecraft/client/gui/screens/worldselection/WorldCreationUiState/f_267470_ net/minecraft/client/gui/screens/worldselection/WorldCreationUiState/allowCheats +FD: net/minecraft/client/gui/screens/worldselection/WorldCreationUiState/f_267491_ net/minecraft/client/gui/screens/worldselection/WorldCreationUiState/worldType +FD: net/minecraft/client/gui/screens/worldselection/WorldCreationUiState/f_267497_ net/minecraft/client/gui/screens/worldselection/WorldCreationUiState/listeners +FD: net/minecraft/client/gui/screens/worldselection/WorldCreationUiState/f_275748_ net/minecraft/client/gui/screens/worldselection/WorldCreationUiState/DEFAULT_WORLD_NAME +FD: net/minecraft/client/gui/screens/worldselection/WorldCreationUiState/f_275749_ net/minecraft/client/gui/screens/worldselection/WorldCreationUiState/targetFolder +FD: net/minecraft/client/gui/screens/worldselection/WorldCreationUiState/f_275760_ net/minecraft/client/gui/screens/worldselection/WorldCreationUiState/savesFolder +FD: net/minecraft/client/gui/screens/worldselection/WorldCreationUiState$SelectedGameMode/$VALUES net/minecraft/client/gui/screens/worldselection/WorldCreationUiState$SelectedGameMode/$VALUES +FD: net/minecraft/client/gui/screens/worldselection/WorldCreationUiState$SelectedGameMode/CREATIVE net/minecraft/client/gui/screens/worldselection/WorldCreationUiState$SelectedGameMode/CREATIVE +FD: net/minecraft/client/gui/screens/worldselection/WorldCreationUiState$SelectedGameMode/DEBUG net/minecraft/client/gui/screens/worldselection/WorldCreationUiState$SelectedGameMode/DEBUG +FD: net/minecraft/client/gui/screens/worldselection/WorldCreationUiState$SelectedGameMode/HARDCORE net/minecraft/client/gui/screens/worldselection/WorldCreationUiState$SelectedGameMode/HARDCORE +FD: net/minecraft/client/gui/screens/worldselection/WorldCreationUiState$SelectedGameMode/SURVIVAL net/minecraft/client/gui/screens/worldselection/WorldCreationUiState$SelectedGameMode/SURVIVAL +FD: net/minecraft/client/gui/screens/worldselection/WorldCreationUiState$SelectedGameMode/f_267396_ net/minecraft/client/gui/screens/worldselection/WorldCreationUiState$SelectedGameMode/displayName +FD: net/minecraft/client/gui/screens/worldselection/WorldCreationUiState$SelectedGameMode/f_267442_ net/minecraft/client/gui/screens/worldselection/WorldCreationUiState$SelectedGameMode/info +FD: net/minecraft/client/gui/screens/worldselection/WorldCreationUiState$SelectedGameMode/f_267485_ net/minecraft/client/gui/screens/worldselection/WorldCreationUiState$SelectedGameMode/gameType +FD: net/minecraft/client/gui/screens/worldselection/WorldCreationUiState$WorldTypeEntry/f_267398_ net/minecraft/client/gui/screens/worldselection/WorldCreationUiState$WorldTypeEntry/preset +FD: net/minecraft/client/gui/screens/worldselection/WorldCreationUiState$WorldTypeEntry/f_267418_ net/minecraft/client/gui/screens/worldselection/WorldCreationUiState$WorldTypeEntry/CUSTOM_WORLD_DESCRIPTION +FD: net/minecraft/client/gui/screens/worldselection/WorldOpenFlows/f_233088_ net/minecraft/client/gui/screens/worldselection/WorldOpenFlows/LOGGER +FD: net/minecraft/client/gui/screens/worldselection/WorldOpenFlows/f_233089_ net/minecraft/client/gui/screens/worldselection/WorldOpenFlows/minecraft +FD: net/minecraft/client/gui/screens/worldselection/WorldOpenFlows/f_233090_ net/minecraft/client/gui/screens/worldselection/WorldOpenFlows/levelSource +FD: net/minecraft/client/gui/screens/worldselection/WorldOpenFlows$1Data/f_244151_ net/minecraft/client/gui/screens/worldselection/WorldOpenFlows$1Data/existingDimensions +FD: net/minecraft/client/gui/screens/worldselection/WorldOpenFlows$1Data/f_244166_ net/minecraft/client/gui/screens/worldselection/WorldOpenFlows$1Data/levelSettings +FD: net/minecraft/client/gui/screens/worldselection/WorldOpenFlows$1Data/f_244534_ net/minecraft/client/gui/screens/worldselection/WorldOpenFlows$1Data/options +FD: net/minecraft/client/gui/screens/worldselection/WorldSelectionList/f_101645_ net/minecraft/client/gui/screens/worldselection/WorldSelectionList/LOGGER +FD: net/minecraft/client/gui/screens/worldselection/WorldSelectionList/f_101646_ net/minecraft/client/gui/screens/worldselection/WorldSelectionList/DATE_FORMAT +FD: net/minecraft/client/gui/screens/worldselection/WorldSelectionList/f_101647_ net/minecraft/client/gui/screens/worldselection/WorldSelectionList/ICON_MISSING +FD: net/minecraft/client/gui/screens/worldselection/WorldSelectionList/f_101648_ net/minecraft/client/gui/screens/worldselection/WorldSelectionList/ICON_OVERLAY_LOCATION +FD: net/minecraft/client/gui/screens/worldselection/WorldSelectionList/f_101649_ net/minecraft/client/gui/screens/worldselection/WorldSelectionList/FROM_NEWER_TOOLTIP_1 +FD: net/minecraft/client/gui/screens/worldselection/WorldSelectionList/f_101650_ net/minecraft/client/gui/screens/worldselection/WorldSelectionList/FROM_NEWER_TOOLTIP_2 +FD: net/minecraft/client/gui/screens/worldselection/WorldSelectionList/f_101651_ net/minecraft/client/gui/screens/worldselection/WorldSelectionList/SNAPSHOT_TOOLTIP_1 +FD: net/minecraft/client/gui/screens/worldselection/WorldSelectionList/f_101652_ net/minecraft/client/gui/screens/worldselection/WorldSelectionList/SNAPSHOT_TOOLTIP_2 +FD: net/minecraft/client/gui/screens/worldselection/WorldSelectionList/f_101653_ net/minecraft/client/gui/screens/worldselection/WorldSelectionList/WORLD_LOCKED_TOOLTIP +FD: net/minecraft/client/gui/screens/worldselection/WorldSelectionList/f_101654_ net/minecraft/client/gui/screens/worldselection/WorldSelectionList/screen +FD: net/minecraft/client/gui/screens/worldselection/WorldSelectionList/f_194113_ net/minecraft/client/gui/screens/worldselection/WorldSelectionList/WORLD_REQUIRES_CONVERSION +FD: net/minecraft/client/gui/screens/worldselection/WorldSelectionList/f_233184_ net/minecraft/client/gui/screens/worldselection/WorldSelectionList/loadingHeader +FD: net/minecraft/client/gui/screens/worldselection/WorldSelectionList/f_238575_ net/minecraft/client/gui/screens/worldselection/WorldSelectionList/currentlyDisplayedLevels +FD: net/minecraft/client/gui/screens/worldselection/WorldSelectionList/f_238624_ net/minecraft/client/gui/screens/worldselection/WorldSelectionList/filter +FD: net/minecraft/client/gui/screens/worldselection/WorldSelectionList/f_238666_ net/minecraft/client/gui/screens/worldselection/WorldSelectionList/pendingLevels +FD: net/minecraft/client/gui/screens/worldselection/WorldSelectionList$LoadingHeader/f_233218_ net/minecraft/client/gui/screens/worldselection/WorldSelectionList$LoadingHeader/LOADING_LABEL +FD: net/minecraft/client/gui/screens/worldselection/WorldSelectionList$LoadingHeader/f_233219_ net/minecraft/client/gui/screens/worldselection/WorldSelectionList$LoadingHeader/minecraft +FD: net/minecraft/client/gui/screens/worldselection/WorldSelectionList$WorldListEntry/f_101692_ net/minecraft/client/gui/screens/worldselection/WorldSelectionList$WorldListEntry/this$0 +FD: net/minecraft/client/gui/screens/worldselection/WorldSelectionList$WorldListEntry/f_101693_ net/minecraft/client/gui/screens/worldselection/WorldSelectionList$WorldListEntry/minecraft +FD: net/minecraft/client/gui/screens/worldselection/WorldSelectionList$WorldListEntry/f_101694_ net/minecraft/client/gui/screens/worldselection/WorldSelectionList$WorldListEntry/screen +FD: net/minecraft/client/gui/screens/worldselection/WorldSelectionList$WorldListEntry/f_101695_ net/minecraft/client/gui/screens/worldselection/WorldSelectionList$WorldListEntry/summary +FD: net/minecraft/client/gui/screens/worldselection/WorldSelectionList$WorldListEntry/f_101697_ net/minecraft/client/gui/screens/worldselection/WorldSelectionList$WorldListEntry/iconFile +FD: net/minecraft/client/gui/screens/worldselection/WorldSelectionList$WorldListEntry/f_101698_ net/minecraft/client/gui/screens/worldselection/WorldSelectionList$WorldListEntry/icon +FD: net/minecraft/client/gui/screens/worldselection/WorldSelectionList$WorldListEntry/f_101699_ net/minecraft/client/gui/screens/worldselection/WorldSelectionList$WorldListEntry/lastClickTime +FD: net/minecraft/client/gui/screens/worldselection/WorldSelectionList$WorldListEntry/f_170312_ net/minecraft/client/gui/screens/worldselection/WorldSelectionList$WorldListEntry/ICON_WIDTH +FD: net/minecraft/client/gui/screens/worldselection/WorldSelectionList$WorldListEntry/f_170313_ net/minecraft/client/gui/screens/worldselection/WorldSelectionList$WorldListEntry/ICON_HEIGHT +FD: net/minecraft/client/gui/screens/worldselection/WorldSelectionList$WorldListEntry/f_170314_ net/minecraft/client/gui/screens/worldselection/WorldSelectionList$WorldListEntry/ICON_OVERLAY_X_JOIN +FD: net/minecraft/client/gui/screens/worldselection/WorldSelectionList$WorldListEntry/f_170315_ net/minecraft/client/gui/screens/worldselection/WorldSelectionList$WorldListEntry/ICON_OVERLAY_X_JOIN_WITH_NOTIFY +FD: net/minecraft/client/gui/screens/worldselection/WorldSelectionList$WorldListEntry/f_170316_ net/minecraft/client/gui/screens/worldselection/WorldSelectionList$WorldListEntry/ICON_OVERLAY_X_WARNING +FD: net/minecraft/client/gui/screens/worldselection/WorldSelectionList$WorldListEntry/f_170317_ net/minecraft/client/gui/screens/worldselection/WorldSelectionList$WorldListEntry/ICON_OVERLAY_X_ERROR +FD: net/minecraft/client/gui/screens/worldselection/WorldSelectionList$WorldListEntry/f_170318_ net/minecraft/client/gui/screens/worldselection/WorldSelectionList$WorldListEntry/ICON_OVERLAY_Y_UNSELECTED +FD: net/minecraft/client/gui/screens/worldselection/WorldSelectionList$WorldListEntry/f_170319_ net/minecraft/client/gui/screens/worldselection/WorldSelectionList$WorldListEntry/ICON_OVERLAY_Y_SELECTED +FD: net/minecraft/client/gui/spectator/PlayerMenuItem/f_101752_ net/minecraft/client/gui/spectator/PlayerMenuItem/profile +FD: net/minecraft/client/gui/spectator/PlayerMenuItem/f_101753_ net/minecraft/client/gui/spectator/PlayerMenuItem/location +FD: net/minecraft/client/gui/spectator/PlayerMenuItem/f_101754_ net/minecraft/client/gui/spectator/PlayerMenuItem/name +FD: net/minecraft/client/gui/spectator/RootSpectatorMenuCategory/f_101765_ net/minecraft/client/gui/spectator/RootSpectatorMenuCategory/PROMPT_TEXT +FD: net/minecraft/client/gui/spectator/RootSpectatorMenuCategory/f_101766_ net/minecraft/client/gui/spectator/RootSpectatorMenuCategory/items +FD: net/minecraft/client/gui/spectator/SpectatorMenu/f_101771_ net/minecraft/client/gui/spectator/SpectatorMenu/EMPTY_SLOT +FD: net/minecraft/client/gui/spectator/SpectatorMenu/f_101772_ net/minecraft/client/gui/spectator/SpectatorMenu/CLOSE_ITEM +FD: net/minecraft/client/gui/spectator/SpectatorMenu/f_101773_ net/minecraft/client/gui/spectator/SpectatorMenu/SCROLL_LEFT +FD: net/minecraft/client/gui/spectator/SpectatorMenu/f_101774_ net/minecraft/client/gui/spectator/SpectatorMenu/SCROLL_RIGHT_ENABLED +FD: net/minecraft/client/gui/spectator/SpectatorMenu/f_101775_ net/minecraft/client/gui/spectator/SpectatorMenu/SCROLL_RIGHT_DISABLED +FD: net/minecraft/client/gui/spectator/SpectatorMenu/f_101776_ net/minecraft/client/gui/spectator/SpectatorMenu/CLOSE_MENU_TEXT +FD: net/minecraft/client/gui/spectator/SpectatorMenu/f_101777_ net/minecraft/client/gui/spectator/SpectatorMenu/PREVIOUS_PAGE_TEXT +FD: net/minecraft/client/gui/spectator/SpectatorMenu/f_101778_ net/minecraft/client/gui/spectator/SpectatorMenu/NEXT_PAGE_TEXT +FD: net/minecraft/client/gui/spectator/SpectatorMenu/f_101779_ net/minecraft/client/gui/spectator/SpectatorMenu/listener +FD: net/minecraft/client/gui/spectator/SpectatorMenu/f_101780_ net/minecraft/client/gui/spectator/SpectatorMenu/category +FD: net/minecraft/client/gui/spectator/SpectatorMenu/f_101781_ net/minecraft/client/gui/spectator/SpectatorMenu/selectedSlot +FD: net/minecraft/client/gui/spectator/SpectatorMenu/f_101782_ net/minecraft/client/gui/spectator/SpectatorMenu/page +FD: net/minecraft/client/gui/spectator/SpectatorMenu/f_170328_ net/minecraft/client/gui/spectator/SpectatorMenu/MAX_PER_PAGE +FD: net/minecraft/client/gui/spectator/SpectatorMenu$ScrollMenuItem/f_101826_ net/minecraft/client/gui/spectator/SpectatorMenu$ScrollMenuItem/direction +FD: net/minecraft/client/gui/spectator/SpectatorMenu$ScrollMenuItem/f_101827_ net/minecraft/client/gui/spectator/SpectatorMenu$ScrollMenuItem/enabled +FD: net/minecraft/client/gui/spectator/categories/SpectatorPage/f_101845_ net/minecraft/client/gui/spectator/categories/SpectatorPage/items +FD: net/minecraft/client/gui/spectator/categories/SpectatorPage/f_101846_ net/minecraft/client/gui/spectator/categories/SpectatorPage/selection +FD: net/minecraft/client/gui/spectator/categories/SpectatorPage/f_170329_ net/minecraft/client/gui/spectator/categories/SpectatorPage/NO_SELECTION +FD: net/minecraft/client/gui/spectator/categories/TeleportToPlayerMenuCategory/f_101854_ net/minecraft/client/gui/spectator/categories/TeleportToPlayerMenuCategory/PROFILE_ORDER +FD: net/minecraft/client/gui/spectator/categories/TeleportToPlayerMenuCategory/f_101855_ net/minecraft/client/gui/spectator/categories/TeleportToPlayerMenuCategory/TELEPORT_TEXT +FD: net/minecraft/client/gui/spectator/categories/TeleportToPlayerMenuCategory/f_101856_ net/minecraft/client/gui/spectator/categories/TeleportToPlayerMenuCategory/TELEPORT_PROMPT +FD: net/minecraft/client/gui/spectator/categories/TeleportToPlayerMenuCategory/f_101857_ net/minecraft/client/gui/spectator/categories/TeleportToPlayerMenuCategory/items +FD: net/minecraft/client/gui/spectator/categories/TeleportToTeamMenuCategory/f_101875_ net/minecraft/client/gui/spectator/categories/TeleportToTeamMenuCategory/TELEPORT_TEXT +FD: net/minecraft/client/gui/spectator/categories/TeleportToTeamMenuCategory/f_101876_ net/minecraft/client/gui/spectator/categories/TeleportToTeamMenuCategory/TELEPORT_PROMPT +FD: net/minecraft/client/gui/spectator/categories/TeleportToTeamMenuCategory/f_101877_ net/minecraft/client/gui/spectator/categories/TeleportToTeamMenuCategory/items +FD: net/minecraft/client/gui/spectator/categories/TeleportToTeamMenuCategory$TeamSelectionItem/f_101891_ net/minecraft/client/gui/spectator/categories/TeleportToTeamMenuCategory$TeamSelectionItem/team +FD: net/minecraft/client/gui/spectator/categories/TeleportToTeamMenuCategory$TeamSelectionItem/f_101893_ net/minecraft/client/gui/spectator/categories/TeleportToTeamMenuCategory$TeamSelectionItem/players +FD: net/minecraft/client/gui/spectator/categories/TeleportToTeamMenuCategory$TeamSelectionItem/f_256959_ net/minecraft/client/gui/spectator/categories/TeleportToTeamMenuCategory$TeamSelectionItem/iconSkin +FD: net/minecraft/client/main/GameConfig/f_101905_ net/minecraft/client/main/GameConfig/user +FD: net/minecraft/client/main/GameConfig/f_101906_ net/minecraft/client/main/GameConfig/display +FD: net/minecraft/client/main/GameConfig/f_101907_ net/minecraft/client/main/GameConfig/location +FD: net/minecraft/client/main/GameConfig/f_101908_ net/minecraft/client/main/GameConfig/game +FD: net/minecraft/client/main/GameConfig/f_278410_ net/minecraft/client/main/GameConfig/quickPlay +FD: net/minecraft/client/main/GameConfig$FolderData/f_101916_ net/minecraft/client/main/GameConfig$FolderData/gameDirectory +FD: net/minecraft/client/main/GameConfig$FolderData/f_101917_ net/minecraft/client/main/GameConfig$FolderData/resourcePackDirectory +FD: net/minecraft/client/main/GameConfig$FolderData/f_101918_ net/minecraft/client/main/GameConfig$FolderData/assetDirectory +FD: net/minecraft/client/main/GameConfig$FolderData/f_101919_ net/minecraft/client/main/GameConfig$FolderData/assetIndex +FD: net/minecraft/client/main/GameConfig$GameData/f_101926_ net/minecraft/client/main/GameConfig$GameData/demo +FD: net/minecraft/client/main/GameConfig$GameData/f_101927_ net/minecraft/client/main/GameConfig$GameData/launchVersion +FD: net/minecraft/client/main/GameConfig$GameData/f_101928_ net/minecraft/client/main/GameConfig$GameData/versionType +FD: net/minecraft/client/main/GameConfig$GameData/f_101929_ net/minecraft/client/main/GameConfig$GameData/disableMultiplayer +FD: net/minecraft/client/main/GameConfig$GameData/f_101930_ net/minecraft/client/main/GameConfig$GameData/disableChat +FD: net/minecraft/client/main/GameConfig$QuickPlayData/f_278402_ net/minecraft/client/main/GameConfig$QuickPlayData/realms +FD: net/minecraft/client/main/GameConfig$QuickPlayData/f_278424_ net/minecraft/client/main/GameConfig$QuickPlayData/multiplayer +FD: net/minecraft/client/main/GameConfig$QuickPlayData/f_278449_ net/minecraft/client/main/GameConfig$QuickPlayData/singleplayer +FD: net/minecraft/client/main/GameConfig$QuickPlayData/f_278493_ net/minecraft/client/main/GameConfig$QuickPlayData/path +FD: net/minecraft/client/main/GameConfig$UserData/f_101942_ net/minecraft/client/main/GameConfig$UserData/user +FD: net/minecraft/client/main/GameConfig$UserData/f_101943_ net/minecraft/client/main/GameConfig$UserData/userProperties +FD: net/minecraft/client/main/GameConfig$UserData/f_101944_ net/minecraft/client/main/GameConfig$UserData/profileProperties +FD: net/minecraft/client/main/GameConfig$UserData/f_101945_ net/minecraft/client/main/GameConfig$UserData/proxy +FD: net/minecraft/client/main/Main/f_129630_ net/minecraft/client/main/Main/LOGGER +FD: net/minecraft/client/main/Main$1/f_129643_ net/minecraft/client/main/Main$1/val$proxyUser +FD: net/minecraft/client/main/Main$1/f_129644_ net/minecraft/client/main/Main$1/val$proxyPass +FD: net/minecraft/client/main/Main$3/f_129652_ net/minecraft/client/main/Main$3/val$minecraft +FD: net/minecraft/client/model/AgeableHierarchicalModel/f_271124_ net/minecraft/client/model/AgeableHierarchicalModel/bodyYOffset +FD: net/minecraft/client/model/AgeableHierarchicalModel/f_271539_ net/minecraft/client/model/AgeableHierarchicalModel/youngScaleFactor +FD: net/minecraft/client/model/AgeableListModel/f_102007_ net/minecraft/client/model/AgeableListModel/scaleHead +FD: net/minecraft/client/model/AgeableListModel/f_102010_ net/minecraft/client/model/AgeableListModel/babyHeadScale +FD: net/minecraft/client/model/AgeableListModel/f_102011_ net/minecraft/client/model/AgeableListModel/babyBodyScale +FD: net/minecraft/client/model/AgeableListModel/f_102012_ net/minecraft/client/model/AgeableListModel/bodyYOffset +FD: net/minecraft/client/model/AgeableListModel/f_170338_ net/minecraft/client/model/AgeableListModel/babyYHeadOffset +FD: net/minecraft/client/model/AgeableListModel/f_170339_ net/minecraft/client/model/AgeableListModel/babyZHeadOffset +FD: net/minecraft/client/model/AllayModel/f_233302_ net/minecraft/client/model/AllayModel/root +FD: net/minecraft/client/model/AllayModel/f_233303_ net/minecraft/client/model/AllayModel/body +FD: net/minecraft/client/model/AllayModel/f_233304_ net/minecraft/client/model/AllayModel/right_arm +FD: net/minecraft/client/model/AllayModel/f_233305_ net/minecraft/client/model/AllayModel/left_arm +FD: net/minecraft/client/model/AllayModel/f_233306_ net/minecraft/client/model/AllayModel/right_wing +FD: net/minecraft/client/model/AllayModel/f_233307_ net/minecraft/client/model/AllayModel/left_wing +FD: net/minecraft/client/model/AllayModel/f_233308_ net/minecraft/client/model/AllayModel/FLYING_ANIMATION_X_ROT +FD: net/minecraft/client/model/AllayModel/f_233309_ net/minecraft/client/model/AllayModel/MAX_HAND_HOLDING_ITEM_X_ROT_RAD +FD: net/minecraft/client/model/AllayModel/f_233310_ net/minecraft/client/model/AllayModel/MIN_HAND_HOLDING_ITEM_X_ROT_RAD +FD: net/minecraft/client/model/AllayModel/f_238177_ net/minecraft/client/model/AllayModel/head +FD: net/minecraft/client/model/ArmorStandModel/f_102139_ net/minecraft/client/model/ArmorStandModel/shoulderStick +FD: net/minecraft/client/model/ArmorStandModel/f_102140_ net/minecraft/client/model/ArmorStandModel/basePlate +FD: net/minecraft/client/model/ArmorStandModel/f_170349_ net/minecraft/client/model/ArmorStandModel/RIGHT_BODY_STICK +FD: net/minecraft/client/model/ArmorStandModel/f_170350_ net/minecraft/client/model/ArmorStandModel/LEFT_BODY_STICK +FD: net/minecraft/client/model/ArmorStandModel/f_170351_ net/minecraft/client/model/ArmorStandModel/SHOULDER_STICK +FD: net/minecraft/client/model/ArmorStandModel/f_170352_ net/minecraft/client/model/ArmorStandModel/BASE_PLATE +FD: net/minecraft/client/model/ArmorStandModel/f_170353_ net/minecraft/client/model/ArmorStandModel/rightBodyStick +FD: net/minecraft/client/model/ArmorStandModel/f_170354_ net/minecraft/client/model/ArmorStandModel/leftBodyStick +FD: net/minecraft/client/model/AxolotlModel/f_170358_ net/minecraft/client/model/AxolotlModel/SWIMMING_LEG_XROT +FD: net/minecraft/client/model/AxolotlModel/f_170359_ net/minecraft/client/model/AxolotlModel/tail +FD: net/minecraft/client/model/AxolotlModel/f_170360_ net/minecraft/client/model/AxolotlModel/leftHindLeg +FD: net/minecraft/client/model/AxolotlModel/f_170361_ net/minecraft/client/model/AxolotlModel/rightHindLeg +FD: net/minecraft/client/model/AxolotlModel/f_170362_ net/minecraft/client/model/AxolotlModel/leftFrontLeg +FD: net/minecraft/client/model/AxolotlModel/f_170363_ net/minecraft/client/model/AxolotlModel/rightFrontLeg +FD: net/minecraft/client/model/AxolotlModel/f_170364_ net/minecraft/client/model/AxolotlModel/body +FD: net/minecraft/client/model/AxolotlModel/f_170365_ net/minecraft/client/model/AxolotlModel/head +FD: net/minecraft/client/model/AxolotlModel/f_170366_ net/minecraft/client/model/AxolotlModel/topGills +FD: net/minecraft/client/model/AxolotlModel/f_170367_ net/minecraft/client/model/AxolotlModel/leftGills +FD: net/minecraft/client/model/AxolotlModel/f_170368_ net/minecraft/client/model/AxolotlModel/rightGills +FD: net/minecraft/client/model/BatModel/f_102184_ net/minecraft/client/model/BatModel/head +FD: net/minecraft/client/model/BatModel/f_102185_ net/minecraft/client/model/BatModel/body +FD: net/minecraft/client/model/BatModel/f_102186_ net/minecraft/client/model/BatModel/rightWing +FD: net/minecraft/client/model/BatModel/f_102187_ net/minecraft/client/model/BatModel/leftWing +FD: net/minecraft/client/model/BatModel/f_102188_ net/minecraft/client/model/BatModel/rightWingTip +FD: net/minecraft/client/model/BatModel/f_102189_ net/minecraft/client/model/BatModel/leftWingTip +FD: net/minecraft/client/model/BatModel/f_170425_ net/minecraft/client/model/BatModel/root +FD: net/minecraft/client/model/BeeModel/f_102206_ net/minecraft/client/model/BeeModel/bone +FD: net/minecraft/client/model/BeeModel/f_102208_ net/minecraft/client/model/BeeModel/rightWing +FD: net/minecraft/client/model/BeeModel/f_102209_ net/minecraft/client/model/BeeModel/leftWing +FD: net/minecraft/client/model/BeeModel/f_102210_ net/minecraft/client/model/BeeModel/frontLeg +FD: net/minecraft/client/model/BeeModel/f_102211_ net/minecraft/client/model/BeeModel/midLeg +FD: net/minecraft/client/model/BeeModel/f_102212_ net/minecraft/client/model/BeeModel/backLeg +FD: net/minecraft/client/model/BeeModel/f_102213_ net/minecraft/client/model/BeeModel/stinger +FD: net/minecraft/client/model/BeeModel/f_102214_ net/minecraft/client/model/BeeModel/leftAntenna +FD: net/minecraft/client/model/BeeModel/f_102215_ net/minecraft/client/model/BeeModel/rightAntenna +FD: net/minecraft/client/model/BeeModel/f_102216_ net/minecraft/client/model/BeeModel/rollAmount +FD: net/minecraft/client/model/BeeModel/f_170430_ net/minecraft/client/model/BeeModel/BEE_Y_BASE +FD: net/minecraft/client/model/BeeModel/f_170431_ net/minecraft/client/model/BeeModel/BONE +FD: net/minecraft/client/model/BeeModel/f_170432_ net/minecraft/client/model/BeeModel/STINGER +FD: net/minecraft/client/model/BeeModel/f_170433_ net/minecraft/client/model/BeeModel/LEFT_ANTENNA +FD: net/minecraft/client/model/BeeModel/f_170434_ net/minecraft/client/model/BeeModel/RIGHT_ANTENNA +FD: net/minecraft/client/model/BeeModel/f_170435_ net/minecraft/client/model/BeeModel/FRONT_LEGS +FD: net/minecraft/client/model/BeeModel/f_170436_ net/minecraft/client/model/BeeModel/MIDDLE_LEGS +FD: net/minecraft/client/model/BeeModel/f_170437_ net/minecraft/client/model/BeeModel/BACK_LEGS +FD: net/minecraft/client/model/BlazeModel/f_102244_ net/minecraft/client/model/BlazeModel/upperBodyParts +FD: net/minecraft/client/model/BlazeModel/f_102245_ net/minecraft/client/model/BlazeModel/head +FD: net/minecraft/client/model/BlazeModel/f_170441_ net/minecraft/client/model/BlazeModel/root +FD: net/minecraft/client/model/BoatModel/f_102257_ net/minecraft/client/model/BoatModel/waterPatch +FD: net/minecraft/client/model/BoatModel/f_102258_ net/minecraft/client/model/BoatModel/parts +FD: net/minecraft/client/model/BoatModel/f_170451_ net/minecraft/client/model/BoatModel/LEFT_PADDLE +FD: net/minecraft/client/model/BoatModel/f_170452_ net/minecraft/client/model/BoatModel/RIGHT_PADDLE +FD: net/minecraft/client/model/BoatModel/f_170453_ net/minecraft/client/model/BoatModel/WATER_PATCH +FD: net/minecraft/client/model/BoatModel/f_170454_ net/minecraft/client/model/BoatModel/BOTTOM +FD: net/minecraft/client/model/BoatModel/f_170455_ net/minecraft/client/model/BoatModel/BACK +FD: net/minecraft/client/model/BoatModel/f_170456_ net/minecraft/client/model/BoatModel/FRONT +FD: net/minecraft/client/model/BoatModel/f_170457_ net/minecraft/client/model/BoatModel/RIGHT +FD: net/minecraft/client/model/BoatModel/f_170458_ net/minecraft/client/model/BoatModel/LEFT +FD: net/minecraft/client/model/BoatModel/f_170459_ net/minecraft/client/model/BoatModel/leftPaddle +FD: net/minecraft/client/model/BoatModel/f_170460_ net/minecraft/client/model/BoatModel/rightPaddle +FD: net/minecraft/client/model/BookModel/f_102283_ net/minecraft/client/model/BookModel/leftLid +FD: net/minecraft/client/model/BookModel/f_102284_ net/minecraft/client/model/BookModel/rightLid +FD: net/minecraft/client/model/BookModel/f_102285_ net/minecraft/client/model/BookModel/leftPages +FD: net/minecraft/client/model/BookModel/f_102286_ net/minecraft/client/model/BookModel/rightPages +FD: net/minecraft/client/model/BookModel/f_102287_ net/minecraft/client/model/BookModel/flipPage1 +FD: net/minecraft/client/model/BookModel/f_102288_ net/minecraft/client/model/BookModel/flipPage2 +FD: net/minecraft/client/model/BookModel/f_170469_ net/minecraft/client/model/BookModel/LEFT_PAGES +FD: net/minecraft/client/model/BookModel/f_170470_ net/minecraft/client/model/BookModel/RIGHT_PAGES +FD: net/minecraft/client/model/BookModel/f_170471_ net/minecraft/client/model/BookModel/FLIP_PAGE_1 +FD: net/minecraft/client/model/BookModel/f_170472_ net/minecraft/client/model/BookModel/FLIP_PAGE_2 +FD: net/minecraft/client/model/BookModel/f_170473_ net/minecraft/client/model/BookModel/root +FD: net/minecraft/client/model/CamelModel/f_243743_ net/minecraft/client/model/CamelModel/ridingParts +FD: net/minecraft/client/model/CamelModel/f_243837_ net/minecraft/client/model/CamelModel/head +FD: net/minecraft/client/model/CamelModel/f_243938_ net/minecraft/client/model/CamelModel/SADDLE +FD: net/minecraft/client/model/CamelModel/f_244125_ net/minecraft/client/model/CamelModel/MAX_WALK_ANIMATION_SPEED +FD: net/minecraft/client/model/CamelModel/f_244155_ net/minecraft/client/model/CamelModel/BRIDLE +FD: net/minecraft/client/model/CamelModel/f_244351_ net/minecraft/client/model/CamelModel/REINS +FD: net/minecraft/client/model/CamelModel/f_244519_ net/minecraft/client/model/CamelModel/root +FD: net/minecraft/client/model/CamelModel/f_244588_ net/minecraft/client/model/CamelModel/saddleParts +FD: net/minecraft/client/model/CamelModel/f_267464_ net/minecraft/client/model/CamelModel/WALK_ANIMATION_SCALE_FACTOR +FD: net/minecraft/client/model/CamelModel/f_273934_ net/minecraft/client/model/CamelModel/BABY_SCALE +FD: net/minecraft/client/model/CamelModel/f_273950_ net/minecraft/client/model/CamelModel/BABY_Y_OFFSET +FD: net/minecraft/client/model/CatModel/f_102325_ net/minecraft/client/model/CatModel/lieDownAmount +FD: net/minecraft/client/model/CatModel/f_102326_ net/minecraft/client/model/CatModel/lieDownAmountTail +FD: net/minecraft/client/model/CatModel/f_102327_ net/minecraft/client/model/CatModel/relaxStateOneAmount +FD: net/minecraft/client/model/ChestBoatModel/f_243894_ net/minecraft/client/model/ChestBoatModel/CHEST_LID +FD: net/minecraft/client/model/ChestBoatModel/f_244136_ net/minecraft/client/model/ChestBoatModel/CHEST_LOCK +FD: net/minecraft/client/model/ChestBoatModel/f_244355_ net/minecraft/client/model/ChestBoatModel/CHEST_BOTTOM +FD: net/minecraft/client/model/ChestRaftModel/f_243734_ net/minecraft/client/model/ChestRaftModel/CHEST_BOTTOM +FD: net/minecraft/client/model/ChestRaftModel/f_244449_ net/minecraft/client/model/ChestRaftModel/CHEST_LID +FD: net/minecraft/client/model/ChestRaftModel/f_244598_ net/minecraft/client/model/ChestRaftModel/CHEST_LOCK +FD: net/minecraft/client/model/ChestedHorseModel/f_170479_ net/minecraft/client/model/ChestedHorseModel/leftChest +FD: net/minecraft/client/model/ChestedHorseModel/f_170480_ net/minecraft/client/model/ChestedHorseModel/rightChest +FD: net/minecraft/client/model/ChickenModel/f_102381_ net/minecraft/client/model/ChickenModel/head +FD: net/minecraft/client/model/ChickenModel/f_102382_ net/minecraft/client/model/ChickenModel/body +FD: net/minecraft/client/model/ChickenModel/f_102387_ net/minecraft/client/model/ChickenModel/beak +FD: net/minecraft/client/model/ChickenModel/f_102388_ net/minecraft/client/model/ChickenModel/redThing +FD: net/minecraft/client/model/ChickenModel/f_170484_ net/minecraft/client/model/ChickenModel/RED_THING +FD: net/minecraft/client/model/ChickenModel/f_170485_ net/minecraft/client/model/ChickenModel/rightLeg +FD: net/minecraft/client/model/ChickenModel/f_170486_ net/minecraft/client/model/ChickenModel/leftLeg +FD: net/minecraft/client/model/ChickenModel/f_170487_ net/minecraft/client/model/ChickenModel/rightWing +FD: net/minecraft/client/model/ChickenModel/f_170488_ net/minecraft/client/model/ChickenModel/leftWing +FD: net/minecraft/client/model/CodModel/f_102405_ net/minecraft/client/model/CodModel/tailFin +FD: net/minecraft/client/model/CodModel/f_170492_ net/minecraft/client/model/CodModel/root +FD: net/minecraft/client/model/ColorableAgeableListModel/f_102415_ net/minecraft/client/model/ColorableAgeableListModel/r +FD: net/minecraft/client/model/ColorableAgeableListModel/f_102416_ net/minecraft/client/model/ColorableAgeableListModel/g +FD: net/minecraft/client/model/ColorableAgeableListModel/f_102417_ net/minecraft/client/model/ColorableAgeableListModel/b +FD: net/minecraft/client/model/ColorableHierarchicalModel/f_170497_ net/minecraft/client/model/ColorableHierarchicalModel/r +FD: net/minecraft/client/model/ColorableHierarchicalModel/f_170498_ net/minecraft/client/model/ColorableHierarchicalModel/g +FD: net/minecraft/client/model/ColorableHierarchicalModel/f_170499_ net/minecraft/client/model/ColorableHierarchicalModel/b +FD: net/minecraft/client/model/CreeperModel/f_102451_ net/minecraft/client/model/CreeperModel/head +FD: net/minecraft/client/model/CreeperModel/f_170517_ net/minecraft/client/model/CreeperModel/root +FD: net/minecraft/client/model/CreeperModel/f_170518_ net/minecraft/client/model/CreeperModel/rightHindLeg +FD: net/minecraft/client/model/CreeperModel/f_170519_ net/minecraft/client/model/CreeperModel/leftHindLeg +FD: net/minecraft/client/model/CreeperModel/f_170520_ net/minecraft/client/model/CreeperModel/rightFrontLeg +FD: net/minecraft/client/model/CreeperModel/f_170521_ net/minecraft/client/model/CreeperModel/leftFrontLeg +FD: net/minecraft/client/model/CreeperModel/f_170522_ net/minecraft/client/model/CreeperModel/Y_OFFSET +FD: net/minecraft/client/model/DolphinModel/f_102469_ net/minecraft/client/model/DolphinModel/body +FD: net/minecraft/client/model/DolphinModel/f_102470_ net/minecraft/client/model/DolphinModel/tail +FD: net/minecraft/client/model/DolphinModel/f_102471_ net/minecraft/client/model/DolphinModel/tailFin +FD: net/minecraft/client/model/DolphinModel/f_170528_ net/minecraft/client/model/DolphinModel/root +FD: net/minecraft/client/model/ElytraModel/f_102532_ net/minecraft/client/model/ElytraModel/rightWing +FD: net/minecraft/client/model/ElytraModel/f_102533_ net/minecraft/client/model/ElytraModel/leftWing +FD: net/minecraft/client/model/EndermanModel/f_102576_ net/minecraft/client/model/EndermanModel/carrying +FD: net/minecraft/client/model/EndermanModel/f_102577_ net/minecraft/client/model/EndermanModel/creepy +FD: net/minecraft/client/model/EndermiteModel/f_102594_ net/minecraft/client/model/EndermiteModel/BODY_SIZES +FD: net/minecraft/client/model/EndermiteModel/f_102595_ net/minecraft/client/model/EndermiteModel/BODY_TEXS +FD: net/minecraft/client/model/EndermiteModel/f_102596_ net/minecraft/client/model/EndermiteModel/BODY_COUNT +FD: net/minecraft/client/model/EndermiteModel/f_102597_ net/minecraft/client/model/EndermiteModel/bodyParts +FD: net/minecraft/client/model/EndermiteModel/f_170543_ net/minecraft/client/model/EndermiteModel/root +FD: net/minecraft/client/model/EntityModel/f_102608_ net/minecraft/client/model/EntityModel/attackTime +FD: net/minecraft/client/model/EntityModel/f_102609_ net/minecraft/client/model/EntityModel/riding +FD: net/minecraft/client/model/EntityModel/f_102610_ net/minecraft/client/model/EntityModel/young +FD: net/minecraft/client/model/EvokerFangsModel/f_102626_ net/minecraft/client/model/EvokerFangsModel/base +FD: net/minecraft/client/model/EvokerFangsModel/f_102627_ net/minecraft/client/model/EvokerFangsModel/upperJaw +FD: net/minecraft/client/model/EvokerFangsModel/f_102628_ net/minecraft/client/model/EvokerFangsModel/lowerJaw +FD: net/minecraft/client/model/EvokerFangsModel/f_170550_ net/minecraft/client/model/EvokerFangsModel/BASE +FD: net/minecraft/client/model/EvokerFangsModel/f_170551_ net/minecraft/client/model/EvokerFangsModel/UPPER_JAW +FD: net/minecraft/client/model/EvokerFangsModel/f_170552_ net/minecraft/client/model/EvokerFangsModel/LOWER_JAW +FD: net/minecraft/client/model/EvokerFangsModel/f_170553_ net/minecraft/client/model/EvokerFangsModel/root +FD: net/minecraft/client/model/FoxModel/f_102638_ net/minecraft/client/model/FoxModel/head +FD: net/minecraft/client/model/FoxModel/f_102642_ net/minecraft/client/model/FoxModel/body +FD: net/minecraft/client/model/FoxModel/f_102647_ net/minecraft/client/model/FoxModel/tail +FD: net/minecraft/client/model/FoxModel/f_102648_ net/minecraft/client/model/FoxModel/legMotionPos +FD: net/minecraft/client/model/FoxModel/f_170558_ net/minecraft/client/model/FoxModel/rightHindLeg +FD: net/minecraft/client/model/FoxModel/f_170559_ net/minecraft/client/model/FoxModel/leftHindLeg +FD: net/minecraft/client/model/FoxModel/f_170560_ net/minecraft/client/model/FoxModel/rightFrontLeg +FD: net/minecraft/client/model/FoxModel/f_170561_ net/minecraft/client/model/FoxModel/leftFrontLeg +FD: net/minecraft/client/model/FoxModel/f_170562_ net/minecraft/client/model/FoxModel/LEG_SIZE +FD: net/minecraft/client/model/FoxModel/f_170563_ net/minecraft/client/model/FoxModel/HEAD_HEIGHT +FD: net/minecraft/client/model/FoxModel/f_170564_ net/minecraft/client/model/FoxModel/LEG_POS +FD: net/minecraft/client/model/FrogModel/f_233349_ net/minecraft/client/model/FrogModel/MAX_WALK_ANIMATION_SPEED +FD: net/minecraft/client/model/FrogModel/f_233351_ net/minecraft/client/model/FrogModel/root +FD: net/minecraft/client/model/FrogModel/f_233352_ net/minecraft/client/model/FrogModel/body +FD: net/minecraft/client/model/FrogModel/f_233353_ net/minecraft/client/model/FrogModel/head +FD: net/minecraft/client/model/FrogModel/f_233354_ net/minecraft/client/model/FrogModel/eyes +FD: net/minecraft/client/model/FrogModel/f_233355_ net/minecraft/client/model/FrogModel/tongue +FD: net/minecraft/client/model/FrogModel/f_233356_ net/minecraft/client/model/FrogModel/leftArm +FD: net/minecraft/client/model/FrogModel/f_233357_ net/minecraft/client/model/FrogModel/rightArm +FD: net/minecraft/client/model/FrogModel/f_233358_ net/minecraft/client/model/FrogModel/leftLeg +FD: net/minecraft/client/model/FrogModel/f_233359_ net/minecraft/client/model/FrogModel/rightLeg +FD: net/minecraft/client/model/FrogModel/f_233360_ net/minecraft/client/model/FrogModel/croakingBody +FD: net/minecraft/client/model/FrogModel/f_267373_ net/minecraft/client/model/FrogModel/WALK_ANIMATION_SCALE_FACTOR +FD: net/minecraft/client/model/FrogModel/f_267447_ net/minecraft/client/model/FrogModel/MAX_SWIM_ANIMATION_SPEED +FD: net/minecraft/client/model/GhastModel/f_102676_ net/minecraft/client/model/GhastModel/tentacles +FD: net/minecraft/client/model/GhastModel/f_170568_ net/minecraft/client/model/GhastModel/root +FD: net/minecraft/client/model/GuardianModel/f_102695_ net/minecraft/client/model/GuardianModel/SPIKE_X_ROT +FD: net/minecraft/client/model/GuardianModel/f_102696_ net/minecraft/client/model/GuardianModel/SPIKE_Y_ROT +FD: net/minecraft/client/model/GuardianModel/f_102697_ net/minecraft/client/model/GuardianModel/SPIKE_Z_ROT +FD: net/minecraft/client/model/GuardianModel/f_102698_ net/minecraft/client/model/GuardianModel/SPIKE_X +FD: net/minecraft/client/model/GuardianModel/f_102699_ net/minecraft/client/model/GuardianModel/SPIKE_Y +FD: net/minecraft/client/model/GuardianModel/f_102700_ net/minecraft/client/model/GuardianModel/SPIKE_Z +FD: net/minecraft/client/model/GuardianModel/f_102701_ net/minecraft/client/model/GuardianModel/head +FD: net/minecraft/client/model/GuardianModel/f_102702_ net/minecraft/client/model/GuardianModel/eye +FD: net/minecraft/client/model/GuardianModel/f_102703_ net/minecraft/client/model/GuardianModel/spikeParts +FD: net/minecraft/client/model/GuardianModel/f_102704_ net/minecraft/client/model/GuardianModel/tailParts +FD: net/minecraft/client/model/GuardianModel/f_170594_ net/minecraft/client/model/GuardianModel/EYE +FD: net/minecraft/client/model/GuardianModel/f_170595_ net/minecraft/client/model/GuardianModel/TAIL_0 +FD: net/minecraft/client/model/GuardianModel/f_170596_ net/minecraft/client/model/GuardianModel/TAIL_1 +FD: net/minecraft/client/model/GuardianModel/f_170597_ net/minecraft/client/model/GuardianModel/TAIL_2 +FD: net/minecraft/client/model/GuardianModel/f_170598_ net/minecraft/client/model/GuardianModel/root +FD: net/minecraft/client/model/HierarchicalModel/f_233379_ net/minecraft/client/model/HierarchicalModel/ANIMATION_VECTOR_CACHE +FD: net/minecraft/client/model/HoglinModel/f_102725_ net/minecraft/client/model/HoglinModel/head +FD: net/minecraft/client/model/HoglinModel/f_102726_ net/minecraft/client/model/HoglinModel/rightEar +FD: net/minecraft/client/model/HoglinModel/f_102727_ net/minecraft/client/model/HoglinModel/leftEar +FD: net/minecraft/client/model/HoglinModel/f_102728_ net/minecraft/client/model/HoglinModel/body +FD: net/minecraft/client/model/HoglinModel/f_102733_ net/minecraft/client/model/HoglinModel/mane +FD: net/minecraft/client/model/HoglinModel/f_170633_ net/minecraft/client/model/HoglinModel/DEFAULT_HEAD_X_ROT +FD: net/minecraft/client/model/HoglinModel/f_170634_ net/minecraft/client/model/HoglinModel/ATTACK_HEAD_X_ROT_END +FD: net/minecraft/client/model/HoglinModel/f_170635_ net/minecraft/client/model/HoglinModel/rightFrontLeg +FD: net/minecraft/client/model/HoglinModel/f_170636_ net/minecraft/client/model/HoglinModel/leftFrontLeg +FD: net/minecraft/client/model/HoglinModel/f_170637_ net/minecraft/client/model/HoglinModel/rightHindLeg +FD: net/minecraft/client/model/HoglinModel/f_170638_ net/minecraft/client/model/HoglinModel/leftHindLeg +FD: net/minecraft/client/model/HorseModel/f_102751_ net/minecraft/client/model/HorseModel/body +FD: net/minecraft/client/model/HorseModel/f_102752_ net/minecraft/client/model/HorseModel/headParts +FD: net/minecraft/client/model/HorseModel/f_102761_ net/minecraft/client/model/HorseModel/tail +FD: net/minecraft/client/model/HorseModel/f_102762_ net/minecraft/client/model/HorseModel/saddleParts +FD: net/minecraft/client/model/HorseModel/f_102763_ net/minecraft/client/model/HorseModel/ridingParts +FD: net/minecraft/client/model/HorseModel/f_170642_ net/minecraft/client/model/HorseModel/leftFrontLeg +FD: net/minecraft/client/model/HorseModel/f_170643_ net/minecraft/client/model/HorseModel/rightHindBabyLeg +FD: net/minecraft/client/model/HorseModel/f_170644_ net/minecraft/client/model/HorseModel/leftHindBabyLeg +FD: net/minecraft/client/model/HorseModel/f_170645_ net/minecraft/client/model/HorseModel/rightFrontBabyLeg +FD: net/minecraft/client/model/HorseModel/f_170646_ net/minecraft/client/model/HorseModel/leftFrontBabyLeg +FD: net/minecraft/client/model/HorseModel/f_170647_ net/minecraft/client/model/HorseModel/HEAD_PARTS +FD: net/minecraft/client/model/HorseModel/f_170648_ net/minecraft/client/model/HorseModel/DEG_125 +FD: net/minecraft/client/model/HorseModel/f_170649_ net/minecraft/client/model/HorseModel/DEG_60 +FD: net/minecraft/client/model/HorseModel/f_170650_ net/minecraft/client/model/HorseModel/DEG_45 +FD: net/minecraft/client/model/HorseModel/f_170651_ net/minecraft/client/model/HorseModel/DEG_30 +FD: net/minecraft/client/model/HorseModel/f_170652_ net/minecraft/client/model/HorseModel/DEG_15 +FD: net/minecraft/client/model/HorseModel/f_170653_ net/minecraft/client/model/HorseModel/LEFT_HIND_BABY_LEG +FD: net/minecraft/client/model/HorseModel/f_170654_ net/minecraft/client/model/HorseModel/RIGHT_HIND_BABY_LEG +FD: net/minecraft/client/model/HorseModel/f_170655_ net/minecraft/client/model/HorseModel/LEFT_FRONT_BABY_LEG +FD: net/minecraft/client/model/HorseModel/f_170656_ net/minecraft/client/model/HorseModel/RIGHT_FRONT_BABY_LEG +FD: net/minecraft/client/model/HorseModel/f_170657_ net/minecraft/client/model/HorseModel/SADDLE +FD: net/minecraft/client/model/HorseModel/f_170658_ net/minecraft/client/model/HorseModel/LEFT_SADDLE_MOUTH +FD: net/minecraft/client/model/HorseModel/f_170659_ net/minecraft/client/model/HorseModel/LEFT_SADDLE_LINE +FD: net/minecraft/client/model/HorseModel/f_170660_ net/minecraft/client/model/HorseModel/RIGHT_SADDLE_MOUTH +FD: net/minecraft/client/model/HorseModel/f_170661_ net/minecraft/client/model/HorseModel/RIGHT_SADDLE_LINE +FD: net/minecraft/client/model/HorseModel/f_170662_ net/minecraft/client/model/HorseModel/HEAD_SADDLE +FD: net/minecraft/client/model/HorseModel/f_170663_ net/minecraft/client/model/HorseModel/MOUTH_SADDLE_WRAP +FD: net/minecraft/client/model/HorseModel/f_170664_ net/minecraft/client/model/HorseModel/rightHindLeg +FD: net/minecraft/client/model/HorseModel/f_170665_ net/minecraft/client/model/HorseModel/leftHindLeg +FD: net/minecraft/client/model/HorseModel/f_170666_ net/minecraft/client/model/HorseModel/rightFrontLeg +FD: net/minecraft/client/model/HumanoidModel/f_102808_ net/minecraft/client/model/HumanoidModel/head +FD: net/minecraft/client/model/HumanoidModel/f_102809_ net/minecraft/client/model/HumanoidModel/hat +FD: net/minecraft/client/model/HumanoidModel/f_102810_ net/minecraft/client/model/HumanoidModel/body +FD: net/minecraft/client/model/HumanoidModel/f_102811_ net/minecraft/client/model/HumanoidModel/rightArm +FD: net/minecraft/client/model/HumanoidModel/f_102812_ net/minecraft/client/model/HumanoidModel/leftArm +FD: net/minecraft/client/model/HumanoidModel/f_102813_ net/minecraft/client/model/HumanoidModel/rightLeg +FD: net/minecraft/client/model/HumanoidModel/f_102814_ net/minecraft/client/model/HumanoidModel/leftLeg +FD: net/minecraft/client/model/HumanoidModel/f_102815_ net/minecraft/client/model/HumanoidModel/leftArmPose +FD: net/minecraft/client/model/HumanoidModel/f_102816_ net/minecraft/client/model/HumanoidModel/rightArmPose +FD: net/minecraft/client/model/HumanoidModel/f_102817_ net/minecraft/client/model/HumanoidModel/crouching +FD: net/minecraft/client/model/HumanoidModel/f_102818_ net/minecraft/client/model/HumanoidModel/swimAmount +FD: net/minecraft/client/model/HumanoidModel/f_170671_ net/minecraft/client/model/HumanoidModel/SPYGLASS_ARM_ROT_Y +FD: net/minecraft/client/model/HumanoidModel/f_170672_ net/minecraft/client/model/HumanoidModel/SPYGLASS_ARM_ROT_X +FD: net/minecraft/client/model/HumanoidModel/f_170673_ net/minecraft/client/model/HumanoidModel/OVERLAY_SCALE +FD: net/minecraft/client/model/HumanoidModel/f_170674_ net/minecraft/client/model/HumanoidModel/HAT_OVERLAY_SCALE +FD: net/minecraft/client/model/HumanoidModel/f_170675_ net/minecraft/client/model/HumanoidModel/SPYGLASS_ARM_CROUCH_ROT_X +FD: net/minecraft/client/model/HumanoidModel/f_233401_ net/minecraft/client/model/HumanoidModel/TOOT_HORN_XROT_BASE +FD: net/minecraft/client/model/HumanoidModel/f_233402_ net/minecraft/client/model/HumanoidModel/TOOT_HORN_YROT_BASE +FD: net/minecraft/client/model/HumanoidModel/f_268560_ net/minecraft/client/model/HumanoidModel/DUCK_WALK_ROTATION +FD: net/minecraft/client/model/HumanoidModel/f_268570_ net/minecraft/client/model/HumanoidModel/LEGGINGS_OVERLAY_SCALE +FD: net/minecraft/client/model/HumanoidModel$1/f_102881_ net/minecraft/client/model/HumanoidModel$1/$SwitchMap$net$minecraft$client$model$HumanoidModel$ArmPose +FD: net/minecraft/client/model/HumanoidModel$ArmPose/$VALUES net/minecraft/client/model/HumanoidModel$ArmPose/$VALUES +FD: net/minecraft/client/model/HumanoidModel$ArmPose/BLOCK net/minecraft/client/model/HumanoidModel$ArmPose/BLOCK +FD: net/minecraft/client/model/HumanoidModel$ArmPose/BOW_AND_ARROW net/minecraft/client/model/HumanoidModel$ArmPose/BOW_AND_ARROW +FD: net/minecraft/client/model/HumanoidModel$ArmPose/BRUSH net/minecraft/client/model/HumanoidModel$ArmPose/BRUSH +FD: net/minecraft/client/model/HumanoidModel$ArmPose/CROSSBOW_CHARGE net/minecraft/client/model/HumanoidModel$ArmPose/CROSSBOW_CHARGE +FD: net/minecraft/client/model/HumanoidModel$ArmPose/CROSSBOW_HOLD net/minecraft/client/model/HumanoidModel$ArmPose/CROSSBOW_HOLD +FD: net/minecraft/client/model/HumanoidModel$ArmPose/EMPTY net/minecraft/client/model/HumanoidModel$ArmPose/EMPTY +FD: net/minecraft/client/model/HumanoidModel$ArmPose/ITEM net/minecraft/client/model/HumanoidModel$ArmPose/ITEM +FD: net/minecraft/client/model/HumanoidModel$ArmPose/SPYGLASS net/minecraft/client/model/HumanoidModel$ArmPose/SPYGLASS +FD: net/minecraft/client/model/HumanoidModel$ArmPose/THROW_SPEAR net/minecraft/client/model/HumanoidModel$ArmPose/THROW_SPEAR +FD: net/minecraft/client/model/HumanoidModel$ArmPose/TOOT_HORN net/minecraft/client/model/HumanoidModel$ArmPose/TOOT_HORN +FD: net/minecraft/client/model/HumanoidModel$ArmPose/f_102890_ net/minecraft/client/model/HumanoidModel$ArmPose/twoHanded +FD: net/minecraft/client/model/IllagerModel/f_102901_ net/minecraft/client/model/IllagerModel/head +FD: net/minecraft/client/model/IllagerModel/f_102902_ net/minecraft/client/model/IllagerModel/hat +FD: net/minecraft/client/model/IllagerModel/f_102904_ net/minecraft/client/model/IllagerModel/arms +FD: net/minecraft/client/model/IllagerModel/f_102905_ net/minecraft/client/model/IllagerModel/leftLeg +FD: net/minecraft/client/model/IllagerModel/f_102906_ net/minecraft/client/model/IllagerModel/rightLeg +FD: net/minecraft/client/model/IllagerModel/f_102907_ net/minecraft/client/model/IllagerModel/rightArm +FD: net/minecraft/client/model/IllagerModel/f_102908_ net/minecraft/client/model/IllagerModel/leftArm +FD: net/minecraft/client/model/IllagerModel/f_170686_ net/minecraft/client/model/IllagerModel/root +FD: net/minecraft/client/model/IronGolemModel/f_102936_ net/minecraft/client/model/IronGolemModel/head +FD: net/minecraft/client/model/IronGolemModel/f_170691_ net/minecraft/client/model/IronGolemModel/root +FD: net/minecraft/client/model/IronGolemModel/f_170692_ net/minecraft/client/model/IronGolemModel/rightArm +FD: net/minecraft/client/model/IronGolemModel/f_170693_ net/minecraft/client/model/IronGolemModel/leftArm +FD: net/minecraft/client/model/IronGolemModel/f_170694_ net/minecraft/client/model/IronGolemModel/rightLeg +FD: net/minecraft/client/model/IronGolemModel/f_170695_ net/minecraft/client/model/IronGolemModel/leftLeg +FD: net/minecraft/client/model/LavaSlimeModel/f_102969_ net/minecraft/client/model/LavaSlimeModel/bodyCubes +FD: net/minecraft/client/model/LavaSlimeModel/f_170700_ net/minecraft/client/model/LavaSlimeModel/SEGMENT_COUNT +FD: net/minecraft/client/model/LavaSlimeModel/f_170701_ net/minecraft/client/model/LavaSlimeModel/root +FD: net/minecraft/client/model/LeashKnotModel/f_102999_ net/minecraft/client/model/LeashKnotModel/knot +FD: net/minecraft/client/model/LeashKnotModel/f_170711_ net/minecraft/client/model/LeashKnotModel/KNOT +FD: net/minecraft/client/model/LeashKnotModel/f_170712_ net/minecraft/client/model/LeashKnotModel/root +FD: net/minecraft/client/model/LlamaModel/f_103031_ net/minecraft/client/model/LlamaModel/head +FD: net/minecraft/client/model/LlamaModel/f_103032_ net/minecraft/client/model/LlamaModel/body +FD: net/minecraft/client/model/LlamaModel/f_170717_ net/minecraft/client/model/LlamaModel/rightHindLeg +FD: net/minecraft/client/model/LlamaModel/f_170718_ net/minecraft/client/model/LlamaModel/leftHindLeg +FD: net/minecraft/client/model/LlamaModel/f_170719_ net/minecraft/client/model/LlamaModel/rightFrontLeg +FD: net/minecraft/client/model/LlamaModel/f_170720_ net/minecraft/client/model/LlamaModel/leftFrontLeg +FD: net/minecraft/client/model/LlamaModel/f_170721_ net/minecraft/client/model/LlamaModel/rightChest +FD: net/minecraft/client/model/LlamaModel/f_170722_ net/minecraft/client/model/LlamaModel/leftChest +FD: net/minecraft/client/model/LlamaSpitModel/f_170727_ net/minecraft/client/model/LlamaSpitModel/MAIN +FD: net/minecraft/client/model/LlamaSpitModel/f_170728_ net/minecraft/client/model/LlamaSpitModel/root +FD: net/minecraft/client/model/MinecartModel/f_170733_ net/minecraft/client/model/MinecartModel/root +FD: net/minecraft/client/model/Model/f_103106_ net/minecraft/client/model/Model/renderType +FD: net/minecraft/client/model/OcelotModel/f_103133_ net/minecraft/client/model/OcelotModel/tail1 +FD: net/minecraft/client/model/OcelotModel/f_103134_ net/minecraft/client/model/OcelotModel/tail2 +FD: net/minecraft/client/model/OcelotModel/f_103135_ net/minecraft/client/model/OcelotModel/head +FD: net/minecraft/client/model/OcelotModel/f_103136_ net/minecraft/client/model/OcelotModel/body +FD: net/minecraft/client/model/OcelotModel/f_103137_ net/minecraft/client/model/OcelotModel/state +FD: net/minecraft/client/model/OcelotModel/f_170741_ net/minecraft/client/model/OcelotModel/BODY_WALK_Z +FD: net/minecraft/client/model/OcelotModel/f_170742_ net/minecraft/client/model/OcelotModel/TAIL_1_WALK_Y +FD: net/minecraft/client/model/OcelotModel/f_170743_ net/minecraft/client/model/OcelotModel/TAIL_1_WALK_Z +FD: net/minecraft/client/model/OcelotModel/f_170744_ net/minecraft/client/model/OcelotModel/TAIL_2_WALK_Y +FD: net/minecraft/client/model/OcelotModel/f_170745_ net/minecraft/client/model/OcelotModel/TAIL_2_WALK_Z +FD: net/minecraft/client/model/OcelotModel/f_170746_ net/minecraft/client/model/OcelotModel/FRONT_LEG_Z +FD: net/minecraft/client/model/OcelotModel/f_170747_ net/minecraft/client/model/OcelotModel/TAIL_1 +FD: net/minecraft/client/model/OcelotModel/f_170748_ net/minecraft/client/model/OcelotModel/TAIL_2 +FD: net/minecraft/client/model/OcelotModel/f_170749_ net/minecraft/client/model/OcelotModel/SITTING_STATE +FD: net/minecraft/client/model/OcelotModel/f_170750_ net/minecraft/client/model/OcelotModel/BACK_LEG_Y +FD: net/minecraft/client/model/OcelotModel/f_170751_ net/minecraft/client/model/OcelotModel/BACK_LEG_Z +FD: net/minecraft/client/model/OcelotModel/f_170752_ net/minecraft/client/model/OcelotModel/FRONT_LEG_Y +FD: net/minecraft/client/model/OcelotModel/f_170753_ net/minecraft/client/model/OcelotModel/leftHindLeg +FD: net/minecraft/client/model/OcelotModel/f_170754_ net/minecraft/client/model/OcelotModel/rightHindLeg +FD: net/minecraft/client/model/OcelotModel/f_170755_ net/minecraft/client/model/OcelotModel/leftFrontLeg +FD: net/minecraft/client/model/OcelotModel/f_170756_ net/minecraft/client/model/OcelotModel/rightFrontLeg +FD: net/minecraft/client/model/OcelotModel/f_170757_ net/minecraft/client/model/OcelotModel/CROUCH_STATE +FD: net/minecraft/client/model/OcelotModel/f_170758_ net/minecraft/client/model/OcelotModel/WALK_STATE +FD: net/minecraft/client/model/OcelotModel/f_170759_ net/minecraft/client/model/OcelotModel/SPRINT_STATE +FD: net/minecraft/client/model/OcelotModel/f_170760_ net/minecraft/client/model/OcelotModel/XO +FD: net/minecraft/client/model/OcelotModel/f_170761_ net/minecraft/client/model/OcelotModel/YO +FD: net/minecraft/client/model/OcelotModel/f_170762_ net/minecraft/client/model/OcelotModel/ZO +FD: net/minecraft/client/model/OcelotModel/f_170763_ net/minecraft/client/model/OcelotModel/HEAD_WALK_Y +FD: net/minecraft/client/model/OcelotModel/f_170764_ net/minecraft/client/model/OcelotModel/HEAD_WALK_Z +FD: net/minecraft/client/model/OcelotModel/f_170765_ net/minecraft/client/model/OcelotModel/BODY_WALK_Y +FD: net/minecraft/client/model/PandaModel/f_103154_ net/minecraft/client/model/PandaModel/sitAmount +FD: net/minecraft/client/model/PandaModel/f_103155_ net/minecraft/client/model/PandaModel/lieOnBackAmount +FD: net/minecraft/client/model/PandaModel/f_103156_ net/minecraft/client/model/PandaModel/rollAmount +FD: net/minecraft/client/model/ParrotModel/f_103184_ net/minecraft/client/model/ParrotModel/body +FD: net/minecraft/client/model/ParrotModel/f_103185_ net/minecraft/client/model/ParrotModel/tail +FD: net/minecraft/client/model/ParrotModel/f_103188_ net/minecraft/client/model/ParrotModel/head +FD: net/minecraft/client/model/ParrotModel/f_103192_ net/minecraft/client/model/ParrotModel/feather +FD: net/minecraft/client/model/ParrotModel/f_170773_ net/minecraft/client/model/ParrotModel/FEATHER +FD: net/minecraft/client/model/ParrotModel/f_170774_ net/minecraft/client/model/ParrotModel/root +FD: net/minecraft/client/model/ParrotModel/f_170775_ net/minecraft/client/model/ParrotModel/leftWing +FD: net/minecraft/client/model/ParrotModel/f_170776_ net/minecraft/client/model/ParrotModel/rightWing +FD: net/minecraft/client/model/ParrotModel/f_170777_ net/minecraft/client/model/ParrotModel/leftLeg +FD: net/minecraft/client/model/ParrotModel/f_170778_ net/minecraft/client/model/ParrotModel/rightLeg +FD: net/minecraft/client/model/ParrotModel$1/f_103249_ net/minecraft/client/model/ParrotModel$1/$SwitchMap$net$minecraft$client$model$ParrotModel$State +FD: net/minecraft/client/model/ParrotModel$State/$VALUES net/minecraft/client/model/ParrotModel$State/$VALUES +FD: net/minecraft/client/model/ParrotModel$State/FLYING net/minecraft/client/model/ParrotModel$State/FLYING +FD: net/minecraft/client/model/ParrotModel$State/ON_SHOULDER net/minecraft/client/model/ParrotModel$State/ON_SHOULDER +FD: net/minecraft/client/model/ParrotModel$State/PARTY net/minecraft/client/model/ParrotModel$State/PARTY +FD: net/minecraft/client/model/ParrotModel$State/SITTING net/minecraft/client/model/ParrotModel$State/SITTING +FD: net/minecraft/client/model/ParrotModel$State/STANDING net/minecraft/client/model/ParrotModel$State/STANDING +FD: net/minecraft/client/model/PhantomModel/f_103315_ net/minecraft/client/model/PhantomModel/leftWingBase +FD: net/minecraft/client/model/PhantomModel/f_103316_ net/minecraft/client/model/PhantomModel/leftWingTip +FD: net/minecraft/client/model/PhantomModel/f_103317_ net/minecraft/client/model/PhantomModel/rightWingBase +FD: net/minecraft/client/model/PhantomModel/f_103318_ net/minecraft/client/model/PhantomModel/rightWingTip +FD: net/minecraft/client/model/PhantomModel/f_103319_ net/minecraft/client/model/PhantomModel/tailBase +FD: net/minecraft/client/model/PhantomModel/f_103320_ net/minecraft/client/model/PhantomModel/tailTip +FD: net/minecraft/client/model/PhantomModel/f_170784_ net/minecraft/client/model/PhantomModel/TAIL_BASE +FD: net/minecraft/client/model/PhantomModel/f_170785_ net/minecraft/client/model/PhantomModel/TAIL_TIP +FD: net/minecraft/client/model/PhantomModel/f_170786_ net/minecraft/client/model/PhantomModel/root +FD: net/minecraft/client/model/PiglinHeadModel/f_260496_ net/minecraft/client/model/PiglinHeadModel/head +FD: net/minecraft/client/model/PiglinHeadModel/f_260517_ net/minecraft/client/model/PiglinHeadModel/rightEar +FD: net/minecraft/client/model/PiglinHeadModel/f_260542_ net/minecraft/client/model/PiglinHeadModel/leftEar +FD: net/minecraft/client/model/PiglinModel/f_103333_ net/minecraft/client/model/PiglinModel/leftArmDefault +FD: net/minecraft/client/model/PiglinModel/f_103334_ net/minecraft/client/model/PiglinModel/rightArmDefault +FD: net/minecraft/client/model/PiglinModel/f_103337_ net/minecraft/client/model/PiglinModel/bodyDefault +FD: net/minecraft/client/model/PiglinModel/f_103338_ net/minecraft/client/model/PiglinModel/headDefault +FD: net/minecraft/client/model/PiglinModel/f_170807_ net/minecraft/client/model/PiglinModel/rightEar +FD: net/minecraft/client/model/PiglinModel/f_170808_ net/minecraft/client/model/PiglinModel/leftEar +FD: net/minecraft/client/model/PlayerModel/f_103373_ net/minecraft/client/model/PlayerModel/cloak +FD: net/minecraft/client/model/PlayerModel/f_103374_ net/minecraft/client/model/PlayerModel/leftSleeve +FD: net/minecraft/client/model/PlayerModel/f_103375_ net/minecraft/client/model/PlayerModel/rightSleeve +FD: net/minecraft/client/model/PlayerModel/f_103376_ net/minecraft/client/model/PlayerModel/leftPants +FD: net/minecraft/client/model/PlayerModel/f_103377_ net/minecraft/client/model/PlayerModel/rightPants +FD: net/minecraft/client/model/PlayerModel/f_103378_ net/minecraft/client/model/PlayerModel/jacket +FD: net/minecraft/client/model/PlayerModel/f_103379_ net/minecraft/client/model/PlayerModel/ear +FD: net/minecraft/client/model/PlayerModel/f_103380_ net/minecraft/client/model/PlayerModel/slim +FD: net/minecraft/client/model/PlayerModel/f_170813_ net/minecraft/client/model/PlayerModel/LEFT_PANTS +FD: net/minecraft/client/model/PlayerModel/f_170814_ net/minecraft/client/model/PlayerModel/RIGHT_PANTS +FD: net/minecraft/client/model/PlayerModel/f_170815_ net/minecraft/client/model/PlayerModel/parts +FD: net/minecraft/client/model/PlayerModel/f_170816_ net/minecraft/client/model/PlayerModel/EAR +FD: net/minecraft/client/model/PlayerModel/f_170817_ net/minecraft/client/model/PlayerModel/CLOAK +FD: net/minecraft/client/model/PlayerModel/f_170818_ net/minecraft/client/model/PlayerModel/LEFT_SLEEVE +FD: net/minecraft/client/model/PlayerModel/f_170819_ net/minecraft/client/model/PlayerModel/RIGHT_SLEEVE +FD: net/minecraft/client/model/PufferfishBigModel/f_170831_ net/minecraft/client/model/PufferfishBigModel/root +FD: net/minecraft/client/model/PufferfishBigModel/f_170832_ net/minecraft/client/model/PufferfishBigModel/leftBlueFin +FD: net/minecraft/client/model/PufferfishBigModel/f_170833_ net/minecraft/client/model/PufferfishBigModel/rightBlueFin +FD: net/minecraft/client/model/PufferfishMidModel/f_170838_ net/minecraft/client/model/PufferfishMidModel/root +FD: net/minecraft/client/model/PufferfishMidModel/f_170839_ net/minecraft/client/model/PufferfishMidModel/leftBlueFin +FD: net/minecraft/client/model/PufferfishMidModel/f_170840_ net/minecraft/client/model/PufferfishMidModel/rightBlueFin +FD: net/minecraft/client/model/PufferfishSmallModel/f_170845_ net/minecraft/client/model/PufferfishSmallModel/root +FD: net/minecraft/client/model/PufferfishSmallModel/f_170846_ net/minecraft/client/model/PufferfishSmallModel/leftFin +FD: net/minecraft/client/model/PufferfishSmallModel/f_170847_ net/minecraft/client/model/PufferfishSmallModel/rightFin +FD: net/minecraft/client/model/QuadrupedModel/f_103492_ net/minecraft/client/model/QuadrupedModel/head +FD: net/minecraft/client/model/QuadrupedModel/f_103493_ net/minecraft/client/model/QuadrupedModel/body +FD: net/minecraft/client/model/QuadrupedModel/f_170852_ net/minecraft/client/model/QuadrupedModel/rightHindLeg +FD: net/minecraft/client/model/QuadrupedModel/f_170853_ net/minecraft/client/model/QuadrupedModel/leftHindLeg +FD: net/minecraft/client/model/QuadrupedModel/f_170854_ net/minecraft/client/model/QuadrupedModel/rightFrontLeg +FD: net/minecraft/client/model/QuadrupedModel/f_170855_ net/minecraft/client/model/QuadrupedModel/leftFrontLeg +FD: net/minecraft/client/model/RabbitModel/f_103520_ net/minecraft/client/model/RabbitModel/body +FD: net/minecraft/client/model/RabbitModel/f_103523_ net/minecraft/client/model/RabbitModel/head +FD: net/minecraft/client/model/RabbitModel/f_103526_ net/minecraft/client/model/RabbitModel/tail +FD: net/minecraft/client/model/RabbitModel/f_103527_ net/minecraft/client/model/RabbitModel/nose +FD: net/minecraft/client/model/RabbitModel/f_103528_ net/minecraft/client/model/RabbitModel/jumpRotation +FD: net/minecraft/client/model/RabbitModel/f_170867_ net/minecraft/client/model/RabbitModel/REAR_JUMP_ANGLE +FD: net/minecraft/client/model/RabbitModel/f_170868_ net/minecraft/client/model/RabbitModel/FRONT_JUMP_ANGLE +FD: net/minecraft/client/model/RabbitModel/f_170869_ net/minecraft/client/model/RabbitModel/LEFT_HAUNCH +FD: net/minecraft/client/model/RabbitModel/f_170870_ net/minecraft/client/model/RabbitModel/RIGHT_HAUNCH +FD: net/minecraft/client/model/RabbitModel/f_170871_ net/minecraft/client/model/RabbitModel/leftRearFoot +FD: net/minecraft/client/model/RabbitModel/f_170872_ net/minecraft/client/model/RabbitModel/rightRearFoot +FD: net/minecraft/client/model/RabbitModel/f_170873_ net/minecraft/client/model/RabbitModel/leftHaunch +FD: net/minecraft/client/model/RabbitModel/f_170874_ net/minecraft/client/model/RabbitModel/rightHaunch +FD: net/minecraft/client/model/RabbitModel/f_170875_ net/minecraft/client/model/RabbitModel/leftFrontLeg +FD: net/minecraft/client/model/RabbitModel/f_170876_ net/minecraft/client/model/RabbitModel/rightFrontLeg +FD: net/minecraft/client/model/RabbitModel/f_170877_ net/minecraft/client/model/RabbitModel/rightEar +FD: net/minecraft/client/model/RabbitModel/f_170878_ net/minecraft/client/model/RabbitModel/leftEar +FD: net/minecraft/client/model/RabbitModel/f_170879_ net/minecraft/client/model/RabbitModel/NEW_SCALE +FD: net/minecraft/client/model/RaftModel/f_243674_ net/minecraft/client/model/RaftModel/BOTTOM +FD: net/minecraft/client/model/RaftModel/f_243712_ net/minecraft/client/model/RaftModel/LEFT_PADDLE +FD: net/minecraft/client/model/RaftModel/f_243747_ net/minecraft/client/model/RaftModel/rightPaddle +FD: net/minecraft/client/model/RaftModel/f_244253_ net/minecraft/client/model/RaftModel/RIGHT_PADDLE +FD: net/minecraft/client/model/RaftModel/f_244557_ net/minecraft/client/model/RaftModel/parts +FD: net/minecraft/client/model/RaftModel/f_244618_ net/minecraft/client/model/RaftModel/leftPaddle +FD: net/minecraft/client/model/RavagerModel/f_103598_ net/minecraft/client/model/RavagerModel/head +FD: net/minecraft/client/model/RavagerModel/f_103599_ net/minecraft/client/model/RavagerModel/mouth +FD: net/minecraft/client/model/RavagerModel/f_103605_ net/minecraft/client/model/RavagerModel/neck +FD: net/minecraft/client/model/RavagerModel/f_170883_ net/minecraft/client/model/RavagerModel/root +FD: net/minecraft/client/model/RavagerModel/f_170884_ net/minecraft/client/model/RavagerModel/rightHindLeg +FD: net/minecraft/client/model/RavagerModel/f_170885_ net/minecraft/client/model/RavagerModel/leftHindLeg +FD: net/minecraft/client/model/RavagerModel/f_170886_ net/minecraft/client/model/RavagerModel/rightFrontLeg +FD: net/minecraft/client/model/RavagerModel/f_170887_ net/minecraft/client/model/RavagerModel/leftFrontLeg +FD: net/minecraft/client/model/SalmonModel/f_103633_ net/minecraft/client/model/SalmonModel/bodyBack +FD: net/minecraft/client/model/SalmonModel/f_170892_ net/minecraft/client/model/SalmonModel/BODY_FRONT +FD: net/minecraft/client/model/SalmonModel/f_170893_ net/minecraft/client/model/SalmonModel/BODY_BACK +FD: net/minecraft/client/model/SalmonModel/f_170894_ net/minecraft/client/model/SalmonModel/root +FD: net/minecraft/client/model/SheepFurModel/f_103646_ net/minecraft/client/model/SheepFurModel/headXRot +FD: net/minecraft/client/model/SheepModel/f_103672_ net/minecraft/client/model/SheepModel/headXRot +FD: net/minecraft/client/model/ShieldModel/f_103698_ net/minecraft/client/model/ShieldModel/plate +FD: net/minecraft/client/model/ShieldModel/f_103699_ net/minecraft/client/model/ShieldModel/handle +FD: net/minecraft/client/model/ShieldModel/f_170905_ net/minecraft/client/model/ShieldModel/PLATE +FD: net/minecraft/client/model/ShieldModel/f_170906_ net/minecraft/client/model/ShieldModel/HANDLE +FD: net/minecraft/client/model/ShieldModel/f_170907_ net/minecraft/client/model/ShieldModel/SHIELD_WIDTH +FD: net/minecraft/client/model/ShieldModel/f_170908_ net/minecraft/client/model/ShieldModel/SHIELD_HEIGHT +FD: net/minecraft/client/model/ShieldModel/f_170909_ net/minecraft/client/model/ShieldModel/root +FD: net/minecraft/client/model/ShulkerBulletModel/f_103712_ net/minecraft/client/model/ShulkerBulletModel/main +FD: net/minecraft/client/model/ShulkerBulletModel/f_170913_ net/minecraft/client/model/ShulkerBulletModel/MAIN +FD: net/minecraft/client/model/ShulkerBulletModel/f_170914_ net/minecraft/client/model/ShulkerBulletModel/root +FD: net/minecraft/client/model/ShulkerModel/f_103722_ net/minecraft/client/model/ShulkerModel/base +FD: net/minecraft/client/model/ShulkerModel/f_103723_ net/minecraft/client/model/ShulkerModel/lid +FD: net/minecraft/client/model/ShulkerModel/f_103724_ net/minecraft/client/model/ShulkerModel/head +FD: net/minecraft/client/model/ShulkerModel/f_170919_ net/minecraft/client/model/ShulkerModel/LID +FD: net/minecraft/client/model/ShulkerModel/f_170920_ net/minecraft/client/model/ShulkerModel/BASE +FD: net/minecraft/client/model/SilverfishModel/f_103744_ net/minecraft/client/model/SilverfishModel/bodyParts +FD: net/minecraft/client/model/SilverfishModel/f_103745_ net/minecraft/client/model/SilverfishModel/bodyLayers +FD: net/minecraft/client/model/SilverfishModel/f_103748_ net/minecraft/client/model/SilverfishModel/BODY_SIZES +FD: net/minecraft/client/model/SilverfishModel/f_103749_ net/minecraft/client/model/SilverfishModel/BODY_TEXS +FD: net/minecraft/client/model/SilverfishModel/f_170924_ net/minecraft/client/model/SilverfishModel/BODY_COUNT +FD: net/minecraft/client/model/SilverfishModel/f_170925_ net/minecraft/client/model/SilverfishModel/root +FD: net/minecraft/client/model/SkullModel/f_103804_ net/minecraft/client/model/SkullModel/head +FD: net/minecraft/client/model/SkullModel/f_170943_ net/minecraft/client/model/SkullModel/root +FD: net/minecraft/client/model/SlimeModel/f_170953_ net/minecraft/client/model/SlimeModel/root +FD: net/minecraft/client/model/SnifferModel/f_271235_ net/minecraft/client/model/SnifferModel/root +FD: net/minecraft/client/model/SnifferModel/f_273862_ net/minecraft/client/model/SnifferModel/head +FD: net/minecraft/client/model/SnifferModel/f_276540_ net/minecraft/client/model/SnifferModel/WALK_ANIMATION_SPEED_MAX +FD: net/minecraft/client/model/SnifferModel/f_278124_ net/minecraft/client/model/SnifferModel/WALK_ANIMATION_SCALE_FACTOR +FD: net/minecraft/client/model/SnowGolemModel/f_103839_ net/minecraft/client/model/SnowGolemModel/head +FD: net/minecraft/client/model/SnowGolemModel/f_170959_ net/minecraft/client/model/SnowGolemModel/UPPER_BODY +FD: net/minecraft/client/model/SnowGolemModel/f_170960_ net/minecraft/client/model/SnowGolemModel/root +FD: net/minecraft/client/model/SnowGolemModel/f_170961_ net/minecraft/client/model/SnowGolemModel/upperBody +FD: net/minecraft/client/model/SnowGolemModel/f_170962_ net/minecraft/client/model/SnowGolemModel/leftArm +FD: net/minecraft/client/model/SnowGolemModel/f_170963_ net/minecraft/client/model/SnowGolemModel/rightArm +FD: net/minecraft/client/model/SpiderModel/f_103852_ net/minecraft/client/model/SpiderModel/head +FD: net/minecraft/client/model/SpiderModel/f_170968_ net/minecraft/client/model/SpiderModel/BODY_0 +FD: net/minecraft/client/model/SpiderModel/f_170969_ net/minecraft/client/model/SpiderModel/BODY_1 +FD: net/minecraft/client/model/SpiderModel/f_170970_ net/minecraft/client/model/SpiderModel/RIGHT_MIDDLE_FRONT_LEG +FD: net/minecraft/client/model/SpiderModel/f_170971_ net/minecraft/client/model/SpiderModel/LEFT_MIDDLE_FRONT_LEG +FD: net/minecraft/client/model/SpiderModel/f_170972_ net/minecraft/client/model/SpiderModel/RIGHT_MIDDLE_HIND_LEG +FD: net/minecraft/client/model/SpiderModel/f_170973_ net/minecraft/client/model/SpiderModel/LEFT_MIDDLE_HIND_LEG +FD: net/minecraft/client/model/SpiderModel/f_170974_ net/minecraft/client/model/SpiderModel/root +FD: net/minecraft/client/model/SpiderModel/f_170975_ net/minecraft/client/model/SpiderModel/rightHindLeg +FD: net/minecraft/client/model/SpiderModel/f_170976_ net/minecraft/client/model/SpiderModel/leftHindLeg +FD: net/minecraft/client/model/SpiderModel/f_170977_ net/minecraft/client/model/SpiderModel/rightMiddleHindLeg +FD: net/minecraft/client/model/SpiderModel/f_170978_ net/minecraft/client/model/SpiderModel/leftMiddleHindLeg +FD: net/minecraft/client/model/SpiderModel/f_170979_ net/minecraft/client/model/SpiderModel/rightMiddleFrontLeg +FD: net/minecraft/client/model/SpiderModel/f_170980_ net/minecraft/client/model/SpiderModel/leftMiddleFrontLeg +FD: net/minecraft/client/model/SpiderModel/f_170981_ net/minecraft/client/model/SpiderModel/rightFrontLeg +FD: net/minecraft/client/model/SpiderModel/f_170982_ net/minecraft/client/model/SpiderModel/leftFrontLeg +FD: net/minecraft/client/model/SquidModel/f_103873_ net/minecraft/client/model/SquidModel/tentacles +FD: net/minecraft/client/model/SquidModel/f_170987_ net/minecraft/client/model/SquidModel/root +FD: net/minecraft/client/model/StriderModel/f_103884_ net/minecraft/client/model/StriderModel/rightLeg +FD: net/minecraft/client/model/StriderModel/f_103885_ net/minecraft/client/model/StriderModel/leftLeg +FD: net/minecraft/client/model/StriderModel/f_103886_ net/minecraft/client/model/StriderModel/body +FD: net/minecraft/client/model/StriderModel/f_170997_ net/minecraft/client/model/StriderModel/RIGHT_BOTTOM_BRISTLE +FD: net/minecraft/client/model/StriderModel/f_170998_ net/minecraft/client/model/StriderModel/RIGHT_MIDDLE_BRISTLE +FD: net/minecraft/client/model/StriderModel/f_170999_ net/minecraft/client/model/StriderModel/RIGHT_TOP_BRISTLE +FD: net/minecraft/client/model/StriderModel/f_171000_ net/minecraft/client/model/StriderModel/LEFT_TOP_BRISTLE +FD: net/minecraft/client/model/StriderModel/f_171001_ net/minecraft/client/model/StriderModel/LEFT_MIDDLE_BRISTLE +FD: net/minecraft/client/model/StriderModel/f_171002_ net/minecraft/client/model/StriderModel/LEFT_BOTTOM_BRISTLE +FD: net/minecraft/client/model/StriderModel/f_171003_ net/minecraft/client/model/StriderModel/root +FD: net/minecraft/client/model/StriderModel/f_171004_ net/minecraft/client/model/StriderModel/rightBottomBristle +FD: net/minecraft/client/model/StriderModel/f_171005_ net/minecraft/client/model/StriderModel/rightMiddleBristle +FD: net/minecraft/client/model/StriderModel/f_171006_ net/minecraft/client/model/StriderModel/rightTopBristle +FD: net/minecraft/client/model/StriderModel/f_171007_ net/minecraft/client/model/StriderModel/leftTopBristle +FD: net/minecraft/client/model/StriderModel/f_171008_ net/minecraft/client/model/StriderModel/leftMiddleBristle +FD: net/minecraft/client/model/StriderModel/f_171009_ net/minecraft/client/model/StriderModel/leftBottomBristle +FD: net/minecraft/client/model/TadpoleModel/f_233440_ net/minecraft/client/model/TadpoleModel/root +FD: net/minecraft/client/model/TadpoleModel/f_233441_ net/minecraft/client/model/TadpoleModel/tail +FD: net/minecraft/client/model/TridentModel/f_103914_ net/minecraft/client/model/TridentModel/TEXTURE +FD: net/minecraft/client/model/TridentModel/f_171014_ net/minecraft/client/model/TridentModel/root +FD: net/minecraft/client/model/TropicalFishModelA/f_103953_ net/minecraft/client/model/TropicalFishModelA/tail +FD: net/minecraft/client/model/TropicalFishModelA/f_171018_ net/minecraft/client/model/TropicalFishModelA/root +FD: net/minecraft/client/model/TropicalFishModelB/f_103968_ net/minecraft/client/model/TropicalFishModelB/tail +FD: net/minecraft/client/model/TropicalFishModelB/f_171034_ net/minecraft/client/model/TropicalFishModelB/root +FD: net/minecraft/client/model/TurtleModel/f_103983_ net/minecraft/client/model/TurtleModel/eggBelly +FD: net/minecraft/client/model/TurtleModel/f_171040_ net/minecraft/client/model/TurtleModel/EGG_BELLY +FD: net/minecraft/client/model/VexModel/f_104010_ net/minecraft/client/model/VexModel/leftWing +FD: net/minecraft/client/model/VexModel/f_104011_ net/minecraft/client/model/VexModel/rightWing +FD: net/minecraft/client/model/VexModel/f_256879_ net/minecraft/client/model/VexModel/leftArm +FD: net/minecraft/client/model/VexModel/f_256999_ net/minecraft/client/model/VexModel/body +FD: net/minecraft/client/model/VexModel/f_257013_ net/minecraft/client/model/VexModel/rightArm +FD: net/minecraft/client/model/VexModel/f_257017_ net/minecraft/client/model/VexModel/root +FD: net/minecraft/client/model/VexModel/f_263122_ net/minecraft/client/model/VexModel/head +FD: net/minecraft/client/model/VillagerModel/f_104036_ net/minecraft/client/model/VillagerModel/head +FD: net/minecraft/client/model/VillagerModel/f_104037_ net/minecraft/client/model/VillagerModel/hat +FD: net/minecraft/client/model/VillagerModel/f_104038_ net/minecraft/client/model/VillagerModel/hatRim +FD: net/minecraft/client/model/VillagerModel/f_104044_ net/minecraft/client/model/VillagerModel/nose +FD: net/minecraft/client/model/VillagerModel/f_171047_ net/minecraft/client/model/VillagerModel/root +FD: net/minecraft/client/model/VillagerModel/f_171048_ net/minecraft/client/model/VillagerModel/rightLeg +FD: net/minecraft/client/model/VillagerModel/f_171049_ net/minecraft/client/model/VillagerModel/leftLeg +FD: net/minecraft/client/model/WardenModel/f_233493_ net/minecraft/client/model/WardenModel/bone +FD: net/minecraft/client/model/WardenModel/f_233494_ net/minecraft/client/model/WardenModel/body +FD: net/minecraft/client/model/WardenModel/f_233495_ net/minecraft/client/model/WardenModel/head +FD: net/minecraft/client/model/WardenModel/f_233496_ net/minecraft/client/model/WardenModel/rightTendril +FD: net/minecraft/client/model/WardenModel/f_233497_ net/minecraft/client/model/WardenModel/leftTendril +FD: net/minecraft/client/model/WardenModel/f_233498_ net/minecraft/client/model/WardenModel/leftLeg +FD: net/minecraft/client/model/WardenModel/f_233499_ net/minecraft/client/model/WardenModel/leftArm +FD: net/minecraft/client/model/WardenModel/f_233500_ net/minecraft/client/model/WardenModel/leftRibcage +FD: net/minecraft/client/model/WardenModel/f_233501_ net/minecraft/client/model/WardenModel/rightArm +FD: net/minecraft/client/model/WardenModel/f_233502_ net/minecraft/client/model/WardenModel/rightLeg +FD: net/minecraft/client/model/WardenModel/f_233503_ net/minecraft/client/model/WardenModel/rightRibcage +FD: net/minecraft/client/model/WardenModel/f_233504_ net/minecraft/client/model/WardenModel/DEFAULT_ARM_X_Y +FD: net/minecraft/client/model/WardenModel/f_233505_ net/minecraft/client/model/WardenModel/DEFAULT_ARM_Z +FD: net/minecraft/client/model/WardenModel/f_233506_ net/minecraft/client/model/WardenModel/root +FD: net/minecraft/client/model/WardenModel/f_233507_ net/minecraft/client/model/WardenModel/tendrilsLayerModelParts +FD: net/minecraft/client/model/WardenModel/f_233508_ net/minecraft/client/model/WardenModel/heartLayerModelParts +FD: net/minecraft/client/model/WardenModel/f_233509_ net/minecraft/client/model/WardenModel/bioluminescentLayerModelParts +FD: net/minecraft/client/model/WardenModel/f_233510_ net/minecraft/client/model/WardenModel/pulsatingSpotsLayerModelParts +FD: net/minecraft/client/model/WitchModel/f_104062_ net/minecraft/client/model/WitchModel/holdingItem +FD: net/minecraft/client/model/WitherBossModel/f_171057_ net/minecraft/client/model/WitherBossModel/RIBCAGE +FD: net/minecraft/client/model/WitherBossModel/f_171058_ net/minecraft/client/model/WitherBossModel/CENTER_HEAD +FD: net/minecraft/client/model/WitherBossModel/f_171059_ net/minecraft/client/model/WitherBossModel/RIGHT_HEAD +FD: net/minecraft/client/model/WitherBossModel/f_171060_ net/minecraft/client/model/WitherBossModel/LEFT_HEAD +FD: net/minecraft/client/model/WitherBossModel/f_171061_ net/minecraft/client/model/WitherBossModel/RIBCAGE_X_ROT_OFFSET +FD: net/minecraft/client/model/WitherBossModel/f_171062_ net/minecraft/client/model/WitherBossModel/TAIL_X_ROT_OFFSET +FD: net/minecraft/client/model/WitherBossModel/f_171063_ net/minecraft/client/model/WitherBossModel/root +FD: net/minecraft/client/model/WitherBossModel/f_171064_ net/minecraft/client/model/WitherBossModel/centerHead +FD: net/minecraft/client/model/WitherBossModel/f_171065_ net/minecraft/client/model/WitherBossModel/rightHead +FD: net/minecraft/client/model/WitherBossModel/f_171066_ net/minecraft/client/model/WitherBossModel/leftHead +FD: net/minecraft/client/model/WitherBossModel/f_171067_ net/minecraft/client/model/WitherBossModel/ribcage +FD: net/minecraft/client/model/WitherBossModel/f_171068_ net/minecraft/client/model/WitherBossModel/tail +FD: net/minecraft/client/model/WolfModel/f_104107_ net/minecraft/client/model/WolfModel/head +FD: net/minecraft/client/model/WolfModel/f_104108_ net/minecraft/client/model/WolfModel/realHead +FD: net/minecraft/client/model/WolfModel/f_104109_ net/minecraft/client/model/WolfModel/body +FD: net/minecraft/client/model/WolfModel/f_104114_ net/minecraft/client/model/WolfModel/tail +FD: net/minecraft/client/model/WolfModel/f_104115_ net/minecraft/client/model/WolfModel/realTail +FD: net/minecraft/client/model/WolfModel/f_104116_ net/minecraft/client/model/WolfModel/upperBody +FD: net/minecraft/client/model/WolfModel/f_171078_ net/minecraft/client/model/WolfModel/REAL_HEAD +FD: net/minecraft/client/model/WolfModel/f_171079_ net/minecraft/client/model/WolfModel/UPPER_BODY +FD: net/minecraft/client/model/WolfModel/f_171080_ net/minecraft/client/model/WolfModel/REAL_TAIL +FD: net/minecraft/client/model/WolfModel/f_171081_ net/minecraft/client/model/WolfModel/rightHindLeg +FD: net/minecraft/client/model/WolfModel/f_171082_ net/minecraft/client/model/WolfModel/leftHindLeg +FD: net/minecraft/client/model/WolfModel/f_171083_ net/minecraft/client/model/WolfModel/rightFrontLeg +FD: net/minecraft/client/model/WolfModel/f_171084_ net/minecraft/client/model/WolfModel/leftFrontLeg +FD: net/minecraft/client/model/WolfModel/f_171085_ net/minecraft/client/model/WolfModel/LEG_SIZE +FD: net/minecraft/client/model/ZombieVillagerModel/f_104156_ net/minecraft/client/model/ZombieVillagerModel/hatRim +FD: net/minecraft/client/model/dragon/DragonHeadModel/f_104183_ net/minecraft/client/model/dragon/DragonHeadModel/head +FD: net/minecraft/client/model/dragon/DragonHeadModel/f_104184_ net/minecraft/client/model/dragon/DragonHeadModel/jaw +FD: net/minecraft/client/model/geom/EntityModelSet/f_171099_ net/minecraft/client/model/geom/EntityModelSet/roots +FD: net/minecraft/client/model/geom/LayerDefinitions/f_171105_ net/minecraft/client/model/geom/LayerDefinitions/FISH_PATTERN_DEFORMATION +FD: net/minecraft/client/model/geom/LayerDefinitions/f_171106_ net/minecraft/client/model/geom/LayerDefinitions/OUTER_ARMOR_DEFORMATION +FD: net/minecraft/client/model/geom/LayerDefinitions/f_171107_ net/minecraft/client/model/geom/LayerDefinitions/INNER_ARMOR_DEFORMATION +FD: net/minecraft/client/model/geom/ModelLayerLocation/f_171118_ net/minecraft/client/model/geom/ModelLayerLocation/model +FD: net/minecraft/client/model/geom/ModelLayerLocation/f_171119_ net/minecraft/client/model/geom/ModelLayerLocation/layer +FD: net/minecraft/client/model/geom/ModelLayers/f_171129_ net/minecraft/client/model/geom/ModelLayers/CREEPER_ARMOR +FD: net/minecraft/client/model/geom/ModelLayers/f_171130_ net/minecraft/client/model/geom/ModelLayers/CREEPER_HEAD +FD: net/minecraft/client/model/geom/ModelLayers/f_171131_ net/minecraft/client/model/geom/ModelLayers/DOLPHIN +FD: net/minecraft/client/model/geom/ModelLayers/f_171132_ net/minecraft/client/model/geom/ModelLayers/DONKEY +FD: net/minecraft/client/model/geom/ModelLayers/f_171133_ net/minecraft/client/model/geom/ModelLayers/DOUBLE_CHEST_LEFT +FD: net/minecraft/client/model/geom/ModelLayers/f_171134_ net/minecraft/client/model/geom/ModelLayers/DOUBLE_CHEST_RIGHT +FD: net/minecraft/client/model/geom/ModelLayers/f_171135_ net/minecraft/client/model/geom/ModelLayers/DRAGON_SKULL +FD: net/minecraft/client/model/geom/ModelLayers/f_171136_ net/minecraft/client/model/geom/ModelLayers/DROWNED +FD: net/minecraft/client/model/geom/ModelLayers/f_171137_ net/minecraft/client/model/geom/ModelLayers/DROWNED_INNER_ARMOR +FD: net/minecraft/client/model/geom/ModelLayers/f_171138_ net/minecraft/client/model/geom/ModelLayers/DROWNED_OUTER_ARMOR +FD: net/minecraft/client/model/geom/ModelLayers/f_171139_ net/minecraft/client/model/geom/ModelLayers/DROWNED_OUTER_LAYER +FD: net/minecraft/client/model/geom/ModelLayers/f_171140_ net/minecraft/client/model/geom/ModelLayers/ELDER_GUARDIAN +FD: net/minecraft/client/model/geom/ModelLayers/f_171141_ net/minecraft/client/model/geom/ModelLayers/ELYTRA +FD: net/minecraft/client/model/geom/ModelLayers/f_171142_ net/minecraft/client/model/geom/ModelLayers/ENDERMAN +FD: net/minecraft/client/model/geom/ModelLayers/f_171143_ net/minecraft/client/model/geom/ModelLayers/ENDERMITE +FD: net/minecraft/client/model/geom/ModelLayers/f_171144_ net/minecraft/client/model/geom/ModelLayers/ENDER_DRAGON +FD: net/minecraft/client/model/geom/ModelLayers/f_171145_ net/minecraft/client/model/geom/ModelLayers/END_CRYSTAL +FD: net/minecraft/client/model/geom/ModelLayers/f_171146_ net/minecraft/client/model/geom/ModelLayers/EVOKER +FD: net/minecraft/client/model/geom/ModelLayers/f_171147_ net/minecraft/client/model/geom/ModelLayers/EVOKER_FANGS +FD: net/minecraft/client/model/geom/ModelLayers/f_171148_ net/minecraft/client/model/geom/ModelLayers/FOX +FD: net/minecraft/client/model/geom/ModelLayers/f_171149_ net/minecraft/client/model/geom/ModelLayers/FURNACE_MINECART +FD: net/minecraft/client/model/geom/ModelLayers/f_171150_ net/minecraft/client/model/geom/ModelLayers/GHAST +FD: net/minecraft/client/model/geom/ModelLayers/f_171151_ net/minecraft/client/model/geom/ModelLayers/GIANT +FD: net/minecraft/client/model/geom/ModelLayers/f_171152_ net/minecraft/client/model/geom/ModelLayers/GIANT_INNER_ARMOR +FD: net/minecraft/client/model/geom/ModelLayers/f_171153_ net/minecraft/client/model/geom/ModelLayers/GIANT_OUTER_ARMOR +FD: net/minecraft/client/model/geom/ModelLayers/f_171154_ net/minecraft/client/model/geom/ModelLayers/GLOW_SQUID +FD: net/minecraft/client/model/geom/ModelLayers/f_171155_ net/minecraft/client/model/geom/ModelLayers/ARMOR_STAND +FD: net/minecraft/client/model/geom/ModelLayers/f_171156_ net/minecraft/client/model/geom/ModelLayers/PIGLIN_BRUTE_INNER_ARMOR +FD: net/minecraft/client/model/geom/ModelLayers/f_171157_ net/minecraft/client/model/geom/ModelLayers/PIGLIN_BRUTE_OUTER_ARMOR +FD: net/minecraft/client/model/geom/ModelLayers/f_171158_ net/minecraft/client/model/geom/ModelLayers/PIGLIN_INNER_ARMOR +FD: net/minecraft/client/model/geom/ModelLayers/f_171159_ net/minecraft/client/model/geom/ModelLayers/PIGLIN_OUTER_ARMOR +FD: net/minecraft/client/model/geom/ModelLayers/f_171160_ net/minecraft/client/model/geom/ModelLayers/PIG_SADDLE +FD: net/minecraft/client/model/geom/ModelLayers/f_171161_ net/minecraft/client/model/geom/ModelLayers/PILLAGER +FD: net/minecraft/client/model/geom/ModelLayers/f_171162_ net/minecraft/client/model/geom/ModelLayers/PLAYER +FD: net/minecraft/client/model/geom/ModelLayers/f_171163_ net/minecraft/client/model/geom/ModelLayers/PLAYER_HEAD +FD: net/minecraft/client/model/geom/ModelLayers/f_171164_ net/minecraft/client/model/geom/ModelLayers/PLAYER_INNER_ARMOR +FD: net/minecraft/client/model/geom/ModelLayers/f_171165_ net/minecraft/client/model/geom/ModelLayers/PLAYER_OUTER_ARMOR +FD: net/minecraft/client/model/geom/ModelLayers/f_171166_ net/minecraft/client/model/geom/ModelLayers/PLAYER_SLIM +FD: net/minecraft/client/model/geom/ModelLayers/f_171167_ net/minecraft/client/model/geom/ModelLayers/PLAYER_SLIM_INNER_ARMOR +FD: net/minecraft/client/model/geom/ModelLayers/f_171168_ net/minecraft/client/model/geom/ModelLayers/PLAYER_SLIM_OUTER_ARMOR +FD: net/minecraft/client/model/geom/ModelLayers/f_171169_ net/minecraft/client/model/geom/ModelLayers/PLAYER_SPIN_ATTACK +FD: net/minecraft/client/model/geom/ModelLayers/f_171170_ net/minecraft/client/model/geom/ModelLayers/POLAR_BEAR +FD: net/minecraft/client/model/geom/ModelLayers/f_171171_ net/minecraft/client/model/geom/ModelLayers/PUFFERFISH_BIG +FD: net/minecraft/client/model/geom/ModelLayers/f_171172_ net/minecraft/client/model/geom/ModelLayers/PUFFERFISH_MEDIUM +FD: net/minecraft/client/model/geom/ModelLayers/f_171173_ net/minecraft/client/model/geom/ModelLayers/PUFFERFISH_SMALL +FD: net/minecraft/client/model/geom/ModelLayers/f_171174_ net/minecraft/client/model/geom/ModelLayers/RABBIT +FD: net/minecraft/client/model/geom/ModelLayers/f_171175_ net/minecraft/client/model/geom/ModelLayers/RAVAGER +FD: net/minecraft/client/model/geom/ModelLayers/f_171176_ net/minecraft/client/model/geom/ModelLayers/SALMON +FD: net/minecraft/client/model/geom/ModelLayers/f_171177_ net/minecraft/client/model/geom/ModelLayers/SHEEP +FD: net/minecraft/client/model/geom/ModelLayers/f_171178_ net/minecraft/client/model/geom/ModelLayers/SHEEP_FUR +FD: net/minecraft/client/model/geom/ModelLayers/f_171179_ net/minecraft/client/model/geom/ModelLayers/SHIELD +FD: net/minecraft/client/model/geom/ModelLayers/f_171180_ net/minecraft/client/model/geom/ModelLayers/SHULKER +FD: net/minecraft/client/model/geom/ModelLayers/f_171181_ net/minecraft/client/model/geom/ModelLayers/SHULKER_BULLET +FD: net/minecraft/client/model/geom/ModelLayers/f_171182_ net/minecraft/client/model/geom/ModelLayers/GOAT +FD: net/minecraft/client/model/geom/ModelLayers/f_171183_ net/minecraft/client/model/geom/ModelLayers/GUARDIAN +FD: net/minecraft/client/model/geom/ModelLayers/f_171184_ net/minecraft/client/model/geom/ModelLayers/HOGLIN +FD: net/minecraft/client/model/geom/ModelLayers/f_171185_ net/minecraft/client/model/geom/ModelLayers/HOPPER_MINECART +FD: net/minecraft/client/model/geom/ModelLayers/f_171186_ net/minecraft/client/model/geom/ModelLayers/HORSE +FD: net/minecraft/client/model/geom/ModelLayers/f_171187_ net/minecraft/client/model/geom/ModelLayers/HORSE_ARMOR +FD: net/minecraft/client/model/geom/ModelLayers/f_171188_ net/minecraft/client/model/geom/ModelLayers/HUSK +FD: net/minecraft/client/model/geom/ModelLayers/f_171189_ net/minecraft/client/model/geom/ModelLayers/HUSK_INNER_ARMOR +FD: net/minecraft/client/model/geom/ModelLayers/f_171190_ net/minecraft/client/model/geom/ModelLayers/HUSK_OUTER_ARMOR +FD: net/minecraft/client/model/geom/ModelLayers/f_171191_ net/minecraft/client/model/geom/ModelLayers/ILLUSIONER +FD: net/minecraft/client/model/geom/ModelLayers/f_171192_ net/minecraft/client/model/geom/ModelLayers/IRON_GOLEM +FD: net/minecraft/client/model/geom/ModelLayers/f_171193_ net/minecraft/client/model/geom/ModelLayers/LEASH_KNOT +FD: net/minecraft/client/model/geom/ModelLayers/f_171194_ net/minecraft/client/model/geom/ModelLayers/LLAMA +FD: net/minecraft/client/model/geom/ModelLayers/f_171195_ net/minecraft/client/model/geom/ModelLayers/LLAMA_DECOR +FD: net/minecraft/client/model/geom/ModelLayers/f_171196_ net/minecraft/client/model/geom/ModelLayers/LLAMA_SPIT +FD: net/minecraft/client/model/geom/ModelLayers/f_171197_ net/minecraft/client/model/geom/ModelLayers/MAGMA_CUBE +FD: net/minecraft/client/model/geom/ModelLayers/f_171198_ net/minecraft/client/model/geom/ModelLayers/MINECART +FD: net/minecraft/client/model/geom/ModelLayers/f_171199_ net/minecraft/client/model/geom/ModelLayers/MOOSHROOM +FD: net/minecraft/client/model/geom/ModelLayers/f_171200_ net/minecraft/client/model/geom/ModelLayers/MULE +FD: net/minecraft/client/model/geom/ModelLayers/f_171201_ net/minecraft/client/model/geom/ModelLayers/OCELOT +FD: net/minecraft/client/model/geom/ModelLayers/f_171202_ net/minecraft/client/model/geom/ModelLayers/PANDA +FD: net/minecraft/client/model/geom/ModelLayers/f_171203_ net/minecraft/client/model/geom/ModelLayers/PARROT +FD: net/minecraft/client/model/geom/ModelLayers/f_171204_ net/minecraft/client/model/geom/ModelLayers/PHANTOM +FD: net/minecraft/client/model/geom/ModelLayers/f_171205_ net/minecraft/client/model/geom/ModelLayers/PIG +FD: net/minecraft/client/model/geom/ModelLayers/f_171206_ net/minecraft/client/model/geom/ModelLayers/PIGLIN +FD: net/minecraft/client/model/geom/ModelLayers/f_171207_ net/minecraft/client/model/geom/ModelLayers/PIGLIN_BRUTE +FD: net/minecraft/client/model/geom/ModelLayers/f_171208_ net/minecraft/client/model/geom/ModelLayers/ARMOR_STAND_INNER_ARMOR +FD: net/minecraft/client/model/geom/ModelLayers/f_171209_ net/minecraft/client/model/geom/ModelLayers/VEX +FD: net/minecraft/client/model/geom/ModelLayers/f_171210_ net/minecraft/client/model/geom/ModelLayers/VILLAGER +FD: net/minecraft/client/model/geom/ModelLayers/f_171211_ net/minecraft/client/model/geom/ModelLayers/VINDICATOR +FD: net/minecraft/client/model/geom/ModelLayers/f_171212_ net/minecraft/client/model/geom/ModelLayers/WANDERING_TRADER +FD: net/minecraft/client/model/geom/ModelLayers/f_171213_ net/minecraft/client/model/geom/ModelLayers/WITCH +FD: net/minecraft/client/model/geom/ModelLayers/f_171214_ net/minecraft/client/model/geom/ModelLayers/WITHER +FD: net/minecraft/client/model/geom/ModelLayers/f_171215_ net/minecraft/client/model/geom/ModelLayers/WITHER_ARMOR +FD: net/minecraft/client/model/geom/ModelLayers/f_171216_ net/minecraft/client/model/geom/ModelLayers/WITHER_SKELETON +FD: net/minecraft/client/model/geom/ModelLayers/f_171217_ net/minecraft/client/model/geom/ModelLayers/WITHER_SKELETON_INNER_ARMOR +FD: net/minecraft/client/model/geom/ModelLayers/f_171218_ net/minecraft/client/model/geom/ModelLayers/WITHER_SKELETON_OUTER_ARMOR +FD: net/minecraft/client/model/geom/ModelLayers/f_171219_ net/minecraft/client/model/geom/ModelLayers/WITHER_SKELETON_SKULL +FD: net/minecraft/client/model/geom/ModelLayers/f_171220_ net/minecraft/client/model/geom/ModelLayers/WITHER_SKULL +FD: net/minecraft/client/model/geom/ModelLayers/f_171221_ net/minecraft/client/model/geom/ModelLayers/WOLF +FD: net/minecraft/client/model/geom/ModelLayers/f_171222_ net/minecraft/client/model/geom/ModelLayers/ZOGLIN +FD: net/minecraft/client/model/geom/ModelLayers/f_171223_ net/minecraft/client/model/geom/ModelLayers/ZOMBIE +FD: net/minecraft/client/model/geom/ModelLayers/f_171224_ net/minecraft/client/model/geom/ModelLayers/ZOMBIE_HEAD +FD: net/minecraft/client/model/geom/ModelLayers/f_171225_ net/minecraft/client/model/geom/ModelLayers/ZOMBIE_HORSE +FD: net/minecraft/client/model/geom/ModelLayers/f_171226_ net/minecraft/client/model/geom/ModelLayers/ZOMBIE_INNER_ARMOR +FD: net/minecraft/client/model/geom/ModelLayers/f_171227_ net/minecraft/client/model/geom/ModelLayers/ZOMBIE_OUTER_ARMOR +FD: net/minecraft/client/model/geom/ModelLayers/f_171228_ net/minecraft/client/model/geom/ModelLayers/ZOMBIE_VILLAGER +FD: net/minecraft/client/model/geom/ModelLayers/f_171229_ net/minecraft/client/model/geom/ModelLayers/ZOMBIE_VILLAGER_INNER_ARMOR +FD: net/minecraft/client/model/geom/ModelLayers/f_171230_ net/minecraft/client/model/geom/ModelLayers/ZOMBIE_VILLAGER_OUTER_ARMOR +FD: net/minecraft/client/model/geom/ModelLayers/f_171231_ net/minecraft/client/model/geom/ModelLayers/ZOMBIFIED_PIGLIN +FD: net/minecraft/client/model/geom/ModelLayers/f_171232_ net/minecraft/client/model/geom/ModelLayers/ZOMBIFIED_PIGLIN_INNER_ARMOR +FD: net/minecraft/client/model/geom/ModelLayers/f_171233_ net/minecraft/client/model/geom/ModelLayers/ZOMBIFIED_PIGLIN_OUTER_ARMOR +FD: net/minecraft/client/model/geom/ModelLayers/f_171234_ net/minecraft/client/model/geom/ModelLayers/DEFAULT_LAYER +FD: net/minecraft/client/model/geom/ModelLayers/f_171235_ net/minecraft/client/model/geom/ModelLayers/SILVERFISH +FD: net/minecraft/client/model/geom/ModelLayers/f_171236_ net/minecraft/client/model/geom/ModelLayers/SKELETON +FD: net/minecraft/client/model/geom/ModelLayers/f_171237_ net/minecraft/client/model/geom/ModelLayers/SKELETON_HORSE +FD: net/minecraft/client/model/geom/ModelLayers/f_171238_ net/minecraft/client/model/geom/ModelLayers/SKELETON_INNER_ARMOR +FD: net/minecraft/client/model/geom/ModelLayers/f_171239_ net/minecraft/client/model/geom/ModelLayers/SKELETON_OUTER_ARMOR +FD: net/minecraft/client/model/geom/ModelLayers/f_171240_ net/minecraft/client/model/geom/ModelLayers/SKELETON_SKULL +FD: net/minecraft/client/model/geom/ModelLayers/f_171241_ net/minecraft/client/model/geom/ModelLayers/SLIME +FD: net/minecraft/client/model/geom/ModelLayers/f_171242_ net/minecraft/client/model/geom/ModelLayers/SLIME_OUTER +FD: net/minecraft/client/model/geom/ModelLayers/f_171243_ net/minecraft/client/model/geom/ModelLayers/SNOW_GOLEM +FD: net/minecraft/client/model/geom/ModelLayers/f_171244_ net/minecraft/client/model/geom/ModelLayers/SPAWNER_MINECART +FD: net/minecraft/client/model/geom/ModelLayers/f_171245_ net/minecraft/client/model/geom/ModelLayers/SPIDER +FD: net/minecraft/client/model/geom/ModelLayers/f_171246_ net/minecraft/client/model/geom/ModelLayers/SQUID +FD: net/minecraft/client/model/geom/ModelLayers/f_171247_ net/minecraft/client/model/geom/ModelLayers/STRAY +FD: net/minecraft/client/model/geom/ModelLayers/f_171248_ net/minecraft/client/model/geom/ModelLayers/STRAY_INNER_ARMOR +FD: net/minecraft/client/model/geom/ModelLayers/f_171249_ net/minecraft/client/model/geom/ModelLayers/STRAY_OUTER_ARMOR +FD: net/minecraft/client/model/geom/ModelLayers/f_171250_ net/minecraft/client/model/geom/ModelLayers/STRAY_OUTER_LAYER +FD: net/minecraft/client/model/geom/ModelLayers/f_171251_ net/minecraft/client/model/geom/ModelLayers/STRIDER +FD: net/minecraft/client/model/geom/ModelLayers/f_171252_ net/minecraft/client/model/geom/ModelLayers/STRIDER_SADDLE +FD: net/minecraft/client/model/geom/ModelLayers/f_171253_ net/minecraft/client/model/geom/ModelLayers/TNT_MINECART +FD: net/minecraft/client/model/geom/ModelLayers/f_171254_ net/minecraft/client/model/geom/ModelLayers/TRADER_LLAMA +FD: net/minecraft/client/model/geom/ModelLayers/f_171255_ net/minecraft/client/model/geom/ModelLayers/TRIDENT +FD: net/minecraft/client/model/geom/ModelLayers/f_171256_ net/minecraft/client/model/geom/ModelLayers/TROPICAL_FISH_LARGE +FD: net/minecraft/client/model/geom/ModelLayers/f_171257_ net/minecraft/client/model/geom/ModelLayers/TROPICAL_FISH_LARGE_PATTERN +FD: net/minecraft/client/model/geom/ModelLayers/f_171258_ net/minecraft/client/model/geom/ModelLayers/TROPICAL_FISH_SMALL +FD: net/minecraft/client/model/geom/ModelLayers/f_171259_ net/minecraft/client/model/geom/ModelLayers/TROPICAL_FISH_SMALL_PATTERN +FD: net/minecraft/client/model/geom/ModelLayers/f_171260_ net/minecraft/client/model/geom/ModelLayers/TURTLE +FD: net/minecraft/client/model/geom/ModelLayers/f_171261_ net/minecraft/client/model/geom/ModelLayers/ARMOR_STAND_OUTER_ARMOR +FD: net/minecraft/client/model/geom/ModelLayers/f_171262_ net/minecraft/client/model/geom/ModelLayers/ALL_MODELS +FD: net/minecraft/client/model/geom/ModelLayers/f_171263_ net/minecraft/client/model/geom/ModelLayers/AXOLOTL +FD: net/minecraft/client/model/geom/ModelLayers/f_171264_ net/minecraft/client/model/geom/ModelLayers/BANNER +FD: net/minecraft/client/model/geom/ModelLayers/f_171265_ net/minecraft/client/model/geom/ModelLayers/BAT +FD: net/minecraft/client/model/geom/ModelLayers/f_171266_ net/minecraft/client/model/geom/ModelLayers/BED_FOOT +FD: net/minecraft/client/model/geom/ModelLayers/f_171267_ net/minecraft/client/model/geom/ModelLayers/BED_HEAD +FD: net/minecraft/client/model/geom/ModelLayers/f_171268_ net/minecraft/client/model/geom/ModelLayers/BEE +FD: net/minecraft/client/model/geom/ModelLayers/f_171269_ net/minecraft/client/model/geom/ModelLayers/BELL +FD: net/minecraft/client/model/geom/ModelLayers/f_171270_ net/minecraft/client/model/geom/ModelLayers/BLAZE +FD: net/minecraft/client/model/geom/ModelLayers/f_171271_ net/minecraft/client/model/geom/ModelLayers/BOOK +FD: net/minecraft/client/model/geom/ModelLayers/f_171272_ net/minecraft/client/model/geom/ModelLayers/CAT +FD: net/minecraft/client/model/geom/ModelLayers/f_171273_ net/minecraft/client/model/geom/ModelLayers/CAT_COLLAR +FD: net/minecraft/client/model/geom/ModelLayers/f_171274_ net/minecraft/client/model/geom/ModelLayers/CAVE_SPIDER +FD: net/minecraft/client/model/geom/ModelLayers/f_171275_ net/minecraft/client/model/geom/ModelLayers/CHEST +FD: net/minecraft/client/model/geom/ModelLayers/f_171276_ net/minecraft/client/model/geom/ModelLayers/CHEST_MINECART +FD: net/minecraft/client/model/geom/ModelLayers/f_171277_ net/minecraft/client/model/geom/ModelLayers/CHICKEN +FD: net/minecraft/client/model/geom/ModelLayers/f_171278_ net/minecraft/client/model/geom/ModelLayers/COD +FD: net/minecraft/client/model/geom/ModelLayers/f_171279_ net/minecraft/client/model/geom/ModelLayers/COMMAND_BLOCK_MINECART +FD: net/minecraft/client/model/geom/ModelLayers/f_171280_ net/minecraft/client/model/geom/ModelLayers/CONDUIT_CAGE +FD: net/minecraft/client/model/geom/ModelLayers/f_171281_ net/minecraft/client/model/geom/ModelLayers/CONDUIT_EYE +FD: net/minecraft/client/model/geom/ModelLayers/f_171282_ net/minecraft/client/model/geom/ModelLayers/CONDUIT_SHELL +FD: net/minecraft/client/model/geom/ModelLayers/f_171283_ net/minecraft/client/model/geom/ModelLayers/CONDUIT_WIND +FD: net/minecraft/client/model/geom/ModelLayers/f_171284_ net/minecraft/client/model/geom/ModelLayers/COW +FD: net/minecraft/client/model/geom/ModelLayers/f_171285_ net/minecraft/client/model/geom/ModelLayers/CREEPER +FD: net/minecraft/client/model/geom/ModelLayers/f_233546_ net/minecraft/client/model/geom/ModelLayers/FROG +FD: net/minecraft/client/model/geom/ModelLayers/f_233547_ net/minecraft/client/model/geom/ModelLayers/ALLAY +FD: net/minecraft/client/model/geom/ModelLayers/f_233548_ net/minecraft/client/model/geom/ModelLayers/WARDEN +FD: net/minecraft/client/model/geom/ModelLayers/f_233549_ net/minecraft/client/model/geom/ModelLayers/TADPOLE +FD: net/minecraft/client/model/geom/ModelLayers/f_244030_ net/minecraft/client/model/geom/ModelLayers/CAMEL +FD: net/minecraft/client/model/geom/ModelLayers/f_260668_ net/minecraft/client/model/geom/ModelLayers/PIGLIN_HEAD +FD: net/minecraft/client/model/geom/ModelLayers/f_271216_ net/minecraft/client/model/geom/ModelLayers/DECORATED_POT_SIDES +FD: net/minecraft/client/model/geom/ModelLayers/f_271426_ net/minecraft/client/model/geom/ModelLayers/DECORATED_POT_BASE +FD: net/minecraft/client/model/geom/ModelLayers/f_271465_ net/minecraft/client/model/geom/ModelLayers/SNIFFER +FD: net/minecraft/client/model/geom/ModelPart/f_104200_ net/minecraft/client/model/geom/ModelPart/x +FD: net/minecraft/client/model/geom/ModelPart/f_104201_ net/minecraft/client/model/geom/ModelPart/y +FD: net/minecraft/client/model/geom/ModelPart/f_104202_ net/minecraft/client/model/geom/ModelPart/z +FD: net/minecraft/client/model/geom/ModelPart/f_104203_ net/minecraft/client/model/geom/ModelPart/xRot +FD: net/minecraft/client/model/geom/ModelPart/f_104204_ net/minecraft/client/model/geom/ModelPart/yRot +FD: net/minecraft/client/model/geom/ModelPart/f_104205_ net/minecraft/client/model/geom/ModelPart/zRot +FD: net/minecraft/client/model/geom/ModelPart/f_104207_ net/minecraft/client/model/geom/ModelPart/visible +FD: net/minecraft/client/model/geom/ModelPart/f_104212_ net/minecraft/client/model/geom/ModelPart/cubes +FD: net/minecraft/client/model/geom/ModelPart/f_104213_ net/minecraft/client/model/geom/ModelPart/children +FD: net/minecraft/client/model/geom/ModelPart/f_233552_ net/minecraft/client/model/geom/ModelPart/DEFAULT_SCALE +FD: net/minecraft/client/model/geom/ModelPart/f_233553_ net/minecraft/client/model/geom/ModelPart/xScale +FD: net/minecraft/client/model/geom/ModelPart/f_233554_ net/minecraft/client/model/geom/ModelPart/yScale +FD: net/minecraft/client/model/geom/ModelPart/f_233555_ net/minecraft/client/model/geom/ModelPart/zScale +FD: net/minecraft/client/model/geom/ModelPart/f_233556_ net/minecraft/client/model/geom/ModelPart/skipDraw +FD: net/minecraft/client/model/geom/ModelPart/f_233557_ net/minecraft/client/model/geom/ModelPart/initialPose +FD: net/minecraft/client/model/geom/ModelPart$Cube/f_104335_ net/minecraft/client/model/geom/ModelPart$Cube/minX +FD: net/minecraft/client/model/geom/ModelPart$Cube/f_104336_ net/minecraft/client/model/geom/ModelPart$Cube/minY +FD: net/minecraft/client/model/geom/ModelPart$Cube/f_104337_ net/minecraft/client/model/geom/ModelPart$Cube/minZ +FD: net/minecraft/client/model/geom/ModelPart$Cube/f_104338_ net/minecraft/client/model/geom/ModelPart$Cube/maxX +FD: net/minecraft/client/model/geom/ModelPart$Cube/f_104339_ net/minecraft/client/model/geom/ModelPart$Cube/maxY +FD: net/minecraft/client/model/geom/ModelPart$Cube/f_104340_ net/minecraft/client/model/geom/ModelPart$Cube/maxZ +FD: net/minecraft/client/model/geom/ModelPart$Cube/f_104341_ net/minecraft/client/model/geom/ModelPart$Cube/polygons +FD: net/minecraft/client/model/geom/ModelPart$Polygon/f_104359_ net/minecraft/client/model/geom/ModelPart$Polygon/vertices +FD: net/minecraft/client/model/geom/ModelPart$Polygon/f_104360_ net/minecraft/client/model/geom/ModelPart$Polygon/normal +FD: net/minecraft/client/model/geom/ModelPart$Vertex/f_104371_ net/minecraft/client/model/geom/ModelPart$Vertex/pos +FD: net/minecraft/client/model/geom/ModelPart$Vertex/f_104372_ net/minecraft/client/model/geom/ModelPart$Vertex/u +FD: net/minecraft/client/model/geom/ModelPart$Vertex/f_104373_ net/minecraft/client/model/geom/ModelPart$Vertex/v +FD: net/minecraft/client/model/geom/PartNames/f_171346_ net/minecraft/client/model/geom/PartNames/RIGHT_FRONT_FOOT +FD: net/minecraft/client/model/geom/PartNames/f_171347_ net/minecraft/client/model/geom/PartNames/LEFT_HIND_LEG_TIP +FD: net/minecraft/client/model/geom/PartNames/f_171348_ net/minecraft/client/model/geom/PartNames/RIGHT_HIND_LEG_TIP +FD: net/minecraft/client/model/geom/PartNames/f_171349_ net/minecraft/client/model/geom/PartNames/LEFT_FRONT_LEG_TIP +FD: net/minecraft/client/model/geom/PartNames/f_171350_ net/minecraft/client/model/geom/PartNames/RIGHT_FRONT_LEG_TIP +FD: net/minecraft/client/model/geom/PartNames/f_171351_ net/minecraft/client/model/geom/PartNames/LEFT_LID +FD: net/minecraft/client/model/geom/PartNames/f_171352_ net/minecraft/client/model/geom/PartNames/RIGHT_LID +FD: net/minecraft/client/model/geom/PartNames/f_171353_ net/minecraft/client/model/geom/PartNames/LEFT_CHEST +FD: net/minecraft/client/model/geom/PartNames/f_171354_ net/minecraft/client/model/geom/PartNames/RIGHT_CHEST +FD: net/minecraft/client/model/geom/PartNames/f_171355_ net/minecraft/client/model/geom/PartNames/LEFT_HORN +FD: net/minecraft/client/model/geom/PartNames/f_171356_ net/minecraft/client/model/geom/PartNames/RIGHT_HORN +FD: net/minecraft/client/model/geom/PartNames/f_171357_ net/minecraft/client/model/geom/PartNames/LEFT_EYE +FD: net/minecraft/client/model/geom/PartNames/f_171358_ net/minecraft/client/model/geom/PartNames/RIGHT_EYE +FD: net/minecraft/client/model/geom/PartNames/f_171359_ net/minecraft/client/model/geom/PartNames/JAW +FD: net/minecraft/client/model/geom/PartNames/f_171360_ net/minecraft/client/model/geom/PartNames/NOSE +FD: net/minecraft/client/model/geom/PartNames/f_171361_ net/minecraft/client/model/geom/PartNames/ARMS +FD: net/minecraft/client/model/geom/PartNames/f_171362_ net/minecraft/client/model/geom/PartNames/TAIL +FD: net/minecraft/client/model/geom/PartNames/f_171363_ net/minecraft/client/model/geom/PartNames/CUBE +FD: net/minecraft/client/model/geom/PartNames/f_171364_ net/minecraft/client/model/geom/PartNames/BEAK +FD: net/minecraft/client/model/geom/PartNames/f_171365_ net/minecraft/client/model/geom/PartNames/BACK_FIN +FD: net/minecraft/client/model/geom/PartNames/f_171366_ net/minecraft/client/model/geom/PartNames/MANE +FD: net/minecraft/client/model/geom/PartNames/f_171367_ net/minecraft/client/model/geom/PartNames/NECK +FD: net/minecraft/client/model/geom/PartNames/f_171368_ net/minecraft/client/model/geom/PartNames/MOUTH +FD: net/minecraft/client/model/geom/PartNames/f_171369_ net/minecraft/client/model/geom/PartNames/HEAD +FD: net/minecraft/client/model/geom/PartNames/f_171370_ net/minecraft/client/model/geom/PartNames/HAT +FD: net/minecraft/client/model/geom/PartNames/f_171371_ net/minecraft/client/model/geom/PartNames/BODY +FD: net/minecraft/client/model/geom/PartNames/f_171372_ net/minecraft/client/model/geom/PartNames/LEFT_FIN +FD: net/minecraft/client/model/geom/PartNames/f_171373_ net/minecraft/client/model/geom/PartNames/HAT_RIM +FD: net/minecraft/client/model/geom/PartNames/f_171374_ net/minecraft/client/model/geom/PartNames/JACKET +FD: net/minecraft/client/model/geom/PartNames/f_171375_ net/minecraft/client/model/geom/PartNames/TOP_GILLS +FD: net/minecraft/client/model/geom/PartNames/f_171376_ net/minecraft/client/model/geom/PartNames/LEFT_GILLS +FD: net/minecraft/client/model/geom/PartNames/f_171377_ net/minecraft/client/model/geom/PartNames/RIGHT_GILLS +FD: net/minecraft/client/model/geom/PartNames/f_171378_ net/minecraft/client/model/geom/PartNames/RIGHT_FIN +FD: net/minecraft/client/model/geom/PartNames/f_171379_ net/minecraft/client/model/geom/PartNames/TOP_FIN +FD: net/minecraft/client/model/geom/PartNames/f_171380_ net/minecraft/client/model/geom/PartNames/BOTTOM_FIN +FD: net/minecraft/client/model/geom/PartNames/f_171381_ net/minecraft/client/model/geom/PartNames/TAIL_FIN +FD: net/minecraft/client/model/geom/PartNames/f_171382_ net/minecraft/client/model/geom/PartNames/LEFT_BLUE_FIN +FD: net/minecraft/client/model/geom/PartNames/f_171383_ net/minecraft/client/model/geom/PartNames/RIGHT_BLUE_FIN +FD: net/minecraft/client/model/geom/PartNames/f_171384_ net/minecraft/client/model/geom/PartNames/LEFT_ARM +FD: net/minecraft/client/model/geom/PartNames/f_171385_ net/minecraft/client/model/geom/PartNames/RIGHT_ARM +FD: net/minecraft/client/model/geom/PartNames/f_171386_ net/minecraft/client/model/geom/PartNames/LEFT_WING +FD: net/minecraft/client/model/geom/PartNames/f_171387_ net/minecraft/client/model/geom/PartNames/RIGHT_WING +FD: net/minecraft/client/model/geom/PartNames/f_171388_ net/minecraft/client/model/geom/PartNames/LEFT_WING_BASE +FD: net/minecraft/client/model/geom/PartNames/f_171389_ net/minecraft/client/model/geom/PartNames/RIGHT_WING_BASE +FD: net/minecraft/client/model/geom/PartNames/f_171390_ net/minecraft/client/model/geom/PartNames/LEFT_WING_TIP +FD: net/minecraft/client/model/geom/PartNames/f_171391_ net/minecraft/client/model/geom/PartNames/RIGHT_WING_TIP +FD: net/minecraft/client/model/geom/PartNames/f_171392_ net/minecraft/client/model/geom/PartNames/LEFT_EAR +FD: net/minecraft/client/model/geom/PartNames/f_171393_ net/minecraft/client/model/geom/PartNames/RIGHT_EAR +FD: net/minecraft/client/model/geom/PartNames/f_171394_ net/minecraft/client/model/geom/PartNames/LEFT_LEG +FD: net/minecraft/client/model/geom/PartNames/f_171395_ net/minecraft/client/model/geom/PartNames/RIGHT_LEG +FD: net/minecraft/client/model/geom/PartNames/f_171396_ net/minecraft/client/model/geom/PartNames/LEFT_HIND_LEG +FD: net/minecraft/client/model/geom/PartNames/f_171397_ net/minecraft/client/model/geom/PartNames/RIGHT_HIND_LEG +FD: net/minecraft/client/model/geom/PartNames/f_171398_ net/minecraft/client/model/geom/PartNames/LEFT_FRONT_LEG +FD: net/minecraft/client/model/geom/PartNames/f_171399_ net/minecraft/client/model/geom/PartNames/RIGHT_FRONT_LEG +FD: net/minecraft/client/model/geom/PartNames/f_171400_ net/minecraft/client/model/geom/PartNames/LEFT_HIND_FOOT +FD: net/minecraft/client/model/geom/PartNames/f_171401_ net/minecraft/client/model/geom/PartNames/RIGHT_HIND_FOOT +FD: net/minecraft/client/model/geom/PartNames/f_171402_ net/minecraft/client/model/geom/PartNames/LEFT_FRONT_FOOT +FD: net/minecraft/client/model/geom/PartNames/f_233572_ net/minecraft/client/model/geom/PartNames/ROOT +FD: net/minecraft/client/model/geom/PartNames/f_233573_ net/minecraft/client/model/geom/PartNames/CROAKING_BODY +FD: net/minecraft/client/model/geom/PartNames/f_233574_ net/minecraft/client/model/geom/PartNames/TONGUE +FD: net/minecraft/client/model/geom/PartNames/f_233575_ net/minecraft/client/model/geom/PartNames/TONGUE_R1 +FD: net/minecraft/client/model/geom/PartNames/f_233576_ net/minecraft/client/model/geom/PartNames/LEFT_HAND +FD: net/minecraft/client/model/geom/PartNames/f_233577_ net/minecraft/client/model/geom/PartNames/RIGHT_HAND +FD: net/minecraft/client/model/geom/PartNames/f_233578_ net/minecraft/client/model/geom/PartNames/LEFT_FOOT +FD: net/minecraft/client/model/geom/PartNames/f_233579_ net/minecraft/client/model/geom/PartNames/RIGHT_FOOT +FD: net/minecraft/client/model/geom/PartNames/f_233580_ net/minecraft/client/model/geom/PartNames/EYES +FD: net/minecraft/client/model/geom/PartNames/f_233581_ net/minecraft/client/model/geom/PartNames/RIGHT_TENDRIL +FD: net/minecraft/client/model/geom/PartNames/f_233582_ net/minecraft/client/model/geom/PartNames/LEFT_TENDRIL +FD: net/minecraft/client/model/geom/PartNames/f_233583_ net/minecraft/client/model/geom/PartNames/RIGHT_RIBCAGE +FD: net/minecraft/client/model/geom/PartNames/f_233584_ net/minecraft/client/model/geom/PartNames/LEFT_RIBCAGE +FD: net/minecraft/client/model/geom/PartNames/f_233585_ net/minecraft/client/model/geom/PartNames/BONE +FD: net/minecraft/client/model/geom/PartNames/f_271292_ net/minecraft/client/model/geom/PartNames/RIGHT_MID_LEG +FD: net/minecraft/client/model/geom/PartNames/f_271385_ net/minecraft/client/model/geom/PartNames/LEFT_MID_LEG +FD: net/minecraft/client/model/geom/PartPose/f_171404_ net/minecraft/client/model/geom/PartPose/ZERO +FD: net/minecraft/client/model/geom/PartPose/f_171405_ net/minecraft/client/model/geom/PartPose/x +FD: net/minecraft/client/model/geom/PartPose/f_171406_ net/minecraft/client/model/geom/PartPose/y +FD: net/minecraft/client/model/geom/PartPose/f_171407_ net/minecraft/client/model/geom/PartPose/z +FD: net/minecraft/client/model/geom/PartPose/f_171408_ net/minecraft/client/model/geom/PartPose/xRot +FD: net/minecraft/client/model/geom/PartPose/f_171409_ net/minecraft/client/model/geom/PartPose/yRot +FD: net/minecraft/client/model/geom/PartPose/f_171410_ net/minecraft/client/model/geom/PartPose/zRot +FD: net/minecraft/client/model/geom/builders/CubeDefinition/f_171434_ net/minecraft/client/model/geom/builders/CubeDefinition/comment +FD: net/minecraft/client/model/geom/builders/CubeDefinition/f_171435_ net/minecraft/client/model/geom/builders/CubeDefinition/origin +FD: net/minecraft/client/model/geom/builders/CubeDefinition/f_171436_ net/minecraft/client/model/geom/builders/CubeDefinition/dimensions +FD: net/minecraft/client/model/geom/builders/CubeDefinition/f_171437_ net/minecraft/client/model/geom/builders/CubeDefinition/grow +FD: net/minecraft/client/model/geom/builders/CubeDefinition/f_171438_ net/minecraft/client/model/geom/builders/CubeDefinition/mirror +FD: net/minecraft/client/model/geom/builders/CubeDefinition/f_171439_ net/minecraft/client/model/geom/builders/CubeDefinition/texCoord +FD: net/minecraft/client/model/geom/builders/CubeDefinition/f_171440_ net/minecraft/client/model/geom/builders/CubeDefinition/texScale +FD: net/minecraft/client/model/geom/builders/CubeDefinition/f_271491_ net/minecraft/client/model/geom/builders/CubeDefinition/visibleFaces +FD: net/minecraft/client/model/geom/builders/CubeDeformation/f_171458_ net/minecraft/client/model/geom/builders/CubeDeformation/NONE +FD: net/minecraft/client/model/geom/builders/CubeDeformation/f_171459_ net/minecraft/client/model/geom/builders/CubeDeformation/growX +FD: net/minecraft/client/model/geom/builders/CubeDeformation/f_171460_ net/minecraft/client/model/geom/builders/CubeDeformation/growY +FD: net/minecraft/client/model/geom/builders/CubeDeformation/f_171461_ net/minecraft/client/model/geom/builders/CubeDeformation/growZ +FD: net/minecraft/client/model/geom/builders/CubeListBuilder/f_171475_ net/minecraft/client/model/geom/builders/CubeListBuilder/cubes +FD: net/minecraft/client/model/geom/builders/CubeListBuilder/f_171476_ net/minecraft/client/model/geom/builders/CubeListBuilder/xTexOffs +FD: net/minecraft/client/model/geom/builders/CubeListBuilder/f_171477_ net/minecraft/client/model/geom/builders/CubeListBuilder/yTexOffs +FD: net/minecraft/client/model/geom/builders/CubeListBuilder/f_171478_ net/minecraft/client/model/geom/builders/CubeListBuilder/mirror +FD: net/minecraft/client/model/geom/builders/CubeListBuilder/f_271199_ net/minecraft/client/model/geom/builders/CubeListBuilder/ALL_VISIBLE +FD: net/minecraft/client/model/geom/builders/LayerDefinition/f_171559_ net/minecraft/client/model/geom/builders/LayerDefinition/mesh +FD: net/minecraft/client/model/geom/builders/LayerDefinition/f_171560_ net/minecraft/client/model/geom/builders/LayerDefinition/material +FD: net/minecraft/client/model/geom/builders/MaterialDefinition/f_171569_ net/minecraft/client/model/geom/builders/MaterialDefinition/xTexSize +FD: net/minecraft/client/model/geom/builders/MaterialDefinition/f_171570_ net/minecraft/client/model/geom/builders/MaterialDefinition/yTexSize +FD: net/minecraft/client/model/geom/builders/MeshDefinition/f_171574_ net/minecraft/client/model/geom/builders/MeshDefinition/root +FD: net/minecraft/client/model/geom/builders/PartDefinition/f_171577_ net/minecraft/client/model/geom/builders/PartDefinition/cubes +FD: net/minecraft/client/model/geom/builders/PartDefinition/f_171578_ net/minecraft/client/model/geom/builders/PartDefinition/partPose +FD: net/minecraft/client/model/geom/builders/PartDefinition/f_171579_ net/minecraft/client/model/geom/builders/PartDefinition/children +FD: net/minecraft/client/model/geom/builders/UVPair/f_171607_ net/minecraft/client/model/geom/builders/UVPair/u +FD: net/minecraft/client/model/geom/builders/UVPair/f_171608_ net/minecraft/client/model/geom/builders/UVPair/v +FD: net/minecraft/client/multiplayer/AccountProfileKeyPairManager/f_252423_ net/minecraft/client/multiplayer/AccountProfileKeyPairManager/profileKeyPairPath +FD: net/minecraft/client/multiplayer/AccountProfileKeyPairManager/f_252428_ net/minecraft/client/multiplayer/AccountProfileKeyPairManager/keyPair +FD: net/minecraft/client/multiplayer/AccountProfileKeyPairManager/f_252448_ net/minecraft/client/multiplayer/AccountProfileKeyPairManager/LOGGER +FD: net/minecraft/client/multiplayer/AccountProfileKeyPairManager/f_252471_ net/minecraft/client/multiplayer/AccountProfileKeyPairManager/MINIMUM_PROFILE_KEY_REFRESH_INTERVAL +FD: net/minecraft/client/multiplayer/AccountProfileKeyPairManager/f_252478_ net/minecraft/client/multiplayer/AccountProfileKeyPairManager/nextProfileKeyRefreshTime +FD: net/minecraft/client/multiplayer/AccountProfileKeyPairManager/f_252484_ net/minecraft/client/multiplayer/AccountProfileKeyPairManager/PROFILE_KEY_PAIR_DIR +FD: net/minecraft/client/multiplayer/AccountProfileKeyPairManager/f_252526_ net/minecraft/client/multiplayer/AccountProfileKeyPairManager/userApiService +FD: net/minecraft/client/multiplayer/ClientAdvancements/f_104387_ net/minecraft/client/multiplayer/ClientAdvancements/LOGGER +FD: net/minecraft/client/multiplayer/ClientAdvancements/f_104388_ net/minecraft/client/multiplayer/ClientAdvancements/minecraft +FD: net/minecraft/client/multiplayer/ClientAdvancements/f_104389_ net/minecraft/client/multiplayer/ClientAdvancements/advancements +FD: net/minecraft/client/multiplayer/ClientAdvancements/f_104390_ net/minecraft/client/multiplayer/ClientAdvancements/progress +FD: net/minecraft/client/multiplayer/ClientAdvancements/f_104391_ net/minecraft/client/multiplayer/ClientAdvancements/listener +FD: net/minecraft/client/multiplayer/ClientAdvancements/f_104392_ net/minecraft/client/multiplayer/ClientAdvancements/selectedTab +FD: net/minecraft/client/multiplayer/ClientAdvancements/f_285594_ net/minecraft/client/multiplayer/ClientAdvancements/telemetryManager +FD: net/minecraft/client/multiplayer/ClientChunkCache/f_104407_ net/minecraft/client/multiplayer/ClientChunkCache/LOGGER +FD: net/minecraft/client/multiplayer/ClientChunkCache/f_104408_ net/minecraft/client/multiplayer/ClientChunkCache/emptyChunk +FD: net/minecraft/client/multiplayer/ClientChunkCache/f_104409_ net/minecraft/client/multiplayer/ClientChunkCache/lightEngine +FD: net/minecraft/client/multiplayer/ClientChunkCache/f_104410_ net/minecraft/client/multiplayer/ClientChunkCache/storage +FD: net/minecraft/client/multiplayer/ClientChunkCache/f_104411_ net/minecraft/client/multiplayer/ClientChunkCache/level +FD: net/minecraft/client/multiplayer/ClientChunkCache$Storage/f_104465_ net/minecraft/client/multiplayer/ClientChunkCache$Storage/this$0 +FD: net/minecraft/client/multiplayer/ClientChunkCache$Storage/f_104466_ net/minecraft/client/multiplayer/ClientChunkCache$Storage/chunks +FD: net/minecraft/client/multiplayer/ClientChunkCache$Storage/f_104467_ net/minecraft/client/multiplayer/ClientChunkCache$Storage/chunkRadius +FD: net/minecraft/client/multiplayer/ClientChunkCache$Storage/f_104468_ net/minecraft/client/multiplayer/ClientChunkCache$Storage/viewRange +FD: net/minecraft/client/multiplayer/ClientChunkCache$Storage/f_104469_ net/minecraft/client/multiplayer/ClientChunkCache$Storage/viewCenterX +FD: net/minecraft/client/multiplayer/ClientChunkCache$Storage/f_104470_ net/minecraft/client/multiplayer/ClientChunkCache$Storage/viewCenterZ +FD: net/minecraft/client/multiplayer/ClientChunkCache$Storage/f_104471_ net/minecraft/client/multiplayer/ClientChunkCache$Storage/chunkCount +FD: net/minecraft/client/multiplayer/ClientHandshakePacketListenerImpl/f_104518_ net/minecraft/client/multiplayer/ClientHandshakePacketListenerImpl/LOGGER +FD: net/minecraft/client/multiplayer/ClientHandshakePacketListenerImpl/f_104519_ net/minecraft/client/multiplayer/ClientHandshakePacketListenerImpl/minecraft +FD: net/minecraft/client/multiplayer/ClientHandshakePacketListenerImpl/f_104520_ net/minecraft/client/multiplayer/ClientHandshakePacketListenerImpl/parent +FD: net/minecraft/client/multiplayer/ClientHandshakePacketListenerImpl/f_104521_ net/minecraft/client/multiplayer/ClientHandshakePacketListenerImpl/updateStatus +FD: net/minecraft/client/multiplayer/ClientHandshakePacketListenerImpl/f_104522_ net/minecraft/client/multiplayer/ClientHandshakePacketListenerImpl/connection +FD: net/minecraft/client/multiplayer/ClientHandshakePacketListenerImpl/f_104523_ net/minecraft/client/multiplayer/ClientHandshakePacketListenerImpl/localGameProfile +FD: net/minecraft/client/multiplayer/ClientHandshakePacketListenerImpl/f_243717_ net/minecraft/client/multiplayer/ClientHandshakePacketListenerImpl/serverData +FD: net/minecraft/client/multiplayer/ClientHandshakePacketListenerImpl/f_260612_ net/minecraft/client/multiplayer/ClientHandshakePacketListenerImpl/worldLoadDuration +FD: net/minecraft/client/multiplayer/ClientHandshakePacketListenerImpl/f_260722_ net/minecraft/client/multiplayer/ClientHandshakePacketListenerImpl/newWorld +FD: net/minecraft/client/multiplayer/ClientHandshakePacketListenerImpl/f_285614_ net/minecraft/client/multiplayer/ClientHandshakePacketListenerImpl/minigameName +FD: net/minecraft/client/multiplayer/ClientLevel/f_104555_ net/minecraft/client/multiplayer/ClientLevel/scoreboard +FD: net/minecraft/client/multiplayer/ClientLevel/f_104556_ net/minecraft/client/multiplayer/ClientLevel/mapData +FD: net/minecraft/client/multiplayer/ClientLevel/f_104557_ net/minecraft/client/multiplayer/ClientLevel/skyFlashTime +FD: net/minecraft/client/multiplayer/ClientLevel/f_104558_ net/minecraft/client/multiplayer/ClientLevel/tintCaches +FD: net/minecraft/client/multiplayer/ClientLevel/f_104559_ net/minecraft/client/multiplayer/ClientLevel/chunkSource +FD: net/minecraft/client/multiplayer/ClientLevel/f_104561_ net/minecraft/client/multiplayer/ClientLevel/connection +FD: net/minecraft/client/multiplayer/ClientLevel/f_104562_ net/minecraft/client/multiplayer/ClientLevel/levelRenderer +FD: net/minecraft/client/multiplayer/ClientLevel/f_104563_ net/minecraft/client/multiplayer/ClientLevel/clientLevelData +FD: net/minecraft/client/multiplayer/ClientLevel/f_104564_ net/minecraft/client/multiplayer/ClientLevel/effects +FD: net/minecraft/client/multiplayer/ClientLevel/f_104565_ net/minecraft/client/multiplayer/ClientLevel/minecraft +FD: net/minecraft/client/multiplayer/ClientLevel/f_104566_ net/minecraft/client/multiplayer/ClientLevel/players +FD: net/minecraft/client/multiplayer/ClientLevel/f_171628_ net/minecraft/client/multiplayer/ClientLevel/CLOUD_COLOR +FD: net/minecraft/client/multiplayer/ClientLevel/f_171629_ net/minecraft/client/multiplayer/ClientLevel/FLUID_PARTICLE_SPAWN_OFFSET +FD: net/minecraft/client/multiplayer/ClientLevel/f_171630_ net/minecraft/client/multiplayer/ClientLevel/tickingEntities +FD: net/minecraft/client/multiplayer/ClientLevel/f_171631_ net/minecraft/client/multiplayer/ClientLevel/entityStorage +FD: net/minecraft/client/multiplayer/ClientLevel/f_194122_ net/minecraft/client/multiplayer/ClientLevel/lightUpdateQueue +FD: net/minecraft/client/multiplayer/ClientLevel/f_194123_ net/minecraft/client/multiplayer/ClientLevel/serverSimulationDistance +FD: net/minecraft/client/multiplayer/ClientLevel/f_194124_ net/minecraft/client/multiplayer/ClientLevel/MARKER_PARTICLE_ITEMS +FD: net/minecraft/client/multiplayer/ClientLevel/f_194125_ net/minecraft/client/multiplayer/ClientLevel/NORMAL_LIGHT_UPDATES_PER_FRAME +FD: net/minecraft/client/multiplayer/ClientLevel/f_194126_ net/minecraft/client/multiplayer/ClientLevel/LIGHT_UPDATE_QUEUE_SIZE_THRESHOLD +FD: net/minecraft/client/multiplayer/ClientLevel/f_233599_ net/minecraft/client/multiplayer/ClientLevel/blockStatePredictionHandler +FD: net/minecraft/client/multiplayer/ClientLevel/f_233600_ net/minecraft/client/multiplayer/ClientLevel/LOGGER +FD: net/minecraft/client/multiplayer/ClientLevel$1/f_104828_ net/minecraft/client/multiplayer/ClientLevel$1/$SwitchMap$net$minecraft$core$Direction +FD: net/minecraft/client/multiplayer/ClientLevel$ClientLevelData/f_104830_ net/minecraft/client/multiplayer/ClientLevel$ClientLevelData/hardcore +FD: net/minecraft/client/multiplayer/ClientLevel$ClientLevelData/f_104831_ net/minecraft/client/multiplayer/ClientLevel$ClientLevelData/gameRules +FD: net/minecraft/client/multiplayer/ClientLevel$ClientLevelData/f_104832_ net/minecraft/client/multiplayer/ClientLevel$ClientLevelData/isFlat +FD: net/minecraft/client/multiplayer/ClientLevel$ClientLevelData/f_104833_ net/minecraft/client/multiplayer/ClientLevel$ClientLevelData/xSpawn +FD: net/minecraft/client/multiplayer/ClientLevel$ClientLevelData/f_104834_ net/minecraft/client/multiplayer/ClientLevel$ClientLevelData/ySpawn +FD: net/minecraft/client/multiplayer/ClientLevel$ClientLevelData/f_104835_ net/minecraft/client/multiplayer/ClientLevel$ClientLevelData/zSpawn +FD: net/minecraft/client/multiplayer/ClientLevel$ClientLevelData/f_104836_ net/minecraft/client/multiplayer/ClientLevel$ClientLevelData/spawnAngle +FD: net/minecraft/client/multiplayer/ClientLevel$ClientLevelData/f_104837_ net/minecraft/client/multiplayer/ClientLevel$ClientLevelData/gameTime +FD: net/minecraft/client/multiplayer/ClientLevel$ClientLevelData/f_104838_ net/minecraft/client/multiplayer/ClientLevel$ClientLevelData/dayTime +FD: net/minecraft/client/multiplayer/ClientLevel$ClientLevelData/f_104839_ net/minecraft/client/multiplayer/ClientLevel$ClientLevelData/raining +FD: net/minecraft/client/multiplayer/ClientLevel$ClientLevelData/f_104840_ net/minecraft/client/multiplayer/ClientLevel$ClientLevelData/difficulty +FD: net/minecraft/client/multiplayer/ClientLevel$ClientLevelData/f_104841_ net/minecraft/client/multiplayer/ClientLevel$ClientLevelData/difficultyLocked +FD: net/minecraft/client/multiplayer/ClientLevel$EntityCallbacks/f_171692_ net/minecraft/client/multiplayer/ClientLevel$EntityCallbacks/this$0 +FD: net/minecraft/client/multiplayer/ClientPacketListener/f_104883_ net/minecraft/client/multiplayer/ClientPacketListener/LOGGER +FD: net/minecraft/client/multiplayer/ClientPacketListener/f_104884_ net/minecraft/client/multiplayer/ClientPacketListener/GENERIC_DISCONNECT_MESSAGE +FD: net/minecraft/client/multiplayer/ClientPacketListener/f_104885_ net/minecraft/client/multiplayer/ClientPacketListener/connection +FD: net/minecraft/client/multiplayer/ClientPacketListener/f_104886_ net/minecraft/client/multiplayer/ClientPacketListener/localGameProfile +FD: net/minecraft/client/multiplayer/ClientPacketListener/f_104887_ net/minecraft/client/multiplayer/ClientPacketListener/callbackScreen +FD: net/minecraft/client/multiplayer/ClientPacketListener/f_104888_ net/minecraft/client/multiplayer/ClientPacketListener/minecraft +FD: net/minecraft/client/multiplayer/ClientPacketListener/f_104889_ net/minecraft/client/multiplayer/ClientPacketListener/level +FD: net/minecraft/client/multiplayer/ClientPacketListener/f_104890_ net/minecraft/client/multiplayer/ClientPacketListener/levelData +FD: net/minecraft/client/multiplayer/ClientPacketListener/f_104892_ net/minecraft/client/multiplayer/ClientPacketListener/playerInfoMap +FD: net/minecraft/client/multiplayer/ClientPacketListener/f_104893_ net/minecraft/client/multiplayer/ClientPacketListener/advancements +FD: net/minecraft/client/multiplayer/ClientPacketListener/f_104894_ net/minecraft/client/multiplayer/ClientPacketListener/suggestionsProvider +FD: net/minecraft/client/multiplayer/ClientPacketListener/f_104896_ net/minecraft/client/multiplayer/ClientPacketListener/debugQueryHandler +FD: net/minecraft/client/multiplayer/ClientPacketListener/f_104897_ net/minecraft/client/multiplayer/ClientPacketListener/serverChunkRadius +FD: net/minecraft/client/multiplayer/ClientPacketListener/f_104898_ net/minecraft/client/multiplayer/ClientPacketListener/random +FD: net/minecraft/client/multiplayer/ClientPacketListener/f_104899_ net/minecraft/client/multiplayer/ClientPacketListener/commands +FD: net/minecraft/client/multiplayer/ClientPacketListener/f_104900_ net/minecraft/client/multiplayer/ClientPacketListener/recipeManager +FD: net/minecraft/client/multiplayer/ClientPacketListener/f_104901_ net/minecraft/client/multiplayer/ClientPacketListener/id +FD: net/minecraft/client/multiplayer/ClientPacketListener/f_104902_ net/minecraft/client/multiplayer/ClientPacketListener/levels +FD: net/minecraft/client/multiplayer/ClientPacketListener/f_104903_ net/minecraft/client/multiplayer/ClientPacketListener/registryAccess +FD: net/minecraft/client/multiplayer/ClientPacketListener/f_194190_ net/minecraft/client/multiplayer/ClientPacketListener/serverSimulationDistance +FD: net/minecraft/client/multiplayer/ClientPacketListener/f_194191_ net/minecraft/client/multiplayer/ClientPacketListener/telemetryManager +FD: net/minecraft/client/multiplayer/ClientPacketListener/f_240902_ net/minecraft/client/multiplayer/ClientPacketListener/signedMessageEncoder +FD: net/minecraft/client/multiplayer/ClientPacketListener/f_242949_ net/minecraft/client/multiplayer/ClientPacketListener/UNSERURE_SERVER_TOAST +FD: net/minecraft/client/multiplayer/ClientPacketListener/f_242953_ net/minecraft/client/multiplayer/ClientPacketListener/UNSECURE_SERVER_TOAST_TITLE +FD: net/minecraft/client/multiplayer/ClientPacketListener/f_243809_ net/minecraft/client/multiplayer/ClientPacketListener/CHAT_VALIDATION_FAILED_ERROR +FD: net/minecraft/client/multiplayer/ClientPacketListener/f_243949_ net/minecraft/client/multiplayer/ClientPacketListener/PENDING_OFFSET_THRESHOLD +FD: net/minecraft/client/multiplayer/ClientPacketListener/f_244039_ net/minecraft/client/multiplayer/ClientPacketListener/enabledFeatures +FD: net/minecraft/client/multiplayer/ClientPacketListener/f_244113_ net/minecraft/client/multiplayer/ClientPacketListener/messageSignatureCache +FD: net/minecraft/client/multiplayer/ClientPacketListener/f_244115_ net/minecraft/client/multiplayer/ClientPacketListener/serverData +FD: net/minecraft/client/multiplayer/ClientPacketListener/f_244156_ net/minecraft/client/multiplayer/ClientPacketListener/listedPlayers +FD: net/minecraft/client/multiplayer/ClientPacketListener/f_244321_ net/minecraft/client/multiplayer/ClientPacketListener/INVALID_PACKET +FD: net/minecraft/client/multiplayer/ClientPacketListener/f_244346_ net/minecraft/client/multiplayer/ClientPacketListener/lastSeenMessages +FD: net/minecraft/client/multiplayer/ClientPacketListener/f_252517_ net/minecraft/client/multiplayer/ClientPacketListener/chatSession +FD: net/minecraft/client/multiplayer/ClientPacketListener/f_268637_ net/minecraft/client/multiplayer/ClientPacketListener/deferredPackets +FD: net/minecraft/client/multiplayer/ClientPacketListener$1/f_105155_ net/minecraft/client/multiplayer/ClientPacketListener$1/$SwitchMap$net$minecraft$network$protocol$game$ClientboundRecipePacket$State +FD: net/minecraft/client/multiplayer/ClientPacketListener$1/f_105158_ net/minecraft/client/multiplayer/ClientPacketListener$1/$SwitchMap$net$minecraft$server$ServerScoreboard$Method +FD: net/minecraft/client/multiplayer/ClientPacketListener$1/f_244123_ net/minecraft/client/multiplayer/ClientPacketListener$1/$SwitchMap$net$minecraft$network$protocol$game$ClientboundPlayerInfoUpdatePacket$Action +FD: net/minecraft/client/multiplayer/ClientPacketListener$DeferredPacket/f_268477_ net/minecraft/client/multiplayer/ClientPacketListener$DeferredPacket/sendCondition +FD: net/minecraft/client/multiplayer/ClientPacketListener$DeferredPacket/f_268574_ net/minecraft/client/multiplayer/ClientPacketListener$DeferredPacket/packet +FD: net/minecraft/client/multiplayer/ClientPacketListener$DeferredPacket/f_268654_ net/minecraft/client/multiplayer/ClientPacketListener$DeferredPacket/expirationTime +FD: net/minecraft/client/multiplayer/ClientRegistryLayer/$VALUES net/minecraft/client/multiplayer/ClientRegistryLayer/$VALUES +FD: net/minecraft/client/multiplayer/ClientRegistryLayer/REMOTE net/minecraft/client/multiplayer/ClientRegistryLayer/REMOTE +FD: net/minecraft/client/multiplayer/ClientRegistryLayer/STATIC net/minecraft/client/multiplayer/ClientRegistryLayer/STATIC +FD: net/minecraft/client/multiplayer/ClientRegistryLayer/f_243766_ net/minecraft/client/multiplayer/ClientRegistryLayer/VALUES +FD: net/minecraft/client/multiplayer/ClientRegistryLayer/f_243969_ net/minecraft/client/multiplayer/ClientRegistryLayer/STATIC_ACCESS +FD: net/minecraft/client/multiplayer/ClientSuggestionProvider/f_105160_ net/minecraft/client/multiplayer/ClientSuggestionProvider/connection +FD: net/minecraft/client/multiplayer/ClientSuggestionProvider/f_105161_ net/minecraft/client/multiplayer/ClientSuggestionProvider/minecraft +FD: net/minecraft/client/multiplayer/ClientSuggestionProvider/f_105162_ net/minecraft/client/multiplayer/ClientSuggestionProvider/pendingSuggestionsId +FD: net/minecraft/client/multiplayer/ClientSuggestionProvider/f_105163_ net/minecraft/client/multiplayer/ClientSuggestionProvider/pendingSuggestionsFuture +FD: net/minecraft/client/multiplayer/ClientSuggestionProvider/f_240667_ net/minecraft/client/multiplayer/ClientSuggestionProvider/customCompletionSuggestions +FD: net/minecraft/client/multiplayer/ClientSuggestionProvider$1/f_240658_ net/minecraft/client/multiplayer/ClientSuggestionProvider$1/$SwitchMap$net$minecraft$network$protocol$game$ClientboundCustomChatCompletionsPacket$Action +FD: net/minecraft/client/multiplayer/MultiPlayerGameMode/f_105188_ net/minecraft/client/multiplayer/MultiPlayerGameMode/LOGGER +FD: net/minecraft/client/multiplayer/MultiPlayerGameMode/f_105189_ net/minecraft/client/multiplayer/MultiPlayerGameMode/minecraft +FD: net/minecraft/client/multiplayer/MultiPlayerGameMode/f_105190_ net/minecraft/client/multiplayer/MultiPlayerGameMode/connection +FD: net/minecraft/client/multiplayer/MultiPlayerGameMode/f_105191_ net/minecraft/client/multiplayer/MultiPlayerGameMode/destroyBlockPos +FD: net/minecraft/client/multiplayer/MultiPlayerGameMode/f_105192_ net/minecraft/client/multiplayer/MultiPlayerGameMode/destroyingItem +FD: net/minecraft/client/multiplayer/MultiPlayerGameMode/f_105193_ net/minecraft/client/multiplayer/MultiPlayerGameMode/destroyProgress +FD: net/minecraft/client/multiplayer/MultiPlayerGameMode/f_105194_ net/minecraft/client/multiplayer/MultiPlayerGameMode/destroyTicks +FD: net/minecraft/client/multiplayer/MultiPlayerGameMode/f_105195_ net/minecraft/client/multiplayer/MultiPlayerGameMode/destroyDelay +FD: net/minecraft/client/multiplayer/MultiPlayerGameMode/f_105196_ net/minecraft/client/multiplayer/MultiPlayerGameMode/isDestroying +FD: net/minecraft/client/multiplayer/MultiPlayerGameMode/f_105197_ net/minecraft/client/multiplayer/MultiPlayerGameMode/localPlayerMode +FD: net/minecraft/client/multiplayer/MultiPlayerGameMode/f_105198_ net/minecraft/client/multiplayer/MultiPlayerGameMode/previousLocalPlayerMode +FD: net/minecraft/client/multiplayer/MultiPlayerGameMode/f_105200_ net/minecraft/client/multiplayer/MultiPlayerGameMode/carriedIndex +FD: net/minecraft/client/multiplayer/PlayerInfo/f_105298_ net/minecraft/client/multiplayer/PlayerInfo/profile +FD: net/minecraft/client/multiplayer/PlayerInfo/f_105299_ net/minecraft/client/multiplayer/PlayerInfo/textureLocations +FD: net/minecraft/client/multiplayer/PlayerInfo/f_105300_ net/minecraft/client/multiplayer/PlayerInfo/gameMode +FD: net/minecraft/client/multiplayer/PlayerInfo/f_105301_ net/minecraft/client/multiplayer/PlayerInfo/latency +FD: net/minecraft/client/multiplayer/PlayerInfo/f_105302_ net/minecraft/client/multiplayer/PlayerInfo/pendingTextures +FD: net/minecraft/client/multiplayer/PlayerInfo/f_105303_ net/minecraft/client/multiplayer/PlayerInfo/skinModel +FD: net/minecraft/client/multiplayer/PlayerInfo/f_105304_ net/minecraft/client/multiplayer/PlayerInfo/tabListDisplayName +FD: net/minecraft/client/multiplayer/PlayerInfo/f_240895_ net/minecraft/client/multiplayer/PlayerInfo/messageValidator +FD: net/minecraft/client/multiplayer/PlayerInfo/f_244238_ net/minecraft/client/multiplayer/PlayerInfo/chatSession +FD: net/minecraft/client/multiplayer/ProfileKeyPairManager/f_252532_ net/minecraft/client/multiplayer/ProfileKeyPairManager/EMPTY_KEY_MANAGER +FD: net/minecraft/client/multiplayer/ServerData/f_105362_ net/minecraft/client/multiplayer/ServerData/name +FD: net/minecraft/client/multiplayer/ServerData/f_105363_ net/minecraft/client/multiplayer/ServerData/ip +FD: net/minecraft/client/multiplayer/ServerData/f_105364_ net/minecraft/client/multiplayer/ServerData/status +FD: net/minecraft/client/multiplayer/ServerData/f_105365_ net/minecraft/client/multiplayer/ServerData/motd +FD: net/minecraft/client/multiplayer/ServerData/f_105366_ net/minecraft/client/multiplayer/ServerData/ping +FD: net/minecraft/client/multiplayer/ServerData/f_105367_ net/minecraft/client/multiplayer/ServerData/protocol +FD: net/minecraft/client/multiplayer/ServerData/f_105368_ net/minecraft/client/multiplayer/ServerData/version +FD: net/minecraft/client/multiplayer/ServerData/f_105369_ net/minecraft/client/multiplayer/ServerData/pinged +FD: net/minecraft/client/multiplayer/ServerData/f_105370_ net/minecraft/client/multiplayer/ServerData/playerList +FD: net/minecraft/client/multiplayer/ServerData/f_105371_ net/minecraft/client/multiplayer/ServerData/packStatus +FD: net/minecraft/client/multiplayer/ServerData/f_105373_ net/minecraft/client/multiplayer/ServerData/lan +FD: net/minecraft/client/multiplayer/ServerData/f_242950_ net/minecraft/client/multiplayer/ServerData/enforcesSecureChat +FD: net/minecraft/client/multiplayer/ServerData/f_263840_ net/minecraft/client/multiplayer/ServerData/players +FD: net/minecraft/client/multiplayer/ServerData/f_271489_ net/minecraft/client/multiplayer/ServerData/LOGGER +FD: net/minecraft/client/multiplayer/ServerData/f_271511_ net/minecraft/client/multiplayer/ServerData/iconBytes +FD: net/minecraft/client/multiplayer/ServerData$ServerPackStatus/$VALUES net/minecraft/client/multiplayer/ServerData$ServerPackStatus/$VALUES +FD: net/minecraft/client/multiplayer/ServerData$ServerPackStatus/DISABLED net/minecraft/client/multiplayer/ServerData$ServerPackStatus/DISABLED +FD: net/minecraft/client/multiplayer/ServerData$ServerPackStatus/ENABLED net/minecraft/client/multiplayer/ServerData$ServerPackStatus/ENABLED +FD: net/minecraft/client/multiplayer/ServerData$ServerPackStatus/PROMPT net/minecraft/client/multiplayer/ServerData$ServerPackStatus/PROMPT +FD: net/minecraft/client/multiplayer/ServerData$ServerPackStatus/f_105393_ net/minecraft/client/multiplayer/ServerData$ServerPackStatus/name +FD: net/minecraft/client/multiplayer/ServerList/f_105425_ net/minecraft/client/multiplayer/ServerList/LOGGER +FD: net/minecraft/client/multiplayer/ServerList/f_105426_ net/minecraft/client/multiplayer/ServerList/minecraft +FD: net/minecraft/client/multiplayer/ServerList/f_105427_ net/minecraft/client/multiplayer/ServerList/serverList +FD: net/minecraft/client/multiplayer/ServerList/f_233836_ net/minecraft/client/multiplayer/ServerList/IO_MAILBOX +FD: net/minecraft/client/multiplayer/ServerList/f_233837_ net/minecraft/client/multiplayer/ServerList/MAX_HIDDEN_SERVERS +FD: net/minecraft/client/multiplayer/ServerList/f_233838_ net/minecraft/client/multiplayer/ServerList/hiddenServerList +FD: net/minecraft/client/multiplayer/ServerStatusPinger/f_105448_ net/minecraft/client/multiplayer/ServerStatusPinger/SPLITTER +FD: net/minecraft/client/multiplayer/ServerStatusPinger/f_105449_ net/minecraft/client/multiplayer/ServerStatusPinger/LOGGER +FD: net/minecraft/client/multiplayer/ServerStatusPinger/f_105450_ net/minecraft/client/multiplayer/ServerStatusPinger/connections +FD: net/minecraft/client/multiplayer/ServerStatusPinger/f_171810_ net/minecraft/client/multiplayer/ServerStatusPinger/CANT_CONNECT_MESSAGE +FD: net/minecraft/client/multiplayer/ServerStatusPinger$1/f_105471_ net/minecraft/client/multiplayer/ServerStatusPinger$1/val$connection +FD: net/minecraft/client/multiplayer/ServerStatusPinger$1/f_105472_ net/minecraft/client/multiplayer/ServerStatusPinger$1/val$data +FD: net/minecraft/client/multiplayer/ServerStatusPinger$1/f_105473_ net/minecraft/client/multiplayer/ServerStatusPinger$1/val$onPersistentDataChange +FD: net/minecraft/client/multiplayer/ServerStatusPinger$1/f_105474_ net/minecraft/client/multiplayer/ServerStatusPinger$1/this$0 +FD: net/minecraft/client/multiplayer/ServerStatusPinger$1/f_105475_ net/minecraft/client/multiplayer/ServerStatusPinger$1/success +FD: net/minecraft/client/multiplayer/ServerStatusPinger$1/f_105476_ net/minecraft/client/multiplayer/ServerStatusPinger$1/receivedPing +FD: net/minecraft/client/multiplayer/ServerStatusPinger$1/f_105477_ net/minecraft/client/multiplayer/ServerStatusPinger$1/pingStart +FD: net/minecraft/client/multiplayer/ServerStatusPinger$1/f_171817_ net/minecraft/client/multiplayer/ServerStatusPinger$1/val$address +FD: net/minecraft/client/multiplayer/ServerStatusPinger$2/f_105490_ net/minecraft/client/multiplayer/ServerStatusPinger$2/val$address +FD: net/minecraft/client/multiplayer/ServerStatusPinger$2/f_105491_ net/minecraft/client/multiplayer/ServerStatusPinger$2/val$data +FD: net/minecraft/client/multiplayer/ServerStatusPinger$2/f_105492_ net/minecraft/client/multiplayer/ServerStatusPinger$2/this$0 +FD: net/minecraft/client/multiplayer/ServerStatusPinger$2$1/f_105499_ net/minecraft/client/multiplayer/ServerStatusPinger$2$1/this$1 +FD: net/minecraft/client/multiplayer/chat/ChatListener/f_240348_ net/minecraft/client/multiplayer/chat/ChatListener/minecraft +FD: net/minecraft/client/multiplayer/chat/ChatListener/f_240659_ net/minecraft/client/multiplayer/chat/ChatListener/previousMessageTime +FD: net/minecraft/client/multiplayer/chat/ChatListener/f_240660_ net/minecraft/client/multiplayer/chat/ChatListener/messageDelay +FD: net/minecraft/client/multiplayer/chat/ChatListener/f_240677_ net/minecraft/client/multiplayer/chat/ChatListener/delayedMessageQueue +FD: net/minecraft/client/multiplayer/chat/ChatListener$Message/f_244088_ net/minecraft/client/multiplayer/chat/ChatListener$Message/handler +FD: net/minecraft/client/multiplayer/chat/ChatListener$Message/f_244535_ net/minecraft/client/multiplayer/chat/ChatListener$Message/signature +FD: net/minecraft/client/multiplayer/chat/ChatLog/f_243822_ net/minecraft/client/multiplayer/chat/ChatLog/buffer +FD: net/minecraft/client/multiplayer/chat/ChatLog/f_244261_ net/minecraft/client/multiplayer/chat/ChatLog/nextId +FD: net/minecraft/client/multiplayer/chat/ChatTrustLevel/$VALUES net/minecraft/client/multiplayer/chat/ChatTrustLevel/$VALUES +FD: net/minecraft/client/multiplayer/chat/ChatTrustLevel/MODIFIED net/minecraft/client/multiplayer/chat/ChatTrustLevel/MODIFIED +FD: net/minecraft/client/multiplayer/chat/ChatTrustLevel/NOT_SECURE net/minecraft/client/multiplayer/chat/ChatTrustLevel/NOT_SECURE +FD: net/minecraft/client/multiplayer/chat/ChatTrustLevel/SECURE net/minecraft/client/multiplayer/chat/ChatTrustLevel/SECURE +FD: net/minecraft/client/multiplayer/chat/ChatTrustLevel/f_252433_ net/minecraft/client/multiplayer/chat/ChatTrustLevel/serializedName +FD: net/minecraft/client/multiplayer/chat/ChatTrustLevel/f_252530_ net/minecraft/client/multiplayer/chat/ChatTrustLevel/CODEC +FD: net/minecraft/client/multiplayer/chat/ChatTrustLevel$1/f_240370_ net/minecraft/client/multiplayer/chat/ChatTrustLevel$1/$SwitchMap$net$minecraft$client$multiplayer$chat$ChatTrustLevel +FD: net/minecraft/client/multiplayer/chat/LoggedChatEvent/f_252439_ net/minecraft/client/multiplayer/chat/LoggedChatEvent/CODEC +FD: net/minecraft/client/multiplayer/chat/LoggedChatEvent$Type/$VALUES net/minecraft/client/multiplayer/chat/LoggedChatEvent$Type/$VALUES +FD: net/minecraft/client/multiplayer/chat/LoggedChatEvent$Type/PLAYER net/minecraft/client/multiplayer/chat/LoggedChatEvent$Type/PLAYER +FD: net/minecraft/client/multiplayer/chat/LoggedChatEvent$Type/SYSTEM net/minecraft/client/multiplayer/chat/LoggedChatEvent$Type/SYSTEM +FD: net/minecraft/client/multiplayer/chat/LoggedChatEvent$Type/f_252477_ net/minecraft/client/multiplayer/chat/LoggedChatEvent$Type/codec +FD: net/minecraft/client/multiplayer/chat/LoggedChatEvent$Type/f_252489_ net/minecraft/client/multiplayer/chat/LoggedChatEvent$Type/serializedName +FD: net/minecraft/client/multiplayer/chat/LoggedChatMessage$Player/f_241609_ net/minecraft/client/multiplayer/chat/LoggedChatMessage$Player/trustLevel +FD: net/minecraft/client/multiplayer/chat/LoggedChatMessage$Player/f_241668_ net/minecraft/client/multiplayer/chat/LoggedChatMessage$Player/profile +FD: net/minecraft/client/multiplayer/chat/LoggedChatMessage$Player/f_241690_ net/minecraft/client/multiplayer/chat/LoggedChatMessage$Player/message +FD: net/minecraft/client/multiplayer/chat/LoggedChatMessage$Player/f_241693_ net/minecraft/client/multiplayer/chat/LoggedChatMessage$Player/TIME_FORMATTER +FD: net/minecraft/client/multiplayer/chat/LoggedChatMessage$Player/f_252425_ net/minecraft/client/multiplayer/chat/LoggedChatMessage$Player/CODEC +FD: net/minecraft/client/multiplayer/chat/LoggedChatMessage$System/f_241622_ net/minecraft/client/multiplayer/chat/LoggedChatMessage$System/timeStamp +FD: net/minecraft/client/multiplayer/chat/LoggedChatMessage$System/f_241673_ net/minecraft/client/multiplayer/chat/LoggedChatMessage$System/message +FD: net/minecraft/client/multiplayer/chat/LoggedChatMessage$System/f_252498_ net/minecraft/client/multiplayer/chat/LoggedChatMessage$System/CODEC +FD: net/minecraft/client/multiplayer/chat/report/AbuseReportSender$1/f_238719_ net/minecraft/client/multiplayer/chat/report/AbuseReportSender$1/$SwitchMap$com$mojang$authlib$exceptions$MinecraftClientException$ErrorType +FD: net/minecraft/client/multiplayer/chat/report/AbuseReportSender$Services/f_238570_ net/minecraft/client/multiplayer/chat/report/AbuseReportSender$Services/SERVICE_UNAVAILABLE_TEXT +FD: net/minecraft/client/multiplayer/chat/report/AbuseReportSender$Services/f_238579_ net/minecraft/client/multiplayer/chat/report/AbuseReportSender$Services/HTTP_ERROR_TEXT +FD: net/minecraft/client/multiplayer/chat/report/AbuseReportSender$Services/f_238657_ net/minecraft/client/multiplayer/chat/report/AbuseReportSender$Services/JSON_ERROR_TEXT +FD: net/minecraft/client/multiplayer/chat/report/AbuseReportSender$Services/f_238677_ net/minecraft/client/multiplayer/chat/report/AbuseReportSender$Services/userApiService +FD: net/minecraft/client/multiplayer/chat/report/AbuseReportSender$Services/f_238713_ net/minecraft/client/multiplayer/chat/report/AbuseReportSender$Services/environment +FD: net/minecraft/client/multiplayer/chat/report/BanReason/$VALUES net/minecraft/client/multiplayer/chat/report/BanReason/$VALUES +FD: net/minecraft/client/multiplayer/chat/report/BanReason/DEFAMATION_IMPERSONATION_FALSE_INFORMATION net/minecraft/client/multiplayer/chat/report/BanReason/DEFAMATION_IMPERSONATION_FALSE_INFORMATION +FD: net/minecraft/client/multiplayer/chat/report/BanReason/DRUGS net/minecraft/client/multiplayer/chat/report/BanReason/DRUGS +FD: net/minecraft/client/multiplayer/chat/report/BanReason/EXTREME_VIOLENCE_OR_GORE net/minecraft/client/multiplayer/chat/report/BanReason/EXTREME_VIOLENCE_OR_GORE +FD: net/minecraft/client/multiplayer/chat/report/BanReason/FALSE_REPORTING net/minecraft/client/multiplayer/chat/report/BanReason/FALSE_REPORTING +FD: net/minecraft/client/multiplayer/chat/report/BanReason/FRAUD net/minecraft/client/multiplayer/chat/report/BanReason/FRAUD +FD: net/minecraft/client/multiplayer/chat/report/BanReason/GENERIC_VIOLATION net/minecraft/client/multiplayer/chat/report/BanReason/GENERIC_VIOLATION +FD: net/minecraft/client/multiplayer/chat/report/BanReason/HARASSMENT_OR_BULLYING net/minecraft/client/multiplayer/chat/report/BanReason/HARASSMENT_OR_BULLYING +FD: net/minecraft/client/multiplayer/chat/report/BanReason/HATE_SPEECH net/minecraft/client/multiplayer/chat/report/BanReason/HATE_SPEECH +FD: net/minecraft/client/multiplayer/chat/report/BanReason/HATE_TERRORISM_NOTORIOUS_FIGURE net/minecraft/client/multiplayer/chat/report/BanReason/HATE_TERRORISM_NOTORIOUS_FIGURE +FD: net/minecraft/client/multiplayer/chat/report/BanReason/IMMINENT_HARM_TO_PERSON_OR_PROPERTY net/minecraft/client/multiplayer/chat/report/BanReason/IMMINENT_HARM_TO_PERSON_OR_PROPERTY +FD: net/minecraft/client/multiplayer/chat/report/BanReason/NUDITY_OR_PORNOGRAPHY net/minecraft/client/multiplayer/chat/report/BanReason/NUDITY_OR_PORNOGRAPHY +FD: net/minecraft/client/multiplayer/chat/report/BanReason/SEXUALLY_INAPPROPRIATE net/minecraft/client/multiplayer/chat/report/BanReason/SEXUALLY_INAPPROPRIATE +FD: net/minecraft/client/multiplayer/chat/report/BanReason/SPAM_OR_ADVERTISING net/minecraft/client/multiplayer/chat/report/BanReason/SPAM_OR_ADVERTISING +FD: net/minecraft/client/multiplayer/chat/report/BanReason/f_271148_ net/minecraft/client/multiplayer/chat/report/BanReason/title +FD: net/minecraft/client/multiplayer/chat/report/ChatReportBuilder/f_238736_ net/minecraft/client/multiplayer/chat/report/ChatReportBuilder/limits +FD: net/minecraft/client/multiplayer/chat/report/ChatReportBuilder/f_252499_ net/minecraft/client/multiplayer/chat/report/ChatReportBuilder/report +FD: net/minecraft/client/multiplayer/chat/report/ChatReportBuilder$CannotBuildReason/f_238583_ net/minecraft/client/multiplayer/chat/report/ChatReportBuilder$CannotBuildReason/COMMENTS_TOO_LONG +FD: net/minecraft/client/multiplayer/chat/report/ChatReportBuilder$CannotBuildReason/f_238619_ net/minecraft/client/multiplayer/chat/report/ChatReportBuilder$CannotBuildReason/NO_REPORTED_MESSAGES +FD: net/minecraft/client/multiplayer/chat/report/ChatReportBuilder$CannotBuildReason/f_238631_ net/minecraft/client/multiplayer/chat/report/ChatReportBuilder$CannotBuildReason/message +FD: net/minecraft/client/multiplayer/chat/report/ChatReportBuilder$CannotBuildReason/f_238799_ net/minecraft/client/multiplayer/chat/report/ChatReportBuilder$CannotBuildReason/TOO_MANY_MESSAGES +FD: net/minecraft/client/multiplayer/chat/report/ChatReportBuilder$CannotBuildReason/f_238819_ net/minecraft/client/multiplayer/chat/report/ChatReportBuilder$CannotBuildReason/NO_REASON +FD: net/minecraft/client/multiplayer/chat/report/ChatReportBuilder$ChatReport/f_252413_ net/minecraft/client/multiplayer/chat/report/ChatReportBuilder$ChatReport/createdAt +FD: net/minecraft/client/multiplayer/chat/report/ChatReportBuilder$ChatReport/f_252421_ net/minecraft/client/multiplayer/chat/report/ChatReportBuilder$ChatReport/comments +FD: net/minecraft/client/multiplayer/chat/report/ChatReportBuilder$ChatReport/f_252475_ net/minecraft/client/multiplayer/chat/report/ChatReportBuilder$ChatReport/reportedMessages +FD: net/minecraft/client/multiplayer/chat/report/ChatReportBuilder$ChatReport/f_252479_ net/minecraft/client/multiplayer/chat/report/ChatReportBuilder$ChatReport/reason +FD: net/minecraft/client/multiplayer/chat/report/ChatReportBuilder$ChatReport/f_252481_ net/minecraft/client/multiplayer/chat/report/ChatReportBuilder$ChatReport/reportId +FD: net/minecraft/client/multiplayer/chat/report/ChatReportBuilder$ChatReport/f_252523_ net/minecraft/client/multiplayer/chat/report/ChatReportBuilder$ChatReport/this$0 +FD: net/minecraft/client/multiplayer/chat/report/ChatReportBuilder$ChatReport/f_252536_ net/minecraft/client/multiplayer/chat/report/ChatReportBuilder$ChatReport/reportedProfileId +FD: net/minecraft/client/multiplayer/chat/report/ChatReportBuilder$Result/f_238727_ net/minecraft/client/multiplayer/chat/report/ChatReportBuilder$Result/report +FD: net/minecraft/client/multiplayer/chat/report/ChatReportBuilder$Result/f_238815_ net/minecraft/client/multiplayer/chat/report/ChatReportBuilder$Result/id +FD: net/minecraft/client/multiplayer/chat/report/ChatReportContextBuilder/f_244017_ net/minecraft/client/multiplayer/chat/report/ChatReportContextBuilder/leadingCount +FD: net/minecraft/client/multiplayer/chat/report/ChatReportContextBuilder/f_244428_ net/minecraft/client/multiplayer/chat/report/ChatReportContextBuilder/activeCollectors +FD: net/minecraft/client/multiplayer/chat/report/ChatReportContextBuilder$Collector/f_243826_ net/minecraft/client/multiplayer/chat/report/ChatReportContextBuilder$Collector/count +FD: net/minecraft/client/multiplayer/chat/report/ChatReportContextBuilder$Collector/f_244002_ net/minecraft/client/multiplayer/chat/report/ChatReportContextBuilder$Collector/lastSeenSignatures +FD: net/minecraft/client/multiplayer/chat/report/ChatReportContextBuilder$Collector/f_244297_ net/minecraft/client/multiplayer/chat/report/ChatReportContextBuilder$Collector/this$0 +FD: net/minecraft/client/multiplayer/chat/report/ChatReportContextBuilder$Collector/f_244348_ net/minecraft/client/multiplayer/chat/report/ChatReportContextBuilder$Collector/collectingChain +FD: net/minecraft/client/multiplayer/chat/report/ChatReportContextBuilder$Collector/f_244412_ net/minecraft/client/multiplayer/chat/report/ChatReportContextBuilder$Collector/lastChainMessage +FD: net/minecraft/client/multiplayer/chat/report/ReportEnvironment/f_238655_ net/minecraft/client/multiplayer/chat/report/ReportEnvironment/server +FD: net/minecraft/client/multiplayer/chat/report/ReportEnvironment/f_238774_ net/minecraft/client/multiplayer/chat/report/ReportEnvironment/clientVersion +FD: net/minecraft/client/multiplayer/chat/report/ReportEnvironment$Server$Realm/f_238670_ net/minecraft/client/multiplayer/chat/report/ReportEnvironment$Server$Realm/slotId +FD: net/minecraft/client/multiplayer/chat/report/ReportEnvironment$Server$Realm/f_238769_ net/minecraft/client/multiplayer/chat/report/ReportEnvironment$Server$Realm/realmId +FD: net/minecraft/client/multiplayer/chat/report/ReportEnvironment$Server$ThirdParty/f_238648_ net/minecraft/client/multiplayer/chat/report/ReportEnvironment$Server$ThirdParty/ip +FD: net/minecraft/client/multiplayer/chat/report/ReportReason/$VALUES net/minecraft/client/multiplayer/chat/report/ReportReason/$VALUES +FD: net/minecraft/client/multiplayer/chat/report/ReportReason/ALCOHOL_TOBACCO_DRUGS net/minecraft/client/multiplayer/chat/report/ReportReason/ALCOHOL_TOBACCO_DRUGS +FD: net/minecraft/client/multiplayer/chat/report/ReportReason/CHILD_SEXUAL_EXPLOITATION_OR_ABUSE net/minecraft/client/multiplayer/chat/report/ReportReason/CHILD_SEXUAL_EXPLOITATION_OR_ABUSE +FD: net/minecraft/client/multiplayer/chat/report/ReportReason/DEFAMATION_IMPERSONATION_FALSE_INFORMATION net/minecraft/client/multiplayer/chat/report/ReportReason/DEFAMATION_IMPERSONATION_FALSE_INFORMATION +FD: net/minecraft/client/multiplayer/chat/report/ReportReason/HARASSMENT_OR_BULLYING net/minecraft/client/multiplayer/chat/report/ReportReason/HARASSMENT_OR_BULLYING +FD: net/minecraft/client/multiplayer/chat/report/ReportReason/HATE_SPEECH net/minecraft/client/multiplayer/chat/report/ReportReason/HATE_SPEECH +FD: net/minecraft/client/multiplayer/chat/report/ReportReason/IMMINENT_HARM net/minecraft/client/multiplayer/chat/report/ReportReason/IMMINENT_HARM +FD: net/minecraft/client/multiplayer/chat/report/ReportReason/NON_CONSENSUAL_INTIMATE_IMAGERY net/minecraft/client/multiplayer/chat/report/ReportReason/NON_CONSENSUAL_INTIMATE_IMAGERY +FD: net/minecraft/client/multiplayer/chat/report/ReportReason/SELF_HARM_OR_SUICIDE net/minecraft/client/multiplayer/chat/report/ReportReason/SELF_HARM_OR_SUICIDE +FD: net/minecraft/client/multiplayer/chat/report/ReportReason/TERRORISM_OR_VIOLENT_EXTREMISM net/minecraft/client/multiplayer/chat/report/ReportReason/TERRORISM_OR_VIOLENT_EXTREMISM +FD: net/minecraft/client/multiplayer/chat/report/ReportReason/f_238735_ net/minecraft/client/multiplayer/chat/report/ReportReason/backendName +FD: net/minecraft/client/multiplayer/chat/report/ReportReason/f_238806_ net/minecraft/client/multiplayer/chat/report/ReportReason/title +FD: net/minecraft/client/multiplayer/chat/report/ReportReason/f_238818_ net/minecraft/client/multiplayer/chat/report/ReportReason/description +FD: net/minecraft/client/multiplayer/chat/report/ReportingContext/f_238644_ net/minecraft/client/multiplayer/chat/report/ReportingContext/environment +FD: net/minecraft/client/multiplayer/chat/report/ReportingContext/f_238706_ net/minecraft/client/multiplayer/chat/report/ReportingContext/sender +FD: net/minecraft/client/multiplayer/chat/report/ReportingContext/f_238714_ net/minecraft/client/multiplayer/chat/report/ReportingContext/LOG_CAPACITY +FD: net/minecraft/client/multiplayer/chat/report/ReportingContext/f_238743_ net/minecraft/client/multiplayer/chat/report/ReportingContext/chatLog +FD: net/minecraft/client/multiplayer/chat/report/ReportingContext/f_252449_ net/minecraft/client/multiplayer/chat/report/ReportingContext/chatReportDraft +FD: net/minecraft/client/multiplayer/prediction/BlockStatePredictionHandler/f_233851_ net/minecraft/client/multiplayer/prediction/BlockStatePredictionHandler/serverVerifiedStates +FD: net/minecraft/client/multiplayer/prediction/BlockStatePredictionHandler/f_233852_ net/minecraft/client/multiplayer/prediction/BlockStatePredictionHandler/currentSequenceNr +FD: net/minecraft/client/multiplayer/prediction/BlockStatePredictionHandler/f_233853_ net/minecraft/client/multiplayer/prediction/BlockStatePredictionHandler/isPredicting +FD: net/minecraft/client/multiplayer/prediction/BlockStatePredictionHandler$ServerVerifiedState/f_233874_ net/minecraft/client/multiplayer/prediction/BlockStatePredictionHandler$ServerVerifiedState/playerPos +FD: net/minecraft/client/multiplayer/prediction/BlockStatePredictionHandler$ServerVerifiedState/f_233875_ net/minecraft/client/multiplayer/prediction/BlockStatePredictionHandler$ServerVerifiedState/sequence +FD: net/minecraft/client/multiplayer/prediction/BlockStatePredictionHandler$ServerVerifiedState/f_233876_ net/minecraft/client/multiplayer/prediction/BlockStatePredictionHandler$ServerVerifiedState/blockState +FD: net/minecraft/client/multiplayer/resolver/AddressCheck$1/f_171831_ net/minecraft/client/multiplayer/resolver/AddressCheck$1/val$blockLists +FD: net/minecraft/client/multiplayer/resolver/ResolvedServerAddress$1/f_171847_ net/minecraft/client/multiplayer/resolver/ResolvedServerAddress$1/val$address +FD: net/minecraft/client/multiplayer/resolver/ServerAddress/f_171854_ net/minecraft/client/multiplayer/resolver/ServerAddress/LOGGER +FD: net/minecraft/client/multiplayer/resolver/ServerAddress/f_171855_ net/minecraft/client/multiplayer/resolver/ServerAddress/hostAndPort +FD: net/minecraft/client/multiplayer/resolver/ServerAddress/f_171856_ net/minecraft/client/multiplayer/resolver/ServerAddress/INVALID +FD: net/minecraft/client/multiplayer/resolver/ServerAddressResolver/f_171874_ net/minecraft/client/multiplayer/resolver/ServerAddressResolver/LOGGER +FD: net/minecraft/client/multiplayer/resolver/ServerAddressResolver/f_171875_ net/minecraft/client/multiplayer/resolver/ServerAddressResolver/SYSTEM +FD: net/minecraft/client/multiplayer/resolver/ServerNameResolver/f_171881_ net/minecraft/client/multiplayer/resolver/ServerNameResolver/DEFAULT +FD: net/minecraft/client/multiplayer/resolver/ServerNameResolver/f_171882_ net/minecraft/client/multiplayer/resolver/ServerNameResolver/resolver +FD: net/minecraft/client/multiplayer/resolver/ServerNameResolver/f_171883_ net/minecraft/client/multiplayer/resolver/ServerNameResolver/redirectHandler +FD: net/minecraft/client/multiplayer/resolver/ServerNameResolver/f_171884_ net/minecraft/client/multiplayer/resolver/ServerNameResolver/addressCheck +FD: net/minecraft/client/multiplayer/resolver/ServerRedirectHandler/f_171892_ net/minecraft/client/multiplayer/resolver/ServerRedirectHandler/LOGGER +FD: net/minecraft/client/multiplayer/resolver/ServerRedirectHandler/f_171893_ net/minecraft/client/multiplayer/resolver/ServerRedirectHandler/EMPTY +FD: net/minecraft/client/particle/AshParticle$Provider/f_105523_ net/minecraft/client/particle/AshParticle$Provider/sprites +FD: net/minecraft/client/particle/AttackSweepParticle/f_105544_ net/minecraft/client/particle/AttackSweepParticle/sprites +FD: net/minecraft/client/particle/AttackSweepParticle$Provider/f_105564_ net/minecraft/client/particle/AttackSweepParticle$Provider/sprites +FD: net/minecraft/client/particle/BaseAshSmokeParticle/f_105620_ net/minecraft/client/particle/BaseAshSmokeParticle/sprites +FD: net/minecraft/client/particle/BreakingItemParticle/f_105643_ net/minecraft/client/particle/BreakingItemParticle/uo +FD: net/minecraft/client/particle/BreakingItemParticle/f_105644_ net/minecraft/client/particle/BreakingItemParticle/vo +FD: net/minecraft/client/particle/BubbleColumnUpParticle$Provider/f_105751_ net/minecraft/client/particle/BubbleColumnUpParticle$Provider/sprite +FD: net/minecraft/client/particle/BubbleParticle$Provider/f_105791_ net/minecraft/client/particle/BubbleParticle$Provider/sprite +FD: net/minecraft/client/particle/BubblePopParticle/f_105812_ net/minecraft/client/particle/BubblePopParticle/sprites +FD: net/minecraft/client/particle/BubblePopParticle$Provider/f_105834_ net/minecraft/client/particle/BubblePopParticle$Provider/sprites +FD: net/minecraft/client/particle/CampfireSmokeParticle$CosyProvider/f_105876_ net/minecraft/client/particle/CampfireSmokeParticle$CosyProvider/sprites +FD: net/minecraft/client/particle/CampfireSmokeParticle$SignalProvider/f_105897_ net/minecraft/client/particle/CampfireSmokeParticle$SignalProvider/sprites +FD: net/minecraft/client/particle/CherryParticle/f_276422_ net/minecraft/client/particle/CherryParticle/FALL_ACC +FD: net/minecraft/client/particle/CherryParticle/f_276480_ net/minecraft/client/particle/CherryParticle/CURVE_ENDPOINT_TIME +FD: net/minecraft/client/particle/CherryParticle/f_276513_ net/minecraft/client/particle/CherryParticle/spinAcceleration +FD: net/minecraft/client/particle/CherryParticle/f_276535_ net/minecraft/client/particle/CherryParticle/particleRandom +FD: net/minecraft/client/particle/CherryParticle/f_276609_ net/minecraft/client/particle/CherryParticle/rotSpeed +FD: net/minecraft/client/particle/CherryParticle/f_276642_ net/minecraft/client/particle/CherryParticle/ACCELERATION_SCALE +FD: net/minecraft/client/particle/CherryParticle/f_276657_ net/minecraft/client/particle/CherryParticle/WIND_BIG +FD: net/minecraft/client/particle/CherryParticle/f_276664_ net/minecraft/client/particle/CherryParticle/INITIAL_LIFETIME +FD: net/minecraft/client/particle/CritParticle$DamageIndicatorProvider/f_105939_ net/minecraft/client/particle/CritParticle$DamageIndicatorProvider/sprite +FD: net/minecraft/client/particle/CritParticle$MagicProvider/f_105960_ net/minecraft/client/particle/CritParticle$MagicProvider/sprite +FD: net/minecraft/client/particle/CritParticle$Provider/f_105981_ net/minecraft/client/particle/CritParticle$Provider/sprite +FD: net/minecraft/client/particle/DragonBreathParticle/f_106002_ net/minecraft/client/particle/DragonBreathParticle/hasHitGround +FD: net/minecraft/client/particle/DragonBreathParticle/f_106003_ net/minecraft/client/particle/DragonBreathParticle/sprites +FD: net/minecraft/client/particle/DragonBreathParticle/f_171920_ net/minecraft/client/particle/DragonBreathParticle/COLOR_MIN_RED +FD: net/minecraft/client/particle/DragonBreathParticle/f_171921_ net/minecraft/client/particle/DragonBreathParticle/COLOR_MIN_GREEN +FD: net/minecraft/client/particle/DragonBreathParticle/f_171922_ net/minecraft/client/particle/DragonBreathParticle/COLOR_MIN_BLUE +FD: net/minecraft/client/particle/DragonBreathParticle/f_171923_ net/minecraft/client/particle/DragonBreathParticle/COLOR_MAX_RED +FD: net/minecraft/client/particle/DragonBreathParticle/f_171924_ net/minecraft/client/particle/DragonBreathParticle/COLOR_MAX_GREEN +FD: net/minecraft/client/particle/DragonBreathParticle/f_171925_ net/minecraft/client/particle/DragonBreathParticle/COLOR_MAX_BLUE +FD: net/minecraft/client/particle/DragonBreathParticle/f_171926_ net/minecraft/client/particle/DragonBreathParticle/COLOR_MIN +FD: net/minecraft/client/particle/DragonBreathParticle/f_171927_ net/minecraft/client/particle/DragonBreathParticle/COLOR_MAX +FD: net/minecraft/client/particle/DragonBreathParticle$Provider/f_106027_ net/minecraft/client/particle/DragonBreathParticle$Provider/sprites +FD: net/minecraft/client/particle/DripParticle/f_106048_ net/minecraft/client/particle/DripParticle/isGlowing +FD: net/minecraft/client/particle/DripParticle/f_106049_ net/minecraft/client/particle/DripParticle/type +FD: net/minecraft/client/particle/DripParticle$DripHangParticle/f_106083_ net/minecraft/client/particle/DripParticle$DripHangParticle/fallingParticle +FD: net/minecraft/client/particle/DripParticle$FallAndLandParticle/f_106114_ net/minecraft/client/particle/DripParticle$FallAndLandParticle/landParticle +FD: net/minecraft/client/particle/DustColorTransitionParticle/f_172050_ net/minecraft/client/particle/DustColorTransitionParticle/fromColor +FD: net/minecraft/client/particle/DustColorTransitionParticle/f_172051_ net/minecraft/client/particle/DustColorTransitionParticle/toColor +FD: net/minecraft/client/particle/DustColorTransitionParticle$Provider/f_172071_ net/minecraft/client/particle/DustColorTransitionParticle$Provider/sprites +FD: net/minecraft/client/particle/DustParticle$Provider/f_106439_ net/minecraft/client/particle/DustParticle$Provider/sprites +FD: net/minecraft/client/particle/DustParticleBase/f_172092_ net/minecraft/client/particle/DustParticleBase/sprites +FD: net/minecraft/client/particle/EnchantmentTableParticle/f_106460_ net/minecraft/client/particle/EnchantmentTableParticle/zStart +FD: net/minecraft/client/particle/EnchantmentTableParticle/f_106461_ net/minecraft/client/particle/EnchantmentTableParticle/xStart +FD: net/minecraft/client/particle/EnchantmentTableParticle/f_106462_ net/minecraft/client/particle/EnchantmentTableParticle/yStart +FD: net/minecraft/client/particle/EnchantmentTableParticle$NautilusProvider/f_106488_ net/minecraft/client/particle/EnchantmentTableParticle$NautilusProvider/sprite +FD: net/minecraft/client/particle/EnchantmentTableParticle$Provider/f_106509_ net/minecraft/client/particle/EnchantmentTableParticle$Provider/sprite +FD: net/minecraft/client/particle/EndRodParticle$Provider/f_106553_ net/minecraft/client/particle/EndRodParticle$Provider/sprites +FD: net/minecraft/client/particle/ExplodeParticle/f_106574_ net/minecraft/client/particle/ExplodeParticle/sprites +FD: net/minecraft/client/particle/ExplodeParticle$Provider/f_106586_ net/minecraft/client/particle/ExplodeParticle$Provider/sprites +FD: net/minecraft/client/particle/FallingDustParticle/f_106607_ net/minecraft/client/particle/FallingDustParticle/rotSpeed +FD: net/minecraft/client/particle/FallingDustParticle/f_106608_ net/minecraft/client/particle/FallingDustParticle/sprites +FD: net/minecraft/client/particle/FallingDustParticle$Provider/f_106632_ net/minecraft/client/particle/FallingDustParticle$Provider/sprite +FD: net/minecraft/client/particle/FireworkParticles$1/f_106653_ net/minecraft/client/particle/FireworkParticles$1/$SwitchMap$net$minecraft$world$item$FireworkRocketItem$Shape +FD: net/minecraft/client/particle/FireworkParticles$FlashProvider/f_106655_ net/minecraft/client/particle/FireworkParticles$FlashProvider/sprite +FD: net/minecraft/client/particle/FireworkParticles$SparkParticle/f_106694_ net/minecraft/client/particle/FireworkParticles$SparkParticle/flicker +FD: net/minecraft/client/particle/FireworkParticles$SparkParticle/f_106695_ net/minecraft/client/particle/FireworkParticles$SparkParticle/engine +FD: net/minecraft/client/particle/FireworkParticles$SparkParticle/f_106696_ net/minecraft/client/particle/FireworkParticles$SparkParticle/fadeR +FD: net/minecraft/client/particle/FireworkParticles$SparkParticle/f_106697_ net/minecraft/client/particle/FireworkParticles$SparkParticle/fadeG +FD: net/minecraft/client/particle/FireworkParticles$SparkParticle/f_106698_ net/minecraft/client/particle/FireworkParticles$SparkParticle/fadeB +FD: net/minecraft/client/particle/FireworkParticles$SparkParticle/f_106699_ net/minecraft/client/particle/FireworkParticles$SparkParticle/hasFade +FD: net/minecraft/client/particle/FireworkParticles$SparkParticle/f_106700_ net/minecraft/client/particle/FireworkParticles$SparkParticle/trail +FD: net/minecraft/client/particle/FireworkParticles$SparkProvider/f_106731_ net/minecraft/client/particle/FireworkParticles$SparkProvider/sprites +FD: net/minecraft/client/particle/FireworkParticles$Starter/f_106752_ net/minecraft/client/particle/FireworkParticles$Starter/explosions +FD: net/minecraft/client/particle/FireworkParticles$Starter/f_106753_ net/minecraft/client/particle/FireworkParticles$Starter/twinkleDelay +FD: net/minecraft/client/particle/FireworkParticles$Starter/f_106754_ net/minecraft/client/particle/FireworkParticles$Starter/life +FD: net/minecraft/client/particle/FireworkParticles$Starter/f_106755_ net/minecraft/client/particle/FireworkParticles$Starter/engine +FD: net/minecraft/client/particle/FlameParticle$Provider/f_106825_ net/minecraft/client/particle/FlameParticle$Provider/sprite +FD: net/minecraft/client/particle/FlameParticle$SmallFlameProvider/f_172111_ net/minecraft/client/particle/FlameParticle$SmallFlameProvider/sprite +FD: net/minecraft/client/particle/GlowParticle/f_172132_ net/minecraft/client/particle/GlowParticle/RANDOM +FD: net/minecraft/client/particle/GlowParticle/f_172133_ net/minecraft/client/particle/GlowParticle/sprites +FD: net/minecraft/client/particle/GlowParticle$ElectricSparkProvider/f_172148_ net/minecraft/client/particle/GlowParticle$ElectricSparkProvider/SPEED_FACTOR +FD: net/minecraft/client/particle/GlowParticle$ElectricSparkProvider/f_172149_ net/minecraft/client/particle/GlowParticle$ElectricSparkProvider/sprite +FD: net/minecraft/client/particle/GlowParticle$GlowSquidProvider/f_172170_ net/minecraft/client/particle/GlowParticle$GlowSquidProvider/sprite +FD: net/minecraft/client/particle/GlowParticle$ScrapeProvider/f_172191_ net/minecraft/client/particle/GlowParticle$ScrapeProvider/SPEED_FACTOR +FD: net/minecraft/client/particle/GlowParticle$ScrapeProvider/f_172192_ net/minecraft/client/particle/GlowParticle$ScrapeProvider/sprite +FD: net/minecraft/client/particle/GlowParticle$WaxOffProvider/f_172213_ net/minecraft/client/particle/GlowParticle$WaxOffProvider/SPEED_FACTOR +FD: net/minecraft/client/particle/GlowParticle$WaxOffProvider/f_172214_ net/minecraft/client/particle/GlowParticle$WaxOffProvider/sprite +FD: net/minecraft/client/particle/GlowParticle$WaxOnProvider/f_172235_ net/minecraft/client/particle/GlowParticle$WaxOnProvider/SPEED_FACTOR +FD: net/minecraft/client/particle/GlowParticle$WaxOnProvider/f_172236_ net/minecraft/client/particle/GlowParticle$WaxOnProvider/sprite +FD: net/minecraft/client/particle/HeartParticle$AngryVillagerProvider/f_106861_ net/minecraft/client/particle/HeartParticle$AngryVillagerProvider/sprite +FD: net/minecraft/client/particle/HeartParticle$Provider/f_106882_ net/minecraft/client/particle/HeartParticle$Provider/sprite +FD: net/minecraft/client/particle/HugeExplosionParticle/f_106903_ net/minecraft/client/particle/HugeExplosionParticle/sprites +FD: net/minecraft/client/particle/HugeExplosionParticle$Provider/f_106923_ net/minecraft/client/particle/HugeExplosionParticle$Provider/sprites +FD: net/minecraft/client/particle/HugeExplosionSeedParticle/f_106944_ net/minecraft/client/particle/HugeExplosionSeedParticle/life +FD: net/minecraft/client/particle/HugeExplosionSeedParticle/f_106945_ net/minecraft/client/particle/HugeExplosionSeedParticle/lifeTime +FD: net/minecraft/client/particle/ItemPickupParticle/f_107017_ net/minecraft/client/particle/ItemPickupParticle/target +FD: net/minecraft/client/particle/ItemPickupParticle/f_107018_ net/minecraft/client/particle/ItemPickupParticle/life +FD: net/minecraft/client/particle/ItemPickupParticle/f_107019_ net/minecraft/client/particle/ItemPickupParticle/entityRenderDispatcher +FD: net/minecraft/client/particle/ItemPickupParticle/f_107020_ net/minecraft/client/particle/ItemPickupParticle/renderBuffers +FD: net/minecraft/client/particle/ItemPickupParticle/f_107021_ net/minecraft/client/particle/ItemPickupParticle/itemEntity +FD: net/minecraft/client/particle/ItemPickupParticle/f_172257_ net/minecraft/client/particle/ItemPickupParticle/LIFE_TIME +FD: net/minecraft/client/particle/LargeSmokeParticle$Provider/f_107052_ net/minecraft/client/particle/LargeSmokeParticle$Provider/sprites +FD: net/minecraft/client/particle/LavaParticle$Provider/f_107090_ net/minecraft/client/particle/LavaParticle$Provider/sprite +FD: net/minecraft/client/particle/MobAppearanceParticle/f_107111_ net/minecraft/client/particle/MobAppearanceParticle/model +FD: net/minecraft/client/particle/MobAppearanceParticle/f_107112_ net/minecraft/client/particle/MobAppearanceParticle/renderType +FD: net/minecraft/client/particle/NoteParticle$Provider/f_107183_ net/minecraft/client/particle/NoteParticle$Provider/sprite +FD: net/minecraft/client/particle/Particle/f_107204_ net/minecraft/client/particle/Particle/oRoll +FD: net/minecraft/client/particle/Particle/f_107205_ net/minecraft/client/particle/Particle/stoppedByCollision +FD: net/minecraft/client/particle/Particle/f_107206_ net/minecraft/client/particle/Particle/INITIAL_AABB +FD: net/minecraft/client/particle/Particle/f_107207_ net/minecraft/client/particle/Particle/bb +FD: net/minecraft/client/particle/Particle/f_107208_ net/minecraft/client/particle/Particle/level +FD: net/minecraft/client/particle/Particle/f_107209_ net/minecraft/client/particle/Particle/xo +FD: net/minecraft/client/particle/Particle/f_107210_ net/minecraft/client/particle/Particle/yo +FD: net/minecraft/client/particle/Particle/f_107211_ net/minecraft/client/particle/Particle/zo +FD: net/minecraft/client/particle/Particle/f_107212_ net/minecraft/client/particle/Particle/x +FD: net/minecraft/client/particle/Particle/f_107213_ net/minecraft/client/particle/Particle/y +FD: net/minecraft/client/particle/Particle/f_107214_ net/minecraft/client/particle/Particle/z +FD: net/minecraft/client/particle/Particle/f_107215_ net/minecraft/client/particle/Particle/xd +FD: net/minecraft/client/particle/Particle/f_107216_ net/minecraft/client/particle/Particle/yd +FD: net/minecraft/client/particle/Particle/f_107217_ net/minecraft/client/particle/Particle/zd +FD: net/minecraft/client/particle/Particle/f_107218_ net/minecraft/client/particle/Particle/onGround +FD: net/minecraft/client/particle/Particle/f_107219_ net/minecraft/client/particle/Particle/hasPhysics +FD: net/minecraft/client/particle/Particle/f_107220_ net/minecraft/client/particle/Particle/removed +FD: net/minecraft/client/particle/Particle/f_107221_ net/minecraft/client/particle/Particle/bbWidth +FD: net/minecraft/client/particle/Particle/f_107222_ net/minecraft/client/particle/Particle/bbHeight +FD: net/minecraft/client/particle/Particle/f_107223_ net/minecraft/client/particle/Particle/random +FD: net/minecraft/client/particle/Particle/f_107224_ net/minecraft/client/particle/Particle/age +FD: net/minecraft/client/particle/Particle/f_107225_ net/minecraft/client/particle/Particle/lifetime +FD: net/minecraft/client/particle/Particle/f_107226_ net/minecraft/client/particle/Particle/gravity +FD: net/minecraft/client/particle/Particle/f_107227_ net/minecraft/client/particle/Particle/rCol +FD: net/minecraft/client/particle/Particle/f_107228_ net/minecraft/client/particle/Particle/gCol +FD: net/minecraft/client/particle/Particle/f_107229_ net/minecraft/client/particle/Particle/bCol +FD: net/minecraft/client/particle/Particle/f_107230_ net/minecraft/client/particle/Particle/alpha +FD: net/minecraft/client/particle/Particle/f_107231_ net/minecraft/client/particle/Particle/roll +FD: net/minecraft/client/particle/Particle/f_172258_ net/minecraft/client/particle/Particle/friction +FD: net/minecraft/client/particle/Particle/f_172259_ net/minecraft/client/particle/Particle/speedUpWhenYMotionIsBlocked +FD: net/minecraft/client/particle/Particle/f_197408_ net/minecraft/client/particle/Particle/MAXIMUM_COLLISION_VELOCITY_SQUARED +FD: net/minecraft/client/particle/ParticleDescription/f_107279_ net/minecraft/client/particle/ParticleDescription/textures +FD: net/minecraft/client/particle/ParticleEngine/f_107287_ net/minecraft/client/particle/ParticleEngine/level +FD: net/minecraft/client/particle/ParticleEngine/f_107288_ net/minecraft/client/particle/ParticleEngine/RENDER_ORDER +FD: net/minecraft/client/particle/ParticleEngine/f_107289_ net/minecraft/client/particle/ParticleEngine/particles +FD: net/minecraft/client/particle/ParticleEngine/f_107290_ net/minecraft/client/particle/ParticleEngine/trackingEmitters +FD: net/minecraft/client/particle/ParticleEngine/f_107291_ net/minecraft/client/particle/ParticleEngine/textureManager +FD: net/minecraft/client/particle/ParticleEngine/f_107292_ net/minecraft/client/particle/ParticleEngine/random +FD: net/minecraft/client/particle/ParticleEngine/f_107293_ net/minecraft/client/particle/ParticleEngine/providers +FD: net/minecraft/client/particle/ParticleEngine/f_107294_ net/minecraft/client/particle/ParticleEngine/particlesToAdd +FD: net/minecraft/client/particle/ParticleEngine/f_107295_ net/minecraft/client/particle/ParticleEngine/spriteSets +FD: net/minecraft/client/particle/ParticleEngine/f_107296_ net/minecraft/client/particle/ParticleEngine/textureAtlas +FD: net/minecraft/client/particle/ParticleEngine/f_172264_ net/minecraft/client/particle/ParticleEngine/MAX_PARTICLES_PER_LAYER +FD: net/minecraft/client/particle/ParticleEngine/f_172265_ net/minecraft/client/particle/ParticleEngine/trackedParticleCounts +FD: net/minecraft/client/particle/ParticleEngine/f_243727_ net/minecraft/client/particle/ParticleEngine/LOGGER +FD: net/minecraft/client/particle/ParticleEngine/f_243929_ net/minecraft/client/particle/ParticleEngine/PARTICLE_LISTER +FD: net/minecraft/client/particle/ParticleEngine/f_260634_ net/minecraft/client/particle/ParticleEngine/PARTICLES_ATLAS_INFO +FD: net/minecraft/client/particle/ParticleEngine$1ParticleDefinition/f_243741_ net/minecraft/client/particle/ParticleEngine$1ParticleDefinition/sprites +FD: net/minecraft/client/particle/ParticleEngine$1ParticleDefinition/f_244103_ net/minecraft/client/particle/ParticleEngine$1ParticleDefinition/id +FD: net/minecraft/client/particle/ParticleEngine$MutableSpriteSet/f_107406_ net/minecraft/client/particle/ParticleEngine$MutableSpriteSet/sprites +FD: net/minecraft/client/particle/ParticleRenderType/f_107429_ net/minecraft/client/particle/ParticleRenderType/TERRAIN_SHEET +FD: net/minecraft/client/particle/ParticleRenderType/f_107430_ net/minecraft/client/particle/ParticleRenderType/PARTICLE_SHEET_OPAQUE +FD: net/minecraft/client/particle/ParticleRenderType/f_107431_ net/minecraft/client/particle/ParticleRenderType/PARTICLE_SHEET_TRANSLUCENT +FD: net/minecraft/client/particle/ParticleRenderType/f_107432_ net/minecraft/client/particle/ParticleRenderType/PARTICLE_SHEET_LIT +FD: net/minecraft/client/particle/ParticleRenderType/f_107433_ net/minecraft/client/particle/ParticleRenderType/CUSTOM +FD: net/minecraft/client/particle/ParticleRenderType/f_107434_ net/minecraft/client/particle/ParticleRenderType/NO_RENDER +FD: net/minecraft/client/particle/PlayerCloudParticle/f_107481_ net/minecraft/client/particle/PlayerCloudParticle/sprites +FD: net/minecraft/client/particle/PlayerCloudParticle$Provider/f_107505_ net/minecraft/client/particle/PlayerCloudParticle$Provider/sprites +FD: net/minecraft/client/particle/PlayerCloudParticle$SneezeProvider/f_107526_ net/minecraft/client/particle/PlayerCloudParticle$SneezeProvider/sprites +FD: net/minecraft/client/particle/PortalParticle/f_107547_ net/minecraft/client/particle/PortalParticle/zStart +FD: net/minecraft/client/particle/PortalParticle/f_107548_ net/minecraft/client/particle/PortalParticle/xStart +FD: net/minecraft/client/particle/PortalParticle/f_107549_ net/minecraft/client/particle/PortalParticle/yStart +FD: net/minecraft/client/particle/PortalParticle$Provider/f_107568_ net/minecraft/client/particle/PortalParticle$Provider/sprite +FD: net/minecraft/client/particle/ReversePortalParticle$ReversePortalProvider/f_107609_ net/minecraft/client/particle/ReversePortalParticle$ReversePortalProvider/sprite +FD: net/minecraft/client/particle/SculkChargeParticle/f_233890_ net/minecraft/client/particle/SculkChargeParticle/sprites +FD: net/minecraft/client/particle/SculkChargeParticle$Provider/f_233904_ net/minecraft/client/particle/SculkChargeParticle$Provider/sprite +FD: net/minecraft/client/particle/SculkChargePopParticle/f_233930_ net/minecraft/client/particle/SculkChargePopParticle/sprites +FD: net/minecraft/client/particle/SculkChargePopParticle$Provider/f_233944_ net/minecraft/client/particle/SculkChargePopParticle$Provider/sprite +FD: net/minecraft/client/particle/ShriekParticle/f_233970_ net/minecraft/client/particle/ShriekParticle/MAGICAL_X_ROT +FD: net/minecraft/client/particle/ShriekParticle/f_233971_ net/minecraft/client/particle/ShriekParticle/delay +FD: net/minecraft/client/particle/ShriekParticle/f_233972_ net/minecraft/client/particle/ShriekParticle/ROTATION_VECTOR +FD: net/minecraft/client/particle/ShriekParticle/f_233973_ net/minecraft/client/particle/ShriekParticle/TRANSFORM_VECTOR +FD: net/minecraft/client/particle/ShriekParticle$Provider/f_234006_ net/minecraft/client/particle/ShriekParticle$Provider/sprite +FD: net/minecraft/client/particle/SimpleAnimatedParticle/f_107640_ net/minecraft/client/particle/SimpleAnimatedParticle/fadeR +FD: net/minecraft/client/particle/SimpleAnimatedParticle/f_107641_ net/minecraft/client/particle/SimpleAnimatedParticle/fadeG +FD: net/minecraft/client/particle/SimpleAnimatedParticle/f_107642_ net/minecraft/client/particle/SimpleAnimatedParticle/fadeB +FD: net/minecraft/client/particle/SimpleAnimatedParticle/f_107643_ net/minecraft/client/particle/SimpleAnimatedParticle/hasFade +FD: net/minecraft/client/particle/SimpleAnimatedParticle/f_107644_ net/minecraft/client/particle/SimpleAnimatedParticle/sprites +FD: net/minecraft/client/particle/SingleQuadParticle/f_107663_ net/minecraft/client/particle/SingleQuadParticle/quadSize +FD: net/minecraft/client/particle/SmokeParticle$Provider/f_107694_ net/minecraft/client/particle/SmokeParticle$Provider/sprites +FD: net/minecraft/client/particle/SnowflakeParticle/f_172290_ net/minecraft/client/particle/SnowflakeParticle/sprites +FD: net/minecraft/client/particle/SnowflakeParticle$Provider/f_172302_ net/minecraft/client/particle/SnowflakeParticle$Provider/sprites +FD: net/minecraft/client/particle/SonicBoomParticle$Provider/f_234034_ net/minecraft/client/particle/SonicBoomParticle$Provider/sprites +FD: net/minecraft/client/particle/SoulParticle/f_107715_ net/minecraft/client/particle/SoulParticle/sprites +FD: net/minecraft/client/particle/SoulParticle/f_234078_ net/minecraft/client/particle/SoulParticle/isGlowing +FD: net/minecraft/client/particle/SoulParticle$EmissiveProvider/f_234081_ net/minecraft/client/particle/SoulParticle$EmissiveProvider/sprite +FD: net/minecraft/client/particle/SoulParticle$Provider/f_107737_ net/minecraft/client/particle/SoulParticle$Provider/sprite +FD: net/minecraft/client/particle/SpellParticle/f_107758_ net/minecraft/client/particle/SpellParticle/RANDOM +FD: net/minecraft/client/particle/SpellParticle/f_107759_ net/minecraft/client/particle/SpellParticle/sprites +FD: net/minecraft/client/particle/SpellParticle$AmbientMobProvider/f_107782_ net/minecraft/client/particle/SpellParticle$AmbientMobProvider/sprite +FD: net/minecraft/client/particle/SpellParticle$InstantProvider/f_107803_ net/minecraft/client/particle/SpellParticle$InstantProvider/sprite +FD: net/minecraft/client/particle/SpellParticle$MobProvider/f_107824_ net/minecraft/client/particle/SpellParticle$MobProvider/sprite +FD: net/minecraft/client/particle/SpellParticle$Provider/f_107845_ net/minecraft/client/particle/SpellParticle$Provider/sprite +FD: net/minecraft/client/particle/SpellParticle$WitchProvider/f_107866_ net/minecraft/client/particle/SpellParticle$WitchProvider/sprite +FD: net/minecraft/client/particle/SpitParticle$Provider/f_107907_ net/minecraft/client/particle/SpitParticle$Provider/sprites +FD: net/minecraft/client/particle/SplashParticle$Provider/f_107945_ net/minecraft/client/particle/SplashParticle$Provider/sprite +FD: net/minecraft/client/particle/SquidInkParticle$GlowInkProvider/f_172334_ net/minecraft/client/particle/SquidInkParticle$GlowInkProvider/sprites +FD: net/minecraft/client/particle/SquidInkParticle$Provider/f_107989_ net/minecraft/client/particle/SquidInkParticle$Provider/sprites +FD: net/minecraft/client/particle/SuspendedParticle$CrimsonSporeProvider/f_108040_ net/minecraft/client/particle/SuspendedParticle$CrimsonSporeProvider/sprite +FD: net/minecraft/client/particle/SuspendedParticle$SporeBlossomAirProvider/f_172417_ net/minecraft/client/particle/SuspendedParticle$SporeBlossomAirProvider/sprite +FD: net/minecraft/client/particle/SuspendedParticle$SporeBlossomAirProvider$1/f_172438_ net/minecraft/client/particle/SuspendedParticle$SporeBlossomAirProvider$1/this$0 +FD: net/minecraft/client/particle/SuspendedParticle$UnderwaterProvider/f_108061_ net/minecraft/client/particle/SuspendedParticle$UnderwaterProvider/sprite +FD: net/minecraft/client/particle/SuspendedParticle$WarpedSporeProvider/f_108082_ net/minecraft/client/particle/SuspendedParticle$WarpedSporeProvider/sprite +FD: net/minecraft/client/particle/SuspendedTownParticle$ComposterFillProvider/f_108126_ net/minecraft/client/particle/SuspendedTownParticle$ComposterFillProvider/sprite +FD: net/minecraft/client/particle/SuspendedTownParticle$DolphinSpeedProvider/f_108147_ net/minecraft/client/particle/SuspendedTownParticle$DolphinSpeedProvider/sprite +FD: net/minecraft/client/particle/SuspendedTownParticle$EggCrackProvider/f_276491_ net/minecraft/client/particle/SuspendedTownParticle$EggCrackProvider/sprite +FD: net/minecraft/client/particle/SuspendedTownParticle$HappyVillagerProvider/f_108168_ net/minecraft/client/particle/SuspendedTownParticle$HappyVillagerProvider/sprite +FD: net/minecraft/client/particle/SuspendedTownParticle$Provider/f_108189_ net/minecraft/client/particle/SuspendedTownParticle$Provider/sprite +FD: net/minecraft/client/particle/TerrainParticle/f_108277_ net/minecraft/client/particle/TerrainParticle/uo +FD: net/minecraft/client/particle/TerrainParticle/f_108278_ net/minecraft/client/particle/TerrainParticle/vo +FD: net/minecraft/client/particle/TerrainParticle/f_108280_ net/minecraft/client/particle/TerrainParticle/pos +FD: net/minecraft/client/particle/TextureSheetParticle/f_108321_ net/minecraft/client/particle/TextureSheetParticle/sprite +FD: net/minecraft/client/particle/TotemParticle$Provider/f_108364_ net/minecraft/client/particle/TotemParticle$Provider/sprites +FD: net/minecraft/client/particle/TrackingEmitter/f_108385_ net/minecraft/client/particle/TrackingEmitter/lifeTime +FD: net/minecraft/client/particle/TrackingEmitter/f_108386_ net/minecraft/client/particle/TrackingEmitter/particleType +FD: net/minecraft/client/particle/TrackingEmitter/f_108387_ net/minecraft/client/particle/TrackingEmitter/entity +FD: net/minecraft/client/particle/TrackingEmitter/f_108388_ net/minecraft/client/particle/TrackingEmitter/life +FD: net/minecraft/client/particle/VibrationSignalParticle/f_234103_ net/minecraft/client/particle/VibrationSignalParticle/target +FD: net/minecraft/client/particle/VibrationSignalParticle/f_243819_ net/minecraft/client/particle/VibrationSignalParticle/rot +FD: net/minecraft/client/particle/VibrationSignalParticle/f_243886_ net/minecraft/client/particle/VibrationSignalParticle/pitchO +FD: net/minecraft/client/particle/VibrationSignalParticle/f_244335_ net/minecraft/client/particle/VibrationSignalParticle/pitch +FD: net/minecraft/client/particle/VibrationSignalParticle/f_244341_ net/minecraft/client/particle/VibrationSignalParticle/rotO +FD: net/minecraft/client/particle/VibrationSignalParticle$Provider/f_172488_ net/minecraft/client/particle/VibrationSignalParticle$Provider/sprite +FD: net/minecraft/client/particle/WakeParticle/f_108405_ net/minecraft/client/particle/WakeParticle/sprites +FD: net/minecraft/client/particle/WakeParticle$Provider/f_108427_ net/minecraft/client/particle/WakeParticle$Provider/sprites +FD: net/minecraft/client/particle/WaterCurrentDownParticle/f_108448_ net/minecraft/client/particle/WaterCurrentDownParticle/angle +FD: net/minecraft/client/particle/WaterCurrentDownParticle$Provider/f_108462_ net/minecraft/client/particle/WaterCurrentDownParticle$Provider/sprite +FD: net/minecraft/client/particle/WaterDropParticle$Provider/f_108490_ net/minecraft/client/particle/WaterDropParticle$Provider/sprite +FD: net/minecraft/client/particle/WhiteAshParticle/f_172509_ net/minecraft/client/particle/WhiteAshParticle/COLOR_RGB24 +FD: net/minecraft/client/particle/WhiteAshParticle$Provider/f_108521_ net/minecraft/client/particle/WhiteAshParticle$Provider/sprites +FD: net/minecraft/client/player/AbstractClientPlayer/f_108542_ net/minecraft/client/player/AbstractClientPlayer/elytraRotX +FD: net/minecraft/client/player/AbstractClientPlayer/f_108543_ net/minecraft/client/player/AbstractClientPlayer/elytraRotY +FD: net/minecraft/client/player/AbstractClientPlayer/f_108544_ net/minecraft/client/player/AbstractClientPlayer/elytraRotZ +FD: net/minecraft/client/player/AbstractClientPlayer/f_108545_ net/minecraft/client/player/AbstractClientPlayer/clientLevel +FD: net/minecraft/client/player/AbstractClientPlayer/f_108546_ net/minecraft/client/player/AbstractClientPlayer/playerInfo +FD: net/minecraft/client/player/AbstractClientPlayer/f_172517_ net/minecraft/client/player/AbstractClientPlayer/SKIN_URL_TEMPLATE +FD: net/minecraft/client/player/AbstractClientPlayer/f_271420_ net/minecraft/client/player/AbstractClientPlayer/deltaMovementOnPreviousTick +FD: net/minecraft/client/player/Input/f_108566_ net/minecraft/client/player/Input/leftImpulse +FD: net/minecraft/client/player/Input/f_108567_ net/minecraft/client/player/Input/forwardImpulse +FD: net/minecraft/client/player/Input/f_108568_ net/minecraft/client/player/Input/up +FD: net/minecraft/client/player/Input/f_108569_ net/minecraft/client/player/Input/down +FD: net/minecraft/client/player/Input/f_108570_ net/minecraft/client/player/Input/left +FD: net/minecraft/client/player/Input/f_108571_ net/minecraft/client/player/Input/right +FD: net/minecraft/client/player/Input/f_108572_ net/minecraft/client/player/Input/jumping +FD: net/minecraft/client/player/Input/f_108573_ net/minecraft/client/player/Input/shiftKeyDown +FD: net/minecraft/client/player/KeyboardInput/f_108578_ net/minecraft/client/player/KeyboardInput/options +FD: net/minecraft/client/player/LocalPlayer/f_108583_ net/minecraft/client/player/LocalPlayer/sprintTriggerTime +FD: net/minecraft/client/player/LocalPlayer/f_108585_ net/minecraft/client/player/LocalPlayer/yBob +FD: net/minecraft/client/player/LocalPlayer/f_108586_ net/minecraft/client/player/LocalPlayer/xBob +FD: net/minecraft/client/player/LocalPlayer/f_108587_ net/minecraft/client/player/LocalPlayer/yBobO +FD: net/minecraft/client/player/LocalPlayer/f_108588_ net/minecraft/client/player/LocalPlayer/xBobO +FD: net/minecraft/client/player/LocalPlayer/f_108589_ net/minecraft/client/player/LocalPlayer/spinningEffectIntensity +FD: net/minecraft/client/player/LocalPlayer/f_108590_ net/minecraft/client/player/LocalPlayer/oSpinningEffectIntensity +FD: net/minecraft/client/player/LocalPlayer/f_108591_ net/minecraft/client/player/LocalPlayer/stats +FD: net/minecraft/client/player/LocalPlayer/f_108592_ net/minecraft/client/player/LocalPlayer/recipeBook +FD: net/minecraft/client/player/LocalPlayer/f_108593_ net/minecraft/client/player/LocalPlayer/ambientSoundHandlers +FD: net/minecraft/client/player/LocalPlayer/f_108594_ net/minecraft/client/player/LocalPlayer/permissionLevel +FD: net/minecraft/client/player/LocalPlayer/f_108595_ net/minecraft/client/player/LocalPlayer/xLast +FD: net/minecraft/client/player/LocalPlayer/f_108596_ net/minecraft/client/player/LocalPlayer/yLast1 +FD: net/minecraft/client/player/LocalPlayer/f_108597_ net/minecraft/client/player/LocalPlayer/zLast +FD: net/minecraft/client/player/LocalPlayer/f_108598_ net/minecraft/client/player/LocalPlayer/yRotLast +FD: net/minecraft/client/player/LocalPlayer/f_108599_ net/minecraft/client/player/LocalPlayer/xRotLast +FD: net/minecraft/client/player/LocalPlayer/f_108600_ net/minecraft/client/player/LocalPlayer/lastOnGround +FD: net/minecraft/client/player/LocalPlayer/f_108601_ net/minecraft/client/player/LocalPlayer/crouching +FD: net/minecraft/client/player/LocalPlayer/f_108602_ net/minecraft/client/player/LocalPlayer/wasShiftKeyDown +FD: net/minecraft/client/player/LocalPlayer/f_108603_ net/minecraft/client/player/LocalPlayer/wasSprinting +FD: net/minecraft/client/player/LocalPlayer/f_108604_ net/minecraft/client/player/LocalPlayer/positionReminder +FD: net/minecraft/client/player/LocalPlayer/f_108605_ net/minecraft/client/player/LocalPlayer/flashOnSetHealth +FD: net/minecraft/client/player/LocalPlayer/f_108606_ net/minecraft/client/player/LocalPlayer/serverBrand +FD: net/minecraft/client/player/LocalPlayer/f_108607_ net/minecraft/client/player/LocalPlayer/jumpRidingTicks +FD: net/minecraft/client/player/LocalPlayer/f_108608_ net/minecraft/client/player/LocalPlayer/jumpRidingScale +FD: net/minecraft/client/player/LocalPlayer/f_108609_ net/minecraft/client/player/LocalPlayer/startedUsingItem +FD: net/minecraft/client/player/LocalPlayer/f_108610_ net/minecraft/client/player/LocalPlayer/usingItemHand +FD: net/minecraft/client/player/LocalPlayer/f_108611_ net/minecraft/client/player/LocalPlayer/handsBusy +FD: net/minecraft/client/player/LocalPlayer/f_108612_ net/minecraft/client/player/LocalPlayer/autoJumpEnabled +FD: net/minecraft/client/player/LocalPlayer/f_108613_ net/minecraft/client/player/LocalPlayer/autoJumpTime +FD: net/minecraft/client/player/LocalPlayer/f_108614_ net/minecraft/client/player/LocalPlayer/wasFallFlying +FD: net/minecraft/client/player/LocalPlayer/f_108615_ net/minecraft/client/player/LocalPlayer/waterVisionTime +FD: net/minecraft/client/player/LocalPlayer/f_108616_ net/minecraft/client/player/LocalPlayer/showDeathScreen +FD: net/minecraft/client/player/LocalPlayer/f_108617_ net/minecraft/client/player/LocalPlayer/connection +FD: net/minecraft/client/player/LocalPlayer/f_108618_ net/minecraft/client/player/LocalPlayer/input +FD: net/minecraft/client/player/LocalPlayer/f_108619_ net/minecraft/client/player/LocalPlayer/minecraft +FD: net/minecraft/client/player/LocalPlayer/f_172525_ net/minecraft/client/player/LocalPlayer/POSITION_REMINDER_INTERVAL +FD: net/minecraft/client/player/LocalPlayer/f_172526_ net/minecraft/client/player/LocalPlayer/WATER_VISION_MAX_TIME +FD: net/minecraft/client/player/LocalPlayer/f_172527_ net/minecraft/client/player/LocalPlayer/WATER_VISION_QUICK_TIME +FD: net/minecraft/client/player/LocalPlayer/f_172528_ net/minecraft/client/player/LocalPlayer/WATER_VISION_QUICK_PERCENT +FD: net/minecraft/client/player/LocalPlayer/f_172529_ net/minecraft/client/player/LocalPlayer/SUFFOCATING_COLLISION_CHECK_SCALE +FD: net/minecraft/client/player/LocalPlayer/f_197409_ net/minecraft/client/player/LocalPlayer/MINOR_COLLISION_ANGLE_THRESHOLD_RADIAN +FD: net/minecraft/client/player/LocalPlayer/f_234120_ net/minecraft/client/player/LocalPlayer/DEFAULT_SNEAKING_MOVEMENT_FACTOR +FD: net/minecraft/client/player/LocalPlayer/f_234121_ net/minecraft/client/player/LocalPlayer/LOGGER +FD: net/minecraft/client/player/RemotePlayer/f_271343_ net/minecraft/client/player/RemotePlayer/lerpDeltaMovement +FD: net/minecraft/client/player/RemotePlayer/f_271363_ net/minecraft/client/player/RemotePlayer/lerpDeltaMovementSteps +FD: net/minecraft/client/player/inventory/Hotbar/f_108780_ net/minecraft/client/player/inventory/Hotbar/items +FD: net/minecraft/client/profiling/ClientMetricsSamplersProvider/f_172536_ net/minecraft/client/profiling/ClientMetricsSamplersProvider/levelRenderer +FD: net/minecraft/client/profiling/ClientMetricsSamplersProvider/f_172537_ net/minecraft/client/profiling/ClientMetricsSamplersProvider/samplers +FD: net/minecraft/client/profiling/ClientMetricsSamplersProvider/f_172538_ net/minecraft/client/profiling/ClientMetricsSamplersProvider/samplerFactory +FD: net/minecraft/client/quickplay/QuickPlay/f_278373_ net/minecraft/client/quickplay/QuickPlay/REALM_PERMISSION +FD: net/minecraft/client/quickplay/QuickPlay/f_278381_ net/minecraft/client/quickplay/QuickPlay/TO_TITLE +FD: net/minecraft/client/quickplay/QuickPlay/f_278412_ net/minecraft/client/quickplay/QuickPlay/REALM_CONNECT +FD: net/minecraft/client/quickplay/QuickPlay/f_278439_ net/minecraft/client/quickplay/QuickPlay/INVALID_IDENTIFIER +FD: net/minecraft/client/quickplay/QuickPlay/f_278468_ net/minecraft/client/quickplay/QuickPlay/TO_WORLD_LIST +FD: net/minecraft/client/quickplay/QuickPlay/f_278484_ net/minecraft/client/quickplay/QuickPlay/ERROR_TITLE +FD: net/minecraft/client/quickplay/QuickPlay/f_278499_ net/minecraft/client/quickplay/QuickPlay/TO_REALMS_LIST +FD: net/minecraft/client/quickplay/QuickPlayLog/f_278416_ net/minecraft/client/quickplay/QuickPlayLog/INACTIVE +FD: net/minecraft/client/quickplay/QuickPlayLog/f_278422_ net/minecraft/client/quickplay/QuickPlayLog/GSON +FD: net/minecraft/client/quickplay/QuickPlayLog/f_278423_ net/minecraft/client/quickplay/QuickPlayLog/worldData +FD: net/minecraft/client/quickplay/QuickPlayLog/f_278438_ net/minecraft/client/quickplay/QuickPlayLog/LOGGER +FD: net/minecraft/client/quickplay/QuickPlayLog/f_278473_ net/minecraft/client/quickplay/QuickPlayLog/path +FD: net/minecraft/client/quickplay/QuickPlayLog$QuickPlayEntry/f_278426_ net/minecraft/client/quickplay/QuickPlayLog$QuickPlayEntry/quickPlayWorld +FD: net/minecraft/client/quickplay/QuickPlayLog$QuickPlayEntry/f_278431_ net/minecraft/client/quickplay/QuickPlayLog$QuickPlayEntry/CODEC +FD: net/minecraft/client/quickplay/QuickPlayLog$QuickPlayEntry/f_278456_ net/minecraft/client/quickplay/QuickPlayLog$QuickPlayEntry/gamemode +FD: net/minecraft/client/quickplay/QuickPlayLog$QuickPlayEntry/f_278512_ net/minecraft/client/quickplay/QuickPlayLog$QuickPlayEntry/lastPlayedTime +FD: net/minecraft/client/quickplay/QuickPlayLog$QuickPlayWorld/f_278460_ net/minecraft/client/quickplay/QuickPlayLog$QuickPlayWorld/id +FD: net/minecraft/client/quickplay/QuickPlayLog$QuickPlayWorld/f_278464_ net/minecraft/client/quickplay/QuickPlayLog$QuickPlayWorld/type +FD: net/minecraft/client/quickplay/QuickPlayLog$QuickPlayWorld/f_278469_ net/minecraft/client/quickplay/QuickPlayLog$QuickPlayWorld/name +FD: net/minecraft/client/quickplay/QuickPlayLog$QuickPlayWorld/f_278511_ net/minecraft/client/quickplay/QuickPlayLog$QuickPlayWorld/MAP_CODEC +FD: net/minecraft/client/quickplay/QuickPlayLog$Type/$VALUES net/minecraft/client/quickplay/QuickPlayLog$Type/$VALUES +FD: net/minecraft/client/quickplay/QuickPlayLog$Type/MULTIPLAYER net/minecraft/client/quickplay/QuickPlayLog$Type/MULTIPLAYER +FD: net/minecraft/client/quickplay/QuickPlayLog$Type/REALMS net/minecraft/client/quickplay/QuickPlayLog$Type/REALMS +FD: net/minecraft/client/quickplay/QuickPlayLog$Type/SINGLEPLAYER net/minecraft/client/quickplay/QuickPlayLog$Type/SINGLEPLAYER +FD: net/minecraft/client/quickplay/QuickPlayLog$Type/f_278427_ net/minecraft/client/quickplay/QuickPlayLog$Type/name +FD: net/minecraft/client/quickplay/QuickPlayLog$Type/f_278494_ net/minecraft/client/quickplay/QuickPlayLog$Type/CODEC +FD: net/minecraft/client/renderer/BiomeColors/f_108789_ net/minecraft/client/renderer/BiomeColors/GRASS_COLOR_RESOLVER +FD: net/minecraft/client/renderer/BiomeColors/f_108790_ net/minecraft/client/renderer/BiomeColors/FOLIAGE_COLOR_RESOLVER +FD: net/minecraft/client/renderer/BiomeColors/f_108791_ net/minecraft/client/renderer/BiomeColors/WATER_COLOR_RESOLVER +FD: net/minecraft/client/renderer/BlockEntityWithoutLevelRenderer/f_108815_ net/minecraft/client/renderer/BlockEntityWithoutLevelRenderer/SHULKER_BOXES +FD: net/minecraft/client/renderer/BlockEntityWithoutLevelRenderer/f_108816_ net/minecraft/client/renderer/BlockEntityWithoutLevelRenderer/DEFAULT_SHULKER_BOX +FD: net/minecraft/client/renderer/BlockEntityWithoutLevelRenderer/f_108817_ net/minecraft/client/renderer/BlockEntityWithoutLevelRenderer/chest +FD: net/minecraft/client/renderer/BlockEntityWithoutLevelRenderer/f_108818_ net/minecraft/client/renderer/BlockEntityWithoutLevelRenderer/trappedChest +FD: net/minecraft/client/renderer/BlockEntityWithoutLevelRenderer/f_108819_ net/minecraft/client/renderer/BlockEntityWithoutLevelRenderer/enderChest +FD: net/minecraft/client/renderer/BlockEntityWithoutLevelRenderer/f_108820_ net/minecraft/client/renderer/BlockEntityWithoutLevelRenderer/banner +FD: net/minecraft/client/renderer/BlockEntityWithoutLevelRenderer/f_108821_ net/minecraft/client/renderer/BlockEntityWithoutLevelRenderer/bed +FD: net/minecraft/client/renderer/BlockEntityWithoutLevelRenderer/f_108822_ net/minecraft/client/renderer/BlockEntityWithoutLevelRenderer/conduit +FD: net/minecraft/client/renderer/BlockEntityWithoutLevelRenderer/f_108823_ net/minecraft/client/renderer/BlockEntityWithoutLevelRenderer/shieldModel +FD: net/minecraft/client/renderer/BlockEntityWithoutLevelRenderer/f_108824_ net/minecraft/client/renderer/BlockEntityWithoutLevelRenderer/tridentModel +FD: net/minecraft/client/renderer/BlockEntityWithoutLevelRenderer/f_172546_ net/minecraft/client/renderer/BlockEntityWithoutLevelRenderer/skullModels +FD: net/minecraft/client/renderer/BlockEntityWithoutLevelRenderer/f_172547_ net/minecraft/client/renderer/BlockEntityWithoutLevelRenderer/blockEntityRenderDispatcher +FD: net/minecraft/client/renderer/BlockEntityWithoutLevelRenderer/f_172548_ net/minecraft/client/renderer/BlockEntityWithoutLevelRenderer/entityModelSet +FD: net/minecraft/client/renderer/BlockEntityWithoutLevelRenderer/f_271254_ net/minecraft/client/renderer/BlockEntityWithoutLevelRenderer/decoratedPot +FD: net/minecraft/client/renderer/ChunkBufferBuilderPack/f_108836_ net/minecraft/client/renderer/ChunkBufferBuilderPack/builders +FD: net/minecraft/client/renderer/CubeMap/f_108846_ net/minecraft/client/renderer/CubeMap/images +FD: net/minecraft/client/renderer/CubeMap/f_172561_ net/minecraft/client/renderer/CubeMap/SIDES +FD: net/minecraft/client/renderer/DimensionSpecialEffects/f_108857_ net/minecraft/client/renderer/DimensionSpecialEffects/EFFECTS +FD: net/minecraft/client/renderer/DimensionSpecialEffects/f_108858_ net/minecraft/client/renderer/DimensionSpecialEffects/sunriseCol +FD: net/minecraft/client/renderer/DimensionSpecialEffects/f_108859_ net/minecraft/client/renderer/DimensionSpecialEffects/cloudLevel +FD: net/minecraft/client/renderer/DimensionSpecialEffects/f_108860_ net/minecraft/client/renderer/DimensionSpecialEffects/hasGround +FD: net/minecraft/client/renderer/DimensionSpecialEffects/f_108861_ net/minecraft/client/renderer/DimensionSpecialEffects/skyType +FD: net/minecraft/client/renderer/DimensionSpecialEffects/f_108862_ net/minecraft/client/renderer/DimensionSpecialEffects/forceBrightLightmap +FD: net/minecraft/client/renderer/DimensionSpecialEffects/f_108863_ net/minecraft/client/renderer/DimensionSpecialEffects/constantAmbientLight +FD: net/minecraft/client/renderer/DimensionSpecialEffects$OverworldEffects/f_172562_ net/minecraft/client/renderer/DimensionSpecialEffects$OverworldEffects/CLOUD_LEVEL +FD: net/minecraft/client/renderer/DimensionSpecialEffects$SkyType/$VALUES net/minecraft/client/renderer/DimensionSpecialEffects$SkyType/$VALUES +FD: net/minecraft/client/renderer/DimensionSpecialEffects$SkyType/END net/minecraft/client/renderer/DimensionSpecialEffects$SkyType/END +FD: net/minecraft/client/renderer/DimensionSpecialEffects$SkyType/NONE net/minecraft/client/renderer/DimensionSpecialEffects$SkyType/NONE +FD: net/minecraft/client/renderer/DimensionSpecialEffects$SkyType/NORMAL net/minecraft/client/renderer/DimensionSpecialEffects$SkyType/NORMAL +FD: net/minecraft/client/renderer/EffectInstance/f_108921_ net/minecraft/client/renderer/EffectInstance/LOGGER +FD: net/minecraft/client/renderer/EffectInstance/f_108922_ net/minecraft/client/renderer/EffectInstance/DUMMY_UNIFORM +FD: net/minecraft/client/renderer/EffectInstance/f_108923_ net/minecraft/client/renderer/EffectInstance/lastAppliedEffect +FD: net/minecraft/client/renderer/EffectInstance/f_108924_ net/minecraft/client/renderer/EffectInstance/lastProgramId +FD: net/minecraft/client/renderer/EffectInstance/f_108925_ net/minecraft/client/renderer/EffectInstance/samplerMap +FD: net/minecraft/client/renderer/EffectInstance/f_108926_ net/minecraft/client/renderer/EffectInstance/samplerNames +FD: net/minecraft/client/renderer/EffectInstance/f_108927_ net/minecraft/client/renderer/EffectInstance/samplerLocations +FD: net/minecraft/client/renderer/EffectInstance/f_108928_ net/minecraft/client/renderer/EffectInstance/uniforms +FD: net/minecraft/client/renderer/EffectInstance/f_108929_ net/minecraft/client/renderer/EffectInstance/uniformLocations +FD: net/minecraft/client/renderer/EffectInstance/f_108930_ net/minecraft/client/renderer/EffectInstance/uniformMap +FD: net/minecraft/client/renderer/EffectInstance/f_108931_ net/minecraft/client/renderer/EffectInstance/programId +FD: net/minecraft/client/renderer/EffectInstance/f_108932_ net/minecraft/client/renderer/EffectInstance/name +FD: net/minecraft/client/renderer/EffectInstance/f_108933_ net/minecraft/client/renderer/EffectInstance/dirty +FD: net/minecraft/client/renderer/EffectInstance/f_108934_ net/minecraft/client/renderer/EffectInstance/blend +FD: net/minecraft/client/renderer/EffectInstance/f_108935_ net/minecraft/client/renderer/EffectInstance/attributes +FD: net/minecraft/client/renderer/EffectInstance/f_108936_ net/minecraft/client/renderer/EffectInstance/attributeNames +FD: net/minecraft/client/renderer/EffectInstance/f_108937_ net/minecraft/client/renderer/EffectInstance/vertexProgram +FD: net/minecraft/client/renderer/EffectInstance/f_108938_ net/minecraft/client/renderer/EffectInstance/fragmentProgram +FD: net/minecraft/client/renderer/EffectInstance/f_172564_ net/minecraft/client/renderer/EffectInstance/EFFECT_SHADER_PATH +FD: net/minecraft/client/renderer/EffectInstance/f_172565_ net/minecraft/client/renderer/EffectInstance/ALWAYS_REAPPLY +FD: net/minecraft/client/renderer/FaceInfo/$VALUES net/minecraft/client/renderer/FaceInfo/$VALUES +FD: net/minecraft/client/renderer/FaceInfo/DOWN net/minecraft/client/renderer/FaceInfo/DOWN +FD: net/minecraft/client/renderer/FaceInfo/EAST net/minecraft/client/renderer/FaceInfo/EAST +FD: net/minecraft/client/renderer/FaceInfo/NORTH net/minecraft/client/renderer/FaceInfo/NORTH +FD: net/minecraft/client/renderer/FaceInfo/SOUTH net/minecraft/client/renderer/FaceInfo/SOUTH +FD: net/minecraft/client/renderer/FaceInfo/UP net/minecraft/client/renderer/FaceInfo/UP +FD: net/minecraft/client/renderer/FaceInfo/WEST net/minecraft/client/renderer/FaceInfo/WEST +FD: net/minecraft/client/renderer/FaceInfo/f_108974_ net/minecraft/client/renderer/FaceInfo/BY_FACING +FD: net/minecraft/client/renderer/FaceInfo/f_108975_ net/minecraft/client/renderer/FaceInfo/infos +FD: net/minecraft/client/renderer/FaceInfo$Constants/f_108991_ net/minecraft/client/renderer/FaceInfo$Constants/MAX_Z +FD: net/minecraft/client/renderer/FaceInfo$Constants/f_108992_ net/minecraft/client/renderer/FaceInfo$Constants/MAX_Y +FD: net/minecraft/client/renderer/FaceInfo$Constants/f_108993_ net/minecraft/client/renderer/FaceInfo$Constants/MAX_X +FD: net/minecraft/client/renderer/FaceInfo$Constants/f_108994_ net/minecraft/client/renderer/FaceInfo$Constants/MIN_Z +FD: net/minecraft/client/renderer/FaceInfo$Constants/f_108995_ net/minecraft/client/renderer/FaceInfo$Constants/MIN_Y +FD: net/minecraft/client/renderer/FaceInfo$Constants/f_108996_ net/minecraft/client/renderer/FaceInfo$Constants/MIN_X +FD: net/minecraft/client/renderer/FaceInfo$VertexInfo/f_108998_ net/minecraft/client/renderer/FaceInfo$VertexInfo/xFace +FD: net/minecraft/client/renderer/FaceInfo$VertexInfo/f_108999_ net/minecraft/client/renderer/FaceInfo$VertexInfo/yFace +FD: net/minecraft/client/renderer/FaceInfo$VertexInfo/f_109000_ net/minecraft/client/renderer/FaceInfo$VertexInfo/zFace +FD: net/minecraft/client/renderer/FogRenderer/f_109010_ net/minecraft/client/renderer/FogRenderer/fogRed +FD: net/minecraft/client/renderer/FogRenderer/f_109011_ net/minecraft/client/renderer/FogRenderer/fogGreen +FD: net/minecraft/client/renderer/FogRenderer/f_109012_ net/minecraft/client/renderer/FogRenderer/fogBlue +FD: net/minecraft/client/renderer/FogRenderer/f_109013_ net/minecraft/client/renderer/FogRenderer/targetBiomeFog +FD: net/minecraft/client/renderer/FogRenderer/f_109014_ net/minecraft/client/renderer/FogRenderer/previousBiomeFog +FD: net/minecraft/client/renderer/FogRenderer/f_109015_ net/minecraft/client/renderer/FogRenderer/biomeChangedTime +FD: net/minecraft/client/renderer/FogRenderer/f_172574_ net/minecraft/client/renderer/FogRenderer/BIOME_FOG_TRANSITION_TIME +FD: net/minecraft/client/renderer/FogRenderer/f_172575_ net/minecraft/client/renderer/FogRenderer/WATER_FOG_DISTANCE +FD: net/minecraft/client/renderer/FogRenderer/f_234164_ net/minecraft/client/renderer/FogRenderer/MOB_EFFECT_FOG +FD: net/minecraft/client/renderer/FogRenderer$FogData/f_234199_ net/minecraft/client/renderer/FogRenderer$FogData/mode +FD: net/minecraft/client/renderer/FogRenderer$FogData/f_234200_ net/minecraft/client/renderer/FogRenderer$FogData/start +FD: net/minecraft/client/renderer/FogRenderer$FogData/f_234201_ net/minecraft/client/renderer/FogRenderer$FogData/end +FD: net/minecraft/client/renderer/FogRenderer$FogData/f_234202_ net/minecraft/client/renderer/FogRenderer$FogData/shape +FD: net/minecraft/client/renderer/FogRenderer$FogMode/$VALUES net/minecraft/client/renderer/FogRenderer$FogMode/$VALUES +FD: net/minecraft/client/renderer/FogRenderer$FogMode/FOG_SKY net/minecraft/client/renderer/FogRenderer$FogMode/FOG_SKY +FD: net/minecraft/client/renderer/FogRenderer$FogMode/FOG_TERRAIN net/minecraft/client/renderer/FogRenderer$FogMode/FOG_TERRAIN +FD: net/minecraft/client/renderer/GameRenderer/f_109047_ net/minecraft/client/renderer/GameRenderer/itemActivationTicks +FD: net/minecraft/client/renderer/GameRenderer/f_109048_ net/minecraft/client/renderer/GameRenderer/itemActivationOffX +FD: net/minecraft/client/renderer/GameRenderer/f_109049_ net/minecraft/client/renderer/GameRenderer/itemActivationOffY +FD: net/minecraft/client/renderer/GameRenderer/f_109050_ net/minecraft/client/renderer/GameRenderer/postEffect +FD: net/minecraft/client/renderer/GameRenderer/f_109051_ net/minecraft/client/renderer/GameRenderer/EFFECTS +FD: net/minecraft/client/renderer/GameRenderer/f_109052_ net/minecraft/client/renderer/GameRenderer/effectIndex +FD: net/minecraft/client/renderer/GameRenderer/f_109053_ net/minecraft/client/renderer/GameRenderer/effectActive +FD: net/minecraft/client/renderer/GameRenderer/f_109054_ net/minecraft/client/renderer/GameRenderer/mainCamera +FD: net/minecraft/client/renderer/GameRenderer/f_109055_ net/minecraft/client/renderer/GameRenderer/itemInHandRenderer +FD: net/minecraft/client/renderer/GameRenderer/f_109056_ net/minecraft/client/renderer/GameRenderer/EFFECT_NONE +FD: net/minecraft/client/renderer/GameRenderer/f_109057_ net/minecraft/client/renderer/GameRenderer/NAUSEA_LOCATION +FD: net/minecraft/client/renderer/GameRenderer/f_109058_ net/minecraft/client/renderer/GameRenderer/LOGGER +FD: net/minecraft/client/renderer/GameRenderer/f_109059_ net/minecraft/client/renderer/GameRenderer/minecraft +FD: net/minecraft/client/renderer/GameRenderer/f_109060_ net/minecraft/client/renderer/GameRenderer/resourceManager +FD: net/minecraft/client/renderer/GameRenderer/f_109061_ net/minecraft/client/renderer/GameRenderer/random +FD: net/minecraft/client/renderer/GameRenderer/f_109062_ net/minecraft/client/renderer/GameRenderer/renderDistance +FD: net/minecraft/client/renderer/GameRenderer/f_109063_ net/minecraft/client/renderer/GameRenderer/mapRenderer +FD: net/minecraft/client/renderer/GameRenderer/f_109064_ net/minecraft/client/renderer/GameRenderer/renderBuffers +FD: net/minecraft/client/renderer/GameRenderer/f_109065_ net/minecraft/client/renderer/GameRenderer/tick +FD: net/minecraft/client/renderer/GameRenderer/f_109066_ net/minecraft/client/renderer/GameRenderer/fov +FD: net/minecraft/client/renderer/GameRenderer/f_109067_ net/minecraft/client/renderer/GameRenderer/oldFov +FD: net/minecraft/client/renderer/GameRenderer/f_109068_ net/minecraft/client/renderer/GameRenderer/darkenWorldAmount +FD: net/minecraft/client/renderer/GameRenderer/f_109069_ net/minecraft/client/renderer/GameRenderer/darkenWorldAmountO +FD: net/minecraft/client/renderer/GameRenderer/f_109070_ net/minecraft/client/renderer/GameRenderer/renderHand +FD: net/minecraft/client/renderer/GameRenderer/f_109071_ net/minecraft/client/renderer/GameRenderer/renderBlockOutline +FD: net/minecraft/client/renderer/GameRenderer/f_109072_ net/minecraft/client/renderer/GameRenderer/lastScreenshotAttempt +FD: net/minecraft/client/renderer/GameRenderer/f_109073_ net/minecraft/client/renderer/GameRenderer/lastActiveTime +FD: net/minecraft/client/renderer/GameRenderer/f_109074_ net/minecraft/client/renderer/GameRenderer/lightTexture +FD: net/minecraft/client/renderer/GameRenderer/f_109075_ net/minecraft/client/renderer/GameRenderer/overlayTexture +FD: net/minecraft/client/renderer/GameRenderer/f_109076_ net/minecraft/client/renderer/GameRenderer/panoramicMode +FD: net/minecraft/client/renderer/GameRenderer/f_109077_ net/minecraft/client/renderer/GameRenderer/zoom +FD: net/minecraft/client/renderer/GameRenderer/f_109078_ net/minecraft/client/renderer/GameRenderer/zoomX +FD: net/minecraft/client/renderer/GameRenderer/f_109079_ net/minecraft/client/renderer/GameRenderer/zoomY +FD: net/minecraft/client/renderer/GameRenderer/f_109080_ net/minecraft/client/renderer/GameRenderer/itemActivationItem +FD: net/minecraft/client/renderer/GameRenderer/f_172578_ net/minecraft/client/renderer/GameRenderer/shaders +FD: net/minecraft/client/renderer/GameRenderer/f_172579_ net/minecraft/client/renderer/GameRenderer/positionShader +FD: net/minecraft/client/renderer/GameRenderer/f_172580_ net/minecraft/client/renderer/GameRenderer/positionColorShader +FD: net/minecraft/client/renderer/GameRenderer/f_172581_ net/minecraft/client/renderer/GameRenderer/positionColorTexShader +FD: net/minecraft/client/renderer/GameRenderer/f_172582_ net/minecraft/client/renderer/GameRenderer/positionTexShader +FD: net/minecraft/client/renderer/GameRenderer/f_172583_ net/minecraft/client/renderer/GameRenderer/positionTexColorShader +FD: net/minecraft/client/renderer/GameRenderer/f_172586_ net/minecraft/client/renderer/GameRenderer/particleShader +FD: net/minecraft/client/renderer/GameRenderer/f_172587_ net/minecraft/client/renderer/GameRenderer/positionColorLightmapShader +FD: net/minecraft/client/renderer/GameRenderer/f_172588_ net/minecraft/client/renderer/GameRenderer/positionColorTexLightmapShader +FD: net/minecraft/client/renderer/GameRenderer/f_172589_ net/minecraft/client/renderer/GameRenderer/positionTexColorNormalShader +FD: net/minecraft/client/renderer/GameRenderer/f_172590_ net/minecraft/client/renderer/GameRenderer/positionTexLightmapColorShader +FD: net/minecraft/client/renderer/GameRenderer/f_172591_ net/minecraft/client/renderer/GameRenderer/rendertypeSolidShader +FD: net/minecraft/client/renderer/GameRenderer/f_172592_ net/minecraft/client/renderer/GameRenderer/PROJECTION_Z_NEAR +FD: net/minecraft/client/renderer/GameRenderer/f_172593_ net/minecraft/client/renderer/GameRenderer/rendertypeGlintTranslucentShader +FD: net/minecraft/client/renderer/GameRenderer/f_172594_ net/minecraft/client/renderer/GameRenderer/rendertypeGlintShader +FD: net/minecraft/client/renderer/GameRenderer/f_172595_ net/minecraft/client/renderer/GameRenderer/rendertypeGlintDirectShader +FD: net/minecraft/client/renderer/GameRenderer/f_172596_ net/minecraft/client/renderer/GameRenderer/rendertypeEntityGlintShader +FD: net/minecraft/client/renderer/GameRenderer/f_172597_ net/minecraft/client/renderer/GameRenderer/rendertypeEntityGlintDirectShader +FD: net/minecraft/client/renderer/GameRenderer/f_172598_ net/minecraft/client/renderer/GameRenderer/rendertypeTextShader +FD: net/minecraft/client/renderer/GameRenderer/f_172599_ net/minecraft/client/renderer/GameRenderer/rendertypeTextIntensityShader +FD: net/minecraft/client/renderer/GameRenderer/f_172600_ net/minecraft/client/renderer/GameRenderer/rendertypeTextSeeThroughShader +FD: net/minecraft/client/renderer/GameRenderer/f_172601_ net/minecraft/client/renderer/GameRenderer/rendertypeTextIntensitySeeThroughShader +FD: net/minecraft/client/renderer/GameRenderer/f_172602_ net/minecraft/client/renderer/GameRenderer/rendertypeLightningShader +FD: net/minecraft/client/renderer/GameRenderer/f_172603_ net/minecraft/client/renderer/GameRenderer/rendertypeTripwireShader +FD: net/minecraft/client/renderer/GameRenderer/f_172604_ net/minecraft/client/renderer/GameRenderer/rendertypeEndPortalShader +FD: net/minecraft/client/renderer/GameRenderer/f_172605_ net/minecraft/client/renderer/GameRenderer/rendertypeEndGatewayShader +FD: net/minecraft/client/renderer/GameRenderer/f_172606_ net/minecraft/client/renderer/GameRenderer/rendertypeLinesShader +FD: net/minecraft/client/renderer/GameRenderer/f_172607_ net/minecraft/client/renderer/GameRenderer/rendertypeCrumblingShader +FD: net/minecraft/client/renderer/GameRenderer/f_172608_ net/minecraft/client/renderer/GameRenderer/rendertypeCutoutMippedShader +FD: net/minecraft/client/renderer/GameRenderer/f_172609_ net/minecraft/client/renderer/GameRenderer/rendertypeCutoutShader +FD: net/minecraft/client/renderer/GameRenderer/f_172610_ net/minecraft/client/renderer/GameRenderer/rendertypeTranslucentShader +FD: net/minecraft/client/renderer/GameRenderer/f_172611_ net/minecraft/client/renderer/GameRenderer/rendertypeTranslucentMovingBlockShader +FD: net/minecraft/client/renderer/GameRenderer/f_172612_ net/minecraft/client/renderer/GameRenderer/rendertypeTranslucentNoCrumblingShader +FD: net/minecraft/client/renderer/GameRenderer/f_172613_ net/minecraft/client/renderer/GameRenderer/rendertypeArmorCutoutNoCullShader +FD: net/minecraft/client/renderer/GameRenderer/f_172614_ net/minecraft/client/renderer/GameRenderer/rendertypeEntitySolidShader +FD: net/minecraft/client/renderer/GameRenderer/f_172615_ net/minecraft/client/renderer/GameRenderer/rendertypeEntityCutoutShader +FD: net/minecraft/client/renderer/GameRenderer/f_172616_ net/minecraft/client/renderer/GameRenderer/rendertypeEntityCutoutNoCullShader +FD: net/minecraft/client/renderer/GameRenderer/f_172617_ net/minecraft/client/renderer/GameRenderer/rendertypeEntityCutoutNoCullZOffsetShader +FD: net/minecraft/client/renderer/GameRenderer/f_172618_ net/minecraft/client/renderer/GameRenderer/rendertypeItemEntityTranslucentCullShader +FD: net/minecraft/client/renderer/GameRenderer/f_172619_ net/minecraft/client/renderer/GameRenderer/rendertypeEntityTranslucentCullShader +FD: net/minecraft/client/renderer/GameRenderer/f_172620_ net/minecraft/client/renderer/GameRenderer/rendertypeEntityTranslucentShader +FD: net/minecraft/client/renderer/GameRenderer/f_172621_ net/minecraft/client/renderer/GameRenderer/rendertypeEntitySmoothCutoutShader +FD: net/minecraft/client/renderer/GameRenderer/f_172622_ net/minecraft/client/renderer/GameRenderer/rendertypeBeaconBeamShader +FD: net/minecraft/client/renderer/GameRenderer/f_172623_ net/minecraft/client/renderer/GameRenderer/rendertypeEntityDecalShader +FD: net/minecraft/client/renderer/GameRenderer/f_172624_ net/minecraft/client/renderer/GameRenderer/rendertypeEntityNoOutlineShader +FD: net/minecraft/client/renderer/GameRenderer/f_172625_ net/minecraft/client/renderer/GameRenderer/rendertypeEntityShadowShader +FD: net/minecraft/client/renderer/GameRenderer/f_172626_ net/minecraft/client/renderer/GameRenderer/rendertypeEntityAlphaShader +FD: net/minecraft/client/renderer/GameRenderer/f_172627_ net/minecraft/client/renderer/GameRenderer/rendertypeEyesShader +FD: net/minecraft/client/renderer/GameRenderer/f_172628_ net/minecraft/client/renderer/GameRenderer/rendertypeEnergySwirlShader +FD: net/minecraft/client/renderer/GameRenderer/f_172629_ net/minecraft/client/renderer/GameRenderer/rendertypeLeashShader +FD: net/minecraft/client/renderer/GameRenderer/f_172630_ net/minecraft/client/renderer/GameRenderer/rendertypeWaterMaskShader +FD: net/minecraft/client/renderer/GameRenderer/f_172631_ net/minecraft/client/renderer/GameRenderer/rendertypeOutlineShader +FD: net/minecraft/client/renderer/GameRenderer/f_172632_ net/minecraft/client/renderer/GameRenderer/rendertypeArmorGlintShader +FD: net/minecraft/client/renderer/GameRenderer/f_172633_ net/minecraft/client/renderer/GameRenderer/rendertypeArmorEntityGlintShader +FD: net/minecraft/client/renderer/GameRenderer/f_172634_ net/minecraft/client/renderer/GameRenderer/ITEM_ACTIVATION_ANIMATION_LENGTH +FD: net/minecraft/client/renderer/GameRenderer/f_172635_ net/minecraft/client/renderer/GameRenderer/blitShader +FD: net/minecraft/client/renderer/GameRenderer/f_172636_ net/minecraft/client/renderer/GameRenderer/DEPTH_BUFFER_DEBUG +FD: net/minecraft/client/renderer/GameRenderer/f_182638_ net/minecraft/client/renderer/GameRenderer/hasWorldScreenshot +FD: net/minecraft/client/renderer/GameRenderer/f_234217_ net/minecraft/client/renderer/GameRenderer/rendertypeEntityTranslucentEmissiveShader +FD: net/minecraft/client/renderer/GameRenderer/f_268423_ net/minecraft/client/renderer/GameRenderer/rendertypeTextBackgroundShader +FD: net/minecraft/client/renderer/GameRenderer/f_268525_ net/minecraft/client/renderer/GameRenderer/rendertypeTextBackgroundSeeThroughShader +FD: net/minecraft/client/renderer/GameRenderer/f_285569_ net/minecraft/client/renderer/GameRenderer/rendertypeGuiGhostRecipeOverlayShader +FD: net/minecraft/client/renderer/GameRenderer/f_285598_ net/minecraft/client/renderer/GameRenderer/rendertypeGuiOverlayShader +FD: net/minecraft/client/renderer/GameRenderer/f_285623_ net/minecraft/client/renderer/GameRenderer/rendertypeGuiTextHighlightShader +FD: net/minecraft/client/renderer/GameRenderer/f_285653_ net/minecraft/client/renderer/GameRenderer/rendertypeGuiShader +FD: net/minecraft/client/renderer/GameRenderer/f_289032_ net/minecraft/client/renderer/GameRenderer/GUI_Z_NEAR +FD: net/minecraft/client/renderer/GameRenderer$1/f_244403_ net/minecraft/client/renderer/GameRenderer$1/this$0 +FD: net/minecraft/client/renderer/GameRenderer$ResourceCache/f_243825_ net/minecraft/client/renderer/GameRenderer$ResourceCache/cache +FD: net/minecraft/client/renderer/GameRenderer$ResourceCache/f_244315_ net/minecraft/client/renderer/GameRenderer$ResourceCache/original +FD: net/minecraft/client/renderer/GpuWarnlistManager/f_109210_ net/minecraft/client/renderer/GpuWarnlistManager/LOGGER +FD: net/minecraft/client/renderer/GpuWarnlistManager/f_109211_ net/minecraft/client/renderer/GpuWarnlistManager/GPU_WARNLIST_LOCATION +FD: net/minecraft/client/renderer/GpuWarnlistManager/f_109212_ net/minecraft/client/renderer/GpuWarnlistManager/warnings +FD: net/minecraft/client/renderer/GpuWarnlistManager/f_109213_ net/minecraft/client/renderer/GpuWarnlistManager/showWarning +FD: net/minecraft/client/renderer/GpuWarnlistManager/f_109214_ net/minecraft/client/renderer/GpuWarnlistManager/warningDismissed +FD: net/minecraft/client/renderer/GpuWarnlistManager/f_109215_ net/minecraft/client/renderer/GpuWarnlistManager/skipFabulous +FD: net/minecraft/client/renderer/GpuWarnlistManager$Preparations/f_109257_ net/minecraft/client/renderer/GpuWarnlistManager$Preparations/rendererPatterns +FD: net/minecraft/client/renderer/GpuWarnlistManager$Preparations/f_109258_ net/minecraft/client/renderer/GpuWarnlistManager$Preparations/versionPatterns +FD: net/minecraft/client/renderer/GpuWarnlistManager$Preparations/f_109259_ net/minecraft/client/renderer/GpuWarnlistManager$Preparations/vendorPatterns +FD: net/minecraft/client/renderer/ItemBlockRenderTypes/f_109275_ net/minecraft/client/renderer/ItemBlockRenderTypes/TYPE_BY_BLOCK +FD: net/minecraft/client/renderer/ItemBlockRenderTypes/f_109276_ net/minecraft/client/renderer/ItemBlockRenderTypes/TYPE_BY_FLUID +FD: net/minecraft/client/renderer/ItemBlockRenderTypes/f_109277_ net/minecraft/client/renderer/ItemBlockRenderTypes/renderCutout +FD: net/minecraft/client/renderer/ItemInHandRenderer/f_109297_ net/minecraft/client/renderer/ItemInHandRenderer/MAP_BACKGROUND +FD: net/minecraft/client/renderer/ItemInHandRenderer/f_109298_ net/minecraft/client/renderer/ItemInHandRenderer/MAP_BACKGROUND_CHECKERBOARD +FD: net/minecraft/client/renderer/ItemInHandRenderer/f_109299_ net/minecraft/client/renderer/ItemInHandRenderer/minecraft +FD: net/minecraft/client/renderer/ItemInHandRenderer/f_109300_ net/minecraft/client/renderer/ItemInHandRenderer/mainHandItem +FD: net/minecraft/client/renderer/ItemInHandRenderer/f_109301_ net/minecraft/client/renderer/ItemInHandRenderer/offHandItem +FD: net/minecraft/client/renderer/ItemInHandRenderer/f_109302_ net/minecraft/client/renderer/ItemInHandRenderer/mainHandHeight +FD: net/minecraft/client/renderer/ItemInHandRenderer/f_109303_ net/minecraft/client/renderer/ItemInHandRenderer/oMainHandHeight +FD: net/minecraft/client/renderer/ItemInHandRenderer/f_109304_ net/minecraft/client/renderer/ItemInHandRenderer/offHandHeight +FD: net/minecraft/client/renderer/ItemInHandRenderer/f_109305_ net/minecraft/client/renderer/ItemInHandRenderer/oOffHandHeight +FD: net/minecraft/client/renderer/ItemInHandRenderer/f_109306_ net/minecraft/client/renderer/ItemInHandRenderer/entityRenderDispatcher +FD: net/minecraft/client/renderer/ItemInHandRenderer/f_109307_ net/minecraft/client/renderer/ItemInHandRenderer/itemRenderer +FD: net/minecraft/client/renderer/ItemInHandRenderer/f_172842_ net/minecraft/client/renderer/ItemInHandRenderer/ARM_SWING_Z_ROT_AMOUNT +FD: net/minecraft/client/renderer/ItemInHandRenderer/f_172843_ net/minecraft/client/renderer/ItemInHandRenderer/ARM_HEIGHT_SCALE +FD: net/minecraft/client/renderer/ItemInHandRenderer/f_172844_ net/minecraft/client/renderer/ItemInHandRenderer/ARM_POS_SCALE +FD: net/minecraft/client/renderer/ItemInHandRenderer/f_172845_ net/minecraft/client/renderer/ItemInHandRenderer/ARM_POS_X +FD: net/minecraft/client/renderer/ItemInHandRenderer/f_172846_ net/minecraft/client/renderer/ItemInHandRenderer/ARM_POS_Y +FD: net/minecraft/client/renderer/ItemInHandRenderer/f_172847_ net/minecraft/client/renderer/ItemInHandRenderer/ARM_POS_Z +FD: net/minecraft/client/renderer/ItemInHandRenderer/f_172848_ net/minecraft/client/renderer/ItemInHandRenderer/ARM_PRESWING_ROT_Y +FD: net/minecraft/client/renderer/ItemInHandRenderer/f_172849_ net/minecraft/client/renderer/ItemInHandRenderer/ARM_PREROTATION_X_OFFSET +FD: net/minecraft/client/renderer/ItemInHandRenderer/f_172850_ net/minecraft/client/renderer/ItemInHandRenderer/ARM_PREROTATION_Y_OFFSET +FD: net/minecraft/client/renderer/ItemInHandRenderer/f_172851_ net/minecraft/client/renderer/ItemInHandRenderer/ARM_PREROTATION_Z_OFFSET +FD: net/minecraft/client/renderer/ItemInHandRenderer/f_172852_ net/minecraft/client/renderer/ItemInHandRenderer/ARM_POSTROTATION_X_OFFSET +FD: net/minecraft/client/renderer/ItemInHandRenderer/f_172853_ net/minecraft/client/renderer/ItemInHandRenderer/ARM_ROT_X +FD: net/minecraft/client/renderer/ItemInHandRenderer/f_172854_ net/minecraft/client/renderer/ItemInHandRenderer/ARM_ROT_Y +FD: net/minecraft/client/renderer/ItemInHandRenderer/f_172855_ net/minecraft/client/renderer/ItemInHandRenderer/ARM_ROT_Z +FD: net/minecraft/client/renderer/ItemInHandRenderer/f_172856_ net/minecraft/client/renderer/ItemInHandRenderer/MAP_SWING_X_POS_SCALE +FD: net/minecraft/client/renderer/ItemInHandRenderer/f_172857_ net/minecraft/client/renderer/ItemInHandRenderer/MAP_SWING_Z_POS_SCALE +FD: net/minecraft/client/renderer/ItemInHandRenderer/f_172858_ net/minecraft/client/renderer/ItemInHandRenderer/MAP_HANDS_POS_X +FD: net/minecraft/client/renderer/ItemInHandRenderer/f_172859_ net/minecraft/client/renderer/ItemInHandRenderer/MAP_HANDS_POS_Y +FD: net/minecraft/client/renderer/ItemInHandRenderer/f_172860_ net/minecraft/client/renderer/ItemInHandRenderer/MAP_HANDS_POS_Z +FD: net/minecraft/client/renderer/ItemInHandRenderer/f_172861_ net/minecraft/client/renderer/ItemInHandRenderer/MAP_HANDS_HEIGHT_SCALE +FD: net/minecraft/client/renderer/ItemInHandRenderer/f_172862_ net/minecraft/client/renderer/ItemInHandRenderer/MAP_HANDS_TILT_SCALE +FD: net/minecraft/client/renderer/ItemInHandRenderer/f_172863_ net/minecraft/client/renderer/ItemInHandRenderer/MAP_PLAYER_PITCH_SCALE +FD: net/minecraft/client/renderer/ItemInHandRenderer/f_172864_ net/minecraft/client/renderer/ItemInHandRenderer/MAP_HANDS_Z_ROT_AMOUNT +FD: net/minecraft/client/renderer/ItemInHandRenderer/f_172865_ net/minecraft/client/renderer/ItemInHandRenderer/MAPHAND_X_ROT_AMOUNT +FD: net/minecraft/client/renderer/ItemInHandRenderer/f_172866_ net/minecraft/client/renderer/ItemInHandRenderer/MAPHAND_Y_ROT_AMOUNT +FD: net/minecraft/client/renderer/ItemInHandRenderer/f_172867_ net/minecraft/client/renderer/ItemInHandRenderer/MAPHAND_Z_ROT_AMOUNT +FD: net/minecraft/client/renderer/ItemInHandRenderer/f_172868_ net/minecraft/client/renderer/ItemInHandRenderer/MAP_HAND_X_POS +FD: net/minecraft/client/renderer/ItemInHandRenderer/f_172869_ net/minecraft/client/renderer/ItemInHandRenderer/MAP_HAND_Y_POS +FD: net/minecraft/client/renderer/ItemInHandRenderer/f_172870_ net/minecraft/client/renderer/ItemInHandRenderer/MAP_HAND_Z_POS +FD: net/minecraft/client/renderer/ItemInHandRenderer/f_172871_ net/minecraft/client/renderer/ItemInHandRenderer/MAP_SWING_X_ROT_AMOUNT +FD: net/minecraft/client/renderer/ItemInHandRenderer/f_172872_ net/minecraft/client/renderer/ItemInHandRenderer/MAP_PRE_ROT_SCALE +FD: net/minecraft/client/renderer/ItemInHandRenderer/f_172873_ net/minecraft/client/renderer/ItemInHandRenderer/MAP_GLOBAL_X_POS +FD: net/minecraft/client/renderer/ItemInHandRenderer/f_172874_ net/minecraft/client/renderer/ItemInHandRenderer/MAP_GLOBAL_Y_POS +FD: net/minecraft/client/renderer/ItemInHandRenderer/f_172875_ net/minecraft/client/renderer/ItemInHandRenderer/MAP_GLOBAL_Z_POS +FD: net/minecraft/client/renderer/ItemInHandRenderer/f_172876_ net/minecraft/client/renderer/ItemInHandRenderer/MAP_FINAL_SCALE +FD: net/minecraft/client/renderer/ItemInHandRenderer/f_172877_ net/minecraft/client/renderer/ItemInHandRenderer/MAP_BORDER +FD: net/minecraft/client/renderer/ItemInHandRenderer/f_172878_ net/minecraft/client/renderer/ItemInHandRenderer/MAP_HEIGHT +FD: net/minecraft/client/renderer/ItemInHandRenderer/f_172879_ net/minecraft/client/renderer/ItemInHandRenderer/MAP_WIDTH +FD: net/minecraft/client/renderer/ItemInHandRenderer/f_172880_ net/minecraft/client/renderer/ItemInHandRenderer/BOW_CHARGE_X_POS_SCALE +FD: net/minecraft/client/renderer/ItemInHandRenderer/f_172881_ net/minecraft/client/renderer/ItemInHandRenderer/BOW_CHARGE_Y_POS_SCALE +FD: net/minecraft/client/renderer/ItemInHandRenderer/f_172882_ net/minecraft/client/renderer/ItemInHandRenderer/BOW_CHARGE_Z_POS_SCALE +FD: net/minecraft/client/renderer/ItemInHandRenderer/f_172883_ net/minecraft/client/renderer/ItemInHandRenderer/BOW_CHARGE_SHAKE_X_SCALE +FD: net/minecraft/client/renderer/ItemInHandRenderer/f_172884_ net/minecraft/client/renderer/ItemInHandRenderer/BOW_CHARGE_SHAKE_Y_SCALE +FD: net/minecraft/client/renderer/ItemInHandRenderer/f_172885_ net/minecraft/client/renderer/ItemInHandRenderer/BOW_CHARGE_SHAKE_Z_SCALE +FD: net/minecraft/client/renderer/ItemInHandRenderer/f_172886_ net/minecraft/client/renderer/ItemInHandRenderer/BOW_CHARGE_Z_SCALE +FD: net/minecraft/client/renderer/ItemInHandRenderer/f_172887_ net/minecraft/client/renderer/ItemInHandRenderer/BOW_MIN_SHAKE_CHARGE +FD: net/minecraft/client/renderer/ItemInHandRenderer/f_172888_ net/minecraft/client/renderer/ItemInHandRenderer/ITEM_SWING_X_POS_SCALE +FD: net/minecraft/client/renderer/ItemInHandRenderer/f_172889_ net/minecraft/client/renderer/ItemInHandRenderer/ITEM_SWING_Y_POS_SCALE +FD: net/minecraft/client/renderer/ItemInHandRenderer/f_172890_ net/minecraft/client/renderer/ItemInHandRenderer/ITEM_SWING_Z_POS_SCALE +FD: net/minecraft/client/renderer/ItemInHandRenderer/f_172891_ net/minecraft/client/renderer/ItemInHandRenderer/ITEM_HEIGHT_SCALE +FD: net/minecraft/client/renderer/ItemInHandRenderer/f_172892_ net/minecraft/client/renderer/ItemInHandRenderer/ITEM_POS_X +FD: net/minecraft/client/renderer/ItemInHandRenderer/f_172893_ net/minecraft/client/renderer/ItemInHandRenderer/ITEM_POS_Y +FD: net/minecraft/client/renderer/ItemInHandRenderer/f_172894_ net/minecraft/client/renderer/ItemInHandRenderer/ITEM_POS_Z +FD: net/minecraft/client/renderer/ItemInHandRenderer/f_172895_ net/minecraft/client/renderer/ItemInHandRenderer/ITEM_PRESWING_ROT_Y +FD: net/minecraft/client/renderer/ItemInHandRenderer/f_172896_ net/minecraft/client/renderer/ItemInHandRenderer/ITEM_SWING_X_ROT_AMOUNT +FD: net/minecraft/client/renderer/ItemInHandRenderer/f_172897_ net/minecraft/client/renderer/ItemInHandRenderer/ITEM_SWING_Y_ROT_AMOUNT +FD: net/minecraft/client/renderer/ItemInHandRenderer/f_172898_ net/minecraft/client/renderer/ItemInHandRenderer/ITEM_SWING_Z_ROT_AMOUNT +FD: net/minecraft/client/renderer/ItemInHandRenderer/f_172899_ net/minecraft/client/renderer/ItemInHandRenderer/EAT_JIGGLE_X_ROT_AMOUNT +FD: net/minecraft/client/renderer/ItemInHandRenderer/f_172900_ net/minecraft/client/renderer/ItemInHandRenderer/EAT_JIGGLE_Y_ROT_AMOUNT +FD: net/minecraft/client/renderer/ItemInHandRenderer/f_172901_ net/minecraft/client/renderer/ItemInHandRenderer/EAT_JIGGLE_Z_ROT_AMOUNT +FD: net/minecraft/client/renderer/ItemInHandRenderer/f_172902_ net/minecraft/client/renderer/ItemInHandRenderer/EAT_JIGGLE_X_POS_SCALE +FD: net/minecraft/client/renderer/ItemInHandRenderer/f_172903_ net/minecraft/client/renderer/ItemInHandRenderer/EAT_JIGGLE_Y_POS_SCALE +FD: net/minecraft/client/renderer/ItemInHandRenderer/f_172904_ net/minecraft/client/renderer/ItemInHandRenderer/EAT_JIGGLE_Z_POS_SCALE +FD: net/minecraft/client/renderer/ItemInHandRenderer/f_172905_ net/minecraft/client/renderer/ItemInHandRenderer/EAT_JIGGLE_EXPONENT +FD: net/minecraft/client/renderer/ItemInHandRenderer/f_172906_ net/minecraft/client/renderer/ItemInHandRenderer/EAT_EXTRA_JIGGLE_CUTOFF +FD: net/minecraft/client/renderer/ItemInHandRenderer/f_172907_ net/minecraft/client/renderer/ItemInHandRenderer/EAT_EXTRA_JIGGLE_SCALE +FD: net/minecraft/client/renderer/ItemInHandRenderer/f_172908_ net/minecraft/client/renderer/ItemInHandRenderer/ARM_SWING_X_POS_SCALE +FD: net/minecraft/client/renderer/ItemInHandRenderer/f_172909_ net/minecraft/client/renderer/ItemInHandRenderer/ARM_SWING_Y_POS_SCALE +FD: net/minecraft/client/renderer/ItemInHandRenderer/f_172910_ net/minecraft/client/renderer/ItemInHandRenderer/ARM_SWING_Z_POS_SCALE +FD: net/minecraft/client/renderer/ItemInHandRenderer/f_172911_ net/minecraft/client/renderer/ItemInHandRenderer/ARM_SWING_Y_ROT_AMOUNT +FD: net/minecraft/client/renderer/ItemInHandRenderer$1/f_109386_ net/minecraft/client/renderer/ItemInHandRenderer$1/$SwitchMap$net$minecraft$world$item$UseAnim +FD: net/minecraft/client/renderer/ItemInHandRenderer$HandRenderSelection/$VALUES net/minecraft/client/renderer/ItemInHandRenderer$HandRenderSelection/$VALUES +FD: net/minecraft/client/renderer/ItemInHandRenderer$HandRenderSelection/RENDER_BOTH_HANDS net/minecraft/client/renderer/ItemInHandRenderer$HandRenderSelection/RENDER_BOTH_HANDS +FD: net/minecraft/client/renderer/ItemInHandRenderer$HandRenderSelection/RENDER_MAIN_HAND_ONLY net/minecraft/client/renderer/ItemInHandRenderer$HandRenderSelection/RENDER_MAIN_HAND_ONLY +FD: net/minecraft/client/renderer/ItemInHandRenderer$HandRenderSelection/RENDER_OFF_HAND_ONLY net/minecraft/client/renderer/ItemInHandRenderer$HandRenderSelection/RENDER_OFF_HAND_ONLY +FD: net/minecraft/client/renderer/ItemInHandRenderer$HandRenderSelection/f_172921_ net/minecraft/client/renderer/ItemInHandRenderer$HandRenderSelection/renderMainHand +FD: net/minecraft/client/renderer/ItemInHandRenderer$HandRenderSelection/f_172922_ net/minecraft/client/renderer/ItemInHandRenderer$HandRenderSelection/renderOffHand +FD: net/minecraft/client/renderer/ItemModelShaper/f_109388_ net/minecraft/client/renderer/ItemModelShaper/shapes +FD: net/minecraft/client/renderer/ItemModelShaper/f_109389_ net/minecraft/client/renderer/ItemModelShaper/shapesCache +FD: net/minecraft/client/renderer/ItemModelShaper/f_109390_ net/minecraft/client/renderer/ItemModelShaper/modelManager +FD: net/minecraft/client/renderer/LevelRenderer/f_109408_ net/minecraft/client/renderer/LevelRenderer/destroyingBlocks +FD: net/minecraft/client/renderer/LevelRenderer/f_109409_ net/minecraft/client/renderer/LevelRenderer/destructionProgress +FD: net/minecraft/client/renderer/LevelRenderer/f_109410_ net/minecraft/client/renderer/LevelRenderer/playingRecords +FD: net/minecraft/client/renderer/LevelRenderer/f_109411_ net/minecraft/client/renderer/LevelRenderer/entityTarget +FD: net/minecraft/client/renderer/LevelRenderer/f_109412_ net/minecraft/client/renderer/LevelRenderer/entityEffect +FD: net/minecraft/client/renderer/LevelRenderer/f_109413_ net/minecraft/client/renderer/LevelRenderer/translucentTarget +FD: net/minecraft/client/renderer/LevelRenderer/f_109414_ net/minecraft/client/renderer/LevelRenderer/itemEntityTarget +FD: net/minecraft/client/renderer/LevelRenderer/f_109415_ net/minecraft/client/renderer/LevelRenderer/particlesTarget +FD: net/minecraft/client/renderer/LevelRenderer/f_109416_ net/minecraft/client/renderer/LevelRenderer/weatherTarget +FD: net/minecraft/client/renderer/LevelRenderer/f_109417_ net/minecraft/client/renderer/LevelRenderer/cloudsTarget +FD: net/minecraft/client/renderer/LevelRenderer/f_109418_ net/minecraft/client/renderer/LevelRenderer/transparencyChain +FD: net/minecraft/client/renderer/LevelRenderer/f_109419_ net/minecraft/client/renderer/LevelRenderer/lastCameraX +FD: net/minecraft/client/renderer/LevelRenderer/f_109420_ net/minecraft/client/renderer/LevelRenderer/lastCameraY +FD: net/minecraft/client/renderer/LevelRenderer/f_109421_ net/minecraft/client/renderer/LevelRenderer/lastCameraZ +FD: net/minecraft/client/renderer/LevelRenderer/f_109422_ net/minecraft/client/renderer/LevelRenderer/lastCameraChunkX +FD: net/minecraft/client/renderer/LevelRenderer/f_109423_ net/minecraft/client/renderer/LevelRenderer/lastCameraChunkY +FD: net/minecraft/client/renderer/LevelRenderer/f_109424_ net/minecraft/client/renderer/LevelRenderer/lastCameraChunkZ +FD: net/minecraft/client/renderer/LevelRenderer/f_109425_ net/minecraft/client/renderer/LevelRenderer/prevCamX +FD: net/minecraft/client/renderer/LevelRenderer/f_109426_ net/minecraft/client/renderer/LevelRenderer/prevCamY +FD: net/minecraft/client/renderer/LevelRenderer/f_109427_ net/minecraft/client/renderer/LevelRenderer/prevCamZ +FD: net/minecraft/client/renderer/LevelRenderer/f_109428_ net/minecraft/client/renderer/LevelRenderer/prevCamRotX +FD: net/minecraft/client/renderer/LevelRenderer/f_109429_ net/minecraft/client/renderer/LevelRenderer/prevCamRotY +FD: net/minecraft/client/renderer/LevelRenderer/f_109430_ net/minecraft/client/renderer/LevelRenderer/prevCloudX +FD: net/minecraft/client/renderer/LevelRenderer/f_109431_ net/minecraft/client/renderer/LevelRenderer/prevCloudY +FD: net/minecraft/client/renderer/LevelRenderer/f_109432_ net/minecraft/client/renderer/LevelRenderer/prevCloudZ +FD: net/minecraft/client/renderer/LevelRenderer/f_109433_ net/minecraft/client/renderer/LevelRenderer/prevCloudColor +FD: net/minecraft/client/renderer/LevelRenderer/f_109434_ net/minecraft/client/renderer/LevelRenderer/DIRECTIONS +FD: net/minecraft/client/renderer/LevelRenderer/f_109435_ net/minecraft/client/renderer/LevelRenderer/prevCloudsType +FD: net/minecraft/client/renderer/LevelRenderer/f_109436_ net/minecraft/client/renderer/LevelRenderer/chunkRenderDispatcher +FD: net/minecraft/client/renderer/LevelRenderer/f_109438_ net/minecraft/client/renderer/LevelRenderer/lastViewDistance +FD: net/minecraft/client/renderer/LevelRenderer/f_109439_ net/minecraft/client/renderer/LevelRenderer/renderedEntities +FD: net/minecraft/client/renderer/LevelRenderer/f_109440_ net/minecraft/client/renderer/LevelRenderer/culledEntities +FD: net/minecraft/client/renderer/LevelRenderer/f_109441_ net/minecraft/client/renderer/LevelRenderer/captureFrustum +FD: net/minecraft/client/renderer/LevelRenderer/f_109442_ net/minecraft/client/renderer/LevelRenderer/capturedFrustum +FD: net/minecraft/client/renderer/LevelRenderer/f_109443_ net/minecraft/client/renderer/LevelRenderer/frustumPoints +FD: net/minecraft/client/renderer/LevelRenderer/f_109444_ net/minecraft/client/renderer/LevelRenderer/frustumPos +FD: net/minecraft/client/renderer/LevelRenderer/f_109445_ net/minecraft/client/renderer/LevelRenderer/xTransparentOld +FD: net/minecraft/client/renderer/LevelRenderer/f_109446_ net/minecraft/client/renderer/LevelRenderer/yTransparentOld +FD: net/minecraft/client/renderer/LevelRenderer/f_109447_ net/minecraft/client/renderer/LevelRenderer/zTransparentOld +FD: net/minecraft/client/renderer/LevelRenderer/f_109450_ net/minecraft/client/renderer/LevelRenderer/rainSoundTime +FD: net/minecraft/client/renderer/LevelRenderer/f_109451_ net/minecraft/client/renderer/LevelRenderer/rainSizeX +FD: net/minecraft/client/renderer/LevelRenderer/f_109452_ net/minecraft/client/renderer/LevelRenderer/rainSizeZ +FD: net/minecraft/client/renderer/LevelRenderer/f_109453_ net/minecraft/client/renderer/LevelRenderer/LOGGER +FD: net/minecraft/client/renderer/LevelRenderer/f_109454_ net/minecraft/client/renderer/LevelRenderer/MOON_LOCATION +FD: net/minecraft/client/renderer/LevelRenderer/f_109455_ net/minecraft/client/renderer/LevelRenderer/SUN_LOCATION +FD: net/minecraft/client/renderer/LevelRenderer/f_109456_ net/minecraft/client/renderer/LevelRenderer/CLOUDS_LOCATION +FD: net/minecraft/client/renderer/LevelRenderer/f_109457_ net/minecraft/client/renderer/LevelRenderer/END_SKY_LOCATION +FD: net/minecraft/client/renderer/LevelRenderer/f_109458_ net/minecraft/client/renderer/LevelRenderer/FORCEFIELD_LOCATION +FD: net/minecraft/client/renderer/LevelRenderer/f_109459_ net/minecraft/client/renderer/LevelRenderer/RAIN_LOCATION +FD: net/minecraft/client/renderer/LevelRenderer/f_109460_ net/minecraft/client/renderer/LevelRenderer/SNOW_LOCATION +FD: net/minecraft/client/renderer/LevelRenderer/f_109461_ net/minecraft/client/renderer/LevelRenderer/minecraft +FD: net/minecraft/client/renderer/LevelRenderer/f_109463_ net/minecraft/client/renderer/LevelRenderer/entityRenderDispatcher +FD: net/minecraft/client/renderer/LevelRenderer/f_109464_ net/minecraft/client/renderer/LevelRenderer/renderBuffers +FD: net/minecraft/client/renderer/LevelRenderer/f_109465_ net/minecraft/client/renderer/LevelRenderer/level +FD: net/minecraft/client/renderer/LevelRenderer/f_109468_ net/minecraft/client/renderer/LevelRenderer/globalBlockEntities +FD: net/minecraft/client/renderer/LevelRenderer/f_109469_ net/minecraft/client/renderer/LevelRenderer/viewArea +FD: net/minecraft/client/renderer/LevelRenderer/f_109471_ net/minecraft/client/renderer/LevelRenderer/starBuffer +FD: net/minecraft/client/renderer/LevelRenderer/f_109472_ net/minecraft/client/renderer/LevelRenderer/skyBuffer +FD: net/minecraft/client/renderer/LevelRenderer/f_109473_ net/minecraft/client/renderer/LevelRenderer/darkBuffer +FD: net/minecraft/client/renderer/LevelRenderer/f_109474_ net/minecraft/client/renderer/LevelRenderer/generateClouds +FD: net/minecraft/client/renderer/LevelRenderer/f_109475_ net/minecraft/client/renderer/LevelRenderer/cloudBuffer +FD: net/minecraft/client/renderer/LevelRenderer/f_109476_ net/minecraft/client/renderer/LevelRenderer/frameTimes +FD: net/minecraft/client/renderer/LevelRenderer/f_109477_ net/minecraft/client/renderer/LevelRenderer/ticks +FD: net/minecraft/client/renderer/LevelRenderer/f_172937_ net/minecraft/client/renderer/LevelRenderer/CHUNK_SIZE +FD: net/minecraft/client/renderer/LevelRenderer/f_172938_ net/minecraft/client/renderer/LevelRenderer/cullingFrustum +FD: net/minecraft/client/renderer/LevelRenderer/f_172941_ net/minecraft/client/renderer/LevelRenderer/SKY_DISC_RADIUS +FD: net/minecraft/client/renderer/LevelRenderer/f_172942_ net/minecraft/client/renderer/LevelRenderer/MIN_FOG_DISTANCE +FD: net/minecraft/client/renderer/LevelRenderer/f_172943_ net/minecraft/client/renderer/LevelRenderer/RAIN_RADIUS +FD: net/minecraft/client/renderer/LevelRenderer/f_172944_ net/minecraft/client/renderer/LevelRenderer/RAIN_DIAMETER +FD: net/minecraft/client/renderer/LevelRenderer/f_172945_ net/minecraft/client/renderer/LevelRenderer/TRANSPARENT_SORT_COUNT +FD: net/minecraft/client/renderer/LevelRenderer/f_172946_ net/minecraft/client/renderer/LevelRenderer/blockEntityRenderDispatcher +FD: net/minecraft/client/renderer/LevelRenderer/f_194297_ net/minecraft/client/renderer/LevelRenderer/renderChunksInFrustum +FD: net/minecraft/client/renderer/LevelRenderer/f_194298_ net/minecraft/client/renderer/LevelRenderer/lastFullRenderChunkUpdate +FD: net/minecraft/client/renderer/LevelRenderer/f_194299_ net/minecraft/client/renderer/LevelRenderer/needsFrustumUpdate +FD: net/minecraft/client/renderer/LevelRenderer/f_194300_ net/minecraft/client/renderer/LevelRenderer/needsFullRenderChunkUpdate +FD: net/minecraft/client/renderer/LevelRenderer/f_194301_ net/minecraft/client/renderer/LevelRenderer/nextFullUpdateMillis +FD: net/minecraft/client/renderer/LevelRenderer/f_194302_ net/minecraft/client/renderer/LevelRenderer/HALF_CHUNK_SIZE +FD: net/minecraft/client/renderer/LevelRenderer/f_194303_ net/minecraft/client/renderer/LevelRenderer/MINIMUM_ADVANCED_CULLING_DISTANCE +FD: net/minecraft/client/renderer/LevelRenderer/f_194304_ net/minecraft/client/renderer/LevelRenderer/CEILED_SECTION_DIAGONAL +FD: net/minecraft/client/renderer/LevelRenderer/f_194305_ net/minecraft/client/renderer/LevelRenderer/HALF_A_SECOND_IN_MILLIS +FD: net/minecraft/client/renderer/LevelRenderer/f_194306_ net/minecraft/client/renderer/LevelRenderer/recentlyCompiledChunks +FD: net/minecraft/client/renderer/LevelRenderer/f_194307_ net/minecraft/client/renderer/LevelRenderer/renderChunkStorage +FD: net/minecraft/client/renderer/LevelRenderer$RenderChunkInfo/f_109839_ net/minecraft/client/renderer/LevelRenderer$RenderChunkInfo/chunk +FD: net/minecraft/client/renderer/LevelRenderer$RenderChunkInfo/f_109841_ net/minecraft/client/renderer/LevelRenderer$RenderChunkInfo/directions +FD: net/minecraft/client/renderer/LevelRenderer$RenderChunkInfo/f_109842_ net/minecraft/client/renderer/LevelRenderer$RenderChunkInfo/step +FD: net/minecraft/client/renderer/LevelRenderer$RenderChunkInfo/f_173020_ net/minecraft/client/renderer/LevelRenderer$RenderChunkInfo/sourceDirections +FD: net/minecraft/client/renderer/LevelRenderer$RenderChunkStorage/f_194375_ net/minecraft/client/renderer/LevelRenderer$RenderChunkStorage/renderInfoMap +FD: net/minecraft/client/renderer/LevelRenderer$RenderChunkStorage/f_194376_ net/minecraft/client/renderer/LevelRenderer$RenderChunkStorage/renderChunks +FD: net/minecraft/client/renderer/LevelRenderer$RenderInfoMap/f_173030_ net/minecraft/client/renderer/LevelRenderer$RenderInfoMap/infos +FD: net/minecraft/client/renderer/LightTexture/f_109870_ net/minecraft/client/renderer/LightTexture/lightTexture +FD: net/minecraft/client/renderer/LightTexture/f_109871_ net/minecraft/client/renderer/LightTexture/lightPixels +FD: net/minecraft/client/renderer/LightTexture/f_109872_ net/minecraft/client/renderer/LightTexture/lightTextureLocation +FD: net/minecraft/client/renderer/LightTexture/f_109873_ net/minecraft/client/renderer/LightTexture/updateLightTexture +FD: net/minecraft/client/renderer/LightTexture/f_109874_ net/minecraft/client/renderer/LightTexture/blockLightRedFlicker +FD: net/minecraft/client/renderer/LightTexture/f_109875_ net/minecraft/client/renderer/LightTexture/renderer +FD: net/minecraft/client/renderer/LightTexture/f_109876_ net/minecraft/client/renderer/LightTexture/minecraft +FD: net/minecraft/client/renderer/LightTexture/f_173040_ net/minecraft/client/renderer/LightTexture/FULL_BRIGHT +FD: net/minecraft/client/renderer/LightTexture/f_173041_ net/minecraft/client/renderer/LightTexture/FULL_SKY +FD: net/minecraft/client/renderer/LightTexture/f_173042_ net/minecraft/client/renderer/LightTexture/FULL_BLOCK +FD: net/minecraft/client/renderer/MultiBufferSource$BufferSource/f_109904_ net/minecraft/client/renderer/MultiBufferSource$BufferSource/builder +FD: net/minecraft/client/renderer/MultiBufferSource$BufferSource/f_109905_ net/minecraft/client/renderer/MultiBufferSource$BufferSource/fixedBuffers +FD: net/minecraft/client/renderer/MultiBufferSource$BufferSource/f_109906_ net/minecraft/client/renderer/MultiBufferSource$BufferSource/lastState +FD: net/minecraft/client/renderer/MultiBufferSource$BufferSource/f_109907_ net/minecraft/client/renderer/MultiBufferSource$BufferSource/startedBuffers +FD: net/minecraft/client/renderer/OutlineBufferSource/f_109920_ net/minecraft/client/renderer/OutlineBufferSource/bufferSource +FD: net/minecraft/client/renderer/OutlineBufferSource/f_109921_ net/minecraft/client/renderer/OutlineBufferSource/outlineBufferSource +FD: net/minecraft/client/renderer/OutlineBufferSource/f_109922_ net/minecraft/client/renderer/OutlineBufferSource/teamR +FD: net/minecraft/client/renderer/OutlineBufferSource/f_109923_ net/minecraft/client/renderer/OutlineBufferSource/teamG +FD: net/minecraft/client/renderer/OutlineBufferSource/f_109924_ net/minecraft/client/renderer/OutlineBufferSource/teamB +FD: net/minecraft/client/renderer/OutlineBufferSource/f_109925_ net/minecraft/client/renderer/OutlineBufferSource/teamA +FD: net/minecraft/client/renderer/OutlineBufferSource$EntityOutlineGenerator/f_109936_ net/minecraft/client/renderer/OutlineBufferSource$EntityOutlineGenerator/delegate +FD: net/minecraft/client/renderer/OutlineBufferSource$EntityOutlineGenerator/f_109937_ net/minecraft/client/renderer/OutlineBufferSource$EntityOutlineGenerator/x +FD: net/minecraft/client/renderer/OutlineBufferSource$EntityOutlineGenerator/f_109938_ net/minecraft/client/renderer/OutlineBufferSource$EntityOutlineGenerator/y +FD: net/minecraft/client/renderer/OutlineBufferSource$EntityOutlineGenerator/f_109939_ net/minecraft/client/renderer/OutlineBufferSource$EntityOutlineGenerator/z +FD: net/minecraft/client/renderer/OutlineBufferSource$EntityOutlineGenerator/f_109940_ net/minecraft/client/renderer/OutlineBufferSource$EntityOutlineGenerator/u +FD: net/minecraft/client/renderer/OutlineBufferSource$EntityOutlineGenerator/f_109941_ net/minecraft/client/renderer/OutlineBufferSource$EntityOutlineGenerator/v +FD: net/minecraft/client/renderer/PanoramaRenderer/f_109998_ net/minecraft/client/renderer/PanoramaRenderer/minecraft +FD: net/minecraft/client/renderer/PanoramaRenderer/f_109999_ net/minecraft/client/renderer/PanoramaRenderer/cubeMap +FD: net/minecraft/client/renderer/PanoramaRenderer/f_244463_ net/minecraft/client/renderer/PanoramaRenderer/bob +FD: net/minecraft/client/renderer/PanoramaRenderer/f_244569_ net/minecraft/client/renderer/PanoramaRenderer/spin +FD: net/minecraft/client/renderer/PostChain/f_110006_ net/minecraft/client/renderer/PostChain/screenTarget +FD: net/minecraft/client/renderer/PostChain/f_110007_ net/minecraft/client/renderer/PostChain/resourceManager +FD: net/minecraft/client/renderer/PostChain/f_110008_ net/minecraft/client/renderer/PostChain/name +FD: net/minecraft/client/renderer/PostChain/f_110009_ net/minecraft/client/renderer/PostChain/passes +FD: net/minecraft/client/renderer/PostChain/f_110010_ net/minecraft/client/renderer/PostChain/customRenderTargets +FD: net/minecraft/client/renderer/PostChain/f_110011_ net/minecraft/client/renderer/PostChain/fullSizedTargets +FD: net/minecraft/client/renderer/PostChain/f_110012_ net/minecraft/client/renderer/PostChain/shaderOrthoMatrix +FD: net/minecraft/client/renderer/PostChain/f_110013_ net/minecraft/client/renderer/PostChain/screenWidth +FD: net/minecraft/client/renderer/PostChain/f_110014_ net/minecraft/client/renderer/PostChain/screenHeight +FD: net/minecraft/client/renderer/PostChain/f_110015_ net/minecraft/client/renderer/PostChain/time +FD: net/minecraft/client/renderer/PostChain/f_110016_ net/minecraft/client/renderer/PostChain/lastStamp +FD: net/minecraft/client/renderer/PostChain/f_173045_ net/minecraft/client/renderer/PostChain/MAIN_RENDER_TARGET +FD: net/minecraft/client/renderer/PostPass/f_110052_ net/minecraft/client/renderer/PostPass/inTarget +FD: net/minecraft/client/renderer/PostPass/f_110053_ net/minecraft/client/renderer/PostPass/outTarget +FD: net/minecraft/client/renderer/PostPass/f_110054_ net/minecraft/client/renderer/PostPass/effect +FD: net/minecraft/client/renderer/PostPass/f_110055_ net/minecraft/client/renderer/PostPass/auxAssets +FD: net/minecraft/client/renderer/PostPass/f_110056_ net/minecraft/client/renderer/PostPass/auxNames +FD: net/minecraft/client/renderer/PostPass/f_110057_ net/minecraft/client/renderer/PostPass/auxWidths +FD: net/minecraft/client/renderer/PostPass/f_110058_ net/minecraft/client/renderer/PostPass/auxHeights +FD: net/minecraft/client/renderer/PostPass/f_110059_ net/minecraft/client/renderer/PostPass/shaderOrthoMatrix +FD: net/minecraft/client/renderer/Rect2i/f_110076_ net/minecraft/client/renderer/Rect2i/xPos +FD: net/minecraft/client/renderer/Rect2i/f_110077_ net/minecraft/client/renderer/Rect2i/yPos +FD: net/minecraft/client/renderer/Rect2i/f_110078_ net/minecraft/client/renderer/Rect2i/width +FD: net/minecraft/client/renderer/Rect2i/f_110079_ net/minecraft/client/renderer/Rect2i/height +FD: net/minecraft/client/renderer/RenderBuffers/f_110092_ net/minecraft/client/renderer/RenderBuffers/fixedBufferPack +FD: net/minecraft/client/renderer/RenderBuffers/f_110093_ net/minecraft/client/renderer/RenderBuffers/fixedBuffers +FD: net/minecraft/client/renderer/RenderBuffers/f_110094_ net/minecraft/client/renderer/RenderBuffers/bufferSource +FD: net/minecraft/client/renderer/RenderBuffers/f_110095_ net/minecraft/client/renderer/RenderBuffers/crumblingBufferSource +FD: net/minecraft/client/renderer/RenderBuffers/f_110096_ net/minecraft/client/renderer/RenderBuffers/outlineBufferSource +FD: net/minecraft/client/renderer/RenderStateShard/f_110110_ net/minecraft/client/renderer/RenderStateShard/NO_CULL +FD: net/minecraft/client/renderer/RenderStateShard/f_110111_ net/minecraft/client/renderer/RenderStateShard/NO_DEPTH_TEST +FD: net/minecraft/client/renderer/RenderStateShard/f_110112_ net/minecraft/client/renderer/RenderStateShard/EQUAL_DEPTH_TEST +FD: net/minecraft/client/renderer/RenderStateShard/f_110113_ net/minecraft/client/renderer/RenderStateShard/LEQUAL_DEPTH_TEST +FD: net/minecraft/client/renderer/RenderStateShard/f_110114_ net/minecraft/client/renderer/RenderStateShard/COLOR_DEPTH_WRITE +FD: net/minecraft/client/renderer/RenderStateShard/f_110115_ net/minecraft/client/renderer/RenderStateShard/COLOR_WRITE +FD: net/minecraft/client/renderer/RenderStateShard/f_110116_ net/minecraft/client/renderer/RenderStateShard/DEPTH_WRITE +FD: net/minecraft/client/renderer/RenderStateShard/f_110117_ net/minecraft/client/renderer/RenderStateShard/NO_LAYERING +FD: net/minecraft/client/renderer/RenderStateShard/f_110118_ net/minecraft/client/renderer/RenderStateShard/POLYGON_OFFSET_LAYERING +FD: net/minecraft/client/renderer/RenderStateShard/f_110119_ net/minecraft/client/renderer/RenderStateShard/VIEW_OFFSET_Z_LAYERING +FD: net/minecraft/client/renderer/RenderStateShard/f_110123_ net/minecraft/client/renderer/RenderStateShard/MAIN_TARGET +FD: net/minecraft/client/renderer/RenderStateShard/f_110124_ net/minecraft/client/renderer/RenderStateShard/OUTLINE_TARGET +FD: net/minecraft/client/renderer/RenderStateShard/f_110125_ net/minecraft/client/renderer/RenderStateShard/TRANSLUCENT_TARGET +FD: net/minecraft/client/renderer/RenderStateShard/f_110126_ net/minecraft/client/renderer/RenderStateShard/PARTICLES_TARGET +FD: net/minecraft/client/renderer/RenderStateShard/f_110127_ net/minecraft/client/renderer/RenderStateShard/WEATHER_TARGET +FD: net/minecraft/client/renderer/RenderStateShard/f_110128_ net/minecraft/client/renderer/RenderStateShard/CLOUDS_TARGET +FD: net/minecraft/client/renderer/RenderStateShard/f_110129_ net/minecraft/client/renderer/RenderStateShard/ITEM_ENTITY_TARGET +FD: net/minecraft/client/renderer/RenderStateShard/f_110130_ net/minecraft/client/renderer/RenderStateShard/DEFAULT_LINE +FD: net/minecraft/client/renderer/RenderStateShard/f_110131_ net/minecraft/client/renderer/RenderStateShard/setupState +FD: net/minecraft/client/renderer/RenderStateShard/f_110132_ net/minecraft/client/renderer/RenderStateShard/clearState +FD: net/minecraft/client/renderer/RenderStateShard/f_110133_ net/minecraft/client/renderer/RenderStateShard/name +FD: net/minecraft/client/renderer/RenderStateShard/f_110134_ net/minecraft/client/renderer/RenderStateShard/NO_TRANSPARENCY +FD: net/minecraft/client/renderer/RenderStateShard/f_110135_ net/minecraft/client/renderer/RenderStateShard/ADDITIVE_TRANSPARENCY +FD: net/minecraft/client/renderer/RenderStateShard/f_110136_ net/minecraft/client/renderer/RenderStateShard/LIGHTNING_TRANSPARENCY +FD: net/minecraft/client/renderer/RenderStateShard/f_110137_ net/minecraft/client/renderer/RenderStateShard/GLINT_TRANSPARENCY +FD: net/minecraft/client/renderer/RenderStateShard/f_110138_ net/minecraft/client/renderer/RenderStateShard/CRUMBLING_TRANSPARENCY +FD: net/minecraft/client/renderer/RenderStateShard/f_110139_ net/minecraft/client/renderer/RenderStateShard/TRANSLUCENT_TRANSPARENCY +FD: net/minecraft/client/renderer/RenderStateShard/f_110145_ net/minecraft/client/renderer/RenderStateShard/BLOCK_SHEET_MIPPED +FD: net/minecraft/client/renderer/RenderStateShard/f_110146_ net/minecraft/client/renderer/RenderStateShard/BLOCK_SHEET +FD: net/minecraft/client/renderer/RenderStateShard/f_110147_ net/minecraft/client/renderer/RenderStateShard/NO_TEXTURE +FD: net/minecraft/client/renderer/RenderStateShard/f_110148_ net/minecraft/client/renderer/RenderStateShard/DEFAULT_TEXTURING +FD: net/minecraft/client/renderer/RenderStateShard/f_110150_ net/minecraft/client/renderer/RenderStateShard/GLINT_TEXTURING +FD: net/minecraft/client/renderer/RenderStateShard/f_110151_ net/minecraft/client/renderer/RenderStateShard/ENTITY_GLINT_TEXTURING +FD: net/minecraft/client/renderer/RenderStateShard/f_110152_ net/minecraft/client/renderer/RenderStateShard/LIGHTMAP +FD: net/minecraft/client/renderer/RenderStateShard/f_110153_ net/minecraft/client/renderer/RenderStateShard/NO_LIGHTMAP +FD: net/minecraft/client/renderer/RenderStateShard/f_110154_ net/minecraft/client/renderer/RenderStateShard/OVERLAY +FD: net/minecraft/client/renderer/RenderStateShard/f_110155_ net/minecraft/client/renderer/RenderStateShard/NO_OVERLAY +FD: net/minecraft/client/renderer/RenderStateShard/f_110158_ net/minecraft/client/renderer/RenderStateShard/CULL +FD: net/minecraft/client/renderer/RenderStateShard/f_173063_ net/minecraft/client/renderer/RenderStateShard/RENDERTYPE_ENTITY_CUTOUT_NO_CULL_Z_OFFSET_SHADER +FD: net/minecraft/client/renderer/RenderStateShard/f_173064_ net/minecraft/client/renderer/RenderStateShard/RENDERTYPE_ITEM_ENTITY_TRANSLUCENT_CULL_SHADER +FD: net/minecraft/client/renderer/RenderStateShard/f_173065_ net/minecraft/client/renderer/RenderStateShard/RENDERTYPE_ENTITY_TRANSLUCENT_CULL_SHADER +FD: net/minecraft/client/renderer/RenderStateShard/f_173066_ net/minecraft/client/renderer/RenderStateShard/RENDERTYPE_ENTITY_TRANSLUCENT_SHADER +FD: net/minecraft/client/renderer/RenderStateShard/f_173067_ net/minecraft/client/renderer/RenderStateShard/RENDERTYPE_ENTITY_SMOOTH_CUTOUT_SHADER +FD: net/minecraft/client/renderer/RenderStateShard/f_173068_ net/minecraft/client/renderer/RenderStateShard/RENDERTYPE_BEACON_BEAM_SHADER +FD: net/minecraft/client/renderer/RenderStateShard/f_173069_ net/minecraft/client/renderer/RenderStateShard/RENDERTYPE_ENTITY_DECAL_SHADER +FD: net/minecraft/client/renderer/RenderStateShard/f_173070_ net/minecraft/client/renderer/RenderStateShard/RENDERTYPE_ENTITY_NO_OUTLINE_SHADER +FD: net/minecraft/client/renderer/RenderStateShard/f_173071_ net/minecraft/client/renderer/RenderStateShard/RENDERTYPE_ENTITY_SHADOW_SHADER +FD: net/minecraft/client/renderer/RenderStateShard/f_173072_ net/minecraft/client/renderer/RenderStateShard/RENDERTYPE_ENTITY_ALPHA_SHADER +FD: net/minecraft/client/renderer/RenderStateShard/f_173073_ net/minecraft/client/renderer/RenderStateShard/RENDERTYPE_EYES_SHADER +FD: net/minecraft/client/renderer/RenderStateShard/f_173074_ net/minecraft/client/renderer/RenderStateShard/RENDERTYPE_ENERGY_SWIRL_SHADER +FD: net/minecraft/client/renderer/RenderStateShard/f_173075_ net/minecraft/client/renderer/RenderStateShard/RENDERTYPE_LEASH_SHADER +FD: net/minecraft/client/renderer/RenderStateShard/f_173076_ net/minecraft/client/renderer/RenderStateShard/RENDERTYPE_WATER_MASK_SHADER +FD: net/minecraft/client/renderer/RenderStateShard/f_173077_ net/minecraft/client/renderer/RenderStateShard/RENDERTYPE_OUTLINE_SHADER +FD: net/minecraft/client/renderer/RenderStateShard/f_173078_ net/minecraft/client/renderer/RenderStateShard/RENDERTYPE_ARMOR_GLINT_SHADER +FD: net/minecraft/client/renderer/RenderStateShard/f_173079_ net/minecraft/client/renderer/RenderStateShard/RENDERTYPE_ARMOR_ENTITY_GLINT_SHADER +FD: net/minecraft/client/renderer/RenderStateShard/f_173080_ net/minecraft/client/renderer/RenderStateShard/RENDERTYPE_GLINT_TRANSLUCENT_SHADER +FD: net/minecraft/client/renderer/RenderStateShard/f_173081_ net/minecraft/client/renderer/RenderStateShard/RENDERTYPE_GLINT_SHADER +FD: net/minecraft/client/renderer/RenderStateShard/f_173082_ net/minecraft/client/renderer/RenderStateShard/RENDERTYPE_GLINT_DIRECT_SHADER +FD: net/minecraft/client/renderer/RenderStateShard/f_173083_ net/minecraft/client/renderer/RenderStateShard/RENDERTYPE_ENTITY_GLINT_SHADER +FD: net/minecraft/client/renderer/RenderStateShard/f_173084_ net/minecraft/client/renderer/RenderStateShard/RENDERTYPE_ENTITY_GLINT_DIRECT_SHADER +FD: net/minecraft/client/renderer/RenderStateShard/f_173085_ net/minecraft/client/renderer/RenderStateShard/RENDERTYPE_CRUMBLING_SHADER +FD: net/minecraft/client/renderer/RenderStateShard/f_173086_ net/minecraft/client/renderer/RenderStateShard/RENDERTYPE_TEXT_SHADER +FD: net/minecraft/client/renderer/RenderStateShard/f_173087_ net/minecraft/client/renderer/RenderStateShard/RENDERTYPE_TEXT_INTENSITY_SHADER +FD: net/minecraft/client/renderer/RenderStateShard/f_173088_ net/minecraft/client/renderer/RenderStateShard/RENDERTYPE_TEXT_SEE_THROUGH_SHADER +FD: net/minecraft/client/renderer/RenderStateShard/f_173089_ net/minecraft/client/renderer/RenderStateShard/VIEW_SCALE_Z_EPSILON +FD: net/minecraft/client/renderer/RenderStateShard/f_173090_ net/minecraft/client/renderer/RenderStateShard/RENDERTYPE_TEXT_INTENSITY_SEE_THROUGH_SHADER +FD: net/minecraft/client/renderer/RenderStateShard/f_173091_ net/minecraft/client/renderer/RenderStateShard/RENDERTYPE_LIGHTNING_SHADER +FD: net/minecraft/client/renderer/RenderStateShard/f_173092_ net/minecraft/client/renderer/RenderStateShard/RENDERTYPE_TRIPWIRE_SHADER +FD: net/minecraft/client/renderer/RenderStateShard/f_173093_ net/minecraft/client/renderer/RenderStateShard/RENDERTYPE_END_PORTAL_SHADER +FD: net/minecraft/client/renderer/RenderStateShard/f_173094_ net/minecraft/client/renderer/RenderStateShard/RENDERTYPE_END_GATEWAY_SHADER +FD: net/minecraft/client/renderer/RenderStateShard/f_173095_ net/minecraft/client/renderer/RenderStateShard/RENDERTYPE_LINES_SHADER +FD: net/minecraft/client/renderer/RenderStateShard/f_173096_ net/minecraft/client/renderer/RenderStateShard/NO_SHADER +FD: net/minecraft/client/renderer/RenderStateShard/f_173099_ net/minecraft/client/renderer/RenderStateShard/POSITION_COLOR_LIGHTMAP_SHADER +FD: net/minecraft/client/renderer/RenderStateShard/f_173100_ net/minecraft/client/renderer/RenderStateShard/POSITION_SHADER +FD: net/minecraft/client/renderer/RenderStateShard/f_173101_ net/minecraft/client/renderer/RenderStateShard/POSITION_COLOR_TEX_SHADER +FD: net/minecraft/client/renderer/RenderStateShard/f_173102_ net/minecraft/client/renderer/RenderStateShard/POSITION_TEX_SHADER +FD: net/minecraft/client/renderer/RenderStateShard/f_173103_ net/minecraft/client/renderer/RenderStateShard/POSITION_COLOR_TEX_LIGHTMAP_SHADER +FD: net/minecraft/client/renderer/RenderStateShard/f_173104_ net/minecraft/client/renderer/RenderStateShard/POSITION_COLOR_SHADER +FD: net/minecraft/client/renderer/RenderStateShard/f_173105_ net/minecraft/client/renderer/RenderStateShard/RENDERTYPE_SOLID_SHADER +FD: net/minecraft/client/renderer/RenderStateShard/f_173106_ net/minecraft/client/renderer/RenderStateShard/RENDERTYPE_CUTOUT_MIPPED_SHADER +FD: net/minecraft/client/renderer/RenderStateShard/f_173107_ net/minecraft/client/renderer/RenderStateShard/RENDERTYPE_CUTOUT_SHADER +FD: net/minecraft/client/renderer/RenderStateShard/f_173108_ net/minecraft/client/renderer/RenderStateShard/RENDERTYPE_TRANSLUCENT_SHADER +FD: net/minecraft/client/renderer/RenderStateShard/f_173109_ net/minecraft/client/renderer/RenderStateShard/RENDERTYPE_TRANSLUCENT_MOVING_BLOCK_SHADER +FD: net/minecraft/client/renderer/RenderStateShard/f_173110_ net/minecraft/client/renderer/RenderStateShard/RENDERTYPE_TRANSLUCENT_NO_CRUMBLING_SHADER +FD: net/minecraft/client/renderer/RenderStateShard/f_173111_ net/minecraft/client/renderer/RenderStateShard/RENDERTYPE_ARMOR_CUTOUT_NO_CULL_SHADER +FD: net/minecraft/client/renderer/RenderStateShard/f_173112_ net/minecraft/client/renderer/RenderStateShard/RENDERTYPE_ENTITY_SOLID_SHADER +FD: net/minecraft/client/renderer/RenderStateShard/f_173113_ net/minecraft/client/renderer/RenderStateShard/RENDERTYPE_ENTITY_CUTOUT_SHADER +FD: net/minecraft/client/renderer/RenderStateShard/f_173114_ net/minecraft/client/renderer/RenderStateShard/RENDERTYPE_ENTITY_CUTOUT_NO_CULL_SHADER +FD: net/minecraft/client/renderer/RenderStateShard/f_234323_ net/minecraft/client/renderer/RenderStateShard/RENDERTYPE_ENTITY_TRANSLUCENT_EMISSIVE_SHADER +FD: net/minecraft/client/renderer/RenderStateShard/f_267492_ net/minecraft/client/renderer/RenderStateShard/MAX_ENCHANTMENT_GLINT_SPEED_MILLIS +FD: net/minecraft/client/renderer/RenderStateShard/f_268491_ net/minecraft/client/renderer/RenderStateShard/RENDERTYPE_TEXT_BACKGROUND_SEE_THROUGH_SHADER +FD: net/minecraft/client/renderer/RenderStateShard/f_268568_ net/minecraft/client/renderer/RenderStateShard/RENDERTYPE_TEXT_BACKGROUND_SHADER +FD: net/minecraft/client/renderer/RenderStateShard/f_285573_ net/minecraft/client/renderer/RenderStateShard/RENDERTYPE_GUI_SHADER +FD: net/minecraft/client/renderer/RenderStateShard/f_285579_ net/minecraft/client/renderer/RenderStateShard/GREATER_DEPTH_TEST +FD: net/minecraft/client/renderer/RenderStateShard/f_285582_ net/minecraft/client/renderer/RenderStateShard/RENDERTYPE_GUI_GHOST_RECIPE_OVERLAY_SHADER +FD: net/minecraft/client/renderer/RenderStateShard/f_285585_ net/minecraft/client/renderer/RenderStateShard/NO_COLOR_LOGIC +FD: net/minecraft/client/renderer/RenderStateShard/f_285603_ net/minecraft/client/renderer/RenderStateShard/OR_REVERSE_COLOR_LOGIC +FD: net/minecraft/client/renderer/RenderStateShard/f_285619_ net/minecraft/client/renderer/RenderStateShard/RENDERTYPE_GUI_OVERLAY_SHADER +FD: net/minecraft/client/renderer/RenderStateShard/f_285642_ net/minecraft/client/renderer/RenderStateShard/RENDERTYPE_GUI_TEXT_HIGHLIGHT_SHADER +FD: net/minecraft/client/renderer/RenderStateShard$BooleanStateShard/f_110227_ net/minecraft/client/renderer/RenderStateShard$BooleanStateShard/enabled +FD: net/minecraft/client/renderer/RenderStateShard$DepthTestStateShard/f_110243_ net/minecraft/client/renderer/RenderStateShard$DepthTestStateShard/functionName +FD: net/minecraft/client/renderer/RenderStateShard$LineStateShard/f_110276_ net/minecraft/client/renderer/RenderStateShard$LineStateShard/width +FD: net/minecraft/client/renderer/RenderStateShard$MultiTextureStateShard/f_173121_ net/minecraft/client/renderer/RenderStateShard$MultiTextureStateShard/cutoutTexture +FD: net/minecraft/client/renderer/RenderStateShard$MultiTextureStateShard$Builder/f_173129_ net/minecraft/client/renderer/RenderStateShard$MultiTextureStateShard$Builder/builder +FD: net/minecraft/client/renderer/RenderStateShard$ShaderStateShard/f_173136_ net/minecraft/client/renderer/RenderStateShard$ShaderStateShard/shader +FD: net/minecraft/client/renderer/RenderStateShard$TextureStateShard/f_110328_ net/minecraft/client/renderer/RenderStateShard$TextureStateShard/texture +FD: net/minecraft/client/renderer/RenderStateShard$TextureStateShard/f_110329_ net/minecraft/client/renderer/RenderStateShard$TextureStateShard/blur +FD: net/minecraft/client/renderer/RenderStateShard$TextureStateShard/f_110330_ net/minecraft/client/renderer/RenderStateShard$TextureStateShard/mipmap +FD: net/minecraft/client/renderer/RenderStateShard$WriteMaskStateShard/f_110356_ net/minecraft/client/renderer/RenderStateShard$WriteMaskStateShard/writeColor +FD: net/minecraft/client/renderer/RenderStateShard$WriteMaskStateShard/f_110357_ net/minecraft/client/renderer/RenderStateShard$WriteMaskStateShard/writeDepth +FD: net/minecraft/client/renderer/RenderType/f_110371_ net/minecraft/client/renderer/RenderType/LINES +FD: net/minecraft/client/renderer/RenderType/f_110372_ net/minecraft/client/renderer/RenderType/SOLID +FD: net/minecraft/client/renderer/RenderType/f_110373_ net/minecraft/client/renderer/RenderType/CUTOUT_MIPPED +FD: net/minecraft/client/renderer/RenderType/f_110374_ net/minecraft/client/renderer/RenderType/CUTOUT +FD: net/minecraft/client/renderer/RenderType/f_110375_ net/minecraft/client/renderer/RenderType/TRANSLUCENT +FD: net/minecraft/client/renderer/RenderType/f_110376_ net/minecraft/client/renderer/RenderType/TRANSLUCENT_MOVING_BLOCK +FD: net/minecraft/client/renderer/RenderType/f_110377_ net/minecraft/client/renderer/RenderType/TRANSLUCENT_NO_CRUMBLING +FD: net/minecraft/client/renderer/RenderType/f_110378_ net/minecraft/client/renderer/RenderType/LEASH +FD: net/minecraft/client/renderer/RenderType/f_110379_ net/minecraft/client/renderer/RenderType/WATER_MASK +FD: net/minecraft/client/renderer/RenderType/f_110380_ net/minecraft/client/renderer/RenderType/ARMOR_GLINT +FD: net/minecraft/client/renderer/RenderType/f_110381_ net/minecraft/client/renderer/RenderType/ARMOR_ENTITY_GLINT +FD: net/minecraft/client/renderer/RenderType/f_110382_ net/minecraft/client/renderer/RenderType/GLINT_TRANSLUCENT +FD: net/minecraft/client/renderer/RenderType/f_110383_ net/minecraft/client/renderer/RenderType/GLINT +FD: net/minecraft/client/renderer/RenderType/f_110384_ net/minecraft/client/renderer/RenderType/GLINT_DIRECT +FD: net/minecraft/client/renderer/RenderType/f_110385_ net/minecraft/client/renderer/RenderType/ENTITY_GLINT +FD: net/minecraft/client/renderer/RenderType/f_110386_ net/minecraft/client/renderer/RenderType/ENTITY_GLINT_DIRECT +FD: net/minecraft/client/renderer/RenderType/f_110387_ net/minecraft/client/renderer/RenderType/LIGHTNING +FD: net/minecraft/client/renderer/RenderType/f_110388_ net/minecraft/client/renderer/RenderType/TRIPWIRE +FD: net/minecraft/client/renderer/RenderType/f_110389_ net/minecraft/client/renderer/RenderType/format +FD: net/minecraft/client/renderer/RenderType/f_110390_ net/minecraft/client/renderer/RenderType/mode +FD: net/minecraft/client/renderer/RenderType/f_110391_ net/minecraft/client/renderer/RenderType/bufferSize +FD: net/minecraft/client/renderer/RenderType/f_110392_ net/minecraft/client/renderer/RenderType/affectsCrumbling +FD: net/minecraft/client/renderer/RenderType/f_110393_ net/minecraft/client/renderer/RenderType/sortOnUpload +FD: net/minecraft/client/renderer/RenderType/f_110394_ net/minecraft/client/renderer/RenderType/asOptional +FD: net/minecraft/client/renderer/RenderType/f_173148_ net/minecraft/client/renderer/RenderType/BIG_BUFFER_SIZE +FD: net/minecraft/client/renderer/RenderType/f_173149_ net/minecraft/client/renderer/RenderType/MEDIUM_BUFFER_SIZE +FD: net/minecraft/client/renderer/RenderType/f_173150_ net/minecraft/client/renderer/RenderType/SMALL_BUFFER_SIZE +FD: net/minecraft/client/renderer/RenderType/f_173151_ net/minecraft/client/renderer/RenderType/TRANSIENT_BUFFER_SIZE +FD: net/minecraft/client/renderer/RenderType/f_173152_ net/minecraft/client/renderer/RenderType/LINE_STRIP +FD: net/minecraft/client/renderer/RenderType/f_173153_ net/minecraft/client/renderer/RenderType/BYTES_IN_INT +FD: net/minecraft/client/renderer/RenderType/f_173154_ net/minecraft/client/renderer/RenderType/MEGABYTE +FD: net/minecraft/client/renderer/RenderType/f_173155_ net/minecraft/client/renderer/RenderType/ARMOR_CUTOUT_NO_CULL +FD: net/minecraft/client/renderer/RenderType/f_173156_ net/minecraft/client/renderer/RenderType/ENTITY_SOLID +FD: net/minecraft/client/renderer/RenderType/f_173157_ net/minecraft/client/renderer/RenderType/ENTITY_CUTOUT +FD: net/minecraft/client/renderer/RenderType/f_173158_ net/minecraft/client/renderer/RenderType/END_PORTAL +FD: net/minecraft/client/renderer/RenderType/f_173159_ net/minecraft/client/renderer/RenderType/END_GATEWAY +FD: net/minecraft/client/renderer/RenderType/f_173160_ net/minecraft/client/renderer/RenderType/ENTITY_CUTOUT_NO_CULL +FD: net/minecraft/client/renderer/RenderType/f_173161_ net/minecraft/client/renderer/RenderType/ENTITY_CUTOUT_NO_CULL_Z_OFFSET +FD: net/minecraft/client/renderer/RenderType/f_173162_ net/minecraft/client/renderer/RenderType/ITEM_ENTITY_TRANSLUCENT_CULL +FD: net/minecraft/client/renderer/RenderType/f_173163_ net/minecraft/client/renderer/RenderType/ENTITY_TRANSLUCENT_CULL +FD: net/minecraft/client/renderer/RenderType/f_173164_ net/minecraft/client/renderer/RenderType/ENTITY_TRANSLUCENT +FD: net/minecraft/client/renderer/RenderType/f_173165_ net/minecraft/client/renderer/RenderType/ENTITY_SMOOTH_CUTOUT +FD: net/minecraft/client/renderer/RenderType/f_173166_ net/minecraft/client/renderer/RenderType/BEACON_BEAM +FD: net/minecraft/client/renderer/RenderType/f_173167_ net/minecraft/client/renderer/RenderType/ENTITY_DECAL +FD: net/minecraft/client/renderer/RenderType/f_173168_ net/minecraft/client/renderer/RenderType/ENTITY_NO_OUTLINE +FD: net/minecraft/client/renderer/RenderType/f_173169_ net/minecraft/client/renderer/RenderType/ENTITY_SHADOW +FD: net/minecraft/client/renderer/RenderType/f_173170_ net/minecraft/client/renderer/RenderType/DRAGON_EXPLOSION_ALPHA +FD: net/minecraft/client/renderer/RenderType/f_173171_ net/minecraft/client/renderer/RenderType/EYES +FD: net/minecraft/client/renderer/RenderType/f_173172_ net/minecraft/client/renderer/RenderType/CRUMBLING +FD: net/minecraft/client/renderer/RenderType/f_173173_ net/minecraft/client/renderer/RenderType/TEXT +FD: net/minecraft/client/renderer/RenderType/f_173174_ net/minecraft/client/renderer/RenderType/TEXT_INTENSITY +FD: net/minecraft/client/renderer/RenderType/f_173175_ net/minecraft/client/renderer/RenderType/TEXT_SEE_THROUGH +FD: net/minecraft/client/renderer/RenderType/f_173176_ net/minecraft/client/renderer/RenderType/TEXT_INTENSITY_SEE_THROUGH +FD: net/minecraft/client/renderer/RenderType/f_181442_ net/minecraft/client/renderer/RenderType/TEXT_POLYGON_OFFSET +FD: net/minecraft/client/renderer/RenderType/f_181443_ net/minecraft/client/renderer/RenderType/TEXT_INTENSITY_POLYGON_OFFSET +FD: net/minecraft/client/renderer/RenderType/f_234324_ net/minecraft/client/renderer/RenderType/CHUNK_BUFFER_LAYERS +FD: net/minecraft/client/renderer/RenderType/f_234325_ net/minecraft/client/renderer/RenderType/ENTITY_TRANSLUCENT_EMISSIVE +FD: net/minecraft/client/renderer/RenderType/f_268519_ net/minecraft/client/renderer/RenderType/DEBUG_QUADS +FD: net/minecraft/client/renderer/RenderType/f_268540_ net/minecraft/client/renderer/RenderType/DEBUG_FILLED_BOX +FD: net/minecraft/client/renderer/RenderType/f_268619_ net/minecraft/client/renderer/RenderType/TEXT_BACKGROUND_SEE_THROUGH +FD: net/minecraft/client/renderer/RenderType/f_268665_ net/minecraft/client/renderer/RenderType/TEXT_BACKGROUND +FD: net/minecraft/client/renderer/RenderType/f_268753_ net/minecraft/client/renderer/RenderType/DEBUG_LINE_STRIP +FD: net/minecraft/client/renderer/RenderType/f_279582_ net/minecraft/client/renderer/RenderType/DEBUG_SECTION_QUADS +FD: net/minecraft/client/renderer/RenderType/f_285558_ net/minecraft/client/renderer/RenderType/GUI +FD: net/minecraft/client/renderer/RenderType/f_285624_ net/minecraft/client/renderer/RenderType/GUI_OVERLAY +FD: net/minecraft/client/renderer/RenderType/f_285639_ net/minecraft/client/renderer/RenderType/GUI_GHOST_RECIPE_OVERLAY +FD: net/minecraft/client/renderer/RenderType/f_285662_ net/minecraft/client/renderer/RenderType/GUI_TEXT_HIGHLIGHT +FD: net/minecraft/client/renderer/RenderType$CompositeRenderType/f_110511_ net/minecraft/client/renderer/RenderType$CompositeRenderType/state +FD: net/minecraft/client/renderer/RenderType$CompositeRenderType/f_110513_ net/minecraft/client/renderer/RenderType$CompositeRenderType/outline +FD: net/minecraft/client/renderer/RenderType$CompositeRenderType/f_110514_ net/minecraft/client/renderer/RenderType$CompositeRenderType/isOutline +FD: net/minecraft/client/renderer/RenderType$CompositeRenderType/f_173256_ net/minecraft/client/renderer/RenderType$CompositeRenderType/OUTLINE +FD: net/minecraft/client/renderer/RenderType$CompositeState/f_110576_ net/minecraft/client/renderer/RenderType$CompositeState/textureState +FD: net/minecraft/client/renderer/RenderType$CompositeState/f_110577_ net/minecraft/client/renderer/RenderType$CompositeState/transparencyState +FD: net/minecraft/client/renderer/RenderType$CompositeState/f_110581_ net/minecraft/client/renderer/RenderType$CompositeState/depthTestState +FD: net/minecraft/client/renderer/RenderType$CompositeState/f_110582_ net/minecraft/client/renderer/RenderType$CompositeState/cullState +FD: net/minecraft/client/renderer/RenderType$CompositeState/f_110583_ net/minecraft/client/renderer/RenderType$CompositeState/lightmapState +FD: net/minecraft/client/renderer/RenderType$CompositeState/f_110584_ net/minecraft/client/renderer/RenderType$CompositeState/overlayState +FD: net/minecraft/client/renderer/RenderType$CompositeState/f_110586_ net/minecraft/client/renderer/RenderType$CompositeState/layeringState +FD: net/minecraft/client/renderer/RenderType$CompositeState/f_110587_ net/minecraft/client/renderer/RenderType$CompositeState/outputState +FD: net/minecraft/client/renderer/RenderType$CompositeState/f_110588_ net/minecraft/client/renderer/RenderType$CompositeState/texturingState +FD: net/minecraft/client/renderer/RenderType$CompositeState/f_110589_ net/minecraft/client/renderer/RenderType$CompositeState/writeMaskState +FD: net/minecraft/client/renderer/RenderType$CompositeState/f_110590_ net/minecraft/client/renderer/RenderType$CompositeState/lineState +FD: net/minecraft/client/renderer/RenderType$CompositeState/f_110591_ net/minecraft/client/renderer/RenderType$CompositeState/outlineProperty +FD: net/minecraft/client/renderer/RenderType$CompositeState/f_110592_ net/minecraft/client/renderer/RenderType$CompositeState/states +FD: net/minecraft/client/renderer/RenderType$CompositeState/f_173274_ net/minecraft/client/renderer/RenderType$CompositeState/shaderState +FD: net/minecraft/client/renderer/RenderType$CompositeState/f_285566_ net/minecraft/client/renderer/RenderType$CompositeState/colorLogicState +FD: net/minecraft/client/renderer/RenderType$CompositeState$CompositeStateBuilder/f_110641_ net/minecraft/client/renderer/RenderType$CompositeState$CompositeStateBuilder/textureState +FD: net/minecraft/client/renderer/RenderType$CompositeState$CompositeStateBuilder/f_110642_ net/minecraft/client/renderer/RenderType$CompositeState$CompositeStateBuilder/transparencyState +FD: net/minecraft/client/renderer/RenderType$CompositeState$CompositeStateBuilder/f_110646_ net/minecraft/client/renderer/RenderType$CompositeState$CompositeStateBuilder/depthTestState +FD: net/minecraft/client/renderer/RenderType$CompositeState$CompositeStateBuilder/f_110647_ net/minecraft/client/renderer/RenderType$CompositeState$CompositeStateBuilder/cullState +FD: net/minecraft/client/renderer/RenderType$CompositeState$CompositeStateBuilder/f_110648_ net/minecraft/client/renderer/RenderType$CompositeState$CompositeStateBuilder/lightmapState +FD: net/minecraft/client/renderer/RenderType$CompositeState$CompositeStateBuilder/f_110649_ net/minecraft/client/renderer/RenderType$CompositeState$CompositeStateBuilder/overlayState +FD: net/minecraft/client/renderer/RenderType$CompositeState$CompositeStateBuilder/f_110651_ net/minecraft/client/renderer/RenderType$CompositeState$CompositeStateBuilder/layeringState +FD: net/minecraft/client/renderer/RenderType$CompositeState$CompositeStateBuilder/f_110652_ net/minecraft/client/renderer/RenderType$CompositeState$CompositeStateBuilder/outputState +FD: net/minecraft/client/renderer/RenderType$CompositeState$CompositeStateBuilder/f_110653_ net/minecraft/client/renderer/RenderType$CompositeState$CompositeStateBuilder/texturingState +FD: net/minecraft/client/renderer/RenderType$CompositeState$CompositeStateBuilder/f_110654_ net/minecraft/client/renderer/RenderType$CompositeState$CompositeStateBuilder/writeMaskState +FD: net/minecraft/client/renderer/RenderType$CompositeState$CompositeStateBuilder/f_110655_ net/minecraft/client/renderer/RenderType$CompositeState$CompositeStateBuilder/lineState +FD: net/minecraft/client/renderer/RenderType$CompositeState$CompositeStateBuilder/f_173289_ net/minecraft/client/renderer/RenderType$CompositeState$CompositeStateBuilder/shaderState +FD: net/minecraft/client/renderer/RenderType$CompositeState$CompositeStateBuilder/f_285600_ net/minecraft/client/renderer/RenderType$CompositeState$CompositeStateBuilder/colorLogicState +FD: net/minecraft/client/renderer/RenderType$OutlineProperty/$VALUES net/minecraft/client/renderer/RenderType$OutlineProperty/$VALUES +FD: net/minecraft/client/renderer/RenderType$OutlineProperty/AFFECTS_OUTLINE net/minecraft/client/renderer/RenderType$OutlineProperty/AFFECTS_OUTLINE +FD: net/minecraft/client/renderer/RenderType$OutlineProperty/IS_OUTLINE net/minecraft/client/renderer/RenderType$OutlineProperty/IS_OUTLINE +FD: net/minecraft/client/renderer/RenderType$OutlineProperty/NONE net/minecraft/client/renderer/RenderType$OutlineProperty/NONE +FD: net/minecraft/client/renderer/RenderType$OutlineProperty/f_110696_ net/minecraft/client/renderer/RenderType$OutlineProperty/name +FD: net/minecraft/client/renderer/RunningTrimmedMean/f_110707_ net/minecraft/client/renderer/RunningTrimmedMean/values +FD: net/minecraft/client/renderer/RunningTrimmedMean/f_110708_ net/minecraft/client/renderer/RunningTrimmedMean/count +FD: net/minecraft/client/renderer/RunningTrimmedMean/f_110709_ net/minecraft/client/renderer/RunningTrimmedMean/cursor +FD: net/minecraft/client/renderer/ScreenEffectRenderer/f_110714_ net/minecraft/client/renderer/ScreenEffectRenderer/UNDERWATER_LOCATION +FD: net/minecraft/client/renderer/ShaderInstance/f_173299_ net/minecraft/client/renderer/ShaderInstance/programId +FD: net/minecraft/client/renderer/ShaderInstance/f_173300_ net/minecraft/client/renderer/ShaderInstance/name +FD: net/minecraft/client/renderer/ShaderInstance/f_173301_ net/minecraft/client/renderer/ShaderInstance/dirty +FD: net/minecraft/client/renderer/ShaderInstance/f_173302_ net/minecraft/client/renderer/ShaderInstance/blend +FD: net/minecraft/client/renderer/ShaderInstance/f_173303_ net/minecraft/client/renderer/ShaderInstance/attributes +FD: net/minecraft/client/renderer/ShaderInstance/f_173304_ net/minecraft/client/renderer/ShaderInstance/attributeNames +FD: net/minecraft/client/renderer/ShaderInstance/f_173305_ net/minecraft/client/renderer/ShaderInstance/vertexProgram +FD: net/minecraft/client/renderer/ShaderInstance/f_173306_ net/minecraft/client/renderer/ShaderInstance/fragmentProgram +FD: net/minecraft/client/renderer/ShaderInstance/f_173307_ net/minecraft/client/renderer/ShaderInstance/vertexFormat +FD: net/minecraft/client/renderer/ShaderInstance/f_173308_ net/minecraft/client/renderer/ShaderInstance/MODEL_VIEW_MATRIX +FD: net/minecraft/client/renderer/ShaderInstance/f_173309_ net/minecraft/client/renderer/ShaderInstance/PROJECTION_MATRIX +FD: net/minecraft/client/renderer/ShaderInstance/f_173310_ net/minecraft/client/renderer/ShaderInstance/TEXTURE_MATRIX +FD: net/minecraft/client/renderer/ShaderInstance/f_173311_ net/minecraft/client/renderer/ShaderInstance/SCREEN_SIZE +FD: net/minecraft/client/renderer/ShaderInstance/f_173312_ net/minecraft/client/renderer/ShaderInstance/COLOR_MODULATOR +FD: net/minecraft/client/renderer/ShaderInstance/f_173313_ net/minecraft/client/renderer/ShaderInstance/LIGHT0_DIRECTION +FD: net/minecraft/client/renderer/ShaderInstance/f_173314_ net/minecraft/client/renderer/ShaderInstance/LIGHT1_DIRECTION +FD: net/minecraft/client/renderer/ShaderInstance/f_173315_ net/minecraft/client/renderer/ShaderInstance/FOG_START +FD: net/minecraft/client/renderer/ShaderInstance/f_173316_ net/minecraft/client/renderer/ShaderInstance/FOG_END +FD: net/minecraft/client/renderer/ShaderInstance/f_173317_ net/minecraft/client/renderer/ShaderInstance/FOG_COLOR +FD: net/minecraft/client/renderer/ShaderInstance/f_173318_ net/minecraft/client/renderer/ShaderInstance/LINE_WIDTH +FD: net/minecraft/client/renderer/ShaderInstance/f_173319_ net/minecraft/client/renderer/ShaderInstance/GAME_TIME +FD: net/minecraft/client/renderer/ShaderInstance/f_173320_ net/minecraft/client/renderer/ShaderInstance/CHUNK_OFFSET +FD: net/minecraft/client/renderer/ShaderInstance/f_173321_ net/minecraft/client/renderer/ShaderInstance/SHADER_PATH +FD: net/minecraft/client/renderer/ShaderInstance/f_173322_ net/minecraft/client/renderer/ShaderInstance/SHADER_INCLUDE_PATH +FD: net/minecraft/client/renderer/ShaderInstance/f_173323_ net/minecraft/client/renderer/ShaderInstance/LOGGER +FD: net/minecraft/client/renderer/ShaderInstance/f_173324_ net/minecraft/client/renderer/ShaderInstance/DUMMY_UNIFORM +FD: net/minecraft/client/renderer/ShaderInstance/f_173325_ net/minecraft/client/renderer/ShaderInstance/ALWAYS_REAPPLY +FD: net/minecraft/client/renderer/ShaderInstance/f_173326_ net/minecraft/client/renderer/ShaderInstance/lastAppliedShader +FD: net/minecraft/client/renderer/ShaderInstance/f_173327_ net/minecraft/client/renderer/ShaderInstance/lastProgramId +FD: net/minecraft/client/renderer/ShaderInstance/f_173328_ net/minecraft/client/renderer/ShaderInstance/samplerMap +FD: net/minecraft/client/renderer/ShaderInstance/f_173329_ net/minecraft/client/renderer/ShaderInstance/samplerNames +FD: net/minecraft/client/renderer/ShaderInstance/f_173330_ net/minecraft/client/renderer/ShaderInstance/samplerLocations +FD: net/minecraft/client/renderer/ShaderInstance/f_173331_ net/minecraft/client/renderer/ShaderInstance/uniforms +FD: net/minecraft/client/renderer/ShaderInstance/f_173332_ net/minecraft/client/renderer/ShaderInstance/uniformLocations +FD: net/minecraft/client/renderer/ShaderInstance/f_173333_ net/minecraft/client/renderer/ShaderInstance/uniformMap +FD: net/minecraft/client/renderer/ShaderInstance/f_200956_ net/minecraft/client/renderer/ShaderInstance/INVERSE_VIEW_ROTATION_MATRIX +FD: net/minecraft/client/renderer/ShaderInstance/f_202432_ net/minecraft/client/renderer/ShaderInstance/FOG_SHAPE +FD: net/minecraft/client/renderer/ShaderInstance/f_244364_ net/minecraft/client/renderer/ShaderInstance/SHADER_CORE_PATH +FD: net/minecraft/client/renderer/ShaderInstance/f_267422_ net/minecraft/client/renderer/ShaderInstance/GLINT_ALPHA +FD: net/minecraft/client/renderer/ShaderInstance$1/f_173367_ net/minecraft/client/renderer/ShaderInstance$1/val$relativePath +FD: net/minecraft/client/renderer/ShaderInstance$1/f_173368_ net/minecraft/client/renderer/ShaderInstance$1/val$resourceProvider +FD: net/minecraft/client/renderer/ShaderInstance$1/f_173369_ net/minecraft/client/renderer/ShaderInstance$1/importedPaths +FD: net/minecraft/client/renderer/Sheets/f_110731_ net/minecraft/client/renderer/Sheets/SOLID_BLOCK_SHEET +FD: net/minecraft/client/renderer/Sheets/f_110732_ net/minecraft/client/renderer/Sheets/CUTOUT_BLOCK_SHEET +FD: net/minecraft/client/renderer/Sheets/f_110733_ net/minecraft/client/renderer/Sheets/TRANSLUCENT_ITEM_CULL_BLOCK_SHEET +FD: net/minecraft/client/renderer/Sheets/f_110734_ net/minecraft/client/renderer/Sheets/TRANSLUCENT_CULL_BLOCK_SHEET +FD: net/minecraft/client/renderer/Sheets/f_110735_ net/minecraft/client/renderer/Sheets/SHULKER_SHEET +FD: net/minecraft/client/renderer/Sheets/f_110736_ net/minecraft/client/renderer/Sheets/BED_SHEET +FD: net/minecraft/client/renderer/Sheets/f_110737_ net/minecraft/client/renderer/Sheets/BANNER_SHEET +FD: net/minecraft/client/renderer/Sheets/f_110738_ net/minecraft/client/renderer/Sheets/SHIELD_SHEET +FD: net/minecraft/client/renderer/Sheets/f_110739_ net/minecraft/client/renderer/Sheets/SIGN_SHEET +FD: net/minecraft/client/renderer/Sheets/f_110740_ net/minecraft/client/renderer/Sheets/CHEST_SHEET +FD: net/minecraft/client/renderer/Sheets/f_110741_ net/minecraft/client/renderer/Sheets/DEFAULT_SHULKER_TEXTURE_LOCATION +FD: net/minecraft/client/renderer/Sheets/f_110742_ net/minecraft/client/renderer/Sheets/SHULKER_TEXTURE_LOCATION +FD: net/minecraft/client/renderer/Sheets/f_110743_ net/minecraft/client/renderer/Sheets/SIGN_MATERIALS +FD: net/minecraft/client/renderer/Sheets/f_110744_ net/minecraft/client/renderer/Sheets/BED_TEXTURES +FD: net/minecraft/client/renderer/Sheets/f_110745_ net/minecraft/client/renderer/Sheets/CHEST_TRAP_LOCATION +FD: net/minecraft/client/renderer/Sheets/f_110746_ net/minecraft/client/renderer/Sheets/CHEST_TRAP_LOCATION_LEFT +FD: net/minecraft/client/renderer/Sheets/f_110747_ net/minecraft/client/renderer/Sheets/CHEST_TRAP_LOCATION_RIGHT +FD: net/minecraft/client/renderer/Sheets/f_110748_ net/minecraft/client/renderer/Sheets/CHEST_XMAS_LOCATION +FD: net/minecraft/client/renderer/Sheets/f_110749_ net/minecraft/client/renderer/Sheets/CHEST_XMAS_LOCATION_LEFT +FD: net/minecraft/client/renderer/Sheets/f_110750_ net/minecraft/client/renderer/Sheets/CHEST_XMAS_LOCATION_RIGHT +FD: net/minecraft/client/renderer/Sheets/f_110751_ net/minecraft/client/renderer/Sheets/CHEST_LOCATION +FD: net/minecraft/client/renderer/Sheets/f_110752_ net/minecraft/client/renderer/Sheets/CHEST_LOCATION_LEFT +FD: net/minecraft/client/renderer/Sheets/f_110753_ net/minecraft/client/renderer/Sheets/CHEST_LOCATION_RIGHT +FD: net/minecraft/client/renderer/Sheets/f_110754_ net/minecraft/client/renderer/Sheets/ENDER_CHEST_LOCATION +FD: net/minecraft/client/renderer/Sheets/f_110755_ net/minecraft/client/renderer/Sheets/SHULKER_BOX_SHEET_TYPE +FD: net/minecraft/client/renderer/Sheets/f_110756_ net/minecraft/client/renderer/Sheets/BED_SHEET_TYPE +FD: net/minecraft/client/renderer/Sheets/f_110757_ net/minecraft/client/renderer/Sheets/BANNER_SHEET_TYPE +FD: net/minecraft/client/renderer/Sheets/f_110758_ net/minecraft/client/renderer/Sheets/SHIELD_SHEET_TYPE +FD: net/minecraft/client/renderer/Sheets/f_110759_ net/minecraft/client/renderer/Sheets/SIGN_SHEET_TYPE +FD: net/minecraft/client/renderer/Sheets/f_110760_ net/minecraft/client/renderer/Sheets/CHEST_SHEET_TYPE +FD: net/minecraft/client/renderer/Sheets/f_173376_ net/minecraft/client/renderer/Sheets/BANNER_MATERIALS +FD: net/minecraft/client/renderer/Sheets/f_173377_ net/minecraft/client/renderer/Sheets/SHIELD_MATERIALS +FD: net/minecraft/client/renderer/Sheets/f_244291_ net/minecraft/client/renderer/Sheets/HANGING_SIGN_MATERIALS +FD: net/minecraft/client/renderer/Sheets/f_265912_ net/minecraft/client/renderer/Sheets/ARMOR_TRIMS_SHEET +FD: net/minecraft/client/renderer/Sheets/f_266092_ net/minecraft/client/renderer/Sheets/ARMOR_TRIMS_SHEET_TYPE +FD: net/minecraft/client/renderer/Sheets/f_271463_ net/minecraft/client/renderer/Sheets/DECORATED_POT_SHEET +FD: net/minecraft/client/renderer/Sheets/f_271486_ net/minecraft/client/renderer/Sheets/DECORATED_POT_MATERIALS +FD: net/minecraft/client/renderer/Sheets$1/f_110793_ net/minecraft/client/renderer/Sheets$1/$SwitchMap$net$minecraft$world$level$block$state$properties$ChestType +FD: net/minecraft/client/renderer/SpriteCoordinateExpander/f_110795_ net/minecraft/client/renderer/SpriteCoordinateExpander/delegate +FD: net/minecraft/client/renderer/SpriteCoordinateExpander/f_110796_ net/minecraft/client/renderer/SpriteCoordinateExpander/sprite +FD: net/minecraft/client/renderer/ViewArea/f_110838_ net/minecraft/client/renderer/ViewArea/levelRenderer +FD: net/minecraft/client/renderer/ViewArea/f_110839_ net/minecraft/client/renderer/ViewArea/level +FD: net/minecraft/client/renderer/ViewArea/f_110840_ net/minecraft/client/renderer/ViewArea/chunkGridSizeY +FD: net/minecraft/client/renderer/ViewArea/f_110841_ net/minecraft/client/renderer/ViewArea/chunkGridSizeX +FD: net/minecraft/client/renderer/ViewArea/f_110842_ net/minecraft/client/renderer/ViewArea/chunkGridSizeZ +FD: net/minecraft/client/renderer/ViewArea/f_110843_ net/minecraft/client/renderer/ViewArea/chunks +FD: net/minecraft/client/renderer/VirtualScreen/f_110868_ net/minecraft/client/renderer/VirtualScreen/minecraft +FD: net/minecraft/client/renderer/VirtualScreen/f_110869_ net/minecraft/client/renderer/VirtualScreen/screenManager +FD: net/minecraft/client/renderer/block/BlockModelShaper/f_110877_ net/minecraft/client/renderer/block/BlockModelShaper/modelByStateCache +FD: net/minecraft/client/renderer/block/BlockModelShaper/f_110878_ net/minecraft/client/renderer/block/BlockModelShaper/modelManager +FD: net/minecraft/client/renderer/block/BlockRenderDispatcher/f_110899_ net/minecraft/client/renderer/block/BlockRenderDispatcher/blockModelShaper +FD: net/minecraft/client/renderer/block/BlockRenderDispatcher/f_110900_ net/minecraft/client/renderer/block/BlockRenderDispatcher/modelRenderer +FD: net/minecraft/client/renderer/block/BlockRenderDispatcher/f_110901_ net/minecraft/client/renderer/block/BlockRenderDispatcher/liquidBlockRenderer +FD: net/minecraft/client/renderer/block/BlockRenderDispatcher/f_110902_ net/minecraft/client/renderer/block/BlockRenderDispatcher/random +FD: net/minecraft/client/renderer/block/BlockRenderDispatcher/f_110903_ net/minecraft/client/renderer/block/BlockRenderDispatcher/blockColors +FD: net/minecraft/client/renderer/block/BlockRenderDispatcher/f_173397_ net/minecraft/client/renderer/block/BlockRenderDispatcher/blockEntityRenderer +FD: net/minecraft/client/renderer/block/BlockRenderDispatcher$1/f_110938_ net/minecraft/client/renderer/block/BlockRenderDispatcher$1/$SwitchMap$net$minecraft$world$level$block$RenderShape +FD: net/minecraft/client/renderer/block/LiquidBlockRenderer/f_110940_ net/minecraft/client/renderer/block/LiquidBlockRenderer/lavaIcons +FD: net/minecraft/client/renderer/block/LiquidBlockRenderer/f_110941_ net/minecraft/client/renderer/block/LiquidBlockRenderer/waterIcons +FD: net/minecraft/client/renderer/block/LiquidBlockRenderer/f_110942_ net/minecraft/client/renderer/block/LiquidBlockRenderer/waterOverlay +FD: net/minecraft/client/renderer/block/LiquidBlockRenderer/f_173402_ net/minecraft/client/renderer/block/LiquidBlockRenderer/MAX_FLUID_HEIGHT +FD: net/minecraft/client/renderer/block/LiquidBlockRenderer$1/f_203191_ net/minecraft/client/renderer/block/LiquidBlockRenderer$1/$SwitchMap$net$minecraft$core$Direction +FD: net/minecraft/client/renderer/block/ModelBlockRenderer/f_110995_ net/minecraft/client/renderer/block/ModelBlockRenderer/blockColors +FD: net/minecraft/client/renderer/block/ModelBlockRenderer/f_110996_ net/minecraft/client/renderer/block/ModelBlockRenderer/CACHE +FD: net/minecraft/client/renderer/block/ModelBlockRenderer/f_173403_ net/minecraft/client/renderer/block/ModelBlockRenderer/FACE_CUBIC +FD: net/minecraft/client/renderer/block/ModelBlockRenderer/f_173404_ net/minecraft/client/renderer/block/ModelBlockRenderer/FACE_PARTIAL +FD: net/minecraft/client/renderer/block/ModelBlockRenderer/f_173405_ net/minecraft/client/renderer/block/ModelBlockRenderer/DIRECTIONS +FD: net/minecraft/client/renderer/block/ModelBlockRenderer/f_173406_ net/minecraft/client/renderer/block/ModelBlockRenderer/CACHE_SIZE +FD: net/minecraft/client/renderer/block/ModelBlockRenderer$1/f_111102_ net/minecraft/client/renderer/block/ModelBlockRenderer$1/$SwitchMap$net$minecraft$core$Direction +FD: net/minecraft/client/renderer/block/ModelBlockRenderer$AdjacencyInfo/$VALUES net/minecraft/client/renderer/block/ModelBlockRenderer$AdjacencyInfo/$VALUES +FD: net/minecraft/client/renderer/block/ModelBlockRenderer$AdjacencyInfo/DOWN net/minecraft/client/renderer/block/ModelBlockRenderer$AdjacencyInfo/DOWN +FD: net/minecraft/client/renderer/block/ModelBlockRenderer$AdjacencyInfo/EAST net/minecraft/client/renderer/block/ModelBlockRenderer$AdjacencyInfo/EAST +FD: net/minecraft/client/renderer/block/ModelBlockRenderer$AdjacencyInfo/NORTH net/minecraft/client/renderer/block/ModelBlockRenderer$AdjacencyInfo/NORTH +FD: net/minecraft/client/renderer/block/ModelBlockRenderer$AdjacencyInfo/SOUTH net/minecraft/client/renderer/block/ModelBlockRenderer$AdjacencyInfo/SOUTH +FD: net/minecraft/client/renderer/block/ModelBlockRenderer$AdjacencyInfo/UP net/minecraft/client/renderer/block/ModelBlockRenderer$AdjacencyInfo/UP +FD: net/minecraft/client/renderer/block/ModelBlockRenderer$AdjacencyInfo/WEST net/minecraft/client/renderer/block/ModelBlockRenderer$AdjacencyInfo/WEST +FD: net/minecraft/client/renderer/block/ModelBlockRenderer$AdjacencyInfo/f_111110_ net/minecraft/client/renderer/block/ModelBlockRenderer$AdjacencyInfo/corners +FD: net/minecraft/client/renderer/block/ModelBlockRenderer$AdjacencyInfo/f_111111_ net/minecraft/client/renderer/block/ModelBlockRenderer$AdjacencyInfo/doNonCubicWeight +FD: net/minecraft/client/renderer/block/ModelBlockRenderer$AdjacencyInfo/f_111112_ net/minecraft/client/renderer/block/ModelBlockRenderer$AdjacencyInfo/vert0Weights +FD: net/minecraft/client/renderer/block/ModelBlockRenderer$AdjacencyInfo/f_111113_ net/minecraft/client/renderer/block/ModelBlockRenderer$AdjacencyInfo/vert1Weights +FD: net/minecraft/client/renderer/block/ModelBlockRenderer$AdjacencyInfo/f_111114_ net/minecraft/client/renderer/block/ModelBlockRenderer$AdjacencyInfo/vert2Weights +FD: net/minecraft/client/renderer/block/ModelBlockRenderer$AdjacencyInfo/f_111115_ net/minecraft/client/renderer/block/ModelBlockRenderer$AdjacencyInfo/vert3Weights +FD: net/minecraft/client/renderer/block/ModelBlockRenderer$AdjacencyInfo/f_111116_ net/minecraft/client/renderer/block/ModelBlockRenderer$AdjacencyInfo/BY_FACING +FD: net/minecraft/client/renderer/block/ModelBlockRenderer$AmbientOcclusionFace/f_111149_ net/minecraft/client/renderer/block/ModelBlockRenderer$AmbientOcclusionFace/brightness +FD: net/minecraft/client/renderer/block/ModelBlockRenderer$AmbientOcclusionFace/f_111150_ net/minecraft/client/renderer/block/ModelBlockRenderer$AmbientOcclusionFace/lightmap +FD: net/minecraft/client/renderer/block/ModelBlockRenderer$AmbientVertexRemap/$VALUES net/minecraft/client/renderer/block/ModelBlockRenderer$AmbientVertexRemap/$VALUES +FD: net/minecraft/client/renderer/block/ModelBlockRenderer$AmbientVertexRemap/DOWN net/minecraft/client/renderer/block/ModelBlockRenderer$AmbientVertexRemap/DOWN +FD: net/minecraft/client/renderer/block/ModelBlockRenderer$AmbientVertexRemap/EAST net/minecraft/client/renderer/block/ModelBlockRenderer$AmbientVertexRemap/EAST +FD: net/minecraft/client/renderer/block/ModelBlockRenderer$AmbientVertexRemap/NORTH net/minecraft/client/renderer/block/ModelBlockRenderer$AmbientVertexRemap/NORTH +FD: net/minecraft/client/renderer/block/ModelBlockRenderer$AmbientVertexRemap/SOUTH net/minecraft/client/renderer/block/ModelBlockRenderer$AmbientVertexRemap/SOUTH +FD: net/minecraft/client/renderer/block/ModelBlockRenderer$AmbientVertexRemap/UP net/minecraft/client/renderer/block/ModelBlockRenderer$AmbientVertexRemap/UP +FD: net/minecraft/client/renderer/block/ModelBlockRenderer$AmbientVertexRemap/WEST net/minecraft/client/renderer/block/ModelBlockRenderer$AmbientVertexRemap/WEST +FD: net/minecraft/client/renderer/block/ModelBlockRenderer$AmbientVertexRemap/f_111185_ net/minecraft/client/renderer/block/ModelBlockRenderer$AmbientVertexRemap/vert0 +FD: net/minecraft/client/renderer/block/ModelBlockRenderer$AmbientVertexRemap/f_111186_ net/minecraft/client/renderer/block/ModelBlockRenderer$AmbientVertexRemap/vert1 +FD: net/minecraft/client/renderer/block/ModelBlockRenderer$AmbientVertexRemap/f_111187_ net/minecraft/client/renderer/block/ModelBlockRenderer$AmbientVertexRemap/vert2 +FD: net/minecraft/client/renderer/block/ModelBlockRenderer$AmbientVertexRemap/f_111188_ net/minecraft/client/renderer/block/ModelBlockRenderer$AmbientVertexRemap/vert3 +FD: net/minecraft/client/renderer/block/ModelBlockRenderer$AmbientVertexRemap/f_111189_ net/minecraft/client/renderer/block/ModelBlockRenderer$AmbientVertexRemap/BY_FACING +FD: net/minecraft/client/renderer/block/ModelBlockRenderer$Cache/f_111214_ net/minecraft/client/renderer/block/ModelBlockRenderer$Cache/enabled +FD: net/minecraft/client/renderer/block/ModelBlockRenderer$Cache/f_111215_ net/minecraft/client/renderer/block/ModelBlockRenderer$Cache/colorCache +FD: net/minecraft/client/renderer/block/ModelBlockRenderer$Cache/f_111216_ net/minecraft/client/renderer/block/ModelBlockRenderer$Cache/brightnessCache +FD: net/minecraft/client/renderer/block/ModelBlockRenderer$Cache$1/f_111232_ net/minecraft/client/renderer/block/ModelBlockRenderer$Cache$1/this$0 +FD: net/minecraft/client/renderer/block/ModelBlockRenderer$Cache$2/f_111239_ net/minecraft/client/renderer/block/ModelBlockRenderer$Cache$2/this$0 +FD: net/minecraft/client/renderer/block/ModelBlockRenderer$SizeInfo/$VALUES net/minecraft/client/renderer/block/ModelBlockRenderer$SizeInfo/$VALUES +FD: net/minecraft/client/renderer/block/ModelBlockRenderer$SizeInfo/DOWN net/minecraft/client/renderer/block/ModelBlockRenderer$SizeInfo/DOWN +FD: net/minecraft/client/renderer/block/ModelBlockRenderer$SizeInfo/EAST net/minecraft/client/renderer/block/ModelBlockRenderer$SizeInfo/EAST +FD: net/minecraft/client/renderer/block/ModelBlockRenderer$SizeInfo/FLIP_DOWN net/minecraft/client/renderer/block/ModelBlockRenderer$SizeInfo/FLIP_DOWN +FD: net/minecraft/client/renderer/block/ModelBlockRenderer$SizeInfo/FLIP_EAST net/minecraft/client/renderer/block/ModelBlockRenderer$SizeInfo/FLIP_EAST +FD: net/minecraft/client/renderer/block/ModelBlockRenderer$SizeInfo/FLIP_NORTH net/minecraft/client/renderer/block/ModelBlockRenderer$SizeInfo/FLIP_NORTH +FD: net/minecraft/client/renderer/block/ModelBlockRenderer$SizeInfo/FLIP_SOUTH net/minecraft/client/renderer/block/ModelBlockRenderer$SizeInfo/FLIP_SOUTH +FD: net/minecraft/client/renderer/block/ModelBlockRenderer$SizeInfo/FLIP_UP net/minecraft/client/renderer/block/ModelBlockRenderer$SizeInfo/FLIP_UP +FD: net/minecraft/client/renderer/block/ModelBlockRenderer$SizeInfo/FLIP_WEST net/minecraft/client/renderer/block/ModelBlockRenderer$SizeInfo/FLIP_WEST +FD: net/minecraft/client/renderer/block/ModelBlockRenderer$SizeInfo/NORTH net/minecraft/client/renderer/block/ModelBlockRenderer$SizeInfo/NORTH +FD: net/minecraft/client/renderer/block/ModelBlockRenderer$SizeInfo/SOUTH net/minecraft/client/renderer/block/ModelBlockRenderer$SizeInfo/SOUTH +FD: net/minecraft/client/renderer/block/ModelBlockRenderer$SizeInfo/UP net/minecraft/client/renderer/block/ModelBlockRenderer$SizeInfo/UP +FD: net/minecraft/client/renderer/block/ModelBlockRenderer$SizeInfo/WEST net/minecraft/client/renderer/block/ModelBlockRenderer$SizeInfo/WEST +FD: net/minecraft/client/renderer/block/ModelBlockRenderer$SizeInfo/f_111258_ net/minecraft/client/renderer/block/ModelBlockRenderer$SizeInfo/shape +FD: net/minecraft/client/renderer/block/model/BakedQuad/f_111292_ net/minecraft/client/renderer/block/model/BakedQuad/vertices +FD: net/minecraft/client/renderer/block/model/BakedQuad/f_111293_ net/minecraft/client/renderer/block/model/BakedQuad/tintIndex +FD: net/minecraft/client/renderer/block/model/BakedQuad/f_111294_ net/minecraft/client/renderer/block/model/BakedQuad/direction +FD: net/minecraft/client/renderer/block/model/BakedQuad/f_111295_ net/minecraft/client/renderer/block/model/BakedQuad/sprite +FD: net/minecraft/client/renderer/block/model/BakedQuad/f_111296_ net/minecraft/client/renderer/block/model/BakedQuad/shade +FD: net/minecraft/client/renderer/block/model/BlockElement/f_111308_ net/minecraft/client/renderer/block/model/BlockElement/from +FD: net/minecraft/client/renderer/block/model/BlockElement/f_111309_ net/minecraft/client/renderer/block/model/BlockElement/to +FD: net/minecraft/client/renderer/block/model/BlockElement/f_111310_ net/minecraft/client/renderer/block/model/BlockElement/faces +FD: net/minecraft/client/renderer/block/model/BlockElement/f_111311_ net/minecraft/client/renderer/block/model/BlockElement/rotation +FD: net/minecraft/client/renderer/block/model/BlockElement/f_111312_ net/minecraft/client/renderer/block/model/BlockElement/shade +FD: net/minecraft/client/renderer/block/model/BlockElement/f_173411_ net/minecraft/client/renderer/block/model/BlockElement/DEFAULT_RESCALE +FD: net/minecraft/client/renderer/block/model/BlockElement/f_173412_ net/minecraft/client/renderer/block/model/BlockElement/MIN_EXTENT +FD: net/minecraft/client/renderer/block/model/BlockElement/f_173413_ net/minecraft/client/renderer/block/model/BlockElement/MAX_EXTENT +FD: net/minecraft/client/renderer/block/model/BlockElement$1/f_111322_ net/minecraft/client/renderer/block/model/BlockElement$1/$SwitchMap$net$minecraft$core$Direction +FD: net/minecraft/client/renderer/block/model/BlockElement$Deserializer/f_173414_ net/minecraft/client/renderer/block/model/BlockElement$Deserializer/DEFAULT_SHADE +FD: net/minecraft/client/renderer/block/model/BlockElementFace/f_111354_ net/minecraft/client/renderer/block/model/BlockElementFace/cullForDirection +FD: net/minecraft/client/renderer/block/model/BlockElementFace/f_111355_ net/minecraft/client/renderer/block/model/BlockElementFace/tintIndex +FD: net/minecraft/client/renderer/block/model/BlockElementFace/f_111356_ net/minecraft/client/renderer/block/model/BlockElementFace/texture +FD: net/minecraft/client/renderer/block/model/BlockElementFace/f_111357_ net/minecraft/client/renderer/block/model/BlockElementFace/uv +FD: net/minecraft/client/renderer/block/model/BlockElementFace/f_173415_ net/minecraft/client/renderer/block/model/BlockElementFace/NO_TINT +FD: net/minecraft/client/renderer/block/model/BlockElementFace$Deserializer/f_173416_ net/minecraft/client/renderer/block/model/BlockElementFace$Deserializer/DEFAULT_TINT_INDEX +FD: net/minecraft/client/renderer/block/model/BlockElementRotation/f_111378_ net/minecraft/client/renderer/block/model/BlockElementRotation/origin +FD: net/minecraft/client/renderer/block/model/BlockElementRotation/f_111379_ net/minecraft/client/renderer/block/model/BlockElementRotation/axis +FD: net/minecraft/client/renderer/block/model/BlockElementRotation/f_111380_ net/minecraft/client/renderer/block/model/BlockElementRotation/angle +FD: net/minecraft/client/renderer/block/model/BlockElementRotation/f_111381_ net/minecraft/client/renderer/block/model/BlockElementRotation/rescale +FD: net/minecraft/client/renderer/block/model/BlockFaceUV/f_111387_ net/minecraft/client/renderer/block/model/BlockFaceUV/uvs +FD: net/minecraft/client/renderer/block/model/BlockFaceUV/f_111388_ net/minecraft/client/renderer/block/model/BlockFaceUV/rotation +FD: net/minecraft/client/renderer/block/model/BlockFaceUV$Deserializer/f_173417_ net/minecraft/client/renderer/block/model/BlockFaceUV$Deserializer/DEFAULT_ROTATION +FD: net/minecraft/client/renderer/block/model/BlockModel/f_111415_ net/minecraft/client/renderer/block/model/BlockModel/GSON +FD: net/minecraft/client/renderer/block/model/BlockModel/f_111416_ net/minecraft/client/renderer/block/model/BlockModel/name +FD: net/minecraft/client/renderer/block/model/BlockModel/f_111417_ net/minecraft/client/renderer/block/model/BlockModel/textureMap +FD: net/minecraft/client/renderer/block/model/BlockModel/f_111418_ net/minecraft/client/renderer/block/model/BlockModel/parent +FD: net/minecraft/client/renderer/block/model/BlockModel/f_111419_ net/minecraft/client/renderer/block/model/BlockModel/parentLocation +FD: net/minecraft/client/renderer/block/model/BlockModel/f_111420_ net/minecraft/client/renderer/block/model/BlockModel/LOGGER +FD: net/minecraft/client/renderer/block/model/BlockModel/f_111421_ net/minecraft/client/renderer/block/model/BlockModel/FACE_BAKERY +FD: net/minecraft/client/renderer/block/model/BlockModel/f_111422_ net/minecraft/client/renderer/block/model/BlockModel/elements +FD: net/minecraft/client/renderer/block/model/BlockModel/f_111423_ net/minecraft/client/renderer/block/model/BlockModel/guiLight +FD: net/minecraft/client/renderer/block/model/BlockModel/f_111424_ net/minecraft/client/renderer/block/model/BlockModel/hasAmbientOcclusion +FD: net/minecraft/client/renderer/block/model/BlockModel/f_111425_ net/minecraft/client/renderer/block/model/BlockModel/transforms +FD: net/minecraft/client/renderer/block/model/BlockModel/f_111426_ net/minecraft/client/renderer/block/model/BlockModel/overrides +FD: net/minecraft/client/renderer/block/model/BlockModel/f_173418_ net/minecraft/client/renderer/block/model/BlockModel/PARTICLE_TEXTURE_REFERENCE +FD: net/minecraft/client/renderer/block/model/BlockModel/f_173419_ net/minecraft/client/renderer/block/model/BlockModel/REFERENCE_CHAR +FD: net/minecraft/client/renderer/block/model/BlockModel/f_271537_ net/minecraft/client/renderer/block/model/BlockModel/DEFAULT_AMBIENT_OCCLUSION +FD: net/minecraft/client/renderer/block/model/BlockModel$GuiLight/$VALUES net/minecraft/client/renderer/block/model/BlockModel$GuiLight/$VALUES +FD: net/minecraft/client/renderer/block/model/BlockModel$GuiLight/FRONT net/minecraft/client/renderer/block/model/BlockModel$GuiLight/FRONT +FD: net/minecraft/client/renderer/block/model/BlockModel$GuiLight/SIDE net/minecraft/client/renderer/block/model/BlockModel$GuiLight/SIDE +FD: net/minecraft/client/renderer/block/model/BlockModel$GuiLight/f_111519_ net/minecraft/client/renderer/block/model/BlockModel$GuiLight/name +FD: net/minecraft/client/renderer/block/model/BlockModelDefinition/f_111532_ net/minecraft/client/renderer/block/model/BlockModelDefinition/variants +FD: net/minecraft/client/renderer/block/model/BlockModelDefinition/f_111533_ net/minecraft/client/renderer/block/model/BlockModelDefinition/multiPart +FD: net/minecraft/client/renderer/block/model/BlockModelDefinition$Context/f_111548_ net/minecraft/client/renderer/block/model/BlockModelDefinition$Context/gson +FD: net/minecraft/client/renderer/block/model/BlockModelDefinition$Context/f_111549_ net/minecraft/client/renderer/block/model/BlockModelDefinition$Context/definition +FD: net/minecraft/client/renderer/block/model/BlockModelDefinition$MissingVariantException/f_173430_ net/minecraft/client/renderer/block/model/BlockModelDefinition$MissingVariantException/this$0 +FD: net/minecraft/client/renderer/block/model/FaceBakery/f_111569_ net/minecraft/client/renderer/block/model/FaceBakery/RESCALE_22_5 +FD: net/minecraft/client/renderer/block/model/FaceBakery/f_111570_ net/minecraft/client/renderer/block/model/FaceBakery/RESCALE_45 +FD: net/minecraft/client/renderer/block/model/FaceBakery/f_173433_ net/minecraft/client/renderer/block/model/FaceBakery/VERTEX_INT_SIZE +FD: net/minecraft/client/renderer/block/model/FaceBakery/f_173434_ net/minecraft/client/renderer/block/model/FaceBakery/VERTEX_COUNT +FD: net/minecraft/client/renderer/block/model/FaceBakery/f_173435_ net/minecraft/client/renderer/block/model/FaceBakery/UV_INDEX +FD: net/minecraft/client/renderer/block/model/FaceBakery/f_173436_ net/minecraft/client/renderer/block/model/FaceBakery/COLOR_INDEX +FD: net/minecraft/client/renderer/block/model/FaceBakery$1/f_111633_ net/minecraft/client/renderer/block/model/FaceBakery$1/$SwitchMap$net$minecraft$core$Direction$Axis +FD: net/minecraft/client/renderer/block/model/ItemModelGenerator/f_111635_ net/minecraft/client/renderer/block/model/ItemModelGenerator/LAYERS +FD: net/minecraft/client/renderer/block/model/ItemModelGenerator/f_173437_ net/minecraft/client/renderer/block/model/ItemModelGenerator/MIN_Z +FD: net/minecraft/client/renderer/block/model/ItemModelGenerator/f_173438_ net/minecraft/client/renderer/block/model/ItemModelGenerator/MAX_Z +FD: net/minecraft/client/renderer/block/model/ItemModelGenerator$1/f_111673_ net/minecraft/client/renderer/block/model/ItemModelGenerator$1/$SwitchMap$net$minecraft$client$renderer$block$model$ItemModelGenerator$SpanFacing +FD: net/minecraft/client/renderer/block/model/ItemModelGenerator$Span/f_111675_ net/minecraft/client/renderer/block/model/ItemModelGenerator$Span/facing +FD: net/minecraft/client/renderer/block/model/ItemModelGenerator$Span/f_111676_ net/minecraft/client/renderer/block/model/ItemModelGenerator$Span/min +FD: net/minecraft/client/renderer/block/model/ItemModelGenerator$Span/f_111677_ net/minecraft/client/renderer/block/model/ItemModelGenerator$Span/max +FD: net/minecraft/client/renderer/block/model/ItemModelGenerator$Span/f_111678_ net/minecraft/client/renderer/block/model/ItemModelGenerator$Span/anchor +FD: net/minecraft/client/renderer/block/model/ItemModelGenerator$SpanFacing/$VALUES net/minecraft/client/renderer/block/model/ItemModelGenerator$SpanFacing/$VALUES +FD: net/minecraft/client/renderer/block/model/ItemModelGenerator$SpanFacing/DOWN net/minecraft/client/renderer/block/model/ItemModelGenerator$SpanFacing/DOWN +FD: net/minecraft/client/renderer/block/model/ItemModelGenerator$SpanFacing/LEFT net/minecraft/client/renderer/block/model/ItemModelGenerator$SpanFacing/LEFT +FD: net/minecraft/client/renderer/block/model/ItemModelGenerator$SpanFacing/RIGHT net/minecraft/client/renderer/block/model/ItemModelGenerator$SpanFacing/RIGHT +FD: net/minecraft/client/renderer/block/model/ItemModelGenerator$SpanFacing/UP net/minecraft/client/renderer/block/model/ItemModelGenerator$SpanFacing/UP +FD: net/minecraft/client/renderer/block/model/ItemModelGenerator$SpanFacing/f_111693_ net/minecraft/client/renderer/block/model/ItemModelGenerator$SpanFacing/direction +FD: net/minecraft/client/renderer/block/model/ItemModelGenerator$SpanFacing/f_111694_ net/minecraft/client/renderer/block/model/ItemModelGenerator$SpanFacing/xOffset +FD: net/minecraft/client/renderer/block/model/ItemModelGenerator$SpanFacing/f_111695_ net/minecraft/client/renderer/block/model/ItemModelGenerator$SpanFacing/yOffset +FD: net/minecraft/client/renderer/block/model/ItemOverride/f_111713_ net/minecraft/client/renderer/block/model/ItemOverride/model +FD: net/minecraft/client/renderer/block/model/ItemOverride/f_111714_ net/minecraft/client/renderer/block/model/ItemOverride/predicates +FD: net/minecraft/client/renderer/block/model/ItemOverride$Predicate/f_173454_ net/minecraft/client/renderer/block/model/ItemOverride$Predicate/property +FD: net/minecraft/client/renderer/block/model/ItemOverride$Predicate/f_173455_ net/minecraft/client/renderer/block/model/ItemOverride$Predicate/value +FD: net/minecraft/client/renderer/block/model/ItemOverrides/f_111734_ net/minecraft/client/renderer/block/model/ItemOverrides/EMPTY +FD: net/minecraft/client/renderer/block/model/ItemOverrides/f_111735_ net/minecraft/client/renderer/block/model/ItemOverrides/overrides +FD: net/minecraft/client/renderer/block/model/ItemOverrides/f_173461_ net/minecraft/client/renderer/block/model/ItemOverrides/properties +FD: net/minecraft/client/renderer/block/model/ItemOverrides/f_265997_ net/minecraft/client/renderer/block/model/ItemOverrides/NO_OVERRIDE +FD: net/minecraft/client/renderer/block/model/ItemOverrides$BakedOverride/f_173480_ net/minecraft/client/renderer/block/model/ItemOverrides$BakedOverride/matchers +FD: net/minecraft/client/renderer/block/model/ItemOverrides$BakedOverride/f_173481_ net/minecraft/client/renderer/block/model/ItemOverrides$BakedOverride/model +FD: net/minecraft/client/renderer/block/model/ItemOverrides$PropertyMatcher/f_173487_ net/minecraft/client/renderer/block/model/ItemOverrides$PropertyMatcher/index +FD: net/minecraft/client/renderer/block/model/ItemOverrides$PropertyMatcher/f_173488_ net/minecraft/client/renderer/block/model/ItemOverrides$PropertyMatcher/value +FD: net/minecraft/client/renderer/block/model/ItemTransform/f_111754_ net/minecraft/client/renderer/block/model/ItemTransform/NO_TRANSFORM +FD: net/minecraft/client/renderer/block/model/ItemTransform/f_111755_ net/minecraft/client/renderer/block/model/ItemTransform/rotation +FD: net/minecraft/client/renderer/block/model/ItemTransform/f_111756_ net/minecraft/client/renderer/block/model/ItemTransform/translation +FD: net/minecraft/client/renderer/block/model/ItemTransform/f_111757_ net/minecraft/client/renderer/block/model/ItemTransform/scale +FD: net/minecraft/client/renderer/block/model/ItemTransform$Deserializer/f_111769_ net/minecraft/client/renderer/block/model/ItemTransform$Deserializer/DEFAULT_ROTATION +FD: net/minecraft/client/renderer/block/model/ItemTransform$Deserializer/f_111770_ net/minecraft/client/renderer/block/model/ItemTransform$Deserializer/DEFAULT_TRANSLATION +FD: net/minecraft/client/renderer/block/model/ItemTransform$Deserializer/f_111771_ net/minecraft/client/renderer/block/model/ItemTransform$Deserializer/DEFAULT_SCALE +FD: net/minecraft/client/renderer/block/model/ItemTransform$Deserializer/f_173492_ net/minecraft/client/renderer/block/model/ItemTransform$Deserializer/MAX_TRANSLATION +FD: net/minecraft/client/renderer/block/model/ItemTransform$Deserializer/f_173493_ net/minecraft/client/renderer/block/model/ItemTransform$Deserializer/MAX_SCALE +FD: net/minecraft/client/renderer/block/model/ItemTransforms/f_111786_ net/minecraft/client/renderer/block/model/ItemTransforms/NO_TRANSFORMS +FD: net/minecraft/client/renderer/block/model/ItemTransforms/f_111787_ net/minecraft/client/renderer/block/model/ItemTransforms/thirdPersonLeftHand +FD: net/minecraft/client/renderer/block/model/ItemTransforms/f_111788_ net/minecraft/client/renderer/block/model/ItemTransforms/thirdPersonRightHand +FD: net/minecraft/client/renderer/block/model/ItemTransforms/f_111789_ net/minecraft/client/renderer/block/model/ItemTransforms/firstPersonLeftHand +FD: net/minecraft/client/renderer/block/model/ItemTransforms/f_111790_ net/minecraft/client/renderer/block/model/ItemTransforms/firstPersonRightHand +FD: net/minecraft/client/renderer/block/model/ItemTransforms/f_111791_ net/minecraft/client/renderer/block/model/ItemTransforms/head +FD: net/minecraft/client/renderer/block/model/ItemTransforms/f_111792_ net/minecraft/client/renderer/block/model/ItemTransforms/gui +FD: net/minecraft/client/renderer/block/model/ItemTransforms/f_111793_ net/minecraft/client/renderer/block/model/ItemTransforms/ground +FD: net/minecraft/client/renderer/block/model/ItemTransforms/f_111794_ net/minecraft/client/renderer/block/model/ItemTransforms/fixed +FD: net/minecraft/client/renderer/block/model/ItemTransforms$1/f_268689_ net/minecraft/client/renderer/block/model/ItemTransforms$1/$SwitchMap$net$minecraft$world$item$ItemDisplayContext +FD: net/minecraft/client/renderer/block/model/MultiVariant/f_111845_ net/minecraft/client/renderer/block/model/MultiVariant/variants +FD: net/minecraft/client/renderer/block/model/Variant/f_111874_ net/minecraft/client/renderer/block/model/Variant/modelLocation +FD: net/minecraft/client/renderer/block/model/Variant/f_111875_ net/minecraft/client/renderer/block/model/Variant/rotation +FD: net/minecraft/client/renderer/block/model/Variant/f_111876_ net/minecraft/client/renderer/block/model/Variant/uvLock +FD: net/minecraft/client/renderer/block/model/Variant/f_111877_ net/minecraft/client/renderer/block/model/Variant/weight +FD: net/minecraft/client/renderer/block/model/Variant$Deserializer/f_173495_ net/minecraft/client/renderer/block/model/Variant$Deserializer/DEFAULT_UVLOCK +FD: net/minecraft/client/renderer/block/model/Variant$Deserializer/f_173496_ net/minecraft/client/renderer/block/model/Variant$Deserializer/DEFAULT_WEIGHT +FD: net/minecraft/client/renderer/block/model/Variant$Deserializer/f_173497_ net/minecraft/client/renderer/block/model/Variant$Deserializer/DEFAULT_X_ROTATION +FD: net/minecraft/client/renderer/block/model/Variant$Deserializer/f_173498_ net/minecraft/client/renderer/block/model/Variant$Deserializer/DEFAULT_Y_ROTATION +FD: net/minecraft/client/renderer/block/model/multipart/AndCondition/f_111908_ net/minecraft/client/renderer/block/model/multipart/AndCondition/conditions +FD: net/minecraft/client/renderer/block/model/multipart/AndCondition/f_173499_ net/minecraft/client/renderer/block/model/multipart/AndCondition/TOKEN +FD: net/minecraft/client/renderer/block/model/multipart/Condition/f_111922_ net/minecraft/client/renderer/block/model/multipart/Condition/TRUE +FD: net/minecraft/client/renderer/block/model/multipart/Condition/f_111923_ net/minecraft/client/renderer/block/model/multipart/Condition/FALSE +FD: net/minecraft/client/renderer/block/model/multipart/KeyValueCondition/f_111934_ net/minecraft/client/renderer/block/model/multipart/KeyValueCondition/PIPE_SPLITTER +FD: net/minecraft/client/renderer/block/model/multipart/KeyValueCondition/f_111935_ net/minecraft/client/renderer/block/model/multipart/KeyValueCondition/key +FD: net/minecraft/client/renderer/block/model/multipart/KeyValueCondition/f_111936_ net/minecraft/client/renderer/block/model/multipart/KeyValueCondition/value +FD: net/minecraft/client/renderer/block/model/multipart/MultiPart/f_111962_ net/minecraft/client/renderer/block/model/multipart/MultiPart/definition +FD: net/minecraft/client/renderer/block/model/multipart/MultiPart/f_111963_ net/minecraft/client/renderer/block/model/multipart/MultiPart/selectors +FD: net/minecraft/client/renderer/block/model/multipart/MultiPart$Deserializer/f_111987_ net/minecraft/client/renderer/block/model/multipart/MultiPart$Deserializer/context +FD: net/minecraft/client/renderer/block/model/multipart/OrCondition/f_112001_ net/minecraft/client/renderer/block/model/multipart/OrCondition/conditions +FD: net/minecraft/client/renderer/block/model/multipart/OrCondition/f_173510_ net/minecraft/client/renderer/block/model/multipart/OrCondition/TOKEN +FD: net/minecraft/client/renderer/block/model/multipart/Selector/f_112015_ net/minecraft/client/renderer/block/model/multipart/Selector/condition +FD: net/minecraft/client/renderer/block/model/multipart/Selector/f_112016_ net/minecraft/client/renderer/block/model/multipart/Selector/variant +FD: net/minecraft/client/renderer/blockentity/BannerRenderer/f_112045_ net/minecraft/client/renderer/blockentity/BannerRenderer/flag +FD: net/minecraft/client/renderer/blockentity/BannerRenderer/f_112046_ net/minecraft/client/renderer/blockentity/BannerRenderer/pole +FD: net/minecraft/client/renderer/blockentity/BannerRenderer/f_112047_ net/minecraft/client/renderer/blockentity/BannerRenderer/bar +FD: net/minecraft/client/renderer/blockentity/BannerRenderer/f_173514_ net/minecraft/client/renderer/blockentity/BannerRenderer/FLAG +FD: net/minecraft/client/renderer/blockentity/BannerRenderer/f_173515_ net/minecraft/client/renderer/blockentity/BannerRenderer/BANNER_WIDTH +FD: net/minecraft/client/renderer/blockentity/BannerRenderer/f_173516_ net/minecraft/client/renderer/blockentity/BannerRenderer/BANNER_HEIGHT +FD: net/minecraft/client/renderer/blockentity/BannerRenderer/f_173517_ net/minecraft/client/renderer/blockentity/BannerRenderer/MAX_PATTERNS +FD: net/minecraft/client/renderer/blockentity/BannerRenderer/f_173518_ net/minecraft/client/renderer/blockentity/BannerRenderer/POLE +FD: net/minecraft/client/renderer/blockentity/BannerRenderer/f_173519_ net/minecraft/client/renderer/blockentity/BannerRenderer/BAR +FD: net/minecraft/client/renderer/blockentity/BeaconRenderer/f_112102_ net/minecraft/client/renderer/blockentity/BeaconRenderer/BEAM_LOCATION +FD: net/minecraft/client/renderer/blockentity/BeaconRenderer/f_173527_ net/minecraft/client/renderer/blockentity/BeaconRenderer/MAX_RENDER_Y +FD: net/minecraft/client/renderer/blockentity/BedRenderer/f_173537_ net/minecraft/client/renderer/blockentity/BedRenderer/headRoot +FD: net/minecraft/client/renderer/blockentity/BedRenderer/f_173538_ net/minecraft/client/renderer/blockentity/BedRenderer/footRoot +FD: net/minecraft/client/renderer/blockentity/BellRenderer/f_112227_ net/minecraft/client/renderer/blockentity/BellRenderer/BELL_RESOURCE_LOCATION +FD: net/minecraft/client/renderer/blockentity/BellRenderer/f_112228_ net/minecraft/client/renderer/blockentity/BellRenderer/bellBody +FD: net/minecraft/client/renderer/blockentity/BellRenderer/f_173552_ net/minecraft/client/renderer/blockentity/BellRenderer/BELL_BODY +FD: net/minecraft/client/renderer/blockentity/BlockEntityRenderDispatcher/f_112248_ net/minecraft/client/renderer/blockentity/BlockEntityRenderDispatcher/level +FD: net/minecraft/client/renderer/blockentity/BlockEntityRenderDispatcher/f_112249_ net/minecraft/client/renderer/blockentity/BlockEntityRenderDispatcher/camera +FD: net/minecraft/client/renderer/blockentity/BlockEntityRenderDispatcher/f_112250_ net/minecraft/client/renderer/blockentity/BlockEntityRenderDispatcher/cameraHitResult +FD: net/minecraft/client/renderer/blockentity/BlockEntityRenderDispatcher/f_112251_ net/minecraft/client/renderer/blockentity/BlockEntityRenderDispatcher/renderers +FD: net/minecraft/client/renderer/blockentity/BlockEntityRenderDispatcher/f_112253_ net/minecraft/client/renderer/blockentity/BlockEntityRenderDispatcher/font +FD: net/minecraft/client/renderer/blockentity/BlockEntityRenderDispatcher/f_173556_ net/minecraft/client/renderer/blockentity/BlockEntityRenderDispatcher/entityModelSet +FD: net/minecraft/client/renderer/blockentity/BlockEntityRenderDispatcher/f_173557_ net/minecraft/client/renderer/blockentity/BlockEntityRenderDispatcher/blockRenderDispatcher +FD: net/minecraft/client/renderer/blockentity/BlockEntityRenderDispatcher/f_234429_ net/minecraft/client/renderer/blockentity/BlockEntityRenderDispatcher/itemRenderer +FD: net/minecraft/client/renderer/blockentity/BlockEntityRenderDispatcher/f_234430_ net/minecraft/client/renderer/blockentity/BlockEntityRenderDispatcher/entityRenderer +FD: net/minecraft/client/renderer/blockentity/BlockEntityRendererProvider$Context/f_173572_ net/minecraft/client/renderer/blockentity/BlockEntityRendererProvider$Context/blockEntityRenderDispatcher +FD: net/minecraft/client/renderer/blockentity/BlockEntityRendererProvider$Context/f_173573_ net/minecraft/client/renderer/blockentity/BlockEntityRendererProvider$Context/blockRenderDispatcher +FD: net/minecraft/client/renderer/blockentity/BlockEntityRendererProvider$Context/f_173574_ net/minecraft/client/renderer/blockentity/BlockEntityRendererProvider$Context/modelSet +FD: net/minecraft/client/renderer/blockentity/BlockEntityRendererProvider$Context/f_173575_ net/minecraft/client/renderer/blockentity/BlockEntityRendererProvider$Context/font +FD: net/minecraft/client/renderer/blockentity/BlockEntityRendererProvider$Context/f_234437_ net/minecraft/client/renderer/blockentity/BlockEntityRendererProvider$Context/itemRenderer +FD: net/minecraft/client/renderer/blockentity/BlockEntityRendererProvider$Context/f_234438_ net/minecraft/client/renderer/blockentity/BlockEntityRendererProvider$Context/entityRenderer +FD: net/minecraft/client/renderer/blockentity/BlockEntityRenderers/f_173587_ net/minecraft/client/renderer/blockentity/BlockEntityRenderers/PROVIDERS +FD: net/minecraft/client/renderer/blockentity/BrushableBlockRenderer/f_276519_ net/minecraft/client/renderer/blockentity/BrushableBlockRenderer/itemRenderer +FD: net/minecraft/client/renderer/blockentity/BrushableBlockRenderer$1/f_276538_ net/minecraft/client/renderer/blockentity/BrushableBlockRenderer$1/$SwitchMap$net$minecraft$core$Direction +FD: net/minecraft/client/renderer/blockentity/CampfireRenderer/f_173600_ net/minecraft/client/renderer/blockentity/CampfireRenderer/SIZE +FD: net/minecraft/client/renderer/blockentity/CampfireRenderer/f_234448_ net/minecraft/client/renderer/blockentity/CampfireRenderer/itemRenderer +FD: net/minecraft/client/renderer/blockentity/ChestRenderer/f_112350_ net/minecraft/client/renderer/blockentity/ChestRenderer/lid +FD: net/minecraft/client/renderer/blockentity/ChestRenderer/f_112351_ net/minecraft/client/renderer/blockentity/ChestRenderer/bottom +FD: net/minecraft/client/renderer/blockentity/ChestRenderer/f_112352_ net/minecraft/client/renderer/blockentity/ChestRenderer/lock +FD: net/minecraft/client/renderer/blockentity/ChestRenderer/f_112353_ net/minecraft/client/renderer/blockentity/ChestRenderer/doubleLeftLid +FD: net/minecraft/client/renderer/blockentity/ChestRenderer/f_112354_ net/minecraft/client/renderer/blockentity/ChestRenderer/doubleLeftBottom +FD: net/minecraft/client/renderer/blockentity/ChestRenderer/f_112355_ net/minecraft/client/renderer/blockentity/ChestRenderer/doubleLeftLock +FD: net/minecraft/client/renderer/blockentity/ChestRenderer/f_112356_ net/minecraft/client/renderer/blockentity/ChestRenderer/doubleRightLid +FD: net/minecraft/client/renderer/blockentity/ChestRenderer/f_112357_ net/minecraft/client/renderer/blockentity/ChestRenderer/doubleRightBottom +FD: net/minecraft/client/renderer/blockentity/ChestRenderer/f_112358_ net/minecraft/client/renderer/blockentity/ChestRenderer/doubleRightLock +FD: net/minecraft/client/renderer/blockentity/ChestRenderer/f_112359_ net/minecraft/client/renderer/blockentity/ChestRenderer/xmasTextures +FD: net/minecraft/client/renderer/blockentity/ChestRenderer/f_173603_ net/minecraft/client/renderer/blockentity/ChestRenderer/BOTTOM +FD: net/minecraft/client/renderer/blockentity/ChestRenderer/f_173604_ net/minecraft/client/renderer/blockentity/ChestRenderer/LID +FD: net/minecraft/client/renderer/blockentity/ChestRenderer/f_173605_ net/minecraft/client/renderer/blockentity/ChestRenderer/LOCK +FD: net/minecraft/client/renderer/blockentity/ConduitRenderer/f_112378_ net/minecraft/client/renderer/blockentity/ConduitRenderer/SHELL_TEXTURE +FD: net/minecraft/client/renderer/blockentity/ConduitRenderer/f_112379_ net/minecraft/client/renderer/blockentity/ConduitRenderer/ACTIVE_SHELL_TEXTURE +FD: net/minecraft/client/renderer/blockentity/ConduitRenderer/f_112380_ net/minecraft/client/renderer/blockentity/ConduitRenderer/WIND_TEXTURE +FD: net/minecraft/client/renderer/blockentity/ConduitRenderer/f_112381_ net/minecraft/client/renderer/blockentity/ConduitRenderer/VERTICAL_WIND_TEXTURE +FD: net/minecraft/client/renderer/blockentity/ConduitRenderer/f_112382_ net/minecraft/client/renderer/blockentity/ConduitRenderer/OPEN_EYE_TEXTURE +FD: net/minecraft/client/renderer/blockentity/ConduitRenderer/f_112383_ net/minecraft/client/renderer/blockentity/ConduitRenderer/CLOSED_EYE_TEXTURE +FD: net/minecraft/client/renderer/blockentity/ConduitRenderer/f_112384_ net/minecraft/client/renderer/blockentity/ConduitRenderer/eye +FD: net/minecraft/client/renderer/blockentity/ConduitRenderer/f_112385_ net/minecraft/client/renderer/blockentity/ConduitRenderer/wind +FD: net/minecraft/client/renderer/blockentity/ConduitRenderer/f_112386_ net/minecraft/client/renderer/blockentity/ConduitRenderer/shell +FD: net/minecraft/client/renderer/blockentity/ConduitRenderer/f_112387_ net/minecraft/client/renderer/blockentity/ConduitRenderer/cage +FD: net/minecraft/client/renderer/blockentity/ConduitRenderer/f_173611_ net/minecraft/client/renderer/blockentity/ConduitRenderer/renderer +FD: net/minecraft/client/renderer/blockentity/DecoratedPotRenderer/f_271097_ net/minecraft/client/renderer/blockentity/DecoratedPotRenderer/BOTTOM +FD: net/minecraft/client/renderer/blockentity/DecoratedPotRenderer/f_271153_ net/minecraft/client/renderer/blockentity/DecoratedPotRenderer/frontSide +FD: net/minecraft/client/renderer/blockentity/DecoratedPotRenderer/f_271161_ net/minecraft/client/renderer/blockentity/DecoratedPotRenderer/rightSide +FD: net/minecraft/client/renderer/blockentity/DecoratedPotRenderer/f_271185_ net/minecraft/client/renderer/blockentity/DecoratedPotRenderer/baseMaterial +FD: net/minecraft/client/renderer/blockentity/DecoratedPotRenderer/f_271233_ net/minecraft/client/renderer/blockentity/DecoratedPotRenderer/TOP +FD: net/minecraft/client/renderer/blockentity/DecoratedPotRenderer/f_271240_ net/minecraft/client/renderer/blockentity/DecoratedPotRenderer/RIGHT +FD: net/minecraft/client/renderer/blockentity/DecoratedPotRenderer/f_271260_ net/minecraft/client/renderer/blockentity/DecoratedPotRenderer/neck +FD: net/minecraft/client/renderer/blockentity/DecoratedPotRenderer/f_271265_ net/minecraft/client/renderer/blockentity/DecoratedPotRenderer/leftSide +FD: net/minecraft/client/renderer/blockentity/DecoratedPotRenderer/f_271321_ net/minecraft/client/renderer/blockentity/DecoratedPotRenderer/backSide +FD: net/minecraft/client/renderer/blockentity/DecoratedPotRenderer/f_271413_ net/minecraft/client/renderer/blockentity/DecoratedPotRenderer/top +FD: net/minecraft/client/renderer/blockentity/DecoratedPotRenderer/f_271422_ net/minecraft/client/renderer/blockentity/DecoratedPotRenderer/BACK +FD: net/minecraft/client/renderer/blockentity/DecoratedPotRenderer/f_271443_ net/minecraft/client/renderer/blockentity/DecoratedPotRenderer/bottom +FD: net/minecraft/client/renderer/blockentity/DecoratedPotRenderer/f_271482_ net/minecraft/client/renderer/blockentity/DecoratedPotRenderer/LEFT +FD: net/minecraft/client/renderer/blockentity/DecoratedPotRenderer/f_271506_ net/minecraft/client/renderer/blockentity/DecoratedPotRenderer/NECK +FD: net/minecraft/client/renderer/blockentity/DecoratedPotRenderer/f_271523_ net/minecraft/client/renderer/blockentity/DecoratedPotRenderer/FRONT +FD: net/minecraft/client/renderer/blockentity/EnchantTableRenderer/f_112405_ net/minecraft/client/renderer/blockentity/EnchantTableRenderer/BOOK_LOCATION +FD: net/minecraft/client/renderer/blockentity/EnchantTableRenderer/f_112406_ net/minecraft/client/renderer/blockentity/EnchantTableRenderer/bookModel +FD: net/minecraft/client/renderer/blockentity/HangingSignRenderer/f_243690_ net/minecraft/client/renderer/blockentity/HangingSignRenderer/CHAIN_R_1 +FD: net/minecraft/client/renderer/blockentity/HangingSignRenderer/f_244009_ net/minecraft/client/renderer/blockentity/HangingSignRenderer/hangingSignModels +FD: net/minecraft/client/renderer/blockentity/HangingSignRenderer/f_244071_ net/minecraft/client/renderer/blockentity/HangingSignRenderer/BOARD +FD: net/minecraft/client/renderer/blockentity/HangingSignRenderer/f_244072_ net/minecraft/client/renderer/blockentity/HangingSignRenderer/CHAIN_L_1 +FD: net/minecraft/client/renderer/blockentity/HangingSignRenderer/f_244095_ net/minecraft/client/renderer/blockentity/HangingSignRenderer/V_CHAINS +FD: net/minecraft/client/renderer/blockentity/HangingSignRenderer/f_244118_ net/minecraft/client/renderer/blockentity/HangingSignRenderer/NORMAL_CHAINS +FD: net/minecraft/client/renderer/blockentity/HangingSignRenderer/f_244131_ net/minecraft/client/renderer/blockentity/HangingSignRenderer/PLANK +FD: net/minecraft/client/renderer/blockentity/HangingSignRenderer/f_244159_ net/minecraft/client/renderer/blockentity/HangingSignRenderer/CHAIN_R_2 +FD: net/minecraft/client/renderer/blockentity/HangingSignRenderer/f_244584_ net/minecraft/client/renderer/blockentity/HangingSignRenderer/CHAIN_L_2 +FD: net/minecraft/client/renderer/blockentity/HangingSignRenderer/f_278461_ net/minecraft/client/renderer/blockentity/HangingSignRenderer/MODEL_RENDER_SCALE +FD: net/minecraft/client/renderer/blockentity/HangingSignRenderer/f_278477_ net/minecraft/client/renderer/blockentity/HangingSignRenderer/TEXT_RENDER_SCALE +FD: net/minecraft/client/renderer/blockentity/HangingSignRenderer/f_278502_ net/minecraft/client/renderer/blockentity/HangingSignRenderer/TEXT_OFFSET +FD: net/minecraft/client/renderer/blockentity/HangingSignRenderer$HangingSignModel/f_243977_ net/minecraft/client/renderer/blockentity/HangingSignRenderer$HangingSignModel/normalChains +FD: net/minecraft/client/renderer/blockentity/HangingSignRenderer$HangingSignModel/f_244294_ net/minecraft/client/renderer/blockentity/HangingSignRenderer$HangingSignModel/plank +FD: net/minecraft/client/renderer/blockentity/HangingSignRenderer$HangingSignModel/f_244373_ net/minecraft/client/renderer/blockentity/HangingSignRenderer$HangingSignModel/vChains +FD: net/minecraft/client/renderer/blockentity/HangingSignRenderer$HangingSignModel/f_244554_ net/minecraft/client/renderer/blockentity/HangingSignRenderer$HangingSignModel/root +FD: net/minecraft/client/renderer/blockentity/LecternRenderer/f_112424_ net/minecraft/client/renderer/blockentity/LecternRenderer/bookModel +FD: net/minecraft/client/renderer/blockentity/PistonHeadRenderer/f_112441_ net/minecraft/client/renderer/blockentity/PistonHeadRenderer/blockRenderer +FD: net/minecraft/client/renderer/blockentity/ShulkerBoxRenderer/f_112466_ net/minecraft/client/renderer/blockentity/ShulkerBoxRenderer/model +FD: net/minecraft/client/renderer/blockentity/SignRenderer/f_173629_ net/minecraft/client/renderer/blockentity/SignRenderer/STICK +FD: net/minecraft/client/renderer/blockentity/SignRenderer/f_173630_ net/minecraft/client/renderer/blockentity/SignRenderer/BLACK_TEXT_OUTLINE_COLOR +FD: net/minecraft/client/renderer/blockentity/SignRenderer/f_173631_ net/minecraft/client/renderer/blockentity/SignRenderer/OUTLINE_RENDER_DISTANCE +FD: net/minecraft/client/renderer/blockentity/SignRenderer/f_173632_ net/minecraft/client/renderer/blockentity/SignRenderer/signModels +FD: net/minecraft/client/renderer/blockentity/SignRenderer/f_173633_ net/minecraft/client/renderer/blockentity/SignRenderer/font +FD: net/minecraft/client/renderer/blockentity/SignRenderer/f_278459_ net/minecraft/client/renderer/blockentity/SignRenderer/TEXT_OFFSET +FD: net/minecraft/client/renderer/blockentity/SignRenderer/f_278501_ net/minecraft/client/renderer/blockentity/SignRenderer/RENDER_SCALE +FD: net/minecraft/client/renderer/blockentity/SignRenderer$SignModel/f_112507_ net/minecraft/client/renderer/blockentity/SignRenderer$SignModel/stick +FD: net/minecraft/client/renderer/blockentity/SignRenderer$SignModel/f_173655_ net/minecraft/client/renderer/blockentity/SignRenderer$SignModel/root +FD: net/minecraft/client/renderer/blockentity/SkullBlockRenderer/f_112519_ net/minecraft/client/renderer/blockentity/SkullBlockRenderer/SKIN_BY_TYPE +FD: net/minecraft/client/renderer/blockentity/SkullBlockRenderer/f_173658_ net/minecraft/client/renderer/blockentity/SkullBlockRenderer/modelByType +FD: net/minecraft/client/renderer/blockentity/SpawnerRenderer/f_234449_ net/minecraft/client/renderer/blockentity/SpawnerRenderer/entityRenderer +FD: net/minecraft/client/renderer/blockentity/StructureBlockRenderer$1/f_112595_ net/minecraft/client/renderer/blockentity/StructureBlockRenderer$1/$SwitchMap$net$minecraft$world$level$block$Mirror +FD: net/minecraft/client/renderer/blockentity/StructureBlockRenderer$1/f_112596_ net/minecraft/client/renderer/blockentity/StructureBlockRenderer$1/$SwitchMap$net$minecraft$world$level$block$Rotation +FD: net/minecraft/client/renderer/blockentity/TheEndGatewayRenderer/f_112598_ net/minecraft/client/renderer/blockentity/TheEndGatewayRenderer/BEAM_LOCATION +FD: net/minecraft/client/renderer/blockentity/TheEndPortalRenderer/f_112626_ net/minecraft/client/renderer/blockentity/TheEndPortalRenderer/END_SKY_LOCATION +FD: net/minecraft/client/renderer/blockentity/TheEndPortalRenderer/f_112627_ net/minecraft/client/renderer/blockentity/TheEndPortalRenderer/END_PORTAL_LOCATION +FD: net/minecraft/client/renderer/chunk/ChunkRenderDispatcher/f_112672_ net/minecraft/client/renderer/chunk/ChunkRenderDispatcher/LOGGER +FD: net/minecraft/client/renderer/chunk/ChunkRenderDispatcher/f_112674_ net/minecraft/client/renderer/chunk/ChunkRenderDispatcher/freeBuffers +FD: net/minecraft/client/renderer/chunk/ChunkRenderDispatcher/f_112675_ net/minecraft/client/renderer/chunk/ChunkRenderDispatcher/toUpload +FD: net/minecraft/client/renderer/chunk/ChunkRenderDispatcher/f_112676_ net/minecraft/client/renderer/chunk/ChunkRenderDispatcher/toBatchCount +FD: net/minecraft/client/renderer/chunk/ChunkRenderDispatcher/f_112677_ net/minecraft/client/renderer/chunk/ChunkRenderDispatcher/freeBufferCount +FD: net/minecraft/client/renderer/chunk/ChunkRenderDispatcher/f_112678_ net/minecraft/client/renderer/chunk/ChunkRenderDispatcher/fixedBuffers +FD: net/minecraft/client/renderer/chunk/ChunkRenderDispatcher/f_112679_ net/minecraft/client/renderer/chunk/ChunkRenderDispatcher/mailbox +FD: net/minecraft/client/renderer/chunk/ChunkRenderDispatcher/f_112680_ net/minecraft/client/renderer/chunk/ChunkRenderDispatcher/executor +FD: net/minecraft/client/renderer/chunk/ChunkRenderDispatcher/f_112681_ net/minecraft/client/renderer/chunk/ChunkRenderDispatcher/level +FD: net/minecraft/client/renderer/chunk/ChunkRenderDispatcher/f_112682_ net/minecraft/client/renderer/chunk/ChunkRenderDispatcher/renderer +FD: net/minecraft/client/renderer/chunk/ChunkRenderDispatcher/f_112683_ net/minecraft/client/renderer/chunk/ChunkRenderDispatcher/camera +FD: net/minecraft/client/renderer/chunk/ChunkRenderDispatcher/f_173707_ net/minecraft/client/renderer/chunk/ChunkRenderDispatcher/MAX_WORKERS_32_BIT +FD: net/minecraft/client/renderer/chunk/ChunkRenderDispatcher/f_173708_ net/minecraft/client/renderer/chunk/ChunkRenderDispatcher/VERTEX_FORMAT +FD: net/minecraft/client/renderer/chunk/ChunkRenderDispatcher/f_194400_ net/minecraft/client/renderer/chunk/ChunkRenderDispatcher/MAX_HIGH_PRIORITY_QUOTA +FD: net/minecraft/client/renderer/chunk/ChunkRenderDispatcher/f_194401_ net/minecraft/client/renderer/chunk/ChunkRenderDispatcher/toBatchHighPriority +FD: net/minecraft/client/renderer/chunk/ChunkRenderDispatcher/f_194402_ net/minecraft/client/renderer/chunk/ChunkRenderDispatcher/toBatchLowPriority +FD: net/minecraft/client/renderer/chunk/ChunkRenderDispatcher/f_194403_ net/minecraft/client/renderer/chunk/ChunkRenderDispatcher/highPriorityQuota +FD: net/minecraft/client/renderer/chunk/ChunkRenderDispatcher$ChunkTaskResult/$VALUES net/minecraft/client/renderer/chunk/ChunkRenderDispatcher$ChunkTaskResult/$VALUES +FD: net/minecraft/client/renderer/chunk/ChunkRenderDispatcher$ChunkTaskResult/CANCELLED net/minecraft/client/renderer/chunk/ChunkRenderDispatcher$ChunkTaskResult/CANCELLED +FD: net/minecraft/client/renderer/chunk/ChunkRenderDispatcher$ChunkTaskResult/SUCCESSFUL net/minecraft/client/renderer/chunk/ChunkRenderDispatcher$ChunkTaskResult/SUCCESSFUL +FD: net/minecraft/client/renderer/chunk/ChunkRenderDispatcher$CompiledChunk/f_112748_ net/minecraft/client/renderer/chunk/ChunkRenderDispatcher$CompiledChunk/UNCOMPILED +FD: net/minecraft/client/renderer/chunk/ChunkRenderDispatcher$CompiledChunk/f_112749_ net/minecraft/client/renderer/chunk/ChunkRenderDispatcher$CompiledChunk/hasBlocks +FD: net/minecraft/client/renderer/chunk/ChunkRenderDispatcher$CompiledChunk/f_112752_ net/minecraft/client/renderer/chunk/ChunkRenderDispatcher$CompiledChunk/renderableBlockEntities +FD: net/minecraft/client/renderer/chunk/ChunkRenderDispatcher$CompiledChunk/f_112753_ net/minecraft/client/renderer/chunk/ChunkRenderDispatcher$CompiledChunk/visibilitySet +FD: net/minecraft/client/renderer/chunk/ChunkRenderDispatcher$CompiledChunk/f_112754_ net/minecraft/client/renderer/chunk/ChunkRenderDispatcher$CompiledChunk/transparencyState +FD: net/minecraft/client/renderer/chunk/ChunkRenderDispatcher$RenderChunk/f_112784_ net/minecraft/client/renderer/chunk/ChunkRenderDispatcher$RenderChunk/compiled +FD: net/minecraft/client/renderer/chunk/ChunkRenderDispatcher$RenderChunk/f_112785_ net/minecraft/client/renderer/chunk/ChunkRenderDispatcher$RenderChunk/bb +FD: net/minecraft/client/renderer/chunk/ChunkRenderDispatcher$RenderChunk/f_112786_ net/minecraft/client/renderer/chunk/ChunkRenderDispatcher$RenderChunk/this$0 +FD: net/minecraft/client/renderer/chunk/ChunkRenderDispatcher$RenderChunk/f_112787_ net/minecraft/client/renderer/chunk/ChunkRenderDispatcher$RenderChunk/lastRebuildTask +FD: net/minecraft/client/renderer/chunk/ChunkRenderDispatcher$RenderChunk/f_112788_ net/minecraft/client/renderer/chunk/ChunkRenderDispatcher$RenderChunk/lastResortTransparencyTask +FD: net/minecraft/client/renderer/chunk/ChunkRenderDispatcher$RenderChunk/f_112789_ net/minecraft/client/renderer/chunk/ChunkRenderDispatcher$RenderChunk/globalBlockEntities +FD: net/minecraft/client/renderer/chunk/ChunkRenderDispatcher$RenderChunk/f_112790_ net/minecraft/client/renderer/chunk/ChunkRenderDispatcher$RenderChunk/buffers +FD: net/minecraft/client/renderer/chunk/ChunkRenderDispatcher$RenderChunk/f_112792_ net/minecraft/client/renderer/chunk/ChunkRenderDispatcher$RenderChunk/dirty +FD: net/minecraft/client/renderer/chunk/ChunkRenderDispatcher$RenderChunk/f_112793_ net/minecraft/client/renderer/chunk/ChunkRenderDispatcher$RenderChunk/origin +FD: net/minecraft/client/renderer/chunk/ChunkRenderDispatcher$RenderChunk/f_112794_ net/minecraft/client/renderer/chunk/ChunkRenderDispatcher$RenderChunk/relativeOrigins +FD: net/minecraft/client/renderer/chunk/ChunkRenderDispatcher$RenderChunk/f_112795_ net/minecraft/client/renderer/chunk/ChunkRenderDispatcher$RenderChunk/playerChanged +FD: net/minecraft/client/renderer/chunk/ChunkRenderDispatcher$RenderChunk/f_173716_ net/minecraft/client/renderer/chunk/ChunkRenderDispatcher$RenderChunk/SIZE +FD: net/minecraft/client/renderer/chunk/ChunkRenderDispatcher$RenderChunk/f_173717_ net/minecraft/client/renderer/chunk/ChunkRenderDispatcher$RenderChunk/index +FD: net/minecraft/client/renderer/chunk/ChunkRenderDispatcher$RenderChunk/f_202433_ net/minecraft/client/renderer/chunk/ChunkRenderDispatcher$RenderChunk/initialCompilationCancelCount +FD: net/minecraft/client/renderer/chunk/ChunkRenderDispatcher$RenderChunk$ChunkCompileTask/f_112847_ net/minecraft/client/renderer/chunk/ChunkRenderDispatcher$RenderChunk$ChunkCompileTask/distAtCreation +FD: net/minecraft/client/renderer/chunk/ChunkRenderDispatcher$RenderChunk$ChunkCompileTask/f_112848_ net/minecraft/client/renderer/chunk/ChunkRenderDispatcher$RenderChunk$ChunkCompileTask/isCancelled +FD: net/minecraft/client/renderer/chunk/ChunkRenderDispatcher$RenderChunk$ChunkCompileTask/f_112849_ net/minecraft/client/renderer/chunk/ChunkRenderDispatcher$RenderChunk$ChunkCompileTask/this$1 +FD: net/minecraft/client/renderer/chunk/ChunkRenderDispatcher$RenderChunk$ChunkCompileTask/f_194420_ net/minecraft/client/renderer/chunk/ChunkRenderDispatcher$RenderChunk$ChunkCompileTask/isHighPriority +FD: net/minecraft/client/renderer/chunk/ChunkRenderDispatcher$RenderChunk$RebuildTask/f_112858_ net/minecraft/client/renderer/chunk/ChunkRenderDispatcher$RenderChunk$RebuildTask/region +FD: net/minecraft/client/renderer/chunk/ChunkRenderDispatcher$RenderChunk$RebuildTask/f_112859_ net/minecraft/client/renderer/chunk/ChunkRenderDispatcher$RenderChunk$RebuildTask/this$1 +FD: net/minecraft/client/renderer/chunk/ChunkRenderDispatcher$RenderChunk$RebuildTask$CompileResults/f_234484_ net/minecraft/client/renderer/chunk/ChunkRenderDispatcher$RenderChunk$RebuildTask$CompileResults/globalBlockEntities +FD: net/minecraft/client/renderer/chunk/ChunkRenderDispatcher$RenderChunk$RebuildTask$CompileResults/f_234485_ net/minecraft/client/renderer/chunk/ChunkRenderDispatcher$RenderChunk$RebuildTask$CompileResults/blockEntities +FD: net/minecraft/client/renderer/chunk/ChunkRenderDispatcher$RenderChunk$RebuildTask$CompileResults/f_234486_ net/minecraft/client/renderer/chunk/ChunkRenderDispatcher$RenderChunk$RebuildTask$CompileResults/renderedLayers +FD: net/minecraft/client/renderer/chunk/ChunkRenderDispatcher$RenderChunk$RebuildTask$CompileResults/f_234487_ net/minecraft/client/renderer/chunk/ChunkRenderDispatcher$RenderChunk$RebuildTask$CompileResults/visibilitySet +FD: net/minecraft/client/renderer/chunk/ChunkRenderDispatcher$RenderChunk$RebuildTask$CompileResults/f_234488_ net/minecraft/client/renderer/chunk/ChunkRenderDispatcher$RenderChunk$RebuildTask$CompileResults/transparencyState +FD: net/minecraft/client/renderer/chunk/ChunkRenderDispatcher$RenderChunk$ResortTransparencyTask/f_112885_ net/minecraft/client/renderer/chunk/ChunkRenderDispatcher$RenderChunk$ResortTransparencyTask/this$1 +FD: net/minecraft/client/renderer/chunk/ChunkRenderDispatcher$RenderChunk$ResortTransparencyTask/f_112886_ net/minecraft/client/renderer/chunk/ChunkRenderDispatcher$RenderChunk$ResortTransparencyTask/compiledChunk +FD: net/minecraft/client/renderer/chunk/RenderChunk/f_200441_ net/minecraft/client/renderer/chunk/RenderChunk/blockEntities +FD: net/minecraft/client/renderer/chunk/RenderChunk/f_200442_ net/minecraft/client/renderer/chunk/RenderChunk/sections +FD: net/minecraft/client/renderer/chunk/RenderChunk/f_200443_ net/minecraft/client/renderer/chunk/RenderChunk/debug +FD: net/minecraft/client/renderer/chunk/RenderChunk/f_200444_ net/minecraft/client/renderer/chunk/RenderChunk/wrapped +FD: net/minecraft/client/renderer/chunk/RenderChunkRegion/f_112899_ net/minecraft/client/renderer/chunk/RenderChunkRegion/centerX +FD: net/minecraft/client/renderer/chunk/RenderChunkRegion/f_112900_ net/minecraft/client/renderer/chunk/RenderChunkRegion/centerZ +FD: net/minecraft/client/renderer/chunk/RenderChunkRegion/f_112905_ net/minecraft/client/renderer/chunk/RenderChunkRegion/chunks +FD: net/minecraft/client/renderer/chunk/RenderChunkRegion/f_112908_ net/minecraft/client/renderer/chunk/RenderChunkRegion/level +FD: net/minecraft/client/renderer/chunk/RenderRegionCache/f_200460_ net/minecraft/client/renderer/chunk/RenderRegionCache/chunkInfoCache +FD: net/minecraft/client/renderer/chunk/RenderRegionCache$ChunkInfo/f_200476_ net/minecraft/client/renderer/chunk/RenderRegionCache$ChunkInfo/chunk +FD: net/minecraft/client/renderer/chunk/RenderRegionCache$ChunkInfo/f_200477_ net/minecraft/client/renderer/chunk/RenderRegionCache$ChunkInfo/renderChunk +FD: net/minecraft/client/renderer/chunk/VisGraph/f_112949_ net/minecraft/client/renderer/chunk/VisGraph/DX +FD: net/minecraft/client/renderer/chunk/VisGraph/f_112950_ net/minecraft/client/renderer/chunk/VisGraph/DZ +FD: net/minecraft/client/renderer/chunk/VisGraph/f_112951_ net/minecraft/client/renderer/chunk/VisGraph/DY +FD: net/minecraft/client/renderer/chunk/VisGraph/f_112952_ net/minecraft/client/renderer/chunk/VisGraph/DIRECTIONS +FD: net/minecraft/client/renderer/chunk/VisGraph/f_112953_ net/minecraft/client/renderer/chunk/VisGraph/bitSet +FD: net/minecraft/client/renderer/chunk/VisGraph/f_112954_ net/minecraft/client/renderer/chunk/VisGraph/INDEX_OF_EDGES +FD: net/minecraft/client/renderer/chunk/VisGraph/f_112955_ net/minecraft/client/renderer/chunk/VisGraph/empty +FD: net/minecraft/client/renderer/chunk/VisGraph/f_173723_ net/minecraft/client/renderer/chunk/VisGraph/SIZE_IN_BITS +FD: net/minecraft/client/renderer/chunk/VisGraph/f_173724_ net/minecraft/client/renderer/chunk/VisGraph/LEN +FD: net/minecraft/client/renderer/chunk/VisGraph/f_173725_ net/minecraft/client/renderer/chunk/VisGraph/MASK +FD: net/minecraft/client/renderer/chunk/VisGraph/f_173726_ net/minecraft/client/renderer/chunk/VisGraph/SIZE +FD: net/minecraft/client/renderer/chunk/VisGraph/f_173727_ net/minecraft/client/renderer/chunk/VisGraph/X_SHIFT +FD: net/minecraft/client/renderer/chunk/VisGraph/f_173728_ net/minecraft/client/renderer/chunk/VisGraph/Z_SHIFT +FD: net/minecraft/client/renderer/chunk/VisGraph/f_173729_ net/minecraft/client/renderer/chunk/VisGraph/Y_SHIFT +FD: net/minecraft/client/renderer/chunk/VisGraph/f_173730_ net/minecraft/client/renderer/chunk/VisGraph/INVALID_INDEX +FD: net/minecraft/client/renderer/chunk/VisGraph$1/f_112977_ net/minecraft/client/renderer/chunk/VisGraph$1/$SwitchMap$net$minecraft$core$Direction +FD: net/minecraft/client/renderer/chunk/VisibilitySet/f_112979_ net/minecraft/client/renderer/chunk/VisibilitySet/FACINGS +FD: net/minecraft/client/renderer/chunk/VisibilitySet/f_112980_ net/minecraft/client/renderer/chunk/VisibilitySet/data +FD: net/minecraft/client/renderer/culling/Frustum/f_112996_ net/minecraft/client/renderer/culling/Frustum/camX +FD: net/minecraft/client/renderer/culling/Frustum/f_112997_ net/minecraft/client/renderer/culling/Frustum/camY +FD: net/minecraft/client/renderer/culling/Frustum/f_112998_ net/minecraft/client/renderer/culling/Frustum/camZ +FD: net/minecraft/client/renderer/culling/Frustum/f_194437_ net/minecraft/client/renderer/culling/Frustum/OFFSET_STEP +FD: net/minecraft/client/renderer/culling/Frustum/f_194438_ net/minecraft/client/renderer/culling/Frustum/viewVector +FD: net/minecraft/client/renderer/culling/Frustum/f_252406_ net/minecraft/client/renderer/culling/Frustum/matrix +FD: net/minecraft/client/renderer/culling/Frustum/f_252531_ net/minecraft/client/renderer/culling/Frustum/intersection +FD: net/minecraft/client/renderer/debug/BeeDebugRenderer/f_113048_ net/minecraft/client/renderer/debug/BeeDebugRenderer/minecraft +FD: net/minecraft/client/renderer/debug/BeeDebugRenderer/f_113049_ net/minecraft/client/renderer/debug/BeeDebugRenderer/hives +FD: net/minecraft/client/renderer/debug/BeeDebugRenderer/f_113050_ net/minecraft/client/renderer/debug/BeeDebugRenderer/beeInfosPerEntity +FD: net/minecraft/client/renderer/debug/BeeDebugRenderer/f_113051_ net/minecraft/client/renderer/debug/BeeDebugRenderer/lastLookedAtUuid +FD: net/minecraft/client/renderer/debug/BeeDebugRenderer/f_173737_ net/minecraft/client/renderer/debug/BeeDebugRenderer/SHOW_GOAL_FOR_ALL_BEES +FD: net/minecraft/client/renderer/debug/BeeDebugRenderer/f_173738_ net/minecraft/client/renderer/debug/BeeDebugRenderer/SHOW_NAME_FOR_ALL_BEES +FD: net/minecraft/client/renderer/debug/BeeDebugRenderer/f_173739_ net/minecraft/client/renderer/debug/BeeDebugRenderer/SHOW_HIVE_FOR_ALL_BEES +FD: net/minecraft/client/renderer/debug/BeeDebugRenderer/f_173740_ net/minecraft/client/renderer/debug/BeeDebugRenderer/SHOW_FLOWER_POS_FOR_ALL_BEES +FD: net/minecraft/client/renderer/debug/BeeDebugRenderer/f_173741_ net/minecraft/client/renderer/debug/BeeDebugRenderer/SHOW_TRAVEL_TICKS_FOR_ALL_BEES +FD: net/minecraft/client/renderer/debug/BeeDebugRenderer/f_173742_ net/minecraft/client/renderer/debug/BeeDebugRenderer/SHOW_PATH_FOR_ALL_BEES +FD: net/minecraft/client/renderer/debug/BeeDebugRenderer/f_173743_ net/minecraft/client/renderer/debug/BeeDebugRenderer/SHOW_GOAL_FOR_SELECTED_BEE +FD: net/minecraft/client/renderer/debug/BeeDebugRenderer/f_173744_ net/minecraft/client/renderer/debug/BeeDebugRenderer/SHOW_NAME_FOR_SELECTED_BEE +FD: net/minecraft/client/renderer/debug/BeeDebugRenderer/f_173745_ net/minecraft/client/renderer/debug/BeeDebugRenderer/SHOW_HIVE_FOR_SELECTED_BEE +FD: net/minecraft/client/renderer/debug/BeeDebugRenderer/f_173746_ net/minecraft/client/renderer/debug/BeeDebugRenderer/SHOW_FLOWER_POS_FOR_SELECTED_BEE +FD: net/minecraft/client/renderer/debug/BeeDebugRenderer/f_173747_ net/minecraft/client/renderer/debug/BeeDebugRenderer/SHOW_TRAVEL_TICKS_FOR_SELECTED_BEE +FD: net/minecraft/client/renderer/debug/BeeDebugRenderer/f_173748_ net/minecraft/client/renderer/debug/BeeDebugRenderer/SHOW_PATH_FOR_SELECTED_BEE +FD: net/minecraft/client/renderer/debug/BeeDebugRenderer/f_173749_ net/minecraft/client/renderer/debug/BeeDebugRenderer/SHOW_HIVE_MEMBERS +FD: net/minecraft/client/renderer/debug/BeeDebugRenderer/f_173750_ net/minecraft/client/renderer/debug/BeeDebugRenderer/SHOW_BLACKLISTS +FD: net/minecraft/client/renderer/debug/BeeDebugRenderer/f_173751_ net/minecraft/client/renderer/debug/BeeDebugRenderer/MAX_RENDER_DIST_FOR_HIVE_OVERLAY +FD: net/minecraft/client/renderer/debug/BeeDebugRenderer/f_173752_ net/minecraft/client/renderer/debug/BeeDebugRenderer/MAX_RENDER_DIST_FOR_BEE_OVERLAY +FD: net/minecraft/client/renderer/debug/BeeDebugRenderer/f_173753_ net/minecraft/client/renderer/debug/BeeDebugRenderer/MAX_TARGETING_DIST +FD: net/minecraft/client/renderer/debug/BeeDebugRenderer/f_173754_ net/minecraft/client/renderer/debug/BeeDebugRenderer/HIVE_TIMEOUT +FD: net/minecraft/client/renderer/debug/BeeDebugRenderer/f_173755_ net/minecraft/client/renderer/debug/BeeDebugRenderer/TEXT_SCALE +FD: net/minecraft/client/renderer/debug/BeeDebugRenderer/f_173756_ net/minecraft/client/renderer/debug/BeeDebugRenderer/WHITE +FD: net/minecraft/client/renderer/debug/BeeDebugRenderer/f_173757_ net/minecraft/client/renderer/debug/BeeDebugRenderer/YELLOW +FD: net/minecraft/client/renderer/debug/BeeDebugRenderer/f_173758_ net/minecraft/client/renderer/debug/BeeDebugRenderer/ORANGE +FD: net/minecraft/client/renderer/debug/BeeDebugRenderer/f_173759_ net/minecraft/client/renderer/debug/BeeDebugRenderer/GREEN +FD: net/minecraft/client/renderer/debug/BeeDebugRenderer/f_173760_ net/minecraft/client/renderer/debug/BeeDebugRenderer/GRAY +FD: net/minecraft/client/renderer/debug/BeeDebugRenderer/f_173761_ net/minecraft/client/renderer/debug/BeeDebugRenderer/PINK +FD: net/minecraft/client/renderer/debug/BeeDebugRenderer/f_173762_ net/minecraft/client/renderer/debug/BeeDebugRenderer/RED +FD: net/minecraft/client/renderer/debug/BeeDebugRenderer$BeeInfo/f_113157_ net/minecraft/client/renderer/debug/BeeDebugRenderer$BeeInfo/uuid +FD: net/minecraft/client/renderer/debug/BeeDebugRenderer$BeeInfo/f_113158_ net/minecraft/client/renderer/debug/BeeDebugRenderer$BeeInfo/id +FD: net/minecraft/client/renderer/debug/BeeDebugRenderer$BeeInfo/f_113159_ net/minecraft/client/renderer/debug/BeeDebugRenderer$BeeInfo/pos +FD: net/minecraft/client/renderer/debug/BeeDebugRenderer$BeeInfo/f_113160_ net/minecraft/client/renderer/debug/BeeDebugRenderer$BeeInfo/path +FD: net/minecraft/client/renderer/debug/BeeDebugRenderer$BeeInfo/f_113161_ net/minecraft/client/renderer/debug/BeeDebugRenderer$BeeInfo/hivePos +FD: net/minecraft/client/renderer/debug/BeeDebugRenderer$BeeInfo/f_113162_ net/minecraft/client/renderer/debug/BeeDebugRenderer$BeeInfo/flowerPos +FD: net/minecraft/client/renderer/debug/BeeDebugRenderer$BeeInfo/f_113163_ net/minecraft/client/renderer/debug/BeeDebugRenderer$BeeInfo/travelTicks +FD: net/minecraft/client/renderer/debug/BeeDebugRenderer$BeeInfo/f_113164_ net/minecraft/client/renderer/debug/BeeDebugRenderer$BeeInfo/goals +FD: net/minecraft/client/renderer/debug/BeeDebugRenderer$BeeInfo/f_113165_ net/minecraft/client/renderer/debug/BeeDebugRenderer$BeeInfo/blacklistedHives +FD: net/minecraft/client/renderer/debug/BeeDebugRenderer$HiveInfo/f_113180_ net/minecraft/client/renderer/debug/BeeDebugRenderer$HiveInfo/pos +FD: net/minecraft/client/renderer/debug/BeeDebugRenderer$HiveInfo/f_113181_ net/minecraft/client/renderer/debug/BeeDebugRenderer$HiveInfo/hiveType +FD: net/minecraft/client/renderer/debug/BeeDebugRenderer$HiveInfo/f_113182_ net/minecraft/client/renderer/debug/BeeDebugRenderer$HiveInfo/occupantCount +FD: net/minecraft/client/renderer/debug/BeeDebugRenderer$HiveInfo/f_113183_ net/minecraft/client/renderer/debug/BeeDebugRenderer$HiveInfo/honeyLevel +FD: net/minecraft/client/renderer/debug/BeeDebugRenderer$HiveInfo/f_113184_ net/minecraft/client/renderer/debug/BeeDebugRenderer$HiveInfo/sedated +FD: net/minecraft/client/renderer/debug/BeeDebugRenderer$HiveInfo/f_113185_ net/minecraft/client/renderer/debug/BeeDebugRenderer$HiveInfo/lastSeen +FD: net/minecraft/client/renderer/debug/BrainDebugRenderer/f_113193_ net/minecraft/client/renderer/debug/BrainDebugRenderer/LOGGER +FD: net/minecraft/client/renderer/debug/BrainDebugRenderer/f_113194_ net/minecraft/client/renderer/debug/BrainDebugRenderer/minecraft +FD: net/minecraft/client/renderer/debug/BrainDebugRenderer/f_113195_ net/minecraft/client/renderer/debug/BrainDebugRenderer/pois +FD: net/minecraft/client/renderer/debug/BrainDebugRenderer/f_113196_ net/minecraft/client/renderer/debug/BrainDebugRenderer/brainDumpsPerEntity +FD: net/minecraft/client/renderer/debug/BrainDebugRenderer/f_113197_ net/minecraft/client/renderer/debug/BrainDebugRenderer/lastLookedAtUuid +FD: net/minecraft/client/renderer/debug/BrainDebugRenderer/f_173778_ net/minecraft/client/renderer/debug/BrainDebugRenderer/YELLOW +FD: net/minecraft/client/renderer/debug/BrainDebugRenderer/f_173779_ net/minecraft/client/renderer/debug/BrainDebugRenderer/CYAN +FD: net/minecraft/client/renderer/debug/BrainDebugRenderer/f_173780_ net/minecraft/client/renderer/debug/BrainDebugRenderer/GREEN +FD: net/minecraft/client/renderer/debug/BrainDebugRenderer/f_173781_ net/minecraft/client/renderer/debug/BrainDebugRenderer/GRAY +FD: net/minecraft/client/renderer/debug/BrainDebugRenderer/f_173782_ net/minecraft/client/renderer/debug/BrainDebugRenderer/PINK +FD: net/minecraft/client/renderer/debug/BrainDebugRenderer/f_173783_ net/minecraft/client/renderer/debug/BrainDebugRenderer/RED +FD: net/minecraft/client/renderer/debug/BrainDebugRenderer/f_173784_ net/minecraft/client/renderer/debug/BrainDebugRenderer/ORANGE +FD: net/minecraft/client/renderer/debug/BrainDebugRenderer/f_173785_ net/minecraft/client/renderer/debug/BrainDebugRenderer/SHOW_NAME_FOR_ALL +FD: net/minecraft/client/renderer/debug/BrainDebugRenderer/f_173786_ net/minecraft/client/renderer/debug/BrainDebugRenderer/SHOW_PROFESSION_FOR_ALL +FD: net/minecraft/client/renderer/debug/BrainDebugRenderer/f_173787_ net/minecraft/client/renderer/debug/BrainDebugRenderer/SHOW_BEHAVIORS_FOR_ALL +FD: net/minecraft/client/renderer/debug/BrainDebugRenderer/f_173788_ net/minecraft/client/renderer/debug/BrainDebugRenderer/SHOW_ACTIVITIES_FOR_ALL +FD: net/minecraft/client/renderer/debug/BrainDebugRenderer/f_173789_ net/minecraft/client/renderer/debug/BrainDebugRenderer/SHOW_INVENTORY_FOR_ALL +FD: net/minecraft/client/renderer/debug/BrainDebugRenderer/f_173790_ net/minecraft/client/renderer/debug/BrainDebugRenderer/SHOW_GOSSIPS_FOR_ALL +FD: net/minecraft/client/renderer/debug/BrainDebugRenderer/f_173791_ net/minecraft/client/renderer/debug/BrainDebugRenderer/SHOW_PATH_FOR_ALL +FD: net/minecraft/client/renderer/debug/BrainDebugRenderer/f_173792_ net/minecraft/client/renderer/debug/BrainDebugRenderer/SHOW_HEALTH_FOR_ALL +FD: net/minecraft/client/renderer/debug/BrainDebugRenderer/f_173793_ net/minecraft/client/renderer/debug/BrainDebugRenderer/SHOW_WANTS_GOLEM_FOR_ALL +FD: net/minecraft/client/renderer/debug/BrainDebugRenderer/f_173794_ net/minecraft/client/renderer/debug/BrainDebugRenderer/SHOW_NAME_FOR_SELECTED +FD: net/minecraft/client/renderer/debug/BrainDebugRenderer/f_173795_ net/minecraft/client/renderer/debug/BrainDebugRenderer/SHOW_PROFESSION_FOR_SELECTED +FD: net/minecraft/client/renderer/debug/BrainDebugRenderer/f_173796_ net/minecraft/client/renderer/debug/BrainDebugRenderer/SHOW_BEHAVIORS_FOR_SELECTED +FD: net/minecraft/client/renderer/debug/BrainDebugRenderer/f_173797_ net/minecraft/client/renderer/debug/BrainDebugRenderer/SHOW_ACTIVITIES_FOR_SELECTED +FD: net/minecraft/client/renderer/debug/BrainDebugRenderer/f_173798_ net/minecraft/client/renderer/debug/BrainDebugRenderer/SHOW_MEMORIES_FOR_SELECTED +FD: net/minecraft/client/renderer/debug/BrainDebugRenderer/f_173799_ net/minecraft/client/renderer/debug/BrainDebugRenderer/SHOW_INVENTORY_FOR_SELECTED +FD: net/minecraft/client/renderer/debug/BrainDebugRenderer/f_173800_ net/minecraft/client/renderer/debug/BrainDebugRenderer/SHOW_GOSSIPS_FOR_SELECTED +FD: net/minecraft/client/renderer/debug/BrainDebugRenderer/f_173801_ net/minecraft/client/renderer/debug/BrainDebugRenderer/SHOW_PATH_FOR_SELECTED +FD: net/minecraft/client/renderer/debug/BrainDebugRenderer/f_173802_ net/minecraft/client/renderer/debug/BrainDebugRenderer/SHOW_HEALTH_FOR_SELECTED +FD: net/minecraft/client/renderer/debug/BrainDebugRenderer/f_173803_ net/minecraft/client/renderer/debug/BrainDebugRenderer/SHOW_WANTS_GOLEM_FOR_SELECTED +FD: net/minecraft/client/renderer/debug/BrainDebugRenderer/f_173804_ net/minecraft/client/renderer/debug/BrainDebugRenderer/SHOW_POI_INFO +FD: net/minecraft/client/renderer/debug/BrainDebugRenderer/f_173805_ net/minecraft/client/renderer/debug/BrainDebugRenderer/MAX_RENDER_DIST_FOR_BRAIN_INFO +FD: net/minecraft/client/renderer/debug/BrainDebugRenderer/f_173806_ net/minecraft/client/renderer/debug/BrainDebugRenderer/MAX_RENDER_DIST_FOR_POI_INFO +FD: net/minecraft/client/renderer/debug/BrainDebugRenderer/f_173807_ net/minecraft/client/renderer/debug/BrainDebugRenderer/MAX_TARGETING_DIST +FD: net/minecraft/client/renderer/debug/BrainDebugRenderer/f_173808_ net/minecraft/client/renderer/debug/BrainDebugRenderer/TEXT_SCALE +FD: net/minecraft/client/renderer/debug/BrainDebugRenderer/f_173809_ net/minecraft/client/renderer/debug/BrainDebugRenderer/WHITE +FD: net/minecraft/client/renderer/debug/BrainDebugRenderer/f_234493_ net/minecraft/client/renderer/debug/BrainDebugRenderer/SHOW_ANGER_LEVEL_FOR_ALL +FD: net/minecraft/client/renderer/debug/BrainDebugRenderer/f_234494_ net/minecraft/client/renderer/debug/BrainDebugRenderer/SHOW_ANGER_LEVEL_FOR_SELECTED +FD: net/minecraft/client/renderer/debug/BrainDebugRenderer$BrainDump/f_113293_ net/minecraft/client/renderer/debug/BrainDebugRenderer$BrainDump/uuid +FD: net/minecraft/client/renderer/debug/BrainDebugRenderer$BrainDump/f_113294_ net/minecraft/client/renderer/debug/BrainDebugRenderer$BrainDump/id +FD: net/minecraft/client/renderer/debug/BrainDebugRenderer$BrainDump/f_113295_ net/minecraft/client/renderer/debug/BrainDebugRenderer$BrainDump/name +FD: net/minecraft/client/renderer/debug/BrainDebugRenderer$BrainDump/f_113296_ net/minecraft/client/renderer/debug/BrainDebugRenderer$BrainDump/profession +FD: net/minecraft/client/renderer/debug/BrainDebugRenderer$BrainDump/f_113297_ net/minecraft/client/renderer/debug/BrainDebugRenderer$BrainDump/xp +FD: net/minecraft/client/renderer/debug/BrainDebugRenderer$BrainDump/f_113298_ net/minecraft/client/renderer/debug/BrainDebugRenderer$BrainDump/health +FD: net/minecraft/client/renderer/debug/BrainDebugRenderer$BrainDump/f_113299_ net/minecraft/client/renderer/debug/BrainDebugRenderer$BrainDump/maxHealth +FD: net/minecraft/client/renderer/debug/BrainDebugRenderer$BrainDump/f_113300_ net/minecraft/client/renderer/debug/BrainDebugRenderer$BrainDump/pos +FD: net/minecraft/client/renderer/debug/BrainDebugRenderer$BrainDump/f_113301_ net/minecraft/client/renderer/debug/BrainDebugRenderer$BrainDump/inventory +FD: net/minecraft/client/renderer/debug/BrainDebugRenderer$BrainDump/f_113302_ net/minecraft/client/renderer/debug/BrainDebugRenderer$BrainDump/path +FD: net/minecraft/client/renderer/debug/BrainDebugRenderer$BrainDump/f_113303_ net/minecraft/client/renderer/debug/BrainDebugRenderer$BrainDump/wantsGolem +FD: net/minecraft/client/renderer/debug/BrainDebugRenderer$BrainDump/f_113304_ net/minecraft/client/renderer/debug/BrainDebugRenderer$BrainDump/activities +FD: net/minecraft/client/renderer/debug/BrainDebugRenderer$BrainDump/f_113305_ net/minecraft/client/renderer/debug/BrainDebugRenderer$BrainDump/behaviors +FD: net/minecraft/client/renderer/debug/BrainDebugRenderer$BrainDump/f_113306_ net/minecraft/client/renderer/debug/BrainDebugRenderer$BrainDump/memories +FD: net/minecraft/client/renderer/debug/BrainDebugRenderer$BrainDump/f_113307_ net/minecraft/client/renderer/debug/BrainDebugRenderer$BrainDump/gossips +FD: net/minecraft/client/renderer/debug/BrainDebugRenderer$BrainDump/f_113308_ net/minecraft/client/renderer/debug/BrainDebugRenderer$BrainDump/pois +FD: net/minecraft/client/renderer/debug/BrainDebugRenderer$BrainDump/f_113309_ net/minecraft/client/renderer/debug/BrainDebugRenderer$BrainDump/potentialPois +FD: net/minecraft/client/renderer/debug/BrainDebugRenderer$BrainDump/f_234495_ net/minecraft/client/renderer/debug/BrainDebugRenderer$BrainDump/angerLevel +FD: net/minecraft/client/renderer/debug/BrainDebugRenderer$PoiInfo/f_113333_ net/minecraft/client/renderer/debug/BrainDebugRenderer$PoiInfo/pos +FD: net/minecraft/client/renderer/debug/BrainDebugRenderer$PoiInfo/f_113334_ net/minecraft/client/renderer/debug/BrainDebugRenderer$PoiInfo/type +FD: net/minecraft/client/renderer/debug/BrainDebugRenderer$PoiInfo/f_113335_ net/minecraft/client/renderer/debug/BrainDebugRenderer$PoiInfo/freeTicketCount +FD: net/minecraft/client/renderer/debug/ChunkBorderRenderer/f_113354_ net/minecraft/client/renderer/debug/ChunkBorderRenderer/minecraft +FD: net/minecraft/client/renderer/debug/ChunkBorderRenderer/f_194450_ net/minecraft/client/renderer/debug/ChunkBorderRenderer/CELL_BORDER +FD: net/minecraft/client/renderer/debug/ChunkBorderRenderer/f_194451_ net/minecraft/client/renderer/debug/ChunkBorderRenderer/YELLOW +FD: net/minecraft/client/renderer/debug/ChunkDebugRenderer/f_113363_ net/minecraft/client/renderer/debug/ChunkDebugRenderer/minecraft +FD: net/minecraft/client/renderer/debug/ChunkDebugRenderer/f_113364_ net/minecraft/client/renderer/debug/ChunkDebugRenderer/lastUpdateTime +FD: net/minecraft/client/renderer/debug/ChunkDebugRenderer/f_113365_ net/minecraft/client/renderer/debug/ChunkDebugRenderer/radius +FD: net/minecraft/client/renderer/debug/ChunkDebugRenderer/f_113366_ net/minecraft/client/renderer/debug/ChunkDebugRenderer/data +FD: net/minecraft/client/renderer/debug/ChunkDebugRenderer$ChunkData/f_113377_ net/minecraft/client/renderer/debug/ChunkDebugRenderer$ChunkData/this$0 +FD: net/minecraft/client/renderer/debug/ChunkDebugRenderer$ChunkData/f_113378_ net/minecraft/client/renderer/debug/ChunkDebugRenderer$ChunkData/clientData +FD: net/minecraft/client/renderer/debug/ChunkDebugRenderer$ChunkData/f_113379_ net/minecraft/client/renderer/debug/ChunkDebugRenderer$ChunkData/serverData +FD: net/minecraft/client/renderer/debug/CollisionBoxRenderer/f_113400_ net/minecraft/client/renderer/debug/CollisionBoxRenderer/minecraft +FD: net/minecraft/client/renderer/debug/CollisionBoxRenderer/f_113401_ net/minecraft/client/renderer/debug/CollisionBoxRenderer/lastUpdateTime +FD: net/minecraft/client/renderer/debug/CollisionBoxRenderer/f_113402_ net/minecraft/client/renderer/debug/CollisionBoxRenderer/shapes +FD: net/minecraft/client/renderer/debug/DebugRenderer/f_113413_ net/minecraft/client/renderer/debug/DebugRenderer/pathfindingRenderer +FD: net/minecraft/client/renderer/debug/DebugRenderer/f_113414_ net/minecraft/client/renderer/debug/DebugRenderer/waterDebugRenderer +FD: net/minecraft/client/renderer/debug/DebugRenderer/f_113415_ net/minecraft/client/renderer/debug/DebugRenderer/chunkBorderRenderer +FD: net/minecraft/client/renderer/debug/DebugRenderer/f_113416_ net/minecraft/client/renderer/debug/DebugRenderer/heightMapRenderer +FD: net/minecraft/client/renderer/debug/DebugRenderer/f_113417_ net/minecraft/client/renderer/debug/DebugRenderer/collisionBoxRenderer +FD: net/minecraft/client/renderer/debug/DebugRenderer/f_113418_ net/minecraft/client/renderer/debug/DebugRenderer/neighborsUpdateRenderer +FD: net/minecraft/client/renderer/debug/DebugRenderer/f_113420_ net/minecraft/client/renderer/debug/DebugRenderer/structureRenderer +FD: net/minecraft/client/renderer/debug/DebugRenderer/f_113421_ net/minecraft/client/renderer/debug/DebugRenderer/lightDebugRenderer +FD: net/minecraft/client/renderer/debug/DebugRenderer/f_113422_ net/minecraft/client/renderer/debug/DebugRenderer/worldGenAttemptRenderer +FD: net/minecraft/client/renderer/debug/DebugRenderer/f_113423_ net/minecraft/client/renderer/debug/DebugRenderer/solidFaceRenderer +FD: net/minecraft/client/renderer/debug/DebugRenderer/f_113424_ net/minecraft/client/renderer/debug/DebugRenderer/chunkRenderer +FD: net/minecraft/client/renderer/debug/DebugRenderer/f_113425_ net/minecraft/client/renderer/debug/DebugRenderer/brainDebugRenderer +FD: net/minecraft/client/renderer/debug/DebugRenderer/f_113426_ net/minecraft/client/renderer/debug/DebugRenderer/villageSectionsDebugRenderer +FD: net/minecraft/client/renderer/debug/DebugRenderer/f_113427_ net/minecraft/client/renderer/debug/DebugRenderer/beeDebugRenderer +FD: net/minecraft/client/renderer/debug/DebugRenderer/f_113428_ net/minecraft/client/renderer/debug/DebugRenderer/raidDebugRenderer +FD: net/minecraft/client/renderer/debug/DebugRenderer/f_113429_ net/minecraft/client/renderer/debug/DebugRenderer/goalSelectorRenderer +FD: net/minecraft/client/renderer/debug/DebugRenderer/f_113430_ net/minecraft/client/renderer/debug/DebugRenderer/gameTestDebugRenderer +FD: net/minecraft/client/renderer/debug/DebugRenderer/f_113431_ net/minecraft/client/renderer/debug/DebugRenderer/renderChunkborder +FD: net/minecraft/client/renderer/debug/DebugRenderer/f_173815_ net/minecraft/client/renderer/debug/DebugRenderer/gameEventListenerRenderer +FD: net/minecraft/client/renderer/debug/DebugRenderer/f_279550_ net/minecraft/client/renderer/debug/DebugRenderer/skyLightSectionDebugRenderer +FD: net/minecraft/client/renderer/debug/DebugRenderer/f_285648_ net/minecraft/client/renderer/debug/DebugRenderer/supportBlockRenderer +FD: net/minecraft/client/renderer/debug/GameEventListenerRenderer/f_173816_ net/minecraft/client/renderer/debug/GameEventListenerRenderer/minecraft +FD: net/minecraft/client/renderer/debug/GameEventListenerRenderer/f_173817_ net/minecraft/client/renderer/debug/GameEventListenerRenderer/LISTENER_RENDER_DIST +FD: net/minecraft/client/renderer/debug/GameEventListenerRenderer/f_173818_ net/minecraft/client/renderer/debug/GameEventListenerRenderer/BOX_HEIGHT +FD: net/minecraft/client/renderer/debug/GameEventListenerRenderer/f_173819_ net/minecraft/client/renderer/debug/GameEventListenerRenderer/trackedGameEvents +FD: net/minecraft/client/renderer/debug/GameEventListenerRenderer/f_173820_ net/minecraft/client/renderer/debug/GameEventListenerRenderer/trackedListeners +FD: net/minecraft/client/renderer/debug/GameEventListenerRenderer$TrackedGameEvent/f_173861_ net/minecraft/client/renderer/debug/GameEventListenerRenderer$TrackedGameEvent/timeStamp +FD: net/minecraft/client/renderer/debug/GameEventListenerRenderer$TrackedGameEvent/f_173862_ net/minecraft/client/renderer/debug/GameEventListenerRenderer$TrackedGameEvent/gameEvent +FD: net/minecraft/client/renderer/debug/GameEventListenerRenderer$TrackedGameEvent/f_173863_ net/minecraft/client/renderer/debug/GameEventListenerRenderer$TrackedGameEvent/position +FD: net/minecraft/client/renderer/debug/GameEventListenerRenderer$TrackedListener/f_173869_ net/minecraft/client/renderer/debug/GameEventListenerRenderer$TrackedListener/listenerSource +FD: net/minecraft/client/renderer/debug/GameEventListenerRenderer$TrackedListener/f_173870_ net/minecraft/client/renderer/debug/GameEventListenerRenderer$TrackedListener/listenerRange +FD: net/minecraft/client/renderer/debug/GameTestDebugRenderer/f_113512_ net/minecraft/client/renderer/debug/GameTestDebugRenderer/markers +FD: net/minecraft/client/renderer/debug/GameTestDebugRenderer/f_173886_ net/minecraft/client/renderer/debug/GameTestDebugRenderer/PADDING +FD: net/minecraft/client/renderer/debug/GameTestDebugRenderer$Marker/f_113532_ net/minecraft/client/renderer/debug/GameTestDebugRenderer$Marker/color +FD: net/minecraft/client/renderer/debug/GameTestDebugRenderer$Marker/f_113533_ net/minecraft/client/renderer/debug/GameTestDebugRenderer$Marker/text +FD: net/minecraft/client/renderer/debug/GameTestDebugRenderer$Marker/f_113534_ net/minecraft/client/renderer/debug/GameTestDebugRenderer$Marker/removeAtTime +FD: net/minecraft/client/renderer/debug/GoalSelectorDebugRenderer/f_113543_ net/minecraft/client/renderer/debug/GoalSelectorDebugRenderer/minecraft +FD: net/minecraft/client/renderer/debug/GoalSelectorDebugRenderer/f_113544_ net/minecraft/client/renderer/debug/GoalSelectorDebugRenderer/goalSelectors +FD: net/minecraft/client/renderer/debug/GoalSelectorDebugRenderer/f_173887_ net/minecraft/client/renderer/debug/GoalSelectorDebugRenderer/MAX_RENDER_DIST +FD: net/minecraft/client/renderer/debug/GoalSelectorDebugRenderer$DebugGoal/f_113561_ net/minecraft/client/renderer/debug/GoalSelectorDebugRenderer$DebugGoal/pos +FD: net/minecraft/client/renderer/debug/GoalSelectorDebugRenderer$DebugGoal/f_113562_ net/minecraft/client/renderer/debug/GoalSelectorDebugRenderer$DebugGoal/priority +FD: net/minecraft/client/renderer/debug/GoalSelectorDebugRenderer$DebugGoal/f_113563_ net/minecraft/client/renderer/debug/GoalSelectorDebugRenderer$DebugGoal/name +FD: net/minecraft/client/renderer/debug/GoalSelectorDebugRenderer$DebugGoal/f_113564_ net/minecraft/client/renderer/debug/GoalSelectorDebugRenderer$DebugGoal/isRunning +FD: net/minecraft/client/renderer/debug/HeightMapRenderer/f_113570_ net/minecraft/client/renderer/debug/HeightMapRenderer/minecraft +FD: net/minecraft/client/renderer/debug/HeightMapRenderer/f_173890_ net/minecraft/client/renderer/debug/HeightMapRenderer/CHUNK_DIST +FD: net/minecraft/client/renderer/debug/HeightMapRenderer/f_173891_ net/minecraft/client/renderer/debug/HeightMapRenderer/BOX_HEIGHT +FD: net/minecraft/client/renderer/debug/HeightMapRenderer$1/f_113581_ net/minecraft/client/renderer/debug/HeightMapRenderer$1/$SwitchMap$net$minecraft$world$level$levelgen$Heightmap$Types +FD: net/minecraft/client/renderer/debug/LightDebugRenderer/f_113583_ net/minecraft/client/renderer/debug/LightDebugRenderer/minecraft +FD: net/minecraft/client/renderer/debug/LightDebugRenderer/f_173892_ net/minecraft/client/renderer/debug/LightDebugRenderer/MAX_RENDER_DIST +FD: net/minecraft/client/renderer/debug/LightSectionDebugRenderer/f_279524_ net/minecraft/client/renderer/debug/LightSectionDebugRenderer/lastUpdateTime +FD: net/minecraft/client/renderer/debug/LightSectionDebugRenderer/f_279526_ net/minecraft/client/renderer/debug/LightSectionDebugRenderer/REFRESH_INTERVAL +FD: net/minecraft/client/renderer/debug/LightSectionDebugRenderer/f_279532_ net/minecraft/client/renderer/debug/LightSectionDebugRenderer/data +FD: net/minecraft/client/renderer/debug/LightSectionDebugRenderer/f_279558_ net/minecraft/client/renderer/debug/LightSectionDebugRenderer/lightLayer +FD: net/minecraft/client/renderer/debug/LightSectionDebugRenderer/f_279566_ net/minecraft/client/renderer/debug/LightSectionDebugRenderer/minecraft +FD: net/minecraft/client/renderer/debug/LightSectionDebugRenderer/f_279579_ net/minecraft/client/renderer/debug/LightSectionDebugRenderer/LIGHT_ONLY_COLOR +FD: net/minecraft/client/renderer/debug/LightSectionDebugRenderer/f_279653_ net/minecraft/client/renderer/debug/LightSectionDebugRenderer/LIGHT_AND_BLOCKS_COLOR +FD: net/minecraft/client/renderer/debug/LightSectionDebugRenderer/f_279660_ net/minecraft/client/renderer/debug/LightSectionDebugRenderer/RADIUS +FD: net/minecraft/client/renderer/debug/LightSectionDebugRenderer$1/f_279556_ net/minecraft/client/renderer/debug/LightSectionDebugRenderer$1/$SwitchMap$net$minecraft$core$Direction +FD: net/minecraft/client/renderer/debug/LightSectionDebugRenderer$SectionData/f_279546_ net/minecraft/client/renderer/debug/LightSectionDebugRenderer$SectionData/minPos +FD: net/minecraft/client/renderer/debug/LightSectionDebugRenderer$SectionData/f_279596_ net/minecraft/client/renderer/debug/LightSectionDebugRenderer$SectionData/lightShape +FD: net/minecraft/client/renderer/debug/LightSectionDebugRenderer$SectionData/f_279657_ net/minecraft/client/renderer/debug/LightSectionDebugRenderer$SectionData/lightAndBlocksShape +FD: net/minecraft/client/renderer/debug/NeighborsUpdateRenderer/f_113592_ net/minecraft/client/renderer/debug/NeighborsUpdateRenderer/minecraft +FD: net/minecraft/client/renderer/debug/NeighborsUpdateRenderer/f_113593_ net/minecraft/client/renderer/debug/NeighborsUpdateRenderer/lastUpdate +FD: net/minecraft/client/renderer/debug/PathfindingRenderer/f_113607_ net/minecraft/client/renderer/debug/PathfindingRenderer/pathMap +FD: net/minecraft/client/renderer/debug/PathfindingRenderer/f_113608_ net/minecraft/client/renderer/debug/PathfindingRenderer/pathMaxDist +FD: net/minecraft/client/renderer/debug/PathfindingRenderer/f_113609_ net/minecraft/client/renderer/debug/PathfindingRenderer/creationMap +FD: net/minecraft/client/renderer/debug/PathfindingRenderer/f_173893_ net/minecraft/client/renderer/debug/PathfindingRenderer/TIMEOUT +FD: net/minecraft/client/renderer/debug/PathfindingRenderer/f_173894_ net/minecraft/client/renderer/debug/PathfindingRenderer/MAX_RENDER_DIST +FD: net/minecraft/client/renderer/debug/PathfindingRenderer/f_173895_ net/minecraft/client/renderer/debug/PathfindingRenderer/SHOW_OPEN_CLOSED +FD: net/minecraft/client/renderer/debug/PathfindingRenderer/f_173896_ net/minecraft/client/renderer/debug/PathfindingRenderer/SHOW_OPEN_CLOSED_COST_MALUS +FD: net/minecraft/client/renderer/debug/PathfindingRenderer/f_173897_ net/minecraft/client/renderer/debug/PathfindingRenderer/SHOW_OPEN_CLOSED_NODE_TYPE_WITH_TEXT +FD: net/minecraft/client/renderer/debug/PathfindingRenderer/f_173898_ net/minecraft/client/renderer/debug/PathfindingRenderer/SHOW_OPEN_CLOSED_NODE_TYPE_WITH_BOX +FD: net/minecraft/client/renderer/debug/PathfindingRenderer/f_173899_ net/minecraft/client/renderer/debug/PathfindingRenderer/SHOW_GROUND_LABELS +FD: net/minecraft/client/renderer/debug/PathfindingRenderer/f_173900_ net/minecraft/client/renderer/debug/PathfindingRenderer/TEXT_SCALE +FD: net/minecraft/client/renderer/debug/RaidDebugRenderer/f_113647_ net/minecraft/client/renderer/debug/RaidDebugRenderer/minecraft +FD: net/minecraft/client/renderer/debug/RaidDebugRenderer/f_113648_ net/minecraft/client/renderer/debug/RaidDebugRenderer/raidCenters +FD: net/minecraft/client/renderer/debug/RaidDebugRenderer/f_173901_ net/minecraft/client/renderer/debug/RaidDebugRenderer/MAX_RENDER_DIST +FD: net/minecraft/client/renderer/debug/RaidDebugRenderer/f_173902_ net/minecraft/client/renderer/debug/RaidDebugRenderer/TEXT_SCALE +FD: net/minecraft/client/renderer/debug/SolidFaceRenderer/f_113666_ net/minecraft/client/renderer/debug/SolidFaceRenderer/minecraft +FD: net/minecraft/client/renderer/debug/StructureRenderer/f_113675_ net/minecraft/client/renderer/debug/StructureRenderer/minecraft +FD: net/minecraft/client/renderer/debug/StructureRenderer/f_113676_ net/minecraft/client/renderer/debug/StructureRenderer/postMainBoxes +FD: net/minecraft/client/renderer/debug/StructureRenderer/f_113677_ net/minecraft/client/renderer/debug/StructureRenderer/postPiecesBoxes +FD: net/minecraft/client/renderer/debug/StructureRenderer/f_113678_ net/minecraft/client/renderer/debug/StructureRenderer/startPiecesMap +FD: net/minecraft/client/renderer/debug/StructureRenderer/f_173903_ net/minecraft/client/renderer/debug/StructureRenderer/MAX_RENDER_DIST +FD: net/minecraft/client/renderer/debug/SupportBlockRenderer/f_285572_ net/minecraft/client/renderer/debug/SupportBlockRenderer/surroundEntities +FD: net/minecraft/client/renderer/debug/SupportBlockRenderer/f_285602_ net/minecraft/client/renderer/debug/SupportBlockRenderer/lastUpdateTime +FD: net/minecraft/client/renderer/debug/SupportBlockRenderer/f_285628_ net/minecraft/client/renderer/debug/SupportBlockRenderer/minecraft +FD: net/minecraft/client/renderer/debug/VillageSectionsDebugRenderer/f_113693_ net/minecraft/client/renderer/debug/VillageSectionsDebugRenderer/villageSections +FD: net/minecraft/client/renderer/debug/VillageSectionsDebugRenderer/f_173904_ net/minecraft/client/renderer/debug/VillageSectionsDebugRenderer/MAX_RENDER_DIST_FOR_VILLAGE_SECTIONS +FD: net/minecraft/client/renderer/debug/WaterDebugRenderer/f_113715_ net/minecraft/client/renderer/debug/WaterDebugRenderer/minecraft +FD: net/minecraft/client/renderer/debug/WorldGenAttemptRenderer/f_113724_ net/minecraft/client/renderer/debug/WorldGenAttemptRenderer/toRender +FD: net/minecraft/client/renderer/debug/WorldGenAttemptRenderer/f_113725_ net/minecraft/client/renderer/debug/WorldGenAttemptRenderer/scales +FD: net/minecraft/client/renderer/debug/WorldGenAttemptRenderer/f_113726_ net/minecraft/client/renderer/debug/WorldGenAttemptRenderer/alphas +FD: net/minecraft/client/renderer/debug/WorldGenAttemptRenderer/f_113727_ net/minecraft/client/renderer/debug/WorldGenAttemptRenderer/reds +FD: net/minecraft/client/renderer/debug/WorldGenAttemptRenderer/f_113728_ net/minecraft/client/renderer/debug/WorldGenAttemptRenderer/greens +FD: net/minecraft/client/renderer/debug/WorldGenAttemptRenderer/f_113729_ net/minecraft/client/renderer/debug/WorldGenAttemptRenderer/blues +FD: net/minecraft/client/renderer/entity/AbstractHorseRenderer/f_113744_ net/minecraft/client/renderer/entity/AbstractHorseRenderer/scale +FD: net/minecraft/client/renderer/entity/AbstractZombieRenderer/f_113757_ net/minecraft/client/renderer/entity/AbstractZombieRenderer/ZOMBIE_LOCATION +FD: net/minecraft/client/renderer/entity/AllayRenderer/f_234548_ net/minecraft/client/renderer/entity/AllayRenderer/ALLAY_TEXTURE +FD: net/minecraft/client/renderer/entity/ArmorStandRenderer/f_113780_ net/minecraft/client/renderer/entity/ArmorStandRenderer/DEFAULT_SKIN_LOCATION +FD: net/minecraft/client/renderer/entity/AxolotlRenderer/f_173918_ net/minecraft/client/renderer/entity/AxolotlRenderer/TEXTURE_BY_TYPE +FD: net/minecraft/client/renderer/entity/BatRenderer/f_113859_ net/minecraft/client/renderer/entity/BatRenderer/BAT_LOCATION +FD: net/minecraft/client/renderer/entity/BeeRenderer/f_113887_ net/minecraft/client/renderer/entity/BeeRenderer/ANGRY_BEE_TEXTURE +FD: net/minecraft/client/renderer/entity/BeeRenderer/f_113888_ net/minecraft/client/renderer/entity/BeeRenderer/ANGRY_NECTAR_BEE_TEXTURE +FD: net/minecraft/client/renderer/entity/BeeRenderer/f_113889_ net/minecraft/client/renderer/entity/BeeRenderer/BEE_TEXTURE +FD: net/minecraft/client/renderer/entity/BeeRenderer/f_113890_ net/minecraft/client/renderer/entity/BeeRenderer/NECTAR_BEE_TEXTURE +FD: net/minecraft/client/renderer/entity/BlazeRenderer/f_113898_ net/minecraft/client/renderer/entity/BlazeRenderer/BLAZE_LOCATION +FD: net/minecraft/client/renderer/entity/BoatRenderer/f_173934_ net/minecraft/client/renderer/entity/BoatRenderer/boatResources +FD: net/minecraft/client/renderer/entity/CamelRenderer/f_244220_ net/minecraft/client/renderer/entity/CamelRenderer/CAMEL_LOCATION +FD: net/minecraft/client/renderer/entity/CaveSpiderRenderer/f_113961_ net/minecraft/client/renderer/entity/CaveSpiderRenderer/CAVE_SPIDER_LOCATION +FD: net/minecraft/client/renderer/entity/CaveSpiderRenderer/f_173944_ net/minecraft/client/renderer/entity/CaveSpiderRenderer/SCALE +FD: net/minecraft/client/renderer/entity/ChestedHorseRenderer/f_113979_ net/minecraft/client/renderer/entity/ChestedHorseRenderer/MAP +FD: net/minecraft/client/renderer/entity/ChickenRenderer/f_113988_ net/minecraft/client/renderer/entity/ChickenRenderer/CHICKEN_LOCATION +FD: net/minecraft/client/renderer/entity/CodRenderer/f_114002_ net/minecraft/client/renderer/entity/CodRenderer/COD_LOCATION +FD: net/minecraft/client/renderer/entity/CowRenderer/f_114022_ net/minecraft/client/renderer/entity/CowRenderer/COW_LOCATION +FD: net/minecraft/client/renderer/entity/CreeperRenderer/f_114030_ net/minecraft/client/renderer/entity/CreeperRenderer/CREEPER_LOCATION +FD: net/minecraft/client/renderer/entity/DisplayRenderer/f_268749_ net/minecraft/client/renderer/entity/DisplayRenderer/entityRenderDispatcher +FD: net/minecraft/client/renderer/entity/DisplayRenderer$1/f_268432_ net/minecraft/client/renderer/entity/DisplayRenderer$1/$SwitchMap$net$minecraft$world$entity$Display$BillboardConstraints +FD: net/minecraft/client/renderer/entity/DisplayRenderer$1/f_268734_ net/minecraft/client/renderer/entity/DisplayRenderer$1/$SwitchMap$net$minecraft$world$entity$Display$TextDisplay$Align +FD: net/minecraft/client/renderer/entity/DisplayRenderer$BlockDisplayRenderer/f_268487_ net/minecraft/client/renderer/entity/DisplayRenderer$BlockDisplayRenderer/blockRenderer +FD: net/minecraft/client/renderer/entity/DisplayRenderer$ItemDisplayRenderer/f_268604_ net/minecraft/client/renderer/entity/DisplayRenderer$ItemDisplayRenderer/itemRenderer +FD: net/minecraft/client/renderer/entity/DisplayRenderer$TextDisplayRenderer/f_268575_ net/minecraft/client/renderer/entity/DisplayRenderer$TextDisplayRenderer/font +FD: net/minecraft/client/renderer/entity/DolphinRenderer/f_114052_ net/minecraft/client/renderer/entity/DolphinRenderer/DOLPHIN_LOCATION +FD: net/minecraft/client/renderer/entity/DragonFireballRenderer/f_114060_ net/minecraft/client/renderer/entity/DragonFireballRenderer/TEXTURE_LOCATION +FD: net/minecraft/client/renderer/entity/DragonFireballRenderer/f_114061_ net/minecraft/client/renderer/entity/DragonFireballRenderer/RENDER_TYPE +FD: net/minecraft/client/renderer/entity/DrownedRenderer/f_114098_ net/minecraft/client/renderer/entity/DrownedRenderer/DROWNED_LOCATION +FD: net/minecraft/client/renderer/entity/ElderGuardianRenderer/f_114116_ net/minecraft/client/renderer/entity/ElderGuardianRenderer/GUARDIAN_ELDER_LOCATION +FD: net/minecraft/client/renderer/entity/EndCrystalRenderer/f_114132_ net/minecraft/client/renderer/entity/EndCrystalRenderer/END_CRYSTAL_LOCATION +FD: net/minecraft/client/renderer/entity/EndCrystalRenderer/f_114133_ net/minecraft/client/renderer/entity/EndCrystalRenderer/RENDER_TYPE +FD: net/minecraft/client/renderer/entity/EndCrystalRenderer/f_114134_ net/minecraft/client/renderer/entity/EndCrystalRenderer/SIN_45 +FD: net/minecraft/client/renderer/entity/EndCrystalRenderer/f_114135_ net/minecraft/client/renderer/entity/EndCrystalRenderer/cube +FD: net/minecraft/client/renderer/entity/EndCrystalRenderer/f_114136_ net/minecraft/client/renderer/entity/EndCrystalRenderer/glass +FD: net/minecraft/client/renderer/entity/EndCrystalRenderer/f_114137_ net/minecraft/client/renderer/entity/EndCrystalRenderer/base +FD: net/minecraft/client/renderer/entity/EndCrystalRenderer/f_173967_ net/minecraft/client/renderer/entity/EndCrystalRenderer/GLASS +FD: net/minecraft/client/renderer/entity/EndCrystalRenderer/f_173968_ net/minecraft/client/renderer/entity/EndCrystalRenderer/BASE +FD: net/minecraft/client/renderer/entity/EnderDragonRenderer/f_114174_ net/minecraft/client/renderer/entity/EnderDragonRenderer/CRYSTAL_BEAM_LOCATION +FD: net/minecraft/client/renderer/entity/EnderDragonRenderer/f_114175_ net/minecraft/client/renderer/entity/EnderDragonRenderer/DRAGON_EXPLODING_LOCATION +FD: net/minecraft/client/renderer/entity/EnderDragonRenderer/f_114176_ net/minecraft/client/renderer/entity/EnderDragonRenderer/DRAGON_LOCATION +FD: net/minecraft/client/renderer/entity/EnderDragonRenderer/f_114177_ net/minecraft/client/renderer/entity/EnderDragonRenderer/DRAGON_EYES_LOCATION +FD: net/minecraft/client/renderer/entity/EnderDragonRenderer/f_114178_ net/minecraft/client/renderer/entity/EnderDragonRenderer/RENDER_TYPE +FD: net/minecraft/client/renderer/entity/EnderDragonRenderer/f_114179_ net/minecraft/client/renderer/entity/EnderDragonRenderer/DECAL +FD: net/minecraft/client/renderer/entity/EnderDragonRenderer/f_114180_ net/minecraft/client/renderer/entity/EnderDragonRenderer/EYES +FD: net/minecraft/client/renderer/entity/EnderDragonRenderer/f_114181_ net/minecraft/client/renderer/entity/EnderDragonRenderer/BEAM +FD: net/minecraft/client/renderer/entity/EnderDragonRenderer/f_114182_ net/minecraft/client/renderer/entity/EnderDragonRenderer/HALF_SQRT_3 +FD: net/minecraft/client/renderer/entity/EnderDragonRenderer/f_114183_ net/minecraft/client/renderer/entity/EnderDragonRenderer/model +FD: net/minecraft/client/renderer/entity/EnderDragonRenderer$DragonModel/f_114233_ net/minecraft/client/renderer/entity/EnderDragonRenderer$DragonModel/entity +FD: net/minecraft/client/renderer/entity/EnderDragonRenderer$DragonModel/f_114234_ net/minecraft/client/renderer/entity/EnderDragonRenderer$DragonModel/a +FD: net/minecraft/client/renderer/entity/EnderDragonRenderer$DragonModel/f_114235_ net/minecraft/client/renderer/entity/EnderDragonRenderer$DragonModel/head +FD: net/minecraft/client/renderer/entity/EnderDragonRenderer$DragonModel/f_114236_ net/minecraft/client/renderer/entity/EnderDragonRenderer$DragonModel/neck +FD: net/minecraft/client/renderer/entity/EnderDragonRenderer$DragonModel/f_114237_ net/minecraft/client/renderer/entity/EnderDragonRenderer$DragonModel/jaw +FD: net/minecraft/client/renderer/entity/EnderDragonRenderer$DragonModel/f_114238_ net/minecraft/client/renderer/entity/EnderDragonRenderer$DragonModel/body +FD: net/minecraft/client/renderer/entity/EnderDragonRenderer$DragonModel/f_114239_ net/minecraft/client/renderer/entity/EnderDragonRenderer$DragonModel/leftWing +FD: net/minecraft/client/renderer/entity/EnderDragonRenderer$DragonModel/f_114240_ net/minecraft/client/renderer/entity/EnderDragonRenderer$DragonModel/leftWingTip +FD: net/minecraft/client/renderer/entity/EnderDragonRenderer$DragonModel/f_114241_ net/minecraft/client/renderer/entity/EnderDragonRenderer$DragonModel/leftFrontLeg +FD: net/minecraft/client/renderer/entity/EnderDragonRenderer$DragonModel/f_114242_ net/minecraft/client/renderer/entity/EnderDragonRenderer$DragonModel/leftFrontLegTip +FD: net/minecraft/client/renderer/entity/EnderDragonRenderer$DragonModel/f_114243_ net/minecraft/client/renderer/entity/EnderDragonRenderer$DragonModel/leftFrontFoot +FD: net/minecraft/client/renderer/entity/EnderDragonRenderer$DragonModel/f_114244_ net/minecraft/client/renderer/entity/EnderDragonRenderer$DragonModel/leftRearLeg +FD: net/minecraft/client/renderer/entity/EnderDragonRenderer$DragonModel/f_114245_ net/minecraft/client/renderer/entity/EnderDragonRenderer$DragonModel/leftRearLegTip +FD: net/minecraft/client/renderer/entity/EnderDragonRenderer$DragonModel/f_114246_ net/minecraft/client/renderer/entity/EnderDragonRenderer$DragonModel/leftRearFoot +FD: net/minecraft/client/renderer/entity/EnderDragonRenderer$DragonModel/f_114247_ net/minecraft/client/renderer/entity/EnderDragonRenderer$DragonModel/rightWing +FD: net/minecraft/client/renderer/entity/EnderDragonRenderer$DragonModel/f_114248_ net/minecraft/client/renderer/entity/EnderDragonRenderer$DragonModel/rightWingTip +FD: net/minecraft/client/renderer/entity/EnderDragonRenderer$DragonModel/f_114249_ net/minecraft/client/renderer/entity/EnderDragonRenderer$DragonModel/rightFrontLeg +FD: net/minecraft/client/renderer/entity/EnderDragonRenderer$DragonModel/f_114250_ net/minecraft/client/renderer/entity/EnderDragonRenderer$DragonModel/rightFrontLegTip +FD: net/minecraft/client/renderer/entity/EnderDragonRenderer$DragonModel/f_114251_ net/minecraft/client/renderer/entity/EnderDragonRenderer$DragonModel/rightFrontFoot +FD: net/minecraft/client/renderer/entity/EnderDragonRenderer$DragonModel/f_114252_ net/minecraft/client/renderer/entity/EnderDragonRenderer$DragonModel/rightRearLeg +FD: net/minecraft/client/renderer/entity/EnderDragonRenderer$DragonModel/f_114253_ net/minecraft/client/renderer/entity/EnderDragonRenderer$DragonModel/rightRearLegTip +FD: net/minecraft/client/renderer/entity/EnderDragonRenderer$DragonModel/f_114254_ net/minecraft/client/renderer/entity/EnderDragonRenderer$DragonModel/rightRearFoot +FD: net/minecraft/client/renderer/entity/EndermanRenderer/f_114302_ net/minecraft/client/renderer/entity/EndermanRenderer/ENDERMAN_LOCATION +FD: net/minecraft/client/renderer/entity/EndermanRenderer/f_114303_ net/minecraft/client/renderer/entity/EndermanRenderer/random +FD: net/minecraft/client/renderer/entity/EndermiteRenderer/f_114345_ net/minecraft/client/renderer/entity/EndermiteRenderer/ENDERMITE_LOCATION +FD: net/minecraft/client/renderer/entity/EntityRenderDispatcher/f_114357_ net/minecraft/client/renderer/entity/EntityRenderDispatcher/textureManager +FD: net/minecraft/client/renderer/entity/EntityRenderDispatcher/f_114358_ net/minecraft/client/renderer/entity/EntityRenderDispatcher/camera +FD: net/minecraft/client/renderer/entity/EntityRenderDispatcher/f_114359_ net/minecraft/client/renderer/entity/EntityRenderDispatcher/crosshairPickEntity +FD: net/minecraft/client/renderer/entity/EntityRenderDispatcher/f_114360_ net/minecraft/client/renderer/entity/EntityRenderDispatcher/options +FD: net/minecraft/client/renderer/entity/EntityRenderDispatcher/f_114361_ net/minecraft/client/renderer/entity/EntityRenderDispatcher/SHADOW_RENDER_TYPE +FD: net/minecraft/client/renderer/entity/EntityRenderDispatcher/f_114362_ net/minecraft/client/renderer/entity/EntityRenderDispatcher/renderers +FD: net/minecraft/client/renderer/entity/EntityRenderDispatcher/f_114363_ net/minecraft/client/renderer/entity/EntityRenderDispatcher/playerRenderers +FD: net/minecraft/client/renderer/entity/EntityRenderDispatcher/f_114365_ net/minecraft/client/renderer/entity/EntityRenderDispatcher/font +FD: net/minecraft/client/renderer/entity/EntityRenderDispatcher/f_114366_ net/minecraft/client/renderer/entity/EntityRenderDispatcher/level +FD: net/minecraft/client/renderer/entity/EntityRenderDispatcher/f_114367_ net/minecraft/client/renderer/entity/EntityRenderDispatcher/cameraOrientation +FD: net/minecraft/client/renderer/entity/EntityRenderDispatcher/f_114368_ net/minecraft/client/renderer/entity/EntityRenderDispatcher/shouldRenderShadow +FD: net/minecraft/client/renderer/entity/EntityRenderDispatcher/f_114369_ net/minecraft/client/renderer/entity/EntityRenderDispatcher/renderHitBoxes +FD: net/minecraft/client/renderer/entity/EntityRenderDispatcher/f_173995_ net/minecraft/client/renderer/entity/EntityRenderDispatcher/itemRenderer +FD: net/minecraft/client/renderer/entity/EntityRenderDispatcher/f_173996_ net/minecraft/client/renderer/entity/EntityRenderDispatcher/entityModels +FD: net/minecraft/client/renderer/entity/EntityRenderDispatcher/f_234576_ net/minecraft/client/renderer/entity/EntityRenderDispatcher/blockRenderDispatcher +FD: net/minecraft/client/renderer/entity/EntityRenderDispatcher/f_234577_ net/minecraft/client/renderer/entity/EntityRenderDispatcher/itemInHandRenderer +FD: net/minecraft/client/renderer/entity/EntityRenderDispatcher/f_276493_ net/minecraft/client/renderer/entity/EntityRenderDispatcher/MAX_SHADOW_RADIUS +FD: net/minecraft/client/renderer/entity/EntityRenderDispatcher/f_276586_ net/minecraft/client/renderer/entity/EntityRenderDispatcher/SHADOW_POWER_FALLOFF_Y +FD: net/minecraft/client/renderer/entity/EntityRenderer/f_114476_ net/minecraft/client/renderer/entity/EntityRenderer/entityRenderDispatcher +FD: net/minecraft/client/renderer/entity/EntityRenderer/f_114477_ net/minecraft/client/renderer/entity/EntityRenderer/shadowRadius +FD: net/minecraft/client/renderer/entity/EntityRenderer/f_114478_ net/minecraft/client/renderer/entity/EntityRenderer/shadowStrength +FD: net/minecraft/client/renderer/entity/EntityRenderer/f_174005_ net/minecraft/client/renderer/entity/EntityRenderer/font +FD: net/minecraft/client/renderer/entity/EntityRenderer/f_174006_ net/minecraft/client/renderer/entity/EntityRenderer/NAMETAG_SCALE +FD: net/minecraft/client/renderer/entity/EntityRendererProvider$Context/f_174011_ net/minecraft/client/renderer/entity/EntityRendererProvider$Context/entityRenderDispatcher +FD: net/minecraft/client/renderer/entity/EntityRendererProvider$Context/f_174012_ net/minecraft/client/renderer/entity/EntityRendererProvider$Context/itemRenderer +FD: net/minecraft/client/renderer/entity/EntityRendererProvider$Context/f_174013_ net/minecraft/client/renderer/entity/EntityRendererProvider$Context/resourceManager +FD: net/minecraft/client/renderer/entity/EntityRendererProvider$Context/f_174014_ net/minecraft/client/renderer/entity/EntityRendererProvider$Context/modelSet +FD: net/minecraft/client/renderer/entity/EntityRendererProvider$Context/f_174015_ net/minecraft/client/renderer/entity/EntityRendererProvider$Context/font +FD: net/minecraft/client/renderer/entity/EntityRendererProvider$Context/f_234587_ net/minecraft/client/renderer/entity/EntityRendererProvider$Context/blockRenderDispatcher +FD: net/minecraft/client/renderer/entity/EntityRendererProvider$Context/f_234588_ net/minecraft/client/renderer/entity/EntityRendererProvider$Context/itemInHandRenderer +FD: net/minecraft/client/renderer/entity/EntityRenderers/f_174029_ net/minecraft/client/renderer/entity/EntityRenderers/DEFAULT_PLAYER_MODEL +FD: net/minecraft/client/renderer/entity/EntityRenderers/f_174030_ net/minecraft/client/renderer/entity/EntityRenderers/LOGGER +FD: net/minecraft/client/renderer/entity/EntityRenderers/f_174031_ net/minecraft/client/renderer/entity/EntityRenderers/PROVIDERS +FD: net/minecraft/client/renderer/entity/EntityRenderers/f_174032_ net/minecraft/client/renderer/entity/EntityRenderers/PLAYER_PROVIDERS +FD: net/minecraft/client/renderer/entity/EvokerFangsRenderer/f_114511_ net/minecraft/client/renderer/entity/EvokerFangsRenderer/TEXTURE_LOCATION +FD: net/minecraft/client/renderer/entity/EvokerFangsRenderer/f_114512_ net/minecraft/client/renderer/entity/EvokerFangsRenderer/model +FD: net/minecraft/client/renderer/entity/EvokerRenderer/f_114534_ net/minecraft/client/renderer/entity/EvokerRenderer/EVOKER_ILLAGER +FD: net/minecraft/client/renderer/entity/EvokerRenderer$1/f_114542_ net/minecraft/client/renderer/entity/EvokerRenderer$1/this$0 +FD: net/minecraft/client/renderer/entity/ExperienceOrbRenderer/f_114579_ net/minecraft/client/renderer/entity/ExperienceOrbRenderer/EXPERIENCE_ORB_LOCATION +FD: net/minecraft/client/renderer/entity/ExperienceOrbRenderer/f_114580_ net/minecraft/client/renderer/entity/ExperienceOrbRenderer/RENDER_TYPE +FD: net/minecraft/client/renderer/entity/FallingBlockRenderer/f_234617_ net/minecraft/client/renderer/entity/FallingBlockRenderer/dispatcher +FD: net/minecraft/client/renderer/entity/FireworkEntityRenderer/f_114640_ net/minecraft/client/renderer/entity/FireworkEntityRenderer/itemRenderer +FD: net/minecraft/client/renderer/entity/FishingHookRenderer/f_114678_ net/minecraft/client/renderer/entity/FishingHookRenderer/TEXTURE_LOCATION +FD: net/minecraft/client/renderer/entity/FishingHookRenderer/f_114679_ net/minecraft/client/renderer/entity/FishingHookRenderer/RENDER_TYPE +FD: net/minecraft/client/renderer/entity/FishingHookRenderer/f_174115_ net/minecraft/client/renderer/entity/FishingHookRenderer/VIEW_BOBBING_SCALE +FD: net/minecraft/client/renderer/entity/FoxRenderer/f_114720_ net/minecraft/client/renderer/entity/FoxRenderer/RED_FOX_TEXTURE +FD: net/minecraft/client/renderer/entity/FoxRenderer/f_114721_ net/minecraft/client/renderer/entity/FoxRenderer/RED_FOX_SLEEP_TEXTURE +FD: net/minecraft/client/renderer/entity/FoxRenderer/f_114722_ net/minecraft/client/renderer/entity/FoxRenderer/SNOW_FOX_TEXTURE +FD: net/minecraft/client/renderer/entity/FoxRenderer/f_114723_ net/minecraft/client/renderer/entity/FoxRenderer/SNOW_FOX_SLEEP_TEXTURE +FD: net/minecraft/client/renderer/entity/GhastRenderer/f_114743_ net/minecraft/client/renderer/entity/GhastRenderer/GHAST_LOCATION +FD: net/minecraft/client/renderer/entity/GhastRenderer/f_114744_ net/minecraft/client/renderer/entity/GhastRenderer/GHAST_SHOOTING_LOCATION +FD: net/minecraft/client/renderer/entity/GiantMobRenderer/f_114760_ net/minecraft/client/renderer/entity/GiantMobRenderer/ZOMBIE_LOCATION +FD: net/minecraft/client/renderer/entity/GiantMobRenderer/f_114761_ net/minecraft/client/renderer/entity/GiantMobRenderer/scale +FD: net/minecraft/client/renderer/entity/GlowSquidRenderer/f_174133_ net/minecraft/client/renderer/entity/GlowSquidRenderer/GLOW_SQUID_LOCATION +FD: net/minecraft/client/renderer/entity/GoatRenderer/f_174150_ net/minecraft/client/renderer/entity/GoatRenderer/GOAT_LOCATION +FD: net/minecraft/client/renderer/entity/GuardianRenderer/f_114778_ net/minecraft/client/renderer/entity/GuardianRenderer/GUARDIAN_LOCATION +FD: net/minecraft/client/renderer/entity/GuardianRenderer/f_114779_ net/minecraft/client/renderer/entity/GuardianRenderer/GUARDIAN_BEAM_LOCATION +FD: net/minecraft/client/renderer/entity/GuardianRenderer/f_114780_ net/minecraft/client/renderer/entity/GuardianRenderer/BEAM_RENDER_TYPE +FD: net/minecraft/client/renderer/entity/HoglinRenderer/f_114853_ net/minecraft/client/renderer/entity/HoglinRenderer/HOGLIN_LOCATION +FD: net/minecraft/client/renderer/entity/HorseRenderer/f_114865_ net/minecraft/client/renderer/entity/HorseRenderer/LOCATION_BY_VARIANT +FD: net/minecraft/client/renderer/entity/HuskRenderer/f_114892_ net/minecraft/client/renderer/entity/HuskRenderer/HUSK_LOCATION +FD: net/minecraft/client/renderer/entity/IllusionerRenderer/f_114922_ net/minecraft/client/renderer/entity/IllusionerRenderer/ILLUSIONER +FD: net/minecraft/client/renderer/entity/IllusionerRenderer$1/f_114962_ net/minecraft/client/renderer/entity/IllusionerRenderer$1/this$0 +FD: net/minecraft/client/renderer/entity/IronGolemRenderer/f_114999_ net/minecraft/client/renderer/entity/IronGolemRenderer/GOLEM_LOCATION +FD: net/minecraft/client/renderer/entity/ItemEntityRenderer/f_115019_ net/minecraft/client/renderer/entity/ItemEntityRenderer/itemRenderer +FD: net/minecraft/client/renderer/entity/ItemEntityRenderer/f_115020_ net/minecraft/client/renderer/entity/ItemEntityRenderer/random +FD: net/minecraft/client/renderer/entity/ItemEntityRenderer/f_174189_ net/minecraft/client/renderer/entity/ItemEntityRenderer/ITEM_BUNDLE_OFFSET_SCALE +FD: net/minecraft/client/renderer/entity/ItemEntityRenderer/f_174190_ net/minecraft/client/renderer/entity/ItemEntityRenderer/ITEM_COUNT_FOR_5_BUNDLE +FD: net/minecraft/client/renderer/entity/ItemEntityRenderer/f_174191_ net/minecraft/client/renderer/entity/ItemEntityRenderer/ITEM_COUNT_FOR_4_BUNDLE +FD: net/minecraft/client/renderer/entity/ItemEntityRenderer/f_174192_ net/minecraft/client/renderer/entity/ItemEntityRenderer/ITEM_COUNT_FOR_3_BUNDLE +FD: net/minecraft/client/renderer/entity/ItemEntityRenderer/f_174193_ net/minecraft/client/renderer/entity/ItemEntityRenderer/ITEM_COUNT_FOR_2_BUNDLE +FD: net/minecraft/client/renderer/entity/ItemEntityRenderer/f_174194_ net/minecraft/client/renderer/entity/ItemEntityRenderer/FLAT_ITEM_BUNDLE_OFFSET_X +FD: net/minecraft/client/renderer/entity/ItemEntityRenderer/f_174195_ net/minecraft/client/renderer/entity/ItemEntityRenderer/FLAT_ITEM_BUNDLE_OFFSET_Y +FD: net/minecraft/client/renderer/entity/ItemEntityRenderer/f_174196_ net/minecraft/client/renderer/entity/ItemEntityRenderer/FLAT_ITEM_BUNDLE_OFFSET_Z +FD: net/minecraft/client/renderer/entity/ItemFrameRenderer/f_115044_ net/minecraft/client/renderer/entity/ItemFrameRenderer/FRAME_LOCATION +FD: net/minecraft/client/renderer/entity/ItemFrameRenderer/f_115045_ net/minecraft/client/renderer/entity/ItemFrameRenderer/MAP_FRAME_LOCATION +FD: net/minecraft/client/renderer/entity/ItemFrameRenderer/f_115047_ net/minecraft/client/renderer/entity/ItemFrameRenderer/itemRenderer +FD: net/minecraft/client/renderer/entity/ItemFrameRenderer/f_174199_ net/minecraft/client/renderer/entity/ItemFrameRenderer/GLOW_FRAME_BRIGHTNESS +FD: net/minecraft/client/renderer/entity/ItemFrameRenderer/f_174200_ net/minecraft/client/renderer/entity/ItemFrameRenderer/BRIGHT_MAP_LIGHT_ADJUSTMENT +FD: net/minecraft/client/renderer/entity/ItemFrameRenderer/f_174201_ net/minecraft/client/renderer/entity/ItemFrameRenderer/GLOW_FRAME_LOCATION +FD: net/minecraft/client/renderer/entity/ItemFrameRenderer/f_174202_ net/minecraft/client/renderer/entity/ItemFrameRenderer/GLOW_MAP_FRAME_LOCATION +FD: net/minecraft/client/renderer/entity/ItemFrameRenderer/f_234645_ net/minecraft/client/renderer/entity/ItemFrameRenderer/blockRenderer +FD: net/minecraft/client/renderer/entity/ItemRenderer/f_115094_ net/minecraft/client/renderer/entity/ItemRenderer/IGNORED +FD: net/minecraft/client/renderer/entity/ItemRenderer/f_115095_ net/minecraft/client/renderer/entity/ItemRenderer/itemModelShaper +FD: net/minecraft/client/renderer/entity/ItemRenderer/f_115096_ net/minecraft/client/renderer/entity/ItemRenderer/textureManager +FD: net/minecraft/client/renderer/entity/ItemRenderer/f_115097_ net/minecraft/client/renderer/entity/ItemRenderer/itemColors +FD: net/minecraft/client/renderer/entity/ItemRenderer/f_174218_ net/minecraft/client/renderer/entity/ItemRenderer/ITEM_COUNT_BLIT_OFFSET +FD: net/minecraft/client/renderer/entity/ItemRenderer/f_174219_ net/minecraft/client/renderer/entity/ItemRenderer/COMPASS_FOIL_UI_SCALE +FD: net/minecraft/client/renderer/entity/ItemRenderer/f_174220_ net/minecraft/client/renderer/entity/ItemRenderer/COMPASS_FOIL_FIRST_PERSON_SCALE +FD: net/minecraft/client/renderer/entity/ItemRenderer/f_174221_ net/minecraft/client/renderer/entity/ItemRenderer/GUI_SLOT_CENTER_X +FD: net/minecraft/client/renderer/entity/ItemRenderer/f_174222_ net/minecraft/client/renderer/entity/ItemRenderer/GUI_SLOT_CENTER_Y +FD: net/minecraft/client/renderer/entity/ItemRenderer/f_174223_ net/minecraft/client/renderer/entity/ItemRenderer/blockEntityRenderer +FD: net/minecraft/client/renderer/entity/ItemRenderer/f_243706_ net/minecraft/client/renderer/entity/ItemRenderer/SPYGLASS_IN_HAND_MODEL +FD: net/minecraft/client/renderer/entity/ItemRenderer/f_244055_ net/minecraft/client/renderer/entity/ItemRenderer/TRIDENT_IN_HAND_MODEL +FD: net/minecraft/client/renderer/entity/ItemRenderer/f_244324_ net/minecraft/client/renderer/entity/ItemRenderer/TRIDENT_MODEL +FD: net/minecraft/client/renderer/entity/ItemRenderer/f_244537_ net/minecraft/client/renderer/entity/ItemRenderer/SPYGLASS_MODEL +FD: net/minecraft/client/renderer/entity/ItemRenderer/f_256734_ net/minecraft/client/renderer/entity/ItemRenderer/COMPASS_FOIL_TEXTURE_SCALE +FD: net/minecraft/client/renderer/entity/ItemRenderer/f_265848_ net/minecraft/client/renderer/entity/ItemRenderer/minecraft +FD: net/minecraft/client/renderer/entity/ItemRenderer/f_273833_ net/minecraft/client/renderer/entity/ItemRenderer/ENCHANTED_GLINT_ITEM +FD: net/minecraft/client/renderer/entity/ItemRenderer/f_273897_ net/minecraft/client/renderer/entity/ItemRenderer/ENCHANTED_GLINT_ENTITY +FD: net/minecraft/client/renderer/entity/LeashKnotRenderer/f_115229_ net/minecraft/client/renderer/entity/LeashKnotRenderer/KNOT_LOCATION +FD: net/minecraft/client/renderer/entity/LeashKnotRenderer/f_115230_ net/minecraft/client/renderer/entity/LeashKnotRenderer/model +FD: net/minecraft/client/renderer/entity/LivingEntityRenderer/f_115289_ net/minecraft/client/renderer/entity/LivingEntityRenderer/LOGGER +FD: net/minecraft/client/renderer/entity/LivingEntityRenderer/f_115290_ net/minecraft/client/renderer/entity/LivingEntityRenderer/model +FD: net/minecraft/client/renderer/entity/LivingEntityRenderer/f_115291_ net/minecraft/client/renderer/entity/LivingEntityRenderer/layers +FD: net/minecraft/client/renderer/entity/LivingEntityRenderer/f_174287_ net/minecraft/client/renderer/entity/LivingEntityRenderer/EYE_BED_OFFSET +FD: net/minecraft/client/renderer/entity/LivingEntityRenderer$1/f_115345_ net/minecraft/client/renderer/entity/LivingEntityRenderer$1/$SwitchMap$net$minecraft$core$Direction +FD: net/minecraft/client/renderer/entity/LivingEntityRenderer$1/f_115346_ net/minecraft/client/renderer/entity/LivingEntityRenderer$1/$SwitchMap$net$minecraft$world$scores$Team$Visibility +FD: net/minecraft/client/renderer/entity/LlamaRenderer/f_262241_ net/minecraft/client/renderer/entity/LlamaRenderer/BROWN +FD: net/minecraft/client/renderer/entity/LlamaRenderer/f_262249_ net/minecraft/client/renderer/entity/LlamaRenderer/CREAMY +FD: net/minecraft/client/renderer/entity/LlamaRenderer/f_262269_ net/minecraft/client/renderer/entity/LlamaRenderer/WHITE +FD: net/minecraft/client/renderer/entity/LlamaRenderer/f_262320_ net/minecraft/client/renderer/entity/LlamaRenderer/GRAY +FD: net/minecraft/client/renderer/entity/LlamaRenderer$1/f_262225_ net/minecraft/client/renderer/entity/LlamaRenderer$1/$SwitchMap$net$minecraft$world$entity$animal$horse$Llama$Variant +FD: net/minecraft/client/renderer/entity/LlamaSpitRenderer/f_115356_ net/minecraft/client/renderer/entity/LlamaSpitRenderer/LLAMA_SPIT_LOCATION +FD: net/minecraft/client/renderer/entity/LlamaSpitRenderer/f_115357_ net/minecraft/client/renderer/entity/LlamaSpitRenderer/model +FD: net/minecraft/client/renderer/entity/MagmaCubeRenderer/f_115379_ net/minecraft/client/renderer/entity/MagmaCubeRenderer/MAGMACUBE_LOCATION +FD: net/minecraft/client/renderer/entity/MinecartRenderer/f_115401_ net/minecraft/client/renderer/entity/MinecartRenderer/model +FD: net/minecraft/client/renderer/entity/MinecartRenderer/f_115402_ net/minecraft/client/renderer/entity/MinecartRenderer/MINECART_LOCATION +FD: net/minecraft/client/renderer/entity/MinecartRenderer/f_234646_ net/minecraft/client/renderer/entity/MinecartRenderer/blockRenderer +FD: net/minecraft/client/renderer/entity/MobRenderer/f_174302_ net/minecraft/client/renderer/entity/MobRenderer/LEASH_RENDER_STEPS +FD: net/minecraft/client/renderer/entity/MushroomCowRenderer/f_115507_ net/minecraft/client/renderer/entity/MushroomCowRenderer/TEXTURES +FD: net/minecraft/client/renderer/entity/OcelotRenderer/f_115517_ net/minecraft/client/renderer/entity/OcelotRenderer/CAT_OCELOT_LOCATION +FD: net/minecraft/client/renderer/entity/PandaRenderer/f_115620_ net/minecraft/client/renderer/entity/PandaRenderer/TEXTURES +FD: net/minecraft/client/renderer/entity/ParrotRenderer/f_262196_ net/minecraft/client/renderer/entity/ParrotRenderer/RED_BLUE +FD: net/minecraft/client/renderer/entity/ParrotRenderer/f_262214_ net/minecraft/client/renderer/entity/ParrotRenderer/BLUE +FD: net/minecraft/client/renderer/entity/ParrotRenderer/f_262242_ net/minecraft/client/renderer/entity/ParrotRenderer/YELLOW_BLUE +FD: net/minecraft/client/renderer/entity/ParrotRenderer/f_262263_ net/minecraft/client/renderer/entity/ParrotRenderer/GREEN +FD: net/minecraft/client/renderer/entity/ParrotRenderer/f_262278_ net/minecraft/client/renderer/entity/ParrotRenderer/GREY +FD: net/minecraft/client/renderer/entity/ParrotRenderer$1/f_262232_ net/minecraft/client/renderer/entity/ParrotRenderer$1/$SwitchMap$net$minecraft$world$entity$animal$Parrot$Variant +FD: net/minecraft/client/renderer/entity/PhantomRenderer/f_115662_ net/minecraft/client/renderer/entity/PhantomRenderer/PHANTOM_LOCATION +FD: net/minecraft/client/renderer/entity/PigRenderer/f_115690_ net/minecraft/client/renderer/entity/PigRenderer/PIG_LOCATION +FD: net/minecraft/client/renderer/entity/PiglinRenderer/f_174341_ net/minecraft/client/renderer/entity/PiglinRenderer/TEXTURES +FD: net/minecraft/client/renderer/entity/PiglinRenderer/f_174342_ net/minecraft/client/renderer/entity/PiglinRenderer/PIGLIN_CUSTOM_HEAD_SCALE +FD: net/minecraft/client/renderer/entity/PillagerRenderer/f_115713_ net/minecraft/client/renderer/entity/PillagerRenderer/PILLAGER +FD: net/minecraft/client/renderer/entity/PolarBearRenderer/f_115721_ net/minecraft/client/renderer/entity/PolarBearRenderer/BEAR_LOCATION +FD: net/minecraft/client/renderer/entity/PufferfishRenderer/f_115737_ net/minecraft/client/renderer/entity/PufferfishRenderer/PUFFER_LOCATION +FD: net/minecraft/client/renderer/entity/PufferfishRenderer/f_115738_ net/minecraft/client/renderer/entity/PufferfishRenderer/puffStateO +FD: net/minecraft/client/renderer/entity/PufferfishRenderer/f_115739_ net/minecraft/client/renderer/entity/PufferfishRenderer/small +FD: net/minecraft/client/renderer/entity/PufferfishRenderer/f_115740_ net/minecraft/client/renderer/entity/PufferfishRenderer/mid +FD: net/minecraft/client/renderer/entity/PufferfishRenderer/f_115741_ net/minecraft/client/renderer/entity/PufferfishRenderer/big +FD: net/minecraft/client/renderer/entity/RabbitRenderer/f_115789_ net/minecraft/client/renderer/entity/RabbitRenderer/RABBIT_BROWN_LOCATION +FD: net/minecraft/client/renderer/entity/RabbitRenderer/f_115790_ net/minecraft/client/renderer/entity/RabbitRenderer/RABBIT_WHITE_LOCATION +FD: net/minecraft/client/renderer/entity/RabbitRenderer/f_115791_ net/minecraft/client/renderer/entity/RabbitRenderer/RABBIT_BLACK_LOCATION +FD: net/minecraft/client/renderer/entity/RabbitRenderer/f_115792_ net/minecraft/client/renderer/entity/RabbitRenderer/RABBIT_GOLD_LOCATION +FD: net/minecraft/client/renderer/entity/RabbitRenderer/f_115793_ net/minecraft/client/renderer/entity/RabbitRenderer/RABBIT_SALT_LOCATION +FD: net/minecraft/client/renderer/entity/RabbitRenderer/f_115794_ net/minecraft/client/renderer/entity/RabbitRenderer/RABBIT_WHITE_SPLOTCHED_LOCATION +FD: net/minecraft/client/renderer/entity/RabbitRenderer/f_115795_ net/minecraft/client/renderer/entity/RabbitRenderer/RABBIT_TOAST_LOCATION +FD: net/minecraft/client/renderer/entity/RabbitRenderer/f_115796_ net/minecraft/client/renderer/entity/RabbitRenderer/RABBIT_EVIL_LOCATION +FD: net/minecraft/client/renderer/entity/RabbitRenderer$1/f_262283_ net/minecraft/client/renderer/entity/RabbitRenderer$1/$SwitchMap$net$minecraft$world$entity$animal$Rabbit$Variant +FD: net/minecraft/client/renderer/entity/RavagerRenderer/f_115804_ net/minecraft/client/renderer/entity/RavagerRenderer/TEXTURE_LOCATION +FD: net/minecraft/client/renderer/entity/SalmonRenderer/f_115813_ net/minecraft/client/renderer/entity/SalmonRenderer/SALMON_LOCATION +FD: net/minecraft/client/renderer/entity/SheepRenderer/f_115833_ net/minecraft/client/renderer/entity/SheepRenderer/SHEEP_LOCATION +FD: net/minecraft/client/renderer/entity/ShulkerBulletRenderer/f_115841_ net/minecraft/client/renderer/entity/ShulkerBulletRenderer/TEXTURE_LOCATION +FD: net/minecraft/client/renderer/entity/ShulkerBulletRenderer/f_115842_ net/minecraft/client/renderer/entity/ShulkerBulletRenderer/RENDER_TYPE +FD: net/minecraft/client/renderer/entity/ShulkerBulletRenderer/f_115843_ net/minecraft/client/renderer/entity/ShulkerBulletRenderer/model +FD: net/minecraft/client/renderer/entity/ShulkerRenderer/f_115871_ net/minecraft/client/renderer/entity/ShulkerRenderer/DEFAULT_TEXTURE_LOCATION +FD: net/minecraft/client/renderer/entity/ShulkerRenderer/f_115872_ net/minecraft/client/renderer/entity/ShulkerRenderer/TEXTURE_LOCATION +FD: net/minecraft/client/renderer/entity/SilverfishRenderer/f_115920_ net/minecraft/client/renderer/entity/SilverfishRenderer/SILVERFISH_LOCATION +FD: net/minecraft/client/renderer/entity/SkeletonRenderer/f_115932_ net/minecraft/client/renderer/entity/SkeletonRenderer/SKELETON_LOCATION +FD: net/minecraft/client/renderer/entity/SlimeRenderer/f_115942_ net/minecraft/client/renderer/entity/SlimeRenderer/SLIME_LOCATION +FD: net/minecraft/client/renderer/entity/SnifferRenderer/f_271201_ net/minecraft/client/renderer/entity/SnifferRenderer/SNIFFER_LOCATION +FD: net/minecraft/client/renderer/entity/SnowGolemRenderer/f_115986_ net/minecraft/client/renderer/entity/SnowGolemRenderer/SNOW_GOLEM_LOCATION +FD: net/minecraft/client/renderer/entity/SpectralArrowRenderer/f_115994_ net/minecraft/client/renderer/entity/SpectralArrowRenderer/SPECTRAL_ARROW_LOCATION +FD: net/minecraft/client/renderer/entity/SpiderRenderer/f_116002_ net/minecraft/client/renderer/entity/SpiderRenderer/SPIDER_LOCATION +FD: net/minecraft/client/renderer/entity/SquidRenderer/f_116014_ net/minecraft/client/renderer/entity/SquidRenderer/SQUID_LOCATION +FD: net/minecraft/client/renderer/entity/StrayRenderer/f_116040_ net/minecraft/client/renderer/entity/StrayRenderer/STRAY_SKELETON_LOCATION +FD: net/minecraft/client/renderer/entity/StriderRenderer/f_116050_ net/minecraft/client/renderer/entity/StriderRenderer/STRIDER_LOCATION +FD: net/minecraft/client/renderer/entity/StriderRenderer/f_116051_ net/minecraft/client/renderer/entity/StriderRenderer/COLD_LOCATION +FD: net/minecraft/client/renderer/entity/TadpoleRenderer/f_234652_ net/minecraft/client/renderer/entity/TadpoleRenderer/TADPOLE_TEXTURE +FD: net/minecraft/client/renderer/entity/ThrownItemRenderer/f_116071_ net/minecraft/client/renderer/entity/ThrownItemRenderer/itemRenderer +FD: net/minecraft/client/renderer/entity/ThrownItemRenderer/f_116072_ net/minecraft/client/renderer/entity/ThrownItemRenderer/scale +FD: net/minecraft/client/renderer/entity/ThrownItemRenderer/f_116073_ net/minecraft/client/renderer/entity/ThrownItemRenderer/fullBright +FD: net/minecraft/client/renderer/entity/ThrownItemRenderer/f_174412_ net/minecraft/client/renderer/entity/ThrownItemRenderer/MIN_CAMERA_DISTANCE_SQUARED +FD: net/minecraft/client/renderer/entity/ThrownTridentRenderer/f_116094_ net/minecraft/client/renderer/entity/ThrownTridentRenderer/TRIDENT_LOCATION +FD: net/minecraft/client/renderer/entity/ThrownTridentRenderer/f_116095_ net/minecraft/client/renderer/entity/ThrownTridentRenderer/model +FD: net/minecraft/client/renderer/entity/TippableArrowRenderer/f_116132_ net/minecraft/client/renderer/entity/TippableArrowRenderer/NORMAL_ARROW_LOCATION +FD: net/minecraft/client/renderer/entity/TippableArrowRenderer/f_116133_ net/minecraft/client/renderer/entity/TippableArrowRenderer/TIPPED_ARROW_LOCATION +FD: net/minecraft/client/renderer/entity/TntMinecartRenderer/f_234660_ net/minecraft/client/renderer/entity/TntMinecartRenderer/blockRenderer +FD: net/minecraft/client/renderer/entity/TntRenderer/f_234668_ net/minecraft/client/renderer/entity/TntRenderer/blockRenderer +FD: net/minecraft/client/renderer/entity/TropicalFishRenderer/f_116183_ net/minecraft/client/renderer/entity/TropicalFishRenderer/modelA +FD: net/minecraft/client/renderer/entity/TropicalFishRenderer/f_116184_ net/minecraft/client/renderer/entity/TropicalFishRenderer/modelB +FD: net/minecraft/client/renderer/entity/TropicalFishRenderer/f_262236_ net/minecraft/client/renderer/entity/TropicalFishRenderer/MODEL_B_TEXTURE +FD: net/minecraft/client/renderer/entity/TropicalFishRenderer/f_262282_ net/minecraft/client/renderer/entity/TropicalFishRenderer/MODEL_A_TEXTURE +FD: net/minecraft/client/renderer/entity/TropicalFishRenderer$1/f_262201_ net/minecraft/client/renderer/entity/TropicalFishRenderer$1/$SwitchMap$net$minecraft$world$entity$animal$TropicalFish$Base +FD: net/minecraft/client/renderer/entity/TurtleRenderer/f_116231_ net/minecraft/client/renderer/entity/TurtleRenderer/TURTLE_LOCATION +FD: net/minecraft/client/renderer/entity/UndeadHorseRenderer/f_116267_ net/minecraft/client/renderer/entity/UndeadHorseRenderer/MAP +FD: net/minecraft/client/renderer/entity/VexRenderer/f_116275_ net/minecraft/client/renderer/entity/VexRenderer/VEX_LOCATION +FD: net/minecraft/client/renderer/entity/VexRenderer/f_116276_ net/minecraft/client/renderer/entity/VexRenderer/VEX_CHARGING_LOCATION +FD: net/minecraft/client/renderer/entity/VillagerRenderer/f_116300_ net/minecraft/client/renderer/entity/VillagerRenderer/VILLAGER_BASE_SKIN +FD: net/minecraft/client/renderer/entity/VindicatorRenderer/f_116317_ net/minecraft/client/renderer/entity/VindicatorRenderer/VINDICATOR +FD: net/minecraft/client/renderer/entity/VindicatorRenderer$1/f_116325_ net/minecraft/client/renderer/entity/VindicatorRenderer$1/this$0 +FD: net/minecraft/client/renderer/entity/WanderingTraderRenderer/f_116362_ net/minecraft/client/renderer/entity/WanderingTraderRenderer/VILLAGER_BASE_SKIN +FD: net/minecraft/client/renderer/entity/WardenRenderer/f_234780_ net/minecraft/client/renderer/entity/WardenRenderer/TEXTURE +FD: net/minecraft/client/renderer/entity/WardenRenderer/f_234781_ net/minecraft/client/renderer/entity/WardenRenderer/BIOLUMINESCENT_LAYER_TEXTURE +FD: net/minecraft/client/renderer/entity/WardenRenderer/f_234782_ net/minecraft/client/renderer/entity/WardenRenderer/HEART_TEXTURE +FD: net/minecraft/client/renderer/entity/WardenRenderer/f_234783_ net/minecraft/client/renderer/entity/WardenRenderer/PULSATING_SPOTS_TEXTURE_1 +FD: net/minecraft/client/renderer/entity/WardenRenderer/f_234784_ net/minecraft/client/renderer/entity/WardenRenderer/PULSATING_SPOTS_TEXTURE_2 +FD: net/minecraft/client/renderer/entity/WitchRenderer/f_116378_ net/minecraft/client/renderer/entity/WitchRenderer/WITCH_LOCATION +FD: net/minecraft/client/renderer/entity/WitherBossRenderer/f_116422_ net/minecraft/client/renderer/entity/WitherBossRenderer/WITHER_INVULNERABLE_LOCATION +FD: net/minecraft/client/renderer/entity/WitherBossRenderer/f_116423_ net/minecraft/client/renderer/entity/WitherBossRenderer/WITHER_LOCATION +FD: net/minecraft/client/renderer/entity/WitherSkeletonRenderer/f_116445_ net/minecraft/client/renderer/entity/WitherSkeletonRenderer/WITHER_SKELETON_LOCATION +FD: net/minecraft/client/renderer/entity/WitherSkullRenderer/f_116463_ net/minecraft/client/renderer/entity/WitherSkullRenderer/WITHER_INVULNERABLE_LOCATION +FD: net/minecraft/client/renderer/entity/WitherSkullRenderer/f_116464_ net/minecraft/client/renderer/entity/WitherSkullRenderer/WITHER_LOCATION +FD: net/minecraft/client/renderer/entity/WitherSkullRenderer/f_116465_ net/minecraft/client/renderer/entity/WitherSkullRenderer/model +FD: net/minecraft/client/renderer/entity/WolfRenderer/f_116493_ net/minecraft/client/renderer/entity/WolfRenderer/WOLF_LOCATION +FD: net/minecraft/client/renderer/entity/WolfRenderer/f_116494_ net/minecraft/client/renderer/entity/WolfRenderer/WOLF_TAME_LOCATION +FD: net/minecraft/client/renderer/entity/WolfRenderer/f_116495_ net/minecraft/client/renderer/entity/WolfRenderer/WOLF_ANGRY_LOCATION +FD: net/minecraft/client/renderer/entity/ZoglinRenderer/f_116537_ net/minecraft/client/renderer/entity/ZoglinRenderer/ZOGLIN_LOCATION +FD: net/minecraft/client/renderer/entity/ZombieVillagerRenderer/f_116547_ net/minecraft/client/renderer/entity/ZombieVillagerRenderer/ZOMBIE_VILLAGER_LOCATION +FD: net/minecraft/client/renderer/entity/layers/ArrowLayer/f_116562_ net/minecraft/client/renderer/entity/layers/ArrowLayer/dispatcher +FD: net/minecraft/client/renderer/entity/layers/BeeStingerLayer/f_116577_ net/minecraft/client/renderer/entity/layers/BeeStingerLayer/BEE_STINGER_LOCATION +FD: net/minecraft/client/renderer/entity/layers/CarriedBlockLayer/f_234812_ net/minecraft/client/renderer/entity/layers/CarriedBlockLayer/blockRenderer +FD: net/minecraft/client/renderer/entity/layers/CatCollarLayer/f_116649_ net/minecraft/client/renderer/entity/layers/CatCollarLayer/CAT_COLLAR_LOCATION +FD: net/minecraft/client/renderer/entity/layers/CatCollarLayer/f_116650_ net/minecraft/client/renderer/entity/layers/CatCollarLayer/catModel +FD: net/minecraft/client/renderer/entity/layers/CreeperPowerLayer/f_116676_ net/minecraft/client/renderer/entity/layers/CreeperPowerLayer/POWER_LOCATION +FD: net/minecraft/client/renderer/entity/layers/CreeperPowerLayer/f_116677_ net/minecraft/client/renderer/entity/layers/CreeperPowerLayer/model +FD: net/minecraft/client/renderer/entity/layers/CrossedArmsItemLayer/f_234816_ net/minecraft/client/renderer/entity/layers/CrossedArmsItemLayer/itemInHandRenderer +FD: net/minecraft/client/renderer/entity/layers/CustomHeadLayer/f_116709_ net/minecraft/client/renderer/entity/layers/CustomHeadLayer/scaleX +FD: net/minecraft/client/renderer/entity/layers/CustomHeadLayer/f_116710_ net/minecraft/client/renderer/entity/layers/CustomHeadLayer/scaleY +FD: net/minecraft/client/renderer/entity/layers/CustomHeadLayer/f_116711_ net/minecraft/client/renderer/entity/layers/CustomHeadLayer/scaleZ +FD: net/minecraft/client/renderer/entity/layers/CustomHeadLayer/f_174473_ net/minecraft/client/renderer/entity/layers/CustomHeadLayer/skullModels +FD: net/minecraft/client/renderer/entity/layers/CustomHeadLayer/f_234820_ net/minecraft/client/renderer/entity/layers/CustomHeadLayer/itemInHandRenderer +FD: net/minecraft/client/renderer/entity/layers/DolphinCarryingItemLayer/f_234832_ net/minecraft/client/renderer/entity/layers/DolphinCarryingItemLayer/itemInHandRenderer +FD: net/minecraft/client/renderer/entity/layers/DrownedOuterLayer/f_116907_ net/minecraft/client/renderer/entity/layers/DrownedOuterLayer/DROWNED_OUTER_LAYER_LOCATION +FD: net/minecraft/client/renderer/entity/layers/DrownedOuterLayer/f_116908_ net/minecraft/client/renderer/entity/layers/DrownedOuterLayer/model +FD: net/minecraft/client/renderer/entity/layers/ElytraLayer/f_116934_ net/minecraft/client/renderer/entity/layers/ElytraLayer/WINGS_LOCATION +FD: net/minecraft/client/renderer/entity/layers/ElytraLayer/f_116935_ net/minecraft/client/renderer/entity/layers/ElytraLayer/elytraModel +FD: net/minecraft/client/renderer/entity/layers/EnderEyesLayer/f_116961_ net/minecraft/client/renderer/entity/layers/EnderEyesLayer/ENDERMAN_EYES +FD: net/minecraft/client/renderer/entity/layers/FoxHeldItemLayer/f_234836_ net/minecraft/client/renderer/entity/layers/FoxHeldItemLayer/itemInHandRenderer +FD: net/minecraft/client/renderer/entity/layers/HorseArmorLayer/f_117017_ net/minecraft/client/renderer/entity/layers/HorseArmorLayer/model +FD: net/minecraft/client/renderer/entity/layers/HorseMarkingLayer/f_117042_ net/minecraft/client/renderer/entity/layers/HorseMarkingLayer/LOCATION_BY_MARKINGS +FD: net/minecraft/client/renderer/entity/layers/HumanoidArmorLayer/f_117070_ net/minecraft/client/renderer/entity/layers/HumanoidArmorLayer/ARMOR_LOCATION_CACHE +FD: net/minecraft/client/renderer/entity/layers/HumanoidArmorLayer/f_117071_ net/minecraft/client/renderer/entity/layers/HumanoidArmorLayer/innerModel +FD: net/minecraft/client/renderer/entity/layers/HumanoidArmorLayer/f_117072_ net/minecraft/client/renderer/entity/layers/HumanoidArmorLayer/outerModel +FD: net/minecraft/client/renderer/entity/layers/HumanoidArmorLayer/f_266073_ net/minecraft/client/renderer/entity/layers/HumanoidArmorLayer/armorTrimAtlas +FD: net/minecraft/client/renderer/entity/layers/HumanoidArmorLayer$1/f_117130_ net/minecraft/client/renderer/entity/layers/HumanoidArmorLayer$1/$SwitchMap$net$minecraft$world$entity$EquipmentSlot +FD: net/minecraft/client/renderer/entity/layers/IronGolemCrackinessLayer/f_117132_ net/minecraft/client/renderer/entity/layers/IronGolemCrackinessLayer/resourceLocations +FD: net/minecraft/client/renderer/entity/layers/IronGolemFlowerLayer/f_234840_ net/minecraft/client/renderer/entity/layers/IronGolemFlowerLayer/blockRenderer +FD: net/minecraft/client/renderer/entity/layers/ItemInHandLayer/f_234844_ net/minecraft/client/renderer/entity/layers/ItemInHandLayer/itemInHandRenderer +FD: net/minecraft/client/renderer/entity/layers/LlamaDecorLayer/f_117214_ net/minecraft/client/renderer/entity/layers/LlamaDecorLayer/TEXTURE_LOCATION +FD: net/minecraft/client/renderer/entity/layers/LlamaDecorLayer/f_117215_ net/minecraft/client/renderer/entity/layers/LlamaDecorLayer/TRADER_LLAMA +FD: net/minecraft/client/renderer/entity/layers/LlamaDecorLayer/f_117216_ net/minecraft/client/renderer/entity/layers/LlamaDecorLayer/model +FD: net/minecraft/client/renderer/entity/layers/MushroomCowMushroomLayer/f_234848_ net/minecraft/client/renderer/entity/layers/MushroomCowMushroomLayer/blockRenderer +FD: net/minecraft/client/renderer/entity/layers/PandaHoldsItemLayer/f_234860_ net/minecraft/client/renderer/entity/layers/PandaHoldsItemLayer/itemInHandRenderer +FD: net/minecraft/client/renderer/entity/layers/ParrotOnShoulderLayer/f_117290_ net/minecraft/client/renderer/entity/layers/ParrotOnShoulderLayer/model +FD: net/minecraft/client/renderer/entity/layers/PhantomEyesLayer/f_117339_ net/minecraft/client/renderer/entity/layers/PhantomEyesLayer/PHANTOM_EYES +FD: net/minecraft/client/renderer/entity/layers/PlayerItemInHandLayer/f_174513_ net/minecraft/client/renderer/entity/layers/PlayerItemInHandLayer/X_ROT_MIN +FD: net/minecraft/client/renderer/entity/layers/PlayerItemInHandLayer/f_174514_ net/minecraft/client/renderer/entity/layers/PlayerItemInHandLayer/X_ROT_MAX +FD: net/minecraft/client/renderer/entity/layers/PlayerItemInHandLayer/f_234864_ net/minecraft/client/renderer/entity/layers/PlayerItemInHandLayer/itemInHandRenderer +FD: net/minecraft/client/renderer/entity/layers/RenderLayer/f_117344_ net/minecraft/client/renderer/entity/layers/RenderLayer/renderer +FD: net/minecraft/client/renderer/entity/layers/SaddleLayer/f_117387_ net/minecraft/client/renderer/entity/layers/SaddleLayer/textureLocation +FD: net/minecraft/client/renderer/entity/layers/SaddleLayer/f_117388_ net/minecraft/client/renderer/entity/layers/SaddleLayer/model +FD: net/minecraft/client/renderer/entity/layers/SheepFurLayer/f_117404_ net/minecraft/client/renderer/entity/layers/SheepFurLayer/SHEEP_FUR_LOCATION +FD: net/minecraft/client/renderer/entity/layers/SheepFurLayer/f_117405_ net/minecraft/client/renderer/entity/layers/SheepFurLayer/model +FD: net/minecraft/client/renderer/entity/layers/SlimeOuterLayer/f_117455_ net/minecraft/client/renderer/entity/layers/SlimeOuterLayer/model +FD: net/minecraft/client/renderer/entity/layers/SnowGolemHeadLayer/f_234868_ net/minecraft/client/renderer/entity/layers/SnowGolemHeadLayer/blockRenderer +FD: net/minecraft/client/renderer/entity/layers/SnowGolemHeadLayer/f_234869_ net/minecraft/client/renderer/entity/layers/SnowGolemHeadLayer/itemRenderer +FD: net/minecraft/client/renderer/entity/layers/SpiderEyesLayer/f_117504_ net/minecraft/client/renderer/entity/layers/SpiderEyesLayer/SPIDER_EYES +FD: net/minecraft/client/renderer/entity/layers/SpinAttackEffectLayer/f_117509_ net/minecraft/client/renderer/entity/layers/SpinAttackEffectLayer/TEXTURE +FD: net/minecraft/client/renderer/entity/layers/SpinAttackEffectLayer/f_117510_ net/minecraft/client/renderer/entity/layers/SpinAttackEffectLayer/box +FD: net/minecraft/client/renderer/entity/layers/SpinAttackEffectLayer/f_174538_ net/minecraft/client/renderer/entity/layers/SpinAttackEffectLayer/BOX +FD: net/minecraft/client/renderer/entity/layers/StrayClothingLayer/f_117536_ net/minecraft/client/renderer/entity/layers/StrayClothingLayer/STRAY_CLOTHES_LOCATION +FD: net/minecraft/client/renderer/entity/layers/StrayClothingLayer/f_117537_ net/minecraft/client/renderer/entity/layers/StrayClothingLayer/layerModel +FD: net/minecraft/client/renderer/entity/layers/TropicalFishPatternLayer/f_117596_ net/minecraft/client/renderer/entity/layers/TropicalFishPatternLayer/modelA +FD: net/minecraft/client/renderer/entity/layers/TropicalFishPatternLayer/f_117597_ net/minecraft/client/renderer/entity/layers/TropicalFishPatternLayer/modelB +FD: net/minecraft/client/renderer/entity/layers/TropicalFishPatternLayer/f_262197_ net/minecraft/client/renderer/entity/layers/TropicalFishPatternLayer/GLITTER_TEXTURE +FD: net/minecraft/client/renderer/entity/layers/TropicalFishPatternLayer/f_262199_ net/minecraft/client/renderer/entity/layers/TropicalFishPatternLayer/SUNSTREAK_TEXTURE +FD: net/minecraft/client/renderer/entity/layers/TropicalFishPatternLayer/f_262230_ net/minecraft/client/renderer/entity/layers/TropicalFishPatternLayer/CLAYFISH_TEXTURE +FD: net/minecraft/client/renderer/entity/layers/TropicalFishPatternLayer/f_262234_ net/minecraft/client/renderer/entity/layers/TropicalFishPatternLayer/SNOOPER_TEXTURE +FD: net/minecraft/client/renderer/entity/layers/TropicalFishPatternLayer/f_262260_ net/minecraft/client/renderer/entity/layers/TropicalFishPatternLayer/SPOTTY_TEXTURE +FD: net/minecraft/client/renderer/entity/layers/TropicalFishPatternLayer/f_262261_ net/minecraft/client/renderer/entity/layers/TropicalFishPatternLayer/BETTY_TEXTURE +FD: net/minecraft/client/renderer/entity/layers/TropicalFishPatternLayer/f_262267_ net/minecraft/client/renderer/entity/layers/TropicalFishPatternLayer/KOB_TEXTURE +FD: net/minecraft/client/renderer/entity/layers/TropicalFishPatternLayer/f_262270_ net/minecraft/client/renderer/entity/layers/TropicalFishPatternLayer/DASHER_TEXTURE +FD: net/minecraft/client/renderer/entity/layers/TropicalFishPatternLayer/f_262284_ net/minecraft/client/renderer/entity/layers/TropicalFishPatternLayer/BLOCKFISH_TEXTURE +FD: net/minecraft/client/renderer/entity/layers/TropicalFishPatternLayer/f_262290_ net/minecraft/client/renderer/entity/layers/TropicalFishPatternLayer/FLOPPER_TEXTURE +FD: net/minecraft/client/renderer/entity/layers/TropicalFishPatternLayer/f_262297_ net/minecraft/client/renderer/entity/layers/TropicalFishPatternLayer/STRIPEY_TEXTURE +FD: net/minecraft/client/renderer/entity/layers/TropicalFishPatternLayer/f_262298_ net/minecraft/client/renderer/entity/layers/TropicalFishPatternLayer/BRINELY_TEXTURE +FD: net/minecraft/client/renderer/entity/layers/TropicalFishPatternLayer$1/f_262220_ net/minecraft/client/renderer/entity/layers/TropicalFishPatternLayer$1/$SwitchMap$net$minecraft$world$entity$animal$TropicalFish$Base +FD: net/minecraft/client/renderer/entity/layers/TropicalFishPatternLayer$1/f_262237_ net/minecraft/client/renderer/entity/layers/TropicalFishPatternLayer$1/$SwitchMap$net$minecraft$world$entity$animal$TropicalFish$Pattern +FD: net/minecraft/client/renderer/entity/layers/VillagerProfessionLayer/f_117622_ net/minecraft/client/renderer/entity/layers/VillagerProfessionLayer/LEVEL_LOCATIONS +FD: net/minecraft/client/renderer/entity/layers/VillagerProfessionLayer/f_117623_ net/minecraft/client/renderer/entity/layers/VillagerProfessionLayer/typeHatCache +FD: net/minecraft/client/renderer/entity/layers/VillagerProfessionLayer/f_117624_ net/minecraft/client/renderer/entity/layers/VillagerProfessionLayer/professionHatCache +FD: net/minecraft/client/renderer/entity/layers/VillagerProfessionLayer/f_117625_ net/minecraft/client/renderer/entity/layers/VillagerProfessionLayer/resourceManager +FD: net/minecraft/client/renderer/entity/layers/VillagerProfessionLayer/f_117626_ net/minecraft/client/renderer/entity/layers/VillagerProfessionLayer/path +FD: net/minecraft/client/renderer/entity/layers/WardenEmissiveLayer/f_234881_ net/minecraft/client/renderer/entity/layers/WardenEmissiveLayer/texture +FD: net/minecraft/client/renderer/entity/layers/WardenEmissiveLayer/f_234882_ net/minecraft/client/renderer/entity/layers/WardenEmissiveLayer/alphaFunction +FD: net/minecraft/client/renderer/entity/layers/WardenEmissiveLayer/f_234883_ net/minecraft/client/renderer/entity/layers/WardenEmissiveLayer/drawSelector +FD: net/minecraft/client/renderer/entity/layers/WitherArmorLayer/f_117695_ net/minecraft/client/renderer/entity/layers/WitherArmorLayer/WITHER_ARMOR_LOCATION +FD: net/minecraft/client/renderer/entity/layers/WitherArmorLayer/f_117696_ net/minecraft/client/renderer/entity/layers/WitherArmorLayer/model +FD: net/minecraft/client/renderer/entity/layers/WolfCollarLayer/f_117704_ net/minecraft/client/renderer/entity/layers/WolfCollarLayer/WOLF_COLLAR_LOCATION +FD: net/minecraft/client/renderer/item/CompassItemPropertyFunction/f_234928_ net/minecraft/client/renderer/item/CompassItemPropertyFunction/DEFAULT_ROTATION +FD: net/minecraft/client/renderer/item/CompassItemPropertyFunction/f_234929_ net/minecraft/client/renderer/item/CompassItemPropertyFunction/compassTarget +FD: net/minecraft/client/renderer/item/CompassItemPropertyFunction/f_234930_ net/minecraft/client/renderer/item/CompassItemPropertyFunction/wobble +FD: net/minecraft/client/renderer/item/CompassItemPropertyFunction/f_234931_ net/minecraft/client/renderer/item/CompassItemPropertyFunction/wobbleRandom +FD: net/minecraft/client/renderer/item/CompassItemPropertyFunction$CompassWobble/f_234968_ net/minecraft/client/renderer/item/CompassItemPropertyFunction$CompassWobble/rotation +FD: net/minecraft/client/renderer/item/CompassItemPropertyFunction$CompassWobble/f_234969_ net/minecraft/client/renderer/item/CompassItemPropertyFunction$CompassWobble/deltaRotation +FD: net/minecraft/client/renderer/item/CompassItemPropertyFunction$CompassWobble/f_234970_ net/minecraft/client/renderer/item/CompassItemPropertyFunction$CompassWobble/lastUpdateTick +FD: net/minecraft/client/renderer/item/ItemProperties/f_117820_ net/minecraft/client/renderer/item/ItemProperties/GENERIC_PROPERTIES +FD: net/minecraft/client/renderer/item/ItemProperties/f_117821_ net/minecraft/client/renderer/item/ItemProperties/DAMAGED +FD: net/minecraft/client/renderer/item/ItemProperties/f_117822_ net/minecraft/client/renderer/item/ItemProperties/DAMAGE +FD: net/minecraft/client/renderer/item/ItemProperties/f_117823_ net/minecraft/client/renderer/item/ItemProperties/PROPERTY_DAMAGED +FD: net/minecraft/client/renderer/item/ItemProperties/f_117824_ net/minecraft/client/renderer/item/ItemProperties/PROPERTY_DAMAGE +FD: net/minecraft/client/renderer/item/ItemProperties/f_117825_ net/minecraft/client/renderer/item/ItemProperties/PROPERTIES +FD: net/minecraft/client/renderer/item/ItemProperties/f_174568_ net/minecraft/client/renderer/item/ItemProperties/TAG_CUSTOM_MODEL_DATA +FD: net/minecraft/client/renderer/item/ItemProperties$1/f_117899_ net/minecraft/client/renderer/item/ItemProperties$1/rotation +FD: net/minecraft/client/renderer/item/ItemProperties$1/f_117900_ net/minecraft/client/renderer/item/ItemProperties$1/rota +FD: net/minecraft/client/renderer/item/ItemProperties$1/f_117901_ net/minecraft/client/renderer/item/ItemProperties$1/lastUpdateTick +FD: net/minecraft/client/renderer/texture/AbstractTexture/f_117950_ net/minecraft/client/renderer/texture/AbstractTexture/id +FD: net/minecraft/client/renderer/texture/AbstractTexture/f_117951_ net/minecraft/client/renderer/texture/AbstractTexture/blur +FD: net/minecraft/client/renderer/texture/AbstractTexture/f_117952_ net/minecraft/client/renderer/texture/AbstractTexture/mipmap +FD: net/minecraft/client/renderer/texture/AbstractTexture/f_174680_ net/minecraft/client/renderer/texture/AbstractTexture/NOT_ASSIGNED +FD: net/minecraft/client/renderer/texture/DynamicTexture/f_117976_ net/minecraft/client/renderer/texture/DynamicTexture/LOGGER +FD: net/minecraft/client/renderer/texture/DynamicTexture/f_117977_ net/minecraft/client/renderer/texture/DynamicTexture/pixels +FD: net/minecraft/client/renderer/texture/HttpTexture/f_117993_ net/minecraft/client/renderer/texture/HttpTexture/LOGGER +FD: net/minecraft/client/renderer/texture/HttpTexture/f_117994_ net/minecraft/client/renderer/texture/HttpTexture/file +FD: net/minecraft/client/renderer/texture/HttpTexture/f_117995_ net/minecraft/client/renderer/texture/HttpTexture/urlString +FD: net/minecraft/client/renderer/texture/HttpTexture/f_117996_ net/minecraft/client/renderer/texture/HttpTexture/processLegacySkin +FD: net/minecraft/client/renderer/texture/HttpTexture/f_117997_ net/minecraft/client/renderer/texture/HttpTexture/onDownloaded +FD: net/minecraft/client/renderer/texture/HttpTexture/f_117998_ net/minecraft/client/renderer/texture/HttpTexture/future +FD: net/minecraft/client/renderer/texture/HttpTexture/f_117999_ net/minecraft/client/renderer/texture/HttpTexture/uploaded +FD: net/minecraft/client/renderer/texture/HttpTexture/f_181889_ net/minecraft/client/renderer/texture/HttpTexture/SKIN_WIDTH +FD: net/minecraft/client/renderer/texture/HttpTexture/f_181890_ net/minecraft/client/renderer/texture/HttpTexture/SKIN_HEIGHT +FD: net/minecraft/client/renderer/texture/HttpTexture/f_181891_ net/minecraft/client/renderer/texture/HttpTexture/LEGACY_SKIN_HEIGHT +FD: net/minecraft/client/renderer/texture/MipmapGenerator/f_118038_ net/minecraft/client/renderer/texture/MipmapGenerator/POW22 +FD: net/minecraft/client/renderer/texture/MipmapGenerator/f_174686_ net/minecraft/client/renderer/texture/MipmapGenerator/ALPHA_CUTOUT_CUTOFF +FD: net/minecraft/client/renderer/texture/MissingTextureAtlasSprite/f_118059_ net/minecraft/client/renderer/texture/MissingTextureAtlasSprite/MISSING_TEXTURE_LOCATION +FD: net/minecraft/client/renderer/texture/MissingTextureAtlasSprite/f_118060_ net/minecraft/client/renderer/texture/MissingTextureAtlasSprite/missingTexture +FD: net/minecraft/client/renderer/texture/MissingTextureAtlasSprite/f_174688_ net/minecraft/client/renderer/texture/MissingTextureAtlasSprite/MISSING_IMAGE_WIDTH +FD: net/minecraft/client/renderer/texture/MissingTextureAtlasSprite/f_174689_ net/minecraft/client/renderer/texture/MissingTextureAtlasSprite/MISSING_IMAGE_HEIGHT +FD: net/minecraft/client/renderer/texture/MissingTextureAtlasSprite/f_174690_ net/minecraft/client/renderer/texture/MissingTextureAtlasSprite/MISSING_TEXTURE_NAME +FD: net/minecraft/client/renderer/texture/MissingTextureAtlasSprite/f_244401_ net/minecraft/client/renderer/texture/MissingTextureAtlasSprite/EMPTY_ANIMATION_META +FD: net/minecraft/client/renderer/texture/OverlayTexture/f_118083_ net/minecraft/client/renderer/texture/OverlayTexture/NO_OVERLAY +FD: net/minecraft/client/renderer/texture/OverlayTexture/f_118084_ net/minecraft/client/renderer/texture/OverlayTexture/texture +FD: net/minecraft/client/renderer/texture/OverlayTexture/f_174691_ net/minecraft/client/renderer/texture/OverlayTexture/NO_WHITE_U +FD: net/minecraft/client/renderer/texture/OverlayTexture/f_174692_ net/minecraft/client/renderer/texture/OverlayTexture/RED_OVERLAY_V +FD: net/minecraft/client/renderer/texture/OverlayTexture/f_174693_ net/minecraft/client/renderer/texture/OverlayTexture/WHITE_OVERLAY_V +FD: net/minecraft/client/renderer/texture/OverlayTexture/f_174694_ net/minecraft/client/renderer/texture/OverlayTexture/SIZE +FD: net/minecraft/client/renderer/texture/PreloadedTexture/f_118100_ net/minecraft/client/renderer/texture/PreloadedTexture/future +FD: net/minecraft/client/renderer/texture/SimpleTexture/f_118129_ net/minecraft/client/renderer/texture/SimpleTexture/location +FD: net/minecraft/client/renderer/texture/SimpleTexture/f_118130_ net/minecraft/client/renderer/texture/SimpleTexture/LOGGER +FD: net/minecraft/client/renderer/texture/SimpleTexture$TextureImage/f_118146_ net/minecraft/client/renderer/texture/SimpleTexture$TextureImage/metadata +FD: net/minecraft/client/renderer/texture/SimpleTexture$TextureImage/f_118147_ net/minecraft/client/renderer/texture/SimpleTexture$TextureImage/image +FD: net/minecraft/client/renderer/texture/SimpleTexture$TextureImage/f_118148_ net/minecraft/client/renderer/texture/SimpleTexture$TextureImage/exception +FD: net/minecraft/client/renderer/texture/SpriteContents/f_243663_ net/minecraft/client/renderer/texture/SpriteContents/LOGGER +FD: net/minecraft/client/renderer/texture/SpriteContents/f_243731_ net/minecraft/client/renderer/texture/SpriteContents/byMipLevel +FD: net/minecraft/client/renderer/texture/SpriteContents/f_243877_ net/minecraft/client/renderer/texture/SpriteContents/name +FD: net/minecraft/client/renderer/texture/SpriteContents/f_243904_ net/minecraft/client/renderer/texture/SpriteContents/originalImage +FD: net/minecraft/client/renderer/texture/SpriteContents/f_244302_ net/minecraft/client/renderer/texture/SpriteContents/width +FD: net/minecraft/client/renderer/texture/SpriteContents/f_244575_ net/minecraft/client/renderer/texture/SpriteContents/animatedTexture +FD: net/minecraft/client/renderer/texture/SpriteContents/f_244600_ net/minecraft/client/renderer/texture/SpriteContents/height +FD: net/minecraft/client/renderer/texture/SpriteContents$AnimatedTexture/f_243714_ net/minecraft/client/renderer/texture/SpriteContents$AnimatedTexture/frames +FD: net/minecraft/client/renderer/texture/SpriteContents$AnimatedTexture/f_244229_ net/minecraft/client/renderer/texture/SpriteContents$AnimatedTexture/frameRowSize +FD: net/minecraft/client/renderer/texture/SpriteContents$AnimatedTexture/f_244317_ net/minecraft/client/renderer/texture/SpriteContents$AnimatedTexture/interpolateFrames +FD: net/minecraft/client/renderer/texture/SpriteContents$AnimatedTexture/f_244362_ net/minecraft/client/renderer/texture/SpriteContents$AnimatedTexture/this$0 +FD: net/minecraft/client/renderer/texture/SpriteContents$FrameInfo/f_243751_ net/minecraft/client/renderer/texture/SpriteContents$FrameInfo/index +FD: net/minecraft/client/renderer/texture/SpriteContents$FrameInfo/f_244553_ net/minecraft/client/renderer/texture/SpriteContents$FrameInfo/time +FD: net/minecraft/client/renderer/texture/SpriteContents$InterpolationData/f_244452_ net/minecraft/client/renderer/texture/SpriteContents$InterpolationData/this$0 +FD: net/minecraft/client/renderer/texture/SpriteContents$InterpolationData/f_244527_ net/minecraft/client/renderer/texture/SpriteContents$InterpolationData/activeFrame +FD: net/minecraft/client/renderer/texture/SpriteContents$Ticker/f_243791_ net/minecraft/client/renderer/texture/SpriteContents$Ticker/this$0 +FD: net/minecraft/client/renderer/texture/SpriteContents$Ticker/f_243921_ net/minecraft/client/renderer/texture/SpriteContents$Ticker/animationInfo +FD: net/minecraft/client/renderer/texture/SpriteContents$Ticker/f_244511_ net/minecraft/client/renderer/texture/SpriteContents$Ticker/subFrame +FD: net/minecraft/client/renderer/texture/SpriteContents$Ticker/f_244570_ net/minecraft/client/renderer/texture/SpriteContents$Ticker/interpolationData +FD: net/minecraft/client/renderer/texture/SpriteContents$Ticker/f_244631_ net/minecraft/client/renderer/texture/SpriteContents$Ticker/frame +FD: net/minecraft/client/renderer/texture/SpriteLoader/f_243676_ net/minecraft/client/renderer/texture/SpriteLoader/maxSupportedTextureSize +FD: net/minecraft/client/renderer/texture/SpriteLoader/f_244357_ net/minecraft/client/renderer/texture/SpriteLoader/LOGGER +FD: net/minecraft/client/renderer/texture/SpriteLoader/f_244500_ net/minecraft/client/renderer/texture/SpriteLoader/location +FD: net/minecraft/client/renderer/texture/SpriteLoader/f_276068_ net/minecraft/client/renderer/texture/SpriteLoader/minHeight +FD: net/minecraft/client/renderer/texture/SpriteLoader/f_276071_ net/minecraft/client/renderer/texture/SpriteLoader/minWidth +FD: net/minecraft/client/renderer/texture/SpriteLoader$Preparations/f_243669_ net/minecraft/client/renderer/texture/SpriteLoader$Preparations/width +FD: net/minecraft/client/renderer/texture/SpriteLoader$Preparations/f_243807_ net/minecraft/client/renderer/texture/SpriteLoader$Preparations/regions +FD: net/minecraft/client/renderer/texture/SpriteLoader$Preparations/f_243912_ net/minecraft/client/renderer/texture/SpriteLoader$Preparations/missing +FD: net/minecraft/client/renderer/texture/SpriteLoader$Preparations/f_244353_ net/minecraft/client/renderer/texture/SpriteLoader$Preparations/mipLevel +FD: net/minecraft/client/renderer/texture/SpriteLoader$Preparations/f_244415_ net/minecraft/client/renderer/texture/SpriteLoader$Preparations/readyForUpload +FD: net/minecraft/client/renderer/texture/SpriteLoader$Preparations/f_244632_ net/minecraft/client/renderer/texture/SpriteLoader$Preparations/height +FD: net/minecraft/client/renderer/texture/Stitcher/f_118161_ net/minecraft/client/renderer/texture/Stitcher/HOLDER_COMPARATOR +FD: net/minecraft/client/renderer/texture/Stitcher/f_118162_ net/minecraft/client/renderer/texture/Stitcher/mipLevel +FD: net/minecraft/client/renderer/texture/Stitcher/f_118163_ net/minecraft/client/renderer/texture/Stitcher/texturesToBeStitched +FD: net/minecraft/client/renderer/texture/Stitcher/f_118164_ net/minecraft/client/renderer/texture/Stitcher/storage +FD: net/minecraft/client/renderer/texture/Stitcher/f_118165_ net/minecraft/client/renderer/texture/Stitcher/storageX +FD: net/minecraft/client/renderer/texture/Stitcher/f_118166_ net/minecraft/client/renderer/texture/Stitcher/storageY +FD: net/minecraft/client/renderer/texture/Stitcher/f_118167_ net/minecraft/client/renderer/texture/Stitcher/maxWidth +FD: net/minecraft/client/renderer/texture/Stitcher/f_118168_ net/minecraft/client/renderer/texture/Stitcher/maxHeight +FD: net/minecraft/client/renderer/texture/Stitcher$Holder/f_118203_ net/minecraft/client/renderer/texture/Stitcher$Holder/width +FD: net/minecraft/client/renderer/texture/Stitcher$Holder/f_118204_ net/minecraft/client/renderer/texture/Stitcher$Holder/height +FD: net/minecraft/client/renderer/texture/Stitcher$Holder/f_244486_ net/minecraft/client/renderer/texture/Stitcher$Holder/entry +FD: net/minecraft/client/renderer/texture/Stitcher$Region/f_118209_ net/minecraft/client/renderer/texture/Stitcher$Region/originX +FD: net/minecraft/client/renderer/texture/Stitcher$Region/f_118210_ net/minecraft/client/renderer/texture/Stitcher$Region/originY +FD: net/minecraft/client/renderer/texture/Stitcher$Region/f_118211_ net/minecraft/client/renderer/texture/Stitcher$Region/width +FD: net/minecraft/client/renderer/texture/Stitcher$Region/f_118212_ net/minecraft/client/renderer/texture/Stitcher$Region/height +FD: net/minecraft/client/renderer/texture/Stitcher$Region/f_118213_ net/minecraft/client/renderer/texture/Stitcher$Region/subSlots +FD: net/minecraft/client/renderer/texture/Stitcher$Region/f_118214_ net/minecraft/client/renderer/texture/Stitcher$Region/holder +FD: net/minecraft/client/renderer/texture/StitcherException/f_118254_ net/minecraft/client/renderer/texture/StitcherException/allSprites +FD: net/minecraft/client/renderer/texture/TextureAtlas/f_118259_ net/minecraft/client/renderer/texture/TextureAtlas/LOCATION_BLOCKS +FD: net/minecraft/client/renderer/texture/TextureAtlas/f_118260_ net/minecraft/client/renderer/texture/TextureAtlas/LOCATION_PARTICLES +FD: net/minecraft/client/renderer/texture/TextureAtlas/f_118261_ net/minecraft/client/renderer/texture/TextureAtlas/LOGGER +FD: net/minecraft/client/renderer/texture/TextureAtlas/f_118262_ net/minecraft/client/renderer/texture/TextureAtlas/animatedTextures +FD: net/minecraft/client/renderer/texture/TextureAtlas/f_118263_ net/minecraft/client/renderer/texture/TextureAtlas/sprites +FD: net/minecraft/client/renderer/texture/TextureAtlas/f_118264_ net/minecraft/client/renderer/texture/TextureAtlas/texturesByName +FD: net/minecraft/client/renderer/texture/TextureAtlas/f_118265_ net/minecraft/client/renderer/texture/TextureAtlas/location +FD: net/minecraft/client/renderer/texture/TextureAtlas/f_118266_ net/minecraft/client/renderer/texture/TextureAtlas/maxSupportedTextureSize +FD: net/minecraft/client/renderer/texture/TextureAtlas/f_276067_ net/minecraft/client/renderer/texture/TextureAtlas/width +FD: net/minecraft/client/renderer/texture/TextureAtlas/f_276070_ net/minecraft/client/renderer/texture/TextureAtlas/height +FD: net/minecraft/client/renderer/texture/TextureAtlas/f_276072_ net/minecraft/client/renderer/texture/TextureAtlas/mipLevel +FD: net/minecraft/client/renderer/texture/TextureAtlasSprite/f_118349_ net/minecraft/client/renderer/texture/TextureAtlasSprite/x +FD: net/minecraft/client/renderer/texture/TextureAtlasSprite/f_118350_ net/minecraft/client/renderer/texture/TextureAtlasSprite/y +FD: net/minecraft/client/renderer/texture/TextureAtlasSprite/f_118351_ net/minecraft/client/renderer/texture/TextureAtlasSprite/u0 +FD: net/minecraft/client/renderer/texture/TextureAtlasSprite/f_118352_ net/minecraft/client/renderer/texture/TextureAtlasSprite/u1 +FD: net/minecraft/client/renderer/texture/TextureAtlasSprite/f_118353_ net/minecraft/client/renderer/texture/TextureAtlasSprite/v0 +FD: net/minecraft/client/renderer/texture/TextureAtlasSprite/f_118354_ net/minecraft/client/renderer/texture/TextureAtlasSprite/v1 +FD: net/minecraft/client/renderer/texture/TextureAtlasSprite/f_244141_ net/minecraft/client/renderer/texture/TextureAtlasSprite/atlasLocation +FD: net/minecraft/client/renderer/texture/TextureAtlasSprite/f_244165_ net/minecraft/client/renderer/texture/TextureAtlasSprite/contents +FD: net/minecraft/client/renderer/texture/TextureAtlasSprite$1/f_243752_ net/minecraft/client/renderer/texture/TextureAtlasSprite$1/val$ticker +FD: net/minecraft/client/renderer/texture/TextureAtlasSprite$1/f_243782_ net/minecraft/client/renderer/texture/TextureAtlasSprite$1/this$0 +FD: net/minecraft/client/renderer/texture/TextureManager/f_118466_ net/minecraft/client/renderer/texture/TextureManager/INTENTIONAL_MISSING_TEXTURE +FD: net/minecraft/client/renderer/texture/TextureManager/f_118467_ net/minecraft/client/renderer/texture/TextureManager/LOGGER +FD: net/minecraft/client/renderer/texture/TextureManager/f_118468_ net/minecraft/client/renderer/texture/TextureManager/byPath +FD: net/minecraft/client/renderer/texture/TextureManager/f_118469_ net/minecraft/client/renderer/texture/TextureManager/tickableTextures +FD: net/minecraft/client/renderer/texture/TextureManager/f_118470_ net/minecraft/client/renderer/texture/TextureManager/prefixRegister +FD: net/minecraft/client/renderer/texture/TextureManager/f_118471_ net/minecraft/client/renderer/texture/TextureManager/resourceManager +FD: net/minecraft/client/renderer/texture/atlas/SpriteResourceLoader/f_260445_ net/minecraft/client/renderer/texture/atlas/SpriteResourceLoader/ATLAS_INFO_CONVERTER +FD: net/minecraft/client/renderer/texture/atlas/SpriteResourceLoader/f_260482_ net/minecraft/client/renderer/texture/atlas/SpriteResourceLoader/LOGGER +FD: net/minecraft/client/renderer/texture/atlas/SpriteResourceLoader/f_260697_ net/minecraft/client/renderer/texture/atlas/SpriteResourceLoader/sources +FD: net/minecraft/client/renderer/texture/atlas/SpriteResourceLoader$1/f_260443_ net/minecraft/client/renderer/texture/atlas/SpriteResourceLoader$1/val$sprites +FD: net/minecraft/client/renderer/texture/atlas/SpriteResourceLoader$1/f_260614_ net/minecraft/client/renderer/texture/atlas/SpriteResourceLoader$1/this$0 +FD: net/minecraft/client/renderer/texture/atlas/SpriteSource/f_266012_ net/minecraft/client/renderer/texture/atlas/SpriteSource/TEXTURE_ID_CONVERTER +FD: net/minecraft/client/renderer/texture/atlas/SpriteSourceType/f_260449_ net/minecraft/client/renderer/texture/atlas/SpriteSourceType/codec +FD: net/minecraft/client/renderer/texture/atlas/SpriteSources/f_260457_ net/minecraft/client/renderer/texture/atlas/SpriteSources/SINGLE_FILE +FD: net/minecraft/client/renderer/texture/atlas/SpriteSources/f_260490_ net/minecraft/client/renderer/texture/atlas/SpriteSources/DIRECTORY +FD: net/minecraft/client/renderer/texture/atlas/SpriteSources/f_260500_ net/minecraft/client/renderer/texture/atlas/SpriteSources/CODEC +FD: net/minecraft/client/renderer/texture/atlas/SpriteSources/f_260540_ net/minecraft/client/renderer/texture/atlas/SpriteSources/TYPE_CODEC +FD: net/minecraft/client/renderer/texture/atlas/SpriteSources/f_260546_ net/minecraft/client/renderer/texture/atlas/SpriteSources/UNSTITCHER +FD: net/minecraft/client/renderer/texture/atlas/SpriteSources/f_260548_ net/minecraft/client/renderer/texture/atlas/SpriteSources/TYPES +FD: net/minecraft/client/renderer/texture/atlas/SpriteSources/f_260551_ net/minecraft/client/renderer/texture/atlas/SpriteSources/FILE_CODEC +FD: net/minecraft/client/renderer/texture/atlas/SpriteSources/f_260627_ net/minecraft/client/renderer/texture/atlas/SpriteSources/FILTER +FD: net/minecraft/client/renderer/texture/atlas/SpriteSources/f_266099_ net/minecraft/client/renderer/texture/atlas/SpriteSources/PALETTED_PERMUTATIONS +FD: net/minecraft/client/renderer/texture/atlas/sources/DirectoryLister/f_260442_ net/minecraft/client/renderer/texture/atlas/sources/DirectoryLister/sourcePath +FD: net/minecraft/client/renderer/texture/atlas/sources/DirectoryLister/f_260464_ net/minecraft/client/renderer/texture/atlas/sources/DirectoryLister/idPrefix +FD: net/minecraft/client/renderer/texture/atlas/sources/DirectoryLister/f_260655_ net/minecraft/client/renderer/texture/atlas/sources/DirectoryLister/CODEC +FD: net/minecraft/client/renderer/texture/atlas/sources/LazyLoadedImage/f_265874_ net/minecraft/client/renderer/texture/atlas/sources/LazyLoadedImage/id +FD: net/minecraft/client/renderer/texture/atlas/sources/LazyLoadedImage/f_265889_ net/minecraft/client/renderer/texture/atlas/sources/LazyLoadedImage/resource +FD: net/minecraft/client/renderer/texture/atlas/sources/LazyLoadedImage/f_266070_ net/minecraft/client/renderer/texture/atlas/sources/LazyLoadedImage/image +FD: net/minecraft/client/renderer/texture/atlas/sources/LazyLoadedImage/f_266109_ net/minecraft/client/renderer/texture/atlas/sources/LazyLoadedImage/referenceCount +FD: net/minecraft/client/renderer/texture/atlas/sources/PalettedPermutations/f_265853_ net/minecraft/client/renderer/texture/atlas/sources/PalettedPermutations/LOGGER +FD: net/minecraft/client/renderer/texture/atlas/sources/PalettedPermutations/f_265884_ net/minecraft/client/renderer/texture/atlas/sources/PalettedPermutations/paletteKey +FD: net/minecraft/client/renderer/texture/atlas/sources/PalettedPermutations/f_265956_ net/minecraft/client/renderer/texture/atlas/sources/PalettedPermutations/textures +FD: net/minecraft/client/renderer/texture/atlas/sources/PalettedPermutations/f_266003_ net/minecraft/client/renderer/texture/atlas/sources/PalettedPermutations/permutations +FD: net/minecraft/client/renderer/texture/atlas/sources/PalettedPermutations/f_266028_ net/minecraft/client/renderer/texture/atlas/sources/PalettedPermutations/CODEC +FD: net/minecraft/client/renderer/texture/atlas/sources/PalettedPermutations$PalettedSpriteSupplier/f_265892_ net/minecraft/client/renderer/texture/atlas/sources/PalettedPermutations$PalettedSpriteSupplier/permutationLocation +FD: net/minecraft/client/renderer/texture/atlas/sources/PalettedPermutations$PalettedSpriteSupplier/f_266004_ net/minecraft/client/renderer/texture/atlas/sources/PalettedPermutations$PalettedSpriteSupplier/baseImage +FD: net/minecraft/client/renderer/texture/atlas/sources/PalettedPermutations$PalettedSpriteSupplier/f_266059_ net/minecraft/client/renderer/texture/atlas/sources/PalettedPermutations$PalettedSpriteSupplier/palette +FD: net/minecraft/client/renderer/texture/atlas/sources/SingleFile/f_260456_ net/minecraft/client/renderer/texture/atlas/sources/SingleFile/resourceId +FD: net/minecraft/client/renderer/texture/atlas/sources/SingleFile/f_260566_ net/minecraft/client/renderer/texture/atlas/sources/SingleFile/LOGGER +FD: net/minecraft/client/renderer/texture/atlas/sources/SingleFile/f_260609_ net/minecraft/client/renderer/texture/atlas/sources/SingleFile/CODEC +FD: net/minecraft/client/renderer/texture/atlas/sources/SingleFile/f_260731_ net/minecraft/client/renderer/texture/atlas/sources/SingleFile/spriteId +FD: net/minecraft/client/renderer/texture/atlas/sources/SourceFilter/f_260515_ net/minecraft/client/renderer/texture/atlas/sources/SourceFilter/CODEC +FD: net/minecraft/client/renderer/texture/atlas/sources/SourceFilter/f_260543_ net/minecraft/client/renderer/texture/atlas/sources/SourceFilter/filter +FD: net/minecraft/client/renderer/texture/atlas/sources/Unstitcher/f_260484_ net/minecraft/client/renderer/texture/atlas/sources/Unstitcher/CODEC +FD: net/minecraft/client/renderer/texture/atlas/sources/Unstitcher/f_260518_ net/minecraft/client/renderer/texture/atlas/sources/Unstitcher/xDivisor +FD: net/minecraft/client/renderer/texture/atlas/sources/Unstitcher/f_260559_ net/minecraft/client/renderer/texture/atlas/sources/Unstitcher/resource +FD: net/minecraft/client/renderer/texture/atlas/sources/Unstitcher/f_260565_ net/minecraft/client/renderer/texture/atlas/sources/Unstitcher/regions +FD: net/minecraft/client/renderer/texture/atlas/sources/Unstitcher/f_260650_ net/minecraft/client/renderer/texture/atlas/sources/Unstitcher/yDivisor +FD: net/minecraft/client/renderer/texture/atlas/sources/Unstitcher/f_260712_ net/minecraft/client/renderer/texture/atlas/sources/Unstitcher/LOGGER +FD: net/minecraft/client/renderer/texture/atlas/sources/Unstitcher$Region/f_260480_ net/minecraft/client/renderer/texture/atlas/sources/Unstitcher$Region/y +FD: net/minecraft/client/renderer/texture/atlas/sources/Unstitcher$Region/f_260527_ net/minecraft/client/renderer/texture/atlas/sources/Unstitcher$Region/CODEC +FD: net/minecraft/client/renderer/texture/atlas/sources/Unstitcher$Region/f_260547_ net/minecraft/client/renderer/texture/atlas/sources/Unstitcher$Region/x +FD: net/minecraft/client/renderer/texture/atlas/sources/Unstitcher$Region/f_260568_ net/minecraft/client/renderer/texture/atlas/sources/Unstitcher$Region/sprite +FD: net/minecraft/client/renderer/texture/atlas/sources/Unstitcher$Region/f_260610_ net/minecraft/client/renderer/texture/atlas/sources/Unstitcher$Region/height +FD: net/minecraft/client/renderer/texture/atlas/sources/Unstitcher$Region/f_260701_ net/minecraft/client/renderer/texture/atlas/sources/Unstitcher$Region/width +FD: net/minecraft/client/renderer/texture/atlas/sources/Unstitcher$RegionInstance/f_260587_ net/minecraft/client/renderer/texture/atlas/sources/Unstitcher$RegionInstance/image +FD: net/minecraft/client/renderer/texture/atlas/sources/Unstitcher$RegionInstance/f_260604_ net/minecraft/client/renderer/texture/atlas/sources/Unstitcher$RegionInstance/xDivisor +FD: net/minecraft/client/renderer/texture/atlas/sources/Unstitcher$RegionInstance/f_260617_ net/minecraft/client/renderer/texture/atlas/sources/Unstitcher$RegionInstance/yDivisor +FD: net/minecraft/client/renderer/texture/atlas/sources/Unstitcher$RegionInstance/f_260703_ net/minecraft/client/renderer/texture/atlas/sources/Unstitcher$RegionInstance/region +FD: net/minecraft/client/resources/ClientPackSource/f_243857_ net/minecraft/client/resources/ClientPackSource/VANILLA_NAME +FD: net/minecraft/client/resources/ClientPackSource/f_244267_ net/minecraft/client/resources/ClientPackSource/externalAssetDir +FD: net/minecraft/client/resources/ClientPackSource/f_244290_ net/minecraft/client/resources/ClientPackSource/PACKS_DIR +FD: net/minecraft/client/resources/ClientPackSource/f_244333_ net/minecraft/client/resources/ClientPackSource/BUILT_IN_METADATA +FD: net/minecraft/client/resources/ClientPackSource/f_244347_ net/minecraft/client/resources/ClientPackSource/VERSION_METADATA_SECTION +FD: net/minecraft/client/resources/ClientPackSource/f_244581_ net/minecraft/client/resources/ClientPackSource/SPECIAL_PACK_NAMES +FD: net/minecraft/client/resources/ClientPackSource/f_273850_ net/minecraft/client/resources/ClientPackSource/HIGH_CONTRAST_PACK +FD: net/minecraft/client/resources/DefaultPlayerSkin/f_257041_ net/minecraft/client/resources/DefaultPlayerSkin/DEFAULT_SKINS +FD: net/minecraft/client/resources/DefaultPlayerSkin$ModelType/$VALUES net/minecraft/client/resources/DefaultPlayerSkin$ModelType/$VALUES +FD: net/minecraft/client/resources/DefaultPlayerSkin$ModelType/SLIM net/minecraft/client/resources/DefaultPlayerSkin$ModelType/SLIM +FD: net/minecraft/client/resources/DefaultPlayerSkin$ModelType/WIDE net/minecraft/client/resources/DefaultPlayerSkin$ModelType/WIDE +FD: net/minecraft/client/resources/DefaultPlayerSkin$ModelType/f_256945_ net/minecraft/client/resources/DefaultPlayerSkin$ModelType/id +FD: net/minecraft/client/resources/DefaultPlayerSkin$SkinType/f_256814_ net/minecraft/client/resources/DefaultPlayerSkin$SkinType/texture +FD: net/minecraft/client/resources/DefaultPlayerSkin$SkinType/f_256901_ net/minecraft/client/resources/DefaultPlayerSkin$SkinType/model +FD: net/minecraft/client/resources/DownloadedPackSource/f_243667_ net/minecraft/client/resources/DownloadedPackSource/LOGGER +FD: net/minecraft/client/resources/DownloadedPackSource/f_243680_ net/minecraft/client/resources/DownloadedPackSource/currentDownload +FD: net/minecraft/client/resources/DownloadedPackSource/f_243735_ net/minecraft/client/resources/DownloadedPackSource/MAX_PACK_SIZE_BYTES +FD: net/minecraft/client/resources/DownloadedPackSource/f_243792_ net/minecraft/client/resources/DownloadedPackSource/SERVER_NAME +FD: net/minecraft/client/resources/DownloadedPackSource/f_244023_ net/minecraft/client/resources/DownloadedPackSource/APPLYING_PACK_TEXT +FD: net/minecraft/client/resources/DownloadedPackSource/f_244074_ net/minecraft/client/resources/DownloadedPackSource/serverPackDir +FD: net/minecraft/client/resources/DownloadedPackSource/f_244082_ net/minecraft/client/resources/DownloadedPackSource/serverPack +FD: net/minecraft/client/resources/DownloadedPackSource/f_244475_ net/minecraft/client/resources/DownloadedPackSource/SERVER_ID +FD: net/minecraft/client/resources/DownloadedPackSource/f_244551_ net/minecraft/client/resources/DownloadedPackSource/SHA1 +FD: net/minecraft/client/resources/DownloadedPackSource/f_244572_ net/minecraft/client/resources/DownloadedPackSource/downloadLock +FD: net/minecraft/client/resources/DownloadedPackSource/f_244627_ net/minecraft/client/resources/DownloadedPackSource/MAX_KEPT_PACKS +FD: net/minecraft/client/resources/FoliageColorReloadListener/f_118656_ net/minecraft/client/resources/FoliageColorReloadListener/LOCATION +FD: net/minecraft/client/resources/GrassColorReloadListener/f_118673_ net/minecraft/client/resources/GrassColorReloadListener/LOCATION +FD: net/minecraft/client/resources/IndexedAssetSource/f_244445_ net/minecraft/client/resources/IndexedAssetSource/LOGGER +FD: net/minecraft/client/resources/IndexedAssetSource/f_244611_ net/minecraft/client/resources/IndexedAssetSource/PATH_SPLITTER +FD: net/minecraft/client/resources/PaintingTextureManager/f_118799_ net/minecraft/client/resources/PaintingTextureManager/BACK_SPRITE_LOCATION +FD: net/minecraft/client/resources/SkinManager/f_118807_ net/minecraft/client/resources/SkinManager/textureManager +FD: net/minecraft/client/resources/SkinManager/f_118808_ net/minecraft/client/resources/SkinManager/skinsDirectory +FD: net/minecraft/client/resources/SkinManager/f_118809_ net/minecraft/client/resources/SkinManager/sessionService +FD: net/minecraft/client/resources/SkinManager/f_118810_ net/minecraft/client/resources/SkinManager/insecureSkinCache +FD: net/minecraft/client/resources/SkinManager/f_174841_ net/minecraft/client/resources/SkinManager/PROPERTY_TEXTURES +FD: net/minecraft/client/resources/SkinManager$1/f_118847_ net/minecraft/client/resources/SkinManager$1/val$sessionService +FD: net/minecraft/client/resources/SkinManager$1/f_118848_ net/minecraft/client/resources/SkinManager$1/this$0 +FD: net/minecraft/client/resources/SkinManager$2/f_242484_ net/minecraft/client/resources/SkinManager$2/$SwitchMap$com$mojang$authlib$minecraft$MinecraftProfileTexture$Type +FD: net/minecraft/client/resources/SplashManager/f_118860_ net/minecraft/client/resources/SplashManager/SPLASHES_LOCATION +FD: net/minecraft/client/resources/SplashManager/f_118861_ net/minecraft/client/resources/SplashManager/RANDOM +FD: net/minecraft/client/resources/SplashManager/f_118862_ net/minecraft/client/resources/SplashManager/splashes +FD: net/minecraft/client/resources/SplashManager/f_118863_ net/minecraft/client/resources/SplashManager/user +FD: net/minecraft/client/resources/TextureAtlasHolder/f_118884_ net/minecraft/client/resources/TextureAtlasHolder/textureAtlas +FD: net/minecraft/client/resources/TextureAtlasHolder/f_260648_ net/minecraft/client/resources/TextureAtlasHolder/atlasInfoLocation +FD: net/minecraft/client/resources/language/ClientLanguage/f_118909_ net/minecraft/client/resources/language/ClientLanguage/LOGGER +FD: net/minecraft/client/resources/language/ClientLanguage/f_118910_ net/minecraft/client/resources/language/ClientLanguage/storage +FD: net/minecraft/client/resources/language/ClientLanguage/f_118911_ net/minecraft/client/resources/language/ClientLanguage/defaultRightToLeft +FD: net/minecraft/client/resources/language/I18n/f_118934_ net/minecraft/client/resources/language/I18n/language +FD: net/minecraft/client/resources/language/LanguageInfo/f_118944_ net/minecraft/client/resources/language/LanguageInfo/region +FD: net/minecraft/client/resources/language/LanguageInfo/f_118945_ net/minecraft/client/resources/language/LanguageInfo/name +FD: net/minecraft/client/resources/language/LanguageInfo/f_118946_ net/minecraft/client/resources/language/LanguageInfo/bidirectional +FD: net/minecraft/client/resources/language/LanguageInfo/f_263742_ net/minecraft/client/resources/language/LanguageInfo/CODEC +FD: net/minecraft/client/resources/language/LanguageManager/f_118964_ net/minecraft/client/resources/language/LanguageManager/LOGGER +FD: net/minecraft/client/resources/language/LanguageManager/f_118965_ net/minecraft/client/resources/language/LanguageManager/DEFAULT_LANGUAGE +FD: net/minecraft/client/resources/language/LanguageManager/f_118966_ net/minecraft/client/resources/language/LanguageManager/languages +FD: net/minecraft/client/resources/language/LanguageManager/f_118967_ net/minecraft/client/resources/language/LanguageManager/currentCode +FD: net/minecraft/client/resources/language/LanguageManager/f_174854_ net/minecraft/client/resources/language/LanguageManager/DEFAULT_LANGUAGE_CODE +FD: net/minecraft/client/resources/metadata/animation/AnimationFrame/f_119001_ net/minecraft/client/resources/metadata/animation/AnimationFrame/index +FD: net/minecraft/client/resources/metadata/animation/AnimationFrame/f_119002_ net/minecraft/client/resources/metadata/animation/AnimationFrame/time +FD: net/minecraft/client/resources/metadata/animation/AnimationFrame/f_174855_ net/minecraft/client/resources/metadata/animation/AnimationFrame/UNKNOWN_FRAME_TIME +FD: net/minecraft/client/resources/metadata/animation/AnimationMetadataSection/f_119011_ net/minecraft/client/resources/metadata/animation/AnimationMetadataSection/SERIALIZER +FD: net/minecraft/client/resources/metadata/animation/AnimationMetadataSection/f_119012_ net/minecraft/client/resources/metadata/animation/AnimationMetadataSection/EMPTY +FD: net/minecraft/client/resources/metadata/animation/AnimationMetadataSection/f_119013_ net/minecraft/client/resources/metadata/animation/AnimationMetadataSection/frames +FD: net/minecraft/client/resources/metadata/animation/AnimationMetadataSection/f_119014_ net/minecraft/client/resources/metadata/animation/AnimationMetadataSection/frameWidth +FD: net/minecraft/client/resources/metadata/animation/AnimationMetadataSection/f_119015_ net/minecraft/client/resources/metadata/animation/AnimationMetadataSection/frameHeight +FD: net/minecraft/client/resources/metadata/animation/AnimationMetadataSection/f_119016_ net/minecraft/client/resources/metadata/animation/AnimationMetadataSection/defaultFrameTime +FD: net/minecraft/client/resources/metadata/animation/AnimationMetadataSection/f_119017_ net/minecraft/client/resources/metadata/animation/AnimationMetadataSection/interpolatedFrames +FD: net/minecraft/client/resources/metadata/animation/AnimationMetadataSection/f_174858_ net/minecraft/client/resources/metadata/animation/AnimationMetadataSection/SECTION_NAME +FD: net/minecraft/client/resources/metadata/animation/AnimationMetadataSection/f_174859_ net/minecraft/client/resources/metadata/animation/AnimationMetadataSection/DEFAULT_FRAME_TIME +FD: net/minecraft/client/resources/metadata/animation/AnimationMetadataSection/f_174860_ net/minecraft/client/resources/metadata/animation/AnimationMetadataSection/UNKNOWN_SIZE +FD: net/minecraft/client/resources/metadata/animation/FrameSize/f_244129_ net/minecraft/client/resources/metadata/animation/FrameSize/width +FD: net/minecraft/client/resources/metadata/animation/FrameSize/f_244503_ net/minecraft/client/resources/metadata/animation/FrameSize/height +FD: net/minecraft/client/resources/metadata/animation/VillagerMetaDataSection/f_119065_ net/minecraft/client/resources/metadata/animation/VillagerMetaDataSection/SERIALIZER +FD: net/minecraft/client/resources/metadata/animation/VillagerMetaDataSection/f_119066_ net/minecraft/client/resources/metadata/animation/VillagerMetaDataSection/hat +FD: net/minecraft/client/resources/metadata/animation/VillagerMetaDataSection/f_174866_ net/minecraft/client/resources/metadata/animation/VillagerMetaDataSection/SECTION_NAME +FD: net/minecraft/client/resources/metadata/animation/VillagerMetaDataSection$Hat/$VALUES net/minecraft/client/resources/metadata/animation/VillagerMetaDataSection$Hat/$VALUES +FD: net/minecraft/client/resources/metadata/animation/VillagerMetaDataSection$Hat/FULL net/minecraft/client/resources/metadata/animation/VillagerMetaDataSection$Hat/FULL +FD: net/minecraft/client/resources/metadata/animation/VillagerMetaDataSection$Hat/NONE net/minecraft/client/resources/metadata/animation/VillagerMetaDataSection$Hat/NONE +FD: net/minecraft/client/resources/metadata/animation/VillagerMetaDataSection$Hat/PARTIAL net/minecraft/client/resources/metadata/animation/VillagerMetaDataSection$Hat/PARTIAL +FD: net/minecraft/client/resources/metadata/animation/VillagerMetaDataSection$Hat/f_119074_ net/minecraft/client/resources/metadata/animation/VillagerMetaDataSection$Hat/BY_NAME +FD: net/minecraft/client/resources/metadata/animation/VillagerMetaDataSection$Hat/f_119075_ net/minecraft/client/resources/metadata/animation/VillagerMetaDataSection$Hat/name +FD: net/minecraft/client/resources/metadata/language/LanguageMetadataSection/f_119097_ net/minecraft/client/resources/metadata/language/LanguageMetadataSection/languages +FD: net/minecraft/client/resources/metadata/language/LanguageMetadataSection/f_263724_ net/minecraft/client/resources/metadata/language/LanguageMetadataSection/TYPE +FD: net/minecraft/client/resources/metadata/language/LanguageMetadataSection/f_263762_ net/minecraft/client/resources/metadata/language/LanguageMetadataSection/CODEC +FD: net/minecraft/client/resources/metadata/language/LanguageMetadataSection/f_263769_ net/minecraft/client/resources/metadata/language/LanguageMetadataSection/LANGUAGE_CODE_CODEC +FD: net/minecraft/client/resources/metadata/texture/TextureMetadataSection/f_119108_ net/minecraft/client/resources/metadata/texture/TextureMetadataSection/SERIALIZER +FD: net/minecraft/client/resources/metadata/texture/TextureMetadataSection/f_119109_ net/minecraft/client/resources/metadata/texture/TextureMetadataSection/blur +FD: net/minecraft/client/resources/metadata/texture/TextureMetadataSection/f_119110_ net/minecraft/client/resources/metadata/texture/TextureMetadataSection/clamp +FD: net/minecraft/client/resources/metadata/texture/TextureMetadataSection/f_174870_ net/minecraft/client/resources/metadata/texture/TextureMetadataSection/DEFAULT_BLUR +FD: net/minecraft/client/resources/metadata/texture/TextureMetadataSection/f_174871_ net/minecraft/client/resources/metadata/texture/TextureMetadataSection/DEFAULT_CLAMP +FD: net/minecraft/client/resources/model/AtlasSet/f_244518_ net/minecraft/client/resources/model/AtlasSet/atlases +FD: net/minecraft/client/resources/model/AtlasSet$AtlasEntry/f_244361_ net/minecraft/client/resources/model/AtlasSet$AtlasEntry/atlas +FD: net/minecraft/client/resources/model/AtlasSet$AtlasEntry/f_260723_ net/minecraft/client/resources/model/AtlasSet$AtlasEntry/atlasInfoLocation +FD: net/minecraft/client/resources/model/AtlasSet$StitchResult/f_244080_ net/minecraft/client/resources/model/AtlasSet$StitchResult/atlas +FD: net/minecraft/client/resources/model/AtlasSet$StitchResult/f_244211_ net/minecraft/client/resources/model/AtlasSet$StitchResult/preparations +FD: net/minecraft/client/resources/model/BlockModelRotation/$VALUES net/minecraft/client/resources/model/BlockModelRotation/$VALUES +FD: net/minecraft/client/resources/model/BlockModelRotation/X0_Y0 net/minecraft/client/resources/model/BlockModelRotation/X0_Y0 +FD: net/minecraft/client/resources/model/BlockModelRotation/X0_Y180 net/minecraft/client/resources/model/BlockModelRotation/X0_Y180 +FD: net/minecraft/client/resources/model/BlockModelRotation/X0_Y270 net/minecraft/client/resources/model/BlockModelRotation/X0_Y270 +FD: net/minecraft/client/resources/model/BlockModelRotation/X0_Y90 net/minecraft/client/resources/model/BlockModelRotation/X0_Y90 +FD: net/minecraft/client/resources/model/BlockModelRotation/X180_Y0 net/minecraft/client/resources/model/BlockModelRotation/X180_Y0 +FD: net/minecraft/client/resources/model/BlockModelRotation/X180_Y180 net/minecraft/client/resources/model/BlockModelRotation/X180_Y180 +FD: net/minecraft/client/resources/model/BlockModelRotation/X180_Y270 net/minecraft/client/resources/model/BlockModelRotation/X180_Y270 +FD: net/minecraft/client/resources/model/BlockModelRotation/X180_Y90 net/minecraft/client/resources/model/BlockModelRotation/X180_Y90 +FD: net/minecraft/client/resources/model/BlockModelRotation/X270_Y0 net/minecraft/client/resources/model/BlockModelRotation/X270_Y0 +FD: net/minecraft/client/resources/model/BlockModelRotation/X270_Y180 net/minecraft/client/resources/model/BlockModelRotation/X270_Y180 +FD: net/minecraft/client/resources/model/BlockModelRotation/X270_Y270 net/minecraft/client/resources/model/BlockModelRotation/X270_Y270 +FD: net/minecraft/client/resources/model/BlockModelRotation/X270_Y90 net/minecraft/client/resources/model/BlockModelRotation/X270_Y90 +FD: net/minecraft/client/resources/model/BlockModelRotation/X90_Y0 net/minecraft/client/resources/model/BlockModelRotation/X90_Y0 +FD: net/minecraft/client/resources/model/BlockModelRotation/X90_Y180 net/minecraft/client/resources/model/BlockModelRotation/X90_Y180 +FD: net/minecraft/client/resources/model/BlockModelRotation/X90_Y270 net/minecraft/client/resources/model/BlockModelRotation/X90_Y270 +FD: net/minecraft/client/resources/model/BlockModelRotation/X90_Y90 net/minecraft/client/resources/model/BlockModelRotation/X90_Y90 +FD: net/minecraft/client/resources/model/BlockModelRotation/f_119142_ net/minecraft/client/resources/model/BlockModelRotation/BY_INDEX +FD: net/minecraft/client/resources/model/BlockModelRotation/f_119143_ net/minecraft/client/resources/model/BlockModelRotation/transformation +FD: net/minecraft/client/resources/model/BlockModelRotation/f_119144_ net/minecraft/client/resources/model/BlockModelRotation/actualRotation +FD: net/minecraft/client/resources/model/BlockModelRotation/f_119145_ net/minecraft/client/resources/model/BlockModelRotation/index +FD: net/minecraft/client/resources/model/BlockModelRotation/f_174872_ net/minecraft/client/resources/model/BlockModelRotation/DEGREES +FD: net/minecraft/client/resources/model/BuiltInModel/f_119167_ net/minecraft/client/resources/model/BuiltInModel/itemTransforms +FD: net/minecraft/client/resources/model/BuiltInModel/f_119168_ net/minecraft/client/resources/model/BuiltInModel/overrides +FD: net/minecraft/client/resources/model/BuiltInModel/f_119169_ net/minecraft/client/resources/model/BuiltInModel/particleTexture +FD: net/minecraft/client/resources/model/BuiltInModel/f_119170_ net/minecraft/client/resources/model/BuiltInModel/usesBlockLight +FD: net/minecraft/client/resources/model/Material/f_119187_ net/minecraft/client/resources/model/Material/atlasLocation +FD: net/minecraft/client/resources/model/Material/f_119188_ net/minecraft/client/resources/model/Material/texture +FD: net/minecraft/client/resources/model/Material/f_119189_ net/minecraft/client/resources/model/Material/renderType +FD: net/minecraft/client/resources/model/Material/f_244523_ net/minecraft/client/resources/model/Material/COMPARATOR +FD: net/minecraft/client/resources/model/ModelBakery/f_119209_ net/minecraft/client/resources/model/ModelBakery/blockColors +FD: net/minecraft/client/resources/model/ModelBakery/f_119210_ net/minecraft/client/resources/model/ModelBakery/loadingStack +FD: net/minecraft/client/resources/model/ModelBakery/f_119211_ net/minecraft/client/resources/model/ModelBakery/context +FD: net/minecraft/client/resources/model/ModelBakery/f_119212_ net/minecraft/client/resources/model/ModelBakery/unbakedCache +FD: net/minecraft/client/resources/model/ModelBakery/f_119213_ net/minecraft/client/resources/model/ModelBakery/bakedCache +FD: net/minecraft/client/resources/model/ModelBakery/f_119214_ net/minecraft/client/resources/model/ModelBakery/topLevelModels +FD: net/minecraft/client/resources/model/ModelBakery/f_119215_ net/minecraft/client/resources/model/ModelBakery/bakedTopLevelModels +FD: net/minecraft/client/resources/model/ModelBakery/f_119217_ net/minecraft/client/resources/model/ModelBakery/nextModelGroup +FD: net/minecraft/client/resources/model/ModelBakery/f_119218_ net/minecraft/client/resources/model/ModelBakery/modelGroups +FD: net/minecraft/client/resources/model/ModelBakery/f_119219_ net/minecraft/client/resources/model/ModelBakery/FIRE_0 +FD: net/minecraft/client/resources/model/ModelBakery/f_119220_ net/minecraft/client/resources/model/ModelBakery/FIRE_1 +FD: net/minecraft/client/resources/model/ModelBakery/f_119221_ net/minecraft/client/resources/model/ModelBakery/LAVA_FLOW +FD: net/minecraft/client/resources/model/ModelBakery/f_119222_ net/minecraft/client/resources/model/ModelBakery/WATER_FLOW +FD: net/minecraft/client/resources/model/ModelBakery/f_119223_ net/minecraft/client/resources/model/ModelBakery/WATER_OVERLAY +FD: net/minecraft/client/resources/model/ModelBakery/f_119224_ net/minecraft/client/resources/model/ModelBakery/BANNER_BASE +FD: net/minecraft/client/resources/model/ModelBakery/f_119225_ net/minecraft/client/resources/model/ModelBakery/SHIELD_BASE +FD: net/minecraft/client/resources/model/ModelBakery/f_119226_ net/minecraft/client/resources/model/ModelBakery/NO_PATTERN_SHIELD +FD: net/minecraft/client/resources/model/ModelBakery/f_119227_ net/minecraft/client/resources/model/ModelBakery/DESTROY_STAGES +FD: net/minecraft/client/resources/model/ModelBakery/f_119228_ net/minecraft/client/resources/model/ModelBakery/BREAKING_LOCATIONS +FD: net/minecraft/client/resources/model/ModelBakery/f_119229_ net/minecraft/client/resources/model/ModelBakery/DESTROY_TYPES +FD: net/minecraft/client/resources/model/ModelBakery/f_119230_ net/minecraft/client/resources/model/ModelBakery/MISSING_MODEL_LOCATION +FD: net/minecraft/client/resources/model/ModelBakery/f_119231_ net/minecraft/client/resources/model/ModelBakery/MISSING_MODEL_MESH +FD: net/minecraft/client/resources/model/ModelBakery/f_119232_ net/minecraft/client/resources/model/ModelBakery/GENERATION_MARKER +FD: net/minecraft/client/resources/model/ModelBakery/f_119233_ net/minecraft/client/resources/model/ModelBakery/BLOCK_ENTITY_MARKER +FD: net/minecraft/client/resources/model/ModelBakery/f_119235_ net/minecraft/client/resources/model/ModelBakery/LOGGER +FD: net/minecraft/client/resources/model/ModelBakery/f_119237_ net/minecraft/client/resources/model/ModelBakery/BUILTIN_MODELS +FD: net/minecraft/client/resources/model/ModelBakery/f_119238_ net/minecraft/client/resources/model/ModelBakery/COMMA_SPLITTER +FD: net/minecraft/client/resources/model/ModelBakery/f_119239_ net/minecraft/client/resources/model/ModelBakery/EQUAL_SPLITTER +FD: net/minecraft/client/resources/model/ModelBakery/f_119240_ net/minecraft/client/resources/model/ModelBakery/ITEM_FRAME_FAKE_DEFINITION +FD: net/minecraft/client/resources/model/ModelBakery/f_119241_ net/minecraft/client/resources/model/ModelBakery/ITEM_MODEL_GENERATOR +FD: net/minecraft/client/resources/model/ModelBakery/f_119242_ net/minecraft/client/resources/model/ModelBakery/STATIC_DEFINITIONS +FD: net/minecraft/client/resources/model/ModelBakery/f_174875_ net/minecraft/client/resources/model/ModelBakery/DESTROY_STAGE_COUNT +FD: net/minecraft/client/resources/model/ModelBakery/f_174876_ net/minecraft/client/resources/model/ModelBakery/SINGLETON_MODEL_GROUP +FD: net/minecraft/client/resources/model/ModelBakery/f_174877_ net/minecraft/client/resources/model/ModelBakery/INVISIBLE_MODEL_GROUP +FD: net/minecraft/client/resources/model/ModelBakery/f_174878_ net/minecraft/client/resources/model/ModelBakery/BUILTIN_SLASH +FD: net/minecraft/client/resources/model/ModelBakery/f_174879_ net/minecraft/client/resources/model/ModelBakery/BUILTIN_SLASH_GENERATED +FD: net/minecraft/client/resources/model/ModelBakery/f_174880_ net/minecraft/client/resources/model/ModelBakery/BUILTIN_BLOCK_ENTITY +FD: net/minecraft/client/resources/model/ModelBakery/f_174881_ net/minecraft/client/resources/model/ModelBakery/MISSING_MODEL_NAME +FD: net/minecraft/client/resources/model/ModelBakery/f_243866_ net/minecraft/client/resources/model/ModelBakery/blockStateResources +FD: net/minecraft/client/resources/model/ModelBakery/f_244132_ net/minecraft/client/resources/model/ModelBakery/modelResources +FD: net/minecraft/client/resources/model/ModelBakery/f_244202_ net/minecraft/client/resources/model/ModelBakery/BLOCKSTATE_LISTER +FD: net/minecraft/client/resources/model/ModelBakery/f_244378_ net/minecraft/client/resources/model/ModelBakery/MODEL_LISTER +FD: net/minecraft/client/resources/model/ModelBakery$BakedCacheKey/f_243798_ net/minecraft/client/resources/model/ModelBakery$BakedCacheKey/transformation +FD: net/minecraft/client/resources/model/ModelBakery$BakedCacheKey/f_243915_ net/minecraft/client/resources/model/ModelBakery$BakedCacheKey/isUvLocked +FD: net/minecraft/client/resources/model/ModelBakery$BakedCacheKey/f_243934_ net/minecraft/client/resources/model/ModelBakery$BakedCacheKey/id +FD: net/minecraft/client/resources/model/ModelBakery$LoadedJson/f_243774_ net/minecraft/client/resources/model/ModelBakery$LoadedJson/source +FD: net/minecraft/client/resources/model/ModelBakery$LoadedJson/f_244212_ net/minecraft/client/resources/model/ModelBakery$LoadedJson/data +FD: net/minecraft/client/resources/model/ModelBakery$ModelBakerImpl/f_243920_ net/minecraft/client/resources/model/ModelBakery$ModelBakerImpl/modelTextureGetter +FD: net/minecraft/client/resources/model/ModelBakery$ModelBakerImpl/f_243927_ net/minecraft/client/resources/model/ModelBakery$ModelBakerImpl/this$0 +FD: net/minecraft/client/resources/model/ModelBakery$ModelGroupKey/f_119374_ net/minecraft/client/resources/model/ModelBakery$ModelGroupKey/models +FD: net/minecraft/client/resources/model/ModelBakery$ModelGroupKey/f_119375_ net/minecraft/client/resources/model/ModelBakery$ModelGroupKey/coloringValues +FD: net/minecraft/client/resources/model/ModelManager/f_119397_ net/minecraft/client/resources/model/ModelManager/bakedRegistry +FD: net/minecraft/client/resources/model/ModelManager/f_119398_ net/minecraft/client/resources/model/ModelManager/atlases +FD: net/minecraft/client/resources/model/ModelManager/f_119399_ net/minecraft/client/resources/model/ModelManager/blockModelShaper +FD: net/minecraft/client/resources/model/ModelManager/f_119401_ net/minecraft/client/resources/model/ModelManager/blockColors +FD: net/minecraft/client/resources/model/ModelManager/f_119402_ net/minecraft/client/resources/model/ModelManager/maxMipmapLevels +FD: net/minecraft/client/resources/model/ModelManager/f_119403_ net/minecraft/client/resources/model/ModelManager/missingModel +FD: net/minecraft/client/resources/model/ModelManager/f_119404_ net/minecraft/client/resources/model/ModelManager/modelGroups +FD: net/minecraft/client/resources/model/ModelManager/f_243848_ net/minecraft/client/resources/model/ModelManager/LOGGER +FD: net/minecraft/client/resources/model/ModelManager/f_244614_ net/minecraft/client/resources/model/ModelManager/VANILLA_ATLASES +FD: net/minecraft/client/resources/model/ModelManager$ReloadState/f_244037_ net/minecraft/client/resources/model/ModelManager$ReloadState/readyForUpload +FD: net/minecraft/client/resources/model/ModelManager$ReloadState/f_244177_ net/minecraft/client/resources/model/ModelManager$ReloadState/atlasPreparations +FD: net/minecraft/client/resources/model/ModelManager$ReloadState/f_244394_ net/minecraft/client/resources/model/ModelManager$ReloadState/modelBakery +FD: net/minecraft/client/resources/model/ModelManager$ReloadState/f_244561_ net/minecraft/client/resources/model/ModelManager$ReloadState/modelCache +FD: net/minecraft/client/resources/model/ModelManager$ReloadState/f_244619_ net/minecraft/client/resources/model/ModelManager$ReloadState/missingModel +FD: net/minecraft/client/resources/model/ModelResourceLocation/f_119435_ net/minecraft/client/resources/model/ModelResourceLocation/variant +FD: net/minecraft/client/resources/model/ModelResourceLocation/f_174906_ net/minecraft/client/resources/model/ModelResourceLocation/VARIANT_SEPARATOR +FD: net/minecraft/client/resources/model/MultiPartBakedModel/f_119453_ net/minecraft/client/resources/model/MultiPartBakedModel/hasAmbientOcclusion +FD: net/minecraft/client/resources/model/MultiPartBakedModel/f_119454_ net/minecraft/client/resources/model/MultiPartBakedModel/isGui3d +FD: net/minecraft/client/resources/model/MultiPartBakedModel/f_119455_ net/minecraft/client/resources/model/MultiPartBakedModel/usesBlockLight +FD: net/minecraft/client/resources/model/MultiPartBakedModel/f_119456_ net/minecraft/client/resources/model/MultiPartBakedModel/particleIcon +FD: net/minecraft/client/resources/model/MultiPartBakedModel/f_119457_ net/minecraft/client/resources/model/MultiPartBakedModel/transforms +FD: net/minecraft/client/resources/model/MultiPartBakedModel/f_119458_ net/minecraft/client/resources/model/MultiPartBakedModel/overrides +FD: net/minecraft/client/resources/model/MultiPartBakedModel/f_119459_ net/minecraft/client/resources/model/MultiPartBakedModel/selectors +FD: net/minecraft/client/resources/model/MultiPartBakedModel/f_119460_ net/minecraft/client/resources/model/MultiPartBakedModel/selectorCache +FD: net/minecraft/client/resources/model/MultiPartBakedModel$Builder/f_119474_ net/minecraft/client/resources/model/MultiPartBakedModel$Builder/selectors +FD: net/minecraft/client/resources/model/SimpleBakedModel/f_119480_ net/minecraft/client/resources/model/SimpleBakedModel/unculledFaces +FD: net/minecraft/client/resources/model/SimpleBakedModel/f_119481_ net/minecraft/client/resources/model/SimpleBakedModel/culledFaces +FD: net/minecraft/client/resources/model/SimpleBakedModel/f_119482_ net/minecraft/client/resources/model/SimpleBakedModel/hasAmbientOcclusion +FD: net/minecraft/client/resources/model/SimpleBakedModel/f_119483_ net/minecraft/client/resources/model/SimpleBakedModel/isGui3d +FD: net/minecraft/client/resources/model/SimpleBakedModel/f_119484_ net/minecraft/client/resources/model/SimpleBakedModel/usesBlockLight +FD: net/minecraft/client/resources/model/SimpleBakedModel/f_119485_ net/minecraft/client/resources/model/SimpleBakedModel/particleIcon +FD: net/minecraft/client/resources/model/SimpleBakedModel/f_119486_ net/minecraft/client/resources/model/SimpleBakedModel/transforms +FD: net/minecraft/client/resources/model/SimpleBakedModel/f_119487_ net/minecraft/client/resources/model/SimpleBakedModel/overrides +FD: net/minecraft/client/resources/model/SimpleBakedModel$Builder/f_119508_ net/minecraft/client/resources/model/SimpleBakedModel$Builder/unculledFaces +FD: net/minecraft/client/resources/model/SimpleBakedModel$Builder/f_119509_ net/minecraft/client/resources/model/SimpleBakedModel$Builder/culledFaces +FD: net/minecraft/client/resources/model/SimpleBakedModel$Builder/f_119510_ net/minecraft/client/resources/model/SimpleBakedModel$Builder/overrides +FD: net/minecraft/client/resources/model/SimpleBakedModel$Builder/f_119511_ net/minecraft/client/resources/model/SimpleBakedModel$Builder/hasAmbientOcclusion +FD: net/minecraft/client/resources/model/SimpleBakedModel$Builder/f_119512_ net/minecraft/client/resources/model/SimpleBakedModel$Builder/particleIcon +FD: net/minecraft/client/resources/model/SimpleBakedModel$Builder/f_119513_ net/minecraft/client/resources/model/SimpleBakedModel$Builder/usesBlockLight +FD: net/minecraft/client/resources/model/SimpleBakedModel$Builder/f_119514_ net/minecraft/client/resources/model/SimpleBakedModel$Builder/isGui3d +FD: net/minecraft/client/resources/model/SimpleBakedModel$Builder/f_119515_ net/minecraft/client/resources/model/SimpleBakedModel$Builder/transforms +FD: net/minecraft/client/resources/model/WeightedBakedModel/f_119540_ net/minecraft/client/resources/model/WeightedBakedModel/totalWeight +FD: net/minecraft/client/resources/model/WeightedBakedModel/f_119541_ net/minecraft/client/resources/model/WeightedBakedModel/list +FD: net/minecraft/client/resources/model/WeightedBakedModel/f_119542_ net/minecraft/client/resources/model/WeightedBakedModel/wrapped +FD: net/minecraft/client/resources/model/WeightedBakedModel$Builder/f_119556_ net/minecraft/client/resources/model/WeightedBakedModel$Builder/list +FD: net/minecraft/client/resources/sounds/AbstractSoundInstance/f_119570_ net/minecraft/client/resources/sounds/AbstractSoundInstance/sound +FD: net/minecraft/client/resources/sounds/AbstractSoundInstance/f_119571_ net/minecraft/client/resources/sounds/AbstractSoundInstance/source +FD: net/minecraft/client/resources/sounds/AbstractSoundInstance/f_119572_ net/minecraft/client/resources/sounds/AbstractSoundInstance/location +FD: net/minecraft/client/resources/sounds/AbstractSoundInstance/f_119573_ net/minecraft/client/resources/sounds/AbstractSoundInstance/volume +FD: net/minecraft/client/resources/sounds/AbstractSoundInstance/f_119574_ net/minecraft/client/resources/sounds/AbstractSoundInstance/pitch +FD: net/minecraft/client/resources/sounds/AbstractSoundInstance/f_119575_ net/minecraft/client/resources/sounds/AbstractSoundInstance/x +FD: net/minecraft/client/resources/sounds/AbstractSoundInstance/f_119576_ net/minecraft/client/resources/sounds/AbstractSoundInstance/y +FD: net/minecraft/client/resources/sounds/AbstractSoundInstance/f_119577_ net/minecraft/client/resources/sounds/AbstractSoundInstance/z +FD: net/minecraft/client/resources/sounds/AbstractSoundInstance/f_119578_ net/minecraft/client/resources/sounds/AbstractSoundInstance/looping +FD: net/minecraft/client/resources/sounds/AbstractSoundInstance/f_119579_ net/minecraft/client/resources/sounds/AbstractSoundInstance/delay +FD: net/minecraft/client/resources/sounds/AbstractSoundInstance/f_119580_ net/minecraft/client/resources/sounds/AbstractSoundInstance/attenuation +FD: net/minecraft/client/resources/sounds/AbstractSoundInstance/f_119582_ net/minecraft/client/resources/sounds/AbstractSoundInstance/relative +FD: net/minecraft/client/resources/sounds/AbstractSoundInstance/f_235066_ net/minecraft/client/resources/sounds/AbstractSoundInstance/random +FD: net/minecraft/client/resources/sounds/AbstractTickableSoundInstance/f_119604_ net/minecraft/client/resources/sounds/AbstractTickableSoundInstance/stopped +FD: net/minecraft/client/resources/sounds/BeeSoundInstance/f_119618_ net/minecraft/client/resources/sounds/BeeSoundInstance/bee +FD: net/minecraft/client/resources/sounds/BeeSoundInstance/f_119619_ net/minecraft/client/resources/sounds/BeeSoundInstance/hasSwitched +FD: net/minecraft/client/resources/sounds/BeeSoundInstance/f_174917_ net/minecraft/client/resources/sounds/BeeSoundInstance/VOLUME_MIN +FD: net/minecraft/client/resources/sounds/BeeSoundInstance/f_174918_ net/minecraft/client/resources/sounds/BeeSoundInstance/VOLUME_MAX +FD: net/minecraft/client/resources/sounds/BeeSoundInstance/f_174919_ net/minecraft/client/resources/sounds/BeeSoundInstance/PITCH_MIN +FD: net/minecraft/client/resources/sounds/BiomeAmbientSoundsHandler/f_119629_ net/minecraft/client/resources/sounds/BiomeAmbientSoundsHandler/player +FD: net/minecraft/client/resources/sounds/BiomeAmbientSoundsHandler/f_119630_ net/minecraft/client/resources/sounds/BiomeAmbientSoundsHandler/soundManager +FD: net/minecraft/client/resources/sounds/BiomeAmbientSoundsHandler/f_119631_ net/minecraft/client/resources/sounds/BiomeAmbientSoundsHandler/biomeManager +FD: net/minecraft/client/resources/sounds/BiomeAmbientSoundsHandler/f_119632_ net/minecraft/client/resources/sounds/BiomeAmbientSoundsHandler/random +FD: net/minecraft/client/resources/sounds/BiomeAmbientSoundsHandler/f_119633_ net/minecraft/client/resources/sounds/BiomeAmbientSoundsHandler/loopSounds +FD: net/minecraft/client/resources/sounds/BiomeAmbientSoundsHandler/f_119634_ net/minecraft/client/resources/sounds/BiomeAmbientSoundsHandler/moodSettings +FD: net/minecraft/client/resources/sounds/BiomeAmbientSoundsHandler/f_119635_ net/minecraft/client/resources/sounds/BiomeAmbientSoundsHandler/additionsSettings +FD: net/minecraft/client/resources/sounds/BiomeAmbientSoundsHandler/f_119636_ net/minecraft/client/resources/sounds/BiomeAmbientSoundsHandler/moodiness +FD: net/minecraft/client/resources/sounds/BiomeAmbientSoundsHandler/f_119637_ net/minecraft/client/resources/sounds/BiomeAmbientSoundsHandler/previousBiome +FD: net/minecraft/client/resources/sounds/BiomeAmbientSoundsHandler/f_174920_ net/minecraft/client/resources/sounds/BiomeAmbientSoundsHandler/LOOP_SOUND_CROSS_FADE_TIME +FD: net/minecraft/client/resources/sounds/BiomeAmbientSoundsHandler/f_174921_ net/minecraft/client/resources/sounds/BiomeAmbientSoundsHandler/SKY_MOOD_RECOVERY_RATE +FD: net/minecraft/client/resources/sounds/BiomeAmbientSoundsHandler$LoopSoundInstance/f_119655_ net/minecraft/client/resources/sounds/BiomeAmbientSoundsHandler$LoopSoundInstance/fadeDirection +FD: net/minecraft/client/resources/sounds/BiomeAmbientSoundsHandler$LoopSoundInstance/f_119656_ net/minecraft/client/resources/sounds/BiomeAmbientSoundsHandler$LoopSoundInstance/fade +FD: net/minecraft/client/resources/sounds/BubbleColumnAmbientSoundHandler/f_119662_ net/minecraft/client/resources/sounds/BubbleColumnAmbientSoundHandler/player +FD: net/minecraft/client/resources/sounds/BubbleColumnAmbientSoundHandler/f_119663_ net/minecraft/client/resources/sounds/BubbleColumnAmbientSoundHandler/wasInBubbleColumn +FD: net/minecraft/client/resources/sounds/BubbleColumnAmbientSoundHandler/f_119664_ net/minecraft/client/resources/sounds/BubbleColumnAmbientSoundHandler/firstTick +FD: net/minecraft/client/resources/sounds/ElytraOnPlayerSoundInstance/f_119670_ net/minecraft/client/resources/sounds/ElytraOnPlayerSoundInstance/player +FD: net/minecraft/client/resources/sounds/ElytraOnPlayerSoundInstance/f_119671_ net/minecraft/client/resources/sounds/ElytraOnPlayerSoundInstance/time +FD: net/minecraft/client/resources/sounds/ElytraOnPlayerSoundInstance/f_174926_ net/minecraft/client/resources/sounds/ElytraOnPlayerSoundInstance/DELAY +FD: net/minecraft/client/resources/sounds/EntityBoundSoundInstance/f_119675_ net/minecraft/client/resources/sounds/EntityBoundSoundInstance/entity +FD: net/minecraft/client/resources/sounds/GuardianAttackSoundInstance/f_119688_ net/minecraft/client/resources/sounds/GuardianAttackSoundInstance/guardian +FD: net/minecraft/client/resources/sounds/GuardianAttackSoundInstance/f_174927_ net/minecraft/client/resources/sounds/GuardianAttackSoundInstance/VOLUME_MIN +FD: net/minecraft/client/resources/sounds/GuardianAttackSoundInstance/f_174928_ net/minecraft/client/resources/sounds/GuardianAttackSoundInstance/VOLUME_SCALE +FD: net/minecraft/client/resources/sounds/GuardianAttackSoundInstance/f_174929_ net/minecraft/client/resources/sounds/GuardianAttackSoundInstance/PITCH_MIN +FD: net/minecraft/client/resources/sounds/GuardianAttackSoundInstance/f_174930_ net/minecraft/client/resources/sounds/GuardianAttackSoundInstance/PITCH_SCALE +FD: net/minecraft/client/resources/sounds/MinecartSoundInstance/f_119693_ net/minecraft/client/resources/sounds/MinecartSoundInstance/minecart +FD: net/minecraft/client/resources/sounds/MinecartSoundInstance/f_119694_ net/minecraft/client/resources/sounds/MinecartSoundInstance/pitch +FD: net/minecraft/client/resources/sounds/MinecartSoundInstance/f_174931_ net/minecraft/client/resources/sounds/MinecartSoundInstance/VOLUME_MIN +FD: net/minecraft/client/resources/sounds/MinecartSoundInstance/f_174932_ net/minecraft/client/resources/sounds/MinecartSoundInstance/VOLUME_MAX +FD: net/minecraft/client/resources/sounds/MinecartSoundInstance/f_174933_ net/minecraft/client/resources/sounds/MinecartSoundInstance/PITCH_MIN +FD: net/minecraft/client/resources/sounds/MinecartSoundInstance/f_174934_ net/minecraft/client/resources/sounds/MinecartSoundInstance/PITCH_MAX +FD: net/minecraft/client/resources/sounds/MinecartSoundInstance/f_174935_ net/minecraft/client/resources/sounds/MinecartSoundInstance/PITCH_DELTA +FD: net/minecraft/client/resources/sounds/RidingMinecartSoundInstance/f_119700_ net/minecraft/client/resources/sounds/RidingMinecartSoundInstance/player +FD: net/minecraft/client/resources/sounds/RidingMinecartSoundInstance/f_119701_ net/minecraft/client/resources/sounds/RidingMinecartSoundInstance/minecart +FD: net/minecraft/client/resources/sounds/RidingMinecartSoundInstance/f_174936_ net/minecraft/client/resources/sounds/RidingMinecartSoundInstance/VOLUME_MIN +FD: net/minecraft/client/resources/sounds/RidingMinecartSoundInstance/f_174937_ net/minecraft/client/resources/sounds/RidingMinecartSoundInstance/VOLUME_MAX +FD: net/minecraft/client/resources/sounds/RidingMinecartSoundInstance/f_174938_ net/minecraft/client/resources/sounds/RidingMinecartSoundInstance/underwaterSound +FD: net/minecraft/client/resources/sounds/SnifferSoundInstance/f_271261_ net/minecraft/client/resources/sounds/SnifferSoundInstance/PITCH +FD: net/minecraft/client/resources/sounds/SnifferSoundInstance/f_271268_ net/minecraft/client/resources/sounds/SnifferSoundInstance/VOLUME +FD: net/minecraft/client/resources/sounds/SnifferSoundInstance/f_271453_ net/minecraft/client/resources/sounds/SnifferSoundInstance/sniffer +FD: net/minecraft/client/resources/sounds/Sound/f_119770_ net/minecraft/client/resources/sounds/Sound/location +FD: net/minecraft/client/resources/sounds/Sound/f_119771_ net/minecraft/client/resources/sounds/Sound/volume +FD: net/minecraft/client/resources/sounds/Sound/f_119772_ net/minecraft/client/resources/sounds/Sound/pitch +FD: net/minecraft/client/resources/sounds/Sound/f_119773_ net/minecraft/client/resources/sounds/Sound/weight +FD: net/minecraft/client/resources/sounds/Sound/f_119774_ net/minecraft/client/resources/sounds/Sound/type +FD: net/minecraft/client/resources/sounds/Sound/f_119775_ net/minecraft/client/resources/sounds/Sound/stream +FD: net/minecraft/client/resources/sounds/Sound/f_119776_ net/minecraft/client/resources/sounds/Sound/preload +FD: net/minecraft/client/resources/sounds/Sound/f_119777_ net/minecraft/client/resources/sounds/Sound/attenuationDistance +FD: net/minecraft/client/resources/sounds/Sound/f_244492_ net/minecraft/client/resources/sounds/Sound/SOUND_LISTER +FD: net/minecraft/client/resources/sounds/Sound$Type/$VALUES net/minecraft/client/resources/sounds/Sound$Type/$VALUES +FD: net/minecraft/client/resources/sounds/Sound$Type/FILE net/minecraft/client/resources/sounds/Sound$Type/FILE +FD: net/minecraft/client/resources/sounds/Sound$Type/SOUND_EVENT net/minecraft/client/resources/sounds/Sound$Type/SOUND_EVENT +FD: net/minecraft/client/resources/sounds/Sound$Type/f_119803_ net/minecraft/client/resources/sounds/Sound$Type/name +FD: net/minecraft/client/resources/sounds/SoundEventRegistration/f_119815_ net/minecraft/client/resources/sounds/SoundEventRegistration/sounds +FD: net/minecraft/client/resources/sounds/SoundEventRegistration/f_119816_ net/minecraft/client/resources/sounds/SoundEventRegistration/replace +FD: net/minecraft/client/resources/sounds/SoundEventRegistration/f_119817_ net/minecraft/client/resources/sounds/SoundEventRegistration/subtitle +FD: net/minecraft/client/resources/sounds/SoundEventRegistrationSerializer/f_235148_ net/minecraft/client/resources/sounds/SoundEventRegistrationSerializer/DEFAULT_FLOAT +FD: net/minecraft/client/resources/sounds/SoundInstance$Attenuation/$VALUES net/minecraft/client/resources/sounds/SoundInstance$Attenuation/$VALUES +FD: net/minecraft/client/resources/sounds/SoundInstance$Attenuation/LINEAR net/minecraft/client/resources/sounds/SoundInstance$Attenuation/LINEAR +FD: net/minecraft/client/resources/sounds/SoundInstance$Attenuation/NONE net/minecraft/client/resources/sounds/SoundInstance$Attenuation/NONE +FD: net/minecraft/client/resources/sounds/UnderwaterAmbientSoundHandler/f_119852_ net/minecraft/client/resources/sounds/UnderwaterAmbientSoundHandler/player +FD: net/minecraft/client/resources/sounds/UnderwaterAmbientSoundHandler/f_119853_ net/minecraft/client/resources/sounds/UnderwaterAmbientSoundHandler/soundManager +FD: net/minecraft/client/resources/sounds/UnderwaterAmbientSoundHandler/f_119854_ net/minecraft/client/resources/sounds/UnderwaterAmbientSoundHandler/tickDelay +FD: net/minecraft/client/resources/sounds/UnderwaterAmbientSoundHandler/f_174957_ net/minecraft/client/resources/sounds/UnderwaterAmbientSoundHandler/CHANCE_PER_TICK +FD: net/minecraft/client/resources/sounds/UnderwaterAmbientSoundHandler/f_174958_ net/minecraft/client/resources/sounds/UnderwaterAmbientSoundHandler/RARE_CHANCE_PER_TICK +FD: net/minecraft/client/resources/sounds/UnderwaterAmbientSoundHandler/f_174959_ net/minecraft/client/resources/sounds/UnderwaterAmbientSoundHandler/ULTRA_RARE_CHANCE_PER_TICK +FD: net/minecraft/client/resources/sounds/UnderwaterAmbientSoundHandler/f_174960_ net/minecraft/client/resources/sounds/UnderwaterAmbientSoundHandler/MINIMUM_TICK_DELAY +FD: net/minecraft/client/resources/sounds/UnderwaterAmbientSoundInstances$SubSound/f_119859_ net/minecraft/client/resources/sounds/UnderwaterAmbientSoundInstances$SubSound/player +FD: net/minecraft/client/resources/sounds/UnderwaterAmbientSoundInstances$UnderwaterAmbientSoundInstance/f_119864_ net/minecraft/client/resources/sounds/UnderwaterAmbientSoundInstances$UnderwaterAmbientSoundInstance/player +FD: net/minecraft/client/resources/sounds/UnderwaterAmbientSoundInstances$UnderwaterAmbientSoundInstance/f_119865_ net/minecraft/client/resources/sounds/UnderwaterAmbientSoundInstances$UnderwaterAmbientSoundInstance/fade +FD: net/minecraft/client/resources/sounds/UnderwaterAmbientSoundInstances$UnderwaterAmbientSoundInstance/f_174962_ net/minecraft/client/resources/sounds/UnderwaterAmbientSoundInstances$UnderwaterAmbientSoundInstance/FADE_DURATION +FD: net/minecraft/client/searchtree/FullTextSearchTree/f_235151_ net/minecraft/client/searchtree/FullTextSearchTree/contents +FD: net/minecraft/client/searchtree/FullTextSearchTree/f_235152_ net/minecraft/client/searchtree/FullTextSearchTree/filler +FD: net/minecraft/client/searchtree/FullTextSearchTree/f_235153_ net/minecraft/client/searchtree/FullTextSearchTree/plainTextSearchTree +FD: net/minecraft/client/searchtree/IdSearchTree/f_235164_ net/minecraft/client/searchtree/IdSearchTree/additionOrder +FD: net/minecraft/client/searchtree/IdSearchTree/f_235165_ net/minecraft/client/searchtree/IdSearchTree/resourceLocationSearchTree +FD: net/minecraft/client/searchtree/IntersectionIterator/f_235174_ net/minecraft/client/searchtree/IntersectionIterator/firstIterator +FD: net/minecraft/client/searchtree/IntersectionIterator/f_235175_ net/minecraft/client/searchtree/IntersectionIterator/secondIterator +FD: net/minecraft/client/searchtree/IntersectionIterator/f_235176_ net/minecraft/client/searchtree/IntersectionIterator/comparator +FD: net/minecraft/client/searchtree/MergingUniqueIterator/f_235182_ net/minecraft/client/searchtree/MergingUniqueIterator/firstIterator +FD: net/minecraft/client/searchtree/MergingUniqueIterator/f_235183_ net/minecraft/client/searchtree/MergingUniqueIterator/secondIterator +FD: net/minecraft/client/searchtree/MergingUniqueIterator/f_235184_ net/minecraft/client/searchtree/MergingUniqueIterator/comparator +FD: net/minecraft/client/searchtree/ResourceLocationSearchTree$2/f_235221_ net/minecraft/client/searchtree/ResourceLocationSearchTree$2/val$namespaceTree +FD: net/minecraft/client/searchtree/ResourceLocationSearchTree$2/f_235222_ net/minecraft/client/searchtree/ResourceLocationSearchTree$2/val$pathTree +FD: net/minecraft/client/searchtree/SearchRegistry/f_119941_ net/minecraft/client/searchtree/SearchRegistry/CREATIVE_NAMES +FD: net/minecraft/client/searchtree/SearchRegistry/f_119942_ net/minecraft/client/searchtree/SearchRegistry/CREATIVE_TAGS +FD: net/minecraft/client/searchtree/SearchRegistry/f_119943_ net/minecraft/client/searchtree/SearchRegistry/RECIPE_COLLECTIONS +FD: net/minecraft/client/searchtree/SearchRegistry/f_119944_ net/minecraft/client/searchtree/SearchRegistry/searchTrees +FD: net/minecraft/client/searchtree/SearchRegistry$TreeEntry/f_235240_ net/minecraft/client/searchtree/SearchRegistry$TreeEntry/factory +FD: net/minecraft/client/searchtree/SearchRegistry$TreeEntry/f_235241_ net/minecraft/client/searchtree/SearchRegistry$TreeEntry/tree +FD: net/minecraft/client/searchtree/SuffixArray/f_119956_ net/minecraft/client/searchtree/SuffixArray/list +FD: net/minecraft/client/searchtree/SuffixArray/f_119957_ net/minecraft/client/searchtree/SuffixArray/DEBUG_COMPARISONS +FD: net/minecraft/client/searchtree/SuffixArray/f_119958_ net/minecraft/client/searchtree/SuffixArray/DEBUG_ARRAY +FD: net/minecraft/client/searchtree/SuffixArray/f_119959_ net/minecraft/client/searchtree/SuffixArray/LOGGER +FD: net/minecraft/client/searchtree/SuffixArray/f_119960_ net/minecraft/client/searchtree/SuffixArray/chars +FD: net/minecraft/client/searchtree/SuffixArray/f_119961_ net/minecraft/client/searchtree/SuffixArray/wordStarts +FD: net/minecraft/client/searchtree/SuffixArray/f_119962_ net/minecraft/client/searchtree/SuffixArray/suffixToT +FD: net/minecraft/client/searchtree/SuffixArray/f_119963_ net/minecraft/client/searchtree/SuffixArray/offsets +FD: net/minecraft/client/searchtree/SuffixArray/f_119964_ net/minecraft/client/searchtree/SuffixArray/maxStringLength +FD: net/minecraft/client/searchtree/SuffixArray/f_174963_ net/minecraft/client/searchtree/SuffixArray/END_OF_TEXT_MARKER +FD: net/minecraft/client/searchtree/SuffixArray/f_174964_ net/minecraft/client/searchtree/SuffixArray/END_OF_DATA +FD: net/minecraft/client/server/IntegratedPlayerList/f_120001_ net/minecraft/client/server/IntegratedPlayerList/playerData +FD: net/minecraft/client/server/IntegratedServer/f_120014_ net/minecraft/client/server/IntegratedServer/LOGGER +FD: net/minecraft/client/server/IntegratedServer/f_120015_ net/minecraft/client/server/IntegratedServer/minecraft +FD: net/minecraft/client/server/IntegratedServer/f_120016_ net/minecraft/client/server/IntegratedServer/paused +FD: net/minecraft/client/server/IntegratedServer/f_120017_ net/minecraft/client/server/IntegratedServer/publishedPort +FD: net/minecraft/client/server/IntegratedServer/f_120018_ net/minecraft/client/server/IntegratedServer/lanPinger +FD: net/minecraft/client/server/IntegratedServer/f_120019_ net/minecraft/client/server/IntegratedServer/uuid +FD: net/minecraft/client/server/IntegratedServer/f_174966_ net/minecraft/client/server/IntegratedServer/publishedGameType +FD: net/minecraft/client/server/IntegratedServer/f_194466_ net/minecraft/client/server/IntegratedServer/MIN_SIM_DISTANCE +FD: net/minecraft/client/server/IntegratedServer/f_194467_ net/minecraft/client/server/IntegratedServer/previousSimulationDistance +FD: net/minecraft/client/server/LanServer/f_120072_ net/minecraft/client/server/LanServer/motd +FD: net/minecraft/client/server/LanServer/f_120073_ net/minecraft/client/server/LanServer/address +FD: net/minecraft/client/server/LanServer/f_120074_ net/minecraft/client/server/LanServer/pingTime +FD: net/minecraft/client/server/LanServerDetection/f_120081_ net/minecraft/client/server/LanServerDetection/UNIQUE_THREAD_ID +FD: net/minecraft/client/server/LanServerDetection/f_120082_ net/minecraft/client/server/LanServerDetection/LOGGER +FD: net/minecraft/client/server/LanServerDetection$LanServerDetector/f_120086_ net/minecraft/client/server/LanServerDetection$LanServerDetector/serverList +FD: net/minecraft/client/server/LanServerDetection$LanServerDetector/f_120087_ net/minecraft/client/server/LanServerDetection$LanServerDetector/pingGroup +FD: net/minecraft/client/server/LanServerDetection$LanServerDetector/f_120088_ net/minecraft/client/server/LanServerDetection$LanServerDetector/socket +FD: net/minecraft/client/server/LanServerDetection$LanServerList/f_120092_ net/minecraft/client/server/LanServerDetection$LanServerList/servers +FD: net/minecraft/client/server/LanServerDetection$LanServerList/f_120093_ net/minecraft/client/server/LanServerDetection$LanServerList/isDirty +FD: net/minecraft/client/server/LanServerPinger/f_120101_ net/minecraft/client/server/LanServerPinger/UNIQUE_THREAD_ID +FD: net/minecraft/client/server/LanServerPinger/f_120102_ net/minecraft/client/server/LanServerPinger/LOGGER +FD: net/minecraft/client/server/LanServerPinger/f_120103_ net/minecraft/client/server/LanServerPinger/motd +FD: net/minecraft/client/server/LanServerPinger/f_120104_ net/minecraft/client/server/LanServerPinger/socket +FD: net/minecraft/client/server/LanServerPinger/f_120105_ net/minecraft/client/server/LanServerPinger/isRunning +FD: net/minecraft/client/server/LanServerPinger/f_120106_ net/minecraft/client/server/LanServerPinger/serverAddress +FD: net/minecraft/client/server/LanServerPinger/f_174974_ net/minecraft/client/server/LanServerPinger/MULTICAST_GROUP +FD: net/minecraft/client/server/LanServerPinger/f_174975_ net/minecraft/client/server/LanServerPinger/PING_PORT +FD: net/minecraft/client/server/LanServerPinger/f_174976_ net/minecraft/client/server/LanServerPinger/PING_INTERVAL +FD: net/minecraft/client/sounds/ChannelAccess/f_120121_ net/minecraft/client/sounds/ChannelAccess/channels +FD: net/minecraft/client/sounds/ChannelAccess/f_120122_ net/minecraft/client/sounds/ChannelAccess/library +FD: net/minecraft/client/sounds/ChannelAccess/f_120123_ net/minecraft/client/sounds/ChannelAccess/executor +FD: net/minecraft/client/sounds/ChannelAccess$ChannelHandle/f_120145_ net/minecraft/client/sounds/ChannelAccess$ChannelHandle/this$0 +FD: net/minecraft/client/sounds/ChannelAccess$ChannelHandle/f_120146_ net/minecraft/client/sounds/ChannelAccess$ChannelHandle/channel +FD: net/minecraft/client/sounds/ChannelAccess$ChannelHandle/f_120147_ net/minecraft/client/sounds/ChannelAccess$ChannelHandle/stopped +FD: net/minecraft/client/sounds/LoopingAudioStream/f_120159_ net/minecraft/client/sounds/LoopingAudioStream/provider +FD: net/minecraft/client/sounds/LoopingAudioStream/f_120160_ net/minecraft/client/sounds/LoopingAudioStream/stream +FD: net/minecraft/client/sounds/LoopingAudioStream/f_120161_ net/minecraft/client/sounds/LoopingAudioStream/bufferedInputStream +FD: net/minecraft/client/sounds/MusicManager/f_120177_ net/minecraft/client/sounds/MusicManager/random +FD: net/minecraft/client/sounds/MusicManager/f_120178_ net/minecraft/client/sounds/MusicManager/minecraft +FD: net/minecraft/client/sounds/MusicManager/f_120179_ net/minecraft/client/sounds/MusicManager/currentMusic +FD: net/minecraft/client/sounds/MusicManager/f_120180_ net/minecraft/client/sounds/MusicManager/nextSongDelay +FD: net/minecraft/client/sounds/MusicManager/f_174979_ net/minecraft/client/sounds/MusicManager/STARTING_DELAY +FD: net/minecraft/client/sounds/SoundBufferLibrary/f_120189_ net/minecraft/client/sounds/SoundBufferLibrary/resourceManager +FD: net/minecraft/client/sounds/SoundBufferLibrary/f_120190_ net/minecraft/client/sounds/SoundBufferLibrary/cache +FD: net/minecraft/client/sounds/SoundEngine/f_120214_ net/minecraft/client/sounds/SoundEngine/MARKER +FD: net/minecraft/client/sounds/SoundEngine/f_120215_ net/minecraft/client/sounds/SoundEngine/LOGGER +FD: net/minecraft/client/sounds/SoundEngine/f_120216_ net/minecraft/client/sounds/SoundEngine/ONLY_WARN_ONCE +FD: net/minecraft/client/sounds/SoundEngine/f_120217_ net/minecraft/client/sounds/SoundEngine/soundManager +FD: net/minecraft/client/sounds/SoundEngine/f_120218_ net/minecraft/client/sounds/SoundEngine/options +FD: net/minecraft/client/sounds/SoundEngine/f_120219_ net/minecraft/client/sounds/SoundEngine/loaded +FD: net/minecraft/client/sounds/SoundEngine/f_120220_ net/minecraft/client/sounds/SoundEngine/library +FD: net/minecraft/client/sounds/SoundEngine/f_120221_ net/minecraft/client/sounds/SoundEngine/listener +FD: net/minecraft/client/sounds/SoundEngine/f_120222_ net/minecraft/client/sounds/SoundEngine/soundBuffers +FD: net/minecraft/client/sounds/SoundEngine/f_120223_ net/minecraft/client/sounds/SoundEngine/executor +FD: net/minecraft/client/sounds/SoundEngine/f_120224_ net/minecraft/client/sounds/SoundEngine/channelAccess +FD: net/minecraft/client/sounds/SoundEngine/f_120225_ net/minecraft/client/sounds/SoundEngine/tickCount +FD: net/minecraft/client/sounds/SoundEngine/f_120226_ net/minecraft/client/sounds/SoundEngine/instanceToChannel +FD: net/minecraft/client/sounds/SoundEngine/f_120227_ net/minecraft/client/sounds/SoundEngine/instanceBySource +FD: net/minecraft/client/sounds/SoundEngine/f_120228_ net/minecraft/client/sounds/SoundEngine/tickingSounds +FD: net/minecraft/client/sounds/SoundEngine/f_120229_ net/minecraft/client/sounds/SoundEngine/queuedSounds +FD: net/minecraft/client/sounds/SoundEngine/f_120230_ net/minecraft/client/sounds/SoundEngine/soundDeleteTime +FD: net/minecraft/client/sounds/SoundEngine/f_120231_ net/minecraft/client/sounds/SoundEngine/listeners +FD: net/minecraft/client/sounds/SoundEngine/f_120232_ net/minecraft/client/sounds/SoundEngine/queuedTickableSounds +FD: net/minecraft/client/sounds/SoundEngine/f_120233_ net/minecraft/client/sounds/SoundEngine/preloadQueue +FD: net/minecraft/client/sounds/SoundEngine/f_174982_ net/minecraft/client/sounds/SoundEngine/MISSING_SOUND +FD: net/minecraft/client/sounds/SoundEngine/f_174983_ net/minecraft/client/sounds/SoundEngine/PITCH_MIN +FD: net/minecraft/client/sounds/SoundEngine/f_174984_ net/minecraft/client/sounds/SoundEngine/PITCH_MAX +FD: net/minecraft/client/sounds/SoundEngine/f_174985_ net/minecraft/client/sounds/SoundEngine/VOLUME_MIN +FD: net/minecraft/client/sounds/SoundEngine/f_174986_ net/minecraft/client/sounds/SoundEngine/VOLUME_MAX +FD: net/minecraft/client/sounds/SoundEngine/f_174987_ net/minecraft/client/sounds/SoundEngine/MIN_SOURCE_LIFETIME +FD: net/minecraft/client/sounds/SoundEngine/f_194469_ net/minecraft/client/sounds/SoundEngine/OPEN_AL_SOFT_PREFIX +FD: net/minecraft/client/sounds/SoundEngine/f_194470_ net/minecraft/client/sounds/SoundEngine/OPEN_AL_SOFT_PREFIX_LENGTH +FD: net/minecraft/client/sounds/SoundEngine/f_194471_ net/minecraft/client/sounds/SoundEngine/DEFAULT_DEVICE_CHECK_INTERVAL_MS +FD: net/minecraft/client/sounds/SoundEngine/f_194472_ net/minecraft/client/sounds/SoundEngine/lastDeviceCheckTime +FD: net/minecraft/client/sounds/SoundEngine/f_194473_ net/minecraft/client/sounds/SoundEngine/devicePoolState +FD: net/minecraft/client/sounds/SoundEngine$DeviceCheckState/$VALUES net/minecraft/client/sounds/SoundEngine$DeviceCheckState/$VALUES +FD: net/minecraft/client/sounds/SoundEngine$DeviceCheckState/CHANGE_DETECTED net/minecraft/client/sounds/SoundEngine$DeviceCheckState/CHANGE_DETECTED +FD: net/minecraft/client/sounds/SoundEngine$DeviceCheckState/NO_CHANGE net/minecraft/client/sounds/SoundEngine$DeviceCheckState/NO_CHANGE +FD: net/minecraft/client/sounds/SoundEngine$DeviceCheckState/ONGOING net/minecraft/client/sounds/SoundEngine$DeviceCheckState/ONGOING +FD: net/minecraft/client/sounds/SoundEngineExecutor/f_120329_ net/minecraft/client/sounds/SoundEngineExecutor/thread +FD: net/minecraft/client/sounds/SoundEngineExecutor/f_120330_ net/minecraft/client/sounds/SoundEngineExecutor/shutdown +FD: net/minecraft/client/sounds/SoundManager/f_120344_ net/minecraft/client/sounds/SoundManager/EMPTY_SOUND +FD: net/minecraft/client/sounds/SoundManager/f_120345_ net/minecraft/client/sounds/SoundManager/LOGGER +FD: net/minecraft/client/sounds/SoundManager/f_120346_ net/minecraft/client/sounds/SoundManager/GSON +FD: net/minecraft/client/sounds/SoundManager/f_120347_ net/minecraft/client/sounds/SoundManager/SOUND_EVENT_REGISTRATION_TYPE +FD: net/minecraft/client/sounds/SoundManager/f_120348_ net/minecraft/client/sounds/SoundManager/registry +FD: net/minecraft/client/sounds/SoundManager/f_120349_ net/minecraft/client/sounds/SoundManager/soundEngine +FD: net/minecraft/client/sounds/SoundManager/f_174997_ net/minecraft/client/sounds/SoundManager/SOUNDS_PATH +FD: net/minecraft/client/sounds/SoundManager/f_244170_ net/minecraft/client/sounds/SoundManager/soundCache +FD: net/minecraft/client/sounds/SoundManager/f_271159_ net/minecraft/client/sounds/SoundManager/INTENTIONALLY_EMPTY_SOUND_EVENT +FD: net/minecraft/client/sounds/SoundManager/f_271442_ net/minecraft/client/sounds/SoundManager/INTENTIONALLY_EMPTY_SOUND_LOCATION +FD: net/minecraft/client/sounds/SoundManager/f_271451_ net/minecraft/client/sounds/SoundManager/INTENTIONALLY_EMPTY_SOUND +FD: net/minecraft/client/sounds/SoundManager$2/f_120411_ net/minecraft/client/sounds/SoundManager$2/$SwitchMap$net$minecraft$client$resources$sounds$Sound$Type +FD: net/minecraft/client/sounds/SoundManager$Preparations/f_120413_ net/minecraft/client/sounds/SoundManager$Preparations/registry +FD: net/minecraft/client/sounds/SoundManager$Preparations/f_244128_ net/minecraft/client/sounds/SoundManager$Preparations/soundCache +FD: net/minecraft/client/sounds/SoundManager$Preparations$1/f_120429_ net/minecraft/client/sounds/SoundManager$Preparations$1/val$soundLocation +FD: net/minecraft/client/sounds/SoundManager$Preparations$1/f_120430_ net/minecraft/client/sounds/SoundManager$Preparations$1/val$sound +FD: net/minecraft/client/sounds/SoundManager$Preparations$1/f_120431_ net/minecraft/client/sounds/SoundManager$Preparations$1/this$0 +FD: net/minecraft/client/sounds/WeighedSoundEvents/f_120441_ net/minecraft/client/sounds/WeighedSoundEvents/list +FD: net/minecraft/client/sounds/WeighedSoundEvents/f_120444_ net/minecraft/client/sounds/WeighedSoundEvents/subtitle +FD: net/minecraft/client/telemetry/ClientTelemetryManager/f_260581_ net/minecraft/client/telemetry/ClientTelemetryManager/EXECUTOR +FD: net/minecraft/client/telemetry/ClientTelemetryManager/f_260615_ net/minecraft/client/telemetry/ClientTelemetryManager/userApiService +FD: net/minecraft/client/telemetry/ClientTelemetryManager/f_260616_ net/minecraft/client/telemetry/ClientTelemetryManager/logManager +FD: net/minecraft/client/telemetry/ClientTelemetryManager/f_260661_ net/minecraft/client/telemetry/ClientTelemetryManager/deviceSessionProperties +FD: net/minecraft/client/telemetry/ClientTelemetryManager/f_260680_ net/minecraft/client/telemetry/ClientTelemetryManager/THREAD_COUNT +FD: net/minecraft/client/telemetry/ClientTelemetryManager/f_260682_ net/minecraft/client/telemetry/ClientTelemetryManager/logDirectory +FD: net/minecraft/client/telemetry/ClientTelemetryManager/f_285581_ net/minecraft/client/telemetry/ClientTelemetryManager/outsideSessionSender +FD: net/minecraft/client/telemetry/TelemetryEventInstance/f_260460_ net/minecraft/client/telemetry/TelemetryEventInstance/type +FD: net/minecraft/client/telemetry/TelemetryEventInstance/f_260534_ net/minecraft/client/telemetry/TelemetryEventInstance/CODEC +FD: net/minecraft/client/telemetry/TelemetryEventInstance/f_260563_ net/minecraft/client/telemetry/TelemetryEventInstance/properties +FD: net/minecraft/client/telemetry/TelemetryEventLog/f_260494_ net/minecraft/client/telemetry/TelemetryEventLog/LOGGER +FD: net/minecraft/client/telemetry/TelemetryEventLog/f_260691_ net/minecraft/client/telemetry/TelemetryEventLog/mailbox +FD: net/minecraft/client/telemetry/TelemetryEventLog/f_260709_ net/minecraft/client/telemetry/TelemetryEventLog/log +FD: net/minecraft/client/telemetry/TelemetryEventSender/f_260501_ net/minecraft/client/telemetry/TelemetryEventSender/DISABLED +FD: net/minecraft/client/telemetry/TelemetryEventType/f_260446_ net/minecraft/client/telemetry/TelemetryEventType/GLOBAL_PROPERTIES +FD: net/minecraft/client/telemetry/TelemetryEventType/f_260473_ net/minecraft/client/telemetry/TelemetryEventType/isOptIn +FD: net/minecraft/client/telemetry/TelemetryEventType/f_260492_ net/minecraft/client/telemetry/TelemetryEventType/properties +FD: net/minecraft/client/telemetry/TelemetryEventType/f_260564_ net/minecraft/client/telemetry/TelemetryEventType/WORLD_SESSION_PROPERTIES +FD: net/minecraft/client/telemetry/TelemetryEventType/f_260573_ net/minecraft/client/telemetry/TelemetryEventType/WORLD_LOADED +FD: net/minecraft/client/telemetry/TelemetryEventType/f_260600_ net/minecraft/client/telemetry/TelemetryEventType/WORLD_LOAD_TIMES +FD: net/minecraft/client/telemetry/TelemetryEventType/f_260620_ net/minecraft/client/telemetry/TelemetryEventType/PERFORMANCE_METRICS +FD: net/minecraft/client/telemetry/TelemetryEventType/f_260629_ net/minecraft/client/telemetry/TelemetryEventType/id +FD: net/minecraft/client/telemetry/TelemetryEventType/f_260654_ net/minecraft/client/telemetry/TelemetryEventType/exportKey +FD: net/minecraft/client/telemetry/TelemetryEventType/f_260686_ net/minecraft/client/telemetry/TelemetryEventType/REGISTRY +FD: net/minecraft/client/telemetry/TelemetryEventType/f_260690_ net/minecraft/client/telemetry/TelemetryEventType/CODEC +FD: net/minecraft/client/telemetry/TelemetryEventType/f_260708_ net/minecraft/client/telemetry/TelemetryEventType/codec +FD: net/minecraft/client/telemetry/TelemetryEventType/f_260729_ net/minecraft/client/telemetry/TelemetryEventType/WORLD_UNLOADED +FD: net/minecraft/client/telemetry/TelemetryEventType/f_285568_ net/minecraft/client/telemetry/TelemetryEventType/ADVANCEMENT_MADE +FD: net/minecraft/client/telemetry/TelemetryEventType/f_285589_ net/minecraft/client/telemetry/TelemetryEventType/GAME_LOAD_TIMES +FD: net/minecraft/client/telemetry/TelemetryEventType$Builder/f_260469_ net/minecraft/client/telemetry/TelemetryEventType$Builder/id +FD: net/minecraft/client/telemetry/TelemetryEventType$Builder/f_260516_ net/minecraft/client/telemetry/TelemetryEventType$Builder/exportKey +FD: net/minecraft/client/telemetry/TelemetryEventType$Builder/f_260544_ net/minecraft/client/telemetry/TelemetryEventType$Builder/isOptIn +FD: net/minecraft/client/telemetry/TelemetryEventType$Builder/f_260674_ net/minecraft/client/telemetry/TelemetryEventType$Builder/properties +FD: net/minecraft/client/telemetry/TelemetryLogManager/f_260465_ net/minecraft/client/telemetry/TelemetryLogManager/directory +FD: net/minecraft/client/telemetry/TelemetryLogManager/f_260510_ net/minecraft/client/telemetry/TelemetryLogManager/EXPIRY_DAYS +FD: net/minecraft/client/telemetry/TelemetryLogManager/f_260526_ net/minecraft/client/telemetry/TelemetryLogManager/sessionLog +FD: net/minecraft/client/telemetry/TelemetryLogManager/f_260574_ net/minecraft/client/telemetry/TelemetryLogManager/LOGGER +FD: net/minecraft/client/telemetry/TelemetryLogManager/f_260596_ net/minecraft/client/telemetry/TelemetryLogManager/RAW_EXTENSION +FD: net/minecraft/client/telemetry/TelemetryProperty/f_260437_ net/minecraft/client/telemetry/TelemetryProperty/NEW_WORLD +FD: net/minecraft/client/telemetry/TelemetryProperty/f_260441_ net/minecraft/client/telemetry/TelemetryProperty/OPERATING_SYSTEM +FD: net/minecraft/client/telemetry/TelemetryProperty/f_260452_ net/minecraft/client/telemetry/TelemetryProperty/SECONDS_SINCE_LOAD +FD: net/minecraft/client/telemetry/TelemetryProperty/f_260453_ net/minecraft/client/telemetry/TelemetryProperty/OPT_IN +FD: net/minecraft/client/telemetry/TelemetryProperty/f_260475_ net/minecraft/client/telemetry/TelemetryProperty/CLIENT_ID +FD: net/minecraft/client/telemetry/TelemetryProperty/f_260499_ net/minecraft/client/telemetry/TelemetryProperty/SERVER_MODDED +FD: net/minecraft/client/telemetry/TelemetryProperty/f_260511_ net/minecraft/client/telemetry/TelemetryProperty/WORLD_SESSION_ID +FD: net/minecraft/client/telemetry/TelemetryProperty/f_260530_ net/minecraft/client/telemetry/TelemetryProperty/MINECRAFT_SESSION_ID +FD: net/minecraft/client/telemetry/TelemetryProperty/f_260557_ net/minecraft/client/telemetry/TelemetryProperty/FRAME_RATE_SAMPLES +FD: net/minecraft/client/telemetry/TelemetryProperty/f_260562_ net/minecraft/client/telemetry/TelemetryProperty/CLIENT_MODDED +FD: net/minecraft/client/telemetry/TelemetryProperty/f_260571_ net/minecraft/client/telemetry/TelemetryProperty/WORLD_LOAD_TIME_MS +FD: net/minecraft/client/telemetry/TelemetryProperty/f_260586_ net/minecraft/client/telemetry/TelemetryProperty/PLATFORM +FD: net/minecraft/client/telemetry/TelemetryProperty/f_260588_ net/minecraft/client/telemetry/TelemetryProperty/exportKey +FD: net/minecraft/client/telemetry/TelemetryProperty/f_260597_ net/minecraft/client/telemetry/TelemetryProperty/GAME_VERSION +FD: net/minecraft/client/telemetry/TelemetryProperty/f_260625_ net/minecraft/client/telemetry/TelemetryProperty/exporter +FD: net/minecraft/client/telemetry/TelemetryProperty/f_260635_ net/minecraft/client/telemetry/TelemetryProperty/SERVER_TYPE +FD: net/minecraft/client/telemetry/TelemetryProperty/f_260638_ net/minecraft/client/telemetry/TelemetryProperty/TICKS_SINCE_LOAD +FD: net/minecraft/client/telemetry/TelemetryProperty/f_260645_ net/minecraft/client/telemetry/TelemetryProperty/USED_MEMORY_SAMPLES +FD: net/minecraft/client/telemetry/TelemetryProperty/f_260649_ net/minecraft/client/telemetry/TelemetryProperty/NUMBER_OF_SAMPLES +FD: net/minecraft/client/telemetry/TelemetryProperty/f_260659_ net/minecraft/client/telemetry/TelemetryProperty/USER_ID +FD: net/minecraft/client/telemetry/TelemetryProperty/f_260683_ net/minecraft/client/telemetry/TelemetryProperty/RENDER_DISTANCE +FD: net/minecraft/client/telemetry/TelemetryProperty/f_260684_ net/minecraft/client/telemetry/TelemetryProperty/TIMESTAMP_FORMATTER +FD: net/minecraft/client/telemetry/TelemetryProperty/f_260687_ net/minecraft/client/telemetry/TelemetryProperty/id +FD: net/minecraft/client/telemetry/TelemetryProperty/f_260700_ net/minecraft/client/telemetry/TelemetryProperty/DEDICATED_MEMORY_KB +FD: net/minecraft/client/telemetry/TelemetryProperty/f_260704_ net/minecraft/client/telemetry/TelemetryProperty/GAME_MODE +FD: net/minecraft/client/telemetry/TelemetryProperty/f_260706_ net/minecraft/client/telemetry/TelemetryProperty/codec +FD: net/minecraft/client/telemetry/TelemetryProperty/f_260713_ net/minecraft/client/telemetry/TelemetryProperty/RENDER_TIME_SAMPLES +FD: net/minecraft/client/telemetry/TelemetryProperty/f_260726_ net/minecraft/client/telemetry/TelemetryProperty/EVENT_TIMESTAMP_UTC +FD: net/minecraft/client/telemetry/TelemetryProperty/f_285565_ net/minecraft/client/telemetry/TelemetryProperty/ADVANCEMENT_ID +FD: net/minecraft/client/telemetry/TelemetryProperty/f_285586_ net/minecraft/client/telemetry/TelemetryProperty/LOAD_TIME_BOOTSTRAP_MS +FD: net/minecraft/client/telemetry/TelemetryProperty/f_285605_ net/minecraft/client/telemetry/TelemetryProperty/LOAD_TIME_TOTAL_TIME_MS +FD: net/minecraft/client/telemetry/TelemetryProperty/f_285625_ net/minecraft/client/telemetry/TelemetryProperty/ADVANCEMENT_GAME_TIME +FD: net/minecraft/client/telemetry/TelemetryProperty/f_285629_ net/minecraft/client/telemetry/TelemetryProperty/LOAD_TIME_LOADING_OVERLAY_MS +FD: net/minecraft/client/telemetry/TelemetryProperty/f_285634_ net/minecraft/client/telemetry/TelemetryProperty/REALMS_MAP_CONTENT +FD: net/minecraft/client/telemetry/TelemetryProperty/f_285649_ net/minecraft/client/telemetry/TelemetryProperty/LOAD_TIME_PRE_WINDOW_MS +FD: net/minecraft/client/telemetry/TelemetryProperty/f_285658_ net/minecraft/client/telemetry/TelemetryProperty/LAUNCHER_NAME +FD: net/minecraft/client/telemetry/TelemetryProperty$GameMode/$VALUES net/minecraft/client/telemetry/TelemetryProperty$GameMode/$VALUES +FD: net/minecraft/client/telemetry/TelemetryProperty$GameMode/ADVENTURE net/minecraft/client/telemetry/TelemetryProperty$GameMode/ADVENTURE +FD: net/minecraft/client/telemetry/TelemetryProperty$GameMode/CREATIVE net/minecraft/client/telemetry/TelemetryProperty$GameMode/CREATIVE +FD: net/minecraft/client/telemetry/TelemetryProperty$GameMode/HARDCORE net/minecraft/client/telemetry/TelemetryProperty$GameMode/HARDCORE +FD: net/minecraft/client/telemetry/TelemetryProperty$GameMode/SPECTATOR net/minecraft/client/telemetry/TelemetryProperty$GameMode/SPECTATOR +FD: net/minecraft/client/telemetry/TelemetryProperty$GameMode/SURVIVAL net/minecraft/client/telemetry/TelemetryProperty$GameMode/SURVIVAL +FD: net/minecraft/client/telemetry/TelemetryProperty$GameMode/f_260532_ net/minecraft/client/telemetry/TelemetryProperty$GameMode/CODEC +FD: net/minecraft/client/telemetry/TelemetryProperty$GameMode/f_260535_ net/minecraft/client/telemetry/TelemetryProperty$GameMode/key +FD: net/minecraft/client/telemetry/TelemetryProperty$GameMode/f_260720_ net/minecraft/client/telemetry/TelemetryProperty$GameMode/id +FD: net/minecraft/client/telemetry/TelemetryProperty$ServerType/$VALUES net/minecraft/client/telemetry/TelemetryProperty$ServerType/$VALUES +FD: net/minecraft/client/telemetry/TelemetryProperty$ServerType/LOCAL net/minecraft/client/telemetry/TelemetryProperty$ServerType/LOCAL +FD: net/minecraft/client/telemetry/TelemetryProperty$ServerType/OTHER net/minecraft/client/telemetry/TelemetryProperty$ServerType/OTHER +FD: net/minecraft/client/telemetry/TelemetryProperty$ServerType/REALM net/minecraft/client/telemetry/TelemetryProperty$ServerType/REALM +FD: net/minecraft/client/telemetry/TelemetryProperty$ServerType/f_260545_ net/minecraft/client/telemetry/TelemetryProperty$ServerType/key +FD: net/minecraft/client/telemetry/TelemetryProperty$ServerType/f_260675_ net/minecraft/client/telemetry/TelemetryProperty$ServerType/CODEC +FD: net/minecraft/client/telemetry/TelemetryPropertyMap/f_260483_ net/minecraft/client/telemetry/TelemetryPropertyMap/entries +FD: net/minecraft/client/telemetry/TelemetryPropertyMap$1/f_260681_ net/minecraft/client/telemetry/TelemetryPropertyMap$1/val$properties +FD: net/minecraft/client/telemetry/TelemetryPropertyMap$Builder/f_260436_ net/minecraft/client/telemetry/TelemetryPropertyMap$Builder/entries +FD: net/minecraft/client/telemetry/WorldSessionTelemetryManager/f_260450_ net/minecraft/client/telemetry/WorldSessionTelemetryManager/eventSender +FD: net/minecraft/client/telemetry/WorldSessionTelemetryManager/f_260533_ net/minecraft/client/telemetry/WorldSessionTelemetryManager/worldLoadTimesEvent +FD: net/minecraft/client/telemetry/WorldSessionTelemetryManager/f_260570_ net/minecraft/client/telemetry/WorldSessionTelemetryManager/worldLoadEvent +FD: net/minecraft/client/telemetry/WorldSessionTelemetryManager/f_260578_ net/minecraft/client/telemetry/WorldSessionTelemetryManager/performanceMetricsEvent +FD: net/minecraft/client/telemetry/WorldSessionTelemetryManager/f_260593_ net/minecraft/client/telemetry/WorldSessionTelemetryManager/worldUnloadEvent +FD: net/minecraft/client/telemetry/WorldSessionTelemetryManager/f_260685_ net/minecraft/client/telemetry/WorldSessionTelemetryManager/worldSessionId +FD: net/minecraft/client/telemetry/events/AggregatedTelemetryEvent/f_260454_ net/minecraft/client/telemetry/events/AggregatedTelemetryEvent/SAMPLES_PER_EVENT +FD: net/minecraft/client/telemetry/events/AggregatedTelemetryEvent/f_260520_ net/minecraft/client/telemetry/events/AggregatedTelemetryEvent/ticking +FD: net/minecraft/client/telemetry/events/AggregatedTelemetryEvent/f_260549_ net/minecraft/client/telemetry/events/AggregatedTelemetryEvent/SAMPLE_INTERVAL_MS +FD: net/minecraft/client/telemetry/events/AggregatedTelemetryEvent/f_260572_ net/minecraft/client/telemetry/events/AggregatedTelemetryEvent/sampleCount +FD: net/minecraft/client/telemetry/events/AggregatedTelemetryEvent/f_260699_ net/minecraft/client/telemetry/events/AggregatedTelemetryEvent/lastSampleTime +FD: net/minecraft/client/telemetry/events/GameLoadTimesEvent/f_285561_ net/minecraft/client/telemetry/events/GameLoadTimesEvent/LOGGER +FD: net/minecraft/client/telemetry/events/GameLoadTimesEvent/f_285635_ net/minecraft/client/telemetry/events/GameLoadTimesEvent/INSTANCE +FD: net/minecraft/client/telemetry/events/GameLoadTimesEvent/f_285636_ net/minecraft/client/telemetry/events/GameLoadTimesEvent/timeSource +FD: net/minecraft/client/telemetry/events/GameLoadTimesEvent/f_285644_ net/minecraft/client/telemetry/events/GameLoadTimesEvent/bootstrapTime +FD: net/minecraft/client/telemetry/events/GameLoadTimesEvent/f_285659_ net/minecraft/client/telemetry/events/GameLoadTimesEvent/measurements +FD: net/minecraft/client/telemetry/events/GameLoadTimesEvent$Measurement/f_285578_ net/minecraft/client/telemetry/events/GameLoadTimesEvent$Measurement/millis +FD: net/minecraft/client/telemetry/events/GameLoadTimesEvent$Measurement/f_285618_ net/minecraft/client/telemetry/events/GameLoadTimesEvent$Measurement/CODEC +FD: net/minecraft/client/telemetry/events/PerformanceMetricsEvent/f_260487_ net/minecraft/client/telemetry/events/PerformanceMetricsEvent/frameTimeSamples +FD: net/minecraft/client/telemetry/events/PerformanceMetricsEvent/f_260536_ net/minecraft/client/telemetry/events/PerformanceMetricsEvent/DEDICATED_MEMORY_KB +FD: net/minecraft/client/telemetry/events/PerformanceMetricsEvent/f_260632_ net/minecraft/client/telemetry/events/PerformanceMetricsEvent/fpsSamples +FD: net/minecraft/client/telemetry/events/PerformanceMetricsEvent/f_260646_ net/minecraft/client/telemetry/events/PerformanceMetricsEvent/usedMemorySamples +FD: net/minecraft/client/telemetry/events/WorldLoadEvent/f_260554_ net/minecraft/client/telemetry/events/WorldLoadEvent/gameMode +FD: net/minecraft/client/telemetry/events/WorldLoadEvent/f_260599_ net/minecraft/client/telemetry/events/WorldLoadEvent/serverBrand +FD: net/minecraft/client/telemetry/events/WorldLoadEvent/f_260710_ net/minecraft/client/telemetry/events/WorldLoadEvent/eventSent +FD: net/minecraft/client/telemetry/events/WorldLoadEvent/f_285620_ net/minecraft/client/telemetry/events/WorldLoadEvent/minigameName +FD: net/minecraft/client/telemetry/events/WorldLoadEvent$1/f_260506_ net/minecraft/client/telemetry/events/WorldLoadEvent$1/$SwitchMap$net$minecraft$world$level$GameType +FD: net/minecraft/client/telemetry/events/WorldLoadTimesEvent/f_260580_ net/minecraft/client/telemetry/events/WorldLoadTimesEvent/newWorld +FD: net/minecraft/client/telemetry/events/WorldLoadTimesEvent/f_260669_ net/minecraft/client/telemetry/events/WorldLoadTimesEvent/worldLoadDuration +FD: net/minecraft/client/telemetry/events/WorldUnloadEvent/f_260539_ net/minecraft/client/telemetry/events/WorldUnloadEvent/worldLoadedTime +FD: net/minecraft/client/telemetry/events/WorldUnloadEvent/f_260583_ net/minecraft/client/telemetry/events/WorldUnloadEvent/lastGameTime +FD: net/minecraft/client/telemetry/events/WorldUnloadEvent/f_260639_ net/minecraft/client/telemetry/events/WorldUnloadEvent/totalTicks +FD: net/minecraft/client/telemetry/events/WorldUnloadEvent/f_263131_ net/minecraft/client/telemetry/events/WorldUnloadEvent/NOT_TRACKING_TIME +FD: net/minecraft/client/tutorial/BundleTutorial/f_174999_ net/minecraft/client/tutorial/BundleTutorial/tutorial +FD: net/minecraft/client/tutorial/BundleTutorial/f_175000_ net/minecraft/client/tutorial/BundleTutorial/options +FD: net/minecraft/client/tutorial/BundleTutorial/f_175001_ net/minecraft/client/tutorial/BundleTutorial/toast +FD: net/minecraft/client/tutorial/CraftPlanksTutorialStep/f_120460_ net/minecraft/client/tutorial/CraftPlanksTutorialStep/CRAFT_TITLE +FD: net/minecraft/client/tutorial/CraftPlanksTutorialStep/f_120461_ net/minecraft/client/tutorial/CraftPlanksTutorialStep/CRAFT_DESCRIPTION +FD: net/minecraft/client/tutorial/CraftPlanksTutorialStep/f_120462_ net/minecraft/client/tutorial/CraftPlanksTutorialStep/tutorial +FD: net/minecraft/client/tutorial/CraftPlanksTutorialStep/f_120463_ net/minecraft/client/tutorial/CraftPlanksTutorialStep/toast +FD: net/minecraft/client/tutorial/CraftPlanksTutorialStep/f_120464_ net/minecraft/client/tutorial/CraftPlanksTutorialStep/timeWaiting +FD: net/minecraft/client/tutorial/CraftPlanksTutorialStep/f_175011_ net/minecraft/client/tutorial/CraftPlanksTutorialStep/HINT_DELAY +FD: net/minecraft/client/tutorial/FindTreeTutorialStepInstance/f_120489_ net/minecraft/client/tutorial/FindTreeTutorialStepInstance/TITLE +FD: net/minecraft/client/tutorial/FindTreeTutorialStepInstance/f_120490_ net/minecraft/client/tutorial/FindTreeTutorialStepInstance/DESCRIPTION +FD: net/minecraft/client/tutorial/FindTreeTutorialStepInstance/f_120491_ net/minecraft/client/tutorial/FindTreeTutorialStepInstance/tutorial +FD: net/minecraft/client/tutorial/FindTreeTutorialStepInstance/f_120492_ net/minecraft/client/tutorial/FindTreeTutorialStepInstance/toast +FD: net/minecraft/client/tutorial/FindTreeTutorialStepInstance/f_120493_ net/minecraft/client/tutorial/FindTreeTutorialStepInstance/timeWaiting +FD: net/minecraft/client/tutorial/FindTreeTutorialStepInstance/f_175012_ net/minecraft/client/tutorial/FindTreeTutorialStepInstance/HINT_DELAY +FD: net/minecraft/client/tutorial/MovementTutorialStepInstance/f_120506_ net/minecraft/client/tutorial/MovementTutorialStepInstance/MOVE_TITLE +FD: net/minecraft/client/tutorial/MovementTutorialStepInstance/f_120507_ net/minecraft/client/tutorial/MovementTutorialStepInstance/MOVE_DESCRIPTION +FD: net/minecraft/client/tutorial/MovementTutorialStepInstance/f_120508_ net/minecraft/client/tutorial/MovementTutorialStepInstance/LOOK_TITLE +FD: net/minecraft/client/tutorial/MovementTutorialStepInstance/f_120509_ net/minecraft/client/tutorial/MovementTutorialStepInstance/LOOK_DESCRIPTION +FD: net/minecraft/client/tutorial/MovementTutorialStepInstance/f_120510_ net/minecraft/client/tutorial/MovementTutorialStepInstance/tutorial +FD: net/minecraft/client/tutorial/MovementTutorialStepInstance/f_120511_ net/minecraft/client/tutorial/MovementTutorialStepInstance/moveToast +FD: net/minecraft/client/tutorial/MovementTutorialStepInstance/f_120512_ net/minecraft/client/tutorial/MovementTutorialStepInstance/lookToast +FD: net/minecraft/client/tutorial/MovementTutorialStepInstance/f_120513_ net/minecraft/client/tutorial/MovementTutorialStepInstance/timeWaiting +FD: net/minecraft/client/tutorial/MovementTutorialStepInstance/f_120514_ net/minecraft/client/tutorial/MovementTutorialStepInstance/timeMoved +FD: net/minecraft/client/tutorial/MovementTutorialStepInstance/f_120515_ net/minecraft/client/tutorial/MovementTutorialStepInstance/timeLooked +FD: net/minecraft/client/tutorial/MovementTutorialStepInstance/f_120516_ net/minecraft/client/tutorial/MovementTutorialStepInstance/moved +FD: net/minecraft/client/tutorial/MovementTutorialStepInstance/f_120517_ net/minecraft/client/tutorial/MovementTutorialStepInstance/turned +FD: net/minecraft/client/tutorial/MovementTutorialStepInstance/f_120518_ net/minecraft/client/tutorial/MovementTutorialStepInstance/moveCompleted +FD: net/minecraft/client/tutorial/MovementTutorialStepInstance/f_120519_ net/minecraft/client/tutorial/MovementTutorialStepInstance/lookCompleted +FD: net/minecraft/client/tutorial/MovementTutorialStepInstance/f_175013_ net/minecraft/client/tutorial/MovementTutorialStepInstance/MINIMUM_TIME_MOVED +FD: net/minecraft/client/tutorial/MovementTutorialStepInstance/f_175014_ net/minecraft/client/tutorial/MovementTutorialStepInstance/MINIMUM_TIME_LOOKED +FD: net/minecraft/client/tutorial/MovementTutorialStepInstance/f_175015_ net/minecraft/client/tutorial/MovementTutorialStepInstance/MOVE_HINT_DELAY +FD: net/minecraft/client/tutorial/MovementTutorialStepInstance/f_175016_ net/minecraft/client/tutorial/MovementTutorialStepInstance/LOOK_HINT_DELAY +FD: net/minecraft/client/tutorial/MovementTutorialStepInstance/f_175017_ net/minecraft/client/tutorial/MovementTutorialStepInstance/INCOMPLETE +FD: net/minecraft/client/tutorial/OpenInventoryTutorialStep/f_120530_ net/minecraft/client/tutorial/OpenInventoryTutorialStep/TITLE +FD: net/minecraft/client/tutorial/OpenInventoryTutorialStep/f_120531_ net/minecraft/client/tutorial/OpenInventoryTutorialStep/DESCRIPTION +FD: net/minecraft/client/tutorial/OpenInventoryTutorialStep/f_120532_ net/minecraft/client/tutorial/OpenInventoryTutorialStep/tutorial +FD: net/minecraft/client/tutorial/OpenInventoryTutorialStep/f_120533_ net/minecraft/client/tutorial/OpenInventoryTutorialStep/toast +FD: net/minecraft/client/tutorial/OpenInventoryTutorialStep/f_120534_ net/minecraft/client/tutorial/OpenInventoryTutorialStep/timeWaiting +FD: net/minecraft/client/tutorial/OpenInventoryTutorialStep/f_175018_ net/minecraft/client/tutorial/OpenInventoryTutorialStep/HINT_DELAY +FD: net/minecraft/client/tutorial/PunchTreeTutorialStepInstance/f_120541_ net/minecraft/client/tutorial/PunchTreeTutorialStepInstance/TITLE +FD: net/minecraft/client/tutorial/PunchTreeTutorialStepInstance/f_120542_ net/minecraft/client/tutorial/PunchTreeTutorialStepInstance/DESCRIPTION +FD: net/minecraft/client/tutorial/PunchTreeTutorialStepInstance/f_120543_ net/minecraft/client/tutorial/PunchTreeTutorialStepInstance/tutorial +FD: net/minecraft/client/tutorial/PunchTreeTutorialStepInstance/f_120544_ net/minecraft/client/tutorial/PunchTreeTutorialStepInstance/toast +FD: net/minecraft/client/tutorial/PunchTreeTutorialStepInstance/f_120545_ net/minecraft/client/tutorial/PunchTreeTutorialStepInstance/timeWaiting +FD: net/minecraft/client/tutorial/PunchTreeTutorialStepInstance/f_120546_ net/minecraft/client/tutorial/PunchTreeTutorialStepInstance/resetCount +FD: net/minecraft/client/tutorial/PunchTreeTutorialStepInstance/f_175019_ net/minecraft/client/tutorial/PunchTreeTutorialStepInstance/HINT_DELAY +FD: net/minecraft/client/tutorial/Tutorial/f_120559_ net/minecraft/client/tutorial/Tutorial/minecraft +FD: net/minecraft/client/tutorial/Tutorial/f_120560_ net/minecraft/client/tutorial/Tutorial/instance +FD: net/minecraft/client/tutorial/Tutorial/f_120561_ net/minecraft/client/tutorial/Tutorial/timedToasts +FD: net/minecraft/client/tutorial/Tutorial/f_175020_ net/minecraft/client/tutorial/Tutorial/bundleTutorial +FD: net/minecraft/client/tutorial/Tutorial$TimedToast/f_120599_ net/minecraft/client/tutorial/Tutorial$TimedToast/toast +FD: net/minecraft/client/tutorial/Tutorial$TimedToast/f_120600_ net/minecraft/client/tutorial/Tutorial$TimedToast/durationTicks +FD: net/minecraft/client/tutorial/Tutorial$TimedToast/f_120601_ net/minecraft/client/tutorial/Tutorial$TimedToast/progress +FD: net/minecraft/client/tutorial/TutorialSteps/$VALUES net/minecraft/client/tutorial/TutorialSteps/$VALUES +FD: net/minecraft/client/tutorial/TutorialSteps/CRAFT_PLANKS net/minecraft/client/tutorial/TutorialSteps/CRAFT_PLANKS +FD: net/minecraft/client/tutorial/TutorialSteps/FIND_TREE net/minecraft/client/tutorial/TutorialSteps/FIND_TREE +FD: net/minecraft/client/tutorial/TutorialSteps/MOVEMENT net/minecraft/client/tutorial/TutorialSteps/MOVEMENT +FD: net/minecraft/client/tutorial/TutorialSteps/NONE net/minecraft/client/tutorial/TutorialSteps/NONE +FD: net/minecraft/client/tutorial/TutorialSteps/OPEN_INVENTORY net/minecraft/client/tutorial/TutorialSteps/OPEN_INVENTORY +FD: net/minecraft/client/tutorial/TutorialSteps/PUNCH_TREE net/minecraft/client/tutorial/TutorialSteps/PUNCH_TREE +FD: net/minecraft/client/tutorial/TutorialSteps/f_120630_ net/minecraft/client/tutorial/TutorialSteps/name +FD: net/minecraft/client/tutorial/TutorialSteps/f_120631_ net/minecraft/client/tutorial/TutorialSteps/constructor +FD: net/minecraft/commands/BrigadierExceptions/f_77128_ net/minecraft/commands/BrigadierExceptions/DISPATCHER_PARSE_EXCEPTION +FD: net/minecraft/commands/BrigadierExceptions/f_77129_ net/minecraft/commands/BrigadierExceptions/DOUBLE_TOO_SMALL +FD: net/minecraft/commands/BrigadierExceptions/f_77130_ net/minecraft/commands/BrigadierExceptions/DOUBLE_TOO_BIG +FD: net/minecraft/commands/BrigadierExceptions/f_77131_ net/minecraft/commands/BrigadierExceptions/FLOAT_TOO_SMALL +FD: net/minecraft/commands/BrigadierExceptions/f_77132_ net/minecraft/commands/BrigadierExceptions/FLOAT_TOO_BIG +FD: net/minecraft/commands/BrigadierExceptions/f_77133_ net/minecraft/commands/BrigadierExceptions/INTEGER_TOO_SMALL +FD: net/minecraft/commands/BrigadierExceptions/f_77134_ net/minecraft/commands/BrigadierExceptions/INTEGER_TOO_BIG +FD: net/minecraft/commands/BrigadierExceptions/f_77135_ net/minecraft/commands/BrigadierExceptions/LONG_TOO_SMALL +FD: net/minecraft/commands/BrigadierExceptions/f_77136_ net/minecraft/commands/BrigadierExceptions/LONG_TOO_BIG +FD: net/minecraft/commands/BrigadierExceptions/f_77137_ net/minecraft/commands/BrigadierExceptions/LITERAL_INCORRECT +FD: net/minecraft/commands/BrigadierExceptions/f_77138_ net/minecraft/commands/BrigadierExceptions/READER_EXPECTED_START_OF_QUOTE +FD: net/minecraft/commands/BrigadierExceptions/f_77139_ net/minecraft/commands/BrigadierExceptions/READER_EXPECTED_END_OF_QUOTE +FD: net/minecraft/commands/BrigadierExceptions/f_77140_ net/minecraft/commands/BrigadierExceptions/READER_INVALID_ESCAPE +FD: net/minecraft/commands/BrigadierExceptions/f_77141_ net/minecraft/commands/BrigadierExceptions/READER_INVALID_BOOL +FD: net/minecraft/commands/BrigadierExceptions/f_77142_ net/minecraft/commands/BrigadierExceptions/READER_INVALID_INT +FD: net/minecraft/commands/BrigadierExceptions/f_77143_ net/minecraft/commands/BrigadierExceptions/READER_EXPECTED_INT +FD: net/minecraft/commands/BrigadierExceptions/f_77144_ net/minecraft/commands/BrigadierExceptions/READER_INVALID_LONG +FD: net/minecraft/commands/BrigadierExceptions/f_77145_ net/minecraft/commands/BrigadierExceptions/READER_EXPECTED_LONG +FD: net/minecraft/commands/BrigadierExceptions/f_77146_ net/minecraft/commands/BrigadierExceptions/READER_INVALID_DOUBLE +FD: net/minecraft/commands/BrigadierExceptions/f_77147_ net/minecraft/commands/BrigadierExceptions/READER_EXPECTED_DOUBLE +FD: net/minecraft/commands/BrigadierExceptions/f_77148_ net/minecraft/commands/BrigadierExceptions/READER_INVALID_FLOAT +FD: net/minecraft/commands/BrigadierExceptions/f_77149_ net/minecraft/commands/BrigadierExceptions/READER_EXPECTED_FLOAT +FD: net/minecraft/commands/BrigadierExceptions/f_77150_ net/minecraft/commands/BrigadierExceptions/READER_EXPECTED_BOOL +FD: net/minecraft/commands/BrigadierExceptions/f_77151_ net/minecraft/commands/BrigadierExceptions/READER_EXPECTED_SYMBOL +FD: net/minecraft/commands/BrigadierExceptions/f_77152_ net/minecraft/commands/BrigadierExceptions/DISPATCHER_UNKNOWN_COMMAND +FD: net/minecraft/commands/BrigadierExceptions/f_77153_ net/minecraft/commands/BrigadierExceptions/DISPATCHER_UNKNOWN_ARGUMENT +FD: net/minecraft/commands/BrigadierExceptions/f_77154_ net/minecraft/commands/BrigadierExceptions/DISPATCHER_EXPECTED_ARGUMENT_SEPARATOR +FD: net/minecraft/commands/CommandBuildContext$1/f_254659_ net/minecraft/commands/CommandBuildContext$1/val$enabledFeatures +FD: net/minecraft/commands/CommandBuildContext$1/f_254736_ net/minecraft/commands/CommandBuildContext$1/val$access +FD: net/minecraft/commands/CommandBuildContext$2/f_254623_ net/minecraft/commands/CommandBuildContext$2/missingTagAccessPolicy +FD: net/minecraft/commands/CommandBuildContext$2/f_254628_ net/minecraft/commands/CommandBuildContext$2/val$enabledFeatures +FD: net/minecraft/commands/CommandBuildContext$2/f_254691_ net/minecraft/commands/CommandBuildContext$2/val$registryAccess +FD: net/minecraft/commands/CommandBuildContext$2$1/f_254660_ net/minecraft/commands/CommandBuildContext$2$1/val$originalLookup +FD: net/minecraft/commands/CommandBuildContext$2$1/f_254666_ net/minecraft/commands/CommandBuildContext$2$1/this$0 +FD: net/minecraft/commands/CommandBuildContext$2$1/f_254686_ net/minecraft/commands/CommandBuildContext$2$1/val$originalTagAddingLookup +FD: net/minecraft/commands/CommandBuildContext$3/f_254651_ net/minecraft/commands/CommandBuildContext$3/$SwitchMap$net$minecraft$commands$CommandBuildContext$MissingTagAccessPolicy +FD: net/minecraft/commands/CommandBuildContext$MissingTagAccessPolicy/$VALUES net/minecraft/commands/CommandBuildContext$MissingTagAccessPolicy/$VALUES +FD: net/minecraft/commands/CommandBuildContext$MissingTagAccessPolicy/CREATE_NEW net/minecraft/commands/CommandBuildContext$MissingTagAccessPolicy/CREATE_NEW +FD: net/minecraft/commands/CommandBuildContext$MissingTagAccessPolicy/FAIL net/minecraft/commands/CommandBuildContext$MissingTagAccessPolicy/FAIL +FD: net/minecraft/commands/CommandFunction/f_77976_ net/minecraft/commands/CommandFunction/entries +FD: net/minecraft/commands/CommandFunction/f_77977_ net/minecraft/commands/CommandFunction/id +FD: net/minecraft/commands/CommandFunction$CacheableFunction/f_77990_ net/minecraft/commands/CommandFunction$CacheableFunction/NONE +FD: net/minecraft/commands/CommandFunction$CacheableFunction/f_77991_ net/minecraft/commands/CommandFunction$CacheableFunction/id +FD: net/minecraft/commands/CommandFunction$CacheableFunction/f_77992_ net/minecraft/commands/CommandFunction$CacheableFunction/resolved +FD: net/minecraft/commands/CommandFunction$CacheableFunction/f_77993_ net/minecraft/commands/CommandFunction$CacheableFunction/function +FD: net/minecraft/commands/CommandFunction$CommandEntry/f_78004_ net/minecraft/commands/CommandFunction$CommandEntry/parse +FD: net/minecraft/commands/CommandFunction$FunctionEntry/f_78017_ net/minecraft/commands/CommandFunction$FunctionEntry/function +FD: net/minecraft/commands/CommandRuntimeException/f_79223_ net/minecraft/commands/CommandRuntimeException/message +FD: net/minecraft/commands/CommandSigningContext/f_242494_ net/minecraft/commands/CommandSigningContext/ANONYMOUS +FD: net/minecraft/commands/CommandSigningContext$SignedArguments/f_242498_ net/minecraft/commands/CommandSigningContext$SignedArguments/arguments +FD: net/minecraft/commands/CommandSource/f_80164_ net/minecraft/commands/CommandSource/NULL +FD: net/minecraft/commands/CommandSourceStack/f_230878_ net/minecraft/commands/CommandSourceStack/signingContext +FD: net/minecraft/commands/CommandSourceStack/f_241659_ net/minecraft/commands/CommandSourceStack/chatMessageChainer +FD: net/minecraft/commands/CommandSourceStack/f_279552_ net/minecraft/commands/CommandSourceStack/returnValueConsumer +FD: net/minecraft/commands/CommandSourceStack/f_81286_ net/minecraft/commands/CommandSourceStack/ERROR_NOT_PLAYER +FD: net/minecraft/commands/CommandSourceStack/f_81287_ net/minecraft/commands/CommandSourceStack/ERROR_NOT_ENTITY +FD: net/minecraft/commands/CommandSourceStack/f_81288_ net/minecraft/commands/CommandSourceStack/source +FD: net/minecraft/commands/CommandSourceStack/f_81289_ net/minecraft/commands/CommandSourceStack/worldPosition +FD: net/minecraft/commands/CommandSourceStack/f_81290_ net/minecraft/commands/CommandSourceStack/level +FD: net/minecraft/commands/CommandSourceStack/f_81291_ net/minecraft/commands/CommandSourceStack/permissionLevel +FD: net/minecraft/commands/CommandSourceStack/f_81292_ net/minecraft/commands/CommandSourceStack/textName +FD: net/minecraft/commands/CommandSourceStack/f_81293_ net/minecraft/commands/CommandSourceStack/displayName +FD: net/minecraft/commands/CommandSourceStack/f_81294_ net/minecraft/commands/CommandSourceStack/server +FD: net/minecraft/commands/CommandSourceStack/f_81295_ net/minecraft/commands/CommandSourceStack/silent +FD: net/minecraft/commands/CommandSourceStack/f_81296_ net/minecraft/commands/CommandSourceStack/entity +FD: net/minecraft/commands/CommandSourceStack/f_81297_ net/minecraft/commands/CommandSourceStack/consumer +FD: net/minecraft/commands/CommandSourceStack/f_81298_ net/minecraft/commands/CommandSourceStack/anchor +FD: net/minecraft/commands/CommandSourceStack/f_81299_ net/minecraft/commands/CommandSourceStack/rotation +FD: net/minecraft/commands/Commands/f_165682_ net/minecraft/commands/Commands/LEVEL_ALL +FD: net/minecraft/commands/Commands/f_165683_ net/minecraft/commands/Commands/LEVEL_MODERATORS +FD: net/minecraft/commands/Commands/f_165684_ net/minecraft/commands/Commands/LEVEL_GAMEMASTERS +FD: net/minecraft/commands/Commands/f_165685_ net/minecraft/commands/Commands/LEVEL_ADMINS +FD: net/minecraft/commands/Commands/f_165686_ net/minecraft/commands/Commands/LEVEL_OWNERS +FD: net/minecraft/commands/Commands/f_82089_ net/minecraft/commands/Commands/LOGGER +FD: net/minecraft/commands/Commands/f_82090_ net/minecraft/commands/Commands/dispatcher +FD: net/minecraft/commands/Commands$1/f_254752_ net/minecraft/commands/Commands$1/val$registries +FD: net/minecraft/commands/Commands$1$1/f_254699_ net/minecraft/commands/Commands$1$1/val$original +FD: net/minecraft/commands/Commands$1$1/f_254721_ net/minecraft/commands/Commands$1$1/this$0 +FD: net/minecraft/commands/Commands$CommandSelection/$VALUES net/minecraft/commands/Commands$CommandSelection/$VALUES +FD: net/minecraft/commands/Commands$CommandSelection/ALL net/minecraft/commands/Commands$CommandSelection/ALL +FD: net/minecraft/commands/Commands$CommandSelection/DEDICATED net/minecraft/commands/Commands$CommandSelection/DEDICATED +FD: net/minecraft/commands/Commands$CommandSelection/INTEGRATED net/minecraft/commands/Commands$CommandSelection/INTEGRATED +FD: net/minecraft/commands/Commands$CommandSelection/f_82144_ net/minecraft/commands/Commands$CommandSelection/includeIntegrated +FD: net/minecraft/commands/Commands$CommandSelection/f_82145_ net/minecraft/commands/Commands$CommandSelection/includeDedicated +FD: net/minecraft/commands/SharedSuggestionProvider$ElementSuggestionType/$VALUES net/minecraft/commands/SharedSuggestionProvider$ElementSuggestionType/$VALUES +FD: net/minecraft/commands/SharedSuggestionProvider$ElementSuggestionType/ALL net/minecraft/commands/SharedSuggestionProvider$ElementSuggestionType/ALL +FD: net/minecraft/commands/SharedSuggestionProvider$ElementSuggestionType/ELEMENTS net/minecraft/commands/SharedSuggestionProvider$ElementSuggestionType/ELEMENTS +FD: net/minecraft/commands/SharedSuggestionProvider$ElementSuggestionType/TAGS net/minecraft/commands/SharedSuggestionProvider$ElementSuggestionType/TAGS +FD: net/minecraft/commands/SharedSuggestionProvider$TextCoordinates/f_82987_ net/minecraft/commands/SharedSuggestionProvider$TextCoordinates/DEFAULT_LOCAL +FD: net/minecraft/commands/SharedSuggestionProvider$TextCoordinates/f_82988_ net/minecraft/commands/SharedSuggestionProvider$TextCoordinates/DEFAULT_GLOBAL +FD: net/minecraft/commands/SharedSuggestionProvider$TextCoordinates/f_82989_ net/minecraft/commands/SharedSuggestionProvider$TextCoordinates/x +FD: net/minecraft/commands/SharedSuggestionProvider$TextCoordinates/f_82990_ net/minecraft/commands/SharedSuggestionProvider$TextCoordinates/y +FD: net/minecraft/commands/SharedSuggestionProvider$TextCoordinates/f_82991_ net/minecraft/commands/SharedSuggestionProvider$TextCoordinates/z +FD: net/minecraft/commands/arguments/AngleArgument/f_166217_ net/minecraft/commands/arguments/AngleArgument/ERROR_INVALID_ANGLE +FD: net/minecraft/commands/arguments/AngleArgument/f_83803_ net/minecraft/commands/arguments/AngleArgument/ERROR_NOT_COMPLETE +FD: net/minecraft/commands/arguments/AngleArgument/f_83804_ net/minecraft/commands/arguments/AngleArgument/EXAMPLES +FD: net/minecraft/commands/arguments/AngleArgument$SingleAngle/f_83816_ net/minecraft/commands/arguments/AngleArgument$SingleAngle/angle +FD: net/minecraft/commands/arguments/AngleArgument$SingleAngle/f_83817_ net/minecraft/commands/arguments/AngleArgument$SingleAngle/isRelative +FD: net/minecraft/commands/arguments/ArgumentSignatures/f_231046_ net/minecraft/commands/arguments/ArgumentSignatures/MAX_ARGUMENT_COUNT +FD: net/minecraft/commands/arguments/ArgumentSignatures/f_231047_ net/minecraft/commands/arguments/ArgumentSignatures/MAX_ARGUMENT_NAME_LENGTH +FD: net/minecraft/commands/arguments/ArgumentSignatures/f_240907_ net/minecraft/commands/arguments/ArgumentSignatures/EMPTY +FD: net/minecraft/commands/arguments/ArgumentSignatures/f_240908_ net/minecraft/commands/arguments/ArgumentSignatures/entries +FD: net/minecraft/commands/arguments/ArgumentSignatures$Entry/f_240879_ net/minecraft/commands/arguments/ArgumentSignatures$Entry/signature +FD: net/minecraft/commands/arguments/ArgumentSignatures$Entry/f_240910_ net/minecraft/commands/arguments/ArgumentSignatures$Entry/name +FD: net/minecraft/commands/arguments/ColorArgument/f_85459_ net/minecraft/commands/arguments/ColorArgument/ERROR_INVALID_VALUE +FD: net/minecraft/commands/arguments/ColorArgument/f_85460_ net/minecraft/commands/arguments/ColorArgument/EXAMPLES +FD: net/minecraft/commands/arguments/ComponentArgument/f_87110_ net/minecraft/commands/arguments/ComponentArgument/ERROR_INVALID_JSON +FD: net/minecraft/commands/arguments/ComponentArgument/f_87111_ net/minecraft/commands/arguments/ComponentArgument/EXAMPLES +FD: net/minecraft/commands/arguments/CompoundTagArgument/f_87654_ net/minecraft/commands/arguments/CompoundTagArgument/EXAMPLES +FD: net/minecraft/commands/arguments/DimensionArgument/f_88801_ net/minecraft/commands/arguments/DimensionArgument/EXAMPLES +FD: net/minecraft/commands/arguments/DimensionArgument/f_88802_ net/minecraft/commands/arguments/DimensionArgument/ERROR_INVALID_VALUE +FD: net/minecraft/commands/arguments/EntityAnchorArgument/f_90346_ net/minecraft/commands/arguments/EntityAnchorArgument/EXAMPLES +FD: net/minecraft/commands/arguments/EntityAnchorArgument/f_90347_ net/minecraft/commands/arguments/EntityAnchorArgument/ERROR_INVALID +FD: net/minecraft/commands/arguments/EntityAnchorArgument$Anchor/$VALUES net/minecraft/commands/arguments/EntityAnchorArgument$Anchor/$VALUES +FD: net/minecraft/commands/arguments/EntityAnchorArgument$Anchor/EYES net/minecraft/commands/arguments/EntityAnchorArgument$Anchor/EYES +FD: net/minecraft/commands/arguments/EntityAnchorArgument$Anchor/FEET net/minecraft/commands/arguments/EntityAnchorArgument$Anchor/FEET +FD: net/minecraft/commands/arguments/EntityAnchorArgument$Anchor/f_90366_ net/minecraft/commands/arguments/EntityAnchorArgument$Anchor/BY_NAME +FD: net/minecraft/commands/arguments/EntityAnchorArgument$Anchor/f_90367_ net/minecraft/commands/arguments/EntityAnchorArgument$Anchor/name +FD: net/minecraft/commands/arguments/EntityAnchorArgument$Anchor/f_90368_ net/minecraft/commands/arguments/EntityAnchorArgument$Anchor/transform +FD: net/minecraft/commands/arguments/EntityArgument/f_91436_ net/minecraft/commands/arguments/EntityArgument/ERROR_NOT_SINGLE_ENTITY +FD: net/minecraft/commands/arguments/EntityArgument/f_91437_ net/minecraft/commands/arguments/EntityArgument/ERROR_NOT_SINGLE_PLAYER +FD: net/minecraft/commands/arguments/EntityArgument/f_91438_ net/minecraft/commands/arguments/EntityArgument/ERROR_ONLY_PLAYERS_ALLOWED +FD: net/minecraft/commands/arguments/EntityArgument/f_91439_ net/minecraft/commands/arguments/EntityArgument/NO_ENTITIES_FOUND +FD: net/minecraft/commands/arguments/EntityArgument/f_91440_ net/minecraft/commands/arguments/EntityArgument/NO_PLAYERS_FOUND +FD: net/minecraft/commands/arguments/EntityArgument/f_91441_ net/minecraft/commands/arguments/EntityArgument/ERROR_SELECTORS_NOT_ALLOWED +FD: net/minecraft/commands/arguments/EntityArgument/f_91442_ net/minecraft/commands/arguments/EntityArgument/EXAMPLES +FD: net/minecraft/commands/arguments/EntityArgument/f_91443_ net/minecraft/commands/arguments/EntityArgument/single +FD: net/minecraft/commands/arguments/EntityArgument/f_91444_ net/minecraft/commands/arguments/EntityArgument/playersOnly +FD: net/minecraft/commands/arguments/EntityArgument$Info/f_231262_ net/minecraft/commands/arguments/EntityArgument$Info/FLAG_SINGLE +FD: net/minecraft/commands/arguments/EntityArgument$Info/f_231263_ net/minecraft/commands/arguments/EntityArgument$Info/FLAG_PLAYERS_ONLY +FD: net/minecraft/commands/arguments/EntityArgument$Info$Template/f_231285_ net/minecraft/commands/arguments/EntityArgument$Info$Template/this$0 +FD: net/minecraft/commands/arguments/EntityArgument$Info$Template/f_231286_ net/minecraft/commands/arguments/EntityArgument$Info$Template/single +FD: net/minecraft/commands/arguments/EntityArgument$Info$Template/f_231287_ net/minecraft/commands/arguments/EntityArgument$Info$Template/playersOnly +FD: net/minecraft/commands/arguments/GameModeArgument/f_256859_ net/minecraft/commands/arguments/GameModeArgument/ERROR_INVALID +FD: net/minecraft/commands/arguments/GameModeArgument/f_256868_ net/minecraft/commands/arguments/GameModeArgument/VALUES +FD: net/minecraft/commands/arguments/GameModeArgument/f_257050_ net/minecraft/commands/arguments/GameModeArgument/EXAMPLES +FD: net/minecraft/commands/arguments/GameProfileArgument/f_94580_ net/minecraft/commands/arguments/GameProfileArgument/ERROR_UNKNOWN_PLAYER +FD: net/minecraft/commands/arguments/GameProfileArgument/f_94581_ net/minecraft/commands/arguments/GameProfileArgument/EXAMPLES +FD: net/minecraft/commands/arguments/GameProfileArgument$SelectorResult/f_94603_ net/minecraft/commands/arguments/GameProfileArgument$SelectorResult/selector +FD: net/minecraft/commands/arguments/HeightmapTypeArgument/f_273851_ net/minecraft/commands/arguments/HeightmapTypeArgument/LOWER_CASE_CODEC +FD: net/minecraft/commands/arguments/MessageArgument/f_96829_ net/minecraft/commands/arguments/MessageArgument/EXAMPLES +FD: net/minecraft/commands/arguments/MessageArgument$Message/f_96841_ net/minecraft/commands/arguments/MessageArgument$Message/text +FD: net/minecraft/commands/arguments/MessageArgument$Message/f_96842_ net/minecraft/commands/arguments/MessageArgument$Message/parts +FD: net/minecraft/commands/arguments/MessageArgument$Part/f_96852_ net/minecraft/commands/arguments/MessageArgument$Part/start +FD: net/minecraft/commands/arguments/MessageArgument$Part/f_96853_ net/minecraft/commands/arguments/MessageArgument$Part/end +FD: net/minecraft/commands/arguments/MessageArgument$Part/f_96854_ net/minecraft/commands/arguments/MessageArgument$Part/selector +FD: net/minecraft/commands/arguments/NbtPathArgument/f_169530_ net/minecraft/commands/arguments/NbtPathArgument/INDEX_MATCH_START +FD: net/minecraft/commands/arguments/NbtPathArgument/f_169531_ net/minecraft/commands/arguments/NbtPathArgument/INDEX_MATCH_END +FD: net/minecraft/commands/arguments/NbtPathArgument/f_169532_ net/minecraft/commands/arguments/NbtPathArgument/KEY_MATCH_START +FD: net/minecraft/commands/arguments/NbtPathArgument/f_169533_ net/minecraft/commands/arguments/NbtPathArgument/KEY_MATCH_END +FD: net/minecraft/commands/arguments/NbtPathArgument/f_169534_ net/minecraft/commands/arguments/NbtPathArgument/QUOTED_KEY_START +FD: net/minecraft/commands/arguments/NbtPathArgument/f_263128_ net/minecraft/commands/arguments/NbtPathArgument/ERROR_INVALID_INDEX +FD: net/minecraft/commands/arguments/NbtPathArgument/f_263133_ net/minecraft/commands/arguments/NbtPathArgument/ERROR_DATA_TOO_DEEP +FD: net/minecraft/commands/arguments/NbtPathArgument/f_263135_ net/minecraft/commands/arguments/NbtPathArgument/ERROR_EXPECTED_LIST +FD: net/minecraft/commands/arguments/NbtPathArgument/f_287792_ net/minecraft/commands/arguments/NbtPathArgument/SINGLE_QUOTED_KEY_START +FD: net/minecraft/commands/arguments/NbtPathArgument/f_99482_ net/minecraft/commands/arguments/NbtPathArgument/ERROR_INVALID_NODE +FD: net/minecraft/commands/arguments/NbtPathArgument/f_99483_ net/minecraft/commands/arguments/NbtPathArgument/ERROR_NOTHING_FOUND +FD: net/minecraft/commands/arguments/NbtPathArgument/f_99484_ net/minecraft/commands/arguments/NbtPathArgument/EXAMPLES +FD: net/minecraft/commands/arguments/NbtPathArgument$AllElementsNode/f_99515_ net/minecraft/commands/arguments/NbtPathArgument$AllElementsNode/INSTANCE +FD: net/minecraft/commands/arguments/NbtPathArgument$CompoundChildNode/f_99531_ net/minecraft/commands/arguments/NbtPathArgument$CompoundChildNode/name +FD: net/minecraft/commands/arguments/NbtPathArgument$IndexedElementNode/f_99547_ net/minecraft/commands/arguments/NbtPathArgument$IndexedElementNode/index +FD: net/minecraft/commands/arguments/NbtPathArgument$MatchElementNode/f_99563_ net/minecraft/commands/arguments/NbtPathArgument$MatchElementNode/pattern +FD: net/minecraft/commands/arguments/NbtPathArgument$MatchElementNode/f_99564_ net/minecraft/commands/arguments/NbtPathArgument$MatchElementNode/predicate +FD: net/minecraft/commands/arguments/NbtPathArgument$MatchObjectNode/f_99584_ net/minecraft/commands/arguments/NbtPathArgument$MatchObjectNode/name +FD: net/minecraft/commands/arguments/NbtPathArgument$MatchObjectNode/f_99585_ net/minecraft/commands/arguments/NbtPathArgument$MatchObjectNode/pattern +FD: net/minecraft/commands/arguments/NbtPathArgument$MatchObjectNode/f_99586_ net/minecraft/commands/arguments/NbtPathArgument$MatchObjectNode/predicate +FD: net/minecraft/commands/arguments/NbtPathArgument$MatchRootObjectNode/f_99603_ net/minecraft/commands/arguments/NbtPathArgument$MatchRootObjectNode/predicate +FD: net/minecraft/commands/arguments/NbtPathArgument$NbtPath/f_99619_ net/minecraft/commands/arguments/NbtPathArgument$NbtPath/original +FD: net/minecraft/commands/arguments/NbtPathArgument$NbtPath/f_99620_ net/minecraft/commands/arguments/NbtPathArgument$NbtPath/nodeToOriginalPosition +FD: net/minecraft/commands/arguments/NbtPathArgument$NbtPath/f_99621_ net/minecraft/commands/arguments/NbtPathArgument$NbtPath/nodes +FD: net/minecraft/commands/arguments/NbtTagArgument/f_100656_ net/minecraft/commands/arguments/NbtTagArgument/EXAMPLES +FD: net/minecraft/commands/arguments/ObjectiveArgument/f_101952_ net/minecraft/commands/arguments/ObjectiveArgument/EXAMPLES +FD: net/minecraft/commands/arguments/ObjectiveArgument/f_101953_ net/minecraft/commands/arguments/ObjectiveArgument/ERROR_OBJECTIVE_NOT_FOUND +FD: net/minecraft/commands/arguments/ObjectiveArgument/f_101954_ net/minecraft/commands/arguments/ObjectiveArgument/ERROR_OBJECTIVE_READ_ONLY +FD: net/minecraft/commands/arguments/ObjectiveCriteriaArgument/f_102551_ net/minecraft/commands/arguments/ObjectiveCriteriaArgument/ERROR_INVALID_VALUE +FD: net/minecraft/commands/arguments/ObjectiveCriteriaArgument/f_102552_ net/minecraft/commands/arguments/ObjectiveCriteriaArgument/EXAMPLES +FD: net/minecraft/commands/arguments/OperationArgument/f_103264_ net/minecraft/commands/arguments/OperationArgument/EXAMPLES +FD: net/minecraft/commands/arguments/OperationArgument/f_103265_ net/minecraft/commands/arguments/OperationArgument/ERROR_INVALID_OPERATION +FD: net/minecraft/commands/arguments/OperationArgument/f_103266_ net/minecraft/commands/arguments/OperationArgument/ERROR_DIVIDE_BY_ZERO +FD: net/minecraft/commands/arguments/ParticleArgument/f_103927_ net/minecraft/commands/arguments/ParticleArgument/ERROR_UNKNOWN_PARTICLE +FD: net/minecraft/commands/arguments/ParticleArgument/f_103928_ net/minecraft/commands/arguments/ParticleArgument/EXAMPLES +FD: net/minecraft/commands/arguments/ParticleArgument/f_243802_ net/minecraft/commands/arguments/ParticleArgument/particles +FD: net/minecraft/commands/arguments/RangeArgument$Floats/f_105406_ net/minecraft/commands/arguments/RangeArgument$Floats/EXAMPLES +FD: net/minecraft/commands/arguments/RangeArgument$Ints/f_105414_ net/minecraft/commands/arguments/RangeArgument$Ints/EXAMPLES +FD: net/minecraft/commands/arguments/ResourceArgument/f_243861_ net/minecraft/commands/arguments/ResourceArgument/registryLookup +FD: net/minecraft/commands/arguments/ResourceArgument/f_243885_ net/minecraft/commands/arguments/ResourceArgument/ERROR_INVALID_RESOURCE_TYPE +FD: net/minecraft/commands/arguments/ResourceArgument/f_244234_ net/minecraft/commands/arguments/ResourceArgument/ERROR_NOT_SUMMONABLE_ENTITY +FD: net/minecraft/commands/arguments/ResourceArgument/f_244450_ net/minecraft/commands/arguments/ResourceArgument/ERROR_UNKNOWN_RESOURCE +FD: net/minecraft/commands/arguments/ResourceArgument/f_244573_ net/minecraft/commands/arguments/ResourceArgument/EXAMPLES +FD: net/minecraft/commands/arguments/ResourceArgument/f_244609_ net/minecraft/commands/arguments/ResourceArgument/registryKey +FD: net/minecraft/commands/arguments/ResourceArgument$Info$Template/f_244442_ net/minecraft/commands/arguments/ResourceArgument$Info$Template/this$0 +FD: net/minecraft/commands/arguments/ResourceArgument$Info$Template/f_244472_ net/minecraft/commands/arguments/ResourceArgument$Info$Template/registryKey +FD: net/minecraft/commands/arguments/ResourceKeyArgument/f_212361_ net/minecraft/commands/arguments/ResourceKeyArgument/EXAMPLES +FD: net/minecraft/commands/arguments/ResourceKeyArgument/f_212363_ net/minecraft/commands/arguments/ResourceKeyArgument/ERROR_INVALID_FEATURE +FD: net/minecraft/commands/arguments/ResourceKeyArgument/f_212364_ net/minecraft/commands/arguments/ResourceKeyArgument/registryKey +FD: net/minecraft/commands/arguments/ResourceKeyArgument/f_233246_ net/minecraft/commands/arguments/ResourceKeyArgument/ERROR_INVALID_STRUCTURE +FD: net/minecraft/commands/arguments/ResourceKeyArgument/f_233247_ net/minecraft/commands/arguments/ResourceKeyArgument/ERROR_INVALID_TEMPLATE_POOL +FD: net/minecraft/commands/arguments/ResourceKeyArgument$Info$Template/f_233292_ net/minecraft/commands/arguments/ResourceKeyArgument$Info$Template/this$0 +FD: net/minecraft/commands/arguments/ResourceKeyArgument$Info$Template/f_233293_ net/minecraft/commands/arguments/ResourceKeyArgument$Info$Template/registryKey +FD: net/minecraft/commands/arguments/ResourceLocationArgument/f_106977_ net/minecraft/commands/arguments/ResourceLocationArgument/EXAMPLES +FD: net/minecraft/commands/arguments/ResourceLocationArgument/f_106978_ net/minecraft/commands/arguments/ResourceLocationArgument/ERROR_UNKNOWN_ADVANCEMENT +FD: net/minecraft/commands/arguments/ResourceLocationArgument/f_106979_ net/minecraft/commands/arguments/ResourceLocationArgument/ERROR_UNKNOWN_RECIPE +FD: net/minecraft/commands/arguments/ResourceLocationArgument/f_106980_ net/minecraft/commands/arguments/ResourceLocationArgument/ERROR_UNKNOWN_PREDICATE +FD: net/minecraft/commands/arguments/ResourceLocationArgument/f_171024_ net/minecraft/commands/arguments/ResourceLocationArgument/ERROR_UNKNOWN_ITEM_MODIFIER +FD: net/minecraft/commands/arguments/ResourceOrTagArgument/f_243664_ net/minecraft/commands/arguments/ResourceOrTagArgument/registryLookup +FD: net/minecraft/commands/arguments/ResourceOrTagArgument/f_243833_ net/minecraft/commands/arguments/ResourceOrTagArgument/ERROR_INVALID_TAG_TYPE +FD: net/minecraft/commands/arguments/ResourceOrTagArgument/f_244158_ net/minecraft/commands/arguments/ResourceOrTagArgument/registryKey +FD: net/minecraft/commands/arguments/ResourceOrTagArgument/f_244215_ net/minecraft/commands/arguments/ResourceOrTagArgument/ERROR_UNKNOWN_TAG +FD: net/minecraft/commands/arguments/ResourceOrTagArgument/f_244398_ net/minecraft/commands/arguments/ResourceOrTagArgument/EXAMPLES +FD: net/minecraft/commands/arguments/ResourceOrTagArgument$Info$Template/f_244221_ net/minecraft/commands/arguments/ResourceOrTagArgument$Info$Template/registryKey +FD: net/minecraft/commands/arguments/ResourceOrTagArgument$Info$Template/f_244454_ net/minecraft/commands/arguments/ResourceOrTagArgument$Info$Template/this$0 +FD: net/minecraft/commands/arguments/ResourceOrTagArgument$ResourceResult/f_243689_ net/minecraft/commands/arguments/ResourceOrTagArgument$ResourceResult/value +FD: net/minecraft/commands/arguments/ResourceOrTagArgument$TagResult/f_244078_ net/minecraft/commands/arguments/ResourceOrTagArgument$TagResult/tag +FD: net/minecraft/commands/arguments/ResourceOrTagKeyArgument/f_243745_ net/minecraft/commands/arguments/ResourceOrTagKeyArgument/registryKey +FD: net/minecraft/commands/arguments/ResourceOrTagKeyArgument/f_244586_ net/minecraft/commands/arguments/ResourceOrTagKeyArgument/EXAMPLES +FD: net/minecraft/commands/arguments/ResourceOrTagKeyArgument$Info$Template/f_243844_ net/minecraft/commands/arguments/ResourceOrTagKeyArgument$Info$Template/registryKey +FD: net/minecraft/commands/arguments/ResourceOrTagKeyArgument$Info$Template/f_244288_ net/minecraft/commands/arguments/ResourceOrTagKeyArgument$Info$Template/this$0 +FD: net/minecraft/commands/arguments/ResourceOrTagKeyArgument$ResourceResult/f_243909_ net/minecraft/commands/arguments/ResourceOrTagKeyArgument$ResourceResult/key +FD: net/minecraft/commands/arguments/ResourceOrTagKeyArgument$TagResult/f_244059_ net/minecraft/commands/arguments/ResourceOrTagKeyArgument$TagResult/key +FD: net/minecraft/commands/arguments/ScoreHolderArgument/f_108210_ net/minecraft/commands/arguments/ScoreHolderArgument/SUGGEST_SCORE_HOLDERS +FD: net/minecraft/commands/arguments/ScoreHolderArgument/f_108211_ net/minecraft/commands/arguments/ScoreHolderArgument/EXAMPLES +FD: net/minecraft/commands/arguments/ScoreHolderArgument/f_108212_ net/minecraft/commands/arguments/ScoreHolderArgument/ERROR_NO_RESULTS +FD: net/minecraft/commands/arguments/ScoreHolderArgument/f_108213_ net/minecraft/commands/arguments/ScoreHolderArgument/multiple +FD: net/minecraft/commands/arguments/ScoreHolderArgument$Info/f_233461_ net/minecraft/commands/arguments/ScoreHolderArgument$Info/FLAG_MULTIPLE +FD: net/minecraft/commands/arguments/ScoreHolderArgument$Info$Template/f_233483_ net/minecraft/commands/arguments/ScoreHolderArgument$Info$Template/this$0 +FD: net/minecraft/commands/arguments/ScoreHolderArgument$Info$Template/f_233484_ net/minecraft/commands/arguments/ScoreHolderArgument$Info$Template/multiple +FD: net/minecraft/commands/arguments/ScoreHolderArgument$SelectorResult/f_108254_ net/minecraft/commands/arguments/ScoreHolderArgument$SelectorResult/selector +FD: net/minecraft/commands/arguments/ScoreboardSlotArgument/f_109192_ net/minecraft/commands/arguments/ScoreboardSlotArgument/ERROR_INVALID_VALUE +FD: net/minecraft/commands/arguments/ScoreboardSlotArgument/f_109193_ net/minecraft/commands/arguments/ScoreboardSlotArgument/EXAMPLES +FD: net/minecraft/commands/arguments/SlotArgument/f_111271_ net/minecraft/commands/arguments/SlotArgument/EXAMPLES +FD: net/minecraft/commands/arguments/SlotArgument/f_111272_ net/minecraft/commands/arguments/SlotArgument/ERROR_UNKNOWN_SLOT +FD: net/minecraft/commands/arguments/SlotArgument/f_111273_ net/minecraft/commands/arguments/SlotArgument/SLOTS +FD: net/minecraft/commands/arguments/StringRepresentableArgument/f_234055_ net/minecraft/commands/arguments/StringRepresentableArgument/ERROR_INVALID_VALUE +FD: net/minecraft/commands/arguments/StringRepresentableArgument/f_234056_ net/minecraft/commands/arguments/StringRepresentableArgument/codec +FD: net/minecraft/commands/arguments/StringRepresentableArgument/f_234057_ net/minecraft/commands/arguments/StringRepresentableArgument/values +FD: net/minecraft/commands/arguments/TeamArgument/f_112084_ net/minecraft/commands/arguments/TeamArgument/EXAMPLES +FD: net/minecraft/commands/arguments/TeamArgument/f_112085_ net/minecraft/commands/arguments/TeamArgument/ERROR_TEAM_NOT_FOUND +FD: net/minecraft/commands/arguments/TimeArgument/f_113031_ net/minecraft/commands/arguments/TimeArgument/EXAMPLES +FD: net/minecraft/commands/arguments/TimeArgument/f_113032_ net/minecraft/commands/arguments/TimeArgument/ERROR_INVALID_UNIT +FD: net/minecraft/commands/arguments/TimeArgument/f_113034_ net/minecraft/commands/arguments/TimeArgument/UNITS +FD: net/minecraft/commands/arguments/TimeArgument/f_263648_ net/minecraft/commands/arguments/TimeArgument/ERROR_TICK_COUNT_TOO_LOW +FD: net/minecraft/commands/arguments/TimeArgument/f_263655_ net/minecraft/commands/arguments/TimeArgument/minimum +FD: net/minecraft/commands/arguments/TimeArgument$Info$Template/f_263698_ net/minecraft/commands/arguments/TimeArgument$Info$Template/min +FD: net/minecraft/commands/arguments/TimeArgument$Info$Template/f_263741_ net/minecraft/commands/arguments/TimeArgument$Info$Template/this$0 +FD: net/minecraft/commands/arguments/UuidArgument/f_113845_ net/minecraft/commands/arguments/UuidArgument/ERROR_INVALID_UUID +FD: net/minecraft/commands/arguments/UuidArgument/f_113846_ net/minecraft/commands/arguments/UuidArgument/EXAMPLES +FD: net/minecraft/commands/arguments/UuidArgument/f_113847_ net/minecraft/commands/arguments/UuidArgument/ALLOWED_CHARACTERS +FD: net/minecraft/commands/arguments/blocks/BlockInput/f_114662_ net/minecraft/commands/arguments/blocks/BlockInput/state +FD: net/minecraft/commands/arguments/blocks/BlockInput/f_114663_ net/minecraft/commands/arguments/blocks/BlockInput/properties +FD: net/minecraft/commands/arguments/blocks/BlockInput/f_114664_ net/minecraft/commands/arguments/blocks/BlockInput/tag +FD: net/minecraft/commands/arguments/blocks/BlockPredicateArgument/f_115566_ net/minecraft/commands/arguments/blocks/BlockPredicateArgument/EXAMPLES +FD: net/minecraft/commands/arguments/blocks/BlockPredicateArgument/f_234624_ net/minecraft/commands/arguments/blocks/BlockPredicateArgument/blocks +FD: net/minecraft/commands/arguments/blocks/BlockPredicateArgument$BlockPredicate/f_115591_ net/minecraft/commands/arguments/blocks/BlockPredicateArgument$BlockPredicate/state +FD: net/minecraft/commands/arguments/blocks/BlockPredicateArgument$BlockPredicate/f_115592_ net/minecraft/commands/arguments/blocks/BlockPredicateArgument$BlockPredicate/properties +FD: net/minecraft/commands/arguments/blocks/BlockPredicateArgument$BlockPredicate/f_115593_ net/minecraft/commands/arguments/blocks/BlockPredicateArgument$BlockPredicate/nbt +FD: net/minecraft/commands/arguments/blocks/BlockPredicateArgument$TagPredicate/f_115604_ net/minecraft/commands/arguments/blocks/BlockPredicateArgument$TagPredicate/tag +FD: net/minecraft/commands/arguments/blocks/BlockPredicateArgument$TagPredicate/f_115605_ net/minecraft/commands/arguments/blocks/BlockPredicateArgument$TagPredicate/nbt +FD: net/minecraft/commands/arguments/blocks/BlockPredicateArgument$TagPredicate/f_115606_ net/minecraft/commands/arguments/blocks/BlockPredicateArgument$TagPredicate/vagueProperties +FD: net/minecraft/commands/arguments/blocks/BlockStateArgument/f_116117_ net/minecraft/commands/arguments/blocks/BlockStateArgument/EXAMPLES +FD: net/minecraft/commands/arguments/blocks/BlockStateArgument/f_234647_ net/minecraft/commands/arguments/blocks/BlockStateArgument/blocks +FD: net/minecraft/commands/arguments/blocks/BlockStateParser/f_116741_ net/minecraft/commands/arguments/blocks/BlockStateParser/ERROR_NO_TAGS_ALLOWED +FD: net/minecraft/commands/arguments/blocks/BlockStateParser/f_116742_ net/minecraft/commands/arguments/blocks/BlockStateParser/ERROR_UNKNOWN_BLOCK +FD: net/minecraft/commands/arguments/blocks/BlockStateParser/f_116743_ net/minecraft/commands/arguments/blocks/BlockStateParser/ERROR_UNKNOWN_PROPERTY +FD: net/minecraft/commands/arguments/blocks/BlockStateParser/f_116744_ net/minecraft/commands/arguments/blocks/BlockStateParser/ERROR_DUPLICATE_PROPERTY +FD: net/minecraft/commands/arguments/blocks/BlockStateParser/f_116745_ net/minecraft/commands/arguments/blocks/BlockStateParser/ERROR_INVALID_VALUE +FD: net/minecraft/commands/arguments/blocks/BlockStateParser/f_116746_ net/minecraft/commands/arguments/blocks/BlockStateParser/ERROR_EXPECTED_VALUE +FD: net/minecraft/commands/arguments/blocks/BlockStateParser/f_116747_ net/minecraft/commands/arguments/blocks/BlockStateParser/ERROR_EXPECTED_END_OF_PROPERTIES +FD: net/minecraft/commands/arguments/blocks/BlockStateParser/f_116748_ net/minecraft/commands/arguments/blocks/BlockStateParser/SUGGEST_NOTHING +FD: net/minecraft/commands/arguments/blocks/BlockStateParser/f_116749_ net/minecraft/commands/arguments/blocks/BlockStateParser/reader +FD: net/minecraft/commands/arguments/blocks/BlockStateParser/f_116750_ net/minecraft/commands/arguments/blocks/BlockStateParser/forTesting +FD: net/minecraft/commands/arguments/blocks/BlockStateParser/f_116751_ net/minecraft/commands/arguments/blocks/BlockStateParser/properties +FD: net/minecraft/commands/arguments/blocks/BlockStateParser/f_116752_ net/minecraft/commands/arguments/blocks/BlockStateParser/vagueProperties +FD: net/minecraft/commands/arguments/blocks/BlockStateParser/f_116753_ net/minecraft/commands/arguments/blocks/BlockStateParser/id +FD: net/minecraft/commands/arguments/blocks/BlockStateParser/f_116754_ net/minecraft/commands/arguments/blocks/BlockStateParser/definition +FD: net/minecraft/commands/arguments/blocks/BlockStateParser/f_116755_ net/minecraft/commands/arguments/blocks/BlockStateParser/state +FD: net/minecraft/commands/arguments/blocks/BlockStateParser/f_116756_ net/minecraft/commands/arguments/blocks/BlockStateParser/nbt +FD: net/minecraft/commands/arguments/blocks/BlockStateParser/f_116757_ net/minecraft/commands/arguments/blocks/BlockStateParser/tag +FD: net/minecraft/commands/arguments/blocks/BlockStateParser/f_116759_ net/minecraft/commands/arguments/blocks/BlockStateParser/suggestions +FD: net/minecraft/commands/arguments/blocks/BlockStateParser/f_174101_ net/minecraft/commands/arguments/blocks/BlockStateParser/SYNTAX_START_PROPERTIES +FD: net/minecraft/commands/arguments/blocks/BlockStateParser/f_174102_ net/minecraft/commands/arguments/blocks/BlockStateParser/SYNTAX_START_NBT +FD: net/minecraft/commands/arguments/blocks/BlockStateParser/f_174103_ net/minecraft/commands/arguments/blocks/BlockStateParser/SYNTAX_END_PROPERTIES +FD: net/minecraft/commands/arguments/blocks/BlockStateParser/f_174104_ net/minecraft/commands/arguments/blocks/BlockStateParser/SYNTAX_EQUALS +FD: net/minecraft/commands/arguments/blocks/BlockStateParser/f_174105_ net/minecraft/commands/arguments/blocks/BlockStateParser/SYNTAX_PROPERTY_SEPARATOR +FD: net/minecraft/commands/arguments/blocks/BlockStateParser/f_174106_ net/minecraft/commands/arguments/blocks/BlockStateParser/SYNTAX_TAG +FD: net/minecraft/commands/arguments/blocks/BlockStateParser/f_234669_ net/minecraft/commands/arguments/blocks/BlockStateParser/ERROR_UNKNOWN_TAG +FD: net/minecraft/commands/arguments/blocks/BlockStateParser/f_234670_ net/minecraft/commands/arguments/blocks/BlockStateParser/blocks +FD: net/minecraft/commands/arguments/blocks/BlockStateParser/f_234671_ net/minecraft/commands/arguments/blocks/BlockStateParser/allowNbt +FD: net/minecraft/commands/arguments/blocks/BlockStateParser$BlockResult/f_234748_ net/minecraft/commands/arguments/blocks/BlockStateParser$BlockResult/blockState +FD: net/minecraft/commands/arguments/blocks/BlockStateParser$BlockResult/f_234749_ net/minecraft/commands/arguments/blocks/BlockStateParser$BlockResult/properties +FD: net/minecraft/commands/arguments/blocks/BlockStateParser$BlockResult/f_234750_ net/minecraft/commands/arguments/blocks/BlockStateParser$BlockResult/nbt +FD: net/minecraft/commands/arguments/blocks/BlockStateParser$TagResult/f_234762_ net/minecraft/commands/arguments/blocks/BlockStateParser$TagResult/tag +FD: net/minecraft/commands/arguments/blocks/BlockStateParser$TagResult/f_234763_ net/minecraft/commands/arguments/blocks/BlockStateParser$TagResult/vagueProperties +FD: net/minecraft/commands/arguments/blocks/BlockStateParser$TagResult/f_234764_ net/minecraft/commands/arguments/blocks/BlockStateParser$TagResult/nbt +FD: net/minecraft/commands/arguments/coordinates/BlockPosArgument/f_118234_ net/minecraft/commands/arguments/coordinates/BlockPosArgument/ERROR_NOT_LOADED +FD: net/minecraft/commands/arguments/coordinates/BlockPosArgument/f_118235_ net/minecraft/commands/arguments/coordinates/BlockPosArgument/ERROR_OUT_OF_WORLD +FD: net/minecraft/commands/arguments/coordinates/BlockPosArgument/f_118236_ net/minecraft/commands/arguments/coordinates/BlockPosArgument/EXAMPLES +FD: net/minecraft/commands/arguments/coordinates/BlockPosArgument/f_174394_ net/minecraft/commands/arguments/coordinates/BlockPosArgument/ERROR_OUT_OF_BOUNDS +FD: net/minecraft/commands/arguments/coordinates/ColumnPosArgument/f_118985_ net/minecraft/commands/arguments/coordinates/ColumnPosArgument/ERROR_NOT_COMPLETE +FD: net/minecraft/commands/arguments/coordinates/ColumnPosArgument/f_118986_ net/minecraft/commands/arguments/coordinates/ColumnPosArgument/EXAMPLES +FD: net/minecraft/commands/arguments/coordinates/LocalCoordinates/f_119898_ net/minecraft/commands/arguments/coordinates/LocalCoordinates/left +FD: net/minecraft/commands/arguments/coordinates/LocalCoordinates/f_119899_ net/minecraft/commands/arguments/coordinates/LocalCoordinates/up +FD: net/minecraft/commands/arguments/coordinates/LocalCoordinates/f_119900_ net/minecraft/commands/arguments/coordinates/LocalCoordinates/forwards +FD: net/minecraft/commands/arguments/coordinates/LocalCoordinates/f_174681_ net/minecraft/commands/arguments/coordinates/LocalCoordinates/PREFIX_LOCAL_COORDINATE +FD: net/minecraft/commands/arguments/coordinates/RotationArgument/f_120475_ net/minecraft/commands/arguments/coordinates/RotationArgument/ERROR_NOT_COMPLETE +FD: net/minecraft/commands/arguments/coordinates/RotationArgument/f_120476_ net/minecraft/commands/arguments/coordinates/RotationArgument/EXAMPLES +FD: net/minecraft/commands/arguments/coordinates/SwizzleArgument/f_120803_ net/minecraft/commands/arguments/coordinates/SwizzleArgument/EXAMPLES +FD: net/minecraft/commands/arguments/coordinates/SwizzleArgument/f_120804_ net/minecraft/commands/arguments/coordinates/SwizzleArgument/ERROR_INVALID +FD: net/minecraft/commands/arguments/coordinates/Vec2Argument/f_120816_ net/minecraft/commands/arguments/coordinates/Vec2Argument/ERROR_NOT_COMPLETE +FD: net/minecraft/commands/arguments/coordinates/Vec2Argument/f_120817_ net/minecraft/commands/arguments/coordinates/Vec2Argument/EXAMPLES +FD: net/minecraft/commands/arguments/coordinates/Vec2Argument/f_120818_ net/minecraft/commands/arguments/coordinates/Vec2Argument/centerCorrect +FD: net/minecraft/commands/arguments/coordinates/Vec3Argument/f_120834_ net/minecraft/commands/arguments/coordinates/Vec3Argument/ERROR_NOT_COMPLETE +FD: net/minecraft/commands/arguments/coordinates/Vec3Argument/f_120835_ net/minecraft/commands/arguments/coordinates/Vec3Argument/ERROR_MIXED_TYPE +FD: net/minecraft/commands/arguments/coordinates/Vec3Argument/f_120836_ net/minecraft/commands/arguments/coordinates/Vec3Argument/EXAMPLES +FD: net/minecraft/commands/arguments/coordinates/Vec3Argument/f_120837_ net/minecraft/commands/arguments/coordinates/Vec3Argument/centerCorrect +FD: net/minecraft/commands/arguments/coordinates/WorldCoordinate/f_120858_ net/minecraft/commands/arguments/coordinates/WorldCoordinate/ERROR_EXPECTED_DOUBLE +FD: net/minecraft/commands/arguments/coordinates/WorldCoordinate/f_120859_ net/minecraft/commands/arguments/coordinates/WorldCoordinate/ERROR_EXPECTED_INT +FD: net/minecraft/commands/arguments/coordinates/WorldCoordinate/f_120860_ net/minecraft/commands/arguments/coordinates/WorldCoordinate/relative +FD: net/minecraft/commands/arguments/coordinates/WorldCoordinate/f_120861_ net/minecraft/commands/arguments/coordinates/WorldCoordinate/value +FD: net/minecraft/commands/arguments/coordinates/WorldCoordinate/f_175084_ net/minecraft/commands/arguments/coordinates/WorldCoordinate/PREFIX_RELATIVE +FD: net/minecraft/commands/arguments/coordinates/WorldCoordinates/f_120879_ net/minecraft/commands/arguments/coordinates/WorldCoordinates/x +FD: net/minecraft/commands/arguments/coordinates/WorldCoordinates/f_120880_ net/minecraft/commands/arguments/coordinates/WorldCoordinates/y +FD: net/minecraft/commands/arguments/coordinates/WorldCoordinates/f_120881_ net/minecraft/commands/arguments/coordinates/WorldCoordinates/z +FD: net/minecraft/commands/arguments/item/FunctionArgument/f_120902_ net/minecraft/commands/arguments/item/FunctionArgument/EXAMPLES +FD: net/minecraft/commands/arguments/item/FunctionArgument/f_120903_ net/minecraft/commands/arguments/item/FunctionArgument/ERROR_UNKNOWN_TAG +FD: net/minecraft/commands/arguments/item/FunctionArgument/f_120904_ net/minecraft/commands/arguments/item/FunctionArgument/ERROR_UNKNOWN_FUNCTION +FD: net/minecraft/commands/arguments/item/FunctionArgument$1/f_120937_ net/minecraft/commands/arguments/item/FunctionArgument$1/val$id +FD: net/minecraft/commands/arguments/item/FunctionArgument$1/f_120938_ net/minecraft/commands/arguments/item/FunctionArgument$1/this$0 +FD: net/minecraft/commands/arguments/item/FunctionArgument$2/f_120946_ net/minecraft/commands/arguments/item/FunctionArgument$2/val$id +FD: net/minecraft/commands/arguments/item/FunctionArgument$2/f_120947_ net/minecraft/commands/arguments/item/FunctionArgument$2/this$0 +FD: net/minecraft/commands/arguments/item/ItemArgument/f_120957_ net/minecraft/commands/arguments/item/ItemArgument/EXAMPLES +FD: net/minecraft/commands/arguments/item/ItemArgument/f_235276_ net/minecraft/commands/arguments/item/ItemArgument/items +FD: net/minecraft/commands/arguments/item/ItemInput/f_120972_ net/minecraft/commands/arguments/item/ItemInput/ERROR_STACK_TOO_BIG +FD: net/minecraft/commands/arguments/item/ItemInput/f_120973_ net/minecraft/commands/arguments/item/ItemInput/item +FD: net/minecraft/commands/arguments/item/ItemInput/f_120974_ net/minecraft/commands/arguments/item/ItemInput/tag +FD: net/minecraft/commands/arguments/item/ItemParser/f_120991_ net/minecraft/commands/arguments/item/ItemParser/ERROR_NO_TAGS_ALLOWED +FD: net/minecraft/commands/arguments/item/ItemParser/f_120992_ net/minecraft/commands/arguments/item/ItemParser/ERROR_UNKNOWN_ITEM +FD: net/minecraft/commands/arguments/item/ItemParser/f_120993_ net/minecraft/commands/arguments/item/ItemParser/SUGGEST_NOTHING +FD: net/minecraft/commands/arguments/item/ItemParser/f_120994_ net/minecraft/commands/arguments/item/ItemParser/reader +FD: net/minecraft/commands/arguments/item/ItemParser/f_120998_ net/minecraft/commands/arguments/item/ItemParser/nbt +FD: net/minecraft/commands/arguments/item/ItemParser/f_121001_ net/minecraft/commands/arguments/item/ItemParser/suggestions +FD: net/minecraft/commands/arguments/item/ItemParser/f_175091_ net/minecraft/commands/arguments/item/ItemParser/SYNTAX_START_NBT +FD: net/minecraft/commands/arguments/item/ItemParser/f_175092_ net/minecraft/commands/arguments/item/ItemParser/SYNTAX_TAG +FD: net/minecraft/commands/arguments/item/ItemParser/f_235286_ net/minecraft/commands/arguments/item/ItemParser/ERROR_UNKNOWN_TAG +FD: net/minecraft/commands/arguments/item/ItemParser/f_235287_ net/minecraft/commands/arguments/item/ItemParser/items +FD: net/minecraft/commands/arguments/item/ItemParser/f_235288_ net/minecraft/commands/arguments/item/ItemParser/allowTags +FD: net/minecraft/commands/arguments/item/ItemParser/f_235289_ net/minecraft/commands/arguments/item/ItemParser/result +FD: net/minecraft/commands/arguments/item/ItemParser$ItemResult/f_235328_ net/minecraft/commands/arguments/item/ItemParser$ItemResult/item +FD: net/minecraft/commands/arguments/item/ItemParser$ItemResult/f_235329_ net/minecraft/commands/arguments/item/ItemParser$ItemResult/nbt +FD: net/minecraft/commands/arguments/item/ItemParser$TagResult/f_235339_ net/minecraft/commands/arguments/item/ItemParser$TagResult/tag +FD: net/minecraft/commands/arguments/item/ItemParser$TagResult/f_235340_ net/minecraft/commands/arguments/item/ItemParser$TagResult/nbt +FD: net/minecraft/commands/arguments/item/ItemPredicateArgument/f_121033_ net/minecraft/commands/arguments/item/ItemPredicateArgument/EXAMPLES +FD: net/minecraft/commands/arguments/item/ItemPredicateArgument/f_235350_ net/minecraft/commands/arguments/item/ItemPredicateArgument/items +FD: net/minecraft/commands/arguments/selector/EntitySelector/f_121111_ net/minecraft/commands/arguments/selector/EntitySelector/maxResults +FD: net/minecraft/commands/arguments/selector/EntitySelector/f_121112_ net/minecraft/commands/arguments/selector/EntitySelector/includesEntities +FD: net/minecraft/commands/arguments/selector/EntitySelector/f_121113_ net/minecraft/commands/arguments/selector/EntitySelector/worldLimited +FD: net/minecraft/commands/arguments/selector/EntitySelector/f_121114_ net/minecraft/commands/arguments/selector/EntitySelector/predicate +FD: net/minecraft/commands/arguments/selector/EntitySelector/f_121115_ net/minecraft/commands/arguments/selector/EntitySelector/range +FD: net/minecraft/commands/arguments/selector/EntitySelector/f_121116_ net/minecraft/commands/arguments/selector/EntitySelector/position +FD: net/minecraft/commands/arguments/selector/EntitySelector/f_121117_ net/minecraft/commands/arguments/selector/EntitySelector/aabb +FD: net/minecraft/commands/arguments/selector/EntitySelector/f_121118_ net/minecraft/commands/arguments/selector/EntitySelector/order +FD: net/minecraft/commands/arguments/selector/EntitySelector/f_121119_ net/minecraft/commands/arguments/selector/EntitySelector/currentEntity +FD: net/minecraft/commands/arguments/selector/EntitySelector/f_121120_ net/minecraft/commands/arguments/selector/EntitySelector/playerName +FD: net/minecraft/commands/arguments/selector/EntitySelector/f_121121_ net/minecraft/commands/arguments/selector/EntitySelector/entityUUID +FD: net/minecraft/commands/arguments/selector/EntitySelector/f_121122_ net/minecraft/commands/arguments/selector/EntitySelector/type +FD: net/minecraft/commands/arguments/selector/EntitySelector/f_121123_ net/minecraft/commands/arguments/selector/EntitySelector/usesSelector +FD: net/minecraft/commands/arguments/selector/EntitySelector/f_175099_ net/minecraft/commands/arguments/selector/EntitySelector/INFINITE +FD: net/minecraft/commands/arguments/selector/EntitySelector/f_175100_ net/minecraft/commands/arguments/selector/EntitySelector/ANY_TYPE +FD: net/minecraft/commands/arguments/selector/EntitySelector/f_260598_ net/minecraft/commands/arguments/selector/EntitySelector/ORDER_ARBITRARY +FD: net/minecraft/commands/arguments/selector/EntitySelectorParser/f_121170_ net/minecraft/commands/arguments/selector/EntitySelectorParser/predicate +FD: net/minecraft/commands/arguments/selector/EntitySelectorParser/f_121171_ net/minecraft/commands/arguments/selector/EntitySelectorParser/order +FD: net/minecraft/commands/arguments/selector/EntitySelectorParser/f_121172_ net/minecraft/commands/arguments/selector/EntitySelectorParser/currentEntity +FD: net/minecraft/commands/arguments/selector/EntitySelectorParser/f_121173_ net/minecraft/commands/arguments/selector/EntitySelectorParser/playerName +FD: net/minecraft/commands/arguments/selector/EntitySelectorParser/f_121174_ net/minecraft/commands/arguments/selector/EntitySelectorParser/startPosition +FD: net/minecraft/commands/arguments/selector/EntitySelectorParser/f_121175_ net/minecraft/commands/arguments/selector/EntitySelectorParser/entityUUID +FD: net/minecraft/commands/arguments/selector/EntitySelectorParser/f_121176_ net/minecraft/commands/arguments/selector/EntitySelectorParser/suggestions +FD: net/minecraft/commands/arguments/selector/EntitySelectorParser/f_121177_ net/minecraft/commands/arguments/selector/EntitySelectorParser/hasNameEquals +FD: net/minecraft/commands/arguments/selector/EntitySelectorParser/f_121178_ net/minecraft/commands/arguments/selector/EntitySelectorParser/hasNameNotEquals +FD: net/minecraft/commands/arguments/selector/EntitySelectorParser/f_121179_ net/minecraft/commands/arguments/selector/EntitySelectorParser/isLimited +FD: net/minecraft/commands/arguments/selector/EntitySelectorParser/f_121180_ net/minecraft/commands/arguments/selector/EntitySelectorParser/isSorted +FD: net/minecraft/commands/arguments/selector/EntitySelectorParser/f_121181_ net/minecraft/commands/arguments/selector/EntitySelectorParser/hasGamemodeEquals +FD: net/minecraft/commands/arguments/selector/EntitySelectorParser/f_121182_ net/minecraft/commands/arguments/selector/EntitySelectorParser/hasGamemodeNotEquals +FD: net/minecraft/commands/arguments/selector/EntitySelectorParser/f_121183_ net/minecraft/commands/arguments/selector/EntitySelectorParser/hasTeamEquals +FD: net/minecraft/commands/arguments/selector/EntitySelectorParser/f_121184_ net/minecraft/commands/arguments/selector/EntitySelectorParser/hasTeamNotEquals +FD: net/minecraft/commands/arguments/selector/EntitySelectorParser/f_121185_ net/minecraft/commands/arguments/selector/EntitySelectorParser/type +FD: net/minecraft/commands/arguments/selector/EntitySelectorParser/f_121186_ net/minecraft/commands/arguments/selector/EntitySelectorParser/typeInverse +FD: net/minecraft/commands/arguments/selector/EntitySelectorParser/f_121187_ net/minecraft/commands/arguments/selector/EntitySelectorParser/hasScores +FD: net/minecraft/commands/arguments/selector/EntitySelectorParser/f_121188_ net/minecraft/commands/arguments/selector/EntitySelectorParser/hasAdvancements +FD: net/minecraft/commands/arguments/selector/EntitySelectorParser/f_121189_ net/minecraft/commands/arguments/selector/EntitySelectorParser/usesSelectors +FD: net/minecraft/commands/arguments/selector/EntitySelectorParser/f_121190_ net/minecraft/commands/arguments/selector/EntitySelectorParser/ERROR_INVALID_NAME_OR_UUID +FD: net/minecraft/commands/arguments/selector/EntitySelectorParser/f_121191_ net/minecraft/commands/arguments/selector/EntitySelectorParser/ERROR_UNKNOWN_SELECTOR_TYPE +FD: net/minecraft/commands/arguments/selector/EntitySelectorParser/f_121192_ net/minecraft/commands/arguments/selector/EntitySelectorParser/ERROR_SELECTORS_NOT_ALLOWED +FD: net/minecraft/commands/arguments/selector/EntitySelectorParser/f_121193_ net/minecraft/commands/arguments/selector/EntitySelectorParser/ERROR_MISSING_SELECTOR_TYPE +FD: net/minecraft/commands/arguments/selector/EntitySelectorParser/f_121194_ net/minecraft/commands/arguments/selector/EntitySelectorParser/ERROR_EXPECTED_END_OF_OPTIONS +FD: net/minecraft/commands/arguments/selector/EntitySelectorParser/f_121195_ net/minecraft/commands/arguments/selector/EntitySelectorParser/ERROR_EXPECTED_OPTION_VALUE +FD: net/minecraft/commands/arguments/selector/EntitySelectorParser/f_121197_ net/minecraft/commands/arguments/selector/EntitySelectorParser/ORDER_NEAREST +FD: net/minecraft/commands/arguments/selector/EntitySelectorParser/f_121198_ net/minecraft/commands/arguments/selector/EntitySelectorParser/ORDER_FURTHEST +FD: net/minecraft/commands/arguments/selector/EntitySelectorParser/f_121199_ net/minecraft/commands/arguments/selector/EntitySelectorParser/ORDER_RANDOM +FD: net/minecraft/commands/arguments/selector/EntitySelectorParser/f_121200_ net/minecraft/commands/arguments/selector/EntitySelectorParser/SUGGEST_NOTHING +FD: net/minecraft/commands/arguments/selector/EntitySelectorParser/f_121201_ net/minecraft/commands/arguments/selector/EntitySelectorParser/reader +FD: net/minecraft/commands/arguments/selector/EntitySelectorParser/f_121202_ net/minecraft/commands/arguments/selector/EntitySelectorParser/allowSelectors +FD: net/minecraft/commands/arguments/selector/EntitySelectorParser/f_121203_ net/minecraft/commands/arguments/selector/EntitySelectorParser/maxResults +FD: net/minecraft/commands/arguments/selector/EntitySelectorParser/f_121204_ net/minecraft/commands/arguments/selector/EntitySelectorParser/includesEntities +FD: net/minecraft/commands/arguments/selector/EntitySelectorParser/f_121205_ net/minecraft/commands/arguments/selector/EntitySelectorParser/worldLimited +FD: net/minecraft/commands/arguments/selector/EntitySelectorParser/f_121206_ net/minecraft/commands/arguments/selector/EntitySelectorParser/distance +FD: net/minecraft/commands/arguments/selector/EntitySelectorParser/f_121207_ net/minecraft/commands/arguments/selector/EntitySelectorParser/level +FD: net/minecraft/commands/arguments/selector/EntitySelectorParser/f_121208_ net/minecraft/commands/arguments/selector/EntitySelectorParser/x +FD: net/minecraft/commands/arguments/selector/EntitySelectorParser/f_121209_ net/minecraft/commands/arguments/selector/EntitySelectorParser/y +FD: net/minecraft/commands/arguments/selector/EntitySelectorParser/f_121210_ net/minecraft/commands/arguments/selector/EntitySelectorParser/z +FD: net/minecraft/commands/arguments/selector/EntitySelectorParser/f_121211_ net/minecraft/commands/arguments/selector/EntitySelectorParser/deltaX +FD: net/minecraft/commands/arguments/selector/EntitySelectorParser/f_121212_ net/minecraft/commands/arguments/selector/EntitySelectorParser/deltaY +FD: net/minecraft/commands/arguments/selector/EntitySelectorParser/f_121213_ net/minecraft/commands/arguments/selector/EntitySelectorParser/deltaZ +FD: net/minecraft/commands/arguments/selector/EntitySelectorParser/f_121214_ net/minecraft/commands/arguments/selector/EntitySelectorParser/rotX +FD: net/minecraft/commands/arguments/selector/EntitySelectorParser/f_121215_ net/minecraft/commands/arguments/selector/EntitySelectorParser/rotY +FD: net/minecraft/commands/arguments/selector/EntitySelectorParser/f_175112_ net/minecraft/commands/arguments/selector/EntitySelectorParser/SYNTAX_SELECTOR_START +FD: net/minecraft/commands/arguments/selector/EntitySelectorParser/f_175113_ net/minecraft/commands/arguments/selector/EntitySelectorParser/SYNTAX_OPTIONS_KEY_VALUE_SEPARATOR +FD: net/minecraft/commands/arguments/selector/EntitySelectorParser/f_175114_ net/minecraft/commands/arguments/selector/EntitySelectorParser/SYNTAX_NOT +FD: net/minecraft/commands/arguments/selector/EntitySelectorParser/f_175115_ net/minecraft/commands/arguments/selector/EntitySelectorParser/SYNTAX_TAG +FD: net/minecraft/commands/arguments/selector/EntitySelectorParser/f_175116_ net/minecraft/commands/arguments/selector/EntitySelectorParser/SYNTAX_OPTIONS_START +FD: net/minecraft/commands/arguments/selector/EntitySelectorParser/f_175117_ net/minecraft/commands/arguments/selector/EntitySelectorParser/SYNTAX_OPTIONS_END +FD: net/minecraft/commands/arguments/selector/EntitySelectorParser/f_175118_ net/minecraft/commands/arguments/selector/EntitySelectorParser/SYNTAX_OPTIONS_SEPARATOR +FD: net/minecraft/commands/arguments/selector/EntitySelectorParser/f_175119_ net/minecraft/commands/arguments/selector/EntitySelectorParser/SELECTOR_NEAREST_PLAYER +FD: net/minecraft/commands/arguments/selector/EntitySelectorParser/f_175120_ net/minecraft/commands/arguments/selector/EntitySelectorParser/SELECTOR_ALL_PLAYERS +FD: net/minecraft/commands/arguments/selector/EntitySelectorParser/f_175121_ net/minecraft/commands/arguments/selector/EntitySelectorParser/SELECTOR_RANDOM_PLAYERS +FD: net/minecraft/commands/arguments/selector/EntitySelectorParser/f_175122_ net/minecraft/commands/arguments/selector/EntitySelectorParser/SELECTOR_CURRENT_ENTITY +FD: net/minecraft/commands/arguments/selector/EntitySelectorParser/f_175123_ net/minecraft/commands/arguments/selector/EntitySelectorParser/SELECTOR_ALL_ENTITIES +FD: net/minecraft/commands/arguments/selector/options/EntitySelectorOptions/f_121384_ net/minecraft/commands/arguments/selector/options/EntitySelectorOptions/ERROR_UNKNOWN_OPTION +FD: net/minecraft/commands/arguments/selector/options/EntitySelectorOptions/f_121385_ net/minecraft/commands/arguments/selector/options/EntitySelectorOptions/ERROR_INAPPLICABLE_OPTION +FD: net/minecraft/commands/arguments/selector/options/EntitySelectorOptions/f_121386_ net/minecraft/commands/arguments/selector/options/EntitySelectorOptions/ERROR_RANGE_NEGATIVE +FD: net/minecraft/commands/arguments/selector/options/EntitySelectorOptions/f_121387_ net/minecraft/commands/arguments/selector/options/EntitySelectorOptions/ERROR_LEVEL_NEGATIVE +FD: net/minecraft/commands/arguments/selector/options/EntitySelectorOptions/f_121388_ net/minecraft/commands/arguments/selector/options/EntitySelectorOptions/ERROR_LIMIT_TOO_SMALL +FD: net/minecraft/commands/arguments/selector/options/EntitySelectorOptions/f_121389_ net/minecraft/commands/arguments/selector/options/EntitySelectorOptions/ERROR_SORT_UNKNOWN +FD: net/minecraft/commands/arguments/selector/options/EntitySelectorOptions/f_121390_ net/minecraft/commands/arguments/selector/options/EntitySelectorOptions/ERROR_GAME_MODE_INVALID +FD: net/minecraft/commands/arguments/selector/options/EntitySelectorOptions/f_121391_ net/minecraft/commands/arguments/selector/options/EntitySelectorOptions/ERROR_ENTITY_TYPE_INVALID +FD: net/minecraft/commands/arguments/selector/options/EntitySelectorOptions/f_121392_ net/minecraft/commands/arguments/selector/options/EntitySelectorOptions/OPTIONS +FD: net/minecraft/commands/arguments/selector/options/EntitySelectorOptions$Option/f_121565_ net/minecraft/commands/arguments/selector/options/EntitySelectorOptions$Option/modifier +FD: net/minecraft/commands/arguments/selector/options/EntitySelectorOptions$Option/f_121567_ net/minecraft/commands/arguments/selector/options/EntitySelectorOptions$Option/description +FD: net/minecraft/commands/arguments/selector/options/EntitySelectorOptions$Option/f_243902_ net/minecraft/commands/arguments/selector/options/EntitySelectorOptions$Option/canUse +FD: net/minecraft/commands/synchronization/ArgumentTypeInfos/f_235379_ net/minecraft/commands/synchronization/ArgumentTypeInfos/BY_CLASS +FD: net/minecraft/commands/synchronization/ArgumentUtils/f_235397_ net/minecraft/commands/synchronization/ArgumentUtils/LOGGER +FD: net/minecraft/commands/synchronization/ArgumentUtils/f_235398_ net/minecraft/commands/synchronization/ArgumentUtils/NUMBER_FLAG_MIN +FD: net/minecraft/commands/synchronization/ArgumentUtils/f_235399_ net/minecraft/commands/synchronization/ArgumentUtils/NUMBER_FLAG_MAX +FD: net/minecraft/commands/synchronization/SingletonArgumentInfo/f_235432_ net/minecraft/commands/synchronization/SingletonArgumentInfo/template +FD: net/minecraft/commands/synchronization/SingletonArgumentInfo$Template/f_235462_ net/minecraft/commands/synchronization/SingletonArgumentInfo$Template/this$0 +FD: net/minecraft/commands/synchronization/SingletonArgumentInfo$Template/f_235463_ net/minecraft/commands/synchronization/SingletonArgumentInfo$Template/constructor +FD: net/minecraft/commands/synchronization/SuggestionProviders/f_121641_ net/minecraft/commands/synchronization/SuggestionProviders/ASK_SERVER +FD: net/minecraft/commands/synchronization/SuggestionProviders/f_121642_ net/minecraft/commands/synchronization/SuggestionProviders/ALL_RECIPES +FD: net/minecraft/commands/synchronization/SuggestionProviders/f_121643_ net/minecraft/commands/synchronization/SuggestionProviders/AVAILABLE_SOUNDS +FD: net/minecraft/commands/synchronization/SuggestionProviders/f_121645_ net/minecraft/commands/synchronization/SuggestionProviders/SUMMONABLE_ENTITIES +FD: net/minecraft/commands/synchronization/SuggestionProviders/f_121646_ net/minecraft/commands/synchronization/SuggestionProviders/PROVIDERS_BY_NAME +FD: net/minecraft/commands/synchronization/SuggestionProviders/f_121647_ net/minecraft/commands/synchronization/SuggestionProviders/DEFAULT_NAME +FD: net/minecraft/commands/synchronization/SuggestionProviders$Wrapper/f_121675_ net/minecraft/commands/synchronization/SuggestionProviders$Wrapper/delegate +FD: net/minecraft/commands/synchronization/SuggestionProviders$Wrapper/f_121676_ net/minecraft/commands/synchronization/SuggestionProviders$Wrapper/name +FD: net/minecraft/commands/synchronization/brigadier/DoubleArgumentInfo$Template/f_235491_ net/minecraft/commands/synchronization/brigadier/DoubleArgumentInfo$Template/this$0 +FD: net/minecraft/commands/synchronization/brigadier/DoubleArgumentInfo$Template/f_235492_ net/minecraft/commands/synchronization/brigadier/DoubleArgumentInfo$Template/min +FD: net/minecraft/commands/synchronization/brigadier/DoubleArgumentInfo$Template/f_235493_ net/minecraft/commands/synchronization/brigadier/DoubleArgumentInfo$Template/max +FD: net/minecraft/commands/synchronization/brigadier/FloatArgumentInfo$Template/f_235524_ net/minecraft/commands/synchronization/brigadier/FloatArgumentInfo$Template/this$0 +FD: net/minecraft/commands/synchronization/brigadier/FloatArgumentInfo$Template/f_235525_ net/minecraft/commands/synchronization/brigadier/FloatArgumentInfo$Template/min +FD: net/minecraft/commands/synchronization/brigadier/FloatArgumentInfo$Template/f_235526_ net/minecraft/commands/synchronization/brigadier/FloatArgumentInfo$Template/max +FD: net/minecraft/commands/synchronization/brigadier/IntegerArgumentInfo$Template/f_235557_ net/minecraft/commands/synchronization/brigadier/IntegerArgumentInfo$Template/this$0 +FD: net/minecraft/commands/synchronization/brigadier/IntegerArgumentInfo$Template/f_235558_ net/minecraft/commands/synchronization/brigadier/IntegerArgumentInfo$Template/min +FD: net/minecraft/commands/synchronization/brigadier/IntegerArgumentInfo$Template/f_235559_ net/minecraft/commands/synchronization/brigadier/IntegerArgumentInfo$Template/max +FD: net/minecraft/commands/synchronization/brigadier/LongArgumentInfo$Template/f_235590_ net/minecraft/commands/synchronization/brigadier/LongArgumentInfo$Template/this$0 +FD: net/minecraft/commands/synchronization/brigadier/LongArgumentInfo$Template/f_235591_ net/minecraft/commands/synchronization/brigadier/LongArgumentInfo$Template/min +FD: net/minecraft/commands/synchronization/brigadier/LongArgumentInfo$Template/f_235592_ net/minecraft/commands/synchronization/brigadier/LongArgumentInfo$Template/max +FD: net/minecraft/commands/synchronization/brigadier/StringArgumentSerializer$1/f_121778_ net/minecraft/commands/synchronization/brigadier/StringArgumentSerializer$1/$SwitchMap$com$mojang$brigadier$arguments$StringArgumentType$StringType +FD: net/minecraft/commands/synchronization/brigadier/StringArgumentSerializer$Template/f_235622_ net/minecraft/commands/synchronization/brigadier/StringArgumentSerializer$Template/this$0 +FD: net/minecraft/commands/synchronization/brigadier/StringArgumentSerializer$Template/f_235623_ net/minecraft/commands/synchronization/brigadier/StringArgumentSerializer$Template/type +FD: net/minecraft/core/AxisCycle/$VALUES net/minecraft/core/AxisCycle/$VALUES +FD: net/minecraft/core/AxisCycle/BACKWARD net/minecraft/core/AxisCycle/BACKWARD +FD: net/minecraft/core/AxisCycle/FORWARD net/minecraft/core/AxisCycle/FORWARD +FD: net/minecraft/core/AxisCycle/NONE net/minecraft/core/AxisCycle/NONE +FD: net/minecraft/core/AxisCycle/f_121783_ net/minecraft/core/AxisCycle/AXIS_VALUES +FD: net/minecraft/core/AxisCycle/f_121784_ net/minecraft/core/AxisCycle/VALUES +FD: net/minecraft/core/BlockMath/f_121840_ net/minecraft/core/BlockMath/LOGGER +FD: net/minecraft/core/BlockMath/f_175256_ net/minecraft/core/BlockMath/VANILLA_UV_TRANSFORM_LOCAL_TO_GLOBAL +FD: net/minecraft/core/BlockMath/f_175257_ net/minecraft/core/BlockMath/VANILLA_UV_TRANSFORM_GLOBAL_TO_LOCAL +FD: net/minecraft/core/BlockPos/f_121852_ net/minecraft/core/BlockPos/CODEC +FD: net/minecraft/core/BlockPos/f_121853_ net/minecraft/core/BlockPos/ZERO +FD: net/minecraft/core/BlockPos/f_121854_ net/minecraft/core/BlockPos/LOGGER +FD: net/minecraft/core/BlockPos/f_121855_ net/minecraft/core/BlockPos/PACKED_X_LENGTH +FD: net/minecraft/core/BlockPos/f_121856_ net/minecraft/core/BlockPos/PACKED_Z_LENGTH +FD: net/minecraft/core/BlockPos/f_121857_ net/minecraft/core/BlockPos/PACKED_Y_LENGTH +FD: net/minecraft/core/BlockPos/f_121858_ net/minecraft/core/BlockPos/PACKED_X_MASK +FD: net/minecraft/core/BlockPos/f_121859_ net/minecraft/core/BlockPos/PACKED_Y_MASK +FD: net/minecraft/core/BlockPos/f_121860_ net/minecraft/core/BlockPos/PACKED_Z_MASK +FD: net/minecraft/core/BlockPos/f_121861_ net/minecraft/core/BlockPos/Z_OFFSET +FD: net/minecraft/core/BlockPos/f_121862_ net/minecraft/core/BlockPos/X_OFFSET +FD: net/minecraft/core/BlockPos/f_175261_ net/minecraft/core/BlockPos/Y_OFFSET +FD: net/minecraft/core/BlockPos$1/f_122039_ net/minecraft/core/BlockPos$1/nextPos +FD: net/minecraft/core/BlockPos$1/f_122040_ net/minecraft/core/BlockPos$1/counter +FD: net/minecraft/core/BlockPos$1/f_122041_ net/minecraft/core/BlockPos$1/val$limit +FD: net/minecraft/core/BlockPos$1/f_122042_ net/minecraft/core/BlockPos$1/val$minX +FD: net/minecraft/core/BlockPos$1/f_122043_ net/minecraft/core/BlockPos$1/val$random +FD: net/minecraft/core/BlockPos$1/f_122044_ net/minecraft/core/BlockPos$1/val$width +FD: net/minecraft/core/BlockPos$1/f_122045_ net/minecraft/core/BlockPos$1/val$minY +FD: net/minecraft/core/BlockPos$1/f_122046_ net/minecraft/core/BlockPos$1/val$height +FD: net/minecraft/core/BlockPos$1/f_122047_ net/minecraft/core/BlockPos$1/val$minZ +FD: net/minecraft/core/BlockPos$1/f_122048_ net/minecraft/core/BlockPos$1/val$depth +FD: net/minecraft/core/BlockPos$2/f_122060_ net/minecraft/core/BlockPos$2/val$originZ +FD: net/minecraft/core/BlockPos$2/f_122061_ net/minecraft/core/BlockPos$2/val$maxDepth +FD: net/minecraft/core/BlockPos$2/f_122062_ net/minecraft/core/BlockPos$2/val$reachX +FD: net/minecraft/core/BlockPos$2/f_122063_ net/minecraft/core/BlockPos$2/val$reachY +FD: net/minecraft/core/BlockPos$2/f_122064_ net/minecraft/core/BlockPos$2/val$reachZ +FD: net/minecraft/core/BlockPos$2/f_122065_ net/minecraft/core/BlockPos$2/val$originX +FD: net/minecraft/core/BlockPos$2/f_122066_ net/minecraft/core/BlockPos$2/val$originY +FD: net/minecraft/core/BlockPos$2/f_122067_ net/minecraft/core/BlockPos$2/cursor +FD: net/minecraft/core/BlockPos$2/f_122068_ net/minecraft/core/BlockPos$2/currentDepth +FD: net/minecraft/core/BlockPos$2/f_122069_ net/minecraft/core/BlockPos$2/maxX +FD: net/minecraft/core/BlockPos$2/f_122070_ net/minecraft/core/BlockPos$2/maxY +FD: net/minecraft/core/BlockPos$2/f_122071_ net/minecraft/core/BlockPos$2/x +FD: net/minecraft/core/BlockPos$2/f_122072_ net/minecraft/core/BlockPos$2/y +FD: net/minecraft/core/BlockPos$2/f_122073_ net/minecraft/core/BlockPos$2/zMirror +FD: net/minecraft/core/BlockPos$3/f_122084_ net/minecraft/core/BlockPos$3/val$end +FD: net/minecraft/core/BlockPos$3/f_122085_ net/minecraft/core/BlockPos$3/val$width +FD: net/minecraft/core/BlockPos$3/f_122086_ net/minecraft/core/BlockPos$3/val$height +FD: net/minecraft/core/BlockPos$3/f_122087_ net/minecraft/core/BlockPos$3/val$minX +FD: net/minecraft/core/BlockPos$3/f_122088_ net/minecraft/core/BlockPos$3/val$minY +FD: net/minecraft/core/BlockPos$3/f_122089_ net/minecraft/core/BlockPos$3/val$minZ +FD: net/minecraft/core/BlockPos$3/f_122090_ net/minecraft/core/BlockPos$3/cursor +FD: net/minecraft/core/BlockPos$3/f_122091_ net/minecraft/core/BlockPos$3/index +FD: net/minecraft/core/BlockPos$4/f_122101_ net/minecraft/core/BlockPos$4/val$firstDirection +FD: net/minecraft/core/BlockPos$4/f_122102_ net/minecraft/core/BlockPos$4/val$secondDirection +FD: net/minecraft/core/BlockPos$4/f_122103_ net/minecraft/core/BlockPos$4/val$center +FD: net/minecraft/core/BlockPos$4/f_122104_ net/minecraft/core/BlockPos$4/val$radius +FD: net/minecraft/core/BlockPos$4/f_122105_ net/minecraft/core/BlockPos$4/directions +FD: net/minecraft/core/BlockPos$4/f_122106_ net/minecraft/core/BlockPos$4/cursor +FD: net/minecraft/core/BlockPos$4/f_122107_ net/minecraft/core/BlockPos$4/legs +FD: net/minecraft/core/BlockPos$4/f_122108_ net/minecraft/core/BlockPos$4/leg +FD: net/minecraft/core/BlockPos$4/f_122109_ net/minecraft/core/BlockPos$4/legSize +FD: net/minecraft/core/BlockPos$4/f_122110_ net/minecraft/core/BlockPos$4/legIndex +FD: net/minecraft/core/BlockPos$4/f_122111_ net/minecraft/core/BlockPos$4/lastX +FD: net/minecraft/core/BlockPos$4/f_122112_ net/minecraft/core/BlockPos$4/lastY +FD: net/minecraft/core/BlockPos$4/f_122113_ net/minecraft/core/BlockPos$4/lastZ +FD: net/minecraft/core/BlockPos$5/f_122121_ net/minecraft/core/BlockPos$5/$SwitchMap$net$minecraft$world$level$block$Rotation +FD: net/minecraft/core/BlockPos$5/f_122122_ net/minecraft/core/BlockPos$5/$SwitchMap$net$minecraft$core$Direction$Axis +FD: net/minecraft/core/BlockSourceImpl/f_122210_ net/minecraft/core/BlockSourceImpl/level +FD: net/minecraft/core/BlockSourceImpl/f_122211_ net/minecraft/core/BlockSourceImpl/pos +FD: net/minecraft/core/Cursor3D/f_122286_ net/minecraft/core/Cursor3D/originX +FD: net/minecraft/core/Cursor3D/f_122287_ net/minecraft/core/Cursor3D/originY +FD: net/minecraft/core/Cursor3D/f_122288_ net/minecraft/core/Cursor3D/originZ +FD: net/minecraft/core/Cursor3D/f_122289_ net/minecraft/core/Cursor3D/width +FD: net/minecraft/core/Cursor3D/f_122290_ net/minecraft/core/Cursor3D/height +FD: net/minecraft/core/Cursor3D/f_122291_ net/minecraft/core/Cursor3D/depth +FD: net/minecraft/core/Cursor3D/f_122292_ net/minecraft/core/Cursor3D/end +FD: net/minecraft/core/Cursor3D/f_122293_ net/minecraft/core/Cursor3D/index +FD: net/minecraft/core/Cursor3D/f_122294_ net/minecraft/core/Cursor3D/x +FD: net/minecraft/core/Cursor3D/f_122295_ net/minecraft/core/Cursor3D/y +FD: net/minecraft/core/Cursor3D/f_122296_ net/minecraft/core/Cursor3D/z +FD: net/minecraft/core/Cursor3D/f_175352_ net/minecraft/core/Cursor3D/TYPE_INSIDE +FD: net/minecraft/core/Cursor3D/f_175353_ net/minecraft/core/Cursor3D/TYPE_FACE +FD: net/minecraft/core/Cursor3D/f_175354_ net/minecraft/core/Cursor3D/TYPE_EDGE +FD: net/minecraft/core/Cursor3D/f_175355_ net/minecraft/core/Cursor3D/TYPE_CORNER +FD: net/minecraft/core/DefaultedMappedRegistry/f_256918_ net/minecraft/core/DefaultedMappedRegistry/defaultKey +FD: net/minecraft/core/DefaultedMappedRegistry/f_256925_ net/minecraft/core/DefaultedMappedRegistry/defaultValue +FD: net/minecraft/core/Direction/$VALUES net/minecraft/core/Direction/$VALUES +FD: net/minecraft/core/Direction/DOWN net/minecraft/core/Direction/DOWN +FD: net/minecraft/core/Direction/EAST net/minecraft/core/Direction/EAST +FD: net/minecraft/core/Direction/NORTH net/minecraft/core/Direction/NORTH +FD: net/minecraft/core/Direction/SOUTH net/minecraft/core/Direction/SOUTH +FD: net/minecraft/core/Direction/UP net/minecraft/core/Direction/UP +FD: net/minecraft/core/Direction/WEST net/minecraft/core/Direction/WEST +FD: net/minecraft/core/Direction/f_122339_ net/minecraft/core/Direction/data3d +FD: net/minecraft/core/Direction/f_122340_ net/minecraft/core/Direction/oppositeIndex +FD: net/minecraft/core/Direction/f_122341_ net/minecraft/core/Direction/data2d +FD: net/minecraft/core/Direction/f_122342_ net/minecraft/core/Direction/name +FD: net/minecraft/core/Direction/f_122343_ net/minecraft/core/Direction/axis +FD: net/minecraft/core/Direction/f_122344_ net/minecraft/core/Direction/axisDirection +FD: net/minecraft/core/Direction/f_122345_ net/minecraft/core/Direction/normal +FD: net/minecraft/core/Direction/f_122346_ net/minecraft/core/Direction/VALUES +FD: net/minecraft/core/Direction/f_122348_ net/minecraft/core/Direction/BY_3D_DATA +FD: net/minecraft/core/Direction/f_122349_ net/minecraft/core/Direction/BY_2D_DATA +FD: net/minecraft/core/Direction/f_175356_ net/minecraft/core/Direction/CODEC +FD: net/minecraft/core/Direction/f_194527_ net/minecraft/core/Direction/VERTICAL_CODEC +FD: net/minecraft/core/Direction$1/f_122441_ net/minecraft/core/Direction$1/$SwitchMap$net$minecraft$core$Direction +FD: net/minecraft/core/Direction$1/f_122442_ net/minecraft/core/Direction$1/$SwitchMap$net$minecraft$core$Direction$Axis +FD: net/minecraft/core/Direction$Axis/$VALUES net/minecraft/core/Direction$Axis/$VALUES +FD: net/minecraft/core/Direction$Axis/X net/minecraft/core/Direction$Axis/X +FD: net/minecraft/core/Direction$Axis/Y net/minecraft/core/Direction$Axis/Y +FD: net/minecraft/core/Direction$Axis/Z net/minecraft/core/Direction$Axis/Z +FD: net/minecraft/core/Direction$Axis/f_122447_ net/minecraft/core/Direction$Axis/CODEC +FD: net/minecraft/core/Direction$Axis/f_122448_ net/minecraft/core/Direction$Axis/VALUES +FD: net/minecraft/core/Direction$Axis/f_122450_ net/minecraft/core/Direction$Axis/name +FD: net/minecraft/core/Direction$AxisDirection/$VALUES net/minecraft/core/Direction$AxisDirection/$VALUES +FD: net/minecraft/core/Direction$AxisDirection/NEGATIVE net/minecraft/core/Direction$AxisDirection/NEGATIVE +FD: net/minecraft/core/Direction$AxisDirection/POSITIVE net/minecraft/core/Direction$AxisDirection/POSITIVE +FD: net/minecraft/core/Direction$AxisDirection/f_122531_ net/minecraft/core/Direction$AxisDirection/step +FD: net/minecraft/core/Direction$AxisDirection/f_122532_ net/minecraft/core/Direction$AxisDirection/name +FD: net/minecraft/core/Direction$Plane/$VALUES net/minecraft/core/Direction$Plane/$VALUES +FD: net/minecraft/core/Direction$Plane/HORIZONTAL net/minecraft/core/Direction$Plane/HORIZONTAL +FD: net/minecraft/core/Direction$Plane/VERTICAL net/minecraft/core/Direction$Plane/VERTICAL +FD: net/minecraft/core/Direction$Plane/f_122548_ net/minecraft/core/Direction$Plane/faces +FD: net/minecraft/core/Direction$Plane/f_122549_ net/minecraft/core/Direction$Plane/axis +FD: net/minecraft/core/Direction8/$VALUES net/minecraft/core/Direction8/$VALUES +FD: net/minecraft/core/Direction8/EAST net/minecraft/core/Direction8/EAST +FD: net/minecraft/core/Direction8/NORTH net/minecraft/core/Direction8/NORTH +FD: net/minecraft/core/Direction8/NORTH_EAST net/minecraft/core/Direction8/NORTH_EAST +FD: net/minecraft/core/Direction8/NORTH_WEST net/minecraft/core/Direction8/NORTH_WEST +FD: net/minecraft/core/Direction8/SOUTH net/minecraft/core/Direction8/SOUTH +FD: net/minecraft/core/Direction8/SOUTH_EAST net/minecraft/core/Direction8/SOUTH_EAST +FD: net/minecraft/core/Direction8/SOUTH_WEST net/minecraft/core/Direction8/SOUTH_WEST +FD: net/minecraft/core/Direction8/WEST net/minecraft/core/Direction8/WEST +FD: net/minecraft/core/Direction8/f_122586_ net/minecraft/core/Direction8/directions +FD: net/minecraft/core/Direction8/f_235696_ net/minecraft/core/Direction8/step +FD: net/minecraft/core/FrontAndTop/$VALUES net/minecraft/core/FrontAndTop/$VALUES +FD: net/minecraft/core/FrontAndTop/DOWN_EAST net/minecraft/core/FrontAndTop/DOWN_EAST +FD: net/minecraft/core/FrontAndTop/DOWN_NORTH net/minecraft/core/FrontAndTop/DOWN_NORTH +FD: net/minecraft/core/FrontAndTop/DOWN_SOUTH net/minecraft/core/FrontAndTop/DOWN_SOUTH +FD: net/minecraft/core/FrontAndTop/DOWN_WEST net/minecraft/core/FrontAndTop/DOWN_WEST +FD: net/minecraft/core/FrontAndTop/EAST_UP net/minecraft/core/FrontAndTop/EAST_UP +FD: net/minecraft/core/FrontAndTop/NORTH_UP net/minecraft/core/FrontAndTop/NORTH_UP +FD: net/minecraft/core/FrontAndTop/SOUTH_UP net/minecraft/core/FrontAndTop/SOUTH_UP +FD: net/minecraft/core/FrontAndTop/UP_EAST net/minecraft/core/FrontAndTop/UP_EAST +FD: net/minecraft/core/FrontAndTop/UP_NORTH net/minecraft/core/FrontAndTop/UP_NORTH +FD: net/minecraft/core/FrontAndTop/UP_SOUTH net/minecraft/core/FrontAndTop/UP_SOUTH +FD: net/minecraft/core/FrontAndTop/UP_WEST net/minecraft/core/FrontAndTop/UP_WEST +FD: net/minecraft/core/FrontAndTop/WEST_UP net/minecraft/core/FrontAndTop/WEST_UP +FD: net/minecraft/core/FrontAndTop/f_122609_ net/minecraft/core/FrontAndTop/LOOKUP_TOP_FRONT +FD: net/minecraft/core/FrontAndTop/f_122610_ net/minecraft/core/FrontAndTop/name +FD: net/minecraft/core/FrontAndTop/f_122611_ net/minecraft/core/FrontAndTop/top +FD: net/minecraft/core/FrontAndTop/f_122612_ net/minecraft/core/FrontAndTop/front +FD: net/minecraft/core/GlobalPos/f_122633_ net/minecraft/core/GlobalPos/CODEC +FD: net/minecraft/core/GlobalPos/f_122634_ net/minecraft/core/GlobalPos/dimension +FD: net/minecraft/core/GlobalPos/f_122635_ net/minecraft/core/GlobalPos/pos +FD: net/minecraft/core/Holder$Direct/f_205714_ net/minecraft/core/Holder$Direct/value +FD: net/minecraft/core/Holder$Kind/$VALUES net/minecraft/core/Holder$Kind/$VALUES +FD: net/minecraft/core/Holder$Kind/DIRECT net/minecraft/core/Holder$Kind/DIRECT +FD: net/minecraft/core/Holder$Kind/REFERENCE net/minecraft/core/Holder$Kind/REFERENCE +FD: net/minecraft/core/Holder$Reference/f_205749_ net/minecraft/core/Holder$Reference/tags +FD: net/minecraft/core/Holder$Reference/f_205750_ net/minecraft/core/Holder$Reference/type +FD: net/minecraft/core/Holder$Reference/f_205751_ net/minecraft/core/Holder$Reference/key +FD: net/minecraft/core/Holder$Reference/f_205752_ net/minecraft/core/Holder$Reference/value +FD: net/minecraft/core/Holder$Reference/f_254697_ net/minecraft/core/Holder$Reference/owner +FD: net/minecraft/core/Holder$Reference$Type/$VALUES net/minecraft/core/Holder$Reference$Type/$VALUES +FD: net/minecraft/core/Holder$Reference$Type/INTRUSIVE net/minecraft/core/Holder$Reference$Type/INTRUSIVE +FD: net/minecraft/core/Holder$Reference$Type/STAND_ALONE net/minecraft/core/Holder$Reference$Type/STAND_ALONE +FD: net/minecraft/core/HolderLookup$1/f_254633_ net/minecraft/core/HolderLookup$1/this$0 +FD: net/minecraft/core/HolderLookup$1/f_254636_ net/minecraft/core/HolderLookup$1/val$filter +FD: net/minecraft/core/HolderLookup$Delegate/f_254653_ net/minecraft/core/HolderLookup$Delegate/parent +FD: net/minecraft/core/HolderLookup$Provider$1/f_254657_ net/minecraft/core/HolderLookup$Provider$1/this$0 +FD: net/minecraft/core/HolderLookup$Provider$2/f_254702_ net/minecraft/core/HolderLookup$Provider$2/val$map +FD: net/minecraft/core/HolderSet$Direct/f_205811_ net/minecraft/core/HolderSet$Direct/contents +FD: net/minecraft/core/HolderSet$Direct/f_205812_ net/minecraft/core/HolderSet$Direct/contentsSet +FD: net/minecraft/core/HolderSet$Named/f_205829_ net/minecraft/core/HolderSet$Named/key +FD: net/minecraft/core/HolderSet$Named/f_205830_ net/minecraft/core/HolderSet$Named/contents +FD: net/minecraft/core/HolderSet$Named/f_254711_ net/minecraft/core/HolderSet$Named/owner +FD: net/minecraft/core/IdMap/f_194530_ net/minecraft/core/IdMap/DEFAULT +FD: net/minecraft/core/IdMapper/f_122653_ net/minecraft/core/IdMapper/nextId +FD: net/minecraft/core/IdMapper/f_122654_ net/minecraft/core/IdMapper/tToId +FD: net/minecraft/core/IdMapper/f_122655_ net/minecraft/core/IdMapper/idToT +FD: net/minecraft/core/LayeredRegistryAccess/f_244050_ net/minecraft/core/LayeredRegistryAccess/values +FD: net/minecraft/core/LayeredRegistryAccess/f_244063_ net/minecraft/core/LayeredRegistryAccess/composite +FD: net/minecraft/core/LayeredRegistryAccess/f_244209_ net/minecraft/core/LayeredRegistryAccess/keys +FD: net/minecraft/core/MappedRegistry/f_122672_ net/minecraft/core/MappedRegistry/byId +FD: net/minecraft/core/MappedRegistry/f_122673_ net/minecraft/core/MappedRegistry/toId +FD: net/minecraft/core/MappedRegistry/f_122676_ net/minecraft/core/MappedRegistry/lifecycles +FD: net/minecraft/core/MappedRegistry/f_122678_ net/minecraft/core/MappedRegistry/nextId +FD: net/minecraft/core/MappedRegistry/f_205841_ net/minecraft/core/MappedRegistry/byLocation +FD: net/minecraft/core/MappedRegistry/f_205842_ net/minecraft/core/MappedRegistry/byKey +FD: net/minecraft/core/MappedRegistry/f_205843_ net/minecraft/core/MappedRegistry/byValue +FD: net/minecraft/core/MappedRegistry/f_205844_ net/minecraft/core/MappedRegistry/tags +FD: net/minecraft/core/MappedRegistry/f_205845_ net/minecraft/core/MappedRegistry/frozen +FD: net/minecraft/core/MappedRegistry/f_211050_ net/minecraft/core/MappedRegistry/LOGGER +FD: net/minecraft/core/MappedRegistry/f_211051_ net/minecraft/core/MappedRegistry/holdersInOrder +FD: net/minecraft/core/MappedRegistry/f_244282_ net/minecraft/core/MappedRegistry/unregisteredIntrusiveHolders +FD: net/minecraft/core/MappedRegistry/f_256817_ net/minecraft/core/MappedRegistry/key +FD: net/minecraft/core/MappedRegistry/f_256971_ net/minecraft/core/MappedRegistry/lookup +FD: net/minecraft/core/MappedRegistry/f_256989_ net/minecraft/core/MappedRegistry/registryLifecycle +FD: net/minecraft/core/MappedRegistry$1/f_254673_ net/minecraft/core/MappedRegistry$1/this$0 +FD: net/minecraft/core/MappedRegistry$2/f_256893_ net/minecraft/core/MappedRegistry$2/this$0 +FD: net/minecraft/core/NonNullList/f_122773_ net/minecraft/core/NonNullList/list +FD: net/minecraft/core/NonNullList/f_122774_ net/minecraft/core/NonNullList/defaultValue +FD: net/minecraft/core/PositionImpl/f_122798_ net/minecraft/core/PositionImpl/x +FD: net/minecraft/core/PositionImpl/f_122799_ net/minecraft/core/PositionImpl/y +FD: net/minecraft/core/PositionImpl/f_122800_ net/minecraft/core/PositionImpl/z +FD: net/minecraft/core/QuartPos/f_175396_ net/minecraft/core/QuartPos/BITS +FD: net/minecraft/core/QuartPos/f_175397_ net/minecraft/core/QuartPos/SIZE +FD: net/minecraft/core/QuartPos/f_175398_ net/minecraft/core/QuartPos/SECTION_TO_QUARTS_BITS +FD: net/minecraft/core/QuartPos/f_194564_ net/minecraft/core/QuartPos/MASK +FD: net/minecraft/core/Registry$1/f_206134_ net/minecraft/core/Registry$1/this$0 +FD: net/minecraft/core/Registry$2/f_254694_ net/minecraft/core/Registry$2/this$0 +FD: net/minecraft/core/RegistryAccess/f_123047_ net/minecraft/core/RegistryAccess/LOGGER +FD: net/minecraft/core/RegistryAccess/f_243945_ net/minecraft/core/RegistryAccess/EMPTY +FD: net/minecraft/core/RegistryAccess$1/f_206216_ net/minecraft/core/RegistryAccess$1/val$registries +FD: net/minecraft/core/RegistryAccess$1FrozenAccess/f_244254_ net/minecraft/core/RegistryAccess$1FrozenAccess/this$0 +FD: net/minecraft/core/RegistryAccess$ImmutableRegistryAccess/f_206223_ net/minecraft/core/RegistryAccess$ImmutableRegistryAccess/registries +FD: net/minecraft/core/RegistryAccess$RegistryEntry/f_206233_ net/minecraft/core/RegistryAccess$RegistryEntry/key +FD: net/minecraft/core/RegistryAccess$RegistryEntry/f_206234_ net/minecraft/core/RegistryAccess$RegistryEntry/value +FD: net/minecraft/core/RegistryCodecs$RegistryEntry/f_206354_ net/minecraft/core/RegistryCodecs$RegistryEntry/key +FD: net/minecraft/core/RegistryCodecs$RegistryEntry/f_206355_ net/minecraft/core/RegistryCodecs$RegistryEntry/id +FD: net/minecraft/core/RegistryCodecs$RegistryEntry/f_206356_ net/minecraft/core/RegistryCodecs$RegistryEntry/value +FD: net/minecraft/core/RegistrySetBuilder/f_254732_ net/minecraft/core/RegistrySetBuilder/entries +FD: net/minecraft/core/RegistrySetBuilder$1/f_254693_ net/minecraft/core/RegistrySetBuilder$1/val$original +FD: net/minecraft/core/RegistrySetBuilder$BuildState/f_254627_ net/minecraft/core/RegistrySetBuilder$BuildState/errors +FD: net/minecraft/core/RegistrySetBuilder$BuildState/f_254644_ net/minecraft/core/RegistrySetBuilder$BuildState/registeredValues +FD: net/minecraft/core/RegistrySetBuilder$BuildState/f_254680_ net/minecraft/core/RegistrySetBuilder$BuildState/owner +FD: net/minecraft/core/RegistrySetBuilder$BuildState/f_254690_ net/minecraft/core/RegistrySetBuilder$BuildState/registries +FD: net/minecraft/core/RegistrySetBuilder$BuildState/f_254749_ net/minecraft/core/RegistrySetBuilder$BuildState/lookup +FD: net/minecraft/core/RegistrySetBuilder$BuildState$1/f_254676_ net/minecraft/core/RegistrySetBuilder$BuildState$1/this$0 +FD: net/minecraft/core/RegistrySetBuilder$CompositeOwner/f_254663_ net/minecraft/core/RegistrySetBuilder$CompositeOwner/owners +FD: net/minecraft/core/RegistrySetBuilder$EmptyTagLookup/f_254742_ net/minecraft/core/RegistrySetBuilder$EmptyTagLookup/owner +FD: net/minecraft/core/RegistrySetBuilder$RegisteredValue/f_254641_ net/minecraft/core/RegistrySetBuilder$RegisteredValue/lifecycle +FD: net/minecraft/core/RegistrySetBuilder$RegisteredValue/f_254685_ net/minecraft/core/RegistrySetBuilder$RegisteredValue/value +FD: net/minecraft/core/RegistrySetBuilder$RegistryContents/f_254715_ net/minecraft/core/RegistrySetBuilder$RegistryContents/values +FD: net/minecraft/core/RegistrySetBuilder$RegistryContents/f_271144_ net/minecraft/core/RegistrySetBuilder$RegistryContents/lifecycle +FD: net/minecraft/core/RegistrySetBuilder$RegistryContents/f_271195_ net/minecraft/core/RegistrySetBuilder$RegistryContents/key +FD: net/minecraft/core/RegistrySetBuilder$RegistryContents$1/f_254643_ net/minecraft/core/RegistrySetBuilder$RegistryContents$1/entries +FD: net/minecraft/core/RegistrySetBuilder$RegistryContents$1/f_254722_ net/minecraft/core/RegistrySetBuilder$RegistryContents$1/this$0 +FD: net/minecraft/core/RegistrySetBuilder$RegistryStub/f_254689_ net/minecraft/core/RegistrySetBuilder$RegistryStub/bootstrap +FD: net/minecraft/core/RegistrySetBuilder$RegistryStub/f_254728_ net/minecraft/core/RegistrySetBuilder$RegistryStub/lifecycle +FD: net/minecraft/core/RegistrySetBuilder$RegistryStub/f_254738_ net/minecraft/core/RegistrySetBuilder$RegistryStub/key +FD: net/minecraft/core/RegistrySetBuilder$UniversalLookup/f_254730_ net/minecraft/core/RegistrySetBuilder$UniversalLookup/holders +FD: net/minecraft/core/RegistrySetBuilder$ValueAndHolder/f_254632_ net/minecraft/core/RegistrySetBuilder$ValueAndHolder/holder +FD: net/minecraft/core/RegistrySetBuilder$ValueAndHolder/f_254683_ net/minecraft/core/RegistrySetBuilder$ValueAndHolder/value +FD: net/minecraft/core/RegistrySynchronization/f_244380_ net/minecraft/core/RegistrySynchronization/NETWORK_CODEC +FD: net/minecraft/core/RegistrySynchronization/f_244438_ net/minecraft/core/RegistrySynchronization/NETWORKABLE_REGISTRIES +FD: net/minecraft/core/RegistrySynchronization$NetworkedRegistryData/f_244392_ net/minecraft/core/RegistrySynchronization$NetworkedRegistryData/networkCodec +FD: net/minecraft/core/RegistrySynchronization$NetworkedRegistryData/f_244545_ net/minecraft/core/RegistrySynchronization$NetworkedRegistryData/key +FD: net/minecraft/core/Rotations/f_123146_ net/minecraft/core/Rotations/x +FD: net/minecraft/core/Rotations/f_123147_ net/minecraft/core/Rotations/y +FD: net/minecraft/core/Rotations/f_123148_ net/minecraft/core/Rotations/z +FD: net/minecraft/core/SectionPos/f_175535_ net/minecraft/core/SectionPos/SECTION_BITS +FD: net/minecraft/core/SectionPos/f_175536_ net/minecraft/core/SectionPos/SECTION_SIZE +FD: net/minecraft/core/SectionPos/f_175537_ net/minecraft/core/SectionPos/SECTION_HALF_SIZE +FD: net/minecraft/core/SectionPos/f_175538_ net/minecraft/core/SectionPos/SECTION_MAX_INDEX +FD: net/minecraft/core/SectionPos/f_175539_ net/minecraft/core/SectionPos/SECTION_MASK +FD: net/minecraft/core/SectionPos/f_175540_ net/minecraft/core/SectionPos/PACKED_X_LENGTH +FD: net/minecraft/core/SectionPos/f_175541_ net/minecraft/core/SectionPos/PACKED_Y_LENGTH +FD: net/minecraft/core/SectionPos/f_175542_ net/minecraft/core/SectionPos/PACKED_Z_LENGTH +FD: net/minecraft/core/SectionPos/f_175543_ net/minecraft/core/SectionPos/PACKED_X_MASK +FD: net/minecraft/core/SectionPos/f_175544_ net/minecraft/core/SectionPos/PACKED_Y_MASK +FD: net/minecraft/core/SectionPos/f_175545_ net/minecraft/core/SectionPos/PACKED_Z_MASK +FD: net/minecraft/core/SectionPos/f_175546_ net/minecraft/core/SectionPos/Y_OFFSET +FD: net/minecraft/core/SectionPos/f_175547_ net/minecraft/core/SectionPos/Z_OFFSET +FD: net/minecraft/core/SectionPos/f_175548_ net/minecraft/core/SectionPos/X_OFFSET +FD: net/minecraft/core/SectionPos/f_175549_ net/minecraft/core/SectionPos/RELATIVE_X_SHIFT +FD: net/minecraft/core/SectionPos/f_175550_ net/minecraft/core/SectionPos/RELATIVE_Y_SHIFT +FD: net/minecraft/core/SectionPos/f_175551_ net/minecraft/core/SectionPos/RELATIVE_Z_SHIFT +FD: net/minecraft/core/SectionPos$1/f_123254_ net/minecraft/core/SectionPos$1/cursor +FD: net/minecraft/core/SectionPos$1/f_123255_ net/minecraft/core/SectionPos$1/val$minX +FD: net/minecraft/core/SectionPos$1/f_123256_ net/minecraft/core/SectionPos$1/val$minY +FD: net/minecraft/core/SectionPos$1/f_123257_ net/minecraft/core/SectionPos$1/val$minZ +FD: net/minecraft/core/SectionPos$1/f_123258_ net/minecraft/core/SectionPos$1/val$maxX +FD: net/minecraft/core/SectionPos$1/f_123259_ net/minecraft/core/SectionPos$1/val$maxY +FD: net/minecraft/core/SectionPos$1/f_123260_ net/minecraft/core/SectionPos$1/val$maxZ +FD: net/minecraft/core/UUIDUtil/f_235867_ net/minecraft/core/UUIDUtil/CODEC +FD: net/minecraft/core/UUIDUtil/f_235868_ net/minecraft/core/UUIDUtil/UUID_BYTES +FD: net/minecraft/core/UUIDUtil/f_235869_ net/minecraft/core/UUIDUtil/UUID_PREFIX_OFFLINE_PLAYER +FD: net/minecraft/core/UUIDUtil/f_252480_ net/minecraft/core/UUIDUtil/AUTHLIB_CODEC +FD: net/minecraft/core/UUIDUtil/f_260719_ net/minecraft/core/UUIDUtil/STRING_CODEC +FD: net/minecraft/core/Vec3i/f_123285_ net/minecraft/core/Vec3i/x +FD: net/minecraft/core/Vec3i/f_123286_ net/minecraft/core/Vec3i/y +FD: net/minecraft/core/Vec3i/f_123287_ net/minecraft/core/Vec3i/CODEC +FD: net/minecraft/core/Vec3i/f_123288_ net/minecraft/core/Vec3i/ZERO +FD: net/minecraft/core/Vec3i/f_123289_ net/minecraft/core/Vec3i/z +FD: net/minecraft/core/cauldron/CauldronInteraction/f_175606_ net/minecraft/core/cauldron/CauldronInteraction/EMPTY +FD: net/minecraft/core/cauldron/CauldronInteraction/f_175607_ net/minecraft/core/cauldron/CauldronInteraction/WATER +FD: net/minecraft/core/cauldron/CauldronInteraction/f_175608_ net/minecraft/core/cauldron/CauldronInteraction/LAVA +FD: net/minecraft/core/cauldron/CauldronInteraction/f_175609_ net/minecraft/core/cauldron/CauldronInteraction/POWDER_SNOW +FD: net/minecraft/core/cauldron/CauldronInteraction/f_175610_ net/minecraft/core/cauldron/CauldronInteraction/FILL_WATER +FD: net/minecraft/core/cauldron/CauldronInteraction/f_175611_ net/minecraft/core/cauldron/CauldronInteraction/FILL_LAVA +FD: net/minecraft/core/cauldron/CauldronInteraction/f_175612_ net/minecraft/core/cauldron/CauldronInteraction/FILL_POWDER_SNOW +FD: net/minecraft/core/cauldron/CauldronInteraction/f_175613_ net/minecraft/core/cauldron/CauldronInteraction/SHULKER_BOX +FD: net/minecraft/core/cauldron/CauldronInteraction/f_175614_ net/minecraft/core/cauldron/CauldronInteraction/BANNER +FD: net/minecraft/core/cauldron/CauldronInteraction/f_175615_ net/minecraft/core/cauldron/CauldronInteraction/DYED_ITEM +FD: net/minecraft/core/dispenser/BoatDispenseItemBehavior/f_123368_ net/minecraft/core/dispenser/BoatDispenseItemBehavior/defaultDispenseItemBehavior +FD: net/minecraft/core/dispenser/BoatDispenseItemBehavior/f_123369_ net/minecraft/core/dispenser/BoatDispenseItemBehavior/type +FD: net/minecraft/core/dispenser/BoatDispenseItemBehavior/f_235889_ net/minecraft/core/dispenser/BoatDispenseItemBehavior/isChestBoat +FD: net/minecraft/core/dispenser/DispenseItemBehavior/f_123393_ net/minecraft/core/dispenser/DispenseItemBehavior/NOOP +FD: net/minecraft/core/dispenser/DispenseItemBehavior/f_181892_ net/minecraft/core/dispenser/DispenseItemBehavior/LOGGER +FD: net/minecraft/core/dispenser/DispenseItemBehavior$16/f_123558_ net/minecraft/core/dispenser/DispenseItemBehavior$16/defaultDispenseItemBehavior +FD: net/minecraft/core/dispenser/DispenseItemBehavior$17/f_123563_ net/minecraft/core/dispenser/DispenseItemBehavior$17/defaultDispenseItemBehavior +FD: net/minecraft/core/dispenser/DispenseItemBehavior$24/f_123439_ net/minecraft/core/dispenser/DispenseItemBehavior$24/defaultDispenseItemBehavior +FD: net/minecraft/core/dispenser/DispenseItemBehavior$27/f_235893_ net/minecraft/core/dispenser/DispenseItemBehavior$27/defaultDispenseItemBehavior +FD: net/minecraft/core/dispenser/DispenseItemBehavior$7$1/f_123493_ net/minecraft/core/dispenser/DispenseItemBehavior$7$1/this$0 +FD: net/minecraft/core/dispenser/DispenseItemBehavior$8$1/f_123509_ net/minecraft/core/dispenser/DispenseItemBehavior$8$1/this$0 +FD: net/minecraft/core/dispenser/OptionalDispenseItemBehavior/f_123568_ net/minecraft/core/dispenser/OptionalDispenseItemBehavior/success +FD: net/minecraft/core/dispenser/ShulkerBoxDispenseBehavior/f_175749_ net/minecraft/core/dispenser/ShulkerBoxDispenseBehavior/LOGGER +FD: net/minecraft/core/particles/BlockParticleOption/f_123624_ net/minecraft/core/particles/BlockParticleOption/DESERIALIZER +FD: net/minecraft/core/particles/BlockParticleOption/f_123625_ net/minecraft/core/particles/BlockParticleOption/type +FD: net/minecraft/core/particles/BlockParticleOption/f_123626_ net/minecraft/core/particles/BlockParticleOption/state +FD: net/minecraft/core/particles/DustColorTransitionOptions/f_175751_ net/minecraft/core/particles/DustColorTransitionOptions/SCULK_PARTICLE_COLOR +FD: net/minecraft/core/particles/DustColorTransitionOptions/f_175752_ net/minecraft/core/particles/DustColorTransitionOptions/SCULK_TO_REDSTONE +FD: net/minecraft/core/particles/DustColorTransitionOptions/f_175753_ net/minecraft/core/particles/DustColorTransitionOptions/CODEC +FD: net/minecraft/core/particles/DustColorTransitionOptions/f_175754_ net/minecraft/core/particles/DustColorTransitionOptions/DESERIALIZER +FD: net/minecraft/core/particles/DustColorTransitionOptions/f_175755_ net/minecraft/core/particles/DustColorTransitionOptions/toColor +FD: net/minecraft/core/particles/DustParticleOptions/f_123656_ net/minecraft/core/particles/DustParticleOptions/REDSTONE +FD: net/minecraft/core/particles/DustParticleOptions/f_123657_ net/minecraft/core/particles/DustParticleOptions/CODEC +FD: net/minecraft/core/particles/DustParticleOptions/f_123658_ net/minecraft/core/particles/DustParticleOptions/DESERIALIZER +FD: net/minecraft/core/particles/DustParticleOptions/f_175788_ net/minecraft/core/particles/DustParticleOptions/REDSTONE_PARTICLE_COLOR +FD: net/minecraft/core/particles/DustParticleOptionsBase/f_175798_ net/minecraft/core/particles/DustParticleOptionsBase/MIN_SCALE +FD: net/minecraft/core/particles/DustParticleOptionsBase/f_175799_ net/minecraft/core/particles/DustParticleOptionsBase/MAX_SCALE +FD: net/minecraft/core/particles/DustParticleOptionsBase/f_175800_ net/minecraft/core/particles/DustParticleOptionsBase/color +FD: net/minecraft/core/particles/DustParticleOptionsBase/f_175801_ net/minecraft/core/particles/DustParticleOptionsBase/scale +FD: net/minecraft/core/particles/ItemParticleOption/f_123700_ net/minecraft/core/particles/ItemParticleOption/DESERIALIZER +FD: net/minecraft/core/particles/ItemParticleOption/f_123701_ net/minecraft/core/particles/ItemParticleOption/type +FD: net/minecraft/core/particles/ItemParticleOption/f_123702_ net/minecraft/core/particles/ItemParticleOption/itemStack +FD: net/minecraft/core/particles/ParticleGroup/f_175814_ net/minecraft/core/particles/ParticleGroup/SPORE_BLOSSOM +FD: net/minecraft/core/particles/ParticleGroup/f_175815_ net/minecraft/core/particles/ParticleGroup/limit +FD: net/minecraft/core/particles/ParticleType/f_123737_ net/minecraft/core/particles/ParticleType/overrideLimiter +FD: net/minecraft/core/particles/ParticleType/f_123738_ net/minecraft/core/particles/ParticleType/deserializer +FD: net/minecraft/core/particles/ParticleTypes/f_123744_ net/minecraft/core/particles/ParticleTypes/FLAME +FD: net/minecraft/core/particles/ParticleTypes/f_123745_ net/minecraft/core/particles/ParticleTypes/SOUL_FIRE_FLAME +FD: net/minecraft/core/particles/ParticleTypes/f_123746_ net/minecraft/core/particles/ParticleTypes/SOUL +FD: net/minecraft/core/particles/ParticleTypes/f_123747_ net/minecraft/core/particles/ParticleTypes/FLASH +FD: net/minecraft/core/particles/ParticleTypes/f_123748_ net/minecraft/core/particles/ParticleTypes/HAPPY_VILLAGER +FD: net/minecraft/core/particles/ParticleTypes/f_123749_ net/minecraft/core/particles/ParticleTypes/COMPOSTER +FD: net/minecraft/core/particles/ParticleTypes/f_123750_ net/minecraft/core/particles/ParticleTypes/HEART +FD: net/minecraft/core/particles/ParticleTypes/f_123751_ net/minecraft/core/particles/ParticleTypes/INSTANT_EFFECT +FD: net/minecraft/core/particles/ParticleTypes/f_123752_ net/minecraft/core/particles/ParticleTypes/ITEM +FD: net/minecraft/core/particles/ParticleTypes/f_123753_ net/minecraft/core/particles/ParticleTypes/ITEM_SLIME +FD: net/minecraft/core/particles/ParticleTypes/f_123754_ net/minecraft/core/particles/ParticleTypes/ITEM_SNOWBALL +FD: net/minecraft/core/particles/ParticleTypes/f_123755_ net/minecraft/core/particles/ParticleTypes/LARGE_SMOKE +FD: net/minecraft/core/particles/ParticleTypes/f_123756_ net/minecraft/core/particles/ParticleTypes/LAVA +FD: net/minecraft/core/particles/ParticleTypes/f_123757_ net/minecraft/core/particles/ParticleTypes/MYCELIUM +FD: net/minecraft/core/particles/ParticleTypes/f_123758_ net/minecraft/core/particles/ParticleTypes/NOTE +FD: net/minecraft/core/particles/ParticleTypes/f_123759_ net/minecraft/core/particles/ParticleTypes/POOF +FD: net/minecraft/core/particles/ParticleTypes/f_123760_ net/minecraft/core/particles/ParticleTypes/PORTAL +FD: net/minecraft/core/particles/ParticleTypes/f_123761_ net/minecraft/core/particles/ParticleTypes/RAIN +FD: net/minecraft/core/particles/ParticleTypes/f_123762_ net/minecraft/core/particles/ParticleTypes/SMOKE +FD: net/minecraft/core/particles/ParticleTypes/f_123763_ net/minecraft/core/particles/ParticleTypes/SNEEZE +FD: net/minecraft/core/particles/ParticleTypes/f_123764_ net/minecraft/core/particles/ParticleTypes/SPIT +FD: net/minecraft/core/particles/ParticleTypes/f_123765_ net/minecraft/core/particles/ParticleTypes/SQUID_INK +FD: net/minecraft/core/particles/ParticleTypes/f_123766_ net/minecraft/core/particles/ParticleTypes/SWEEP_ATTACK +FD: net/minecraft/core/particles/ParticleTypes/f_123767_ net/minecraft/core/particles/ParticleTypes/TOTEM_OF_UNDYING +FD: net/minecraft/core/particles/ParticleTypes/f_123768_ net/minecraft/core/particles/ParticleTypes/UNDERWATER +FD: net/minecraft/core/particles/ParticleTypes/f_123769_ net/minecraft/core/particles/ParticleTypes/SPLASH +FD: net/minecraft/core/particles/ParticleTypes/f_123770_ net/minecraft/core/particles/ParticleTypes/AMBIENT_ENTITY_EFFECT +FD: net/minecraft/core/particles/ParticleTypes/f_123771_ net/minecraft/core/particles/ParticleTypes/WITCH +FD: net/minecraft/core/particles/ParticleTypes/f_123772_ net/minecraft/core/particles/ParticleTypes/BUBBLE_POP +FD: net/minecraft/core/particles/ParticleTypes/f_123773_ net/minecraft/core/particles/ParticleTypes/CURRENT_DOWN +FD: net/minecraft/core/particles/ParticleTypes/f_123774_ net/minecraft/core/particles/ParticleTypes/BUBBLE_COLUMN_UP +FD: net/minecraft/core/particles/ParticleTypes/f_123775_ net/minecraft/core/particles/ParticleTypes/NAUTILUS +FD: net/minecraft/core/particles/ParticleTypes/f_123776_ net/minecraft/core/particles/ParticleTypes/DOLPHIN +FD: net/minecraft/core/particles/ParticleTypes/f_123777_ net/minecraft/core/particles/ParticleTypes/CAMPFIRE_COSY_SMOKE +FD: net/minecraft/core/particles/ParticleTypes/f_123778_ net/minecraft/core/particles/ParticleTypes/CAMPFIRE_SIGNAL_SMOKE +FD: net/minecraft/core/particles/ParticleTypes/f_123779_ net/minecraft/core/particles/ParticleTypes/DRIPPING_HONEY +FD: net/minecraft/core/particles/ParticleTypes/f_123780_ net/minecraft/core/particles/ParticleTypes/FALLING_HONEY +FD: net/minecraft/core/particles/ParticleTypes/f_123781_ net/minecraft/core/particles/ParticleTypes/LANDING_HONEY +FD: net/minecraft/core/particles/ParticleTypes/f_123782_ net/minecraft/core/particles/ParticleTypes/FALLING_NECTAR +FD: net/minecraft/core/particles/ParticleTypes/f_123783_ net/minecraft/core/particles/ParticleTypes/ASH +FD: net/minecraft/core/particles/ParticleTypes/f_123784_ net/minecraft/core/particles/ParticleTypes/CRIMSON_SPORE +FD: net/minecraft/core/particles/ParticleTypes/f_123785_ net/minecraft/core/particles/ParticleTypes/WARPED_SPORE +FD: net/minecraft/core/particles/ParticleTypes/f_123786_ net/minecraft/core/particles/ParticleTypes/DRIPPING_OBSIDIAN_TEAR +FD: net/minecraft/core/particles/ParticleTypes/f_123787_ net/minecraft/core/particles/ParticleTypes/FALLING_OBSIDIAN_TEAR +FD: net/minecraft/core/particles/ParticleTypes/f_123788_ net/minecraft/core/particles/ParticleTypes/LANDING_OBSIDIAN_TEAR +FD: net/minecraft/core/particles/ParticleTypes/f_123789_ net/minecraft/core/particles/ParticleTypes/REVERSE_PORTAL +FD: net/minecraft/core/particles/ParticleTypes/f_123790_ net/minecraft/core/particles/ParticleTypes/WHITE_ASH +FD: net/minecraft/core/particles/ParticleTypes/f_123791_ net/minecraft/core/particles/ParticleTypes/CODEC +FD: net/minecraft/core/particles/ParticleTypes/f_123792_ net/minecraft/core/particles/ParticleTypes/ANGRY_VILLAGER +FD: net/minecraft/core/particles/ParticleTypes/f_123794_ net/minecraft/core/particles/ParticleTypes/BLOCK +FD: net/minecraft/core/particles/ParticleTypes/f_123795_ net/minecraft/core/particles/ParticleTypes/BUBBLE +FD: net/minecraft/core/particles/ParticleTypes/f_123796_ net/minecraft/core/particles/ParticleTypes/CLOUD +FD: net/minecraft/core/particles/ParticleTypes/f_123797_ net/minecraft/core/particles/ParticleTypes/CRIT +FD: net/minecraft/core/particles/ParticleTypes/f_123798_ net/minecraft/core/particles/ParticleTypes/DAMAGE_INDICATOR +FD: net/minecraft/core/particles/ParticleTypes/f_123799_ net/minecraft/core/particles/ParticleTypes/DRAGON_BREATH +FD: net/minecraft/core/particles/ParticleTypes/f_123800_ net/minecraft/core/particles/ParticleTypes/DRIPPING_LAVA +FD: net/minecraft/core/particles/ParticleTypes/f_123801_ net/minecraft/core/particles/ParticleTypes/FALLING_LAVA +FD: net/minecraft/core/particles/ParticleTypes/f_123802_ net/minecraft/core/particles/ParticleTypes/LANDING_LAVA +FD: net/minecraft/core/particles/ParticleTypes/f_123803_ net/minecraft/core/particles/ParticleTypes/DRIPPING_WATER +FD: net/minecraft/core/particles/ParticleTypes/f_123804_ net/minecraft/core/particles/ParticleTypes/FALLING_WATER +FD: net/minecraft/core/particles/ParticleTypes/f_123805_ net/minecraft/core/particles/ParticleTypes/DUST +FD: net/minecraft/core/particles/ParticleTypes/f_123806_ net/minecraft/core/particles/ParticleTypes/EFFECT +FD: net/minecraft/core/particles/ParticleTypes/f_123807_ net/minecraft/core/particles/ParticleTypes/ELDER_GUARDIAN +FD: net/minecraft/core/particles/ParticleTypes/f_123808_ net/minecraft/core/particles/ParticleTypes/ENCHANTED_HIT +FD: net/minecraft/core/particles/ParticleTypes/f_123809_ net/minecraft/core/particles/ParticleTypes/ENCHANT +FD: net/minecraft/core/particles/ParticleTypes/f_123810_ net/minecraft/core/particles/ParticleTypes/END_ROD +FD: net/minecraft/core/particles/ParticleTypes/f_123811_ net/minecraft/core/particles/ParticleTypes/ENTITY_EFFECT +FD: net/minecraft/core/particles/ParticleTypes/f_123812_ net/minecraft/core/particles/ParticleTypes/EXPLOSION_EMITTER +FD: net/minecraft/core/particles/ParticleTypes/f_123813_ net/minecraft/core/particles/ParticleTypes/EXPLOSION +FD: net/minecraft/core/particles/ParticleTypes/f_123814_ net/minecraft/core/particles/ParticleTypes/FALLING_DUST +FD: net/minecraft/core/particles/ParticleTypes/f_123815_ net/minecraft/core/particles/ParticleTypes/FIREWORK +FD: net/minecraft/core/particles/ParticleTypes/f_123816_ net/minecraft/core/particles/ParticleTypes/FISHING +FD: net/minecraft/core/particles/ParticleTypes/f_175820_ net/minecraft/core/particles/ParticleTypes/VIBRATION +FD: net/minecraft/core/particles/ParticleTypes/f_175821_ net/minecraft/core/particles/ParticleTypes/SNOWFLAKE +FD: net/minecraft/core/particles/ParticleTypes/f_175822_ net/minecraft/core/particles/ParticleTypes/DRIPPING_DRIPSTONE_LAVA +FD: net/minecraft/core/particles/ParticleTypes/f_175823_ net/minecraft/core/particles/ParticleTypes/FALLING_DRIPSTONE_LAVA +FD: net/minecraft/core/particles/ParticleTypes/f_175824_ net/minecraft/core/particles/ParticleTypes/DRIPPING_DRIPSTONE_WATER +FD: net/minecraft/core/particles/ParticleTypes/f_175825_ net/minecraft/core/particles/ParticleTypes/FALLING_DRIPSTONE_WATER +FD: net/minecraft/core/particles/ParticleTypes/f_175826_ net/minecraft/core/particles/ParticleTypes/GLOW_SQUID_INK +FD: net/minecraft/core/particles/ParticleTypes/f_175827_ net/minecraft/core/particles/ParticleTypes/GLOW +FD: net/minecraft/core/particles/ParticleTypes/f_175828_ net/minecraft/core/particles/ParticleTypes/WAX_ON +FD: net/minecraft/core/particles/ParticleTypes/f_175829_ net/minecraft/core/particles/ParticleTypes/WAX_OFF +FD: net/minecraft/core/particles/ParticleTypes/f_175830_ net/minecraft/core/particles/ParticleTypes/ELECTRIC_SPARK +FD: net/minecraft/core/particles/ParticleTypes/f_175831_ net/minecraft/core/particles/ParticleTypes/SCRAPE +FD: net/minecraft/core/particles/ParticleTypes/f_175832_ net/minecraft/core/particles/ParticleTypes/FALLING_SPORE_BLOSSOM +FD: net/minecraft/core/particles/ParticleTypes/f_175833_ net/minecraft/core/particles/ParticleTypes/SPORE_BLOSSOM_AIR +FD: net/minecraft/core/particles/ParticleTypes/f_175834_ net/minecraft/core/particles/ParticleTypes/SMALL_FLAME +FD: net/minecraft/core/particles/ParticleTypes/f_175836_ net/minecraft/core/particles/ParticleTypes/DUST_COLOR_TRANSITION +FD: net/minecraft/core/particles/ParticleTypes/f_194652_ net/minecraft/core/particles/ParticleTypes/BLOCK_MARKER +FD: net/minecraft/core/particles/ParticleTypes/f_235898_ net/minecraft/core/particles/ParticleTypes/SCULK_SOUL +FD: net/minecraft/core/particles/ParticleTypes/f_235899_ net/minecraft/core/particles/ParticleTypes/SCULK_CHARGE +FD: net/minecraft/core/particles/ParticleTypes/f_235900_ net/minecraft/core/particles/ParticleTypes/SCULK_CHARGE_POP +FD: net/minecraft/core/particles/ParticleTypes/f_235901_ net/minecraft/core/particles/ParticleTypes/SHRIEK +FD: net/minecraft/core/particles/ParticleTypes/f_235902_ net/minecraft/core/particles/ParticleTypes/SONIC_BOOM +FD: net/minecraft/core/particles/ParticleTypes/f_276452_ net/minecraft/core/particles/ParticleTypes/CHERRY_LEAVES +FD: net/minecraft/core/particles/ParticleTypes/f_276512_ net/minecraft/core/particles/ParticleTypes/EGG_CRACK +FD: net/minecraft/core/particles/ParticleTypes$1/f_123827_ net/minecraft/core/particles/ParticleTypes$1/val$codec +FD: net/minecraft/core/particles/SculkChargeParticleOptions/f_235912_ net/minecraft/core/particles/SculkChargeParticleOptions/CODEC +FD: net/minecraft/core/particles/SculkChargeParticleOptions/f_235913_ net/minecraft/core/particles/SculkChargeParticleOptions/DESERIALIZER +FD: net/minecraft/core/particles/SculkChargeParticleOptions/f_235914_ net/minecraft/core/particles/SculkChargeParticleOptions/roll +FD: net/minecraft/core/particles/ShriekParticleOption/f_235944_ net/minecraft/core/particles/ShriekParticleOption/CODEC +FD: net/minecraft/core/particles/ShriekParticleOption/f_235945_ net/minecraft/core/particles/ShriekParticleOption/DESERIALIZER +FD: net/minecraft/core/particles/ShriekParticleOption/f_235946_ net/minecraft/core/particles/ShriekParticleOption/delay +FD: net/minecraft/core/particles/SimpleParticleType/f_123833_ net/minecraft/core/particles/SimpleParticleType/DESERIALIZER +FD: net/minecraft/core/particles/SimpleParticleType/f_123834_ net/minecraft/core/particles/SimpleParticleType/codec +FD: net/minecraft/core/particles/VibrationParticleOption/f_175842_ net/minecraft/core/particles/VibrationParticleOption/CODEC +FD: net/minecraft/core/particles/VibrationParticleOption/f_175843_ net/minecraft/core/particles/VibrationParticleOption/DESERIALIZER +FD: net/minecraft/core/particles/VibrationParticleOption/f_235972_ net/minecraft/core/particles/VibrationParticleOption/destination +FD: net/minecraft/core/particles/VibrationParticleOption/f_235973_ net/minecraft/core/particles/VibrationParticleOption/arrivalInTicks +FD: net/minecraft/core/registries/BuiltInRegistries/f_256719_ net/minecraft/core/registries/BuiltInRegistries/LOOT_SCORE_PROVIDER_TYPE +FD: net/minecraft/core/registries/BuiltInRegistries/f_256726_ net/minecraft/core/registries/BuiltInRegistries/GAME_EVENT +FD: net/minecraft/core/registries/BuiltInRegistries/f_256733_ net/minecraft/core/registries/BuiltInRegistries/SENSOR_TYPE +FD: net/minecraft/core/registries/BuiltInRegistries/f_256735_ net/minecraft/core/registries/BuiltInRegistries/VILLAGER_PROFESSION +FD: net/minecraft/core/registries/BuiltInRegistries/f_256736_ net/minecraft/core/registries/BuiltInRegistries/LOOT_NBT_PROVIDER_TYPE +FD: net/minecraft/core/registries/BuiltInRegistries/f_256737_ net/minecraft/core/registries/BuiltInRegistries/BIOME_SOURCE +FD: net/minecraft/core/registries/BuiltInRegistries/f_256742_ net/minecraft/core/registries/BuiltInRegistries/ROOT_PLACER_TYPE +FD: net/minecraft/core/registries/BuiltInRegistries/f_256744_ net/minecraft/core/registries/BuiltInRegistries/LOGGER +FD: net/minecraft/core/registries/BuiltInRegistries/f_256751_ net/minecraft/core/registries/BuiltInRegistries/LOADERS +FD: net/minecraft/core/registries/BuiltInRegistries/f_256753_ net/minecraft/core/registries/BuiltInRegistries/LOOT_FUNCTION_TYPE +FD: net/minecraft/core/registries/BuiltInRegistries/f_256754_ net/minecraft/core/registries/BuiltInRegistries/CAT_VARIANT +FD: net/minecraft/core/registries/BuiltInRegistries/f_256760_ net/minecraft/core/registries/BuiltInRegistries/BLOCKSTATE_PROVIDER_TYPE +FD: net/minecraft/core/registries/BuiltInRegistries/f_256763_ net/minecraft/core/registries/BuiltInRegistries/STRUCTURE_TYPE +FD: net/minecraft/core/registries/BuiltInRegistries/f_256769_ net/minecraft/core/registries/BuiltInRegistries/RECIPE_SERIALIZER +FD: net/minecraft/core/registries/BuiltInRegistries/f_256770_ net/minecraft/core/registries/BuiltInRegistries/FROG_VARIANT +FD: net/minecraft/core/registries/BuiltInRegistries/f_256771_ net/minecraft/core/registries/BuiltInRegistries/CUSTOM_STAT +FD: net/minecraft/core/registries/BuiltInRegistries/f_256779_ net/minecraft/core/registries/BuiltInRegistries/ROOT_REGISTRY_NAME +FD: net/minecraft/core/registries/BuiltInRegistries/f_256780_ net/minecraft/core/registries/BuiltInRegistries/ENTITY_TYPE +FD: net/minecraft/core/registries/BuiltInRegistries/f_256784_ net/minecraft/core/registries/BuiltInRegistries/MEMORY_MODULE_TYPE +FD: net/minecraft/core/registries/BuiltInRegistries/f_256785_ net/minecraft/core/registries/BuiltInRegistries/ACTIVITY +FD: net/minecraft/core/registries/BuiltInRegistries/f_256810_ net/minecraft/core/registries/BuiltInRegistries/FEATURE +FD: net/minecraft/core/registries/BuiltInRegistries/f_256818_ net/minecraft/core/registries/BuiltInRegistries/MENU +FD: net/minecraft/core/registries/BuiltInRegistries/f_256846_ net/minecraft/core/registries/BuiltInRegistries/STRUCTURE_POOL_ELEMENT +FD: net/minecraft/core/registries/BuiltInRegistries/f_256861_ net/minecraft/core/registries/BuiltInRegistries/FOLIAGE_PLACER_TYPE +FD: net/minecraft/core/registries/BuiltInRegistries/f_256870_ net/minecraft/core/registries/BuiltInRegistries/HEIGHT_PROVIDER_TYPE +FD: net/minecraft/core/registries/BuiltInRegistries/f_256876_ net/minecraft/core/registries/BuiltInRegistries/ENCHANTMENT +FD: net/minecraft/core/registries/BuiltInRegistries/f_256878_ net/minecraft/core/registries/BuiltInRegistries/BANNER_PATTERN +FD: net/minecraft/core/registries/BuiltInRegistries/f_256885_ net/minecraft/core/registries/BuiltInRegistries/MATERIAL_CONDITION +FD: net/minecraft/core/registries/BuiltInRegistries/f_256894_ net/minecraft/core/registries/BuiltInRegistries/SOUND_EVENT +FD: net/minecraft/core/registries/BuiltInRegistries/f_256896_ net/minecraft/core/registries/BuiltInRegistries/INSTRUMENT +FD: net/minecraft/core/registries/BuiltInRegistries/f_256897_ net/minecraft/core/registries/BuiltInRegistries/STRUCTURE_PROCESSOR +FD: net/minecraft/core/registries/BuiltInRegistries/f_256898_ net/minecraft/core/registries/BuiltInRegistries/MATERIAL_RULE +FD: net/minecraft/core/registries/BuiltInRegistries/f_256899_ net/minecraft/core/registries/BuiltInRegistries/STAT_TYPE +FD: net/minecraft/core/registries/BuiltInRegistries/f_256906_ net/minecraft/core/registries/BuiltInRegistries/BLOCK_PREDICATE_TYPE +FD: net/minecraft/core/registries/BuiltInRegistries/f_256914_ net/minecraft/core/registries/BuiltInRegistries/CHUNK_GENERATOR +FD: net/minecraft/core/registries/BuiltInRegistries/f_256920_ net/minecraft/core/registries/BuiltInRegistries/TRUNK_PLACER_TYPE +FD: net/minecraft/core/registries/BuiltInRegistries/f_256926_ net/minecraft/core/registries/BuiltInRegistries/FLOAT_PROVIDER_TYPE +FD: net/minecraft/core/registries/BuiltInRegistries/f_256934_ net/minecraft/core/registries/BuiltInRegistries/VILLAGER_TYPE +FD: net/minecraft/core/registries/BuiltInRegistries/f_256935_ net/minecraft/core/registries/BuiltInRegistries/WRITABLE_REGISTRY +FD: net/minecraft/core/registries/BuiltInRegistries/f_256940_ net/minecraft/core/registries/BuiltInRegistries/CHUNK_STATUS +FD: net/minecraft/core/registries/BuiltInRegistries/f_256941_ net/minecraft/core/registries/BuiltInRegistries/POINT_OF_INTEREST_TYPE +FD: net/minecraft/core/registries/BuiltInRegistries/f_256942_ net/minecraft/core/registries/BuiltInRegistries/INT_PROVIDER_TYPE +FD: net/minecraft/core/registries/BuiltInRegistries/f_256950_ net/minecraft/core/registries/BuiltInRegistries/STRUCTURE_PLACEMENT +FD: net/minecraft/core/registries/BuiltInRegistries/f_256951_ net/minecraft/core/registries/BuiltInRegistries/ATTRIBUTE +FD: net/minecraft/core/registries/BuiltInRegistries/f_256957_ net/minecraft/core/registries/BuiltInRegistries/POS_RULE_TEST +FD: net/minecraft/core/registries/BuiltInRegistries/f_256958_ net/minecraft/core/registries/BuiltInRegistries/FEATURE_SIZE_TYPE +FD: net/minecraft/core/registries/BuiltInRegistries/f_256962_ net/minecraft/core/registries/BuiltInRegistries/SCHEDULE +FD: net/minecraft/core/registries/BuiltInRegistries/f_256972_ net/minecraft/core/registries/BuiltInRegistries/POSITION_SOURCE_TYPE +FD: net/minecraft/core/registries/BuiltInRegistries/f_256974_ net/minecraft/core/registries/BuiltInRegistries/MOB_EFFECT +FD: net/minecraft/core/registries/BuiltInRegistries/f_256975_ net/minecraft/core/registries/BuiltInRegistries/BLOCK +FD: net/minecraft/core/registries/BuiltInRegistries/f_256978_ net/minecraft/core/registries/BuiltInRegistries/RULE_TEST +FD: net/minecraft/core/registries/BuiltInRegistries/f_256979_ net/minecraft/core/registries/BuiltInRegistries/COMMAND_ARGUMENT_TYPE +FD: net/minecraft/core/registries/BuiltInRegistries/f_256980_ net/minecraft/core/registries/BuiltInRegistries/POTION +FD: net/minecraft/core/registries/BuiltInRegistries/f_256986_ net/minecraft/core/registries/BuiltInRegistries/PLACEMENT_MODIFIER_TYPE +FD: net/minecraft/core/registries/BuiltInRegistries/f_256987_ net/minecraft/core/registries/BuiltInRegistries/TREE_DECORATOR_TYPE +FD: net/minecraft/core/registries/BuiltInRegistries/f_256990_ net/minecraft/core/registries/BuiltInRegistries/RECIPE_TYPE +FD: net/minecraft/core/registries/BuiltInRegistries/f_256991_ net/minecraft/core/registries/BuiltInRegistries/LOOT_CONDITION_TYPE +FD: net/minecraft/core/registries/BuiltInRegistries/f_257001_ net/minecraft/core/registries/BuiltInRegistries/CARVER +FD: net/minecraft/core/registries/BuiltInRegistries/f_257002_ net/minecraft/core/registries/BuiltInRegistries/DENSITY_FUNCTION_TYPE +FD: net/minecraft/core/registries/BuiltInRegistries/f_257014_ net/minecraft/core/registries/BuiltInRegistries/STRUCTURE_PIECE +FD: net/minecraft/core/registries/BuiltInRegistries/f_257020_ net/minecraft/core/registries/BuiltInRegistries/FLUID +FD: net/minecraft/core/registries/BuiltInRegistries/f_257029_ net/minecraft/core/registries/BuiltInRegistries/LOOT_NUMBER_PROVIDER_TYPE +FD: net/minecraft/core/registries/BuiltInRegistries/f_257033_ net/minecraft/core/registries/BuiltInRegistries/ITEM +FD: net/minecraft/core/registries/BuiltInRegistries/f_257034_ net/minecraft/core/registries/BuiltInRegistries/PARTICLE_TYPE +FD: net/minecraft/core/registries/BuiltInRegistries/f_257035_ net/minecraft/core/registries/BuiltInRegistries/LOOT_POOL_ENTRY_TYPE +FD: net/minecraft/core/registries/BuiltInRegistries/f_257047_ net/minecraft/core/registries/BuiltInRegistries/REGISTRY +FD: net/minecraft/core/registries/BuiltInRegistries/f_257049_ net/minecraft/core/registries/BuiltInRegistries/BLOCK_ENTITY_TYPE +FD: net/minecraft/core/registries/BuiltInRegistries/f_257051_ net/minecraft/core/registries/BuiltInRegistries/PAINTING_VARIANT +FD: net/minecraft/core/registries/BuiltInRegistries/f_271353_ net/minecraft/core/registries/BuiltInRegistries/DECORATED_POT_PATTERNS +FD: net/minecraft/core/registries/BuiltInRegistries/f_276464_ net/minecraft/core/registries/BuiltInRegistries/RULE_BLOCK_ENTITY_MODIFIER +FD: net/minecraft/core/registries/BuiltInRegistries/f_279662_ net/minecraft/core/registries/BuiltInRegistries/CREATIVE_MODE_TAB +FD: net/minecraft/core/registries/Registries/f_256720_ net/minecraft/core/registries/Registries/FEATURE_SIZE_TYPE +FD: net/minecraft/core/registries/Registries/f_256723_ net/minecraft/core/registries/Registries/SCHEDULE +FD: net/minecraft/core/registries/Registries/f_256724_ net/minecraft/core/registries/Registries/FLAT_LEVEL_GENERATOR_PRESET +FD: net/minecraft/core/registries/Registries/f_256728_ net/minecraft/core/registries/Registries/ATTRIBUTE +FD: net/minecraft/core/registries/Registries/f_256729_ net/minecraft/core/registries/Registries/WORLD_PRESET +FD: net/minecraft/core/registries/Registries/f_256732_ net/minecraft/core/registries/Registries/FROG_VARIANT +FD: net/minecraft/core/registries/Registries/f_256746_ net/minecraft/core/registries/Registries/DENSITY_FUNCTION_TYPE +FD: net/minecraft/core/registries/Registries/f_256747_ net/minecraft/core/registries/Registries/BLOCK +FD: net/minecraft/core/registries/Registries/f_256749_ net/minecraft/core/registries/Registries/VILLAGER_PROFESSION +FD: net/minecraft/core/registries/Registries/f_256755_ net/minecraft/core/registries/Registries/CHUNK_STATUS +FD: net/minecraft/core/registries/Registries/f_256757_ net/minecraft/core/registries/Registries/HEIGHT_PROVIDER_TYPE +FD: net/minecraft/core/registries/Registries/f_256762_ net/minecraft/core/registries/Registries/ENCHANTMENT +FD: net/minecraft/core/registries/Registries/f_256764_ net/minecraft/core/registries/Registries/RECIPE_SERIALIZER +FD: net/minecraft/core/registries/Registries/f_256768_ net/minecraft/core/registries/Registries/ROOT_PLACER_TYPE +FD: net/minecraft/core/registries/Registries/f_256774_ net/minecraft/core/registries/Registries/BLOCK_PREDICATE_TYPE +FD: net/minecraft/core/registries/Registries/f_256783_ net/minecraft/core/registries/Registries/CHUNK_GENERATOR +FD: net/minecraft/core/registries/Registries/f_256786_ net/minecraft/core/registries/Registries/STRUCTURE_PIECE +FD: net/minecraft/core/registries/Registries/f_256787_ net/minecraft/core/registries/Registries/DIMENSION_TYPE +FD: net/minecraft/core/registries/Registries/f_256792_ net/minecraft/core/registries/Registries/POSITION_SOURCE_TYPE +FD: net/minecraft/core/registries/Registries/f_256793_ net/minecraft/core/registries/Registries/MATERIAL_CONDITION +FD: net/minecraft/core/registries/Registries/f_256798_ net/minecraft/core/registries/Registries/MENU +FD: net/minecraft/core/registries/Registries/f_256805_ net/minecraft/core/registries/Registries/POINT_OF_INTEREST_TYPE +FD: net/minecraft/core/registries/Registries/f_256808_ net/minecraft/core/registries/Registries/FLUID +FD: net/minecraft/core/registries/Registries/f_256812_ net/minecraft/core/registries/Registries/CARVER +FD: net/minecraft/core/registries/Registries/f_256815_ net/minecraft/core/registries/Registries/MATERIAL_RULE +FD: net/minecraft/core/registries/Registries/f_256826_ net/minecraft/core/registries/Registries/BIOME_SOURCE +FD: net/minecraft/core/registries/Registries/f_256827_ net/minecraft/core/registries/Registries/GAME_EVENT +FD: net/minecraft/core/registries/Registries/f_256829_ net/minecraft/core/registries/Registries/LOOT_NUMBER_PROVIDER_TYPE +FD: net/minecraft/core/registries/Registries/f_256833_ net/minecraft/core/registries/Registries/FEATURE +FD: net/minecraft/core/registries/Registries/f_256836_ net/minecraft/core/registries/Registries/PAINTING_VARIANT +FD: net/minecraft/core/registries/Registries/f_256840_ net/minecraft/core/registries/Registries/SOUND_EVENT +FD: net/minecraft/core/registries/Registries/f_256843_ net/minecraft/core/registries/Registries/PLACEMENT_MODIFIER_TYPE +FD: net/minecraft/core/registries/Registries/f_256845_ net/minecraft/core/registries/Registries/TREE_DECORATOR_TYPE +FD: net/minecraft/core/registries/Registries/f_256849_ net/minecraft/core/registries/Registries/STAT_TYPE +FD: net/minecraft/core/registries/Registries/f_256858_ net/minecraft/core/registries/Registries/DIMENSION +FD: net/minecraft/core/registries/Registries/f_256862_ net/minecraft/core/registries/Registries/LEVEL_STEM +FD: net/minecraft/core/registries/Registries/f_256865_ net/minecraft/core/registries/Registries/NOISE +FD: net/minecraft/core/registries/Registries/f_256871_ net/minecraft/core/registries/Registries/LOOT_NBT_PROVIDER_TYPE +FD: net/minecraft/core/registries/Registries/f_256873_ net/minecraft/core/registries/Registries/CHAT_TYPE +FD: net/minecraft/core/registries/Registries/f_256887_ net/minecraft/core/registries/Registries/CUSTOM_STAT +FD: net/minecraft/core/registries/Registries/f_256888_ net/minecraft/core/registries/Registries/STRUCTURE_PLACEMENT +FD: net/minecraft/core/registries/Registries/f_256890_ net/minecraft/core/registries/Registries/PARTICLE_TYPE +FD: net/minecraft/core/registries/Registries/f_256891_ net/minecraft/core/registries/Registries/BLOCK_STATE_PROVIDER_TYPE +FD: net/minecraft/core/registries/Registries/f_256892_ net/minecraft/core/registries/Registries/FLOAT_PROVIDER_TYPE +FD: net/minecraft/core/registries/Registries/f_256905_ net/minecraft/core/registries/Registries/FOLIAGE_PLACER_TYPE +FD: net/minecraft/core/registries/Registries/f_256911_ net/minecraft/core/registries/Registries/CONFIGURED_FEATURE +FD: net/minecraft/core/registries/Registries/f_256913_ net/minecraft/core/registries/Registries/ITEM +FD: net/minecraft/core/registries/Registries/f_256922_ net/minecraft/core/registries/Registries/BLOCK_ENTITY_TYPE +FD: net/minecraft/core/registries/Registries/f_256924_ net/minecraft/core/registries/Registries/LOOT_SCORE_PROVIDER_TYPE +FD: net/minecraft/core/registries/Registries/f_256929_ net/minecraft/core/registries/Registries/MOB_EFFECT +FD: net/minecraft/core/registries/Registries/f_256932_ net/minecraft/core/registries/Registries/NOISE_SETTINGS +FD: net/minecraft/core/registries/Registries/f_256937_ net/minecraft/core/registries/Registries/SENSOR_TYPE +FD: net/minecraft/core/registries/Registries/f_256938_ net/minecraft/core/registries/Registries/STRUCTURE_TYPE +FD: net/minecraft/core/registries/Registries/f_256939_ net/minecraft/core/registries/Registries/ENTITY_TYPE +FD: net/minecraft/core/registries/Registries/f_256944_ net/minecraft/core/registries/Registries/STRUCTURE +FD: net/minecraft/core/registries/Registries/f_256947_ net/minecraft/core/registries/Registries/RULE_TEST +FD: net/minecraft/core/registries/Registries/f_256948_ net/minecraft/core/registries/Registries/TEMPLATE_POOL +FD: net/minecraft/core/registries/Registries/f_256949_ net/minecraft/core/registries/Registries/INT_PROVIDER_TYPE +FD: net/minecraft/core/registries/Registries/f_256952_ net/minecraft/core/registries/Registries/BIOME +FD: net/minecraft/core/registries/Registries/f_256954_ net/minecraft/core/registries/Registries/RECIPE_TYPE +FD: net/minecraft/core/registries/Registries/f_256963_ net/minecraft/core/registries/Registries/TRUNK_PLACER_TYPE +FD: net/minecraft/core/registries/Registries/f_256969_ net/minecraft/core/registries/Registries/BANNER_PATTERN +FD: net/minecraft/core/registries/Registries/f_256973_ net/minecraft/core/registries/Registries/POTION +FD: net/minecraft/core/registries/Registries/f_256976_ net/minecraft/core/registries/Registries/LOOT_CONDITION_TYPE +FD: net/minecraft/core/registries/Registries/f_256982_ net/minecraft/core/registries/Registries/COMMAND_ARGUMENT_TYPE +FD: net/minecraft/core/registries/Registries/f_256983_ net/minecraft/core/registries/Registries/STRUCTURE_PROCESSOR +FD: net/minecraft/core/registries/Registries/f_256988_ net/minecraft/core/registries/Registries/PLACED_FEATURE +FD: net/minecraft/core/registries/Registries/f_256998_ net/minecraft/core/registries/Registries/STRUCTURE_SET +FD: net/minecraft/core/registries/Registries/f_257003_ net/minecraft/core/registries/Registries/CONFIGURED_CARVER +FD: net/minecraft/core/registries/Registries/f_257006_ net/minecraft/core/registries/Registries/CAT_VARIANT +FD: net/minecraft/core/registries/Registries/f_257009_ net/minecraft/core/registries/Registries/POS_RULE_TEST +FD: net/minecraft/core/registries/Registries/f_257010_ net/minecraft/core/registries/Registries/INSTRUMENT +FD: net/minecraft/core/registries/Registries/f_257011_ net/minecraft/core/registries/Registries/PROCESSOR_LIST +FD: net/minecraft/core/registries/Registries/f_257015_ net/minecraft/core/registries/Registries/LOOT_FUNCTION_TYPE +FD: net/minecraft/core/registries/Registries/f_257019_ net/minecraft/core/registries/Registries/VILLAGER_TYPE +FD: net/minecraft/core/registries/Registries/f_257023_ net/minecraft/core/registries/Registries/MEMORY_MODULE_TYPE +FD: net/minecraft/core/registries/Registries/f_257024_ net/minecraft/core/registries/Registries/STRUCTURE_POOL_ELEMENT +FD: net/minecraft/core/registries/Registries/f_257025_ net/minecraft/core/registries/Registries/ACTIVITY +FD: net/minecraft/core/registries/Registries/f_257032_ net/minecraft/core/registries/Registries/LOOT_POOL_ENTRY_TYPE +FD: net/minecraft/core/registries/Registries/f_257040_ net/minecraft/core/registries/Registries/DENSITY_FUNCTION +FD: net/minecraft/core/registries/Registries/f_266063_ net/minecraft/core/registries/Registries/TRIM_PATTERN +FD: net/minecraft/core/registries/Registries/f_266076_ net/minecraft/core/registries/Registries/TRIM_MATERIAL +FD: net/minecraft/core/registries/Registries/f_268580_ net/minecraft/core/registries/Registries/DAMAGE_TYPE +FD: net/minecraft/core/registries/Registries/f_271200_ net/minecraft/core/registries/Registries/DECORATED_POT_PATTERNS +FD: net/minecraft/core/registries/Registries/f_273919_ net/minecraft/core/registries/Registries/MULTI_NOISE_BIOME_SOURCE_PARAMETER_LIST +FD: net/minecraft/core/registries/Registries/f_276428_ net/minecraft/core/registries/Registries/RULE_BLOCK_ENTITY_MODIFIER +FD: net/minecraft/core/registries/Registries/f_279569_ net/minecraft/core/registries/Registries/CREATIVE_MODE_TAB +FD: net/minecraft/data/BlockFamilies/f_175870_ net/minecraft/data/BlockFamilies/WAXED_WEATHERED_COPPER +FD: net/minecraft/data/BlockFamilies/f_175871_ net/minecraft/data/BlockFamilies/WAXED_WEATHERED_CUT_COPPER +FD: net/minecraft/data/BlockFamilies/f_175872_ net/minecraft/data/BlockFamilies/OXIDIZED_COPPER +FD: net/minecraft/data/BlockFamilies/f_175873_ net/minecraft/data/BlockFamilies/OXIDIZED_CUT_COPPER +FD: net/minecraft/data/BlockFamilies/f_175874_ net/minecraft/data/BlockFamilies/WAXED_OXIDIZED_COPPER +FD: net/minecraft/data/BlockFamilies/f_175875_ net/minecraft/data/BlockFamilies/WAXED_OXIDIZED_CUT_COPPER +FD: net/minecraft/data/BlockFamilies/f_175876_ net/minecraft/data/BlockFamilies/COBBLESTONE +FD: net/minecraft/data/BlockFamilies/f_175877_ net/minecraft/data/BlockFamilies/MOSSY_COBBLESTONE +FD: net/minecraft/data/BlockFamilies/f_175878_ net/minecraft/data/BlockFamilies/DIORITE +FD: net/minecraft/data/BlockFamilies/f_175879_ net/minecraft/data/BlockFamilies/POLISHED_DIORITE +FD: net/minecraft/data/BlockFamilies/f_175880_ net/minecraft/data/BlockFamilies/GRANITE +FD: net/minecraft/data/BlockFamilies/f_175881_ net/minecraft/data/BlockFamilies/POLISHED_GRANITE +FD: net/minecraft/data/BlockFamilies/f_175882_ net/minecraft/data/BlockFamilies/NETHER_BRICKS +FD: net/minecraft/data/BlockFamilies/f_175883_ net/minecraft/data/BlockFamilies/RED_NETHER_BRICKS +FD: net/minecraft/data/BlockFamilies/f_175884_ net/minecraft/data/BlockFamilies/PRISMARINE +FD: net/minecraft/data/BlockFamilies/f_175885_ net/minecraft/data/BlockFamilies/PURPUR +FD: net/minecraft/data/BlockFamilies/f_175886_ net/minecraft/data/BlockFamilies/PRISMARINE_BRICKS +FD: net/minecraft/data/BlockFamilies/f_175887_ net/minecraft/data/BlockFamilies/DARK_PRISMARINE +FD: net/minecraft/data/BlockFamilies/f_175888_ net/minecraft/data/BlockFamilies/QUARTZ +FD: net/minecraft/data/BlockFamilies/f_175889_ net/minecraft/data/BlockFamilies/SMOOTH_QUARTZ +FD: net/minecraft/data/BlockFamilies/f_175890_ net/minecraft/data/BlockFamilies/SANDSTONE +FD: net/minecraft/data/BlockFamilies/f_175891_ net/minecraft/data/BlockFamilies/CUT_SANDSTONE +FD: net/minecraft/data/BlockFamilies/f_175892_ net/minecraft/data/BlockFamilies/SMOOTH_SANDSTONE +FD: net/minecraft/data/BlockFamilies/f_175893_ net/minecraft/data/BlockFamilies/RED_SANDSTONE +FD: net/minecraft/data/BlockFamilies/f_175894_ net/minecraft/data/BlockFamilies/CUT_RED_SANDSTONE +FD: net/minecraft/data/BlockFamilies/f_175895_ net/minecraft/data/BlockFamilies/SMOOTH_RED_SANDSTONE +FD: net/minecraft/data/BlockFamilies/f_175896_ net/minecraft/data/BlockFamilies/ACACIA_PLANKS +FD: net/minecraft/data/BlockFamilies/f_175897_ net/minecraft/data/BlockFamilies/STONE +FD: net/minecraft/data/BlockFamilies/f_175898_ net/minecraft/data/BlockFamilies/STONE_BRICK +FD: net/minecraft/data/BlockFamilies/f_175899_ net/minecraft/data/BlockFamilies/DEEPSLATE +FD: net/minecraft/data/BlockFamilies/f_175900_ net/minecraft/data/BlockFamilies/COBBLED_DEEPSLATE +FD: net/minecraft/data/BlockFamilies/f_175901_ net/minecraft/data/BlockFamilies/POLISHED_DEEPSLATE +FD: net/minecraft/data/BlockFamilies/f_175902_ net/minecraft/data/BlockFamilies/DEEPSLATE_BRICKS +FD: net/minecraft/data/BlockFamilies/f_175903_ net/minecraft/data/BlockFamilies/DEEPSLATE_TILES +FD: net/minecraft/data/BlockFamilies/f_175904_ net/minecraft/data/BlockFamilies/MAP +FD: net/minecraft/data/BlockFamilies/f_175905_ net/minecraft/data/BlockFamilies/RECIPE_GROUP_PREFIX_WOODEN +FD: net/minecraft/data/BlockFamilies/f_175906_ net/minecraft/data/BlockFamilies/RECIPE_UNLOCKED_BY_HAS_PLANKS +FD: net/minecraft/data/BlockFamilies/f_175907_ net/minecraft/data/BlockFamilies/BIRCH_PLANKS +FD: net/minecraft/data/BlockFamilies/f_175908_ net/minecraft/data/BlockFamilies/CRIMSON_PLANKS +FD: net/minecraft/data/BlockFamilies/f_175909_ net/minecraft/data/BlockFamilies/JUNGLE_PLANKS +FD: net/minecraft/data/BlockFamilies/f_175910_ net/minecraft/data/BlockFamilies/OAK_PLANKS +FD: net/minecraft/data/BlockFamilies/f_175911_ net/minecraft/data/BlockFamilies/DARK_OAK_PLANKS +FD: net/minecraft/data/BlockFamilies/f_175912_ net/minecraft/data/BlockFamilies/SPRUCE_PLANKS +FD: net/minecraft/data/BlockFamilies/f_175913_ net/minecraft/data/BlockFamilies/WARPED_PLANKS +FD: net/minecraft/data/BlockFamilies/f_175914_ net/minecraft/data/BlockFamilies/ANDESITE +FD: net/minecraft/data/BlockFamilies/f_175915_ net/minecraft/data/BlockFamilies/POLISHED_ANDESITE +FD: net/minecraft/data/BlockFamilies/f_175916_ net/minecraft/data/BlockFamilies/BLACKSTONE +FD: net/minecraft/data/BlockFamilies/f_175917_ net/minecraft/data/BlockFamilies/POLISHED_BLACKSTONE +FD: net/minecraft/data/BlockFamilies/f_175918_ net/minecraft/data/BlockFamilies/POLISHED_BLACKSTONE_BRICKS +FD: net/minecraft/data/BlockFamilies/f_175919_ net/minecraft/data/BlockFamilies/BRICKS +FD: net/minecraft/data/BlockFamilies/f_175920_ net/minecraft/data/BlockFamilies/END_STONE_BRICKS +FD: net/minecraft/data/BlockFamilies/f_175921_ net/minecraft/data/BlockFamilies/MOSSY_STONE_BRICKS +FD: net/minecraft/data/BlockFamilies/f_175922_ net/minecraft/data/BlockFamilies/COPPER_BLOCK +FD: net/minecraft/data/BlockFamilies/f_175923_ net/minecraft/data/BlockFamilies/CUT_COPPER +FD: net/minecraft/data/BlockFamilies/f_175924_ net/minecraft/data/BlockFamilies/WAXED_COPPER_BLOCK +FD: net/minecraft/data/BlockFamilies/f_175925_ net/minecraft/data/BlockFamilies/WAXED_CUT_COPPER +FD: net/minecraft/data/BlockFamilies/f_175926_ net/minecraft/data/BlockFamilies/EXPOSED_COPPER +FD: net/minecraft/data/BlockFamilies/f_175927_ net/minecraft/data/BlockFamilies/EXPOSED_CUT_COPPER +FD: net/minecraft/data/BlockFamilies/f_175928_ net/minecraft/data/BlockFamilies/WAXED_EXPOSED_COPPER +FD: net/minecraft/data/BlockFamilies/f_175929_ net/minecraft/data/BlockFamilies/WAXED_EXPOSED_CUT_COPPER +FD: net/minecraft/data/BlockFamilies/f_175930_ net/minecraft/data/BlockFamilies/WEATHERED_COPPER +FD: net/minecraft/data/BlockFamilies/f_175931_ net/minecraft/data/BlockFamilies/WEATHERED_CUT_COPPER +FD: net/minecraft/data/BlockFamilies/f_235985_ net/minecraft/data/BlockFamilies/MANGROVE_PLANKS +FD: net/minecraft/data/BlockFamilies/f_235986_ net/minecraft/data/BlockFamilies/MUD_BRICKS +FD: net/minecraft/data/BlockFamilies/f_244520_ net/minecraft/data/BlockFamilies/BAMBOO_MOSAIC +FD: net/minecraft/data/BlockFamilies/f_244546_ net/minecraft/data/BlockFamilies/BAMBOO_PLANKS +FD: net/minecraft/data/BlockFamilies/f_271218_ net/minecraft/data/BlockFamilies/CHERRY_PLANKS +FD: net/minecraft/data/BlockFamily/f_175943_ net/minecraft/data/BlockFamily/baseBlock +FD: net/minecraft/data/BlockFamily/f_175944_ net/minecraft/data/BlockFamily/variants +FD: net/minecraft/data/BlockFamily/f_175945_ net/minecraft/data/BlockFamily/generateModel +FD: net/minecraft/data/BlockFamily/f_175946_ net/minecraft/data/BlockFamily/generateRecipe +FD: net/minecraft/data/BlockFamily/f_175947_ net/minecraft/data/BlockFamily/recipeGroupPrefix +FD: net/minecraft/data/BlockFamily/f_175948_ net/minecraft/data/BlockFamily/recipeUnlockedBy +FD: net/minecraft/data/BlockFamily/f_244407_ net/minecraft/data/BlockFamily/requiredFeatures +FD: net/minecraft/data/BlockFamily$Builder/f_175959_ net/minecraft/data/BlockFamily$Builder/family +FD: net/minecraft/data/BlockFamily$Variant/$VALUES net/minecraft/data/BlockFamily$Variant/$VALUES +FD: net/minecraft/data/BlockFamily$Variant/BUTTON net/minecraft/data/BlockFamily$Variant/BUTTON +FD: net/minecraft/data/BlockFamily$Variant/CHISELED net/minecraft/data/BlockFamily$Variant/CHISELED +FD: net/minecraft/data/BlockFamily$Variant/CRACKED net/minecraft/data/BlockFamily$Variant/CRACKED +FD: net/minecraft/data/BlockFamily$Variant/CUSTOM_FENCE net/minecraft/data/BlockFamily$Variant/CUSTOM_FENCE +FD: net/minecraft/data/BlockFamily$Variant/CUSTOM_FENCE_GATE net/minecraft/data/BlockFamily$Variant/CUSTOM_FENCE_GATE +FD: net/minecraft/data/BlockFamily$Variant/CUT net/minecraft/data/BlockFamily$Variant/CUT +FD: net/minecraft/data/BlockFamily$Variant/DOOR net/minecraft/data/BlockFamily$Variant/DOOR +FD: net/minecraft/data/BlockFamily$Variant/FENCE net/minecraft/data/BlockFamily$Variant/FENCE +FD: net/minecraft/data/BlockFamily$Variant/FENCE_GATE net/minecraft/data/BlockFamily$Variant/FENCE_GATE +FD: net/minecraft/data/BlockFamily$Variant/MOSAIC net/minecraft/data/BlockFamily$Variant/MOSAIC +FD: net/minecraft/data/BlockFamily$Variant/POLISHED net/minecraft/data/BlockFamily$Variant/POLISHED +FD: net/minecraft/data/BlockFamily$Variant/PRESSURE_PLATE net/minecraft/data/BlockFamily$Variant/PRESSURE_PLATE +FD: net/minecraft/data/BlockFamily$Variant/SIGN net/minecraft/data/BlockFamily$Variant/SIGN +FD: net/minecraft/data/BlockFamily$Variant/SLAB net/minecraft/data/BlockFamily$Variant/SLAB +FD: net/minecraft/data/BlockFamily$Variant/STAIRS net/minecraft/data/BlockFamily$Variant/STAIRS +FD: net/minecraft/data/BlockFamily$Variant/TRAPDOOR net/minecraft/data/BlockFamily$Variant/TRAPDOOR +FD: net/minecraft/data/BlockFamily$Variant/WALL net/minecraft/data/BlockFamily$Variant/WALL +FD: net/minecraft/data/BlockFamily$Variant/WALL_SIGN net/minecraft/data/BlockFamily$Variant/WALL_SIGN +FD: net/minecraft/data/BlockFamily$Variant/f_176013_ net/minecraft/data/BlockFamily$Variant/name +FD: net/minecraft/data/CachedOutput/f_236016_ net/minecraft/data/CachedOutput/NO_CACHE +FD: net/minecraft/data/DataGenerator/f_123905_ net/minecraft/data/DataGenerator/LOGGER +FD: net/minecraft/data/DataGenerator/f_236026_ net/minecraft/data/DataGenerator/providersToRun +FD: net/minecraft/data/DataGenerator/f_236027_ net/minecraft/data/DataGenerator/version +FD: net/minecraft/data/DataGenerator/f_236028_ net/minecraft/data/DataGenerator/alwaysGenerate +FD: net/minecraft/data/DataGenerator/f_243753_ net/minecraft/data/DataGenerator/rootOutputFolder +FD: net/minecraft/data/DataGenerator/f_244116_ net/minecraft/data/DataGenerator/vanillaPackOutput +FD: net/minecraft/data/DataGenerator/f_252429_ net/minecraft/data/DataGenerator/allProviderIds +FD: net/minecraft/data/DataGenerator$PackGenerator/f_252435_ net/minecraft/data/DataGenerator$PackGenerator/toRun +FD: net/minecraft/data/DataGenerator$PackGenerator/f_252464_ net/minecraft/data/DataGenerator$PackGenerator/providerPrefix +FD: net/minecraft/data/DataGenerator$PackGenerator/f_252503_ net/minecraft/data/DataGenerator$PackGenerator/output +FD: net/minecraft/data/DataGenerator$PackGenerator/f_252527_ net/minecraft/data/DataGenerator$PackGenerator/this$0 +FD: net/minecraft/data/DataProvider/f_236067_ net/minecraft/data/DataProvider/FIXED_ORDER_FIELDS +FD: net/minecraft/data/DataProvider/f_236068_ net/minecraft/data/DataProvider/KEY_COMPARATOR +FD: net/minecraft/data/DataProvider/f_252483_ net/minecraft/data/DataProvider/LOGGER +FD: net/minecraft/data/HashCache/f_123926_ net/minecraft/data/HashCache/LOGGER +FD: net/minecraft/data/HashCache/f_236078_ net/minecraft/data/HashCache/HEADER_MARKER +FD: net/minecraft/data/HashCache/f_236079_ net/minecraft/data/HashCache/rootDir +FD: net/minecraft/data/HashCache/f_236080_ net/minecraft/data/HashCache/cacheDir +FD: net/minecraft/data/HashCache/f_236081_ net/minecraft/data/HashCache/versionId +FD: net/minecraft/data/HashCache/f_236083_ net/minecraft/data/HashCache/cachesToWrite +FD: net/minecraft/data/HashCache/f_236084_ net/minecraft/data/HashCache/cachePaths +FD: net/minecraft/data/HashCache/f_236085_ net/minecraft/data/HashCache/initialCount +FD: net/minecraft/data/HashCache/f_252434_ net/minecraft/data/HashCache/writes +FD: net/minecraft/data/HashCache/f_252445_ net/minecraft/data/HashCache/caches +FD: net/minecraft/data/HashCache$CacheUpdater/f_236113_ net/minecraft/data/HashCache$CacheUpdater/oldCache +FD: net/minecraft/data/HashCache$CacheUpdater/f_236114_ net/minecraft/data/HashCache$CacheUpdater/newCache +FD: net/minecraft/data/HashCache$CacheUpdater/f_236115_ net/minecraft/data/HashCache$CacheUpdater/writes +FD: net/minecraft/data/HashCache$CacheUpdater/f_252426_ net/minecraft/data/HashCache$CacheUpdater/this$0 +FD: net/minecraft/data/HashCache$CacheUpdater/f_252460_ net/minecraft/data/HashCache$CacheUpdater/closed +FD: net/minecraft/data/HashCache$CacheUpdater/f_252505_ net/minecraft/data/HashCache$CacheUpdater/provider +FD: net/minecraft/data/HashCache$ProviderCache/f_236126_ net/minecraft/data/HashCache$ProviderCache/version +FD: net/minecraft/data/HashCache$ProviderCache/f_236127_ net/minecraft/data/HashCache$ProviderCache/data +FD: net/minecraft/data/HashCache$ProviderCacheBuilder/f_252424_ net/minecraft/data/HashCache$ProviderCacheBuilder/version +FD: net/minecraft/data/HashCache$ProviderCacheBuilder/f_252466_ net/minecraft/data/HashCache$ProviderCacheBuilder/data +FD: net/minecraft/data/HashCache$UpdateResult/f_252422_ net/minecraft/data/HashCache$UpdateResult/providerId +FD: net/minecraft/data/HashCache$UpdateResult/f_252492_ net/minecraft/data/HashCache$UpdateResult/writes +FD: net/minecraft/data/HashCache$UpdateResult/f_252528_ net/minecraft/data/HashCache$UpdateResult/cache +FD: net/minecraft/data/PackOutput/f_243723_ net/minecraft/data/PackOutput/outputFolder +FD: net/minecraft/data/PackOutput$PathProvider/f_244198_ net/minecraft/data/PackOutput$PathProvider/kind +FD: net/minecraft/data/PackOutput$PathProvider/f_244594_ net/minecraft/data/PackOutput$PathProvider/root +FD: net/minecraft/data/PackOutput$Target/$VALUES net/minecraft/data/PackOutput$Target/$VALUES +FD: net/minecraft/data/PackOutput$Target/DATA_PACK net/minecraft/data/PackOutput$Target/DATA_PACK +FD: net/minecraft/data/PackOutput$Target/REPORTS net/minecraft/data/PackOutput$Target/REPORTS +FD: net/minecraft/data/PackOutput$Target/RESOURCE_PACK net/minecraft/data/PackOutput$Target/RESOURCE_PACK +FD: net/minecraft/data/PackOutput$Target/f_244334_ net/minecraft/data/PackOutput$Target/directory +FD: net/minecraft/data/advancements/AdvancementProvider/f_236156_ net/minecraft/data/advancements/AdvancementProvider/pathProvider +FD: net/minecraft/data/advancements/AdvancementProvider/f_244266_ net/minecraft/data/advancements/AdvancementProvider/subProviders +FD: net/minecraft/data/advancements/AdvancementProvider/f_254664_ net/minecraft/data/advancements/AdvancementProvider/registries +FD: net/minecraft/data/advancements/packs/VanillaAdventureAdvancements/f_243785_ net/minecraft/data/advancements/packs/VanillaAdventureAdvancements/DISTANCE_FROM_BOTTOM_TO_TOP +FD: net/minecraft/data/advancements/packs/VanillaAdventureAdvancements/f_243873_ net/minecraft/data/advancements/packs/VanillaAdventureAdvancements/Y_COORDINATE_AT_TOP +FD: net/minecraft/data/advancements/packs/VanillaAdventureAdvancements/f_244108_ net/minecraft/data/advancements/packs/VanillaAdventureAdvancements/Y_COORDINATE_AT_BOTTOM +FD: net/minecraft/data/advancements/packs/VanillaAdventureAdvancements/f_244488_ net/minecraft/data/advancements/packs/VanillaAdventureAdvancements/MOBS_TO_KILL +FD: net/minecraft/data/advancements/packs/VanillaAdventureAdvancements/f_244595_ net/minecraft/data/advancements/packs/VanillaAdventureAdvancements/BEDROCK_THICKNESS +FD: net/minecraft/data/advancements/packs/VanillaHusbandryAdvancements/f_243832_ net/minecraft/data/advancements/packs/VanillaHusbandryAdvancements/BREEDABLE_ANIMALS +FD: net/minecraft/data/advancements/packs/VanillaHusbandryAdvancements/f_243834_ net/minecraft/data/advancements/packs/VanillaHusbandryAdvancements/WAX_SCRAPING_TOOLS +FD: net/minecraft/data/advancements/packs/VanillaHusbandryAdvancements/f_244058_ net/minecraft/data/advancements/packs/VanillaHusbandryAdvancements/FISH +FD: net/minecraft/data/advancements/packs/VanillaHusbandryAdvancements/f_244171_ net/minecraft/data/advancements/packs/VanillaHusbandryAdvancements/FISH_BUCKETS +FD: net/minecraft/data/advancements/packs/VanillaHusbandryAdvancements/f_244235_ net/minecraft/data/advancements/packs/VanillaHusbandryAdvancements/EDIBLE_ITEMS +FD: net/minecraft/data/advancements/packs/VanillaHusbandryAdvancements/f_244418_ net/minecraft/data/advancements/packs/VanillaHusbandryAdvancements/INDIRECTLY_BREEDABLE_ANIMALS +FD: net/minecraft/data/advancements/packs/VanillaNetherAdvancements/f_244374_ net/minecraft/data/advancements/packs/VanillaNetherAdvancements/DISTRACT_PIGLIN_PLAYER_ARMOR_PREDICATE +FD: net/minecraft/data/info/BiomeParametersDumpReport/f_236172_ net/minecraft/data/info/BiomeParametersDumpReport/LOGGER +FD: net/minecraft/data/info/BiomeParametersDumpReport/f_236173_ net/minecraft/data/info/BiomeParametersDumpReport/topPath +FD: net/minecraft/data/info/BiomeParametersDumpReport/f_254649_ net/minecraft/data/info/BiomeParametersDumpReport/registries +FD: net/minecraft/data/info/BiomeParametersDumpReport/f_273829_ net/minecraft/data/info/BiomeParametersDumpReport/ENTRY_CODEC +FD: net/minecraft/data/info/BiomeParametersDumpReport/f_273888_ net/minecraft/data/info/BiomeParametersDumpReport/CODEC +FD: net/minecraft/data/info/BlockListReport/f_243884_ net/minecraft/data/info/BlockListReport/output +FD: net/minecraft/data/info/CommandsReport/f_244606_ net/minecraft/data/info/CommandsReport/output +FD: net/minecraft/data/info/CommandsReport/f_254639_ net/minecraft/data/info/CommandsReport/registries +FD: net/minecraft/data/info/RegistryDumpReport/f_244388_ net/minecraft/data/info/RegistryDumpReport/output +FD: net/minecraft/data/loot/BlockLootSubProvider/f_243678_ net/minecraft/data/loot/BlockLootSubProvider/HAS_SILK_TOUCH +FD: net/minecraft/data/loot/BlockLootSubProvider/f_243739_ net/minecraft/data/loot/BlockLootSubProvider/enabledFeatures +FD: net/minecraft/data/loot/BlockLootSubProvider/f_243865_ net/minecraft/data/loot/BlockLootSubProvider/explosionResistant +FD: net/minecraft/data/loot/BlockLootSubProvider/f_243905_ net/minecraft/data/loot/BlockLootSubProvider/HAS_SHEARS +FD: net/minecraft/data/loot/BlockLootSubProvider/f_244217_ net/minecraft/data/loot/BlockLootSubProvider/HAS_NO_SILK_TOUCH +FD: net/minecraft/data/loot/BlockLootSubProvider/f_244248_ net/minecraft/data/loot/BlockLootSubProvider/HAS_NO_SHEARS_OR_SILK_TOUCH +FD: net/minecraft/data/loot/BlockLootSubProvider/f_244301_ net/minecraft/data/loot/BlockLootSubProvider/HAS_SHEARS_OR_SILK_TOUCH +FD: net/minecraft/data/loot/BlockLootSubProvider/f_244441_ net/minecraft/data/loot/BlockLootSubProvider/map +FD: net/minecraft/data/loot/BlockLootSubProvider/f_244509_ net/minecraft/data/loot/BlockLootSubProvider/NORMAL_LEAVES_SAPLING_CHANCES +FD: net/minecraft/data/loot/BlockLootSubProvider/f_244531_ net/minecraft/data/loot/BlockLootSubProvider/NORMAL_LEAVES_STICK_CHANCES +FD: net/minecraft/data/loot/EntityLootSubProvider/f_244213_ net/minecraft/data/loot/EntityLootSubProvider/map +FD: net/minecraft/data/loot/EntityLootSubProvider/f_244460_ net/minecraft/data/loot/EntityLootSubProvider/ENTITY_ON_FIRE +FD: net/minecraft/data/loot/EntityLootSubProvider/f_244591_ net/minecraft/data/loot/EntityLootSubProvider/SPECIAL_LOOT_TABLE_TYPES +FD: net/minecraft/data/loot/EntityLootSubProvider/f_265862_ net/minecraft/data/loot/EntityLootSubProvider/allowed +FD: net/minecraft/data/loot/EntityLootSubProvider/f_266009_ net/minecraft/data/loot/EntityLootSubProvider/required +FD: net/minecraft/data/loot/LootTableProvider/f_124431_ net/minecraft/data/loot/LootTableProvider/LOGGER +FD: net/minecraft/data/loot/LootTableProvider/f_124434_ net/minecraft/data/loot/LootTableProvider/subProviders +FD: net/minecraft/data/loot/LootTableProvider/f_236267_ net/minecraft/data/loot/LootTableProvider/pathProvider +FD: net/minecraft/data/loot/LootTableProvider/f_243940_ net/minecraft/data/loot/LootTableProvider/requiredTables +FD: net/minecraft/data/loot/LootTableProvider$1/f_278445_ net/minecraft/data/loot/LootTableProvider$1/val$tables +FD: net/minecraft/data/loot/LootTableProvider$1/f_278446_ net/minecraft/data/loot/LootTableProvider$1/this$0 +FD: net/minecraft/data/loot/LootTableProvider$SubProviderEntry/f_243941_ net/minecraft/data/loot/LootTableProvider$SubProviderEntry/provider +FD: net/minecraft/data/loot/LootTableProvider$SubProviderEntry/f_244144_ net/minecraft/data/loot/LootTableProvider$SubProviderEntry/paramSet +FD: net/minecraft/data/loot/packs/VanillaBlockLoot/f_243668_ net/minecraft/data/loot/packs/VanillaBlockLoot/JUNGLE_LEAVES_SAPLING_CHANGES +FD: net/minecraft/data/loot/packs/VanillaBlockLoot/f_244490_ net/minecraft/data/loot/packs/VanillaBlockLoot/EXPLOSION_RESISTANT +FD: net/minecraft/data/loot/packs/VanillaFishingLoot/f_243701_ net/minecraft/data/loot/packs/VanillaFishingLoot/IN_BAMBOO_JUNGLE +FD: net/minecraft/data/loot/packs/VanillaFishingLoot/f_244228_ net/minecraft/data/loot/packs/VanillaFishingLoot/IN_JUNGLE +FD: net/minecraft/data/loot/packs/VanillaFishingLoot/f_244590_ net/minecraft/data/loot/packs/VanillaFishingLoot/IN_SPARSE_JUNGLE +FD: net/minecraft/data/metadata/PackMetadataGenerator/f_243851_ net/minecraft/data/metadata/PackMetadataGenerator/output +FD: net/minecraft/data/metadata/PackMetadataGenerator/f_244307_ net/minecraft/data/metadata/PackMetadataGenerator/elements +FD: net/minecraft/data/models/BlockModelGenerators/f_124477_ net/minecraft/data/models/BlockModelGenerators/blockStateOutput +FD: net/minecraft/data/models/BlockModelGenerators/f_124478_ net/minecraft/data/models/BlockModelGenerators/modelOutput +FD: net/minecraft/data/models/BlockModelGenerators/f_124479_ net/minecraft/data/models/BlockModelGenerators/skippedAutoModelsOutput +FD: net/minecraft/data/models/BlockModelGenerators/f_176079_ net/minecraft/data/models/BlockModelGenerators/MULTIFACE_GENERATOR +FD: net/minecraft/data/models/BlockModelGenerators/f_176080_ net/minecraft/data/models/BlockModelGenerators/nonOrientableTrapdoor +FD: net/minecraft/data/models/BlockModelGenerators/f_176081_ net/minecraft/data/models/BlockModelGenerators/fullBlockModelCustomGenerators +FD: net/minecraft/data/models/BlockModelGenerators/f_176082_ net/minecraft/data/models/BlockModelGenerators/texturedModels +FD: net/minecraft/data/models/BlockModelGenerators/f_176083_ net/minecraft/data/models/BlockModelGenerators/SHAPE_CONSUMERS +FD: net/minecraft/data/models/BlockModelGenerators/f_260595_ net/minecraft/data/models/BlockModelGenerators/CHISELED_BOOKSHELF_SLOT_MODEL_CACHE +FD: net/minecraft/data/models/BlockModelGenerators$1/f_125013_ net/minecraft/data/models/BlockModelGenerators$1/$SwitchMap$net$minecraft$core$FrontAndTop +FD: net/minecraft/data/models/BlockModelGenerators$1/f_125014_ net/minecraft/data/models/BlockModelGenerators$1/$SwitchMap$net$minecraft$world$level$block$state$properties$RailShape +FD: net/minecraft/data/models/BlockModelGenerators$1/f_276602_ net/minecraft/data/models/BlockModelGenerators$1/$SwitchMap$net$minecraft$world$level$block$state$properties$DoubleBlockHalf +FD: net/minecraft/data/models/BlockModelGenerators$BlockEntityModelGenerator/f_125016_ net/minecraft/data/models/BlockModelGenerators$BlockEntityModelGenerator/this$0 +FD: net/minecraft/data/models/BlockModelGenerators$BlockEntityModelGenerator/f_125017_ net/minecraft/data/models/BlockModelGenerators$BlockEntityModelGenerator/baseModel +FD: net/minecraft/data/models/BlockModelGenerators$BlockFamilyProvider/f_125029_ net/minecraft/data/models/BlockModelGenerators$BlockFamilyProvider/this$0 +FD: net/minecraft/data/models/BlockModelGenerators$BlockFamilyProvider/f_125030_ net/minecraft/data/models/BlockModelGenerators$BlockFamilyProvider/mapping +FD: net/minecraft/data/models/BlockModelGenerators$BlockFamilyProvider/f_125031_ net/minecraft/data/models/BlockModelGenerators$BlockFamilyProvider/fullBlock +FD: net/minecraft/data/models/BlockModelGenerators$BlockFamilyProvider/f_176254_ net/minecraft/data/models/BlockModelGenerators$BlockFamilyProvider/models +FD: net/minecraft/data/models/BlockModelGenerators$BlockFamilyProvider/f_176255_ net/minecraft/data/models/BlockModelGenerators$BlockFamilyProvider/family +FD: net/minecraft/data/models/BlockModelGenerators$BookSlotModelCacheKey/f_260626_ net/minecraft/data/models/BlockModelGenerators$BookSlotModelCacheKey/modelSuffix +FD: net/minecraft/data/models/BlockModelGenerators$BookSlotModelCacheKey/f_260721_ net/minecraft/data/models/BlockModelGenerators$BookSlotModelCacheKey/template +FD: net/minecraft/data/models/BlockModelGenerators$TintState/$VALUES net/minecraft/data/models/BlockModelGenerators$TintState/$VALUES +FD: net/minecraft/data/models/BlockModelGenerators$TintState/NOT_TINTED net/minecraft/data/models/BlockModelGenerators$TintState/NOT_TINTED +FD: net/minecraft/data/models/BlockModelGenerators$TintState/TINTED net/minecraft/data/models/BlockModelGenerators$TintState/TINTED +FD: net/minecraft/data/models/BlockModelGenerators$WoodProvider/f_125069_ net/minecraft/data/models/BlockModelGenerators$WoodProvider/this$0 +FD: net/minecraft/data/models/BlockModelGenerators$WoodProvider/f_125070_ net/minecraft/data/models/BlockModelGenerators$WoodProvider/logMapping +FD: net/minecraft/data/models/ItemModelGenerators/f_125080_ net/minecraft/data/models/ItemModelGenerators/output +FD: net/minecraft/data/models/ItemModelGenerators/f_265922_ net/minecraft/data/models/ItemModelGenerators/TRIM_TYPE_PREDICATE_ID +FD: net/minecraft/data/models/ItemModelGenerators/f_265952_ net/minecraft/data/models/ItemModelGenerators/GENERATED_TRIM_MODELS +FD: net/minecraft/data/models/ItemModelGenerators$TrimModelData/f_265849_ net/minecraft/data/models/ItemModelGenerators$TrimModelData/itemModelIndex +FD: net/minecraft/data/models/ItemModelGenerators$TrimModelData/f_265890_ net/minecraft/data/models/ItemModelGenerators$TrimModelData/name +FD: net/minecraft/data/models/ItemModelGenerators$TrimModelData/f_267444_ net/minecraft/data/models/ItemModelGenerators$TrimModelData/overrideArmorMaterials +FD: net/minecraft/data/models/ModelProvider/f_236325_ net/minecraft/data/models/ModelProvider/blockStatePathProvider +FD: net/minecraft/data/models/ModelProvider/f_236326_ net/minecraft/data/models/ModelProvider/modelPathProvider +FD: net/minecraft/data/models/blockstates/Condition$CompositeCondition/f_125139_ net/minecraft/data/models/blockstates/Condition$CompositeCondition/operation +FD: net/minecraft/data/models/blockstates/Condition$CompositeCondition/f_125140_ net/minecraft/data/models/blockstates/Condition$CompositeCondition/subconditions +FD: net/minecraft/data/models/blockstates/Condition$Operation/$VALUES net/minecraft/data/models/blockstates/Condition$Operation/$VALUES +FD: net/minecraft/data/models/blockstates/Condition$Operation/AND net/minecraft/data/models/blockstates/Condition$Operation/AND +FD: net/minecraft/data/models/blockstates/Condition$Operation/OR net/minecraft/data/models/blockstates/Condition$Operation/OR +FD: net/minecraft/data/models/blockstates/Condition$Operation/f_125157_ net/minecraft/data/models/blockstates/Condition$Operation/id +FD: net/minecraft/data/models/blockstates/Condition$TerminalCondition/f_125169_ net/minecraft/data/models/blockstates/Condition$TerminalCondition/terms +FD: net/minecraft/data/models/blockstates/MultiPartGenerator/f_125199_ net/minecraft/data/models/blockstates/MultiPartGenerator/block +FD: net/minecraft/data/models/blockstates/MultiPartGenerator/f_125200_ net/minecraft/data/models/blockstates/MultiPartGenerator/parts +FD: net/minecraft/data/models/blockstates/MultiPartGenerator$ConditionalEntry/f_125224_ net/minecraft/data/models/blockstates/MultiPartGenerator$ConditionalEntry/condition +FD: net/minecraft/data/models/blockstates/MultiPartGenerator$Entry/f_125236_ net/minecraft/data/models/blockstates/MultiPartGenerator$Entry/variants +FD: net/minecraft/data/models/blockstates/MultiVariantGenerator/f_125246_ net/minecraft/data/models/blockstates/MultiVariantGenerator/block +FD: net/minecraft/data/models/blockstates/MultiVariantGenerator/f_125247_ net/minecraft/data/models/blockstates/MultiVariantGenerator/baseVariants +FD: net/minecraft/data/models/blockstates/MultiVariantGenerator/f_125248_ net/minecraft/data/models/blockstates/MultiVariantGenerator/seenProperties +FD: net/minecraft/data/models/blockstates/MultiVariantGenerator/f_125249_ net/minecraft/data/models/blockstates/MultiVariantGenerator/declaredPropertySets +FD: net/minecraft/data/models/blockstates/PropertyDispatch/f_125291_ net/minecraft/data/models/blockstates/PropertyDispatch/values +FD: net/minecraft/data/models/blockstates/PropertyDispatch$C1/f_125323_ net/minecraft/data/models/blockstates/PropertyDispatch$C1/property1 +FD: net/minecraft/data/models/blockstates/PropertyDispatch$C2/f_125341_ net/minecraft/data/models/blockstates/PropertyDispatch$C2/property1 +FD: net/minecraft/data/models/blockstates/PropertyDispatch$C2/f_125342_ net/minecraft/data/models/blockstates/PropertyDispatch$C2/property2 +FD: net/minecraft/data/models/blockstates/PropertyDispatch$C3/f_125377_ net/minecraft/data/models/blockstates/PropertyDispatch$C3/property1 +FD: net/minecraft/data/models/blockstates/PropertyDispatch$C3/f_125378_ net/minecraft/data/models/blockstates/PropertyDispatch$C3/property2 +FD: net/minecraft/data/models/blockstates/PropertyDispatch$C3/f_125379_ net/minecraft/data/models/blockstates/PropertyDispatch$C3/property3 +FD: net/minecraft/data/models/blockstates/PropertyDispatch$C4/f_125414_ net/minecraft/data/models/blockstates/PropertyDispatch$C4/property1 +FD: net/minecraft/data/models/blockstates/PropertyDispatch$C4/f_125415_ net/minecraft/data/models/blockstates/PropertyDispatch$C4/property2 +FD: net/minecraft/data/models/blockstates/PropertyDispatch$C4/f_125416_ net/minecraft/data/models/blockstates/PropertyDispatch$C4/property3 +FD: net/minecraft/data/models/blockstates/PropertyDispatch$C4/f_125417_ net/minecraft/data/models/blockstates/PropertyDispatch$C4/property4 +FD: net/minecraft/data/models/blockstates/PropertyDispatch$C5/f_125442_ net/minecraft/data/models/blockstates/PropertyDispatch$C5/property1 +FD: net/minecraft/data/models/blockstates/PropertyDispatch$C5/f_125443_ net/minecraft/data/models/blockstates/PropertyDispatch$C5/property2 +FD: net/minecraft/data/models/blockstates/PropertyDispatch$C5/f_125444_ net/minecraft/data/models/blockstates/PropertyDispatch$C5/property3 +FD: net/minecraft/data/models/blockstates/PropertyDispatch$C5/f_125445_ net/minecraft/data/models/blockstates/PropertyDispatch$C5/property4 +FD: net/minecraft/data/models/blockstates/PropertyDispatch$C5/f_125446_ net/minecraft/data/models/blockstates/PropertyDispatch$C5/property5 +FD: net/minecraft/data/models/blockstates/Selector/f_125479_ net/minecraft/data/models/blockstates/Selector/EMPTY +FD: net/minecraft/data/models/blockstates/Selector/f_125480_ net/minecraft/data/models/blockstates/Selector/COMPARE_BY_NAME +FD: net/minecraft/data/models/blockstates/Selector/f_125481_ net/minecraft/data/models/blockstates/Selector/values +FD: net/minecraft/data/models/blockstates/Variant/f_125499_ net/minecraft/data/models/blockstates/Variant/values +FD: net/minecraft/data/models/blockstates/VariantProperties/f_125518_ net/minecraft/data/models/blockstates/VariantProperties/X_ROT +FD: net/minecraft/data/models/blockstates/VariantProperties/f_125519_ net/minecraft/data/models/blockstates/VariantProperties/Y_ROT +FD: net/minecraft/data/models/blockstates/VariantProperties/f_125520_ net/minecraft/data/models/blockstates/VariantProperties/MODEL +FD: net/minecraft/data/models/blockstates/VariantProperties/f_125521_ net/minecraft/data/models/blockstates/VariantProperties/UV_LOCK +FD: net/minecraft/data/models/blockstates/VariantProperties/f_125522_ net/minecraft/data/models/blockstates/VariantProperties/WEIGHT +FD: net/minecraft/data/models/blockstates/VariantProperties$Rotation/$VALUES net/minecraft/data/models/blockstates/VariantProperties$Rotation/$VALUES +FD: net/minecraft/data/models/blockstates/VariantProperties$Rotation/R0 net/minecraft/data/models/blockstates/VariantProperties$Rotation/R0 +FD: net/minecraft/data/models/blockstates/VariantProperties$Rotation/R180 net/minecraft/data/models/blockstates/VariantProperties$Rotation/R180 +FD: net/minecraft/data/models/blockstates/VariantProperties$Rotation/R270 net/minecraft/data/models/blockstates/VariantProperties$Rotation/R270 +FD: net/minecraft/data/models/blockstates/VariantProperties$Rotation/R90 net/minecraft/data/models/blockstates/VariantProperties$Rotation/R90 +FD: net/minecraft/data/models/blockstates/VariantProperties$Rotation/f_125534_ net/minecraft/data/models/blockstates/VariantProperties$Rotation/value +FD: net/minecraft/data/models/blockstates/VariantProperty/f_125546_ net/minecraft/data/models/blockstates/VariantProperty/key +FD: net/minecraft/data/models/blockstates/VariantProperty/f_125547_ net/minecraft/data/models/blockstates/VariantProperty/serializer +FD: net/minecraft/data/models/blockstates/VariantProperty$Value/f_125558_ net/minecraft/data/models/blockstates/VariantProperty$Value/this$0 +FD: net/minecraft/data/models/blockstates/VariantProperty$Value/f_125559_ net/minecraft/data/models/blockstates/VariantProperty$Value/value +FD: net/minecraft/data/models/model/DelegatedModel/f_125566_ net/minecraft/data/models/model/DelegatedModel/parent +FD: net/minecraft/data/models/model/ModelTemplate/f_125585_ net/minecraft/data/models/model/ModelTemplate/model +FD: net/minecraft/data/models/model/ModelTemplate/f_125586_ net/minecraft/data/models/model/ModelTemplate/requiredSlots +FD: net/minecraft/data/models/model/ModelTemplate/f_125587_ net/minecraft/data/models/model/ModelTemplate/suffix +FD: net/minecraft/data/models/model/ModelTemplates/f_125621_ net/minecraft/data/models/model/ModelTemplates/FENCE_GATE_OPEN +FD: net/minecraft/data/models/model/ModelTemplates/f_125622_ net/minecraft/data/models/model/ModelTemplates/FENCE_GATE_WALL_CLOSED +FD: net/minecraft/data/models/model/ModelTemplates/f_125623_ net/minecraft/data/models/model/ModelTemplates/FENCE_GATE_WALL_OPEN +FD: net/minecraft/data/models/model/ModelTemplates/f_125624_ net/minecraft/data/models/model/ModelTemplates/PRESSURE_PLATE_UP +FD: net/minecraft/data/models/model/ModelTemplates/f_125625_ net/minecraft/data/models/model/ModelTemplates/PRESSURE_PLATE_DOWN +FD: net/minecraft/data/models/model/ModelTemplates/f_125626_ net/minecraft/data/models/model/ModelTemplates/PARTICLE_ONLY +FD: net/minecraft/data/models/model/ModelTemplates/f_125627_ net/minecraft/data/models/model/ModelTemplates/SLAB_BOTTOM +FD: net/minecraft/data/models/model/ModelTemplates/f_125628_ net/minecraft/data/models/model/ModelTemplates/SLAB_TOP +FD: net/minecraft/data/models/model/ModelTemplates/f_125629_ net/minecraft/data/models/model/ModelTemplates/LEAVES +FD: net/minecraft/data/models/model/ModelTemplates/f_125630_ net/minecraft/data/models/model/ModelTemplates/STAIRS_STRAIGHT +FD: net/minecraft/data/models/model/ModelTemplates/f_125631_ net/minecraft/data/models/model/ModelTemplates/STAIRS_INNER +FD: net/minecraft/data/models/model/ModelTemplates/f_125632_ net/minecraft/data/models/model/ModelTemplates/STAIRS_OUTER +FD: net/minecraft/data/models/model/ModelTemplates/f_125633_ net/minecraft/data/models/model/ModelTemplates/TRAPDOOR_TOP +FD: net/minecraft/data/models/model/ModelTemplates/f_125634_ net/minecraft/data/models/model/ModelTemplates/TRAPDOOR_BOTTOM +FD: net/minecraft/data/models/model/ModelTemplates/f_125635_ net/minecraft/data/models/model/ModelTemplates/TRAPDOOR_OPEN +FD: net/minecraft/data/models/model/ModelTemplates/f_125636_ net/minecraft/data/models/model/ModelTemplates/ORIENTABLE_TRAPDOOR_TOP +FD: net/minecraft/data/models/model/ModelTemplates/f_125637_ net/minecraft/data/models/model/ModelTemplates/ORIENTABLE_TRAPDOOR_BOTTOM +FD: net/minecraft/data/models/model/ModelTemplates/f_125638_ net/minecraft/data/models/model/ModelTemplates/ORIENTABLE_TRAPDOOR_OPEN +FD: net/minecraft/data/models/model/ModelTemplates/f_125639_ net/minecraft/data/models/model/ModelTemplates/CROSS +FD: net/minecraft/data/models/model/ModelTemplates/f_125640_ net/minecraft/data/models/model/ModelTemplates/TINTED_CROSS +FD: net/minecraft/data/models/model/ModelTemplates/f_125641_ net/minecraft/data/models/model/ModelTemplates/FLOWER_POT_CROSS +FD: net/minecraft/data/models/model/ModelTemplates/f_125642_ net/minecraft/data/models/model/ModelTemplates/TINTED_FLOWER_POT_CROSS +FD: net/minecraft/data/models/model/ModelTemplates/f_125643_ net/minecraft/data/models/model/ModelTemplates/RAIL_FLAT +FD: net/minecraft/data/models/model/ModelTemplates/f_125644_ net/minecraft/data/models/model/ModelTemplates/RAIL_CURVED +FD: net/minecraft/data/models/model/ModelTemplates/f_125645_ net/minecraft/data/models/model/ModelTemplates/RAIL_RAISED_NE +FD: net/minecraft/data/models/model/ModelTemplates/f_125646_ net/minecraft/data/models/model/ModelTemplates/RAIL_RAISED_SW +FD: net/minecraft/data/models/model/ModelTemplates/f_125647_ net/minecraft/data/models/model/ModelTemplates/CUBE +FD: net/minecraft/data/models/model/ModelTemplates/f_125648_ net/minecraft/data/models/model/ModelTemplates/WALL_TORCH +FD: net/minecraft/data/models/model/ModelTemplates/f_125649_ net/minecraft/data/models/model/ModelTemplates/PISTON +FD: net/minecraft/data/models/model/ModelTemplates/f_125650_ net/minecraft/data/models/model/ModelTemplates/PISTON_HEAD +FD: net/minecraft/data/models/model/ModelTemplates/f_125651_ net/minecraft/data/models/model/ModelTemplates/PISTON_HEAD_SHORT +FD: net/minecraft/data/models/model/ModelTemplates/f_125652_ net/minecraft/data/models/model/ModelTemplates/SEAGRASS +FD: net/minecraft/data/models/model/ModelTemplates/f_125653_ net/minecraft/data/models/model/ModelTemplates/TURTLE_EGG +FD: net/minecraft/data/models/model/ModelTemplates/f_125654_ net/minecraft/data/models/model/ModelTemplates/TWO_TURTLE_EGGS +FD: net/minecraft/data/models/model/ModelTemplates/f_125655_ net/minecraft/data/models/model/ModelTemplates/THREE_TURTLE_EGGS +FD: net/minecraft/data/models/model/ModelTemplates/f_125656_ net/minecraft/data/models/model/ModelTemplates/FOUR_TURTLE_EGGS +FD: net/minecraft/data/models/model/ModelTemplates/f_125657_ net/minecraft/data/models/model/ModelTemplates/SINGLE_FACE +FD: net/minecraft/data/models/model/ModelTemplates/f_125658_ net/minecraft/data/models/model/ModelTemplates/FLAT_ITEM +FD: net/minecraft/data/models/model/ModelTemplates/f_125659_ net/minecraft/data/models/model/ModelTemplates/FLAT_HANDHELD_ITEM +FD: net/minecraft/data/models/model/ModelTemplates/f_125660_ net/minecraft/data/models/model/ModelTemplates/FLAT_HANDHELD_ROD_ITEM +FD: net/minecraft/data/models/model/ModelTemplates/f_125661_ net/minecraft/data/models/model/ModelTemplates/SHULKER_BOX_INVENTORY +FD: net/minecraft/data/models/model/ModelTemplates/f_125662_ net/minecraft/data/models/model/ModelTemplates/BED_INVENTORY +FD: net/minecraft/data/models/model/ModelTemplates/f_125663_ net/minecraft/data/models/model/ModelTemplates/BANNER_INVENTORY +FD: net/minecraft/data/models/model/ModelTemplates/f_125664_ net/minecraft/data/models/model/ModelTemplates/SKULL_INVENTORY +FD: net/minecraft/data/models/model/ModelTemplates/f_125665_ net/minecraft/data/models/model/ModelTemplates/CARPET +FD: net/minecraft/data/models/model/ModelTemplates/f_125666_ net/minecraft/data/models/model/ModelTemplates/CORAL_FAN +FD: net/minecraft/data/models/model/ModelTemplates/f_125667_ net/minecraft/data/models/model/ModelTemplates/CORAL_WALL_FAN +FD: net/minecraft/data/models/model/ModelTemplates/f_125668_ net/minecraft/data/models/model/ModelTemplates/GLAZED_TERRACOTTA +FD: net/minecraft/data/models/model/ModelTemplates/f_125669_ net/minecraft/data/models/model/ModelTemplates/CHORUS_FLOWER +FD: net/minecraft/data/models/model/ModelTemplates/f_125670_ net/minecraft/data/models/model/ModelTemplates/DAYLIGHT_DETECTOR +FD: net/minecraft/data/models/model/ModelTemplates/f_125671_ net/minecraft/data/models/model/ModelTemplates/STAINED_GLASS_PANE_NOSIDE +FD: net/minecraft/data/models/model/ModelTemplates/f_125672_ net/minecraft/data/models/model/ModelTemplates/STAINED_GLASS_PANE_NOSIDE_ALT +FD: net/minecraft/data/models/model/ModelTemplates/f_125673_ net/minecraft/data/models/model/ModelTemplates/STAINED_GLASS_PANE_POST +FD: net/minecraft/data/models/model/ModelTemplates/f_125674_ net/minecraft/data/models/model/ModelTemplates/STAINED_GLASS_PANE_SIDE +FD: net/minecraft/data/models/model/ModelTemplates/f_125675_ net/minecraft/data/models/model/ModelTemplates/STAINED_GLASS_PANE_SIDE_ALT +FD: net/minecraft/data/models/model/ModelTemplates/f_125676_ net/minecraft/data/models/model/ModelTemplates/COMMAND_BLOCK +FD: net/minecraft/data/models/model/ModelTemplates/f_125677_ net/minecraft/data/models/model/ModelTemplates/ANVIL +FD: net/minecraft/data/models/model/ModelTemplates/f_125678_ net/minecraft/data/models/model/ModelTemplates/STEMS +FD: net/minecraft/data/models/model/ModelTemplates/f_125679_ net/minecraft/data/models/model/ModelTemplates/ATTACHED_STEM +FD: net/minecraft/data/models/model/ModelTemplates/f_125680_ net/minecraft/data/models/model/ModelTemplates/CROP +FD: net/minecraft/data/models/model/ModelTemplates/f_125681_ net/minecraft/data/models/model/ModelTemplates/FARMLAND +FD: net/minecraft/data/models/model/ModelTemplates/f_125682_ net/minecraft/data/models/model/ModelTemplates/FIRE_FLOOR +FD: net/minecraft/data/models/model/ModelTemplates/f_125683_ net/minecraft/data/models/model/ModelTemplates/FIRE_SIDE +FD: net/minecraft/data/models/model/ModelTemplates/f_125684_ net/minecraft/data/models/model/ModelTemplates/FIRE_SIDE_ALT +FD: net/minecraft/data/models/model/ModelTemplates/f_125685_ net/minecraft/data/models/model/ModelTemplates/FIRE_UP +FD: net/minecraft/data/models/model/ModelTemplates/f_125686_ net/minecraft/data/models/model/ModelTemplates/FIRE_UP_ALT +FD: net/minecraft/data/models/model/ModelTemplates/f_125687_ net/minecraft/data/models/model/ModelTemplates/CAMPFIRE +FD: net/minecraft/data/models/model/ModelTemplates/f_125688_ net/minecraft/data/models/model/ModelTemplates/LANTERN +FD: net/minecraft/data/models/model/ModelTemplates/f_125689_ net/minecraft/data/models/model/ModelTemplates/HANGING_LANTERN +FD: net/minecraft/data/models/model/ModelTemplates/f_125690_ net/minecraft/data/models/model/ModelTemplates/TORCH +FD: net/minecraft/data/models/model/ModelTemplates/f_125691_ net/minecraft/data/models/model/ModelTemplates/CUBE_DIRECTIONAL +FD: net/minecraft/data/models/model/ModelTemplates/f_125692_ net/minecraft/data/models/model/ModelTemplates/CUBE_ALL +FD: net/minecraft/data/models/model/ModelTemplates/f_125693_ net/minecraft/data/models/model/ModelTemplates/CUBE_MIRRORED_ALL +FD: net/minecraft/data/models/model/ModelTemplates/f_125694_ net/minecraft/data/models/model/ModelTemplates/CUBE_COLUMN +FD: net/minecraft/data/models/model/ModelTemplates/f_125695_ net/minecraft/data/models/model/ModelTemplates/CUBE_COLUMN_HORIZONTAL +FD: net/minecraft/data/models/model/ModelTemplates/f_125696_ net/minecraft/data/models/model/ModelTemplates/CUBE_TOP +FD: net/minecraft/data/models/model/ModelTemplates/f_125697_ net/minecraft/data/models/model/ModelTemplates/CUBE_BOTTOM_TOP +FD: net/minecraft/data/models/model/ModelTemplates/f_125698_ net/minecraft/data/models/model/ModelTemplates/CUBE_ORIENTABLE +FD: net/minecraft/data/models/model/ModelTemplates/f_125699_ net/minecraft/data/models/model/ModelTemplates/CUBE_ORIENTABLE_TOP_BOTTOM +FD: net/minecraft/data/models/model/ModelTemplates/f_125700_ net/minecraft/data/models/model/ModelTemplates/CUBE_ORIENTABLE_VERTICAL +FD: net/minecraft/data/models/model/ModelTemplates/f_125701_ net/minecraft/data/models/model/ModelTemplates/BUTTON +FD: net/minecraft/data/models/model/ModelTemplates/f_125702_ net/minecraft/data/models/model/ModelTemplates/BUTTON_PRESSED +FD: net/minecraft/data/models/model/ModelTemplates/f_125703_ net/minecraft/data/models/model/ModelTemplates/BUTTON_INVENTORY +FD: net/minecraft/data/models/model/ModelTemplates/f_125708_ net/minecraft/data/models/model/ModelTemplates/FENCE_POST +FD: net/minecraft/data/models/model/ModelTemplates/f_125709_ net/minecraft/data/models/model/ModelTemplates/FENCE_SIDE +FD: net/minecraft/data/models/model/ModelTemplates/f_125710_ net/minecraft/data/models/model/ModelTemplates/FENCE_INVENTORY +FD: net/minecraft/data/models/model/ModelTemplates/f_125711_ net/minecraft/data/models/model/ModelTemplates/WALL_POST +FD: net/minecraft/data/models/model/ModelTemplates/f_125712_ net/minecraft/data/models/model/ModelTemplates/WALL_LOW_SIDE +FD: net/minecraft/data/models/model/ModelTemplates/f_125713_ net/minecraft/data/models/model/ModelTemplates/WALL_TALL_SIDE +FD: net/minecraft/data/models/model/ModelTemplates/f_125714_ net/minecraft/data/models/model/ModelTemplates/WALL_INVENTORY +FD: net/minecraft/data/models/model/ModelTemplates/f_125715_ net/minecraft/data/models/model/ModelTemplates/FENCE_GATE_CLOSED +FD: net/minecraft/data/models/model/ModelTemplates/f_176462_ net/minecraft/data/models/model/ModelTemplates/POINTED_DRIPSTONE +FD: net/minecraft/data/models/model/ModelTemplates/f_176463_ net/minecraft/data/models/model/ModelTemplates/CAULDRON_LEVEL1 +FD: net/minecraft/data/models/model/ModelTemplates/f_176464_ net/minecraft/data/models/model/ModelTemplates/CAULDRON_LEVEL2 +FD: net/minecraft/data/models/model/ModelTemplates/f_176465_ net/minecraft/data/models/model/ModelTemplates/CAULDRON_FULL +FD: net/minecraft/data/models/model/ModelTemplates/f_176466_ net/minecraft/data/models/model/ModelTemplates/AZALEA +FD: net/minecraft/data/models/model/ModelTemplates/f_176467_ net/minecraft/data/models/model/ModelTemplates/POTTED_AZALEA +FD: net/minecraft/data/models/model/ModelTemplates/f_176468_ net/minecraft/data/models/model/ModelTemplates/CANDLE +FD: net/minecraft/data/models/model/ModelTemplates/f_176469_ net/minecraft/data/models/model/ModelTemplates/TWO_CANDLES +FD: net/minecraft/data/models/model/ModelTemplates/f_176470_ net/minecraft/data/models/model/ModelTemplates/THREE_CANDLES +FD: net/minecraft/data/models/model/ModelTemplates/f_176471_ net/minecraft/data/models/model/ModelTemplates/FOUR_CANDLES +FD: net/minecraft/data/models/model/ModelTemplates/f_176472_ net/minecraft/data/models/model/ModelTemplates/CANDLE_CAKE +FD: net/minecraft/data/models/model/ModelTemplates/f_176473_ net/minecraft/data/models/model/ModelTemplates/CUBE_COLUMN_MIRRORED +FD: net/minecraft/data/models/model/ModelTemplates/f_236340_ net/minecraft/data/models/model/ModelTemplates/SCULK_SHRIEKER +FD: net/minecraft/data/models/model/ModelTemplates/f_236341_ net/minecraft/data/models/model/ModelTemplates/CUBE_NORTH_WEST_MIRRORED_ALL +FD: net/minecraft/data/models/model/ModelTemplates/f_236342_ net/minecraft/data/models/model/ModelTemplates/DOOR_BOTTOM_LEFT +FD: net/minecraft/data/models/model/ModelTemplates/f_236343_ net/minecraft/data/models/model/ModelTemplates/DOOR_BOTTOM_LEFT_OPEN +FD: net/minecraft/data/models/model/ModelTemplates/f_236344_ net/minecraft/data/models/model/ModelTemplates/DOOR_BOTTOM_RIGHT +FD: net/minecraft/data/models/model/ModelTemplates/f_236345_ net/minecraft/data/models/model/ModelTemplates/DOOR_BOTTOM_RIGHT_OPEN +FD: net/minecraft/data/models/model/ModelTemplates/f_236346_ net/minecraft/data/models/model/ModelTemplates/DOOR_TOP_LEFT +FD: net/minecraft/data/models/model/ModelTemplates/f_236347_ net/minecraft/data/models/model/ModelTemplates/DOOR_TOP_LEFT_OPEN +FD: net/minecraft/data/models/model/ModelTemplates/f_236348_ net/minecraft/data/models/model/ModelTemplates/DOOR_TOP_RIGHT +FD: net/minecraft/data/models/model/ModelTemplates/f_236349_ net/minecraft/data/models/model/ModelTemplates/DOOR_TOP_RIGHT_OPEN +FD: net/minecraft/data/models/model/ModelTemplates/f_243715_ net/minecraft/data/models/model/ModelTemplates/CUSTOM_FENCE_GATE_CLOSED +FD: net/minecraft/data/models/model/ModelTemplates/f_243784_ net/minecraft/data/models/model/ModelTemplates/CUSTOM_FENCE_POST +FD: net/minecraft/data/models/model/ModelTemplates/f_243831_ net/minecraft/data/models/model/ModelTemplates/CUSTOM_FENCE_GATE_OPEN +FD: net/minecraft/data/models/model/ModelTemplates/f_243867_ net/minecraft/data/models/model/ModelTemplates/CUSTOM_FENCE_INVENTORY +FD: net/minecraft/data/models/model/ModelTemplates/f_243925_ net/minecraft/data/models/model/ModelTemplates/CUSTOM_FENCE_GATE_WALL_OPEN +FD: net/minecraft/data/models/model/ModelTemplates/f_243943_ net/minecraft/data/models/model/ModelTemplates/CUSTOM_FENCE_SIDE_WEST +FD: net/minecraft/data/models/model/ModelTemplates/f_244191_ net/minecraft/data/models/model/ModelTemplates/CUSTOM_FENCE_SIDE_NORTH +FD: net/minecraft/data/models/model/ModelTemplates/f_244216_ net/minecraft/data/models/model/ModelTemplates/CUSTOM_FENCE_SIDE_SOUTH +FD: net/minecraft/data/models/model/ModelTemplates/f_244273_ net/minecraft/data/models/model/ModelTemplates/CUSTOM_FENCE_GATE_WALL_CLOSED +FD: net/minecraft/data/models/model/ModelTemplates/f_244408_ net/minecraft/data/models/model/ModelTemplates/CUSTOM_FENCE_SIDE_EAST +FD: net/minecraft/data/models/model/ModelTemplates/f_256809_ net/minecraft/data/models/model/ModelTemplates/CUBE_COLUMN_UV_LOCKED_Y +FD: net/minecraft/data/models/model/ModelTemplates/f_256886_ net/minecraft/data/models/model/ModelTemplates/CUBE_COLUMN_UV_LOCKED_X +FD: net/minecraft/data/models/model/ModelTemplates/f_256910_ net/minecraft/data/models/model/ModelTemplates/CUBE_COLUMN_UV_LOCKED_Z +FD: net/minecraft/data/models/model/ModelTemplates/f_260440_ net/minecraft/data/models/model/ModelTemplates/CHISELED_BOOKSHELF_SLOT_BOTTOM_LEFT +FD: net/minecraft/data/models/model/ModelTemplates/f_260577_ net/minecraft/data/models/model/ModelTemplates/CHISELED_BOOKSHELF_SLOT_TOP_MID +FD: net/minecraft/data/models/model/ModelTemplates/f_260613_ net/minecraft/data/models/model/ModelTemplates/CHISELED_BOOKSHELF_SLOT_BOTTOM_RIGHT +FD: net/minecraft/data/models/model/ModelTemplates/f_260622_ net/minecraft/data/models/model/ModelTemplates/CHISELED_BOOKSHELF_SLOT_BOTTOM_MID +FD: net/minecraft/data/models/model/ModelTemplates/f_260631_ net/minecraft/data/models/model/ModelTemplates/CHISELED_BOOKSHELF_SLOT_TOP_RIGHT +FD: net/minecraft/data/models/model/ModelTemplates/f_260688_ net/minecraft/data/models/model/ModelTemplates/CHISELED_BOOKSHELF_SLOT_TOP_LEFT +FD: net/minecraft/data/models/model/ModelTemplates/f_267487_ net/minecraft/data/models/model/ModelTemplates/THREE_LAYERED_ITEM +FD: net/minecraft/data/models/model/ModelTemplates/f_267493_ net/minecraft/data/models/model/ModelTemplates/TWO_LAYERED_ITEM +FD: net/minecraft/data/models/model/ModelTemplates/f_271172_ net/minecraft/data/models/model/ModelTemplates/FLOWERBED_4 +FD: net/minecraft/data/models/model/ModelTemplates/f_271241_ net/minecraft/data/models/model/ModelTemplates/FLOWERBED_1 +FD: net/minecraft/data/models/model/ModelTemplates/f_271276_ net/minecraft/data/models/model/ModelTemplates/FLOWERBED_3 +FD: net/minecraft/data/models/model/ModelTemplates/f_271417_ net/minecraft/data/models/model/ModelTemplates/FLOWERBED_2 +FD: net/minecraft/data/models/model/ModelTemplates/f_276458_ net/minecraft/data/models/model/ModelTemplates/SNIFFER_EGG +FD: net/minecraft/data/models/model/ModelTemplates/f_278116_ net/minecraft/data/models/model/ModelTemplates/POTTED_FLOWERING_AZALEA +FD: net/minecraft/data/models/model/ModelTemplates/f_278495_ net/minecraft/data/models/model/ModelTemplates/MUSIC_DISC +FD: net/minecraft/data/models/model/TextureMapping/f_125733_ net/minecraft/data/models/model/TextureMapping/slots +FD: net/minecraft/data/models/model/TextureMapping/f_125734_ net/minecraft/data/models/model/TextureMapping/forcedSlots +FD: net/minecraft/data/models/model/TextureSlot/f_125856_ net/minecraft/data/models/model/TextureSlot/CROP +FD: net/minecraft/data/models/model/TextureSlot/f_125857_ net/minecraft/data/models/model/TextureSlot/DIRT +FD: net/minecraft/data/models/model/TextureSlot/f_125858_ net/minecraft/data/models/model/TextureSlot/FIRE +FD: net/minecraft/data/models/model/TextureSlot/f_125859_ net/minecraft/data/models/model/TextureSlot/LANTERN +FD: net/minecraft/data/models/model/TextureSlot/f_125860_ net/minecraft/data/models/model/TextureSlot/PLATFORM +FD: net/minecraft/data/models/model/TextureSlot/f_125861_ net/minecraft/data/models/model/TextureSlot/UNSTICKY +FD: net/minecraft/data/models/model/TextureSlot/f_125862_ net/minecraft/data/models/model/TextureSlot/TORCH +FD: net/minecraft/data/models/model/TextureSlot/f_125863_ net/minecraft/data/models/model/TextureSlot/LAYER0 +FD: net/minecraft/data/models/model/TextureSlot/f_125864_ net/minecraft/data/models/model/TextureSlot/LIT_LOG +FD: net/minecraft/data/models/model/TextureSlot/f_125865_ net/minecraft/data/models/model/TextureSlot/id +FD: net/minecraft/data/models/model/TextureSlot/f_125866_ net/minecraft/data/models/model/TextureSlot/parent +FD: net/minecraft/data/models/model/TextureSlot/f_125867_ net/minecraft/data/models/model/TextureSlot/ALL +FD: net/minecraft/data/models/model/TextureSlot/f_125868_ net/minecraft/data/models/model/TextureSlot/TEXTURE +FD: net/minecraft/data/models/model/TextureSlot/f_125869_ net/minecraft/data/models/model/TextureSlot/PARTICLE +FD: net/minecraft/data/models/model/TextureSlot/f_125870_ net/minecraft/data/models/model/TextureSlot/END +FD: net/minecraft/data/models/model/TextureSlot/f_125871_ net/minecraft/data/models/model/TextureSlot/BOTTOM +FD: net/minecraft/data/models/model/TextureSlot/f_125872_ net/minecraft/data/models/model/TextureSlot/TOP +FD: net/minecraft/data/models/model/TextureSlot/f_125873_ net/minecraft/data/models/model/TextureSlot/FRONT +FD: net/minecraft/data/models/model/TextureSlot/f_125874_ net/minecraft/data/models/model/TextureSlot/BACK +FD: net/minecraft/data/models/model/TextureSlot/f_125875_ net/minecraft/data/models/model/TextureSlot/SIDE +FD: net/minecraft/data/models/model/TextureSlot/f_125876_ net/minecraft/data/models/model/TextureSlot/NORTH +FD: net/minecraft/data/models/model/TextureSlot/f_125877_ net/minecraft/data/models/model/TextureSlot/SOUTH +FD: net/minecraft/data/models/model/TextureSlot/f_125878_ net/minecraft/data/models/model/TextureSlot/EAST +FD: net/minecraft/data/models/model/TextureSlot/f_125879_ net/minecraft/data/models/model/TextureSlot/WEST +FD: net/minecraft/data/models/model/TextureSlot/f_125880_ net/minecraft/data/models/model/TextureSlot/UP +FD: net/minecraft/data/models/model/TextureSlot/f_125881_ net/minecraft/data/models/model/TextureSlot/DOWN +FD: net/minecraft/data/models/model/TextureSlot/f_125882_ net/minecraft/data/models/model/TextureSlot/CROSS +FD: net/minecraft/data/models/model/TextureSlot/f_125883_ net/minecraft/data/models/model/TextureSlot/PLANT +FD: net/minecraft/data/models/model/TextureSlot/f_125884_ net/minecraft/data/models/model/TextureSlot/WALL +FD: net/minecraft/data/models/model/TextureSlot/f_125885_ net/minecraft/data/models/model/TextureSlot/RAIL +FD: net/minecraft/data/models/model/TextureSlot/f_125886_ net/minecraft/data/models/model/TextureSlot/WOOL +FD: net/minecraft/data/models/model/TextureSlot/f_125887_ net/minecraft/data/models/model/TextureSlot/PATTERN +FD: net/minecraft/data/models/model/TextureSlot/f_125888_ net/minecraft/data/models/model/TextureSlot/PANE +FD: net/minecraft/data/models/model/TextureSlot/f_125889_ net/minecraft/data/models/model/TextureSlot/EDGE +FD: net/minecraft/data/models/model/TextureSlot/f_125890_ net/minecraft/data/models/model/TextureSlot/FAN +FD: net/minecraft/data/models/model/TextureSlot/f_125891_ net/minecraft/data/models/model/TextureSlot/STEM +FD: net/minecraft/data/models/model/TextureSlot/f_125892_ net/minecraft/data/models/model/TextureSlot/UPPER_STEM +FD: net/minecraft/data/models/model/TextureSlot/f_176490_ net/minecraft/data/models/model/TextureSlot/CANDLE +FD: net/minecraft/data/models/model/TextureSlot/f_176491_ net/minecraft/data/models/model/TextureSlot/INSIDE +FD: net/minecraft/data/models/model/TextureSlot/f_176492_ net/minecraft/data/models/model/TextureSlot/CONTENT +FD: net/minecraft/data/models/model/TextureSlot/f_236352_ net/minecraft/data/models/model/TextureSlot/INNER_TOP +FD: net/minecraft/data/models/model/TextureSlot/f_265929_ net/minecraft/data/models/model/TextureSlot/LAYER1 +FD: net/minecraft/data/models/model/TextureSlot/f_267385_ net/minecraft/data/models/model/TextureSlot/LAYER2 +FD: net/minecraft/data/models/model/TextureSlot/f_271285_ net/minecraft/data/models/model/TextureSlot/FLOWERBED +FD: net/minecraft/data/models/model/TexturedModel/f_125905_ net/minecraft/data/models/model/TexturedModel/CUBE +FD: net/minecraft/data/models/model/TexturedModel/f_125906_ net/minecraft/data/models/model/TexturedModel/CUBE_MIRRORED +FD: net/minecraft/data/models/model/TexturedModel/f_125907_ net/minecraft/data/models/model/TexturedModel/COLUMN +FD: net/minecraft/data/models/model/TexturedModel/f_125908_ net/minecraft/data/models/model/TexturedModel/COLUMN_HORIZONTAL +FD: net/minecraft/data/models/model/TexturedModel/f_125909_ net/minecraft/data/models/model/TexturedModel/CUBE_TOP_BOTTOM +FD: net/minecraft/data/models/model/TexturedModel/f_125910_ net/minecraft/data/models/model/TexturedModel/CUBE_TOP +FD: net/minecraft/data/models/model/TexturedModel/f_125911_ net/minecraft/data/models/model/TexturedModel/ORIENTABLE_ONLY_TOP +FD: net/minecraft/data/models/model/TexturedModel/f_125912_ net/minecraft/data/models/model/TexturedModel/ORIENTABLE +FD: net/minecraft/data/models/model/TexturedModel/f_125913_ net/minecraft/data/models/model/TexturedModel/CARPET +FD: net/minecraft/data/models/model/TexturedModel/f_125914_ net/minecraft/data/models/model/TexturedModel/GLAZED_TERRACOTTA +FD: net/minecraft/data/models/model/TexturedModel/f_125915_ net/minecraft/data/models/model/TexturedModel/CORAL_FAN +FD: net/minecraft/data/models/model/TexturedModel/f_125916_ net/minecraft/data/models/model/TexturedModel/PARTICLE_ONLY +FD: net/minecraft/data/models/model/TexturedModel/f_125917_ net/minecraft/data/models/model/TexturedModel/ANVIL +FD: net/minecraft/data/models/model/TexturedModel/f_125918_ net/minecraft/data/models/model/TexturedModel/LEAVES +FD: net/minecraft/data/models/model/TexturedModel/f_125919_ net/minecraft/data/models/model/TexturedModel/LANTERN +FD: net/minecraft/data/models/model/TexturedModel/f_125920_ net/minecraft/data/models/model/TexturedModel/HANGING_LANTERN +FD: net/minecraft/data/models/model/TexturedModel/f_125921_ net/minecraft/data/models/model/TexturedModel/SEAGRASS +FD: net/minecraft/data/models/model/TexturedModel/f_125922_ net/minecraft/data/models/model/TexturedModel/COLUMN_ALT +FD: net/minecraft/data/models/model/TexturedModel/f_125923_ net/minecraft/data/models/model/TexturedModel/COLUMN_HORIZONTAL_ALT +FD: net/minecraft/data/models/model/TexturedModel/f_125924_ net/minecraft/data/models/model/TexturedModel/TOP_BOTTOM_WITH_WALL +FD: net/minecraft/data/models/model/TexturedModel/f_125925_ net/minecraft/data/models/model/TexturedModel/COLUMN_WITH_WALL +FD: net/minecraft/data/models/model/TexturedModel/f_125926_ net/minecraft/data/models/model/TexturedModel/mapping +FD: net/minecraft/data/models/model/TexturedModel/f_125927_ net/minecraft/data/models/model/TexturedModel/template +FD: net/minecraft/data/models/model/TexturedModel/f_271226_ net/minecraft/data/models/model/TexturedModel/FLOWERBED_4 +FD: net/minecraft/data/models/model/TexturedModel/f_271277_ net/minecraft/data/models/model/TexturedModel/FLOWERBED_1 +FD: net/minecraft/data/models/model/TexturedModel/f_271345_ net/minecraft/data/models/model/TexturedModel/FLOWERBED_2 +FD: net/minecraft/data/models/model/TexturedModel/f_271514_ net/minecraft/data/models/model/TexturedModel/FLOWERBED_3 +FD: net/minecraft/data/recipes/CraftingRecipeBuilder$1/f_244028_ net/minecraft/data/recipes/CraftingRecipeBuilder$1/$SwitchMap$net$minecraft$data$recipes$RecipeCategory +FD: net/minecraft/data/recipes/CraftingRecipeBuilder$CraftingResult/f_244639_ net/minecraft/data/recipes/CraftingRecipeBuilder$CraftingResult/category +FD: net/minecraft/data/recipes/RecipeBuilder/f_236353_ net/minecraft/data/recipes/RecipeBuilder/ROOT_RECIPE_ADVANCEMENT +FD: net/minecraft/data/recipes/RecipeCategory/$VALUES net/minecraft/data/recipes/RecipeCategory/$VALUES +FD: net/minecraft/data/recipes/RecipeCategory/BREWING net/minecraft/data/recipes/RecipeCategory/BREWING +FD: net/minecraft/data/recipes/RecipeCategory/BUILDING_BLOCKS net/minecraft/data/recipes/RecipeCategory/BUILDING_BLOCKS +FD: net/minecraft/data/recipes/RecipeCategory/COMBAT net/minecraft/data/recipes/RecipeCategory/COMBAT +FD: net/minecraft/data/recipes/RecipeCategory/DECORATIONS net/minecraft/data/recipes/RecipeCategory/DECORATIONS +FD: net/minecraft/data/recipes/RecipeCategory/FOOD net/minecraft/data/recipes/RecipeCategory/FOOD +FD: net/minecraft/data/recipes/RecipeCategory/MISC net/minecraft/data/recipes/RecipeCategory/MISC +FD: net/minecraft/data/recipes/RecipeCategory/REDSTONE net/minecraft/data/recipes/RecipeCategory/REDSTONE +FD: net/minecraft/data/recipes/RecipeCategory/TOOLS net/minecraft/data/recipes/RecipeCategory/TOOLS +FD: net/minecraft/data/recipes/RecipeCategory/TRANSPORTATION net/minecraft/data/recipes/RecipeCategory/TRANSPORTATION +FD: net/minecraft/data/recipes/RecipeCategory/f_244582_ net/minecraft/data/recipes/RecipeCategory/recipeFolderName +FD: net/minecraft/data/recipes/RecipeProvider/f_236355_ net/minecraft/data/recipes/RecipeProvider/recipePathProvider +FD: net/minecraft/data/recipes/RecipeProvider/f_236356_ net/minecraft/data/recipes/RecipeProvider/advancementPathProvider +FD: net/minecraft/data/recipes/RecipeProvider/f_244077_ net/minecraft/data/recipes/RecipeProvider/SHAPE_BUILDERS +FD: net/minecraft/data/recipes/ShapedRecipeBuilder/f_126106_ net/minecraft/data/recipes/ShapedRecipeBuilder/result +FD: net/minecraft/data/recipes/ShapedRecipeBuilder/f_126107_ net/minecraft/data/recipes/ShapedRecipeBuilder/count +FD: net/minecraft/data/recipes/ShapedRecipeBuilder/f_126108_ net/minecraft/data/recipes/ShapedRecipeBuilder/rows +FD: net/minecraft/data/recipes/ShapedRecipeBuilder/f_126109_ net/minecraft/data/recipes/ShapedRecipeBuilder/key +FD: net/minecraft/data/recipes/ShapedRecipeBuilder/f_126110_ net/minecraft/data/recipes/ShapedRecipeBuilder/advancement +FD: net/minecraft/data/recipes/ShapedRecipeBuilder/f_126111_ net/minecraft/data/recipes/ShapedRecipeBuilder/group +FD: net/minecraft/data/recipes/ShapedRecipeBuilder/f_243672_ net/minecraft/data/recipes/ShapedRecipeBuilder/category +FD: net/minecraft/data/recipes/ShapedRecipeBuilder/f_271093_ net/minecraft/data/recipes/ShapedRecipeBuilder/showNotification +FD: net/minecraft/data/recipes/ShapedRecipeBuilder$Result/f_126148_ net/minecraft/data/recipes/ShapedRecipeBuilder$Result/id +FD: net/minecraft/data/recipes/ShapedRecipeBuilder$Result/f_126149_ net/minecraft/data/recipes/ShapedRecipeBuilder$Result/result +FD: net/minecraft/data/recipes/ShapedRecipeBuilder$Result/f_126150_ net/minecraft/data/recipes/ShapedRecipeBuilder$Result/count +FD: net/minecraft/data/recipes/ShapedRecipeBuilder$Result/f_126151_ net/minecraft/data/recipes/ShapedRecipeBuilder$Result/group +FD: net/minecraft/data/recipes/ShapedRecipeBuilder$Result/f_126152_ net/minecraft/data/recipes/ShapedRecipeBuilder$Result/pattern +FD: net/minecraft/data/recipes/ShapedRecipeBuilder$Result/f_126153_ net/minecraft/data/recipes/ShapedRecipeBuilder$Result/key +FD: net/minecraft/data/recipes/ShapedRecipeBuilder$Result/f_126154_ net/minecraft/data/recipes/ShapedRecipeBuilder$Result/advancement +FD: net/minecraft/data/recipes/ShapedRecipeBuilder$Result/f_126155_ net/minecraft/data/recipes/ShapedRecipeBuilder$Result/advancementId +FD: net/minecraft/data/recipes/ShapedRecipeBuilder$Result/f_271297_ net/minecraft/data/recipes/ShapedRecipeBuilder$Result/showNotification +FD: net/minecraft/data/recipes/ShapelessRecipeBuilder/f_126173_ net/minecraft/data/recipes/ShapelessRecipeBuilder/result +FD: net/minecraft/data/recipes/ShapelessRecipeBuilder/f_126174_ net/minecraft/data/recipes/ShapelessRecipeBuilder/count +FD: net/minecraft/data/recipes/ShapelessRecipeBuilder/f_126175_ net/minecraft/data/recipes/ShapelessRecipeBuilder/ingredients +FD: net/minecraft/data/recipes/ShapelessRecipeBuilder/f_126176_ net/minecraft/data/recipes/ShapelessRecipeBuilder/advancement +FD: net/minecraft/data/recipes/ShapelessRecipeBuilder/f_126177_ net/minecraft/data/recipes/ShapelessRecipeBuilder/group +FD: net/minecraft/data/recipes/ShapelessRecipeBuilder/f_244182_ net/minecraft/data/recipes/ShapelessRecipeBuilder/category +FD: net/minecraft/data/recipes/ShapelessRecipeBuilder$Result/f_126214_ net/minecraft/data/recipes/ShapelessRecipeBuilder$Result/id +FD: net/minecraft/data/recipes/ShapelessRecipeBuilder$Result/f_126215_ net/minecraft/data/recipes/ShapelessRecipeBuilder$Result/result +FD: net/minecraft/data/recipes/ShapelessRecipeBuilder$Result/f_126216_ net/minecraft/data/recipes/ShapelessRecipeBuilder$Result/count +FD: net/minecraft/data/recipes/ShapelessRecipeBuilder$Result/f_126217_ net/minecraft/data/recipes/ShapelessRecipeBuilder$Result/group +FD: net/minecraft/data/recipes/ShapelessRecipeBuilder$Result/f_126218_ net/minecraft/data/recipes/ShapelessRecipeBuilder$Result/ingredients +FD: net/minecraft/data/recipes/ShapelessRecipeBuilder$Result/f_126219_ net/minecraft/data/recipes/ShapelessRecipeBuilder$Result/advancement +FD: net/minecraft/data/recipes/ShapelessRecipeBuilder$Result/f_126220_ net/minecraft/data/recipes/ShapelessRecipeBuilder$Result/advancementId +FD: net/minecraft/data/recipes/SimpleCookingRecipeBuilder/f_126235_ net/minecraft/data/recipes/SimpleCookingRecipeBuilder/result +FD: net/minecraft/data/recipes/SimpleCookingRecipeBuilder/f_126236_ net/minecraft/data/recipes/SimpleCookingRecipeBuilder/ingredient +FD: net/minecraft/data/recipes/SimpleCookingRecipeBuilder/f_126237_ net/minecraft/data/recipes/SimpleCookingRecipeBuilder/experience +FD: net/minecraft/data/recipes/SimpleCookingRecipeBuilder/f_126238_ net/minecraft/data/recipes/SimpleCookingRecipeBuilder/cookingTime +FD: net/minecraft/data/recipes/SimpleCookingRecipeBuilder/f_126239_ net/minecraft/data/recipes/SimpleCookingRecipeBuilder/advancement +FD: net/minecraft/data/recipes/SimpleCookingRecipeBuilder/f_126240_ net/minecraft/data/recipes/SimpleCookingRecipeBuilder/group +FD: net/minecraft/data/recipes/SimpleCookingRecipeBuilder/f_126241_ net/minecraft/data/recipes/SimpleCookingRecipeBuilder/serializer +FD: net/minecraft/data/recipes/SimpleCookingRecipeBuilder/f_244246_ net/minecraft/data/recipes/SimpleCookingRecipeBuilder/category +FD: net/minecraft/data/recipes/SimpleCookingRecipeBuilder/f_244540_ net/minecraft/data/recipes/SimpleCookingRecipeBuilder/bookCategory +FD: net/minecraft/data/recipes/SimpleCookingRecipeBuilder$Result/f_126277_ net/minecraft/data/recipes/SimpleCookingRecipeBuilder$Result/id +FD: net/minecraft/data/recipes/SimpleCookingRecipeBuilder$Result/f_126278_ net/minecraft/data/recipes/SimpleCookingRecipeBuilder$Result/group +FD: net/minecraft/data/recipes/SimpleCookingRecipeBuilder$Result/f_126279_ net/minecraft/data/recipes/SimpleCookingRecipeBuilder$Result/ingredient +FD: net/minecraft/data/recipes/SimpleCookingRecipeBuilder$Result/f_126280_ net/minecraft/data/recipes/SimpleCookingRecipeBuilder$Result/result +FD: net/minecraft/data/recipes/SimpleCookingRecipeBuilder$Result/f_126281_ net/minecraft/data/recipes/SimpleCookingRecipeBuilder$Result/experience +FD: net/minecraft/data/recipes/SimpleCookingRecipeBuilder$Result/f_126282_ net/minecraft/data/recipes/SimpleCookingRecipeBuilder$Result/cookingTime +FD: net/minecraft/data/recipes/SimpleCookingRecipeBuilder$Result/f_126283_ net/minecraft/data/recipes/SimpleCookingRecipeBuilder$Result/advancement +FD: net/minecraft/data/recipes/SimpleCookingRecipeBuilder$Result/f_126284_ net/minecraft/data/recipes/SimpleCookingRecipeBuilder$Result/advancementId +FD: net/minecraft/data/recipes/SimpleCookingRecipeBuilder$Result/f_126285_ net/minecraft/data/recipes/SimpleCookingRecipeBuilder$Result/serializer +FD: net/minecraft/data/recipes/SimpleCookingRecipeBuilder$Result/f_244427_ net/minecraft/data/recipes/SimpleCookingRecipeBuilder$Result/category +FD: net/minecraft/data/recipes/SingleItemRecipeBuilder/f_126302_ net/minecraft/data/recipes/SingleItemRecipeBuilder/result +FD: net/minecraft/data/recipes/SingleItemRecipeBuilder/f_126303_ net/minecraft/data/recipes/SingleItemRecipeBuilder/ingredient +FD: net/minecraft/data/recipes/SingleItemRecipeBuilder/f_126304_ net/minecraft/data/recipes/SingleItemRecipeBuilder/count +FD: net/minecraft/data/recipes/SingleItemRecipeBuilder/f_126305_ net/minecraft/data/recipes/SingleItemRecipeBuilder/advancement +FD: net/minecraft/data/recipes/SingleItemRecipeBuilder/f_126306_ net/minecraft/data/recipes/SingleItemRecipeBuilder/group +FD: net/minecraft/data/recipes/SingleItemRecipeBuilder/f_126307_ net/minecraft/data/recipes/SingleItemRecipeBuilder/type +FD: net/minecraft/data/recipes/SingleItemRecipeBuilder/f_244239_ net/minecraft/data/recipes/SingleItemRecipeBuilder/category +FD: net/minecraft/data/recipes/SingleItemRecipeBuilder$Result/f_126331_ net/minecraft/data/recipes/SingleItemRecipeBuilder$Result/id +FD: net/minecraft/data/recipes/SingleItemRecipeBuilder$Result/f_126332_ net/minecraft/data/recipes/SingleItemRecipeBuilder$Result/group +FD: net/minecraft/data/recipes/SingleItemRecipeBuilder$Result/f_126333_ net/minecraft/data/recipes/SingleItemRecipeBuilder$Result/ingredient +FD: net/minecraft/data/recipes/SingleItemRecipeBuilder$Result/f_126334_ net/minecraft/data/recipes/SingleItemRecipeBuilder$Result/result +FD: net/minecraft/data/recipes/SingleItemRecipeBuilder$Result/f_126335_ net/minecraft/data/recipes/SingleItemRecipeBuilder$Result/count +FD: net/minecraft/data/recipes/SingleItemRecipeBuilder$Result/f_126336_ net/minecraft/data/recipes/SingleItemRecipeBuilder$Result/advancement +FD: net/minecraft/data/recipes/SingleItemRecipeBuilder$Result/f_126337_ net/minecraft/data/recipes/SingleItemRecipeBuilder$Result/advancementId +FD: net/minecraft/data/recipes/SingleItemRecipeBuilder$Result/f_126338_ net/minecraft/data/recipes/SingleItemRecipeBuilder$Result/type +FD: net/minecraft/data/recipes/SmithingTransformRecipeBuilder/f_265893_ net/minecraft/data/recipes/SmithingTransformRecipeBuilder/base +FD: net/minecraft/data/recipes/SmithingTransformRecipeBuilder/f_265959_ net/minecraft/data/recipes/SmithingTransformRecipeBuilder/addition +FD: net/minecraft/data/recipes/SmithingTransformRecipeBuilder/f_266005_ net/minecraft/data/recipes/SmithingTransformRecipeBuilder/result +FD: net/minecraft/data/recipes/SmithingTransformRecipeBuilder/f_266006_ net/minecraft/data/recipes/SmithingTransformRecipeBuilder/type +FD: net/minecraft/data/recipes/SmithingTransformRecipeBuilder/f_266018_ net/minecraft/data/recipes/SmithingTransformRecipeBuilder/category +FD: net/minecraft/data/recipes/SmithingTransformRecipeBuilder/f_266030_ net/minecraft/data/recipes/SmithingTransformRecipeBuilder/template +FD: net/minecraft/data/recipes/SmithingTransformRecipeBuilder/f_266090_ net/minecraft/data/recipes/SmithingTransformRecipeBuilder/advancement +FD: net/minecraft/data/recipes/SmithingTransformRecipeBuilder$Result/f_265855_ net/minecraft/data/recipes/SmithingTransformRecipeBuilder$Result/advancement +FD: net/minecraft/data/recipes/SmithingTransformRecipeBuilder$Result/f_265903_ net/minecraft/data/recipes/SmithingTransformRecipeBuilder$Result/addition +FD: net/minecraft/data/recipes/SmithingTransformRecipeBuilder$Result/f_265962_ net/minecraft/data/recipes/SmithingTransformRecipeBuilder$Result/type +FD: net/minecraft/data/recipes/SmithingTransformRecipeBuilder$Result/f_265972_ net/minecraft/data/recipes/SmithingTransformRecipeBuilder$Result/result +FD: net/minecraft/data/recipes/SmithingTransformRecipeBuilder$Result/f_266002_ net/minecraft/data/recipes/SmithingTransformRecipeBuilder$Result/template +FD: net/minecraft/data/recipes/SmithingTransformRecipeBuilder$Result/f_266011_ net/minecraft/data/recipes/SmithingTransformRecipeBuilder$Result/id +FD: net/minecraft/data/recipes/SmithingTransformRecipeBuilder$Result/f_266094_ net/minecraft/data/recipes/SmithingTransformRecipeBuilder$Result/advancementId +FD: net/minecraft/data/recipes/SmithingTransformRecipeBuilder$Result/f_266112_ net/minecraft/data/recipes/SmithingTransformRecipeBuilder$Result/base +FD: net/minecraft/data/recipes/SmithingTrimRecipeBuilder/f_265915_ net/minecraft/data/recipes/SmithingTrimRecipeBuilder/type +FD: net/minecraft/data/recipes/SmithingTrimRecipeBuilder/f_265957_ net/minecraft/data/recipes/SmithingTrimRecipeBuilder/advancement +FD: net/minecraft/data/recipes/SmithingTrimRecipeBuilder/f_266042_ net/minecraft/data/recipes/SmithingTrimRecipeBuilder/base +FD: net/minecraft/data/recipes/SmithingTrimRecipeBuilder/f_266046_ net/minecraft/data/recipes/SmithingTrimRecipeBuilder/addition +FD: net/minecraft/data/recipes/SmithingTrimRecipeBuilder/f_266051_ net/minecraft/data/recipes/SmithingTrimRecipeBuilder/template +FD: net/minecraft/data/recipes/SmithingTrimRecipeBuilder/f_266062_ net/minecraft/data/recipes/SmithingTrimRecipeBuilder/category +FD: net/minecraft/data/recipes/SmithingTrimRecipeBuilder$Result/f_265865_ net/minecraft/data/recipes/SmithingTrimRecipeBuilder$Result/template +FD: net/minecraft/data/recipes/SmithingTrimRecipeBuilder$Result/f_265882_ net/minecraft/data/recipes/SmithingTrimRecipeBuilder$Result/advancementId +FD: net/minecraft/data/recipes/SmithingTrimRecipeBuilder$Result/f_265961_ net/minecraft/data/recipes/SmithingTrimRecipeBuilder$Result/advancement +FD: net/minecraft/data/recipes/SmithingTrimRecipeBuilder$Result/f_265963_ net/minecraft/data/recipes/SmithingTrimRecipeBuilder$Result/id +FD: net/minecraft/data/recipes/SmithingTrimRecipeBuilder$Result/f_266016_ net/minecraft/data/recipes/SmithingTrimRecipeBuilder$Result/addition +FD: net/minecraft/data/recipes/SmithingTrimRecipeBuilder$Result/f_266032_ net/minecraft/data/recipes/SmithingTrimRecipeBuilder$Result/base +FD: net/minecraft/data/recipes/SmithingTrimRecipeBuilder$Result/f_266055_ net/minecraft/data/recipes/SmithingTrimRecipeBuilder$Result/type +FD: net/minecraft/data/recipes/SpecialRecipeBuilder/f_126354_ net/minecraft/data/recipes/SpecialRecipeBuilder/serializer +FD: net/minecraft/data/recipes/SpecialRecipeBuilder$1/f_126364_ net/minecraft/data/recipes/SpecialRecipeBuilder$1/val$id +FD: net/minecraft/data/recipes/SpecialRecipeBuilder$1/f_126365_ net/minecraft/data/recipes/SpecialRecipeBuilder$1/this$0 +FD: net/minecraft/data/recipes/packs/VanillaRecipeProvider/f_243671_ net/minecraft/data/recipes/packs/VanillaRecipeProvider/COAL_SMELTABLES +FD: net/minecraft/data/recipes/packs/VanillaRecipeProvider/f_243779_ net/minecraft/data/recipes/packs/VanillaRecipeProvider/IRON_SMELTABLES +FD: net/minecraft/data/recipes/packs/VanillaRecipeProvider/f_243908_ net/minecraft/data/recipes/packs/VanillaRecipeProvider/COPPER_SMELTABLES +FD: net/minecraft/data/recipes/packs/VanillaRecipeProvider/f_243974_ net/minecraft/data/recipes/packs/VanillaRecipeProvider/DIAMOND_SMELTABLES +FD: net/minecraft/data/recipes/packs/VanillaRecipeProvider/f_244369_ net/minecraft/data/recipes/packs/VanillaRecipeProvider/GOLD_SMELTABLES +FD: net/minecraft/data/recipes/packs/VanillaRecipeProvider/f_244430_ net/minecraft/data/recipes/packs/VanillaRecipeProvider/EMERALD_SMELTABLES +FD: net/minecraft/data/recipes/packs/VanillaRecipeProvider/f_244565_ net/minecraft/data/recipes/packs/VanillaRecipeProvider/REDSTONE_SMELTABLES +FD: net/minecraft/data/recipes/packs/VanillaRecipeProvider/f_244628_ net/minecraft/data/recipes/packs/VanillaRecipeProvider/LAPIS_SMELTABLES +FD: net/minecraft/data/registries/RegistriesDatapackGenerator/f_254654_ net/minecraft/data/registries/RegistriesDatapackGenerator/LOGGER +FD: net/minecraft/data/registries/RegistriesDatapackGenerator/f_254743_ net/minecraft/data/registries/RegistriesDatapackGenerator/output +FD: net/minecraft/data/registries/RegistriesDatapackGenerator/f_254747_ net/minecraft/data/registries/RegistriesDatapackGenerator/registries +FD: net/minecraft/data/registries/VanillaRegistries/f_254635_ net/minecraft/data/registries/VanillaRegistries/BUILDER +FD: net/minecraft/data/structures/NbtToSnbt/f_126421_ net/minecraft/data/structures/NbtToSnbt/LOGGER +FD: net/minecraft/data/structures/NbtToSnbt/f_243685_ net/minecraft/data/structures/NbtToSnbt/output +FD: net/minecraft/data/structures/NbtToSnbt/f_243763_ net/minecraft/data/structures/NbtToSnbt/inputFolders +FD: net/minecraft/data/structures/SnbtToNbt/f_126443_ net/minecraft/data/structures/SnbtToNbt/LOGGER +FD: net/minecraft/data/structures/SnbtToNbt/f_126445_ net/minecraft/data/structures/SnbtToNbt/filters +FD: net/minecraft/data/structures/SnbtToNbt/f_176815_ net/minecraft/data/structures/SnbtToNbt/DUMP_SNBT_TO +FD: net/minecraft/data/structures/SnbtToNbt/f_243879_ net/minecraft/data/structures/SnbtToNbt/output +FD: net/minecraft/data/structures/SnbtToNbt/f_244258_ net/minecraft/data/structures/SnbtToNbt/inputFolders +FD: net/minecraft/data/structures/SnbtToNbt$TaskResult/f_126482_ net/minecraft/data/structures/SnbtToNbt$TaskResult/name +FD: net/minecraft/data/structures/SnbtToNbt$TaskResult/f_126483_ net/minecraft/data/structures/SnbtToNbt$TaskResult/payload +FD: net/minecraft/data/structures/SnbtToNbt$TaskResult/f_126484_ net/minecraft/data/structures/SnbtToNbt$TaskResult/snbtPayload +FD: net/minecraft/data/structures/SnbtToNbt$TaskResult/f_126485_ net/minecraft/data/structures/SnbtToNbt$TaskResult/hash +FD: net/minecraft/data/structures/StructureUpdater/f_126499_ net/minecraft/data/structures/StructureUpdater/LOGGER +FD: net/minecraft/data/tags/GameEventTagsProvider/f_236425_ net/minecraft/data/tags/GameEventTagsProvider/VIBRATIONS_EXCEPT_FLAP +FD: net/minecraft/data/tags/IntrinsicHolderTagsProvider/f_254687_ net/minecraft/data/tags/IntrinsicHolderTagsProvider/keyExtractor +FD: net/minecraft/data/tags/IntrinsicHolderTagsProvider$IntrinsicTagAppender/f_254707_ net/minecraft/data/tags/IntrinsicHolderTagsProvider$IntrinsicTagAppender/keyExtractor +FD: net/minecraft/data/tags/ItemTagsProvider/f_126528_ net/minecraft/data/tags/ItemTagsProvider/blockTags +FD: net/minecraft/data/tags/ItemTagsProvider/f_273814_ net/minecraft/data/tags/ItemTagsProvider/tagsToCopy +FD: net/minecraft/data/tags/TagsProvider/f_126541_ net/minecraft/data/tags/TagsProvider/LOGGER +FD: net/minecraft/data/tags/TagsProvider/f_126543_ net/minecraft/data/tags/TagsProvider/builders +FD: net/minecraft/data/tags/TagsProvider/f_236439_ net/minecraft/data/tags/TagsProvider/pathProvider +FD: net/minecraft/data/tags/TagsProvider/f_254716_ net/minecraft/data/tags/TagsProvider/registryKey +FD: net/minecraft/data/tags/TagsProvider/f_273855_ net/minecraft/data/tags/TagsProvider/parentProvider +FD: net/minecraft/data/tags/TagsProvider/f_275752_ net/minecraft/data/tags/TagsProvider/lookupProvider +FD: net/minecraft/data/tags/TagsProvider/f_275754_ net/minecraft/data/tags/TagsProvider/contentsDone +FD: net/minecraft/data/tags/TagsProvider$1CombinedData/f_273819_ net/minecraft/data/tags/TagsProvider$1CombinedData/parent +FD: net/minecraft/data/tags/TagsProvider$1CombinedData/f_273893_ net/minecraft/data/tags/TagsProvider$1CombinedData/contents +FD: net/minecraft/data/tags/TagsProvider$TagAppender/f_126568_ net/minecraft/data/tags/TagsProvider$TagAppender/builder +FD: net/minecraft/data/worldgen/AncientCityStructurePieces/f_236459_ net/minecraft/data/worldgen/AncientCityStructurePieces/START +FD: net/minecraft/data/worldgen/BastionPieces/f_126673_ net/minecraft/data/worldgen/BastionPieces/START +FD: net/minecraft/data/worldgen/Carvers/f_126848_ net/minecraft/data/worldgen/Carvers/CAVE +FD: net/minecraft/data/worldgen/Carvers/f_126849_ net/minecraft/data/worldgen/Carvers/CANYON +FD: net/minecraft/data/worldgen/Carvers/f_126853_ net/minecraft/data/worldgen/Carvers/NETHER_CAVE +FD: net/minecraft/data/worldgen/Carvers/f_194741_ net/minecraft/data/worldgen/Carvers/CAVE_EXTRA_UNDERGROUND +FD: net/minecraft/data/worldgen/DesertVillagePools/f_126858_ net/minecraft/data/worldgen/DesertVillagePools/START +FD: net/minecraft/data/worldgen/DesertVillagePools/f_254709_ net/minecraft/data/worldgen/DesertVillagePools/ZOMBIE_TERMINATORS_KEY +FD: net/minecraft/data/worldgen/DesertVillagePools/f_254714_ net/minecraft/data/worldgen/DesertVillagePools/TERMINATORS_KEY +FD: net/minecraft/data/worldgen/NoiseData/f_254655_ net/minecraft/data/worldgen/NoiseData/DEFAULT_SHIFT +FD: net/minecraft/data/worldgen/PillagerOutpostPools/f_127180_ net/minecraft/data/worldgen/PillagerOutpostPools/START +FD: net/minecraft/data/worldgen/PlainVillagePools/f_127183_ net/minecraft/data/worldgen/PlainVillagePools/START +FD: net/minecraft/data/worldgen/PlainVillagePools/f_254748_ net/minecraft/data/worldgen/PlainVillagePools/TERMINATORS_KEY +FD: net/minecraft/data/worldgen/Pools/f_127186_ net/minecraft/data/worldgen/Pools/EMPTY +FD: net/minecraft/data/worldgen/ProcessorLists/f_127192_ net/minecraft/data/worldgen/ProcessorLists/BRIDGE +FD: net/minecraft/data/worldgen/ProcessorLists/f_127193_ net/minecraft/data/worldgen/ProcessorLists/ROOF +FD: net/minecraft/data/worldgen/ProcessorLists/f_127194_ net/minecraft/data/worldgen/ProcessorLists/HIGH_WALL +FD: net/minecraft/data/worldgen/ProcessorLists/f_127195_ net/minecraft/data/worldgen/ProcessorLists/HIGH_RAMPART +FD: net/minecraft/data/worldgen/ProcessorLists/f_127198_ net/minecraft/data/worldgen/ProcessorLists/EMPTY +FD: net/minecraft/data/worldgen/ProcessorLists/f_127199_ net/minecraft/data/worldgen/ProcessorLists/ZOMBIE_PLAINS +FD: net/minecraft/data/worldgen/ProcessorLists/f_127200_ net/minecraft/data/worldgen/ProcessorLists/ZOMBIE_SAVANNA +FD: net/minecraft/data/worldgen/ProcessorLists/f_127201_ net/minecraft/data/worldgen/ProcessorLists/ZOMBIE_SNOWY +FD: net/minecraft/data/worldgen/ProcessorLists/f_127202_ net/minecraft/data/worldgen/ProcessorLists/ZOMBIE_TAIGA +FD: net/minecraft/data/worldgen/ProcessorLists/f_127203_ net/minecraft/data/worldgen/ProcessorLists/ZOMBIE_DESERT +FD: net/minecraft/data/worldgen/ProcessorLists/f_127204_ net/minecraft/data/worldgen/ProcessorLists/MOSSIFY_10_PERCENT +FD: net/minecraft/data/worldgen/ProcessorLists/f_127205_ net/minecraft/data/worldgen/ProcessorLists/MOSSIFY_20_PERCENT +FD: net/minecraft/data/worldgen/ProcessorLists/f_127206_ net/minecraft/data/worldgen/ProcessorLists/MOSSIFY_70_PERCENT +FD: net/minecraft/data/worldgen/ProcessorLists/f_127207_ net/minecraft/data/worldgen/ProcessorLists/STREET_PLAINS +FD: net/minecraft/data/worldgen/ProcessorLists/f_127208_ net/minecraft/data/worldgen/ProcessorLists/STREET_SAVANNA +FD: net/minecraft/data/worldgen/ProcessorLists/f_127209_ net/minecraft/data/worldgen/ProcessorLists/STREET_SNOWY_OR_TAIGA +FD: net/minecraft/data/worldgen/ProcessorLists/f_127210_ net/minecraft/data/worldgen/ProcessorLists/FARM_PLAINS +FD: net/minecraft/data/worldgen/ProcessorLists/f_127211_ net/minecraft/data/worldgen/ProcessorLists/FARM_SAVANNA +FD: net/minecraft/data/worldgen/ProcessorLists/f_127212_ net/minecraft/data/worldgen/ProcessorLists/FARM_SNOWY +FD: net/minecraft/data/worldgen/ProcessorLists/f_127213_ net/minecraft/data/worldgen/ProcessorLists/FARM_TAIGA +FD: net/minecraft/data/worldgen/ProcessorLists/f_127214_ net/minecraft/data/worldgen/ProcessorLists/FARM_DESERT +FD: net/minecraft/data/worldgen/ProcessorLists/f_127215_ net/minecraft/data/worldgen/ProcessorLists/OUTPOST_ROT +FD: net/minecraft/data/worldgen/ProcessorLists/f_127216_ net/minecraft/data/worldgen/ProcessorLists/BOTTOM_RAMPART +FD: net/minecraft/data/worldgen/ProcessorLists/f_127217_ net/minecraft/data/worldgen/ProcessorLists/TREASURE_ROOMS +FD: net/minecraft/data/worldgen/ProcessorLists/f_127218_ net/minecraft/data/worldgen/ProcessorLists/HOUSING +FD: net/minecraft/data/worldgen/ProcessorLists/f_127219_ net/minecraft/data/worldgen/ProcessorLists/SIDE_WALL_DEGRADATION +FD: net/minecraft/data/worldgen/ProcessorLists/f_127220_ net/minecraft/data/worldgen/ProcessorLists/STABLE_DEGRADATION +FD: net/minecraft/data/worldgen/ProcessorLists/f_127221_ net/minecraft/data/worldgen/ProcessorLists/BASTION_GENERIC_DEGRADATION +FD: net/minecraft/data/worldgen/ProcessorLists/f_127222_ net/minecraft/data/worldgen/ProcessorLists/RAMPART_DEGRADATION +FD: net/minecraft/data/worldgen/ProcessorLists/f_127223_ net/minecraft/data/worldgen/ProcessorLists/ENTRANCE_REPLACEMENT +FD: net/minecraft/data/worldgen/ProcessorLists/f_177022_ net/minecraft/data/worldgen/ProcessorLists/FOSSIL_ROT +FD: net/minecraft/data/worldgen/ProcessorLists/f_177023_ net/minecraft/data/worldgen/ProcessorLists/FOSSIL_COAL +FD: net/minecraft/data/worldgen/ProcessorLists/f_177024_ net/minecraft/data/worldgen/ProcessorLists/FOSSIL_DIAMONDS +FD: net/minecraft/data/worldgen/ProcessorLists/f_236493_ net/minecraft/data/worldgen/ProcessorLists/ANCIENT_CITY_START_DEGRADATION +FD: net/minecraft/data/worldgen/ProcessorLists/f_236494_ net/minecraft/data/worldgen/ProcessorLists/ANCIENT_CITY_GENERIC_DEGRADATION +FD: net/minecraft/data/worldgen/ProcessorLists/f_236495_ net/minecraft/data/worldgen/ProcessorLists/ANCIENT_CITY_WALLS_DEGRADATION +FD: net/minecraft/data/worldgen/ProcessorLists/f_279575_ net/minecraft/data/worldgen/ProcessorLists/TRAIL_RUINS_ROADS_ARCHAEOLOGY +FD: net/minecraft/data/worldgen/ProcessorLists/f_279605_ net/minecraft/data/worldgen/ProcessorLists/TRAIL_RUINS_TOWER_TOP_ARCHAEOLOGY +FD: net/minecraft/data/worldgen/ProcessorLists/f_279666_ net/minecraft/data/worldgen/ProcessorLists/TRAIL_RUINS_HOUSES_ARCHAEOLOGY +FD: net/minecraft/data/worldgen/SavannaVillagePools/f_127228_ net/minecraft/data/worldgen/SavannaVillagePools/START +FD: net/minecraft/data/worldgen/SavannaVillagePools/f_254638_ net/minecraft/data/worldgen/SavannaVillagePools/ZOMBIE_TERMINATORS_KEY +FD: net/minecraft/data/worldgen/SavannaVillagePools/f_254665_ net/minecraft/data/worldgen/SavannaVillagePools/TERMINATORS_KEY +FD: net/minecraft/data/worldgen/SnowyVillagePools/f_127231_ net/minecraft/data/worldgen/SnowyVillagePools/START +FD: net/minecraft/data/worldgen/SnowyVillagePools/f_254720_ net/minecraft/data/worldgen/SnowyVillagePools/TERMINATORS_KEY +FD: net/minecraft/data/worldgen/SurfaceRuleData/f_194771_ net/minecraft/data/worldgen/SurfaceRuleData/SOUL_SOIL +FD: net/minecraft/data/worldgen/SurfaceRuleData/f_194772_ net/minecraft/data/worldgen/SurfaceRuleData/BASALT +FD: net/minecraft/data/worldgen/SurfaceRuleData/f_194773_ net/minecraft/data/worldgen/SurfaceRuleData/BLACKSTONE +FD: net/minecraft/data/worldgen/SurfaceRuleData/f_194774_ net/minecraft/data/worldgen/SurfaceRuleData/WARPED_WART_BLOCK +FD: net/minecraft/data/worldgen/SurfaceRuleData/f_194775_ net/minecraft/data/worldgen/SurfaceRuleData/WARPED_NYLIUM +FD: net/minecraft/data/worldgen/SurfaceRuleData/f_194776_ net/minecraft/data/worldgen/SurfaceRuleData/NETHER_WART_BLOCK +FD: net/minecraft/data/worldgen/SurfaceRuleData/f_194777_ net/minecraft/data/worldgen/SurfaceRuleData/CRIMSON_NYLIUM +FD: net/minecraft/data/worldgen/SurfaceRuleData/f_194778_ net/minecraft/data/worldgen/SurfaceRuleData/ENDSTONE +FD: net/minecraft/data/worldgen/SurfaceRuleData/f_194779_ net/minecraft/data/worldgen/SurfaceRuleData/AIR +FD: net/minecraft/data/worldgen/SurfaceRuleData/f_194780_ net/minecraft/data/worldgen/SurfaceRuleData/BEDROCK +FD: net/minecraft/data/worldgen/SurfaceRuleData/f_194781_ net/minecraft/data/worldgen/SurfaceRuleData/WHITE_TERRACOTTA +FD: net/minecraft/data/worldgen/SurfaceRuleData/f_194782_ net/minecraft/data/worldgen/SurfaceRuleData/ORANGE_TERRACOTTA +FD: net/minecraft/data/worldgen/SurfaceRuleData/f_194783_ net/minecraft/data/worldgen/SurfaceRuleData/TERRACOTTA +FD: net/minecraft/data/worldgen/SurfaceRuleData/f_194784_ net/minecraft/data/worldgen/SurfaceRuleData/RED_SAND +FD: net/minecraft/data/worldgen/SurfaceRuleData/f_194785_ net/minecraft/data/worldgen/SurfaceRuleData/RED_SANDSTONE +FD: net/minecraft/data/worldgen/SurfaceRuleData/f_194786_ net/minecraft/data/worldgen/SurfaceRuleData/STONE +FD: net/minecraft/data/worldgen/SurfaceRuleData/f_194787_ net/minecraft/data/worldgen/SurfaceRuleData/DEEPSLATE +FD: net/minecraft/data/worldgen/SurfaceRuleData/f_194788_ net/minecraft/data/worldgen/SurfaceRuleData/DIRT +FD: net/minecraft/data/worldgen/SurfaceRuleData/f_194789_ net/minecraft/data/worldgen/SurfaceRuleData/PODZOL +FD: net/minecraft/data/worldgen/SurfaceRuleData/f_194790_ net/minecraft/data/worldgen/SurfaceRuleData/COARSE_DIRT +FD: net/minecraft/data/worldgen/SurfaceRuleData/f_194791_ net/minecraft/data/worldgen/SurfaceRuleData/MYCELIUM +FD: net/minecraft/data/worldgen/SurfaceRuleData/f_194792_ net/minecraft/data/worldgen/SurfaceRuleData/GRASS_BLOCK +FD: net/minecraft/data/worldgen/SurfaceRuleData/f_194793_ net/minecraft/data/worldgen/SurfaceRuleData/CALCITE +FD: net/minecraft/data/worldgen/SurfaceRuleData/f_194794_ net/minecraft/data/worldgen/SurfaceRuleData/GRAVEL +FD: net/minecraft/data/worldgen/SurfaceRuleData/f_194795_ net/minecraft/data/worldgen/SurfaceRuleData/SAND +FD: net/minecraft/data/worldgen/SurfaceRuleData/f_194796_ net/minecraft/data/worldgen/SurfaceRuleData/SANDSTONE +FD: net/minecraft/data/worldgen/SurfaceRuleData/f_194797_ net/minecraft/data/worldgen/SurfaceRuleData/PACKED_ICE +FD: net/minecraft/data/worldgen/SurfaceRuleData/f_194798_ net/minecraft/data/worldgen/SurfaceRuleData/SNOW_BLOCK +FD: net/minecraft/data/worldgen/SurfaceRuleData/f_194799_ net/minecraft/data/worldgen/SurfaceRuleData/POWDER_SNOW +FD: net/minecraft/data/worldgen/SurfaceRuleData/f_194800_ net/minecraft/data/worldgen/SurfaceRuleData/ICE +FD: net/minecraft/data/worldgen/SurfaceRuleData/f_194801_ net/minecraft/data/worldgen/SurfaceRuleData/WATER +FD: net/minecraft/data/worldgen/SurfaceRuleData/f_194802_ net/minecraft/data/worldgen/SurfaceRuleData/LAVA +FD: net/minecraft/data/worldgen/SurfaceRuleData/f_194803_ net/minecraft/data/worldgen/SurfaceRuleData/NETHERRACK +FD: net/minecraft/data/worldgen/SurfaceRuleData/f_194804_ net/minecraft/data/worldgen/SurfaceRuleData/SOUL_SAND +FD: net/minecraft/data/worldgen/SurfaceRuleData/f_236556_ net/minecraft/data/worldgen/SurfaceRuleData/MUD +FD: net/minecraft/data/worldgen/TaigaVillagePools/f_127303_ net/minecraft/data/worldgen/TaigaVillagePools/START +FD: net/minecraft/data/worldgen/TaigaVillagePools/f_254670_ net/minecraft/data/worldgen/TaigaVillagePools/TERMINATORS_KEY +FD: net/minecraft/data/worldgen/TerrainProvider/f_236557_ net/minecraft/data/worldgen/TerrainProvider/DEEP_OCEAN_CONTINENTALNESS +FD: net/minecraft/data/worldgen/TerrainProvider/f_236558_ net/minecraft/data/worldgen/TerrainProvider/OCEAN_CONTINENTALNESS +FD: net/minecraft/data/worldgen/TerrainProvider/f_236559_ net/minecraft/data/worldgen/TerrainProvider/PLAINS_CONTINENTALNESS +FD: net/minecraft/data/worldgen/TerrainProvider/f_236560_ net/minecraft/data/worldgen/TerrainProvider/BEACH_CONTINENTALNESS +FD: net/minecraft/data/worldgen/TerrainProvider/f_236561_ net/minecraft/data/worldgen/TerrainProvider/NO_TRANSFORM +FD: net/minecraft/data/worldgen/TerrainProvider/f_236562_ net/minecraft/data/worldgen/TerrainProvider/AMPLIFIED_OFFSET +FD: net/minecraft/data/worldgen/TerrainProvider/f_236563_ net/minecraft/data/worldgen/TerrainProvider/AMPLIFIED_FACTOR +FD: net/minecraft/data/worldgen/TerrainProvider/f_236564_ net/minecraft/data/worldgen/TerrainProvider/AMPLIFIED_JAGGEDNESS +FD: net/minecraft/data/worldgen/TrailRuinsStructurePools/f_276659_ net/minecraft/data/worldgen/TrailRuinsStructurePools/START +FD: net/minecraft/data/worldgen/biome/OverworldBiomes/f_194836_ net/minecraft/data/worldgen/biome/OverworldBiomes/NORMAL_WATER_COLOR +FD: net/minecraft/data/worldgen/biome/OverworldBiomes/f_194837_ net/minecraft/data/worldgen/biome/OverworldBiomes/NORMAL_WATER_FOG_COLOR +FD: net/minecraft/data/worldgen/biome/OverworldBiomes/f_194838_ net/minecraft/data/worldgen/biome/OverworldBiomes/OVERWORLD_FOG_COLOR +FD: net/minecraft/data/worldgen/biome/OverworldBiomes/f_194839_ net/minecraft/data/worldgen/biome/OverworldBiomes/NORMAL_MUSIC +FD: net/minecraft/data/worldgen/features/AquaticFeatures/f_194925_ net/minecraft/data/worldgen/features/AquaticFeatures/SEAGRASS_SHORT +FD: net/minecraft/data/worldgen/features/AquaticFeatures/f_194926_ net/minecraft/data/worldgen/features/AquaticFeatures/SEAGRASS_SLIGHTLY_LESS_SHORT +FD: net/minecraft/data/worldgen/features/AquaticFeatures/f_194927_ net/minecraft/data/worldgen/features/AquaticFeatures/SEAGRASS_MID +FD: net/minecraft/data/worldgen/features/AquaticFeatures/f_194928_ net/minecraft/data/worldgen/features/AquaticFeatures/SEAGRASS_TALL +FD: net/minecraft/data/worldgen/features/AquaticFeatures/f_194929_ net/minecraft/data/worldgen/features/AquaticFeatures/SEA_PICKLE +FD: net/minecraft/data/worldgen/features/AquaticFeatures/f_194930_ net/minecraft/data/worldgen/features/AquaticFeatures/SEAGRASS_SIMPLE +FD: net/minecraft/data/worldgen/features/AquaticFeatures/f_194931_ net/minecraft/data/worldgen/features/AquaticFeatures/KELP +FD: net/minecraft/data/worldgen/features/AquaticFeatures/f_194932_ net/minecraft/data/worldgen/features/AquaticFeatures/WARM_OCEAN_VEGETATION +FD: net/minecraft/data/worldgen/features/CaveFeatures/f_194938_ net/minecraft/data/worldgen/features/CaveFeatures/MONSTER_ROOM +FD: net/minecraft/data/worldgen/features/CaveFeatures/f_194939_ net/minecraft/data/worldgen/features/CaveFeatures/FOSSIL_COAL +FD: net/minecraft/data/worldgen/features/CaveFeatures/f_194940_ net/minecraft/data/worldgen/features/CaveFeatures/FOSSIL_DIAMONDS +FD: net/minecraft/data/worldgen/features/CaveFeatures/f_194941_ net/minecraft/data/worldgen/features/CaveFeatures/DRIPSTONE_CLUSTER +FD: net/minecraft/data/worldgen/features/CaveFeatures/f_194942_ net/minecraft/data/worldgen/features/CaveFeatures/LARGE_DRIPSTONE +FD: net/minecraft/data/worldgen/features/CaveFeatures/f_194943_ net/minecraft/data/worldgen/features/CaveFeatures/POINTED_DRIPSTONE +FD: net/minecraft/data/worldgen/features/CaveFeatures/f_194944_ net/minecraft/data/worldgen/features/CaveFeatures/UNDERWATER_MAGMA +FD: net/minecraft/data/worldgen/features/CaveFeatures/f_194945_ net/minecraft/data/worldgen/features/CaveFeatures/GLOW_LICHEN +FD: net/minecraft/data/worldgen/features/CaveFeatures/f_194946_ net/minecraft/data/worldgen/features/CaveFeatures/ROOTED_AZALEA_TREE +FD: net/minecraft/data/worldgen/features/CaveFeatures/f_194947_ net/minecraft/data/worldgen/features/CaveFeatures/CAVE_VINE +FD: net/minecraft/data/worldgen/features/CaveFeatures/f_194948_ net/minecraft/data/worldgen/features/CaveFeatures/CAVE_VINE_IN_MOSS +FD: net/minecraft/data/worldgen/features/CaveFeatures/f_194949_ net/minecraft/data/worldgen/features/CaveFeatures/MOSS_VEGETATION +FD: net/minecraft/data/worldgen/features/CaveFeatures/f_194950_ net/minecraft/data/worldgen/features/CaveFeatures/MOSS_PATCH +FD: net/minecraft/data/worldgen/features/CaveFeatures/f_194951_ net/minecraft/data/worldgen/features/CaveFeatures/MOSS_PATCH_BONEMEAL +FD: net/minecraft/data/worldgen/features/CaveFeatures/f_194952_ net/minecraft/data/worldgen/features/CaveFeatures/DRIPLEAF +FD: net/minecraft/data/worldgen/features/CaveFeatures/f_194953_ net/minecraft/data/worldgen/features/CaveFeatures/CLAY_WITH_DRIPLEAVES +FD: net/minecraft/data/worldgen/features/CaveFeatures/f_194954_ net/minecraft/data/worldgen/features/CaveFeatures/CLAY_POOL_WITH_DRIPLEAVES +FD: net/minecraft/data/worldgen/features/CaveFeatures/f_194955_ net/minecraft/data/worldgen/features/CaveFeatures/LUSH_CAVES_CLAY +FD: net/minecraft/data/worldgen/features/CaveFeatures/f_194956_ net/minecraft/data/worldgen/features/CaveFeatures/MOSS_PATCH_CEILING +FD: net/minecraft/data/worldgen/features/CaveFeatures/f_194957_ net/minecraft/data/worldgen/features/CaveFeatures/SPORE_BLOSSOM +FD: net/minecraft/data/worldgen/features/CaveFeatures/f_194958_ net/minecraft/data/worldgen/features/CaveFeatures/AMETHYST_GEODE +FD: net/minecraft/data/worldgen/features/CaveFeatures/f_236674_ net/minecraft/data/worldgen/features/CaveFeatures/SCULK_PATCH_DEEP_DARK +FD: net/minecraft/data/worldgen/features/CaveFeatures/f_236675_ net/minecraft/data/worldgen/features/CaveFeatures/SCULK_PATCH_ANCIENT_CITY +FD: net/minecraft/data/worldgen/features/CaveFeatures/f_236676_ net/minecraft/data/worldgen/features/CaveFeatures/SCULK_VEIN +FD: net/minecraft/data/worldgen/features/EndFeatures/f_194982_ net/minecraft/data/worldgen/features/EndFeatures/END_SPIKE +FD: net/minecraft/data/worldgen/features/EndFeatures/f_194983_ net/minecraft/data/worldgen/features/EndFeatures/END_GATEWAY_RETURN +FD: net/minecraft/data/worldgen/features/EndFeatures/f_194984_ net/minecraft/data/worldgen/features/EndFeatures/END_GATEWAY_DELAYED +FD: net/minecraft/data/worldgen/features/EndFeatures/f_194985_ net/minecraft/data/worldgen/features/EndFeatures/CHORUS_PLANT +FD: net/minecraft/data/worldgen/features/EndFeatures/f_194986_ net/minecraft/data/worldgen/features/EndFeatures/END_ISLAND +FD: net/minecraft/data/worldgen/features/MiscOverworldFeatures/f_195010_ net/minecraft/data/worldgen/features/MiscOverworldFeatures/ICE_SPIKE +FD: net/minecraft/data/worldgen/features/MiscOverworldFeatures/f_195011_ net/minecraft/data/worldgen/features/MiscOverworldFeatures/ICE_PATCH +FD: net/minecraft/data/worldgen/features/MiscOverworldFeatures/f_195012_ net/minecraft/data/worldgen/features/MiscOverworldFeatures/FOREST_ROCK +FD: net/minecraft/data/worldgen/features/MiscOverworldFeatures/f_195013_ net/minecraft/data/worldgen/features/MiscOverworldFeatures/ICEBERG_PACKED +FD: net/minecraft/data/worldgen/features/MiscOverworldFeatures/f_195014_ net/minecraft/data/worldgen/features/MiscOverworldFeatures/ICEBERG_BLUE +FD: net/minecraft/data/worldgen/features/MiscOverworldFeatures/f_195015_ net/minecraft/data/worldgen/features/MiscOverworldFeatures/BLUE_ICE +FD: net/minecraft/data/worldgen/features/MiscOverworldFeatures/f_195016_ net/minecraft/data/worldgen/features/MiscOverworldFeatures/LAKE_LAVA +FD: net/minecraft/data/worldgen/features/MiscOverworldFeatures/f_195017_ net/minecraft/data/worldgen/features/MiscOverworldFeatures/DISK_CLAY +FD: net/minecraft/data/worldgen/features/MiscOverworldFeatures/f_195018_ net/minecraft/data/worldgen/features/MiscOverworldFeatures/DISK_GRAVEL +FD: net/minecraft/data/worldgen/features/MiscOverworldFeatures/f_195019_ net/minecraft/data/worldgen/features/MiscOverworldFeatures/DISK_SAND +FD: net/minecraft/data/worldgen/features/MiscOverworldFeatures/f_195020_ net/minecraft/data/worldgen/features/MiscOverworldFeatures/FREEZE_TOP_LAYER +FD: net/minecraft/data/worldgen/features/MiscOverworldFeatures/f_195021_ net/minecraft/data/worldgen/features/MiscOverworldFeatures/BONUS_CHEST +FD: net/minecraft/data/worldgen/features/MiscOverworldFeatures/f_195022_ net/minecraft/data/worldgen/features/MiscOverworldFeatures/VOID_START_PLATFORM +FD: net/minecraft/data/worldgen/features/MiscOverworldFeatures/f_195023_ net/minecraft/data/worldgen/features/MiscOverworldFeatures/DESERT_WELL +FD: net/minecraft/data/worldgen/features/MiscOverworldFeatures/f_195024_ net/minecraft/data/worldgen/features/MiscOverworldFeatures/SPRING_LAVA_OVERWORLD +FD: net/minecraft/data/worldgen/features/MiscOverworldFeatures/f_195025_ net/minecraft/data/worldgen/features/MiscOverworldFeatures/SPRING_LAVA_FROZEN +FD: net/minecraft/data/worldgen/features/MiscOverworldFeatures/f_195026_ net/minecraft/data/worldgen/features/MiscOverworldFeatures/SPRING_WATER +FD: net/minecraft/data/worldgen/features/MiscOverworldFeatures/f_236760_ net/minecraft/data/worldgen/features/MiscOverworldFeatures/DISK_GRASS +FD: net/minecraft/data/worldgen/features/NetherFeatures/f_195029_ net/minecraft/data/worldgen/features/NetherFeatures/DELTA +FD: net/minecraft/data/worldgen/features/NetherFeatures/f_195030_ net/minecraft/data/worldgen/features/NetherFeatures/SMALL_BASALT_COLUMNS +FD: net/minecraft/data/worldgen/features/NetherFeatures/f_195031_ net/minecraft/data/worldgen/features/NetherFeatures/LARGE_BASALT_COLUMNS +FD: net/minecraft/data/worldgen/features/NetherFeatures/f_195032_ net/minecraft/data/worldgen/features/NetherFeatures/BASALT_BLOBS +FD: net/minecraft/data/worldgen/features/NetherFeatures/f_195033_ net/minecraft/data/worldgen/features/NetherFeatures/BLACKSTONE_BLOBS +FD: net/minecraft/data/worldgen/features/NetherFeatures/f_195034_ net/minecraft/data/worldgen/features/NetherFeatures/GLOWSTONE_EXTRA +FD: net/minecraft/data/worldgen/features/NetherFeatures/f_195036_ net/minecraft/data/worldgen/features/NetherFeatures/CRIMSON_FOREST_VEGETATION +FD: net/minecraft/data/worldgen/features/NetherFeatures/f_195037_ net/minecraft/data/worldgen/features/NetherFeatures/CRIMSON_FOREST_VEGETATION_BONEMEAL +FD: net/minecraft/data/worldgen/features/NetherFeatures/f_195039_ net/minecraft/data/worldgen/features/NetherFeatures/WARPED_FOREST_VEGETION +FD: net/minecraft/data/worldgen/features/NetherFeatures/f_195040_ net/minecraft/data/worldgen/features/NetherFeatures/WARPED_FOREST_VEGETATION_BONEMEAL +FD: net/minecraft/data/worldgen/features/NetherFeatures/f_195041_ net/minecraft/data/worldgen/features/NetherFeatures/NETHER_SPROUTS +FD: net/minecraft/data/worldgen/features/NetherFeatures/f_195042_ net/minecraft/data/worldgen/features/NetherFeatures/NETHER_SPROUTS_BONEMEAL +FD: net/minecraft/data/worldgen/features/NetherFeatures/f_195043_ net/minecraft/data/worldgen/features/NetherFeatures/TWISTING_VINES +FD: net/minecraft/data/worldgen/features/NetherFeatures/f_195044_ net/minecraft/data/worldgen/features/NetherFeatures/TWISTING_VINES_BONEMEAL +FD: net/minecraft/data/worldgen/features/NetherFeatures/f_195045_ net/minecraft/data/worldgen/features/NetherFeatures/WEEPING_VINES +FD: net/minecraft/data/worldgen/features/NetherFeatures/f_195046_ net/minecraft/data/worldgen/features/NetherFeatures/PATCH_CRIMSON_ROOTS +FD: net/minecraft/data/worldgen/features/NetherFeatures/f_195047_ net/minecraft/data/worldgen/features/NetherFeatures/BASALT_PILLAR +FD: net/minecraft/data/worldgen/features/NetherFeatures/f_195048_ net/minecraft/data/worldgen/features/NetherFeatures/SPRING_LAVA_NETHER +FD: net/minecraft/data/worldgen/features/NetherFeatures/f_195049_ net/minecraft/data/worldgen/features/NetherFeatures/SPRING_NETHER_CLOSED +FD: net/minecraft/data/worldgen/features/NetherFeatures/f_195050_ net/minecraft/data/worldgen/features/NetherFeatures/SPRING_NETHER_OPEN +FD: net/minecraft/data/worldgen/features/NetherFeatures/f_195051_ net/minecraft/data/worldgen/features/NetherFeatures/PATCH_FIRE +FD: net/minecraft/data/worldgen/features/NetherFeatures/f_195052_ net/minecraft/data/worldgen/features/NetherFeatures/PATCH_SOUL_FIRE +FD: net/minecraft/data/worldgen/features/OreFeatures/f_195055_ net/minecraft/data/worldgen/features/OreFeatures/ORE_IRON_SMALL +FD: net/minecraft/data/worldgen/features/OreFeatures/f_195056_ net/minecraft/data/worldgen/features/OreFeatures/ORE_GOLD +FD: net/minecraft/data/worldgen/features/OreFeatures/f_195057_ net/minecraft/data/worldgen/features/OreFeatures/ORE_GOLD_BURIED +FD: net/minecraft/data/worldgen/features/OreFeatures/f_195058_ net/minecraft/data/worldgen/features/OreFeatures/ORE_REDSTONE +FD: net/minecraft/data/worldgen/features/OreFeatures/f_195059_ net/minecraft/data/worldgen/features/OreFeatures/ORE_DIAMOND_SMALL +FD: net/minecraft/data/worldgen/features/OreFeatures/f_195060_ net/minecraft/data/worldgen/features/OreFeatures/ORE_DIAMOND_LARGE +FD: net/minecraft/data/worldgen/features/OreFeatures/f_195061_ net/minecraft/data/worldgen/features/OreFeatures/ORE_DIAMOND_BURIED +FD: net/minecraft/data/worldgen/features/OreFeatures/f_195062_ net/minecraft/data/worldgen/features/OreFeatures/ORE_LAPIS +FD: net/minecraft/data/worldgen/features/OreFeatures/f_195063_ net/minecraft/data/worldgen/features/OreFeatures/ORE_LAPIS_BURIED +FD: net/minecraft/data/worldgen/features/OreFeatures/f_195064_ net/minecraft/data/worldgen/features/OreFeatures/ORE_INFESTED +FD: net/minecraft/data/worldgen/features/OreFeatures/f_195065_ net/minecraft/data/worldgen/features/OreFeatures/ORE_EMERALD +FD: net/minecraft/data/worldgen/features/OreFeatures/f_195066_ net/minecraft/data/worldgen/features/OreFeatures/ORE_ANCIENT_DEBRIS_LARGE +FD: net/minecraft/data/worldgen/features/OreFeatures/f_195067_ net/minecraft/data/worldgen/features/OreFeatures/ORE_ANCIENT_DEBRIS_SMALL +FD: net/minecraft/data/worldgen/features/OreFeatures/f_195068_ net/minecraft/data/worldgen/features/OreFeatures/ORE_COPPPER_SMALL +FD: net/minecraft/data/worldgen/features/OreFeatures/f_195069_ net/minecraft/data/worldgen/features/OreFeatures/ORE_COPPER_LARGE +FD: net/minecraft/data/worldgen/features/OreFeatures/f_195070_ net/minecraft/data/worldgen/features/OreFeatures/ORE_CLAY +FD: net/minecraft/data/worldgen/features/OreFeatures/f_195082_ net/minecraft/data/worldgen/features/OreFeatures/ORE_MAGMA +FD: net/minecraft/data/worldgen/features/OreFeatures/f_195083_ net/minecraft/data/worldgen/features/OreFeatures/ORE_SOUL_SAND +FD: net/minecraft/data/worldgen/features/OreFeatures/f_195084_ net/minecraft/data/worldgen/features/OreFeatures/ORE_NETHER_GOLD +FD: net/minecraft/data/worldgen/features/OreFeatures/f_195085_ net/minecraft/data/worldgen/features/OreFeatures/ORE_QUARTZ +FD: net/minecraft/data/worldgen/features/OreFeatures/f_195086_ net/minecraft/data/worldgen/features/OreFeatures/ORE_GRAVEL_NETHER +FD: net/minecraft/data/worldgen/features/OreFeatures/f_195087_ net/minecraft/data/worldgen/features/OreFeatures/ORE_BLACKSTONE +FD: net/minecraft/data/worldgen/features/OreFeatures/f_195088_ net/minecraft/data/worldgen/features/OreFeatures/ORE_DIRT +FD: net/minecraft/data/worldgen/features/OreFeatures/f_195089_ net/minecraft/data/worldgen/features/OreFeatures/ORE_GRAVEL +FD: net/minecraft/data/worldgen/features/OreFeatures/f_195090_ net/minecraft/data/worldgen/features/OreFeatures/ORE_GRANITE +FD: net/minecraft/data/worldgen/features/OreFeatures/f_195091_ net/minecraft/data/worldgen/features/OreFeatures/ORE_DIORITE +FD: net/minecraft/data/worldgen/features/OreFeatures/f_195092_ net/minecraft/data/worldgen/features/OreFeatures/ORE_ANDESITE +FD: net/minecraft/data/worldgen/features/OreFeatures/f_195093_ net/minecraft/data/worldgen/features/OreFeatures/ORE_TUFF +FD: net/minecraft/data/worldgen/features/OreFeatures/f_195094_ net/minecraft/data/worldgen/features/OreFeatures/ORE_COAL +FD: net/minecraft/data/worldgen/features/OreFeatures/f_195095_ net/minecraft/data/worldgen/features/OreFeatures/ORE_COAL_BURIED +FD: net/minecraft/data/worldgen/features/OreFeatures/f_195096_ net/minecraft/data/worldgen/features/OreFeatures/ORE_IRON +FD: net/minecraft/data/worldgen/features/PileFeatures/f_195099_ net/minecraft/data/worldgen/features/PileFeatures/PILE_HAY +FD: net/minecraft/data/worldgen/features/PileFeatures/f_195100_ net/minecraft/data/worldgen/features/PileFeatures/PILE_MELON +FD: net/minecraft/data/worldgen/features/PileFeatures/f_195101_ net/minecraft/data/worldgen/features/PileFeatures/PILE_SNOW +FD: net/minecraft/data/worldgen/features/PileFeatures/f_195102_ net/minecraft/data/worldgen/features/PileFeatures/PILE_ICE +FD: net/minecraft/data/worldgen/features/PileFeatures/f_195103_ net/minecraft/data/worldgen/features/PileFeatures/PILE_PUMPKIN +FD: net/minecraft/data/worldgen/features/TreeFeatures/f_195106_ net/minecraft/data/worldgen/features/TreeFeatures/BIRCH_BEES_0002 +FD: net/minecraft/data/worldgen/features/TreeFeatures/f_195107_ net/minecraft/data/worldgen/features/TreeFeatures/BIRCH_BEES_002 +FD: net/minecraft/data/worldgen/features/TreeFeatures/f_195108_ net/minecraft/data/worldgen/features/TreeFeatures/BIRCH_BEES_005 +FD: net/minecraft/data/worldgen/features/TreeFeatures/f_195109_ net/minecraft/data/worldgen/features/TreeFeatures/FANCY_OAK_BEES_0002 +FD: net/minecraft/data/worldgen/features/TreeFeatures/f_195110_ net/minecraft/data/worldgen/features/TreeFeatures/FANCY_OAK_BEES_002 +FD: net/minecraft/data/worldgen/features/TreeFeatures/f_195111_ net/minecraft/data/worldgen/features/TreeFeatures/FANCY_OAK_BEES_005 +FD: net/minecraft/data/worldgen/features/TreeFeatures/f_195112_ net/minecraft/data/worldgen/features/TreeFeatures/FANCY_OAK_BEES +FD: net/minecraft/data/worldgen/features/TreeFeatures/f_195117_ net/minecraft/data/worldgen/features/TreeFeatures/CRIMSON_FUNGUS +FD: net/minecraft/data/worldgen/features/TreeFeatures/f_195118_ net/minecraft/data/worldgen/features/TreeFeatures/CRIMSON_FUNGUS_PLANTED +FD: net/minecraft/data/worldgen/features/TreeFeatures/f_195119_ net/minecraft/data/worldgen/features/TreeFeatures/WARPED_FUNGUS +FD: net/minecraft/data/worldgen/features/TreeFeatures/f_195120_ net/minecraft/data/worldgen/features/TreeFeatures/WARPED_FUNGUS_PLANTED +FD: net/minecraft/data/worldgen/features/TreeFeatures/f_195121_ net/minecraft/data/worldgen/features/TreeFeatures/HUGE_BROWN_MUSHROOM +FD: net/minecraft/data/worldgen/features/TreeFeatures/f_195122_ net/minecraft/data/worldgen/features/TreeFeatures/HUGE_RED_MUSHROOM +FD: net/minecraft/data/worldgen/features/TreeFeatures/f_195123_ net/minecraft/data/worldgen/features/TreeFeatures/OAK +FD: net/minecraft/data/worldgen/features/TreeFeatures/f_195124_ net/minecraft/data/worldgen/features/TreeFeatures/DARK_OAK +FD: net/minecraft/data/worldgen/features/TreeFeatures/f_195125_ net/minecraft/data/worldgen/features/TreeFeatures/BIRCH +FD: net/minecraft/data/worldgen/features/TreeFeatures/f_195126_ net/minecraft/data/worldgen/features/TreeFeatures/ACACIA +FD: net/minecraft/data/worldgen/features/TreeFeatures/f_195127_ net/minecraft/data/worldgen/features/TreeFeatures/SPRUCE +FD: net/minecraft/data/worldgen/features/TreeFeatures/f_195128_ net/minecraft/data/worldgen/features/TreeFeatures/PINE +FD: net/minecraft/data/worldgen/features/TreeFeatures/f_195129_ net/minecraft/data/worldgen/features/TreeFeatures/JUNGLE_TREE +FD: net/minecraft/data/worldgen/features/TreeFeatures/f_195130_ net/minecraft/data/worldgen/features/TreeFeatures/FANCY_OAK +FD: net/minecraft/data/worldgen/features/TreeFeatures/f_195131_ net/minecraft/data/worldgen/features/TreeFeatures/JUNGLE_TREE_NO_VINE +FD: net/minecraft/data/worldgen/features/TreeFeatures/f_195132_ net/minecraft/data/worldgen/features/TreeFeatures/MEGA_JUNGLE_TREE +FD: net/minecraft/data/worldgen/features/TreeFeatures/f_195133_ net/minecraft/data/worldgen/features/TreeFeatures/MEGA_SPRUCE +FD: net/minecraft/data/worldgen/features/TreeFeatures/f_195134_ net/minecraft/data/worldgen/features/TreeFeatures/MEGA_PINE +FD: net/minecraft/data/worldgen/features/TreeFeatures/f_195135_ net/minecraft/data/worldgen/features/TreeFeatures/SUPER_BIRCH_BEES_0002 +FD: net/minecraft/data/worldgen/features/TreeFeatures/f_195136_ net/minecraft/data/worldgen/features/TreeFeatures/SUPER_BIRCH_BEES +FD: net/minecraft/data/worldgen/features/TreeFeatures/f_195137_ net/minecraft/data/worldgen/features/TreeFeatures/SWAMP_OAK +FD: net/minecraft/data/worldgen/features/TreeFeatures/f_195138_ net/minecraft/data/worldgen/features/TreeFeatures/JUNGLE_BUSH +FD: net/minecraft/data/worldgen/features/TreeFeatures/f_195139_ net/minecraft/data/worldgen/features/TreeFeatures/AZALEA_TREE +FD: net/minecraft/data/worldgen/features/TreeFeatures/f_195140_ net/minecraft/data/worldgen/features/TreeFeatures/OAK_BEES_0002 +FD: net/minecraft/data/worldgen/features/TreeFeatures/f_195141_ net/minecraft/data/worldgen/features/TreeFeatures/OAK_BEES_002 +FD: net/minecraft/data/worldgen/features/TreeFeatures/f_195142_ net/minecraft/data/worldgen/features/TreeFeatures/OAK_BEES_005 +FD: net/minecraft/data/worldgen/features/TreeFeatures/f_236762_ net/minecraft/data/worldgen/features/TreeFeatures/MANGROVE +FD: net/minecraft/data/worldgen/features/TreeFeatures/f_236763_ net/minecraft/data/worldgen/features/TreeFeatures/TALL_MANGROVE +FD: net/minecraft/data/worldgen/features/TreeFeatures/f_271469_ net/minecraft/data/worldgen/features/TreeFeatures/CHERRY +FD: net/minecraft/data/worldgen/features/TreeFeatures/f_271485_ net/minecraft/data/worldgen/features/TreeFeatures/CHERRY_BEES_005 +FD: net/minecraft/data/worldgen/features/VegetationFeatures/f_195157_ net/minecraft/data/worldgen/features/VegetationFeatures/TREES_FLOWER_FOREST +FD: net/minecraft/data/worldgen/features/VegetationFeatures/f_195158_ net/minecraft/data/worldgen/features/VegetationFeatures/MEADOW_TREES +FD: net/minecraft/data/worldgen/features/VegetationFeatures/f_195159_ net/minecraft/data/worldgen/features/VegetationFeatures/TREES_TAIGA +FD: net/minecraft/data/worldgen/features/VegetationFeatures/f_195160_ net/minecraft/data/worldgen/features/VegetationFeatures/TREES_GROVE +FD: net/minecraft/data/worldgen/features/VegetationFeatures/f_195161_ net/minecraft/data/worldgen/features/VegetationFeatures/TREES_SAVANNA +FD: net/minecraft/data/worldgen/features/VegetationFeatures/f_195162_ net/minecraft/data/worldgen/features/VegetationFeatures/BIRCH_TALL +FD: net/minecraft/data/worldgen/features/VegetationFeatures/f_195163_ net/minecraft/data/worldgen/features/VegetationFeatures/TREES_WINDSWEPT_HILLS +FD: net/minecraft/data/worldgen/features/VegetationFeatures/f_195164_ net/minecraft/data/worldgen/features/VegetationFeatures/TREES_WATER +FD: net/minecraft/data/worldgen/features/VegetationFeatures/f_195165_ net/minecraft/data/worldgen/features/VegetationFeatures/TREES_BIRCH_AND_OAK +FD: net/minecraft/data/worldgen/features/VegetationFeatures/f_195166_ net/minecraft/data/worldgen/features/VegetationFeatures/TREES_PLAINS +FD: net/minecraft/data/worldgen/features/VegetationFeatures/f_195167_ net/minecraft/data/worldgen/features/VegetationFeatures/TREES_SPARSE_JUNGLE +FD: net/minecraft/data/worldgen/features/VegetationFeatures/f_195168_ net/minecraft/data/worldgen/features/VegetationFeatures/TREES_OLD_GROWTH_SPRUCE_TAIGA +FD: net/minecraft/data/worldgen/features/VegetationFeatures/f_195169_ net/minecraft/data/worldgen/features/VegetationFeatures/TREES_OLD_GROWTH_PINE_TAIGA +FD: net/minecraft/data/worldgen/features/VegetationFeatures/f_195170_ net/minecraft/data/worldgen/features/VegetationFeatures/TREES_JUNGLE +FD: net/minecraft/data/worldgen/features/VegetationFeatures/f_195171_ net/minecraft/data/worldgen/features/VegetationFeatures/BAMBOO_VEGETATION +FD: net/minecraft/data/worldgen/features/VegetationFeatures/f_195172_ net/minecraft/data/worldgen/features/VegetationFeatures/MUSHROOM_ISLAND_VEGETATION +FD: net/minecraft/data/worldgen/features/VegetationFeatures/f_195173_ net/minecraft/data/worldgen/features/VegetationFeatures/BAMBOO_NO_PODZOL +FD: net/minecraft/data/worldgen/features/VegetationFeatures/f_195174_ net/minecraft/data/worldgen/features/VegetationFeatures/BAMBOO_SOME_PODZOL +FD: net/minecraft/data/worldgen/features/VegetationFeatures/f_195175_ net/minecraft/data/worldgen/features/VegetationFeatures/VINES +FD: net/minecraft/data/worldgen/features/VegetationFeatures/f_195176_ net/minecraft/data/worldgen/features/VegetationFeatures/PATCH_BROWN_MUSHROOM +FD: net/minecraft/data/worldgen/features/VegetationFeatures/f_195177_ net/minecraft/data/worldgen/features/VegetationFeatures/PATCH_RED_MUSHROOM +FD: net/minecraft/data/worldgen/features/VegetationFeatures/f_195178_ net/minecraft/data/worldgen/features/VegetationFeatures/PATCH_SUNFLOWER +FD: net/minecraft/data/worldgen/features/VegetationFeatures/f_195179_ net/minecraft/data/worldgen/features/VegetationFeatures/PATCH_PUMPKIN +FD: net/minecraft/data/worldgen/features/VegetationFeatures/f_195180_ net/minecraft/data/worldgen/features/VegetationFeatures/PATCH_BERRY_BUSH +FD: net/minecraft/data/worldgen/features/VegetationFeatures/f_195181_ net/minecraft/data/worldgen/features/VegetationFeatures/PATCH_TAIGA_GRASS +FD: net/minecraft/data/worldgen/features/VegetationFeatures/f_195182_ net/minecraft/data/worldgen/features/VegetationFeatures/PATCH_GRASS +FD: net/minecraft/data/worldgen/features/VegetationFeatures/f_195183_ net/minecraft/data/worldgen/features/VegetationFeatures/PATCH_GRASS_JUNGLE +FD: net/minecraft/data/worldgen/features/VegetationFeatures/f_195184_ net/minecraft/data/worldgen/features/VegetationFeatures/SINGLE_PIECE_OF_GRASS +FD: net/minecraft/data/worldgen/features/VegetationFeatures/f_195185_ net/minecraft/data/worldgen/features/VegetationFeatures/PATCH_DEAD_BUSH +FD: net/minecraft/data/worldgen/features/VegetationFeatures/f_195186_ net/minecraft/data/worldgen/features/VegetationFeatures/PATCH_MELON +FD: net/minecraft/data/worldgen/features/VegetationFeatures/f_195187_ net/minecraft/data/worldgen/features/VegetationFeatures/PATCH_WATERLILY +FD: net/minecraft/data/worldgen/features/VegetationFeatures/f_195188_ net/minecraft/data/worldgen/features/VegetationFeatures/PATCH_TALL_GRASS +FD: net/minecraft/data/worldgen/features/VegetationFeatures/f_195189_ net/minecraft/data/worldgen/features/VegetationFeatures/PATCH_LARGE_FERN +FD: net/minecraft/data/worldgen/features/VegetationFeatures/f_195190_ net/minecraft/data/worldgen/features/VegetationFeatures/PATCH_CACTUS +FD: net/minecraft/data/worldgen/features/VegetationFeatures/f_195191_ net/minecraft/data/worldgen/features/VegetationFeatures/PATCH_SUGAR_CANE +FD: net/minecraft/data/worldgen/features/VegetationFeatures/f_195192_ net/minecraft/data/worldgen/features/VegetationFeatures/FLOWER_DEFAULT +FD: net/minecraft/data/worldgen/features/VegetationFeatures/f_195193_ net/minecraft/data/worldgen/features/VegetationFeatures/FLOWER_FLOWER_FOREST +FD: net/minecraft/data/worldgen/features/VegetationFeatures/f_195194_ net/minecraft/data/worldgen/features/VegetationFeatures/FLOWER_SWAMP +FD: net/minecraft/data/worldgen/features/VegetationFeatures/f_195195_ net/minecraft/data/worldgen/features/VegetationFeatures/FLOWER_PLAIN +FD: net/minecraft/data/worldgen/features/VegetationFeatures/f_195196_ net/minecraft/data/worldgen/features/VegetationFeatures/FLOWER_MEADOW +FD: net/minecraft/data/worldgen/features/VegetationFeatures/f_195197_ net/minecraft/data/worldgen/features/VegetationFeatures/FOREST_FLOWERS +FD: net/minecraft/data/worldgen/features/VegetationFeatures/f_195198_ net/minecraft/data/worldgen/features/VegetationFeatures/DARK_FOREST_VEGETATION +FD: net/minecraft/data/worldgen/features/VegetationFeatures/f_236764_ net/minecraft/data/worldgen/features/VegetationFeatures/MANGROVE_VEGETATION +FD: net/minecraft/data/worldgen/features/VegetationFeatures/f_271409_ net/minecraft/data/worldgen/features/VegetationFeatures/FLOWER_CHERRY +FD: net/minecraft/data/worldgen/placement/AquaticPlacements/f_195218_ net/minecraft/data/worldgen/placement/AquaticPlacements/SEAGRASS_WARM +FD: net/minecraft/data/worldgen/placement/AquaticPlacements/f_195219_ net/minecraft/data/worldgen/placement/AquaticPlacements/SEAGRASS_NORMAL +FD: net/minecraft/data/worldgen/placement/AquaticPlacements/f_195220_ net/minecraft/data/worldgen/placement/AquaticPlacements/SEAGRASS_COLD +FD: net/minecraft/data/worldgen/placement/AquaticPlacements/f_195221_ net/minecraft/data/worldgen/placement/AquaticPlacements/SEAGRASS_RIVER +FD: net/minecraft/data/worldgen/placement/AquaticPlacements/f_195222_ net/minecraft/data/worldgen/placement/AquaticPlacements/SEAGRASS_SWAMP +FD: net/minecraft/data/worldgen/placement/AquaticPlacements/f_195223_ net/minecraft/data/worldgen/placement/AquaticPlacements/SEAGRASS_DEEP_WARM +FD: net/minecraft/data/worldgen/placement/AquaticPlacements/f_195224_ net/minecraft/data/worldgen/placement/AquaticPlacements/SEAGRASS_DEEP +FD: net/minecraft/data/worldgen/placement/AquaticPlacements/f_195225_ net/minecraft/data/worldgen/placement/AquaticPlacements/SEAGRASS_DEEP_COLD +FD: net/minecraft/data/worldgen/placement/AquaticPlacements/f_195226_ net/minecraft/data/worldgen/placement/AquaticPlacements/SEAGRASS_SIMPLE +FD: net/minecraft/data/worldgen/placement/AquaticPlacements/f_195227_ net/minecraft/data/worldgen/placement/AquaticPlacements/SEA_PICKLE +FD: net/minecraft/data/worldgen/placement/AquaticPlacements/f_195228_ net/minecraft/data/worldgen/placement/AquaticPlacements/KELP_COLD +FD: net/minecraft/data/worldgen/placement/AquaticPlacements/f_195229_ net/minecraft/data/worldgen/placement/AquaticPlacements/KELP_WARM +FD: net/minecraft/data/worldgen/placement/AquaticPlacements/f_195230_ net/minecraft/data/worldgen/placement/AquaticPlacements/WARM_OCEAN_VEGETATION +FD: net/minecraft/data/worldgen/placement/CavePlacements/f_195235_ net/minecraft/data/worldgen/placement/CavePlacements/MONSTER_ROOM +FD: net/minecraft/data/worldgen/placement/CavePlacements/f_195236_ net/minecraft/data/worldgen/placement/CavePlacements/MONSTER_ROOM_DEEP +FD: net/minecraft/data/worldgen/placement/CavePlacements/f_195237_ net/minecraft/data/worldgen/placement/CavePlacements/FOSSIL_UPPER +FD: net/minecraft/data/worldgen/placement/CavePlacements/f_195238_ net/minecraft/data/worldgen/placement/CavePlacements/FOSSIL_LOWER +FD: net/minecraft/data/worldgen/placement/CavePlacements/f_195239_ net/minecraft/data/worldgen/placement/CavePlacements/DRIPSTONE_CLUSTER +FD: net/minecraft/data/worldgen/placement/CavePlacements/f_195240_ net/minecraft/data/worldgen/placement/CavePlacements/LARGE_DRIPSTONE +FD: net/minecraft/data/worldgen/placement/CavePlacements/f_195241_ net/minecraft/data/worldgen/placement/CavePlacements/POINTED_DRIPSTONE +FD: net/minecraft/data/worldgen/placement/CavePlacements/f_195242_ net/minecraft/data/worldgen/placement/CavePlacements/UNDERWATER_MAGMA +FD: net/minecraft/data/worldgen/placement/CavePlacements/f_195243_ net/minecraft/data/worldgen/placement/CavePlacements/GLOW_LICHEN +FD: net/minecraft/data/worldgen/placement/CavePlacements/f_195244_ net/minecraft/data/worldgen/placement/CavePlacements/ROOTED_AZALEA_TREE +FD: net/minecraft/data/worldgen/placement/CavePlacements/f_195245_ net/minecraft/data/worldgen/placement/CavePlacements/CAVE_VINES +FD: net/minecraft/data/worldgen/placement/CavePlacements/f_195246_ net/minecraft/data/worldgen/placement/CavePlacements/LUSH_CAVES_VEGETATION +FD: net/minecraft/data/worldgen/placement/CavePlacements/f_195247_ net/minecraft/data/worldgen/placement/CavePlacements/LUSH_CAVES_CLAY +FD: net/minecraft/data/worldgen/placement/CavePlacements/f_195248_ net/minecraft/data/worldgen/placement/CavePlacements/LUSH_CAVES_CEILING_VEGETATION +FD: net/minecraft/data/worldgen/placement/CavePlacements/f_195249_ net/minecraft/data/worldgen/placement/CavePlacements/SPORE_BLOSSOM +FD: net/minecraft/data/worldgen/placement/CavePlacements/f_195250_ net/minecraft/data/worldgen/placement/CavePlacements/CLASSIC_VINES +FD: net/minecraft/data/worldgen/placement/CavePlacements/f_195251_ net/minecraft/data/worldgen/placement/CavePlacements/AMETHYST_GEODE +FD: net/minecraft/data/worldgen/placement/CavePlacements/f_236765_ net/minecraft/data/worldgen/placement/CavePlacements/SCULK_PATCH_DEEP_DARK +FD: net/minecraft/data/worldgen/placement/CavePlacements/f_236766_ net/minecraft/data/worldgen/placement/CavePlacements/SCULK_PATCH_ANCIENT_CITY +FD: net/minecraft/data/worldgen/placement/CavePlacements/f_236767_ net/minecraft/data/worldgen/placement/CavePlacements/SCULK_VEIN +FD: net/minecraft/data/worldgen/placement/EndPlacements/f_195254_ net/minecraft/data/worldgen/placement/EndPlacements/END_SPIKE +FD: net/minecraft/data/worldgen/placement/EndPlacements/f_195255_ net/minecraft/data/worldgen/placement/EndPlacements/END_GATEWAY_RETURN +FD: net/minecraft/data/worldgen/placement/EndPlacements/f_195256_ net/minecraft/data/worldgen/placement/EndPlacements/CHORUS_PLANT +FD: net/minecraft/data/worldgen/placement/EndPlacements/f_195257_ net/minecraft/data/worldgen/placement/EndPlacements/END_ISLAND_DECORATED +FD: net/minecraft/data/worldgen/placement/MiscOverworldPlacements/f_195260_ net/minecraft/data/worldgen/placement/MiscOverworldPlacements/ICE_SPIKE +FD: net/minecraft/data/worldgen/placement/MiscOverworldPlacements/f_195261_ net/minecraft/data/worldgen/placement/MiscOverworldPlacements/ICE_PATCH +FD: net/minecraft/data/worldgen/placement/MiscOverworldPlacements/f_195262_ net/minecraft/data/worldgen/placement/MiscOverworldPlacements/FOREST_ROCK +FD: net/minecraft/data/worldgen/placement/MiscOverworldPlacements/f_195263_ net/minecraft/data/worldgen/placement/MiscOverworldPlacements/ICEBERG_PACKED +FD: net/minecraft/data/worldgen/placement/MiscOverworldPlacements/f_195264_ net/minecraft/data/worldgen/placement/MiscOverworldPlacements/ICEBERG_BLUE +FD: net/minecraft/data/worldgen/placement/MiscOverworldPlacements/f_195265_ net/minecraft/data/worldgen/placement/MiscOverworldPlacements/BLUE_ICE +FD: net/minecraft/data/worldgen/placement/MiscOverworldPlacements/f_195266_ net/minecraft/data/worldgen/placement/MiscOverworldPlacements/LAKE_LAVA_UNDERGROUND +FD: net/minecraft/data/worldgen/placement/MiscOverworldPlacements/f_195267_ net/minecraft/data/worldgen/placement/MiscOverworldPlacements/LAKE_LAVA_SURFACE +FD: net/minecraft/data/worldgen/placement/MiscOverworldPlacements/f_195268_ net/minecraft/data/worldgen/placement/MiscOverworldPlacements/DISK_CLAY +FD: net/minecraft/data/worldgen/placement/MiscOverworldPlacements/f_195269_ net/minecraft/data/worldgen/placement/MiscOverworldPlacements/DISK_GRAVEL +FD: net/minecraft/data/worldgen/placement/MiscOverworldPlacements/f_195270_ net/minecraft/data/worldgen/placement/MiscOverworldPlacements/DISK_SAND +FD: net/minecraft/data/worldgen/placement/MiscOverworldPlacements/f_195271_ net/minecraft/data/worldgen/placement/MiscOverworldPlacements/FREEZE_TOP_LAYER +FD: net/minecraft/data/worldgen/placement/MiscOverworldPlacements/f_195272_ net/minecraft/data/worldgen/placement/MiscOverworldPlacements/VOID_START_PLATFORM +FD: net/minecraft/data/worldgen/placement/MiscOverworldPlacements/f_195273_ net/minecraft/data/worldgen/placement/MiscOverworldPlacements/DESERT_WELL +FD: net/minecraft/data/worldgen/placement/MiscOverworldPlacements/f_195274_ net/minecraft/data/worldgen/placement/MiscOverworldPlacements/SPRING_LAVA +FD: net/minecraft/data/worldgen/placement/MiscOverworldPlacements/f_195275_ net/minecraft/data/worldgen/placement/MiscOverworldPlacements/SPRING_LAVA_FROZEN +FD: net/minecraft/data/worldgen/placement/MiscOverworldPlacements/f_195276_ net/minecraft/data/worldgen/placement/MiscOverworldPlacements/SPRING_WATER +FD: net/minecraft/data/worldgen/placement/MiscOverworldPlacements/f_236768_ net/minecraft/data/worldgen/placement/MiscOverworldPlacements/DISK_GRASS +FD: net/minecraft/data/worldgen/placement/NetherPlacements/f_195279_ net/minecraft/data/worldgen/placement/NetherPlacements/DELTA +FD: net/minecraft/data/worldgen/placement/NetherPlacements/f_195280_ net/minecraft/data/worldgen/placement/NetherPlacements/SMALL_BASALT_COLUMNS +FD: net/minecraft/data/worldgen/placement/NetherPlacements/f_195281_ net/minecraft/data/worldgen/placement/NetherPlacements/LARGE_BASALT_COLUMNS +FD: net/minecraft/data/worldgen/placement/NetherPlacements/f_195282_ net/minecraft/data/worldgen/placement/NetherPlacements/BASALT_BLOBS +FD: net/minecraft/data/worldgen/placement/NetherPlacements/f_195283_ net/minecraft/data/worldgen/placement/NetherPlacements/BLACKSTONE_BLOBS +FD: net/minecraft/data/worldgen/placement/NetherPlacements/f_195284_ net/minecraft/data/worldgen/placement/NetherPlacements/GLOWSTONE_EXTRA +FD: net/minecraft/data/worldgen/placement/NetherPlacements/f_195285_ net/minecraft/data/worldgen/placement/NetherPlacements/GLOWSTONE +FD: net/minecraft/data/worldgen/placement/NetherPlacements/f_195286_ net/minecraft/data/worldgen/placement/NetherPlacements/CRIMSON_FOREST_VEGETATION +FD: net/minecraft/data/worldgen/placement/NetherPlacements/f_195287_ net/minecraft/data/worldgen/placement/NetherPlacements/WARPED_FOREST_VEGETATION +FD: net/minecraft/data/worldgen/placement/NetherPlacements/f_195288_ net/minecraft/data/worldgen/placement/NetherPlacements/NETHER_SPROUTS +FD: net/minecraft/data/worldgen/placement/NetherPlacements/f_195289_ net/minecraft/data/worldgen/placement/NetherPlacements/TWISTING_VINES +FD: net/minecraft/data/worldgen/placement/NetherPlacements/f_195290_ net/minecraft/data/worldgen/placement/NetherPlacements/WEEPING_VINES +FD: net/minecraft/data/worldgen/placement/NetherPlacements/f_195291_ net/minecraft/data/worldgen/placement/NetherPlacements/PATCH_CRIMSON_ROOTS +FD: net/minecraft/data/worldgen/placement/NetherPlacements/f_195292_ net/minecraft/data/worldgen/placement/NetherPlacements/BASALT_PILLAR +FD: net/minecraft/data/worldgen/placement/NetherPlacements/f_195293_ net/minecraft/data/worldgen/placement/NetherPlacements/SPRING_DELTA +FD: net/minecraft/data/worldgen/placement/NetherPlacements/f_195294_ net/minecraft/data/worldgen/placement/NetherPlacements/SPRING_CLOSED +FD: net/minecraft/data/worldgen/placement/NetherPlacements/f_195295_ net/minecraft/data/worldgen/placement/NetherPlacements/SPRING_CLOSED_DOUBLE +FD: net/minecraft/data/worldgen/placement/NetherPlacements/f_195296_ net/minecraft/data/worldgen/placement/NetherPlacements/SPRING_OPEN +FD: net/minecraft/data/worldgen/placement/NetherPlacements/f_195298_ net/minecraft/data/worldgen/placement/NetherPlacements/PATCH_SOUL_FIRE +FD: net/minecraft/data/worldgen/placement/NetherPlacements/f_195299_ net/minecraft/data/worldgen/placement/NetherPlacements/PATCH_FIRE +FD: net/minecraft/data/worldgen/placement/OrePlacements/f_195302_ net/minecraft/data/worldgen/placement/OrePlacements/ORE_REDSTONE_LOWER +FD: net/minecraft/data/worldgen/placement/OrePlacements/f_195303_ net/minecraft/data/worldgen/placement/OrePlacements/ORE_DIAMOND +FD: net/minecraft/data/worldgen/placement/OrePlacements/f_195304_ net/minecraft/data/worldgen/placement/OrePlacements/ORE_DIAMOND_LARGE +FD: net/minecraft/data/worldgen/placement/OrePlacements/f_195305_ net/minecraft/data/worldgen/placement/OrePlacements/ORE_DIAMOND_BURIED +FD: net/minecraft/data/worldgen/placement/OrePlacements/f_195306_ net/minecraft/data/worldgen/placement/OrePlacements/ORE_LAPIS +FD: net/minecraft/data/worldgen/placement/OrePlacements/f_195307_ net/minecraft/data/worldgen/placement/OrePlacements/ORE_LAPIS_BURIED +FD: net/minecraft/data/worldgen/placement/OrePlacements/f_195308_ net/minecraft/data/worldgen/placement/OrePlacements/ORE_INFESTED +FD: net/minecraft/data/worldgen/placement/OrePlacements/f_195309_ net/minecraft/data/worldgen/placement/OrePlacements/ORE_EMERALD +FD: net/minecraft/data/worldgen/placement/OrePlacements/f_195310_ net/minecraft/data/worldgen/placement/OrePlacements/ORE_ANCIENT_DEBRIS_LARGE +FD: net/minecraft/data/worldgen/placement/OrePlacements/f_195311_ net/minecraft/data/worldgen/placement/OrePlacements/ORE_ANCIENT_DEBRIS_SMALL +FD: net/minecraft/data/worldgen/placement/OrePlacements/f_195312_ net/minecraft/data/worldgen/placement/OrePlacements/ORE_COPPER +FD: net/minecraft/data/worldgen/placement/OrePlacements/f_195313_ net/minecraft/data/worldgen/placement/OrePlacements/ORE_COPPER_LARGE +FD: net/minecraft/data/worldgen/placement/OrePlacements/f_195314_ net/minecraft/data/worldgen/placement/OrePlacements/ORE_CLAY +FD: net/minecraft/data/worldgen/placement/OrePlacements/f_195315_ net/minecraft/data/worldgen/placement/OrePlacements/ORE_MAGMA +FD: net/minecraft/data/worldgen/placement/OrePlacements/f_195316_ net/minecraft/data/worldgen/placement/OrePlacements/ORE_SOUL_SAND +FD: net/minecraft/data/worldgen/placement/OrePlacements/f_195317_ net/minecraft/data/worldgen/placement/OrePlacements/ORE_GOLD_DELTAS +FD: net/minecraft/data/worldgen/placement/OrePlacements/f_195318_ net/minecraft/data/worldgen/placement/OrePlacements/ORE_QUARTZ_DELTAS +FD: net/minecraft/data/worldgen/placement/OrePlacements/f_195319_ net/minecraft/data/worldgen/placement/OrePlacements/ORE_GOLD_NETHER +FD: net/minecraft/data/worldgen/placement/OrePlacements/f_195320_ net/minecraft/data/worldgen/placement/OrePlacements/ORE_QUARTZ_NETHER +FD: net/minecraft/data/worldgen/placement/OrePlacements/f_195321_ net/minecraft/data/worldgen/placement/OrePlacements/ORE_GRAVEL_NETHER +FD: net/minecraft/data/worldgen/placement/OrePlacements/f_195322_ net/minecraft/data/worldgen/placement/OrePlacements/ORE_BLACKSTONE +FD: net/minecraft/data/worldgen/placement/OrePlacements/f_195323_ net/minecraft/data/worldgen/placement/OrePlacements/ORE_DIRT +FD: net/minecraft/data/worldgen/placement/OrePlacements/f_195324_ net/minecraft/data/worldgen/placement/OrePlacements/ORE_GRAVEL +FD: net/minecraft/data/worldgen/placement/OrePlacements/f_195325_ net/minecraft/data/worldgen/placement/OrePlacements/ORE_GRANITE_UPPER +FD: net/minecraft/data/worldgen/placement/OrePlacements/f_195326_ net/minecraft/data/worldgen/placement/OrePlacements/ORE_GRANITE_LOWER +FD: net/minecraft/data/worldgen/placement/OrePlacements/f_195327_ net/minecraft/data/worldgen/placement/OrePlacements/ORE_DIORITE_UPPER +FD: net/minecraft/data/worldgen/placement/OrePlacements/f_195328_ net/minecraft/data/worldgen/placement/OrePlacements/ORE_DIORITE_LOWER +FD: net/minecraft/data/worldgen/placement/OrePlacements/f_195329_ net/minecraft/data/worldgen/placement/OrePlacements/ORE_ANDESITE_UPPER +FD: net/minecraft/data/worldgen/placement/OrePlacements/f_195330_ net/minecraft/data/worldgen/placement/OrePlacements/ORE_ANDESITE_LOWER +FD: net/minecraft/data/worldgen/placement/OrePlacements/f_195331_ net/minecraft/data/worldgen/placement/OrePlacements/ORE_TUFF +FD: net/minecraft/data/worldgen/placement/OrePlacements/f_195332_ net/minecraft/data/worldgen/placement/OrePlacements/ORE_COAL_UPPER +FD: net/minecraft/data/worldgen/placement/OrePlacements/f_195333_ net/minecraft/data/worldgen/placement/OrePlacements/ORE_COAL_LOWER +FD: net/minecraft/data/worldgen/placement/OrePlacements/f_195334_ net/minecraft/data/worldgen/placement/OrePlacements/ORE_IRON_UPPER +FD: net/minecraft/data/worldgen/placement/OrePlacements/f_195335_ net/minecraft/data/worldgen/placement/OrePlacements/ORE_IRON_MIDDLE +FD: net/minecraft/data/worldgen/placement/OrePlacements/f_195336_ net/minecraft/data/worldgen/placement/OrePlacements/ORE_IRON_SMALL +FD: net/minecraft/data/worldgen/placement/OrePlacements/f_195337_ net/minecraft/data/worldgen/placement/OrePlacements/ORE_GOLD_EXTRA +FD: net/minecraft/data/worldgen/placement/OrePlacements/f_195338_ net/minecraft/data/worldgen/placement/OrePlacements/ORE_GOLD +FD: net/minecraft/data/worldgen/placement/OrePlacements/f_195339_ net/minecraft/data/worldgen/placement/OrePlacements/ORE_GOLD_LOWER +FD: net/minecraft/data/worldgen/placement/OrePlacements/f_195340_ net/minecraft/data/worldgen/placement/OrePlacements/ORE_REDSTONE +FD: net/minecraft/data/worldgen/placement/PlacementUtils/f_195352_ net/minecraft/data/worldgen/placement/PlacementUtils/HEIGHTMAP +FD: net/minecraft/data/worldgen/placement/PlacementUtils/f_195353_ net/minecraft/data/worldgen/placement/PlacementUtils/HEIGHTMAP_TOP_SOLID +FD: net/minecraft/data/worldgen/placement/PlacementUtils/f_195354_ net/minecraft/data/worldgen/placement/PlacementUtils/HEIGHTMAP_WORLD_SURFACE +FD: net/minecraft/data/worldgen/placement/PlacementUtils/f_195355_ net/minecraft/data/worldgen/placement/PlacementUtils/HEIGHTMAP_OCEAN_FLOOR +FD: net/minecraft/data/worldgen/placement/PlacementUtils/f_195356_ net/minecraft/data/worldgen/placement/PlacementUtils/FULL_RANGE +FD: net/minecraft/data/worldgen/placement/PlacementUtils/f_195357_ net/minecraft/data/worldgen/placement/PlacementUtils/RANGE_10_10 +FD: net/minecraft/data/worldgen/placement/PlacementUtils/f_195358_ net/minecraft/data/worldgen/placement/PlacementUtils/RANGE_8_8 +FD: net/minecraft/data/worldgen/placement/PlacementUtils/f_195359_ net/minecraft/data/worldgen/placement/PlacementUtils/RANGE_4_4 +FD: net/minecraft/data/worldgen/placement/PlacementUtils/f_195360_ net/minecraft/data/worldgen/placement/PlacementUtils/RANGE_BOTTOM_TO_MAX_TERRAIN_HEIGHT +FD: net/minecraft/data/worldgen/placement/TreePlacements/f_195371_ net/minecraft/data/worldgen/placement/TreePlacements/FANCY_OAK_BEES +FD: net/minecraft/data/worldgen/placement/TreePlacements/f_195372_ net/minecraft/data/worldgen/placement/TreePlacements/CRIMSON_FUNGI +FD: net/minecraft/data/worldgen/placement/TreePlacements/f_195373_ net/minecraft/data/worldgen/placement/TreePlacements/WARPED_FUNGI +FD: net/minecraft/data/worldgen/placement/TreePlacements/f_195374_ net/minecraft/data/worldgen/placement/TreePlacements/OAK_CHECKED +FD: net/minecraft/data/worldgen/placement/TreePlacements/f_195375_ net/minecraft/data/worldgen/placement/TreePlacements/DARK_OAK_CHECKED +FD: net/minecraft/data/worldgen/placement/TreePlacements/f_195376_ net/minecraft/data/worldgen/placement/TreePlacements/BIRCH_CHECKED +FD: net/minecraft/data/worldgen/placement/TreePlacements/f_195377_ net/minecraft/data/worldgen/placement/TreePlacements/ACACIA_CHECKED +FD: net/minecraft/data/worldgen/placement/TreePlacements/f_195378_ net/minecraft/data/worldgen/placement/TreePlacements/SPRUCE_CHECKED +FD: net/minecraft/data/worldgen/placement/TreePlacements/f_195381_ net/minecraft/data/worldgen/placement/TreePlacements/PINE_ON_SNOW +FD: net/minecraft/data/worldgen/placement/TreePlacements/f_195382_ net/minecraft/data/worldgen/placement/TreePlacements/SPRUCE_ON_SNOW +FD: net/minecraft/data/worldgen/placement/TreePlacements/f_195383_ net/minecraft/data/worldgen/placement/TreePlacements/PINE_CHECKED +FD: net/minecraft/data/worldgen/placement/TreePlacements/f_195384_ net/minecraft/data/worldgen/placement/TreePlacements/JUNGLE_TREE_CHECKED +FD: net/minecraft/data/worldgen/placement/TreePlacements/f_195385_ net/minecraft/data/worldgen/placement/TreePlacements/FANCY_OAK_CHECKED +FD: net/minecraft/data/worldgen/placement/TreePlacements/f_195386_ net/minecraft/data/worldgen/placement/TreePlacements/MEGA_JUNGLE_TREE_CHECKED +FD: net/minecraft/data/worldgen/placement/TreePlacements/f_195387_ net/minecraft/data/worldgen/placement/TreePlacements/MEGA_SPRUCE_CHECKED +FD: net/minecraft/data/worldgen/placement/TreePlacements/f_195388_ net/minecraft/data/worldgen/placement/TreePlacements/MEGA_PINE_CHECKED +FD: net/minecraft/data/worldgen/placement/TreePlacements/f_195389_ net/minecraft/data/worldgen/placement/TreePlacements/JUNGLE_BUSH +FD: net/minecraft/data/worldgen/placement/TreePlacements/f_195390_ net/minecraft/data/worldgen/placement/TreePlacements/SUPER_BIRCH_BEES_0002 +FD: net/minecraft/data/worldgen/placement/TreePlacements/f_195391_ net/minecraft/data/worldgen/placement/TreePlacements/SUPER_BIRCH_BEES +FD: net/minecraft/data/worldgen/placement/TreePlacements/f_195392_ net/minecraft/data/worldgen/placement/TreePlacements/OAK_BEES_0002 +FD: net/minecraft/data/worldgen/placement/TreePlacements/f_195393_ net/minecraft/data/worldgen/placement/TreePlacements/OAK_BEES_002 +FD: net/minecraft/data/worldgen/placement/TreePlacements/f_195394_ net/minecraft/data/worldgen/placement/TreePlacements/BIRCH_BEES_0002_PLACED +FD: net/minecraft/data/worldgen/placement/TreePlacements/f_195395_ net/minecraft/data/worldgen/placement/TreePlacements/BIRCH_BEES_002 +FD: net/minecraft/data/worldgen/placement/TreePlacements/f_195396_ net/minecraft/data/worldgen/placement/TreePlacements/FANCY_OAK_BEES_0002 +FD: net/minecraft/data/worldgen/placement/TreePlacements/f_195397_ net/minecraft/data/worldgen/placement/TreePlacements/FANCY_OAK_BEES_002 +FD: net/minecraft/data/worldgen/placement/TreePlacements/f_236771_ net/minecraft/data/worldgen/placement/TreePlacements/MANGROVE_CHECKED +FD: net/minecraft/data/worldgen/placement/TreePlacements/f_236772_ net/minecraft/data/worldgen/placement/TreePlacements/TALL_MANGROVE_CHECKED +FD: net/minecraft/data/worldgen/placement/TreePlacements/f_271177_ net/minecraft/data/worldgen/placement/TreePlacements/CHERRY_BEES_005 +FD: net/minecraft/data/worldgen/placement/TreePlacements/f_271402_ net/minecraft/data/worldgen/placement/TreePlacements/CHERRY_CHECKED +FD: net/minecraft/data/worldgen/placement/VegetationPlacements/f_195400_ net/minecraft/data/worldgen/placement/VegetationPlacements/PATCH_SUGAR_CANE_SWAMP +FD: net/minecraft/data/worldgen/placement/VegetationPlacements/f_195401_ net/minecraft/data/worldgen/placement/VegetationPlacements/PATCH_SUGAR_CANE_DESERT +FD: net/minecraft/data/worldgen/placement/VegetationPlacements/f_195402_ net/minecraft/data/worldgen/placement/VegetationPlacements/PATCH_SUGAR_CANE_BADLANDS +FD: net/minecraft/data/worldgen/placement/VegetationPlacements/f_195403_ net/minecraft/data/worldgen/placement/VegetationPlacements/PATCH_SUGAR_CANE +FD: net/minecraft/data/worldgen/placement/VegetationPlacements/f_195404_ net/minecraft/data/worldgen/placement/VegetationPlacements/BROWN_MUSHROOM_NETHER +FD: net/minecraft/data/worldgen/placement/VegetationPlacements/f_195405_ net/minecraft/data/worldgen/placement/VegetationPlacements/RED_MUSHROOM_NETHER +FD: net/minecraft/data/worldgen/placement/VegetationPlacements/f_195406_ net/minecraft/data/worldgen/placement/VegetationPlacements/BROWN_MUSHROOM_NORMAL +FD: net/minecraft/data/worldgen/placement/VegetationPlacements/f_195407_ net/minecraft/data/worldgen/placement/VegetationPlacements/RED_MUSHROOM_NORMAL +FD: net/minecraft/data/worldgen/placement/VegetationPlacements/f_195408_ net/minecraft/data/worldgen/placement/VegetationPlacements/BROWN_MUSHROOM_TAIGA +FD: net/minecraft/data/worldgen/placement/VegetationPlacements/f_195409_ net/minecraft/data/worldgen/placement/VegetationPlacements/RED_MUSHROOM_TAIGA +FD: net/minecraft/data/worldgen/placement/VegetationPlacements/f_195410_ net/minecraft/data/worldgen/placement/VegetationPlacements/BROWN_MUSHROOM_OLD_GROWTH +FD: net/minecraft/data/worldgen/placement/VegetationPlacements/f_195411_ net/minecraft/data/worldgen/placement/VegetationPlacements/RED_MUSHROOM_OLD_GROWTH +FD: net/minecraft/data/worldgen/placement/VegetationPlacements/f_195412_ net/minecraft/data/worldgen/placement/VegetationPlacements/BROWN_MUSHROOM_SWAMP +FD: net/minecraft/data/worldgen/placement/VegetationPlacements/f_195413_ net/minecraft/data/worldgen/placement/VegetationPlacements/RED_MUSHROOM_SWAMP +FD: net/minecraft/data/worldgen/placement/VegetationPlacements/f_195414_ net/minecraft/data/worldgen/placement/VegetationPlacements/FLOWER_WARM +FD: net/minecraft/data/worldgen/placement/VegetationPlacements/f_195415_ net/minecraft/data/worldgen/placement/VegetationPlacements/FLOWER_DEFAULT +FD: net/minecraft/data/worldgen/placement/VegetationPlacements/f_195416_ net/minecraft/data/worldgen/placement/VegetationPlacements/FLOWER_FLOWER_FOREST +FD: net/minecraft/data/worldgen/placement/VegetationPlacements/f_195417_ net/minecraft/data/worldgen/placement/VegetationPlacements/FLOWER_SWAMP +FD: net/minecraft/data/worldgen/placement/VegetationPlacements/f_195419_ net/minecraft/data/worldgen/placement/VegetationPlacements/FLOWER_MEADOW +FD: net/minecraft/data/worldgen/placement/VegetationPlacements/f_195420_ net/minecraft/data/worldgen/placement/VegetationPlacements/TREE_THRESHOLD +FD: net/minecraft/data/worldgen/placement/VegetationPlacements/f_195421_ net/minecraft/data/worldgen/placement/VegetationPlacements/TREES_PLAINS +FD: net/minecraft/data/worldgen/placement/VegetationPlacements/f_195422_ net/minecraft/data/worldgen/placement/VegetationPlacements/DARK_FOREST_VEGETATION +FD: net/minecraft/data/worldgen/placement/VegetationPlacements/f_195423_ net/minecraft/data/worldgen/placement/VegetationPlacements/FLOWER_FOREST_FLOWERS +FD: net/minecraft/data/worldgen/placement/VegetationPlacements/f_195424_ net/minecraft/data/worldgen/placement/VegetationPlacements/FOREST_FLOWERS +FD: net/minecraft/data/worldgen/placement/VegetationPlacements/f_195425_ net/minecraft/data/worldgen/placement/VegetationPlacements/TREES_FLOWER_FOREST +FD: net/minecraft/data/worldgen/placement/VegetationPlacements/f_195426_ net/minecraft/data/worldgen/placement/VegetationPlacements/BAMBOO_LIGHT +FD: net/minecraft/data/worldgen/placement/VegetationPlacements/f_195427_ net/minecraft/data/worldgen/placement/VegetationPlacements/TREES_MEADOW +FD: net/minecraft/data/worldgen/placement/VegetationPlacements/f_195428_ net/minecraft/data/worldgen/placement/VegetationPlacements/TREES_TAIGA +FD: net/minecraft/data/worldgen/placement/VegetationPlacements/f_195429_ net/minecraft/data/worldgen/placement/VegetationPlacements/TREES_GROVE +FD: net/minecraft/data/worldgen/placement/VegetationPlacements/f_195430_ net/minecraft/data/worldgen/placement/VegetationPlacements/TREES_BADLANDS +FD: net/minecraft/data/worldgen/placement/VegetationPlacements/f_195431_ net/minecraft/data/worldgen/placement/VegetationPlacements/TREES_SNOWY +FD: net/minecraft/data/worldgen/placement/VegetationPlacements/f_195432_ net/minecraft/data/worldgen/placement/VegetationPlacements/TREES_SWAMP +FD: net/minecraft/data/worldgen/placement/VegetationPlacements/f_195433_ net/minecraft/data/worldgen/placement/VegetationPlacements/TREES_WINDSWEPT_SAVANNA +FD: net/minecraft/data/worldgen/placement/VegetationPlacements/f_195434_ net/minecraft/data/worldgen/placement/VegetationPlacements/TREES_SAVANNA +FD: net/minecraft/data/worldgen/placement/VegetationPlacements/f_195435_ net/minecraft/data/worldgen/placement/VegetationPlacements/BIRCH_TALL +FD: net/minecraft/data/worldgen/placement/VegetationPlacements/f_195436_ net/minecraft/data/worldgen/placement/VegetationPlacements/TREES_BIRCH +FD: net/minecraft/data/worldgen/placement/VegetationPlacements/f_195437_ net/minecraft/data/worldgen/placement/VegetationPlacements/TREES_WINDSWEPT_FOREST +FD: net/minecraft/data/worldgen/placement/VegetationPlacements/f_195438_ net/minecraft/data/worldgen/placement/VegetationPlacements/TREES_WINDSWEPT_HILLS +FD: net/minecraft/data/worldgen/placement/VegetationPlacements/f_195439_ net/minecraft/data/worldgen/placement/VegetationPlacements/TREES_WATER +FD: net/minecraft/data/worldgen/placement/VegetationPlacements/f_195440_ net/minecraft/data/worldgen/placement/VegetationPlacements/TREES_BIRCH_AND_OAK +FD: net/minecraft/data/worldgen/placement/VegetationPlacements/f_195441_ net/minecraft/data/worldgen/placement/VegetationPlacements/TREES_SPARSE_JUNGLE +FD: net/minecraft/data/worldgen/placement/VegetationPlacements/f_195442_ net/minecraft/data/worldgen/placement/VegetationPlacements/TREES_OLD_GROWTH_SPRUCE_TAIGA +FD: net/minecraft/data/worldgen/placement/VegetationPlacements/f_195443_ net/minecraft/data/worldgen/placement/VegetationPlacements/TREES_OLD_GROWTH_PINE_TAIGA +FD: net/minecraft/data/worldgen/placement/VegetationPlacements/f_195444_ net/minecraft/data/worldgen/placement/VegetationPlacements/TREES_JUNGLE +FD: net/minecraft/data/worldgen/placement/VegetationPlacements/f_195445_ net/minecraft/data/worldgen/placement/VegetationPlacements/BAMBOO_VEGETATION +FD: net/minecraft/data/worldgen/placement/VegetationPlacements/f_195446_ net/minecraft/data/worldgen/placement/VegetationPlacements/MUSHROOM_ISLAND_VEGETATION +FD: net/minecraft/data/worldgen/placement/VegetationPlacements/f_195447_ net/minecraft/data/worldgen/placement/VegetationPlacements/BAMBOO +FD: net/minecraft/data/worldgen/placement/VegetationPlacements/f_195448_ net/minecraft/data/worldgen/placement/VegetationPlacements/VINES +FD: net/minecraft/data/worldgen/placement/VegetationPlacements/f_195449_ net/minecraft/data/worldgen/placement/VegetationPlacements/PATCH_SUNFLOWER +FD: net/minecraft/data/worldgen/placement/VegetationPlacements/f_195450_ net/minecraft/data/worldgen/placement/VegetationPlacements/PATCH_PUMPKIN +FD: net/minecraft/data/worldgen/placement/VegetationPlacements/f_195451_ net/minecraft/data/worldgen/placement/VegetationPlacements/PATCH_GRASS_PLAIN +FD: net/minecraft/data/worldgen/placement/VegetationPlacements/f_195452_ net/minecraft/data/worldgen/placement/VegetationPlacements/PATCH_GRASS_FOREST +FD: net/minecraft/data/worldgen/placement/VegetationPlacements/f_195453_ net/minecraft/data/worldgen/placement/VegetationPlacements/PATCH_GRASS_BADLANDS +FD: net/minecraft/data/worldgen/placement/VegetationPlacements/f_195454_ net/minecraft/data/worldgen/placement/VegetationPlacements/PATCH_GRASS_SAVANNA +FD: net/minecraft/data/worldgen/placement/VegetationPlacements/f_195455_ net/minecraft/data/worldgen/placement/VegetationPlacements/PATCH_GRASS_NORMAL +FD: net/minecraft/data/worldgen/placement/VegetationPlacements/f_195456_ net/minecraft/data/worldgen/placement/VegetationPlacements/PATCH_GRASS_TAIGA_2 +FD: net/minecraft/data/worldgen/placement/VegetationPlacements/f_195457_ net/minecraft/data/worldgen/placement/VegetationPlacements/PATCH_GRASS_TAIGA +FD: net/minecraft/data/worldgen/placement/VegetationPlacements/f_195458_ net/minecraft/data/worldgen/placement/VegetationPlacements/PATCH_GRASS_JUNGLE +FD: net/minecraft/data/worldgen/placement/VegetationPlacements/f_195459_ net/minecraft/data/worldgen/placement/VegetationPlacements/GRASS_BONEMEAL +FD: net/minecraft/data/worldgen/placement/VegetationPlacements/f_195460_ net/minecraft/data/worldgen/placement/VegetationPlacements/PATCH_DEAD_BUSH_2 +FD: net/minecraft/data/worldgen/placement/VegetationPlacements/f_195461_ net/minecraft/data/worldgen/placement/VegetationPlacements/PATCH_DEAD_BUSH +FD: net/minecraft/data/worldgen/placement/VegetationPlacements/f_195462_ net/minecraft/data/worldgen/placement/VegetationPlacements/PATCH_DEAD_BUSH_BADLANDS +FD: net/minecraft/data/worldgen/placement/VegetationPlacements/f_195463_ net/minecraft/data/worldgen/placement/VegetationPlacements/PATCH_MELON +FD: net/minecraft/data/worldgen/placement/VegetationPlacements/f_195464_ net/minecraft/data/worldgen/placement/VegetationPlacements/PATCH_BERRY_COMMON +FD: net/minecraft/data/worldgen/placement/VegetationPlacements/f_195465_ net/minecraft/data/worldgen/placement/VegetationPlacements/PATCH_BERRY_RARE +FD: net/minecraft/data/worldgen/placement/VegetationPlacements/f_195466_ net/minecraft/data/worldgen/placement/VegetationPlacements/PATCH_WATERLILY +FD: net/minecraft/data/worldgen/placement/VegetationPlacements/f_195467_ net/minecraft/data/worldgen/placement/VegetationPlacements/PATCH_TALL_GRASS_2 +FD: net/minecraft/data/worldgen/placement/VegetationPlacements/f_195468_ net/minecraft/data/worldgen/placement/VegetationPlacements/PATCH_TALL_GRASS +FD: net/minecraft/data/worldgen/placement/VegetationPlacements/f_195469_ net/minecraft/data/worldgen/placement/VegetationPlacements/PATCH_LARGE_FERN +FD: net/minecraft/data/worldgen/placement/VegetationPlacements/f_195470_ net/minecraft/data/worldgen/placement/VegetationPlacements/PATCH_CACTUS_DESERT +FD: net/minecraft/data/worldgen/placement/VegetationPlacements/f_195471_ net/minecraft/data/worldgen/placement/VegetationPlacements/PATCH_CACTUS_DECORATED +FD: net/minecraft/data/worldgen/placement/VegetationPlacements/f_197412_ net/minecraft/data/worldgen/placement/VegetationPlacements/FLOWER_PLAINS +FD: net/minecraft/data/worldgen/placement/VegetationPlacements/f_198935_ net/minecraft/data/worldgen/placement/VegetationPlacements/PATCH_MELON_SPARSE +FD: net/minecraft/data/worldgen/placement/VegetationPlacements/f_236773_ net/minecraft/data/worldgen/placement/VegetationPlacements/TREES_MANGROVE +FD: net/minecraft/data/worldgen/placement/VegetationPlacements/f_271098_ net/minecraft/data/worldgen/placement/VegetationPlacements/TREES_CHERRY +FD: net/minecraft/data/worldgen/placement/VegetationPlacements/f_271183_ net/minecraft/data/worldgen/placement/VegetationPlacements/FLOWER_CHERRY +FD: net/minecraft/data/worldgen/placement/VillagePlacements/f_197413_ net/minecraft/data/worldgen/placement/VillagePlacements/PILE_HAY_VILLAGE +FD: net/minecraft/data/worldgen/placement/VillagePlacements/f_197414_ net/minecraft/data/worldgen/placement/VillagePlacements/PILE_MELON_VILLAGE +FD: net/minecraft/data/worldgen/placement/VillagePlacements/f_197415_ net/minecraft/data/worldgen/placement/VillagePlacements/PILE_SNOW_VILLAGE +FD: net/minecraft/data/worldgen/placement/VillagePlacements/f_197416_ net/minecraft/data/worldgen/placement/VillagePlacements/PILE_ICE_VILLAGE +FD: net/minecraft/data/worldgen/placement/VillagePlacements/f_197417_ net/minecraft/data/worldgen/placement/VillagePlacements/PILE_PUMPKIN_VILLAGE +FD: net/minecraft/data/worldgen/placement/VillagePlacements/f_197418_ net/minecraft/data/worldgen/placement/VillagePlacements/OAK_VILLAGE +FD: net/minecraft/data/worldgen/placement/VillagePlacements/f_197419_ net/minecraft/data/worldgen/placement/VillagePlacements/ACACIA_VILLAGE +FD: net/minecraft/data/worldgen/placement/VillagePlacements/f_197420_ net/minecraft/data/worldgen/placement/VillagePlacements/SPRUCE_VILLAGE +FD: net/minecraft/data/worldgen/placement/VillagePlacements/f_197421_ net/minecraft/data/worldgen/placement/VillagePlacements/PINE_VILLAGE +FD: net/minecraft/data/worldgen/placement/VillagePlacements/f_197422_ net/minecraft/data/worldgen/placement/VillagePlacements/PATCH_CACTUS_VILLAGE +FD: net/minecraft/data/worldgen/placement/VillagePlacements/f_197423_ net/minecraft/data/worldgen/placement/VillagePlacements/FLOWER_PLAIN_VILLAGE +FD: net/minecraft/data/worldgen/placement/VillagePlacements/f_197424_ net/minecraft/data/worldgen/placement/VillagePlacements/PATCH_TAIGA_GRASS_VILLAGE +FD: net/minecraft/data/worldgen/placement/VillagePlacements/f_197425_ net/minecraft/data/worldgen/placement/VillagePlacements/PATCH_BERRY_BUSH_VILLAGE +FD: net/minecraft/gametest/framework/GameTestAssertPosException/f_127493_ net/minecraft/gametest/framework/GameTestAssertPosException/absolutePos +FD: net/minecraft/gametest/framework/GameTestAssertPosException/f_127494_ net/minecraft/gametest/framework/GameTestAssertPosException/relativePos +FD: net/minecraft/gametest/framework/GameTestAssertPosException/f_127495_ net/minecraft/gametest/framework/GameTestAssertPosException/tick +FD: net/minecraft/gametest/framework/GameTestBatch/f_127539_ net/minecraft/gametest/framework/GameTestBatch/name +FD: net/minecraft/gametest/framework/GameTestBatch/f_127540_ net/minecraft/gametest/framework/GameTestBatch/testFunctions +FD: net/minecraft/gametest/framework/GameTestBatch/f_127541_ net/minecraft/gametest/framework/GameTestBatch/beforeBatchFunction +FD: net/minecraft/gametest/framework/GameTestBatch/f_177056_ net/minecraft/gametest/framework/GameTestBatch/DEFAULT_BATCH_NAME +FD: net/minecraft/gametest/framework/GameTestBatch/f_177057_ net/minecraft/gametest/framework/GameTestBatch/afterBatchFunction +FD: net/minecraft/gametest/framework/GameTestBatchRunner/f_127550_ net/minecraft/gametest/framework/GameTestBatchRunner/LOGGER +FD: net/minecraft/gametest/framework/GameTestBatchRunner/f_127551_ net/minecraft/gametest/framework/GameTestBatchRunner/firstTestNorthWestCorner +FD: net/minecraft/gametest/framework/GameTestBatchRunner/f_127552_ net/minecraft/gametest/framework/GameTestBatchRunner/level +FD: net/minecraft/gametest/framework/GameTestBatchRunner/f_127553_ net/minecraft/gametest/framework/GameTestBatchRunner/testTicker +FD: net/minecraft/gametest/framework/GameTestBatchRunner/f_127554_ net/minecraft/gametest/framework/GameTestBatchRunner/testsPerRow +FD: net/minecraft/gametest/framework/GameTestBatchRunner/f_127555_ net/minecraft/gametest/framework/GameTestBatchRunner/allTestInfos +FD: net/minecraft/gametest/framework/GameTestBatchRunner/f_127557_ net/minecraft/gametest/framework/GameTestBatchRunner/batches +FD: net/minecraft/gametest/framework/GameTestBatchRunner/f_127560_ net/minecraft/gametest/framework/GameTestBatchRunner/nextTestNorthWestCorner +FD: net/minecraft/gametest/framework/GameTestBatchRunner$1/f_127586_ net/minecraft/gametest/framework/GameTestBatchRunner$1/this$0 +FD: net/minecraft/gametest/framework/GameTestBatchRunner$1/f_177080_ net/minecraft/gametest/framework/GameTestBatchRunner$1/val$currentBatchTracker +FD: net/minecraft/gametest/framework/GameTestBatchRunner$1/f_177081_ net/minecraft/gametest/framework/GameTestBatchRunner$1/val$currentBatch +FD: net/minecraft/gametest/framework/GameTestBatchRunner$1/f_177082_ net/minecraft/gametest/framework/GameTestBatchRunner$1/val$batchIndex +FD: net/minecraft/gametest/framework/GameTestEvent/f_127593_ net/minecraft/gametest/framework/GameTestEvent/expectedDelay +FD: net/minecraft/gametest/framework/GameTestEvent/f_127594_ net/minecraft/gametest/framework/GameTestEvent/assertion +FD: net/minecraft/gametest/framework/GameTestHelper/f_127595_ net/minecraft/gametest/framework/GameTestHelper/testInfo +FD: net/minecraft/gametest/framework/GameTestHelper/f_177099_ net/minecraft/gametest/framework/GameTestHelper/finalCheckAdded +FD: net/minecraft/gametest/framework/GameTestHelper$1/f_177460_ net/minecraft/gametest/framework/GameTestHelper$1/this$0 +FD: net/minecraft/gametest/framework/GameTestHelper$2/f_244589_ net/minecraft/gametest/framework/GameTestHelper$2/this$0 +FD: net/minecraft/gametest/framework/GameTestHelper$3/f_286944_ net/minecraft/gametest/framework/GameTestHelper$3/this$0 +FD: net/minecraft/gametest/framework/GameTestInfo/f_127598_ net/minecraft/gametest/framework/GameTestInfo/testFunction +FD: net/minecraft/gametest/framework/GameTestInfo/f_127599_ net/minecraft/gametest/framework/GameTestInfo/structureBlockPos +FD: net/minecraft/gametest/framework/GameTestInfo/f_127600_ net/minecraft/gametest/framework/GameTestInfo/level +FD: net/minecraft/gametest/framework/GameTestInfo/f_127601_ net/minecraft/gametest/framework/GameTestInfo/listeners +FD: net/minecraft/gametest/framework/GameTestInfo/f_127602_ net/minecraft/gametest/framework/GameTestInfo/timeoutTicks +FD: net/minecraft/gametest/framework/GameTestInfo/f_127603_ net/minecraft/gametest/framework/GameTestInfo/sequences +FD: net/minecraft/gametest/framework/GameTestInfo/f_127604_ net/minecraft/gametest/framework/GameTestInfo/runAtTickTimeMap +FD: net/minecraft/gametest/framework/GameTestInfo/f_127605_ net/minecraft/gametest/framework/GameTestInfo/startTick +FD: net/minecraft/gametest/framework/GameTestInfo/f_127606_ net/minecraft/gametest/framework/GameTestInfo/tickCount +FD: net/minecraft/gametest/framework/GameTestInfo/f_127607_ net/minecraft/gametest/framework/GameTestInfo/started +FD: net/minecraft/gametest/framework/GameTestInfo/f_127608_ net/minecraft/gametest/framework/GameTestInfo/timer +FD: net/minecraft/gametest/framework/GameTestInfo/f_127609_ net/minecraft/gametest/framework/GameTestInfo/done +FD: net/minecraft/gametest/framework/GameTestInfo/f_127610_ net/minecraft/gametest/framework/GameTestInfo/rotation +FD: net/minecraft/gametest/framework/GameTestInfo/f_127611_ net/minecraft/gametest/framework/GameTestInfo/error +FD: net/minecraft/gametest/framework/GameTestInfo/f_177469_ net/minecraft/gametest/framework/GameTestInfo/structureBlockEntity +FD: net/minecraft/gametest/framework/GameTestRegistry/f_177495_ net/minecraft/gametest/framework/GameTestRegistry/TEST_FUNCTIONS +FD: net/minecraft/gametest/framework/GameTestRegistry/f_177496_ net/minecraft/gametest/framework/GameTestRegistry/TEST_CLASS_NAMES +FD: net/minecraft/gametest/framework/GameTestRegistry/f_177497_ net/minecraft/gametest/framework/GameTestRegistry/BEFORE_BATCH_FUNCTIONS +FD: net/minecraft/gametest/framework/GameTestRegistry/f_177498_ net/minecraft/gametest/framework/GameTestRegistry/AFTER_BATCH_FUNCTIONS +FD: net/minecraft/gametest/framework/GameTestRegistry/f_177499_ net/minecraft/gametest/framework/GameTestRegistry/LAST_FAILED_TESTS +FD: net/minecraft/gametest/framework/GameTestRunner/f_177521_ net/minecraft/gametest/framework/GameTestRunner/PADDING_AROUND_EACH_STRUCTURE +FD: net/minecraft/gametest/framework/GameTestRunner/f_177522_ net/minecraft/gametest/framework/GameTestRunner/SPACE_BETWEEN_COLUMNS +FD: net/minecraft/gametest/framework/GameTestRunner/f_177523_ net/minecraft/gametest/framework/GameTestRunner/SPACE_BETWEEN_ROWS +FD: net/minecraft/gametest/framework/GameTestRunner/f_177524_ net/minecraft/gametest/framework/GameTestRunner/DEFAULT_TESTS_PER_ROW +FD: net/minecraft/gametest/framework/GameTestRunner/f_177525_ net/minecraft/gametest/framework/GameTestRunner/MAX_TESTS_PER_BATCH +FD: net/minecraft/gametest/framework/GameTestSequence/f_127774_ net/minecraft/gametest/framework/GameTestSequence/parent +FD: net/minecraft/gametest/framework/GameTestSequence/f_127775_ net/minecraft/gametest/framework/GameTestSequence/events +FD: net/minecraft/gametest/framework/GameTestSequence/f_127776_ net/minecraft/gametest/framework/GameTestSequence/lastTick +FD: net/minecraft/gametest/framework/GameTestSequence$Condition/f_177577_ net/minecraft/gametest/framework/GameTestSequence$Condition/this$0 +FD: net/minecraft/gametest/framework/GameTestSequence$Condition/f_177578_ net/minecraft/gametest/framework/GameTestSequence$Condition/NOT_TRIGGERED +FD: net/minecraft/gametest/framework/GameTestSequence$Condition/f_177579_ net/minecraft/gametest/framework/GameTestSequence$Condition/triggerTime +FD: net/minecraft/gametest/framework/GameTestServer/f_177585_ net/minecraft/gametest/framework/GameTestServer/LOGGER +FD: net/minecraft/gametest/framework/GameTestServer/f_177586_ net/minecraft/gametest/framework/GameTestServer/PROGRESS_REPORT_INTERVAL +FD: net/minecraft/gametest/framework/GameTestServer/f_177587_ net/minecraft/gametest/framework/GameTestServer/testBatches +FD: net/minecraft/gametest/framework/GameTestServer/f_177588_ net/minecraft/gametest/framework/GameTestServer/spawnPos +FD: net/minecraft/gametest/framework/GameTestServer/f_177589_ net/minecraft/gametest/framework/GameTestServer/TEST_GAME_RULES +FD: net/minecraft/gametest/framework/GameTestServer/f_177591_ net/minecraft/gametest/framework/GameTestServer/testTracker +FD: net/minecraft/gametest/framework/GameTestServer/f_236789_ net/minecraft/gametest/framework/GameTestServer/NO_SERVICES +FD: net/minecraft/gametest/framework/GameTestServer/f_243964_ net/minecraft/gametest/framework/GameTestServer/WORLD_OPTIONS +FD: net/minecraft/gametest/framework/GameTestServer$1/f_177641_ net/minecraft/gametest/framework/GameTestServer$1/this$0 +FD: net/minecraft/gametest/framework/GameTestTicker/f_127784_ net/minecraft/gametest/framework/GameTestTicker/testInfos +FD: net/minecraft/gametest/framework/GameTestTicker/f_177648_ net/minecraft/gametest/framework/GameTestTicker/SINGLETON +FD: net/minecraft/gametest/framework/GlobalTestReporter/f_177649_ net/minecraft/gametest/framework/GlobalTestReporter/DELEGATE +FD: net/minecraft/gametest/framework/JUnitLikeTestReporter/f_177659_ net/minecraft/gametest/framework/JUnitLikeTestReporter/document +FD: net/minecraft/gametest/framework/JUnitLikeTestReporter/f_177660_ net/minecraft/gametest/framework/JUnitLikeTestReporter/testSuite +FD: net/minecraft/gametest/framework/JUnitLikeTestReporter/f_177661_ net/minecraft/gametest/framework/JUnitLikeTestReporter/stopwatch +FD: net/minecraft/gametest/framework/JUnitLikeTestReporter/f_177662_ net/minecraft/gametest/framework/JUnitLikeTestReporter/destination +FD: net/minecraft/gametest/framework/LogTestReporter/f_127793_ net/minecraft/gametest/framework/LogTestReporter/LOGGER +FD: net/minecraft/gametest/framework/MultipleTestTracker/f_127798_ net/minecraft/gametest/framework/MultipleTestTracker/tests +FD: net/minecraft/gametest/framework/MultipleTestTracker/f_127799_ net/minecraft/gametest/framework/MultipleTestTracker/listeners +FD: net/minecraft/gametest/framework/MultipleTestTracker/f_177677_ net/minecraft/gametest/framework/MultipleTestTracker/NOT_STARTED_TEST_CHAR +FD: net/minecraft/gametest/framework/MultipleTestTracker/f_177678_ net/minecraft/gametest/framework/MultipleTestTracker/ONGOING_TEST_CHAR +FD: net/minecraft/gametest/framework/MultipleTestTracker/f_177679_ net/minecraft/gametest/framework/MultipleTestTracker/SUCCESSFUL_TEST_CHAR +FD: net/minecraft/gametest/framework/MultipleTestTracker/f_177680_ net/minecraft/gametest/framework/MultipleTestTracker/FAILED_OPTIONAL_TEST_CHAR +FD: net/minecraft/gametest/framework/MultipleTestTracker/f_177681_ net/minecraft/gametest/framework/MultipleTestTracker/FAILED_REQUIRED_TEST_CHAR +FD: net/minecraft/gametest/framework/MultipleTestTracker$1/f_127824_ net/minecraft/gametest/framework/MultipleTestTracker$1/val$listener +FD: net/minecraft/gametest/framework/MultipleTestTracker$1/f_127825_ net/minecraft/gametest/framework/MultipleTestTracker$1/this$0 +FD: net/minecraft/gametest/framework/ReportGameListener/f_177686_ net/minecraft/gametest/framework/ReportGameListener/attempts +FD: net/minecraft/gametest/framework/ReportGameListener/f_177687_ net/minecraft/gametest/framework/ReportGameListener/successes +FD: net/minecraft/gametest/framework/ReportGameListener/f_177688_ net/minecraft/gametest/framework/ReportGameListener/originalTestInfo +FD: net/minecraft/gametest/framework/ReportGameListener/f_177689_ net/minecraft/gametest/framework/ReportGameListener/testTicker +FD: net/minecraft/gametest/framework/ReportGameListener/f_177690_ net/minecraft/gametest/framework/ReportGameListener/structurePos +FD: net/minecraft/gametest/framework/StructureUtils/f_127833_ net/minecraft/gametest/framework/StructureUtils/testStructuresDir +FD: net/minecraft/gametest/framework/StructureUtils/f_177741_ net/minecraft/gametest/framework/StructureUtils/DEFAULT_TEST_STRUCTURES_DIR +FD: net/minecraft/gametest/framework/StructureUtils/f_177742_ net/minecraft/gametest/framework/StructureUtils/LOGGER +FD: net/minecraft/gametest/framework/StructureUtils/f_177743_ net/minecraft/gametest/framework/StructureUtils/HOW_MANY_CHUNKS_TO_LOAD_IN_EACH_DIRECTION_OF_STRUCTURE +FD: net/minecraft/gametest/framework/StructureUtils$1/f_177776_ net/minecraft/gametest/framework/StructureUtils$1/$SwitchMap$net$minecraft$world$level$block$Rotation +FD: net/minecraft/gametest/framework/TeamcityTestReporter/f_177778_ net/minecraft/gametest/framework/TeamcityTestReporter/LOGGER +FD: net/minecraft/gametest/framework/TeamcityTestReporter/f_177779_ net/minecraft/gametest/framework/TeamcityTestReporter/ESCAPER +FD: net/minecraft/gametest/framework/TestClassNameArgument/f_127914_ net/minecraft/gametest/framework/TestClassNameArgument/EXAMPLES +FD: net/minecraft/gametest/framework/TestCommand/f_177786_ net/minecraft/gametest/framework/TestCommand/DEFAULT_CLEAR_RADIUS +FD: net/minecraft/gametest/framework/TestCommand/f_177787_ net/minecraft/gametest/framework/TestCommand/MAX_CLEAR_RADIUS +FD: net/minecraft/gametest/framework/TestCommand/f_177788_ net/minecraft/gametest/framework/TestCommand/STRUCTURE_BLOCK_NEARBY_SEARCH_RADIUS +FD: net/minecraft/gametest/framework/TestCommand/f_177789_ net/minecraft/gametest/framework/TestCommand/STRUCTURE_BLOCK_FULL_SEARCH_RADIUS +FD: net/minecraft/gametest/framework/TestCommand/f_177790_ net/minecraft/gametest/framework/TestCommand/TEST_POS_Z_OFFSET_FROM_PLAYER +FD: net/minecraft/gametest/framework/TestCommand/f_177791_ net/minecraft/gametest/framework/TestCommand/SHOW_POS_DURATION_MS +FD: net/minecraft/gametest/framework/TestCommand/f_177792_ net/minecraft/gametest/framework/TestCommand/DEFAULT_X_SIZE +FD: net/minecraft/gametest/framework/TestCommand/f_177793_ net/minecraft/gametest/framework/TestCommand/DEFAULT_Y_SIZE +FD: net/minecraft/gametest/framework/TestCommand/f_177794_ net/minecraft/gametest/framework/TestCommand/DEFAULT_Z_SIZE +FD: net/minecraft/gametest/framework/TestCommand$TestSummaryDisplayer/f_128058_ net/minecraft/gametest/framework/TestCommand$TestSummaryDisplayer/level +FD: net/minecraft/gametest/framework/TestCommand$TestSummaryDisplayer/f_128059_ net/minecraft/gametest/framework/TestCommand$TestSummaryDisplayer/tracker +FD: net/minecraft/gametest/framework/TestFunction/f_128067_ net/minecraft/gametest/framework/TestFunction/batchName +FD: net/minecraft/gametest/framework/TestFunction/f_128068_ net/minecraft/gametest/framework/TestFunction/testName +FD: net/minecraft/gametest/framework/TestFunction/f_128069_ net/minecraft/gametest/framework/TestFunction/structureName +FD: net/minecraft/gametest/framework/TestFunction/f_128070_ net/minecraft/gametest/framework/TestFunction/required +FD: net/minecraft/gametest/framework/TestFunction/f_128071_ net/minecraft/gametest/framework/TestFunction/function +FD: net/minecraft/gametest/framework/TestFunction/f_128072_ net/minecraft/gametest/framework/TestFunction/maxTicks +FD: net/minecraft/gametest/framework/TestFunction/f_128073_ net/minecraft/gametest/framework/TestFunction/setupTicks +FD: net/minecraft/gametest/framework/TestFunction/f_128074_ net/minecraft/gametest/framework/TestFunction/rotation +FD: net/minecraft/gametest/framework/TestFunction/f_177798_ net/minecraft/gametest/framework/TestFunction/maxAttempts +FD: net/minecraft/gametest/framework/TestFunction/f_177799_ net/minecraft/gametest/framework/TestFunction/requiredSuccesses +FD: net/minecraft/gametest/framework/TestFunctionArgument/f_128085_ net/minecraft/gametest/framework/TestFunctionArgument/EXAMPLES +FD: net/minecraft/locale/Language/f_128101_ net/minecraft/locale/Language/LOGGER +FD: net/minecraft/locale/Language/f_128102_ net/minecraft/locale/Language/GSON +FD: net/minecraft/locale/Language/f_128103_ net/minecraft/locale/Language/UNSUPPORTED_FORMAT_PATTERN +FD: net/minecraft/locale/Language/f_128104_ net/minecraft/locale/Language/instance +FD: net/minecraft/locale/Language/f_177832_ net/minecraft/locale/Language/DEFAULT +FD: net/minecraft/locale/Language$1/f_128119_ net/minecraft/locale/Language$1/val$storage +FD: net/minecraft/nbt/ByteArrayTag/f_128185_ net/minecraft/nbt/ByteArrayTag/TYPE +FD: net/minecraft/nbt/ByteArrayTag/f_128186_ net/minecraft/nbt/ByteArrayTag/data +FD: net/minecraft/nbt/ByteArrayTag/f_263438_ net/minecraft/nbt/ByteArrayTag/SELF_SIZE_IN_BYTES +FD: net/minecraft/nbt/ByteTag/f_128255_ net/minecraft/nbt/ByteTag/TYPE +FD: net/minecraft/nbt/ByteTag/f_128256_ net/minecraft/nbt/ByteTag/ZERO +FD: net/minecraft/nbt/ByteTag/f_128257_ net/minecraft/nbt/ByteTag/ONE +FD: net/minecraft/nbt/ByteTag/f_128258_ net/minecraft/nbt/ByteTag/data +FD: net/minecraft/nbt/ByteTag/f_263439_ net/minecraft/nbt/ByteTag/SELF_SIZE_IN_BYTES +FD: net/minecraft/nbt/ByteTag$Cache/f_128301_ net/minecraft/nbt/ByteTag$Cache/cache +FD: net/minecraft/nbt/CompoundTag/f_128325_ net/minecraft/nbt/CompoundTag/CODEC +FD: net/minecraft/nbt/CompoundTag/f_128326_ net/minecraft/nbt/CompoundTag/TYPE +FD: net/minecraft/nbt/CompoundTag/f_128329_ net/minecraft/nbt/CompoundTag/tags +FD: net/minecraft/nbt/CompoundTag/f_263436_ net/minecraft/nbt/CompoundTag/SELF_SIZE_IN_BYTES +FD: net/minecraft/nbt/CompoundTag/f_263443_ net/minecraft/nbt/CompoundTag/MAP_ENTRY_SIZE_IN_BYTES +FD: net/minecraft/nbt/CompoundTag$2/f_197448_ net/minecraft/nbt/CompoundTag$2/$SwitchMap$net$minecraft$nbt$StreamTagVisitor$EntryResult +FD: net/minecraft/nbt/CompoundTag$2/f_197449_ net/minecraft/nbt/CompoundTag$2/$SwitchMap$net$minecraft$nbt$StreamTagVisitor$ValueResult +FD: net/minecraft/nbt/DoubleTag/f_128493_ net/minecraft/nbt/DoubleTag/ZERO +FD: net/minecraft/nbt/DoubleTag/f_128494_ net/minecraft/nbt/DoubleTag/TYPE +FD: net/minecraft/nbt/DoubleTag/f_128495_ net/minecraft/nbt/DoubleTag/data +FD: net/minecraft/nbt/DoubleTag/f_263442_ net/minecraft/nbt/DoubleTag/SELF_SIZE_IN_BYTES +FD: net/minecraft/nbt/EndTag/f_128533_ net/minecraft/nbt/EndTag/TYPE +FD: net/minecraft/nbt/EndTag/f_128534_ net/minecraft/nbt/EndTag/INSTANCE +FD: net/minecraft/nbt/EndTag/f_263430_ net/minecraft/nbt/EndTag/SELF_SIZE_IN_BYTES +FD: net/minecraft/nbt/FloatTag/f_128559_ net/minecraft/nbt/FloatTag/ZERO +FD: net/minecraft/nbt/FloatTag/f_128560_ net/minecraft/nbt/FloatTag/TYPE +FD: net/minecraft/nbt/FloatTag/f_128561_ net/minecraft/nbt/FloatTag/data +FD: net/minecraft/nbt/FloatTag/f_263444_ net/minecraft/nbt/FloatTag/SELF_SIZE_IN_BYTES +FD: net/minecraft/nbt/IntArrayTag/f_128599_ net/minecraft/nbt/IntArrayTag/TYPE +FD: net/minecraft/nbt/IntArrayTag/f_128600_ net/minecraft/nbt/IntArrayTag/data +FD: net/minecraft/nbt/IntArrayTag/f_263434_ net/minecraft/nbt/IntArrayTag/SELF_SIZE_IN_BYTES +FD: net/minecraft/nbt/IntTag/f_128670_ net/minecraft/nbt/IntTag/TYPE +FD: net/minecraft/nbt/IntTag/f_128671_ net/minecraft/nbt/IntTag/data +FD: net/minecraft/nbt/IntTag/f_263440_ net/minecraft/nbt/IntTag/SELF_SIZE_IN_BYTES +FD: net/minecraft/nbt/IntTag$Cache/f_128712_ net/minecraft/nbt/IntTag$Cache/cache +FD: net/minecraft/nbt/IntTag$Cache/f_177985_ net/minecraft/nbt/IntTag$Cache/HIGH +FD: net/minecraft/nbt/IntTag$Cache/f_177986_ net/minecraft/nbt/IntTag$Cache/LOW +FD: net/minecraft/nbt/ListTag/f_128714_ net/minecraft/nbt/ListTag/TYPE +FD: net/minecraft/nbt/ListTag/f_128716_ net/minecraft/nbt/ListTag/list +FD: net/minecraft/nbt/ListTag/f_128717_ net/minecraft/nbt/ListTag/type +FD: net/minecraft/nbt/ListTag/f_263445_ net/minecraft/nbt/ListTag/SELF_SIZE_IN_BYTES +FD: net/minecraft/nbt/ListTag$2/f_197493_ net/minecraft/nbt/ListTag$2/$SwitchMap$net$minecraft$nbt$StreamTagVisitor$ValueResult +FD: net/minecraft/nbt/ListTag$2/f_197494_ net/minecraft/nbt/ListTag$2/$SwitchMap$net$minecraft$nbt$StreamTagVisitor$EntryResult +FD: net/minecraft/nbt/LongArrayTag/f_128800_ net/minecraft/nbt/LongArrayTag/TYPE +FD: net/minecraft/nbt/LongArrayTag/f_128801_ net/minecraft/nbt/LongArrayTag/data +FD: net/minecraft/nbt/LongArrayTag/f_263437_ net/minecraft/nbt/LongArrayTag/SELF_SIZE_IN_BYTES +FD: net/minecraft/nbt/LongTag/f_128873_ net/minecraft/nbt/LongTag/TYPE +FD: net/minecraft/nbt/LongTag/f_128874_ net/minecraft/nbt/LongTag/data +FD: net/minecraft/nbt/LongTag/f_263435_ net/minecraft/nbt/LongTag/SELF_SIZE_IN_BYTES +FD: net/minecraft/nbt/LongTag$Cache/f_128915_ net/minecraft/nbt/LongTag$Cache/cache +FD: net/minecraft/nbt/LongTag$Cache/f_177999_ net/minecraft/nbt/LongTag$Cache/HIGH +FD: net/minecraft/nbt/LongTag$Cache/f_178000_ net/minecraft/nbt/LongTag$Cache/LOW +FD: net/minecraft/nbt/NbtAccounter/f_128917_ net/minecraft/nbt/NbtAccounter/UNLIMITED +FD: net/minecraft/nbt/NbtAccounter/f_128918_ net/minecraft/nbt/NbtAccounter/quota +FD: net/minecraft/nbt/NbtAccounter/f_128919_ net/minecraft/nbt/NbtAccounter/usage +FD: net/minecraft/nbt/NbtIo$1/f_197512_ net/minecraft/nbt/NbtIo$1/$SwitchMap$net$minecraft$nbt$StreamTagVisitor$ValueResult +FD: net/minecraft/nbt/NbtOps/f_128958_ net/minecraft/nbt/NbtOps/INSTANCE +FD: net/minecraft/nbt/NbtOps/f_244338_ net/minecraft/nbt/NbtOps/WRAPPER_MARKER +FD: net/minecraft/nbt/NbtOps$1/f_129163_ net/minecraft/nbt/NbtOps$1/val$tag +FD: net/minecraft/nbt/NbtOps$1/f_129164_ net/minecraft/nbt/NbtOps$1/this$0 +FD: net/minecraft/nbt/NbtOps$ByteListCollector/f_243771_ net/minecraft/nbt/NbtOps$ByteListCollector/values +FD: net/minecraft/nbt/NbtOps$HeterogenousListCollector/f_244100_ net/minecraft/nbt/NbtOps$HeterogenousListCollector/result +FD: net/minecraft/nbt/NbtOps$HomogenousListCollector/f_244352_ net/minecraft/nbt/NbtOps$HomogenousListCollector/result +FD: net/minecraft/nbt/NbtOps$InitialListCollector/f_243778_ net/minecraft/nbt/NbtOps$InitialListCollector/INSTANCE +FD: net/minecraft/nbt/NbtOps$IntListCollector/f_244530_ net/minecraft/nbt/NbtOps$IntListCollector/values +FD: net/minecraft/nbt/NbtOps$LongListCollector/f_244231_ net/minecraft/nbt/NbtOps$LongListCollector/values +FD: net/minecraft/nbt/NbtOps$NbtRecordBuilder/f_129181_ net/minecraft/nbt/NbtOps$NbtRecordBuilder/this$0 +FD: net/minecraft/nbt/NbtUtils/f_129200_ net/minecraft/nbt/NbtUtils/LOGGER +FD: net/minecraft/nbt/NbtUtils/f_178007_ net/minecraft/nbt/NbtUtils/SNBT_DATA_TAG +FD: net/minecraft/nbt/NbtUtils/f_178008_ net/minecraft/nbt/NbtUtils/YXZ_LISTTAG_INT_COMPARATOR +FD: net/minecraft/nbt/NbtUtils/f_178009_ net/minecraft/nbt/NbtUtils/YXZ_LISTTAG_DOUBLE_COMPARATOR +FD: net/minecraft/nbt/NbtUtils/f_178010_ net/minecraft/nbt/NbtUtils/PROPERTIES_START +FD: net/minecraft/nbt/NbtUtils/f_178011_ net/minecraft/nbt/NbtUtils/PROPERTIES_END +FD: net/minecraft/nbt/NbtUtils/f_178012_ net/minecraft/nbt/NbtUtils/ELEMENT_SEPARATOR +FD: net/minecraft/nbt/NbtUtils/f_178013_ net/minecraft/nbt/NbtUtils/KEY_VALUE_SEPARATOR +FD: net/minecraft/nbt/NbtUtils/f_178014_ net/minecraft/nbt/NbtUtils/COMMA_SPLITTER +FD: net/minecraft/nbt/NbtUtils/f_178015_ net/minecraft/nbt/NbtUtils/COLON_SPLITTER +FD: net/minecraft/nbt/NbtUtils/f_178016_ net/minecraft/nbt/NbtUtils/INDENT +FD: net/minecraft/nbt/NbtUtils/f_178017_ net/minecraft/nbt/NbtUtils/NOT_FOUND +FD: net/minecraft/nbt/ShortTag/f_129244_ net/minecraft/nbt/ShortTag/TYPE +FD: net/minecraft/nbt/ShortTag/f_129245_ net/minecraft/nbt/ShortTag/data +FD: net/minecraft/nbt/ShortTag/f_263431_ net/minecraft/nbt/ShortTag/SELF_SIZE_IN_BYTES +FD: net/minecraft/nbt/ShortTag$Cache/f_129286_ net/minecraft/nbt/ShortTag$Cache/cache +FD: net/minecraft/nbt/ShortTag$Cache/f_178085_ net/minecraft/nbt/ShortTag$Cache/HIGH +FD: net/minecraft/nbt/ShortTag$Cache/f_178086_ net/minecraft/nbt/ShortTag$Cache/LOW +FD: net/minecraft/nbt/SnbtPrinterTagVisitor/f_178088_ net/minecraft/nbt/SnbtPrinterTagVisitor/KEY_ORDER +FD: net/minecraft/nbt/SnbtPrinterTagVisitor/f_178089_ net/minecraft/nbt/SnbtPrinterTagVisitor/NO_INDENTATION +FD: net/minecraft/nbt/SnbtPrinterTagVisitor/f_178090_ net/minecraft/nbt/SnbtPrinterTagVisitor/SIMPLE_VALUE +FD: net/minecraft/nbt/SnbtPrinterTagVisitor/f_178091_ net/minecraft/nbt/SnbtPrinterTagVisitor/NAME_VALUE_SEPARATOR +FD: net/minecraft/nbt/SnbtPrinterTagVisitor/f_178092_ net/minecraft/nbt/SnbtPrinterTagVisitor/ELEMENT_SEPARATOR +FD: net/minecraft/nbt/SnbtPrinterTagVisitor/f_178093_ net/minecraft/nbt/SnbtPrinterTagVisitor/LIST_OPEN +FD: net/minecraft/nbt/SnbtPrinterTagVisitor/f_178094_ net/minecraft/nbt/SnbtPrinterTagVisitor/LIST_CLOSE +FD: net/minecraft/nbt/SnbtPrinterTagVisitor/f_178095_ net/minecraft/nbt/SnbtPrinterTagVisitor/LIST_TYPE_SEPARATOR +FD: net/minecraft/nbt/SnbtPrinterTagVisitor/f_178096_ net/minecraft/nbt/SnbtPrinterTagVisitor/ELEMENT_SPACING +FD: net/minecraft/nbt/SnbtPrinterTagVisitor/f_178097_ net/minecraft/nbt/SnbtPrinterTagVisitor/STRUCT_OPEN +FD: net/minecraft/nbt/SnbtPrinterTagVisitor/f_178098_ net/minecraft/nbt/SnbtPrinterTagVisitor/STRUCT_CLOSE +FD: net/minecraft/nbt/SnbtPrinterTagVisitor/f_178099_ net/minecraft/nbt/SnbtPrinterTagVisitor/NEWLINE +FD: net/minecraft/nbt/SnbtPrinterTagVisitor/f_178100_ net/minecraft/nbt/SnbtPrinterTagVisitor/indentation +FD: net/minecraft/nbt/SnbtPrinterTagVisitor/f_178101_ net/minecraft/nbt/SnbtPrinterTagVisitor/depth +FD: net/minecraft/nbt/SnbtPrinterTagVisitor/f_178102_ net/minecraft/nbt/SnbtPrinterTagVisitor/path +FD: net/minecraft/nbt/SnbtPrinterTagVisitor/f_178103_ net/minecraft/nbt/SnbtPrinterTagVisitor/result +FD: net/minecraft/nbt/StreamTagVisitor$EntryResult/$VALUES net/minecraft/nbt/StreamTagVisitor$EntryResult/$VALUES +FD: net/minecraft/nbt/StreamTagVisitor$EntryResult/BREAK net/minecraft/nbt/StreamTagVisitor$EntryResult/BREAK +FD: net/minecraft/nbt/StreamTagVisitor$EntryResult/ENTER net/minecraft/nbt/StreamTagVisitor$EntryResult/ENTER +FD: net/minecraft/nbt/StreamTagVisitor$EntryResult/HALT net/minecraft/nbt/StreamTagVisitor$EntryResult/HALT +FD: net/minecraft/nbt/StreamTagVisitor$EntryResult/SKIP net/minecraft/nbt/StreamTagVisitor$EntryResult/SKIP +FD: net/minecraft/nbt/StreamTagVisitor$ValueResult/$VALUES net/minecraft/nbt/StreamTagVisitor$ValueResult/$VALUES +FD: net/minecraft/nbt/StreamTagVisitor$ValueResult/BREAK net/minecraft/nbt/StreamTagVisitor$ValueResult/BREAK +FD: net/minecraft/nbt/StreamTagVisitor$ValueResult/CONTINUE net/minecraft/nbt/StreamTagVisitor$ValueResult/CONTINUE +FD: net/minecraft/nbt/StreamTagVisitor$ValueResult/HALT net/minecraft/nbt/StreamTagVisitor$ValueResult/HALT +FD: net/minecraft/nbt/StringTag/f_129288_ net/minecraft/nbt/StringTag/TYPE +FD: net/minecraft/nbt/StringTag/f_129289_ net/minecraft/nbt/StringTag/EMPTY +FD: net/minecraft/nbt/StringTag/f_129290_ net/minecraft/nbt/StringTag/data +FD: net/minecraft/nbt/StringTag/f_178149_ net/minecraft/nbt/StringTag/DOUBLE_QUOTE +FD: net/minecraft/nbt/StringTag/f_178150_ net/minecraft/nbt/StringTag/SINGLE_QUOTE +FD: net/minecraft/nbt/StringTag/f_178151_ net/minecraft/nbt/StringTag/ESCAPE +FD: net/minecraft/nbt/StringTag/f_178152_ net/minecraft/nbt/StringTag/NOT_SET +FD: net/minecraft/nbt/StringTag/f_263432_ net/minecraft/nbt/StringTag/SELF_SIZE_IN_BYTES +FD: net/minecraft/nbt/StringTagVisitor/f_178155_ net/minecraft/nbt/StringTagVisitor/SIMPLE_VALUE +FD: net/minecraft/nbt/StringTagVisitor/f_178156_ net/minecraft/nbt/StringTagVisitor/builder +FD: net/minecraft/nbt/Tag/f_178189_ net/minecraft/nbt/Tag/OBJECT_HEADER +FD: net/minecraft/nbt/Tag/f_178190_ net/minecraft/nbt/Tag/ARRAY_HEADER +FD: net/minecraft/nbt/Tag/f_178191_ net/minecraft/nbt/Tag/OBJECT_REFERENCE +FD: net/minecraft/nbt/Tag/f_178192_ net/minecraft/nbt/Tag/STRING_SIZE +FD: net/minecraft/nbt/Tag/f_178193_ net/minecraft/nbt/Tag/TAG_END +FD: net/minecraft/nbt/Tag/f_178194_ net/minecraft/nbt/Tag/TAG_BYTE +FD: net/minecraft/nbt/Tag/f_178195_ net/minecraft/nbt/Tag/TAG_SHORT +FD: net/minecraft/nbt/Tag/f_178196_ net/minecraft/nbt/Tag/TAG_INT +FD: net/minecraft/nbt/Tag/f_178197_ net/minecraft/nbt/Tag/TAG_LONG +FD: net/minecraft/nbt/Tag/f_178198_ net/minecraft/nbt/Tag/TAG_FLOAT +FD: net/minecraft/nbt/Tag/f_178199_ net/minecraft/nbt/Tag/TAG_DOUBLE +FD: net/minecraft/nbt/Tag/f_178200_ net/minecraft/nbt/Tag/TAG_BYTE_ARRAY +FD: net/minecraft/nbt/Tag/f_178201_ net/minecraft/nbt/Tag/TAG_STRING +FD: net/minecraft/nbt/Tag/f_178202_ net/minecraft/nbt/Tag/TAG_LIST +FD: net/minecraft/nbt/Tag/f_178203_ net/minecraft/nbt/Tag/TAG_COMPOUND +FD: net/minecraft/nbt/Tag/f_178204_ net/minecraft/nbt/Tag/TAG_INT_ARRAY +FD: net/minecraft/nbt/Tag/f_178205_ net/minecraft/nbt/Tag/TAG_LONG_ARRAY +FD: net/minecraft/nbt/Tag/f_178206_ net/minecraft/nbt/Tag/TAG_ANY_NUMERIC +FD: net/minecraft/nbt/Tag/f_178207_ net/minecraft/nbt/Tag/MAX_DEPTH +FD: net/minecraft/nbt/TagParser/f_129334_ net/minecraft/nbt/TagParser/ERROR_TRAILING_DATA +FD: net/minecraft/nbt/TagParser/f_129335_ net/minecraft/nbt/TagParser/ERROR_EXPECTED_KEY +FD: net/minecraft/nbt/TagParser/f_129336_ net/minecraft/nbt/TagParser/ERROR_EXPECTED_VALUE +FD: net/minecraft/nbt/TagParser/f_129337_ net/minecraft/nbt/TagParser/ERROR_INSERT_MIXED_LIST +FD: net/minecraft/nbt/TagParser/f_129338_ net/minecraft/nbt/TagParser/ERROR_INSERT_MIXED_ARRAY +FD: net/minecraft/nbt/TagParser/f_129339_ net/minecraft/nbt/TagParser/ERROR_INVALID_ARRAY +FD: net/minecraft/nbt/TagParser/f_129340_ net/minecraft/nbt/TagParser/DOUBLE_PATTERN_NOSUFFIX +FD: net/minecraft/nbt/TagParser/f_129341_ net/minecraft/nbt/TagParser/DOUBLE_PATTERN +FD: net/minecraft/nbt/TagParser/f_129342_ net/minecraft/nbt/TagParser/FLOAT_PATTERN +FD: net/minecraft/nbt/TagParser/f_129343_ net/minecraft/nbt/TagParser/BYTE_PATTERN +FD: net/minecraft/nbt/TagParser/f_129344_ net/minecraft/nbt/TagParser/LONG_PATTERN +FD: net/minecraft/nbt/TagParser/f_129345_ net/minecraft/nbt/TagParser/SHORT_PATTERN +FD: net/minecraft/nbt/TagParser/f_129346_ net/minecraft/nbt/TagParser/INT_PATTERN +FD: net/minecraft/nbt/TagParser/f_129347_ net/minecraft/nbt/TagParser/reader +FD: net/minecraft/nbt/TagParser/f_178209_ net/minecraft/nbt/TagParser/ELEMENT_SEPARATOR +FD: net/minecraft/nbt/TagParser/f_178210_ net/minecraft/nbt/TagParser/NAME_VALUE_SEPARATOR +FD: net/minecraft/nbt/TagParser/f_178211_ net/minecraft/nbt/TagParser/LIST_OPEN +FD: net/minecraft/nbt/TagParser/f_178212_ net/minecraft/nbt/TagParser/LIST_CLOSE +FD: net/minecraft/nbt/TagParser/f_178213_ net/minecraft/nbt/TagParser/STRUCT_CLOSE +FD: net/minecraft/nbt/TagParser/f_178214_ net/minecraft/nbt/TagParser/STRUCT_OPEN +FD: net/minecraft/nbt/TagType$1/f_129382_ net/minecraft/nbt/TagType$1/val$id +FD: net/minecraft/nbt/TagType$2/f_197592_ net/minecraft/nbt/TagType$2/$SwitchMap$net$minecraft$nbt$StreamTagVisitor$ValueResult +FD: net/minecraft/nbt/TagTypes/f_129395_ net/minecraft/nbt/TagTypes/TYPES +FD: net/minecraft/nbt/TextComponentTagVisitor/f_178229_ net/minecraft/nbt/TextComponentTagVisitor/LOGGER +FD: net/minecraft/nbt/TextComponentTagVisitor/f_178230_ net/minecraft/nbt/TextComponentTagVisitor/INLINE_LIST_THRESHOLD +FD: net/minecraft/nbt/TextComponentTagVisitor/f_178231_ net/minecraft/nbt/TextComponentTagVisitor/INLINE_ELEMENT_TYPES +FD: net/minecraft/nbt/TextComponentTagVisitor/f_178232_ net/minecraft/nbt/TextComponentTagVisitor/SYNTAX_HIGHLIGHTING_KEY +FD: net/minecraft/nbt/TextComponentTagVisitor/f_178233_ net/minecraft/nbt/TextComponentTagVisitor/SYNTAX_HIGHLIGHTING_STRING +FD: net/minecraft/nbt/TextComponentTagVisitor/f_178234_ net/minecraft/nbt/TextComponentTagVisitor/SYNTAX_HIGHLIGHTING_NUMBER +FD: net/minecraft/nbt/TextComponentTagVisitor/f_178235_ net/minecraft/nbt/TextComponentTagVisitor/SYNTAX_HIGHLIGHTING_NUMBER_TYPE +FD: net/minecraft/nbt/TextComponentTagVisitor/f_178236_ net/minecraft/nbt/TextComponentTagVisitor/SIMPLE_VALUE +FD: net/minecraft/nbt/TextComponentTagVisitor/f_178237_ net/minecraft/nbt/TextComponentTagVisitor/NAME_VALUE_SEPARATOR +FD: net/minecraft/nbt/TextComponentTagVisitor/f_178238_ net/minecraft/nbt/TextComponentTagVisitor/ELEMENT_SEPARATOR +FD: net/minecraft/nbt/TextComponentTagVisitor/f_178239_ net/minecraft/nbt/TextComponentTagVisitor/LIST_OPEN +FD: net/minecraft/nbt/TextComponentTagVisitor/f_178240_ net/minecraft/nbt/TextComponentTagVisitor/LIST_CLOSE +FD: net/minecraft/nbt/TextComponentTagVisitor/f_178241_ net/minecraft/nbt/TextComponentTagVisitor/LIST_TYPE_SEPARATOR +FD: net/minecraft/nbt/TextComponentTagVisitor/f_178242_ net/minecraft/nbt/TextComponentTagVisitor/ELEMENT_SPACING +FD: net/minecraft/nbt/TextComponentTagVisitor/f_178243_ net/minecraft/nbt/TextComponentTagVisitor/STRUCT_OPEN +FD: net/minecraft/nbt/TextComponentTagVisitor/f_178244_ net/minecraft/nbt/TextComponentTagVisitor/STRUCT_CLOSE +FD: net/minecraft/nbt/TextComponentTagVisitor/f_178245_ net/minecraft/nbt/TextComponentTagVisitor/NEWLINE +FD: net/minecraft/nbt/TextComponentTagVisitor/f_178246_ net/minecraft/nbt/TextComponentTagVisitor/indentation +FD: net/minecraft/nbt/TextComponentTagVisitor/f_178247_ net/minecraft/nbt/TextComponentTagVisitor/depth +FD: net/minecraft/nbt/TextComponentTagVisitor/f_178248_ net/minecraft/nbt/TextComponentTagVisitor/result +FD: net/minecraft/nbt/visitors/CollectFields/f_197602_ net/minecraft/nbt/visitors/CollectFields/fieldsToGetCount +FD: net/minecraft/nbt/visitors/CollectFields/f_197603_ net/minecraft/nbt/visitors/CollectFields/wantedTypes +FD: net/minecraft/nbt/visitors/CollectFields/f_197604_ net/minecraft/nbt/visitors/CollectFields/stack +FD: net/minecraft/nbt/visitors/CollectToTag/f_197662_ net/minecraft/nbt/visitors/CollectToTag/lastId +FD: net/minecraft/nbt/visitors/CollectToTag/f_197663_ net/minecraft/nbt/visitors/CollectToTag/rootTag +FD: net/minecraft/nbt/visitors/CollectToTag/f_197664_ net/minecraft/nbt/visitors/CollectToTag/consumerStack +FD: net/minecraft/nbt/visitors/FieldSelector/f_202497_ net/minecraft/nbt/visitors/FieldSelector/path +FD: net/minecraft/nbt/visitors/FieldSelector/f_202498_ net/minecraft/nbt/visitors/FieldSelector/type +FD: net/minecraft/nbt/visitors/FieldSelector/f_202499_ net/minecraft/nbt/visitors/FieldSelector/name +FD: net/minecraft/nbt/visitors/FieldTree/f_202523_ net/minecraft/nbt/visitors/FieldTree/depth +FD: net/minecraft/nbt/visitors/FieldTree/f_202524_ net/minecraft/nbt/visitors/FieldTree/selectedFields +FD: net/minecraft/nbt/visitors/FieldTree/f_202525_ net/minecraft/nbt/visitors/FieldTree/fieldsToRecurse +FD: net/minecraft/nbt/visitors/SkipAll/f_197715_ net/minecraft/nbt/visitors/SkipAll/INSTANCE +FD: net/minecraft/nbt/visitors/SkipFields/f_202547_ net/minecraft/nbt/visitors/SkipFields/stack +FD: net/minecraft/network/CipherBase/f_129399_ net/minecraft/network/CipherBase/cipher +FD: net/minecraft/network/CipherBase/f_129400_ net/minecraft/network/CipherBase/heapIn +FD: net/minecraft/network/CipherBase/f_129401_ net/minecraft/network/CipherBase/heapOut +FD: net/minecraft/network/CipherDecoder/f_129412_ net/minecraft/network/CipherDecoder/cipher +FD: net/minecraft/network/CipherEncoder/f_129423_ net/minecraft/network/CipherEncoder/cipher +FD: net/minecraft/network/CompressionDecoder/f_129434_ net/minecraft/network/CompressionDecoder/inflater +FD: net/minecraft/network/CompressionDecoder/f_129435_ net/minecraft/network/CompressionDecoder/threshold +FD: net/minecraft/network/CompressionDecoder/f_182671_ net/minecraft/network/CompressionDecoder/MAXIMUM_COMPRESSED_LENGTH +FD: net/minecraft/network/CompressionDecoder/f_182672_ net/minecraft/network/CompressionDecoder/MAXIMUM_UNCOMPRESSED_LENGTH +FD: net/minecraft/network/CompressionDecoder/f_182673_ net/minecraft/network/CompressionDecoder/validateDecompressed +FD: net/minecraft/network/CompressionEncoder/f_129444_ net/minecraft/network/CompressionEncoder/encodeBuf +FD: net/minecraft/network/CompressionEncoder/f_129445_ net/minecraft/network/CompressionEncoder/deflater +FD: net/minecraft/network/CompressionEncoder/f_129446_ net/minecraft/network/CompressionEncoder/threshold +FD: net/minecraft/network/Connection/f_129459_ net/minecraft/network/Connection/ROOT_MARKER +FD: net/minecraft/network/Connection/f_129460_ net/minecraft/network/Connection/PACKET_MARKER +FD: net/minecraft/network/Connection/f_129461_ net/minecraft/network/Connection/ATTRIBUTE_PROTOCOL +FD: net/minecraft/network/Connection/f_129462_ net/minecraft/network/Connection/NETWORK_WORKER_GROUP +FD: net/minecraft/network/Connection/f_129463_ net/minecraft/network/Connection/NETWORK_EPOLL_WORKER_GROUP +FD: net/minecraft/network/Connection/f_129464_ net/minecraft/network/Connection/LOCAL_WORKER_GROUP +FD: net/minecraft/network/Connection/f_129465_ net/minecraft/network/Connection/LOGGER +FD: net/minecraft/network/Connection/f_129466_ net/minecraft/network/Connection/receiving +FD: net/minecraft/network/Connection/f_129467_ net/minecraft/network/Connection/queue +FD: net/minecraft/network/Connection/f_129468_ net/minecraft/network/Connection/channel +FD: net/minecraft/network/Connection/f_129469_ net/minecraft/network/Connection/address +FD: net/minecraft/network/Connection/f_129470_ net/minecraft/network/Connection/packetListener +FD: net/minecraft/network/Connection/f_129471_ net/minecraft/network/Connection/disconnectedReason +FD: net/minecraft/network/Connection/f_129472_ net/minecraft/network/Connection/encrypted +FD: net/minecraft/network/Connection/f_129473_ net/minecraft/network/Connection/disconnectionHandled +FD: net/minecraft/network/Connection/f_129474_ net/minecraft/network/Connection/receivedPackets +FD: net/minecraft/network/Connection/f_129475_ net/minecraft/network/Connection/sentPackets +FD: net/minecraft/network/Connection/f_129476_ net/minecraft/network/Connection/averageReceivedPackets +FD: net/minecraft/network/Connection/f_129477_ net/minecraft/network/Connection/averageSentPackets +FD: net/minecraft/network/Connection/f_129478_ net/minecraft/network/Connection/tickCount +FD: net/minecraft/network/Connection/f_129479_ net/minecraft/network/Connection/handlingFault +FD: net/minecraft/network/Connection/f_178299_ net/minecraft/network/Connection/AVERAGE_PACKETS_SMOOTHING +FD: net/minecraft/network/Connection/f_202554_ net/minecraft/network/Connection/PACKET_RECEIVED_MARKER +FD: net/minecraft/network/Connection/f_202555_ net/minecraft/network/Connection/PACKET_SENT_MARKER +FD: net/minecraft/network/Connection/f_290021_ net/minecraft/network/Connection/delayedDisconnect +FD: net/minecraft/network/Connection$1/f_129548_ net/minecraft/network/Connection$1/val$connection +FD: net/minecraft/network/Connection$2/f_129553_ net/minecraft/network/Connection$2/val$connection +FD: net/minecraft/network/Connection$PacketHolder/f_129558_ net/minecraft/network/Connection$PacketHolder/packet +FD: net/minecraft/network/Connection$PacketHolder/f_129559_ net/minecraft/network/Connection$PacketHolder/listener +FD: net/minecraft/network/ConnectionProtocol/$VALUES net/minecraft/network/ConnectionProtocol/$VALUES +FD: net/minecraft/network/ConnectionProtocol/HANDSHAKING net/minecraft/network/ConnectionProtocol/HANDSHAKING +FD: net/minecraft/network/ConnectionProtocol/LOGIN net/minecraft/network/ConnectionProtocol/LOGIN +FD: net/minecraft/network/ConnectionProtocol/PLAY net/minecraft/network/ConnectionProtocol/PLAY +FD: net/minecraft/network/ConnectionProtocol/STATUS net/minecraft/network/ConnectionProtocol/STATUS +FD: net/minecraft/network/ConnectionProtocol/f_129571_ net/minecraft/network/ConnectionProtocol/LOOKUP +FD: net/minecraft/network/ConnectionProtocol/f_129572_ net/minecraft/network/ConnectionProtocol/PROTOCOL_BY_PACKET +FD: net/minecraft/network/ConnectionProtocol/f_129573_ net/minecraft/network/ConnectionProtocol/id +FD: net/minecraft/network/ConnectionProtocol/f_129574_ net/minecraft/network/ConnectionProtocol/flows +FD: net/minecraft/network/ConnectionProtocol/f_178316_ net/minecraft/network/ConnectionProtocol/MIN_PROTOCOL_ID +FD: net/minecraft/network/ConnectionProtocol/f_178317_ net/minecraft/network/ConnectionProtocol/MAX_PROTOCOL_ID +FD: net/minecraft/network/ConnectionProtocol/f_263799_ net/minecraft/network/ConnectionProtocol/NOT_REGISTERED +FD: net/minecraft/network/ConnectionProtocol$PacketSet/f_129604_ net/minecraft/network/ConnectionProtocol$PacketSet/classToId +FD: net/minecraft/network/ConnectionProtocol$PacketSet/f_178326_ net/minecraft/network/ConnectionProtocol$PacketSet/idToDeserializer +FD: net/minecraft/network/ConnectionProtocol$PacketSet/f_202573_ net/minecraft/network/ConnectionProtocol$PacketSet/LOGGER +FD: net/minecraft/network/ConnectionProtocol$PacketSet/f_263664_ net/minecraft/network/ConnectionProtocol$PacketSet/bundlerInfo +FD: net/minecraft/network/ConnectionProtocol$PacketSet/f_263747_ net/minecraft/network/ConnectionProtocol$PacketSet/extraClasses +FD: net/minecraft/network/ConnectionProtocol$ProtocolBuilder/f_129619_ net/minecraft/network/ConnectionProtocol$ProtocolBuilder/flows +FD: net/minecraft/network/FriendlyByteBuf/f_130049_ net/minecraft/network/FriendlyByteBuf/source +FD: net/minecraft/network/FriendlyByteBuf/f_178333_ net/minecraft/network/FriendlyByteBuf/MAX_STRING_LENGTH +FD: net/minecraft/network/FriendlyByteBuf/f_178334_ net/minecraft/network/FriendlyByteBuf/MAX_COMPONENT_STRING_LENGTH +FD: net/minecraft/network/FriendlyByteBuf/f_178335_ net/minecraft/network/FriendlyByteBuf/MAX_VARINT_SIZE +FD: net/minecraft/network/FriendlyByteBuf/f_178336_ net/minecraft/network/FriendlyByteBuf/MAX_VARLONG_SIZE +FD: net/minecraft/network/FriendlyByteBuf/f_178337_ net/minecraft/network/FriendlyByteBuf/DEFAULT_NBT_QUOTA +FD: net/minecraft/network/FriendlyByteBuf/f_236798_ net/minecraft/network/FriendlyByteBuf/PUBLIC_KEY_SIZE +FD: net/minecraft/network/FriendlyByteBuf/f_236799_ net/minecraft/network/FriendlyByteBuf/MAX_PUBLIC_KEY_HEADER_SIZE +FD: net/minecraft/network/FriendlyByteBuf/f_236800_ net/minecraft/network/FriendlyByteBuf/MAX_PUBLIC_KEY_LENGTH +FD: net/minecraft/network/FriendlyByteBuf/f_271126_ net/minecraft/network/FriendlyByteBuf/GSON +FD: net/minecraft/network/FriendlyByteBuf$1/f_263134_ net/minecraft/network/FriendlyByteBuf$1/$SwitchMap$net$minecraft$core$Holder$Kind +FD: net/minecraft/network/PacketBundlePacker/f_263732_ net/minecraft/network/PacketBundlePacker/infoForCurrentBundler +FD: net/minecraft/network/PacketBundlePacker/f_263798_ net/minecraft/network/PacketBundlePacker/flow +FD: net/minecraft/network/PacketBundlePacker/f_263847_ net/minecraft/network/PacketBundlePacker/currentBundler +FD: net/minecraft/network/PacketBundleUnpacker/f_263776_ net/minecraft/network/PacketBundleUnpacker/flow +FD: net/minecraft/network/PacketDecoder/f_130528_ net/minecraft/network/PacketDecoder/LOGGER +FD: net/minecraft/network/PacketDecoder/f_130530_ net/minecraft/network/PacketDecoder/flow +FD: net/minecraft/network/PacketEncoder/f_130538_ net/minecraft/network/PacketEncoder/LOGGER +FD: net/minecraft/network/PacketEncoder/f_130540_ net/minecraft/network/PacketEncoder/flow +FD: net/minecraft/network/PacketSendListener$1/f_243012_ net/minecraft/network/PacketSendListener$1/val$runnable +FD: net/minecraft/network/PacketSendListener$2/f_243001_ net/minecraft/network/PacketSendListener$2/val$handler +FD: net/minecraft/network/RateKickingConnection/f_130553_ net/minecraft/network/RateKickingConnection/LOGGER +FD: net/minecraft/network/RateKickingConnection/f_130554_ net/minecraft/network/RateKickingConnection/EXCEED_REASON +FD: net/minecraft/network/RateKickingConnection/f_130555_ net/minecraft/network/RateKickingConnection/rateLimitPacketsPerSecond +FD: net/minecraft/network/Varint21LengthFieldPrepender/f_178385_ net/minecraft/network/Varint21LengthFieldPrepender/MAX_BYTES +FD: net/minecraft/network/chat/ChatDecorator/f_236947_ net/minecraft/network/chat/ChatDecorator/PLAIN +FD: net/minecraft/network/chat/ChatType/f_130598_ net/minecraft/network/chat/ChatType/CHAT +FD: net/minecraft/network/chat/ChatType/f_237005_ net/minecraft/network/chat/ChatType/CODEC +FD: net/minecraft/network/chat/ChatType/f_237006_ net/minecraft/network/chat/ChatType/SAY_COMMAND +FD: net/minecraft/network/chat/ChatType/f_237009_ net/minecraft/network/chat/ChatType/EMOTE_COMMAND +FD: net/minecraft/network/chat/ChatType/f_237011_ net/minecraft/network/chat/ChatType/chat +FD: net/minecraft/network/chat/ChatType/f_237013_ net/minecraft/network/chat/ChatType/narration +FD: net/minecraft/network/chat/ChatType/f_238668_ net/minecraft/network/chat/ChatType/DEFAULT_CHAT_DECORATION +FD: net/minecraft/network/chat/ChatType/f_240668_ net/minecraft/network/chat/ChatType/MSG_COMMAND_OUTGOING +FD: net/minecraft/network/chat/ChatType/f_240674_ net/minecraft/network/chat/ChatType/MSG_COMMAND_INCOMING +FD: net/minecraft/network/chat/ChatType/f_241626_ net/minecraft/network/chat/ChatType/TEAM_MSG_COMMAND_OUTGOING +FD: net/minecraft/network/chat/ChatType/f_241694_ net/minecraft/network/chat/ChatType/TEAM_MSG_COMMAND_INCOMING +FD: net/minecraft/network/chat/ChatType$Bound/f_240859_ net/minecraft/network/chat/ChatType$Bound/chatType +FD: net/minecraft/network/chat/ChatType$Bound/f_240886_ net/minecraft/network/chat/ChatType$Bound/name +FD: net/minecraft/network/chat/ChatType$Bound/f_240896_ net/minecraft/network/chat/ChatType$Bound/targetName +FD: net/minecraft/network/chat/ChatType$BoundNetwork/f_240862_ net/minecraft/network/chat/ChatType$BoundNetwork/name +FD: net/minecraft/network/chat/ChatType$BoundNetwork/f_240865_ net/minecraft/network/chat/ChatType$BoundNetwork/targetName +FD: net/minecraft/network/chat/ChatType$BoundNetwork/f_240870_ net/minecraft/network/chat/ChatType$BoundNetwork/chatType +FD: net/minecraft/network/chat/ChatTypeDecoration/f_238580_ net/minecraft/network/chat/ChatTypeDecoration/CODEC +FD: net/minecraft/network/chat/ChatTypeDecoration/f_238656_ net/minecraft/network/chat/ChatTypeDecoration/parameters +FD: net/minecraft/network/chat/ChatTypeDecoration/f_238694_ net/minecraft/network/chat/ChatTypeDecoration/style +FD: net/minecraft/network/chat/ChatTypeDecoration/f_238741_ net/minecraft/network/chat/ChatTypeDecoration/translationKey +FD: net/minecraft/network/chat/ChatTypeDecoration$Parameter/$VALUES net/minecraft/network/chat/ChatTypeDecoration$Parameter/$VALUES +FD: net/minecraft/network/chat/ChatTypeDecoration$Parameter/CONTENT net/minecraft/network/chat/ChatTypeDecoration$Parameter/CONTENT +FD: net/minecraft/network/chat/ChatTypeDecoration$Parameter/SENDER net/minecraft/network/chat/ChatTypeDecoration$Parameter/SENDER +FD: net/minecraft/network/chat/ChatTypeDecoration$Parameter/TARGET net/minecraft/network/chat/ChatTypeDecoration$Parameter/TARGET +FD: net/minecraft/network/chat/ChatTypeDecoration$Parameter/f_238673_ net/minecraft/network/chat/ChatTypeDecoration$Parameter/name +FD: net/minecraft/network/chat/ChatTypeDecoration$Parameter/f_238789_ net/minecraft/network/chat/ChatTypeDecoration$Parameter/selector +FD: net/minecraft/network/chat/ChatTypeDecoration$Parameter/f_238794_ net/minecraft/network/chat/ChatTypeDecoration$Parameter/CODEC +FD: net/minecraft/network/chat/ClickEvent/f_130617_ net/minecraft/network/chat/ClickEvent/action +FD: net/minecraft/network/chat/ClickEvent/f_130618_ net/minecraft/network/chat/ClickEvent/value +FD: net/minecraft/network/chat/ClickEvent$Action/$VALUES net/minecraft/network/chat/ClickEvent$Action/$VALUES +FD: net/minecraft/network/chat/ClickEvent$Action/CHANGE_PAGE net/minecraft/network/chat/ClickEvent$Action/CHANGE_PAGE +FD: net/minecraft/network/chat/ClickEvent$Action/COPY_TO_CLIPBOARD net/minecraft/network/chat/ClickEvent$Action/COPY_TO_CLIPBOARD +FD: net/minecraft/network/chat/ClickEvent$Action/OPEN_FILE net/minecraft/network/chat/ClickEvent$Action/OPEN_FILE +FD: net/minecraft/network/chat/ClickEvent$Action/OPEN_URL net/minecraft/network/chat/ClickEvent$Action/OPEN_URL +FD: net/minecraft/network/chat/ClickEvent$Action/RUN_COMMAND net/minecraft/network/chat/ClickEvent$Action/RUN_COMMAND +FD: net/minecraft/network/chat/ClickEvent$Action/SUGGEST_COMMAND net/minecraft/network/chat/ClickEvent$Action/SUGGEST_COMMAND +FD: net/minecraft/network/chat/ClickEvent$Action/f_130634_ net/minecraft/network/chat/ClickEvent$Action/LOOKUP +FD: net/minecraft/network/chat/ClickEvent$Action/f_130635_ net/minecraft/network/chat/ClickEvent$Action/allowFromServer +FD: net/minecraft/network/chat/ClickEvent$Action/f_130636_ net/minecraft/network/chat/ClickEvent$Action/name +FD: net/minecraft/network/chat/CommonComponents/f_130653_ net/minecraft/network/chat/CommonComponents/OPTION_ON +FD: net/minecraft/network/chat/CommonComponents/f_130654_ net/minecraft/network/chat/CommonComponents/OPTION_OFF +FD: net/minecraft/network/chat/CommonComponents/f_130655_ net/minecraft/network/chat/CommonComponents/GUI_DONE +FD: net/minecraft/network/chat/CommonComponents/f_130656_ net/minecraft/network/chat/CommonComponents/GUI_CANCEL +FD: net/minecraft/network/chat/CommonComponents/f_130657_ net/minecraft/network/chat/CommonComponents/GUI_YES +FD: net/minecraft/network/chat/CommonComponents/f_130658_ net/minecraft/network/chat/CommonComponents/GUI_NO +FD: net/minecraft/network/chat/CommonComponents/f_130659_ net/minecraft/network/chat/CommonComponents/GUI_PROCEED +FD: net/minecraft/network/chat/CommonComponents/f_130660_ net/minecraft/network/chat/CommonComponents/GUI_BACK +FD: net/minecraft/network/chat/CommonComponents/f_130661_ net/minecraft/network/chat/CommonComponents/CONNECT_FAILED +FD: net/minecraft/network/chat/CommonComponents/f_178388_ net/minecraft/network/chat/CommonComponents/NEW_LINE +FD: net/minecraft/network/chat/CommonComponents/f_178389_ net/minecraft/network/chat/CommonComponents/NARRATION_SEPARATOR +FD: net/minecraft/network/chat/CommonComponents/f_237098_ net/minecraft/network/chat/CommonComponents/EMPTY +FD: net/minecraft/network/chat/CommonComponents/f_238584_ net/minecraft/network/chat/CommonComponents/GUI_ACKNOWLEDGE +FD: net/minecraft/network/chat/CommonComponents/f_238772_ net/minecraft/network/chat/CommonComponents/ELLIPSIS +FD: net/minecraft/network/chat/CommonComponents/f_263701_ net/minecraft/network/chat/CommonComponents/SPACE +FD: net/minecraft/network/chat/CommonComponents/f_263736_ net/minecraft/network/chat/CommonComponents/GUI_CONTINUE +FD: net/minecraft/network/chat/CommonComponents/f_275759_ net/minecraft/network/chat/CommonComponents/GUI_TO_TITLE +FD: net/minecraft/network/chat/CommonComponents/f_286989_ net/minecraft/network/chat/CommonComponents/GUI_OK +FD: net/minecraft/network/chat/CommonComponents/f_289829_ net/minecraft/network/chat/CommonComponents/GUI_OPEN_IN_BROWSER +FD: net/minecraft/network/chat/CommonComponents/f_289837_ net/minecraft/network/chat/CommonComponents/GUI_COPY_LINK_TO_CLIPBOARD +FD: net/minecraft/network/chat/Component$Serializer/f_130685_ net/minecraft/network/chat/Component$Serializer/GSON +FD: net/minecraft/network/chat/Component$Serializer/f_130686_ net/minecraft/network/chat/Component$Serializer/JSON_READER_POS +FD: net/minecraft/network/chat/Component$Serializer/f_130687_ net/minecraft/network/chat/Component$Serializer/JSON_READER_LINESTART +FD: net/minecraft/network/chat/ComponentContents/f_237124_ net/minecraft/network/chat/ComponentContents/EMPTY +FD: net/minecraft/network/chat/ComponentUtils/f_178419_ net/minecraft/network/chat/ComponentUtils/DEFAULT_SEPARATOR_TEXT +FD: net/minecraft/network/chat/ComponentUtils/f_178420_ net/minecraft/network/chat/ComponentUtils/DEFAULT_SEPARATOR +FD: net/minecraft/network/chat/ComponentUtils/f_178421_ net/minecraft/network/chat/ComponentUtils/DEFAULT_NO_STYLE_SEPARATOR +FD: net/minecraft/network/chat/FilterMask/f_242988_ net/minecraft/network/chat/FilterMask/mask +FD: net/minecraft/network/chat/FilterMask/f_242996_ net/minecraft/network/chat/FilterMask/type +FD: net/minecraft/network/chat/FilterMask/f_242999_ net/minecraft/network/chat/FilterMask/PASS_THROUGH +FD: net/minecraft/network/chat/FilterMask/f_243007_ net/minecraft/network/chat/FilterMask/FULLY_FILTERED +FD: net/minecraft/network/chat/FilterMask/f_243009_ net/minecraft/network/chat/FilterMask/HASH +FD: net/minecraft/network/chat/FilterMask/f_244521_ net/minecraft/network/chat/FilterMask/FILTERED_STYLE +FD: net/minecraft/network/chat/FilterMask/f_252450_ net/minecraft/network/chat/FilterMask/PARTIALLY_FILTERED_CODEC +FD: net/minecraft/network/chat/FilterMask/f_252488_ net/minecraft/network/chat/FilterMask/PASS_THROUGH_CODEC +FD: net/minecraft/network/chat/FilterMask/f_252493_ net/minecraft/network/chat/FilterMask/FULLY_FILTERED_CODEC +FD: net/minecraft/network/chat/FilterMask/f_252533_ net/minecraft/network/chat/FilterMask/CODEC +FD: net/minecraft/network/chat/FilterMask$1/f_243008_ net/minecraft/network/chat/FilterMask$1/$SwitchMap$net$minecraft$network$chat$FilterMask$Type +FD: net/minecraft/network/chat/FilterMask$Type/$VALUES net/minecraft/network/chat/FilterMask$Type/$VALUES +FD: net/minecraft/network/chat/FilterMask$Type/FULLY_FILTERED net/minecraft/network/chat/FilterMask$Type/FULLY_FILTERED +FD: net/minecraft/network/chat/FilterMask$Type/PARTIALLY_FILTERED net/minecraft/network/chat/FilterMask$Type/PARTIALLY_FILTERED +FD: net/minecraft/network/chat/FilterMask$Type/PASS_THROUGH net/minecraft/network/chat/FilterMask$Type/PASS_THROUGH +FD: net/minecraft/network/chat/FilterMask$Type/f_252467_ net/minecraft/network/chat/FilterMask$Type/codec +FD: net/minecraft/network/chat/FilterMask$Type/f_252490_ net/minecraft/network/chat/FilterMask$Type/serializedName +FD: net/minecraft/network/chat/FormattedText/f_130759_ net/minecraft/network/chat/FormattedText/STOP_ITERATION +FD: net/minecraft/network/chat/FormattedText/f_130760_ net/minecraft/network/chat/FormattedText/EMPTY +FD: net/minecraft/network/chat/FormattedText$2/f_130783_ net/minecraft/network/chat/FormattedText$2/val$text +FD: net/minecraft/network/chat/FormattedText$3/f_130791_ net/minecraft/network/chat/FormattedText$3/val$text +FD: net/minecraft/network/chat/FormattedText$3/f_130792_ net/minecraft/network/chat/FormattedText$3/val$style +FD: net/minecraft/network/chat/FormattedText$4/f_130801_ net/minecraft/network/chat/FormattedText$4/val$parts +FD: net/minecraft/network/chat/HoverEvent/f_130813_ net/minecraft/network/chat/HoverEvent/LOGGER +FD: net/minecraft/network/chat/HoverEvent/f_130814_ net/minecraft/network/chat/HoverEvent/action +FD: net/minecraft/network/chat/HoverEvent/f_130815_ net/minecraft/network/chat/HoverEvent/value +FD: net/minecraft/network/chat/HoverEvent$Action/f_130831_ net/minecraft/network/chat/HoverEvent$Action/SHOW_TEXT +FD: net/minecraft/network/chat/HoverEvent$Action/f_130832_ net/minecraft/network/chat/HoverEvent$Action/SHOW_ITEM +FD: net/minecraft/network/chat/HoverEvent$Action/f_130833_ net/minecraft/network/chat/HoverEvent$Action/SHOW_ENTITY +FD: net/minecraft/network/chat/HoverEvent$Action/f_130834_ net/minecraft/network/chat/HoverEvent$Action/LOOKUP +FD: net/minecraft/network/chat/HoverEvent$Action/f_130835_ net/minecraft/network/chat/HoverEvent$Action/name +FD: net/minecraft/network/chat/HoverEvent$Action/f_130836_ net/minecraft/network/chat/HoverEvent$Action/allowFromServer +FD: net/minecraft/network/chat/HoverEvent$Action/f_130837_ net/minecraft/network/chat/HoverEvent$Action/argDeserializer +FD: net/minecraft/network/chat/HoverEvent$Action/f_130838_ net/minecraft/network/chat/HoverEvent$Action/argSerializer +FD: net/minecraft/network/chat/HoverEvent$Action/f_130839_ net/minecraft/network/chat/HoverEvent$Action/legacyArgDeserializer +FD: net/minecraft/network/chat/HoverEvent$EntityTooltipInfo/f_130871_ net/minecraft/network/chat/HoverEvent$EntityTooltipInfo/type +FD: net/minecraft/network/chat/HoverEvent$EntityTooltipInfo/f_130872_ net/minecraft/network/chat/HoverEvent$EntityTooltipInfo/id +FD: net/minecraft/network/chat/HoverEvent$EntityTooltipInfo/f_130873_ net/minecraft/network/chat/HoverEvent$EntityTooltipInfo/name +FD: net/minecraft/network/chat/HoverEvent$EntityTooltipInfo/f_130874_ net/minecraft/network/chat/HoverEvent$EntityTooltipInfo/linesCache +FD: net/minecraft/network/chat/HoverEvent$ItemStackInfo/f_130888_ net/minecraft/network/chat/HoverEvent$ItemStackInfo/item +FD: net/minecraft/network/chat/HoverEvent$ItemStackInfo/f_130889_ net/minecraft/network/chat/HoverEvent$ItemStackInfo/count +FD: net/minecraft/network/chat/HoverEvent$ItemStackInfo/f_130890_ net/minecraft/network/chat/HoverEvent$ItemStackInfo/tag +FD: net/minecraft/network/chat/HoverEvent$ItemStackInfo/f_130891_ net/minecraft/network/chat/HoverEvent$ItemStackInfo/itemStack +FD: net/minecraft/network/chat/LastSeenMessages/f_241617_ net/minecraft/network/chat/LastSeenMessages/LAST_SEEN_MESSAGES_MAX_LENGTH +FD: net/minecraft/network/chat/LastSeenMessages/f_241630_ net/minecraft/network/chat/LastSeenMessages/entries +FD: net/minecraft/network/chat/LastSeenMessages/f_241634_ net/minecraft/network/chat/LastSeenMessages/EMPTY +FD: net/minecraft/network/chat/LastSeenMessages/f_252509_ net/minecraft/network/chat/LastSeenMessages/CODEC +FD: net/minecraft/network/chat/LastSeenMessages$Packed/f_244256_ net/minecraft/network/chat/LastSeenMessages$Packed/EMPTY +FD: net/minecraft/network/chat/LastSeenMessages$Packed/f_244613_ net/minecraft/network/chat/LastSeenMessages$Packed/entries +FD: net/minecraft/network/chat/LastSeenMessages$Update/f_243843_ net/minecraft/network/chat/LastSeenMessages$Update/offset +FD: net/minecraft/network/chat/LastSeenMessages$Update/f_244446_ net/minecraft/network/chat/LastSeenMessages$Update/acknowledged +FD: net/minecraft/network/chat/LastSeenMessagesTracker/f_243823_ net/minecraft/network/chat/LastSeenMessagesTracker/lastTrackedMessage +FD: net/minecraft/network/chat/LastSeenMessagesTracker/f_244505_ net/minecraft/network/chat/LastSeenMessagesTracker/trackedMessages +FD: net/minecraft/network/chat/LastSeenMessagesTracker/f_244552_ net/minecraft/network/chat/LastSeenMessagesTracker/offset +FD: net/minecraft/network/chat/LastSeenMessagesTracker/f_244578_ net/minecraft/network/chat/LastSeenMessagesTracker/tail +FD: net/minecraft/network/chat/LastSeenMessagesTracker$Update/f_243872_ net/minecraft/network/chat/LastSeenMessagesTracker$Update/lastSeen +FD: net/minecraft/network/chat/LastSeenMessagesTracker$Update/f_244473_ net/minecraft/network/chat/LastSeenMessagesTracker$Update/update +FD: net/minecraft/network/chat/LastSeenMessagesValidator/f_243950_ net/minecraft/network/chat/LastSeenMessagesValidator/trackedMessages +FD: net/minecraft/network/chat/LastSeenMessagesValidator/f_244339_ net/minecraft/network/chat/LastSeenMessagesValidator/lastPendingMessage +FD: net/minecraft/network/chat/LastSeenMessagesValidator/f_244465_ net/minecraft/network/chat/LastSeenMessagesValidator/lastSeenCount +FD: net/minecraft/network/chat/LastSeenTrackedEntry/f_243846_ net/minecraft/network/chat/LastSeenTrackedEntry/signature +FD: net/minecraft/network/chat/LastSeenTrackedEntry/f_243942_ net/minecraft/network/chat/LastSeenTrackedEntry/pending +FD: net/minecraft/network/chat/LocalChatSession/f_243926_ net/minecraft/network/chat/LocalChatSession/keyPair +FD: net/minecraft/network/chat/LocalChatSession/f_244284_ net/minecraft/network/chat/LocalChatSession/sessionId +FD: net/minecraft/network/chat/MessageSignature/f_240884_ net/minecraft/network/chat/MessageSignature/bytes +FD: net/minecraft/network/chat/MessageSignature/f_244417_ net/minecraft/network/chat/MessageSignature/BYTES +FD: net/minecraft/network/chat/MessageSignature/f_252463_ net/minecraft/network/chat/MessageSignature/CODEC +FD: net/minecraft/network/chat/MessageSignature$Packed/f_244020_ net/minecraft/network/chat/MessageSignature$Packed/fullSignature +FD: net/minecraft/network/chat/MessageSignature$Packed/f_244111_ net/minecraft/network/chat/MessageSignature$Packed/id +FD: net/minecraft/network/chat/MessageSignature$Packed/f_244178_ net/minecraft/network/chat/MessageSignature$Packed/FULL_SIGNATURE +FD: net/minecraft/network/chat/MessageSignatureCache/f_243760_ net/minecraft/network/chat/MessageSignatureCache/DEFAULT_CAPACITY +FD: net/minecraft/network/chat/MessageSignatureCache/f_243958_ net/minecraft/network/chat/MessageSignatureCache/entries +FD: net/minecraft/network/chat/MessageSignatureCache/f_252441_ net/minecraft/network/chat/MessageSignatureCache/NOT_FOUND +FD: net/minecraft/network/chat/MutableComponent/f_237194_ net/minecraft/network/chat/MutableComponent/contents +FD: net/minecraft/network/chat/MutableComponent/f_237195_ net/minecraft/network/chat/MutableComponent/siblings +FD: net/minecraft/network/chat/MutableComponent/f_237196_ net/minecraft/network/chat/MutableComponent/style +FD: net/minecraft/network/chat/MutableComponent/f_237197_ net/minecraft/network/chat/MutableComponent/visualOrderText +FD: net/minecraft/network/chat/MutableComponent/f_237198_ net/minecraft/network/chat/MutableComponent/decomposedWith +FD: net/minecraft/network/chat/OutgoingChatMessage$Disguised/f_244003_ net/minecraft/network/chat/OutgoingChatMessage$Disguised/content +FD: net/minecraft/network/chat/OutgoingChatMessage$Player/f_243697_ net/minecraft/network/chat/OutgoingChatMessage$Player/message +FD: net/minecraft/network/chat/PlayerChatMessage/f_237215_ net/minecraft/network/chat/PlayerChatMessage/unsignedContent +FD: net/minecraft/network/chat/PlayerChatMessage/f_240359_ net/minecraft/network/chat/PlayerChatMessage/MESSAGE_EXPIRES_AFTER_SERVER +FD: net/minecraft/network/chat/PlayerChatMessage/f_240369_ net/minecraft/network/chat/PlayerChatMessage/MESSAGE_EXPIRES_AFTER_CLIENT +FD: net/minecraft/network/chat/PlayerChatMessage/f_240885_ net/minecraft/network/chat/PlayerChatMessage/signedBody +FD: net/minecraft/network/chat/PlayerChatMessage/f_242992_ net/minecraft/network/chat/PlayerChatMessage/filterMask +FD: net/minecraft/network/chat/PlayerChatMessage/f_243787_ net/minecraft/network/chat/PlayerChatMessage/SYSTEM_SENDER +FD: net/minecraft/network/chat/PlayerChatMessage/f_243882_ net/minecraft/network/chat/PlayerChatMessage/link +FD: net/minecraft/network/chat/PlayerChatMessage/f_244279_ net/minecraft/network/chat/PlayerChatMessage/signature +FD: net/minecraft/network/chat/PlayerChatMessage/f_252410_ net/minecraft/network/chat/PlayerChatMessage/MAP_CODEC +FD: net/minecraft/network/chat/RemoteChatSession/f_243855_ net/minecraft/network/chat/RemoteChatSession/profilePublicKey +FD: net/minecraft/network/chat/RemoteChatSession/f_244448_ net/minecraft/network/chat/RemoteChatSession/sessionId +FD: net/minecraft/network/chat/RemoteChatSession$Data/f_243937_ net/minecraft/network/chat/RemoteChatSession$Data/profilePublicKey +FD: net/minecraft/network/chat/RemoteChatSession$Data/f_244232_ net/minecraft/network/chat/RemoteChatSession$Data/sessionId +FD: net/minecraft/network/chat/SignableCommand/f_244150_ net/minecraft/network/chat/SignableCommand/arguments +FD: net/minecraft/network/chat/SignableCommand$Argument/f_243965_ net/minecraft/network/chat/SignableCommand$Argument/node +FD: net/minecraft/network/chat/SignableCommand$Argument/f_244218_ net/minecraft/network/chat/SignableCommand$Argument/value +FD: net/minecraft/network/chat/SignedMessageBody/f_240856_ net/minecraft/network/chat/SignedMessageBody/content +FD: net/minecraft/network/chat/SignedMessageBody/f_240863_ net/minecraft/network/chat/SignedMessageBody/timeStamp +FD: net/minecraft/network/chat/SignedMessageBody/f_240868_ net/minecraft/network/chat/SignedMessageBody/lastSeen +FD: net/minecraft/network/chat/SignedMessageBody/f_240873_ net/minecraft/network/chat/SignedMessageBody/salt +FD: net/minecraft/network/chat/SignedMessageBody/f_252412_ net/minecraft/network/chat/SignedMessageBody/MAP_CODEC +FD: net/minecraft/network/chat/SignedMessageBody$Packed/f_243660_ net/minecraft/network/chat/SignedMessageBody$Packed/content +FD: net/minecraft/network/chat/SignedMessageBody$Packed/f_243790_ net/minecraft/network/chat/SignedMessageBody$Packed/salt +FD: net/minecraft/network/chat/SignedMessageBody$Packed/f_244137_ net/minecraft/network/chat/SignedMessageBody$Packed/lastSeen +FD: net/minecraft/network/chat/SignedMessageBody$Packed/f_244314_ net/minecraft/network/chat/SignedMessageBody$Packed/timeStamp +FD: net/minecraft/network/chat/SignedMessageChain/f_243812_ net/minecraft/network/chat/SignedMessageChain/LOGGER +FD: net/minecraft/network/chat/SignedMessageChain/f_244563_ net/minecraft/network/chat/SignedMessageChain/nextLink +FD: net/minecraft/network/chat/SignedMessageChain$DecodeException/f_244583_ net/minecraft/network/chat/SignedMessageChain$DecodeException/shouldDisconnect +FD: net/minecraft/network/chat/SignedMessageChain$Decoder/f_252472_ net/minecraft/network/chat/SignedMessageChain$Decoder/REJECT_ALL +FD: net/minecraft/network/chat/SignedMessageChain$Encoder/f_243849_ net/minecraft/network/chat/SignedMessageChain$Encoder/UNSIGNED +FD: net/minecraft/network/chat/SignedMessageLink/f_244066_ net/minecraft/network/chat/SignedMessageLink/index +FD: net/minecraft/network/chat/SignedMessageLink/f_244370_ net/minecraft/network/chat/SignedMessageLink/sessionId +FD: net/minecraft/network/chat/SignedMessageLink/f_244443_ net/minecraft/network/chat/SignedMessageLink/sender +FD: net/minecraft/network/chat/SignedMessageLink/f_252474_ net/minecraft/network/chat/SignedMessageLink/CODEC +FD: net/minecraft/network/chat/SignedMessageValidator/f_243754_ net/minecraft/network/chat/SignedMessageValidator/REJECT_ALL +FD: net/minecraft/network/chat/SignedMessageValidator/f_244130_ net/minecraft/network/chat/SignedMessageValidator/ACCEPT_UNSIGNED +FD: net/minecraft/network/chat/SignedMessageValidator$KeyBased/f_240903_ net/minecraft/network/chat/SignedMessageValidator$KeyBased/validator +FD: net/minecraft/network/chat/SignedMessageValidator$KeyBased/f_243954_ net/minecraft/network/chat/SignedMessageValidator$KeyBased/isChainValid +FD: net/minecraft/network/chat/SignedMessageValidator$KeyBased/f_244265_ net/minecraft/network/chat/SignedMessageValidator$KeyBased/lastMessage +FD: net/minecraft/network/chat/Style/f_131099_ net/minecraft/network/chat/Style/EMPTY +FD: net/minecraft/network/chat/Style/f_131100_ net/minecraft/network/chat/Style/DEFAULT_FONT +FD: net/minecraft/network/chat/Style/f_131101_ net/minecraft/network/chat/Style/color +FD: net/minecraft/network/chat/Style/f_131102_ net/minecraft/network/chat/Style/bold +FD: net/minecraft/network/chat/Style/f_131103_ net/minecraft/network/chat/Style/italic +FD: net/minecraft/network/chat/Style/f_131104_ net/minecraft/network/chat/Style/underlined +FD: net/minecraft/network/chat/Style/f_131105_ net/minecraft/network/chat/Style/strikethrough +FD: net/minecraft/network/chat/Style/f_131106_ net/minecraft/network/chat/Style/obfuscated +FD: net/minecraft/network/chat/Style/f_131107_ net/minecraft/network/chat/Style/clickEvent +FD: net/minecraft/network/chat/Style/f_131108_ net/minecraft/network/chat/Style/hoverEvent +FD: net/minecraft/network/chat/Style/f_131109_ net/minecraft/network/chat/Style/insertion +FD: net/minecraft/network/chat/Style/f_131110_ net/minecraft/network/chat/Style/font +FD: net/minecraft/network/chat/Style/f_237254_ net/minecraft/network/chat/Style/FORMATTING_CODEC +FD: net/minecraft/network/chat/Style$1/f_131196_ net/minecraft/network/chat/Style$1/$SwitchMap$net$minecraft$ChatFormatting +FD: net/minecraft/network/chat/Style$1Collector/f_237282_ net/minecraft/network/chat/Style$1Collector/val$result +FD: net/minecraft/network/chat/Style$1Collector/f_237283_ net/minecraft/network/chat/Style$1Collector/this$0 +FD: net/minecraft/network/chat/Style$1Collector/f_237284_ net/minecraft/network/chat/Style$1Collector/isNotFirst +FD: net/minecraft/network/chat/SubStringSource/f_131228_ net/minecraft/network/chat/SubStringSource/plainText +FD: net/minecraft/network/chat/SubStringSource/f_131229_ net/minecraft/network/chat/SubStringSource/charStyles +FD: net/minecraft/network/chat/SubStringSource/f_131230_ net/minecraft/network/chat/SubStringSource/reverseCharModifier +FD: net/minecraft/network/chat/TextColor/f_131255_ net/minecraft/network/chat/TextColor/LEGACY_FORMAT_TO_COLOR +FD: net/minecraft/network/chat/TextColor/f_131256_ net/minecraft/network/chat/TextColor/NAMED_COLORS +FD: net/minecraft/network/chat/TextColor/f_131257_ net/minecraft/network/chat/TextColor/value +FD: net/minecraft/network/chat/TextColor/f_131258_ net/minecraft/network/chat/TextColor/name +FD: net/minecraft/network/chat/TextColor/f_178538_ net/minecraft/network/chat/TextColor/CUSTOM_COLOR_PREFIX +FD: net/minecraft/network/chat/TextColor/f_237295_ net/minecraft/network/chat/TextColor/CODEC +FD: net/minecraft/network/chat/ThrowingComponent/f_237302_ net/minecraft/network/chat/ThrowingComponent/component +FD: net/minecraft/network/chat/contents/BlockDataSource/f_237309_ net/minecraft/network/chat/contents/BlockDataSource/posPattern +FD: net/minecraft/network/chat/contents/BlockDataSource/f_237310_ net/minecraft/network/chat/contents/BlockDataSource/compiledPos +FD: net/minecraft/network/chat/contents/EntityDataSource/f_237327_ net/minecraft/network/chat/contents/EntityDataSource/selectorPattern +FD: net/minecraft/network/chat/contents/EntityDataSource/f_237328_ net/minecraft/network/chat/contents/EntityDataSource/compiledSelector +FD: net/minecraft/network/chat/contents/KeybindContents/f_237344_ net/minecraft/network/chat/contents/KeybindContents/name +FD: net/minecraft/network/chat/contents/KeybindContents/f_237345_ net/minecraft/network/chat/contents/KeybindContents/nameResolver +FD: net/minecraft/network/chat/contents/KeybindResolver/f_237359_ net/minecraft/network/chat/contents/KeybindResolver/keyResolver +FD: net/minecraft/network/chat/contents/LiteralContents/f_237368_ net/minecraft/network/chat/contents/LiteralContents/text +FD: net/minecraft/network/chat/contents/NbtContents/f_237381_ net/minecraft/network/chat/contents/NbtContents/compiledNbtPath +FD: net/minecraft/network/chat/contents/NbtContents/f_237382_ net/minecraft/network/chat/contents/NbtContents/LOGGER +FD: net/minecraft/network/chat/contents/NbtContents/f_237383_ net/minecraft/network/chat/contents/NbtContents/interpreting +FD: net/minecraft/network/chat/contents/NbtContents/f_237384_ net/minecraft/network/chat/contents/NbtContents/separator +FD: net/minecraft/network/chat/contents/NbtContents/f_237385_ net/minecraft/network/chat/contents/NbtContents/nbtPathPattern +FD: net/minecraft/network/chat/contents/NbtContents/f_237386_ net/minecraft/network/chat/contents/NbtContents/dataSource +FD: net/minecraft/network/chat/contents/ScoreContents/f_237433_ net/minecraft/network/chat/contents/ScoreContents/SCORER_PLACEHOLDER +FD: net/minecraft/network/chat/contents/ScoreContents/f_237434_ net/minecraft/network/chat/contents/ScoreContents/name +FD: net/minecraft/network/chat/contents/ScoreContents/f_237435_ net/minecraft/network/chat/contents/ScoreContents/selector +FD: net/minecraft/network/chat/contents/ScoreContents/f_237436_ net/minecraft/network/chat/contents/ScoreContents/objective +FD: net/minecraft/network/chat/contents/SelectorContents/f_237458_ net/minecraft/network/chat/contents/SelectorContents/separator +FD: net/minecraft/network/chat/contents/SelectorContents/f_237459_ net/minecraft/network/chat/contents/SelectorContents/LOGGER +FD: net/minecraft/network/chat/contents/SelectorContents/f_237460_ net/minecraft/network/chat/contents/SelectorContents/pattern +FD: net/minecraft/network/chat/contents/SelectorContents/f_237461_ net/minecraft/network/chat/contents/SelectorContents/selector +FD: net/minecraft/network/chat/contents/StorageDataSource/f_237484_ net/minecraft/network/chat/contents/StorageDataSource/id +FD: net/minecraft/network/chat/contents/TranslatableContents/f_237494_ net/minecraft/network/chat/contents/TranslatableContents/NO_ARGS +FD: net/minecraft/network/chat/contents/TranslatableContents/f_237495_ net/minecraft/network/chat/contents/TranslatableContents/TEXT_PERCENT +FD: net/minecraft/network/chat/contents/TranslatableContents/f_237496_ net/minecraft/network/chat/contents/TranslatableContents/TEXT_NULL +FD: net/minecraft/network/chat/contents/TranslatableContents/f_237497_ net/minecraft/network/chat/contents/TranslatableContents/key +FD: net/minecraft/network/chat/contents/TranslatableContents/f_237498_ net/minecraft/network/chat/contents/TranslatableContents/args +FD: net/minecraft/network/chat/contents/TranslatableContents/f_237499_ net/minecraft/network/chat/contents/TranslatableContents/decomposedWith +FD: net/minecraft/network/chat/contents/TranslatableContents/f_237500_ net/minecraft/network/chat/contents/TranslatableContents/decomposedParts +FD: net/minecraft/network/chat/contents/TranslatableContents/f_237501_ net/minecraft/network/chat/contents/TranslatableContents/FORMAT_PATTERN +FD: net/minecraft/network/chat/contents/TranslatableContents/f_263792_ net/minecraft/network/chat/contents/TranslatableContents/fallback +FD: net/minecraft/network/protocol/BundlePacket/f_263700_ net/minecraft/network/protocol/BundlePacket/packets +FD: net/minecraft/network/protocol/BundlerInfo/f_263663_ net/minecraft/network/protocol/BundlerInfo/EMPTY +FD: net/minecraft/network/protocol/BundlerInfo/f_263688_ net/minecraft/network/protocol/BundlerInfo/BUNDLE_SIZE_LIMIT +FD: net/minecraft/network/protocol/BundlerInfo/f_263730_ net/minecraft/network/protocol/BundlerInfo/BUNDLER_PROVIDER +FD: net/minecraft/network/protocol/BundlerInfo$2/f_263671_ net/minecraft/network/protocol/BundlerInfo$2/val$bundlePacketCls +FD: net/minecraft/network/protocol/BundlerInfo$2/f_263691_ net/minecraft/network/protocol/BundlerInfo$2/val$delimiterPacket +FD: net/minecraft/network/protocol/BundlerInfo$2/f_263787_ net/minecraft/network/protocol/BundlerInfo$2/val$constructor +FD: net/minecraft/network/protocol/BundlerInfo$2$1/f_263710_ net/minecraft/network/protocol/BundlerInfo$2$1/bundlePackets +FD: net/minecraft/network/protocol/BundlerInfo$2$1/f_263768_ net/minecraft/network/protocol/BundlerInfo$2$1/this$0 +FD: net/minecraft/network/protocol/PacketFlow/$VALUES net/minecraft/network/protocol/PacketFlow/$VALUES +FD: net/minecraft/network/protocol/PacketFlow/CLIENTBOUND net/minecraft/network/protocol/PacketFlow/CLIENTBOUND +FD: net/minecraft/network/protocol/PacketFlow/SERVERBOUND net/minecraft/network/protocol/PacketFlow/SERVERBOUND +FD: net/minecraft/network/protocol/PacketUtils/f_131354_ net/minecraft/network/protocol/PacketUtils/LOGGER +FD: net/minecraft/network/protocol/game/ClientboundAddEntityPacket/f_131456_ net/minecraft/network/protocol/game/ClientboundAddEntityPacket/id +FD: net/minecraft/network/protocol/game/ClientboundAddEntityPacket/f_131457_ net/minecraft/network/protocol/game/ClientboundAddEntityPacket/uuid +FD: net/minecraft/network/protocol/game/ClientboundAddEntityPacket/f_131458_ net/minecraft/network/protocol/game/ClientboundAddEntityPacket/x +FD: net/minecraft/network/protocol/game/ClientboundAddEntityPacket/f_131459_ net/minecraft/network/protocol/game/ClientboundAddEntityPacket/y +FD: net/minecraft/network/protocol/game/ClientboundAddEntityPacket/f_131460_ net/minecraft/network/protocol/game/ClientboundAddEntityPacket/z +FD: net/minecraft/network/protocol/game/ClientboundAddEntityPacket/f_131461_ net/minecraft/network/protocol/game/ClientboundAddEntityPacket/xa +FD: net/minecraft/network/protocol/game/ClientboundAddEntityPacket/f_131462_ net/minecraft/network/protocol/game/ClientboundAddEntityPacket/ya +FD: net/minecraft/network/protocol/game/ClientboundAddEntityPacket/f_131463_ net/minecraft/network/protocol/game/ClientboundAddEntityPacket/za +FD: net/minecraft/network/protocol/game/ClientboundAddEntityPacket/f_131464_ net/minecraft/network/protocol/game/ClientboundAddEntityPacket/xRot +FD: net/minecraft/network/protocol/game/ClientboundAddEntityPacket/f_131465_ net/minecraft/network/protocol/game/ClientboundAddEntityPacket/yRot +FD: net/minecraft/network/protocol/game/ClientboundAddEntityPacket/f_131466_ net/minecraft/network/protocol/game/ClientboundAddEntityPacket/type +FD: net/minecraft/network/protocol/game/ClientboundAddEntityPacket/f_131467_ net/minecraft/network/protocol/game/ClientboundAddEntityPacket/data +FD: net/minecraft/network/protocol/game/ClientboundAddEntityPacket/f_178559_ net/minecraft/network/protocol/game/ClientboundAddEntityPacket/MAGICAL_QUANTIZATION +FD: net/minecraft/network/protocol/game/ClientboundAddEntityPacket/f_178560_ net/minecraft/network/protocol/game/ClientboundAddEntityPacket/LIMIT +FD: net/minecraft/network/protocol/game/ClientboundAddEntityPacket/f_237544_ net/minecraft/network/protocol/game/ClientboundAddEntityPacket/yHeadRot +FD: net/minecraft/network/protocol/game/ClientboundAddExperienceOrbPacket/f_131510_ net/minecraft/network/protocol/game/ClientboundAddExperienceOrbPacket/id +FD: net/minecraft/network/protocol/game/ClientboundAddExperienceOrbPacket/f_131511_ net/minecraft/network/protocol/game/ClientboundAddExperienceOrbPacket/x +FD: net/minecraft/network/protocol/game/ClientboundAddExperienceOrbPacket/f_131512_ net/minecraft/network/protocol/game/ClientboundAddExperienceOrbPacket/y +FD: net/minecraft/network/protocol/game/ClientboundAddExperienceOrbPacket/f_131513_ net/minecraft/network/protocol/game/ClientboundAddExperienceOrbPacket/z +FD: net/minecraft/network/protocol/game/ClientboundAddExperienceOrbPacket/f_131514_ net/minecraft/network/protocol/game/ClientboundAddExperienceOrbPacket/value +FD: net/minecraft/network/protocol/game/ClientboundAddPlayerPacket/f_131587_ net/minecraft/network/protocol/game/ClientboundAddPlayerPacket/entityId +FD: net/minecraft/network/protocol/game/ClientboundAddPlayerPacket/f_131588_ net/minecraft/network/protocol/game/ClientboundAddPlayerPacket/playerId +FD: net/minecraft/network/protocol/game/ClientboundAddPlayerPacket/f_131589_ net/minecraft/network/protocol/game/ClientboundAddPlayerPacket/x +FD: net/minecraft/network/protocol/game/ClientboundAddPlayerPacket/f_131590_ net/minecraft/network/protocol/game/ClientboundAddPlayerPacket/y +FD: net/minecraft/network/protocol/game/ClientboundAddPlayerPacket/f_131591_ net/minecraft/network/protocol/game/ClientboundAddPlayerPacket/z +FD: net/minecraft/network/protocol/game/ClientboundAddPlayerPacket/f_131592_ net/minecraft/network/protocol/game/ClientboundAddPlayerPacket/yRot +FD: net/minecraft/network/protocol/game/ClientboundAddPlayerPacket/f_131593_ net/minecraft/network/protocol/game/ClientboundAddPlayerPacket/xRot +FD: net/minecraft/network/protocol/game/ClientboundAnimatePacket/f_131612_ net/minecraft/network/protocol/game/ClientboundAnimatePacket/id +FD: net/minecraft/network/protocol/game/ClientboundAnimatePacket/f_131613_ net/minecraft/network/protocol/game/ClientboundAnimatePacket/action +FD: net/minecraft/network/protocol/game/ClientboundAnimatePacket/f_178583_ net/minecraft/network/protocol/game/ClientboundAnimatePacket/SWING_MAIN_HAND +FD: net/minecraft/network/protocol/game/ClientboundAnimatePacket/f_178585_ net/minecraft/network/protocol/game/ClientboundAnimatePacket/WAKE_UP +FD: net/minecraft/network/protocol/game/ClientboundAnimatePacket/f_178586_ net/minecraft/network/protocol/game/ClientboundAnimatePacket/SWING_OFF_HAND +FD: net/minecraft/network/protocol/game/ClientboundAnimatePacket/f_178587_ net/minecraft/network/protocol/game/ClientboundAnimatePacket/CRITICAL_HIT +FD: net/minecraft/network/protocol/game/ClientboundAnimatePacket/f_178588_ net/minecraft/network/protocol/game/ClientboundAnimatePacket/MAGIC_CRITICAL_HIT +FD: net/minecraft/network/protocol/game/ClientboundAwardStatsPacket/f_131628_ net/minecraft/network/protocol/game/ClientboundAwardStatsPacket/stats +FD: net/minecraft/network/protocol/game/ClientboundBlockChangedAckPacket/f_237578_ net/minecraft/network/protocol/game/ClientboundBlockChangedAckPacket/sequence +FD: net/minecraft/network/protocol/game/ClientboundBlockDestructionPacket/f_131671_ net/minecraft/network/protocol/game/ClientboundBlockDestructionPacket/id +FD: net/minecraft/network/protocol/game/ClientboundBlockDestructionPacket/f_131672_ net/minecraft/network/protocol/game/ClientboundBlockDestructionPacket/pos +FD: net/minecraft/network/protocol/game/ClientboundBlockDestructionPacket/f_131673_ net/minecraft/network/protocol/game/ClientboundBlockDestructionPacket/progress +FD: net/minecraft/network/protocol/game/ClientboundBlockEntityDataPacket/f_131690_ net/minecraft/network/protocol/game/ClientboundBlockEntityDataPacket/pos +FD: net/minecraft/network/protocol/game/ClientboundBlockEntityDataPacket/f_131691_ net/minecraft/network/protocol/game/ClientboundBlockEntityDataPacket/type +FD: net/minecraft/network/protocol/game/ClientboundBlockEntityDataPacket/f_131692_ net/minecraft/network/protocol/game/ClientboundBlockEntityDataPacket/tag +FD: net/minecraft/network/protocol/game/ClientboundBlockEventPacket/f_131709_ net/minecraft/network/protocol/game/ClientboundBlockEventPacket/pos +FD: net/minecraft/network/protocol/game/ClientboundBlockEventPacket/f_131710_ net/minecraft/network/protocol/game/ClientboundBlockEventPacket/b0 +FD: net/minecraft/network/protocol/game/ClientboundBlockEventPacket/f_131711_ net/minecraft/network/protocol/game/ClientboundBlockEventPacket/b1 +FD: net/minecraft/network/protocol/game/ClientboundBlockEventPacket/f_131712_ net/minecraft/network/protocol/game/ClientboundBlockEventPacket/block +FD: net/minecraft/network/protocol/game/ClientboundBlockUpdatePacket/f_131731_ net/minecraft/network/protocol/game/ClientboundBlockUpdatePacket/pos +FD: net/minecraft/network/protocol/game/ClientboundBlockUpdatePacket/f_131732_ net/minecraft/network/protocol/game/ClientboundBlockUpdatePacket/blockState +FD: net/minecraft/network/protocol/game/ClientboundBossEventPacket/f_131750_ net/minecraft/network/protocol/game/ClientboundBossEventPacket/id +FD: net/minecraft/network/protocol/game/ClientboundBossEventPacket/f_131751_ net/minecraft/network/protocol/game/ClientboundBossEventPacket/operation +FD: net/minecraft/network/protocol/game/ClientboundBossEventPacket/f_178629_ net/minecraft/network/protocol/game/ClientboundBossEventPacket/FLAG_DARKEN +FD: net/minecraft/network/protocol/game/ClientboundBossEventPacket/f_178630_ net/minecraft/network/protocol/game/ClientboundBossEventPacket/FLAG_MUSIC +FD: net/minecraft/network/protocol/game/ClientboundBossEventPacket/f_178631_ net/minecraft/network/protocol/game/ClientboundBossEventPacket/FLAG_FOG +FD: net/minecraft/network/protocol/game/ClientboundBossEventPacket/f_178632_ net/minecraft/network/protocol/game/ClientboundBossEventPacket/REMOVE_OPERATION +FD: net/minecraft/network/protocol/game/ClientboundBossEventPacket$AddOperation/f_178664_ net/minecraft/network/protocol/game/ClientboundBossEventPacket$AddOperation/name +FD: net/minecraft/network/protocol/game/ClientboundBossEventPacket$AddOperation/f_178665_ net/minecraft/network/protocol/game/ClientboundBossEventPacket$AddOperation/progress +FD: net/minecraft/network/protocol/game/ClientboundBossEventPacket$AddOperation/f_178666_ net/minecraft/network/protocol/game/ClientboundBossEventPacket$AddOperation/color +FD: net/minecraft/network/protocol/game/ClientboundBossEventPacket$AddOperation/f_178667_ net/minecraft/network/protocol/game/ClientboundBossEventPacket$AddOperation/overlay +FD: net/minecraft/network/protocol/game/ClientboundBossEventPacket$AddOperation/f_178668_ net/minecraft/network/protocol/game/ClientboundBossEventPacket$AddOperation/darkenScreen +FD: net/minecraft/network/protocol/game/ClientboundBossEventPacket$AddOperation/f_178669_ net/minecraft/network/protocol/game/ClientboundBossEventPacket$AddOperation/playMusic +FD: net/minecraft/network/protocol/game/ClientboundBossEventPacket$AddOperation/f_178670_ net/minecraft/network/protocol/game/ClientboundBossEventPacket$AddOperation/createWorldFog +FD: net/minecraft/network/protocol/game/ClientboundBossEventPacket$OperationType/$VALUES net/minecraft/network/protocol/game/ClientboundBossEventPacket$OperationType/$VALUES +FD: net/minecraft/network/protocol/game/ClientboundBossEventPacket$OperationType/ADD net/minecraft/network/protocol/game/ClientboundBossEventPacket$OperationType/ADD +FD: net/minecraft/network/protocol/game/ClientboundBossEventPacket$OperationType/REMOVE net/minecraft/network/protocol/game/ClientboundBossEventPacket$OperationType/REMOVE +FD: net/minecraft/network/protocol/game/ClientboundBossEventPacket$OperationType/UPDATE_NAME net/minecraft/network/protocol/game/ClientboundBossEventPacket$OperationType/UPDATE_NAME +FD: net/minecraft/network/protocol/game/ClientboundBossEventPacket$OperationType/UPDATE_PROGRESS net/minecraft/network/protocol/game/ClientboundBossEventPacket$OperationType/UPDATE_PROGRESS +FD: net/minecraft/network/protocol/game/ClientboundBossEventPacket$OperationType/UPDATE_PROPERTIES net/minecraft/network/protocol/game/ClientboundBossEventPacket$OperationType/UPDATE_PROPERTIES +FD: net/minecraft/network/protocol/game/ClientboundBossEventPacket$OperationType/UPDATE_STYLE net/minecraft/network/protocol/game/ClientboundBossEventPacket$OperationType/UPDATE_STYLE +FD: net/minecraft/network/protocol/game/ClientboundBossEventPacket$OperationType/f_178710_ net/minecraft/network/protocol/game/ClientboundBossEventPacket$OperationType/reader +FD: net/minecraft/network/protocol/game/ClientboundBossEventPacket$UpdateNameOperation/f_178723_ net/minecraft/network/protocol/game/ClientboundBossEventPacket$UpdateNameOperation/name +FD: net/minecraft/network/protocol/game/ClientboundBossEventPacket$UpdateProgressOperation/f_178734_ net/minecraft/network/protocol/game/ClientboundBossEventPacket$UpdateProgressOperation/progress +FD: net/minecraft/network/protocol/game/ClientboundBossEventPacket$UpdatePropertiesOperation/f_178745_ net/minecraft/network/protocol/game/ClientboundBossEventPacket$UpdatePropertiesOperation/darkenScreen +FD: net/minecraft/network/protocol/game/ClientboundBossEventPacket$UpdatePropertiesOperation/f_178746_ net/minecraft/network/protocol/game/ClientboundBossEventPacket$UpdatePropertiesOperation/playMusic +FD: net/minecraft/network/protocol/game/ClientboundBossEventPacket$UpdatePropertiesOperation/f_178747_ net/minecraft/network/protocol/game/ClientboundBossEventPacket$UpdatePropertiesOperation/createWorldFog +FD: net/minecraft/network/protocol/game/ClientboundBossEventPacket$UpdateStyleOperation/f_178760_ net/minecraft/network/protocol/game/ClientboundBossEventPacket$UpdateStyleOperation/color +FD: net/minecraft/network/protocol/game/ClientboundBossEventPacket$UpdateStyleOperation/f_178761_ net/minecraft/network/protocol/game/ClientboundBossEventPacket$UpdateStyleOperation/overlay +FD: net/minecraft/network/protocol/game/ClientboundChangeDifficultyPacket/f_131805_ net/minecraft/network/protocol/game/ClientboundChangeDifficultyPacket/difficulty +FD: net/minecraft/network/protocol/game/ClientboundChangeDifficultyPacket/f_131806_ net/minecraft/network/protocol/game/ClientboundChangeDifficultyPacket/locked +FD: net/minecraft/network/protocol/game/ClientboundChunksBiomesPacket/f_273816_ net/minecraft/network/protocol/game/ClientboundChunksBiomesPacket/chunkBiomeData +FD: net/minecraft/network/protocol/game/ClientboundChunksBiomesPacket/f_273892_ net/minecraft/network/protocol/game/ClientboundChunksBiomesPacket/TWO_MEGABYTES +FD: net/minecraft/network/protocol/game/ClientboundChunksBiomesPacket$ChunkBiomeData/f_273848_ net/minecraft/network/protocol/game/ClientboundChunksBiomesPacket$ChunkBiomeData/buffer +FD: net/minecraft/network/protocol/game/ClientboundChunksBiomesPacket$ChunkBiomeData/f_273927_ net/minecraft/network/protocol/game/ClientboundChunksBiomesPacket$ChunkBiomeData/pos +FD: net/minecraft/network/protocol/game/ClientboundClearTitlesPacket/f_178777_ net/minecraft/network/protocol/game/ClientboundClearTitlesPacket/resetTimes +FD: net/minecraft/network/protocol/game/ClientboundCommandSuggestionsPacket/f_131842_ net/minecraft/network/protocol/game/ClientboundCommandSuggestionsPacket/id +FD: net/minecraft/network/protocol/game/ClientboundCommandSuggestionsPacket/f_131843_ net/minecraft/network/protocol/game/ClientboundCommandSuggestionsPacket/suggestions +FD: net/minecraft/network/protocol/game/ClientboundCommandsPacket/f_178797_ net/minecraft/network/protocol/game/ClientboundCommandsPacket/MASK_TYPE +FD: net/minecraft/network/protocol/game/ClientboundCommandsPacket/f_178798_ net/minecraft/network/protocol/game/ClientboundCommandsPacket/FLAG_EXECUTABLE +FD: net/minecraft/network/protocol/game/ClientboundCommandsPacket/f_178799_ net/minecraft/network/protocol/game/ClientboundCommandsPacket/FLAG_REDIRECT +FD: net/minecraft/network/protocol/game/ClientboundCommandsPacket/f_178800_ net/minecraft/network/protocol/game/ClientboundCommandsPacket/FLAG_CUSTOM_SUGGESTIONS +FD: net/minecraft/network/protocol/game/ClientboundCommandsPacket/f_178801_ net/minecraft/network/protocol/game/ClientboundCommandsPacket/TYPE_ROOT +FD: net/minecraft/network/protocol/game/ClientboundCommandsPacket/f_178802_ net/minecraft/network/protocol/game/ClientboundCommandsPacket/TYPE_LITERAL +FD: net/minecraft/network/protocol/game/ClientboundCommandsPacket/f_178803_ net/minecraft/network/protocol/game/ClientboundCommandsPacket/TYPE_ARGUMENT +FD: net/minecraft/network/protocol/game/ClientboundCommandsPacket/f_237619_ net/minecraft/network/protocol/game/ClientboundCommandsPacket/rootIndex +FD: net/minecraft/network/protocol/game/ClientboundCommandsPacket/f_237620_ net/minecraft/network/protocol/game/ClientboundCommandsPacket/entries +FD: net/minecraft/network/protocol/game/ClientboundCommandsPacket$ArgumentNodeStub/f_237644_ net/minecraft/network/protocol/game/ClientboundCommandsPacket$ArgumentNodeStub/id +FD: net/minecraft/network/protocol/game/ClientboundCommandsPacket$ArgumentNodeStub/f_237645_ net/minecraft/network/protocol/game/ClientboundCommandsPacket$ArgumentNodeStub/argumentType +FD: net/minecraft/network/protocol/game/ClientboundCommandsPacket$ArgumentNodeStub/f_237646_ net/minecraft/network/protocol/game/ClientboundCommandsPacket$ArgumentNodeStub/suggestionId +FD: net/minecraft/network/protocol/game/ClientboundCommandsPacket$Entry/f_131890_ net/minecraft/network/protocol/game/ClientboundCommandsPacket$Entry/flags +FD: net/minecraft/network/protocol/game/ClientboundCommandsPacket$Entry/f_131891_ net/minecraft/network/protocol/game/ClientboundCommandsPacket$Entry/redirect +FD: net/minecraft/network/protocol/game/ClientboundCommandsPacket$Entry/f_131892_ net/minecraft/network/protocol/game/ClientboundCommandsPacket$Entry/children +FD: net/minecraft/network/protocol/game/ClientboundCommandsPacket$Entry/f_237666_ net/minecraft/network/protocol/game/ClientboundCommandsPacket$Entry/stub +FD: net/minecraft/network/protocol/game/ClientboundCommandsPacket$LiteralNodeStub/f_237678_ net/minecraft/network/protocol/game/ClientboundCommandsPacket$LiteralNodeStub/id +FD: net/minecraft/network/protocol/game/ClientboundCommandsPacket$NodeResolver/f_237685_ net/minecraft/network/protocol/game/ClientboundCommandsPacket$NodeResolver/context +FD: net/minecraft/network/protocol/game/ClientboundCommandsPacket$NodeResolver/f_237686_ net/minecraft/network/protocol/game/ClientboundCommandsPacket$NodeResolver/entries +FD: net/minecraft/network/protocol/game/ClientboundCommandsPacket$NodeResolver/f_237687_ net/minecraft/network/protocol/game/ClientboundCommandsPacket$NodeResolver/nodes +FD: net/minecraft/network/protocol/game/ClientboundContainerClosePacket/f_131930_ net/minecraft/network/protocol/game/ClientboundContainerClosePacket/containerId +FD: net/minecraft/network/protocol/game/ClientboundContainerSetContentPacket/f_131942_ net/minecraft/network/protocol/game/ClientboundContainerSetContentPacket/containerId +FD: net/minecraft/network/protocol/game/ClientboundContainerSetContentPacket/f_131943_ net/minecraft/network/protocol/game/ClientboundContainerSetContentPacket/items +FD: net/minecraft/network/protocol/game/ClientboundContainerSetContentPacket/f_182701_ net/minecraft/network/protocol/game/ClientboundContainerSetContentPacket/stateId +FD: net/minecraft/network/protocol/game/ClientboundContainerSetContentPacket/f_182702_ net/minecraft/network/protocol/game/ClientboundContainerSetContentPacket/carriedItem +FD: net/minecraft/network/protocol/game/ClientboundContainerSetDataPacket/f_131958_ net/minecraft/network/protocol/game/ClientboundContainerSetDataPacket/containerId +FD: net/minecraft/network/protocol/game/ClientboundContainerSetDataPacket/f_131959_ net/minecraft/network/protocol/game/ClientboundContainerSetDataPacket/id +FD: net/minecraft/network/protocol/game/ClientboundContainerSetDataPacket/f_131960_ net/minecraft/network/protocol/game/ClientboundContainerSetDataPacket/value +FD: net/minecraft/network/protocol/game/ClientboundContainerSetSlotPacket/f_131977_ net/minecraft/network/protocol/game/ClientboundContainerSetSlotPacket/containerId +FD: net/minecraft/network/protocol/game/ClientboundContainerSetSlotPacket/f_131978_ net/minecraft/network/protocol/game/ClientboundContainerSetSlotPacket/slot +FD: net/minecraft/network/protocol/game/ClientboundContainerSetSlotPacket/f_131979_ net/minecraft/network/protocol/game/ClientboundContainerSetSlotPacket/itemStack +FD: net/minecraft/network/protocol/game/ClientboundContainerSetSlotPacket/f_178826_ net/minecraft/network/protocol/game/ClientboundContainerSetSlotPacket/CARRIED_ITEM +FD: net/minecraft/network/protocol/game/ClientboundContainerSetSlotPacket/f_178827_ net/minecraft/network/protocol/game/ClientboundContainerSetSlotPacket/PLAYER_INVENTORY +FD: net/minecraft/network/protocol/game/ClientboundContainerSetSlotPacket/f_182710_ net/minecraft/network/protocol/game/ClientboundContainerSetSlotPacket/stateId +FD: net/minecraft/network/protocol/game/ClientboundCooldownPacket/f_131996_ net/minecraft/network/protocol/game/ClientboundCooldownPacket/item +FD: net/minecraft/network/protocol/game/ClientboundCooldownPacket/f_131997_ net/minecraft/network/protocol/game/ClientboundCooldownPacket/duration +FD: net/minecraft/network/protocol/game/ClientboundCustomChatCompletionsPacket/f_240661_ net/minecraft/network/protocol/game/ClientboundCustomChatCompletionsPacket/action +FD: net/minecraft/network/protocol/game/ClientboundCustomChatCompletionsPacket/f_240663_ net/minecraft/network/protocol/game/ClientboundCustomChatCompletionsPacket/entries +FD: net/minecraft/network/protocol/game/ClientboundCustomChatCompletionsPacket$Action/$VALUES net/minecraft/network/protocol/game/ClientboundCustomChatCompletionsPacket$Action/$VALUES +FD: net/minecraft/network/protocol/game/ClientboundCustomChatCompletionsPacket$Action/ADD net/minecraft/network/protocol/game/ClientboundCustomChatCompletionsPacket$Action/ADD +FD: net/minecraft/network/protocol/game/ClientboundCustomChatCompletionsPacket$Action/REMOVE net/minecraft/network/protocol/game/ClientboundCustomChatCompletionsPacket$Action/REMOVE +FD: net/minecraft/network/protocol/game/ClientboundCustomChatCompletionsPacket$Action/SET net/minecraft/network/protocol/game/ClientboundCustomChatCompletionsPacket$Action/SET +FD: net/minecraft/network/protocol/game/ClientboundCustomPayloadPacket/f_132012_ net/minecraft/network/protocol/game/ClientboundCustomPayloadPacket/BRAND +FD: net/minecraft/network/protocol/game/ClientboundCustomPayloadPacket/f_132013_ net/minecraft/network/protocol/game/ClientboundCustomPayloadPacket/DEBUG_PATHFINDING_PACKET +FD: net/minecraft/network/protocol/game/ClientboundCustomPayloadPacket/f_132014_ net/minecraft/network/protocol/game/ClientboundCustomPayloadPacket/DEBUG_NEIGHBORSUPDATE_PACKET +FD: net/minecraft/network/protocol/game/ClientboundCustomPayloadPacket/f_132016_ net/minecraft/network/protocol/game/ClientboundCustomPayloadPacket/DEBUG_STRUCTURES_PACKET +FD: net/minecraft/network/protocol/game/ClientboundCustomPayloadPacket/f_132017_ net/minecraft/network/protocol/game/ClientboundCustomPayloadPacket/DEBUG_WORLDGENATTEMPT_PACKET +FD: net/minecraft/network/protocol/game/ClientboundCustomPayloadPacket/f_132018_ net/minecraft/network/protocol/game/ClientboundCustomPayloadPacket/DEBUG_POI_TICKET_COUNT_PACKET +FD: net/minecraft/network/protocol/game/ClientboundCustomPayloadPacket/f_132019_ net/minecraft/network/protocol/game/ClientboundCustomPayloadPacket/DEBUG_POI_ADDED_PACKET +FD: net/minecraft/network/protocol/game/ClientboundCustomPayloadPacket/f_132020_ net/minecraft/network/protocol/game/ClientboundCustomPayloadPacket/DEBUG_POI_REMOVED_PACKET +FD: net/minecraft/network/protocol/game/ClientboundCustomPayloadPacket/f_132021_ net/minecraft/network/protocol/game/ClientboundCustomPayloadPacket/DEBUG_VILLAGE_SECTIONS +FD: net/minecraft/network/protocol/game/ClientboundCustomPayloadPacket/f_132022_ net/minecraft/network/protocol/game/ClientboundCustomPayloadPacket/DEBUG_GOAL_SELECTOR +FD: net/minecraft/network/protocol/game/ClientboundCustomPayloadPacket/f_132023_ net/minecraft/network/protocol/game/ClientboundCustomPayloadPacket/DEBUG_BRAIN +FD: net/minecraft/network/protocol/game/ClientboundCustomPayloadPacket/f_132024_ net/minecraft/network/protocol/game/ClientboundCustomPayloadPacket/DEBUG_BEE +FD: net/minecraft/network/protocol/game/ClientboundCustomPayloadPacket/f_132025_ net/minecraft/network/protocol/game/ClientboundCustomPayloadPacket/DEBUG_HIVE +FD: net/minecraft/network/protocol/game/ClientboundCustomPayloadPacket/f_132026_ net/minecraft/network/protocol/game/ClientboundCustomPayloadPacket/DEBUG_GAME_TEST_ADD_MARKER +FD: net/minecraft/network/protocol/game/ClientboundCustomPayloadPacket/f_132027_ net/minecraft/network/protocol/game/ClientboundCustomPayloadPacket/DEBUG_GAME_TEST_CLEAR +FD: net/minecraft/network/protocol/game/ClientboundCustomPayloadPacket/f_132028_ net/minecraft/network/protocol/game/ClientboundCustomPayloadPacket/DEBUG_RAIDS +FD: net/minecraft/network/protocol/game/ClientboundCustomPayloadPacket/f_132029_ net/minecraft/network/protocol/game/ClientboundCustomPayloadPacket/identifier +FD: net/minecraft/network/protocol/game/ClientboundCustomPayloadPacket/f_132030_ net/minecraft/network/protocol/game/ClientboundCustomPayloadPacket/data +FD: net/minecraft/network/protocol/game/ClientboundCustomPayloadPacket/f_178832_ net/minecraft/network/protocol/game/ClientboundCustomPayloadPacket/DEBUG_GAME_EVENT +FD: net/minecraft/network/protocol/game/ClientboundCustomPayloadPacket/f_178833_ net/minecraft/network/protocol/game/ClientboundCustomPayloadPacket/DEBUG_GAME_EVENT_LISTENER +FD: net/minecraft/network/protocol/game/ClientboundCustomPayloadPacket/f_178834_ net/minecraft/network/protocol/game/ClientboundCustomPayloadPacket/MAX_PAYLOAD_SIZE +FD: net/minecraft/network/protocol/game/ClientboundDamageEventPacket/f_268504_ net/minecraft/network/protocol/game/ClientboundDamageEventPacket/entityId +FD: net/minecraft/network/protocol/game/ClientboundDamageEventPacket/f_268559_ net/minecraft/network/protocol/game/ClientboundDamageEventPacket/sourceCauseId +FD: net/minecraft/network/protocol/game/ClientboundDamageEventPacket/f_268584_ net/minecraft/network/protocol/game/ClientboundDamageEventPacket/sourceTypeId +FD: net/minecraft/network/protocol/game/ClientboundDamageEventPacket/f_268649_ net/minecraft/network/protocol/game/ClientboundDamageEventPacket/sourceDirectId +FD: net/minecraft/network/protocol/game/ClientboundDamageEventPacket/f_268712_ net/minecraft/network/protocol/game/ClientboundDamageEventPacket/sourcePosition +FD: net/minecraft/network/protocol/game/ClientboundDeleteChatPacket/f_240904_ net/minecraft/network/protocol/game/ClientboundDeleteChatPacket/messageSignature +FD: net/minecraft/network/protocol/game/ClientboundDisconnectPacket/f_132075_ net/minecraft/network/protocol/game/ClientboundDisconnectPacket/reason +FD: net/minecraft/network/protocol/game/ClientboundDisguisedChatPacket/f_244252_ net/minecraft/network/protocol/game/ClientboundDisguisedChatPacket/chatType +FD: net/minecraft/network/protocol/game/ClientboundDisguisedChatPacket/f_244491_ net/minecraft/network/protocol/game/ClientboundDisguisedChatPacket/message +FD: net/minecraft/network/protocol/game/ClientboundEntityEventPacket/f_132088_ net/minecraft/network/protocol/game/ClientboundEntityEventPacket/entityId +FD: net/minecraft/network/protocol/game/ClientboundEntityEventPacket/f_132089_ net/minecraft/network/protocol/game/ClientboundEntityEventPacket/eventId +FD: net/minecraft/network/protocol/game/ClientboundExplodePacket/f_132105_ net/minecraft/network/protocol/game/ClientboundExplodePacket/x +FD: net/minecraft/network/protocol/game/ClientboundExplodePacket/f_132106_ net/minecraft/network/protocol/game/ClientboundExplodePacket/y +FD: net/minecraft/network/protocol/game/ClientboundExplodePacket/f_132107_ net/minecraft/network/protocol/game/ClientboundExplodePacket/z +FD: net/minecraft/network/protocol/game/ClientboundExplodePacket/f_132108_ net/minecraft/network/protocol/game/ClientboundExplodePacket/power +FD: net/minecraft/network/protocol/game/ClientboundExplodePacket/f_132109_ net/minecraft/network/protocol/game/ClientboundExplodePacket/toBlow +FD: net/minecraft/network/protocol/game/ClientboundExplodePacket/f_132110_ net/minecraft/network/protocol/game/ClientboundExplodePacket/knockbackX +FD: net/minecraft/network/protocol/game/ClientboundExplodePacket/f_132111_ net/minecraft/network/protocol/game/ClientboundExplodePacket/knockbackY +FD: net/minecraft/network/protocol/game/ClientboundExplodePacket/f_132112_ net/minecraft/network/protocol/game/ClientboundExplodePacket/knockbackZ +FD: net/minecraft/network/protocol/game/ClientboundForgetLevelChunkPacket/f_132137_ net/minecraft/network/protocol/game/ClientboundForgetLevelChunkPacket/x +FD: net/minecraft/network/protocol/game/ClientboundForgetLevelChunkPacket/f_132138_ net/minecraft/network/protocol/game/ClientboundForgetLevelChunkPacket/z +FD: net/minecraft/network/protocol/game/ClientboundGameEventPacket/f_132153_ net/minecraft/network/protocol/game/ClientboundGameEventPacket/NO_RESPAWN_BLOCK_AVAILABLE +FD: net/minecraft/network/protocol/game/ClientboundGameEventPacket/f_132154_ net/minecraft/network/protocol/game/ClientboundGameEventPacket/START_RAINING +FD: net/minecraft/network/protocol/game/ClientboundGameEventPacket/f_132155_ net/minecraft/network/protocol/game/ClientboundGameEventPacket/STOP_RAINING +FD: net/minecraft/network/protocol/game/ClientboundGameEventPacket/f_132156_ net/minecraft/network/protocol/game/ClientboundGameEventPacket/CHANGE_GAME_MODE +FD: net/minecraft/network/protocol/game/ClientboundGameEventPacket/f_132157_ net/minecraft/network/protocol/game/ClientboundGameEventPacket/WIN_GAME +FD: net/minecraft/network/protocol/game/ClientboundGameEventPacket/f_132158_ net/minecraft/network/protocol/game/ClientboundGameEventPacket/DEMO_EVENT +FD: net/minecraft/network/protocol/game/ClientboundGameEventPacket/f_132159_ net/minecraft/network/protocol/game/ClientboundGameEventPacket/ARROW_HIT_PLAYER +FD: net/minecraft/network/protocol/game/ClientboundGameEventPacket/f_132160_ net/minecraft/network/protocol/game/ClientboundGameEventPacket/RAIN_LEVEL_CHANGE +FD: net/minecraft/network/protocol/game/ClientboundGameEventPacket/f_132161_ net/minecraft/network/protocol/game/ClientboundGameEventPacket/THUNDER_LEVEL_CHANGE +FD: net/minecraft/network/protocol/game/ClientboundGameEventPacket/f_132162_ net/minecraft/network/protocol/game/ClientboundGameEventPacket/PUFFER_FISH_STING +FD: net/minecraft/network/protocol/game/ClientboundGameEventPacket/f_132163_ net/minecraft/network/protocol/game/ClientboundGameEventPacket/GUARDIAN_ELDER_EFFECT +FD: net/minecraft/network/protocol/game/ClientboundGameEventPacket/f_132164_ net/minecraft/network/protocol/game/ClientboundGameEventPacket/IMMEDIATE_RESPAWN +FD: net/minecraft/network/protocol/game/ClientboundGameEventPacket/f_132165_ net/minecraft/network/protocol/game/ClientboundGameEventPacket/event +FD: net/minecraft/network/protocol/game/ClientboundGameEventPacket/f_132166_ net/minecraft/network/protocol/game/ClientboundGameEventPacket/param +FD: net/minecraft/network/protocol/game/ClientboundGameEventPacket/f_178859_ net/minecraft/network/protocol/game/ClientboundGameEventPacket/DEMO_PARAM_INTRO +FD: net/minecraft/network/protocol/game/ClientboundGameEventPacket/f_178860_ net/minecraft/network/protocol/game/ClientboundGameEventPacket/DEMO_PARAM_HINT_1 +FD: net/minecraft/network/protocol/game/ClientboundGameEventPacket/f_178861_ net/minecraft/network/protocol/game/ClientboundGameEventPacket/DEMO_PARAM_HINT_2 +FD: net/minecraft/network/protocol/game/ClientboundGameEventPacket/f_178862_ net/minecraft/network/protocol/game/ClientboundGameEventPacket/DEMO_PARAM_HINT_3 +FD: net/minecraft/network/protocol/game/ClientboundGameEventPacket/f_178863_ net/minecraft/network/protocol/game/ClientboundGameEventPacket/DEMO_PARAM_HINT_4 +FD: net/minecraft/network/protocol/game/ClientboundGameEventPacket$Type/f_132182_ net/minecraft/network/protocol/game/ClientboundGameEventPacket$Type/TYPES +FD: net/minecraft/network/protocol/game/ClientboundGameEventPacket$Type/f_132183_ net/minecraft/network/protocol/game/ClientboundGameEventPacket$Type/id +FD: net/minecraft/network/protocol/game/ClientboundHorseScreenOpenPacket/f_132190_ net/minecraft/network/protocol/game/ClientboundHorseScreenOpenPacket/containerId +FD: net/minecraft/network/protocol/game/ClientboundHorseScreenOpenPacket/f_132191_ net/minecraft/network/protocol/game/ClientboundHorseScreenOpenPacket/size +FD: net/minecraft/network/protocol/game/ClientboundHorseScreenOpenPacket/f_132192_ net/minecraft/network/protocol/game/ClientboundHorseScreenOpenPacket/entityId +FD: net/minecraft/network/protocol/game/ClientboundHurtAnimationPacket/f_263825_ net/minecraft/network/protocol/game/ClientboundHurtAnimationPacket/id +FD: net/minecraft/network/protocol/game/ClientboundHurtAnimationPacket/f_263826_ net/minecraft/network/protocol/game/ClientboundHurtAnimationPacket/yaw +FD: net/minecraft/network/protocol/game/ClientboundInitializeBorderPacket/f_178868_ net/minecraft/network/protocol/game/ClientboundInitializeBorderPacket/newCenterX +FD: net/minecraft/network/protocol/game/ClientboundInitializeBorderPacket/f_178869_ net/minecraft/network/protocol/game/ClientboundInitializeBorderPacket/newCenterZ +FD: net/minecraft/network/protocol/game/ClientboundInitializeBorderPacket/f_178870_ net/minecraft/network/protocol/game/ClientboundInitializeBorderPacket/oldSize +FD: net/minecraft/network/protocol/game/ClientboundInitializeBorderPacket/f_178871_ net/minecraft/network/protocol/game/ClientboundInitializeBorderPacket/newSize +FD: net/minecraft/network/protocol/game/ClientboundInitializeBorderPacket/f_178872_ net/minecraft/network/protocol/game/ClientboundInitializeBorderPacket/lerpTime +FD: net/minecraft/network/protocol/game/ClientboundInitializeBorderPacket/f_178873_ net/minecraft/network/protocol/game/ClientboundInitializeBorderPacket/newAbsoluteMaxSize +FD: net/minecraft/network/protocol/game/ClientboundInitializeBorderPacket/f_178874_ net/minecraft/network/protocol/game/ClientboundInitializeBorderPacket/warningBlocks +FD: net/minecraft/network/protocol/game/ClientboundInitializeBorderPacket/f_178875_ net/minecraft/network/protocol/game/ClientboundInitializeBorderPacket/warningTime +FD: net/minecraft/network/protocol/game/ClientboundKeepAlivePacket/f_132209_ net/minecraft/network/protocol/game/ClientboundKeepAlivePacket/id +FD: net/minecraft/network/protocol/game/ClientboundLevelChunkPacketData/f_195646_ net/minecraft/network/protocol/game/ClientboundLevelChunkPacketData/TWO_MEGABYTES +FD: net/minecraft/network/protocol/game/ClientboundLevelChunkPacketData/f_195647_ net/minecraft/network/protocol/game/ClientboundLevelChunkPacketData/heightmaps +FD: net/minecraft/network/protocol/game/ClientboundLevelChunkPacketData/f_195648_ net/minecraft/network/protocol/game/ClientboundLevelChunkPacketData/buffer +FD: net/minecraft/network/protocol/game/ClientboundLevelChunkPacketData/f_195649_ net/minecraft/network/protocol/game/ClientboundLevelChunkPacketData/blockEntitiesData +FD: net/minecraft/network/protocol/game/ClientboundLevelChunkPacketData$BlockEntityInfo/f_195680_ net/minecraft/network/protocol/game/ClientboundLevelChunkPacketData$BlockEntityInfo/packedXZ +FD: net/minecraft/network/protocol/game/ClientboundLevelChunkPacketData$BlockEntityInfo/f_195681_ net/minecraft/network/protocol/game/ClientboundLevelChunkPacketData$BlockEntityInfo/y +FD: net/minecraft/network/protocol/game/ClientboundLevelChunkPacketData$BlockEntityInfo/f_195682_ net/minecraft/network/protocol/game/ClientboundLevelChunkPacketData$BlockEntityInfo/type +FD: net/minecraft/network/protocol/game/ClientboundLevelChunkPacketData$BlockEntityInfo/f_195683_ net/minecraft/network/protocol/game/ClientboundLevelChunkPacketData$BlockEntityInfo/tag +FD: net/minecraft/network/protocol/game/ClientboundLevelChunkWithLightPacket/f_195699_ net/minecraft/network/protocol/game/ClientboundLevelChunkWithLightPacket/x +FD: net/minecraft/network/protocol/game/ClientboundLevelChunkWithLightPacket/f_195700_ net/minecraft/network/protocol/game/ClientboundLevelChunkWithLightPacket/z +FD: net/minecraft/network/protocol/game/ClientboundLevelChunkWithLightPacket/f_195701_ net/minecraft/network/protocol/game/ClientboundLevelChunkWithLightPacket/chunkData +FD: net/minecraft/network/protocol/game/ClientboundLevelChunkWithLightPacket/f_195702_ net/minecraft/network/protocol/game/ClientboundLevelChunkWithLightPacket/lightData +FD: net/minecraft/network/protocol/game/ClientboundLevelEventPacket/f_132258_ net/minecraft/network/protocol/game/ClientboundLevelEventPacket/type +FD: net/minecraft/network/protocol/game/ClientboundLevelEventPacket/f_132259_ net/minecraft/network/protocol/game/ClientboundLevelEventPacket/pos +FD: net/minecraft/network/protocol/game/ClientboundLevelEventPacket/f_132260_ net/minecraft/network/protocol/game/ClientboundLevelEventPacket/data +FD: net/minecraft/network/protocol/game/ClientboundLevelEventPacket/f_132261_ net/minecraft/network/protocol/game/ClientboundLevelEventPacket/globalEvent +FD: net/minecraft/network/protocol/game/ClientboundLevelParticlesPacket/f_132280_ net/minecraft/network/protocol/game/ClientboundLevelParticlesPacket/x +FD: net/minecraft/network/protocol/game/ClientboundLevelParticlesPacket/f_132281_ net/minecraft/network/protocol/game/ClientboundLevelParticlesPacket/y +FD: net/minecraft/network/protocol/game/ClientboundLevelParticlesPacket/f_132282_ net/minecraft/network/protocol/game/ClientboundLevelParticlesPacket/z +FD: net/minecraft/network/protocol/game/ClientboundLevelParticlesPacket/f_132283_ net/minecraft/network/protocol/game/ClientboundLevelParticlesPacket/xDist +FD: net/minecraft/network/protocol/game/ClientboundLevelParticlesPacket/f_132284_ net/minecraft/network/protocol/game/ClientboundLevelParticlesPacket/yDist +FD: net/minecraft/network/protocol/game/ClientboundLevelParticlesPacket/f_132285_ net/minecraft/network/protocol/game/ClientboundLevelParticlesPacket/zDist +FD: net/minecraft/network/protocol/game/ClientboundLevelParticlesPacket/f_132286_ net/minecraft/network/protocol/game/ClientboundLevelParticlesPacket/maxSpeed +FD: net/minecraft/network/protocol/game/ClientboundLevelParticlesPacket/f_132287_ net/minecraft/network/protocol/game/ClientboundLevelParticlesPacket/count +FD: net/minecraft/network/protocol/game/ClientboundLevelParticlesPacket/f_132288_ net/minecraft/network/protocol/game/ClientboundLevelParticlesPacket/overrideLimiter +FD: net/minecraft/network/protocol/game/ClientboundLevelParticlesPacket/f_132289_ net/minecraft/network/protocol/game/ClientboundLevelParticlesPacket/particle +FD: net/minecraft/network/protocol/game/ClientboundLightUpdatePacket/f_132323_ net/minecraft/network/protocol/game/ClientboundLightUpdatePacket/x +FD: net/minecraft/network/protocol/game/ClientboundLightUpdatePacket/f_132324_ net/minecraft/network/protocol/game/ClientboundLightUpdatePacket/z +FD: net/minecraft/network/protocol/game/ClientboundLightUpdatePacket/f_195721_ net/minecraft/network/protocol/game/ClientboundLightUpdatePacket/lightData +FD: net/minecraft/network/protocol/game/ClientboundLightUpdatePacketData/f_195723_ net/minecraft/network/protocol/game/ClientboundLightUpdatePacketData/skyYMask +FD: net/minecraft/network/protocol/game/ClientboundLightUpdatePacketData/f_195724_ net/minecraft/network/protocol/game/ClientboundLightUpdatePacketData/blockYMask +FD: net/minecraft/network/protocol/game/ClientboundLightUpdatePacketData/f_195725_ net/minecraft/network/protocol/game/ClientboundLightUpdatePacketData/emptySkyYMask +FD: net/minecraft/network/protocol/game/ClientboundLightUpdatePacketData/f_195726_ net/minecraft/network/protocol/game/ClientboundLightUpdatePacketData/emptyBlockYMask +FD: net/minecraft/network/protocol/game/ClientboundLightUpdatePacketData/f_195727_ net/minecraft/network/protocol/game/ClientboundLightUpdatePacketData/skyUpdates +FD: net/minecraft/network/protocol/game/ClientboundLightUpdatePacketData/f_195728_ net/minecraft/network/protocol/game/ClientboundLightUpdatePacketData/blockUpdates +FD: net/minecraft/network/protocol/game/ClientboundLoginPacket/f_132360_ net/minecraft/network/protocol/game/ClientboundLoginPacket/playerId +FD: net/minecraft/network/protocol/game/ClientboundLoginPacket/f_132361_ net/minecraft/network/protocol/game/ClientboundLoginPacket/seed +FD: net/minecraft/network/protocol/game/ClientboundLoginPacket/f_132362_ net/minecraft/network/protocol/game/ClientboundLoginPacket/hardcore +FD: net/minecraft/network/protocol/game/ClientboundLoginPacket/f_132363_ net/minecraft/network/protocol/game/ClientboundLoginPacket/gameType +FD: net/minecraft/network/protocol/game/ClientboundLoginPacket/f_132364_ net/minecraft/network/protocol/game/ClientboundLoginPacket/previousGameType +FD: net/minecraft/network/protocol/game/ClientboundLoginPacket/f_132365_ net/minecraft/network/protocol/game/ClientboundLoginPacket/levels +FD: net/minecraft/network/protocol/game/ClientboundLoginPacket/f_132366_ net/minecraft/network/protocol/game/ClientboundLoginPacket/registryHolder +FD: net/minecraft/network/protocol/game/ClientboundLoginPacket/f_132367_ net/minecraft/network/protocol/game/ClientboundLoginPacket/dimensionType +FD: net/minecraft/network/protocol/game/ClientboundLoginPacket/f_132368_ net/minecraft/network/protocol/game/ClientboundLoginPacket/dimension +FD: net/minecraft/network/protocol/game/ClientboundLoginPacket/f_132369_ net/minecraft/network/protocol/game/ClientboundLoginPacket/maxPlayers +FD: net/minecraft/network/protocol/game/ClientboundLoginPacket/f_132370_ net/minecraft/network/protocol/game/ClientboundLoginPacket/chunkRadius +FD: net/minecraft/network/protocol/game/ClientboundLoginPacket/f_132371_ net/minecraft/network/protocol/game/ClientboundLoginPacket/reducedDebugInfo +FD: net/minecraft/network/protocol/game/ClientboundLoginPacket/f_132372_ net/minecraft/network/protocol/game/ClientboundLoginPacket/showDeathScreen +FD: net/minecraft/network/protocol/game/ClientboundLoginPacket/f_132373_ net/minecraft/network/protocol/game/ClientboundLoginPacket/isDebug +FD: net/minecraft/network/protocol/game/ClientboundLoginPacket/f_132374_ net/minecraft/network/protocol/game/ClientboundLoginPacket/isFlat +FD: net/minecraft/network/protocol/game/ClientboundLoginPacket/f_195761_ net/minecraft/network/protocol/game/ClientboundLoginPacket/simulationDistance +FD: net/minecraft/network/protocol/game/ClientboundLoginPacket/f_238174_ net/minecraft/network/protocol/game/ClientboundLoginPacket/lastDeathLocation +FD: net/minecraft/network/protocol/game/ClientboundLoginPacket/f_266064_ net/minecraft/network/protocol/game/ClientboundLoginPacket/BUILTIN_CONTEXT_OPS +FD: net/minecraft/network/protocol/game/ClientboundLoginPacket/f_286971_ net/minecraft/network/protocol/game/ClientboundLoginPacket/portalCooldown +FD: net/minecraft/network/protocol/game/ClientboundMapItemDataPacket/f_132415_ net/minecraft/network/protocol/game/ClientboundMapItemDataPacket/mapId +FD: net/minecraft/network/protocol/game/ClientboundMapItemDataPacket/f_132416_ net/minecraft/network/protocol/game/ClientboundMapItemDataPacket/scale +FD: net/minecraft/network/protocol/game/ClientboundMapItemDataPacket/f_132418_ net/minecraft/network/protocol/game/ClientboundMapItemDataPacket/locked +FD: net/minecraft/network/protocol/game/ClientboundMapItemDataPacket/f_132419_ net/minecraft/network/protocol/game/ClientboundMapItemDataPacket/decorations +FD: net/minecraft/network/protocol/game/ClientboundMapItemDataPacket/f_178968_ net/minecraft/network/protocol/game/ClientboundMapItemDataPacket/colorPatch +FD: net/minecraft/network/protocol/game/ClientboundMerchantOffersPacket/f_132448_ net/minecraft/network/protocol/game/ClientboundMerchantOffersPacket/containerId +FD: net/minecraft/network/protocol/game/ClientboundMerchantOffersPacket/f_132449_ net/minecraft/network/protocol/game/ClientboundMerchantOffersPacket/offers +FD: net/minecraft/network/protocol/game/ClientboundMerchantOffersPacket/f_132450_ net/minecraft/network/protocol/game/ClientboundMerchantOffersPacket/villagerLevel +FD: net/minecraft/network/protocol/game/ClientboundMerchantOffersPacket/f_132451_ net/minecraft/network/protocol/game/ClientboundMerchantOffersPacket/villagerXp +FD: net/minecraft/network/protocol/game/ClientboundMerchantOffersPacket/f_132452_ net/minecraft/network/protocol/game/ClientboundMerchantOffersPacket/showProgress +FD: net/minecraft/network/protocol/game/ClientboundMerchantOffersPacket/f_132453_ net/minecraft/network/protocol/game/ClientboundMerchantOffersPacket/canRestock +FD: net/minecraft/network/protocol/game/ClientboundMoveEntityPacket/f_132499_ net/minecraft/network/protocol/game/ClientboundMoveEntityPacket/entityId +FD: net/minecraft/network/protocol/game/ClientboundMoveEntityPacket/f_132500_ net/minecraft/network/protocol/game/ClientboundMoveEntityPacket/xa +FD: net/minecraft/network/protocol/game/ClientboundMoveEntityPacket/f_132501_ net/minecraft/network/protocol/game/ClientboundMoveEntityPacket/ya +FD: net/minecraft/network/protocol/game/ClientboundMoveEntityPacket/f_132502_ net/minecraft/network/protocol/game/ClientboundMoveEntityPacket/za +FD: net/minecraft/network/protocol/game/ClientboundMoveEntityPacket/f_132503_ net/minecraft/network/protocol/game/ClientboundMoveEntityPacket/yRot +FD: net/minecraft/network/protocol/game/ClientboundMoveEntityPacket/f_132504_ net/minecraft/network/protocol/game/ClientboundMoveEntityPacket/xRot +FD: net/minecraft/network/protocol/game/ClientboundMoveEntityPacket/f_132505_ net/minecraft/network/protocol/game/ClientboundMoveEntityPacket/onGround +FD: net/minecraft/network/protocol/game/ClientboundMoveEntityPacket/f_132506_ net/minecraft/network/protocol/game/ClientboundMoveEntityPacket/hasRot +FD: net/minecraft/network/protocol/game/ClientboundMoveEntityPacket/f_132507_ net/minecraft/network/protocol/game/ClientboundMoveEntityPacket/hasPos +FD: net/minecraft/network/protocol/game/ClientboundMoveVehiclePacket/f_132577_ net/minecraft/network/protocol/game/ClientboundMoveVehiclePacket/x +FD: net/minecraft/network/protocol/game/ClientboundMoveVehiclePacket/f_132578_ net/minecraft/network/protocol/game/ClientboundMoveVehiclePacket/y +FD: net/minecraft/network/protocol/game/ClientboundMoveVehiclePacket/f_132579_ net/minecraft/network/protocol/game/ClientboundMoveVehiclePacket/z +FD: net/minecraft/network/protocol/game/ClientboundMoveVehiclePacket/f_132580_ net/minecraft/network/protocol/game/ClientboundMoveVehiclePacket/yRot +FD: net/minecraft/network/protocol/game/ClientboundMoveVehiclePacket/f_132581_ net/minecraft/network/protocol/game/ClientboundMoveVehiclePacket/xRot +FD: net/minecraft/network/protocol/game/ClientboundOpenBookPacket/f_132598_ net/minecraft/network/protocol/game/ClientboundOpenBookPacket/hand +FD: net/minecraft/network/protocol/game/ClientboundOpenScreenPacket/f_132611_ net/minecraft/network/protocol/game/ClientboundOpenScreenPacket/containerId +FD: net/minecraft/network/protocol/game/ClientboundOpenScreenPacket/f_132612_ net/minecraft/network/protocol/game/ClientboundOpenScreenPacket/type +FD: net/minecraft/network/protocol/game/ClientboundOpenScreenPacket/f_132613_ net/minecraft/network/protocol/game/ClientboundOpenScreenPacket/title +FD: net/minecraft/network/protocol/game/ClientboundOpenSignEditorPacket/f_132630_ net/minecraft/network/protocol/game/ClientboundOpenSignEditorPacket/pos +FD: net/minecraft/network/protocol/game/ClientboundOpenSignEditorPacket/f_276459_ net/minecraft/network/protocol/game/ClientboundOpenSignEditorPacket/isFrontText +FD: net/minecraft/network/protocol/game/ClientboundPingPacket/f_179014_ net/minecraft/network/protocol/game/ClientboundPingPacket/id +FD: net/minecraft/network/protocol/game/ClientboundPlaceGhostRecipePacket/f_132643_ net/minecraft/network/protocol/game/ClientboundPlaceGhostRecipePacket/containerId +FD: net/minecraft/network/protocol/game/ClientboundPlaceGhostRecipePacket/f_132644_ net/minecraft/network/protocol/game/ClientboundPlaceGhostRecipePacket/recipe +FD: net/minecraft/network/protocol/game/ClientboundPlayerAbilitiesPacket/f_132659_ net/minecraft/network/protocol/game/ClientboundPlayerAbilitiesPacket/invulnerable +FD: net/minecraft/network/protocol/game/ClientboundPlayerAbilitiesPacket/f_132660_ net/minecraft/network/protocol/game/ClientboundPlayerAbilitiesPacket/isFlying +FD: net/minecraft/network/protocol/game/ClientboundPlayerAbilitiesPacket/f_132661_ net/minecraft/network/protocol/game/ClientboundPlayerAbilitiesPacket/canFly +FD: net/minecraft/network/protocol/game/ClientboundPlayerAbilitiesPacket/f_132662_ net/minecraft/network/protocol/game/ClientboundPlayerAbilitiesPacket/instabuild +FD: net/minecraft/network/protocol/game/ClientboundPlayerAbilitiesPacket/f_132663_ net/minecraft/network/protocol/game/ClientboundPlayerAbilitiesPacket/flyingSpeed +FD: net/minecraft/network/protocol/game/ClientboundPlayerAbilitiesPacket/f_132664_ net/minecraft/network/protocol/game/ClientboundPlayerAbilitiesPacket/walkingSpeed +FD: net/minecraft/network/protocol/game/ClientboundPlayerAbilitiesPacket/f_179028_ net/minecraft/network/protocol/game/ClientboundPlayerAbilitiesPacket/FLAG_INVULNERABLE +FD: net/minecraft/network/protocol/game/ClientboundPlayerAbilitiesPacket/f_179029_ net/minecraft/network/protocol/game/ClientboundPlayerAbilitiesPacket/FLAG_FLYING +FD: net/minecraft/network/protocol/game/ClientboundPlayerAbilitiesPacket/f_179030_ net/minecraft/network/protocol/game/ClientboundPlayerAbilitiesPacket/FLAG_CAN_FLY +FD: net/minecraft/network/protocol/game/ClientboundPlayerAbilitiesPacket/f_179031_ net/minecraft/network/protocol/game/ClientboundPlayerAbilitiesPacket/FLAG_INSTABUILD +FD: net/minecraft/network/protocol/game/ClientboundPlayerChatPacket/f_240897_ net/minecraft/network/protocol/game/ClientboundPlayerChatPacket/chatType +FD: net/minecraft/network/protocol/game/ClientboundPlayerChatPacket/f_243686_ net/minecraft/network/protocol/game/ClientboundPlayerChatPacket/unsignedContent +FD: net/minecraft/network/protocol/game/ClientboundPlayerChatPacket/f_243744_ net/minecraft/network/protocol/game/ClientboundPlayerChatPacket/filterMask +FD: net/minecraft/network/protocol/game/ClientboundPlayerChatPacket/f_243836_ net/minecraft/network/protocol/game/ClientboundPlayerChatPacket/signature +FD: net/minecraft/network/protocol/game/ClientboundPlayerChatPacket/f_243918_ net/minecraft/network/protocol/game/ClientboundPlayerChatPacket/sender +FD: net/minecraft/network/protocol/game/ClientboundPlayerChatPacket/f_244090_ net/minecraft/network/protocol/game/ClientboundPlayerChatPacket/body +FD: net/minecraft/network/protocol/game/ClientboundPlayerChatPacket/f_244283_ net/minecraft/network/protocol/game/ClientboundPlayerChatPacket/index +FD: net/minecraft/network/protocol/game/ClientboundPlayerCombatEndPacket/f_179035_ net/minecraft/network/protocol/game/ClientboundPlayerCombatEndPacket/duration +FD: net/minecraft/network/protocol/game/ClientboundPlayerCombatKillPacket/f_179058_ net/minecraft/network/protocol/game/ClientboundPlayerCombatKillPacket/playerId +FD: net/minecraft/network/protocol/game/ClientboundPlayerCombatKillPacket/f_179060_ net/minecraft/network/protocol/game/ClientboundPlayerCombatKillPacket/message +FD: net/minecraft/network/protocol/game/ClientboundPlayerInfoRemovePacket/f_244383_ net/minecraft/network/protocol/game/ClientboundPlayerInfoRemovePacket/profileIds +FD: net/minecraft/network/protocol/game/ClientboundPlayerInfoUpdatePacket/f_243795_ net/minecraft/network/protocol/game/ClientboundPlayerInfoUpdatePacket/actions +FD: net/minecraft/network/protocol/game/ClientboundPlayerInfoUpdatePacket/f_244436_ net/minecraft/network/protocol/game/ClientboundPlayerInfoUpdatePacket/entries +FD: net/minecraft/network/protocol/game/ClientboundPlayerInfoUpdatePacket$Action/$VALUES net/minecraft/network/protocol/game/ClientboundPlayerInfoUpdatePacket$Action/$VALUES +FD: net/minecraft/network/protocol/game/ClientboundPlayerInfoUpdatePacket$Action/ADD_PLAYER net/minecraft/network/protocol/game/ClientboundPlayerInfoUpdatePacket$Action/ADD_PLAYER +FD: net/minecraft/network/protocol/game/ClientboundPlayerInfoUpdatePacket$Action/INITIALIZE_CHAT net/minecraft/network/protocol/game/ClientboundPlayerInfoUpdatePacket$Action/INITIALIZE_CHAT +FD: net/minecraft/network/protocol/game/ClientboundPlayerInfoUpdatePacket$Action/UPDATE_DISPLAY_NAME net/minecraft/network/protocol/game/ClientboundPlayerInfoUpdatePacket$Action/UPDATE_DISPLAY_NAME +FD: net/minecraft/network/protocol/game/ClientboundPlayerInfoUpdatePacket$Action/UPDATE_GAME_MODE net/minecraft/network/protocol/game/ClientboundPlayerInfoUpdatePacket$Action/UPDATE_GAME_MODE +FD: net/minecraft/network/protocol/game/ClientboundPlayerInfoUpdatePacket$Action/UPDATE_LATENCY net/minecraft/network/protocol/game/ClientboundPlayerInfoUpdatePacket$Action/UPDATE_LATENCY +FD: net/minecraft/network/protocol/game/ClientboundPlayerInfoUpdatePacket$Action/UPDATE_LISTED net/minecraft/network/protocol/game/ClientboundPlayerInfoUpdatePacket$Action/UPDATE_LISTED +FD: net/minecraft/network/protocol/game/ClientboundPlayerInfoUpdatePacket$Action/f_243738_ net/minecraft/network/protocol/game/ClientboundPlayerInfoUpdatePacket$Action/writer +FD: net/minecraft/network/protocol/game/ClientboundPlayerInfoUpdatePacket$Action/f_243887_ net/minecraft/network/protocol/game/ClientboundPlayerInfoUpdatePacket$Action/reader +FD: net/minecraft/network/protocol/game/ClientboundPlayerInfoUpdatePacket$Entry/f_243688_ net/minecraft/network/protocol/game/ClientboundPlayerInfoUpdatePacket$Entry/profile +FD: net/minecraft/network/protocol/game/ClientboundPlayerInfoUpdatePacket$Entry/f_243700_ net/minecraft/network/protocol/game/ClientboundPlayerInfoUpdatePacket$Entry/listed +FD: net/minecraft/network/protocol/game/ClientboundPlayerInfoUpdatePacket$Entry/f_244142_ net/minecraft/network/protocol/game/ClientboundPlayerInfoUpdatePacket$Entry/profileId +FD: net/minecraft/network/protocol/game/ClientboundPlayerInfoUpdatePacket$Entry/f_244153_ net/minecraft/network/protocol/game/ClientboundPlayerInfoUpdatePacket$Entry/chatSession +FD: net/minecraft/network/protocol/game/ClientboundPlayerInfoUpdatePacket$Entry/f_244162_ net/minecraft/network/protocol/game/ClientboundPlayerInfoUpdatePacket$Entry/gameMode +FD: net/minecraft/network/protocol/game/ClientboundPlayerInfoUpdatePacket$Entry/f_244322_ net/minecraft/network/protocol/game/ClientboundPlayerInfoUpdatePacket$Entry/latency +FD: net/minecraft/network/protocol/game/ClientboundPlayerInfoUpdatePacket$Entry/f_244512_ net/minecraft/network/protocol/game/ClientboundPlayerInfoUpdatePacket$Entry/displayName +FD: net/minecraft/network/protocol/game/ClientboundPlayerInfoUpdatePacket$EntryBuilder/f_243762_ net/minecraft/network/protocol/game/ClientboundPlayerInfoUpdatePacket$EntryBuilder/latency +FD: net/minecraft/network/protocol/game/ClientboundPlayerInfoUpdatePacket$EntryBuilder/f_243856_ net/minecraft/network/protocol/game/ClientboundPlayerInfoUpdatePacket$EntryBuilder/profileId +FD: net/minecraft/network/protocol/game/ClientboundPlayerInfoUpdatePacket$EntryBuilder/f_243869_ net/minecraft/network/protocol/game/ClientboundPlayerInfoUpdatePacket$EntryBuilder/displayName +FD: net/minecraft/network/protocol/game/ClientboundPlayerInfoUpdatePacket$EntryBuilder/f_243955_ net/minecraft/network/protocol/game/ClientboundPlayerInfoUpdatePacket$EntryBuilder/listed +FD: net/minecraft/network/protocol/game/ClientboundPlayerInfoUpdatePacket$EntryBuilder/f_244042_ net/minecraft/network/protocol/game/ClientboundPlayerInfoUpdatePacket$EntryBuilder/profile +FD: net/minecraft/network/protocol/game/ClientboundPlayerInfoUpdatePacket$EntryBuilder/f_244148_ net/minecraft/network/protocol/game/ClientboundPlayerInfoUpdatePacket$EntryBuilder/gameMode +FD: net/minecraft/network/protocol/game/ClientboundPlayerInfoUpdatePacket$EntryBuilder/f_244393_ net/minecraft/network/protocol/game/ClientboundPlayerInfoUpdatePacket$EntryBuilder/chatSession +FD: net/minecraft/network/protocol/game/ClientboundPlayerLookAtPacket/f_132768_ net/minecraft/network/protocol/game/ClientboundPlayerLookAtPacket/x +FD: net/minecraft/network/protocol/game/ClientboundPlayerLookAtPacket/f_132769_ net/minecraft/network/protocol/game/ClientboundPlayerLookAtPacket/y +FD: net/minecraft/network/protocol/game/ClientboundPlayerLookAtPacket/f_132770_ net/minecraft/network/protocol/game/ClientboundPlayerLookAtPacket/z +FD: net/minecraft/network/protocol/game/ClientboundPlayerLookAtPacket/f_132771_ net/minecraft/network/protocol/game/ClientboundPlayerLookAtPacket/entity +FD: net/minecraft/network/protocol/game/ClientboundPlayerLookAtPacket/f_132772_ net/minecraft/network/protocol/game/ClientboundPlayerLookAtPacket/fromAnchor +FD: net/minecraft/network/protocol/game/ClientboundPlayerLookAtPacket/f_132773_ net/minecraft/network/protocol/game/ClientboundPlayerLookAtPacket/toAnchor +FD: net/minecraft/network/protocol/game/ClientboundPlayerLookAtPacket/f_132774_ net/minecraft/network/protocol/game/ClientboundPlayerLookAtPacket/atEntity +FD: net/minecraft/network/protocol/game/ClientboundPlayerPositionPacket/f_132796_ net/minecraft/network/protocol/game/ClientboundPlayerPositionPacket/x +FD: net/minecraft/network/protocol/game/ClientboundPlayerPositionPacket/f_132797_ net/minecraft/network/protocol/game/ClientboundPlayerPositionPacket/y +FD: net/minecraft/network/protocol/game/ClientboundPlayerPositionPacket/f_132798_ net/minecraft/network/protocol/game/ClientboundPlayerPositionPacket/z +FD: net/minecraft/network/protocol/game/ClientboundPlayerPositionPacket/f_132799_ net/minecraft/network/protocol/game/ClientboundPlayerPositionPacket/yRot +FD: net/minecraft/network/protocol/game/ClientboundPlayerPositionPacket/f_132800_ net/minecraft/network/protocol/game/ClientboundPlayerPositionPacket/xRot +FD: net/minecraft/network/protocol/game/ClientboundPlayerPositionPacket/f_132801_ net/minecraft/network/protocol/game/ClientboundPlayerPositionPacket/relativeArguments +FD: net/minecraft/network/protocol/game/ClientboundPlayerPositionPacket/f_132802_ net/minecraft/network/protocol/game/ClientboundPlayerPositionPacket/id +FD: net/minecraft/network/protocol/game/ClientboundRecipePacket/f_132849_ net/minecraft/network/protocol/game/ClientboundRecipePacket/state +FD: net/minecraft/network/protocol/game/ClientboundRecipePacket/f_132850_ net/minecraft/network/protocol/game/ClientboundRecipePacket/recipes +FD: net/minecraft/network/protocol/game/ClientboundRecipePacket/f_132851_ net/minecraft/network/protocol/game/ClientboundRecipePacket/toHighlight +FD: net/minecraft/network/protocol/game/ClientboundRecipePacket/f_132852_ net/minecraft/network/protocol/game/ClientboundRecipePacket/bookSettings +FD: net/minecraft/network/protocol/game/ClientboundRecipePacket$State/$VALUES net/minecraft/network/protocol/game/ClientboundRecipePacket$State/$VALUES +FD: net/minecraft/network/protocol/game/ClientboundRecipePacket$State/ADD net/minecraft/network/protocol/game/ClientboundRecipePacket$State/ADD +FD: net/minecraft/network/protocol/game/ClientboundRecipePacket$State/INIT net/minecraft/network/protocol/game/ClientboundRecipePacket$State/INIT +FD: net/minecraft/network/protocol/game/ClientboundRecipePacket$State/REMOVE net/minecraft/network/protocol/game/ClientboundRecipePacket$State/REMOVE +FD: net/minecraft/network/protocol/game/ClientboundRemoveEntitiesPacket/f_182717_ net/minecraft/network/protocol/game/ClientboundRemoveEntitiesPacket/entityIds +FD: net/minecraft/network/protocol/game/ClientboundRemoveMobEffectPacket/f_132895_ net/minecraft/network/protocol/game/ClientboundRemoveMobEffectPacket/entityId +FD: net/minecraft/network/protocol/game/ClientboundRemoveMobEffectPacket/f_132896_ net/minecraft/network/protocol/game/ClientboundRemoveMobEffectPacket/effect +FD: net/minecraft/network/protocol/game/ClientboundResourcePackPacket/f_132912_ net/minecraft/network/protocol/game/ClientboundResourcePackPacket/url +FD: net/minecraft/network/protocol/game/ClientboundResourcePackPacket/f_132913_ net/minecraft/network/protocol/game/ClientboundResourcePackPacket/hash +FD: net/minecraft/network/protocol/game/ClientboundResourcePackPacket/f_179178_ net/minecraft/network/protocol/game/ClientboundResourcePackPacket/MAX_HASH_LENGTH +FD: net/minecraft/network/protocol/game/ClientboundResourcePackPacket/f_179179_ net/minecraft/network/protocol/game/ClientboundResourcePackPacket/required +FD: net/minecraft/network/protocol/game/ClientboundResourcePackPacket/f_179180_ net/minecraft/network/protocol/game/ClientboundResourcePackPacket/prompt +FD: net/minecraft/network/protocol/game/ClientboundRespawnPacket/f_132928_ net/minecraft/network/protocol/game/ClientboundRespawnPacket/dimensionType +FD: net/minecraft/network/protocol/game/ClientboundRespawnPacket/f_132929_ net/minecraft/network/protocol/game/ClientboundRespawnPacket/dimension +FD: net/minecraft/network/protocol/game/ClientboundRespawnPacket/f_132930_ net/minecraft/network/protocol/game/ClientboundRespawnPacket/seed +FD: net/minecraft/network/protocol/game/ClientboundRespawnPacket/f_132931_ net/minecraft/network/protocol/game/ClientboundRespawnPacket/playerGameType +FD: net/minecraft/network/protocol/game/ClientboundRespawnPacket/f_132932_ net/minecraft/network/protocol/game/ClientboundRespawnPacket/previousPlayerGameType +FD: net/minecraft/network/protocol/game/ClientboundRespawnPacket/f_132933_ net/minecraft/network/protocol/game/ClientboundRespawnPacket/isDebug +FD: net/minecraft/network/protocol/game/ClientboundRespawnPacket/f_132934_ net/minecraft/network/protocol/game/ClientboundRespawnPacket/isFlat +FD: net/minecraft/network/protocol/game/ClientboundRespawnPacket/f_238183_ net/minecraft/network/protocol/game/ClientboundRespawnPacket/lastDeathLocation +FD: net/minecraft/network/protocol/game/ClientboundRespawnPacket/f_263551_ net/minecraft/network/protocol/game/ClientboundRespawnPacket/KEEP_ATTRIBUTES +FD: net/minecraft/network/protocol/game/ClientboundRespawnPacket/f_263552_ net/minecraft/network/protocol/game/ClientboundRespawnPacket/KEEP_ENTITY_DATA +FD: net/minecraft/network/protocol/game/ClientboundRespawnPacket/f_263553_ net/minecraft/network/protocol/game/ClientboundRespawnPacket/dataToKeep +FD: net/minecraft/network/protocol/game/ClientboundRespawnPacket/f_263554_ net/minecraft/network/protocol/game/ClientboundRespawnPacket/KEEP_ALL_DATA +FD: net/minecraft/network/protocol/game/ClientboundRespawnPacket/f_286981_ net/minecraft/network/protocol/game/ClientboundRespawnPacket/portalCooldown +FD: net/minecraft/network/protocol/game/ClientboundRotateHeadPacket/f_132963_ net/minecraft/network/protocol/game/ClientboundRotateHeadPacket/entityId +FD: net/minecraft/network/protocol/game/ClientboundRotateHeadPacket/f_132964_ net/minecraft/network/protocol/game/ClientboundRotateHeadPacket/yHeadRot +FD: net/minecraft/network/protocol/game/ClientboundSectionBlocksUpdatePacket/f_132980_ net/minecraft/network/protocol/game/ClientboundSectionBlocksUpdatePacket/sectionPos +FD: net/minecraft/network/protocol/game/ClientboundSectionBlocksUpdatePacket/f_132981_ net/minecraft/network/protocol/game/ClientboundSectionBlocksUpdatePacket/positions +FD: net/minecraft/network/protocol/game/ClientboundSectionBlocksUpdatePacket/f_132982_ net/minecraft/network/protocol/game/ClientboundSectionBlocksUpdatePacket/states +FD: net/minecraft/network/protocol/game/ClientboundSectionBlocksUpdatePacket/f_179194_ net/minecraft/network/protocol/game/ClientboundSectionBlocksUpdatePacket/POS_IN_SECTION_BITS +FD: net/minecraft/network/protocol/game/ClientboundSelectAdvancementsTabPacket/f_133003_ net/minecraft/network/protocol/game/ClientboundSelectAdvancementsTabPacket/tab +FD: net/minecraft/network/protocol/game/ClientboundServerDataPacket/f_237795_ net/minecraft/network/protocol/game/ClientboundServerDataPacket/motd +FD: net/minecraft/network/protocol/game/ClientboundServerDataPacket/f_242954_ net/minecraft/network/protocol/game/ClientboundServerDataPacket/enforcesSecureChat +FD: net/minecraft/network/protocol/game/ClientboundServerDataPacket/f_271248_ net/minecraft/network/protocol/game/ClientboundServerDataPacket/iconBytes +FD: net/minecraft/network/protocol/game/ClientboundSetActionBarTextPacket/f_179199_ net/minecraft/network/protocol/game/ClientboundSetActionBarTextPacket/text +FD: net/minecraft/network/protocol/game/ClientboundSetBorderCenterPacket/f_179211_ net/minecraft/network/protocol/game/ClientboundSetBorderCenterPacket/newCenterX +FD: net/minecraft/network/protocol/game/ClientboundSetBorderCenterPacket/f_179212_ net/minecraft/network/protocol/game/ClientboundSetBorderCenterPacket/newCenterZ +FD: net/minecraft/network/protocol/game/ClientboundSetBorderLerpSizePacket/f_179225_ net/minecraft/network/protocol/game/ClientboundSetBorderLerpSizePacket/oldSize +FD: net/minecraft/network/protocol/game/ClientboundSetBorderLerpSizePacket/f_179226_ net/minecraft/network/protocol/game/ClientboundSetBorderLerpSizePacket/newSize +FD: net/minecraft/network/protocol/game/ClientboundSetBorderLerpSizePacket/f_179227_ net/minecraft/network/protocol/game/ClientboundSetBorderLerpSizePacket/lerpTime +FD: net/minecraft/network/protocol/game/ClientboundSetBorderSizePacket/f_179241_ net/minecraft/network/protocol/game/ClientboundSetBorderSizePacket/size +FD: net/minecraft/network/protocol/game/ClientboundSetBorderWarningDelayPacket/f_179253_ net/minecraft/network/protocol/game/ClientboundSetBorderWarningDelayPacket/warningDelay +FD: net/minecraft/network/protocol/game/ClientboundSetBorderWarningDistancePacket/f_179265_ net/minecraft/network/protocol/game/ClientboundSetBorderWarningDistancePacket/warningBlocks +FD: net/minecraft/network/protocol/game/ClientboundSetCameraPacket/f_133055_ net/minecraft/network/protocol/game/ClientboundSetCameraPacket/cameraId +FD: net/minecraft/network/protocol/game/ClientboundSetCarriedItemPacket/f_133069_ net/minecraft/network/protocol/game/ClientboundSetCarriedItemPacket/slot +FD: net/minecraft/network/protocol/game/ClientboundSetChunkCacheCenterPacket/f_133082_ net/minecraft/network/protocol/game/ClientboundSetChunkCacheCenterPacket/x +FD: net/minecraft/network/protocol/game/ClientboundSetChunkCacheCenterPacket/f_133083_ net/minecraft/network/protocol/game/ClientboundSetChunkCacheCenterPacket/z +FD: net/minecraft/network/protocol/game/ClientboundSetChunkCacheRadiusPacket/f_133098_ net/minecraft/network/protocol/game/ClientboundSetChunkCacheRadiusPacket/radius +FD: net/minecraft/network/protocol/game/ClientboundSetDefaultSpawnPositionPacket/f_133111_ net/minecraft/network/protocol/game/ClientboundSetDefaultSpawnPositionPacket/pos +FD: net/minecraft/network/protocol/game/ClientboundSetDefaultSpawnPositionPacket/f_133112_ net/minecraft/network/protocol/game/ClientboundSetDefaultSpawnPositionPacket/angle +FD: net/minecraft/network/protocol/game/ClientboundSetDisplayObjectivePacket/f_133127_ net/minecraft/network/protocol/game/ClientboundSetDisplayObjectivePacket/slot +FD: net/minecraft/network/protocol/game/ClientboundSetDisplayObjectivePacket/f_133128_ net/minecraft/network/protocol/game/ClientboundSetDisplayObjectivePacket/objectiveName +FD: net/minecraft/network/protocol/game/ClientboundSetEntityDataPacket/f_133143_ net/minecraft/network/protocol/game/ClientboundSetEntityDataPacket/id +FD: net/minecraft/network/protocol/game/ClientboundSetEntityDataPacket/f_133144_ net/minecraft/network/protocol/game/ClientboundSetEntityDataPacket/packedItems +FD: net/minecraft/network/protocol/game/ClientboundSetEntityDataPacket/f_252513_ net/minecraft/network/protocol/game/ClientboundSetEntityDataPacket/EOF_MARKER +FD: net/minecraft/network/protocol/game/ClientboundSetEntityLinkPacket/f_133160_ net/minecraft/network/protocol/game/ClientboundSetEntityLinkPacket/sourceId +FD: net/minecraft/network/protocol/game/ClientboundSetEntityLinkPacket/f_133161_ net/minecraft/network/protocol/game/ClientboundSetEntityLinkPacket/destId +FD: net/minecraft/network/protocol/game/ClientboundSetEntityMotionPacket/f_133176_ net/minecraft/network/protocol/game/ClientboundSetEntityMotionPacket/id +FD: net/minecraft/network/protocol/game/ClientboundSetEntityMotionPacket/f_133177_ net/minecraft/network/protocol/game/ClientboundSetEntityMotionPacket/xa +FD: net/minecraft/network/protocol/game/ClientboundSetEntityMotionPacket/f_133178_ net/minecraft/network/protocol/game/ClientboundSetEntityMotionPacket/ya +FD: net/minecraft/network/protocol/game/ClientboundSetEntityMotionPacket/f_133179_ net/minecraft/network/protocol/game/ClientboundSetEntityMotionPacket/za +FD: net/minecraft/network/protocol/game/ClientboundSetEquipmentPacket/f_133198_ net/minecraft/network/protocol/game/ClientboundSetEquipmentPacket/entity +FD: net/minecraft/network/protocol/game/ClientboundSetEquipmentPacket/f_133199_ net/minecraft/network/protocol/game/ClientboundSetEquipmentPacket/slots +FD: net/minecraft/network/protocol/game/ClientboundSetEquipmentPacket/f_179295_ net/minecraft/network/protocol/game/ClientboundSetEquipmentPacket/CONTINUE_MASK +FD: net/minecraft/network/protocol/game/ClientboundSetExperiencePacket/f_133214_ net/minecraft/network/protocol/game/ClientboundSetExperiencePacket/experienceProgress +FD: net/minecraft/network/protocol/game/ClientboundSetExperiencePacket/f_133215_ net/minecraft/network/protocol/game/ClientboundSetExperiencePacket/totalExperience +FD: net/minecraft/network/protocol/game/ClientboundSetExperiencePacket/f_133216_ net/minecraft/network/protocol/game/ClientboundSetExperiencePacket/experienceLevel +FD: net/minecraft/network/protocol/game/ClientboundSetHealthPacket/f_133233_ net/minecraft/network/protocol/game/ClientboundSetHealthPacket/health +FD: net/minecraft/network/protocol/game/ClientboundSetHealthPacket/f_133234_ net/minecraft/network/protocol/game/ClientboundSetHealthPacket/food +FD: net/minecraft/network/protocol/game/ClientboundSetHealthPacket/f_133235_ net/minecraft/network/protocol/game/ClientboundSetHealthPacket/saturation +FD: net/minecraft/network/protocol/game/ClientboundSetObjectivePacket/f_133252_ net/minecraft/network/protocol/game/ClientboundSetObjectivePacket/objectiveName +FD: net/minecraft/network/protocol/game/ClientboundSetObjectivePacket/f_133253_ net/minecraft/network/protocol/game/ClientboundSetObjectivePacket/displayName +FD: net/minecraft/network/protocol/game/ClientboundSetObjectivePacket/f_133254_ net/minecraft/network/protocol/game/ClientboundSetObjectivePacket/renderType +FD: net/minecraft/network/protocol/game/ClientboundSetObjectivePacket/f_133255_ net/minecraft/network/protocol/game/ClientboundSetObjectivePacket/method +FD: net/minecraft/network/protocol/game/ClientboundSetObjectivePacket/f_179302_ net/minecraft/network/protocol/game/ClientboundSetObjectivePacket/METHOD_ADD +FD: net/minecraft/network/protocol/game/ClientboundSetObjectivePacket/f_179303_ net/minecraft/network/protocol/game/ClientboundSetObjectivePacket/METHOD_REMOVE +FD: net/minecraft/network/protocol/game/ClientboundSetObjectivePacket/f_179304_ net/minecraft/network/protocol/game/ClientboundSetObjectivePacket/METHOD_CHANGE +FD: net/minecraft/network/protocol/game/ClientboundSetPassengersPacket/f_133272_ net/minecraft/network/protocol/game/ClientboundSetPassengersPacket/vehicle +FD: net/minecraft/network/protocol/game/ClientboundSetPassengersPacket/f_133273_ net/minecraft/network/protocol/game/ClientboundSetPassengersPacket/passengers +FD: net/minecraft/network/protocol/game/ClientboundSetPlayerTeamPacket/f_133287_ net/minecraft/network/protocol/game/ClientboundSetPlayerTeamPacket/name +FD: net/minecraft/network/protocol/game/ClientboundSetPlayerTeamPacket/f_133294_ net/minecraft/network/protocol/game/ClientboundSetPlayerTeamPacket/players +FD: net/minecraft/network/protocol/game/ClientboundSetPlayerTeamPacket/f_133295_ net/minecraft/network/protocol/game/ClientboundSetPlayerTeamPacket/method +FD: net/minecraft/network/protocol/game/ClientboundSetPlayerTeamPacket/f_179309_ net/minecraft/network/protocol/game/ClientboundSetPlayerTeamPacket/METHOD_ADD +FD: net/minecraft/network/protocol/game/ClientboundSetPlayerTeamPacket/f_179310_ net/minecraft/network/protocol/game/ClientboundSetPlayerTeamPacket/METHOD_REMOVE +FD: net/minecraft/network/protocol/game/ClientboundSetPlayerTeamPacket/f_179311_ net/minecraft/network/protocol/game/ClientboundSetPlayerTeamPacket/METHOD_CHANGE +FD: net/minecraft/network/protocol/game/ClientboundSetPlayerTeamPacket/f_179312_ net/minecraft/network/protocol/game/ClientboundSetPlayerTeamPacket/METHOD_JOIN +FD: net/minecraft/network/protocol/game/ClientboundSetPlayerTeamPacket/f_179313_ net/minecraft/network/protocol/game/ClientboundSetPlayerTeamPacket/METHOD_LEAVE +FD: net/minecraft/network/protocol/game/ClientboundSetPlayerTeamPacket/f_179314_ net/minecraft/network/protocol/game/ClientboundSetPlayerTeamPacket/MAX_VISIBILITY_LENGTH +FD: net/minecraft/network/protocol/game/ClientboundSetPlayerTeamPacket/f_179315_ net/minecraft/network/protocol/game/ClientboundSetPlayerTeamPacket/MAX_COLLISION_LENGTH +FD: net/minecraft/network/protocol/game/ClientboundSetPlayerTeamPacket/f_179316_ net/minecraft/network/protocol/game/ClientboundSetPlayerTeamPacket/parameters +FD: net/minecraft/network/protocol/game/ClientboundSetPlayerTeamPacket$Action/$VALUES net/minecraft/network/protocol/game/ClientboundSetPlayerTeamPacket$Action/$VALUES +FD: net/minecraft/network/protocol/game/ClientboundSetPlayerTeamPacket$Action/ADD net/minecraft/network/protocol/game/ClientboundSetPlayerTeamPacket$Action/ADD +FD: net/minecraft/network/protocol/game/ClientboundSetPlayerTeamPacket$Action/REMOVE net/minecraft/network/protocol/game/ClientboundSetPlayerTeamPacket$Action/REMOVE +FD: net/minecraft/network/protocol/game/ClientboundSetPlayerTeamPacket$Parameters/f_179352_ net/minecraft/network/protocol/game/ClientboundSetPlayerTeamPacket$Parameters/displayName +FD: net/minecraft/network/protocol/game/ClientboundSetPlayerTeamPacket$Parameters/f_179353_ net/minecraft/network/protocol/game/ClientboundSetPlayerTeamPacket$Parameters/playerPrefix +FD: net/minecraft/network/protocol/game/ClientboundSetPlayerTeamPacket$Parameters/f_179354_ net/minecraft/network/protocol/game/ClientboundSetPlayerTeamPacket$Parameters/playerSuffix +FD: net/minecraft/network/protocol/game/ClientboundSetPlayerTeamPacket$Parameters/f_179355_ net/minecraft/network/protocol/game/ClientboundSetPlayerTeamPacket$Parameters/nametagVisibility +FD: net/minecraft/network/protocol/game/ClientboundSetPlayerTeamPacket$Parameters/f_179356_ net/minecraft/network/protocol/game/ClientboundSetPlayerTeamPacket$Parameters/collisionRule +FD: net/minecraft/network/protocol/game/ClientboundSetPlayerTeamPacket$Parameters/f_179357_ net/minecraft/network/protocol/game/ClientboundSetPlayerTeamPacket$Parameters/color +FD: net/minecraft/network/protocol/game/ClientboundSetPlayerTeamPacket$Parameters/f_179358_ net/minecraft/network/protocol/game/ClientboundSetPlayerTeamPacket$Parameters/options +FD: net/minecraft/network/protocol/game/ClientboundSetScorePacket/f_133323_ net/minecraft/network/protocol/game/ClientboundSetScorePacket/owner +FD: net/minecraft/network/protocol/game/ClientboundSetScorePacket/f_133324_ net/minecraft/network/protocol/game/ClientboundSetScorePacket/objectiveName +FD: net/minecraft/network/protocol/game/ClientboundSetScorePacket/f_133325_ net/minecraft/network/protocol/game/ClientboundSetScorePacket/score +FD: net/minecraft/network/protocol/game/ClientboundSetScorePacket/f_133326_ net/minecraft/network/protocol/game/ClientboundSetScorePacket/method +FD: net/minecraft/network/protocol/game/ClientboundSetSimulationDistancePacket/f_195796_ net/minecraft/network/protocol/game/ClientboundSetSimulationDistancePacket/simulationDistance +FD: net/minecraft/network/protocol/game/ClientboundSetSubtitleTextPacket/f_179374_ net/minecraft/network/protocol/game/ClientboundSetSubtitleTextPacket/text +FD: net/minecraft/network/protocol/game/ClientboundSetTimePacket/f_133345_ net/minecraft/network/protocol/game/ClientboundSetTimePacket/gameTime +FD: net/minecraft/network/protocol/game/ClientboundSetTimePacket/f_133346_ net/minecraft/network/protocol/game/ClientboundSetTimePacket/dayTime +FD: net/minecraft/network/protocol/game/ClientboundSetTitleTextPacket/f_179388_ net/minecraft/network/protocol/game/ClientboundSetTitleTextPacket/text +FD: net/minecraft/network/protocol/game/ClientboundSetTitlesAnimationPacket/f_179400_ net/minecraft/network/protocol/game/ClientboundSetTitlesAnimationPacket/fadeIn +FD: net/minecraft/network/protocol/game/ClientboundSetTitlesAnimationPacket/f_179401_ net/minecraft/network/protocol/game/ClientboundSetTitlesAnimationPacket/stay +FD: net/minecraft/network/protocol/game/ClientboundSetTitlesAnimationPacket/f_179402_ net/minecraft/network/protocol/game/ClientboundSetTitlesAnimationPacket/fadeOut +FD: net/minecraft/network/protocol/game/ClientboundSoundEntityPacket/f_133408_ net/minecraft/network/protocol/game/ClientboundSoundEntityPacket/sound +FD: net/minecraft/network/protocol/game/ClientboundSoundEntityPacket/f_133409_ net/minecraft/network/protocol/game/ClientboundSoundEntityPacket/source +FD: net/minecraft/network/protocol/game/ClientboundSoundEntityPacket/f_133410_ net/minecraft/network/protocol/game/ClientboundSoundEntityPacket/id +FD: net/minecraft/network/protocol/game/ClientboundSoundEntityPacket/f_133411_ net/minecraft/network/protocol/game/ClientboundSoundEntityPacket/volume +FD: net/minecraft/network/protocol/game/ClientboundSoundEntityPacket/f_133412_ net/minecraft/network/protocol/game/ClientboundSoundEntityPacket/pitch +FD: net/minecraft/network/protocol/game/ClientboundSoundEntityPacket/f_237829_ net/minecraft/network/protocol/game/ClientboundSoundEntityPacket/seed +FD: net/minecraft/network/protocol/game/ClientboundSoundPacket/f_133433_ net/minecraft/network/protocol/game/ClientboundSoundPacket/sound +FD: net/minecraft/network/protocol/game/ClientboundSoundPacket/f_133434_ net/minecraft/network/protocol/game/ClientboundSoundPacket/source +FD: net/minecraft/network/protocol/game/ClientboundSoundPacket/f_133435_ net/minecraft/network/protocol/game/ClientboundSoundPacket/x +FD: net/minecraft/network/protocol/game/ClientboundSoundPacket/f_133436_ net/minecraft/network/protocol/game/ClientboundSoundPacket/y +FD: net/minecraft/network/protocol/game/ClientboundSoundPacket/f_133437_ net/minecraft/network/protocol/game/ClientboundSoundPacket/z +FD: net/minecraft/network/protocol/game/ClientboundSoundPacket/f_133438_ net/minecraft/network/protocol/game/ClientboundSoundPacket/volume +FD: net/minecraft/network/protocol/game/ClientboundSoundPacket/f_133439_ net/minecraft/network/protocol/game/ClientboundSoundPacket/pitch +FD: net/minecraft/network/protocol/game/ClientboundSoundPacket/f_179420_ net/minecraft/network/protocol/game/ClientboundSoundPacket/LOCATION_ACCURACY +FD: net/minecraft/network/protocol/game/ClientboundSoundPacket/f_237838_ net/minecraft/network/protocol/game/ClientboundSoundPacket/seed +FD: net/minecraft/network/protocol/game/ClientboundStopSoundPacket/f_133464_ net/minecraft/network/protocol/game/ClientboundStopSoundPacket/name +FD: net/minecraft/network/protocol/game/ClientboundStopSoundPacket/f_133465_ net/minecraft/network/protocol/game/ClientboundStopSoundPacket/source +FD: net/minecraft/network/protocol/game/ClientboundStopSoundPacket/f_179423_ net/minecraft/network/protocol/game/ClientboundStopSoundPacket/HAS_SOURCE +FD: net/minecraft/network/protocol/game/ClientboundStopSoundPacket/f_179424_ net/minecraft/network/protocol/game/ClientboundStopSoundPacket/HAS_SOUND +FD: net/minecraft/network/protocol/game/ClientboundSystemChatPacket/f_237849_ net/minecraft/network/protocol/game/ClientboundSystemChatPacket/content +FD: net/minecraft/network/protocol/game/ClientboundSystemChatPacket/f_240374_ net/minecraft/network/protocol/game/ClientboundSystemChatPacket/overlay +FD: net/minecraft/network/protocol/game/ClientboundTabListPacket/f_133480_ net/minecraft/network/protocol/game/ClientboundTabListPacket/header +FD: net/minecraft/network/protocol/game/ClientboundTabListPacket/f_133481_ net/minecraft/network/protocol/game/ClientboundTabListPacket/footer +FD: net/minecraft/network/protocol/game/ClientboundTagQueryPacket/f_133493_ net/minecraft/network/protocol/game/ClientboundTagQueryPacket/transactionId +FD: net/minecraft/network/protocol/game/ClientboundTagQueryPacket/f_133494_ net/minecraft/network/protocol/game/ClientboundTagQueryPacket/tag +FD: net/minecraft/network/protocol/game/ClientboundTakeItemEntityPacket/f_133510_ net/minecraft/network/protocol/game/ClientboundTakeItemEntityPacket/itemId +FD: net/minecraft/network/protocol/game/ClientboundTakeItemEntityPacket/f_133511_ net/minecraft/network/protocol/game/ClientboundTakeItemEntityPacket/playerId +FD: net/minecraft/network/protocol/game/ClientboundTakeItemEntityPacket/f_133512_ net/minecraft/network/protocol/game/ClientboundTakeItemEntityPacket/amount +FD: net/minecraft/network/protocol/game/ClientboundTeleportEntityPacket/f_133529_ net/minecraft/network/protocol/game/ClientboundTeleportEntityPacket/id +FD: net/minecraft/network/protocol/game/ClientboundTeleportEntityPacket/f_133530_ net/minecraft/network/protocol/game/ClientboundTeleportEntityPacket/x +FD: net/minecraft/network/protocol/game/ClientboundTeleportEntityPacket/f_133531_ net/minecraft/network/protocol/game/ClientboundTeleportEntityPacket/y +FD: net/minecraft/network/protocol/game/ClientboundTeleportEntityPacket/f_133532_ net/minecraft/network/protocol/game/ClientboundTeleportEntityPacket/z +FD: net/minecraft/network/protocol/game/ClientboundTeleportEntityPacket/f_133533_ net/minecraft/network/protocol/game/ClientboundTeleportEntityPacket/yRot +FD: net/minecraft/network/protocol/game/ClientboundTeleportEntityPacket/f_133534_ net/minecraft/network/protocol/game/ClientboundTeleportEntityPacket/xRot +FD: net/minecraft/network/protocol/game/ClientboundTeleportEntityPacket/f_133535_ net/minecraft/network/protocol/game/ClientboundTeleportEntityPacket/onGround +FD: net/minecraft/network/protocol/game/ClientboundUpdateAdvancementsPacket/f_133554_ net/minecraft/network/protocol/game/ClientboundUpdateAdvancementsPacket/reset +FD: net/minecraft/network/protocol/game/ClientboundUpdateAdvancementsPacket/f_133555_ net/minecraft/network/protocol/game/ClientboundUpdateAdvancementsPacket/added +FD: net/minecraft/network/protocol/game/ClientboundUpdateAdvancementsPacket/f_133556_ net/minecraft/network/protocol/game/ClientboundUpdateAdvancementsPacket/removed +FD: net/minecraft/network/protocol/game/ClientboundUpdateAdvancementsPacket/f_133557_ net/minecraft/network/protocol/game/ClientboundUpdateAdvancementsPacket/progress +FD: net/minecraft/network/protocol/game/ClientboundUpdateAttributesPacket/f_133576_ net/minecraft/network/protocol/game/ClientboundUpdateAttributesPacket/entityId +FD: net/minecraft/network/protocol/game/ClientboundUpdateAttributesPacket/f_133577_ net/minecraft/network/protocol/game/ClientboundUpdateAttributesPacket/attributes +FD: net/minecraft/network/protocol/game/ClientboundUpdateAttributesPacket$AttributeSnapshot/f_133593_ net/minecraft/network/protocol/game/ClientboundUpdateAttributesPacket$AttributeSnapshot/attribute +FD: net/minecraft/network/protocol/game/ClientboundUpdateAttributesPacket$AttributeSnapshot/f_133594_ net/minecraft/network/protocol/game/ClientboundUpdateAttributesPacket$AttributeSnapshot/base +FD: net/minecraft/network/protocol/game/ClientboundUpdateAttributesPacket$AttributeSnapshot/f_133595_ net/minecraft/network/protocol/game/ClientboundUpdateAttributesPacket$AttributeSnapshot/modifiers +FD: net/minecraft/network/protocol/game/ClientboundUpdateEnabledFeaturesPacket/f_244610_ net/minecraft/network/protocol/game/ClientboundUpdateEnabledFeaturesPacket/features +FD: net/minecraft/network/protocol/game/ClientboundUpdateMobEffectPacket/f_133604_ net/minecraft/network/protocol/game/ClientboundUpdateMobEffectPacket/entityId +FD: net/minecraft/network/protocol/game/ClientboundUpdateMobEffectPacket/f_133606_ net/minecraft/network/protocol/game/ClientboundUpdateMobEffectPacket/effectAmplifier +FD: net/minecraft/network/protocol/game/ClientboundUpdateMobEffectPacket/f_133607_ net/minecraft/network/protocol/game/ClientboundUpdateMobEffectPacket/effectDurationTicks +FD: net/minecraft/network/protocol/game/ClientboundUpdateMobEffectPacket/f_133608_ net/minecraft/network/protocol/game/ClientboundUpdateMobEffectPacket/flags +FD: net/minecraft/network/protocol/game/ClientboundUpdateMobEffectPacket/f_179462_ net/minecraft/network/protocol/game/ClientboundUpdateMobEffectPacket/FLAG_AMBIENT +FD: net/minecraft/network/protocol/game/ClientboundUpdateMobEffectPacket/f_179463_ net/minecraft/network/protocol/game/ClientboundUpdateMobEffectPacket/FLAG_VISIBLE +FD: net/minecraft/network/protocol/game/ClientboundUpdateMobEffectPacket/f_179464_ net/minecraft/network/protocol/game/ClientboundUpdateMobEffectPacket/FLAG_SHOW_ICON +FD: net/minecraft/network/protocol/game/ClientboundUpdateMobEffectPacket/f_237871_ net/minecraft/network/protocol/game/ClientboundUpdateMobEffectPacket/effect +FD: net/minecraft/network/protocol/game/ClientboundUpdateMobEffectPacket/f_237872_ net/minecraft/network/protocol/game/ClientboundUpdateMobEffectPacket/factorData +FD: net/minecraft/network/protocol/game/ClientboundUpdateRecipesPacket/f_133629_ net/minecraft/network/protocol/game/ClientboundUpdateRecipesPacket/recipes +FD: net/minecraft/network/protocol/game/ClientboundUpdateTagsPacket/f_133649_ net/minecraft/network/protocol/game/ClientboundUpdateTagsPacket/tags +FD: net/minecraft/network/protocol/game/DebugEntityNameGenerator/f_133662_ net/minecraft/network/protocol/game/DebugEntityNameGenerator/NAMES_FIRST_PART +FD: net/minecraft/network/protocol/game/DebugEntityNameGenerator/f_133663_ net/minecraft/network/protocol/game/DebugEntityNameGenerator/NAMES_SECOND_PART +FD: net/minecraft/network/protocol/game/DebugPackets/f_133672_ net/minecraft/network/protocol/game/DebugPackets/LOGGER +FD: net/minecraft/network/protocol/game/ServerboundAcceptTeleportationPacket/f_133785_ net/minecraft/network/protocol/game/ServerboundAcceptTeleportationPacket/id +FD: net/minecraft/network/protocol/game/ServerboundBlockEntityTagQuery/f_133798_ net/minecraft/network/protocol/game/ServerboundBlockEntityTagQuery/transactionId +FD: net/minecraft/network/protocol/game/ServerboundBlockEntityTagQuery/f_133799_ net/minecraft/network/protocol/game/ServerboundBlockEntityTagQuery/pos +FD: net/minecraft/network/protocol/game/ServerboundChangeDifficultyPacket/f_133814_ net/minecraft/network/protocol/game/ServerboundChangeDifficultyPacket/difficulty +FD: net/minecraft/network/protocol/game/ServerboundChatAckPacket/f_244085_ net/minecraft/network/protocol/game/ServerboundChatAckPacket/offset +FD: net/minecraft/network/protocol/game/ServerboundChatCommandPacket/f_237922_ net/minecraft/network/protocol/game/ServerboundChatCommandPacket/command +FD: net/minecraft/network/protocol/game/ServerboundChatCommandPacket/f_237923_ net/minecraft/network/protocol/game/ServerboundChatCommandPacket/timeStamp +FD: net/minecraft/network/protocol/game/ServerboundChatCommandPacket/f_237924_ net/minecraft/network/protocol/game/ServerboundChatCommandPacket/argumentSignatures +FD: net/minecraft/network/protocol/game/ServerboundChatCommandPacket/f_240858_ net/minecraft/network/protocol/game/ServerboundChatCommandPacket/salt +FD: net/minecraft/network/protocol/game/ServerboundChatCommandPacket/f_241638_ net/minecraft/network/protocol/game/ServerboundChatCommandPacket/lastSeenMessages +FD: net/minecraft/network/protocol/game/ServerboundChatPacket/f_133827_ net/minecraft/network/protocol/game/ServerboundChatPacket/message +FD: net/minecraft/network/protocol/game/ServerboundChatPacket/f_237950_ net/minecraft/network/protocol/game/ServerboundChatPacket/timeStamp +FD: net/minecraft/network/protocol/game/ServerboundChatPacket/f_240898_ net/minecraft/network/protocol/game/ServerboundChatPacket/signature +FD: net/minecraft/network/protocol/game/ServerboundChatPacket/f_240906_ net/minecraft/network/protocol/game/ServerboundChatPacket/salt +FD: net/minecraft/network/protocol/game/ServerboundChatPacket/f_241662_ net/minecraft/network/protocol/game/ServerboundChatPacket/lastSeenMessages +FD: net/minecraft/network/protocol/game/ServerboundChatSessionUpdatePacket/f_252446_ net/minecraft/network/protocol/game/ServerboundChatSessionUpdatePacket/chatSession +FD: net/minecraft/network/protocol/game/ServerboundClientCommandPacket/f_133840_ net/minecraft/network/protocol/game/ServerboundClientCommandPacket/action +FD: net/minecraft/network/protocol/game/ServerboundClientCommandPacket$Action/$VALUES net/minecraft/network/protocol/game/ServerboundClientCommandPacket$Action/$VALUES +FD: net/minecraft/network/protocol/game/ServerboundClientCommandPacket$Action/PERFORM_RESPAWN net/minecraft/network/protocol/game/ServerboundClientCommandPacket$Action/PERFORM_RESPAWN +FD: net/minecraft/network/protocol/game/ServerboundClientCommandPacket$Action/REQUEST_STATS net/minecraft/network/protocol/game/ServerboundClientCommandPacket$Action/REQUEST_STATS +FD: net/minecraft/network/protocol/game/ServerboundClientInformationPacket/f_133863_ net/minecraft/network/protocol/game/ServerboundClientInformationPacket/language +FD: net/minecraft/network/protocol/game/ServerboundClientInformationPacket/f_133864_ net/minecraft/network/protocol/game/ServerboundClientInformationPacket/viewDistance +FD: net/minecraft/network/protocol/game/ServerboundClientInformationPacket/f_133865_ net/minecraft/network/protocol/game/ServerboundClientInformationPacket/chatVisibility +FD: net/minecraft/network/protocol/game/ServerboundClientInformationPacket/f_133866_ net/minecraft/network/protocol/game/ServerboundClientInformationPacket/chatColors +FD: net/minecraft/network/protocol/game/ServerboundClientInformationPacket/f_133867_ net/minecraft/network/protocol/game/ServerboundClientInformationPacket/modelCustomisation +FD: net/minecraft/network/protocol/game/ServerboundClientInformationPacket/f_133868_ net/minecraft/network/protocol/game/ServerboundClientInformationPacket/mainHand +FD: net/minecraft/network/protocol/game/ServerboundClientInformationPacket/f_179549_ net/minecraft/network/protocol/game/ServerboundClientInformationPacket/MAX_LANGUAGE_LENGTH +FD: net/minecraft/network/protocol/game/ServerboundClientInformationPacket/f_179550_ net/minecraft/network/protocol/game/ServerboundClientInformationPacket/textFilteringEnabled +FD: net/minecraft/network/protocol/game/ServerboundClientInformationPacket/f_195812_ net/minecraft/network/protocol/game/ServerboundClientInformationPacket/allowsListing +FD: net/minecraft/network/protocol/game/ServerboundCommandSuggestionPacket/f_133889_ net/minecraft/network/protocol/game/ServerboundCommandSuggestionPacket/id +FD: net/minecraft/network/protocol/game/ServerboundCommandSuggestionPacket/f_133890_ net/minecraft/network/protocol/game/ServerboundCommandSuggestionPacket/command +FD: net/minecraft/network/protocol/game/ServerboundContainerButtonClickPacket/f_133923_ net/minecraft/network/protocol/game/ServerboundContainerButtonClickPacket/containerId +FD: net/minecraft/network/protocol/game/ServerboundContainerButtonClickPacket/f_133924_ net/minecraft/network/protocol/game/ServerboundContainerButtonClickPacket/buttonId +FD: net/minecraft/network/protocol/game/ServerboundContainerClickPacket/f_133939_ net/minecraft/network/protocol/game/ServerboundContainerClickPacket/containerId +FD: net/minecraft/network/protocol/game/ServerboundContainerClickPacket/f_133940_ net/minecraft/network/protocol/game/ServerboundContainerClickPacket/slotNum +FD: net/minecraft/network/protocol/game/ServerboundContainerClickPacket/f_133941_ net/minecraft/network/protocol/game/ServerboundContainerClickPacket/buttonNum +FD: net/minecraft/network/protocol/game/ServerboundContainerClickPacket/f_133944_ net/minecraft/network/protocol/game/ServerboundContainerClickPacket/clickType +FD: net/minecraft/network/protocol/game/ServerboundContainerClickPacket/f_179568_ net/minecraft/network/protocol/game/ServerboundContainerClickPacket/carriedItem +FD: net/minecraft/network/protocol/game/ServerboundContainerClickPacket/f_179569_ net/minecraft/network/protocol/game/ServerboundContainerClickPacket/changedSlots +FD: net/minecraft/network/protocol/game/ServerboundContainerClickPacket/f_182731_ net/minecraft/network/protocol/game/ServerboundContainerClickPacket/MAX_SLOT_COUNT +FD: net/minecraft/network/protocol/game/ServerboundContainerClickPacket/f_182732_ net/minecraft/network/protocol/game/ServerboundContainerClickPacket/stateId +FD: net/minecraft/network/protocol/game/ServerboundContainerClosePacket/f_133967_ net/minecraft/network/protocol/game/ServerboundContainerClosePacket/containerId +FD: net/minecraft/network/protocol/game/ServerboundCustomPayloadPacket/f_133979_ net/minecraft/network/protocol/game/ServerboundCustomPayloadPacket/BRAND +FD: net/minecraft/network/protocol/game/ServerboundCustomPayloadPacket/f_133980_ net/minecraft/network/protocol/game/ServerboundCustomPayloadPacket/identifier +FD: net/minecraft/network/protocol/game/ServerboundCustomPayloadPacket/f_133981_ net/minecraft/network/protocol/game/ServerboundCustomPayloadPacket/data +FD: net/minecraft/network/protocol/game/ServerboundCustomPayloadPacket/f_179586_ net/minecraft/network/protocol/game/ServerboundCustomPayloadPacket/MAX_PAYLOAD_SIZE +FD: net/minecraft/network/protocol/game/ServerboundEditBookPacket/f_133997_ net/minecraft/network/protocol/game/ServerboundEditBookPacket/slot +FD: net/minecraft/network/protocol/game/ServerboundEditBookPacket/f_182742_ net/minecraft/network/protocol/game/ServerboundEditBookPacket/MAX_BYTES_PER_CHAR +FD: net/minecraft/network/protocol/game/ServerboundEditBookPacket/f_182743_ net/minecraft/network/protocol/game/ServerboundEditBookPacket/TITLE_MAX_CHARS +FD: net/minecraft/network/protocol/game/ServerboundEditBookPacket/f_182744_ net/minecraft/network/protocol/game/ServerboundEditBookPacket/PAGE_MAX_CHARS +FD: net/minecraft/network/protocol/game/ServerboundEditBookPacket/f_182745_ net/minecraft/network/protocol/game/ServerboundEditBookPacket/MAX_PAGES_COUNT +FD: net/minecraft/network/protocol/game/ServerboundEditBookPacket/f_182746_ net/minecraft/network/protocol/game/ServerboundEditBookPacket/pages +FD: net/minecraft/network/protocol/game/ServerboundEditBookPacket/f_182747_ net/minecraft/network/protocol/game/ServerboundEditBookPacket/title +FD: net/minecraft/network/protocol/game/ServerboundEntityTagQuery/f_134014_ net/minecraft/network/protocol/game/ServerboundEntityTagQuery/transactionId +FD: net/minecraft/network/protocol/game/ServerboundEntityTagQuery/f_134015_ net/minecraft/network/protocol/game/ServerboundEntityTagQuery/entityId +FD: net/minecraft/network/protocol/game/ServerboundInteractPacket/f_134030_ net/minecraft/network/protocol/game/ServerboundInteractPacket/entityId +FD: net/minecraft/network/protocol/game/ServerboundInteractPacket/f_134031_ net/minecraft/network/protocol/game/ServerboundInteractPacket/action +FD: net/minecraft/network/protocol/game/ServerboundInteractPacket/f_134034_ net/minecraft/network/protocol/game/ServerboundInteractPacket/usingSecondaryAction +FD: net/minecraft/network/protocol/game/ServerboundInteractPacket/f_179595_ net/minecraft/network/protocol/game/ServerboundInteractPacket/ATTACK_ACTION +FD: net/minecraft/network/protocol/game/ServerboundInteractPacket$ActionType/$VALUES net/minecraft/network/protocol/game/ServerboundInteractPacket$ActionType/$VALUES +FD: net/minecraft/network/protocol/game/ServerboundInteractPacket$ActionType/ATTACK net/minecraft/network/protocol/game/ServerboundInteractPacket$ActionType/ATTACK +FD: net/minecraft/network/protocol/game/ServerboundInteractPacket$ActionType/INTERACT net/minecraft/network/protocol/game/ServerboundInteractPacket$ActionType/INTERACT +FD: net/minecraft/network/protocol/game/ServerboundInteractPacket$ActionType/INTERACT_AT net/minecraft/network/protocol/game/ServerboundInteractPacket$ActionType/INTERACT_AT +FD: net/minecraft/network/protocol/game/ServerboundInteractPacket$ActionType/f_179630_ net/minecraft/network/protocol/game/ServerboundInteractPacket$ActionType/reader +FD: net/minecraft/network/protocol/game/ServerboundInteractPacket$InteractionAction/f_179646_ net/minecraft/network/protocol/game/ServerboundInteractPacket$InteractionAction/hand +FD: net/minecraft/network/protocol/game/ServerboundInteractPacket$InteractionAtLocationAction/f_179656_ net/minecraft/network/protocol/game/ServerboundInteractPacket$InteractionAtLocationAction/hand +FD: net/minecraft/network/protocol/game/ServerboundInteractPacket$InteractionAtLocationAction/f_179657_ net/minecraft/network/protocol/game/ServerboundInteractPacket$InteractionAtLocationAction/location +FD: net/minecraft/network/protocol/game/ServerboundJigsawGeneratePacket/f_134073_ net/minecraft/network/protocol/game/ServerboundJigsawGeneratePacket/pos +FD: net/minecraft/network/protocol/game/ServerboundJigsawGeneratePacket/f_134074_ net/minecraft/network/protocol/game/ServerboundJigsawGeneratePacket/levels +FD: net/minecraft/network/protocol/game/ServerboundJigsawGeneratePacket/f_134075_ net/minecraft/network/protocol/game/ServerboundJigsawGeneratePacket/keepJigsaws +FD: net/minecraft/network/protocol/game/ServerboundKeepAlivePacket/f_134092_ net/minecraft/network/protocol/game/ServerboundKeepAlivePacket/id +FD: net/minecraft/network/protocol/game/ServerboundLockDifficultyPacket/f_134105_ net/minecraft/network/protocol/game/ServerboundLockDifficultyPacket/locked +FD: net/minecraft/network/protocol/game/ServerboundMovePlayerPacket/f_134118_ net/minecraft/network/protocol/game/ServerboundMovePlayerPacket/x +FD: net/minecraft/network/protocol/game/ServerboundMovePlayerPacket/f_134119_ net/minecraft/network/protocol/game/ServerboundMovePlayerPacket/y +FD: net/minecraft/network/protocol/game/ServerboundMovePlayerPacket/f_134120_ net/minecraft/network/protocol/game/ServerboundMovePlayerPacket/z +FD: net/minecraft/network/protocol/game/ServerboundMovePlayerPacket/f_134121_ net/minecraft/network/protocol/game/ServerboundMovePlayerPacket/yRot +FD: net/minecraft/network/protocol/game/ServerboundMovePlayerPacket/f_134122_ net/minecraft/network/protocol/game/ServerboundMovePlayerPacket/xRot +FD: net/minecraft/network/protocol/game/ServerboundMovePlayerPacket/f_134123_ net/minecraft/network/protocol/game/ServerboundMovePlayerPacket/onGround +FD: net/minecraft/network/protocol/game/ServerboundMovePlayerPacket/f_134124_ net/minecraft/network/protocol/game/ServerboundMovePlayerPacket/hasPos +FD: net/minecraft/network/protocol/game/ServerboundMovePlayerPacket/f_134125_ net/minecraft/network/protocol/game/ServerboundMovePlayerPacket/hasRot +FD: net/minecraft/network/protocol/game/ServerboundMoveVehiclePacket/f_134185_ net/minecraft/network/protocol/game/ServerboundMoveVehiclePacket/x +FD: net/minecraft/network/protocol/game/ServerboundMoveVehiclePacket/f_134186_ net/minecraft/network/protocol/game/ServerboundMoveVehiclePacket/y +FD: net/minecraft/network/protocol/game/ServerboundMoveVehiclePacket/f_134187_ net/minecraft/network/protocol/game/ServerboundMoveVehiclePacket/z +FD: net/minecraft/network/protocol/game/ServerboundMoveVehiclePacket/f_134188_ net/minecraft/network/protocol/game/ServerboundMoveVehiclePacket/yRot +FD: net/minecraft/network/protocol/game/ServerboundMoveVehiclePacket/f_134189_ net/minecraft/network/protocol/game/ServerboundMoveVehiclePacket/xRot +FD: net/minecraft/network/protocol/game/ServerboundPaddleBoatPacket/f_134206_ net/minecraft/network/protocol/game/ServerboundPaddleBoatPacket/left +FD: net/minecraft/network/protocol/game/ServerboundPaddleBoatPacket/f_134207_ net/minecraft/network/protocol/game/ServerboundPaddleBoatPacket/right +FD: net/minecraft/network/protocol/game/ServerboundPickItemPacket/f_134222_ net/minecraft/network/protocol/game/ServerboundPickItemPacket/slot +FD: net/minecraft/network/protocol/game/ServerboundPlaceRecipePacket/f_134235_ net/minecraft/network/protocol/game/ServerboundPlaceRecipePacket/containerId +FD: net/minecraft/network/protocol/game/ServerboundPlaceRecipePacket/f_134236_ net/minecraft/network/protocol/game/ServerboundPlaceRecipePacket/recipe +FD: net/minecraft/network/protocol/game/ServerboundPlaceRecipePacket/f_134237_ net/minecraft/network/protocol/game/ServerboundPlaceRecipePacket/shiftDown +FD: net/minecraft/network/protocol/game/ServerboundPlayerAbilitiesPacket/f_134254_ net/minecraft/network/protocol/game/ServerboundPlayerAbilitiesPacket/isFlying +FD: net/minecraft/network/protocol/game/ServerboundPlayerAbilitiesPacket/f_179707_ net/minecraft/network/protocol/game/ServerboundPlayerAbilitiesPacket/FLAG_FLYING +FD: net/minecraft/network/protocol/game/ServerboundPlayerActionPacket/f_134267_ net/minecraft/network/protocol/game/ServerboundPlayerActionPacket/pos +FD: net/minecraft/network/protocol/game/ServerboundPlayerActionPacket/f_134268_ net/minecraft/network/protocol/game/ServerboundPlayerActionPacket/direction +FD: net/minecraft/network/protocol/game/ServerboundPlayerActionPacket/f_134269_ net/minecraft/network/protocol/game/ServerboundPlayerActionPacket/action +FD: net/minecraft/network/protocol/game/ServerboundPlayerActionPacket/f_237981_ net/minecraft/network/protocol/game/ServerboundPlayerActionPacket/sequence +FD: net/minecraft/network/protocol/game/ServerboundPlayerActionPacket$Action/$VALUES net/minecraft/network/protocol/game/ServerboundPlayerActionPacket$Action/$VALUES +FD: net/minecraft/network/protocol/game/ServerboundPlayerActionPacket$Action/ABORT_DESTROY_BLOCK net/minecraft/network/protocol/game/ServerboundPlayerActionPacket$Action/ABORT_DESTROY_BLOCK +FD: net/minecraft/network/protocol/game/ServerboundPlayerActionPacket$Action/DROP_ALL_ITEMS net/minecraft/network/protocol/game/ServerboundPlayerActionPacket$Action/DROP_ALL_ITEMS +FD: net/minecraft/network/protocol/game/ServerboundPlayerActionPacket$Action/DROP_ITEM net/minecraft/network/protocol/game/ServerboundPlayerActionPacket$Action/DROP_ITEM +FD: net/minecraft/network/protocol/game/ServerboundPlayerActionPacket$Action/RELEASE_USE_ITEM net/minecraft/network/protocol/game/ServerboundPlayerActionPacket$Action/RELEASE_USE_ITEM +FD: net/minecraft/network/protocol/game/ServerboundPlayerActionPacket$Action/START_DESTROY_BLOCK net/minecraft/network/protocol/game/ServerboundPlayerActionPacket$Action/START_DESTROY_BLOCK +FD: net/minecraft/network/protocol/game/ServerboundPlayerActionPacket$Action/STOP_DESTROY_BLOCK net/minecraft/network/protocol/game/ServerboundPlayerActionPacket$Action/STOP_DESTROY_BLOCK +FD: net/minecraft/network/protocol/game/ServerboundPlayerActionPacket$Action/SWAP_ITEM_WITH_OFFHAND net/minecraft/network/protocol/game/ServerboundPlayerActionPacket$Action/SWAP_ITEM_WITH_OFFHAND +FD: net/minecraft/network/protocol/game/ServerboundPlayerCommandPacket/f_134301_ net/minecraft/network/protocol/game/ServerboundPlayerCommandPacket/id +FD: net/minecraft/network/protocol/game/ServerboundPlayerCommandPacket/f_134302_ net/minecraft/network/protocol/game/ServerboundPlayerCommandPacket/action +FD: net/minecraft/network/protocol/game/ServerboundPlayerCommandPacket/f_134303_ net/minecraft/network/protocol/game/ServerboundPlayerCommandPacket/data +FD: net/minecraft/network/protocol/game/ServerboundPlayerCommandPacket$Action/$VALUES net/minecraft/network/protocol/game/ServerboundPlayerCommandPacket$Action/$VALUES +FD: net/minecraft/network/protocol/game/ServerboundPlayerCommandPacket$Action/OPEN_INVENTORY net/minecraft/network/protocol/game/ServerboundPlayerCommandPacket$Action/OPEN_INVENTORY +FD: net/minecraft/network/protocol/game/ServerboundPlayerCommandPacket$Action/PRESS_SHIFT_KEY net/minecraft/network/protocol/game/ServerboundPlayerCommandPacket$Action/PRESS_SHIFT_KEY +FD: net/minecraft/network/protocol/game/ServerboundPlayerCommandPacket$Action/RELEASE_SHIFT_KEY net/minecraft/network/protocol/game/ServerboundPlayerCommandPacket$Action/RELEASE_SHIFT_KEY +FD: net/minecraft/network/protocol/game/ServerboundPlayerCommandPacket$Action/START_FALL_FLYING net/minecraft/network/protocol/game/ServerboundPlayerCommandPacket$Action/START_FALL_FLYING +FD: net/minecraft/network/protocol/game/ServerboundPlayerCommandPacket$Action/START_RIDING_JUMP net/minecraft/network/protocol/game/ServerboundPlayerCommandPacket$Action/START_RIDING_JUMP +FD: net/minecraft/network/protocol/game/ServerboundPlayerCommandPacket$Action/START_SPRINTING net/minecraft/network/protocol/game/ServerboundPlayerCommandPacket$Action/START_SPRINTING +FD: net/minecraft/network/protocol/game/ServerboundPlayerCommandPacket$Action/STOP_RIDING_JUMP net/minecraft/network/protocol/game/ServerboundPlayerCommandPacket$Action/STOP_RIDING_JUMP +FD: net/minecraft/network/protocol/game/ServerboundPlayerCommandPacket$Action/STOP_SLEEPING net/minecraft/network/protocol/game/ServerboundPlayerCommandPacket$Action/STOP_SLEEPING +FD: net/minecraft/network/protocol/game/ServerboundPlayerCommandPacket$Action/STOP_SPRINTING net/minecraft/network/protocol/game/ServerboundPlayerCommandPacket$Action/STOP_SPRINTING +FD: net/minecraft/network/protocol/game/ServerboundPlayerInputPacket/f_134339_ net/minecraft/network/protocol/game/ServerboundPlayerInputPacket/xxa +FD: net/minecraft/network/protocol/game/ServerboundPlayerInputPacket/f_134340_ net/minecraft/network/protocol/game/ServerboundPlayerInputPacket/zza +FD: net/minecraft/network/protocol/game/ServerboundPlayerInputPacket/f_134341_ net/minecraft/network/protocol/game/ServerboundPlayerInputPacket/isJumping +FD: net/minecraft/network/protocol/game/ServerboundPlayerInputPacket/f_134342_ net/minecraft/network/protocol/game/ServerboundPlayerInputPacket/isShiftKeyDown +FD: net/minecraft/network/protocol/game/ServerboundPlayerInputPacket/f_179717_ net/minecraft/network/protocol/game/ServerboundPlayerInputPacket/FLAG_JUMPING +FD: net/minecraft/network/protocol/game/ServerboundPlayerInputPacket/f_179718_ net/minecraft/network/protocol/game/ServerboundPlayerInputPacket/FLAG_SHIFT_KEY_DOWN +FD: net/minecraft/network/protocol/game/ServerboundPongPacket/f_179721_ net/minecraft/network/protocol/game/ServerboundPongPacket/id +FD: net/minecraft/network/protocol/game/ServerboundRecipeBookChangeSettingsPacket/f_134361_ net/minecraft/network/protocol/game/ServerboundRecipeBookChangeSettingsPacket/bookType +FD: net/minecraft/network/protocol/game/ServerboundRecipeBookChangeSettingsPacket/f_134362_ net/minecraft/network/protocol/game/ServerboundRecipeBookChangeSettingsPacket/isOpen +FD: net/minecraft/network/protocol/game/ServerboundRecipeBookChangeSettingsPacket/f_134363_ net/minecraft/network/protocol/game/ServerboundRecipeBookChangeSettingsPacket/isFiltering +FD: net/minecraft/network/protocol/game/ServerboundRecipeBookSeenRecipePacket/f_134380_ net/minecraft/network/protocol/game/ServerboundRecipeBookSeenRecipePacket/recipe +FD: net/minecraft/network/protocol/game/ServerboundRenameItemPacket/f_134393_ net/minecraft/network/protocol/game/ServerboundRenameItemPacket/name +FD: net/minecraft/network/protocol/game/ServerboundResourcePackPacket/f_134406_ net/minecraft/network/protocol/game/ServerboundResourcePackPacket/action +FD: net/minecraft/network/protocol/game/ServerboundResourcePackPacket$Action/$VALUES net/minecraft/network/protocol/game/ServerboundResourcePackPacket$Action/$VALUES +FD: net/minecraft/network/protocol/game/ServerboundResourcePackPacket$Action/ACCEPTED net/minecraft/network/protocol/game/ServerboundResourcePackPacket$Action/ACCEPTED +FD: net/minecraft/network/protocol/game/ServerboundResourcePackPacket$Action/DECLINED net/minecraft/network/protocol/game/ServerboundResourcePackPacket$Action/DECLINED +FD: net/minecraft/network/protocol/game/ServerboundResourcePackPacket$Action/FAILED_DOWNLOAD net/minecraft/network/protocol/game/ServerboundResourcePackPacket$Action/FAILED_DOWNLOAD +FD: net/minecraft/network/protocol/game/ServerboundResourcePackPacket$Action/SUCCESSFULLY_LOADED net/minecraft/network/protocol/game/ServerboundResourcePackPacket$Action/SUCCESSFULLY_LOADED +FD: net/minecraft/network/protocol/game/ServerboundSeenAdvancementsPacket/f_134430_ net/minecraft/network/protocol/game/ServerboundSeenAdvancementsPacket/action +FD: net/minecraft/network/protocol/game/ServerboundSeenAdvancementsPacket/f_134431_ net/minecraft/network/protocol/game/ServerboundSeenAdvancementsPacket/tab +FD: net/minecraft/network/protocol/game/ServerboundSeenAdvancementsPacket$Action/$VALUES net/minecraft/network/protocol/game/ServerboundSeenAdvancementsPacket$Action/$VALUES +FD: net/minecraft/network/protocol/game/ServerboundSeenAdvancementsPacket$Action/CLOSED_SCREEN net/minecraft/network/protocol/game/ServerboundSeenAdvancementsPacket$Action/CLOSED_SCREEN +FD: net/minecraft/network/protocol/game/ServerboundSeenAdvancementsPacket$Action/OPENED_TAB net/minecraft/network/protocol/game/ServerboundSeenAdvancementsPacket$Action/OPENED_TAB +FD: net/minecraft/network/protocol/game/ServerboundSelectTradePacket/f_134459_ net/minecraft/network/protocol/game/ServerboundSelectTradePacket/item +FD: net/minecraft/network/protocol/game/ServerboundSetBeaconPacket/f_134472_ net/minecraft/network/protocol/game/ServerboundSetBeaconPacket/primary +FD: net/minecraft/network/protocol/game/ServerboundSetBeaconPacket/f_134473_ net/minecraft/network/protocol/game/ServerboundSetBeaconPacket/secondary +FD: net/minecraft/network/protocol/game/ServerboundSetCarriedItemPacket/f_134488_ net/minecraft/network/protocol/game/ServerboundSetCarriedItemPacket/slot +FD: net/minecraft/network/protocol/game/ServerboundSetCommandBlockPacket/f_134501_ net/minecraft/network/protocol/game/ServerboundSetCommandBlockPacket/pos +FD: net/minecraft/network/protocol/game/ServerboundSetCommandBlockPacket/f_134502_ net/minecraft/network/protocol/game/ServerboundSetCommandBlockPacket/command +FD: net/minecraft/network/protocol/game/ServerboundSetCommandBlockPacket/f_134503_ net/minecraft/network/protocol/game/ServerboundSetCommandBlockPacket/trackOutput +FD: net/minecraft/network/protocol/game/ServerboundSetCommandBlockPacket/f_134504_ net/minecraft/network/protocol/game/ServerboundSetCommandBlockPacket/conditional +FD: net/minecraft/network/protocol/game/ServerboundSetCommandBlockPacket/f_134505_ net/minecraft/network/protocol/game/ServerboundSetCommandBlockPacket/automatic +FD: net/minecraft/network/protocol/game/ServerboundSetCommandBlockPacket/f_134506_ net/minecraft/network/protocol/game/ServerboundSetCommandBlockPacket/mode +FD: net/minecraft/network/protocol/game/ServerboundSetCommandBlockPacket/f_179752_ net/minecraft/network/protocol/game/ServerboundSetCommandBlockPacket/FLAG_TRACK_OUTPUT +FD: net/minecraft/network/protocol/game/ServerboundSetCommandBlockPacket/f_179753_ net/minecraft/network/protocol/game/ServerboundSetCommandBlockPacket/FLAG_CONDITIONAL +FD: net/minecraft/network/protocol/game/ServerboundSetCommandBlockPacket/f_179754_ net/minecraft/network/protocol/game/ServerboundSetCommandBlockPacket/FLAG_AUTOMATIC +FD: net/minecraft/network/protocol/game/ServerboundSetCommandMinecartPacket/f_134529_ net/minecraft/network/protocol/game/ServerboundSetCommandMinecartPacket/entity +FD: net/minecraft/network/protocol/game/ServerboundSetCommandMinecartPacket/f_134530_ net/minecraft/network/protocol/game/ServerboundSetCommandMinecartPacket/command +FD: net/minecraft/network/protocol/game/ServerboundSetCommandMinecartPacket/f_134531_ net/minecraft/network/protocol/game/ServerboundSetCommandMinecartPacket/trackOutput +FD: net/minecraft/network/protocol/game/ServerboundSetCreativeModeSlotPacket/f_134549_ net/minecraft/network/protocol/game/ServerboundSetCreativeModeSlotPacket/slotNum +FD: net/minecraft/network/protocol/game/ServerboundSetCreativeModeSlotPacket/f_134550_ net/minecraft/network/protocol/game/ServerboundSetCreativeModeSlotPacket/itemStack +FD: net/minecraft/network/protocol/game/ServerboundSetJigsawBlockPacket/f_134565_ net/minecraft/network/protocol/game/ServerboundSetJigsawBlockPacket/pos +FD: net/minecraft/network/protocol/game/ServerboundSetJigsawBlockPacket/f_134566_ net/minecraft/network/protocol/game/ServerboundSetJigsawBlockPacket/name +FD: net/minecraft/network/protocol/game/ServerboundSetJigsawBlockPacket/f_134567_ net/minecraft/network/protocol/game/ServerboundSetJigsawBlockPacket/target +FD: net/minecraft/network/protocol/game/ServerboundSetJigsawBlockPacket/f_134568_ net/minecraft/network/protocol/game/ServerboundSetJigsawBlockPacket/pool +FD: net/minecraft/network/protocol/game/ServerboundSetJigsawBlockPacket/f_134569_ net/minecraft/network/protocol/game/ServerboundSetJigsawBlockPacket/finalState +FD: net/minecraft/network/protocol/game/ServerboundSetJigsawBlockPacket/f_134570_ net/minecraft/network/protocol/game/ServerboundSetJigsawBlockPacket/joint +FD: net/minecraft/network/protocol/game/ServerboundSetStructureBlockPacket/f_134593_ net/minecraft/network/protocol/game/ServerboundSetStructureBlockPacket/pos +FD: net/minecraft/network/protocol/game/ServerboundSetStructureBlockPacket/f_134594_ net/minecraft/network/protocol/game/ServerboundSetStructureBlockPacket/updateType +FD: net/minecraft/network/protocol/game/ServerboundSetStructureBlockPacket/f_134595_ net/minecraft/network/protocol/game/ServerboundSetStructureBlockPacket/mode +FD: net/minecraft/network/protocol/game/ServerboundSetStructureBlockPacket/f_134596_ net/minecraft/network/protocol/game/ServerboundSetStructureBlockPacket/name +FD: net/minecraft/network/protocol/game/ServerboundSetStructureBlockPacket/f_134597_ net/minecraft/network/protocol/game/ServerboundSetStructureBlockPacket/offset +FD: net/minecraft/network/protocol/game/ServerboundSetStructureBlockPacket/f_134598_ net/minecraft/network/protocol/game/ServerboundSetStructureBlockPacket/size +FD: net/minecraft/network/protocol/game/ServerboundSetStructureBlockPacket/f_134599_ net/minecraft/network/protocol/game/ServerboundSetStructureBlockPacket/mirror +FD: net/minecraft/network/protocol/game/ServerboundSetStructureBlockPacket/f_134600_ net/minecraft/network/protocol/game/ServerboundSetStructureBlockPacket/rotation +FD: net/minecraft/network/protocol/game/ServerboundSetStructureBlockPacket/f_134601_ net/minecraft/network/protocol/game/ServerboundSetStructureBlockPacket/data +FD: net/minecraft/network/protocol/game/ServerboundSetStructureBlockPacket/f_134602_ net/minecraft/network/protocol/game/ServerboundSetStructureBlockPacket/ignoreEntities +FD: net/minecraft/network/protocol/game/ServerboundSetStructureBlockPacket/f_134603_ net/minecraft/network/protocol/game/ServerboundSetStructureBlockPacket/showAir +FD: net/minecraft/network/protocol/game/ServerboundSetStructureBlockPacket/f_134604_ net/minecraft/network/protocol/game/ServerboundSetStructureBlockPacket/showBoundingBox +FD: net/minecraft/network/protocol/game/ServerboundSetStructureBlockPacket/f_134605_ net/minecraft/network/protocol/game/ServerboundSetStructureBlockPacket/integrity +FD: net/minecraft/network/protocol/game/ServerboundSetStructureBlockPacket/f_134606_ net/minecraft/network/protocol/game/ServerboundSetStructureBlockPacket/seed +FD: net/minecraft/network/protocol/game/ServerboundSetStructureBlockPacket/f_179767_ net/minecraft/network/protocol/game/ServerboundSetStructureBlockPacket/FLAG_IGNORE_ENTITIES +FD: net/minecraft/network/protocol/game/ServerboundSetStructureBlockPacket/f_179768_ net/minecraft/network/protocol/game/ServerboundSetStructureBlockPacket/FLAG_SHOW_AIR +FD: net/minecraft/network/protocol/game/ServerboundSetStructureBlockPacket/f_179769_ net/minecraft/network/protocol/game/ServerboundSetStructureBlockPacket/FLAG_SHOW_BOUNDING_BOX +FD: net/minecraft/network/protocol/game/ServerboundSignUpdatePacket/f_134645_ net/minecraft/network/protocol/game/ServerboundSignUpdatePacket/pos +FD: net/minecraft/network/protocol/game/ServerboundSignUpdatePacket/f_134646_ net/minecraft/network/protocol/game/ServerboundSignUpdatePacket/lines +FD: net/minecraft/network/protocol/game/ServerboundSignUpdatePacket/f_179788_ net/minecraft/network/protocol/game/ServerboundSignUpdatePacket/MAX_STRING_LENGTH +FD: net/minecraft/network/protocol/game/ServerboundSignUpdatePacket/f_276680_ net/minecraft/network/protocol/game/ServerboundSignUpdatePacket/isFrontText +FD: net/minecraft/network/protocol/game/ServerboundSwingPacket/f_134664_ net/minecraft/network/protocol/game/ServerboundSwingPacket/hand +FD: net/minecraft/network/protocol/game/ServerboundTeleportToEntityPacket/f_134677_ net/minecraft/network/protocol/game/ServerboundTeleportToEntityPacket/uuid +FD: net/minecraft/network/protocol/game/ServerboundUseItemOnPacket/f_134691_ net/minecraft/network/protocol/game/ServerboundUseItemOnPacket/blockHit +FD: net/minecraft/network/protocol/game/ServerboundUseItemOnPacket/f_134692_ net/minecraft/network/protocol/game/ServerboundUseItemOnPacket/hand +FD: net/minecraft/network/protocol/game/ServerboundUseItemOnPacket/f_238003_ net/minecraft/network/protocol/game/ServerboundUseItemOnPacket/sequence +FD: net/minecraft/network/protocol/game/ServerboundUseItemPacket/f_134707_ net/minecraft/network/protocol/game/ServerboundUseItemPacket/hand +FD: net/minecraft/network/protocol/game/ServerboundUseItemPacket/f_238009_ net/minecraft/network/protocol/game/ServerboundUseItemPacket/sequence +FD: net/minecraft/network/protocol/game/VecDeltaCodec/f_238014_ net/minecraft/network/protocol/game/VecDeltaCodec/TRUNCATION_STEPS +FD: net/minecraft/network/protocol/game/VecDeltaCodec/f_238015_ net/minecraft/network/protocol/game/VecDeltaCodec/base +FD: net/minecraft/network/protocol/handshake/ClientIntentionPacket/f_134720_ net/minecraft/network/protocol/handshake/ClientIntentionPacket/protocolVersion +FD: net/minecraft/network/protocol/handshake/ClientIntentionPacket/f_134721_ net/minecraft/network/protocol/handshake/ClientIntentionPacket/hostName +FD: net/minecraft/network/protocol/handshake/ClientIntentionPacket/f_134722_ net/minecraft/network/protocol/handshake/ClientIntentionPacket/port +FD: net/minecraft/network/protocol/handshake/ClientIntentionPacket/f_134723_ net/minecraft/network/protocol/handshake/ClientIntentionPacket/intention +FD: net/minecraft/network/protocol/handshake/ClientIntentionPacket/f_179799_ net/minecraft/network/protocol/handshake/ClientIntentionPacket/MAX_HOST_LENGTH +FD: net/minecraft/network/protocol/login/ClientboundCustomQueryPacket/f_134745_ net/minecraft/network/protocol/login/ClientboundCustomQueryPacket/transactionId +FD: net/minecraft/network/protocol/login/ClientboundCustomQueryPacket/f_134746_ net/minecraft/network/protocol/login/ClientboundCustomQueryPacket/identifier +FD: net/minecraft/network/protocol/login/ClientboundCustomQueryPacket/f_134747_ net/minecraft/network/protocol/login/ClientboundCustomQueryPacket/data +FD: net/minecraft/network/protocol/login/ClientboundCustomQueryPacket/f_179804_ net/minecraft/network/protocol/login/ClientboundCustomQueryPacket/MAX_PAYLOAD_SIZE +FD: net/minecraft/network/protocol/login/ClientboundGameProfilePacket/f_134764_ net/minecraft/network/protocol/login/ClientboundGameProfilePacket/gameProfile +FD: net/minecraft/network/protocol/login/ClientboundHelloPacket/f_134777_ net/minecraft/network/protocol/login/ClientboundHelloPacket/serverId +FD: net/minecraft/network/protocol/login/ClientboundHelloPacket/f_134778_ net/minecraft/network/protocol/login/ClientboundHelloPacket/publicKey +FD: net/minecraft/network/protocol/login/ClientboundHelloPacket/f_252397_ net/minecraft/network/protocol/login/ClientboundHelloPacket/challenge +FD: net/minecraft/network/protocol/login/ClientboundLoginCompressionPacket/f_134796_ net/minecraft/network/protocol/login/ClientboundLoginCompressionPacket/compressionThreshold +FD: net/minecraft/network/protocol/login/ClientboundLoginDisconnectPacket/f_134809_ net/minecraft/network/protocol/login/ClientboundLoginDisconnectPacket/reason +FD: net/minecraft/network/protocol/login/ServerboundCustomQueryPacket/f_134825_ net/minecraft/network/protocol/login/ServerboundCustomQueryPacket/transactionId +FD: net/minecraft/network/protocol/login/ServerboundCustomQueryPacket/f_134826_ net/minecraft/network/protocol/login/ServerboundCustomQueryPacket/data +FD: net/minecraft/network/protocol/login/ServerboundCustomQueryPacket/f_179821_ net/minecraft/network/protocol/login/ServerboundCustomQueryPacket/MAX_PAYLOAD_SIZE +FD: net/minecraft/network/protocol/login/ServerboundHelloPacket/f_238040_ net/minecraft/network/protocol/login/ServerboundHelloPacket/name +FD: net/minecraft/network/protocol/login/ServerboundHelloPacket/f_240375_ net/minecraft/network/protocol/login/ServerboundHelloPacket/profileId +FD: net/minecraft/network/protocol/login/ServerboundKeyPacket/f_134852_ net/minecraft/network/protocol/login/ServerboundKeyPacket/keybytes +FD: net/minecraft/network/protocol/login/ServerboundKeyPacket/f_252408_ net/minecraft/network/protocol/login/ServerboundKeyPacket/encryptedChallenge +FD: net/minecraft/network/protocol/status/ClientboundPongResponsePacket/f_134873_ net/minecraft/network/protocol/status/ClientboundPongResponsePacket/time +FD: net/minecraft/network/protocol/status/ClientboundStatusResponsePacket/f_134886_ net/minecraft/network/protocol/status/ClientboundStatusResponsePacket/status +FD: net/minecraft/network/protocol/status/ServerStatus/f_134900_ net/minecraft/network/protocol/status/ServerStatus/description +FD: net/minecraft/network/protocol/status/ServerStatus/f_134901_ net/minecraft/network/protocol/status/ServerStatus/players +FD: net/minecraft/network/protocol/status/ServerStatus/f_134902_ net/minecraft/network/protocol/status/ServerStatus/version +FD: net/minecraft/network/protocol/status/ServerStatus/f_134903_ net/minecraft/network/protocol/status/ServerStatus/favicon +FD: net/minecraft/network/protocol/status/ServerStatus/f_242955_ net/minecraft/network/protocol/status/ServerStatus/enforcesSecureChat +FD: net/minecraft/network/protocol/status/ServerStatus/f_271163_ net/minecraft/network/protocol/status/ServerStatus/CODEC +FD: net/minecraft/network/protocol/status/ServerStatus$Favicon/f_271186_ net/minecraft/network/protocol/status/ServerStatus$Favicon/PREFIX +FD: net/minecraft/network/protocol/status/ServerStatus$Favicon/f_271281_ net/minecraft/network/protocol/status/ServerStatus$Favicon/CODEC +FD: net/minecraft/network/protocol/status/ServerStatus$Favicon/f_271462_ net/minecraft/network/protocol/status/ServerStatus$Favicon/iconBytes +FD: net/minecraft/network/protocol/status/ServerStatus$Players/f_134919_ net/minecraft/network/protocol/status/ServerStatus$Players/sample +FD: net/minecraft/network/protocol/status/ServerStatus$Players/f_271178_ net/minecraft/network/protocol/status/ServerStatus$Players/online +FD: net/minecraft/network/protocol/status/ServerStatus$Players/f_271466_ net/minecraft/network/protocol/status/ServerStatus$Players/PROFILE_CODEC +FD: net/minecraft/network/protocol/status/ServerStatus$Players/f_271480_ net/minecraft/network/protocol/status/ServerStatus$Players/CODEC +FD: net/minecraft/network/protocol/status/ServerStatus$Players/f_271503_ net/minecraft/network/protocol/status/ServerStatus$Players/max +FD: net/minecraft/network/protocol/status/ServerStatus$Version/f_134962_ net/minecraft/network/protocol/status/ServerStatus$Version/name +FD: net/minecraft/network/protocol/status/ServerStatus$Version/f_134963_ net/minecraft/network/protocol/status/ServerStatus$Version/protocol +FD: net/minecraft/network/protocol/status/ServerStatus$Version/f_271272_ net/minecraft/network/protocol/status/ServerStatus$Version/CODEC +FD: net/minecraft/network/protocol/status/ServerboundPingRequestPacket/f_134988_ net/minecraft/network/protocol/status/ServerboundPingRequestPacket/time +FD: net/minecraft/network/syncher/EntityDataAccessor/f_135010_ net/minecraft/network/syncher/EntityDataAccessor/id +FD: net/minecraft/network/syncher/EntityDataAccessor/f_135011_ net/minecraft/network/syncher/EntityDataAccessor/serializer +FD: net/minecraft/network/syncher/EntityDataSerializer$1/f_238101_ net/minecraft/network/syncher/EntityDataSerializer$1/val$writer +FD: net/minecraft/network/syncher/EntityDataSerializer$1/f_238102_ net/minecraft/network/syncher/EntityDataSerializer$1/val$reader +FD: net/minecraft/network/syncher/EntityDataSerializers/f_135027_ net/minecraft/network/syncher/EntityDataSerializers/BYTE +FD: net/minecraft/network/syncher/EntityDataSerializers/f_135028_ net/minecraft/network/syncher/EntityDataSerializers/INT +FD: net/minecraft/network/syncher/EntityDataSerializers/f_135029_ net/minecraft/network/syncher/EntityDataSerializers/FLOAT +FD: net/minecraft/network/syncher/EntityDataSerializers/f_135030_ net/minecraft/network/syncher/EntityDataSerializers/STRING +FD: net/minecraft/network/syncher/EntityDataSerializers/f_135031_ net/minecraft/network/syncher/EntityDataSerializers/COMPONENT +FD: net/minecraft/network/syncher/EntityDataSerializers/f_135032_ net/minecraft/network/syncher/EntityDataSerializers/OPTIONAL_COMPONENT +FD: net/minecraft/network/syncher/EntityDataSerializers/f_135033_ net/minecraft/network/syncher/EntityDataSerializers/ITEM_STACK +FD: net/minecraft/network/syncher/EntityDataSerializers/f_135034_ net/minecraft/network/syncher/EntityDataSerializers/BLOCK_STATE +FD: net/minecraft/network/syncher/EntityDataSerializers/f_135035_ net/minecraft/network/syncher/EntityDataSerializers/BOOLEAN +FD: net/minecraft/network/syncher/EntityDataSerializers/f_135036_ net/minecraft/network/syncher/EntityDataSerializers/PARTICLE +FD: net/minecraft/network/syncher/EntityDataSerializers/f_135037_ net/minecraft/network/syncher/EntityDataSerializers/ROTATIONS +FD: net/minecraft/network/syncher/EntityDataSerializers/f_135038_ net/minecraft/network/syncher/EntityDataSerializers/BLOCK_POS +FD: net/minecraft/network/syncher/EntityDataSerializers/f_135039_ net/minecraft/network/syncher/EntityDataSerializers/OPTIONAL_BLOCK_POS +FD: net/minecraft/network/syncher/EntityDataSerializers/f_135040_ net/minecraft/network/syncher/EntityDataSerializers/DIRECTION +FD: net/minecraft/network/syncher/EntityDataSerializers/f_135041_ net/minecraft/network/syncher/EntityDataSerializers/OPTIONAL_UUID +FD: net/minecraft/network/syncher/EntityDataSerializers/f_135042_ net/minecraft/network/syncher/EntityDataSerializers/COMPOUND_TAG +FD: net/minecraft/network/syncher/EntityDataSerializers/f_135043_ net/minecraft/network/syncher/EntityDataSerializers/VILLAGER_DATA +FD: net/minecraft/network/syncher/EntityDataSerializers/f_135044_ net/minecraft/network/syncher/EntityDataSerializers/OPTIONAL_UNSIGNED_INT +FD: net/minecraft/network/syncher/EntityDataSerializers/f_135045_ net/minecraft/network/syncher/EntityDataSerializers/POSE +FD: net/minecraft/network/syncher/EntityDataSerializers/f_135046_ net/minecraft/network/syncher/EntityDataSerializers/SERIALIZERS +FD: net/minecraft/network/syncher/EntityDataSerializers/f_238113_ net/minecraft/network/syncher/EntityDataSerializers/OPTIONAL_GLOBAL_POS +FD: net/minecraft/network/syncher/EntityDataSerializers/f_238114_ net/minecraft/network/syncher/EntityDataSerializers/CAT_VARIANT +FD: net/minecraft/network/syncher/EntityDataSerializers/f_238115_ net/minecraft/network/syncher/EntityDataSerializers/FROG_VARIANT +FD: net/minecraft/network/syncher/EntityDataSerializers/f_238116_ net/minecraft/network/syncher/EntityDataSerializers/PAINTING_VARIANT +FD: net/minecraft/network/syncher/EntityDataSerializers/f_244073_ net/minecraft/network/syncher/EntityDataSerializers/LONG +FD: net/minecraft/network/syncher/EntityDataSerializers/f_268618_ net/minecraft/network/syncher/EntityDataSerializers/OPTIONAL_BLOCK_STATE +FD: net/minecraft/network/syncher/EntityDataSerializers/f_268624_ net/minecraft/network/syncher/EntityDataSerializers/QUATERNION +FD: net/minecraft/network/syncher/EntityDataSerializers/f_268676_ net/minecraft/network/syncher/EntityDataSerializers/VECTOR3 +FD: net/minecraft/network/syncher/EntityDataSerializers/f_271344_ net/minecraft/network/syncher/EntityDataSerializers/SNIFFER_STATE +FD: net/minecraft/network/syncher/SynchedEntityData/f_135342_ net/minecraft/network/syncher/SynchedEntityData/LOGGER +FD: net/minecraft/network/syncher/SynchedEntityData/f_135343_ net/minecraft/network/syncher/SynchedEntityData/ENTITY_ID_POOL +FD: net/minecraft/network/syncher/SynchedEntityData/f_135344_ net/minecraft/network/syncher/SynchedEntityData/entity +FD: net/minecraft/network/syncher/SynchedEntityData/f_135345_ net/minecraft/network/syncher/SynchedEntityData/itemsById +FD: net/minecraft/network/syncher/SynchedEntityData/f_135346_ net/minecraft/network/syncher/SynchedEntityData/lock +FD: net/minecraft/network/syncher/SynchedEntityData/f_135348_ net/minecraft/network/syncher/SynchedEntityData/isDirty +FD: net/minecraft/network/syncher/SynchedEntityData/f_179843_ net/minecraft/network/syncher/SynchedEntityData/MAX_ID_VALUE +FD: net/minecraft/network/syncher/SynchedEntityData$DataItem/f_135390_ net/minecraft/network/syncher/SynchedEntityData$DataItem/accessor +FD: net/minecraft/network/syncher/SynchedEntityData$DataItem/f_135391_ net/minecraft/network/syncher/SynchedEntityData$DataItem/value +FD: net/minecraft/network/syncher/SynchedEntityData$DataItem/f_135392_ net/minecraft/network/syncher/SynchedEntityData$DataItem/dirty +FD: net/minecraft/network/syncher/SynchedEntityData$DataItem/f_252454_ net/minecraft/network/syncher/SynchedEntityData$DataItem/initialValue +FD: net/minecraft/network/syncher/SynchedEntityData$DataValue/f_252469_ net/minecraft/network/syncher/SynchedEntityData$DataValue/id +FD: net/minecraft/network/syncher/SynchedEntityData$DataValue/f_252511_ net/minecraft/network/syncher/SynchedEntityData$DataValue/serializer +FD: net/minecraft/network/syncher/SynchedEntityData$DataValue/f_252525_ net/minecraft/network/syncher/SynchedEntityData$DataValue/value +FD: net/minecraft/realms/DisconnectedRealmsScreen/f_120648_ net/minecraft/realms/DisconnectedRealmsScreen/reason +FD: net/minecraft/realms/DisconnectedRealmsScreen/f_120649_ net/minecraft/realms/DisconnectedRealmsScreen/message +FD: net/minecraft/realms/DisconnectedRealmsScreen/f_120650_ net/minecraft/realms/DisconnectedRealmsScreen/parent +FD: net/minecraft/realms/DisconnectedRealmsScreen/f_120651_ net/minecraft/realms/DisconnectedRealmsScreen/textHeight +FD: net/minecraft/realms/RealmsConnect/f_120687_ net/minecraft/realms/RealmsConnect/LOGGER +FD: net/minecraft/realms/RealmsConnect/f_120688_ net/minecraft/realms/RealmsConnect/onlineScreen +FD: net/minecraft/realms/RealmsConnect/f_120689_ net/minecraft/realms/RealmsConnect/aborted +FD: net/minecraft/realms/RealmsConnect/f_120690_ net/minecraft/realms/RealmsConnect/connection +FD: net/minecraft/realms/RealmsConnect$1/f_120710_ net/minecraft/realms/RealmsConnect$1/val$hostname +FD: net/minecraft/realms/RealmsConnect$1/f_120711_ net/minecraft/realms/RealmsConnect$1/val$port +FD: net/minecraft/realms/RealmsConnect$1/f_120712_ net/minecraft/realms/RealmsConnect$1/val$minecraft +FD: net/minecraft/realms/RealmsConnect$1/f_120713_ net/minecraft/realms/RealmsConnect$1/val$server +FD: net/minecraft/realms/RealmsConnect$1/f_120714_ net/minecraft/realms/RealmsConnect$1/this$0 +FD: net/minecraft/realms/RealmsLabel/f_120731_ net/minecraft/realms/RealmsLabel/text +FD: net/minecraft/realms/RealmsLabel/f_120732_ net/minecraft/realms/RealmsLabel/x +FD: net/minecraft/realms/RealmsLabel/f_120733_ net/minecraft/realms/RealmsLabel/y +FD: net/minecraft/realms/RealmsLabel/f_120734_ net/minecraft/realms/RealmsLabel/color +FD: net/minecraft/realms/RealmsScreen/f_175040_ net/minecraft/realms/RealmsScreen/COLOR_YELLOW +FD: net/minecraft/realms/RealmsScreen/f_175041_ net/minecraft/realms/RealmsScreen/COLOR_BRIGHT_YELLOW +FD: net/minecraft/realms/RealmsScreen/f_175042_ net/minecraft/realms/RealmsScreen/COLOR_LINK +FD: net/minecraft/realms/RealmsScreen/f_175043_ net/minecraft/realms/RealmsScreen/COLOR_LINK_HOVER +FD: net/minecraft/realms/RealmsScreen/f_175044_ net/minecraft/realms/RealmsScreen/COLOR_INFO +FD: net/minecraft/realms/RealmsScreen/f_175045_ net/minecraft/realms/RealmsScreen/COLOR_BUTTON_YELLOW +FD: net/minecraft/realms/RealmsScreen/f_175046_ net/minecraft/realms/RealmsScreen/UPDATE_BREAKS_ADVENTURE_URL +FD: net/minecraft/realms/RealmsScreen/f_175057_ net/minecraft/realms/RealmsScreen/labels +FD: net/minecraft/realms/RealmsScreen/f_175058_ net/minecraft/realms/RealmsScreen/TITLE_HEIGHT +FD: net/minecraft/realms/RealmsScreen/f_175059_ net/minecraft/realms/RealmsScreen/COMPONENT_HEIGHT +FD: net/minecraft/realms/RealmsScreen/f_175060_ net/minecraft/realms/RealmsScreen/EXPIRATION_NOTIFICATION_DAYS +FD: net/minecraft/realms/RealmsScreen/f_175061_ net/minecraft/realms/RealmsScreen/SIZE_LIMIT +FD: net/minecraft/realms/RealmsScreen/f_175062_ net/minecraft/realms/RealmsScreen/COLOR_WHITE +FD: net/minecraft/realms/RealmsScreen/f_175063_ net/minecraft/realms/RealmsScreen/COLOR_GRAY +FD: net/minecraft/realms/RealmsScreen/f_175064_ net/minecraft/realms/RealmsScreen/COLOR_DARK_GRAY +FD: net/minecraft/realms/RealmsScreen/f_175065_ net/minecraft/realms/RealmsScreen/COLOR_MEDIUM_GRAY +FD: net/minecraft/realms/RealmsScreen/f_175066_ net/minecraft/realms/RealmsScreen/COLOR_GREEN +FD: net/minecraft/realms/RealmsScreen/f_175067_ net/minecraft/realms/RealmsScreen/COLOR_DARK_GREEN +FD: net/minecraft/realms/RealmsScreen/f_175068_ net/minecraft/realms/RealmsScreen/COLOR_RED +FD: net/minecraft/realms/RealmsScreen/f_175069_ net/minecraft/realms/RealmsScreen/COLOR_RED_FADE +FD: net/minecraft/realms/RealmsScreen/f_175070_ net/minecraft/realms/RealmsScreen/COLOR_BLACK +FD: net/minecraft/realms/RealmsScreen/f_238765_ net/minecraft/realms/RealmsScreen/SKIN_FACE_SIZE +FD: net/minecraft/realms/RepeatedNarrator/f_120785_ net/minecraft/realms/RepeatedNarrator/permitsPerSecond +FD: net/minecraft/realms/RepeatedNarrator/f_120786_ net/minecraft/realms/RepeatedNarrator/params +FD: net/minecraft/realms/RepeatedNarrator$Params/f_120794_ net/minecraft/realms/RepeatedNarrator$Params/narration +FD: net/minecraft/realms/RepeatedNarrator$Params/f_120795_ net/minecraft/realms/RepeatedNarrator$Params/rateLimiter +FD: net/minecraft/recipebook/ServerPlaceRecipe/f_135425_ net/minecraft/recipebook/ServerPlaceRecipe/LOGGER +FD: net/minecraft/recipebook/ServerPlaceRecipe/f_135426_ net/minecraft/recipebook/ServerPlaceRecipe/stackedContents +FD: net/minecraft/recipebook/ServerPlaceRecipe/f_135427_ net/minecraft/recipebook/ServerPlaceRecipe/inventory +FD: net/minecraft/recipebook/ServerPlaceRecipe/f_135428_ net/minecraft/recipebook/ServerPlaceRecipe/menu +FD: net/minecraft/resources/DelegatingOps/f_135465_ net/minecraft/resources/DelegatingOps/delegate +FD: net/minecraft/resources/FileToIdConverter/f_244199_ net/minecraft/resources/FileToIdConverter/extension +FD: net/minecraft/resources/FileToIdConverter/f_244233_ net/minecraft/resources/FileToIdConverter/prefix +FD: net/minecraft/resources/HolderSetCodec/f_206655_ net/minecraft/resources/HolderSetCodec/registryKey +FD: net/minecraft/resources/HolderSetCodec/f_206656_ net/minecraft/resources/HolderSetCodec/elementCodec +FD: net/minecraft/resources/HolderSetCodec/f_206657_ net/minecraft/resources/HolderSetCodec/homogenousListCodec +FD: net/minecraft/resources/HolderSetCodec/f_206658_ net/minecraft/resources/HolderSetCodec/registryAwareCodec +FD: net/minecraft/resources/RegistryDataLoader/f_243803_ net/minecraft/resources/RegistryDataLoader/WORLDGEN_REGISTRIES +FD: net/minecraft/resources/RegistryDataLoader/f_243935_ net/minecraft/resources/RegistryDataLoader/LOGGER +FD: net/minecraft/resources/RegistryDataLoader/f_244547_ net/minecraft/resources/RegistryDataLoader/DIMENSION_REGISTRIES +FD: net/minecraft/resources/RegistryDataLoader$1/f_254620_ net/minecraft/resources/RegistryDataLoader$1/val$result +FD: net/minecraft/resources/RegistryDataLoader$RegistryData/f_243794_ net/minecraft/resources/RegistryDataLoader$RegistryData/key +FD: net/minecraft/resources/RegistryDataLoader$RegistryData/f_244580_ net/minecraft/resources/RegistryDataLoader$RegistryData/elementCodec +FD: net/minecraft/resources/RegistryFileCodec/f_135570_ net/minecraft/resources/RegistryFileCodec/registryKey +FD: net/minecraft/resources/RegistryFileCodec/f_135571_ net/minecraft/resources/RegistryFileCodec/elementCodec +FD: net/minecraft/resources/RegistryFileCodec/f_135572_ net/minecraft/resources/RegistryFileCodec/allowInline +FD: net/minecraft/resources/RegistryFixedCodec/f_206721_ net/minecraft/resources/RegistryFixedCodec/registryKey +FD: net/minecraft/resources/RegistryOps/f_254668_ net/minecraft/resources/RegistryOps/lookupProvider +FD: net/minecraft/resources/RegistryOps$1/f_254621_ net/minecraft/resources/RegistryOps$1/lookups +FD: net/minecraft/resources/RegistryOps$1/f_254712_ net/minecraft/resources/RegistryOps$1/val$original +FD: net/minecraft/resources/RegistryOps$2/f_254704_ net/minecraft/resources/RegistryOps$2/val$lookupProvider +FD: net/minecraft/resources/RegistryOps$RegistryInfo/f_254675_ net/minecraft/resources/RegistryOps$RegistryInfo/owner +FD: net/minecraft/resources/RegistryOps$RegistryInfo/f_254724_ net/minecraft/resources/RegistryOps$RegistryInfo/getter +FD: net/minecraft/resources/RegistryOps$RegistryInfo/f_254751_ net/minecraft/resources/RegistryOps$RegistryInfo/elementsLifecycle +FD: net/minecraft/resources/ResourceKey/f_135775_ net/minecraft/resources/ResourceKey/VALUES +FD: net/minecraft/resources/ResourceKey/f_135776_ net/minecraft/resources/ResourceKey/registryName +FD: net/minecraft/resources/ResourceKey/f_135777_ net/minecraft/resources/ResourceKey/location +FD: net/minecraft/resources/ResourceKey$InternKey/f_256880_ net/minecraft/resources/ResourceKey$InternKey/registry +FD: net/minecraft/resources/ResourceKey$InternKey/f_257046_ net/minecraft/resources/ResourceKey$InternKey/location +FD: net/minecraft/resources/ResourceLocation/f_135803_ net/minecraft/resources/ResourceLocation/CODEC +FD: net/minecraft/resources/ResourceLocation/f_135804_ net/minecraft/resources/ResourceLocation/namespace +FD: net/minecraft/resources/ResourceLocation/f_135805_ net/minecraft/resources/ResourceLocation/path +FD: net/minecraft/resources/ResourceLocation/f_135806_ net/minecraft/resources/ResourceLocation/ERROR_INVALID +FD: net/minecraft/resources/ResourceLocation/f_179907_ net/minecraft/resources/ResourceLocation/NAMESPACE_SEPARATOR +FD: net/minecraft/resources/ResourceLocation/f_179908_ net/minecraft/resources/ResourceLocation/DEFAULT_NAMESPACE +FD: net/minecraft/resources/ResourceLocation/f_179909_ net/minecraft/resources/ResourceLocation/REALMS_NAMESPACE +FD: net/minecraft/server/Bootstrap/f_135866_ net/minecraft/server/Bootstrap/STDOUT +FD: net/minecraft/server/Bootstrap/f_135867_ net/minecraft/server/Bootstrap/isBootstrapped +FD: net/minecraft/server/Bootstrap/f_135868_ net/minecraft/server/Bootstrap/LOGGER +FD: net/minecraft/server/Bootstrap/f_285608_ net/minecraft/server/Bootstrap/bootstrapDuration +FD: net/minecraft/server/Bootstrap$1/f_135891_ net/minecraft/server/Bootstrap$1/val$language +FD: net/minecraft/server/Bootstrap$1/f_135892_ net/minecraft/server/Bootstrap$1/val$missing +FD: net/minecraft/server/ChainedJsonException/f_135899_ net/minecraft/server/ChainedJsonException/entries +FD: net/minecraft/server/ChainedJsonException/f_135900_ net/minecraft/server/ChainedJsonException/message +FD: net/minecraft/server/ChainedJsonException$Entry/f_135913_ net/minecraft/server/ChainedJsonException$Entry/filename +FD: net/minecraft/server/ChainedJsonException$Entry/f_135914_ net/minecraft/server/ChainedJsonException$Entry/jsonKeys +FD: net/minecraft/server/ConsoleInput/f_135928_ net/minecraft/server/ConsoleInput/msg +FD: net/minecraft/server/ConsoleInput/f_135929_ net/minecraft/server/ConsoleInput/source +FD: net/minecraft/server/DebugLoggedPrintStream/f_202580_ net/minecraft/server/DebugLoggedPrintStream/LOGGER +FD: net/minecraft/server/Eula/f_135938_ net/minecraft/server/Eula/LOGGER +FD: net/minecraft/server/Eula/f_135939_ net/minecraft/server/Eula/file +FD: net/minecraft/server/Eula/f_135940_ net/minecraft/server/Eula/agreed +FD: net/minecraft/server/LoggedPrintStream/f_135947_ net/minecraft/server/LoggedPrintStream/LOGGER +FD: net/minecraft/server/LoggedPrintStream/f_135948_ net/minecraft/server/LoggedPrintStream/name +FD: net/minecraft/server/Main/f_129670_ net/minecraft/server/Main/LOGGER +FD: net/minecraft/server/Main$1/f_129700_ net/minecraft/server/Main$1/val$dedicatedServer +FD: net/minecraft/server/MinecraftServer/f_129705_ net/minecraft/server/MinecraftServer/onlineMode +FD: net/minecraft/server/MinecraftServer/f_129706_ net/minecraft/server/MinecraftServer/preventProxyConnections +FD: net/minecraft/server/MinecraftServer/f_129707_ net/minecraft/server/MinecraftServer/pvp +FD: net/minecraft/server/MinecraftServer/f_129708_ net/minecraft/server/MinecraftServer/allowFlight +FD: net/minecraft/server/MinecraftServer/f_129709_ net/minecraft/server/MinecraftServer/motd +FD: net/minecraft/server/MinecraftServer/f_129711_ net/minecraft/server/MinecraftServer/playerIdleTimeout +FD: net/minecraft/server/MinecraftServer/f_129712_ net/minecraft/server/MinecraftServer/keyPair +FD: net/minecraft/server/MinecraftServer/f_129714_ net/minecraft/server/MinecraftServer/isDemo +FD: net/minecraft/server/MinecraftServer/f_129717_ net/minecraft/server/MinecraftServer/isReady +FD: net/minecraft/server/MinecraftServer/f_129718_ net/minecraft/server/MinecraftServer/lastOverloadWarning +FD: net/minecraft/server/MinecraftServer/f_129724_ net/minecraft/server/MinecraftServer/lastServerStatus +FD: net/minecraft/server/MinecraftServer/f_129725_ net/minecraft/server/MinecraftServer/serverThread +FD: net/minecraft/server/MinecraftServer/f_129726_ net/minecraft/server/MinecraftServer/nextTickTime +FD: net/minecraft/server/MinecraftServer/f_129727_ net/minecraft/server/MinecraftServer/delayedTasksMaxNextTickTime +FD: net/minecraft/server/MinecraftServer/f_129728_ net/minecraft/server/MinecraftServer/mayHaveDelayedTasks +FD: net/minecraft/server/MinecraftServer/f_129730_ net/minecraft/server/MinecraftServer/packRepository +FD: net/minecraft/server/MinecraftServer/f_129731_ net/minecraft/server/MinecraftServer/scoreboard +FD: net/minecraft/server/MinecraftServer/f_129732_ net/minecraft/server/MinecraftServer/commandStorage +FD: net/minecraft/server/MinecraftServer/f_129733_ net/minecraft/server/MinecraftServer/customBossEvents +FD: net/minecraft/server/MinecraftServer/f_129734_ net/minecraft/server/MinecraftServer/functionManager +FD: net/minecraft/server/MinecraftServer/f_129735_ net/minecraft/server/MinecraftServer/frameTimer +FD: net/minecraft/server/MinecraftServer/f_129736_ net/minecraft/server/MinecraftServer/enforceWhitelist +FD: net/minecraft/server/MinecraftServer/f_129737_ net/minecraft/server/MinecraftServer/averageTickTime +FD: net/minecraft/server/MinecraftServer/f_129738_ net/minecraft/server/MinecraftServer/executor +FD: net/minecraft/server/MinecraftServer/f_129739_ net/minecraft/server/MinecraftServer/serverId +FD: net/minecraft/server/MinecraftServer/f_129740_ net/minecraft/server/MinecraftServer/resources +FD: net/minecraft/server/MinecraftServer/f_129743_ net/minecraft/server/MinecraftServer/DEMO_SETTINGS +FD: net/minecraft/server/MinecraftServer/f_129744_ net/minecraft/server/MinecraftServer/storageSource +FD: net/minecraft/server/MinecraftServer/f_129745_ net/minecraft/server/MinecraftServer/playerDataStorage +FD: net/minecraft/server/MinecraftServer/f_129747_ net/minecraft/server/MinecraftServer/proxy +FD: net/minecraft/server/MinecraftServer/f_129748_ net/minecraft/server/MinecraftServer/tickTimes +FD: net/minecraft/server/MinecraftServer/f_129749_ net/minecraft/server/MinecraftServer/worldData +FD: net/minecraft/server/MinecraftServer/f_129750_ net/minecraft/server/MinecraftServer/LOGGER +FD: net/minecraft/server/MinecraftServer/f_129752_ net/minecraft/server/MinecraftServer/tickables +FD: net/minecraft/server/MinecraftServer/f_129754_ net/minecraft/server/MinecraftServer/profiler +FD: net/minecraft/server/MinecraftServer/f_129755_ net/minecraft/server/MinecraftServer/connection +FD: net/minecraft/server/MinecraftServer/f_129756_ net/minecraft/server/MinecraftServer/progressListenerFactory +FD: net/minecraft/server/MinecraftServer/f_129757_ net/minecraft/server/MinecraftServer/status +FD: net/minecraft/server/MinecraftServer/f_129758_ net/minecraft/server/MinecraftServer/random +FD: net/minecraft/server/MinecraftServer/f_129759_ net/minecraft/server/MinecraftServer/fixerUpper +FD: net/minecraft/server/MinecraftServer/f_129760_ net/minecraft/server/MinecraftServer/localIp +FD: net/minecraft/server/MinecraftServer/f_129761_ net/minecraft/server/MinecraftServer/port +FD: net/minecraft/server/MinecraftServer/f_129762_ net/minecraft/server/MinecraftServer/levels +FD: net/minecraft/server/MinecraftServer/f_129763_ net/minecraft/server/MinecraftServer/playerList +FD: net/minecraft/server/MinecraftServer/f_129764_ net/minecraft/server/MinecraftServer/running +FD: net/minecraft/server/MinecraftServer/f_129765_ net/minecraft/server/MinecraftServer/stopped +FD: net/minecraft/server/MinecraftServer/f_129766_ net/minecraft/server/MinecraftServer/tickCount +FD: net/minecraft/server/MinecraftServer/f_177871_ net/minecraft/server/MinecraftServer/DELAYED_TASKS_TICK_EXTENSION +FD: net/minecraft/server/MinecraftServer/f_177872_ net/minecraft/server/MinecraftServer/metricsRecorder +FD: net/minecraft/server/MinecraftServer/f_177873_ net/minecraft/server/MinecraftServer/onMetricsRecordingStopped +FD: net/minecraft/server/MinecraftServer/f_177874_ net/minecraft/server/MinecraftServer/onMetricsRecordingFinished +FD: net/minecraft/server/MinecraftServer/f_177875_ net/minecraft/server/MinecraftServer/willStartRecordingMetrics +FD: net/minecraft/server/MinecraftServer/f_177876_ net/minecraft/server/MinecraftServer/debugCommandProfiler +FD: net/minecraft/server/MinecraftServer/f_177877_ net/minecraft/server/MinecraftServer/debugCommandProfilerDelayStart +FD: net/minecraft/server/MinecraftServer/f_177878_ net/minecraft/server/MinecraftServer/MS_PER_TICK +FD: net/minecraft/server/MinecraftServer/f_177882_ net/minecraft/server/MinecraftServer/START_CHUNK_RADIUS +FD: net/minecraft/server/MinecraftServer/f_177883_ net/minecraft/server/MinecraftServer/ABSOLUTE_MAX_WORLD_SIZE +FD: net/minecraft/server/MinecraftServer/f_177884_ net/minecraft/server/MinecraftServer/AVERAGE_TICK_TIME_SMOOTHING +FD: net/minecraft/server/MinecraftServer/f_177885_ net/minecraft/server/MinecraftServer/TICK_STATS_SPAN +FD: net/minecraft/server/MinecraftServer/f_177887_ net/minecraft/server/MinecraftServer/OVERLOADED_THRESHOLD +FD: net/minecraft/server/MinecraftServer/f_177888_ net/minecraft/server/MinecraftServer/OVERLOADED_WARNING_INTERVAL +FD: net/minecraft/server/MinecraftServer/f_177889_ net/minecraft/server/MinecraftServer/STATUS_EXPIRE_TIME_NS +FD: net/minecraft/server/MinecraftServer/f_177890_ net/minecraft/server/MinecraftServer/MAX_STATUS_PLAYER_SAMPLE +FD: net/minecraft/server/MinecraftServer/f_177891_ net/minecraft/server/MinecraftServer/START_TICKING_CHUNK_COUNT +FD: net/minecraft/server/MinecraftServer/f_177892_ net/minecraft/server/MinecraftServer/AUTOSAVE_INTERVAL +FD: net/minecraft/server/MinecraftServer/f_177893_ net/minecraft/server/MinecraftServer/MAX_TICK_LATENCY +FD: net/minecraft/server/MinecraftServer/f_195494_ net/minecraft/server/MinecraftServer/isSaving +FD: net/minecraft/server/MinecraftServer/f_195495_ net/minecraft/server/MinecraftServer/VANILLA_BRAND +FD: net/minecraft/server/MinecraftServer/f_195496_ net/minecraft/server/MinecraftServer/ANONYMOUS_PLAYER_PROFILE +FD: net/minecraft/server/MinecraftServer/f_236719_ net/minecraft/server/MinecraftServer/singleplayerProfile +FD: net/minecraft/server/MinecraftServer/f_236720_ net/minecraft/server/MinecraftServer/structureTemplateManager +FD: net/minecraft/server/MinecraftServer/f_236721_ net/minecraft/server/MinecraftServer/services +FD: net/minecraft/server/MinecraftServer/f_244176_ net/minecraft/server/MinecraftServer/registries +FD: net/minecraft/server/MinecraftServer/f_271173_ net/minecraft/server/MinecraftServer/statusIcon +FD: net/minecraft/server/MinecraftServer$1/f_195523_ net/minecraft/server/MinecraftServer$1/val$entries +FD: net/minecraft/server/MinecraftServer$1/f_195524_ net/minecraft/server/MinecraftServer$1/val$gameRules +FD: net/minecraft/server/MinecraftServer$1/f_195525_ net/minecraft/server/MinecraftServer$1/this$0 +FD: net/minecraft/server/MinecraftServer$ReloadableResources/f_206584_ net/minecraft/server/MinecraftServer$ReloadableResources/resourceManager +FD: net/minecraft/server/MinecraftServer$ReloadableResources/f_206585_ net/minecraft/server/MinecraftServer$ReloadableResources/managers +FD: net/minecraft/server/MinecraftServer$ServerResourcePackInfo/f_236743_ net/minecraft/server/MinecraftServer$ServerResourcePackInfo/url +FD: net/minecraft/server/MinecraftServer$ServerResourcePackInfo/f_236744_ net/minecraft/server/MinecraftServer$ServerResourcePackInfo/hash +FD: net/minecraft/server/MinecraftServer$ServerResourcePackInfo/f_236745_ net/minecraft/server/MinecraftServer$ServerResourcePackInfo/isRequired +FD: net/minecraft/server/MinecraftServer$ServerResourcePackInfo/f_236746_ net/minecraft/server/MinecraftServer$ServerResourcePackInfo/prompt +FD: net/minecraft/server/MinecraftServer$TimeProfiler/f_177955_ net/minecraft/server/MinecraftServer$TimeProfiler/startNanos +FD: net/minecraft/server/MinecraftServer$TimeProfiler/f_177956_ net/minecraft/server/MinecraftServer$TimeProfiler/startTick +FD: net/minecraft/server/MinecraftServer$TimeProfiler$1/f_177963_ net/minecraft/server/MinecraftServer$TimeProfiler$1/val$stopNanos +FD: net/minecraft/server/MinecraftServer$TimeProfiler$1/f_177964_ net/minecraft/server/MinecraftServer$TimeProfiler$1/val$stopTick +FD: net/minecraft/server/MinecraftServer$TimeProfiler$1/f_177965_ net/minecraft/server/MinecraftServer$TimeProfiler$1/this$0 +FD: net/minecraft/server/PlayerAdvancements/f_135958_ net/minecraft/server/PlayerAdvancements/LOGGER +FD: net/minecraft/server/PlayerAdvancements/f_135959_ net/minecraft/server/PlayerAdvancements/GSON +FD: net/minecraft/server/PlayerAdvancements/f_135960_ net/minecraft/server/PlayerAdvancements/TYPE_TOKEN +FD: net/minecraft/server/PlayerAdvancements/f_135961_ net/minecraft/server/PlayerAdvancements/dataFixer +FD: net/minecraft/server/PlayerAdvancements/f_135962_ net/minecraft/server/PlayerAdvancements/playerList +FD: net/minecraft/server/PlayerAdvancements/f_135965_ net/minecraft/server/PlayerAdvancements/visible +FD: net/minecraft/server/PlayerAdvancements/f_135967_ net/minecraft/server/PlayerAdvancements/progressChanged +FD: net/minecraft/server/PlayerAdvancements/f_135968_ net/minecraft/server/PlayerAdvancements/player +FD: net/minecraft/server/PlayerAdvancements/f_135969_ net/minecraft/server/PlayerAdvancements/lastSelectedTab +FD: net/minecraft/server/PlayerAdvancements/f_135970_ net/minecraft/server/PlayerAdvancements/isFirstPacket +FD: net/minecraft/server/PlayerAdvancements/f_263740_ net/minecraft/server/PlayerAdvancements/progress +FD: net/minecraft/server/PlayerAdvancements/f_263766_ net/minecraft/server/PlayerAdvancements/playerSavePath +FD: net/minecraft/server/PlayerAdvancements/f_263821_ net/minecraft/server/PlayerAdvancements/rootsToUpdate +FD: net/minecraft/server/RegistryLayer/$VALUES net/minecraft/server/RegistryLayer/$VALUES +FD: net/minecraft/server/RegistryLayer/DIMENSIONS net/minecraft/server/RegistryLayer/DIMENSIONS +FD: net/minecraft/server/RegistryLayer/RELOADABLE net/minecraft/server/RegistryLayer/RELOADABLE +FD: net/minecraft/server/RegistryLayer/STATIC net/minecraft/server/RegistryLayer/STATIC +FD: net/minecraft/server/RegistryLayer/WORLDGEN net/minecraft/server/RegistryLayer/WORLDGEN +FD: net/minecraft/server/RegistryLayer/f_244179_ net/minecraft/server/RegistryLayer/STATIC_ACCESS +FD: net/minecraft/server/RegistryLayer/f_244343_ net/minecraft/server/RegistryLayer/VALUES +FD: net/minecraft/server/ReloadableServerResources/f_206845_ net/minecraft/server/ReloadableServerResources/LOGGER +FD: net/minecraft/server/ReloadableServerResources/f_206846_ net/minecraft/server/ReloadableServerResources/DATA_RELOAD_INITIAL_TASK +FD: net/minecraft/server/ReloadableServerResources/f_206847_ net/minecraft/server/ReloadableServerResources/commands +FD: net/minecraft/server/ReloadableServerResources/f_206848_ net/minecraft/server/ReloadableServerResources/recipes +FD: net/minecraft/server/ReloadableServerResources/f_206849_ net/minecraft/server/ReloadableServerResources/tagManager +FD: net/minecraft/server/ReloadableServerResources/f_206853_ net/minecraft/server/ReloadableServerResources/advancements +FD: net/minecraft/server/ReloadableServerResources/f_206854_ net/minecraft/server/ReloadableServerResources/functionLibrary +FD: net/minecraft/server/ReloadableServerResources/f_214300_ net/minecraft/server/ReloadableServerResources/commandBuildContext +FD: net/minecraft/server/ReloadableServerResources/f_278467_ net/minecraft/server/ReloadableServerResources/lootData +FD: net/minecraft/server/RunningOnDifferentThreadException/f_136017_ net/minecraft/server/RunningOnDifferentThreadException/RUNNING_ON_DIFFERENT_THREAD +FD: net/minecraft/server/ServerAdvancementManager/f_136021_ net/minecraft/server/ServerAdvancementManager/LOGGER +FD: net/minecraft/server/ServerAdvancementManager/f_136022_ net/minecraft/server/ServerAdvancementManager/GSON +FD: net/minecraft/server/ServerAdvancementManager/f_136023_ net/minecraft/server/ServerAdvancementManager/advancements +FD: net/minecraft/server/ServerAdvancementManager/f_278379_ net/minecraft/server/ServerAdvancementManager/lootData +FD: net/minecraft/server/ServerFunctionLibrary/f_136043_ net/minecraft/server/ServerFunctionLibrary/LOGGER +FD: net/minecraft/server/ServerFunctionLibrary/f_136046_ net/minecraft/server/ServerFunctionLibrary/functions +FD: net/minecraft/server/ServerFunctionLibrary/f_136047_ net/minecraft/server/ServerFunctionLibrary/tagsLoader +FD: net/minecraft/server/ServerFunctionLibrary/f_136048_ net/minecraft/server/ServerFunctionLibrary/tags +FD: net/minecraft/server/ServerFunctionLibrary/f_136049_ net/minecraft/server/ServerFunctionLibrary/functionCompilationLevel +FD: net/minecraft/server/ServerFunctionLibrary/f_136050_ net/minecraft/server/ServerFunctionLibrary/dispatcher +FD: net/minecraft/server/ServerFunctionLibrary/f_244053_ net/minecraft/server/ServerFunctionLibrary/LISTER +FD: net/minecraft/server/ServerFunctionManager/f_136099_ net/minecraft/server/ServerFunctionManager/TICK_FUNCTION_TAG +FD: net/minecraft/server/ServerFunctionManager/f_136100_ net/minecraft/server/ServerFunctionManager/LOAD_FUNCTION_TAG +FD: net/minecraft/server/ServerFunctionManager/f_136101_ net/minecraft/server/ServerFunctionManager/server +FD: net/minecraft/server/ServerFunctionManager/f_136105_ net/minecraft/server/ServerFunctionManager/ticking +FD: net/minecraft/server/ServerFunctionManager/f_136106_ net/minecraft/server/ServerFunctionManager/postReload +FD: net/minecraft/server/ServerFunctionManager/f_136107_ net/minecraft/server/ServerFunctionManager/library +FD: net/minecraft/server/ServerFunctionManager/f_179958_ net/minecraft/server/ServerFunctionManager/NO_RECURSIVE_TRACES +FD: net/minecraft/server/ServerFunctionManager/f_179959_ net/minecraft/server/ServerFunctionManager/context +FD: net/minecraft/server/ServerFunctionManager$ExecutionContext/f_179964_ net/minecraft/server/ServerFunctionManager$ExecutionContext/this$0 +FD: net/minecraft/server/ServerFunctionManager$ExecutionContext/f_179965_ net/minecraft/server/ServerFunctionManager$ExecutionContext/depth +FD: net/minecraft/server/ServerFunctionManager$ExecutionContext/f_179966_ net/minecraft/server/ServerFunctionManager$ExecutionContext/tracer +FD: net/minecraft/server/ServerFunctionManager$ExecutionContext/f_179967_ net/minecraft/server/ServerFunctionManager$ExecutionContext/commandQueue +FD: net/minecraft/server/ServerFunctionManager$ExecutionContext/f_179968_ net/minecraft/server/ServerFunctionManager$ExecutionContext/nestedCalls +FD: net/minecraft/server/ServerFunctionManager$ExecutionContext/f_279555_ net/minecraft/server/ServerFunctionManager$ExecutionContext/abortCurrentDepth +FD: net/minecraft/server/ServerFunctionManager$ExecutionContext$AbortingReturnValueConsumer/f_279539_ net/minecraft/server/ServerFunctionManager$ExecutionContext$AbortingReturnValueConsumer/wrapped +FD: net/minecraft/server/ServerFunctionManager$ExecutionContext$AbortingReturnValueConsumer/f_279625_ net/minecraft/server/ServerFunctionManager$ExecutionContext$AbortingReturnValueConsumer/this$1 +FD: net/minecraft/server/ServerFunctionManager$QueuedCommand/f_136133_ net/minecraft/server/ServerFunctionManager$QueuedCommand/sender +FD: net/minecraft/server/ServerFunctionManager$QueuedCommand/f_136134_ net/minecraft/server/ServerFunctionManager$QueuedCommand/entry +FD: net/minecraft/server/ServerFunctionManager$QueuedCommand/f_179980_ net/minecraft/server/ServerFunctionManager$QueuedCommand/depth +FD: net/minecraft/server/ServerScoreboard/f_136193_ net/minecraft/server/ServerScoreboard/server +FD: net/minecraft/server/ServerScoreboard/f_136194_ net/minecraft/server/ServerScoreboard/trackedObjectives +FD: net/minecraft/server/ServerScoreboard/f_136195_ net/minecraft/server/ServerScoreboard/dirtyListeners +FD: net/minecraft/server/ServerScoreboard$Method/$VALUES net/minecraft/server/ServerScoreboard$Method/$VALUES +FD: net/minecraft/server/ServerScoreboard$Method/CHANGE net/minecraft/server/ServerScoreboard$Method/CHANGE +FD: net/minecraft/server/ServerScoreboard$Method/REMOVE net/minecraft/server/ServerScoreboard$Method/REMOVE +FD: net/minecraft/server/Services/f_214333_ net/minecraft/server/Services/sessionService +FD: net/minecraft/server/Services/f_214335_ net/minecraft/server/Services/profileRepository +FD: net/minecraft/server/Services/f_214336_ net/minecraft/server/Services/profileCache +FD: net/minecraft/server/Services/f_214337_ net/minecraft/server/Services/USERID_CACHE_FILE +FD: net/minecraft/server/Services/f_283795_ net/minecraft/server/Services/servicesKeySet +FD: net/minecraft/server/TickTask/f_136249_ net/minecraft/server/TickTask/tick +FD: net/minecraft/server/TickTask/f_136250_ net/minecraft/server/TickTask/runnable +FD: net/minecraft/server/WorldLoader/f_244206_ net/minecraft/server/WorldLoader/LOGGER +FD: net/minecraft/server/WorldLoader$DataLoadContext/f_243759_ net/minecraft/server/WorldLoader$DataLoadContext/datapackDimensions +FD: net/minecraft/server/WorldLoader$DataLoadContext/f_244104_ net/minecraft/server/WorldLoader$DataLoadContext/datapackWorldgen +FD: net/minecraft/server/WorldLoader$DataLoadContext/f_244127_ net/minecraft/server/WorldLoader$DataLoadContext/dataConfiguration +FD: net/minecraft/server/WorldLoader$DataLoadContext/f_244187_ net/minecraft/server/WorldLoader$DataLoadContext/resources +FD: net/minecraft/server/WorldLoader$DataLoadOutput/f_244143_ net/minecraft/server/WorldLoader$DataLoadOutput/finalDimensions +FD: net/minecraft/server/WorldLoader$DataLoadOutput/f_244458_ net/minecraft/server/WorldLoader$DataLoadOutput/cookie +FD: net/minecraft/server/WorldLoader$InitConfig/f_214378_ net/minecraft/server/WorldLoader$InitConfig/packConfig +FD: net/minecraft/server/WorldLoader$InitConfig/f_214379_ net/minecraft/server/WorldLoader$InitConfig/commandSelection +FD: net/minecraft/server/WorldLoader$InitConfig/f_214380_ net/minecraft/server/WorldLoader$InitConfig/functionCompilationLevel +FD: net/minecraft/server/WorldLoader$PackConfig/f_214392_ net/minecraft/server/WorldLoader$PackConfig/packRepository +FD: net/minecraft/server/WorldLoader$PackConfig/f_214394_ net/minecraft/server/WorldLoader$PackConfig/safeMode +FD: net/minecraft/server/WorldLoader$PackConfig/f_244133_ net/minecraft/server/WorldLoader$PackConfig/initMode +FD: net/minecraft/server/WorldLoader$PackConfig/f_244366_ net/minecraft/server/WorldLoader$PackConfig/initialDataConfig +FD: net/minecraft/server/WorldStem/f_206892_ net/minecraft/server/WorldStem/resourceManager +FD: net/minecraft/server/WorldStem/f_206893_ net/minecraft/server/WorldStem/dataPackResources +FD: net/minecraft/server/WorldStem/f_206895_ net/minecraft/server/WorldStem/worldData +FD: net/minecraft/server/WorldStem/f_244542_ net/minecraft/server/WorldStem/registries +FD: net/minecraft/server/advancements/AdvancementVisibilityEvaluator/f_263793_ net/minecraft/server/advancements/AdvancementVisibilityEvaluator/VISIBILITY_DEPTH +FD: net/minecraft/server/advancements/AdvancementVisibilityEvaluator$VisibilityRule/$VALUES net/minecraft/server/advancements/AdvancementVisibilityEvaluator$VisibilityRule/$VALUES +FD: net/minecraft/server/advancements/AdvancementVisibilityEvaluator$VisibilityRule/HIDE net/minecraft/server/advancements/AdvancementVisibilityEvaluator$VisibilityRule/HIDE +FD: net/minecraft/server/advancements/AdvancementVisibilityEvaluator$VisibilityRule/NO_CHANGE net/minecraft/server/advancements/AdvancementVisibilityEvaluator$VisibilityRule/NO_CHANGE +FD: net/minecraft/server/advancements/AdvancementVisibilityEvaluator$VisibilityRule/SHOW net/minecraft/server/advancements/AdvancementVisibilityEvaluator$VisibilityRule/SHOW +FD: net/minecraft/server/bossevents/CustomBossEvent/f_136256_ net/minecraft/server/bossevents/CustomBossEvent/id +FD: net/minecraft/server/bossevents/CustomBossEvent/f_136257_ net/minecraft/server/bossevents/CustomBossEvent/players +FD: net/minecraft/server/bossevents/CustomBossEvent/f_136258_ net/minecraft/server/bossevents/CustomBossEvent/value +FD: net/minecraft/server/bossevents/CustomBossEvent/f_136259_ net/minecraft/server/bossevents/CustomBossEvent/max +FD: net/minecraft/server/bossevents/CustomBossEvents/f_136290_ net/minecraft/server/bossevents/CustomBossEvents/events +FD: net/minecraft/server/chase/ChaseClient/f_195980_ net/minecraft/server/chase/ChaseClient/LOGGER +FD: net/minecraft/server/chase/ChaseClient/f_195981_ net/minecraft/server/chase/ChaseClient/RECONNECT_INTERVAL_SECONDS +FD: net/minecraft/server/chase/ChaseClient/f_195982_ net/minecraft/server/chase/ChaseClient/serverHost +FD: net/minecraft/server/chase/ChaseClient/f_195983_ net/minecraft/server/chase/ChaseClient/serverPort +FD: net/minecraft/server/chase/ChaseClient/f_195984_ net/minecraft/server/chase/ChaseClient/server +FD: net/minecraft/server/chase/ChaseClient/f_195985_ net/minecraft/server/chase/ChaseClient/wantsToRun +FD: net/minecraft/server/chase/ChaseClient/f_195986_ net/minecraft/server/chase/ChaseClient/socket +FD: net/minecraft/server/chase/ChaseClient/f_195987_ net/minecraft/server/chase/ChaseClient/thread +FD: net/minecraft/server/chase/ChaseClient$TeleportTarget/f_196008_ net/minecraft/server/chase/ChaseClient$TeleportTarget/level +FD: net/minecraft/server/chase/ChaseClient$TeleportTarget/f_196009_ net/minecraft/server/chase/ChaseClient$TeleportTarget/pos +FD: net/minecraft/server/chase/ChaseClient$TeleportTarget/f_196010_ net/minecraft/server/chase/ChaseClient$TeleportTarget/rot +FD: net/minecraft/server/chase/ChaseServer/f_196022_ net/minecraft/server/chase/ChaseServer/LOGGER +FD: net/minecraft/server/chase/ChaseServer/f_196023_ net/minecraft/server/chase/ChaseServer/serverBindAddress +FD: net/minecraft/server/chase/ChaseServer/f_196024_ net/minecraft/server/chase/ChaseServer/serverPort +FD: net/minecraft/server/chase/ChaseServer/f_196025_ net/minecraft/server/chase/ChaseServer/playerList +FD: net/minecraft/server/chase/ChaseServer/f_196026_ net/minecraft/server/chase/ChaseServer/broadcastIntervalMs +FD: net/minecraft/server/chase/ChaseServer/f_196027_ net/minecraft/server/chase/ChaseServer/wantsToRun +FD: net/minecraft/server/chase/ChaseServer/f_196028_ net/minecraft/server/chase/ChaseServer/serverSocket +FD: net/minecraft/server/chase/ChaseServer/f_196029_ net/minecraft/server/chase/ChaseServer/clientSockets +FD: net/minecraft/server/chase/ChaseServer$PlayerPosition/f_196044_ net/minecraft/server/chase/ChaseServer$PlayerPosition/dimensionName +FD: net/minecraft/server/chase/ChaseServer$PlayerPosition/f_196045_ net/minecraft/server/chase/ChaseServer$PlayerPosition/x +FD: net/minecraft/server/chase/ChaseServer$PlayerPosition/f_196046_ net/minecraft/server/chase/ChaseServer$PlayerPosition/y +FD: net/minecraft/server/chase/ChaseServer$PlayerPosition/f_196047_ net/minecraft/server/chase/ChaseServer$PlayerPosition/z +FD: net/minecraft/server/chase/ChaseServer$PlayerPosition/f_196048_ net/minecraft/server/chase/ChaseServer$PlayerPosition/yRot +FD: net/minecraft/server/chase/ChaseServer$PlayerPosition/f_196049_ net/minecraft/server/chase/ChaseServer$PlayerPosition/xRot +FD: net/minecraft/server/commands/AdvancementCommands/f_136308_ net/minecraft/server/commands/AdvancementCommands/SUGGEST_ADVANCEMENTS +FD: net/minecraft/server/commands/AdvancementCommands$Action/$VALUES net/minecraft/server/commands/AdvancementCommands$Action/$VALUES +FD: net/minecraft/server/commands/AdvancementCommands$Action/GRANT net/minecraft/server/commands/AdvancementCommands$Action/GRANT +FD: net/minecraft/server/commands/AdvancementCommands$Action/REVOKE net/minecraft/server/commands/AdvancementCommands$Action/REVOKE +FD: net/minecraft/server/commands/AdvancementCommands$Action/f_136366_ net/minecraft/server/commands/AdvancementCommands$Action/key +FD: net/minecraft/server/commands/AdvancementCommands$Mode/$VALUES net/minecraft/server/commands/AdvancementCommands$Mode/$VALUES +FD: net/minecraft/server/commands/AdvancementCommands$Mode/EVERYTHING net/minecraft/server/commands/AdvancementCommands$Mode/EVERYTHING +FD: net/minecraft/server/commands/AdvancementCommands$Mode/FROM net/minecraft/server/commands/AdvancementCommands$Mode/FROM +FD: net/minecraft/server/commands/AdvancementCommands$Mode/ONLY net/minecraft/server/commands/AdvancementCommands$Mode/ONLY +FD: net/minecraft/server/commands/AdvancementCommands$Mode/THROUGH net/minecraft/server/commands/AdvancementCommands$Mode/THROUGH +FD: net/minecraft/server/commands/AdvancementCommands$Mode/UNTIL net/minecraft/server/commands/AdvancementCommands$Mode/UNTIL +FD: net/minecraft/server/commands/AdvancementCommands$Mode/f_136417_ net/minecraft/server/commands/AdvancementCommands$Mode/parents +FD: net/minecraft/server/commands/AdvancementCommands$Mode/f_136418_ net/minecraft/server/commands/AdvancementCommands$Mode/children +FD: net/minecraft/server/commands/AttributeCommand/f_136434_ net/minecraft/server/commands/AttributeCommand/ERROR_NOT_LIVING_ENTITY +FD: net/minecraft/server/commands/AttributeCommand/f_136435_ net/minecraft/server/commands/AttributeCommand/ERROR_NO_SUCH_ATTRIBUTE +FD: net/minecraft/server/commands/AttributeCommand/f_136436_ net/minecraft/server/commands/AttributeCommand/ERROR_NO_SUCH_MODIFIER +FD: net/minecraft/server/commands/AttributeCommand/f_136437_ net/minecraft/server/commands/AttributeCommand/ERROR_MODIFIER_ALREADY_PRESENT +FD: net/minecraft/server/commands/BanIpCommands/f_136524_ net/minecraft/server/commands/BanIpCommands/ERROR_INVALID_IP +FD: net/minecraft/server/commands/BanIpCommands/f_136525_ net/minecraft/server/commands/BanIpCommands/ERROR_ALREADY_BANNED +FD: net/minecraft/server/commands/BanPlayerCommands/f_136556_ net/minecraft/server/commands/BanPlayerCommands/ERROR_ALREADY_BANNED +FD: net/minecraft/server/commands/BossBarCommands/f_136570_ net/minecraft/server/commands/BossBarCommands/SUGGEST_BOSS_BAR +FD: net/minecraft/server/commands/BossBarCommands/f_136571_ net/minecraft/server/commands/BossBarCommands/ERROR_ALREADY_EXISTS +FD: net/minecraft/server/commands/BossBarCommands/f_136572_ net/minecraft/server/commands/BossBarCommands/ERROR_DOESNT_EXIST +FD: net/minecraft/server/commands/BossBarCommands/f_136573_ net/minecraft/server/commands/BossBarCommands/ERROR_NO_PLAYER_CHANGE +FD: net/minecraft/server/commands/BossBarCommands/f_136574_ net/minecraft/server/commands/BossBarCommands/ERROR_NO_NAME_CHANGE +FD: net/minecraft/server/commands/BossBarCommands/f_136575_ net/minecraft/server/commands/BossBarCommands/ERROR_NO_COLOR_CHANGE +FD: net/minecraft/server/commands/BossBarCommands/f_136576_ net/minecraft/server/commands/BossBarCommands/ERROR_NO_STYLE_CHANGE +FD: net/minecraft/server/commands/BossBarCommands/f_136577_ net/minecraft/server/commands/BossBarCommands/ERROR_NO_VALUE_CHANGE +FD: net/minecraft/server/commands/BossBarCommands/f_136578_ net/minecraft/server/commands/BossBarCommands/ERROR_NO_MAX_CHANGE +FD: net/minecraft/server/commands/BossBarCommands/f_136579_ net/minecraft/server/commands/BossBarCommands/ERROR_ALREADY_HIDDEN +FD: net/minecraft/server/commands/BossBarCommands/f_136580_ net/minecraft/server/commands/BossBarCommands/ERROR_ALREADY_VISIBLE +FD: net/minecraft/server/commands/ChaseCommand/f_196068_ net/minecraft/server/commands/ChaseCommand/DIMENSION_NAMES +FD: net/minecraft/server/commands/ChaseCommand/f_196069_ net/minecraft/server/commands/ChaseCommand/DEFAULT_CONNECT_HOST +FD: net/minecraft/server/commands/ChaseCommand/f_196070_ net/minecraft/server/commands/ChaseCommand/DEFAULT_BIND_ADDRESS +FD: net/minecraft/server/commands/ChaseCommand/f_196071_ net/minecraft/server/commands/ChaseCommand/DEFAULT_PORT +FD: net/minecraft/server/commands/ChaseCommand/f_196072_ net/minecraft/server/commands/ChaseCommand/BROADCAST_INTERVAL_MS +FD: net/minecraft/server/commands/ChaseCommand/f_196073_ net/minecraft/server/commands/ChaseCommand/chaseServer +FD: net/minecraft/server/commands/ChaseCommand/f_196074_ net/minecraft/server/commands/ChaseCommand/chaseClient +FD: net/minecraft/server/commands/ClearInventoryCommands/f_136694_ net/minecraft/server/commands/ClearInventoryCommands/ERROR_SINGLE +FD: net/minecraft/server/commands/ClearInventoryCommands/f_136695_ net/minecraft/server/commands/ClearInventoryCommands/ERROR_MULTIPLE +FD: net/minecraft/server/commands/CloneCommands/f_136722_ net/minecraft/server/commands/CloneCommands/FILTER_AIR +FD: net/minecraft/server/commands/CloneCommands/f_136723_ net/minecraft/server/commands/CloneCommands/ERROR_OVERLAP +FD: net/minecraft/server/commands/CloneCommands/f_136724_ net/minecraft/server/commands/CloneCommands/ERROR_AREA_TOO_LARGE +FD: net/minecraft/server/commands/CloneCommands/f_136725_ net/minecraft/server/commands/CloneCommands/ERROR_FAILED +FD: net/minecraft/server/commands/CloneCommands$CloneBlockInfo/f_136779_ net/minecraft/server/commands/CloneCommands$CloneBlockInfo/pos +FD: net/minecraft/server/commands/CloneCommands$CloneBlockInfo/f_136780_ net/minecraft/server/commands/CloneCommands$CloneBlockInfo/state +FD: net/minecraft/server/commands/CloneCommands$CloneBlockInfo/f_136781_ net/minecraft/server/commands/CloneCommands$CloneBlockInfo/tag +FD: net/minecraft/server/commands/CloneCommands$DimensionAndPosition/f_263735_ net/minecraft/server/commands/CloneCommands$DimensionAndPosition/dimension +FD: net/minecraft/server/commands/CloneCommands$DimensionAndPosition/f_263824_ net/minecraft/server/commands/CloneCommands$DimensionAndPosition/position +FD: net/minecraft/server/commands/CloneCommands$Mode/$VALUES net/minecraft/server/commands/CloneCommands$Mode/$VALUES +FD: net/minecraft/server/commands/CloneCommands$Mode/FORCE net/minecraft/server/commands/CloneCommands$Mode/FORCE +FD: net/minecraft/server/commands/CloneCommands$Mode/MOVE net/minecraft/server/commands/CloneCommands$Mode/MOVE +FD: net/minecraft/server/commands/CloneCommands$Mode/NORMAL net/minecraft/server/commands/CloneCommands$Mode/NORMAL +FD: net/minecraft/server/commands/CloneCommands$Mode/f_136789_ net/minecraft/server/commands/CloneCommands$Mode/canOverlap +FD: net/minecraft/server/commands/DamageCommand/f_268498_ net/minecraft/server/commands/DamageCommand/ERROR_INVULNERABLE +FD: net/minecraft/server/commands/DataPackCommand/f_136800_ net/minecraft/server/commands/DataPackCommand/ERROR_UNKNOWN_PACK +FD: net/minecraft/server/commands/DataPackCommand/f_136801_ net/minecraft/server/commands/DataPackCommand/ERROR_PACK_ALREADY_ENABLED +FD: net/minecraft/server/commands/DataPackCommand/f_136802_ net/minecraft/server/commands/DataPackCommand/ERROR_PACK_ALREADY_DISABLED +FD: net/minecraft/server/commands/DataPackCommand/f_136803_ net/minecraft/server/commands/DataPackCommand/SELECTED_PACKS +FD: net/minecraft/server/commands/DataPackCommand/f_136804_ net/minecraft/server/commands/DataPackCommand/UNSELECTED_PACKS +FD: net/minecraft/server/commands/DataPackCommand/f_244087_ net/minecraft/server/commands/DataPackCommand/ERROR_PACK_FEATURES_NOT_ENABLED +FD: net/minecraft/server/commands/DeOpCommands/f_136886_ net/minecraft/server/commands/DeOpCommands/ERROR_NOT_OP +FD: net/minecraft/server/commands/DebugCommand/f_136900_ net/minecraft/server/commands/DebugCommand/LOGGER +FD: net/minecraft/server/commands/DebugCommand/f_136901_ net/minecraft/server/commands/DebugCommand/ERROR_NOT_RUNNING +FD: net/minecraft/server/commands/DebugCommand/f_136902_ net/minecraft/server/commands/DebugCommand/ERROR_ALREADY_RUNNING +FD: net/minecraft/server/commands/DebugCommand$Tracer/f_180074_ net/minecraft/server/commands/DebugCommand$Tracer/INDENT_OFFSET +FD: net/minecraft/server/commands/DebugCommand$Tracer/f_180075_ net/minecraft/server/commands/DebugCommand$Tracer/output +FD: net/minecraft/server/commands/DebugCommand$Tracer/f_180076_ net/minecraft/server/commands/DebugCommand$Tracer/lastIndent +FD: net/minecraft/server/commands/DebugCommand$Tracer/f_180077_ net/minecraft/server/commands/DebugCommand$Tracer/waitingForResult +FD: net/minecraft/server/commands/DebugPathCommand/f_180118_ net/minecraft/server/commands/DebugPathCommand/ERROR_NOT_MOB +FD: net/minecraft/server/commands/DebugPathCommand/f_180119_ net/minecraft/server/commands/DebugPathCommand/ERROR_NO_PATH +FD: net/minecraft/server/commands/DebugPathCommand/f_180120_ net/minecraft/server/commands/DebugPathCommand/ERROR_NOT_COMPLETE +FD: net/minecraft/server/commands/DifficultyCommand/f_136933_ net/minecraft/server/commands/DifficultyCommand/ERROR_ALREADY_DIFFICULT +FD: net/minecraft/server/commands/EffectCommands/f_136949_ net/minecraft/server/commands/EffectCommands/ERROR_GIVE_FAILED +FD: net/minecraft/server/commands/EffectCommands/f_136950_ net/minecraft/server/commands/EffectCommands/ERROR_CLEAR_EVERYTHING_FAILED +FD: net/minecraft/server/commands/EffectCommands/f_136951_ net/minecraft/server/commands/EffectCommands/ERROR_CLEAR_SPECIFIC_FAILED +FD: net/minecraft/server/commands/EnchantCommand/f_137002_ net/minecraft/server/commands/EnchantCommand/ERROR_NOT_LIVING_ENTITY +FD: net/minecraft/server/commands/EnchantCommand/f_137003_ net/minecraft/server/commands/EnchantCommand/ERROR_NO_ITEM +FD: net/minecraft/server/commands/EnchantCommand/f_137004_ net/minecraft/server/commands/EnchantCommand/ERROR_INCOMPATIBLE +FD: net/minecraft/server/commands/EnchantCommand/f_137005_ net/minecraft/server/commands/EnchantCommand/ERROR_LEVEL_TOO_HIGH +FD: net/minecraft/server/commands/EnchantCommand/f_137006_ net/minecraft/server/commands/EnchantCommand/ERROR_NOTHING_HAPPENED +FD: net/minecraft/server/commands/ExecuteCommand/f_137030_ net/minecraft/server/commands/ExecuteCommand/ERROR_AREA_TOO_LARGE +FD: net/minecraft/server/commands/ExecuteCommand/f_137031_ net/minecraft/server/commands/ExecuteCommand/ERROR_CONDITIONAL_FAILED +FD: net/minecraft/server/commands/ExecuteCommand/f_137032_ net/minecraft/server/commands/ExecuteCommand/ERROR_CONDITIONAL_FAILED_COUNT +FD: net/minecraft/server/commands/ExecuteCommand/f_137033_ net/minecraft/server/commands/ExecuteCommand/CALLBACK_CHAINER +FD: net/minecraft/server/commands/ExecuteCommand/f_137034_ net/minecraft/server/commands/ExecuteCommand/SUGGEST_PREDICATE +FD: net/minecraft/server/commands/ExecuteCommand/f_180148_ net/minecraft/server/commands/ExecuteCommand/MAX_TEST_AREA +FD: net/minecraft/server/commands/ExperienceCommand/f_137304_ net/minecraft/server/commands/ExperienceCommand/ERROR_SET_POINTS_INVALID +FD: net/minecraft/server/commands/ExperienceCommand$Type/$VALUES net/minecraft/server/commands/ExperienceCommand$Type/$VALUES +FD: net/minecraft/server/commands/ExperienceCommand$Type/LEVELS net/minecraft/server/commands/ExperienceCommand$Type/LEVELS +FD: net/minecraft/server/commands/ExperienceCommand$Type/POINTS net/minecraft/server/commands/ExperienceCommand$Type/POINTS +FD: net/minecraft/server/commands/ExperienceCommand$Type/f_137344_ net/minecraft/server/commands/ExperienceCommand$Type/add +FD: net/minecraft/server/commands/ExperienceCommand$Type/f_137345_ net/minecraft/server/commands/ExperienceCommand$Type/set +FD: net/minecraft/server/commands/ExperienceCommand$Type/f_137346_ net/minecraft/server/commands/ExperienceCommand$Type/name +FD: net/minecraft/server/commands/ExperienceCommand$Type/f_137347_ net/minecraft/server/commands/ExperienceCommand$Type/query +FD: net/minecraft/server/commands/FillBiomeCommand/f_260575_ net/minecraft/server/commands/FillBiomeCommand/ERROR_VOLUME_TOO_LARGE +FD: net/minecraft/server/commands/FillBiomeCommand/f_260663_ net/minecraft/server/commands/FillBiomeCommand/ERROR_NOT_LOADED +FD: net/minecraft/server/commands/FillCommand/f_137372_ net/minecraft/server/commands/FillCommand/ERROR_AREA_TOO_LARGE +FD: net/minecraft/server/commands/FillCommand/f_137373_ net/minecraft/server/commands/FillCommand/HOLLOW_CORE +FD: net/minecraft/server/commands/FillCommand/f_137374_ net/minecraft/server/commands/FillCommand/ERROR_FAILED +FD: net/minecraft/server/commands/FillCommand$Mode/$VALUES net/minecraft/server/commands/FillCommand$Mode/$VALUES +FD: net/minecraft/server/commands/FillCommand$Mode/DESTROY net/minecraft/server/commands/FillCommand$Mode/DESTROY +FD: net/minecraft/server/commands/FillCommand$Mode/HOLLOW net/minecraft/server/commands/FillCommand$Mode/HOLLOW +FD: net/minecraft/server/commands/FillCommand$Mode/OUTLINE net/minecraft/server/commands/FillCommand$Mode/OUTLINE +FD: net/minecraft/server/commands/FillCommand$Mode/REPLACE net/minecraft/server/commands/FillCommand$Mode/REPLACE +FD: net/minecraft/server/commands/FillCommand$Mode/f_137410_ net/minecraft/server/commands/FillCommand$Mode/filter +FD: net/minecraft/server/commands/ForceLoadCommand/f_137668_ net/minecraft/server/commands/ForceLoadCommand/ERROR_TOO_MANY_CHUNKS +FD: net/minecraft/server/commands/ForceLoadCommand/f_137669_ net/minecraft/server/commands/ForceLoadCommand/ERROR_NOT_TICKING +FD: net/minecraft/server/commands/ForceLoadCommand/f_137670_ net/minecraft/server/commands/ForceLoadCommand/ERROR_ALL_ADDED +FD: net/minecraft/server/commands/ForceLoadCommand/f_137671_ net/minecraft/server/commands/ForceLoadCommand/ERROR_NONE_REMOVED +FD: net/minecraft/server/commands/ForceLoadCommand/f_180227_ net/minecraft/server/commands/ForceLoadCommand/MAX_CHUNK_LIMIT +FD: net/minecraft/server/commands/FunctionCommand/f_137712_ net/minecraft/server/commands/FunctionCommand/SUGGEST_FUNCTION +FD: net/minecraft/server/commands/GameModeCommand/f_180230_ net/minecraft/server/commands/GameModeCommand/PERMISSION_LEVEL +FD: net/minecraft/server/commands/GameRuleCommand$1/f_137760_ net/minecraft/server/commands/GameRuleCommand$1/val$base +FD: net/minecraft/server/commands/GiveCommand/f_180233_ net/minecraft/server/commands/GiveCommand/MAX_ALLOWED_ITEMSTACKS +FD: net/minecraft/server/commands/HelpCommand/f_137785_ net/minecraft/server/commands/HelpCommand/ERROR_FAILED +FD: net/minecraft/server/commands/ItemCommands/f_180236_ net/minecraft/server/commands/ItemCommands/ERROR_TARGET_NOT_A_CONTAINER +FD: net/minecraft/server/commands/ItemCommands/f_180237_ net/minecraft/server/commands/ItemCommands/ERROR_TARGET_INAPPLICABLE_SLOT +FD: net/minecraft/server/commands/ItemCommands/f_180238_ net/minecraft/server/commands/ItemCommands/ERROR_SOURCE_NOT_A_CONTAINER +FD: net/minecraft/server/commands/ItemCommands/f_180239_ net/minecraft/server/commands/ItemCommands/ERROR_SOURCE_INAPPLICABLE_SLOT +FD: net/minecraft/server/commands/ItemCommands/f_180240_ net/minecraft/server/commands/ItemCommands/ERROR_TARGET_NO_CHANGES +FD: net/minecraft/server/commands/ItemCommands/f_180241_ net/minecraft/server/commands/ItemCommands/ERROR_TARGET_NO_CHANGES_KNOWN_ITEM +FD: net/minecraft/server/commands/ItemCommands/f_180242_ net/minecraft/server/commands/ItemCommands/SUGGEST_MODIFIER +FD: net/minecraft/server/commands/JfrCommand/f_183641_ net/minecraft/server/commands/JfrCommand/START_FAILED +FD: net/minecraft/server/commands/JfrCommand/f_183642_ net/minecraft/server/commands/JfrCommand/DUMP_FAILED +FD: net/minecraft/server/commands/LocateCommand/f_214451_ net/minecraft/server/commands/LocateCommand/ERROR_STRUCTURE_NOT_FOUND +FD: net/minecraft/server/commands/LocateCommand/f_214452_ net/minecraft/server/commands/LocateCommand/ERROR_STRUCTURE_INVALID +FD: net/minecraft/server/commands/LocateCommand/f_214453_ net/minecraft/server/commands/LocateCommand/ERROR_BIOME_NOT_FOUND +FD: net/minecraft/server/commands/LocateCommand/f_214455_ net/minecraft/server/commands/LocateCommand/ERROR_POI_NOT_FOUND +FD: net/minecraft/server/commands/LocateCommand/f_214457_ net/minecraft/server/commands/LocateCommand/MAX_STRUCTURE_SEARCH_RADIUS +FD: net/minecraft/server/commands/LocateCommand/f_214458_ net/minecraft/server/commands/LocateCommand/MAX_BIOME_SEARCH_RADIUS +FD: net/minecraft/server/commands/LocateCommand/f_214459_ net/minecraft/server/commands/LocateCommand/BIOME_SAMPLE_RESOLUTION_HORIZONTAL +FD: net/minecraft/server/commands/LocateCommand/f_214460_ net/minecraft/server/commands/LocateCommand/BIOME_SAMPLE_RESOLUTION_VERTICAL +FD: net/minecraft/server/commands/LocateCommand/f_214461_ net/minecraft/server/commands/LocateCommand/POI_SEARCH_RADIUS +FD: net/minecraft/server/commands/LocateCommand/f_262750_ net/minecraft/server/commands/LocateCommand/LOGGER +FD: net/minecraft/server/commands/LootCommand/f_137877_ net/minecraft/server/commands/LootCommand/SUGGEST_LOOT_TABLE +FD: net/minecraft/server/commands/LootCommand/f_137878_ net/minecraft/server/commands/LootCommand/ERROR_NO_HELD_ITEMS +FD: net/minecraft/server/commands/LootCommand/f_137879_ net/minecraft/server/commands/LootCommand/ERROR_NO_LOOT_TABLE +FD: net/minecraft/server/commands/OpCommand/f_138072_ net/minecraft/server/commands/OpCommand/ERROR_ALREADY_OP +FD: net/minecraft/server/commands/PardonCommand/f_138091_ net/minecraft/server/commands/PardonCommand/ERROR_NOT_BANNED +FD: net/minecraft/server/commands/PardonIpCommand/f_138105_ net/minecraft/server/commands/PardonIpCommand/ERROR_INVALID +FD: net/minecraft/server/commands/PardonIpCommand/f_138106_ net/minecraft/server/commands/PardonIpCommand/ERROR_NOT_BANNED +FD: net/minecraft/server/commands/ParticleCommand/f_138120_ net/minecraft/server/commands/ParticleCommand/ERROR_FAILED +FD: net/minecraft/server/commands/PerfCommand/f_180432_ net/minecraft/server/commands/PerfCommand/LOGGER +FD: net/minecraft/server/commands/PerfCommand/f_180433_ net/minecraft/server/commands/PerfCommand/ERROR_NOT_RUNNING +FD: net/minecraft/server/commands/PerfCommand/f_180434_ net/minecraft/server/commands/PerfCommand/ERROR_ALREADY_RUNNING +FD: net/minecraft/server/commands/PlaceCommand/f_214530_ net/minecraft/server/commands/PlaceCommand/ERROR_FEATURE_FAILED +FD: net/minecraft/server/commands/PlaceCommand/f_214531_ net/minecraft/server/commands/PlaceCommand/ERROR_JIGSAW_FAILED +FD: net/minecraft/server/commands/PlaceCommand/f_214532_ net/minecraft/server/commands/PlaceCommand/ERROR_STRUCTURE_FAILED +FD: net/minecraft/server/commands/PlaceCommand/f_214533_ net/minecraft/server/commands/PlaceCommand/ERROR_TEMPLATE_INVALID +FD: net/minecraft/server/commands/PlaceCommand/f_214534_ net/minecraft/server/commands/PlaceCommand/ERROR_TEMPLATE_FAILED +FD: net/minecraft/server/commands/PlaceCommand/f_214535_ net/minecraft/server/commands/PlaceCommand/SUGGEST_TEMPLATES +FD: net/minecraft/server/commands/PlaySoundCommand/f_138149_ net/minecraft/server/commands/PlaySoundCommand/ERROR_TOO_FAR +FD: net/minecraft/server/commands/PublishCommand/f_138181_ net/minecraft/server/commands/PublishCommand/ERROR_FAILED +FD: net/minecraft/server/commands/PublishCommand/f_138182_ net/minecraft/server/commands/PublishCommand/ERROR_ALREADY_PUBLISHED +FD: net/minecraft/server/commands/RecipeCommand/f_138197_ net/minecraft/server/commands/RecipeCommand/ERROR_GIVE_FAILED +FD: net/minecraft/server/commands/RecipeCommand/f_138198_ net/minecraft/server/commands/RecipeCommand/ERROR_TAKE_FAILED +FD: net/minecraft/server/commands/ReloadCommand/f_138220_ net/minecraft/server/commands/ReloadCommand/LOGGER +FD: net/minecraft/server/commands/ResetChunksCommand/f_183662_ net/minecraft/server/commands/ResetChunksCommand/LOGGER +FD: net/minecraft/server/commands/RideCommand/f_263682_ net/minecraft/server/commands/RideCommand/ERROR_ALREADY_RIDING +FD: net/minecraft/server/commands/RideCommand/f_263721_ net/minecraft/server/commands/RideCommand/ERROR_MOUNT_FAILED +FD: net/minecraft/server/commands/RideCommand/f_263778_ net/minecraft/server/commands/RideCommand/ERROR_MOUNTING_PLAYER +FD: net/minecraft/server/commands/RideCommand/f_263780_ net/minecraft/server/commands/RideCommand/ERROR_NOT_RIDING +FD: net/minecraft/server/commands/RideCommand/f_263832_ net/minecraft/server/commands/RideCommand/ERROR_MOUNTING_LOOP +FD: net/minecraft/server/commands/RideCommand/f_268657_ net/minecraft/server/commands/RideCommand/ERROR_WRONG_DIMENSION +FD: net/minecraft/server/commands/SaveAllCommand/f_138269_ net/minecraft/server/commands/SaveAllCommand/ERROR_FAILED +FD: net/minecraft/server/commands/SaveOffCommand/f_138282_ net/minecraft/server/commands/SaveOffCommand/ERROR_ALREADY_OFF +FD: net/minecraft/server/commands/SaveOnCommand/f_138290_ net/minecraft/server/commands/SaveOnCommand/ERROR_ALREADY_ON +FD: net/minecraft/server/commands/ScheduleCommand/f_138415_ net/minecraft/server/commands/ScheduleCommand/ERROR_SAME_TICK +FD: net/minecraft/server/commands/ScheduleCommand/f_138416_ net/minecraft/server/commands/ScheduleCommand/ERROR_CANT_REMOVE +FD: net/minecraft/server/commands/ScheduleCommand/f_138417_ net/minecraft/server/commands/ScheduleCommand/SUGGEST_SCHEDULE +FD: net/minecraft/server/commands/ScoreboardCommand/f_138460_ net/minecraft/server/commands/ScoreboardCommand/ERROR_OBJECTIVE_ALREADY_EXISTS +FD: net/minecraft/server/commands/ScoreboardCommand/f_138461_ net/minecraft/server/commands/ScoreboardCommand/ERROR_DISPLAY_SLOT_ALREADY_EMPTY +FD: net/minecraft/server/commands/ScoreboardCommand/f_138462_ net/minecraft/server/commands/ScoreboardCommand/ERROR_DISPLAY_SLOT_ALREADY_SET +FD: net/minecraft/server/commands/ScoreboardCommand/f_138463_ net/minecraft/server/commands/ScoreboardCommand/ERROR_TRIGGER_ALREADY_ENABLED +FD: net/minecraft/server/commands/ScoreboardCommand/f_138464_ net/minecraft/server/commands/ScoreboardCommand/ERROR_NOT_TRIGGER +FD: net/minecraft/server/commands/ScoreboardCommand/f_138465_ net/minecraft/server/commands/ScoreboardCommand/ERROR_NO_VALUE +FD: net/minecraft/server/commands/SetBlockCommand/f_138597_ net/minecraft/server/commands/SetBlockCommand/ERROR_FAILED +FD: net/minecraft/server/commands/SetBlockCommand$Mode/$VALUES net/minecraft/server/commands/SetBlockCommand$Mode/$VALUES +FD: net/minecraft/server/commands/SetBlockCommand$Mode/DESTROY net/minecraft/server/commands/SetBlockCommand$Mode/DESTROY +FD: net/minecraft/server/commands/SetBlockCommand$Mode/REPLACE net/minecraft/server/commands/SetBlockCommand$Mode/REPLACE +FD: net/minecraft/server/commands/SpawnArmorTrimsCommand/f_265845_ net/minecraft/server/commands/SpawnArmorTrimsCommand/MATERIAL_AND_SLOT_TO_ITEM +FD: net/minecraft/server/commands/SpawnArmorTrimsCommand/f_266001_ net/minecraft/server/commands/SpawnArmorTrimsCommand/TRIM_PATTERN_ORDER +FD: net/minecraft/server/commands/SpawnArmorTrimsCommand/f_266057_ net/minecraft/server/commands/SpawnArmorTrimsCommand/VANILLA_TRIM_MATERIALS +FD: net/minecraft/server/commands/SpawnArmorTrimsCommand/f_266100_ net/minecraft/server/commands/SpawnArmorTrimsCommand/TRIM_MATERIAL_ORDER +FD: net/minecraft/server/commands/SpawnArmorTrimsCommand/f_266107_ net/minecraft/server/commands/SpawnArmorTrimsCommand/VANILLA_TRIM_PATTERNS +FD: net/minecraft/server/commands/SpectateCommand/f_138674_ net/minecraft/server/commands/SpectateCommand/ERROR_SELF +FD: net/minecraft/server/commands/SpectateCommand/f_138675_ net/minecraft/server/commands/SpectateCommand/ERROR_NOT_SPECTATOR +FD: net/minecraft/server/commands/SpreadPlayersCommand/f_138693_ net/minecraft/server/commands/SpreadPlayersCommand/ERROR_FAILED_TO_SPREAD_TEAMS +FD: net/minecraft/server/commands/SpreadPlayersCommand/f_138694_ net/minecraft/server/commands/SpreadPlayersCommand/ERROR_FAILED_TO_SPREAD_ENTITIES +FD: net/minecraft/server/commands/SpreadPlayersCommand/f_180523_ net/minecraft/server/commands/SpreadPlayersCommand/MAX_ITERATION_COUNT +FD: net/minecraft/server/commands/SpreadPlayersCommand/f_201848_ net/minecraft/server/commands/SpreadPlayersCommand/ERROR_INVALID_MAX_HEIGHT +FD: net/minecraft/server/commands/SpreadPlayersCommand$Position/f_138749_ net/minecraft/server/commands/SpreadPlayersCommand$Position/x +FD: net/minecraft/server/commands/SpreadPlayersCommand$Position/f_138750_ net/minecraft/server/commands/SpreadPlayersCommand$Position/z +FD: net/minecraft/server/commands/SummonCommand/f_138810_ net/minecraft/server/commands/SummonCommand/ERROR_FAILED +FD: net/minecraft/server/commands/SummonCommand/f_138811_ net/minecraft/server/commands/SummonCommand/ERROR_DUPLICATE_UUID +FD: net/minecraft/server/commands/SummonCommand/f_138812_ net/minecraft/server/commands/SummonCommand/INVALID_POSITION +FD: net/minecraft/server/commands/TagCommand/f_138833_ net/minecraft/server/commands/TagCommand/ERROR_ADD_FAILED +FD: net/minecraft/server/commands/TagCommand/f_138834_ net/minecraft/server/commands/TagCommand/ERROR_REMOVE_FAILED +FD: net/minecraft/server/commands/TeamCommand/f_138862_ net/minecraft/server/commands/TeamCommand/ERROR_TEAM_ALREADY_EXISTS +FD: net/minecraft/server/commands/TeamCommand/f_138864_ net/minecraft/server/commands/TeamCommand/ERROR_TEAM_ALREADY_EMPTY +FD: net/minecraft/server/commands/TeamCommand/f_138865_ net/minecraft/server/commands/TeamCommand/ERROR_TEAM_ALREADY_NAME +FD: net/minecraft/server/commands/TeamCommand/f_138866_ net/minecraft/server/commands/TeamCommand/ERROR_TEAM_ALREADY_COLOR +FD: net/minecraft/server/commands/TeamCommand/f_138867_ net/minecraft/server/commands/TeamCommand/ERROR_TEAM_ALREADY_FRIENDLYFIRE_ENABLED +FD: net/minecraft/server/commands/TeamCommand/f_138868_ net/minecraft/server/commands/TeamCommand/ERROR_TEAM_ALREADY_FRIENDLYFIRE_DISABLED +FD: net/minecraft/server/commands/TeamCommand/f_138869_ net/minecraft/server/commands/TeamCommand/ERROR_TEAM_ALREADY_FRIENDLYINVISIBLES_ENABLED +FD: net/minecraft/server/commands/TeamCommand/f_138870_ net/minecraft/server/commands/TeamCommand/ERROR_TEAM_ALREADY_FRIENDLYINVISIBLES_DISABLED +FD: net/minecraft/server/commands/TeamCommand/f_138871_ net/minecraft/server/commands/TeamCommand/ERROR_TEAM_NAMETAG_VISIBLITY_UNCHANGED +FD: net/minecraft/server/commands/TeamCommand/f_138872_ net/minecraft/server/commands/TeamCommand/ERROR_TEAM_DEATH_MESSAGE_VISIBLITY_UNCHANGED +FD: net/minecraft/server/commands/TeamCommand/f_138873_ net/minecraft/server/commands/TeamCommand/ERROR_TEAM_COLLISION_UNCHANGED +FD: net/minecraft/server/commands/TeamMsgCommand/f_138996_ net/minecraft/server/commands/TeamMsgCommand/SUGGEST_STYLE +FD: net/minecraft/server/commands/TeamMsgCommand/f_138997_ net/minecraft/server/commands/TeamMsgCommand/ERROR_NOT_ON_TEAM +FD: net/minecraft/server/commands/TeleportCommand/f_139006_ net/minecraft/server/commands/TeleportCommand/INVALID_POSITION +FD: net/minecraft/server/commands/TeleportCommand$LookAt/f_139052_ net/minecraft/server/commands/TeleportCommand$LookAt/position +FD: net/minecraft/server/commands/TeleportCommand$LookAt/f_139053_ net/minecraft/server/commands/TeleportCommand$LookAt/entity +FD: net/minecraft/server/commands/TeleportCommand$LookAt/f_139054_ net/minecraft/server/commands/TeleportCommand$LookAt/anchor +FD: net/minecraft/server/commands/TriggerCommand/f_139135_ net/minecraft/server/commands/TriggerCommand/ERROR_NOT_PRIMED +FD: net/minecraft/server/commands/TriggerCommand/f_139136_ net/minecraft/server/commands/TriggerCommand/ERROR_INVALID_OBJECTIVE +FD: net/minecraft/server/commands/WeatherCommand/f_142787_ net/minecraft/server/commands/WeatherCommand/DEFAULT_TIME +FD: net/minecraft/server/commands/WhitelistCommand/f_139191_ net/minecraft/server/commands/WhitelistCommand/ERROR_ALREADY_ENABLED +FD: net/minecraft/server/commands/WhitelistCommand/f_139192_ net/minecraft/server/commands/WhitelistCommand/ERROR_ALREADY_DISABLED +FD: net/minecraft/server/commands/WhitelistCommand/f_139193_ net/minecraft/server/commands/WhitelistCommand/ERROR_ALREADY_WHITELISTED +FD: net/minecraft/server/commands/WhitelistCommand/f_139194_ net/minecraft/server/commands/WhitelistCommand/ERROR_NOT_WHITELISTED +FD: net/minecraft/server/commands/WorldBorderCommand/f_139237_ net/minecraft/server/commands/WorldBorderCommand/ERROR_SAME_CENTER +FD: net/minecraft/server/commands/WorldBorderCommand/f_139238_ net/minecraft/server/commands/WorldBorderCommand/ERROR_SAME_SIZE +FD: net/minecraft/server/commands/WorldBorderCommand/f_139239_ net/minecraft/server/commands/WorldBorderCommand/ERROR_TOO_SMALL +FD: net/minecraft/server/commands/WorldBorderCommand/f_139240_ net/minecraft/server/commands/WorldBorderCommand/ERROR_TOO_BIG +FD: net/minecraft/server/commands/WorldBorderCommand/f_139241_ net/minecraft/server/commands/WorldBorderCommand/ERROR_SAME_WARNING_TIME +FD: net/minecraft/server/commands/WorldBorderCommand/f_139242_ net/minecraft/server/commands/WorldBorderCommand/ERROR_SAME_WARNING_DISTANCE +FD: net/minecraft/server/commands/WorldBorderCommand/f_139243_ net/minecraft/server/commands/WorldBorderCommand/ERROR_SAME_DAMAGE_BUFFER +FD: net/minecraft/server/commands/WorldBorderCommand/f_139244_ net/minecraft/server/commands/WorldBorderCommand/ERROR_SAME_DAMAGE_AMOUNT +FD: net/minecraft/server/commands/WorldBorderCommand/f_196554_ net/minecraft/server/commands/WorldBorderCommand/ERROR_TOO_FAR_OUT +FD: net/minecraft/server/commands/data/BlockDataAccessor/f_139291_ net/minecraft/server/commands/data/BlockDataAccessor/PROVIDER +FD: net/minecraft/server/commands/data/BlockDataAccessor/f_139292_ net/minecraft/server/commands/data/BlockDataAccessor/ERROR_NOT_A_BLOCK_ENTITY +FD: net/minecraft/server/commands/data/BlockDataAccessor/f_139293_ net/minecraft/server/commands/data/BlockDataAccessor/entity +FD: net/minecraft/server/commands/data/BlockDataAccessor/f_139294_ net/minecraft/server/commands/data/BlockDataAccessor/pos +FD: net/minecraft/server/commands/data/BlockDataAccessor$1/f_139312_ net/minecraft/server/commands/data/BlockDataAccessor$1/val$argPrefix +FD: net/minecraft/server/commands/data/DataCommands/f_139349_ net/minecraft/server/commands/data/DataCommands/ALL_PROVIDERS +FD: net/minecraft/server/commands/data/DataCommands/f_139350_ net/minecraft/server/commands/data/DataCommands/TARGET_PROVIDERS +FD: net/minecraft/server/commands/data/DataCommands/f_139351_ net/minecraft/server/commands/data/DataCommands/SOURCE_PROVIDERS +FD: net/minecraft/server/commands/data/DataCommands/f_139352_ net/minecraft/server/commands/data/DataCommands/ERROR_MERGE_UNCHANGED +FD: net/minecraft/server/commands/data/DataCommands/f_139353_ net/minecraft/server/commands/data/DataCommands/ERROR_GET_NOT_NUMBER +FD: net/minecraft/server/commands/data/DataCommands/f_139354_ net/minecraft/server/commands/data/DataCommands/ERROR_GET_NON_EXISTENT +FD: net/minecraft/server/commands/data/DataCommands/f_139355_ net/minecraft/server/commands/data/DataCommands/ERROR_MULTIPLE_TAGS +FD: net/minecraft/server/commands/data/DataCommands/f_139357_ net/minecraft/server/commands/data/DataCommands/ERROR_EXPECTED_OBJECT +FD: net/minecraft/server/commands/data/DataCommands/f_263767_ net/minecraft/server/commands/data/DataCommands/ERROR_EXPECTED_VALUE +FD: net/minecraft/server/commands/data/DataCommands/f_287793_ net/minecraft/server/commands/data/DataCommands/ERROR_INVALID_SUBSTRING +FD: net/minecraft/server/commands/data/EntityDataAccessor/f_139505_ net/minecraft/server/commands/data/EntityDataAccessor/PROVIDER +FD: net/minecraft/server/commands/data/EntityDataAccessor/f_139506_ net/minecraft/server/commands/data/EntityDataAccessor/ERROR_NO_PLAYERS +FD: net/minecraft/server/commands/data/EntityDataAccessor/f_139507_ net/minecraft/server/commands/data/EntityDataAccessor/entity +FD: net/minecraft/server/commands/data/EntityDataAccessor$1/f_139523_ net/minecraft/server/commands/data/EntityDataAccessor$1/val$arg +FD: net/minecraft/server/commands/data/StorageDataAccessor/f_139531_ net/minecraft/server/commands/data/StorageDataAccessor/PROVIDER +FD: net/minecraft/server/commands/data/StorageDataAccessor/f_139532_ net/minecraft/server/commands/data/StorageDataAccessor/SUGGEST_STORAGE +FD: net/minecraft/server/commands/data/StorageDataAccessor/f_139533_ net/minecraft/server/commands/data/StorageDataAccessor/storage +FD: net/minecraft/server/commands/data/StorageDataAccessor/f_139534_ net/minecraft/server/commands/data/StorageDataAccessor/id +FD: net/minecraft/server/commands/data/StorageDataAccessor$1/f_139563_ net/minecraft/server/commands/data/StorageDataAccessor$1/val$arg +FD: net/minecraft/server/dedicated/DedicatedPlayerList/f_139571_ net/minecraft/server/dedicated/DedicatedPlayerList/LOGGER +FD: net/minecraft/server/dedicated/DedicatedServer/f_139598_ net/minecraft/server/dedicated/DedicatedServer/LOGGER +FD: net/minecraft/server/dedicated/DedicatedServer/f_139600_ net/minecraft/server/dedicated/DedicatedServer/consoleInput +FD: net/minecraft/server/dedicated/DedicatedServer/f_139601_ net/minecraft/server/dedicated/DedicatedServer/queryThreadGs4 +FD: net/minecraft/server/dedicated/DedicatedServer/f_139602_ net/minecraft/server/dedicated/DedicatedServer/rconConsoleSource +FD: net/minecraft/server/dedicated/DedicatedServer/f_139603_ net/minecraft/server/dedicated/DedicatedServer/rconThread +FD: net/minecraft/server/dedicated/DedicatedServer/f_139604_ net/minecraft/server/dedicated/DedicatedServer/settings +FD: net/minecraft/server/dedicated/DedicatedServer/f_139605_ net/minecraft/server/dedicated/DedicatedServer/gui +FD: net/minecraft/server/dedicated/DedicatedServer/f_139606_ net/minecraft/server/dedicated/DedicatedServer/textFilterClient +FD: net/minecraft/server/dedicated/DedicatedServer/f_142864_ net/minecraft/server/dedicated/DedicatedServer/CONVERSION_RETRY_DELAY_MS +FD: net/minecraft/server/dedicated/DedicatedServer/f_142865_ net/minecraft/server/dedicated/DedicatedServer/CONVERSION_RETRIES +FD: net/minecraft/server/dedicated/DedicatedServer$1/f_139700_ net/minecraft/server/dedicated/DedicatedServer$1/this$0 +FD: net/minecraft/server/dedicated/DedicatedServerProperties/f_139705_ net/minecraft/server/dedicated/DedicatedServerProperties/spawnMonsters +FD: net/minecraft/server/dedicated/DedicatedServerProperties/f_139707_ net/minecraft/server/dedicated/DedicatedServerProperties/useNativeTransport +FD: net/minecraft/server/dedicated/DedicatedServerProperties/f_139708_ net/minecraft/server/dedicated/DedicatedServerProperties/enableCommandBlock +FD: net/minecraft/server/dedicated/DedicatedServerProperties/f_139709_ net/minecraft/server/dedicated/DedicatedServerProperties/spawnProtection +FD: net/minecraft/server/dedicated/DedicatedServerProperties/f_139710_ net/minecraft/server/dedicated/DedicatedServerProperties/opPermissionLevel +FD: net/minecraft/server/dedicated/DedicatedServerProperties/f_139711_ net/minecraft/server/dedicated/DedicatedServerProperties/functionPermissionLevel +FD: net/minecraft/server/dedicated/DedicatedServerProperties/f_139712_ net/minecraft/server/dedicated/DedicatedServerProperties/maxTickTime +FD: net/minecraft/server/dedicated/DedicatedServerProperties/f_139713_ net/minecraft/server/dedicated/DedicatedServerProperties/rateLimitPacketsPerSecond +FD: net/minecraft/server/dedicated/DedicatedServerProperties/f_139714_ net/minecraft/server/dedicated/DedicatedServerProperties/viewDistance +FD: net/minecraft/server/dedicated/DedicatedServerProperties/f_139715_ net/minecraft/server/dedicated/DedicatedServerProperties/maxPlayers +FD: net/minecraft/server/dedicated/DedicatedServerProperties/f_139716_ net/minecraft/server/dedicated/DedicatedServerProperties/networkCompressionThreshold +FD: net/minecraft/server/dedicated/DedicatedServerProperties/f_139717_ net/minecraft/server/dedicated/DedicatedServerProperties/broadcastRconToOps +FD: net/minecraft/server/dedicated/DedicatedServerProperties/f_139718_ net/minecraft/server/dedicated/DedicatedServerProperties/broadcastConsoleToOps +FD: net/minecraft/server/dedicated/DedicatedServerProperties/f_139719_ net/minecraft/server/dedicated/DedicatedServerProperties/maxWorldSize +FD: net/minecraft/server/dedicated/DedicatedServerProperties/f_139720_ net/minecraft/server/dedicated/DedicatedServerProperties/syncChunkWrites +FD: net/minecraft/server/dedicated/DedicatedServerProperties/f_139721_ net/minecraft/server/dedicated/DedicatedServerProperties/enableJmxMonitoring +FD: net/minecraft/server/dedicated/DedicatedServerProperties/f_139722_ net/minecraft/server/dedicated/DedicatedServerProperties/enableStatus +FD: net/minecraft/server/dedicated/DedicatedServerProperties/f_139723_ net/minecraft/server/dedicated/DedicatedServerProperties/entityBroadcastRangePercentage +FD: net/minecraft/server/dedicated/DedicatedServerProperties/f_139724_ net/minecraft/server/dedicated/DedicatedServerProperties/textFilteringConfig +FD: net/minecraft/server/dedicated/DedicatedServerProperties/f_139725_ net/minecraft/server/dedicated/DedicatedServerProperties/playerIdleTimeout +FD: net/minecraft/server/dedicated/DedicatedServerProperties/f_139726_ net/minecraft/server/dedicated/DedicatedServerProperties/whiteList +FD: net/minecraft/server/dedicated/DedicatedServerProperties/f_139728_ net/minecraft/server/dedicated/DedicatedServerProperties/onlineMode +FD: net/minecraft/server/dedicated/DedicatedServerProperties/f_139729_ net/minecraft/server/dedicated/DedicatedServerProperties/preventProxyConnections +FD: net/minecraft/server/dedicated/DedicatedServerProperties/f_139730_ net/minecraft/server/dedicated/DedicatedServerProperties/serverIp +FD: net/minecraft/server/dedicated/DedicatedServerProperties/f_139731_ net/minecraft/server/dedicated/DedicatedServerProperties/spawnAnimals +FD: net/minecraft/server/dedicated/DedicatedServerProperties/f_139732_ net/minecraft/server/dedicated/DedicatedServerProperties/spawnNpcs +FD: net/minecraft/server/dedicated/DedicatedServerProperties/f_139733_ net/minecraft/server/dedicated/DedicatedServerProperties/pvp +FD: net/minecraft/server/dedicated/DedicatedServerProperties/f_139734_ net/minecraft/server/dedicated/DedicatedServerProperties/allowFlight +FD: net/minecraft/server/dedicated/DedicatedServerProperties/f_139736_ net/minecraft/server/dedicated/DedicatedServerProperties/motd +FD: net/minecraft/server/dedicated/DedicatedServerProperties/f_139737_ net/minecraft/server/dedicated/DedicatedServerProperties/forceGameMode +FD: net/minecraft/server/dedicated/DedicatedServerProperties/f_139738_ net/minecraft/server/dedicated/DedicatedServerProperties/enforceWhitelist +FD: net/minecraft/server/dedicated/DedicatedServerProperties/f_139739_ net/minecraft/server/dedicated/DedicatedServerProperties/difficulty +FD: net/minecraft/server/dedicated/DedicatedServerProperties/f_139740_ net/minecraft/server/dedicated/DedicatedServerProperties/gamemode +FD: net/minecraft/server/dedicated/DedicatedServerProperties/f_139741_ net/minecraft/server/dedicated/DedicatedServerProperties/levelName +FD: net/minecraft/server/dedicated/DedicatedServerProperties/f_139742_ net/minecraft/server/dedicated/DedicatedServerProperties/serverPort +FD: net/minecraft/server/dedicated/DedicatedServerProperties/f_139744_ net/minecraft/server/dedicated/DedicatedServerProperties/announcePlayerAchievements +FD: net/minecraft/server/dedicated/DedicatedServerProperties/f_139745_ net/minecraft/server/dedicated/DedicatedServerProperties/enableQuery +FD: net/minecraft/server/dedicated/DedicatedServerProperties/f_139746_ net/minecraft/server/dedicated/DedicatedServerProperties/queryPort +FD: net/minecraft/server/dedicated/DedicatedServerProperties/f_139747_ net/minecraft/server/dedicated/DedicatedServerProperties/enableRcon +FD: net/minecraft/server/dedicated/DedicatedServerProperties/f_139748_ net/minecraft/server/dedicated/DedicatedServerProperties/rconPort +FD: net/minecraft/server/dedicated/DedicatedServerProperties/f_139749_ net/minecraft/server/dedicated/DedicatedServerProperties/rconPassword +FD: net/minecraft/server/dedicated/DedicatedServerProperties/f_139752_ net/minecraft/server/dedicated/DedicatedServerProperties/hardcore +FD: net/minecraft/server/dedicated/DedicatedServerProperties/f_139753_ net/minecraft/server/dedicated/DedicatedServerProperties/allowNether +FD: net/minecraft/server/dedicated/DedicatedServerProperties/f_183715_ net/minecraft/server/dedicated/DedicatedServerProperties/simulationDistance +FD: net/minecraft/server/dedicated/DedicatedServerProperties/f_183716_ net/minecraft/server/dedicated/DedicatedServerProperties/hideOnlinePlayers +FD: net/minecraft/server/dedicated/DedicatedServerProperties/f_214801_ net/minecraft/server/dedicated/DedicatedServerProperties/maxChainedNeighborUpdates +FD: net/minecraft/server/dedicated/DedicatedServerProperties/f_214802_ net/minecraft/server/dedicated/DedicatedServerProperties/serverResourcePackInfo +FD: net/minecraft/server/dedicated/DedicatedServerProperties/f_214804_ net/minecraft/server/dedicated/DedicatedServerProperties/enforceSecureProfile +FD: net/minecraft/server/dedicated/DedicatedServerProperties/f_214805_ net/minecraft/server/dedicated/DedicatedServerProperties/LOGGER +FD: net/minecraft/server/dedicated/DedicatedServerProperties/f_214806_ net/minecraft/server/dedicated/DedicatedServerProperties/SHA1 +FD: net/minecraft/server/dedicated/DedicatedServerProperties/f_243824_ net/minecraft/server/dedicated/DedicatedServerProperties/worldOptions +FD: net/minecraft/server/dedicated/DedicatedServerProperties/f_243988_ net/minecraft/server/dedicated/DedicatedServerProperties/COMMA_SPLITTER +FD: net/minecraft/server/dedicated/DedicatedServerProperties/f_243997_ net/minecraft/server/dedicated/DedicatedServerProperties/initialDataPackConfiguration +FD: net/minecraft/server/dedicated/DedicatedServerProperties/f_244504_ net/minecraft/server/dedicated/DedicatedServerProperties/worldDimensionData +FD: net/minecraft/server/dedicated/DedicatedServerProperties$WorldDimensionData/f_243780_ net/minecraft/server/dedicated/DedicatedServerProperties$WorldDimensionData/levelType +FD: net/minecraft/server/dedicated/DedicatedServerProperties$WorldDimensionData/f_244358_ net/minecraft/server/dedicated/DedicatedServerProperties$WorldDimensionData/LEGACY_PRESET_NAMES +FD: net/minecraft/server/dedicated/DedicatedServerProperties$WorldDimensionData/f_244404_ net/minecraft/server/dedicated/DedicatedServerProperties$WorldDimensionData/generatorSettings +FD: net/minecraft/server/dedicated/DedicatedServerSettings/f_139772_ net/minecraft/server/dedicated/DedicatedServerSettings/source +FD: net/minecraft/server/dedicated/DedicatedServerSettings/f_139773_ net/minecraft/server/dedicated/DedicatedServerSettings/properties +FD: net/minecraft/server/dedicated/ServerWatchdog/f_139781_ net/minecraft/server/dedicated/ServerWatchdog/LOGGER +FD: net/minecraft/server/dedicated/ServerWatchdog/f_139782_ net/minecraft/server/dedicated/ServerWatchdog/server +FD: net/minecraft/server/dedicated/ServerWatchdog/f_139783_ net/minecraft/server/dedicated/ServerWatchdog/maxTickTime +FD: net/minecraft/server/dedicated/ServerWatchdog/f_142880_ net/minecraft/server/dedicated/ServerWatchdog/MAX_SHUTDOWN_TIME +FD: net/minecraft/server/dedicated/ServerWatchdog/f_142881_ net/minecraft/server/dedicated/ServerWatchdog/SHUTDOWN_STATUS +FD: net/minecraft/server/dedicated/ServerWatchdog$1/f_139793_ net/minecraft/server/dedicated/ServerWatchdog$1/this$0 +FD: net/minecraft/server/dedicated/Settings/f_139797_ net/minecraft/server/dedicated/Settings/LOGGER +FD: net/minecraft/server/dedicated/Settings/f_139798_ net/minecraft/server/dedicated/Settings/properties +FD: net/minecraft/server/dedicated/Settings$MutableValue/f_139880_ net/minecraft/server/dedicated/Settings$MutableValue/this$0 +FD: net/minecraft/server/dedicated/Settings$MutableValue/f_139881_ net/minecraft/server/dedicated/Settings$MutableValue/key +FD: net/minecraft/server/dedicated/Settings$MutableValue/f_139882_ net/minecraft/server/dedicated/Settings$MutableValue/value +FD: net/minecraft/server/dedicated/Settings$MutableValue/f_139883_ net/minecraft/server/dedicated/Settings$MutableValue/serializer +FD: net/minecraft/server/gui/MinecraftServerGui/f_139899_ net/minecraft/server/gui/MinecraftServerGui/MONOSPACED +FD: net/minecraft/server/gui/MinecraftServerGui/f_139900_ net/minecraft/server/gui/MinecraftServerGui/LOGGER +FD: net/minecraft/server/gui/MinecraftServerGui/f_139901_ net/minecraft/server/gui/MinecraftServerGui/server +FD: net/minecraft/server/gui/MinecraftServerGui/f_139902_ net/minecraft/server/gui/MinecraftServerGui/logAppenderThread +FD: net/minecraft/server/gui/MinecraftServerGui/f_139903_ net/minecraft/server/gui/MinecraftServerGui/finalizers +FD: net/minecraft/server/gui/MinecraftServerGui/f_139904_ net/minecraft/server/gui/MinecraftServerGui/isClosing +FD: net/minecraft/server/gui/MinecraftServerGui/f_142884_ net/minecraft/server/gui/MinecraftServerGui/TITLE +FD: net/minecraft/server/gui/MinecraftServerGui/f_142885_ net/minecraft/server/gui/MinecraftServerGui/SHUTDOWN_TITLE +FD: net/minecraft/server/gui/MinecraftServerGui$1/f_139936_ net/minecraft/server/gui/MinecraftServerGui$1/val$gui +FD: net/minecraft/server/gui/MinecraftServerGui$1/f_139937_ net/minecraft/server/gui/MinecraftServerGui$1/val$frame +FD: net/minecraft/server/gui/MinecraftServerGui$1/f_139938_ net/minecraft/server/gui/MinecraftServerGui$1/val$server +FD: net/minecraft/server/gui/MinecraftServerGui$2/f_139945_ net/minecraft/server/gui/MinecraftServerGui$2/this$0 +FD: net/minecraft/server/gui/PlayerListComponent/f_139950_ net/minecraft/server/gui/PlayerListComponent/server +FD: net/minecraft/server/gui/PlayerListComponent/f_139951_ net/minecraft/server/gui/PlayerListComponent/tickCount +FD: net/minecraft/server/gui/StatsComponent/f_139955_ net/minecraft/server/gui/StatsComponent/DECIMAL_FORMAT +FD: net/minecraft/server/gui/StatsComponent/f_139956_ net/minecraft/server/gui/StatsComponent/values +FD: net/minecraft/server/gui/StatsComponent/f_139957_ net/minecraft/server/gui/StatsComponent/vp +FD: net/minecraft/server/gui/StatsComponent/f_139958_ net/minecraft/server/gui/StatsComponent/msgs +FD: net/minecraft/server/gui/StatsComponent/f_139959_ net/minecraft/server/gui/StatsComponent/server +FD: net/minecraft/server/gui/StatsComponent/f_139960_ net/minecraft/server/gui/StatsComponent/timer +FD: net/minecraft/server/level/BlockDestructionProgress/f_139974_ net/minecraft/server/level/BlockDestructionProgress/id +FD: net/minecraft/server/level/BlockDestructionProgress/f_139975_ net/minecraft/server/level/BlockDestructionProgress/pos +FD: net/minecraft/server/level/BlockDestructionProgress/f_139976_ net/minecraft/server/level/BlockDestructionProgress/progress +FD: net/minecraft/server/level/BlockDestructionProgress/f_139977_ net/minecraft/server/level/BlockDestructionProgress/updatedRenderTick +FD: net/minecraft/server/level/ChunkHolder/f_139995_ net/minecraft/server/level/ChunkHolder/UNLOADED_CHUNK +FD: net/minecraft/server/level/ChunkHolder/f_139996_ net/minecraft/server/level/ChunkHolder/UNLOADED_CHUNK_FUTURE +FD: net/minecraft/server/level/ChunkHolder/f_139997_ net/minecraft/server/level/ChunkHolder/UNLOADED_LEVEL_CHUNK +FD: net/minecraft/server/level/ChunkHolder/f_139998_ net/minecraft/server/level/ChunkHolder/UNLOADED_LEVEL_CHUNK_FUTURE +FD: net/minecraft/server/level/ChunkHolder/f_139999_ net/minecraft/server/level/ChunkHolder/CHUNK_STATUSES +FD: net/minecraft/server/level/ChunkHolder/f_140001_ net/minecraft/server/level/ChunkHolder/futures +FD: net/minecraft/server/level/ChunkHolder/f_140002_ net/minecraft/server/level/ChunkHolder/fullChunkFuture +FD: net/minecraft/server/level/ChunkHolder/f_140003_ net/minecraft/server/level/ChunkHolder/tickingChunkFuture +FD: net/minecraft/server/level/ChunkHolder/f_140004_ net/minecraft/server/level/ChunkHolder/entityTickingChunkFuture +FD: net/minecraft/server/level/ChunkHolder/f_140005_ net/minecraft/server/level/ChunkHolder/chunkToSave +FD: net/minecraft/server/level/ChunkHolder/f_140006_ net/minecraft/server/level/ChunkHolder/oldTicketLevel +FD: net/minecraft/server/level/ChunkHolder/f_140007_ net/minecraft/server/level/ChunkHolder/ticketLevel +FD: net/minecraft/server/level/ChunkHolder/f_140008_ net/minecraft/server/level/ChunkHolder/queueLevel +FD: net/minecraft/server/level/ChunkHolder/f_140009_ net/minecraft/server/level/ChunkHolder/pos +FD: net/minecraft/server/level/ChunkHolder/f_140010_ net/minecraft/server/level/ChunkHolder/hasChangedSections +FD: net/minecraft/server/level/ChunkHolder/f_140011_ net/minecraft/server/level/ChunkHolder/changedBlocksPerSection +FD: net/minecraft/server/level/ChunkHolder/f_140012_ net/minecraft/server/level/ChunkHolder/blockChangedLightSectionFilter +FD: net/minecraft/server/level/ChunkHolder/f_140013_ net/minecraft/server/level/ChunkHolder/skyChangedLightSectionFilter +FD: net/minecraft/server/level/ChunkHolder/f_140014_ net/minecraft/server/level/ChunkHolder/lightEngine +FD: net/minecraft/server/level/ChunkHolder/f_140015_ net/minecraft/server/level/ChunkHolder/onLevelChange +FD: net/minecraft/server/level/ChunkHolder/f_140016_ net/minecraft/server/level/ChunkHolder/playerProvider +FD: net/minecraft/server/level/ChunkHolder/f_140017_ net/minecraft/server/level/ChunkHolder/wasAccessibleSinceLastSave +FD: net/minecraft/server/level/ChunkHolder/f_142981_ net/minecraft/server/level/ChunkHolder/pendingFullStateConfirmation +FD: net/minecraft/server/level/ChunkHolder/f_142983_ net/minecraft/server/level/ChunkHolder/levelHeightAccessor +FD: net/minecraft/server/level/ChunkHolder/f_142984_ net/minecraft/server/level/ChunkHolder/chunkToSaveHistory +FD: net/minecraft/server/level/ChunkHolder/f_203750_ net/minecraft/server/level/ChunkHolder/NOT_DONE_YET +FD: net/minecraft/server/level/ChunkHolder$1/f_140097_ net/minecraft/server/level/ChunkHolder$1/this$0 +FD: net/minecraft/server/level/ChunkHolder$ChunkLoadingFailure/f_140101_ net/minecraft/server/level/ChunkHolder$ChunkLoadingFailure/UNLOADED +FD: net/minecraft/server/level/ChunkHolder$ChunkSaveDebug/f_143023_ net/minecraft/server/level/ChunkHolder$ChunkSaveDebug/thread +FD: net/minecraft/server/level/ChunkHolder$ChunkSaveDebug/f_143024_ net/minecraft/server/level/ChunkHolder$ChunkSaveDebug/future +FD: net/minecraft/server/level/ChunkHolder$ChunkSaveDebug/f_143025_ net/minecraft/server/level/ChunkHolder$ChunkSaveDebug/source +FD: net/minecraft/server/level/ChunkLevel/f_286937_ net/minecraft/server/level/ChunkLevel/ENTITY_TICKING_LEVEL +FD: net/minecraft/server/level/ChunkLevel/f_286967_ net/minecraft/server/level/ChunkLevel/MAX_LEVEL +FD: net/minecraft/server/level/ChunkLevel/f_286976_ net/minecraft/server/level/ChunkLevel/BLOCK_TICKING_LEVEL +FD: net/minecraft/server/level/ChunkLevel/f_287007_ net/minecraft/server/level/ChunkLevel/FULL_CHUNK_LEVEL +FD: net/minecraft/server/level/ChunkLevel$1/f_286966_ net/minecraft/server/level/ChunkLevel$1/$SwitchMap$net$minecraft$server$level$FullChunkStatus +FD: net/minecraft/server/level/ChunkMap/f_140125_ net/minecraft/server/level/ChunkMap/unloadQueue +FD: net/minecraft/server/level/ChunkMap/f_140126_ net/minecraft/server/level/ChunkMap/viewDistance +FD: net/minecraft/server/level/ChunkMap/f_140128_ net/minecraft/server/level/ChunkMap/LOGGER +FD: net/minecraft/server/level/ChunkMap/f_140129_ net/minecraft/server/level/ChunkMap/updatingChunkMap +FD: net/minecraft/server/level/ChunkMap/f_140130_ net/minecraft/server/level/ChunkMap/visibleChunkMap +FD: net/minecraft/server/level/ChunkMap/f_140131_ net/minecraft/server/level/ChunkMap/pendingUnloads +FD: net/minecraft/server/level/ChunkMap/f_140132_ net/minecraft/server/level/ChunkMap/entitiesInLevel +FD: net/minecraft/server/level/ChunkMap/f_140133_ net/minecraft/server/level/ChunkMap/level +FD: net/minecraft/server/level/ChunkMap/f_140134_ net/minecraft/server/level/ChunkMap/lightEngine +FD: net/minecraft/server/level/ChunkMap/f_140135_ net/minecraft/server/level/ChunkMap/mainThreadExecutor +FD: net/minecraft/server/level/ChunkMap/f_140136_ net/minecraft/server/level/ChunkMap/generator +FD: net/minecraft/server/level/ChunkMap/f_140137_ net/minecraft/server/level/ChunkMap/overworldDataStorage +FD: net/minecraft/server/level/ChunkMap/f_140138_ net/minecraft/server/level/ChunkMap/poiManager +FD: net/minecraft/server/level/ChunkMap/f_140139_ net/minecraft/server/level/ChunkMap/toDrop +FD: net/minecraft/server/level/ChunkMap/f_140140_ net/minecraft/server/level/ChunkMap/modified +FD: net/minecraft/server/level/ChunkMap/f_140141_ net/minecraft/server/level/ChunkMap/queueSorter +FD: net/minecraft/server/level/ChunkMap/f_140142_ net/minecraft/server/level/ChunkMap/worldgenMailbox +FD: net/minecraft/server/level/ChunkMap/f_140143_ net/minecraft/server/level/ChunkMap/mainThreadMailbox +FD: net/minecraft/server/level/ChunkMap/f_140144_ net/minecraft/server/level/ChunkMap/progressListener +FD: net/minecraft/server/level/ChunkMap/f_140145_ net/minecraft/server/level/ChunkMap/distanceManager +FD: net/minecraft/server/level/ChunkMap/f_140146_ net/minecraft/server/level/ChunkMap/tickingGenerated +FD: net/minecraft/server/level/ChunkMap/f_140149_ net/minecraft/server/level/ChunkMap/playerMap +FD: net/minecraft/server/level/ChunkMap/f_140150_ net/minecraft/server/level/ChunkMap/entityMap +FD: net/minecraft/server/level/ChunkMap/f_140151_ net/minecraft/server/level/ChunkMap/chunkTypeCache +FD: net/minecraft/server/level/ChunkMap/f_143031_ net/minecraft/server/level/ChunkMap/chunkStatusListener +FD: net/minecraft/server/level/ChunkMap/f_143032_ net/minecraft/server/level/ChunkMap/MAX_VIEW_DISTANCE +FD: net/minecraft/server/level/ChunkMap/f_143033_ net/minecraft/server/level/ChunkMap/FORCED_TICKET_LEVEL +FD: net/minecraft/server/level/ChunkMap/f_143034_ net/minecraft/server/level/ChunkMap/CHUNK_TYPE_REPLACEABLE +FD: net/minecraft/server/level/ChunkMap/f_143035_ net/minecraft/server/level/ChunkMap/CHUNK_TYPE_UNKNOWN +FD: net/minecraft/server/level/ChunkMap/f_143036_ net/minecraft/server/level/ChunkMap/CHUNK_TYPE_FULL +FD: net/minecraft/server/level/ChunkMap/f_143037_ net/minecraft/server/level/ChunkMap/CHUNK_SAVED_PER_TICK +FD: net/minecraft/server/level/ChunkMap/f_143038_ net/minecraft/server/level/ChunkMap/MIN_VIEW_DISTANCE +FD: net/minecraft/server/level/ChunkMap/f_182284_ net/minecraft/server/level/ChunkMap/storageName +FD: net/minecraft/server/level/ChunkMap/f_198789_ net/minecraft/server/level/ChunkMap/CHUNK_SAVED_EAGERLY_PER_TICK +FD: net/minecraft/server/level/ChunkMap/f_202981_ net/minecraft/server/level/ChunkMap/chunkSaveCooldowns +FD: net/minecraft/server/level/ChunkMap/f_202982_ net/minecraft/server/level/ChunkMap/EAGER_CHUNK_SAVE_COOLDOWN_IN_MILLIS +FD: net/minecraft/server/level/ChunkMap/f_214833_ net/minecraft/server/level/ChunkMap/structureTemplateManager +FD: net/minecraft/server/level/ChunkMap/f_214834_ net/minecraft/server/level/ChunkMap/randomState +FD: net/minecraft/server/level/ChunkMap/f_254626_ net/minecraft/server/level/ChunkMap/chunkGeneratorState +FD: net/minecraft/server/level/ChunkMap$1/f_140436_ net/minecraft/server/level/ChunkMap$1/val$k +FD: net/minecraft/server/level/ChunkMap$1/f_140437_ net/minecraft/server/level/ChunkMap$1/this$0 +FD: net/minecraft/server/level/ChunkMap$2/f_140442_ net/minecraft/server/level/ChunkMap$2/val$startX +FD: net/minecraft/server/level/ChunkMap$2/f_140443_ net/minecraft/server/level/ChunkMap$2/val$finalI +FD: net/minecraft/server/level/ChunkMap$2/f_140444_ net/minecraft/server/level/ChunkMap$2/val$range +FD: net/minecraft/server/level/ChunkMap$2/f_140445_ net/minecraft/server/level/ChunkMap$2/val$startZ +FD: net/minecraft/server/level/ChunkMap$2/f_140446_ net/minecraft/server/level/ChunkMap$2/val$either +FD: net/minecraft/server/level/ChunkMap$2/f_140447_ net/minecraft/server/level/ChunkMap$2/this$0 +FD: net/minecraft/server/level/ChunkMap$DistanceManager/f_140456_ net/minecraft/server/level/ChunkMap$DistanceManager/this$0 +FD: net/minecraft/server/level/ChunkMap$TrackedEntity/f_140470_ net/minecraft/server/level/ChunkMap$TrackedEntity/this$0 +FD: net/minecraft/server/level/ChunkMap$TrackedEntity/f_140471_ net/minecraft/server/level/ChunkMap$TrackedEntity/serverEntity +FD: net/minecraft/server/level/ChunkMap$TrackedEntity/f_140472_ net/minecraft/server/level/ChunkMap$TrackedEntity/entity +FD: net/minecraft/server/level/ChunkMap$TrackedEntity/f_140473_ net/minecraft/server/level/ChunkMap$TrackedEntity/range +FD: net/minecraft/server/level/ChunkMap$TrackedEntity/f_140474_ net/minecraft/server/level/ChunkMap$TrackedEntity/lastSectionPos +FD: net/minecraft/server/level/ChunkMap$TrackedEntity/f_140475_ net/minecraft/server/level/ChunkMap$TrackedEntity/seenBy +FD: net/minecraft/server/level/ChunkTaskPriorityQueue/f_140508_ net/minecraft/server/level/ChunkTaskPriorityQueue/PRIORITY_LEVEL_COUNT +FD: net/minecraft/server/level/ChunkTaskPriorityQueue/f_140509_ net/minecraft/server/level/ChunkTaskPriorityQueue/taskQueue +FD: net/minecraft/server/level/ChunkTaskPriorityQueue/f_140510_ net/minecraft/server/level/ChunkTaskPriorityQueue/firstQueue +FD: net/minecraft/server/level/ChunkTaskPriorityQueue/f_140511_ net/minecraft/server/level/ChunkTaskPriorityQueue/name +FD: net/minecraft/server/level/ChunkTaskPriorityQueue/f_140512_ net/minecraft/server/level/ChunkTaskPriorityQueue/acquired +FD: net/minecraft/server/level/ChunkTaskPriorityQueue/f_140513_ net/minecraft/server/level/ChunkTaskPriorityQueue/maxTasks +FD: net/minecraft/server/level/ChunkTaskPriorityQueueSorter/f_140549_ net/minecraft/server/level/ChunkTaskPriorityQueueSorter/LOGGER +FD: net/minecraft/server/level/ChunkTaskPriorityQueueSorter/f_140550_ net/minecraft/server/level/ChunkTaskPriorityQueueSorter/queues +FD: net/minecraft/server/level/ChunkTaskPriorityQueueSorter/f_140551_ net/minecraft/server/level/ChunkTaskPriorityQueueSorter/sleeping +FD: net/minecraft/server/level/ChunkTaskPriorityQueueSorter/f_140552_ net/minecraft/server/level/ChunkTaskPriorityQueueSorter/mailbox +FD: net/minecraft/server/level/ChunkTaskPriorityQueueSorter$Message/f_140664_ net/minecraft/server/level/ChunkTaskPriorityQueueSorter$Message/task +FD: net/minecraft/server/level/ChunkTaskPriorityQueueSorter$Message/f_140665_ net/minecraft/server/level/ChunkTaskPriorityQueueSorter$Message/pos +FD: net/minecraft/server/level/ChunkTaskPriorityQueueSorter$Message/f_140666_ net/minecraft/server/level/ChunkTaskPriorityQueueSorter$Message/level +FD: net/minecraft/server/level/ChunkTaskPriorityQueueSorter$Release/f_140682_ net/minecraft/server/level/ChunkTaskPriorityQueueSorter$Release/task +FD: net/minecraft/server/level/ChunkTaskPriorityQueueSorter$Release/f_140683_ net/minecraft/server/level/ChunkTaskPriorityQueueSorter$Release/pos +FD: net/minecraft/server/level/ChunkTaskPriorityQueueSorter$Release/f_140684_ net/minecraft/server/level/ChunkTaskPriorityQueueSorter$Release/clearQueue +FD: net/minecraft/server/level/ColumnPos/f_140723_ net/minecraft/server/level/ColumnPos/x +FD: net/minecraft/server/level/ColumnPos/f_140724_ net/minecraft/server/level/ColumnPos/z +FD: net/minecraft/server/level/ColumnPos/f_143191_ net/minecraft/server/level/ColumnPos/COORD_BITS +FD: net/minecraft/server/level/ColumnPos/f_143192_ net/minecraft/server/level/ColumnPos/COORD_MASK +FD: net/minecraft/server/level/DemoMode/f_140734_ net/minecraft/server/level/DemoMode/displayedIntro +FD: net/minecraft/server/level/DemoMode/f_140735_ net/minecraft/server/level/DemoMode/demoHasEnded +FD: net/minecraft/server/level/DemoMode/f_140736_ net/minecraft/server/level/DemoMode/demoEndedReminder +FD: net/minecraft/server/level/DemoMode/f_140737_ net/minecraft/server/level/DemoMode/gameModeTicks +FD: net/minecraft/server/level/DemoMode/f_143201_ net/minecraft/server/level/DemoMode/DEMO_DAYS +FD: net/minecraft/server/level/DemoMode/f_143202_ net/minecraft/server/level/DemoMode/TOTAL_PLAY_TICKS +FD: net/minecraft/server/level/DistanceManager/f_140758_ net/minecraft/server/level/DistanceManager/LOGGER +FD: net/minecraft/server/level/DistanceManager/f_140759_ net/minecraft/server/level/DistanceManager/PLAYER_TICKET_LEVEL +FD: net/minecraft/server/level/DistanceManager/f_140760_ net/minecraft/server/level/DistanceManager/playersPerChunk +FD: net/minecraft/server/level/DistanceManager/f_140761_ net/minecraft/server/level/DistanceManager/tickets +FD: net/minecraft/server/level/DistanceManager/f_140762_ net/minecraft/server/level/DistanceManager/ticketTracker +FD: net/minecraft/server/level/DistanceManager/f_140763_ net/minecraft/server/level/DistanceManager/naturalSpawnChunkCounter +FD: net/minecraft/server/level/DistanceManager/f_140764_ net/minecraft/server/level/DistanceManager/playerTicketManager +FD: net/minecraft/server/level/DistanceManager/f_140765_ net/minecraft/server/level/DistanceManager/chunksToUpdateFutures +FD: net/minecraft/server/level/DistanceManager/f_140766_ net/minecraft/server/level/DistanceManager/ticketThrottler +FD: net/minecraft/server/level/DistanceManager/f_140767_ net/minecraft/server/level/DistanceManager/ticketThrottlerInput +FD: net/minecraft/server/level/DistanceManager/f_140768_ net/minecraft/server/level/DistanceManager/ticketThrottlerReleaser +FD: net/minecraft/server/level/DistanceManager/f_140769_ net/minecraft/server/level/DistanceManager/ticketsToRelease +FD: net/minecraft/server/level/DistanceManager/f_140770_ net/minecraft/server/level/DistanceManager/mainThreadExecutor +FD: net/minecraft/server/level/DistanceManager/f_140771_ net/minecraft/server/level/DistanceManager/ticketTickCounter +FD: net/minecraft/server/level/DistanceManager/f_143206_ net/minecraft/server/level/DistanceManager/INITIAL_TICKET_LIST_CAPACITY +FD: net/minecraft/server/level/DistanceManager/f_183901_ net/minecraft/server/level/DistanceManager/tickingTicketsTracker +FD: net/minecraft/server/level/DistanceManager/f_183902_ net/minecraft/server/level/DistanceManager/simulationDistance +FD: net/minecraft/server/level/DistanceManager$ChunkTicketTracker/f_140874_ net/minecraft/server/level/DistanceManager$ChunkTicketTracker/this$0 +FD: net/minecraft/server/level/DistanceManager$ChunkTicketTracker/f_286988_ net/minecraft/server/level/DistanceManager$ChunkTicketTracker/MAX_LEVEL +FD: net/minecraft/server/level/DistanceManager$FixedPlayerDistanceChunkTracker/f_140886_ net/minecraft/server/level/DistanceManager$FixedPlayerDistanceChunkTracker/chunks +FD: net/minecraft/server/level/DistanceManager$FixedPlayerDistanceChunkTracker/f_140887_ net/minecraft/server/level/DistanceManager$FixedPlayerDistanceChunkTracker/maxDistance +FD: net/minecraft/server/level/DistanceManager$FixedPlayerDistanceChunkTracker/f_140888_ net/minecraft/server/level/DistanceManager$FixedPlayerDistanceChunkTracker/this$0 +FD: net/minecraft/server/level/DistanceManager$PlayerTicketTracker/f_140904_ net/minecraft/server/level/DistanceManager$PlayerTicketTracker/this$0 +FD: net/minecraft/server/level/DistanceManager$PlayerTicketTracker/f_140905_ net/minecraft/server/level/DistanceManager$PlayerTicketTracker/viewDistance +FD: net/minecraft/server/level/DistanceManager$PlayerTicketTracker/f_140906_ net/minecraft/server/level/DistanceManager$PlayerTicketTracker/queueLevels +FD: net/minecraft/server/level/DistanceManager$PlayerTicketTracker/f_140907_ net/minecraft/server/level/DistanceManager$PlayerTicketTracker/toUpdate +FD: net/minecraft/server/level/FullChunkStatus/$VALUES net/minecraft/server/level/FullChunkStatus/$VALUES +FD: net/minecraft/server/level/FullChunkStatus/BLOCK_TICKING net/minecraft/server/level/FullChunkStatus/BLOCK_TICKING +FD: net/minecraft/server/level/FullChunkStatus/ENTITY_TICKING net/minecraft/server/level/FullChunkStatus/ENTITY_TICKING +FD: net/minecraft/server/level/FullChunkStatus/FULL net/minecraft/server/level/FullChunkStatus/FULL +FD: net/minecraft/server/level/FullChunkStatus/INACCESSIBLE net/minecraft/server/level/FullChunkStatus/INACCESSIBLE +FD: net/minecraft/server/level/PlayerMap/f_8241_ net/minecraft/server/level/PlayerMap/players +FD: net/minecraft/server/level/ServerBossEvent/f_8296_ net/minecraft/server/level/ServerBossEvent/players +FD: net/minecraft/server/level/ServerBossEvent/f_8297_ net/minecraft/server/level/ServerBossEvent/unmodifiablePlayers +FD: net/minecraft/server/level/ServerBossEvent/f_8298_ net/minecraft/server/level/ServerBossEvent/visible +FD: net/minecraft/server/level/ServerChunkCache/f_143226_ net/minecraft/server/level/ServerChunkCache/CACHE_SIZE +FD: net/minecraft/server/level/ServerChunkCache/f_8325_ net/minecraft/server/level/ServerChunkCache/chunkMap +FD: net/minecraft/server/level/ServerChunkCache/f_8326_ net/minecraft/server/level/ServerChunkCache/CHUNK_STATUSES +FD: net/minecraft/server/level/ServerChunkCache/f_8327_ net/minecraft/server/level/ServerChunkCache/distanceManager +FD: net/minecraft/server/level/ServerChunkCache/f_8329_ net/minecraft/server/level/ServerChunkCache/level +FD: net/minecraft/server/level/ServerChunkCache/f_8330_ net/minecraft/server/level/ServerChunkCache/mainThread +FD: net/minecraft/server/level/ServerChunkCache/f_8331_ net/minecraft/server/level/ServerChunkCache/lightEngine +FD: net/minecraft/server/level/ServerChunkCache/f_8332_ net/minecraft/server/level/ServerChunkCache/mainThreadProcessor +FD: net/minecraft/server/level/ServerChunkCache/f_8333_ net/minecraft/server/level/ServerChunkCache/dataStorage +FD: net/minecraft/server/level/ServerChunkCache/f_8334_ net/minecraft/server/level/ServerChunkCache/lastInhabitedUpdate +FD: net/minecraft/server/level/ServerChunkCache/f_8335_ net/minecraft/server/level/ServerChunkCache/spawnEnemies +FD: net/minecraft/server/level/ServerChunkCache/f_8336_ net/minecraft/server/level/ServerChunkCache/spawnFriendlies +FD: net/minecraft/server/level/ServerChunkCache/f_8337_ net/minecraft/server/level/ServerChunkCache/lastChunkPos +FD: net/minecraft/server/level/ServerChunkCache/f_8338_ net/minecraft/server/level/ServerChunkCache/lastChunkStatus +FD: net/minecraft/server/level/ServerChunkCache/f_8339_ net/minecraft/server/level/ServerChunkCache/lastChunk +FD: net/minecraft/server/level/ServerChunkCache/f_8340_ net/minecraft/server/level/ServerChunkCache/lastSpawnState +FD: net/minecraft/server/level/ServerChunkCache$ChunkAndHolder/f_184028_ net/minecraft/server/level/ServerChunkCache$ChunkAndHolder/chunk +FD: net/minecraft/server/level/ServerChunkCache$ChunkAndHolder/f_184029_ net/minecraft/server/level/ServerChunkCache$ChunkAndHolder/holder +FD: net/minecraft/server/level/ServerChunkCache$MainThreadExecutor/f_8491_ net/minecraft/server/level/ServerChunkCache$MainThreadExecutor/this$0 +FD: net/minecraft/server/level/ServerEntity/f_143241_ net/minecraft/server/level/ServerEntity/TOLERANCE_LEVEL_ROTATION +FD: net/minecraft/server/level/ServerEntity/f_214995_ net/minecraft/server/level/ServerEntity/positionCodec +FD: net/minecraft/server/level/ServerEntity/f_263120_ net/minecraft/server/level/ServerEntity/trackedDataValues +FD: net/minecraft/server/level/ServerEntity/f_8508_ net/minecraft/server/level/ServerEntity/LOGGER +FD: net/minecraft/server/level/ServerEntity/f_8509_ net/minecraft/server/level/ServerEntity/level +FD: net/minecraft/server/level/ServerEntity/f_8510_ net/minecraft/server/level/ServerEntity/entity +FD: net/minecraft/server/level/ServerEntity/f_8511_ net/minecraft/server/level/ServerEntity/updateInterval +FD: net/minecraft/server/level/ServerEntity/f_8512_ net/minecraft/server/level/ServerEntity/trackDelta +FD: net/minecraft/server/level/ServerEntity/f_8513_ net/minecraft/server/level/ServerEntity/broadcast +FD: net/minecraft/server/level/ServerEntity/f_8517_ net/minecraft/server/level/ServerEntity/yRotp +FD: net/minecraft/server/level/ServerEntity/f_8518_ net/minecraft/server/level/ServerEntity/xRotp +FD: net/minecraft/server/level/ServerEntity/f_8519_ net/minecraft/server/level/ServerEntity/yHeadRotp +FD: net/minecraft/server/level/ServerEntity/f_8520_ net/minecraft/server/level/ServerEntity/ap +FD: net/minecraft/server/level/ServerEntity/f_8521_ net/minecraft/server/level/ServerEntity/tickCount +FD: net/minecraft/server/level/ServerEntity/f_8522_ net/minecraft/server/level/ServerEntity/teleportDelay +FD: net/minecraft/server/level/ServerEntity/f_8523_ net/minecraft/server/level/ServerEntity/lastPassengers +FD: net/minecraft/server/level/ServerEntity/f_8524_ net/minecraft/server/level/ServerEntity/wasRiding +FD: net/minecraft/server/level/ServerEntity/f_8525_ net/minecraft/server/level/ServerEntity/wasOnGround +FD: net/minecraft/server/level/ServerLevel/f_143242_ net/minecraft/server/level/ServerLevel/EMPTY_TIME_NO_TICK +FD: net/minecraft/server/level/ServerLevel/f_143243_ net/minecraft/server/level/ServerLevel/entityTickList +FD: net/minecraft/server/level/ServerLevel/f_143244_ net/minecraft/server/level/ServerLevel/entityManager +FD: net/minecraft/server/level/ServerLevel/f_143245_ net/minecraft/server/level/ServerLevel/sleepStatus +FD: net/minecraft/server/level/ServerLevel/f_143246_ net/minecraft/server/level/ServerLevel/navigatingMobs +FD: net/minecraft/server/level/ServerLevel/f_143247_ net/minecraft/server/level/ServerLevel/dragonParts +FD: net/minecraft/server/level/ServerLevel/f_184046_ net/minecraft/server/level/ServerLevel/MAX_SCHEDULED_TICKS_PER_TICK +FD: net/minecraft/server/level/ServerLevel/f_184047_ net/minecraft/server/level/ServerLevel/fluidTicks +FD: net/minecraft/server/level/ServerLevel/f_184048_ net/minecraft/server/level/ServerLevel/blockEventsToReschedule +FD: net/minecraft/server/level/ServerLevel/f_196556_ net/minecraft/server/level/ServerLevel/structureCheck +FD: net/minecraft/server/level/ServerLevel/f_200893_ net/minecraft/server/level/ServerLevel/isUpdatingNavigations +FD: net/minecraft/server/level/ServerLevel/f_214997_ net/minecraft/server/level/ServerLevel/structureManager +FD: net/minecraft/server/level/ServerLevel/f_243695_ net/minecraft/server/level/ServerLevel/gameEventDispatcher +FD: net/minecraft/server/level/ServerLevel/f_263681_ net/minecraft/server/level/ServerLevel/RAIN_DURATION +FD: net/minecraft/server/level/ServerLevel/f_263684_ net/minecraft/server/level/ServerLevel/THUNDER_DELAY +FD: net/minecraft/server/level/ServerLevel/f_263704_ net/minecraft/server/level/ServerLevel/RAIN_DELAY +FD: net/minecraft/server/level/ServerLevel/f_263755_ net/minecraft/server/level/ServerLevel/THUNDER_DURATION +FD: net/minecraft/server/level/ServerLevel/f_286969_ net/minecraft/server/level/ServerLevel/randomSequences +FD: net/minecraft/server/level/ServerLevel/f_8546_ net/minecraft/server/level/ServerLevel/players +FD: net/minecraft/server/level/ServerLevel/f_8547_ net/minecraft/server/level/ServerLevel/chunkSource +FD: net/minecraft/server/level/ServerLevel/f_8548_ net/minecraft/server/level/ServerLevel/server +FD: net/minecraft/server/level/ServerLevel/f_8549_ net/minecraft/server/level/ServerLevel/serverLevelData +FD: net/minecraft/server/level/ServerLevel/f_8551_ net/minecraft/server/level/ServerLevel/emptyTime +FD: net/minecraft/server/level/ServerLevel/f_8552_ net/minecraft/server/level/ServerLevel/portalForcer +FD: net/minecraft/server/level/ServerLevel/f_8553_ net/minecraft/server/level/ServerLevel/blockTicks +FD: net/minecraft/server/level/ServerLevel/f_8556_ net/minecraft/server/level/ServerLevel/blockEvents +FD: net/minecraft/server/level/ServerLevel/f_8557_ net/minecraft/server/level/ServerLevel/handlingTick +FD: net/minecraft/server/level/ServerLevel/f_8558_ net/minecraft/server/level/ServerLevel/customSpawners +FD: net/minecraft/server/level/ServerLevel/f_8559_ net/minecraft/server/level/ServerLevel/dragonFight +FD: net/minecraft/server/level/ServerLevel/f_8561_ net/minecraft/server/level/ServerLevel/tickTime +FD: net/minecraft/server/level/ServerLevel/f_8562_ net/minecraft/server/level/ServerLevel/END_SPAWN_POINT +FD: net/minecraft/server/level/ServerLevel/f_8564_ net/minecraft/server/level/ServerLevel/noSave +FD: net/minecraft/server/level/ServerLevel/f_8565_ net/minecraft/server/level/ServerLevel/raids +FD: net/minecraft/server/level/ServerLevel/f_8566_ net/minecraft/server/level/ServerLevel/LOGGER +FD: net/minecraft/server/level/ServerLevel$EntityCallbacks/f_143351_ net/minecraft/server/level/ServerLevel$EntityCallbacks/this$0 +FD: net/minecraft/server/level/ServerPlayer/f_143378_ net/minecraft/server/level/ServerPlayer/textFilteringEnabled +FD: net/minecraft/server/level/ServerPlayer/f_143379_ net/minecraft/server/level/ServerPlayer/containerSynchronizer +FD: net/minecraft/server/level/ServerPlayer/f_143380_ net/minecraft/server/level/ServerPlayer/containerListener +FD: net/minecraft/server/level/ServerPlayer/f_143381_ net/minecraft/server/level/ServerPlayer/NEUTRAL_MOB_DEATH_NOTIFICATION_RADII_XZ +FD: net/minecraft/server/level/ServerPlayer/f_143382_ net/minecraft/server/level/ServerPlayer/NEUTRAL_MOB_DEATH_NOTIFICATION_RADII_Y +FD: net/minecraft/server/level/ServerPlayer/f_184125_ net/minecraft/server/level/ServerPlayer/startingToFallPosition +FD: net/minecraft/server/level/ServerPlayer/f_184126_ net/minecraft/server/level/ServerPlayer/enteredLavaOnVehiclePosition +FD: net/minecraft/server/level/ServerPlayer/f_184127_ net/minecraft/server/level/ServerPlayer/allowsListing +FD: net/minecraft/server/level/ServerPlayer/f_244040_ net/minecraft/server/level/ServerPlayer/chatSession +FD: net/minecraft/server/level/ServerPlayer/f_244516_ net/minecraft/server/level/ServerPlayer/wardenSpawnTracker +FD: net/minecraft/server/level/ServerPlayer/f_8906_ net/minecraft/server/level/ServerPlayer/connection +FD: net/minecraft/server/level/ServerPlayer/f_8907_ net/minecraft/server/level/ServerPlayer/LOGGER +FD: net/minecraft/server/level/ServerPlayer/f_8909_ net/minecraft/server/level/ServerPlayer/advancements +FD: net/minecraft/server/level/ServerPlayer/f_8910_ net/minecraft/server/level/ServerPlayer/stats +FD: net/minecraft/server/level/ServerPlayer/f_8911_ net/minecraft/server/level/ServerPlayer/lastRecordedHealthAndAbsorption +FD: net/minecraft/server/level/ServerPlayer/f_8912_ net/minecraft/server/level/ServerPlayer/lastRecordedFoodLevel +FD: net/minecraft/server/level/ServerPlayer/f_8913_ net/minecraft/server/level/ServerPlayer/lastRecordedAirLevel +FD: net/minecraft/server/level/ServerPlayer/f_8914_ net/minecraft/server/level/ServerPlayer/lastRecordedArmor +FD: net/minecraft/server/level/ServerPlayer/f_8915_ net/minecraft/server/level/ServerPlayer/lastRecordedLevel +FD: net/minecraft/server/level/ServerPlayer/f_8916_ net/minecraft/server/level/ServerPlayer/lastRecordedExperience +FD: net/minecraft/server/level/ServerPlayer/f_8917_ net/minecraft/server/level/ServerPlayer/lastSentHealth +FD: net/minecraft/server/level/ServerPlayer/f_8918_ net/minecraft/server/level/ServerPlayer/lastSentFood +FD: net/minecraft/server/level/ServerPlayer/f_8919_ net/minecraft/server/level/ServerPlayer/lastFoodSaturationZero +FD: net/minecraft/server/level/ServerPlayer/f_8920_ net/minecraft/server/level/ServerPlayer/lastSentExp +FD: net/minecraft/server/level/ServerPlayer/f_8921_ net/minecraft/server/level/ServerPlayer/spawnInvulnerableTime +FD: net/minecraft/server/level/ServerPlayer/f_8922_ net/minecraft/server/level/ServerPlayer/chatVisibility +FD: net/minecraft/server/level/ServerPlayer/f_8923_ net/minecraft/server/level/ServerPlayer/canChatColor +FD: net/minecraft/server/level/ServerPlayer/f_8924_ net/minecraft/server/level/ServerPlayer/server +FD: net/minecraft/server/level/ServerPlayer/f_8925_ net/minecraft/server/level/ServerPlayer/lastActionTime +FD: net/minecraft/server/level/ServerPlayer/f_8926_ net/minecraft/server/level/ServerPlayer/camera +FD: net/minecraft/server/level/ServerPlayer/f_8927_ net/minecraft/server/level/ServerPlayer/isChangingDimension +FD: net/minecraft/server/level/ServerPlayer/f_8928_ net/minecraft/server/level/ServerPlayer/seenCredits +FD: net/minecraft/server/level/ServerPlayer/f_8929_ net/minecraft/server/level/ServerPlayer/recipeBook +FD: net/minecraft/server/level/ServerPlayer/f_8930_ net/minecraft/server/level/ServerPlayer/levitationStartPos +FD: net/minecraft/server/level/ServerPlayer/f_8931_ net/minecraft/server/level/ServerPlayer/levitationStartTime +FD: net/minecraft/server/level/ServerPlayer/f_8932_ net/minecraft/server/level/ServerPlayer/disconnected +FD: net/minecraft/server/level/ServerPlayer/f_8933_ net/minecraft/server/level/ServerPlayer/enteredNetherPosition +FD: net/minecraft/server/level/ServerPlayer/f_8934_ net/minecraft/server/level/ServerPlayer/lastSectionPos +FD: net/minecraft/server/level/ServerPlayer/f_8935_ net/minecraft/server/level/ServerPlayer/respawnDimension +FD: net/minecraft/server/level/ServerPlayer/f_8936_ net/minecraft/server/level/ServerPlayer/respawnPosition +FD: net/minecraft/server/level/ServerPlayer/f_8937_ net/minecraft/server/level/ServerPlayer/respawnForced +FD: net/minecraft/server/level/ServerPlayer/f_8938_ net/minecraft/server/level/ServerPlayer/respawnAngle +FD: net/minecraft/server/level/ServerPlayer/f_8939_ net/minecraft/server/level/ServerPlayer/textFilter +FD: net/minecraft/server/level/ServerPlayer/f_8940_ net/minecraft/server/level/ServerPlayer/containerCounter +FD: net/minecraft/server/level/ServerPlayer/f_8941_ net/minecraft/server/level/ServerPlayer/gameMode +FD: net/minecraft/server/level/ServerPlayer/f_8943_ net/minecraft/server/level/ServerPlayer/latency +FD: net/minecraft/server/level/ServerPlayer/f_8944_ net/minecraft/server/level/ServerPlayer/wonGame +FD: net/minecraft/server/level/ServerPlayer$1/f_143433_ net/minecraft/server/level/ServerPlayer$1/this$0 +FD: net/minecraft/server/level/ServerPlayer$2/f_143458_ net/minecraft/server/level/ServerPlayer$2/this$0 +FD: net/minecraft/server/level/ServerPlayerGameMode/f_9244_ net/minecraft/server/level/ServerPlayerGameMode/level +FD: net/minecraft/server/level/ServerPlayerGameMode/f_9245_ net/minecraft/server/level/ServerPlayerGameMode/player +FD: net/minecraft/server/level/ServerPlayerGameMode/f_9246_ net/minecraft/server/level/ServerPlayerGameMode/LOGGER +FD: net/minecraft/server/level/ServerPlayerGameMode/f_9247_ net/minecraft/server/level/ServerPlayerGameMode/gameModeForPlayer +FD: net/minecraft/server/level/ServerPlayerGameMode/f_9248_ net/minecraft/server/level/ServerPlayerGameMode/previousGameModeForPlayer +FD: net/minecraft/server/level/ServerPlayerGameMode/f_9249_ net/minecraft/server/level/ServerPlayerGameMode/isDestroyingBlock +FD: net/minecraft/server/level/ServerPlayerGameMode/f_9250_ net/minecraft/server/level/ServerPlayerGameMode/destroyProgressStart +FD: net/minecraft/server/level/ServerPlayerGameMode/f_9251_ net/minecraft/server/level/ServerPlayerGameMode/destroyPos +FD: net/minecraft/server/level/ServerPlayerGameMode/f_9252_ net/minecraft/server/level/ServerPlayerGameMode/gameTicks +FD: net/minecraft/server/level/ServerPlayerGameMode/f_9253_ net/minecraft/server/level/ServerPlayerGameMode/hasDelayedDestroy +FD: net/minecraft/server/level/ServerPlayerGameMode/f_9254_ net/minecraft/server/level/ServerPlayerGameMode/delayedDestroyPos +FD: net/minecraft/server/level/ServerPlayerGameMode/f_9255_ net/minecraft/server/level/ServerPlayerGameMode/delayedTickStart +FD: net/minecraft/server/level/ServerPlayerGameMode/f_9256_ net/minecraft/server/level/ServerPlayerGameMode/lastSentState +FD: net/minecraft/server/level/ThreadedLevelLightEngine/f_283844_ net/minecraft/server/level/ThreadedLevelLightEngine/DEFAULT_BATCH_SIZE +FD: net/minecraft/server/level/ThreadedLevelLightEngine/f_9296_ net/minecraft/server/level/ThreadedLevelLightEngine/LOGGER +FD: net/minecraft/server/level/ThreadedLevelLightEngine/f_9297_ net/minecraft/server/level/ThreadedLevelLightEngine/taskMailbox +FD: net/minecraft/server/level/ThreadedLevelLightEngine/f_9298_ net/minecraft/server/level/ThreadedLevelLightEngine/lightTasks +FD: net/minecraft/server/level/ThreadedLevelLightEngine/f_9299_ net/minecraft/server/level/ThreadedLevelLightEngine/chunkMap +FD: net/minecraft/server/level/ThreadedLevelLightEngine/f_9300_ net/minecraft/server/level/ThreadedLevelLightEngine/sorterMailbox +FD: net/minecraft/server/level/ThreadedLevelLightEngine/f_9301_ net/minecraft/server/level/ThreadedLevelLightEngine/taskPerBatch +FD: net/minecraft/server/level/ThreadedLevelLightEngine/f_9302_ net/minecraft/server/level/ThreadedLevelLightEngine/scheduled +FD: net/minecraft/server/level/ThreadedLevelLightEngine$TaskType/$VALUES net/minecraft/server/level/ThreadedLevelLightEngine$TaskType/$VALUES +FD: net/minecraft/server/level/ThreadedLevelLightEngine$TaskType/POST_UPDATE net/minecraft/server/level/ThreadedLevelLightEngine$TaskType/POST_UPDATE +FD: net/minecraft/server/level/ThreadedLevelLightEngine$TaskType/PRE_UPDATE net/minecraft/server/level/ThreadedLevelLightEngine$TaskType/PRE_UPDATE +FD: net/minecraft/server/level/Ticket/f_9420_ net/minecraft/server/level/Ticket/type +FD: net/minecraft/server/level/Ticket/f_9421_ net/minecraft/server/level/Ticket/ticketLevel +FD: net/minecraft/server/level/Ticket/f_9422_ net/minecraft/server/level/Ticket/key +FD: net/minecraft/server/level/Ticket/f_9423_ net/minecraft/server/level/Ticket/createdTick +FD: net/minecraft/server/level/TicketType/f_9442_ net/minecraft/server/level/TicketType/START +FD: net/minecraft/server/level/TicketType/f_9443_ net/minecraft/server/level/TicketType/DRAGON +FD: net/minecraft/server/level/TicketType/f_9444_ net/minecraft/server/level/TicketType/PLAYER +FD: net/minecraft/server/level/TicketType/f_9445_ net/minecraft/server/level/TicketType/FORCED +FD: net/minecraft/server/level/TicketType/f_9446_ net/minecraft/server/level/TicketType/LIGHT +FD: net/minecraft/server/level/TicketType/f_9447_ net/minecraft/server/level/TicketType/PORTAL +FD: net/minecraft/server/level/TicketType/f_9448_ net/minecraft/server/level/TicketType/POST_TELEPORT +FD: net/minecraft/server/level/TicketType/f_9449_ net/minecraft/server/level/TicketType/UNKNOWN +FD: net/minecraft/server/level/TicketType/f_9450_ net/minecraft/server/level/TicketType/name +FD: net/minecraft/server/level/TicketType/f_9451_ net/minecraft/server/level/TicketType/comparator +FD: net/minecraft/server/level/TicketType/f_9452_ net/minecraft/server/level/TicketType/timeout +FD: net/minecraft/server/level/TickingTracker/f_184141_ net/minecraft/server/level/TickingTracker/chunks +FD: net/minecraft/server/level/TickingTracker/f_184142_ net/minecraft/server/level/TickingTracker/INITIAL_TICKET_LIST_CAPACITY +FD: net/minecraft/server/level/TickingTracker/f_184143_ net/minecraft/server/level/TickingTracker/tickets +FD: net/minecraft/server/level/TickingTracker/f_286949_ net/minecraft/server/level/TickingTracker/MAX_LEVEL +FD: net/minecraft/server/level/WorldGenRegion/f_143479_ net/minecraft/server/level/WorldGenRegion/center +FD: net/minecraft/server/level/WorldGenRegion/f_143480_ net/minecraft/server/level/WorldGenRegion/generatingStatus +FD: net/minecraft/server/level/WorldGenRegion/f_143481_ net/minecraft/server/level/WorldGenRegion/writeRadiusCutoff +FD: net/minecraft/server/level/WorldGenRegion/f_143482_ net/minecraft/server/level/WorldGenRegion/currentlyGenerating +FD: net/minecraft/server/level/WorldGenRegion/f_184181_ net/minecraft/server/level/WorldGenRegion/fluidTicks +FD: net/minecraft/server/level/WorldGenRegion/f_184182_ net/minecraft/server/level/WorldGenRegion/subTickCount +FD: net/minecraft/server/level/WorldGenRegion/f_215157_ net/minecraft/server/level/WorldGenRegion/structureManager +FD: net/minecraft/server/level/WorldGenRegion/f_215158_ net/minecraft/server/level/WorldGenRegion/WORLDGEN_REGION_RANDOM +FD: net/minecraft/server/level/WorldGenRegion/f_9474_ net/minecraft/server/level/WorldGenRegion/LOGGER +FD: net/minecraft/server/level/WorldGenRegion/f_9475_ net/minecraft/server/level/WorldGenRegion/cache +FD: net/minecraft/server/level/WorldGenRegion/f_9478_ net/minecraft/server/level/WorldGenRegion/size +FD: net/minecraft/server/level/WorldGenRegion/f_9479_ net/minecraft/server/level/WorldGenRegion/level +FD: net/minecraft/server/level/WorldGenRegion/f_9480_ net/minecraft/server/level/WorldGenRegion/seed +FD: net/minecraft/server/level/WorldGenRegion/f_9481_ net/minecraft/server/level/WorldGenRegion/levelData +FD: net/minecraft/server/level/WorldGenRegion/f_9482_ net/minecraft/server/level/WorldGenRegion/random +FD: net/minecraft/server/level/WorldGenRegion/f_9483_ net/minecraft/server/level/WorldGenRegion/dimensionType +FD: net/minecraft/server/level/WorldGenRegion/f_9484_ net/minecraft/server/level/WorldGenRegion/blockTicks +FD: net/minecraft/server/level/WorldGenRegion/f_9486_ net/minecraft/server/level/WorldGenRegion/biomeManager +FD: net/minecraft/server/level/WorldGenRegion/f_9487_ net/minecraft/server/level/WorldGenRegion/firstPos +FD: net/minecraft/server/level/WorldGenRegion/f_9488_ net/minecraft/server/level/WorldGenRegion/lastPos +FD: net/minecraft/server/level/progress/LoggerChunkProgressListener/f_9622_ net/minecraft/server/level/progress/LoggerChunkProgressListener/LOGGER +FD: net/minecraft/server/level/progress/LoggerChunkProgressListener/f_9623_ net/minecraft/server/level/progress/LoggerChunkProgressListener/maxCount +FD: net/minecraft/server/level/progress/LoggerChunkProgressListener/f_9624_ net/minecraft/server/level/progress/LoggerChunkProgressListener/count +FD: net/minecraft/server/level/progress/LoggerChunkProgressListener/f_9625_ net/minecraft/server/level/progress/LoggerChunkProgressListener/startTime +FD: net/minecraft/server/level/progress/LoggerChunkProgressListener/f_9626_ net/minecraft/server/level/progress/LoggerChunkProgressListener/nextTickTime +FD: net/minecraft/server/level/progress/ProcessorChunkProgressListener/f_9637_ net/minecraft/server/level/progress/ProcessorChunkProgressListener/delegate +FD: net/minecraft/server/level/progress/ProcessorChunkProgressListener/f_9638_ net/minecraft/server/level/progress/ProcessorChunkProgressListener/mailbox +FD: net/minecraft/server/level/progress/StoringChunkProgressListener/f_9653_ net/minecraft/server/level/progress/StoringChunkProgressListener/delegate +FD: net/minecraft/server/level/progress/StoringChunkProgressListener/f_9654_ net/minecraft/server/level/progress/StoringChunkProgressListener/statuses +FD: net/minecraft/server/level/progress/StoringChunkProgressListener/f_9655_ net/minecraft/server/level/progress/StoringChunkProgressListener/spawnPos +FD: net/minecraft/server/level/progress/StoringChunkProgressListener/f_9656_ net/minecraft/server/level/progress/StoringChunkProgressListener/fullDiameter +FD: net/minecraft/server/level/progress/StoringChunkProgressListener/f_9657_ net/minecraft/server/level/progress/StoringChunkProgressListener/radius +FD: net/minecraft/server/level/progress/StoringChunkProgressListener/f_9658_ net/minecraft/server/level/progress/StoringChunkProgressListener/diameter +FD: net/minecraft/server/level/progress/StoringChunkProgressListener/f_9659_ net/minecraft/server/level/progress/StoringChunkProgressListener/started +FD: net/minecraft/server/network/FilteredText/f_215168_ net/minecraft/server/network/FilteredText/raw +FD: net/minecraft/server/network/FilteredText/f_243010_ net/minecraft/server/network/FilteredText/mask +FD: net/minecraft/server/network/FilteredText/f_243020_ net/minecraft/server/network/FilteredText/EMPTY +FD: net/minecraft/server/network/LegacyQueryHandler/f_143586_ net/minecraft/server/network/LegacyQueryHandler/FAKE_PROTOCOL_VERSION +FD: net/minecraft/server/network/LegacyQueryHandler/f_9675_ net/minecraft/server/network/LegacyQueryHandler/LOGGER +FD: net/minecraft/server/network/LegacyQueryHandler/f_9676_ net/minecraft/server/network/LegacyQueryHandler/serverConnectionListener +FD: net/minecraft/server/network/MemoryServerHandshakePacketListenerImpl/f_9688_ net/minecraft/server/network/MemoryServerHandshakePacketListenerImpl/server +FD: net/minecraft/server/network/MemoryServerHandshakePacketListenerImpl/f_9689_ net/minecraft/server/network/MemoryServerHandshakePacketListenerImpl/connection +FD: net/minecraft/server/network/ServerConnectionListener/f_9698_ net/minecraft/server/network/ServerConnectionListener/SERVER_EVENT_GROUP +FD: net/minecraft/server/network/ServerConnectionListener/f_9699_ net/minecraft/server/network/ServerConnectionListener/SERVER_EPOLL_EVENT_GROUP +FD: net/minecraft/server/network/ServerConnectionListener/f_9700_ net/minecraft/server/network/ServerConnectionListener/running +FD: net/minecraft/server/network/ServerConnectionListener/f_9701_ net/minecraft/server/network/ServerConnectionListener/LOGGER +FD: net/minecraft/server/network/ServerConnectionListener/f_9702_ net/minecraft/server/network/ServerConnectionListener/server +FD: net/minecraft/server/network/ServerConnectionListener/f_9703_ net/minecraft/server/network/ServerConnectionListener/channels +FD: net/minecraft/server/network/ServerConnectionListener/f_9704_ net/minecraft/server/network/ServerConnectionListener/connections +FD: net/minecraft/server/network/ServerConnectionListener$1/f_9725_ net/minecraft/server/network/ServerConnectionListener$1/this$0 +FD: net/minecraft/server/network/ServerConnectionListener$2/f_9730_ net/minecraft/server/network/ServerConnectionListener$2/this$0 +FD: net/minecraft/server/network/ServerConnectionListener$LatencySimulator/f_143587_ net/minecraft/server/network/ServerConnectionListener$LatencySimulator/TIMER +FD: net/minecraft/server/network/ServerConnectionListener$LatencySimulator/f_143588_ net/minecraft/server/network/ServerConnectionListener$LatencySimulator/delay +FD: net/minecraft/server/network/ServerConnectionListener$LatencySimulator/f_143589_ net/minecraft/server/network/ServerConnectionListener$LatencySimulator/jitter +FD: net/minecraft/server/network/ServerConnectionListener$LatencySimulator/f_143590_ net/minecraft/server/network/ServerConnectionListener$LatencySimulator/queuedMessages +FD: net/minecraft/server/network/ServerConnectionListener$LatencySimulator$DelayedMessage/f_143603_ net/minecraft/server/network/ServerConnectionListener$LatencySimulator$DelayedMessage/ctx +FD: net/minecraft/server/network/ServerConnectionListener$LatencySimulator$DelayedMessage/f_143604_ net/minecraft/server/network/ServerConnectionListener$LatencySimulator$DelayedMessage/msg +FD: net/minecraft/server/network/ServerGamePacketListenerImpl/f_143608_ net/minecraft/server/network/ServerGamePacketListenerImpl/LATENCY_CHECK_INTERVAL +FD: net/minecraft/server/network/ServerGamePacketListenerImpl/f_215197_ net/minecraft/server/network/ServerGamePacketListenerImpl/lastChatTimeStamp +FD: net/minecraft/server/network/ServerGamePacketListenerImpl/f_215198_ net/minecraft/server/network/ServerGamePacketListenerImpl/MAX_INTERACTION_DISTANCE +FD: net/minecraft/server/network/ServerGamePacketListenerImpl/f_215199_ net/minecraft/server/network/ServerGamePacketListenerImpl/NO_BLOCK_UPDATES_TO_ACK +FD: net/minecraft/server/network/ServerGamePacketListenerImpl/f_215200_ net/minecraft/server/network/ServerGamePacketListenerImpl/ackBlockChangesUpTo +FD: net/minecraft/server/network/ServerGamePacketListenerImpl/f_240889_ net/minecraft/server/network/ServerGamePacketListenerImpl/signedMessageDecoder +FD: net/minecraft/server/network/ServerGamePacketListenerImpl/f_241681_ net/minecraft/server/network/ServerGamePacketListenerImpl/chatMessageChain +FD: net/minecraft/server/network/ServerGamePacketListenerImpl/f_243718_ net/minecraft/server/network/ServerGamePacketListenerImpl/messageSignatureCache +FD: net/minecraft/server/network/ServerGamePacketListenerImpl/f_244262_ net/minecraft/server/network/ServerGamePacketListenerImpl/lastSeenMessages +FD: net/minecraft/server/network/ServerGamePacketListenerImpl/f_244304_ net/minecraft/server/network/ServerGamePacketListenerImpl/CHAT_VALIDATION_FAILED +FD: net/minecraft/server/network/ServerGamePacketListenerImpl/f_244471_ net/minecraft/server/network/ServerGamePacketListenerImpl/TRACKED_MESSAGE_DISCONNECT_THRESHOLD +FD: net/minecraft/server/network/ServerGamePacketListenerImpl/f_252494_ net/minecraft/server/network/ServerGamePacketListenerImpl/chatSession +FD: net/minecraft/server/network/ServerGamePacketListenerImpl/f_9735_ net/minecraft/server/network/ServerGamePacketListenerImpl/awaitingTeleportTime +FD: net/minecraft/server/network/ServerGamePacketListenerImpl/f_9736_ net/minecraft/server/network/ServerGamePacketListenerImpl/clientIsFloating +FD: net/minecraft/server/network/ServerGamePacketListenerImpl/f_9737_ net/minecraft/server/network/ServerGamePacketListenerImpl/aboveGroundTickCount +FD: net/minecraft/server/network/ServerGamePacketListenerImpl/f_9738_ net/minecraft/server/network/ServerGamePacketListenerImpl/clientVehicleIsFloating +FD: net/minecraft/server/network/ServerGamePacketListenerImpl/f_9739_ net/minecraft/server/network/ServerGamePacketListenerImpl/aboveGroundVehicleTickCount +FD: net/minecraft/server/network/ServerGamePacketListenerImpl/f_9740_ net/minecraft/server/network/ServerGamePacketListenerImpl/receivedMovePacketCount +FD: net/minecraft/server/network/ServerGamePacketListenerImpl/f_9741_ net/minecraft/server/network/ServerGamePacketListenerImpl/knownMovePacketCount +FD: net/minecraft/server/network/ServerGamePacketListenerImpl/f_9742_ net/minecraft/server/network/ServerGamePacketListenerImpl/connection +FD: net/minecraft/server/network/ServerGamePacketListenerImpl/f_9743_ net/minecraft/server/network/ServerGamePacketListenerImpl/player +FD: net/minecraft/server/network/ServerGamePacketListenerImpl/f_9744_ net/minecraft/server/network/ServerGamePacketListenerImpl/LOGGER +FD: net/minecraft/server/network/ServerGamePacketListenerImpl/f_9745_ net/minecraft/server/network/ServerGamePacketListenerImpl/server +FD: net/minecraft/server/network/ServerGamePacketListenerImpl/f_9746_ net/minecraft/server/network/ServerGamePacketListenerImpl/tickCount +FD: net/minecraft/server/network/ServerGamePacketListenerImpl/f_9747_ net/minecraft/server/network/ServerGamePacketListenerImpl/keepAliveTime +FD: net/minecraft/server/network/ServerGamePacketListenerImpl/f_9748_ net/minecraft/server/network/ServerGamePacketListenerImpl/keepAlivePending +FD: net/minecraft/server/network/ServerGamePacketListenerImpl/f_9749_ net/minecraft/server/network/ServerGamePacketListenerImpl/keepAliveChallenge +FD: net/minecraft/server/network/ServerGamePacketListenerImpl/f_9750_ net/minecraft/server/network/ServerGamePacketListenerImpl/chatSpamTickCount +FD: net/minecraft/server/network/ServerGamePacketListenerImpl/f_9751_ net/minecraft/server/network/ServerGamePacketListenerImpl/dropSpamTickCount +FD: net/minecraft/server/network/ServerGamePacketListenerImpl/f_9753_ net/minecraft/server/network/ServerGamePacketListenerImpl/firstGoodX +FD: net/minecraft/server/network/ServerGamePacketListenerImpl/f_9754_ net/minecraft/server/network/ServerGamePacketListenerImpl/firstGoodY +FD: net/minecraft/server/network/ServerGamePacketListenerImpl/f_9755_ net/minecraft/server/network/ServerGamePacketListenerImpl/firstGoodZ +FD: net/minecraft/server/network/ServerGamePacketListenerImpl/f_9756_ net/minecraft/server/network/ServerGamePacketListenerImpl/lastGoodX +FD: net/minecraft/server/network/ServerGamePacketListenerImpl/f_9757_ net/minecraft/server/network/ServerGamePacketListenerImpl/lastGoodY +FD: net/minecraft/server/network/ServerGamePacketListenerImpl/f_9758_ net/minecraft/server/network/ServerGamePacketListenerImpl/lastGoodZ +FD: net/minecraft/server/network/ServerGamePacketListenerImpl/f_9759_ net/minecraft/server/network/ServerGamePacketListenerImpl/lastVehicle +FD: net/minecraft/server/network/ServerGamePacketListenerImpl/f_9760_ net/minecraft/server/network/ServerGamePacketListenerImpl/vehicleFirstGoodX +FD: net/minecraft/server/network/ServerGamePacketListenerImpl/f_9761_ net/minecraft/server/network/ServerGamePacketListenerImpl/vehicleFirstGoodY +FD: net/minecraft/server/network/ServerGamePacketListenerImpl/f_9762_ net/minecraft/server/network/ServerGamePacketListenerImpl/vehicleFirstGoodZ +FD: net/minecraft/server/network/ServerGamePacketListenerImpl/f_9763_ net/minecraft/server/network/ServerGamePacketListenerImpl/vehicleLastGoodX +FD: net/minecraft/server/network/ServerGamePacketListenerImpl/f_9764_ net/minecraft/server/network/ServerGamePacketListenerImpl/vehicleLastGoodY +FD: net/minecraft/server/network/ServerGamePacketListenerImpl/f_9765_ net/minecraft/server/network/ServerGamePacketListenerImpl/vehicleLastGoodZ +FD: net/minecraft/server/network/ServerGamePacketListenerImpl/f_9766_ net/minecraft/server/network/ServerGamePacketListenerImpl/awaitingPositionFromClient +FD: net/minecraft/server/network/ServerGamePacketListenerImpl/f_9767_ net/minecraft/server/network/ServerGamePacketListenerImpl/awaitingTeleport +FD: net/minecraft/server/network/ServerGamePacketListenerImpl$1/f_143670_ net/minecraft/server/network/ServerGamePacketListenerImpl$1/val$target +FD: net/minecraft/server/network/ServerGamePacketListenerImpl$1/f_143671_ net/minecraft/server/network/ServerGamePacketListenerImpl$1/this$0 +FD: net/minecraft/server/network/ServerGamePacketListenerImpl$1/f_243930_ net/minecraft/server/network/ServerGamePacketListenerImpl$1/val$level +FD: net/minecraft/server/network/ServerGamePacketListenerImpl$2/f_143689_ net/minecraft/server/network/ServerGamePacketListenerImpl$2/$SwitchMap$net$minecraft$world$level$block$entity$CommandBlockEntity$Mode +FD: net/minecraft/server/network/ServerGamePacketListenerImpl$2/f_143690_ net/minecraft/server/network/ServerGamePacketListenerImpl$2/$SwitchMap$net$minecraft$network$protocol$game$ServerboundPlayerActionPacket$Action +FD: net/minecraft/server/network/ServerGamePacketListenerImpl$2/f_143691_ net/minecraft/server/network/ServerGamePacketListenerImpl$2/$SwitchMap$net$minecraft$network$protocol$game$ServerboundPlayerCommandPacket$Action +FD: net/minecraft/server/network/ServerGamePacketListenerImpl$2/f_143692_ net/minecraft/server/network/ServerGamePacketListenerImpl$2/$SwitchMap$net$minecraft$network$protocol$game$ServerboundClientCommandPacket$Action +FD: net/minecraft/server/network/ServerHandshakePacketListenerImpl/f_9964_ net/minecraft/server/network/ServerHandshakePacketListenerImpl/IGNORE_STATUS_REASON +FD: net/minecraft/server/network/ServerHandshakePacketListenerImpl/f_9965_ net/minecraft/server/network/ServerHandshakePacketListenerImpl/server +FD: net/minecraft/server/network/ServerHandshakePacketListenerImpl/f_9966_ net/minecraft/server/network/ServerHandshakePacketListenerImpl/connection +FD: net/minecraft/server/network/ServerHandshakePacketListenerImpl$1/f_9976_ net/minecraft/server/network/ServerHandshakePacketListenerImpl$1/$SwitchMap$net$minecraft$network$ConnectionProtocol +FD: net/minecraft/server/network/ServerLoginPacketListenerImpl/f_10013_ net/minecraft/server/network/ServerLoginPacketListenerImpl/connection +FD: net/minecraft/server/network/ServerLoginPacketListenerImpl/f_10014_ net/minecraft/server/network/ServerLoginPacketListenerImpl/UNIQUE_THREAD_ID +FD: net/minecraft/server/network/ServerLoginPacketListenerImpl/f_10015_ net/minecraft/server/network/ServerLoginPacketListenerImpl/LOGGER +FD: net/minecraft/server/network/ServerLoginPacketListenerImpl/f_10016_ net/minecraft/server/network/ServerLoginPacketListenerImpl/RANDOM +FD: net/minecraft/server/network/ServerLoginPacketListenerImpl/f_10018_ net/minecraft/server/network/ServerLoginPacketListenerImpl/server +FD: net/minecraft/server/network/ServerLoginPacketListenerImpl/f_10019_ net/minecraft/server/network/ServerLoginPacketListenerImpl/state +FD: net/minecraft/server/network/ServerLoginPacketListenerImpl/f_10020_ net/minecraft/server/network/ServerLoginPacketListenerImpl/tick +FD: net/minecraft/server/network/ServerLoginPacketListenerImpl/f_10021_ net/minecraft/server/network/ServerLoginPacketListenerImpl/gameProfile +FD: net/minecraft/server/network/ServerLoginPacketListenerImpl/f_10022_ net/minecraft/server/network/ServerLoginPacketListenerImpl/serverId +FD: net/minecraft/server/network/ServerLoginPacketListenerImpl/f_10024_ net/minecraft/server/network/ServerLoginPacketListenerImpl/delayedAcceptPlayer +FD: net/minecraft/server/network/ServerLoginPacketListenerImpl/f_143698_ net/minecraft/server/network/ServerLoginPacketListenerImpl/MAX_TICKS_BEFORE_LOGIN +FD: net/minecraft/server/network/ServerLoginPacketListenerImpl/f_252396_ net/minecraft/server/network/ServerLoginPacketListenerImpl/challenge +FD: net/minecraft/server/network/ServerLoginPacketListenerImpl$1/f_10058_ net/minecraft/server/network/ServerLoginPacketListenerImpl$1/val$digest +FD: net/minecraft/server/network/ServerLoginPacketListenerImpl$1/f_10059_ net/minecraft/server/network/ServerLoginPacketListenerImpl$1/this$0 +FD: net/minecraft/server/network/ServerLoginPacketListenerImpl$State/$VALUES net/minecraft/server/network/ServerLoginPacketListenerImpl$State/$VALUES +FD: net/minecraft/server/network/ServerLoginPacketListenerImpl$State/ACCEPTED net/minecraft/server/network/ServerLoginPacketListenerImpl$State/ACCEPTED +FD: net/minecraft/server/network/ServerLoginPacketListenerImpl$State/AUTHENTICATING net/minecraft/server/network/ServerLoginPacketListenerImpl$State/AUTHENTICATING +FD: net/minecraft/server/network/ServerLoginPacketListenerImpl$State/DELAY_ACCEPT net/minecraft/server/network/ServerLoginPacketListenerImpl$State/DELAY_ACCEPT +FD: net/minecraft/server/network/ServerLoginPacketListenerImpl$State/HELLO net/minecraft/server/network/ServerLoginPacketListenerImpl$State/HELLO +FD: net/minecraft/server/network/ServerLoginPacketListenerImpl$State/KEY net/minecraft/server/network/ServerLoginPacketListenerImpl$State/KEY +FD: net/minecraft/server/network/ServerLoginPacketListenerImpl$State/NEGOTIATING net/minecraft/server/network/ServerLoginPacketListenerImpl$State/NEGOTIATING +FD: net/minecraft/server/network/ServerLoginPacketListenerImpl$State/READY_TO_ACCEPT net/minecraft/server/network/ServerLoginPacketListenerImpl$State/READY_TO_ACCEPT +FD: net/minecraft/server/network/ServerStatusPacketListenerImpl/f_10081_ net/minecraft/server/network/ServerStatusPacketListenerImpl/DISCONNECT_REASON +FD: net/minecraft/server/network/ServerStatusPacketListenerImpl/f_10083_ net/minecraft/server/network/ServerStatusPacketListenerImpl/connection +FD: net/minecraft/server/network/ServerStatusPacketListenerImpl/f_10084_ net/minecraft/server/network/ServerStatusPacketListenerImpl/hasRequestedStatus +FD: net/minecraft/server/network/ServerStatusPacketListenerImpl/f_271204_ net/minecraft/server/network/ServerStatusPacketListenerImpl/status +FD: net/minecraft/server/network/TextFilter/f_143703_ net/minecraft/server/network/TextFilter/DUMMY +FD: net/minecraft/server/network/TextFilterClient/f_10098_ net/minecraft/server/network/TextFilterClient/LOGGER +FD: net/minecraft/server/network/TextFilterClient/f_10099_ net/minecraft/server/network/TextFilterClient/WORKER_COUNT +FD: net/minecraft/server/network/TextFilterClient/f_10100_ net/minecraft/server/network/TextFilterClient/THREAD_FACTORY +FD: net/minecraft/server/network/TextFilterClient/f_10101_ net/minecraft/server/network/TextFilterClient/chatEndpoint +FD: net/minecraft/server/network/TextFilterClient/f_10102_ net/minecraft/server/network/TextFilterClient/joinEndpoint +FD: net/minecraft/server/network/TextFilterClient/f_10103_ net/minecraft/server/network/TextFilterClient/leaveEndpoint +FD: net/minecraft/server/network/TextFilterClient/f_10104_ net/minecraft/server/network/TextFilterClient/authKey +FD: net/minecraft/server/network/TextFilterClient/f_10107_ net/minecraft/server/network/TextFilterClient/chatIgnoreStrategy +FD: net/minecraft/server/network/TextFilterClient/f_10108_ net/minecraft/server/network/TextFilterClient/workerPool +FD: net/minecraft/server/network/TextFilterClient/f_215270_ net/minecraft/server/network/TextFilterClient/DEFAULT_ENDPOINT +FD: net/minecraft/server/network/TextFilterClient/f_215271_ net/minecraft/server/network/TextFilterClient/chatEncoder +FD: net/minecraft/server/network/TextFilterClient/f_215272_ net/minecraft/server/network/TextFilterClient/joinEncoder +FD: net/minecraft/server/network/TextFilterClient/f_215273_ net/minecraft/server/network/TextFilterClient/leaveEncoder +FD: net/minecraft/server/network/TextFilterClient$IgnoreStrategy/f_10162_ net/minecraft/server/network/TextFilterClient$IgnoreStrategy/NEVER_IGNORE +FD: net/minecraft/server/network/TextFilterClient$IgnoreStrategy/f_10163_ net/minecraft/server/network/TextFilterClient$IgnoreStrategy/IGNORE_FULLY_FILTERED +FD: net/minecraft/server/network/TextFilterClient$PlayerContext/f_10174_ net/minecraft/server/network/TextFilterClient$PlayerContext/this$0 +FD: net/minecraft/server/network/TextFilterClient$PlayerContext/f_10175_ net/minecraft/server/network/TextFilterClient$PlayerContext/profile +FD: net/minecraft/server/network/TextFilterClient$PlayerContext/f_10176_ net/minecraft/server/network/TextFilterClient$PlayerContext/streamExecutor +FD: net/minecraft/server/packs/AbstractPackResources/f_10204_ net/minecraft/server/packs/AbstractPackResources/LOGGER +FD: net/minecraft/server/packs/AbstractPackResources/f_243737_ net/minecraft/server/packs/AbstractPackResources/name +FD: net/minecraft/server/packs/AbstractPackResources/f_254645_ net/minecraft/server/packs/AbstractPackResources/isBuiltin +FD: net/minecraft/server/packs/BuiltInMetadata/f_243980_ net/minecraft/server/packs/BuiltInMetadata/values +FD: net/minecraft/server/packs/BuiltInMetadata/f_244025_ net/minecraft/server/packs/BuiltInMetadata/EMPTY +FD: net/minecraft/server/packs/FeatureFlagsMetadataSection/f_244197_ net/minecraft/server/packs/FeatureFlagsMetadataSection/flags +FD: net/minecraft/server/packs/FeatureFlagsMetadataSection/f_244224_ net/minecraft/server/packs/FeatureFlagsMetadataSection/CODEC +FD: net/minecraft/server/packs/FeatureFlagsMetadataSection/f_244642_ net/minecraft/server/packs/FeatureFlagsMetadataSection/TYPE +FD: net/minecraft/server/packs/FilePackResources/f_10232_ net/minecraft/server/packs/FilePackResources/SPLITTER +FD: net/minecraft/server/packs/FilePackResources/f_10233_ net/minecraft/server/packs/FilePackResources/zipFile +FD: net/minecraft/server/packs/FilePackResources/f_215322_ net/minecraft/server/packs/FilePackResources/LOGGER +FD: net/minecraft/server/packs/FilePackResources/f_243662_ net/minecraft/server/packs/FilePackResources/failedToLoad +FD: net/minecraft/server/packs/FilePackResources/f_243750_ net/minecraft/server/packs/FilePackResources/file +FD: net/minecraft/server/packs/PackResources/f_143748_ net/minecraft/server/packs/PackResources/METADATA_EXTENSION +FD: net/minecraft/server/packs/PackResources/f_143749_ net/minecraft/server/packs/PackResources/PACK_META +FD: net/minecraft/server/packs/PackType/$VALUES net/minecraft/server/packs/PackType/$VALUES +FD: net/minecraft/server/packs/PackType/CLIENT_RESOURCES net/minecraft/server/packs/PackType/CLIENT_RESOURCES +FD: net/minecraft/server/packs/PackType/SERVER_DATA net/minecraft/server/packs/PackType/SERVER_DATA +FD: net/minecraft/server/packs/PackType/f_10298_ net/minecraft/server/packs/PackType/directory +FD: net/minecraft/server/packs/PathPackResources/f_243919_ net/minecraft/server/packs/PathPackResources/root +FD: net/minecraft/server/packs/PathPackResources/f_244043_ net/minecraft/server/packs/PathPackResources/LOGGER +FD: net/minecraft/server/packs/PathPackResources/f_244478_ net/minecraft/server/packs/PathPackResources/PATH_JOINER +FD: net/minecraft/server/packs/VanillaPackResources/f_10314_ net/minecraft/server/packs/VanillaPackResources/namespaces +FD: net/minecraft/server/packs/VanillaPackResources/f_10315_ net/minecraft/server/packs/VanillaPackResources/LOGGER +FD: net/minecraft/server/packs/VanillaPackResources/f_243789_ net/minecraft/server/packs/VanillaPackResources/metadata +FD: net/minecraft/server/packs/VanillaPackResources/f_244169_ net/minecraft/server/packs/VanillaPackResources/rootPaths +FD: net/minecraft/server/packs/VanillaPackResources/f_244459_ net/minecraft/server/packs/VanillaPackResources/pathsForType +FD: net/minecraft/server/packs/VanillaPackResourcesBuilder/f_243924_ net/minecraft/server/packs/VanillaPackResourcesBuilder/metadata +FD: net/minecraft/server/packs/VanillaPackResourcesBuilder/f_243956_ net/minecraft/server/packs/VanillaPackResourcesBuilder/pathsForType +FD: net/minecraft/server/packs/VanillaPackResourcesBuilder/f_243987_ net/minecraft/server/packs/VanillaPackResourcesBuilder/ROOT_DIR_BY_TYPE +FD: net/minecraft/server/packs/VanillaPackResourcesBuilder/f_244395_ net/minecraft/server/packs/VanillaPackResourcesBuilder/developmentConfig +FD: net/minecraft/server/packs/VanillaPackResourcesBuilder/f_244434_ net/minecraft/server/packs/VanillaPackResourcesBuilder/rootPaths +FD: net/minecraft/server/packs/VanillaPackResourcesBuilder/f_244501_ net/minecraft/server/packs/VanillaPackResourcesBuilder/LOGGER +FD: net/minecraft/server/packs/VanillaPackResourcesBuilder/f_244548_ net/minecraft/server/packs/VanillaPackResourcesBuilder/namespaces +FD: net/minecraft/server/packs/linkfs/DummyFileAttributes/f_244405_ net/minecraft/server/packs/linkfs/DummyFileAttributes/EPOCH +FD: net/minecraft/server/packs/linkfs/LinkFSFileStore/f_244515_ net/minecraft/server/packs/linkfs/LinkFSFileStore/name +FD: net/minecraft/server/packs/linkfs/LinkFSPath/f_243677_ net/minecraft/server/packs/linkfs/LinkFSPath/pathString +FD: net/minecraft/server/packs/linkfs/LinkFSPath/f_243746_ net/minecraft/server/packs/linkfs/LinkFSPath/FILE_ATTRIBUTES +FD: net/minecraft/server/packs/linkfs/LinkFSPath/f_243881_ net/minecraft/server/packs/linkfs/LinkFSPath/DIRECTORY_ATTRIBUTES +FD: net/minecraft/server/packs/linkfs/LinkFSPath/f_243986_ net/minecraft/server/packs/linkfs/LinkFSPath/fileSystem +FD: net/minecraft/server/packs/linkfs/LinkFSPath/f_244000_ net/minecraft/server/packs/linkfs/LinkFSPath/pathContents +FD: net/minecraft/server/packs/linkfs/LinkFSPath/f_244015_ net/minecraft/server/packs/linkfs/LinkFSPath/pathToRoot +FD: net/minecraft/server/packs/linkfs/LinkFSPath/f_244036_ net/minecraft/server/packs/linkfs/LinkFSPath/name +FD: net/minecraft/server/packs/linkfs/LinkFSPath/f_244038_ net/minecraft/server/packs/linkfs/LinkFSPath/PATH_COMPARATOR +FD: net/minecraft/server/packs/linkfs/LinkFSPath/f_244587_ net/minecraft/server/packs/linkfs/LinkFSPath/parent +FD: net/minecraft/server/packs/linkfs/LinkFSPath$3/f_243951_ net/minecraft/server/packs/linkfs/LinkFSPath$3/this$0 +FD: net/minecraft/server/packs/linkfs/LinkFSProvider/f_244482_ net/minecraft/server/packs/linkfs/LinkFSProvider/SCHEME +FD: net/minecraft/server/packs/linkfs/LinkFSProvider$1/f_244285_ net/minecraft/server/packs/linkfs/LinkFSProvider$1/val$directoryContents +FD: net/minecraft/server/packs/linkfs/LinkFSProvider$1/f_244397_ net/minecraft/server/packs/linkfs/LinkFSProvider$1/this$0 +FD: net/minecraft/server/packs/linkfs/LinkFSProvider$1/f_244629_ net/minecraft/server/packs/linkfs/LinkFSProvider$1/val$filter +FD: net/minecraft/server/packs/linkfs/LinkFSProvider$2/f_244192_ net/minecraft/server/packs/linkfs/LinkFSProvider$2/$SwitchMap$java$nio$file$AccessMode +FD: net/minecraft/server/packs/linkfs/LinkFileSystem/f_243682_ net/minecraft/server/packs/linkfs/LinkFileSystem/PATH_SEPARATOR +FD: net/minecraft/server/packs/linkfs/LinkFileSystem/f_243742_ net/minecraft/server/packs/linkfs/LinkFileSystem/store +FD: net/minecraft/server/packs/linkfs/LinkFileSystem/f_243804_ net/minecraft/server/packs/linkfs/LinkFileSystem/VIEWS +FD: net/minecraft/server/packs/linkfs/LinkFileSystem/f_244484_ net/minecraft/server/packs/linkfs/LinkFileSystem/PATH_SPLITTER +FD: net/minecraft/server/packs/linkfs/LinkFileSystem/f_244566_ net/minecraft/server/packs/linkfs/LinkFileSystem/provider +FD: net/minecraft/server/packs/linkfs/LinkFileSystem/f_244599_ net/minecraft/server/packs/linkfs/LinkFileSystem/root +FD: net/minecraft/server/packs/linkfs/LinkFileSystem$Builder/f_244601_ net/minecraft/server/packs/linkfs/LinkFileSystem$Builder/root +FD: net/minecraft/server/packs/linkfs/LinkFileSystem$DirectoryEntry/f_244268_ net/minecraft/server/packs/linkfs/LinkFileSystem$DirectoryEntry/children +FD: net/minecraft/server/packs/linkfs/LinkFileSystem$DirectoryEntry/f_244526_ net/minecraft/server/packs/linkfs/LinkFileSystem$DirectoryEntry/files +FD: net/minecraft/server/packs/linkfs/PathContents/f_244185_ net/minecraft/server/packs/linkfs/PathContents/RELATIVE +FD: net/minecraft/server/packs/linkfs/PathContents/f_244612_ net/minecraft/server/packs/linkfs/PathContents/MISSING +FD: net/minecraft/server/packs/linkfs/PathContents$DirectoryContents/f_243989_ net/minecraft/server/packs/linkfs/PathContents$DirectoryContents/children +FD: net/minecraft/server/packs/linkfs/PathContents$FileContents/f_244421_ net/minecraft/server/packs/linkfs/PathContents$FileContents/contents +FD: net/minecraft/server/packs/metadata/MetadataSectionType$1/f_243899_ net/minecraft/server/packs/metadata/MetadataSectionType$1/val$codec +FD: net/minecraft/server/packs/metadata/MetadataSectionType$1/f_244496_ net/minecraft/server/packs/metadata/MetadataSectionType$1/val$name +FD: net/minecraft/server/packs/metadata/pack/PackMetadataSection/f_10367_ net/minecraft/server/packs/metadata/pack/PackMetadataSection/description +FD: net/minecraft/server/packs/metadata/pack/PackMetadataSection/f_10368_ net/minecraft/server/packs/metadata/pack/PackMetadataSection/packFormat +FD: net/minecraft/server/packs/metadata/pack/PackMetadataSection/f_243696_ net/minecraft/server/packs/metadata/pack/PackMetadataSection/TYPE +FD: net/minecraft/server/packs/repository/BuiltInPackSource/f_243761_ net/minecraft/server/packs/repository/BuiltInPackSource/VANILLA_ID +FD: net/minecraft/server/packs/repository/BuiltInPackSource/f_244196_ net/minecraft/server/packs/repository/BuiltInPackSource/vanillaPack +FD: net/minecraft/server/packs/repository/BuiltInPackSource/f_244468_ net/minecraft/server/packs/repository/BuiltInPackSource/packType +FD: net/minecraft/server/packs/repository/BuiltInPackSource/f_244626_ net/minecraft/server/packs/repository/BuiltInPackSource/packDir +FD: net/minecraft/server/packs/repository/BuiltInPackSource/f_244636_ net/minecraft/server/packs/repository/BuiltInPackSource/LOGGER +FD: net/minecraft/server/packs/repository/FolderRepositorySource/f_10382_ net/minecraft/server/packs/repository/FolderRepositorySource/folder +FD: net/minecraft/server/packs/repository/FolderRepositorySource/f_10383_ net/minecraft/server/packs/repository/FolderRepositorySource/packSource +FD: net/minecraft/server/packs/repository/FolderRepositorySource/f_243749_ net/minecraft/server/packs/repository/FolderRepositorySource/packType +FD: net/minecraft/server/packs/repository/FolderRepositorySource/f_244616_ net/minecraft/server/packs/repository/FolderRepositorySource/LOGGER +FD: net/minecraft/server/packs/repository/Pack/f_10399_ net/minecraft/server/packs/repository/Pack/LOGGER +FD: net/minecraft/server/packs/repository/Pack/f_10401_ net/minecraft/server/packs/repository/Pack/id +FD: net/minecraft/server/packs/repository/Pack/f_10403_ net/minecraft/server/packs/repository/Pack/title +FD: net/minecraft/server/packs/repository/Pack/f_10404_ net/minecraft/server/packs/repository/Pack/description +FD: net/minecraft/server/packs/repository/Pack/f_10405_ net/minecraft/server/packs/repository/Pack/compatibility +FD: net/minecraft/server/packs/repository/Pack/f_10406_ net/minecraft/server/packs/repository/Pack/defaultPosition +FD: net/minecraft/server/packs/repository/Pack/f_10407_ net/minecraft/server/packs/repository/Pack/required +FD: net/minecraft/server/packs/repository/Pack/f_10408_ net/minecraft/server/packs/repository/Pack/fixedPosition +FD: net/minecraft/server/packs/repository/Pack/f_10409_ net/minecraft/server/packs/repository/Pack/packSource +FD: net/minecraft/server/packs/repository/Pack/f_244124_ net/minecraft/server/packs/repository/Pack/resources +FD: net/minecraft/server/packs/repository/Pack/f_244623_ net/minecraft/server/packs/repository/Pack/requestedFeatures +FD: net/minecraft/server/packs/repository/Pack$Info/f_244041_ net/minecraft/server/packs/repository/Pack$Info/requestedFeatures +FD: net/minecraft/server/packs/repository/Pack$Info/f_244194_ net/minecraft/server/packs/repository/Pack$Info/format +FD: net/minecraft/server/packs/repository/Pack$Info/f_244592_ net/minecraft/server/packs/repository/Pack$Info/description +FD: net/minecraft/server/packs/repository/Pack$Position/$VALUES net/minecraft/server/packs/repository/Pack$Position/$VALUES +FD: net/minecraft/server/packs/repository/Pack$Position/BOTTOM net/minecraft/server/packs/repository/Pack$Position/BOTTOM +FD: net/minecraft/server/packs/repository/Pack$Position/TOP net/minecraft/server/packs/repository/Pack$Position/TOP +FD: net/minecraft/server/packs/repository/PackCompatibility/$VALUES net/minecraft/server/packs/repository/PackCompatibility/$VALUES +FD: net/minecraft/server/packs/repository/PackCompatibility/COMPATIBLE net/minecraft/server/packs/repository/PackCompatibility/COMPATIBLE +FD: net/minecraft/server/packs/repository/PackCompatibility/TOO_NEW net/minecraft/server/packs/repository/PackCompatibility/TOO_NEW +FD: net/minecraft/server/packs/repository/PackCompatibility/TOO_OLD net/minecraft/server/packs/repository/PackCompatibility/TOO_OLD +FD: net/minecraft/server/packs/repository/PackCompatibility/f_10481_ net/minecraft/server/packs/repository/PackCompatibility/description +FD: net/minecraft/server/packs/repository/PackCompatibility/f_10482_ net/minecraft/server/packs/repository/PackCompatibility/confirmation +FD: net/minecraft/server/packs/repository/PackRepository/f_10497_ net/minecraft/server/packs/repository/PackRepository/sources +FD: net/minecraft/server/packs/repository/PackRepository/f_10498_ net/minecraft/server/packs/repository/PackRepository/available +FD: net/minecraft/server/packs/repository/PackRepository/f_10499_ net/minecraft/server/packs/repository/PackRepository/selected +FD: net/minecraft/server/packs/repository/PackSource/f_10527_ net/minecraft/server/packs/repository/PackSource/DEFAULT +FD: net/minecraft/server/packs/repository/PackSource/f_10528_ net/minecraft/server/packs/repository/PackSource/BUILT_IN +FD: net/minecraft/server/packs/repository/PackSource/f_10529_ net/minecraft/server/packs/repository/PackSource/WORLD +FD: net/minecraft/server/packs/repository/PackSource/f_10530_ net/minecraft/server/packs/repository/PackSource/SERVER +FD: net/minecraft/server/packs/repository/PackSource/f_244201_ net/minecraft/server/packs/repository/PackSource/FEATURE +FD: net/minecraft/server/packs/repository/PackSource/f_244536_ net/minecraft/server/packs/repository/PackSource/NO_DECORATION +FD: net/minecraft/server/packs/repository/PackSource$1/f_244157_ net/minecraft/server/packs/repository/PackSource$1/val$decorator +FD: net/minecraft/server/packs/repository/PackSource$1/f_244499_ net/minecraft/server/packs/repository/PackSource$1/val$addAutomatically +FD: net/minecraft/server/packs/repository/ServerPacksSource/f_143904_ net/minecraft/server/packs/repository/ServerPacksSource/BUILT_IN_METADATA +FD: net/minecraft/server/packs/repository/ServerPacksSource/f_243665_ net/minecraft/server/packs/repository/ServerPacksSource/VANILLA_NAME +FD: net/minecraft/server/packs/repository/ServerPacksSource/f_244259_ net/minecraft/server/packs/repository/ServerPacksSource/VERSION_METADATA_SECTION +FD: net/minecraft/server/packs/repository/ServerPacksSource/f_244456_ net/minecraft/server/packs/repository/ServerPacksSource/FEATURE_FLAGS_METADATA_SECTION +FD: net/minecraft/server/packs/repository/ServerPacksSource/f_244487_ net/minecraft/server/packs/repository/ServerPacksSource/PACKS_DIR +FD: net/minecraft/server/packs/resources/FallbackResourceManager/f_10599_ net/minecraft/server/packs/resources/FallbackResourceManager/fallbacks +FD: net/minecraft/server/packs/resources/FallbackResourceManager/f_10600_ net/minecraft/server/packs/resources/FallbackResourceManager/LOGGER +FD: net/minecraft/server/packs/resources/FallbackResourceManager/f_10601_ net/minecraft/server/packs/resources/FallbackResourceManager/type +FD: net/minecraft/server/packs/resources/FallbackResourceManager/f_10602_ net/minecraft/server/packs/resources/FallbackResourceManager/namespace +FD: net/minecraft/server/packs/resources/FallbackResourceManager$1ResourceWithSourceAndIndex/f_243853_ net/minecraft/server/packs/resources/FallbackResourceManager$1ResourceWithSourceAndIndex/packResources +FD: net/minecraft/server/packs/resources/FallbackResourceManager$1ResourceWithSourceAndIndex/f_244005_ net/minecraft/server/packs/resources/FallbackResourceManager$1ResourceWithSourceAndIndex/resource +FD: net/minecraft/server/packs/resources/FallbackResourceManager$1ResourceWithSourceAndIndex/f_244110_ net/minecraft/server/packs/resources/FallbackResourceManager$1ResourceWithSourceAndIndex/packIndex +FD: net/minecraft/server/packs/resources/FallbackResourceManager$EntryStack/f_215420_ net/minecraft/server/packs/resources/FallbackResourceManager$EntryStack/metadataLocation +FD: net/minecraft/server/packs/resources/FallbackResourceManager$EntryStack/f_243777_ net/minecraft/server/packs/resources/FallbackResourceManager$EntryStack/metaSources +FD: net/minecraft/server/packs/resources/FallbackResourceManager$EntryStack/f_244329_ net/minecraft/server/packs/resources/FallbackResourceManager$EntryStack/fileSources +FD: net/minecraft/server/packs/resources/FallbackResourceManager$EntryStack/f_244439_ net/minecraft/server/packs/resources/FallbackResourceManager$EntryStack/fileLocation +FD: net/minecraft/server/packs/resources/FallbackResourceManager$LeakedResourceWarningInputStream/f_10630_ net/minecraft/server/packs/resources/FallbackResourceManager$LeakedResourceWarningInputStream/message +FD: net/minecraft/server/packs/resources/FallbackResourceManager$LeakedResourceWarningInputStream/f_10631_ net/minecraft/server/packs/resources/FallbackResourceManager$LeakedResourceWarningInputStream/closed +FD: net/minecraft/server/packs/resources/FallbackResourceManager$PackEntry/f_215432_ net/minecraft/server/packs/resources/FallbackResourceManager$PackEntry/name +FD: net/minecraft/server/packs/resources/FallbackResourceManager$PackEntry/f_215433_ net/minecraft/server/packs/resources/FallbackResourceManager$PackEntry/resources +FD: net/minecraft/server/packs/resources/FallbackResourceManager$PackEntry/f_215434_ net/minecraft/server/packs/resources/FallbackResourceManager$PackEntry/filter +FD: net/minecraft/server/packs/resources/FallbackResourceManager$ResourceWithSource/f_244214_ net/minecraft/server/packs/resources/FallbackResourceManager$ResourceWithSource/source +FD: net/minecraft/server/packs/resources/FallbackResourceManager$ResourceWithSource/f_244331_ net/minecraft/server/packs/resources/FallbackResourceManager$ResourceWithSource/resource +FD: net/minecraft/server/packs/resources/MultiPackResourceManager/f_203794_ net/minecraft/server/packs/resources/MultiPackResourceManager/namespacedManagers +FD: net/minecraft/server/packs/resources/MultiPackResourceManager/f_203795_ net/minecraft/server/packs/resources/MultiPackResourceManager/packs +FD: net/minecraft/server/packs/resources/MultiPackResourceManager/f_215463_ net/minecraft/server/packs/resources/MultiPackResourceManager/LOGGER +FD: net/minecraft/server/packs/resources/ProfiledReloadInstance/f_10645_ net/minecraft/server/packs/resources/ProfiledReloadInstance/LOGGER +FD: net/minecraft/server/packs/resources/ProfiledReloadInstance/f_10646_ net/minecraft/server/packs/resources/ProfiledReloadInstance/total +FD: net/minecraft/server/packs/resources/ProfiledReloadInstance$State/f_10686_ net/minecraft/server/packs/resources/ProfiledReloadInstance$State/name +FD: net/minecraft/server/packs/resources/ProfiledReloadInstance$State/f_10687_ net/minecraft/server/packs/resources/ProfiledReloadInstance$State/preparationResult +FD: net/minecraft/server/packs/resources/ProfiledReloadInstance$State/f_10688_ net/minecraft/server/packs/resources/ProfiledReloadInstance$State/reloadResult +FD: net/minecraft/server/packs/resources/ProfiledReloadInstance$State/f_10689_ net/minecraft/server/packs/resources/ProfiledReloadInstance$State/preparationNanos +FD: net/minecraft/server/packs/resources/ProfiledReloadInstance$State/f_10690_ net/minecraft/server/packs/resources/ProfiledReloadInstance$State/reloadNanos +FD: net/minecraft/server/packs/resources/ReloadableResourceManager/f_203814_ net/minecraft/server/packs/resources/ReloadableResourceManager/LOGGER +FD: net/minecraft/server/packs/resources/ReloadableResourceManager/f_203815_ net/minecraft/server/packs/resources/ReloadableResourceManager/resources +FD: net/minecraft/server/packs/resources/ReloadableResourceManager/f_203816_ net/minecraft/server/packs/resources/ReloadableResourceManager/listeners +FD: net/minecraft/server/packs/resources/ReloadableResourceManager/f_203817_ net/minecraft/server/packs/resources/ReloadableResourceManager/type +FD: net/minecraft/server/packs/resources/Resource/f_215496_ net/minecraft/server/packs/resources/Resource/streamSupplier +FD: net/minecraft/server/packs/resources/Resource/f_215497_ net/minecraft/server/packs/resources/Resource/metadataSupplier +FD: net/minecraft/server/packs/resources/Resource/f_215498_ net/minecraft/server/packs/resources/Resource/cachedMetadata +FD: net/minecraft/server/packs/resources/Resource/f_244326_ net/minecraft/server/packs/resources/Resource/source +FD: net/minecraft/server/packs/resources/ResourceFilterSection/f_215514_ net/minecraft/server/packs/resources/ResourceFilterSection/CODEC +FD: net/minecraft/server/packs/resources/ResourceFilterSection/f_215515_ net/minecraft/server/packs/resources/ResourceFilterSection/blockList +FD: net/minecraft/server/packs/resources/ResourceFilterSection/f_244163_ net/minecraft/server/packs/resources/ResourceFilterSection/TYPE +FD: net/minecraft/server/packs/resources/ResourceManager$Empty/$VALUES net/minecraft/server/packs/resources/ResourceManager$Empty/$VALUES +FD: net/minecraft/server/packs/resources/ResourceManager$Empty/INSTANCE net/minecraft/server/packs/resources/ResourceManager$Empty/INSTANCE +FD: net/minecraft/server/packs/resources/ResourceMetadata/f_215577_ net/minecraft/server/packs/resources/ResourceMetadata/EMPTY +FD: net/minecraft/server/packs/resources/ResourceMetadata/f_244068_ net/minecraft/server/packs/resources/ResourceMetadata/EMPTY_SUPPLIER +FD: net/minecraft/server/packs/resources/ResourceMetadata$2/f_215585_ net/minecraft/server/packs/resources/ResourceMetadata$2/val$metadata +FD: net/minecraft/server/packs/resources/SimpleJsonResourceReloadListener/f_10762_ net/minecraft/server/packs/resources/SimpleJsonResourceReloadListener/LOGGER +FD: net/minecraft/server/packs/resources/SimpleJsonResourceReloadListener/f_10764_ net/minecraft/server/packs/resources/SimpleJsonResourceReloadListener/gson +FD: net/minecraft/server/packs/resources/SimpleJsonResourceReloadListener/f_10765_ net/minecraft/server/packs/resources/SimpleJsonResourceReloadListener/directory +FD: net/minecraft/server/packs/resources/SimpleReloadInstance/f_10799_ net/minecraft/server/packs/resources/SimpleReloadInstance/allPreparations +FD: net/minecraft/server/packs/resources/SimpleReloadInstance/f_10800_ net/minecraft/server/packs/resources/SimpleReloadInstance/allDone +FD: net/minecraft/server/packs/resources/SimpleReloadInstance/f_10801_ net/minecraft/server/packs/resources/SimpleReloadInstance/preparingListeners +FD: net/minecraft/server/packs/resources/SimpleReloadInstance/f_10802_ net/minecraft/server/packs/resources/SimpleReloadInstance/listenerCount +FD: net/minecraft/server/packs/resources/SimpleReloadInstance/f_10803_ net/minecraft/server/packs/resources/SimpleReloadInstance/startedReloads +FD: net/minecraft/server/packs/resources/SimpleReloadInstance/f_10804_ net/minecraft/server/packs/resources/SimpleReloadInstance/finishedReloads +FD: net/minecraft/server/packs/resources/SimpleReloadInstance/f_10805_ net/minecraft/server/packs/resources/SimpleReloadInstance/startedTaskCounter +FD: net/minecraft/server/packs/resources/SimpleReloadInstance/f_10806_ net/minecraft/server/packs/resources/SimpleReloadInstance/doneTaskCounter +FD: net/minecraft/server/packs/resources/SimpleReloadInstance/f_143937_ net/minecraft/server/packs/resources/SimpleReloadInstance/PREPARATION_PROGRESS_WEIGHT +FD: net/minecraft/server/packs/resources/SimpleReloadInstance/f_143938_ net/minecraft/server/packs/resources/SimpleReloadInstance/EXTRA_RELOAD_PROGRESS_WEIGHT +FD: net/minecraft/server/packs/resources/SimpleReloadInstance/f_143939_ net/minecraft/server/packs/resources/SimpleReloadInstance/LISTENER_PROGRESS_WEIGHT +FD: net/minecraft/server/packs/resources/SimpleReloadInstance$1/f_10846_ net/minecraft/server/packs/resources/SimpleReloadInstance$1/val$mainThreadExecutor +FD: net/minecraft/server/packs/resources/SimpleReloadInstance$1/f_10847_ net/minecraft/server/packs/resources/SimpleReloadInstance$1/val$listener +FD: net/minecraft/server/packs/resources/SimpleReloadInstance$1/f_10848_ net/minecraft/server/packs/resources/SimpleReloadInstance$1/val$previousTask +FD: net/minecraft/server/packs/resources/SimpleReloadInstance$1/f_10849_ net/minecraft/server/packs/resources/SimpleReloadInstance$1/this$0 +FD: net/minecraft/server/players/BanListEntry/f_10943_ net/minecraft/server/players/BanListEntry/DATE_FORMAT +FD: net/minecraft/server/players/BanListEntry/f_10944_ net/minecraft/server/players/BanListEntry/created +FD: net/minecraft/server/players/BanListEntry/f_10945_ net/minecraft/server/players/BanListEntry/source +FD: net/minecraft/server/players/BanListEntry/f_10946_ net/minecraft/server/players/BanListEntry/expires +FD: net/minecraft/server/players/BanListEntry/f_10947_ net/minecraft/server/players/BanListEntry/reason +FD: net/minecraft/server/players/BanListEntry/f_143953_ net/minecraft/server/players/BanListEntry/EXPIRES_NEVER +FD: net/minecraft/server/players/GameProfileCache/f_10964_ net/minecraft/server/players/GameProfileCache/LOGGER +FD: net/minecraft/server/players/GameProfileCache/f_10965_ net/minecraft/server/players/GameProfileCache/usesAuthentication +FD: net/minecraft/server/players/GameProfileCache/f_10966_ net/minecraft/server/players/GameProfileCache/profilesByName +FD: net/minecraft/server/players/GameProfileCache/f_10967_ net/minecraft/server/players/GameProfileCache/profilesByUUID +FD: net/minecraft/server/players/GameProfileCache/f_10968_ net/minecraft/server/players/GameProfileCache/profileRepository +FD: net/minecraft/server/players/GameProfileCache/f_10969_ net/minecraft/server/players/GameProfileCache/gson +FD: net/minecraft/server/players/GameProfileCache/f_10970_ net/minecraft/server/players/GameProfileCache/file +FD: net/minecraft/server/players/GameProfileCache/f_10971_ net/minecraft/server/players/GameProfileCache/operationCount +FD: net/minecraft/server/players/GameProfileCache/f_143955_ net/minecraft/server/players/GameProfileCache/GAMEPROFILES_MRU_LIMIT +FD: net/minecraft/server/players/GameProfileCache/f_143956_ net/minecraft/server/players/GameProfileCache/GAMEPROFILES_EXPIRATION_MONTHS +FD: net/minecraft/server/players/GameProfileCache/f_143957_ net/minecraft/server/players/GameProfileCache/requests +FD: net/minecraft/server/players/GameProfileCache/f_143958_ net/minecraft/server/players/GameProfileCache/executor +FD: net/minecraft/server/players/GameProfileCache$1/f_11010_ net/minecraft/server/players/GameProfileCache$1/val$result +FD: net/minecraft/server/players/GameProfileCache$GameProfileInfo/f_11018_ net/minecraft/server/players/GameProfileCache$GameProfileInfo/profile +FD: net/minecraft/server/players/GameProfileCache$GameProfileInfo/f_11019_ net/minecraft/server/players/GameProfileCache$GameProfileInfo/expirationDate +FD: net/minecraft/server/players/GameProfileCache$GameProfileInfo/f_11020_ net/minecraft/server/players/GameProfileCache$GameProfileInfo/lastAccess +FD: net/minecraft/server/players/OldUsersConverter/f_11062_ net/minecraft/server/players/OldUsersConverter/OLD_IPBANLIST +FD: net/minecraft/server/players/OldUsersConverter/f_11063_ net/minecraft/server/players/OldUsersConverter/OLD_USERBANLIST +FD: net/minecraft/server/players/OldUsersConverter/f_11064_ net/minecraft/server/players/OldUsersConverter/OLD_OPLIST +FD: net/minecraft/server/players/OldUsersConverter/f_11065_ net/minecraft/server/players/OldUsersConverter/OLD_WHITELIST +FD: net/minecraft/server/players/OldUsersConverter/f_11066_ net/minecraft/server/players/OldUsersConverter/LOGGER +FD: net/minecraft/server/players/OldUsersConverter$1/f_11112_ net/minecraft/server/players/OldUsersConverter$1/val$server +FD: net/minecraft/server/players/OldUsersConverter$1/f_11113_ net/minecraft/server/players/OldUsersConverter$1/val$userMap +FD: net/minecraft/server/players/OldUsersConverter$1/f_11114_ net/minecraft/server/players/OldUsersConverter$1/val$bans +FD: net/minecraft/server/players/OldUsersConverter$2/f_11124_ net/minecraft/server/players/OldUsersConverter$2/val$server +FD: net/minecraft/server/players/OldUsersConverter$2/f_11125_ net/minecraft/server/players/OldUsersConverter$2/val$opsList +FD: net/minecraft/server/players/OldUsersConverter$3/f_11134_ net/minecraft/server/players/OldUsersConverter$3/val$server +FD: net/minecraft/server/players/OldUsersConverter$3/f_11135_ net/minecraft/server/players/OldUsersConverter$3/val$whitelist +FD: net/minecraft/server/players/OldUsersConverter$4/f_11144_ net/minecraft/server/players/OldUsersConverter$4/val$server +FD: net/minecraft/server/players/OldUsersConverter$4/f_11145_ net/minecraft/server/players/OldUsersConverter$4/val$profiles +FD: net/minecraft/server/players/OldUsersConverter$5/f_11154_ net/minecraft/server/players/OldUsersConverter$5/val$server +FD: net/minecraft/server/players/OldUsersConverter$5/f_11155_ net/minecraft/server/players/OldUsersConverter$5/val$worldNewPlayerDirectory +FD: net/minecraft/server/players/OldUsersConverter$5/f_11156_ net/minecraft/server/players/OldUsersConverter$5/val$unknownPlayerDirectory +FD: net/minecraft/server/players/OldUsersConverter$5/f_11157_ net/minecraft/server/players/OldUsersConverter$5/val$worldPlayerDirectory +FD: net/minecraft/server/players/OldUsersConverter$5/f_11158_ net/minecraft/server/players/OldUsersConverter$5/val$names +FD: net/minecraft/server/players/PlayerList/f_11188_ net/minecraft/server/players/PlayerList/LOGGER +FD: net/minecraft/server/players/PlayerList/f_11189_ net/minecraft/server/players/PlayerList/USERBANLIST_FILE +FD: net/minecraft/server/players/PlayerList/f_11190_ net/minecraft/server/players/PlayerList/IPBANLIST_FILE +FD: net/minecraft/server/players/PlayerList/f_11191_ net/minecraft/server/players/PlayerList/OPLIST_FILE +FD: net/minecraft/server/players/PlayerList/f_11192_ net/minecraft/server/players/PlayerList/WHITELIST_FILE +FD: net/minecraft/server/players/PlayerList/f_11193_ net/minecraft/server/players/PlayerList/maxPlayers +FD: net/minecraft/server/players/PlayerList/f_11194_ net/minecraft/server/players/PlayerList/BAN_DATE_FORMAT +FD: net/minecraft/server/players/PlayerList/f_11195_ net/minecraft/server/players/PlayerList/server +FD: net/minecraft/server/players/PlayerList/f_11196_ net/minecraft/server/players/PlayerList/players +FD: net/minecraft/server/players/PlayerList/f_11197_ net/minecraft/server/players/PlayerList/playersByUUID +FD: net/minecraft/server/players/PlayerList/f_11198_ net/minecraft/server/players/PlayerList/bans +FD: net/minecraft/server/players/PlayerList/f_11199_ net/minecraft/server/players/PlayerList/ipBans +FD: net/minecraft/server/players/PlayerList/f_11200_ net/minecraft/server/players/PlayerList/ops +FD: net/minecraft/server/players/PlayerList/f_11201_ net/minecraft/server/players/PlayerList/whitelist +FD: net/minecraft/server/players/PlayerList/f_11202_ net/minecraft/server/players/PlayerList/stats +FD: net/minecraft/server/players/PlayerList/f_11203_ net/minecraft/server/players/PlayerList/advancements +FD: net/minecraft/server/players/PlayerList/f_11204_ net/minecraft/server/players/PlayerList/playerIo +FD: net/minecraft/server/players/PlayerList/f_11205_ net/minecraft/server/players/PlayerList/doWhiteList +FD: net/minecraft/server/players/PlayerList/f_11207_ net/minecraft/server/players/PlayerList/viewDistance +FD: net/minecraft/server/players/PlayerList/f_11209_ net/minecraft/server/players/PlayerList/allowCheatsForAllPlayers +FD: net/minecraft/server/players/PlayerList/f_11210_ net/minecraft/server/players/PlayerList/sendAllPlayerInfoIn +FD: net/minecraft/server/players/PlayerList/f_143987_ net/minecraft/server/players/PlayerList/SEND_PLAYER_INFO_INTERVAL +FD: net/minecraft/server/players/PlayerList/f_143988_ net/minecraft/server/players/PlayerList/ALLOW_LOGOUTIVATOR +FD: net/minecraft/server/players/PlayerList/f_184208_ net/minecraft/server/players/PlayerList/simulationDistance +FD: net/minecraft/server/players/PlayerList/f_243017_ net/minecraft/server/players/PlayerList/CHAT_FILTERED_FULL +FD: net/minecraft/server/players/PlayerList/f_243858_ net/minecraft/server/players/PlayerList/registries +FD: net/minecraft/server/players/PlayerList/f_256838_ net/minecraft/server/players/PlayerList/synchronizedRegistries +FD: net/minecraft/server/players/PlayerList$1/f_11317_ net/minecraft/server/players/PlayerList$1/this$0 +FD: net/minecraft/server/players/ServerOpListEntry/f_11355_ net/minecraft/server/players/ServerOpListEntry/level +FD: net/minecraft/server/players/ServerOpListEntry/f_11356_ net/minecraft/server/players/ServerOpListEntry/bypassesPlayerLimit +FD: net/minecraft/server/players/SleepStatus/f_143998_ net/minecraft/server/players/SleepStatus/activePlayers +FD: net/minecraft/server/players/SleepStatus/f_143999_ net/minecraft/server/players/SleepStatus/sleepingPlayers +FD: net/minecraft/server/players/StoredUserEntry/f_11369_ net/minecraft/server/players/StoredUserEntry/user +FD: net/minecraft/server/players/StoredUserList/f_11374_ net/minecraft/server/players/StoredUserList/LOGGER +FD: net/minecraft/server/players/StoredUserList/f_11375_ net/minecraft/server/players/StoredUserList/GSON +FD: net/minecraft/server/players/StoredUserList/f_11376_ net/minecraft/server/players/StoredUserList/file +FD: net/minecraft/server/players/StoredUserList/f_11377_ net/minecraft/server/players/StoredUserList/map +FD: net/minecraft/server/rcon/NetworkDataOutputStream/f_11467_ net/minecraft/server/rcon/NetworkDataOutputStream/outputStream +FD: net/minecraft/server/rcon/NetworkDataOutputStream/f_11468_ net/minecraft/server/rcon/NetworkDataOutputStream/dataOutputStream +FD: net/minecraft/server/rcon/PktUtils/f_11481_ net/minecraft/server/rcon/PktUtils/HEX_CHAR +FD: net/minecraft/server/rcon/PktUtils/f_144020_ net/minecraft/server/rcon/PktUtils/MAX_PACKET_SIZE +FD: net/minecraft/server/rcon/RconConsoleSource/f_11500_ net/minecraft/server/rcon/RconConsoleSource/RCON_COMPONENT +FD: net/minecraft/server/rcon/RconConsoleSource/f_11501_ net/minecraft/server/rcon/RconConsoleSource/buffer +FD: net/minecraft/server/rcon/RconConsoleSource/f_11502_ net/minecraft/server/rcon/RconConsoleSource/server +FD: net/minecraft/server/rcon/RconConsoleSource/f_144022_ net/minecraft/server/rcon/RconConsoleSource/RCON +FD: net/minecraft/server/rcon/thread/GenericThread/f_11515_ net/minecraft/server/rcon/thread/GenericThread/running +FD: net/minecraft/server/rcon/thread/GenericThread/f_11516_ net/minecraft/server/rcon/thread/GenericThread/name +FD: net/minecraft/server/rcon/thread/GenericThread/f_11517_ net/minecraft/server/rcon/thread/GenericThread/thread +FD: net/minecraft/server/rcon/thread/GenericThread/f_11518_ net/minecraft/server/rcon/thread/GenericThread/LOGGER +FD: net/minecraft/server/rcon/thread/GenericThread/f_11519_ net/minecraft/server/rcon/thread/GenericThread/UNIQUE_THREAD_ID +FD: net/minecraft/server/rcon/thread/GenericThread/f_144023_ net/minecraft/server/rcon/thread/GenericThread/MAX_STOP_WAIT +FD: net/minecraft/server/rcon/thread/QueryThreadGs4/f_11524_ net/minecraft/server/rcon/thread/QueryThreadGs4/LOGGER +FD: net/minecraft/server/rcon/thread/QueryThreadGs4/f_11525_ net/minecraft/server/rcon/thread/QueryThreadGs4/lastChallengeCheck +FD: net/minecraft/server/rcon/thread/QueryThreadGs4/f_11526_ net/minecraft/server/rcon/thread/QueryThreadGs4/port +FD: net/minecraft/server/rcon/thread/QueryThreadGs4/f_11527_ net/minecraft/server/rcon/thread/QueryThreadGs4/serverPort +FD: net/minecraft/server/rcon/thread/QueryThreadGs4/f_11528_ net/minecraft/server/rcon/thread/QueryThreadGs4/maxPlayers +FD: net/minecraft/server/rcon/thread/QueryThreadGs4/f_11529_ net/minecraft/server/rcon/thread/QueryThreadGs4/serverName +FD: net/minecraft/server/rcon/thread/QueryThreadGs4/f_11530_ net/minecraft/server/rcon/thread/QueryThreadGs4/worldName +FD: net/minecraft/server/rcon/thread/QueryThreadGs4/f_11531_ net/minecraft/server/rcon/thread/QueryThreadGs4/socket +FD: net/minecraft/server/rcon/thread/QueryThreadGs4/f_11532_ net/minecraft/server/rcon/thread/QueryThreadGs4/buffer +FD: net/minecraft/server/rcon/thread/QueryThreadGs4/f_11533_ net/minecraft/server/rcon/thread/QueryThreadGs4/hostIp +FD: net/minecraft/server/rcon/thread/QueryThreadGs4/f_11534_ net/minecraft/server/rcon/thread/QueryThreadGs4/serverIp +FD: net/minecraft/server/rcon/thread/QueryThreadGs4/f_11535_ net/minecraft/server/rcon/thread/QueryThreadGs4/validChallenges +FD: net/minecraft/server/rcon/thread/QueryThreadGs4/f_11536_ net/minecraft/server/rcon/thread/QueryThreadGs4/rulesResponse +FD: net/minecraft/server/rcon/thread/QueryThreadGs4/f_11537_ net/minecraft/server/rcon/thread/QueryThreadGs4/lastRulesResponse +FD: net/minecraft/server/rcon/thread/QueryThreadGs4/f_11538_ net/minecraft/server/rcon/thread/QueryThreadGs4/serverInterface +FD: net/minecraft/server/rcon/thread/QueryThreadGs4/f_144024_ net/minecraft/server/rcon/thread/QueryThreadGs4/GAME_TYPE +FD: net/minecraft/server/rcon/thread/QueryThreadGs4/f_144025_ net/minecraft/server/rcon/thread/QueryThreadGs4/GAME_ID +FD: net/minecraft/server/rcon/thread/QueryThreadGs4/f_144026_ net/minecraft/server/rcon/thread/QueryThreadGs4/CHALLENGE_CHECK_INTERVAL +FD: net/minecraft/server/rcon/thread/QueryThreadGs4/f_144027_ net/minecraft/server/rcon/thread/QueryThreadGs4/RESPONSE_CACHE_TIME +FD: net/minecraft/server/rcon/thread/QueryThreadGs4$RequestChallenge/f_11567_ net/minecraft/server/rcon/thread/QueryThreadGs4$RequestChallenge/time +FD: net/minecraft/server/rcon/thread/QueryThreadGs4$RequestChallenge/f_11568_ net/minecraft/server/rcon/thread/QueryThreadGs4$RequestChallenge/challenge +FD: net/minecraft/server/rcon/thread/QueryThreadGs4$RequestChallenge/f_11569_ net/minecraft/server/rcon/thread/QueryThreadGs4$RequestChallenge/identBytes +FD: net/minecraft/server/rcon/thread/QueryThreadGs4$RequestChallenge/f_11570_ net/minecraft/server/rcon/thread/QueryThreadGs4$RequestChallenge/challengeBytes +FD: net/minecraft/server/rcon/thread/QueryThreadGs4$RequestChallenge/f_11571_ net/minecraft/server/rcon/thread/QueryThreadGs4$RequestChallenge/ident +FD: net/minecraft/server/rcon/thread/RconClient/f_11579_ net/minecraft/server/rcon/thread/RconClient/LOGGER +FD: net/minecraft/server/rcon/thread/RconClient/f_11580_ net/minecraft/server/rcon/thread/RconClient/authed +FD: net/minecraft/server/rcon/thread/RconClient/f_11581_ net/minecraft/server/rcon/thread/RconClient/client +FD: net/minecraft/server/rcon/thread/RconClient/f_11582_ net/minecraft/server/rcon/thread/RconClient/buf +FD: net/minecraft/server/rcon/thread/RconClient/f_11583_ net/minecraft/server/rcon/thread/RconClient/rconPassword +FD: net/minecraft/server/rcon/thread/RconClient/f_11584_ net/minecraft/server/rcon/thread/RconClient/serverInterface +FD: net/minecraft/server/rcon/thread/RconClient/f_144029_ net/minecraft/server/rcon/thread/RconClient/SERVERDATA_AUTH +FD: net/minecraft/server/rcon/thread/RconClient/f_144030_ net/minecraft/server/rcon/thread/RconClient/SERVERDATA_EXECCOMMAND +FD: net/minecraft/server/rcon/thread/RconClient/f_144031_ net/minecraft/server/rcon/thread/RconClient/SERVERDATA_RESPONSE_VALUE +FD: net/minecraft/server/rcon/thread/RconClient/f_144032_ net/minecraft/server/rcon/thread/RconClient/SERVERDATA_AUTH_RESPONSE +FD: net/minecraft/server/rcon/thread/RconClient/f_144033_ net/minecraft/server/rcon/thread/RconClient/SERVERDATA_AUTH_FAILURE +FD: net/minecraft/server/rcon/thread/RconThread/f_11601_ net/minecraft/server/rcon/thread/RconThread/LOGGER +FD: net/minecraft/server/rcon/thread/RconThread/f_11602_ net/minecraft/server/rcon/thread/RconThread/socket +FD: net/minecraft/server/rcon/thread/RconThread/f_11603_ net/minecraft/server/rcon/thread/RconThread/rconPassword +FD: net/minecraft/server/rcon/thread/RconThread/f_11604_ net/minecraft/server/rcon/thread/RconThread/clients +FD: net/minecraft/server/rcon/thread/RconThread/f_11605_ net/minecraft/server/rcon/thread/RconThread/serverInterface +FD: net/minecraft/sounds/Music/f_11620_ net/minecraft/sounds/Music/CODEC +FD: net/minecraft/sounds/Music/f_11621_ net/minecraft/sounds/Music/event +FD: net/minecraft/sounds/Music/f_11622_ net/minecraft/sounds/Music/minDelay +FD: net/minecraft/sounds/Music/f_11623_ net/minecraft/sounds/Music/maxDelay +FD: net/minecraft/sounds/Music/f_11624_ net/minecraft/sounds/Music/replaceCurrentMusic +FD: net/minecraft/sounds/Musics/f_11645_ net/minecraft/sounds/Musics/MENU +FD: net/minecraft/sounds/Musics/f_11646_ net/minecraft/sounds/Musics/CREATIVE +FD: net/minecraft/sounds/Musics/f_11647_ net/minecraft/sounds/Musics/CREDITS +FD: net/minecraft/sounds/Musics/f_11648_ net/minecraft/sounds/Musics/END_BOSS +FD: net/minecraft/sounds/Musics/f_11649_ net/minecraft/sounds/Musics/END +FD: net/minecraft/sounds/Musics/f_11650_ net/minecraft/sounds/Musics/UNDER_WATER +FD: net/minecraft/sounds/Musics/f_11651_ net/minecraft/sounds/Musics/GAME +FD: net/minecraft/sounds/Musics/f_144042_ net/minecraft/sounds/Musics/ONE_SECOND +FD: net/minecraft/sounds/Musics/f_144043_ net/minecraft/sounds/Musics/THIRTY_SECONDS +FD: net/minecraft/sounds/Musics/f_144044_ net/minecraft/sounds/Musics/TEN_MINUTES +FD: net/minecraft/sounds/Musics/f_144045_ net/minecraft/sounds/Musics/TWENTY_MINUTES +FD: net/minecraft/sounds/Musics/f_144046_ net/minecraft/sounds/Musics/FIVE_MINUTES +FD: net/minecraft/sounds/SoundEvent/f_11656_ net/minecraft/sounds/SoundEvent/location +FD: net/minecraft/sounds/SoundEvent/f_215659_ net/minecraft/sounds/SoundEvent/range +FD: net/minecraft/sounds/SoundEvent/f_215660_ net/minecraft/sounds/SoundEvent/newSystem +FD: net/minecraft/sounds/SoundEvent/f_262723_ net/minecraft/sounds/SoundEvent/DEFAULT_RANGE +FD: net/minecraft/sounds/SoundEvent/f_263124_ net/minecraft/sounds/SoundEvent/DIRECT_CODEC +FD: net/minecraft/sounds/SoundEvent/f_263130_ net/minecraft/sounds/SoundEvent/CODEC +FD: net/minecraft/sounds/SoundEvents/f_11663_ net/minecraft/sounds/SoundEvents/ANCIENT_DEBRIS_FALL +FD: net/minecraft/sounds/SoundEvents/f_11664_ net/minecraft/sounds/SoundEvents/ANVIL_BREAK +FD: net/minecraft/sounds/SoundEvents/f_11665_ net/minecraft/sounds/SoundEvents/ANVIL_DESTROY +FD: net/minecraft/sounds/SoundEvents/f_11666_ net/minecraft/sounds/SoundEvents/ANVIL_FALL +FD: net/minecraft/sounds/SoundEvents/f_11667_ net/minecraft/sounds/SoundEvents/ANVIL_HIT +FD: net/minecraft/sounds/SoundEvents/f_11668_ net/minecraft/sounds/SoundEvents/ANVIL_LAND +FD: net/minecraft/sounds/SoundEvents/f_11669_ net/minecraft/sounds/SoundEvents/ANVIL_PLACE +FD: net/minecraft/sounds/SoundEvents/f_11670_ net/minecraft/sounds/SoundEvents/ANVIL_STEP +FD: net/minecraft/sounds/SoundEvents/f_11671_ net/minecraft/sounds/SoundEvents/ANVIL_USE +FD: net/minecraft/sounds/SoundEvents/f_11672_ net/minecraft/sounds/SoundEvents/ARMOR_EQUIP_CHAIN +FD: net/minecraft/sounds/SoundEvents/f_11673_ net/minecraft/sounds/SoundEvents/ARMOR_EQUIP_DIAMOND +FD: net/minecraft/sounds/SoundEvents/f_11674_ net/minecraft/sounds/SoundEvents/ARMOR_EQUIP_ELYTRA +FD: net/minecraft/sounds/SoundEvents/f_11675_ net/minecraft/sounds/SoundEvents/ARMOR_EQUIP_GENERIC +FD: net/minecraft/sounds/SoundEvents/f_11676_ net/minecraft/sounds/SoundEvents/ARMOR_EQUIP_GOLD +FD: net/minecraft/sounds/SoundEvents/f_11677_ net/minecraft/sounds/SoundEvents/ARMOR_EQUIP_IRON +FD: net/minecraft/sounds/SoundEvents/f_11678_ net/minecraft/sounds/SoundEvents/ARMOR_EQUIP_LEATHER +FD: net/minecraft/sounds/SoundEvents/f_11679_ net/minecraft/sounds/SoundEvents/ARMOR_EQUIP_NETHERITE +FD: net/minecraft/sounds/SoundEvents/f_11680_ net/minecraft/sounds/SoundEvents/ARMOR_EQUIP_TURTLE +FD: net/minecraft/sounds/SoundEvents/f_11681_ net/minecraft/sounds/SoundEvents/ARMOR_STAND_BREAK +FD: net/minecraft/sounds/SoundEvents/f_11682_ net/minecraft/sounds/SoundEvents/ARMOR_STAND_FALL +FD: net/minecraft/sounds/SoundEvents/f_11683_ net/minecraft/sounds/SoundEvents/ARMOR_STAND_HIT +FD: net/minecraft/sounds/SoundEvents/f_11684_ net/minecraft/sounds/SoundEvents/ARMOR_STAND_PLACE +FD: net/minecraft/sounds/SoundEvents/f_11685_ net/minecraft/sounds/SoundEvents/ARROW_HIT +FD: net/minecraft/sounds/SoundEvents/f_11686_ net/minecraft/sounds/SoundEvents/ARROW_HIT_PLAYER +FD: net/minecraft/sounds/SoundEvents/f_11687_ net/minecraft/sounds/SoundEvents/ARROW_SHOOT +FD: net/minecraft/sounds/SoundEvents/f_11688_ net/minecraft/sounds/SoundEvents/AXE_STRIP +FD: net/minecraft/sounds/SoundEvents/f_11689_ net/minecraft/sounds/SoundEvents/AMBIENT_CAVE +FD: net/minecraft/sounds/SoundEvents/f_11690_ net/minecraft/sounds/SoundEvents/BEE_LOOP_AGGRESSIVE +FD: net/minecraft/sounds/SoundEvents/f_11691_ net/minecraft/sounds/SoundEvents/BEE_LOOP +FD: net/minecraft/sounds/SoundEvents/f_11692_ net/minecraft/sounds/SoundEvents/BEE_STING +FD: net/minecraft/sounds/SoundEvents/f_11693_ net/minecraft/sounds/SoundEvents/BEE_POLLINATE +FD: net/minecraft/sounds/SoundEvents/f_11694_ net/minecraft/sounds/SoundEvents/BEEHIVE_DRIP +FD: net/minecraft/sounds/SoundEvents/f_11695_ net/minecraft/sounds/SoundEvents/BEEHIVE_ENTER +FD: net/minecraft/sounds/SoundEvents/f_11696_ net/minecraft/sounds/SoundEvents/BEEHIVE_EXIT +FD: net/minecraft/sounds/SoundEvents/f_11697_ net/minecraft/sounds/SoundEvents/BEEHIVE_SHEAR +FD: net/minecraft/sounds/SoundEvents/f_11698_ net/minecraft/sounds/SoundEvents/BEEHIVE_WORK +FD: net/minecraft/sounds/SoundEvents/f_11699_ net/minecraft/sounds/SoundEvents/BELL_BLOCK +FD: net/minecraft/sounds/SoundEvents/f_11700_ net/minecraft/sounds/SoundEvents/BELL_RESONATE +FD: net/minecraft/sounds/SoundEvents/f_11701_ net/minecraft/sounds/SoundEvents/BLAZE_AMBIENT +FD: net/minecraft/sounds/SoundEvents/f_11702_ net/minecraft/sounds/SoundEvents/BLAZE_BURN +FD: net/minecraft/sounds/SoundEvents/f_11703_ net/minecraft/sounds/SoundEvents/BLAZE_DEATH +FD: net/minecraft/sounds/SoundEvents/f_11704_ net/minecraft/sounds/SoundEvents/BLAZE_HURT +FD: net/minecraft/sounds/SoundEvents/f_11705_ net/minecraft/sounds/SoundEvents/BLAZE_SHOOT +FD: net/minecraft/sounds/SoundEvents/f_11706_ net/minecraft/sounds/SoundEvents/BOAT_PADDLE_LAND +FD: net/minecraft/sounds/SoundEvents/f_11707_ net/minecraft/sounds/SoundEvents/BOAT_PADDLE_WATER +FD: net/minecraft/sounds/SoundEvents/f_11708_ net/minecraft/sounds/SoundEvents/BONE_BLOCK_BREAK +FD: net/minecraft/sounds/SoundEvents/f_11709_ net/minecraft/sounds/SoundEvents/BONE_BLOCK_FALL +FD: net/minecraft/sounds/SoundEvents/f_11710_ net/minecraft/sounds/SoundEvents/BONE_BLOCK_HIT +FD: net/minecraft/sounds/SoundEvents/f_11711_ net/minecraft/sounds/SoundEvents/BONE_BLOCK_PLACE +FD: net/minecraft/sounds/SoundEvents/f_11712_ net/minecraft/sounds/SoundEvents/BONE_BLOCK_STEP +FD: net/minecraft/sounds/SoundEvents/f_11713_ net/minecraft/sounds/SoundEvents/BOOK_PAGE_TURN +FD: net/minecraft/sounds/SoundEvents/f_11714_ net/minecraft/sounds/SoundEvents/BOOK_PUT +FD: net/minecraft/sounds/SoundEvents/f_11715_ net/minecraft/sounds/SoundEvents/BLASTFURNACE_FIRE_CRACKLE +FD: net/minecraft/sounds/SoundEvents/f_11716_ net/minecraft/sounds/SoundEvents/BAMBOO_BREAK +FD: net/minecraft/sounds/SoundEvents/f_11717_ net/minecraft/sounds/SoundEvents/BAMBOO_FALL +FD: net/minecraft/sounds/SoundEvents/f_11718_ net/minecraft/sounds/SoundEvents/BAMBOO_HIT +FD: net/minecraft/sounds/SoundEvents/f_11719_ net/minecraft/sounds/SoundEvents/BAMBOO_PLACE +FD: net/minecraft/sounds/SoundEvents/f_11720_ net/minecraft/sounds/SoundEvents/BAMBOO_STEP +FD: net/minecraft/sounds/SoundEvents/f_11721_ net/minecraft/sounds/SoundEvents/BAMBOO_SAPLING_BREAK +FD: net/minecraft/sounds/SoundEvents/f_11722_ net/minecraft/sounds/SoundEvents/BAMBOO_SAPLING_HIT +FD: net/minecraft/sounds/SoundEvents/f_11723_ net/minecraft/sounds/SoundEvents/BAMBOO_SAPLING_PLACE +FD: net/minecraft/sounds/SoundEvents/f_11724_ net/minecraft/sounds/SoundEvents/BARREL_CLOSE +FD: net/minecraft/sounds/SoundEvents/f_11725_ net/minecraft/sounds/SoundEvents/BARREL_OPEN +FD: net/minecraft/sounds/SoundEvents/f_11726_ net/minecraft/sounds/SoundEvents/BASALT_BREAK +FD: net/minecraft/sounds/SoundEvents/f_11727_ net/minecraft/sounds/SoundEvents/BASALT_STEP +FD: net/minecraft/sounds/SoundEvents/f_11728_ net/minecraft/sounds/SoundEvents/BASALT_PLACE +FD: net/minecraft/sounds/SoundEvents/f_11729_ net/minecraft/sounds/SoundEvents/BASALT_HIT +FD: net/minecraft/sounds/SoundEvents/f_11730_ net/minecraft/sounds/SoundEvents/BASALT_FALL +FD: net/minecraft/sounds/SoundEvents/f_11731_ net/minecraft/sounds/SoundEvents/BAT_AMBIENT +FD: net/minecraft/sounds/SoundEvents/f_11732_ net/minecraft/sounds/SoundEvents/BAT_DEATH +FD: net/minecraft/sounds/SoundEvents/f_11733_ net/minecraft/sounds/SoundEvents/BAT_HURT +FD: net/minecraft/sounds/SoundEvents/f_11734_ net/minecraft/sounds/SoundEvents/BAT_LOOP +FD: net/minecraft/sounds/SoundEvents/f_11735_ net/minecraft/sounds/SoundEvents/BAT_TAKEOFF +FD: net/minecraft/sounds/SoundEvents/f_11736_ net/minecraft/sounds/SoundEvents/BEACON_ACTIVATE +FD: net/minecraft/sounds/SoundEvents/f_11737_ net/minecraft/sounds/SoundEvents/BEACON_AMBIENT +FD: net/minecraft/sounds/SoundEvents/f_11738_ net/minecraft/sounds/SoundEvents/BEACON_DEACTIVATE +FD: net/minecraft/sounds/SoundEvents/f_11739_ net/minecraft/sounds/SoundEvents/BEACON_POWER_SELECT +FD: net/minecraft/sounds/SoundEvents/f_11740_ net/minecraft/sounds/SoundEvents/BEE_DEATH +FD: net/minecraft/sounds/SoundEvents/f_11741_ net/minecraft/sounds/SoundEvents/BEE_HURT +FD: net/minecraft/sounds/SoundEvents/f_11742_ net/minecraft/sounds/SoundEvents/AMBIENT_BASALT_DELTAS_ADDITIONS +FD: net/minecraft/sounds/SoundEvents/f_11743_ net/minecraft/sounds/SoundEvents/CHAIN_FALL +FD: net/minecraft/sounds/SoundEvents/f_11744_ net/minecraft/sounds/SoundEvents/CHAIN_HIT +FD: net/minecraft/sounds/SoundEvents/f_11745_ net/minecraft/sounds/SoundEvents/CHAIN_PLACE +FD: net/minecraft/sounds/SoundEvents/f_11746_ net/minecraft/sounds/SoundEvents/CHAIN_STEP +FD: net/minecraft/sounds/SoundEvents/f_11747_ net/minecraft/sounds/SoundEvents/CHEST_CLOSE +FD: net/minecraft/sounds/SoundEvents/f_11748_ net/minecraft/sounds/SoundEvents/CHEST_LOCKED +FD: net/minecraft/sounds/SoundEvents/f_11749_ net/minecraft/sounds/SoundEvents/CHEST_OPEN +FD: net/minecraft/sounds/SoundEvents/f_11750_ net/minecraft/sounds/SoundEvents/CHICKEN_AMBIENT +FD: net/minecraft/sounds/SoundEvents/f_11751_ net/minecraft/sounds/SoundEvents/CHICKEN_DEATH +FD: net/minecraft/sounds/SoundEvents/f_11752_ net/minecraft/sounds/SoundEvents/CHICKEN_EGG +FD: net/minecraft/sounds/SoundEvents/f_11753_ net/minecraft/sounds/SoundEvents/CHICKEN_HURT +FD: net/minecraft/sounds/SoundEvents/f_11754_ net/minecraft/sounds/SoundEvents/CHICKEN_STEP +FD: net/minecraft/sounds/SoundEvents/f_11755_ net/minecraft/sounds/SoundEvents/CHORUS_FLOWER_DEATH +FD: net/minecraft/sounds/SoundEvents/f_11756_ net/minecraft/sounds/SoundEvents/CHORUS_FLOWER_GROW +FD: net/minecraft/sounds/SoundEvents/f_11757_ net/minecraft/sounds/SoundEvents/CHORUS_FRUIT_TELEPORT +FD: net/minecraft/sounds/SoundEvents/f_11758_ net/minecraft/sounds/SoundEvents/COD_AMBIENT +FD: net/minecraft/sounds/SoundEvents/f_11759_ net/minecraft/sounds/SoundEvents/COD_DEATH +FD: net/minecraft/sounds/SoundEvents/f_11760_ net/minecraft/sounds/SoundEvents/COD_FLOP +FD: net/minecraft/sounds/SoundEvents/f_11761_ net/minecraft/sounds/SoundEvents/COD_HURT +FD: net/minecraft/sounds/SoundEvents/f_11762_ net/minecraft/sounds/SoundEvents/COMPARATOR_CLICK +FD: net/minecraft/sounds/SoundEvents/f_11763_ net/minecraft/sounds/SoundEvents/COMPOSTER_EMPTY +FD: net/minecraft/sounds/SoundEvents/f_11764_ net/minecraft/sounds/SoundEvents/COMPOSTER_FILL +FD: net/minecraft/sounds/SoundEvents/f_11765_ net/minecraft/sounds/SoundEvents/COMPOSTER_FILL_SUCCESS +FD: net/minecraft/sounds/SoundEvents/f_11766_ net/minecraft/sounds/SoundEvents/COMPOSTER_READY +FD: net/minecraft/sounds/SoundEvents/f_11767_ net/minecraft/sounds/SoundEvents/CONDUIT_ACTIVATE +FD: net/minecraft/sounds/SoundEvents/f_11768_ net/minecraft/sounds/SoundEvents/CONDUIT_AMBIENT +FD: net/minecraft/sounds/SoundEvents/f_11769_ net/minecraft/sounds/SoundEvents/BOTTLE_EMPTY +FD: net/minecraft/sounds/SoundEvents/f_11770_ net/minecraft/sounds/SoundEvents/BOTTLE_FILL +FD: net/minecraft/sounds/SoundEvents/f_11771_ net/minecraft/sounds/SoundEvents/BOTTLE_FILL_DRAGONBREATH +FD: net/minecraft/sounds/SoundEvents/f_11772_ net/minecraft/sounds/SoundEvents/BREWING_STAND_BREW +FD: net/minecraft/sounds/SoundEvents/f_11773_ net/minecraft/sounds/SoundEvents/BUBBLE_COLUMN_BUBBLE_POP +FD: net/minecraft/sounds/SoundEvents/f_11774_ net/minecraft/sounds/SoundEvents/BUBBLE_COLUMN_UPWARDS_AMBIENT +FD: net/minecraft/sounds/SoundEvents/f_11775_ net/minecraft/sounds/SoundEvents/BUBBLE_COLUMN_UPWARDS_INSIDE +FD: net/minecraft/sounds/SoundEvents/f_11776_ net/minecraft/sounds/SoundEvents/BUBBLE_COLUMN_WHIRLPOOL_AMBIENT +FD: net/minecraft/sounds/SoundEvents/f_11777_ net/minecraft/sounds/SoundEvents/BUBBLE_COLUMN_WHIRLPOOL_INSIDE +FD: net/minecraft/sounds/SoundEvents/f_11778_ net/minecraft/sounds/SoundEvents/BUCKET_EMPTY +FD: net/minecraft/sounds/SoundEvents/f_11779_ net/minecraft/sounds/SoundEvents/BUCKET_EMPTY_FISH +FD: net/minecraft/sounds/SoundEvents/f_11780_ net/minecraft/sounds/SoundEvents/BUCKET_EMPTY_LAVA +FD: net/minecraft/sounds/SoundEvents/f_11781_ net/minecraft/sounds/SoundEvents/BUCKET_FILL +FD: net/minecraft/sounds/SoundEvents/f_11782_ net/minecraft/sounds/SoundEvents/BUCKET_FILL_FISH +FD: net/minecraft/sounds/SoundEvents/f_11783_ net/minecraft/sounds/SoundEvents/BUCKET_FILL_LAVA +FD: net/minecraft/sounds/SoundEvents/f_11784_ net/minecraft/sounds/SoundEvents/CAMPFIRE_CRACKLE +FD: net/minecraft/sounds/SoundEvents/f_11785_ net/minecraft/sounds/SoundEvents/CAT_AMBIENT +FD: net/minecraft/sounds/SoundEvents/f_11786_ net/minecraft/sounds/SoundEvents/CAT_STRAY_AMBIENT +FD: net/minecraft/sounds/SoundEvents/f_11787_ net/minecraft/sounds/SoundEvents/CAT_DEATH +FD: net/minecraft/sounds/SoundEvents/f_11788_ net/minecraft/sounds/SoundEvents/CAT_EAT +FD: net/minecraft/sounds/SoundEvents/f_11789_ net/minecraft/sounds/SoundEvents/CAT_HISS +FD: net/minecraft/sounds/SoundEvents/f_11790_ net/minecraft/sounds/SoundEvents/CAT_BEG_FOR_FOOD +FD: net/minecraft/sounds/SoundEvents/f_11791_ net/minecraft/sounds/SoundEvents/CAT_HURT +FD: net/minecraft/sounds/SoundEvents/f_11792_ net/minecraft/sounds/SoundEvents/CAT_PURR +FD: net/minecraft/sounds/SoundEvents/f_11793_ net/minecraft/sounds/SoundEvents/CAT_PURREOW +FD: net/minecraft/sounds/SoundEvents/f_11794_ net/minecraft/sounds/SoundEvents/CHAIN_BREAK +FD: net/minecraft/sounds/SoundEvents/f_11795_ net/minecraft/sounds/SoundEvents/AMBIENT_BASALT_DELTAS_LOOP +FD: net/minecraft/sounds/SoundEvents/f_11796_ net/minecraft/sounds/SoundEvents/DISPENSER_DISPENSE +FD: net/minecraft/sounds/SoundEvents/f_11797_ net/minecraft/sounds/SoundEvents/DISPENSER_FAIL +FD: net/minecraft/sounds/SoundEvents/f_11798_ net/minecraft/sounds/SoundEvents/DISPENSER_LAUNCH +FD: net/minecraft/sounds/SoundEvents/f_11799_ net/minecraft/sounds/SoundEvents/DOLPHIN_AMBIENT +FD: net/minecraft/sounds/SoundEvents/f_11800_ net/minecraft/sounds/SoundEvents/DOLPHIN_AMBIENT_WATER +FD: net/minecraft/sounds/SoundEvents/f_11801_ net/minecraft/sounds/SoundEvents/DOLPHIN_ATTACK +FD: net/minecraft/sounds/SoundEvents/f_11802_ net/minecraft/sounds/SoundEvents/DOLPHIN_DEATH +FD: net/minecraft/sounds/SoundEvents/f_11803_ net/minecraft/sounds/SoundEvents/DOLPHIN_EAT +FD: net/minecraft/sounds/SoundEvents/f_11804_ net/minecraft/sounds/SoundEvents/DOLPHIN_HURT +FD: net/minecraft/sounds/SoundEvents/f_11805_ net/minecraft/sounds/SoundEvents/DOLPHIN_JUMP +FD: net/minecraft/sounds/SoundEvents/f_11806_ net/minecraft/sounds/SoundEvents/DOLPHIN_PLAY +FD: net/minecraft/sounds/SoundEvents/f_11807_ net/minecraft/sounds/SoundEvents/DOLPHIN_SPLASH +FD: net/minecraft/sounds/SoundEvents/f_11808_ net/minecraft/sounds/SoundEvents/DOLPHIN_SWIM +FD: net/minecraft/sounds/SoundEvents/f_11809_ net/minecraft/sounds/SoundEvents/DONKEY_AMBIENT +FD: net/minecraft/sounds/SoundEvents/f_11810_ net/minecraft/sounds/SoundEvents/DONKEY_ANGRY +FD: net/minecraft/sounds/SoundEvents/f_11811_ net/minecraft/sounds/SoundEvents/DONKEY_CHEST +FD: net/minecraft/sounds/SoundEvents/f_11812_ net/minecraft/sounds/SoundEvents/DONKEY_DEATH +FD: net/minecraft/sounds/SoundEvents/f_11813_ net/minecraft/sounds/SoundEvents/DONKEY_EAT +FD: net/minecraft/sounds/SoundEvents/f_11814_ net/minecraft/sounds/SoundEvents/DONKEY_HURT +FD: net/minecraft/sounds/SoundEvents/f_11815_ net/minecraft/sounds/SoundEvents/DROWNED_AMBIENT +FD: net/minecraft/sounds/SoundEvents/f_11816_ net/minecraft/sounds/SoundEvents/DROWNED_AMBIENT_WATER +FD: net/minecraft/sounds/SoundEvents/f_11817_ net/minecraft/sounds/SoundEvents/DROWNED_DEATH +FD: net/minecraft/sounds/SoundEvents/f_11818_ net/minecraft/sounds/SoundEvents/DROWNED_DEATH_WATER +FD: net/minecraft/sounds/SoundEvents/f_11819_ net/minecraft/sounds/SoundEvents/DROWNED_HURT +FD: net/minecraft/sounds/SoundEvents/f_11820_ net/minecraft/sounds/SoundEvents/DROWNED_HURT_WATER +FD: net/minecraft/sounds/SoundEvents/f_11821_ net/minecraft/sounds/SoundEvents/DROWNED_SHOOT +FD: net/minecraft/sounds/SoundEvents/f_11822_ net/minecraft/sounds/SoundEvents/CONDUIT_AMBIENT_SHORT +FD: net/minecraft/sounds/SoundEvents/f_11823_ net/minecraft/sounds/SoundEvents/CONDUIT_ATTACK_TARGET +FD: net/minecraft/sounds/SoundEvents/f_11824_ net/minecraft/sounds/SoundEvents/CONDUIT_DEACTIVATE +FD: net/minecraft/sounds/SoundEvents/f_11825_ net/minecraft/sounds/SoundEvents/CORAL_BLOCK_BREAK +FD: net/minecraft/sounds/SoundEvents/f_11826_ net/minecraft/sounds/SoundEvents/CORAL_BLOCK_FALL +FD: net/minecraft/sounds/SoundEvents/f_11827_ net/minecraft/sounds/SoundEvents/CORAL_BLOCK_HIT +FD: net/minecraft/sounds/SoundEvents/f_11828_ net/minecraft/sounds/SoundEvents/CORAL_BLOCK_PLACE +FD: net/minecraft/sounds/SoundEvents/f_11829_ net/minecraft/sounds/SoundEvents/CORAL_BLOCK_STEP +FD: net/minecraft/sounds/SoundEvents/f_11830_ net/minecraft/sounds/SoundEvents/COW_AMBIENT +FD: net/minecraft/sounds/SoundEvents/f_11831_ net/minecraft/sounds/SoundEvents/COW_DEATH +FD: net/minecraft/sounds/SoundEvents/f_11832_ net/minecraft/sounds/SoundEvents/COW_HURT +FD: net/minecraft/sounds/SoundEvents/f_11833_ net/minecraft/sounds/SoundEvents/COW_MILK +FD: net/minecraft/sounds/SoundEvents/f_11834_ net/minecraft/sounds/SoundEvents/COW_STEP +FD: net/minecraft/sounds/SoundEvents/f_11835_ net/minecraft/sounds/SoundEvents/CREEPER_DEATH +FD: net/minecraft/sounds/SoundEvents/f_11836_ net/minecraft/sounds/SoundEvents/CREEPER_HURT +FD: net/minecraft/sounds/SoundEvents/f_11837_ net/minecraft/sounds/SoundEvents/CREEPER_PRIMED +FD: net/minecraft/sounds/SoundEvents/f_11838_ net/minecraft/sounds/SoundEvents/CROP_BREAK +FD: net/minecraft/sounds/SoundEvents/f_11839_ net/minecraft/sounds/SoundEvents/CROP_PLANTED +FD: net/minecraft/sounds/SoundEvents/f_11840_ net/minecraft/sounds/SoundEvents/CROSSBOW_HIT +FD: net/minecraft/sounds/SoundEvents/f_11841_ net/minecraft/sounds/SoundEvents/CROSSBOW_LOADING_END +FD: net/minecraft/sounds/SoundEvents/f_11842_ net/minecraft/sounds/SoundEvents/CROSSBOW_LOADING_MIDDLE +FD: net/minecraft/sounds/SoundEvents/f_11843_ net/minecraft/sounds/SoundEvents/CROSSBOW_LOADING_START +FD: net/minecraft/sounds/SoundEvents/f_11844_ net/minecraft/sounds/SoundEvents/CROSSBOW_QUICK_CHARGE_1 +FD: net/minecraft/sounds/SoundEvents/f_11845_ net/minecraft/sounds/SoundEvents/CROSSBOW_QUICK_CHARGE_2 +FD: net/minecraft/sounds/SoundEvents/f_11846_ net/minecraft/sounds/SoundEvents/CROSSBOW_QUICK_CHARGE_3 +FD: net/minecraft/sounds/SoundEvents/f_11847_ net/minecraft/sounds/SoundEvents/CROSSBOW_SHOOT +FD: net/minecraft/sounds/SoundEvents/f_11848_ net/minecraft/sounds/SoundEvents/AMBIENT_BASALT_DELTAS_MOOD +FD: net/minecraft/sounds/SoundEvents/f_11849_ net/minecraft/sounds/SoundEvents/ENDERMAN_HURT +FD: net/minecraft/sounds/SoundEvents/f_11850_ net/minecraft/sounds/SoundEvents/ENDERMAN_SCREAM +FD: net/minecraft/sounds/SoundEvents/f_11851_ net/minecraft/sounds/SoundEvents/ENDERMAN_STARE +FD: net/minecraft/sounds/SoundEvents/f_11852_ net/minecraft/sounds/SoundEvents/ENDERMAN_TELEPORT +FD: net/minecraft/sounds/SoundEvents/f_11853_ net/minecraft/sounds/SoundEvents/ENDERMITE_AMBIENT +FD: net/minecraft/sounds/SoundEvents/f_11854_ net/minecraft/sounds/SoundEvents/ENDERMITE_DEATH +FD: net/minecraft/sounds/SoundEvents/f_11855_ net/minecraft/sounds/SoundEvents/ENDERMITE_HURT +FD: net/minecraft/sounds/SoundEvents/f_11856_ net/minecraft/sounds/SoundEvents/ENDERMITE_STEP +FD: net/minecraft/sounds/SoundEvents/f_11857_ net/minecraft/sounds/SoundEvents/ENDER_PEARL_THROW +FD: net/minecraft/sounds/SoundEvents/f_11858_ net/minecraft/sounds/SoundEvents/END_GATEWAY_SPAWN +FD: net/minecraft/sounds/SoundEvents/f_11859_ net/minecraft/sounds/SoundEvents/END_PORTAL_FRAME_FILL +FD: net/minecraft/sounds/SoundEvents/f_11860_ net/minecraft/sounds/SoundEvents/END_PORTAL_SPAWN +FD: net/minecraft/sounds/SoundEvents/f_11861_ net/minecraft/sounds/SoundEvents/EVOKER_AMBIENT +FD: net/minecraft/sounds/SoundEvents/f_11862_ net/minecraft/sounds/SoundEvents/EVOKER_CAST_SPELL +FD: net/minecraft/sounds/SoundEvents/f_11863_ net/minecraft/sounds/SoundEvents/EVOKER_CELEBRATE +FD: net/minecraft/sounds/SoundEvents/f_11864_ net/minecraft/sounds/SoundEvents/EVOKER_DEATH +FD: net/minecraft/sounds/SoundEvents/f_11865_ net/minecraft/sounds/SoundEvents/EVOKER_FANGS_ATTACK +FD: net/minecraft/sounds/SoundEvents/f_11866_ net/minecraft/sounds/SoundEvents/EVOKER_HURT +FD: net/minecraft/sounds/SoundEvents/f_11867_ net/minecraft/sounds/SoundEvents/EVOKER_PREPARE_ATTACK +FD: net/minecraft/sounds/SoundEvents/f_11868_ net/minecraft/sounds/SoundEvents/EVOKER_PREPARE_SUMMON +FD: net/minecraft/sounds/SoundEvents/f_11869_ net/minecraft/sounds/SoundEvents/EVOKER_PREPARE_WOLOLO +FD: net/minecraft/sounds/SoundEvents/f_11870_ net/minecraft/sounds/SoundEvents/EXPERIENCE_BOTTLE_THROW +FD: net/minecraft/sounds/SoundEvents/f_11871_ net/minecraft/sounds/SoundEvents/EXPERIENCE_ORB_PICKUP +FD: net/minecraft/sounds/SoundEvents/f_11872_ net/minecraft/sounds/SoundEvents/FENCE_GATE_CLOSE +FD: net/minecraft/sounds/SoundEvents/f_11873_ net/minecraft/sounds/SoundEvents/FENCE_GATE_OPEN +FD: net/minecraft/sounds/SoundEvents/f_11874_ net/minecraft/sounds/SoundEvents/FIRECHARGE_USE +FD: net/minecraft/sounds/SoundEvents/f_11875_ net/minecraft/sounds/SoundEvents/DROWNED_STEP +FD: net/minecraft/sounds/SoundEvents/f_11876_ net/minecraft/sounds/SoundEvents/DROWNED_SWIM +FD: net/minecraft/sounds/SoundEvents/f_11877_ net/minecraft/sounds/SoundEvents/EGG_THROW +FD: net/minecraft/sounds/SoundEvents/f_11878_ net/minecraft/sounds/SoundEvents/ELDER_GUARDIAN_AMBIENT +FD: net/minecraft/sounds/SoundEvents/f_11879_ net/minecraft/sounds/SoundEvents/ELDER_GUARDIAN_AMBIENT_LAND +FD: net/minecraft/sounds/SoundEvents/f_11880_ net/minecraft/sounds/SoundEvents/ELDER_GUARDIAN_CURSE +FD: net/minecraft/sounds/SoundEvents/f_11881_ net/minecraft/sounds/SoundEvents/ELDER_GUARDIAN_DEATH +FD: net/minecraft/sounds/SoundEvents/f_11882_ net/minecraft/sounds/SoundEvents/ELDER_GUARDIAN_DEATH_LAND +FD: net/minecraft/sounds/SoundEvents/f_11883_ net/minecraft/sounds/SoundEvents/ELDER_GUARDIAN_FLOP +FD: net/minecraft/sounds/SoundEvents/f_11884_ net/minecraft/sounds/SoundEvents/ELDER_GUARDIAN_HURT +FD: net/minecraft/sounds/SoundEvents/f_11885_ net/minecraft/sounds/SoundEvents/ELDER_GUARDIAN_HURT_LAND +FD: net/minecraft/sounds/SoundEvents/f_11886_ net/minecraft/sounds/SoundEvents/ELYTRA_FLYING +FD: net/minecraft/sounds/SoundEvents/f_11887_ net/minecraft/sounds/SoundEvents/ENCHANTMENT_TABLE_USE +FD: net/minecraft/sounds/SoundEvents/f_11888_ net/minecraft/sounds/SoundEvents/ENDER_CHEST_CLOSE +FD: net/minecraft/sounds/SoundEvents/f_11889_ net/minecraft/sounds/SoundEvents/ENDER_CHEST_OPEN +FD: net/minecraft/sounds/SoundEvents/f_11890_ net/minecraft/sounds/SoundEvents/ENDER_DRAGON_AMBIENT +FD: net/minecraft/sounds/SoundEvents/f_11891_ net/minecraft/sounds/SoundEvents/ENDER_DRAGON_DEATH +FD: net/minecraft/sounds/SoundEvents/f_11892_ net/minecraft/sounds/SoundEvents/DRAGON_FIREBALL_EXPLODE +FD: net/minecraft/sounds/SoundEvents/f_11893_ net/minecraft/sounds/SoundEvents/ENDER_DRAGON_FLAP +FD: net/minecraft/sounds/SoundEvents/f_11894_ net/minecraft/sounds/SoundEvents/ENDER_DRAGON_GROWL +FD: net/minecraft/sounds/SoundEvents/f_11895_ net/minecraft/sounds/SoundEvents/ENDER_DRAGON_HURT +FD: net/minecraft/sounds/SoundEvents/f_11896_ net/minecraft/sounds/SoundEvents/ENDER_DRAGON_SHOOT +FD: net/minecraft/sounds/SoundEvents/f_11897_ net/minecraft/sounds/SoundEvents/ENDER_EYE_DEATH +FD: net/minecraft/sounds/SoundEvents/f_11898_ net/minecraft/sounds/SoundEvents/ENDER_EYE_LAUNCH +FD: net/minecraft/sounds/SoundEvents/f_11899_ net/minecraft/sounds/SoundEvents/ENDERMAN_AMBIENT +FD: net/minecraft/sounds/SoundEvents/f_11900_ net/minecraft/sounds/SoundEvents/ENDERMAN_DEATH +FD: net/minecraft/sounds/SoundEvents/f_11901_ net/minecraft/sounds/SoundEvents/AMBIENT_CRIMSON_FOREST_ADDITIONS +FD: net/minecraft/sounds/SoundEvents/f_11902_ net/minecraft/sounds/SoundEvents/ROOTS_BREAK +FD: net/minecraft/sounds/SoundEvents/f_11903_ net/minecraft/sounds/SoundEvents/ROOTS_STEP +FD: net/minecraft/sounds/SoundEvents/f_11904_ net/minecraft/sounds/SoundEvents/ROOTS_PLACE +FD: net/minecraft/sounds/SoundEvents/f_11905_ net/minecraft/sounds/SoundEvents/ROOTS_HIT +FD: net/minecraft/sounds/SoundEvents/f_11906_ net/minecraft/sounds/SoundEvents/ROOTS_FALL +FD: net/minecraft/sounds/SoundEvents/f_11907_ net/minecraft/sounds/SoundEvents/FURNACE_FIRE_CRACKLE +FD: net/minecraft/sounds/SoundEvents/f_11908_ net/minecraft/sounds/SoundEvents/GENERIC_BIG_FALL +FD: net/minecraft/sounds/SoundEvents/f_11909_ net/minecraft/sounds/SoundEvents/GENERIC_BURN +FD: net/minecraft/sounds/SoundEvents/f_11910_ net/minecraft/sounds/SoundEvents/GENERIC_DEATH +FD: net/minecraft/sounds/SoundEvents/f_11911_ net/minecraft/sounds/SoundEvents/GENERIC_DRINK +FD: net/minecraft/sounds/SoundEvents/f_11912_ net/minecraft/sounds/SoundEvents/GENERIC_EAT +FD: net/minecraft/sounds/SoundEvents/f_11913_ net/minecraft/sounds/SoundEvents/GENERIC_EXPLODE +FD: net/minecraft/sounds/SoundEvents/f_11914_ net/minecraft/sounds/SoundEvents/GENERIC_EXTINGUISH_FIRE +FD: net/minecraft/sounds/SoundEvents/f_11915_ net/minecraft/sounds/SoundEvents/GENERIC_HURT +FD: net/minecraft/sounds/SoundEvents/f_11916_ net/minecraft/sounds/SoundEvents/GENERIC_SMALL_FALL +FD: net/minecraft/sounds/SoundEvents/f_11917_ net/minecraft/sounds/SoundEvents/GENERIC_SPLASH +FD: net/minecraft/sounds/SoundEvents/f_11918_ net/minecraft/sounds/SoundEvents/GENERIC_SWIM +FD: net/minecraft/sounds/SoundEvents/f_11919_ net/minecraft/sounds/SoundEvents/GHAST_AMBIENT +FD: net/minecraft/sounds/SoundEvents/f_11920_ net/minecraft/sounds/SoundEvents/GHAST_DEATH +FD: net/minecraft/sounds/SoundEvents/f_11921_ net/minecraft/sounds/SoundEvents/GHAST_HURT +FD: net/minecraft/sounds/SoundEvents/f_11922_ net/minecraft/sounds/SoundEvents/GHAST_SCREAM +FD: net/minecraft/sounds/SoundEvents/f_11923_ net/minecraft/sounds/SoundEvents/GHAST_SHOOT +FD: net/minecraft/sounds/SoundEvents/f_11924_ net/minecraft/sounds/SoundEvents/GHAST_WARN +FD: net/minecraft/sounds/SoundEvents/f_11925_ net/minecraft/sounds/SoundEvents/GILDED_BLACKSTONE_BREAK +FD: net/minecraft/sounds/SoundEvents/f_11926_ net/minecraft/sounds/SoundEvents/GILDED_BLACKSTONE_FALL +FD: net/minecraft/sounds/SoundEvents/f_11927_ net/minecraft/sounds/SoundEvents/GILDED_BLACKSTONE_HIT +FD: net/minecraft/sounds/SoundEvents/f_11928_ net/minecraft/sounds/SoundEvents/FIREWORK_ROCKET_BLAST +FD: net/minecraft/sounds/SoundEvents/f_11929_ net/minecraft/sounds/SoundEvents/FIREWORK_ROCKET_BLAST_FAR +FD: net/minecraft/sounds/SoundEvents/f_11930_ net/minecraft/sounds/SoundEvents/FIREWORK_ROCKET_LARGE_BLAST +FD: net/minecraft/sounds/SoundEvents/f_11931_ net/minecraft/sounds/SoundEvents/FIREWORK_ROCKET_LARGE_BLAST_FAR +FD: net/minecraft/sounds/SoundEvents/f_11932_ net/minecraft/sounds/SoundEvents/FIREWORK_ROCKET_LAUNCH +FD: net/minecraft/sounds/SoundEvents/f_11933_ net/minecraft/sounds/SoundEvents/FIREWORK_ROCKET_SHOOT +FD: net/minecraft/sounds/SoundEvents/f_11934_ net/minecraft/sounds/SoundEvents/FIREWORK_ROCKET_TWINKLE +FD: net/minecraft/sounds/SoundEvents/f_11935_ net/minecraft/sounds/SoundEvents/FIREWORK_ROCKET_TWINKLE_FAR +FD: net/minecraft/sounds/SoundEvents/f_11936_ net/minecraft/sounds/SoundEvents/FIRE_AMBIENT +FD: net/minecraft/sounds/SoundEvents/f_11937_ net/minecraft/sounds/SoundEvents/FIRE_EXTINGUISH +FD: net/minecraft/sounds/SoundEvents/f_11938_ net/minecraft/sounds/SoundEvents/FISH_SWIM +FD: net/minecraft/sounds/SoundEvents/f_11939_ net/minecraft/sounds/SoundEvents/FISHING_BOBBER_RETRIEVE +FD: net/minecraft/sounds/SoundEvents/f_11940_ net/minecraft/sounds/SoundEvents/FISHING_BOBBER_SPLASH +FD: net/minecraft/sounds/SoundEvents/f_11941_ net/minecraft/sounds/SoundEvents/FISHING_BOBBER_THROW +FD: net/minecraft/sounds/SoundEvents/f_11942_ net/minecraft/sounds/SoundEvents/FLINTANDSTEEL_USE +FD: net/minecraft/sounds/SoundEvents/f_11943_ net/minecraft/sounds/SoundEvents/FOX_AGGRO +FD: net/minecraft/sounds/SoundEvents/f_11944_ net/minecraft/sounds/SoundEvents/FOX_AMBIENT +FD: net/minecraft/sounds/SoundEvents/f_11945_ net/minecraft/sounds/SoundEvents/FOX_BITE +FD: net/minecraft/sounds/SoundEvents/f_11946_ net/minecraft/sounds/SoundEvents/FOX_DEATH +FD: net/minecraft/sounds/SoundEvents/f_11947_ net/minecraft/sounds/SoundEvents/FOX_EAT +FD: net/minecraft/sounds/SoundEvents/f_11948_ net/minecraft/sounds/SoundEvents/FOX_HURT +FD: net/minecraft/sounds/SoundEvents/f_11949_ net/minecraft/sounds/SoundEvents/FOX_SCREECH +FD: net/minecraft/sounds/SoundEvents/f_11950_ net/minecraft/sounds/SoundEvents/FOX_SLEEP +FD: net/minecraft/sounds/SoundEvents/f_11951_ net/minecraft/sounds/SoundEvents/FOX_SNIFF +FD: net/minecraft/sounds/SoundEvents/f_11952_ net/minecraft/sounds/SoundEvents/FOX_SPIT +FD: net/minecraft/sounds/SoundEvents/f_11953_ net/minecraft/sounds/SoundEvents/FOX_TELEPORT +FD: net/minecraft/sounds/SoundEvents/f_11954_ net/minecraft/sounds/SoundEvents/AMBIENT_CRIMSON_FOREST_LOOP +FD: net/minecraft/sounds/SoundEvents/f_11955_ net/minecraft/sounds/SoundEvents/HOE_TILL +FD: net/minecraft/sounds/SoundEvents/f_11956_ net/minecraft/sounds/SoundEvents/HOGLIN_AMBIENT +FD: net/minecraft/sounds/SoundEvents/f_11957_ net/minecraft/sounds/SoundEvents/HOGLIN_ANGRY +FD: net/minecraft/sounds/SoundEvents/f_11958_ net/minecraft/sounds/SoundEvents/HOGLIN_ATTACK +FD: net/minecraft/sounds/SoundEvents/f_11959_ net/minecraft/sounds/SoundEvents/HOGLIN_CONVERTED_TO_ZOMBIFIED +FD: net/minecraft/sounds/SoundEvents/f_11960_ net/minecraft/sounds/SoundEvents/HOGLIN_DEATH +FD: net/minecraft/sounds/SoundEvents/f_11961_ net/minecraft/sounds/SoundEvents/HOGLIN_HURT +FD: net/minecraft/sounds/SoundEvents/f_11962_ net/minecraft/sounds/SoundEvents/HOGLIN_RETREAT +FD: net/minecraft/sounds/SoundEvents/f_11963_ net/minecraft/sounds/SoundEvents/HOGLIN_STEP +FD: net/minecraft/sounds/SoundEvents/f_11964_ net/minecraft/sounds/SoundEvents/HONEY_BLOCK_BREAK +FD: net/minecraft/sounds/SoundEvents/f_11965_ net/minecraft/sounds/SoundEvents/HONEY_BLOCK_FALL +FD: net/minecraft/sounds/SoundEvents/f_11966_ net/minecraft/sounds/SoundEvents/HONEY_BLOCK_HIT +FD: net/minecraft/sounds/SoundEvents/f_11967_ net/minecraft/sounds/SoundEvents/HONEY_BLOCK_PLACE +FD: net/minecraft/sounds/SoundEvents/f_11968_ net/minecraft/sounds/SoundEvents/HONEY_BLOCK_SLIDE +FD: net/minecraft/sounds/SoundEvents/f_11969_ net/minecraft/sounds/SoundEvents/HONEY_BLOCK_STEP +FD: net/minecraft/sounds/SoundEvents/f_11970_ net/minecraft/sounds/SoundEvents/HONEY_DRINK +FD: net/minecraft/sounds/SoundEvents/f_11971_ net/minecraft/sounds/SoundEvents/HORSE_AMBIENT +FD: net/minecraft/sounds/SoundEvents/f_11972_ net/minecraft/sounds/SoundEvents/HORSE_ANGRY +FD: net/minecraft/sounds/SoundEvents/f_11973_ net/minecraft/sounds/SoundEvents/HORSE_ARMOR +FD: net/minecraft/sounds/SoundEvents/f_11974_ net/minecraft/sounds/SoundEvents/HORSE_BREATHE +FD: net/minecraft/sounds/SoundEvents/f_11975_ net/minecraft/sounds/SoundEvents/HORSE_DEATH +FD: net/minecraft/sounds/SoundEvents/f_11976_ net/minecraft/sounds/SoundEvents/HORSE_EAT +FD: net/minecraft/sounds/SoundEvents/f_11977_ net/minecraft/sounds/SoundEvents/HORSE_GALLOP +FD: net/minecraft/sounds/SoundEvents/f_11978_ net/minecraft/sounds/SoundEvents/HORSE_HURT +FD: net/minecraft/sounds/SoundEvents/f_11979_ net/minecraft/sounds/SoundEvents/HORSE_JUMP +FD: net/minecraft/sounds/SoundEvents/f_11980_ net/minecraft/sounds/SoundEvents/HORSE_LAND +FD: net/minecraft/sounds/SoundEvents/f_11981_ net/minecraft/sounds/SoundEvents/GILDED_BLACKSTONE_PLACE +FD: net/minecraft/sounds/SoundEvents/f_11982_ net/minecraft/sounds/SoundEvents/GILDED_BLACKSTONE_STEP +FD: net/minecraft/sounds/SoundEvents/f_11983_ net/minecraft/sounds/SoundEvents/GLASS_BREAK +FD: net/minecraft/sounds/SoundEvents/f_11984_ net/minecraft/sounds/SoundEvents/GLASS_FALL +FD: net/minecraft/sounds/SoundEvents/f_11985_ net/minecraft/sounds/SoundEvents/GLASS_HIT +FD: net/minecraft/sounds/SoundEvents/f_11986_ net/minecraft/sounds/SoundEvents/GLASS_PLACE +FD: net/minecraft/sounds/SoundEvents/f_11987_ net/minecraft/sounds/SoundEvents/GLASS_STEP +FD: net/minecraft/sounds/SoundEvents/f_11988_ net/minecraft/sounds/SoundEvents/GRASS_BREAK +FD: net/minecraft/sounds/SoundEvents/f_11989_ net/minecraft/sounds/SoundEvents/GRASS_FALL +FD: net/minecraft/sounds/SoundEvents/f_11990_ net/minecraft/sounds/SoundEvents/GRASS_HIT +FD: net/minecraft/sounds/SoundEvents/f_11991_ net/minecraft/sounds/SoundEvents/GRASS_PLACE +FD: net/minecraft/sounds/SoundEvents/f_11992_ net/minecraft/sounds/SoundEvents/GRASS_STEP +FD: net/minecraft/sounds/SoundEvents/f_11993_ net/minecraft/sounds/SoundEvents/GRAVEL_BREAK +FD: net/minecraft/sounds/SoundEvents/f_11994_ net/minecraft/sounds/SoundEvents/GRAVEL_FALL +FD: net/minecraft/sounds/SoundEvents/f_11995_ net/minecraft/sounds/SoundEvents/GRAVEL_HIT +FD: net/minecraft/sounds/SoundEvents/f_11996_ net/minecraft/sounds/SoundEvents/GRAVEL_PLACE +FD: net/minecraft/sounds/SoundEvents/f_11997_ net/minecraft/sounds/SoundEvents/GRAVEL_STEP +FD: net/minecraft/sounds/SoundEvents/f_11998_ net/minecraft/sounds/SoundEvents/GRINDSTONE_USE +FD: net/minecraft/sounds/SoundEvents/f_11999_ net/minecraft/sounds/SoundEvents/GUARDIAN_AMBIENT +FD: net/minecraft/sounds/SoundEvents/f_12000_ net/minecraft/sounds/SoundEvents/GUARDIAN_AMBIENT_LAND +FD: net/minecraft/sounds/SoundEvents/f_12001_ net/minecraft/sounds/SoundEvents/GUARDIAN_ATTACK +FD: net/minecraft/sounds/SoundEvents/f_12002_ net/minecraft/sounds/SoundEvents/GUARDIAN_DEATH +FD: net/minecraft/sounds/SoundEvents/f_12003_ net/minecraft/sounds/SoundEvents/GUARDIAN_DEATH_LAND +FD: net/minecraft/sounds/SoundEvents/f_12004_ net/minecraft/sounds/SoundEvents/GUARDIAN_FLOP +FD: net/minecraft/sounds/SoundEvents/f_12005_ net/minecraft/sounds/SoundEvents/GUARDIAN_HURT +FD: net/minecraft/sounds/SoundEvents/f_12006_ net/minecraft/sounds/SoundEvents/GUARDIAN_HURT_LAND +FD: net/minecraft/sounds/SoundEvents/f_12007_ net/minecraft/sounds/SoundEvents/AMBIENT_CRIMSON_FOREST_MOOD +FD: net/minecraft/sounds/SoundEvents/f_12008_ net/minecraft/sounds/SoundEvents/IRON_GOLEM_HURT +FD: net/minecraft/sounds/SoundEvents/f_12009_ net/minecraft/sounds/SoundEvents/IRON_GOLEM_REPAIR +FD: net/minecraft/sounds/SoundEvents/f_12010_ net/minecraft/sounds/SoundEvents/IRON_GOLEM_STEP +FD: net/minecraft/sounds/SoundEvents/f_12011_ net/minecraft/sounds/SoundEvents/IRON_TRAPDOOR_CLOSE +FD: net/minecraft/sounds/SoundEvents/f_12012_ net/minecraft/sounds/SoundEvents/IRON_TRAPDOOR_OPEN +FD: net/minecraft/sounds/SoundEvents/f_12013_ net/minecraft/sounds/SoundEvents/ITEM_FRAME_ADD_ITEM +FD: net/minecraft/sounds/SoundEvents/f_12014_ net/minecraft/sounds/SoundEvents/ITEM_FRAME_BREAK +FD: net/minecraft/sounds/SoundEvents/f_12015_ net/minecraft/sounds/SoundEvents/ITEM_FRAME_PLACE +FD: net/minecraft/sounds/SoundEvents/f_12016_ net/minecraft/sounds/SoundEvents/ITEM_FRAME_REMOVE_ITEM +FD: net/minecraft/sounds/SoundEvents/f_12017_ net/minecraft/sounds/SoundEvents/ITEM_FRAME_ROTATE_ITEM +FD: net/minecraft/sounds/SoundEvents/f_12018_ net/minecraft/sounds/SoundEvents/ITEM_BREAK +FD: net/minecraft/sounds/SoundEvents/f_12019_ net/minecraft/sounds/SoundEvents/ITEM_PICKUP +FD: net/minecraft/sounds/SoundEvents/f_12020_ net/minecraft/sounds/SoundEvents/LADDER_BREAK +FD: net/minecraft/sounds/SoundEvents/f_12021_ net/minecraft/sounds/SoundEvents/LADDER_FALL +FD: net/minecraft/sounds/SoundEvents/f_12022_ net/minecraft/sounds/SoundEvents/LADDER_HIT +FD: net/minecraft/sounds/SoundEvents/f_12023_ net/minecraft/sounds/SoundEvents/LADDER_PLACE +FD: net/minecraft/sounds/SoundEvents/f_12024_ net/minecraft/sounds/SoundEvents/LADDER_STEP +FD: net/minecraft/sounds/SoundEvents/f_12025_ net/minecraft/sounds/SoundEvents/LANTERN_BREAK +FD: net/minecraft/sounds/SoundEvents/f_12026_ net/minecraft/sounds/SoundEvents/LANTERN_FALL +FD: net/minecraft/sounds/SoundEvents/f_12027_ net/minecraft/sounds/SoundEvents/LANTERN_HIT +FD: net/minecraft/sounds/SoundEvents/f_12028_ net/minecraft/sounds/SoundEvents/LANTERN_PLACE +FD: net/minecraft/sounds/SoundEvents/f_12029_ net/minecraft/sounds/SoundEvents/LANTERN_STEP +FD: net/minecraft/sounds/SoundEvents/f_12030_ net/minecraft/sounds/SoundEvents/LAVA_AMBIENT +FD: net/minecraft/sounds/SoundEvents/f_12031_ net/minecraft/sounds/SoundEvents/LAVA_EXTINGUISH +FD: net/minecraft/sounds/SoundEvents/f_12032_ net/minecraft/sounds/SoundEvents/LAVA_POP +FD: net/minecraft/sounds/SoundEvents/f_12033_ net/minecraft/sounds/SoundEvents/LEASH_KNOT_BREAK +FD: net/minecraft/sounds/SoundEvents/f_12034_ net/minecraft/sounds/SoundEvents/HORSE_SADDLE +FD: net/minecraft/sounds/SoundEvents/f_12035_ net/minecraft/sounds/SoundEvents/HORSE_STEP +FD: net/minecraft/sounds/SoundEvents/f_12036_ net/minecraft/sounds/SoundEvents/HORSE_STEP_WOOD +FD: net/minecraft/sounds/SoundEvents/f_12037_ net/minecraft/sounds/SoundEvents/HOSTILE_BIG_FALL +FD: net/minecraft/sounds/SoundEvents/f_12038_ net/minecraft/sounds/SoundEvents/HOSTILE_DEATH +FD: net/minecraft/sounds/SoundEvents/f_12039_ net/minecraft/sounds/SoundEvents/HOSTILE_HURT +FD: net/minecraft/sounds/SoundEvents/f_12040_ net/minecraft/sounds/SoundEvents/HOSTILE_SMALL_FALL +FD: net/minecraft/sounds/SoundEvents/f_12041_ net/minecraft/sounds/SoundEvents/HOSTILE_SPLASH +FD: net/minecraft/sounds/SoundEvents/f_12042_ net/minecraft/sounds/SoundEvents/HOSTILE_SWIM +FD: net/minecraft/sounds/SoundEvents/f_12043_ net/minecraft/sounds/SoundEvents/HUSK_AMBIENT +FD: net/minecraft/sounds/SoundEvents/f_12044_ net/minecraft/sounds/SoundEvents/HUSK_CONVERTED_TO_ZOMBIE +FD: net/minecraft/sounds/SoundEvents/f_12045_ net/minecraft/sounds/SoundEvents/HUSK_DEATH +FD: net/minecraft/sounds/SoundEvents/f_12046_ net/minecraft/sounds/SoundEvents/HUSK_HURT +FD: net/minecraft/sounds/SoundEvents/f_12047_ net/minecraft/sounds/SoundEvents/HUSK_STEP +FD: net/minecraft/sounds/SoundEvents/f_12048_ net/minecraft/sounds/SoundEvents/ILLUSIONER_AMBIENT +FD: net/minecraft/sounds/SoundEvents/f_12049_ net/minecraft/sounds/SoundEvents/ILLUSIONER_CAST_SPELL +FD: net/minecraft/sounds/SoundEvents/f_12050_ net/minecraft/sounds/SoundEvents/ILLUSIONER_DEATH +FD: net/minecraft/sounds/SoundEvents/f_12051_ net/minecraft/sounds/SoundEvents/ILLUSIONER_HURT +FD: net/minecraft/sounds/SoundEvents/f_12052_ net/minecraft/sounds/SoundEvents/ILLUSIONER_MIRROR_MOVE +FD: net/minecraft/sounds/SoundEvents/f_12053_ net/minecraft/sounds/SoundEvents/ILLUSIONER_PREPARE_BLINDNESS +FD: net/minecraft/sounds/SoundEvents/f_12054_ net/minecraft/sounds/SoundEvents/ILLUSIONER_PREPARE_MIRROR +FD: net/minecraft/sounds/SoundEvents/f_12055_ net/minecraft/sounds/SoundEvents/IRON_DOOR_CLOSE +FD: net/minecraft/sounds/SoundEvents/f_12056_ net/minecraft/sounds/SoundEvents/IRON_DOOR_OPEN +FD: net/minecraft/sounds/SoundEvents/f_12057_ net/minecraft/sounds/SoundEvents/IRON_GOLEM_ATTACK +FD: net/minecraft/sounds/SoundEvents/f_12058_ net/minecraft/sounds/SoundEvents/IRON_GOLEM_DAMAGE +FD: net/minecraft/sounds/SoundEvents/f_12059_ net/minecraft/sounds/SoundEvents/IRON_GOLEM_DEATH +FD: net/minecraft/sounds/SoundEvents/f_12060_ net/minecraft/sounds/SoundEvents/AMBIENT_NETHER_WASTES_ADDITIONS +FD: net/minecraft/sounds/SoundEvents/f_12061_ net/minecraft/sounds/SoundEvents/MAGMA_CUBE_SQUISH_SMALL +FD: net/minecraft/sounds/SoundEvents/f_12062_ net/minecraft/sounds/SoundEvents/METAL_BREAK +FD: net/minecraft/sounds/SoundEvents/f_12063_ net/minecraft/sounds/SoundEvents/METAL_FALL +FD: net/minecraft/sounds/SoundEvents/f_12064_ net/minecraft/sounds/SoundEvents/METAL_HIT +FD: net/minecraft/sounds/SoundEvents/f_12065_ net/minecraft/sounds/SoundEvents/METAL_PLACE +FD: net/minecraft/sounds/SoundEvents/f_12066_ net/minecraft/sounds/SoundEvents/METAL_PRESSURE_PLATE_CLICK_OFF +FD: net/minecraft/sounds/SoundEvents/f_12067_ net/minecraft/sounds/SoundEvents/METAL_PRESSURE_PLATE_CLICK_ON +FD: net/minecraft/sounds/SoundEvents/f_12068_ net/minecraft/sounds/SoundEvents/METAL_STEP +FD: net/minecraft/sounds/SoundEvents/f_12069_ net/minecraft/sounds/SoundEvents/MINECART_INSIDE +FD: net/minecraft/sounds/SoundEvents/f_12070_ net/minecraft/sounds/SoundEvents/MINECART_RIDING +FD: net/minecraft/sounds/SoundEvents/f_12071_ net/minecraft/sounds/SoundEvents/MOOSHROOM_CONVERT +FD: net/minecraft/sounds/SoundEvents/f_12072_ net/minecraft/sounds/SoundEvents/MOOSHROOM_EAT +FD: net/minecraft/sounds/SoundEvents/f_12073_ net/minecraft/sounds/SoundEvents/MOOSHROOM_MILK +FD: net/minecraft/sounds/SoundEvents/f_12074_ net/minecraft/sounds/SoundEvents/MOOSHROOM_MILK_SUSPICIOUSLY +FD: net/minecraft/sounds/SoundEvents/f_12075_ net/minecraft/sounds/SoundEvents/MOOSHROOM_SHEAR +FD: net/minecraft/sounds/SoundEvents/f_12076_ net/minecraft/sounds/SoundEvents/MULE_AMBIENT +FD: net/minecraft/sounds/SoundEvents/f_12077_ net/minecraft/sounds/SoundEvents/MULE_ANGRY +FD: net/minecraft/sounds/SoundEvents/f_12078_ net/minecraft/sounds/SoundEvents/MULE_CHEST +FD: net/minecraft/sounds/SoundEvents/f_12079_ net/minecraft/sounds/SoundEvents/MULE_DEATH +FD: net/minecraft/sounds/SoundEvents/f_12080_ net/minecraft/sounds/SoundEvents/MULE_EAT +FD: net/minecraft/sounds/SoundEvents/f_12081_ net/minecraft/sounds/SoundEvents/MULE_HURT +FD: net/minecraft/sounds/SoundEvents/f_12082_ net/minecraft/sounds/SoundEvents/MUSIC_CREATIVE +FD: net/minecraft/sounds/SoundEvents/f_12083_ net/minecraft/sounds/SoundEvents/MUSIC_CREDITS +FD: net/minecraft/sounds/SoundEvents/f_12084_ net/minecraft/sounds/SoundEvents/MUSIC_DISC_11 +FD: net/minecraft/sounds/SoundEvents/f_12085_ net/minecraft/sounds/SoundEvents/MUSIC_DISC_13 +FD: net/minecraft/sounds/SoundEvents/f_12086_ net/minecraft/sounds/SoundEvents/MUSIC_DISC_BLOCKS +FD: net/minecraft/sounds/SoundEvents/f_12087_ net/minecraft/sounds/SoundEvents/LEASH_KNOT_PLACE +FD: net/minecraft/sounds/SoundEvents/f_12088_ net/minecraft/sounds/SoundEvents/LEVER_CLICK +FD: net/minecraft/sounds/SoundEvents/f_12089_ net/minecraft/sounds/SoundEvents/LIGHTNING_BOLT_IMPACT +FD: net/minecraft/sounds/SoundEvents/f_12090_ net/minecraft/sounds/SoundEvents/LIGHTNING_BOLT_THUNDER +FD: net/minecraft/sounds/SoundEvents/f_12091_ net/minecraft/sounds/SoundEvents/LINGERING_POTION_THROW +FD: net/minecraft/sounds/SoundEvents/f_12092_ net/minecraft/sounds/SoundEvents/LLAMA_AMBIENT +FD: net/minecraft/sounds/SoundEvents/f_12093_ net/minecraft/sounds/SoundEvents/LLAMA_ANGRY +FD: net/minecraft/sounds/SoundEvents/f_12094_ net/minecraft/sounds/SoundEvents/LLAMA_CHEST +FD: net/minecraft/sounds/SoundEvents/f_12095_ net/minecraft/sounds/SoundEvents/LLAMA_DEATH +FD: net/minecraft/sounds/SoundEvents/f_12096_ net/minecraft/sounds/SoundEvents/LLAMA_EAT +FD: net/minecraft/sounds/SoundEvents/f_12097_ net/minecraft/sounds/SoundEvents/LLAMA_HURT +FD: net/minecraft/sounds/SoundEvents/f_12098_ net/minecraft/sounds/SoundEvents/LLAMA_SPIT +FD: net/minecraft/sounds/SoundEvents/f_12099_ net/minecraft/sounds/SoundEvents/LLAMA_STEP +FD: net/minecraft/sounds/SoundEvents/f_12100_ net/minecraft/sounds/SoundEvents/LLAMA_SWAG +FD: net/minecraft/sounds/SoundEvents/f_12101_ net/minecraft/sounds/SoundEvents/MAGMA_CUBE_DEATH_SMALL +FD: net/minecraft/sounds/SoundEvents/f_12102_ net/minecraft/sounds/SoundEvents/LODESTONE_BREAK +FD: net/minecraft/sounds/SoundEvents/f_12103_ net/minecraft/sounds/SoundEvents/LODESTONE_STEP +FD: net/minecraft/sounds/SoundEvents/f_12104_ net/minecraft/sounds/SoundEvents/LODESTONE_PLACE +FD: net/minecraft/sounds/SoundEvents/f_12105_ net/minecraft/sounds/SoundEvents/LODESTONE_HIT +FD: net/minecraft/sounds/SoundEvents/f_12106_ net/minecraft/sounds/SoundEvents/LODESTONE_FALL +FD: net/minecraft/sounds/SoundEvents/f_12107_ net/minecraft/sounds/SoundEvents/LODESTONE_COMPASS_LOCK +FD: net/minecraft/sounds/SoundEvents/f_12108_ net/minecraft/sounds/SoundEvents/MAGMA_CUBE_DEATH +FD: net/minecraft/sounds/SoundEvents/f_12109_ net/minecraft/sounds/SoundEvents/MAGMA_CUBE_HURT +FD: net/minecraft/sounds/SoundEvents/f_12110_ net/minecraft/sounds/SoundEvents/MAGMA_CUBE_HURT_SMALL +FD: net/minecraft/sounds/SoundEvents/f_12111_ net/minecraft/sounds/SoundEvents/MAGMA_CUBE_JUMP +FD: net/minecraft/sounds/SoundEvents/f_12112_ net/minecraft/sounds/SoundEvents/MAGMA_CUBE_SQUISH +FD: net/minecraft/sounds/SoundEvents/f_12113_ net/minecraft/sounds/SoundEvents/AMBIENT_NETHER_WASTES_LOOP +FD: net/minecraft/sounds/SoundEvents/f_12114_ net/minecraft/sounds/SoundEvents/NETHER_WART_PLANTED +FD: net/minecraft/sounds/SoundEvents/f_12115_ net/minecraft/sounds/SoundEvents/STEM_BREAK +FD: net/minecraft/sounds/SoundEvents/f_12116_ net/minecraft/sounds/SoundEvents/STEM_STEP +FD: net/minecraft/sounds/SoundEvents/f_12117_ net/minecraft/sounds/SoundEvents/STEM_PLACE +FD: net/minecraft/sounds/SoundEvents/f_12118_ net/minecraft/sounds/SoundEvents/STEM_HIT +FD: net/minecraft/sounds/SoundEvents/f_12119_ net/minecraft/sounds/SoundEvents/STEM_FALL +FD: net/minecraft/sounds/SoundEvents/f_12120_ net/minecraft/sounds/SoundEvents/NYLIUM_BREAK +FD: net/minecraft/sounds/SoundEvents/f_12121_ net/minecraft/sounds/SoundEvents/NYLIUM_STEP +FD: net/minecraft/sounds/SoundEvents/f_12122_ net/minecraft/sounds/SoundEvents/NYLIUM_PLACE +FD: net/minecraft/sounds/SoundEvents/f_12123_ net/minecraft/sounds/SoundEvents/NYLIUM_HIT +FD: net/minecraft/sounds/SoundEvents/f_12124_ net/minecraft/sounds/SoundEvents/NYLIUM_FALL +FD: net/minecraft/sounds/SoundEvents/f_12125_ net/minecraft/sounds/SoundEvents/NETHER_SPROUTS_BREAK +FD: net/minecraft/sounds/SoundEvents/f_12126_ net/minecraft/sounds/SoundEvents/NETHER_SPROUTS_STEP +FD: net/minecraft/sounds/SoundEvents/f_12127_ net/minecraft/sounds/SoundEvents/NETHER_SPROUTS_PLACE +FD: net/minecraft/sounds/SoundEvents/f_12128_ net/minecraft/sounds/SoundEvents/NETHER_SPROUTS_HIT +FD: net/minecraft/sounds/SoundEvents/f_12129_ net/minecraft/sounds/SoundEvents/NETHER_SPROUTS_FALL +FD: net/minecraft/sounds/SoundEvents/f_12130_ net/minecraft/sounds/SoundEvents/FUNGUS_BREAK +FD: net/minecraft/sounds/SoundEvents/f_12131_ net/minecraft/sounds/SoundEvents/FUNGUS_STEP +FD: net/minecraft/sounds/SoundEvents/f_12132_ net/minecraft/sounds/SoundEvents/FUNGUS_PLACE +FD: net/minecraft/sounds/SoundEvents/f_12133_ net/minecraft/sounds/SoundEvents/FUNGUS_HIT +FD: net/minecraft/sounds/SoundEvents/f_12134_ net/minecraft/sounds/SoundEvents/FUNGUS_FALL +FD: net/minecraft/sounds/SoundEvents/f_12135_ net/minecraft/sounds/SoundEvents/WEEPING_VINES_BREAK +FD: net/minecraft/sounds/SoundEvents/f_12136_ net/minecraft/sounds/SoundEvents/WEEPING_VINES_STEP +FD: net/minecraft/sounds/SoundEvents/f_12137_ net/minecraft/sounds/SoundEvents/WEEPING_VINES_PLACE +FD: net/minecraft/sounds/SoundEvents/f_12138_ net/minecraft/sounds/SoundEvents/WEEPING_VINES_HIT +FD: net/minecraft/sounds/SoundEvents/f_12139_ net/minecraft/sounds/SoundEvents/WEEPING_VINES_FALL +FD: net/minecraft/sounds/SoundEvents/f_12140_ net/minecraft/sounds/SoundEvents/MUSIC_DISC_CAT +FD: net/minecraft/sounds/SoundEvents/f_12141_ net/minecraft/sounds/SoundEvents/MUSIC_DISC_CHIRP +FD: net/minecraft/sounds/SoundEvents/f_12142_ net/minecraft/sounds/SoundEvents/MUSIC_DISC_FAR +FD: net/minecraft/sounds/SoundEvents/f_12143_ net/minecraft/sounds/SoundEvents/MUSIC_DISC_MALL +FD: net/minecraft/sounds/SoundEvents/f_12144_ net/minecraft/sounds/SoundEvents/MUSIC_DISC_MELLOHI +FD: net/minecraft/sounds/SoundEvents/f_12145_ net/minecraft/sounds/SoundEvents/MUSIC_DISC_PIGSTEP +FD: net/minecraft/sounds/SoundEvents/f_12146_ net/minecraft/sounds/SoundEvents/MUSIC_DISC_STAL +FD: net/minecraft/sounds/SoundEvents/f_12147_ net/minecraft/sounds/SoundEvents/MUSIC_DISC_STRAD +FD: net/minecraft/sounds/SoundEvents/f_12148_ net/minecraft/sounds/SoundEvents/MUSIC_DISC_WAIT +FD: net/minecraft/sounds/SoundEvents/f_12149_ net/minecraft/sounds/SoundEvents/MUSIC_DISC_WARD +FD: net/minecraft/sounds/SoundEvents/f_12150_ net/minecraft/sounds/SoundEvents/MUSIC_DRAGON +FD: net/minecraft/sounds/SoundEvents/f_12151_ net/minecraft/sounds/SoundEvents/MUSIC_END +FD: net/minecraft/sounds/SoundEvents/f_12152_ net/minecraft/sounds/SoundEvents/MUSIC_GAME +FD: net/minecraft/sounds/SoundEvents/f_12153_ net/minecraft/sounds/SoundEvents/MUSIC_MENU +FD: net/minecraft/sounds/SoundEvents/f_12154_ net/minecraft/sounds/SoundEvents/MUSIC_BIOME_BASALT_DELTAS +FD: net/minecraft/sounds/SoundEvents/f_12155_ net/minecraft/sounds/SoundEvents/MUSIC_BIOME_NETHER_WASTES +FD: net/minecraft/sounds/SoundEvents/f_12156_ net/minecraft/sounds/SoundEvents/MUSIC_BIOME_SOUL_SAND_VALLEY +FD: net/minecraft/sounds/SoundEvents/f_12157_ net/minecraft/sounds/SoundEvents/MUSIC_BIOME_CRIMSON_FOREST +FD: net/minecraft/sounds/SoundEvents/f_12158_ net/minecraft/sounds/SoundEvents/MUSIC_BIOME_WARPED_FOREST +FD: net/minecraft/sounds/SoundEvents/f_12159_ net/minecraft/sounds/SoundEvents/MUSIC_UNDER_WATER +FD: net/minecraft/sounds/SoundEvents/f_12160_ net/minecraft/sounds/SoundEvents/NETHER_BRICKS_BREAK +FD: net/minecraft/sounds/SoundEvents/f_12161_ net/minecraft/sounds/SoundEvents/NETHER_BRICKS_STEP +FD: net/minecraft/sounds/SoundEvents/f_12162_ net/minecraft/sounds/SoundEvents/NETHER_BRICKS_PLACE +FD: net/minecraft/sounds/SoundEvents/f_12163_ net/minecraft/sounds/SoundEvents/NETHER_BRICKS_HIT +FD: net/minecraft/sounds/SoundEvents/f_12164_ net/minecraft/sounds/SoundEvents/NETHER_BRICKS_FALL +FD: net/minecraft/sounds/SoundEvents/f_12165_ net/minecraft/sounds/SoundEvents/NETHER_WART_BREAK +FD: net/minecraft/sounds/SoundEvents/f_12166_ net/minecraft/sounds/SoundEvents/AMBIENT_NETHER_WASTES_MOOD +FD: net/minecraft/sounds/SoundEvents/f_12167_ net/minecraft/sounds/SoundEvents/NOTE_BLOCK_IRON_XYLOPHONE +FD: net/minecraft/sounds/SoundEvents/f_12168_ net/minecraft/sounds/SoundEvents/NOTE_BLOCK_COW_BELL +FD: net/minecraft/sounds/SoundEvents/f_12169_ net/minecraft/sounds/SoundEvents/NOTE_BLOCK_DIDGERIDOO +FD: net/minecraft/sounds/SoundEvents/f_12170_ net/minecraft/sounds/SoundEvents/NOTE_BLOCK_BIT +FD: net/minecraft/sounds/SoundEvents/f_12171_ net/minecraft/sounds/SoundEvents/NOTE_BLOCK_BANJO +FD: net/minecraft/sounds/SoundEvents/f_12172_ net/minecraft/sounds/SoundEvents/OCELOT_HURT +FD: net/minecraft/sounds/SoundEvents/f_12173_ net/minecraft/sounds/SoundEvents/OCELOT_AMBIENT +FD: net/minecraft/sounds/SoundEvents/f_12174_ net/minecraft/sounds/SoundEvents/OCELOT_DEATH +FD: net/minecraft/sounds/SoundEvents/f_12175_ net/minecraft/sounds/SoundEvents/PAINTING_BREAK +FD: net/minecraft/sounds/SoundEvents/f_12176_ net/minecraft/sounds/SoundEvents/PAINTING_PLACE +FD: net/minecraft/sounds/SoundEvents/f_12177_ net/minecraft/sounds/SoundEvents/PANDA_PRE_SNEEZE +FD: net/minecraft/sounds/SoundEvents/f_12178_ net/minecraft/sounds/SoundEvents/PANDA_SNEEZE +FD: net/minecraft/sounds/SoundEvents/f_12179_ net/minecraft/sounds/SoundEvents/PANDA_AMBIENT +FD: net/minecraft/sounds/SoundEvents/f_12180_ net/minecraft/sounds/SoundEvents/PANDA_DEATH +FD: net/minecraft/sounds/SoundEvents/f_12181_ net/minecraft/sounds/SoundEvents/PANDA_EAT +FD: net/minecraft/sounds/SoundEvents/f_12182_ net/minecraft/sounds/SoundEvents/PANDA_STEP +FD: net/minecraft/sounds/SoundEvents/f_12183_ net/minecraft/sounds/SoundEvents/PANDA_CANT_BREED +FD: net/minecraft/sounds/SoundEvents/f_12184_ net/minecraft/sounds/SoundEvents/PANDA_AGGRESSIVE_AMBIENT +FD: net/minecraft/sounds/SoundEvents/f_12185_ net/minecraft/sounds/SoundEvents/PANDA_WORRIED_AMBIENT +FD: net/minecraft/sounds/SoundEvents/f_12186_ net/minecraft/sounds/SoundEvents/PANDA_HURT +FD: net/minecraft/sounds/SoundEvents/f_12187_ net/minecraft/sounds/SoundEvents/PANDA_BITE +FD: net/minecraft/sounds/SoundEvents/f_12188_ net/minecraft/sounds/SoundEvents/PARROT_AMBIENT +FD: net/minecraft/sounds/SoundEvents/f_12189_ net/minecraft/sounds/SoundEvents/PARROT_DEATH +FD: net/minecraft/sounds/SoundEvents/f_12190_ net/minecraft/sounds/SoundEvents/PARROT_EAT +FD: net/minecraft/sounds/SoundEvents/f_12191_ net/minecraft/sounds/SoundEvents/PARROT_FLY +FD: net/minecraft/sounds/SoundEvents/f_12192_ net/minecraft/sounds/SoundEvents/PARROT_HURT +FD: net/minecraft/sounds/SoundEvents/f_12193_ net/minecraft/sounds/SoundEvents/WART_BLOCK_BREAK +FD: net/minecraft/sounds/SoundEvents/f_12194_ net/minecraft/sounds/SoundEvents/WART_BLOCK_STEP +FD: net/minecraft/sounds/SoundEvents/f_12195_ net/minecraft/sounds/SoundEvents/WART_BLOCK_PLACE +FD: net/minecraft/sounds/SoundEvents/f_12196_ net/minecraft/sounds/SoundEvents/WART_BLOCK_HIT +FD: net/minecraft/sounds/SoundEvents/f_12197_ net/minecraft/sounds/SoundEvents/WART_BLOCK_FALL +FD: net/minecraft/sounds/SoundEvents/f_12198_ net/minecraft/sounds/SoundEvents/NETHERITE_BLOCK_BREAK +FD: net/minecraft/sounds/SoundEvents/f_12199_ net/minecraft/sounds/SoundEvents/NETHERITE_BLOCK_STEP +FD: net/minecraft/sounds/SoundEvents/f_12200_ net/minecraft/sounds/SoundEvents/NETHERITE_BLOCK_PLACE +FD: net/minecraft/sounds/SoundEvents/f_12201_ net/minecraft/sounds/SoundEvents/NETHERITE_BLOCK_HIT +FD: net/minecraft/sounds/SoundEvents/f_12202_ net/minecraft/sounds/SoundEvents/NETHERITE_BLOCK_FALL +FD: net/minecraft/sounds/SoundEvents/f_12203_ net/minecraft/sounds/SoundEvents/NETHERRACK_BREAK +FD: net/minecraft/sounds/SoundEvents/f_12204_ net/minecraft/sounds/SoundEvents/NETHERRACK_STEP +FD: net/minecraft/sounds/SoundEvents/f_12205_ net/minecraft/sounds/SoundEvents/NETHERRACK_PLACE +FD: net/minecraft/sounds/SoundEvents/f_12206_ net/minecraft/sounds/SoundEvents/NETHERRACK_HIT +FD: net/minecraft/sounds/SoundEvents/f_12207_ net/minecraft/sounds/SoundEvents/NETHERRACK_FALL +FD: net/minecraft/sounds/SoundEvents/f_12208_ net/minecraft/sounds/SoundEvents/NOTE_BLOCK_BASEDRUM +FD: net/minecraft/sounds/SoundEvents/f_12209_ net/minecraft/sounds/SoundEvents/NOTE_BLOCK_BASS +FD: net/minecraft/sounds/SoundEvents/f_12210_ net/minecraft/sounds/SoundEvents/NOTE_BLOCK_BELL +FD: net/minecraft/sounds/SoundEvents/f_12211_ net/minecraft/sounds/SoundEvents/NOTE_BLOCK_CHIME +FD: net/minecraft/sounds/SoundEvents/f_12212_ net/minecraft/sounds/SoundEvents/NOTE_BLOCK_FLUTE +FD: net/minecraft/sounds/SoundEvents/f_12213_ net/minecraft/sounds/SoundEvents/NOTE_BLOCK_GUITAR +FD: net/minecraft/sounds/SoundEvents/f_12214_ net/minecraft/sounds/SoundEvents/NOTE_BLOCK_HARP +FD: net/minecraft/sounds/SoundEvents/f_12215_ net/minecraft/sounds/SoundEvents/NOTE_BLOCK_HAT +FD: net/minecraft/sounds/SoundEvents/f_12216_ net/minecraft/sounds/SoundEvents/NOTE_BLOCK_PLING +FD: net/minecraft/sounds/SoundEvents/f_12217_ net/minecraft/sounds/SoundEvents/NOTE_BLOCK_SNARE +FD: net/minecraft/sounds/SoundEvents/f_12218_ net/minecraft/sounds/SoundEvents/NOTE_BLOCK_XYLOPHONE +FD: net/minecraft/sounds/SoundEvents/f_12219_ net/minecraft/sounds/SoundEvents/AMBIENT_SOUL_SAND_VALLEY_ADDITIONS +FD: net/minecraft/sounds/SoundEvents/f_12220_ net/minecraft/sounds/SoundEvents/PARROT_IMITATE_WITCH +FD: net/minecraft/sounds/SoundEvents/f_12221_ net/minecraft/sounds/SoundEvents/PARROT_IMITATE_WITHER +FD: net/minecraft/sounds/SoundEvents/f_12222_ net/minecraft/sounds/SoundEvents/PARROT_IMITATE_WITHER_SKELETON +FD: net/minecraft/sounds/SoundEvents/f_12223_ net/minecraft/sounds/SoundEvents/PARROT_IMITATE_ZOGLIN +FD: net/minecraft/sounds/SoundEvents/f_12224_ net/minecraft/sounds/SoundEvents/PARROT_IMITATE_ZOMBIE +FD: net/minecraft/sounds/SoundEvents/f_12225_ net/minecraft/sounds/SoundEvents/PARROT_IMITATE_ZOMBIE_VILLAGER +FD: net/minecraft/sounds/SoundEvents/f_12226_ net/minecraft/sounds/SoundEvents/PARROT_STEP +FD: net/minecraft/sounds/SoundEvents/f_12227_ net/minecraft/sounds/SoundEvents/PHANTOM_AMBIENT +FD: net/minecraft/sounds/SoundEvents/f_12228_ net/minecraft/sounds/SoundEvents/PHANTOM_BITE +FD: net/minecraft/sounds/SoundEvents/f_12229_ net/minecraft/sounds/SoundEvents/PHANTOM_DEATH +FD: net/minecraft/sounds/SoundEvents/f_12230_ net/minecraft/sounds/SoundEvents/PHANTOM_FLAP +FD: net/minecraft/sounds/SoundEvents/f_12231_ net/minecraft/sounds/SoundEvents/PHANTOM_HURT +FD: net/minecraft/sounds/SoundEvents/f_12232_ net/minecraft/sounds/SoundEvents/PHANTOM_SWOOP +FD: net/minecraft/sounds/SoundEvents/f_12233_ net/minecraft/sounds/SoundEvents/PIG_AMBIENT +FD: net/minecraft/sounds/SoundEvents/f_12234_ net/minecraft/sounds/SoundEvents/PIG_DEATH +FD: net/minecraft/sounds/SoundEvents/f_12235_ net/minecraft/sounds/SoundEvents/PIG_HURT +FD: net/minecraft/sounds/SoundEvents/f_12236_ net/minecraft/sounds/SoundEvents/PIG_SADDLE +FD: net/minecraft/sounds/SoundEvents/f_12237_ net/minecraft/sounds/SoundEvents/PIG_STEP +FD: net/minecraft/sounds/SoundEvents/f_12238_ net/minecraft/sounds/SoundEvents/PIGLIN_ADMIRING_ITEM +FD: net/minecraft/sounds/SoundEvents/f_12239_ net/minecraft/sounds/SoundEvents/PIGLIN_AMBIENT +FD: net/minecraft/sounds/SoundEvents/f_12240_ net/minecraft/sounds/SoundEvents/PIGLIN_ANGRY +FD: net/minecraft/sounds/SoundEvents/f_12241_ net/minecraft/sounds/SoundEvents/PIGLIN_CELEBRATE +FD: net/minecraft/sounds/SoundEvents/f_12242_ net/minecraft/sounds/SoundEvents/PIGLIN_DEATH +FD: net/minecraft/sounds/SoundEvents/f_12243_ net/minecraft/sounds/SoundEvents/PIGLIN_JEALOUS +FD: net/minecraft/sounds/SoundEvents/f_12244_ net/minecraft/sounds/SoundEvents/PIGLIN_HURT +FD: net/minecraft/sounds/SoundEvents/f_12245_ net/minecraft/sounds/SoundEvents/PIGLIN_RETREAT +FD: net/minecraft/sounds/SoundEvents/f_12246_ net/minecraft/sounds/SoundEvents/PARROT_IMITATE_BLAZE +FD: net/minecraft/sounds/SoundEvents/f_12247_ net/minecraft/sounds/SoundEvents/PARROT_IMITATE_CREEPER +FD: net/minecraft/sounds/SoundEvents/f_12248_ net/minecraft/sounds/SoundEvents/PARROT_IMITATE_DROWNED +FD: net/minecraft/sounds/SoundEvents/f_12249_ net/minecraft/sounds/SoundEvents/PARROT_IMITATE_ELDER_GUARDIAN +FD: net/minecraft/sounds/SoundEvents/f_12250_ net/minecraft/sounds/SoundEvents/PARROT_IMITATE_ENDER_DRAGON +FD: net/minecraft/sounds/SoundEvents/f_12251_ net/minecraft/sounds/SoundEvents/PARROT_IMITATE_ENDERMITE +FD: net/minecraft/sounds/SoundEvents/f_12252_ net/minecraft/sounds/SoundEvents/PARROT_IMITATE_EVOKER +FD: net/minecraft/sounds/SoundEvents/f_12253_ net/minecraft/sounds/SoundEvents/PARROT_IMITATE_GHAST +FD: net/minecraft/sounds/SoundEvents/f_12254_ net/minecraft/sounds/SoundEvents/PARROT_IMITATE_GUARDIAN +FD: net/minecraft/sounds/SoundEvents/f_12255_ net/minecraft/sounds/SoundEvents/PARROT_IMITATE_HOGLIN +FD: net/minecraft/sounds/SoundEvents/f_12256_ net/minecraft/sounds/SoundEvents/PARROT_IMITATE_HUSK +FD: net/minecraft/sounds/SoundEvents/f_12257_ net/minecraft/sounds/SoundEvents/PARROT_IMITATE_ILLUSIONER +FD: net/minecraft/sounds/SoundEvents/f_12258_ net/minecraft/sounds/SoundEvents/PARROT_IMITATE_MAGMA_CUBE +FD: net/minecraft/sounds/SoundEvents/f_12259_ net/minecraft/sounds/SoundEvents/PARROT_IMITATE_PHANTOM +FD: net/minecraft/sounds/SoundEvents/f_12260_ net/minecraft/sounds/SoundEvents/PARROT_IMITATE_PIGLIN +FD: net/minecraft/sounds/SoundEvents/f_12261_ net/minecraft/sounds/SoundEvents/PARROT_IMITATE_PIGLIN_BRUTE +FD: net/minecraft/sounds/SoundEvents/f_12262_ net/minecraft/sounds/SoundEvents/PARROT_IMITATE_PILLAGER +FD: net/minecraft/sounds/SoundEvents/f_12263_ net/minecraft/sounds/SoundEvents/PARROT_IMITATE_RAVAGER +FD: net/minecraft/sounds/SoundEvents/f_12264_ net/minecraft/sounds/SoundEvents/PARROT_IMITATE_SHULKER +FD: net/minecraft/sounds/SoundEvents/f_12265_ net/minecraft/sounds/SoundEvents/PARROT_IMITATE_SILVERFISH +FD: net/minecraft/sounds/SoundEvents/f_12266_ net/minecraft/sounds/SoundEvents/PARROT_IMITATE_SKELETON +FD: net/minecraft/sounds/SoundEvents/f_12267_ net/minecraft/sounds/SoundEvents/PARROT_IMITATE_SLIME +FD: net/minecraft/sounds/SoundEvents/f_12268_ net/minecraft/sounds/SoundEvents/PARROT_IMITATE_SPIDER +FD: net/minecraft/sounds/SoundEvents/f_12269_ net/minecraft/sounds/SoundEvents/PARROT_IMITATE_STRAY +FD: net/minecraft/sounds/SoundEvents/f_12270_ net/minecraft/sounds/SoundEvents/PARROT_IMITATE_VEX +FD: net/minecraft/sounds/SoundEvents/f_12271_ net/minecraft/sounds/SoundEvents/PARROT_IMITATE_VINDICATOR +FD: net/minecraft/sounds/SoundEvents/f_12272_ net/minecraft/sounds/SoundEvents/AMBIENT_SOUL_SAND_VALLEY_LOOP +FD: net/minecraft/sounds/SoundEvents/f_12273_ net/minecraft/sounds/SoundEvents/PLAYER_HURT_ON_FIRE +FD: net/minecraft/sounds/SoundEvents/f_12274_ net/minecraft/sounds/SoundEvents/PLAYER_HURT_SWEET_BERRY_BUSH +FD: net/minecraft/sounds/SoundEvents/f_12275_ net/minecraft/sounds/SoundEvents/PLAYER_LEVELUP +FD: net/minecraft/sounds/SoundEvents/f_12276_ net/minecraft/sounds/SoundEvents/PLAYER_SMALL_FALL +FD: net/minecraft/sounds/SoundEvents/f_12277_ net/minecraft/sounds/SoundEvents/PLAYER_SPLASH +FD: net/minecraft/sounds/SoundEvents/f_12278_ net/minecraft/sounds/SoundEvents/PLAYER_SPLASH_HIGH_SPEED +FD: net/minecraft/sounds/SoundEvents/f_12279_ net/minecraft/sounds/SoundEvents/PLAYER_SWIM +FD: net/minecraft/sounds/SoundEvents/f_12280_ net/minecraft/sounds/SoundEvents/POLAR_BEAR_AMBIENT +FD: net/minecraft/sounds/SoundEvents/f_12281_ net/minecraft/sounds/SoundEvents/POLAR_BEAR_AMBIENT_BABY +FD: net/minecraft/sounds/SoundEvents/f_12282_ net/minecraft/sounds/SoundEvents/POLAR_BEAR_DEATH +FD: net/minecraft/sounds/SoundEvents/f_12283_ net/minecraft/sounds/SoundEvents/POLAR_BEAR_HURT +FD: net/minecraft/sounds/SoundEvents/f_12284_ net/minecraft/sounds/SoundEvents/POLAR_BEAR_STEP +FD: net/minecraft/sounds/SoundEvents/f_12285_ net/minecraft/sounds/SoundEvents/POLAR_BEAR_WARNING +FD: net/minecraft/sounds/SoundEvents/f_12286_ net/minecraft/sounds/SoundEvents/PORTAL_AMBIENT +FD: net/minecraft/sounds/SoundEvents/f_12287_ net/minecraft/sounds/SoundEvents/PORTAL_TRAVEL +FD: net/minecraft/sounds/SoundEvents/f_12288_ net/minecraft/sounds/SoundEvents/PORTAL_TRIGGER +FD: net/minecraft/sounds/SoundEvents/f_12289_ net/minecraft/sounds/SoundEvents/PUFFER_FISH_AMBIENT +FD: net/minecraft/sounds/SoundEvents/f_12290_ net/minecraft/sounds/SoundEvents/PUFFER_FISH_BLOW_OUT +FD: net/minecraft/sounds/SoundEvents/f_12291_ net/minecraft/sounds/SoundEvents/PUFFER_FISH_BLOW_UP +FD: net/minecraft/sounds/SoundEvents/f_12292_ net/minecraft/sounds/SoundEvents/PUFFER_FISH_DEATH +FD: net/minecraft/sounds/SoundEvents/f_12293_ net/minecraft/sounds/SoundEvents/PUFFER_FISH_FLOP +FD: net/minecraft/sounds/SoundEvents/f_12294_ net/minecraft/sounds/SoundEvents/PUFFER_FISH_HURT +FD: net/minecraft/sounds/SoundEvents/f_12295_ net/minecraft/sounds/SoundEvents/PUFFER_FISH_STING +FD: net/minecraft/sounds/SoundEvents/f_12296_ net/minecraft/sounds/SoundEvents/PUMPKIN_CARVE +FD: net/minecraft/sounds/SoundEvents/f_12297_ net/minecraft/sounds/SoundEvents/RABBIT_AMBIENT +FD: net/minecraft/sounds/SoundEvents/f_12298_ net/minecraft/sounds/SoundEvents/RABBIT_ATTACK +FD: net/minecraft/sounds/SoundEvents/f_12299_ net/minecraft/sounds/SoundEvents/PIGLIN_STEP +FD: net/minecraft/sounds/SoundEvents/f_12300_ net/minecraft/sounds/SoundEvents/PIGLIN_CONVERTED_TO_ZOMBIFIED +FD: net/minecraft/sounds/SoundEvents/f_12301_ net/minecraft/sounds/SoundEvents/PIGLIN_BRUTE_AMBIENT +FD: net/minecraft/sounds/SoundEvents/f_12302_ net/minecraft/sounds/SoundEvents/PIGLIN_BRUTE_ANGRY +FD: net/minecraft/sounds/SoundEvents/f_12303_ net/minecraft/sounds/SoundEvents/PIGLIN_BRUTE_DEATH +FD: net/minecraft/sounds/SoundEvents/f_12304_ net/minecraft/sounds/SoundEvents/PIGLIN_BRUTE_HURT +FD: net/minecraft/sounds/SoundEvents/f_12305_ net/minecraft/sounds/SoundEvents/PIGLIN_BRUTE_STEP +FD: net/minecraft/sounds/SoundEvents/f_12306_ net/minecraft/sounds/SoundEvents/PIGLIN_BRUTE_CONVERTED_TO_ZOMBIFIED +FD: net/minecraft/sounds/SoundEvents/f_12307_ net/minecraft/sounds/SoundEvents/PILLAGER_AMBIENT +FD: net/minecraft/sounds/SoundEvents/f_12308_ net/minecraft/sounds/SoundEvents/PILLAGER_CELEBRATE +FD: net/minecraft/sounds/SoundEvents/f_12309_ net/minecraft/sounds/SoundEvents/PILLAGER_DEATH +FD: net/minecraft/sounds/SoundEvents/f_12310_ net/minecraft/sounds/SoundEvents/PILLAGER_HURT +FD: net/minecraft/sounds/SoundEvents/f_12311_ net/minecraft/sounds/SoundEvents/PISTON_CONTRACT +FD: net/minecraft/sounds/SoundEvents/f_12312_ net/minecraft/sounds/SoundEvents/PISTON_EXTEND +FD: net/minecraft/sounds/SoundEvents/f_12313_ net/minecraft/sounds/SoundEvents/PLAYER_ATTACK_CRIT +FD: net/minecraft/sounds/SoundEvents/f_12314_ net/minecraft/sounds/SoundEvents/PLAYER_ATTACK_KNOCKBACK +FD: net/minecraft/sounds/SoundEvents/f_12315_ net/minecraft/sounds/SoundEvents/PLAYER_ATTACK_NODAMAGE +FD: net/minecraft/sounds/SoundEvents/f_12316_ net/minecraft/sounds/SoundEvents/PLAYER_ATTACK_STRONG +FD: net/minecraft/sounds/SoundEvents/f_12317_ net/minecraft/sounds/SoundEvents/PLAYER_ATTACK_SWEEP +FD: net/minecraft/sounds/SoundEvents/f_12318_ net/minecraft/sounds/SoundEvents/PLAYER_ATTACK_WEAK +FD: net/minecraft/sounds/SoundEvents/f_12319_ net/minecraft/sounds/SoundEvents/PLAYER_BIG_FALL +FD: net/minecraft/sounds/SoundEvents/f_12320_ net/minecraft/sounds/SoundEvents/PLAYER_BREATH +FD: net/minecraft/sounds/SoundEvents/f_12321_ net/minecraft/sounds/SoundEvents/PLAYER_BURP +FD: net/minecraft/sounds/SoundEvents/f_12322_ net/minecraft/sounds/SoundEvents/PLAYER_DEATH +FD: net/minecraft/sounds/SoundEvents/f_12323_ net/minecraft/sounds/SoundEvents/PLAYER_HURT +FD: net/minecraft/sounds/SoundEvents/f_12324_ net/minecraft/sounds/SoundEvents/PLAYER_HURT_DROWN +FD: net/minecraft/sounds/SoundEvents/f_12325_ net/minecraft/sounds/SoundEvents/AMBIENT_SOUL_SAND_VALLEY_MOOD +FD: net/minecraft/sounds/SoundEvents/f_12326_ net/minecraft/sounds/SoundEvents/RESPAWN_ANCHOR_SET_SPAWN +FD: net/minecraft/sounds/SoundEvents/f_12327_ net/minecraft/sounds/SoundEvents/SALMON_AMBIENT +FD: net/minecraft/sounds/SoundEvents/f_12328_ net/minecraft/sounds/SoundEvents/SALMON_DEATH +FD: net/minecraft/sounds/SoundEvents/f_12329_ net/minecraft/sounds/SoundEvents/SALMON_FLOP +FD: net/minecraft/sounds/SoundEvents/f_12330_ net/minecraft/sounds/SoundEvents/SALMON_HURT +FD: net/minecraft/sounds/SoundEvents/f_12331_ net/minecraft/sounds/SoundEvents/SAND_BREAK +FD: net/minecraft/sounds/SoundEvents/f_12332_ net/minecraft/sounds/SoundEvents/SAND_FALL +FD: net/minecraft/sounds/SoundEvents/f_12333_ net/minecraft/sounds/SoundEvents/SAND_HIT +FD: net/minecraft/sounds/SoundEvents/f_12334_ net/minecraft/sounds/SoundEvents/SAND_PLACE +FD: net/minecraft/sounds/SoundEvents/f_12335_ net/minecraft/sounds/SoundEvents/SAND_STEP +FD: net/minecraft/sounds/SoundEvents/f_12336_ net/minecraft/sounds/SoundEvents/SCAFFOLDING_BREAK +FD: net/minecraft/sounds/SoundEvents/f_12337_ net/minecraft/sounds/SoundEvents/SCAFFOLDING_FALL +FD: net/minecraft/sounds/SoundEvents/f_12338_ net/minecraft/sounds/SoundEvents/SCAFFOLDING_HIT +FD: net/minecraft/sounds/SoundEvents/f_12339_ net/minecraft/sounds/SoundEvents/SCAFFOLDING_PLACE +FD: net/minecraft/sounds/SoundEvents/f_12340_ net/minecraft/sounds/SoundEvents/SCAFFOLDING_STEP +FD: net/minecraft/sounds/SoundEvents/f_12341_ net/minecraft/sounds/SoundEvents/SHEEP_AMBIENT +FD: net/minecraft/sounds/SoundEvents/f_12342_ net/minecraft/sounds/SoundEvents/SHEEP_DEATH +FD: net/minecraft/sounds/SoundEvents/f_12343_ net/minecraft/sounds/SoundEvents/SHEEP_HURT +FD: net/minecraft/sounds/SoundEvents/f_12344_ net/minecraft/sounds/SoundEvents/SHEEP_SHEAR +FD: net/minecraft/sounds/SoundEvents/f_12345_ net/minecraft/sounds/SoundEvents/SHEEP_STEP +FD: net/minecraft/sounds/SoundEvents/f_12346_ net/minecraft/sounds/SoundEvents/SHIELD_BLOCK +FD: net/minecraft/sounds/SoundEvents/f_12347_ net/minecraft/sounds/SoundEvents/SHIELD_BREAK +FD: net/minecraft/sounds/SoundEvents/f_12348_ net/minecraft/sounds/SoundEvents/SHROOMLIGHT_BREAK +FD: net/minecraft/sounds/SoundEvents/f_12349_ net/minecraft/sounds/SoundEvents/SHROOMLIGHT_STEP +FD: net/minecraft/sounds/SoundEvents/f_12350_ net/minecraft/sounds/SoundEvents/SHROOMLIGHT_PLACE +FD: net/minecraft/sounds/SoundEvents/f_12351_ net/minecraft/sounds/SoundEvents/SHROOMLIGHT_HIT +FD: net/minecraft/sounds/SoundEvents/f_12352_ net/minecraft/sounds/SoundEvents/RABBIT_DEATH +FD: net/minecraft/sounds/SoundEvents/f_12353_ net/minecraft/sounds/SoundEvents/RABBIT_HURT +FD: net/minecraft/sounds/SoundEvents/f_12354_ net/minecraft/sounds/SoundEvents/RABBIT_JUMP +FD: net/minecraft/sounds/SoundEvents/f_12355_ net/minecraft/sounds/SoundEvents/RAID_HORN +FD: net/minecraft/sounds/SoundEvents/f_12356_ net/minecraft/sounds/SoundEvents/RAVAGER_AMBIENT +FD: net/minecraft/sounds/SoundEvents/f_12357_ net/minecraft/sounds/SoundEvents/RAVAGER_ATTACK +FD: net/minecraft/sounds/SoundEvents/f_12358_ net/minecraft/sounds/SoundEvents/RAVAGER_CELEBRATE +FD: net/minecraft/sounds/SoundEvents/f_12359_ net/minecraft/sounds/SoundEvents/RAVAGER_DEATH +FD: net/minecraft/sounds/SoundEvents/f_12360_ net/minecraft/sounds/SoundEvents/RAVAGER_HURT +FD: net/minecraft/sounds/SoundEvents/f_12361_ net/minecraft/sounds/SoundEvents/RAVAGER_STEP +FD: net/minecraft/sounds/SoundEvents/f_12362_ net/minecraft/sounds/SoundEvents/RAVAGER_STUNNED +FD: net/minecraft/sounds/SoundEvents/f_12363_ net/minecraft/sounds/SoundEvents/RAVAGER_ROAR +FD: net/minecraft/sounds/SoundEvents/f_12364_ net/minecraft/sounds/SoundEvents/NETHER_GOLD_ORE_BREAK +FD: net/minecraft/sounds/SoundEvents/f_12365_ net/minecraft/sounds/SoundEvents/NETHER_GOLD_ORE_FALL +FD: net/minecraft/sounds/SoundEvents/f_12366_ net/minecraft/sounds/SoundEvents/NETHER_GOLD_ORE_HIT +FD: net/minecraft/sounds/SoundEvents/f_12367_ net/minecraft/sounds/SoundEvents/NETHER_GOLD_ORE_PLACE +FD: net/minecraft/sounds/SoundEvents/f_12368_ net/minecraft/sounds/SoundEvents/NETHER_GOLD_ORE_STEP +FD: net/minecraft/sounds/SoundEvents/f_12369_ net/minecraft/sounds/SoundEvents/NETHER_ORE_BREAK +FD: net/minecraft/sounds/SoundEvents/f_12370_ net/minecraft/sounds/SoundEvents/NETHER_ORE_FALL +FD: net/minecraft/sounds/SoundEvents/f_12371_ net/minecraft/sounds/SoundEvents/NETHER_ORE_HIT +FD: net/minecraft/sounds/SoundEvents/f_12372_ net/minecraft/sounds/SoundEvents/NETHER_ORE_PLACE +FD: net/minecraft/sounds/SoundEvents/f_12373_ net/minecraft/sounds/SoundEvents/NETHER_ORE_STEP +FD: net/minecraft/sounds/SoundEvents/f_12374_ net/minecraft/sounds/SoundEvents/REDSTONE_TORCH_BURNOUT +FD: net/minecraft/sounds/SoundEvents/f_12375_ net/minecraft/sounds/SoundEvents/RESPAWN_ANCHOR_AMBIENT +FD: net/minecraft/sounds/SoundEvents/f_12376_ net/minecraft/sounds/SoundEvents/RESPAWN_ANCHOR_CHARGE +FD: net/minecraft/sounds/SoundEvents/f_12377_ net/minecraft/sounds/SoundEvents/RESPAWN_ANCHOR_DEPLETE +FD: net/minecraft/sounds/SoundEvents/f_12378_ net/minecraft/sounds/SoundEvents/AMBIENT_WARPED_FOREST_ADDITIONS +FD: net/minecraft/sounds/SoundEvents/f_12379_ net/minecraft/sounds/SoundEvents/SKELETON_HORSE_JUMP_WATER +FD: net/minecraft/sounds/SoundEvents/f_12380_ net/minecraft/sounds/SoundEvents/SKELETON_HORSE_STEP_WATER +FD: net/minecraft/sounds/SoundEvents/f_12381_ net/minecraft/sounds/SoundEvents/SKELETON_HURT +FD: net/minecraft/sounds/SoundEvents/f_12382_ net/minecraft/sounds/SoundEvents/SKELETON_SHOOT +FD: net/minecraft/sounds/SoundEvents/f_12383_ net/minecraft/sounds/SoundEvents/SKELETON_STEP +FD: net/minecraft/sounds/SoundEvents/f_12384_ net/minecraft/sounds/SoundEvents/SLIME_ATTACK +FD: net/minecraft/sounds/SoundEvents/f_12385_ net/minecraft/sounds/SoundEvents/SLIME_DEATH +FD: net/minecraft/sounds/SoundEvents/f_12386_ net/minecraft/sounds/SoundEvents/SLIME_HURT +FD: net/minecraft/sounds/SoundEvents/f_12387_ net/minecraft/sounds/SoundEvents/SLIME_JUMP +FD: net/minecraft/sounds/SoundEvents/f_12388_ net/minecraft/sounds/SoundEvents/SLIME_SQUISH +FD: net/minecraft/sounds/SoundEvents/f_12389_ net/minecraft/sounds/SoundEvents/SLIME_BLOCK_BREAK +FD: net/minecraft/sounds/SoundEvents/f_12390_ net/minecraft/sounds/SoundEvents/SLIME_BLOCK_FALL +FD: net/minecraft/sounds/SoundEvents/f_12391_ net/minecraft/sounds/SoundEvents/SLIME_BLOCK_HIT +FD: net/minecraft/sounds/SoundEvents/f_12392_ net/minecraft/sounds/SoundEvents/SLIME_BLOCK_PLACE +FD: net/minecraft/sounds/SoundEvents/f_12393_ net/minecraft/sounds/SoundEvents/SLIME_BLOCK_STEP +FD: net/minecraft/sounds/SoundEvents/f_12394_ net/minecraft/sounds/SoundEvents/SOUL_SAND_BREAK +FD: net/minecraft/sounds/SoundEvents/f_12395_ net/minecraft/sounds/SoundEvents/SOUL_SAND_STEP +FD: net/minecraft/sounds/SoundEvents/f_12396_ net/minecraft/sounds/SoundEvents/SOUL_SAND_PLACE +FD: net/minecraft/sounds/SoundEvents/f_12397_ net/minecraft/sounds/SoundEvents/SOUL_SAND_HIT +FD: net/minecraft/sounds/SoundEvents/f_12398_ net/minecraft/sounds/SoundEvents/SOUL_SAND_FALL +FD: net/minecraft/sounds/SoundEvents/f_12399_ net/minecraft/sounds/SoundEvents/SOUL_SOIL_BREAK +FD: net/minecraft/sounds/SoundEvents/f_12400_ net/minecraft/sounds/SoundEvents/SOUL_SOIL_STEP +FD: net/minecraft/sounds/SoundEvents/f_12401_ net/minecraft/sounds/SoundEvents/SOUL_SOIL_PLACE +FD: net/minecraft/sounds/SoundEvents/f_12402_ net/minecraft/sounds/SoundEvents/SOUL_SOIL_HIT +FD: net/minecraft/sounds/SoundEvents/f_12403_ net/minecraft/sounds/SoundEvents/SOUL_SOIL_FALL +FD: net/minecraft/sounds/SoundEvents/f_12404_ net/minecraft/sounds/SoundEvents/SOUL_ESCAPE +FD: net/minecraft/sounds/SoundEvents/f_12405_ net/minecraft/sounds/SoundEvents/SHROOMLIGHT_FALL +FD: net/minecraft/sounds/SoundEvents/f_12406_ net/minecraft/sounds/SoundEvents/SHOVEL_FLATTEN +FD: net/minecraft/sounds/SoundEvents/f_12407_ net/minecraft/sounds/SoundEvents/SHULKER_AMBIENT +FD: net/minecraft/sounds/SoundEvents/f_12408_ net/minecraft/sounds/SoundEvents/SHULKER_BOX_CLOSE +FD: net/minecraft/sounds/SoundEvents/f_12409_ net/minecraft/sounds/SoundEvents/SHULKER_BOX_OPEN +FD: net/minecraft/sounds/SoundEvents/f_12410_ net/minecraft/sounds/SoundEvents/SHULKER_BULLET_HIT +FD: net/minecraft/sounds/SoundEvents/f_12411_ net/minecraft/sounds/SoundEvents/SHULKER_BULLET_HURT +FD: net/minecraft/sounds/SoundEvents/f_12412_ net/minecraft/sounds/SoundEvents/SHULKER_CLOSE +FD: net/minecraft/sounds/SoundEvents/f_12413_ net/minecraft/sounds/SoundEvents/SHULKER_DEATH +FD: net/minecraft/sounds/SoundEvents/f_12414_ net/minecraft/sounds/SoundEvents/SHULKER_HURT +FD: net/minecraft/sounds/SoundEvents/f_12415_ net/minecraft/sounds/SoundEvents/SHULKER_HURT_CLOSED +FD: net/minecraft/sounds/SoundEvents/f_12416_ net/minecraft/sounds/SoundEvents/SHULKER_OPEN +FD: net/minecraft/sounds/SoundEvents/f_12417_ net/minecraft/sounds/SoundEvents/SHULKER_SHOOT +FD: net/minecraft/sounds/SoundEvents/f_12418_ net/minecraft/sounds/SoundEvents/SHULKER_TELEPORT +FD: net/minecraft/sounds/SoundEvents/f_12419_ net/minecraft/sounds/SoundEvents/SILVERFISH_AMBIENT +FD: net/minecraft/sounds/SoundEvents/f_12420_ net/minecraft/sounds/SoundEvents/SILVERFISH_DEATH +FD: net/minecraft/sounds/SoundEvents/f_12421_ net/minecraft/sounds/SoundEvents/SILVERFISH_HURT +FD: net/minecraft/sounds/SoundEvents/f_12422_ net/minecraft/sounds/SoundEvents/SILVERFISH_STEP +FD: net/minecraft/sounds/SoundEvents/f_12423_ net/minecraft/sounds/SoundEvents/SKELETON_AMBIENT +FD: net/minecraft/sounds/SoundEvents/f_12424_ net/minecraft/sounds/SoundEvents/SKELETON_DEATH +FD: net/minecraft/sounds/SoundEvents/f_12425_ net/minecraft/sounds/SoundEvents/SKELETON_HORSE_AMBIENT +FD: net/minecraft/sounds/SoundEvents/f_12426_ net/minecraft/sounds/SoundEvents/SKELETON_HORSE_DEATH +FD: net/minecraft/sounds/SoundEvents/f_12427_ net/minecraft/sounds/SoundEvents/SKELETON_HORSE_HURT +FD: net/minecraft/sounds/SoundEvents/f_12428_ net/minecraft/sounds/SoundEvents/SKELETON_HORSE_SWIM +FD: net/minecraft/sounds/SoundEvents/f_12429_ net/minecraft/sounds/SoundEvents/SKELETON_HORSE_AMBIENT_WATER +FD: net/minecraft/sounds/SoundEvents/f_12430_ net/minecraft/sounds/SoundEvents/SKELETON_HORSE_GALLOP_WATER +FD: net/minecraft/sounds/SoundEvents/f_12431_ net/minecraft/sounds/SoundEvents/AMBIENT_WARPED_FOREST_LOOP +FD: net/minecraft/sounds/SoundEvents/f_12432_ net/minecraft/sounds/SoundEvents/SPIDER_AMBIENT +FD: net/minecraft/sounds/SoundEvents/f_12433_ net/minecraft/sounds/SoundEvents/SPIDER_DEATH +FD: net/minecraft/sounds/SoundEvents/f_12434_ net/minecraft/sounds/SoundEvents/SPIDER_HURT +FD: net/minecraft/sounds/SoundEvents/f_12435_ net/minecraft/sounds/SoundEvents/SPIDER_STEP +FD: net/minecraft/sounds/SoundEvents/f_12436_ net/minecraft/sounds/SoundEvents/SPLASH_POTION_BREAK +FD: net/minecraft/sounds/SoundEvents/f_12437_ net/minecraft/sounds/SoundEvents/SPLASH_POTION_THROW +FD: net/minecraft/sounds/SoundEvents/f_12438_ net/minecraft/sounds/SoundEvents/SQUID_AMBIENT +FD: net/minecraft/sounds/SoundEvents/f_12439_ net/minecraft/sounds/SoundEvents/SQUID_DEATH +FD: net/minecraft/sounds/SoundEvents/f_12440_ net/minecraft/sounds/SoundEvents/SQUID_HURT +FD: net/minecraft/sounds/SoundEvents/f_12441_ net/minecraft/sounds/SoundEvents/SQUID_SQUIRT +FD: net/minecraft/sounds/SoundEvents/f_12442_ net/minecraft/sounds/SoundEvents/STONE_BREAK +FD: net/minecraft/sounds/SoundEvents/f_12443_ net/minecraft/sounds/SoundEvents/STONE_BUTTON_CLICK_OFF +FD: net/minecraft/sounds/SoundEvents/f_12444_ net/minecraft/sounds/SoundEvents/STONE_BUTTON_CLICK_ON +FD: net/minecraft/sounds/SoundEvents/f_12445_ net/minecraft/sounds/SoundEvents/STONE_FALL +FD: net/minecraft/sounds/SoundEvents/f_12446_ net/minecraft/sounds/SoundEvents/STONE_HIT +FD: net/minecraft/sounds/SoundEvents/f_12447_ net/minecraft/sounds/SoundEvents/STONE_PLACE +FD: net/minecraft/sounds/SoundEvents/f_12448_ net/minecraft/sounds/SoundEvents/STONE_PRESSURE_PLATE_CLICK_OFF +FD: net/minecraft/sounds/SoundEvents/f_12449_ net/minecraft/sounds/SoundEvents/STONE_PRESSURE_PLATE_CLICK_ON +FD: net/minecraft/sounds/SoundEvents/f_12450_ net/minecraft/sounds/SoundEvents/STONE_STEP +FD: net/minecraft/sounds/SoundEvents/f_12451_ net/minecraft/sounds/SoundEvents/STRAY_AMBIENT +FD: net/minecraft/sounds/SoundEvents/f_12452_ net/minecraft/sounds/SoundEvents/STRAY_DEATH +FD: net/minecraft/sounds/SoundEvents/f_12453_ net/minecraft/sounds/SoundEvents/STRAY_HURT +FD: net/minecraft/sounds/SoundEvents/f_12454_ net/minecraft/sounds/SoundEvents/STRAY_STEP +FD: net/minecraft/sounds/SoundEvents/f_12455_ net/minecraft/sounds/SoundEvents/SWEET_BERRY_BUSH_BREAK +FD: net/minecraft/sounds/SoundEvents/f_12456_ net/minecraft/sounds/SoundEvents/SWEET_BERRY_BUSH_PLACE +FD: net/minecraft/sounds/SoundEvents/f_12457_ net/minecraft/sounds/SoundEvents/SWEET_BERRY_BUSH_PICK_BERRIES +FD: net/minecraft/sounds/SoundEvents/f_12458_ net/minecraft/sounds/SoundEvents/STRIDER_AMBIENT +FD: net/minecraft/sounds/SoundEvents/f_12459_ net/minecraft/sounds/SoundEvents/STRIDER_HAPPY +FD: net/minecraft/sounds/SoundEvents/f_12460_ net/minecraft/sounds/SoundEvents/STRIDER_RETREAT +FD: net/minecraft/sounds/SoundEvents/f_12461_ net/minecraft/sounds/SoundEvents/STRIDER_DEATH +FD: net/minecraft/sounds/SoundEvents/f_12462_ net/minecraft/sounds/SoundEvents/STRIDER_HURT +FD: net/minecraft/sounds/SoundEvents/f_12463_ net/minecraft/sounds/SoundEvents/STRIDER_STEP +FD: net/minecraft/sounds/SoundEvents/f_12464_ net/minecraft/sounds/SoundEvents/STRIDER_STEP_LAVA +FD: net/minecraft/sounds/SoundEvents/f_12465_ net/minecraft/sounds/SoundEvents/STRIDER_EAT +FD: net/minecraft/sounds/SoundEvents/f_12466_ net/minecraft/sounds/SoundEvents/STRIDER_SADDLE +FD: net/minecraft/sounds/SoundEvents/f_12467_ net/minecraft/sounds/SoundEvents/SLIME_DEATH_SMALL +FD: net/minecraft/sounds/SoundEvents/f_12468_ net/minecraft/sounds/SoundEvents/SLIME_HURT_SMALL +FD: net/minecraft/sounds/SoundEvents/f_12469_ net/minecraft/sounds/SoundEvents/SLIME_JUMP_SMALL +FD: net/minecraft/sounds/SoundEvents/f_12470_ net/minecraft/sounds/SoundEvents/SLIME_SQUISH_SMALL +FD: net/minecraft/sounds/SoundEvents/f_12471_ net/minecraft/sounds/SoundEvents/SMITHING_TABLE_USE +FD: net/minecraft/sounds/SoundEvents/f_12472_ net/minecraft/sounds/SoundEvents/SMOKER_SMOKE +FD: net/minecraft/sounds/SoundEvents/f_12473_ net/minecraft/sounds/SoundEvents/SNOWBALL_THROW +FD: net/minecraft/sounds/SoundEvents/f_12474_ net/minecraft/sounds/SoundEvents/SNOW_BREAK +FD: net/minecraft/sounds/SoundEvents/f_12475_ net/minecraft/sounds/SoundEvents/SNOW_FALL +FD: net/minecraft/sounds/SoundEvents/f_12476_ net/minecraft/sounds/SoundEvents/SNOW_GOLEM_AMBIENT +FD: net/minecraft/sounds/SoundEvents/f_12477_ net/minecraft/sounds/SoundEvents/SNOW_GOLEM_DEATH +FD: net/minecraft/sounds/SoundEvents/f_12478_ net/minecraft/sounds/SoundEvents/SNOW_GOLEM_HURT +FD: net/minecraft/sounds/SoundEvents/f_12479_ net/minecraft/sounds/SoundEvents/SNOW_GOLEM_SHOOT +FD: net/minecraft/sounds/SoundEvents/f_12480_ net/minecraft/sounds/SoundEvents/SNOW_GOLEM_SHEAR +FD: net/minecraft/sounds/SoundEvents/f_12481_ net/minecraft/sounds/SoundEvents/SNOW_HIT +FD: net/minecraft/sounds/SoundEvents/f_12482_ net/minecraft/sounds/SoundEvents/SNOW_PLACE +FD: net/minecraft/sounds/SoundEvents/f_12483_ net/minecraft/sounds/SoundEvents/SNOW_STEP +FD: net/minecraft/sounds/SoundEvents/f_12484_ net/minecraft/sounds/SoundEvents/AMBIENT_WARPED_FOREST_MOOD +FD: net/minecraft/sounds/SoundEvents/f_12485_ net/minecraft/sounds/SoundEvents/TURTLE_HURT_BABY +FD: net/minecraft/sounds/SoundEvents/f_12486_ net/minecraft/sounds/SoundEvents/TURTLE_LAY_EGG +FD: net/minecraft/sounds/SoundEvents/f_12487_ net/minecraft/sounds/SoundEvents/TURTLE_SHAMBLE +FD: net/minecraft/sounds/SoundEvents/f_12488_ net/minecraft/sounds/SoundEvents/TURTLE_SHAMBLE_BABY +FD: net/minecraft/sounds/SoundEvents/f_12489_ net/minecraft/sounds/SoundEvents/TURTLE_SWIM +FD: net/minecraft/sounds/SoundEvents/f_12490_ net/minecraft/sounds/SoundEvents/UI_BUTTON_CLICK +FD: net/minecraft/sounds/SoundEvents/f_12491_ net/minecraft/sounds/SoundEvents/UI_LOOM_SELECT_PATTERN +FD: net/minecraft/sounds/SoundEvents/f_12492_ net/minecraft/sounds/SoundEvents/UI_LOOM_TAKE_RESULT +FD: net/minecraft/sounds/SoundEvents/f_12493_ net/minecraft/sounds/SoundEvents/UI_CARTOGRAPHY_TABLE_TAKE_RESULT +FD: net/minecraft/sounds/SoundEvents/f_12494_ net/minecraft/sounds/SoundEvents/UI_STONECUTTER_TAKE_RESULT +FD: net/minecraft/sounds/SoundEvents/f_12495_ net/minecraft/sounds/SoundEvents/UI_STONECUTTER_SELECT_RECIPE +FD: net/minecraft/sounds/SoundEvents/f_12496_ net/minecraft/sounds/SoundEvents/UI_TOAST_CHALLENGE_COMPLETE +FD: net/minecraft/sounds/SoundEvents/f_12497_ net/minecraft/sounds/SoundEvents/UI_TOAST_IN +FD: net/minecraft/sounds/SoundEvents/f_12498_ net/minecraft/sounds/SoundEvents/UI_TOAST_OUT +FD: net/minecraft/sounds/SoundEvents/f_12499_ net/minecraft/sounds/SoundEvents/VEX_AMBIENT +FD: net/minecraft/sounds/SoundEvents/f_12500_ net/minecraft/sounds/SoundEvents/VEX_CHARGE +FD: net/minecraft/sounds/SoundEvents/f_12501_ net/minecraft/sounds/SoundEvents/VEX_DEATH +FD: net/minecraft/sounds/SoundEvents/f_12502_ net/minecraft/sounds/SoundEvents/VEX_HURT +FD: net/minecraft/sounds/SoundEvents/f_12503_ net/minecraft/sounds/SoundEvents/VILLAGER_AMBIENT +FD: net/minecraft/sounds/SoundEvents/f_12504_ net/minecraft/sounds/SoundEvents/VILLAGER_CELEBRATE +FD: net/minecraft/sounds/SoundEvents/f_12505_ net/minecraft/sounds/SoundEvents/VILLAGER_DEATH +FD: net/minecraft/sounds/SoundEvents/f_12506_ net/minecraft/sounds/SoundEvents/VILLAGER_HURT +FD: net/minecraft/sounds/SoundEvents/f_12507_ net/minecraft/sounds/SoundEvents/VILLAGER_NO +FD: net/minecraft/sounds/SoundEvents/f_12508_ net/minecraft/sounds/SoundEvents/VILLAGER_TRADE +FD: net/minecraft/sounds/SoundEvents/f_12509_ net/minecraft/sounds/SoundEvents/VILLAGER_YES +FD: net/minecraft/sounds/SoundEvents/f_12510_ net/minecraft/sounds/SoundEvents/VILLAGER_WORK_ARMORER +FD: net/minecraft/sounds/SoundEvents/f_12511_ net/minecraft/sounds/SoundEvents/THORNS_HIT +FD: net/minecraft/sounds/SoundEvents/f_12512_ net/minecraft/sounds/SoundEvents/TNT_PRIMED +FD: net/minecraft/sounds/SoundEvents/f_12513_ net/minecraft/sounds/SoundEvents/TOTEM_USE +FD: net/minecraft/sounds/SoundEvents/f_12514_ net/minecraft/sounds/SoundEvents/TRIDENT_HIT +FD: net/minecraft/sounds/SoundEvents/f_12515_ net/minecraft/sounds/SoundEvents/TRIDENT_HIT_GROUND +FD: net/minecraft/sounds/SoundEvents/f_12516_ net/minecraft/sounds/SoundEvents/TRIDENT_RETURN +FD: net/minecraft/sounds/SoundEvents/f_12517_ net/minecraft/sounds/SoundEvents/TRIDENT_RIPTIDE_1 +FD: net/minecraft/sounds/SoundEvents/f_12518_ net/minecraft/sounds/SoundEvents/TRIDENT_RIPTIDE_2 +FD: net/minecraft/sounds/SoundEvents/f_12519_ net/minecraft/sounds/SoundEvents/TRIDENT_RIPTIDE_3 +FD: net/minecraft/sounds/SoundEvents/f_12520_ net/minecraft/sounds/SoundEvents/TRIDENT_THROW +FD: net/minecraft/sounds/SoundEvents/f_12521_ net/minecraft/sounds/SoundEvents/TRIDENT_THUNDER +FD: net/minecraft/sounds/SoundEvents/f_12522_ net/minecraft/sounds/SoundEvents/TRIPWIRE_ATTACH +FD: net/minecraft/sounds/SoundEvents/f_12523_ net/minecraft/sounds/SoundEvents/TRIPWIRE_CLICK_OFF +FD: net/minecraft/sounds/SoundEvents/f_12524_ net/minecraft/sounds/SoundEvents/TRIPWIRE_CLICK_ON +FD: net/minecraft/sounds/SoundEvents/f_12525_ net/minecraft/sounds/SoundEvents/TRIPWIRE_DETACH +FD: net/minecraft/sounds/SoundEvents/f_12526_ net/minecraft/sounds/SoundEvents/TROPICAL_FISH_AMBIENT +FD: net/minecraft/sounds/SoundEvents/f_12527_ net/minecraft/sounds/SoundEvents/TROPICAL_FISH_DEATH +FD: net/minecraft/sounds/SoundEvents/f_12528_ net/minecraft/sounds/SoundEvents/TROPICAL_FISH_FLOP +FD: net/minecraft/sounds/SoundEvents/f_12529_ net/minecraft/sounds/SoundEvents/TROPICAL_FISH_HURT +FD: net/minecraft/sounds/SoundEvents/f_12530_ net/minecraft/sounds/SoundEvents/TURTLE_AMBIENT_LAND +FD: net/minecraft/sounds/SoundEvents/f_12531_ net/minecraft/sounds/SoundEvents/TURTLE_DEATH +FD: net/minecraft/sounds/SoundEvents/f_12532_ net/minecraft/sounds/SoundEvents/TURTLE_DEATH_BABY +FD: net/minecraft/sounds/SoundEvents/f_12533_ net/minecraft/sounds/SoundEvents/TURTLE_EGG_BREAK +FD: net/minecraft/sounds/SoundEvents/f_12534_ net/minecraft/sounds/SoundEvents/TURTLE_EGG_CRACK +FD: net/minecraft/sounds/SoundEvents/f_12535_ net/minecraft/sounds/SoundEvents/TURTLE_EGG_HATCH +FD: net/minecraft/sounds/SoundEvents/f_12536_ net/minecraft/sounds/SoundEvents/TURTLE_HURT +FD: net/minecraft/sounds/SoundEvents/f_12537_ net/minecraft/sounds/SoundEvents/AMBIENT_UNDERWATER_ENTER +FD: net/minecraft/sounds/SoundEvents/f_12538_ net/minecraft/sounds/SoundEvents/WANDERING_TRADER_TRADE +FD: net/minecraft/sounds/SoundEvents/f_12539_ net/minecraft/sounds/SoundEvents/WANDERING_TRADER_YES +FD: net/minecraft/sounds/SoundEvents/f_12540_ net/minecraft/sounds/SoundEvents/WATER_AMBIENT +FD: net/minecraft/sounds/SoundEvents/f_12541_ net/minecraft/sounds/SoundEvents/WEATHER_RAIN +FD: net/minecraft/sounds/SoundEvents/f_12542_ net/minecraft/sounds/SoundEvents/WEATHER_RAIN_ABOVE +FD: net/minecraft/sounds/SoundEvents/f_12543_ net/minecraft/sounds/SoundEvents/WET_GRASS_BREAK +FD: net/minecraft/sounds/SoundEvents/f_12544_ net/minecraft/sounds/SoundEvents/WET_GRASS_FALL +FD: net/minecraft/sounds/SoundEvents/f_12545_ net/minecraft/sounds/SoundEvents/WET_GRASS_HIT +FD: net/minecraft/sounds/SoundEvents/f_12546_ net/minecraft/sounds/SoundEvents/WET_GRASS_PLACE +FD: net/minecraft/sounds/SoundEvents/f_12547_ net/minecraft/sounds/SoundEvents/WET_GRASS_STEP +FD: net/minecraft/sounds/SoundEvents/f_12548_ net/minecraft/sounds/SoundEvents/WITCH_AMBIENT +FD: net/minecraft/sounds/SoundEvents/f_12549_ net/minecraft/sounds/SoundEvents/WITCH_CELEBRATE +FD: net/minecraft/sounds/SoundEvents/f_12550_ net/minecraft/sounds/SoundEvents/WITCH_DEATH +FD: net/minecraft/sounds/SoundEvents/f_12551_ net/minecraft/sounds/SoundEvents/WITCH_DRINK +FD: net/minecraft/sounds/SoundEvents/f_12552_ net/minecraft/sounds/SoundEvents/WITCH_HURT +FD: net/minecraft/sounds/SoundEvents/f_12553_ net/minecraft/sounds/SoundEvents/WITCH_THROW +FD: net/minecraft/sounds/SoundEvents/f_12554_ net/minecraft/sounds/SoundEvents/WITHER_AMBIENT +FD: net/minecraft/sounds/SoundEvents/f_12555_ net/minecraft/sounds/SoundEvents/WITHER_BREAK_BLOCK +FD: net/minecraft/sounds/SoundEvents/f_12556_ net/minecraft/sounds/SoundEvents/WITHER_DEATH +FD: net/minecraft/sounds/SoundEvents/f_12557_ net/minecraft/sounds/SoundEvents/WITHER_HURT +FD: net/minecraft/sounds/SoundEvents/f_12558_ net/minecraft/sounds/SoundEvents/WITHER_SHOOT +FD: net/minecraft/sounds/SoundEvents/f_12559_ net/minecraft/sounds/SoundEvents/WITHER_SKELETON_AMBIENT +FD: net/minecraft/sounds/SoundEvents/f_12560_ net/minecraft/sounds/SoundEvents/WITHER_SKELETON_DEATH +FD: net/minecraft/sounds/SoundEvents/f_12561_ net/minecraft/sounds/SoundEvents/WITHER_SKELETON_HURT +FD: net/minecraft/sounds/SoundEvents/f_12562_ net/minecraft/sounds/SoundEvents/WITHER_SKELETON_STEP +FD: net/minecraft/sounds/SoundEvents/f_12563_ net/minecraft/sounds/SoundEvents/WITHER_SPAWN +FD: net/minecraft/sounds/SoundEvents/f_12564_ net/minecraft/sounds/SoundEvents/VILLAGER_WORK_BUTCHER +FD: net/minecraft/sounds/SoundEvents/f_12565_ net/minecraft/sounds/SoundEvents/VILLAGER_WORK_CARTOGRAPHER +FD: net/minecraft/sounds/SoundEvents/f_12566_ net/minecraft/sounds/SoundEvents/VILLAGER_WORK_CLERIC +FD: net/minecraft/sounds/SoundEvents/f_12567_ net/minecraft/sounds/SoundEvents/VILLAGER_WORK_FARMER +FD: net/minecraft/sounds/SoundEvents/f_12568_ net/minecraft/sounds/SoundEvents/VILLAGER_WORK_FISHERMAN +FD: net/minecraft/sounds/SoundEvents/f_12569_ net/minecraft/sounds/SoundEvents/VILLAGER_WORK_FLETCHER +FD: net/minecraft/sounds/SoundEvents/f_12570_ net/minecraft/sounds/SoundEvents/VILLAGER_WORK_LEATHERWORKER +FD: net/minecraft/sounds/SoundEvents/f_12571_ net/minecraft/sounds/SoundEvents/VILLAGER_WORK_LIBRARIAN +FD: net/minecraft/sounds/SoundEvents/f_12572_ net/minecraft/sounds/SoundEvents/VILLAGER_WORK_MASON +FD: net/minecraft/sounds/SoundEvents/f_12573_ net/minecraft/sounds/SoundEvents/VILLAGER_WORK_SHEPHERD +FD: net/minecraft/sounds/SoundEvents/f_12574_ net/minecraft/sounds/SoundEvents/VILLAGER_WORK_TOOLSMITH +FD: net/minecraft/sounds/SoundEvents/f_12575_ net/minecraft/sounds/SoundEvents/VILLAGER_WORK_WEAPONSMITH +FD: net/minecraft/sounds/SoundEvents/f_12576_ net/minecraft/sounds/SoundEvents/VINDICATOR_AMBIENT +FD: net/minecraft/sounds/SoundEvents/f_12577_ net/minecraft/sounds/SoundEvents/VINDICATOR_CELEBRATE +FD: net/minecraft/sounds/SoundEvents/f_12578_ net/minecraft/sounds/SoundEvents/VINDICATOR_DEATH +FD: net/minecraft/sounds/SoundEvents/f_12579_ net/minecraft/sounds/SoundEvents/VINDICATOR_HURT +FD: net/minecraft/sounds/SoundEvents/f_12580_ net/minecraft/sounds/SoundEvents/VINE_STEP +FD: net/minecraft/sounds/SoundEvents/f_12581_ net/minecraft/sounds/SoundEvents/LILY_PAD_PLACE +FD: net/minecraft/sounds/SoundEvents/f_12582_ net/minecraft/sounds/SoundEvents/WANDERING_TRADER_AMBIENT +FD: net/minecraft/sounds/SoundEvents/f_12583_ net/minecraft/sounds/SoundEvents/WANDERING_TRADER_DEATH +FD: net/minecraft/sounds/SoundEvents/f_12584_ net/minecraft/sounds/SoundEvents/WANDERING_TRADER_DISAPPEARED +FD: net/minecraft/sounds/SoundEvents/f_12585_ net/minecraft/sounds/SoundEvents/WANDERING_TRADER_DRINK_MILK +FD: net/minecraft/sounds/SoundEvents/f_12586_ net/minecraft/sounds/SoundEvents/WANDERING_TRADER_DRINK_POTION +FD: net/minecraft/sounds/SoundEvents/f_12587_ net/minecraft/sounds/SoundEvents/WANDERING_TRADER_HURT +FD: net/minecraft/sounds/SoundEvents/f_12588_ net/minecraft/sounds/SoundEvents/WANDERING_TRADER_NO +FD: net/minecraft/sounds/SoundEvents/f_12589_ net/minecraft/sounds/SoundEvents/WANDERING_TRADER_REAPPEARED +FD: net/minecraft/sounds/SoundEvents/f_12590_ net/minecraft/sounds/SoundEvents/AMBIENT_UNDERWATER_EXIT +FD: net/minecraft/sounds/SoundEvents/f_12591_ net/minecraft/sounds/SoundEvents/WOOL_STEP +FD: net/minecraft/sounds/SoundEvents/f_12592_ net/minecraft/sounds/SoundEvents/ZOGLIN_AMBIENT +FD: net/minecraft/sounds/SoundEvents/f_12593_ net/minecraft/sounds/SoundEvents/ZOGLIN_ANGRY +FD: net/minecraft/sounds/SoundEvents/f_12594_ net/minecraft/sounds/SoundEvents/ZOGLIN_ATTACK +FD: net/minecraft/sounds/SoundEvents/f_12595_ net/minecraft/sounds/SoundEvents/ZOGLIN_DEATH +FD: net/minecraft/sounds/SoundEvents/f_12596_ net/minecraft/sounds/SoundEvents/ZOGLIN_HURT +FD: net/minecraft/sounds/SoundEvents/f_12597_ net/minecraft/sounds/SoundEvents/ZOGLIN_STEP +FD: net/minecraft/sounds/SoundEvents/f_12598_ net/minecraft/sounds/SoundEvents/ZOMBIE_AMBIENT +FD: net/minecraft/sounds/SoundEvents/f_12599_ net/minecraft/sounds/SoundEvents/ZOMBIE_ATTACK_WOODEN_DOOR +FD: net/minecraft/sounds/SoundEvents/f_12600_ net/minecraft/sounds/SoundEvents/ZOMBIE_ATTACK_IRON_DOOR +FD: net/minecraft/sounds/SoundEvents/f_12601_ net/minecraft/sounds/SoundEvents/ZOMBIE_BREAK_WOODEN_DOOR +FD: net/minecraft/sounds/SoundEvents/f_12602_ net/minecraft/sounds/SoundEvents/ZOMBIE_CONVERTED_TO_DROWNED +FD: net/minecraft/sounds/SoundEvents/f_12603_ net/minecraft/sounds/SoundEvents/ZOMBIE_DEATH +FD: net/minecraft/sounds/SoundEvents/f_12604_ net/minecraft/sounds/SoundEvents/ZOMBIE_DESTROY_EGG +FD: net/minecraft/sounds/SoundEvents/f_12605_ net/minecraft/sounds/SoundEvents/ZOMBIE_HORSE_AMBIENT +FD: net/minecraft/sounds/SoundEvents/f_12606_ net/minecraft/sounds/SoundEvents/ZOMBIE_HORSE_DEATH +FD: net/minecraft/sounds/SoundEvents/f_12607_ net/minecraft/sounds/SoundEvents/ZOMBIE_HORSE_HURT +FD: net/minecraft/sounds/SoundEvents/f_12608_ net/minecraft/sounds/SoundEvents/ZOMBIE_HURT +FD: net/minecraft/sounds/SoundEvents/f_12609_ net/minecraft/sounds/SoundEvents/ZOMBIE_INFECT +FD: net/minecraft/sounds/SoundEvents/f_12610_ net/minecraft/sounds/SoundEvents/ZOMBIFIED_PIGLIN_AMBIENT +FD: net/minecraft/sounds/SoundEvents/f_12611_ net/minecraft/sounds/SoundEvents/ZOMBIFIED_PIGLIN_ANGRY +FD: net/minecraft/sounds/SoundEvents/f_12612_ net/minecraft/sounds/SoundEvents/ZOMBIFIED_PIGLIN_DEATH +FD: net/minecraft/sounds/SoundEvents/f_12613_ net/minecraft/sounds/SoundEvents/ZOMBIFIED_PIGLIN_HURT +FD: net/minecraft/sounds/SoundEvents/f_12614_ net/minecraft/sounds/SoundEvents/ZOMBIE_STEP +FD: net/minecraft/sounds/SoundEvents/f_12615_ net/minecraft/sounds/SoundEvents/ZOMBIE_VILLAGER_AMBIENT +FD: net/minecraft/sounds/SoundEvents/f_12616_ net/minecraft/sounds/SoundEvents/ZOMBIE_VILLAGER_CONVERTED +FD: net/minecraft/sounds/SoundEvents/f_12617_ net/minecraft/sounds/SoundEvents/WOLF_AMBIENT +FD: net/minecraft/sounds/SoundEvents/f_12618_ net/minecraft/sounds/SoundEvents/WOLF_DEATH +FD: net/minecraft/sounds/SoundEvents/f_12619_ net/minecraft/sounds/SoundEvents/WOLF_GROWL +FD: net/minecraft/sounds/SoundEvents/f_12620_ net/minecraft/sounds/SoundEvents/WOLF_HOWL +FD: net/minecraft/sounds/SoundEvents/f_12621_ net/minecraft/sounds/SoundEvents/WOLF_HURT +FD: net/minecraft/sounds/SoundEvents/f_12622_ net/minecraft/sounds/SoundEvents/WOLF_PANT +FD: net/minecraft/sounds/SoundEvents/f_12623_ net/minecraft/sounds/SoundEvents/WOLF_SHAKE +FD: net/minecraft/sounds/SoundEvents/f_12624_ net/minecraft/sounds/SoundEvents/WOLF_STEP +FD: net/minecraft/sounds/SoundEvents/f_12625_ net/minecraft/sounds/SoundEvents/WOLF_WHINE +FD: net/minecraft/sounds/SoundEvents/f_12626_ net/minecraft/sounds/SoundEvents/WOODEN_DOOR_CLOSE +FD: net/minecraft/sounds/SoundEvents/f_12627_ net/minecraft/sounds/SoundEvents/WOODEN_DOOR_OPEN +FD: net/minecraft/sounds/SoundEvents/f_12628_ net/minecraft/sounds/SoundEvents/WOODEN_TRAPDOOR_CLOSE +FD: net/minecraft/sounds/SoundEvents/f_12629_ net/minecraft/sounds/SoundEvents/WOODEN_TRAPDOOR_OPEN +FD: net/minecraft/sounds/SoundEvents/f_12630_ net/minecraft/sounds/SoundEvents/WOOD_BREAK +FD: net/minecraft/sounds/SoundEvents/f_12631_ net/minecraft/sounds/SoundEvents/WOODEN_BUTTON_CLICK_OFF +FD: net/minecraft/sounds/SoundEvents/f_12632_ net/minecraft/sounds/SoundEvents/WOODEN_BUTTON_CLICK_ON +FD: net/minecraft/sounds/SoundEvents/f_12633_ net/minecraft/sounds/SoundEvents/WOOD_FALL +FD: net/minecraft/sounds/SoundEvents/f_12634_ net/minecraft/sounds/SoundEvents/WOOD_HIT +FD: net/minecraft/sounds/SoundEvents/f_12635_ net/minecraft/sounds/SoundEvents/WOOD_PLACE +FD: net/minecraft/sounds/SoundEvents/f_12636_ net/minecraft/sounds/SoundEvents/WOODEN_PRESSURE_PLATE_CLICK_OFF +FD: net/minecraft/sounds/SoundEvents/f_12637_ net/minecraft/sounds/SoundEvents/WOODEN_PRESSURE_PLATE_CLICK_ON +FD: net/minecraft/sounds/SoundEvents/f_12638_ net/minecraft/sounds/SoundEvents/WOOD_STEP +FD: net/minecraft/sounds/SoundEvents/f_12639_ net/minecraft/sounds/SoundEvents/WOOL_BREAK +FD: net/minecraft/sounds/SoundEvents/f_12640_ net/minecraft/sounds/SoundEvents/WOOL_FALL +FD: net/minecraft/sounds/SoundEvents/f_12641_ net/minecraft/sounds/SoundEvents/WOOL_HIT +FD: net/minecraft/sounds/SoundEvents/f_12642_ net/minecraft/sounds/SoundEvents/WOOL_PLACE +FD: net/minecraft/sounds/SoundEvents/f_12643_ net/minecraft/sounds/SoundEvents/AMBIENT_UNDERWATER_LOOP +FD: net/minecraft/sounds/SoundEvents/f_12644_ net/minecraft/sounds/SoundEvents/ZOMBIE_VILLAGER_CURE +FD: net/minecraft/sounds/SoundEvents/f_12645_ net/minecraft/sounds/SoundEvents/ZOMBIE_VILLAGER_DEATH +FD: net/minecraft/sounds/SoundEvents/f_12646_ net/minecraft/sounds/SoundEvents/ZOMBIE_VILLAGER_HURT +FD: net/minecraft/sounds/SoundEvents/f_12647_ net/minecraft/sounds/SoundEvents/ZOMBIE_VILLAGER_STEP +FD: net/minecraft/sounds/SoundEvents/f_12648_ net/minecraft/sounds/SoundEvents/AMBIENT_UNDERWATER_LOOP_ADDITIONS +FD: net/minecraft/sounds/SoundEvents/f_12649_ net/minecraft/sounds/SoundEvents/AMBIENT_UNDERWATER_LOOP_ADDITIONS_RARE +FD: net/minecraft/sounds/SoundEvents/f_12650_ net/minecraft/sounds/SoundEvents/AMBIENT_UNDERWATER_LOOP_ADDITIONS_ULTRA_RARE +FD: net/minecraft/sounds/SoundEvents/f_12651_ net/minecraft/sounds/SoundEvents/ANCIENT_DEBRIS_BREAK +FD: net/minecraft/sounds/SoundEvents/f_12652_ net/minecraft/sounds/SoundEvents/ANCIENT_DEBRIS_STEP +FD: net/minecraft/sounds/SoundEvents/f_12653_ net/minecraft/sounds/SoundEvents/ANCIENT_DEBRIS_PLACE +FD: net/minecraft/sounds/SoundEvents/f_12654_ net/minecraft/sounds/SoundEvents/ANCIENT_DEBRIS_HIT +FD: net/minecraft/sounds/SoundEvents/f_144048_ net/minecraft/sounds/SoundEvents/AMETHYST_BLOCK_PLACE +FD: net/minecraft/sounds/SoundEvents/f_144049_ net/minecraft/sounds/SoundEvents/AMETHYST_BLOCK_STEP +FD: net/minecraft/sounds/SoundEvents/f_144050_ net/minecraft/sounds/SoundEvents/AMETHYST_CLUSTER_BREAK +FD: net/minecraft/sounds/SoundEvents/f_144051_ net/minecraft/sounds/SoundEvents/AMETHYST_CLUSTER_FALL +FD: net/minecraft/sounds/SoundEvents/f_144052_ net/minecraft/sounds/SoundEvents/AMETHYST_CLUSTER_HIT +FD: net/minecraft/sounds/SoundEvents/f_144053_ net/minecraft/sounds/SoundEvents/AMETHYST_CLUSTER_PLACE +FD: net/minecraft/sounds/SoundEvents/f_144054_ net/minecraft/sounds/SoundEvents/AMETHYST_CLUSTER_STEP +FD: net/minecraft/sounds/SoundEvents/f_144055_ net/minecraft/sounds/SoundEvents/AZALEA_LEAVES_FALL +FD: net/minecraft/sounds/SoundEvents/f_144056_ net/minecraft/sounds/SoundEvents/AZALEA_LEAVES_HIT +FD: net/minecraft/sounds/SoundEvents/f_144057_ net/minecraft/sounds/SoundEvents/AZALEA_LEAVES_PLACE +FD: net/minecraft/sounds/SoundEvents/f_144058_ net/minecraft/sounds/SoundEvents/AZALEA_LEAVES_STEP +FD: net/minecraft/sounds/SoundEvents/f_144059_ net/minecraft/sounds/SoundEvents/AXE_SCRAPE +FD: net/minecraft/sounds/SoundEvents/f_144060_ net/minecraft/sounds/SoundEvents/AXE_WAX_OFF +FD: net/minecraft/sounds/SoundEvents/f_144061_ net/minecraft/sounds/SoundEvents/AXOLOTL_ATTACK +FD: net/minecraft/sounds/SoundEvents/f_144062_ net/minecraft/sounds/SoundEvents/AXOLOTL_DEATH +FD: net/minecraft/sounds/SoundEvents/f_144063_ net/minecraft/sounds/SoundEvents/AXOLOTL_HURT +FD: net/minecraft/sounds/SoundEvents/f_144064_ net/minecraft/sounds/SoundEvents/AXOLOTL_IDLE_AIR +FD: net/minecraft/sounds/SoundEvents/f_144065_ net/minecraft/sounds/SoundEvents/AXOLOTL_IDLE_WATER +FD: net/minecraft/sounds/SoundEvents/f_144066_ net/minecraft/sounds/SoundEvents/AXOLOTL_SPLASH +FD: net/minecraft/sounds/SoundEvents/f_144067_ net/minecraft/sounds/SoundEvents/AXOLOTL_SWIM +FD: net/minecraft/sounds/SoundEvents/f_144068_ net/minecraft/sounds/SoundEvents/AZALEA_BREAK +FD: net/minecraft/sounds/SoundEvents/f_144069_ net/minecraft/sounds/SoundEvents/AZALEA_FALL +FD: net/minecraft/sounds/SoundEvents/f_144070_ net/minecraft/sounds/SoundEvents/AZALEA_HIT +FD: net/minecraft/sounds/SoundEvents/f_144071_ net/minecraft/sounds/SoundEvents/AZALEA_PLACE +FD: net/minecraft/sounds/SoundEvents/f_144072_ net/minecraft/sounds/SoundEvents/AZALEA_STEP +FD: net/minecraft/sounds/SoundEvents/f_144073_ net/minecraft/sounds/SoundEvents/AZALEA_LEAVES_BREAK +FD: net/minecraft/sounds/SoundEvents/f_144074_ net/minecraft/sounds/SoundEvents/BONE_MEAL_USE +FD: net/minecraft/sounds/SoundEvents/f_144075_ net/minecraft/sounds/SoundEvents/BUCKET_EMPTY_AXOLOTL +FD: net/minecraft/sounds/SoundEvents/f_144076_ net/minecraft/sounds/SoundEvents/BUCKET_EMPTY_POWDER_SNOW +FD: net/minecraft/sounds/SoundEvents/f_144077_ net/minecraft/sounds/SoundEvents/BUCKET_FILL_AXOLOTL +FD: net/minecraft/sounds/SoundEvents/f_144078_ net/minecraft/sounds/SoundEvents/BIG_DRIPLEAF_BREAK +FD: net/minecraft/sounds/SoundEvents/f_144079_ net/minecraft/sounds/SoundEvents/BIG_DRIPLEAF_FALL +FD: net/minecraft/sounds/SoundEvents/f_144080_ net/minecraft/sounds/SoundEvents/BIG_DRIPLEAF_HIT +FD: net/minecraft/sounds/SoundEvents/f_144081_ net/minecraft/sounds/SoundEvents/BIG_DRIPLEAF_PLACE +FD: net/minecraft/sounds/SoundEvents/f_144082_ net/minecraft/sounds/SoundEvents/BIG_DRIPLEAF_STEP +FD: net/minecraft/sounds/SoundEvents/f_144083_ net/minecraft/sounds/SoundEvents/CAVE_VINES_BREAK +FD: net/minecraft/sounds/SoundEvents/f_144084_ net/minecraft/sounds/SoundEvents/CAVE_VINES_FALL +FD: net/minecraft/sounds/SoundEvents/f_144085_ net/minecraft/sounds/SoundEvents/CAVE_VINES_HIT +FD: net/minecraft/sounds/SoundEvents/f_144086_ net/minecraft/sounds/SoundEvents/CAVE_VINES_PLACE +FD: net/minecraft/sounds/SoundEvents/f_144087_ net/minecraft/sounds/SoundEvents/CAVE_VINES_STEP +FD: net/minecraft/sounds/SoundEvents/f_144088_ net/minecraft/sounds/SoundEvents/CAVE_VINES_PICK_BERRIES +FD: net/minecraft/sounds/SoundEvents/f_144089_ net/minecraft/sounds/SoundEvents/BUCKET_FILL_POWDER_SNOW +FD: net/minecraft/sounds/SoundEvents/f_144090_ net/minecraft/sounds/SoundEvents/CAKE_ADD_CANDLE +FD: net/minecraft/sounds/SoundEvents/f_144091_ net/minecraft/sounds/SoundEvents/CALCITE_BREAK +FD: net/minecraft/sounds/SoundEvents/f_144092_ net/minecraft/sounds/SoundEvents/CALCITE_STEP +FD: net/minecraft/sounds/SoundEvents/f_144093_ net/minecraft/sounds/SoundEvents/CALCITE_PLACE +FD: net/minecraft/sounds/SoundEvents/f_144094_ net/minecraft/sounds/SoundEvents/CALCITE_HIT +FD: net/minecraft/sounds/SoundEvents/f_144095_ net/minecraft/sounds/SoundEvents/CALCITE_FALL +FD: net/minecraft/sounds/SoundEvents/f_144096_ net/minecraft/sounds/SoundEvents/CANDLE_AMBIENT +FD: net/minecraft/sounds/SoundEvents/f_144097_ net/minecraft/sounds/SoundEvents/CANDLE_BREAK +FD: net/minecraft/sounds/SoundEvents/f_144098_ net/minecraft/sounds/SoundEvents/CANDLE_EXTINGUISH +FD: net/minecraft/sounds/SoundEvents/f_144099_ net/minecraft/sounds/SoundEvents/CANDLE_FALL +FD: net/minecraft/sounds/SoundEvents/f_144100_ net/minecraft/sounds/SoundEvents/CANDLE_HIT +FD: net/minecraft/sounds/SoundEvents/f_144101_ net/minecraft/sounds/SoundEvents/CANDLE_PLACE +FD: net/minecraft/sounds/SoundEvents/f_144102_ net/minecraft/sounds/SoundEvents/CANDLE_STEP +FD: net/minecraft/sounds/SoundEvents/f_144103_ net/minecraft/sounds/SoundEvents/DEEPSLATE_BRICKS_BREAK +FD: net/minecraft/sounds/SoundEvents/f_144104_ net/minecraft/sounds/SoundEvents/DEEPSLATE_BRICKS_FALL +FD: net/minecraft/sounds/SoundEvents/f_144105_ net/minecraft/sounds/SoundEvents/DEEPSLATE_BRICKS_HIT +FD: net/minecraft/sounds/SoundEvents/f_144106_ net/minecraft/sounds/SoundEvents/DEEPSLATE_BRICKS_PLACE +FD: net/minecraft/sounds/SoundEvents/f_144107_ net/minecraft/sounds/SoundEvents/DEEPSLATE_BRICKS_STEP +FD: net/minecraft/sounds/SoundEvents/f_144108_ net/minecraft/sounds/SoundEvents/DEEPSLATE_BREAK +FD: net/minecraft/sounds/SoundEvents/f_144109_ net/minecraft/sounds/SoundEvents/DEEPSLATE_FALL +FD: net/minecraft/sounds/SoundEvents/f_144110_ net/minecraft/sounds/SoundEvents/DEEPSLATE_HIT +FD: net/minecraft/sounds/SoundEvents/f_144111_ net/minecraft/sounds/SoundEvents/DEEPSLATE_PLACE +FD: net/minecraft/sounds/SoundEvents/f_144112_ net/minecraft/sounds/SoundEvents/DEEPSLATE_STEP +FD: net/minecraft/sounds/SoundEvents/f_144113_ net/minecraft/sounds/SoundEvents/DEEPSLATE_TILES_BREAK +FD: net/minecraft/sounds/SoundEvents/f_144114_ net/minecraft/sounds/SoundEvents/DEEPSLATE_TILES_FALL +FD: net/minecraft/sounds/SoundEvents/f_144115_ net/minecraft/sounds/SoundEvents/DEEPSLATE_TILES_HIT +FD: net/minecraft/sounds/SoundEvents/f_144116_ net/minecraft/sounds/SoundEvents/DEEPSLATE_TILES_PLACE +FD: net/minecraft/sounds/SoundEvents/f_144117_ net/minecraft/sounds/SoundEvents/COPPER_BREAK +FD: net/minecraft/sounds/SoundEvents/f_144118_ net/minecraft/sounds/SoundEvents/COPPER_STEP +FD: net/minecraft/sounds/SoundEvents/f_144119_ net/minecraft/sounds/SoundEvents/COPPER_PLACE +FD: net/minecraft/sounds/SoundEvents/f_144120_ net/minecraft/sounds/SoundEvents/COPPER_HIT +FD: net/minecraft/sounds/SoundEvents/f_144121_ net/minecraft/sounds/SoundEvents/COPPER_FALL +FD: net/minecraft/sounds/SoundEvents/f_144122_ net/minecraft/sounds/SoundEvents/POINTED_DRIPSTONE_STEP +FD: net/minecraft/sounds/SoundEvents/f_144123_ net/minecraft/sounds/SoundEvents/POINTED_DRIPSTONE_PLACE +FD: net/minecraft/sounds/SoundEvents/f_144124_ net/minecraft/sounds/SoundEvents/POINTED_DRIPSTONE_HIT +FD: net/minecraft/sounds/SoundEvents/f_144125_ net/minecraft/sounds/SoundEvents/POINTED_DRIPSTONE_FALL +FD: net/minecraft/sounds/SoundEvents/f_144126_ net/minecraft/sounds/SoundEvents/POINTED_DRIPSTONE_LAND +FD: net/minecraft/sounds/SoundEvents/f_144127_ net/minecraft/sounds/SoundEvents/POINTED_DRIPSTONE_DRIP_LAVA +FD: net/minecraft/sounds/SoundEvents/f_144128_ net/minecraft/sounds/SoundEvents/POINTED_DRIPSTONE_DRIP_WATER +FD: net/minecraft/sounds/SoundEvents/f_144129_ net/minecraft/sounds/SoundEvents/POINTED_DRIPSTONE_DRIP_LAVA_INTO_CAULDRON +FD: net/minecraft/sounds/SoundEvents/f_144130_ net/minecraft/sounds/SoundEvents/POINTED_DRIPSTONE_DRIP_WATER_INTO_CAULDRON +FD: net/minecraft/sounds/SoundEvents/f_144131_ net/minecraft/sounds/SoundEvents/BIG_DRIPLEAF_TILT_DOWN +FD: net/minecraft/sounds/SoundEvents/f_144132_ net/minecraft/sounds/SoundEvents/BIG_DRIPLEAF_TILT_UP +FD: net/minecraft/sounds/SoundEvents/f_144133_ net/minecraft/sounds/SoundEvents/DYE_USE +FD: net/minecraft/sounds/SoundEvents/f_144134_ net/minecraft/sounds/SoundEvents/DEEPSLATE_TILES_STEP +FD: net/minecraft/sounds/SoundEvents/f_144135_ net/minecraft/sounds/SoundEvents/DRIPSTONE_BLOCK_BREAK +FD: net/minecraft/sounds/SoundEvents/f_144136_ net/minecraft/sounds/SoundEvents/DRIPSTONE_BLOCK_STEP +FD: net/minecraft/sounds/SoundEvents/f_144137_ net/minecraft/sounds/SoundEvents/DRIPSTONE_BLOCK_PLACE +FD: net/minecraft/sounds/SoundEvents/f_144138_ net/minecraft/sounds/SoundEvents/DRIPSTONE_BLOCK_HIT +FD: net/minecraft/sounds/SoundEvents/f_144139_ net/minecraft/sounds/SoundEvents/DRIPSTONE_BLOCK_FALL +FD: net/minecraft/sounds/SoundEvents/f_144140_ net/minecraft/sounds/SoundEvents/POINTED_DRIPSTONE_BREAK +FD: net/minecraft/sounds/SoundEvents/f_144141_ net/minecraft/sounds/SoundEvents/FLOWERING_AZALEA_BREAK +FD: net/minecraft/sounds/SoundEvents/f_144142_ net/minecraft/sounds/SoundEvents/FLOWERING_AZALEA_FALL +FD: net/minecraft/sounds/SoundEvents/f_144143_ net/minecraft/sounds/SoundEvents/FLOWERING_AZALEA_HIT +FD: net/minecraft/sounds/SoundEvents/f_144144_ net/minecraft/sounds/SoundEvents/FLOWERING_AZALEA_PLACE +FD: net/minecraft/sounds/SoundEvents/f_144145_ net/minecraft/sounds/SoundEvents/FLOWERING_AZALEA_STEP +FD: net/minecraft/sounds/SoundEvents/f_144146_ net/minecraft/sounds/SoundEvents/GOAT_SCREAMING_HURT +FD: net/minecraft/sounds/SoundEvents/f_144147_ net/minecraft/sounds/SoundEvents/GOAT_SCREAMING_LONG_JUMP +FD: net/minecraft/sounds/SoundEvents/f_144148_ net/minecraft/sounds/SoundEvents/GOAT_SCREAMING_MILK +FD: net/minecraft/sounds/SoundEvents/f_144149_ net/minecraft/sounds/SoundEvents/GOAT_SCREAMING_PREPARE_RAM +FD: net/minecraft/sounds/SoundEvents/f_144150_ net/minecraft/sounds/SoundEvents/GOAT_SCREAMING_RAM_IMPACT +FD: net/minecraft/sounds/SoundEvents/f_144151_ net/minecraft/sounds/SoundEvents/GOAT_STEP +FD: net/minecraft/sounds/SoundEvents/f_144152_ net/minecraft/sounds/SoundEvents/HANGING_ROOTS_BREAK +FD: net/minecraft/sounds/SoundEvents/f_144153_ net/minecraft/sounds/SoundEvents/GLOW_INK_SAC_USE +FD: net/minecraft/sounds/SoundEvents/f_144154_ net/minecraft/sounds/SoundEvents/GLOW_ITEM_FRAME_ADD_ITEM +FD: net/minecraft/sounds/SoundEvents/f_144155_ net/minecraft/sounds/SoundEvents/GLOW_ITEM_FRAME_BREAK +FD: net/minecraft/sounds/SoundEvents/f_144156_ net/minecraft/sounds/SoundEvents/GLOW_ITEM_FRAME_PLACE +FD: net/minecraft/sounds/SoundEvents/f_144157_ net/minecraft/sounds/SoundEvents/GLOW_ITEM_FRAME_REMOVE_ITEM +FD: net/minecraft/sounds/SoundEvents/f_144158_ net/minecraft/sounds/SoundEvents/GLOW_ITEM_FRAME_ROTATE_ITEM +FD: net/minecraft/sounds/SoundEvents/f_144159_ net/minecraft/sounds/SoundEvents/GLOW_SQUID_AMBIENT +FD: net/minecraft/sounds/SoundEvents/f_144160_ net/minecraft/sounds/SoundEvents/GLOW_SQUID_DEATH +FD: net/minecraft/sounds/SoundEvents/f_144161_ net/minecraft/sounds/SoundEvents/GLOW_SQUID_HURT +FD: net/minecraft/sounds/SoundEvents/f_144162_ net/minecraft/sounds/SoundEvents/GLOW_SQUID_SQUIRT +FD: net/minecraft/sounds/SoundEvents/f_144163_ net/minecraft/sounds/SoundEvents/GOAT_AMBIENT +FD: net/minecraft/sounds/SoundEvents/f_144164_ net/minecraft/sounds/SoundEvents/GOAT_DEATH +FD: net/minecraft/sounds/SoundEvents/f_144165_ net/minecraft/sounds/SoundEvents/GOAT_EAT +FD: net/minecraft/sounds/SoundEvents/f_144166_ net/minecraft/sounds/SoundEvents/GOAT_HURT +FD: net/minecraft/sounds/SoundEvents/f_144167_ net/minecraft/sounds/SoundEvents/GOAT_LONG_JUMP +FD: net/minecraft/sounds/SoundEvents/f_144168_ net/minecraft/sounds/SoundEvents/GOAT_MILK +FD: net/minecraft/sounds/SoundEvents/f_144169_ net/minecraft/sounds/SoundEvents/GOAT_PREPARE_RAM +FD: net/minecraft/sounds/SoundEvents/f_144170_ net/minecraft/sounds/SoundEvents/GOAT_RAM_IMPACT +FD: net/minecraft/sounds/SoundEvents/f_144171_ net/minecraft/sounds/SoundEvents/GOAT_SCREAMING_AMBIENT +FD: net/minecraft/sounds/SoundEvents/f_144172_ net/minecraft/sounds/SoundEvents/GOAT_SCREAMING_DEATH +FD: net/minecraft/sounds/SoundEvents/f_144173_ net/minecraft/sounds/SoundEvents/GOAT_SCREAMING_EAT +FD: net/minecraft/sounds/SoundEvents/f_144174_ net/minecraft/sounds/SoundEvents/HANGING_ROOTS_FALL +FD: net/minecraft/sounds/SoundEvents/f_144175_ net/minecraft/sounds/SoundEvents/HANGING_ROOTS_HIT +FD: net/minecraft/sounds/SoundEvents/f_144176_ net/minecraft/sounds/SoundEvents/HANGING_ROOTS_PLACE +FD: net/minecraft/sounds/SoundEvents/f_144177_ net/minecraft/sounds/SoundEvents/HANGING_ROOTS_STEP +FD: net/minecraft/sounds/SoundEvents/f_144178_ net/minecraft/sounds/SoundEvents/HONEYCOMB_WAX_ON +FD: net/minecraft/sounds/SoundEvents/f_144179_ net/minecraft/sounds/SoundEvents/LARGE_AMETHYST_BUD_BREAK +FD: net/minecraft/sounds/SoundEvents/f_144180_ net/minecraft/sounds/SoundEvents/LARGE_AMETHYST_BUD_PLACE +FD: net/minecraft/sounds/SoundEvents/f_144181_ net/minecraft/sounds/SoundEvents/INK_SAC_USE +FD: net/minecraft/sounds/SoundEvents/f_144182_ net/minecraft/sounds/SoundEvents/MOSS_CARPET_BREAK +FD: net/minecraft/sounds/SoundEvents/f_144183_ net/minecraft/sounds/SoundEvents/MOSS_CARPET_FALL +FD: net/minecraft/sounds/SoundEvents/f_144184_ net/minecraft/sounds/SoundEvents/MOSS_CARPET_HIT +FD: net/minecraft/sounds/SoundEvents/f_144185_ net/minecraft/sounds/SoundEvents/MOSS_CARPET_PLACE +FD: net/minecraft/sounds/SoundEvents/f_144186_ net/minecraft/sounds/SoundEvents/MOSS_CARPET_STEP +FD: net/minecraft/sounds/SoundEvents/f_144187_ net/minecraft/sounds/SoundEvents/MOSS_BREAK +FD: net/minecraft/sounds/SoundEvents/f_144188_ net/minecraft/sounds/SoundEvents/MOSS_FALL +FD: net/minecraft/sounds/SoundEvents/f_144189_ net/minecraft/sounds/SoundEvents/MOSS_HIT +FD: net/minecraft/sounds/SoundEvents/f_144190_ net/minecraft/sounds/SoundEvents/MOSS_PLACE +FD: net/minecraft/sounds/SoundEvents/f_144191_ net/minecraft/sounds/SoundEvents/MOSS_STEP +FD: net/minecraft/sounds/SoundEvents/f_144192_ net/minecraft/sounds/SoundEvents/MEDIUM_AMETHYST_BUD_BREAK +FD: net/minecraft/sounds/SoundEvents/f_144193_ net/minecraft/sounds/SoundEvents/MEDIUM_AMETHYST_BUD_PLACE +FD: net/minecraft/sounds/SoundEvents/f_144194_ net/minecraft/sounds/SoundEvents/MINECART_INSIDE_UNDERWATER +FD: net/minecraft/sounds/SoundEvents/f_144195_ net/minecraft/sounds/SoundEvents/POLISHED_DEEPSLATE_BREAK +FD: net/minecraft/sounds/SoundEvents/f_144196_ net/minecraft/sounds/SoundEvents/POLISHED_DEEPSLATE_FALL +FD: net/minecraft/sounds/SoundEvents/f_144197_ net/minecraft/sounds/SoundEvents/POLISHED_DEEPSLATE_HIT +FD: net/minecraft/sounds/SoundEvents/f_144198_ net/minecraft/sounds/SoundEvents/POLISHED_DEEPSLATE_PLACE +FD: net/minecraft/sounds/SoundEvents/f_144199_ net/minecraft/sounds/SoundEvents/POLISHED_DEEPSLATE_STEP +FD: net/minecraft/sounds/SoundEvents/f_144200_ net/minecraft/sounds/SoundEvents/POWDER_SNOW_BREAK +FD: net/minecraft/sounds/SoundEvents/f_144201_ net/minecraft/sounds/SoundEvents/POWDER_SNOW_FALL +FD: net/minecraft/sounds/SoundEvents/f_144202_ net/minecraft/sounds/SoundEvents/POWDER_SNOW_HIT +FD: net/minecraft/sounds/SoundEvents/f_144203_ net/minecraft/sounds/SoundEvents/POWDER_SNOW_PLACE +FD: net/minecraft/sounds/SoundEvents/f_144204_ net/minecraft/sounds/SoundEvents/POWDER_SNOW_STEP +FD: net/minecraft/sounds/SoundEvents/f_144205_ net/minecraft/sounds/SoundEvents/PLAYER_HURT_FREEZE +FD: net/minecraft/sounds/SoundEvents/f_144206_ net/minecraft/sounds/SoundEvents/ROOTED_DIRT_BREAK +FD: net/minecraft/sounds/SoundEvents/f_144207_ net/minecraft/sounds/SoundEvents/ROOTED_DIRT_FALL +FD: net/minecraft/sounds/SoundEvents/f_144208_ net/minecraft/sounds/SoundEvents/ROOTED_DIRT_HIT +FD: net/minecraft/sounds/SoundEvents/f_144209_ net/minecraft/sounds/SoundEvents/ROOTED_DIRT_PLACE +FD: net/minecraft/sounds/SoundEvents/f_144210_ net/minecraft/sounds/SoundEvents/ROOTED_DIRT_STEP +FD: net/minecraft/sounds/SoundEvents/f_144211_ net/minecraft/sounds/SoundEvents/SKELETON_CONVERTED_TO_STRAY +FD: net/minecraft/sounds/SoundEvents/f_144212_ net/minecraft/sounds/SoundEvents/SCULK_CLICKING +FD: net/minecraft/sounds/SoundEvents/f_144213_ net/minecraft/sounds/SoundEvents/SCULK_CLICKING_STOP +FD: net/minecraft/sounds/SoundEvents/f_144214_ net/minecraft/sounds/SoundEvents/SCULK_SENSOR_BREAK +FD: net/minecraft/sounds/SoundEvents/f_144215_ net/minecraft/sounds/SoundEvents/SCULK_SENSOR_FALL +FD: net/minecraft/sounds/SoundEvents/f_144216_ net/minecraft/sounds/SoundEvents/SCULK_SENSOR_HIT +FD: net/minecraft/sounds/SoundEvents/f_144217_ net/minecraft/sounds/SoundEvents/SCULK_SENSOR_PLACE +FD: net/minecraft/sounds/SoundEvents/f_144218_ net/minecraft/sounds/SoundEvents/SCULK_SENSOR_STEP +FD: net/minecraft/sounds/SoundEvents/f_144219_ net/minecraft/sounds/SoundEvents/SPORE_BLOSSOM_BREAK +FD: net/minecraft/sounds/SoundEvents/f_144220_ net/minecraft/sounds/SoundEvents/SPORE_BLOSSOM_FALL +FD: net/minecraft/sounds/SoundEvents/f_144221_ net/minecraft/sounds/SoundEvents/SPORE_BLOSSOM_HIT +FD: net/minecraft/sounds/SoundEvents/f_144222_ net/minecraft/sounds/SoundEvents/SPORE_BLOSSOM_PLACE +FD: net/minecraft/sounds/SoundEvents/f_144223_ net/minecraft/sounds/SoundEvents/SPORE_BLOSSOM_STEP +FD: net/minecraft/sounds/SoundEvents/f_144224_ net/minecraft/sounds/SoundEvents/SMALL_AMETHYST_BUD_BREAK +FD: net/minecraft/sounds/SoundEvents/f_144225_ net/minecraft/sounds/SoundEvents/SMALL_AMETHYST_BUD_PLACE +FD: net/minecraft/sounds/SoundEvents/f_144226_ net/minecraft/sounds/SoundEvents/SMALL_DRIPLEAF_BREAK +FD: net/minecraft/sounds/SoundEvents/f_144227_ net/minecraft/sounds/SoundEvents/SMALL_DRIPLEAF_FALL +FD: net/minecraft/sounds/SoundEvents/f_144228_ net/minecraft/sounds/SoundEvents/SMALL_DRIPLEAF_HIT +FD: net/minecraft/sounds/SoundEvents/f_144229_ net/minecraft/sounds/SoundEvents/SMALL_DRIPLEAF_PLACE +FD: net/minecraft/sounds/SoundEvents/f_144230_ net/minecraft/sounds/SoundEvents/SMALL_DRIPLEAF_STEP +FD: net/minecraft/sounds/SoundEvents/f_144231_ net/minecraft/sounds/SoundEvents/SPYGLASS_USE +FD: net/minecraft/sounds/SoundEvents/f_144232_ net/minecraft/sounds/SoundEvents/SPYGLASS_STOP_USING +FD: net/minecraft/sounds/SoundEvents/f_144233_ net/minecraft/sounds/SoundEvents/TUFF_BREAK +FD: net/minecraft/sounds/SoundEvents/f_144234_ net/minecraft/sounds/SoundEvents/TUFF_STEP +FD: net/minecraft/sounds/SoundEvents/f_144235_ net/minecraft/sounds/SoundEvents/TUFF_PLACE +FD: net/minecraft/sounds/SoundEvents/f_144236_ net/minecraft/sounds/SoundEvents/TUFF_HIT +FD: net/minecraft/sounds/SoundEvents/f_144237_ net/minecraft/sounds/SoundEvents/TUFF_FALL +FD: net/minecraft/sounds/SoundEvents/f_144238_ net/minecraft/sounds/SoundEvents/VINE_BREAK +FD: net/minecraft/sounds/SoundEvents/f_144239_ net/minecraft/sounds/SoundEvents/VINE_FALL +FD: net/minecraft/sounds/SoundEvents/f_144240_ net/minecraft/sounds/SoundEvents/VINE_HIT +FD: net/minecraft/sounds/SoundEvents/f_144241_ net/minecraft/sounds/SoundEvents/VINE_PLACE +FD: net/minecraft/sounds/SoundEvents/f_144242_ net/minecraft/sounds/SoundEvents/AMETHYST_BLOCK_BREAK +FD: net/minecraft/sounds/SoundEvents/f_144243_ net/minecraft/sounds/SoundEvents/AMETHYST_BLOCK_CHIME +FD: net/minecraft/sounds/SoundEvents/f_144244_ net/minecraft/sounds/SoundEvents/AMETHYST_BLOCK_FALL +FD: net/minecraft/sounds/SoundEvents/f_144245_ net/minecraft/sounds/SoundEvents/AMETHYST_BLOCK_HIT +FD: net/minecraft/sounds/SoundEvents/f_184214_ net/minecraft/sounds/SoundEvents/BUNDLE_DROP_CONTENTS +FD: net/minecraft/sounds/SoundEvents/f_184215_ net/minecraft/sounds/SoundEvents/BUNDLE_INSERT +FD: net/minecraft/sounds/SoundEvents/f_184216_ net/minecraft/sounds/SoundEvents/BUNDLE_REMOVE_ONE +FD: net/minecraft/sounds/SoundEvents/f_184217_ net/minecraft/sounds/SoundEvents/GROWING_PLANT_CROP +FD: net/minecraft/sounds/SoundEvents/f_184218_ net/minecraft/sounds/SoundEvents/MUSIC_DISC_OTHERSIDE +FD: net/minecraft/sounds/SoundEvents/f_184219_ net/minecraft/sounds/SoundEvents/MUSIC_BIOME_DRIPSTONE_CAVES +FD: net/minecraft/sounds/SoundEvents/f_184220_ net/minecraft/sounds/SoundEvents/MUSIC_BIOME_GROVE +FD: net/minecraft/sounds/SoundEvents/f_184221_ net/minecraft/sounds/SoundEvents/MUSIC_BIOME_JAGGED_PEAKS +FD: net/minecraft/sounds/SoundEvents/f_184222_ net/minecraft/sounds/SoundEvents/MUSIC_BIOME_LUSH_CAVES +FD: net/minecraft/sounds/SoundEvents/f_184223_ net/minecraft/sounds/SoundEvents/MUSIC_BIOME_MEADOW +FD: net/minecraft/sounds/SoundEvents/f_184224_ net/minecraft/sounds/SoundEvents/MUSIC_BIOME_FROZEN_PEAKS +FD: net/minecraft/sounds/SoundEvents/f_184225_ net/minecraft/sounds/SoundEvents/MUSIC_BIOME_SNOWY_SLOPES +FD: net/minecraft/sounds/SoundEvents/f_184226_ net/minecraft/sounds/SoundEvents/MUSIC_BIOME_STONY_PEAKS +FD: net/minecraft/sounds/SoundEvents/f_215670_ net/minecraft/sounds/SoundEvents/ALLAY_AMBIENT_WITH_ITEM +FD: net/minecraft/sounds/SoundEvents/f_215671_ net/minecraft/sounds/SoundEvents/ALLAY_AMBIENT_WITHOUT_ITEM +FD: net/minecraft/sounds/SoundEvents/f_215672_ net/minecraft/sounds/SoundEvents/ALLAY_DEATH +FD: net/minecraft/sounds/SoundEvents/f_215673_ net/minecraft/sounds/SoundEvents/BUCKET_EMPTY_TADPOLE +FD: net/minecraft/sounds/SoundEvents/f_215674_ net/minecraft/sounds/SoundEvents/BUCKET_FILL_TADPOLE +FD: net/minecraft/sounds/SoundEvents/f_215675_ net/minecraft/sounds/SoundEvents/ALLAY_HURT +FD: net/minecraft/sounds/SoundEvents/f_215676_ net/minecraft/sounds/SoundEvents/ALLAY_ITEM_GIVEN +FD: net/minecraft/sounds/SoundEvents/f_215677_ net/minecraft/sounds/SoundEvents/ALLAY_ITEM_TAKEN +FD: net/minecraft/sounds/SoundEvents/f_215678_ net/minecraft/sounds/SoundEvents/ALLAY_THROW +FD: net/minecraft/sounds/SoundEvents/f_215679_ net/minecraft/sounds/SoundEvents/FROGLIGHT_BREAK +FD: net/minecraft/sounds/SoundEvents/f_215680_ net/minecraft/sounds/SoundEvents/FROGLIGHT_FALL +FD: net/minecraft/sounds/SoundEvents/f_215681_ net/minecraft/sounds/SoundEvents/FROGLIGHT_HIT +FD: net/minecraft/sounds/SoundEvents/f_215682_ net/minecraft/sounds/SoundEvents/FROGLIGHT_PLACE +FD: net/minecraft/sounds/SoundEvents/f_215683_ net/minecraft/sounds/SoundEvents/FROGLIGHT_STEP +FD: net/minecraft/sounds/SoundEvents/f_215684_ net/minecraft/sounds/SoundEvents/FROGSPAWNSTEP +FD: net/minecraft/sounds/SoundEvents/f_215685_ net/minecraft/sounds/SoundEvents/FROGSPAWN_BREAK +FD: net/minecraft/sounds/SoundEvents/f_215686_ net/minecraft/sounds/SoundEvents/FROGSPAWN_FALL +FD: net/minecraft/sounds/SoundEvents/f_215687_ net/minecraft/sounds/SoundEvents/FROGSPAWN_HATCH +FD: net/minecraft/sounds/SoundEvents/f_215688_ net/minecraft/sounds/SoundEvents/FROGSPAWN_HIT +FD: net/minecraft/sounds/SoundEvents/f_215689_ net/minecraft/sounds/SoundEvents/FROGSPAWN_PLACE +FD: net/minecraft/sounds/SoundEvents/f_215690_ net/minecraft/sounds/SoundEvents/FROG_AMBIENT +FD: net/minecraft/sounds/SoundEvents/f_215691_ net/minecraft/sounds/SoundEvents/FROG_DEATH +FD: net/minecraft/sounds/SoundEvents/f_215692_ net/minecraft/sounds/SoundEvents/FROG_EAT +FD: net/minecraft/sounds/SoundEvents/f_215693_ net/minecraft/sounds/SoundEvents/FROG_HURT +FD: net/minecraft/sounds/SoundEvents/f_215694_ net/minecraft/sounds/SoundEvents/FROG_LAY_SPAWN +FD: net/minecraft/sounds/SoundEvents/f_215695_ net/minecraft/sounds/SoundEvents/FROG_LONG_JUMP +FD: net/minecraft/sounds/SoundEvents/f_215696_ net/minecraft/sounds/SoundEvents/FROG_STEP +FD: net/minecraft/sounds/SoundEvents/f_215697_ net/minecraft/sounds/SoundEvents/FROG_TONGUE +FD: net/minecraft/sounds/SoundEvents/f_215698_ net/minecraft/sounds/SoundEvents/GOAT_HORN_BREAK +FD: net/minecraft/sounds/SoundEvents/f_215699_ net/minecraft/sounds/SoundEvents/GOAT_HORN_PLAY +FD: net/minecraft/sounds/SoundEvents/f_215700_ net/minecraft/sounds/SoundEvents/GOAT_SCREAMING_HORN_BREAK +FD: net/minecraft/sounds/SoundEvents/f_215701_ net/minecraft/sounds/SoundEvents/GOAT_HORN_VARIANT_COUNT +FD: net/minecraft/sounds/SoundEvents/f_215702_ net/minecraft/sounds/SoundEvents/GOAT_HORN_SOUND_VARIANTS +FD: net/minecraft/sounds/SoundEvents/f_215703_ net/minecraft/sounds/SoundEvents/MANGROVE_ROOTS_BREAK +FD: net/minecraft/sounds/SoundEvents/f_215704_ net/minecraft/sounds/SoundEvents/MANGROVE_ROOTS_FALL +FD: net/minecraft/sounds/SoundEvents/f_215705_ net/minecraft/sounds/SoundEvents/MANGROVE_ROOTS_HIT +FD: net/minecraft/sounds/SoundEvents/f_215706_ net/minecraft/sounds/SoundEvents/MANGROVE_ROOTS_PLACE +FD: net/minecraft/sounds/SoundEvents/f_215707_ net/minecraft/sounds/SoundEvents/MANGROVE_ROOTS_STEP +FD: net/minecraft/sounds/SoundEvents/f_215708_ net/minecraft/sounds/SoundEvents/MUD_BREAK +FD: net/minecraft/sounds/SoundEvents/f_215709_ net/minecraft/sounds/SoundEvents/MUD_FALL +FD: net/minecraft/sounds/SoundEvents/f_215710_ net/minecraft/sounds/SoundEvents/MUD_HIT +FD: net/minecraft/sounds/SoundEvents/f_215711_ net/minecraft/sounds/SoundEvents/MUD_PLACE +FD: net/minecraft/sounds/SoundEvents/f_215712_ net/minecraft/sounds/SoundEvents/MUD_STEP +FD: net/minecraft/sounds/SoundEvents/f_215713_ net/minecraft/sounds/SoundEvents/MUD_BRICKS_BREAK +FD: net/minecraft/sounds/SoundEvents/f_215714_ net/minecraft/sounds/SoundEvents/MUD_BRICKS_FALL +FD: net/minecraft/sounds/SoundEvents/f_215715_ net/minecraft/sounds/SoundEvents/MUD_BRICKS_HIT +FD: net/minecraft/sounds/SoundEvents/f_215716_ net/minecraft/sounds/SoundEvents/MUD_BRICKS_PLACE +FD: net/minecraft/sounds/SoundEvents/f_215717_ net/minecraft/sounds/SoundEvents/MUD_BRICKS_STEP +FD: net/minecraft/sounds/SoundEvents/f_215718_ net/minecraft/sounds/SoundEvents/MUDDY_MANGROVE_ROOTS_BREAK +FD: net/minecraft/sounds/SoundEvents/f_215719_ net/minecraft/sounds/SoundEvents/MUDDY_MANGROVE_ROOTS_FALL +FD: net/minecraft/sounds/SoundEvents/f_215720_ net/minecraft/sounds/SoundEvents/MUDDY_MANGROVE_ROOTS_HIT +FD: net/minecraft/sounds/SoundEvents/f_215721_ net/minecraft/sounds/SoundEvents/MUDDY_MANGROVE_ROOTS_PLACE +FD: net/minecraft/sounds/SoundEvents/f_215722_ net/minecraft/sounds/SoundEvents/MUDDY_MANGROVE_ROOTS_STEP +FD: net/minecraft/sounds/SoundEvents/f_215723_ net/minecraft/sounds/SoundEvents/MUSIC_DISC_5 +FD: net/minecraft/sounds/SoundEvents/f_215724_ net/minecraft/sounds/SoundEvents/PACKED_MUD_BREAK +FD: net/minecraft/sounds/SoundEvents/f_215725_ net/minecraft/sounds/SoundEvents/PACKED_MUD_FALL +FD: net/minecraft/sounds/SoundEvents/f_215726_ net/minecraft/sounds/SoundEvents/PACKED_MUD_HIT +FD: net/minecraft/sounds/SoundEvents/f_215727_ net/minecraft/sounds/SoundEvents/PACKED_MUD_PLACE +FD: net/minecraft/sounds/SoundEvents/f_215728_ net/minecraft/sounds/SoundEvents/PACKED_MUD_STEP +FD: net/minecraft/sounds/SoundEvents/f_215729_ net/minecraft/sounds/SoundEvents/MUSIC_BIOME_DEEP_DARK +FD: net/minecraft/sounds/SoundEvents/f_215730_ net/minecraft/sounds/SoundEvents/MUSIC_BIOME_SWAMP +FD: net/minecraft/sounds/SoundEvents/f_215732_ net/minecraft/sounds/SoundEvents/MUSIC_BIOME_OLD_GROWTH_TAIGA +FD: net/minecraft/sounds/SoundEvents/f_215733_ net/minecraft/sounds/SoundEvents/PARROT_IMITATE_WARDEN +FD: net/minecraft/sounds/SoundEvents/f_215734_ net/minecraft/sounds/SoundEvents/SCULK_BLOCK_CHARGE +FD: net/minecraft/sounds/SoundEvents/f_215735_ net/minecraft/sounds/SoundEvents/SCULK_BLOCK_BREAK +FD: net/minecraft/sounds/SoundEvents/f_215736_ net/minecraft/sounds/SoundEvents/SCULK_BLOCK_FALL +FD: net/minecraft/sounds/SoundEvents/f_215737_ net/minecraft/sounds/SoundEvents/SCULK_BLOCK_HIT +FD: net/minecraft/sounds/SoundEvents/f_215738_ net/minecraft/sounds/SoundEvents/SCULK_BLOCK_PLACE +FD: net/minecraft/sounds/SoundEvents/f_215739_ net/minecraft/sounds/SoundEvents/SCULK_BLOCK_STEP +FD: net/minecraft/sounds/SoundEvents/f_215740_ net/minecraft/sounds/SoundEvents/SCULK_CATALYST_BLOOM +FD: net/minecraft/sounds/SoundEvents/f_215741_ net/minecraft/sounds/SoundEvents/SCULK_CATALYST_BREAK +FD: net/minecraft/sounds/SoundEvents/f_215742_ net/minecraft/sounds/SoundEvents/SCULK_CATALYST_FALL +FD: net/minecraft/sounds/SoundEvents/f_215743_ net/minecraft/sounds/SoundEvents/SCULK_CATALYST_HIT +FD: net/minecraft/sounds/SoundEvents/f_215744_ net/minecraft/sounds/SoundEvents/SCULK_CATALYST_PLACE +FD: net/minecraft/sounds/SoundEvents/f_215745_ net/minecraft/sounds/SoundEvents/SCULK_CATALYST_STEP +FD: net/minecraft/sounds/SoundEvents/f_215746_ net/minecraft/sounds/SoundEvents/SCULK_SHRIEKER_BREAK +FD: net/minecraft/sounds/SoundEvents/f_215747_ net/minecraft/sounds/SoundEvents/SCULK_SHRIEKER_FALL +FD: net/minecraft/sounds/SoundEvents/f_215748_ net/minecraft/sounds/SoundEvents/SCULK_SHRIEKER_HIT +FD: net/minecraft/sounds/SoundEvents/f_215749_ net/minecraft/sounds/SoundEvents/SCULK_SHRIEKER_PLACE +FD: net/minecraft/sounds/SoundEvents/f_215750_ net/minecraft/sounds/SoundEvents/SCULK_SHRIEKER_SHRIEK +FD: net/minecraft/sounds/SoundEvents/f_215751_ net/minecraft/sounds/SoundEvents/SCULK_SHRIEKER_STEP +FD: net/minecraft/sounds/SoundEvents/f_215752_ net/minecraft/sounds/SoundEvents/SCULK_VEIN_BREAK +FD: net/minecraft/sounds/SoundEvents/f_215753_ net/minecraft/sounds/SoundEvents/SCULK_BLOCK_SPREAD +FD: net/minecraft/sounds/SoundEvents/f_215754_ net/minecraft/sounds/SoundEvents/SCULK_VEIN_FALL +FD: net/minecraft/sounds/SoundEvents/f_215755_ net/minecraft/sounds/SoundEvents/SCULK_VEIN_HIT +FD: net/minecraft/sounds/SoundEvents/f_215756_ net/minecraft/sounds/SoundEvents/SCULK_VEIN_PLACE +FD: net/minecraft/sounds/SoundEvents/f_215757_ net/minecraft/sounds/SoundEvents/SCULK_VEIN_STEP +FD: net/minecraft/sounds/SoundEvents/f_215758_ net/minecraft/sounds/SoundEvents/TADPOLE_DEATH +FD: net/minecraft/sounds/SoundEvents/f_215759_ net/minecraft/sounds/SoundEvents/TADPOLE_FLOP +FD: net/minecraft/sounds/SoundEvents/f_215760_ net/minecraft/sounds/SoundEvents/TADPOLE_GROW_UP +FD: net/minecraft/sounds/SoundEvents/f_215761_ net/minecraft/sounds/SoundEvents/TADPOLE_HURT +FD: net/minecraft/sounds/SoundEvents/f_215762_ net/minecraft/sounds/SoundEvents/WARDEN_HEARTBEAT +FD: net/minecraft/sounds/SoundEvents/f_215763_ net/minecraft/sounds/SoundEvents/WARDEN_HURT +FD: net/minecraft/sounds/SoundEvents/f_215764_ net/minecraft/sounds/SoundEvents/WARDEN_LISTENING +FD: net/minecraft/sounds/SoundEvents/f_215765_ net/minecraft/sounds/SoundEvents/WARDEN_LISTENING_ANGRY +FD: net/minecraft/sounds/SoundEvents/f_215766_ net/minecraft/sounds/SoundEvents/WARDEN_NEARBY_CLOSE +FD: net/minecraft/sounds/SoundEvents/f_215767_ net/minecraft/sounds/SoundEvents/WARDEN_NEARBY_CLOSER +FD: net/minecraft/sounds/SoundEvents/f_215768_ net/minecraft/sounds/SoundEvents/WARDEN_NEARBY_CLOSEST +FD: net/minecraft/sounds/SoundEvents/f_215769_ net/minecraft/sounds/SoundEvents/WARDEN_ROAR +FD: net/minecraft/sounds/SoundEvents/f_215770_ net/minecraft/sounds/SoundEvents/WARDEN_SNIFF +FD: net/minecraft/sounds/SoundEvents/f_215771_ net/minecraft/sounds/SoundEvents/WARDEN_SONIC_BOOM +FD: net/minecraft/sounds/SoundEvents/f_215772_ net/minecraft/sounds/SoundEvents/WARDEN_SONIC_CHARGE +FD: net/minecraft/sounds/SoundEvents/f_215773_ net/minecraft/sounds/SoundEvents/WARDEN_STEP +FD: net/minecraft/sounds/SoundEvents/f_215774_ net/minecraft/sounds/SoundEvents/WARDEN_TENDRIL_CLICKS +FD: net/minecraft/sounds/SoundEvents/f_215775_ net/minecraft/sounds/SoundEvents/WARDEN_AGITATED +FD: net/minecraft/sounds/SoundEvents/f_215776_ net/minecraft/sounds/SoundEvents/WARDEN_AMBIENT +FD: net/minecraft/sounds/SoundEvents/f_215777_ net/minecraft/sounds/SoundEvents/WARDEN_ANGRY +FD: net/minecraft/sounds/SoundEvents/f_215778_ net/minecraft/sounds/SoundEvents/WARDEN_ATTACK_IMPACT +FD: net/minecraft/sounds/SoundEvents/f_215779_ net/minecraft/sounds/SoundEvents/WARDEN_DEATH +FD: net/minecraft/sounds/SoundEvents/f_215780_ net/minecraft/sounds/SoundEvents/WARDEN_DIG +FD: net/minecraft/sounds/SoundEvents/f_215781_ net/minecraft/sounds/SoundEvents/WARDEN_EMERGE +FD: net/minecraft/sounds/SoundEvents/f_243673_ net/minecraft/sounds/SoundEvents/HANGING_SIGN_HIT +FD: net/minecraft/sounds/SoundEvents/f_243699_ net/minecraft/sounds/SoundEvents/BAMBOO_WOOD_TRAPDOOR_CLOSE +FD: net/minecraft/sounds/SoundEvents/f_243707_ net/minecraft/sounds/SoundEvents/BAMBOO_WOOD_DOOR_OPEN +FD: net/minecraft/sounds/SoundEvents/f_243713_ net/minecraft/sounds/SoundEvents/CAMEL_EAT +FD: net/minecraft/sounds/SoundEvents/f_243719_ net/minecraft/sounds/SoundEvents/NETHER_WOOD_DOOR_CLOSE +FD: net/minecraft/sounds/SoundEvents/f_243721_ net/minecraft/sounds/SoundEvents/BAMBOO_WOOD_FENCE_GATE_CLOSE +FD: net/minecraft/sounds/SoundEvents/f_243764_ net/minecraft/sounds/SoundEvents/CAMEL_AMBIENT +FD: net/minecraft/sounds/SoundEvents/f_243775_ net/minecraft/sounds/SoundEvents/CAMEL_HURT +FD: net/minecraft/sounds/SoundEvents/f_243814_ net/minecraft/sounds/SoundEvents/HANGING_SIGN_PLACE +FD: net/minecraft/sounds/SoundEvents/f_243868_ net/minecraft/sounds/SoundEvents/NETHER_WOOD_BREAK +FD: net/minecraft/sounds/SoundEvents/f_243893_ net/minecraft/sounds/SoundEvents/NETHER_WOOD_PRESSURE_PLATE_CLICK_OFF +FD: net/minecraft/sounds/SoundEvents/f_243903_ net/minecraft/sounds/SoundEvents/BAMBOO_WOOD_TRAPDOOR_OPEN +FD: net/minecraft/sounds/SoundEvents/f_243933_ net/minecraft/sounds/SoundEvents/NETHER_WOOD_STEP +FD: net/minecraft/sounds/SoundEvents/f_243972_ net/minecraft/sounds/SoundEvents/CAMEL_DEATH +FD: net/minecraft/sounds/SoundEvents/f_243978_ net/minecraft/sounds/SoundEvents/HANGING_SIGN_BREAK +FD: net/minecraft/sounds/SoundEvents/f_243990_ net/minecraft/sounds/SoundEvents/NETHER_WOOD_PLACE +FD: net/minecraft/sounds/SoundEvents/f_244016_ net/minecraft/sounds/SoundEvents/CAMEL_STEP_SAND +FD: net/minecraft/sounds/SoundEvents/f_244021_ net/minecraft/sounds/SoundEvents/BAMBOO_WOOD_BREAK +FD: net/minecraft/sounds/SoundEvents/f_244032_ net/minecraft/sounds/SoundEvents/CAMEL_DASH_READY +FD: net/minecraft/sounds/SoundEvents/f_244033_ net/minecraft/sounds/SoundEvents/NETHER_WOOD_TRAPDOOR_CLOSE +FD: net/minecraft/sounds/SoundEvents/f_244044_ net/minecraft/sounds/SoundEvents/CAMEL_STAND +FD: net/minecraft/sounds/SoundEvents/f_244067_ net/minecraft/sounds/SoundEvents/BAMBOO_WOOD_BUTTON_CLICK_ON +FD: net/minecraft/sounds/SoundEvents/f_244086_ net/minecraft/sounds/SoundEvents/CAMEL_SIT +FD: net/minecraft/sounds/SoundEvents/f_244107_ net/minecraft/sounds/SoundEvents/NETHER_WOOD_FALL +FD: net/minecraft/sounds/SoundEvents/f_244181_ net/minecraft/sounds/SoundEvents/BAMBOO_WOOD_PRESSURE_PLATE_CLICK_ON +FD: net/minecraft/sounds/SoundEvents/f_244204_ net/minecraft/sounds/SoundEvents/CAMEL_SADDLE +FD: net/minecraft/sounds/SoundEvents/f_244210_ net/minecraft/sounds/SoundEvents/NETHER_WOOD_PRESSURE_PLATE_CLICK_ON +FD: net/minecraft/sounds/SoundEvents/f_244240_ net/minecraft/sounds/SoundEvents/BAMBOO_WOOD_PLACE +FD: net/minecraft/sounds/SoundEvents/f_244275_ net/minecraft/sounds/SoundEvents/NETHER_WOOD_DOOR_OPEN +FD: net/minecraft/sounds/SoundEvents/f_244286_ net/minecraft/sounds/SoundEvents/BAMBOO_WOOD_STEP +FD: net/minecraft/sounds/SoundEvents/f_244318_ net/minecraft/sounds/SoundEvents/NETHER_WOOD_TRAPDOOR_OPEN +FD: net/minecraft/sounds/SoundEvents/f_244336_ net/minecraft/sounds/SoundEvents/BAMBOO_WOOD_FENCE_GATE_OPEN +FD: net/minecraft/sounds/SoundEvents/f_244344_ net/minecraft/sounds/SoundEvents/NETHER_WOOD_BUTTON_CLICK_OFF +FD: net/minecraft/sounds/SoundEvents/f_244376_ net/minecraft/sounds/SoundEvents/HANGING_SIGN_FALL +FD: net/minecraft/sounds/SoundEvents/f_244414_ net/minecraft/sounds/SoundEvents/NETHER_WOOD_BUTTON_CLICK_ON +FD: net/minecraft/sounds/SoundEvents/f_244420_ net/minecraft/sounds/SoundEvents/HANGING_SIGN_STEP +FD: net/minecraft/sounds/SoundEvents/f_244426_ net/minecraft/sounds/SoundEvents/BAMBOO_WOOD_HIT +FD: net/minecraft/sounds/SoundEvents/f_244432_ net/minecraft/sounds/SoundEvents/BAMBOO_WOOD_FALL +FD: net/minecraft/sounds/SoundEvents/f_244506_ net/minecraft/sounds/SoundEvents/CAMEL_STEP +FD: net/minecraft/sounds/SoundEvents/f_244533_ net/minecraft/sounds/SoundEvents/BAMBOO_WOOD_PRESSURE_PLATE_CLICK_OFF +FD: net/minecraft/sounds/SoundEvents/f_244538_ net/minecraft/sounds/SoundEvents/CAMEL_DASH +FD: net/minecraft/sounds/SoundEvents/f_244543_ net/minecraft/sounds/SoundEvents/BAMBOO_WOOD_DOOR_CLOSE +FD: net/minecraft/sounds/SoundEvents/f_244579_ net/minecraft/sounds/SoundEvents/NETHER_WOOD_FENCE_GATE_OPEN +FD: net/minecraft/sounds/SoundEvents/f_244593_ net/minecraft/sounds/SoundEvents/NETHER_WOOD_FENCE_GATE_CLOSE +FD: net/minecraft/sounds/SoundEvents/f_244597_ net/minecraft/sounds/SoundEvents/NETHER_WOOD_HIT +FD: net/minecraft/sounds/SoundEvents/f_244603_ net/minecraft/sounds/SoundEvents/BAMBOO_WOOD_BUTTON_CLICK_OFF +FD: net/minecraft/sounds/SoundEvents/f_256717_ net/minecraft/sounds/SoundEvents/CHISELED_BOOKSHELF_PICKUP +FD: net/minecraft/sounds/SoundEvents/f_256721_ net/minecraft/sounds/SoundEvents/BAMBOO_WOOD_HANGING_SIGN_STEP +FD: net/minecraft/sounds/SoundEvents/f_256738_ net/minecraft/sounds/SoundEvents/CHISELED_BOOKSHELF_BREAK +FD: net/minecraft/sounds/SoundEvents/f_256739_ net/minecraft/sounds/SoundEvents/CHISELED_BOOKSHELF_FALL +FD: net/minecraft/sounds/SoundEvents/f_256748_ net/minecraft/sounds/SoundEvents/NETHER_WOOD_HANGING_SIGN_BREAK +FD: net/minecraft/sounds/SoundEvents/f_256765_ net/minecraft/sounds/SoundEvents/BAMBOO_WOOD_HANGING_SIGN_FALL +FD: net/minecraft/sounds/SoundEvents/f_256782_ net/minecraft/sounds/SoundEvents/CHISELED_BOOKSHELF_PLACE +FD: net/minecraft/sounds/SoundEvents/f_256813_ net/minecraft/sounds/SoundEvents/BAMBOO_WOOD_HANGING_SIGN_PLACE +FD: net/minecraft/sounds/SoundEvents/f_256821_ net/minecraft/sounds/SoundEvents/NETHER_WOOD_HANGING_SIGN_PLACE +FD: net/minecraft/sounds/SoundEvents/f_256835_ net/minecraft/sounds/SoundEvents/BAMBOO_WOOD_HANGING_SIGN_HIT +FD: net/minecraft/sounds/SoundEvents/f_256863_ net/minecraft/sounds/SoundEvents/CHISELED_BOOKSHELF_INSERT_ENCHANTED +FD: net/minecraft/sounds/SoundEvents/f_256866_ net/minecraft/sounds/SoundEvents/NETHER_WOOD_HANGING_SIGN_STEP +FD: net/minecraft/sounds/SoundEvents/f_256874_ net/minecraft/sounds/SoundEvents/CHISELED_BOOKSHELF_STEP +FD: net/minecraft/sounds/SoundEvents/f_256884_ net/minecraft/sounds/SoundEvents/NETHER_WOOD_HANGING_SIGN_FALL +FD: net/minecraft/sounds/SoundEvents/f_256943_ net/minecraft/sounds/SoundEvents/BAMBOO_WOOD_HANGING_SIGN_BREAK +FD: net/minecraft/sounds/SoundEvents/f_256961_ net/minecraft/sounds/SoundEvents/CHISELED_BOOKSHELF_INSERT +FD: net/minecraft/sounds/SoundEvents/f_256993_ net/minecraft/sounds/SoundEvents/CHISELED_BOOKSHELF_HIT +FD: net/minecraft/sounds/SoundEvents/f_257000_ net/minecraft/sounds/SoundEvents/CHISELED_BOOKSHELF_PICKUP_ENCHANTED +FD: net/minecraft/sounds/SoundEvents/f_257042_ net/minecraft/sounds/SoundEvents/NETHER_WOOD_HANGING_SIGN_HIT +FD: net/minecraft/sounds/SoundEvents/f_263121_ net/minecraft/sounds/SoundEvents/NOTE_BLOCK_IMITATE_CREEPER +FD: net/minecraft/sounds/SoundEvents/f_263123_ net/minecraft/sounds/SoundEvents/NOTE_BLOCK_IMITATE_PIGLIN +FD: net/minecraft/sounds/SoundEvents/f_263126_ net/minecraft/sounds/SoundEvents/NOTE_BLOCK_IMITATE_WITHER_SKELETON +FD: net/minecraft/sounds/SoundEvents/f_263127_ net/minecraft/sounds/SoundEvents/NOTE_BLOCK_IMITATE_SKELETON +FD: net/minecraft/sounds/SoundEvents/f_263132_ net/minecraft/sounds/SoundEvents/NOTE_BLOCK_IMITATE_ENDER_DRAGON +FD: net/minecraft/sounds/SoundEvents/f_263136_ net/minecraft/sounds/SoundEvents/NOTE_BLOCK_IMITATE_ZOMBIE +FD: net/minecraft/sounds/SoundEvents/f_271095_ net/minecraft/sounds/SoundEvents/CHERRY_WOOD_DOOR_OPEN +FD: net/minecraft/sounds/SoundEvents/f_271103_ net/minecraft/sounds/SoundEvents/CHERRY_SAPLING_BREAK +FD: net/minecraft/sounds/SoundEvents/f_271105_ net/minecraft/sounds/SoundEvents/PINK_PETALS_STEP +FD: net/minecraft/sounds/SoundEvents/f_271121_ net/minecraft/sounds/SoundEvents/SNIFFER_SCENTING +FD: net/minecraft/sounds/SoundEvents/f_271122_ net/minecraft/sounds/SoundEvents/CHERRY_SAPLING_FALL +FD: net/minecraft/sounds/SoundEvents/f_271127_ net/minecraft/sounds/SoundEvents/CHERRY_LEAVES_PLACE +FD: net/minecraft/sounds/SoundEvents/f_271129_ net/minecraft/sounds/SoundEvents/CHERRY_WOOD_STEP +FD: net/minecraft/sounds/SoundEvents/f_271130_ net/minecraft/sounds/SoundEvents/PINK_PETALS_PLACE +FD: net/minecraft/sounds/SoundEvents/f_271135_ net/minecraft/sounds/SoundEvents/PINK_PETALS_HIT +FD: net/minecraft/sounds/SoundEvents/f_271142_ net/minecraft/sounds/SoundEvents/SUSPICIOUS_SAND_HIT +FD: net/minecraft/sounds/SoundEvents/f_271146_ net/minecraft/sounds/SoundEvents/CHERRY_WOOD_PLACE +FD: net/minecraft/sounds/SoundEvents/f_271147_ net/minecraft/sounds/SoundEvents/SNIFFER_EAT +FD: net/minecraft/sounds/SoundEvents/f_271165_ net/minecraft/sounds/SoundEvents/EMPTY +FD: net/minecraft/sounds/SoundEvents/f_271171_ net/minecraft/sounds/SoundEvents/CHERRY_WOOD_BUTTON_CLICK_ON +FD: net/minecraft/sounds/SoundEvents/f_271174_ net/minecraft/sounds/SoundEvents/BRUSH_SAND +FD: net/minecraft/sounds/SoundEvents/f_271175_ net/minecraft/sounds/SoundEvents/DECORATED_POT_BREAK +FD: net/minecraft/sounds/SoundEvents/f_271181_ net/minecraft/sounds/SoundEvents/CHERRY_WOOD_HANGING_SIGN_HIT +FD: net/minecraft/sounds/SoundEvents/f_271189_ net/minecraft/sounds/SoundEvents/SUSPICIOUS_SAND_BREAK +FD: net/minecraft/sounds/SoundEvents/f_271211_ net/minecraft/sounds/SoundEvents/CHERRY_SAPLING_HIT +FD: net/minecraft/sounds/SoundEvents/f_271214_ net/minecraft/sounds/SoundEvents/SNIFFER_DEATH +FD: net/minecraft/sounds/SoundEvents/f_271221_ net/minecraft/sounds/SoundEvents/CHERRY_WOOD_HANGING_SIGN_PLACE +FD: net/minecraft/sounds/SoundEvents/f_271250_ net/minecraft/sounds/SoundEvents/CHERRY_SAPLING_PLACE +FD: net/minecraft/sounds/SoundEvents/f_271257_ net/minecraft/sounds/SoundEvents/MUSIC_BIOME_CHERRY_GROVE +FD: net/minecraft/sounds/SoundEvents/f_271262_ net/minecraft/sounds/SoundEvents/CHERRY_WOOD_TRAPDOOR_CLOSE +FD: net/minecraft/sounds/SoundEvents/f_271273_ net/minecraft/sounds/SoundEvents/CHERRY_WOOD_FENCE_GATE_OPEN +FD: net/minecraft/sounds/SoundEvents/f_271283_ net/minecraft/sounds/SoundEvents/SNIFFER_SNIFFING +FD: net/minecraft/sounds/SoundEvents/f_271300_ net/minecraft/sounds/SoundEvents/SNIFFER_HAPPY +FD: net/minecraft/sounds/SoundEvents/f_271307_ net/minecraft/sounds/SoundEvents/CHERRY_LEAVES_HIT +FD: net/minecraft/sounds/SoundEvents/f_271315_ net/minecraft/sounds/SoundEvents/CHERRY_WOOD_BREAK +FD: net/minecraft/sounds/SoundEvents/f_271319_ net/minecraft/sounds/SoundEvents/CHERRY_LEAVES_BREAK +FD: net/minecraft/sounds/SoundEvents/f_271320_ net/minecraft/sounds/SoundEvents/CHERRY_WOOD_FALL +FD: net/minecraft/sounds/SoundEvents/f_271322_ net/minecraft/sounds/SoundEvents/CHERRY_WOOD_BUTTON_CLICK_OFF +FD: net/minecraft/sounds/SoundEvents/f_271324_ net/minecraft/sounds/SoundEvents/DECORATED_POT_FALL +FD: net/minecraft/sounds/SoundEvents/f_271325_ net/minecraft/sounds/SoundEvents/SNIFFER_STEP +FD: net/minecraft/sounds/SoundEvents/f_271330_ net/minecraft/sounds/SoundEvents/SNIFFER_DROP_SEED +FD: net/minecraft/sounds/SoundEvents/f_271332_ net/minecraft/sounds/SoundEvents/CHERRY_LEAVES_STEP +FD: net/minecraft/sounds/SoundEvents/f_271336_ net/minecraft/sounds/SoundEvents/CHERRY_WOOD_FENCE_GATE_CLOSE +FD: net/minecraft/sounds/SoundEvents/f_271337_ net/minecraft/sounds/SoundEvents/DECORATED_POT_STEP +FD: net/minecraft/sounds/SoundEvents/f_271339_ net/minecraft/sounds/SoundEvents/DECORATED_POT_PLACE +FD: net/minecraft/sounds/SoundEvents/f_271369_ net/minecraft/sounds/SoundEvents/DECORATED_POT_SHATTER +FD: net/minecraft/sounds/SoundEvents/f_271390_ net/minecraft/sounds/SoundEvents/CHERRY_LEAVES_FALL +FD: net/minecraft/sounds/SoundEvents/f_271395_ net/minecraft/sounds/SoundEvents/CHERRY_WOOD_TRAPDOOR_OPEN +FD: net/minecraft/sounds/SoundEvents/f_271405_ net/minecraft/sounds/SoundEvents/SNIFFER_DIGGING_STOP +FD: net/minecraft/sounds/SoundEvents/f_271406_ net/minecraft/sounds/SoundEvents/CHERRY_WOOD_PRESSURE_PLATE_CLICK_ON +FD: net/minecraft/sounds/SoundEvents/f_271418_ net/minecraft/sounds/SoundEvents/SNIFFER_SEARCHING +FD: net/minecraft/sounds/SoundEvents/f_271419_ net/minecraft/sounds/SoundEvents/PINK_PETALS_FALL +FD: net/minecraft/sounds/SoundEvents/f_271428_ net/minecraft/sounds/SoundEvents/CHERRY_WOOD_HANGING_SIGN_FALL +FD: net/minecraft/sounds/SoundEvents/f_271438_ net/minecraft/sounds/SoundEvents/SNIFFER_DIGGING +FD: net/minecraft/sounds/SoundEvents/f_271444_ net/minecraft/sounds/SoundEvents/CHERRY_WOOD_PRESSURE_PLATE_CLICK_OFF +FD: net/minecraft/sounds/SoundEvents/f_271448_ net/minecraft/sounds/SoundEvents/DECORATED_POT_HIT +FD: net/minecraft/sounds/SoundEvents/f_271452_ net/minecraft/sounds/SoundEvents/BRUSH_SAND_COMPLETED +FD: net/minecraft/sounds/SoundEvents/f_271457_ net/minecraft/sounds/SoundEvents/PINK_PETALS_BREAK +FD: net/minecraft/sounds/SoundEvents/f_271488_ net/minecraft/sounds/SoundEvents/CHERRY_WOOD_DOOR_CLOSE +FD: net/minecraft/sounds/SoundEvents/f_271494_ net/minecraft/sounds/SoundEvents/CHERRY_WOOD_HANGING_SIGN_BREAK +FD: net/minecraft/sounds/SoundEvents/f_271496_ net/minecraft/sounds/SoundEvents/CHERRY_WOOD_HANGING_SIGN_STEP +FD: net/minecraft/sounds/SoundEvents/f_271507_ net/minecraft/sounds/SoundEvents/SUSPICIOUS_SAND_FALL +FD: net/minecraft/sounds/SoundEvents/f_271513_ net/minecraft/sounds/SoundEvents/SUSPICIOUS_SAND_PLACE +FD: net/minecraft/sounds/SoundEvents/f_271515_ net/minecraft/sounds/SoundEvents/CHERRY_SAPLING_STEP +FD: net/minecraft/sounds/SoundEvents/f_271520_ net/minecraft/sounds/SoundEvents/SNIFFER_HURT +FD: net/minecraft/sounds/SoundEvents/f_271527_ net/minecraft/sounds/SoundEvents/SUSPICIOUS_SAND_STEP +FD: net/minecraft/sounds/SoundEvents/f_271532_ net/minecraft/sounds/SoundEvents/CHERRY_WOOD_HIT +FD: net/minecraft/sounds/SoundEvents/f_271535_ net/minecraft/sounds/SoundEvents/SNIFFER_IDLE +FD: net/minecraft/sounds/SoundEvents/f_276434_ net/minecraft/sounds/SoundEvents/SNIFFER_EGG_CRACK +FD: net/minecraft/sounds/SoundEvents/f_276439_ net/minecraft/sounds/SoundEvents/SUSPICIOUS_GRAVEL_STEP +FD: net/minecraft/sounds/SoundEvents/f_276489_ net/minecraft/sounds/SoundEvents/SNIFFER_EGG_HATCH +FD: net/minecraft/sounds/SoundEvents/f_276508_ net/minecraft/sounds/SoundEvents/BRUSH_GRAVEL_COMPLETED +FD: net/minecraft/sounds/SoundEvents/f_276532_ net/minecraft/sounds/SoundEvents/AMETHYST_BLOCK_RESONATE +FD: net/minecraft/sounds/SoundEvents/f_276543_ net/minecraft/sounds/SoundEvents/SUSPICIOUS_GRAVEL_FALL +FD: net/minecraft/sounds/SoundEvents/f_276580_ net/minecraft/sounds/SoundEvents/SUSPICIOUS_GRAVEL_HIT +FD: net/minecraft/sounds/SoundEvents/f_276591_ net/minecraft/sounds/SoundEvents/SUSPICIOUS_GRAVEL_BREAK +FD: net/minecraft/sounds/SoundEvents/f_276592_ net/minecraft/sounds/SoundEvents/BRUSH_GRAVEL +FD: net/minecraft/sounds/SoundEvents/f_276624_ net/minecraft/sounds/SoundEvents/BRUSH_GENERIC +FD: net/minecraft/sounds/SoundEvents/f_276627_ net/minecraft/sounds/SoundEvents/WAXED_SIGN_INTERACT_FAIL +FD: net/minecraft/sounds/SoundEvents/f_276660_ net/minecraft/sounds/SoundEvents/SUSPICIOUS_GRAVEL_PLACE +FD: net/minecraft/sounds/SoundEvents/f_279531_ net/minecraft/sounds/SoundEvents/SNIFFER_EGG_PLOP +FD: net/minecraft/sounds/SoundEvents/f_283786_ net/minecraft/sounds/SoundEvents/MUSIC_BIOME_JUNGLE +FD: net/minecraft/sounds/SoundEvents/f_283788_ net/minecraft/sounds/SoundEvents/MUSIC_BIOME_FOREST +FD: net/minecraft/sounds/SoundEvents/f_283817_ net/minecraft/sounds/SoundEvents/MUSIC_BIOME_FLOWER_FOREST +FD: net/minecraft/sounds/SoundEvents/f_283840_ net/minecraft/sounds/SoundEvents/MUSIC_BIOME_DESERT +FD: net/minecraft/sounds/SoundEvents/f_283878_ net/minecraft/sounds/SoundEvents/MUSIC_BIOME_SPARSE_JUNGLE +FD: net/minecraft/sounds/SoundEvents/f_283910_ net/minecraft/sounds/SoundEvents/MUSIC_DISC_RELIC +FD: net/minecraft/sounds/SoundEvents/f_283937_ net/minecraft/sounds/SoundEvents/MUSIC_BIOME_BADLANDS +FD: net/minecraft/sounds/SoundEvents/f_283944_ net/minecraft/sounds/SoundEvents/MUSIC_BIOME_BAMBOO_JUNGLE +FD: net/minecraft/sounds/SoundSource/$VALUES net/minecraft/sounds/SoundSource/$VALUES +FD: net/minecraft/sounds/SoundSource/AMBIENT net/minecraft/sounds/SoundSource/AMBIENT +FD: net/minecraft/sounds/SoundSource/BLOCKS net/minecraft/sounds/SoundSource/BLOCKS +FD: net/minecraft/sounds/SoundSource/HOSTILE net/minecraft/sounds/SoundSource/HOSTILE +FD: net/minecraft/sounds/SoundSource/MASTER net/minecraft/sounds/SoundSource/MASTER +FD: net/minecraft/sounds/SoundSource/MUSIC net/minecraft/sounds/SoundSource/MUSIC +FD: net/minecraft/sounds/SoundSource/NEUTRAL net/minecraft/sounds/SoundSource/NEUTRAL +FD: net/minecraft/sounds/SoundSource/PLAYERS net/minecraft/sounds/SoundSource/PLAYERS +FD: net/minecraft/sounds/SoundSource/RECORDS net/minecraft/sounds/SoundSource/RECORDS +FD: net/minecraft/sounds/SoundSource/VOICE net/minecraft/sounds/SoundSource/VOICE +FD: net/minecraft/sounds/SoundSource/WEATHER net/minecraft/sounds/SoundSource/WEATHER +FD: net/minecraft/sounds/SoundSource/f_12669_ net/minecraft/sounds/SoundSource/name +FD: net/minecraft/stats/RecipeBook/f_12680_ net/minecraft/stats/RecipeBook/known +FD: net/minecraft/stats/RecipeBook/f_12681_ net/minecraft/stats/RecipeBook/highlight +FD: net/minecraft/stats/RecipeBook/f_12682_ net/minecraft/stats/RecipeBook/bookSettings +FD: net/minecraft/stats/RecipeBookSettings/f_12725_ net/minecraft/stats/RecipeBookSettings/TAG_FIELDS +FD: net/minecraft/stats/RecipeBookSettings/f_12726_ net/minecraft/stats/RecipeBookSettings/states +FD: net/minecraft/stats/RecipeBookSettings$TypeSettings/f_12766_ net/minecraft/stats/RecipeBookSettings$TypeSettings/open +FD: net/minecraft/stats/RecipeBookSettings$TypeSettings/f_12767_ net/minecraft/stats/RecipeBookSettings$TypeSettings/filtering +FD: net/minecraft/stats/ServerRecipeBook/f_12786_ net/minecraft/stats/ServerRecipeBook/LOGGER +FD: net/minecraft/stats/ServerRecipeBook/f_144248_ net/minecraft/stats/ServerRecipeBook/RECIPE_BOOK_TAG +FD: net/minecraft/stats/ServerStatsCounter/f_12809_ net/minecraft/stats/ServerStatsCounter/LOGGER +FD: net/minecraft/stats/ServerStatsCounter/f_12810_ net/minecraft/stats/ServerStatsCounter/server +FD: net/minecraft/stats/ServerStatsCounter/f_12811_ net/minecraft/stats/ServerStatsCounter/file +FD: net/minecraft/stats/ServerStatsCounter/f_12812_ net/minecraft/stats/ServerStatsCounter/dirty +FD: net/minecraft/stats/Stat/f_12852_ net/minecraft/stats/Stat/formatter +FD: net/minecraft/stats/Stat/f_12853_ net/minecraft/stats/Stat/value +FD: net/minecraft/stats/Stat/f_12854_ net/minecraft/stats/Stat/type +FD: net/minecraft/stats/StatFormatter/f_12872_ net/minecraft/stats/StatFormatter/DECIMAL_FORMAT +FD: net/minecraft/stats/StatFormatter/f_12873_ net/minecraft/stats/StatFormatter/DEFAULT +FD: net/minecraft/stats/StatFormatter/f_12874_ net/minecraft/stats/StatFormatter/DIVIDE_BY_TEN +FD: net/minecraft/stats/StatFormatter/f_12875_ net/minecraft/stats/StatFormatter/DISTANCE +FD: net/minecraft/stats/StatFormatter/f_12876_ net/minecraft/stats/StatFormatter/TIME +FD: net/minecraft/stats/StatType/f_12888_ net/minecraft/stats/StatType/registry +FD: net/minecraft/stats/StatType/f_12889_ net/minecraft/stats/StatType/map +FD: net/minecraft/stats/StatType/f_12890_ net/minecraft/stats/StatType/displayName +FD: net/minecraft/stats/Stats/f_12923_ net/minecraft/stats/Stats/AVIATE_ONE_CM +FD: net/minecraft/stats/Stats/f_12924_ net/minecraft/stats/Stats/SWIM_ONE_CM +FD: net/minecraft/stats/Stats/f_12925_ net/minecraft/stats/Stats/STRIDER_ONE_CM +FD: net/minecraft/stats/Stats/f_12926_ net/minecraft/stats/Stats/JUMP +FD: net/minecraft/stats/Stats/f_12927_ net/minecraft/stats/Stats/DROP +FD: net/minecraft/stats/Stats/f_12928_ net/minecraft/stats/Stats/DAMAGE_DEALT +FD: net/minecraft/stats/Stats/f_12929_ net/minecraft/stats/Stats/DAMAGE_DEALT_ABSORBED +FD: net/minecraft/stats/Stats/f_12930_ net/minecraft/stats/Stats/DAMAGE_DEALT_RESISTED +FD: net/minecraft/stats/Stats/f_12931_ net/minecraft/stats/Stats/DAMAGE_TAKEN +FD: net/minecraft/stats/Stats/f_12932_ net/minecraft/stats/Stats/DAMAGE_BLOCKED_BY_SHIELD +FD: net/minecraft/stats/Stats/f_12933_ net/minecraft/stats/Stats/DAMAGE_ABSORBED +FD: net/minecraft/stats/Stats/f_12934_ net/minecraft/stats/Stats/DAMAGE_RESISTED +FD: net/minecraft/stats/Stats/f_12935_ net/minecraft/stats/Stats/DEATHS +FD: net/minecraft/stats/Stats/f_12936_ net/minecraft/stats/Stats/MOB_KILLS +FD: net/minecraft/stats/Stats/f_12937_ net/minecraft/stats/Stats/ANIMALS_BRED +FD: net/minecraft/stats/Stats/f_12938_ net/minecraft/stats/Stats/PLAYER_KILLS +FD: net/minecraft/stats/Stats/f_12939_ net/minecraft/stats/Stats/FISH_CAUGHT +FD: net/minecraft/stats/Stats/f_12940_ net/minecraft/stats/Stats/TALKED_TO_VILLAGER +FD: net/minecraft/stats/Stats/f_12941_ net/minecraft/stats/Stats/TRADED_WITH_VILLAGER +FD: net/minecraft/stats/Stats/f_12942_ net/minecraft/stats/Stats/EAT_CAKE_SLICE +FD: net/minecraft/stats/Stats/f_12943_ net/minecraft/stats/Stats/FILL_CAULDRON +FD: net/minecraft/stats/Stats/f_12944_ net/minecraft/stats/Stats/USE_CAULDRON +FD: net/minecraft/stats/Stats/f_12945_ net/minecraft/stats/Stats/CLEAN_ARMOR +FD: net/minecraft/stats/Stats/f_12946_ net/minecraft/stats/Stats/CLEAN_BANNER +FD: net/minecraft/stats/Stats/f_12947_ net/minecraft/stats/Stats/CLEAN_SHULKER_BOX +FD: net/minecraft/stats/Stats/f_12948_ net/minecraft/stats/Stats/INTERACT_WITH_BREWINGSTAND +FD: net/minecraft/stats/Stats/f_12949_ net/minecraft/stats/Stats/BLOCK_MINED +FD: net/minecraft/stats/Stats/f_12950_ net/minecraft/stats/Stats/RAID_WIN +FD: net/minecraft/stats/Stats/f_12951_ net/minecraft/stats/Stats/INTERACT_WITH_ANVIL +FD: net/minecraft/stats/Stats/f_12952_ net/minecraft/stats/Stats/INTERACT_WITH_GRINDSTONE +FD: net/minecraft/stats/Stats/f_12953_ net/minecraft/stats/Stats/TARGET_HIT +FD: net/minecraft/stats/Stats/f_12954_ net/minecraft/stats/Stats/INTERACT_WITH_SMITHING_TABLE +FD: net/minecraft/stats/Stats/f_12955_ net/minecraft/stats/Stats/INTERACT_WITH_BEACON +FD: net/minecraft/stats/Stats/f_12956_ net/minecraft/stats/Stats/INSPECT_DROPPER +FD: net/minecraft/stats/Stats/f_12957_ net/minecraft/stats/Stats/INSPECT_HOPPER +FD: net/minecraft/stats/Stats/f_12958_ net/minecraft/stats/Stats/INSPECT_DISPENSER +FD: net/minecraft/stats/Stats/f_12959_ net/minecraft/stats/Stats/PLAY_NOTEBLOCK +FD: net/minecraft/stats/Stats/f_12960_ net/minecraft/stats/Stats/TUNE_NOTEBLOCK +FD: net/minecraft/stats/Stats/f_12961_ net/minecraft/stats/Stats/POT_FLOWER +FD: net/minecraft/stats/Stats/f_12962_ net/minecraft/stats/Stats/TRIGGER_TRAPPED_CHEST +FD: net/minecraft/stats/Stats/f_12963_ net/minecraft/stats/Stats/OPEN_ENDERCHEST +FD: net/minecraft/stats/Stats/f_12964_ net/minecraft/stats/Stats/ENCHANT_ITEM +FD: net/minecraft/stats/Stats/f_12965_ net/minecraft/stats/Stats/PLAY_RECORD +FD: net/minecraft/stats/Stats/f_12966_ net/minecraft/stats/Stats/INTERACT_WITH_FURNACE +FD: net/minecraft/stats/Stats/f_12967_ net/minecraft/stats/Stats/INTERACT_WITH_CRAFTING_TABLE +FD: net/minecraft/stats/Stats/f_12968_ net/minecraft/stats/Stats/OPEN_CHEST +FD: net/minecraft/stats/Stats/f_12969_ net/minecraft/stats/Stats/SLEEP_IN_BED +FD: net/minecraft/stats/Stats/f_12970_ net/minecraft/stats/Stats/OPEN_SHULKER_BOX +FD: net/minecraft/stats/Stats/f_12971_ net/minecraft/stats/Stats/OPEN_BARREL +FD: net/minecraft/stats/Stats/f_12972_ net/minecraft/stats/Stats/INTERACT_WITH_BLAST_FURNACE +FD: net/minecraft/stats/Stats/f_12973_ net/minecraft/stats/Stats/INTERACT_WITH_SMOKER +FD: net/minecraft/stats/Stats/f_12974_ net/minecraft/stats/Stats/INTERACT_WITH_LECTERN +FD: net/minecraft/stats/Stats/f_12975_ net/minecraft/stats/Stats/INTERACT_WITH_CAMPFIRE +FD: net/minecraft/stats/Stats/f_12976_ net/minecraft/stats/Stats/INTERACT_WITH_CARTOGRAPHY_TABLE +FD: net/minecraft/stats/Stats/f_12977_ net/minecraft/stats/Stats/INTERACT_WITH_LOOM +FD: net/minecraft/stats/Stats/f_12978_ net/minecraft/stats/Stats/INTERACT_WITH_STONECUTTER +FD: net/minecraft/stats/Stats/f_12979_ net/minecraft/stats/Stats/BELL_RING +FD: net/minecraft/stats/Stats/f_12980_ net/minecraft/stats/Stats/RAID_TRIGGER +FD: net/minecraft/stats/Stats/f_12981_ net/minecraft/stats/Stats/ITEM_CRAFTED +FD: net/minecraft/stats/Stats/f_12982_ net/minecraft/stats/Stats/ITEM_USED +FD: net/minecraft/stats/Stats/f_12983_ net/minecraft/stats/Stats/ITEM_BROKEN +FD: net/minecraft/stats/Stats/f_12984_ net/minecraft/stats/Stats/ITEM_PICKED_UP +FD: net/minecraft/stats/Stats/f_12985_ net/minecraft/stats/Stats/ITEM_DROPPED +FD: net/minecraft/stats/Stats/f_12986_ net/minecraft/stats/Stats/ENTITY_KILLED +FD: net/minecraft/stats/Stats/f_12987_ net/minecraft/stats/Stats/ENTITY_KILLED_BY +FD: net/minecraft/stats/Stats/f_12988_ net/minecraft/stats/Stats/CUSTOM +FD: net/minecraft/stats/Stats/f_12989_ net/minecraft/stats/Stats/LEAVE_GAME +FD: net/minecraft/stats/Stats/f_12991_ net/minecraft/stats/Stats/TIME_SINCE_DEATH +FD: net/minecraft/stats/Stats/f_12992_ net/minecraft/stats/Stats/TIME_SINCE_REST +FD: net/minecraft/stats/Stats/f_12993_ net/minecraft/stats/Stats/CROUCH_TIME +FD: net/minecraft/stats/Stats/f_12994_ net/minecraft/stats/Stats/WALK_ONE_CM +FD: net/minecraft/stats/Stats/f_12995_ net/minecraft/stats/Stats/CROUCH_ONE_CM +FD: net/minecraft/stats/Stats/f_12996_ net/minecraft/stats/Stats/SPRINT_ONE_CM +FD: net/minecraft/stats/Stats/f_12997_ net/minecraft/stats/Stats/WALK_ON_WATER_ONE_CM +FD: net/minecraft/stats/Stats/f_12998_ net/minecraft/stats/Stats/FALL_ONE_CM +FD: net/minecraft/stats/Stats/f_12999_ net/minecraft/stats/Stats/CLIMB_ONE_CM +FD: net/minecraft/stats/Stats/f_13000_ net/minecraft/stats/Stats/FLY_ONE_CM +FD: net/minecraft/stats/Stats/f_13001_ net/minecraft/stats/Stats/WALK_UNDER_WATER_ONE_CM +FD: net/minecraft/stats/Stats/f_13002_ net/minecraft/stats/Stats/MINECART_ONE_CM +FD: net/minecraft/stats/Stats/f_13003_ net/minecraft/stats/Stats/BOAT_ONE_CM +FD: net/minecraft/stats/Stats/f_13004_ net/minecraft/stats/Stats/PIG_ONE_CM +FD: net/minecraft/stats/Stats/f_13005_ net/minecraft/stats/Stats/HORSE_ONE_CM +FD: net/minecraft/stats/Stats/f_144255_ net/minecraft/stats/Stats/PLAY_TIME +FD: net/minecraft/stats/Stats/f_144256_ net/minecraft/stats/Stats/TOTAL_WORLD_TIME +FD: net/minecraft/stats/StatsCounter/f_13013_ net/minecraft/stats/StatsCounter/stats +FD: net/minecraft/tags/BannerPatternTags/f_215788_ net/minecraft/tags/BannerPatternTags/NO_ITEM_REQUIRED +FD: net/minecraft/tags/BannerPatternTags/f_215789_ net/minecraft/tags/BannerPatternTags/PATTERN_ITEM_FLOWER +FD: net/minecraft/tags/BannerPatternTags/f_215790_ net/minecraft/tags/BannerPatternTags/PATTERN_ITEM_CREEPER +FD: net/minecraft/tags/BannerPatternTags/f_215791_ net/minecraft/tags/BannerPatternTags/PATTERN_ITEM_SKULL +FD: net/minecraft/tags/BannerPatternTags/f_215792_ net/minecraft/tags/BannerPatternTags/PATTERN_ITEM_MOJANG +FD: net/minecraft/tags/BannerPatternTags/f_215793_ net/minecraft/tags/BannerPatternTags/PATTERN_ITEM_GLOBE +FD: net/minecraft/tags/BannerPatternTags/f_215794_ net/minecraft/tags/BannerPatternTags/PATTERN_ITEM_PIGLIN +FD: net/minecraft/tags/BiomeTags/f_207586_ net/minecraft/tags/BiomeTags/HAS_RUINED_PORTAL_STANDARD +FD: net/minecraft/tags/BiomeTags/f_207587_ net/minecraft/tags/BiomeTags/HAS_SHIPWRECK_BEACHED +FD: net/minecraft/tags/BiomeTags/f_207588_ net/minecraft/tags/BiomeTags/HAS_SHIPWRECK +FD: net/minecraft/tags/BiomeTags/f_207589_ net/minecraft/tags/BiomeTags/HAS_SWAMP_HUT +FD: net/minecraft/tags/BiomeTags/f_207590_ net/minecraft/tags/BiomeTags/HAS_VILLAGE_DESERT +FD: net/minecraft/tags/BiomeTags/f_207591_ net/minecraft/tags/BiomeTags/HAS_VILLAGE_PLAINS +FD: net/minecraft/tags/BiomeTags/f_207592_ net/minecraft/tags/BiomeTags/HAS_VILLAGE_SAVANNA +FD: net/minecraft/tags/BiomeTags/f_207593_ net/minecraft/tags/BiomeTags/HAS_VILLAGE_SNOWY +FD: net/minecraft/tags/BiomeTags/f_207594_ net/minecraft/tags/BiomeTags/HAS_VILLAGE_TAIGA +FD: net/minecraft/tags/BiomeTags/f_207595_ net/minecraft/tags/BiomeTags/HAS_WOODLAND_MANSION +FD: net/minecraft/tags/BiomeTags/f_207596_ net/minecraft/tags/BiomeTags/HAS_STRONGHOLD +FD: net/minecraft/tags/BiomeTags/f_207597_ net/minecraft/tags/BiomeTags/HAS_NETHER_FORTRESS +FD: net/minecraft/tags/BiomeTags/f_207598_ net/minecraft/tags/BiomeTags/HAS_NETHER_FOSSIL +FD: net/minecraft/tags/BiomeTags/f_207599_ net/minecraft/tags/BiomeTags/HAS_BASTION_REMNANT +FD: net/minecraft/tags/BiomeTags/f_207600_ net/minecraft/tags/BiomeTags/HAS_RUINED_PORTAL_NETHER +FD: net/minecraft/tags/BiomeTags/f_207601_ net/minecraft/tags/BiomeTags/HAS_END_CITY +FD: net/minecraft/tags/BiomeTags/f_207602_ net/minecraft/tags/BiomeTags/IS_DEEP_OCEAN +FD: net/minecraft/tags/BiomeTags/f_207603_ net/minecraft/tags/BiomeTags/IS_OCEAN +FD: net/minecraft/tags/BiomeTags/f_207604_ net/minecraft/tags/BiomeTags/IS_BEACH +FD: net/minecraft/tags/BiomeTags/f_207605_ net/minecraft/tags/BiomeTags/IS_RIVER +FD: net/minecraft/tags/BiomeTags/f_207606_ net/minecraft/tags/BiomeTags/IS_MOUNTAIN +FD: net/minecraft/tags/BiomeTags/f_207607_ net/minecraft/tags/BiomeTags/IS_BADLANDS +FD: net/minecraft/tags/BiomeTags/f_207608_ net/minecraft/tags/BiomeTags/IS_HILL +FD: net/minecraft/tags/BiomeTags/f_207609_ net/minecraft/tags/BiomeTags/IS_TAIGA +FD: net/minecraft/tags/BiomeTags/f_207610_ net/minecraft/tags/BiomeTags/IS_JUNGLE +FD: net/minecraft/tags/BiomeTags/f_207611_ net/minecraft/tags/BiomeTags/IS_FOREST +FD: net/minecraft/tags/BiomeTags/f_207612_ net/minecraft/tags/BiomeTags/IS_NETHER +FD: net/minecraft/tags/BiomeTags/f_207613_ net/minecraft/tags/BiomeTags/HAS_BURIED_TREASURE +FD: net/minecraft/tags/BiomeTags/f_207614_ net/minecraft/tags/BiomeTags/HAS_DESERT_PYRAMID +FD: net/minecraft/tags/BiomeTags/f_207615_ net/minecraft/tags/BiomeTags/HAS_IGLOO +FD: net/minecraft/tags/BiomeTags/f_207616_ net/minecraft/tags/BiomeTags/HAS_JUNGLE_TEMPLE +FD: net/minecraft/tags/BiomeTags/f_207617_ net/minecraft/tags/BiomeTags/HAS_MINESHAFT +FD: net/minecraft/tags/BiomeTags/f_207618_ net/minecraft/tags/BiomeTags/HAS_MINESHAFT_MESA +FD: net/minecraft/tags/BiomeTags/f_207619_ net/minecraft/tags/BiomeTags/HAS_OCEAN_MONUMENT +FD: net/minecraft/tags/BiomeTags/f_207620_ net/minecraft/tags/BiomeTags/HAS_OCEAN_RUIN_COLD +FD: net/minecraft/tags/BiomeTags/f_207621_ net/minecraft/tags/BiomeTags/HAS_OCEAN_RUIN_WARM +FD: net/minecraft/tags/BiomeTags/f_207622_ net/minecraft/tags/BiomeTags/HAS_PILLAGER_OUTPOST +FD: net/minecraft/tags/BiomeTags/f_207623_ net/minecraft/tags/BiomeTags/HAS_RUINED_PORTAL_DESERT +FD: net/minecraft/tags/BiomeTags/f_207624_ net/minecraft/tags/BiomeTags/HAS_RUINED_PORTAL_JUNGLE +FD: net/minecraft/tags/BiomeTags/f_207625_ net/minecraft/tags/BiomeTags/HAS_RUINED_PORTAL_OCEAN +FD: net/minecraft/tags/BiomeTags/f_207626_ net/minecraft/tags/BiomeTags/HAS_RUINED_PORTAL_SWAMP +FD: net/minecraft/tags/BiomeTags/f_207627_ net/minecraft/tags/BiomeTags/HAS_RUINED_PORTAL_MOUNTAIN +FD: net/minecraft/tags/BiomeTags/f_215799_ net/minecraft/tags/BiomeTags/HAS_ANCIENT_CITY +FD: net/minecraft/tags/BiomeTags/f_215800_ net/minecraft/tags/BiomeTags/REQUIRED_OCEAN_MONUMENT_SURROUNDING +FD: net/minecraft/tags/BiomeTags/f_215801_ net/minecraft/tags/BiomeTags/PLAYS_UNDERWATER_MUSIC +FD: net/minecraft/tags/BiomeTags/f_215802_ net/minecraft/tags/BiomeTags/HAS_CLOSER_WATER_FOG +FD: net/minecraft/tags/BiomeTags/f_215803_ net/minecraft/tags/BiomeTags/WATER_ON_MAP_OUTLINES +FD: net/minecraft/tags/BiomeTags/f_215804_ net/minecraft/tags/BiomeTags/PRODUCES_CORALS_FROM_BONEMEAL +FD: net/minecraft/tags/BiomeTags/f_215805_ net/minecraft/tags/BiomeTags/WITHOUT_ZOMBIE_SIEGES +FD: net/minecraft/tags/BiomeTags/f_215806_ net/minecraft/tags/BiomeTags/WITHOUT_PATROL_SPAWNS +FD: net/minecraft/tags/BiomeTags/f_215807_ net/minecraft/tags/BiomeTags/WITHOUT_WANDERING_TRADER_SPAWNS +FD: net/minecraft/tags/BiomeTags/f_215808_ net/minecraft/tags/BiomeTags/SPAWNS_COLD_VARIANT_FROGS +FD: net/minecraft/tags/BiomeTags/f_215809_ net/minecraft/tags/BiomeTags/SPAWNS_WARM_VARIANT_FROGS +FD: net/minecraft/tags/BiomeTags/f_215811_ net/minecraft/tags/BiomeTags/REDUCED_WATER_AMBIENT_SPAWNS +FD: net/minecraft/tags/BiomeTags/f_215812_ net/minecraft/tags/BiomeTags/ALLOWS_TROPICAL_FISH_SPAWNS_AT_ANY_HEIGHT +FD: net/minecraft/tags/BiomeTags/f_215813_ net/minecraft/tags/BiomeTags/POLAR_BEARS_SPAWN_ON_ALTERNATE_BLOCKS +FD: net/minecraft/tags/BiomeTags/f_215814_ net/minecraft/tags/BiomeTags/MORE_FREQUENT_DROWNED_SPAWNS +FD: net/minecraft/tags/BiomeTags/f_215815_ net/minecraft/tags/BiomeTags/ALLOWS_SURFACE_SLIME_SPAWNS +FD: net/minecraft/tags/BiomeTags/f_215816_ net/minecraft/tags/BiomeTags/IS_SAVANNA +FD: net/minecraft/tags/BiomeTags/f_215817_ net/minecraft/tags/BiomeTags/IS_OVERWORLD +FD: net/minecraft/tags/BiomeTags/f_215818_ net/minecraft/tags/BiomeTags/IS_END +FD: net/minecraft/tags/BiomeTags/f_215819_ net/minecraft/tags/BiomeTags/STRONGHOLD_BIASED_TO +FD: net/minecraft/tags/BiomeTags/f_238171_ net/minecraft/tags/BiomeTags/MINESHAFT_BLOCKING +FD: net/minecraft/tags/BiomeTags/f_263748_ net/minecraft/tags/BiomeTags/SPAWNS_SNOW_FOXES +FD: net/minecraft/tags/BiomeTags/f_263794_ net/minecraft/tags/BiomeTags/SPAWNS_WHITE_RABBITS +FD: net/minecraft/tags/BiomeTags/f_263796_ net/minecraft/tags/BiomeTags/SPAWNS_GOLD_RABBITS +FD: net/minecraft/tags/BiomeTags/f_263828_ net/minecraft/tags/BiomeTags/SNOW_GOLEM_MELTS +FD: net/minecraft/tags/BiomeTags/f_263839_ net/minecraft/tags/BiomeTags/INCREASED_FIRE_BURNOUT +FD: net/minecraft/tags/BiomeTags/f_276517_ net/minecraft/tags/BiomeTags/HAS_TRAIL_RUINS +FD: net/minecraft/tags/BlockTags/f_13027_ net/minecraft/tags/BlockTags/WARPED_STEMS +FD: net/minecraft/tags/BlockTags/f_13028_ net/minecraft/tags/BlockTags/BANNERS +FD: net/minecraft/tags/BlockTags/f_13029_ net/minecraft/tags/BlockTags/SAND +FD: net/minecraft/tags/BlockTags/f_13030_ net/minecraft/tags/BlockTags/STAIRS +FD: net/minecraft/tags/BlockTags/f_13031_ net/minecraft/tags/BlockTags/SLABS +FD: net/minecraft/tags/BlockTags/f_13032_ net/minecraft/tags/BlockTags/WALLS +FD: net/minecraft/tags/BlockTags/f_13033_ net/minecraft/tags/BlockTags/ANVIL +FD: net/minecraft/tags/BlockTags/f_13034_ net/minecraft/tags/BlockTags/RAILS +FD: net/minecraft/tags/BlockTags/f_13035_ net/minecraft/tags/BlockTags/LEAVES +FD: net/minecraft/tags/BlockTags/f_13036_ net/minecraft/tags/BlockTags/TRAPDOORS +FD: net/minecraft/tags/BlockTags/f_13037_ net/minecraft/tags/BlockTags/SMALL_FLOWERS +FD: net/minecraft/tags/BlockTags/f_13038_ net/minecraft/tags/BlockTags/BEDS +FD: net/minecraft/tags/BlockTags/f_13039_ net/minecraft/tags/BlockTags/FENCES +FD: net/minecraft/tags/BlockTags/f_13040_ net/minecraft/tags/BlockTags/TALL_FLOWERS +FD: net/minecraft/tags/BlockTags/f_13041_ net/minecraft/tags/BlockTags/FLOWERS +FD: net/minecraft/tags/BlockTags/f_13042_ net/minecraft/tags/BlockTags/PIGLIN_REPELLENTS +FD: net/minecraft/tags/BlockTags/f_13043_ net/minecraft/tags/BlockTags/GOLD_ORES +FD: net/minecraft/tags/BlockTags/f_13045_ net/minecraft/tags/BlockTags/FLOWER_POTS +FD: net/minecraft/tags/BlockTags/f_13046_ net/minecraft/tags/BlockTags/ENDERMAN_HOLDABLE +FD: net/minecraft/tags/BlockTags/f_13047_ net/minecraft/tags/BlockTags/ICE +FD: net/minecraft/tags/BlockTags/f_13048_ net/minecraft/tags/BlockTags/VALID_SPAWN +FD: net/minecraft/tags/BlockTags/f_13049_ net/minecraft/tags/BlockTags/IMPERMEABLE +FD: net/minecraft/tags/BlockTags/f_13050_ net/minecraft/tags/BlockTags/UNDERWATER_BONEMEALS +FD: net/minecraft/tags/BlockTags/f_13051_ net/minecraft/tags/BlockTags/CORAL_BLOCKS +FD: net/minecraft/tags/BlockTags/f_13052_ net/minecraft/tags/BlockTags/WALL_CORALS +FD: net/minecraft/tags/BlockTags/f_13054_ net/minecraft/tags/BlockTags/PREVENT_MOB_SPAWNING_INSIDE +FD: net/minecraft/tags/BlockTags/f_13055_ net/minecraft/tags/BlockTags/FENCE_GATES +FD: net/minecraft/tags/BlockTags/f_13056_ net/minecraft/tags/BlockTags/UNSTABLE_BOTTOM_CENTER +FD: net/minecraft/tags/BlockTags/f_13057_ net/minecraft/tags/BlockTags/MUSHROOM_GROW_BLOCK +FD: net/minecraft/tags/BlockTags/f_13058_ net/minecraft/tags/BlockTags/INFINIBURN_OVERWORLD +FD: net/minecraft/tags/BlockTags/f_13059_ net/minecraft/tags/BlockTags/INFINIBURN_NETHER +FD: net/minecraft/tags/BlockTags/f_13060_ net/minecraft/tags/BlockTags/INFINIBURN_END +FD: net/minecraft/tags/BlockTags/f_13061_ net/minecraft/tags/BlockTags/BASE_STONE_OVERWORLD +FD: net/minecraft/tags/BlockTags/f_13062_ net/minecraft/tags/BlockTags/BASE_STONE_NETHER +FD: net/minecraft/tags/BlockTags/f_13063_ net/minecraft/tags/BlockTags/CORAL_PLANTS +FD: net/minecraft/tags/BlockTags/f_13064_ net/minecraft/tags/BlockTags/CORALS +FD: net/minecraft/tags/BlockTags/f_13065_ net/minecraft/tags/BlockTags/BAMBOO_PLANTABLE_ON +FD: net/minecraft/tags/BlockTags/f_13066_ net/minecraft/tags/BlockTags/STANDING_SIGNS +FD: net/minecraft/tags/BlockTags/f_13067_ net/minecraft/tags/BlockTags/WALL_SIGNS +FD: net/minecraft/tags/BlockTags/f_13068_ net/minecraft/tags/BlockTags/SIGNS +FD: net/minecraft/tags/BlockTags/f_13069_ net/minecraft/tags/BlockTags/DRAGON_IMMUNE +FD: net/minecraft/tags/BlockTags/f_13070_ net/minecraft/tags/BlockTags/WITHER_IMMUNE +FD: net/minecraft/tags/BlockTags/f_13071_ net/minecraft/tags/BlockTags/WITHER_SUMMON_BASE_BLOCKS +FD: net/minecraft/tags/BlockTags/f_13072_ net/minecraft/tags/BlockTags/BEEHIVES +FD: net/minecraft/tags/BlockTags/f_13073_ net/minecraft/tags/BlockTags/CROPS +FD: net/minecraft/tags/BlockTags/f_13074_ net/minecraft/tags/BlockTags/BEE_GROWABLES +FD: net/minecraft/tags/BlockTags/f_13075_ net/minecraft/tags/BlockTags/PORTALS +FD: net/minecraft/tags/BlockTags/f_13076_ net/minecraft/tags/BlockTags/FIRE +FD: net/minecraft/tags/BlockTags/f_13077_ net/minecraft/tags/BlockTags/NYLIUM +FD: net/minecraft/tags/BlockTags/f_13078_ net/minecraft/tags/BlockTags/WART_BLOCKS +FD: net/minecraft/tags/BlockTags/f_13079_ net/minecraft/tags/BlockTags/BEACON_BASE_BLOCKS +FD: net/minecraft/tags/BlockTags/f_13080_ net/minecraft/tags/BlockTags/SOUL_SPEED_BLOCKS +FD: net/minecraft/tags/BlockTags/f_13081_ net/minecraft/tags/BlockTags/WALL_POST_OVERRIDE +FD: net/minecraft/tags/BlockTags/f_13082_ net/minecraft/tags/BlockTags/CLIMBABLE +FD: net/minecraft/tags/BlockTags/f_13083_ net/minecraft/tags/BlockTags/SHULKER_BOXES +FD: net/minecraft/tags/BlockTags/f_13084_ net/minecraft/tags/BlockTags/HOGLIN_REPELLENTS +FD: net/minecraft/tags/BlockTags/f_13085_ net/minecraft/tags/BlockTags/SOUL_FIRE_BASE_BLOCKS +FD: net/minecraft/tags/BlockTags/f_13086_ net/minecraft/tags/BlockTags/STRIDER_WARM_BLOCKS +FD: net/minecraft/tags/BlockTags/f_13087_ net/minecraft/tags/BlockTags/CAMPFIRES +FD: net/minecraft/tags/BlockTags/f_13088_ net/minecraft/tags/BlockTags/GUARDED_BY_PIGLINS +FD: net/minecraft/tags/BlockTags/f_13089_ net/minecraft/tags/BlockTags/WOOL +FD: net/minecraft/tags/BlockTags/f_13090_ net/minecraft/tags/BlockTags/PLANKS +FD: net/minecraft/tags/BlockTags/f_13091_ net/minecraft/tags/BlockTags/STONE_BRICKS +FD: net/minecraft/tags/BlockTags/f_13092_ net/minecraft/tags/BlockTags/WOODEN_BUTTONS +FD: net/minecraft/tags/BlockTags/f_13093_ net/minecraft/tags/BlockTags/BUTTONS +FD: net/minecraft/tags/BlockTags/f_13095_ net/minecraft/tags/BlockTags/WOODEN_DOORS +FD: net/minecraft/tags/BlockTags/f_13096_ net/minecraft/tags/BlockTags/WOODEN_STAIRS +FD: net/minecraft/tags/BlockTags/f_13097_ net/minecraft/tags/BlockTags/WOODEN_SLABS +FD: net/minecraft/tags/BlockTags/f_13098_ net/minecraft/tags/BlockTags/WOODEN_FENCES +FD: net/minecraft/tags/BlockTags/f_13099_ net/minecraft/tags/BlockTags/PRESSURE_PLATES +FD: net/minecraft/tags/BlockTags/f_13100_ net/minecraft/tags/BlockTags/WOODEN_PRESSURE_PLATES +FD: net/minecraft/tags/BlockTags/f_13101_ net/minecraft/tags/BlockTags/STONE_PRESSURE_PLATES +FD: net/minecraft/tags/BlockTags/f_13102_ net/minecraft/tags/BlockTags/WOODEN_TRAPDOORS +FD: net/minecraft/tags/BlockTags/f_13103_ net/minecraft/tags/BlockTags/DOORS +FD: net/minecraft/tags/BlockTags/f_13104_ net/minecraft/tags/BlockTags/SAPLINGS +FD: net/minecraft/tags/BlockTags/f_13105_ net/minecraft/tags/BlockTags/LOGS_THAT_BURN +FD: net/minecraft/tags/BlockTags/f_13106_ net/minecraft/tags/BlockTags/LOGS +FD: net/minecraft/tags/BlockTags/f_13107_ net/minecraft/tags/BlockTags/DARK_OAK_LOGS +FD: net/minecraft/tags/BlockTags/f_13108_ net/minecraft/tags/BlockTags/OAK_LOGS +FD: net/minecraft/tags/BlockTags/f_13109_ net/minecraft/tags/BlockTags/BIRCH_LOGS +FD: net/minecraft/tags/BlockTags/f_13110_ net/minecraft/tags/BlockTags/ACACIA_LOGS +FD: net/minecraft/tags/BlockTags/f_13111_ net/minecraft/tags/BlockTags/JUNGLE_LOGS +FD: net/minecraft/tags/BlockTags/f_13112_ net/minecraft/tags/BlockTags/SPRUCE_LOGS +FD: net/minecraft/tags/BlockTags/f_13113_ net/minecraft/tags/BlockTags/CRIMSON_STEMS +FD: net/minecraft/tags/BlockTags/f_144258_ net/minecraft/tags/BlockTags/IRON_ORES +FD: net/minecraft/tags/BlockTags/f_144259_ net/minecraft/tags/BlockTags/DIAMOND_ORES +FD: net/minecraft/tags/BlockTags/f_144260_ net/minecraft/tags/BlockTags/REDSTONE_ORES +FD: net/minecraft/tags/BlockTags/f_144261_ net/minecraft/tags/BlockTags/LAPIS_ORES +FD: net/minecraft/tags/BlockTags/f_144262_ net/minecraft/tags/BlockTags/COAL_ORES +FD: net/minecraft/tags/BlockTags/f_144263_ net/minecraft/tags/BlockTags/EMERALD_ORES +FD: net/minecraft/tags/BlockTags/f_144264_ net/minecraft/tags/BlockTags/COPPER_ORES +FD: net/minecraft/tags/BlockTags/f_144265_ net/minecraft/tags/BlockTags/CANDLES +FD: net/minecraft/tags/BlockTags/f_144266_ net/minecraft/tags/BlockTags/STONE_ORE_REPLACEABLES +FD: net/minecraft/tags/BlockTags/f_144267_ net/minecraft/tags/BlockTags/DEEPSLATE_ORE_REPLACEABLES +FD: net/minecraft/tags/BlockTags/f_144268_ net/minecraft/tags/BlockTags/CANDLE_CAKES +FD: net/minecraft/tags/BlockTags/f_144269_ net/minecraft/tags/BlockTags/CAULDRONS +FD: net/minecraft/tags/BlockTags/f_144270_ net/minecraft/tags/BlockTags/CRYSTAL_SOUND_BLOCKS +FD: net/minecraft/tags/BlockTags/f_144271_ net/minecraft/tags/BlockTags/INSIDE_STEP_SOUND_BLOCKS +FD: net/minecraft/tags/BlockTags/f_144272_ net/minecraft/tags/BlockTags/OCCLUDES_VIBRATION_SIGNALS +FD: net/minecraft/tags/BlockTags/f_144273_ net/minecraft/tags/BlockTags/DRIPSTONE_REPLACEABLE +FD: net/minecraft/tags/BlockTags/f_144274_ net/minecraft/tags/BlockTags/DIRT +FD: net/minecraft/tags/BlockTags/f_144275_ net/minecraft/tags/BlockTags/CAVE_VINES +FD: net/minecraft/tags/BlockTags/f_144276_ net/minecraft/tags/BlockTags/MOSS_REPLACEABLE +FD: net/minecraft/tags/BlockTags/f_144277_ net/minecraft/tags/BlockTags/LUSH_GROUND_REPLACEABLE +FD: net/minecraft/tags/BlockTags/f_144278_ net/minecraft/tags/BlockTags/SMALL_DRIPLEAF_PLACEABLE +FD: net/minecraft/tags/BlockTags/f_144279_ net/minecraft/tags/BlockTags/SNOW +FD: net/minecraft/tags/BlockTags/f_144280_ net/minecraft/tags/BlockTags/MINEABLE_WITH_AXE +FD: net/minecraft/tags/BlockTags/f_144281_ net/minecraft/tags/BlockTags/MINEABLE_WITH_HOE +FD: net/minecraft/tags/BlockTags/f_144282_ net/minecraft/tags/BlockTags/MINEABLE_WITH_PICKAXE +FD: net/minecraft/tags/BlockTags/f_144283_ net/minecraft/tags/BlockTags/MINEABLE_WITH_SHOVEL +FD: net/minecraft/tags/BlockTags/f_144284_ net/minecraft/tags/BlockTags/NEEDS_DIAMOND_TOOL +FD: net/minecraft/tags/BlockTags/f_144285_ net/minecraft/tags/BlockTags/NEEDS_IRON_TOOL +FD: net/minecraft/tags/BlockTags/f_144286_ net/minecraft/tags/BlockTags/NEEDS_STONE_TOOL +FD: net/minecraft/tags/BlockTags/f_144287_ net/minecraft/tags/BlockTags/FEATURES_CANNOT_REPLACE +FD: net/minecraft/tags/BlockTags/f_144288_ net/minecraft/tags/BlockTags/LAVA_POOL_STONE_CANNOT_REPLACE +FD: net/minecraft/tags/BlockTags/f_144289_ net/minecraft/tags/BlockTags/GEODE_INVALID_BLOCKS +FD: net/minecraft/tags/BlockTags/f_184227_ net/minecraft/tags/BlockTags/BIG_DRIPLEAF_PLACEABLE +FD: net/minecraft/tags/BlockTags/f_184228_ net/minecraft/tags/BlockTags/ANIMALS_SPAWNABLE_ON +FD: net/minecraft/tags/BlockTags/f_184229_ net/minecraft/tags/BlockTags/AXOLOTLS_SPAWNABLE_ON +FD: net/minecraft/tags/BlockTags/f_184230_ net/minecraft/tags/BlockTags/GOATS_SPAWNABLE_ON +FD: net/minecraft/tags/BlockTags/f_184231_ net/minecraft/tags/BlockTags/MOOSHROOMS_SPAWNABLE_ON +FD: net/minecraft/tags/BlockTags/f_184232_ net/minecraft/tags/BlockTags/PARROTS_SPAWNABLE_ON +FD: net/minecraft/tags/BlockTags/f_184234_ net/minecraft/tags/BlockTags/RABBITS_SPAWNABLE_ON +FD: net/minecraft/tags/BlockTags/f_184235_ net/minecraft/tags/BlockTags/FOXES_SPAWNABLE_ON +FD: net/minecraft/tags/BlockTags/f_184236_ net/minecraft/tags/BlockTags/WOLVES_SPAWNABLE_ON +FD: net/minecraft/tags/BlockTags/f_198156_ net/minecraft/tags/BlockTags/TERRACOTTA +FD: net/minecraft/tags/BlockTags/f_198157_ net/minecraft/tags/BlockTags/AZALEA_GROWS_ON +FD: net/minecraft/tags/BlockTags/f_198159_ net/minecraft/tags/BlockTags/AZALEA_ROOT_REPLACEABLE +FD: net/minecraft/tags/BlockTags/f_201924_ net/minecraft/tags/BlockTags/FALL_DAMAGE_RESETTING +FD: net/minecraft/tags/BlockTags/f_215820_ net/minecraft/tags/BlockTags/OVERWORLD_CARVER_REPLACEABLES +FD: net/minecraft/tags/BlockTags/f_215821_ net/minecraft/tags/BlockTags/COMPLETES_FIND_TREE_TUTORIAL +FD: net/minecraft/tags/BlockTags/f_215822_ net/minecraft/tags/BlockTags/DRAGON_TRANSPARENT +FD: net/minecraft/tags/BlockTags/f_215823_ net/minecraft/tags/BlockTags/SCULK_REPLACEABLE +FD: net/minecraft/tags/BlockTags/f_215824_ net/minecraft/tags/BlockTags/SCULK_REPLACEABLE_WORLD_GEN +FD: net/minecraft/tags/BlockTags/f_215825_ net/minecraft/tags/BlockTags/ANCIENT_CITY_REPLACEABLE +FD: net/minecraft/tags/BlockTags/f_215826_ net/minecraft/tags/BlockTags/POLAR_BEARS_SPAWNABLE_ON_ALTERNATE +FD: net/minecraft/tags/BlockTags/f_215827_ net/minecraft/tags/BlockTags/FROGS_SPAWNABLE_ON +FD: net/minecraft/tags/BlockTags/f_215828_ net/minecraft/tags/BlockTags/CONVERTABLE_TO_MUD +FD: net/minecraft/tags/BlockTags/f_215829_ net/minecraft/tags/BlockTags/MANGROVE_LOGS_CAN_GROW_THROUGH +FD: net/minecraft/tags/BlockTags/f_215830_ net/minecraft/tags/BlockTags/MANGROVE_ROOTS_CAN_GROW_THROUGH +FD: net/minecraft/tags/BlockTags/f_215831_ net/minecraft/tags/BlockTags/DEAD_BUSH_MAY_PLACE_ON +FD: net/minecraft/tags/BlockTags/f_215832_ net/minecraft/tags/BlockTags/SNAPS_GOAT_HORN +FD: net/minecraft/tags/BlockTags/f_215833_ net/minecraft/tags/BlockTags/SNOW_LAYER_CANNOT_SURVIVE_ON +FD: net/minecraft/tags/BlockTags/f_215834_ net/minecraft/tags/BlockTags/SNOW_LAYER_CAN_SURVIVE_ON +FD: net/minecraft/tags/BlockTags/f_215835_ net/minecraft/tags/BlockTags/NETHER_CARVER_REPLACEABLES +FD: net/minecraft/tags/BlockTags/f_215836_ net/minecraft/tags/BlockTags/DAMPENS_VIBRATIONS +FD: net/minecraft/tags/BlockTags/f_215837_ net/minecraft/tags/BlockTags/FROG_PREFER_JUMP_TO +FD: net/minecraft/tags/BlockTags/f_215838_ net/minecraft/tags/BlockTags/WOOL_CARPETS +FD: net/minecraft/tags/BlockTags/f_215839_ net/minecraft/tags/BlockTags/OVERWORLD_NATURAL_LOGS +FD: net/minecraft/tags/BlockTags/f_215840_ net/minecraft/tags/BlockTags/MANGROVE_LOGS +FD: net/minecraft/tags/BlockTags/f_243838_ net/minecraft/tags/BlockTags/CEILING_HANGING_SIGNS +FD: net/minecraft/tags/BlockTags/f_244320_ net/minecraft/tags/BlockTags/ALL_HANGING_SIGNS +FD: net/minecraft/tags/BlockTags/f_244350_ net/minecraft/tags/BlockTags/INVALID_SPAWN_INSIDE +FD: net/minecraft/tags/BlockTags/f_244544_ net/minecraft/tags/BlockTags/WALL_HANGING_SIGNS +FD: net/minecraft/tags/BlockTags/f_257016_ net/minecraft/tags/BlockTags/BAMBOO_BLOCKS +FD: net/minecraft/tags/BlockTags/f_260523_ net/minecraft/tags/BlockTags/ALL_SIGNS +FD: net/minecraft/tags/BlockTags/f_271212_ net/minecraft/tags/BlockTags/CHERRY_LOGS +FD: net/minecraft/tags/BlockTags/f_271391_ net/minecraft/tags/BlockTags/SNIFFER_DIGGABLE_BLOCK +FD: net/minecraft/tags/BlockTags/f_273845_ net/minecraft/tags/BlockTags/SMELTS_TO_GLASS +FD: net/minecraft/tags/BlockTags/f_276448_ net/minecraft/tags/BlockTags/TRAIL_RUINS_REPLACEABLE +FD: net/minecraft/tags/BlockTags/f_276549_ net/minecraft/tags/BlockTags/COMBINATION_STEP_SOUND_BLOCKS +FD: net/minecraft/tags/BlockTags/f_276593_ net/minecraft/tags/BlockTags/VIBRATION_RESONATORS +FD: net/minecraft/tags/BlockTags/f_276630_ net/minecraft/tags/BlockTags/SNIFFER_EGG_HATCH_BOOST +FD: net/minecraft/tags/BlockTags/f_278384_ net/minecraft/tags/BlockTags/ENCHANTMENT_POWER_PROVIDER +FD: net/minecraft/tags/BlockTags/f_278394_ net/minecraft/tags/BlockTags/REPLACEABLE +FD: net/minecraft/tags/BlockTags/f_278398_ net/minecraft/tags/BlockTags/SWORD_EFFICIENT +FD: net/minecraft/tags/BlockTags/f_278411_ net/minecraft/tags/BlockTags/REPLACEABLE_BY_TREES +FD: net/minecraft/tags/BlockTags/f_278486_ net/minecraft/tags/BlockTags/ENCHANTMENT_POWER_TRANSMITTER +FD: net/minecraft/tags/BlockTags/f_279534_ net/minecraft/tags/BlockTags/MAINTAINS_FARMLAND +FD: net/minecraft/tags/BlockTags/f_279568_ net/minecraft/tags/BlockTags/STONE_BUTTONS +FD: net/minecraft/tags/CatVariantTags/f_215841_ net/minecraft/tags/CatVariantTags/DEFAULT_SPAWNS +FD: net/minecraft/tags/CatVariantTags/f_215842_ net/minecraft/tags/CatVariantTags/FULL_MOON_SPAWNS +FD: net/minecraft/tags/DamageTypeTags/f_268413_ net/minecraft/tags/DamageTypeTags/BYPASSES_ENCHANTMENTS +FD: net/minecraft/tags/DamageTypeTags/f_268415_ net/minecraft/tags/DamageTypeTags/IS_EXPLOSION +FD: net/minecraft/tags/DamageTypeTags/f_268419_ net/minecraft/tags/DamageTypeTags/IS_FREEZING +FD: net/minecraft/tags/DamageTypeTags/f_268437_ net/minecraft/tags/DamageTypeTags/BYPASSES_EFFECTS +FD: net/minecraft/tags/DamageTypeTags/f_268467_ net/minecraft/tags/DamageTypeTags/NO_IMPACT +FD: net/minecraft/tags/DamageTypeTags/f_268484_ net/minecraft/tags/DamageTypeTags/WITHER_IMMUNE_TO +FD: net/minecraft/tags/DamageTypeTags/f_268490_ net/minecraft/tags/DamageTypeTags/BYPASSES_ARMOR +FD: net/minecraft/tags/DamageTypeTags/f_268518_ net/minecraft/tags/DamageTypeTags/ALWAYS_MOST_SIGNIFICANT_FALL +FD: net/minecraft/tags/DamageTypeTags/f_268524_ net/minecraft/tags/DamageTypeTags/IS_PROJECTILE +FD: net/minecraft/tags/DamageTypeTags/f_268549_ net/minecraft/tags/DamageTypeTags/IS_FALL +FD: net/minecraft/tags/DamageTypeTags/f_268581_ net/minecraft/tags/DamageTypeTags/IS_DROWNING +FD: net/minecraft/tags/DamageTypeTags/f_268627_ net/minecraft/tags/DamageTypeTags/DAMAGES_HELMET +FD: net/minecraft/tags/DamageTypeTags/f_268630_ net/minecraft/tags/DamageTypeTags/BYPASSES_RESISTANCE +FD: net/minecraft/tags/DamageTypeTags/f_268640_ net/minecraft/tags/DamageTypeTags/AVOIDS_GUARDIAN_THORNS +FD: net/minecraft/tags/DamageTypeTags/f_268711_ net/minecraft/tags/DamageTypeTags/BURNS_ARMOR_STANDS +FD: net/minecraft/tags/DamageTypeTags/f_268718_ net/minecraft/tags/DamageTypeTags/NO_ANGER +FD: net/minecraft/tags/DamageTypeTags/f_268725_ net/minecraft/tags/DamageTypeTags/IS_LIGHTNING +FD: net/minecraft/tags/DamageTypeTags/f_268727_ net/minecraft/tags/DamageTypeTags/IGNITES_ARMOR_STANDS +FD: net/minecraft/tags/DamageTypeTags/f_268731_ net/minecraft/tags/DamageTypeTags/WITCH_RESISTANT_TO +FD: net/minecraft/tags/DamageTypeTags/f_268738_ net/minecraft/tags/DamageTypeTags/BYPASSES_INVULNERABILITY +FD: net/minecraft/tags/DamageTypeTags/f_268745_ net/minecraft/tags/DamageTypeTags/IS_FIRE +FD: net/minecraft/tags/DamageTypeTags/f_268750_ net/minecraft/tags/DamageTypeTags/ALWAYS_TRIGGERS_SILVERFISH +FD: net/minecraft/tags/DamageTypeTags/f_273821_ net/minecraft/tags/DamageTypeTags/ALWAYS_HURTS_ENDER_DRAGONS +FD: net/minecraft/tags/DamageTypeTags/f_273918_ net/minecraft/tags/DamageTypeTags/BYPASSES_COOLDOWN +FD: net/minecraft/tags/DamageTypeTags/f_276146_ net/minecraft/tags/DamageTypeTags/BYPASSES_SHIELD +FD: net/minecraft/tags/EntityTypeTags/f_13120_ net/minecraft/tags/EntityTypeTags/SKELETONS +FD: net/minecraft/tags/EntityTypeTags/f_13121_ net/minecraft/tags/EntityTypeTags/RAIDERS +FD: net/minecraft/tags/EntityTypeTags/f_13122_ net/minecraft/tags/EntityTypeTags/BEEHIVE_INHABITORS +FD: net/minecraft/tags/EntityTypeTags/f_13123_ net/minecraft/tags/EntityTypeTags/ARROWS +FD: net/minecraft/tags/EntityTypeTags/f_13124_ net/minecraft/tags/EntityTypeTags/IMPACT_PROJECTILES +FD: net/minecraft/tags/EntityTypeTags/f_144291_ net/minecraft/tags/EntityTypeTags/POWDER_SNOW_WALKABLE_MOBS +FD: net/minecraft/tags/EntityTypeTags/f_144292_ net/minecraft/tags/EntityTypeTags/AXOLOTL_ALWAYS_HOSTILES +FD: net/minecraft/tags/EntityTypeTags/f_144293_ net/minecraft/tags/EntityTypeTags/AXOLOTL_HUNT_TARGETS +FD: net/minecraft/tags/EntityTypeTags/f_144294_ net/minecraft/tags/EntityTypeTags/FREEZE_IMMUNE_ENTITY_TYPES +FD: net/minecraft/tags/EntityTypeTags/f_144295_ net/minecraft/tags/EntityTypeTags/FREEZE_HURTS_EXTRA_TYPES +FD: net/minecraft/tags/EntityTypeTags/f_215847_ net/minecraft/tags/EntityTypeTags/FROG_FOOD +FD: net/minecraft/tags/EntityTypeTags/f_273841_ net/minecraft/tags/EntityTypeTags/FALL_DAMAGE_IMMUNE +FD: net/minecraft/tags/EntityTypeTags/f_275751_ net/minecraft/tags/EntityTypeTags/DISMOUNTS_UNDERWATER +FD: net/minecraft/tags/FlatLevelGeneratorPresetTags/f_215848_ net/minecraft/tags/FlatLevelGeneratorPresetTags/VISIBLE +FD: net/minecraft/tags/FluidTags/f_13131_ net/minecraft/tags/FluidTags/WATER +FD: net/minecraft/tags/FluidTags/f_13132_ net/minecraft/tags/FluidTags/LAVA +FD: net/minecraft/tags/GameEventTags/f_144302_ net/minecraft/tags/GameEventTags/VIBRATIONS +FD: net/minecraft/tags/GameEventTags/f_144303_ net/minecraft/tags/GameEventTags/IGNORE_VIBRATIONS_SNEAKING +FD: net/minecraft/tags/GameEventTags/f_215853_ net/minecraft/tags/GameEventTags/WARDEN_CAN_LISTEN +FD: net/minecraft/tags/GameEventTags/f_215854_ net/minecraft/tags/GameEventTags/SHRIEKER_CAN_LISTEN +FD: net/minecraft/tags/GameEventTags/f_215855_ net/minecraft/tags/GameEventTags/ALLAY_CAN_LISTEN +FD: net/minecraft/tags/InstrumentTags/f_215856_ net/minecraft/tags/InstrumentTags/REGULAR_GOAT_HORNS +FD: net/minecraft/tags/InstrumentTags/f_215857_ net/minecraft/tags/InstrumentTags/SCREAMING_GOAT_HORNS +FD: net/minecraft/tags/InstrumentTags/f_215858_ net/minecraft/tags/InstrumentTags/GOAT_HORNS +FD: net/minecraft/tags/ItemTags/f_13137_ net/minecraft/tags/ItemTags/SAND +FD: net/minecraft/tags/ItemTags/f_13138_ net/minecraft/tags/ItemTags/STAIRS +FD: net/minecraft/tags/ItemTags/f_13139_ net/minecraft/tags/ItemTags/SLABS +FD: net/minecraft/tags/ItemTags/f_13140_ net/minecraft/tags/ItemTags/WALLS +FD: net/minecraft/tags/ItemTags/f_13141_ net/minecraft/tags/ItemTags/ANVIL +FD: net/minecraft/tags/ItemTags/f_13142_ net/minecraft/tags/ItemTags/RAILS +FD: net/minecraft/tags/ItemTags/f_13143_ net/minecraft/tags/ItemTags/LEAVES +FD: net/minecraft/tags/ItemTags/f_13144_ net/minecraft/tags/ItemTags/TRAPDOORS +FD: net/minecraft/tags/ItemTags/f_13145_ net/minecraft/tags/ItemTags/SMALL_FLOWERS +FD: net/minecraft/tags/ItemTags/f_13146_ net/minecraft/tags/ItemTags/BEDS +FD: net/minecraft/tags/ItemTags/f_13147_ net/minecraft/tags/ItemTags/FENCES +FD: net/minecraft/tags/ItemTags/f_13148_ net/minecraft/tags/ItemTags/TALL_FLOWERS +FD: net/minecraft/tags/ItemTags/f_13149_ net/minecraft/tags/ItemTags/FLOWERS +FD: net/minecraft/tags/ItemTags/f_13150_ net/minecraft/tags/ItemTags/PIGLIN_REPELLENTS +FD: net/minecraft/tags/ItemTags/f_13151_ net/minecraft/tags/ItemTags/PIGLIN_LOVED +FD: net/minecraft/tags/ItemTags/f_13152_ net/minecraft/tags/ItemTags/GOLD_ORES +FD: net/minecraft/tags/ItemTags/f_13153_ net/minecraft/tags/ItemTags/NON_FLAMMABLE_WOOD +FD: net/minecraft/tags/ItemTags/f_13154_ net/minecraft/tags/ItemTags/SOUL_FIRE_BASE_BLOCKS +FD: net/minecraft/tags/ItemTags/f_13155_ net/minecraft/tags/ItemTags/BOATS +FD: net/minecraft/tags/ItemTags/f_13156_ net/minecraft/tags/ItemTags/FISHES +FD: net/minecraft/tags/ItemTags/f_13157_ net/minecraft/tags/ItemTags/SIGNS +FD: net/minecraft/tags/ItemTags/f_13158_ net/minecraft/tags/ItemTags/MUSIC_DISCS +FD: net/minecraft/tags/ItemTags/f_13159_ net/minecraft/tags/ItemTags/CREEPER_DROP_MUSIC_DISCS +FD: net/minecraft/tags/ItemTags/f_13160_ net/minecraft/tags/ItemTags/COALS +FD: net/minecraft/tags/ItemTags/f_13161_ net/minecraft/tags/ItemTags/ARROWS +FD: net/minecraft/tags/ItemTags/f_13162_ net/minecraft/tags/ItemTags/LECTERN_BOOKS +FD: net/minecraft/tags/ItemTags/f_13164_ net/minecraft/tags/ItemTags/BEACON_PAYMENT_ITEMS +FD: net/minecraft/tags/ItemTags/f_13165_ net/minecraft/tags/ItemTags/STONE_TOOL_MATERIALS +FD: net/minecraft/tags/ItemTags/f_13166_ net/minecraft/tags/ItemTags/STONE_CRAFTING_MATERIALS +FD: net/minecraft/tags/ItemTags/f_13167_ net/minecraft/tags/ItemTags/WOOL +FD: net/minecraft/tags/ItemTags/f_13168_ net/minecraft/tags/ItemTags/PLANKS +FD: net/minecraft/tags/ItemTags/f_13169_ net/minecraft/tags/ItemTags/STONE_BRICKS +FD: net/minecraft/tags/ItemTags/f_13170_ net/minecraft/tags/ItemTags/WOODEN_BUTTONS +FD: net/minecraft/tags/ItemTags/f_13171_ net/minecraft/tags/ItemTags/BUTTONS +FD: net/minecraft/tags/ItemTags/f_13173_ net/minecraft/tags/ItemTags/WOODEN_DOORS +FD: net/minecraft/tags/ItemTags/f_13174_ net/minecraft/tags/ItemTags/WOODEN_STAIRS +FD: net/minecraft/tags/ItemTags/f_13175_ net/minecraft/tags/ItemTags/WOODEN_SLABS +FD: net/minecraft/tags/ItemTags/f_13176_ net/minecraft/tags/ItemTags/WOODEN_FENCES +FD: net/minecraft/tags/ItemTags/f_13177_ net/minecraft/tags/ItemTags/WOODEN_PRESSURE_PLATES +FD: net/minecraft/tags/ItemTags/f_13178_ net/minecraft/tags/ItemTags/WOODEN_TRAPDOORS +FD: net/minecraft/tags/ItemTags/f_13179_ net/minecraft/tags/ItemTags/DOORS +FD: net/minecraft/tags/ItemTags/f_13180_ net/minecraft/tags/ItemTags/SAPLINGS +FD: net/minecraft/tags/ItemTags/f_13181_ net/minecraft/tags/ItemTags/LOGS_THAT_BURN +FD: net/minecraft/tags/ItemTags/f_13182_ net/minecraft/tags/ItemTags/LOGS +FD: net/minecraft/tags/ItemTags/f_13183_ net/minecraft/tags/ItemTags/DARK_OAK_LOGS +FD: net/minecraft/tags/ItemTags/f_13184_ net/minecraft/tags/ItemTags/OAK_LOGS +FD: net/minecraft/tags/ItemTags/f_13185_ net/minecraft/tags/ItemTags/BIRCH_LOGS +FD: net/minecraft/tags/ItemTags/f_13186_ net/minecraft/tags/ItemTags/ACACIA_LOGS +FD: net/minecraft/tags/ItemTags/f_13187_ net/minecraft/tags/ItemTags/JUNGLE_LOGS +FD: net/minecraft/tags/ItemTags/f_13188_ net/minecraft/tags/ItemTags/SPRUCE_LOGS +FD: net/minecraft/tags/ItemTags/f_13189_ net/minecraft/tags/ItemTags/CRIMSON_STEMS +FD: net/minecraft/tags/ItemTags/f_13190_ net/minecraft/tags/ItemTags/WARPED_STEMS +FD: net/minecraft/tags/ItemTags/f_13191_ net/minecraft/tags/ItemTags/BANNERS +FD: net/minecraft/tags/ItemTags/f_144309_ net/minecraft/tags/ItemTags/IGNORED_BY_PIGLIN_BABIES +FD: net/minecraft/tags/ItemTags/f_144310_ net/minecraft/tags/ItemTags/PIGLIN_FOOD +FD: net/minecraft/tags/ItemTags/f_144311_ net/minecraft/tags/ItemTags/FOX_FOOD +FD: net/minecraft/tags/ItemTags/f_144312_ net/minecraft/tags/ItemTags/IRON_ORES +FD: net/minecraft/tags/ItemTags/f_144313_ net/minecraft/tags/ItemTags/DIAMOND_ORES +FD: net/minecraft/tags/ItemTags/f_144314_ net/minecraft/tags/ItemTags/REDSTONE_ORES +FD: net/minecraft/tags/ItemTags/f_144315_ net/minecraft/tags/ItemTags/LAPIS_ORES +FD: net/minecraft/tags/ItemTags/f_144316_ net/minecraft/tags/ItemTags/COAL_ORES +FD: net/minecraft/tags/ItemTags/f_144317_ net/minecraft/tags/ItemTags/EMERALD_ORES +FD: net/minecraft/tags/ItemTags/f_144318_ net/minecraft/tags/ItemTags/COPPER_ORES +FD: net/minecraft/tags/ItemTags/f_144319_ net/minecraft/tags/ItemTags/CANDLES +FD: net/minecraft/tags/ItemTags/f_144320_ net/minecraft/tags/ItemTags/FREEZE_IMMUNE_WEARABLES +FD: net/minecraft/tags/ItemTags/f_144321_ net/minecraft/tags/ItemTags/AXOLOTL_TEMPT_ITEMS +FD: net/minecraft/tags/ItemTags/f_144323_ net/minecraft/tags/ItemTags/CLUSTER_MAX_HARVESTABLES +FD: net/minecraft/tags/ItemTags/f_198160_ net/minecraft/tags/ItemTags/DIRT +FD: net/minecraft/tags/ItemTags/f_198161_ net/minecraft/tags/ItemTags/TERRACOTTA +FD: net/minecraft/tags/ItemTags/f_215862_ net/minecraft/tags/ItemTags/WART_BLOCKS +FD: net/minecraft/tags/ItemTags/f_215863_ net/minecraft/tags/ItemTags/COMPLETES_FIND_TREE_TUTORIAL +FD: net/minecraft/tags/ItemTags/f_215864_ net/minecraft/tags/ItemTags/CHEST_BOATS +FD: net/minecraft/tags/ItemTags/f_215865_ net/minecraft/tags/ItemTags/DAMPENS_VIBRATIONS +FD: net/minecraft/tags/ItemTags/f_215866_ net/minecraft/tags/ItemTags/COMPASSES +FD: net/minecraft/tags/ItemTags/f_215867_ net/minecraft/tags/ItemTags/WOOL_CARPETS +FD: net/minecraft/tags/ItemTags/f_215869_ net/minecraft/tags/ItemTags/MANGROVE_LOGS +FD: net/minecraft/tags/ItemTags/f_244389_ net/minecraft/tags/ItemTags/HANGING_SIGNS +FD: net/minecraft/tags/ItemTags/f_244646_ net/minecraft/tags/ItemTags/BOOKSHELF_BOOKS +FD: net/minecraft/tags/ItemTags/f_254662_ net/minecraft/tags/ItemTags/FENCE_GATES +FD: net/minecraft/tags/ItemTags/f_256904_ net/minecraft/tags/ItemTags/BAMBOO_BLOCKS +FD: net/minecraft/tags/ItemTags/f_262757_ net/minecraft/tags/ItemTags/CREEPER_IGNITERS +FD: net/minecraft/tags/ItemTags/f_263791_ net/minecraft/tags/ItemTags/NOTE_BLOCK_TOP_INSTRUMENTS +FD: net/minecraft/tags/ItemTags/f_265843_ net/minecraft/tags/ItemTags/TRIM_MATERIALS +FD: net/minecraft/tags/ItemTags/f_265940_ net/minecraft/tags/ItemTags/TRIM_TEMPLATES +FD: net/minecraft/tags/ItemTags/f_265942_ net/minecraft/tags/ItemTags/TRIMMABLE_ARMOR +FD: net/minecraft/tags/ItemTags/f_271138_ net/minecraft/tags/ItemTags/SHOVELS +FD: net/minecraft/tags/ItemTags/f_271202_ net/minecraft/tags/ItemTags/CHERRY_LOGS +FD: net/minecraft/tags/ItemTags/f_271207_ net/minecraft/tags/ItemTags/AXES +FD: net/minecraft/tags/ItemTags/f_271220_ net/minecraft/tags/ItemTags/DECORATED_POT_SHERDS +FD: net/minecraft/tags/ItemTags/f_271298_ net/minecraft/tags/ItemTags/HOES +FD: net/minecraft/tags/ItemTags/f_271360_ net/minecraft/tags/ItemTags/PICKAXES +FD: net/minecraft/tags/ItemTags/f_271388_ net/minecraft/tags/ItemTags/SWORDS +FD: net/minecraft/tags/ItemTags/f_271449_ net/minecraft/tags/ItemTags/SNIFFER_FOOD +FD: net/minecraft/tags/ItemTags/f_271470_ net/minecraft/tags/ItemTags/BREAKS_DECORATED_POTS +FD: net/minecraft/tags/ItemTags/f_271540_ net/minecraft/tags/ItemTags/TOOLS +FD: net/minecraft/tags/ItemTags/f_273858_ net/minecraft/tags/ItemTags/SMELTS_TO_GLASS +FD: net/minecraft/tags/ItemTags/f_279581_ net/minecraft/tags/ItemTags/VILLAGER_PLANTABLE_SEEDS +FD: net/minecraft/tags/ItemTags/f_279629_ net/minecraft/tags/ItemTags/STONE_BUTTONS +FD: net/minecraft/tags/ItemTags/f_283829_ net/minecraft/tags/ItemTags/DECORATED_POT_INGREDIENTS +FD: net/minecraft/tags/PaintingVariantTags/f_215870_ net/minecraft/tags/PaintingVariantTags/PLACEABLE +FD: net/minecraft/tags/PoiTypeTags/f_215875_ net/minecraft/tags/PoiTypeTags/ACQUIRABLE_JOB_SITE +FD: net/minecraft/tags/PoiTypeTags/f_215876_ net/minecraft/tags/PoiTypeTags/VILLAGE +FD: net/minecraft/tags/PoiTypeTags/f_215877_ net/minecraft/tags/PoiTypeTags/BEE_HOME +FD: net/minecraft/tags/StructureTags/f_215882_ net/minecraft/tags/StructureTags/EYE_OF_ENDER_LOCATED +FD: net/minecraft/tags/StructureTags/f_215883_ net/minecraft/tags/StructureTags/DOLPHIN_LOCATED +FD: net/minecraft/tags/StructureTags/f_215884_ net/minecraft/tags/StructureTags/ON_WOODLAND_EXPLORER_MAPS +FD: net/minecraft/tags/StructureTags/f_215885_ net/minecraft/tags/StructureTags/ON_OCEAN_EXPLORER_MAPS +FD: net/minecraft/tags/StructureTags/f_215886_ net/minecraft/tags/StructureTags/ON_TREASURE_MAPS +FD: net/minecraft/tags/StructureTags/f_215887_ net/minecraft/tags/StructureTags/CATS_SPAWN_IN +FD: net/minecraft/tags/StructureTags/f_215888_ net/minecraft/tags/StructureTags/CATS_SPAWN_AS_BLACK +FD: net/minecraft/tags/StructureTags/f_215889_ net/minecraft/tags/StructureTags/VILLAGE +FD: net/minecraft/tags/StructureTags/f_215890_ net/minecraft/tags/StructureTags/MINESHAFT +FD: net/minecraft/tags/StructureTags/f_215891_ net/minecraft/tags/StructureTags/SHIPWRECK +FD: net/minecraft/tags/StructureTags/f_215892_ net/minecraft/tags/StructureTags/RUINED_PORTAL +FD: net/minecraft/tags/StructureTags/f_215893_ net/minecraft/tags/StructureTags/OCEAN_RUIN +FD: net/minecraft/tags/TagBuilder/f_215897_ net/minecraft/tags/TagBuilder/entries +FD: net/minecraft/tags/TagEntry/f_215911_ net/minecraft/tags/TagEntry/CODEC +FD: net/minecraft/tags/TagEntry/f_215912_ net/minecraft/tags/TagEntry/FULL_CODEC +FD: net/minecraft/tags/TagEntry/f_215913_ net/minecraft/tags/TagEntry/id +FD: net/minecraft/tags/TagEntry/f_215914_ net/minecraft/tags/TagEntry/tag +FD: net/minecraft/tags/TagEntry/f_215915_ net/minecraft/tags/TagEntry/required +FD: net/minecraft/tags/TagFile/f_215958_ net/minecraft/tags/TagFile/CODEC +FD: net/minecraft/tags/TagFile/f_215959_ net/minecraft/tags/TagFile/entries +FD: net/minecraft/tags/TagFile/f_215960_ net/minecraft/tags/TagFile/replace +FD: net/minecraft/tags/TagKey/f_203867_ net/minecraft/tags/TagKey/registry +FD: net/minecraft/tags/TagKey/f_203868_ net/minecraft/tags/TagKey/location +FD: net/minecraft/tags/TagKey/f_203869_ net/minecraft/tags/TagKey/VALUES +FD: net/minecraft/tags/TagLoader/f_13445_ net/minecraft/tags/TagLoader/LOGGER +FD: net/minecraft/tags/TagLoader/f_13448_ net/minecraft/tags/TagLoader/idToValue +FD: net/minecraft/tags/TagLoader/f_13449_ net/minecraft/tags/TagLoader/directory +FD: net/minecraft/tags/TagLoader$1/f_216033_ net/minecraft/tags/TagLoader$1/val$newTags +FD: net/minecraft/tags/TagLoader$1/f_216034_ net/minecraft/tags/TagLoader$1/this$0 +FD: net/minecraft/tags/TagLoader$EntryWithSource/f_216042_ net/minecraft/tags/TagLoader$EntryWithSource/entry +FD: net/minecraft/tags/TagLoader$EntryWithSource/f_216043_ net/minecraft/tags/TagLoader$EntryWithSource/source +FD: net/minecraft/tags/TagLoader$SortingEntry/f_283922_ net/minecraft/tags/TagLoader$SortingEntry/entries +FD: net/minecraft/tags/TagManager/f_144569_ net/minecraft/tags/TagManager/registryAccess +FD: net/minecraft/tags/TagManager/f_203902_ net/minecraft/tags/TagManager/CUSTOM_REGISTRY_DIRECTORIES +FD: net/minecraft/tags/TagManager/f_203903_ net/minecraft/tags/TagManager/results +FD: net/minecraft/tags/TagManager$LoadResult/f_203928_ net/minecraft/tags/TagManager$LoadResult/key +FD: net/minecraft/tags/TagManager$LoadResult/f_203929_ net/minecraft/tags/TagManager$LoadResult/tags +FD: net/minecraft/tags/TagNetworkSerialization$NetworkPayload/f_203963_ net/minecraft/tags/TagNetworkSerialization$NetworkPayload/tags +FD: net/minecraft/tags/WorldPresetTags/f_216053_ net/minecraft/tags/WorldPresetTags/NORMAL +FD: net/minecraft/tags/WorldPresetTags/f_216054_ net/minecraft/tags/WorldPresetTags/EXTENDED +FD: net/minecraft/util/AbortableIterationConsumer$Continuation/$VALUES net/minecraft/util/AbortableIterationConsumer$Continuation/$VALUES +FD: net/minecraft/util/AbortableIterationConsumer$Continuation/ABORT net/minecraft/util/AbortableIterationConsumer$Continuation/ABORT +FD: net/minecraft/util/AbortableIterationConsumer$Continuation/CONTINUE net/minecraft/util/AbortableIterationConsumer$Continuation/CONTINUE +FD: net/minecraft/util/Brightness/f_268416_ net/minecraft/util/Brightness/block +FD: net/minecraft/util/Brightness/f_268420_ net/minecraft/util/Brightness/sky +FD: net/minecraft/util/Brightness/f_268431_ net/minecraft/util/Brightness/LIGHT_VALUE_CODEC +FD: net/minecraft/util/Brightness/f_268536_ net/minecraft/util/Brightness/FULL_BRIGHT +FD: net/minecraft/util/Brightness/f_268672_ net/minecraft/util/Brightness/CODEC +FD: net/minecraft/util/ByIdMap$1/f_262754_ net/minecraft/util/ByIdMap$1/$SwitchMap$net$minecraft$util$ByIdMap$OutOfBoundsStrategy +FD: net/minecraft/util/ByIdMap$OutOfBoundsStrategy/$VALUES net/minecraft/util/ByIdMap$OutOfBoundsStrategy/$VALUES +FD: net/minecraft/util/ByIdMap$OutOfBoundsStrategy/CLAMP net/minecraft/util/ByIdMap$OutOfBoundsStrategy/CLAMP +FD: net/minecraft/util/ByIdMap$OutOfBoundsStrategy/WRAP net/minecraft/util/ByIdMap$OutOfBoundsStrategy/WRAP +FD: net/minecraft/util/ByIdMap$OutOfBoundsStrategy/ZERO net/minecraft/util/ByIdMap$OutOfBoundsStrategy/ZERO +FD: net/minecraft/util/ClassInstanceMultiMap/f_13527_ net/minecraft/util/ClassInstanceMultiMap/byClass +FD: net/minecraft/util/ClassInstanceMultiMap/f_13528_ net/minecraft/util/ClassInstanceMultiMap/baseClass +FD: net/minecraft/util/ClassInstanceMultiMap/f_13529_ net/minecraft/util/ClassInstanceMultiMap/allInstances +FD: net/minecraft/util/CommonColors/f_263745_ net/minecraft/util/CommonColors/RED +FD: net/minecraft/util/CommonColors/f_273839_ net/minecraft/util/CommonColors/BLACK +FD: net/minecraft/util/CommonColors/f_273869_ net/minecraft/util/CommonColors/WHITE +FD: net/minecraft/util/CommonColors/f_289577_ net/minecraft/util/CommonColors/GRAY +FD: net/minecraft/util/CommonLinks/f_276134_ net/minecraft/util/CommonLinks/REALMS_TERMS +FD: net/minecraft/util/CommonLinks/f_276135_ net/minecraft/util/CommonLinks/REALMS_UPDATE_MOJANG_ACCOUNT +FD: net/minecraft/util/CommonLinks/f_276139_ net/minecraft/util/CommonLinks/SUSPENSION_HELP +FD: net/minecraft/util/CommonLinks/f_276140_ net/minecraft/util/CommonLinks/EULA +FD: net/minecraft/util/CommonLinks/f_276141_ net/minecraft/util/CommonLinks/ATTRIBUTION +FD: net/minecraft/util/CommonLinks/f_276142_ net/minecraft/util/CommonLinks/SNAPSHOT_FEEDBACK +FD: net/minecraft/util/CommonLinks/f_276144_ net/minecraft/util/CommonLinks/ACCOUNT_SETTINGS +FD: net/minecraft/util/CommonLinks/f_276145_ net/minecraft/util/CommonLinks/BUY_REALMS +FD: net/minecraft/util/CommonLinks/f_276147_ net/minecraft/util/CommonLinks/SNAPSHOT_BUGS_FEEDBACK +FD: net/minecraft/util/CommonLinks/f_276149_ net/minecraft/util/CommonLinks/START_REALMS_TRIAL +FD: net/minecraft/util/CommonLinks/f_276150_ net/minecraft/util/CommonLinks/RELEASE_FEEDBACK +FD: net/minecraft/util/CommonLinks/f_276151_ net/minecraft/util/CommonLinks/BUY_MINECRAFT_JAVA +FD: net/minecraft/util/CommonLinks/f_276152_ net/minecraft/util/CommonLinks/LICENSES +FD: net/minecraft/util/CommonLinks/f_276156_ net/minecraft/util/CommonLinks/GDPR +FD: net/minecraft/util/CommonLinks/f_276157_ net/minecraft/util/CommonLinks/ACCESSIBILITY_HELP +FD: net/minecraft/util/CommonLinks/f_276158_ net/minecraft/util/CommonLinks/BLOCKING_HELP +FD: net/minecraft/util/CommonLinks/f_276159_ net/minecraft/util/CommonLinks/REALMS_CONTENT_CREATION +FD: net/minecraft/util/CommonLinks/f_276160_ net/minecraft/util/CommonLinks/REPORTING_HELP +FD: net/minecraft/util/CommonLinks/f_289836_ net/minecraft/util/CommonLinks/SYMLINK_HELP +FD: net/minecraft/util/CrudeIncrementalIntIdentityHashBiMap/f_13545_ net/minecraft/util/CrudeIncrementalIntIdentityHashBiMap/EMPTY_SLOT +FD: net/minecraft/util/CrudeIncrementalIntIdentityHashBiMap/f_13546_ net/minecraft/util/CrudeIncrementalIntIdentityHashBiMap/keys +FD: net/minecraft/util/CrudeIncrementalIntIdentityHashBiMap/f_13547_ net/minecraft/util/CrudeIncrementalIntIdentityHashBiMap/values +FD: net/minecraft/util/CrudeIncrementalIntIdentityHashBiMap/f_13548_ net/minecraft/util/CrudeIncrementalIntIdentityHashBiMap/byId +FD: net/minecraft/util/CrudeIncrementalIntIdentityHashBiMap/f_13549_ net/minecraft/util/CrudeIncrementalIntIdentityHashBiMap/nextId +FD: net/minecraft/util/CrudeIncrementalIntIdentityHashBiMap/f_13550_ net/minecraft/util/CrudeIncrementalIntIdentityHashBiMap/size +FD: net/minecraft/util/CrudeIncrementalIntIdentityHashBiMap/f_144605_ net/minecraft/util/CrudeIncrementalIntIdentityHashBiMap/NOT_FOUND +FD: net/minecraft/util/CrudeIncrementalIntIdentityHashBiMap/f_144606_ net/minecraft/util/CrudeIncrementalIntIdentityHashBiMap/LOADFACTOR +FD: net/minecraft/util/Crypt/f_144611_ net/minecraft/util/Crypt/SYMMETRIC_ALGORITHM +FD: net/minecraft/util/Crypt/f_144612_ net/minecraft/util/Crypt/SYMMETRIC_BITS +FD: net/minecraft/util/Crypt/f_144613_ net/minecraft/util/Crypt/ASYMMETRIC_ALGORITHM +FD: net/minecraft/util/Crypt/f_144614_ net/minecraft/util/Crypt/ASYMMETRIC_BITS +FD: net/minecraft/util/Crypt/f_144615_ net/minecraft/util/Crypt/BYTE_ENCODING +FD: net/minecraft/util/Crypt/f_144616_ net/minecraft/util/Crypt/HASH_ALGORITHM +FD: net/minecraft/util/Crypt/f_216059_ net/minecraft/util/Crypt/SIGNING_ALGORITHM +FD: net/minecraft/util/Crypt/f_216060_ net/minecraft/util/Crypt/RSA_PUBLIC_KEY_HEADER +FD: net/minecraft/util/Crypt/f_216061_ net/minecraft/util/Crypt/MIME_LINE_SEPARATOR +FD: net/minecraft/util/Crypt/f_216062_ net/minecraft/util/Crypt/MIME_ENCODER +FD: net/minecraft/util/Crypt/f_216063_ net/minecraft/util/Crypt/PUBLIC_KEY_CODEC +FD: net/minecraft/util/Crypt/f_216064_ net/minecraft/util/Crypt/PRIVATE_KEY_CODEC +FD: net/minecraft/util/Crypt/f_216065_ net/minecraft/util/Crypt/PEM_RSA_PRIVATE_KEY_HEADER +FD: net/minecraft/util/Crypt/f_216066_ net/minecraft/util/Crypt/PEM_RSA_PRIVATE_KEY_FOOTER +FD: net/minecraft/util/Crypt/f_216067_ net/minecraft/util/Crypt/RSA_PUBLIC_KEY_FOOTER +FD: net/minecraft/util/Crypt/f_244257_ net/minecraft/util/Crypt/SIGNATURE_BYTES +FD: net/minecraft/util/Crypt$SaltSignaturePair/f_216090_ net/minecraft/util/Crypt$SaltSignaturePair/EMPTY +FD: net/minecraft/util/Crypt$SaltSignaturePair/f_216091_ net/minecraft/util/Crypt$SaltSignaturePair/salt +FD: net/minecraft/util/Crypt$SaltSignaturePair/f_216092_ net/minecraft/util/Crypt$SaltSignaturePair/signature +FD: net/minecraft/util/Crypt$SaltSupplier/f_216110_ net/minecraft/util/Crypt$SaltSupplier/secureRandom +FD: net/minecraft/util/CsvOutput/f_13610_ net/minecraft/util/CsvOutput/output +FD: net/minecraft/util/CsvOutput/f_13611_ net/minecraft/util/CsvOutput/columnCount +FD: net/minecraft/util/CsvOutput/f_144618_ net/minecraft/util/CsvOutput/LINE_SEPARATOR +FD: net/minecraft/util/CsvOutput/f_144619_ net/minecraft/util/CsvOutput/FIELD_SEPARATOR +FD: net/minecraft/util/CsvOutput$Builder/f_13626_ net/minecraft/util/CsvOutput$Builder/headers +FD: net/minecraft/util/CubicSampler/f_130036_ net/minecraft/util/CubicSampler/GAUSSIAN_SAMPLE_KERNEL +FD: net/minecraft/util/CubicSampler/f_177979_ net/minecraft/util/CubicSampler/GAUSSIAN_SAMPLE_RADIUS +FD: net/minecraft/util/CubicSampler/f_177980_ net/minecraft/util/CubicSampler/GAUSSIAN_SAMPLE_BREADTH +FD: net/minecraft/util/CubicSpline$1Point/f_184273_ net/minecraft/util/CubicSpline$1Point/location +FD: net/minecraft/util/CubicSpline$1Point/f_184274_ net/minecraft/util/CubicSpline$1Point/value +FD: net/minecraft/util/CubicSpline$1Point/f_184275_ net/minecraft/util/CubicSpline$1Point/derivative +FD: net/minecraft/util/CubicSpline$Builder/f_184287_ net/minecraft/util/CubicSpline$Builder/coordinate +FD: net/minecraft/util/CubicSpline$Builder/f_184288_ net/minecraft/util/CubicSpline$Builder/valueTransformer +FD: net/minecraft/util/CubicSpline$Builder/f_184289_ net/minecraft/util/CubicSpline$Builder/locations +FD: net/minecraft/util/CubicSpline$Builder/f_184290_ net/minecraft/util/CubicSpline$Builder/values +FD: net/minecraft/util/CubicSpline$Builder/f_184291_ net/minecraft/util/CubicSpline$Builder/derivatives +FD: net/minecraft/util/CubicSpline$Constant/f_184308_ net/minecraft/util/CubicSpline$Constant/value +FD: net/minecraft/util/CubicSpline$Multipoint/f_184319_ net/minecraft/util/CubicSpline$Multipoint/coordinate +FD: net/minecraft/util/CubicSpline$Multipoint/f_184320_ net/minecraft/util/CubicSpline$Multipoint/locations +FD: net/minecraft/util/CubicSpline$Multipoint/f_184321_ net/minecraft/util/CubicSpline$Multipoint/values +FD: net/minecraft/util/CubicSpline$Multipoint/f_184322_ net/minecraft/util/CubicSpline$Multipoint/derivatives +FD: net/minecraft/util/CubicSpline$Multipoint/f_216124_ net/minecraft/util/CubicSpline$Multipoint/minValue +FD: net/minecraft/util/CubicSpline$Multipoint/f_216125_ net/minecraft/util/CubicSpline$Multipoint/maxValue +FD: net/minecraft/util/DebugBuffer/f_144620_ net/minecraft/util/DebugBuffer/data +FD: net/minecraft/util/DebugBuffer/f_144621_ net/minecraft/util/DebugBuffer/index +FD: net/minecraft/util/DependencySorter/f_283882_ net/minecraft/util/DependencySorter/contents +FD: net/minecraft/util/DirectoryLock/f_13632_ net/minecraft/util/DirectoryLock/lockFile +FD: net/minecraft/util/DirectoryLock/f_13633_ net/minecraft/util/DirectoryLock/lock +FD: net/minecraft/util/DirectoryLock/f_13634_ net/minecraft/util/DirectoryLock/DUMMY +FD: net/minecraft/util/DirectoryLock/f_144627_ net/minecraft/util/DirectoryLock/LOCK_FILE +FD: net/minecraft/util/ExceptionCollector/f_13650_ net/minecraft/util/ExceptionCollector/result +FD: net/minecraft/util/ExtraCodecs/f_144628_ net/minecraft/util/ExtraCodecs/NON_NEGATIVE_INT +FD: net/minecraft/util/ExtraCodecs/f_144629_ net/minecraft/util/ExtraCodecs/POSITIVE_INT +FD: net/minecraft/util/ExtraCodecs/f_184349_ net/minecraft/util/ExtraCodecs/POSITIVE_FLOAT +FD: net/minecraft/util/ExtraCodecs/f_216158_ net/minecraft/util/ExtraCodecs/PATTERN +FD: net/minecraft/util/ExtraCodecs/f_216159_ net/minecraft/util/ExtraCodecs/INSTANT_ISO8601 +FD: net/minecraft/util/ExtraCodecs/f_216160_ net/minecraft/util/ExtraCodecs/BASE64_STRING +FD: net/minecraft/util/ExtraCodecs/f_216161_ net/minecraft/util/ExtraCodecs/TAG_OR_ELEMENT_ID +FD: net/minecraft/util/ExtraCodecs/f_216162_ net/minecraft/util/ExtraCodecs/toOptionalLong +FD: net/minecraft/util/ExtraCodecs/f_216163_ net/minecraft/util/ExtraCodecs/fromOptionalLong +FD: net/minecraft/util/ExtraCodecs/f_252400_ net/minecraft/util/ExtraCodecs/JSON +FD: net/minecraft/util/ExtraCodecs/f_252419_ net/minecraft/util/ExtraCodecs/BIT_SET +FD: net/minecraft/util/ExtraCodecs/f_252432_ net/minecraft/util/ExtraCodecs/VECTOR3F +FD: net/minecraft/util/ExtraCodecs/f_252442_ net/minecraft/util/ExtraCodecs/COMPONENT +FD: net/minecraft/util/ExtraCodecs/f_252453_ net/minecraft/util/ExtraCodecs/GAME_PROFILE +FD: net/minecraft/util/ExtraCodecs/f_252500_ net/minecraft/util/ExtraCodecs/PROPERTY_MAP +FD: net/minecraft/util/ExtraCodecs/f_252501_ net/minecraft/util/ExtraCodecs/PROPERTY +FD: net/minecraft/util/ExtraCodecs/f_263723_ net/minecraft/util/ExtraCodecs/NON_EMPTY_STRING +FD: net/minecraft/util/ExtraCodecs/f_268538_ net/minecraft/util/ExtraCodecs/QUATERNIONF +FD: net/minecraft/util/ExtraCodecs/f_268572_ net/minecraft/util/ExtraCodecs/QUATERNIONF_COMPONENTS +FD: net/minecraft/util/ExtraCodecs/f_268748_ net/minecraft/util/ExtraCodecs/MATRIX4F +FD: net/minecraft/util/ExtraCodecs/f_268751_ net/minecraft/util/ExtraCodecs/AXISANGLE4F +FD: net/minecraft/util/ExtraCodecs/f_276686_ net/minecraft/util/ExtraCodecs/FLAT_COMPONENT +FD: net/minecraft/util/ExtraCodecs/f_283896_ net/minecraft/util/ExtraCodecs/CODEPOINT +FD: net/minecraft/util/ExtraCodecs$1/f_184462_ net/minecraft/util/ExtraCodecs$1/val$value +FD: net/minecraft/util/ExtraCodecs$1ContextRetrievalCodec/f_203986_ net/minecraft/util/ExtraCodecs$1ContextRetrievalCodec/val$getter +FD: net/minecraft/util/ExtraCodecs$2/f_184474_ net/minecraft/util/ExtraCodecs$2/val$compressed +FD: net/minecraft/util/ExtraCodecs$2/f_184475_ net/minecraft/util/ExtraCodecs$2/val$normal +FD: net/minecraft/util/ExtraCodecs$3/f_184487_ net/minecraft/util/ExtraCodecs$3/val$decodeLifecycle +FD: net/minecraft/util/ExtraCodecs$3/f_184488_ net/minecraft/util/ExtraCodecs$3/val$encodeLifecycle +FD: net/minecraft/util/ExtraCodecs$4/f_216189_ net/minecraft/util/ExtraCodecs$4/val$codec +FD: net/minecraft/util/ExtraCodecs$EitherCodec/f_184505_ net/minecraft/util/ExtraCodecs$EitherCodec/first +FD: net/minecraft/util/ExtraCodecs$EitherCodec/f_184506_ net/minecraft/util/ExtraCodecs$EitherCodec/second +FD: net/minecraft/util/ExtraCodecs$LazyInitializedCodec/f_184540_ net/minecraft/util/ExtraCodecs$LazyInitializedCodec/delegate +FD: net/minecraft/util/ExtraCodecs$TagOrElementLocation/f_216195_ net/minecraft/util/ExtraCodecs$TagOrElementLocation/id +FD: net/minecraft/util/ExtraCodecs$TagOrElementLocation/f_216196_ net/minecraft/util/ExtraCodecs$TagOrElementLocation/tag +FD: net/minecraft/util/ExtraCodecs$XorCodec/f_144657_ net/minecraft/util/ExtraCodecs$XorCodec/first +FD: net/minecraft/util/ExtraCodecs$XorCodec/f_144658_ net/minecraft/util/ExtraCodecs$XorCodec/second +FD: net/minecraft/util/FastBufferedInputStream/f_196560_ net/minecraft/util/FastBufferedInputStream/DEFAULT_BUFFER_SIZE +FD: net/minecraft/util/FastBufferedInputStream/f_196561_ net/minecraft/util/FastBufferedInputStream/in +FD: net/minecraft/util/FastBufferedInputStream/f_196562_ net/minecraft/util/FastBufferedInputStream/buffer +FD: net/minecraft/util/FastBufferedInputStream/f_196563_ net/minecraft/util/FastBufferedInputStream/limit +FD: net/minecraft/util/FastBufferedInputStream/f_196564_ net/minecraft/util/FastBufferedInputStream/position +FD: net/minecraft/util/FileZipper/f_144691_ net/minecraft/util/FileZipper/LOGGER +FD: net/minecraft/util/FileZipper/f_144692_ net/minecraft/util/FileZipper/outputFile +FD: net/minecraft/util/FileZipper/f_144693_ net/minecraft/util/FileZipper/tempFile +FD: net/minecraft/util/FileZipper/f_144694_ net/minecraft/util/FileZipper/fs +FD: net/minecraft/util/FormattedCharSequence/f_13691_ net/minecraft/util/FormattedCharSequence/EMPTY +FD: net/minecraft/util/FrameTimer/f_13749_ net/minecraft/util/FrameTimer/loggedTimes +FD: net/minecraft/util/FrameTimer/f_13750_ net/minecraft/util/FrameTimer/logStart +FD: net/minecraft/util/FrameTimer/f_13751_ net/minecraft/util/FrameTimer/logLength +FD: net/minecraft/util/FrameTimer/f_13752_ net/minecraft/util/FrameTimer/logEnd +FD: net/minecraft/util/FrameTimer/f_144731_ net/minecraft/util/FrameTimer/LOGGING_LENGTH +FD: net/minecraft/util/FutureChain/f_241610_ net/minecraft/util/FutureChain/LOGGER +FD: net/minecraft/util/FutureChain/f_241623_ net/minecraft/util/FutureChain/head +FD: net/minecraft/util/FutureChain/f_243910_ net/minecraft/util/FutureChain/closed +FD: net/minecraft/util/FutureChain/f_244461_ net/minecraft/util/FutureChain/checkedExecutor +FD: net/minecraft/util/GsonHelper/f_13765_ net/minecraft/util/GsonHelper/GSON +FD: net/minecraft/util/HttpUtil/f_13936_ net/minecraft/util/HttpUtil/DOWNLOAD_EXECUTOR +FD: net/minecraft/util/HttpUtil/f_13937_ net/minecraft/util/HttpUtil/LOGGER +FD: net/minecraft/util/InclusiveRange/f_184562_ net/minecraft/util/InclusiveRange/INT +FD: net/minecraft/util/InclusiveRange/f_184563_ net/minecraft/util/InclusiveRange/minInclusive +FD: net/minecraft/util/InclusiveRange/f_184564_ net/minecraft/util/InclusiveRange/maxInclusive +FD: net/minecraft/util/KeyDispatchDataCodec/f_216232_ net/minecraft/util/KeyDispatchDataCodec/codec +FD: net/minecraft/util/LazyLoadedValue/f_13967_ net/minecraft/util/LazyLoadedValue/factory +FD: net/minecraft/util/LinearCongruentialGenerator/f_144818_ net/minecraft/util/LinearCongruentialGenerator/MULTIPLIER +FD: net/minecraft/util/LinearCongruentialGenerator/f_144819_ net/minecraft/util/LinearCongruentialGenerator/INCREMENT +FD: net/minecraft/util/LowerCaseEnumTypeAdapterFactory$1/f_13984_ net/minecraft/util/LowerCaseEnumTypeAdapterFactory$1/val$lowercaseToConstant +FD: net/minecraft/util/LowerCaseEnumTypeAdapterFactory$1/f_13985_ net/minecraft/util/LowerCaseEnumTypeAdapterFactory$1/this$0 +FD: net/minecraft/util/MemoryReserve/f_182324_ net/minecraft/util/MemoryReserve/reserve +FD: net/minecraft/util/ModCheck/f_184592_ net/minecraft/util/ModCheck/confidence +FD: net/minecraft/util/ModCheck/f_184593_ net/minecraft/util/ModCheck/description +FD: net/minecraft/util/ModCheck$Confidence/$VALUES net/minecraft/util/ModCheck$Confidence/$VALUES +FD: net/minecraft/util/ModCheck$Confidence/DEFINITELY net/minecraft/util/ModCheck$Confidence/DEFINITELY +FD: net/minecraft/util/ModCheck$Confidence/PROBABLY_NOT net/minecraft/util/ModCheck$Confidence/PROBABLY_NOT +FD: net/minecraft/util/ModCheck$Confidence/VERY_LIKELY net/minecraft/util/ModCheck$Confidence/VERY_LIKELY +FD: net/minecraft/util/ModCheck$Confidence/f_184615_ net/minecraft/util/ModCheck$Confidence/description +FD: net/minecraft/util/ModCheck$Confidence/f_184616_ net/minecraft/util/ModCheck$Confidence/shouldReportAsModified +FD: net/minecraft/util/Mth/f_13994_ net/minecraft/util/Mth/SQRT_OF_TWO +FD: net/minecraft/util/Mth/f_13995_ net/minecraft/util/Mth/SIN +FD: net/minecraft/util/Mth/f_13996_ net/minecraft/util/Mth/RANDOM +FD: net/minecraft/util/Mth/f_13997_ net/minecraft/util/Mth/MULTIPLY_DE_BRUIJN_BIT_POSITION +FD: net/minecraft/util/Mth/f_13998_ net/minecraft/util/Mth/FRAC_BIAS +FD: net/minecraft/util/Mth/f_13999_ net/minecraft/util/Mth/ASIN_TAB +FD: net/minecraft/util/Mth/f_14000_ net/minecraft/util/Mth/COS_TAB +FD: net/minecraft/util/Mth/f_144830_ net/minecraft/util/Mth/PI +FD: net/minecraft/util/Mth/f_144831_ net/minecraft/util/Mth/HALF_PI +FD: net/minecraft/util/Mth/f_144832_ net/minecraft/util/Mth/TWO_PI +FD: net/minecraft/util/Mth/f_144833_ net/minecraft/util/Mth/DEG_TO_RAD +FD: net/minecraft/util/Mth/f_144834_ net/minecraft/util/Mth/RAD_TO_DEG +FD: net/minecraft/util/Mth/f_144835_ net/minecraft/util/Mth/EPSILON +FD: net/minecraft/util/Mth/f_144838_ net/minecraft/util/Mth/UUID_VERSION +FD: net/minecraft/util/Mth/f_144839_ net/minecraft/util/Mth/UUID_VERSION_TYPE_4 +FD: net/minecraft/util/Mth/f_144840_ net/minecraft/util/Mth/UUID_VARIANT +FD: net/minecraft/util/Mth/f_144841_ net/minecraft/util/Mth/UUID_VARIANT_2 +FD: net/minecraft/util/Mth/f_144842_ net/minecraft/util/Mth/SIN_SCALE +FD: net/minecraft/util/Mth/f_144843_ net/minecraft/util/Mth/ONE_SIXTH +FD: net/minecraft/util/Mth/f_144844_ net/minecraft/util/Mth/FRAC_EXP +FD: net/minecraft/util/Mth/f_144845_ net/minecraft/util/Mth/LUT_SIZE +FD: net/minecraft/util/NativeModuleLister/f_184659_ net/minecraft/util/NativeModuleLister/LOGGER +FD: net/minecraft/util/NativeModuleLister/f_184660_ net/minecraft/util/NativeModuleLister/LANG_MASK +FD: net/minecraft/util/NativeModuleLister/f_184661_ net/minecraft/util/NativeModuleLister/DEFAULT_LANG +FD: net/minecraft/util/NativeModuleLister/f_184662_ net/minecraft/util/NativeModuleLister/CODEPAGE_MASK +FD: net/minecraft/util/NativeModuleLister/f_184663_ net/minecraft/util/NativeModuleLister/DEFAULT_CODEPAGE +FD: net/minecraft/util/NativeModuleLister$NativeModuleInfo/f_184690_ net/minecraft/util/NativeModuleLister$NativeModuleInfo/name +FD: net/minecraft/util/NativeModuleLister$NativeModuleInfo/f_184691_ net/minecraft/util/NativeModuleLister$NativeModuleInfo/version +FD: net/minecraft/util/NativeModuleLister$NativeModuleVersion/f_184698_ net/minecraft/util/NativeModuleLister$NativeModuleVersion/description +FD: net/minecraft/util/NativeModuleLister$NativeModuleVersion/f_184699_ net/minecraft/util/NativeModuleLister$NativeModuleVersion/version +FD: net/minecraft/util/NativeModuleLister$NativeModuleVersion/f_184700_ net/minecraft/util/NativeModuleLister$NativeModuleVersion/company +FD: net/minecraft/util/RandomSource/f_216326_ net/minecraft/util/RandomSource/GAUSSIAN_SPREAD_FACTOR +FD: net/minecraft/util/ResourceLocationPattern/f_260470_ net/minecraft/util/ResourceLocationPattern/CODEC +FD: net/minecraft/util/ResourceLocationPattern/f_260579_ net/minecraft/util/ResourceLocationPattern/pathPattern +FD: net/minecraft/util/ResourceLocationPattern/f_260589_ net/minecraft/util/ResourceLocationPattern/namespacePattern +FD: net/minecraft/util/ResourceLocationPattern/f_260644_ net/minecraft/util/ResourceLocationPattern/pathPredicate +FD: net/minecraft/util/ResourceLocationPattern/f_260666_ net/minecraft/util/ResourceLocationPattern/namespacePredicate +FD: net/minecraft/util/ResourceLocationPattern/f_260730_ net/minecraft/util/ResourceLocationPattern/locationPredicate +FD: net/minecraft/util/SegmentedAnglePrecision/f_263695_ net/minecraft/util/SegmentedAnglePrecision/degreeToAngle +FD: net/minecraft/util/SegmentedAnglePrecision/f_263790_ net/minecraft/util/SegmentedAnglePrecision/mask +FD: net/minecraft/util/SegmentedAnglePrecision/f_263801_ net/minecraft/util/SegmentedAnglePrecision/precision +FD: net/minecraft/util/SegmentedAnglePrecision/f_263823_ net/minecraft/util/SegmentedAnglePrecision/angleToDegree +FD: net/minecraft/util/SignatureValidator/f_216348_ net/minecraft/util/SignatureValidator/NO_VALIDATION +FD: net/minecraft/util/SignatureValidator/f_216349_ net/minecraft/util/SignatureValidator/LOGGER +FD: net/minecraft/util/Signer/f_216381_ net/minecraft/util/Signer/LOGGER +FD: net/minecraft/util/SimpleBitStorage/f_184706_ net/minecraft/util/SimpleBitStorage/MAGIC +FD: net/minecraft/util/SimpleBitStorage/f_184707_ net/minecraft/util/SimpleBitStorage/data +FD: net/minecraft/util/SimpleBitStorage/f_184708_ net/minecraft/util/SimpleBitStorage/bits +FD: net/minecraft/util/SimpleBitStorage/f_184709_ net/minecraft/util/SimpleBitStorage/mask +FD: net/minecraft/util/SimpleBitStorage/f_184710_ net/minecraft/util/SimpleBitStorage/size +FD: net/minecraft/util/SimpleBitStorage/f_184711_ net/minecraft/util/SimpleBitStorage/valuesPerLong +FD: net/minecraft/util/SimpleBitStorage/f_184712_ net/minecraft/util/SimpleBitStorage/divideMul +FD: net/minecraft/util/SimpleBitStorage/f_184713_ net/minecraft/util/SimpleBitStorage/divideAdd +FD: net/minecraft/util/SimpleBitStorage/f_184714_ net/minecraft/util/SimpleBitStorage/divideShift +FD: net/minecraft/util/SingleKeyCache/f_268589_ net/minecraft/util/SingleKeyCache/computeValue +FD: net/minecraft/util/SingleKeyCache/f_268622_ net/minecraft/util/SingleKeyCache/cachedValue +FD: net/minecraft/util/SingleKeyCache/f_268728_ net/minecraft/util/SingleKeyCache/cacheKey +FD: net/minecraft/util/SmoothDouble/f_14232_ net/minecraft/util/SmoothDouble/targetValue +FD: net/minecraft/util/SmoothDouble/f_14233_ net/minecraft/util/SmoothDouble/remainingValue +FD: net/minecraft/util/SmoothDouble/f_14234_ net/minecraft/util/SmoothDouble/lastAmount +FD: net/minecraft/util/SortedArraySet/f_14240_ net/minecraft/util/SortedArraySet/comparator +FD: net/minecraft/util/SortedArraySet/f_14241_ net/minecraft/util/SortedArraySet/contents +FD: net/minecraft/util/SortedArraySet/f_14242_ net/minecraft/util/SortedArraySet/size +FD: net/minecraft/util/SortedArraySet/f_144974_ net/minecraft/util/SortedArraySet/DEFAULT_INITIAL_CAPACITY +FD: net/minecraft/util/SortedArraySet$ArrayIterator/f_14287_ net/minecraft/util/SortedArraySet$ArrayIterator/this$0 +FD: net/minecraft/util/SortedArraySet$ArrayIterator/f_14288_ net/minecraft/util/SortedArraySet$ArrayIterator/index +FD: net/minecraft/util/SortedArraySet$ArrayIterator/f_14289_ net/minecraft/util/SortedArraySet$ArrayIterator/last +FD: net/minecraft/util/SpawnUtil$Strategy/f_216412_ net/minecraft/util/SpawnUtil$Strategy/LEGACY_IRON_GOLEM +FD: net/minecraft/util/SpawnUtil$Strategy/f_216413_ net/minecraft/util/SpawnUtil$Strategy/ON_TOP_OF_COLLIDER +FD: net/minecraft/util/StringDecomposer/f_14298_ net/minecraft/util/StringDecomposer/STOP_ITERATION +FD: net/minecraft/util/StringDecomposer/f_144984_ net/minecraft/util/StringDecomposer/REPLACEMENT_CHAR +FD: net/minecraft/util/StringRepresentable/f_216433_ net/minecraft/util/StringRepresentable/PRE_BUILT_MAP_THRESHOLD +FD: net/minecraft/util/StringRepresentable$1/f_184754_ net/minecraft/util/StringRepresentable$1/val$values +FD: net/minecraft/util/StringRepresentable$EnumCodec/f_216444_ net/minecraft/util/StringRepresentable$EnumCodec/codec +FD: net/minecraft/util/StringRepresentable$EnumCodec/f_216445_ net/minecraft/util/StringRepresentable$EnumCodec/resolver +FD: net/minecraft/util/StringUtil/f_14402_ net/minecraft/util/StringUtil/STRIP_COLOR_PATTERN +FD: net/minecraft/util/StringUtil/f_144995_ net/minecraft/util/StringUtil/LINE_PATTERN +FD: net/minecraft/util/StringUtil/f_144996_ net/minecraft/util/StringUtil/LINE_END_PATTERN +FD: net/minecraft/util/TaskChainer/f_241683_ net/minecraft/util/TaskChainer/LOGGER +FD: net/minecraft/util/ThreadingDetector/f_199407_ net/minecraft/util/ThreadingDetector/LOGGER +FD: net/minecraft/util/ThreadingDetector/f_199408_ net/minecraft/util/ThreadingDetector/name +FD: net/minecraft/util/ThreadingDetector/f_199409_ net/minecraft/util/ThreadingDetector/lock +FD: net/minecraft/util/ThreadingDetector/f_199410_ net/minecraft/util/ThreadingDetector/stackTraceLock +FD: net/minecraft/util/ThreadingDetector/f_199411_ net/minecraft/util/ThreadingDetector/threadThatFailedToAcquire +FD: net/minecraft/util/ThreadingDetector/f_199412_ net/minecraft/util/ThreadingDetector/fullException +FD: net/minecraft/util/TimeUtil/f_145016_ net/minecraft/util/TimeUtil/NANOSECONDS_PER_SECOND +FD: net/minecraft/util/TimeUtil/f_145017_ net/minecraft/util/TimeUtil/NANOSECONDS_PER_MILLISECOND +FD: net/minecraft/util/ToFloatFunction/f_216471_ net/minecraft/util/ToFloatFunction/IDENTITY +FD: net/minecraft/util/ToFloatFunction$1/f_216479_ net/minecraft/util/ToFloatFunction$1/val$function +FD: net/minecraft/util/ToFloatFunction$2/f_216488_ net/minecraft/util/ToFloatFunction$2/val$outer +FD: net/minecraft/util/ToFloatFunction$2/f_216489_ net/minecraft/util/ToFloatFunction$2/val$function +FD: net/minecraft/util/ToFloatFunction$2/f_216490_ net/minecraft/util/ToFloatFunction$2/this$0 +FD: net/minecraft/util/Tuple/f_14413_ net/minecraft/util/Tuple/a +FD: net/minecraft/util/Tuple/f_14414_ net/minecraft/util/Tuple/b +FD: net/minecraft/util/Unit/$VALUES net/minecraft/util/Unit/$VALUES +FD: net/minecraft/util/Unit/INSTANCE net/minecraft/util/Unit/INSTANCE +FD: net/minecraft/util/ZeroBitStorage/f_184787_ net/minecraft/util/ZeroBitStorage/RAW +FD: net/minecraft/util/ZeroBitStorage/f_184788_ net/minecraft/util/ZeroBitStorage/size +FD: net/minecraft/util/datafix/DataFixTypes/$VALUES net/minecraft/util/datafix/DataFixTypes/$VALUES +FD: net/minecraft/util/datafix/DataFixTypes/ADVANCEMENTS net/minecraft/util/datafix/DataFixTypes/ADVANCEMENTS +FD: net/minecraft/util/datafix/DataFixTypes/CHUNK net/minecraft/util/datafix/DataFixTypes/CHUNK +FD: net/minecraft/util/datafix/DataFixTypes/ENTITY_CHUNK net/minecraft/util/datafix/DataFixTypes/ENTITY_CHUNK +FD: net/minecraft/util/datafix/DataFixTypes/HOTBAR net/minecraft/util/datafix/DataFixTypes/HOTBAR +FD: net/minecraft/util/datafix/DataFixTypes/LEVEL net/minecraft/util/datafix/DataFixTypes/LEVEL +FD: net/minecraft/util/datafix/DataFixTypes/OPTIONS net/minecraft/util/datafix/DataFixTypes/OPTIONS +FD: net/minecraft/util/datafix/DataFixTypes/PLAYER net/minecraft/util/datafix/DataFixTypes/PLAYER +FD: net/minecraft/util/datafix/DataFixTypes/POI_CHUNK net/minecraft/util/datafix/DataFixTypes/POI_CHUNK +FD: net/minecraft/util/datafix/DataFixTypes/SAVED_DATA net/minecraft/util/datafix/DataFixTypes/SAVED_DATA +FD: net/minecraft/util/datafix/DataFixTypes/STATS net/minecraft/util/datafix/DataFixTypes/STATS +FD: net/minecraft/util/datafix/DataFixTypes/STRUCTURE net/minecraft/util/datafix/DataFixTypes/STRUCTURE +FD: net/minecraft/util/datafix/DataFixTypes/WORLD_GEN_SETTINGS net/minecraft/util/datafix/DataFixTypes/WORLD_GEN_SETTINGS +FD: net/minecraft/util/datafix/DataFixTypes/f_14497_ net/minecraft/util/datafix/DataFixTypes/type +FD: net/minecraft/util/datafix/DataFixTypes/f_273922_ net/minecraft/util/datafix/DataFixTypes/TYPES_FOR_LEVEL_LIST +FD: net/minecraft/util/datafix/DataFixers/f_14508_ net/minecraft/util/datafix/DataFixers/SAME +FD: net/minecraft/util/datafix/DataFixers/f_14509_ net/minecraft/util/datafix/DataFixers/SAME_NAMESPACED +FD: net/minecraft/util/datafix/DataFixers/f_216512_ net/minecraft/util/datafix/DataFixers/BLENDING_VERSION +FD: net/minecraft/util/datafix/DataFixers/f_216514_ net/minecraft/util/datafix/DataFixers/dataFixer +FD: net/minecraft/util/datafix/PackedBitStorage/f_145044_ net/minecraft/util/datafix/PackedBitStorage/BIT_TO_LONG_SHIFT +FD: net/minecraft/util/datafix/PackedBitStorage/f_14550_ net/minecraft/util/datafix/PackedBitStorage/data +FD: net/minecraft/util/datafix/PackedBitStorage/f_14551_ net/minecraft/util/datafix/PackedBitStorage/bits +FD: net/minecraft/util/datafix/PackedBitStorage/f_14552_ net/minecraft/util/datafix/PackedBitStorage/mask +FD: net/minecraft/util/datafix/PackedBitStorage/f_14553_ net/minecraft/util/datafix/PackedBitStorage/size +FD: net/minecraft/util/datafix/fixes/AbstractPoiSectionFix/f_216534_ net/minecraft/util/datafix/fixes/AbstractPoiSectionFix/name +FD: net/minecraft/util/datafix/fixes/AbstractUUIDFix/f_14569_ net/minecraft/util/datafix/fixes/AbstractUUIDFix/typeReference +FD: net/minecraft/util/datafix/fixes/AddFlagIfNotPresentFix/f_184805_ net/minecraft/util/datafix/fixes/AddFlagIfNotPresentFix/name +FD: net/minecraft/util/datafix/fixes/AddFlagIfNotPresentFix/f_184806_ net/minecraft/util/datafix/fixes/AddFlagIfNotPresentFix/flagValue +FD: net/minecraft/util/datafix/fixes/AddFlagIfNotPresentFix/f_184807_ net/minecraft/util/datafix/fixes/AddFlagIfNotPresentFix/flagKey +FD: net/minecraft/util/datafix/fixes/AddFlagIfNotPresentFix/f_184808_ net/minecraft/util/datafix/fixes/AddFlagIfNotPresentFix/typeReference +FD: net/minecraft/util/datafix/fixes/AddNewChoices/f_14625_ net/minecraft/util/datafix/fixes/AddNewChoices/name +FD: net/minecraft/util/datafix/fixes/AddNewChoices/f_14626_ net/minecraft/util/datafix/fixes/AddNewChoices/type +FD: net/minecraft/util/datafix/fixes/AdvancementsFix/f_14642_ net/minecraft/util/datafix/fixes/AdvancementsFix/RENAMES +FD: net/minecraft/util/datafix/fixes/AdvancementsRenameFix/f_14649_ net/minecraft/util/datafix/fixes/AdvancementsRenameFix/name +FD: net/minecraft/util/datafix/fixes/AdvancementsRenameFix/f_14650_ net/minecraft/util/datafix/fixes/AdvancementsRenameFix/renamer +FD: net/minecraft/util/datafix/fixes/AttributesRename/f_14668_ net/minecraft/util/datafix/fixes/AttributesRename/RENAMES +FD: net/minecraft/util/datafix/fixes/BiomeFix/f_14730_ net/minecraft/util/datafix/fixes/BiomeFix/BIOMES +FD: net/minecraft/util/datafix/fixes/BitStorageAlignFix/f_145092_ net/minecraft/util/datafix/fixes/BitStorageAlignFix/BIT_TO_LONG_SHIFT +FD: net/minecraft/util/datafix/fixes/BitStorageAlignFix/f_145093_ net/minecraft/util/datafix/fixes/BitStorageAlignFix/SECTION_WIDTH +FD: net/minecraft/util/datafix/fixes/BitStorageAlignFix/f_145094_ net/minecraft/util/datafix/fixes/BitStorageAlignFix/SECTION_HEIGHT +FD: net/minecraft/util/datafix/fixes/BitStorageAlignFix/f_145095_ net/minecraft/util/datafix/fixes/BitStorageAlignFix/SECTION_SIZE +FD: net/minecraft/util/datafix/fixes/BitStorageAlignFix/f_145096_ net/minecraft/util/datafix/fixes/BitStorageAlignFix/HEIGHTMAP_BITS +FD: net/minecraft/util/datafix/fixes/BitStorageAlignFix/f_145097_ net/minecraft/util/datafix/fixes/BitStorageAlignFix/HEIGHTMAP_SIZE +FD: net/minecraft/util/datafix/fixes/BlendingDataFix/f_216557_ net/minecraft/util/datafix/fixes/BlendingDataFix/name +FD: net/minecraft/util/datafix/fixes/BlendingDataFix/f_216558_ net/minecraft/util/datafix/fixes/BlendingDataFix/STATUSES_TO_SKIP_BLENDING +FD: net/minecraft/util/datafix/fixes/BlockEntityIdFix/f_14827_ net/minecraft/util/datafix/fixes/BlockEntityIdFix/ID_MAP +FD: net/minecraft/util/datafix/fixes/BlockEntityRenameFix/f_276461_ net/minecraft/util/datafix/fixes/BlockEntityRenameFix/nameChangeLookup +FD: net/minecraft/util/datafix/fixes/BlockEntityRenameFix/f_276471_ net/minecraft/util/datafix/fixes/BlockEntityRenameFix/name +FD: net/minecraft/util/datafix/fixes/BlockEntitySignTextStrictJsonFix/f_14861_ net/minecraft/util/datafix/fixes/BlockEntitySignTextStrictJsonFix/GSON +FD: net/minecraft/util/datafix/fixes/BlockRenameFix/f_14908_ net/minecraft/util/datafix/fixes/BlockRenameFix/name +FD: net/minecraft/util/datafix/fixes/BlockRenameFix$1/f_14926_ net/minecraft/util/datafix/fixes/BlockRenameFix$1/val$fixBlock +FD: net/minecraft/util/datafix/fixes/BlockRenameFixWithJigsaw/f_145148_ net/minecraft/util/datafix/fixes/BlockRenameFixWithJigsaw/name +FD: net/minecraft/util/datafix/fixes/BlockRenameFixWithJigsaw$1/f_145170_ net/minecraft/util/datafix/fixes/BlockRenameFixWithJigsaw$1/val$fixBlock +FD: net/minecraft/util/datafix/fixes/BlockStateData/f_145177_ net/minecraft/util/datafix/fixes/BlockStateData/FILTER_ME +FD: net/minecraft/util/datafix/fixes/BlockStateData/f_14933_ net/minecraft/util/datafix/fixes/BlockStateData/LOGGER +FD: net/minecraft/util/datafix/fixes/BlockStateData/f_14934_ net/minecraft/util/datafix/fixes/BlockStateData/MAP +FD: net/minecraft/util/datafix/fixes/BlockStateData/f_14935_ net/minecraft/util/datafix/fixes/BlockStateData/BLOCK_DEFAULTS +FD: net/minecraft/util/datafix/fixes/BlockStateData/f_14936_ net/minecraft/util/datafix/fixes/BlockStateData/ID_BY_OLD +FD: net/minecraft/util/datafix/fixes/BlockStateData/f_14937_ net/minecraft/util/datafix/fixes/BlockStateData/ID_BY_OLD_NAME +FD: net/minecraft/util/datafix/fixes/CavesAndCliffsRenames/f_184821_ net/minecraft/util/datafix/fixes/CavesAndCliffsRenames/RENAMES +FD: net/minecraft/util/datafix/fixes/ChunkHeightAndBiomeFix/f_184843_ net/minecraft/util/datafix/fixes/ChunkHeightAndBiomeFix/DATAFIXER_CONTEXT_TAG +FD: net/minecraft/util/datafix/fixes/ChunkHeightAndBiomeFix/f_184844_ net/minecraft/util/datafix/fixes/ChunkHeightAndBiomeFix/DEFAULT_BIOME +FD: net/minecraft/util/datafix/fixes/ChunkHeightAndBiomeFix/f_184845_ net/minecraft/util/datafix/fixes/ChunkHeightAndBiomeFix/NAME +FD: net/minecraft/util/datafix/fixes/ChunkHeightAndBiomeFix/f_184846_ net/minecraft/util/datafix/fixes/ChunkHeightAndBiomeFix/OLD_SECTION_COUNT +FD: net/minecraft/util/datafix/fixes/ChunkHeightAndBiomeFix/f_184847_ net/minecraft/util/datafix/fixes/ChunkHeightAndBiomeFix/NEW_SECTION_COUNT +FD: net/minecraft/util/datafix/fixes/ChunkHeightAndBiomeFix/f_184848_ net/minecraft/util/datafix/fixes/ChunkHeightAndBiomeFix/NEW_MIN_SECTION_Y +FD: net/minecraft/util/datafix/fixes/ChunkHeightAndBiomeFix/f_184850_ net/minecraft/util/datafix/fixes/ChunkHeightAndBiomeFix/HEIGHTMAP_BITS +FD: net/minecraft/util/datafix/fixes/ChunkHeightAndBiomeFix/f_184851_ net/minecraft/util/datafix/fixes/ChunkHeightAndBiomeFix/HEIGHTMAP_MASK +FD: net/minecraft/util/datafix/fixes/ChunkHeightAndBiomeFix/f_184852_ net/minecraft/util/datafix/fixes/ChunkHeightAndBiomeFix/HEIGHTMAP_OFFSET +FD: net/minecraft/util/datafix/fixes/ChunkHeightAndBiomeFix/f_184853_ net/minecraft/util/datafix/fixes/ChunkHeightAndBiomeFix/HEIGHTMAP_TYPES +FD: net/minecraft/util/datafix/fixes/ChunkHeightAndBiomeFix/f_184854_ net/minecraft/util/datafix/fixes/ChunkHeightAndBiomeFix/STATUS_IS_OR_AFTER_SURFACE +FD: net/minecraft/util/datafix/fixes/ChunkHeightAndBiomeFix/f_184855_ net/minecraft/util/datafix/fixes/ChunkHeightAndBiomeFix/STATUS_IS_OR_AFTER_NOISE +FD: net/minecraft/util/datafix/fixes/ChunkHeightAndBiomeFix/f_184856_ net/minecraft/util/datafix/fixes/ChunkHeightAndBiomeFix/BLOCKS_BEFORE_FEATURE_STATUS +FD: net/minecraft/util/datafix/fixes/ChunkHeightAndBiomeFix/f_184857_ net/minecraft/util/datafix/fixes/ChunkHeightAndBiomeFix/BIOME_CONTAINER_LAYER_SIZE +FD: net/minecraft/util/datafix/fixes/ChunkHeightAndBiomeFix/f_184858_ net/minecraft/util/datafix/fixes/ChunkHeightAndBiomeFix/BIOME_CONTAINER_SIZE +FD: net/minecraft/util/datafix/fixes/ChunkHeightAndBiomeFix/f_184859_ net/minecraft/util/datafix/fixes/ChunkHeightAndBiomeFix/BIOME_CONTAINER_TOP_LAYER_OFFSET +FD: net/minecraft/util/datafix/fixes/ChunkHeightAndBiomeFix/f_184860_ net/minecraft/util/datafix/fixes/ChunkHeightAndBiomeFix/BIOMES_BY_ID +FD: net/minecraft/util/datafix/fixes/ChunkHeightAndBiomeFix/f_196581_ net/minecraft/util/datafix/fixes/ChunkHeightAndBiomeFix/BLOCKS_PER_SECTION +FD: net/minecraft/util/datafix/fixes/ChunkHeightAndBiomeFix/f_196582_ net/minecraft/util/datafix/fixes/ChunkHeightAndBiomeFix/LONGS_PER_SECTION +FD: net/minecraft/util/datafix/fixes/ChunkPalettedStorageFix/f_145211_ net/minecraft/util/datafix/fixes/ChunkPalettedStorageFix/SIZE +FD: net/minecraft/util/datafix/fixes/ChunkPalettedStorageFix/f_145212_ net/minecraft/util/datafix/fixes/ChunkPalettedStorageFix/NORTH_WEST_MASK +FD: net/minecraft/util/datafix/fixes/ChunkPalettedStorageFix/f_145213_ net/minecraft/util/datafix/fixes/ChunkPalettedStorageFix/WEST_MASK +FD: net/minecraft/util/datafix/fixes/ChunkPalettedStorageFix/f_145214_ net/minecraft/util/datafix/fixes/ChunkPalettedStorageFix/SOUTH_WEST_MASK +FD: net/minecraft/util/datafix/fixes/ChunkPalettedStorageFix/f_145215_ net/minecraft/util/datafix/fixes/ChunkPalettedStorageFix/SOUTH_MASK +FD: net/minecraft/util/datafix/fixes/ChunkPalettedStorageFix/f_145216_ net/minecraft/util/datafix/fixes/ChunkPalettedStorageFix/SOUTH_EAST_MASK +FD: net/minecraft/util/datafix/fixes/ChunkPalettedStorageFix/f_145217_ net/minecraft/util/datafix/fixes/ChunkPalettedStorageFix/EAST_MASK +FD: net/minecraft/util/datafix/fixes/ChunkPalettedStorageFix/f_145218_ net/minecraft/util/datafix/fixes/ChunkPalettedStorageFix/NORTH_EAST_MASK +FD: net/minecraft/util/datafix/fixes/ChunkPalettedStorageFix/f_145219_ net/minecraft/util/datafix/fixes/ChunkPalettedStorageFix/NORTH_MASK +FD: net/minecraft/util/datafix/fixes/ChunkPalettedStorageFix/f_15035_ net/minecraft/util/datafix/fixes/ChunkPalettedStorageFix/LOGGER +FD: net/minecraft/util/datafix/fixes/ChunkPalettedStorageFix/f_15036_ net/minecraft/util/datafix/fixes/ChunkPalettedStorageFix/VIRTUAL +FD: net/minecraft/util/datafix/fixes/ChunkPalettedStorageFix/f_15037_ net/minecraft/util/datafix/fixes/ChunkPalettedStorageFix/FIX +FD: net/minecraft/util/datafix/fixes/ChunkPalettedStorageFix/f_15038_ net/minecraft/util/datafix/fixes/ChunkPalettedStorageFix/PUMPKIN +FD: net/minecraft/util/datafix/fixes/ChunkPalettedStorageFix/f_15039_ net/minecraft/util/datafix/fixes/ChunkPalettedStorageFix/SNOWY_PODZOL +FD: net/minecraft/util/datafix/fixes/ChunkPalettedStorageFix/f_15040_ net/minecraft/util/datafix/fixes/ChunkPalettedStorageFix/SNOWY_GRASS +FD: net/minecraft/util/datafix/fixes/ChunkPalettedStorageFix/f_15041_ net/minecraft/util/datafix/fixes/ChunkPalettedStorageFix/SNOWY_MYCELIUM +FD: net/minecraft/util/datafix/fixes/ChunkPalettedStorageFix/f_15042_ net/minecraft/util/datafix/fixes/ChunkPalettedStorageFix/UPPER_SUNFLOWER +FD: net/minecraft/util/datafix/fixes/ChunkPalettedStorageFix/f_15043_ net/minecraft/util/datafix/fixes/ChunkPalettedStorageFix/UPPER_LILAC +FD: net/minecraft/util/datafix/fixes/ChunkPalettedStorageFix/f_15044_ net/minecraft/util/datafix/fixes/ChunkPalettedStorageFix/UPPER_TALL_GRASS +FD: net/minecraft/util/datafix/fixes/ChunkPalettedStorageFix/f_15045_ net/minecraft/util/datafix/fixes/ChunkPalettedStorageFix/UPPER_LARGE_FERN +FD: net/minecraft/util/datafix/fixes/ChunkPalettedStorageFix/f_15046_ net/minecraft/util/datafix/fixes/ChunkPalettedStorageFix/UPPER_ROSE_BUSH +FD: net/minecraft/util/datafix/fixes/ChunkPalettedStorageFix/f_15047_ net/minecraft/util/datafix/fixes/ChunkPalettedStorageFix/UPPER_PEONY +FD: net/minecraft/util/datafix/fixes/ChunkPalettedStorageFix/f_15048_ net/minecraft/util/datafix/fixes/ChunkPalettedStorageFix/FLOWER_POT_MAP +FD: net/minecraft/util/datafix/fixes/ChunkPalettedStorageFix/f_15049_ net/minecraft/util/datafix/fixes/ChunkPalettedStorageFix/SKULL_MAP +FD: net/minecraft/util/datafix/fixes/ChunkPalettedStorageFix/f_15050_ net/minecraft/util/datafix/fixes/ChunkPalettedStorageFix/DOOR_MAP +FD: net/minecraft/util/datafix/fixes/ChunkPalettedStorageFix/f_15051_ net/minecraft/util/datafix/fixes/ChunkPalettedStorageFix/NOTE_BLOCK_MAP +FD: net/minecraft/util/datafix/fixes/ChunkPalettedStorageFix/f_15052_ net/minecraft/util/datafix/fixes/ChunkPalettedStorageFix/DYE_COLOR_MAP +FD: net/minecraft/util/datafix/fixes/ChunkPalettedStorageFix/f_15053_ net/minecraft/util/datafix/fixes/ChunkPalettedStorageFix/BED_BLOCK_MAP +FD: net/minecraft/util/datafix/fixes/ChunkPalettedStorageFix/f_15054_ net/minecraft/util/datafix/fixes/ChunkPalettedStorageFix/BANNER_BLOCK_MAP +FD: net/minecraft/util/datafix/fixes/ChunkPalettedStorageFix/f_15055_ net/minecraft/util/datafix/fixes/ChunkPalettedStorageFix/AIR +FD: net/minecraft/util/datafix/fixes/ChunkPalettedStorageFix$1/f_15127_ net/minecraft/util/datafix/fixes/ChunkPalettedStorageFix$1/$SwitchMap$net$minecraft$util$datafix$fixes$ChunkPalettedStorageFix$Direction$Axis +FD: net/minecraft/util/datafix/fixes/ChunkPalettedStorageFix$DataLayer/f_145220_ net/minecraft/util/datafix/fixes/ChunkPalettedStorageFix$DataLayer/SIZE +FD: net/minecraft/util/datafix/fixes/ChunkPalettedStorageFix$DataLayer/f_145221_ net/minecraft/util/datafix/fixes/ChunkPalettedStorageFix$DataLayer/NIBBLE_SIZE +FD: net/minecraft/util/datafix/fixes/ChunkPalettedStorageFix$DataLayer/f_15129_ net/minecraft/util/datafix/fixes/ChunkPalettedStorageFix$DataLayer/data +FD: net/minecraft/util/datafix/fixes/ChunkPalettedStorageFix$Direction/$VALUES net/minecraft/util/datafix/fixes/ChunkPalettedStorageFix$Direction/$VALUES +FD: net/minecraft/util/datafix/fixes/ChunkPalettedStorageFix$Direction/DOWN net/minecraft/util/datafix/fixes/ChunkPalettedStorageFix$Direction/DOWN +FD: net/minecraft/util/datafix/fixes/ChunkPalettedStorageFix$Direction/EAST net/minecraft/util/datafix/fixes/ChunkPalettedStorageFix$Direction/EAST +FD: net/minecraft/util/datafix/fixes/ChunkPalettedStorageFix$Direction/NORTH net/minecraft/util/datafix/fixes/ChunkPalettedStorageFix$Direction/NORTH +FD: net/minecraft/util/datafix/fixes/ChunkPalettedStorageFix$Direction/SOUTH net/minecraft/util/datafix/fixes/ChunkPalettedStorageFix$Direction/SOUTH +FD: net/minecraft/util/datafix/fixes/ChunkPalettedStorageFix$Direction/UP net/minecraft/util/datafix/fixes/ChunkPalettedStorageFix$Direction/UP +FD: net/minecraft/util/datafix/fixes/ChunkPalettedStorageFix$Direction/WEST net/minecraft/util/datafix/fixes/ChunkPalettedStorageFix$Direction/WEST +FD: net/minecraft/util/datafix/fixes/ChunkPalettedStorageFix$Direction/f_15147_ net/minecraft/util/datafix/fixes/ChunkPalettedStorageFix$Direction/axis +FD: net/minecraft/util/datafix/fixes/ChunkPalettedStorageFix$Direction/f_15148_ net/minecraft/util/datafix/fixes/ChunkPalettedStorageFix$Direction/axisDirection +FD: net/minecraft/util/datafix/fixes/ChunkPalettedStorageFix$Direction$Axis/$VALUES net/minecraft/util/datafix/fixes/ChunkPalettedStorageFix$Direction$Axis/$VALUES +FD: net/minecraft/util/datafix/fixes/ChunkPalettedStorageFix$Direction$Axis/X net/minecraft/util/datafix/fixes/ChunkPalettedStorageFix$Direction$Axis/X +FD: net/minecraft/util/datafix/fixes/ChunkPalettedStorageFix$Direction$Axis/Y net/minecraft/util/datafix/fixes/ChunkPalettedStorageFix$Direction$Axis/Y +FD: net/minecraft/util/datafix/fixes/ChunkPalettedStorageFix$Direction$Axis/Z net/minecraft/util/datafix/fixes/ChunkPalettedStorageFix$Direction$Axis/Z +FD: net/minecraft/util/datafix/fixes/ChunkPalettedStorageFix$Direction$AxisDirection/$VALUES net/minecraft/util/datafix/fixes/ChunkPalettedStorageFix$Direction$AxisDirection/$VALUES +FD: net/minecraft/util/datafix/fixes/ChunkPalettedStorageFix$Direction$AxisDirection/NEGATIVE net/minecraft/util/datafix/fixes/ChunkPalettedStorageFix$Direction$AxisDirection/NEGATIVE +FD: net/minecraft/util/datafix/fixes/ChunkPalettedStorageFix$Direction$AxisDirection/POSITIVE net/minecraft/util/datafix/fixes/ChunkPalettedStorageFix$Direction$AxisDirection/POSITIVE +FD: net/minecraft/util/datafix/fixes/ChunkPalettedStorageFix$Direction$AxisDirection/f_15174_ net/minecraft/util/datafix/fixes/ChunkPalettedStorageFix$Direction$AxisDirection/step +FD: net/minecraft/util/datafix/fixes/ChunkPalettedStorageFix$Section/f_15185_ net/minecraft/util/datafix/fixes/ChunkPalettedStorageFix$Section/y +FD: net/minecraft/util/datafix/fixes/ChunkPalettedStorageFix$Section/f_15186_ net/minecraft/util/datafix/fixes/ChunkPalettedStorageFix$Section/palette +FD: net/minecraft/util/datafix/fixes/ChunkPalettedStorageFix$Section/f_15187_ net/minecraft/util/datafix/fixes/ChunkPalettedStorageFix$Section/listTag +FD: net/minecraft/util/datafix/fixes/ChunkPalettedStorageFix$Section/f_15188_ net/minecraft/util/datafix/fixes/ChunkPalettedStorageFix$Section/section +FD: net/minecraft/util/datafix/fixes/ChunkPalettedStorageFix$Section/f_15189_ net/minecraft/util/datafix/fixes/ChunkPalettedStorageFix$Section/hasData +FD: net/minecraft/util/datafix/fixes/ChunkPalettedStorageFix$Section/f_15190_ net/minecraft/util/datafix/fixes/ChunkPalettedStorageFix$Section/toFix +FD: net/minecraft/util/datafix/fixes/ChunkPalettedStorageFix$Section/f_15191_ net/minecraft/util/datafix/fixes/ChunkPalettedStorageFix$Section/update +FD: net/minecraft/util/datafix/fixes/ChunkPalettedStorageFix$Section/f_15192_ net/minecraft/util/datafix/fixes/ChunkPalettedStorageFix$Section/seen +FD: net/minecraft/util/datafix/fixes/ChunkPalettedStorageFix$Section/f_15193_ net/minecraft/util/datafix/fixes/ChunkPalettedStorageFix$Section/buffer +FD: net/minecraft/util/datafix/fixes/ChunkPalettedStorageFix$UpgradeChunk/f_15215_ net/minecraft/util/datafix/fixes/ChunkPalettedStorageFix$UpgradeChunk/sides +FD: net/minecraft/util/datafix/fixes/ChunkPalettedStorageFix$UpgradeChunk/f_15216_ net/minecraft/util/datafix/fixes/ChunkPalettedStorageFix$UpgradeChunk/sections +FD: net/minecraft/util/datafix/fixes/ChunkPalettedStorageFix$UpgradeChunk/f_15217_ net/minecraft/util/datafix/fixes/ChunkPalettedStorageFix$UpgradeChunk/level +FD: net/minecraft/util/datafix/fixes/ChunkPalettedStorageFix$UpgradeChunk/f_15218_ net/minecraft/util/datafix/fixes/ChunkPalettedStorageFix$UpgradeChunk/x +FD: net/minecraft/util/datafix/fixes/ChunkPalettedStorageFix$UpgradeChunk/f_15219_ net/minecraft/util/datafix/fixes/ChunkPalettedStorageFix$UpgradeChunk/z +FD: net/minecraft/util/datafix/fixes/ChunkPalettedStorageFix$UpgradeChunk/f_15220_ net/minecraft/util/datafix/fixes/ChunkPalettedStorageFix$UpgradeChunk/blockEntities +FD: net/minecraft/util/datafix/fixes/ChunkProtoTickListFix/f_184984_ net/minecraft/util/datafix/fixes/ChunkProtoTickListFix/SECTION_WIDTH +FD: net/minecraft/util/datafix/fixes/ChunkProtoTickListFix/f_184985_ net/minecraft/util/datafix/fixes/ChunkProtoTickListFix/ALWAYS_WATERLOGGED +FD: net/minecraft/util/datafix/fixes/ChunkProtoTickListFix$PoorMansPalettedContainer/f_185080_ net/minecraft/util/datafix/fixes/ChunkProtoTickListFix$PoorMansPalettedContainer/SIZE_BITS +FD: net/minecraft/util/datafix/fixes/ChunkProtoTickListFix$PoorMansPalettedContainer/f_185081_ net/minecraft/util/datafix/fixes/ChunkProtoTickListFix$PoorMansPalettedContainer/palette +FD: net/minecraft/util/datafix/fixes/ChunkProtoTickListFix$PoorMansPalettedContainer/f_185082_ net/minecraft/util/datafix/fixes/ChunkProtoTickListFix$PoorMansPalettedContainer/data +FD: net/minecraft/util/datafix/fixes/ChunkProtoTickListFix$PoorMansPalettedContainer/f_185083_ net/minecraft/util/datafix/fixes/ChunkProtoTickListFix$PoorMansPalettedContainer/bits +FD: net/minecraft/util/datafix/fixes/ChunkProtoTickListFix$PoorMansPalettedContainer/f_185084_ net/minecraft/util/datafix/fixes/ChunkProtoTickListFix$PoorMansPalettedContainer/mask +FD: net/minecraft/util/datafix/fixes/ChunkProtoTickListFix$PoorMansPalettedContainer/f_185085_ net/minecraft/util/datafix/fixes/ChunkProtoTickListFix$PoorMansPalettedContainer/valuesPerLong +FD: net/minecraft/util/datafix/fixes/ChunkStatusFix2/f_15255_ net/minecraft/util/datafix/fixes/ChunkStatusFix2/RENAMES_AND_DOWNGRADES +FD: net/minecraft/util/datafix/fixes/ChunkStructuresTemplateRenameFix/f_15266_ net/minecraft/util/datafix/fixes/ChunkStructuresTemplateRenameFix/RENAMES +FD: net/minecraft/util/datafix/fixes/ChunkToProtochunkFix/f_145239_ net/minecraft/util/datafix/fixes/ChunkToProtochunkFix/NUM_SECTIONS +FD: net/minecraft/util/datafix/fixes/CriteriaRenameFix/f_216581_ net/minecraft/util/datafix/fixes/CriteriaRenameFix/name +FD: net/minecraft/util/datafix/fixes/CriteriaRenameFix/f_216582_ net/minecraft/util/datafix/fixes/CriteriaRenameFix/advancementId +FD: net/minecraft/util/datafix/fixes/CriteriaRenameFix/f_216583_ net/minecraft/util/datafix/fixes/CriteriaRenameFix/conversions +FD: net/minecraft/util/datafix/fixes/DecoratedPotFieldRenameFix/f_279527_ net/minecraft/util/datafix/fixes/DecoratedPotFieldRenameFix/DECORATED_POT_ID +FD: net/minecraft/util/datafix/fixes/DyeItemRenameFix/f_15321_ net/minecraft/util/datafix/fixes/DyeItemRenameFix/RENAMED_IDS +FD: net/minecraft/util/datafix/fixes/EffectDurationFix/f_267441_ net/minecraft/util/datafix/fixes/EffectDurationFix/ITEM_TYPES +FD: net/minecraft/util/datafix/fixes/EntityBlockStateFix/f_15330_ net/minecraft/util/datafix/fixes/EntityBlockStateFix/MAP +FD: net/minecraft/util/datafix/fixes/EntityCodSalmonFix/f_15389_ net/minecraft/util/datafix/fixes/EntityCodSalmonFix/RENAMED_IDS +FD: net/minecraft/util/datafix/fixes/EntityCodSalmonFix/f_15390_ net/minecraft/util/datafix/fixes/EntityCodSalmonFix/RENAMED_EGG_IDS +FD: net/minecraft/util/datafix/fixes/EntityHealthFix/f_15431_ net/minecraft/util/datafix/fixes/EntityHealthFix/ENTITIES +FD: net/minecraft/util/datafix/fixes/EntityIdFix/f_15453_ net/minecraft/util/datafix/fixes/EntityIdFix/ID_MAP +FD: net/minecraft/util/datafix/fixes/EntityMinecartIdentifiersFix/f_15476_ net/minecraft/util/datafix/fixes/EntityMinecartIdentifiersFix/MINECART_BY_ID +FD: net/minecraft/util/datafix/fixes/EntityPaintingItemFrameDirectionFix/f_15496_ net/minecraft/util/datafix/fixes/EntityPaintingItemFrameDirectionFix/DIRECTIONS +FD: net/minecraft/util/datafix/fixes/EntityPaintingMotiveFix/f_15522_ net/minecraft/util/datafix/fixes/EntityPaintingMotiveFix/MAP +FD: net/minecraft/util/datafix/fixes/EntityPufferfishRenameFix/f_15584_ net/minecraft/util/datafix/fixes/EntityPufferfishRenameFix/RENAMED_IDS +FD: net/minecraft/util/datafix/fixes/EntityRavagerRenameFix/f_15591_ net/minecraft/util/datafix/fixes/EntityRavagerRenameFix/RENAMED_IDS +FD: net/minecraft/util/datafix/fixes/EntityRedundantChanceTagsFix/f_15598_ net/minecraft/util/datafix/fixes/EntityRedundantChanceTagsFix/FLOAT_LIST_CODEC +FD: net/minecraft/util/datafix/fixes/EntityRenameFix/f_15616_ net/minecraft/util/datafix/fixes/EntityRenameFix/name +FD: net/minecraft/util/datafix/fixes/EntityTheRenameningFix/f_145332_ net/minecraft/util/datafix/fixes/EntityTheRenameningFix/MINECRAFT_BRED +FD: net/minecraft/util/datafix/fixes/EntityTheRenameningFix/f_15701_ net/minecraft/util/datafix/fixes/EntityTheRenameningFix/RENAMED_IDS +FD: net/minecraft/util/datafix/fixes/EntityTheRenameningFix/f_15702_ net/minecraft/util/datafix/fixes/EntityTheRenameningFix/RENAMED_BLOCKS +FD: net/minecraft/util/datafix/fixes/EntityTheRenameningFix/f_15703_ net/minecraft/util/datafix/fixes/EntityTheRenameningFix/RENAMED_ITEMS +FD: net/minecraft/util/datafix/fixes/EntityUUIDFix/f_15715_ net/minecraft/util/datafix/fixes/EntityUUIDFix/ABSTRACT_HORSES +FD: net/minecraft/util/datafix/fixes/EntityUUIDFix/f_15716_ net/minecraft/util/datafix/fixes/EntityUUIDFix/TAMEABLE_ANIMALS +FD: net/minecraft/util/datafix/fixes/EntityUUIDFix/f_15717_ net/minecraft/util/datafix/fixes/EntityUUIDFix/ANIMALS +FD: net/minecraft/util/datafix/fixes/EntityUUIDFix/f_15718_ net/minecraft/util/datafix/fixes/EntityUUIDFix/MOBS +FD: net/minecraft/util/datafix/fixes/EntityUUIDFix/f_15719_ net/minecraft/util/datafix/fixes/EntityUUIDFix/LIVING_ENTITIES +FD: net/minecraft/util/datafix/fixes/EntityUUIDFix/f_15720_ net/minecraft/util/datafix/fixes/EntityUUIDFix/PROJECTILES +FD: net/minecraft/util/datafix/fixes/EntityUUIDFix/f_201927_ net/minecraft/util/datafix/fixes/EntityUUIDFix/LOGGER +FD: net/minecraft/util/datafix/fixes/EntityVariantFix/f_216620_ net/minecraft/util/datafix/fixes/EntityVariantFix/fieldName +FD: net/minecraft/util/datafix/fixes/EntityVariantFix/f_216621_ net/minecraft/util/datafix/fixes/EntityVariantFix/idConversions +FD: net/minecraft/util/datafix/fixes/EntityZombieVillagerTypeFix/f_145350_ net/minecraft/util/datafix/fixes/EntityZombieVillagerTypeFix/PROFESSION_MAX +FD: net/minecraft/util/datafix/fixes/EntityZombieVillagerTypeFix/f_15803_ net/minecraft/util/datafix/fixes/EntityZombieVillagerTypeFix/RANDOM +FD: net/minecraft/util/datafix/fixes/EntityZombifiedPiglinRenameFix/f_15814_ net/minecraft/util/datafix/fixes/EntityZombifiedPiglinRenameFix/RENAMED_IDS +FD: net/minecraft/util/datafix/fixes/FeatureFlagRemoveFix/f_276634_ net/minecraft/util/datafix/fixes/FeatureFlagRemoveFix/flagsToRemove +FD: net/minecraft/util/datafix/fixes/FeatureFlagRemoveFix/f_276637_ net/minecraft/util/datafix/fixes/FeatureFlagRemoveFix/name +FD: net/minecraft/util/datafix/fixes/GoatHornIdFix/f_216671_ net/minecraft/util/datafix/fixes/GoatHornIdFix/INSTRUMENTS +FD: net/minecraft/util/datafix/fixes/ItemIdFix/f_15937_ net/minecraft/util/datafix/fixes/ItemIdFix/ITEM_NAMES +FD: net/minecraft/util/datafix/fixes/ItemPotionFix/f_145399_ net/minecraft/util/datafix/fixes/ItemPotionFix/DEFAULT +FD: net/minecraft/util/datafix/fixes/ItemPotionFix/f_145400_ net/minecraft/util/datafix/fixes/ItemPotionFix/SPLASH +FD: net/minecraft/util/datafix/fixes/ItemPotionFix/f_15987_ net/minecraft/util/datafix/fixes/ItemPotionFix/POTIONS +FD: net/minecraft/util/datafix/fixes/ItemRemoveBlockEntityTagFix/f_242500_ net/minecraft/util/datafix/fixes/ItemRemoveBlockEntityTagFix/items +FD: net/minecraft/util/datafix/fixes/ItemRenameFix/f_15999_ net/minecraft/util/datafix/fixes/ItemRenameFix/name +FD: net/minecraft/util/datafix/fixes/ItemRenameFix$1/f_16013_ net/minecraft/util/datafix/fixes/ItemRenameFix$1/val$fixItem +FD: net/minecraft/util/datafix/fixes/ItemShulkerBoxColorFix/f_16020_ net/minecraft/util/datafix/fixes/ItemShulkerBoxColorFix/NAMES_BY_COLOR +FD: net/minecraft/util/datafix/fixes/ItemSpawnEggFix/f_16031_ net/minecraft/util/datafix/fixes/ItemSpawnEggFix/ID_TO_ENTITY +FD: net/minecraft/util/datafix/fixes/ItemStackEnchantmentNamesFix/f_16062_ net/minecraft/util/datafix/fixes/ItemStackEnchantmentNamesFix/MAP +FD: net/minecraft/util/datafix/fixes/ItemStackSpawnEggFix/f_16095_ net/minecraft/util/datafix/fixes/ItemStackSpawnEggFix/MAP +FD: net/minecraft/util/datafix/fixes/ItemStackSpawnEggFix/f_260677_ net/minecraft/util/datafix/fixes/ItemStackSpawnEggFix/itemType +FD: net/minecraft/util/datafix/fixes/ItemStackTagFix/f_216679_ net/minecraft/util/datafix/fixes/ItemStackTagFix/name +FD: net/minecraft/util/datafix/fixes/ItemStackTagFix/f_216680_ net/minecraft/util/datafix/fixes/ItemStackTagFix/idFilter +FD: net/minecraft/util/datafix/fixes/ItemStackTheFlatteningFix/f_16109_ net/minecraft/util/datafix/fixes/ItemStackTheFlatteningFix/MAP +FD: net/minecraft/util/datafix/fixes/ItemStackTheFlatteningFix/f_16110_ net/minecraft/util/datafix/fixes/ItemStackTheFlatteningFix/IDS +FD: net/minecraft/util/datafix/fixes/ItemStackTheFlatteningFix/f_16111_ net/minecraft/util/datafix/fixes/ItemStackTheFlatteningFix/DAMAGE_IDS +FD: net/minecraft/util/datafix/fixes/JigsawRotationFix/f_145444_ net/minecraft/util/datafix/fixes/JigsawRotationFix/RENAMES +FD: net/minecraft/util/datafix/fixes/LeavesFix/f_145445_ net/minecraft/util/datafix/fixes/LeavesFix/NORTH_WEST_MASK +FD: net/minecraft/util/datafix/fixes/LeavesFix/f_145446_ net/minecraft/util/datafix/fixes/LeavesFix/WEST_MASK +FD: net/minecraft/util/datafix/fixes/LeavesFix/f_145447_ net/minecraft/util/datafix/fixes/LeavesFix/SOUTH_WEST_MASK +FD: net/minecraft/util/datafix/fixes/LeavesFix/f_145448_ net/minecraft/util/datafix/fixes/LeavesFix/SOUTH_MASK +FD: net/minecraft/util/datafix/fixes/LeavesFix/f_145449_ net/minecraft/util/datafix/fixes/LeavesFix/SOUTH_EAST_MASK +FD: net/minecraft/util/datafix/fixes/LeavesFix/f_145450_ net/minecraft/util/datafix/fixes/LeavesFix/EAST_MASK +FD: net/minecraft/util/datafix/fixes/LeavesFix/f_145451_ net/minecraft/util/datafix/fixes/LeavesFix/NORTH_EAST_MASK +FD: net/minecraft/util/datafix/fixes/LeavesFix/f_145452_ net/minecraft/util/datafix/fixes/LeavesFix/NORTH_MASK +FD: net/minecraft/util/datafix/fixes/LeavesFix/f_145453_ net/minecraft/util/datafix/fixes/LeavesFix/DECAY_DISTANCE +FD: net/minecraft/util/datafix/fixes/LeavesFix/f_145454_ net/minecraft/util/datafix/fixes/LeavesFix/SIZE_BITS +FD: net/minecraft/util/datafix/fixes/LeavesFix/f_145455_ net/minecraft/util/datafix/fixes/LeavesFix/SIZE +FD: net/minecraft/util/datafix/fixes/LeavesFix/f_16200_ net/minecraft/util/datafix/fixes/LeavesFix/DIRECTIONS +FD: net/minecraft/util/datafix/fixes/LeavesFix/f_16201_ net/minecraft/util/datafix/fixes/LeavesFix/LEAVES +FD: net/minecraft/util/datafix/fixes/LeavesFix/f_16202_ net/minecraft/util/datafix/fixes/LeavesFix/LOGS +FD: net/minecraft/util/datafix/fixes/LeavesFix$LeavesSection/f_145474_ net/minecraft/util/datafix/fixes/LeavesFix$LeavesSection/PERSISTENT +FD: net/minecraft/util/datafix/fixes/LeavesFix$LeavesSection/f_145475_ net/minecraft/util/datafix/fixes/LeavesFix$LeavesSection/DECAYABLE +FD: net/minecraft/util/datafix/fixes/LeavesFix$LeavesSection/f_145476_ net/minecraft/util/datafix/fixes/LeavesFix$LeavesSection/DISTANCE +FD: net/minecraft/util/datafix/fixes/LeavesFix$LeavesSection/f_16250_ net/minecraft/util/datafix/fixes/LeavesFix$LeavesSection/leaveIds +FD: net/minecraft/util/datafix/fixes/LeavesFix$LeavesSection/f_16251_ net/minecraft/util/datafix/fixes/LeavesFix$LeavesSection/logIds +FD: net/minecraft/util/datafix/fixes/LeavesFix$LeavesSection/f_16252_ net/minecraft/util/datafix/fixes/LeavesFix$LeavesSection/stateToIdMap +FD: net/minecraft/util/datafix/fixes/LeavesFix$Section/f_145477_ net/minecraft/util/datafix/fixes/LeavesFix$Section/BLOCK_STATES_TAG +FD: net/minecraft/util/datafix/fixes/LeavesFix$Section/f_145478_ net/minecraft/util/datafix/fixes/LeavesFix$Section/NAME_TAG +FD: net/minecraft/util/datafix/fixes/LeavesFix$Section/f_145479_ net/minecraft/util/datafix/fixes/LeavesFix$Section/PROPERTIES_TAG +FD: net/minecraft/util/datafix/fixes/LeavesFix$Section/f_16280_ net/minecraft/util/datafix/fixes/LeavesFix$Section/paletteFinder +FD: net/minecraft/util/datafix/fixes/LeavesFix$Section/f_16281_ net/minecraft/util/datafix/fixes/LeavesFix$Section/palette +FD: net/minecraft/util/datafix/fixes/LeavesFix$Section/f_16282_ net/minecraft/util/datafix/fixes/LeavesFix$Section/index +FD: net/minecraft/util/datafix/fixes/LeavesFix$Section/f_16283_ net/minecraft/util/datafix/fixes/LeavesFix$Section/storage +FD: net/minecraft/util/datafix/fixes/LeavesFix$Section/f_16284_ net/minecraft/util/datafix/fixes/LeavesFix$Section/blockStateType +FD: net/minecraft/util/datafix/fixes/LevelDataGeneratorOptionsFix/f_145480_ net/minecraft/util/datafix/fixes/LevelDataGeneratorOptionsFix/GENERATOR_OPTIONS +FD: net/minecraft/util/datafix/fixes/LevelDataGeneratorOptionsFix/f_16306_ net/minecraft/util/datafix/fixes/LevelDataGeneratorOptionsFix/MAP +FD: net/minecraft/util/datafix/fixes/LevelFlatGeneratorInfoFix/f_145488_ net/minecraft/util/datafix/fixes/LevelFlatGeneratorInfoFix/DEFAULT +FD: net/minecraft/util/datafix/fixes/LevelFlatGeneratorInfoFix/f_145489_ net/minecraft/util/datafix/fixes/LevelFlatGeneratorInfoFix/GENERATOR_OPTIONS +FD: net/minecraft/util/datafix/fixes/LevelFlatGeneratorInfoFix/f_16337_ net/minecraft/util/datafix/fixes/LevelFlatGeneratorInfoFix/SPLITTER +FD: net/minecraft/util/datafix/fixes/LevelFlatGeneratorInfoFix/f_16338_ net/minecraft/util/datafix/fixes/LevelFlatGeneratorInfoFix/LAYER_SPLITTER +FD: net/minecraft/util/datafix/fixes/LevelFlatGeneratorInfoFix/f_16339_ net/minecraft/util/datafix/fixes/LevelFlatGeneratorInfoFix/OLD_AMOUNT_SPLITTER +FD: net/minecraft/util/datafix/fixes/LevelFlatGeneratorInfoFix/f_16340_ net/minecraft/util/datafix/fixes/LevelFlatGeneratorInfoFix/AMOUNT_SPLITTER +FD: net/minecraft/util/datafix/fixes/LevelFlatGeneratorInfoFix/f_16341_ net/minecraft/util/datafix/fixes/LevelFlatGeneratorInfoFix/BLOCK_SPLITTER +FD: net/minecraft/util/datafix/fixes/LevelUUIDFix/f_201928_ net/minecraft/util/datafix/fixes/LevelUUIDFix/LOGGER +FD: net/minecraft/util/datafix/fixes/NamedEntityFix/f_16461_ net/minecraft/util/datafix/fixes/NamedEntityFix/name +FD: net/minecraft/util/datafix/fixes/NamedEntityFix/f_16462_ net/minecraft/util/datafix/fixes/NamedEntityFix/entityName +FD: net/minecraft/util/datafix/fixes/NamedEntityFix/f_16463_ net/minecraft/util/datafix/fixes/NamedEntityFix/type +FD: net/minecraft/util/datafix/fixes/NamespacedTypeRenameFix/f_276472_ net/minecraft/util/datafix/fixes/NamespacedTypeRenameFix/renamer +FD: net/minecraft/util/datafix/fixes/NamespacedTypeRenameFix/f_276626_ net/minecraft/util/datafix/fixes/NamespacedTypeRenameFix/type +FD: net/minecraft/util/datafix/fixes/NamespacedTypeRenameFix/f_276670_ net/minecraft/util/datafix/fixes/NamespacedTypeRenameFix/name +FD: net/minecraft/util/datafix/fixes/OptionsKeyLwjgl3Fix/f_145573_ net/minecraft/util/datafix/fixes/OptionsKeyLwjgl3Fix/KEY_UNKNOWN +FD: net/minecraft/util/datafix/fixes/OptionsKeyLwjgl3Fix/f_16627_ net/minecraft/util/datafix/fixes/OptionsKeyLwjgl3Fix/MAP +FD: net/minecraft/util/datafix/fixes/OptionsRenameFieldFix/f_16666_ net/minecraft/util/datafix/fixes/OptionsRenameFieldFix/fixName +FD: net/minecraft/util/datafix/fixes/OptionsRenameFieldFix/f_16667_ net/minecraft/util/datafix/fixes/OptionsRenameFieldFix/fieldFrom +FD: net/minecraft/util/datafix/fixes/OptionsRenameFieldFix/f_16668_ net/minecraft/util/datafix/fixes/OptionsRenameFieldFix/fieldTo +FD: net/minecraft/util/datafix/fixes/PoiTypeRemoveFix/f_216699_ net/minecraft/util/datafix/fixes/PoiTypeRemoveFix/typesToKeep +FD: net/minecraft/util/datafix/fixes/PoiTypeRenameFix/f_216708_ net/minecraft/util/datafix/fixes/PoiTypeRenameFix/renamer +FD: net/minecraft/util/datafix/fixes/RecipesFix/f_16722_ net/minecraft/util/datafix/fixes/RecipesFix/RECIPES +FD: net/minecraft/util/datafix/fixes/RecipesRenameningFix/f_16741_ net/minecraft/util/datafix/fixes/RecipesRenameningFix/RECIPES +FD: net/minecraft/util/datafix/fixes/References/f_145628_ net/minecraft/util/datafix/fixes/References/ENTITY_CHUNK +FD: net/minecraft/util/datafix/fixes/References/f_16771_ net/minecraft/util/datafix/fixes/References/LEVEL +FD: net/minecraft/util/datafix/fixes/References/f_16772_ net/minecraft/util/datafix/fixes/References/PLAYER +FD: net/minecraft/util/datafix/fixes/References/f_16773_ net/minecraft/util/datafix/fixes/References/CHUNK +FD: net/minecraft/util/datafix/fixes/References/f_16774_ net/minecraft/util/datafix/fixes/References/HOTBAR +FD: net/minecraft/util/datafix/fixes/References/f_16775_ net/minecraft/util/datafix/fixes/References/OPTIONS +FD: net/minecraft/util/datafix/fixes/References/f_16776_ net/minecraft/util/datafix/fixes/References/STRUCTURE +FD: net/minecraft/util/datafix/fixes/References/f_16777_ net/minecraft/util/datafix/fixes/References/STATS +FD: net/minecraft/util/datafix/fixes/References/f_16778_ net/minecraft/util/datafix/fixes/References/SAVED_DATA +FD: net/minecraft/util/datafix/fixes/References/f_16779_ net/minecraft/util/datafix/fixes/References/ADVANCEMENTS +FD: net/minecraft/util/datafix/fixes/References/f_16780_ net/minecraft/util/datafix/fixes/References/POI_CHUNK +FD: net/minecraft/util/datafix/fixes/References/f_16781_ net/minecraft/util/datafix/fixes/References/BLOCK_ENTITY +FD: net/minecraft/util/datafix/fixes/References/f_16782_ net/minecraft/util/datafix/fixes/References/ITEM_STACK +FD: net/minecraft/util/datafix/fixes/References/f_16783_ net/minecraft/util/datafix/fixes/References/BLOCK_STATE +FD: net/minecraft/util/datafix/fixes/References/f_16784_ net/minecraft/util/datafix/fixes/References/ENTITY_NAME +FD: net/minecraft/util/datafix/fixes/References/f_16785_ net/minecraft/util/datafix/fixes/References/ENTITY_TREE +FD: net/minecraft/util/datafix/fixes/References/f_16786_ net/minecraft/util/datafix/fixes/References/ENTITY +FD: net/minecraft/util/datafix/fixes/References/f_16787_ net/minecraft/util/datafix/fixes/References/BLOCK_NAME +FD: net/minecraft/util/datafix/fixes/References/f_16788_ net/minecraft/util/datafix/fixes/References/ITEM_NAME +FD: net/minecraft/util/datafix/fixes/References/f_16789_ net/minecraft/util/datafix/fixes/References/UNTAGGED_SPAWNER +FD: net/minecraft/util/datafix/fixes/References/f_16790_ net/minecraft/util/datafix/fixes/References/STRUCTURE_FEATURE +FD: net/minecraft/util/datafix/fixes/References/f_16791_ net/minecraft/util/datafix/fixes/References/OBJECTIVE +FD: net/minecraft/util/datafix/fixes/References/f_16792_ net/minecraft/util/datafix/fixes/References/TEAM +FD: net/minecraft/util/datafix/fixes/References/f_16793_ net/minecraft/util/datafix/fixes/References/RECIPE +FD: net/minecraft/util/datafix/fixes/References/f_16794_ net/minecraft/util/datafix/fixes/References/BIOME +FD: net/minecraft/util/datafix/fixes/References/f_16795_ net/minecraft/util/datafix/fixes/References/WORLD_GEN_SETTINGS +FD: net/minecraft/util/datafix/fixes/References/f_216719_ net/minecraft/util/datafix/fixes/References/GAME_EVENT_NAME +FD: net/minecraft/util/datafix/fixes/References/f_276527_ net/minecraft/util/datafix/fixes/References/MULTI_NOISE_BIOME_SOURCE_PARAMETER_LIST +FD: net/minecraft/util/datafix/fixes/RemapChunkStatusFix/f_279591_ net/minecraft/util/datafix/fixes/RemapChunkStatusFix/name +FD: net/minecraft/util/datafix/fixes/RemapChunkStatusFix/f_279655_ net/minecraft/util/datafix/fixes/RemapChunkStatusFix/mapper +FD: net/minecraft/util/datafix/fixes/RenamedCoralFansFix/f_16848_ net/minecraft/util/datafix/fixes/RenamedCoralFansFix/RENAMED_IDS +FD: net/minecraft/util/datafix/fixes/RenamedCoralFix/f_16850_ net/minecraft/util/datafix/fixes/RenamedCoralFix/RENAMED_IDS +FD: net/minecraft/util/datafix/fixes/SavedDataFeaturePoolElementFix/f_145641_ net/minecraft/util/datafix/fixes/SavedDataFeaturePoolElementFix/INDEX_PATTERN +FD: net/minecraft/util/datafix/fixes/SavedDataFeaturePoolElementFix/f_145642_ net/minecraft/util/datafix/fixes/SavedDataFeaturePoolElementFix/PIECE_TYPE +FD: net/minecraft/util/datafix/fixes/SavedDataFeaturePoolElementFix/f_145643_ net/minecraft/util/datafix/fixes/SavedDataFeaturePoolElementFix/FEATURES +FD: net/minecraft/util/datafix/fixes/SavedDataUUIDFix/f_201930_ net/minecraft/util/datafix/fixes/SavedDataUUIDFix/LOGGER +FD: net/minecraft/util/datafix/fixes/SimplestEntityRenameFix/f_16909_ net/minecraft/util/datafix/fixes/SimplestEntityRenameFix/name +FD: net/minecraft/util/datafix/fixes/StatsCounterFix/f_145695_ net/minecraft/util/datafix/fixes/StatsCounterFix/BLOCK_KEY +FD: net/minecraft/util/datafix/fixes/StatsCounterFix/f_145696_ net/minecraft/util/datafix/fixes/StatsCounterFix/NEW_BLOCK_KEY +FD: net/minecraft/util/datafix/fixes/StatsCounterFix/f_145697_ net/minecraft/util/datafix/fixes/StatsCounterFix/NEW_CUSTOM_KEY +FD: net/minecraft/util/datafix/fixes/StatsCounterFix/f_16932_ net/minecraft/util/datafix/fixes/StatsCounterFix/SKIP +FD: net/minecraft/util/datafix/fixes/StatsCounterFix/f_16933_ net/minecraft/util/datafix/fixes/StatsCounterFix/CUSTOM_MAP +FD: net/minecraft/util/datafix/fixes/StatsCounterFix/f_16934_ net/minecraft/util/datafix/fixes/StatsCounterFix/ITEM_KEYS +FD: net/minecraft/util/datafix/fixes/StatsCounterFix/f_16935_ net/minecraft/util/datafix/fixes/StatsCounterFix/ENTITY_KEYS +FD: net/minecraft/util/datafix/fixes/StatsCounterFix/f_16936_ net/minecraft/util/datafix/fixes/StatsCounterFix/ENTITIES +FD: net/minecraft/util/datafix/fixes/StatsRenameFix/f_145702_ net/minecraft/util/datafix/fixes/StatsRenameFix/name +FD: net/minecraft/util/datafix/fixes/StatsRenameFix/f_145703_ net/minecraft/util/datafix/fixes/StatsRenameFix/renames +FD: net/minecraft/util/datafix/fixes/StructuresBecomeConfiguredFix/f_207676_ net/minecraft/util/datafix/fixes/StructuresBecomeConfiguredFix/CONVERSION_MAP +FD: net/minecraft/util/datafix/fixes/StructuresBecomeConfiguredFix$Conversion/f_207736_ net/minecraft/util/datafix/fixes/StructuresBecomeConfiguredFix$Conversion/biomeMapping +FD: net/minecraft/util/datafix/fixes/StructuresBecomeConfiguredFix$Conversion/f_207737_ net/minecraft/util/datafix/fixes/StructuresBecomeConfiguredFix$Conversion/fallback +FD: net/minecraft/util/datafix/fixes/TrappedChestBlockEntityFix/f_145734_ net/minecraft/util/datafix/fixes/TrappedChestBlockEntityFix/SIZE +FD: net/minecraft/util/datafix/fixes/TrappedChestBlockEntityFix/f_145735_ net/minecraft/util/datafix/fixes/TrappedChestBlockEntityFix/SIZE_BITS +FD: net/minecraft/util/datafix/fixes/TrappedChestBlockEntityFix/f_17015_ net/minecraft/util/datafix/fixes/TrappedChestBlockEntityFix/LOGGER +FD: net/minecraft/util/datafix/fixes/TrappedChestBlockEntityFix$TrappedChestSection/f_17048_ net/minecraft/util/datafix/fixes/TrappedChestBlockEntityFix$TrappedChestSection/chestIds +FD: net/minecraft/util/datafix/fixes/VariantRenameFix/f_216740_ net/minecraft/util/datafix/fixes/VariantRenameFix/renames +FD: net/minecraft/util/datafix/fixes/VillagerFollowRangeFix/f_145757_ net/minecraft/util/datafix/fixes/VillagerFollowRangeFix/ORIGINAL_VALUE +FD: net/minecraft/util/datafix/fixes/VillagerFollowRangeFix/f_145758_ net/minecraft/util/datafix/fixes/VillagerFollowRangeFix/NEW_BASE_VALUE +FD: net/minecraft/util/datafix/fixes/VillagerRebuildLevelAndXpFix/f_145761_ net/minecraft/util/datafix/fixes/VillagerRebuildLevelAndXpFix/TRADES_PER_LEVEL +FD: net/minecraft/util/datafix/fixes/VillagerRebuildLevelAndXpFix/f_17074_ net/minecraft/util/datafix/fixes/VillagerRebuildLevelAndXpFix/LEVEL_XP_THRESHOLDS +FD: net/minecraft/util/datafix/fixes/WallPropertyFix/f_17151_ net/minecraft/util/datafix/fixes/WallPropertyFix/WALL_BLOCKS +FD: net/minecraft/util/datafix/fixes/WorldGenSettingsFix/f_145791_ net/minecraft/util/datafix/fixes/WorldGenSettingsFix/VILLAGE +FD: net/minecraft/util/datafix/fixes/WorldGenSettingsFix/f_145792_ net/minecraft/util/datafix/fixes/WorldGenSettingsFix/DESERT_PYRAMID +FD: net/minecraft/util/datafix/fixes/WorldGenSettingsFix/f_145793_ net/minecraft/util/datafix/fixes/WorldGenSettingsFix/IGLOO +FD: net/minecraft/util/datafix/fixes/WorldGenSettingsFix/f_145794_ net/minecraft/util/datafix/fixes/WorldGenSettingsFix/JUNGLE_TEMPLE +FD: net/minecraft/util/datafix/fixes/WorldGenSettingsFix/f_145795_ net/minecraft/util/datafix/fixes/WorldGenSettingsFix/SWAMP_HUT +FD: net/minecraft/util/datafix/fixes/WorldGenSettingsFix/f_145796_ net/minecraft/util/datafix/fixes/WorldGenSettingsFix/PILLAGER_OUTPOST +FD: net/minecraft/util/datafix/fixes/WorldGenSettingsFix/f_145797_ net/minecraft/util/datafix/fixes/WorldGenSettingsFix/END_CITY +FD: net/minecraft/util/datafix/fixes/WorldGenSettingsFix/f_145798_ net/minecraft/util/datafix/fixes/WorldGenSettingsFix/WOODLAND_MANSION +FD: net/minecraft/util/datafix/fixes/WorldGenSettingsFix/f_145799_ net/minecraft/util/datafix/fixes/WorldGenSettingsFix/OCEAN_MONUMENT +FD: net/minecraft/util/datafix/fixes/WorldGenSettingsFix/f_17170_ net/minecraft/util/datafix/fixes/WorldGenSettingsFix/DEFAULTS +FD: net/minecraft/util/datafix/fixes/WorldGenSettingsFix$StructureFeatureConfiguration/f_17265_ net/minecraft/util/datafix/fixes/WorldGenSettingsFix$StructureFeatureConfiguration/CODEC +FD: net/minecraft/util/datafix/fixes/WorldGenSettingsFix$StructureFeatureConfiguration/f_17266_ net/minecraft/util/datafix/fixes/WorldGenSettingsFix$StructureFeatureConfiguration/spacing +FD: net/minecraft/util/datafix/fixes/WorldGenSettingsFix$StructureFeatureConfiguration/f_17267_ net/minecraft/util/datafix/fixes/WorldGenSettingsFix$StructureFeatureConfiguration/separation +FD: net/minecraft/util/datafix/fixes/WorldGenSettingsFix$StructureFeatureConfiguration/f_17268_ net/minecraft/util/datafix/fixes/WorldGenSettingsFix$StructureFeatureConfiguration/salt +FD: net/minecraft/util/datafix/fixes/WorldGenSettingsHeightAndBiomeFix/f_185171_ net/minecraft/util/datafix/fixes/WorldGenSettingsHeightAndBiomeFix/WAS_PREVIOUSLY_INCREASED_KEY +FD: net/minecraft/util/datafix/fixes/WorldGenSettingsHeightAndBiomeFix/f_185172_ net/minecraft/util/datafix/fixes/WorldGenSettingsHeightAndBiomeFix/NAME +FD: net/minecraft/util/datafix/fixes/WriteAndReadFix/f_17290_ net/minecraft/util/datafix/fixes/WriteAndReadFix/name +FD: net/minecraft/util/datafix/fixes/WriteAndReadFix/f_17291_ net/minecraft/util/datafix/fixes/WriteAndReadFix/type +FD: net/minecraft/util/datafix/schemas/NamespacedSchema/f_17304_ net/minecraft/util/datafix/schemas/NamespacedSchema/NAMESPACED_STRING_CODEC +FD: net/minecraft/util/datafix/schemas/NamespacedSchema/f_17305_ net/minecraft/util/datafix/schemas/NamespacedSchema/NAMESPACED_STRING +FD: net/minecraft/util/datafix/schemas/V1451_6/f_181073_ net/minecraft/util/datafix/schemas/V1451_6/SPECIAL_OBJECTIVE_MARKER +FD: net/minecraft/util/datafix/schemas/V1451_6/f_181074_ net/minecraft/util/datafix/schemas/V1451_6/UNPACK_OBJECTIVE_ID +FD: net/minecraft/util/datafix/schemas/V1451_6/f_181075_ net/minecraft/util/datafix/schemas/V1451_6/REPACK_OBJECTIVE_ID +FD: net/minecraft/util/datafix/schemas/V704/f_18032_ net/minecraft/util/datafix/schemas/V704/ITEM_TO_BLOCKENTITY +FD: net/minecraft/util/datafix/schemas/V704/f_18033_ net/minecraft/util/datafix/schemas/V704/ADD_NAMES +FD: net/minecraft/util/datafix/schemas/V705/f_18072_ net/minecraft/util/datafix/schemas/V705/ADD_NAMES +FD: net/minecraft/util/datafix/schemas/V99/f_18180_ net/minecraft/util/datafix/schemas/V99/ADD_NAMES +FD: net/minecraft/util/datafix/schemas/V99/f_18181_ net/minecraft/util/datafix/schemas/V99/LOGGER +FD: net/minecraft/util/datafix/schemas/V99/f_18182_ net/minecraft/util/datafix/schemas/V99/ITEM_TO_BLOCKENTITY +FD: net/minecraft/util/eventlog/EventLogDirectory/f_260444_ net/minecraft/util/eventlog/EventLogDirectory/LOGGER +FD: net/minecraft/util/eventlog/EventLogDirectory/f_260455_ net/minecraft/util/eventlog/EventLogDirectory/COMPRESSED_EXTENSION +FD: net/minecraft/util/eventlog/EventLogDirectory/f_260477_ net/minecraft/util/eventlog/EventLogDirectory/COMPRESS_BUFFER_SIZE +FD: net/minecraft/util/eventlog/EventLogDirectory/f_260512_ net/minecraft/util/eventlog/EventLogDirectory/extension +FD: net/minecraft/util/eventlog/EventLogDirectory/f_260592_ net/minecraft/util/eventlog/EventLogDirectory/root +FD: net/minecraft/util/eventlog/EventLogDirectory$CompressedFile/f_260707_ net/minecraft/util/eventlog/EventLogDirectory$CompressedFile/path +FD: net/minecraft/util/eventlog/EventLogDirectory$CompressedFile/f_260728_ net/minecraft/util/eventlog/EventLogDirectory$CompressedFile/id +FD: net/minecraft/util/eventlog/EventLogDirectory$FileId/f_260524_ net/minecraft/util/eventlog/EventLogDirectory$FileId/DATE_FORMATTER +FD: net/minecraft/util/eventlog/EventLogDirectory$FileId/f_260602_ net/minecraft/util/eventlog/EventLogDirectory$FileId/index +FD: net/minecraft/util/eventlog/EventLogDirectory$FileId/f_260711_ net/minecraft/util/eventlog/EventLogDirectory$FileId/date +FD: net/minecraft/util/eventlog/EventLogDirectory$FileList/f_260732_ net/minecraft/util/eventlog/EventLogDirectory$FileList/files +FD: net/minecraft/util/eventlog/EventLogDirectory$RawFile/f_260438_ net/minecraft/util/eventlog/EventLogDirectory$RawFile/id +FD: net/minecraft/util/eventlog/EventLogDirectory$RawFile/f_260693_ net/minecraft/util/eventlog/EventLogDirectory$RawFile/path +FD: net/minecraft/util/eventlog/JsonEventLog/f_260478_ net/minecraft/util/eventlog/JsonEventLog/GSON +FD: net/minecraft/util/eventlog/JsonEventLog/f_260641_ net/minecraft/util/eventlog/JsonEventLog/channel +FD: net/minecraft/util/eventlog/JsonEventLog/f_260653_ net/minecraft/util/eventlog/JsonEventLog/referenceCount +FD: net/minecraft/util/eventlog/JsonEventLog/f_260727_ net/minecraft/util/eventlog/JsonEventLog/codec +FD: net/minecraft/util/eventlog/JsonEventLog$1/f_260466_ net/minecraft/util/eventlog/JsonEventLog$1/val$reader +FD: net/minecraft/util/eventlog/JsonEventLog$1/f_260662_ net/minecraft/util/eventlog/JsonEventLog$1/position +FD: net/minecraft/util/eventlog/JsonEventLog$1/f_260724_ net/minecraft/util/eventlog/JsonEventLog$1/this$0 +FD: net/minecraft/util/eventlog/JsonEventLogReader$1/f_260458_ net/minecraft/util/eventlog/JsonEventLogReader$1/val$jsonReader +FD: net/minecraft/util/eventlog/JsonEventLogReader$1/f_260459_ net/minecraft/util/eventlog/JsonEventLogReader$1/val$codec +FD: net/minecraft/util/monitoring/jmx/MinecraftServerStatistics/f_18314_ net/minecraft/util/monitoring/jmx/MinecraftServerStatistics/LOGGER +FD: net/minecraft/util/monitoring/jmx/MinecraftServerStatistics/f_18315_ net/minecraft/util/monitoring/jmx/MinecraftServerStatistics/server +FD: net/minecraft/util/monitoring/jmx/MinecraftServerStatistics/f_18316_ net/minecraft/util/monitoring/jmx/MinecraftServerStatistics/mBeanInfo +FD: net/minecraft/util/monitoring/jmx/MinecraftServerStatistics/f_18317_ net/minecraft/util/monitoring/jmx/MinecraftServerStatistics/attributeDescriptionByName +FD: net/minecraft/util/monitoring/jmx/MinecraftServerStatistics$AttributeDescription/f_18346_ net/minecraft/util/monitoring/jmx/MinecraftServerStatistics$AttributeDescription/name +FD: net/minecraft/util/monitoring/jmx/MinecraftServerStatistics$AttributeDescription/f_18347_ net/minecraft/util/monitoring/jmx/MinecraftServerStatistics$AttributeDescription/getter +FD: net/minecraft/util/monitoring/jmx/MinecraftServerStatistics$AttributeDescription/f_18348_ net/minecraft/util/monitoring/jmx/MinecraftServerStatistics$AttributeDescription/description +FD: net/minecraft/util/monitoring/jmx/MinecraftServerStatistics$AttributeDescription/f_18349_ net/minecraft/util/monitoring/jmx/MinecraftServerStatistics$AttributeDescription/type +FD: net/minecraft/util/profiling/ActiveProfiler/f_145926_ net/minecraft/util/profiling/ActiveProfiler/chartedPaths +FD: net/minecraft/util/profiling/ActiveProfiler/f_18368_ net/minecraft/util/profiling/ActiveProfiler/WARNING_TIME_NANOS +FD: net/minecraft/util/profiling/ActiveProfiler/f_18369_ net/minecraft/util/profiling/ActiveProfiler/LOGGER +FD: net/minecraft/util/profiling/ActiveProfiler/f_18370_ net/minecraft/util/profiling/ActiveProfiler/paths +FD: net/minecraft/util/profiling/ActiveProfiler/f_18371_ net/minecraft/util/profiling/ActiveProfiler/startTimes +FD: net/minecraft/util/profiling/ActiveProfiler/f_18372_ net/minecraft/util/profiling/ActiveProfiler/entries +FD: net/minecraft/util/profiling/ActiveProfiler/f_18373_ net/minecraft/util/profiling/ActiveProfiler/getTickTime +FD: net/minecraft/util/profiling/ActiveProfiler/f_18374_ net/minecraft/util/profiling/ActiveProfiler/getRealTime +FD: net/minecraft/util/profiling/ActiveProfiler/f_18375_ net/minecraft/util/profiling/ActiveProfiler/startTimeNano +FD: net/minecraft/util/profiling/ActiveProfiler/f_18376_ net/minecraft/util/profiling/ActiveProfiler/startTimeTicks +FD: net/minecraft/util/profiling/ActiveProfiler/f_18377_ net/minecraft/util/profiling/ActiveProfiler/path +FD: net/minecraft/util/profiling/ActiveProfiler/f_18378_ net/minecraft/util/profiling/ActiveProfiler/started +FD: net/minecraft/util/profiling/ActiveProfiler/f_18379_ net/minecraft/util/profiling/ActiveProfiler/currentEntry +FD: net/minecraft/util/profiling/ActiveProfiler/f_18380_ net/minecraft/util/profiling/ActiveProfiler/warn +FD: net/minecraft/util/profiling/ActiveProfiler$PathEntry/f_145932_ net/minecraft/util/profiling/ActiveProfiler$PathEntry/maxDuration +FD: net/minecraft/util/profiling/ActiveProfiler$PathEntry/f_145933_ net/minecraft/util/profiling/ActiveProfiler$PathEntry/minDuration +FD: net/minecraft/util/profiling/ActiveProfiler$PathEntry/f_145934_ net/minecraft/util/profiling/ActiveProfiler$PathEntry/accumulatedDuration +FD: net/minecraft/util/profiling/ActiveProfiler$PathEntry/f_18410_ net/minecraft/util/profiling/ActiveProfiler$PathEntry/count +FD: net/minecraft/util/profiling/ActiveProfiler$PathEntry/f_18411_ net/minecraft/util/profiling/ActiveProfiler$PathEntry/counters +FD: net/minecraft/util/profiling/ContinuousProfiler/f_18430_ net/minecraft/util/profiling/ContinuousProfiler/realTime +FD: net/minecraft/util/profiling/ContinuousProfiler/f_18431_ net/minecraft/util/profiling/ContinuousProfiler/tickCount +FD: net/minecraft/util/profiling/ContinuousProfiler/f_18432_ net/minecraft/util/profiling/ContinuousProfiler/profiler +FD: net/minecraft/util/profiling/EmptyProfileResults/f_18441_ net/minecraft/util/profiling/EmptyProfileResults/EMPTY +FD: net/minecraft/util/profiling/FilledProfileResults/f_18452_ net/minecraft/util/profiling/FilledProfileResults/LOGGER +FD: net/minecraft/util/profiling/FilledProfileResults/f_18453_ net/minecraft/util/profiling/FilledProfileResults/EMPTY +FD: net/minecraft/util/profiling/FilledProfileResults/f_18454_ net/minecraft/util/profiling/FilledProfileResults/SPLITTER +FD: net/minecraft/util/profiling/FilledProfileResults/f_18455_ net/minecraft/util/profiling/FilledProfileResults/COUNTER_ENTRY_COMPARATOR +FD: net/minecraft/util/profiling/FilledProfileResults/f_18456_ net/minecraft/util/profiling/FilledProfileResults/entries +FD: net/minecraft/util/profiling/FilledProfileResults/f_18457_ net/minecraft/util/profiling/FilledProfileResults/startTimeNano +FD: net/minecraft/util/profiling/FilledProfileResults/f_18458_ net/minecraft/util/profiling/FilledProfileResults/startTimeTicks +FD: net/minecraft/util/profiling/FilledProfileResults/f_18459_ net/minecraft/util/profiling/FilledProfileResults/endTimeNano +FD: net/minecraft/util/profiling/FilledProfileResults/f_18460_ net/minecraft/util/profiling/FilledProfileResults/endTimeTicks +FD: net/minecraft/util/profiling/FilledProfileResults/f_18461_ net/minecraft/util/profiling/FilledProfileResults/tickDuration +FD: net/minecraft/util/profiling/FilledProfileResults$CounterCollector/f_18537_ net/minecraft/util/profiling/FilledProfileResults$CounterCollector/selfValue +FD: net/minecraft/util/profiling/FilledProfileResults$CounterCollector/f_18538_ net/minecraft/util/profiling/FilledProfileResults$CounterCollector/totalValue +FD: net/minecraft/util/profiling/FilledProfileResults$CounterCollector/f_18539_ net/minecraft/util/profiling/FilledProfileResults$CounterCollector/children +FD: net/minecraft/util/profiling/InactiveProfiler/f_18554_ net/minecraft/util/profiling/InactiveProfiler/INSTANCE +FD: net/minecraft/util/profiling/ProfileResults/f_145956_ net/minecraft/util/profiling/ProfileResults/PATH_SEPARATOR +FD: net/minecraft/util/profiling/ProfilerFiller/f_145958_ net/minecraft/util/profiling/ProfilerFiller/ROOT +FD: net/minecraft/util/profiling/ProfilerFiller$1/f_18587_ net/minecraft/util/profiling/ProfilerFiller$1/val$first +FD: net/minecraft/util/profiling/ProfilerFiller$1/f_18588_ net/minecraft/util/profiling/ProfilerFiller$1/val$second +FD: net/minecraft/util/profiling/ResultField/f_18607_ net/minecraft/util/profiling/ResultField/percentage +FD: net/minecraft/util/profiling/ResultField/f_18608_ net/minecraft/util/profiling/ResultField/globalPercentage +FD: net/minecraft/util/profiling/ResultField/f_18609_ net/minecraft/util/profiling/ResultField/count +FD: net/minecraft/util/profiling/ResultField/f_18610_ net/minecraft/util/profiling/ResultField/name +FD: net/minecraft/util/profiling/SingleTickProfiler/f_18621_ net/minecraft/util/profiling/SingleTickProfiler/LOGGER +FD: net/minecraft/util/profiling/SingleTickProfiler/f_18622_ net/minecraft/util/profiling/SingleTickProfiler/realTime +FD: net/minecraft/util/profiling/SingleTickProfiler/f_18623_ net/minecraft/util/profiling/SingleTickProfiler/saveThreshold +FD: net/minecraft/util/profiling/SingleTickProfiler/f_18624_ net/minecraft/util/profiling/SingleTickProfiler/tick +FD: net/minecraft/util/profiling/SingleTickProfiler/f_18625_ net/minecraft/util/profiling/SingleTickProfiler/location +FD: net/minecraft/util/profiling/SingleTickProfiler/f_18626_ net/minecraft/util/profiling/SingleTickProfiler/profiler +FD: net/minecraft/util/profiling/jfr/Environment/$VALUES net/minecraft/util/profiling/jfr/Environment/$VALUES +FD: net/minecraft/util/profiling/jfr/Environment/CLIENT net/minecraft/util/profiling/jfr/Environment/CLIENT +FD: net/minecraft/util/profiling/jfr/Environment/SERVER net/minecraft/util/profiling/jfr/Environment/SERVER +FD: net/minecraft/util/profiling/jfr/Environment/f_185270_ net/minecraft/util/profiling/jfr/Environment/description +FD: net/minecraft/util/profiling/jfr/JfrProfiler/f_185284_ net/minecraft/util/profiling/jfr/JfrProfiler/ROOT_CATEGORY +FD: net/minecraft/util/profiling/jfr/JfrProfiler/f_185285_ net/minecraft/util/profiling/jfr/JfrProfiler/WORLD_GEN_CATEGORY +FD: net/minecraft/util/profiling/jfr/JfrProfiler/f_185286_ net/minecraft/util/profiling/jfr/JfrProfiler/TICK_CATEGORY +FD: net/minecraft/util/profiling/jfr/JfrProfiler/f_185287_ net/minecraft/util/profiling/jfr/JfrProfiler/NETWORK_CATEGORY +FD: net/minecraft/util/profiling/jfr/JfrProfiler/f_185288_ net/minecraft/util/profiling/jfr/JfrProfiler/LOGGER +FD: net/minecraft/util/profiling/jfr/JfrProfiler/f_185289_ net/minecraft/util/profiling/jfr/JfrProfiler/CUSTOM_EVENTS +FD: net/minecraft/util/profiling/jfr/JfrProfiler/f_185290_ net/minecraft/util/profiling/jfr/JfrProfiler/FLIGHT_RECORDER_CONFIG +FD: net/minecraft/util/profiling/jfr/JfrProfiler/f_185291_ net/minecraft/util/profiling/jfr/JfrProfiler/DATE_TIME_FORMATTER +FD: net/minecraft/util/profiling/jfr/JfrProfiler/f_185292_ net/minecraft/util/profiling/jfr/JfrProfiler/INSTANCE +FD: net/minecraft/util/profiling/jfr/JfrProfiler/f_185293_ net/minecraft/util/profiling/jfr/JfrProfiler/recording +FD: net/minecraft/util/profiling/jfr/JfrProfiler/f_185294_ net/minecraft/util/profiling/jfr/JfrProfiler/currentAverageTickTime +FD: net/minecraft/util/profiling/jfr/JfrProfiler/f_185295_ net/minecraft/util/profiling/jfr/JfrProfiler/networkTrafficByAddress +FD: net/minecraft/util/profiling/jfr/JfrProfiler$1/f_185333_ net/minecraft/util/profiling/jfr/JfrProfiler$1/summaryReporter +FD: net/minecraft/util/profiling/jfr/JfrProfiler$1/f_185334_ net/minecraft/util/profiling/jfr/JfrProfiler$1/this$0 +FD: net/minecraft/util/profiling/jfr/JvmProfiler/f_185340_ net/minecraft/util/profiling/jfr/JvmProfiler/INSTANCE +FD: net/minecraft/util/profiling/jfr/JvmProfiler$NoOpProfiler/f_185355_ net/minecraft/util/profiling/jfr/JvmProfiler$NoOpProfiler/LOGGER +FD: net/minecraft/util/profiling/jfr/JvmProfiler$NoOpProfiler/f_185356_ net/minecraft/util/profiling/jfr/JvmProfiler$NoOpProfiler/noOpCommit +FD: net/minecraft/util/profiling/jfr/Percentiles/f_185382_ net/minecraft/util/profiling/jfr/Percentiles/DEFAULT_INDEXES +FD: net/minecraft/util/profiling/jfr/SummaryReporter/f_185394_ net/minecraft/util/profiling/jfr/SummaryReporter/LOGGER +FD: net/minecraft/util/profiling/jfr/SummaryReporter/f_185395_ net/minecraft/util/profiling/jfr/SummaryReporter/onDeregistration +FD: net/minecraft/util/profiling/jfr/event/ChunkGenerationEvent/EVENT_NAME net/minecraft/util/profiling/jfr/event/ChunkGenerationEvent/EVENT_NAME +FD: net/minecraft/util/profiling/jfr/event/ChunkGenerationEvent/TYPE net/minecraft/util/profiling/jfr/event/ChunkGenerationEvent/TYPE +FD: net/minecraft/util/profiling/jfr/event/ChunkGenerationEvent/chunkPosX net/minecraft/util/profiling/jfr/event/ChunkGenerationEvent/chunkPosX +FD: net/minecraft/util/profiling/jfr/event/ChunkGenerationEvent/chunkPosZ net/minecraft/util/profiling/jfr/event/ChunkGenerationEvent/chunkPosZ +FD: net/minecraft/util/profiling/jfr/event/ChunkGenerationEvent/level net/minecraft/util/profiling/jfr/event/ChunkGenerationEvent/level +FD: net/minecraft/util/profiling/jfr/event/ChunkGenerationEvent/targetStatus net/minecraft/util/profiling/jfr/event/ChunkGenerationEvent/targetStatus +FD: net/minecraft/util/profiling/jfr/event/ChunkGenerationEvent/worldPosX net/minecraft/util/profiling/jfr/event/ChunkGenerationEvent/worldPosX +FD: net/minecraft/util/profiling/jfr/event/ChunkGenerationEvent/worldPosZ net/minecraft/util/profiling/jfr/event/ChunkGenerationEvent/worldPosZ +FD: net/minecraft/util/profiling/jfr/event/ChunkGenerationEvent$Fields/f_195546_ net/minecraft/util/profiling/jfr/event/ChunkGenerationEvent$Fields/WORLD_POS_X +FD: net/minecraft/util/profiling/jfr/event/ChunkGenerationEvent$Fields/f_195547_ net/minecraft/util/profiling/jfr/event/ChunkGenerationEvent$Fields/WORLD_POS_Z +FD: net/minecraft/util/profiling/jfr/event/ChunkGenerationEvent$Fields/f_195548_ net/minecraft/util/profiling/jfr/event/ChunkGenerationEvent$Fields/CHUNK_POS_X +FD: net/minecraft/util/profiling/jfr/event/ChunkGenerationEvent$Fields/f_195549_ net/minecraft/util/profiling/jfr/event/ChunkGenerationEvent$Fields/CHUNK_POS_Z +FD: net/minecraft/util/profiling/jfr/event/ChunkGenerationEvent$Fields/f_195550_ net/minecraft/util/profiling/jfr/event/ChunkGenerationEvent$Fields/STATUS +FD: net/minecraft/util/profiling/jfr/event/ChunkGenerationEvent$Fields/f_195551_ net/minecraft/util/profiling/jfr/event/ChunkGenerationEvent$Fields/LEVEL +FD: net/minecraft/util/profiling/jfr/event/NetworkSummaryEvent/EVENT_NAME net/minecraft/util/profiling/jfr/event/NetworkSummaryEvent/EVENT_NAME +FD: net/minecraft/util/profiling/jfr/event/NetworkSummaryEvent/TYPE net/minecraft/util/profiling/jfr/event/NetworkSummaryEvent/TYPE +FD: net/minecraft/util/profiling/jfr/event/NetworkSummaryEvent/receivedBytes net/minecraft/util/profiling/jfr/event/NetworkSummaryEvent/receivedBytes +FD: net/minecraft/util/profiling/jfr/event/NetworkSummaryEvent/receivedPackets net/minecraft/util/profiling/jfr/event/NetworkSummaryEvent/receivedPackets +FD: net/minecraft/util/profiling/jfr/event/NetworkSummaryEvent/remoteAddress net/minecraft/util/profiling/jfr/event/NetworkSummaryEvent/remoteAddress +FD: net/minecraft/util/profiling/jfr/event/NetworkSummaryEvent/sentBytes net/minecraft/util/profiling/jfr/event/NetworkSummaryEvent/sentBytes +FD: net/minecraft/util/profiling/jfr/event/NetworkSummaryEvent/sentPackets net/minecraft/util/profiling/jfr/event/NetworkSummaryEvent/sentPackets +FD: net/minecraft/util/profiling/jfr/event/NetworkSummaryEvent$Fields/f_195563_ net/minecraft/util/profiling/jfr/event/NetworkSummaryEvent$Fields/REMOTE_ADDRESS +FD: net/minecraft/util/profiling/jfr/event/NetworkSummaryEvent$Fields/f_195564_ net/minecraft/util/profiling/jfr/event/NetworkSummaryEvent$Fields/SENT_BYTES +FD: net/minecraft/util/profiling/jfr/event/NetworkSummaryEvent$Fields/f_195565_ net/minecraft/util/profiling/jfr/event/NetworkSummaryEvent$Fields/RECEIVED_BYTES +FD: net/minecraft/util/profiling/jfr/event/NetworkSummaryEvent$Fields/f_195566_ net/minecraft/util/profiling/jfr/event/NetworkSummaryEvent$Fields/SENT_PACKETS +FD: net/minecraft/util/profiling/jfr/event/NetworkSummaryEvent$Fields/f_195567_ net/minecraft/util/profiling/jfr/event/NetworkSummaryEvent$Fields/RECEIVED_PACKETS +FD: net/minecraft/util/profiling/jfr/event/NetworkSummaryEvent$SumAggregation/f_195569_ net/minecraft/util/profiling/jfr/event/NetworkSummaryEvent$SumAggregation/sentBytes +FD: net/minecraft/util/profiling/jfr/event/NetworkSummaryEvent$SumAggregation/f_195570_ net/minecraft/util/profiling/jfr/event/NetworkSummaryEvent$SumAggregation/sentPackets +FD: net/minecraft/util/profiling/jfr/event/NetworkSummaryEvent$SumAggregation/f_195571_ net/minecraft/util/profiling/jfr/event/NetworkSummaryEvent$SumAggregation/receivedBytes +FD: net/minecraft/util/profiling/jfr/event/NetworkSummaryEvent$SumAggregation/f_195572_ net/minecraft/util/profiling/jfr/event/NetworkSummaryEvent$SumAggregation/receivedPackets +FD: net/minecraft/util/profiling/jfr/event/NetworkSummaryEvent$SumAggregation/f_195573_ net/minecraft/util/profiling/jfr/event/NetworkSummaryEvent$SumAggregation/event +FD: net/minecraft/util/profiling/jfr/event/PacketEvent/bytes net/minecraft/util/profiling/jfr/event/PacketEvent/bytes +FD: net/minecraft/util/profiling/jfr/event/PacketEvent/packetId net/minecraft/util/profiling/jfr/event/PacketEvent/packetId +FD: net/minecraft/util/profiling/jfr/event/PacketEvent/protocolId net/minecraft/util/profiling/jfr/event/PacketEvent/protocolId +FD: net/minecraft/util/profiling/jfr/event/PacketEvent/remoteAddress net/minecraft/util/profiling/jfr/event/PacketEvent/remoteAddress +FD: net/minecraft/util/profiling/jfr/event/PacketEvent$Fields/f_185423_ net/minecraft/util/profiling/jfr/event/PacketEvent$Fields/REMOTE_ADDRESS +FD: net/minecraft/util/profiling/jfr/event/PacketEvent$Fields/f_185424_ net/minecraft/util/profiling/jfr/event/PacketEvent$Fields/PROTOCOL_ID +FD: net/minecraft/util/profiling/jfr/event/PacketEvent$Fields/f_185425_ net/minecraft/util/profiling/jfr/event/PacketEvent$Fields/PACKET_ID +FD: net/minecraft/util/profiling/jfr/event/PacketEvent$Fields/f_185426_ net/minecraft/util/profiling/jfr/event/PacketEvent$Fields/BYTES +FD: net/minecraft/util/profiling/jfr/event/PacketReceivedEvent/NAME net/minecraft/util/profiling/jfr/event/PacketReceivedEvent/NAME +FD: net/minecraft/util/profiling/jfr/event/PacketReceivedEvent/TYPE net/minecraft/util/profiling/jfr/event/PacketReceivedEvent/TYPE +FD: net/minecraft/util/profiling/jfr/event/PacketSentEvent/NAME net/minecraft/util/profiling/jfr/event/PacketSentEvent/NAME +FD: net/minecraft/util/profiling/jfr/event/PacketSentEvent/TYPE net/minecraft/util/profiling/jfr/event/PacketSentEvent/TYPE +FD: net/minecraft/util/profiling/jfr/event/ServerTickTimeEvent/EVENT_NAME net/minecraft/util/profiling/jfr/event/ServerTickTimeEvent/EVENT_NAME +FD: net/minecraft/util/profiling/jfr/event/ServerTickTimeEvent/TYPE net/minecraft/util/profiling/jfr/event/ServerTickTimeEvent/TYPE +FD: net/minecraft/util/profiling/jfr/event/ServerTickTimeEvent/averageTickDurationNanos net/minecraft/util/profiling/jfr/event/ServerTickTimeEvent/averageTickDurationNanos +FD: net/minecraft/util/profiling/jfr/event/ServerTickTimeEvent$Fields/f_195603_ net/minecraft/util/profiling/jfr/event/ServerTickTimeEvent$Fields/AVERAGE_TICK_DURATION +FD: net/minecraft/util/profiling/jfr/event/WorldLoadFinishedEvent/EVENT_NAME net/minecraft/util/profiling/jfr/event/WorldLoadFinishedEvent/EVENT_NAME +FD: net/minecraft/util/profiling/jfr/event/WorldLoadFinishedEvent/TYPE net/minecraft/util/profiling/jfr/event/WorldLoadFinishedEvent/TYPE +FD: net/minecraft/util/profiling/jfr/parse/JfrStatsParser/f_185428_ net/minecraft/util/profiling/jfr/parse/JfrStatsParser/recordingStarted +FD: net/minecraft/util/profiling/jfr/parse/JfrStatsParser/f_185429_ net/minecraft/util/profiling/jfr/parse/JfrStatsParser/recordingEnded +FD: net/minecraft/util/profiling/jfr/parse/JfrStatsParser/f_185430_ net/minecraft/util/profiling/jfr/parse/JfrStatsParser/chunkGenStats +FD: net/minecraft/util/profiling/jfr/parse/JfrStatsParser/f_185431_ net/minecraft/util/profiling/jfr/parse/JfrStatsParser/cpuLoadStat +FD: net/minecraft/util/profiling/jfr/parse/JfrStatsParser/f_185432_ net/minecraft/util/profiling/jfr/parse/JfrStatsParser/receivedPackets +FD: net/minecraft/util/profiling/jfr/parse/JfrStatsParser/f_185433_ net/minecraft/util/profiling/jfr/parse/JfrStatsParser/sentPackets +FD: net/minecraft/util/profiling/jfr/parse/JfrStatsParser/f_185434_ net/minecraft/util/profiling/jfr/parse/JfrStatsParser/fileWrites +FD: net/minecraft/util/profiling/jfr/parse/JfrStatsParser/f_185435_ net/minecraft/util/profiling/jfr/parse/JfrStatsParser/fileReads +FD: net/minecraft/util/profiling/jfr/parse/JfrStatsParser/f_185436_ net/minecraft/util/profiling/jfr/parse/JfrStatsParser/garbageCollections +FD: net/minecraft/util/profiling/jfr/parse/JfrStatsParser/f_185437_ net/minecraft/util/profiling/jfr/parse/JfrStatsParser/gcTotalDuration +FD: net/minecraft/util/profiling/jfr/parse/JfrStatsParser/f_185438_ net/minecraft/util/profiling/jfr/parse/JfrStatsParser/gcHeapStats +FD: net/minecraft/util/profiling/jfr/parse/JfrStatsParser/f_185439_ net/minecraft/util/profiling/jfr/parse/JfrStatsParser/threadAllocationStats +FD: net/minecraft/util/profiling/jfr/parse/JfrStatsParser/f_185440_ net/minecraft/util/profiling/jfr/parse/JfrStatsParser/tickTimes +FD: net/minecraft/util/profiling/jfr/parse/JfrStatsParser/f_185441_ net/minecraft/util/profiling/jfr/parse/JfrStatsParser/worldCreationDuration +FD: net/minecraft/util/profiling/jfr/parse/JfrStatsParser$1/f_185466_ net/minecraft/util/profiling/jfr/parse/JfrStatsParser$1/val$recordingFile +FD: net/minecraft/util/profiling/jfr/parse/JfrStatsParser$MutableCountAndSize/f_185472_ net/minecraft/util/profiling/jfr/parse/JfrStatsParser$MutableCountAndSize/count +FD: net/minecraft/util/profiling/jfr/parse/JfrStatsParser$MutableCountAndSize/f_185473_ net/minecraft/util/profiling/jfr/parse/JfrStatsParser$MutableCountAndSize/totalSize +FD: net/minecraft/util/profiling/jfr/parse/JfrStatsResult/f_185478_ net/minecraft/util/profiling/jfr/parse/JfrStatsResult/recordingStarted +FD: net/minecraft/util/profiling/jfr/parse/JfrStatsResult/f_185479_ net/minecraft/util/profiling/jfr/parse/JfrStatsResult/recordingEnded +FD: net/minecraft/util/profiling/jfr/parse/JfrStatsResult/f_185480_ net/minecraft/util/profiling/jfr/parse/JfrStatsResult/recordingDuration +FD: net/minecraft/util/profiling/jfr/parse/JfrStatsResult/f_185481_ net/minecraft/util/profiling/jfr/parse/JfrStatsResult/worldCreationDuration +FD: net/minecraft/util/profiling/jfr/parse/JfrStatsResult/f_185482_ net/minecraft/util/profiling/jfr/parse/JfrStatsResult/tickTimes +FD: net/minecraft/util/profiling/jfr/parse/JfrStatsResult/f_185483_ net/minecraft/util/profiling/jfr/parse/JfrStatsResult/cpuLoadStats +FD: net/minecraft/util/profiling/jfr/parse/JfrStatsResult/f_185484_ net/minecraft/util/profiling/jfr/parse/JfrStatsResult/heapSummary +FD: net/minecraft/util/profiling/jfr/parse/JfrStatsResult/f_185485_ net/minecraft/util/profiling/jfr/parse/JfrStatsResult/threadAllocationSummary +FD: net/minecraft/util/profiling/jfr/parse/JfrStatsResult/f_185486_ net/minecraft/util/profiling/jfr/parse/JfrStatsResult/receivedPacketsSummary +FD: net/minecraft/util/profiling/jfr/parse/JfrStatsResult/f_185487_ net/minecraft/util/profiling/jfr/parse/JfrStatsResult/sentPacketsSummary +FD: net/minecraft/util/profiling/jfr/parse/JfrStatsResult/f_185488_ net/minecraft/util/profiling/jfr/parse/JfrStatsResult/fileWrites +FD: net/minecraft/util/profiling/jfr/parse/JfrStatsResult/f_185489_ net/minecraft/util/profiling/jfr/parse/JfrStatsResult/fileReads +FD: net/minecraft/util/profiling/jfr/parse/JfrStatsResult/f_185490_ net/minecraft/util/profiling/jfr/parse/JfrStatsResult/chunkGenStats +FD: net/minecraft/util/profiling/jfr/serialize/JfrResultJsonSerializer/f_185528_ net/minecraft/util/profiling/jfr/serialize/JfrResultJsonSerializer/gson +FD: net/minecraft/util/profiling/jfr/serialize/JfrResultJsonSerializer/f_185529_ net/minecraft/util/profiling/jfr/serialize/JfrResultJsonSerializer/BYTES_PER_SECOND +FD: net/minecraft/util/profiling/jfr/serialize/JfrResultJsonSerializer/f_185530_ net/minecraft/util/profiling/jfr/serialize/JfrResultJsonSerializer/COUNT +FD: net/minecraft/util/profiling/jfr/serialize/JfrResultJsonSerializer/f_185531_ net/minecraft/util/profiling/jfr/serialize/JfrResultJsonSerializer/DURATION_NANOS_TOTAL +FD: net/minecraft/util/profiling/jfr/serialize/JfrResultJsonSerializer/f_185532_ net/minecraft/util/profiling/jfr/serialize/JfrResultJsonSerializer/TOTAL_BYTES +FD: net/minecraft/util/profiling/jfr/serialize/JfrResultJsonSerializer/f_185533_ net/minecraft/util/profiling/jfr/serialize/JfrResultJsonSerializer/COUNT_PER_SECOND +FD: net/minecraft/util/profiling/jfr/stats/ChunkGenStat/f_185592_ net/minecraft/util/profiling/jfr/stats/ChunkGenStat/duration +FD: net/minecraft/util/profiling/jfr/stats/ChunkGenStat/f_185593_ net/minecraft/util/profiling/jfr/stats/ChunkGenStat/chunkPos +FD: net/minecraft/util/profiling/jfr/stats/ChunkGenStat/f_185594_ net/minecraft/util/profiling/jfr/stats/ChunkGenStat/worldPos +FD: net/minecraft/util/profiling/jfr/stats/ChunkGenStat/f_185595_ net/minecraft/util/profiling/jfr/stats/ChunkGenStat/status +FD: net/minecraft/util/profiling/jfr/stats/ChunkGenStat/f_185596_ net/minecraft/util/profiling/jfr/stats/ChunkGenStat/level +FD: net/minecraft/util/profiling/jfr/stats/CpuLoadStat/f_185614_ net/minecraft/util/profiling/jfr/stats/CpuLoadStat/jvm +FD: net/minecraft/util/profiling/jfr/stats/CpuLoadStat/f_185615_ net/minecraft/util/profiling/jfr/stats/CpuLoadStat/userJvm +FD: net/minecraft/util/profiling/jfr/stats/CpuLoadStat/f_185616_ net/minecraft/util/profiling/jfr/stats/CpuLoadStat/system +FD: net/minecraft/util/profiling/jfr/stats/FileIOStat/f_185630_ net/minecraft/util/profiling/jfr/stats/FileIOStat/duration +FD: net/minecraft/util/profiling/jfr/stats/FileIOStat/f_185631_ net/minecraft/util/profiling/jfr/stats/FileIOStat/path +FD: net/minecraft/util/profiling/jfr/stats/FileIOStat/f_185632_ net/minecraft/util/profiling/jfr/stats/FileIOStat/bytes +FD: net/minecraft/util/profiling/jfr/stats/FileIOStat$Summary/f_185657_ net/minecraft/util/profiling/jfr/stats/FileIOStat$Summary/totalBytes +FD: net/minecraft/util/profiling/jfr/stats/FileIOStat$Summary/f_185658_ net/minecraft/util/profiling/jfr/stats/FileIOStat$Summary/bytesPerSecond +FD: net/minecraft/util/profiling/jfr/stats/FileIOStat$Summary/f_185659_ net/minecraft/util/profiling/jfr/stats/FileIOStat$Summary/counts +FD: net/minecraft/util/profiling/jfr/stats/FileIOStat$Summary/f_185660_ net/minecraft/util/profiling/jfr/stats/FileIOStat$Summary/countsPerSecond +FD: net/minecraft/util/profiling/jfr/stats/FileIOStat$Summary/f_185661_ net/minecraft/util/profiling/jfr/stats/FileIOStat$Summary/timeSpentInIO +FD: net/minecraft/util/profiling/jfr/stats/FileIOStat$Summary/f_185662_ net/minecraft/util/profiling/jfr/stats/FileIOStat$Summary/topTenContributorsByTotalBytes +FD: net/minecraft/util/profiling/jfr/stats/GcHeapStat/f_185680_ net/minecraft/util/profiling/jfr/stats/GcHeapStat/timestamp +FD: net/minecraft/util/profiling/jfr/stats/GcHeapStat/f_185681_ net/minecraft/util/profiling/jfr/stats/GcHeapStat/heapUsed +FD: net/minecraft/util/profiling/jfr/stats/GcHeapStat/f_185682_ net/minecraft/util/profiling/jfr/stats/GcHeapStat/timing +FD: net/minecraft/util/profiling/jfr/stats/GcHeapStat$Summary/f_185705_ net/minecraft/util/profiling/jfr/stats/GcHeapStat$Summary/duration +FD: net/minecraft/util/profiling/jfr/stats/GcHeapStat$Summary/f_185706_ net/minecraft/util/profiling/jfr/stats/GcHeapStat$Summary/gcTotalDuration +FD: net/minecraft/util/profiling/jfr/stats/GcHeapStat$Summary/f_185707_ net/minecraft/util/profiling/jfr/stats/GcHeapStat$Summary/totalGCs +FD: net/minecraft/util/profiling/jfr/stats/GcHeapStat$Summary/f_185708_ net/minecraft/util/profiling/jfr/stats/GcHeapStat$Summary/allocationRateBytesPerSecond +FD: net/minecraft/util/profiling/jfr/stats/GcHeapStat$Timing/$VALUES net/minecraft/util/profiling/jfr/stats/GcHeapStat$Timing/$VALUES +FD: net/minecraft/util/profiling/jfr/stats/GcHeapStat$Timing/AFTER_GC net/minecraft/util/profiling/jfr/stats/GcHeapStat$Timing/AFTER_GC +FD: net/minecraft/util/profiling/jfr/stats/GcHeapStat$Timing/BEFORE_GC net/minecraft/util/profiling/jfr/stats/GcHeapStat$Timing/BEFORE_GC +FD: net/minecraft/util/profiling/jfr/stats/NetworkPacketSummary/f_185734_ net/minecraft/util/profiling/jfr/stats/NetworkPacketSummary/totalPacketCountAndSize +FD: net/minecraft/util/profiling/jfr/stats/NetworkPacketSummary/f_185735_ net/minecraft/util/profiling/jfr/stats/NetworkPacketSummary/largestSizeContributors +FD: net/minecraft/util/profiling/jfr/stats/NetworkPacketSummary/f_185736_ net/minecraft/util/profiling/jfr/stats/NetworkPacketSummary/recordingDuration +FD: net/minecraft/util/profiling/jfr/stats/NetworkPacketSummary$PacketCountAndSize/f_185746_ net/minecraft/util/profiling/jfr/stats/NetworkPacketSummary$PacketCountAndSize/totalCount +FD: net/minecraft/util/profiling/jfr/stats/NetworkPacketSummary$PacketCountAndSize/f_185747_ net/minecraft/util/profiling/jfr/stats/NetworkPacketSummary$PacketCountAndSize/totalSize +FD: net/minecraft/util/profiling/jfr/stats/NetworkPacketSummary$PacketCountAndSize/f_185748_ net/minecraft/util/profiling/jfr/stats/NetworkPacketSummary$PacketCountAndSize/SIZE_THEN_COUNT +FD: net/minecraft/util/profiling/jfr/stats/NetworkPacketSummary$PacketIdentification/f_185761_ net/minecraft/util/profiling/jfr/stats/NetworkPacketSummary$PacketIdentification/direction +FD: net/minecraft/util/profiling/jfr/stats/NetworkPacketSummary$PacketIdentification/f_185762_ net/minecraft/util/profiling/jfr/stats/NetworkPacketSummary$PacketIdentification/protocolId +FD: net/minecraft/util/profiling/jfr/stats/NetworkPacketSummary$PacketIdentification/f_185763_ net/minecraft/util/profiling/jfr/stats/NetworkPacketSummary$PacketIdentification/packetId +FD: net/minecraft/util/profiling/jfr/stats/NetworkPacketSummary$PacketIdentification/f_185764_ net/minecraft/util/profiling/jfr/stats/NetworkPacketSummary$PacketIdentification/PACKET_NAME_BY_ID +FD: net/minecraft/util/profiling/jfr/stats/ThreadAllocationStat/f_185786_ net/minecraft/util/profiling/jfr/stats/ThreadAllocationStat/timestamp +FD: net/minecraft/util/profiling/jfr/stats/ThreadAllocationStat/f_185787_ net/minecraft/util/profiling/jfr/stats/ThreadAllocationStat/threadName +FD: net/minecraft/util/profiling/jfr/stats/ThreadAllocationStat/f_185788_ net/minecraft/util/profiling/jfr/stats/ThreadAllocationStat/totalBytes +FD: net/minecraft/util/profiling/jfr/stats/ThreadAllocationStat/f_185789_ net/minecraft/util/profiling/jfr/stats/ThreadAllocationStat/UNKNOWN_THREAD +FD: net/minecraft/util/profiling/jfr/stats/ThreadAllocationStat$Summary/f_185811_ net/minecraft/util/profiling/jfr/stats/ThreadAllocationStat$Summary/allocationsPerSecondByThread +FD: net/minecraft/util/profiling/jfr/stats/TickTimeStat/f_185819_ net/minecraft/util/profiling/jfr/stats/TickTimeStat/timestamp +FD: net/minecraft/util/profiling/jfr/stats/TickTimeStat/f_185820_ net/minecraft/util/profiling/jfr/stats/TickTimeStat/currentAverage +FD: net/minecraft/util/profiling/jfr/stats/TimedStatSummary/f_185833_ net/minecraft/util/profiling/jfr/stats/TimedStatSummary/fastest +FD: net/minecraft/util/profiling/jfr/stats/TimedStatSummary/f_185834_ net/minecraft/util/profiling/jfr/stats/TimedStatSummary/slowest +FD: net/minecraft/util/profiling/jfr/stats/TimedStatSummary/f_185835_ net/minecraft/util/profiling/jfr/stats/TimedStatSummary/secondSlowest +FD: net/minecraft/util/profiling/jfr/stats/TimedStatSummary/f_185836_ net/minecraft/util/profiling/jfr/stats/TimedStatSummary/count +FD: net/minecraft/util/profiling/jfr/stats/TimedStatSummary/f_185837_ net/minecraft/util/profiling/jfr/stats/TimedStatSummary/percentilesNanos +FD: net/minecraft/util/profiling/jfr/stats/TimedStatSummary/f_185838_ net/minecraft/util/profiling/jfr/stats/TimedStatSummary/totalDuration +FD: net/minecraft/util/profiling/metrics/MetricCategory/$VALUES net/minecraft/util/profiling/metrics/MetricCategory/$VALUES +FD: net/minecraft/util/profiling/metrics/MetricCategory/CHUNK_RENDERING net/minecraft/util/profiling/metrics/MetricCategory/CHUNK_RENDERING +FD: net/minecraft/util/profiling/metrics/MetricCategory/CHUNK_RENDERING_DISPATCHING net/minecraft/util/profiling/metrics/MetricCategory/CHUNK_RENDERING_DISPATCHING +FD: net/minecraft/util/profiling/metrics/MetricCategory/CPU net/minecraft/util/profiling/metrics/MetricCategory/CPU +FD: net/minecraft/util/profiling/metrics/MetricCategory/EVENT_LOOPS net/minecraft/util/profiling/metrics/MetricCategory/EVENT_LOOPS +FD: net/minecraft/util/profiling/metrics/MetricCategory/GPU net/minecraft/util/profiling/metrics/MetricCategory/GPU +FD: net/minecraft/util/profiling/metrics/MetricCategory/JVM net/minecraft/util/profiling/metrics/MetricCategory/JVM +FD: net/minecraft/util/profiling/metrics/MetricCategory/MAIL_BOXES net/minecraft/util/profiling/metrics/MetricCategory/MAIL_BOXES +FD: net/minecraft/util/profiling/metrics/MetricCategory/PATH_FINDING net/minecraft/util/profiling/metrics/MetricCategory/PATH_FINDING +FD: net/minecraft/util/profiling/metrics/MetricCategory/TICK_LOOP net/minecraft/util/profiling/metrics/MetricCategory/TICK_LOOP +FD: net/minecraft/util/profiling/metrics/MetricCategory/f_145974_ net/minecraft/util/profiling/metrics/MetricCategory/description +FD: net/minecraft/util/profiling/metrics/MetricSampler/f_145986_ net/minecraft/util/profiling/metrics/MetricSampler/thresholdTest +FD: net/minecraft/util/profiling/metrics/MetricSampler/f_145987_ net/minecraft/util/profiling/metrics/MetricSampler/name +FD: net/minecraft/util/profiling/metrics/MetricSampler/f_145988_ net/minecraft/util/profiling/metrics/MetricSampler/category +FD: net/minecraft/util/profiling/metrics/MetricSampler/f_145989_ net/minecraft/util/profiling/metrics/MetricSampler/sampler +FD: net/minecraft/util/profiling/metrics/MetricSampler/f_145990_ net/minecraft/util/profiling/metrics/MetricSampler/ticks +FD: net/minecraft/util/profiling/metrics/MetricSampler/f_145991_ net/minecraft/util/profiling/metrics/MetricSampler/values +FD: net/minecraft/util/profiling/metrics/MetricSampler/f_145992_ net/minecraft/util/profiling/metrics/MetricSampler/isRunning +FD: net/minecraft/util/profiling/metrics/MetricSampler/f_145993_ net/minecraft/util/profiling/metrics/MetricSampler/beforeTick +FD: net/minecraft/util/profiling/metrics/MetricSampler/f_145994_ net/minecraft/util/profiling/metrics/MetricSampler/currentValue +FD: net/minecraft/util/profiling/metrics/MetricSampler$MetricSamplerBuilder/f_146028_ net/minecraft/util/profiling/metrics/MetricSampler$MetricSamplerBuilder/name +FD: net/minecraft/util/profiling/metrics/MetricSampler$MetricSamplerBuilder/f_146029_ net/minecraft/util/profiling/metrics/MetricSampler$MetricSamplerBuilder/category +FD: net/minecraft/util/profiling/metrics/MetricSampler$MetricSamplerBuilder/f_146030_ net/minecraft/util/profiling/metrics/MetricSampler$MetricSamplerBuilder/sampler +FD: net/minecraft/util/profiling/metrics/MetricSampler$MetricSamplerBuilder/f_146031_ net/minecraft/util/profiling/metrics/MetricSampler$MetricSamplerBuilder/context +FD: net/minecraft/util/profiling/metrics/MetricSampler$MetricSamplerBuilder/f_146032_ net/minecraft/util/profiling/metrics/MetricSampler$MetricSamplerBuilder/beforeTick +FD: net/minecraft/util/profiling/metrics/MetricSampler$MetricSamplerBuilder/f_146033_ net/minecraft/util/profiling/metrics/MetricSampler$MetricSamplerBuilder/thresholdTest +FD: net/minecraft/util/profiling/metrics/MetricSampler$SamplerResult/f_146049_ net/minecraft/util/profiling/metrics/MetricSampler$SamplerResult/recording +FD: net/minecraft/util/profiling/metrics/MetricSampler$SamplerResult/f_146050_ net/minecraft/util/profiling/metrics/MetricSampler$SamplerResult/firstTick +FD: net/minecraft/util/profiling/metrics/MetricSampler$SamplerResult/f_146051_ net/minecraft/util/profiling/metrics/MetricSampler$SamplerResult/lastTick +FD: net/minecraft/util/profiling/metrics/MetricSampler$ValueIncreasedByPercentage/f_146061_ net/minecraft/util/profiling/metrics/MetricSampler$ValueIncreasedByPercentage/percentageIncreaseThreshold +FD: net/minecraft/util/profiling/metrics/MetricSampler$ValueIncreasedByPercentage/f_146062_ net/minecraft/util/profiling/metrics/MetricSampler$ValueIncreasedByPercentage/previousValue +FD: net/minecraft/util/profiling/metrics/MetricsRegistry/f_146067_ net/minecraft/util/profiling/metrics/MetricsRegistry/INSTANCE +FD: net/minecraft/util/profiling/metrics/MetricsRegistry/f_146068_ net/minecraft/util/profiling/metrics/MetricsRegistry/measuredInstances +FD: net/minecraft/util/profiling/metrics/MetricsRegistry$AggregatedMetricSampler/f_146080_ net/minecraft/util/profiling/metrics/MetricsRegistry$AggregatedMetricSampler/delegates +FD: net/minecraft/util/profiling/metrics/profiling/ActiveMetricsRecorder/f_146104_ net/minecraft/util/profiling/metrics/profiling/ActiveMetricsRecorder/PROFILING_MAX_DURATION_SECONDS +FD: net/minecraft/util/profiling/metrics/profiling/ActiveMetricsRecorder/f_146105_ net/minecraft/util/profiling/metrics/profiling/ActiveMetricsRecorder/globalOnReportFinished +FD: net/minecraft/util/profiling/metrics/profiling/ActiveMetricsRecorder/f_146106_ net/minecraft/util/profiling/metrics/profiling/ActiveMetricsRecorder/deviationsBySampler +FD: net/minecraft/util/profiling/metrics/profiling/ActiveMetricsRecorder/f_146107_ net/minecraft/util/profiling/metrics/profiling/ActiveMetricsRecorder/taskProfiler +FD: net/minecraft/util/profiling/metrics/profiling/ActiveMetricsRecorder/f_146108_ net/minecraft/util/profiling/metrics/profiling/ActiveMetricsRecorder/ioExecutor +FD: net/minecraft/util/profiling/metrics/profiling/ActiveMetricsRecorder/f_146109_ net/minecraft/util/profiling/metrics/profiling/ActiveMetricsRecorder/metricsPersister +FD: net/minecraft/util/profiling/metrics/profiling/ActiveMetricsRecorder/f_146110_ net/minecraft/util/profiling/metrics/profiling/ActiveMetricsRecorder/onProfilingEnd +FD: net/minecraft/util/profiling/metrics/profiling/ActiveMetricsRecorder/f_146111_ net/minecraft/util/profiling/metrics/profiling/ActiveMetricsRecorder/onReportFinished +FD: net/minecraft/util/profiling/metrics/profiling/ActiveMetricsRecorder/f_146112_ net/minecraft/util/profiling/metrics/profiling/ActiveMetricsRecorder/metricsSamplerProvider +FD: net/minecraft/util/profiling/metrics/profiling/ActiveMetricsRecorder/f_146113_ net/minecraft/util/profiling/metrics/profiling/ActiveMetricsRecorder/wallTimeSource +FD: net/minecraft/util/profiling/metrics/profiling/ActiveMetricsRecorder/f_146114_ net/minecraft/util/profiling/metrics/profiling/ActiveMetricsRecorder/deadlineNano +FD: net/minecraft/util/profiling/metrics/profiling/ActiveMetricsRecorder/f_146115_ net/minecraft/util/profiling/metrics/profiling/ActiveMetricsRecorder/currentTick +FD: net/minecraft/util/profiling/metrics/profiling/ActiveMetricsRecorder/f_146116_ net/minecraft/util/profiling/metrics/profiling/ActiveMetricsRecorder/singleTickProfiler +FD: net/minecraft/util/profiling/metrics/profiling/ActiveMetricsRecorder/f_146117_ net/minecraft/util/profiling/metrics/profiling/ActiveMetricsRecorder/killSwitch +FD: net/minecraft/util/profiling/metrics/profiling/ActiveMetricsRecorder/f_146118_ net/minecraft/util/profiling/metrics/profiling/ActiveMetricsRecorder/thisTickSamplers +FD: net/minecraft/util/profiling/metrics/profiling/InactiveMetricsRecorder/f_146153_ net/minecraft/util/profiling/metrics/profiling/InactiveMetricsRecorder/INSTANCE +FD: net/minecraft/util/profiling/metrics/profiling/ProfilerSamplerAdapter/f_146161_ net/minecraft/util/profiling/metrics/profiling/ProfilerSamplerAdapter/previouslyFoundSamplerNames +FD: net/minecraft/util/profiling/metrics/profiling/ServerMetricsSamplersProvider/f_146177_ net/minecraft/util/profiling/metrics/profiling/ServerMetricsSamplersProvider/samplers +FD: net/minecraft/util/profiling/metrics/profiling/ServerMetricsSamplersProvider/f_146178_ net/minecraft/util/profiling/metrics/profiling/ServerMetricsSamplersProvider/samplerFactory +FD: net/minecraft/util/profiling/metrics/profiling/ServerMetricsSamplersProvider/f_181117_ net/minecraft/util/profiling/metrics/profiling/ServerMetricsSamplersProvider/LOGGER +FD: net/minecraft/util/profiling/metrics/profiling/ServerMetricsSamplersProvider$1/f_146196_ net/minecraft/util/profiling/metrics/profiling/ServerMetricsSamplersProvider$1/val$timeSource +FD: net/minecraft/util/profiling/metrics/profiling/ServerMetricsSamplersProvider$CpuStats/f_146200_ net/minecraft/util/profiling/metrics/profiling/ServerMetricsSamplersProvider$CpuStats/nrOfCpus +FD: net/minecraft/util/profiling/metrics/profiling/ServerMetricsSamplersProvider$CpuStats/f_146201_ net/minecraft/util/profiling/metrics/profiling/ServerMetricsSamplersProvider$CpuStats/systemInfo +FD: net/minecraft/util/profiling/metrics/profiling/ServerMetricsSamplersProvider$CpuStats/f_146202_ net/minecraft/util/profiling/metrics/profiling/ServerMetricsSamplersProvider$CpuStats/processor +FD: net/minecraft/util/profiling/metrics/profiling/ServerMetricsSamplersProvider$CpuStats/f_146203_ net/minecraft/util/profiling/metrics/profiling/ServerMetricsSamplersProvider$CpuStats/previousCpuLoadTick +FD: net/minecraft/util/profiling/metrics/profiling/ServerMetricsSamplersProvider$CpuStats/f_146204_ net/minecraft/util/profiling/metrics/profiling/ServerMetricsSamplersProvider$CpuStats/currentLoad +FD: net/minecraft/util/profiling/metrics/profiling/ServerMetricsSamplersProvider$CpuStats/f_146205_ net/minecraft/util/profiling/metrics/profiling/ServerMetricsSamplersProvider$CpuStats/lastPollMs +FD: net/minecraft/util/profiling/metrics/storage/MetricsPersister/f_146209_ net/minecraft/util/profiling/metrics/storage/MetricsPersister/PROFILING_RESULTS_DIR +FD: net/minecraft/util/profiling/metrics/storage/MetricsPersister/f_146210_ net/minecraft/util/profiling/metrics/storage/MetricsPersister/METRICS_DIR_NAME +FD: net/minecraft/util/profiling/metrics/storage/MetricsPersister/f_146211_ net/minecraft/util/profiling/metrics/storage/MetricsPersister/DEVIATIONS_DIR_NAME +FD: net/minecraft/util/profiling/metrics/storage/MetricsPersister/f_146212_ net/minecraft/util/profiling/metrics/storage/MetricsPersister/PROFILING_RESULT_FILENAME +FD: net/minecraft/util/profiling/metrics/storage/MetricsPersister/f_146213_ net/minecraft/util/profiling/metrics/storage/MetricsPersister/LOGGER +FD: net/minecraft/util/profiling/metrics/storage/MetricsPersister/f_146214_ net/minecraft/util/profiling/metrics/storage/MetricsPersister/rootFolderName +FD: net/minecraft/util/profiling/metrics/storage/RecordedDeviation/f_146254_ net/minecraft/util/profiling/metrics/storage/RecordedDeviation/timestamp +FD: net/minecraft/util/profiling/metrics/storage/RecordedDeviation/f_146255_ net/minecraft/util/profiling/metrics/storage/RecordedDeviation/tick +FD: net/minecraft/util/profiling/metrics/storage/RecordedDeviation/f_146256_ net/minecraft/util/profiling/metrics/storage/RecordedDeviation/profilerResultAtTick +FD: net/minecraft/util/random/SimpleWeightedRandomList$Builder/f_146268_ net/minecraft/util/random/SimpleWeightedRandomList$Builder/result +FD: net/minecraft/util/random/Weight/f_146274_ net/minecraft/util/random/Weight/CODEC +FD: net/minecraft/util/random/Weight/f_146275_ net/minecraft/util/random/Weight/ONE +FD: net/minecraft/util/random/Weight/f_146276_ net/minecraft/util/random/Weight/LOGGER +FD: net/minecraft/util/random/Weight/f_146277_ net/minecraft/util/random/Weight/value +FD: net/minecraft/util/random/WeightedEntry$IntrusiveBase/f_146293_ net/minecraft/util/random/WeightedEntry$IntrusiveBase/weight +FD: net/minecraft/util/random/WeightedEntry$Wrapper/f_146299_ net/minecraft/util/random/WeightedEntry$Wrapper/data +FD: net/minecraft/util/random/WeightedEntry$Wrapper/f_146300_ net/minecraft/util/random/WeightedEntry$Wrapper/weight +FD: net/minecraft/util/random/WeightedRandomList/f_146324_ net/minecraft/util/random/WeightedRandomList/totalWeight +FD: net/minecraft/util/random/WeightedRandomList/f_146325_ net/minecraft/util/random/WeightedRandomList/items +FD: net/minecraft/util/thread/BlockableEventLoop/f_18680_ net/minecraft/util/thread/BlockableEventLoop/name +FD: net/minecraft/util/thread/BlockableEventLoop/f_18681_ net/minecraft/util/thread/BlockableEventLoop/LOGGER +FD: net/minecraft/util/thread/BlockableEventLoop/f_18682_ net/minecraft/util/thread/BlockableEventLoop/pendingRunnables +FD: net/minecraft/util/thread/BlockableEventLoop/f_18683_ net/minecraft/util/thread/BlockableEventLoop/blockingCount +FD: net/minecraft/util/thread/NamedThreadFactory/f_146340_ net/minecraft/util/thread/NamedThreadFactory/LOGGER +FD: net/minecraft/util/thread/NamedThreadFactory/f_146341_ net/minecraft/util/thread/NamedThreadFactory/group +FD: net/minecraft/util/thread/NamedThreadFactory/f_146342_ net/minecraft/util/thread/NamedThreadFactory/threadNumber +FD: net/minecraft/util/thread/NamedThreadFactory/f_146343_ net/minecraft/util/thread/NamedThreadFactory/namePrefix +FD: net/minecraft/util/thread/ProcessorHandle$1/f_18725_ net/minecraft/util/thread/ProcessorHandle$1/val$name +FD: net/minecraft/util/thread/ProcessorHandle$1/f_18726_ net/minecraft/util/thread/ProcessorHandle$1/val$tell +FD: net/minecraft/util/thread/ProcessorMailbox/f_146353_ net/minecraft/util/thread/ProcessorMailbox/CLOSED_BIT +FD: net/minecraft/util/thread/ProcessorMailbox/f_146354_ net/minecraft/util/thread/ProcessorMailbox/SCHEDULED_BIT +FD: net/minecraft/util/thread/ProcessorMailbox/f_18734_ net/minecraft/util/thread/ProcessorMailbox/queue +FD: net/minecraft/util/thread/ProcessorMailbox/f_18735_ net/minecraft/util/thread/ProcessorMailbox/LOGGER +FD: net/minecraft/util/thread/ProcessorMailbox/f_18736_ net/minecraft/util/thread/ProcessorMailbox/status +FD: net/minecraft/util/thread/ProcessorMailbox/f_18737_ net/minecraft/util/thread/ProcessorMailbox/dispatcher +FD: net/minecraft/util/thread/ProcessorMailbox/f_18738_ net/minecraft/util/thread/ProcessorMailbox/name +FD: net/minecraft/util/thread/ReentrantBlockableEventLoop/f_18763_ net/minecraft/util/thread/ReentrantBlockableEventLoop/reentrantCount +FD: net/minecraft/util/thread/StrictQueue$FixedPriorityQueue/f_185865_ net/minecraft/util/thread/StrictQueue$FixedPriorityQueue/queues +FD: net/minecraft/util/thread/StrictQueue$FixedPriorityQueue/f_185866_ net/minecraft/util/thread/StrictQueue$FixedPriorityQueue/size +FD: net/minecraft/util/thread/StrictQueue$IntRunnable/f_18783_ net/minecraft/util/thread/StrictQueue$IntRunnable/priority +FD: net/minecraft/util/thread/StrictQueue$IntRunnable/f_18784_ net/minecraft/util/thread/StrictQueue$IntRunnable/task +FD: net/minecraft/util/thread/StrictQueue$QueueStrictQueue/f_18790_ net/minecraft/util/thread/StrictQueue$QueueStrictQueue/queue +FD: net/minecraft/util/valueproviders/BiasedToBottomInt/f_146359_ net/minecraft/util/valueproviders/BiasedToBottomInt/CODEC +FD: net/minecraft/util/valueproviders/BiasedToBottomInt/f_146360_ net/minecraft/util/valueproviders/BiasedToBottomInt/minInclusive +FD: net/minecraft/util/valueproviders/BiasedToBottomInt/f_146361_ net/minecraft/util/valueproviders/BiasedToBottomInt/maxInclusive +FD: net/minecraft/util/valueproviders/ClampedInt/f_146383_ net/minecraft/util/valueproviders/ClampedInt/CODEC +FD: net/minecraft/util/valueproviders/ClampedInt/f_146384_ net/minecraft/util/valueproviders/ClampedInt/source +FD: net/minecraft/util/valueproviders/ClampedInt/f_146385_ net/minecraft/util/valueproviders/ClampedInt/minInclusive +FD: net/minecraft/util/valueproviders/ClampedInt/f_146386_ net/minecraft/util/valueproviders/ClampedInt/maxInclusive +FD: net/minecraft/util/valueproviders/ClampedNormalFloat/f_146411_ net/minecraft/util/valueproviders/ClampedNormalFloat/CODEC +FD: net/minecraft/util/valueproviders/ClampedNormalFloat/f_146412_ net/minecraft/util/valueproviders/ClampedNormalFloat/mean +FD: net/minecraft/util/valueproviders/ClampedNormalFloat/f_146413_ net/minecraft/util/valueproviders/ClampedNormalFloat/deviation +FD: net/minecraft/util/valueproviders/ClampedNormalFloat/f_146414_ net/minecraft/util/valueproviders/ClampedNormalFloat/min +FD: net/minecraft/util/valueproviders/ClampedNormalFloat/f_146415_ net/minecraft/util/valueproviders/ClampedNormalFloat/max +FD: net/minecraft/util/valueproviders/ClampedNormalInt/f_185867_ net/minecraft/util/valueproviders/ClampedNormalInt/CODEC +FD: net/minecraft/util/valueproviders/ClampedNormalInt/f_185868_ net/minecraft/util/valueproviders/ClampedNormalInt/mean +FD: net/minecraft/util/valueproviders/ClampedNormalInt/f_185869_ net/minecraft/util/valueproviders/ClampedNormalInt/deviation +FD: net/minecraft/util/valueproviders/ClampedNormalInt/f_185870_ net/minecraft/util/valueproviders/ClampedNormalInt/min_inclusive +FD: net/minecraft/util/valueproviders/ClampedNormalInt/f_185871_ net/minecraft/util/valueproviders/ClampedNormalInt/max_inclusive +FD: net/minecraft/util/valueproviders/ConstantFloat/f_146451_ net/minecraft/util/valueproviders/ConstantFloat/ZERO +FD: net/minecraft/util/valueproviders/ConstantFloat/f_146452_ net/minecraft/util/valueproviders/ConstantFloat/CODEC +FD: net/minecraft/util/valueproviders/ConstantFloat/f_146453_ net/minecraft/util/valueproviders/ConstantFloat/value +FD: net/minecraft/util/valueproviders/ConstantInt/f_146476_ net/minecraft/util/valueproviders/ConstantInt/ZERO +FD: net/minecraft/util/valueproviders/ConstantInt/f_146477_ net/minecraft/util/valueproviders/ConstantInt/CODEC +FD: net/minecraft/util/valueproviders/ConstantInt/f_146478_ net/minecraft/util/valueproviders/ConstantInt/value +FD: net/minecraft/util/valueproviders/FloatProvider/f_146501_ net/minecraft/util/valueproviders/FloatProvider/CONSTANT_OR_DISPATCH_CODEC +FD: net/minecraft/util/valueproviders/FloatProvider/f_146502_ net/minecraft/util/valueproviders/FloatProvider/CODEC +FD: net/minecraft/util/valueproviders/FloatProviderType/f_146519_ net/minecraft/util/valueproviders/FloatProviderType/CONSTANT +FD: net/minecraft/util/valueproviders/FloatProviderType/f_146520_ net/minecraft/util/valueproviders/FloatProviderType/UNIFORM +FD: net/minecraft/util/valueproviders/FloatProviderType/f_146521_ net/minecraft/util/valueproviders/FloatProviderType/CLAMPED_NORMAL +FD: net/minecraft/util/valueproviders/FloatProviderType/f_146522_ net/minecraft/util/valueproviders/FloatProviderType/TRAPEZOID +FD: net/minecraft/util/valueproviders/IntProvider/f_146530_ net/minecraft/util/valueproviders/IntProvider/CONSTANT_OR_DISPATCH_CODEC +FD: net/minecraft/util/valueproviders/IntProvider/f_146531_ net/minecraft/util/valueproviders/IntProvider/CODEC +FD: net/minecraft/util/valueproviders/IntProvider/f_146532_ net/minecraft/util/valueproviders/IntProvider/NON_NEGATIVE_CODEC +FD: net/minecraft/util/valueproviders/IntProvider/f_146533_ net/minecraft/util/valueproviders/IntProvider/POSITIVE_CODEC +FD: net/minecraft/util/valueproviders/IntProviderType/f_146550_ net/minecraft/util/valueproviders/IntProviderType/CONSTANT +FD: net/minecraft/util/valueproviders/IntProviderType/f_146551_ net/minecraft/util/valueproviders/IntProviderType/UNIFORM +FD: net/minecraft/util/valueproviders/IntProviderType/f_146552_ net/minecraft/util/valueproviders/IntProviderType/BIASED_TO_BOTTOM +FD: net/minecraft/util/valueproviders/IntProviderType/f_146553_ net/minecraft/util/valueproviders/IntProviderType/CLAMPED +FD: net/minecraft/util/valueproviders/IntProviderType/f_185907_ net/minecraft/util/valueproviders/IntProviderType/WEIGHTED_LIST +FD: net/minecraft/util/valueproviders/IntProviderType/f_185908_ net/minecraft/util/valueproviders/IntProviderType/CLAMPED_NORMAL +FD: net/minecraft/util/valueproviders/MultipliedFloats/f_216856_ net/minecraft/util/valueproviders/MultipliedFloats/values +FD: net/minecraft/util/valueproviders/TrapezoidFloat/f_146561_ net/minecraft/util/valueproviders/TrapezoidFloat/CODEC +FD: net/minecraft/util/valueproviders/TrapezoidFloat/f_146562_ net/minecraft/util/valueproviders/TrapezoidFloat/min +FD: net/minecraft/util/valueproviders/TrapezoidFloat/f_146563_ net/minecraft/util/valueproviders/TrapezoidFloat/max +FD: net/minecraft/util/valueproviders/TrapezoidFloat/f_146564_ net/minecraft/util/valueproviders/TrapezoidFloat/plateau +FD: net/minecraft/util/valueproviders/UniformFloat/f_146590_ net/minecraft/util/valueproviders/UniformFloat/CODEC +FD: net/minecraft/util/valueproviders/UniformFloat/f_146591_ net/minecraft/util/valueproviders/UniformFloat/minInclusive +FD: net/minecraft/util/valueproviders/UniformFloat/f_146592_ net/minecraft/util/valueproviders/UniformFloat/maxExclusive +FD: net/minecraft/util/valueproviders/UniformInt/f_146614_ net/minecraft/util/valueproviders/UniformInt/CODEC +FD: net/minecraft/util/valueproviders/UniformInt/f_146615_ net/minecraft/util/valueproviders/UniformInt/minInclusive +FD: net/minecraft/util/valueproviders/UniformInt/f_146616_ net/minecraft/util/valueproviders/UniformInt/maxInclusive +FD: net/minecraft/util/valueproviders/WeightedListInt/f_185909_ net/minecraft/util/valueproviders/WeightedListInt/CODEC +FD: net/minecraft/util/valueproviders/WeightedListInt/f_185910_ net/minecraft/util/valueproviders/WeightedListInt/distribution +FD: net/minecraft/util/valueproviders/WeightedListInt/f_185911_ net/minecraft/util/valueproviders/WeightedListInt/minValue +FD: net/minecraft/util/valueproviders/WeightedListInt/f_185912_ net/minecraft/util/valueproviders/WeightedListInt/maxValue +FD: net/minecraft/util/worldupdate/WorldUpgrader/f_18797_ net/minecraft/util/worldupdate/WorldUpgrader/LOGGER +FD: net/minecraft/util/worldupdate/WorldUpgrader/f_18798_ net/minecraft/util/worldupdate/WorldUpgrader/THREAD_FACTORY +FD: net/minecraft/util/worldupdate/WorldUpgrader/f_18800_ net/minecraft/util/worldupdate/WorldUpgrader/eraseCache +FD: net/minecraft/util/worldupdate/WorldUpgrader/f_18801_ net/minecraft/util/worldupdate/WorldUpgrader/levelStorage +FD: net/minecraft/util/worldupdate/WorldUpgrader/f_18802_ net/minecraft/util/worldupdate/WorldUpgrader/thread +FD: net/minecraft/util/worldupdate/WorldUpgrader/f_18803_ net/minecraft/util/worldupdate/WorldUpgrader/dataFixer +FD: net/minecraft/util/worldupdate/WorldUpgrader/f_18804_ net/minecraft/util/worldupdate/WorldUpgrader/running +FD: net/minecraft/util/worldupdate/WorldUpgrader/f_18805_ net/minecraft/util/worldupdate/WorldUpgrader/finished +FD: net/minecraft/util/worldupdate/WorldUpgrader/f_18806_ net/minecraft/util/worldupdate/WorldUpgrader/progress +FD: net/minecraft/util/worldupdate/WorldUpgrader/f_18807_ net/minecraft/util/worldupdate/WorldUpgrader/totalChunks +FD: net/minecraft/util/worldupdate/WorldUpgrader/f_18808_ net/minecraft/util/worldupdate/WorldUpgrader/converted +FD: net/minecraft/util/worldupdate/WorldUpgrader/f_18809_ net/minecraft/util/worldupdate/WorldUpgrader/skipped +FD: net/minecraft/util/worldupdate/WorldUpgrader/f_18810_ net/minecraft/util/worldupdate/WorldUpgrader/progressMap +FD: net/minecraft/util/worldupdate/WorldUpgrader/f_18811_ net/minecraft/util/worldupdate/WorldUpgrader/status +FD: net/minecraft/util/worldupdate/WorldUpgrader/f_18812_ net/minecraft/util/worldupdate/WorldUpgrader/REGEX +FD: net/minecraft/util/worldupdate/WorldUpgrader/f_18813_ net/minecraft/util/worldupdate/WorldUpgrader/overworldDataStorage +FD: net/minecraft/util/worldupdate/WorldUpgrader/f_243666_ net/minecraft/util/worldupdate/WorldUpgrader/levels +FD: net/minecraft/util/worldupdate/WorldUpgrader/f_243889_ net/minecraft/util/worldupdate/WorldUpgrader/dimensions +FD: net/minecraft/world/BossEvent/f_146638_ net/minecraft/world/BossEvent/progress +FD: net/minecraft/world/BossEvent/f_18840_ net/minecraft/world/BossEvent/name +FD: net/minecraft/world/BossEvent/f_18842_ net/minecraft/world/BossEvent/color +FD: net/minecraft/world/BossEvent/f_18843_ net/minecraft/world/BossEvent/overlay +FD: net/minecraft/world/BossEvent/f_18844_ net/minecraft/world/BossEvent/darkenScreen +FD: net/minecraft/world/BossEvent/f_18845_ net/minecraft/world/BossEvent/playBossMusic +FD: net/minecraft/world/BossEvent/f_18846_ net/minecraft/world/BossEvent/createWorldFog +FD: net/minecraft/world/BossEvent/f_18847_ net/minecraft/world/BossEvent/id +FD: net/minecraft/world/BossEvent$BossBarColor/$VALUES net/minecraft/world/BossEvent$BossBarColor/$VALUES +FD: net/minecraft/world/BossEvent$BossBarColor/BLUE net/minecraft/world/BossEvent$BossBarColor/BLUE +FD: net/minecraft/world/BossEvent$BossBarColor/GREEN net/minecraft/world/BossEvent$BossBarColor/GREEN +FD: net/minecraft/world/BossEvent$BossBarColor/PINK net/minecraft/world/BossEvent$BossBarColor/PINK +FD: net/minecraft/world/BossEvent$BossBarColor/PURPLE net/minecraft/world/BossEvent$BossBarColor/PURPLE +FD: net/minecraft/world/BossEvent$BossBarColor/RED net/minecraft/world/BossEvent$BossBarColor/RED +FD: net/minecraft/world/BossEvent$BossBarColor/WHITE net/minecraft/world/BossEvent$BossBarColor/WHITE +FD: net/minecraft/world/BossEvent$BossBarColor/YELLOW net/minecraft/world/BossEvent$BossBarColor/YELLOW +FD: net/minecraft/world/BossEvent$BossBarColor/f_18874_ net/minecraft/world/BossEvent$BossBarColor/name +FD: net/minecraft/world/BossEvent$BossBarColor/f_18875_ net/minecraft/world/BossEvent$BossBarColor/formatting +FD: net/minecraft/world/BossEvent$BossBarOverlay/$VALUES net/minecraft/world/BossEvent$BossBarOverlay/$VALUES +FD: net/minecraft/world/BossEvent$BossBarOverlay/NOTCHED_10 net/minecraft/world/BossEvent$BossBarOverlay/NOTCHED_10 +FD: net/minecraft/world/BossEvent$BossBarOverlay/NOTCHED_12 net/minecraft/world/BossEvent$BossBarOverlay/NOTCHED_12 +FD: net/minecraft/world/BossEvent$BossBarOverlay/NOTCHED_20 net/minecraft/world/BossEvent$BossBarOverlay/NOTCHED_20 +FD: net/minecraft/world/BossEvent$BossBarOverlay/NOTCHED_6 net/minecraft/world/BossEvent$BossBarOverlay/NOTCHED_6 +FD: net/minecraft/world/BossEvent$BossBarOverlay/PROGRESS net/minecraft/world/BossEvent$BossBarOverlay/PROGRESS +FD: net/minecraft/world/BossEvent$BossBarOverlay/f_18895_ net/minecraft/world/BossEvent$BossBarOverlay/name +FD: net/minecraft/world/CompoundContainer/f_18910_ net/minecraft/world/CompoundContainer/container1 +FD: net/minecraft/world/CompoundContainer/f_18911_ net/minecraft/world/CompoundContainer/container2 +FD: net/minecraft/world/Container/f_146642_ net/minecraft/world/Container/LARGE_MAX_STACK_SIZE +FD: net/minecraft/world/Container/f_271421_ net/minecraft/world/Container/DEFAULT_DISTANCE_LIMIT +FD: net/minecraft/world/Difficulty/$VALUES net/minecraft/world/Difficulty/$VALUES +FD: net/minecraft/world/Difficulty/EASY net/minecraft/world/Difficulty/EASY +FD: net/minecraft/world/Difficulty/HARD net/minecraft/world/Difficulty/HARD +FD: net/minecraft/world/Difficulty/NORMAL net/minecraft/world/Difficulty/NORMAL +FD: net/minecraft/world/Difficulty/PEACEFUL net/minecraft/world/Difficulty/PEACEFUL +FD: net/minecraft/world/Difficulty/f_19018_ net/minecraft/world/Difficulty/BY_ID +FD: net/minecraft/world/Difficulty/f_19019_ net/minecraft/world/Difficulty/id +FD: net/minecraft/world/Difficulty/f_19020_ net/minecraft/world/Difficulty/key +FD: net/minecraft/world/Difficulty/f_262746_ net/minecraft/world/Difficulty/CODEC +FD: net/minecraft/world/DifficultyInstance/f_146646_ net/minecraft/world/DifficultyInstance/DIFFICULTY_TIME_GLOBAL_OFFSET +FD: net/minecraft/world/DifficultyInstance/f_146647_ net/minecraft/world/DifficultyInstance/MAX_DIFFICULTY_TIME_GLOBAL +FD: net/minecraft/world/DifficultyInstance/f_146648_ net/minecraft/world/DifficultyInstance/MAX_DIFFICULTY_TIME_LOCAL +FD: net/minecraft/world/DifficultyInstance/f_19041_ net/minecraft/world/DifficultyInstance/base +FD: net/minecraft/world/DifficultyInstance/f_19042_ net/minecraft/world/DifficultyInstance/effectiveDifficulty +FD: net/minecraft/world/InteractionHand/$VALUES net/minecraft/world/InteractionHand/$VALUES +FD: net/minecraft/world/InteractionHand/MAIN_HAND net/minecraft/world/InteractionHand/MAIN_HAND +FD: net/minecraft/world/InteractionHand/OFF_HAND net/minecraft/world/InteractionHand/OFF_HAND +FD: net/minecraft/world/InteractionResult/$VALUES net/minecraft/world/InteractionResult/$VALUES +FD: net/minecraft/world/InteractionResult/CONSUME net/minecraft/world/InteractionResult/CONSUME +FD: net/minecraft/world/InteractionResult/CONSUME_PARTIAL net/minecraft/world/InteractionResult/CONSUME_PARTIAL +FD: net/minecraft/world/InteractionResult/FAIL net/minecraft/world/InteractionResult/FAIL +FD: net/minecraft/world/InteractionResult/PASS net/minecraft/world/InteractionResult/PASS +FD: net/minecraft/world/InteractionResult/SUCCESS net/minecraft/world/InteractionResult/SUCCESS +FD: net/minecraft/world/InteractionResultHolder/f_19084_ net/minecraft/world/InteractionResultHolder/result +FD: net/minecraft/world/InteractionResultHolder/f_19085_ net/minecraft/world/InteractionResultHolder/object +FD: net/minecraft/world/LockCode/f_146668_ net/minecraft/world/LockCode/TAG_LOCK +FD: net/minecraft/world/LockCode/f_19102_ net/minecraft/world/LockCode/NO_LOCK +FD: net/minecraft/world/LockCode/f_19103_ net/minecraft/world/LockCode/key +FD: net/minecraft/world/RandomSequence/f_286999_ net/minecraft/world/RandomSequence/CODEC +FD: net/minecraft/world/RandomSequence/f_287004_ net/minecraft/world/RandomSequence/source +FD: net/minecraft/world/RandomSequences/f_286938_ net/minecraft/world/RandomSequences/seed +FD: net/minecraft/world/RandomSequences/f_286954_ net/minecraft/world/RandomSequences/sequences +FD: net/minecraft/world/RandomSequences/f_286984_ net/minecraft/world/RandomSequences/LOGGER +FD: net/minecraft/world/RandomSequences$1/f_286950_ net/minecraft/world/RandomSequences$1/val$random +FD: net/minecraft/world/RandomSequences$1/f_287002_ net/minecraft/world/RandomSequences$1/this$0 +FD: net/minecraft/world/SimpleContainer/f_19146_ net/minecraft/world/SimpleContainer/size +FD: net/minecraft/world/SimpleContainer/f_19147_ net/minecraft/world/SimpleContainer/items +FD: net/minecraft/world/SimpleContainer/f_19148_ net/minecraft/world/SimpleContainer/listeners +FD: net/minecraft/world/SimpleMenuProvider/f_19199_ net/minecraft/world/SimpleMenuProvider/title +FD: net/minecraft/world/SimpleMenuProvider/f_19200_ net/minecraft/world/SimpleMenuProvider/menuConstructor +FD: net/minecraft/world/damagesource/CombatEntry/f_19250_ net/minecraft/world/damagesource/CombatEntry/source +FD: net/minecraft/world/damagesource/CombatEntry/f_19252_ net/minecraft/world/damagesource/CombatEntry/damage +FD: net/minecraft/world/damagesource/CombatEntry/f_19255_ net/minecraft/world/damagesource/CombatEntry/fallDistance +FD: net/minecraft/world/damagesource/CombatEntry/f_289042_ net/minecraft/world/damagesource/CombatEntry/fallLocation +FD: net/minecraft/world/damagesource/CombatRules/f_146688_ net/minecraft/world/damagesource/CombatRules/MAX_ARMOR +FD: net/minecraft/world/damagesource/CombatRules/f_146689_ net/minecraft/world/damagesource/CombatRules/ARMOR_PROTECTION_DIVIDER +FD: net/minecraft/world/damagesource/CombatRules/f_146690_ net/minecraft/world/damagesource/CombatRules/BASE_ARMOR_TOUGHNESS +FD: net/minecraft/world/damagesource/CombatRules/f_146691_ net/minecraft/world/damagesource/CombatRules/MIN_ARMOR_RATIO +FD: net/minecraft/world/damagesource/CombatRules/f_146692_ net/minecraft/world/damagesource/CombatRules/NUM_ARMOR_ITEMS +FD: net/minecraft/world/damagesource/CombatTracker/f_146694_ net/minecraft/world/damagesource/CombatTracker/RESET_DAMAGE_STATUS_TIME +FD: net/minecraft/world/damagesource/CombatTracker/f_146695_ net/minecraft/world/damagesource/CombatTracker/RESET_COMBAT_STATUS_TIME +FD: net/minecraft/world/damagesource/CombatTracker/f_19276_ net/minecraft/world/damagesource/CombatTracker/entries +FD: net/minecraft/world/damagesource/CombatTracker/f_19277_ net/minecraft/world/damagesource/CombatTracker/mob +FD: net/minecraft/world/damagesource/CombatTracker/f_19278_ net/minecraft/world/damagesource/CombatTracker/lastDamageTime +FD: net/minecraft/world/damagesource/CombatTracker/f_19279_ net/minecraft/world/damagesource/CombatTracker/combatStartTime +FD: net/minecraft/world/damagesource/CombatTracker/f_19280_ net/minecraft/world/damagesource/CombatTracker/combatEndTime +FD: net/minecraft/world/damagesource/CombatTracker/f_19281_ net/minecraft/world/damagesource/CombatTracker/inCombat +FD: net/minecraft/world/damagesource/CombatTracker/f_19282_ net/minecraft/world/damagesource/CombatTracker/takingDamage +FD: net/minecraft/world/damagesource/CombatTracker/f_268553_ net/minecraft/world/damagesource/CombatTracker/INTENTIONAL_GAME_DESIGN_STYLE +FD: net/minecraft/world/damagesource/DamageEffects/$VALUES net/minecraft/world/damagesource/DamageEffects/$VALUES +FD: net/minecraft/world/damagesource/DamageEffects/BURNING net/minecraft/world/damagesource/DamageEffects/BURNING +FD: net/minecraft/world/damagesource/DamageEffects/DROWNING net/minecraft/world/damagesource/DamageEffects/DROWNING +FD: net/minecraft/world/damagesource/DamageEffects/FREEZING net/minecraft/world/damagesource/DamageEffects/FREEZING +FD: net/minecraft/world/damagesource/DamageEffects/HURT net/minecraft/world/damagesource/DamageEffects/HURT +FD: net/minecraft/world/damagesource/DamageEffects/POKING net/minecraft/world/damagesource/DamageEffects/POKING +FD: net/minecraft/world/damagesource/DamageEffects/THORNS net/minecraft/world/damagesource/DamageEffects/THORNS +FD: net/minecraft/world/damagesource/DamageEffects/f_268435_ net/minecraft/world/damagesource/DamageEffects/id +FD: net/minecraft/world/damagesource/DamageEffects/f_268463_ net/minecraft/world/damagesource/DamageEffects/CODEC +FD: net/minecraft/world/damagesource/DamageEffects/f_268660_ net/minecraft/world/damagesource/DamageEffects/sound +FD: net/minecraft/world/damagesource/DamageScaling/$VALUES net/minecraft/world/damagesource/DamageScaling/$VALUES +FD: net/minecraft/world/damagesource/DamageScaling/ALWAYS net/minecraft/world/damagesource/DamageScaling/ALWAYS +FD: net/minecraft/world/damagesource/DamageScaling/NEVER net/minecraft/world/damagesource/DamageScaling/NEVER +FD: net/minecraft/world/damagesource/DamageScaling/WHEN_CAUSED_BY_LIVING_NON_PLAYER net/minecraft/world/damagesource/DamageScaling/WHEN_CAUSED_BY_LIVING_NON_PLAYER +FD: net/minecraft/world/damagesource/DamageScaling/f_268442_ net/minecraft/world/damagesource/DamageScaling/id +FD: net/minecraft/world/damagesource/DamageScaling/f_268563_ net/minecraft/world/damagesource/DamageScaling/CODEC +FD: net/minecraft/world/damagesource/DamageSource/f_268454_ net/minecraft/world/damagesource/DamageSource/damageSourcePosition +FD: net/minecraft/world/damagesource/DamageSource/f_268495_ net/minecraft/world/damagesource/DamageSource/type +FD: net/minecraft/world/damagesource/DamageSource/f_268569_ net/minecraft/world/damagesource/DamageSource/causingEntity +FD: net/minecraft/world/damagesource/DamageSource/f_268595_ net/minecraft/world/damagesource/DamageSource/directEntity +FD: net/minecraft/world/damagesource/DamageSource$1/f_268417_ net/minecraft/world/damagesource/DamageSource$1/$SwitchMap$net$minecraft$world$damagesource$DamageScaling +FD: net/minecraft/world/damagesource/DamageSources/f_268418_ net/minecraft/world/damagesource/DamageSources/lava +FD: net/minecraft/world/damagesource/DamageSources/f_268426_ net/minecraft/world/damagesource/DamageSources/dryOut +FD: net/minecraft/world/damagesource/DamageSources/f_268438_ net/minecraft/world/damagesource/DamageSources/wither +FD: net/minecraft/world/damagesource/DamageSources/f_268475_ net/minecraft/world/damagesource/DamageSources/onFire +FD: net/minecraft/world/damagesource/DamageSources/f_268499_ net/minecraft/world/damagesource/DamageSources/cactus +FD: net/minecraft/world/damagesource/DamageSources/f_268521_ net/minecraft/world/damagesource/DamageSources/generic +FD: net/minecraft/world/damagesource/DamageSources/f_268551_ net/minecraft/world/damagesource/DamageSources/lightningBolt +FD: net/minecraft/world/damagesource/DamageSources/f_268561_ net/minecraft/world/damagesource/DamageSources/sweetBerryBush +FD: net/minecraft/world/damagesource/DamageSources/f_268567_ net/minecraft/world/damagesource/DamageSources/inFire +FD: net/minecraft/world/damagesource/DamageSources/f_268582_ net/minecraft/world/damagesource/DamageSources/dragonBreath +FD: net/minecraft/world/damagesource/DamageSources/f_268591_ net/minecraft/world/damagesource/DamageSources/magic +FD: net/minecraft/world/damagesource/DamageSources/f_268602_ net/minecraft/world/damagesource/DamageSources/hotFloor +FD: net/minecraft/world/damagesource/DamageSources/f_268605_ net/minecraft/world/damagesource/DamageSources/inWall +FD: net/minecraft/world/damagesource/DamageSources/f_268610_ net/minecraft/world/damagesource/DamageSources/stalagmite +FD: net/minecraft/world/damagesource/DamageSources/f_268611_ net/minecraft/world/damagesource/DamageSources/drown +FD: net/minecraft/world/damagesource/DamageSources/f_268623_ net/minecraft/world/damagesource/DamageSources/flyIntoWall +FD: net/minecraft/world/damagesource/DamageSources/f_268645_ net/minecraft/world/damagesource/DamageSources/damageTypes +FD: net/minecraft/world/damagesource/DamageSources/f_268691_ net/minecraft/world/damagesource/DamageSources/cramming +FD: net/minecraft/world/damagesource/DamageSources/f_268726_ net/minecraft/world/damagesource/DamageSources/fellOutOfWorld +FD: net/minecraft/world/damagesource/DamageSources/f_268729_ net/minecraft/world/damagesource/DamageSources/fall +FD: net/minecraft/world/damagesource/DamageSources/f_268733_ net/minecraft/world/damagesource/DamageSources/freeze +FD: net/minecraft/world/damagesource/DamageSources/f_268742_ net/minecraft/world/damagesource/DamageSources/starve +FD: net/minecraft/world/damagesource/DamageSources/f_286964_ net/minecraft/world/damagesource/DamageSources/genericKill +FD: net/minecraft/world/damagesource/DamageSources/f_287008_ net/minecraft/world/damagesource/DamageSources/outsideBorder +FD: net/minecraft/world/damagesource/DamageType/f_268472_ net/minecraft/world/damagesource/DamageType/deathMessageType +FD: net/minecraft/world/damagesource/DamageType/f_268501_ net/minecraft/world/damagesource/DamageType/scaling +FD: net/minecraft/world/damagesource/DamageType/f_268510_ net/minecraft/world/damagesource/DamageType/CODEC +FD: net/minecraft/world/damagesource/DamageType/f_268663_ net/minecraft/world/damagesource/DamageType/exhaustion +FD: net/minecraft/world/damagesource/DamageType/f_268677_ net/minecraft/world/damagesource/DamageType/msgId +FD: net/minecraft/world/damagesource/DamageType/f_268686_ net/minecraft/world/damagesource/DamageType/effects +FD: net/minecraft/world/damagesource/DamageTypes/f_268425_ net/minecraft/world/damagesource/DamageTypes/THROWN +FD: net/minecraft/world/damagesource/DamageTypes/f_268428_ net/minecraft/world/damagesource/DamageTypes/FIREWORKS +FD: net/minecraft/world/damagesource/DamageTypes/f_268433_ net/minecraft/world/damagesource/DamageTypes/GENERIC +FD: net/minecraft/world/damagesource/DamageTypes/f_268434_ net/minecraft/world/damagesource/DamageTypes/HOT_FLOOR +FD: net/minecraft/world/damagesource/DamageTypes/f_268440_ net/minecraft/world/damagesource/DamageTypes/THORNS +FD: net/minecraft/world/damagesource/DamageTypes/f_268441_ net/minecraft/world/damagesource/DamageTypes/STARVE +FD: net/minecraft/world/damagesource/DamageTypes/f_268444_ net/minecraft/world/damagesource/DamageTypes/FREEZE +FD: net/minecraft/world/damagesource/DamageTypes/f_268448_ net/minecraft/world/damagesource/DamageTypes/PLAYER_EXPLOSION +FD: net/minecraft/world/damagesource/DamageTypes/f_268450_ net/minecraft/world/damagesource/DamageTypes/LIGHTNING_BOLT +FD: net/minecraft/world/damagesource/DamageTypes/f_268464_ net/minecraft/world/damagesource/DamageTypes/PLAYER_ATTACK +FD: net/minecraft/world/damagesource/DamageTypes/f_268468_ net/minecraft/world/damagesource/DamageTypes/ON_FIRE +FD: net/minecraft/world/damagesource/DamageTypes/f_268469_ net/minecraft/world/damagesource/DamageTypes/SWEET_BERRY_BUSH +FD: net/minecraft/world/damagesource/DamageTypes/f_268482_ net/minecraft/world/damagesource/DamageTypes/DRAGON_BREATH +FD: net/minecraft/world/damagesource/DamageTypes/f_268493_ net/minecraft/world/damagesource/DamageTypes/WITHER +FD: net/minecraft/world/damagesource/DamageTypes/f_268511_ net/minecraft/world/damagesource/DamageTypes/MOB_ATTACK_NO_AGGRO +FD: net/minecraft/world/damagesource/DamageTypes/f_268513_ net/minecraft/world/damagesource/DamageTypes/FALLING_STALACTITE +FD: net/minecraft/world/damagesource/DamageTypes/f_268515_ net/minecraft/world/damagesource/DamageTypes/MAGIC +FD: net/minecraft/world/damagesource/DamageTypes/f_268526_ net/minecraft/world/damagesource/DamageTypes/FALLING_ANVIL +FD: net/minecraft/world/damagesource/DamageTypes/f_268530_ net/minecraft/world/damagesource/DamageTypes/INDIRECT_MAGIC +FD: net/minecraft/world/damagesource/DamageTypes/f_268534_ net/minecraft/world/damagesource/DamageTypes/MOB_PROJECTILE +FD: net/minecraft/world/damagesource/DamageTypes/f_268546_ net/minecraft/world/damagesource/DamageTypes/LAVA +FD: net/minecraft/world/damagesource/DamageTypes/f_268556_ net/minecraft/world/damagesource/DamageTypes/UNATTRIBUTED_FIREBALL +FD: net/minecraft/world/damagesource/DamageTypes/f_268565_ net/minecraft/world/damagesource/DamageTypes/EXPLOSION +FD: net/minecraft/world/damagesource/DamageTypes/f_268566_ net/minecraft/world/damagesource/DamageTypes/MOB_ATTACK +FD: net/minecraft/world/damagesource/DamageTypes/f_268576_ net/minecraft/world/damagesource/DamageTypes/FLY_INTO_WALL +FD: net/minecraft/world/damagesource/DamageTypes/f_268585_ net/minecraft/world/damagesource/DamageTypes/CACTUS +FD: net/minecraft/world/damagesource/DamageTypes/f_268612_ net/minecraft/world/damagesource/DamageTypes/IN_WALL +FD: net/minecraft/world/damagesource/DamageTypes/f_268613_ net/minecraft/world/damagesource/DamageTypes/CRAMMING +FD: net/minecraft/world/damagesource/DamageTypes/f_268631_ net/minecraft/world/damagesource/DamageTypes/IN_FIRE +FD: net/minecraft/world/damagesource/DamageTypes/f_268641_ net/minecraft/world/damagesource/DamageTypes/WITHER_SKULL +FD: net/minecraft/world/damagesource/DamageTypes/f_268650_ net/minecraft/world/damagesource/DamageTypes/BAD_RESPAWN_POINT +FD: net/minecraft/world/damagesource/DamageTypes/f_268656_ net/minecraft/world/damagesource/DamageTypes/STING +FD: net/minecraft/world/damagesource/DamageTypes/f_268659_ net/minecraft/world/damagesource/DamageTypes/FALLING_BLOCK +FD: net/minecraft/world/damagesource/DamageTypes/f_268669_ net/minecraft/world/damagesource/DamageTypes/STALAGMITE +FD: net/minecraft/world/damagesource/DamageTypes/f_268671_ net/minecraft/world/damagesource/DamageTypes/FALL +FD: net/minecraft/world/damagesource/DamageTypes/f_268679_ net/minecraft/world/damagesource/DamageTypes/SONIC_BOOM +FD: net/minecraft/world/damagesource/DamageTypes/f_268684_ net/minecraft/world/damagesource/DamageTypes/FIREBALL +FD: net/minecraft/world/damagesource/DamageTypes/f_268714_ net/minecraft/world/damagesource/DamageTypes/TRIDENT +FD: net/minecraft/world/damagesource/DamageTypes/f_268722_ net/minecraft/world/damagesource/DamageTypes/DROWN +FD: net/minecraft/world/damagesource/DamageTypes/f_268724_ net/minecraft/world/damagesource/DamageTypes/FELL_OUT_OF_WORLD +FD: net/minecraft/world/damagesource/DamageTypes/f_268739_ net/minecraft/world/damagesource/DamageTypes/ARROW +FD: net/minecraft/world/damagesource/DamageTypes/f_268752_ net/minecraft/world/damagesource/DamageTypes/DRY_OUT +FD: net/minecraft/world/damagesource/DamageTypes/f_286973_ net/minecraft/world/damagesource/DamageTypes/OUTSIDE_BORDER +FD: net/minecraft/world/damagesource/DamageTypes/f_286979_ net/minecraft/world/damagesource/DamageTypes/GENERIC_KILL +FD: net/minecraft/world/damagesource/DeathMessageType/$VALUES net/minecraft/world/damagesource/DeathMessageType/$VALUES +FD: net/minecraft/world/damagesource/DeathMessageType/DEFAULT net/minecraft/world/damagesource/DeathMessageType/DEFAULT +FD: net/minecraft/world/damagesource/DeathMessageType/FALL_VARIANTS net/minecraft/world/damagesource/DeathMessageType/FALL_VARIANTS +FD: net/minecraft/world/damagesource/DeathMessageType/INTENTIONAL_GAME_DESIGN net/minecraft/world/damagesource/DeathMessageType/INTENTIONAL_GAME_DESIGN +FD: net/minecraft/world/damagesource/DeathMessageType/f_268483_ net/minecraft/world/damagesource/DeathMessageType/CODEC +FD: net/minecraft/world/damagesource/DeathMessageType/f_268617_ net/minecraft/world/damagesource/DeathMessageType/id +FD: net/minecraft/world/damagesource/FallLocation/f_289026_ net/minecraft/world/damagesource/FallLocation/id +FD: net/minecraft/world/damagesource/FallLocation/f_289027_ net/minecraft/world/damagesource/FallLocation/TWISTING_VINES +FD: net/minecraft/world/damagesource/FallLocation/f_289030_ net/minecraft/world/damagesource/FallLocation/SCAFFOLDING +FD: net/minecraft/world/damagesource/FallLocation/f_289031_ net/minecraft/world/damagesource/FallLocation/WEEPING_VINES +FD: net/minecraft/world/damagesource/FallLocation/f_289033_ net/minecraft/world/damagesource/FallLocation/OTHER_CLIMBABLE +FD: net/minecraft/world/damagesource/FallLocation/f_289035_ net/minecraft/world/damagesource/FallLocation/LADDER +FD: net/minecraft/world/damagesource/FallLocation/f_289039_ net/minecraft/world/damagesource/FallLocation/VINES +FD: net/minecraft/world/damagesource/FallLocation/f_289040_ net/minecraft/world/damagesource/FallLocation/GENERIC +FD: net/minecraft/world/damagesource/FallLocation/f_289046_ net/minecraft/world/damagesource/FallLocation/WATER +FD: net/minecraft/world/effect/AttackDamageMobEffect/f_19424_ net/minecraft/world/effect/AttackDamageMobEffect/multiplier +FD: net/minecraft/world/effect/MobEffect/f_19446_ net/minecraft/world/effect/MobEffect/attributeModifiers +FD: net/minecraft/world/effect/MobEffect/f_19447_ net/minecraft/world/effect/MobEffect/category +FD: net/minecraft/world/effect/MobEffect/f_19448_ net/minecraft/world/effect/MobEffect/color +FD: net/minecraft/world/effect/MobEffect/f_19449_ net/minecraft/world/effect/MobEffect/descriptionId +FD: net/minecraft/world/effect/MobEffect/f_216878_ net/minecraft/world/effect/MobEffect/factorDataFactory +FD: net/minecraft/world/effect/MobEffectCategory/$VALUES net/minecraft/world/effect/MobEffectCategory/$VALUES +FD: net/minecraft/world/effect/MobEffectCategory/BENEFICIAL net/minecraft/world/effect/MobEffectCategory/BENEFICIAL +FD: net/minecraft/world/effect/MobEffectCategory/HARMFUL net/minecraft/world/effect/MobEffectCategory/HARMFUL +FD: net/minecraft/world/effect/MobEffectCategory/NEUTRAL net/minecraft/world/effect/MobEffectCategory/NEUTRAL +FD: net/minecraft/world/effect/MobEffectCategory/f_19490_ net/minecraft/world/effect/MobEffectCategory/tooltipFormatting +FD: net/minecraft/world/effect/MobEffectInstance/f_19501_ net/minecraft/world/effect/MobEffectInstance/LOGGER +FD: net/minecraft/world/effect/MobEffectInstance/f_19502_ net/minecraft/world/effect/MobEffectInstance/effect +FD: net/minecraft/world/effect/MobEffectInstance/f_19503_ net/minecraft/world/effect/MobEffectInstance/duration +FD: net/minecraft/world/effect/MobEffectInstance/f_19504_ net/minecraft/world/effect/MobEffectInstance/amplifier +FD: net/minecraft/world/effect/MobEffectInstance/f_19506_ net/minecraft/world/effect/MobEffectInstance/ambient +FD: net/minecraft/world/effect/MobEffectInstance/f_19508_ net/minecraft/world/effect/MobEffectInstance/visible +FD: net/minecraft/world/effect/MobEffectInstance/f_19509_ net/minecraft/world/effect/MobEffectInstance/showIcon +FD: net/minecraft/world/effect/MobEffectInstance/f_19510_ net/minecraft/world/effect/MobEffectInstance/hiddenEffect +FD: net/minecraft/world/effect/MobEffectInstance/f_216885_ net/minecraft/world/effect/MobEffectInstance/factorData +FD: net/minecraft/world/effect/MobEffectInstance/f_267388_ net/minecraft/world/effect/MobEffectInstance/INFINITE_DURATION +FD: net/minecraft/world/effect/MobEffectInstance$FactorData/f_216907_ net/minecraft/world/effect/MobEffectInstance$FactorData/CODEC +FD: net/minecraft/world/effect/MobEffectInstance$FactorData/f_216908_ net/minecraft/world/effect/MobEffectInstance$FactorData/paddingDuration +FD: net/minecraft/world/effect/MobEffectInstance$FactorData/f_216909_ net/minecraft/world/effect/MobEffectInstance$FactorData/factorStart +FD: net/minecraft/world/effect/MobEffectInstance$FactorData/f_216910_ net/minecraft/world/effect/MobEffectInstance$FactorData/factorTarget +FD: net/minecraft/world/effect/MobEffectInstance$FactorData/f_216911_ net/minecraft/world/effect/MobEffectInstance$FactorData/factorCurrent +FD: net/minecraft/world/effect/MobEffectInstance$FactorData/f_216913_ net/minecraft/world/effect/MobEffectInstance$FactorData/factorPreviousFrame +FD: net/minecraft/world/effect/MobEffectInstance$FactorData/f_216914_ net/minecraft/world/effect/MobEffectInstance$FactorData/hadEffectLastTick +FD: net/minecraft/world/effect/MobEffectInstance$FactorData/f_267473_ net/minecraft/world/effect/MobEffectInstance$FactorData/ticksActive +FD: net/minecraft/world/effect/MobEffects/f_19590_ net/minecraft/world/effect/MobEffects/UNLUCK +FD: net/minecraft/world/effect/MobEffects/f_19591_ net/minecraft/world/effect/MobEffects/SLOW_FALLING +FD: net/minecraft/world/effect/MobEffects/f_19592_ net/minecraft/world/effect/MobEffects/CONDUIT_POWER +FD: net/minecraft/world/effect/MobEffects/f_19593_ net/minecraft/world/effect/MobEffects/DOLPHINS_GRACE +FD: net/minecraft/world/effect/MobEffects/f_19594_ net/minecraft/world/effect/MobEffects/BAD_OMEN +FD: net/minecraft/world/effect/MobEffects/f_19595_ net/minecraft/world/effect/MobEffects/HERO_OF_THE_VILLAGE +FD: net/minecraft/world/effect/MobEffects/f_19596_ net/minecraft/world/effect/MobEffects/MOVEMENT_SPEED +FD: net/minecraft/world/effect/MobEffects/f_19597_ net/minecraft/world/effect/MobEffects/MOVEMENT_SLOWDOWN +FD: net/minecraft/world/effect/MobEffects/f_19598_ net/minecraft/world/effect/MobEffects/DIG_SPEED +FD: net/minecraft/world/effect/MobEffects/f_19599_ net/minecraft/world/effect/MobEffects/DIG_SLOWDOWN +FD: net/minecraft/world/effect/MobEffects/f_19600_ net/minecraft/world/effect/MobEffects/DAMAGE_BOOST +FD: net/minecraft/world/effect/MobEffects/f_19601_ net/minecraft/world/effect/MobEffects/HEAL +FD: net/minecraft/world/effect/MobEffects/f_19602_ net/minecraft/world/effect/MobEffects/HARM +FD: net/minecraft/world/effect/MobEffects/f_19603_ net/minecraft/world/effect/MobEffects/JUMP +FD: net/minecraft/world/effect/MobEffects/f_19604_ net/minecraft/world/effect/MobEffects/CONFUSION +FD: net/minecraft/world/effect/MobEffects/f_19605_ net/minecraft/world/effect/MobEffects/REGENERATION +FD: net/minecraft/world/effect/MobEffects/f_19606_ net/minecraft/world/effect/MobEffects/DAMAGE_RESISTANCE +FD: net/minecraft/world/effect/MobEffects/f_19607_ net/minecraft/world/effect/MobEffects/FIRE_RESISTANCE +FD: net/minecraft/world/effect/MobEffects/f_19608_ net/minecraft/world/effect/MobEffects/WATER_BREATHING +FD: net/minecraft/world/effect/MobEffects/f_19609_ net/minecraft/world/effect/MobEffects/INVISIBILITY +FD: net/minecraft/world/effect/MobEffects/f_19610_ net/minecraft/world/effect/MobEffects/BLINDNESS +FD: net/minecraft/world/effect/MobEffects/f_19611_ net/minecraft/world/effect/MobEffects/NIGHT_VISION +FD: net/minecraft/world/effect/MobEffects/f_19612_ net/minecraft/world/effect/MobEffects/HUNGER +FD: net/minecraft/world/effect/MobEffects/f_19613_ net/minecraft/world/effect/MobEffects/WEAKNESS +FD: net/minecraft/world/effect/MobEffects/f_19614_ net/minecraft/world/effect/MobEffects/POISON +FD: net/minecraft/world/effect/MobEffects/f_19615_ net/minecraft/world/effect/MobEffects/WITHER +FD: net/minecraft/world/effect/MobEffects/f_19616_ net/minecraft/world/effect/MobEffects/HEALTH_BOOST +FD: net/minecraft/world/effect/MobEffects/f_19617_ net/minecraft/world/effect/MobEffects/ABSORPTION +FD: net/minecraft/world/effect/MobEffects/f_19618_ net/minecraft/world/effect/MobEffects/SATURATION +FD: net/minecraft/world/effect/MobEffects/f_19619_ net/minecraft/world/effect/MobEffects/GLOWING +FD: net/minecraft/world/effect/MobEffects/f_19620_ net/minecraft/world/effect/MobEffects/LEVITATION +FD: net/minecraft/world/effect/MobEffects/f_19621_ net/minecraft/world/effect/MobEffects/LUCK +FD: net/minecraft/world/effect/MobEffects/f_216964_ net/minecraft/world/effect/MobEffects/DARKNESS +FD: net/minecraft/world/effect/MobEffects/f_216965_ net/minecraft/world/effect/MobEffects/DARKNESS_EFFECT_FACTOR_PADDING_DURATION_TICKS +FD: net/minecraft/world/entity/AgeableMob/f_146730_ net/minecraft/world/entity/AgeableMob/BABY_START_AGE +FD: net/minecraft/world/entity/AgeableMob/f_146731_ net/minecraft/world/entity/AgeableMob/DATA_BABY_ID +FD: net/minecraft/world/entity/AgeableMob/f_146732_ net/minecraft/world/entity/AgeableMob/FORCED_AGE_PARTICLE_TICKS +FD: net/minecraft/world/entity/AgeableMob/f_146733_ net/minecraft/world/entity/AgeableMob/age +FD: net/minecraft/world/entity/AgeableMob/f_146734_ net/minecraft/world/entity/AgeableMob/forcedAge +FD: net/minecraft/world/entity/AgeableMob/f_146735_ net/minecraft/world/entity/AgeableMob/forcedAgeTimer +FD: net/minecraft/world/entity/AgeableMob$AgeableMobGroupData/f_146767_ net/minecraft/world/entity/AgeableMob$AgeableMobGroupData/groupSize +FD: net/minecraft/world/entity/AgeableMob$AgeableMobGroupData/f_146768_ net/minecraft/world/entity/AgeableMob$AgeableMobGroupData/shouldSpawnBaby +FD: net/minecraft/world/entity/AgeableMob$AgeableMobGroupData/f_146769_ net/minecraft/world/entity/AgeableMob$AgeableMobGroupData/babySpawnChance +FD: net/minecraft/world/entity/AnimationState/f_216969_ net/minecraft/world/entity/AnimationState/STOPPED +FD: net/minecraft/world/entity/AnimationState/f_216970_ net/minecraft/world/entity/AnimationState/lastTime +FD: net/minecraft/world/entity/AnimationState/f_216971_ net/minecraft/world/entity/AnimationState/accumulatedTime +FD: net/minecraft/world/entity/AreaEffectCloud/f_146781_ net/minecraft/world/entity/AreaEffectCloud/MAX_RADIUS +FD: net/minecraft/world/entity/AreaEffectCloud/f_146782_ net/minecraft/world/entity/AreaEffectCloud/TIME_BETWEEN_APPLICATIONS +FD: net/minecraft/world/entity/AreaEffectCloud/f_19685_ net/minecraft/world/entity/AreaEffectCloud/effects +FD: net/minecraft/world/entity/AreaEffectCloud/f_19686_ net/minecraft/world/entity/AreaEffectCloud/victims +FD: net/minecraft/world/entity/AreaEffectCloud/f_19687_ net/minecraft/world/entity/AreaEffectCloud/duration +FD: net/minecraft/world/entity/AreaEffectCloud/f_19688_ net/minecraft/world/entity/AreaEffectCloud/waitTime +FD: net/minecraft/world/entity/AreaEffectCloud/f_19689_ net/minecraft/world/entity/AreaEffectCloud/reapplicationDelay +FD: net/minecraft/world/entity/AreaEffectCloud/f_19690_ net/minecraft/world/entity/AreaEffectCloud/fixedColor +FD: net/minecraft/world/entity/AreaEffectCloud/f_19691_ net/minecraft/world/entity/AreaEffectCloud/durationOnUse +FD: net/minecraft/world/entity/AreaEffectCloud/f_19692_ net/minecraft/world/entity/AreaEffectCloud/radiusOnUse +FD: net/minecraft/world/entity/AreaEffectCloud/f_19693_ net/minecraft/world/entity/AreaEffectCloud/radiusPerTick +FD: net/minecraft/world/entity/AreaEffectCloud/f_19694_ net/minecraft/world/entity/AreaEffectCloud/owner +FD: net/minecraft/world/entity/AreaEffectCloud/f_19695_ net/minecraft/world/entity/AreaEffectCloud/ownerUUID +FD: net/minecraft/world/entity/AreaEffectCloud/f_19696_ net/minecraft/world/entity/AreaEffectCloud/LOGGER +FD: net/minecraft/world/entity/AreaEffectCloud/f_19697_ net/minecraft/world/entity/AreaEffectCloud/DATA_RADIUS +FD: net/minecraft/world/entity/AreaEffectCloud/f_19698_ net/minecraft/world/entity/AreaEffectCloud/DATA_COLOR +FD: net/minecraft/world/entity/AreaEffectCloud/f_19699_ net/minecraft/world/entity/AreaEffectCloud/DATA_WAITING +FD: net/minecraft/world/entity/AreaEffectCloud/f_19700_ net/minecraft/world/entity/AreaEffectCloud/DATA_PARTICLE +FD: net/minecraft/world/entity/AreaEffectCloud/f_19701_ net/minecraft/world/entity/AreaEffectCloud/potion +FD: net/minecraft/world/entity/AreaEffectCloud/f_252417_ net/minecraft/world/entity/AreaEffectCloud/MINIMAL_RADIUS +FD: net/minecraft/world/entity/AreaEffectCloud/f_252504_ net/minecraft/world/entity/AreaEffectCloud/HEIGHT +FD: net/minecraft/world/entity/AreaEffectCloud/f_252512_ net/minecraft/world/entity/AreaEffectCloud/DEFAULT_WIDTH +FD: net/minecraft/world/entity/AreaEffectCloud/f_252519_ net/minecraft/world/entity/AreaEffectCloud/DEFAULT_RADIUS +FD: net/minecraft/world/entity/Display/f_268421_ net/minecraft/world/entity/Display/DATA_VIEW_RANGE_ID +FD: net/minecraft/world/entity/Display/f_268449_ net/minecraft/world/entity/Display/DATA_INTERPOLATION_DURATION_ID +FD: net/minecraft/world/entity/Display/f_268460_ net/minecraft/world/entity/Display/INITIAL_SHADOW_STRENGTH +FD: net/minecraft/world/entity/Display/f_268480_ net/minecraft/world/entity/Display/INITIAL_SHADOW_RADIUS +FD: net/minecraft/world/entity/Display/f_268489_ net/minecraft/world/entity/Display/DATA_SCALE_ID +FD: net/minecraft/world/entity/Display/f_268506_ net/minecraft/world/entity/Display/TAG_BRIGHTNESS +FD: net/minecraft/world/entity/Display/f_268507_ net/minecraft/world/entity/Display/TAG_SHADOW_STRENGTH +FD: net/minecraft/world/entity/Display/f_268514_ net/minecraft/world/entity/Display/TAG_BILLBOARD +FD: net/minecraft/world/entity/Display/f_268520_ net/minecraft/world/entity/Display/TAG_SHADOW_RADIUS +FD: net/minecraft/world/entity/Display/f_268527_ net/minecraft/world/entity/Display/DATA_SHADOW_RADIUS_ID +FD: net/minecraft/world/entity/Display/f_268528_ net/minecraft/world/entity/Display/TAG_INTERPOLATION_DURATION +FD: net/minecraft/world/entity/Display/f_268532_ net/minecraft/world/entity/Display/DATA_WIDTH_ID +FD: net/minecraft/world/entity/Display/f_268537_ net/minecraft/world/entity/Display/TAG_GLOW_COLOR_OVERRIDE +FD: net/minecraft/world/entity/Display/f_268593_ net/minecraft/world/entity/Display/DATA_BILLBOARD_RENDER_CONSTRAINTS_ID +FD: net/minecraft/world/entity/Display/f_268598_ net/minecraft/world/entity/Display/DATA_TRANSLATION_ID +FD: net/minecraft/world/entity/Display/f_268599_ net/minecraft/world/entity/Display/DATA_BRIGHTNESS_OVERRIDE_ID +FD: net/minecraft/world/entity/Display/f_268633_ net/minecraft/world/entity/Display/TAG_HEIGHT +FD: net/minecraft/world/entity/Display/f_268638_ net/minecraft/world/entity/Display/NO_BRIGHTNESS_OVERRIDE +FD: net/minecraft/world/entity/Display/f_268639_ net/minecraft/world/entity/Display/DATA_HEIGHT_ID +FD: net/minecraft/world/entity/Display/f_268644_ net/minecraft/world/entity/Display/LOGGER +FD: net/minecraft/world/entity/Display/f_268647_ net/minecraft/world/entity/Display/TAG_VIEW_RANGE +FD: net/minecraft/world/entity/Display/f_268687_ net/minecraft/world/entity/Display/DATA_GLOW_COLOR_OVERRIDE_ID +FD: net/minecraft/world/entity/Display/f_268693_ net/minecraft/world/entity/Display/DATA_LEFT_ROTATION_ID +FD: net/minecraft/world/entity/Display/f_268702_ net/minecraft/world/entity/Display/cullingBoundingBox +FD: net/minecraft/world/entity/Display/f_268708_ net/minecraft/world/entity/Display/DATA_SHADOW_STRENGTH_ID +FD: net/minecraft/world/entity/Display/f_268713_ net/minecraft/world/entity/Display/DATA_RIGHT_ROTATION_ID +FD: net/minecraft/world/entity/Display/f_268715_ net/minecraft/world/entity/Display/TAG_TRANSFORMATION +FD: net/minecraft/world/entity/Display/f_268716_ net/minecraft/world/entity/Display/NO_GLOW_COLOR_OVERRIDE +FD: net/minecraft/world/entity/Display/f_268732_ net/minecraft/world/entity/Display/orientation +FD: net/minecraft/world/entity/Display/f_268743_ net/minecraft/world/entity/Display/TAG_WIDTH +FD: net/minecraft/world/entity/Display/f_271381_ net/minecraft/world/entity/Display/interpolationStartClientTick +FD: net/minecraft/world/entity/Display/f_276153_ net/minecraft/world/entity/Display/lastProgress +FD: net/minecraft/world/entity/Display/f_276326_ net/minecraft/world/entity/Display/TAG_START_INTERPOLATION +FD: net/minecraft/world/entity/Display/f_276329_ net/minecraft/world/entity/Display/DATA_INTERPOLATION_START_DELTA_TICKS_ID +FD: net/minecraft/world/entity/Display/f_276444_ net/minecraft/world/entity/Display/updateStartTick +FD: net/minecraft/world/entity/Display/f_276470_ net/minecraft/world/entity/Display/updateRenderState +FD: net/minecraft/world/entity/Display/f_276570_ net/minecraft/world/entity/Display/updateInterpolationDuration +FD: net/minecraft/world/entity/Display/f_276582_ net/minecraft/world/entity/Display/RENDER_STATE_IDS +FD: net/minecraft/world/entity/Display/f_276631_ net/minecraft/world/entity/Display/interpolationDuration +FD: net/minecraft/world/entity/Display/f_276646_ net/minecraft/world/entity/Display/renderState +FD: net/minecraft/world/entity/Display$1/f_276636_ net/minecraft/world/entity/Display$1/$SwitchMap$net$minecraft$world$entity$Display$TextDisplay$Align +FD: net/minecraft/world/entity/Display$BillboardConstraints/$VALUES net/minecraft/world/entity/Display$BillboardConstraints/$VALUES +FD: net/minecraft/world/entity/Display$BillboardConstraints/CENTER net/minecraft/world/entity/Display$BillboardConstraints/CENTER +FD: net/minecraft/world/entity/Display$BillboardConstraints/FIXED net/minecraft/world/entity/Display$BillboardConstraints/FIXED +FD: net/minecraft/world/entity/Display$BillboardConstraints/HORIZONTAL net/minecraft/world/entity/Display$BillboardConstraints/HORIZONTAL +FD: net/minecraft/world/entity/Display$BillboardConstraints/VERTICAL net/minecraft/world/entity/Display$BillboardConstraints/VERTICAL +FD: net/minecraft/world/entity/Display$BillboardConstraints/f_268470_ net/minecraft/world/entity/Display$BillboardConstraints/id +FD: net/minecraft/world/entity/Display$BillboardConstraints/f_268505_ net/minecraft/world/entity/Display$BillboardConstraints/CODEC +FD: net/minecraft/world/entity/Display$BillboardConstraints/f_268544_ net/minecraft/world/entity/Display$BillboardConstraints/BY_ID +FD: net/minecraft/world/entity/Display$BillboardConstraints/f_268642_ net/minecraft/world/entity/Display$BillboardConstraints/name +FD: net/minecraft/world/entity/Display$BlockDisplay/f_268543_ net/minecraft/world/entity/Display$BlockDisplay/DATA_BLOCK_STATE_ID +FD: net/minecraft/world/entity/Display$BlockDisplay/f_268661_ net/minecraft/world/entity/Display$BlockDisplay/TAG_BLOCK_STATE +FD: net/minecraft/world/entity/Display$BlockDisplay/f_276560_ net/minecraft/world/entity/Display$BlockDisplay/blockRenderState +FD: net/minecraft/world/entity/Display$BlockDisplay$BlockRenderState/f_276526_ net/minecraft/world/entity/Display$BlockDisplay$BlockRenderState/blockState +FD: net/minecraft/world/entity/Display$ColorInterpolator/f_276509_ net/minecraft/world/entity/Display$ColorInterpolator/current +FD: net/minecraft/world/entity/Display$ColorInterpolator/f_276650_ net/minecraft/world/entity/Display$ColorInterpolator/previous +FD: net/minecraft/world/entity/Display$ItemDisplay/f_268451_ net/minecraft/world/entity/Display$ItemDisplay/slot +FD: net/minecraft/world/entity/Display$ItemDisplay/f_268455_ net/minecraft/world/entity/Display$ItemDisplay/DATA_ITEM_STACK_ID +FD: net/minecraft/world/entity/Display$ItemDisplay/f_268471_ net/minecraft/world/entity/Display$ItemDisplay/TAG_ITEM_DISPLAY +FD: net/minecraft/world/entity/Display$ItemDisplay/f_268554_ net/minecraft/world/entity/Display$ItemDisplay/TAG_ITEM +FD: net/minecraft/world/entity/Display$ItemDisplay/f_268601_ net/minecraft/world/entity/Display$ItemDisplay/DATA_ITEM_DISPLAY_ID +FD: net/minecraft/world/entity/Display$ItemDisplay/f_276545_ net/minecraft/world/entity/Display$ItemDisplay/itemRenderState +FD: net/minecraft/world/entity/Display$ItemDisplay$1/f_268621_ net/minecraft/world/entity/Display$ItemDisplay$1/this$0 +FD: net/minecraft/world/entity/Display$ItemDisplay$ItemRenderState/f_276600_ net/minecraft/world/entity/Display$ItemDisplay$ItemRenderState/itemStack +FD: net/minecraft/world/entity/Display$ItemDisplay$ItemRenderState/f_276629_ net/minecraft/world/entity/Display$ItemDisplay$ItemRenderState/itemTransform +FD: net/minecraft/world/entity/Display$LinearFloatInterpolator/f_276496_ net/minecraft/world/entity/Display$LinearFloatInterpolator/previous +FD: net/minecraft/world/entity/Display$LinearFloatInterpolator/f_276689_ net/minecraft/world/entity/Display$LinearFloatInterpolator/current +FD: net/minecraft/world/entity/Display$LinearIntInterpolator/f_276492_ net/minecraft/world/entity/Display$LinearIntInterpolator/current +FD: net/minecraft/world/entity/Display$LinearIntInterpolator/f_276498_ net/minecraft/world/entity/Display$LinearIntInterpolator/previous +FD: net/minecraft/world/entity/Display$RenderState/f_276438_ net/minecraft/world/entity/Display$RenderState/brightnessOverride +FD: net/minecraft/world/entity/Display$RenderState/f_276486_ net/minecraft/world/entity/Display$RenderState/glowColorOverride +FD: net/minecraft/world/entity/Display$RenderState/f_276506_ net/minecraft/world/entity/Display$RenderState/billboardConstraints +FD: net/minecraft/world/entity/Display$RenderState/f_276585_ net/minecraft/world/entity/Display$RenderState/transformation +FD: net/minecraft/world/entity/Display$RenderState/f_276607_ net/minecraft/world/entity/Display$RenderState/shadowRadius +FD: net/minecraft/world/entity/Display$RenderState/f_276693_ net/minecraft/world/entity/Display$RenderState/shadowStrength +FD: net/minecraft/world/entity/Display$TextDisplay/f_268445_ net/minecraft/world/entity/Display$TextDisplay/FLAG_SHADOW +FD: net/minecraft/world/entity/Display$TextDisplay/f_268465_ net/minecraft/world/entity/Display$TextDisplay/FLAG_USE_DEFAULT_BACKGROUND +FD: net/minecraft/world/entity/Display$TextDisplay/f_268476_ net/minecraft/world/entity/Display$TextDisplay/DATA_LINE_WIDTH_ID +FD: net/minecraft/world/entity/Display$TextDisplay/f_268481_ net/minecraft/world/entity/Display$TextDisplay/DATA_TEXT_OPACITY_ID +FD: net/minecraft/world/entity/Display$TextDisplay/f_268486_ net/minecraft/world/entity/Display$TextDisplay/TAG_ALIGNMENT +FD: net/minecraft/world/entity/Display$TextDisplay/f_268494_ net/minecraft/world/entity/Display$TextDisplay/DATA_BACKGROUND_COLOR_ID +FD: net/minecraft/world/entity/Display$TextDisplay/f_268529_ net/minecraft/world/entity/Display$TextDisplay/TAG_LINE_WIDTH +FD: net/minecraft/world/entity/Display$TextDisplay/f_268541_ net/minecraft/world/entity/Display$TextDisplay/INITIAL_TEXT_OPACITY +FD: net/minecraft/world/entity/Display$TextDisplay/f_268542_ net/minecraft/world/entity/Display$TextDisplay/DATA_TEXT_ID +FD: net/minecraft/world/entity/Display$TextDisplay/f_268545_ net/minecraft/world/entity/Display$TextDisplay/FLAG_ALIGN_RIGHT +FD: net/minecraft/world/entity/Display$TextDisplay/f_268552_ net/minecraft/world/entity/Display$TextDisplay/TAG_TEXT_OPACITY +FD: net/minecraft/world/entity/Display$TextDisplay/f_268562_ net/minecraft/world/entity/Display$TextDisplay/FLAG_ALIGN_LEFT +FD: net/minecraft/world/entity/Display$TextDisplay/f_268588_ net/minecraft/world/entity/Display$TextDisplay/TAG_TEXT +FD: net/minecraft/world/entity/Display$TextDisplay/f_268596_ net/minecraft/world/entity/Display$TextDisplay/TAG_BACKGROUND_COLOR +FD: net/minecraft/world/entity/Display$TextDisplay/f_268636_ net/minecraft/world/entity/Display$TextDisplay/DATA_STYLE_FLAGS_ID +FD: net/minecraft/world/entity/Display$TextDisplay/f_268662_ net/minecraft/world/entity/Display$TextDisplay/TAG_SHADOW +FD: net/minecraft/world/entity/Display$TextDisplay/f_268692_ net/minecraft/world/entity/Display$TextDisplay/TAG_SEE_THROUGH +FD: net/minecraft/world/entity/Display$TextDisplay/f_268694_ net/minecraft/world/entity/Display$TextDisplay/TAG_USE_DEFAULT_BACKGROUND +FD: net/minecraft/world/entity/Display$TextDisplay/f_268719_ net/minecraft/world/entity/Display$TextDisplay/clientDisplayCache +FD: net/minecraft/world/entity/Display$TextDisplay/f_268740_ net/minecraft/world/entity/Display$TextDisplay/FLAG_SEE_THROUGH +FD: net/minecraft/world/entity/Display$TextDisplay/f_268744_ net/minecraft/world/entity/Display$TextDisplay/INITIAL_BACKGROUND +FD: net/minecraft/world/entity/Display$TextDisplay/f_276462_ net/minecraft/world/entity/Display$TextDisplay/TEXT_RENDER_STATE_IDS +FD: net/minecraft/world/entity/Display$TextDisplay/f_276542_ net/minecraft/world/entity/Display$TextDisplay/textRenderState +FD: net/minecraft/world/entity/Display$TextDisplay$Align/$VALUES net/minecraft/world/entity/Display$TextDisplay$Align/$VALUES +FD: net/minecraft/world/entity/Display$TextDisplay$Align/CENTER net/minecraft/world/entity/Display$TextDisplay$Align/CENTER +FD: net/minecraft/world/entity/Display$TextDisplay$Align/LEFT net/minecraft/world/entity/Display$TextDisplay$Align/LEFT +FD: net/minecraft/world/entity/Display$TextDisplay$Align/RIGHT net/minecraft/world/entity/Display$TextDisplay$Align/RIGHT +FD: net/minecraft/world/entity/Display$TextDisplay$Align/f_268461_ net/minecraft/world/entity/Display$TextDisplay$Align/CODEC +FD: net/minecraft/world/entity/Display$TextDisplay$Align/f_268523_ net/minecraft/world/entity/Display$TextDisplay$Align/name +FD: net/minecraft/world/entity/Display$TextDisplay$CachedInfo/f_268557_ net/minecraft/world/entity/Display$TextDisplay$CachedInfo/width +FD: net/minecraft/world/entity/Display$TextDisplay$CachedInfo/f_268675_ net/minecraft/world/entity/Display$TextDisplay$CachedInfo/lines +FD: net/minecraft/world/entity/Display$TextDisplay$CachedLine/f_268443_ net/minecraft/world/entity/Display$TextDisplay$CachedLine/width +FD: net/minecraft/world/entity/Display$TextDisplay$CachedLine/f_268516_ net/minecraft/world/entity/Display$TextDisplay$CachedLine/contents +FD: net/minecraft/world/entity/Display$TextDisplay$TextRenderState/f_276477_ net/minecraft/world/entity/Display$TextDisplay$TextRenderState/text +FD: net/minecraft/world/entity/Display$TextDisplay$TextRenderState/f_276556_ net/minecraft/world/entity/Display$TextDisplay$TextRenderState/flags +FD: net/minecraft/world/entity/Display$TextDisplay$TextRenderState/f_276562_ net/minecraft/world/entity/Display$TextDisplay$TextRenderState/backgroundColor +FD: net/minecraft/world/entity/Display$TextDisplay$TextRenderState/f_276579_ net/minecraft/world/entity/Display$TextDisplay$TextRenderState/textOpacity +FD: net/minecraft/world/entity/Display$TextDisplay$TextRenderState/f_276622_ net/minecraft/world/entity/Display$TextDisplay$TextRenderState/lineWidth +FD: net/minecraft/world/entity/Display$TransformationInterpolator/f_276610_ net/minecraft/world/entity/Display$TransformationInterpolator/current +FD: net/minecraft/world/entity/Display$TransformationInterpolator/f_276675_ net/minecraft/world/entity/Display$TransformationInterpolator/previous +FD: net/minecraft/world/entity/Entity/f_146792_ net/minecraft/world/entity/Entity/DEFAULT_BB_WIDTH +FD: net/minecraft/world/entity/Entity/f_146793_ net/minecraft/world/entity/Entity/DEFAULT_BB_HEIGHT +FD: net/minecraft/world/entity/Entity/f_146794_ net/minecraft/world/entity/Entity/flyDist +FD: net/minecraft/world/entity/Entity/f_146795_ net/minecraft/world/entity/Entity/removalReason +FD: net/minecraft/world/entity/Entity/f_146796_ net/minecraft/world/entity/Entity/FLAG_SHIFT_KEY_DOWN +FD: net/minecraft/world/entity/Entity/f_146797_ net/minecraft/world/entity/Entity/FLAG_SPRINTING +FD: net/minecraft/world/entity/Entity/f_146798_ net/minecraft/world/entity/Entity/FLAG_SWIMMING +FD: net/minecraft/world/entity/Entity/f_146799_ net/minecraft/world/entity/Entity/FLAG_INVISIBLE +FD: net/minecraft/world/entity/Entity/f_146800_ net/minecraft/world/entity/Entity/DATA_TICKS_FROZEN +FD: net/minecraft/world/entity/Entity/f_146801_ net/minecraft/world/entity/Entity/levelCallback +FD: net/minecraft/world/entity/Entity/f_146802_ net/minecraft/world/entity/Entity/hasGlowingTag +FD: net/minecraft/world/entity/Entity/f_146803_ net/minecraft/world/entity/Entity/crystalSoundIntensity +FD: net/minecraft/world/entity/Entity/f_146804_ net/minecraft/world/entity/Entity/lastCrystalSoundPlayTick +FD: net/minecraft/world/entity/Entity/f_146805_ net/minecraft/world/entity/Entity/FLAG_ONFIRE +FD: net/minecraft/world/entity/Entity/f_146806_ net/minecraft/world/entity/Entity/FLAG_GLOWING +FD: net/minecraft/world/entity/Entity/f_146807_ net/minecraft/world/entity/Entity/FLAG_FALL_FLYING +FD: net/minecraft/world/entity/Entity/f_146808_ net/minecraft/world/entity/Entity/isInPowderSnow +FD: net/minecraft/world/entity/Entity/f_146809_ net/minecraft/world/entity/Entity/wasInPowderSnow +FD: net/minecraft/world/entity/Entity/f_146810_ net/minecraft/world/entity/Entity/wasOnFire +FD: net/minecraft/world/entity/Entity/f_146811_ net/minecraft/world/entity/Entity/LAVA_FAST_FLOW_SCALE +FD: net/minecraft/world/entity/Entity/f_146812_ net/minecraft/world/entity/Entity/LAVA_SLOW_FLOW_SCALE +FD: net/minecraft/world/entity/Entity/f_146813_ net/minecraft/world/entity/Entity/hasVisualFire +FD: net/minecraft/world/entity/Entity/f_146814_ net/minecraft/world/entity/Entity/WATER_FLOW_SCALE +FD: net/minecraft/world/entity/Entity/f_146815_ net/minecraft/world/entity/Entity/ID_TAG +FD: net/minecraft/world/entity/Entity/f_146816_ net/minecraft/world/entity/Entity/PASSENGERS_TAG +FD: net/minecraft/world/entity/Entity/f_146817_ net/minecraft/world/entity/Entity/BOARDING_COOLDOWN +FD: net/minecraft/world/entity/Entity/f_146818_ net/minecraft/world/entity/Entity/TOTAL_AIR_SUPPLY +FD: net/minecraft/world/entity/Entity/f_146819_ net/minecraft/world/entity/Entity/MAX_ENTITY_TAG_COUNT +FD: net/minecraft/world/entity/Entity/f_146821_ net/minecraft/world/entity/Entity/BREATHING_DISTANCE_BELOW_EYES +FD: net/minecraft/world/entity/Entity/f_146822_ net/minecraft/world/entity/Entity/BASE_TICKS_REQUIRED_TO_FREEZE +FD: net/minecraft/world/entity/Entity/f_146823_ net/minecraft/world/entity/Entity/FREEZE_HURT_FREQUENCY +FD: net/minecraft/world/entity/Entity/f_146824_ net/minecraft/world/entity/Entity/UUID_TAG +FD: net/minecraft/world/entity/Entity/f_185931_ net/minecraft/world/entity/Entity/minorHorizontalCollision +FD: net/minecraft/world/entity/Entity/f_185933_ net/minecraft/world/entity/Entity/chunkPosition +FD: net/minecraft/world/entity/Entity/f_185934_ net/minecraft/world/entity/Entity/feetBlockState +FD: net/minecraft/world/entity/Entity/f_19787_ net/minecraft/world/entity/Entity/walkDist +FD: net/minecraft/world/entity/Entity/f_19788_ net/minecraft/world/entity/Entity/moveDist +FD: net/minecraft/world/entity/Entity/f_19789_ net/minecraft/world/entity/Entity/fallDistance +FD: net/minecraft/world/entity/Entity/f_19790_ net/minecraft/world/entity/Entity/xOld +FD: net/minecraft/world/entity/Entity/f_19791_ net/minecraft/world/entity/Entity/yOld +FD: net/minecraft/world/entity/Entity/f_19792_ net/minecraft/world/entity/Entity/zOld +FD: net/minecraft/world/entity/Entity/f_19793_ net/minecraft/world/entity/Entity/maxUpStep +FD: net/minecraft/world/entity/Entity/f_19794_ net/minecraft/world/entity/Entity/noPhysics +FD: net/minecraft/world/entity/Entity/f_19796_ net/minecraft/world/entity/Entity/random +FD: net/minecraft/world/entity/Entity/f_19797_ net/minecraft/world/entity/Entity/tickCount +FD: net/minecraft/world/entity/Entity/f_19798_ net/minecraft/world/entity/Entity/wasTouchingWater +FD: net/minecraft/world/entity/Entity/f_19799_ net/minecraft/world/entity/Entity/fluidHeight +FD: net/minecraft/world/entity/Entity/f_19800_ net/minecraft/world/entity/Entity/wasEyeInWater +FD: net/minecraft/world/entity/Entity/f_19801_ net/minecraft/world/entity/Entity/fluidOnEyes +FD: net/minecraft/world/entity/Entity/f_19802_ net/minecraft/world/entity/Entity/invulnerableTime +FD: net/minecraft/world/entity/Entity/f_19803_ net/minecraft/world/entity/Entity/firstTick +FD: net/minecraft/world/entity/Entity/f_19804_ net/minecraft/world/entity/Entity/entityData +FD: net/minecraft/world/entity/Entity/f_19805_ net/minecraft/world/entity/Entity/DATA_SHARED_FLAGS_ID +FD: net/minecraft/world/entity/Entity/f_19806_ net/minecraft/world/entity/Entity/DATA_POSE +FD: net/minecraft/world/entity/Entity/f_19811_ net/minecraft/world/entity/Entity/noCulling +FD: net/minecraft/world/entity/Entity/f_19812_ net/minecraft/world/entity/Entity/hasImpulse +FD: net/minecraft/world/entity/Entity/f_19813_ net/minecraft/world/entity/Entity/pistonDeltas +FD: net/minecraft/world/entity/Entity/f_19814_ net/minecraft/world/entity/Entity/pistonDeltasGameTime +FD: net/minecraft/world/entity/Entity/f_19815_ net/minecraft/world/entity/Entity/dimensions +FD: net/minecraft/world/entity/Entity/f_19816_ net/minecraft/world/entity/Entity/eyeHeight +FD: net/minecraft/world/entity/Entity/f_19817_ net/minecraft/world/entity/Entity/isInsidePortal +FD: net/minecraft/world/entity/Entity/f_19818_ net/minecraft/world/entity/Entity/portalTime +FD: net/minecraft/world/entity/Entity/f_19819_ net/minecraft/world/entity/Entity/portalEntrancePos +FD: net/minecraft/world/entity/Entity/f_19820_ net/minecraft/world/entity/Entity/uuid +FD: net/minecraft/world/entity/Entity/f_19821_ net/minecraft/world/entity/Entity/stringUUID +FD: net/minecraft/world/entity/Entity/f_19823_ net/minecraft/world/entity/Entity/passengers +FD: net/minecraft/world/entity/Entity/f_19824_ net/minecraft/world/entity/Entity/vehicle +FD: net/minecraft/world/entity/Entity/f_19825_ net/minecraft/world/entity/Entity/position +FD: net/minecraft/world/entity/Entity/f_19826_ net/minecraft/world/entity/Entity/blockPosition +FD: net/minecraft/world/entity/Entity/f_19827_ net/minecraft/world/entity/Entity/deltaMovement +FD: net/minecraft/world/entity/Entity/f_19828_ net/minecraft/world/entity/Entity/bb +FD: net/minecraft/world/entity/Entity/f_19829_ net/minecraft/world/entity/Entity/nextStep +FD: net/minecraft/world/entity/Entity/f_19831_ net/minecraft/world/entity/Entity/remainingFireTicks +FD: net/minecraft/world/entity/Entity/f_19832_ net/minecraft/world/entity/Entity/DATA_AIR_SUPPLY_ID +FD: net/minecraft/world/entity/Entity/f_19833_ net/minecraft/world/entity/Entity/DATA_CUSTOM_NAME +FD: net/minecraft/world/entity/Entity/f_19834_ net/minecraft/world/entity/Entity/DATA_CUSTOM_NAME_VISIBLE +FD: net/minecraft/world/entity/Entity/f_19835_ net/minecraft/world/entity/Entity/DATA_SILENT +FD: net/minecraft/world/entity/Entity/f_19836_ net/minecraft/world/entity/Entity/DATA_NO_GRAVITY +FD: net/minecraft/world/entity/Entity/f_19839_ net/minecraft/world/entity/Entity/portalCooldown +FD: net/minecraft/world/entity/Entity/f_19840_ net/minecraft/world/entity/Entity/invulnerable +FD: net/minecraft/world/entity/Entity/f_19841_ net/minecraft/world/entity/Entity/tags +FD: net/minecraft/world/entity/Entity/f_19843_ net/minecraft/world/entity/Entity/ENTITY_COUNTER +FD: net/minecraft/world/entity/Entity/f_19844_ net/minecraft/world/entity/Entity/EMPTY_LIST +FD: net/minecraft/world/entity/Entity/f_19845_ net/minecraft/world/entity/Entity/INITIAL_AABB +FD: net/minecraft/world/entity/Entity/f_19846_ net/minecraft/world/entity/Entity/viewScale +FD: net/minecraft/world/entity/Entity/f_19847_ net/minecraft/world/entity/Entity/type +FD: net/minecraft/world/entity/Entity/f_19848_ net/minecraft/world/entity/Entity/id +FD: net/minecraft/world/entity/Entity/f_19849_ net/minecraft/world/entity/Entity/LOGGER +FD: net/minecraft/world/entity/Entity/f_19850_ net/minecraft/world/entity/Entity/blocksBuilding +FD: net/minecraft/world/entity/Entity/f_19851_ net/minecraft/world/entity/Entity/boardingCooldown +FD: net/minecraft/world/entity/Entity/f_19853_ net/minecraft/world/entity/Entity/level +FD: net/minecraft/world/entity/Entity/f_19854_ net/minecraft/world/entity/Entity/xo +FD: net/minecraft/world/entity/Entity/f_19855_ net/minecraft/world/entity/Entity/yo +FD: net/minecraft/world/entity/Entity/f_19856_ net/minecraft/world/entity/Entity/zo +FD: net/minecraft/world/entity/Entity/f_19857_ net/minecraft/world/entity/Entity/yRot +FD: net/minecraft/world/entity/Entity/f_19858_ net/minecraft/world/entity/Entity/xRot +FD: net/minecraft/world/entity/Entity/f_19859_ net/minecraft/world/entity/Entity/yRotO +FD: net/minecraft/world/entity/Entity/f_19860_ net/minecraft/world/entity/Entity/xRotO +FD: net/minecraft/world/entity/Entity/f_19861_ net/minecraft/world/entity/Entity/onGround +FD: net/minecraft/world/entity/Entity/f_19862_ net/minecraft/world/entity/Entity/horizontalCollision +FD: net/minecraft/world/entity/Entity/f_19863_ net/minecraft/world/entity/Entity/verticalCollision +FD: net/minecraft/world/entity/Entity/f_19864_ net/minecraft/world/entity/Entity/hurtMarked +FD: net/minecraft/world/entity/Entity/f_19865_ net/minecraft/world/entity/Entity/stuckSpeedMultiplier +FD: net/minecraft/world/entity/Entity/f_19867_ net/minecraft/world/entity/Entity/walkDistO +FD: net/minecraft/world/entity/Entity/f_201939_ net/minecraft/world/entity/Entity/verticalCollisionBelow +FD: net/minecraft/world/entity/Entity/f_216985_ net/minecraft/world/entity/Entity/packetPositionCodec +FD: net/minecraft/world/entity/Entity/f_285638_ net/minecraft/world/entity/Entity/mainSupportingBlockPos +FD: net/minecraft/world/entity/Entity/f_286942_ net/minecraft/world/entity/Entity/onGroundNoBlocks +FD: net/minecraft/world/entity/Entity/f_286980_ net/minecraft/world/entity/Entity/DELTA_AFFECTED_BY_BLOCKS_BELOW_0_2 +FD: net/minecraft/world/entity/Entity/f_286994_ net/minecraft/world/entity/Entity/DELTA_AFFECTED_BY_BLOCKS_BELOW_0_5 +FD: net/minecraft/world/entity/Entity/f_287009_ net/minecraft/world/entity/Entity/DELTA_AFFECTED_BY_BLOCKS_BELOW_1_0 +FD: net/minecraft/world/entity/Entity$1/f_20369_ net/minecraft/world/entity/Entity$1/$SwitchMap$net$minecraft$world$level$block$Rotation +FD: net/minecraft/world/entity/Entity$1/f_20370_ net/minecraft/world/entity/Entity$1/$SwitchMap$net$minecraft$world$level$block$Mirror +FD: net/minecraft/world/entity/Entity$MovementEmission/$VALUES net/minecraft/world/entity/Entity$MovementEmission/$VALUES +FD: net/minecraft/world/entity/Entity$MovementEmission/ALL net/minecraft/world/entity/Entity$MovementEmission/ALL +FD: net/minecraft/world/entity/Entity$MovementEmission/EVENTS net/minecraft/world/entity/Entity$MovementEmission/EVENTS +FD: net/minecraft/world/entity/Entity$MovementEmission/NONE net/minecraft/world/entity/Entity$MovementEmission/NONE +FD: net/minecraft/world/entity/Entity$MovementEmission/SOUNDS net/minecraft/world/entity/Entity$MovementEmission/SOUNDS +FD: net/minecraft/world/entity/Entity$MovementEmission/f_146935_ net/minecraft/world/entity/Entity$MovementEmission/sounds +FD: net/minecraft/world/entity/Entity$MovementEmission/f_146936_ net/minecraft/world/entity/Entity$MovementEmission/events +FD: net/minecraft/world/entity/Entity$RemovalReason/$VALUES net/minecraft/world/entity/Entity$RemovalReason/$VALUES +FD: net/minecraft/world/entity/Entity$RemovalReason/CHANGED_DIMENSION net/minecraft/world/entity/Entity$RemovalReason/CHANGED_DIMENSION +FD: net/minecraft/world/entity/Entity$RemovalReason/DISCARDED net/minecraft/world/entity/Entity$RemovalReason/DISCARDED +FD: net/minecraft/world/entity/Entity$RemovalReason/KILLED net/minecraft/world/entity/Entity$RemovalReason/KILLED +FD: net/minecraft/world/entity/Entity$RemovalReason/UNLOADED_TO_CHUNK net/minecraft/world/entity/Entity$RemovalReason/UNLOADED_TO_CHUNK +FD: net/minecraft/world/entity/Entity$RemovalReason/UNLOADED_WITH_PLAYER net/minecraft/world/entity/Entity$RemovalReason/UNLOADED_WITH_PLAYER +FD: net/minecraft/world/entity/Entity$RemovalReason/f_146956_ net/minecraft/world/entity/Entity$RemovalReason/destroy +FD: net/minecraft/world/entity/Entity$RemovalReason/f_146957_ net/minecraft/world/entity/Entity$RemovalReason/save +FD: net/minecraft/world/entity/EntityDimensions/f_20377_ net/minecraft/world/entity/EntityDimensions/width +FD: net/minecraft/world/entity/EntityDimensions/f_20378_ net/minecraft/world/entity/EntityDimensions/height +FD: net/minecraft/world/entity/EntityDimensions/f_20379_ net/minecraft/world/entity/EntityDimensions/fixed +FD: net/minecraft/world/entity/EntityEvent/f_146971_ net/minecraft/world/entity/EntityEvent/PERMISSION_LEVEL_ADMINS +FD: net/minecraft/world/entity/EntityEvent/f_146972_ net/minecraft/world/entity/EntityEvent/PERMISSION_LEVEL_OWNERS +FD: net/minecraft/world/entity/EntityEvent/f_146973_ net/minecraft/world/entity/EntityEvent/ATTACK_BLOCKED +FD: net/minecraft/world/entity/EntityEvent/f_146974_ net/minecraft/world/entity/EntityEvent/SHIELD_DISABLED +FD: net/minecraft/world/entity/EntityEvent/f_146975_ net/minecraft/world/entity/EntityEvent/FISHING_ROD_REEL_IN +FD: net/minecraft/world/entity/EntityEvent/f_146976_ net/minecraft/world/entity/EntityEvent/ARMORSTAND_WOBBLE +FD: net/minecraft/world/entity/EntityEvent/f_146978_ net/minecraft/world/entity/EntityEvent/STOP_OFFER_FLOWER +FD: net/minecraft/world/entity/EntityEvent/f_146979_ net/minecraft/world/entity/EntityEvent/TALISMAN_ACTIVATE +FD: net/minecraft/world/entity/EntityEvent/f_146982_ net/minecraft/world/entity/EntityEvent/DOLPHIN_LOOKING_FOR_TREASURE +FD: net/minecraft/world/entity/EntityEvent/f_146983_ net/minecraft/world/entity/EntityEvent/RAVAGER_STUNNED +FD: net/minecraft/world/entity/EntityEvent/f_146984_ net/minecraft/world/entity/EntityEvent/TRUSTING_FAILED +FD: net/minecraft/world/entity/EntityEvent/f_146985_ net/minecraft/world/entity/EntityEvent/TRUSTING_SUCCEEDED +FD: net/minecraft/world/entity/EntityEvent/f_146986_ net/minecraft/world/entity/EntityEvent/VILLAGER_SWEAT +FD: net/minecraft/world/entity/EntityEvent/f_146987_ net/minecraft/world/entity/EntityEvent/BAD_OMEN_TRIGGERED +FD: net/minecraft/world/entity/EntityEvent/f_146989_ net/minecraft/world/entity/EntityEvent/FOX_EAT +FD: net/minecraft/world/entity/EntityEvent/f_146990_ net/minecraft/world/entity/EntityEvent/TELEPORT +FD: net/minecraft/world/entity/EntityEvent/f_146991_ net/minecraft/world/entity/EntityEvent/MAINHAND_BREAK +FD: net/minecraft/world/entity/EntityEvent/f_146992_ net/minecraft/world/entity/EntityEvent/OFFHAND_BREAK +FD: net/minecraft/world/entity/EntityEvent/f_146993_ net/minecraft/world/entity/EntityEvent/HEAD_BREAK +FD: net/minecraft/world/entity/EntityEvent/f_146994_ net/minecraft/world/entity/EntityEvent/CHEST_BREAK +FD: net/minecraft/world/entity/EntityEvent/f_146995_ net/minecraft/world/entity/EntityEvent/LEGS_BREAK +FD: net/minecraft/world/entity/EntityEvent/f_146996_ net/minecraft/world/entity/EntityEvent/FEET_BREAK +FD: net/minecraft/world/entity/EntityEvent/f_146997_ net/minecraft/world/entity/EntityEvent/JUMP +FD: net/minecraft/world/entity/EntityEvent/f_146998_ net/minecraft/world/entity/EntityEvent/HONEY_SLIDE +FD: net/minecraft/world/entity/EntityEvent/f_146999_ net/minecraft/world/entity/EntityEvent/HONEY_JUMP +FD: net/minecraft/world/entity/EntityEvent/f_147000_ net/minecraft/world/entity/EntityEvent/SWAP_HANDS +FD: net/minecraft/world/entity/EntityEvent/f_147001_ net/minecraft/world/entity/EntityEvent/CANCEL_SHAKE_WETNESS +FD: net/minecraft/world/entity/EntityEvent/f_147003_ net/minecraft/world/entity/EntityEvent/START_RAM +FD: net/minecraft/world/entity/EntityEvent/f_147004_ net/minecraft/world/entity/EntityEvent/END_RAM +FD: net/minecraft/world/entity/EntityEvent/f_147005_ net/minecraft/world/entity/EntityEvent/POOF +FD: net/minecraft/world/entity/EntityEvent/f_147007_ net/minecraft/world/entity/EntityEvent/DEATH +FD: net/minecraft/world/entity/EntityEvent/f_147008_ net/minecraft/world/entity/EntityEvent/START_ATTACKING +FD: net/minecraft/world/entity/EntityEvent/f_147009_ net/minecraft/world/entity/EntityEvent/STOP_ATTACKING +FD: net/minecraft/world/entity/EntityEvent/f_147010_ net/minecraft/world/entity/EntityEvent/TAMING_FAILED +FD: net/minecraft/world/entity/EntityEvent/f_147011_ net/minecraft/world/entity/EntityEvent/TAMING_SUCCEEDED +FD: net/minecraft/world/entity/EntityEvent/f_147012_ net/minecraft/world/entity/EntityEvent/SHAKE_WETNESS +FD: net/minecraft/world/entity/EntityEvent/f_147013_ net/minecraft/world/entity/EntityEvent/USE_ITEM_COMPLETE +FD: net/minecraft/world/entity/EntityEvent/f_147014_ net/minecraft/world/entity/EntityEvent/EAT_GRASS +FD: net/minecraft/world/entity/EntityEvent/f_147015_ net/minecraft/world/entity/EntityEvent/OFFER_FLOWER +FD: net/minecraft/world/entity/EntityEvent/f_147016_ net/minecraft/world/entity/EntityEvent/LOVE_HEARTS +FD: net/minecraft/world/entity/EntityEvent/f_147017_ net/minecraft/world/entity/EntityEvent/VILLAGER_ANGRY +FD: net/minecraft/world/entity/EntityEvent/f_147018_ net/minecraft/world/entity/EntityEvent/VILLAGER_HAPPY +FD: net/minecraft/world/entity/EntityEvent/f_147019_ net/minecraft/world/entity/EntityEvent/WITCH_HAT_MAGIC +FD: net/minecraft/world/entity/EntityEvent/f_147020_ net/minecraft/world/entity/EntityEvent/ZOMBIE_CONVERTING +FD: net/minecraft/world/entity/EntityEvent/f_147021_ net/minecraft/world/entity/EntityEvent/FIREWORKS_EXPLODE +FD: net/minecraft/world/entity/EntityEvent/f_147022_ net/minecraft/world/entity/EntityEvent/IN_LOVE_HEARTS +FD: net/minecraft/world/entity/EntityEvent/f_147023_ net/minecraft/world/entity/EntityEvent/SQUID_ANIM_SYNCH +FD: net/minecraft/world/entity/EntityEvent/f_147024_ net/minecraft/world/entity/EntityEvent/SILVERFISH_MERGE_ANIM +FD: net/minecraft/world/entity/EntityEvent/f_147025_ net/minecraft/world/entity/EntityEvent/GUARDIAN_ATTACK_SOUND +FD: net/minecraft/world/entity/EntityEvent/f_147026_ net/minecraft/world/entity/EntityEvent/REDUCED_DEBUG_INFO +FD: net/minecraft/world/entity/EntityEvent/f_147027_ net/minecraft/world/entity/EntityEvent/FULL_DEBUG_INFO +FD: net/minecraft/world/entity/EntityEvent/f_147028_ net/minecraft/world/entity/EntityEvent/PERMISSION_LEVEL_ALL +FD: net/minecraft/world/entity/EntityEvent/f_147029_ net/minecraft/world/entity/EntityEvent/PERMISSION_LEVEL_MODERATORS +FD: net/minecraft/world/entity/EntityEvent/f_147030_ net/minecraft/world/entity/EntityEvent/PERMISSION_LEVEL_GAMEMASTERS +FD: net/minecraft/world/entity/EntityEvent/f_217010_ net/minecraft/world/entity/EntityEvent/TENDRILS_SHIVER +FD: net/minecraft/world/entity/EntityEvent/f_217011_ net/minecraft/world/entity/EntityEvent/SONIC_CHARGE +FD: net/minecraft/world/entity/EntityEvent/f_271335_ net/minecraft/world/entity/EntityEvent/SNIFFER_DIGGING_SOUND +FD: net/minecraft/world/entity/EntitySelector/f_185987_ net/minecraft/world/entity/EntitySelector/CAN_BE_COLLIDED_WITH +FD: net/minecraft/world/entity/EntitySelector/f_20402_ net/minecraft/world/entity/EntitySelector/ENTITY_STILL_ALIVE +FD: net/minecraft/world/entity/EntitySelector/f_20403_ net/minecraft/world/entity/EntitySelector/LIVING_ENTITY_STILL_ALIVE +FD: net/minecraft/world/entity/EntitySelector/f_20404_ net/minecraft/world/entity/EntitySelector/ENTITY_NOT_BEING_RIDDEN +FD: net/minecraft/world/entity/EntitySelector/f_20405_ net/minecraft/world/entity/EntitySelector/CONTAINER_ENTITY_SELECTOR +FD: net/minecraft/world/entity/EntitySelector/f_20406_ net/minecraft/world/entity/EntitySelector/NO_CREATIVE_OR_SPECTATOR +FD: net/minecraft/world/entity/EntitySelector/f_20408_ net/minecraft/world/entity/EntitySelector/NO_SPECTATORS +FD: net/minecraft/world/entity/EntitySelector$MobCanWearArmorEntitySelector/f_20443_ net/minecraft/world/entity/EntitySelector$MobCanWearArmorEntitySelector/itemStack +FD: net/minecraft/world/entity/EntityType/f_147033_ net/minecraft/world/entity/EntityType/GLOW_ITEM_FRAME +FD: net/minecraft/world/entity/EntityType/f_147034_ net/minecraft/world/entity/EntityType/GLOW_SQUID +FD: net/minecraft/world/entity/EntityType/f_147035_ net/minecraft/world/entity/EntityType/GOAT +FD: net/minecraft/world/entity/EntityType/f_147036_ net/minecraft/world/entity/EntityType/MARKER +FD: net/minecraft/world/entity/EntityType/f_147037_ net/minecraft/world/entity/EntityType/ENTITY_TAG +FD: net/minecraft/world/entity/EntityType/f_147038_ net/minecraft/world/entity/EntityType/MAGIC_HORSE_WIDTH +FD: net/minecraft/world/entity/EntityType/f_147039_ net/minecraft/world/entity/EntityType/AXOLOTL +FD: net/minecraft/world/entity/EntityType/f_204038_ net/minecraft/world/entity/EntityType/builtInRegistryHolder +FD: net/minecraft/world/entity/EntityType/f_20450_ net/minecraft/world/entity/EntityType/FALLING_BLOCK +FD: net/minecraft/world/entity/EntityType/f_20451_ net/minecraft/world/entity/EntityType/FIREWORK_ROCKET +FD: net/minecraft/world/entity/EntityType/f_20452_ net/minecraft/world/entity/EntityType/FOX +FD: net/minecraft/world/entity/EntityType/f_20453_ net/minecraft/world/entity/EntityType/GHAST +FD: net/minecraft/world/entity/EntityType/f_20454_ net/minecraft/world/entity/EntityType/GIANT +FD: net/minecraft/world/entity/EntityType/f_20455_ net/minecraft/world/entity/EntityType/GUARDIAN +FD: net/minecraft/world/entity/EntityType/f_20456_ net/minecraft/world/entity/EntityType/HOGLIN +FD: net/minecraft/world/entity/EntityType/f_20457_ net/minecraft/world/entity/EntityType/HORSE +FD: net/minecraft/world/entity/EntityType/f_20458_ net/minecraft/world/entity/EntityType/HUSK +FD: net/minecraft/world/entity/EntityType/f_20459_ net/minecraft/world/entity/EntityType/ILLUSIONER +FD: net/minecraft/world/entity/EntityType/f_20460_ net/minecraft/world/entity/EntityType/IRON_GOLEM +FD: net/minecraft/world/entity/EntityType/f_20461_ net/minecraft/world/entity/EntityType/ITEM +FD: net/minecraft/world/entity/EntityType/f_20462_ net/minecraft/world/entity/EntityType/ITEM_FRAME +FD: net/minecraft/world/entity/EntityType/f_20463_ net/minecraft/world/entity/EntityType/FIREBALL +FD: net/minecraft/world/entity/EntityType/f_20464_ net/minecraft/world/entity/EntityType/LEASH_KNOT +FD: net/minecraft/world/entity/EntityType/f_20465_ net/minecraft/world/entity/EntityType/LIGHTNING_BOLT +FD: net/minecraft/world/entity/EntityType/f_20466_ net/minecraft/world/entity/EntityType/LLAMA +FD: net/minecraft/world/entity/EntityType/f_20467_ net/minecraft/world/entity/EntityType/LLAMA_SPIT +FD: net/minecraft/world/entity/EntityType/f_20468_ net/minecraft/world/entity/EntityType/MAGMA_CUBE +FD: net/minecraft/world/entity/EntityType/f_20469_ net/minecraft/world/entity/EntityType/MINECART +FD: net/minecraft/world/entity/EntityType/f_20470_ net/minecraft/world/entity/EntityType/CHEST_MINECART +FD: net/minecraft/world/entity/EntityType/f_20471_ net/minecraft/world/entity/EntityType/COMMAND_BLOCK_MINECART +FD: net/minecraft/world/entity/EntityType/f_20472_ net/minecraft/world/entity/EntityType/FURNACE_MINECART +FD: net/minecraft/world/entity/EntityType/f_20473_ net/minecraft/world/entity/EntityType/HOPPER_MINECART +FD: net/minecraft/world/entity/EntityType/f_20474_ net/minecraft/world/entity/EntityType/SPAWNER_MINECART +FD: net/minecraft/world/entity/EntityType/f_20475_ net/minecraft/world/entity/EntityType/TNT_MINECART +FD: net/minecraft/world/entity/EntityType/f_20476_ net/minecraft/world/entity/EntityType/AREA_EFFECT_CLOUD +FD: net/minecraft/world/entity/EntityType/f_20477_ net/minecraft/world/entity/EntityType/SNOWBALL +FD: net/minecraft/world/entity/EntityType/f_20478_ net/minecraft/world/entity/EntityType/SPECTRAL_ARROW +FD: net/minecraft/world/entity/EntityType/f_20479_ net/minecraft/world/entity/EntityType/SPIDER +FD: net/minecraft/world/entity/EntityType/f_20480_ net/minecraft/world/entity/EntityType/SQUID +FD: net/minecraft/world/entity/EntityType/f_20481_ net/minecraft/world/entity/EntityType/STRAY +FD: net/minecraft/world/entity/EntityType/f_20482_ net/minecraft/world/entity/EntityType/STRIDER +FD: net/minecraft/world/entity/EntityType/f_20483_ net/minecraft/world/entity/EntityType/EGG +FD: net/minecraft/world/entity/EntityType/f_20484_ net/minecraft/world/entity/EntityType/ENDER_PEARL +FD: net/minecraft/world/entity/EntityType/f_20485_ net/minecraft/world/entity/EntityType/EXPERIENCE_BOTTLE +FD: net/minecraft/world/entity/EntityType/f_20486_ net/minecraft/world/entity/EntityType/POTION +FD: net/minecraft/world/entity/EntityType/f_20487_ net/minecraft/world/entity/EntityType/TRIDENT +FD: net/minecraft/world/entity/EntityType/f_20488_ net/minecraft/world/entity/EntityType/TRADER_LLAMA +FD: net/minecraft/world/entity/EntityType/f_20489_ net/minecraft/world/entity/EntityType/TROPICAL_FISH +FD: net/minecraft/world/entity/EntityType/f_20490_ net/minecraft/world/entity/EntityType/TURTLE +FD: net/minecraft/world/entity/EntityType/f_20491_ net/minecraft/world/entity/EntityType/VEX +FD: net/minecraft/world/entity/EntityType/f_20492_ net/minecraft/world/entity/EntityType/VILLAGER +FD: net/minecraft/world/entity/EntityType/f_20493_ net/minecraft/world/entity/EntityType/VINDICATOR +FD: net/minecraft/world/entity/EntityType/f_20494_ net/minecraft/world/entity/EntityType/WANDERING_TRADER +FD: net/minecraft/world/entity/EntityType/f_20495_ net/minecraft/world/entity/EntityType/WITCH +FD: net/minecraft/world/entity/EntityType/f_20496_ net/minecraft/world/entity/EntityType/WITHER +FD: net/minecraft/world/entity/EntityType/f_20497_ net/minecraft/world/entity/EntityType/WITHER_SKELETON +FD: net/minecraft/world/entity/EntityType/f_20498_ net/minecraft/world/entity/EntityType/WITHER_SKULL +FD: net/minecraft/world/entity/EntityType/f_20499_ net/minecraft/world/entity/EntityType/WOLF +FD: net/minecraft/world/entity/EntityType/f_20500_ net/minecraft/world/entity/EntityType/ZOGLIN +FD: net/minecraft/world/entity/EntityType/f_20501_ net/minecraft/world/entity/EntityType/ZOMBIE +FD: net/minecraft/world/entity/EntityType/f_20502_ net/minecraft/world/entity/EntityType/ZOMBIE_HORSE +FD: net/minecraft/world/entity/EntityType/f_20503_ net/minecraft/world/entity/EntityType/MULE +FD: net/minecraft/world/entity/EntityType/f_20504_ net/minecraft/world/entity/EntityType/MOOSHROOM +FD: net/minecraft/world/entity/EntityType/f_20505_ net/minecraft/world/entity/EntityType/OCELOT +FD: net/minecraft/world/entity/EntityType/f_20506_ net/minecraft/world/entity/EntityType/PAINTING +FD: net/minecraft/world/entity/EntityType/f_20507_ net/minecraft/world/entity/EntityType/PANDA +FD: net/minecraft/world/entity/EntityType/f_20508_ net/minecraft/world/entity/EntityType/PARROT +FD: net/minecraft/world/entity/EntityType/f_20509_ net/minecraft/world/entity/EntityType/PHANTOM +FD: net/minecraft/world/entity/EntityType/f_20510_ net/minecraft/world/entity/EntityType/PIG +FD: net/minecraft/world/entity/EntityType/f_20511_ net/minecraft/world/entity/EntityType/PIGLIN +FD: net/minecraft/world/entity/EntityType/f_20512_ net/minecraft/world/entity/EntityType/PIGLIN_BRUTE +FD: net/minecraft/world/entity/EntityType/f_20513_ net/minecraft/world/entity/EntityType/PILLAGER +FD: net/minecraft/world/entity/EntityType/f_20514_ net/minecraft/world/entity/EntityType/POLAR_BEAR +FD: net/minecraft/world/entity/EntityType/f_20515_ net/minecraft/world/entity/EntityType/TNT +FD: net/minecraft/world/entity/EntityType/f_20516_ net/minecraft/world/entity/EntityType/PUFFERFISH +FD: net/minecraft/world/entity/EntityType/f_20517_ net/minecraft/world/entity/EntityType/RABBIT +FD: net/minecraft/world/entity/EntityType/f_20518_ net/minecraft/world/entity/EntityType/RAVAGER +FD: net/minecraft/world/entity/EntityType/f_20519_ net/minecraft/world/entity/EntityType/SALMON +FD: net/minecraft/world/entity/EntityType/f_20520_ net/minecraft/world/entity/EntityType/SHEEP +FD: net/minecraft/world/entity/EntityType/f_20521_ net/minecraft/world/entity/EntityType/SHULKER +FD: net/minecraft/world/entity/EntityType/f_20522_ net/minecraft/world/entity/EntityType/SHULKER_BULLET +FD: net/minecraft/world/entity/EntityType/f_20523_ net/minecraft/world/entity/EntityType/SILVERFISH +FD: net/minecraft/world/entity/EntityType/f_20524_ net/minecraft/world/entity/EntityType/SKELETON +FD: net/minecraft/world/entity/EntityType/f_20525_ net/minecraft/world/entity/EntityType/SKELETON_HORSE +FD: net/minecraft/world/entity/EntityType/f_20526_ net/minecraft/world/entity/EntityType/SLIME +FD: net/minecraft/world/entity/EntityType/f_20527_ net/minecraft/world/entity/EntityType/SMALL_FIREBALL +FD: net/minecraft/world/entity/EntityType/f_20528_ net/minecraft/world/entity/EntityType/SNOW_GOLEM +FD: net/minecraft/world/entity/EntityType/f_20529_ net/minecraft/world/entity/EntityType/ARMOR_STAND +FD: net/minecraft/world/entity/EntityType/f_20530_ net/minecraft/world/entity/EntityType/ZOMBIE_VILLAGER +FD: net/minecraft/world/entity/EntityType/f_20531_ net/minecraft/world/entity/EntityType/ZOMBIFIED_PIGLIN +FD: net/minecraft/world/entity/EntityType/f_20532_ net/minecraft/world/entity/EntityType/PLAYER +FD: net/minecraft/world/entity/EntityType/f_20533_ net/minecraft/world/entity/EntityType/FISHING_BOBBER +FD: net/minecraft/world/entity/EntityType/f_20534_ net/minecraft/world/entity/EntityType/LOGGER +FD: net/minecraft/world/entity/EntityType/f_20535_ net/minecraft/world/entity/EntityType/factory +FD: net/minecraft/world/entity/EntityType/f_20536_ net/minecraft/world/entity/EntityType/category +FD: net/minecraft/world/entity/EntityType/f_20537_ net/minecraft/world/entity/EntityType/immuneTo +FD: net/minecraft/world/entity/EntityType/f_20538_ net/minecraft/world/entity/EntityType/serialize +FD: net/minecraft/world/entity/EntityType/f_20539_ net/minecraft/world/entity/EntityType/summon +FD: net/minecraft/world/entity/EntityType/f_20540_ net/minecraft/world/entity/EntityType/fireImmune +FD: net/minecraft/world/entity/EntityType/f_20541_ net/minecraft/world/entity/EntityType/canSpawnFarFromPlayer +FD: net/minecraft/world/entity/EntityType/f_20542_ net/minecraft/world/entity/EntityType/clientTrackingRange +FD: net/minecraft/world/entity/EntityType/f_20543_ net/minecraft/world/entity/EntityType/updateInterval +FD: net/minecraft/world/entity/EntityType/f_20544_ net/minecraft/world/entity/EntityType/descriptionId +FD: net/minecraft/world/entity/EntityType/f_20545_ net/minecraft/world/entity/EntityType/description +FD: net/minecraft/world/entity/EntityType/f_20546_ net/minecraft/world/entity/EntityType/lootTable +FD: net/minecraft/world/entity/EntityType/f_20547_ net/minecraft/world/entity/EntityType/dimensions +FD: net/minecraft/world/entity/EntityType/f_20548_ net/minecraft/world/entity/EntityType/ARROW +FD: net/minecraft/world/entity/EntityType/f_20549_ net/minecraft/world/entity/EntityType/BAT +FD: net/minecraft/world/entity/EntityType/f_20550_ net/minecraft/world/entity/EntityType/BEE +FD: net/minecraft/world/entity/EntityType/f_20551_ net/minecraft/world/entity/EntityType/BLAZE +FD: net/minecraft/world/entity/EntityType/f_20552_ net/minecraft/world/entity/EntityType/BOAT +FD: net/minecraft/world/entity/EntityType/f_20553_ net/minecraft/world/entity/EntityType/CAT +FD: net/minecraft/world/entity/EntityType/f_20554_ net/minecraft/world/entity/EntityType/CAVE_SPIDER +FD: net/minecraft/world/entity/EntityType/f_20555_ net/minecraft/world/entity/EntityType/CHICKEN +FD: net/minecraft/world/entity/EntityType/f_20556_ net/minecraft/world/entity/EntityType/COD +FD: net/minecraft/world/entity/EntityType/f_20557_ net/minecraft/world/entity/EntityType/COW +FD: net/minecraft/world/entity/EntityType/f_20558_ net/minecraft/world/entity/EntityType/CREEPER +FD: net/minecraft/world/entity/EntityType/f_20559_ net/minecraft/world/entity/EntityType/DOLPHIN +FD: net/minecraft/world/entity/EntityType/f_20560_ net/minecraft/world/entity/EntityType/DONKEY +FD: net/minecraft/world/entity/EntityType/f_20561_ net/minecraft/world/entity/EntityType/DRAGON_FIREBALL +FD: net/minecraft/world/entity/EntityType/f_20562_ net/minecraft/world/entity/EntityType/DROWNED +FD: net/minecraft/world/entity/EntityType/f_20563_ net/minecraft/world/entity/EntityType/ELDER_GUARDIAN +FD: net/minecraft/world/entity/EntityType/f_20564_ net/minecraft/world/entity/EntityType/END_CRYSTAL +FD: net/minecraft/world/entity/EntityType/f_20565_ net/minecraft/world/entity/EntityType/ENDER_DRAGON +FD: net/minecraft/world/entity/EntityType/f_20566_ net/minecraft/world/entity/EntityType/ENDERMAN +FD: net/minecraft/world/entity/EntityType/f_20567_ net/minecraft/world/entity/EntityType/ENDERMITE +FD: net/minecraft/world/entity/EntityType/f_20568_ net/minecraft/world/entity/EntityType/EVOKER +FD: net/minecraft/world/entity/EntityType/f_20569_ net/minecraft/world/entity/EntityType/EVOKER_FANGS +FD: net/minecraft/world/entity/EntityType/f_20570_ net/minecraft/world/entity/EntityType/EXPERIENCE_ORB +FD: net/minecraft/world/entity/EntityType/f_20571_ net/minecraft/world/entity/EntityType/EYE_OF_ENDER +FD: net/minecraft/world/entity/EntityType/f_217012_ net/minecraft/world/entity/EntityType/FROG +FD: net/minecraft/world/entity/EntityType/f_217013_ net/minecraft/world/entity/EntityType/TADPOLE +FD: net/minecraft/world/entity/EntityType/f_217014_ net/minecraft/world/entity/EntityType/ALLAY +FD: net/minecraft/world/entity/EntityType/f_217015_ net/minecraft/world/entity/EntityType/WARDEN +FD: net/minecraft/world/entity/EntityType/f_217016_ net/minecraft/world/entity/EntityType/CHEST_BOAT +FD: net/minecraft/world/entity/EntityType/f_243976_ net/minecraft/world/entity/EntityType/CAMEL +FD: net/minecraft/world/entity/EntityType/f_244139_ net/minecraft/world/entity/EntityType/requiredFeatures +FD: net/minecraft/world/entity/EntityType/f_268473_ net/minecraft/world/entity/EntityType/DISPLAY_TRACKING_RANGE +FD: net/minecraft/world/entity/EntityType/f_268573_ net/minecraft/world/entity/EntityType/BLOCK_DISPLAY +FD: net/minecraft/world/entity/EntityType/f_268607_ net/minecraft/world/entity/EntityType/TEXT_DISPLAY +FD: net/minecraft/world/entity/EntityType/f_268643_ net/minecraft/world/entity/EntityType/ITEM_DISPLAY +FD: net/minecraft/world/entity/EntityType/f_271243_ net/minecraft/world/entity/EntityType/INTERACTION +FD: net/minecraft/world/entity/EntityType/f_271264_ net/minecraft/world/entity/EntityType/SNIFFER +FD: net/minecraft/world/entity/EntityType$1/f_147049_ net/minecraft/world/entity/EntityType$1/val$tagSpliterator +FD: net/minecraft/world/entity/EntityType$1/f_147050_ net/minecraft/world/entity/EntityType$1/val$level +FD: net/minecraft/world/entity/EntityType$1/f_147051_ net/minecraft/world/entity/EntityType$1/val$entities +FD: net/minecraft/world/entity/EntityType$Builder/f_20685_ net/minecraft/world/entity/EntityType$Builder/factory +FD: net/minecraft/world/entity/EntityType$Builder/f_20686_ net/minecraft/world/entity/EntityType$Builder/category +FD: net/minecraft/world/entity/EntityType$Builder/f_20687_ net/minecraft/world/entity/EntityType$Builder/immuneTo +FD: net/minecraft/world/entity/EntityType$Builder/f_20688_ net/minecraft/world/entity/EntityType$Builder/serialize +FD: net/minecraft/world/entity/EntityType$Builder/f_20689_ net/minecraft/world/entity/EntityType$Builder/summon +FD: net/minecraft/world/entity/EntityType$Builder/f_20690_ net/minecraft/world/entity/EntityType$Builder/fireImmune +FD: net/minecraft/world/entity/EntityType$Builder/f_20691_ net/minecraft/world/entity/EntityType$Builder/canSpawnFarFromPlayer +FD: net/minecraft/world/entity/EntityType$Builder/f_20692_ net/minecraft/world/entity/EntityType$Builder/clientTrackingRange +FD: net/minecraft/world/entity/EntityType$Builder/f_20693_ net/minecraft/world/entity/EntityType$Builder/updateInterval +FD: net/minecraft/world/entity/EntityType$Builder/f_20694_ net/minecraft/world/entity/EntityType$Builder/dimensions +FD: net/minecraft/world/entity/EntityType$Builder/f_244453_ net/minecraft/world/entity/EntityType$Builder/requiredFeatures +FD: net/minecraft/world/entity/EquipmentSlot/$VALUES net/minecraft/world/entity/EquipmentSlot/$VALUES +FD: net/minecraft/world/entity/EquipmentSlot/CHEST net/minecraft/world/entity/EquipmentSlot/CHEST +FD: net/minecraft/world/entity/EquipmentSlot/FEET net/minecraft/world/entity/EquipmentSlot/FEET +FD: net/minecraft/world/entity/EquipmentSlot/HEAD net/minecraft/world/entity/EquipmentSlot/HEAD +FD: net/minecraft/world/entity/EquipmentSlot/LEGS net/minecraft/world/entity/EquipmentSlot/LEGS +FD: net/minecraft/world/entity/EquipmentSlot/MAINHAND net/minecraft/world/entity/EquipmentSlot/MAINHAND +FD: net/minecraft/world/entity/EquipmentSlot/OFFHAND net/minecraft/world/entity/EquipmentSlot/OFFHAND +FD: net/minecraft/world/entity/EquipmentSlot/f_20730_ net/minecraft/world/entity/EquipmentSlot/type +FD: net/minecraft/world/entity/EquipmentSlot/f_20731_ net/minecraft/world/entity/EquipmentSlot/index +FD: net/minecraft/world/entity/EquipmentSlot/f_20732_ net/minecraft/world/entity/EquipmentSlot/filterFlag +FD: net/minecraft/world/entity/EquipmentSlot/f_20733_ net/minecraft/world/entity/EquipmentSlot/name +FD: net/minecraft/world/entity/EquipmentSlot$Type/$VALUES net/minecraft/world/entity/EquipmentSlot$Type/$VALUES +FD: net/minecraft/world/entity/EquipmentSlot$Type/ARMOR net/minecraft/world/entity/EquipmentSlot$Type/ARMOR +FD: net/minecraft/world/entity/EquipmentSlot$Type/HAND net/minecraft/world/entity/EquipmentSlot$Type/HAND +FD: net/minecraft/world/entity/ExperienceOrb/f_147072_ net/minecraft/world/entity/ExperienceOrb/count +FD: net/minecraft/world/entity/ExperienceOrb/f_147073_ net/minecraft/world/entity/ExperienceOrb/LIFETIME +FD: net/minecraft/world/entity/ExperienceOrb/f_147074_ net/minecraft/world/entity/ExperienceOrb/ENTITY_SCAN_PERIOD +FD: net/minecraft/world/entity/ExperienceOrb/f_147075_ net/minecraft/world/entity/ExperienceOrb/MAX_FOLLOW_DIST +FD: net/minecraft/world/entity/ExperienceOrb/f_147076_ net/minecraft/world/entity/ExperienceOrb/ORB_GROUPS_PER_AREA +FD: net/minecraft/world/entity/ExperienceOrb/f_147077_ net/minecraft/world/entity/ExperienceOrb/ORB_MERGE_DISTANCE +FD: net/minecraft/world/entity/ExperienceOrb/f_20767_ net/minecraft/world/entity/ExperienceOrb/age +FD: net/minecraft/world/entity/ExperienceOrb/f_20769_ net/minecraft/world/entity/ExperienceOrb/health +FD: net/minecraft/world/entity/ExperienceOrb/f_20770_ net/minecraft/world/entity/ExperienceOrb/value +FD: net/minecraft/world/entity/ExperienceOrb/f_20771_ net/minecraft/world/entity/ExperienceOrb/followingPlayer +FD: net/minecraft/world/entity/GlowSquid/f_147108_ net/minecraft/world/entity/GlowSquid/DATA_DARK_TICKS_REMAINING +FD: net/minecraft/world/entity/HumanoidArm/$VALUES net/minecraft/world/entity/HumanoidArm/$VALUES +FD: net/minecraft/world/entity/HumanoidArm/LEFT net/minecraft/world/entity/HumanoidArm/LEFT +FD: net/minecraft/world/entity/HumanoidArm/RIGHT net/minecraft/world/entity/HumanoidArm/RIGHT +FD: net/minecraft/world/entity/HumanoidArm/f_20821_ net/minecraft/world/entity/HumanoidArm/name +FD: net/minecraft/world/entity/HumanoidArm/f_217024_ net/minecraft/world/entity/HumanoidArm/id +FD: net/minecraft/world/entity/Interaction/f_271085_ net/minecraft/world/entity/Interaction/TAG_HEIGHT +FD: net/minecraft/world/entity/Interaction/f_271193_ net/minecraft/world/entity/Interaction/interaction +FD: net/minecraft/world/entity/Interaction/f_271210_ net/minecraft/world/entity/Interaction/DATA_WIDTH_ID +FD: net/minecraft/world/entity/Interaction/f_271237_ net/minecraft/world/entity/Interaction/DATA_HEIGHT_ID +FD: net/minecraft/world/entity/Interaction/f_271310_ net/minecraft/world/entity/Interaction/LOGGER +FD: net/minecraft/world/entity/Interaction/f_271389_ net/minecraft/world/entity/Interaction/DATA_RESPONSE_ID +FD: net/minecraft/world/entity/Interaction/f_271403_ net/minecraft/world/entity/Interaction/TAG_ATTACK +FD: net/minecraft/world/entity/Interaction/f_271404_ net/minecraft/world/entity/Interaction/attack +FD: net/minecraft/world/entity/Interaction/f_271476_ net/minecraft/world/entity/Interaction/TAG_INTERACTION +FD: net/minecraft/world/entity/Interaction/f_271508_ net/minecraft/world/entity/Interaction/TAG_RESPONSE +FD: net/minecraft/world/entity/Interaction/f_271518_ net/minecraft/world/entity/Interaction/TAG_WIDTH +FD: net/minecraft/world/entity/Interaction$PlayerAction/f_271379_ net/minecraft/world/entity/Interaction$PlayerAction/player +FD: net/minecraft/world/entity/Interaction$PlayerAction/f_271433_ net/minecraft/world/entity/Interaction$PlayerAction/CODEC +FD: net/minecraft/world/entity/Interaction$PlayerAction/f_271492_ net/minecraft/world/entity/Interaction$PlayerAction/timestamp +FD: net/minecraft/world/entity/ItemBasedSteering/f_147132_ net/minecraft/world/entity/ItemBasedSteering/MIN_BOOST_TIME +FD: net/minecraft/world/entity/ItemBasedSteering/f_147133_ net/minecraft/world/entity/ItemBasedSteering/MAX_BOOST_TIME +FD: net/minecraft/world/entity/ItemBasedSteering/f_20834_ net/minecraft/world/entity/ItemBasedSteering/boosting +FD: net/minecraft/world/entity/ItemBasedSteering/f_20835_ net/minecraft/world/entity/ItemBasedSteering/boostTime +FD: net/minecraft/world/entity/ItemBasedSteering/f_20837_ net/minecraft/world/entity/ItemBasedSteering/entityData +FD: net/minecraft/world/entity/ItemBasedSteering/f_20838_ net/minecraft/world/entity/ItemBasedSteering/boostTimeAccessor +FD: net/minecraft/world/entity/ItemBasedSteering/f_20839_ net/minecraft/world/entity/ItemBasedSteering/hasSaddleAccessor +FD: net/minecraft/world/entity/LightningBolt/f_147134_ net/minecraft/world/entity/LightningBolt/hitEntities +FD: net/minecraft/world/entity/LightningBolt/f_147135_ net/minecraft/world/entity/LightningBolt/blocksSetOnFire +FD: net/minecraft/world/entity/LightningBolt/f_147136_ net/minecraft/world/entity/LightningBolt/START_LIFE +FD: net/minecraft/world/entity/LightningBolt/f_147137_ net/minecraft/world/entity/LightningBolt/DAMAGE_RADIUS +FD: net/minecraft/world/entity/LightningBolt/f_147138_ net/minecraft/world/entity/LightningBolt/DETECTION_RADIUS +FD: net/minecraft/world/entity/LightningBolt/f_20859_ net/minecraft/world/entity/LightningBolt/seed +FD: net/minecraft/world/entity/LightningBolt/f_20860_ net/minecraft/world/entity/LightningBolt/life +FD: net/minecraft/world/entity/LightningBolt/f_20861_ net/minecraft/world/entity/LightningBolt/flashes +FD: net/minecraft/world/entity/LightningBolt/f_20862_ net/minecraft/world/entity/LightningBolt/visualOnly +FD: net/minecraft/world/entity/LightningBolt/f_20863_ net/minecraft/world/entity/LightningBolt/cause +FD: net/minecraft/world/entity/LivingEntity/f_147163_ net/minecraft/world/entity/LivingEntity/LIVING_ENTITY_FLAG_SPIN_ATTACK +FD: net/minecraft/world/entity/LivingEntity/f_147164_ net/minecraft/world/entity/LivingEntity/DEFAULT_EYE_HEIGHT +FD: net/minecraft/world/entity/LivingEntity/f_147165_ net/minecraft/world/entity/LivingEntity/EXTRA_RENDER_CULLING_SIZE_WITH_BIG_HAT +FD: net/minecraft/world/entity/LivingEntity/f_147166_ net/minecraft/world/entity/LivingEntity/HAND_SLOTS +FD: net/minecraft/world/entity/LivingEntity/f_147167_ net/minecraft/world/entity/LivingEntity/ARMOR_SLOTS +FD: net/minecraft/world/entity/LivingEntity/f_147168_ net/minecraft/world/entity/LivingEntity/EQUIPMENT_SLOT_OFFSET +FD: net/minecraft/world/entity/LivingEntity/f_147169_ net/minecraft/world/entity/LivingEntity/ARMOR_SLOT_OFFSET +FD: net/minecraft/world/entity/LivingEntity/f_147170_ net/minecraft/world/entity/LivingEntity/SWING_DURATION +FD: net/minecraft/world/entity/LivingEntity/f_147171_ net/minecraft/world/entity/LivingEntity/PLAYER_HURT_EXPERIENCE_TIME +FD: net/minecraft/world/entity/LivingEntity/f_147172_ net/minecraft/world/entity/LivingEntity/MIN_MOVEMENT_DISTANCE +FD: net/minecraft/world/entity/LivingEntity/f_147173_ net/minecraft/world/entity/LivingEntity/DEFAULT_BASE_GRAVITY +FD: net/minecraft/world/entity/LivingEntity/f_147174_ net/minecraft/world/entity/LivingEntity/DEATH_DURATION +FD: net/minecraft/world/entity/LivingEntity/f_147175_ net/minecraft/world/entity/LivingEntity/USE_ITEM_INTERVAL +FD: net/minecraft/world/entity/LivingEntity/f_147176_ net/minecraft/world/entity/LivingEntity/LIVING_ENTITY_FLAG_IS_USING +FD: net/minecraft/world/entity/LivingEntity/f_147177_ net/minecraft/world/entity/LivingEntity/LIVING_ENTITY_FLAG_OFF_HAND +FD: net/minecraft/world/entity/LivingEntity/f_147178_ net/minecraft/world/entity/LivingEntity/DAMAGE_SOURCE_TIMEOUT +FD: net/minecraft/world/entity/LivingEntity/f_147179_ net/minecraft/world/entity/LivingEntity/WAIT_TICKS_BEFORE_ITEM_USE_EFFECTS +FD: net/minecraft/world/entity/LivingEntity/f_147180_ net/minecraft/world/entity/LivingEntity/TICKS_PER_ELYTRA_FREE_FALL_EVENT +FD: net/minecraft/world/entity/LivingEntity/f_147181_ net/minecraft/world/entity/LivingEntity/FREE_FALL_EVENTS_PER_ELYTRA_BREAK +FD: net/minecraft/world/entity/LivingEntity/f_147182_ net/minecraft/world/entity/LivingEntity/MAX_LINE_OF_SIGHT_TEST_RANGE +FD: net/minecraft/world/entity/LivingEntity/f_147183_ net/minecraft/world/entity/LivingEntity/discardFriction +FD: net/minecraft/world/entity/LivingEntity/f_147184_ net/minecraft/world/entity/LivingEntity/SPEED_MODIFIER_POWDER_SNOW_UUID +FD: net/minecraft/world/entity/LivingEntity/f_201943_ net/minecraft/world/entity/LivingEntity/LOGGER +FD: net/minecraft/world/entity/LivingEntity/f_20883_ net/minecraft/world/entity/LivingEntity/yBodyRot +FD: net/minecraft/world/entity/LivingEntity/f_20884_ net/minecraft/world/entity/LivingEntity/yBodyRotO +FD: net/minecraft/world/entity/LivingEntity/f_20885_ net/minecraft/world/entity/LivingEntity/yHeadRot +FD: net/minecraft/world/entity/LivingEntity/f_20886_ net/minecraft/world/entity/LivingEntity/yHeadRotO +FD: net/minecraft/world/entity/LivingEntity/f_20888_ net/minecraft/world/entity/LivingEntity/lastHurtByPlayer +FD: net/minecraft/world/entity/LivingEntity/f_20889_ net/minecraft/world/entity/LivingEntity/lastHurtByPlayerTime +FD: net/minecraft/world/entity/LivingEntity/f_20890_ net/minecraft/world/entity/LivingEntity/dead +FD: net/minecraft/world/entity/LivingEntity/f_20891_ net/minecraft/world/entity/LivingEntity/noActionTime +FD: net/minecraft/world/entity/LivingEntity/f_20892_ net/minecraft/world/entity/LivingEntity/oRun +FD: net/minecraft/world/entity/LivingEntity/f_20893_ net/minecraft/world/entity/LivingEntity/run +FD: net/minecraft/world/entity/LivingEntity/f_20894_ net/minecraft/world/entity/LivingEntity/animStep +FD: net/minecraft/world/entity/LivingEntity/f_20895_ net/minecraft/world/entity/LivingEntity/animStepO +FD: net/minecraft/world/entity/LivingEntity/f_20896_ net/minecraft/world/entity/LivingEntity/rotOffs +FD: net/minecraft/world/entity/LivingEntity/f_20897_ net/minecraft/world/entity/LivingEntity/deathScore +FD: net/minecraft/world/entity/LivingEntity/f_20898_ net/minecraft/world/entity/LivingEntity/lastHurt +FD: net/minecraft/world/entity/LivingEntity/f_20899_ net/minecraft/world/entity/LivingEntity/jumping +FD: net/minecraft/world/entity/LivingEntity/f_20900_ net/minecraft/world/entity/LivingEntity/xxa +FD: net/minecraft/world/entity/LivingEntity/f_20901_ net/minecraft/world/entity/LivingEntity/yya +FD: net/minecraft/world/entity/LivingEntity/f_20902_ net/minecraft/world/entity/LivingEntity/zza +FD: net/minecraft/world/entity/LivingEntity/f_20903_ net/minecraft/world/entity/LivingEntity/lerpSteps +FD: net/minecraft/world/entity/LivingEntity/f_20904_ net/minecraft/world/entity/LivingEntity/lerpX +FD: net/minecraft/world/entity/LivingEntity/f_20905_ net/minecraft/world/entity/LivingEntity/lerpY +FD: net/minecraft/world/entity/LivingEntity/f_20906_ net/minecraft/world/entity/LivingEntity/lerpZ +FD: net/minecraft/world/entity/LivingEntity/f_20907_ net/minecraft/world/entity/LivingEntity/lerpYRot +FD: net/minecraft/world/entity/LivingEntity/f_20908_ net/minecraft/world/entity/LivingEntity/lerpXRot +FD: net/minecraft/world/entity/LivingEntity/f_20909_ net/minecraft/world/entity/LivingEntity/DATA_LIVING_ENTITY_FLAGS +FD: net/minecraft/world/entity/LivingEntity/f_20910_ net/minecraft/world/entity/LivingEntity/SLEEPING_DIMENSIONS +FD: net/minecraft/world/entity/LivingEntity/f_20911_ net/minecraft/world/entity/LivingEntity/swinging +FD: net/minecraft/world/entity/LivingEntity/f_20912_ net/minecraft/world/entity/LivingEntity/swingingArm +FD: net/minecraft/world/entity/LivingEntity/f_20913_ net/minecraft/world/entity/LivingEntity/swingTime +FD: net/minecraft/world/entity/LivingEntity/f_20914_ net/minecraft/world/entity/LivingEntity/removeArrowTime +FD: net/minecraft/world/entity/LivingEntity/f_20915_ net/minecraft/world/entity/LivingEntity/removeStingerTime +FD: net/minecraft/world/entity/LivingEntity/f_20916_ net/minecraft/world/entity/LivingEntity/hurtTime +FD: net/minecraft/world/entity/LivingEntity/f_20917_ net/minecraft/world/entity/LivingEntity/hurtDuration +FD: net/minecraft/world/entity/LivingEntity/f_20919_ net/minecraft/world/entity/LivingEntity/deathTime +FD: net/minecraft/world/entity/LivingEntity/f_20920_ net/minecraft/world/entity/LivingEntity/oAttackAnim +FD: net/minecraft/world/entity/LivingEntity/f_20921_ net/minecraft/world/entity/LivingEntity/attackAnim +FD: net/minecraft/world/entity/LivingEntity/f_20922_ net/minecraft/world/entity/LivingEntity/attackStrengthTicker +FD: net/minecraft/world/entity/LivingEntity/f_20926_ net/minecraft/world/entity/LivingEntity/invulnerableDuration +FD: net/minecraft/world/entity/LivingEntity/f_20927_ net/minecraft/world/entity/LivingEntity/timeOffs +FD: net/minecraft/world/entity/LivingEntity/f_20928_ net/minecraft/world/entity/LivingEntity/rotA +FD: net/minecraft/world/entity/LivingEntity/f_20929_ net/minecraft/world/entity/LivingEntity/SPEED_MODIFIER_SPRINTING_UUID +FD: net/minecraft/world/entity/LivingEntity/f_20930_ net/minecraft/world/entity/LivingEntity/lastDamageStamp +FD: net/minecraft/world/entity/LivingEntity/f_20931_ net/minecraft/world/entity/LivingEntity/swimAmount +FD: net/minecraft/world/entity/LivingEntity/f_20932_ net/minecraft/world/entity/LivingEntity/swimAmountO +FD: net/minecraft/world/entity/LivingEntity/f_20933_ net/minecraft/world/entity/LivingEntity/lyHeadRot +FD: net/minecraft/world/entity/LivingEntity/f_20934_ net/minecraft/world/entity/LivingEntity/lerpHeadSteps +FD: net/minecraft/world/entity/LivingEntity/f_20935_ net/minecraft/world/entity/LivingEntity/useItem +FD: net/minecraft/world/entity/LivingEntity/f_20936_ net/minecraft/world/entity/LivingEntity/useItemRemaining +FD: net/minecraft/world/entity/LivingEntity/f_20937_ net/minecraft/world/entity/LivingEntity/fallFlyTicks +FD: net/minecraft/world/entity/LivingEntity/f_20938_ net/minecraft/world/entity/LivingEntity/autoSpinAttackTicks +FD: net/minecraft/world/entity/LivingEntity/f_20939_ net/minecraft/world/entity/LivingEntity/brain +FD: net/minecraft/world/entity/LivingEntity/f_20940_ net/minecraft/world/entity/LivingEntity/DATA_ARROW_COUNT_ID +FD: net/minecraft/world/entity/LivingEntity/f_20941_ net/minecraft/world/entity/LivingEntity/DATA_STINGER_COUNT_ID +FD: net/minecraft/world/entity/LivingEntity/f_20942_ net/minecraft/world/entity/LivingEntity/SLEEPING_POS_ID +FD: net/minecraft/world/entity/LivingEntity/f_20943_ net/minecraft/world/entity/LivingEntity/attributes +FD: net/minecraft/world/entity/LivingEntity/f_20944_ net/minecraft/world/entity/LivingEntity/combatTracker +FD: net/minecraft/world/entity/LivingEntity/f_20945_ net/minecraft/world/entity/LivingEntity/activeEffects +FD: net/minecraft/world/entity/LivingEntity/f_20946_ net/minecraft/world/entity/LivingEntity/lastHandItemStacks +FD: net/minecraft/world/entity/LivingEntity/f_20947_ net/minecraft/world/entity/LivingEntity/lastArmorItemStacks +FD: net/minecraft/world/entity/LivingEntity/f_20948_ net/minecraft/world/entity/LivingEntity/effectsDirty +FD: net/minecraft/world/entity/LivingEntity/f_20949_ net/minecraft/world/entity/LivingEntity/lastHurtByMob +FD: net/minecraft/world/entity/LivingEntity/f_20950_ net/minecraft/world/entity/LivingEntity/lastHurtByMobTimestamp +FD: net/minecraft/world/entity/LivingEntity/f_20951_ net/minecraft/world/entity/LivingEntity/lastHurtMob +FD: net/minecraft/world/entity/LivingEntity/f_20952_ net/minecraft/world/entity/LivingEntity/lastHurtMobTimestamp +FD: net/minecraft/world/entity/LivingEntity/f_20953_ net/minecraft/world/entity/LivingEntity/speed +FD: net/minecraft/world/entity/LivingEntity/f_20954_ net/minecraft/world/entity/LivingEntity/noJumpDelay +FD: net/minecraft/world/entity/LivingEntity/f_20955_ net/minecraft/world/entity/LivingEntity/absorptionAmount +FD: net/minecraft/world/entity/LivingEntity/f_20956_ net/minecraft/world/entity/LivingEntity/lastPos +FD: net/minecraft/world/entity/LivingEntity/f_20957_ net/minecraft/world/entity/LivingEntity/lastClimbablePos +FD: net/minecraft/world/entity/LivingEntity/f_20958_ net/minecraft/world/entity/LivingEntity/lastDamageSource +FD: net/minecraft/world/entity/LivingEntity/f_20959_ net/minecraft/world/entity/LivingEntity/SPEED_MODIFIER_SOUL_SPEED_UUID +FD: net/minecraft/world/entity/LivingEntity/f_20960_ net/minecraft/world/entity/LivingEntity/SPEED_MODIFIER_SPRINTING +FD: net/minecraft/world/entity/LivingEntity/f_20961_ net/minecraft/world/entity/LivingEntity/DATA_HEALTH_ID +FD: net/minecraft/world/entity/LivingEntity/f_20962_ net/minecraft/world/entity/LivingEntity/DATA_EFFECT_COLOR_ID +FD: net/minecraft/world/entity/LivingEntity/f_20963_ net/minecraft/world/entity/LivingEntity/DATA_EFFECT_AMBIENCE_ID +FD: net/minecraft/world/entity/LivingEntity/f_217034_ net/minecraft/world/entity/LivingEntity/skipDropExperience +FD: net/minecraft/world/entity/LivingEntity/f_267362_ net/minecraft/world/entity/LivingEntity/walkAnimation +FD: net/minecraft/world/entity/LivingEntity/f_271312_ net/minecraft/world/entity/LivingEntity/MAX_HEAD_ROTATION_RELATIVE_TO_BODY +FD: net/minecraft/world/entity/LivingEntity/f_286963_ net/minecraft/world/entity/LivingEntity/BASE_JUMP_POWER +FD: net/minecraft/world/entity/LivingEntity$1/f_21337_ net/minecraft/world/entity/LivingEntity$1/$SwitchMap$net$minecraft$world$entity$EquipmentSlot$Type +FD: net/minecraft/world/entity/LivingEntity$1/f_21338_ net/minecraft/world/entity/LivingEntity$1/$SwitchMap$net$minecraft$world$entity$EquipmentSlot +FD: net/minecraft/world/entity/LivingEntity$Fallsounds/f_196626_ net/minecraft/world/entity/LivingEntity$Fallsounds/small +FD: net/minecraft/world/entity/LivingEntity$Fallsounds/f_196627_ net/minecraft/world/entity/LivingEntity$Fallsounds/big +FD: net/minecraft/world/entity/Marker/f_147247_ net/minecraft/world/entity/Marker/DATA_TAG +FD: net/minecraft/world/entity/Marker/f_147248_ net/minecraft/world/entity/Marker/data +FD: net/minecraft/world/entity/Mob/f_147261_ net/minecraft/world/entity/Mob/MAX_PICKUP_LOOT_CHANCE +FD: net/minecraft/world/entity/Mob/f_147262_ net/minecraft/world/entity/Mob/MAX_ENCHANTED_ARMOR_CHANCE +FD: net/minecraft/world/entity/Mob/f_147263_ net/minecraft/world/entity/Mob/MAX_ENCHANTED_WEAPON_CHANCE +FD: net/minecraft/world/entity/Mob/f_147264_ net/minecraft/world/entity/Mob/LEASH_TAG +FD: net/minecraft/world/entity/Mob/f_147265_ net/minecraft/world/entity/Mob/PICKUP_REACH +FD: net/minecraft/world/entity/Mob/f_147266_ net/minecraft/world/entity/Mob/MOB_FLAG_NO_AI +FD: net/minecraft/world/entity/Mob/f_147267_ net/minecraft/world/entity/Mob/MOB_FLAG_LEFTHANDED +FD: net/minecraft/world/entity/Mob/f_147268_ net/minecraft/world/entity/Mob/MOB_FLAG_AGGRESSIVE +FD: net/minecraft/world/entity/Mob/f_147269_ net/minecraft/world/entity/Mob/MAX_WEARING_ARMOR_CHANCE +FD: net/minecraft/world/entity/Mob/f_182333_ net/minecraft/world/entity/Mob/DEFAULT_EQUIPMENT_DROP_CHANCE +FD: net/minecraft/world/entity/Mob/f_186008_ net/minecraft/world/entity/Mob/UPDATE_GOAL_SELECTOR_EVERY_N_TICKS +FD: net/minecraft/world/entity/Mob/f_21340_ net/minecraft/world/entity/Mob/DATA_MOB_FLAGS_ID +FD: net/minecraft/world/entity/Mob/f_21341_ net/minecraft/world/entity/Mob/restrictRadius +FD: net/minecraft/world/entity/Mob/f_21342_ net/minecraft/world/entity/Mob/moveControl +FD: net/minecraft/world/entity/Mob/f_21343_ net/minecraft/world/entity/Mob/jumpControl +FD: net/minecraft/world/entity/Mob/f_21344_ net/minecraft/world/entity/Mob/navigation +FD: net/minecraft/world/entity/Mob/f_21345_ net/minecraft/world/entity/Mob/goalSelector +FD: net/minecraft/world/entity/Mob/f_21346_ net/minecraft/world/entity/Mob/targetSelector +FD: net/minecraft/world/entity/Mob/f_21347_ net/minecraft/world/entity/Mob/handDropChances +FD: net/minecraft/world/entity/Mob/f_21348_ net/minecraft/world/entity/Mob/armorDropChances +FD: net/minecraft/world/entity/Mob/f_21349_ net/minecraft/world/entity/Mob/sensing +FD: net/minecraft/world/entity/Mob/f_21350_ net/minecraft/world/entity/Mob/handItems +FD: net/minecraft/world/entity/Mob/f_21351_ net/minecraft/world/entity/Mob/armorItems +FD: net/minecraft/world/entity/Mob/f_21352_ net/minecraft/world/entity/Mob/canPickUpLoot +FD: net/minecraft/world/entity/Mob/f_21353_ net/minecraft/world/entity/Mob/persistenceRequired +FD: net/minecraft/world/entity/Mob/f_21354_ net/minecraft/world/entity/Mob/pathfindingMalus +FD: net/minecraft/world/entity/Mob/f_21355_ net/minecraft/world/entity/Mob/lootTable +FD: net/minecraft/world/entity/Mob/f_21356_ net/minecraft/world/entity/Mob/lootTableSeed +FD: net/minecraft/world/entity/Mob/f_21357_ net/minecraft/world/entity/Mob/leashHolder +FD: net/minecraft/world/entity/Mob/f_21358_ net/minecraft/world/entity/Mob/delayedLeashHolderId +FD: net/minecraft/world/entity/Mob/f_21359_ net/minecraft/world/entity/Mob/leashInfoTag +FD: net/minecraft/world/entity/Mob/f_21360_ net/minecraft/world/entity/Mob/restrictCenter +FD: net/minecraft/world/entity/Mob/f_21361_ net/minecraft/world/entity/Mob/bodyRotationControl +FD: net/minecraft/world/entity/Mob/f_21362_ net/minecraft/world/entity/Mob/target +FD: net/minecraft/world/entity/Mob/f_21363_ net/minecraft/world/entity/Mob/ambientSoundTime +FD: net/minecraft/world/entity/Mob/f_21364_ net/minecraft/world/entity/Mob/xpReward +FD: net/minecraft/world/entity/Mob/f_21365_ net/minecraft/world/entity/Mob/lookControl +FD: net/minecraft/world/entity/Mob/f_217047_ net/minecraft/world/entity/Mob/PRESERVE_ITEM_DROP_CHANCE +FD: net/minecraft/world/entity/Mob/f_217048_ net/minecraft/world/entity/Mob/ITEM_PICKUP_REACH +FD: net/minecraft/world/entity/Mob$1/f_21575_ net/minecraft/world/entity/Mob$1/$SwitchMap$net$minecraft$world$entity$EquipmentSlot$Type +FD: net/minecraft/world/entity/Mob$1/f_21576_ net/minecraft/world/entity/Mob$1/$SwitchMap$net$minecraft$world$entity$EquipmentSlot +FD: net/minecraft/world/entity/MobCategory/$VALUES net/minecraft/world/entity/MobCategory/$VALUES +FD: net/minecraft/world/entity/MobCategory/AMBIENT net/minecraft/world/entity/MobCategory/AMBIENT +FD: net/minecraft/world/entity/MobCategory/AXOLOTLS net/minecraft/world/entity/MobCategory/AXOLOTLS +FD: net/minecraft/world/entity/MobCategory/CREATURE net/minecraft/world/entity/MobCategory/CREATURE +FD: net/minecraft/world/entity/MobCategory/MISC net/minecraft/world/entity/MobCategory/MISC +FD: net/minecraft/world/entity/MobCategory/MONSTER net/minecraft/world/entity/MobCategory/MONSTER +FD: net/minecraft/world/entity/MobCategory/UNDERGROUND_WATER_CREATURE net/minecraft/world/entity/MobCategory/UNDERGROUND_WATER_CREATURE +FD: net/minecraft/world/entity/MobCategory/WATER_AMBIENT net/minecraft/world/entity/MobCategory/WATER_AMBIENT +FD: net/minecraft/world/entity/MobCategory/WATER_CREATURE net/minecraft/world/entity/MobCategory/WATER_CREATURE +FD: net/minecraft/world/entity/MobCategory/f_21584_ net/minecraft/world/entity/MobCategory/CODEC +FD: net/minecraft/world/entity/MobCategory/f_21586_ net/minecraft/world/entity/MobCategory/max +FD: net/minecraft/world/entity/MobCategory/f_21587_ net/minecraft/world/entity/MobCategory/isFriendly +FD: net/minecraft/world/entity/MobCategory/f_21588_ net/minecraft/world/entity/MobCategory/isPersistent +FD: net/minecraft/world/entity/MobCategory/f_21589_ net/minecraft/world/entity/MobCategory/name +FD: net/minecraft/world/entity/MobCategory/f_21590_ net/minecraft/world/entity/MobCategory/noDespawnDistance +FD: net/minecraft/world/entity/MobCategory/f_21591_ net/minecraft/world/entity/MobCategory/despawnDistance +FD: net/minecraft/world/entity/MobSpawnType/$VALUES net/minecraft/world/entity/MobSpawnType/$VALUES +FD: net/minecraft/world/entity/MobSpawnType/BREEDING net/minecraft/world/entity/MobSpawnType/BREEDING +FD: net/minecraft/world/entity/MobSpawnType/BUCKET net/minecraft/world/entity/MobSpawnType/BUCKET +FD: net/minecraft/world/entity/MobSpawnType/CHUNK_GENERATION net/minecraft/world/entity/MobSpawnType/CHUNK_GENERATION +FD: net/minecraft/world/entity/MobSpawnType/COMMAND net/minecraft/world/entity/MobSpawnType/COMMAND +FD: net/minecraft/world/entity/MobSpawnType/CONVERSION net/minecraft/world/entity/MobSpawnType/CONVERSION +FD: net/minecraft/world/entity/MobSpawnType/DISPENSER net/minecraft/world/entity/MobSpawnType/DISPENSER +FD: net/minecraft/world/entity/MobSpawnType/EVENT net/minecraft/world/entity/MobSpawnType/EVENT +FD: net/minecraft/world/entity/MobSpawnType/JOCKEY net/minecraft/world/entity/MobSpawnType/JOCKEY +FD: net/minecraft/world/entity/MobSpawnType/MOB_SUMMONED net/minecraft/world/entity/MobSpawnType/MOB_SUMMONED +FD: net/minecraft/world/entity/MobSpawnType/NATURAL net/minecraft/world/entity/MobSpawnType/NATURAL +FD: net/minecraft/world/entity/MobSpawnType/PATROL net/minecraft/world/entity/MobSpawnType/PATROL +FD: net/minecraft/world/entity/MobSpawnType/REINFORCEMENT net/minecraft/world/entity/MobSpawnType/REINFORCEMENT +FD: net/minecraft/world/entity/MobSpawnType/SPAWNER net/minecraft/world/entity/MobSpawnType/SPAWNER +FD: net/minecraft/world/entity/MobSpawnType/SPAWN_EGG net/minecraft/world/entity/MobSpawnType/SPAWN_EGG +FD: net/minecraft/world/entity/MobSpawnType/STRUCTURE net/minecraft/world/entity/MobSpawnType/STRUCTURE +FD: net/minecraft/world/entity/MobSpawnType/TRIGGERED net/minecraft/world/entity/MobSpawnType/TRIGGERED +FD: net/minecraft/world/entity/MobType/f_21640_ net/minecraft/world/entity/MobType/UNDEFINED +FD: net/minecraft/world/entity/MobType/f_21641_ net/minecraft/world/entity/MobType/UNDEAD +FD: net/minecraft/world/entity/MobType/f_21642_ net/minecraft/world/entity/MobType/ARTHROPOD +FD: net/minecraft/world/entity/MobType/f_21643_ net/minecraft/world/entity/MobType/ILLAGER +FD: net/minecraft/world/entity/MobType/f_21644_ net/minecraft/world/entity/MobType/WATER +FD: net/minecraft/world/entity/MoverType/$VALUES net/minecraft/world/entity/MoverType/$VALUES +FD: net/minecraft/world/entity/MoverType/PISTON net/minecraft/world/entity/MoverType/PISTON +FD: net/minecraft/world/entity/MoverType/PLAYER net/minecraft/world/entity/MoverType/PLAYER +FD: net/minecraft/world/entity/MoverType/SELF net/minecraft/world/entity/MoverType/SELF +FD: net/minecraft/world/entity/MoverType/SHULKER net/minecraft/world/entity/MoverType/SHULKER +FD: net/minecraft/world/entity/MoverType/SHULKER_BOX net/minecraft/world/entity/MoverType/SHULKER_BOX +FD: net/minecraft/world/entity/NeutralMob/f_147283_ net/minecraft/world/entity/NeutralMob/TAG_ANGER_TIME +FD: net/minecraft/world/entity/NeutralMob/f_147284_ net/minecraft/world/entity/NeutralMob/TAG_ANGRY_AT +FD: net/minecraft/world/entity/PathfinderMob/f_186010_ net/minecraft/world/entity/PathfinderMob/DEFAULT_WALK_TARGET_VALUE +FD: net/minecraft/world/entity/Pose/$VALUES net/minecraft/world/entity/Pose/$VALUES +FD: net/minecraft/world/entity/Pose/CROAKING net/minecraft/world/entity/Pose/CROAKING +FD: net/minecraft/world/entity/Pose/CROUCHING net/minecraft/world/entity/Pose/CROUCHING +FD: net/minecraft/world/entity/Pose/DIGGING net/minecraft/world/entity/Pose/DIGGING +FD: net/minecraft/world/entity/Pose/DYING net/minecraft/world/entity/Pose/DYING +FD: net/minecraft/world/entity/Pose/EMERGING net/minecraft/world/entity/Pose/EMERGING +FD: net/minecraft/world/entity/Pose/FALL_FLYING net/minecraft/world/entity/Pose/FALL_FLYING +FD: net/minecraft/world/entity/Pose/LONG_JUMPING net/minecraft/world/entity/Pose/LONG_JUMPING +FD: net/minecraft/world/entity/Pose/ROARING net/minecraft/world/entity/Pose/ROARING +FD: net/minecraft/world/entity/Pose/SITTING net/minecraft/world/entity/Pose/SITTING +FD: net/minecraft/world/entity/Pose/SLEEPING net/minecraft/world/entity/Pose/SLEEPING +FD: net/minecraft/world/entity/Pose/SNIFFING net/minecraft/world/entity/Pose/SNIFFING +FD: net/minecraft/world/entity/Pose/SPIN_ATTACK net/minecraft/world/entity/Pose/SPIN_ATTACK +FD: net/minecraft/world/entity/Pose/STANDING net/minecraft/world/entity/Pose/STANDING +FD: net/minecraft/world/entity/Pose/SWIMMING net/minecraft/world/entity/Pose/SWIMMING +FD: net/minecraft/world/entity/Pose/USING_TONGUE net/minecraft/world/entity/Pose/USING_TONGUE +FD: net/minecraft/world/entity/RelativeMovement/$VALUES net/minecraft/world/entity/RelativeMovement/$VALUES +FD: net/minecraft/world/entity/RelativeMovement/X net/minecraft/world/entity/RelativeMovement/X +FD: net/minecraft/world/entity/RelativeMovement/X_ROT net/minecraft/world/entity/RelativeMovement/X_ROT +FD: net/minecraft/world/entity/RelativeMovement/Y net/minecraft/world/entity/RelativeMovement/Y +FD: net/minecraft/world/entity/RelativeMovement/Y_ROT net/minecraft/world/entity/RelativeMovement/Y_ROT +FD: net/minecraft/world/entity/RelativeMovement/Z net/minecraft/world/entity/RelativeMovement/Z +FD: net/minecraft/world/entity/RelativeMovement/f_263649_ net/minecraft/world/entity/RelativeMovement/bit +FD: net/minecraft/world/entity/RelativeMovement/f_263752_ net/minecraft/world/entity/RelativeMovement/ALL +FD: net/minecraft/world/entity/RelativeMovement/f_263774_ net/minecraft/world/entity/RelativeMovement/ROTATION +FD: net/minecraft/world/entity/SlotAccess/f_147290_ net/minecraft/world/entity/SlotAccess/NULL +FD: net/minecraft/world/entity/SlotAccess$2/f_147315_ net/minecraft/world/entity/SlotAccess$2/val$inventory +FD: net/minecraft/world/entity/SlotAccess$2/f_147316_ net/minecraft/world/entity/SlotAccess$2/val$id +FD: net/minecraft/world/entity/SlotAccess$2/f_147317_ net/minecraft/world/entity/SlotAccess$2/val$validator +FD: net/minecraft/world/entity/SlotAccess$3/f_147325_ net/minecraft/world/entity/SlotAccess$3/val$entity +FD: net/minecraft/world/entity/SlotAccess$3/f_147326_ net/minecraft/world/entity/SlotAccess$3/val$slot +FD: net/minecraft/world/entity/SlotAccess$3/f_147327_ net/minecraft/world/entity/SlotAccess$3/val$validator +FD: net/minecraft/world/entity/SpawnPlacements/f_21750_ net/minecraft/world/entity/SpawnPlacements/DATA_BY_TYPE +FD: net/minecraft/world/entity/SpawnPlacements$Data/f_21767_ net/minecraft/world/entity/SpawnPlacements$Data/heightMap +FD: net/minecraft/world/entity/SpawnPlacements$Data/f_21768_ net/minecraft/world/entity/SpawnPlacements$Data/placement +FD: net/minecraft/world/entity/SpawnPlacements$Data/f_21769_ net/minecraft/world/entity/SpawnPlacements$Data/predicate +FD: net/minecraft/world/entity/SpawnPlacements$Type/$VALUES net/minecraft/world/entity/SpawnPlacements$Type/$VALUES +FD: net/minecraft/world/entity/SpawnPlacements$Type/IN_LAVA net/minecraft/world/entity/SpawnPlacements$Type/IN_LAVA +FD: net/minecraft/world/entity/SpawnPlacements$Type/IN_WATER net/minecraft/world/entity/SpawnPlacements$Type/IN_WATER +FD: net/minecraft/world/entity/SpawnPlacements$Type/NO_RESTRICTIONS net/minecraft/world/entity/SpawnPlacements$Type/NO_RESTRICTIONS +FD: net/minecraft/world/entity/SpawnPlacements$Type/ON_GROUND net/minecraft/world/entity/SpawnPlacements$Type/ON_GROUND +FD: net/minecraft/world/entity/TamableAnimal/f_21798_ net/minecraft/world/entity/TamableAnimal/DATA_FLAGS_ID +FD: net/minecraft/world/entity/TamableAnimal/f_21799_ net/minecraft/world/entity/TamableAnimal/DATA_OWNERUUID_ID +FD: net/minecraft/world/entity/TamableAnimal/f_21800_ net/minecraft/world/entity/TamableAnimal/orderedToSit +FD: net/minecraft/world/entity/WalkAnimationState/f_267358_ net/minecraft/world/entity/WalkAnimationState/position +FD: net/minecraft/world/entity/WalkAnimationState/f_267371_ net/minecraft/world/entity/WalkAnimationState/speed +FD: net/minecraft/world/entity/WalkAnimationState/f_267406_ net/minecraft/world/entity/WalkAnimationState/speedOld +FD: net/minecraft/world/entity/ai/Brain/f_147338_ net/minecraft/world/entity/ai/Brain/SCHEDULE_UPDATE_DELAY +FD: net/minecraft/world/entity/ai/Brain/f_21841_ net/minecraft/world/entity/ai/Brain/LOGGER +FD: net/minecraft/world/entity/ai/Brain/f_21842_ net/minecraft/world/entity/ai/Brain/codec +FD: net/minecraft/world/entity/ai/Brain/f_21843_ net/minecraft/world/entity/ai/Brain/memories +FD: net/minecraft/world/entity/ai/Brain/f_21844_ net/minecraft/world/entity/ai/Brain/sensors +FD: net/minecraft/world/entity/ai/Brain/f_21845_ net/minecraft/world/entity/ai/Brain/availableBehaviorsByPriority +FD: net/minecraft/world/entity/ai/Brain/f_21846_ net/minecraft/world/entity/ai/Brain/schedule +FD: net/minecraft/world/entity/ai/Brain/f_21847_ net/minecraft/world/entity/ai/Brain/activityRequirements +FD: net/minecraft/world/entity/ai/Brain/f_21848_ net/minecraft/world/entity/ai/Brain/activityMemoriesToEraseWhenStopped +FD: net/minecraft/world/entity/ai/Brain/f_21849_ net/minecraft/world/entity/ai/Brain/coreActivities +FD: net/minecraft/world/entity/ai/Brain/f_21850_ net/minecraft/world/entity/ai/Brain/activeActivities +FD: net/minecraft/world/entity/ai/Brain/f_21851_ net/minecraft/world/entity/ai/Brain/defaultActivity +FD: net/minecraft/world/entity/ai/Brain/f_21852_ net/minecraft/world/entity/ai/Brain/lastScheduleUpdate +FD: net/minecraft/world/entity/ai/Brain$1/f_21977_ net/minecraft/world/entity/ai/Brain$1/val$memoryTypes +FD: net/minecraft/world/entity/ai/Brain$1/f_21978_ net/minecraft/world/entity/ai/Brain$1/val$sensorTypes +FD: net/minecraft/world/entity/ai/Brain$1/f_21979_ net/minecraft/world/entity/ai/Brain$1/val$codecReference +FD: net/minecraft/world/entity/ai/Brain$MemoryValue/f_22030_ net/minecraft/world/entity/ai/Brain$MemoryValue/type +FD: net/minecraft/world/entity/ai/Brain$MemoryValue/f_22031_ net/minecraft/world/entity/ai/Brain$MemoryValue/value +FD: net/minecraft/world/entity/ai/Brain$Provider/f_22062_ net/minecraft/world/entity/ai/Brain$Provider/memoryTypes +FD: net/minecraft/world/entity/ai/Brain$Provider/f_22063_ net/minecraft/world/entity/ai/Brain$Provider/sensorTypes +FD: net/minecraft/world/entity/ai/Brain$Provider/f_22064_ net/minecraft/world/entity/ai/Brain$Provider/codec +FD: net/minecraft/world/entity/ai/attributes/Attribute/f_147357_ net/minecraft/world/entity/ai/attributes/Attribute/MAX_NAME_LENGTH +FD: net/minecraft/world/entity/ai/attributes/Attribute/f_22076_ net/minecraft/world/entity/ai/attributes/Attribute/defaultValue +FD: net/minecraft/world/entity/ai/attributes/Attribute/f_22077_ net/minecraft/world/entity/ai/attributes/Attribute/syncable +FD: net/minecraft/world/entity/ai/attributes/Attribute/f_22078_ net/minecraft/world/entity/ai/attributes/Attribute/descriptionId +FD: net/minecraft/world/entity/ai/attributes/AttributeInstance/f_22088_ net/minecraft/world/entity/ai/attributes/AttributeInstance/attribute +FD: net/minecraft/world/entity/ai/attributes/AttributeInstance/f_22089_ net/minecraft/world/entity/ai/attributes/AttributeInstance/modifiersByOperation +FD: net/minecraft/world/entity/ai/attributes/AttributeInstance/f_22090_ net/minecraft/world/entity/ai/attributes/AttributeInstance/modifierById +FD: net/minecraft/world/entity/ai/attributes/AttributeInstance/f_22091_ net/minecraft/world/entity/ai/attributes/AttributeInstance/permanentModifiers +FD: net/minecraft/world/entity/ai/attributes/AttributeInstance/f_22092_ net/minecraft/world/entity/ai/attributes/AttributeInstance/baseValue +FD: net/minecraft/world/entity/ai/attributes/AttributeInstance/f_22093_ net/minecraft/world/entity/ai/attributes/AttributeInstance/dirty +FD: net/minecraft/world/entity/ai/attributes/AttributeInstance/f_22094_ net/minecraft/world/entity/ai/attributes/AttributeInstance/cachedValue +FD: net/minecraft/world/entity/ai/attributes/AttributeInstance/f_22095_ net/minecraft/world/entity/ai/attributes/AttributeInstance/onDirty +FD: net/minecraft/world/entity/ai/attributes/AttributeMap/f_22138_ net/minecraft/world/entity/ai/attributes/AttributeMap/LOGGER +FD: net/minecraft/world/entity/ai/attributes/AttributeMap/f_22139_ net/minecraft/world/entity/ai/attributes/AttributeMap/attributes +FD: net/minecraft/world/entity/ai/attributes/AttributeMap/f_22140_ net/minecraft/world/entity/ai/attributes/AttributeMap/dirtyAttributes +FD: net/minecraft/world/entity/ai/attributes/AttributeMap/f_22141_ net/minecraft/world/entity/ai/attributes/AttributeMap/supplier +FD: net/minecraft/world/entity/ai/attributes/AttributeModifier/f_22189_ net/minecraft/world/entity/ai/attributes/AttributeModifier/LOGGER +FD: net/minecraft/world/entity/ai/attributes/AttributeModifier/f_22190_ net/minecraft/world/entity/ai/attributes/AttributeModifier/amount +FD: net/minecraft/world/entity/ai/attributes/AttributeModifier/f_22191_ net/minecraft/world/entity/ai/attributes/AttributeModifier/operation +FD: net/minecraft/world/entity/ai/attributes/AttributeModifier/f_22192_ net/minecraft/world/entity/ai/attributes/AttributeModifier/nameGetter +FD: net/minecraft/world/entity/ai/attributes/AttributeModifier/f_22193_ net/minecraft/world/entity/ai/attributes/AttributeModifier/id +FD: net/minecraft/world/entity/ai/attributes/AttributeModifier$Operation/$VALUES net/minecraft/world/entity/ai/attributes/AttributeModifier$Operation/$VALUES +FD: net/minecraft/world/entity/ai/attributes/AttributeModifier$Operation/ADDITION net/minecraft/world/entity/ai/attributes/AttributeModifier$Operation/ADDITION +FD: net/minecraft/world/entity/ai/attributes/AttributeModifier$Operation/MULTIPLY_BASE net/minecraft/world/entity/ai/attributes/AttributeModifier$Operation/MULTIPLY_BASE +FD: net/minecraft/world/entity/ai/attributes/AttributeModifier$Operation/MULTIPLY_TOTAL net/minecraft/world/entity/ai/attributes/AttributeModifier$Operation/MULTIPLY_TOTAL +FD: net/minecraft/world/entity/ai/attributes/AttributeModifier$Operation/f_22227_ net/minecraft/world/entity/ai/attributes/AttributeModifier$Operation/OPERATIONS +FD: net/minecraft/world/entity/ai/attributes/AttributeModifier$Operation/f_22228_ net/minecraft/world/entity/ai/attributes/AttributeModifier$Operation/value +FD: net/minecraft/world/entity/ai/attributes/AttributeSupplier/f_22241_ net/minecraft/world/entity/ai/attributes/AttributeSupplier/instances +FD: net/minecraft/world/entity/ai/attributes/AttributeSupplier$Builder/f_22262_ net/minecraft/world/entity/ai/attributes/AttributeSupplier$Builder/builder +FD: net/minecraft/world/entity/ai/attributes/AttributeSupplier$Builder/f_22263_ net/minecraft/world/entity/ai/attributes/AttributeSupplier$Builder/instanceFrozen +FD: net/minecraft/world/entity/ai/attributes/Attributes/f_22276_ net/minecraft/world/entity/ai/attributes/Attributes/MAX_HEALTH +FD: net/minecraft/world/entity/ai/attributes/Attributes/f_22277_ net/minecraft/world/entity/ai/attributes/Attributes/FOLLOW_RANGE +FD: net/minecraft/world/entity/ai/attributes/Attributes/f_22278_ net/minecraft/world/entity/ai/attributes/Attributes/KNOCKBACK_RESISTANCE +FD: net/minecraft/world/entity/ai/attributes/Attributes/f_22279_ net/minecraft/world/entity/ai/attributes/Attributes/MOVEMENT_SPEED +FD: net/minecraft/world/entity/ai/attributes/Attributes/f_22280_ net/minecraft/world/entity/ai/attributes/Attributes/FLYING_SPEED +FD: net/minecraft/world/entity/ai/attributes/Attributes/f_22281_ net/minecraft/world/entity/ai/attributes/Attributes/ATTACK_DAMAGE +FD: net/minecraft/world/entity/ai/attributes/Attributes/f_22282_ net/minecraft/world/entity/ai/attributes/Attributes/ATTACK_KNOCKBACK +FD: net/minecraft/world/entity/ai/attributes/Attributes/f_22283_ net/minecraft/world/entity/ai/attributes/Attributes/ATTACK_SPEED +FD: net/minecraft/world/entity/ai/attributes/Attributes/f_22284_ net/minecraft/world/entity/ai/attributes/Attributes/ARMOR +FD: net/minecraft/world/entity/ai/attributes/Attributes/f_22285_ net/minecraft/world/entity/ai/attributes/Attributes/ARMOR_TOUGHNESS +FD: net/minecraft/world/entity/ai/attributes/Attributes/f_22286_ net/minecraft/world/entity/ai/attributes/Attributes/LUCK +FD: net/minecraft/world/entity/ai/attributes/Attributes/f_22287_ net/minecraft/world/entity/ai/attributes/Attributes/SPAWN_REINFORCEMENTS_CHANCE +FD: net/minecraft/world/entity/ai/attributes/Attributes/f_22288_ net/minecraft/world/entity/ai/attributes/Attributes/JUMP_STRENGTH +FD: net/minecraft/world/entity/ai/attributes/DefaultAttributes/f_22293_ net/minecraft/world/entity/ai/attributes/DefaultAttributes/LOGGER +FD: net/minecraft/world/entity/ai/attributes/DefaultAttributes/f_22294_ net/minecraft/world/entity/ai/attributes/DefaultAttributes/SUPPLIERS +FD: net/minecraft/world/entity/ai/attributes/RangedAttribute/f_22307_ net/minecraft/world/entity/ai/attributes/RangedAttribute/minValue +FD: net/minecraft/world/entity/ai/attributes/RangedAttribute/f_22308_ net/minecraft/world/entity/ai/attributes/RangedAttribute/maxValue +FD: net/minecraft/world/entity/ai/behavior/AcquirePoi/f_147363_ net/minecraft/world/entity/ai/behavior/AcquirePoi/SCAN_RANGE +FD: net/minecraft/world/entity/ai/behavior/AcquirePoi$JitteredLinearRetry/f_147373_ net/minecraft/world/entity/ai/behavior/AcquirePoi$JitteredLinearRetry/MIN_INTERVAL_INCREASE +FD: net/minecraft/world/entity/ai/behavior/AcquirePoi$JitteredLinearRetry/f_147374_ net/minecraft/world/entity/ai/behavior/AcquirePoi$JitteredLinearRetry/MAX_INTERVAL_INCREASE +FD: net/minecraft/world/entity/ai/behavior/AcquirePoi$JitteredLinearRetry/f_147375_ net/minecraft/world/entity/ai/behavior/AcquirePoi$JitteredLinearRetry/MAX_RETRY_PATHFINDING_INTERVAL +FD: net/minecraft/world/entity/ai/behavior/AcquirePoi$JitteredLinearRetry/f_22373_ net/minecraft/world/entity/ai/behavior/AcquirePoi$JitteredLinearRetry/random +FD: net/minecraft/world/entity/ai/behavior/AcquirePoi$JitteredLinearRetry/f_22374_ net/minecraft/world/entity/ai/behavior/AcquirePoi$JitteredLinearRetry/previousAttemptTimestamp +FD: net/minecraft/world/entity/ai/behavior/AcquirePoi$JitteredLinearRetry/f_22375_ net/minecraft/world/entity/ai/behavior/AcquirePoi$JitteredLinearRetry/nextScheduledAttemptTimestamp +FD: net/minecraft/world/entity/ai/behavior/AcquirePoi$JitteredLinearRetry/f_22376_ net/minecraft/world/entity/ai/behavior/AcquirePoi$JitteredLinearRetry/currentDelay +FD: net/minecraft/world/entity/ai/behavior/AnimalMakeLove/f_147376_ net/minecraft/world/entity/ai/behavior/AnimalMakeLove/BREED_RANGE +FD: net/minecraft/world/entity/ai/behavior/AnimalMakeLove/f_147377_ net/minecraft/world/entity/ai/behavior/AnimalMakeLove/MIN_DURATION +FD: net/minecraft/world/entity/ai/behavior/AnimalMakeLove/f_147378_ net/minecraft/world/entity/ai/behavior/AnimalMakeLove/MAX_DURATION +FD: net/minecraft/world/entity/ai/behavior/AnimalMakeLove/f_22387_ net/minecraft/world/entity/ai/behavior/AnimalMakeLove/partnerType +FD: net/minecraft/world/entity/ai/behavior/AnimalMakeLove/f_22388_ net/minecraft/world/entity/ai/behavior/AnimalMakeLove/speedModifier +FD: net/minecraft/world/entity/ai/behavior/AnimalMakeLove/f_22389_ net/minecraft/world/entity/ai/behavior/AnimalMakeLove/spawnChildAtTime +FD: net/minecraft/world/entity/ai/behavior/AnimalPanic/f_147379_ net/minecraft/world/entity/ai/behavior/AnimalPanic/PANIC_MIN_DURATION +FD: net/minecraft/world/entity/ai/behavior/AnimalPanic/f_147380_ net/minecraft/world/entity/ai/behavior/AnimalPanic/PANIC_MAX_DURATION +FD: net/minecraft/world/entity/ai/behavior/AnimalPanic/f_147382_ net/minecraft/world/entity/ai/behavior/AnimalPanic/PANIC_DISTANCE_VERTICAL +FD: net/minecraft/world/entity/ai/behavior/AnimalPanic/f_147383_ net/minecraft/world/entity/ai/behavior/AnimalPanic/speedMultiplier +FD: net/minecraft/world/entity/ai/behavior/AnimalPanic/f_196637_ net/minecraft/world/entity/ai/behavior/AnimalPanic/PANIC_DISTANCE_HORIZONTAL +FD: net/minecraft/world/entity/ai/behavior/AnimalPanic/f_273842_ net/minecraft/world/entity/ai/behavior/AnimalPanic/shouldPanic +FD: net/minecraft/world/entity/ai/behavior/AnimalPanic/f_273847_ net/minecraft/world/entity/ai/behavior/AnimalPanic/DEFAULT_SHOULD_PANIC_PREDICATE +FD: net/minecraft/world/entity/ai/behavior/Behavior/f_147431_ net/minecraft/world/entity/ai/behavior/Behavior/DEFAULT_DURATION +FD: net/minecraft/world/entity/ai/behavior/Behavior/f_22522_ net/minecraft/world/entity/ai/behavior/Behavior/entryCondition +FD: net/minecraft/world/entity/ai/behavior/Behavior/f_22523_ net/minecraft/world/entity/ai/behavior/Behavior/status +FD: net/minecraft/world/entity/ai/behavior/Behavior/f_22524_ net/minecraft/world/entity/ai/behavior/Behavior/endTimestamp +FD: net/minecraft/world/entity/ai/behavior/Behavior/f_22525_ net/minecraft/world/entity/ai/behavior/Behavior/minDuration +FD: net/minecraft/world/entity/ai/behavior/Behavior/f_22526_ net/minecraft/world/entity/ai/behavior/Behavior/maxDuration +FD: net/minecraft/world/entity/ai/behavior/Behavior$Status/$VALUES net/minecraft/world/entity/ai/behavior/Behavior$Status/$VALUES +FD: net/minecraft/world/entity/ai/behavior/Behavior$Status/RUNNING net/minecraft/world/entity/ai/behavior/Behavior$Status/RUNNING +FD: net/minecraft/world/entity/ai/behavior/Behavior$Status/STOPPED net/minecraft/world/entity/ai/behavior/Behavior$Status/STOPPED +FD: net/minecraft/world/entity/ai/behavior/BlockPosTracker/f_22673_ net/minecraft/world/entity/ai/behavior/BlockPosTracker/blockPos +FD: net/minecraft/world/entity/ai/behavior/BlockPosTracker/f_22674_ net/minecraft/world/entity/ai/behavior/BlockPosTracker/centerPosition +FD: net/minecraft/world/entity/ai/behavior/CelebrateVillagersSurvivedRaid/f_22682_ net/minecraft/world/entity/ai/behavior/CelebrateVillagersSurvivedRaid/currentRaid +FD: net/minecraft/world/entity/ai/behavior/CountDownCooldownTicks/f_147460_ net/minecraft/world/entity/ai/behavior/CountDownCooldownTicks/cooldownTicks +FD: net/minecraft/world/entity/ai/behavior/Croak/f_217139_ net/minecraft/world/entity/ai/behavior/Croak/CROAK_TICKS +FD: net/minecraft/world/entity/ai/behavior/Croak/f_217140_ net/minecraft/world/entity/ai/behavior/Croak/TIME_OUT_DURATION +FD: net/minecraft/world/entity/ai/behavior/Croak/f_217141_ net/minecraft/world/entity/ai/behavior/Croak/croakCounter +FD: net/minecraft/world/entity/ai/behavior/CrossbowAttack/f_147479_ net/minecraft/world/entity/ai/behavior/CrossbowAttack/TIMEOUT +FD: net/minecraft/world/entity/ai/behavior/CrossbowAttack/f_22771_ net/minecraft/world/entity/ai/behavior/CrossbowAttack/attackDelay +FD: net/minecraft/world/entity/ai/behavior/CrossbowAttack/f_22772_ net/minecraft/world/entity/ai/behavior/CrossbowAttack/crossbowState +FD: net/minecraft/world/entity/ai/behavior/CrossbowAttack$CrossbowState/$VALUES net/minecraft/world/entity/ai/behavior/CrossbowAttack$CrossbowState/$VALUES +FD: net/minecraft/world/entity/ai/behavior/CrossbowAttack$CrossbowState/CHARGED net/minecraft/world/entity/ai/behavior/CrossbowAttack$CrossbowState/CHARGED +FD: net/minecraft/world/entity/ai/behavior/CrossbowAttack$CrossbowState/CHARGING net/minecraft/world/entity/ai/behavior/CrossbowAttack$CrossbowState/CHARGING +FD: net/minecraft/world/entity/ai/behavior/CrossbowAttack$CrossbowState/READY_TO_ATTACK net/minecraft/world/entity/ai/behavior/CrossbowAttack$CrossbowState/READY_TO_ATTACK +FD: net/minecraft/world/entity/ai/behavior/CrossbowAttack$CrossbowState/UNCHARGED net/minecraft/world/entity/ai/behavior/CrossbowAttack$CrossbowState/UNCHARGED +FD: net/minecraft/world/entity/ai/behavior/DoNothing/f_256804_ net/minecraft/world/entity/ai/behavior/DoNothing/maxDuration +FD: net/minecraft/world/entity/ai/behavior/DoNothing/f_256875_ net/minecraft/world/entity/ai/behavior/DoNothing/status +FD: net/minecraft/world/entity/ai/behavior/DoNothing/f_256900_ net/minecraft/world/entity/ai/behavior/DoNothing/minDuration +FD: net/minecraft/world/entity/ai/behavior/DoNothing/f_256966_ net/minecraft/world/entity/ai/behavior/DoNothing/endTimestamp +FD: net/minecraft/world/entity/ai/behavior/EntityTracker/f_22846_ net/minecraft/world/entity/ai/behavior/EntityTracker/entity +FD: net/minecraft/world/entity/ai/behavior/EntityTracker/f_22847_ net/minecraft/world/entity/ai/behavior/EntityTracker/trackEyeHeight +FD: net/minecraft/world/entity/ai/behavior/FollowTemptation/f_147482_ net/minecraft/world/entity/ai/behavior/FollowTemptation/TEMPTATION_COOLDOWN +FD: net/minecraft/world/entity/ai/behavior/FollowTemptation/f_147483_ net/minecraft/world/entity/ai/behavior/FollowTemptation/CLOSE_ENOUGH_DIST +FD: net/minecraft/world/entity/ai/behavior/FollowTemptation/f_147484_ net/minecraft/world/entity/ai/behavior/FollowTemptation/speedModifier +FD: net/minecraft/world/entity/ai/behavior/FollowTemptation/f_283928_ net/minecraft/world/entity/ai/behavior/FollowTemptation/closeEnoughDistance +FD: net/minecraft/world/entity/ai/behavior/GateBehavior/f_22868_ net/minecraft/world/entity/ai/behavior/GateBehavior/exitErasedMemories +FD: net/minecraft/world/entity/ai/behavior/GateBehavior/f_22869_ net/minecraft/world/entity/ai/behavior/GateBehavior/orderPolicy +FD: net/minecraft/world/entity/ai/behavior/GateBehavior/f_22870_ net/minecraft/world/entity/ai/behavior/GateBehavior/runningPolicy +FD: net/minecraft/world/entity/ai/behavior/GateBehavior/f_22871_ net/minecraft/world/entity/ai/behavior/GateBehavior/behaviors +FD: net/minecraft/world/entity/ai/behavior/GateBehavior/f_256759_ net/minecraft/world/entity/ai/behavior/GateBehavior/entryCondition +FD: net/minecraft/world/entity/ai/behavior/GateBehavior/f_256778_ net/minecraft/world/entity/ai/behavior/GateBehavior/status +FD: net/minecraft/world/entity/ai/behavior/GateBehavior$OrderPolicy/$VALUES net/minecraft/world/entity/ai/behavior/GateBehavior$OrderPolicy/$VALUES +FD: net/minecraft/world/entity/ai/behavior/GateBehavior$OrderPolicy/ORDERED net/minecraft/world/entity/ai/behavior/GateBehavior$OrderPolicy/ORDERED +FD: net/minecraft/world/entity/ai/behavior/GateBehavior$OrderPolicy/SHUFFLED net/minecraft/world/entity/ai/behavior/GateBehavior$OrderPolicy/SHUFFLED +FD: net/minecraft/world/entity/ai/behavior/GateBehavior$OrderPolicy/f_22924_ net/minecraft/world/entity/ai/behavior/GateBehavior$OrderPolicy/consumer +FD: net/minecraft/world/entity/ai/behavior/GateBehavior$RunningPolicy/$VALUES net/minecraft/world/entity/ai/behavior/GateBehavior$RunningPolicy/$VALUES +FD: net/minecraft/world/entity/ai/behavior/GateBehavior$RunningPolicy/RUN_ONE net/minecraft/world/entity/ai/behavior/GateBehavior$RunningPolicy/RUN_ONE +FD: net/minecraft/world/entity/ai/behavior/GateBehavior$RunningPolicy/TRY_ALL net/minecraft/world/entity/ai/behavior/GateBehavior$RunningPolicy/TRY_ALL +FD: net/minecraft/world/entity/ai/behavior/GiveGiftToHero/f_147546_ net/minecraft/world/entity/ai/behavior/GiveGiftToHero/THROW_GIFT_AT_DISTANCE +FD: net/minecraft/world/entity/ai/behavior/GiveGiftToHero/f_147547_ net/minecraft/world/entity/ai/behavior/GiveGiftToHero/MIN_TIME_BETWEEN_GIFTS +FD: net/minecraft/world/entity/ai/behavior/GiveGiftToHero/f_147548_ net/minecraft/world/entity/ai/behavior/GiveGiftToHero/MAX_TIME_BETWEEN_GIFTS +FD: net/minecraft/world/entity/ai/behavior/GiveGiftToHero/f_147549_ net/minecraft/world/entity/ai/behavior/GiveGiftToHero/TIME_TO_DELAY_FOR_HEAD_TO_FINISH_TURNING +FD: net/minecraft/world/entity/ai/behavior/GiveGiftToHero/f_147550_ net/minecraft/world/entity/ai/behavior/GiveGiftToHero/GIFTS +FD: net/minecraft/world/entity/ai/behavior/GiveGiftToHero/f_147551_ net/minecraft/world/entity/ai/behavior/GiveGiftToHero/SPEED_MODIFIER +FD: net/minecraft/world/entity/ai/behavior/GiveGiftToHero/f_22987_ net/minecraft/world/entity/ai/behavior/GiveGiftToHero/timeUntilNextGift +FD: net/minecraft/world/entity/ai/behavior/GiveGiftToHero/f_22988_ net/minecraft/world/entity/ai/behavior/GiveGiftToHero/giftGivenDuringThisRun +FD: net/minecraft/world/entity/ai/behavior/GiveGiftToHero/f_22989_ net/minecraft/world/entity/ai/behavior/GiveGiftToHero/timeSinceStart +FD: net/minecraft/world/entity/ai/behavior/GoAndGiveItemsToTarget/f_217188_ net/minecraft/world/entity/ai/behavior/GoAndGiveItemsToTarget/CLOSE_ENOUGH_DISTANCE_TO_TARGET +FD: net/minecraft/world/entity/ai/behavior/GoAndGiveItemsToTarget/f_217189_ net/minecraft/world/entity/ai/behavior/GoAndGiveItemsToTarget/ITEM_PICKUP_COOLDOWN_AFTER_THROWING +FD: net/minecraft/world/entity/ai/behavior/GoAndGiveItemsToTarget/f_217190_ net/minecraft/world/entity/ai/behavior/GoAndGiveItemsToTarget/targetPositionGetter +FD: net/minecraft/world/entity/ai/behavior/GoAndGiveItemsToTarget/f_217191_ net/minecraft/world/entity/ai/behavior/GoAndGiveItemsToTarget/speedModifier +FD: net/minecraft/world/entity/ai/behavior/GoToPotentialJobSite/f_147555_ net/minecraft/world/entity/ai/behavior/GoToPotentialJobSite/TICKS_UNTIL_TIMEOUT +FD: net/minecraft/world/entity/ai/behavior/GoToPotentialJobSite/f_23096_ net/minecraft/world/entity/ai/behavior/GoToPotentialJobSite/speedModifier +FD: net/minecraft/world/entity/ai/behavior/HarvestFarmland/f_147558_ net/minecraft/world/entity/ai/behavior/HarvestFarmland/SPEED_MODIFIER +FD: net/minecraft/world/entity/ai/behavior/HarvestFarmland/f_147559_ net/minecraft/world/entity/ai/behavior/HarvestFarmland/HARVEST_DURATION +FD: net/minecraft/world/entity/ai/behavior/HarvestFarmland/f_23159_ net/minecraft/world/entity/ai/behavior/HarvestFarmland/aboveFarmlandPos +FD: net/minecraft/world/entity/ai/behavior/HarvestFarmland/f_23160_ net/minecraft/world/entity/ai/behavior/HarvestFarmland/nextOkStartTime +FD: net/minecraft/world/entity/ai/behavior/HarvestFarmland/f_23161_ net/minecraft/world/entity/ai/behavior/HarvestFarmland/timeWorkedSoFar +FD: net/minecraft/world/entity/ai/behavior/HarvestFarmland/f_23162_ net/minecraft/world/entity/ai/behavior/HarvestFarmland/validFarmlandAroundVillager +FD: net/minecraft/world/entity/ai/behavior/InteractWithDoor/f_147585_ net/minecraft/world/entity/ai/behavior/InteractWithDoor/COOLDOWN_BEFORE_RERUNNING_IN_SAME_NODE +FD: net/minecraft/world/entity/ai/behavior/InteractWithDoor/f_147586_ net/minecraft/world/entity/ai/behavior/InteractWithDoor/SKIP_CLOSING_DOOR_IF_FURTHER_AWAY_THAN +FD: net/minecraft/world/entity/ai/behavior/InteractWithDoor/f_147587_ net/minecraft/world/entity/ai/behavior/InteractWithDoor/MAX_DISTANCE_TO_HOLD_DOOR_OPEN_FOR_OTHER_MOBS +FD: net/minecraft/world/entity/ai/behavior/JumpOnBed/f_147588_ net/minecraft/world/entity/ai/behavior/JumpOnBed/MAX_TIME_TO_REACH_BED +FD: net/minecraft/world/entity/ai/behavior/JumpOnBed/f_147589_ net/minecraft/world/entity/ai/behavior/JumpOnBed/MIN_JUMPS +FD: net/minecraft/world/entity/ai/behavior/JumpOnBed/f_147590_ net/minecraft/world/entity/ai/behavior/JumpOnBed/MAX_JUMPS +FD: net/minecraft/world/entity/ai/behavior/JumpOnBed/f_147591_ net/minecraft/world/entity/ai/behavior/JumpOnBed/COOLDOWN_BETWEEN_JUMPS +FD: net/minecraft/world/entity/ai/behavior/JumpOnBed/f_23329_ net/minecraft/world/entity/ai/behavior/JumpOnBed/speedModifier +FD: net/minecraft/world/entity/ai/behavior/JumpOnBed/f_23330_ net/minecraft/world/entity/ai/behavior/JumpOnBed/targetBed +FD: net/minecraft/world/entity/ai/behavior/JumpOnBed/f_23331_ net/minecraft/world/entity/ai/behavior/JumpOnBed/remainingTimeToReachBed +FD: net/minecraft/world/entity/ai/behavior/JumpOnBed/f_23332_ net/minecraft/world/entity/ai/behavior/JumpOnBed/remainingJumps +FD: net/minecraft/world/entity/ai/behavior/JumpOnBed/f_23333_ net/minecraft/world/entity/ai/behavior/JumpOnBed/remainingCooldownUntilNextJump +FD: net/minecraft/world/entity/ai/behavior/LongJumpMidJump/f_147592_ net/minecraft/world/entity/ai/behavior/LongJumpMidJump/TIME_OUT_DURATION +FD: net/minecraft/world/entity/ai/behavior/LongJumpMidJump/f_147593_ net/minecraft/world/entity/ai/behavior/LongJumpMidJump/timeBetweenLongJumps +FD: net/minecraft/world/entity/ai/behavior/LongJumpMidJump/f_147594_ net/minecraft/world/entity/ai/behavior/LongJumpMidJump/landingSound +FD: net/minecraft/world/entity/ai/behavior/LongJumpToPreferredBlock/f_217259_ net/minecraft/world/entity/ai/behavior/LongJumpToPreferredBlock/preferredBlockTag +FD: net/minecraft/world/entity/ai/behavior/LongJumpToPreferredBlock/f_217260_ net/minecraft/world/entity/ai/behavior/LongJumpToPreferredBlock/preferredBlocksChance +FD: net/minecraft/world/entity/ai/behavior/LongJumpToPreferredBlock/f_217261_ net/minecraft/world/entity/ai/behavior/LongJumpToPreferredBlock/notPrefferedJumpCandidates +FD: net/minecraft/world/entity/ai/behavior/LongJumpToPreferredBlock/f_217262_ net/minecraft/world/entity/ai/behavior/LongJumpToPreferredBlock/currentlyWantingPreferredOnes +FD: net/minecraft/world/entity/ai/behavior/LongJumpToRandomPos/f_147622_ net/minecraft/world/entity/ai/behavior/LongJumpToRandomPos/TIME_OUT_DURATION +FD: net/minecraft/world/entity/ai/behavior/LongJumpToRandomPos/f_147623_ net/minecraft/world/entity/ai/behavior/LongJumpToRandomPos/FIND_JUMP_TRIES +FD: net/minecraft/world/entity/ai/behavior/LongJumpToRandomPos/f_147624_ net/minecraft/world/entity/ai/behavior/LongJumpToRandomPos/PREPARE_JUMP_DURATION +FD: net/minecraft/world/entity/ai/behavior/LongJumpToRandomPos/f_147625_ net/minecraft/world/entity/ai/behavior/LongJumpToRandomPos/MIN_PATHFIND_DISTANCE_TO_VALID_JUMP +FD: net/minecraft/world/entity/ai/behavior/LongJumpToRandomPos/f_147626_ net/minecraft/world/entity/ai/behavior/LongJumpToRandomPos/timeBetweenLongJumps +FD: net/minecraft/world/entity/ai/behavior/LongJumpToRandomPos/f_147627_ net/minecraft/world/entity/ai/behavior/LongJumpToRandomPos/maxLongJumpHeight +FD: net/minecraft/world/entity/ai/behavior/LongJumpToRandomPos/f_147628_ net/minecraft/world/entity/ai/behavior/LongJumpToRandomPos/maxLongJumpWidth +FD: net/minecraft/world/entity/ai/behavior/LongJumpToRandomPos/f_147629_ net/minecraft/world/entity/ai/behavior/LongJumpToRandomPos/maxJumpVelocity +FD: net/minecraft/world/entity/ai/behavior/LongJumpToRandomPos/f_147630_ net/minecraft/world/entity/ai/behavior/LongJumpToRandomPos/jumpCandidates +FD: net/minecraft/world/entity/ai/behavior/LongJumpToRandomPos/f_147631_ net/minecraft/world/entity/ai/behavior/LongJumpToRandomPos/initialPosition +FD: net/minecraft/world/entity/ai/behavior/LongJumpToRandomPos/f_147632_ net/minecraft/world/entity/ai/behavior/LongJumpToRandomPos/chosenJump +FD: net/minecraft/world/entity/ai/behavior/LongJumpToRandomPos/f_147633_ net/minecraft/world/entity/ai/behavior/LongJumpToRandomPos/findJumpTries +FD: net/minecraft/world/entity/ai/behavior/LongJumpToRandomPos/f_147634_ net/minecraft/world/entity/ai/behavior/LongJumpToRandomPos/prepareJumpStart +FD: net/minecraft/world/entity/ai/behavior/LongJumpToRandomPos/f_147635_ net/minecraft/world/entity/ai/behavior/LongJumpToRandomPos/getJumpSound +FD: net/minecraft/world/entity/ai/behavior/LongJumpToRandomPos/f_217289_ net/minecraft/world/entity/ai/behavior/LongJumpToRandomPos/ALLOWED_ANGLES +FD: net/minecraft/world/entity/ai/behavior/LongJumpToRandomPos/f_217290_ net/minecraft/world/entity/ai/behavior/LongJumpToRandomPos/acceptableLandingSpot +FD: net/minecraft/world/entity/ai/behavior/LongJumpToRandomPos$PossibleJump/f_147687_ net/minecraft/world/entity/ai/behavior/LongJumpToRandomPos$PossibleJump/jumpTarget +FD: net/minecraft/world/entity/ai/behavior/LookAndFollowTradingPlayerSink/f_23432_ net/minecraft/world/entity/ai/behavior/LookAndFollowTradingPlayerSink/speedModifier +FD: net/minecraft/world/entity/ai/behavior/Mount/f_147698_ net/minecraft/world/entity/ai/behavior/Mount/CLOSE_ENOUGH_TO_START_RIDING_DIST +FD: net/minecraft/world/entity/ai/behavior/MoveToTargetSink/f_147699_ net/minecraft/world/entity/ai/behavior/MoveToTargetSink/MAX_COOLDOWN_BEFORE_RETRYING +FD: net/minecraft/world/entity/ai/behavior/MoveToTargetSink/f_23567_ net/minecraft/world/entity/ai/behavior/MoveToTargetSink/remainingCooldown +FD: net/minecraft/world/entity/ai/behavior/MoveToTargetSink/f_23568_ net/minecraft/world/entity/ai/behavior/MoveToTargetSink/path +FD: net/minecraft/world/entity/ai/behavior/MoveToTargetSink/f_23569_ net/minecraft/world/entity/ai/behavior/MoveToTargetSink/lastTargetPos +FD: net/minecraft/world/entity/ai/behavior/MoveToTargetSink/f_23570_ net/minecraft/world/entity/ai/behavior/MoveToTargetSink/speedModifier +FD: net/minecraft/world/entity/ai/behavior/OneShot/f_256915_ net/minecraft/world/entity/ai/behavior/OneShot/status +FD: net/minecraft/world/entity/ai/behavior/PlayTagWithOtherKids/f_147700_ net/minecraft/world/entity/ai/behavior/PlayTagWithOtherKids/MAX_FLEE_XZ_DIST +FD: net/minecraft/world/entity/ai/behavior/PlayTagWithOtherKids/f_147701_ net/minecraft/world/entity/ai/behavior/PlayTagWithOtherKids/MAX_FLEE_Y_DIST +FD: net/minecraft/world/entity/ai/behavior/PlayTagWithOtherKids/f_147702_ net/minecraft/world/entity/ai/behavior/PlayTagWithOtherKids/FLEE_SPEED_MODIFIER +FD: net/minecraft/world/entity/ai/behavior/PlayTagWithOtherKids/f_147703_ net/minecraft/world/entity/ai/behavior/PlayTagWithOtherKids/CHASE_SPEED_MODIFIER +FD: net/minecraft/world/entity/ai/behavior/PlayTagWithOtherKids/f_147704_ net/minecraft/world/entity/ai/behavior/PlayTagWithOtherKids/MAX_CHASERS_PER_TARGET +FD: net/minecraft/world/entity/ai/behavior/PlayTagWithOtherKids/f_147705_ net/minecraft/world/entity/ai/behavior/PlayTagWithOtherKids/AVERAGE_WAIT_TIME_BETWEEN_RUNS +FD: net/minecraft/world/entity/ai/behavior/PrepareRamNearestTarget/f_147713_ net/minecraft/world/entity/ai/behavior/PrepareRamNearestTarget/TIME_OUT_DURATION +FD: net/minecraft/world/entity/ai/behavior/PrepareRamNearestTarget/f_147714_ net/minecraft/world/entity/ai/behavior/PrepareRamNearestTarget/getCooldownOnFail +FD: net/minecraft/world/entity/ai/behavior/PrepareRamNearestTarget/f_147715_ net/minecraft/world/entity/ai/behavior/PrepareRamNearestTarget/minRamDistance +FD: net/minecraft/world/entity/ai/behavior/PrepareRamNearestTarget/f_147716_ net/minecraft/world/entity/ai/behavior/PrepareRamNearestTarget/maxRamDistance +FD: net/minecraft/world/entity/ai/behavior/PrepareRamNearestTarget/f_147717_ net/minecraft/world/entity/ai/behavior/PrepareRamNearestTarget/walkSpeed +FD: net/minecraft/world/entity/ai/behavior/PrepareRamNearestTarget/f_147718_ net/minecraft/world/entity/ai/behavior/PrepareRamNearestTarget/ramTargeting +FD: net/minecraft/world/entity/ai/behavior/PrepareRamNearestTarget/f_147719_ net/minecraft/world/entity/ai/behavior/PrepareRamNearestTarget/ramPrepareTime +FD: net/minecraft/world/entity/ai/behavior/PrepareRamNearestTarget/f_147720_ net/minecraft/world/entity/ai/behavior/PrepareRamNearestTarget/getPrepareRamSound +FD: net/minecraft/world/entity/ai/behavior/PrepareRamNearestTarget/f_147721_ net/minecraft/world/entity/ai/behavior/PrepareRamNearestTarget/reachedRamPositionTimestamp +FD: net/minecraft/world/entity/ai/behavior/PrepareRamNearestTarget/f_147722_ net/minecraft/world/entity/ai/behavior/PrepareRamNearestTarget/ramCandidate +FD: net/minecraft/world/entity/ai/behavior/PrepareRamNearestTarget$RamCandidate/f_147790_ net/minecraft/world/entity/ai/behavior/PrepareRamNearestTarget$RamCandidate/startPosition +FD: net/minecraft/world/entity/ai/behavior/PrepareRamNearestTarget$RamCandidate/f_147791_ net/minecraft/world/entity/ai/behavior/PrepareRamNearestTarget$RamCandidate/targetPosition +FD: net/minecraft/world/entity/ai/behavior/PrepareRamNearestTarget$RamCandidate/f_147792_ net/minecraft/world/entity/ai/behavior/PrepareRamNearestTarget$RamCandidate/target +FD: net/minecraft/world/entity/ai/behavior/RamTarget/f_147800_ net/minecraft/world/entity/ai/behavior/RamTarget/TIME_OUT_DURATION +FD: net/minecraft/world/entity/ai/behavior/RamTarget/f_147801_ net/minecraft/world/entity/ai/behavior/RamTarget/RAM_SPEED_FORCE_FACTOR +FD: net/minecraft/world/entity/ai/behavior/RamTarget/f_147802_ net/minecraft/world/entity/ai/behavior/RamTarget/getTimeBetweenRams +FD: net/minecraft/world/entity/ai/behavior/RamTarget/f_147803_ net/minecraft/world/entity/ai/behavior/RamTarget/ramTargeting +FD: net/minecraft/world/entity/ai/behavior/RamTarget/f_147805_ net/minecraft/world/entity/ai/behavior/RamTarget/speed +FD: net/minecraft/world/entity/ai/behavior/RamTarget/f_147806_ net/minecraft/world/entity/ai/behavior/RamTarget/getKnockbackForce +FD: net/minecraft/world/entity/ai/behavior/RamTarget/f_147807_ net/minecraft/world/entity/ai/behavior/RamTarget/ramDirection +FD: net/minecraft/world/entity/ai/behavior/RamTarget/f_147808_ net/minecraft/world/entity/ai/behavior/RamTarget/getImpactSound +FD: net/minecraft/world/entity/ai/behavior/RamTarget/f_217340_ net/minecraft/world/entity/ai/behavior/RamTarget/getHornBreakSound +FD: net/minecraft/world/entity/ai/behavior/RandomLookAround/f_243800_ net/minecraft/world/entity/ai/behavior/RandomLookAround/minPitch +FD: net/minecraft/world/entity/ai/behavior/RandomLookAround/f_243864_ net/minecraft/world/entity/ai/behavior/RandomLookAround/maxYaw +FD: net/minecraft/world/entity/ai/behavior/RandomLookAround/f_244014_ net/minecraft/world/entity/ai/behavior/RandomLookAround/interval +FD: net/minecraft/world/entity/ai/behavior/RandomLookAround/f_244277_ net/minecraft/world/entity/ai/behavior/RandomLookAround/pitchRange +FD: net/minecraft/world/entity/ai/behavior/RandomStroll/f_147849_ net/minecraft/world/entity/ai/behavior/RandomStroll/MAX_XZ_DIST +FD: net/minecraft/world/entity/ai/behavior/RandomStroll/f_147850_ net/minecraft/world/entity/ai/behavior/RandomStroll/MAX_Y_DIST +FD: net/minecraft/world/entity/ai/behavior/RandomStroll/f_256848_ net/minecraft/world/entity/ai/behavior/RandomStroll/SWIM_XY_DISTANCE_TIERS +FD: net/minecraft/world/entity/ai/behavior/RingBell/f_147862_ net/minecraft/world/entity/ai/behavior/RingBell/RING_BELL_FROM_DISTANCE +FD: net/minecraft/world/entity/ai/behavior/RingBell/f_147863_ net/minecraft/world/entity/ai/behavior/RingBell/BELL_RING_CHANCE +FD: net/minecraft/world/entity/ai/behavior/SetClosestHomeAsWalkTarget/f_147880_ net/minecraft/world/entity/ai/behavior/SetClosestHomeAsWalkTarget/CACHE_TIMEOUT +FD: net/minecraft/world/entity/ai/behavior/SetClosestHomeAsWalkTarget/f_147881_ net/minecraft/world/entity/ai/behavior/SetClosestHomeAsWalkTarget/BATCH_SIZE +FD: net/minecraft/world/entity/ai/behavior/SetClosestHomeAsWalkTarget/f_147882_ net/minecraft/world/entity/ai/behavior/SetClosestHomeAsWalkTarget/RATE +FD: net/minecraft/world/entity/ai/behavior/SetClosestHomeAsWalkTarget/f_147883_ net/minecraft/world/entity/ai/behavior/SetClosestHomeAsWalkTarget/OK_DISTANCE_SQR +FD: net/minecraft/world/entity/ai/behavior/SetEntityLookTargetSometimes$Ticker/f_256928_ net/minecraft/world/entity/ai/behavior/SetEntityLookTargetSometimes$Ticker/ticksUntilNextStart +FD: net/minecraft/world/entity/ai/behavior/SetEntityLookTargetSometimes$Ticker/f_257030_ net/minecraft/world/entity/ai/behavior/SetEntityLookTargetSometimes$Ticker/interval +FD: net/minecraft/world/entity/ai/behavior/SetHiddenState/f_147896_ net/minecraft/world/entity/ai/behavior/SetHiddenState/HIDE_TIMEOUT +FD: net/minecraft/world/entity/ai/behavior/SetWalkTargetFromAttackTargetIfTargetOutOfReach/f_147903_ net/minecraft/world/entity/ai/behavior/SetWalkTargetFromAttackTargetIfTargetOutOfReach/PROJECTILE_ATTACK_RANGE_BUFFER +FD: net/minecraft/world/entity/ai/behavior/ShowTradesToPlayer/f_147915_ net/minecraft/world/entity/ai/behavior/ShowTradesToPlayer/MAX_LOOK_TIME +FD: net/minecraft/world/entity/ai/behavior/ShowTradesToPlayer/f_147916_ net/minecraft/world/entity/ai/behavior/ShowTradesToPlayer/STARTING_LOOK_TIME +FD: net/minecraft/world/entity/ai/behavior/ShowTradesToPlayer/f_24090_ net/minecraft/world/entity/ai/behavior/ShowTradesToPlayer/playerItemStack +FD: net/minecraft/world/entity/ai/behavior/ShowTradesToPlayer/f_24091_ net/minecraft/world/entity/ai/behavior/ShowTradesToPlayer/displayItems +FD: net/minecraft/world/entity/ai/behavior/ShowTradesToPlayer/f_24092_ net/minecraft/world/entity/ai/behavior/ShowTradesToPlayer/cycleCounter +FD: net/minecraft/world/entity/ai/behavior/ShowTradesToPlayer/f_24093_ net/minecraft/world/entity/ai/behavior/ShowTradesToPlayer/displayIndex +FD: net/minecraft/world/entity/ai/behavior/ShowTradesToPlayer/f_24094_ net/minecraft/world/entity/ai/behavior/ShowTradesToPlayer/lookTime +FD: net/minecraft/world/entity/ai/behavior/ShufflingList/f_147917_ net/minecraft/world/entity/ai/behavior/ShufflingList/entries +FD: net/minecraft/world/entity/ai/behavior/ShufflingList/f_147918_ net/minecraft/world/entity/ai/behavior/ShufflingList/random +FD: net/minecraft/world/entity/ai/behavior/ShufflingList$WeightedEntry/f_147934_ net/minecraft/world/entity/ai/behavior/ShufflingList$WeightedEntry/data +FD: net/minecraft/world/entity/ai/behavior/ShufflingList$WeightedEntry/f_147935_ net/minecraft/world/entity/ai/behavior/ShufflingList$WeightedEntry/weight +FD: net/minecraft/world/entity/ai/behavior/ShufflingList$WeightedEntry/f_147936_ net/minecraft/world/entity/ai/behavior/ShufflingList$WeightedEntry/randWeight +FD: net/minecraft/world/entity/ai/behavior/ShufflingList$WeightedEntry$1/f_147948_ net/minecraft/world/entity/ai/behavior/ShufflingList$WeightedEntry$1/val$elementCodec +FD: net/minecraft/world/entity/ai/behavior/SleepInBed/f_147968_ net/minecraft/world/entity/ai/behavior/SleepInBed/COOLDOWN_AFTER_BEING_WOKEN +FD: net/minecraft/world/entity/ai/behavior/SleepInBed/f_24149_ net/minecraft/world/entity/ai/behavior/SleepInBed/nextOkStartTime +FD: net/minecraft/world/entity/ai/behavior/SocializeAtBell/f_147969_ net/minecraft/world/entity/ai/behavior/SocializeAtBell/SPEED_MODIFIER +FD: net/minecraft/world/entity/ai/behavior/StopAttackingIfTargetInvalid/f_147978_ net/minecraft/world/entity/ai/behavior/StopAttackingIfTargetInvalid/TIMEOUT_TO_GET_WITHIN_ATTACK_RANGE +FD: net/minecraft/world/entity/ai/behavior/StrollAroundPoi/f_147993_ net/minecraft/world/entity/ai/behavior/StrollAroundPoi/MIN_TIME_BETWEEN_STROLLS +FD: net/minecraft/world/entity/ai/behavior/StrollAroundPoi/f_147994_ net/minecraft/world/entity/ai/behavior/StrollAroundPoi/STROLL_MAX_XZ_DIST +FD: net/minecraft/world/entity/ai/behavior/StrollAroundPoi/f_147995_ net/minecraft/world/entity/ai/behavior/StrollAroundPoi/STROLL_MAX_Y_DIST +FD: net/minecraft/world/entity/ai/behavior/Swim/f_24381_ net/minecraft/world/entity/ai/behavior/Swim/chance +FD: net/minecraft/world/entity/ai/behavior/TradeWithVillager/f_147996_ net/minecraft/world/entity/ai/behavior/TradeWithVillager/INTERACT_DIST_SQR +FD: net/minecraft/world/entity/ai/behavior/TradeWithVillager/f_147997_ net/minecraft/world/entity/ai/behavior/TradeWithVillager/SPEED_MODIFIER +FD: net/minecraft/world/entity/ai/behavior/TradeWithVillager/f_24406_ net/minecraft/world/entity/ai/behavior/TradeWithVillager/trades +FD: net/minecraft/world/entity/ai/behavior/TryFindLand/f_217413_ net/minecraft/world/entity/ai/behavior/TryFindLand/COOLDOWN_TICKS +FD: net/minecraft/world/entity/ai/behavior/UseBonemeal/f_148035_ net/minecraft/world/entity/ai/behavior/UseBonemeal/BONEMEALING_DURATION +FD: net/minecraft/world/entity/ai/behavior/UseBonemeal/f_24461_ net/minecraft/world/entity/ai/behavior/UseBonemeal/nextWorkCycleTime +FD: net/minecraft/world/entity/ai/behavior/UseBonemeal/f_24462_ net/minecraft/world/entity/ai/behavior/UseBonemeal/lastBonemealingSession +FD: net/minecraft/world/entity/ai/behavior/UseBonemeal/f_24463_ net/minecraft/world/entity/ai/behavior/UseBonemeal/timeWorkedSoFar +FD: net/minecraft/world/entity/ai/behavior/UseBonemeal/f_24464_ net/minecraft/world/entity/ai/behavior/UseBonemeal/cropPos +FD: net/minecraft/world/entity/ai/behavior/ValidateNearbyPoi/f_148036_ net/minecraft/world/entity/ai/behavior/ValidateNearbyPoi/MAX_DISTANCE +FD: net/minecraft/world/entity/ai/behavior/VillageBoundRandomStroll/f_148037_ net/minecraft/world/entity/ai/behavior/VillageBoundRandomStroll/MAX_XZ_DIST +FD: net/minecraft/world/entity/ai/behavior/VillageBoundRandomStroll/f_148038_ net/minecraft/world/entity/ai/behavior/VillageBoundRandomStroll/MAX_Y_DIST +FD: net/minecraft/world/entity/ai/behavior/VillagerCalmDown/f_148039_ net/minecraft/world/entity/ai/behavior/VillagerCalmDown/SAFE_DISTANCE_FROM_DANGER +FD: net/minecraft/world/entity/ai/behavior/VillagerGoalPackages/f_148040_ net/minecraft/world/entity/ai/behavior/VillagerGoalPackages/STROLL_SPEED_MODIFIER +FD: net/minecraft/world/entity/ai/behavior/VillagerMakeLove/f_148042_ net/minecraft/world/entity/ai/behavior/VillagerMakeLove/INTERACT_DIST_SQR +FD: net/minecraft/world/entity/ai/behavior/VillagerMakeLove/f_148043_ net/minecraft/world/entity/ai/behavior/VillagerMakeLove/SPEED_MODIFIER +FD: net/minecraft/world/entity/ai/behavior/VillagerMakeLove/f_24613_ net/minecraft/world/entity/ai/behavior/VillagerMakeLove/birthTimestamp +FD: net/minecraft/world/entity/ai/behavior/WorkAtComposter/f_24786_ net/minecraft/world/entity/ai/behavior/WorkAtComposter/COMPOSTABLE_ITEMS +FD: net/minecraft/world/entity/ai/behavior/WorkAtPoi/f_148046_ net/minecraft/world/entity/ai/behavior/WorkAtPoi/CHECK_COOLDOWN +FD: net/minecraft/world/entity/ai/behavior/WorkAtPoi/f_148047_ net/minecraft/world/entity/ai/behavior/WorkAtPoi/DISTANCE +FD: net/minecraft/world/entity/ai/behavior/WorkAtPoi/f_24804_ net/minecraft/world/entity/ai/behavior/WorkAtPoi/lastCheck +FD: net/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder/f_256790_ net/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder/trigger +FD: net/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$1/f_256727_ net/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$1/val$resolvedBuilder +FD: net/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Constant$1/f_256864_ net/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Constant$1/val$a +FD: net/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Constant$1/f_256903_ net/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Constant$1/val$debugString +FD: net/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance$1/f_256801_ net/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance$1/val$aTrigger +FD: net/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance$1/f_256877_ net/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance$1/this$0 +FD: net/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance$1/f_256964_ net/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance$1/val$fTrigger +FD: net/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance$2/f_256823_ net/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance$2/val$func +FD: net/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance$2/f_256860_ net/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance$2/this$0 +FD: net/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance$2/f_256984_ net/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance$2/val$tTrigger +FD: net/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance$3/f_256841_ net/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance$3/val$bTrigger +FD: net/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance$3/f_256881_ net/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance$3/val$fTrigger +FD: net/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance$3/f_256955_ net/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance$3/this$0 +FD: net/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance$3/f_257008_ net/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance$3/val$aTrigger +FD: net/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance$4/f_256745_ net/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance$4/val$t2Trigger +FD: net/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance$4/f_256767_ net/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance$4/this$0 +FD: net/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance$4/f_256857_ net/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance$4/val$t1Trigger +FD: net/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance$4/f_256907_ net/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance$4/val$t3Trigger +FD: net/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance$4/f_257044_ net/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance$4/val$fTrigger +FD: net/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance$5/f_256722_ net/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance$5/val$t3Trigger +FD: net/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance$5/f_256741_ net/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance$5/this$0 +FD: net/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance$5/f_256807_ net/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance$5/val$t1Trigger +FD: net/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance$5/f_256946_ net/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance$5/val$fTrigger +FD: net/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance$5/f_257031_ net/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance$5/val$t4Trigger +FD: net/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance$5/f_257048_ net/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance$5/val$t2Trigger +FD: net/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$PureMemory$1/f_256758_ net/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$PureMemory$1/val$condition +FD: net/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$TriggerWrapper$1/f_257021_ net/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$TriggerWrapper$1/val$dependentTrigger +FD: net/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor/f_256777_ net/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor/value +FD: net/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor/f_256902_ net/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor/brain +FD: net/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor/f_257027_ net/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor/memoryType +FD: net/minecraft/world/entity/ai/behavior/declarative/MemoryCondition$Absent/f_257038_ net/minecraft/world/entity/ai/behavior/declarative/MemoryCondition$Absent/memory +FD: net/minecraft/world/entity/ai/behavior/declarative/MemoryCondition$Present/f_256930_ net/minecraft/world/entity/ai/behavior/declarative/MemoryCondition$Present/memory +FD: net/minecraft/world/entity/ai/behavior/declarative/MemoryCondition$Registered/f_256883_ net/minecraft/world/entity/ai/behavior/declarative/MemoryCondition$Registered/memory +FD: net/minecraft/world/entity/ai/behavior/warden/Roar/f_217572_ net/minecraft/world/entity/ai/behavior/warden/Roar/TICKS_BEFORE_PLAYING_ROAR_SOUND +FD: net/minecraft/world/entity/ai/behavior/warden/Roar/f_217573_ net/minecraft/world/entity/ai/behavior/warden/Roar/ROAR_ANGER_INCREASE +FD: net/minecraft/world/entity/ai/behavior/warden/Sniffing/f_217644_ net/minecraft/world/entity/ai/behavior/warden/Sniffing/ANGER_FROM_SNIFFING_MAX_DISTANCE_XZ +FD: net/minecraft/world/entity/ai/behavior/warden/Sniffing/f_217645_ net/minecraft/world/entity/ai/behavior/warden/Sniffing/ANGER_FROM_SNIFFING_MAX_DISTANCE_Y +FD: net/minecraft/world/entity/ai/behavior/warden/SonicBoom/f_217675_ net/minecraft/world/entity/ai/behavior/warden/SonicBoom/COOLDOWN +FD: net/minecraft/world/entity/ai/behavior/warden/SonicBoom/f_217676_ net/minecraft/world/entity/ai/behavior/warden/SonicBoom/DISTANCE_XZ +FD: net/minecraft/world/entity/ai/behavior/warden/SonicBoom/f_217677_ net/minecraft/world/entity/ai/behavior/warden/SonicBoom/DISTANCE_Y +FD: net/minecraft/world/entity/ai/behavior/warden/SonicBoom/f_217678_ net/minecraft/world/entity/ai/behavior/warden/SonicBoom/KNOCKBACK_VERTICAL +FD: net/minecraft/world/entity/ai/behavior/warden/SonicBoom/f_217679_ net/minecraft/world/entity/ai/behavior/warden/SonicBoom/KNOCKBACK_HORIZONTAL +FD: net/minecraft/world/entity/ai/behavior/warden/SonicBoom/f_217680_ net/minecraft/world/entity/ai/behavior/warden/SonicBoom/TICKS_BEFORE_PLAYING_SOUND +FD: net/minecraft/world/entity/ai/behavior/warden/SonicBoom/f_217681_ net/minecraft/world/entity/ai/behavior/warden/SonicBoom/DURATION +FD: net/minecraft/world/entity/ai/behavior/warden/TryToSniff/f_217735_ net/minecraft/world/entity/ai/behavior/warden/TryToSniff/SNIFF_COOLDOWN +FD: net/minecraft/world/entity/ai/control/BodyRotationControl/f_148048_ net/minecraft/world/entity/ai/control/BodyRotationControl/HEAD_STABLE_ANGLE +FD: net/minecraft/world/entity/ai/control/BodyRotationControl/f_148049_ net/minecraft/world/entity/ai/control/BodyRotationControl/DELAY_UNTIL_STARTING_TO_FACE_FORWARD +FD: net/minecraft/world/entity/ai/control/BodyRotationControl/f_148050_ net/minecraft/world/entity/ai/control/BodyRotationControl/HOW_LONG_IT_TAKES_TO_FACE_FORWARD +FD: net/minecraft/world/entity/ai/control/BodyRotationControl/f_24875_ net/minecraft/world/entity/ai/control/BodyRotationControl/mob +FD: net/minecraft/world/entity/ai/control/BodyRotationControl/f_24876_ net/minecraft/world/entity/ai/control/BodyRotationControl/headStableTime +FD: net/minecraft/world/entity/ai/control/BodyRotationControl/f_24877_ net/minecraft/world/entity/ai/control/BodyRotationControl/lastStableYHeadRot +FD: net/minecraft/world/entity/ai/control/FlyingMoveControl/f_24890_ net/minecraft/world/entity/ai/control/FlyingMoveControl/maxTurn +FD: net/minecraft/world/entity/ai/control/FlyingMoveControl/f_24891_ net/minecraft/world/entity/ai/control/FlyingMoveControl/hoversInPlace +FD: net/minecraft/world/entity/ai/control/JumpControl/f_24897_ net/minecraft/world/entity/ai/control/JumpControl/jump +FD: net/minecraft/world/entity/ai/control/JumpControl/f_24898_ net/minecraft/world/entity/ai/control/JumpControl/mob +FD: net/minecraft/world/entity/ai/control/LookControl/f_186068_ net/minecraft/world/entity/ai/control/LookControl/lookAtCooldown +FD: net/minecraft/world/entity/ai/control/LookControl/f_24937_ net/minecraft/world/entity/ai/control/LookControl/mob +FD: net/minecraft/world/entity/ai/control/LookControl/f_24938_ net/minecraft/world/entity/ai/control/LookControl/yMaxRotSpeed +FD: net/minecraft/world/entity/ai/control/LookControl/f_24939_ net/minecraft/world/entity/ai/control/LookControl/xMaxRotAngle +FD: net/minecraft/world/entity/ai/control/LookControl/f_24941_ net/minecraft/world/entity/ai/control/LookControl/wantedX +FD: net/minecraft/world/entity/ai/control/LookControl/f_24942_ net/minecraft/world/entity/ai/control/LookControl/wantedY +FD: net/minecraft/world/entity/ai/control/LookControl/f_24943_ net/minecraft/world/entity/ai/control/LookControl/wantedZ +FD: net/minecraft/world/entity/ai/control/MoveControl/f_148053_ net/minecraft/world/entity/ai/control/MoveControl/MIN_SPEED +FD: net/minecraft/world/entity/ai/control/MoveControl/f_148054_ net/minecraft/world/entity/ai/control/MoveControl/MIN_SPEED_SQR +FD: net/minecraft/world/entity/ai/control/MoveControl/f_148055_ net/minecraft/world/entity/ai/control/MoveControl/MAX_TURN +FD: net/minecraft/world/entity/ai/control/MoveControl/f_24974_ net/minecraft/world/entity/ai/control/MoveControl/mob +FD: net/minecraft/world/entity/ai/control/MoveControl/f_24975_ net/minecraft/world/entity/ai/control/MoveControl/wantedX +FD: net/minecraft/world/entity/ai/control/MoveControl/f_24976_ net/minecraft/world/entity/ai/control/MoveControl/wantedY +FD: net/minecraft/world/entity/ai/control/MoveControl/f_24977_ net/minecraft/world/entity/ai/control/MoveControl/wantedZ +FD: net/minecraft/world/entity/ai/control/MoveControl/f_24978_ net/minecraft/world/entity/ai/control/MoveControl/speedModifier +FD: net/minecraft/world/entity/ai/control/MoveControl/f_24979_ net/minecraft/world/entity/ai/control/MoveControl/strafeForwards +FD: net/minecraft/world/entity/ai/control/MoveControl/f_24980_ net/minecraft/world/entity/ai/control/MoveControl/strafeRight +FD: net/minecraft/world/entity/ai/control/MoveControl/f_24981_ net/minecraft/world/entity/ai/control/MoveControl/operation +FD: net/minecraft/world/entity/ai/control/MoveControl$Operation/$VALUES net/minecraft/world/entity/ai/control/MoveControl$Operation/$VALUES +FD: net/minecraft/world/entity/ai/control/MoveControl$Operation/JUMPING net/minecraft/world/entity/ai/control/MoveControl$Operation/JUMPING +FD: net/minecraft/world/entity/ai/control/MoveControl$Operation/MOVE_TO net/minecraft/world/entity/ai/control/MoveControl$Operation/MOVE_TO +FD: net/minecraft/world/entity/ai/control/MoveControl$Operation/STRAFE net/minecraft/world/entity/ai/control/MoveControl$Operation/STRAFE +FD: net/minecraft/world/entity/ai/control/MoveControl$Operation/WAIT net/minecraft/world/entity/ai/control/MoveControl$Operation/WAIT +FD: net/minecraft/world/entity/ai/control/SmoothSwimmingLookControl/f_148057_ net/minecraft/world/entity/ai/control/SmoothSwimmingLookControl/maxYRotFromCenter +FD: net/minecraft/world/entity/ai/control/SmoothSwimmingLookControl/f_148058_ net/minecraft/world/entity/ai/control/SmoothSwimmingLookControl/HEAD_TILT_X +FD: net/minecraft/world/entity/ai/control/SmoothSwimmingLookControl/f_148059_ net/minecraft/world/entity/ai/control/SmoothSwimmingLookControl/HEAD_TILT_Y +FD: net/minecraft/world/entity/ai/control/SmoothSwimmingMoveControl/f_148064_ net/minecraft/world/entity/ai/control/SmoothSwimmingMoveControl/maxTurnX +FD: net/minecraft/world/entity/ai/control/SmoothSwimmingMoveControl/f_148065_ net/minecraft/world/entity/ai/control/SmoothSwimmingMoveControl/maxTurnY +FD: net/minecraft/world/entity/ai/control/SmoothSwimmingMoveControl/f_148066_ net/minecraft/world/entity/ai/control/SmoothSwimmingMoveControl/inWaterSpeedModifier +FD: net/minecraft/world/entity/ai/control/SmoothSwimmingMoveControl/f_148067_ net/minecraft/world/entity/ai/control/SmoothSwimmingMoveControl/outsideWaterSpeedModifier +FD: net/minecraft/world/entity/ai/control/SmoothSwimmingMoveControl/f_148068_ net/minecraft/world/entity/ai/control/SmoothSwimmingMoveControl/applyGravity +FD: net/minecraft/world/entity/ai/control/SmoothSwimmingMoveControl/f_243703_ net/minecraft/world/entity/ai/control/SmoothSwimmingMoveControl/FULL_SPEED_TURN_THRESHOLD +FD: net/minecraft/world/entity/ai/control/SmoothSwimmingMoveControl/f_244312_ net/minecraft/world/entity/ai/control/SmoothSwimmingMoveControl/STOP_TURN_THRESHOLD +FD: net/minecraft/world/entity/ai/goal/AvoidEntityGoal/f_25015_ net/minecraft/world/entity/ai/goal/AvoidEntityGoal/mob +FD: net/minecraft/world/entity/ai/goal/AvoidEntityGoal/f_25016_ net/minecraft/world/entity/ai/goal/AvoidEntityGoal/toAvoid +FD: net/minecraft/world/entity/ai/goal/AvoidEntityGoal/f_25017_ net/minecraft/world/entity/ai/goal/AvoidEntityGoal/maxDist +FD: net/minecraft/world/entity/ai/goal/AvoidEntityGoal/f_25018_ net/minecraft/world/entity/ai/goal/AvoidEntityGoal/path +FD: net/minecraft/world/entity/ai/goal/AvoidEntityGoal/f_25019_ net/minecraft/world/entity/ai/goal/AvoidEntityGoal/pathNav +FD: net/minecraft/world/entity/ai/goal/AvoidEntityGoal/f_25020_ net/minecraft/world/entity/ai/goal/AvoidEntityGoal/avoidClass +FD: net/minecraft/world/entity/ai/goal/AvoidEntityGoal/f_25021_ net/minecraft/world/entity/ai/goal/AvoidEntityGoal/avoidPredicate +FD: net/minecraft/world/entity/ai/goal/AvoidEntityGoal/f_25022_ net/minecraft/world/entity/ai/goal/AvoidEntityGoal/predicateOnAvoidEntity +FD: net/minecraft/world/entity/ai/goal/AvoidEntityGoal/f_25023_ net/minecraft/world/entity/ai/goal/AvoidEntityGoal/walkSpeedModifier +FD: net/minecraft/world/entity/ai/goal/AvoidEntityGoal/f_25024_ net/minecraft/world/entity/ai/goal/AvoidEntityGoal/sprintSpeedModifier +FD: net/minecraft/world/entity/ai/goal/AvoidEntityGoal/f_25025_ net/minecraft/world/entity/ai/goal/AvoidEntityGoal/avoidEntityTargeting +FD: net/minecraft/world/entity/ai/goal/BegGoal/f_25056_ net/minecraft/world/entity/ai/goal/BegGoal/wolf +FD: net/minecraft/world/entity/ai/goal/BegGoal/f_25057_ net/minecraft/world/entity/ai/goal/BegGoal/player +FD: net/minecraft/world/entity/ai/goal/BegGoal/f_25058_ net/minecraft/world/entity/ai/goal/BegGoal/level +FD: net/minecraft/world/entity/ai/goal/BegGoal/f_25059_ net/minecraft/world/entity/ai/goal/BegGoal/lookDistance +FD: net/minecraft/world/entity/ai/goal/BegGoal/f_25060_ net/minecraft/world/entity/ai/goal/BegGoal/lookTime +FD: net/minecraft/world/entity/ai/goal/BegGoal/f_25061_ net/minecraft/world/entity/ai/goal/BegGoal/begTargeting +FD: net/minecraft/world/entity/ai/goal/BoatGoals/$VALUES net/minecraft/world/entity/ai/goal/BoatGoals/$VALUES +FD: net/minecraft/world/entity/ai/goal/BoatGoals/GO_IN_BOAT_DIRECTION net/minecraft/world/entity/ai/goal/BoatGoals/GO_IN_BOAT_DIRECTION +FD: net/minecraft/world/entity/ai/goal/BoatGoals/GO_TO_BOAT net/minecraft/world/entity/ai/goal/BoatGoals/GO_TO_BOAT +FD: net/minecraft/world/entity/ai/goal/BreakDoorGoal/f_148080_ net/minecraft/world/entity/ai/goal/BreakDoorGoal/DEFAULT_DOOR_BREAK_TIME +FD: net/minecraft/world/entity/ai/goal/BreakDoorGoal/f_25082_ net/minecraft/world/entity/ai/goal/BreakDoorGoal/breakTime +FD: net/minecraft/world/entity/ai/goal/BreakDoorGoal/f_25083_ net/minecraft/world/entity/ai/goal/BreakDoorGoal/lastBreakProgress +FD: net/minecraft/world/entity/ai/goal/BreakDoorGoal/f_25084_ net/minecraft/world/entity/ai/goal/BreakDoorGoal/doorBreakTime +FD: net/minecraft/world/entity/ai/goal/BreakDoorGoal/f_25085_ net/minecraft/world/entity/ai/goal/BreakDoorGoal/validDifficulties +FD: net/minecraft/world/entity/ai/goal/BreathAirGoal/f_25101_ net/minecraft/world/entity/ai/goal/BreathAirGoal/mob +FD: net/minecraft/world/entity/ai/goal/BreedGoal/f_25113_ net/minecraft/world/entity/ai/goal/BreedGoal/animal +FD: net/minecraft/world/entity/ai/goal/BreedGoal/f_25114_ net/minecraft/world/entity/ai/goal/BreedGoal/level +FD: net/minecraft/world/entity/ai/goal/BreedGoal/f_25115_ net/minecraft/world/entity/ai/goal/BreedGoal/partner +FD: net/minecraft/world/entity/ai/goal/BreedGoal/f_25116_ net/minecraft/world/entity/ai/goal/BreedGoal/PARTNER_TARGETING +FD: net/minecraft/world/entity/ai/goal/BreedGoal/f_25117_ net/minecraft/world/entity/ai/goal/BreedGoal/partnerClass +FD: net/minecraft/world/entity/ai/goal/BreedGoal/f_25118_ net/minecraft/world/entity/ai/goal/BreedGoal/loveTime +FD: net/minecraft/world/entity/ai/goal/BreedGoal/f_25119_ net/minecraft/world/entity/ai/goal/BreedGoal/speedModifier +FD: net/minecraft/world/entity/ai/goal/CatLieOnBedGoal/f_25133_ net/minecraft/world/entity/ai/goal/CatLieOnBedGoal/cat +FD: net/minecraft/world/entity/ai/goal/CatSitOnBlockGoal/f_25147_ net/minecraft/world/entity/ai/goal/CatSitOnBlockGoal/cat +FD: net/minecraft/world/entity/ai/goal/ClimbOnTopOfPowderSnowGoal/f_204052_ net/minecraft/world/entity/ai/goal/ClimbOnTopOfPowderSnowGoal/mob +FD: net/minecraft/world/entity/ai/goal/ClimbOnTopOfPowderSnowGoal/f_204053_ net/minecraft/world/entity/ai/goal/ClimbOnTopOfPowderSnowGoal/level +FD: net/minecraft/world/entity/ai/goal/DolphinJumpGoal/f_25162_ net/minecraft/world/entity/ai/goal/DolphinJumpGoal/STEPS_TO_CHECK +FD: net/minecraft/world/entity/ai/goal/DolphinJumpGoal/f_25163_ net/minecraft/world/entity/ai/goal/DolphinJumpGoal/dolphin +FD: net/minecraft/world/entity/ai/goal/DolphinJumpGoal/f_25164_ net/minecraft/world/entity/ai/goal/DolphinJumpGoal/interval +FD: net/minecraft/world/entity/ai/goal/DolphinJumpGoal/f_25165_ net/minecraft/world/entity/ai/goal/DolphinJumpGoal/breached +FD: net/minecraft/world/entity/ai/goal/DoorInteractGoal/f_25186_ net/minecraft/world/entity/ai/goal/DoorInteractGoal/passed +FD: net/minecraft/world/entity/ai/goal/DoorInteractGoal/f_25187_ net/minecraft/world/entity/ai/goal/DoorInteractGoal/doorOpenDirX +FD: net/minecraft/world/entity/ai/goal/DoorInteractGoal/f_25188_ net/minecraft/world/entity/ai/goal/DoorInteractGoal/doorOpenDirZ +FD: net/minecraft/world/entity/ai/goal/DoorInteractGoal/f_25189_ net/minecraft/world/entity/ai/goal/DoorInteractGoal/mob +FD: net/minecraft/world/entity/ai/goal/DoorInteractGoal/f_25190_ net/minecraft/world/entity/ai/goal/DoorInteractGoal/doorPos +FD: net/minecraft/world/entity/ai/goal/DoorInteractGoal/f_25191_ net/minecraft/world/entity/ai/goal/DoorInteractGoal/hasDoor +FD: net/minecraft/world/entity/ai/goal/EatBlockGoal/f_148085_ net/minecraft/world/entity/ai/goal/EatBlockGoal/EAT_ANIMATION_TICKS +FD: net/minecraft/world/entity/ai/goal/EatBlockGoal/f_25201_ net/minecraft/world/entity/ai/goal/EatBlockGoal/IS_TALL_GRASS +FD: net/minecraft/world/entity/ai/goal/EatBlockGoal/f_25202_ net/minecraft/world/entity/ai/goal/EatBlockGoal/mob +FD: net/minecraft/world/entity/ai/goal/EatBlockGoal/f_25203_ net/minecraft/world/entity/ai/goal/EatBlockGoal/level +FD: net/minecraft/world/entity/ai/goal/EatBlockGoal/f_25204_ net/minecraft/world/entity/ai/goal/EatBlockGoal/eatAnimationTick +FD: net/minecraft/world/entity/ai/goal/FleeSunGoal/f_25214_ net/minecraft/world/entity/ai/goal/FleeSunGoal/mob +FD: net/minecraft/world/entity/ai/goal/FleeSunGoal/f_25215_ net/minecraft/world/entity/ai/goal/FleeSunGoal/wantedX +FD: net/minecraft/world/entity/ai/goal/FleeSunGoal/f_25216_ net/minecraft/world/entity/ai/goal/FleeSunGoal/wantedY +FD: net/minecraft/world/entity/ai/goal/FleeSunGoal/f_25217_ net/minecraft/world/entity/ai/goal/FleeSunGoal/wantedZ +FD: net/minecraft/world/entity/ai/goal/FleeSunGoal/f_25218_ net/minecraft/world/entity/ai/goal/FleeSunGoal/speedModifier +FD: net/minecraft/world/entity/ai/goal/FleeSunGoal/f_25219_ net/minecraft/world/entity/ai/goal/FleeSunGoal/level +FD: net/minecraft/world/entity/ai/goal/FloatGoal/f_25228_ net/minecraft/world/entity/ai/goal/FloatGoal/mob +FD: net/minecraft/world/entity/ai/goal/FollowBoatGoal/f_25233_ net/minecraft/world/entity/ai/goal/FollowBoatGoal/timeToRecalcPath +FD: net/minecraft/world/entity/ai/goal/FollowBoatGoal/f_25234_ net/minecraft/world/entity/ai/goal/FollowBoatGoal/mob +FD: net/minecraft/world/entity/ai/goal/FollowBoatGoal/f_25235_ net/minecraft/world/entity/ai/goal/FollowBoatGoal/following +FD: net/minecraft/world/entity/ai/goal/FollowBoatGoal/f_25236_ net/minecraft/world/entity/ai/goal/FollowBoatGoal/currentGoal +FD: net/minecraft/world/entity/ai/goal/FollowFlockLeaderGoal/f_148086_ net/minecraft/world/entity/ai/goal/FollowFlockLeaderGoal/INTERVAL_TICKS +FD: net/minecraft/world/entity/ai/goal/FollowFlockLeaderGoal/f_25245_ net/minecraft/world/entity/ai/goal/FollowFlockLeaderGoal/mob +FD: net/minecraft/world/entity/ai/goal/FollowFlockLeaderGoal/f_25246_ net/minecraft/world/entity/ai/goal/FollowFlockLeaderGoal/timeToRecalcPath +FD: net/minecraft/world/entity/ai/goal/FollowFlockLeaderGoal/f_25247_ net/minecraft/world/entity/ai/goal/FollowFlockLeaderGoal/nextStartTick +FD: net/minecraft/world/entity/ai/goal/FollowMobGoal/f_25261_ net/minecraft/world/entity/ai/goal/FollowMobGoal/mob +FD: net/minecraft/world/entity/ai/goal/FollowMobGoal/f_25262_ net/minecraft/world/entity/ai/goal/FollowMobGoal/followPredicate +FD: net/minecraft/world/entity/ai/goal/FollowMobGoal/f_25263_ net/minecraft/world/entity/ai/goal/FollowMobGoal/followingMob +FD: net/minecraft/world/entity/ai/goal/FollowMobGoal/f_25264_ net/minecraft/world/entity/ai/goal/FollowMobGoal/speedModifier +FD: net/minecraft/world/entity/ai/goal/FollowMobGoal/f_25265_ net/minecraft/world/entity/ai/goal/FollowMobGoal/navigation +FD: net/minecraft/world/entity/ai/goal/FollowMobGoal/f_25266_ net/minecraft/world/entity/ai/goal/FollowMobGoal/timeToRecalcPath +FD: net/minecraft/world/entity/ai/goal/FollowMobGoal/f_25267_ net/minecraft/world/entity/ai/goal/FollowMobGoal/stopDistance +FD: net/minecraft/world/entity/ai/goal/FollowMobGoal/f_25268_ net/minecraft/world/entity/ai/goal/FollowMobGoal/oldWaterCost +FD: net/minecraft/world/entity/ai/goal/FollowMobGoal/f_25269_ net/minecraft/world/entity/ai/goal/FollowMobGoal/areaSize +FD: net/minecraft/world/entity/ai/goal/FollowOwnerGoal/f_148087_ net/minecraft/world/entity/ai/goal/FollowOwnerGoal/TELEPORT_WHEN_DISTANCE_IS +FD: net/minecraft/world/entity/ai/goal/FollowOwnerGoal/f_148088_ net/minecraft/world/entity/ai/goal/FollowOwnerGoal/MIN_HORIZONTAL_DISTANCE_FROM_PLAYER_WHEN_TELEPORTING +FD: net/minecraft/world/entity/ai/goal/FollowOwnerGoal/f_148089_ net/minecraft/world/entity/ai/goal/FollowOwnerGoal/MAX_HORIZONTAL_DISTANCE_FROM_PLAYER_WHEN_TELEPORTING +FD: net/minecraft/world/entity/ai/goal/FollowOwnerGoal/f_148090_ net/minecraft/world/entity/ai/goal/FollowOwnerGoal/MAX_VERTICAL_DISTANCE_FROM_PLAYER_WHEN_TELEPORTING +FD: net/minecraft/world/entity/ai/goal/FollowOwnerGoal/f_25283_ net/minecraft/world/entity/ai/goal/FollowOwnerGoal/tamable +FD: net/minecraft/world/entity/ai/goal/FollowOwnerGoal/f_25284_ net/minecraft/world/entity/ai/goal/FollowOwnerGoal/owner +FD: net/minecraft/world/entity/ai/goal/FollowOwnerGoal/f_25285_ net/minecraft/world/entity/ai/goal/FollowOwnerGoal/level +FD: net/minecraft/world/entity/ai/goal/FollowOwnerGoal/f_25286_ net/minecraft/world/entity/ai/goal/FollowOwnerGoal/speedModifier +FD: net/minecraft/world/entity/ai/goal/FollowOwnerGoal/f_25287_ net/minecraft/world/entity/ai/goal/FollowOwnerGoal/navigation +FD: net/minecraft/world/entity/ai/goal/FollowOwnerGoal/f_25288_ net/minecraft/world/entity/ai/goal/FollowOwnerGoal/timeToRecalcPath +FD: net/minecraft/world/entity/ai/goal/FollowOwnerGoal/f_25289_ net/minecraft/world/entity/ai/goal/FollowOwnerGoal/stopDistance +FD: net/minecraft/world/entity/ai/goal/FollowOwnerGoal/f_25290_ net/minecraft/world/entity/ai/goal/FollowOwnerGoal/startDistance +FD: net/minecraft/world/entity/ai/goal/FollowOwnerGoal/f_25291_ net/minecraft/world/entity/ai/goal/FollowOwnerGoal/oldWaterCost +FD: net/minecraft/world/entity/ai/goal/FollowOwnerGoal/f_25292_ net/minecraft/world/entity/ai/goal/FollowOwnerGoal/canFly +FD: net/minecraft/world/entity/ai/goal/FollowParentGoal/f_148091_ net/minecraft/world/entity/ai/goal/FollowParentGoal/HORIZONTAL_SCAN_RANGE +FD: net/minecraft/world/entity/ai/goal/FollowParentGoal/f_148092_ net/minecraft/world/entity/ai/goal/FollowParentGoal/VERTICAL_SCAN_RANGE +FD: net/minecraft/world/entity/ai/goal/FollowParentGoal/f_148093_ net/minecraft/world/entity/ai/goal/FollowParentGoal/DONT_FOLLOW_IF_CLOSER_THAN +FD: net/minecraft/world/entity/ai/goal/FollowParentGoal/f_25314_ net/minecraft/world/entity/ai/goal/FollowParentGoal/animal +FD: net/minecraft/world/entity/ai/goal/FollowParentGoal/f_25315_ net/minecraft/world/entity/ai/goal/FollowParentGoal/parent +FD: net/minecraft/world/entity/ai/goal/FollowParentGoal/f_25316_ net/minecraft/world/entity/ai/goal/FollowParentGoal/speedModifier +FD: net/minecraft/world/entity/ai/goal/FollowParentGoal/f_25317_ net/minecraft/world/entity/ai/goal/FollowParentGoal/timeToRecalcPath +FD: net/minecraft/world/entity/ai/goal/Goal/f_25326_ net/minecraft/world/entity/ai/goal/Goal/flags +FD: net/minecraft/world/entity/ai/goal/Goal$Flag/$VALUES net/minecraft/world/entity/ai/goal/Goal$Flag/$VALUES +FD: net/minecraft/world/entity/ai/goal/Goal$Flag/JUMP net/minecraft/world/entity/ai/goal/Goal$Flag/JUMP +FD: net/minecraft/world/entity/ai/goal/Goal$Flag/LOOK net/minecraft/world/entity/ai/goal/Goal$Flag/LOOK +FD: net/minecraft/world/entity/ai/goal/Goal$Flag/MOVE net/minecraft/world/entity/ai/goal/Goal$Flag/MOVE +FD: net/minecraft/world/entity/ai/goal/Goal$Flag/TARGET net/minecraft/world/entity/ai/goal/Goal$Flag/TARGET +FD: net/minecraft/world/entity/ai/goal/GoalSelector/f_148095_ net/minecraft/world/entity/ai/goal/GoalSelector/tickCount +FD: net/minecraft/world/entity/ai/goal/GoalSelector/f_25342_ net/minecraft/world/entity/ai/goal/GoalSelector/LOGGER +FD: net/minecraft/world/entity/ai/goal/GoalSelector/f_25343_ net/minecraft/world/entity/ai/goal/GoalSelector/NO_GOAL +FD: net/minecraft/world/entity/ai/goal/GoalSelector/f_25344_ net/minecraft/world/entity/ai/goal/GoalSelector/lockedFlags +FD: net/minecraft/world/entity/ai/goal/GoalSelector/f_25345_ net/minecraft/world/entity/ai/goal/GoalSelector/availableGoals +FD: net/minecraft/world/entity/ai/goal/GoalSelector/f_25346_ net/minecraft/world/entity/ai/goal/GoalSelector/profiler +FD: net/minecraft/world/entity/ai/goal/GoalSelector/f_25347_ net/minecraft/world/entity/ai/goal/GoalSelector/disabledFlags +FD: net/minecraft/world/entity/ai/goal/GoalSelector/f_25348_ net/minecraft/world/entity/ai/goal/GoalSelector/newGoalRate +FD: net/minecraft/world/entity/ai/goal/GolemRandomStrollInVillageGoal/f_148106_ net/minecraft/world/entity/ai/goal/GolemRandomStrollInVillageGoal/POI_SECTION_SCAN_RADIUS +FD: net/minecraft/world/entity/ai/goal/GolemRandomStrollInVillageGoal/f_148107_ net/minecraft/world/entity/ai/goal/GolemRandomStrollInVillageGoal/VILLAGER_SCAN_RADIUS +FD: net/minecraft/world/entity/ai/goal/GolemRandomStrollInVillageGoal/f_148108_ net/minecraft/world/entity/ai/goal/GolemRandomStrollInVillageGoal/RANDOM_POS_XY_DISTANCE +FD: net/minecraft/world/entity/ai/goal/GolemRandomStrollInVillageGoal/f_148109_ net/minecraft/world/entity/ai/goal/GolemRandomStrollInVillageGoal/RANDOM_POS_Y_DISTANCE +FD: net/minecraft/world/entity/ai/goal/LandOnOwnersShoulderGoal/f_25479_ net/minecraft/world/entity/ai/goal/LandOnOwnersShoulderGoal/entity +FD: net/minecraft/world/entity/ai/goal/LandOnOwnersShoulderGoal/f_25480_ net/minecraft/world/entity/ai/goal/LandOnOwnersShoulderGoal/owner +FD: net/minecraft/world/entity/ai/goal/LandOnOwnersShoulderGoal/f_25481_ net/minecraft/world/entity/ai/goal/LandOnOwnersShoulderGoal/isSittingOnShoulder +FD: net/minecraft/world/entity/ai/goal/LeapAtTargetGoal/f_25488_ net/minecraft/world/entity/ai/goal/LeapAtTargetGoal/mob +FD: net/minecraft/world/entity/ai/goal/LeapAtTargetGoal/f_25489_ net/minecraft/world/entity/ai/goal/LeapAtTargetGoal/target +FD: net/minecraft/world/entity/ai/goal/LeapAtTargetGoal/f_25490_ net/minecraft/world/entity/ai/goal/LeapAtTargetGoal/yd +FD: net/minecraft/world/entity/ai/goal/LlamaFollowCaravanGoal/f_148114_ net/minecraft/world/entity/ai/goal/LlamaFollowCaravanGoal/CARAVAN_LIMIT +FD: net/minecraft/world/entity/ai/goal/LlamaFollowCaravanGoal/f_25497_ net/minecraft/world/entity/ai/goal/LlamaFollowCaravanGoal/llama +FD: net/minecraft/world/entity/ai/goal/LlamaFollowCaravanGoal/f_25498_ net/minecraft/world/entity/ai/goal/LlamaFollowCaravanGoal/speedModifier +FD: net/minecraft/world/entity/ai/goal/LlamaFollowCaravanGoal/f_25499_ net/minecraft/world/entity/ai/goal/LlamaFollowCaravanGoal/distCheckCounter +FD: net/minecraft/world/entity/ai/goal/LookAtPlayerGoal/f_148115_ net/minecraft/world/entity/ai/goal/LookAtPlayerGoal/DEFAULT_PROBABILITY +FD: net/minecraft/world/entity/ai/goal/LookAtPlayerGoal/f_148116_ net/minecraft/world/entity/ai/goal/LookAtPlayerGoal/onlyHorizontal +FD: net/minecraft/world/entity/ai/goal/LookAtPlayerGoal/f_25512_ net/minecraft/world/entity/ai/goal/LookAtPlayerGoal/mob +FD: net/minecraft/world/entity/ai/goal/LookAtPlayerGoal/f_25513_ net/minecraft/world/entity/ai/goal/LookAtPlayerGoal/lookAt +FD: net/minecraft/world/entity/ai/goal/LookAtPlayerGoal/f_25514_ net/minecraft/world/entity/ai/goal/LookAtPlayerGoal/lookDistance +FD: net/minecraft/world/entity/ai/goal/LookAtPlayerGoal/f_25515_ net/minecraft/world/entity/ai/goal/LookAtPlayerGoal/probability +FD: net/minecraft/world/entity/ai/goal/LookAtPlayerGoal/f_25516_ net/minecraft/world/entity/ai/goal/LookAtPlayerGoal/lookAtType +FD: net/minecraft/world/entity/ai/goal/LookAtPlayerGoal/f_25517_ net/minecraft/world/entity/ai/goal/LookAtPlayerGoal/lookAtContext +FD: net/minecraft/world/entity/ai/goal/LookAtPlayerGoal/f_25518_ net/minecraft/world/entity/ai/goal/LookAtPlayerGoal/lookTime +FD: net/minecraft/world/entity/ai/goal/LookAtTradingPlayerGoal/f_25536_ net/minecraft/world/entity/ai/goal/LookAtTradingPlayerGoal/villager +FD: net/minecraft/world/entity/ai/goal/MeleeAttackGoal/f_148125_ net/minecraft/world/entity/ai/goal/MeleeAttackGoal/COOLDOWN_BETWEEN_CAN_USE_CHECKS +FD: net/minecraft/world/entity/ai/goal/MeleeAttackGoal/f_25540_ net/minecraft/world/entity/ai/goal/MeleeAttackGoal/mob +FD: net/minecraft/world/entity/ai/goal/MeleeAttackGoal/f_25541_ net/minecraft/world/entity/ai/goal/MeleeAttackGoal/speedModifier +FD: net/minecraft/world/entity/ai/goal/MeleeAttackGoal/f_25542_ net/minecraft/world/entity/ai/goal/MeleeAttackGoal/followingTargetEvenIfNotSeen +FD: net/minecraft/world/entity/ai/goal/MeleeAttackGoal/f_25543_ net/minecraft/world/entity/ai/goal/MeleeAttackGoal/path +FD: net/minecraft/world/entity/ai/goal/MeleeAttackGoal/f_25544_ net/minecraft/world/entity/ai/goal/MeleeAttackGoal/pathedTargetX +FD: net/minecraft/world/entity/ai/goal/MeleeAttackGoal/f_25545_ net/minecraft/world/entity/ai/goal/MeleeAttackGoal/pathedTargetY +FD: net/minecraft/world/entity/ai/goal/MeleeAttackGoal/f_25546_ net/minecraft/world/entity/ai/goal/MeleeAttackGoal/pathedTargetZ +FD: net/minecraft/world/entity/ai/goal/MeleeAttackGoal/f_25547_ net/minecraft/world/entity/ai/goal/MeleeAttackGoal/ticksUntilNextPathRecalculation +FD: net/minecraft/world/entity/ai/goal/MeleeAttackGoal/f_25548_ net/minecraft/world/entity/ai/goal/MeleeAttackGoal/ticksUntilNextAttack +FD: net/minecraft/world/entity/ai/goal/MeleeAttackGoal/f_25549_ net/minecraft/world/entity/ai/goal/MeleeAttackGoal/attackInterval +FD: net/minecraft/world/entity/ai/goal/MeleeAttackGoal/f_25550_ net/minecraft/world/entity/ai/goal/MeleeAttackGoal/lastCanUseCheck +FD: net/minecraft/world/entity/ai/goal/MoveBackToVillageGoal/f_148126_ net/minecraft/world/entity/ai/goal/MoveBackToVillageGoal/MAX_XZ_DIST +FD: net/minecraft/world/entity/ai/goal/MoveBackToVillageGoal/f_148127_ net/minecraft/world/entity/ai/goal/MoveBackToVillageGoal/MAX_Y_DIST +FD: net/minecraft/world/entity/ai/goal/MoveThroughVillageGoal/f_25573_ net/minecraft/world/entity/ai/goal/MoveThroughVillageGoal/mob +FD: net/minecraft/world/entity/ai/goal/MoveThroughVillageGoal/f_25574_ net/minecraft/world/entity/ai/goal/MoveThroughVillageGoal/speedModifier +FD: net/minecraft/world/entity/ai/goal/MoveThroughVillageGoal/f_25575_ net/minecraft/world/entity/ai/goal/MoveThroughVillageGoal/path +FD: net/minecraft/world/entity/ai/goal/MoveThroughVillageGoal/f_25576_ net/minecraft/world/entity/ai/goal/MoveThroughVillageGoal/poiPos +FD: net/minecraft/world/entity/ai/goal/MoveThroughVillageGoal/f_25577_ net/minecraft/world/entity/ai/goal/MoveThroughVillageGoal/onlyAtNight +FD: net/minecraft/world/entity/ai/goal/MoveThroughVillageGoal/f_25578_ net/minecraft/world/entity/ai/goal/MoveThroughVillageGoal/visited +FD: net/minecraft/world/entity/ai/goal/MoveThroughVillageGoal/f_25579_ net/minecraft/world/entity/ai/goal/MoveThroughVillageGoal/distanceToPoi +FD: net/minecraft/world/entity/ai/goal/MoveThroughVillageGoal/f_25580_ net/minecraft/world/entity/ai/goal/MoveThroughVillageGoal/canDealWithDoors +FD: net/minecraft/world/entity/ai/goal/MoveToBlockGoal/f_148128_ net/minecraft/world/entity/ai/goal/MoveToBlockGoal/GIVE_UP_TICKS +FD: net/minecraft/world/entity/ai/goal/MoveToBlockGoal/f_148129_ net/minecraft/world/entity/ai/goal/MoveToBlockGoal/STAY_TICKS +FD: net/minecraft/world/entity/ai/goal/MoveToBlockGoal/f_148130_ net/minecraft/world/entity/ai/goal/MoveToBlockGoal/INTERVAL_TICKS +FD: net/minecraft/world/entity/ai/goal/MoveToBlockGoal/f_25598_ net/minecraft/world/entity/ai/goal/MoveToBlockGoal/mob +FD: net/minecraft/world/entity/ai/goal/MoveToBlockGoal/f_25599_ net/minecraft/world/entity/ai/goal/MoveToBlockGoal/speedModifier +FD: net/minecraft/world/entity/ai/goal/MoveToBlockGoal/f_25600_ net/minecraft/world/entity/ai/goal/MoveToBlockGoal/nextStartTick +FD: net/minecraft/world/entity/ai/goal/MoveToBlockGoal/f_25601_ net/minecraft/world/entity/ai/goal/MoveToBlockGoal/tryTicks +FD: net/minecraft/world/entity/ai/goal/MoveToBlockGoal/f_25602_ net/minecraft/world/entity/ai/goal/MoveToBlockGoal/blockPos +FD: net/minecraft/world/entity/ai/goal/MoveToBlockGoal/f_25603_ net/minecraft/world/entity/ai/goal/MoveToBlockGoal/verticalSearchStart +FD: net/minecraft/world/entity/ai/goal/MoveToBlockGoal/f_25604_ net/minecraft/world/entity/ai/goal/MoveToBlockGoal/maxStayTicks +FD: net/minecraft/world/entity/ai/goal/MoveToBlockGoal/f_25605_ net/minecraft/world/entity/ai/goal/MoveToBlockGoal/reachedTarget +FD: net/minecraft/world/entity/ai/goal/MoveToBlockGoal/f_25606_ net/minecraft/world/entity/ai/goal/MoveToBlockGoal/searchRange +FD: net/minecraft/world/entity/ai/goal/MoveToBlockGoal/f_25607_ net/minecraft/world/entity/ai/goal/MoveToBlockGoal/verticalSearchRange +FD: net/minecraft/world/entity/ai/goal/MoveTowardsRestrictionGoal/f_25627_ net/minecraft/world/entity/ai/goal/MoveTowardsRestrictionGoal/mob +FD: net/minecraft/world/entity/ai/goal/MoveTowardsRestrictionGoal/f_25628_ net/minecraft/world/entity/ai/goal/MoveTowardsRestrictionGoal/wantedX +FD: net/minecraft/world/entity/ai/goal/MoveTowardsRestrictionGoal/f_25629_ net/minecraft/world/entity/ai/goal/MoveTowardsRestrictionGoal/wantedY +FD: net/minecraft/world/entity/ai/goal/MoveTowardsRestrictionGoal/f_25630_ net/minecraft/world/entity/ai/goal/MoveTowardsRestrictionGoal/wantedZ +FD: net/minecraft/world/entity/ai/goal/MoveTowardsRestrictionGoal/f_25631_ net/minecraft/world/entity/ai/goal/MoveTowardsRestrictionGoal/speedModifier +FD: net/minecraft/world/entity/ai/goal/MoveTowardsTargetGoal/f_25638_ net/minecraft/world/entity/ai/goal/MoveTowardsTargetGoal/mob +FD: net/minecraft/world/entity/ai/goal/MoveTowardsTargetGoal/f_25639_ net/minecraft/world/entity/ai/goal/MoveTowardsTargetGoal/target +FD: net/minecraft/world/entity/ai/goal/MoveTowardsTargetGoal/f_25640_ net/minecraft/world/entity/ai/goal/MoveTowardsTargetGoal/wantedX +FD: net/minecraft/world/entity/ai/goal/MoveTowardsTargetGoal/f_25641_ net/minecraft/world/entity/ai/goal/MoveTowardsTargetGoal/wantedY +FD: net/minecraft/world/entity/ai/goal/MoveTowardsTargetGoal/f_25642_ net/minecraft/world/entity/ai/goal/MoveTowardsTargetGoal/wantedZ +FD: net/minecraft/world/entity/ai/goal/MoveTowardsTargetGoal/f_25643_ net/minecraft/world/entity/ai/goal/MoveTowardsTargetGoal/speedModifier +FD: net/minecraft/world/entity/ai/goal/MoveTowardsTargetGoal/f_25644_ net/minecraft/world/entity/ai/goal/MoveTowardsTargetGoal/within +FD: net/minecraft/world/entity/ai/goal/OcelotAttackGoal/f_25654_ net/minecraft/world/entity/ai/goal/OcelotAttackGoal/mob +FD: net/minecraft/world/entity/ai/goal/OcelotAttackGoal/f_25655_ net/minecraft/world/entity/ai/goal/OcelotAttackGoal/target +FD: net/minecraft/world/entity/ai/goal/OcelotAttackGoal/f_25656_ net/minecraft/world/entity/ai/goal/OcelotAttackGoal/attackTime +FD: net/minecraft/world/entity/ai/goal/OfferFlowerGoal/f_148131_ net/minecraft/world/entity/ai/goal/OfferFlowerGoal/OFFER_TICKS +FD: net/minecraft/world/entity/ai/goal/OfferFlowerGoal/f_25663_ net/minecraft/world/entity/ai/goal/OfferFlowerGoal/OFFER_TARGER_CONTEXT +FD: net/minecraft/world/entity/ai/goal/OfferFlowerGoal/f_25664_ net/minecraft/world/entity/ai/goal/OfferFlowerGoal/golem +FD: net/minecraft/world/entity/ai/goal/OfferFlowerGoal/f_25665_ net/minecraft/world/entity/ai/goal/OfferFlowerGoal/villager +FD: net/minecraft/world/entity/ai/goal/OfferFlowerGoal/f_25666_ net/minecraft/world/entity/ai/goal/OfferFlowerGoal/tick +FD: net/minecraft/world/entity/ai/goal/OpenDoorGoal/f_25675_ net/minecraft/world/entity/ai/goal/OpenDoorGoal/closeDoor +FD: net/minecraft/world/entity/ai/goal/OpenDoorGoal/f_25676_ net/minecraft/world/entity/ai/goal/OpenDoorGoal/forgetTime +FD: net/minecraft/world/entity/ai/goal/PanicGoal/f_198171_ net/minecraft/world/entity/ai/goal/PanicGoal/WATER_CHECK_DISTANCE_VERTICAL +FD: net/minecraft/world/entity/ai/goal/PanicGoal/f_25684_ net/minecraft/world/entity/ai/goal/PanicGoal/mob +FD: net/minecraft/world/entity/ai/goal/PanicGoal/f_25685_ net/minecraft/world/entity/ai/goal/PanicGoal/speedModifier +FD: net/minecraft/world/entity/ai/goal/PanicGoal/f_25686_ net/minecraft/world/entity/ai/goal/PanicGoal/posX +FD: net/minecraft/world/entity/ai/goal/PanicGoal/f_25687_ net/minecraft/world/entity/ai/goal/PanicGoal/posY +FD: net/minecraft/world/entity/ai/goal/PanicGoal/f_25688_ net/minecraft/world/entity/ai/goal/PanicGoal/posZ +FD: net/minecraft/world/entity/ai/goal/PanicGoal/f_25689_ net/minecraft/world/entity/ai/goal/PanicGoal/isRunning +FD: net/minecraft/world/entity/ai/goal/PathfindToRaidGoal/f_148132_ net/minecraft/world/entity/ai/goal/PathfindToRaidGoal/SPEED_MODIFIER +FD: net/minecraft/world/entity/ai/goal/PathfindToRaidGoal/f_199887_ net/minecraft/world/entity/ai/goal/PathfindToRaidGoal/RECRUITMENT_SEARCH_TICK_DELAY +FD: net/minecraft/world/entity/ai/goal/PathfindToRaidGoal/f_199888_ net/minecraft/world/entity/ai/goal/PathfindToRaidGoal/recruitmentTick +FD: net/minecraft/world/entity/ai/goal/PathfindToRaidGoal/f_25704_ net/minecraft/world/entity/ai/goal/PathfindToRaidGoal/mob +FD: net/minecraft/world/entity/ai/goal/RandomLookAroundGoal/f_25715_ net/minecraft/world/entity/ai/goal/RandomLookAroundGoal/mob +FD: net/minecraft/world/entity/ai/goal/RandomLookAroundGoal/f_25716_ net/minecraft/world/entity/ai/goal/RandomLookAroundGoal/relX +FD: net/minecraft/world/entity/ai/goal/RandomLookAroundGoal/f_25717_ net/minecraft/world/entity/ai/goal/RandomLookAroundGoal/relZ +FD: net/minecraft/world/entity/ai/goal/RandomLookAroundGoal/f_25718_ net/minecraft/world/entity/ai/goal/RandomLookAroundGoal/lookTime +FD: net/minecraft/world/entity/ai/goal/RandomStandGoal/f_244098_ net/minecraft/world/entity/ai/goal/RandomStandGoal/nextStand +FD: net/minecraft/world/entity/ai/goal/RandomStandGoal/f_244645_ net/minecraft/world/entity/ai/goal/RandomStandGoal/horse +FD: net/minecraft/world/entity/ai/goal/RandomStrollGoal/f_148133_ net/minecraft/world/entity/ai/goal/RandomStrollGoal/DEFAULT_INTERVAL +FD: net/minecraft/world/entity/ai/goal/RandomStrollGoal/f_25725_ net/minecraft/world/entity/ai/goal/RandomStrollGoal/mob +FD: net/minecraft/world/entity/ai/goal/RandomStrollGoal/f_25726_ net/minecraft/world/entity/ai/goal/RandomStrollGoal/wantedX +FD: net/minecraft/world/entity/ai/goal/RandomStrollGoal/f_25727_ net/minecraft/world/entity/ai/goal/RandomStrollGoal/wantedY +FD: net/minecraft/world/entity/ai/goal/RandomStrollGoal/f_25728_ net/minecraft/world/entity/ai/goal/RandomStrollGoal/wantedZ +FD: net/minecraft/world/entity/ai/goal/RandomStrollGoal/f_25729_ net/minecraft/world/entity/ai/goal/RandomStrollGoal/speedModifier +FD: net/minecraft/world/entity/ai/goal/RandomStrollGoal/f_25730_ net/minecraft/world/entity/ai/goal/RandomStrollGoal/interval +FD: net/minecraft/world/entity/ai/goal/RandomStrollGoal/f_25731_ net/minecraft/world/entity/ai/goal/RandomStrollGoal/forceTrigger +FD: net/minecraft/world/entity/ai/goal/RandomStrollGoal/f_25732_ net/minecraft/world/entity/ai/goal/RandomStrollGoal/checkNoActionTime +FD: net/minecraft/world/entity/ai/goal/RangedAttackGoal/f_25757_ net/minecraft/world/entity/ai/goal/RangedAttackGoal/mob +FD: net/minecraft/world/entity/ai/goal/RangedAttackGoal/f_25758_ net/minecraft/world/entity/ai/goal/RangedAttackGoal/rangedAttackMob +FD: net/minecraft/world/entity/ai/goal/RangedAttackGoal/f_25759_ net/minecraft/world/entity/ai/goal/RangedAttackGoal/target +FD: net/minecraft/world/entity/ai/goal/RangedAttackGoal/f_25760_ net/minecraft/world/entity/ai/goal/RangedAttackGoal/attackTime +FD: net/minecraft/world/entity/ai/goal/RangedAttackGoal/f_25761_ net/minecraft/world/entity/ai/goal/RangedAttackGoal/speedModifier +FD: net/minecraft/world/entity/ai/goal/RangedAttackGoal/f_25762_ net/minecraft/world/entity/ai/goal/RangedAttackGoal/seeTime +FD: net/minecraft/world/entity/ai/goal/RangedAttackGoal/f_25763_ net/minecraft/world/entity/ai/goal/RangedAttackGoal/attackIntervalMin +FD: net/minecraft/world/entity/ai/goal/RangedAttackGoal/f_25764_ net/minecraft/world/entity/ai/goal/RangedAttackGoal/attackIntervalMax +FD: net/minecraft/world/entity/ai/goal/RangedAttackGoal/f_25765_ net/minecraft/world/entity/ai/goal/RangedAttackGoal/attackRadius +FD: net/minecraft/world/entity/ai/goal/RangedAttackGoal/f_25766_ net/minecraft/world/entity/ai/goal/RangedAttackGoal/attackRadiusSqr +FD: net/minecraft/world/entity/ai/goal/RangedBowAttackGoal/f_25782_ net/minecraft/world/entity/ai/goal/RangedBowAttackGoal/mob +FD: net/minecraft/world/entity/ai/goal/RangedBowAttackGoal/f_25783_ net/minecraft/world/entity/ai/goal/RangedBowAttackGoal/speedModifier +FD: net/minecraft/world/entity/ai/goal/RangedBowAttackGoal/f_25784_ net/minecraft/world/entity/ai/goal/RangedBowAttackGoal/attackIntervalMin +FD: net/minecraft/world/entity/ai/goal/RangedBowAttackGoal/f_25785_ net/minecraft/world/entity/ai/goal/RangedBowAttackGoal/attackRadiusSqr +FD: net/minecraft/world/entity/ai/goal/RangedBowAttackGoal/f_25786_ net/minecraft/world/entity/ai/goal/RangedBowAttackGoal/attackTime +FD: net/minecraft/world/entity/ai/goal/RangedBowAttackGoal/f_25787_ net/minecraft/world/entity/ai/goal/RangedBowAttackGoal/seeTime +FD: net/minecraft/world/entity/ai/goal/RangedBowAttackGoal/f_25788_ net/minecraft/world/entity/ai/goal/RangedBowAttackGoal/strafingClockwise +FD: net/minecraft/world/entity/ai/goal/RangedBowAttackGoal/f_25789_ net/minecraft/world/entity/ai/goal/RangedBowAttackGoal/strafingBackwards +FD: net/minecraft/world/entity/ai/goal/RangedBowAttackGoal/f_25790_ net/minecraft/world/entity/ai/goal/RangedBowAttackGoal/strafingTime +FD: net/minecraft/world/entity/ai/goal/RangedCrossbowAttackGoal/f_25804_ net/minecraft/world/entity/ai/goal/RangedCrossbowAttackGoal/PATHFINDING_DELAY_RANGE +FD: net/minecraft/world/entity/ai/goal/RangedCrossbowAttackGoal/f_25805_ net/minecraft/world/entity/ai/goal/RangedCrossbowAttackGoal/mob +FD: net/minecraft/world/entity/ai/goal/RangedCrossbowAttackGoal/f_25806_ net/minecraft/world/entity/ai/goal/RangedCrossbowAttackGoal/crossbowState +FD: net/minecraft/world/entity/ai/goal/RangedCrossbowAttackGoal/f_25807_ net/minecraft/world/entity/ai/goal/RangedCrossbowAttackGoal/speedModifier +FD: net/minecraft/world/entity/ai/goal/RangedCrossbowAttackGoal/f_25808_ net/minecraft/world/entity/ai/goal/RangedCrossbowAttackGoal/attackRadiusSqr +FD: net/minecraft/world/entity/ai/goal/RangedCrossbowAttackGoal/f_25809_ net/minecraft/world/entity/ai/goal/RangedCrossbowAttackGoal/seeTime +FD: net/minecraft/world/entity/ai/goal/RangedCrossbowAttackGoal/f_25810_ net/minecraft/world/entity/ai/goal/RangedCrossbowAttackGoal/attackDelay +FD: net/minecraft/world/entity/ai/goal/RangedCrossbowAttackGoal/f_25811_ net/minecraft/world/entity/ai/goal/RangedCrossbowAttackGoal/updatePathDelay +FD: net/minecraft/world/entity/ai/goal/RangedCrossbowAttackGoal$CrossbowState/$VALUES net/minecraft/world/entity/ai/goal/RangedCrossbowAttackGoal$CrossbowState/$VALUES +FD: net/minecraft/world/entity/ai/goal/RangedCrossbowAttackGoal$CrossbowState/CHARGED net/minecraft/world/entity/ai/goal/RangedCrossbowAttackGoal$CrossbowState/CHARGED +FD: net/minecraft/world/entity/ai/goal/RangedCrossbowAttackGoal$CrossbowState/CHARGING net/minecraft/world/entity/ai/goal/RangedCrossbowAttackGoal$CrossbowState/CHARGING +FD: net/minecraft/world/entity/ai/goal/RangedCrossbowAttackGoal$CrossbowState/READY_TO_ATTACK net/minecraft/world/entity/ai/goal/RangedCrossbowAttackGoal$CrossbowState/READY_TO_ATTACK +FD: net/minecraft/world/entity/ai/goal/RangedCrossbowAttackGoal$CrossbowState/UNCHARGED net/minecraft/world/entity/ai/goal/RangedCrossbowAttackGoal$CrossbowState/UNCHARGED +FD: net/minecraft/world/entity/ai/goal/RemoveBlockGoal/f_148135_ net/minecraft/world/entity/ai/goal/RemoveBlockGoal/WAIT_AFTER_BLOCK_FOUND +FD: net/minecraft/world/entity/ai/goal/RemoveBlockGoal/f_25836_ net/minecraft/world/entity/ai/goal/RemoveBlockGoal/blockToRemove +FD: net/minecraft/world/entity/ai/goal/RemoveBlockGoal/f_25837_ net/minecraft/world/entity/ai/goal/RemoveBlockGoal/removerMob +FD: net/minecraft/world/entity/ai/goal/RemoveBlockGoal/f_25838_ net/minecraft/world/entity/ai/goal/RemoveBlockGoal/ticksSinceReachedGoal +FD: net/minecraft/world/entity/ai/goal/RestrictSunGoal/f_25859_ net/minecraft/world/entity/ai/goal/RestrictSunGoal/mob +FD: net/minecraft/world/entity/ai/goal/RunAroundLikeCrazyGoal/f_25884_ net/minecraft/world/entity/ai/goal/RunAroundLikeCrazyGoal/horse +FD: net/minecraft/world/entity/ai/goal/RunAroundLikeCrazyGoal/f_25885_ net/minecraft/world/entity/ai/goal/RunAroundLikeCrazyGoal/speedModifier +FD: net/minecraft/world/entity/ai/goal/RunAroundLikeCrazyGoal/f_25886_ net/minecraft/world/entity/ai/goal/RunAroundLikeCrazyGoal/posX +FD: net/minecraft/world/entity/ai/goal/RunAroundLikeCrazyGoal/f_25887_ net/minecraft/world/entity/ai/goal/RunAroundLikeCrazyGoal/posY +FD: net/minecraft/world/entity/ai/goal/RunAroundLikeCrazyGoal/f_25888_ net/minecraft/world/entity/ai/goal/RunAroundLikeCrazyGoal/posZ +FD: net/minecraft/world/entity/ai/goal/SitWhenOrderedToGoal/f_25896_ net/minecraft/world/entity/ai/goal/SitWhenOrderedToGoal/mob +FD: net/minecraft/world/entity/ai/goal/StrollThroughVillageGoal/f_148136_ net/minecraft/world/entity/ai/goal/StrollThroughVillageGoal/DISTANCE_THRESHOLD +FD: net/minecraft/world/entity/ai/goal/StrollThroughVillageGoal/f_25903_ net/minecraft/world/entity/ai/goal/StrollThroughVillageGoal/mob +FD: net/minecraft/world/entity/ai/goal/StrollThroughVillageGoal/f_25904_ net/minecraft/world/entity/ai/goal/StrollThroughVillageGoal/interval +FD: net/minecraft/world/entity/ai/goal/StrollThroughVillageGoal/f_25905_ net/minecraft/world/entity/ai/goal/StrollThroughVillageGoal/wantedPos +FD: net/minecraft/world/entity/ai/goal/SwellGoal/f_25916_ net/minecraft/world/entity/ai/goal/SwellGoal/creeper +FD: net/minecraft/world/entity/ai/goal/SwellGoal/f_25917_ net/minecraft/world/entity/ai/goal/SwellGoal/target +FD: net/minecraft/world/entity/ai/goal/TemptGoal/f_148137_ net/minecraft/world/entity/ai/goal/TemptGoal/targetingConditions +FD: net/minecraft/world/entity/ai/goal/TemptGoal/f_25924_ net/minecraft/world/entity/ai/goal/TemptGoal/mob +FD: net/minecraft/world/entity/ai/goal/TemptGoal/f_25925_ net/minecraft/world/entity/ai/goal/TemptGoal/player +FD: net/minecraft/world/entity/ai/goal/TemptGoal/f_25926_ net/minecraft/world/entity/ai/goal/TemptGoal/TEMP_TARGETING +FD: net/minecraft/world/entity/ai/goal/TemptGoal/f_25927_ net/minecraft/world/entity/ai/goal/TemptGoal/speedModifier +FD: net/minecraft/world/entity/ai/goal/TemptGoal/f_25928_ net/minecraft/world/entity/ai/goal/TemptGoal/px +FD: net/minecraft/world/entity/ai/goal/TemptGoal/f_25929_ net/minecraft/world/entity/ai/goal/TemptGoal/py +FD: net/minecraft/world/entity/ai/goal/TemptGoal/f_25930_ net/minecraft/world/entity/ai/goal/TemptGoal/pz +FD: net/minecraft/world/entity/ai/goal/TemptGoal/f_25931_ net/minecraft/world/entity/ai/goal/TemptGoal/pRotX +FD: net/minecraft/world/entity/ai/goal/TemptGoal/f_25932_ net/minecraft/world/entity/ai/goal/TemptGoal/pRotY +FD: net/minecraft/world/entity/ai/goal/TemptGoal/f_25933_ net/minecraft/world/entity/ai/goal/TemptGoal/calmDown +FD: net/minecraft/world/entity/ai/goal/TemptGoal/f_25934_ net/minecraft/world/entity/ai/goal/TemptGoal/isRunning +FD: net/minecraft/world/entity/ai/goal/TemptGoal/f_25935_ net/minecraft/world/entity/ai/goal/TemptGoal/items +FD: net/minecraft/world/entity/ai/goal/TemptGoal/f_25936_ net/minecraft/world/entity/ai/goal/TemptGoal/canScare +FD: net/minecraft/world/entity/ai/goal/TradeWithPlayerGoal/f_25956_ net/minecraft/world/entity/ai/goal/TradeWithPlayerGoal/mob +FD: net/minecraft/world/entity/ai/goal/TryFindWaterGoal/f_25962_ net/minecraft/world/entity/ai/goal/TryFindWaterGoal/mob +FD: net/minecraft/world/entity/ai/goal/UseItemGoal/f_25967_ net/minecraft/world/entity/ai/goal/UseItemGoal/mob +FD: net/minecraft/world/entity/ai/goal/UseItemGoal/f_25968_ net/minecraft/world/entity/ai/goal/UseItemGoal/item +FD: net/minecraft/world/entity/ai/goal/UseItemGoal/f_25969_ net/minecraft/world/entity/ai/goal/UseItemGoal/canUseSelector +FD: net/minecraft/world/entity/ai/goal/UseItemGoal/f_25970_ net/minecraft/world/entity/ai/goal/UseItemGoal/finishUsingSound +FD: net/minecraft/world/entity/ai/goal/WaterAvoidingRandomStrollGoal/f_148149_ net/minecraft/world/entity/ai/goal/WaterAvoidingRandomStrollGoal/PROBABILITY +FD: net/minecraft/world/entity/ai/goal/WaterAvoidingRandomStrollGoal/f_25985_ net/minecraft/world/entity/ai/goal/WaterAvoidingRandomStrollGoal/probability +FD: net/minecraft/world/entity/ai/goal/WrappedGoal/f_25994_ net/minecraft/world/entity/ai/goal/WrappedGoal/goal +FD: net/minecraft/world/entity/ai/goal/WrappedGoal/f_25995_ net/minecraft/world/entity/ai/goal/WrappedGoal/priority +FD: net/minecraft/world/entity/ai/goal/WrappedGoal/f_25996_ net/minecraft/world/entity/ai/goal/WrappedGoal/isRunning +FD: net/minecraft/world/entity/ai/goal/ZombieAttackGoal/f_26016_ net/minecraft/world/entity/ai/goal/ZombieAttackGoal/zombie +FD: net/minecraft/world/entity/ai/goal/ZombieAttackGoal/f_26017_ net/minecraft/world/entity/ai/goal/ZombieAttackGoal/raiseArmTicks +FD: net/minecraft/world/entity/ai/goal/target/DefendVillageTargetGoal/f_26025_ net/minecraft/world/entity/ai/goal/target/DefendVillageTargetGoal/golem +FD: net/minecraft/world/entity/ai/goal/target/DefendVillageTargetGoal/f_26026_ net/minecraft/world/entity/ai/goal/target/DefendVillageTargetGoal/potentialTarget +FD: net/minecraft/world/entity/ai/goal/target/DefendVillageTargetGoal/f_26027_ net/minecraft/world/entity/ai/goal/target/DefendVillageTargetGoal/attackTargeting +FD: net/minecraft/world/entity/ai/goal/target/HurtByTargetGoal/f_148150_ net/minecraft/world/entity/ai/goal/target/HurtByTargetGoal/ALERT_RANGE_Y +FD: net/minecraft/world/entity/ai/goal/target/HurtByTargetGoal/f_26032_ net/minecraft/world/entity/ai/goal/target/HurtByTargetGoal/HURT_BY_TARGETING +FD: net/minecraft/world/entity/ai/goal/target/HurtByTargetGoal/f_26033_ net/minecraft/world/entity/ai/goal/target/HurtByTargetGoal/alertSameType +FD: net/minecraft/world/entity/ai/goal/target/HurtByTargetGoal/f_26034_ net/minecraft/world/entity/ai/goal/target/HurtByTargetGoal/timestamp +FD: net/minecraft/world/entity/ai/goal/target/HurtByTargetGoal/f_26035_ net/minecraft/world/entity/ai/goal/target/HurtByTargetGoal/toIgnoreDamage +FD: net/minecraft/world/entity/ai/goal/target/HurtByTargetGoal/f_26036_ net/minecraft/world/entity/ai/goal/target/HurtByTargetGoal/toIgnoreAlert +FD: net/minecraft/world/entity/ai/goal/target/NearestAttackableTargetGoal/f_199889_ net/minecraft/world/entity/ai/goal/target/NearestAttackableTargetGoal/DEFAULT_RANDOM_INTERVAL +FD: net/minecraft/world/entity/ai/goal/target/NearestAttackableTargetGoal/f_26048_ net/minecraft/world/entity/ai/goal/target/NearestAttackableTargetGoal/targetType +FD: net/minecraft/world/entity/ai/goal/target/NearestAttackableTargetGoal/f_26049_ net/minecraft/world/entity/ai/goal/target/NearestAttackableTargetGoal/randomInterval +FD: net/minecraft/world/entity/ai/goal/target/NearestAttackableTargetGoal/f_26050_ net/minecraft/world/entity/ai/goal/target/NearestAttackableTargetGoal/target +FD: net/minecraft/world/entity/ai/goal/target/NearestAttackableTargetGoal/f_26051_ net/minecraft/world/entity/ai/goal/target/NearestAttackableTargetGoal/targetConditions +FD: net/minecraft/world/entity/ai/goal/target/NearestAttackableWitchTargetGoal/f_26074_ net/minecraft/world/entity/ai/goal/target/NearestAttackableWitchTargetGoal/canAttack +FD: net/minecraft/world/entity/ai/goal/target/NearestHealableRaiderTargetGoal/f_148153_ net/minecraft/world/entity/ai/goal/target/NearestHealableRaiderTargetGoal/DEFAULT_COOLDOWN +FD: net/minecraft/world/entity/ai/goal/target/NearestHealableRaiderTargetGoal/f_26085_ net/minecraft/world/entity/ai/goal/target/NearestHealableRaiderTargetGoal/cooldown +FD: net/minecraft/world/entity/ai/goal/target/NonTameRandomTargetGoal/f_26095_ net/minecraft/world/entity/ai/goal/target/NonTameRandomTargetGoal/tamableMob +FD: net/minecraft/world/entity/ai/goal/target/OwnerHurtByTargetGoal/f_26103_ net/minecraft/world/entity/ai/goal/target/OwnerHurtByTargetGoal/tameAnimal +FD: net/minecraft/world/entity/ai/goal/target/OwnerHurtByTargetGoal/f_26104_ net/minecraft/world/entity/ai/goal/target/OwnerHurtByTargetGoal/ownerLastHurtBy +FD: net/minecraft/world/entity/ai/goal/target/OwnerHurtByTargetGoal/f_26105_ net/minecraft/world/entity/ai/goal/target/OwnerHurtByTargetGoal/timestamp +FD: net/minecraft/world/entity/ai/goal/target/OwnerHurtTargetGoal/f_26110_ net/minecraft/world/entity/ai/goal/target/OwnerHurtTargetGoal/tameAnimal +FD: net/minecraft/world/entity/ai/goal/target/OwnerHurtTargetGoal/f_26111_ net/minecraft/world/entity/ai/goal/target/OwnerHurtTargetGoal/ownerLastHurt +FD: net/minecraft/world/entity/ai/goal/target/OwnerHurtTargetGoal/f_26112_ net/minecraft/world/entity/ai/goal/target/OwnerHurtTargetGoal/timestamp +FD: net/minecraft/world/entity/ai/goal/target/ResetUniversalAngerTargetGoal/f_148154_ net/minecraft/world/entity/ai/goal/target/ResetUniversalAngerTargetGoal/ALERT_RANGE_Y +FD: net/minecraft/world/entity/ai/goal/target/ResetUniversalAngerTargetGoal/f_26117_ net/minecraft/world/entity/ai/goal/target/ResetUniversalAngerTargetGoal/mob +FD: net/minecraft/world/entity/ai/goal/target/ResetUniversalAngerTargetGoal/f_26118_ net/minecraft/world/entity/ai/goal/target/ResetUniversalAngerTargetGoal/alertOthersOfSameType +FD: net/minecraft/world/entity/ai/goal/target/ResetUniversalAngerTargetGoal/f_26119_ net/minecraft/world/entity/ai/goal/target/ResetUniversalAngerTargetGoal/lastHurtByPlayerTimestamp +FD: net/minecraft/world/entity/ai/goal/target/TargetGoal/f_148155_ net/minecraft/world/entity/ai/goal/target/TargetGoal/EMPTY_REACH_CACHE +FD: net/minecraft/world/entity/ai/goal/target/TargetGoal/f_148156_ net/minecraft/world/entity/ai/goal/target/TargetGoal/CAN_REACH_CACHE +FD: net/minecraft/world/entity/ai/goal/target/TargetGoal/f_148157_ net/minecraft/world/entity/ai/goal/target/TargetGoal/CANT_REACH_CACHE +FD: net/minecraft/world/entity/ai/goal/target/TargetGoal/f_26131_ net/minecraft/world/entity/ai/goal/target/TargetGoal/mustReach +FD: net/minecraft/world/entity/ai/goal/target/TargetGoal/f_26132_ net/minecraft/world/entity/ai/goal/target/TargetGoal/reachCache +FD: net/minecraft/world/entity/ai/goal/target/TargetGoal/f_26133_ net/minecraft/world/entity/ai/goal/target/TargetGoal/reachCacheTime +FD: net/minecraft/world/entity/ai/goal/target/TargetGoal/f_26134_ net/minecraft/world/entity/ai/goal/target/TargetGoal/unseenTicks +FD: net/minecraft/world/entity/ai/goal/target/TargetGoal/f_26135_ net/minecraft/world/entity/ai/goal/target/TargetGoal/mob +FD: net/minecraft/world/entity/ai/goal/target/TargetGoal/f_26136_ net/minecraft/world/entity/ai/goal/target/TargetGoal/mustSee +FD: net/minecraft/world/entity/ai/goal/target/TargetGoal/f_26137_ net/minecraft/world/entity/ai/goal/target/TargetGoal/targetMob +FD: net/minecraft/world/entity/ai/goal/target/TargetGoal/f_26138_ net/minecraft/world/entity/ai/goal/target/TargetGoal/unseenMemoryTicks +FD: net/minecraft/world/entity/ai/gossip/GossipContainer/f_148158_ net/minecraft/world/entity/ai/gossip/GossipContainer/DISCARD_THRESHOLD +FD: net/minecraft/world/entity/ai/gossip/GossipContainer/f_26156_ net/minecraft/world/entity/ai/gossip/GossipContainer/gossips +FD: net/minecraft/world/entity/ai/gossip/GossipContainer/f_262760_ net/minecraft/world/entity/ai/gossip/GossipContainer/LOGGER +FD: net/minecraft/world/entity/ai/gossip/GossipContainer$EntityGossips/f_26204_ net/minecraft/world/entity/ai/gossip/GossipContainer$EntityGossips/entries +FD: net/minecraft/world/entity/ai/gossip/GossipContainer$GossipEntry/f_26228_ net/minecraft/world/entity/ai/gossip/GossipContainer$GossipEntry/target +FD: net/minecraft/world/entity/ai/gossip/GossipContainer$GossipEntry/f_26229_ net/minecraft/world/entity/ai/gossip/GossipContainer$GossipEntry/type +FD: net/minecraft/world/entity/ai/gossip/GossipContainer$GossipEntry/f_26230_ net/minecraft/world/entity/ai/gossip/GossipContainer$GossipEntry/value +FD: net/minecraft/world/entity/ai/gossip/GossipContainer$GossipEntry/f_262739_ net/minecraft/world/entity/ai/gossip/GossipContainer$GossipEntry/CODEC +FD: net/minecraft/world/entity/ai/gossip/GossipContainer$GossipEntry/f_262751_ net/minecraft/world/entity/ai/gossip/GossipContainer$GossipEntry/LIST_CODEC +FD: net/minecraft/world/entity/ai/gossip/GossipType/$VALUES net/minecraft/world/entity/ai/gossip/GossipType/$VALUES +FD: net/minecraft/world/entity/ai/gossip/GossipType/MAJOR_NEGATIVE net/minecraft/world/entity/ai/gossip/GossipType/MAJOR_NEGATIVE +FD: net/minecraft/world/entity/ai/gossip/GossipType/MAJOR_POSITIVE net/minecraft/world/entity/ai/gossip/GossipType/MAJOR_POSITIVE +FD: net/minecraft/world/entity/ai/gossip/GossipType/MINOR_NEGATIVE net/minecraft/world/entity/ai/gossip/GossipType/MINOR_NEGATIVE +FD: net/minecraft/world/entity/ai/gossip/GossipType/MINOR_POSITIVE net/minecraft/world/entity/ai/gossip/GossipType/MINOR_POSITIVE +FD: net/minecraft/world/entity/ai/gossip/GossipType/TRADING net/minecraft/world/entity/ai/gossip/GossipType/TRADING +FD: net/minecraft/world/entity/ai/gossip/GossipType/f_148182_ net/minecraft/world/entity/ai/gossip/GossipType/REPUTATION_CHANGE_PER_EVENT +FD: net/minecraft/world/entity/ai/gossip/GossipType/f_148183_ net/minecraft/world/entity/ai/gossip/GossipType/REPUTATION_CHANGE_PER_EVERLASTING_MEMORY +FD: net/minecraft/world/entity/ai/gossip/GossipType/f_148184_ net/minecraft/world/entity/ai/gossip/GossipType/REPUTATION_CHANGE_PER_TRADE +FD: net/minecraft/world/entity/ai/gossip/GossipType/f_262726_ net/minecraft/world/entity/ai/gossip/GossipType/CODEC +FD: net/minecraft/world/entity/ai/gossip/GossipType/f_26273_ net/minecraft/world/entity/ai/gossip/GossipType/id +FD: net/minecraft/world/entity/ai/gossip/GossipType/f_26274_ net/minecraft/world/entity/ai/gossip/GossipType/weight +FD: net/minecraft/world/entity/ai/gossip/GossipType/f_26275_ net/minecraft/world/entity/ai/gossip/GossipType/max +FD: net/minecraft/world/entity/ai/gossip/GossipType/f_26276_ net/minecraft/world/entity/ai/gossip/GossipType/decayPerDay +FD: net/minecraft/world/entity/ai/gossip/GossipType/f_26277_ net/minecraft/world/entity/ai/gossip/GossipType/decayPerTransfer +FD: net/minecraft/world/entity/ai/memory/ExpirableValue/f_26296_ net/minecraft/world/entity/ai/memory/ExpirableValue/value +FD: net/minecraft/world/entity/ai/memory/ExpirableValue/f_26297_ net/minecraft/world/entity/ai/memory/ExpirableValue/timeToLive +FD: net/minecraft/world/entity/ai/memory/MemoryModuleType/f_148194_ net/minecraft/world/entity/ai/memory/MemoryModuleType/NEAREST_ATTACKABLE +FD: net/minecraft/world/entity/ai/memory/MemoryModuleType/f_148195_ net/minecraft/world/entity/ai/memory/MemoryModuleType/PLAY_DEAD_TICKS +FD: net/minecraft/world/entity/ai/memory/MemoryModuleType/f_148196_ net/minecraft/world/entity/ai/memory/MemoryModuleType/TEMPTING_PLAYER +FD: net/minecraft/world/entity/ai/memory/MemoryModuleType/f_148197_ net/minecraft/world/entity/ai/memory/MemoryModuleType/TEMPTATION_COOLDOWN_TICKS +FD: net/minecraft/world/entity/ai/memory/MemoryModuleType/f_148198_ net/minecraft/world/entity/ai/memory/MemoryModuleType/IS_TEMPTED +FD: net/minecraft/world/entity/ai/memory/MemoryModuleType/f_148199_ net/minecraft/world/entity/ai/memory/MemoryModuleType/LONG_JUMP_COOLDOWN_TICKS +FD: net/minecraft/world/entity/ai/memory/MemoryModuleType/f_148200_ net/minecraft/world/entity/ai/memory/MemoryModuleType/LONG_JUMP_MID_JUMP +FD: net/minecraft/world/entity/ai/memory/MemoryModuleType/f_148201_ net/minecraft/world/entity/ai/memory/MemoryModuleType/HAS_HUNTING_COOLDOWN +FD: net/minecraft/world/entity/ai/memory/MemoryModuleType/f_148202_ net/minecraft/world/entity/ai/memory/MemoryModuleType/RAM_COOLDOWN_TICKS +FD: net/minecraft/world/entity/ai/memory/MemoryModuleType/f_148203_ net/minecraft/world/entity/ai/memory/MemoryModuleType/RAM_TARGET +FD: net/minecraft/world/entity/ai/memory/MemoryModuleType/f_148204_ net/minecraft/world/entity/ai/memory/MemoryModuleType/NEAREST_LIVING_ENTITIES +FD: net/minecraft/world/entity/ai/memory/MemoryModuleType/f_148205_ net/minecraft/world/entity/ai/memory/MemoryModuleType/NEAREST_VISIBLE_LIVING_ENTITIES +FD: net/minecraft/world/entity/ai/memory/MemoryModuleType/f_148206_ net/minecraft/world/entity/ai/memory/MemoryModuleType/NEAREST_VISIBLE_ATTACKABLE_PLAYER +FD: net/minecraft/world/entity/ai/memory/MemoryModuleType/f_217766_ net/minecraft/world/entity/ai/memory/MemoryModuleType/IS_IN_WATER +FD: net/minecraft/world/entity/ai/memory/MemoryModuleType/f_217767_ net/minecraft/world/entity/ai/memory/MemoryModuleType/IS_PREGNANT +FD: net/minecraft/world/entity/ai/memory/MemoryModuleType/f_217768_ net/minecraft/world/entity/ai/memory/MemoryModuleType/IS_PANICKING +FD: net/minecraft/world/entity/ai/memory/MemoryModuleType/f_217769_ net/minecraft/world/entity/ai/memory/MemoryModuleType/ROAR_SOUND_DELAY +FD: net/minecraft/world/entity/ai/memory/MemoryModuleType/f_217770_ net/minecraft/world/entity/ai/memory/MemoryModuleType/DIG_COOLDOWN +FD: net/minecraft/world/entity/ai/memory/MemoryModuleType/f_217771_ net/minecraft/world/entity/ai/memory/MemoryModuleType/ROAR_SOUND_COOLDOWN +FD: net/minecraft/world/entity/ai/memory/MemoryModuleType/f_217772_ net/minecraft/world/entity/ai/memory/MemoryModuleType/SNIFF_COOLDOWN +FD: net/minecraft/world/entity/ai/memory/MemoryModuleType/f_217773_ net/minecraft/world/entity/ai/memory/MemoryModuleType/TOUCH_COOLDOWN +FD: net/minecraft/world/entity/ai/memory/MemoryModuleType/f_217774_ net/minecraft/world/entity/ai/memory/MemoryModuleType/VIBRATION_COOLDOWN +FD: net/minecraft/world/entity/ai/memory/MemoryModuleType/f_217775_ net/minecraft/world/entity/ai/memory/MemoryModuleType/SONIC_BOOM_COOLDOWN +FD: net/minecraft/world/entity/ai/memory/MemoryModuleType/f_217776_ net/minecraft/world/entity/ai/memory/MemoryModuleType/SONIC_BOOM_SOUND_COOLDOWN +FD: net/minecraft/world/entity/ai/memory/MemoryModuleType/f_217777_ net/minecraft/world/entity/ai/memory/MemoryModuleType/SONIC_BOOM_SOUND_DELAY +FD: net/minecraft/world/entity/ai/memory/MemoryModuleType/f_217778_ net/minecraft/world/entity/ai/memory/MemoryModuleType/LIKED_PLAYER +FD: net/minecraft/world/entity/ai/memory/MemoryModuleType/f_217779_ net/minecraft/world/entity/ai/memory/MemoryModuleType/LIKED_NOTEBLOCK_POSITION +FD: net/minecraft/world/entity/ai/memory/MemoryModuleType/f_217780_ net/minecraft/world/entity/ai/memory/MemoryModuleType/LIKED_NOTEBLOCK_COOLDOWN_TICKS +FD: net/minecraft/world/entity/ai/memory/MemoryModuleType/f_217781_ net/minecraft/world/entity/ai/memory/MemoryModuleType/ITEM_PICKUP_COOLDOWN_TICKS +FD: net/minecraft/world/entity/ai/memory/MemoryModuleType/f_217782_ net/minecraft/world/entity/ai/memory/MemoryModuleType/ROAR_TARGET +FD: net/minecraft/world/entity/ai/memory/MemoryModuleType/f_217783_ net/minecraft/world/entity/ai/memory/MemoryModuleType/DISTURBANCE_LOCATION +FD: net/minecraft/world/entity/ai/memory/MemoryModuleType/f_217784_ net/minecraft/world/entity/ai/memory/MemoryModuleType/RECENT_PROJECTILE +FD: net/minecraft/world/entity/ai/memory/MemoryModuleType/f_217785_ net/minecraft/world/entity/ai/memory/MemoryModuleType/IS_SNIFFING +FD: net/minecraft/world/entity/ai/memory/MemoryModuleType/f_217786_ net/minecraft/world/entity/ai/memory/MemoryModuleType/IS_EMERGING +FD: net/minecraft/world/entity/ai/memory/MemoryModuleType/f_238182_ net/minecraft/world/entity/ai/memory/MemoryModuleType/UNREACHABLE_TONGUE_TARGETS +FD: net/minecraft/world/entity/ai/memory/MemoryModuleType/f_244205_ net/minecraft/world/entity/ai/memory/MemoryModuleType/GAZE_COOLDOWN_TICKS +FD: net/minecraft/world/entity/ai/memory/MemoryModuleType/f_26323_ net/minecraft/world/entity/ai/memory/MemoryModuleType/NEAREST_HOSTILE +FD: net/minecraft/world/entity/ai/memory/MemoryModuleType/f_26324_ net/minecraft/world/entity/ai/memory/MemoryModuleType/HIDING_PLACE +FD: net/minecraft/world/entity/ai/memory/MemoryModuleType/f_26325_ net/minecraft/world/entity/ai/memory/MemoryModuleType/HEARD_BELL_TIME +FD: net/minecraft/world/entity/ai/memory/MemoryModuleType/f_26326_ net/minecraft/world/entity/ai/memory/MemoryModuleType/CANT_REACH_WALK_TARGET_SINCE +FD: net/minecraft/world/entity/ai/memory/MemoryModuleType/f_26327_ net/minecraft/world/entity/ai/memory/MemoryModuleType/GOLEM_DETECTED_RECENTLY +FD: net/minecraft/world/entity/ai/memory/MemoryModuleType/f_26328_ net/minecraft/world/entity/ai/memory/MemoryModuleType/LAST_SLEPT +FD: net/minecraft/world/entity/ai/memory/MemoryModuleType/f_26329_ net/minecraft/world/entity/ai/memory/MemoryModuleType/LAST_WOKEN +FD: net/minecraft/world/entity/ai/memory/MemoryModuleType/f_26330_ net/minecraft/world/entity/ai/memory/MemoryModuleType/LAST_WORKED_AT_POI +FD: net/minecraft/world/entity/ai/memory/MemoryModuleType/f_26331_ net/minecraft/world/entity/ai/memory/MemoryModuleType/NEAREST_VISIBLE_ADULT +FD: net/minecraft/world/entity/ai/memory/MemoryModuleType/f_26332_ net/minecraft/world/entity/ai/memory/MemoryModuleType/NEAREST_VISIBLE_WANTED_ITEM +FD: net/minecraft/world/entity/ai/memory/MemoryModuleType/f_26333_ net/minecraft/world/entity/ai/memory/MemoryModuleType/NEAREST_VISIBLE_NEMESIS +FD: net/minecraft/world/entity/ai/memory/MemoryModuleType/f_26334_ net/minecraft/world/entity/ai/memory/MemoryModuleType/ANGRY_AT +FD: net/minecraft/world/entity/ai/memory/MemoryModuleType/f_26335_ net/minecraft/world/entity/ai/memory/MemoryModuleType/UNIVERSAL_ANGER +FD: net/minecraft/world/entity/ai/memory/MemoryModuleType/f_26336_ net/minecraft/world/entity/ai/memory/MemoryModuleType/ADMIRING_ITEM +FD: net/minecraft/world/entity/ai/memory/MemoryModuleType/f_26337_ net/minecraft/world/entity/ai/memory/MemoryModuleType/TIME_TRYING_TO_REACH_ADMIRE_ITEM +FD: net/minecraft/world/entity/ai/memory/MemoryModuleType/f_26338_ net/minecraft/world/entity/ai/memory/MemoryModuleType/DISABLE_WALK_TO_ADMIRE_ITEM +FD: net/minecraft/world/entity/ai/memory/MemoryModuleType/f_26339_ net/minecraft/world/entity/ai/memory/MemoryModuleType/ADMIRING_DISABLED +FD: net/minecraft/world/entity/ai/memory/MemoryModuleType/f_26340_ net/minecraft/world/entity/ai/memory/MemoryModuleType/HUNTED_RECENTLY +FD: net/minecraft/world/entity/ai/memory/MemoryModuleType/f_26341_ net/minecraft/world/entity/ai/memory/MemoryModuleType/CELEBRATE_LOCATION +FD: net/minecraft/world/entity/ai/memory/MemoryModuleType/f_26342_ net/minecraft/world/entity/ai/memory/MemoryModuleType/DANCING +FD: net/minecraft/world/entity/ai/memory/MemoryModuleType/f_26343_ net/minecraft/world/entity/ai/memory/MemoryModuleType/NEAREST_VISIBLE_HUNTABLE_HOGLIN +FD: net/minecraft/world/entity/ai/memory/MemoryModuleType/f_26344_ net/minecraft/world/entity/ai/memory/MemoryModuleType/NEAREST_VISIBLE_BABY_HOGLIN +FD: net/minecraft/world/entity/ai/memory/MemoryModuleType/f_26345_ net/minecraft/world/entity/ai/memory/MemoryModuleType/NEAREST_TARGETABLE_PLAYER_NOT_WEARING_GOLD +FD: net/minecraft/world/entity/ai/memory/MemoryModuleType/f_26346_ net/minecraft/world/entity/ai/memory/MemoryModuleType/NEARBY_ADULT_PIGLINS +FD: net/minecraft/world/entity/ai/memory/MemoryModuleType/f_26347_ net/minecraft/world/entity/ai/memory/MemoryModuleType/NEAREST_VISIBLE_ADULT_PIGLINS +FD: net/minecraft/world/entity/ai/memory/MemoryModuleType/f_26348_ net/minecraft/world/entity/ai/memory/MemoryModuleType/NEAREST_VISIBLE_ADULT_HOGLINS +FD: net/minecraft/world/entity/ai/memory/MemoryModuleType/f_26349_ net/minecraft/world/entity/ai/memory/MemoryModuleType/DUMMY +FD: net/minecraft/world/entity/ai/memory/MemoryModuleType/f_26350_ net/minecraft/world/entity/ai/memory/MemoryModuleType/NEAREST_VISIBLE_ADULT_PIGLIN +FD: net/minecraft/world/entity/ai/memory/MemoryModuleType/f_26351_ net/minecraft/world/entity/ai/memory/MemoryModuleType/NEAREST_VISIBLE_ZOMBIFIED +FD: net/minecraft/world/entity/ai/memory/MemoryModuleType/f_26352_ net/minecraft/world/entity/ai/memory/MemoryModuleType/VISIBLE_ADULT_PIGLIN_COUNT +FD: net/minecraft/world/entity/ai/memory/MemoryModuleType/f_26353_ net/minecraft/world/entity/ai/memory/MemoryModuleType/VISIBLE_ADULT_HOGLIN_COUNT +FD: net/minecraft/world/entity/ai/memory/MemoryModuleType/f_26354_ net/minecraft/world/entity/ai/memory/MemoryModuleType/NEAREST_PLAYER_HOLDING_WANTED_ITEM +FD: net/minecraft/world/entity/ai/memory/MemoryModuleType/f_26355_ net/minecraft/world/entity/ai/memory/MemoryModuleType/ATE_RECENTLY +FD: net/minecraft/world/entity/ai/memory/MemoryModuleType/f_26356_ net/minecraft/world/entity/ai/memory/MemoryModuleType/NEAREST_REPELLENT +FD: net/minecraft/world/entity/ai/memory/MemoryModuleType/f_26357_ net/minecraft/world/entity/ai/memory/MemoryModuleType/PACIFIED +FD: net/minecraft/world/entity/ai/memory/MemoryModuleType/f_26358_ net/minecraft/world/entity/ai/memory/MemoryModuleType/codec +FD: net/minecraft/world/entity/ai/memory/MemoryModuleType/f_26359_ net/minecraft/world/entity/ai/memory/MemoryModuleType/HOME +FD: net/minecraft/world/entity/ai/memory/MemoryModuleType/f_26360_ net/minecraft/world/entity/ai/memory/MemoryModuleType/JOB_SITE +FD: net/minecraft/world/entity/ai/memory/MemoryModuleType/f_26361_ net/minecraft/world/entity/ai/memory/MemoryModuleType/POTENTIAL_JOB_SITE +FD: net/minecraft/world/entity/ai/memory/MemoryModuleType/f_26362_ net/minecraft/world/entity/ai/memory/MemoryModuleType/MEETING_POINT +FD: net/minecraft/world/entity/ai/memory/MemoryModuleType/f_26363_ net/minecraft/world/entity/ai/memory/MemoryModuleType/SECONDARY_JOB_SITE +FD: net/minecraft/world/entity/ai/memory/MemoryModuleType/f_26366_ net/minecraft/world/entity/ai/memory/MemoryModuleType/VISIBLE_VILLAGER_BABIES +FD: net/minecraft/world/entity/ai/memory/MemoryModuleType/f_26367_ net/minecraft/world/entity/ai/memory/MemoryModuleType/NEAREST_PLAYERS +FD: net/minecraft/world/entity/ai/memory/MemoryModuleType/f_26368_ net/minecraft/world/entity/ai/memory/MemoryModuleType/NEAREST_VISIBLE_PLAYER +FD: net/minecraft/world/entity/ai/memory/MemoryModuleType/f_26370_ net/minecraft/world/entity/ai/memory/MemoryModuleType/WALK_TARGET +FD: net/minecraft/world/entity/ai/memory/MemoryModuleType/f_26371_ net/minecraft/world/entity/ai/memory/MemoryModuleType/LOOK_TARGET +FD: net/minecraft/world/entity/ai/memory/MemoryModuleType/f_26372_ net/minecraft/world/entity/ai/memory/MemoryModuleType/ATTACK_TARGET +FD: net/minecraft/world/entity/ai/memory/MemoryModuleType/f_26373_ net/minecraft/world/entity/ai/memory/MemoryModuleType/ATTACK_COOLING_DOWN +FD: net/minecraft/world/entity/ai/memory/MemoryModuleType/f_26374_ net/minecraft/world/entity/ai/memory/MemoryModuleType/INTERACTION_TARGET +FD: net/minecraft/world/entity/ai/memory/MemoryModuleType/f_26375_ net/minecraft/world/entity/ai/memory/MemoryModuleType/BREED_TARGET +FD: net/minecraft/world/entity/ai/memory/MemoryModuleType/f_26376_ net/minecraft/world/entity/ai/memory/MemoryModuleType/RIDE_TARGET +FD: net/minecraft/world/entity/ai/memory/MemoryModuleType/f_26377_ net/minecraft/world/entity/ai/memory/MemoryModuleType/PATH +FD: net/minecraft/world/entity/ai/memory/MemoryModuleType/f_26378_ net/minecraft/world/entity/ai/memory/MemoryModuleType/INTERACTABLE_DOORS +FD: net/minecraft/world/entity/ai/memory/MemoryModuleType/f_26379_ net/minecraft/world/entity/ai/memory/MemoryModuleType/DOORS_TO_CLOSE +FD: net/minecraft/world/entity/ai/memory/MemoryModuleType/f_26380_ net/minecraft/world/entity/ai/memory/MemoryModuleType/NEAREST_BED +FD: net/minecraft/world/entity/ai/memory/MemoryModuleType/f_26381_ net/minecraft/world/entity/ai/memory/MemoryModuleType/HURT_BY +FD: net/minecraft/world/entity/ai/memory/MemoryModuleType/f_26382_ net/minecraft/world/entity/ai/memory/MemoryModuleType/HURT_BY_ENTITY +FD: net/minecraft/world/entity/ai/memory/MemoryModuleType/f_26383_ net/minecraft/world/entity/ai/memory/MemoryModuleType/AVOID_TARGET +FD: net/minecraft/world/entity/ai/memory/MemoryModuleType/f_271087_ net/minecraft/world/entity/ai/memory/MemoryModuleType/SNIFFER_HAPPY +FD: net/minecraft/world/entity/ai/memory/MemoryModuleType/f_271134_ net/minecraft/world/entity/ai/memory/MemoryModuleType/SNIFFER_SNIFFING_TARGET +FD: net/minecraft/world/entity/ai/memory/MemoryModuleType/f_271280_ net/minecraft/world/entity/ai/memory/MemoryModuleType/SNIFFER_DIGGING +FD: net/minecraft/world/entity/ai/memory/MemoryModuleType/f_271415_ net/minecraft/world/entity/ai/memory/MemoryModuleType/SNIFFER_EXPLORED_POSITIONS +FD: net/minecraft/world/entity/ai/memory/MemoryStatus/$VALUES net/minecraft/world/entity/ai/memory/MemoryStatus/$VALUES +FD: net/minecraft/world/entity/ai/memory/MemoryStatus/REGISTERED net/minecraft/world/entity/ai/memory/MemoryStatus/REGISTERED +FD: net/minecraft/world/entity/ai/memory/MemoryStatus/VALUE_ABSENT net/minecraft/world/entity/ai/memory/MemoryStatus/VALUE_ABSENT +FD: net/minecraft/world/entity/ai/memory/MemoryStatus/VALUE_PRESENT net/minecraft/world/entity/ai/memory/MemoryStatus/VALUE_PRESENT +FD: net/minecraft/world/entity/ai/memory/NearestVisibleLivingEntities/f_186098_ net/minecraft/world/entity/ai/memory/NearestVisibleLivingEntities/EMPTY +FD: net/minecraft/world/entity/ai/memory/NearestVisibleLivingEntities/f_186099_ net/minecraft/world/entity/ai/memory/NearestVisibleLivingEntities/nearbyEntities +FD: net/minecraft/world/entity/ai/memory/NearestVisibleLivingEntities/f_186100_ net/minecraft/world/entity/ai/memory/NearestVisibleLivingEntities/lineOfSightTest +FD: net/minecraft/world/entity/ai/memory/WalkTarget/f_26405_ net/minecraft/world/entity/ai/memory/WalkTarget/target +FD: net/minecraft/world/entity/ai/memory/WalkTarget/f_26406_ net/minecraft/world/entity/ai/memory/WalkTarget/speedModifier +FD: net/minecraft/world/entity/ai/memory/WalkTarget/f_26407_ net/minecraft/world/entity/ai/memory/WalkTarget/closeEnoughDist +FD: net/minecraft/world/entity/ai/navigation/GroundPathNavigation/f_26446_ net/minecraft/world/entity/ai/navigation/GroundPathNavigation/avoidSun +FD: net/minecraft/world/entity/ai/navigation/PathNavigation/f_148217_ net/minecraft/world/entity/ai/navigation/PathNavigation/MAX_TIME_RECOMPUTE +FD: net/minecraft/world/entity/ai/navigation/PathNavigation/f_262273_ net/minecraft/world/entity/ai/navigation/PathNavigation/STUCK_CHECK_INTERVAL +FD: net/minecraft/world/entity/ai/navigation/PathNavigation/f_262292_ net/minecraft/world/entity/ai/navigation/PathNavigation/STUCK_THRESHOLD_DISTANCE_FACTOR +FD: net/minecraft/world/entity/ai/navigation/PathNavigation/f_26494_ net/minecraft/world/entity/ai/navigation/PathNavigation/mob +FD: net/minecraft/world/entity/ai/navigation/PathNavigation/f_26495_ net/minecraft/world/entity/ai/navigation/PathNavigation/level +FD: net/minecraft/world/entity/ai/navigation/PathNavigation/f_26496_ net/minecraft/world/entity/ai/navigation/PathNavigation/path +FD: net/minecraft/world/entity/ai/navigation/PathNavigation/f_26497_ net/minecraft/world/entity/ai/navigation/PathNavigation/speedModifier +FD: net/minecraft/world/entity/ai/navigation/PathNavigation/f_26498_ net/minecraft/world/entity/ai/navigation/PathNavigation/tick +FD: net/minecraft/world/entity/ai/navigation/PathNavigation/f_26499_ net/minecraft/world/entity/ai/navigation/PathNavigation/lastStuckCheck +FD: net/minecraft/world/entity/ai/navigation/PathNavigation/f_26500_ net/minecraft/world/entity/ai/navigation/PathNavigation/lastStuckCheckPos +FD: net/minecraft/world/entity/ai/navigation/PathNavigation/f_26501_ net/minecraft/world/entity/ai/navigation/PathNavigation/timeoutCachedNode +FD: net/minecraft/world/entity/ai/navigation/PathNavigation/f_26502_ net/minecraft/world/entity/ai/navigation/PathNavigation/timeoutTimer +FD: net/minecraft/world/entity/ai/navigation/PathNavigation/f_26503_ net/minecraft/world/entity/ai/navigation/PathNavigation/lastTimeoutCheck +FD: net/minecraft/world/entity/ai/navigation/PathNavigation/f_26504_ net/minecraft/world/entity/ai/navigation/PathNavigation/timeoutLimit +FD: net/minecraft/world/entity/ai/navigation/PathNavigation/f_26505_ net/minecraft/world/entity/ai/navigation/PathNavigation/maxDistanceToWaypoint +FD: net/minecraft/world/entity/ai/navigation/PathNavigation/f_26506_ net/minecraft/world/entity/ai/navigation/PathNavigation/hasDelayedRecomputation +FD: net/minecraft/world/entity/ai/navigation/PathNavigation/f_26507_ net/minecraft/world/entity/ai/navigation/PathNavigation/timeLastRecompute +FD: net/minecraft/world/entity/ai/navigation/PathNavigation/f_26508_ net/minecraft/world/entity/ai/navigation/PathNavigation/nodeEvaluator +FD: net/minecraft/world/entity/ai/navigation/PathNavigation/f_26509_ net/minecraft/world/entity/ai/navigation/PathNavigation/targetPos +FD: net/minecraft/world/entity/ai/navigation/PathNavigation/f_26510_ net/minecraft/world/entity/ai/navigation/PathNavigation/reachRange +FD: net/minecraft/world/entity/ai/navigation/PathNavigation/f_26511_ net/minecraft/world/entity/ai/navigation/PathNavigation/maxVisitedNodesMultiplier +FD: net/minecraft/world/entity/ai/navigation/PathNavigation/f_26512_ net/minecraft/world/entity/ai/navigation/PathNavigation/pathFinder +FD: net/minecraft/world/entity/ai/navigation/PathNavigation/f_26513_ net/minecraft/world/entity/ai/navigation/PathNavigation/isStuck +FD: net/minecraft/world/entity/ai/navigation/WallClimberNavigation/f_26578_ net/minecraft/world/entity/ai/navigation/WallClimberNavigation/pathToPosition +FD: net/minecraft/world/entity/ai/navigation/WaterBoundPathNavigation/f_26592_ net/minecraft/world/entity/ai/navigation/WaterBoundPathNavigation/allowBreaching +FD: net/minecraft/world/entity/ai/sensing/AxolotlAttackablesSensor/f_148263_ net/minecraft/world/entity/ai/sensing/AxolotlAttackablesSensor/TARGET_DETECTION_DISTANCE +FD: net/minecraft/world/entity/ai/sensing/FrogAttackablesSensor/f_217807_ net/minecraft/world/entity/ai/sensing/FrogAttackablesSensor/TARGET_DETECTION_DISTANCE +FD: net/minecraft/world/entity/ai/sensing/GolemSensor/f_148277_ net/minecraft/world/entity/ai/sensing/GolemSensor/GOLEM_SCAN_RATE +FD: net/minecraft/world/entity/ai/sensing/GolemSensor/f_148278_ net/minecraft/world/entity/ai/sensing/GolemSensor/MEMORY_TIME_TO_LIVE +FD: net/minecraft/world/entity/ai/sensing/NearestBedSensor/f_148279_ net/minecraft/world/entity/ai/sensing/NearestBedSensor/CACHE_TIMEOUT +FD: net/minecraft/world/entity/ai/sensing/NearestBedSensor/f_148280_ net/minecraft/world/entity/ai/sensing/NearestBedSensor/BATCH_SIZE +FD: net/minecraft/world/entity/ai/sensing/NearestBedSensor/f_148281_ net/minecraft/world/entity/ai/sensing/NearestBedSensor/RATE +FD: net/minecraft/world/entity/ai/sensing/NearestBedSensor/f_26676_ net/minecraft/world/entity/ai/sensing/NearestBedSensor/batchCache +FD: net/minecraft/world/entity/ai/sensing/NearestBedSensor/f_26677_ net/minecraft/world/entity/ai/sensing/NearestBedSensor/triedCount +FD: net/minecraft/world/entity/ai/sensing/NearestBedSensor/f_26678_ net/minecraft/world/entity/ai/sensing/NearestBedSensor/lastUpdate +FD: net/minecraft/world/entity/ai/sensing/NearestItemSensor/f_148282_ net/minecraft/world/entity/ai/sensing/NearestItemSensor/MAX_DISTANCE_TO_WANTED_ITEM +FD: net/minecraft/world/entity/ai/sensing/NearestItemSensor/f_148283_ net/minecraft/world/entity/ai/sensing/NearestItemSensor/XZ_RANGE +FD: net/minecraft/world/entity/ai/sensing/NearestItemSensor/f_148284_ net/minecraft/world/entity/ai/sensing/NearestItemSensor/Y_RANGE +FD: net/minecraft/world/entity/ai/sensing/SecondaryPoiSensor/f_148305_ net/minecraft/world/entity/ai/sensing/SecondaryPoiSensor/SCAN_RATE +FD: net/minecraft/world/entity/ai/sensing/Sensing/f_26784_ net/minecraft/world/entity/ai/sensing/Sensing/mob +FD: net/minecraft/world/entity/ai/sensing/Sensing/f_26785_ net/minecraft/world/entity/ai/sensing/Sensing/seen +FD: net/minecraft/world/entity/ai/sensing/Sensing/f_26786_ net/minecraft/world/entity/ai/sensing/Sensing/unseen +FD: net/minecraft/world/entity/ai/sensing/Sensor/f_148308_ net/minecraft/world/entity/ai/sensing/Sensor/TARGETING_RANGE +FD: net/minecraft/world/entity/ai/sensing/Sensor/f_148309_ net/minecraft/world/entity/ai/sensing/Sensor/DEFAULT_SCAN_RATE +FD: net/minecraft/world/entity/ai/sensing/Sensor/f_148310_ net/minecraft/world/entity/ai/sensing/Sensor/ATTACK_TARGET_CONDITIONS +FD: net/minecraft/world/entity/ai/sensing/Sensor/f_148311_ net/minecraft/world/entity/ai/sensing/Sensor/ATTACK_TARGET_CONDITIONS_IGNORE_INVISIBILITY_TESTING +FD: net/minecraft/world/entity/ai/sensing/Sensor/f_182375_ net/minecraft/world/entity/ai/sensing/Sensor/ATTACK_TARGET_CONDITIONS_IGNORE_LINE_OF_SIGHT +FD: net/minecraft/world/entity/ai/sensing/Sensor/f_182376_ net/minecraft/world/entity/ai/sensing/Sensor/ATTACK_TARGET_CONDITIONS_IGNORE_INVISIBILITY_AND_LINE_OF_SIGHT +FD: net/minecraft/world/entity/ai/sensing/Sensor/f_26792_ net/minecraft/world/entity/ai/sensing/Sensor/RANDOM +FD: net/minecraft/world/entity/ai/sensing/Sensor/f_26793_ net/minecraft/world/entity/ai/sensing/Sensor/TARGET_CONDITIONS +FD: net/minecraft/world/entity/ai/sensing/Sensor/f_26794_ net/minecraft/world/entity/ai/sensing/Sensor/TARGET_CONDITIONS_IGNORE_INVISIBILITY_TESTING +FD: net/minecraft/world/entity/ai/sensing/Sensor/f_26795_ net/minecraft/world/entity/ai/sensing/Sensor/scanRate +FD: net/minecraft/world/entity/ai/sensing/Sensor/f_26796_ net/minecraft/world/entity/ai/sensing/Sensor/timeToTick +FD: net/minecraft/world/entity/ai/sensing/SensorType/f_148315_ net/minecraft/world/entity/ai/sensing/SensorType/AXOLOTL_ATTACKABLES +FD: net/minecraft/world/entity/ai/sensing/SensorType/f_148316_ net/minecraft/world/entity/ai/sensing/SensorType/AXOLOTL_TEMPTATIONS +FD: net/minecraft/world/entity/ai/sensing/SensorType/f_148317_ net/minecraft/world/entity/ai/sensing/SensorType/GOAT_TEMPTATIONS +FD: net/minecraft/world/entity/ai/sensing/SensorType/f_217822_ net/minecraft/world/entity/ai/sensing/SensorType/FROG_TEMPTATIONS +FD: net/minecraft/world/entity/ai/sensing/SensorType/f_217823_ net/minecraft/world/entity/ai/sensing/SensorType/FROG_ATTACKABLES +FD: net/minecraft/world/entity/ai/sensing/SensorType/f_217824_ net/minecraft/world/entity/ai/sensing/SensorType/IS_IN_WATER +FD: net/minecraft/world/entity/ai/sensing/SensorType/f_217825_ net/minecraft/world/entity/ai/sensing/SensorType/WARDEN_ENTITY_SENSOR +FD: net/minecraft/world/entity/ai/sensing/SensorType/f_243995_ net/minecraft/world/entity/ai/sensing/SensorType/CAMEL_TEMPTATIONS +FD: net/minecraft/world/entity/ai/sensing/SensorType/f_26809_ net/minecraft/world/entity/ai/sensing/SensorType/DUMMY +FD: net/minecraft/world/entity/ai/sensing/SensorType/f_26810_ net/minecraft/world/entity/ai/sensing/SensorType/NEAREST_ITEMS +FD: net/minecraft/world/entity/ai/sensing/SensorType/f_26811_ net/minecraft/world/entity/ai/sensing/SensorType/NEAREST_LIVING_ENTITIES +FD: net/minecraft/world/entity/ai/sensing/SensorType/f_26812_ net/minecraft/world/entity/ai/sensing/SensorType/NEAREST_PLAYERS +FD: net/minecraft/world/entity/ai/sensing/SensorType/f_26813_ net/minecraft/world/entity/ai/sensing/SensorType/NEAREST_BED +FD: net/minecraft/world/entity/ai/sensing/SensorType/f_26814_ net/minecraft/world/entity/ai/sensing/SensorType/HURT_BY +FD: net/minecraft/world/entity/ai/sensing/SensorType/f_26815_ net/minecraft/world/entity/ai/sensing/SensorType/VILLAGER_HOSTILES +FD: net/minecraft/world/entity/ai/sensing/SensorType/f_26816_ net/minecraft/world/entity/ai/sensing/SensorType/VILLAGER_BABIES +FD: net/minecraft/world/entity/ai/sensing/SensorType/f_26817_ net/minecraft/world/entity/ai/sensing/SensorType/SECONDARY_POIS +FD: net/minecraft/world/entity/ai/sensing/SensorType/f_26818_ net/minecraft/world/entity/ai/sensing/SensorType/GOLEM_DETECTED +FD: net/minecraft/world/entity/ai/sensing/SensorType/f_26819_ net/minecraft/world/entity/ai/sensing/SensorType/PIGLIN_SPECIFIC_SENSOR +FD: net/minecraft/world/entity/ai/sensing/SensorType/f_26820_ net/minecraft/world/entity/ai/sensing/SensorType/PIGLIN_BRUTE_SPECIFIC_SENSOR +FD: net/minecraft/world/entity/ai/sensing/SensorType/f_26821_ net/minecraft/world/entity/ai/sensing/SensorType/HOGLIN_SPECIFIC_SENSOR +FD: net/minecraft/world/entity/ai/sensing/SensorType/f_26822_ net/minecraft/world/entity/ai/sensing/SensorType/NEAREST_ADULT +FD: net/minecraft/world/entity/ai/sensing/SensorType/f_26823_ net/minecraft/world/entity/ai/sensing/SensorType/factory +FD: net/minecraft/world/entity/ai/sensing/SensorType/f_278390_ net/minecraft/world/entity/ai/sensing/SensorType/SNIFFER_TEMPTATIONS +FD: net/minecraft/world/entity/ai/sensing/TemptingSensor/f_148320_ net/minecraft/world/entity/ai/sensing/TemptingSensor/TEMPTATION_RANGE +FD: net/minecraft/world/entity/ai/sensing/TemptingSensor/f_148321_ net/minecraft/world/entity/ai/sensing/TemptingSensor/TEMPT_TARGETING +FD: net/minecraft/world/entity/ai/sensing/TemptingSensor/f_148322_ net/minecraft/world/entity/ai/sensing/TemptingSensor/temptations +FD: net/minecraft/world/entity/ai/sensing/VillagerHostilesSensor/f_26842_ net/minecraft/world/entity/ai/sensing/VillagerHostilesSensor/ACCEPTABLE_DISTANCE_FROM_HOSTILES +FD: net/minecraft/world/entity/ai/targeting/TargetingConditions/f_148347_ net/minecraft/world/entity/ai/targeting/TargetingConditions/MIN_VISIBILITY_DISTANCE_FOR_INVISIBLE_TARGET +FD: net/minecraft/world/entity/ai/targeting/TargetingConditions/f_148348_ net/minecraft/world/entity/ai/targeting/TargetingConditions/isCombat +FD: net/minecraft/world/entity/ai/targeting/TargetingConditions/f_148349_ net/minecraft/world/entity/ai/targeting/TargetingConditions/checkLineOfSight +FD: net/minecraft/world/entity/ai/targeting/TargetingConditions/f_26872_ net/minecraft/world/entity/ai/targeting/TargetingConditions/DEFAULT +FD: net/minecraft/world/entity/ai/targeting/TargetingConditions/f_26873_ net/minecraft/world/entity/ai/targeting/TargetingConditions/range +FD: net/minecraft/world/entity/ai/targeting/TargetingConditions/f_26878_ net/minecraft/world/entity/ai/targeting/TargetingConditions/testInvisible +FD: net/minecraft/world/entity/ai/targeting/TargetingConditions/f_26879_ net/minecraft/world/entity/ai/targeting/TargetingConditions/selector +FD: net/minecraft/world/entity/ai/util/RandomPos/f_148535_ net/minecraft/world/entity/ai/util/RandomPos/RANDOM_POS_ATTEMPTS +FD: net/minecraft/world/entity/ai/village/ReputationEventType/f_26985_ net/minecraft/world/entity/ai/village/ReputationEventType/ZOMBIE_VILLAGER_CURED +FD: net/minecraft/world/entity/ai/village/ReputationEventType/f_26986_ net/minecraft/world/entity/ai/village/ReputationEventType/GOLEM_KILLED +FD: net/minecraft/world/entity/ai/village/ReputationEventType/f_26987_ net/minecraft/world/entity/ai/village/ReputationEventType/VILLAGER_HURT +FD: net/minecraft/world/entity/ai/village/ReputationEventType/f_26988_ net/minecraft/world/entity/ai/village/ReputationEventType/VILLAGER_KILLED +FD: net/minecraft/world/entity/ai/village/ReputationEventType/f_26989_ net/minecraft/world/entity/ai/village/ReputationEventType/TRADE +FD: net/minecraft/world/entity/ai/village/ReputationEventType$1/f_26993_ net/minecraft/world/entity/ai/village/ReputationEventType$1/val$name +FD: net/minecraft/world/entity/ai/village/VillageSiege/f_26997_ net/minecraft/world/entity/ai/village/VillageSiege/LOGGER +FD: net/minecraft/world/entity/ai/village/VillageSiege/f_26998_ net/minecraft/world/entity/ai/village/VillageSiege/hasSetupSiege +FD: net/minecraft/world/entity/ai/village/VillageSiege/f_26999_ net/minecraft/world/entity/ai/village/VillageSiege/siegeState +FD: net/minecraft/world/entity/ai/village/VillageSiege/f_27000_ net/minecraft/world/entity/ai/village/VillageSiege/zombiesToSpawn +FD: net/minecraft/world/entity/ai/village/VillageSiege/f_27001_ net/minecraft/world/entity/ai/village/VillageSiege/nextSpawnTime +FD: net/minecraft/world/entity/ai/village/VillageSiege/f_27002_ net/minecraft/world/entity/ai/village/VillageSiege/spawnX +FD: net/minecraft/world/entity/ai/village/VillageSiege/f_27003_ net/minecraft/world/entity/ai/village/VillageSiege/spawnY +FD: net/minecraft/world/entity/ai/village/VillageSiege/f_27004_ net/minecraft/world/entity/ai/village/VillageSiege/spawnZ +FD: net/minecraft/world/entity/ai/village/VillageSiege$State/$VALUES net/minecraft/world/entity/ai/village/VillageSiege$State/$VALUES +FD: net/minecraft/world/entity/ai/village/VillageSiege$State/SIEGE_CAN_ACTIVATE net/minecraft/world/entity/ai/village/VillageSiege$State/SIEGE_CAN_ACTIVATE +FD: net/minecraft/world/entity/ai/village/VillageSiege$State/SIEGE_DONE net/minecraft/world/entity/ai/village/VillageSiege$State/SIEGE_DONE +FD: net/minecraft/world/entity/ai/village/VillageSiege$State/SIEGE_TONIGHT net/minecraft/world/entity/ai/village/VillageSiege$State/SIEGE_TONIGHT +FD: net/minecraft/world/entity/ai/village/poi/PoiManager/f_148565_ net/minecraft/world/entity/ai/village/poi/PoiManager/MAX_VILLAGE_DISTANCE +FD: net/minecraft/world/entity/ai/village/poi/PoiManager/f_148566_ net/minecraft/world/entity/ai/village/poi/PoiManager/VILLAGE_SECTION_SIZE +FD: net/minecraft/world/entity/ai/village/poi/PoiManager/f_27029_ net/minecraft/world/entity/ai/village/poi/PoiManager/distanceTracker +FD: net/minecraft/world/entity/ai/village/poi/PoiManager/f_27030_ net/minecraft/world/entity/ai/village/poi/PoiManager/loadedChunks +FD: net/minecraft/world/entity/ai/village/poi/PoiManager$DistanceTracker/f_27199_ net/minecraft/world/entity/ai/village/poi/PoiManager$DistanceTracker/this$0 +FD: net/minecraft/world/entity/ai/village/poi/PoiManager$DistanceTracker/f_27200_ net/minecraft/world/entity/ai/village/poi/PoiManager$DistanceTracker/levels +FD: net/minecraft/world/entity/ai/village/poi/PoiManager$Occupancy/$VALUES net/minecraft/world/entity/ai/village/poi/PoiManager$Occupancy/$VALUES +FD: net/minecraft/world/entity/ai/village/poi/PoiManager$Occupancy/ANY net/minecraft/world/entity/ai/village/poi/PoiManager$Occupancy/ANY +FD: net/minecraft/world/entity/ai/village/poi/PoiManager$Occupancy/HAS_SPACE net/minecraft/world/entity/ai/village/poi/PoiManager$Occupancy/HAS_SPACE +FD: net/minecraft/world/entity/ai/village/poi/PoiManager$Occupancy/IS_OCCUPIED net/minecraft/world/entity/ai/village/poi/PoiManager$Occupancy/IS_OCCUPIED +FD: net/minecraft/world/entity/ai/village/poi/PoiManager$Occupancy/f_27214_ net/minecraft/world/entity/ai/village/poi/PoiManager$Occupancy/test +FD: net/minecraft/world/entity/ai/village/poi/PoiRecord/f_27227_ net/minecraft/world/entity/ai/village/poi/PoiRecord/pos +FD: net/minecraft/world/entity/ai/village/poi/PoiRecord/f_27228_ net/minecraft/world/entity/ai/village/poi/PoiRecord/poiType +FD: net/minecraft/world/entity/ai/village/poi/PoiRecord/f_27229_ net/minecraft/world/entity/ai/village/poi/PoiRecord/freeTickets +FD: net/minecraft/world/entity/ai/village/poi/PoiRecord/f_27230_ net/minecraft/world/entity/ai/village/poi/PoiRecord/setDirty +FD: net/minecraft/world/entity/ai/village/poi/PoiSection/f_27260_ net/minecraft/world/entity/ai/village/poi/PoiSection/LOGGER +FD: net/minecraft/world/entity/ai/village/poi/PoiSection/f_27261_ net/minecraft/world/entity/ai/village/poi/PoiSection/records +FD: net/minecraft/world/entity/ai/village/poi/PoiSection/f_27262_ net/minecraft/world/entity/ai/village/poi/PoiSection/byType +FD: net/minecraft/world/entity/ai/village/poi/PoiSection/f_27263_ net/minecraft/world/entity/ai/village/poi/PoiSection/setDirty +FD: net/minecraft/world/entity/ai/village/poi/PoiSection/f_27264_ net/minecraft/world/entity/ai/village/poi/PoiSection/isValid +FD: net/minecraft/world/entity/ai/village/poi/PoiType/f_218034_ net/minecraft/world/entity/ai/village/poi/PoiType/NONE +FD: net/minecraft/world/entity/ai/village/poi/PoiType/f_27325_ net/minecraft/world/entity/ai/village/poi/PoiType/matchingStates +FD: net/minecraft/world/entity/ai/village/poi/PoiType/f_27326_ net/minecraft/world/entity/ai/village/poi/PoiType/maxTickets +FD: net/minecraft/world/entity/ai/village/poi/PoiType/f_27328_ net/minecraft/world/entity/ai/village/poi/PoiType/validRange +FD: net/minecraft/world/entity/ai/village/poi/PoiTypes/f_218047_ net/minecraft/world/entity/ai/village/poi/PoiTypes/ARMORER +FD: net/minecraft/world/entity/ai/village/poi/PoiTypes/f_218048_ net/minecraft/world/entity/ai/village/poi/PoiTypes/BUTCHER +FD: net/minecraft/world/entity/ai/village/poi/PoiTypes/f_218049_ net/minecraft/world/entity/ai/village/poi/PoiTypes/CARTOGRAPHER +FD: net/minecraft/world/entity/ai/village/poi/PoiTypes/f_218050_ net/minecraft/world/entity/ai/village/poi/PoiTypes/CLERIC +FD: net/minecraft/world/entity/ai/village/poi/PoiTypes/f_218051_ net/minecraft/world/entity/ai/village/poi/PoiTypes/FARMER +FD: net/minecraft/world/entity/ai/village/poi/PoiTypes/f_218052_ net/minecraft/world/entity/ai/village/poi/PoiTypes/FISHERMAN +FD: net/minecraft/world/entity/ai/village/poi/PoiTypes/f_218053_ net/minecraft/world/entity/ai/village/poi/PoiTypes/FLETCHER +FD: net/minecraft/world/entity/ai/village/poi/PoiTypes/f_218054_ net/minecraft/world/entity/ai/village/poi/PoiTypes/LEATHERWORKER +FD: net/minecraft/world/entity/ai/village/poi/PoiTypes/f_218055_ net/minecraft/world/entity/ai/village/poi/PoiTypes/LIBRARIAN +FD: net/minecraft/world/entity/ai/village/poi/PoiTypes/f_218056_ net/minecraft/world/entity/ai/village/poi/PoiTypes/MASON +FD: net/minecraft/world/entity/ai/village/poi/PoiTypes/f_218057_ net/minecraft/world/entity/ai/village/poi/PoiTypes/SHEPHERD +FD: net/minecraft/world/entity/ai/village/poi/PoiTypes/f_218058_ net/minecraft/world/entity/ai/village/poi/PoiTypes/TOOLSMITH +FD: net/minecraft/world/entity/ai/village/poi/PoiTypes/f_218059_ net/minecraft/world/entity/ai/village/poi/PoiTypes/WEAPONSMITH +FD: net/minecraft/world/entity/ai/village/poi/PoiTypes/f_218060_ net/minecraft/world/entity/ai/village/poi/PoiTypes/HOME +FD: net/minecraft/world/entity/ai/village/poi/PoiTypes/f_218061_ net/minecraft/world/entity/ai/village/poi/PoiTypes/MEETING +FD: net/minecraft/world/entity/ai/village/poi/PoiTypes/f_218062_ net/minecraft/world/entity/ai/village/poi/PoiTypes/BEEHIVE +FD: net/minecraft/world/entity/ai/village/poi/PoiTypes/f_218063_ net/minecraft/world/entity/ai/village/poi/PoiTypes/BEE_NEST +FD: net/minecraft/world/entity/ai/village/poi/PoiTypes/f_218064_ net/minecraft/world/entity/ai/village/poi/PoiTypes/NETHER_PORTAL +FD: net/minecraft/world/entity/ai/village/poi/PoiTypes/f_218065_ net/minecraft/world/entity/ai/village/poi/PoiTypes/LODESTONE +FD: net/minecraft/world/entity/ai/village/poi/PoiTypes/f_218066_ net/minecraft/world/entity/ai/village/poi/PoiTypes/LIGHTNING_ROD +FD: net/minecraft/world/entity/ai/village/poi/PoiTypes/f_218068_ net/minecraft/world/entity/ai/village/poi/PoiTypes/BEDS +FD: net/minecraft/world/entity/ai/village/poi/PoiTypes/f_218069_ net/minecraft/world/entity/ai/village/poi/PoiTypes/CAULDRONS +FD: net/minecraft/world/entity/ai/village/poi/PoiTypes/f_218070_ net/minecraft/world/entity/ai/village/poi/PoiTypes/TYPE_BY_STATE +FD: net/minecraft/world/entity/ambient/Bat/f_148698_ net/minecraft/world/entity/ambient/Bat/FLAP_DEGREES_PER_TICK +FD: net/minecraft/world/entity/ambient/Bat/f_148699_ net/minecraft/world/entity/ambient/Bat/TICKS_PER_FLAP +FD: net/minecraft/world/entity/ambient/Bat/f_148700_ net/minecraft/world/entity/ambient/Bat/FLAG_RESTING +FD: net/minecraft/world/entity/ambient/Bat/f_27407_ net/minecraft/world/entity/ambient/Bat/DATA_ID_FLAGS +FD: net/minecraft/world/entity/ambient/Bat/f_27408_ net/minecraft/world/entity/ambient/Bat/BAT_RESTING_TARGETING +FD: net/minecraft/world/entity/ambient/Bat/f_27409_ net/minecraft/world/entity/ambient/Bat/targetPosition +FD: net/minecraft/world/entity/animal/AbstractFish/f_27458_ net/minecraft/world/entity/animal/AbstractFish/FROM_BUCKET +FD: net/minecraft/world/entity/animal/AbstractFish$FishMoveControl/f_27499_ net/minecraft/world/entity/animal/AbstractFish$FishMoveControl/fish +FD: net/minecraft/world/entity/animal/AbstractFish$FishSwimGoal/f_27503_ net/minecraft/world/entity/animal/AbstractFish$FishSwimGoal/fish +FD: net/minecraft/world/entity/animal/AbstractSchoolingFish/f_27520_ net/minecraft/world/entity/animal/AbstractSchoolingFish/leader +FD: net/minecraft/world/entity/animal/AbstractSchoolingFish/f_27521_ net/minecraft/world/entity/animal/AbstractSchoolingFish/schoolSize +FD: net/minecraft/world/entity/animal/AbstractSchoolingFish$SchoolSpawnGroupData/f_27551_ net/minecraft/world/entity/animal/AbstractSchoolingFish$SchoolSpawnGroupData/leader +FD: net/minecraft/world/entity/animal/Animal/f_148714_ net/minecraft/world/entity/animal/Animal/PARENT_AGE_AFTER_BREEDING +FD: net/minecraft/world/entity/animal/Animal/f_27554_ net/minecraft/world/entity/animal/Animal/inLove +FD: net/minecraft/world/entity/animal/Animal/f_27555_ net/minecraft/world/entity/animal/Animal/loveCause +FD: net/minecraft/world/entity/animal/Bee/f_148718_ net/minecraft/world/entity/animal/Bee/FLAP_DEGREES_PER_TICK +FD: net/minecraft/world/entity/animal/Bee/f_148719_ net/minecraft/world/entity/animal/Bee/TICKS_PER_FLAP +FD: net/minecraft/world/entity/animal/Bee/f_148720_ net/minecraft/world/entity/animal/Bee/TAG_CROPS_GROWN_SINCE_POLLINATION +FD: net/minecraft/world/entity/animal/Bee/f_148721_ net/minecraft/world/entity/animal/Bee/TAG_CANNOT_ENTER_HIVE_TICKS +FD: net/minecraft/world/entity/animal/Bee/f_148722_ net/minecraft/world/entity/animal/Bee/TAG_TICKS_SINCE_POLLINATION +FD: net/minecraft/world/entity/animal/Bee/f_148723_ net/minecraft/world/entity/animal/Bee/TAG_HAS_STUNG +FD: net/minecraft/world/entity/animal/Bee/f_148724_ net/minecraft/world/entity/animal/Bee/TAG_HAS_NECTAR +FD: net/minecraft/world/entity/animal/Bee/f_148725_ net/minecraft/world/entity/animal/Bee/COOLDOWN_BEFORE_LOCATING_NEW_HIVE +FD: net/minecraft/world/entity/animal/Bee/f_148726_ net/minecraft/world/entity/animal/Bee/COOLDOWN_BEFORE_LOCATING_NEW_FLOWER +FD: net/minecraft/world/entity/animal/Bee/f_148727_ net/minecraft/world/entity/animal/Bee/TAG_FLOWER_POS +FD: net/minecraft/world/entity/animal/Bee/f_148728_ net/minecraft/world/entity/animal/Bee/TAG_HIVE_POS +FD: net/minecraft/world/entity/animal/Bee/f_148729_ net/minecraft/world/entity/animal/Bee/FLAG_ROLL +FD: net/minecraft/world/entity/animal/Bee/f_148730_ net/minecraft/world/entity/animal/Bee/FLAG_HAS_STUNG +FD: net/minecraft/world/entity/animal/Bee/f_148731_ net/minecraft/world/entity/animal/Bee/FLAG_HAS_NECTAR +FD: net/minecraft/world/entity/animal/Bee/f_148732_ net/minecraft/world/entity/animal/Bee/STING_DEATH_COUNTDOWN +FD: net/minecraft/world/entity/animal/Bee/f_148733_ net/minecraft/world/entity/animal/Bee/TICKS_BEFORE_GOING_TO_KNOWN_FLOWER +FD: net/minecraft/world/entity/animal/Bee/f_148734_ net/minecraft/world/entity/animal/Bee/TICKS_WITHOUT_NECTAR_BEFORE_GOING_HOME +FD: net/minecraft/world/entity/animal/Bee/f_148735_ net/minecraft/world/entity/animal/Bee/MIN_ATTACK_DIST +FD: net/minecraft/world/entity/animal/Bee/f_148736_ net/minecraft/world/entity/animal/Bee/MAX_CROPS_GROWABLE +FD: net/minecraft/world/entity/animal/Bee/f_148737_ net/minecraft/world/entity/animal/Bee/POISON_SECONDS_NORMAL +FD: net/minecraft/world/entity/animal/Bee/f_148738_ net/minecraft/world/entity/animal/Bee/POISON_SECONDS_HARD +FD: net/minecraft/world/entity/animal/Bee/f_148739_ net/minecraft/world/entity/animal/Bee/TOO_FAR_DISTANCE +FD: net/minecraft/world/entity/animal/Bee/f_148740_ net/minecraft/world/entity/animal/Bee/HIVE_CLOSE_ENOUGH_DISTANCE +FD: net/minecraft/world/entity/animal/Bee/f_148741_ net/minecraft/world/entity/animal/Bee/PATHFIND_TO_HIVE_WHEN_CLOSER_THAN +FD: net/minecraft/world/entity/animal/Bee/f_148742_ net/minecraft/world/entity/animal/Bee/HIVE_SEARCH_DISTANCE +FD: net/minecraft/world/entity/animal/Bee/f_27697_ net/minecraft/world/entity/animal/Bee/savedFlowerPos +FD: net/minecraft/world/entity/animal/Bee/f_27698_ net/minecraft/world/entity/animal/Bee/hivePos +FD: net/minecraft/world/entity/animal/Bee/f_27699_ net/minecraft/world/entity/animal/Bee/beePollinateGoal +FD: net/minecraft/world/entity/animal/Bee/f_27700_ net/minecraft/world/entity/animal/Bee/goToHiveGoal +FD: net/minecraft/world/entity/animal/Bee/f_27701_ net/minecraft/world/entity/animal/Bee/goToKnownFlowerGoal +FD: net/minecraft/world/entity/animal/Bee/f_27702_ net/minecraft/world/entity/animal/Bee/underWaterTicks +FD: net/minecraft/world/entity/animal/Bee/f_27703_ net/minecraft/world/entity/animal/Bee/DATA_FLAGS_ID +FD: net/minecraft/world/entity/animal/Bee/f_27704_ net/minecraft/world/entity/animal/Bee/DATA_REMAINING_ANGER_TIME +FD: net/minecraft/world/entity/animal/Bee/f_27705_ net/minecraft/world/entity/animal/Bee/PERSISTENT_ANGER_TIME +FD: net/minecraft/world/entity/animal/Bee/f_27706_ net/minecraft/world/entity/animal/Bee/persistentAngerTarget +FD: net/minecraft/world/entity/animal/Bee/f_27707_ net/minecraft/world/entity/animal/Bee/rollAmount +FD: net/minecraft/world/entity/animal/Bee/f_27708_ net/minecraft/world/entity/animal/Bee/rollAmountO +FD: net/minecraft/world/entity/animal/Bee/f_27709_ net/minecraft/world/entity/animal/Bee/timeSinceSting +FD: net/minecraft/world/entity/animal/Bee/f_27710_ net/minecraft/world/entity/animal/Bee/ticksWithoutNectarSinceExitingHive +FD: net/minecraft/world/entity/animal/Bee/f_27711_ net/minecraft/world/entity/animal/Bee/stayOutOfHiveCountdown +FD: net/minecraft/world/entity/animal/Bee/f_27712_ net/minecraft/world/entity/animal/Bee/numCropsGrownSincePollination +FD: net/minecraft/world/entity/animal/Bee/f_27713_ net/minecraft/world/entity/animal/Bee/remainingCooldownBeforeLocatingNewHive +FD: net/minecraft/world/entity/animal/Bee/f_27714_ net/minecraft/world/entity/animal/Bee/remainingCooldownBeforeLocatingNewFlower +FD: net/minecraft/world/entity/animal/Bee$1/f_27941_ net/minecraft/world/entity/animal/Bee$1/this$0 +FD: net/minecraft/world/entity/animal/Bee$BaseBeeGoal/f_27949_ net/minecraft/world/entity/animal/Bee$BaseBeeGoal/this$0 +FD: net/minecraft/world/entity/animal/Bee$BeeAttackGoal/f_27957_ net/minecraft/world/entity/animal/Bee$BeeAttackGoal/this$0 +FD: net/minecraft/world/entity/animal/Bee$BeeEnterHiveGoal/f_27970_ net/minecraft/world/entity/animal/Bee$BeeEnterHiveGoal/this$0 +FD: net/minecraft/world/entity/animal/Bee$BeeGoToHiveGoal/f_148804_ net/minecraft/world/entity/animal/Bee$BeeGoToHiveGoal/MAX_TRAVELLING_TICKS +FD: net/minecraft/world/entity/animal/Bee$BeeGoToHiveGoal/f_148805_ net/minecraft/world/entity/animal/Bee$BeeGoToHiveGoal/MAX_BLACKLISTED_TARGETS +FD: net/minecraft/world/entity/animal/Bee$BeeGoToHiveGoal/f_148806_ net/minecraft/world/entity/animal/Bee$BeeGoToHiveGoal/TICKS_BEFORE_HIVE_DROP +FD: net/minecraft/world/entity/animal/Bee$BeeGoToHiveGoal/f_27979_ net/minecraft/world/entity/animal/Bee$BeeGoToHiveGoal/this$0 +FD: net/minecraft/world/entity/animal/Bee$BeeGoToHiveGoal/f_27980_ net/minecraft/world/entity/animal/Bee$BeeGoToHiveGoal/travellingTicks +FD: net/minecraft/world/entity/animal/Bee$BeeGoToHiveGoal/f_27981_ net/minecraft/world/entity/animal/Bee$BeeGoToHiveGoal/blacklistedTargets +FD: net/minecraft/world/entity/animal/Bee$BeeGoToHiveGoal/f_27982_ net/minecraft/world/entity/animal/Bee$BeeGoToHiveGoal/lastPath +FD: net/minecraft/world/entity/animal/Bee$BeeGoToHiveGoal/f_27983_ net/minecraft/world/entity/animal/Bee$BeeGoToHiveGoal/ticksStuck +FD: net/minecraft/world/entity/animal/Bee$BeeGoToKnownFlowerGoal/f_148807_ net/minecraft/world/entity/animal/Bee$BeeGoToKnownFlowerGoal/MAX_TRAVELLING_TICKS +FD: net/minecraft/world/entity/animal/Bee$BeeGoToKnownFlowerGoal/f_28009_ net/minecraft/world/entity/animal/Bee$BeeGoToKnownFlowerGoal/this$0 +FD: net/minecraft/world/entity/animal/Bee$BeeGoToKnownFlowerGoal/f_28010_ net/minecraft/world/entity/animal/Bee$BeeGoToKnownFlowerGoal/travellingTicks +FD: net/minecraft/world/entity/animal/Bee$BeeGrowCropGoal/f_148808_ net/minecraft/world/entity/animal/Bee$BeeGrowCropGoal/GROW_CHANCE +FD: net/minecraft/world/entity/animal/Bee$BeeGrowCropGoal/f_28021_ net/minecraft/world/entity/animal/Bee$BeeGrowCropGoal/this$0 +FD: net/minecraft/world/entity/animal/Bee$BeeHurtByOtherGoal/f_28030_ net/minecraft/world/entity/animal/Bee$BeeHurtByOtherGoal/this$0 +FD: net/minecraft/world/entity/animal/Bee$BeeLocateHiveGoal/f_28038_ net/minecraft/world/entity/animal/Bee$BeeLocateHiveGoal/this$0 +FD: net/minecraft/world/entity/animal/Bee$BeeLookControl/f_28056_ net/minecraft/world/entity/animal/Bee$BeeLookControl/this$0 +FD: net/minecraft/world/entity/animal/Bee$BeePollinateGoal/f_148812_ net/minecraft/world/entity/animal/Bee$BeePollinateGoal/MIN_POLLINATION_TICKS +FD: net/minecraft/world/entity/animal/Bee$BeePollinateGoal/f_148813_ net/minecraft/world/entity/animal/Bee$BeePollinateGoal/MIN_FIND_FLOWER_RETRY_COOLDOWN +FD: net/minecraft/world/entity/animal/Bee$BeePollinateGoal/f_148814_ net/minecraft/world/entity/animal/Bee$BeePollinateGoal/MAX_FIND_FLOWER_RETRY_COOLDOWN +FD: net/minecraft/world/entity/animal/Bee$BeePollinateGoal/f_148815_ net/minecraft/world/entity/animal/Bee$BeePollinateGoal/ARRIVAL_THRESHOLD +FD: net/minecraft/world/entity/animal/Bee$BeePollinateGoal/f_148816_ net/minecraft/world/entity/animal/Bee$BeePollinateGoal/POSITION_CHANGE_CHANCE +FD: net/minecraft/world/entity/animal/Bee$BeePollinateGoal/f_148817_ net/minecraft/world/entity/animal/Bee$BeePollinateGoal/SPEED_MODIFIER +FD: net/minecraft/world/entity/animal/Bee$BeePollinateGoal/f_148818_ net/minecraft/world/entity/animal/Bee$BeePollinateGoal/HOVER_HEIGHT_WITHIN_FLOWER +FD: net/minecraft/world/entity/animal/Bee$BeePollinateGoal/f_148819_ net/minecraft/world/entity/animal/Bee$BeePollinateGoal/HOVER_POS_OFFSET +FD: net/minecraft/world/entity/animal/Bee$BeePollinateGoal/f_148820_ net/minecraft/world/entity/animal/Bee$BeePollinateGoal/MAX_POLLINATING_TICKS +FD: net/minecraft/world/entity/animal/Bee$BeePollinateGoal/f_28062_ net/minecraft/world/entity/animal/Bee$BeePollinateGoal/this$0 +FD: net/minecraft/world/entity/animal/Bee$BeePollinateGoal/f_28063_ net/minecraft/world/entity/animal/Bee$BeePollinateGoal/VALID_POLLINATION_BLOCKS +FD: net/minecraft/world/entity/animal/Bee$BeePollinateGoal/f_28064_ net/minecraft/world/entity/animal/Bee$BeePollinateGoal/successfulPollinatingTicks +FD: net/minecraft/world/entity/animal/Bee$BeePollinateGoal/f_28065_ net/minecraft/world/entity/animal/Bee$BeePollinateGoal/lastSoundPlayedTick +FD: net/minecraft/world/entity/animal/Bee$BeePollinateGoal/f_28066_ net/minecraft/world/entity/animal/Bee$BeePollinateGoal/pollinating +FD: net/minecraft/world/entity/animal/Bee$BeePollinateGoal/f_28067_ net/minecraft/world/entity/animal/Bee$BeePollinateGoal/hoverPos +FD: net/minecraft/world/entity/animal/Bee$BeePollinateGoal/f_28068_ net/minecraft/world/entity/animal/Bee$BeePollinateGoal/pollinatingTicks +FD: net/minecraft/world/entity/animal/Bee$BeeWanderGoal/f_148821_ net/minecraft/world/entity/animal/Bee$BeeWanderGoal/WANDER_THRESHOLD +FD: net/minecraft/world/entity/animal/Bee$BeeWanderGoal/f_28091_ net/minecraft/world/entity/animal/Bee$BeeWanderGoal/this$0 +FD: net/minecraft/world/entity/animal/Cat/f_148842_ net/minecraft/world/entity/animal/Cat/TEMPT_SPEED_MOD +FD: net/minecraft/world/entity/animal/Cat/f_148843_ net/minecraft/world/entity/animal/Cat/WALK_SPEED_MOD +FD: net/minecraft/world/entity/animal/Cat/f_148844_ net/minecraft/world/entity/animal/Cat/SPRINT_SPEED_MOD +FD: net/minecraft/world/entity/animal/Cat/f_218131_ net/minecraft/world/entity/animal/Cat/DATA_VARIANT_ID +FD: net/minecraft/world/entity/animal/Cat/f_28098_ net/minecraft/world/entity/animal/Cat/lieDownAmountTail +FD: net/minecraft/world/entity/animal/Cat/f_28099_ net/minecraft/world/entity/animal/Cat/lieDownAmountOTail +FD: net/minecraft/world/entity/animal/Cat/f_28100_ net/minecraft/world/entity/animal/Cat/relaxStateOneAmount +FD: net/minecraft/world/entity/animal/Cat/f_28101_ net/minecraft/world/entity/animal/Cat/relaxStateOneAmountO +FD: net/minecraft/world/entity/animal/Cat/f_28103_ net/minecraft/world/entity/animal/Cat/TEMPT_INGREDIENT +FD: net/minecraft/world/entity/animal/Cat/f_28105_ net/minecraft/world/entity/animal/Cat/IS_LYING +FD: net/minecraft/world/entity/animal/Cat/f_28106_ net/minecraft/world/entity/animal/Cat/RELAX_STATE_ONE +FD: net/minecraft/world/entity/animal/Cat/f_28107_ net/minecraft/world/entity/animal/Cat/DATA_COLLAR_COLOR +FD: net/minecraft/world/entity/animal/Cat/f_28108_ net/minecraft/world/entity/animal/Cat/avoidPlayersGoal +FD: net/minecraft/world/entity/animal/Cat/f_28109_ net/minecraft/world/entity/animal/Cat/temptGoal +FD: net/minecraft/world/entity/animal/Cat/f_28110_ net/minecraft/world/entity/animal/Cat/lieDownAmount +FD: net/minecraft/world/entity/animal/Cat/f_28111_ net/minecraft/world/entity/animal/Cat/lieDownAmountO +FD: net/minecraft/world/entity/animal/Cat$CatAvoidEntityGoal/f_28189_ net/minecraft/world/entity/animal/Cat$CatAvoidEntityGoal/cat +FD: net/minecraft/world/entity/animal/Cat$CatRelaxOnOwnerGoal/f_28198_ net/minecraft/world/entity/animal/Cat$CatRelaxOnOwnerGoal/cat +FD: net/minecraft/world/entity/animal/Cat$CatRelaxOnOwnerGoal/f_28199_ net/minecraft/world/entity/animal/Cat$CatRelaxOnOwnerGoal/ownerPlayer +FD: net/minecraft/world/entity/animal/Cat$CatRelaxOnOwnerGoal/f_28200_ net/minecraft/world/entity/animal/Cat$CatRelaxOnOwnerGoal/goalPos +FD: net/minecraft/world/entity/animal/Cat$CatRelaxOnOwnerGoal/f_28201_ net/minecraft/world/entity/animal/Cat$CatRelaxOnOwnerGoal/onBedTicks +FD: net/minecraft/world/entity/animal/Cat$CatTemptGoal/f_28216_ net/minecraft/world/entity/animal/Cat$CatTemptGoal/selectedPlayer +FD: net/minecraft/world/entity/animal/Cat$CatTemptGoal/f_28217_ net/minecraft/world/entity/animal/Cat$CatTemptGoal/cat +FD: net/minecraft/world/entity/animal/CatVariant/f_218140_ net/minecraft/world/entity/animal/CatVariant/TABBY +FD: net/minecraft/world/entity/animal/CatVariant/f_218141_ net/minecraft/world/entity/animal/CatVariant/BLACK +FD: net/minecraft/world/entity/animal/CatVariant/f_218142_ net/minecraft/world/entity/animal/CatVariant/RED +FD: net/minecraft/world/entity/animal/CatVariant/f_218143_ net/minecraft/world/entity/animal/CatVariant/SIAMESE +FD: net/minecraft/world/entity/animal/CatVariant/f_218144_ net/minecraft/world/entity/animal/CatVariant/BRITISH_SHORTHAIR +FD: net/minecraft/world/entity/animal/CatVariant/f_218145_ net/minecraft/world/entity/animal/CatVariant/CALICO +FD: net/minecraft/world/entity/animal/CatVariant/f_218146_ net/minecraft/world/entity/animal/CatVariant/PERSIAN +FD: net/minecraft/world/entity/animal/CatVariant/f_218147_ net/minecraft/world/entity/animal/CatVariant/RAGDOLL +FD: net/minecraft/world/entity/animal/CatVariant/f_218148_ net/minecraft/world/entity/animal/CatVariant/WHITE +FD: net/minecraft/world/entity/animal/CatVariant/f_218149_ net/minecraft/world/entity/animal/CatVariant/JELLIE +FD: net/minecraft/world/entity/animal/CatVariant/f_218150_ net/minecraft/world/entity/animal/CatVariant/ALL_BLACK +FD: net/minecraft/world/entity/animal/CatVariant/f_218151_ net/minecraft/world/entity/animal/CatVariant/texture +FD: net/minecraft/world/entity/animal/Chicken/f_148873_ net/minecraft/world/entity/animal/Chicken/nextFlap +FD: net/minecraft/world/entity/animal/Chicken/f_28226_ net/minecraft/world/entity/animal/Chicken/flap +FD: net/minecraft/world/entity/animal/Chicken/f_28227_ net/minecraft/world/entity/animal/Chicken/flapSpeed +FD: net/minecraft/world/entity/animal/Chicken/f_28228_ net/minecraft/world/entity/animal/Chicken/oFlapSpeed +FD: net/minecraft/world/entity/animal/Chicken/f_28229_ net/minecraft/world/entity/animal/Chicken/oFlap +FD: net/minecraft/world/entity/animal/Chicken/f_28230_ net/minecraft/world/entity/animal/Chicken/flapping +FD: net/minecraft/world/entity/animal/Chicken/f_28231_ net/minecraft/world/entity/animal/Chicken/eggTime +FD: net/minecraft/world/entity/animal/Chicken/f_28232_ net/minecraft/world/entity/animal/Chicken/isChickenJockey +FD: net/minecraft/world/entity/animal/Chicken/f_28233_ net/minecraft/world/entity/animal/Chicken/FOOD_ITEMS +FD: net/minecraft/world/entity/animal/Dolphin/f_148892_ net/minecraft/world/entity/animal/Dolphin/TOTAL_AIR_SUPPLY +FD: net/minecraft/world/entity/animal/Dolphin/f_148893_ net/minecraft/world/entity/animal/Dolphin/TOTAL_MOISTNESS_LEVEL +FD: net/minecraft/world/entity/animal/Dolphin/f_28309_ net/minecraft/world/entity/animal/Dolphin/ALLOWED_ITEMS +FD: net/minecraft/world/entity/animal/Dolphin/f_28310_ net/minecraft/world/entity/animal/Dolphin/MOISTNESS_LEVEL +FD: net/minecraft/world/entity/animal/Dolphin/f_28311_ net/minecraft/world/entity/animal/Dolphin/SWIM_WITH_PLAYER_TARGETING +FD: net/minecraft/world/entity/animal/Dolphin/f_28312_ net/minecraft/world/entity/animal/Dolphin/TREASURE_POS +FD: net/minecraft/world/entity/animal/Dolphin/f_28313_ net/minecraft/world/entity/animal/Dolphin/GOT_FISH +FD: net/minecraft/world/entity/animal/Dolphin$DolphinSwimToTreasureGoal/f_28399_ net/minecraft/world/entity/animal/Dolphin$DolphinSwimToTreasureGoal/dolphin +FD: net/minecraft/world/entity/animal/Dolphin$DolphinSwimToTreasureGoal/f_28400_ net/minecraft/world/entity/animal/Dolphin$DolphinSwimToTreasureGoal/stuck +FD: net/minecraft/world/entity/animal/Dolphin$DolphinSwimWithPlayerGoal/f_28409_ net/minecraft/world/entity/animal/Dolphin$DolphinSwimWithPlayerGoal/dolphin +FD: net/minecraft/world/entity/animal/Dolphin$DolphinSwimWithPlayerGoal/f_28410_ net/minecraft/world/entity/animal/Dolphin$DolphinSwimWithPlayerGoal/speedModifier +FD: net/minecraft/world/entity/animal/Dolphin$DolphinSwimWithPlayerGoal/f_28411_ net/minecraft/world/entity/animal/Dolphin$DolphinSwimWithPlayerGoal/player +FD: net/minecraft/world/entity/animal/Dolphin$PlayWithItemsGoal/f_28420_ net/minecraft/world/entity/animal/Dolphin$PlayWithItemsGoal/this$0 +FD: net/minecraft/world/entity/animal/Dolphin$PlayWithItemsGoal/f_28421_ net/minecraft/world/entity/animal/Dolphin$PlayWithItemsGoal/cooldown +FD: net/minecraft/world/entity/animal/Fox/f_148896_ net/minecraft/world/entity/animal/Fox/FLAG_CROUCHING +FD: net/minecraft/world/entity/animal/Fox/f_148897_ net/minecraft/world/entity/animal/Fox/FLAG_INTERESTED +FD: net/minecraft/world/entity/animal/Fox/f_148898_ net/minecraft/world/entity/animal/Fox/FLAG_POUNCING +FD: net/minecraft/world/entity/animal/Fox/f_148899_ net/minecraft/world/entity/animal/Fox/FLAG_SITTING +FD: net/minecraft/world/entity/animal/Fox/f_148900_ net/minecraft/world/entity/animal/Fox/FLAG_SLEEPING +FD: net/minecraft/world/entity/animal/Fox/f_148901_ net/minecraft/world/entity/animal/Fox/FLAG_FACEPLANTED +FD: net/minecraft/world/entity/animal/Fox/f_148902_ net/minecraft/world/entity/animal/Fox/FLAG_DEFENDING +FD: net/minecraft/world/entity/animal/Fox/f_148903_ net/minecraft/world/entity/animal/Fox/MIN_TICKS_BEFORE_EAT +FD: net/minecraft/world/entity/animal/Fox/f_28433_ net/minecraft/world/entity/animal/Fox/interestedAngleO +FD: net/minecraft/world/entity/animal/Fox/f_28434_ net/minecraft/world/entity/animal/Fox/crouchAmount +FD: net/minecraft/world/entity/animal/Fox/f_28435_ net/minecraft/world/entity/animal/Fox/crouchAmountO +FD: net/minecraft/world/entity/animal/Fox/f_28436_ net/minecraft/world/entity/animal/Fox/ticksSinceEaten +FD: net/minecraft/world/entity/animal/Fox/f_28437_ net/minecraft/world/entity/animal/Fox/DATA_TYPE_ID +FD: net/minecraft/world/entity/animal/Fox/f_28438_ net/minecraft/world/entity/animal/Fox/DATA_FLAGS_ID +FD: net/minecraft/world/entity/animal/Fox/f_28439_ net/minecraft/world/entity/animal/Fox/DATA_TRUSTED_ID_0 +FD: net/minecraft/world/entity/animal/Fox/f_28440_ net/minecraft/world/entity/animal/Fox/DATA_TRUSTED_ID_1 +FD: net/minecraft/world/entity/animal/Fox/f_28441_ net/minecraft/world/entity/animal/Fox/ALLOWED_ITEMS +FD: net/minecraft/world/entity/animal/Fox/f_28442_ net/minecraft/world/entity/animal/Fox/TRUSTED_TARGET_SELECTOR +FD: net/minecraft/world/entity/animal/Fox/f_28443_ net/minecraft/world/entity/animal/Fox/STALKABLE_PREY +FD: net/minecraft/world/entity/animal/Fox/f_28444_ net/minecraft/world/entity/animal/Fox/AVOID_PLAYERS +FD: net/minecraft/world/entity/animal/Fox/f_28445_ net/minecraft/world/entity/animal/Fox/landTargetGoal +FD: net/minecraft/world/entity/animal/Fox/f_28446_ net/minecraft/world/entity/animal/Fox/turtleEggTargetGoal +FD: net/minecraft/world/entity/animal/Fox/f_28447_ net/minecraft/world/entity/animal/Fox/fishTargetGoal +FD: net/minecraft/world/entity/animal/Fox/f_28448_ net/minecraft/world/entity/animal/Fox/interestedAngle +FD: net/minecraft/world/entity/animal/Fox$DefendTrustedTargetGoal/f_28628_ net/minecraft/world/entity/animal/Fox$DefendTrustedTargetGoal/this$0 +FD: net/minecraft/world/entity/animal/Fox$DefendTrustedTargetGoal/f_28629_ net/minecraft/world/entity/animal/Fox$DefendTrustedTargetGoal/trustedLastHurtBy +FD: net/minecraft/world/entity/animal/Fox$DefendTrustedTargetGoal/f_28630_ net/minecraft/world/entity/animal/Fox$DefendTrustedTargetGoal/trustedLastHurt +FD: net/minecraft/world/entity/animal/Fox$DefendTrustedTargetGoal/f_28631_ net/minecraft/world/entity/animal/Fox$DefendTrustedTargetGoal/timestamp +FD: net/minecraft/world/entity/animal/Fox$FaceplantGoal/f_28640_ net/minecraft/world/entity/animal/Fox$FaceplantGoal/countdown +FD: net/minecraft/world/entity/animal/Fox$FaceplantGoal/f_28641_ net/minecraft/world/entity/animal/Fox$FaceplantGoal/this$0 +FD: net/minecraft/world/entity/animal/Fox$FoxAlertableEntitiesSelector/f_28649_ net/minecraft/world/entity/animal/Fox$FoxAlertableEntitiesSelector/this$0 +FD: net/minecraft/world/entity/animal/Fox$FoxBehaviorGoal/f_28656_ net/minecraft/world/entity/animal/Fox$FoxBehaviorGoal/this$0 +FD: net/minecraft/world/entity/animal/Fox$FoxBehaviorGoal/f_28657_ net/minecraft/world/entity/animal/Fox$FoxBehaviorGoal/alertableTargeting +FD: net/minecraft/world/entity/animal/Fox$FoxBreedGoal/f_28665_ net/minecraft/world/entity/animal/Fox$FoxBreedGoal/this$0 +FD: net/minecraft/world/entity/animal/Fox$FoxEatBerriesGoal/f_148925_ net/minecraft/world/entity/animal/Fox$FoxEatBerriesGoal/WAIT_TICKS +FD: net/minecraft/world/entity/animal/Fox$FoxEatBerriesGoal/f_28671_ net/minecraft/world/entity/animal/Fox$FoxEatBerriesGoal/ticksWaited +FD: net/minecraft/world/entity/animal/Fox$FoxEatBerriesGoal/f_28672_ net/minecraft/world/entity/animal/Fox$FoxEatBerriesGoal/this$0 +FD: net/minecraft/world/entity/animal/Fox$FoxFloatGoal/f_28687_ net/minecraft/world/entity/animal/Fox$FoxFloatGoal/this$0 +FD: net/minecraft/world/entity/animal/Fox$FoxFollowParentGoal/f_28692_ net/minecraft/world/entity/animal/Fox$FoxFollowParentGoal/this$0 +FD: net/minecraft/world/entity/animal/Fox$FoxFollowParentGoal/f_28693_ net/minecraft/world/entity/animal/Fox$FoxFollowParentGoal/fox +FD: net/minecraft/world/entity/animal/Fox$FoxGroupData/f_28701_ net/minecraft/world/entity/animal/Fox$FoxGroupData/type +FD: net/minecraft/world/entity/animal/Fox$FoxLookAtPlayerGoal/f_28704_ net/minecraft/world/entity/animal/Fox$FoxLookAtPlayerGoal/this$0 +FD: net/minecraft/world/entity/animal/Fox$FoxLookControl/f_28712_ net/minecraft/world/entity/animal/Fox$FoxLookControl/this$0 +FD: net/minecraft/world/entity/animal/Fox$FoxMeleeAttackGoal/f_28717_ net/minecraft/world/entity/animal/Fox$FoxMeleeAttackGoal/this$0 +FD: net/minecraft/world/entity/animal/Fox$FoxMoveControl/f_28727_ net/minecraft/world/entity/animal/Fox$FoxMoveControl/this$0 +FD: net/minecraft/world/entity/animal/Fox$FoxPanicGoal/f_28731_ net/minecraft/world/entity/animal/Fox$FoxPanicGoal/this$0 +FD: net/minecraft/world/entity/animal/Fox$FoxPounceGoal/f_28736_ net/minecraft/world/entity/animal/Fox$FoxPounceGoal/this$0 +FD: net/minecraft/world/entity/animal/Fox$FoxSearchForItemsGoal/f_28745_ net/minecraft/world/entity/animal/Fox$FoxSearchForItemsGoal/this$0 +FD: net/minecraft/world/entity/animal/Fox$FoxStrollThroughVillageGoal/f_28751_ net/minecraft/world/entity/animal/Fox$FoxStrollThroughVillageGoal/this$0 +FD: net/minecraft/world/entity/animal/Fox$PerchAndSearchGoal/f_28760_ net/minecraft/world/entity/animal/Fox$PerchAndSearchGoal/this$0 +FD: net/minecraft/world/entity/animal/Fox$PerchAndSearchGoal/f_28761_ net/minecraft/world/entity/animal/Fox$PerchAndSearchGoal/relX +FD: net/minecraft/world/entity/animal/Fox$PerchAndSearchGoal/f_28762_ net/minecraft/world/entity/animal/Fox$PerchAndSearchGoal/relZ +FD: net/minecraft/world/entity/animal/Fox$PerchAndSearchGoal/f_28763_ net/minecraft/world/entity/animal/Fox$PerchAndSearchGoal/lookTime +FD: net/minecraft/world/entity/animal/Fox$PerchAndSearchGoal/f_28764_ net/minecraft/world/entity/animal/Fox$PerchAndSearchGoal/looksRemaining +FD: net/minecraft/world/entity/animal/Fox$SeekShelterGoal/f_28773_ net/minecraft/world/entity/animal/Fox$SeekShelterGoal/this$0 +FD: net/minecraft/world/entity/animal/Fox$SeekShelterGoal/f_28774_ net/minecraft/world/entity/animal/Fox$SeekShelterGoal/interval +FD: net/minecraft/world/entity/animal/Fox$SleepGoal/f_148930_ net/minecraft/world/entity/animal/Fox$SleepGoal/WAIT_TIME_BEFORE_SLEEP +FD: net/minecraft/world/entity/animal/Fox$SleepGoal/f_28780_ net/minecraft/world/entity/animal/Fox$SleepGoal/this$0 +FD: net/minecraft/world/entity/animal/Fox$SleepGoal/f_28781_ net/minecraft/world/entity/animal/Fox$SleepGoal/countdown +FD: net/minecraft/world/entity/animal/Fox$StalkPreyGoal/f_28789_ net/minecraft/world/entity/animal/Fox$StalkPreyGoal/this$0 +FD: net/minecraft/world/entity/animal/Fox$Type/$VALUES net/minecraft/world/entity/animal/Fox$Type/$VALUES +FD: net/minecraft/world/entity/animal/Fox$Type/RED net/minecraft/world/entity/animal/Fox$Type/RED +FD: net/minecraft/world/entity/animal/Fox$Type/SNOW net/minecraft/world/entity/animal/Fox$Type/SNOW +FD: net/minecraft/world/entity/animal/Fox$Type/f_262206_ net/minecraft/world/entity/animal/Fox$Type/CODEC +FD: net/minecraft/world/entity/animal/Fox$Type/f_28798_ net/minecraft/world/entity/animal/Fox$Type/BY_ID +FD: net/minecraft/world/entity/animal/Fox$Type/f_28800_ net/minecraft/world/entity/animal/Fox$Type/id +FD: net/minecraft/world/entity/animal/Fox$Type/f_28801_ net/minecraft/world/entity/animal/Fox$Type/name +FD: net/minecraft/world/entity/animal/FrogVariant/f_218185_ net/minecraft/world/entity/animal/FrogVariant/TEMPERATE +FD: net/minecraft/world/entity/animal/FrogVariant/f_218186_ net/minecraft/world/entity/animal/FrogVariant/WARM +FD: net/minecraft/world/entity/animal/FrogVariant/f_218187_ net/minecraft/world/entity/animal/FrogVariant/COLD +FD: net/minecraft/world/entity/animal/FrogVariant/f_218188_ net/minecraft/world/entity/animal/FrogVariant/texture +FD: net/minecraft/world/entity/animal/IronGolem/f_148932_ net/minecraft/world/entity/animal/IronGolem/IRON_INGOT_HEAL_AMOUNT +FD: net/minecraft/world/entity/animal/IronGolem/f_28826_ net/minecraft/world/entity/animal/IronGolem/DATA_FLAGS_ID +FD: net/minecraft/world/entity/animal/IronGolem/f_28827_ net/minecraft/world/entity/animal/IronGolem/PERSISTENT_ANGER_TIME +FD: net/minecraft/world/entity/animal/IronGolem/f_28828_ net/minecraft/world/entity/animal/IronGolem/remainingPersistentAngerTime +FD: net/minecraft/world/entity/animal/IronGolem/f_28829_ net/minecraft/world/entity/animal/IronGolem/persistentAngerTarget +FD: net/minecraft/world/entity/animal/IronGolem/f_28830_ net/minecraft/world/entity/animal/IronGolem/attackAnimationTick +FD: net/minecraft/world/entity/animal/IronGolem/f_28831_ net/minecraft/world/entity/animal/IronGolem/offerFlowerTick +FD: net/minecraft/world/entity/animal/IronGolem$Crackiness/$VALUES net/minecraft/world/entity/animal/IronGolem$Crackiness/$VALUES +FD: net/minecraft/world/entity/animal/IronGolem$Crackiness/HIGH net/minecraft/world/entity/animal/IronGolem$Crackiness/HIGH +FD: net/minecraft/world/entity/animal/IronGolem$Crackiness/LOW net/minecraft/world/entity/animal/IronGolem$Crackiness/LOW +FD: net/minecraft/world/entity/animal/IronGolem$Crackiness/MEDIUM net/minecraft/world/entity/animal/IronGolem$Crackiness/MEDIUM +FD: net/minecraft/world/entity/animal/IronGolem$Crackiness/NONE net/minecraft/world/entity/animal/IronGolem$Crackiness/NONE +FD: net/minecraft/world/entity/animal/IronGolem$Crackiness/f_28893_ net/minecraft/world/entity/animal/IronGolem$Crackiness/BY_DAMAGE +FD: net/minecraft/world/entity/animal/IronGolem$Crackiness/f_28894_ net/minecraft/world/entity/animal/IronGolem$Crackiness/fraction +FD: net/minecraft/world/entity/animal/MushroomCow/f_148934_ net/minecraft/world/entity/animal/MushroomCow/MUTATE_CHANCE +FD: net/minecraft/world/entity/animal/MushroomCow/f_28908_ net/minecraft/world/entity/animal/MushroomCow/DATA_TYPE +FD: net/minecraft/world/entity/animal/MushroomCow/f_28909_ net/minecraft/world/entity/animal/MushroomCow/effect +FD: net/minecraft/world/entity/animal/MushroomCow/f_28910_ net/minecraft/world/entity/animal/MushroomCow/effectDuration +FD: net/minecraft/world/entity/animal/MushroomCow/f_28911_ net/minecraft/world/entity/animal/MushroomCow/lastLightningBoltUUID +FD: net/minecraft/world/entity/animal/MushroomCow$MushroomType/$VALUES net/minecraft/world/entity/animal/MushroomCow$MushroomType/$VALUES +FD: net/minecraft/world/entity/animal/MushroomCow$MushroomType/BROWN net/minecraft/world/entity/animal/MushroomCow$MushroomType/BROWN +FD: net/minecraft/world/entity/animal/MushroomCow$MushroomType/RED net/minecraft/world/entity/animal/MushroomCow$MushroomType/RED +FD: net/minecraft/world/entity/animal/MushroomCow$MushroomType/f_262198_ net/minecraft/world/entity/animal/MushroomCow$MushroomType/CODEC +FD: net/minecraft/world/entity/animal/MushroomCow$MushroomType/f_28960_ net/minecraft/world/entity/animal/MushroomCow$MushroomType/type +FD: net/minecraft/world/entity/animal/MushroomCow$MushroomType/f_28961_ net/minecraft/world/entity/animal/MushroomCow$MushroomType/blockState +FD: net/minecraft/world/entity/animal/Ocelot/f_148945_ net/minecraft/world/entity/animal/Ocelot/CROUCH_SPEED_MOD +FD: net/minecraft/world/entity/animal/Ocelot/f_148946_ net/minecraft/world/entity/animal/Ocelot/WALK_SPEED_MOD +FD: net/minecraft/world/entity/animal/Ocelot/f_148947_ net/minecraft/world/entity/animal/Ocelot/SPRINT_SPEED_MOD +FD: net/minecraft/world/entity/animal/Ocelot/f_28981_ net/minecraft/world/entity/animal/Ocelot/TEMPT_INGREDIENT +FD: net/minecraft/world/entity/animal/Ocelot/f_28982_ net/minecraft/world/entity/animal/Ocelot/DATA_TRUSTING +FD: net/minecraft/world/entity/animal/Ocelot/f_28983_ net/minecraft/world/entity/animal/Ocelot/ocelotAvoidPlayersGoal +FD: net/minecraft/world/entity/animal/Ocelot/f_28984_ net/minecraft/world/entity/animal/Ocelot/temptGoal +FD: net/minecraft/world/entity/animal/Ocelot$OcelotAvoidEntityGoal/f_29049_ net/minecraft/world/entity/animal/Ocelot$OcelotAvoidEntityGoal/ocelot +FD: net/minecraft/world/entity/animal/Ocelot$OcelotTemptGoal/f_29058_ net/minecraft/world/entity/animal/Ocelot$OcelotTemptGoal/ocelot +FD: net/minecraft/world/entity/animal/Panda/f_148959_ net/minecraft/world/entity/animal/Panda/TOTAL_ROLL_STEPS +FD: net/minecraft/world/entity/animal/Panda/f_148960_ net/minecraft/world/entity/animal/Panda/FLAG_SNEEZE +FD: net/minecraft/world/entity/animal/Panda/f_148961_ net/minecraft/world/entity/animal/Panda/FLAG_ROLL +FD: net/minecraft/world/entity/animal/Panda/f_148962_ net/minecraft/world/entity/animal/Panda/FLAG_SIT +FD: net/minecraft/world/entity/animal/Panda/f_148963_ net/minecraft/world/entity/animal/Panda/FLAG_ON_BACK +FD: net/minecraft/world/entity/animal/Panda/f_148964_ net/minecraft/world/entity/animal/Panda/EAT_TICK_INTERVAL +FD: net/minecraft/world/entity/animal/Panda/f_148965_ net/minecraft/world/entity/animal/Panda/TOTAL_UNHAPPY_TIME +FD: net/minecraft/world/entity/animal/Panda/f_29065_ net/minecraft/world/entity/animal/Panda/sitAmountO +FD: net/minecraft/world/entity/animal/Panda/f_29066_ net/minecraft/world/entity/animal/Panda/onBackAmount +FD: net/minecraft/world/entity/animal/Panda/f_29067_ net/minecraft/world/entity/animal/Panda/onBackAmountO +FD: net/minecraft/world/entity/animal/Panda/f_29068_ net/minecraft/world/entity/animal/Panda/rollAmount +FD: net/minecraft/world/entity/animal/Panda/f_29069_ net/minecraft/world/entity/animal/Panda/rollAmountO +FD: net/minecraft/world/entity/animal/Panda/f_29070_ net/minecraft/world/entity/animal/Panda/lookAtPlayerGoal +FD: net/minecraft/world/entity/animal/Panda/f_29071_ net/minecraft/world/entity/animal/Panda/PANDA_ITEMS +FD: net/minecraft/world/entity/animal/Panda/f_29072_ net/minecraft/world/entity/animal/Panda/rollCounter +FD: net/minecraft/world/entity/animal/Panda/f_29073_ net/minecraft/world/entity/animal/Panda/UNHAPPY_COUNTER +FD: net/minecraft/world/entity/animal/Panda/f_29074_ net/minecraft/world/entity/animal/Panda/SNEEZE_COUNTER +FD: net/minecraft/world/entity/animal/Panda/f_29075_ net/minecraft/world/entity/animal/Panda/EAT_COUNTER +FD: net/minecraft/world/entity/animal/Panda/f_29076_ net/minecraft/world/entity/animal/Panda/MAIN_GENE_ID +FD: net/minecraft/world/entity/animal/Panda/f_29077_ net/minecraft/world/entity/animal/Panda/HIDDEN_GENE_ID +FD: net/minecraft/world/entity/animal/Panda/f_29078_ net/minecraft/world/entity/animal/Panda/DATA_ID_FLAGS +FD: net/minecraft/world/entity/animal/Panda/f_29079_ net/minecraft/world/entity/animal/Panda/BREED_TARGETING +FD: net/minecraft/world/entity/animal/Panda/f_29080_ net/minecraft/world/entity/animal/Panda/gotBamboo +FD: net/minecraft/world/entity/animal/Panda/f_29081_ net/minecraft/world/entity/animal/Panda/didBite +FD: net/minecraft/world/entity/animal/Panda/f_29082_ net/minecraft/world/entity/animal/Panda/rollDelta +FD: net/minecraft/world/entity/animal/Panda/f_29083_ net/minecraft/world/entity/animal/Panda/sitAmount +FD: net/minecraft/world/entity/animal/Panda$Gene/$VALUES net/minecraft/world/entity/animal/Panda$Gene/$VALUES +FD: net/minecraft/world/entity/animal/Panda$Gene/AGGRESSIVE net/minecraft/world/entity/animal/Panda$Gene/AGGRESSIVE +FD: net/minecraft/world/entity/animal/Panda$Gene/BROWN net/minecraft/world/entity/animal/Panda$Gene/BROWN +FD: net/minecraft/world/entity/animal/Panda$Gene/LAZY net/minecraft/world/entity/animal/Panda$Gene/LAZY +FD: net/minecraft/world/entity/animal/Panda$Gene/NORMAL net/minecraft/world/entity/animal/Panda$Gene/NORMAL +FD: net/minecraft/world/entity/animal/Panda$Gene/PLAYFUL net/minecraft/world/entity/animal/Panda$Gene/PLAYFUL +FD: net/minecraft/world/entity/animal/Panda$Gene/WEAK net/minecraft/world/entity/animal/Panda$Gene/WEAK +FD: net/minecraft/world/entity/animal/Panda$Gene/WORRIED net/minecraft/world/entity/animal/Panda$Gene/WORRIED +FD: net/minecraft/world/entity/animal/Panda$Gene/f_148982_ net/minecraft/world/entity/animal/Panda$Gene/MAX_GENE +FD: net/minecraft/world/entity/animal/Panda$Gene/f_262727_ net/minecraft/world/entity/animal/Panda$Gene/CODEC +FD: net/minecraft/world/entity/animal/Panda$Gene/f_29235_ net/minecraft/world/entity/animal/Panda$Gene/BY_ID +FD: net/minecraft/world/entity/animal/Panda$Gene/f_29236_ net/minecraft/world/entity/animal/Panda$Gene/id +FD: net/minecraft/world/entity/animal/Panda$Gene/f_29237_ net/minecraft/world/entity/animal/Panda$Gene/name +FD: net/minecraft/world/entity/animal/Panda$Gene/f_29238_ net/minecraft/world/entity/animal/Panda$Gene/isRecessive +FD: net/minecraft/world/entity/animal/Panda$PandaAttackGoal/f_29267_ net/minecraft/world/entity/animal/Panda$PandaAttackGoal/panda +FD: net/minecraft/world/entity/animal/Panda$PandaAvoidGoal/f_29273_ net/minecraft/world/entity/animal/Panda$PandaAvoidGoal/panda +FD: net/minecraft/world/entity/animal/Panda$PandaBreedGoal/f_29282_ net/minecraft/world/entity/animal/Panda$PandaBreedGoal/panda +FD: net/minecraft/world/entity/animal/Panda$PandaBreedGoal/f_29283_ net/minecraft/world/entity/animal/Panda$PandaBreedGoal/unhappyCooldown +FD: net/minecraft/world/entity/animal/Panda$PandaHurtByTargetGoal/f_29290_ net/minecraft/world/entity/animal/Panda$PandaHurtByTargetGoal/panda +FD: net/minecraft/world/entity/animal/Panda$PandaLieOnBackGoal/f_29298_ net/minecraft/world/entity/animal/Panda$PandaLieOnBackGoal/panda +FD: net/minecraft/world/entity/animal/Panda$PandaLieOnBackGoal/f_29299_ net/minecraft/world/entity/animal/Panda$PandaLieOnBackGoal/cooldown +FD: net/minecraft/world/entity/animal/Panda$PandaLookAtPlayerGoal/f_29306_ net/minecraft/world/entity/animal/Panda$PandaLookAtPlayerGoal/panda +FD: net/minecraft/world/entity/animal/Panda$PandaMoveControl/f_29316_ net/minecraft/world/entity/animal/Panda$PandaMoveControl/panda +FD: net/minecraft/world/entity/animal/Panda$PandaPanicGoal/f_29320_ net/minecraft/world/entity/animal/Panda$PandaPanicGoal/panda +FD: net/minecraft/world/entity/animal/Panda$PandaRollGoal/f_29326_ net/minecraft/world/entity/animal/Panda$PandaRollGoal/panda +FD: net/minecraft/world/entity/animal/Panda$PandaSitGoal/f_29333_ net/minecraft/world/entity/animal/Panda$PandaSitGoal/this$0 +FD: net/minecraft/world/entity/animal/Panda$PandaSitGoal/f_29334_ net/minecraft/world/entity/animal/Panda$PandaSitGoal/cooldown +FD: net/minecraft/world/entity/animal/Panda$PandaSneezeGoal/f_29342_ net/minecraft/world/entity/animal/Panda$PandaSneezeGoal/panda +FD: net/minecraft/world/entity/animal/Parrot/f_148987_ net/minecraft/world/entity/animal/Parrot/nextFlap +FD: net/minecraft/world/entity/animal/Parrot/f_29348_ net/minecraft/world/entity/animal/Parrot/partyParrot +FD: net/minecraft/world/entity/animal/Parrot/f_29349_ net/minecraft/world/entity/animal/Parrot/jukebox +FD: net/minecraft/world/entity/animal/Parrot/f_29350_ net/minecraft/world/entity/animal/Parrot/flap +FD: net/minecraft/world/entity/animal/Parrot/f_29351_ net/minecraft/world/entity/animal/Parrot/flapSpeed +FD: net/minecraft/world/entity/animal/Parrot/f_29352_ net/minecraft/world/entity/animal/Parrot/oFlapSpeed +FD: net/minecraft/world/entity/animal/Parrot/f_29353_ net/minecraft/world/entity/animal/Parrot/oFlap +FD: net/minecraft/world/entity/animal/Parrot/f_29354_ net/minecraft/world/entity/animal/Parrot/DATA_VARIANT_ID +FD: net/minecraft/world/entity/animal/Parrot/f_29355_ net/minecraft/world/entity/animal/Parrot/NOT_PARROT_PREDICATE +FD: net/minecraft/world/entity/animal/Parrot/f_29356_ net/minecraft/world/entity/animal/Parrot/POISONOUS_FOOD +FD: net/minecraft/world/entity/animal/Parrot/f_29357_ net/minecraft/world/entity/animal/Parrot/TAME_FOOD +FD: net/minecraft/world/entity/animal/Parrot/f_29358_ net/minecraft/world/entity/animal/Parrot/MOB_SOUND_MAP +FD: net/minecraft/world/entity/animal/Parrot/f_29359_ net/minecraft/world/entity/animal/Parrot/flapping +FD: net/minecraft/world/entity/animal/Parrot$Variant/$VALUES net/minecraft/world/entity/animal/Parrot$Variant/$VALUES +FD: net/minecraft/world/entity/animal/Parrot$Variant/BLUE net/minecraft/world/entity/animal/Parrot$Variant/BLUE +FD: net/minecraft/world/entity/animal/Parrot$Variant/GRAY net/minecraft/world/entity/animal/Parrot$Variant/GRAY +FD: net/minecraft/world/entity/animal/Parrot$Variant/GREEN net/minecraft/world/entity/animal/Parrot$Variant/GREEN +FD: net/minecraft/world/entity/animal/Parrot$Variant/RED_BLUE net/minecraft/world/entity/animal/Parrot$Variant/RED_BLUE +FD: net/minecraft/world/entity/animal/Parrot$Variant/YELLOW_BLUE net/minecraft/world/entity/animal/Parrot$Variant/YELLOW_BLUE +FD: net/minecraft/world/entity/animal/Parrot$Variant/f_262209_ net/minecraft/world/entity/animal/Parrot$Variant/BY_ID +FD: net/minecraft/world/entity/animal/Parrot$Variant/f_262294_ net/minecraft/world/entity/animal/Parrot$Variant/id +FD: net/minecraft/world/entity/animal/Parrot$Variant/f_262304_ net/minecraft/world/entity/animal/Parrot$Variant/CODEC +FD: net/minecraft/world/entity/animal/Parrot$Variant/f_262312_ net/minecraft/world/entity/animal/Parrot$Variant/name +FD: net/minecraft/world/entity/animal/Pig/f_29456_ net/minecraft/world/entity/animal/Pig/DATA_SADDLE_ID +FD: net/minecraft/world/entity/animal/Pig/f_29457_ net/minecraft/world/entity/animal/Pig/DATA_BOOST_TIME +FD: net/minecraft/world/entity/animal/Pig/f_29458_ net/minecraft/world/entity/animal/Pig/FOOD_ITEMS +FD: net/minecraft/world/entity/animal/Pig/f_29459_ net/minecraft/world/entity/animal/Pig/steering +FD: net/minecraft/world/entity/animal/PolarBear/f_149003_ net/minecraft/world/entity/animal/PolarBear/STAND_ANIMATION_TICKS +FD: net/minecraft/world/entity/animal/PolarBear/f_29510_ net/minecraft/world/entity/animal/PolarBear/DATA_STANDING_ID +FD: net/minecraft/world/entity/animal/PolarBear/f_29511_ net/minecraft/world/entity/animal/PolarBear/clientSideStandAnimationO +FD: net/minecraft/world/entity/animal/PolarBear/f_29512_ net/minecraft/world/entity/animal/PolarBear/clientSideStandAnimation +FD: net/minecraft/world/entity/animal/PolarBear/f_29513_ net/minecraft/world/entity/animal/PolarBear/warningSoundTicks +FD: net/minecraft/world/entity/animal/PolarBear/f_29514_ net/minecraft/world/entity/animal/PolarBear/PERSISTENT_ANGER_TIME +FD: net/minecraft/world/entity/animal/PolarBear/f_29515_ net/minecraft/world/entity/animal/PolarBear/remainingPersistentAngerTime +FD: net/minecraft/world/entity/animal/PolarBear/f_29516_ net/minecraft/world/entity/animal/PolarBear/persistentAngerTarget +FD: net/minecraft/world/entity/animal/PolarBear$PolarBearAttackPlayersGoal/f_29571_ net/minecraft/world/entity/animal/PolarBear$PolarBearAttackPlayersGoal/this$0 +FD: net/minecraft/world/entity/animal/PolarBear$PolarBearHurtByTargetGoal/f_29576_ net/minecraft/world/entity/animal/PolarBear$PolarBearHurtByTargetGoal/this$0 +FD: net/minecraft/world/entity/animal/PolarBear$PolarBearMeleeAttackGoal/f_29583_ net/minecraft/world/entity/animal/PolarBear$PolarBearMeleeAttackGoal/this$0 +FD: net/minecraft/world/entity/animal/PolarBear$PolarBearPanicGoal/f_29592_ net/minecraft/world/entity/animal/PolarBear$PolarBearPanicGoal/this$0 +FD: net/minecraft/world/entity/animal/Pufferfish/f_149007_ net/minecraft/world/entity/animal/Pufferfish/STATE_SMALL +FD: net/minecraft/world/entity/animal/Pufferfish/f_149008_ net/minecraft/world/entity/animal/Pufferfish/SCARY_MOB +FD: net/minecraft/world/entity/animal/Pufferfish/f_149009_ net/minecraft/world/entity/animal/Pufferfish/targetingConditions +FD: net/minecraft/world/entity/animal/Pufferfish/f_149010_ net/minecraft/world/entity/animal/Pufferfish/STATE_MID +FD: net/minecraft/world/entity/animal/Pufferfish/f_149011_ net/minecraft/world/entity/animal/Pufferfish/STATE_FULL +FD: net/minecraft/world/entity/animal/Pufferfish/f_29596_ net/minecraft/world/entity/animal/Pufferfish/PUFF_STATE +FD: net/minecraft/world/entity/animal/Pufferfish/f_29598_ net/minecraft/world/entity/animal/Pufferfish/inflateCounter +FD: net/minecraft/world/entity/animal/Pufferfish/f_29599_ net/minecraft/world/entity/animal/Pufferfish/deflateTimer +FD: net/minecraft/world/entity/animal/Pufferfish$PufferfishPuffGoal/f_29640_ net/minecraft/world/entity/animal/Pufferfish$PufferfishPuffGoal/fish +FD: net/minecraft/world/entity/animal/Rabbit/f_149016_ net/minecraft/world/entity/animal/Rabbit/STROLL_SPEED_MOD +FD: net/minecraft/world/entity/animal/Rabbit/f_149017_ net/minecraft/world/entity/animal/Rabbit/BREED_SPEED_MOD +FD: net/minecraft/world/entity/animal/Rabbit/f_149018_ net/minecraft/world/entity/animal/Rabbit/FOLLOW_SPEED_MOD +FD: net/minecraft/world/entity/animal/Rabbit/f_149019_ net/minecraft/world/entity/animal/Rabbit/FLEE_SPEED_MOD +FD: net/minecraft/world/entity/animal/Rabbit/f_149020_ net/minecraft/world/entity/animal/Rabbit/ATTACK_SPEED_MOD +FD: net/minecraft/world/entity/animal/Rabbit/f_149028_ net/minecraft/world/entity/animal/Rabbit/EVIL_ATTACK_POWER +FD: net/minecraft/world/entity/animal/Rabbit/f_149029_ net/minecraft/world/entity/animal/Rabbit/EVIL_ARMOR_VALUE +FD: net/minecraft/world/entity/animal/Rabbit/f_149030_ net/minecraft/world/entity/animal/Rabbit/MORE_CARROTS_DELAY +FD: net/minecraft/world/entity/animal/Rabbit/f_29647_ net/minecraft/world/entity/animal/Rabbit/DATA_TYPE_ID +FD: net/minecraft/world/entity/animal/Rabbit/f_29648_ net/minecraft/world/entity/animal/Rabbit/KILLER_BUNNY +FD: net/minecraft/world/entity/animal/Rabbit/f_29649_ net/minecraft/world/entity/animal/Rabbit/jumpTicks +FD: net/minecraft/world/entity/animal/Rabbit/f_29650_ net/minecraft/world/entity/animal/Rabbit/jumpDuration +FD: net/minecraft/world/entity/animal/Rabbit/f_29651_ net/minecraft/world/entity/animal/Rabbit/wasOnGround +FD: net/minecraft/world/entity/animal/Rabbit/f_29652_ net/minecraft/world/entity/animal/Rabbit/jumpDelayTicks +FD: net/minecraft/world/entity/animal/Rabbit/f_29653_ net/minecraft/world/entity/animal/Rabbit/moreCarrotTicks +FD: net/minecraft/world/entity/animal/Rabbit$RabbitAvoidEntityGoal/f_29741_ net/minecraft/world/entity/animal/Rabbit$RabbitAvoidEntityGoal/rabbit +FD: net/minecraft/world/entity/animal/Rabbit$RabbitGroupData/f_262235_ net/minecraft/world/entity/animal/Rabbit$RabbitGroupData/variant +FD: net/minecraft/world/entity/animal/Rabbit$RabbitJumpControl/f_29753_ net/minecraft/world/entity/animal/Rabbit$RabbitJumpControl/rabbit +FD: net/minecraft/world/entity/animal/Rabbit$RabbitJumpControl/f_29754_ net/minecraft/world/entity/animal/Rabbit$RabbitJumpControl/canJump +FD: net/minecraft/world/entity/animal/Rabbit$RabbitMoveControl/f_29763_ net/minecraft/world/entity/animal/Rabbit$RabbitMoveControl/rabbit +FD: net/minecraft/world/entity/animal/Rabbit$RabbitMoveControl/f_29764_ net/minecraft/world/entity/animal/Rabbit$RabbitMoveControl/nextJumpSpeed +FD: net/minecraft/world/entity/animal/Rabbit$RabbitPanicGoal/f_29773_ net/minecraft/world/entity/animal/Rabbit$RabbitPanicGoal/rabbit +FD: net/minecraft/world/entity/animal/Rabbit$RaidGardenGoal/f_29778_ net/minecraft/world/entity/animal/Rabbit$RaidGardenGoal/rabbit +FD: net/minecraft/world/entity/animal/Rabbit$RaidGardenGoal/f_29779_ net/minecraft/world/entity/animal/Rabbit$RaidGardenGoal/wantsToRaid +FD: net/minecraft/world/entity/animal/Rabbit$RaidGardenGoal/f_29780_ net/minecraft/world/entity/animal/Rabbit$RaidGardenGoal/canRaid +FD: net/minecraft/world/entity/animal/Rabbit$Variant/$VALUES net/minecraft/world/entity/animal/Rabbit$Variant/$VALUES +FD: net/minecraft/world/entity/animal/Rabbit$Variant/BLACK net/minecraft/world/entity/animal/Rabbit$Variant/BLACK +FD: net/minecraft/world/entity/animal/Rabbit$Variant/BROWN net/minecraft/world/entity/animal/Rabbit$Variant/BROWN +FD: net/minecraft/world/entity/animal/Rabbit$Variant/EVIL net/minecraft/world/entity/animal/Rabbit$Variant/EVIL +FD: net/minecraft/world/entity/animal/Rabbit$Variant/GOLD net/minecraft/world/entity/animal/Rabbit$Variant/GOLD +FD: net/minecraft/world/entity/animal/Rabbit$Variant/SALT net/minecraft/world/entity/animal/Rabbit$Variant/SALT +FD: net/minecraft/world/entity/animal/Rabbit$Variant/WHITE net/minecraft/world/entity/animal/Rabbit$Variant/WHITE +FD: net/minecraft/world/entity/animal/Rabbit$Variant/WHITE_SPLOTCHED net/minecraft/world/entity/animal/Rabbit$Variant/WHITE_SPLOTCHED +FD: net/minecraft/world/entity/animal/Rabbit$Variant/f_262203_ net/minecraft/world/entity/animal/Rabbit$Variant/id +FD: net/minecraft/world/entity/animal/Rabbit$Variant/f_262245_ net/minecraft/world/entity/animal/Rabbit$Variant/CODEC +FD: net/minecraft/world/entity/animal/Rabbit$Variant/f_262279_ net/minecraft/world/entity/animal/Rabbit$Variant/name +FD: net/minecraft/world/entity/animal/Rabbit$Variant/f_262319_ net/minecraft/world/entity/animal/Rabbit$Variant/BY_ID +FD: net/minecraft/world/entity/animal/Sheep/f_149039_ net/minecraft/world/entity/animal/Sheep/EAT_ANIMATION_TICKS +FD: net/minecraft/world/entity/animal/Sheep/f_29799_ net/minecraft/world/entity/animal/Sheep/DATA_WOOL_ID +FD: net/minecraft/world/entity/animal/Sheep/f_29800_ net/minecraft/world/entity/animal/Sheep/ITEM_BY_DYE +FD: net/minecraft/world/entity/animal/Sheep/f_29801_ net/minecraft/world/entity/animal/Sheep/COLORARRAY_BY_COLOR +FD: net/minecraft/world/entity/animal/Sheep/f_29802_ net/minecraft/world/entity/animal/Sheep/eatAnimationTick +FD: net/minecraft/world/entity/animal/Sheep/f_29803_ net/minecraft/world/entity/animal/Sheep/eatBlockGoal +FD: net/minecraft/world/entity/animal/Sheep$2/f_29889_ net/minecraft/world/entity/animal/Sheep$2/$SwitchMap$net$minecraft$world$item$DyeColor +FD: net/minecraft/world/entity/animal/ShoulderRidingEntity/f_149046_ net/minecraft/world/entity/animal/ShoulderRidingEntity/RIDE_COOLDOWN +FD: net/minecraft/world/entity/animal/ShoulderRidingEntity/f_29891_ net/minecraft/world/entity/animal/ShoulderRidingEntity/rideCooldownCounter +FD: net/minecraft/world/entity/animal/SnowGolem/f_149047_ net/minecraft/world/entity/animal/SnowGolem/PUMPKIN_FLAG +FD: net/minecraft/world/entity/animal/SnowGolem/f_149048_ net/minecraft/world/entity/animal/SnowGolem/EYE_HEIGHT +FD: net/minecraft/world/entity/animal/SnowGolem/f_29899_ net/minecraft/world/entity/animal/SnowGolem/DATA_PUMPKIN_ID +FD: net/minecraft/world/entity/animal/Squid/f_29938_ net/minecraft/world/entity/animal/Squid/xBodyRot +FD: net/minecraft/world/entity/animal/Squid/f_29939_ net/minecraft/world/entity/animal/Squid/zBodyRotO +FD: net/minecraft/world/entity/animal/Squid/f_29940_ net/minecraft/world/entity/animal/Squid/tentacleMovement +FD: net/minecraft/world/entity/animal/Squid/f_29941_ net/minecraft/world/entity/animal/Squid/oldTentacleMovement +FD: net/minecraft/world/entity/animal/Squid/f_29942_ net/minecraft/world/entity/animal/Squid/tentacleAngle +FD: net/minecraft/world/entity/animal/Squid/f_29943_ net/minecraft/world/entity/animal/Squid/oldTentacleAngle +FD: net/minecraft/world/entity/animal/Squid/f_29944_ net/minecraft/world/entity/animal/Squid/speed +FD: net/minecraft/world/entity/animal/Squid/f_29945_ net/minecraft/world/entity/animal/Squid/tentacleSpeed +FD: net/minecraft/world/entity/animal/Squid/f_29946_ net/minecraft/world/entity/animal/Squid/rotateSpeed +FD: net/minecraft/world/entity/animal/Squid/f_29947_ net/minecraft/world/entity/animal/Squid/tx +FD: net/minecraft/world/entity/animal/Squid/f_29948_ net/minecraft/world/entity/animal/Squid/ty +FD: net/minecraft/world/entity/animal/Squid/f_29949_ net/minecraft/world/entity/animal/Squid/tz +FD: net/minecraft/world/entity/animal/Squid/f_29950_ net/minecraft/world/entity/animal/Squid/xBodyRotO +FD: net/minecraft/world/entity/animal/Squid/f_29951_ net/minecraft/world/entity/animal/Squid/zBodyRot +FD: net/minecraft/world/entity/animal/Squid$SquidFleeGoal/f_149054_ net/minecraft/world/entity/animal/Squid$SquidFleeGoal/SQUID_FLEE_SPEED +FD: net/minecraft/world/entity/animal/Squid$SquidFleeGoal/f_149055_ net/minecraft/world/entity/animal/Squid$SquidFleeGoal/SQUID_FLEE_MIN_DISTANCE +FD: net/minecraft/world/entity/animal/Squid$SquidFleeGoal/f_149056_ net/minecraft/world/entity/animal/Squid$SquidFleeGoal/SQUID_FLEE_MAX_DISTANCE +FD: net/minecraft/world/entity/animal/Squid$SquidFleeGoal/f_29990_ net/minecraft/world/entity/animal/Squid$SquidFleeGoal/this$0 +FD: net/minecraft/world/entity/animal/Squid$SquidFleeGoal/f_29991_ net/minecraft/world/entity/animal/Squid$SquidFleeGoal/fleeTicks +FD: net/minecraft/world/entity/animal/Squid$SquidRandomMovementGoal/f_30000_ net/minecraft/world/entity/animal/Squid$SquidRandomMovementGoal/this$0 +FD: net/minecraft/world/entity/animal/Squid$SquidRandomMovementGoal/f_30001_ net/minecraft/world/entity/animal/Squid$SquidRandomMovementGoal/squid +FD: net/minecraft/world/entity/animal/TropicalFish/f_149057_ net/minecraft/world/entity/animal/TropicalFish/BUCKET_VARIANT_TAG +FD: net/minecraft/world/entity/animal/TropicalFish/f_30007_ net/minecraft/world/entity/animal/TropicalFish/COMMON_VARIANTS +FD: net/minecraft/world/entity/animal/TropicalFish/f_30010_ net/minecraft/world/entity/animal/TropicalFish/isSchool +FD: net/minecraft/world/entity/animal/TropicalFish/f_30011_ net/minecraft/world/entity/animal/TropicalFish/DATA_ID_TYPE_VARIANT +FD: net/minecraft/world/entity/animal/TropicalFish$Base/$VALUES net/minecraft/world/entity/animal/TropicalFish$Base/$VALUES +FD: net/minecraft/world/entity/animal/TropicalFish$Base/LARGE net/minecraft/world/entity/animal/TropicalFish$Base/LARGE +FD: net/minecraft/world/entity/animal/TropicalFish$Base/SMALL net/minecraft/world/entity/animal/TropicalFish$Base/SMALL +FD: net/minecraft/world/entity/animal/TropicalFish$Base/f_262205_ net/minecraft/world/entity/animal/TropicalFish$Base/id +FD: net/minecraft/world/entity/animal/TropicalFish$Pattern/$VALUES net/minecraft/world/entity/animal/TropicalFish$Pattern/$VALUES +FD: net/minecraft/world/entity/animal/TropicalFish$Pattern/BETTY net/minecraft/world/entity/animal/TropicalFish$Pattern/BETTY +FD: net/minecraft/world/entity/animal/TropicalFish$Pattern/BLOCKFISH net/minecraft/world/entity/animal/TropicalFish$Pattern/BLOCKFISH +FD: net/minecraft/world/entity/animal/TropicalFish$Pattern/BRINELY net/minecraft/world/entity/animal/TropicalFish$Pattern/BRINELY +FD: net/minecraft/world/entity/animal/TropicalFish$Pattern/CLAYFISH net/minecraft/world/entity/animal/TropicalFish$Pattern/CLAYFISH +FD: net/minecraft/world/entity/animal/TropicalFish$Pattern/DASHER net/minecraft/world/entity/animal/TropicalFish$Pattern/DASHER +FD: net/minecraft/world/entity/animal/TropicalFish$Pattern/FLOPPER net/minecraft/world/entity/animal/TropicalFish$Pattern/FLOPPER +FD: net/minecraft/world/entity/animal/TropicalFish$Pattern/GLITTER net/minecraft/world/entity/animal/TropicalFish$Pattern/GLITTER +FD: net/minecraft/world/entity/animal/TropicalFish$Pattern/KOB net/minecraft/world/entity/animal/TropicalFish$Pattern/KOB +FD: net/minecraft/world/entity/animal/TropicalFish$Pattern/SNOOPER net/minecraft/world/entity/animal/TropicalFish$Pattern/SNOOPER +FD: net/minecraft/world/entity/animal/TropicalFish$Pattern/SPOTTY net/minecraft/world/entity/animal/TropicalFish$Pattern/SPOTTY +FD: net/minecraft/world/entity/animal/TropicalFish$Pattern/STRIPEY net/minecraft/world/entity/animal/TropicalFish$Pattern/STRIPEY +FD: net/minecraft/world/entity/animal/TropicalFish$Pattern/SUNSTREAK net/minecraft/world/entity/animal/TropicalFish$Pattern/SUNSTREAK +FD: net/minecraft/world/entity/animal/TropicalFish$Pattern/f_262207_ net/minecraft/world/entity/animal/TropicalFish$Pattern/displayName +FD: net/minecraft/world/entity/animal/TropicalFish$Pattern/f_262219_ net/minecraft/world/entity/animal/TropicalFish$Pattern/packedId +FD: net/minecraft/world/entity/animal/TropicalFish$Pattern/f_262228_ net/minecraft/world/entity/animal/TropicalFish$Pattern/name +FD: net/minecraft/world/entity/animal/TropicalFish$Pattern/f_262299_ net/minecraft/world/entity/animal/TropicalFish$Pattern/BY_ID +FD: net/minecraft/world/entity/animal/TropicalFish$Pattern/f_262323_ net/minecraft/world/entity/animal/TropicalFish$Pattern/CODEC +FD: net/minecraft/world/entity/animal/TropicalFish$Pattern/f_30078_ net/minecraft/world/entity/animal/TropicalFish$Pattern/base +FD: net/minecraft/world/entity/animal/TropicalFish$TropicalFishGroupData/f_262277_ net/minecraft/world/entity/animal/TropicalFish$TropicalFishGroupData/variant +FD: net/minecraft/world/entity/animal/TropicalFish$Variant/f_262204_ net/minecraft/world/entity/animal/TropicalFish$Variant/pattern +FD: net/minecraft/world/entity/animal/TropicalFish$Variant/f_262223_ net/minecraft/world/entity/animal/TropicalFish$Variant/patternColor +FD: net/minecraft/world/entity/animal/TropicalFish$Variant/f_262309_ net/minecraft/world/entity/animal/TropicalFish$Variant/baseColor +FD: net/minecraft/world/entity/animal/Turtle/f_149066_ net/minecraft/world/entity/animal/Turtle/FOOD_ITEMS +FD: net/minecraft/world/entity/animal/Turtle/f_30122_ net/minecraft/world/entity/animal/Turtle/BABY_ON_LAND_SELECTOR +FD: net/minecraft/world/entity/animal/Turtle/f_30123_ net/minecraft/world/entity/animal/Turtle/HOME_POS +FD: net/minecraft/world/entity/animal/Turtle/f_30124_ net/minecraft/world/entity/animal/Turtle/HAS_EGG +FD: net/minecraft/world/entity/animal/Turtle/f_30125_ net/minecraft/world/entity/animal/Turtle/LAYING_EGG +FD: net/minecraft/world/entity/animal/Turtle/f_30126_ net/minecraft/world/entity/animal/Turtle/TRAVEL_POS +FD: net/minecraft/world/entity/animal/Turtle/f_30127_ net/minecraft/world/entity/animal/Turtle/GOING_HOME +FD: net/minecraft/world/entity/animal/Turtle/f_30128_ net/minecraft/world/entity/animal/Turtle/TRAVELLING +FD: net/minecraft/world/entity/animal/Turtle/f_30129_ net/minecraft/world/entity/animal/Turtle/layEggCounter +FD: net/minecraft/world/entity/animal/Turtle$TurtleBreedGoal/f_30242_ net/minecraft/world/entity/animal/Turtle$TurtleBreedGoal/turtle +FD: net/minecraft/world/entity/animal/Turtle$TurtleGoHomeGoal/f_149074_ net/minecraft/world/entity/animal/Turtle$TurtleGoHomeGoal/GIVE_UP_TICKS +FD: net/minecraft/world/entity/animal/Turtle$TurtleGoHomeGoal/f_30248_ net/minecraft/world/entity/animal/Turtle$TurtleGoHomeGoal/turtle +FD: net/minecraft/world/entity/animal/Turtle$TurtleGoHomeGoal/f_30249_ net/minecraft/world/entity/animal/Turtle$TurtleGoHomeGoal/speedModifier +FD: net/minecraft/world/entity/animal/Turtle$TurtleGoHomeGoal/f_30250_ net/minecraft/world/entity/animal/Turtle$TurtleGoHomeGoal/stuck +FD: net/minecraft/world/entity/animal/Turtle$TurtleGoHomeGoal/f_30251_ net/minecraft/world/entity/animal/Turtle$TurtleGoHomeGoal/closeToHomeTryTicks +FD: net/minecraft/world/entity/animal/Turtle$TurtleGoToWaterGoal/f_149075_ net/minecraft/world/entity/animal/Turtle$TurtleGoToWaterGoal/GIVE_UP_TICKS +FD: net/minecraft/world/entity/animal/Turtle$TurtleGoToWaterGoal/f_30260_ net/minecraft/world/entity/animal/Turtle$TurtleGoToWaterGoal/turtle +FD: net/minecraft/world/entity/animal/Turtle$TurtleLayEggGoal/f_30274_ net/minecraft/world/entity/animal/Turtle$TurtleLayEggGoal/turtle +FD: net/minecraft/world/entity/animal/Turtle$TurtleMoveControl/f_30284_ net/minecraft/world/entity/animal/Turtle$TurtleMoveControl/turtle +FD: net/minecraft/world/entity/animal/Turtle$TurtleRandomStrollGoal/f_30301_ net/minecraft/world/entity/animal/Turtle$TurtleRandomStrollGoal/turtle +FD: net/minecraft/world/entity/animal/Turtle$TurtleTravelGoal/f_30329_ net/minecraft/world/entity/animal/Turtle$TurtleTravelGoal/turtle +FD: net/minecraft/world/entity/animal/Turtle$TurtleTravelGoal/f_30330_ net/minecraft/world/entity/animal/Turtle$TurtleTravelGoal/speedModifier +FD: net/minecraft/world/entity/animal/Turtle$TurtleTravelGoal/f_30331_ net/minecraft/world/entity/animal/Turtle$TurtleTravelGoal/stuck +FD: net/minecraft/world/entity/animal/Wolf/f_149082_ net/minecraft/world/entity/animal/Wolf/START_HEALTH +FD: net/minecraft/world/entity/animal/Wolf/f_149083_ net/minecraft/world/entity/animal/Wolf/TAME_HEALTH +FD: net/minecraft/world/entity/animal/Wolf/f_30355_ net/minecraft/world/entity/animal/Wolf/PERSISTENT_ANGER_TIME +FD: net/minecraft/world/entity/animal/Wolf/f_30356_ net/minecraft/world/entity/animal/Wolf/persistentAngerTarget +FD: net/minecraft/world/entity/animal/Wolf/f_30357_ net/minecraft/world/entity/animal/Wolf/PREY_SELECTOR +FD: net/minecraft/world/entity/animal/Wolf/f_30358_ net/minecraft/world/entity/animal/Wolf/DATA_INTERESTED_ID +FD: net/minecraft/world/entity/animal/Wolf/f_30359_ net/minecraft/world/entity/animal/Wolf/DATA_COLLAR_COLOR +FD: net/minecraft/world/entity/animal/Wolf/f_30360_ net/minecraft/world/entity/animal/Wolf/DATA_REMAINING_ANGER_TIME +FD: net/minecraft/world/entity/animal/Wolf/f_30361_ net/minecraft/world/entity/animal/Wolf/interestedAngle +FD: net/minecraft/world/entity/animal/Wolf/f_30362_ net/minecraft/world/entity/animal/Wolf/interestedAngleO +FD: net/minecraft/world/entity/animal/Wolf/f_30363_ net/minecraft/world/entity/animal/Wolf/isWet +FD: net/minecraft/world/entity/animal/Wolf/f_30364_ net/minecraft/world/entity/animal/Wolf/isShaking +FD: net/minecraft/world/entity/animal/Wolf/f_30365_ net/minecraft/world/entity/animal/Wolf/shakeAnim +FD: net/minecraft/world/entity/animal/Wolf/f_30366_ net/minecraft/world/entity/animal/Wolf/shakeAnimO +FD: net/minecraft/world/entity/animal/Wolf$WolfAvoidEntityGoal/f_30450_ net/minecraft/world/entity/animal/Wolf$WolfAvoidEntityGoal/this$0 +FD: net/minecraft/world/entity/animal/Wolf$WolfAvoidEntityGoal/f_30451_ net/minecraft/world/entity/animal/Wolf$WolfAvoidEntityGoal/wolf +FD: net/minecraft/world/entity/animal/Wolf$WolfPanicGoal/f_203121_ net/minecraft/world/entity/animal/Wolf$WolfPanicGoal/this$0 +FD: net/minecraft/world/entity/animal/allay/Allay/f_218297_ net/minecraft/world/entity/animal/allay/Allay/SENSOR_TYPES +FD: net/minecraft/world/entity/animal/allay/Allay/f_218299_ net/minecraft/world/entity/animal/allay/Allay/ITEM_PICKUP_REACH +FD: net/minecraft/world/entity/animal/allay/Allay/f_218301_ net/minecraft/world/entity/animal/allay/Allay/MEMORY_TYPES +FD: net/minecraft/world/entity/animal/allay/Allay/f_218303_ net/minecraft/world/entity/animal/allay/Allay/inventory +FD: net/minecraft/world/entity/animal/allay/Allay/f_218304_ net/minecraft/world/entity/animal/allay/Allay/holdingItemAnimationTicks +FD: net/minecraft/world/entity/animal/allay/Allay/f_218305_ net/minecraft/world/entity/animal/allay/Allay/holdingItemAnimationTicks0 +FD: net/minecraft/world/entity/animal/allay/Allay/f_218306_ net/minecraft/world/entity/animal/allay/Allay/THROW_SOUND_PITCHES +FD: net/minecraft/world/entity/animal/allay/Allay/f_218307_ net/minecraft/world/entity/animal/allay/Allay/LOGGER +FD: net/minecraft/world/entity/animal/allay/Allay/f_238541_ net/minecraft/world/entity/animal/allay/Allay/spinningAnimationTicks +FD: net/minecraft/world/entity/animal/allay/Allay/f_238543_ net/minecraft/world/entity/animal/allay/Allay/DUPLICATION_COOLDOWN_TICKS +FD: net/minecraft/world/entity/animal/allay/Allay/f_238552_ net/minecraft/world/entity/animal/allay/Allay/spinningAnimationTicks0 +FD: net/minecraft/world/entity/animal/allay/Allay/f_238563_ net/minecraft/world/entity/animal/allay/Allay/dynamicJukeboxListener +FD: net/minecraft/world/entity/animal/allay/Allay/f_238627_ net/minecraft/world/entity/animal/allay/Allay/DATA_DANCING +FD: net/minecraft/world/entity/animal/allay/Allay/f_238650_ net/minecraft/world/entity/animal/allay/Allay/SPINNING_ANIMATION_DURATION +FD: net/minecraft/world/entity/animal/allay/Allay/f_238682_ net/minecraft/world/entity/animal/allay/Allay/jukeboxPos +FD: net/minecraft/world/entity/animal/allay/Allay/f_238685_ net/minecraft/world/entity/animal/allay/Allay/dynamicVibrationListener +FD: net/minecraft/world/entity/animal/allay/Allay/f_238687_ net/minecraft/world/entity/animal/allay/Allay/dancingAnimationTicks +FD: net/minecraft/world/entity/animal/allay/Allay/f_238696_ net/minecraft/world/entity/animal/allay/Allay/DANCING_LOOP_DURATION +FD: net/minecraft/world/entity/animal/allay/Allay/f_238742_ net/minecraft/world/entity/animal/allay/Allay/NUM_OF_DUPLICATION_HEARTS +FD: net/minecraft/world/entity/animal/allay/Allay/f_238768_ net/minecraft/world/entity/animal/allay/Allay/LIFTING_ITEM_ANIMATION_DURATION +FD: net/minecraft/world/entity/animal/allay/Allay/f_238776_ net/minecraft/world/entity/animal/allay/Allay/DUPLICATION_ITEM +FD: net/minecraft/world/entity/animal/allay/Allay/f_238791_ net/minecraft/world/entity/animal/allay/Allay/duplicationCooldown +FD: net/minecraft/world/entity/animal/allay/Allay/f_238802_ net/minecraft/world/entity/animal/allay/Allay/DATA_CAN_DUPLICATE +FD: net/minecraft/world/entity/animal/allay/Allay/f_243732_ net/minecraft/world/entity/animal/allay/Allay/RIDING_OFFSET +FD: net/minecraft/world/entity/animal/allay/Allay/f_279563_ net/minecraft/world/entity/animal/allay/Allay/vibrationUser +FD: net/minecraft/world/entity/animal/allay/Allay/f_279586_ net/minecraft/world/entity/animal/allay/Allay/vibrationData +FD: net/minecraft/world/entity/animal/allay/Allay$JukeboxListener/f_238537_ net/minecraft/world/entity/animal/allay/Allay$JukeboxListener/listenerSource +FD: net/minecraft/world/entity/animal/allay/Allay$JukeboxListener/f_238591_ net/minecraft/world/entity/animal/allay/Allay$JukeboxListener/this$0 +FD: net/minecraft/world/entity/animal/allay/Allay$JukeboxListener/f_238604_ net/minecraft/world/entity/animal/allay/Allay$JukeboxListener/listenerRadius +FD: net/minecraft/world/entity/animal/allay/Allay$VibrationUser/f_279537_ net/minecraft/world/entity/animal/allay/Allay$VibrationUser/VIBRATION_EVENT_LISTENER_RANGE +FD: net/minecraft/world/entity/animal/allay/Allay$VibrationUser/f_279641_ net/minecraft/world/entity/animal/allay/Allay$VibrationUser/positionSource +FD: net/minecraft/world/entity/animal/allay/Allay$VibrationUser/f_279649_ net/minecraft/world/entity/animal/allay/Allay$VibrationUser/this$0 +FD: net/minecraft/world/entity/animal/allay/AllayAi/f_218396_ net/minecraft/world/entity/animal/allay/AllayAi/SPEED_MULTIPLIER_WHEN_IDLING +FD: net/minecraft/world/entity/animal/allay/AllayAi/f_218397_ net/minecraft/world/entity/animal/allay/AllayAi/SPEED_MULTIPLIER_WHEN_FOLLOWING_DEPOSIT_TARGET +FD: net/minecraft/world/entity/animal/allay/AllayAi/f_218398_ net/minecraft/world/entity/animal/allay/AllayAi/SPEED_MULTIPLIER_WHEN_RETRIEVING_ITEM +FD: net/minecraft/world/entity/animal/allay/AllayAi/f_218399_ net/minecraft/world/entity/animal/allay/AllayAi/SPEED_MULTIPLIER_WHEN_PANICKING +FD: net/minecraft/world/entity/animal/allay/AllayAi/f_218400_ net/minecraft/world/entity/animal/allay/AllayAi/CLOSE_ENOUGH_TO_TARGET +FD: net/minecraft/world/entity/animal/allay/AllayAi/f_218401_ net/minecraft/world/entity/animal/allay/AllayAi/TOO_FAR_FROM_TARGET +FD: net/minecraft/world/entity/animal/allay/AllayAi/f_218402_ net/minecraft/world/entity/animal/allay/AllayAi/MAX_LOOK_DISTANCE +FD: net/minecraft/world/entity/animal/allay/AllayAi/f_218403_ net/minecraft/world/entity/animal/allay/AllayAi/MIN_WAIT_DURATION +FD: net/minecraft/world/entity/animal/allay/AllayAi/f_218404_ net/minecraft/world/entity/animal/allay/AllayAi/MAX_WAIT_DURATION +FD: net/minecraft/world/entity/animal/allay/AllayAi/f_218405_ net/minecraft/world/entity/animal/allay/AllayAi/TIME_TO_FORGET_NOTEBLOCK +FD: net/minecraft/world/entity/animal/allay/AllayAi/f_218406_ net/minecraft/world/entity/animal/allay/AllayAi/DISTANCE_TO_WANTED_ITEM +FD: net/minecraft/world/entity/animal/allay/AllayAi/f_244467_ net/minecraft/world/entity/animal/allay/AllayAi/GIVE_ITEM_TIMEOUT_DURATION +FD: net/minecraft/world/entity/animal/axolotl/Axolotl/f_149090_ net/minecraft/world/entity/animal/axolotl/Axolotl/TOTAL_PLAYDEAD_TIME +FD: net/minecraft/world/entity/animal/axolotl/Axolotl/f_149091_ net/minecraft/world/entity/animal/axolotl/Axolotl/SENSOR_TYPES +FD: net/minecraft/world/entity/animal/axolotl/Axolotl/f_149092_ net/minecraft/world/entity/animal/axolotl/Axolotl/MEMORY_TYPES +FD: net/minecraft/world/entity/animal/axolotl/Axolotl/f_149093_ net/minecraft/world/entity/animal/axolotl/Axolotl/PLAYER_REGEN_DETECTION_RANGE +FD: net/minecraft/world/entity/animal/axolotl/Axolotl/f_149094_ net/minecraft/world/entity/animal/axolotl/Axolotl/RARE_VARIANT_CHANCE +FD: net/minecraft/world/entity/animal/axolotl/Axolotl/f_149095_ net/minecraft/world/entity/animal/axolotl/Axolotl/VARIANT_TAG +FD: net/minecraft/world/entity/animal/axolotl/Axolotl/f_149096_ net/minecraft/world/entity/animal/axolotl/Axolotl/DATA_VARIANT +FD: net/minecraft/world/entity/animal/axolotl/Axolotl/f_149097_ net/minecraft/world/entity/animal/axolotl/Axolotl/DATA_PLAYING_DEAD +FD: net/minecraft/world/entity/animal/axolotl/Axolotl/f_149098_ net/minecraft/world/entity/animal/axolotl/Axolotl/FROM_BUCKET +FD: net/minecraft/world/entity/animal/axolotl/Axolotl/f_149099_ net/minecraft/world/entity/animal/axolotl/Axolotl/AXOLOTL_TOTAL_AIR_SUPPLY +FD: net/minecraft/world/entity/animal/axolotl/Axolotl/f_149100_ net/minecraft/world/entity/animal/axolotl/Axolotl/REHYDRATE_AIR_SUPPLY +FD: net/minecraft/world/entity/animal/axolotl/Axolotl/f_149101_ net/minecraft/world/entity/animal/axolotl/Axolotl/modelRotationValues +FD: net/minecraft/world/entity/animal/axolotl/Axolotl/f_149102_ net/minecraft/world/entity/animal/axolotl/Axolotl/REGEN_BUFF_BASE_DURATION +FD: net/minecraft/world/entity/animal/axolotl/Axolotl/f_181147_ net/minecraft/world/entity/animal/axolotl/Axolotl/REGEN_BUFF_MAX_DURATION +FD: net/minecraft/world/entity/animal/axolotl/Axolotl$AxolotlGroupData/f_149202_ net/minecraft/world/entity/animal/axolotl/Axolotl$AxolotlGroupData/types +FD: net/minecraft/world/entity/animal/axolotl/Axolotl$AxolotlLookControl/f_149207_ net/minecraft/world/entity/animal/axolotl/Axolotl$AxolotlLookControl/this$0 +FD: net/minecraft/world/entity/animal/axolotl/Axolotl$AxolotlMoveControl/f_149213_ net/minecraft/world/entity/animal/axolotl/Axolotl$AxolotlMoveControl/axolotl +FD: net/minecraft/world/entity/animal/axolotl/Axolotl$Variant/$VALUES net/minecraft/world/entity/animal/axolotl/Axolotl$Variant/$VALUES +FD: net/minecraft/world/entity/animal/axolotl/Axolotl$Variant/BLUE net/minecraft/world/entity/animal/axolotl/Axolotl$Variant/BLUE +FD: net/minecraft/world/entity/animal/axolotl/Axolotl$Variant/CYAN net/minecraft/world/entity/animal/axolotl/Axolotl$Variant/CYAN +FD: net/minecraft/world/entity/animal/axolotl/Axolotl$Variant/GOLD net/minecraft/world/entity/animal/axolotl/Axolotl$Variant/GOLD +FD: net/minecraft/world/entity/animal/axolotl/Axolotl$Variant/LUCY net/minecraft/world/entity/animal/axolotl/Axolotl$Variant/LUCY +FD: net/minecraft/world/entity/animal/axolotl/Axolotl$Variant/WILD net/minecraft/world/entity/animal/axolotl/Axolotl$Variant/WILD +FD: net/minecraft/world/entity/animal/axolotl/Axolotl$Variant/f_149230_ net/minecraft/world/entity/animal/axolotl/Axolotl$Variant/BY_ID +FD: net/minecraft/world/entity/animal/axolotl/Axolotl$Variant/f_149231_ net/minecraft/world/entity/animal/axolotl/Axolotl$Variant/id +FD: net/minecraft/world/entity/animal/axolotl/Axolotl$Variant/f_149232_ net/minecraft/world/entity/animal/axolotl/Axolotl$Variant/name +FD: net/minecraft/world/entity/animal/axolotl/Axolotl$Variant/f_149233_ net/minecraft/world/entity/animal/axolotl/Axolotl$Variant/common +FD: net/minecraft/world/entity/animal/axolotl/Axolotl$Variant/f_262307_ net/minecraft/world/entity/animal/axolotl/Axolotl$Variant/CODEC +FD: net/minecraft/world/entity/animal/axolotl/AxolotlAi/f_149279_ net/minecraft/world/entity/animal/axolotl/AxolotlAi/ADULT_FOLLOW_RANGE +FD: net/minecraft/world/entity/animal/axolotl/AxolotlAi/f_149280_ net/minecraft/world/entity/animal/axolotl/AxolotlAi/SPEED_MULTIPLIER_WHEN_MAKING_LOVE +FD: net/minecraft/world/entity/animal/axolotl/AxolotlAi/f_149281_ net/minecraft/world/entity/animal/axolotl/AxolotlAi/SPEED_MULTIPLIER_ON_LAND +FD: net/minecraft/world/entity/animal/axolotl/AxolotlAi/f_149282_ net/minecraft/world/entity/animal/axolotl/AxolotlAi/SPEED_MULTIPLIER_WHEN_IDLING_IN_WATER +FD: net/minecraft/world/entity/animal/axolotl/AxolotlAi/f_149283_ net/minecraft/world/entity/animal/axolotl/AxolotlAi/SPEED_MULTIPLIER_WHEN_CHASING_IN_WATER +FD: net/minecraft/world/entity/animal/axolotl/AxolotlAi/f_149284_ net/minecraft/world/entity/animal/axolotl/AxolotlAi/SPEED_MULTIPLIER_WHEN_FOLLOWING_ADULT_IN_WATER +FD: net/minecraft/world/entity/animal/camel/Camel/f_243705_ net/minecraft/world/entity/animal/camel/Camel/TEMPTATION_ITEM +FD: net/minecraft/world/entity/animal/camel/Camel/f_243730_ net/minecraft/world/entity/animal/camel/Camel/SITTING_HEIGHT_DIFFERENCE +FD: net/minecraft/world/entity/animal/camel/Camel/f_243883_ net/minecraft/world/entity/animal/camel/Camel/LAST_POSE_CHANGE_TICK +FD: net/minecraft/world/entity/animal/camel/Camel/f_243928_ net/minecraft/world/entity/animal/camel/Camel/sitAnimationState +FD: net/minecraft/world/entity/animal/camel/Camel/f_243982_ net/minecraft/world/entity/animal/camel/Camel/RUNNING_SPEED_BONUS +FD: net/minecraft/world/entity/animal/camel/Camel/f_244047_ net/minecraft/world/entity/animal/camel/Camel/idleAnimationState +FD: net/minecraft/world/entity/animal/camel/Camel/f_244084_ net/minecraft/world/entity/animal/camel/Camel/SITDOWN_DURATION_TICKS +FD: net/minecraft/world/entity/animal/camel/Camel/f_244101_ net/minecraft/world/entity/animal/camel/Camel/DASH_HORIZONTAL_MOMENTUM +FD: net/minecraft/world/entity/animal/camel/Camel/f_244117_ net/minecraft/world/entity/animal/camel/Camel/DASH +FD: net/minecraft/world/entity/animal/camel/Camel/f_244195_ net/minecraft/world/entity/animal/camel/Camel/DASH_VERTICAL_MOMENTUM +FD: net/minecraft/world/entity/animal/camel/Camel/f_244242_ net/minecraft/world/entity/animal/camel/Camel/sitUpAnimationState +FD: net/minecraft/world/entity/animal/camel/Camel/f_244243_ net/minecraft/world/entity/animal/camel/Camel/dashAnimationState +FD: net/minecraft/world/entity/animal/camel/Camel/f_244289_ net/minecraft/world/entity/animal/camel/Camel/DASH_COOLDOWN_TICKS +FD: net/minecraft/world/entity/animal/camel/Camel/f_244306_ net/minecraft/world/entity/animal/camel/Camel/SITTING_DIMENSIONS +FD: net/minecraft/world/entity/animal/camel/Camel/f_244435_ net/minecraft/world/entity/animal/camel/Camel/STANDUP_DURATION_TICKS +FD: net/minecraft/world/entity/animal/camel/Camel/f_244455_ net/minecraft/world/entity/animal/camel/Camel/dashCooldown +FD: net/minecraft/world/entity/animal/camel/Camel/f_244476_ net/minecraft/world/entity/animal/camel/Camel/idleAnimationTimeout +FD: net/minecraft/world/entity/animal/camel/Camel/f_244638_ net/minecraft/world/entity/animal/camel/Camel/IDLE_MINIMAL_DURATION_TICKS +FD: net/minecraft/world/entity/animal/camel/Camel/f_252486_ net/minecraft/world/entity/animal/camel/Camel/sitPoseAnimationState +FD: net/minecraft/world/entity/animal/camel/Camel/f_263725_ net/minecraft/world/entity/animal/camel/Camel/MAX_HEAD_Y_ROT +FD: net/minecraft/world/entity/animal/camel/Camel/f_278128_ net/minecraft/world/entity/animal/camel/Camel/DASH_MINIMUM_DURATION_TICKS +FD: net/minecraft/world/entity/animal/camel/Camel$CamelBodyRotationControl/f_243675_ net/minecraft/world/entity/animal/camel/Camel$CamelBodyRotationControl/this$0 +FD: net/minecraft/world/entity/animal/camel/Camel$CamelMoveControl/f_273864_ net/minecraft/world/entity/animal/camel/Camel$CamelMoveControl/this$0 +FD: net/minecraft/world/entity/animal/camel/CamelAi/f_243736_ net/minecraft/world/entity/animal/camel/CamelAi/SPEED_MULTIPLIER_WHEN_IDLING +FD: net/minecraft/world/entity/animal/camel/CamelAi/f_243769_ net/minecraft/world/entity/animal/camel/CamelAi/MEMORY_TYPES +FD: net/minecraft/world/entity/animal/camel/CamelAi/f_244010_ net/minecraft/world/entity/animal/camel/CamelAi/SPEED_MULTIPLIER_WHEN_PANICKING +FD: net/minecraft/world/entity/animal/camel/CamelAi/f_244079_ net/minecraft/world/entity/animal/camel/CamelAi/SPEED_MULTIPLIER_WHEN_MAKING_LOVE +FD: net/minecraft/world/entity/animal/camel/CamelAi/f_244120_ net/minecraft/world/entity/animal/camel/CamelAi/SPEED_MULTIPLIER_WHEN_FOLLOWING_ADULT +FD: net/minecraft/world/entity/animal/camel/CamelAi/f_244250_ net/minecraft/world/entity/animal/camel/CamelAi/SPEED_MULTIPLIER_WHEN_TEMPTED +FD: net/minecraft/world/entity/animal/camel/CamelAi/f_244270_ net/minecraft/world/entity/animal/camel/CamelAi/SENSOR_TYPES +FD: net/minecraft/world/entity/animal/camel/CamelAi/f_244425_ net/minecraft/world/entity/animal/camel/CamelAi/ADULT_FOLLOW_RANGE +FD: net/minecraft/world/entity/animal/camel/CamelAi$RandomSitting/f_244022_ net/minecraft/world/entity/animal/camel/CamelAi$RandomSitting/minimalPoseTicks +FD: net/minecraft/world/entity/animal/frog/Frog/f_218455_ net/minecraft/world/entity/animal/frog/Frog/TEMPTATION_ITEM +FD: net/minecraft/world/entity/animal/frog/Frog/f_218456_ net/minecraft/world/entity/animal/frog/Frog/SENSOR_TYPES +FD: net/minecraft/world/entity/animal/frog/Frog/f_218457_ net/minecraft/world/entity/animal/frog/Frog/MEMORY_TYPES +FD: net/minecraft/world/entity/animal/frog/Frog/f_218458_ net/minecraft/world/entity/animal/frog/Frog/VARIANT_KEY +FD: net/minecraft/world/entity/animal/frog/Frog/f_218459_ net/minecraft/world/entity/animal/frog/Frog/jumpAnimationState +FD: net/minecraft/world/entity/animal/frog/Frog/f_218460_ net/minecraft/world/entity/animal/frog/Frog/croakAnimationState +FD: net/minecraft/world/entity/animal/frog/Frog/f_218461_ net/minecraft/world/entity/animal/frog/Frog/tongueAnimationState +FD: net/minecraft/world/entity/animal/frog/Frog/f_218464_ net/minecraft/world/entity/animal/frog/Frog/swimIdleAnimationState +FD: net/minecraft/world/entity/animal/frog/Frog/f_218465_ net/minecraft/world/entity/animal/frog/Frog/DATA_VARIANT_ID +FD: net/minecraft/world/entity/animal/frog/Frog/f_218466_ net/minecraft/world/entity/animal/frog/Frog/DATA_TONGUE_TARGET_ID +FD: net/minecraft/world/entity/animal/frog/Frog/f_218467_ net/minecraft/world/entity/animal/frog/Frog/FROG_FALL_DAMAGE_REDUCTION +FD: net/minecraft/world/entity/animal/frog/Frog$FrogLookControl/f_218541_ net/minecraft/world/entity/animal/frog/Frog$FrogLookControl/this$0 +FD: net/minecraft/world/entity/animal/frog/Frog$FrogNodeEvaluator/f_218546_ net/minecraft/world/entity/animal/frog/Frog$FrogNodeEvaluator/belowPos +FD: net/minecraft/world/entity/animal/frog/FrogAi/f_218560_ net/minecraft/world/entity/animal/frog/FrogAi/SPEED_MULTIPLIER_WHEN_PANICKING +FD: net/minecraft/world/entity/animal/frog/FrogAi/f_218561_ net/minecraft/world/entity/animal/frog/FrogAi/SPEED_MULTIPLIER_WHEN_MAKING_LOVE +FD: net/minecraft/world/entity/animal/frog/FrogAi/f_218562_ net/minecraft/world/entity/animal/frog/FrogAi/SPEED_MULTIPLIER_WHEN_IDLING +FD: net/minecraft/world/entity/animal/frog/FrogAi/f_218563_ net/minecraft/world/entity/animal/frog/FrogAi/SPEED_MULTIPLIER_ON_LAND +FD: net/minecraft/world/entity/animal/frog/FrogAi/f_218564_ net/minecraft/world/entity/animal/frog/FrogAi/SPEED_MULTIPLIER_IN_WATER +FD: net/minecraft/world/entity/animal/frog/FrogAi/f_218565_ net/minecraft/world/entity/animal/frog/FrogAi/TIME_BETWEEN_LONG_JUMPS +FD: net/minecraft/world/entity/animal/frog/FrogAi/f_218566_ net/minecraft/world/entity/animal/frog/FrogAi/MAX_LONG_JUMP_HEIGHT +FD: net/minecraft/world/entity/animal/frog/FrogAi/f_218567_ net/minecraft/world/entity/animal/frog/FrogAi/MAX_LONG_JUMP_WIDTH +FD: net/minecraft/world/entity/animal/frog/FrogAi/f_218568_ net/minecraft/world/entity/animal/frog/FrogAi/MAX_JUMP_VELOCITY +FD: net/minecraft/world/entity/animal/frog/FrogAi/f_218569_ net/minecraft/world/entity/animal/frog/FrogAi/SPEED_MULTIPLIER_WHEN_TEMPTED +FD: net/minecraft/world/entity/animal/frog/ShootTongue/f_218608_ net/minecraft/world/entity/animal/frog/ShootTongue/TIME_OUT_DURATION +FD: net/minecraft/world/entity/animal/frog/ShootTongue/f_218609_ net/minecraft/world/entity/animal/frog/ShootTongue/CATCH_ANIMATION_DURATION +FD: net/minecraft/world/entity/animal/frog/ShootTongue/f_218610_ net/minecraft/world/entity/animal/frog/ShootTongue/TONGUE_ANIMATION_DURATION +FD: net/minecraft/world/entity/animal/frog/ShootTongue/f_218611_ net/minecraft/world/entity/animal/frog/ShootTongue/EATING_DISTANCE +FD: net/minecraft/world/entity/animal/frog/ShootTongue/f_218612_ net/minecraft/world/entity/animal/frog/ShootTongue/EATING_MOVEMENT_FACTOR +FD: net/minecraft/world/entity/animal/frog/ShootTongue/f_218613_ net/minecraft/world/entity/animal/frog/ShootTongue/eatAnimationTimer +FD: net/minecraft/world/entity/animal/frog/ShootTongue/f_218614_ net/minecraft/world/entity/animal/frog/ShootTongue/calculatePathCounter +FD: net/minecraft/world/entity/animal/frog/ShootTongue/f_218615_ net/minecraft/world/entity/animal/frog/ShootTongue/tongueSound +FD: net/minecraft/world/entity/animal/frog/ShootTongue/f_218616_ net/minecraft/world/entity/animal/frog/ShootTongue/eatSound +FD: net/minecraft/world/entity/animal/frog/ShootTongue/f_218617_ net/minecraft/world/entity/animal/frog/ShootTongue/itemSpawnPos +FD: net/minecraft/world/entity/animal/frog/ShootTongue/f_218618_ net/minecraft/world/entity/animal/frog/ShootTongue/state +FD: net/minecraft/world/entity/animal/frog/ShootTongue/f_238166_ net/minecraft/world/entity/animal/frog/ShootTongue/UNREACHABLE_TONGUE_TARGETS_COOLDOWN_DURATION +FD: net/minecraft/world/entity/animal/frog/ShootTongue/f_238181_ net/minecraft/world/entity/animal/frog/ShootTongue/MAX_UNREACHBLE_TONGUE_TARGETS_IN_MEMORY +FD: net/minecraft/world/entity/animal/frog/ShootTongue$1/f_218663_ net/minecraft/world/entity/animal/frog/ShootTongue$1/$SwitchMap$net$minecraft$world$entity$animal$frog$ShootTongue$State +FD: net/minecraft/world/entity/animal/frog/ShootTongue$State/$VALUES net/minecraft/world/entity/animal/frog/ShootTongue$State/$VALUES +FD: net/minecraft/world/entity/animal/frog/ShootTongue$State/CATCH_ANIMATION net/minecraft/world/entity/animal/frog/ShootTongue$State/CATCH_ANIMATION +FD: net/minecraft/world/entity/animal/frog/ShootTongue$State/DONE net/minecraft/world/entity/animal/frog/ShootTongue$State/DONE +FD: net/minecraft/world/entity/animal/frog/ShootTongue$State/EAT_ANIMATION net/minecraft/world/entity/animal/frog/ShootTongue$State/EAT_ANIMATION +FD: net/minecraft/world/entity/animal/frog/ShootTongue$State/MOVE_TO_TARGET net/minecraft/world/entity/animal/frog/ShootTongue$State/MOVE_TO_TARGET +FD: net/minecraft/world/entity/animal/frog/Tadpole/f_218678_ net/minecraft/world/entity/animal/frog/Tadpole/ticksToBeFrog +FD: net/minecraft/world/entity/animal/frog/Tadpole/f_218679_ net/minecraft/world/entity/animal/frog/Tadpole/MEMORY_TYPES +FD: net/minecraft/world/entity/animal/frog/Tadpole/f_218680_ net/minecraft/world/entity/animal/frog/Tadpole/age +FD: net/minecraft/world/entity/animal/frog/Tadpole/f_218681_ net/minecraft/world/entity/animal/frog/Tadpole/HITBOX_WIDTH +FD: net/minecraft/world/entity/animal/frog/Tadpole/f_218682_ net/minecraft/world/entity/animal/frog/Tadpole/HITBOX_HEIGHT +FD: net/minecraft/world/entity/animal/frog/Tadpole/f_218683_ net/minecraft/world/entity/animal/frog/Tadpole/SENSOR_TYPES +FD: net/minecraft/world/entity/animal/frog/TadpoleAi/f_218735_ net/minecraft/world/entity/animal/frog/TadpoleAi/SPEED_MULTIPLIER_WHEN_PANICKING +FD: net/minecraft/world/entity/animal/frog/TadpoleAi/f_218736_ net/minecraft/world/entity/animal/frog/TadpoleAi/SPEED_MULTIPLIER_WHEN_IDLING_IN_WATER +FD: net/minecraft/world/entity/animal/frog/TadpoleAi/f_218737_ net/minecraft/world/entity/animal/frog/TadpoleAi/SPEED_MULTIPLIER_WHEN_TEMPTED +FD: net/minecraft/world/entity/animal/goat/Goat/f_149342_ net/minecraft/world/entity/animal/goat/Goat/LONG_JUMPING_DIMENSIONS +FD: net/minecraft/world/entity/animal/goat/Goat/f_149343_ net/minecraft/world/entity/animal/goat/Goat/SENSOR_TYPES +FD: net/minecraft/world/entity/animal/goat/Goat/f_149344_ net/minecraft/world/entity/animal/goat/Goat/MEMORY_TYPES +FD: net/minecraft/world/entity/animal/goat/Goat/f_149345_ net/minecraft/world/entity/animal/goat/Goat/GOAT_FALL_DAMAGE_REDUCTION +FD: net/minecraft/world/entity/animal/goat/Goat/f_149346_ net/minecraft/world/entity/animal/goat/Goat/GOAT_SCREAMING_CHANCE +FD: net/minecraft/world/entity/animal/goat/Goat/f_149347_ net/minecraft/world/entity/animal/goat/Goat/DATA_IS_SCREAMING_GOAT +FD: net/minecraft/world/entity/animal/goat/Goat/f_149348_ net/minecraft/world/entity/animal/goat/Goat/isLoweringHead +FD: net/minecraft/world/entity/animal/goat/Goat/f_149349_ net/minecraft/world/entity/animal/goat/Goat/lowerHeadTick +FD: net/minecraft/world/entity/animal/goat/Goat/f_182382_ net/minecraft/world/entity/animal/goat/Goat/ADULT_ATTACK_DAMAGE +FD: net/minecraft/world/entity/animal/goat/Goat/f_182383_ net/minecraft/world/entity/animal/goat/Goat/BABY_ATTACK_DAMAGE +FD: net/minecraft/world/entity/animal/goat/Goat/f_218749_ net/minecraft/world/entity/animal/goat/Goat/UNIHORN_CHANCE +FD: net/minecraft/world/entity/animal/goat/Goat/f_218750_ net/minecraft/world/entity/animal/goat/Goat/DATA_HAS_LEFT_HORN +FD: net/minecraft/world/entity/animal/goat/Goat/f_218751_ net/minecraft/world/entity/animal/goat/Goat/DATA_HAS_RIGHT_HORN +FD: net/minecraft/world/entity/animal/goat/GoatAi/f_149420_ net/minecraft/world/entity/animal/goat/GoatAi/RAM_PREPARE_TIME +FD: net/minecraft/world/entity/animal/goat/GoatAi/f_149421_ net/minecraft/world/entity/animal/goat/GoatAi/RAM_MAX_DISTANCE +FD: net/minecraft/world/entity/animal/goat/GoatAi/f_149422_ net/minecraft/world/entity/animal/goat/GoatAi/MAX_LONG_JUMP_HEIGHT +FD: net/minecraft/world/entity/animal/goat/GoatAi/f_149423_ net/minecraft/world/entity/animal/goat/GoatAi/MAX_LONG_JUMP_WIDTH +FD: net/minecraft/world/entity/animal/goat/GoatAi/f_149424_ net/minecraft/world/entity/animal/goat/GoatAi/MAX_JUMP_VELOCITY +FD: net/minecraft/world/entity/animal/goat/GoatAi/f_149425_ net/minecraft/world/entity/animal/goat/GoatAi/RAM_MIN_DISTANCE +FD: net/minecraft/world/entity/animal/goat/GoatAi/f_149426_ net/minecraft/world/entity/animal/goat/GoatAi/ADULT_RAM_KNOCKBACK_FORCE +FD: net/minecraft/world/entity/animal/goat/GoatAi/f_149427_ net/minecraft/world/entity/animal/goat/GoatAi/BABY_RAM_KNOCKBACK_FORCE +FD: net/minecraft/world/entity/animal/goat/GoatAi/f_149428_ net/minecraft/world/entity/animal/goat/GoatAi/ADULT_FOLLOW_RANGE +FD: net/minecraft/world/entity/animal/goat/GoatAi/f_149429_ net/minecraft/world/entity/animal/goat/GoatAi/SPEED_MULTIPLIER_WHEN_MAKING_LOVE +FD: net/minecraft/world/entity/animal/goat/GoatAi/f_149430_ net/minecraft/world/entity/animal/goat/GoatAi/SPEED_MULTIPLIER_WHEN_IDLING +FD: net/minecraft/world/entity/animal/goat/GoatAi/f_149431_ net/minecraft/world/entity/animal/goat/GoatAi/SPEED_MULTIPLIER_WHEN_FOLLOWING_ADULT +FD: net/minecraft/world/entity/animal/goat/GoatAi/f_149432_ net/minecraft/world/entity/animal/goat/GoatAi/SPEED_MULTIPLIER_WHEN_TEMPTED +FD: net/minecraft/world/entity/animal/goat/GoatAi/f_149433_ net/minecraft/world/entity/animal/goat/GoatAi/SPEED_MULTIPLIER_WHEN_PANICKING +FD: net/minecraft/world/entity/animal/goat/GoatAi/f_149434_ net/minecraft/world/entity/animal/goat/GoatAi/SPEED_MULTIPLIER_WHEN_PREPARING_TO_RAM +FD: net/minecraft/world/entity/animal/goat/GoatAi/f_149435_ net/minecraft/world/entity/animal/goat/GoatAi/TIME_BETWEEN_LONG_JUMPS +FD: net/minecraft/world/entity/animal/goat/GoatAi/f_149436_ net/minecraft/world/entity/animal/goat/GoatAi/TIME_BETWEEN_RAMS +FD: net/minecraft/world/entity/animal/goat/GoatAi/f_149437_ net/minecraft/world/entity/animal/goat/GoatAi/TIME_BETWEEN_RAMS_SCREAMER +FD: net/minecraft/world/entity/animal/goat/GoatAi/f_149438_ net/minecraft/world/entity/animal/goat/GoatAi/RAM_TARGET_CONDITIONS +FD: net/minecraft/world/entity/animal/goat/GoatAi/f_149439_ net/minecraft/world/entity/animal/goat/GoatAi/SPEED_MULTIPLIER_WHEN_RAMMING +FD: net/minecraft/world/entity/animal/horse/AbstractChestedHorse/f_149477_ net/minecraft/world/entity/animal/horse/AbstractChestedHorse/INV_CHEST_COUNT +FD: net/minecraft/world/entity/animal/horse/AbstractChestedHorse/f_30482_ net/minecraft/world/entity/animal/horse/AbstractChestedHorse/DATA_ID_CHEST +FD: net/minecraft/world/entity/animal/horse/AbstractChestedHorse$1/f_149480_ net/minecraft/world/entity/animal/horse/AbstractChestedHorse$1/this$0 +FD: net/minecraft/world/entity/animal/horse/AbstractHorse/f_149486_ net/minecraft/world/entity/animal/horse/AbstractHorse/EQUIPMENT_SLOT_OFFSET +FD: net/minecraft/world/entity/animal/horse/AbstractHorse/f_149487_ net/minecraft/world/entity/animal/horse/AbstractHorse/CHEST_SLOT_OFFSET +FD: net/minecraft/world/entity/animal/horse/AbstractHorse/f_149488_ net/minecraft/world/entity/animal/horse/AbstractHorse/INVENTORY_SLOT_OFFSET +FD: net/minecraft/world/entity/animal/horse/AbstractHorse/f_149489_ net/minecraft/world/entity/animal/horse/AbstractHorse/INV_SLOT_SADDLE +FD: net/minecraft/world/entity/animal/horse/AbstractHorse/f_149490_ net/minecraft/world/entity/animal/horse/AbstractHorse/INV_SLOT_ARMOR +FD: net/minecraft/world/entity/animal/horse/AbstractHorse/f_149491_ net/minecraft/world/entity/animal/horse/AbstractHorse/INV_BASE_COUNT +FD: net/minecraft/world/entity/animal/horse/AbstractHorse/f_149492_ net/minecraft/world/entity/animal/horse/AbstractHorse/FLAG_TAME +FD: net/minecraft/world/entity/animal/horse/AbstractHorse/f_149493_ net/minecraft/world/entity/animal/horse/AbstractHorse/FLAG_SADDLE +FD: net/minecraft/world/entity/animal/horse/AbstractHorse/f_149494_ net/minecraft/world/entity/animal/horse/AbstractHorse/FLAG_BRED +FD: net/minecraft/world/entity/animal/horse/AbstractHorse/f_149495_ net/minecraft/world/entity/animal/horse/AbstractHorse/FLAG_EATING +FD: net/minecraft/world/entity/animal/horse/AbstractHorse/f_149496_ net/minecraft/world/entity/animal/horse/AbstractHorse/FLAG_STANDING +FD: net/minecraft/world/entity/animal/horse/AbstractHorse/f_149497_ net/minecraft/world/entity/animal/horse/AbstractHorse/FLAG_OPEN_MOUTH +FD: net/minecraft/world/entity/animal/horse/AbstractHorse/f_268614_ net/minecraft/world/entity/animal/horse/AbstractHorse/owner +FD: net/minecraft/world/entity/animal/horse/AbstractHorse/f_271139_ net/minecraft/world/entity/animal/horse/AbstractHorse/MIN_MOVEMENT_SPEED +FD: net/minecraft/world/entity/animal/horse/AbstractHorse/f_271293_ net/minecraft/world/entity/animal/horse/AbstractHorse/MAX_JUMP_STRENGTH +FD: net/minecraft/world/entity/animal/horse/AbstractHorse/f_271305_ net/minecraft/world/entity/animal/horse/AbstractHorse/MIN_JUMP_STRENGTH +FD: net/minecraft/world/entity/animal/horse/AbstractHorse/f_271308_ net/minecraft/world/entity/animal/horse/AbstractHorse/MAX_HEALTH +FD: net/minecraft/world/entity/animal/horse/AbstractHorse/f_271313_ net/minecraft/world/entity/animal/horse/AbstractHorse/MIN_HEALTH +FD: net/minecraft/world/entity/animal/horse/AbstractHorse/f_271338_ net/minecraft/world/entity/animal/horse/AbstractHorse/BREEDING_CROSS_FACTOR +FD: net/minecraft/world/entity/animal/horse/AbstractHorse/f_271541_ net/minecraft/world/entity/animal/horse/AbstractHorse/MAX_MOVEMENT_SPEED +FD: net/minecraft/world/entity/animal/horse/AbstractHorse/f_273870_ net/minecraft/world/entity/animal/horse/AbstractHorse/BACKWARDS_MOVE_SPEED_FACTOR +FD: net/minecraft/world/entity/animal/horse/AbstractHorse/f_273946_ net/minecraft/world/entity/animal/horse/AbstractHorse/SIDEWAYS_MOVE_SPEED_FACTOR +FD: net/minecraft/world/entity/animal/horse/AbstractHorse/f_30507_ net/minecraft/world/entity/animal/horse/AbstractHorse/eatingCounter +FD: net/minecraft/world/entity/animal/horse/AbstractHorse/f_30508_ net/minecraft/world/entity/animal/horse/AbstractHorse/mouthCounter +FD: net/minecraft/world/entity/animal/horse/AbstractHorse/f_30509_ net/minecraft/world/entity/animal/horse/AbstractHorse/standCounter +FD: net/minecraft/world/entity/animal/horse/AbstractHorse/f_30510_ net/minecraft/world/entity/animal/horse/AbstractHorse/allowStandSliding +FD: net/minecraft/world/entity/animal/horse/AbstractHorse/f_30511_ net/minecraft/world/entity/animal/horse/AbstractHorse/eatAnim +FD: net/minecraft/world/entity/animal/horse/AbstractHorse/f_30512_ net/minecraft/world/entity/animal/horse/AbstractHorse/eatAnimO +FD: net/minecraft/world/entity/animal/horse/AbstractHorse/f_30513_ net/minecraft/world/entity/animal/horse/AbstractHorse/standAnim +FD: net/minecraft/world/entity/animal/horse/AbstractHorse/f_30514_ net/minecraft/world/entity/animal/horse/AbstractHorse/standAnimO +FD: net/minecraft/world/entity/animal/horse/AbstractHorse/f_30515_ net/minecraft/world/entity/animal/horse/AbstractHorse/mouthAnim +FD: net/minecraft/world/entity/animal/horse/AbstractHorse/f_30516_ net/minecraft/world/entity/animal/horse/AbstractHorse/mouthAnimO +FD: net/minecraft/world/entity/animal/horse/AbstractHorse/f_30517_ net/minecraft/world/entity/animal/horse/AbstractHorse/tailCounter +FD: net/minecraft/world/entity/animal/horse/AbstractHorse/f_30518_ net/minecraft/world/entity/animal/horse/AbstractHorse/sprintCounter +FD: net/minecraft/world/entity/animal/horse/AbstractHorse/f_30519_ net/minecraft/world/entity/animal/horse/AbstractHorse/isJumping +FD: net/minecraft/world/entity/animal/horse/AbstractHorse/f_30520_ net/minecraft/world/entity/animal/horse/AbstractHorse/inventory +FD: net/minecraft/world/entity/animal/horse/AbstractHorse/f_30521_ net/minecraft/world/entity/animal/horse/AbstractHorse/temper +FD: net/minecraft/world/entity/animal/horse/AbstractHorse/f_30522_ net/minecraft/world/entity/animal/horse/AbstractHorse/playerJumpPendingScale +FD: net/minecraft/world/entity/animal/horse/AbstractHorse/f_30523_ net/minecraft/world/entity/animal/horse/AbstractHorse/canGallop +FD: net/minecraft/world/entity/animal/horse/AbstractHorse/f_30524_ net/minecraft/world/entity/animal/horse/AbstractHorse/gallopSoundCounter +FD: net/minecraft/world/entity/animal/horse/AbstractHorse/f_30525_ net/minecraft/world/entity/animal/horse/AbstractHorse/PARENT_HORSE_SELECTOR +FD: net/minecraft/world/entity/animal/horse/AbstractHorse/f_30526_ net/minecraft/world/entity/animal/horse/AbstractHorse/MOMMY_TARGETING +FD: net/minecraft/world/entity/animal/horse/AbstractHorse/f_30527_ net/minecraft/world/entity/animal/horse/AbstractHorse/FOOD_ITEMS +FD: net/minecraft/world/entity/animal/horse/AbstractHorse/f_30528_ net/minecraft/world/entity/animal/horse/AbstractHorse/DATA_ID_FLAGS +FD: net/minecraft/world/entity/animal/horse/AbstractHorse$1/f_149519_ net/minecraft/world/entity/animal/horse/AbstractHorse$1/val$slot +FD: net/minecraft/world/entity/animal/horse/AbstractHorse$1/f_149520_ net/minecraft/world/entity/animal/horse/AbstractHorse$1/val$check +FD: net/minecraft/world/entity/animal/horse/AbstractHorse$1/f_149521_ net/minecraft/world/entity/animal/horse/AbstractHorse$1/this$0 +FD: net/minecraft/world/entity/animal/horse/Horse/f_30685_ net/minecraft/world/entity/animal/horse/Horse/ARMOR_MODIFIER_UUID +FD: net/minecraft/world/entity/animal/horse/Horse/f_30686_ net/minecraft/world/entity/animal/horse/Horse/DATA_ID_TYPE_VARIANT +FD: net/minecraft/world/entity/animal/horse/Horse$HorseGroupData/f_30738_ net/minecraft/world/entity/animal/horse/Horse$HorseGroupData/variant +FD: net/minecraft/world/entity/animal/horse/Llama/f_149535_ net/minecraft/world/entity/animal/horse/Llama/MAX_STRENGTH +FD: net/minecraft/world/entity/animal/horse/Llama/f_30741_ net/minecraft/world/entity/animal/horse/Llama/didSpit +FD: net/minecraft/world/entity/animal/horse/Llama/f_30742_ net/minecraft/world/entity/animal/horse/Llama/caravanHead +FD: net/minecraft/world/entity/animal/horse/Llama/f_30743_ net/minecraft/world/entity/animal/horse/Llama/caravanTail +FD: net/minecraft/world/entity/animal/horse/Llama/f_30744_ net/minecraft/world/entity/animal/horse/Llama/FOOD_ITEMS +FD: net/minecraft/world/entity/animal/horse/Llama/f_30745_ net/minecraft/world/entity/animal/horse/Llama/DATA_STRENGTH_ID +FD: net/minecraft/world/entity/animal/horse/Llama/f_30746_ net/minecraft/world/entity/animal/horse/Llama/DATA_SWAG_ID +FD: net/minecraft/world/entity/animal/horse/Llama/f_30747_ net/minecraft/world/entity/animal/horse/Llama/DATA_VARIANT_ID +FD: net/minecraft/world/entity/animal/horse/Llama$LlamaGroupData/f_30847_ net/minecraft/world/entity/animal/horse/Llama$LlamaGroupData/variant +FD: net/minecraft/world/entity/animal/horse/Llama$Variant/$VALUES net/minecraft/world/entity/animal/horse/Llama$Variant/$VALUES +FD: net/minecraft/world/entity/animal/horse/Llama$Variant/BROWN net/minecraft/world/entity/animal/horse/Llama$Variant/BROWN +FD: net/minecraft/world/entity/animal/horse/Llama$Variant/CREAMY net/minecraft/world/entity/animal/horse/Llama$Variant/CREAMY +FD: net/minecraft/world/entity/animal/horse/Llama$Variant/GRAY net/minecraft/world/entity/animal/horse/Llama$Variant/GRAY +FD: net/minecraft/world/entity/animal/horse/Llama$Variant/WHITE net/minecraft/world/entity/animal/horse/Llama$Variant/WHITE +FD: net/minecraft/world/entity/animal/horse/Llama$Variant/f_262208_ net/minecraft/world/entity/animal/horse/Llama$Variant/BY_ID +FD: net/minecraft/world/entity/animal/horse/Llama$Variant/f_262240_ net/minecraft/world/entity/animal/horse/Llama$Variant/id +FD: net/minecraft/world/entity/animal/horse/Llama$Variant/f_262253_ net/minecraft/world/entity/animal/horse/Llama$Variant/name +FD: net/minecraft/world/entity/animal/horse/Llama$Variant/f_262288_ net/minecraft/world/entity/animal/horse/Llama$Variant/CODEC +FD: net/minecraft/world/entity/animal/horse/Markings/$VALUES net/minecraft/world/entity/animal/horse/Markings/$VALUES +FD: net/minecraft/world/entity/animal/horse/Markings/BLACK_DOTS net/minecraft/world/entity/animal/horse/Markings/BLACK_DOTS +FD: net/minecraft/world/entity/animal/horse/Markings/NONE net/minecraft/world/entity/animal/horse/Markings/NONE +FD: net/minecraft/world/entity/animal/horse/Markings/WHITE net/minecraft/world/entity/animal/horse/Markings/WHITE +FD: net/minecraft/world/entity/animal/horse/Markings/WHITE_DOTS net/minecraft/world/entity/animal/horse/Markings/WHITE_DOTS +FD: net/minecraft/world/entity/animal/horse/Markings/WHITE_FIELD net/minecraft/world/entity/animal/horse/Markings/WHITE_FIELD +FD: net/minecraft/world/entity/animal/horse/Markings/f_30861_ net/minecraft/world/entity/animal/horse/Markings/BY_ID +FD: net/minecraft/world/entity/animal/horse/Markings/f_30862_ net/minecraft/world/entity/animal/horse/Markings/id +FD: net/minecraft/world/entity/animal/horse/SkeletonHorse/f_149551_ net/minecraft/world/entity/animal/horse/SkeletonHorse/TRAP_MAX_LIFE +FD: net/minecraft/world/entity/animal/horse/SkeletonHorse/f_30890_ net/minecraft/world/entity/animal/horse/SkeletonHorse/skeletonTrapGoal +FD: net/minecraft/world/entity/animal/horse/SkeletonHorse/f_30891_ net/minecraft/world/entity/animal/horse/SkeletonHorse/isTrap +FD: net/minecraft/world/entity/animal/horse/SkeletonHorse/f_30892_ net/minecraft/world/entity/animal/horse/SkeletonHorse/trapTime +FD: net/minecraft/world/entity/animal/horse/SkeletonTrapGoal/f_30925_ net/minecraft/world/entity/animal/horse/SkeletonTrapGoal/horse +FD: net/minecraft/world/entity/animal/horse/TraderLlama/f_30937_ net/minecraft/world/entity/animal/horse/TraderLlama/despawnDelay +FD: net/minecraft/world/entity/animal/horse/TraderLlama$TraderLlamaDefendWanderingTraderGoal/f_30962_ net/minecraft/world/entity/animal/horse/TraderLlama$TraderLlamaDefendWanderingTraderGoal/llama +FD: net/minecraft/world/entity/animal/horse/TraderLlama$TraderLlamaDefendWanderingTraderGoal/f_30963_ net/minecraft/world/entity/animal/horse/TraderLlama$TraderLlamaDefendWanderingTraderGoal/ownerLastHurtBy +FD: net/minecraft/world/entity/animal/horse/TraderLlama$TraderLlamaDefendWanderingTraderGoal/f_30964_ net/minecraft/world/entity/animal/horse/TraderLlama$TraderLlamaDefendWanderingTraderGoal/timestamp +FD: net/minecraft/world/entity/animal/horse/Variant/$VALUES net/minecraft/world/entity/animal/horse/Variant/$VALUES +FD: net/minecraft/world/entity/animal/horse/Variant/BLACK net/minecraft/world/entity/animal/horse/Variant/BLACK +FD: net/minecraft/world/entity/animal/horse/Variant/BROWN net/minecraft/world/entity/animal/horse/Variant/BROWN +FD: net/minecraft/world/entity/animal/horse/Variant/CHESTNUT net/minecraft/world/entity/animal/horse/Variant/CHESTNUT +FD: net/minecraft/world/entity/animal/horse/Variant/CREAMY net/minecraft/world/entity/animal/horse/Variant/CREAMY +FD: net/minecraft/world/entity/animal/horse/Variant/DARK_BROWN net/minecraft/world/entity/animal/horse/Variant/DARK_BROWN +FD: net/minecraft/world/entity/animal/horse/Variant/GRAY net/minecraft/world/entity/animal/horse/Variant/GRAY +FD: net/minecraft/world/entity/animal/horse/Variant/WHITE net/minecraft/world/entity/animal/horse/Variant/WHITE +FD: net/minecraft/world/entity/animal/horse/Variant/f_262227_ net/minecraft/world/entity/animal/horse/Variant/name +FD: net/minecraft/world/entity/animal/horse/Variant/f_262264_ net/minecraft/world/entity/animal/horse/Variant/CODEC +FD: net/minecraft/world/entity/animal/horse/Variant/f_30977_ net/minecraft/world/entity/animal/horse/Variant/BY_ID +FD: net/minecraft/world/entity/animal/horse/Variant/f_30978_ net/minecraft/world/entity/animal/horse/Variant/id +FD: net/minecraft/world/entity/animal/sniffer/Sniffer/f_271092_ net/minecraft/world/entity/animal/sniffer/Sniffer/scentingAnimationState +FD: net/minecraft/world/entity/animal/sniffer/Sniffer/f_271109_ net/minecraft/world/entity/animal/sniffer/Sniffer/DIGGING_PARTICLES_DELAY_TICKS +FD: net/minecraft/world/entity/animal/sniffer/Sniffer/f_271151_ net/minecraft/world/entity/animal/sniffer/Sniffer/DIGGING_DROP_SEED_OFFSET_TICKS +FD: net/minecraft/world/entity/animal/sniffer/Sniffer/f_271252_ net/minecraft/world/entity/animal/sniffer/Sniffer/DIGGING_PARTICLES_DURATION_TICKS +FD: net/minecraft/world/entity/animal/sniffer/Sniffer/f_271278_ net/minecraft/world/entity/animal/sniffer/Sniffer/sniffingAnimationState +FD: net/minecraft/world/entity/animal/sniffer/Sniffer/f_271318_ net/minecraft/world/entity/animal/sniffer/Sniffer/risingAnimationState +FD: net/minecraft/world/entity/animal/sniffer/Sniffer/f_271414_ net/minecraft/world/entity/animal/sniffer/Sniffer/SNIFFER_BABY_AGE_TICKS +FD: net/minecraft/world/entity/animal/sniffer/Sniffer/f_271416_ net/minecraft/world/entity/animal/sniffer/Sniffer/DATA_STATE +FD: net/minecraft/world/entity/animal/sniffer/Sniffer/f_271434_ net/minecraft/world/entity/animal/sniffer/Sniffer/feelingHappyAnimationState +FD: net/minecraft/world/entity/animal/sniffer/Sniffer/f_271435_ net/minecraft/world/entity/animal/sniffer/Sniffer/DIGGING_PARTICLES_AMOUNT +FD: net/minecraft/world/entity/animal/sniffer/Sniffer/f_271472_ net/minecraft/world/entity/animal/sniffer/Sniffer/diggingAnimationState +FD: net/minecraft/world/entity/animal/sniffer/Sniffer/f_271498_ net/minecraft/world/entity/animal/sniffer/Sniffer/DATA_DROP_SEED_AT_TICK +FD: net/minecraft/world/entity/animal/sniffer/Sniffer/f_285627_ net/minecraft/world/entity/animal/sniffer/Sniffer/DIGGING_DIMENSIONS +FD: net/minecraft/world/entity/animal/sniffer/Sniffer/f_285640_ net/minecraft/world/entity/animal/sniffer/Sniffer/DIGGING_BB_HEIGHT_OFFSET +FD: net/minecraft/world/entity/animal/sniffer/Sniffer$1/f_271447_ net/minecraft/world/entity/animal/sniffer/Sniffer$1/$SwitchMap$net$minecraft$world$entity$animal$sniffer$Sniffer$State +FD: net/minecraft/world/entity/animal/sniffer/Sniffer$State/$VALUES net/minecraft/world/entity/animal/sniffer/Sniffer$State/$VALUES +FD: net/minecraft/world/entity/animal/sniffer/Sniffer$State/DIGGING net/minecraft/world/entity/animal/sniffer/Sniffer$State/DIGGING +FD: net/minecraft/world/entity/animal/sniffer/Sniffer$State/FEELING_HAPPY net/minecraft/world/entity/animal/sniffer/Sniffer$State/FEELING_HAPPY +FD: net/minecraft/world/entity/animal/sniffer/Sniffer$State/IDLING net/minecraft/world/entity/animal/sniffer/Sniffer$State/IDLING +FD: net/minecraft/world/entity/animal/sniffer/Sniffer$State/RISING net/minecraft/world/entity/animal/sniffer/Sniffer$State/RISING +FD: net/minecraft/world/entity/animal/sniffer/Sniffer$State/SCENTING net/minecraft/world/entity/animal/sniffer/Sniffer$State/SCENTING +FD: net/minecraft/world/entity/animal/sniffer/Sniffer$State/SEARCHING net/minecraft/world/entity/animal/sniffer/Sniffer$State/SEARCHING +FD: net/minecraft/world/entity/animal/sniffer/Sniffer$State/SNIFFING net/minecraft/world/entity/animal/sniffer/Sniffer$State/SNIFFING +FD: net/minecraft/world/entity/animal/sniffer/SnifferAi/f_271113_ net/minecraft/world/entity/animal/sniffer/SnifferAi/MAX_LOOK_DISTANCE +FD: net/minecraft/world/entity/animal/sniffer/SnifferAi/f_271203_ net/minecraft/world/entity/animal/sniffer/SnifferAi/LOGGER +FD: net/minecraft/world/entity/animal/sniffer/SnifferAi/f_271225_ net/minecraft/world/entity/animal/sniffer/SnifferAi/SPEED_MULTIPLIER_WHEN_SNIFFING +FD: net/minecraft/world/entity/animal/sniffer/SnifferAi/f_271288_ net/minecraft/world/entity/animal/sniffer/SnifferAi/SENSOR_TYPES +FD: net/minecraft/world/entity/animal/sniffer/SnifferAi/f_271352_ net/minecraft/world/entity/animal/sniffer/SnifferAi/SPEED_MULTIPLIER_WHEN_IDLING +FD: net/minecraft/world/entity/animal/sniffer/SnifferAi/f_271430_ net/minecraft/world/entity/animal/sniffer/SnifferAi/MEMORY_TYPES +FD: net/minecraft/world/entity/animal/sniffer/SnifferAi/f_271483_ net/minecraft/world/entity/animal/sniffer/SnifferAi/SPEED_MULTIPLIER_WHEN_PANICKING +FD: net/minecraft/world/entity/animal/sniffer/SnifferAi/f_271542_ net/minecraft/world/entity/animal/sniffer/SnifferAi/SNIFFING_COOLDOWN_TICKS +FD: net/minecraft/world/entity/animal/sniffer/SnifferAi/f_278441_ net/minecraft/world/entity/animal/sniffer/SnifferAi/SPEED_MULTIPLIER_WHEN_TEMPTED +FD: net/minecraft/world/entity/boss/EnderDragonPart/f_31010_ net/minecraft/world/entity/boss/EnderDragonPart/parentMob +FD: net/minecraft/world/entity/boss/EnderDragonPart/f_31011_ net/minecraft/world/entity/boss/EnderDragonPart/name +FD: net/minecraft/world/entity/boss/EnderDragonPart/f_31012_ net/minecraft/world/entity/boss/EnderDragonPart/size +FD: net/minecraft/world/entity/boss/enderdragon/EndCrystal/f_31032_ net/minecraft/world/entity/boss/enderdragon/EndCrystal/time +FD: net/minecraft/world/entity/boss/enderdragon/EndCrystal/f_31033_ net/minecraft/world/entity/boss/enderdragon/EndCrystal/DATA_BEAM_TARGET +FD: net/minecraft/world/entity/boss/enderdragon/EndCrystal/f_31034_ net/minecraft/world/entity/boss/enderdragon/EndCrystal/DATA_SHOW_BOTTOM +FD: net/minecraft/world/entity/boss/enderdragon/EnderDragon/f_149566_ net/minecraft/world/entity/boss/enderdragon/EnderDragon/GROWL_INTERVAL_MIN +FD: net/minecraft/world/entity/boss/enderdragon/EnderDragon/f_149567_ net/minecraft/world/entity/boss/enderdragon/EnderDragon/GROWL_INTERVAL_MAX +FD: net/minecraft/world/entity/boss/enderdragon/EnderDragon/f_149568_ net/minecraft/world/entity/boss/enderdragon/EnderDragon/SITTING_ALLOWED_DAMAGE_PERCENTAGE +FD: net/minecraft/world/entity/boss/enderdragon/EnderDragon/f_149569_ net/minecraft/world/entity/boss/enderdragon/EnderDragon/DRAGON_DEATH_TIME_KEY +FD: net/minecraft/world/entity/boss/enderdragon/EnderDragon/f_149570_ net/minecraft/world/entity/boss/enderdragon/EnderDragon/DRAGON_PHASE_KEY +FD: net/minecraft/world/entity/boss/enderdragon/EnderDragon/f_286933_ net/minecraft/world/entity/boss/enderdragon/EnderDragon/fightOrigin +FD: net/minecraft/world/entity/boss/enderdragon/EnderDragon/f_31067_ net/minecraft/world/entity/boss/enderdragon/EnderDragon/DATA_PHASE +FD: net/minecraft/world/entity/boss/enderdragon/EnderDragon/f_31068_ net/minecraft/world/entity/boss/enderdragon/EnderDragon/tail1 +FD: net/minecraft/world/entity/boss/enderdragon/EnderDragon/f_31069_ net/minecraft/world/entity/boss/enderdragon/EnderDragon/tail2 +FD: net/minecraft/world/entity/boss/enderdragon/EnderDragon/f_31070_ net/minecraft/world/entity/boss/enderdragon/EnderDragon/tail3 +FD: net/minecraft/world/entity/boss/enderdragon/EnderDragon/f_31071_ net/minecraft/world/entity/boss/enderdragon/EnderDragon/wing1 +FD: net/minecraft/world/entity/boss/enderdragon/EnderDragon/f_31072_ net/minecraft/world/entity/boss/enderdragon/EnderDragon/wing2 +FD: net/minecraft/world/entity/boss/enderdragon/EnderDragon/f_31073_ net/minecraft/world/entity/boss/enderdragon/EnderDragon/dragonFight +FD: net/minecraft/world/entity/boss/enderdragon/EnderDragon/f_31074_ net/minecraft/world/entity/boss/enderdragon/EnderDragon/phaseManager +FD: net/minecraft/world/entity/boss/enderdragon/EnderDragon/f_31075_ net/minecraft/world/entity/boss/enderdragon/EnderDragon/growlTime +FD: net/minecraft/world/entity/boss/enderdragon/EnderDragon/f_31076_ net/minecraft/world/entity/boss/enderdragon/EnderDragon/sittingDamageReceived +FD: net/minecraft/world/entity/boss/enderdragon/EnderDragon/f_31077_ net/minecraft/world/entity/boss/enderdragon/EnderDragon/nodes +FD: net/minecraft/world/entity/boss/enderdragon/EnderDragon/f_31078_ net/minecraft/world/entity/boss/enderdragon/EnderDragon/nodeAdjacency +FD: net/minecraft/world/entity/boss/enderdragon/EnderDragon/f_31079_ net/minecraft/world/entity/boss/enderdragon/EnderDragon/openSet +FD: net/minecraft/world/entity/boss/enderdragon/EnderDragon/f_31080_ net/minecraft/world/entity/boss/enderdragon/EnderDragon/head +FD: net/minecraft/world/entity/boss/enderdragon/EnderDragon/f_31081_ net/minecraft/world/entity/boss/enderdragon/EnderDragon/oFlapTime +FD: net/minecraft/world/entity/boss/enderdragon/EnderDragon/f_31082_ net/minecraft/world/entity/boss/enderdragon/EnderDragon/flapTime +FD: net/minecraft/world/entity/boss/enderdragon/EnderDragon/f_31083_ net/minecraft/world/entity/boss/enderdragon/EnderDragon/inWall +FD: net/minecraft/world/entity/boss/enderdragon/EnderDragon/f_31084_ net/minecraft/world/entity/boss/enderdragon/EnderDragon/dragonDeathTime +FD: net/minecraft/world/entity/boss/enderdragon/EnderDragon/f_31085_ net/minecraft/world/entity/boss/enderdragon/EnderDragon/yRotA +FD: net/minecraft/world/entity/boss/enderdragon/EnderDragon/f_31086_ net/minecraft/world/entity/boss/enderdragon/EnderDragon/nearestCrystal +FD: net/minecraft/world/entity/boss/enderdragon/EnderDragon/f_31087_ net/minecraft/world/entity/boss/enderdragon/EnderDragon/LOGGER +FD: net/minecraft/world/entity/boss/enderdragon/EnderDragon/f_31088_ net/minecraft/world/entity/boss/enderdragon/EnderDragon/CRYSTAL_DESTROY_TARGETING +FD: net/minecraft/world/entity/boss/enderdragon/EnderDragon/f_31089_ net/minecraft/world/entity/boss/enderdragon/EnderDragon/subEntities +FD: net/minecraft/world/entity/boss/enderdragon/EnderDragon/f_31090_ net/minecraft/world/entity/boss/enderdragon/EnderDragon/neck +FD: net/minecraft/world/entity/boss/enderdragon/EnderDragon/f_31091_ net/minecraft/world/entity/boss/enderdragon/EnderDragon/body +FD: net/minecraft/world/entity/boss/enderdragon/EnderDragon/f_31092_ net/minecraft/world/entity/boss/enderdragon/EnderDragon/positions +FD: net/minecraft/world/entity/boss/enderdragon/EnderDragon/f_31093_ net/minecraft/world/entity/boss/enderdragon/EnderDragon/posPointer +FD: net/minecraft/world/entity/boss/enderdragon/phases/AbstractDragonPhaseInstance/f_31176_ net/minecraft/world/entity/boss/enderdragon/phases/AbstractDragonPhaseInstance/dragon +FD: net/minecraft/world/entity/boss/enderdragon/phases/DragonChargePlayerPhase/f_149577_ net/minecraft/world/entity/boss/enderdragon/phases/DragonChargePlayerPhase/CHARGE_RECOVERY_TIME +FD: net/minecraft/world/entity/boss/enderdragon/phases/DragonChargePlayerPhase/f_31201_ net/minecraft/world/entity/boss/enderdragon/phases/DragonChargePlayerPhase/LOGGER +FD: net/minecraft/world/entity/boss/enderdragon/phases/DragonChargePlayerPhase/f_31202_ net/minecraft/world/entity/boss/enderdragon/phases/DragonChargePlayerPhase/targetLocation +FD: net/minecraft/world/entity/boss/enderdragon/phases/DragonChargePlayerPhase/f_31203_ net/minecraft/world/entity/boss/enderdragon/phases/DragonChargePlayerPhase/timeSinceCharge +FD: net/minecraft/world/entity/boss/enderdragon/phases/DragonDeathPhase/f_31214_ net/minecraft/world/entity/boss/enderdragon/phases/DragonDeathPhase/targetLocation +FD: net/minecraft/world/entity/boss/enderdragon/phases/DragonDeathPhase/f_31215_ net/minecraft/world/entity/boss/enderdragon/phases/DragonDeathPhase/time +FD: net/minecraft/world/entity/boss/enderdragon/phases/DragonHoldingPatternPhase/f_31224_ net/minecraft/world/entity/boss/enderdragon/phases/DragonHoldingPatternPhase/NEW_TARGET_TARGETING +FD: net/minecraft/world/entity/boss/enderdragon/phases/DragonHoldingPatternPhase/f_31225_ net/minecraft/world/entity/boss/enderdragon/phases/DragonHoldingPatternPhase/currentPath +FD: net/minecraft/world/entity/boss/enderdragon/phases/DragonHoldingPatternPhase/f_31226_ net/minecraft/world/entity/boss/enderdragon/phases/DragonHoldingPatternPhase/targetLocation +FD: net/minecraft/world/entity/boss/enderdragon/phases/DragonHoldingPatternPhase/f_31227_ net/minecraft/world/entity/boss/enderdragon/phases/DragonHoldingPatternPhase/clockwise +FD: net/minecraft/world/entity/boss/enderdragon/phases/DragonHoverPhase/f_31244_ net/minecraft/world/entity/boss/enderdragon/phases/DragonHoverPhase/targetLocation +FD: net/minecraft/world/entity/boss/enderdragon/phases/DragonLandingApproachPhase/f_31253_ net/minecraft/world/entity/boss/enderdragon/phases/DragonLandingApproachPhase/NEAR_EGG_TARGETING +FD: net/minecraft/world/entity/boss/enderdragon/phases/DragonLandingApproachPhase/f_31254_ net/minecraft/world/entity/boss/enderdragon/phases/DragonLandingApproachPhase/currentPath +FD: net/minecraft/world/entity/boss/enderdragon/phases/DragonLandingApproachPhase/f_31255_ net/minecraft/world/entity/boss/enderdragon/phases/DragonLandingApproachPhase/targetLocation +FD: net/minecraft/world/entity/boss/enderdragon/phases/DragonLandingPhase/f_31303_ net/minecraft/world/entity/boss/enderdragon/phases/DragonLandingPhase/targetLocation +FD: net/minecraft/world/entity/boss/enderdragon/phases/DragonSittingAttackingPhase/f_149578_ net/minecraft/world/entity/boss/enderdragon/phases/DragonSittingAttackingPhase/ROAR_DURATION +FD: net/minecraft/world/entity/boss/enderdragon/phases/DragonSittingAttackingPhase/f_31319_ net/minecraft/world/entity/boss/enderdragon/phases/DragonSittingAttackingPhase/attackingTicks +FD: net/minecraft/world/entity/boss/enderdragon/phases/DragonSittingFlamingPhase/f_149579_ net/minecraft/world/entity/boss/enderdragon/phases/DragonSittingFlamingPhase/FLAME_DURATION +FD: net/minecraft/world/entity/boss/enderdragon/phases/DragonSittingFlamingPhase/f_149580_ net/minecraft/world/entity/boss/enderdragon/phases/DragonSittingFlamingPhase/SITTING_FLAME_ATTACKS_COUNT +FD: net/minecraft/world/entity/boss/enderdragon/phases/DragonSittingFlamingPhase/f_149581_ net/minecraft/world/entity/boss/enderdragon/phases/DragonSittingFlamingPhase/WARMUP_TIME +FD: net/minecraft/world/entity/boss/enderdragon/phases/DragonSittingFlamingPhase/f_31326_ net/minecraft/world/entity/boss/enderdragon/phases/DragonSittingFlamingPhase/flameTicks +FD: net/minecraft/world/entity/boss/enderdragon/phases/DragonSittingFlamingPhase/f_31327_ net/minecraft/world/entity/boss/enderdragon/phases/DragonSittingFlamingPhase/flameCount +FD: net/minecraft/world/entity/boss/enderdragon/phases/DragonSittingFlamingPhase/f_31328_ net/minecraft/world/entity/boss/enderdragon/phases/DragonSittingFlamingPhase/flame +FD: net/minecraft/world/entity/boss/enderdragon/phases/DragonSittingScanningPhase/f_149582_ net/minecraft/world/entity/boss/enderdragon/phases/DragonSittingScanningPhase/SITTING_SCANNING_IDLE_TICKS +FD: net/minecraft/world/entity/boss/enderdragon/phases/DragonSittingScanningPhase/f_149583_ net/minecraft/world/entity/boss/enderdragon/phases/DragonSittingScanningPhase/SITTING_ATTACK_Y_VIEW_RANGE +FD: net/minecraft/world/entity/boss/enderdragon/phases/DragonSittingScanningPhase/f_149584_ net/minecraft/world/entity/boss/enderdragon/phases/DragonSittingScanningPhase/SITTING_ATTACK_VIEW_RANGE +FD: net/minecraft/world/entity/boss/enderdragon/phases/DragonSittingScanningPhase/f_149585_ net/minecraft/world/entity/boss/enderdragon/phases/DragonSittingScanningPhase/SITTING_CHARGE_VIEW_RANGE +FD: net/minecraft/world/entity/boss/enderdragon/phases/DragonSittingScanningPhase/f_31337_ net/minecraft/world/entity/boss/enderdragon/phases/DragonSittingScanningPhase/CHARGE_TARGETING +FD: net/minecraft/world/entity/boss/enderdragon/phases/DragonSittingScanningPhase/f_31338_ net/minecraft/world/entity/boss/enderdragon/phases/DragonSittingScanningPhase/scanTargeting +FD: net/minecraft/world/entity/boss/enderdragon/phases/DragonSittingScanningPhase/f_31339_ net/minecraft/world/entity/boss/enderdragon/phases/DragonSittingScanningPhase/scanningTime +FD: net/minecraft/world/entity/boss/enderdragon/phases/DragonStrafePlayerPhase/f_149586_ net/minecraft/world/entity/boss/enderdragon/phases/DragonStrafePlayerPhase/FIREBALL_CHARGE_AMOUNT +FD: net/minecraft/world/entity/boss/enderdragon/phases/DragonStrafePlayerPhase/f_31349_ net/minecraft/world/entity/boss/enderdragon/phases/DragonStrafePlayerPhase/LOGGER +FD: net/minecraft/world/entity/boss/enderdragon/phases/DragonStrafePlayerPhase/f_31350_ net/minecraft/world/entity/boss/enderdragon/phases/DragonStrafePlayerPhase/fireballCharge +FD: net/minecraft/world/entity/boss/enderdragon/phases/DragonStrafePlayerPhase/f_31351_ net/minecraft/world/entity/boss/enderdragon/phases/DragonStrafePlayerPhase/currentPath +FD: net/minecraft/world/entity/boss/enderdragon/phases/DragonStrafePlayerPhase/f_31352_ net/minecraft/world/entity/boss/enderdragon/phases/DragonStrafePlayerPhase/targetLocation +FD: net/minecraft/world/entity/boss/enderdragon/phases/DragonStrafePlayerPhase/f_31353_ net/minecraft/world/entity/boss/enderdragon/phases/DragonStrafePlayerPhase/attackTarget +FD: net/minecraft/world/entity/boss/enderdragon/phases/DragonStrafePlayerPhase/f_31354_ net/minecraft/world/entity/boss/enderdragon/phases/DragonStrafePlayerPhase/holdingPatternClockwise +FD: net/minecraft/world/entity/boss/enderdragon/phases/DragonTakeoffPhase/f_31366_ net/minecraft/world/entity/boss/enderdragon/phases/DragonTakeoffPhase/firstTick +FD: net/minecraft/world/entity/boss/enderdragon/phases/DragonTakeoffPhase/f_31367_ net/minecraft/world/entity/boss/enderdragon/phases/DragonTakeoffPhase/currentPath +FD: net/minecraft/world/entity/boss/enderdragon/phases/DragonTakeoffPhase/f_31368_ net/minecraft/world/entity/boss/enderdragon/phases/DragonTakeoffPhase/targetLocation +FD: net/minecraft/world/entity/boss/enderdragon/phases/EnderDragonPhase/f_31377_ net/minecraft/world/entity/boss/enderdragon/phases/EnderDragonPhase/HOLDING_PATTERN +FD: net/minecraft/world/entity/boss/enderdragon/phases/EnderDragonPhase/f_31378_ net/minecraft/world/entity/boss/enderdragon/phases/EnderDragonPhase/STRAFE_PLAYER +FD: net/minecraft/world/entity/boss/enderdragon/phases/EnderDragonPhase/f_31379_ net/minecraft/world/entity/boss/enderdragon/phases/EnderDragonPhase/LANDING_APPROACH +FD: net/minecraft/world/entity/boss/enderdragon/phases/EnderDragonPhase/f_31380_ net/minecraft/world/entity/boss/enderdragon/phases/EnderDragonPhase/LANDING +FD: net/minecraft/world/entity/boss/enderdragon/phases/EnderDragonPhase/f_31381_ net/minecraft/world/entity/boss/enderdragon/phases/EnderDragonPhase/TAKEOFF +FD: net/minecraft/world/entity/boss/enderdragon/phases/EnderDragonPhase/f_31382_ net/minecraft/world/entity/boss/enderdragon/phases/EnderDragonPhase/SITTING_FLAMING +FD: net/minecraft/world/entity/boss/enderdragon/phases/EnderDragonPhase/f_31383_ net/minecraft/world/entity/boss/enderdragon/phases/EnderDragonPhase/SITTING_SCANNING +FD: net/minecraft/world/entity/boss/enderdragon/phases/EnderDragonPhase/f_31384_ net/minecraft/world/entity/boss/enderdragon/phases/EnderDragonPhase/SITTING_ATTACKING +FD: net/minecraft/world/entity/boss/enderdragon/phases/EnderDragonPhase/f_31385_ net/minecraft/world/entity/boss/enderdragon/phases/EnderDragonPhase/CHARGING_PLAYER +FD: net/minecraft/world/entity/boss/enderdragon/phases/EnderDragonPhase/f_31386_ net/minecraft/world/entity/boss/enderdragon/phases/EnderDragonPhase/DYING +FD: net/minecraft/world/entity/boss/enderdragon/phases/EnderDragonPhase/f_31387_ net/minecraft/world/entity/boss/enderdragon/phases/EnderDragonPhase/HOVERING +FD: net/minecraft/world/entity/boss/enderdragon/phases/EnderDragonPhase/f_31388_ net/minecraft/world/entity/boss/enderdragon/phases/EnderDragonPhase/phases +FD: net/minecraft/world/entity/boss/enderdragon/phases/EnderDragonPhase/f_31389_ net/minecraft/world/entity/boss/enderdragon/phases/EnderDragonPhase/instanceClass +FD: net/minecraft/world/entity/boss/enderdragon/phases/EnderDragonPhase/f_31390_ net/minecraft/world/entity/boss/enderdragon/phases/EnderDragonPhase/id +FD: net/minecraft/world/entity/boss/enderdragon/phases/EnderDragonPhase/f_31391_ net/minecraft/world/entity/boss/enderdragon/phases/EnderDragonPhase/name +FD: net/minecraft/world/entity/boss/enderdragon/phases/EnderDragonPhaseManager/f_31408_ net/minecraft/world/entity/boss/enderdragon/phases/EnderDragonPhaseManager/LOGGER +FD: net/minecraft/world/entity/boss/enderdragon/phases/EnderDragonPhaseManager/f_31409_ net/minecraft/world/entity/boss/enderdragon/phases/EnderDragonPhaseManager/dragon +FD: net/minecraft/world/entity/boss/enderdragon/phases/EnderDragonPhaseManager/f_31410_ net/minecraft/world/entity/boss/enderdragon/phases/EnderDragonPhaseManager/phases +FD: net/minecraft/world/entity/boss/enderdragon/phases/EnderDragonPhaseManager/f_31411_ net/minecraft/world/entity/boss/enderdragon/phases/EnderDragonPhaseManager/currentPhase +FD: net/minecraft/world/entity/boss/wither/WitherBoss/f_149587_ net/minecraft/world/entity/boss/wither/WitherBoss/INVULNERABLE_TICKS +FD: net/minecraft/world/entity/boss/wither/WitherBoss/f_31420_ net/minecraft/world/entity/boss/wither/WitherBoss/DATA_TARGET_A +FD: net/minecraft/world/entity/boss/wither/WitherBoss/f_31421_ net/minecraft/world/entity/boss/wither/WitherBoss/DATA_TARGETS +FD: net/minecraft/world/entity/boss/wither/WitherBoss/f_31422_ net/minecraft/world/entity/boss/wither/WitherBoss/DATA_ID_INV +FD: net/minecraft/world/entity/boss/wither/WitherBoss/f_31423_ net/minecraft/world/entity/boss/wither/WitherBoss/xRotHeads +FD: net/minecraft/world/entity/boss/wither/WitherBoss/f_31424_ net/minecraft/world/entity/boss/wither/WitherBoss/yRotHeads +FD: net/minecraft/world/entity/boss/wither/WitherBoss/f_31425_ net/minecraft/world/entity/boss/wither/WitherBoss/xRotOHeads +FD: net/minecraft/world/entity/boss/wither/WitherBoss/f_31426_ net/minecraft/world/entity/boss/wither/WitherBoss/yRotOHeads +FD: net/minecraft/world/entity/boss/wither/WitherBoss/f_31427_ net/minecraft/world/entity/boss/wither/WitherBoss/nextHeadUpdate +FD: net/minecraft/world/entity/boss/wither/WitherBoss/f_31428_ net/minecraft/world/entity/boss/wither/WitherBoss/idleHeadUpdates +FD: net/minecraft/world/entity/boss/wither/WitherBoss/f_31429_ net/minecraft/world/entity/boss/wither/WitherBoss/destroyBlocksTick +FD: net/minecraft/world/entity/boss/wither/WitherBoss/f_31430_ net/minecraft/world/entity/boss/wither/WitherBoss/bossEvent +FD: net/minecraft/world/entity/boss/wither/WitherBoss/f_31431_ net/minecraft/world/entity/boss/wither/WitherBoss/LIVING_ENTITY_SELECTOR +FD: net/minecraft/world/entity/boss/wither/WitherBoss/f_31432_ net/minecraft/world/entity/boss/wither/WitherBoss/TARGETING_CONDITIONS +FD: net/minecraft/world/entity/boss/wither/WitherBoss/f_31433_ net/minecraft/world/entity/boss/wither/WitherBoss/DATA_TARGET_B +FD: net/minecraft/world/entity/boss/wither/WitherBoss/f_31434_ net/minecraft/world/entity/boss/wither/WitherBoss/DATA_TARGET_C +FD: net/minecraft/world/entity/boss/wither/WitherBoss$WitherDoNothingGoal/f_31520_ net/minecraft/world/entity/boss/wither/WitherBoss$WitherDoNothingGoal/this$0 +FD: net/minecraft/world/entity/decoration/ArmorStand/f_149592_ net/minecraft/world/entity/decoration/ArmorStand/WOBBLE_TIME +FD: net/minecraft/world/entity/decoration/ArmorStand/f_149593_ net/minecraft/world/entity/decoration/ArmorStand/CLIENT_FLAG_NO_BASEPLATE +FD: net/minecraft/world/entity/decoration/ArmorStand/f_149594_ net/minecraft/world/entity/decoration/ArmorStand/CLIENT_FLAG_MARKER +FD: net/minecraft/world/entity/decoration/ArmorStand/f_149595_ net/minecraft/world/entity/decoration/ArmorStand/ENABLE_ARMS +FD: net/minecraft/world/entity/decoration/ArmorStand/f_149596_ net/minecraft/world/entity/decoration/ArmorStand/FEET_OFFSET +FD: net/minecraft/world/entity/decoration/ArmorStand/f_149597_ net/minecraft/world/entity/decoration/ArmorStand/CHEST_OFFSET +FD: net/minecraft/world/entity/decoration/ArmorStand/f_149598_ net/minecraft/world/entity/decoration/ArmorStand/LEGS_OFFSET +FD: net/minecraft/world/entity/decoration/ArmorStand/f_149599_ net/minecraft/world/entity/decoration/ArmorStand/DISABLE_TAKING_OFFSET +FD: net/minecraft/world/entity/decoration/ArmorStand/f_149600_ net/minecraft/world/entity/decoration/ArmorStand/HEAD_OFFSET +FD: net/minecraft/world/entity/decoration/ArmorStand/f_149601_ net/minecraft/world/entity/decoration/ArmorStand/DISABLE_PUTTING_OFFSET +FD: net/minecraft/world/entity/decoration/ArmorStand/f_149602_ net/minecraft/world/entity/decoration/ArmorStand/CLIENT_FLAG_SMALL +FD: net/minecraft/world/entity/decoration/ArmorStand/f_149603_ net/minecraft/world/entity/decoration/ArmorStand/CLIENT_FLAG_SHOW_ARMS +FD: net/minecraft/world/entity/decoration/ArmorStand/f_31524_ net/minecraft/world/entity/decoration/ArmorStand/DATA_CLIENT_FLAGS +FD: net/minecraft/world/entity/decoration/ArmorStand/f_31525_ net/minecraft/world/entity/decoration/ArmorStand/leftLegPose +FD: net/minecraft/world/entity/decoration/ArmorStand/f_31526_ net/minecraft/world/entity/decoration/ArmorStand/rightLegPose +FD: net/minecraft/world/entity/decoration/ArmorStand/f_31527_ net/minecraft/world/entity/decoration/ArmorStand/DATA_RIGHT_LEG_POSE +FD: net/minecraft/world/entity/decoration/ArmorStand/f_31528_ net/minecraft/world/entity/decoration/ArmorStand/lastHit +FD: net/minecraft/world/entity/decoration/ArmorStand/f_31529_ net/minecraft/world/entity/decoration/ArmorStand/DEFAULT_HEAD_POSE +FD: net/minecraft/world/entity/decoration/ArmorStand/f_31530_ net/minecraft/world/entity/decoration/ArmorStand/DEFAULT_BODY_POSE +FD: net/minecraft/world/entity/decoration/ArmorStand/f_31531_ net/minecraft/world/entity/decoration/ArmorStand/DEFAULT_LEFT_ARM_POSE +FD: net/minecraft/world/entity/decoration/ArmorStand/f_31532_ net/minecraft/world/entity/decoration/ArmorStand/DEFAULT_RIGHT_ARM_POSE +FD: net/minecraft/world/entity/decoration/ArmorStand/f_31533_ net/minecraft/world/entity/decoration/ArmorStand/DEFAULT_LEFT_LEG_POSE +FD: net/minecraft/world/entity/decoration/ArmorStand/f_31534_ net/minecraft/world/entity/decoration/ArmorStand/DEFAULT_RIGHT_LEG_POSE +FD: net/minecraft/world/entity/decoration/ArmorStand/f_31535_ net/minecraft/world/entity/decoration/ArmorStand/MARKER_DIMENSIONS +FD: net/minecraft/world/entity/decoration/ArmorStand/f_31536_ net/minecraft/world/entity/decoration/ArmorStand/BABY_DIMENSIONS +FD: net/minecraft/world/entity/decoration/ArmorStand/f_31537_ net/minecraft/world/entity/decoration/ArmorStand/RIDABLE_MINECARTS +FD: net/minecraft/world/entity/decoration/ArmorStand/f_31538_ net/minecraft/world/entity/decoration/ArmorStand/handItems +FD: net/minecraft/world/entity/decoration/ArmorStand/f_31539_ net/minecraft/world/entity/decoration/ArmorStand/armorItems +FD: net/minecraft/world/entity/decoration/ArmorStand/f_31540_ net/minecraft/world/entity/decoration/ArmorStand/invisible +FD: net/minecraft/world/entity/decoration/ArmorStand/f_31541_ net/minecraft/world/entity/decoration/ArmorStand/disabledSlots +FD: net/minecraft/world/entity/decoration/ArmorStand/f_31542_ net/minecraft/world/entity/decoration/ArmorStand/headPose +FD: net/minecraft/world/entity/decoration/ArmorStand/f_31543_ net/minecraft/world/entity/decoration/ArmorStand/bodyPose +FD: net/minecraft/world/entity/decoration/ArmorStand/f_31544_ net/minecraft/world/entity/decoration/ArmorStand/leftArmPose +FD: net/minecraft/world/entity/decoration/ArmorStand/f_31545_ net/minecraft/world/entity/decoration/ArmorStand/rightArmPose +FD: net/minecraft/world/entity/decoration/ArmorStand/f_31546_ net/minecraft/world/entity/decoration/ArmorStand/DATA_HEAD_POSE +FD: net/minecraft/world/entity/decoration/ArmorStand/f_31547_ net/minecraft/world/entity/decoration/ArmorStand/DATA_BODY_POSE +FD: net/minecraft/world/entity/decoration/ArmorStand/f_31548_ net/minecraft/world/entity/decoration/ArmorStand/DATA_LEFT_ARM_POSE +FD: net/minecraft/world/entity/decoration/ArmorStand/f_31549_ net/minecraft/world/entity/decoration/ArmorStand/DATA_RIGHT_ARM_POSE +FD: net/minecraft/world/entity/decoration/ArmorStand/f_31550_ net/minecraft/world/entity/decoration/ArmorStand/DATA_LEFT_LEG_POSE +FD: net/minecraft/world/entity/decoration/ArmorStand$1/f_31695_ net/minecraft/world/entity/decoration/ArmorStand$1/$SwitchMap$net$minecraft$world$entity$EquipmentSlot$Type +FD: net/minecraft/world/entity/decoration/HangingEntity/f_238173_ net/minecraft/world/entity/decoration/HangingEntity/LOGGER +FD: net/minecraft/world/entity/decoration/HangingEntity/f_31697_ net/minecraft/world/entity/decoration/HangingEntity/HANGING_ENTITY +FD: net/minecraft/world/entity/decoration/HangingEntity/f_31698_ net/minecraft/world/entity/decoration/HangingEntity/pos +FD: net/minecraft/world/entity/decoration/HangingEntity/f_31699_ net/minecraft/world/entity/decoration/HangingEntity/direction +FD: net/minecraft/world/entity/decoration/HangingEntity/f_31700_ net/minecraft/world/entity/decoration/HangingEntity/checkInterval +FD: net/minecraft/world/entity/decoration/HangingEntity$1/f_31752_ net/minecraft/world/entity/decoration/HangingEntity$1/$SwitchMap$net$minecraft$world$level$block$Rotation +FD: net/minecraft/world/entity/decoration/ItemFrame/f_149619_ net/minecraft/world/entity/decoration/ItemFrame/NUM_ROTATIONS +FD: net/minecraft/world/entity/decoration/ItemFrame/f_31754_ net/minecraft/world/entity/decoration/ItemFrame/dropChance +FD: net/minecraft/world/entity/decoration/ItemFrame/f_31755_ net/minecraft/world/entity/decoration/ItemFrame/fixed +FD: net/minecraft/world/entity/decoration/ItemFrame/f_31756_ net/minecraft/world/entity/decoration/ItemFrame/LOGGER +FD: net/minecraft/world/entity/decoration/ItemFrame/f_31757_ net/minecraft/world/entity/decoration/ItemFrame/DATA_ITEM +FD: net/minecraft/world/entity/decoration/ItemFrame/f_31758_ net/minecraft/world/entity/decoration/ItemFrame/DATA_ROTATION +FD: net/minecraft/world/entity/decoration/ItemFrame$1/f_149630_ net/minecraft/world/entity/decoration/ItemFrame$1/this$0 +FD: net/minecraft/world/entity/decoration/ItemFrame$2/f_149636_ net/minecraft/world/entity/decoration/ItemFrame$2/$SwitchMap$net$minecraft$core$Direction$Axis +FD: net/minecraft/world/entity/decoration/LeashFenceKnotEntity/f_149638_ net/minecraft/world/entity/decoration/LeashFenceKnotEntity/OFFSET_Y +FD: net/minecraft/world/entity/decoration/Painting/f_218870_ net/minecraft/world/entity/decoration/Painting/DATA_PAINTING_VARIANT_ID +FD: net/minecraft/world/entity/decoration/Painting/f_218871_ net/minecraft/world/entity/decoration/Painting/DEFAULT_VARIANT +FD: net/minecraft/world/entity/decoration/Painting/f_268609_ net/minecraft/world/entity/decoration/Painting/VARIANT_TAG +FD: net/minecraft/world/entity/decoration/PaintingVariant/f_218903_ net/minecraft/world/entity/decoration/PaintingVariant/width +FD: net/minecraft/world/entity/decoration/PaintingVariant/f_218904_ net/minecraft/world/entity/decoration/PaintingVariant/height +FD: net/minecraft/world/entity/decoration/PaintingVariants/f_218910_ net/minecraft/world/entity/decoration/PaintingVariants/EARTH +FD: net/minecraft/world/entity/decoration/PaintingVariants/f_218911_ net/minecraft/world/entity/decoration/PaintingVariants/WIND +FD: net/minecraft/world/entity/decoration/PaintingVariants/f_218912_ net/minecraft/world/entity/decoration/PaintingVariants/WATER +FD: net/minecraft/world/entity/decoration/PaintingVariants/f_218913_ net/minecraft/world/entity/decoration/PaintingVariants/FIRE +FD: net/minecraft/world/entity/decoration/PaintingVariants/f_218914_ net/minecraft/world/entity/decoration/PaintingVariants/KEBAB +FD: net/minecraft/world/entity/decoration/PaintingVariants/f_218915_ net/minecraft/world/entity/decoration/PaintingVariants/AZTEC +FD: net/minecraft/world/entity/decoration/PaintingVariants/f_218916_ net/minecraft/world/entity/decoration/PaintingVariants/ALBAN +FD: net/minecraft/world/entity/decoration/PaintingVariants/f_218917_ net/minecraft/world/entity/decoration/PaintingVariants/AZTEC2 +FD: net/minecraft/world/entity/decoration/PaintingVariants/f_218918_ net/minecraft/world/entity/decoration/PaintingVariants/BOMB +FD: net/minecraft/world/entity/decoration/PaintingVariants/f_218919_ net/minecraft/world/entity/decoration/PaintingVariants/PLANT +FD: net/minecraft/world/entity/decoration/PaintingVariants/f_218920_ net/minecraft/world/entity/decoration/PaintingVariants/WASTELAND +FD: net/minecraft/world/entity/decoration/PaintingVariants/f_218921_ net/minecraft/world/entity/decoration/PaintingVariants/POOL +FD: net/minecraft/world/entity/decoration/PaintingVariants/f_218922_ net/minecraft/world/entity/decoration/PaintingVariants/COURBET +FD: net/minecraft/world/entity/decoration/PaintingVariants/f_218923_ net/minecraft/world/entity/decoration/PaintingVariants/SEA +FD: net/minecraft/world/entity/decoration/PaintingVariants/f_218924_ net/minecraft/world/entity/decoration/PaintingVariants/SUNSET +FD: net/minecraft/world/entity/decoration/PaintingVariants/f_218925_ net/minecraft/world/entity/decoration/PaintingVariants/CREEBET +FD: net/minecraft/world/entity/decoration/PaintingVariants/f_218926_ net/minecraft/world/entity/decoration/PaintingVariants/WANDERER +FD: net/minecraft/world/entity/decoration/PaintingVariants/f_218927_ net/minecraft/world/entity/decoration/PaintingVariants/GRAHAM +FD: net/minecraft/world/entity/decoration/PaintingVariants/f_218928_ net/minecraft/world/entity/decoration/PaintingVariants/MATCH +FD: net/minecraft/world/entity/decoration/PaintingVariants/f_218929_ net/minecraft/world/entity/decoration/PaintingVariants/BUST +FD: net/minecraft/world/entity/decoration/PaintingVariants/f_218930_ net/minecraft/world/entity/decoration/PaintingVariants/STAGE +FD: net/minecraft/world/entity/decoration/PaintingVariants/f_218931_ net/minecraft/world/entity/decoration/PaintingVariants/VOID +FD: net/minecraft/world/entity/decoration/PaintingVariants/f_218932_ net/minecraft/world/entity/decoration/PaintingVariants/SKULL_AND_ROSES +FD: net/minecraft/world/entity/decoration/PaintingVariants/f_218933_ net/minecraft/world/entity/decoration/PaintingVariants/WITHER +FD: net/minecraft/world/entity/decoration/PaintingVariants/f_218934_ net/minecraft/world/entity/decoration/PaintingVariants/FIGHTERS +FD: net/minecraft/world/entity/decoration/PaintingVariants/f_218935_ net/minecraft/world/entity/decoration/PaintingVariants/POINTER +FD: net/minecraft/world/entity/decoration/PaintingVariants/f_218936_ net/minecraft/world/entity/decoration/PaintingVariants/PIGSCENE +FD: net/minecraft/world/entity/decoration/PaintingVariants/f_218937_ net/minecraft/world/entity/decoration/PaintingVariants/BURNING_SKULL +FD: net/minecraft/world/entity/decoration/PaintingVariants/f_218938_ net/minecraft/world/entity/decoration/PaintingVariants/SKELETON +FD: net/minecraft/world/entity/decoration/PaintingVariants/f_218939_ net/minecraft/world/entity/decoration/PaintingVariants/DONKEY_KONG +FD: net/minecraft/world/entity/item/FallingBlockEntity/f_149641_ net/minecraft/world/entity/item/FallingBlockEntity/fallDamagePerDistance +FD: net/minecraft/world/entity/item/FallingBlockEntity/f_201970_ net/minecraft/world/entity/item/FallingBlockEntity/LOGGER +FD: net/minecraft/world/entity/item/FallingBlockEntity/f_31939_ net/minecraft/world/entity/item/FallingBlockEntity/hurtEntities +FD: net/minecraft/world/entity/item/FallingBlockEntity/f_31940_ net/minecraft/world/entity/item/FallingBlockEntity/fallDamageMax +FD: net/minecraft/world/entity/item/FallingBlockEntity/f_31942_ net/minecraft/world/entity/item/FallingBlockEntity/time +FD: net/minecraft/world/entity/item/FallingBlockEntity/f_31943_ net/minecraft/world/entity/item/FallingBlockEntity/dropItem +FD: net/minecraft/world/entity/item/FallingBlockEntity/f_31944_ net/minecraft/world/entity/item/FallingBlockEntity/blockData +FD: net/minecraft/world/entity/item/FallingBlockEntity/f_31945_ net/minecraft/world/entity/item/FallingBlockEntity/DATA_START_POS +FD: net/minecraft/world/entity/item/FallingBlockEntity/f_31946_ net/minecraft/world/entity/item/FallingBlockEntity/blockState +FD: net/minecraft/world/entity/item/FallingBlockEntity/f_31947_ net/minecraft/world/entity/item/FallingBlockEntity/cancelDrop +FD: net/minecraft/world/entity/item/ItemEntity/f_149659_ net/minecraft/world/entity/item/ItemEntity/LIFETIME +FD: net/minecraft/world/entity/item/ItemEntity/f_149660_ net/minecraft/world/entity/item/ItemEntity/INFINITE_PICKUP_DELAY +FD: net/minecraft/world/entity/item/ItemEntity/f_149661_ net/minecraft/world/entity/item/ItemEntity/INFINITE_LIFETIME +FD: net/minecraft/world/entity/item/ItemEntity/f_265881_ net/minecraft/world/entity/item/ItemEntity/target +FD: net/minecraft/world/entity/item/ItemEntity/f_31983_ net/minecraft/world/entity/item/ItemEntity/bobOffs +FD: net/minecraft/world/entity/item/ItemEntity/f_31984_ net/minecraft/world/entity/item/ItemEntity/DATA_ITEM +FD: net/minecraft/world/entity/item/ItemEntity/f_31985_ net/minecraft/world/entity/item/ItemEntity/age +FD: net/minecraft/world/entity/item/ItemEntity/f_31986_ net/minecraft/world/entity/item/ItemEntity/pickupDelay +FD: net/minecraft/world/entity/item/ItemEntity/f_31987_ net/minecraft/world/entity/item/ItemEntity/health +FD: net/minecraft/world/entity/item/ItemEntity/f_31988_ net/minecraft/world/entity/item/ItemEntity/thrower +FD: net/minecraft/world/entity/item/PrimedTnt/f_149679_ net/minecraft/world/entity/item/PrimedTnt/DEFAULT_FUSE_TIME +FD: net/minecraft/world/entity/item/PrimedTnt/f_32071_ net/minecraft/world/entity/item/PrimedTnt/DATA_FUSE_ID +FD: net/minecraft/world/entity/item/PrimedTnt/f_32072_ net/minecraft/world/entity/item/PrimedTnt/owner +FD: net/minecraft/world/entity/monster/AbstractIllager$IllagerArmPose/$VALUES net/minecraft/world/entity/monster/AbstractIllager$IllagerArmPose/$VALUES +FD: net/minecraft/world/entity/monster/AbstractIllager$IllagerArmPose/ATTACKING net/minecraft/world/entity/monster/AbstractIllager$IllagerArmPose/ATTACKING +FD: net/minecraft/world/entity/monster/AbstractIllager$IllagerArmPose/BOW_AND_ARROW net/minecraft/world/entity/monster/AbstractIllager$IllagerArmPose/BOW_AND_ARROW +FD: net/minecraft/world/entity/monster/AbstractIllager$IllagerArmPose/CELEBRATING net/minecraft/world/entity/monster/AbstractIllager$IllagerArmPose/CELEBRATING +FD: net/minecraft/world/entity/monster/AbstractIllager$IllagerArmPose/CROSSBOW_CHARGE net/minecraft/world/entity/monster/AbstractIllager$IllagerArmPose/CROSSBOW_CHARGE +FD: net/minecraft/world/entity/monster/AbstractIllager$IllagerArmPose/CROSSBOW_HOLD net/minecraft/world/entity/monster/AbstractIllager$IllagerArmPose/CROSSBOW_HOLD +FD: net/minecraft/world/entity/monster/AbstractIllager$IllagerArmPose/CROSSED net/minecraft/world/entity/monster/AbstractIllager$IllagerArmPose/CROSSED +FD: net/minecraft/world/entity/monster/AbstractIllager$IllagerArmPose/NEUTRAL net/minecraft/world/entity/monster/AbstractIllager$IllagerArmPose/NEUTRAL +FD: net/minecraft/world/entity/monster/AbstractIllager$IllagerArmPose/SPELLCASTING net/minecraft/world/entity/monster/AbstractIllager$IllagerArmPose/SPELLCASTING +FD: net/minecraft/world/entity/monster/AbstractIllager$RaiderOpenDoorGoal/f_32125_ net/minecraft/world/entity/monster/AbstractIllager$RaiderOpenDoorGoal/this$0 +FD: net/minecraft/world/entity/monster/AbstractSkeleton/f_32130_ net/minecraft/world/entity/monster/AbstractSkeleton/bowGoal +FD: net/minecraft/world/entity/monster/AbstractSkeleton/f_32131_ net/minecraft/world/entity/monster/AbstractSkeleton/meleeGoal +FD: net/minecraft/world/entity/monster/AbstractSkeleton$1/f_32168_ net/minecraft/world/entity/monster/AbstractSkeleton$1/this$0 +FD: net/minecraft/world/entity/monster/Blaze/f_32214_ net/minecraft/world/entity/monster/Blaze/allowedHeightOffset +FD: net/minecraft/world/entity/monster/Blaze/f_32215_ net/minecraft/world/entity/monster/Blaze/nextHeightOffsetChangeTick +FD: net/minecraft/world/entity/monster/Blaze/f_32216_ net/minecraft/world/entity/monster/Blaze/DATA_FLAGS_ID +FD: net/minecraft/world/entity/monster/Blaze$BlazeAttackGoal/f_32242_ net/minecraft/world/entity/monster/Blaze$BlazeAttackGoal/blaze +FD: net/minecraft/world/entity/monster/Blaze$BlazeAttackGoal/f_32243_ net/minecraft/world/entity/monster/Blaze$BlazeAttackGoal/attackStep +FD: net/minecraft/world/entity/monster/Blaze$BlazeAttackGoal/f_32244_ net/minecraft/world/entity/monster/Blaze$BlazeAttackGoal/attackTime +FD: net/minecraft/world/entity/monster/Blaze$BlazeAttackGoal/f_32245_ net/minecraft/world/entity/monster/Blaze$BlazeAttackGoal/lastSeen +FD: net/minecraft/world/entity/monster/Creeper/f_32268_ net/minecraft/world/entity/monster/Creeper/DATA_SWELL_DIR +FD: net/minecraft/world/entity/monster/Creeper/f_32269_ net/minecraft/world/entity/monster/Creeper/oldSwell +FD: net/minecraft/world/entity/monster/Creeper/f_32270_ net/minecraft/world/entity/monster/Creeper/swell +FD: net/minecraft/world/entity/monster/Creeper/f_32271_ net/minecraft/world/entity/monster/Creeper/maxSwell +FD: net/minecraft/world/entity/monster/Creeper/f_32272_ net/minecraft/world/entity/monster/Creeper/explosionRadius +FD: net/minecraft/world/entity/monster/Creeper/f_32273_ net/minecraft/world/entity/monster/Creeper/droppedSkulls +FD: net/minecraft/world/entity/monster/Creeper/f_32274_ net/minecraft/world/entity/monster/Creeper/DATA_IS_POWERED +FD: net/minecraft/world/entity/monster/Creeper/f_32275_ net/minecraft/world/entity/monster/Creeper/DATA_IS_IGNITED +FD: net/minecraft/world/entity/monster/Drowned/f_149692_ net/minecraft/world/entity/monster/Drowned/NAUTILUS_SHELL_CHANCE +FD: net/minecraft/world/entity/monster/Drowned/f_32340_ net/minecraft/world/entity/monster/Drowned/waterNavigation +FD: net/minecraft/world/entity/monster/Drowned/f_32341_ net/minecraft/world/entity/monster/Drowned/groundNavigation +FD: net/minecraft/world/entity/monster/Drowned/f_32342_ net/minecraft/world/entity/monster/Drowned/searchingForLand +FD: net/minecraft/world/entity/monster/Drowned$DrownedAttackGoal/f_32400_ net/minecraft/world/entity/monster/Drowned$DrownedAttackGoal/drowned +FD: net/minecraft/world/entity/monster/Drowned$DrownedGoToBeachGoal/f_32407_ net/minecraft/world/entity/monster/Drowned$DrownedGoToBeachGoal/drowned +FD: net/minecraft/world/entity/monster/Drowned$DrownedGoToWaterGoal/f_32418_ net/minecraft/world/entity/monster/Drowned$DrownedGoToWaterGoal/mob +FD: net/minecraft/world/entity/monster/Drowned$DrownedGoToWaterGoal/f_32419_ net/minecraft/world/entity/monster/Drowned$DrownedGoToWaterGoal/wantedX +FD: net/minecraft/world/entity/monster/Drowned$DrownedGoToWaterGoal/f_32420_ net/minecraft/world/entity/monster/Drowned$DrownedGoToWaterGoal/wantedY +FD: net/minecraft/world/entity/monster/Drowned$DrownedGoToWaterGoal/f_32421_ net/minecraft/world/entity/monster/Drowned$DrownedGoToWaterGoal/wantedZ +FD: net/minecraft/world/entity/monster/Drowned$DrownedGoToWaterGoal/f_32422_ net/minecraft/world/entity/monster/Drowned$DrownedGoToWaterGoal/speedModifier +FD: net/minecraft/world/entity/monster/Drowned$DrownedGoToWaterGoal/f_32423_ net/minecraft/world/entity/monster/Drowned$DrownedGoToWaterGoal/level +FD: net/minecraft/world/entity/monster/Drowned$DrownedMoveControl/f_32431_ net/minecraft/world/entity/monster/Drowned$DrownedMoveControl/drowned +FD: net/minecraft/world/entity/monster/Drowned$DrownedSwimUpGoal/f_32435_ net/minecraft/world/entity/monster/Drowned$DrownedSwimUpGoal/drowned +FD: net/minecraft/world/entity/monster/Drowned$DrownedSwimUpGoal/f_32436_ net/minecraft/world/entity/monster/Drowned$DrownedSwimUpGoal/speedModifier +FD: net/minecraft/world/entity/monster/Drowned$DrownedSwimUpGoal/f_32437_ net/minecraft/world/entity/monster/Drowned$DrownedSwimUpGoal/seaLevel +FD: net/minecraft/world/entity/monster/Drowned$DrownedSwimUpGoal/f_32438_ net/minecraft/world/entity/monster/Drowned$DrownedSwimUpGoal/stuck +FD: net/minecraft/world/entity/monster/Drowned$DrownedTridentAttackGoal/f_32448_ net/minecraft/world/entity/monster/Drowned$DrownedTridentAttackGoal/drowned +FD: net/minecraft/world/entity/monster/ElderGuardian/f_218961_ net/minecraft/world/entity/monster/ElderGuardian/EFFECT_RADIUS +FD: net/minecraft/world/entity/monster/ElderGuardian/f_218962_ net/minecraft/world/entity/monster/ElderGuardian/EFFECT_DURATION +FD: net/minecraft/world/entity/monster/ElderGuardian/f_218963_ net/minecraft/world/entity/monster/ElderGuardian/EFFECT_AMPLIFIER +FD: net/minecraft/world/entity/monster/ElderGuardian/f_218964_ net/minecraft/world/entity/monster/ElderGuardian/EFFECT_DISPLAY_LIMIT +FD: net/minecraft/world/entity/monster/ElderGuardian/f_218965_ net/minecraft/world/entity/monster/ElderGuardian/EFFECT_INTERVAL +FD: net/minecraft/world/entity/monster/ElderGuardian/f_32457_ net/minecraft/world/entity/monster/ElderGuardian/ELDER_SIZE_SCALE +FD: net/minecraft/world/entity/monster/EnderMan/f_149693_ net/minecraft/world/entity/monster/EnderMan/MIN_DEAGGRESSION_TIME +FD: net/minecraft/world/entity/monster/EnderMan/f_149694_ net/minecraft/world/entity/monster/EnderMan/DELAY_BETWEEN_CREEPY_STARE_SOUND +FD: net/minecraft/world/entity/monster/EnderMan/f_32472_ net/minecraft/world/entity/monster/EnderMan/SPEED_MODIFIER_ATTACKING_UUID +FD: net/minecraft/world/entity/monster/EnderMan/f_32473_ net/minecraft/world/entity/monster/EnderMan/DATA_CREEPY +FD: net/minecraft/world/entity/monster/EnderMan/f_32474_ net/minecraft/world/entity/monster/EnderMan/DATA_STARED_AT +FD: net/minecraft/world/entity/monster/EnderMan/f_32476_ net/minecraft/world/entity/monster/EnderMan/lastStareSound +FD: net/minecraft/world/entity/monster/EnderMan/f_32477_ net/minecraft/world/entity/monster/EnderMan/targetChangeTime +FD: net/minecraft/world/entity/monster/EnderMan/f_32478_ net/minecraft/world/entity/monster/EnderMan/PERSISTENT_ANGER_TIME +FD: net/minecraft/world/entity/monster/EnderMan/f_32479_ net/minecraft/world/entity/monster/EnderMan/remainingPersistentAngerTime +FD: net/minecraft/world/entity/monster/EnderMan/f_32480_ net/minecraft/world/entity/monster/EnderMan/persistentAngerTarget +FD: net/minecraft/world/entity/monster/EnderMan/f_32481_ net/minecraft/world/entity/monster/EnderMan/SPEED_MODIFIER_ATTACKING +FD: net/minecraft/world/entity/monster/EnderMan/f_32482_ net/minecraft/world/entity/monster/EnderMan/DATA_CARRY_STATE +FD: net/minecraft/world/entity/monster/EnderMan$EndermanFreezeWhenLookedAt/f_32547_ net/minecraft/world/entity/monster/EnderMan$EndermanFreezeWhenLookedAt/enderman +FD: net/minecraft/world/entity/monster/EnderMan$EndermanFreezeWhenLookedAt/f_32548_ net/minecraft/world/entity/monster/EnderMan$EndermanFreezeWhenLookedAt/target +FD: net/minecraft/world/entity/monster/EnderMan$EndermanLeaveBlockGoal/f_32554_ net/minecraft/world/entity/monster/EnderMan$EndermanLeaveBlockGoal/enderman +FD: net/minecraft/world/entity/monster/EnderMan$EndermanLookForPlayerGoal/f_252402_ net/minecraft/world/entity/monster/EnderMan$EndermanLookForPlayerGoal/isAngerInducing +FD: net/minecraft/world/entity/monster/EnderMan$EndermanLookForPlayerGoal/f_32566_ net/minecraft/world/entity/monster/EnderMan$EndermanLookForPlayerGoal/enderman +FD: net/minecraft/world/entity/monster/EnderMan$EndermanLookForPlayerGoal/f_32567_ net/minecraft/world/entity/monster/EnderMan$EndermanLookForPlayerGoal/pendingTarget +FD: net/minecraft/world/entity/monster/EnderMan$EndermanLookForPlayerGoal/f_32568_ net/minecraft/world/entity/monster/EnderMan$EndermanLookForPlayerGoal/aggroTime +FD: net/minecraft/world/entity/monster/EnderMan$EndermanLookForPlayerGoal/f_32569_ net/minecraft/world/entity/monster/EnderMan$EndermanLookForPlayerGoal/teleportTime +FD: net/minecraft/world/entity/monster/EnderMan$EndermanLookForPlayerGoal/f_32570_ net/minecraft/world/entity/monster/EnderMan$EndermanLookForPlayerGoal/startAggroTargetConditions +FD: net/minecraft/world/entity/monster/EnderMan$EndermanLookForPlayerGoal/f_32571_ net/minecraft/world/entity/monster/EnderMan$EndermanLookForPlayerGoal/continueAggroTargetConditions +FD: net/minecraft/world/entity/monster/EnderMan$EndermanTakeBlockGoal/f_32583_ net/minecraft/world/entity/monster/EnderMan$EndermanTakeBlockGoal/enderman +FD: net/minecraft/world/entity/monster/Endermite/f_149695_ net/minecraft/world/entity/monster/Endermite/MAX_LIFE +FD: net/minecraft/world/entity/monster/Endermite/f_32588_ net/minecraft/world/entity/monster/Endermite/life +FD: net/minecraft/world/entity/monster/Enemy/f_149697_ net/minecraft/world/entity/monster/Enemy/XP_REWARD_NONE +FD: net/minecraft/world/entity/monster/Enemy/f_149698_ net/minecraft/world/entity/monster/Enemy/XP_REWARD_SMALL +FD: net/minecraft/world/entity/monster/Enemy/f_149699_ net/minecraft/world/entity/monster/Enemy/XP_REWARD_MEDIUM +FD: net/minecraft/world/entity/monster/Enemy/f_149700_ net/minecraft/world/entity/monster/Enemy/XP_REWARD_LARGE +FD: net/minecraft/world/entity/monster/Enemy/f_149701_ net/minecraft/world/entity/monster/Enemy/XP_REWARD_HUGE +FD: net/minecraft/world/entity/monster/Enemy/f_149702_ net/minecraft/world/entity/monster/Enemy/XP_REWARD_BOSS +FD: net/minecraft/world/entity/monster/Evoker/f_32625_ net/minecraft/world/entity/monster/Evoker/wololoTarget +FD: net/minecraft/world/entity/monster/Evoker$EvokerAttackSpellGoal/f_32666_ net/minecraft/world/entity/monster/Evoker$EvokerAttackSpellGoal/this$0 +FD: net/minecraft/world/entity/monster/Evoker$EvokerCastingSpellGoal/f_32684_ net/minecraft/world/entity/monster/Evoker$EvokerCastingSpellGoal/this$0 +FD: net/minecraft/world/entity/monster/Evoker$EvokerSummonSpellGoal/f_32691_ net/minecraft/world/entity/monster/Evoker$EvokerSummonSpellGoal/this$0 +FD: net/minecraft/world/entity/monster/Evoker$EvokerSummonSpellGoal/f_32692_ net/minecraft/world/entity/monster/Evoker$EvokerSummonSpellGoal/vexCountTargeting +FD: net/minecraft/world/entity/monster/Evoker$EvokerWololoSpellGoal/f_32704_ net/minecraft/world/entity/monster/Evoker$EvokerWololoSpellGoal/this$0 +FD: net/minecraft/world/entity/monster/Evoker$EvokerWololoSpellGoal/f_32705_ net/minecraft/world/entity/monster/Evoker$EvokerWololoSpellGoal/wololoTargeting +FD: net/minecraft/world/entity/monster/Ghast/f_32721_ net/minecraft/world/entity/monster/Ghast/DATA_IS_CHARGING +FD: net/minecraft/world/entity/monster/Ghast/f_32722_ net/minecraft/world/entity/monster/Ghast/explosionPower +FD: net/minecraft/world/entity/monster/Ghast$GhastLookGoal/f_32760_ net/minecraft/world/entity/monster/Ghast$GhastLookGoal/ghast +FD: net/minecraft/world/entity/monster/Ghast$GhastMoveControl/f_32765_ net/minecraft/world/entity/monster/Ghast$GhastMoveControl/ghast +FD: net/minecraft/world/entity/monster/Ghast$GhastMoveControl/f_32766_ net/minecraft/world/entity/monster/Ghast$GhastMoveControl/floatDuration +FD: net/minecraft/world/entity/monster/Ghast$GhastShootFireballGoal/f_32773_ net/minecraft/world/entity/monster/Ghast$GhastShootFireballGoal/chargeTime +FD: net/minecraft/world/entity/monster/Ghast$GhastShootFireballGoal/f_32774_ net/minecraft/world/entity/monster/Ghast$GhastShootFireballGoal/ghast +FD: net/minecraft/world/entity/monster/Ghast$RandomFloatAroundGoal/f_32781_ net/minecraft/world/entity/monster/Ghast$RandomFloatAroundGoal/ghast +FD: net/minecraft/world/entity/monster/Guardian/f_149711_ net/minecraft/world/entity/monster/Guardian/ATTACK_TIME +FD: net/minecraft/world/entity/monster/Guardian/f_32797_ net/minecraft/world/entity/monster/Guardian/DATA_ID_MOVING +FD: net/minecraft/world/entity/monster/Guardian/f_32798_ net/minecraft/world/entity/monster/Guardian/clientSideTailAnimation +FD: net/minecraft/world/entity/monster/Guardian/f_32799_ net/minecraft/world/entity/monster/Guardian/clientSideTailAnimationO +FD: net/minecraft/world/entity/monster/Guardian/f_32800_ net/minecraft/world/entity/monster/Guardian/clientSideTailAnimationSpeed +FD: net/minecraft/world/entity/monster/Guardian/f_32801_ net/minecraft/world/entity/monster/Guardian/clientSideSpikesAnimation +FD: net/minecraft/world/entity/monster/Guardian/f_32802_ net/minecraft/world/entity/monster/Guardian/clientSideSpikesAnimationO +FD: net/minecraft/world/entity/monster/Guardian/f_32803_ net/minecraft/world/entity/monster/Guardian/clientSideCachedAttackTarget +FD: net/minecraft/world/entity/monster/Guardian/f_32804_ net/minecraft/world/entity/monster/Guardian/clientSideAttackTime +FD: net/minecraft/world/entity/monster/Guardian/f_32805_ net/minecraft/world/entity/monster/Guardian/clientSideTouchedGround +FD: net/minecraft/world/entity/monster/Guardian/f_32806_ net/minecraft/world/entity/monster/Guardian/randomStrollGoal +FD: net/minecraft/world/entity/monster/Guardian/f_32807_ net/minecraft/world/entity/monster/Guardian/DATA_ID_ATTACK_TARGET +FD: net/minecraft/world/entity/monster/Guardian$GuardianAttackGoal/f_32867_ net/minecraft/world/entity/monster/Guardian$GuardianAttackGoal/guardian +FD: net/minecraft/world/entity/monster/Guardian$GuardianAttackGoal/f_32868_ net/minecraft/world/entity/monster/Guardian$GuardianAttackGoal/attackTime +FD: net/minecraft/world/entity/monster/Guardian$GuardianAttackGoal/f_32869_ net/minecraft/world/entity/monster/Guardian$GuardianAttackGoal/elder +FD: net/minecraft/world/entity/monster/Guardian$GuardianAttackSelector/f_32877_ net/minecraft/world/entity/monster/Guardian$GuardianAttackSelector/guardian +FD: net/minecraft/world/entity/monster/Guardian$GuardianMoveControl/f_32884_ net/minecraft/world/entity/monster/Guardian$GuardianMoveControl/guardian +FD: net/minecraft/world/entity/monster/Illusioner/f_149713_ net/minecraft/world/entity/monster/Illusioner/ILLUSION_TRANSITION_TICKS +FD: net/minecraft/world/entity/monster/Illusioner/f_149714_ net/minecraft/world/entity/monster/Illusioner/ILLUSION_SPREAD +FD: net/minecraft/world/entity/monster/Illusioner/f_149715_ net/minecraft/world/entity/monster/Illusioner/NUM_ILLUSIONS +FD: net/minecraft/world/entity/monster/Illusioner/f_32908_ net/minecraft/world/entity/monster/Illusioner/clientSideIllusionTicks +FD: net/minecraft/world/entity/monster/Illusioner/f_32909_ net/minecraft/world/entity/monster/Illusioner/clientSideIllusionOffsets +FD: net/minecraft/world/entity/monster/Illusioner$IllusionerBlindnessSpellGoal/f_32941_ net/minecraft/world/entity/monster/Illusioner$IllusionerBlindnessSpellGoal/this$0 +FD: net/minecraft/world/entity/monster/Illusioner$IllusionerBlindnessSpellGoal/f_32942_ net/minecraft/world/entity/monster/Illusioner$IllusionerBlindnessSpellGoal/lastTargetId +FD: net/minecraft/world/entity/monster/Illusioner$IllusionerMirrorSpellGoal/f_32955_ net/minecraft/world/entity/monster/Illusioner$IllusionerMirrorSpellGoal/this$0 +FD: net/minecraft/world/entity/monster/PatrollingMonster/f_33042_ net/minecraft/world/entity/monster/PatrollingMonster/patrolTarget +FD: net/minecraft/world/entity/monster/PatrollingMonster/f_33043_ net/minecraft/world/entity/monster/PatrollingMonster/patrolLeader +FD: net/minecraft/world/entity/monster/PatrollingMonster/f_33044_ net/minecraft/world/entity/monster/PatrollingMonster/patrolling +FD: net/minecraft/world/entity/monster/PatrollingMonster$LongDistancePatrolGoal/f_149720_ net/minecraft/world/entity/monster/PatrollingMonster$LongDistancePatrolGoal/NAVIGATION_FAILED_COOLDOWN +FD: net/minecraft/world/entity/monster/PatrollingMonster$LongDistancePatrolGoal/f_33079_ net/minecraft/world/entity/monster/PatrollingMonster$LongDistancePatrolGoal/mob +FD: net/minecraft/world/entity/monster/PatrollingMonster$LongDistancePatrolGoal/f_33080_ net/minecraft/world/entity/monster/PatrollingMonster$LongDistancePatrolGoal/speedModifier +FD: net/minecraft/world/entity/monster/PatrollingMonster$LongDistancePatrolGoal/f_33081_ net/minecraft/world/entity/monster/PatrollingMonster$LongDistancePatrolGoal/leaderSpeedModifier +FD: net/minecraft/world/entity/monster/PatrollingMonster$LongDistancePatrolGoal/f_33082_ net/minecraft/world/entity/monster/PatrollingMonster$LongDistancePatrolGoal/cooldownUntil +FD: net/minecraft/world/entity/monster/Phantom/f_149721_ net/minecraft/world/entity/monster/Phantom/FLAP_DEGREES_PER_TICK +FD: net/minecraft/world/entity/monster/Phantom/f_149722_ net/minecraft/world/entity/monster/Phantom/TICKS_PER_FLAP +FD: net/minecraft/world/entity/monster/Phantom/f_33095_ net/minecraft/world/entity/monster/Phantom/ID_SIZE +FD: net/minecraft/world/entity/monster/Phantom/f_33096_ net/minecraft/world/entity/monster/Phantom/attackPhase +FD: net/minecraft/world/entity/monster/Phantom/f_33097_ net/minecraft/world/entity/monster/Phantom/moveTargetPoint +FD: net/minecraft/world/entity/monster/Phantom/f_33098_ net/minecraft/world/entity/monster/Phantom/anchorPoint +FD: net/minecraft/world/entity/monster/Phantom$AttackPhase/$VALUES net/minecraft/world/entity/monster/Phantom$AttackPhase/$VALUES +FD: net/minecraft/world/entity/monster/Phantom$AttackPhase/CIRCLE net/minecraft/world/entity/monster/Phantom$AttackPhase/CIRCLE +FD: net/minecraft/world/entity/monster/Phantom$AttackPhase/SWOOP net/minecraft/world/entity/monster/Phantom$AttackPhase/SWOOP +FD: net/minecraft/world/entity/monster/Phantom$PhantomAttackPlayerTargetGoal/f_33191_ net/minecraft/world/entity/monster/Phantom$PhantomAttackPlayerTargetGoal/this$0 +FD: net/minecraft/world/entity/monster/Phantom$PhantomAttackPlayerTargetGoal/f_33192_ net/minecraft/world/entity/monster/Phantom$PhantomAttackPlayerTargetGoal/attackTargeting +FD: net/minecraft/world/entity/monster/Phantom$PhantomAttackPlayerTargetGoal/f_33193_ net/minecraft/world/entity/monster/Phantom$PhantomAttackPlayerTargetGoal/nextScanTick +FD: net/minecraft/world/entity/monster/Phantom$PhantomAttackStrategyGoal/f_33201_ net/minecraft/world/entity/monster/Phantom$PhantomAttackStrategyGoal/this$0 +FD: net/minecraft/world/entity/monster/Phantom$PhantomAttackStrategyGoal/f_33202_ net/minecraft/world/entity/monster/Phantom$PhantomAttackStrategyGoal/nextSweepTick +FD: net/minecraft/world/entity/monster/Phantom$PhantomBodyRotationControl/f_33213_ net/minecraft/world/entity/monster/Phantom$PhantomBodyRotationControl/this$0 +FD: net/minecraft/world/entity/monster/Phantom$PhantomCircleAroundAnchorGoal/f_33218_ net/minecraft/world/entity/monster/Phantom$PhantomCircleAroundAnchorGoal/this$0 +FD: net/minecraft/world/entity/monster/Phantom$PhantomCircleAroundAnchorGoal/f_33219_ net/minecraft/world/entity/monster/Phantom$PhantomCircleAroundAnchorGoal/angle +FD: net/minecraft/world/entity/monster/Phantom$PhantomCircleAroundAnchorGoal/f_33220_ net/minecraft/world/entity/monster/Phantom$PhantomCircleAroundAnchorGoal/distance +FD: net/minecraft/world/entity/monster/Phantom$PhantomCircleAroundAnchorGoal/f_33221_ net/minecraft/world/entity/monster/Phantom$PhantomCircleAroundAnchorGoal/height +FD: net/minecraft/world/entity/monster/Phantom$PhantomCircleAroundAnchorGoal/f_33222_ net/minecraft/world/entity/monster/Phantom$PhantomCircleAroundAnchorGoal/clockwise +FD: net/minecraft/world/entity/monster/Phantom$PhantomLookControl/f_33232_ net/minecraft/world/entity/monster/Phantom$PhantomLookControl/this$0 +FD: net/minecraft/world/entity/monster/Phantom$PhantomMoveControl/f_33237_ net/minecraft/world/entity/monster/Phantom$PhantomMoveControl/this$0 +FD: net/minecraft/world/entity/monster/Phantom$PhantomMoveControl/f_33238_ net/minecraft/world/entity/monster/Phantom$PhantomMoveControl/speed +FD: net/minecraft/world/entity/monster/Phantom$PhantomMoveTargetGoal/f_33243_ net/minecraft/world/entity/monster/Phantom$PhantomMoveTargetGoal/this$0 +FD: net/minecraft/world/entity/monster/Phantom$PhantomSweepAttackGoal/f_199895_ net/minecraft/world/entity/monster/Phantom$PhantomSweepAttackGoal/CAT_SEARCH_TICK_DELAY +FD: net/minecraft/world/entity/monster/Phantom$PhantomSweepAttackGoal/f_199896_ net/minecraft/world/entity/monster/Phantom$PhantomSweepAttackGoal/isScaredOfCat +FD: net/minecraft/world/entity/monster/Phantom$PhantomSweepAttackGoal/f_199897_ net/minecraft/world/entity/monster/Phantom$PhantomSweepAttackGoal/catSearchTick +FD: net/minecraft/world/entity/monster/Phantom$PhantomSweepAttackGoal/f_33247_ net/minecraft/world/entity/monster/Phantom$PhantomSweepAttackGoal/this$0 +FD: net/minecraft/world/entity/monster/Pillager/f_149738_ net/minecraft/world/entity/monster/Pillager/SLOT_OFFSET +FD: net/minecraft/world/entity/monster/Pillager/f_149739_ net/minecraft/world/entity/monster/Pillager/CROSSBOW_POWER +FD: net/minecraft/world/entity/monster/Pillager/f_149740_ net/minecraft/world/entity/monster/Pillager/INVENTORY_SIZE +FD: net/minecraft/world/entity/monster/Pillager/f_33258_ net/minecraft/world/entity/monster/Pillager/IS_CHARGING_CROSSBOW +FD: net/minecraft/world/entity/monster/Pillager/f_33259_ net/minecraft/world/entity/monster/Pillager/inventory +FD: net/minecraft/world/entity/monster/Ravager/f_149746_ net/minecraft/world/entity/monster/Ravager/STUN_DURATION +FD: net/minecraft/world/entity/monster/Ravager/f_149747_ net/minecraft/world/entity/monster/Ravager/BASE_MOVEMENT_SPEED +FD: net/minecraft/world/entity/monster/Ravager/f_149748_ net/minecraft/world/entity/monster/Ravager/ATTACK_MOVEMENT_SPEED +FD: net/minecraft/world/entity/monster/Ravager/f_149749_ net/minecraft/world/entity/monster/Ravager/STUNNED_COLOR +FD: net/minecraft/world/entity/monster/Ravager/f_149750_ net/minecraft/world/entity/monster/Ravager/STUNNED_COLOR_BLUE +FD: net/minecraft/world/entity/monster/Ravager/f_149751_ net/minecraft/world/entity/monster/Ravager/STUNNED_COLOR_GREEN +FD: net/minecraft/world/entity/monster/Ravager/f_149752_ net/minecraft/world/entity/monster/Ravager/STUNNED_COLOR_RED +FD: net/minecraft/world/entity/monster/Ravager/f_149753_ net/minecraft/world/entity/monster/Ravager/ATTACK_DURATION +FD: net/minecraft/world/entity/monster/Ravager/f_33319_ net/minecraft/world/entity/monster/Ravager/NO_RAVAGER_AND_ALIVE +FD: net/minecraft/world/entity/monster/Ravager/f_33320_ net/minecraft/world/entity/monster/Ravager/attackTick +FD: net/minecraft/world/entity/monster/Ravager/f_33321_ net/minecraft/world/entity/monster/Ravager/stunnedTick +FD: net/minecraft/world/entity/monster/Ravager/f_33322_ net/minecraft/world/entity/monster/Ravager/roarTick +FD: net/minecraft/world/entity/monster/Ravager$RavagerMeleeAttackGoal/f_33373_ net/minecraft/world/entity/monster/Ravager$RavagerMeleeAttackGoal/this$0 +FD: net/minecraft/world/entity/monster/Shulker/f_149756_ net/minecraft/world/entity/monster/Shulker/TELEPORT_STEPS +FD: net/minecraft/world/entity/monster/Shulker/f_149757_ net/minecraft/world/entity/monster/Shulker/NO_COLOR +FD: net/minecraft/world/entity/monster/Shulker/f_149758_ net/minecraft/world/entity/monster/Shulker/DEFAULT_COLOR +FD: net/minecraft/world/entity/monster/Shulker/f_149759_ net/minecraft/world/entity/monster/Shulker/MAX_TELEPORT_DISTANCE +FD: net/minecraft/world/entity/monster/Shulker/f_149760_ net/minecraft/world/entity/monster/Shulker/OTHER_SHULKER_SCAN_RADIUS +FD: net/minecraft/world/entity/monster/Shulker/f_149761_ net/minecraft/world/entity/monster/Shulker/OTHER_SHULKER_LIMIT +FD: net/minecraft/world/entity/monster/Shulker/f_149762_ net/minecraft/world/entity/monster/Shulker/PEEK_PER_TICK +FD: net/minecraft/world/entity/monster/Shulker/f_149763_ net/minecraft/world/entity/monster/Shulker/FORWARD +FD: net/minecraft/world/entity/monster/Shulker/f_149764_ net/minecraft/world/entity/monster/Shulker/clientOldAttachPosition +FD: net/minecraft/world/entity/monster/Shulker/f_149765_ net/minecraft/world/entity/monster/Shulker/MAX_LID_OPEN +FD: net/minecraft/world/entity/monster/Shulker/f_33392_ net/minecraft/world/entity/monster/Shulker/DATA_ATTACH_FACE_ID +FD: net/minecraft/world/entity/monster/Shulker/f_33393_ net/minecraft/world/entity/monster/Shulker/DATA_COLOR_ID +FD: net/minecraft/world/entity/monster/Shulker/f_33394_ net/minecraft/world/entity/monster/Shulker/COVERED_ARMOR_MODIFIER_UUID +FD: net/minecraft/world/entity/monster/Shulker/f_33395_ net/minecraft/world/entity/monster/Shulker/COVERED_ARMOR_MODIFIER +FD: net/minecraft/world/entity/monster/Shulker/f_33396_ net/minecraft/world/entity/monster/Shulker/currentPeekAmountO +FD: net/minecraft/world/entity/monster/Shulker/f_33397_ net/minecraft/world/entity/monster/Shulker/currentPeekAmount +FD: net/minecraft/world/entity/monster/Shulker/f_33399_ net/minecraft/world/entity/monster/Shulker/clientSideTeleportInterpolation +FD: net/minecraft/world/entity/monster/Shulker/f_33401_ net/minecraft/world/entity/monster/Shulker/DATA_PEEK_ID +FD: net/minecraft/world/entity/monster/Shulker$ShulkerAttackGoal/f_33482_ net/minecraft/world/entity/monster/Shulker$ShulkerAttackGoal/this$0 +FD: net/minecraft/world/entity/monster/Shulker$ShulkerAttackGoal/f_33483_ net/minecraft/world/entity/monster/Shulker$ShulkerAttackGoal/attackTime +FD: net/minecraft/world/entity/monster/Shulker$ShulkerLookControl/f_149817_ net/minecraft/world/entity/monster/Shulker$ShulkerLookControl/this$0 +FD: net/minecraft/world/entity/monster/Shulker$ShulkerNearestAttackGoal/f_33502_ net/minecraft/world/entity/monster/Shulker$ShulkerNearestAttackGoal/this$0 +FD: net/minecraft/world/entity/monster/Shulker$ShulkerPeekGoal/f_33509_ net/minecraft/world/entity/monster/Shulker$ShulkerPeekGoal/this$0 +FD: net/minecraft/world/entity/monster/Shulker$ShulkerPeekGoal/f_33510_ net/minecraft/world/entity/monster/Shulker$ShulkerPeekGoal/peekTime +FD: net/minecraft/world/entity/monster/Silverfish/f_33521_ net/minecraft/world/entity/monster/Silverfish/friendsGoal +FD: net/minecraft/world/entity/monster/Silverfish$SilverfishMergeWithStoneGoal/f_33555_ net/minecraft/world/entity/monster/Silverfish$SilverfishMergeWithStoneGoal/selectedDirection +FD: net/minecraft/world/entity/monster/Silverfish$SilverfishMergeWithStoneGoal/f_33556_ net/minecraft/world/entity/monster/Silverfish$SilverfishMergeWithStoneGoal/doMerge +FD: net/minecraft/world/entity/monster/Silverfish$SilverfishWakeUpFriendsGoal/f_33562_ net/minecraft/world/entity/monster/Silverfish$SilverfishWakeUpFriendsGoal/silverfish +FD: net/minecraft/world/entity/monster/Silverfish$SilverfishWakeUpFriendsGoal/f_33563_ net/minecraft/world/entity/monster/Silverfish$SilverfishWakeUpFriendsGoal/lookForFriends +FD: net/minecraft/world/entity/monster/Skeleton/f_149825_ net/minecraft/world/entity/monster/Skeleton/CONVERSION_TAG +FD: net/minecraft/world/entity/monster/Skeleton/f_149826_ net/minecraft/world/entity/monster/Skeleton/DATA_STRAY_CONVERSION_ID +FD: net/minecraft/world/entity/monster/Skeleton/f_149827_ net/minecraft/world/entity/monster/Skeleton/inPowderSnowTime +FD: net/minecraft/world/entity/monster/Skeleton/f_149828_ net/minecraft/world/entity/monster/Skeleton/conversionTime +FD: net/minecraft/world/entity/monster/Skeleton/f_263441_ net/minecraft/world/entity/monster/Skeleton/TOTAL_CONVERSION_TIME +FD: net/minecraft/world/entity/monster/Slime/f_149844_ net/minecraft/world/entity/monster/Slime/MIN_SIZE +FD: net/minecraft/world/entity/monster/Slime/f_149845_ net/minecraft/world/entity/monster/Slime/MAX_SIZE +FD: net/minecraft/world/entity/monster/Slime/f_33581_ net/minecraft/world/entity/monster/Slime/targetSquish +FD: net/minecraft/world/entity/monster/Slime/f_33582_ net/minecraft/world/entity/monster/Slime/ID_SIZE +FD: net/minecraft/world/entity/monster/Slime/f_33583_ net/minecraft/world/entity/monster/Slime/wasOnGround +FD: net/minecraft/world/entity/monster/Slime/f_33584_ net/minecraft/world/entity/monster/Slime/squish +FD: net/minecraft/world/entity/monster/Slime/f_33585_ net/minecraft/world/entity/monster/Slime/oSquish +FD: net/minecraft/world/entity/monster/Slime$SlimeAttackGoal/f_33645_ net/minecraft/world/entity/monster/Slime$SlimeAttackGoal/slime +FD: net/minecraft/world/entity/monster/Slime$SlimeAttackGoal/f_33646_ net/minecraft/world/entity/monster/Slime$SlimeAttackGoal/growTiredTimer +FD: net/minecraft/world/entity/monster/Slime$SlimeFloatGoal/f_33653_ net/minecraft/world/entity/monster/Slime$SlimeFloatGoal/slime +FD: net/minecraft/world/entity/monster/Slime$SlimeKeepOnJumpingGoal/f_33658_ net/minecraft/world/entity/monster/Slime$SlimeKeepOnJumpingGoal/slime +FD: net/minecraft/world/entity/monster/Slime$SlimeMoveControl/f_33663_ net/minecraft/world/entity/monster/Slime$SlimeMoveControl/yRot +FD: net/minecraft/world/entity/monster/Slime$SlimeMoveControl/f_33664_ net/minecraft/world/entity/monster/Slime$SlimeMoveControl/jumpDelay +FD: net/minecraft/world/entity/monster/Slime$SlimeMoveControl/f_33665_ net/minecraft/world/entity/monster/Slime$SlimeMoveControl/slime +FD: net/minecraft/world/entity/monster/Slime$SlimeMoveControl/f_33666_ net/minecraft/world/entity/monster/Slime$SlimeMoveControl/isAggressive +FD: net/minecraft/world/entity/monster/Slime$SlimeRandomDirectionGoal/f_33675_ net/minecraft/world/entity/monster/Slime$SlimeRandomDirectionGoal/slime +FD: net/minecraft/world/entity/monster/Slime$SlimeRandomDirectionGoal/f_33676_ net/minecraft/world/entity/monster/Slime$SlimeRandomDirectionGoal/chosenDegrees +FD: net/minecraft/world/entity/monster/Slime$SlimeRandomDirectionGoal/f_33677_ net/minecraft/world/entity/monster/Slime$SlimeRandomDirectionGoal/nextRandomizeTime +FD: net/minecraft/world/entity/monster/SpellcasterIllager/f_33719_ net/minecraft/world/entity/monster/SpellcasterIllager/spellCastingTickCount +FD: net/minecraft/world/entity/monster/SpellcasterIllager/f_33720_ net/minecraft/world/entity/monster/SpellcasterIllager/DATA_SPELL_CASTING_ID +FD: net/minecraft/world/entity/monster/SpellcasterIllager/f_33721_ net/minecraft/world/entity/monster/SpellcasterIllager/currentSpell +FD: net/minecraft/world/entity/monster/SpellcasterIllager$IllagerSpell/$VALUES net/minecraft/world/entity/monster/SpellcasterIllager$IllagerSpell/$VALUES +FD: net/minecraft/world/entity/monster/SpellcasterIllager$IllagerSpell/BLINDNESS net/minecraft/world/entity/monster/SpellcasterIllager$IllagerSpell/BLINDNESS +FD: net/minecraft/world/entity/monster/SpellcasterIllager$IllagerSpell/DISAPPEAR net/minecraft/world/entity/monster/SpellcasterIllager$IllagerSpell/DISAPPEAR +FD: net/minecraft/world/entity/monster/SpellcasterIllager$IllagerSpell/FANGS net/minecraft/world/entity/monster/SpellcasterIllager$IllagerSpell/FANGS +FD: net/minecraft/world/entity/monster/SpellcasterIllager$IllagerSpell/NONE net/minecraft/world/entity/monster/SpellcasterIllager$IllagerSpell/NONE +FD: net/minecraft/world/entity/monster/SpellcasterIllager$IllagerSpell/SUMMON_VEX net/minecraft/world/entity/monster/SpellcasterIllager$IllagerSpell/SUMMON_VEX +FD: net/minecraft/world/entity/monster/SpellcasterIllager$IllagerSpell/WOLOLO net/minecraft/world/entity/monster/SpellcasterIllager$IllagerSpell/WOLOLO +FD: net/minecraft/world/entity/monster/SpellcasterIllager$IllagerSpell/f_262732_ net/minecraft/world/entity/monster/SpellcasterIllager$IllagerSpell/BY_ID +FD: net/minecraft/world/entity/monster/SpellcasterIllager$IllagerSpell/f_33747_ net/minecraft/world/entity/monster/SpellcasterIllager$IllagerSpell/id +FD: net/minecraft/world/entity/monster/SpellcasterIllager$IllagerSpell/f_33748_ net/minecraft/world/entity/monster/SpellcasterIllager$IllagerSpell/spellColor +FD: net/minecraft/world/entity/monster/SpellcasterIllager$SpellcasterCastingSpellGoal/f_33767_ net/minecraft/world/entity/monster/SpellcasterIllager$SpellcasterCastingSpellGoal/this$0 +FD: net/minecraft/world/entity/monster/SpellcasterIllager$SpellcasterUseSpellGoal/f_33774_ net/minecraft/world/entity/monster/SpellcasterIllager$SpellcasterUseSpellGoal/attackWarmupDelay +FD: net/minecraft/world/entity/monster/SpellcasterIllager$SpellcasterUseSpellGoal/f_33775_ net/minecraft/world/entity/monster/SpellcasterIllager$SpellcasterUseSpellGoal/nextAttackTickCount +FD: net/minecraft/world/entity/monster/SpellcasterIllager$SpellcasterUseSpellGoal/f_33776_ net/minecraft/world/entity/monster/SpellcasterIllager$SpellcasterUseSpellGoal/this$0 +FD: net/minecraft/world/entity/monster/Spider/f_149853_ net/minecraft/world/entity/monster/Spider/SPIDER_SPECIAL_EFFECT_CHANCE +FD: net/minecraft/world/entity/monster/Spider/f_33783_ net/minecraft/world/entity/monster/Spider/DATA_FLAGS_ID +FD: net/minecraft/world/entity/monster/Spider$SpiderEffectsGroupData/f_33827_ net/minecraft/world/entity/monster/Spider$SpiderEffectsGroupData/effect +FD: net/minecraft/world/entity/monster/Strider/f_149854_ net/minecraft/world/entity/monster/Strider/SUFFOCATE_STEERING_MODIFIER +FD: net/minecraft/world/entity/monster/Strider/f_149856_ net/minecraft/world/entity/monster/Strider/STEERING_MODIFIER +FD: net/minecraft/world/entity/monster/Strider/f_273843_ net/minecraft/world/entity/monster/Strider/SUFFOCATING_MODIFIER +FD: net/minecraft/world/entity/monster/Strider/f_273909_ net/minecraft/world/entity/monster/Strider/SUFFOCATING_MODIFIER_UUID +FD: net/minecraft/world/entity/monster/Strider/f_33852_ net/minecraft/world/entity/monster/Strider/FOOD_ITEMS +FD: net/minecraft/world/entity/monster/Strider/f_33853_ net/minecraft/world/entity/monster/Strider/TEMPT_ITEMS +FD: net/minecraft/world/entity/monster/Strider/f_33854_ net/minecraft/world/entity/monster/Strider/DATA_BOOST_TIME +FD: net/minecraft/world/entity/monster/Strider/f_33855_ net/minecraft/world/entity/monster/Strider/DATA_SUFFOCATING +FD: net/minecraft/world/entity/monster/Strider/f_33856_ net/minecraft/world/entity/monster/Strider/DATA_SADDLE_ID +FD: net/minecraft/world/entity/monster/Strider/f_33857_ net/minecraft/world/entity/monster/Strider/steering +FD: net/minecraft/world/entity/monster/Strider/f_33858_ net/minecraft/world/entity/monster/Strider/temptGoal +FD: net/minecraft/world/entity/monster/Strider/f_33859_ net/minecraft/world/entity/monster/Strider/panicGoal +FD: net/minecraft/world/entity/monster/Strider$StriderGoToLavaGoal/f_33953_ net/minecraft/world/entity/monster/Strider$StriderGoToLavaGoal/strider +FD: net/minecraft/world/entity/monster/Vex/f_149863_ net/minecraft/world/entity/monster/Vex/FLAP_DEGREES_PER_TICK +FD: net/minecraft/world/entity/monster/Vex/f_149864_ net/minecraft/world/entity/monster/Vex/TICKS_PER_FLAP +FD: net/minecraft/world/entity/monster/Vex/f_149865_ net/minecraft/world/entity/monster/Vex/FLAG_IS_CHARGING +FD: net/minecraft/world/entity/monster/Vex/f_262262_ net/minecraft/world/entity/monster/Vex/RIDING_OFFSET +FD: net/minecraft/world/entity/monster/Vex/f_33977_ net/minecraft/world/entity/monster/Vex/DATA_FLAGS_ID +FD: net/minecraft/world/entity/monster/Vex/f_33978_ net/minecraft/world/entity/monster/Vex/hasLimitedLife +FD: net/minecraft/world/entity/monster/Vex/f_33979_ net/minecraft/world/entity/monster/Vex/limitedLifeTicks +FD: net/minecraft/world/entity/monster/Vex/f_33980_ net/minecraft/world/entity/monster/Vex/owner +FD: net/minecraft/world/entity/monster/Vex/f_33981_ net/minecraft/world/entity/monster/Vex/boundOrigin +FD: net/minecraft/world/entity/monster/Vex$VexChargeAttackGoal/f_34044_ net/minecraft/world/entity/monster/Vex$VexChargeAttackGoal/this$0 +FD: net/minecraft/world/entity/monster/Vex$VexCopyOwnerTargetGoal/f_34052_ net/minecraft/world/entity/monster/Vex$VexCopyOwnerTargetGoal/this$0 +FD: net/minecraft/world/entity/monster/Vex$VexCopyOwnerTargetGoal/f_34053_ net/minecraft/world/entity/monster/Vex$VexCopyOwnerTargetGoal/copyOwnerTargeting +FD: net/minecraft/world/entity/monster/Vex$VexMoveControl/f_34059_ net/minecraft/world/entity/monster/Vex$VexMoveControl/this$0 +FD: net/minecraft/world/entity/monster/Vex$VexRandomMoveGoal/f_34064_ net/minecraft/world/entity/monster/Vex$VexRandomMoveGoal/this$0 +FD: net/minecraft/world/entity/monster/Vindicator/f_149867_ net/minecraft/world/entity/monster/Vindicator/TAG_JOHNNY +FD: net/minecraft/world/entity/monster/Vindicator/f_34070_ net/minecraft/world/entity/monster/Vindicator/DOOR_BREAKING_PREDICATE +FD: net/minecraft/world/entity/monster/Vindicator/f_34071_ net/minecraft/world/entity/monster/Vindicator/isJohnny +FD: net/minecraft/world/entity/monster/Vindicator$VindicatorMeleeAttackGoal/f_34120_ net/minecraft/world/entity/monster/Vindicator$VindicatorMeleeAttackGoal/this$0 +FD: net/minecraft/world/entity/monster/Witch/f_34126_ net/minecraft/world/entity/monster/Witch/SPEED_MODIFIER_DRINKING_UUID +FD: net/minecraft/world/entity/monster/Witch/f_34127_ net/minecraft/world/entity/monster/Witch/SPEED_MODIFIER_DRINKING +FD: net/minecraft/world/entity/monster/Witch/f_34128_ net/minecraft/world/entity/monster/Witch/DATA_USING_ITEM +FD: net/minecraft/world/entity/monster/Witch/f_34129_ net/minecraft/world/entity/monster/Witch/usingTime +FD: net/minecraft/world/entity/monster/Witch/f_34130_ net/minecraft/world/entity/monster/Witch/healRaidersGoal +FD: net/minecraft/world/entity/monster/Witch/f_34131_ net/minecraft/world/entity/monster/Witch/attackPlayersGoal +FD: net/minecraft/world/entity/monster/Zoglin/f_149870_ net/minecraft/world/entity/monster/Zoglin/ATTACK_KNOCKBACK +FD: net/minecraft/world/entity/monster/Zoglin/f_149871_ net/minecraft/world/entity/monster/Zoglin/KNOCKBACK_RESISTANCE +FD: net/minecraft/world/entity/monster/Zoglin/f_149872_ net/minecraft/world/entity/monster/Zoglin/ATTACK_DAMAGE +FD: net/minecraft/world/entity/monster/Zoglin/f_149873_ net/minecraft/world/entity/monster/Zoglin/BABY_ATTACK_DAMAGE +FD: net/minecraft/world/entity/monster/Zoglin/f_149874_ net/minecraft/world/entity/monster/Zoglin/ATTACK_INTERVAL +FD: net/minecraft/world/entity/monster/Zoglin/f_149875_ net/minecraft/world/entity/monster/Zoglin/BABY_ATTACK_INTERVAL +FD: net/minecraft/world/entity/monster/Zoglin/f_149876_ net/minecraft/world/entity/monster/Zoglin/ATTACK_DURATION +FD: net/minecraft/world/entity/monster/Zoglin/f_149877_ net/minecraft/world/entity/monster/Zoglin/MOVEMENT_SPEED_WHEN_FIGHTING +FD: net/minecraft/world/entity/monster/Zoglin/f_149878_ net/minecraft/world/entity/monster/Zoglin/SPEED_MULTIPLIER_WHEN_IDLING +FD: net/minecraft/world/entity/monster/Zoglin/f_149879_ net/minecraft/world/entity/monster/Zoglin/MAX_HEALTH +FD: net/minecraft/world/entity/monster/Zoglin/f_34198_ net/minecraft/world/entity/monster/Zoglin/SENSOR_TYPES +FD: net/minecraft/world/entity/monster/Zoglin/f_34199_ net/minecraft/world/entity/monster/Zoglin/attackAnimationRemainingTicks +FD: net/minecraft/world/entity/monster/Zoglin/f_34200_ net/minecraft/world/entity/monster/Zoglin/MEMORY_TYPES +FD: net/minecraft/world/entity/monster/Zoglin/f_34201_ net/minecraft/world/entity/monster/Zoglin/DATA_BABY_ID +FD: net/minecraft/world/entity/monster/Zombie/f_149880_ net/minecraft/world/entity/monster/Zombie/REINFORCEMENT_ATTEMPTS +FD: net/minecraft/world/entity/monster/Zombie/f_149881_ net/minecraft/world/entity/monster/Zombie/REINFORCEMENT_RANGE_MAX +FD: net/minecraft/world/entity/monster/Zombie/f_149882_ net/minecraft/world/entity/monster/Zombie/REINFORCEMENT_RANGE_MIN +FD: net/minecraft/world/entity/monster/Zombie/f_149883_ net/minecraft/world/entity/monster/Zombie/BREAK_DOOR_CHANCE +FD: net/minecraft/world/entity/monster/Zombie/f_149884_ net/minecraft/world/entity/monster/Zombie/ZOMBIE_LEADER_CHANCE +FD: net/minecraft/world/entity/monster/Zombie/f_256825_ net/minecraft/world/entity/monster/Zombie/BABY_EYE_HEIGHT_ADJUSTMENT +FD: net/minecraft/world/entity/monster/Zombie/f_34259_ net/minecraft/world/entity/monster/Zombie/SPEED_MODIFIER_BABY_UUID +FD: net/minecraft/world/entity/monster/Zombie/f_34260_ net/minecraft/world/entity/monster/Zombie/DATA_SPECIAL_TYPE_ID +FD: net/minecraft/world/entity/monster/Zombie/f_34261_ net/minecraft/world/entity/monster/Zombie/DATA_DROWNED_CONVERSION_ID +FD: net/minecraft/world/entity/monster/Zombie/f_34262_ net/minecraft/world/entity/monster/Zombie/DOOR_BREAKING_PREDICATE +FD: net/minecraft/world/entity/monster/Zombie/f_34263_ net/minecraft/world/entity/monster/Zombie/breakDoorGoal +FD: net/minecraft/world/entity/monster/Zombie/f_34264_ net/minecraft/world/entity/monster/Zombie/canBreakDoors +FD: net/minecraft/world/entity/monster/Zombie/f_34265_ net/minecraft/world/entity/monster/Zombie/inWaterTime +FD: net/minecraft/world/entity/monster/Zombie/f_34266_ net/minecraft/world/entity/monster/Zombie/conversionTime +FD: net/minecraft/world/entity/monster/Zombie/f_34267_ net/minecraft/world/entity/monster/Zombie/SPEED_MODIFIER_BABY +FD: net/minecraft/world/entity/monster/Zombie/f_34268_ net/minecraft/world/entity/monster/Zombie/DATA_BABY_ID +FD: net/minecraft/world/entity/monster/Zombie$ZombieAttackTurtleEggGoal/f_34341_ net/minecraft/world/entity/monster/Zombie$ZombieAttackTurtleEggGoal/this$0 +FD: net/minecraft/world/entity/monster/Zombie$ZombieGroupData/f_34354_ net/minecraft/world/entity/monster/Zombie$ZombieGroupData/isBaby +FD: net/minecraft/world/entity/monster/Zombie$ZombieGroupData/f_34355_ net/minecraft/world/entity/monster/Zombie$ZombieGroupData/canSpawnJockey +FD: net/minecraft/world/entity/monster/ZombieVillager/f_149885_ net/minecraft/world/entity/monster/ZombieVillager/VILLAGER_CONVERSION_WAIT_MAX +FD: net/minecraft/world/entity/monster/ZombieVillager/f_149886_ net/minecraft/world/entity/monster/ZombieVillager/MAX_SPECIAL_BLOCKS_COUNT +FD: net/minecraft/world/entity/monster/ZombieVillager/f_149887_ net/minecraft/world/entity/monster/ZombieVillager/SPECIAL_BLOCK_RADIUS +FD: net/minecraft/world/entity/monster/ZombieVillager/f_149888_ net/minecraft/world/entity/monster/ZombieVillager/VILLAGER_CONVERSION_WAIT_MIN +FD: net/minecraft/world/entity/monster/ZombieVillager/f_201975_ net/minecraft/world/entity/monster/ZombieVillager/LOGGER +FD: net/minecraft/world/entity/monster/ZombieVillager/f_34359_ net/minecraft/world/entity/monster/ZombieVillager/DATA_CONVERTING_ID +FD: net/minecraft/world/entity/monster/ZombieVillager/f_34360_ net/minecraft/world/entity/monster/ZombieVillager/conversionStarter +FD: net/minecraft/world/entity/monster/ZombieVillager/f_34361_ net/minecraft/world/entity/monster/ZombieVillager/gossips +FD: net/minecraft/world/entity/monster/ZombieVillager/f_34362_ net/minecraft/world/entity/monster/ZombieVillager/tradeOffers +FD: net/minecraft/world/entity/monster/ZombieVillager/f_34363_ net/minecraft/world/entity/monster/ZombieVillager/villagerXp +FD: net/minecraft/world/entity/monster/ZombieVillager/f_34364_ net/minecraft/world/entity/monster/ZombieVillager/DATA_VILLAGER_DATA +FD: net/minecraft/world/entity/monster/ZombieVillager/f_34365_ net/minecraft/world/entity/monster/ZombieVillager/villagerConversionTime +FD: net/minecraft/world/entity/monster/ZombifiedPiglin/f_149890_ net/minecraft/world/entity/monster/ZombifiedPiglin/ALERT_RANGE_Y +FD: net/minecraft/world/entity/monster/ZombifiedPiglin/f_256895_ net/minecraft/world/entity/monster/ZombifiedPiglin/ZOMBIFIED_PIGLIN_EYE_HEIGHT +FD: net/minecraft/world/entity/monster/ZombifiedPiglin/f_262243_ net/minecraft/world/entity/monster/ZombifiedPiglin/ZOMBIFIED_PIGLIN_BABY_EYE_HEIGHT_ADJUSTMENT +FD: net/minecraft/world/entity/monster/ZombifiedPiglin/f_34416_ net/minecraft/world/entity/monster/ZombifiedPiglin/SPEED_MODIFIER_ATTACKING_UUID +FD: net/minecraft/world/entity/monster/ZombifiedPiglin/f_34417_ net/minecraft/world/entity/monster/ZombifiedPiglin/playFirstAngerSoundIn +FD: net/minecraft/world/entity/monster/ZombifiedPiglin/f_34418_ net/minecraft/world/entity/monster/ZombifiedPiglin/PERSISTENT_ANGER_TIME +FD: net/minecraft/world/entity/monster/ZombifiedPiglin/f_34419_ net/minecraft/world/entity/monster/ZombifiedPiglin/remainingPersistentAngerTime +FD: net/minecraft/world/entity/monster/ZombifiedPiglin/f_34420_ net/minecraft/world/entity/monster/ZombifiedPiglin/persistentAngerTarget +FD: net/minecraft/world/entity/monster/ZombifiedPiglin/f_34421_ net/minecraft/world/entity/monster/ZombifiedPiglin/ALERT_INTERVAL +FD: net/minecraft/world/entity/monster/ZombifiedPiglin/f_34422_ net/minecraft/world/entity/monster/ZombifiedPiglin/ticksUntilNextAlert +FD: net/minecraft/world/entity/monster/ZombifiedPiglin/f_34423_ net/minecraft/world/entity/monster/ZombifiedPiglin/SPEED_MODIFIER_ATTACKING +FD: net/minecraft/world/entity/monster/ZombifiedPiglin/f_34424_ net/minecraft/world/entity/monster/ZombifiedPiglin/FIRST_ANGER_SOUND_DELAY +FD: net/minecraft/world/entity/monster/hoglin/Hoglin/f_149891_ net/minecraft/world/entity/monster/hoglin/Hoglin/PROBABILITY_OF_SPAWNING_AS_BABY +FD: net/minecraft/world/entity/monster/hoglin/Hoglin/f_149892_ net/minecraft/world/entity/monster/hoglin/Hoglin/MAX_HEALTH +FD: net/minecraft/world/entity/monster/hoglin/Hoglin/f_149893_ net/minecraft/world/entity/monster/hoglin/Hoglin/MOVEMENT_SPEED_WHEN_FIGHTING +FD: net/minecraft/world/entity/monster/hoglin/Hoglin/f_149894_ net/minecraft/world/entity/monster/hoglin/Hoglin/ATTACK_KNOCKBACK +FD: net/minecraft/world/entity/monster/hoglin/Hoglin/f_149895_ net/minecraft/world/entity/monster/hoglin/Hoglin/KNOCKBACK_RESISTANCE +FD: net/minecraft/world/entity/monster/hoglin/Hoglin/f_149896_ net/minecraft/world/entity/monster/hoglin/Hoglin/ATTACK_DAMAGE +FD: net/minecraft/world/entity/monster/hoglin/Hoglin/f_149897_ net/minecraft/world/entity/monster/hoglin/Hoglin/BABY_ATTACK_DAMAGE +FD: net/minecraft/world/entity/monster/hoglin/Hoglin/f_149898_ net/minecraft/world/entity/monster/hoglin/Hoglin/CONVERSION_TIME +FD: net/minecraft/world/entity/monster/hoglin/Hoglin/f_34480_ net/minecraft/world/entity/monster/hoglin/Hoglin/SENSOR_TYPES +FD: net/minecraft/world/entity/monster/hoglin/Hoglin/f_34481_ net/minecraft/world/entity/monster/hoglin/Hoglin/MEMORY_TYPES +FD: net/minecraft/world/entity/monster/hoglin/Hoglin/f_34482_ net/minecraft/world/entity/monster/hoglin/Hoglin/DATA_IMMUNE_TO_ZOMBIFICATION +FD: net/minecraft/world/entity/monster/hoglin/Hoglin/f_34483_ net/minecraft/world/entity/monster/hoglin/Hoglin/attackAnimationRemainingTicks +FD: net/minecraft/world/entity/monster/hoglin/Hoglin/f_34484_ net/minecraft/world/entity/monster/hoglin/Hoglin/timeInOverworld +FD: net/minecraft/world/entity/monster/hoglin/Hoglin/f_34485_ net/minecraft/world/entity/monster/hoglin/Hoglin/cannotBeHunted +FD: net/minecraft/world/entity/monster/hoglin/HoglinAi/f_149902_ net/minecraft/world/entity/monster/hoglin/HoglinAi/REPELLENT_DETECTION_RANGE_HORIZONTAL +FD: net/minecraft/world/entity/monster/hoglin/HoglinAi/f_149903_ net/minecraft/world/entity/monster/hoglin/HoglinAi/REPELLENT_DETECTION_RANGE_VERTICAL +FD: net/minecraft/world/entity/monster/hoglin/HoglinAi/f_149904_ net/minecraft/world/entity/monster/hoglin/HoglinAi/ATTACK_DURATION +FD: net/minecraft/world/entity/monster/hoglin/HoglinAi/f_149905_ net/minecraft/world/entity/monster/hoglin/HoglinAi/DESIRED_DISTANCE_FROM_PIGLIN_WHEN_IDLING +FD: net/minecraft/world/entity/monster/hoglin/HoglinAi/f_149906_ net/minecraft/world/entity/monster/hoglin/HoglinAi/DESIRED_DISTANCE_FROM_PIGLIN_WHEN_RETREATING +FD: net/minecraft/world/entity/monster/hoglin/HoglinAi/f_149907_ net/minecraft/world/entity/monster/hoglin/HoglinAi/ATTACK_INTERVAL +FD: net/minecraft/world/entity/monster/hoglin/HoglinAi/f_149908_ net/minecraft/world/entity/monster/hoglin/HoglinAi/BABY_ATTACK_INTERVAL +FD: net/minecraft/world/entity/monster/hoglin/HoglinAi/f_149909_ net/minecraft/world/entity/monster/hoglin/HoglinAi/REPELLENT_PACIFY_TIME +FD: net/minecraft/world/entity/monster/hoglin/HoglinAi/f_149910_ net/minecraft/world/entity/monster/hoglin/HoglinAi/SPEED_MULTIPLIER_WHEN_AVOIDING_REPELLENT +FD: net/minecraft/world/entity/monster/hoglin/HoglinAi/f_149911_ net/minecraft/world/entity/monster/hoglin/HoglinAi/SPEED_MULTIPLIER_WHEN_RETREATING +FD: net/minecraft/world/entity/monster/hoglin/HoglinAi/f_149912_ net/minecraft/world/entity/monster/hoglin/HoglinAi/SPEED_MULTIPLIER_WHEN_MAKING_LOVE +FD: net/minecraft/world/entity/monster/hoglin/HoglinAi/f_149913_ net/minecraft/world/entity/monster/hoglin/HoglinAi/SPEED_MULTIPLIER_WHEN_IDLING +FD: net/minecraft/world/entity/monster/hoglin/HoglinAi/f_149914_ net/minecraft/world/entity/monster/hoglin/HoglinAi/SPEED_MULTIPLIER_WHEN_FOLLOWING_ADULT +FD: net/minecraft/world/entity/monster/hoglin/HoglinAi/f_34568_ net/minecraft/world/entity/monster/hoglin/HoglinAi/RETREAT_DURATION +FD: net/minecraft/world/entity/monster/hoglin/HoglinAi/f_34569_ net/minecraft/world/entity/monster/hoglin/HoglinAi/ADULT_FOLLOW_RANGE +FD: net/minecraft/world/entity/monster/hoglin/HoglinBase/f_149916_ net/minecraft/world/entity/monster/hoglin/HoglinBase/ATTACK_ANIMATION_DURATION +FD: net/minecraft/world/entity/monster/piglin/AbstractPiglin/f_149917_ net/minecraft/world/entity/monster/piglin/AbstractPiglin/CONVERSION_TIME +FD: net/minecraft/world/entity/monster/piglin/AbstractPiglin/f_256822_ net/minecraft/world/entity/monster/piglin/AbstractPiglin/PIGLIN_EYE_HEIGHT +FD: net/minecraft/world/entity/monster/piglin/AbstractPiglin/f_34648_ net/minecraft/world/entity/monster/piglin/AbstractPiglin/DATA_IMMUNE_TO_ZOMBIFICATION +FD: net/minecraft/world/entity/monster/piglin/AbstractPiglin/f_34649_ net/minecraft/world/entity/monster/piglin/AbstractPiglin/timeInOverworld +FD: net/minecraft/world/entity/monster/piglin/Piglin/f_149918_ net/minecraft/world/entity/monster/piglin/Piglin/MAX_HEALTH +FD: net/minecraft/world/entity/monster/piglin/Piglin/f_149919_ net/minecraft/world/entity/monster/piglin/Piglin/MOVEMENT_SPEED_WHEN_FIGHTING +FD: net/minecraft/world/entity/monster/piglin/Piglin/f_149920_ net/minecraft/world/entity/monster/piglin/Piglin/ATTACK_DAMAGE +FD: net/minecraft/world/entity/monster/piglin/Piglin/f_149921_ net/minecraft/world/entity/monster/piglin/Piglin/CROSSBOW_POWER +FD: net/minecraft/world/entity/monster/piglin/Piglin/f_149922_ net/minecraft/world/entity/monster/piglin/Piglin/CHANCE_OF_WEARING_EACH_ARMOUR_ITEM +FD: net/minecraft/world/entity/monster/piglin/Piglin/f_149923_ net/minecraft/world/entity/monster/piglin/Piglin/MAX_PASSENGERS_ON_ONE_HOGLIN +FD: net/minecraft/world/entity/monster/piglin/Piglin/f_149924_ net/minecraft/world/entity/monster/piglin/Piglin/PROBABILITY_OF_SPAWNING_AS_BABY +FD: net/minecraft/world/entity/monster/piglin/Piglin/f_149925_ net/minecraft/world/entity/monster/piglin/Piglin/BABY_EYE_HEIGHT_ADJUSTMENT +FD: net/minecraft/world/entity/monster/piglin/Piglin/f_149926_ net/minecraft/world/entity/monster/piglin/Piglin/PROBABILITY_OF_SPAWNING_WITH_CROSSBOW_INSTEAD_OF_SWORD +FD: net/minecraft/world/entity/monster/piglin/Piglin/f_34672_ net/minecraft/world/entity/monster/piglin/Piglin/MEMORY_TYPES +FD: net/minecraft/world/entity/monster/piglin/Piglin/f_34673_ net/minecraft/world/entity/monster/piglin/Piglin/DATA_BABY_ID +FD: net/minecraft/world/entity/monster/piglin/Piglin/f_34674_ net/minecraft/world/entity/monster/piglin/Piglin/DATA_IS_CHARGING_CROSSBOW +FD: net/minecraft/world/entity/monster/piglin/Piglin/f_34675_ net/minecraft/world/entity/monster/piglin/Piglin/DATA_IS_DANCING +FD: net/minecraft/world/entity/monster/piglin/Piglin/f_34676_ net/minecraft/world/entity/monster/piglin/Piglin/SPEED_MODIFIER_BABY_UUID +FD: net/minecraft/world/entity/monster/piglin/Piglin/f_34677_ net/minecraft/world/entity/monster/piglin/Piglin/SPEED_MODIFIER_BABY +FD: net/minecraft/world/entity/monster/piglin/Piglin/f_34678_ net/minecraft/world/entity/monster/piglin/Piglin/inventory +FD: net/minecraft/world/entity/monster/piglin/Piglin/f_34679_ net/minecraft/world/entity/monster/piglin/Piglin/cannotHunt +FD: net/minecraft/world/entity/monster/piglin/Piglin/f_34680_ net/minecraft/world/entity/monster/piglin/Piglin/SENSOR_TYPES +FD: net/minecraft/world/entity/monster/piglin/PiglinAi/f_149932_ net/minecraft/world/entity/monster/piglin/PiglinAi/PROBABILITY_OF_CELEBRATION_DANCE +FD: net/minecraft/world/entity/monster/piglin/PiglinAi/f_149933_ net/minecraft/world/entity/monster/piglin/PiglinAi/SPEED_MULTIPLIER_WHEN_AVOIDING +FD: net/minecraft/world/entity/monster/piglin/PiglinAi/f_149934_ net/minecraft/world/entity/monster/piglin/PiglinAi/SPEED_MULTIPLIER_WHEN_RETREATING +FD: net/minecraft/world/entity/monster/piglin/PiglinAi/f_149935_ net/minecraft/world/entity/monster/piglin/PiglinAi/SPEED_MULTIPLIER_WHEN_MOUNTING +FD: net/minecraft/world/entity/monster/piglin/PiglinAi/f_149936_ net/minecraft/world/entity/monster/piglin/PiglinAi/SPEED_MULTIPLIER_WHEN_GOING_TO_WANTED_ITEM +FD: net/minecraft/world/entity/monster/piglin/PiglinAi/f_149937_ net/minecraft/world/entity/monster/piglin/PiglinAi/SPEED_MULTIPLIER_WHEN_GOING_TO_CELEBRATE_LOCATION +FD: net/minecraft/world/entity/monster/piglin/PiglinAi/f_149938_ net/minecraft/world/entity/monster/piglin/PiglinAi/SPEED_MULTIPLIER_WHEN_DANCING +FD: net/minecraft/world/entity/monster/piglin/PiglinAi/f_149939_ net/minecraft/world/entity/monster/piglin/PiglinAi/SPEED_MULTIPLIER_WHEN_IDLING +FD: net/minecraft/world/entity/monster/piglin/PiglinAi/f_149940_ net/minecraft/world/entity/monster/piglin/PiglinAi/REPELLENT_DETECTION_RANGE_HORIZONTAL +FD: net/minecraft/world/entity/monster/piglin/PiglinAi/f_149941_ net/minecraft/world/entity/monster/piglin/PiglinAi/REPELLENT_DETECTION_RANGE_VERTICAL +FD: net/minecraft/world/entity/monster/piglin/PiglinAi/f_149942_ net/minecraft/world/entity/monster/piglin/PiglinAi/PLAYER_ANGER_RANGE +FD: net/minecraft/world/entity/monster/piglin/PiglinAi/f_149943_ net/minecraft/world/entity/monster/piglin/PiglinAi/ANGER_DURATION +FD: net/minecraft/world/entity/monster/piglin/PiglinAi/f_149944_ net/minecraft/world/entity/monster/piglin/PiglinAi/ADMIRE_DURATION +FD: net/minecraft/world/entity/monster/piglin/PiglinAi/f_149945_ net/minecraft/world/entity/monster/piglin/PiglinAi/MAX_DISTANCE_TO_WALK_TO_ITEM +FD: net/minecraft/world/entity/monster/piglin/PiglinAi/f_149946_ net/minecraft/world/entity/monster/piglin/PiglinAi/MAX_TIME_TO_WALK_TO_ITEM +FD: net/minecraft/world/entity/monster/piglin/PiglinAi/f_149947_ net/minecraft/world/entity/monster/piglin/PiglinAi/HOW_LONG_TIME_TO_DISABLE_ADMIRE_WALKING_IF_CANT_REACH_ITEM +FD: net/minecraft/world/entity/monster/piglin/PiglinAi/f_149948_ net/minecraft/world/entity/monster/piglin/PiglinAi/CELEBRATION_TIME +FD: net/minecraft/world/entity/monster/piglin/PiglinAi/f_149949_ net/minecraft/world/entity/monster/piglin/PiglinAi/BABY_FLEE_DURATION_AFTER_GETTING_HIT +FD: net/minecraft/world/entity/monster/piglin/PiglinAi/f_149950_ net/minecraft/world/entity/monster/piglin/PiglinAi/HIT_BY_PLAYER_MEMORY_TIMEOUT +FD: net/minecraft/world/entity/monster/piglin/PiglinAi/f_149951_ net/minecraft/world/entity/monster/piglin/PiglinAi/MAX_WALK_DISTANCE_TO_START_RIDING +FD: net/minecraft/world/entity/monster/piglin/PiglinAi/f_149952_ net/minecraft/world/entity/monster/piglin/PiglinAi/MELEE_ATTACK_COOLDOWN +FD: net/minecraft/world/entity/monster/piglin/PiglinAi/f_149953_ net/minecraft/world/entity/monster/piglin/PiglinAi/EAT_COOLDOWN +FD: net/minecraft/world/entity/monster/piglin/PiglinAi/f_149954_ net/minecraft/world/entity/monster/piglin/PiglinAi/DESIRED_DISTANCE_FROM_ENTITY_WHEN_AVOIDING +FD: net/minecraft/world/entity/monster/piglin/PiglinAi/f_149955_ net/minecraft/world/entity/monster/piglin/PiglinAi/MAX_LOOK_DIST +FD: net/minecraft/world/entity/monster/piglin/PiglinAi/f_149956_ net/minecraft/world/entity/monster/piglin/PiglinAi/MAX_LOOK_DIST_FOR_PLAYER_HOLDING_LOVED_ITEM +FD: net/minecraft/world/entity/monster/piglin/PiglinAi/f_149957_ net/minecraft/world/entity/monster/piglin/PiglinAi/INTERACTION_RANGE +FD: net/minecraft/world/entity/monster/piglin/PiglinAi/f_149958_ net/minecraft/world/entity/monster/piglin/PiglinAi/MIN_DESIRED_DIST_FROM_TARGET_WHEN_HOLDING_CROSSBOW +FD: net/minecraft/world/entity/monster/piglin/PiglinAi/f_149959_ net/minecraft/world/entity/monster/piglin/PiglinAi/SPEED_WHEN_STRAFING_BACK_FROM_TARGET +FD: net/minecraft/world/entity/monster/piglin/PiglinAi/f_149960_ net/minecraft/world/entity/monster/piglin/PiglinAi/DESIRED_DISTANCE_FROM_ZOMBIFIED +FD: net/minecraft/world/entity/monster/piglin/PiglinAi/f_34794_ net/minecraft/world/entity/monster/piglin/PiglinAi/BARTERING_ITEM +FD: net/minecraft/world/entity/monster/piglin/PiglinAi/f_34795_ net/minecraft/world/entity/monster/piglin/PiglinAi/TIME_BETWEEN_HUNTS +FD: net/minecraft/world/entity/monster/piglin/PiglinAi/f_34796_ net/minecraft/world/entity/monster/piglin/PiglinAi/RIDE_START_INTERVAL +FD: net/minecraft/world/entity/monster/piglin/PiglinAi/f_34797_ net/minecraft/world/entity/monster/piglin/PiglinAi/RIDE_DURATION +FD: net/minecraft/world/entity/monster/piglin/PiglinAi/f_34798_ net/minecraft/world/entity/monster/piglin/PiglinAi/RETREAT_DURATION +FD: net/minecraft/world/entity/monster/piglin/PiglinAi/f_34799_ net/minecraft/world/entity/monster/piglin/PiglinAi/AVOID_ZOMBIFIED_DURATION +FD: net/minecraft/world/entity/monster/piglin/PiglinAi/f_34800_ net/minecraft/world/entity/monster/piglin/PiglinAi/BABY_AVOID_NEMESIS_DURATION +FD: net/minecraft/world/entity/monster/piglin/PiglinArmPose/$VALUES net/minecraft/world/entity/monster/piglin/PiglinArmPose/$VALUES +FD: net/minecraft/world/entity/monster/piglin/PiglinArmPose/ADMIRING_ITEM net/minecraft/world/entity/monster/piglin/PiglinArmPose/ADMIRING_ITEM +FD: net/minecraft/world/entity/monster/piglin/PiglinArmPose/ATTACKING_WITH_MELEE_WEAPON net/minecraft/world/entity/monster/piglin/PiglinArmPose/ATTACKING_WITH_MELEE_WEAPON +FD: net/minecraft/world/entity/monster/piglin/PiglinArmPose/CROSSBOW_CHARGE net/minecraft/world/entity/monster/piglin/PiglinArmPose/CROSSBOW_CHARGE +FD: net/minecraft/world/entity/monster/piglin/PiglinArmPose/CROSSBOW_HOLD net/minecraft/world/entity/monster/piglin/PiglinArmPose/CROSSBOW_HOLD +FD: net/minecraft/world/entity/monster/piglin/PiglinArmPose/DANCING net/minecraft/world/entity/monster/piglin/PiglinArmPose/DANCING +FD: net/minecraft/world/entity/monster/piglin/PiglinArmPose/DEFAULT net/minecraft/world/entity/monster/piglin/PiglinArmPose/DEFAULT +FD: net/minecraft/world/entity/monster/piglin/PiglinBrute/f_149974_ net/minecraft/world/entity/monster/piglin/PiglinBrute/MAX_HEALTH +FD: net/minecraft/world/entity/monster/piglin/PiglinBrute/f_149975_ net/minecraft/world/entity/monster/piglin/PiglinBrute/MOVEMENT_SPEED_WHEN_FIGHTING +FD: net/minecraft/world/entity/monster/piglin/PiglinBrute/f_149976_ net/minecraft/world/entity/monster/piglin/PiglinBrute/ATTACK_DAMAGE +FD: net/minecraft/world/entity/monster/piglin/PiglinBrute/f_35044_ net/minecraft/world/entity/monster/piglin/PiglinBrute/MEMORY_TYPES +FD: net/minecraft/world/entity/monster/piglin/PiglinBrute/f_35045_ net/minecraft/world/entity/monster/piglin/PiglinBrute/SENSOR_TYPES +FD: net/minecraft/world/entity/monster/piglin/PiglinBruteAi/f_149977_ net/minecraft/world/entity/monster/piglin/PiglinBruteAi/ANGER_DURATION +FD: net/minecraft/world/entity/monster/piglin/PiglinBruteAi/f_149978_ net/minecraft/world/entity/monster/piglin/PiglinBruteAi/MELEE_ATTACK_COOLDOWN +FD: net/minecraft/world/entity/monster/piglin/PiglinBruteAi/f_149979_ net/minecraft/world/entity/monster/piglin/PiglinBruteAi/ACTIVITY_SOUND_LIKELIHOOD_PER_TICK +FD: net/minecraft/world/entity/monster/piglin/PiglinBruteAi/f_149980_ net/minecraft/world/entity/monster/piglin/PiglinBruteAi/MAX_LOOK_DIST +FD: net/minecraft/world/entity/monster/piglin/PiglinBruteAi/f_149981_ net/minecraft/world/entity/monster/piglin/PiglinBruteAi/INTERACTION_RANGE +FD: net/minecraft/world/entity/monster/piglin/PiglinBruteAi/f_149982_ net/minecraft/world/entity/monster/piglin/PiglinBruteAi/TARGETING_RANGE +FD: net/minecraft/world/entity/monster/piglin/PiglinBruteAi/f_149983_ net/minecraft/world/entity/monster/piglin/PiglinBruteAi/SPEED_MULTIPLIER_WHEN_IDLING +FD: net/minecraft/world/entity/monster/piglin/PiglinBruteAi/f_149984_ net/minecraft/world/entity/monster/piglin/PiglinBruteAi/HOME_CLOSE_ENOUGH_DISTANCE +FD: net/minecraft/world/entity/monster/piglin/PiglinBruteAi/f_149985_ net/minecraft/world/entity/monster/piglin/PiglinBruteAi/HOME_TOO_FAR_DISTANCE +FD: net/minecraft/world/entity/monster/piglin/PiglinBruteAi/f_149986_ net/minecraft/world/entity/monster/piglin/PiglinBruteAi/HOME_STROLL_AROUND_DISTANCE +FD: net/minecraft/world/entity/monster/warden/AngerLevel/$VALUES net/minecraft/world/entity/monster/warden/AngerLevel/$VALUES +FD: net/minecraft/world/entity/monster/warden/AngerLevel/AGITATED net/minecraft/world/entity/monster/warden/AngerLevel/AGITATED +FD: net/minecraft/world/entity/monster/warden/AngerLevel/ANGRY net/minecraft/world/entity/monster/warden/AngerLevel/ANGRY +FD: net/minecraft/world/entity/monster/warden/AngerLevel/CALM net/minecraft/world/entity/monster/warden/AngerLevel/CALM +FD: net/minecraft/world/entity/monster/warden/AngerLevel/f_219214_ net/minecraft/world/entity/monster/warden/AngerLevel/SORTED_LEVELS +FD: net/minecraft/world/entity/monster/warden/AngerLevel/f_219215_ net/minecraft/world/entity/monster/warden/AngerLevel/minimumAnger +FD: net/minecraft/world/entity/monster/warden/AngerLevel/f_219216_ net/minecraft/world/entity/monster/warden/AngerLevel/ambientSound +FD: net/minecraft/world/entity/monster/warden/AngerLevel/f_219217_ net/minecraft/world/entity/monster/warden/AngerLevel/listeningSound +FD: net/minecraft/world/entity/monster/warden/AngerManagement/f_219241_ net/minecraft/world/entity/monster/warden/AngerManagement/CONVERSION_DELAY +FD: net/minecraft/world/entity/monster/warden/AngerManagement/f_219242_ net/minecraft/world/entity/monster/warden/AngerManagement/MAX_ANGER +FD: net/minecraft/world/entity/monster/warden/AngerManagement/f_219243_ net/minecraft/world/entity/monster/warden/AngerManagement/suspects +FD: net/minecraft/world/entity/monster/warden/AngerManagement/f_219244_ net/minecraft/world/entity/monster/warden/AngerManagement/angerBySuspect +FD: net/minecraft/world/entity/monster/warden/AngerManagement/f_219245_ net/minecraft/world/entity/monster/warden/AngerManagement/angerByUuid +FD: net/minecraft/world/entity/monster/warden/AngerManagement/f_219246_ net/minecraft/world/entity/monster/warden/AngerManagement/DEFAULT_ANGER_DECREASE +FD: net/minecraft/world/entity/monster/warden/AngerManagement/f_219247_ net/minecraft/world/entity/monster/warden/AngerManagement/conversionDelay +FD: net/minecraft/world/entity/monster/warden/AngerManagement/f_219248_ net/minecraft/world/entity/monster/warden/AngerManagement/highestAnger +FD: net/minecraft/world/entity/monster/warden/AngerManagement/f_219249_ net/minecraft/world/entity/monster/warden/AngerManagement/SUSPECT_ANGER_PAIR +FD: net/minecraft/world/entity/monster/warden/AngerManagement/f_219250_ net/minecraft/world/entity/monster/warden/AngerManagement/filter +FD: net/minecraft/world/entity/monster/warden/AngerManagement/f_219251_ net/minecraft/world/entity/monster/warden/AngerManagement/suspectSorter +FD: net/minecraft/world/entity/monster/warden/AngerManagement$1/f_219296_ net/minecraft/world/entity/monster/warden/AngerManagement$1/$SwitchMap$net$minecraft$world$entity$Entity$RemovalReason +FD: net/minecraft/world/entity/monster/warden/AngerManagement$Sorter/f_219298_ net/minecraft/world/entity/monster/warden/AngerManagement$Sorter/angerManagement +FD: net/minecraft/world/entity/monster/warden/Warden/f_219312_ net/minecraft/world/entity/monster/warden/Warden/roarAnimationState +FD: net/minecraft/world/entity/monster/warden/Warden/f_219313_ net/minecraft/world/entity/monster/warden/Warden/attackAnimationState +FD: net/minecraft/world/entity/monster/warden/Warden/f_219314_ net/minecraft/world/entity/monster/warden/Warden/sonicBoomAnimationState +FD: net/minecraft/world/entity/monster/warden/Warden/f_219315_ net/minecraft/world/entity/monster/warden/Warden/LOGGER +FD: net/minecraft/world/entity/monster/warden/Warden/f_219316_ net/minecraft/world/entity/monster/warden/Warden/sniffAnimationState +FD: net/minecraft/world/entity/monster/warden/Warden/f_219317_ net/minecraft/world/entity/monster/warden/Warden/heartAnimationO +FD: net/minecraft/world/entity/monster/warden/Warden/f_219318_ net/minecraft/world/entity/monster/warden/Warden/dynamicGameEventListener +FD: net/minecraft/world/entity/monster/warden/Warden/f_219319_ net/minecraft/world/entity/monster/warden/Warden/angerManagement +FD: net/minecraft/world/entity/monster/warden/Warden/f_219321_ net/minecraft/world/entity/monster/warden/Warden/VIBRATION_COOLDOWN_TICKS +FD: net/minecraft/world/entity/monster/warden/Warden/f_219322_ net/minecraft/world/entity/monster/warden/Warden/TIME_TO_USE_MELEE_UNTIL_SONIC_BOOM +FD: net/minecraft/world/entity/monster/warden/Warden/f_219323_ net/minecraft/world/entity/monster/warden/Warden/MAX_HEALTH +FD: net/minecraft/world/entity/monster/warden/Warden/f_219324_ net/minecraft/world/entity/monster/warden/Warden/MOVEMENT_SPEED_WHEN_FIGHTING +FD: net/minecraft/world/entity/monster/warden/Warden/f_219325_ net/minecraft/world/entity/monster/warden/Warden/KNOCKBACK_RESISTANCE +FD: net/minecraft/world/entity/monster/warden/Warden/f_219326_ net/minecraft/world/entity/monster/warden/Warden/ATTACK_KNOCKBACK +FD: net/minecraft/world/entity/monster/warden/Warden/f_219327_ net/minecraft/world/entity/monster/warden/Warden/ATTACK_DAMAGE +FD: net/minecraft/world/entity/monster/warden/Warden/f_219328_ net/minecraft/world/entity/monster/warden/Warden/CLIENT_ANGER_LEVEL +FD: net/minecraft/world/entity/monster/warden/Warden/f_219329_ net/minecraft/world/entity/monster/warden/Warden/DARKNESS_DISPLAY_LIMIT +FD: net/minecraft/world/entity/monster/warden/Warden/f_219330_ net/minecraft/world/entity/monster/warden/Warden/DARKNESS_DURATION +FD: net/minecraft/world/entity/monster/warden/Warden/f_219331_ net/minecraft/world/entity/monster/warden/Warden/DARKNESS_RADIUS +FD: net/minecraft/world/entity/monster/warden/Warden/f_219332_ net/minecraft/world/entity/monster/warden/Warden/DARKNESS_INTERVAL +FD: net/minecraft/world/entity/monster/warden/Warden/f_219333_ net/minecraft/world/entity/monster/warden/Warden/ANGERMANAGEMENT_TICK_DELAY +FD: net/minecraft/world/entity/monster/warden/Warden/f_219334_ net/minecraft/world/entity/monster/warden/Warden/DEFAULT_ANGER +FD: net/minecraft/world/entity/monster/warden/Warden/f_219335_ net/minecraft/world/entity/monster/warden/Warden/PROJECTILE_ANGER +FD: net/minecraft/world/entity/monster/warden/Warden/f_219336_ net/minecraft/world/entity/monster/warden/Warden/ON_HURT_ANGER_BOOST +FD: net/minecraft/world/entity/monster/warden/Warden/f_219337_ net/minecraft/world/entity/monster/warden/Warden/RECENT_PROJECTILE_TICK_THRESHOLD +FD: net/minecraft/world/entity/monster/warden/Warden/f_219338_ net/minecraft/world/entity/monster/warden/Warden/TOUCH_COOLDOWN_TICKS +FD: net/minecraft/world/entity/monster/warden/Warden/f_219339_ net/minecraft/world/entity/monster/warden/Warden/DIGGING_PARTICLES_AMOUNT +FD: net/minecraft/world/entity/monster/warden/Warden/f_219340_ net/minecraft/world/entity/monster/warden/Warden/DIGGING_PARTICLES_DURATION +FD: net/minecraft/world/entity/monster/warden/Warden/f_219341_ net/minecraft/world/entity/monster/warden/Warden/DIGGING_PARTICLES_OFFSET +FD: net/minecraft/world/entity/monster/warden/Warden/f_219342_ net/minecraft/world/entity/monster/warden/Warden/PROJECTILE_ANGER_DISTANCE +FD: net/minecraft/world/entity/monster/warden/Warden/f_219343_ net/minecraft/world/entity/monster/warden/Warden/tendrilAnimation +FD: net/minecraft/world/entity/monster/warden/Warden/f_219344_ net/minecraft/world/entity/monster/warden/Warden/tendrilAnimationO +FD: net/minecraft/world/entity/monster/warden/Warden/f_219345_ net/minecraft/world/entity/monster/warden/Warden/heartAnimation +FD: net/minecraft/world/entity/monster/warden/Warden/f_219346_ net/minecraft/world/entity/monster/warden/Warden/emergeAnimationState +FD: net/minecraft/world/entity/monster/warden/Warden/f_219347_ net/minecraft/world/entity/monster/warden/Warden/diggingAnimationState +FD: net/minecraft/world/entity/monster/warden/Warden/f_279590_ net/minecraft/world/entity/monster/warden/Warden/vibrationData +FD: net/minecraft/world/entity/monster/warden/Warden/f_279603_ net/minecraft/world/entity/monster/warden/Warden/vibrationUser +FD: net/minecraft/world/entity/monster/warden/Warden$1/f_219473_ net/minecraft/world/entity/monster/warden/Warden$1/this$0 +FD: net/minecraft/world/entity/monster/warden/Warden$1$1/f_219480_ net/minecraft/world/entity/monster/warden/Warden$1$1/this$1 +FD: net/minecraft/world/entity/monster/warden/Warden$2/f_219488_ net/minecraft/world/entity/monster/warden/Warden$2/$SwitchMap$net$minecraft$world$entity$Pose +FD: net/minecraft/world/entity/monster/warden/Warden$VibrationUser/f_279541_ net/minecraft/world/entity/monster/warden/Warden$VibrationUser/GAME_EVENT_LISTENER_RANGE +FD: net/minecraft/world/entity/monster/warden/Warden$VibrationUser/f_279592_ net/minecraft/world/entity/monster/warden/Warden$VibrationUser/this$0 +FD: net/minecraft/world/entity/monster/warden/Warden$VibrationUser/f_279600_ net/minecraft/world/entity/monster/warden/Warden$VibrationUser/positionSource +FD: net/minecraft/world/entity/monster/warden/WardenAi/f_219490_ net/minecraft/world/entity/monster/warden/WardenAi/EMERGE_DURATION +FD: net/minecraft/world/entity/monster/warden/WardenAi/f_219491_ net/minecraft/world/entity/monster/warden/WardenAi/ROAR_DURATION +FD: net/minecraft/world/entity/monster/warden/WardenAi/f_219492_ net/minecraft/world/entity/monster/warden/WardenAi/DIGGING_COOLDOWN +FD: net/minecraft/world/entity/monster/warden/WardenAi/f_219493_ net/minecraft/world/entity/monster/warden/WardenAi/SPEED_MULTIPLIER_WHEN_IDLING +FD: net/minecraft/world/entity/monster/warden/WardenAi/f_219494_ net/minecraft/world/entity/monster/warden/WardenAi/SPEED_MULTIPLIER_WHEN_INVESTIGATING +FD: net/minecraft/world/entity/monster/warden/WardenAi/f_219495_ net/minecraft/world/entity/monster/warden/WardenAi/SPEED_MULTIPLIER_WHEN_FIGHTING +FD: net/minecraft/world/entity/monster/warden/WardenAi/f_219496_ net/minecraft/world/entity/monster/warden/WardenAi/MELEE_ATTACK_COOLDOWN +FD: net/minecraft/world/entity/monster/warden/WardenAi/f_219497_ net/minecraft/world/entity/monster/warden/WardenAi/DIGGING_DURATION +FD: net/minecraft/world/entity/monster/warden/WardenAi/f_219498_ net/minecraft/world/entity/monster/warden/WardenAi/SNIFFING_DURATION +FD: net/minecraft/world/entity/monster/warden/WardenAi/f_219499_ net/minecraft/world/entity/monster/warden/WardenAi/DISTURBANCE_LOCATION_EXPIRY_TIME +FD: net/minecraft/world/entity/monster/warden/WardenAi/f_219500_ net/minecraft/world/entity/monster/warden/WardenAi/SENSOR_TYPES +FD: net/minecraft/world/entity/monster/warden/WardenAi/f_219501_ net/minecraft/world/entity/monster/warden/WardenAi/MEMORY_TYPES +FD: net/minecraft/world/entity/monster/warden/WardenAi/f_219502_ net/minecraft/world/entity/monster/warden/WardenAi/DIG_COOLDOWN_SETTER +FD: net/minecraft/world/entity/monster/warden/WardenSpawnTracker/f_219557_ net/minecraft/world/entity/monster/warden/WardenSpawnTracker/CODEC +FD: net/minecraft/world/entity/monster/warden/WardenSpawnTracker/f_219558_ net/minecraft/world/entity/monster/warden/WardenSpawnTracker/MAX_WARNING_LEVEL +FD: net/minecraft/world/entity/monster/warden/WardenSpawnTracker/f_219559_ net/minecraft/world/entity/monster/warden/WardenSpawnTracker/PLAYER_SEARCH_RADIUS +FD: net/minecraft/world/entity/monster/warden/WardenSpawnTracker/f_219560_ net/minecraft/world/entity/monster/warden/WardenSpawnTracker/WARNING_CHECK_DIAMETER +FD: net/minecraft/world/entity/monster/warden/WardenSpawnTracker/f_219561_ net/minecraft/world/entity/monster/warden/WardenSpawnTracker/DECREASE_WARNING_LEVEL_EVERY_INTERVAL +FD: net/minecraft/world/entity/monster/warden/WardenSpawnTracker/f_219562_ net/minecraft/world/entity/monster/warden/WardenSpawnTracker/WARNING_LEVEL_INCREASE_COOLDOWN +FD: net/minecraft/world/entity/monster/warden/WardenSpawnTracker/f_219563_ net/minecraft/world/entity/monster/warden/WardenSpawnTracker/ticksSinceLastWarning +FD: net/minecraft/world/entity/monster/warden/WardenSpawnTracker/f_219564_ net/minecraft/world/entity/monster/warden/WardenSpawnTracker/warningLevel +FD: net/minecraft/world/entity/monster/warden/WardenSpawnTracker/f_219565_ net/minecraft/world/entity/monster/warden/WardenSpawnTracker/cooldownTicks +FD: net/minecraft/world/entity/npc/AbstractVillager/f_149991_ net/minecraft/world/entity/npc/AbstractVillager/VILLAGER_SLOT_OFFSET +FD: net/minecraft/world/entity/npc/AbstractVillager/f_149992_ net/minecraft/world/entity/npc/AbstractVillager/VILLAGER_INVENTORY_SIZE +FD: net/minecraft/world/entity/npc/AbstractVillager/f_35261_ net/minecraft/world/entity/npc/AbstractVillager/offers +FD: net/minecraft/world/entity/npc/AbstractVillager/f_35262_ net/minecraft/world/entity/npc/AbstractVillager/DATA_UNHAPPY_COUNTER +FD: net/minecraft/world/entity/npc/AbstractVillager/f_35263_ net/minecraft/world/entity/npc/AbstractVillager/tradingPlayer +FD: net/minecraft/world/entity/npc/AbstractVillager/f_35264_ net/minecraft/world/entity/npc/AbstractVillager/inventory +FD: net/minecraft/world/entity/npc/CatSpawner/f_149996_ net/minecraft/world/entity/npc/CatSpawner/TICK_DELAY +FD: net/minecraft/world/entity/npc/CatSpawner/f_35324_ net/minecraft/world/entity/npc/CatSpawner/nextTick +FD: net/minecraft/world/entity/npc/ClientSideMerchant/f_35340_ net/minecraft/world/entity/npc/ClientSideMerchant/source +FD: net/minecraft/world/entity/npc/ClientSideMerchant/f_35341_ net/minecraft/world/entity/npc/ClientSideMerchant/offers +FD: net/minecraft/world/entity/npc/ClientSideMerchant/f_35342_ net/minecraft/world/entity/npc/ClientSideMerchant/xp +FD: net/minecraft/world/entity/npc/InventoryCarrier/f_252389_ net/minecraft/world/entity/npc/InventoryCarrier/TAG_INVENTORY +FD: net/minecraft/world/entity/npc/Villager/f_149997_ net/minecraft/world/entity/npc/Villager/BREEDING_FOOD_THRESHOLD +FD: net/minecraft/world/entity/npc/Villager/f_149998_ net/minecraft/world/entity/npc/Villager/SPEED_MODIFIER +FD: net/minecraft/world/entity/npc/Villager/f_149999_ net/minecraft/world/entity/npc/Villager/TRADES_PER_LEVEL +FD: net/minecraft/world/entity/npc/Villager/f_150000_ net/minecraft/world/entity/npc/Villager/MAX_GOSSIP_TOPICS +FD: net/minecraft/world/entity/npc/Villager/f_150001_ net/minecraft/world/entity/npc/Villager/GOSSIP_COOLDOWN +FD: net/minecraft/world/entity/npc/Villager/f_150002_ net/minecraft/world/entity/npc/Villager/GOSSIP_DECAY_INTERVAL +FD: net/minecraft/world/entity/npc/Villager/f_150003_ net/minecraft/world/entity/npc/Villager/REPUTATION_CHANGE_PER_EVENT +FD: net/minecraft/world/entity/npc/Villager/f_150004_ net/minecraft/world/entity/npc/Villager/HOW_FAR_AWAY_TO_TALK_TO_OTHER_VILLAGERS_ABOUT_GOLEMS +FD: net/minecraft/world/entity/npc/Villager/f_150005_ net/minecraft/world/entity/npc/Villager/HOW_MANY_VILLAGERS_NEED_TO_AGREE_TO_SPAWN_A_GOLEM +FD: net/minecraft/world/entity/npc/Villager/f_150006_ net/minecraft/world/entity/npc/Villager/TIME_SINCE_SLEEPING_FOR_GOLEM_SPAWNING +FD: net/minecraft/world/entity/npc/Villager/f_150007_ net/minecraft/world/entity/npc/Villager/chasing +FD: net/minecraft/world/entity/npc/Villager/f_201976_ net/minecraft/world/entity/npc/Villager/LOGGER +FD: net/minecraft/world/entity/npc/Villager/f_35361_ net/minecraft/world/entity/npc/Villager/lastGossipDecayTime +FD: net/minecraft/world/entity/npc/Villager/f_35362_ net/minecraft/world/entity/npc/Villager/villagerXp +FD: net/minecraft/world/entity/npc/Villager/f_35363_ net/minecraft/world/entity/npc/Villager/lastRestockGameTime +FD: net/minecraft/world/entity/npc/Villager/f_35364_ net/minecraft/world/entity/npc/Villager/numberOfRestocksToday +FD: net/minecraft/world/entity/npc/Villager/f_35365_ net/minecraft/world/entity/npc/Villager/lastRestockCheckDayTime +FD: net/minecraft/world/entity/npc/Villager/f_35366_ net/minecraft/world/entity/npc/Villager/assignProfessionWhenSpawned +FD: net/minecraft/world/entity/npc/Villager/f_35367_ net/minecraft/world/entity/npc/Villager/MEMORY_TYPES +FD: net/minecraft/world/entity/npc/Villager/f_35368_ net/minecraft/world/entity/npc/Villager/SENSOR_TYPES +FD: net/minecraft/world/entity/npc/Villager/f_35369_ net/minecraft/world/entity/npc/Villager/FOOD_POINTS +FD: net/minecraft/world/entity/npc/Villager/f_35370_ net/minecraft/world/entity/npc/Villager/POI_MEMORIES +FD: net/minecraft/world/entity/npc/Villager/f_35371_ net/minecraft/world/entity/npc/Villager/DATA_VILLAGER_DATA +FD: net/minecraft/world/entity/npc/Villager/f_35372_ net/minecraft/world/entity/npc/Villager/WANTED_ITEMS +FD: net/minecraft/world/entity/npc/Villager/f_35373_ net/minecraft/world/entity/npc/Villager/updateMerchantTimer +FD: net/minecraft/world/entity/npc/Villager/f_35374_ net/minecraft/world/entity/npc/Villager/increaseProfessionLevelOnUpdate +FD: net/minecraft/world/entity/npc/Villager/f_35375_ net/minecraft/world/entity/npc/Villager/lastTradedPlayer +FD: net/minecraft/world/entity/npc/Villager/f_35376_ net/minecraft/world/entity/npc/Villager/foodLevel +FD: net/minecraft/world/entity/npc/Villager/f_35377_ net/minecraft/world/entity/npc/Villager/gossips +FD: net/minecraft/world/entity/npc/Villager/f_35378_ net/minecraft/world/entity/npc/Villager/lastGossipTime +FD: net/minecraft/world/entity/npc/VillagerData/f_150017_ net/minecraft/world/entity/npc/VillagerData/MIN_VILLAGER_LEVEL +FD: net/minecraft/world/entity/npc/VillagerData/f_150018_ net/minecraft/world/entity/npc/VillagerData/MAX_VILLAGER_LEVEL +FD: net/minecraft/world/entity/npc/VillagerData/f_35550_ net/minecraft/world/entity/npc/VillagerData/CODEC +FD: net/minecraft/world/entity/npc/VillagerData/f_35551_ net/minecraft/world/entity/npc/VillagerData/NEXT_LEVEL_XP_THRESHOLDS +FD: net/minecraft/world/entity/npc/VillagerData/f_35552_ net/minecraft/world/entity/npc/VillagerData/type +FD: net/minecraft/world/entity/npc/VillagerData/f_35553_ net/minecraft/world/entity/npc/VillagerData/profession +FD: net/minecraft/world/entity/npc/VillagerData/f_35554_ net/minecraft/world/entity/npc/VillagerData/level +FD: net/minecraft/world/entity/npc/VillagerProfession/f_219627_ net/minecraft/world/entity/npc/VillagerProfession/ALL_ACQUIRABLE_JOBS +FD: net/minecraft/world/entity/npc/VillagerProfession/f_219628_ net/minecraft/world/entity/npc/VillagerProfession/heldJobSite +FD: net/minecraft/world/entity/npc/VillagerProfession/f_219629_ net/minecraft/world/entity/npc/VillagerProfession/acquirableJobSite +FD: net/minecraft/world/entity/npc/VillagerProfession/f_35585_ net/minecraft/world/entity/npc/VillagerProfession/NONE +FD: net/minecraft/world/entity/npc/VillagerProfession/f_35586_ net/minecraft/world/entity/npc/VillagerProfession/ARMORER +FD: net/minecraft/world/entity/npc/VillagerProfession/f_35587_ net/minecraft/world/entity/npc/VillagerProfession/BUTCHER +FD: net/minecraft/world/entity/npc/VillagerProfession/f_35588_ net/minecraft/world/entity/npc/VillagerProfession/CARTOGRAPHER +FD: net/minecraft/world/entity/npc/VillagerProfession/f_35589_ net/minecraft/world/entity/npc/VillagerProfession/CLERIC +FD: net/minecraft/world/entity/npc/VillagerProfession/f_35590_ net/minecraft/world/entity/npc/VillagerProfession/FARMER +FD: net/minecraft/world/entity/npc/VillagerProfession/f_35591_ net/minecraft/world/entity/npc/VillagerProfession/FISHERMAN +FD: net/minecraft/world/entity/npc/VillagerProfession/f_35592_ net/minecraft/world/entity/npc/VillagerProfession/FLETCHER +FD: net/minecraft/world/entity/npc/VillagerProfession/f_35593_ net/minecraft/world/entity/npc/VillagerProfession/LEATHERWORKER +FD: net/minecraft/world/entity/npc/VillagerProfession/f_35594_ net/minecraft/world/entity/npc/VillagerProfession/LIBRARIAN +FD: net/minecraft/world/entity/npc/VillagerProfession/f_35595_ net/minecraft/world/entity/npc/VillagerProfession/MASON +FD: net/minecraft/world/entity/npc/VillagerProfession/f_35596_ net/minecraft/world/entity/npc/VillagerProfession/NITWIT +FD: net/minecraft/world/entity/npc/VillagerProfession/f_35597_ net/minecraft/world/entity/npc/VillagerProfession/SHEPHERD +FD: net/minecraft/world/entity/npc/VillagerProfession/f_35598_ net/minecraft/world/entity/npc/VillagerProfession/TOOLSMITH +FD: net/minecraft/world/entity/npc/VillagerProfession/f_35599_ net/minecraft/world/entity/npc/VillagerProfession/WEAPONSMITH +FD: net/minecraft/world/entity/npc/VillagerProfession/f_35600_ net/minecraft/world/entity/npc/VillagerProfession/name +FD: net/minecraft/world/entity/npc/VillagerProfession/f_35602_ net/minecraft/world/entity/npc/VillagerProfession/requestedItems +FD: net/minecraft/world/entity/npc/VillagerProfession/f_35603_ net/minecraft/world/entity/npc/VillagerProfession/secondaryPoi +FD: net/minecraft/world/entity/npc/VillagerProfession/f_35604_ net/minecraft/world/entity/npc/VillagerProfession/workSound +FD: net/minecraft/world/entity/npc/VillagerTrades/f_150029_ net/minecraft/world/entity/npc/VillagerTrades/DEFAULT_SUPPLY +FD: net/minecraft/world/entity/npc/VillagerTrades/f_150030_ net/minecraft/world/entity/npc/VillagerTrades/COMMON_ITEMS_SUPPLY +FD: net/minecraft/world/entity/npc/VillagerTrades/f_150031_ net/minecraft/world/entity/npc/VillagerTrades/UNCOMMON_ITEMS_SUPPLY +FD: net/minecraft/world/entity/npc/VillagerTrades/f_150032_ net/minecraft/world/entity/npc/VillagerTrades/XP_LEVEL_1_SELL +FD: net/minecraft/world/entity/npc/VillagerTrades/f_150033_ net/minecraft/world/entity/npc/VillagerTrades/XP_LEVEL_1_BUY +FD: net/minecraft/world/entity/npc/VillagerTrades/f_150034_ net/minecraft/world/entity/npc/VillagerTrades/XP_LEVEL_2_SELL +FD: net/minecraft/world/entity/npc/VillagerTrades/f_150035_ net/minecraft/world/entity/npc/VillagerTrades/XP_LEVEL_2_BUY +FD: net/minecraft/world/entity/npc/VillagerTrades/f_150036_ net/minecraft/world/entity/npc/VillagerTrades/XP_LEVEL_3_SELL +FD: net/minecraft/world/entity/npc/VillagerTrades/f_150037_ net/minecraft/world/entity/npc/VillagerTrades/XP_LEVEL_3_BUY +FD: net/minecraft/world/entity/npc/VillagerTrades/f_150038_ net/minecraft/world/entity/npc/VillagerTrades/XP_LEVEL_4_SELL +FD: net/minecraft/world/entity/npc/VillagerTrades/f_150039_ net/minecraft/world/entity/npc/VillagerTrades/XP_LEVEL_4_BUY +FD: net/minecraft/world/entity/npc/VillagerTrades/f_150040_ net/minecraft/world/entity/npc/VillagerTrades/XP_LEVEL_5_TRADE +FD: net/minecraft/world/entity/npc/VillagerTrades/f_150041_ net/minecraft/world/entity/npc/VillagerTrades/LOW_TIER_PRICE_MULTIPLIER +FD: net/minecraft/world/entity/npc/VillagerTrades/f_150042_ net/minecraft/world/entity/npc/VillagerTrades/HIGH_TIER_PRICE_MULTIPLIER +FD: net/minecraft/world/entity/npc/VillagerTrades/f_35627_ net/minecraft/world/entity/npc/VillagerTrades/TRADES +FD: net/minecraft/world/entity/npc/VillagerTrades/f_35628_ net/minecraft/world/entity/npc/VillagerTrades/WANDERING_TRADER_TRADES +FD: net/minecraft/world/entity/npc/VillagerTrades$DyedArmorForEmeralds/f_35634_ net/minecraft/world/entity/npc/VillagerTrades$DyedArmorForEmeralds/item +FD: net/minecraft/world/entity/npc/VillagerTrades$DyedArmorForEmeralds/f_35635_ net/minecraft/world/entity/npc/VillagerTrades$DyedArmorForEmeralds/value +FD: net/minecraft/world/entity/npc/VillagerTrades$DyedArmorForEmeralds/f_35636_ net/minecraft/world/entity/npc/VillagerTrades$DyedArmorForEmeralds/maxUses +FD: net/minecraft/world/entity/npc/VillagerTrades$DyedArmorForEmeralds/f_35637_ net/minecraft/world/entity/npc/VillagerTrades$DyedArmorForEmeralds/villagerXp +FD: net/minecraft/world/entity/npc/VillagerTrades$EmeraldForItems/f_35651_ net/minecraft/world/entity/npc/VillagerTrades$EmeraldForItems/item +FD: net/minecraft/world/entity/npc/VillagerTrades$EmeraldForItems/f_35652_ net/minecraft/world/entity/npc/VillagerTrades$EmeraldForItems/cost +FD: net/minecraft/world/entity/npc/VillagerTrades$EmeraldForItems/f_35653_ net/minecraft/world/entity/npc/VillagerTrades$EmeraldForItems/maxUses +FD: net/minecraft/world/entity/npc/VillagerTrades$EmeraldForItems/f_35654_ net/minecraft/world/entity/npc/VillagerTrades$EmeraldForItems/villagerXp +FD: net/minecraft/world/entity/npc/VillagerTrades$EmeraldForItems/f_35655_ net/minecraft/world/entity/npc/VillagerTrades$EmeraldForItems/priceMultiplier +FD: net/minecraft/world/entity/npc/VillagerTrades$EmeraldsForVillagerTypeItem/f_35664_ net/minecraft/world/entity/npc/VillagerTrades$EmeraldsForVillagerTypeItem/trades +FD: net/minecraft/world/entity/npc/VillagerTrades$EmeraldsForVillagerTypeItem/f_35665_ net/minecraft/world/entity/npc/VillagerTrades$EmeraldsForVillagerTypeItem/cost +FD: net/minecraft/world/entity/npc/VillagerTrades$EmeraldsForVillagerTypeItem/f_35666_ net/minecraft/world/entity/npc/VillagerTrades$EmeraldsForVillagerTypeItem/maxUses +FD: net/minecraft/world/entity/npc/VillagerTrades$EmeraldsForVillagerTypeItem/f_35667_ net/minecraft/world/entity/npc/VillagerTrades$EmeraldsForVillagerTypeItem/villagerXp +FD: net/minecraft/world/entity/npc/VillagerTrades$EnchantBookForEmeralds/f_35681_ net/minecraft/world/entity/npc/VillagerTrades$EnchantBookForEmeralds/villagerXp +FD: net/minecraft/world/entity/npc/VillagerTrades$EnchantedItemForEmeralds/f_35687_ net/minecraft/world/entity/npc/VillagerTrades$EnchantedItemForEmeralds/itemStack +FD: net/minecraft/world/entity/npc/VillagerTrades$EnchantedItemForEmeralds/f_35688_ net/minecraft/world/entity/npc/VillagerTrades$EnchantedItemForEmeralds/baseEmeraldCost +FD: net/minecraft/world/entity/npc/VillagerTrades$EnchantedItemForEmeralds/f_35689_ net/minecraft/world/entity/npc/VillagerTrades$EnchantedItemForEmeralds/maxUses +FD: net/minecraft/world/entity/npc/VillagerTrades$EnchantedItemForEmeralds/f_35690_ net/minecraft/world/entity/npc/VillagerTrades$EnchantedItemForEmeralds/villagerXp +FD: net/minecraft/world/entity/npc/VillagerTrades$EnchantedItemForEmeralds/f_35691_ net/minecraft/world/entity/npc/VillagerTrades$EnchantedItemForEmeralds/priceMultiplier +FD: net/minecraft/world/entity/npc/VillagerTrades$ItemsAndEmeraldsToItems/f_35708_ net/minecraft/world/entity/npc/VillagerTrades$ItemsAndEmeraldsToItems/fromItem +FD: net/minecraft/world/entity/npc/VillagerTrades$ItemsAndEmeraldsToItems/f_35709_ net/minecraft/world/entity/npc/VillagerTrades$ItemsAndEmeraldsToItems/fromCount +FD: net/minecraft/world/entity/npc/VillagerTrades$ItemsAndEmeraldsToItems/f_35710_ net/minecraft/world/entity/npc/VillagerTrades$ItemsAndEmeraldsToItems/emeraldCost +FD: net/minecraft/world/entity/npc/VillagerTrades$ItemsAndEmeraldsToItems/f_35711_ net/minecraft/world/entity/npc/VillagerTrades$ItemsAndEmeraldsToItems/toItem +FD: net/minecraft/world/entity/npc/VillagerTrades$ItemsAndEmeraldsToItems/f_35712_ net/minecraft/world/entity/npc/VillagerTrades$ItemsAndEmeraldsToItems/toCount +FD: net/minecraft/world/entity/npc/VillagerTrades$ItemsAndEmeraldsToItems/f_35713_ net/minecraft/world/entity/npc/VillagerTrades$ItemsAndEmeraldsToItems/maxUses +FD: net/minecraft/world/entity/npc/VillagerTrades$ItemsAndEmeraldsToItems/f_35714_ net/minecraft/world/entity/npc/VillagerTrades$ItemsAndEmeraldsToItems/villagerXp +FD: net/minecraft/world/entity/npc/VillagerTrades$ItemsAndEmeraldsToItems/f_35715_ net/minecraft/world/entity/npc/VillagerTrades$ItemsAndEmeraldsToItems/priceMultiplier +FD: net/minecraft/world/entity/npc/VillagerTrades$ItemsForEmeralds/f_35734_ net/minecraft/world/entity/npc/VillagerTrades$ItemsForEmeralds/itemStack +FD: net/minecraft/world/entity/npc/VillagerTrades$ItemsForEmeralds/f_35735_ net/minecraft/world/entity/npc/VillagerTrades$ItemsForEmeralds/emeraldCost +FD: net/minecraft/world/entity/npc/VillagerTrades$ItemsForEmeralds/f_35736_ net/minecraft/world/entity/npc/VillagerTrades$ItemsForEmeralds/numberOfItems +FD: net/minecraft/world/entity/npc/VillagerTrades$ItemsForEmeralds/f_35737_ net/minecraft/world/entity/npc/VillagerTrades$ItemsForEmeralds/maxUses +FD: net/minecraft/world/entity/npc/VillagerTrades$ItemsForEmeralds/f_35738_ net/minecraft/world/entity/npc/VillagerTrades$ItemsForEmeralds/villagerXp +FD: net/minecraft/world/entity/npc/VillagerTrades$ItemsForEmeralds/f_35739_ net/minecraft/world/entity/npc/VillagerTrades$ItemsForEmeralds/priceMultiplier +FD: net/minecraft/world/entity/npc/VillagerTrades$SuspiciousStewForEmerald/f_186308_ net/minecraft/world/entity/npc/VillagerTrades$SuspiciousStewForEmerald/effect +FD: net/minecraft/world/entity/npc/VillagerTrades$SuspiciousStewForEmerald/f_186309_ net/minecraft/world/entity/npc/VillagerTrades$SuspiciousStewForEmerald/duration +FD: net/minecraft/world/entity/npc/VillagerTrades$SuspiciousStewForEmerald/f_186310_ net/minecraft/world/entity/npc/VillagerTrades$SuspiciousStewForEmerald/xp +FD: net/minecraft/world/entity/npc/VillagerTrades$SuspiciousStewForEmerald/f_186311_ net/minecraft/world/entity/npc/VillagerTrades$SuspiciousStewForEmerald/priceMultiplier +FD: net/minecraft/world/entity/npc/VillagerTrades$TippedArrowForItemsAndEmeralds/f_35784_ net/minecraft/world/entity/npc/VillagerTrades$TippedArrowForItemsAndEmeralds/toItem +FD: net/minecraft/world/entity/npc/VillagerTrades$TippedArrowForItemsAndEmeralds/f_35785_ net/minecraft/world/entity/npc/VillagerTrades$TippedArrowForItemsAndEmeralds/toCount +FD: net/minecraft/world/entity/npc/VillagerTrades$TippedArrowForItemsAndEmeralds/f_35786_ net/minecraft/world/entity/npc/VillagerTrades$TippedArrowForItemsAndEmeralds/emeraldCost +FD: net/minecraft/world/entity/npc/VillagerTrades$TippedArrowForItemsAndEmeralds/f_35787_ net/minecraft/world/entity/npc/VillagerTrades$TippedArrowForItemsAndEmeralds/maxUses +FD: net/minecraft/world/entity/npc/VillagerTrades$TippedArrowForItemsAndEmeralds/f_35788_ net/minecraft/world/entity/npc/VillagerTrades$TippedArrowForItemsAndEmeralds/villagerXp +FD: net/minecraft/world/entity/npc/VillagerTrades$TippedArrowForItemsAndEmeralds/f_35789_ net/minecraft/world/entity/npc/VillagerTrades$TippedArrowForItemsAndEmeralds/fromItem +FD: net/minecraft/world/entity/npc/VillagerTrades$TippedArrowForItemsAndEmeralds/f_35790_ net/minecraft/world/entity/npc/VillagerTrades$TippedArrowForItemsAndEmeralds/fromCount +FD: net/minecraft/world/entity/npc/VillagerTrades$TippedArrowForItemsAndEmeralds/f_35791_ net/minecraft/world/entity/npc/VillagerTrades$TippedArrowForItemsAndEmeralds/priceMultiplier +FD: net/minecraft/world/entity/npc/VillagerTrades$TreasureMapForEmeralds/f_207765_ net/minecraft/world/entity/npc/VillagerTrades$TreasureMapForEmeralds/displayName +FD: net/minecraft/world/entity/npc/VillagerTrades$TreasureMapForEmeralds/f_35805_ net/minecraft/world/entity/npc/VillagerTrades$TreasureMapForEmeralds/emeraldCost +FD: net/minecraft/world/entity/npc/VillagerTrades$TreasureMapForEmeralds/f_35806_ net/minecraft/world/entity/npc/VillagerTrades$TreasureMapForEmeralds/destination +FD: net/minecraft/world/entity/npc/VillagerTrades$TreasureMapForEmeralds/f_35807_ net/minecraft/world/entity/npc/VillagerTrades$TreasureMapForEmeralds/destinationType +FD: net/minecraft/world/entity/npc/VillagerTrades$TreasureMapForEmeralds/f_35808_ net/minecraft/world/entity/npc/VillagerTrades$TreasureMapForEmeralds/maxUses +FD: net/minecraft/world/entity/npc/VillagerTrades$TreasureMapForEmeralds/f_35809_ net/minecraft/world/entity/npc/VillagerTrades$TreasureMapForEmeralds/villagerXp +FD: net/minecraft/world/entity/npc/VillagerType/f_35819_ net/minecraft/world/entity/npc/VillagerType/DESERT +FD: net/minecraft/world/entity/npc/VillagerType/f_35820_ net/minecraft/world/entity/npc/VillagerType/JUNGLE +FD: net/minecraft/world/entity/npc/VillagerType/f_35821_ net/minecraft/world/entity/npc/VillagerType/PLAINS +FD: net/minecraft/world/entity/npc/VillagerType/f_35822_ net/minecraft/world/entity/npc/VillagerType/SAVANNA +FD: net/minecraft/world/entity/npc/VillagerType/f_35823_ net/minecraft/world/entity/npc/VillagerType/SNOW +FD: net/minecraft/world/entity/npc/VillagerType/f_35824_ net/minecraft/world/entity/npc/VillagerType/SWAMP +FD: net/minecraft/world/entity/npc/VillagerType/f_35825_ net/minecraft/world/entity/npc/VillagerType/TAIGA +FD: net/minecraft/world/entity/npc/VillagerType/f_35826_ net/minecraft/world/entity/npc/VillagerType/name +FD: net/minecraft/world/entity/npc/VillagerType/f_35827_ net/minecraft/world/entity/npc/VillagerType/BY_BIOME +FD: net/minecraft/world/entity/npc/WanderingTrader/f_150044_ net/minecraft/world/entity/npc/WanderingTrader/NUMBER_OF_TRADE_OFFERS +FD: net/minecraft/world/entity/npc/WanderingTrader/f_35840_ net/minecraft/world/entity/npc/WanderingTrader/wanderTarget +FD: net/minecraft/world/entity/npc/WanderingTrader/f_35841_ net/minecraft/world/entity/npc/WanderingTrader/despawnDelay +FD: net/minecraft/world/entity/npc/WanderingTrader$WanderToPositionGoal/f_35893_ net/minecraft/world/entity/npc/WanderingTrader$WanderToPositionGoal/trader +FD: net/minecraft/world/entity/npc/WanderingTrader$WanderToPositionGoal/f_35894_ net/minecraft/world/entity/npc/WanderingTrader$WanderToPositionGoal/stopDistance +FD: net/minecraft/world/entity/npc/WanderingTrader$WanderToPositionGoal/f_35895_ net/minecraft/world/entity/npc/WanderingTrader$WanderToPositionGoal/speedModifier +FD: net/minecraft/world/entity/npc/WanderingTrader$WanderToPositionGoal/f_35896_ net/minecraft/world/entity/npc/WanderingTrader$WanderToPositionGoal/this$0 +FD: net/minecraft/world/entity/npc/WanderingTraderSpawner/f_150050_ net/minecraft/world/entity/npc/WanderingTraderSpawner/DEFAULT_SPAWN_DELAY +FD: net/minecraft/world/entity/npc/WanderingTraderSpawner/f_150051_ net/minecraft/world/entity/npc/WanderingTraderSpawner/DEFAULT_TICK_DELAY +FD: net/minecraft/world/entity/npc/WanderingTraderSpawner/f_150052_ net/minecraft/world/entity/npc/WanderingTraderSpawner/MIN_SPAWN_CHANCE +FD: net/minecraft/world/entity/npc/WanderingTraderSpawner/f_150053_ net/minecraft/world/entity/npc/WanderingTraderSpawner/MAX_SPAWN_CHANCE +FD: net/minecraft/world/entity/npc/WanderingTraderSpawner/f_150054_ net/minecraft/world/entity/npc/WanderingTraderSpawner/SPAWN_CHANCE_INCREASE +FD: net/minecraft/world/entity/npc/WanderingTraderSpawner/f_150055_ net/minecraft/world/entity/npc/WanderingTraderSpawner/SPAWN_ONE_IN_X_CHANCE +FD: net/minecraft/world/entity/npc/WanderingTraderSpawner/f_150056_ net/minecraft/world/entity/npc/WanderingTraderSpawner/NUMBER_OF_SPAWN_ATTEMPTS +FD: net/minecraft/world/entity/npc/WanderingTraderSpawner/f_35908_ net/minecraft/world/entity/npc/WanderingTraderSpawner/random +FD: net/minecraft/world/entity/npc/WanderingTraderSpawner/f_35909_ net/minecraft/world/entity/npc/WanderingTraderSpawner/serverLevelData +FD: net/minecraft/world/entity/npc/WanderingTraderSpawner/f_35910_ net/minecraft/world/entity/npc/WanderingTraderSpawner/tickDelay +FD: net/minecraft/world/entity/npc/WanderingTraderSpawner/f_35911_ net/minecraft/world/entity/npc/WanderingTraderSpawner/spawnDelay +FD: net/minecraft/world/entity/npc/WanderingTraderSpawner/f_35912_ net/minecraft/world/entity/npc/WanderingTraderSpawner/spawnChance +FD: net/minecraft/world/entity/player/Abilities/f_35934_ net/minecraft/world/entity/player/Abilities/invulnerable +FD: net/minecraft/world/entity/player/Abilities/f_35935_ net/minecraft/world/entity/player/Abilities/flying +FD: net/minecraft/world/entity/player/Abilities/f_35936_ net/minecraft/world/entity/player/Abilities/mayfly +FD: net/minecraft/world/entity/player/Abilities/f_35937_ net/minecraft/world/entity/player/Abilities/instabuild +FD: net/minecraft/world/entity/player/Abilities/f_35938_ net/minecraft/world/entity/player/Abilities/mayBuild +FD: net/minecraft/world/entity/player/Abilities/f_35939_ net/minecraft/world/entity/player/Abilities/flyingSpeed +FD: net/minecraft/world/entity/player/Abilities/f_35940_ net/minecraft/world/entity/player/Abilities/walkingSpeed +FD: net/minecraft/world/entity/player/ChatVisiblity/$VALUES net/minecraft/world/entity/player/ChatVisiblity/$VALUES +FD: net/minecraft/world/entity/player/ChatVisiblity/FULL net/minecraft/world/entity/player/ChatVisiblity/FULL +FD: net/minecraft/world/entity/player/ChatVisiblity/HIDDEN net/minecraft/world/entity/player/ChatVisiblity/HIDDEN +FD: net/minecraft/world/entity/player/ChatVisiblity/SYSTEM net/minecraft/world/entity/player/ChatVisiblity/SYSTEM +FD: net/minecraft/world/entity/player/ChatVisiblity/f_35955_ net/minecraft/world/entity/player/ChatVisiblity/BY_ID +FD: net/minecraft/world/entity/player/ChatVisiblity/f_35956_ net/minecraft/world/entity/player/ChatVisiblity/id +FD: net/minecraft/world/entity/player/ChatVisiblity/f_35957_ net/minecraft/world/entity/player/ChatVisiblity/key +FD: net/minecraft/world/entity/player/Inventory/f_150064_ net/minecraft/world/entity/player/Inventory/POP_TIME_DURATION +FD: net/minecraft/world/entity/player/Inventory/f_150065_ net/minecraft/world/entity/player/Inventory/INVENTORY_SIZE +FD: net/minecraft/world/entity/player/Inventory/f_150066_ net/minecraft/world/entity/player/Inventory/SLOT_OFFHAND +FD: net/minecraft/world/entity/player/Inventory/f_150067_ net/minecraft/world/entity/player/Inventory/NOT_FOUND_INDEX +FD: net/minecraft/world/entity/player/Inventory/f_150068_ net/minecraft/world/entity/player/Inventory/ALL_ARMOR_SLOTS +FD: net/minecraft/world/entity/player/Inventory/f_150069_ net/minecraft/world/entity/player/Inventory/HELMET_SLOT_ONLY +FD: net/minecraft/world/entity/player/Inventory/f_150070_ net/minecraft/world/entity/player/Inventory/SELECTION_SIZE +FD: net/minecraft/world/entity/player/Inventory/f_35974_ net/minecraft/world/entity/player/Inventory/items +FD: net/minecraft/world/entity/player/Inventory/f_35975_ net/minecraft/world/entity/player/Inventory/armor +FD: net/minecraft/world/entity/player/Inventory/f_35976_ net/minecraft/world/entity/player/Inventory/offhand +FD: net/minecraft/world/entity/player/Inventory/f_35977_ net/minecraft/world/entity/player/Inventory/selected +FD: net/minecraft/world/entity/player/Inventory/f_35978_ net/minecraft/world/entity/player/Inventory/player +FD: net/minecraft/world/entity/player/Inventory/f_35979_ net/minecraft/world/entity/player/Inventory/compartments +FD: net/minecraft/world/entity/player/Inventory/f_35981_ net/minecraft/world/entity/player/Inventory/timesChanged +FD: net/minecraft/world/entity/player/Player/f_150082_ net/minecraft/world/entity/player/Player/MAX_NAME_LENGTH +FD: net/minecraft/world/entity/player/Player/f_150083_ net/minecraft/world/entity/player/Player/MAX_HEALTH +FD: net/minecraft/world/entity/player/Player/f_150084_ net/minecraft/world/entity/player/Player/SLEEP_DURATION +FD: net/minecraft/world/entity/player/Player/f_150085_ net/minecraft/world/entity/player/Player/WAKE_UP_DURATION +FD: net/minecraft/world/entity/player/Player/f_150086_ net/minecraft/world/entity/player/Player/ENDER_SLOT_OFFSET +FD: net/minecraft/world/entity/player/Player/f_150087_ net/minecraft/world/entity/player/Player/CROUCH_BB_HEIGHT +FD: net/minecraft/world/entity/player/Player/f_150088_ net/minecraft/world/entity/player/Player/SWIMMING_BB_WIDTH +FD: net/minecraft/world/entity/player/Player/f_150089_ net/minecraft/world/entity/player/Player/SWIMMING_BB_HEIGHT +FD: net/minecraft/world/entity/player/Player/f_150090_ net/minecraft/world/entity/player/Player/DEFAULT_EYE_HEIGHT +FD: net/minecraft/world/entity/player/Player/f_150091_ net/minecraft/world/entity/player/Player/FLY_ACHIEVEMENT_SPEED +FD: net/minecraft/world/entity/player/Player/f_219722_ net/minecraft/world/entity/player/Player/LOGGER +FD: net/minecraft/world/entity/player/Player/f_238176_ net/minecraft/world/entity/player/Player/lastDeathLocation +FD: net/minecraft/world/entity/player/Player/f_263750_ net/minecraft/world/entity/player/Player/hurtDir +FD: net/minecraft/world/entity/player/Player/f_36074_ net/minecraft/world/entity/player/Player/POSES +FD: net/minecraft/world/entity/player/Player/f_36075_ net/minecraft/world/entity/player/Player/zCloak +FD: net/minecraft/world/entity/player/Player/f_36076_ net/minecraft/world/entity/player/Player/wasUnderwater +FD: net/minecraft/world/entity/player/Player/f_36077_ net/minecraft/world/entity/player/Player/abilities +FD: net/minecraft/world/entity/player/Player/f_36078_ net/minecraft/world/entity/player/Player/experienceLevel +FD: net/minecraft/world/entity/player/Player/f_36079_ net/minecraft/world/entity/player/Player/totalExperience +FD: net/minecraft/world/entity/player/Player/f_36080_ net/minecraft/world/entity/player/Player/experienceProgress +FD: net/minecraft/world/entity/player/Player/f_36081_ net/minecraft/world/entity/player/Player/enchantmentSeed +FD: net/minecraft/world/entity/player/Player/f_36082_ net/minecraft/world/entity/player/Player/defaultFlySpeed +FD: net/minecraft/world/entity/player/Player/f_36083_ net/minecraft/world/entity/player/Player/fishing +FD: net/minecraft/world/entity/player/Player/f_36084_ net/minecraft/world/entity/player/Player/gameProfile +FD: net/minecraft/world/entity/player/Player/f_36085_ net/minecraft/world/entity/player/Player/reducedDebugInfo +FD: net/minecraft/world/entity/player/Player/f_36086_ net/minecraft/world/entity/player/Player/lastItemInMainHand +FD: net/minecraft/world/entity/player/Player/f_36087_ net/minecraft/world/entity/player/Player/cooldowns +FD: net/minecraft/world/entity/player/Player/f_36088_ net/minecraft/world/entity/player/Player/STANDING_DIMENSIONS +FD: net/minecraft/world/entity/player/Player/f_36089_ net/minecraft/world/entity/player/Player/DATA_PLAYER_MODE_CUSTOMISATION +FD: net/minecraft/world/entity/player/Player/f_36090_ net/minecraft/world/entity/player/Player/DATA_PLAYER_MAIN_HAND +FD: net/minecraft/world/entity/player/Player/f_36091_ net/minecraft/world/entity/player/Player/DATA_SHOULDER_LEFT +FD: net/minecraft/world/entity/player/Player/f_36092_ net/minecraft/world/entity/player/Player/DATA_SHOULDER_RIGHT +FD: net/minecraft/world/entity/player/Player/f_36093_ net/minecraft/world/entity/player/Player/inventory +FD: net/minecraft/world/entity/player/Player/f_36094_ net/minecraft/world/entity/player/Player/enderChestInventory +FD: net/minecraft/world/entity/player/Player/f_36095_ net/minecraft/world/entity/player/Player/inventoryMenu +FD: net/minecraft/world/entity/player/Player/f_36096_ net/minecraft/world/entity/player/Player/containerMenu +FD: net/minecraft/world/entity/player/Player/f_36097_ net/minecraft/world/entity/player/Player/foodData +FD: net/minecraft/world/entity/player/Player/f_36098_ net/minecraft/world/entity/player/Player/jumpTriggerTime +FD: net/minecraft/world/entity/player/Player/f_36099_ net/minecraft/world/entity/player/Player/oBob +FD: net/minecraft/world/entity/player/Player/f_36100_ net/minecraft/world/entity/player/Player/bob +FD: net/minecraft/world/entity/player/Player/f_36101_ net/minecraft/world/entity/player/Player/takeXpDelay +FD: net/minecraft/world/entity/player/Player/f_36102_ net/minecraft/world/entity/player/Player/xCloakO +FD: net/minecraft/world/entity/player/Player/f_36103_ net/minecraft/world/entity/player/Player/yCloakO +FD: net/minecraft/world/entity/player/Player/f_36104_ net/minecraft/world/entity/player/Player/zCloakO +FD: net/minecraft/world/entity/player/Player/f_36105_ net/minecraft/world/entity/player/Player/xCloak +FD: net/minecraft/world/entity/player/Player/f_36106_ net/minecraft/world/entity/player/Player/yCloak +FD: net/minecraft/world/entity/player/Player/f_36107_ net/minecraft/world/entity/player/Player/DATA_PLAYER_ABSORPTION_ID +FD: net/minecraft/world/entity/player/Player/f_36108_ net/minecraft/world/entity/player/Player/DATA_SCORE_ID +FD: net/minecraft/world/entity/player/Player/f_36109_ net/minecraft/world/entity/player/Player/timeEntitySatOnShoulder +FD: net/minecraft/world/entity/player/Player/f_36110_ net/minecraft/world/entity/player/Player/sleepCounter +FD: net/minecraft/world/entity/player/Player/f_36111_ net/minecraft/world/entity/player/Player/lastLevelUpTime +FD: net/minecraft/world/entity/player/Player$1/f_36405_ net/minecraft/world/entity/player/Player$1/$SwitchMap$net$minecraft$world$entity$Pose +FD: net/minecraft/world/entity/player/Player$BedSleepingProblem/$VALUES net/minecraft/world/entity/player/Player$BedSleepingProblem/$VALUES +FD: net/minecraft/world/entity/player/Player$BedSleepingProblem/NOT_POSSIBLE_HERE net/minecraft/world/entity/player/Player$BedSleepingProblem/NOT_POSSIBLE_HERE +FD: net/minecraft/world/entity/player/Player$BedSleepingProblem/NOT_POSSIBLE_NOW net/minecraft/world/entity/player/Player$BedSleepingProblem/NOT_POSSIBLE_NOW +FD: net/minecraft/world/entity/player/Player$BedSleepingProblem/NOT_SAFE net/minecraft/world/entity/player/Player$BedSleepingProblem/NOT_SAFE +FD: net/minecraft/world/entity/player/Player$BedSleepingProblem/OBSTRUCTED net/minecraft/world/entity/player/Player$BedSleepingProblem/OBSTRUCTED +FD: net/minecraft/world/entity/player/Player$BedSleepingProblem/OTHER_PROBLEM net/minecraft/world/entity/player/Player$BedSleepingProblem/OTHER_PROBLEM +FD: net/minecraft/world/entity/player/Player$BedSleepingProblem/TOO_FAR_AWAY net/minecraft/world/entity/player/Player$BedSleepingProblem/TOO_FAR_AWAY +FD: net/minecraft/world/entity/player/Player$BedSleepingProblem/f_36413_ net/minecraft/world/entity/player/Player$BedSleepingProblem/message +FD: net/minecraft/world/entity/player/PlayerModelPart/$VALUES net/minecraft/world/entity/player/PlayerModelPart/$VALUES +FD: net/minecraft/world/entity/player/PlayerModelPart/CAPE net/minecraft/world/entity/player/PlayerModelPart/CAPE +FD: net/minecraft/world/entity/player/PlayerModelPart/HAT net/minecraft/world/entity/player/PlayerModelPart/HAT +FD: net/minecraft/world/entity/player/PlayerModelPart/JACKET net/minecraft/world/entity/player/PlayerModelPart/JACKET +FD: net/minecraft/world/entity/player/PlayerModelPart/LEFT_PANTS_LEG net/minecraft/world/entity/player/PlayerModelPart/LEFT_PANTS_LEG +FD: net/minecraft/world/entity/player/PlayerModelPart/LEFT_SLEEVE net/minecraft/world/entity/player/PlayerModelPart/LEFT_SLEEVE +FD: net/minecraft/world/entity/player/PlayerModelPart/RIGHT_PANTS_LEG net/minecraft/world/entity/player/PlayerModelPart/RIGHT_PANTS_LEG +FD: net/minecraft/world/entity/player/PlayerModelPart/RIGHT_SLEEVE net/minecraft/world/entity/player/PlayerModelPart/RIGHT_SLEEVE +FD: net/minecraft/world/entity/player/PlayerModelPart/f_36434_ net/minecraft/world/entity/player/PlayerModelPart/bit +FD: net/minecraft/world/entity/player/PlayerModelPart/f_36435_ net/minecraft/world/entity/player/PlayerModelPart/mask +FD: net/minecraft/world/entity/player/PlayerModelPart/f_36436_ net/minecraft/world/entity/player/PlayerModelPart/id +FD: net/minecraft/world/entity/player/PlayerModelPart/f_36437_ net/minecraft/world/entity/player/PlayerModelPart/name +FD: net/minecraft/world/entity/player/ProfileKeyPair/f_219761_ net/minecraft/world/entity/player/ProfileKeyPair/CODEC +FD: net/minecraft/world/entity/player/ProfileKeyPair/f_219762_ net/minecraft/world/entity/player/ProfileKeyPair/privateKey +FD: net/minecraft/world/entity/player/ProfileKeyPair/f_219763_ net/minecraft/world/entity/player/ProfileKeyPair/publicKey +FD: net/minecraft/world/entity/player/ProfileKeyPair/f_219764_ net/minecraft/world/entity/player/ProfileKeyPair/refreshedAfter +FD: net/minecraft/world/entity/player/ProfilePublicKey/f_219780_ net/minecraft/world/entity/player/ProfilePublicKey/TRUSTED_CODEC +FD: net/minecraft/world/entity/player/ProfilePublicKey/f_219781_ net/minecraft/world/entity/player/ProfilePublicKey/data +FD: net/minecraft/world/entity/player/ProfilePublicKey/f_243345_ net/minecraft/world/entity/player/ProfilePublicKey/INVALID_SIGNATURE +FD: net/minecraft/world/entity/player/ProfilePublicKey/f_243346_ net/minecraft/world/entity/player/ProfilePublicKey/EXPIRED_PROFILE_PUBLIC_KEY +FD: net/minecraft/world/entity/player/ProfilePublicKey/f_243350_ net/minecraft/world/entity/player/ProfilePublicKey/EXPIRY_GRACE_PERIOD +FD: net/minecraft/world/entity/player/ProfilePublicKey$Data/f_219798_ net/minecraft/world/entity/player/ProfilePublicKey$Data/CODEC +FD: net/minecraft/world/entity/player/ProfilePublicKey$Data/f_219799_ net/minecraft/world/entity/player/ProfilePublicKey$Data/expiresAt +FD: net/minecraft/world/entity/player/ProfilePublicKey$Data/f_219800_ net/minecraft/world/entity/player/ProfilePublicKey$Data/key +FD: net/minecraft/world/entity/player/ProfilePublicKey$Data/f_219801_ net/minecraft/world/entity/player/ProfilePublicKey$Data/keySignature +FD: net/minecraft/world/entity/player/ProfilePublicKey$Data/f_219802_ net/minecraft/world/entity/player/ProfilePublicKey$Data/MAX_KEY_SIGNATURE_SIZE +FD: net/minecraft/world/entity/player/StackedContents/f_150116_ net/minecraft/world/entity/player/StackedContents/EMPTY +FD: net/minecraft/world/entity/player/StackedContents/f_36451_ net/minecraft/world/entity/player/StackedContents/contents +FD: net/minecraft/world/entity/player/StackedContents$RecipePicker/f_36498_ net/minecraft/world/entity/player/StackedContents$RecipePicker/this$0 +FD: net/minecraft/world/entity/player/StackedContents$RecipePicker/f_36499_ net/minecraft/world/entity/player/StackedContents$RecipePicker/recipe +FD: net/minecraft/world/entity/player/StackedContents$RecipePicker/f_36500_ net/minecraft/world/entity/player/StackedContents$RecipePicker/ingredients +FD: net/minecraft/world/entity/player/StackedContents$RecipePicker/f_36501_ net/minecraft/world/entity/player/StackedContents$RecipePicker/ingredientCount +FD: net/minecraft/world/entity/player/StackedContents$RecipePicker/f_36502_ net/minecraft/world/entity/player/StackedContents$RecipePicker/items +FD: net/minecraft/world/entity/player/StackedContents$RecipePicker/f_36503_ net/minecraft/world/entity/player/StackedContents$RecipePicker/itemCount +FD: net/minecraft/world/entity/player/StackedContents$RecipePicker/f_36504_ net/minecraft/world/entity/player/StackedContents$RecipePicker/data +FD: net/minecraft/world/entity/player/StackedContents$RecipePicker/f_36505_ net/minecraft/world/entity/player/StackedContents$RecipePicker/path +FD: net/minecraft/world/entity/projectile/AbstractArrow/f_150117_ net/minecraft/world/entity/projectile/AbstractArrow/FLAG_CRIT +FD: net/minecraft/world/entity/projectile/AbstractArrow/f_150118_ net/minecraft/world/entity/projectile/AbstractArrow/FLAG_NOPHYSICS +FD: net/minecraft/world/entity/projectile/AbstractArrow/f_150119_ net/minecraft/world/entity/projectile/AbstractArrow/FLAG_CROSSBOW +FD: net/minecraft/world/entity/projectile/AbstractArrow/f_150120_ net/minecraft/world/entity/projectile/AbstractArrow/ARROW_BASE_DAMAGE +FD: net/minecraft/world/entity/projectile/AbstractArrow/f_36696_ net/minecraft/world/entity/projectile/AbstractArrow/lastState +FD: net/minecraft/world/entity/projectile/AbstractArrow/f_36697_ net/minecraft/world/entity/projectile/AbstractArrow/life +FD: net/minecraft/world/entity/projectile/AbstractArrow/f_36698_ net/minecraft/world/entity/projectile/AbstractArrow/baseDamage +FD: net/minecraft/world/entity/projectile/AbstractArrow/f_36699_ net/minecraft/world/entity/projectile/AbstractArrow/knockback +FD: net/minecraft/world/entity/projectile/AbstractArrow/f_36700_ net/minecraft/world/entity/projectile/AbstractArrow/soundEvent +FD: net/minecraft/world/entity/projectile/AbstractArrow/f_36701_ net/minecraft/world/entity/projectile/AbstractArrow/piercingIgnoreEntityIds +FD: net/minecraft/world/entity/projectile/AbstractArrow/f_36702_ net/minecraft/world/entity/projectile/AbstractArrow/piercedAndKilledEntities +FD: net/minecraft/world/entity/projectile/AbstractArrow/f_36703_ net/minecraft/world/entity/projectile/AbstractArrow/inGround +FD: net/minecraft/world/entity/projectile/AbstractArrow/f_36704_ net/minecraft/world/entity/projectile/AbstractArrow/inGroundTime +FD: net/minecraft/world/entity/projectile/AbstractArrow/f_36705_ net/minecraft/world/entity/projectile/AbstractArrow/pickup +FD: net/minecraft/world/entity/projectile/AbstractArrow/f_36706_ net/minecraft/world/entity/projectile/AbstractArrow/shakeTime +FD: net/minecraft/world/entity/projectile/AbstractArrow/f_36707_ net/minecraft/world/entity/projectile/AbstractArrow/ID_FLAGS +FD: net/minecraft/world/entity/projectile/AbstractArrow/f_36708_ net/minecraft/world/entity/projectile/AbstractArrow/PIERCE_LEVEL +FD: net/minecraft/world/entity/projectile/AbstractArrow$1/f_150124_ net/minecraft/world/entity/projectile/AbstractArrow$1/$SwitchMap$net$minecraft$world$entity$projectile$AbstractArrow$Pickup +FD: net/minecraft/world/entity/projectile/AbstractArrow$Pickup/$VALUES net/minecraft/world/entity/projectile/AbstractArrow$Pickup/$VALUES +FD: net/minecraft/world/entity/projectile/AbstractArrow$Pickup/ALLOWED net/minecraft/world/entity/projectile/AbstractArrow$Pickup/ALLOWED +FD: net/minecraft/world/entity/projectile/AbstractArrow$Pickup/CREATIVE_ONLY net/minecraft/world/entity/projectile/AbstractArrow$Pickup/CREATIVE_ONLY +FD: net/minecraft/world/entity/projectile/AbstractArrow$Pickup/DISALLOWED net/minecraft/world/entity/projectile/AbstractArrow$Pickup/DISALLOWED +FD: net/minecraft/world/entity/projectile/AbstractHurtingProjectile/f_36813_ net/minecraft/world/entity/projectile/AbstractHurtingProjectile/xPower +FD: net/minecraft/world/entity/projectile/AbstractHurtingProjectile/f_36814_ net/minecraft/world/entity/projectile/AbstractHurtingProjectile/yPower +FD: net/minecraft/world/entity/projectile/AbstractHurtingProjectile/f_36815_ net/minecraft/world/entity/projectile/AbstractHurtingProjectile/zPower +FD: net/minecraft/world/entity/projectile/Arrow/f_150129_ net/minecraft/world/entity/projectile/Arrow/NO_EFFECT_COLOR +FD: net/minecraft/world/entity/projectile/Arrow/f_150130_ net/minecraft/world/entity/projectile/Arrow/EVENT_POTION_PUFF +FD: net/minecraft/world/entity/projectile/Arrow/f_150131_ net/minecraft/world/entity/projectile/Arrow/EXPOSED_POTION_DECAY_TIME +FD: net/minecraft/world/entity/projectile/Arrow/f_36852_ net/minecraft/world/entity/projectile/Arrow/effects +FD: net/minecraft/world/entity/projectile/Arrow/f_36853_ net/minecraft/world/entity/projectile/Arrow/fixedColor +FD: net/minecraft/world/entity/projectile/Arrow/f_36854_ net/minecraft/world/entity/projectile/Arrow/ID_EFFECT_COLOR +FD: net/minecraft/world/entity/projectile/Arrow/f_36855_ net/minecraft/world/entity/projectile/Arrow/potion +FD: net/minecraft/world/entity/projectile/DragonFireball/f_150132_ net/minecraft/world/entity/projectile/DragonFireball/SPLASH_RANGE +FD: net/minecraft/world/entity/projectile/EvokerFangs/f_150133_ net/minecraft/world/entity/projectile/EvokerFangs/ATTACK_DURATION +FD: net/minecraft/world/entity/projectile/EvokerFangs/f_150134_ net/minecraft/world/entity/projectile/EvokerFangs/LIFE_OFFSET +FD: net/minecraft/world/entity/projectile/EvokerFangs/f_150135_ net/minecraft/world/entity/projectile/EvokerFangs/ATTACK_TRIGGER_TICKS +FD: net/minecraft/world/entity/projectile/EvokerFangs/f_36916_ net/minecraft/world/entity/projectile/EvokerFangs/warmupDelayTicks +FD: net/minecraft/world/entity/projectile/EvokerFangs/f_36917_ net/minecraft/world/entity/projectile/EvokerFangs/sentSpikeEvent +FD: net/minecraft/world/entity/projectile/EvokerFangs/f_36918_ net/minecraft/world/entity/projectile/EvokerFangs/lifeTicks +FD: net/minecraft/world/entity/projectile/EvokerFangs/f_36919_ net/minecraft/world/entity/projectile/EvokerFangs/clientSideAttackStarted +FD: net/minecraft/world/entity/projectile/EvokerFangs/f_36920_ net/minecraft/world/entity/projectile/EvokerFangs/owner +FD: net/minecraft/world/entity/projectile/EvokerFangs/f_36921_ net/minecraft/world/entity/projectile/EvokerFangs/ownerUUID +FD: net/minecraft/world/entity/projectile/EyeOfEnder/f_36949_ net/minecraft/world/entity/projectile/EyeOfEnder/DATA_ITEM_STACK +FD: net/minecraft/world/entity/projectile/EyeOfEnder/f_36950_ net/minecraft/world/entity/projectile/EyeOfEnder/tx +FD: net/minecraft/world/entity/projectile/EyeOfEnder/f_36951_ net/minecraft/world/entity/projectile/EyeOfEnder/ty +FD: net/minecraft/world/entity/projectile/EyeOfEnder/f_36952_ net/minecraft/world/entity/projectile/EyeOfEnder/tz +FD: net/minecraft/world/entity/projectile/EyeOfEnder/f_36953_ net/minecraft/world/entity/projectile/EyeOfEnder/life +FD: net/minecraft/world/entity/projectile/EyeOfEnder/f_36954_ net/minecraft/world/entity/projectile/EyeOfEnder/surviveAfterDeath +FD: net/minecraft/world/entity/projectile/Fireball/f_36987_ net/minecraft/world/entity/projectile/Fireball/DATA_ITEM_STACK +FD: net/minecraft/world/entity/projectile/FireworkRocketEntity/f_37019_ net/minecraft/world/entity/projectile/FireworkRocketEntity/DATA_ID_FIREWORKS_ITEM +FD: net/minecraft/world/entity/projectile/FireworkRocketEntity/f_37020_ net/minecraft/world/entity/projectile/FireworkRocketEntity/DATA_ATTACHED_TO_TARGET +FD: net/minecraft/world/entity/projectile/FireworkRocketEntity/f_37021_ net/minecraft/world/entity/projectile/FireworkRocketEntity/DATA_SHOT_AT_ANGLE +FD: net/minecraft/world/entity/projectile/FireworkRocketEntity/f_37022_ net/minecraft/world/entity/projectile/FireworkRocketEntity/life +FD: net/minecraft/world/entity/projectile/FireworkRocketEntity/f_37023_ net/minecraft/world/entity/projectile/FireworkRocketEntity/lifetime +FD: net/minecraft/world/entity/projectile/FireworkRocketEntity/f_37024_ net/minecraft/world/entity/projectile/FireworkRocketEntity/attachedToEntity +FD: net/minecraft/world/entity/projectile/FishingHook/f_150136_ net/minecraft/world/entity/projectile/FishingHook/MAX_OUT_OF_WATER_TIME +FD: net/minecraft/world/entity/projectile/FishingHook/f_201977_ net/minecraft/world/entity/projectile/FishingHook/LOGGER +FD: net/minecraft/world/entity/projectile/FishingHook/f_37089_ net/minecraft/world/entity/projectile/FishingHook/nibble +FD: net/minecraft/world/entity/projectile/FishingHook/f_37090_ net/minecraft/world/entity/projectile/FishingHook/timeUntilLured +FD: net/minecraft/world/entity/projectile/FishingHook/f_37091_ net/minecraft/world/entity/projectile/FishingHook/timeUntilHooked +FD: net/minecraft/world/entity/projectile/FishingHook/f_37092_ net/minecraft/world/entity/projectile/FishingHook/fishAngle +FD: net/minecraft/world/entity/projectile/FishingHook/f_37093_ net/minecraft/world/entity/projectile/FishingHook/openWater +FD: net/minecraft/world/entity/projectile/FishingHook/f_37094_ net/minecraft/world/entity/projectile/FishingHook/hookedIn +FD: net/minecraft/world/entity/projectile/FishingHook/f_37095_ net/minecraft/world/entity/projectile/FishingHook/currentState +FD: net/minecraft/world/entity/projectile/FishingHook/f_37096_ net/minecraft/world/entity/projectile/FishingHook/luck +FD: net/minecraft/world/entity/projectile/FishingHook/f_37097_ net/minecraft/world/entity/projectile/FishingHook/lureSpeed +FD: net/minecraft/world/entity/projectile/FishingHook/f_37098_ net/minecraft/world/entity/projectile/FishingHook/syncronizedRandom +FD: net/minecraft/world/entity/projectile/FishingHook/f_37099_ net/minecraft/world/entity/projectile/FishingHook/biting +FD: net/minecraft/world/entity/projectile/FishingHook/f_37100_ net/minecraft/world/entity/projectile/FishingHook/outOfWaterTime +FD: net/minecraft/world/entity/projectile/FishingHook/f_37101_ net/minecraft/world/entity/projectile/FishingHook/DATA_HOOKED_ENTITY +FD: net/minecraft/world/entity/projectile/FishingHook/f_37102_ net/minecraft/world/entity/projectile/FishingHook/DATA_BITING +FD: net/minecraft/world/entity/projectile/FishingHook/f_37103_ net/minecraft/world/entity/projectile/FishingHook/life +FD: net/minecraft/world/entity/projectile/FishingHook$1/f_37173_ net/minecraft/world/entity/projectile/FishingHook$1/$SwitchMap$net$minecraft$world$entity$projectile$FishingHook$OpenWaterType +FD: net/minecraft/world/entity/projectile/FishingHook$FishHookState/$VALUES net/minecraft/world/entity/projectile/FishingHook$FishHookState/$VALUES +FD: net/minecraft/world/entity/projectile/FishingHook$FishHookState/BOBBING net/minecraft/world/entity/projectile/FishingHook$FishHookState/BOBBING +FD: net/minecraft/world/entity/projectile/FishingHook$FishHookState/FLYING net/minecraft/world/entity/projectile/FishingHook$FishHookState/FLYING +FD: net/minecraft/world/entity/projectile/FishingHook$FishHookState/HOOKED_IN_ENTITY net/minecraft/world/entity/projectile/FishingHook$FishHookState/HOOKED_IN_ENTITY +FD: net/minecraft/world/entity/projectile/FishingHook$OpenWaterType/$VALUES net/minecraft/world/entity/projectile/FishingHook$OpenWaterType/$VALUES +FD: net/minecraft/world/entity/projectile/FishingHook$OpenWaterType/ABOVE_WATER net/minecraft/world/entity/projectile/FishingHook$OpenWaterType/ABOVE_WATER +FD: net/minecraft/world/entity/projectile/FishingHook$OpenWaterType/INSIDE_WATER net/minecraft/world/entity/projectile/FishingHook$OpenWaterType/INSIDE_WATER +FD: net/minecraft/world/entity/projectile/FishingHook$OpenWaterType/INVALID net/minecraft/world/entity/projectile/FishingHook$OpenWaterType/INVALID +FD: net/minecraft/world/entity/projectile/LargeFireball/f_37197_ net/minecraft/world/entity/projectile/LargeFireball/explosionPower +FD: net/minecraft/world/entity/projectile/Projectile/f_150163_ net/minecraft/world/entity/projectile/Projectile/cachedOwner +FD: net/minecraft/world/entity/projectile/Projectile/f_150164_ net/minecraft/world/entity/projectile/Projectile/hasBeenShot +FD: net/minecraft/world/entity/projectile/Projectile/f_37244_ net/minecraft/world/entity/projectile/Projectile/ownerUUID +FD: net/minecraft/world/entity/projectile/Projectile/f_37246_ net/minecraft/world/entity/projectile/Projectile/leftOwner +FD: net/minecraft/world/entity/projectile/ShulkerBullet/f_150183_ net/minecraft/world/entity/projectile/ShulkerBullet/SPEED +FD: net/minecraft/world/entity/projectile/ShulkerBullet/f_37311_ net/minecraft/world/entity/projectile/ShulkerBullet/targetId +FD: net/minecraft/world/entity/projectile/ShulkerBullet/f_37312_ net/minecraft/world/entity/projectile/ShulkerBullet/finalTarget +FD: net/minecraft/world/entity/projectile/ShulkerBullet/f_37313_ net/minecraft/world/entity/projectile/ShulkerBullet/currentMoveDirection +FD: net/minecraft/world/entity/projectile/ShulkerBullet/f_37314_ net/minecraft/world/entity/projectile/ShulkerBullet/flightSteps +FD: net/minecraft/world/entity/projectile/ShulkerBullet/f_37315_ net/minecraft/world/entity/projectile/ShulkerBullet/targetDeltaX +FD: net/minecraft/world/entity/projectile/ShulkerBullet/f_37316_ net/minecraft/world/entity/projectile/ShulkerBullet/targetDeltaY +FD: net/minecraft/world/entity/projectile/ShulkerBullet/f_37317_ net/minecraft/world/entity/projectile/ShulkerBullet/targetDeltaZ +FD: net/minecraft/world/entity/projectile/SpectralArrow/f_37409_ net/minecraft/world/entity/projectile/SpectralArrow/duration +FD: net/minecraft/world/entity/projectile/ThrowableItemProjectile/f_37429_ net/minecraft/world/entity/projectile/ThrowableItemProjectile/DATA_ITEM_STACK +FD: net/minecraft/world/entity/projectile/ThrownPotion/f_150190_ net/minecraft/world/entity/projectile/ThrownPotion/SPLASH_RANGE +FD: net/minecraft/world/entity/projectile/ThrownPotion/f_150191_ net/minecraft/world/entity/projectile/ThrownPotion/SPLASH_RANGE_SQ +FD: net/minecraft/world/entity/projectile/ThrownPotion/f_252520_ net/minecraft/world/entity/projectile/ThrownPotion/WATER_SENSITIVE_OR_ON_FIRE +FD: net/minecraft/world/entity/projectile/ThrownTrident/f_37554_ net/minecraft/world/entity/projectile/ThrownTrident/ID_FOIL +FD: net/minecraft/world/entity/projectile/ThrownTrident/f_37555_ net/minecraft/world/entity/projectile/ThrownTrident/tridentItem +FD: net/minecraft/world/entity/projectile/ThrownTrident/f_37556_ net/minecraft/world/entity/projectile/ThrownTrident/dealtDamage +FD: net/minecraft/world/entity/projectile/ThrownTrident/f_37557_ net/minecraft/world/entity/projectile/ThrownTrident/clientSideReturnTridentTickCount +FD: net/minecraft/world/entity/projectile/ThrownTrident/f_37558_ net/minecraft/world/entity/projectile/ThrownTrident/ID_LOYALTY +FD: net/minecraft/world/entity/projectile/WitherSkull/f_37595_ net/minecraft/world/entity/projectile/WitherSkull/DATA_DANGEROUS +FD: net/minecraft/world/entity/raid/Raid/f_150197_ net/minecraft/world/entity/raid/Raid/VILLAGE_RADIUS_BUFFER +FD: net/minecraft/world/entity/raid/Raid/f_150198_ net/minecraft/world/entity/raid/Raid/MAX_NO_ACTION_TIME +FD: net/minecraft/world/entity/raid/Raid/f_150199_ net/minecraft/world/entity/raid/Raid/MAX_CELEBRATION_TICKS +FD: net/minecraft/world/entity/raid/Raid/f_150200_ net/minecraft/world/entity/raid/Raid/TICKS_PER_DAY +FD: net/minecraft/world/entity/raid/Raid/f_150201_ net/minecraft/world/entity/raid/Raid/DEFAULT_MAX_BAD_OMEN_LEVEL +FD: net/minecraft/world/entity/raid/Raid/f_150202_ net/minecraft/world/entity/raid/Raid/VALID_RAID_RADIUS_SQR +FD: net/minecraft/world/entity/raid/Raid/f_150203_ net/minecraft/world/entity/raid/Raid/RAID_REMOVAL_THRESHOLD_SQR +FD: net/minecraft/world/entity/raid/Raid/f_150204_ net/minecraft/world/entity/raid/Raid/SECTION_RADIUS_FOR_FINDING_NEW_VILLAGE_CENTER +FD: net/minecraft/world/entity/raid/Raid/f_150205_ net/minecraft/world/entity/raid/Raid/ATTEMPT_RAID_FARTHEST +FD: net/minecraft/world/entity/raid/Raid/f_150206_ net/minecraft/world/entity/raid/Raid/ATTEMPT_RAID_CLOSE +FD: net/minecraft/world/entity/raid/Raid/f_150207_ net/minecraft/world/entity/raid/Raid/ATTEMPT_RAID_INSIDE +FD: net/minecraft/world/entity/raid/Raid/f_150208_ net/minecraft/world/entity/raid/Raid/VILLAGE_SEARCH_RADIUS +FD: net/minecraft/world/entity/raid/Raid/f_150209_ net/minecraft/world/entity/raid/Raid/RAID_TIMEOUT_TICKS +FD: net/minecraft/world/entity/raid/Raid/f_150210_ net/minecraft/world/entity/raid/Raid/NUM_SPAWN_ATTEMPTS +FD: net/minecraft/world/entity/raid/Raid/f_150211_ net/minecraft/world/entity/raid/Raid/OMINOUS_BANNER_PATTERN_NAME +FD: net/minecraft/world/entity/raid/Raid/f_150212_ net/minecraft/world/entity/raid/Raid/RAIDERS_REMAINING +FD: net/minecraft/world/entity/raid/Raid/f_150213_ net/minecraft/world/entity/raid/Raid/POST_RAID_TICK_LIMIT +FD: net/minecraft/world/entity/raid/Raid/f_150214_ net/minecraft/world/entity/raid/Raid/DEFAULT_PRE_RAID_TICKS +FD: net/minecraft/world/entity/raid/Raid/f_150215_ net/minecraft/world/entity/raid/Raid/OUTSIDE_RAID_BOUNDS_TIMEOUT +FD: net/minecraft/world/entity/raid/Raid/f_150216_ net/minecraft/world/entity/raid/Raid/LOW_MOB_THRESHOLD +FD: net/minecraft/world/entity/raid/Raid/f_150217_ net/minecraft/world/entity/raid/Raid/HERO_OF_THE_VILLAGE_DURATION +FD: net/minecraft/world/entity/raid/Raid/f_37665_ net/minecraft/world/entity/raid/Raid/RAID_NAME_COMPONENT +FD: net/minecraft/world/entity/raid/Raid/f_37666_ net/minecraft/world/entity/raid/Raid/VICTORY +FD: net/minecraft/world/entity/raid/Raid/f_37667_ net/minecraft/world/entity/raid/Raid/DEFEAT +FD: net/minecraft/world/entity/raid/Raid/f_37668_ net/minecraft/world/entity/raid/Raid/RAID_BAR_VICTORY_COMPONENT +FD: net/minecraft/world/entity/raid/Raid/f_37669_ net/minecraft/world/entity/raid/Raid/RAID_BAR_DEFEAT_COMPONENT +FD: net/minecraft/world/entity/raid/Raid/f_37670_ net/minecraft/world/entity/raid/Raid/groupToLeaderMap +FD: net/minecraft/world/entity/raid/Raid/f_37671_ net/minecraft/world/entity/raid/Raid/groupRaiderMap +FD: net/minecraft/world/entity/raid/Raid/f_37672_ net/minecraft/world/entity/raid/Raid/heroesOfTheVillage +FD: net/minecraft/world/entity/raid/Raid/f_37673_ net/minecraft/world/entity/raid/Raid/ticksActive +FD: net/minecraft/world/entity/raid/Raid/f_37674_ net/minecraft/world/entity/raid/Raid/center +FD: net/minecraft/world/entity/raid/Raid/f_37675_ net/minecraft/world/entity/raid/Raid/level +FD: net/minecraft/world/entity/raid/Raid/f_37676_ net/minecraft/world/entity/raid/Raid/started +FD: net/minecraft/world/entity/raid/Raid/f_37677_ net/minecraft/world/entity/raid/Raid/id +FD: net/minecraft/world/entity/raid/Raid/f_37678_ net/minecraft/world/entity/raid/Raid/totalHealth +FD: net/minecraft/world/entity/raid/Raid/f_37679_ net/minecraft/world/entity/raid/Raid/badOmenLevel +FD: net/minecraft/world/entity/raid/Raid/f_37680_ net/minecraft/world/entity/raid/Raid/active +FD: net/minecraft/world/entity/raid/Raid/f_37681_ net/minecraft/world/entity/raid/Raid/groupsSpawned +FD: net/minecraft/world/entity/raid/Raid/f_37682_ net/minecraft/world/entity/raid/Raid/raidEvent +FD: net/minecraft/world/entity/raid/Raid/f_37683_ net/minecraft/world/entity/raid/Raid/postRaidTicks +FD: net/minecraft/world/entity/raid/Raid/f_37684_ net/minecraft/world/entity/raid/Raid/raidCooldownTicks +FD: net/minecraft/world/entity/raid/Raid/f_37685_ net/minecraft/world/entity/raid/Raid/random +FD: net/minecraft/world/entity/raid/Raid/f_37686_ net/minecraft/world/entity/raid/Raid/numGroups +FD: net/minecraft/world/entity/raid/Raid/f_37687_ net/minecraft/world/entity/raid/Raid/status +FD: net/minecraft/world/entity/raid/Raid/f_37688_ net/minecraft/world/entity/raid/Raid/celebrationTicks +FD: net/minecraft/world/entity/raid/Raid/f_37689_ net/minecraft/world/entity/raid/Raid/waveSpawnPos +FD: net/minecraft/world/entity/raid/Raid$1/f_37787_ net/minecraft/world/entity/raid/Raid$1/$SwitchMap$net$minecraft$world$entity$raid$Raid$RaiderType +FD: net/minecraft/world/entity/raid/Raid$1/f_37788_ net/minecraft/world/entity/raid/Raid$1/$SwitchMap$net$minecraft$world$Difficulty +FD: net/minecraft/world/entity/raid/Raid$RaidStatus/$VALUES net/minecraft/world/entity/raid/Raid$RaidStatus/$VALUES +FD: net/minecraft/world/entity/raid/Raid$RaidStatus/LOSS net/minecraft/world/entity/raid/Raid$RaidStatus/LOSS +FD: net/minecraft/world/entity/raid/Raid$RaidStatus/ONGOING net/minecraft/world/entity/raid/Raid$RaidStatus/ONGOING +FD: net/minecraft/world/entity/raid/Raid$RaidStatus/STOPPED net/minecraft/world/entity/raid/Raid$RaidStatus/STOPPED +FD: net/minecraft/world/entity/raid/Raid$RaidStatus/VICTORY net/minecraft/world/entity/raid/Raid$RaidStatus/VICTORY +FD: net/minecraft/world/entity/raid/Raid$RaidStatus/f_37794_ net/minecraft/world/entity/raid/Raid$RaidStatus/VALUES +FD: net/minecraft/world/entity/raid/Raid$RaiderType/$VALUES net/minecraft/world/entity/raid/Raid$RaiderType/$VALUES +FD: net/minecraft/world/entity/raid/Raid$RaiderType/EVOKER net/minecraft/world/entity/raid/Raid$RaiderType/EVOKER +FD: net/minecraft/world/entity/raid/Raid$RaiderType/PILLAGER net/minecraft/world/entity/raid/Raid$RaiderType/PILLAGER +FD: net/minecraft/world/entity/raid/Raid$RaiderType/RAVAGER net/minecraft/world/entity/raid/Raid$RaiderType/RAVAGER +FD: net/minecraft/world/entity/raid/Raid$RaiderType/VINDICATOR net/minecraft/world/entity/raid/Raid$RaiderType/VINDICATOR +FD: net/minecraft/world/entity/raid/Raid$RaiderType/WITCH net/minecraft/world/entity/raid/Raid$RaiderType/WITCH +FD: net/minecraft/world/entity/raid/Raid$RaiderType/f_37813_ net/minecraft/world/entity/raid/Raid$RaiderType/VALUES +FD: net/minecraft/world/entity/raid/Raid$RaiderType/f_37814_ net/minecraft/world/entity/raid/Raid$RaiderType/entityType +FD: net/minecraft/world/entity/raid/Raid$RaiderType/f_37815_ net/minecraft/world/entity/raid/Raid$RaiderType/spawnsPerWaveBeforeBonus +FD: net/minecraft/world/entity/raid/Raider/f_37831_ net/minecraft/world/entity/raid/Raider/ALLOWED_ITEMS +FD: net/minecraft/world/entity/raid/Raider/f_37832_ net/minecraft/world/entity/raid/Raider/wave +FD: net/minecraft/world/entity/raid/Raider/f_37833_ net/minecraft/world/entity/raid/Raider/canJoinRaid +FD: net/minecraft/world/entity/raid/Raider/f_37834_ net/minecraft/world/entity/raid/Raider/ticksOutsideRaid +FD: net/minecraft/world/entity/raid/Raider/f_37835_ net/minecraft/world/entity/raid/Raider/IS_CELEBRATING +FD: net/minecraft/world/entity/raid/Raider/f_37836_ net/minecraft/world/entity/raid/Raider/raid +FD: net/minecraft/world/entity/raid/Raider$HoldGroundAttackGoal/f_37901_ net/minecraft/world/entity/raid/Raider$HoldGroundAttackGoal/shoutTargeting +FD: net/minecraft/world/entity/raid/Raider$HoldGroundAttackGoal/f_37902_ net/minecraft/world/entity/raid/Raider$HoldGroundAttackGoal/this$0 +FD: net/minecraft/world/entity/raid/Raider$HoldGroundAttackGoal/f_37903_ net/minecraft/world/entity/raid/Raider$HoldGroundAttackGoal/mob +FD: net/minecraft/world/entity/raid/Raider$HoldGroundAttackGoal/f_37904_ net/minecraft/world/entity/raid/Raider$HoldGroundAttackGoal/hostileRadiusSqr +FD: net/minecraft/world/entity/raid/Raider$ObtainRaidLeaderBannerGoal/f_37913_ net/minecraft/world/entity/raid/Raider$ObtainRaidLeaderBannerGoal/this$0 +FD: net/minecraft/world/entity/raid/Raider$ObtainRaidLeaderBannerGoal/f_37914_ net/minecraft/world/entity/raid/Raider$ObtainRaidLeaderBannerGoal/mob +FD: net/minecraft/world/entity/raid/Raider$RaiderCelebration/f_37920_ net/minecraft/world/entity/raid/Raider$RaiderCelebration/this$0 +FD: net/minecraft/world/entity/raid/Raider$RaiderCelebration/f_37921_ net/minecraft/world/entity/raid/Raider$RaiderCelebration/mob +FD: net/minecraft/world/entity/raid/Raider$RaiderMoveThroughVillageGoal/f_37929_ net/minecraft/world/entity/raid/Raider$RaiderMoveThroughVillageGoal/raider +FD: net/minecraft/world/entity/raid/Raider$RaiderMoveThroughVillageGoal/f_37930_ net/minecraft/world/entity/raid/Raider$RaiderMoveThroughVillageGoal/speedModifier +FD: net/minecraft/world/entity/raid/Raider$RaiderMoveThroughVillageGoal/f_37931_ net/minecraft/world/entity/raid/Raider$RaiderMoveThroughVillageGoal/poiPos +FD: net/minecraft/world/entity/raid/Raider$RaiderMoveThroughVillageGoal/f_37932_ net/minecraft/world/entity/raid/Raider$RaiderMoveThroughVillageGoal/visited +FD: net/minecraft/world/entity/raid/Raider$RaiderMoveThroughVillageGoal/f_37933_ net/minecraft/world/entity/raid/Raider$RaiderMoveThroughVillageGoal/distanceToPoi +FD: net/minecraft/world/entity/raid/Raider$RaiderMoveThroughVillageGoal/f_37934_ net/minecraft/world/entity/raid/Raider$RaiderMoveThroughVillageGoal/stuck +FD: net/minecraft/world/entity/raid/Raids/f_150234_ net/minecraft/world/entity/raid/Raids/RAID_FILE_ID +FD: net/minecraft/world/entity/raid/Raids/f_37951_ net/minecraft/world/entity/raid/Raids/raidMap +FD: net/minecraft/world/entity/raid/Raids/f_37952_ net/minecraft/world/entity/raid/Raids/level +FD: net/minecraft/world/entity/raid/Raids/f_37953_ net/minecraft/world/entity/raid/Raids/nextAvailableID +FD: net/minecraft/world/entity/raid/Raids/f_37954_ net/minecraft/world/entity/raid/Raids/tick +FD: net/minecraft/world/entity/schedule/Activity/f_150238_ net/minecraft/world/entity/schedule/Activity/PLAY_DEAD +FD: net/minecraft/world/entity/schedule/Activity/f_150239_ net/minecraft/world/entity/schedule/Activity/LONG_JUMP +FD: net/minecraft/world/entity/schedule/Activity/f_150240_ net/minecraft/world/entity/schedule/Activity/RAM +FD: net/minecraft/world/entity/schedule/Activity/f_219846_ net/minecraft/world/entity/schedule/Activity/TONGUE +FD: net/minecraft/world/entity/schedule/Activity/f_219847_ net/minecraft/world/entity/schedule/Activity/SWIM +FD: net/minecraft/world/entity/schedule/Activity/f_219848_ net/minecraft/world/entity/schedule/Activity/LAY_SPAWN +FD: net/minecraft/world/entity/schedule/Activity/f_219849_ net/minecraft/world/entity/schedule/Activity/SNIFF +FD: net/minecraft/world/entity/schedule/Activity/f_219850_ net/minecraft/world/entity/schedule/Activity/INVESTIGATE +FD: net/minecraft/world/entity/schedule/Activity/f_219851_ net/minecraft/world/entity/schedule/Activity/ROAR +FD: net/minecraft/world/entity/schedule/Activity/f_219852_ net/minecraft/world/entity/schedule/Activity/EMERGE +FD: net/minecraft/world/entity/schedule/Activity/f_219853_ net/minecraft/world/entity/schedule/Activity/DIG +FD: net/minecraft/world/entity/schedule/Activity/f_37978_ net/minecraft/world/entity/schedule/Activity/CORE +FD: net/minecraft/world/entity/schedule/Activity/f_37979_ net/minecraft/world/entity/schedule/Activity/IDLE +FD: net/minecraft/world/entity/schedule/Activity/f_37980_ net/minecraft/world/entity/schedule/Activity/WORK +FD: net/minecraft/world/entity/schedule/Activity/f_37981_ net/minecraft/world/entity/schedule/Activity/PLAY +FD: net/minecraft/world/entity/schedule/Activity/f_37982_ net/minecraft/world/entity/schedule/Activity/REST +FD: net/minecraft/world/entity/schedule/Activity/f_37983_ net/minecraft/world/entity/schedule/Activity/MEET +FD: net/minecraft/world/entity/schedule/Activity/f_37984_ net/minecraft/world/entity/schedule/Activity/PANIC +FD: net/minecraft/world/entity/schedule/Activity/f_37985_ net/minecraft/world/entity/schedule/Activity/RAID +FD: net/minecraft/world/entity/schedule/Activity/f_37986_ net/minecraft/world/entity/schedule/Activity/PRE_RAID +FD: net/minecraft/world/entity/schedule/Activity/f_37987_ net/minecraft/world/entity/schedule/Activity/HIDE +FD: net/minecraft/world/entity/schedule/Activity/f_37988_ net/minecraft/world/entity/schedule/Activity/FIGHT +FD: net/minecraft/world/entity/schedule/Activity/f_37989_ net/minecraft/world/entity/schedule/Activity/CELEBRATE +FD: net/minecraft/world/entity/schedule/Activity/f_37990_ net/minecraft/world/entity/schedule/Activity/ADMIRE_ITEM +FD: net/minecraft/world/entity/schedule/Activity/f_37991_ net/minecraft/world/entity/schedule/Activity/AVOID +FD: net/minecraft/world/entity/schedule/Activity/f_37992_ net/minecraft/world/entity/schedule/Activity/RIDE +FD: net/minecraft/world/entity/schedule/Activity/f_37993_ net/minecraft/world/entity/schedule/Activity/name +FD: net/minecraft/world/entity/schedule/Activity/f_37994_ net/minecraft/world/entity/schedule/Activity/hashCode +FD: net/minecraft/world/entity/schedule/Keyframe/f_38005_ net/minecraft/world/entity/schedule/Keyframe/timeStamp +FD: net/minecraft/world/entity/schedule/Keyframe/f_38006_ net/minecraft/world/entity/schedule/Keyframe/value +FD: net/minecraft/world/entity/schedule/Schedule/f_150241_ net/minecraft/world/entity/schedule/Schedule/WORK_START_TIME +FD: net/minecraft/world/entity/schedule/Schedule/f_150242_ net/minecraft/world/entity/schedule/Schedule/TOTAL_WORK_TIME +FD: net/minecraft/world/entity/schedule/Schedule/f_38012_ net/minecraft/world/entity/schedule/Schedule/EMPTY +FD: net/minecraft/world/entity/schedule/Schedule/f_38013_ net/minecraft/world/entity/schedule/Schedule/SIMPLE +FD: net/minecraft/world/entity/schedule/Schedule/f_38014_ net/minecraft/world/entity/schedule/Schedule/VILLAGER_BABY +FD: net/minecraft/world/entity/schedule/Schedule/f_38015_ net/minecraft/world/entity/schedule/Schedule/VILLAGER_DEFAULT +FD: net/minecraft/world/entity/schedule/Schedule/f_38016_ net/minecraft/world/entity/schedule/Schedule/timelines +FD: net/minecraft/world/entity/schedule/ScheduleBuilder/f_38035_ net/minecraft/world/entity/schedule/ScheduleBuilder/schedule +FD: net/minecraft/world/entity/schedule/ScheduleBuilder/f_38036_ net/minecraft/world/entity/schedule/ScheduleBuilder/transitions +FD: net/minecraft/world/entity/schedule/ScheduleBuilder$ActivityTransition/f_38048_ net/minecraft/world/entity/schedule/ScheduleBuilder$ActivityTransition/time +FD: net/minecraft/world/entity/schedule/ScheduleBuilder$ActivityTransition/f_38049_ net/minecraft/world/entity/schedule/ScheduleBuilder$ActivityTransition/activity +FD: net/minecraft/world/entity/schedule/Timeline/f_38055_ net/minecraft/world/entity/schedule/Timeline/keyframes +FD: net/minecraft/world/entity/schedule/Timeline/f_38056_ net/minecraft/world/entity/schedule/Timeline/previousIndex +FD: net/minecraft/world/entity/vehicle/AbstractMinecart/f_150249_ net/minecraft/world/entity/vehicle/AbstractMinecart/WATER_SLOWDOWN_FACTOR +FD: net/minecraft/world/entity/vehicle/AbstractMinecart/f_287786_ net/minecraft/world/entity/vehicle/AbstractMinecart/onRails +FD: net/minecraft/world/entity/vehicle/AbstractMinecart/f_38067_ net/minecraft/world/entity/vehicle/AbstractMinecart/POSE_DISMOUNT_HEIGHTS +FD: net/minecraft/world/entity/vehicle/AbstractMinecart/f_38068_ net/minecraft/world/entity/vehicle/AbstractMinecart/flipped +FD: net/minecraft/world/entity/vehicle/AbstractMinecart/f_38069_ net/minecraft/world/entity/vehicle/AbstractMinecart/EXITS +FD: net/minecraft/world/entity/vehicle/AbstractMinecart/f_38070_ net/minecraft/world/entity/vehicle/AbstractMinecart/lSteps +FD: net/minecraft/world/entity/vehicle/AbstractMinecart/f_38071_ net/minecraft/world/entity/vehicle/AbstractMinecart/lx +FD: net/minecraft/world/entity/vehicle/AbstractMinecart/f_38072_ net/minecraft/world/entity/vehicle/AbstractMinecart/ly +FD: net/minecraft/world/entity/vehicle/AbstractMinecart/f_38073_ net/minecraft/world/entity/vehicle/AbstractMinecart/lz +FD: net/minecraft/world/entity/vehicle/AbstractMinecart/f_38074_ net/minecraft/world/entity/vehicle/AbstractMinecart/lyr +FD: net/minecraft/world/entity/vehicle/AbstractMinecart/f_38075_ net/minecraft/world/entity/vehicle/AbstractMinecart/lxr +FD: net/minecraft/world/entity/vehicle/AbstractMinecart/f_38076_ net/minecraft/world/entity/vehicle/AbstractMinecart/lxd +FD: net/minecraft/world/entity/vehicle/AbstractMinecart/f_38077_ net/minecraft/world/entity/vehicle/AbstractMinecart/lyd +FD: net/minecraft/world/entity/vehicle/AbstractMinecart/f_38078_ net/minecraft/world/entity/vehicle/AbstractMinecart/lzd +FD: net/minecraft/world/entity/vehicle/AbstractMinecart/f_38079_ net/minecraft/world/entity/vehicle/AbstractMinecart/DATA_ID_HURT +FD: net/minecraft/world/entity/vehicle/AbstractMinecart/f_38080_ net/minecraft/world/entity/vehicle/AbstractMinecart/DATA_ID_HURTDIR +FD: net/minecraft/world/entity/vehicle/AbstractMinecart/f_38081_ net/minecraft/world/entity/vehicle/AbstractMinecart/DATA_ID_DAMAGE +FD: net/minecraft/world/entity/vehicle/AbstractMinecart/f_38082_ net/minecraft/world/entity/vehicle/AbstractMinecart/DATA_ID_DISPLAY_BLOCK +FD: net/minecraft/world/entity/vehicle/AbstractMinecart/f_38083_ net/minecraft/world/entity/vehicle/AbstractMinecart/DATA_ID_DISPLAY_OFFSET +FD: net/minecraft/world/entity/vehicle/AbstractMinecart/f_38084_ net/minecraft/world/entity/vehicle/AbstractMinecart/DATA_ID_CUSTOM_DISPLAY +FD: net/minecraft/world/entity/vehicle/AbstractMinecart$1/f_150252_ net/minecraft/world/entity/vehicle/AbstractMinecart$1/$SwitchMap$net$minecraft$world$entity$vehicle$AbstractMinecart$Type +FD: net/minecraft/world/entity/vehicle/AbstractMinecart$1/f_38185_ net/minecraft/world/entity/vehicle/AbstractMinecart$1/$SwitchMap$net$minecraft$world$level$block$state$properties$RailShape +FD: net/minecraft/world/entity/vehicle/AbstractMinecart$Type/$VALUES net/minecraft/world/entity/vehicle/AbstractMinecart$Type/$VALUES +FD: net/minecraft/world/entity/vehicle/AbstractMinecart$Type/CHEST net/minecraft/world/entity/vehicle/AbstractMinecart$Type/CHEST +FD: net/minecraft/world/entity/vehicle/AbstractMinecart$Type/COMMAND_BLOCK net/minecraft/world/entity/vehicle/AbstractMinecart$Type/COMMAND_BLOCK +FD: net/minecraft/world/entity/vehicle/AbstractMinecart$Type/FURNACE net/minecraft/world/entity/vehicle/AbstractMinecart$Type/FURNACE +FD: net/minecraft/world/entity/vehicle/AbstractMinecart$Type/HOPPER net/minecraft/world/entity/vehicle/AbstractMinecart$Type/HOPPER +FD: net/minecraft/world/entity/vehicle/AbstractMinecart$Type/RIDEABLE net/minecraft/world/entity/vehicle/AbstractMinecart$Type/RIDEABLE +FD: net/minecraft/world/entity/vehicle/AbstractMinecart$Type/SPAWNER net/minecraft/world/entity/vehicle/AbstractMinecart$Type/SPAWNER +FD: net/minecraft/world/entity/vehicle/AbstractMinecart$Type/TNT net/minecraft/world/entity/vehicle/AbstractMinecart$Type/TNT +FD: net/minecraft/world/entity/vehicle/AbstractMinecartContainer/f_38202_ net/minecraft/world/entity/vehicle/AbstractMinecartContainer/itemStacks +FD: net/minecraft/world/entity/vehicle/AbstractMinecartContainer/f_38204_ net/minecraft/world/entity/vehicle/AbstractMinecartContainer/lootTable +FD: net/minecraft/world/entity/vehicle/AbstractMinecartContainer/f_38205_ net/minecraft/world/entity/vehicle/AbstractMinecartContainer/lootTableSeed +FD: net/minecraft/world/entity/vehicle/Boat/f_150266_ net/minecraft/world/entity/vehicle/Boat/TIME_TO_EJECT +FD: net/minecraft/world/entity/vehicle/Boat/f_150267_ net/minecraft/world/entity/vehicle/Boat/PADDLE_SPEED +FD: net/minecraft/world/entity/vehicle/Boat/f_150268_ net/minecraft/world/entity/vehicle/Boat/PADDLE_LEFT +FD: net/minecraft/world/entity/vehicle/Boat/f_150269_ net/minecraft/world/entity/vehicle/Boat/PADDLE_RIGHT +FD: net/minecraft/world/entity/vehicle/Boat/f_150270_ net/minecraft/world/entity/vehicle/Boat/PADDLE_SOUND_TIME +FD: net/minecraft/world/entity/vehicle/Boat/f_150271_ net/minecraft/world/entity/vehicle/Boat/BUBBLE_TIME +FD: net/minecraft/world/entity/vehicle/Boat/f_38257_ net/minecraft/world/entity/vehicle/Boat/isAboveBubbleColumn +FD: net/minecraft/world/entity/vehicle/Boat/f_38258_ net/minecraft/world/entity/vehicle/Boat/bubbleColumnDirectionIsDown +FD: net/minecraft/world/entity/vehicle/Boat/f_38259_ net/minecraft/world/entity/vehicle/Boat/bubbleMultiplier +FD: net/minecraft/world/entity/vehicle/Boat/f_38260_ net/minecraft/world/entity/vehicle/Boat/bubbleAngle +FD: net/minecraft/world/entity/vehicle/Boat/f_38261_ net/minecraft/world/entity/vehicle/Boat/bubbleAngleO +FD: net/minecraft/world/entity/vehicle/Boat/f_38262_ net/minecraft/world/entity/vehicle/Boat/DATA_ID_BUBBLE_TIME +FD: net/minecraft/world/entity/vehicle/Boat/f_38263_ net/minecraft/world/entity/vehicle/Boat/paddlePositions +FD: net/minecraft/world/entity/vehicle/Boat/f_38264_ net/minecraft/world/entity/vehicle/Boat/invFriction +FD: net/minecraft/world/entity/vehicle/Boat/f_38265_ net/minecraft/world/entity/vehicle/Boat/outOfControlTicks +FD: net/minecraft/world/entity/vehicle/Boat/f_38266_ net/minecraft/world/entity/vehicle/Boat/deltaRotation +FD: net/minecraft/world/entity/vehicle/Boat/f_38267_ net/minecraft/world/entity/vehicle/Boat/lerpSteps +FD: net/minecraft/world/entity/vehicle/Boat/f_38268_ net/minecraft/world/entity/vehicle/Boat/lerpX +FD: net/minecraft/world/entity/vehicle/Boat/f_38269_ net/minecraft/world/entity/vehicle/Boat/lerpY +FD: net/minecraft/world/entity/vehicle/Boat/f_38270_ net/minecraft/world/entity/vehicle/Boat/lerpZ +FD: net/minecraft/world/entity/vehicle/Boat/f_38271_ net/minecraft/world/entity/vehicle/Boat/lerpYRot +FD: net/minecraft/world/entity/vehicle/Boat/f_38272_ net/minecraft/world/entity/vehicle/Boat/lerpXRot +FD: net/minecraft/world/entity/vehicle/Boat/f_38273_ net/minecraft/world/entity/vehicle/Boat/inputLeft +FD: net/minecraft/world/entity/vehicle/Boat/f_38274_ net/minecraft/world/entity/vehicle/Boat/inputRight +FD: net/minecraft/world/entity/vehicle/Boat/f_38275_ net/minecraft/world/entity/vehicle/Boat/inputUp +FD: net/minecraft/world/entity/vehicle/Boat/f_38276_ net/minecraft/world/entity/vehicle/Boat/inputDown +FD: net/minecraft/world/entity/vehicle/Boat/f_38277_ net/minecraft/world/entity/vehicle/Boat/waterLevel +FD: net/minecraft/world/entity/vehicle/Boat/f_38278_ net/minecraft/world/entity/vehicle/Boat/landFriction +FD: net/minecraft/world/entity/vehicle/Boat/f_38279_ net/minecraft/world/entity/vehicle/Boat/status +FD: net/minecraft/world/entity/vehicle/Boat/f_38280_ net/minecraft/world/entity/vehicle/Boat/oldStatus +FD: net/minecraft/world/entity/vehicle/Boat/f_38281_ net/minecraft/world/entity/vehicle/Boat/lastYd +FD: net/minecraft/world/entity/vehicle/Boat/f_38282_ net/minecraft/world/entity/vehicle/Boat/DATA_ID_HURT +FD: net/minecraft/world/entity/vehicle/Boat/f_38283_ net/minecraft/world/entity/vehicle/Boat/DATA_ID_HURTDIR +FD: net/minecraft/world/entity/vehicle/Boat/f_38284_ net/minecraft/world/entity/vehicle/Boat/DATA_ID_DAMAGE +FD: net/minecraft/world/entity/vehicle/Boat/f_38285_ net/minecraft/world/entity/vehicle/Boat/DATA_ID_TYPE +FD: net/minecraft/world/entity/vehicle/Boat/f_38286_ net/minecraft/world/entity/vehicle/Boat/DATA_ID_PADDLE_LEFT +FD: net/minecraft/world/entity/vehicle/Boat/f_38287_ net/minecraft/world/entity/vehicle/Boat/DATA_ID_PADDLE_RIGHT +FD: net/minecraft/world/entity/vehicle/Boat$1/f_38398_ net/minecraft/world/entity/vehicle/Boat$1/$SwitchMap$net$minecraft$world$entity$vehicle$Boat$Type +FD: net/minecraft/world/entity/vehicle/Boat$1/f_38399_ net/minecraft/world/entity/vehicle/Boat$1/$SwitchMap$net$minecraft$world$entity$vehicle$Boat$Status +FD: net/minecraft/world/entity/vehicle/Boat$Status/$VALUES net/minecraft/world/entity/vehicle/Boat$Status/$VALUES +FD: net/minecraft/world/entity/vehicle/Boat$Status/IN_AIR net/minecraft/world/entity/vehicle/Boat$Status/IN_AIR +FD: net/minecraft/world/entity/vehicle/Boat$Status/IN_WATER net/minecraft/world/entity/vehicle/Boat$Status/IN_WATER +FD: net/minecraft/world/entity/vehicle/Boat$Status/ON_LAND net/minecraft/world/entity/vehicle/Boat$Status/ON_LAND +FD: net/minecraft/world/entity/vehicle/Boat$Status/UNDER_FLOWING_WATER net/minecraft/world/entity/vehicle/Boat$Status/UNDER_FLOWING_WATER +FD: net/minecraft/world/entity/vehicle/Boat$Status/UNDER_WATER net/minecraft/world/entity/vehicle/Boat$Status/UNDER_WATER +FD: net/minecraft/world/entity/vehicle/Boat$Type/$VALUES net/minecraft/world/entity/vehicle/Boat$Type/$VALUES +FD: net/minecraft/world/entity/vehicle/Boat$Type/ACACIA net/minecraft/world/entity/vehicle/Boat$Type/ACACIA +FD: net/minecraft/world/entity/vehicle/Boat$Type/BAMBOO net/minecraft/world/entity/vehicle/Boat$Type/BAMBOO +FD: net/minecraft/world/entity/vehicle/Boat$Type/BIRCH net/minecraft/world/entity/vehicle/Boat$Type/BIRCH +FD: net/minecraft/world/entity/vehicle/Boat$Type/CHERRY net/minecraft/world/entity/vehicle/Boat$Type/CHERRY +FD: net/minecraft/world/entity/vehicle/Boat$Type/DARK_OAK net/minecraft/world/entity/vehicle/Boat$Type/DARK_OAK +FD: net/minecraft/world/entity/vehicle/Boat$Type/JUNGLE net/minecraft/world/entity/vehicle/Boat$Type/JUNGLE +FD: net/minecraft/world/entity/vehicle/Boat$Type/MANGROVE net/minecraft/world/entity/vehicle/Boat$Type/MANGROVE +FD: net/minecraft/world/entity/vehicle/Boat$Type/OAK net/minecraft/world/entity/vehicle/Boat$Type/OAK +FD: net/minecraft/world/entity/vehicle/Boat$Type/SPRUCE net/minecraft/world/entity/vehicle/Boat$Type/SPRUCE +FD: net/minecraft/world/entity/vehicle/Boat$Type/f_262275_ net/minecraft/world/entity/vehicle/Boat$Type/CODEC +FD: net/minecraft/world/entity/vehicle/Boat$Type/f_262735_ net/minecraft/world/entity/vehicle/Boat$Type/BY_ID +FD: net/minecraft/world/entity/vehicle/Boat$Type/f_38420_ net/minecraft/world/entity/vehicle/Boat$Type/name +FD: net/minecraft/world/entity/vehicle/Boat$Type/f_38421_ net/minecraft/world/entity/vehicle/Boat$Type/planks +FD: net/minecraft/world/entity/vehicle/ChestBoat/f_219864_ net/minecraft/world/entity/vehicle/ChestBoat/itemStacks +FD: net/minecraft/world/entity/vehicle/ChestBoat/f_219865_ net/minecraft/world/entity/vehicle/ChestBoat/lootTable +FD: net/minecraft/world/entity/vehicle/ChestBoat/f_219866_ net/minecraft/world/entity/vehicle/ChestBoat/lootTableSeed +FD: net/minecraft/world/entity/vehicle/ChestBoat/f_219867_ net/minecraft/world/entity/vehicle/ChestBoat/CONTAINER_SIZE +FD: net/minecraft/world/entity/vehicle/ChestBoat$1/f_219923_ net/minecraft/world/entity/vehicle/ChestBoat$1/$SwitchMap$net$minecraft$world$entity$vehicle$Boat$Type +FD: net/minecraft/world/entity/vehicle/ContainerEntity$1/f_219957_ net/minecraft/world/entity/vehicle/ContainerEntity$1/val$slot +FD: net/minecraft/world/entity/vehicle/ContainerEntity$1/f_219958_ net/minecraft/world/entity/vehicle/ContainerEntity$1/this$0 +FD: net/minecraft/world/entity/vehicle/MinecartCommandBlock/f_150284_ net/minecraft/world/entity/vehicle/MinecartCommandBlock/ACTIVATION_DELAY +FD: net/minecraft/world/entity/vehicle/MinecartCommandBlock/f_38503_ net/minecraft/world/entity/vehicle/MinecartCommandBlock/DATA_ID_COMMAND_NAME +FD: net/minecraft/world/entity/vehicle/MinecartCommandBlock/f_38504_ net/minecraft/world/entity/vehicle/MinecartCommandBlock/DATA_ID_LAST_OUTPUT +FD: net/minecraft/world/entity/vehicle/MinecartCommandBlock/f_38505_ net/minecraft/world/entity/vehicle/MinecartCommandBlock/commandBlock +FD: net/minecraft/world/entity/vehicle/MinecartCommandBlock/f_38506_ net/minecraft/world/entity/vehicle/MinecartCommandBlock/lastActivated +FD: net/minecraft/world/entity/vehicle/MinecartCommandBlock$MinecartCommandBase/f_38537_ net/minecraft/world/entity/vehicle/MinecartCommandBlock$MinecartCommandBase/this$0 +FD: net/minecraft/world/entity/vehicle/MinecartFurnace/f_38545_ net/minecraft/world/entity/vehicle/MinecartFurnace/xPush +FD: net/minecraft/world/entity/vehicle/MinecartFurnace/f_38546_ net/minecraft/world/entity/vehicle/MinecartFurnace/zPush +FD: net/minecraft/world/entity/vehicle/MinecartFurnace/f_38547_ net/minecraft/world/entity/vehicle/MinecartFurnace/DATA_ID_FUEL +FD: net/minecraft/world/entity/vehicle/MinecartFurnace/f_38548_ net/minecraft/world/entity/vehicle/MinecartFurnace/fuel +FD: net/minecraft/world/entity/vehicle/MinecartFurnace/f_38549_ net/minecraft/world/entity/vehicle/MinecartFurnace/INGREDIENT +FD: net/minecraft/world/entity/vehicle/MinecartHopper/f_38580_ net/minecraft/world/entity/vehicle/MinecartHopper/enabled +FD: net/minecraft/world/entity/vehicle/MinecartSpawner/f_150333_ net/minecraft/world/entity/vehicle/MinecartSpawner/ticker +FD: net/minecraft/world/entity/vehicle/MinecartSpawner/f_38621_ net/minecraft/world/entity/vehicle/MinecartSpawner/spawner +FD: net/minecraft/world/entity/vehicle/MinecartSpawner$1/f_38640_ net/minecraft/world/entity/vehicle/MinecartSpawner$1/this$0 +FD: net/minecraft/world/entity/vehicle/MinecartTNT/f_150345_ net/minecraft/world/entity/vehicle/MinecartTNT/EVENT_PRIME +FD: net/minecraft/world/entity/vehicle/MinecartTNT/f_38647_ net/minecraft/world/entity/vehicle/MinecartTNT/fuse +FD: net/minecraft/world/flag/FeatureElement/f_244051_ net/minecraft/world/flag/FeatureElement/FILTERED_REGISTRIES +FD: net/minecraft/world/flag/FeatureFlag/f_243952_ net/minecraft/world/flag/FeatureFlag/universe +FD: net/minecraft/world/flag/FeatureFlag/f_244012_ net/minecraft/world/flag/FeatureFlag/mask +FD: net/minecraft/world/flag/FeatureFlagRegistry/f_243770_ net/minecraft/world/flag/FeatureFlagRegistry/allFlags +FD: net/minecraft/world/flag/FeatureFlagRegistry/f_244444_ net/minecraft/world/flag/FeatureFlagRegistry/universe +FD: net/minecraft/world/flag/FeatureFlagRegistry/f_244528_ net/minecraft/world/flag/FeatureFlagRegistry/LOGGER +FD: net/minecraft/world/flag/FeatureFlagRegistry/f_244560_ net/minecraft/world/flag/FeatureFlagRegistry/names +FD: net/minecraft/world/flag/FeatureFlagRegistry$Builder/f_243698_ net/minecraft/world/flag/FeatureFlagRegistry$Builder/universe +FD: net/minecraft/world/flag/FeatureFlagRegistry$Builder/f_244349_ net/minecraft/world/flag/FeatureFlagRegistry$Builder/flags +FD: net/minecraft/world/flag/FeatureFlagRegistry$Builder/f_244365_ net/minecraft/world/flag/FeatureFlagRegistry$Builder/id +FD: net/minecraft/world/flag/FeatureFlagSet/f_243922_ net/minecraft/world/flag/FeatureFlagSet/mask +FD: net/minecraft/world/flag/FeatureFlagSet/f_243923_ net/minecraft/world/flag/FeatureFlagSet/universe +FD: net/minecraft/world/flag/FeatureFlagSet/f_244513_ net/minecraft/world/flag/FeatureFlagSet/EMPTY +FD: net/minecraft/world/flag/FeatureFlagSet/f_244635_ net/minecraft/world/flag/FeatureFlagSet/MAX_CONTAINER_SIZE +FD: net/minecraft/world/flag/FeatureFlagUniverse/f_243740_ net/minecraft/world/flag/FeatureFlagUniverse/id +FD: net/minecraft/world/flag/FeatureFlags/f_244112_ net/minecraft/world/flag/FeatureFlags/BUNDLE +FD: net/minecraft/world/flag/FeatureFlags/f_244280_ net/minecraft/world/flag/FeatureFlags/REGISTRY +FD: net/minecraft/world/flag/FeatureFlags/f_244298_ net/minecraft/world/flag/FeatureFlags/CODEC +FD: net/minecraft/world/flag/FeatureFlags/f_244332_ net/minecraft/world/flag/FeatureFlags/DEFAULT_FLAGS +FD: net/minecraft/world/flag/FeatureFlags/f_244377_ net/minecraft/world/flag/FeatureFlags/VANILLA_SET +FD: net/minecraft/world/flag/FeatureFlags/f_244571_ net/minecraft/world/flag/FeatureFlags/VANILLA +FD: net/minecraft/world/food/FoodConstants/f_150350_ net/minecraft/world/food/FoodConstants/MAX_FOOD +FD: net/minecraft/world/food/FoodConstants/f_150351_ net/minecraft/world/food/FoodConstants/MAX_SATURATION +FD: net/minecraft/world/food/FoodConstants/f_150352_ net/minecraft/world/food/FoodConstants/START_SATURATION +FD: net/minecraft/world/food/FoodConstants/f_150353_ net/minecraft/world/food/FoodConstants/SATURATION_FLOOR +FD: net/minecraft/world/food/FoodConstants/f_150354_ net/minecraft/world/food/FoodConstants/EXHAUSTION_DROP +FD: net/minecraft/world/food/FoodConstants/f_150355_ net/minecraft/world/food/FoodConstants/HEALTH_TICK_COUNT +FD: net/minecraft/world/food/FoodConstants/f_150356_ net/minecraft/world/food/FoodConstants/HEALTH_TICK_COUNT_SATURATED +FD: net/minecraft/world/food/FoodConstants/f_150357_ net/minecraft/world/food/FoodConstants/HEAL_LEVEL +FD: net/minecraft/world/food/FoodConstants/f_150358_ net/minecraft/world/food/FoodConstants/SPRINT_LEVEL +FD: net/minecraft/world/food/FoodConstants/f_150359_ net/minecraft/world/food/FoodConstants/STARVE_LEVEL +FD: net/minecraft/world/food/FoodConstants/f_150360_ net/minecraft/world/food/FoodConstants/FOOD_SATURATION_POOR +FD: net/minecraft/world/food/FoodConstants/f_150361_ net/minecraft/world/food/FoodConstants/FOOD_SATURATION_LOW +FD: net/minecraft/world/food/FoodConstants/f_150362_ net/minecraft/world/food/FoodConstants/FOOD_SATURATION_NORMAL +FD: net/minecraft/world/food/FoodConstants/f_150363_ net/minecraft/world/food/FoodConstants/FOOD_SATURATION_GOOD +FD: net/minecraft/world/food/FoodConstants/f_150364_ net/minecraft/world/food/FoodConstants/FOOD_SATURATION_MAX +FD: net/minecraft/world/food/FoodConstants/f_150365_ net/minecraft/world/food/FoodConstants/FOOD_SATURATION_SUPERNATURAL +FD: net/minecraft/world/food/FoodConstants/f_150366_ net/minecraft/world/food/FoodConstants/EXHAUSTION_HEAL +FD: net/minecraft/world/food/FoodConstants/f_150367_ net/minecraft/world/food/FoodConstants/EXHAUSTION_JUMP +FD: net/minecraft/world/food/FoodConstants/f_150368_ net/minecraft/world/food/FoodConstants/EXHAUSTION_SPRINT_JUMP +FD: net/minecraft/world/food/FoodConstants/f_150369_ net/minecraft/world/food/FoodConstants/EXHAUSTION_MINE +FD: net/minecraft/world/food/FoodConstants/f_150370_ net/minecraft/world/food/FoodConstants/EXHAUSTION_ATTACK +FD: net/minecraft/world/food/FoodConstants/f_150372_ net/minecraft/world/food/FoodConstants/EXHAUSTION_WALK +FD: net/minecraft/world/food/FoodConstants/f_150373_ net/minecraft/world/food/FoodConstants/EXHAUSTION_CROUCH +FD: net/minecraft/world/food/FoodConstants/f_150374_ net/minecraft/world/food/FoodConstants/EXHAUSTION_SPRINT +FD: net/minecraft/world/food/FoodConstants/f_150375_ net/minecraft/world/food/FoodConstants/EXHAUSTION_SWIM +FD: net/minecraft/world/food/FoodData/f_38696_ net/minecraft/world/food/FoodData/foodLevel +FD: net/minecraft/world/food/FoodData/f_38697_ net/minecraft/world/food/FoodData/saturationLevel +FD: net/minecraft/world/food/FoodData/f_38698_ net/minecraft/world/food/FoodData/exhaustionLevel +FD: net/minecraft/world/food/FoodData/f_38699_ net/minecraft/world/food/FoodData/tickTimer +FD: net/minecraft/world/food/FoodData/f_38700_ net/minecraft/world/food/FoodData/lastFoodLevel +FD: net/minecraft/world/food/FoodProperties/f_38723_ net/minecraft/world/food/FoodProperties/nutrition +FD: net/minecraft/world/food/FoodProperties/f_38724_ net/minecraft/world/food/FoodProperties/saturationModifier +FD: net/minecraft/world/food/FoodProperties/f_38725_ net/minecraft/world/food/FoodProperties/isMeat +FD: net/minecraft/world/food/FoodProperties/f_38726_ net/minecraft/world/food/FoodProperties/canAlwaysEat +FD: net/minecraft/world/food/FoodProperties/f_38727_ net/minecraft/world/food/FoodProperties/fastFood +FD: net/minecraft/world/food/FoodProperties/f_38728_ net/minecraft/world/food/FoodProperties/effects +FD: net/minecraft/world/food/FoodProperties$Builder/f_38750_ net/minecraft/world/food/FoodProperties$Builder/nutrition +FD: net/minecraft/world/food/FoodProperties$Builder/f_38751_ net/minecraft/world/food/FoodProperties$Builder/saturationModifier +FD: net/minecraft/world/food/FoodProperties$Builder/f_38752_ net/minecraft/world/food/FoodProperties$Builder/isMeat +FD: net/minecraft/world/food/FoodProperties$Builder/f_38753_ net/minecraft/world/food/FoodProperties$Builder/canAlwaysEat +FD: net/minecraft/world/food/FoodProperties$Builder/f_38754_ net/minecraft/world/food/FoodProperties$Builder/fastFood +FD: net/minecraft/world/food/FoodProperties$Builder/f_38755_ net/minecraft/world/food/FoodProperties$Builder/effects +FD: net/minecraft/world/food/Foods/f_150381_ net/minecraft/world/food/Foods/GLOW_BERRIES +FD: net/minecraft/world/food/Foods/f_38797_ net/minecraft/world/food/Foods/POISONOUS_POTATO +FD: net/minecraft/world/food/Foods/f_38798_ net/minecraft/world/food/Foods/PORKCHOP +FD: net/minecraft/world/food/Foods/f_38799_ net/minecraft/world/food/Foods/POTATO +FD: net/minecraft/world/food/Foods/f_38800_ net/minecraft/world/food/Foods/PUFFERFISH +FD: net/minecraft/world/food/Foods/f_38801_ net/minecraft/world/food/Foods/PUMPKIN_PIE +FD: net/minecraft/world/food/Foods/f_38802_ net/minecraft/world/food/Foods/RABBIT +FD: net/minecraft/world/food/Foods/f_38803_ net/minecraft/world/food/Foods/RABBIT_STEW +FD: net/minecraft/world/food/Foods/f_38804_ net/minecraft/world/food/Foods/ROTTEN_FLESH +FD: net/minecraft/world/food/Foods/f_38805_ net/minecraft/world/food/Foods/SALMON +FD: net/minecraft/world/food/Foods/f_38806_ net/minecraft/world/food/Foods/SPIDER_EYE +FD: net/minecraft/world/food/Foods/f_38807_ net/minecraft/world/food/Foods/SUSPICIOUS_STEW +FD: net/minecraft/world/food/Foods/f_38808_ net/minecraft/world/food/Foods/SWEET_BERRIES +FD: net/minecraft/world/food/Foods/f_38809_ net/minecraft/world/food/Foods/TROPICAL_FISH +FD: net/minecraft/world/food/Foods/f_38810_ net/minecraft/world/food/Foods/APPLE +FD: net/minecraft/world/food/Foods/f_38811_ net/minecraft/world/food/Foods/BAKED_POTATO +FD: net/minecraft/world/food/Foods/f_38812_ net/minecraft/world/food/Foods/BEEF +FD: net/minecraft/world/food/Foods/f_38813_ net/minecraft/world/food/Foods/BEETROOT +FD: net/minecraft/world/food/Foods/f_38814_ net/minecraft/world/food/Foods/BEETROOT_SOUP +FD: net/minecraft/world/food/Foods/f_38815_ net/minecraft/world/food/Foods/BREAD +FD: net/minecraft/world/food/Foods/f_38816_ net/minecraft/world/food/Foods/CARROT +FD: net/minecraft/world/food/Foods/f_38817_ net/minecraft/world/food/Foods/CHICKEN +FD: net/minecraft/world/food/Foods/f_38818_ net/minecraft/world/food/Foods/CHORUS_FRUIT +FD: net/minecraft/world/food/Foods/f_38819_ net/minecraft/world/food/Foods/COD +FD: net/minecraft/world/food/Foods/f_38820_ net/minecraft/world/food/Foods/COOKED_BEEF +FD: net/minecraft/world/food/Foods/f_38821_ net/minecraft/world/food/Foods/COOKED_CHICKEN +FD: net/minecraft/world/food/Foods/f_38822_ net/minecraft/world/food/Foods/COOKED_COD +FD: net/minecraft/world/food/Foods/f_38823_ net/minecraft/world/food/Foods/COOKED_MUTTON +FD: net/minecraft/world/food/Foods/f_38824_ net/minecraft/world/food/Foods/COOKED_PORKCHOP +FD: net/minecraft/world/food/Foods/f_38825_ net/minecraft/world/food/Foods/COOKED_RABBIT +FD: net/minecraft/world/food/Foods/f_38826_ net/minecraft/world/food/Foods/COOKED_SALMON +FD: net/minecraft/world/food/Foods/f_38827_ net/minecraft/world/food/Foods/COOKIE +FD: net/minecraft/world/food/Foods/f_38828_ net/minecraft/world/food/Foods/DRIED_KELP +FD: net/minecraft/world/food/Foods/f_38829_ net/minecraft/world/food/Foods/ENCHANTED_GOLDEN_APPLE +FD: net/minecraft/world/food/Foods/f_38830_ net/minecraft/world/food/Foods/GOLDEN_APPLE +FD: net/minecraft/world/food/Foods/f_38831_ net/minecraft/world/food/Foods/GOLDEN_CARROT +FD: net/minecraft/world/food/Foods/f_38832_ net/minecraft/world/food/Foods/HONEY_BOTTLE +FD: net/minecraft/world/food/Foods/f_38833_ net/minecraft/world/food/Foods/MELON_SLICE +FD: net/minecraft/world/food/Foods/f_38834_ net/minecraft/world/food/Foods/MUSHROOM_STEW +FD: net/minecraft/world/food/Foods/f_38835_ net/minecraft/world/food/Foods/MUTTON +FD: net/minecraft/world/inventory/AbstractContainerMenu/f_150385_ net/minecraft/world/inventory/AbstractContainerMenu/SLOT_CLICKED_OUTSIDE +FD: net/minecraft/world/inventory/AbstractContainerMenu/f_150386_ net/minecraft/world/inventory/AbstractContainerMenu/QUICKCRAFT_TYPE_CHARITABLE +FD: net/minecraft/world/inventory/AbstractContainerMenu/f_150387_ net/minecraft/world/inventory/AbstractContainerMenu/QUICKCRAFT_TYPE_GREEDY +FD: net/minecraft/world/inventory/AbstractContainerMenu/f_150388_ net/minecraft/world/inventory/AbstractContainerMenu/QUICKCRAFT_TYPE_CLONE +FD: net/minecraft/world/inventory/AbstractContainerMenu/f_150389_ net/minecraft/world/inventory/AbstractContainerMenu/QUICKCRAFT_HEADER_START +FD: net/minecraft/world/inventory/AbstractContainerMenu/f_150390_ net/minecraft/world/inventory/AbstractContainerMenu/QUICKCRAFT_HEADER_CONTINUE +FD: net/minecraft/world/inventory/AbstractContainerMenu/f_150391_ net/minecraft/world/inventory/AbstractContainerMenu/QUICKCRAFT_HEADER_END +FD: net/minecraft/world/inventory/AbstractContainerMenu/f_150392_ net/minecraft/world/inventory/AbstractContainerMenu/CARRIED_SLOT_SIZE +FD: net/minecraft/world/inventory/AbstractContainerMenu/f_150393_ net/minecraft/world/inventory/AbstractContainerMenu/carried +FD: net/minecraft/world/inventory/AbstractContainerMenu/f_150394_ net/minecraft/world/inventory/AbstractContainerMenu/remoteSlots +FD: net/minecraft/world/inventory/AbstractContainerMenu/f_150395_ net/minecraft/world/inventory/AbstractContainerMenu/remoteDataSlots +FD: net/minecraft/world/inventory/AbstractContainerMenu/f_150396_ net/minecraft/world/inventory/AbstractContainerMenu/remoteCarried +FD: net/minecraft/world/inventory/AbstractContainerMenu/f_150397_ net/minecraft/world/inventory/AbstractContainerMenu/synchronizer +FD: net/minecraft/world/inventory/AbstractContainerMenu/f_150398_ net/minecraft/world/inventory/AbstractContainerMenu/suppressRemoteUpdates +FD: net/minecraft/world/inventory/AbstractContainerMenu/f_182405_ net/minecraft/world/inventory/AbstractContainerMenu/stateId +FD: net/minecraft/world/inventory/AbstractContainerMenu/f_207773_ net/minecraft/world/inventory/AbstractContainerMenu/LOGGER +FD: net/minecraft/world/inventory/AbstractContainerMenu/f_38839_ net/minecraft/world/inventory/AbstractContainerMenu/slots +FD: net/minecraft/world/inventory/AbstractContainerMenu/f_38840_ net/minecraft/world/inventory/AbstractContainerMenu/containerId +FD: net/minecraft/world/inventory/AbstractContainerMenu/f_38841_ net/minecraft/world/inventory/AbstractContainerMenu/lastSlots +FD: net/minecraft/world/inventory/AbstractContainerMenu/f_38842_ net/minecraft/world/inventory/AbstractContainerMenu/dataSlots +FD: net/minecraft/world/inventory/AbstractContainerMenu/f_38843_ net/minecraft/world/inventory/AbstractContainerMenu/menuType +FD: net/minecraft/world/inventory/AbstractContainerMenu/f_38845_ net/minecraft/world/inventory/AbstractContainerMenu/quickcraftType +FD: net/minecraft/world/inventory/AbstractContainerMenu/f_38846_ net/minecraft/world/inventory/AbstractContainerMenu/quickcraftStatus +FD: net/minecraft/world/inventory/AbstractContainerMenu/f_38847_ net/minecraft/world/inventory/AbstractContainerMenu/quickcraftSlots +FD: net/minecraft/world/inventory/AbstractContainerMenu/f_38848_ net/minecraft/world/inventory/AbstractContainerMenu/containerListeners +FD: net/minecraft/world/inventory/AbstractContainerMenu$1/f_150447_ net/minecraft/world/inventory/AbstractContainerMenu$1/this$0 +FD: net/minecraft/world/inventory/AbstractFurnaceMenu/f_150453_ net/minecraft/world/inventory/AbstractFurnaceMenu/INGREDIENT_SLOT +FD: net/minecraft/world/inventory/AbstractFurnaceMenu/f_150454_ net/minecraft/world/inventory/AbstractFurnaceMenu/FUEL_SLOT +FD: net/minecraft/world/inventory/AbstractFurnaceMenu/f_150455_ net/minecraft/world/inventory/AbstractFurnaceMenu/RESULT_SLOT +FD: net/minecraft/world/inventory/AbstractFurnaceMenu/f_150456_ net/minecraft/world/inventory/AbstractFurnaceMenu/SLOT_COUNT +FD: net/minecraft/world/inventory/AbstractFurnaceMenu/f_150457_ net/minecraft/world/inventory/AbstractFurnaceMenu/DATA_COUNT +FD: net/minecraft/world/inventory/AbstractFurnaceMenu/f_150458_ net/minecraft/world/inventory/AbstractFurnaceMenu/INV_SLOT_START +FD: net/minecraft/world/inventory/AbstractFurnaceMenu/f_150459_ net/minecraft/world/inventory/AbstractFurnaceMenu/INV_SLOT_END +FD: net/minecraft/world/inventory/AbstractFurnaceMenu/f_150460_ net/minecraft/world/inventory/AbstractFurnaceMenu/USE_ROW_SLOT_START +FD: net/minecraft/world/inventory/AbstractFurnaceMenu/f_150461_ net/minecraft/world/inventory/AbstractFurnaceMenu/USE_ROW_SLOT_END +FD: net/minecraft/world/inventory/AbstractFurnaceMenu/f_38954_ net/minecraft/world/inventory/AbstractFurnaceMenu/level +FD: net/minecraft/world/inventory/AbstractFurnaceMenu/f_38955_ net/minecraft/world/inventory/AbstractFurnaceMenu/container +FD: net/minecraft/world/inventory/AbstractFurnaceMenu/f_38956_ net/minecraft/world/inventory/AbstractFurnaceMenu/data +FD: net/minecraft/world/inventory/AbstractFurnaceMenu/f_38957_ net/minecraft/world/inventory/AbstractFurnaceMenu/recipeType +FD: net/minecraft/world/inventory/AbstractFurnaceMenu/f_38958_ net/minecraft/world/inventory/AbstractFurnaceMenu/recipeBookType +FD: net/minecraft/world/inventory/AnvilMenu/f_150464_ net/minecraft/world/inventory/AnvilMenu/COST_REPAIR_MATERIAL +FD: net/minecraft/world/inventory/AnvilMenu/f_150465_ net/minecraft/world/inventory/AnvilMenu/COST_REPAIR_SACRIFICE +FD: net/minecraft/world/inventory/AnvilMenu/f_150466_ net/minecraft/world/inventory/AnvilMenu/COST_INCOMPATIBLE_PENALTY +FD: net/minecraft/world/inventory/AnvilMenu/f_150467_ net/minecraft/world/inventory/AnvilMenu/COST_RENAME +FD: net/minecraft/world/inventory/AnvilMenu/f_150468_ net/minecraft/world/inventory/AnvilMenu/MAX_NAME_LENGTH +FD: net/minecraft/world/inventory/AnvilMenu/f_150469_ net/minecraft/world/inventory/AnvilMenu/DEBUG_COST +FD: net/minecraft/world/inventory/AnvilMenu/f_150470_ net/minecraft/world/inventory/AnvilMenu/COST_FAIL +FD: net/minecraft/world/inventory/AnvilMenu/f_150471_ net/minecraft/world/inventory/AnvilMenu/COST_BASE +FD: net/minecraft/world/inventory/AnvilMenu/f_150472_ net/minecraft/world/inventory/AnvilMenu/COST_ADDED_BASE +FD: net/minecraft/world/inventory/AnvilMenu/f_265878_ net/minecraft/world/inventory/AnvilMenu/ADDITIONAL_SLOT_X_PLACEMENT +FD: net/minecraft/world/inventory/AnvilMenu/f_265898_ net/minecraft/world/inventory/AnvilMenu/INPUT_SLOT_X_PLACEMENT +FD: net/minecraft/world/inventory/AnvilMenu/f_265986_ net/minecraft/world/inventory/AnvilMenu/ADDITIONAL_SLOT +FD: net/minecraft/world/inventory/AnvilMenu/f_265992_ net/minecraft/world/inventory/AnvilMenu/RESULT_SLOT_X_PLACEMENT +FD: net/minecraft/world/inventory/AnvilMenu/f_265994_ net/minecraft/world/inventory/AnvilMenu/INPUT_SLOT +FD: net/minecraft/world/inventory/AnvilMenu/f_266013_ net/minecraft/world/inventory/AnvilMenu/SLOT_Y_PLACEMENT +FD: net/minecraft/world/inventory/AnvilMenu/f_266102_ net/minecraft/world/inventory/AnvilMenu/RESULT_SLOT +FD: net/minecraft/world/inventory/AnvilMenu/f_38999_ net/minecraft/world/inventory/AnvilMenu/LOGGER +FD: net/minecraft/world/inventory/AnvilMenu/f_39000_ net/minecraft/world/inventory/AnvilMenu/repairItemCountCost +FD: net/minecraft/world/inventory/AnvilMenu/f_39001_ net/minecraft/world/inventory/AnvilMenu/itemName +FD: net/minecraft/world/inventory/AnvilMenu/f_39002_ net/minecraft/world/inventory/AnvilMenu/cost +FD: net/minecraft/world/inventory/AnvilMenu$1/f_39029_ net/minecraft/world/inventory/AnvilMenu$1/$SwitchMap$net$minecraft$world$item$enchantment$Enchantment$Rarity +FD: net/minecraft/world/inventory/BeaconMenu/f_150481_ net/minecraft/world/inventory/BeaconMenu/PAYMENT_SLOT +FD: net/minecraft/world/inventory/BeaconMenu/f_150482_ net/minecraft/world/inventory/BeaconMenu/SLOT_COUNT +FD: net/minecraft/world/inventory/BeaconMenu/f_150483_ net/minecraft/world/inventory/BeaconMenu/DATA_COUNT +FD: net/minecraft/world/inventory/BeaconMenu/f_150484_ net/minecraft/world/inventory/BeaconMenu/INV_SLOT_START +FD: net/minecraft/world/inventory/BeaconMenu/f_150485_ net/minecraft/world/inventory/BeaconMenu/INV_SLOT_END +FD: net/minecraft/world/inventory/BeaconMenu/f_150486_ net/minecraft/world/inventory/BeaconMenu/USE_ROW_SLOT_START +FD: net/minecraft/world/inventory/BeaconMenu/f_150487_ net/minecraft/world/inventory/BeaconMenu/USE_ROW_SLOT_END +FD: net/minecraft/world/inventory/BeaconMenu/f_39031_ net/minecraft/world/inventory/BeaconMenu/beacon +FD: net/minecraft/world/inventory/BeaconMenu/f_39032_ net/minecraft/world/inventory/BeaconMenu/paymentSlot +FD: net/minecraft/world/inventory/BeaconMenu/f_39033_ net/minecraft/world/inventory/BeaconMenu/access +FD: net/minecraft/world/inventory/BeaconMenu/f_39034_ net/minecraft/world/inventory/BeaconMenu/beaconData +FD: net/minecraft/world/inventory/BeaconMenu$1/f_39060_ net/minecraft/world/inventory/BeaconMenu$1/this$0 +FD: net/minecraft/world/inventory/BeaconMenu$PaymentSlot/f_39068_ net/minecraft/world/inventory/BeaconMenu$PaymentSlot/this$0 +FD: net/minecraft/world/inventory/BrewingStandMenu/f_150488_ net/minecraft/world/inventory/BrewingStandMenu/BOTTLE_SLOT_START +FD: net/minecraft/world/inventory/BrewingStandMenu/f_150489_ net/minecraft/world/inventory/BrewingStandMenu/BOTTLE_SLOT_END +FD: net/minecraft/world/inventory/BrewingStandMenu/f_150490_ net/minecraft/world/inventory/BrewingStandMenu/INGREDIENT_SLOT +FD: net/minecraft/world/inventory/BrewingStandMenu/f_150491_ net/minecraft/world/inventory/BrewingStandMenu/FUEL_SLOT +FD: net/minecraft/world/inventory/BrewingStandMenu/f_150492_ net/minecraft/world/inventory/BrewingStandMenu/SLOT_COUNT +FD: net/minecraft/world/inventory/BrewingStandMenu/f_150493_ net/minecraft/world/inventory/BrewingStandMenu/DATA_COUNT +FD: net/minecraft/world/inventory/BrewingStandMenu/f_150494_ net/minecraft/world/inventory/BrewingStandMenu/INV_SLOT_START +FD: net/minecraft/world/inventory/BrewingStandMenu/f_150495_ net/minecraft/world/inventory/BrewingStandMenu/INV_SLOT_END +FD: net/minecraft/world/inventory/BrewingStandMenu/f_150496_ net/minecraft/world/inventory/BrewingStandMenu/USE_ROW_SLOT_START +FD: net/minecraft/world/inventory/BrewingStandMenu/f_150497_ net/minecraft/world/inventory/BrewingStandMenu/USE_ROW_SLOT_END +FD: net/minecraft/world/inventory/BrewingStandMenu/f_39086_ net/minecraft/world/inventory/BrewingStandMenu/brewingStand +FD: net/minecraft/world/inventory/BrewingStandMenu/f_39087_ net/minecraft/world/inventory/BrewingStandMenu/brewingStandData +FD: net/minecraft/world/inventory/BrewingStandMenu/f_39088_ net/minecraft/world/inventory/BrewingStandMenu/ingredientSlot +FD: net/minecraft/world/inventory/CartographyTableMenu/f_150501_ net/minecraft/world/inventory/CartographyTableMenu/MAP_SLOT +FD: net/minecraft/world/inventory/CartographyTableMenu/f_150502_ net/minecraft/world/inventory/CartographyTableMenu/ADDITIONAL_SLOT +FD: net/minecraft/world/inventory/CartographyTableMenu/f_150503_ net/minecraft/world/inventory/CartographyTableMenu/RESULT_SLOT +FD: net/minecraft/world/inventory/CartographyTableMenu/f_150504_ net/minecraft/world/inventory/CartographyTableMenu/INV_SLOT_START +FD: net/minecraft/world/inventory/CartographyTableMenu/f_150505_ net/minecraft/world/inventory/CartographyTableMenu/INV_SLOT_END +FD: net/minecraft/world/inventory/CartographyTableMenu/f_150506_ net/minecraft/world/inventory/CartographyTableMenu/USE_ROW_SLOT_START +FD: net/minecraft/world/inventory/CartographyTableMenu/f_150507_ net/minecraft/world/inventory/CartographyTableMenu/USE_ROW_SLOT_END +FD: net/minecraft/world/inventory/CartographyTableMenu/f_39135_ net/minecraft/world/inventory/CartographyTableMenu/container +FD: net/minecraft/world/inventory/CartographyTableMenu/f_39136_ net/minecraft/world/inventory/CartographyTableMenu/access +FD: net/minecraft/world/inventory/CartographyTableMenu/f_39137_ net/minecraft/world/inventory/CartographyTableMenu/lastSoundTime +FD: net/minecraft/world/inventory/CartographyTableMenu/f_39138_ net/minecraft/world/inventory/CartographyTableMenu/resultContainer +FD: net/minecraft/world/inventory/CartographyTableMenu$1/f_39177_ net/minecraft/world/inventory/CartographyTableMenu$1/this$0 +FD: net/minecraft/world/inventory/CartographyTableMenu$2/f_39182_ net/minecraft/world/inventory/CartographyTableMenu$2/this$0 +FD: net/minecraft/world/inventory/CartographyTableMenu$3/f_39186_ net/minecraft/world/inventory/CartographyTableMenu$3/this$0 +FD: net/minecraft/world/inventory/CartographyTableMenu$4/f_39195_ net/minecraft/world/inventory/CartographyTableMenu$4/this$0 +FD: net/minecraft/world/inventory/CartographyTableMenu$5/f_39204_ net/minecraft/world/inventory/CartographyTableMenu$5/val$access +FD: net/minecraft/world/inventory/CartographyTableMenu$5/f_39205_ net/minecraft/world/inventory/CartographyTableMenu$5/this$0 +FD: net/minecraft/world/inventory/ChestMenu/f_150511_ net/minecraft/world/inventory/ChestMenu/SLOTS_PER_ROW +FD: net/minecraft/world/inventory/ChestMenu/f_39221_ net/minecraft/world/inventory/ChestMenu/container +FD: net/minecraft/world/inventory/ChestMenu/f_39222_ net/minecraft/world/inventory/ChestMenu/containerRows +FD: net/minecraft/world/inventory/ClickAction/$VALUES net/minecraft/world/inventory/ClickAction/$VALUES +FD: net/minecraft/world/inventory/ClickAction/PRIMARY net/minecraft/world/inventory/ClickAction/PRIMARY +FD: net/minecraft/world/inventory/ClickAction/SECONDARY net/minecraft/world/inventory/ClickAction/SECONDARY +FD: net/minecraft/world/inventory/ClickType/$VALUES net/minecraft/world/inventory/ClickType/$VALUES +FD: net/minecraft/world/inventory/ClickType/CLONE net/minecraft/world/inventory/ClickType/CLONE +FD: net/minecraft/world/inventory/ClickType/PICKUP net/minecraft/world/inventory/ClickType/PICKUP +FD: net/minecraft/world/inventory/ClickType/PICKUP_ALL net/minecraft/world/inventory/ClickType/PICKUP_ALL +FD: net/minecraft/world/inventory/ClickType/QUICK_CRAFT net/minecraft/world/inventory/ClickType/QUICK_CRAFT +FD: net/minecraft/world/inventory/ClickType/QUICK_MOVE net/minecraft/world/inventory/ClickType/QUICK_MOVE +FD: net/minecraft/world/inventory/ClickType/SWAP net/minecraft/world/inventory/ClickType/SWAP +FD: net/minecraft/world/inventory/ClickType/THROW net/minecraft/world/inventory/ClickType/THROW +FD: net/minecraft/world/inventory/ContainerLevelAccess/f_39287_ net/minecraft/world/inventory/ContainerLevelAccess/NULL +FD: net/minecraft/world/inventory/ContainerLevelAccess$2/f_39305_ net/minecraft/world/inventory/ContainerLevelAccess$2/val$level +FD: net/minecraft/world/inventory/ContainerLevelAccess$2/f_39306_ net/minecraft/world/inventory/ContainerLevelAccess$2/val$pos +FD: net/minecraft/world/inventory/CraftingMenu/f_150539_ net/minecraft/world/inventory/CraftingMenu/RESULT_SLOT +FD: net/minecraft/world/inventory/CraftingMenu/f_150540_ net/minecraft/world/inventory/CraftingMenu/CRAFT_SLOT_START +FD: net/minecraft/world/inventory/CraftingMenu/f_150541_ net/minecraft/world/inventory/CraftingMenu/CRAFT_SLOT_END +FD: net/minecraft/world/inventory/CraftingMenu/f_150542_ net/minecraft/world/inventory/CraftingMenu/INV_SLOT_START +FD: net/minecraft/world/inventory/CraftingMenu/f_150543_ net/minecraft/world/inventory/CraftingMenu/INV_SLOT_END +FD: net/minecraft/world/inventory/CraftingMenu/f_150544_ net/minecraft/world/inventory/CraftingMenu/USE_ROW_SLOT_START +FD: net/minecraft/world/inventory/CraftingMenu/f_150545_ net/minecraft/world/inventory/CraftingMenu/USE_ROW_SLOT_END +FD: net/minecraft/world/inventory/CraftingMenu/f_39348_ net/minecraft/world/inventory/CraftingMenu/craftSlots +FD: net/minecraft/world/inventory/CraftingMenu/f_39349_ net/minecraft/world/inventory/CraftingMenu/resultSlots +FD: net/minecraft/world/inventory/CraftingMenu/f_39350_ net/minecraft/world/inventory/CraftingMenu/access +FD: net/minecraft/world/inventory/CraftingMenu/f_39351_ net/minecraft/world/inventory/CraftingMenu/player +FD: net/minecraft/world/inventory/DataSlot/f_39399_ net/minecraft/world/inventory/DataSlot/prevValue +FD: net/minecraft/world/inventory/DataSlot$1/f_39410_ net/minecraft/world/inventory/DataSlot$1/val$container +FD: net/minecraft/world/inventory/DataSlot$1/f_39411_ net/minecraft/world/inventory/DataSlot$1/val$dataId +FD: net/minecraft/world/inventory/DataSlot$2/f_39418_ net/minecraft/world/inventory/DataSlot$2/val$storage +FD: net/minecraft/world/inventory/DataSlot$2/f_39419_ net/minecraft/world/inventory/DataSlot$2/val$index +FD: net/minecraft/world/inventory/DataSlot$3/f_39426_ net/minecraft/world/inventory/DataSlot$3/value +FD: net/minecraft/world/inventory/DispenserMenu/f_150557_ net/minecraft/world/inventory/DispenserMenu/SLOT_COUNT +FD: net/minecraft/world/inventory/DispenserMenu/f_150558_ net/minecraft/world/inventory/DispenserMenu/INV_SLOT_START +FD: net/minecraft/world/inventory/DispenserMenu/f_150559_ net/minecraft/world/inventory/DispenserMenu/INV_SLOT_END +FD: net/minecraft/world/inventory/DispenserMenu/f_150560_ net/minecraft/world/inventory/DispenserMenu/USE_ROW_SLOT_START +FD: net/minecraft/world/inventory/DispenserMenu/f_150561_ net/minecraft/world/inventory/DispenserMenu/USE_ROW_SLOT_END +FD: net/minecraft/world/inventory/DispenserMenu/f_39431_ net/minecraft/world/inventory/DispenserMenu/dispenser +FD: net/minecraft/world/inventory/EnchantmentMenu/f_39446_ net/minecraft/world/inventory/EnchantmentMenu/costs +FD: net/minecraft/world/inventory/EnchantmentMenu/f_39447_ net/minecraft/world/inventory/EnchantmentMenu/enchantClue +FD: net/minecraft/world/inventory/EnchantmentMenu/f_39448_ net/minecraft/world/inventory/EnchantmentMenu/levelClue +FD: net/minecraft/world/inventory/EnchantmentMenu/f_39449_ net/minecraft/world/inventory/EnchantmentMenu/enchantSlots +FD: net/minecraft/world/inventory/EnchantmentMenu/f_39450_ net/minecraft/world/inventory/EnchantmentMenu/access +FD: net/minecraft/world/inventory/EnchantmentMenu/f_39451_ net/minecraft/world/inventory/EnchantmentMenu/random +FD: net/minecraft/world/inventory/EnchantmentMenu/f_39452_ net/minecraft/world/inventory/EnchantmentMenu/enchantmentSeed +FD: net/minecraft/world/inventory/EnchantmentMenu$1/f_39494_ net/minecraft/world/inventory/EnchantmentMenu$1/this$0 +FD: net/minecraft/world/inventory/EnchantmentMenu$2/f_39499_ net/minecraft/world/inventory/EnchantmentMenu$2/this$0 +FD: net/minecraft/world/inventory/EnchantmentMenu$3/f_39509_ net/minecraft/world/inventory/EnchantmentMenu$3/this$0 +FD: net/minecraft/world/inventory/FurnaceFuelSlot/f_39518_ net/minecraft/world/inventory/FurnaceFuelSlot/menu +FD: net/minecraft/world/inventory/FurnaceResultSlot/f_39539_ net/minecraft/world/inventory/FurnaceResultSlot/player +FD: net/minecraft/world/inventory/FurnaceResultSlot/f_39540_ net/minecraft/world/inventory/FurnaceResultSlot/removeCount +FD: net/minecraft/world/inventory/GrindstoneMenu/f_150565_ net/minecraft/world/inventory/GrindstoneMenu/MAX_NAME_LENGTH +FD: net/minecraft/world/inventory/GrindstoneMenu/f_150566_ net/minecraft/world/inventory/GrindstoneMenu/INPUT_SLOT +FD: net/minecraft/world/inventory/GrindstoneMenu/f_150567_ net/minecraft/world/inventory/GrindstoneMenu/ADDITIONAL_SLOT +FD: net/minecraft/world/inventory/GrindstoneMenu/f_150568_ net/minecraft/world/inventory/GrindstoneMenu/RESULT_SLOT +FD: net/minecraft/world/inventory/GrindstoneMenu/f_150569_ net/minecraft/world/inventory/GrindstoneMenu/INV_SLOT_START +FD: net/minecraft/world/inventory/GrindstoneMenu/f_150570_ net/minecraft/world/inventory/GrindstoneMenu/INV_SLOT_END +FD: net/minecraft/world/inventory/GrindstoneMenu/f_150571_ net/minecraft/world/inventory/GrindstoneMenu/USE_ROW_SLOT_START +FD: net/minecraft/world/inventory/GrindstoneMenu/f_150572_ net/minecraft/world/inventory/GrindstoneMenu/USE_ROW_SLOT_END +FD: net/minecraft/world/inventory/GrindstoneMenu/f_39559_ net/minecraft/world/inventory/GrindstoneMenu/resultSlots +FD: net/minecraft/world/inventory/GrindstoneMenu/f_39560_ net/minecraft/world/inventory/GrindstoneMenu/repairSlots +FD: net/minecraft/world/inventory/GrindstoneMenu/f_39561_ net/minecraft/world/inventory/GrindstoneMenu/access +FD: net/minecraft/world/inventory/GrindstoneMenu$1/f_39594_ net/minecraft/world/inventory/GrindstoneMenu$1/this$0 +FD: net/minecraft/world/inventory/GrindstoneMenu$2/f_39599_ net/minecraft/world/inventory/GrindstoneMenu$2/this$0 +FD: net/minecraft/world/inventory/GrindstoneMenu$3/f_39608_ net/minecraft/world/inventory/GrindstoneMenu$3/this$0 +FD: net/minecraft/world/inventory/GrindstoneMenu$4/f_39617_ net/minecraft/world/inventory/GrindstoneMenu$4/val$access +FD: net/minecraft/world/inventory/GrindstoneMenu$4/f_39618_ net/minecraft/world/inventory/GrindstoneMenu$4/this$0 +FD: net/minecraft/world/inventory/HopperMenu/f_150576_ net/minecraft/world/inventory/HopperMenu/CONTAINER_SIZE +FD: net/minecraft/world/inventory/HopperMenu/f_39638_ net/minecraft/world/inventory/HopperMenu/hopper +FD: net/minecraft/world/inventory/HorseInventoryMenu/f_39653_ net/minecraft/world/inventory/HorseInventoryMenu/horseContainer +FD: net/minecraft/world/inventory/HorseInventoryMenu/f_39654_ net/minecraft/world/inventory/HorseInventoryMenu/horse +FD: net/minecraft/world/inventory/HorseInventoryMenu$1/f_39667_ net/minecraft/world/inventory/HorseInventoryMenu$1/val$horse +FD: net/minecraft/world/inventory/HorseInventoryMenu$1/f_39668_ net/minecraft/world/inventory/HorseInventoryMenu$1/this$0 +FD: net/minecraft/world/inventory/HorseInventoryMenu$2/f_39679_ net/minecraft/world/inventory/HorseInventoryMenu$2/val$horse +FD: net/minecraft/world/inventory/HorseInventoryMenu$2/f_39680_ net/minecraft/world/inventory/HorseInventoryMenu$2/this$0 +FD: net/minecraft/world/inventory/InventoryMenu/f_150579_ net/minecraft/world/inventory/InventoryMenu/CONTAINER_ID +FD: net/minecraft/world/inventory/InventoryMenu/f_150580_ net/minecraft/world/inventory/InventoryMenu/RESULT_SLOT +FD: net/minecraft/world/inventory/InventoryMenu/f_150581_ net/minecraft/world/inventory/InventoryMenu/CRAFT_SLOT_START +FD: net/minecraft/world/inventory/InventoryMenu/f_150582_ net/minecraft/world/inventory/InventoryMenu/CRAFT_SLOT_END +FD: net/minecraft/world/inventory/InventoryMenu/f_150583_ net/minecraft/world/inventory/InventoryMenu/ARMOR_SLOT_START +FD: net/minecraft/world/inventory/InventoryMenu/f_150584_ net/minecraft/world/inventory/InventoryMenu/ARMOR_SLOT_END +FD: net/minecraft/world/inventory/InventoryMenu/f_150585_ net/minecraft/world/inventory/InventoryMenu/INV_SLOT_START +FD: net/minecraft/world/inventory/InventoryMenu/f_150586_ net/minecraft/world/inventory/InventoryMenu/INV_SLOT_END +FD: net/minecraft/world/inventory/InventoryMenu/f_150587_ net/minecraft/world/inventory/InventoryMenu/USE_ROW_SLOT_START +FD: net/minecraft/world/inventory/InventoryMenu/f_150588_ net/minecraft/world/inventory/InventoryMenu/USE_ROW_SLOT_END +FD: net/minecraft/world/inventory/InventoryMenu/f_150589_ net/minecraft/world/inventory/InventoryMenu/SHIELD_SLOT +FD: net/minecraft/world/inventory/InventoryMenu/f_39692_ net/minecraft/world/inventory/InventoryMenu/BLOCK_ATLAS +FD: net/minecraft/world/inventory/InventoryMenu/f_39693_ net/minecraft/world/inventory/InventoryMenu/EMPTY_ARMOR_SLOT_HELMET +FD: net/minecraft/world/inventory/InventoryMenu/f_39694_ net/minecraft/world/inventory/InventoryMenu/EMPTY_ARMOR_SLOT_CHESTPLATE +FD: net/minecraft/world/inventory/InventoryMenu/f_39695_ net/minecraft/world/inventory/InventoryMenu/EMPTY_ARMOR_SLOT_LEGGINGS +FD: net/minecraft/world/inventory/InventoryMenu/f_39696_ net/minecraft/world/inventory/InventoryMenu/EMPTY_ARMOR_SLOT_BOOTS +FD: net/minecraft/world/inventory/InventoryMenu/f_39697_ net/minecraft/world/inventory/InventoryMenu/EMPTY_ARMOR_SLOT_SHIELD +FD: net/minecraft/world/inventory/InventoryMenu/f_39698_ net/minecraft/world/inventory/InventoryMenu/active +FD: net/minecraft/world/inventory/InventoryMenu/f_39699_ net/minecraft/world/inventory/InventoryMenu/TEXTURE_EMPTY_SLOTS +FD: net/minecraft/world/inventory/InventoryMenu/f_39700_ net/minecraft/world/inventory/InventoryMenu/SLOT_IDS +FD: net/minecraft/world/inventory/InventoryMenu/f_39701_ net/minecraft/world/inventory/InventoryMenu/craftSlots +FD: net/minecraft/world/inventory/InventoryMenu/f_39702_ net/minecraft/world/inventory/InventoryMenu/resultSlots +FD: net/minecraft/world/inventory/InventoryMenu/f_39703_ net/minecraft/world/inventory/InventoryMenu/owner +FD: net/minecraft/world/inventory/InventoryMenu$1/f_219975_ net/minecraft/world/inventory/InventoryMenu$1/val$owner +FD: net/minecraft/world/inventory/InventoryMenu$1/f_39733_ net/minecraft/world/inventory/InventoryMenu$1/val$slot +FD: net/minecraft/world/inventory/InventoryMenu$1/f_39734_ net/minecraft/world/inventory/InventoryMenu$1/this$0 +FD: net/minecraft/world/inventory/InventoryMenu$2/f_268492_ net/minecraft/world/inventory/InventoryMenu$2/val$owner +FD: net/minecraft/world/inventory/InventoryMenu$2/f_39748_ net/minecraft/world/inventory/InventoryMenu$2/this$0 +FD: net/minecraft/world/inventory/ItemCombinerMenu/f_265978_ net/minecraft/world/inventory/ItemCombinerMenu/INVENTORY_SLOTS_PER_ROW +FD: net/minecraft/world/inventory/ItemCombinerMenu/f_266048_ net/minecraft/world/inventory/ItemCombinerMenu/resultSlotIndex +FD: net/minecraft/world/inventory/ItemCombinerMenu/f_266084_ net/minecraft/world/inventory/ItemCombinerMenu/INVENTORY_SLOTS_PER_COLUMN +FD: net/minecraft/world/inventory/ItemCombinerMenu/f_266110_ net/minecraft/world/inventory/ItemCombinerMenu/inputSlotIndexes +FD: net/minecraft/world/inventory/ItemCombinerMenu/f_39768_ net/minecraft/world/inventory/ItemCombinerMenu/resultSlots +FD: net/minecraft/world/inventory/ItemCombinerMenu/f_39769_ net/minecraft/world/inventory/ItemCombinerMenu/inputSlots +FD: net/minecraft/world/inventory/ItemCombinerMenu/f_39770_ net/minecraft/world/inventory/ItemCombinerMenu/access +FD: net/minecraft/world/inventory/ItemCombinerMenu/f_39771_ net/minecraft/world/inventory/ItemCombinerMenu/player +FD: net/minecraft/world/inventory/ItemCombinerMenu$1/f_266105_ net/minecraft/world/inventory/ItemCombinerMenu$1/val$slot +FD: net/minecraft/world/inventory/ItemCombinerMenu$1/f_39800_ net/minecraft/world/inventory/ItemCombinerMenu$1/this$0 +FD: net/minecraft/world/inventory/ItemCombinerMenu$2/f_39805_ net/minecraft/world/inventory/ItemCombinerMenu$2/this$0 +FD: net/minecraft/world/inventory/ItemCombinerMenu$3/f_265891_ net/minecraft/world/inventory/ItemCombinerMenu$3/this$0 +FD: net/minecraft/world/inventory/ItemCombinerMenuSlotDefinition/f_265921_ net/minecraft/world/inventory/ItemCombinerMenuSlotDefinition/resultSlot +FD: net/minecraft/world/inventory/ItemCombinerMenuSlotDefinition/f_266033_ net/minecraft/world/inventory/ItemCombinerMenuSlotDefinition/slots +FD: net/minecraft/world/inventory/ItemCombinerMenuSlotDefinition$Builder/f_265930_ net/minecraft/world/inventory/ItemCombinerMenuSlotDefinition$Builder/slots +FD: net/minecraft/world/inventory/ItemCombinerMenuSlotDefinition$Builder/f_266115_ net/minecraft/world/inventory/ItemCombinerMenuSlotDefinition$Builder/resultSlot +FD: net/minecraft/world/inventory/ItemCombinerMenuSlotDefinition$SlotDefinition/f_265897_ net/minecraft/world/inventory/ItemCombinerMenuSlotDefinition$SlotDefinition/mayPlace +FD: net/minecraft/world/inventory/ItemCombinerMenuSlotDefinition$SlotDefinition/f_265926_ net/minecraft/world/inventory/ItemCombinerMenuSlotDefinition$SlotDefinition/y +FD: net/minecraft/world/inventory/ItemCombinerMenuSlotDefinition$SlotDefinition/f_266065_ net/minecraft/world/inventory/ItemCombinerMenuSlotDefinition$SlotDefinition/x +FD: net/minecraft/world/inventory/ItemCombinerMenuSlotDefinition$SlotDefinition/f_266077_ net/minecraft/world/inventory/ItemCombinerMenuSlotDefinition$SlotDefinition/EMPTY +FD: net/minecraft/world/inventory/ItemCombinerMenuSlotDefinition$SlotDefinition/f_266086_ net/minecraft/world/inventory/ItemCombinerMenuSlotDefinition$SlotDefinition/slotIndex +FD: net/minecraft/world/inventory/LecternMenu/f_150606_ net/minecraft/world/inventory/LecternMenu/BUTTON_PREV_PAGE +FD: net/minecraft/world/inventory/LecternMenu/f_150607_ net/minecraft/world/inventory/LecternMenu/BUTTON_NEXT_PAGE +FD: net/minecraft/world/inventory/LecternMenu/f_150608_ net/minecraft/world/inventory/LecternMenu/BUTTON_TAKE_BOOK +FD: net/minecraft/world/inventory/LecternMenu/f_150609_ net/minecraft/world/inventory/LecternMenu/BUTTON_PAGE_JUMP_RANGE_START +FD: net/minecraft/world/inventory/LecternMenu/f_150610_ net/minecraft/world/inventory/LecternMenu/DATA_COUNT +FD: net/minecraft/world/inventory/LecternMenu/f_150611_ net/minecraft/world/inventory/LecternMenu/SLOT_COUNT +FD: net/minecraft/world/inventory/LecternMenu/f_39819_ net/minecraft/world/inventory/LecternMenu/lectern +FD: net/minecraft/world/inventory/LecternMenu/f_39820_ net/minecraft/world/inventory/LecternMenu/lecternData +FD: net/minecraft/world/inventory/LecternMenu$1/f_39837_ net/minecraft/world/inventory/LecternMenu$1/this$0 +FD: net/minecraft/world/inventory/LoomMenu/f_150612_ net/minecraft/world/inventory/LoomMenu/INV_SLOT_START +FD: net/minecraft/world/inventory/LoomMenu/f_150613_ net/minecraft/world/inventory/LoomMenu/INV_SLOT_END +FD: net/minecraft/world/inventory/LoomMenu/f_150614_ net/minecraft/world/inventory/LoomMenu/USE_ROW_SLOT_START +FD: net/minecraft/world/inventory/LoomMenu/f_150615_ net/minecraft/world/inventory/LoomMenu/USE_ROW_SLOT_END +FD: net/minecraft/world/inventory/LoomMenu/f_219989_ net/minecraft/world/inventory/LoomMenu/PATTERN_NOT_SET +FD: net/minecraft/world/inventory/LoomMenu/f_219990_ net/minecraft/world/inventory/LoomMenu/selectablePatterns +FD: net/minecraft/world/inventory/LoomMenu/f_39845_ net/minecraft/world/inventory/LoomMenu/access +FD: net/minecraft/world/inventory/LoomMenu/f_39846_ net/minecraft/world/inventory/LoomMenu/selectedBannerPatternIndex +FD: net/minecraft/world/inventory/LoomMenu/f_39847_ net/minecraft/world/inventory/LoomMenu/slotUpdateListener +FD: net/minecraft/world/inventory/LoomMenu/f_39848_ net/minecraft/world/inventory/LoomMenu/bannerSlot +FD: net/minecraft/world/inventory/LoomMenu/f_39849_ net/minecraft/world/inventory/LoomMenu/dyeSlot +FD: net/minecraft/world/inventory/LoomMenu/f_39850_ net/minecraft/world/inventory/LoomMenu/patternSlot +FD: net/minecraft/world/inventory/LoomMenu/f_39851_ net/minecraft/world/inventory/LoomMenu/resultSlot +FD: net/minecraft/world/inventory/LoomMenu/f_39852_ net/minecraft/world/inventory/LoomMenu/lastSoundTime +FD: net/minecraft/world/inventory/LoomMenu/f_39853_ net/minecraft/world/inventory/LoomMenu/inputContainer +FD: net/minecraft/world/inventory/LoomMenu/f_39854_ net/minecraft/world/inventory/LoomMenu/outputContainer +FD: net/minecraft/world/inventory/LoomMenu$1/f_39900_ net/minecraft/world/inventory/LoomMenu$1/this$0 +FD: net/minecraft/world/inventory/LoomMenu$2/f_39905_ net/minecraft/world/inventory/LoomMenu$2/this$0 +FD: net/minecraft/world/inventory/LoomMenu$3/f_39910_ net/minecraft/world/inventory/LoomMenu$3/this$0 +FD: net/minecraft/world/inventory/LoomMenu$4/f_39919_ net/minecraft/world/inventory/LoomMenu$4/this$0 +FD: net/minecraft/world/inventory/LoomMenu$5/f_39928_ net/minecraft/world/inventory/LoomMenu$5/this$0 +FD: net/minecraft/world/inventory/LoomMenu$6/f_39937_ net/minecraft/world/inventory/LoomMenu$6/val$access +FD: net/minecraft/world/inventory/LoomMenu$6/f_39938_ net/minecraft/world/inventory/LoomMenu$6/this$0 +FD: net/minecraft/world/inventory/MenuType/f_265869_ net/minecraft/world/inventory/MenuType/requiredFeatures +FD: net/minecraft/world/inventory/MenuType/f_39957_ net/minecraft/world/inventory/MenuType/GENERIC_9x1 +FD: net/minecraft/world/inventory/MenuType/f_39958_ net/minecraft/world/inventory/MenuType/GENERIC_9x2 +FD: net/minecraft/world/inventory/MenuType/f_39959_ net/minecraft/world/inventory/MenuType/GENERIC_9x3 +FD: net/minecraft/world/inventory/MenuType/f_39960_ net/minecraft/world/inventory/MenuType/GENERIC_9x4 +FD: net/minecraft/world/inventory/MenuType/f_39961_ net/minecraft/world/inventory/MenuType/GENERIC_9x5 +FD: net/minecraft/world/inventory/MenuType/f_39962_ net/minecraft/world/inventory/MenuType/GENERIC_9x6 +FD: net/minecraft/world/inventory/MenuType/f_39963_ net/minecraft/world/inventory/MenuType/GENERIC_3x3 +FD: net/minecraft/world/inventory/MenuType/f_39964_ net/minecraft/world/inventory/MenuType/ANVIL +FD: net/minecraft/world/inventory/MenuType/f_39965_ net/minecraft/world/inventory/MenuType/BEACON +FD: net/minecraft/world/inventory/MenuType/f_39966_ net/minecraft/world/inventory/MenuType/BLAST_FURNACE +FD: net/minecraft/world/inventory/MenuType/f_39967_ net/minecraft/world/inventory/MenuType/BREWING_STAND +FD: net/minecraft/world/inventory/MenuType/f_39968_ net/minecraft/world/inventory/MenuType/CRAFTING +FD: net/minecraft/world/inventory/MenuType/f_39969_ net/minecraft/world/inventory/MenuType/ENCHANTMENT +FD: net/minecraft/world/inventory/MenuType/f_39970_ net/minecraft/world/inventory/MenuType/FURNACE +FD: net/minecraft/world/inventory/MenuType/f_39971_ net/minecraft/world/inventory/MenuType/GRINDSTONE +FD: net/minecraft/world/inventory/MenuType/f_39972_ net/minecraft/world/inventory/MenuType/HOPPER +FD: net/minecraft/world/inventory/MenuType/f_39973_ net/minecraft/world/inventory/MenuType/LECTERN +FD: net/minecraft/world/inventory/MenuType/f_39974_ net/minecraft/world/inventory/MenuType/LOOM +FD: net/minecraft/world/inventory/MenuType/f_39975_ net/minecraft/world/inventory/MenuType/MERCHANT +FD: net/minecraft/world/inventory/MenuType/f_39976_ net/minecraft/world/inventory/MenuType/SHULKER_BOX +FD: net/minecraft/world/inventory/MenuType/f_39977_ net/minecraft/world/inventory/MenuType/SMITHING +FD: net/minecraft/world/inventory/MenuType/f_39978_ net/minecraft/world/inventory/MenuType/SMOKER +FD: net/minecraft/world/inventory/MenuType/f_39979_ net/minecraft/world/inventory/MenuType/CARTOGRAPHY_TABLE +FD: net/minecraft/world/inventory/MenuType/f_39980_ net/minecraft/world/inventory/MenuType/STONECUTTER +FD: net/minecraft/world/inventory/MenuType/f_39981_ net/minecraft/world/inventory/MenuType/constructor +FD: net/minecraft/world/inventory/MerchantContainer/f_39997_ net/minecraft/world/inventory/MerchantContainer/merchant +FD: net/minecraft/world/inventory/MerchantContainer/f_39998_ net/minecraft/world/inventory/MerchantContainer/itemStacks +FD: net/minecraft/world/inventory/MerchantContainer/f_39999_ net/minecraft/world/inventory/MerchantContainer/activeOffer +FD: net/minecraft/world/inventory/MerchantContainer/f_40000_ net/minecraft/world/inventory/MerchantContainer/selectionHint +FD: net/minecraft/world/inventory/MerchantContainer/f_40001_ net/minecraft/world/inventory/MerchantContainer/futureXp +FD: net/minecraft/world/inventory/MerchantMenu/f_150619_ net/minecraft/world/inventory/MerchantMenu/PAYMENT1_SLOT +FD: net/minecraft/world/inventory/MerchantMenu/f_150620_ net/minecraft/world/inventory/MerchantMenu/PAYMENT2_SLOT +FD: net/minecraft/world/inventory/MerchantMenu/f_150621_ net/minecraft/world/inventory/MerchantMenu/RESULT_SLOT +FD: net/minecraft/world/inventory/MerchantMenu/f_150622_ net/minecraft/world/inventory/MerchantMenu/INV_SLOT_START +FD: net/minecraft/world/inventory/MerchantMenu/f_150623_ net/minecraft/world/inventory/MerchantMenu/INV_SLOT_END +FD: net/minecraft/world/inventory/MerchantMenu/f_150624_ net/minecraft/world/inventory/MerchantMenu/USE_ROW_SLOT_START +FD: net/minecraft/world/inventory/MerchantMenu/f_150625_ net/minecraft/world/inventory/MerchantMenu/USE_ROW_SLOT_END +FD: net/minecraft/world/inventory/MerchantMenu/f_150626_ net/minecraft/world/inventory/MerchantMenu/SELLSLOT1_X +FD: net/minecraft/world/inventory/MerchantMenu/f_150627_ net/minecraft/world/inventory/MerchantMenu/SELLSLOT2_X +FD: net/minecraft/world/inventory/MerchantMenu/f_150628_ net/minecraft/world/inventory/MerchantMenu/BUYSLOT_X +FD: net/minecraft/world/inventory/MerchantMenu/f_150629_ net/minecraft/world/inventory/MerchantMenu/ROW_Y +FD: net/minecraft/world/inventory/MerchantMenu/f_40027_ net/minecraft/world/inventory/MerchantMenu/trader +FD: net/minecraft/world/inventory/MerchantMenu/f_40028_ net/minecraft/world/inventory/MerchantMenu/tradeContainer +FD: net/minecraft/world/inventory/MerchantMenu/f_40029_ net/minecraft/world/inventory/MerchantMenu/merchantLevel +FD: net/minecraft/world/inventory/MerchantMenu/f_40030_ net/minecraft/world/inventory/MerchantMenu/showProgressBar +FD: net/minecraft/world/inventory/MerchantMenu/f_40031_ net/minecraft/world/inventory/MerchantMenu/canRestock +FD: net/minecraft/world/inventory/MerchantResultSlot/f_40078_ net/minecraft/world/inventory/MerchantResultSlot/slots +FD: net/minecraft/world/inventory/MerchantResultSlot/f_40079_ net/minecraft/world/inventory/MerchantResultSlot/player +FD: net/minecraft/world/inventory/MerchantResultSlot/f_40080_ net/minecraft/world/inventory/MerchantResultSlot/removeCount +FD: net/minecraft/world/inventory/MerchantResultSlot/f_40081_ net/minecraft/world/inventory/MerchantResultSlot/merchant +FD: net/minecraft/world/inventory/PlayerEnderChestContainer/f_40101_ net/minecraft/world/inventory/PlayerEnderChestContainer/activeChest +FD: net/minecraft/world/inventory/RecipeBookType/$VALUES net/minecraft/world/inventory/RecipeBookType/$VALUES +FD: net/minecraft/world/inventory/RecipeBookType/BLAST_FURNACE net/minecraft/world/inventory/RecipeBookType/BLAST_FURNACE +FD: net/minecraft/world/inventory/RecipeBookType/CRAFTING net/minecraft/world/inventory/RecipeBookType/CRAFTING +FD: net/minecraft/world/inventory/RecipeBookType/FURNACE net/minecraft/world/inventory/RecipeBookType/FURNACE +FD: net/minecraft/world/inventory/RecipeBookType/SMOKER net/minecraft/world/inventory/RecipeBookType/SMOKER +FD: net/minecraft/world/inventory/ResultContainer/f_40140_ net/minecraft/world/inventory/ResultContainer/itemStacks +FD: net/minecraft/world/inventory/ResultContainer/f_40141_ net/minecraft/world/inventory/ResultContainer/recipeUsed +FD: net/minecraft/world/inventory/ResultSlot/f_40162_ net/minecraft/world/inventory/ResultSlot/craftSlots +FD: net/minecraft/world/inventory/ResultSlot/f_40163_ net/minecraft/world/inventory/ResultSlot/player +FD: net/minecraft/world/inventory/ResultSlot/f_40164_ net/minecraft/world/inventory/ResultSlot/removeCount +FD: net/minecraft/world/inventory/ShulkerBoxMenu/f_150640_ net/minecraft/world/inventory/ShulkerBoxMenu/CONTAINER_SIZE +FD: net/minecraft/world/inventory/ShulkerBoxMenu/f_40186_ net/minecraft/world/inventory/ShulkerBoxMenu/container +FD: net/minecraft/world/inventory/SimpleContainerData/f_40208_ net/minecraft/world/inventory/SimpleContainerData/ints +FD: net/minecraft/world/inventory/Slot/f_40217_ net/minecraft/world/inventory/Slot/slot +FD: net/minecraft/world/inventory/Slot/f_40218_ net/minecraft/world/inventory/Slot/container +FD: net/minecraft/world/inventory/Slot/f_40219_ net/minecraft/world/inventory/Slot/index +FD: net/minecraft/world/inventory/Slot/f_40220_ net/minecraft/world/inventory/Slot/x +FD: net/minecraft/world/inventory/Slot/f_40221_ net/minecraft/world/inventory/Slot/y +FD: net/minecraft/world/inventory/SmithingMenu/f_265851_ net/minecraft/world/inventory/SmithingMenu/RESULT_SLOT_X_PLACEMENT +FD: net/minecraft/world/inventory/SmithingMenu/f_265899_ net/minecraft/world/inventory/SmithingMenu/ADDITIONAL_SLOT_X_PLACEMENT +FD: net/minecraft/world/inventory/SmithingMenu/f_265913_ net/minecraft/world/inventory/SmithingMenu/TEMPLATE_SLOT_X_PLACEMENT +FD: net/minecraft/world/inventory/SmithingMenu/f_265928_ net/minecraft/world/inventory/SmithingMenu/ADDITIONAL_SLOT +FD: net/minecraft/world/inventory/SmithingMenu/f_266015_ net/minecraft/world/inventory/SmithingMenu/TEMPLATE_SLOT +FD: net/minecraft/world/inventory/SmithingMenu/f_266024_ net/minecraft/world/inventory/SmithingMenu/RESULT_SLOT +FD: net/minecraft/world/inventory/SmithingMenu/f_266035_ net/minecraft/world/inventory/SmithingMenu/BASE_SLOT +FD: net/minecraft/world/inventory/SmithingMenu/f_266041_ net/minecraft/world/inventory/SmithingMenu/BASE_SLOT_X_PLACEMENT +FD: net/minecraft/world/inventory/SmithingMenu/f_266111_ net/minecraft/world/inventory/SmithingMenu/SLOT_Y_PLACEMENT +FD: net/minecraft/world/inventory/SmithingMenu/f_40241_ net/minecraft/world/inventory/SmithingMenu/level +FD: net/minecraft/world/inventory/SmithingMenu/f_40242_ net/minecraft/world/inventory/SmithingMenu/selectedRecipe +FD: net/minecraft/world/inventory/SmithingMenu/f_40243_ net/minecraft/world/inventory/SmithingMenu/recipes +FD: net/minecraft/world/inventory/StonecutterMenu/f_150665_ net/minecraft/world/inventory/StonecutterMenu/INPUT_SLOT +FD: net/minecraft/world/inventory/StonecutterMenu/f_150666_ net/minecraft/world/inventory/StonecutterMenu/RESULT_SLOT +FD: net/minecraft/world/inventory/StonecutterMenu/f_150667_ net/minecraft/world/inventory/StonecutterMenu/INV_SLOT_START +FD: net/minecraft/world/inventory/StonecutterMenu/f_150668_ net/minecraft/world/inventory/StonecutterMenu/INV_SLOT_END +FD: net/minecraft/world/inventory/StonecutterMenu/f_150669_ net/minecraft/world/inventory/StonecutterMenu/USE_ROW_SLOT_START +FD: net/minecraft/world/inventory/StonecutterMenu/f_150670_ net/minecraft/world/inventory/StonecutterMenu/USE_ROW_SLOT_END +FD: net/minecraft/world/inventory/StonecutterMenu/f_40282_ net/minecraft/world/inventory/StonecutterMenu/inputSlot +FD: net/minecraft/world/inventory/StonecutterMenu/f_40283_ net/minecraft/world/inventory/StonecutterMenu/resultSlot +FD: net/minecraft/world/inventory/StonecutterMenu/f_40284_ net/minecraft/world/inventory/StonecutterMenu/container +FD: net/minecraft/world/inventory/StonecutterMenu/f_40285_ net/minecraft/world/inventory/StonecutterMenu/access +FD: net/minecraft/world/inventory/StonecutterMenu/f_40286_ net/minecraft/world/inventory/StonecutterMenu/selectedRecipeIndex +FD: net/minecraft/world/inventory/StonecutterMenu/f_40287_ net/minecraft/world/inventory/StonecutterMenu/level +FD: net/minecraft/world/inventory/StonecutterMenu/f_40288_ net/minecraft/world/inventory/StonecutterMenu/recipes +FD: net/minecraft/world/inventory/StonecutterMenu/f_40289_ net/minecraft/world/inventory/StonecutterMenu/input +FD: net/minecraft/world/inventory/StonecutterMenu/f_40290_ net/minecraft/world/inventory/StonecutterMenu/lastSoundTime +FD: net/minecraft/world/inventory/StonecutterMenu/f_40291_ net/minecraft/world/inventory/StonecutterMenu/slotUpdateListener +FD: net/minecraft/world/inventory/StonecutterMenu/f_40292_ net/minecraft/world/inventory/StonecutterMenu/resultContainer +FD: net/minecraft/world/inventory/StonecutterMenu$1/f_40344_ net/minecraft/world/inventory/StonecutterMenu$1/this$0 +FD: net/minecraft/world/inventory/StonecutterMenu$2/f_40349_ net/minecraft/world/inventory/StonecutterMenu$2/val$access +FD: net/minecraft/world/inventory/StonecutterMenu$2/f_40350_ net/minecraft/world/inventory/StonecutterMenu$2/this$0 +FD: net/minecraft/world/inventory/TransientCraftingContainer/f_286951_ net/minecraft/world/inventory/TransientCraftingContainer/items +FD: net/minecraft/world/inventory/TransientCraftingContainer/f_286956_ net/minecraft/world/inventory/TransientCraftingContainer/width +FD: net/minecraft/world/inventory/TransientCraftingContainer/f_286972_ net/minecraft/world/inventory/TransientCraftingContainer/height +FD: net/minecraft/world/inventory/TransientCraftingContainer/f_286998_ net/minecraft/world/inventory/TransientCraftingContainer/menu +FD: net/minecraft/world/inventory/tooltip/BundleTooltip/f_150674_ net/minecraft/world/inventory/tooltip/BundleTooltip/items +FD: net/minecraft/world/inventory/tooltip/BundleTooltip/f_150675_ net/minecraft/world/inventory/tooltip/BundleTooltip/weight +FD: net/minecraft/world/item/AdventureModeCheck/f_186321_ net/minecraft/world/item/AdventureModeCheck/tagName +FD: net/minecraft/world/item/AdventureModeCheck/f_186322_ net/minecraft/world/item/AdventureModeCheck/lastCheckedBlock +FD: net/minecraft/world/item/AdventureModeCheck/f_186323_ net/minecraft/world/item/AdventureModeCheck/lastResult +FD: net/minecraft/world/item/AdventureModeCheck/f_186324_ net/minecraft/world/item/AdventureModeCheck/checksBlockEntity +FD: net/minecraft/world/item/AirItem/f_40366_ net/minecraft/world/item/AirItem/block +FD: net/minecraft/world/item/ArmorItem/f_265916_ net/minecraft/world/item/ArmorItem/type +FD: net/minecraft/world/item/ArmorItem/f_265987_ net/minecraft/world/item/ArmorItem/ARMOR_MODIFIER_UUID_PER_TYPE +FD: net/minecraft/world/item/ArmorItem/f_40376_ net/minecraft/world/item/ArmorItem/DISPENSE_ITEM_BEHAVIOR +FD: net/minecraft/world/item/ArmorItem/f_40378_ net/minecraft/world/item/ArmorItem/knockbackResistance +FD: net/minecraft/world/item/ArmorItem/f_40379_ net/minecraft/world/item/ArmorItem/material +FD: net/minecraft/world/item/ArmorItem/f_40381_ net/minecraft/world/item/ArmorItem/defense +FD: net/minecraft/world/item/ArmorItem/f_40382_ net/minecraft/world/item/ArmorItem/toughness +FD: net/minecraft/world/item/ArmorItem/f_40383_ net/minecraft/world/item/ArmorItem/defaultModifiers +FD: net/minecraft/world/item/ArmorItem$Type/$VALUES net/minecraft/world/item/ArmorItem$Type/$VALUES +FD: net/minecraft/world/item/ArmorItem$Type/BOOTS net/minecraft/world/item/ArmorItem$Type/BOOTS +FD: net/minecraft/world/item/ArmorItem$Type/CHESTPLATE net/minecraft/world/item/ArmorItem$Type/CHESTPLATE +FD: net/minecraft/world/item/ArmorItem$Type/HELMET net/minecraft/world/item/ArmorItem$Type/HELMET +FD: net/minecraft/world/item/ArmorItem$Type/LEGGINGS net/minecraft/world/item/ArmorItem$Type/LEGGINGS +FD: net/minecraft/world/item/ArmorItem$Type/f_265980_ net/minecraft/world/item/ArmorItem$Type/slot +FD: net/minecraft/world/item/ArmorItem$Type/f_266116_ net/minecraft/world/item/ArmorItem$Type/name +FD: net/minecraft/world/item/ArmorMaterials/$VALUES net/minecraft/world/item/ArmorMaterials/$VALUES +FD: net/minecraft/world/item/ArmorMaterials/CHAIN net/minecraft/world/item/ArmorMaterials/CHAIN +FD: net/minecraft/world/item/ArmorMaterials/DIAMOND net/minecraft/world/item/ArmorMaterials/DIAMOND +FD: net/minecraft/world/item/ArmorMaterials/GOLD net/minecraft/world/item/ArmorMaterials/GOLD +FD: net/minecraft/world/item/ArmorMaterials/IRON net/minecraft/world/item/ArmorMaterials/IRON +FD: net/minecraft/world/item/ArmorMaterials/LEATHER net/minecraft/world/item/ArmorMaterials/LEATHER +FD: net/minecraft/world/item/ArmorMaterials/NETHERITE net/minecraft/world/item/ArmorMaterials/NETHERITE +FD: net/minecraft/world/item/ArmorMaterials/TURTLE net/minecraft/world/item/ArmorMaterials/TURTLE +FD: net/minecraft/world/item/ArmorMaterials/f_265935_ net/minecraft/world/item/ArmorMaterials/CODEC +FD: net/minecraft/world/item/ArmorMaterials/f_265966_ net/minecraft/world/item/ArmorMaterials/protectionFunctionForType +FD: net/minecraft/world/item/ArmorMaterials/f_266010_ net/minecraft/world/item/ArmorMaterials/HEALTH_FUNCTION_FOR_TYPE +FD: net/minecraft/world/item/ArmorMaterials/f_40461_ net/minecraft/world/item/ArmorMaterials/name +FD: net/minecraft/world/item/ArmorMaterials/f_40462_ net/minecraft/world/item/ArmorMaterials/durabilityMultiplier +FD: net/minecraft/world/item/ArmorMaterials/f_40464_ net/minecraft/world/item/ArmorMaterials/enchantmentValue +FD: net/minecraft/world/item/ArmorMaterials/f_40465_ net/minecraft/world/item/ArmorMaterials/sound +FD: net/minecraft/world/item/ArmorMaterials/f_40466_ net/minecraft/world/item/ArmorMaterials/toughness +FD: net/minecraft/world/item/ArmorMaterials/f_40467_ net/minecraft/world/item/ArmorMaterials/knockbackResistance +FD: net/minecraft/world/item/ArmorMaterials/f_40468_ net/minecraft/world/item/ArmorMaterials/repairIngredient +FD: net/minecraft/world/item/AxeItem/f_150683_ net/minecraft/world/item/AxeItem/STRIPPABLES +FD: net/minecraft/world/item/BannerItem/f_150695_ net/minecraft/world/item/BannerItem/PATTERN_PREFIX +FD: net/minecraft/world/item/BannerPatternItem/f_40546_ net/minecraft/world/item/BannerPatternItem/bannerPattern +FD: net/minecraft/world/item/BlockItem/f_150696_ net/minecraft/world/item/BlockItem/BLOCK_ENTITY_TAG +FD: net/minecraft/world/item/BlockItem/f_150697_ net/minecraft/world/item/BlockItem/BLOCK_STATE_TAG +FD: net/minecraft/world/item/BlockItem/f_40563_ net/minecraft/world/item/BlockItem/block +FD: net/minecraft/world/item/BoatItem/f_220011_ net/minecraft/world/item/BoatItem/hasChest +FD: net/minecraft/world/item/BoatItem/f_40615_ net/minecraft/world/item/BoatItem/ENTITY_PREDICATE +FD: net/minecraft/world/item/BoatItem/f_40616_ net/minecraft/world/item/BoatItem/type +FD: net/minecraft/world/item/BoneMealItem/f_150701_ net/minecraft/world/item/BoneMealItem/GRASS_SPREAD_WIDTH +FD: net/minecraft/world/item/BoneMealItem/f_150702_ net/minecraft/world/item/BoneMealItem/GRASS_SPREAD_HEIGHT +FD: net/minecraft/world/item/BoneMealItem/f_150703_ net/minecraft/world/item/BoneMealItem/GRASS_COUNT_MULTIPLIER +FD: net/minecraft/world/item/BowItem/f_150704_ net/minecraft/world/item/BowItem/MAX_DRAW_DURATION +FD: net/minecraft/world/item/BowItem/f_150705_ net/minecraft/world/item/BowItem/DEFAULT_RANGE +FD: net/minecraft/world/item/BrushItem/f_271380_ net/minecraft/world/item/BrushItem/USE_DURATION +FD: net/minecraft/world/item/BrushItem/f_278125_ net/minecraft/world/item/BrushItem/ANIMATION_DURATION +FD: net/minecraft/world/item/BrushItem/f_279643_ net/minecraft/world/item/BrushItem/MAX_BRUSH_DISTANCE +FD: net/minecraft/world/item/BrushItem$1/f_271131_ net/minecraft/world/item/BrushItem$1/$SwitchMap$net$minecraft$core$Direction +FD: net/minecraft/world/item/BrushItem$DustParticlesDelta/f_271284_ net/minecraft/world/item/BrushItem$DustParticlesDelta/yd +FD: net/minecraft/world/item/BrushItem$DustParticlesDelta/f_271382_ net/minecraft/world/item/BrushItem$DustParticlesDelta/ALONG_SIDE_DELTA +FD: net/minecraft/world/item/BrushItem$DustParticlesDelta/f_271440_ net/minecraft/world/item/BrushItem$DustParticlesDelta/OUT_FROM_SIDE_DELTA +FD: net/minecraft/world/item/BrushItem$DustParticlesDelta/f_271456_ net/minecraft/world/item/BrushItem$DustParticlesDelta/xd +FD: net/minecraft/world/item/BrushItem$DustParticlesDelta/f_271522_ net/minecraft/world/item/BrushItem$DustParticlesDelta/zd +FD: net/minecraft/world/item/BucketItem/f_40687_ net/minecraft/world/item/BucketItem/content +FD: net/minecraft/world/item/BundleItem/f_150720_ net/minecraft/world/item/BundleItem/MAX_WEIGHT +FD: net/minecraft/world/item/BundleItem/f_150721_ net/minecraft/world/item/BundleItem/TAG_ITEMS +FD: net/minecraft/world/item/BundleItem/f_150722_ net/minecraft/world/item/BundleItem/BUNDLE_IN_BUNDLE_WEIGHT +FD: net/minecraft/world/item/BundleItem/f_150723_ net/minecraft/world/item/BundleItem/BAR_COLOR +FD: net/minecraft/world/item/CompassItem/f_150786_ net/minecraft/world/item/CompassItem/TAG_LODESTONE_POS +FD: net/minecraft/world/item/CompassItem/f_150787_ net/minecraft/world/item/CompassItem/TAG_LODESTONE_DIMENSION +FD: net/minecraft/world/item/CompassItem/f_150788_ net/minecraft/world/item/CompassItem/TAG_LODESTONE_TRACKED +FD: net/minecraft/world/item/CompassItem/f_40715_ net/minecraft/world/item/CompassItem/LOGGER +FD: net/minecraft/world/item/CreativeModeTab/f_243839_ net/minecraft/world/item/CreativeModeTab/displayItems +FD: net/minecraft/world/item/CreativeModeTab/f_243841_ net/minecraft/world/item/CreativeModeTab/displayItemsSearchTab +FD: net/minecraft/world/item/CreativeModeTab/f_256819_ net/minecraft/world/item/CreativeModeTab/type +FD: net/minecraft/world/item/CreativeModeTab/f_256824_ net/minecraft/world/item/CreativeModeTab/displayItemsGenerator +FD: net/minecraft/world/item/CreativeModeTab/f_256912_ net/minecraft/world/item/CreativeModeTab/iconGenerator +FD: net/minecraft/world/item/CreativeModeTab/f_256931_ net/minecraft/world/item/CreativeModeTab/row +FD: net/minecraft/world/item/CreativeModeTab/f_256965_ net/minecraft/world/item/CreativeModeTab/searchTreeBuilder +FD: net/minecraft/world/item/CreativeModeTab/f_256967_ net/minecraft/world/item/CreativeModeTab/column +FD: net/minecraft/world/item/CreativeModeTab/f_257018_ net/minecraft/world/item/CreativeModeTab/alignedRight +FD: net/minecraft/world/item/CreativeModeTab/f_40764_ net/minecraft/world/item/CreativeModeTab/displayName +FD: net/minecraft/world/item/CreativeModeTab/f_40766_ net/minecraft/world/item/CreativeModeTab/backgroundSuffix +FD: net/minecraft/world/item/CreativeModeTab/f_40767_ net/minecraft/world/item/CreativeModeTab/canScroll +FD: net/minecraft/world/item/CreativeModeTab/f_40768_ net/minecraft/world/item/CreativeModeTab/showTitle +FD: net/minecraft/world/item/CreativeModeTab/f_40770_ net/minecraft/world/item/CreativeModeTab/iconItemStack +FD: net/minecraft/world/item/CreativeModeTab$1/f_244541_ net/minecraft/world/item/CreativeModeTab$1/$SwitchMap$net$minecraft$world$item$CreativeModeTab$TabVisibility +FD: net/minecraft/world/item/CreativeModeTab$Builder/f_256756_ net/minecraft/world/item/CreativeModeTab$Builder/EMPTY_GENERATOR +FD: net/minecraft/world/item/CreativeModeTab$Builder/f_256796_ net/minecraft/world/item/CreativeModeTab$Builder/row +FD: net/minecraft/world/item/CreativeModeTab$Builder/f_256847_ net/minecraft/world/item/CreativeModeTab$Builder/type +FD: net/minecraft/world/item/CreativeModeTab$Builder/f_256851_ net/minecraft/world/item/CreativeModeTab$Builder/showTitle +FD: net/minecraft/world/item/CreativeModeTab$Builder/f_256854_ net/minecraft/world/item/CreativeModeTab$Builder/alignedRight +FD: net/minecraft/world/item/CreativeModeTab$Builder/f_256856_ net/minecraft/world/item/CreativeModeTab$Builder/displayName +FD: net/minecraft/world/item/CreativeModeTab$Builder/f_256953_ net/minecraft/world/item/CreativeModeTab$Builder/displayItemsGenerator +FD: net/minecraft/world/item/CreativeModeTab$Builder/f_256977_ net/minecraft/world/item/CreativeModeTab$Builder/column +FD: net/minecraft/world/item/CreativeModeTab$Builder/f_256981_ net/minecraft/world/item/CreativeModeTab$Builder/iconGenerator +FD: net/minecraft/world/item/CreativeModeTab$Builder/f_256992_ net/minecraft/world/item/CreativeModeTab$Builder/canScroll +FD: net/minecraft/world/item/CreativeModeTab$Builder/f_257036_ net/minecraft/world/item/CreativeModeTab$Builder/backgroundSuffix +FD: net/minecraft/world/item/CreativeModeTab$ItemDisplayBuilder/f_243878_ net/minecraft/world/item/CreativeModeTab$ItemDisplayBuilder/featureFlagSet +FD: net/minecraft/world/item/CreativeModeTab$ItemDisplayBuilder/f_244054_ net/minecraft/world/item/CreativeModeTab$ItemDisplayBuilder/tab +FD: net/minecraft/world/item/CreativeModeTab$ItemDisplayBuilder/f_244363_ net/minecraft/world/item/CreativeModeTab$ItemDisplayBuilder/tabContents +FD: net/minecraft/world/item/CreativeModeTab$ItemDisplayBuilder/f_244585_ net/minecraft/world/item/CreativeModeTab$ItemDisplayBuilder/searchTabContents +FD: net/minecraft/world/item/CreativeModeTab$ItemDisplayParameters/f_268429_ net/minecraft/world/item/CreativeModeTab$ItemDisplayParameters/hasPermissions +FD: net/minecraft/world/item/CreativeModeTab$ItemDisplayParameters/f_268485_ net/minecraft/world/item/CreativeModeTab$ItemDisplayParameters/holders +FD: net/minecraft/world/item/CreativeModeTab$ItemDisplayParameters/f_268709_ net/minecraft/world/item/CreativeModeTab$ItemDisplayParameters/enabledFeatures +FD: net/minecraft/world/item/CreativeModeTab$Row/$VALUES net/minecraft/world/item/CreativeModeTab$Row/$VALUES +FD: net/minecraft/world/item/CreativeModeTab$Row/BOTTOM net/minecraft/world/item/CreativeModeTab$Row/BOTTOM +FD: net/minecraft/world/item/CreativeModeTab$Row/TOP net/minecraft/world/item/CreativeModeTab$Row/TOP +FD: net/minecraft/world/item/CreativeModeTab$TabVisibility/$VALUES net/minecraft/world/item/CreativeModeTab$TabVisibility/$VALUES +FD: net/minecraft/world/item/CreativeModeTab$TabVisibility/PARENT_AND_SEARCH_TABS net/minecraft/world/item/CreativeModeTab$TabVisibility/PARENT_AND_SEARCH_TABS +FD: net/minecraft/world/item/CreativeModeTab$TabVisibility/PARENT_TAB_ONLY net/minecraft/world/item/CreativeModeTab$TabVisibility/PARENT_TAB_ONLY +FD: net/minecraft/world/item/CreativeModeTab$TabVisibility/SEARCH_TAB_ONLY net/minecraft/world/item/CreativeModeTab$TabVisibility/SEARCH_TAB_ONLY +FD: net/minecraft/world/item/CreativeModeTab$Type/$VALUES net/minecraft/world/item/CreativeModeTab$Type/$VALUES +FD: net/minecraft/world/item/CreativeModeTab$Type/CATEGORY net/minecraft/world/item/CreativeModeTab$Type/CATEGORY +FD: net/minecraft/world/item/CreativeModeTab$Type/HOTBAR net/minecraft/world/item/CreativeModeTab$Type/HOTBAR +FD: net/minecraft/world/item/CreativeModeTab$Type/INVENTORY net/minecraft/world/item/CreativeModeTab$Type/INVENTORY +FD: net/minecraft/world/item/CreativeModeTab$Type/SEARCH net/minecraft/world/item/CreativeModeTab$Type/SEARCH +FD: net/minecraft/world/item/CreativeModeTabs/f_256725_ net/minecraft/world/item/CreativeModeTabs/COLORED_BLOCKS +FD: net/minecraft/world/item/CreativeModeTabs/f_256731_ net/minecraft/world/item/CreativeModeTabs/SPAWN_EGGS +FD: net/minecraft/world/item/CreativeModeTabs/f_256750_ net/minecraft/world/item/CreativeModeTabs/SEARCH +FD: net/minecraft/world/item/CreativeModeTabs/f_256776_ net/minecraft/world/item/CreativeModeTabs/NATURAL_BLOCKS +FD: net/minecraft/world/item/CreativeModeTabs/f_256788_ net/minecraft/world/item/CreativeModeTabs/BUILDING_BLOCKS +FD: net/minecraft/world/item/CreativeModeTabs/f_256791_ net/minecraft/world/item/CreativeModeTabs/FUNCTIONAL_BLOCKS +FD: net/minecraft/world/item/CreativeModeTabs/f_256797_ net/minecraft/world/item/CreativeModeTabs/COMBAT +FD: net/minecraft/world/item/CreativeModeTabs/f_256837_ net/minecraft/world/item/CreativeModeTabs/OP_BLOCKS +FD: net/minecraft/world/item/CreativeModeTabs/f_256839_ net/minecraft/world/item/CreativeModeTabs/FOOD_AND_DRINKS +FD: net/minecraft/world/item/CreativeModeTabs/f_256869_ net/minecraft/world/item/CreativeModeTabs/TOOLS_AND_UTILITIES +FD: net/minecraft/world/item/CreativeModeTabs/f_256917_ net/minecraft/world/item/CreativeModeTabs/HOTBAR +FD: net/minecraft/world/item/CreativeModeTabs/f_256968_ net/minecraft/world/item/CreativeModeTabs/INGREDIENTS +FD: net/minecraft/world/item/CreativeModeTabs/f_257028_ net/minecraft/world/item/CreativeModeTabs/REDSTONE_BLOCKS +FD: net/minecraft/world/item/CreativeModeTabs/f_257039_ net/minecraft/world/item/CreativeModeTabs/INVENTORY +FD: net/minecraft/world/item/CreativeModeTabs/f_268478_ net/minecraft/world/item/CreativeModeTabs/PAINTING_COMPARATOR +FD: net/minecraft/world/item/CreativeModeTabs/f_268496_ net/minecraft/world/item/CreativeModeTabs/CACHED_PARAMETERS +FD: net/minecraft/world/item/CrossbowItem/f_150789_ net/minecraft/world/item/CrossbowItem/DEFAULT_RANGE +FD: net/minecraft/world/item/CrossbowItem/f_150790_ net/minecraft/world/item/CrossbowItem/TAG_CHARGED +FD: net/minecraft/world/item/CrossbowItem/f_150791_ net/minecraft/world/item/CrossbowItem/TAG_CHARGED_PROJECTILES +FD: net/minecraft/world/item/CrossbowItem/f_150792_ net/minecraft/world/item/CrossbowItem/MAX_CHARGE_DURATION +FD: net/minecraft/world/item/CrossbowItem/f_150793_ net/minecraft/world/item/CrossbowItem/START_SOUND_PERCENT +FD: net/minecraft/world/item/CrossbowItem/f_150794_ net/minecraft/world/item/CrossbowItem/MID_SOUND_PERCENT +FD: net/minecraft/world/item/CrossbowItem/f_150795_ net/minecraft/world/item/CrossbowItem/ARROW_POWER +FD: net/minecraft/world/item/CrossbowItem/f_150796_ net/minecraft/world/item/CrossbowItem/FIREWORK_POWER +FD: net/minecraft/world/item/CrossbowItem/f_40847_ net/minecraft/world/item/CrossbowItem/startSoundPlayed +FD: net/minecraft/world/item/CrossbowItem/f_40848_ net/minecraft/world/item/CrossbowItem/midLoadSoundPlayed +FD: net/minecraft/world/item/DiggerItem/f_40979_ net/minecraft/world/item/DiggerItem/blocks +FD: net/minecraft/world/item/DiggerItem/f_40980_ net/minecraft/world/item/DiggerItem/speed +FD: net/minecraft/world/item/DiggerItem/f_40981_ net/minecraft/world/item/DiggerItem/attackDamageBaseline +FD: net/minecraft/world/item/DiggerItem/f_40982_ net/minecraft/world/item/DiggerItem/defaultModifiers +FD: net/minecraft/world/item/DyeColor/$VALUES net/minecraft/world/item/DyeColor/$VALUES +FD: net/minecraft/world/item/DyeColor/BLACK net/minecraft/world/item/DyeColor/BLACK +FD: net/minecraft/world/item/DyeColor/BLUE net/minecraft/world/item/DyeColor/BLUE +FD: net/minecraft/world/item/DyeColor/BROWN net/minecraft/world/item/DyeColor/BROWN +FD: net/minecraft/world/item/DyeColor/CYAN net/minecraft/world/item/DyeColor/CYAN +FD: net/minecraft/world/item/DyeColor/GRAY net/minecraft/world/item/DyeColor/GRAY +FD: net/minecraft/world/item/DyeColor/GREEN net/minecraft/world/item/DyeColor/GREEN +FD: net/minecraft/world/item/DyeColor/LIGHT_BLUE net/minecraft/world/item/DyeColor/LIGHT_BLUE +FD: net/minecraft/world/item/DyeColor/LIGHT_GRAY net/minecraft/world/item/DyeColor/LIGHT_GRAY +FD: net/minecraft/world/item/DyeColor/LIME net/minecraft/world/item/DyeColor/LIME +FD: net/minecraft/world/item/DyeColor/MAGENTA net/minecraft/world/item/DyeColor/MAGENTA +FD: net/minecraft/world/item/DyeColor/ORANGE net/minecraft/world/item/DyeColor/ORANGE +FD: net/minecraft/world/item/DyeColor/PINK net/minecraft/world/item/DyeColor/PINK +FD: net/minecraft/world/item/DyeColor/PURPLE net/minecraft/world/item/DyeColor/PURPLE +FD: net/minecraft/world/item/DyeColor/RED net/minecraft/world/item/DyeColor/RED +FD: net/minecraft/world/item/DyeColor/WHITE net/minecraft/world/item/DyeColor/WHITE +FD: net/minecraft/world/item/DyeColor/YELLOW net/minecraft/world/item/DyeColor/YELLOW +FD: net/minecraft/world/item/DyeColor/f_262211_ net/minecraft/world/item/DyeColor/CODEC +FD: net/minecraft/world/item/DyeColor/f_283766_ net/minecraft/world/item/DyeColor/mapColor +FD: net/minecraft/world/item/DyeColor/f_41032_ net/minecraft/world/item/DyeColor/BY_ID +FD: net/minecraft/world/item/DyeColor/f_41033_ net/minecraft/world/item/DyeColor/BY_FIREWORK_COLOR +FD: net/minecraft/world/item/DyeColor/f_41034_ net/minecraft/world/item/DyeColor/id +FD: net/minecraft/world/item/DyeColor/f_41035_ net/minecraft/world/item/DyeColor/name +FD: net/minecraft/world/item/DyeColor/f_41039_ net/minecraft/world/item/DyeColor/textureDiffuseColors +FD: net/minecraft/world/item/DyeColor/f_41040_ net/minecraft/world/item/DyeColor/fireworkColor +FD: net/minecraft/world/item/DyeColor/f_41041_ net/minecraft/world/item/DyeColor/textColor +FD: net/minecraft/world/item/DyeItem/f_41076_ net/minecraft/world/item/DyeItem/ITEM_BY_COLOR +FD: net/minecraft/world/item/DyeItem/f_41077_ net/minecraft/world/item/DyeItem/dyeColor +FD: net/minecraft/world/item/DyeableLeatherItem/f_150826_ net/minecraft/world/item/DyeableLeatherItem/TAG_COLOR +FD: net/minecraft/world/item/DyeableLeatherItem/f_150827_ net/minecraft/world/item/DyeableLeatherItem/TAG_DISPLAY +FD: net/minecraft/world/item/DyeableLeatherItem/f_150828_ net/minecraft/world/item/DyeableLeatherItem/DEFAULT_LEATHER_COLOR +FD: net/minecraft/world/item/EnchantedBookItem/f_150830_ net/minecraft/world/item/EnchantedBookItem/TAG_STORED_ENCHANTMENTS +FD: net/minecraft/world/item/FireworkRocketItem/f_150831_ net/minecraft/world/item/FireworkRocketItem/TAG_FIREWORKS +FD: net/minecraft/world/item/FireworkRocketItem/f_150832_ net/minecraft/world/item/FireworkRocketItem/TAG_EXPLOSION +FD: net/minecraft/world/item/FireworkRocketItem/f_150833_ net/minecraft/world/item/FireworkRocketItem/TAG_EXPLOSIONS +FD: net/minecraft/world/item/FireworkRocketItem/f_150834_ net/minecraft/world/item/FireworkRocketItem/TAG_FLIGHT +FD: net/minecraft/world/item/FireworkRocketItem/f_150835_ net/minecraft/world/item/FireworkRocketItem/TAG_EXPLOSION_TYPE +FD: net/minecraft/world/item/FireworkRocketItem/f_150836_ net/minecraft/world/item/FireworkRocketItem/TAG_EXPLOSION_TRAIL +FD: net/minecraft/world/item/FireworkRocketItem/f_150837_ net/minecraft/world/item/FireworkRocketItem/TAG_EXPLOSION_FLICKER +FD: net/minecraft/world/item/FireworkRocketItem/f_150838_ net/minecraft/world/item/FireworkRocketItem/TAG_EXPLOSION_COLORS +FD: net/minecraft/world/item/FireworkRocketItem/f_150839_ net/minecraft/world/item/FireworkRocketItem/TAG_EXPLOSION_FADECOLORS +FD: net/minecraft/world/item/FireworkRocketItem/f_150840_ net/minecraft/world/item/FireworkRocketItem/ROCKET_PLACEMENT_OFFSET +FD: net/minecraft/world/item/FireworkRocketItem/f_256994_ net/minecraft/world/item/FireworkRocketItem/CRAFTABLE_DURATIONS +FD: net/minecraft/world/item/FireworkRocketItem$Shape/$VALUES net/minecraft/world/item/FireworkRocketItem$Shape/$VALUES +FD: net/minecraft/world/item/FireworkRocketItem$Shape/BURST net/minecraft/world/item/FireworkRocketItem$Shape/BURST +FD: net/minecraft/world/item/FireworkRocketItem$Shape/CREEPER net/minecraft/world/item/FireworkRocketItem$Shape/CREEPER +FD: net/minecraft/world/item/FireworkRocketItem$Shape/LARGE_BALL net/minecraft/world/item/FireworkRocketItem$Shape/LARGE_BALL +FD: net/minecraft/world/item/FireworkRocketItem$Shape/SMALL_BALL net/minecraft/world/item/FireworkRocketItem$Shape/SMALL_BALL +FD: net/minecraft/world/item/FireworkRocketItem$Shape/STAR net/minecraft/world/item/FireworkRocketItem$Shape/STAR +FD: net/minecraft/world/item/FireworkRocketItem$Shape/f_41226_ net/minecraft/world/item/FireworkRocketItem$Shape/BY_ID +FD: net/minecraft/world/item/FireworkRocketItem$Shape/f_41227_ net/minecraft/world/item/FireworkRocketItem$Shape/id +FD: net/minecraft/world/item/FireworkRocketItem$Shape/f_41228_ net/minecraft/world/item/FireworkRocketItem$Shape/name +FD: net/minecraft/world/item/FoodOnAStickItem/f_41304_ net/minecraft/world/item/FoodOnAStickItem/canInteractWith +FD: net/minecraft/world/item/FoodOnAStickItem/f_41305_ net/minecraft/world/item/FoodOnAStickItem/consumeItemDamage +FD: net/minecraft/world/item/HangingEntityItem/f_268736_ net/minecraft/world/item/HangingEntityItem/TOOLTIP_RANDOM_VARIANT +FD: net/minecraft/world/item/HangingEntityItem/f_41322_ net/minecraft/world/item/HangingEntityItem/type +FD: net/minecraft/world/item/HoeItem/f_41332_ net/minecraft/world/item/HoeItem/TILLABLES +FD: net/minecraft/world/item/HoneyBottleItem/f_150862_ net/minecraft/world/item/HoneyBottleItem/DRINK_DURATION +FD: net/minecraft/world/item/HoneycombItem/f_150863_ net/minecraft/world/item/HoneycombItem/WAXABLES +FD: net/minecraft/world/item/HoneycombItem/f_150864_ net/minecraft/world/item/HoneycombItem/WAX_OFF_BY_BLOCK +FD: net/minecraft/world/item/HorseArmorItem/f_150882_ net/minecraft/world/item/HorseArmorItem/TEX_FOLDER +FD: net/minecraft/world/item/HorseArmorItem/f_41361_ net/minecraft/world/item/HorseArmorItem/protection +FD: net/minecraft/world/item/HorseArmorItem/f_41362_ net/minecraft/world/item/HorseArmorItem/texture +FD: net/minecraft/world/item/Instrument/f_220078_ net/minecraft/world/item/Instrument/CODEC +FD: net/minecraft/world/item/Instrument/f_220079_ net/minecraft/world/item/Instrument/soundEvent +FD: net/minecraft/world/item/Instrument/f_220080_ net/minecraft/world/item/Instrument/useDuration +FD: net/minecraft/world/item/Instrument/f_220081_ net/minecraft/world/item/Instrument/range +FD: net/minecraft/world/item/InstrumentItem/f_220096_ net/minecraft/world/item/InstrumentItem/TAG_INSTRUMENT +FD: net/minecraft/world/item/InstrumentItem/f_220097_ net/minecraft/world/item/InstrumentItem/instruments +FD: net/minecraft/world/item/Instruments/f_220137_ net/minecraft/world/item/Instruments/GOAT_HORN_RANGE_BLOCKS +FD: net/minecraft/world/item/Instruments/f_220138_ net/minecraft/world/item/Instruments/GOAT_HORN_DURATION +FD: net/minecraft/world/item/Instruments/f_220139_ net/minecraft/world/item/Instruments/PONDER_GOAT_HORN +FD: net/minecraft/world/item/Instruments/f_220140_ net/minecraft/world/item/Instruments/SING_GOAT_HORN +FD: net/minecraft/world/item/Instruments/f_220141_ net/minecraft/world/item/Instruments/SEEK_GOAT_HORN +FD: net/minecraft/world/item/Instruments/f_220142_ net/minecraft/world/item/Instruments/FEEL_GOAT_HORN +FD: net/minecraft/world/item/Instruments/f_220143_ net/minecraft/world/item/Instruments/ADMIRE_GOAT_HORN +FD: net/minecraft/world/item/Instruments/f_220144_ net/minecraft/world/item/Instruments/CALL_GOAT_HORN +FD: net/minecraft/world/item/Instruments/f_220145_ net/minecraft/world/item/Instruments/YEARN_GOAT_HORN +FD: net/minecraft/world/item/Instruments/f_220146_ net/minecraft/world/item/Instruments/DREAM_GOAT_HORN +FD: net/minecraft/world/item/Item/f_150883_ net/minecraft/world/item/Item/LOGGER +FD: net/minecraft/world/item/Item/f_150884_ net/minecraft/world/item/Item/MAX_STACK_SIZE +FD: net/minecraft/world/item/Item/f_150885_ net/minecraft/world/item/Item/EAT_DURATION +FD: net/minecraft/world/item/Item/f_150886_ net/minecraft/world/item/Item/MAX_BAR_WIDTH +FD: net/minecraft/world/item/Item/f_204113_ net/minecraft/world/item/Item/builtInRegistryHolder +FD: net/minecraft/world/item/Item/f_243811_ net/minecraft/world/item/Item/requiredFeatures +FD: net/minecraft/world/item/Item/f_41369_ net/minecraft/world/item/Item/rarity +FD: net/minecraft/world/item/Item/f_41370_ net/minecraft/world/item/Item/maxStackSize +FD: net/minecraft/world/item/Item/f_41371_ net/minecraft/world/item/Item/maxDamage +FD: net/minecraft/world/item/Item/f_41372_ net/minecraft/world/item/Item/isFireResistant +FD: net/minecraft/world/item/Item/f_41373_ net/minecraft/world/item/Item/BY_BLOCK +FD: net/minecraft/world/item/Item/f_41374_ net/minecraft/world/item/Item/BASE_ATTACK_DAMAGE_UUID +FD: net/minecraft/world/item/Item/f_41375_ net/minecraft/world/item/Item/BASE_ATTACK_SPEED_UUID +FD: net/minecraft/world/item/Item/f_41378_ net/minecraft/world/item/Item/craftingRemainingItem +FD: net/minecraft/world/item/Item/f_41379_ net/minecraft/world/item/Item/descriptionId +FD: net/minecraft/world/item/Item/f_41380_ net/minecraft/world/item/Item/foodProperties +FD: net/minecraft/world/item/Item$1/f_41476_ net/minecraft/world/item/Item$1/$SwitchMap$net$minecraft$world$item$Rarity +FD: net/minecraft/world/item/Item$Properties/f_244559_ net/minecraft/world/item/Item$Properties/requiredFeatures +FD: net/minecraft/world/item/Item$Properties/f_41478_ net/minecraft/world/item/Item$Properties/maxStackSize +FD: net/minecraft/world/item/Item$Properties/f_41479_ net/minecraft/world/item/Item$Properties/maxDamage +FD: net/minecraft/world/item/Item$Properties/f_41480_ net/minecraft/world/item/Item$Properties/craftingRemainingItem +FD: net/minecraft/world/item/Item$Properties/f_41482_ net/minecraft/world/item/Item$Properties/rarity +FD: net/minecraft/world/item/Item$Properties/f_41483_ net/minecraft/world/item/Item$Properties/foodProperties +FD: net/minecraft/world/item/Item$Properties/f_41484_ net/minecraft/world/item/Item$Properties/isFireResistant +FD: net/minecraft/world/item/ItemCooldowns/f_41515_ net/minecraft/world/item/ItemCooldowns/cooldowns +FD: net/minecraft/world/item/ItemCooldowns/f_41516_ net/minecraft/world/item/ItemCooldowns/tickCount +FD: net/minecraft/world/item/ItemCooldowns$CooldownInstance/f_41533_ net/minecraft/world/item/ItemCooldowns$CooldownInstance/startTime +FD: net/minecraft/world/item/ItemCooldowns$CooldownInstance/f_41534_ net/minecraft/world/item/ItemCooldowns$CooldownInstance/endTime +FD: net/minecraft/world/item/ItemDisplayContext/$VALUES net/minecraft/world/item/ItemDisplayContext/$VALUES +FD: net/minecraft/world/item/ItemDisplayContext/FIRST_PERSON_LEFT_HAND net/minecraft/world/item/ItemDisplayContext/FIRST_PERSON_LEFT_HAND +FD: net/minecraft/world/item/ItemDisplayContext/FIRST_PERSON_RIGHT_HAND net/minecraft/world/item/ItemDisplayContext/FIRST_PERSON_RIGHT_HAND +FD: net/minecraft/world/item/ItemDisplayContext/FIXED net/minecraft/world/item/ItemDisplayContext/FIXED +FD: net/minecraft/world/item/ItemDisplayContext/GROUND net/minecraft/world/item/ItemDisplayContext/GROUND +FD: net/minecraft/world/item/ItemDisplayContext/GUI net/minecraft/world/item/ItemDisplayContext/GUI +FD: net/minecraft/world/item/ItemDisplayContext/HEAD net/minecraft/world/item/ItemDisplayContext/HEAD +FD: net/minecraft/world/item/ItemDisplayContext/NONE net/minecraft/world/item/ItemDisplayContext/NONE +FD: net/minecraft/world/item/ItemDisplayContext/THIRD_PERSON_LEFT_HAND net/minecraft/world/item/ItemDisplayContext/THIRD_PERSON_LEFT_HAND +FD: net/minecraft/world/item/ItemDisplayContext/THIRD_PERSON_RIGHT_HAND net/minecraft/world/item/ItemDisplayContext/THIRD_PERSON_RIGHT_HAND +FD: net/minecraft/world/item/ItemDisplayContext/f_268458_ net/minecraft/world/item/ItemDisplayContext/CODEC +FD: net/minecraft/world/item/ItemDisplayContext/f_268648_ net/minecraft/world/item/ItemDisplayContext/BY_ID +FD: net/minecraft/world/item/ItemDisplayContext/f_268735_ net/minecraft/world/item/ItemDisplayContext/id +FD: net/minecraft/world/item/ItemDisplayContext/f_268747_ net/minecraft/world/item/ItemDisplayContext/name +FD: net/minecraft/world/item/ItemStack/f_150906_ net/minecraft/world/item/ItemStack/TAG_ENCH +FD: net/minecraft/world/item/ItemStack/f_150909_ net/minecraft/world/item/ItemStack/TAG_DISPLAY +FD: net/minecraft/world/item/ItemStack/f_150910_ net/minecraft/world/item/ItemStack/TAG_DISPLAY_NAME +FD: net/minecraft/world/item/ItemStack/f_150911_ net/minecraft/world/item/ItemStack/TAG_LORE +FD: net/minecraft/world/item/ItemStack/f_150912_ net/minecraft/world/item/ItemStack/TAG_DAMAGE +FD: net/minecraft/world/item/ItemStack/f_150913_ net/minecraft/world/item/ItemStack/TAG_COLOR +FD: net/minecraft/world/item/ItemStack/f_150914_ net/minecraft/world/item/ItemStack/TAG_UNBREAKABLE +FD: net/minecraft/world/item/ItemStack/f_150915_ net/minecraft/world/item/ItemStack/TAG_REPAIR_COST +FD: net/minecraft/world/item/ItemStack/f_150916_ net/minecraft/world/item/ItemStack/TAG_CAN_DESTROY_BLOCK_LIST +FD: net/minecraft/world/item/ItemStack/f_150917_ net/minecraft/world/item/ItemStack/TAG_CAN_PLACE_ON_BLOCK_LIST +FD: net/minecraft/world/item/ItemStack/f_150918_ net/minecraft/world/item/ItemStack/TAG_HIDE_FLAGS +FD: net/minecraft/world/item/ItemStack/f_150919_ net/minecraft/world/item/ItemStack/DONT_HIDE_TOOLTIP +FD: net/minecraft/world/item/ItemStack/f_186360_ net/minecraft/world/item/ItemStack/adventureBreakCheck +FD: net/minecraft/world/item/ItemStack/f_186361_ net/minecraft/world/item/ItemStack/adventurePlaceCheck +FD: net/minecraft/world/item/ItemStack/f_243862_ net/minecraft/world/item/ItemStack/DISABLED_ITEM_TOOLTIP +FD: net/minecraft/world/item/ItemStack/f_41582_ net/minecraft/world/item/ItemStack/CODEC +FD: net/minecraft/world/item/ItemStack/f_41583_ net/minecraft/world/item/ItemStack/EMPTY +FD: net/minecraft/world/item/ItemStack/f_41584_ net/minecraft/world/item/ItemStack/ATTRIBUTE_MODIFIER_FORMAT +FD: net/minecraft/world/item/ItemStack/f_41585_ net/minecraft/world/item/ItemStack/LOGGER +FD: net/minecraft/world/item/ItemStack/f_41586_ net/minecraft/world/item/ItemStack/LORE_STYLE +FD: net/minecraft/world/item/ItemStack/f_41587_ net/minecraft/world/item/ItemStack/count +FD: net/minecraft/world/item/ItemStack/f_41588_ net/minecraft/world/item/ItemStack/popTime +FD: net/minecraft/world/item/ItemStack/f_41589_ net/minecraft/world/item/ItemStack/item +FD: net/minecraft/world/item/ItemStack/f_41590_ net/minecraft/world/item/ItemStack/tag +FD: net/minecraft/world/item/ItemStack/f_41592_ net/minecraft/world/item/ItemStack/entityRepresentation +FD: net/minecraft/world/item/ItemStack$TooltipPart/$VALUES net/minecraft/world/item/ItemStack$TooltipPart/$VALUES +FD: net/minecraft/world/item/ItemStack$TooltipPart/ADDITIONAL net/minecraft/world/item/ItemStack$TooltipPart/ADDITIONAL +FD: net/minecraft/world/item/ItemStack$TooltipPart/CAN_DESTROY net/minecraft/world/item/ItemStack$TooltipPart/CAN_DESTROY +FD: net/minecraft/world/item/ItemStack$TooltipPart/CAN_PLACE net/minecraft/world/item/ItemStack$TooltipPart/CAN_PLACE +FD: net/minecraft/world/item/ItemStack$TooltipPart/DYE net/minecraft/world/item/ItemStack$TooltipPart/DYE +FD: net/minecraft/world/item/ItemStack$TooltipPart/ENCHANTMENTS net/minecraft/world/item/ItemStack$TooltipPart/ENCHANTMENTS +FD: net/minecraft/world/item/ItemStack$TooltipPart/MODIFIERS net/minecraft/world/item/ItemStack$TooltipPart/MODIFIERS +FD: net/minecraft/world/item/ItemStack$TooltipPart/UNBREAKABLE net/minecraft/world/item/ItemStack$TooltipPart/UNBREAKABLE +FD: net/minecraft/world/item/ItemStack$TooltipPart/UPGRADES net/minecraft/world/item/ItemStack$TooltipPart/UPGRADES +FD: net/minecraft/world/item/ItemStack$TooltipPart/f_41803_ net/minecraft/world/item/ItemStack$TooltipPart/mask +FD: net/minecraft/world/item/ItemStackLinkedSet/f_260558_ net/minecraft/world/item/ItemStackLinkedSet/TYPE_AND_TAG +FD: net/minecraft/world/item/Items/f_150963_ net/minecraft/world/item/Items/DEEPSLATE_COAL_ORE +FD: net/minecraft/world/item/Items/f_150964_ net/minecraft/world/item/Items/DEEPSLATE_IRON_ORE +FD: net/minecraft/world/item/Items/f_150965_ net/minecraft/world/item/Items/COPPER_ORE +FD: net/minecraft/world/item/Items/f_150966_ net/minecraft/world/item/Items/DEEPSLATE_COPPER_ORE +FD: net/minecraft/world/item/Items/f_150967_ net/minecraft/world/item/Items/DEEPSLATE_GOLD_ORE +FD: net/minecraft/world/item/Items/f_150968_ net/minecraft/world/item/Items/DEEPSLATE_REDSTONE_ORE +FD: net/minecraft/world/item/Items/f_150969_ net/minecraft/world/item/Items/DEEPSLATE_EMERALD_ORE +FD: net/minecraft/world/item/Items/f_150970_ net/minecraft/world/item/Items/EXPOSED_CUT_COPPER_STAIRS +FD: net/minecraft/world/item/Items/f_150971_ net/minecraft/world/item/Items/WEATHERED_CUT_COPPER_STAIRS +FD: net/minecraft/world/item/Items/f_150972_ net/minecraft/world/item/Items/OXIDIZED_CUT_COPPER_STAIRS +FD: net/minecraft/world/item/Items/f_150973_ net/minecraft/world/item/Items/CUT_COPPER_SLAB +FD: net/minecraft/world/item/Items/f_150974_ net/minecraft/world/item/Items/EXPOSED_CUT_COPPER_SLAB +FD: net/minecraft/world/item/Items/f_150975_ net/minecraft/world/item/Items/WEATHERED_CUT_COPPER_SLAB +FD: net/minecraft/world/item/Items/f_150976_ net/minecraft/world/item/Items/OXIDIZED_CUT_COPPER_SLAB +FD: net/minecraft/world/item/Items/f_150977_ net/minecraft/world/item/Items/WAXED_COPPER_BLOCK +FD: net/minecraft/world/item/Items/f_150978_ net/minecraft/world/item/Items/WAXED_EXPOSED_COPPER +FD: net/minecraft/world/item/Items/f_150979_ net/minecraft/world/item/Items/WAXED_WEATHERED_COPPER +FD: net/minecraft/world/item/Items/f_150980_ net/minecraft/world/item/Items/WAXED_OXIDIZED_COPPER +FD: net/minecraft/world/item/Items/f_150981_ net/minecraft/world/item/Items/WAXED_CUT_COPPER +FD: net/minecraft/world/item/Items/f_150982_ net/minecraft/world/item/Items/WAXED_EXPOSED_CUT_COPPER +FD: net/minecraft/world/item/Items/f_150983_ net/minecraft/world/item/Items/WAXED_WEATHERED_CUT_COPPER +FD: net/minecraft/world/item/Items/f_150984_ net/minecraft/world/item/Items/WAXED_OXIDIZED_CUT_COPPER +FD: net/minecraft/world/item/Items/f_150985_ net/minecraft/world/item/Items/WAXED_CUT_COPPER_STAIRS +FD: net/minecraft/world/item/Items/f_150986_ net/minecraft/world/item/Items/WAXED_EXPOSED_CUT_COPPER_STAIRS +FD: net/minecraft/world/item/Items/f_150987_ net/minecraft/world/item/Items/WAXED_WEATHERED_CUT_COPPER_STAIRS +FD: net/minecraft/world/item/Items/f_150988_ net/minecraft/world/item/Items/WAXED_OXIDIZED_CUT_COPPER_STAIRS +FD: net/minecraft/world/item/Items/f_150989_ net/minecraft/world/item/Items/WAXED_CUT_COPPER_SLAB +FD: net/minecraft/world/item/Items/f_150990_ net/minecraft/world/item/Items/WAXED_EXPOSED_CUT_COPPER_SLAB +FD: net/minecraft/world/item/Items/f_150991_ net/minecraft/world/item/Items/WAXED_WEATHERED_CUT_COPPER_SLAB +FD: net/minecraft/world/item/Items/f_150992_ net/minecraft/world/item/Items/WAXED_OXIDIZED_CUT_COPPER_SLAB +FD: net/minecraft/world/item/Items/f_150993_ net/minecraft/world/item/Items/DEEPSLATE_LAPIS_ORE +FD: net/minecraft/world/item/Items/f_150994_ net/minecraft/world/item/Items/DEEPSLATE_DIAMOND_ORE +FD: net/minecraft/world/item/Items/f_150995_ net/minecraft/world/item/Items/RAW_IRON_BLOCK +FD: net/minecraft/world/item/Items/f_150996_ net/minecraft/world/item/Items/RAW_COPPER_BLOCK +FD: net/minecraft/world/item/Items/f_150997_ net/minecraft/world/item/Items/RAW_GOLD_BLOCK +FD: net/minecraft/world/item/Items/f_150998_ net/minecraft/world/item/Items/AMETHYST_BLOCK +FD: net/minecraft/world/item/Items/f_150999_ net/minecraft/world/item/Items/BUDDING_AMETHYST +FD: net/minecraft/world/item/Items/f_151000_ net/minecraft/world/item/Items/COPPER_BLOCK +FD: net/minecraft/world/item/Items/f_151001_ net/minecraft/world/item/Items/EXPOSED_COPPER +FD: net/minecraft/world/item/Items/f_151002_ net/minecraft/world/item/Items/WEATHERED_COPPER +FD: net/minecraft/world/item/Items/f_151003_ net/minecraft/world/item/Items/OXIDIZED_COPPER +FD: net/minecraft/world/item/Items/f_151004_ net/minecraft/world/item/Items/CUT_COPPER +FD: net/minecraft/world/item/Items/f_151005_ net/minecraft/world/item/Items/EXPOSED_CUT_COPPER +FD: net/minecraft/world/item/Items/f_151006_ net/minecraft/world/item/Items/WEATHERED_CUT_COPPER +FD: net/minecraft/world/item/Items/f_151007_ net/minecraft/world/item/Items/OXIDIZED_CUT_COPPER +FD: net/minecraft/world/item/Items/f_151008_ net/minecraft/world/item/Items/CUT_COPPER_STAIRS +FD: net/minecraft/world/item/Items/f_151009_ net/minecraft/world/item/Items/AZALEA_LEAVES +FD: net/minecraft/world/item/Items/f_151011_ net/minecraft/world/item/Items/TINTED_GLASS +FD: net/minecraft/world/item/Items/f_151012_ net/minecraft/world/item/Items/AZALEA +FD: net/minecraft/world/item/Items/f_151013_ net/minecraft/world/item/Items/FLOWERING_AZALEA +FD: net/minecraft/world/item/Items/f_151014_ net/minecraft/world/item/Items/SPORE_BLOSSOM +FD: net/minecraft/world/item/Items/f_151015_ net/minecraft/world/item/Items/MOSS_CARPET +FD: net/minecraft/world/item/Items/f_151016_ net/minecraft/world/item/Items/MOSS_BLOCK +FD: net/minecraft/world/item/Items/f_151017_ net/minecraft/world/item/Items/HANGING_ROOTS +FD: net/minecraft/world/item/Items/f_151018_ net/minecraft/world/item/Items/BIG_DRIPLEAF +FD: net/minecraft/world/item/Items/f_151019_ net/minecraft/world/item/Items/SMALL_DRIPLEAF +FD: net/minecraft/world/item/Items/f_151020_ net/minecraft/world/item/Items/DEEPSLATE_BRICKS +FD: net/minecraft/world/item/Items/f_151021_ net/minecraft/world/item/Items/CRACKED_DEEPSLATE_BRICKS +FD: net/minecraft/world/item/Items/f_151022_ net/minecraft/world/item/Items/DEEPSLATE_TILES +FD: net/minecraft/world/item/Items/f_151023_ net/minecraft/world/item/Items/CRACKED_DEEPSLATE_TILES +FD: net/minecraft/world/item/Items/f_151024_ net/minecraft/world/item/Items/CHISELED_DEEPSLATE +FD: net/minecraft/world/item/Items/f_151025_ net/minecraft/world/item/Items/GLOW_LICHEN +FD: net/minecraft/world/item/Items/f_151026_ net/minecraft/world/item/Items/SMOOTH_BASALT +FD: net/minecraft/world/item/Items/f_151027_ net/minecraft/world/item/Items/INFESTED_DEEPSLATE +FD: net/minecraft/world/item/Items/f_151028_ net/minecraft/world/item/Items/COBBLED_DEEPSLATE_WALL +FD: net/minecraft/world/item/Items/f_151029_ net/minecraft/world/item/Items/POLISHED_DEEPSLATE_WALL +FD: net/minecraft/world/item/Items/f_151030_ net/minecraft/world/item/Items/DEEPSLATE_BRICK_WALL +FD: net/minecraft/world/item/Items/f_151031_ net/minecraft/world/item/Items/DEEPSLATE_TILE_WALL +FD: net/minecraft/world/item/Items/f_151032_ net/minecraft/world/item/Items/DIRT_PATH +FD: net/minecraft/world/item/Items/f_151033_ net/minecraft/world/item/Items/LIGHT +FD: net/minecraft/world/item/Items/f_151034_ net/minecraft/world/item/Items/DEEPSLATE +FD: net/minecraft/world/item/Items/f_151035_ net/minecraft/world/item/Items/COBBLED_DEEPSLATE +FD: net/minecraft/world/item/Items/f_151036_ net/minecraft/world/item/Items/COBBLED_DEEPSLATE_STAIRS +FD: net/minecraft/world/item/Items/f_151037_ net/minecraft/world/item/Items/POLISHED_DEEPSLATE_STAIRS +FD: net/minecraft/world/item/Items/f_151038_ net/minecraft/world/item/Items/DEEPSLATE_BRICK_STAIRS +FD: net/minecraft/world/item/Items/f_151039_ net/minecraft/world/item/Items/DEEPSLATE_TILE_STAIRS +FD: net/minecraft/world/item/Items/f_151040_ net/minecraft/world/item/Items/POLISHED_DEEPSLATE +FD: net/minecraft/world/item/Items/f_151041_ net/minecraft/world/item/Items/LIGHTNING_ROD +FD: net/minecraft/world/item/Items/f_151042_ net/minecraft/world/item/Items/SCULK_SENSOR +FD: net/minecraft/world/item/Items/f_151043_ net/minecraft/world/item/Items/COBBLED_DEEPSLATE_SLAB +FD: net/minecraft/world/item/Items/f_151044_ net/minecraft/world/item/Items/POLISHED_DEEPSLATE_SLAB +FD: net/minecraft/world/item/Items/f_151045_ net/minecraft/world/item/Items/DEEPSLATE_BRICK_SLAB +FD: net/minecraft/world/item/Items/f_151046_ net/minecraft/world/item/Items/DEEPSLATE_TILE_SLAB +FD: net/minecraft/world/item/Items/f_151047_ net/minecraft/world/item/Items/CALCITE +FD: net/minecraft/world/item/Items/f_151048_ net/minecraft/world/item/Items/TUFF +FD: net/minecraft/world/item/Items/f_151049_ net/minecraft/world/item/Items/AMETHYST_SHARD +FD: net/minecraft/world/item/Items/f_151050_ net/minecraft/world/item/Items/RAW_IRON +FD: net/minecraft/world/item/Items/f_151051_ net/minecraft/world/item/Items/RAW_COPPER +FD: net/minecraft/world/item/Items/f_151052_ net/minecraft/world/item/Items/COPPER_INGOT +FD: net/minecraft/world/item/Items/f_151053_ net/minecraft/world/item/Items/RAW_GOLD +FD: net/minecraft/world/item/Items/f_151054_ net/minecraft/world/item/Items/DRIPSTONE_BLOCK +FD: net/minecraft/world/item/Items/f_151055_ net/minecraft/world/item/Items/POWDER_SNOW_BUCKET +FD: net/minecraft/world/item/Items/f_151056_ net/minecraft/world/item/Items/GLOW_INK_SAC +FD: net/minecraft/world/item/Items/f_151057_ net/minecraft/world/item/Items/AXOLOTL_BUCKET +FD: net/minecraft/world/item/Items/f_151058_ net/minecraft/world/item/Items/BUNDLE +FD: net/minecraft/world/item/Items/f_151059_ net/minecraft/world/item/Items/SPYGLASS +FD: net/minecraft/world/item/Items/f_151060_ net/minecraft/world/item/Items/AXOLOTL_SPAWN_EGG +FD: net/minecraft/world/item/Items/f_151061_ net/minecraft/world/item/Items/GLOW_SQUID_SPAWN_EGG +FD: net/minecraft/world/item/Items/f_151062_ net/minecraft/world/item/Items/GOAT_SPAWN_EGG +FD: net/minecraft/world/item/Items/f_151063_ net/minecraft/world/item/Items/GLOW_ITEM_FRAME +FD: net/minecraft/world/item/Items/f_151064_ net/minecraft/world/item/Items/ROOTED_DIRT +FD: net/minecraft/world/item/Items/f_151065_ net/minecraft/world/item/Items/CANDLE +FD: net/minecraft/world/item/Items/f_151066_ net/minecraft/world/item/Items/WHITE_CANDLE +FD: net/minecraft/world/item/Items/f_151067_ net/minecraft/world/item/Items/ORANGE_CANDLE +FD: net/minecraft/world/item/Items/f_151068_ net/minecraft/world/item/Items/MAGENTA_CANDLE +FD: net/minecraft/world/item/Items/f_151069_ net/minecraft/world/item/Items/LIGHT_BLUE_CANDLE +FD: net/minecraft/world/item/Items/f_151070_ net/minecraft/world/item/Items/YELLOW_CANDLE +FD: net/minecraft/world/item/Items/f_151071_ net/minecraft/world/item/Items/LIME_CANDLE +FD: net/minecraft/world/item/Items/f_151072_ net/minecraft/world/item/Items/PINK_CANDLE +FD: net/minecraft/world/item/Items/f_151073_ net/minecraft/world/item/Items/GRAY_CANDLE +FD: net/minecraft/world/item/Items/f_151074_ net/minecraft/world/item/Items/LIGHT_GRAY_CANDLE +FD: net/minecraft/world/item/Items/f_151075_ net/minecraft/world/item/Items/CYAN_CANDLE +FD: net/minecraft/world/item/Items/f_151076_ net/minecraft/world/item/Items/PURPLE_CANDLE +FD: net/minecraft/world/item/Items/f_151077_ net/minecraft/world/item/Items/BLUE_CANDLE +FD: net/minecraft/world/item/Items/f_151078_ net/minecraft/world/item/Items/BROWN_CANDLE +FD: net/minecraft/world/item/Items/f_151079_ net/minecraft/world/item/Items/GLOW_BERRIES +FD: net/minecraft/world/item/Items/f_151080_ net/minecraft/world/item/Items/GREEN_CANDLE +FD: net/minecraft/world/item/Items/f_151081_ net/minecraft/world/item/Items/RED_CANDLE +FD: net/minecraft/world/item/Items/f_151082_ net/minecraft/world/item/Items/BLACK_CANDLE +FD: net/minecraft/world/item/Items/f_151083_ net/minecraft/world/item/Items/SMALL_AMETHYST_BUD +FD: net/minecraft/world/item/Items/f_151084_ net/minecraft/world/item/Items/MEDIUM_AMETHYST_BUD +FD: net/minecraft/world/item/Items/f_151085_ net/minecraft/world/item/Items/LARGE_AMETHYST_BUD +FD: net/minecraft/world/item/Items/f_151086_ net/minecraft/world/item/Items/AMETHYST_CLUSTER +FD: net/minecraft/world/item/Items/f_151087_ net/minecraft/world/item/Items/POINTED_DRIPSTONE +FD: net/minecraft/world/item/Items/f_186362_ net/minecraft/world/item/Items/FLOWERING_AZALEA_LEAVES +FD: net/minecraft/world/item/Items/f_186363_ net/minecraft/world/item/Items/MUSIC_DISC_OTHERSIDE +FD: net/minecraft/world/item/Items/f_186364_ net/minecraft/world/item/Items/GLOBE_BANNER_PATTERN +FD: net/minecraft/world/item/Items/f_220174_ net/minecraft/world/item/Items/MANGROVE_PLANKS +FD: net/minecraft/world/item/Items/f_220175_ net/minecraft/world/item/Items/MANGROVE_PROPAGULE +FD: net/minecraft/world/item/Items/f_220176_ net/minecraft/world/item/Items/STRIPPED_MANGROVE_WOOD +FD: net/minecraft/world/item/Items/f_220177_ net/minecraft/world/item/Items/MANGROVE_WOOD +FD: net/minecraft/world/item/Items/f_220178_ net/minecraft/world/item/Items/MANGROVE_LEAVES +FD: net/minecraft/world/item/Items/f_220179_ net/minecraft/world/item/Items/MANGROVE_LOG +FD: net/minecraft/world/item/Items/f_220180_ net/minecraft/world/item/Items/MANGROVE_ROOTS +FD: net/minecraft/world/item/Items/f_220181_ net/minecraft/world/item/Items/MUDDY_MANGROVE_ROOTS +FD: net/minecraft/world/item/Items/f_220182_ net/minecraft/world/item/Items/STRIPPED_MANGROVE_LOG +FD: net/minecraft/world/item/Items/f_220183_ net/minecraft/world/item/Items/MANGROVE_SLAB +FD: net/minecraft/world/item/Items/f_220184_ net/minecraft/world/item/Items/MUD_BRICK_SLAB +FD: net/minecraft/world/item/Items/f_220185_ net/minecraft/world/item/Items/PACKED_MUD +FD: net/minecraft/world/item/Items/f_220186_ net/minecraft/world/item/Items/MUD_BRICKS +FD: net/minecraft/world/item/Items/f_220187_ net/minecraft/world/item/Items/REINFORCED_DEEPSLATE +FD: net/minecraft/world/item/Items/f_220188_ net/minecraft/world/item/Items/MANGROVE_FENCE +FD: net/minecraft/world/item/Items/f_220189_ net/minecraft/world/item/Items/MANGROVE_STAIRS +FD: net/minecraft/world/item/Items/f_220190_ net/minecraft/world/item/Items/MUD_BRICK_WALL +FD: net/minecraft/world/item/Items/f_220191_ net/minecraft/world/item/Items/MUD_BRICK_STAIRS +FD: net/minecraft/world/item/Items/f_220192_ net/minecraft/world/item/Items/SCULK +FD: net/minecraft/world/item/Items/f_220193_ net/minecraft/world/item/Items/SCULK_VEIN +FD: net/minecraft/world/item/Items/f_220194_ net/minecraft/world/item/Items/SCULK_CATALYST +FD: net/minecraft/world/item/Items/f_220195_ net/minecraft/world/item/Items/SCULK_SHRIEKER +FD: net/minecraft/world/item/Items/f_220196_ net/minecraft/world/item/Items/MANGROVE_PRESSURE_PLATE +FD: net/minecraft/world/item/Items/f_220197_ net/minecraft/world/item/Items/MANGROVE_DOOR +FD: net/minecraft/world/item/Items/f_220198_ net/minecraft/world/item/Items/MANGROVE_TRAPDOOR +FD: net/minecraft/world/item/Items/f_220199_ net/minecraft/world/item/Items/MANGROVE_BUTTON +FD: net/minecraft/world/item/Items/f_220200_ net/minecraft/world/item/Items/BIRCH_CHEST_BOAT +FD: net/minecraft/world/item/Items/f_220201_ net/minecraft/world/item/Items/JUNGLE_CHEST_BOAT +FD: net/minecraft/world/item/Items/f_220202_ net/minecraft/world/item/Items/ACACIA_CHEST_BOAT +FD: net/minecraft/world/item/Items/f_220203_ net/minecraft/world/item/Items/DARK_OAK_CHEST_BOAT +FD: net/minecraft/world/item/Items/f_220204_ net/minecraft/world/item/Items/MANGROVE_BOAT +FD: net/minecraft/world/item/Items/f_220205_ net/minecraft/world/item/Items/MANGROVE_CHEST_BOAT +FD: net/minecraft/world/item/Items/f_220206_ net/minecraft/world/item/Items/MANGROVE_FENCE_GATE +FD: net/minecraft/world/item/Items/f_220207_ net/minecraft/world/item/Items/OAK_CHEST_BOAT +FD: net/minecraft/world/item/Items/f_220208_ net/minecraft/world/item/Items/SPRUCE_CHEST_BOAT +FD: net/minecraft/world/item/Items/f_220209_ net/minecraft/world/item/Items/MANGROVE_SIGN +FD: net/minecraft/world/item/Items/f_220210_ net/minecraft/world/item/Items/TADPOLE_BUCKET +FD: net/minecraft/world/item/Items/f_220211_ net/minecraft/world/item/Items/RECOVERY_COMPASS +FD: net/minecraft/world/item/Items/f_220212_ net/minecraft/world/item/Items/ALLAY_SPAWN_EGG +FD: net/minecraft/world/item/Items/f_220213_ net/minecraft/world/item/Items/FROG_SPAWN_EGG +FD: net/minecraft/world/item/Items/f_220214_ net/minecraft/world/item/Items/TADPOLE_SPAWN_EGG +FD: net/minecraft/world/item/Items/f_220215_ net/minecraft/world/item/Items/WARDEN_SPAWN_EGG +FD: net/minecraft/world/item/Items/f_220216_ net/minecraft/world/item/Items/MUD +FD: net/minecraft/world/item/Items/f_220217_ net/minecraft/world/item/Items/MUSIC_DISC_5 +FD: net/minecraft/world/item/Items/f_220218_ net/minecraft/world/item/Items/DISC_FRAGMENT_5 +FD: net/minecraft/world/item/Items/f_220219_ net/minecraft/world/item/Items/GOAT_HORN +FD: net/minecraft/world/item/Items/f_220220_ net/minecraft/world/item/Items/OCHRE_FROGLIGHT +FD: net/minecraft/world/item/Items/f_220221_ net/minecraft/world/item/Items/VERDANT_FROGLIGHT +FD: net/minecraft/world/item/Items/f_220222_ net/minecraft/world/item/Items/PEARLESCENT_FROGLIGHT +FD: net/minecraft/world/item/Items/f_220223_ net/minecraft/world/item/Items/FROGSPAWN +FD: net/minecraft/world/item/Items/f_220224_ net/minecraft/world/item/Items/ECHO_SHARD +FD: net/minecraft/world/item/Items/f_243694_ net/minecraft/world/item/Items/BAMBOO_PLANKS +FD: net/minecraft/world/item/Items/f_243722_ net/minecraft/world/item/Items/JUNGLE_HANGING_SIGN +FD: net/minecraft/world/item/Items/f_243767_ net/minecraft/world/item/Items/CAMEL_SPAWN_EGG +FD: net/minecraft/world/item/Items/f_243805_ net/minecraft/world/item/Items/DARK_OAK_HANGING_SIGN +FD: net/minecraft/world/item/Items/f_243813_ net/minecraft/world/item/Items/BAMBOO_MOSAIC +FD: net/minecraft/world/item/Items/f_243820_ net/minecraft/world/item/Items/BAMBOO_DOOR +FD: net/minecraft/world/item/Items/f_243828_ net/minecraft/world/item/Items/BAMBOO_MOSAIC_STAIRS +FD: net/minecraft/world/item/Items/f_243860_ net/minecraft/world/item/Items/BAMBOO_SLAB +FD: net/minecraft/world/item/Items/f_243963_ net/minecraft/world/item/Items/SPRUCE_HANGING_SIGN +FD: net/minecraft/world/item/Items/f_243999_ net/minecraft/world/item/Items/BAMBOO_HANGING_SIGN +FD: net/minecraft/world/item/Items/f_244057_ net/minecraft/world/item/Items/BAMBOO_SIGN +FD: net/minecraft/world/item/Items/f_244106_ net/minecraft/world/item/Items/BAMBOO_FENCE +FD: net/minecraft/world/item/Items/f_244160_ net/minecraft/world/item/Items/BAMBOO_MOSAIC_SLAB +FD: net/minecraft/world/item/Items/f_244189_ net/minecraft/world/item/Items/BAMBOO_STAIRS +FD: net/minecraft/world/item/Items/f_244260_ net/minecraft/world/item/Items/BAMBOO_CHEST_RAFT +FD: net/minecraft/world/item/Items/f_244311_ net/minecraft/world/item/Items/BAMBOO_TRAPDOOR +FD: net/minecraft/world/item/Items/f_244345_ net/minecraft/world/item/Items/BAMBOO_FENCE_GATE +FD: net/minecraft/world/item/Items/f_244406_ net/minecraft/world/item/Items/OAK_HANGING_SIGN +FD: net/minecraft/world/item/Items/f_244424_ net/minecraft/world/item/Items/BAMBOO_BUTTON +FD: net/minecraft/world/item/Items/f_244431_ net/minecraft/world/item/Items/BIRCH_HANGING_SIGN +FD: net/minecraft/world/item/Items/f_244440_ net/minecraft/world/item/Items/ACACIA_HANGING_SIGN +FD: net/minecraft/world/item/Items/f_244469_ net/minecraft/world/item/Items/BAMBOO_PRESSURE_PLATE +FD: net/minecraft/world/item/Items/f_244479_ net/minecraft/world/item/Items/MANGROVE_HANGING_SIGN +FD: net/minecraft/world/item/Items/f_244617_ net/minecraft/world/item/Items/CRIMSON_HANGING_SIGN +FD: net/minecraft/world/item/Items/f_244624_ net/minecraft/world/item/Items/BAMBOO_RAFT +FD: net/minecraft/world/item/Items/f_244637_ net/minecraft/world/item/Items/WARPED_HANGING_SIGN +FD: net/minecraft/world/item/Items/f_244640_ net/minecraft/world/item/Items/CHISELED_BOOKSHELF +FD: net/minecraft/world/item/Items/f_254656_ net/minecraft/world/item/Items/SNOW_GOLEM_SPAWN_EGG +FD: net/minecraft/world/item/Items/f_254669_ net/minecraft/world/item/Items/WITHER_SPAWN_EGG +FD: net/minecraft/world/item/Items/f_254703_ net/minecraft/world/item/Items/ENDER_DRAGON_SPAWN_EGG +FD: net/minecraft/world/item/Items/f_254737_ net/minecraft/world/item/Items/IRON_GOLEM_SPAWN_EGG +FD: net/minecraft/world/item/Items/f_256923_ net/minecraft/world/item/Items/STRIPPED_BAMBOO_BLOCK +FD: net/minecraft/world/item/Items/f_256933_ net/minecraft/world/item/Items/BAMBOO_BLOCK +FD: net/minecraft/world/item/Items/f_260451_ net/minecraft/world/item/Items/PIGLIN_HEAD +FD: net/minecraft/world/item/Items/f_265858_ net/minecraft/world/item/Items/RIB_ARMOR_TRIM_SMITHING_TEMPLATE +FD: net/minecraft/world/item/Items/f_265887_ net/minecraft/world/item/Items/WILD_ARMOR_TRIM_SMITHING_TEMPLATE +FD: net/minecraft/world/item/Items/f_265914_ net/minecraft/world/item/Items/COAST_ARMOR_TRIM_SMITHING_TEMPLATE +FD: net/minecraft/world/item/Items/f_265918_ net/minecraft/world/item/Items/NETHERITE_UPGRADE_SMITHING_TEMPLATE +FD: net/minecraft/world/item/Items/f_265946_ net/minecraft/world/item/Items/TIDE_ARMOR_TRIM_SMITHING_TEMPLATE +FD: net/minecraft/world/item/Items/f_265964_ net/minecraft/world/item/Items/VEX_ARMOR_TRIM_SMITHING_TEMPLATE +FD: net/minecraft/world/item/Items/f_265965_ net/minecraft/world/item/Items/EYE_ARMOR_TRIM_SMITHING_TEMPLATE +FD: net/minecraft/world/item/Items/f_265974_ net/minecraft/world/item/Items/SNOUT_ARMOR_TRIM_SMITHING_TEMPLATE +FD: net/minecraft/world/item/Items/f_265996_ net/minecraft/world/item/Items/SENTRY_ARMOR_TRIM_SMITHING_TEMPLATE +FD: net/minecraft/world/item/Items/f_266029_ net/minecraft/world/item/Items/WARD_ARMOR_TRIM_SMITHING_TEMPLATE +FD: net/minecraft/world/item/Items/f_266078_ net/minecraft/world/item/Items/DUNE_ARMOR_TRIM_SMITHING_TEMPLATE +FD: net/minecraft/world/item/Items/f_266114_ net/minecraft/world/item/Items/SPIRE_ARMOR_TRIM_SMITHING_TEMPLATE +FD: net/minecraft/world/item/Items/f_271090_ net/minecraft/world/item/Items/CHERRY_LOG +FD: net/minecraft/world/item/Items/f_271114_ net/minecraft/world/item/Items/CHERRY_TRAPDOOR +FD: net/minecraft/world/item/Items/f_271133_ net/minecraft/world/item/Items/TORCHFLOWER_SEEDS +FD: net/minecraft/world/item/Items/f_271154_ net/minecraft/world/item/Items/CHERRY_PLANKS +FD: net/minecraft/world/item/Items/f_271164_ net/minecraft/world/item/Items/STRIPPED_CHERRY_LOG +FD: net/minecraft/world/item/Items/f_271182_ net/minecraft/world/item/Items/STRIPPED_CHERRY_WOOD +FD: net/minecraft/world/item/Items/f_271205_ net/minecraft/world/item/Items/CHERRY_FENCE_GATE +FD: net/minecraft/world/item/Items/f_271209_ net/minecraft/world/item/Items/PINK_PETALS +FD: net/minecraft/world/item/Items/f_271282_ net/minecraft/world/item/Items/CHERRY_PRESSURE_PLATE +FD: net/minecraft/world/item/Items/f_271302_ net/minecraft/world/item/Items/CHERRY_WOOD +FD: net/minecraft/world/item/Items/f_271316_ net/minecraft/world/item/Items/CHERRY_FENCE +FD: net/minecraft/world/item/Items/f_271327_ net/minecraft/world/item/Items/SUSPICIOUS_SAND +FD: net/minecraft/world/item/Items/f_271349_ net/minecraft/world/item/Items/CHERRY_SLAB +FD: net/minecraft/world/item/Items/f_271356_ net/minecraft/world/item/Items/BRUSH +FD: net/minecraft/world/item/Items/f_271374_ net/minecraft/world/item/Items/SNIFFER_SPAWN_EGG +FD: net/minecraft/world/item/Items/f_271375_ net/minecraft/world/item/Items/CHERRY_SAPLING +FD: net/minecraft/world/item/Items/f_271386_ net/minecraft/world/item/Items/CHERRY_BOAT +FD: net/minecraft/world/item/Items/f_271397_ net/minecraft/world/item/Items/CHERRY_STAIRS +FD: net/minecraft/world/item/Items/f_271459_ net/minecraft/world/item/Items/CHERRY_DOOR +FD: net/minecraft/world/item/Items/f_271471_ net/minecraft/world/item/Items/TORCHFLOWER +FD: net/minecraft/world/item/Items/f_271474_ net/minecraft/world/item/Items/CHERRY_BUTTON +FD: net/minecraft/world/item/Items/f_271478_ net/minecraft/world/item/Items/DECORATED_POT +FD: net/minecraft/world/item/Items/f_271490_ net/minecraft/world/item/Items/CHERRY_CHEST_BOAT +FD: net/minecraft/world/item/Items/f_271501_ net/minecraft/world/item/Items/CHERRY_HANGING_SIGN +FD: net/minecraft/world/item/Items/f_271504_ net/minecraft/world/item/Items/CHERRY_SIGN +FD: net/minecraft/world/item/Items/f_271517_ net/minecraft/world/item/Items/CHERRY_LEAVES +FD: net/minecraft/world/item/Items/f_276433_ net/minecraft/world/item/Items/HOST_ARMOR_TRIM_SMITHING_TEMPLATE +FD: net/minecraft/world/item/Items/f_276465_ net/minecraft/world/item/Items/RAISER_ARMOR_TRIM_SMITHING_TEMPLATE +FD: net/minecraft/world/item/Items/f_276468_ net/minecraft/world/item/Items/SNIFFER_EGG +FD: net/minecraft/world/item/Items/f_276537_ net/minecraft/world/item/Items/SILENCE_ARMOR_TRIM_SMITHING_TEMPLATE +FD: net/minecraft/world/item/Items/f_276539_ net/minecraft/world/item/Items/CALIBRATED_SCULK_SENSOR +FD: net/minecraft/world/item/Items/f_276546_ net/minecraft/world/item/Items/SHAPER_ARMOR_TRIM_SMITHING_TEMPLATE +FD: net/minecraft/world/item/Items/f_276594_ net/minecraft/world/item/Items/PITCHER_POD +FD: net/minecraft/world/item/Items/f_276612_ net/minecraft/world/item/Items/WAYFINDER_ARMOR_TRIM_SMITHING_TEMPLATE +FD: net/minecraft/world/item/Items/f_276672_ net/minecraft/world/item/Items/SUSPICIOUS_GRAVEL +FD: net/minecraft/world/item/Items/f_276698_ net/minecraft/world/item/Items/PITCHER_PLANT +FD: net/minecraft/world/item/Items/f_279528_ net/minecraft/world/item/Items/PRIZE_POTTERY_SHERD +FD: net/minecraft/world/item/Items/f_279529_ net/minecraft/world/item/Items/SHELTER_POTTERY_SHERD +FD: net/minecraft/world/item/Items/f_279545_ net/minecraft/world/item/Items/SHEAF_POTTERY_SHERD +FD: net/minecraft/world/item/Items/f_279559_ net/minecraft/world/item/Items/MINER_POTTERY_SHERD +FD: net/minecraft/world/item/Items/f_279560_ net/minecraft/world/item/Items/MOURNER_POTTERY_SHERD +FD: net/minecraft/world/item/Items/f_279567_ net/minecraft/world/item/Items/BLADE_POTTERY_SHERD +FD: net/minecraft/world/item/Items/f_279570_ net/minecraft/world/item/Items/SKULL_POTTERY_SHERD +FD: net/minecraft/world/item/Items/f_279583_ net/minecraft/world/item/Items/BREWER_POTTERY_SHERD +FD: net/minecraft/world/item/Items/f_279584_ net/minecraft/world/item/Items/FRIEND_POTTERY_SHERD +FD: net/minecraft/world/item/Items/f_279598_ net/minecraft/world/item/Items/HOWL_POTTERY_SHERD +FD: net/minecraft/world/item/Items/f_279606_ net/minecraft/world/item/Items/HEARTBREAK_POTTERY_SHERD +FD: net/minecraft/world/item/Items/f_279616_ net/minecraft/world/item/Items/EXPLORER_POTTERY_SHERD +FD: net/minecraft/world/item/Items/f_279619_ net/minecraft/world/item/Items/DANGER_POTTERY_SHERD +FD: net/minecraft/world/item/Items/f_279623_ net/minecraft/world/item/Items/HEART_POTTERY_SHERD +FD: net/minecraft/world/item/Items/f_279633_ net/minecraft/world/item/Items/ANGLER_POTTERY_SHERD +FD: net/minecraft/world/item/Items/f_279634_ net/minecraft/world/item/Items/ARMS_UP_POTTERY_SHERD +FD: net/minecraft/world/item/Items/f_279636_ net/minecraft/world/item/Items/SNORT_POTTERY_SHERD +FD: net/minecraft/world/item/Items/f_279642_ net/minecraft/world/item/Items/ARCHER_POTTERY_SHERD +FD: net/minecraft/world/item/Items/f_279647_ net/minecraft/world/item/Items/PLENTY_POTTERY_SHERD +FD: net/minecraft/world/item/Items/f_279650_ net/minecraft/world/item/Items/BURN_POTTERY_SHERD +FD: net/minecraft/world/item/Items/f_283830_ net/minecraft/world/item/Items/MUSIC_DISC_RELIC +FD: net/minecraft/world/item/Items/f_41826_ net/minecraft/world/item/Items/JUNGLE_SAPLING +FD: net/minecraft/world/item/Items/f_41827_ net/minecraft/world/item/Items/ACACIA_SAPLING +FD: net/minecraft/world/item/Items/f_41828_ net/minecraft/world/item/Items/DARK_OAK_SAPLING +FD: net/minecraft/world/item/Items/f_41829_ net/minecraft/world/item/Items/BEDROCK +FD: net/minecraft/world/item/Items/f_41830_ net/minecraft/world/item/Items/SAND +FD: net/minecraft/world/item/Items/f_41831_ net/minecraft/world/item/Items/RED_SAND +FD: net/minecraft/world/item/Items/f_41832_ net/minecraft/world/item/Items/GRAVEL +FD: net/minecraft/world/item/Items/f_41833_ net/minecraft/world/item/Items/GOLD_ORE +FD: net/minecraft/world/item/Items/f_41834_ net/minecraft/world/item/Items/IRON_ORE +FD: net/minecraft/world/item/Items/f_41835_ net/minecraft/world/item/Items/COAL_ORE +FD: net/minecraft/world/item/Items/f_41836_ net/minecraft/world/item/Items/NETHER_GOLD_ORE +FD: net/minecraft/world/item/Items/f_41837_ net/minecraft/world/item/Items/OAK_LOG +FD: net/minecraft/world/item/Items/f_41838_ net/minecraft/world/item/Items/SPRUCE_LOG +FD: net/minecraft/world/item/Items/f_41839_ net/minecraft/world/item/Items/BIRCH_LOG +FD: net/minecraft/world/item/Items/f_41840_ net/minecraft/world/item/Items/JUNGLE_LOG +FD: net/minecraft/world/item/Items/f_41841_ net/minecraft/world/item/Items/ACACIA_LOG +FD: net/minecraft/world/item/Items/f_41842_ net/minecraft/world/item/Items/DARK_OAK_LOG +FD: net/minecraft/world/item/Items/f_41843_ net/minecraft/world/item/Items/CRIMSON_STEM +FD: net/minecraft/world/item/Items/f_41844_ net/minecraft/world/item/Items/WARPED_STEM +FD: net/minecraft/world/item/Items/f_41845_ net/minecraft/world/item/Items/STRIPPED_OAK_LOG +FD: net/minecraft/world/item/Items/f_41846_ net/minecraft/world/item/Items/STRIPPED_SPRUCE_LOG +FD: net/minecraft/world/item/Items/f_41847_ net/minecraft/world/item/Items/STRIPPED_BIRCH_LOG +FD: net/minecraft/world/item/Items/f_41848_ net/minecraft/world/item/Items/STRIPPED_JUNGLE_LOG +FD: net/minecraft/world/item/Items/f_41849_ net/minecraft/world/item/Items/STRIPPED_ACACIA_LOG +FD: net/minecraft/world/item/Items/f_41850_ net/minecraft/world/item/Items/STRIPPED_DARK_OAK_LOG +FD: net/minecraft/world/item/Items/f_41851_ net/minecraft/world/item/Items/STRIPPED_CRIMSON_STEM +FD: net/minecraft/world/item/Items/f_41852_ net/minecraft/world/item/Items/AIR +FD: net/minecraft/world/item/Items/f_41853_ net/minecraft/world/item/Items/LAPIS_ORE +FD: net/minecraft/world/item/Items/f_41854_ net/minecraft/world/item/Items/LAPIS_BLOCK +FD: net/minecraft/world/item/Items/f_41855_ net/minecraft/world/item/Items/DISPENSER +FD: net/minecraft/world/item/Items/f_41856_ net/minecraft/world/item/Items/SANDSTONE +FD: net/minecraft/world/item/Items/f_41857_ net/minecraft/world/item/Items/CHISELED_SANDSTONE +FD: net/minecraft/world/item/Items/f_41858_ net/minecraft/world/item/Items/CUT_SANDSTONE +FD: net/minecraft/world/item/Items/f_41859_ net/minecraft/world/item/Items/NOTE_BLOCK +FD: net/minecraft/world/item/Items/f_41860_ net/minecraft/world/item/Items/POWERED_RAIL +FD: net/minecraft/world/item/Items/f_41861_ net/minecraft/world/item/Items/DETECTOR_RAIL +FD: net/minecraft/world/item/Items/f_41862_ net/minecraft/world/item/Items/STICKY_PISTON +FD: net/minecraft/world/item/Items/f_41863_ net/minecraft/world/item/Items/COBWEB +FD: net/minecraft/world/item/Items/f_41864_ net/minecraft/world/item/Items/GRASS +FD: net/minecraft/world/item/Items/f_41865_ net/minecraft/world/item/Items/FERN +FD: net/minecraft/world/item/Items/f_41866_ net/minecraft/world/item/Items/DEAD_BUSH +FD: net/minecraft/world/item/Items/f_41867_ net/minecraft/world/item/Items/SEAGRASS +FD: net/minecraft/world/item/Items/f_41868_ net/minecraft/world/item/Items/SEA_PICKLE +FD: net/minecraft/world/item/Items/f_41869_ net/minecraft/world/item/Items/PISTON +FD: net/minecraft/world/item/Items/f_41870_ net/minecraft/world/item/Items/WHITE_WOOL +FD: net/minecraft/world/item/Items/f_41871_ net/minecraft/world/item/Items/ORANGE_WOOL +FD: net/minecraft/world/item/Items/f_41872_ net/minecraft/world/item/Items/MAGENTA_WOOL +FD: net/minecraft/world/item/Items/f_41873_ net/minecraft/world/item/Items/LIGHT_BLUE_WOOL +FD: net/minecraft/world/item/Items/f_41874_ net/minecraft/world/item/Items/YELLOW_WOOL +FD: net/minecraft/world/item/Items/f_41875_ net/minecraft/world/item/Items/LIME_WOOL +FD: net/minecraft/world/item/Items/f_41876_ net/minecraft/world/item/Items/PINK_WOOL +FD: net/minecraft/world/item/Items/f_41877_ net/minecraft/world/item/Items/GRAY_WOOL +FD: net/minecraft/world/item/Items/f_41878_ net/minecraft/world/item/Items/LIGHT_GRAY_WOOL +FD: net/minecraft/world/item/Items/f_41879_ net/minecraft/world/item/Items/STRIPPED_WARPED_STEM +FD: net/minecraft/world/item/Items/f_41880_ net/minecraft/world/item/Items/STRIPPED_OAK_WOOD +FD: net/minecraft/world/item/Items/f_41881_ net/minecraft/world/item/Items/STRIPPED_SPRUCE_WOOD +FD: net/minecraft/world/item/Items/f_41882_ net/minecraft/world/item/Items/STRIPPED_BIRCH_WOOD +FD: net/minecraft/world/item/Items/f_41883_ net/minecraft/world/item/Items/STRIPPED_JUNGLE_WOOD +FD: net/minecraft/world/item/Items/f_41884_ net/minecraft/world/item/Items/STRIPPED_ACACIA_WOOD +FD: net/minecraft/world/item/Items/f_41885_ net/minecraft/world/item/Items/STRIPPED_DARK_OAK_WOOD +FD: net/minecraft/world/item/Items/f_41886_ net/minecraft/world/item/Items/STRIPPED_CRIMSON_HYPHAE +FD: net/minecraft/world/item/Items/f_41887_ net/minecraft/world/item/Items/STRIPPED_WARPED_HYPHAE +FD: net/minecraft/world/item/Items/f_41888_ net/minecraft/world/item/Items/OAK_WOOD +FD: net/minecraft/world/item/Items/f_41889_ net/minecraft/world/item/Items/SPRUCE_WOOD +FD: net/minecraft/world/item/Items/f_41890_ net/minecraft/world/item/Items/BIRCH_WOOD +FD: net/minecraft/world/item/Items/f_41891_ net/minecraft/world/item/Items/JUNGLE_WOOD +FD: net/minecraft/world/item/Items/f_41892_ net/minecraft/world/item/Items/ACACIA_WOOD +FD: net/minecraft/world/item/Items/f_41893_ net/minecraft/world/item/Items/DARK_OAK_WOOD +FD: net/minecraft/world/item/Items/f_41894_ net/minecraft/world/item/Items/CRIMSON_HYPHAE +FD: net/minecraft/world/item/Items/f_41895_ net/minecraft/world/item/Items/WARPED_HYPHAE +FD: net/minecraft/world/item/Items/f_41896_ net/minecraft/world/item/Items/OAK_LEAVES +FD: net/minecraft/world/item/Items/f_41897_ net/minecraft/world/item/Items/SPRUCE_LEAVES +FD: net/minecraft/world/item/Items/f_41898_ net/minecraft/world/item/Items/BIRCH_LEAVES +FD: net/minecraft/world/item/Items/f_41899_ net/minecraft/world/item/Items/JUNGLE_LEAVES +FD: net/minecraft/world/item/Items/f_41900_ net/minecraft/world/item/Items/ACACIA_LEAVES +FD: net/minecraft/world/item/Items/f_41901_ net/minecraft/world/item/Items/DARK_OAK_LEAVES +FD: net/minecraft/world/item/Items/f_41902_ net/minecraft/world/item/Items/SPONGE +FD: net/minecraft/world/item/Items/f_41903_ net/minecraft/world/item/Items/WET_SPONGE +FD: net/minecraft/world/item/Items/f_41904_ net/minecraft/world/item/Items/GLASS +FD: net/minecraft/world/item/Items/f_41905_ net/minecraft/world/item/Items/STONE +FD: net/minecraft/world/item/Items/f_41906_ net/minecraft/world/item/Items/NETHER_SPROUTS +FD: net/minecraft/world/item/Items/f_41907_ net/minecraft/world/item/Items/WEEPING_VINES +FD: net/minecraft/world/item/Items/f_41908_ net/minecraft/world/item/Items/TWISTING_VINES +FD: net/minecraft/world/item/Items/f_41909_ net/minecraft/world/item/Items/SUGAR_CANE +FD: net/minecraft/world/item/Items/f_41910_ net/minecraft/world/item/Items/KELP +FD: net/minecraft/world/item/Items/f_41911_ net/minecraft/world/item/Items/BAMBOO +FD: net/minecraft/world/item/Items/f_41912_ net/minecraft/world/item/Items/GOLD_BLOCK +FD: net/minecraft/world/item/Items/f_41913_ net/minecraft/world/item/Items/IRON_BLOCK +FD: net/minecraft/world/item/Items/f_41914_ net/minecraft/world/item/Items/OAK_SLAB +FD: net/minecraft/world/item/Items/f_41915_ net/minecraft/world/item/Items/SPRUCE_SLAB +FD: net/minecraft/world/item/Items/f_41916_ net/minecraft/world/item/Items/BIRCH_SLAB +FD: net/minecraft/world/item/Items/f_41917_ net/minecraft/world/item/Items/JUNGLE_SLAB +FD: net/minecraft/world/item/Items/f_41918_ net/minecraft/world/item/Items/ACACIA_SLAB +FD: net/minecraft/world/item/Items/f_41919_ net/minecraft/world/item/Items/DARK_OAK_SLAB +FD: net/minecraft/world/item/Items/f_41920_ net/minecraft/world/item/Items/CRIMSON_SLAB +FD: net/minecraft/world/item/Items/f_41921_ net/minecraft/world/item/Items/WARPED_SLAB +FD: net/minecraft/world/item/Items/f_41922_ net/minecraft/world/item/Items/STONE_SLAB +FD: net/minecraft/world/item/Items/f_41923_ net/minecraft/world/item/Items/SMOOTH_STONE_SLAB +FD: net/minecraft/world/item/Items/f_41924_ net/minecraft/world/item/Items/SANDSTONE_SLAB +FD: net/minecraft/world/item/Items/f_41925_ net/minecraft/world/item/Items/CUT_STANDSTONE_SLAB +FD: net/minecraft/world/item/Items/f_41926_ net/minecraft/world/item/Items/PETRIFIED_OAK_SLAB +FD: net/minecraft/world/item/Items/f_41927_ net/minecraft/world/item/Items/COBBLESTONE_SLAB +FD: net/minecraft/world/item/Items/f_41928_ net/minecraft/world/item/Items/BRICK_SLAB +FD: net/minecraft/world/item/Items/f_41929_ net/minecraft/world/item/Items/STONE_BRICK_SLAB +FD: net/minecraft/world/item/Items/f_41930_ net/minecraft/world/item/Items/NETHER_BRICK_SLAB +FD: net/minecraft/world/item/Items/f_41931_ net/minecraft/world/item/Items/QUARTZ_SLAB +FD: net/minecraft/world/item/Items/f_41932_ net/minecraft/world/item/Items/CYAN_WOOL +FD: net/minecraft/world/item/Items/f_41933_ net/minecraft/world/item/Items/PURPLE_WOOL +FD: net/minecraft/world/item/Items/f_41934_ net/minecraft/world/item/Items/BLUE_WOOL +FD: net/minecraft/world/item/Items/f_41935_ net/minecraft/world/item/Items/BROWN_WOOL +FD: net/minecraft/world/item/Items/f_41936_ net/minecraft/world/item/Items/GREEN_WOOL +FD: net/minecraft/world/item/Items/f_41937_ net/minecraft/world/item/Items/RED_WOOL +FD: net/minecraft/world/item/Items/f_41938_ net/minecraft/world/item/Items/BLACK_WOOL +FD: net/minecraft/world/item/Items/f_41939_ net/minecraft/world/item/Items/DANDELION +FD: net/minecraft/world/item/Items/f_41940_ net/minecraft/world/item/Items/POPPY +FD: net/minecraft/world/item/Items/f_41941_ net/minecraft/world/item/Items/BLUE_ORCHID +FD: net/minecraft/world/item/Items/f_41942_ net/minecraft/world/item/Items/ALLIUM +FD: net/minecraft/world/item/Items/f_41943_ net/minecraft/world/item/Items/AZURE_BLUET +FD: net/minecraft/world/item/Items/f_41944_ net/minecraft/world/item/Items/RED_TULIP +FD: net/minecraft/world/item/Items/f_41945_ net/minecraft/world/item/Items/ORANGE_TULIP +FD: net/minecraft/world/item/Items/f_41946_ net/minecraft/world/item/Items/WHITE_TULIP +FD: net/minecraft/world/item/Items/f_41947_ net/minecraft/world/item/Items/PINK_TULIP +FD: net/minecraft/world/item/Items/f_41948_ net/minecraft/world/item/Items/OXEYE_DAISY +FD: net/minecraft/world/item/Items/f_41949_ net/minecraft/world/item/Items/CORNFLOWER +FD: net/minecraft/world/item/Items/f_41950_ net/minecraft/world/item/Items/LILY_OF_THE_VALLEY +FD: net/minecraft/world/item/Items/f_41951_ net/minecraft/world/item/Items/WITHER_ROSE +FD: net/minecraft/world/item/Items/f_41952_ net/minecraft/world/item/Items/BROWN_MUSHROOM +FD: net/minecraft/world/item/Items/f_41953_ net/minecraft/world/item/Items/RED_MUSHROOM +FD: net/minecraft/world/item/Items/f_41954_ net/minecraft/world/item/Items/CRIMSON_FUNGUS +FD: net/minecraft/world/item/Items/f_41955_ net/minecraft/world/item/Items/WARPED_FUNGUS +FD: net/minecraft/world/item/Items/f_41956_ net/minecraft/world/item/Items/CRIMSON_ROOTS +FD: net/minecraft/world/item/Items/f_41957_ net/minecraft/world/item/Items/WARPED_ROOTS +FD: net/minecraft/world/item/Items/f_41958_ net/minecraft/world/item/Items/GRANITE +FD: net/minecraft/world/item/Items/f_41959_ net/minecraft/world/item/Items/DIAMOND_BLOCK +FD: net/minecraft/world/item/Items/f_41960_ net/minecraft/world/item/Items/CRAFTING_TABLE +FD: net/minecraft/world/item/Items/f_41961_ net/minecraft/world/item/Items/FARMLAND +FD: net/minecraft/world/item/Items/f_41962_ net/minecraft/world/item/Items/FURNACE +FD: net/minecraft/world/item/Items/f_41963_ net/minecraft/world/item/Items/LADDER +FD: net/minecraft/world/item/Items/f_41964_ net/minecraft/world/item/Items/RAIL +FD: net/minecraft/world/item/Items/f_41965_ net/minecraft/world/item/Items/COBBLESTONE_STAIRS +FD: net/minecraft/world/item/Items/f_41966_ net/minecraft/world/item/Items/LEVER +FD: net/minecraft/world/item/Items/f_41967_ net/minecraft/world/item/Items/STONE_PRESSURE_PLATE +FD: net/minecraft/world/item/Items/f_41968_ net/minecraft/world/item/Items/OAK_PRESSURE_PLATE +FD: net/minecraft/world/item/Items/f_41969_ net/minecraft/world/item/Items/SPRUCE_PRESSURE_PLATE +FD: net/minecraft/world/item/Items/f_41970_ net/minecraft/world/item/Items/BIRCH_PRESSURE_PLATE +FD: net/minecraft/world/item/Items/f_41971_ net/minecraft/world/item/Items/JUNGLE_PRESSURE_PLATE +FD: net/minecraft/world/item/Items/f_41972_ net/minecraft/world/item/Items/ACACIA_PRESSURE_PLATE +FD: net/minecraft/world/item/Items/f_41973_ net/minecraft/world/item/Items/DARK_OAK_PRESSURE_PLATE +FD: net/minecraft/world/item/Items/f_41974_ net/minecraft/world/item/Items/CRIMSON_PRESSURE_PLATE +FD: net/minecraft/world/item/Items/f_41975_ net/minecraft/world/item/Items/WARPED_PRESSURE_PLATE +FD: net/minecraft/world/item/Items/f_41976_ net/minecraft/world/item/Items/POLISHED_BLACKSTONE_PRESSURE_PLATE +FD: net/minecraft/world/item/Items/f_41977_ net/minecraft/world/item/Items/REDSTONE_ORE +FD: net/minecraft/world/item/Items/f_41978_ net/minecraft/world/item/Items/REDSTONE_TORCH +FD: net/minecraft/world/item/Items/f_41979_ net/minecraft/world/item/Items/SNOW +FD: net/minecraft/world/item/Items/f_41980_ net/minecraft/world/item/Items/ICE +FD: net/minecraft/world/item/Items/f_41981_ net/minecraft/world/item/Items/SNOW_BLOCK +FD: net/minecraft/world/item/Items/f_41982_ net/minecraft/world/item/Items/CACTUS +FD: net/minecraft/world/item/Items/f_41983_ net/minecraft/world/item/Items/CLAY +FD: net/minecraft/world/item/Items/f_41984_ net/minecraft/world/item/Items/JUKEBOX +FD: net/minecraft/world/item/Items/f_41985_ net/minecraft/world/item/Items/RED_SANDSTONE_SLAB +FD: net/minecraft/world/item/Items/f_41986_ net/minecraft/world/item/Items/CUT_RED_SANDSTONE_SLAB +FD: net/minecraft/world/item/Items/f_41987_ net/minecraft/world/item/Items/PURPUR_SLAB +FD: net/minecraft/world/item/Items/f_41988_ net/minecraft/world/item/Items/PRISMARINE_SLAB +FD: net/minecraft/world/item/Items/f_41989_ net/minecraft/world/item/Items/PRISMARINE_BRICK_SLAB +FD: net/minecraft/world/item/Items/f_41990_ net/minecraft/world/item/Items/DARK_PRISMARINE_SLAB +FD: net/minecraft/world/item/Items/f_41991_ net/minecraft/world/item/Items/SMOOTH_QUARTZ +FD: net/minecraft/world/item/Items/f_41992_ net/minecraft/world/item/Items/SMOOTH_RED_SANDSTONE +FD: net/minecraft/world/item/Items/f_41993_ net/minecraft/world/item/Items/SMOOTH_SANDSTONE +FD: net/minecraft/world/item/Items/f_41994_ net/minecraft/world/item/Items/SMOOTH_STONE +FD: net/minecraft/world/item/Items/f_41995_ net/minecraft/world/item/Items/BRICKS +FD: net/minecraft/world/item/Items/f_41996_ net/minecraft/world/item/Items/TNT +FD: net/minecraft/world/item/Items/f_41997_ net/minecraft/world/item/Items/BOOKSHELF +FD: net/minecraft/world/item/Items/f_41998_ net/minecraft/world/item/Items/MOSSY_COBBLESTONE +FD: net/minecraft/world/item/Items/f_41999_ net/minecraft/world/item/Items/OBSIDIAN +FD: net/minecraft/world/item/Items/f_42000_ net/minecraft/world/item/Items/TORCH +FD: net/minecraft/world/item/Items/f_42001_ net/minecraft/world/item/Items/END_ROD +FD: net/minecraft/world/item/Items/f_42002_ net/minecraft/world/item/Items/CHORUS_PLANT +FD: net/minecraft/world/item/Items/f_42003_ net/minecraft/world/item/Items/CHORUS_FLOWER +FD: net/minecraft/world/item/Items/f_42004_ net/minecraft/world/item/Items/PURPUR_BLOCK +FD: net/minecraft/world/item/Items/f_42005_ net/minecraft/world/item/Items/PURPUR_PILLAR +FD: net/minecraft/world/item/Items/f_42006_ net/minecraft/world/item/Items/PURPUR_STAIRS +FD: net/minecraft/world/item/Items/f_42007_ net/minecraft/world/item/Items/SPAWNER +FD: net/minecraft/world/item/Items/f_42008_ net/minecraft/world/item/Items/OAK_STAIRS +FD: net/minecraft/world/item/Items/f_42009_ net/minecraft/world/item/Items/CHEST +FD: net/minecraft/world/item/Items/f_42010_ net/minecraft/world/item/Items/DIAMOND_ORE +FD: net/minecraft/world/item/Items/f_42011_ net/minecraft/world/item/Items/POLISHED_GRANITE +FD: net/minecraft/world/item/Items/f_42012_ net/minecraft/world/item/Items/INFESTED_STONE +FD: net/minecraft/world/item/Items/f_42013_ net/minecraft/world/item/Items/INFESTED_COBBLESTONE +FD: net/minecraft/world/item/Items/f_42014_ net/minecraft/world/item/Items/INFESTED_STONE_BRICKS +FD: net/minecraft/world/item/Items/f_42015_ net/minecraft/world/item/Items/INFESTED_MOSSY_STONE_BRICKS +FD: net/minecraft/world/item/Items/f_42016_ net/minecraft/world/item/Items/INFESTED_CRACKED_STONE_BRICKS +FD: net/minecraft/world/item/Items/f_42017_ net/minecraft/world/item/Items/INFESTED_CHISELED_STONE_BRICKS +FD: net/minecraft/world/item/Items/f_42018_ net/minecraft/world/item/Items/STONE_BRICKS +FD: net/minecraft/world/item/Items/f_42019_ net/minecraft/world/item/Items/MOSSY_STONE_BRICKS +FD: net/minecraft/world/item/Items/f_42020_ net/minecraft/world/item/Items/CRACKED_STONE_BRICKS +FD: net/minecraft/world/item/Items/f_42021_ net/minecraft/world/item/Items/CHISELED_STONE_BRICKS +FD: net/minecraft/world/item/Items/f_42022_ net/minecraft/world/item/Items/BROWN_MUSHROOM_BLOCK +FD: net/minecraft/world/item/Items/f_42023_ net/minecraft/world/item/Items/RED_MUSHROOM_BLOCK +FD: net/minecraft/world/item/Items/f_42024_ net/minecraft/world/item/Items/MUSHROOM_STEM +FD: net/minecraft/world/item/Items/f_42025_ net/minecraft/world/item/Items/IRON_BARS +FD: net/minecraft/world/item/Items/f_42026_ net/minecraft/world/item/Items/CHAIN +FD: net/minecraft/world/item/Items/f_42027_ net/minecraft/world/item/Items/GLASS_PANE +FD: net/minecraft/world/item/Items/f_42028_ net/minecraft/world/item/Items/MELON +FD: net/minecraft/world/item/Items/f_42029_ net/minecraft/world/item/Items/VINE +FD: net/minecraft/world/item/Items/f_42030_ net/minecraft/world/item/Items/OAK_FENCE_GATE +FD: net/minecraft/world/item/Items/f_42031_ net/minecraft/world/item/Items/SPRUCE_FENCE_GATE +FD: net/minecraft/world/item/Items/f_42032_ net/minecraft/world/item/Items/BIRCH_FENCE_GATE +FD: net/minecraft/world/item/Items/f_42033_ net/minecraft/world/item/Items/JUNGLE_FENCE_GATE +FD: net/minecraft/world/item/Items/f_42034_ net/minecraft/world/item/Items/ACACIA_FENCE_GATE +FD: net/minecraft/world/item/Items/f_42035_ net/minecraft/world/item/Items/DARK_OAK_FENCE_GATE +FD: net/minecraft/world/item/Items/f_42036_ net/minecraft/world/item/Items/CRIMSON_FENCE_GATE +FD: net/minecraft/world/item/Items/f_42037_ net/minecraft/world/item/Items/WARPED_FENCE_GATE +FD: net/minecraft/world/item/Items/f_42038_ net/minecraft/world/item/Items/OAK_FENCE +FD: net/minecraft/world/item/Items/f_42039_ net/minecraft/world/item/Items/SPRUCE_FENCE +FD: net/minecraft/world/item/Items/f_42040_ net/minecraft/world/item/Items/BIRCH_FENCE +FD: net/minecraft/world/item/Items/f_42041_ net/minecraft/world/item/Items/JUNGLE_FENCE +FD: net/minecraft/world/item/Items/f_42042_ net/minecraft/world/item/Items/ACACIA_FENCE +FD: net/minecraft/world/item/Items/f_42043_ net/minecraft/world/item/Items/DARK_OAK_FENCE +FD: net/minecraft/world/item/Items/f_42044_ net/minecraft/world/item/Items/CRIMSON_FENCE +FD: net/minecraft/world/item/Items/f_42045_ net/minecraft/world/item/Items/WARPED_FENCE +FD: net/minecraft/world/item/Items/f_42046_ net/minecraft/world/item/Items/PUMPKIN +FD: net/minecraft/world/item/Items/f_42047_ net/minecraft/world/item/Items/CARVED_PUMPKIN +FD: net/minecraft/world/item/Items/f_42048_ net/minecraft/world/item/Items/NETHERRACK +FD: net/minecraft/world/item/Items/f_42049_ net/minecraft/world/item/Items/SOUL_SAND +FD: net/minecraft/world/item/Items/f_42050_ net/minecraft/world/item/Items/SOUL_SOIL +FD: net/minecraft/world/item/Items/f_42051_ net/minecraft/world/item/Items/BASALT +FD: net/minecraft/world/item/Items/f_42052_ net/minecraft/world/item/Items/POLISHED_BASALT +FD: net/minecraft/world/item/Items/f_42053_ net/minecraft/world/item/Items/SOUL_TORCH +FD: net/minecraft/world/item/Items/f_42054_ net/minecraft/world/item/Items/GLOWSTONE +FD: net/minecraft/world/item/Items/f_42055_ net/minecraft/world/item/Items/JACK_O_LANTERN +FD: net/minecraft/world/item/Items/f_42056_ net/minecraft/world/item/Items/OAK_TRAPDOOR +FD: net/minecraft/world/item/Items/f_42057_ net/minecraft/world/item/Items/SPRUCE_TRAPDOOR +FD: net/minecraft/world/item/Items/f_42058_ net/minecraft/world/item/Items/BIRCH_TRAPDOOR +FD: net/minecraft/world/item/Items/f_42059_ net/minecraft/world/item/Items/JUNGLE_TRAPDOOR +FD: net/minecraft/world/item/Items/f_42060_ net/minecraft/world/item/Items/ACACIA_TRAPDOOR +FD: net/minecraft/world/item/Items/f_42061_ net/minecraft/world/item/Items/DARK_OAK_TRAPDOOR +FD: net/minecraft/world/item/Items/f_42062_ net/minecraft/world/item/Items/CRIMSON_TRAPDOOR +FD: net/minecraft/world/item/Items/f_42063_ net/minecraft/world/item/Items/WARPED_TRAPDOOR +FD: net/minecraft/world/item/Items/f_42064_ net/minecraft/world/item/Items/DIORITE +FD: net/minecraft/world/item/Items/f_42065_ net/minecraft/world/item/Items/BEACON +FD: net/minecraft/world/item/Items/f_42066_ net/minecraft/world/item/Items/COBBLESTONE_WALL +FD: net/minecraft/world/item/Items/f_42067_ net/minecraft/world/item/Items/MOSSY_COBBLESTONE_WALL +FD: net/minecraft/world/item/Items/f_42068_ net/minecraft/world/item/Items/BRICK_WALL +FD: net/minecraft/world/item/Items/f_42069_ net/minecraft/world/item/Items/PRISMARINE_WALL +FD: net/minecraft/world/item/Items/f_42070_ net/minecraft/world/item/Items/RED_SANDSTONE_WALL +FD: net/minecraft/world/item/Items/f_42071_ net/minecraft/world/item/Items/MOSSY_STONE_BRICK_WALL +FD: net/minecraft/world/item/Items/f_42072_ net/minecraft/world/item/Items/GRANITE_WALL +FD: net/minecraft/world/item/Items/f_42073_ net/minecraft/world/item/Items/STONE_BRICK_WALL +FD: net/minecraft/world/item/Items/f_42074_ net/minecraft/world/item/Items/NETHER_BRICK_WALL +FD: net/minecraft/world/item/Items/f_42075_ net/minecraft/world/item/Items/ANDESITE_WALL +FD: net/minecraft/world/item/Items/f_42076_ net/minecraft/world/item/Items/RED_NETHER_BRICK_WALL +FD: net/minecraft/world/item/Items/f_42077_ net/minecraft/world/item/Items/SANDSTONE_WALL +FD: net/minecraft/world/item/Items/f_42078_ net/minecraft/world/item/Items/END_STONE_BRICK_WALL +FD: net/minecraft/world/item/Items/f_42079_ net/minecraft/world/item/Items/DIORITE_WALL +FD: net/minecraft/world/item/Items/f_42080_ net/minecraft/world/item/Items/BLACKSTONE_WALL +FD: net/minecraft/world/item/Items/f_42081_ net/minecraft/world/item/Items/POLISHED_BLACKSTONE_WALL +FD: net/minecraft/world/item/Items/f_42082_ net/minecraft/world/item/Items/POLISHED_BLACKSTONE_BRICK_WALL +FD: net/minecraft/world/item/Items/f_42083_ net/minecraft/world/item/Items/STONE_BUTTON +FD: net/minecraft/world/item/Items/f_42084_ net/minecraft/world/item/Items/OAK_BUTTON +FD: net/minecraft/world/item/Items/f_42085_ net/minecraft/world/item/Items/SPRUCE_BUTTON +FD: net/minecraft/world/item/Items/f_42086_ net/minecraft/world/item/Items/BIRCH_BUTTON +FD: net/minecraft/world/item/Items/f_42087_ net/minecraft/world/item/Items/JUNGLE_BUTTON +FD: net/minecraft/world/item/Items/f_42088_ net/minecraft/world/item/Items/ACACIA_BUTTON +FD: net/minecraft/world/item/Items/f_42089_ net/minecraft/world/item/Items/DARK_OAK_BUTTON +FD: net/minecraft/world/item/Items/f_42090_ net/minecraft/world/item/Items/CRIMSON_BUTTON +FD: net/minecraft/world/item/Items/f_42091_ net/minecraft/world/item/Items/BRICK_STAIRS +FD: net/minecraft/world/item/Items/f_42092_ net/minecraft/world/item/Items/STONE_BRICK_STAIRS +FD: net/minecraft/world/item/Items/f_42093_ net/minecraft/world/item/Items/MYCELIUM +FD: net/minecraft/world/item/Items/f_42094_ net/minecraft/world/item/Items/LILY_PAD +FD: net/minecraft/world/item/Items/f_42095_ net/minecraft/world/item/Items/NETHER_BRICKS +FD: net/minecraft/world/item/Items/f_42096_ net/minecraft/world/item/Items/CRACKED_NETHER_BRICKS +FD: net/minecraft/world/item/Items/f_42097_ net/minecraft/world/item/Items/CHISELED_NETHER_BRICKS +FD: net/minecraft/world/item/Items/f_42098_ net/minecraft/world/item/Items/NETHER_BRICK_FENCE +FD: net/minecraft/world/item/Items/f_42099_ net/minecraft/world/item/Items/NETHER_BRICK_STAIRS +FD: net/minecraft/world/item/Items/f_42100_ net/minecraft/world/item/Items/ENCHANTING_TABLE +FD: net/minecraft/world/item/Items/f_42101_ net/minecraft/world/item/Items/END_PORTAL_FRAME +FD: net/minecraft/world/item/Items/f_42102_ net/minecraft/world/item/Items/END_STONE +FD: net/minecraft/world/item/Items/f_42103_ net/minecraft/world/item/Items/END_STONE_BRICKS +FD: net/minecraft/world/item/Items/f_42104_ net/minecraft/world/item/Items/DRAGON_EGG +FD: net/minecraft/world/item/Items/f_42105_ net/minecraft/world/item/Items/REDSTONE_LAMP +FD: net/minecraft/world/item/Items/f_42106_ net/minecraft/world/item/Items/SANDSTONE_STAIRS +FD: net/minecraft/world/item/Items/f_42107_ net/minecraft/world/item/Items/EMERALD_ORE +FD: net/minecraft/world/item/Items/f_42108_ net/minecraft/world/item/Items/ENDER_CHEST +FD: net/minecraft/world/item/Items/f_42109_ net/minecraft/world/item/Items/TRIPWIRE_HOOK +FD: net/minecraft/world/item/Items/f_42110_ net/minecraft/world/item/Items/EMERALD_BLOCK +FD: net/minecraft/world/item/Items/f_42111_ net/minecraft/world/item/Items/SPRUCE_STAIRS +FD: net/minecraft/world/item/Items/f_42112_ net/minecraft/world/item/Items/BIRCH_STAIRS +FD: net/minecraft/world/item/Items/f_42113_ net/minecraft/world/item/Items/JUNGLE_STAIRS +FD: net/minecraft/world/item/Items/f_42114_ net/minecraft/world/item/Items/CRIMSON_STAIRS +FD: net/minecraft/world/item/Items/f_42115_ net/minecraft/world/item/Items/WARPED_STAIRS +FD: net/minecraft/world/item/Items/f_42116_ net/minecraft/world/item/Items/COMMAND_BLOCK +FD: net/minecraft/world/item/Items/f_42117_ net/minecraft/world/item/Items/POLISHED_DIORITE +FD: net/minecraft/world/item/Items/f_42118_ net/minecraft/world/item/Items/GRAY_TERRACOTTA +FD: net/minecraft/world/item/Items/f_42119_ net/minecraft/world/item/Items/LIGHT_GRAY_TERRACOTTA +FD: net/minecraft/world/item/Items/f_42120_ net/minecraft/world/item/Items/CYAN_TERRACOTTA +FD: net/minecraft/world/item/Items/f_42121_ net/minecraft/world/item/Items/PURPLE_TERRACOTTA +FD: net/minecraft/world/item/Items/f_42122_ net/minecraft/world/item/Items/BLUE_TERRACOTTA +FD: net/minecraft/world/item/Items/f_42123_ net/minecraft/world/item/Items/BROWN_TERRACOTTA +FD: net/minecraft/world/item/Items/f_42124_ net/minecraft/world/item/Items/GREEN_TERRACOTTA +FD: net/minecraft/world/item/Items/f_42125_ net/minecraft/world/item/Items/RED_TERRACOTTA +FD: net/minecraft/world/item/Items/f_42126_ net/minecraft/world/item/Items/BLACK_TERRACOTTA +FD: net/minecraft/world/item/Items/f_42127_ net/minecraft/world/item/Items/BARRIER +FD: net/minecraft/world/item/Items/f_42128_ net/minecraft/world/item/Items/IRON_TRAPDOOR +FD: net/minecraft/world/item/Items/f_42129_ net/minecraft/world/item/Items/HAY_BLOCK +FD: net/minecraft/world/item/Items/f_42130_ net/minecraft/world/item/Items/WHITE_CARPET +FD: net/minecraft/world/item/Items/f_42131_ net/minecraft/world/item/Items/ORANGE_CARPET +FD: net/minecraft/world/item/Items/f_42132_ net/minecraft/world/item/Items/MAGENTA_CARPET +FD: net/minecraft/world/item/Items/f_42133_ net/minecraft/world/item/Items/LIGHT_BLUE_CARPET +FD: net/minecraft/world/item/Items/f_42134_ net/minecraft/world/item/Items/YELLOW_CARPET +FD: net/minecraft/world/item/Items/f_42135_ net/minecraft/world/item/Items/LIME_CARPET +FD: net/minecraft/world/item/Items/f_42136_ net/minecraft/world/item/Items/PINK_CARPET +FD: net/minecraft/world/item/Items/f_42137_ net/minecraft/world/item/Items/GRAY_CARPET +FD: net/minecraft/world/item/Items/f_42138_ net/minecraft/world/item/Items/LIGHT_GRAY_CARPET +FD: net/minecraft/world/item/Items/f_42139_ net/minecraft/world/item/Items/CYAN_CARPET +FD: net/minecraft/world/item/Items/f_42140_ net/minecraft/world/item/Items/PURPLE_CARPET +FD: net/minecraft/world/item/Items/f_42141_ net/minecraft/world/item/Items/BLUE_CARPET +FD: net/minecraft/world/item/Items/f_42142_ net/minecraft/world/item/Items/BROWN_CARPET +FD: net/minecraft/world/item/Items/f_42143_ net/minecraft/world/item/Items/GREEN_CARPET +FD: net/minecraft/world/item/Items/f_42144_ net/minecraft/world/item/Items/WARPED_BUTTON +FD: net/minecraft/world/item/Items/f_42145_ net/minecraft/world/item/Items/POLISHED_BLACKSTONE_BUTTON +FD: net/minecraft/world/item/Items/f_42146_ net/minecraft/world/item/Items/ANVIL +FD: net/minecraft/world/item/Items/f_42147_ net/minecraft/world/item/Items/CHIPPED_ANVIL +FD: net/minecraft/world/item/Items/f_42148_ net/minecraft/world/item/Items/DAMAGED_ANVIL +FD: net/minecraft/world/item/Items/f_42149_ net/minecraft/world/item/Items/TRAPPED_CHEST +FD: net/minecraft/world/item/Items/f_42150_ net/minecraft/world/item/Items/LIGHT_WEIGHTED_PRESSURE_PLATE +FD: net/minecraft/world/item/Items/f_42151_ net/minecraft/world/item/Items/HEAVY_WEIGHTED_PRESSURE_PLATE +FD: net/minecraft/world/item/Items/f_42152_ net/minecraft/world/item/Items/DAYLIGHT_DETECTOR +FD: net/minecraft/world/item/Items/f_42153_ net/minecraft/world/item/Items/REDSTONE_BLOCK +FD: net/minecraft/world/item/Items/f_42154_ net/minecraft/world/item/Items/NETHER_QUARTZ_ORE +FD: net/minecraft/world/item/Items/f_42155_ net/minecraft/world/item/Items/HOPPER +FD: net/minecraft/world/item/Items/f_42156_ net/minecraft/world/item/Items/CHISELED_QUARTZ_BLOCK +FD: net/minecraft/world/item/Items/f_42157_ net/minecraft/world/item/Items/QUARTZ_BLOCK +FD: net/minecraft/world/item/Items/f_42158_ net/minecraft/world/item/Items/QUARTZ_BRICKS +FD: net/minecraft/world/item/Items/f_42159_ net/minecraft/world/item/Items/QUARTZ_PILLAR +FD: net/minecraft/world/item/Items/f_42160_ net/minecraft/world/item/Items/QUARTZ_STAIRS +FD: net/minecraft/world/item/Items/f_42161_ net/minecraft/world/item/Items/ACTIVATOR_RAIL +FD: net/minecraft/world/item/Items/f_42162_ net/minecraft/world/item/Items/DROPPER +FD: net/minecraft/world/item/Items/f_42163_ net/minecraft/world/item/Items/WHITE_TERRACOTTA +FD: net/minecraft/world/item/Items/f_42164_ net/minecraft/world/item/Items/ORANGE_TERRACOTTA +FD: net/minecraft/world/item/Items/f_42165_ net/minecraft/world/item/Items/MAGENTA_TERRACOTTA +FD: net/minecraft/world/item/Items/f_42166_ net/minecraft/world/item/Items/LIGHT_BLUE_TERRACOTTA +FD: net/minecraft/world/item/Items/f_42167_ net/minecraft/world/item/Items/YELLOW_TERRACOTTA +FD: net/minecraft/world/item/Items/f_42168_ net/minecraft/world/item/Items/LIME_TERRACOTTA +FD: net/minecraft/world/item/Items/f_42169_ net/minecraft/world/item/Items/PINK_TERRACOTTA +FD: net/minecraft/world/item/Items/f_42170_ net/minecraft/world/item/Items/ANDESITE +FD: net/minecraft/world/item/Items/f_42171_ net/minecraft/world/item/Items/BLUE_STAINED_GLASS +FD: net/minecraft/world/item/Items/f_42172_ net/minecraft/world/item/Items/BROWN_STAINED_GLASS +FD: net/minecraft/world/item/Items/f_42173_ net/minecraft/world/item/Items/GREEN_STAINED_GLASS +FD: net/minecraft/world/item/Items/f_42174_ net/minecraft/world/item/Items/RED_STAINED_GLASS +FD: net/minecraft/world/item/Items/f_42175_ net/minecraft/world/item/Items/BLACK_STAINED_GLASS +FD: net/minecraft/world/item/Items/f_42176_ net/minecraft/world/item/Items/WHITE_STAINED_GLASS_PANE +FD: net/minecraft/world/item/Items/f_42177_ net/minecraft/world/item/Items/ORANGE_STAINED_GLASS_PANE +FD: net/minecraft/world/item/Items/f_42178_ net/minecraft/world/item/Items/MAGENTA_STAINED_GLASS_PANE +FD: net/minecraft/world/item/Items/f_42179_ net/minecraft/world/item/Items/LIGHT_BLUE_STAINED_GLASS_PANE +FD: net/minecraft/world/item/Items/f_42180_ net/minecraft/world/item/Items/YELLOW_STAINED_GLASS_PANE +FD: net/minecraft/world/item/Items/f_42181_ net/minecraft/world/item/Items/LIME_STAINED_GLASS_PANE +FD: net/minecraft/world/item/Items/f_42182_ net/minecraft/world/item/Items/PINK_STAINED_GLASS_PANE +FD: net/minecraft/world/item/Items/f_42183_ net/minecraft/world/item/Items/GRAY_STAINED_GLASS_PANE +FD: net/minecraft/world/item/Items/f_42184_ net/minecraft/world/item/Items/LIGHT_GRAY_STAINED_GLASS_PANE +FD: net/minecraft/world/item/Items/f_42185_ net/minecraft/world/item/Items/CYAN_STAINED_GLASS_PANE +FD: net/minecraft/world/item/Items/f_42186_ net/minecraft/world/item/Items/PURPLE_STAINED_GLASS_PANE +FD: net/minecraft/world/item/Items/f_42187_ net/minecraft/world/item/Items/BLUE_STAINED_GLASS_PANE +FD: net/minecraft/world/item/Items/f_42188_ net/minecraft/world/item/Items/BROWN_STAINED_GLASS_PANE +FD: net/minecraft/world/item/Items/f_42189_ net/minecraft/world/item/Items/GREEN_STAINED_GLASS_PANE +FD: net/minecraft/world/item/Items/f_42190_ net/minecraft/world/item/Items/RED_STAINED_GLASS_PANE +FD: net/minecraft/world/item/Items/f_42191_ net/minecraft/world/item/Items/BLACK_STAINED_GLASS_PANE +FD: net/minecraft/world/item/Items/f_42192_ net/minecraft/world/item/Items/PRISMARINE +FD: net/minecraft/world/item/Items/f_42193_ net/minecraft/world/item/Items/PRISMARINE_BRICKS +FD: net/minecraft/world/item/Items/f_42194_ net/minecraft/world/item/Items/DARK_PRISMARINE +FD: net/minecraft/world/item/Items/f_42195_ net/minecraft/world/item/Items/PRISMARINE_STAIRS +FD: net/minecraft/world/item/Items/f_42196_ net/minecraft/world/item/Items/PRISMARINE_BRICK_STAIRS +FD: net/minecraft/world/item/Items/f_42197_ net/minecraft/world/item/Items/RED_CARPET +FD: net/minecraft/world/item/Items/f_42198_ net/minecraft/world/item/Items/BLACK_CARPET +FD: net/minecraft/world/item/Items/f_42199_ net/minecraft/world/item/Items/TERRACOTTA +FD: net/minecraft/world/item/Items/f_42200_ net/minecraft/world/item/Items/COAL_BLOCK +FD: net/minecraft/world/item/Items/f_42201_ net/minecraft/world/item/Items/PACKED_ICE +FD: net/minecraft/world/item/Items/f_42202_ net/minecraft/world/item/Items/ACACIA_STAIRS +FD: net/minecraft/world/item/Items/f_42203_ net/minecraft/world/item/Items/DARK_OAK_STAIRS +FD: net/minecraft/world/item/Items/f_42204_ net/minecraft/world/item/Items/SLIME_BLOCK +FD: net/minecraft/world/item/Items/f_42206_ net/minecraft/world/item/Items/SUNFLOWER +FD: net/minecraft/world/item/Items/f_42207_ net/minecraft/world/item/Items/LILAC +FD: net/minecraft/world/item/Items/f_42208_ net/minecraft/world/item/Items/ROSE_BUSH +FD: net/minecraft/world/item/Items/f_42209_ net/minecraft/world/item/Items/PEONY +FD: net/minecraft/world/item/Items/f_42210_ net/minecraft/world/item/Items/TALL_GRASS +FD: net/minecraft/world/item/Items/f_42211_ net/minecraft/world/item/Items/LARGE_FERN +FD: net/minecraft/world/item/Items/f_42212_ net/minecraft/world/item/Items/WHITE_STAINED_GLASS +FD: net/minecraft/world/item/Items/f_42213_ net/minecraft/world/item/Items/ORANGE_STAINED_GLASS +FD: net/minecraft/world/item/Items/f_42214_ net/minecraft/world/item/Items/MAGENTA_STAINED_GLASS +FD: net/minecraft/world/item/Items/f_42215_ net/minecraft/world/item/Items/LIGHT_BLUE_STAINED_GLASS +FD: net/minecraft/world/item/Items/f_42216_ net/minecraft/world/item/Items/YELLOW_STAINED_GLASS +FD: net/minecraft/world/item/Items/f_42217_ net/minecraft/world/item/Items/LIME_STAINED_GLASS +FD: net/minecraft/world/item/Items/f_42218_ net/minecraft/world/item/Items/PINK_STAINED_GLASS +FD: net/minecraft/world/item/Items/f_42219_ net/minecraft/world/item/Items/GRAY_STAINED_GLASS +FD: net/minecraft/world/item/Items/f_42220_ net/minecraft/world/item/Items/LIGHT_GRAY_STAINED_GLASS +FD: net/minecraft/world/item/Items/f_42221_ net/minecraft/world/item/Items/CYAN_STAINED_GLASS +FD: net/minecraft/world/item/Items/f_42222_ net/minecraft/world/item/Items/PURPLE_STAINED_GLASS +FD: net/minecraft/world/item/Items/f_42223_ net/minecraft/world/item/Items/POLISHED_ANDESITE +FD: net/minecraft/world/item/Items/f_42224_ net/minecraft/world/item/Items/PURPLE_SHULKER_BOX +FD: net/minecraft/world/item/Items/f_42225_ net/minecraft/world/item/Items/BLUE_SHULKER_BOX +FD: net/minecraft/world/item/Items/f_42226_ net/minecraft/world/item/Items/BROWN_SHULKER_BOX +FD: net/minecraft/world/item/Items/f_42227_ net/minecraft/world/item/Items/GREEN_SHULKER_BOX +FD: net/minecraft/world/item/Items/f_42228_ net/minecraft/world/item/Items/RED_SHULKER_BOX +FD: net/minecraft/world/item/Items/f_42229_ net/minecraft/world/item/Items/BLACK_SHULKER_BOX +FD: net/minecraft/world/item/Items/f_42230_ net/minecraft/world/item/Items/WHITE_GLAZED_TERRACOTTA +FD: net/minecraft/world/item/Items/f_42231_ net/minecraft/world/item/Items/ORANGE_GLAZED_TERRACOTTA +FD: net/minecraft/world/item/Items/f_42232_ net/minecraft/world/item/Items/MAGENTA_GLAZED_TERRACOTTA +FD: net/minecraft/world/item/Items/f_42233_ net/minecraft/world/item/Items/LIGHT_BLUE_GLAZED_TERRACOTTA +FD: net/minecraft/world/item/Items/f_42234_ net/minecraft/world/item/Items/YELLOW_GLAZED_TERRACOTTA +FD: net/minecraft/world/item/Items/f_42235_ net/minecraft/world/item/Items/LIME_GLAZED_TERRACOTTA +FD: net/minecraft/world/item/Items/f_42236_ net/minecraft/world/item/Items/PINK_GLAZED_TERRACOTTA +FD: net/minecraft/world/item/Items/f_42237_ net/minecraft/world/item/Items/GRAY_GLAZED_TERRACOTTA +FD: net/minecraft/world/item/Items/f_42238_ net/minecraft/world/item/Items/LIGHT_GRAY_GLAZED_TERRACOTTA +FD: net/minecraft/world/item/Items/f_42239_ net/minecraft/world/item/Items/CYAN_GLAZED_TERRACOTTA +FD: net/minecraft/world/item/Items/f_42240_ net/minecraft/world/item/Items/PURPLE_GLAZED_TERRACOTTA +FD: net/minecraft/world/item/Items/f_42241_ net/minecraft/world/item/Items/BLUE_GLAZED_TERRACOTTA +FD: net/minecraft/world/item/Items/f_42242_ net/minecraft/world/item/Items/BROWN_GLAZED_TERRACOTTA +FD: net/minecraft/world/item/Items/f_42243_ net/minecraft/world/item/Items/GREEN_GLAZED_TERRACOTTA +FD: net/minecraft/world/item/Items/f_42244_ net/minecraft/world/item/Items/RED_GLAZED_TERRACOTTA +FD: net/minecraft/world/item/Items/f_42245_ net/minecraft/world/item/Items/BLACK_GLAZED_TERRACOTTA +FD: net/minecraft/world/item/Items/f_42246_ net/minecraft/world/item/Items/WHITE_CONCRETE +FD: net/minecraft/world/item/Items/f_42247_ net/minecraft/world/item/Items/ORANGE_CONCRETE +FD: net/minecraft/world/item/Items/f_42248_ net/minecraft/world/item/Items/MAGENTA_CONCRETE +FD: net/minecraft/world/item/Items/f_42249_ net/minecraft/world/item/Items/LIGHT_BLUE_CONCRETE +FD: net/minecraft/world/item/Items/f_42250_ net/minecraft/world/item/Items/DARK_PRISMARINE_STAIRS +FD: net/minecraft/world/item/Items/f_42251_ net/minecraft/world/item/Items/SEA_LANTERN +FD: net/minecraft/world/item/Items/f_42252_ net/minecraft/world/item/Items/RED_SANDSTONE +FD: net/minecraft/world/item/Items/f_42253_ net/minecraft/world/item/Items/CHISELED_RED_SANDSTONE +FD: net/minecraft/world/item/Items/f_42254_ net/minecraft/world/item/Items/CUT_RED_SANDSTONE +FD: net/minecraft/world/item/Items/f_42255_ net/minecraft/world/item/Items/RED_SANDSTONE_STAIRS +FD: net/minecraft/world/item/Items/f_42256_ net/minecraft/world/item/Items/REPEATING_COMMAND_BLOCK +FD: net/minecraft/world/item/Items/f_42257_ net/minecraft/world/item/Items/CHAIN_COMMAND_BLOCK +FD: net/minecraft/world/item/Items/f_42258_ net/minecraft/world/item/Items/MAGMA_BLOCK +FD: net/minecraft/world/item/Items/f_42259_ net/minecraft/world/item/Items/NETHER_WART_BLOCK +FD: net/minecraft/world/item/Items/f_42260_ net/minecraft/world/item/Items/WARPED_WART_BLOCK +FD: net/minecraft/world/item/Items/f_42261_ net/minecraft/world/item/Items/RED_NETHER_BRICKS +FD: net/minecraft/world/item/Items/f_42262_ net/minecraft/world/item/Items/BONE_BLOCK +FD: net/minecraft/world/item/Items/f_42263_ net/minecraft/world/item/Items/STRUCTURE_VOID +FD: net/minecraft/world/item/Items/f_42264_ net/minecraft/world/item/Items/OBSERVER +FD: net/minecraft/world/item/Items/f_42265_ net/minecraft/world/item/Items/SHULKER_BOX +FD: net/minecraft/world/item/Items/f_42266_ net/minecraft/world/item/Items/WHITE_SHULKER_BOX +FD: net/minecraft/world/item/Items/f_42267_ net/minecraft/world/item/Items/ORANGE_SHULKER_BOX +FD: net/minecraft/world/item/Items/f_42268_ net/minecraft/world/item/Items/MAGENTA_SHULKER_BOX +FD: net/minecraft/world/item/Items/f_42269_ net/minecraft/world/item/Items/LIGHT_BLUE_SHULKER_BOX +FD: net/minecraft/world/item/Items/f_42270_ net/minecraft/world/item/Items/YELLOW_SHULKER_BOX +FD: net/minecraft/world/item/Items/f_42271_ net/minecraft/world/item/Items/LIME_SHULKER_BOX +FD: net/minecraft/world/item/Items/f_42272_ net/minecraft/world/item/Items/PINK_SHULKER_BOX +FD: net/minecraft/world/item/Items/f_42273_ net/minecraft/world/item/Items/GRAY_SHULKER_BOX +FD: net/minecraft/world/item/Items/f_42274_ net/minecraft/world/item/Items/LIGHT_GRAY_SHULKER_BOX +FD: net/minecraft/world/item/Items/f_42275_ net/minecraft/world/item/Items/CYAN_SHULKER_BOX +FD: net/minecraft/world/item/Items/f_42276_ net/minecraft/world/item/Items/GRASS_BLOCK +FD: net/minecraft/world/item/Items/f_42277_ net/minecraft/world/item/Items/RED_CONCRETE_POWDER +FD: net/minecraft/world/item/Items/f_42278_ net/minecraft/world/item/Items/BLACK_CONCRETE_POWDER +FD: net/minecraft/world/item/Items/f_42279_ net/minecraft/world/item/Items/TURTLE_EGG +FD: net/minecraft/world/item/Items/f_42280_ net/minecraft/world/item/Items/DEAD_TUBE_CORAL_BLOCK +FD: net/minecraft/world/item/Items/f_42281_ net/minecraft/world/item/Items/DEAD_BRAIN_CORAL_BLOCK +FD: net/minecraft/world/item/Items/f_42282_ net/minecraft/world/item/Items/DEAD_BUBBLE_CORAL_BLOCK +FD: net/minecraft/world/item/Items/f_42283_ net/minecraft/world/item/Items/DEAD_FIRE_CORAL_BLOCK +FD: net/minecraft/world/item/Items/f_42284_ net/minecraft/world/item/Items/DEAD_HORN_CORAL_BLOCK +FD: net/minecraft/world/item/Items/f_42285_ net/minecraft/world/item/Items/TUBE_CORAL_BLOCK +FD: net/minecraft/world/item/Items/f_42286_ net/minecraft/world/item/Items/BRAIN_CORAL_BLOCK +FD: net/minecraft/world/item/Items/f_42287_ net/minecraft/world/item/Items/BUBBLE_CORAL_BLOCK +FD: net/minecraft/world/item/Items/f_42288_ net/minecraft/world/item/Items/FIRE_CORAL_BLOCK +FD: net/minecraft/world/item/Items/f_42289_ net/minecraft/world/item/Items/HORN_CORAL_BLOCK +FD: net/minecraft/world/item/Items/f_42290_ net/minecraft/world/item/Items/TUBE_CORAL +FD: net/minecraft/world/item/Items/f_42291_ net/minecraft/world/item/Items/BRAIN_CORAL +FD: net/minecraft/world/item/Items/f_42292_ net/minecraft/world/item/Items/BUBBLE_CORAL +FD: net/minecraft/world/item/Items/f_42293_ net/minecraft/world/item/Items/FIRE_CORAL +FD: net/minecraft/world/item/Items/f_42294_ net/minecraft/world/item/Items/HORN_CORAL +FD: net/minecraft/world/item/Items/f_42295_ net/minecraft/world/item/Items/DEAD_BRAIN_CORAL +FD: net/minecraft/world/item/Items/f_42296_ net/minecraft/world/item/Items/DEAD_BUBBLE_CORAL +FD: net/minecraft/world/item/Items/f_42297_ net/minecraft/world/item/Items/DEAD_FIRE_CORAL +FD: net/minecraft/world/item/Items/f_42298_ net/minecraft/world/item/Items/DEAD_HORN_CORAL +FD: net/minecraft/world/item/Items/f_42299_ net/minecraft/world/item/Items/DEAD_TUBE_CORAL +FD: net/minecraft/world/item/Items/f_42300_ net/minecraft/world/item/Items/TUBE_CORAL_FAN +FD: net/minecraft/world/item/Items/f_42301_ net/minecraft/world/item/Items/BRAIN_CORAL_FAN +FD: net/minecraft/world/item/Items/f_42302_ net/minecraft/world/item/Items/BUBBLE_CORAL_FAN +FD: net/minecraft/world/item/Items/f_42303_ net/minecraft/world/item/Items/YELLOW_CONCRETE +FD: net/minecraft/world/item/Items/f_42304_ net/minecraft/world/item/Items/LIME_CONCRETE +FD: net/minecraft/world/item/Items/f_42305_ net/minecraft/world/item/Items/PINK_CONCRETE +FD: net/minecraft/world/item/Items/f_42306_ net/minecraft/world/item/Items/GRAY_CONCRETE +FD: net/minecraft/world/item/Items/f_42307_ net/minecraft/world/item/Items/LIGHT_GRAY_CONCRETE +FD: net/minecraft/world/item/Items/f_42308_ net/minecraft/world/item/Items/CYAN_CONCRETE +FD: net/minecraft/world/item/Items/f_42309_ net/minecraft/world/item/Items/PURPLE_CONCRETE +FD: net/minecraft/world/item/Items/f_42310_ net/minecraft/world/item/Items/BLUE_CONCRETE +FD: net/minecraft/world/item/Items/f_42311_ net/minecraft/world/item/Items/BROWN_CONCRETE +FD: net/minecraft/world/item/Items/f_42312_ net/minecraft/world/item/Items/GREEN_CONCRETE +FD: net/minecraft/world/item/Items/f_42313_ net/minecraft/world/item/Items/RED_CONCRETE +FD: net/minecraft/world/item/Items/f_42314_ net/minecraft/world/item/Items/BLACK_CONCRETE +FD: net/minecraft/world/item/Items/f_42315_ net/minecraft/world/item/Items/WHITE_CONCRETE_POWDER +FD: net/minecraft/world/item/Items/f_42316_ net/minecraft/world/item/Items/ORANGE_CONCRETE_POWDER +FD: net/minecraft/world/item/Items/f_42317_ net/minecraft/world/item/Items/MAGENTA_CONCRETE_POWDER +FD: net/minecraft/world/item/Items/f_42318_ net/minecraft/world/item/Items/LIGHT_BLUE_CONCRETE_POWDER +FD: net/minecraft/world/item/Items/f_42319_ net/minecraft/world/item/Items/YELLOW_CONCRETE_POWDER +FD: net/minecraft/world/item/Items/f_42320_ net/minecraft/world/item/Items/LIME_CONCRETE_POWDER +FD: net/minecraft/world/item/Items/f_42321_ net/minecraft/world/item/Items/PINK_CONCRETE_POWDER +FD: net/minecraft/world/item/Items/f_42322_ net/minecraft/world/item/Items/GRAY_CONCRETE_POWDER +FD: net/minecraft/world/item/Items/f_42323_ net/minecraft/world/item/Items/LIGHT_GRAY_CONCRETE_POWDER +FD: net/minecraft/world/item/Items/f_42324_ net/minecraft/world/item/Items/CYAN_CONCRETE_POWDER +FD: net/minecraft/world/item/Items/f_42325_ net/minecraft/world/item/Items/PURPLE_CONCRETE_POWDER +FD: net/minecraft/world/item/Items/f_42326_ net/minecraft/world/item/Items/BLUE_CONCRETE_POWDER +FD: net/minecraft/world/item/Items/f_42327_ net/minecraft/world/item/Items/BROWN_CONCRETE_POWDER +FD: net/minecraft/world/item/Items/f_42328_ net/minecraft/world/item/Items/GREEN_CONCRETE_POWDER +FD: net/minecraft/world/item/Items/f_42329_ net/minecraft/world/item/Items/DIRT +FD: net/minecraft/world/item/Items/f_42330_ net/minecraft/world/item/Items/POLISHED_DIORITE_SLAB +FD: net/minecraft/world/item/Items/f_42331_ net/minecraft/world/item/Items/MOSSY_COBBLESTONE_SLAB +FD: net/minecraft/world/item/Items/f_42332_ net/minecraft/world/item/Items/END_STONE_BRICK_SLAB +FD: net/minecraft/world/item/Items/f_42333_ net/minecraft/world/item/Items/SMOOTH_SANDSTONE_SLAB +FD: net/minecraft/world/item/Items/f_42334_ net/minecraft/world/item/Items/SMOOTH_QUARTZ_SLAB +FD: net/minecraft/world/item/Items/f_42335_ net/minecraft/world/item/Items/GRANITE_SLAB +FD: net/minecraft/world/item/Items/f_42336_ net/minecraft/world/item/Items/ANDESITE_SLAB +FD: net/minecraft/world/item/Items/f_42337_ net/minecraft/world/item/Items/RED_NETHER_BRICK_SLAB +FD: net/minecraft/world/item/Items/f_42338_ net/minecraft/world/item/Items/POLISHED_ANDESITE_SLAB +FD: net/minecraft/world/item/Items/f_42339_ net/minecraft/world/item/Items/DIORITE_SLAB +FD: net/minecraft/world/item/Items/f_42340_ net/minecraft/world/item/Items/SCAFFOLDING +FD: net/minecraft/world/item/Items/f_42341_ net/minecraft/world/item/Items/IRON_DOOR +FD: net/minecraft/world/item/Items/f_42342_ net/minecraft/world/item/Items/OAK_DOOR +FD: net/minecraft/world/item/Items/f_42343_ net/minecraft/world/item/Items/SPRUCE_DOOR +FD: net/minecraft/world/item/Items/f_42344_ net/minecraft/world/item/Items/BIRCH_DOOR +FD: net/minecraft/world/item/Items/f_42345_ net/minecraft/world/item/Items/JUNGLE_DOOR +FD: net/minecraft/world/item/Items/f_42346_ net/minecraft/world/item/Items/ACACIA_DOOR +FD: net/minecraft/world/item/Items/f_42347_ net/minecraft/world/item/Items/DARK_OAK_DOOR +FD: net/minecraft/world/item/Items/f_42348_ net/minecraft/world/item/Items/CRIMSON_DOOR +FD: net/minecraft/world/item/Items/f_42349_ net/minecraft/world/item/Items/WARPED_DOOR +FD: net/minecraft/world/item/Items/f_42350_ net/minecraft/world/item/Items/REPEATER +FD: net/minecraft/world/item/Items/f_42351_ net/minecraft/world/item/Items/COMPARATOR +FD: net/minecraft/world/item/Items/f_42352_ net/minecraft/world/item/Items/STRUCTURE_BLOCK +FD: net/minecraft/world/item/Items/f_42353_ net/minecraft/world/item/Items/JIGSAW +FD: net/minecraft/world/item/Items/f_42354_ net/minecraft/world/item/Items/TURTLE_HELMET +FD: net/minecraft/world/item/Items/f_42355_ net/minecraft/world/item/Items/SCUTE +FD: net/minecraft/world/item/Items/f_42356_ net/minecraft/world/item/Items/FIRE_CORAL_FAN +FD: net/minecraft/world/item/Items/f_42357_ net/minecraft/world/item/Items/HORN_CORAL_FAN +FD: net/minecraft/world/item/Items/f_42358_ net/minecraft/world/item/Items/DEAD_TUBE_CORAL_FAN +FD: net/minecraft/world/item/Items/f_42359_ net/minecraft/world/item/Items/DEAD_BRAIN_CORAL_FAN +FD: net/minecraft/world/item/Items/f_42360_ net/minecraft/world/item/Items/DEAD_BUBBLE_CORAL_FAN +FD: net/minecraft/world/item/Items/f_42361_ net/minecraft/world/item/Items/DEAD_FIRE_CORAL_FAN +FD: net/minecraft/world/item/Items/f_42362_ net/minecraft/world/item/Items/DEAD_HORN_CORAL_FAN +FD: net/minecraft/world/item/Items/f_42363_ net/minecraft/world/item/Items/BLUE_ICE +FD: net/minecraft/world/item/Items/f_42364_ net/minecraft/world/item/Items/CONDUIT +FD: net/minecraft/world/item/Items/f_42365_ net/minecraft/world/item/Items/POLISHED_GRANITE_STAIRS +FD: net/minecraft/world/item/Items/f_42366_ net/minecraft/world/item/Items/SMOOTH_RED_SANDSTONE_STAIRS +FD: net/minecraft/world/item/Items/f_42367_ net/minecraft/world/item/Items/MOSSY_STONE_BRICK_STAIRS +FD: net/minecraft/world/item/Items/f_42368_ net/minecraft/world/item/Items/POLISHED_DIORITE_STAIRS +FD: net/minecraft/world/item/Items/f_42369_ net/minecraft/world/item/Items/MOSSY_COBBLESTONE_STAIRS +FD: net/minecraft/world/item/Items/f_42370_ net/minecraft/world/item/Items/END_STONE_BRICK_STAIRS +FD: net/minecraft/world/item/Items/f_42371_ net/minecraft/world/item/Items/STONE_STAIRS +FD: net/minecraft/world/item/Items/f_42372_ net/minecraft/world/item/Items/SMOOTH_SANDSTONE_STAIRS +FD: net/minecraft/world/item/Items/f_42373_ net/minecraft/world/item/Items/SMOOTH_QUARTZ_STAIRS +FD: net/minecraft/world/item/Items/f_42374_ net/minecraft/world/item/Items/GRANITE_STAIRS +FD: net/minecraft/world/item/Items/f_42375_ net/minecraft/world/item/Items/ANDESITE_STAIRS +FD: net/minecraft/world/item/Items/f_42376_ net/minecraft/world/item/Items/RED_NETHER_BRICK_STAIRS +FD: net/minecraft/world/item/Items/f_42377_ net/minecraft/world/item/Items/POLISHED_ANDESITE_STAIRS +FD: net/minecraft/world/item/Items/f_42378_ net/minecraft/world/item/Items/DIORITE_STAIRS +FD: net/minecraft/world/item/Items/f_42379_ net/minecraft/world/item/Items/POLISHED_GRANITE_SLAB +FD: net/minecraft/world/item/Items/f_42380_ net/minecraft/world/item/Items/SMOOTH_RED_SANDSTONE_SLAB +FD: net/minecraft/world/item/Items/f_42381_ net/minecraft/world/item/Items/MOSSY_STONE_BRICK_SLAB +FD: net/minecraft/world/item/Items/f_42382_ net/minecraft/world/item/Items/COARSE_DIRT +FD: net/minecraft/world/item/Items/f_42383_ net/minecraft/world/item/Items/IRON_SWORD +FD: net/minecraft/world/item/Items/f_42384_ net/minecraft/world/item/Items/IRON_SHOVEL +FD: net/minecraft/world/item/Items/f_42385_ net/minecraft/world/item/Items/IRON_PICKAXE +FD: net/minecraft/world/item/Items/f_42386_ net/minecraft/world/item/Items/IRON_AXE +FD: net/minecraft/world/item/Items/f_42387_ net/minecraft/world/item/Items/IRON_HOE +FD: net/minecraft/world/item/Items/f_42388_ net/minecraft/world/item/Items/DIAMOND_SWORD +FD: net/minecraft/world/item/Items/f_42389_ net/minecraft/world/item/Items/DIAMOND_SHOVEL +FD: net/minecraft/world/item/Items/f_42390_ net/minecraft/world/item/Items/DIAMOND_PICKAXE +FD: net/minecraft/world/item/Items/f_42391_ net/minecraft/world/item/Items/DIAMOND_AXE +FD: net/minecraft/world/item/Items/f_42392_ net/minecraft/world/item/Items/DIAMOND_HOE +FD: net/minecraft/world/item/Items/f_42393_ net/minecraft/world/item/Items/NETHERITE_SWORD +FD: net/minecraft/world/item/Items/f_42394_ net/minecraft/world/item/Items/NETHERITE_SHOVEL +FD: net/minecraft/world/item/Items/f_42395_ net/minecraft/world/item/Items/NETHERITE_PICKAXE +FD: net/minecraft/world/item/Items/f_42396_ net/minecraft/world/item/Items/NETHERITE_AXE +FD: net/minecraft/world/item/Items/f_42397_ net/minecraft/world/item/Items/NETHERITE_HOE +FD: net/minecraft/world/item/Items/f_42398_ net/minecraft/world/item/Items/STICK +FD: net/minecraft/world/item/Items/f_42399_ net/minecraft/world/item/Items/BOWL +FD: net/minecraft/world/item/Items/f_42400_ net/minecraft/world/item/Items/MUSHROOM_STEW +FD: net/minecraft/world/item/Items/f_42401_ net/minecraft/world/item/Items/STRING +FD: net/minecraft/world/item/Items/f_42402_ net/minecraft/world/item/Items/FEATHER +FD: net/minecraft/world/item/Items/f_42403_ net/minecraft/world/item/Items/GUNPOWDER +FD: net/minecraft/world/item/Items/f_42404_ net/minecraft/world/item/Items/WHEAT_SEEDS +FD: net/minecraft/world/item/Items/f_42405_ net/minecraft/world/item/Items/WHEAT +FD: net/minecraft/world/item/Items/f_42406_ net/minecraft/world/item/Items/BREAD +FD: net/minecraft/world/item/Items/f_42407_ net/minecraft/world/item/Items/LEATHER_HELMET +FD: net/minecraft/world/item/Items/f_42408_ net/minecraft/world/item/Items/LEATHER_CHESTPLATE +FD: net/minecraft/world/item/Items/f_42409_ net/minecraft/world/item/Items/FLINT_AND_STEEL +FD: net/minecraft/world/item/Items/f_42410_ net/minecraft/world/item/Items/APPLE +FD: net/minecraft/world/item/Items/f_42411_ net/minecraft/world/item/Items/BOW +FD: net/minecraft/world/item/Items/f_42412_ net/minecraft/world/item/Items/ARROW +FD: net/minecraft/world/item/Items/f_42413_ net/minecraft/world/item/Items/COAL +FD: net/minecraft/world/item/Items/f_42414_ net/minecraft/world/item/Items/CHARCOAL +FD: net/minecraft/world/item/Items/f_42415_ net/minecraft/world/item/Items/DIAMOND +FD: net/minecraft/world/item/Items/f_42416_ net/minecraft/world/item/Items/IRON_INGOT +FD: net/minecraft/world/item/Items/f_42417_ net/minecraft/world/item/Items/GOLD_INGOT +FD: net/minecraft/world/item/Items/f_42418_ net/minecraft/world/item/Items/NETHERITE_INGOT +FD: net/minecraft/world/item/Items/f_42419_ net/minecraft/world/item/Items/NETHERITE_SCRAP +FD: net/minecraft/world/item/Items/f_42420_ net/minecraft/world/item/Items/WOODEN_SWORD +FD: net/minecraft/world/item/Items/f_42421_ net/minecraft/world/item/Items/WOODEN_SHOVEL +FD: net/minecraft/world/item/Items/f_42422_ net/minecraft/world/item/Items/WOODEN_PICKAXE +FD: net/minecraft/world/item/Items/f_42423_ net/minecraft/world/item/Items/WOODEN_AXE +FD: net/minecraft/world/item/Items/f_42424_ net/minecraft/world/item/Items/WOODEN_HOE +FD: net/minecraft/world/item/Items/f_42425_ net/minecraft/world/item/Items/STONE_SWORD +FD: net/minecraft/world/item/Items/f_42426_ net/minecraft/world/item/Items/STONE_SHOVEL +FD: net/minecraft/world/item/Items/f_42427_ net/minecraft/world/item/Items/STONE_PICKAXE +FD: net/minecraft/world/item/Items/f_42428_ net/minecraft/world/item/Items/STONE_AXE +FD: net/minecraft/world/item/Items/f_42429_ net/minecraft/world/item/Items/STONE_HOE +FD: net/minecraft/world/item/Items/f_42430_ net/minecraft/world/item/Items/GOLDEN_SWORD +FD: net/minecraft/world/item/Items/f_42431_ net/minecraft/world/item/Items/GOLDEN_SHOVEL +FD: net/minecraft/world/item/Items/f_42432_ net/minecraft/world/item/Items/GOLDEN_PICKAXE +FD: net/minecraft/world/item/Items/f_42433_ net/minecraft/world/item/Items/GOLDEN_AXE +FD: net/minecraft/world/item/Items/f_42434_ net/minecraft/world/item/Items/GOLDEN_HOE +FD: net/minecraft/world/item/Items/f_42435_ net/minecraft/world/item/Items/PODZOL +FD: net/minecraft/world/item/Items/f_42436_ net/minecraft/world/item/Items/GOLDEN_APPLE +FD: net/minecraft/world/item/Items/f_42437_ net/minecraft/world/item/Items/ENCHANTED_GOLDEN_APPLE +FD: net/minecraft/world/item/Items/f_42438_ net/minecraft/world/item/Items/OAK_SIGN +FD: net/minecraft/world/item/Items/f_42439_ net/minecraft/world/item/Items/SPRUCE_SIGN +FD: net/minecraft/world/item/Items/f_42440_ net/minecraft/world/item/Items/BIRCH_SIGN +FD: net/minecraft/world/item/Items/f_42441_ net/minecraft/world/item/Items/JUNGLE_SIGN +FD: net/minecraft/world/item/Items/f_42442_ net/minecraft/world/item/Items/ACACIA_SIGN +FD: net/minecraft/world/item/Items/f_42443_ net/minecraft/world/item/Items/DARK_OAK_SIGN +FD: net/minecraft/world/item/Items/f_42444_ net/minecraft/world/item/Items/CRIMSON_SIGN +FD: net/minecraft/world/item/Items/f_42445_ net/minecraft/world/item/Items/WARPED_SIGN +FD: net/minecraft/world/item/Items/f_42446_ net/minecraft/world/item/Items/BUCKET +FD: net/minecraft/world/item/Items/f_42447_ net/minecraft/world/item/Items/WATER_BUCKET +FD: net/minecraft/world/item/Items/f_42448_ net/minecraft/world/item/Items/LAVA_BUCKET +FD: net/minecraft/world/item/Items/f_42449_ net/minecraft/world/item/Items/MINECART +FD: net/minecraft/world/item/Items/f_42450_ net/minecraft/world/item/Items/SADDLE +FD: net/minecraft/world/item/Items/f_42451_ net/minecraft/world/item/Items/REDSTONE +FD: net/minecraft/world/item/Items/f_42452_ net/minecraft/world/item/Items/SNOWBALL +FD: net/minecraft/world/item/Items/f_42453_ net/minecraft/world/item/Items/OAK_BOAT +FD: net/minecraft/world/item/Items/f_42454_ net/minecraft/world/item/Items/LEATHER +FD: net/minecraft/world/item/Items/f_42455_ net/minecraft/world/item/Items/MILK_BUCKET +FD: net/minecraft/world/item/Items/f_42456_ net/minecraft/world/item/Items/PUFFERFISH_BUCKET +FD: net/minecraft/world/item/Items/f_42457_ net/minecraft/world/item/Items/SALMON_BUCKET +FD: net/minecraft/world/item/Items/f_42458_ net/minecraft/world/item/Items/COD_BUCKET +FD: net/minecraft/world/item/Items/f_42459_ net/minecraft/world/item/Items/TROPICAL_FISH_BUCKET +FD: net/minecraft/world/item/Items/f_42460_ net/minecraft/world/item/Items/BRICK +FD: net/minecraft/world/item/Items/f_42461_ net/minecraft/world/item/Items/CLAY_BALL +FD: net/minecraft/world/item/Items/f_42462_ net/minecraft/world/item/Items/LEATHER_LEGGINGS +FD: net/minecraft/world/item/Items/f_42463_ net/minecraft/world/item/Items/LEATHER_BOOTS +FD: net/minecraft/world/item/Items/f_42464_ net/minecraft/world/item/Items/CHAINMAIL_HELMET +FD: net/minecraft/world/item/Items/f_42465_ net/minecraft/world/item/Items/CHAINMAIL_CHESTPLATE +FD: net/minecraft/world/item/Items/f_42466_ net/minecraft/world/item/Items/CHAINMAIL_LEGGINGS +FD: net/minecraft/world/item/Items/f_42467_ net/minecraft/world/item/Items/CHAINMAIL_BOOTS +FD: net/minecraft/world/item/Items/f_42468_ net/minecraft/world/item/Items/IRON_HELMET +FD: net/minecraft/world/item/Items/f_42469_ net/minecraft/world/item/Items/IRON_CHESTPLATE +FD: net/minecraft/world/item/Items/f_42470_ net/minecraft/world/item/Items/IRON_LEGGINGS +FD: net/minecraft/world/item/Items/f_42471_ net/minecraft/world/item/Items/IRON_BOOTS +FD: net/minecraft/world/item/Items/f_42472_ net/minecraft/world/item/Items/DIAMOND_HELMET +FD: net/minecraft/world/item/Items/f_42473_ net/minecraft/world/item/Items/DIAMOND_CHESTPLATE +FD: net/minecraft/world/item/Items/f_42474_ net/minecraft/world/item/Items/DIAMOND_LEGGINGS +FD: net/minecraft/world/item/Items/f_42475_ net/minecraft/world/item/Items/DIAMOND_BOOTS +FD: net/minecraft/world/item/Items/f_42476_ net/minecraft/world/item/Items/GOLDEN_HELMET +FD: net/minecraft/world/item/Items/f_42477_ net/minecraft/world/item/Items/GOLDEN_CHESTPLATE +FD: net/minecraft/world/item/Items/f_42478_ net/minecraft/world/item/Items/GOLDEN_LEGGINGS +FD: net/minecraft/world/item/Items/f_42479_ net/minecraft/world/item/Items/GOLDEN_BOOTS +FD: net/minecraft/world/item/Items/f_42480_ net/minecraft/world/item/Items/NETHERITE_HELMET +FD: net/minecraft/world/item/Items/f_42481_ net/minecraft/world/item/Items/NETHERITE_CHESTPLATE +FD: net/minecraft/world/item/Items/f_42482_ net/minecraft/world/item/Items/NETHERITE_LEGGINGS +FD: net/minecraft/world/item/Items/f_42483_ net/minecraft/world/item/Items/NETHERITE_BOOTS +FD: net/minecraft/world/item/Items/f_42484_ net/minecraft/world/item/Items/FLINT +FD: net/minecraft/world/item/Items/f_42485_ net/minecraft/world/item/Items/PORKCHOP +FD: net/minecraft/world/item/Items/f_42486_ net/minecraft/world/item/Items/COOKED_PORKCHOP +FD: net/minecraft/world/item/Items/f_42487_ net/minecraft/world/item/Items/PAINTING +FD: net/minecraft/world/item/Items/f_42488_ net/minecraft/world/item/Items/CRIMSON_NYLIUM +FD: net/minecraft/world/item/Items/f_42489_ net/minecraft/world/item/Items/PINK_DYE +FD: net/minecraft/world/item/Items/f_42490_ net/minecraft/world/item/Items/GRAY_DYE +FD: net/minecraft/world/item/Items/f_42491_ net/minecraft/world/item/Items/LIGHT_GRAY_DYE +FD: net/minecraft/world/item/Items/f_42492_ net/minecraft/world/item/Items/CYAN_DYE +FD: net/minecraft/world/item/Items/f_42493_ net/minecraft/world/item/Items/PURPLE_DYE +FD: net/minecraft/world/item/Items/f_42494_ net/minecraft/world/item/Items/BLUE_DYE +FD: net/minecraft/world/item/Items/f_42495_ net/minecraft/world/item/Items/BROWN_DYE +FD: net/minecraft/world/item/Items/f_42496_ net/minecraft/world/item/Items/GREEN_DYE +FD: net/minecraft/world/item/Items/f_42497_ net/minecraft/world/item/Items/RED_DYE +FD: net/minecraft/world/item/Items/f_42498_ net/minecraft/world/item/Items/BLACK_DYE +FD: net/minecraft/world/item/Items/f_42499_ net/minecraft/world/item/Items/BONE_MEAL +FD: net/minecraft/world/item/Items/f_42500_ net/minecraft/world/item/Items/BONE +FD: net/minecraft/world/item/Items/f_42501_ net/minecraft/world/item/Items/SUGAR +FD: net/minecraft/world/item/Items/f_42502_ net/minecraft/world/item/Items/CAKE +FD: net/minecraft/world/item/Items/f_42503_ net/minecraft/world/item/Items/WHITE_BED +FD: net/minecraft/world/item/Items/f_42504_ net/minecraft/world/item/Items/ORANGE_BED +FD: net/minecraft/world/item/Items/f_42505_ net/minecraft/world/item/Items/MAGENTA_BED +FD: net/minecraft/world/item/Items/f_42506_ net/minecraft/world/item/Items/LIGHT_BLUE_BED +FD: net/minecraft/world/item/Items/f_42507_ net/minecraft/world/item/Items/YELLOW_BED +FD: net/minecraft/world/item/Items/f_42508_ net/minecraft/world/item/Items/LIME_BED +FD: net/minecraft/world/item/Items/f_42509_ net/minecraft/world/item/Items/PINK_BED +FD: net/minecraft/world/item/Items/f_42510_ net/minecraft/world/item/Items/GRAY_BED +FD: net/minecraft/world/item/Items/f_42511_ net/minecraft/world/item/Items/LIGHT_GRAY_BED +FD: net/minecraft/world/item/Items/f_42512_ net/minecraft/world/item/Items/CYAN_BED +FD: net/minecraft/world/item/Items/f_42513_ net/minecraft/world/item/Items/PURPLE_BED +FD: net/minecraft/world/item/Items/f_42514_ net/minecraft/world/item/Items/BLUE_BED +FD: net/minecraft/world/item/Items/f_42515_ net/minecraft/world/item/Items/DRIED_KELP_BLOCK +FD: net/minecraft/world/item/Items/f_42516_ net/minecraft/world/item/Items/PAPER +FD: net/minecraft/world/item/Items/f_42517_ net/minecraft/world/item/Items/BOOK +FD: net/minecraft/world/item/Items/f_42518_ net/minecraft/world/item/Items/SLIME_BALL +FD: net/minecraft/world/item/Items/f_42519_ net/minecraft/world/item/Items/CHEST_MINECART +FD: net/minecraft/world/item/Items/f_42520_ net/minecraft/world/item/Items/FURNACE_MINECART +FD: net/minecraft/world/item/Items/f_42521_ net/minecraft/world/item/Items/EGG +FD: net/minecraft/world/item/Items/f_42522_ net/minecraft/world/item/Items/COMPASS +FD: net/minecraft/world/item/Items/f_42523_ net/minecraft/world/item/Items/FISHING_ROD +FD: net/minecraft/world/item/Items/f_42524_ net/minecraft/world/item/Items/CLOCK +FD: net/minecraft/world/item/Items/f_42525_ net/minecraft/world/item/Items/GLOWSTONE_DUST +FD: net/minecraft/world/item/Items/f_42526_ net/minecraft/world/item/Items/COD +FD: net/minecraft/world/item/Items/f_42527_ net/minecraft/world/item/Items/SALMON +FD: net/minecraft/world/item/Items/f_42528_ net/minecraft/world/item/Items/TROPICAL_FISH +FD: net/minecraft/world/item/Items/f_42529_ net/minecraft/world/item/Items/PUFFERFISH +FD: net/minecraft/world/item/Items/f_42530_ net/minecraft/world/item/Items/COOKED_COD +FD: net/minecraft/world/item/Items/f_42531_ net/minecraft/world/item/Items/COOKED_SALMON +FD: net/minecraft/world/item/Items/f_42532_ net/minecraft/world/item/Items/INK_SAC +FD: net/minecraft/world/item/Items/f_42533_ net/minecraft/world/item/Items/COCOA_BEANS +FD: net/minecraft/world/item/Items/f_42534_ net/minecraft/world/item/Items/LAPIS_LAZULI +FD: net/minecraft/world/item/Items/f_42535_ net/minecraft/world/item/Items/WHITE_DYE +FD: net/minecraft/world/item/Items/f_42536_ net/minecraft/world/item/Items/ORANGE_DYE +FD: net/minecraft/world/item/Items/f_42537_ net/minecraft/world/item/Items/MAGENTA_DYE +FD: net/minecraft/world/item/Items/f_42538_ net/minecraft/world/item/Items/LIGHT_BLUE_DYE +FD: net/minecraft/world/item/Items/f_42539_ net/minecraft/world/item/Items/YELLOW_DYE +FD: net/minecraft/world/item/Items/f_42540_ net/minecraft/world/item/Items/LIME_DYE +FD: net/minecraft/world/item/Items/f_42541_ net/minecraft/world/item/Items/WARPED_NYLIUM +FD: net/minecraft/world/item/Items/f_42542_ net/minecraft/world/item/Items/MAGMA_CREAM +FD: net/minecraft/world/item/Items/f_42543_ net/minecraft/world/item/Items/BREWING_STAND +FD: net/minecraft/world/item/Items/f_42544_ net/minecraft/world/item/Items/CAULDRON +FD: net/minecraft/world/item/Items/f_42545_ net/minecraft/world/item/Items/ENDER_EYE +FD: net/minecraft/world/item/Items/f_42546_ net/minecraft/world/item/Items/GLISTERING_MELON_SLICE +FD: net/minecraft/world/item/Items/f_42547_ net/minecraft/world/item/Items/BAT_SPAWN_EGG +FD: net/minecraft/world/item/Items/f_42548_ net/minecraft/world/item/Items/BEE_SPAWN_EGG +FD: net/minecraft/world/item/Items/f_42549_ net/minecraft/world/item/Items/BLAZE_SPAWN_EGG +FD: net/minecraft/world/item/Items/f_42550_ net/minecraft/world/item/Items/CAT_SPAWN_EGG +FD: net/minecraft/world/item/Items/f_42551_ net/minecraft/world/item/Items/CAVE_SPIDER_SPAWN_EGG +FD: net/minecraft/world/item/Items/f_42552_ net/minecraft/world/item/Items/CHICKEN_SPAWN_EGG +FD: net/minecraft/world/item/Items/f_42553_ net/minecraft/world/item/Items/COD_SPAWN_EGG +FD: net/minecraft/world/item/Items/f_42554_ net/minecraft/world/item/Items/COW_SPAWN_EGG +FD: net/minecraft/world/item/Items/f_42555_ net/minecraft/world/item/Items/CREEPER_SPAWN_EGG +FD: net/minecraft/world/item/Items/f_42556_ net/minecraft/world/item/Items/DOLPHIN_SPAWN_EGG +FD: net/minecraft/world/item/Items/f_42557_ net/minecraft/world/item/Items/DONKEY_SPAWN_EGG +FD: net/minecraft/world/item/Items/f_42558_ net/minecraft/world/item/Items/DROWNED_SPAWN_EGG +FD: net/minecraft/world/item/Items/f_42559_ net/minecraft/world/item/Items/ELDER_GUARDIAN_SPAWN_EGG +FD: net/minecraft/world/item/Items/f_42560_ net/minecraft/world/item/Items/ENDERMAN_SPAWN_EGG +FD: net/minecraft/world/item/Items/f_42561_ net/minecraft/world/item/Items/ENDERMITE_SPAWN_EGG +FD: net/minecraft/world/item/Items/f_42562_ net/minecraft/world/item/Items/EVOKER_SPAWN_EGG +FD: net/minecraft/world/item/Items/f_42563_ net/minecraft/world/item/Items/FOX_SPAWN_EGG +FD: net/minecraft/world/item/Items/f_42564_ net/minecraft/world/item/Items/GHAST_SPAWN_EGG +FD: net/minecraft/world/item/Items/f_42565_ net/minecraft/world/item/Items/GUARDIAN_SPAWN_EGG +FD: net/minecraft/world/item/Items/f_42566_ net/minecraft/world/item/Items/HOGLIN_SPAWN_EGG +FD: net/minecraft/world/item/Items/f_42567_ net/minecraft/world/item/Items/HORSE_SPAWN_EGG +FD: net/minecraft/world/item/Items/f_42568_ net/minecraft/world/item/Items/BROWN_BED +FD: net/minecraft/world/item/Items/f_42569_ net/minecraft/world/item/Items/GREEN_BED +FD: net/minecraft/world/item/Items/f_42570_ net/minecraft/world/item/Items/RED_BED +FD: net/minecraft/world/item/Items/f_42571_ net/minecraft/world/item/Items/BLACK_BED +FD: net/minecraft/world/item/Items/f_42572_ net/minecraft/world/item/Items/COOKIE +FD: net/minecraft/world/item/Items/f_42573_ net/minecraft/world/item/Items/FILLED_MAP +FD: net/minecraft/world/item/Items/f_42574_ net/minecraft/world/item/Items/SHEARS +FD: net/minecraft/world/item/Items/f_42575_ net/minecraft/world/item/Items/MELON_SLICE +FD: net/minecraft/world/item/Items/f_42576_ net/minecraft/world/item/Items/DRIED_KELP +FD: net/minecraft/world/item/Items/f_42577_ net/minecraft/world/item/Items/PUMPKIN_SEEDS +FD: net/minecraft/world/item/Items/f_42578_ net/minecraft/world/item/Items/MELON_SEEDS +FD: net/minecraft/world/item/Items/f_42579_ net/minecraft/world/item/Items/BEEF +FD: net/minecraft/world/item/Items/f_42580_ net/minecraft/world/item/Items/COOKED_BEEF +FD: net/minecraft/world/item/Items/f_42581_ net/minecraft/world/item/Items/CHICKEN +FD: net/minecraft/world/item/Items/f_42582_ net/minecraft/world/item/Items/COOKED_CHICKEN +FD: net/minecraft/world/item/Items/f_42583_ net/minecraft/world/item/Items/ROTTEN_FLESH +FD: net/minecraft/world/item/Items/f_42584_ net/minecraft/world/item/Items/ENDER_PEARL +FD: net/minecraft/world/item/Items/f_42585_ net/minecraft/world/item/Items/BLAZE_ROD +FD: net/minecraft/world/item/Items/f_42586_ net/minecraft/world/item/Items/GHAST_TEAR +FD: net/minecraft/world/item/Items/f_42587_ net/minecraft/world/item/Items/GOLD_NUGGET +FD: net/minecraft/world/item/Items/f_42588_ net/minecraft/world/item/Items/NETHER_WART +FD: net/minecraft/world/item/Items/f_42589_ net/minecraft/world/item/Items/POTION +FD: net/minecraft/world/item/Items/f_42590_ net/minecraft/world/item/Items/GLASS_BOTTLE +FD: net/minecraft/world/item/Items/f_42591_ net/minecraft/world/item/Items/SPIDER_EYE +FD: net/minecraft/world/item/Items/f_42592_ net/minecraft/world/item/Items/FERMENTED_SPIDER_EYE +FD: net/minecraft/world/item/Items/f_42593_ net/minecraft/world/item/Items/BLAZE_POWDER +FD: net/minecraft/world/item/Items/f_42594_ net/minecraft/world/item/Items/COBBLESTONE +FD: net/minecraft/world/item/Items/f_42595_ net/minecraft/world/item/Items/STRAY_SPAWN_EGG +FD: net/minecraft/world/item/Items/f_42596_ net/minecraft/world/item/Items/STRIDER_SPAWN_EGG +FD: net/minecraft/world/item/Items/f_42597_ net/minecraft/world/item/Items/TRADER_LLAMA_SPAWN_EGG +FD: net/minecraft/world/item/Items/f_42598_ net/minecraft/world/item/Items/TROPICAL_FISH_SPAWN_EGG +FD: net/minecraft/world/item/Items/f_42599_ net/minecraft/world/item/Items/TURTLE_SPAWN_EGG +FD: net/minecraft/world/item/Items/f_42600_ net/minecraft/world/item/Items/VEX_SPAWN_EGG +FD: net/minecraft/world/item/Items/f_42601_ net/minecraft/world/item/Items/VILLAGER_SPAWN_EGG +FD: net/minecraft/world/item/Items/f_42602_ net/minecraft/world/item/Items/VINDICATOR_SPAWN_EGG +FD: net/minecraft/world/item/Items/f_42603_ net/minecraft/world/item/Items/WANDERING_TRADER_SPAWN_EGG +FD: net/minecraft/world/item/Items/f_42604_ net/minecraft/world/item/Items/WITCH_SPAWN_EGG +FD: net/minecraft/world/item/Items/f_42605_ net/minecraft/world/item/Items/WITHER_SKELETON_SPAWN_EGG +FD: net/minecraft/world/item/Items/f_42606_ net/minecraft/world/item/Items/WOLF_SPAWN_EGG +FD: net/minecraft/world/item/Items/f_42607_ net/minecraft/world/item/Items/ZOGLIN_SPAWN_EGG +FD: net/minecraft/world/item/Items/f_42608_ net/minecraft/world/item/Items/ZOMBIE_SPAWN_EGG +FD: net/minecraft/world/item/Items/f_42609_ net/minecraft/world/item/Items/ZOMBIE_HORSE_SPAWN_EGG +FD: net/minecraft/world/item/Items/f_42610_ net/minecraft/world/item/Items/ZOMBIE_VILLAGER_SPAWN_EGG +FD: net/minecraft/world/item/Items/f_42611_ net/minecraft/world/item/Items/ZOMBIFIED_PIGLIN_SPAWN_EGG +FD: net/minecraft/world/item/Items/f_42612_ net/minecraft/world/item/Items/EXPERIENCE_BOTTLE +FD: net/minecraft/world/item/Items/f_42613_ net/minecraft/world/item/Items/FIRE_CHARGE +FD: net/minecraft/world/item/Items/f_42614_ net/minecraft/world/item/Items/WRITABLE_BOOK +FD: net/minecraft/world/item/Items/f_42615_ net/minecraft/world/item/Items/WRITTEN_BOOK +FD: net/minecraft/world/item/Items/f_42616_ net/minecraft/world/item/Items/EMERALD +FD: net/minecraft/world/item/Items/f_42617_ net/minecraft/world/item/Items/ITEM_FRAME +FD: net/minecraft/world/item/Items/f_42618_ net/minecraft/world/item/Items/FLOWER_POT +FD: net/minecraft/world/item/Items/f_42619_ net/minecraft/world/item/Items/CARROT +FD: net/minecraft/world/item/Items/f_42620_ net/minecraft/world/item/Items/POTATO +FD: net/minecraft/world/item/Items/f_42621_ net/minecraft/world/item/Items/HUSK_SPAWN_EGG +FD: net/minecraft/world/item/Items/f_42622_ net/minecraft/world/item/Items/LLAMA_SPAWN_EGG +FD: net/minecraft/world/item/Items/f_42623_ net/minecraft/world/item/Items/MAGMA_CUBE_SPAWN_EGG +FD: net/minecraft/world/item/Items/f_42624_ net/minecraft/world/item/Items/MOOSHROOM_SPAWN_EGG +FD: net/minecraft/world/item/Items/f_42625_ net/minecraft/world/item/Items/MULE_SPAWN_EGG +FD: net/minecraft/world/item/Items/f_42626_ net/minecraft/world/item/Items/OCELOT_SPAWN_EGG +FD: net/minecraft/world/item/Items/f_42627_ net/minecraft/world/item/Items/PANDA_SPAWN_EGG +FD: net/minecraft/world/item/Items/f_42628_ net/minecraft/world/item/Items/PARROT_SPAWN_EGG +FD: net/minecraft/world/item/Items/f_42629_ net/minecraft/world/item/Items/PHANTOM_SPAWN_EGG +FD: net/minecraft/world/item/Items/f_42630_ net/minecraft/world/item/Items/PIG_SPAWN_EGG +FD: net/minecraft/world/item/Items/f_42631_ net/minecraft/world/item/Items/PIGLIN_SPAWN_EGG +FD: net/minecraft/world/item/Items/f_42632_ net/minecraft/world/item/Items/PIGLIN_BRUTE_SPAWN_EGG +FD: net/minecraft/world/item/Items/f_42633_ net/minecraft/world/item/Items/PILLAGER_SPAWN_EGG +FD: net/minecraft/world/item/Items/f_42634_ net/minecraft/world/item/Items/POLAR_BEAR_SPAWN_EGG +FD: net/minecraft/world/item/Items/f_42635_ net/minecraft/world/item/Items/PUFFERFISH_SPAWN_EGG +FD: net/minecraft/world/item/Items/f_42636_ net/minecraft/world/item/Items/RABBIT_SPAWN_EGG +FD: net/minecraft/world/item/Items/f_42637_ net/minecraft/world/item/Items/RAVAGER_SPAWN_EGG +FD: net/minecraft/world/item/Items/f_42638_ net/minecraft/world/item/Items/SALMON_SPAWN_EGG +FD: net/minecraft/world/item/Items/f_42639_ net/minecraft/world/item/Items/SHEEP_SPAWN_EGG +FD: net/minecraft/world/item/Items/f_42640_ net/minecraft/world/item/Items/SHULKER_SPAWN_EGG +FD: net/minecraft/world/item/Items/f_42641_ net/minecraft/world/item/Items/SILVERFISH_SPAWN_EGG +FD: net/minecraft/world/item/Items/f_42642_ net/minecraft/world/item/Items/SKELETON_SPAWN_EGG +FD: net/minecraft/world/item/Items/f_42643_ net/minecraft/world/item/Items/SKELETON_HORSE_SPAWN_EGG +FD: net/minecraft/world/item/Items/f_42644_ net/minecraft/world/item/Items/SLIME_SPAWN_EGG +FD: net/minecraft/world/item/Items/f_42645_ net/minecraft/world/item/Items/SPIDER_SPAWN_EGG +FD: net/minecraft/world/item/Items/f_42646_ net/minecraft/world/item/Items/SQUID_SPAWN_EGG +FD: net/minecraft/world/item/Items/f_42647_ net/minecraft/world/item/Items/OAK_PLANKS +FD: net/minecraft/world/item/Items/f_42648_ net/minecraft/world/item/Items/RABBIT_FOOT +FD: net/minecraft/world/item/Items/f_42649_ net/minecraft/world/item/Items/RABBIT_HIDE +FD: net/minecraft/world/item/Items/f_42650_ net/minecraft/world/item/Items/ARMOR_STAND +FD: net/minecraft/world/item/Items/f_42651_ net/minecraft/world/item/Items/IRON_HORSE_ARMOR +FD: net/minecraft/world/item/Items/f_42652_ net/minecraft/world/item/Items/GOLDEN_HORSE_ARMOR +FD: net/minecraft/world/item/Items/f_42653_ net/minecraft/world/item/Items/DIAMOND_HORSE_ARMOR +FD: net/minecraft/world/item/Items/f_42654_ net/minecraft/world/item/Items/LEATHER_HORSE_ARMOR +FD: net/minecraft/world/item/Items/f_42655_ net/minecraft/world/item/Items/LEAD +FD: net/minecraft/world/item/Items/f_42656_ net/minecraft/world/item/Items/NAME_TAG +FD: net/minecraft/world/item/Items/f_42657_ net/minecraft/world/item/Items/COMMAND_BLOCK_MINECART +FD: net/minecraft/world/item/Items/f_42658_ net/minecraft/world/item/Items/MUTTON +FD: net/minecraft/world/item/Items/f_42659_ net/minecraft/world/item/Items/COOKED_MUTTON +FD: net/minecraft/world/item/Items/f_42660_ net/minecraft/world/item/Items/WHITE_BANNER +FD: net/minecraft/world/item/Items/f_42661_ net/minecraft/world/item/Items/ORANGE_BANNER +FD: net/minecraft/world/item/Items/f_42662_ net/minecraft/world/item/Items/MAGENTA_BANNER +FD: net/minecraft/world/item/Items/f_42663_ net/minecraft/world/item/Items/LIGHT_BLUE_BANNER +FD: net/minecraft/world/item/Items/f_42664_ net/minecraft/world/item/Items/YELLOW_BANNER +FD: net/minecraft/world/item/Items/f_42665_ net/minecraft/world/item/Items/LIME_BANNER +FD: net/minecraft/world/item/Items/f_42666_ net/minecraft/world/item/Items/PINK_BANNER +FD: net/minecraft/world/item/Items/f_42667_ net/minecraft/world/item/Items/GRAY_BANNER +FD: net/minecraft/world/item/Items/f_42668_ net/minecraft/world/item/Items/LIGHT_GRAY_BANNER +FD: net/minecraft/world/item/Items/f_42669_ net/minecraft/world/item/Items/CYAN_BANNER +FD: net/minecraft/world/item/Items/f_42670_ net/minecraft/world/item/Items/PURPLE_BANNER +FD: net/minecraft/world/item/Items/f_42671_ net/minecraft/world/item/Items/BLUE_BANNER +FD: net/minecraft/world/item/Items/f_42672_ net/minecraft/world/item/Items/BROWN_BANNER +FD: net/minecraft/world/item/Items/f_42673_ net/minecraft/world/item/Items/GREEN_BANNER +FD: net/minecraft/world/item/Items/f_42674_ net/minecraft/world/item/Items/BAKED_POTATO +FD: net/minecraft/world/item/Items/f_42675_ net/minecraft/world/item/Items/POISONOUS_POTATO +FD: net/minecraft/world/item/Items/f_42676_ net/minecraft/world/item/Items/MAP +FD: net/minecraft/world/item/Items/f_42677_ net/minecraft/world/item/Items/GOLDEN_CARROT +FD: net/minecraft/world/item/Items/f_42678_ net/minecraft/world/item/Items/SKELETON_SKULL +FD: net/minecraft/world/item/Items/f_42679_ net/minecraft/world/item/Items/WITHER_SKELETON_SKULL +FD: net/minecraft/world/item/Items/f_42680_ net/minecraft/world/item/Items/PLAYER_HEAD +FD: net/minecraft/world/item/Items/f_42681_ net/minecraft/world/item/Items/ZOMBIE_HEAD +FD: net/minecraft/world/item/Items/f_42682_ net/minecraft/world/item/Items/CREEPER_HEAD +FD: net/minecraft/world/item/Items/f_42683_ net/minecraft/world/item/Items/DRAGON_HEAD +FD: net/minecraft/world/item/Items/f_42684_ net/minecraft/world/item/Items/CARROT_ON_A_STICK +FD: net/minecraft/world/item/Items/f_42685_ net/minecraft/world/item/Items/WARPED_FUNGUS_ON_A_STICK +FD: net/minecraft/world/item/Items/f_42686_ net/minecraft/world/item/Items/NETHER_STAR +FD: net/minecraft/world/item/Items/f_42687_ net/minecraft/world/item/Items/PUMPKIN_PIE +FD: net/minecraft/world/item/Items/f_42688_ net/minecraft/world/item/Items/FIREWORK_ROCKET +FD: net/minecraft/world/item/Items/f_42689_ net/minecraft/world/item/Items/FIREWORK_STAR +FD: net/minecraft/world/item/Items/f_42690_ net/minecraft/world/item/Items/ENCHANTED_BOOK +FD: net/minecraft/world/item/Items/f_42691_ net/minecraft/world/item/Items/NETHER_BRICK +FD: net/minecraft/world/item/Items/f_42692_ net/minecraft/world/item/Items/QUARTZ +FD: net/minecraft/world/item/Items/f_42693_ net/minecraft/world/item/Items/TNT_MINECART +FD: net/minecraft/world/item/Items/f_42694_ net/minecraft/world/item/Items/HOPPER_MINECART +FD: net/minecraft/world/item/Items/f_42695_ net/minecraft/world/item/Items/PRISMARINE_SHARD +FD: net/minecraft/world/item/Items/f_42696_ net/minecraft/world/item/Items/PRISMARINE_CRYSTALS +FD: net/minecraft/world/item/Items/f_42697_ net/minecraft/world/item/Items/RABBIT +FD: net/minecraft/world/item/Items/f_42698_ net/minecraft/world/item/Items/COOKED_RABBIT +FD: net/minecraft/world/item/Items/f_42699_ net/minecraft/world/item/Items/RABBIT_STEW +FD: net/minecraft/world/item/Items/f_42700_ net/minecraft/world/item/Items/SPRUCE_PLANKS +FD: net/minecraft/world/item/Items/f_42701_ net/minecraft/world/item/Items/MUSIC_DISC_CAT +FD: net/minecraft/world/item/Items/f_42702_ net/minecraft/world/item/Items/MUSIC_DISC_BLOCKS +FD: net/minecraft/world/item/Items/f_42703_ net/minecraft/world/item/Items/MUSIC_DISC_CHIRP +FD: net/minecraft/world/item/Items/f_42704_ net/minecraft/world/item/Items/MUSIC_DISC_FAR +FD: net/minecraft/world/item/Items/f_42705_ net/minecraft/world/item/Items/MUSIC_DISC_MALL +FD: net/minecraft/world/item/Items/f_42706_ net/minecraft/world/item/Items/MUSIC_DISC_MELLOHI +FD: net/minecraft/world/item/Items/f_42707_ net/minecraft/world/item/Items/MUSIC_DISC_STAL +FD: net/minecraft/world/item/Items/f_42708_ net/minecraft/world/item/Items/MUSIC_DISC_STRAD +FD: net/minecraft/world/item/Items/f_42709_ net/minecraft/world/item/Items/MUSIC_DISC_WARD +FD: net/minecraft/world/item/Items/f_42710_ net/minecraft/world/item/Items/MUSIC_DISC_11 +FD: net/minecraft/world/item/Items/f_42711_ net/minecraft/world/item/Items/MUSIC_DISC_WAIT +FD: net/minecraft/world/item/Items/f_42712_ net/minecraft/world/item/Items/MUSIC_DISC_PIGSTEP +FD: net/minecraft/world/item/Items/f_42713_ net/minecraft/world/item/Items/TRIDENT +FD: net/minecraft/world/item/Items/f_42714_ net/minecraft/world/item/Items/PHANTOM_MEMBRANE +FD: net/minecraft/world/item/Items/f_42715_ net/minecraft/world/item/Items/NAUTILUS_SHELL +FD: net/minecraft/world/item/Items/f_42716_ net/minecraft/world/item/Items/HEART_OF_THE_SEA +FD: net/minecraft/world/item/Items/f_42717_ net/minecraft/world/item/Items/CROSSBOW +FD: net/minecraft/world/item/Items/f_42718_ net/minecraft/world/item/Items/SUSPICIOUS_STEW +FD: net/minecraft/world/item/Items/f_42719_ net/minecraft/world/item/Items/LOOM +FD: net/minecraft/world/item/Items/f_42720_ net/minecraft/world/item/Items/FLOWER_BANNER_PATTERN +FD: net/minecraft/world/item/Items/f_42721_ net/minecraft/world/item/Items/CREEPER_BANNER_PATTERN +FD: net/minecraft/world/item/Items/f_42722_ net/minecraft/world/item/Items/SKULL_BANNER_PATTERN +FD: net/minecraft/world/item/Items/f_42723_ net/minecraft/world/item/Items/MOJANG_BANNER_PATTERN +FD: net/minecraft/world/item/Items/f_42725_ net/minecraft/world/item/Items/PIGLIN_BANNER_PATTERN +FD: net/minecraft/world/item/Items/f_42726_ net/minecraft/world/item/Items/COMPOSTER +FD: net/minecraft/world/item/Items/f_42727_ net/minecraft/world/item/Items/RED_BANNER +FD: net/minecraft/world/item/Items/f_42728_ net/minecraft/world/item/Items/BLACK_BANNER +FD: net/minecraft/world/item/Items/f_42729_ net/minecraft/world/item/Items/END_CRYSTAL +FD: net/minecraft/world/item/Items/f_42730_ net/minecraft/world/item/Items/CHORUS_FRUIT +FD: net/minecraft/world/item/Items/f_42731_ net/minecraft/world/item/Items/POPPED_CHORUS_FRUIT +FD: net/minecraft/world/item/Items/f_42732_ net/minecraft/world/item/Items/BEETROOT +FD: net/minecraft/world/item/Items/f_42733_ net/minecraft/world/item/Items/BEETROOT_SEEDS +FD: net/minecraft/world/item/Items/f_42734_ net/minecraft/world/item/Items/BEETROOT_SOUP +FD: net/minecraft/world/item/Items/f_42735_ net/minecraft/world/item/Items/DRAGON_BREATH +FD: net/minecraft/world/item/Items/f_42736_ net/minecraft/world/item/Items/SPLASH_POTION +FD: net/minecraft/world/item/Items/f_42737_ net/minecraft/world/item/Items/SPECTRAL_ARROW +FD: net/minecraft/world/item/Items/f_42738_ net/minecraft/world/item/Items/TIPPED_ARROW +FD: net/minecraft/world/item/Items/f_42739_ net/minecraft/world/item/Items/LINGERING_POTION +FD: net/minecraft/world/item/Items/f_42740_ net/minecraft/world/item/Items/SHIELD +FD: net/minecraft/world/item/Items/f_42741_ net/minecraft/world/item/Items/ELYTRA +FD: net/minecraft/world/item/Items/f_42742_ net/minecraft/world/item/Items/SPRUCE_BOAT +FD: net/minecraft/world/item/Items/f_42743_ net/minecraft/world/item/Items/BIRCH_BOAT +FD: net/minecraft/world/item/Items/f_42744_ net/minecraft/world/item/Items/JUNGLE_BOAT +FD: net/minecraft/world/item/Items/f_42745_ net/minecraft/world/item/Items/ACACIA_BOAT +FD: net/minecraft/world/item/Items/f_42746_ net/minecraft/world/item/Items/DARK_OAK_BOAT +FD: net/minecraft/world/item/Items/f_42747_ net/minecraft/world/item/Items/TOTEM_OF_UNDYING +FD: net/minecraft/world/item/Items/f_42748_ net/minecraft/world/item/Items/SHULKER_SHELL +FD: net/minecraft/world/item/Items/f_42749_ net/minecraft/world/item/Items/IRON_NUGGET +FD: net/minecraft/world/item/Items/f_42750_ net/minecraft/world/item/Items/KNOWLEDGE_BOOK +FD: net/minecraft/world/item/Items/f_42751_ net/minecraft/world/item/Items/DEBUG_STICK +FD: net/minecraft/world/item/Items/f_42752_ net/minecraft/world/item/Items/MUSIC_DISC_13 +FD: net/minecraft/world/item/Items/f_42753_ net/minecraft/world/item/Items/BIRCH_PLANKS +FD: net/minecraft/world/item/Items/f_42754_ net/minecraft/world/item/Items/CRYING_OBSIDIAN +FD: net/minecraft/world/item/Items/f_42755_ net/minecraft/world/item/Items/BLACKSTONE +FD: net/minecraft/world/item/Items/f_42756_ net/minecraft/world/item/Items/BLACKSTONE_SLAB +FD: net/minecraft/world/item/Items/f_42757_ net/minecraft/world/item/Items/BLACKSTONE_STAIRS +FD: net/minecraft/world/item/Items/f_42758_ net/minecraft/world/item/Items/GILDED_BLACKSTONE +FD: net/minecraft/world/item/Items/f_42759_ net/minecraft/world/item/Items/POLISHED_BLACKSTONE +FD: net/minecraft/world/item/Items/f_42760_ net/minecraft/world/item/Items/POLISHED_BLACKSTONE_SLAB +FD: net/minecraft/world/item/Items/f_42761_ net/minecraft/world/item/Items/POLISHED_BLACKSTONE_STAIRS +FD: net/minecraft/world/item/Items/f_42762_ net/minecraft/world/item/Items/CHISELED_POLISHED_BLACKSTONE +FD: net/minecraft/world/item/Items/f_42763_ net/minecraft/world/item/Items/POLISHED_BLACKSTONE_BRICKS +FD: net/minecraft/world/item/Items/f_42764_ net/minecraft/world/item/Items/POLISHED_BLACKSTONE_BRICK_SLAB +FD: net/minecraft/world/item/Items/f_42765_ net/minecraft/world/item/Items/POLISHED_BLACKSTONE_BRICK_STAIRS +FD: net/minecraft/world/item/Items/f_42766_ net/minecraft/world/item/Items/CRACKED_POLISHED_BLACKSTONE_BRICKS +FD: net/minecraft/world/item/Items/f_42767_ net/minecraft/world/item/Items/RESPAWN_ANCHOR +FD: net/minecraft/world/item/Items/f_42768_ net/minecraft/world/item/Items/BARREL +FD: net/minecraft/world/item/Items/f_42769_ net/minecraft/world/item/Items/SMOKER +FD: net/minecraft/world/item/Items/f_42770_ net/minecraft/world/item/Items/BLAST_FURNACE +FD: net/minecraft/world/item/Items/f_42771_ net/minecraft/world/item/Items/CARTOGRAPHY_TABLE +FD: net/minecraft/world/item/Items/f_42772_ net/minecraft/world/item/Items/FLETCHING_TABLE +FD: net/minecraft/world/item/Items/f_42773_ net/minecraft/world/item/Items/GRINDSTONE +FD: net/minecraft/world/item/Items/f_42774_ net/minecraft/world/item/Items/LECTERN +FD: net/minecraft/world/item/Items/f_42775_ net/minecraft/world/item/Items/SMITHING_TABLE +FD: net/minecraft/world/item/Items/f_42776_ net/minecraft/world/item/Items/STONECUTTER +FD: net/minecraft/world/item/Items/f_42777_ net/minecraft/world/item/Items/BELL +FD: net/minecraft/world/item/Items/f_42778_ net/minecraft/world/item/Items/LANTERN +FD: net/minecraft/world/item/Items/f_42779_ net/minecraft/world/item/Items/SOUL_LANTERN +FD: net/minecraft/world/item/Items/f_42780_ net/minecraft/world/item/Items/SWEET_BERRIES +FD: net/minecraft/world/item/Items/f_42781_ net/minecraft/world/item/Items/CAMPFIRE +FD: net/minecraft/world/item/Items/f_42782_ net/minecraft/world/item/Items/SOUL_CAMPFIRE +FD: net/minecraft/world/item/Items/f_42783_ net/minecraft/world/item/Items/SHROOMLIGHT +FD: net/minecraft/world/item/Items/f_42784_ net/minecraft/world/item/Items/HONEYCOMB +FD: net/minecraft/world/item/Items/f_42785_ net/minecraft/world/item/Items/BEE_NEST +FD: net/minecraft/world/item/Items/f_42786_ net/minecraft/world/item/Items/BEEHIVE +FD: net/minecraft/world/item/Items/f_42787_ net/minecraft/world/item/Items/HONEY_BOTTLE +FD: net/minecraft/world/item/Items/f_42788_ net/minecraft/world/item/Items/HONEY_BLOCK +FD: net/minecraft/world/item/Items/f_42789_ net/minecraft/world/item/Items/HONEYCOMB_BLOCK +FD: net/minecraft/world/item/Items/f_42790_ net/minecraft/world/item/Items/LODESTONE +FD: net/minecraft/world/item/Items/f_42791_ net/minecraft/world/item/Items/NETHERITE_BLOCK +FD: net/minecraft/world/item/Items/f_42792_ net/minecraft/world/item/Items/ANCIENT_DEBRIS +FD: net/minecraft/world/item/Items/f_42793_ net/minecraft/world/item/Items/TARGET +FD: net/minecraft/world/item/Items/f_42794_ net/minecraft/world/item/Items/JUNGLE_PLANKS +FD: net/minecraft/world/item/Items/f_42795_ net/minecraft/world/item/Items/ACACIA_PLANKS +FD: net/minecraft/world/item/Items/f_42796_ net/minecraft/world/item/Items/DARK_OAK_PLANKS +FD: net/minecraft/world/item/Items/f_42797_ net/minecraft/world/item/Items/CRIMSON_PLANKS +FD: net/minecraft/world/item/Items/f_42798_ net/minecraft/world/item/Items/WARPED_PLANKS +FD: net/minecraft/world/item/Items/f_42799_ net/minecraft/world/item/Items/OAK_SAPLING +FD: net/minecraft/world/item/Items/f_42800_ net/minecraft/world/item/Items/SPRUCE_SAPLING +FD: net/minecraft/world/item/Items/f_42801_ net/minecraft/world/item/Items/BIRCH_SAPLING +FD: net/minecraft/world/item/KnowledgeBookItem/f_151103_ net/minecraft/world/item/KnowledgeBookItem/RECIPE_TAG +FD: net/minecraft/world/item/KnowledgeBookItem/f_42819_ net/minecraft/world/item/KnowledgeBookItem/LOGGER +FD: net/minecraft/world/item/MapItem/f_151104_ net/minecraft/world/item/MapItem/IMAGE_WIDTH +FD: net/minecraft/world/item/MapItem/f_151105_ net/minecraft/world/item/MapItem/IMAGE_HEIGHT +FD: net/minecraft/world/item/MapItem/f_151106_ net/minecraft/world/item/MapItem/DEFAULT_MAP_COLOR +FD: net/minecraft/world/item/MapItem/f_151107_ net/minecraft/world/item/MapItem/TAG_MAP +FD: net/minecraft/world/item/MapItem/f_256921_ net/minecraft/world/item/MapItem/MAP_LOCK_TAG +FD: net/minecraft/world/item/MapItem/f_257005_ net/minecraft/world/item/MapItem/MAP_SCALE_TAG +FD: net/minecraft/world/item/MilkBucketItem/f_151133_ net/minecraft/world/item/MilkBucketItem/DRINK_DURATION +FD: net/minecraft/world/item/MinecartItem/f_42934_ net/minecraft/world/item/MinecartItem/DISPENSE_ITEM_BEHAVIOR +FD: net/minecraft/world/item/MinecartItem/f_42935_ net/minecraft/world/item/MinecartItem/type +FD: net/minecraft/world/item/MinecartItem$1/f_42944_ net/minecraft/world/item/MinecartItem$1/defaultDispenseItemBehavior +FD: net/minecraft/world/item/MobBucketItem/f_151134_ net/minecraft/world/item/MobBucketItem/type +FD: net/minecraft/world/item/MobBucketItem/f_151135_ net/minecraft/world/item/MobBucketItem/emptySound +FD: net/minecraft/world/item/PlayerHeadItem/f_151174_ net/minecraft/world/item/PlayerHeadItem/TAG_SKULL_OWNER +FD: net/minecraft/world/item/PotionItem/f_151180_ net/minecraft/world/item/PotionItem/DRINK_DURATION +FD: net/minecraft/world/item/ProjectileWeaponItem/f_43005_ net/minecraft/world/item/ProjectileWeaponItem/ARROW_ONLY +FD: net/minecraft/world/item/ProjectileWeaponItem/f_43006_ net/minecraft/world/item/ProjectileWeaponItem/ARROW_OR_FIREWORK +FD: net/minecraft/world/item/Rarity/$VALUES net/minecraft/world/item/Rarity/$VALUES +FD: net/minecraft/world/item/Rarity/COMMON net/minecraft/world/item/Rarity/COMMON +FD: net/minecraft/world/item/Rarity/EPIC net/minecraft/world/item/Rarity/EPIC +FD: net/minecraft/world/item/Rarity/RARE net/minecraft/world/item/Rarity/RARE +FD: net/minecraft/world/item/Rarity/UNCOMMON net/minecraft/world/item/Rarity/UNCOMMON +FD: net/minecraft/world/item/Rarity/f_43022_ net/minecraft/world/item/Rarity/color +FD: net/minecraft/world/item/RecordItem/f_238749_ net/minecraft/world/item/RecordItem/lengthInTicks +FD: net/minecraft/world/item/RecordItem/f_43032_ net/minecraft/world/item/RecordItem/BY_NAME +FD: net/minecraft/world/item/RecordItem/f_43033_ net/minecraft/world/item/RecordItem/analogOutput +FD: net/minecraft/world/item/RecordItem/f_43034_ net/minecraft/world/item/RecordItem/sound +FD: net/minecraft/world/item/ServerItemCooldowns/f_43065_ net/minecraft/world/item/ServerItemCooldowns/player +FD: net/minecraft/world/item/ShieldItem/f_151182_ net/minecraft/world/item/ShieldItem/EFFECTIVE_BLOCK_DELAY +FD: net/minecraft/world/item/ShieldItem/f_151183_ net/minecraft/world/item/ShieldItem/MINIMUM_DURABILITY_DAMAGE +FD: net/minecraft/world/item/ShieldItem/f_151184_ net/minecraft/world/item/ShieldItem/TAG_BASE_COLOR +FD: net/minecraft/world/item/ShovelItem/f_43110_ net/minecraft/world/item/ShovelItem/FLATTENABLES +FD: net/minecraft/world/item/SmithingTemplateItem/f_265846_ net/minecraft/world/item/SmithingTemplateItem/ARMOR_TRIM_BASE_SLOT_DESCRIPTION +FD: net/minecraft/world/item/SmithingTemplateItem/f_265856_ net/minecraft/world/item/SmithingTemplateItem/NETHERITE_UPGRADE_INGREDIENTS +FD: net/minecraft/world/item/SmithingTemplateItem/f_265859_ net/minecraft/world/item/SmithingTemplateItem/EMPTY_SLOT_LEGGINGS +FD: net/minecraft/world/item/SmithingTemplateItem/f_265860_ net/minecraft/world/item/SmithingTemplateItem/DESCRIPTION_ID +FD: net/minecraft/world/item/SmithingTemplateItem/f_265863_ net/minecraft/world/item/SmithingTemplateItem/NETHERITE_UPGRADE_BASE_SLOT_DESCRIPTION +FD: net/minecraft/world/item/SmithingTemplateItem/f_265864_ net/minecraft/world/item/SmithingTemplateItem/INGREDIENTS_TITLE +FD: net/minecraft/world/item/SmithingTemplateItem/f_265873_ net/minecraft/world/item/SmithingTemplateItem/EMPTY_SLOT_DIAMOND +FD: net/minecraft/world/item/SmithingTemplateItem/f_265875_ net/minecraft/world/item/SmithingTemplateItem/baseSlotEmptyIcons +FD: net/minecraft/world/item/SmithingTemplateItem/f_265879_ net/minecraft/world/item/SmithingTemplateItem/EMPTY_SLOT_LAPIS_LAZULI +FD: net/minecraft/world/item/SmithingTemplateItem/f_265894_ net/minecraft/world/item/SmithingTemplateItem/EMPTY_SLOT_QUARTZ +FD: net/minecraft/world/item/SmithingTemplateItem/f_265895_ net/minecraft/world/item/SmithingTemplateItem/APPLIES_TO_TITLE +FD: net/minecraft/world/item/SmithingTemplateItem/f_265906_ net/minecraft/world/item/SmithingTemplateItem/TITLE_FORMAT +FD: net/minecraft/world/item/SmithingTemplateItem/f_265917_ net/minecraft/world/item/SmithingTemplateItem/EMPTY_SLOT_BOOTS +FD: net/minecraft/world/item/SmithingTemplateItem/f_265923_ net/minecraft/world/item/SmithingTemplateItem/DESCRIPTION_FORMAT +FD: net/minecraft/world/item/SmithingTemplateItem/f_265932_ net/minecraft/world/item/SmithingTemplateItem/EMPTY_SLOT_SHOVEL +FD: net/minecraft/world/item/SmithingTemplateItem/f_265939_ net/minecraft/world/item/SmithingTemplateItem/upgradeDescription +FD: net/minecraft/world/item/SmithingTemplateItem/f_265948_ net/minecraft/world/item/SmithingTemplateItem/ARMOR_TRIM_APPLIES_TO +FD: net/minecraft/world/item/SmithingTemplateItem/f_265950_ net/minecraft/world/item/SmithingTemplateItem/EMPTY_SLOT_HOE +FD: net/minecraft/world/item/SmithingTemplateItem/f_265955_ net/minecraft/world/item/SmithingTemplateItem/EMPTY_SLOT_PICKAXE +FD: net/minecraft/world/item/SmithingTemplateItem/f_265960_ net/minecraft/world/item/SmithingTemplateItem/ARMOR_TRIM_INGREDIENTS +FD: net/minecraft/world/item/SmithingTemplateItem/f_265982_ net/minecraft/world/item/SmithingTemplateItem/NETHERITE_UPGRADE +FD: net/minecraft/world/item/SmithingTemplateItem/f_265990_ net/minecraft/world/item/SmithingTemplateItem/EMPTY_SLOT_AXE +FD: net/minecraft/world/item/SmithingTemplateItem/f_265995_ net/minecraft/world/item/SmithingTemplateItem/baseSlotDescription +FD: net/minecraft/world/item/SmithingTemplateItem/f_266023_ net/minecraft/world/item/SmithingTemplateItem/ARMOR_TRIM_ADDITIONS_SLOT_DESCRIPTION +FD: net/minecraft/world/item/SmithingTemplateItem/f_266026_ net/minecraft/world/item/SmithingTemplateItem/EMPTY_SLOT_INGOT +FD: net/minecraft/world/item/SmithingTemplateItem/f_266037_ net/minecraft/world/item/SmithingTemplateItem/ingredients +FD: net/minecraft/world/item/SmithingTemplateItem/f_266054_ net/minecraft/world/item/SmithingTemplateItem/NETHERITE_UPGRADE_APPLIES_TO +FD: net/minecraft/world/item/SmithingTemplateItem/f_266066_ net/minecraft/world/item/SmithingTemplateItem/EMPTY_SLOT_CHESTPLATE +FD: net/minecraft/world/item/SmithingTemplateItem/f_266068_ net/minecraft/world/item/SmithingTemplateItem/additionalSlotEmptyIcons +FD: net/minecraft/world/item/SmithingTemplateItem/f_266072_ net/minecraft/world/item/SmithingTemplateItem/NETHERITE_UPGRADE_ADDITIONS_SLOT_DESCRIPTION +FD: net/minecraft/world/item/SmithingTemplateItem/f_266075_ net/minecraft/world/item/SmithingTemplateItem/additionsSlotDescription +FD: net/minecraft/world/item/SmithingTemplateItem/f_266082_ net/minecraft/world/item/SmithingTemplateItem/EMPTY_SLOT_REDSTONE_DUST +FD: net/minecraft/world/item/SmithingTemplateItem/f_266085_ net/minecraft/world/item/SmithingTemplateItem/EMPTY_SLOT_EMERALD +FD: net/minecraft/world/item/SmithingTemplateItem/f_266096_ net/minecraft/world/item/SmithingTemplateItem/EMPTY_SLOT_SWORD +FD: net/minecraft/world/item/SmithingTemplateItem/f_266097_ net/minecraft/world/item/SmithingTemplateItem/appliesTo +FD: net/minecraft/world/item/SmithingTemplateItem/f_266113_ net/minecraft/world/item/SmithingTemplateItem/EMPTY_SLOT_HELMET +FD: net/minecraft/world/item/SmithingTemplateItem/f_268746_ net/minecraft/world/item/SmithingTemplateItem/EMPTY_SLOT_AMETHYST_SHARD +FD: net/minecraft/world/item/SolidBucketItem/f_151185_ net/minecraft/world/item/SolidBucketItem/placeSound +FD: net/minecraft/world/item/SpawnEggItem/f_151200_ net/minecraft/world/item/SpawnEggItem/backgroundColor +FD: net/minecraft/world/item/SpawnEggItem/f_151201_ net/minecraft/world/item/SpawnEggItem/highlightColor +FD: net/minecraft/world/item/SpawnEggItem/f_43201_ net/minecraft/world/item/SpawnEggItem/BY_ID +FD: net/minecraft/world/item/SpawnEggItem/f_43204_ net/minecraft/world/item/SpawnEggItem/defaultType +FD: net/minecraft/world/item/SpyglassItem/f_151202_ net/minecraft/world/item/SpyglassItem/USE_DURATION +FD: net/minecraft/world/item/SpyglassItem/f_151203_ net/minecraft/world/item/SpyglassItem/ZOOM_FOV_MODIFIER +FD: net/minecraft/world/item/StandingAndWallBlockItem/f_244386_ net/minecraft/world/item/StandingAndWallBlockItem/attachmentDirection +FD: net/minecraft/world/item/StandingAndWallBlockItem/f_43246_ net/minecraft/world/item/StandingAndWallBlockItem/wallBlock +FD: net/minecraft/world/item/SuspiciousStewItem/f_151225_ net/minecraft/world/item/SuspiciousStewItem/EFFECTS_TAG +FD: net/minecraft/world/item/SuspiciousStewItem/f_151226_ net/minecraft/world/item/SuspiciousStewItem/EFFECT_ID_TAG +FD: net/minecraft/world/item/SuspiciousStewItem/f_151227_ net/minecraft/world/item/SuspiciousStewItem/EFFECT_DURATION_TAG +FD: net/minecraft/world/item/SuspiciousStewItem/f_256996_ net/minecraft/world/item/SuspiciousStewItem/DEFAULT_DURATION +FD: net/minecraft/world/item/SwordItem/f_43266_ net/minecraft/world/item/SwordItem/attackDamage +FD: net/minecraft/world/item/SwordItem/f_43267_ net/minecraft/world/item/SwordItem/defaultModifiers +FD: net/minecraft/world/item/TieredItem/f_43306_ net/minecraft/world/item/TieredItem/tier +FD: net/minecraft/world/item/Tiers/$VALUES net/minecraft/world/item/Tiers/$VALUES +FD: net/minecraft/world/item/Tiers/DIAMOND net/minecraft/world/item/Tiers/DIAMOND +FD: net/minecraft/world/item/Tiers/GOLD net/minecraft/world/item/Tiers/GOLD +FD: net/minecraft/world/item/Tiers/IRON net/minecraft/world/item/Tiers/IRON +FD: net/minecraft/world/item/Tiers/NETHERITE net/minecraft/world/item/Tiers/NETHERITE +FD: net/minecraft/world/item/Tiers/STONE net/minecraft/world/item/Tiers/STONE +FD: net/minecraft/world/item/Tiers/WOOD net/minecraft/world/item/Tiers/WOOD +FD: net/minecraft/world/item/Tiers/f_43321_ net/minecraft/world/item/Tiers/level +FD: net/minecraft/world/item/Tiers/f_43322_ net/minecraft/world/item/Tiers/uses +FD: net/minecraft/world/item/Tiers/f_43323_ net/minecraft/world/item/Tiers/speed +FD: net/minecraft/world/item/Tiers/f_43324_ net/minecraft/world/item/Tiers/damage +FD: net/minecraft/world/item/Tiers/f_43325_ net/minecraft/world/item/Tiers/enchantmentValue +FD: net/minecraft/world/item/Tiers/f_43326_ net/minecraft/world/item/Tiers/repairIngredient +FD: net/minecraft/world/item/TooltipFlag/f_256730_ net/minecraft/world/item/TooltipFlag/ADVANCED +FD: net/minecraft/world/item/TooltipFlag/f_256752_ net/minecraft/world/item/TooltipFlag/NORMAL +FD: net/minecraft/world/item/TooltipFlag$Default/f_257043_ net/minecraft/world/item/TooltipFlag$Default/creative +FD: net/minecraft/world/item/TooltipFlag$Default/f_43368_ net/minecraft/world/item/TooltipFlag$Default/advanced +FD: net/minecraft/world/item/TridentItem/f_151230_ net/minecraft/world/item/TridentItem/THROW_THRESHOLD_TIME +FD: net/minecraft/world/item/TridentItem/f_151231_ net/minecraft/world/item/TridentItem/BASE_DAMAGE +FD: net/minecraft/world/item/TridentItem/f_151232_ net/minecraft/world/item/TridentItem/SHOOT_POWER +FD: net/minecraft/world/item/TridentItem/f_43379_ net/minecraft/world/item/TridentItem/defaultModifiers +FD: net/minecraft/world/item/UseAnim/$VALUES net/minecraft/world/item/UseAnim/$VALUES +FD: net/minecraft/world/item/UseAnim/BLOCK net/minecraft/world/item/UseAnim/BLOCK +FD: net/minecraft/world/item/UseAnim/BOW net/minecraft/world/item/UseAnim/BOW +FD: net/minecraft/world/item/UseAnim/BRUSH net/minecraft/world/item/UseAnim/BRUSH +FD: net/minecraft/world/item/UseAnim/CROSSBOW net/minecraft/world/item/UseAnim/CROSSBOW +FD: net/minecraft/world/item/UseAnim/DRINK net/minecraft/world/item/UseAnim/DRINK +FD: net/minecraft/world/item/UseAnim/EAT net/minecraft/world/item/UseAnim/EAT +FD: net/minecraft/world/item/UseAnim/NONE net/minecraft/world/item/UseAnim/NONE +FD: net/minecraft/world/item/UseAnim/SPEAR net/minecraft/world/item/UseAnim/SPEAR +FD: net/minecraft/world/item/UseAnim/SPYGLASS net/minecraft/world/item/UseAnim/SPYGLASS +FD: net/minecraft/world/item/UseAnim/TOOT_HORN net/minecraft/world/item/UseAnim/TOOT_HORN +FD: net/minecraft/world/item/WrittenBookItem/f_151235_ net/minecraft/world/item/WrittenBookItem/TITLE_LENGTH +FD: net/minecraft/world/item/WrittenBookItem/f_151236_ net/minecraft/world/item/WrittenBookItem/TITLE_MAX_LENGTH +FD: net/minecraft/world/item/WrittenBookItem/f_151237_ net/minecraft/world/item/WrittenBookItem/PAGE_EDIT_LENGTH +FD: net/minecraft/world/item/WrittenBookItem/f_151238_ net/minecraft/world/item/WrittenBookItem/PAGE_LENGTH +FD: net/minecraft/world/item/WrittenBookItem/f_151239_ net/minecraft/world/item/WrittenBookItem/MAX_PAGES +FD: net/minecraft/world/item/WrittenBookItem/f_151240_ net/minecraft/world/item/WrittenBookItem/MAX_GENERATION +FD: net/minecraft/world/item/WrittenBookItem/f_151241_ net/minecraft/world/item/WrittenBookItem/TAG_TITLE +FD: net/minecraft/world/item/WrittenBookItem/f_151242_ net/minecraft/world/item/WrittenBookItem/TAG_FILTERED_TITLE +FD: net/minecraft/world/item/WrittenBookItem/f_151243_ net/minecraft/world/item/WrittenBookItem/TAG_AUTHOR +FD: net/minecraft/world/item/WrittenBookItem/f_151244_ net/minecraft/world/item/WrittenBookItem/TAG_PAGES +FD: net/minecraft/world/item/WrittenBookItem/f_151245_ net/minecraft/world/item/WrittenBookItem/TAG_FILTERED_PAGES +FD: net/minecraft/world/item/WrittenBookItem/f_151246_ net/minecraft/world/item/WrittenBookItem/TAG_GENERATION +FD: net/minecraft/world/item/WrittenBookItem/f_151247_ net/minecraft/world/item/WrittenBookItem/TAG_RESOLVED +FD: net/minecraft/world/item/alchemy/Potion/f_43481_ net/minecraft/world/item/alchemy/Potion/name +FD: net/minecraft/world/item/alchemy/Potion/f_43482_ net/minecraft/world/item/alchemy/Potion/effects +FD: net/minecraft/world/item/alchemy/PotionBrewing/f_151252_ net/minecraft/world/item/alchemy/PotionBrewing/BREWING_TIME_SECONDS +FD: net/minecraft/world/item/alchemy/PotionBrewing/f_43494_ net/minecraft/world/item/alchemy/PotionBrewing/POTION_MIXES +FD: net/minecraft/world/item/alchemy/PotionBrewing/f_43495_ net/minecraft/world/item/alchemy/PotionBrewing/CONTAINER_MIXES +FD: net/minecraft/world/item/alchemy/PotionBrewing/f_43496_ net/minecraft/world/item/alchemy/PotionBrewing/ALLOWED_CONTAINERS +FD: net/minecraft/world/item/alchemy/PotionBrewing/f_43497_ net/minecraft/world/item/alchemy/PotionBrewing/ALLOWED_CONTAINER +FD: net/minecraft/world/item/alchemy/PotionBrewing$Mix/f_43532_ net/minecraft/world/item/alchemy/PotionBrewing$Mix/from +FD: net/minecraft/world/item/alchemy/PotionBrewing$Mix/f_43533_ net/minecraft/world/item/alchemy/PotionBrewing$Mix/ingredient +FD: net/minecraft/world/item/alchemy/PotionBrewing$Mix/f_43534_ net/minecraft/world/item/alchemy/PotionBrewing$Mix/to +FD: net/minecraft/world/item/alchemy/PotionUtils/f_151254_ net/minecraft/world/item/alchemy/PotionUtils/TAG_CUSTOM_POTION_EFFECTS +FD: net/minecraft/world/item/alchemy/PotionUtils/f_151255_ net/minecraft/world/item/alchemy/PotionUtils/TAG_CUSTOM_POTION_COLOR +FD: net/minecraft/world/item/alchemy/PotionUtils/f_151256_ net/minecraft/world/item/alchemy/PotionUtils/TAG_POTION +FD: net/minecraft/world/item/alchemy/PotionUtils/f_151257_ net/minecraft/world/item/alchemy/PotionUtils/EMPTY_COLOR +FD: net/minecraft/world/item/alchemy/PotionUtils/f_43545_ net/minecraft/world/item/alchemy/PotionUtils/NO_EFFECT +FD: net/minecraft/world/item/alchemy/Potions/f_268695_ net/minecraft/world/item/alchemy/Potions/EMPTY_ID +FD: net/minecraft/world/item/alchemy/Potions/f_43581_ net/minecraft/world/item/alchemy/Potions/STRONG_HEALING +FD: net/minecraft/world/item/alchemy/Potions/f_43582_ net/minecraft/world/item/alchemy/Potions/HARMING +FD: net/minecraft/world/item/alchemy/Potions/f_43583_ net/minecraft/world/item/alchemy/Potions/STRONG_HARMING +FD: net/minecraft/world/item/alchemy/Potions/f_43584_ net/minecraft/world/item/alchemy/Potions/POISON +FD: net/minecraft/world/item/alchemy/Potions/f_43585_ net/minecraft/world/item/alchemy/Potions/LONG_POISON +FD: net/minecraft/world/item/alchemy/Potions/f_43586_ net/minecraft/world/item/alchemy/Potions/STRONG_POISON +FD: net/minecraft/world/item/alchemy/Potions/f_43587_ net/minecraft/world/item/alchemy/Potions/REGENERATION +FD: net/minecraft/world/item/alchemy/Potions/f_43588_ net/minecraft/world/item/alchemy/Potions/LONG_REGENERATION +FD: net/minecraft/world/item/alchemy/Potions/f_43589_ net/minecraft/world/item/alchemy/Potions/STRONG_REGENERATION +FD: net/minecraft/world/item/alchemy/Potions/f_43590_ net/minecraft/world/item/alchemy/Potions/STRENGTH +FD: net/minecraft/world/item/alchemy/Potions/f_43591_ net/minecraft/world/item/alchemy/Potions/LONG_STRENGTH +FD: net/minecraft/world/item/alchemy/Potions/f_43592_ net/minecraft/world/item/alchemy/Potions/STRONG_STRENGTH +FD: net/minecraft/world/item/alchemy/Potions/f_43593_ net/minecraft/world/item/alchemy/Potions/WEAKNESS +FD: net/minecraft/world/item/alchemy/Potions/f_43594_ net/minecraft/world/item/alchemy/Potions/LONG_WEAKNESS +FD: net/minecraft/world/item/alchemy/Potions/f_43595_ net/minecraft/world/item/alchemy/Potions/LUCK +FD: net/minecraft/world/item/alchemy/Potions/f_43596_ net/minecraft/world/item/alchemy/Potions/SLOW_FALLING +FD: net/minecraft/world/item/alchemy/Potions/f_43597_ net/minecraft/world/item/alchemy/Potions/LONG_SLOW_FALLING +FD: net/minecraft/world/item/alchemy/Potions/f_43598_ net/minecraft/world/item/alchemy/Potions/EMPTY +FD: net/minecraft/world/item/alchemy/Potions/f_43599_ net/minecraft/world/item/alchemy/Potions/WATER +FD: net/minecraft/world/item/alchemy/Potions/f_43600_ net/minecraft/world/item/alchemy/Potions/MUNDANE +FD: net/minecraft/world/item/alchemy/Potions/f_43601_ net/minecraft/world/item/alchemy/Potions/THICK +FD: net/minecraft/world/item/alchemy/Potions/f_43602_ net/minecraft/world/item/alchemy/Potions/AWKWARD +FD: net/minecraft/world/item/alchemy/Potions/f_43603_ net/minecraft/world/item/alchemy/Potions/NIGHT_VISION +FD: net/minecraft/world/item/alchemy/Potions/f_43604_ net/minecraft/world/item/alchemy/Potions/LONG_NIGHT_VISION +FD: net/minecraft/world/item/alchemy/Potions/f_43605_ net/minecraft/world/item/alchemy/Potions/INVISIBILITY +FD: net/minecraft/world/item/alchemy/Potions/f_43606_ net/minecraft/world/item/alchemy/Potions/LONG_INVISIBILITY +FD: net/minecraft/world/item/alchemy/Potions/f_43607_ net/minecraft/world/item/alchemy/Potions/LEAPING +FD: net/minecraft/world/item/alchemy/Potions/f_43608_ net/minecraft/world/item/alchemy/Potions/LONG_LEAPING +FD: net/minecraft/world/item/alchemy/Potions/f_43609_ net/minecraft/world/item/alchemy/Potions/STRONG_LEAPING +FD: net/minecraft/world/item/alchemy/Potions/f_43610_ net/minecraft/world/item/alchemy/Potions/FIRE_RESISTANCE +FD: net/minecraft/world/item/alchemy/Potions/f_43611_ net/minecraft/world/item/alchemy/Potions/LONG_FIRE_RESISTANCE +FD: net/minecraft/world/item/alchemy/Potions/f_43612_ net/minecraft/world/item/alchemy/Potions/SWIFTNESS +FD: net/minecraft/world/item/alchemy/Potions/f_43613_ net/minecraft/world/item/alchemy/Potions/LONG_SWIFTNESS +FD: net/minecraft/world/item/alchemy/Potions/f_43614_ net/minecraft/world/item/alchemy/Potions/STRONG_SWIFTNESS +FD: net/minecraft/world/item/alchemy/Potions/f_43615_ net/minecraft/world/item/alchemy/Potions/SLOWNESS +FD: net/minecraft/world/item/alchemy/Potions/f_43616_ net/minecraft/world/item/alchemy/Potions/LONG_SLOWNESS +FD: net/minecraft/world/item/alchemy/Potions/f_43617_ net/minecraft/world/item/alchemy/Potions/STRONG_SLOWNESS +FD: net/minecraft/world/item/alchemy/Potions/f_43618_ net/minecraft/world/item/alchemy/Potions/TURTLE_MASTER +FD: net/minecraft/world/item/alchemy/Potions/f_43619_ net/minecraft/world/item/alchemy/Potions/LONG_TURTLE_MASTER +FD: net/minecraft/world/item/alchemy/Potions/f_43620_ net/minecraft/world/item/alchemy/Potions/STRONG_TURTLE_MASTER +FD: net/minecraft/world/item/alchemy/Potions/f_43621_ net/minecraft/world/item/alchemy/Potions/WATER_BREATHING +FD: net/minecraft/world/item/alchemy/Potions/f_43622_ net/minecraft/world/item/alchemy/Potions/LONG_WATER_BREATHING +FD: net/minecraft/world/item/alchemy/Potions/f_43623_ net/minecraft/world/item/alchemy/Potions/HEALING +FD: net/minecraft/world/item/armortrim/ArmorTrim/f_265908_ net/minecraft/world/item/armortrim/ArmorTrim/TAG_TRIM_ID +FD: net/minecraft/world/item/armortrim/ArmorTrim/f_265943_ net/minecraft/world/item/armortrim/ArmorTrim/pattern +FD: net/minecraft/world/item/armortrim/ArmorTrim/f_265947_ net/minecraft/world/item/armortrim/ArmorTrim/innerTexture +FD: net/minecraft/world/item/armortrim/ArmorTrim/f_265975_ net/minecraft/world/item/armortrim/ArmorTrim/outerTexture +FD: net/minecraft/world/item/armortrim/ArmorTrim/f_265985_ net/minecraft/world/item/armortrim/ArmorTrim/CODEC +FD: net/minecraft/world/item/armortrim/ArmorTrim/f_266045_ net/minecraft/world/item/armortrim/ArmorTrim/material +FD: net/minecraft/world/item/armortrim/ArmorTrim/f_266060_ net/minecraft/world/item/armortrim/ArmorTrim/UPGRADE_TITLE +FD: net/minecraft/world/item/armortrim/ArmorTrim/f_266079_ net/minecraft/world/item/armortrim/ArmorTrim/LOGGER +FD: net/minecraft/world/item/armortrim/TrimMaterial/f_265854_ net/minecraft/world/item/armortrim/TrimMaterial/assetName +FD: net/minecraft/world/item/armortrim/TrimMaterial/f_265933_ net/minecraft/world/item/armortrim/TrimMaterial/itemModelIndex +FD: net/minecraft/world/item/armortrim/TrimMaterial/f_265970_ net/minecraft/world/item/armortrim/TrimMaterial/ingredient +FD: net/minecraft/world/item/armortrim/TrimMaterial/f_266021_ net/minecraft/world/item/armortrim/TrimMaterial/description +FD: net/minecraft/world/item/armortrim/TrimMaterial/f_266056_ net/minecraft/world/item/armortrim/TrimMaterial/CODEC +FD: net/minecraft/world/item/armortrim/TrimMaterial/f_266095_ net/minecraft/world/item/armortrim/TrimMaterial/DIRECT_CODEC +FD: net/minecraft/world/item/armortrim/TrimMaterial/f_267481_ net/minecraft/world/item/armortrim/TrimMaterial/overrideArmorMaterials +FD: net/minecraft/world/item/armortrim/TrimMaterials/f_265870_ net/minecraft/world/item/armortrim/TrimMaterials/REDSTONE +FD: net/minecraft/world/item/armortrim/TrimMaterials/f_265872_ net/minecraft/world/item/armortrim/TrimMaterials/AMETHYST +FD: net/minecraft/world/item/armortrim/TrimMaterials/f_265896_ net/minecraft/world/item/armortrim/TrimMaterials/NETHERITE +FD: net/minecraft/world/item/armortrim/TrimMaterials/f_265905_ net/minecraft/world/item/armortrim/TrimMaterials/QUARTZ +FD: net/minecraft/world/item/armortrim/TrimMaterials/f_265937_ net/minecraft/world/item/armortrim/TrimMaterials/GOLD +FD: net/minecraft/world/item/armortrim/TrimMaterials/f_265969_ net/minecraft/world/item/armortrim/TrimMaterials/COPPER +FD: net/minecraft/world/item/armortrim/TrimMaterials/f_265981_ net/minecraft/world/item/armortrim/TrimMaterials/LAPIS +FD: net/minecraft/world/item/armortrim/TrimMaterials/f_266000_ net/minecraft/world/item/armortrim/TrimMaterials/IRON +FD: net/minecraft/world/item/armortrim/TrimMaterials/f_266027_ net/minecraft/world/item/armortrim/TrimMaterials/DIAMOND +FD: net/minecraft/world/item/armortrim/TrimMaterials/f_266071_ net/minecraft/world/item/armortrim/TrimMaterials/EMERALD +FD: net/minecraft/world/item/armortrim/TrimPattern/f_265847_ net/minecraft/world/item/armortrim/TrimPattern/templateItem +FD: net/minecraft/world/item/armortrim/TrimPattern/f_265850_ net/minecraft/world/item/armortrim/TrimPattern/description +FD: net/minecraft/world/item/armortrim/TrimPattern/f_265977_ net/minecraft/world/item/armortrim/TrimPattern/CODEC +FD: net/minecraft/world/item/armortrim/TrimPattern/f_266050_ net/minecraft/world/item/armortrim/TrimPattern/DIRECT_CODEC +FD: net/minecraft/world/item/armortrim/TrimPattern/f_266052_ net/minecraft/world/item/armortrim/TrimPattern/assetId +FD: net/minecraft/world/item/armortrim/TrimPatterns/f_265866_ net/minecraft/world/item/armortrim/TrimPatterns/SENTRY +FD: net/minecraft/world/item/armortrim/TrimPatterns/f_265901_ net/minecraft/world/item/armortrim/TrimPatterns/COAST +FD: net/minecraft/world/item/armortrim/TrimPatterns/f_265941_ net/minecraft/world/item/armortrim/TrimPatterns/DUNE +FD: net/minecraft/world/item/armortrim/TrimPatterns/f_265976_ net/minecraft/world/item/armortrim/TrimPatterns/SPIRE +FD: net/minecraft/world/item/armortrim/TrimPatterns/f_266039_ net/minecraft/world/item/armortrim/TrimPatterns/VEX +FD: net/minecraft/world/item/armortrim/TrimPatterns/f_266069_ net/minecraft/world/item/armortrim/TrimPatterns/TIDE +FD: net/minecraft/world/item/armortrim/TrimPatterns/f_266074_ net/minecraft/world/item/armortrim/TrimPatterns/WARD +FD: net/minecraft/world/item/armortrim/TrimPatterns/f_266083_ net/minecraft/world/item/armortrim/TrimPatterns/SNOUT +FD: net/minecraft/world/item/armortrim/TrimPatterns/f_266087_ net/minecraft/world/item/armortrim/TrimPatterns/WILD +FD: net/minecraft/world/item/armortrim/TrimPatterns/f_266089_ net/minecraft/world/item/armortrim/TrimPatterns/RIB +FD: net/minecraft/world/item/armortrim/TrimPatterns/f_266091_ net/minecraft/world/item/armortrim/TrimPatterns/EYE +FD: net/minecraft/world/item/armortrim/TrimPatterns/f_276435_ net/minecraft/world/item/armortrim/TrimPatterns/RAISER +FD: net/minecraft/world/item/armortrim/TrimPatterns/f_276510_ net/minecraft/world/item/armortrim/TrimPatterns/SILENCE +FD: net/minecraft/world/item/armortrim/TrimPatterns/f_276573_ net/minecraft/world/item/armortrim/TrimPatterns/HOST +FD: net/minecraft/world/item/armortrim/TrimPatterns/f_276604_ net/minecraft/world/item/armortrim/TrimPatterns/SHAPER +FD: net/minecraft/world/item/armortrim/TrimPatterns/f_276615_ net/minecraft/world/item/armortrim/TrimPatterns/WAYFINDER +FD: net/minecraft/world/item/context/BlockPlaceContext/f_43628_ net/minecraft/world/item/context/BlockPlaceContext/replaceClicked +FD: net/minecraft/world/item/context/BlockPlaceContext/f_43629_ net/minecraft/world/item/context/BlockPlaceContext/relativePos +FD: net/minecraft/world/item/context/DirectionalPlaceContext/f_43648_ net/minecraft/world/item/context/DirectionalPlaceContext/direction +FD: net/minecraft/world/item/context/DirectionalPlaceContext$1/f_43663_ net/minecraft/world/item/context/DirectionalPlaceContext$1/$SwitchMap$net$minecraft$core$Direction +FD: net/minecraft/world/item/context/UseOnContext/f_43703_ net/minecraft/world/item/context/UseOnContext/player +FD: net/minecraft/world/item/context/UseOnContext/f_43704_ net/minecraft/world/item/context/UseOnContext/hand +FD: net/minecraft/world/item/context/UseOnContext/f_43705_ net/minecraft/world/item/context/UseOnContext/hitResult +FD: net/minecraft/world/item/context/UseOnContext/f_43706_ net/minecraft/world/item/context/UseOnContext/level +FD: net/minecraft/world/item/context/UseOnContext/f_43707_ net/minecraft/world/item/context/UseOnContext/itemStack +FD: net/minecraft/world/item/crafting/AbstractCookingRecipe/f_243702_ net/minecraft/world/item/crafting/AbstractCookingRecipe/category +FD: net/minecraft/world/item/crafting/AbstractCookingRecipe/f_43726_ net/minecraft/world/item/crafting/AbstractCookingRecipe/type +FD: net/minecraft/world/item/crafting/AbstractCookingRecipe/f_43727_ net/minecraft/world/item/crafting/AbstractCookingRecipe/id +FD: net/minecraft/world/item/crafting/AbstractCookingRecipe/f_43728_ net/minecraft/world/item/crafting/AbstractCookingRecipe/group +FD: net/minecraft/world/item/crafting/AbstractCookingRecipe/f_43729_ net/minecraft/world/item/crafting/AbstractCookingRecipe/ingredient +FD: net/minecraft/world/item/crafting/AbstractCookingRecipe/f_43730_ net/minecraft/world/item/crafting/AbstractCookingRecipe/result +FD: net/minecraft/world/item/crafting/AbstractCookingRecipe/f_43731_ net/minecraft/world/item/crafting/AbstractCookingRecipe/experience +FD: net/minecraft/world/item/crafting/AbstractCookingRecipe/f_43732_ net/minecraft/world/item/crafting/AbstractCookingRecipe/cookingTime +FD: net/minecraft/world/item/crafting/CookingBookCategory/$VALUES net/minecraft/world/item/crafting/CookingBookCategory/$VALUES +FD: net/minecraft/world/item/crafting/CookingBookCategory/BLOCKS net/minecraft/world/item/crafting/CookingBookCategory/BLOCKS +FD: net/minecraft/world/item/crafting/CookingBookCategory/FOOD net/minecraft/world/item/crafting/CookingBookCategory/FOOD +FD: net/minecraft/world/item/crafting/CookingBookCategory/MISC net/minecraft/world/item/crafting/CookingBookCategory/MISC +FD: net/minecraft/world/item/crafting/CookingBookCategory/f_244064_ net/minecraft/world/item/crafting/CookingBookCategory/name +FD: net/minecraft/world/item/crafting/CookingBookCategory/f_244271_ net/minecraft/world/item/crafting/CookingBookCategory/CODEC +FD: net/minecraft/world/item/crafting/CraftingBookCategory/$VALUES net/minecraft/world/item/crafting/CraftingBookCategory/$VALUES +FD: net/minecraft/world/item/crafting/CraftingBookCategory/BUILDING net/minecraft/world/item/crafting/CraftingBookCategory/BUILDING +FD: net/minecraft/world/item/crafting/CraftingBookCategory/EQUIPMENT net/minecraft/world/item/crafting/CraftingBookCategory/EQUIPMENT +FD: net/minecraft/world/item/crafting/CraftingBookCategory/MISC net/minecraft/world/item/crafting/CraftingBookCategory/MISC +FD: net/minecraft/world/item/crafting/CraftingBookCategory/REDSTONE net/minecraft/world/item/crafting/CraftingBookCategory/REDSTONE +FD: net/minecraft/world/item/crafting/CraftingBookCategory/f_244018_ net/minecraft/world/item/crafting/CraftingBookCategory/name +FD: net/minecraft/world/item/crafting/CraftingBookCategory/f_244644_ net/minecraft/world/item/crafting/CraftingBookCategory/CODEC +FD: net/minecraft/world/item/crafting/CustomRecipe/f_244184_ net/minecraft/world/item/crafting/CustomRecipe/category +FD: net/minecraft/world/item/crafting/CustomRecipe/f_43831_ net/minecraft/world/item/crafting/CustomRecipe/id +FD: net/minecraft/world/item/crafting/FireworkRocketRecipe/f_43837_ net/minecraft/world/item/crafting/FireworkRocketRecipe/PAPER_INGREDIENT +FD: net/minecraft/world/item/crafting/FireworkRocketRecipe/f_43838_ net/minecraft/world/item/crafting/FireworkRocketRecipe/GUNPOWDER_INGREDIENT +FD: net/minecraft/world/item/crafting/FireworkRocketRecipe/f_43839_ net/minecraft/world/item/crafting/FireworkRocketRecipe/STAR_INGREDIENT +FD: net/minecraft/world/item/crafting/FireworkStarFadeRecipe/f_43858_ net/minecraft/world/item/crafting/FireworkStarFadeRecipe/STAR_INGREDIENT +FD: net/minecraft/world/item/crafting/FireworkStarRecipe/f_43876_ net/minecraft/world/item/crafting/FireworkStarRecipe/SHAPE_INGREDIENT +FD: net/minecraft/world/item/crafting/FireworkStarRecipe/f_43877_ net/minecraft/world/item/crafting/FireworkStarRecipe/TRAIL_INGREDIENT +FD: net/minecraft/world/item/crafting/FireworkStarRecipe/f_43878_ net/minecraft/world/item/crafting/FireworkStarRecipe/FLICKER_INGREDIENT +FD: net/minecraft/world/item/crafting/FireworkStarRecipe/f_43879_ net/minecraft/world/item/crafting/FireworkStarRecipe/SHAPE_BY_ITEM +FD: net/minecraft/world/item/crafting/FireworkStarRecipe/f_43880_ net/minecraft/world/item/crafting/FireworkStarRecipe/GUNPOWDER_INGREDIENT +FD: net/minecraft/world/item/crafting/Ingredient/f_43901_ net/minecraft/world/item/crafting/Ingredient/EMPTY +FD: net/minecraft/world/item/crafting/Ingredient/f_43902_ net/minecraft/world/item/crafting/Ingredient/values +FD: net/minecraft/world/item/crafting/Ingredient/f_43903_ net/minecraft/world/item/crafting/Ingredient/itemStacks +FD: net/minecraft/world/item/crafting/Ingredient/f_43904_ net/minecraft/world/item/crafting/Ingredient/stackingIds +FD: net/minecraft/world/item/crafting/Ingredient$ItemValue/f_43951_ net/minecraft/world/item/crafting/Ingredient$ItemValue/item +FD: net/minecraft/world/item/crafting/Ingredient$TagValue/f_43959_ net/minecraft/world/item/crafting/Ingredient$TagValue/tag +FD: net/minecraft/world/item/crafting/RecipeManager/f_199900_ net/minecraft/world/item/crafting/RecipeManager/byName +FD: net/minecraft/world/item/crafting/RecipeManager/f_44005_ net/minecraft/world/item/crafting/RecipeManager/GSON +FD: net/minecraft/world/item/crafting/RecipeManager/f_44006_ net/minecraft/world/item/crafting/RecipeManager/LOGGER +FD: net/minecraft/world/item/crafting/RecipeManager/f_44007_ net/minecraft/world/item/crafting/RecipeManager/recipes +FD: net/minecraft/world/item/crafting/RecipeManager/f_44008_ net/minecraft/world/item/crafting/RecipeManager/hasErrors +FD: net/minecraft/world/item/crafting/RecipeManager$1/f_220273_ net/minecraft/world/item/crafting/RecipeManager$1/val$type +FD: net/minecraft/world/item/crafting/RecipeManager$1/f_220274_ net/minecraft/world/item/crafting/RecipeManager$1/lastRecipe +FD: net/minecraft/world/item/crafting/RecipeSerializer/f_265968_ net/minecraft/world/item/crafting/RecipeSerializer/SMITHING_TRIM +FD: net/minecraft/world/item/crafting/RecipeSerializer/f_266093_ net/minecraft/world/item/crafting/RecipeSerializer/SMITHING_TRANSFORM +FD: net/minecraft/world/item/crafting/RecipeSerializer/f_271437_ net/minecraft/world/item/crafting/RecipeSerializer/DECORATED_POT_RECIPE +FD: net/minecraft/world/item/crafting/RecipeSerializer/f_44076_ net/minecraft/world/item/crafting/RecipeSerializer/SHAPED_RECIPE +FD: net/minecraft/world/item/crafting/RecipeSerializer/f_44077_ net/minecraft/world/item/crafting/RecipeSerializer/SHAPELESS_RECIPE +FD: net/minecraft/world/item/crafting/RecipeSerializer/f_44078_ net/minecraft/world/item/crafting/RecipeSerializer/ARMOR_DYE +FD: net/minecraft/world/item/crafting/RecipeSerializer/f_44079_ net/minecraft/world/item/crafting/RecipeSerializer/BOOK_CLONING +FD: net/minecraft/world/item/crafting/RecipeSerializer/f_44080_ net/minecraft/world/item/crafting/RecipeSerializer/MAP_CLONING +FD: net/minecraft/world/item/crafting/RecipeSerializer/f_44081_ net/minecraft/world/item/crafting/RecipeSerializer/MAP_EXTENDING +FD: net/minecraft/world/item/crafting/RecipeSerializer/f_44082_ net/minecraft/world/item/crafting/RecipeSerializer/FIREWORK_ROCKET +FD: net/minecraft/world/item/crafting/RecipeSerializer/f_44083_ net/minecraft/world/item/crafting/RecipeSerializer/FIREWORK_STAR +FD: net/minecraft/world/item/crafting/RecipeSerializer/f_44084_ net/minecraft/world/item/crafting/RecipeSerializer/FIREWORK_STAR_FADE +FD: net/minecraft/world/item/crafting/RecipeSerializer/f_44085_ net/minecraft/world/item/crafting/RecipeSerializer/TIPPED_ARROW +FD: net/minecraft/world/item/crafting/RecipeSerializer/f_44086_ net/minecraft/world/item/crafting/RecipeSerializer/BANNER_DUPLICATE +FD: net/minecraft/world/item/crafting/RecipeSerializer/f_44087_ net/minecraft/world/item/crafting/RecipeSerializer/SHIELD_DECORATION +FD: net/minecraft/world/item/crafting/RecipeSerializer/f_44088_ net/minecraft/world/item/crafting/RecipeSerializer/SHULKER_BOX_COLORING +FD: net/minecraft/world/item/crafting/RecipeSerializer/f_44089_ net/minecraft/world/item/crafting/RecipeSerializer/SUSPICIOUS_STEW +FD: net/minecraft/world/item/crafting/RecipeSerializer/f_44090_ net/minecraft/world/item/crafting/RecipeSerializer/REPAIR_ITEM +FD: net/minecraft/world/item/crafting/RecipeSerializer/f_44091_ net/minecraft/world/item/crafting/RecipeSerializer/SMELTING_RECIPE +FD: net/minecraft/world/item/crafting/RecipeSerializer/f_44092_ net/minecraft/world/item/crafting/RecipeSerializer/BLASTING_RECIPE +FD: net/minecraft/world/item/crafting/RecipeSerializer/f_44093_ net/minecraft/world/item/crafting/RecipeSerializer/SMOKING_RECIPE +FD: net/minecraft/world/item/crafting/RecipeSerializer/f_44094_ net/minecraft/world/item/crafting/RecipeSerializer/CAMPFIRE_COOKING_RECIPE +FD: net/minecraft/world/item/crafting/RecipeSerializer/f_44095_ net/minecraft/world/item/crafting/RecipeSerializer/STONECUTTER +FD: net/minecraft/world/item/crafting/RecipeType/f_44107_ net/minecraft/world/item/crafting/RecipeType/CRAFTING +FD: net/minecraft/world/item/crafting/RecipeType/f_44108_ net/minecraft/world/item/crafting/RecipeType/SMELTING +FD: net/minecraft/world/item/crafting/RecipeType/f_44109_ net/minecraft/world/item/crafting/RecipeType/BLASTING +FD: net/minecraft/world/item/crafting/RecipeType/f_44110_ net/minecraft/world/item/crafting/RecipeType/SMOKING +FD: net/minecraft/world/item/crafting/RecipeType/f_44111_ net/minecraft/world/item/crafting/RecipeType/CAMPFIRE_COOKING +FD: net/minecraft/world/item/crafting/RecipeType/f_44112_ net/minecraft/world/item/crafting/RecipeType/STONECUTTING +FD: net/minecraft/world/item/crafting/RecipeType/f_44113_ net/minecraft/world/item/crafting/RecipeType/SMITHING +FD: net/minecraft/world/item/crafting/RecipeType$1/f_44121_ net/minecraft/world/item/crafting/RecipeType$1/val$name +FD: net/minecraft/world/item/crafting/ShapedRecipe/f_244483_ net/minecraft/world/item/crafting/ShapedRecipe/category +FD: net/minecraft/world/item/crafting/ShapedRecipe/f_271538_ net/minecraft/world/item/crafting/ShapedRecipe/showNotification +FD: net/minecraft/world/item/crafting/ShapedRecipe/f_44146_ net/minecraft/world/item/crafting/ShapedRecipe/width +FD: net/minecraft/world/item/crafting/ShapedRecipe/f_44147_ net/minecraft/world/item/crafting/ShapedRecipe/height +FD: net/minecraft/world/item/crafting/ShapedRecipe/f_44148_ net/minecraft/world/item/crafting/ShapedRecipe/recipeItems +FD: net/minecraft/world/item/crafting/ShapedRecipe/f_44149_ net/minecraft/world/item/crafting/ShapedRecipe/result +FD: net/minecraft/world/item/crafting/ShapedRecipe/f_44150_ net/minecraft/world/item/crafting/ShapedRecipe/id +FD: net/minecraft/world/item/crafting/ShapedRecipe/f_44151_ net/minecraft/world/item/crafting/ShapedRecipe/group +FD: net/minecraft/world/item/crafting/ShapelessRecipe/f_244076_ net/minecraft/world/item/crafting/ShapelessRecipe/category +FD: net/minecraft/world/item/crafting/ShapelessRecipe/f_44241_ net/minecraft/world/item/crafting/ShapelessRecipe/id +FD: net/minecraft/world/item/crafting/ShapelessRecipe/f_44242_ net/minecraft/world/item/crafting/ShapelessRecipe/group +FD: net/minecraft/world/item/crafting/ShapelessRecipe/f_44243_ net/minecraft/world/item/crafting/ShapelessRecipe/result +FD: net/minecraft/world/item/crafting/ShapelessRecipe/f_44244_ net/minecraft/world/item/crafting/ShapelessRecipe/ingredients +FD: net/minecraft/world/item/crafting/SimpleCookingSerializer/f_44327_ net/minecraft/world/item/crafting/SimpleCookingSerializer/defaultCookingTime +FD: net/minecraft/world/item/crafting/SimpleCookingSerializer/f_44328_ net/minecraft/world/item/crafting/SimpleCookingSerializer/factory +FD: net/minecraft/world/item/crafting/SimpleCraftingRecipeSerializer/f_244567_ net/minecraft/world/item/crafting/SimpleCraftingRecipeSerializer/constructor +FD: net/minecraft/world/item/crafting/SingleItemRecipe/f_44409_ net/minecraft/world/item/crafting/SingleItemRecipe/ingredient +FD: net/minecraft/world/item/crafting/SingleItemRecipe/f_44410_ net/minecraft/world/item/crafting/SingleItemRecipe/result +FD: net/minecraft/world/item/crafting/SingleItemRecipe/f_44411_ net/minecraft/world/item/crafting/SingleItemRecipe/id +FD: net/minecraft/world/item/crafting/SingleItemRecipe/f_44412_ net/minecraft/world/item/crafting/SingleItemRecipe/group +FD: net/minecraft/world/item/crafting/SingleItemRecipe/f_44413_ net/minecraft/world/item/crafting/SingleItemRecipe/type +FD: net/minecraft/world/item/crafting/SingleItemRecipe/f_44414_ net/minecraft/world/item/crafting/SingleItemRecipe/serializer +FD: net/minecraft/world/item/crafting/SingleItemRecipe$Serializer/f_44433_ net/minecraft/world/item/crafting/SingleItemRecipe$Serializer/factory +FD: net/minecraft/world/item/crafting/SmithingTransformRecipe/f_265888_ net/minecraft/world/item/crafting/SmithingTransformRecipe/base +FD: net/minecraft/world/item/crafting/SmithingTransformRecipe/f_265907_ net/minecraft/world/item/crafting/SmithingTransformRecipe/addition +FD: net/minecraft/world/item/crafting/SmithingTransformRecipe/f_265924_ net/minecraft/world/item/crafting/SmithingTransformRecipe/id +FD: net/minecraft/world/item/crafting/SmithingTransformRecipe/f_265949_ net/minecraft/world/item/crafting/SmithingTransformRecipe/template +FD: net/minecraft/world/item/crafting/SmithingTransformRecipe/f_266098_ net/minecraft/world/item/crafting/SmithingTransformRecipe/result +FD: net/minecraft/world/item/crafting/SmithingTrimRecipe/f_265885_ net/minecraft/world/item/crafting/SmithingTrimRecipe/id +FD: net/minecraft/world/item/crafting/SmithingTrimRecipe/f_265958_ net/minecraft/world/item/crafting/SmithingTrimRecipe/template +FD: net/minecraft/world/item/crafting/SmithingTrimRecipe/f_266040_ net/minecraft/world/item/crafting/SmithingTrimRecipe/base +FD: net/minecraft/world/item/crafting/SmithingTrimRecipe/f_266053_ net/minecraft/world/item/crafting/SmithingTrimRecipe/addition +FD: net/minecraft/world/item/enchantment/DamageEnchantment/f_151289_ net/minecraft/world/item/enchantment/DamageEnchantment/ALL +FD: net/minecraft/world/item/enchantment/DamageEnchantment/f_151290_ net/minecraft/world/item/enchantment/DamageEnchantment/UNDEAD +FD: net/minecraft/world/item/enchantment/DamageEnchantment/f_151291_ net/minecraft/world/item/enchantment/DamageEnchantment/ARTHROPODS +FD: net/minecraft/world/item/enchantment/DamageEnchantment/f_44621_ net/minecraft/world/item/enchantment/DamageEnchantment/type +FD: net/minecraft/world/item/enchantment/DamageEnchantment/f_44622_ net/minecraft/world/item/enchantment/DamageEnchantment/NAMES +FD: net/minecraft/world/item/enchantment/DamageEnchantment/f_44623_ net/minecraft/world/item/enchantment/DamageEnchantment/MIN_COST +FD: net/minecraft/world/item/enchantment/DamageEnchantment/f_44624_ net/minecraft/world/item/enchantment/DamageEnchantment/LEVEL_COST +FD: net/minecraft/world/item/enchantment/DamageEnchantment/f_44625_ net/minecraft/world/item/enchantment/DamageEnchantment/LEVEL_COST_SPAN +FD: net/minecraft/world/item/enchantment/Enchantment/f_44671_ net/minecraft/world/item/enchantment/Enchantment/slots +FD: net/minecraft/world/item/enchantment/Enchantment/f_44672_ net/minecraft/world/item/enchantment/Enchantment/category +FD: net/minecraft/world/item/enchantment/Enchantment/f_44673_ net/minecraft/world/item/enchantment/Enchantment/descriptionId +FD: net/minecraft/world/item/enchantment/Enchantment/f_44674_ net/minecraft/world/item/enchantment/Enchantment/rarity +FD: net/minecraft/world/item/enchantment/Enchantment$Rarity/$VALUES net/minecraft/world/item/enchantment/Enchantment$Rarity/$VALUES +FD: net/minecraft/world/item/enchantment/Enchantment$Rarity/COMMON net/minecraft/world/item/enchantment/Enchantment$Rarity/COMMON +FD: net/minecraft/world/item/enchantment/Enchantment$Rarity/RARE net/minecraft/world/item/enchantment/Enchantment$Rarity/RARE +FD: net/minecraft/world/item/enchantment/Enchantment$Rarity/UNCOMMON net/minecraft/world/item/enchantment/Enchantment$Rarity/UNCOMMON +FD: net/minecraft/world/item/enchantment/Enchantment$Rarity/VERY_RARE net/minecraft/world/item/enchantment/Enchantment$Rarity/VERY_RARE +FD: net/minecraft/world/item/enchantment/Enchantment$Rarity/f_44709_ net/minecraft/world/item/enchantment/Enchantment$Rarity/weight +FD: net/minecraft/world/item/enchantment/EnchantmentCategory/$VALUES net/minecraft/world/item/enchantment/EnchantmentCategory/$VALUES +FD: net/minecraft/world/item/enchantment/EnchantmentCategory/ARMOR net/minecraft/world/item/enchantment/EnchantmentCategory/ARMOR +FD: net/minecraft/world/item/enchantment/EnchantmentCategory/ARMOR_CHEST net/minecraft/world/item/enchantment/EnchantmentCategory/ARMOR_CHEST +FD: net/minecraft/world/item/enchantment/EnchantmentCategory/ARMOR_FEET net/minecraft/world/item/enchantment/EnchantmentCategory/ARMOR_FEET +FD: net/minecraft/world/item/enchantment/EnchantmentCategory/ARMOR_HEAD net/minecraft/world/item/enchantment/EnchantmentCategory/ARMOR_HEAD +FD: net/minecraft/world/item/enchantment/EnchantmentCategory/ARMOR_LEGS net/minecraft/world/item/enchantment/EnchantmentCategory/ARMOR_LEGS +FD: net/minecraft/world/item/enchantment/EnchantmentCategory/BOW net/minecraft/world/item/enchantment/EnchantmentCategory/BOW +FD: net/minecraft/world/item/enchantment/EnchantmentCategory/BREAKABLE net/minecraft/world/item/enchantment/EnchantmentCategory/BREAKABLE +FD: net/minecraft/world/item/enchantment/EnchantmentCategory/CROSSBOW net/minecraft/world/item/enchantment/EnchantmentCategory/CROSSBOW +FD: net/minecraft/world/item/enchantment/EnchantmentCategory/DIGGER net/minecraft/world/item/enchantment/EnchantmentCategory/DIGGER +FD: net/minecraft/world/item/enchantment/EnchantmentCategory/FISHING_ROD net/minecraft/world/item/enchantment/EnchantmentCategory/FISHING_ROD +FD: net/minecraft/world/item/enchantment/EnchantmentCategory/TRIDENT net/minecraft/world/item/enchantment/EnchantmentCategory/TRIDENT +FD: net/minecraft/world/item/enchantment/EnchantmentCategory/VANISHABLE net/minecraft/world/item/enchantment/EnchantmentCategory/VANISHABLE +FD: net/minecraft/world/item/enchantment/EnchantmentCategory/WEAPON net/minecraft/world/item/enchantment/EnchantmentCategory/WEAPON +FD: net/minecraft/world/item/enchantment/EnchantmentCategory/WEARABLE net/minecraft/world/item/enchantment/EnchantmentCategory/WEARABLE +FD: net/minecraft/world/item/enchantment/EnchantmentHelper/f_182430_ net/minecraft/world/item/enchantment/EnchantmentHelper/TAG_ENCH_ID +FD: net/minecraft/world/item/enchantment/EnchantmentHelper/f_182431_ net/minecraft/world/item/enchantment/EnchantmentHelper/TAG_ENCH_LEVEL +FD: net/minecraft/world/item/enchantment/EnchantmentHelper/f_220286_ net/minecraft/world/item/enchantment/EnchantmentHelper/SWIFT_SNEAK_EXTRA_FACTOR +FD: net/minecraft/world/item/enchantment/EnchantmentInstance/f_44947_ net/minecraft/world/item/enchantment/EnchantmentInstance/enchantment +FD: net/minecraft/world/item/enchantment/EnchantmentInstance/f_44948_ net/minecraft/world/item/enchantment/EnchantmentInstance/level +FD: net/minecraft/world/item/enchantment/Enchantments/f_220304_ net/minecraft/world/item/enchantment/Enchantments/SWIFT_SNEAK +FD: net/minecraft/world/item/enchantment/Enchantments/f_44952_ net/minecraft/world/item/enchantment/Enchantments/INFINITY_ARROWS +FD: net/minecraft/world/item/enchantment/Enchantments/f_44953_ net/minecraft/world/item/enchantment/Enchantments/FISHING_LUCK +FD: net/minecraft/world/item/enchantment/Enchantments/f_44954_ net/minecraft/world/item/enchantment/Enchantments/FISHING_SPEED +FD: net/minecraft/world/item/enchantment/Enchantments/f_44955_ net/minecraft/world/item/enchantment/Enchantments/LOYALTY +FD: net/minecraft/world/item/enchantment/Enchantments/f_44956_ net/minecraft/world/item/enchantment/Enchantments/IMPALING +FD: net/minecraft/world/item/enchantment/Enchantments/f_44957_ net/minecraft/world/item/enchantment/Enchantments/RIPTIDE +FD: net/minecraft/world/item/enchantment/Enchantments/f_44958_ net/minecraft/world/item/enchantment/Enchantments/CHANNELING +FD: net/minecraft/world/item/enchantment/Enchantments/f_44959_ net/minecraft/world/item/enchantment/Enchantments/MULTISHOT +FD: net/minecraft/world/item/enchantment/Enchantments/f_44960_ net/minecraft/world/item/enchantment/Enchantments/QUICK_CHARGE +FD: net/minecraft/world/item/enchantment/Enchantments/f_44961_ net/minecraft/world/item/enchantment/Enchantments/PIERCING +FD: net/minecraft/world/item/enchantment/Enchantments/f_44962_ net/minecraft/world/item/enchantment/Enchantments/MENDING +FD: net/minecraft/world/item/enchantment/Enchantments/f_44963_ net/minecraft/world/item/enchantment/Enchantments/VANISHING_CURSE +FD: net/minecraft/world/item/enchantment/Enchantments/f_44964_ net/minecraft/world/item/enchantment/Enchantments/ARMOR_SLOTS +FD: net/minecraft/world/item/enchantment/Enchantments/f_44965_ net/minecraft/world/item/enchantment/Enchantments/ALL_DAMAGE_PROTECTION +FD: net/minecraft/world/item/enchantment/Enchantments/f_44966_ net/minecraft/world/item/enchantment/Enchantments/FIRE_PROTECTION +FD: net/minecraft/world/item/enchantment/Enchantments/f_44967_ net/minecraft/world/item/enchantment/Enchantments/FALL_PROTECTION +FD: net/minecraft/world/item/enchantment/Enchantments/f_44968_ net/minecraft/world/item/enchantment/Enchantments/BLAST_PROTECTION +FD: net/minecraft/world/item/enchantment/Enchantments/f_44969_ net/minecraft/world/item/enchantment/Enchantments/PROJECTILE_PROTECTION +FD: net/minecraft/world/item/enchantment/Enchantments/f_44970_ net/minecraft/world/item/enchantment/Enchantments/RESPIRATION +FD: net/minecraft/world/item/enchantment/Enchantments/f_44971_ net/minecraft/world/item/enchantment/Enchantments/AQUA_AFFINITY +FD: net/minecraft/world/item/enchantment/Enchantments/f_44972_ net/minecraft/world/item/enchantment/Enchantments/THORNS +FD: net/minecraft/world/item/enchantment/Enchantments/f_44973_ net/minecraft/world/item/enchantment/Enchantments/DEPTH_STRIDER +FD: net/minecraft/world/item/enchantment/Enchantments/f_44974_ net/minecraft/world/item/enchantment/Enchantments/FROST_WALKER +FD: net/minecraft/world/item/enchantment/Enchantments/f_44975_ net/minecraft/world/item/enchantment/Enchantments/BINDING_CURSE +FD: net/minecraft/world/item/enchantment/Enchantments/f_44976_ net/minecraft/world/item/enchantment/Enchantments/SOUL_SPEED +FD: net/minecraft/world/item/enchantment/Enchantments/f_44977_ net/minecraft/world/item/enchantment/Enchantments/SHARPNESS +FD: net/minecraft/world/item/enchantment/Enchantments/f_44978_ net/minecraft/world/item/enchantment/Enchantments/SMITE +FD: net/minecraft/world/item/enchantment/Enchantments/f_44979_ net/minecraft/world/item/enchantment/Enchantments/BANE_OF_ARTHROPODS +FD: net/minecraft/world/item/enchantment/Enchantments/f_44980_ net/minecraft/world/item/enchantment/Enchantments/KNOCKBACK +FD: net/minecraft/world/item/enchantment/Enchantments/f_44981_ net/minecraft/world/item/enchantment/Enchantments/FIRE_ASPECT +FD: net/minecraft/world/item/enchantment/Enchantments/f_44982_ net/minecraft/world/item/enchantment/Enchantments/MOB_LOOTING +FD: net/minecraft/world/item/enchantment/Enchantments/f_44983_ net/minecraft/world/item/enchantment/Enchantments/SWEEPING_EDGE +FD: net/minecraft/world/item/enchantment/Enchantments/f_44984_ net/minecraft/world/item/enchantment/Enchantments/BLOCK_EFFICIENCY +FD: net/minecraft/world/item/enchantment/Enchantments/f_44985_ net/minecraft/world/item/enchantment/Enchantments/SILK_TOUCH +FD: net/minecraft/world/item/enchantment/Enchantments/f_44986_ net/minecraft/world/item/enchantment/Enchantments/UNBREAKING +FD: net/minecraft/world/item/enchantment/Enchantments/f_44987_ net/minecraft/world/item/enchantment/Enchantments/BLOCK_FORTUNE +FD: net/minecraft/world/item/enchantment/Enchantments/f_44988_ net/minecraft/world/item/enchantment/Enchantments/POWER_ARROWS +FD: net/minecraft/world/item/enchantment/Enchantments/f_44989_ net/minecraft/world/item/enchantment/Enchantments/PUNCH_ARROWS +FD: net/minecraft/world/item/enchantment/Enchantments/f_44990_ net/minecraft/world/item/enchantment/Enchantments/FLAMING_ARROWS +FD: net/minecraft/world/item/enchantment/ProtectionEnchantment/f_45124_ net/minecraft/world/item/enchantment/ProtectionEnchantment/type +FD: net/minecraft/world/item/enchantment/ProtectionEnchantment$Type/$VALUES net/minecraft/world/item/enchantment/ProtectionEnchantment$Type/$VALUES +FD: net/minecraft/world/item/enchantment/ProtectionEnchantment$Type/ALL net/minecraft/world/item/enchantment/ProtectionEnchantment$Type/ALL +FD: net/minecraft/world/item/enchantment/ProtectionEnchantment$Type/EXPLOSION net/minecraft/world/item/enchantment/ProtectionEnchantment$Type/EXPLOSION +FD: net/minecraft/world/item/enchantment/ProtectionEnchantment$Type/FALL net/minecraft/world/item/enchantment/ProtectionEnchantment$Type/FALL +FD: net/minecraft/world/item/enchantment/ProtectionEnchantment$Type/FIRE net/minecraft/world/item/enchantment/ProtectionEnchantment$Type/FIRE +FD: net/minecraft/world/item/enchantment/ProtectionEnchantment$Type/PROJECTILE net/minecraft/world/item/enchantment/ProtectionEnchantment$Type/PROJECTILE +FD: net/minecraft/world/item/enchantment/ProtectionEnchantment$Type/f_45151_ net/minecraft/world/item/enchantment/ProtectionEnchantment$Type/minCost +FD: net/minecraft/world/item/enchantment/ProtectionEnchantment$Type/f_45152_ net/minecraft/world/item/enchantment/ProtectionEnchantment$Type/levelCost +FD: net/minecraft/world/item/enchantment/ThornsEnchantment/f_151302_ net/minecraft/world/item/enchantment/ThornsEnchantment/CHANCE_PER_LEVEL +FD: net/minecraft/world/item/trading/MerchantOffer/f_45310_ net/minecraft/world/item/trading/MerchantOffer/baseCostA +FD: net/minecraft/world/item/trading/MerchantOffer/f_45311_ net/minecraft/world/item/trading/MerchantOffer/costB +FD: net/minecraft/world/item/trading/MerchantOffer/f_45312_ net/minecraft/world/item/trading/MerchantOffer/result +FD: net/minecraft/world/item/trading/MerchantOffer/f_45313_ net/minecraft/world/item/trading/MerchantOffer/uses +FD: net/minecraft/world/item/trading/MerchantOffer/f_45314_ net/minecraft/world/item/trading/MerchantOffer/maxUses +FD: net/minecraft/world/item/trading/MerchantOffer/f_45315_ net/minecraft/world/item/trading/MerchantOffer/rewardExp +FD: net/minecraft/world/item/trading/MerchantOffer/f_45316_ net/minecraft/world/item/trading/MerchantOffer/specialPriceDiff +FD: net/minecraft/world/item/trading/MerchantOffer/f_45317_ net/minecraft/world/item/trading/MerchantOffer/demand +FD: net/minecraft/world/item/trading/MerchantOffer/f_45318_ net/minecraft/world/item/trading/MerchantOffer/priceMultiplier +FD: net/minecraft/world/item/trading/MerchantOffer/f_45319_ net/minecraft/world/item/trading/MerchantOffer/xp +FD: net/minecraft/world/level/BaseCommandBlock/f_45397_ net/minecraft/world/level/BaseCommandBlock/TIME_FORMAT +FD: net/minecraft/world/level/BaseCommandBlock/f_45398_ net/minecraft/world/level/BaseCommandBlock/DEFAULT_NAME +FD: net/minecraft/world/level/BaseCommandBlock/f_45399_ net/minecraft/world/level/BaseCommandBlock/lastExecution +FD: net/minecraft/world/level/BaseCommandBlock/f_45400_ net/minecraft/world/level/BaseCommandBlock/updateLastExecution +FD: net/minecraft/world/level/BaseCommandBlock/f_45401_ net/minecraft/world/level/BaseCommandBlock/successCount +FD: net/minecraft/world/level/BaseCommandBlock/f_45402_ net/minecraft/world/level/BaseCommandBlock/trackOutput +FD: net/minecraft/world/level/BaseCommandBlock/f_45403_ net/minecraft/world/level/BaseCommandBlock/lastOutput +FD: net/minecraft/world/level/BaseCommandBlock/f_45404_ net/minecraft/world/level/BaseCommandBlock/command +FD: net/minecraft/world/level/BaseCommandBlock/f_45405_ net/minecraft/world/level/BaseCommandBlock/name +FD: net/minecraft/world/level/BaseSpawner/f_151303_ net/minecraft/world/level/BaseSpawner/EVENT_SPAWN +FD: net/minecraft/world/level/BaseSpawner/f_254624_ net/minecraft/world/level/BaseSpawner/SPAWN_DATA_TAG +FD: net/minecraft/world/level/BaseSpawner/f_45441_ net/minecraft/world/level/BaseSpawner/LOGGER +FD: net/minecraft/world/level/BaseSpawner/f_45442_ net/minecraft/world/level/BaseSpawner/spawnDelay +FD: net/minecraft/world/level/BaseSpawner/f_45443_ net/minecraft/world/level/BaseSpawner/spawnPotentials +FD: net/minecraft/world/level/BaseSpawner/f_45444_ net/minecraft/world/level/BaseSpawner/nextSpawnData +FD: net/minecraft/world/level/BaseSpawner/f_45445_ net/minecraft/world/level/BaseSpawner/spin +FD: net/minecraft/world/level/BaseSpawner/f_45446_ net/minecraft/world/level/BaseSpawner/oSpin +FD: net/minecraft/world/level/BaseSpawner/f_45447_ net/minecraft/world/level/BaseSpawner/minSpawnDelay +FD: net/minecraft/world/level/BaseSpawner/f_45448_ net/minecraft/world/level/BaseSpawner/maxSpawnDelay +FD: net/minecraft/world/level/BaseSpawner/f_45449_ net/minecraft/world/level/BaseSpawner/spawnCount +FD: net/minecraft/world/level/BaseSpawner/f_45450_ net/minecraft/world/level/BaseSpawner/displayEntity +FD: net/minecraft/world/level/BaseSpawner/f_45451_ net/minecraft/world/level/BaseSpawner/maxNearbyEntities +FD: net/minecraft/world/level/BaseSpawner/f_45452_ net/minecraft/world/level/BaseSpawner/requiredPlayerRange +FD: net/minecraft/world/level/BaseSpawner/f_45453_ net/minecraft/world/level/BaseSpawner/spawnRange +FD: net/minecraft/world/level/BlockCollisions/f_186392_ net/minecraft/world/level/BlockCollisions/box +FD: net/minecraft/world/level/BlockCollisions/f_186393_ net/minecraft/world/level/BlockCollisions/context +FD: net/minecraft/world/level/BlockCollisions/f_186394_ net/minecraft/world/level/BlockCollisions/cursor +FD: net/minecraft/world/level/BlockCollisions/f_186395_ net/minecraft/world/level/BlockCollisions/pos +FD: net/minecraft/world/level/BlockCollisions/f_186396_ net/minecraft/world/level/BlockCollisions/entityShape +FD: net/minecraft/world/level/BlockCollisions/f_186397_ net/minecraft/world/level/BlockCollisions/collisionGetter +FD: net/minecraft/world/level/BlockCollisions/f_186398_ net/minecraft/world/level/BlockCollisions/onlySuffocatingBlocks +FD: net/minecraft/world/level/BlockCollisions/f_186399_ net/minecraft/world/level/BlockCollisions/cachedBlockGetter +FD: net/minecraft/world/level/BlockCollisions/f_186400_ net/minecraft/world/level/BlockCollisions/cachedBlockGetterPos +FD: net/minecraft/world/level/BlockCollisions/f_285595_ net/minecraft/world/level/BlockCollisions/resultProvider +FD: net/minecraft/world/level/BlockEventData/f_45529_ net/minecraft/world/level/BlockEventData/pos +FD: net/minecraft/world/level/BlockEventData/f_45530_ net/minecraft/world/level/BlockEventData/block +FD: net/minecraft/world/level/BlockEventData/f_45531_ net/minecraft/world/level/BlockEventData/paramA +FD: net/minecraft/world/level/BlockEventData/f_45532_ net/minecraft/world/level/BlockEventData/paramB +FD: net/minecraft/world/level/ChunkPos/f_151375_ net/minecraft/world/level/ChunkPos/COORD_BITS +FD: net/minecraft/world/level/ChunkPos/f_151376_ net/minecraft/world/level/ChunkPos/COORD_MASK +FD: net/minecraft/world/level/ChunkPos/f_151377_ net/minecraft/world/level/ChunkPos/REGION_BITS +FD: net/minecraft/world/level/ChunkPos/f_151378_ net/minecraft/world/level/ChunkPos/REGION_MASK +FD: net/minecraft/world/level/ChunkPos/f_151379_ net/minecraft/world/level/ChunkPos/HASH_A +FD: net/minecraft/world/level/ChunkPos/f_151380_ net/minecraft/world/level/ChunkPos/HASH_C +FD: net/minecraft/world/level/ChunkPos/f_151381_ net/minecraft/world/level/ChunkPos/HASH_Z_XOR +FD: net/minecraft/world/level/ChunkPos/f_186419_ net/minecraft/world/level/ChunkPos/ZERO +FD: net/minecraft/world/level/ChunkPos/f_199440_ net/minecraft/world/level/ChunkPos/SAFETY_MARGIN +FD: net/minecraft/world/level/ChunkPos/f_220335_ net/minecraft/world/level/ChunkPos/REGION_SIZE +FD: net/minecraft/world/level/ChunkPos/f_220336_ net/minecraft/world/level/ChunkPos/REGION_MAX_INDEX +FD: net/minecraft/world/level/ChunkPos/f_45577_ net/minecraft/world/level/ChunkPos/INVALID_CHUNK_POS +FD: net/minecraft/world/level/ChunkPos/f_45578_ net/minecraft/world/level/ChunkPos/x +FD: net/minecraft/world/level/ChunkPos/f_45579_ net/minecraft/world/level/ChunkPos/z +FD: net/minecraft/world/level/ChunkPos$1/f_45617_ net/minecraft/world/level/ChunkPos$1/val$from +FD: net/minecraft/world/level/ChunkPos$1/f_45618_ net/minecraft/world/level/ChunkPos$1/val$to +FD: net/minecraft/world/level/ChunkPos$1/f_45619_ net/minecraft/world/level/ChunkPos$1/val$zDiff +FD: net/minecraft/world/level/ChunkPos$1/f_45620_ net/minecraft/world/level/ChunkPos$1/val$xDiff +FD: net/minecraft/world/level/ChunkPos$1/f_45621_ net/minecraft/world/level/ChunkPos$1/pos +FD: net/minecraft/world/level/ClipBlockStateContext/f_151397_ net/minecraft/world/level/ClipBlockStateContext/from +FD: net/minecraft/world/level/ClipBlockStateContext/f_151398_ net/minecraft/world/level/ClipBlockStateContext/to +FD: net/minecraft/world/level/ClipBlockStateContext/f_151399_ net/minecraft/world/level/ClipBlockStateContext/block +FD: net/minecraft/world/level/ClipContext/f_45682_ net/minecraft/world/level/ClipContext/from +FD: net/minecraft/world/level/ClipContext/f_45683_ net/minecraft/world/level/ClipContext/to +FD: net/minecraft/world/level/ClipContext/f_45684_ net/minecraft/world/level/ClipContext/block +FD: net/minecraft/world/level/ClipContext/f_45685_ net/minecraft/world/level/ClipContext/fluid +FD: net/minecraft/world/level/ClipContext/f_45686_ net/minecraft/world/level/ClipContext/collisionContext +FD: net/minecraft/world/level/ClipContext$Block/$VALUES net/minecraft/world/level/ClipContext$Block/$VALUES +FD: net/minecraft/world/level/ClipContext$Block/COLLIDER net/minecraft/world/level/ClipContext$Block/COLLIDER +FD: net/minecraft/world/level/ClipContext$Block/FALLDAMAGE_RESETTING net/minecraft/world/level/ClipContext$Block/FALLDAMAGE_RESETTING +FD: net/minecraft/world/level/ClipContext$Block/OUTLINE net/minecraft/world/level/ClipContext$Block/OUTLINE +FD: net/minecraft/world/level/ClipContext$Block/VISUAL net/minecraft/world/level/ClipContext$Block/VISUAL +FD: net/minecraft/world/level/ClipContext$Block/f_45706_ net/minecraft/world/level/ClipContext$Block/shapeGetter +FD: net/minecraft/world/level/ClipContext$Fluid/$VALUES net/minecraft/world/level/ClipContext$Fluid/$VALUES +FD: net/minecraft/world/level/ClipContext$Fluid/ANY net/minecraft/world/level/ClipContext$Fluid/ANY +FD: net/minecraft/world/level/ClipContext$Fluid/NONE net/minecraft/world/level/ClipContext$Fluid/NONE +FD: net/minecraft/world/level/ClipContext$Fluid/SOURCE_ONLY net/minecraft/world/level/ClipContext$Fluid/SOURCE_ONLY +FD: net/minecraft/world/level/ClipContext$Fluid/WATER net/minecraft/world/level/ClipContext$Fluid/WATER +FD: net/minecraft/world/level/ClipContext$Fluid/f_45724_ net/minecraft/world/level/ClipContext$Fluid/canPick +FD: net/minecraft/world/level/DataPackConfig/f_45842_ net/minecraft/world/level/DataPackConfig/DEFAULT +FD: net/minecraft/world/level/DataPackConfig/f_45843_ net/minecraft/world/level/DataPackConfig/CODEC +FD: net/minecraft/world/level/DataPackConfig/f_45844_ net/minecraft/world/level/DataPackConfig/enabled +FD: net/minecraft/world/level/DataPackConfig/f_45845_ net/minecraft/world/level/DataPackConfig/disabled +FD: net/minecraft/world/level/EmptyBlockGetter/$VALUES net/minecraft/world/level/EmptyBlockGetter/$VALUES +FD: net/minecraft/world/level/EmptyBlockGetter/INSTANCE net/minecraft/world/level/EmptyBlockGetter/INSTANCE +FD: net/minecraft/world/level/EntityBasedExplosionDamageCalculator/f_45892_ net/minecraft/world/level/EntityBasedExplosionDamageCalculator/source +FD: net/minecraft/world/level/Explosion/f_151469_ net/minecraft/world/level/Explosion/MAX_DROPS_PER_COMBINED_STACK +FD: net/minecraft/world/level/Explosion/f_46008_ net/minecraft/world/level/Explosion/EXPLOSION_DAMAGE_CALCULATOR +FD: net/minecraft/world/level/Explosion/f_46009_ net/minecraft/world/level/Explosion/fire +FD: net/minecraft/world/level/Explosion/f_46010_ net/minecraft/world/level/Explosion/blockInteraction +FD: net/minecraft/world/level/Explosion/f_46011_ net/minecraft/world/level/Explosion/random +FD: net/minecraft/world/level/Explosion/f_46012_ net/minecraft/world/level/Explosion/level +FD: net/minecraft/world/level/Explosion/f_46013_ net/minecraft/world/level/Explosion/x +FD: net/minecraft/world/level/Explosion/f_46014_ net/minecraft/world/level/Explosion/y +FD: net/minecraft/world/level/Explosion/f_46015_ net/minecraft/world/level/Explosion/z +FD: net/minecraft/world/level/Explosion/f_46016_ net/minecraft/world/level/Explosion/source +FD: net/minecraft/world/level/Explosion/f_46017_ net/minecraft/world/level/Explosion/radius +FD: net/minecraft/world/level/Explosion/f_46018_ net/minecraft/world/level/Explosion/damageSource +FD: net/minecraft/world/level/Explosion/f_46019_ net/minecraft/world/level/Explosion/damageCalculator +FD: net/minecraft/world/level/Explosion/f_46020_ net/minecraft/world/level/Explosion/toBlow +FD: net/minecraft/world/level/Explosion/f_46021_ net/minecraft/world/level/Explosion/hitPlayers +FD: net/minecraft/world/level/Explosion$BlockInteraction/$VALUES net/minecraft/world/level/Explosion$BlockInteraction/$VALUES +FD: net/minecraft/world/level/Explosion$BlockInteraction/DESTROY net/minecraft/world/level/Explosion$BlockInteraction/DESTROY +FD: net/minecraft/world/level/Explosion$BlockInteraction/DESTROY_WITH_DECAY net/minecraft/world/level/Explosion$BlockInteraction/DESTROY_WITH_DECAY +FD: net/minecraft/world/level/Explosion$BlockInteraction/KEEP net/minecraft/world/level/Explosion$BlockInteraction/KEEP +FD: net/minecraft/world/level/FoliageColor/f_46104_ net/minecraft/world/level/FoliageColor/pixels +FD: net/minecraft/world/level/ForcedChunksSavedData/f_151479_ net/minecraft/world/level/ForcedChunksSavedData/FILE_ID +FD: net/minecraft/world/level/ForcedChunksSavedData/f_151480_ net/minecraft/world/level/ForcedChunksSavedData/TAG_FORCED +FD: net/minecraft/world/level/ForcedChunksSavedData/f_46114_ net/minecraft/world/level/ForcedChunksSavedData/chunks +FD: net/minecraft/world/level/GameRules/f_151485_ net/minecraft/world/level/GameRules/RULE_FREEZE_DAMAGE +FD: net/minecraft/world/level/GameRules/f_151486_ net/minecraft/world/level/GameRules/RULE_PLAYERS_SLEEPING_PERCENTAGE +FD: net/minecraft/world/level/GameRules/f_151487_ net/minecraft/world/level/GameRules/DEFAULT_RANDOM_TICK_SPEED +FD: net/minecraft/world/level/GameRules/f_220347_ net/minecraft/world/level/GameRules/RULE_DO_WARDEN_SPAWNING +FD: net/minecraft/world/level/GameRules/f_254629_ net/minecraft/world/level/GameRules/RULE_BLOCK_EXPLOSION_DROP_DECAY +FD: net/minecraft/world/level/GameRules/f_254630_ net/minecraft/world/level/GameRules/RULE_GLOBAL_SOUND_EVENTS +FD: net/minecraft/world/level/GameRules/f_254637_ net/minecraft/world/level/GameRules/RULE_SNOW_ACCUMULATION_HEIGHT +FD: net/minecraft/world/level/GameRules/f_254672_ net/minecraft/world/level/GameRules/RULE_LAVA_SOURCE_CONVERSION +FD: net/minecraft/world/level/GameRules/f_254692_ net/minecraft/world/level/GameRules/RULE_MOB_EXPLOSION_DROP_DECAY +FD: net/minecraft/world/level/GameRules/f_254705_ net/minecraft/world/level/GameRules/RULE_TNT_EXPLOSION_DROP_DECAY +FD: net/minecraft/world/level/GameRules/f_254725_ net/minecraft/world/level/GameRules/RULE_WATER_SOURCE_CONVERSION +FD: net/minecraft/world/level/GameRules/f_263760_ net/minecraft/world/level/GameRules/RULE_COMMAND_MODIFICATION_BLOCK_LIMIT +FD: net/minecraft/world/level/GameRules/f_268705_ net/minecraft/world/level/GameRules/RULE_DO_VINES_SPREAD +FD: net/minecraft/world/level/GameRules/f_46121_ net/minecraft/world/level/GameRules/RULE_DROWNING_DAMAGE +FD: net/minecraft/world/level/GameRules/f_46122_ net/minecraft/world/level/GameRules/RULE_FALL_DAMAGE +FD: net/minecraft/world/level/GameRules/f_46123_ net/minecraft/world/level/GameRules/RULE_FIRE_DAMAGE +FD: net/minecraft/world/level/GameRules/f_46124_ net/minecraft/world/level/GameRules/RULE_DO_PATROL_SPAWNING +FD: net/minecraft/world/level/GameRules/f_46125_ net/minecraft/world/level/GameRules/RULE_DO_TRADER_SPAWNING +FD: net/minecraft/world/level/GameRules/f_46126_ net/minecraft/world/level/GameRules/RULE_FORGIVE_DEAD_PLAYERS +FD: net/minecraft/world/level/GameRules/f_46127_ net/minecraft/world/level/GameRules/RULE_UNIVERSAL_ANGER +FD: net/minecraft/world/level/GameRules/f_46128_ net/minecraft/world/level/GameRules/LOGGER +FD: net/minecraft/world/level/GameRules/f_46129_ net/minecraft/world/level/GameRules/GAME_RULE_TYPES +FD: net/minecraft/world/level/GameRules/f_46130_ net/minecraft/world/level/GameRules/rules +FD: net/minecraft/world/level/GameRules/f_46131_ net/minecraft/world/level/GameRules/RULE_DOFIRETICK +FD: net/minecraft/world/level/GameRules/f_46132_ net/minecraft/world/level/GameRules/RULE_MOBGRIEFING +FD: net/minecraft/world/level/GameRules/f_46133_ net/minecraft/world/level/GameRules/RULE_KEEPINVENTORY +FD: net/minecraft/world/level/GameRules/f_46134_ net/minecraft/world/level/GameRules/RULE_DOMOBSPAWNING +FD: net/minecraft/world/level/GameRules/f_46135_ net/minecraft/world/level/GameRules/RULE_DOMOBLOOT +FD: net/minecraft/world/level/GameRules/f_46136_ net/minecraft/world/level/GameRules/RULE_DOBLOCKDROPS +FD: net/minecraft/world/level/GameRules/f_46137_ net/minecraft/world/level/GameRules/RULE_DOENTITYDROPS +FD: net/minecraft/world/level/GameRules/f_46138_ net/minecraft/world/level/GameRules/RULE_COMMANDBLOCKOUTPUT +FD: net/minecraft/world/level/GameRules/f_46139_ net/minecraft/world/level/GameRules/RULE_NATURAL_REGENERATION +FD: net/minecraft/world/level/GameRules/f_46140_ net/minecraft/world/level/GameRules/RULE_DAYLIGHT +FD: net/minecraft/world/level/GameRules/f_46141_ net/minecraft/world/level/GameRules/RULE_LOGADMINCOMMANDS +FD: net/minecraft/world/level/GameRules/f_46142_ net/minecraft/world/level/GameRules/RULE_SHOWDEATHMESSAGES +FD: net/minecraft/world/level/GameRules/f_46143_ net/minecraft/world/level/GameRules/RULE_RANDOMTICKING +FD: net/minecraft/world/level/GameRules/f_46144_ net/minecraft/world/level/GameRules/RULE_SENDCOMMANDFEEDBACK +FD: net/minecraft/world/level/GameRules/f_46145_ net/minecraft/world/level/GameRules/RULE_REDUCEDDEBUGINFO +FD: net/minecraft/world/level/GameRules/f_46146_ net/minecraft/world/level/GameRules/RULE_SPECTATORSGENERATECHUNKS +FD: net/minecraft/world/level/GameRules/f_46147_ net/minecraft/world/level/GameRules/RULE_SPAWN_RADIUS +FD: net/minecraft/world/level/GameRules/f_46148_ net/minecraft/world/level/GameRules/RULE_DISABLE_ELYTRA_MOVEMENT_CHECK +FD: net/minecraft/world/level/GameRules/f_46149_ net/minecraft/world/level/GameRules/RULE_MAX_ENTITY_CRAMMING +FD: net/minecraft/world/level/GameRules/f_46150_ net/minecraft/world/level/GameRules/RULE_WEATHER_CYCLE +FD: net/minecraft/world/level/GameRules/f_46151_ net/minecraft/world/level/GameRules/RULE_LIMITED_CRAFTING +FD: net/minecraft/world/level/GameRules/f_46152_ net/minecraft/world/level/GameRules/RULE_MAX_COMMAND_CHAIN_LENGTH +FD: net/minecraft/world/level/GameRules/f_46153_ net/minecraft/world/level/GameRules/RULE_ANNOUNCE_ADVANCEMENTS +FD: net/minecraft/world/level/GameRules/f_46154_ net/minecraft/world/level/GameRules/RULE_DISABLE_RAIDS +FD: net/minecraft/world/level/GameRules/f_46155_ net/minecraft/world/level/GameRules/RULE_DOINSOMNIA +FD: net/minecraft/world/level/GameRules/f_46156_ net/minecraft/world/level/GameRules/RULE_DO_IMMEDIATE_RESPAWN +FD: net/minecraft/world/level/GameRules$BooleanValue/f_46219_ net/minecraft/world/level/GameRules$BooleanValue/value +FD: net/minecraft/world/level/GameRules$Category/$VALUES net/minecraft/world/level/GameRules$Category/$VALUES +FD: net/minecraft/world/level/GameRules$Category/CHAT net/minecraft/world/level/GameRules$Category/CHAT +FD: net/minecraft/world/level/GameRules$Category/DROPS net/minecraft/world/level/GameRules$Category/DROPS +FD: net/minecraft/world/level/GameRules$Category/MISC net/minecraft/world/level/GameRules$Category/MISC +FD: net/minecraft/world/level/GameRules$Category/MOBS net/minecraft/world/level/GameRules$Category/MOBS +FD: net/minecraft/world/level/GameRules$Category/PLAYER net/minecraft/world/level/GameRules$Category/PLAYER +FD: net/minecraft/world/level/GameRules$Category/SPAWNING net/minecraft/world/level/GameRules$Category/SPAWNING +FD: net/minecraft/world/level/GameRules$Category/UPDATES net/minecraft/world/level/GameRules$Category/UPDATES +FD: net/minecraft/world/level/GameRules$Category/f_46267_ net/minecraft/world/level/GameRules$Category/descriptionId +FD: net/minecraft/world/level/GameRules$IntegerValue/f_46284_ net/minecraft/world/level/GameRules$IntegerValue/value +FD: net/minecraft/world/level/GameRules$Key/f_46323_ net/minecraft/world/level/GameRules$Key/id +FD: net/minecraft/world/level/GameRules$Key/f_46324_ net/minecraft/world/level/GameRules$Key/category +FD: net/minecraft/world/level/GameRules$Type/f_46337_ net/minecraft/world/level/GameRules$Type/argument +FD: net/minecraft/world/level/GameRules$Type/f_46338_ net/minecraft/world/level/GameRules$Type/constructor +FD: net/minecraft/world/level/GameRules$Type/f_46339_ net/minecraft/world/level/GameRules$Type/callback +FD: net/minecraft/world/level/GameRules$Type/f_46340_ net/minecraft/world/level/GameRules$Type/visitorCaller +FD: net/minecraft/world/level/GameRules$Value/f_46360_ net/minecraft/world/level/GameRules$Value/type +FD: net/minecraft/world/level/GameType/$VALUES net/minecraft/world/level/GameType/$VALUES +FD: net/minecraft/world/level/GameType/ADVENTURE net/minecraft/world/level/GameType/ADVENTURE +FD: net/minecraft/world/level/GameType/CREATIVE net/minecraft/world/level/GameType/CREATIVE +FD: net/minecraft/world/level/GameType/SPECTATOR net/minecraft/world/level/GameType/SPECTATOR +FD: net/minecraft/world/level/GameType/SURVIVAL net/minecraft/world/level/GameType/SURVIVAL +FD: net/minecraft/world/level/GameType/f_151492_ net/minecraft/world/level/GameType/DEFAULT_MODE +FD: net/minecraft/world/level/GameType/f_151493_ net/minecraft/world/level/GameType/shortName +FD: net/minecraft/world/level/GameType/f_151494_ net/minecraft/world/level/GameType/longName +FD: net/minecraft/world/level/GameType/f_262728_ net/minecraft/world/level/GameType/BY_ID +FD: net/minecraft/world/level/GameType/f_262729_ net/minecraft/world/level/GameType/CODEC +FD: net/minecraft/world/level/GameType/f_46378_ net/minecraft/world/level/GameType/NOT_SET +FD: net/minecraft/world/level/GameType/f_46383_ net/minecraft/world/level/GameType/id +FD: net/minecraft/world/level/GameType/f_46384_ net/minecraft/world/level/GameType/name +FD: net/minecraft/world/level/GrassColor/f_46413_ net/minecraft/world/level/GrassColor/pixels +FD: net/minecraft/world/level/Level/f_151503_ net/minecraft/world/level/Level/pendingBlockEntityTickers +FD: net/minecraft/world/level/Level/f_151504_ net/minecraft/world/level/Level/tickingBlockEntities +FD: net/minecraft/world/level/Level/f_151505_ net/minecraft/world/level/Level/MAX_LEVEL_SIZE +FD: net/minecraft/world/level/Level/f_151506_ net/minecraft/world/level/Level/LONG_PARTICLE_CLIP_RANGE +FD: net/minecraft/world/level/Level/f_151507_ net/minecraft/world/level/Level/SHORT_PARTICLE_CLIP_RANGE +FD: net/minecraft/world/level/Level/f_151508_ net/minecraft/world/level/Level/MAX_BRIGHTNESS +FD: net/minecraft/world/level/Level/f_151509_ net/minecraft/world/level/Level/TICKS_PER_DAY +FD: net/minecraft/world/level/Level/f_151510_ net/minecraft/world/level/Level/MAX_ENTITY_SPAWN_Y +FD: net/minecraft/world/level/Level/f_151511_ net/minecraft/world/level/Level/MIN_ENTITY_SPAWN_Y +FD: net/minecraft/world/level/Level/f_151512_ net/minecraft/world/level/Level/blockEntityTickers +FD: net/minecraft/world/level/Level/f_186455_ net/minecraft/world/level/Level/subTickCount +FD: net/minecraft/world/level/Level/f_204147_ net/minecraft/world/level/Level/dimensionTypeRegistration +FD: net/minecraft/world/level/Level/f_220348_ net/minecraft/world/level/Level/threadSafeRandom +FD: net/minecraft/world/level/Level/f_220349_ net/minecraft/world/level/Level/dimensionTypeId +FD: net/minecraft/world/level/Level/f_220350_ net/minecraft/world/level/Level/neighborUpdater +FD: net/minecraft/world/level/Level/f_268497_ net/minecraft/world/level/Level/damageSources +FD: net/minecraft/world/level/Level/f_268710_ net/minecraft/world/level/Level/registryAccess +FD: net/minecraft/world/level/Level/f_46420_ net/minecraft/world/level/Level/biomeManager +FD: net/minecraft/world/level/Level/f_46421_ net/minecraft/world/level/Level/dimension +FD: net/minecraft/world/level/Level/f_46423_ net/minecraft/world/level/Level/thread +FD: net/minecraft/world/level/Level/f_46424_ net/minecraft/world/level/Level/isDebug +FD: net/minecraft/world/level/Level/f_46425_ net/minecraft/world/level/Level/skyDarken +FD: net/minecraft/world/level/Level/f_46427_ net/minecraft/world/level/Level/RESOURCE_KEY_CODEC +FD: net/minecraft/world/level/Level/f_46428_ net/minecraft/world/level/Level/OVERWORLD +FD: net/minecraft/world/level/Level/f_46429_ net/minecraft/world/level/Level/NETHER +FD: net/minecraft/world/level/Level/f_46430_ net/minecraft/world/level/Level/END +FD: net/minecraft/world/level/Level/f_46435_ net/minecraft/world/level/Level/randValue +FD: net/minecraft/world/level/Level/f_46436_ net/minecraft/world/level/Level/addend +FD: net/minecraft/world/level/Level/f_46437_ net/minecraft/world/level/Level/oRainLevel +FD: net/minecraft/world/level/Level/f_46438_ net/minecraft/world/level/Level/rainLevel +FD: net/minecraft/world/level/Level/f_46439_ net/minecraft/world/level/Level/oThunderLevel +FD: net/minecraft/world/level/Level/f_46440_ net/minecraft/world/level/Level/thunderLevel +FD: net/minecraft/world/level/Level/f_46441_ net/minecraft/world/level/Level/random +FD: net/minecraft/world/level/Level/f_46442_ net/minecraft/world/level/Level/levelData +FD: net/minecraft/world/level/Level/f_46443_ net/minecraft/world/level/Level/isClientSide +FD: net/minecraft/world/level/Level/f_46446_ net/minecraft/world/level/Level/profiler +FD: net/minecraft/world/level/Level/f_46447_ net/minecraft/world/level/Level/worldBorder +FD: net/minecraft/world/level/Level$1/f_220396_ net/minecraft/world/level/Level$1/val$dimensionType +FD: net/minecraft/world/level/Level$1/f_46765_ net/minecraft/world/level/Level$1/this$0 +FD: net/minecraft/world/level/Level$2/f_254640_ net/minecraft/world/level/Level$2/$SwitchMap$net$minecraft$world$level$Level$ExplosionInteraction +FD: net/minecraft/world/level/Level$ExplosionInteraction/$VALUES net/minecraft/world/level/Level$ExplosionInteraction/$VALUES +FD: net/minecraft/world/level/Level$ExplosionInteraction/BLOCK net/minecraft/world/level/Level$ExplosionInteraction/BLOCK +FD: net/minecraft/world/level/Level$ExplosionInteraction/MOB net/minecraft/world/level/Level$ExplosionInteraction/MOB +FD: net/minecraft/world/level/Level$ExplosionInteraction/NONE net/minecraft/world/level/Level$ExplosionInteraction/NONE +FD: net/minecraft/world/level/Level$ExplosionInteraction/TNT net/minecraft/world/level/Level$ExplosionInteraction/TNT +FD: net/minecraft/world/level/LevelHeightAccessor$1/f_186490_ net/minecraft/world/level/LevelHeightAccessor$1/val$height +FD: net/minecraft/world/level/LevelHeightAccessor$1/f_186491_ net/minecraft/world/level/LevelHeightAccessor$1/val$minBuildHeight +FD: net/minecraft/world/level/LevelSettings/f_243681_ net/minecraft/world/level/LevelSettings/dataConfiguration +FD: net/minecraft/world/level/LevelSettings/f_46902_ net/minecraft/world/level/LevelSettings/levelName +FD: net/minecraft/world/level/LevelSettings/f_46903_ net/minecraft/world/level/LevelSettings/gameType +FD: net/minecraft/world/level/LevelSettings/f_46904_ net/minecraft/world/level/LevelSettings/hardcore +FD: net/minecraft/world/level/LevelSettings/f_46905_ net/minecraft/world/level/LevelSettings/difficulty +FD: net/minecraft/world/level/LevelSettings/f_46906_ net/minecraft/world/level/LevelSettings/allowCommands +FD: net/minecraft/world/level/LevelSettings/f_46907_ net/minecraft/world/level/LevelSettings/gameRules +FD: net/minecraft/world/level/LightLayer/$VALUES net/minecraft/world/level/LightLayer/$VALUES +FD: net/minecraft/world/level/LightLayer/BLOCK net/minecraft/world/level/LightLayer/BLOCK +FD: net/minecraft/world/level/LightLayer/SKY net/minecraft/world/level/LightLayer/SKY +FD: net/minecraft/world/level/LocalMobCapCalculator/f_186497_ net/minecraft/world/level/LocalMobCapCalculator/playersNearChunk +FD: net/minecraft/world/level/LocalMobCapCalculator/f_186498_ net/minecraft/world/level/LocalMobCapCalculator/playerMobCounts +FD: net/minecraft/world/level/LocalMobCapCalculator/f_186499_ net/minecraft/world/level/LocalMobCapCalculator/chunkMap +FD: net/minecraft/world/level/LocalMobCapCalculator$MobCounts/f_186515_ net/minecraft/world/level/LocalMobCapCalculator$MobCounts/counts +FD: net/minecraft/world/level/NaturalSpawner/f_151587_ net/minecraft/world/level/NaturalSpawner/SPAWN_DISTANCE_CHUNK +FD: net/minecraft/world/level/NaturalSpawner/f_151588_ net/minecraft/world/level/NaturalSpawner/SPAWN_DISTANCE_BLOCK +FD: net/minecraft/world/level/NaturalSpawner/f_151589_ net/minecraft/world/level/NaturalSpawner/MIN_SPAWN_DISTANCE +FD: net/minecraft/world/level/NaturalSpawner/f_46977_ net/minecraft/world/level/NaturalSpawner/LOGGER +FD: net/minecraft/world/level/NaturalSpawner/f_46978_ net/minecraft/world/level/NaturalSpawner/MAGIC_NUMBER +FD: net/minecraft/world/level/NaturalSpawner/f_46979_ net/minecraft/world/level/NaturalSpawner/SPAWNING_CATEGORIES +FD: net/minecraft/world/level/NaturalSpawner$1/f_47098_ net/minecraft/world/level/NaturalSpawner$1/$SwitchMap$net$minecraft$world$entity$SpawnPlacements$Type +FD: net/minecraft/world/level/NaturalSpawner$SpawnState/f_186542_ net/minecraft/world/level/NaturalSpawner$SpawnState/localMobCapCalculator +FD: net/minecraft/world/level/NaturalSpawner$SpawnState/f_47110_ net/minecraft/world/level/NaturalSpawner$SpawnState/spawnableChunkCount +FD: net/minecraft/world/level/NaturalSpawner$SpawnState/f_47111_ net/minecraft/world/level/NaturalSpawner$SpawnState/mobCategoryCounts +FD: net/minecraft/world/level/NaturalSpawner$SpawnState/f_47112_ net/minecraft/world/level/NaturalSpawner$SpawnState/spawnPotential +FD: net/minecraft/world/level/NaturalSpawner$SpawnState/f_47113_ net/minecraft/world/level/NaturalSpawner$SpawnState/unmodifiableMobCategoryCounts +FD: net/minecraft/world/level/NaturalSpawner$SpawnState/f_47114_ net/minecraft/world/level/NaturalSpawner$SpawnState/lastCheckedPos +FD: net/minecraft/world/level/NaturalSpawner$SpawnState/f_47115_ net/minecraft/world/level/NaturalSpawner$SpawnState/lastCheckedType +FD: net/minecraft/world/level/NaturalSpawner$SpawnState/f_47116_ net/minecraft/world/level/NaturalSpawner$SpawnState/lastCharge +FD: net/minecraft/world/level/NoiseColumn/f_151621_ net/minecraft/world/level/NoiseColumn/minY +FD: net/minecraft/world/level/NoiseColumn/f_47149_ net/minecraft/world/level/NoiseColumn/column +FD: net/minecraft/world/level/PathNavigationRegion/f_204180_ net/minecraft/world/level/PathNavigationRegion/plains +FD: net/minecraft/world/level/PathNavigationRegion/f_47158_ net/minecraft/world/level/PathNavigationRegion/centerX +FD: net/minecraft/world/level/PathNavigationRegion/f_47159_ net/minecraft/world/level/PathNavigationRegion/centerZ +FD: net/minecraft/world/level/PathNavigationRegion/f_47160_ net/minecraft/world/level/PathNavigationRegion/chunks +FD: net/minecraft/world/level/PathNavigationRegion/f_47161_ net/minecraft/world/level/PathNavigationRegion/allEmpty +FD: net/minecraft/world/level/PathNavigationRegion/f_47162_ net/minecraft/world/level/PathNavigationRegion/level +FD: net/minecraft/world/level/PotentialCalculator/f_47190_ net/minecraft/world/level/PotentialCalculator/charges +FD: net/minecraft/world/level/PotentialCalculator$PointCharge/f_47198_ net/minecraft/world/level/PotentialCalculator$PointCharge/pos +FD: net/minecraft/world/level/PotentialCalculator$PointCharge/f_47199_ net/minecraft/world/level/PotentialCalculator$PointCharge/charge +FD: net/minecraft/world/level/SignalGetter/f_276432_ net/minecraft/world/level/SignalGetter/DIRECTIONS +FD: net/minecraft/world/level/SpawnData/f_186559_ net/minecraft/world/level/SpawnData/CODEC +FD: net/minecraft/world/level/SpawnData/f_186560_ net/minecraft/world/level/SpawnData/LIST_CODEC +FD: net/minecraft/world/level/SpawnData/f_186561_ net/minecraft/world/level/SpawnData/entityToSpawn +FD: net/minecraft/world/level/SpawnData/f_186562_ net/minecraft/world/level/SpawnData/customSpawnRules +FD: net/minecraft/world/level/SpawnData/f_254695_ net/minecraft/world/level/SpawnData/ENTITY_TAG +FD: net/minecraft/world/level/SpawnData$CustomSpawnRules/f_186583_ net/minecraft/world/level/SpawnData$CustomSpawnRules/CODEC +FD: net/minecraft/world/level/SpawnData$CustomSpawnRules/f_186584_ net/minecraft/world/level/SpawnData$CustomSpawnRules/blockLightLimit +FD: net/minecraft/world/level/SpawnData$CustomSpawnRules/f_186585_ net/minecraft/world/level/SpawnData$CustomSpawnRules/skyLightLimit +FD: net/minecraft/world/level/SpawnData$CustomSpawnRules/f_186586_ net/minecraft/world/level/SpawnData$CustomSpawnRules/LIGHT_RANGE +FD: net/minecraft/world/level/StructureManager/f_220460_ net/minecraft/world/level/StructureManager/level +FD: net/minecraft/world/level/StructureManager/f_220462_ net/minecraft/world/level/StructureManager/structureCheck +FD: net/minecraft/world/level/StructureManager/f_244109_ net/minecraft/world/level/StructureManager/worldOptions +FD: net/minecraft/world/level/WorldDataConfiguration/f_243757_ net/minecraft/world/level/WorldDataConfiguration/ENABLED_FEATURES_ID +FD: net/minecraft/world/level/WorldDataConfiguration/f_243973_ net/minecraft/world/level/WorldDataConfiguration/enabledFeatures +FD: net/minecraft/world/level/WorldDataConfiguration/f_244096_ net/minecraft/world/level/WorldDataConfiguration/dataPacks +FD: net/minecraft/world/level/WorldDataConfiguration/f_244621_ net/minecraft/world/level/WorldDataConfiguration/CODEC +FD: net/minecraft/world/level/WorldDataConfiguration/f_244649_ net/minecraft/world/level/WorldDataConfiguration/DEFAULT +FD: net/minecraft/world/level/biome/AmbientAdditionsSettings/f_47371_ net/minecraft/world/level/biome/AmbientAdditionsSettings/CODEC +FD: net/minecraft/world/level/biome/AmbientAdditionsSettings/f_47372_ net/minecraft/world/level/biome/AmbientAdditionsSettings/soundEvent +FD: net/minecraft/world/level/biome/AmbientAdditionsSettings/f_47373_ net/minecraft/world/level/biome/AmbientAdditionsSettings/tickChance +FD: net/minecraft/world/level/biome/AmbientMoodSettings/f_47386_ net/minecraft/world/level/biome/AmbientMoodSettings/CODEC +FD: net/minecraft/world/level/biome/AmbientMoodSettings/f_47387_ net/minecraft/world/level/biome/AmbientMoodSettings/LEGACY_CAVE_SETTINGS +FD: net/minecraft/world/level/biome/AmbientMoodSettings/f_47388_ net/minecraft/world/level/biome/AmbientMoodSettings/soundEvent +FD: net/minecraft/world/level/biome/AmbientMoodSettings/f_47389_ net/minecraft/world/level/biome/AmbientMoodSettings/tickDelay +FD: net/minecraft/world/level/biome/AmbientMoodSettings/f_47390_ net/minecraft/world/level/biome/AmbientMoodSettings/blockSearchExtent +FD: net/minecraft/world/level/biome/AmbientMoodSettings/f_47391_ net/minecraft/world/level/biome/AmbientMoodSettings/soundPositionOffset +FD: net/minecraft/world/level/biome/AmbientParticleSettings/f_47412_ net/minecraft/world/level/biome/AmbientParticleSettings/CODEC +FD: net/minecraft/world/level/biome/AmbientParticleSettings/f_47413_ net/minecraft/world/level/biome/AmbientParticleSettings/options +FD: net/minecraft/world/level/biome/AmbientParticleSettings/f_47414_ net/minecraft/world/level/biome/AmbientParticleSettings/probability +FD: net/minecraft/world/level/biome/Biome/f_151655_ net/minecraft/world/level/biome/Biome/TEMPERATURE_CACHE_SIZE +FD: net/minecraft/world/level/biome/Biome/f_47429_ net/minecraft/world/level/biome/Biome/DIRECT_CODEC +FD: net/minecraft/world/level/biome/Biome/f_47430_ net/minecraft/world/level/biome/Biome/NETWORK_CODEC +FD: net/minecraft/world/level/biome/Biome/f_47431_ net/minecraft/world/level/biome/Biome/CODEC +FD: net/minecraft/world/level/biome/Biome/f_47432_ net/minecraft/world/level/biome/Biome/LIST_CODEC +FD: net/minecraft/world/level/biome/Biome/f_47433_ net/minecraft/world/level/biome/Biome/BIOME_INFO_NOISE +FD: net/minecraft/world/level/biome/Biome/f_47435_ net/minecraft/world/level/biome/Biome/TEMPERATURE_NOISE +FD: net/minecraft/world/level/biome/Biome/f_47436_ net/minecraft/world/level/biome/Biome/FROZEN_TEMPERATURE_NOISE +FD: net/minecraft/world/level/biome/Biome/f_47437_ net/minecraft/world/level/biome/Biome/climateSettings +FD: net/minecraft/world/level/biome/Biome/f_47438_ net/minecraft/world/level/biome/Biome/generationSettings +FD: net/minecraft/world/level/biome/Biome/f_47439_ net/minecraft/world/level/biome/Biome/mobSettings +FD: net/minecraft/world/level/biome/Biome/f_47443_ net/minecraft/world/level/biome/Biome/specialEffects +FD: net/minecraft/world/level/biome/Biome/f_47444_ net/minecraft/world/level/biome/Biome/temperatureCache +FD: net/minecraft/world/level/biome/Biome$1/f_47574_ net/minecraft/world/level/biome/Biome$1/this$0 +FD: net/minecraft/world/level/biome/Biome$BiomeBuilder/f_263814_ net/minecraft/world/level/biome/Biome$BiomeBuilder/hasPrecipitation +FD: net/minecraft/world/level/biome/Biome$BiomeBuilder/f_47585_ net/minecraft/world/level/biome/Biome$BiomeBuilder/temperature +FD: net/minecraft/world/level/biome/Biome$BiomeBuilder/f_47586_ net/minecraft/world/level/biome/Biome$BiomeBuilder/temperatureModifier +FD: net/minecraft/world/level/biome/Biome$BiomeBuilder/f_47587_ net/minecraft/world/level/biome/Biome$BiomeBuilder/downfall +FD: net/minecraft/world/level/biome/Biome$BiomeBuilder/f_47588_ net/minecraft/world/level/biome/Biome$BiomeBuilder/specialEffects +FD: net/minecraft/world/level/biome/Biome$BiomeBuilder/f_47589_ net/minecraft/world/level/biome/Biome$BiomeBuilder/mobSpawnSettings +FD: net/minecraft/world/level/biome/Biome$BiomeBuilder/f_47590_ net/minecraft/world/level/biome/Biome$BiomeBuilder/generationSettings +FD: net/minecraft/world/level/biome/Biome$ClimateSettings/f_263819_ net/minecraft/world/level/biome/Biome$ClimateSettings/hasPrecipitation +FD: net/minecraft/world/level/biome/Biome$ClimateSettings/f_47679_ net/minecraft/world/level/biome/Biome$ClimateSettings/CODEC +FD: net/minecraft/world/level/biome/Biome$ClimateSettings/f_47681_ net/minecraft/world/level/biome/Biome$ClimateSettings/temperature +FD: net/minecraft/world/level/biome/Biome$ClimateSettings/f_47682_ net/minecraft/world/level/biome/Biome$ClimateSettings/temperatureModifier +FD: net/minecraft/world/level/biome/Biome$ClimateSettings/f_47683_ net/minecraft/world/level/biome/Biome$ClimateSettings/downfall +FD: net/minecraft/world/level/biome/Biome$Precipitation/$VALUES net/minecraft/world/level/biome/Biome$Precipitation/$VALUES +FD: net/minecraft/world/level/biome/Biome$Precipitation/NONE net/minecraft/world/level/biome/Biome$Precipitation/NONE +FD: net/minecraft/world/level/biome/Biome$Precipitation/RAIN net/minecraft/world/level/biome/Biome$Precipitation/RAIN +FD: net/minecraft/world/level/biome/Biome$Precipitation/SNOW net/minecraft/world/level/biome/Biome$Precipitation/SNOW +FD: net/minecraft/world/level/biome/Biome$TemperatureModifier/$VALUES net/minecraft/world/level/biome/Biome$TemperatureModifier/$VALUES +FD: net/minecraft/world/level/biome/Biome$TemperatureModifier/FROZEN net/minecraft/world/level/biome/Biome$TemperatureModifier/FROZEN +FD: net/minecraft/world/level/biome/Biome$TemperatureModifier/NONE net/minecraft/world/level/biome/Biome$TemperatureModifier/NONE +FD: net/minecraft/world/level/biome/Biome$TemperatureModifier/f_47737_ net/minecraft/world/level/biome/Biome$TemperatureModifier/CODEC +FD: net/minecraft/world/level/biome/Biome$TemperatureModifier/f_47738_ net/minecraft/world/level/biome/Biome$TemperatureModifier/name +FD: net/minecraft/world/level/biome/BiomeGenerationSettings/f_186648_ net/minecraft/world/level/biome/BiomeGenerationSettings/featureSet +FD: net/minecraft/world/level/biome/BiomeGenerationSettings/f_47776_ net/minecraft/world/level/biome/BiomeGenerationSettings/LOGGER +FD: net/minecraft/world/level/biome/BiomeGenerationSettings/f_47777_ net/minecraft/world/level/biome/BiomeGenerationSettings/EMPTY +FD: net/minecraft/world/level/biome/BiomeGenerationSettings/f_47778_ net/minecraft/world/level/biome/BiomeGenerationSettings/CODEC +FD: net/minecraft/world/level/biome/BiomeGenerationSettings/f_47780_ net/minecraft/world/level/biome/BiomeGenerationSettings/carvers +FD: net/minecraft/world/level/biome/BiomeGenerationSettings/f_47781_ net/minecraft/world/level/biome/BiomeGenerationSettings/features +FD: net/minecraft/world/level/biome/BiomeGenerationSettings/f_47783_ net/minecraft/world/level/biome/BiomeGenerationSettings/flowerFeatures +FD: net/minecraft/world/level/biome/BiomeGenerationSettings$Builder/f_254679_ net/minecraft/world/level/biome/BiomeGenerationSettings$Builder/placedFeatures +FD: net/minecraft/world/level/biome/BiomeGenerationSettings$Builder/f_254731_ net/minecraft/world/level/biome/BiomeGenerationSettings$Builder/worldCarvers +FD: net/minecraft/world/level/biome/BiomeGenerationSettings$PlainBuilder/f_254648_ net/minecraft/world/level/biome/BiomeGenerationSettings$PlainBuilder/features +FD: net/minecraft/world/level/biome/BiomeGenerationSettings$PlainBuilder/f_254678_ net/minecraft/world/level/biome/BiomeGenerationSettings$PlainBuilder/carvers +FD: net/minecraft/world/level/biome/BiomeManager/f_151750_ net/minecraft/world/level/biome/BiomeManager/CHUNK_CENTER_QUART +FD: net/minecraft/world/level/biome/BiomeManager/f_186673_ net/minecraft/world/level/biome/BiomeManager/ZOOM_BITS +FD: net/minecraft/world/level/biome/BiomeManager/f_186674_ net/minecraft/world/level/biome/BiomeManager/ZOOM +FD: net/minecraft/world/level/biome/BiomeManager/f_186675_ net/minecraft/world/level/biome/BiomeManager/ZOOM_MASK +FD: net/minecraft/world/level/biome/BiomeManager/f_47862_ net/minecraft/world/level/biome/BiomeManager/noiseBiomeSource +FD: net/minecraft/world/level/biome/BiomeManager/f_47863_ net/minecraft/world/level/biome/BiomeManager/biomeZoomSeed +FD: net/minecraft/world/level/biome/BiomeSource/f_47888_ net/minecraft/world/level/biome/BiomeSource/CODEC +FD: net/minecraft/world/level/biome/BiomeSource/f_47891_ net/minecraft/world/level/biome/BiomeSource/possibleBiomes +FD: net/minecraft/world/level/biome/BiomeSpecialEffects/f_47926_ net/minecraft/world/level/biome/BiomeSpecialEffects/CODEC +FD: net/minecraft/world/level/biome/BiomeSpecialEffects/f_47927_ net/minecraft/world/level/biome/BiomeSpecialEffects/fogColor +FD: net/minecraft/world/level/biome/BiomeSpecialEffects/f_47928_ net/minecraft/world/level/biome/BiomeSpecialEffects/waterColor +FD: net/minecraft/world/level/biome/BiomeSpecialEffects/f_47929_ net/minecraft/world/level/biome/BiomeSpecialEffects/waterFogColor +FD: net/minecraft/world/level/biome/BiomeSpecialEffects/f_47930_ net/minecraft/world/level/biome/BiomeSpecialEffects/skyColor +FD: net/minecraft/world/level/biome/BiomeSpecialEffects/f_47931_ net/minecraft/world/level/biome/BiomeSpecialEffects/foliageColorOverride +FD: net/minecraft/world/level/biome/BiomeSpecialEffects/f_47932_ net/minecraft/world/level/biome/BiomeSpecialEffects/grassColorOverride +FD: net/minecraft/world/level/biome/BiomeSpecialEffects/f_47933_ net/minecraft/world/level/biome/BiomeSpecialEffects/grassColorModifier +FD: net/minecraft/world/level/biome/BiomeSpecialEffects/f_47934_ net/minecraft/world/level/biome/BiomeSpecialEffects/ambientParticleSettings +FD: net/minecraft/world/level/biome/BiomeSpecialEffects/f_47935_ net/minecraft/world/level/biome/BiomeSpecialEffects/ambientLoopSoundEvent +FD: net/minecraft/world/level/biome/BiomeSpecialEffects/f_47936_ net/minecraft/world/level/biome/BiomeSpecialEffects/ambientMoodSettings +FD: net/minecraft/world/level/biome/BiomeSpecialEffects/f_47937_ net/minecraft/world/level/biome/BiomeSpecialEffects/ambientAdditionsSettings +FD: net/minecraft/world/level/biome/BiomeSpecialEffects/f_47938_ net/minecraft/world/level/biome/BiomeSpecialEffects/backgroundMusic +FD: net/minecraft/world/level/biome/BiomeSpecialEffects$Builder/f_48005_ net/minecraft/world/level/biome/BiomeSpecialEffects$Builder/fogColor +FD: net/minecraft/world/level/biome/BiomeSpecialEffects$Builder/f_48006_ net/minecraft/world/level/biome/BiomeSpecialEffects$Builder/waterColor +FD: net/minecraft/world/level/biome/BiomeSpecialEffects$Builder/f_48007_ net/minecraft/world/level/biome/BiomeSpecialEffects$Builder/waterFogColor +FD: net/minecraft/world/level/biome/BiomeSpecialEffects$Builder/f_48008_ net/minecraft/world/level/biome/BiomeSpecialEffects$Builder/skyColor +FD: net/minecraft/world/level/biome/BiomeSpecialEffects$Builder/f_48009_ net/minecraft/world/level/biome/BiomeSpecialEffects$Builder/foliageColorOverride +FD: net/minecraft/world/level/biome/BiomeSpecialEffects$Builder/f_48010_ net/minecraft/world/level/biome/BiomeSpecialEffects$Builder/grassColorOverride +FD: net/minecraft/world/level/biome/BiomeSpecialEffects$Builder/f_48011_ net/minecraft/world/level/biome/BiomeSpecialEffects$Builder/grassColorModifier +FD: net/minecraft/world/level/biome/BiomeSpecialEffects$Builder/f_48012_ net/minecraft/world/level/biome/BiomeSpecialEffects$Builder/ambientParticle +FD: net/minecraft/world/level/biome/BiomeSpecialEffects$Builder/f_48013_ net/minecraft/world/level/biome/BiomeSpecialEffects$Builder/ambientLoopSoundEvent +FD: net/minecraft/world/level/biome/BiomeSpecialEffects$Builder/f_48014_ net/minecraft/world/level/biome/BiomeSpecialEffects$Builder/ambientMoodSettings +FD: net/minecraft/world/level/biome/BiomeSpecialEffects$Builder/f_48015_ net/minecraft/world/level/biome/BiomeSpecialEffects$Builder/ambientAdditionsSettings +FD: net/minecraft/world/level/biome/BiomeSpecialEffects$Builder/f_48016_ net/minecraft/world/level/biome/BiomeSpecialEffects$Builder/backgroundMusic +FD: net/minecraft/world/level/biome/BiomeSpecialEffects$GrassColorModifier/$VALUES net/minecraft/world/level/biome/BiomeSpecialEffects$GrassColorModifier/$VALUES +FD: net/minecraft/world/level/biome/BiomeSpecialEffects$GrassColorModifier/DARK_FOREST net/minecraft/world/level/biome/BiomeSpecialEffects$GrassColorModifier/DARK_FOREST +FD: net/minecraft/world/level/biome/BiomeSpecialEffects$GrassColorModifier/NONE net/minecraft/world/level/biome/BiomeSpecialEffects$GrassColorModifier/NONE +FD: net/minecraft/world/level/biome/BiomeSpecialEffects$GrassColorModifier/SWAMP net/minecraft/world/level/biome/BiomeSpecialEffects$GrassColorModifier/SWAMP +FD: net/minecraft/world/level/biome/BiomeSpecialEffects$GrassColorModifier/f_48050_ net/minecraft/world/level/biome/BiomeSpecialEffects$GrassColorModifier/CODEC +FD: net/minecraft/world/level/biome/BiomeSpecialEffects$GrassColorModifier/f_48051_ net/minecraft/world/level/biome/BiomeSpecialEffects$GrassColorModifier/name +FD: net/minecraft/world/level/biome/Biomes/f_151784_ net/minecraft/world/level/biome/Biomes/DRIPSTONE_CAVES +FD: net/minecraft/world/level/biome/Biomes/f_151785_ net/minecraft/world/level/biome/Biomes/LUSH_CAVES +FD: net/minecraft/world/level/biome/Biomes/f_186753_ net/minecraft/world/level/biome/Biomes/WOODED_BADLANDS +FD: net/minecraft/world/level/biome/Biomes/f_186754_ net/minecraft/world/level/biome/Biomes/MEADOW +FD: net/minecraft/world/level/biome/Biomes/f_186755_ net/minecraft/world/level/biome/Biomes/GROVE +FD: net/minecraft/world/level/biome/Biomes/f_186756_ net/minecraft/world/level/biome/Biomes/SNOWY_SLOPES +FD: net/minecraft/world/level/biome/Biomes/f_186757_ net/minecraft/world/level/biome/Biomes/FROZEN_PEAKS +FD: net/minecraft/world/level/biome/Biomes/f_186758_ net/minecraft/world/level/biome/Biomes/JAGGED_PEAKS +FD: net/minecraft/world/level/biome/Biomes/f_186759_ net/minecraft/world/level/biome/Biomes/STONY_PEAKS +FD: net/minecraft/world/level/biome/Biomes/f_186760_ net/minecraft/world/level/biome/Biomes/STONY_SHORE +FD: net/minecraft/world/level/biome/Biomes/f_186761_ net/minecraft/world/level/biome/Biomes/SNOWY_PLAINS +FD: net/minecraft/world/level/biome/Biomes/f_186762_ net/minecraft/world/level/biome/Biomes/OLD_GROWTH_BIRCH_FOREST +FD: net/minecraft/world/level/biome/Biomes/f_186763_ net/minecraft/world/level/biome/Biomes/OLD_GROWTH_PINE_TAIGA +FD: net/minecraft/world/level/biome/Biomes/f_186764_ net/minecraft/world/level/biome/Biomes/OLD_GROWTH_SPRUCE_TAIGA +FD: net/minecraft/world/level/biome/Biomes/f_186765_ net/minecraft/world/level/biome/Biomes/WINDSWEPT_HILLS +FD: net/minecraft/world/level/biome/Biomes/f_186766_ net/minecraft/world/level/biome/Biomes/WINDSWEPT_GRAVELLY_HILLS +FD: net/minecraft/world/level/biome/Biomes/f_186767_ net/minecraft/world/level/biome/Biomes/WINDSWEPT_FOREST +FD: net/minecraft/world/level/biome/Biomes/f_186768_ net/minecraft/world/level/biome/Biomes/WINDSWEPT_SAVANNA +FD: net/minecraft/world/level/biome/Biomes/f_186769_ net/minecraft/world/level/biome/Biomes/SPARSE_JUNGLE +FD: net/minecraft/world/level/biome/Biomes/f_220594_ net/minecraft/world/level/biome/Biomes/DEEP_DARK +FD: net/minecraft/world/level/biome/Biomes/f_220595_ net/minecraft/world/level/biome/Biomes/MANGROVE_SWAMP +FD: net/minecraft/world/level/biome/Biomes/f_271432_ net/minecraft/world/level/biome/Biomes/CHERRY_GROVE +FD: net/minecraft/world/level/biome/Biomes/f_48148_ net/minecraft/world/level/biome/Biomes/SNOWY_BEACH +FD: net/minecraft/world/level/biome/Biomes/f_48149_ net/minecraft/world/level/biome/Biomes/BIRCH_FOREST +FD: net/minecraft/world/level/biome/Biomes/f_48151_ net/minecraft/world/level/biome/Biomes/DARK_FOREST +FD: net/minecraft/world/level/biome/Biomes/f_48152_ net/minecraft/world/level/biome/Biomes/SNOWY_TAIGA +FD: net/minecraft/world/level/biome/Biomes/f_48157_ net/minecraft/world/level/biome/Biomes/SAVANNA +FD: net/minecraft/world/level/biome/Biomes/f_48158_ net/minecraft/world/level/biome/Biomes/SAVANNA_PLATEAU +FD: net/minecraft/world/level/biome/Biomes/f_48159_ net/minecraft/world/level/biome/Biomes/BADLANDS +FD: net/minecraft/world/level/biome/Biomes/f_48162_ net/minecraft/world/level/biome/Biomes/SMALL_END_ISLANDS +FD: net/minecraft/world/level/biome/Biomes/f_48163_ net/minecraft/world/level/biome/Biomes/END_MIDLANDS +FD: net/minecraft/world/level/biome/Biomes/f_48164_ net/minecraft/world/level/biome/Biomes/END_HIGHLANDS +FD: net/minecraft/world/level/biome/Biomes/f_48165_ net/minecraft/world/level/biome/Biomes/END_BARRENS +FD: net/minecraft/world/level/biome/Biomes/f_48166_ net/minecraft/world/level/biome/Biomes/WARM_OCEAN +FD: net/minecraft/world/level/biome/Biomes/f_48167_ net/minecraft/world/level/biome/Biomes/LUKEWARM_OCEAN +FD: net/minecraft/world/level/biome/Biomes/f_48168_ net/minecraft/world/level/biome/Biomes/COLD_OCEAN +FD: net/minecraft/world/level/biome/Biomes/f_48170_ net/minecraft/world/level/biome/Biomes/DEEP_LUKEWARM_OCEAN +FD: net/minecraft/world/level/biome/Biomes/f_48171_ net/minecraft/world/level/biome/Biomes/DEEP_COLD_OCEAN +FD: net/minecraft/world/level/biome/Biomes/f_48172_ net/minecraft/world/level/biome/Biomes/DEEP_FROZEN_OCEAN +FD: net/minecraft/world/level/biome/Biomes/f_48173_ net/minecraft/world/level/biome/Biomes/THE_VOID +FD: net/minecraft/world/level/biome/Biomes/f_48174_ net/minecraft/world/level/biome/Biomes/OCEAN +FD: net/minecraft/world/level/biome/Biomes/f_48175_ net/minecraft/world/level/biome/Biomes/BASALT_DELTAS +FD: net/minecraft/world/level/biome/Biomes/f_48176_ net/minecraft/world/level/biome/Biomes/SUNFLOWER_PLAINS +FD: net/minecraft/world/level/biome/Biomes/f_48179_ net/minecraft/world/level/biome/Biomes/FLOWER_FOREST +FD: net/minecraft/world/level/biome/Biomes/f_48182_ net/minecraft/world/level/biome/Biomes/ICE_SPIKES +FD: net/minecraft/world/level/biome/Biomes/f_48194_ net/minecraft/world/level/biome/Biomes/ERODED_BADLANDS +FD: net/minecraft/world/level/biome/Biomes/f_48197_ net/minecraft/world/level/biome/Biomes/BAMBOO_JUNGLE +FD: net/minecraft/world/level/biome/Biomes/f_48199_ net/minecraft/world/level/biome/Biomes/SOUL_SAND_VALLEY +FD: net/minecraft/world/level/biome/Biomes/f_48200_ net/minecraft/world/level/biome/Biomes/CRIMSON_FOREST +FD: net/minecraft/world/level/biome/Biomes/f_48201_ net/minecraft/world/level/biome/Biomes/WARPED_FOREST +FD: net/minecraft/world/level/biome/Biomes/f_48202_ net/minecraft/world/level/biome/Biomes/PLAINS +FD: net/minecraft/world/level/biome/Biomes/f_48203_ net/minecraft/world/level/biome/Biomes/DESERT +FD: net/minecraft/world/level/biome/Biomes/f_48205_ net/minecraft/world/level/biome/Biomes/FOREST +FD: net/minecraft/world/level/biome/Biomes/f_48206_ net/minecraft/world/level/biome/Biomes/TAIGA +FD: net/minecraft/world/level/biome/Biomes/f_48207_ net/minecraft/world/level/biome/Biomes/SWAMP +FD: net/minecraft/world/level/biome/Biomes/f_48208_ net/minecraft/world/level/biome/Biomes/RIVER +FD: net/minecraft/world/level/biome/Biomes/f_48209_ net/minecraft/world/level/biome/Biomes/NETHER_WASTES +FD: net/minecraft/world/level/biome/Biomes/f_48210_ net/minecraft/world/level/biome/Biomes/THE_END +FD: net/minecraft/world/level/biome/Biomes/f_48211_ net/minecraft/world/level/biome/Biomes/FROZEN_OCEAN +FD: net/minecraft/world/level/biome/Biomes/f_48212_ net/minecraft/world/level/biome/Biomes/FROZEN_RIVER +FD: net/minecraft/world/level/biome/Biomes/f_48215_ net/minecraft/world/level/biome/Biomes/MUSHROOM_FIELDS +FD: net/minecraft/world/level/biome/Biomes/f_48217_ net/minecraft/world/level/biome/Biomes/BEACH +FD: net/minecraft/world/level/biome/Biomes/f_48222_ net/minecraft/world/level/biome/Biomes/JUNGLE +FD: net/minecraft/world/level/biome/Biomes/f_48225_ net/minecraft/world/level/biome/Biomes/DEEP_OCEAN +FD: net/minecraft/world/level/biome/CheckerboardColumnBiomeSource/f_48230_ net/minecraft/world/level/biome/CheckerboardColumnBiomeSource/CODEC +FD: net/minecraft/world/level/biome/CheckerboardColumnBiomeSource/f_48231_ net/minecraft/world/level/biome/CheckerboardColumnBiomeSource/allowedBiomes +FD: net/minecraft/world/level/biome/CheckerboardColumnBiomeSource/f_48232_ net/minecraft/world/level/biome/CheckerboardColumnBiomeSource/bitShift +FD: net/minecraft/world/level/biome/CheckerboardColumnBiomeSource/f_48233_ net/minecraft/world/level/biome/CheckerboardColumnBiomeSource/size +FD: net/minecraft/world/level/biome/Climate/f_186775_ net/minecraft/world/level/biome/Climate/PARAMETER_COUNT +FD: net/minecraft/world/level/biome/Climate/f_186776_ net/minecraft/world/level/biome/Climate/DEBUG_SLOW_BIOME_SEARCH +FD: net/minecraft/world/level/biome/Climate/f_186777_ net/minecraft/world/level/biome/Climate/QUANTIZATION_FACTOR +FD: net/minecraft/world/level/biome/Climate$Parameter/f_186812_ net/minecraft/world/level/biome/Climate$Parameter/CODEC +FD: net/minecraft/world/level/biome/Climate$Parameter/f_186813_ net/minecraft/world/level/biome/Climate$Parameter/min +FD: net/minecraft/world/level/biome/Climate$Parameter/f_186814_ net/minecraft/world/level/biome/Climate$Parameter/max +FD: net/minecraft/world/level/biome/Climate$ParameterList/f_186846_ net/minecraft/world/level/biome/Climate$ParameterList/values +FD: net/minecraft/world/level/biome/Climate$ParameterList/f_186847_ net/minecraft/world/level/biome/Climate$ParameterList/index +FD: net/minecraft/world/level/biome/Climate$ParameterPoint/f_186862_ net/minecraft/world/level/biome/Climate$ParameterPoint/CODEC +FD: net/minecraft/world/level/biome/Climate$ParameterPoint/f_186863_ net/minecraft/world/level/biome/Climate$ParameterPoint/temperature +FD: net/minecraft/world/level/biome/Climate$ParameterPoint/f_186864_ net/minecraft/world/level/biome/Climate$ParameterPoint/humidity +FD: net/minecraft/world/level/biome/Climate$ParameterPoint/f_186865_ net/minecraft/world/level/biome/Climate$ParameterPoint/continentalness +FD: net/minecraft/world/level/biome/Climate$ParameterPoint/f_186866_ net/minecraft/world/level/biome/Climate$ParameterPoint/erosion +FD: net/minecraft/world/level/biome/Climate$ParameterPoint/f_186867_ net/minecraft/world/level/biome/Climate$ParameterPoint/depth +FD: net/minecraft/world/level/biome/Climate$ParameterPoint/f_186868_ net/minecraft/world/level/biome/Climate$ParameterPoint/weirdness +FD: net/minecraft/world/level/biome/Climate$ParameterPoint/f_186869_ net/minecraft/world/level/biome/Climate$ParameterPoint/offset +FD: net/minecraft/world/level/biome/Climate$RTree/f_186909_ net/minecraft/world/level/biome/Climate$RTree/CHILDREN_PER_NODE +FD: net/minecraft/world/level/biome/Climate$RTree/f_186910_ net/minecraft/world/level/biome/Climate$RTree/root +FD: net/minecraft/world/level/biome/Climate$RTree/f_186911_ net/minecraft/world/level/biome/Climate$RTree/lastResult +FD: net/minecraft/world/level/biome/Climate$RTree$Leaf/f_186948_ net/minecraft/world/level/biome/Climate$RTree$Leaf/value +FD: net/minecraft/world/level/biome/Climate$RTree$Node/f_186956_ net/minecraft/world/level/biome/Climate$RTree$Node/parameterSpace +FD: net/minecraft/world/level/biome/Climate$RTree$SubTree/f_186965_ net/minecraft/world/level/biome/Climate$RTree$SubTree/children +FD: net/minecraft/world/level/biome/Climate$Sampler/f_207845_ net/minecraft/world/level/biome/Climate$Sampler/temperature +FD: net/minecraft/world/level/biome/Climate$Sampler/f_207846_ net/minecraft/world/level/biome/Climate$Sampler/humidity +FD: net/minecraft/world/level/biome/Climate$Sampler/f_207847_ net/minecraft/world/level/biome/Climate$Sampler/continentalness +FD: net/minecraft/world/level/biome/Climate$Sampler/f_207848_ net/minecraft/world/level/biome/Climate$Sampler/erosion +FD: net/minecraft/world/level/biome/Climate$Sampler/f_207849_ net/minecraft/world/level/biome/Climate$Sampler/depth +FD: net/minecraft/world/level/biome/Climate$Sampler/f_207850_ net/minecraft/world/level/biome/Climate$Sampler/weirdness +FD: net/minecraft/world/level/biome/Climate$Sampler/f_207851_ net/minecraft/world/level/biome/Climate$Sampler/spawnTarget +FD: net/minecraft/world/level/biome/Climate$SpawnFinder/f_186978_ net/minecraft/world/level/biome/Climate$SpawnFinder/result +FD: net/minecraft/world/level/biome/Climate$SpawnFinder$Result/f_186992_ net/minecraft/world/level/biome/Climate$SpawnFinder$Result/location +FD: net/minecraft/world/level/biome/Climate$SpawnFinder$Result/f_186993_ net/minecraft/world/level/biome/Climate$SpawnFinder$Result/fitness +FD: net/minecraft/world/level/biome/Climate$TargetPoint/f_187003_ net/minecraft/world/level/biome/Climate$TargetPoint/temperature +FD: net/minecraft/world/level/biome/Climate$TargetPoint/f_187004_ net/minecraft/world/level/biome/Climate$TargetPoint/humidity +FD: net/minecraft/world/level/biome/Climate$TargetPoint/f_187005_ net/minecraft/world/level/biome/Climate$TargetPoint/continentalness +FD: net/minecraft/world/level/biome/Climate$TargetPoint/f_187006_ net/minecraft/world/level/biome/Climate$TargetPoint/erosion +FD: net/minecraft/world/level/biome/Climate$TargetPoint/f_187007_ net/minecraft/world/level/biome/Climate$TargetPoint/depth +FD: net/minecraft/world/level/biome/Climate$TargetPoint/f_187008_ net/minecraft/world/level/biome/Climate$TargetPoint/weirdness +FD: net/minecraft/world/level/biome/FeatureSorter$1FeatureData/f_220610_ net/minecraft/world/level/biome/FeatureSorter$1FeatureData/featureIndex +FD: net/minecraft/world/level/biome/FeatureSorter$1FeatureData/f_220611_ net/minecraft/world/level/biome/FeatureSorter$1FeatureData/step +FD: net/minecraft/world/level/biome/FeatureSorter$1FeatureData/f_220612_ net/minecraft/world/level/biome/FeatureSorter$1FeatureData/feature +FD: net/minecraft/world/level/biome/FeatureSorter$StepFeatureData/f_220624_ net/minecraft/world/level/biome/FeatureSorter$StepFeatureData/features +FD: net/minecraft/world/level/biome/FeatureSorter$StepFeatureData/f_220625_ net/minecraft/world/level/biome/FeatureSorter$StepFeatureData/indexMapping +FD: net/minecraft/world/level/biome/FixedBiomeSource/f_48251_ net/minecraft/world/level/biome/FixedBiomeSource/CODEC +FD: net/minecraft/world/level/biome/FixedBiomeSource/f_48252_ net/minecraft/world/level/biome/FixedBiomeSource/biome +FD: net/minecraft/world/level/biome/MobSpawnSettings/f_151796_ net/minecraft/world/level/biome/MobSpawnSettings/EMPTY_MOB_LIST +FD: net/minecraft/world/level/biome/MobSpawnSettings/f_151797_ net/minecraft/world/level/biome/MobSpawnSettings/DEFAULT_CREATURE_SPAWN_PROBABILITY +FD: net/minecraft/world/level/biome/MobSpawnSettings/f_48325_ net/minecraft/world/level/biome/MobSpawnSettings/LOGGER +FD: net/minecraft/world/level/biome/MobSpawnSettings/f_48326_ net/minecraft/world/level/biome/MobSpawnSettings/EMPTY +FD: net/minecraft/world/level/biome/MobSpawnSettings/f_48327_ net/minecraft/world/level/biome/MobSpawnSettings/CODEC +FD: net/minecraft/world/level/biome/MobSpawnSettings/f_48328_ net/minecraft/world/level/biome/MobSpawnSettings/creatureGenerationProbability +FD: net/minecraft/world/level/biome/MobSpawnSettings/f_48329_ net/minecraft/world/level/biome/MobSpawnSettings/spawners +FD: net/minecraft/world/level/biome/MobSpawnSettings/f_48330_ net/minecraft/world/level/biome/MobSpawnSettings/mobSpawnCosts +FD: net/minecraft/world/level/biome/MobSpawnSettings$Builder/f_48362_ net/minecraft/world/level/biome/MobSpawnSettings$Builder/spawners +FD: net/minecraft/world/level/biome/MobSpawnSettings$Builder/f_48363_ net/minecraft/world/level/biome/MobSpawnSettings$Builder/mobSpawnCosts +FD: net/minecraft/world/level/biome/MobSpawnSettings$Builder/f_48364_ net/minecraft/world/level/biome/MobSpawnSettings$Builder/creatureGenerationProbability +FD: net/minecraft/world/level/biome/MobSpawnSettings$MobSpawnCost/f_48384_ net/minecraft/world/level/biome/MobSpawnSettings$MobSpawnCost/CODEC +FD: net/minecraft/world/level/biome/MobSpawnSettings$MobSpawnCost/f_48385_ net/minecraft/world/level/biome/MobSpawnSettings$MobSpawnCost/energyBudget +FD: net/minecraft/world/level/biome/MobSpawnSettings$MobSpawnCost/f_48386_ net/minecraft/world/level/biome/MobSpawnSettings$MobSpawnCost/charge +FD: net/minecraft/world/level/biome/MobSpawnSettings$SpawnerData/f_48403_ net/minecraft/world/level/biome/MobSpawnSettings$SpawnerData/CODEC +FD: net/minecraft/world/level/biome/MobSpawnSettings$SpawnerData/f_48404_ net/minecraft/world/level/biome/MobSpawnSettings$SpawnerData/type +FD: net/minecraft/world/level/biome/MobSpawnSettings$SpawnerData/f_48405_ net/minecraft/world/level/biome/MobSpawnSettings$SpawnerData/minCount +FD: net/minecraft/world/level/biome/MobSpawnSettings$SpawnerData/f_48406_ net/minecraft/world/level/biome/MobSpawnSettings$SpawnerData/maxCount +FD: net/minecraft/world/level/biome/MultiNoiseBiomeSource/f_273882_ net/minecraft/world/level/biome/MultiNoiseBiomeSource/ENTRY_CODEC +FD: net/minecraft/world/level/biome/MultiNoiseBiomeSource/f_273891_ net/minecraft/world/level/biome/MultiNoiseBiomeSource/PRESET_CODEC +FD: net/minecraft/world/level/biome/MultiNoiseBiomeSource/f_48424_ net/minecraft/world/level/biome/MultiNoiseBiomeSource/DIRECT_CODEC +FD: net/minecraft/world/level/biome/MultiNoiseBiomeSource/f_48425_ net/minecraft/world/level/biome/MultiNoiseBiomeSource/CODEC +FD: net/minecraft/world/level/biome/MultiNoiseBiomeSource/f_48435_ net/minecraft/world/level/biome/MultiNoiseBiomeSource/parameters +FD: net/minecraft/world/level/biome/MultiNoiseBiomeSourceParameterList/f_273815_ net/minecraft/world/level/biome/MultiNoiseBiomeSourceParameterList/parameters +FD: net/minecraft/world/level/biome/MultiNoiseBiomeSourceParameterList/f_273907_ net/minecraft/world/level/biome/MultiNoiseBiomeSourceParameterList/DIRECT_CODEC +FD: net/minecraft/world/level/biome/MultiNoiseBiomeSourceParameterList/f_273930_ net/minecraft/world/level/biome/MultiNoiseBiomeSourceParameterList/CODEC +FD: net/minecraft/world/level/biome/MultiNoiseBiomeSourceParameterList/f_273943_ net/minecraft/world/level/biome/MultiNoiseBiomeSourceParameterList/preset +FD: net/minecraft/world/level/biome/MultiNoiseBiomeSourceParameterList$Preset/f_273825_ net/minecraft/world/level/biome/MultiNoiseBiomeSourceParameterList$Preset/CODEC +FD: net/minecraft/world/level/biome/MultiNoiseBiomeSourceParameterList$Preset/f_273838_ net/minecraft/world/level/biome/MultiNoiseBiomeSourceParameterList$Preset/NETHER +FD: net/minecraft/world/level/biome/MultiNoiseBiomeSourceParameterList$Preset/f_273865_ net/minecraft/world/level/biome/MultiNoiseBiomeSourceParameterList$Preset/provider +FD: net/minecraft/world/level/biome/MultiNoiseBiomeSourceParameterList$Preset/f_273915_ net/minecraft/world/level/biome/MultiNoiseBiomeSourceParameterList$Preset/OVERWORLD +FD: net/minecraft/world/level/biome/MultiNoiseBiomeSourceParameterList$Preset/f_273938_ net/minecraft/world/level/biome/MultiNoiseBiomeSourceParameterList$Preset/BY_NAME +FD: net/minecraft/world/level/biome/MultiNoiseBiomeSourceParameterList$Preset/f_273944_ net/minecraft/world/level/biome/MultiNoiseBiomeSourceParameterList$Preset/id +FD: net/minecraft/world/level/biome/MultiNoiseBiomeSourceParameterLists/f_273830_ net/minecraft/world/level/biome/MultiNoiseBiomeSourceParameterLists/NETHER +FD: net/minecraft/world/level/biome/MultiNoiseBiomeSourceParameterLists/f_273878_ net/minecraft/world/level/biome/MultiNoiseBiomeSourceParameterLists/OVERWORLD +FD: net/minecraft/world/level/biome/OverworldBiomeBuilder/f_187121_ net/minecraft/world/level/biome/OverworldBiomeBuilder/OCEANS +FD: net/minecraft/world/level/biome/OverworldBiomeBuilder/f_187122_ net/minecraft/world/level/biome/OverworldBiomeBuilder/MIDDLE_BIOMES +FD: net/minecraft/world/level/biome/OverworldBiomeBuilder/f_187123_ net/minecraft/world/level/biome/OverworldBiomeBuilder/MIDDLE_BIOMES_VARIANT +FD: net/minecraft/world/level/biome/OverworldBiomeBuilder/f_187124_ net/minecraft/world/level/biome/OverworldBiomeBuilder/PLATEAU_BIOMES +FD: net/minecraft/world/level/biome/OverworldBiomeBuilder/f_187125_ net/minecraft/world/level/biome/OverworldBiomeBuilder/PLATEAU_BIOMES_VARIANT +FD: net/minecraft/world/level/biome/OverworldBiomeBuilder/f_187127_ net/minecraft/world/level/biome/OverworldBiomeBuilder/HIGH_START +FD: net/minecraft/world/level/biome/OverworldBiomeBuilder/f_187128_ net/minecraft/world/level/biome/OverworldBiomeBuilder/PEAK_START +FD: net/minecraft/world/level/biome/OverworldBiomeBuilder/f_187129_ net/minecraft/world/level/biome/OverworldBiomeBuilder/NEAR_INLAND_START +FD: net/minecraft/world/level/biome/OverworldBiomeBuilder/f_187130_ net/minecraft/world/level/biome/OverworldBiomeBuilder/MID_INLAND_START +FD: net/minecraft/world/level/biome/OverworldBiomeBuilder/f_187131_ net/minecraft/world/level/biome/OverworldBiomeBuilder/FAR_INLAND_START +FD: net/minecraft/world/level/biome/OverworldBiomeBuilder/f_187132_ net/minecraft/world/level/biome/OverworldBiomeBuilder/EROSION_INDEX_1_START +FD: net/minecraft/world/level/biome/OverworldBiomeBuilder/f_187133_ net/minecraft/world/level/biome/OverworldBiomeBuilder/EROSION_INDEX_2_START +FD: net/minecraft/world/level/biome/OverworldBiomeBuilder/f_187134_ net/minecraft/world/level/biome/OverworldBiomeBuilder/VALLEY_SIZE +FD: net/minecraft/world/level/biome/OverworldBiomeBuilder/f_187135_ net/minecraft/world/level/biome/OverworldBiomeBuilder/LOW_START +FD: net/minecraft/world/level/biome/OverworldBiomeBuilder/f_187136_ net/minecraft/world/level/biome/OverworldBiomeBuilder/HIGH_END +FD: net/minecraft/world/level/biome/OverworldBiomeBuilder/f_187137_ net/minecraft/world/level/biome/OverworldBiomeBuilder/PEAK_SIZE +FD: net/minecraft/world/level/biome/OverworldBiomeBuilder/f_187138_ net/minecraft/world/level/biome/OverworldBiomeBuilder/PEAK_END +FD: net/minecraft/world/level/biome/OverworldBiomeBuilder/f_187139_ net/minecraft/world/level/biome/OverworldBiomeBuilder/FULL_RANGE +FD: net/minecraft/world/level/biome/OverworldBiomeBuilder/f_187140_ net/minecraft/world/level/biome/OverworldBiomeBuilder/temperatures +FD: net/minecraft/world/level/biome/OverworldBiomeBuilder/f_187141_ net/minecraft/world/level/biome/OverworldBiomeBuilder/humidities +FD: net/minecraft/world/level/biome/OverworldBiomeBuilder/f_187142_ net/minecraft/world/level/biome/OverworldBiomeBuilder/erosions +FD: net/minecraft/world/level/biome/OverworldBiomeBuilder/f_187143_ net/minecraft/world/level/biome/OverworldBiomeBuilder/FROZEN_RANGE +FD: net/minecraft/world/level/biome/OverworldBiomeBuilder/f_187144_ net/minecraft/world/level/biome/OverworldBiomeBuilder/UNFROZEN_RANGE +FD: net/minecraft/world/level/biome/OverworldBiomeBuilder/f_187145_ net/minecraft/world/level/biome/OverworldBiomeBuilder/mushroomFieldsContinentalness +FD: net/minecraft/world/level/biome/OverworldBiomeBuilder/f_187146_ net/minecraft/world/level/biome/OverworldBiomeBuilder/deepOceanContinentalness +FD: net/minecraft/world/level/biome/OverworldBiomeBuilder/f_187147_ net/minecraft/world/level/biome/OverworldBiomeBuilder/oceanContinentalness +FD: net/minecraft/world/level/biome/OverworldBiomeBuilder/f_187148_ net/minecraft/world/level/biome/OverworldBiomeBuilder/coastContinentalness +FD: net/minecraft/world/level/biome/OverworldBiomeBuilder/f_187149_ net/minecraft/world/level/biome/OverworldBiomeBuilder/inlandContinentalness +FD: net/minecraft/world/level/biome/OverworldBiomeBuilder/f_187150_ net/minecraft/world/level/biome/OverworldBiomeBuilder/nearInlandContinentalness +FD: net/minecraft/world/level/biome/OverworldBiomeBuilder/f_187151_ net/minecraft/world/level/biome/OverworldBiomeBuilder/midInlandContinentalness +FD: net/minecraft/world/level/biome/OverworldBiomeBuilder/f_187152_ net/minecraft/world/level/biome/OverworldBiomeBuilder/farInlandContinentalness +FD: net/minecraft/world/level/biome/OverworldBiomeBuilder/f_201989_ net/minecraft/world/level/biome/OverworldBiomeBuilder/SHATTERED_BIOMES +FD: net/minecraft/world/level/biome/OverworldBiomeBuilder/f_220663_ net/minecraft/world/level/biome/OverworldBiomeBuilder/EROSION_DEEP_DARK_DRYNESS_THRESHOLD +FD: net/minecraft/world/level/biome/OverworldBiomeBuilder/f_220664_ net/minecraft/world/level/biome/OverworldBiomeBuilder/DEPTH_DEEP_DARK_DRYNESS_THRESHOLD +FD: net/minecraft/world/level/biome/TheEndBiomeSource/f_48617_ net/minecraft/world/level/biome/TheEndBiomeSource/CODEC +FD: net/minecraft/world/level/biome/TheEndBiomeSource/f_48621_ net/minecraft/world/level/biome/TheEndBiomeSource/end +FD: net/minecraft/world/level/biome/TheEndBiomeSource/f_48622_ net/minecraft/world/level/biome/TheEndBiomeSource/highlands +FD: net/minecraft/world/level/biome/TheEndBiomeSource/f_48623_ net/minecraft/world/level/biome/TheEndBiomeSource/midlands +FD: net/minecraft/world/level/biome/TheEndBiomeSource/f_48624_ net/minecraft/world/level/biome/TheEndBiomeSource/islands +FD: net/minecraft/world/level/biome/TheEndBiomeSource/f_48625_ net/minecraft/world/level/biome/TheEndBiomeSource/barrens +FD: net/minecraft/world/level/block/AbstractBannerBlock/f_48657_ net/minecraft/world/level/block/AbstractBannerBlock/color +FD: net/minecraft/world/level/block/AbstractCandleBlock/f_151894_ net/minecraft/world/level/block/AbstractCandleBlock/LIGHT_PER_CANDLE +FD: net/minecraft/world/level/block/AbstractCandleBlock/f_151895_ net/minecraft/world/level/block/AbstractCandleBlock/LIT +FD: net/minecraft/world/level/block/AbstractCauldronBlock/f_151936_ net/minecraft/world/level/block/AbstractCauldronBlock/FLOOR_LEVEL +FD: net/minecraft/world/level/block/AbstractCauldronBlock/f_151937_ net/minecraft/world/level/block/AbstractCauldronBlock/SHAPE +FD: net/minecraft/world/level/block/AbstractCauldronBlock/f_151938_ net/minecraft/world/level/block/AbstractCauldronBlock/SIDE_THICKNESS +FD: net/minecraft/world/level/block/AbstractCauldronBlock/f_151939_ net/minecraft/world/level/block/AbstractCauldronBlock/LEG_WIDTH +FD: net/minecraft/world/level/block/AbstractCauldronBlock/f_151940_ net/minecraft/world/level/block/AbstractCauldronBlock/LEG_HEIGHT +FD: net/minecraft/world/level/block/AbstractCauldronBlock/f_151941_ net/minecraft/world/level/block/AbstractCauldronBlock/LEG_DEPTH +FD: net/minecraft/world/level/block/AbstractCauldronBlock/f_151942_ net/minecraft/world/level/block/AbstractCauldronBlock/INSIDE +FD: net/minecraft/world/level/block/AbstractCauldronBlock/f_151943_ net/minecraft/world/level/block/AbstractCauldronBlock/interactions +FD: net/minecraft/world/level/block/AbstractChestBlock/f_48675_ net/minecraft/world/level/block/AbstractChestBlock/blockEntityType +FD: net/minecraft/world/level/block/AbstractFurnaceBlock/f_48683_ net/minecraft/world/level/block/AbstractFurnaceBlock/FACING +FD: net/minecraft/world/level/block/AbstractFurnaceBlock/f_48684_ net/minecraft/world/level/block/AbstractFurnaceBlock/LIT +FD: net/minecraft/world/level/block/AbstractSkullBlock/f_48743_ net/minecraft/world/level/block/AbstractSkullBlock/type +FD: net/minecraft/world/level/block/AmethystClusterBlock/f_152005_ net/minecraft/world/level/block/AmethystClusterBlock/WATERLOGGED +FD: net/minecraft/world/level/block/AmethystClusterBlock/f_152006_ net/minecraft/world/level/block/AmethystClusterBlock/FACING +FD: net/minecraft/world/level/block/AmethystClusterBlock/f_152007_ net/minecraft/world/level/block/AmethystClusterBlock/northAabb +FD: net/minecraft/world/level/block/AmethystClusterBlock/f_152008_ net/minecraft/world/level/block/AmethystClusterBlock/southAabb +FD: net/minecraft/world/level/block/AmethystClusterBlock/f_152009_ net/minecraft/world/level/block/AmethystClusterBlock/eastAabb +FD: net/minecraft/world/level/block/AmethystClusterBlock/f_152010_ net/minecraft/world/level/block/AmethystClusterBlock/westAabb +FD: net/minecraft/world/level/block/AmethystClusterBlock/f_152011_ net/minecraft/world/level/block/AmethystClusterBlock/upAabb +FD: net/minecraft/world/level/block/AmethystClusterBlock/f_152012_ net/minecraft/world/level/block/AmethystClusterBlock/downAabb +FD: net/minecraft/world/level/block/AmethystClusterBlock$1/f_152048_ net/minecraft/world/level/block/AmethystClusterBlock$1/$SwitchMap$net$minecraft$core$Direction +FD: net/minecraft/world/level/block/AnvilBlock/f_152050_ net/minecraft/world/level/block/AnvilBlock/FALL_DAMAGE_PER_DISTANCE +FD: net/minecraft/world/level/block/AnvilBlock/f_152051_ net/minecraft/world/level/block/AnvilBlock/FALL_DAMAGE_MAX +FD: net/minecraft/world/level/block/AnvilBlock/f_48764_ net/minecraft/world/level/block/AnvilBlock/FACING +FD: net/minecraft/world/level/block/AnvilBlock/f_48765_ net/minecraft/world/level/block/AnvilBlock/BASE +FD: net/minecraft/world/level/block/AnvilBlock/f_48766_ net/minecraft/world/level/block/AnvilBlock/X_LEG1 +FD: net/minecraft/world/level/block/AnvilBlock/f_48767_ net/minecraft/world/level/block/AnvilBlock/X_LEG2 +FD: net/minecraft/world/level/block/AnvilBlock/f_48768_ net/minecraft/world/level/block/AnvilBlock/X_TOP +FD: net/minecraft/world/level/block/AnvilBlock/f_48769_ net/minecraft/world/level/block/AnvilBlock/Z_LEG1 +FD: net/minecraft/world/level/block/AnvilBlock/f_48770_ net/minecraft/world/level/block/AnvilBlock/Z_LEG2 +FD: net/minecraft/world/level/block/AnvilBlock/f_48771_ net/minecraft/world/level/block/AnvilBlock/Z_TOP +FD: net/minecraft/world/level/block/AnvilBlock/f_48772_ net/minecraft/world/level/block/AnvilBlock/X_AXIS_AABB +FD: net/minecraft/world/level/block/AnvilBlock/f_48773_ net/minecraft/world/level/block/AnvilBlock/Z_AXIS_AABB +FD: net/minecraft/world/level/block/AnvilBlock/f_48774_ net/minecraft/world/level/block/AnvilBlock/CONTAINER_TITLE +FD: net/minecraft/world/level/block/AttachedStemBlock/f_152057_ net/minecraft/world/level/block/AttachedStemBlock/AABB_OFFSET +FD: net/minecraft/world/level/block/AttachedStemBlock/f_152058_ net/minecraft/world/level/block/AttachedStemBlock/seedSupplier +FD: net/minecraft/world/level/block/AttachedStemBlock/f_48830_ net/minecraft/world/level/block/AttachedStemBlock/FACING +FD: net/minecraft/world/level/block/AttachedStemBlock/f_48831_ net/minecraft/world/level/block/AttachedStemBlock/fruit +FD: net/minecraft/world/level/block/AttachedStemBlock/f_48832_ net/minecraft/world/level/block/AttachedStemBlock/AABBS +FD: net/minecraft/world/level/block/AzaleaBlock/f_152063_ net/minecraft/world/level/block/AzaleaBlock/TREE_GROWER +FD: net/minecraft/world/level/block/AzaleaBlock/f_152064_ net/minecraft/world/level/block/AzaleaBlock/SHAPE +FD: net/minecraft/world/level/block/BambooSaplingBlock/f_152100_ net/minecraft/world/level/block/BambooSaplingBlock/SAPLING_AABB_OFFSET +FD: net/minecraft/world/level/block/BambooSaplingBlock/f_48954_ net/minecraft/world/level/block/BambooSaplingBlock/SAPLING_SHAPE +FD: net/minecraft/world/level/block/BambooStalkBlock/f_260434_ net/minecraft/world/level/block/BambooStalkBlock/SMALL_LEAVES_AABB_OFFSET +FD: net/minecraft/world/level/block/BambooStalkBlock/f_260479_ net/minecraft/world/level/block/BambooStalkBlock/SMALL_SHAPE +FD: net/minecraft/world/level/block/BambooStalkBlock/f_260493_ net/minecraft/world/level/block/BambooStalkBlock/LARGE_SHAPE +FD: net/minecraft/world/level/block/BambooStalkBlock/f_260497_ net/minecraft/world/level/block/BambooStalkBlock/AGE_THICK_BAMBOO +FD: net/minecraft/world/level/block/BambooStalkBlock/f_260505_ net/minecraft/world/level/block/BambooStalkBlock/COLLISION_SHAPE +FD: net/minecraft/world/level/block/BambooStalkBlock/f_260513_ net/minecraft/world/level/block/BambooStalkBlock/STAGE_DONE_GROWING +FD: net/minecraft/world/level/block/BambooStalkBlock/f_260569_ net/minecraft/world/level/block/BambooStalkBlock/AGE_THIN_BAMBOO +FD: net/minecraft/world/level/block/BambooStalkBlock/f_260603_ net/minecraft/world/level/block/BambooStalkBlock/AGE +FD: net/minecraft/world/level/block/BambooStalkBlock/f_260619_ net/minecraft/world/level/block/BambooStalkBlock/COLLISION_AABB_OFFSET +FD: net/minecraft/world/level/block/BambooStalkBlock/f_260621_ net/minecraft/world/level/block/BambooStalkBlock/STAGE_GROWING +FD: net/minecraft/world/level/block/BambooStalkBlock/f_260643_ net/minecraft/world/level/block/BambooStalkBlock/LARGE_LEAVES_AABB_OFFSET +FD: net/minecraft/world/level/block/BambooStalkBlock/f_260667_ net/minecraft/world/level/block/BambooStalkBlock/MAX_HEIGHT +FD: net/minecraft/world/level/block/BambooStalkBlock/f_260694_ net/minecraft/world/level/block/BambooStalkBlock/STAGE +FD: net/minecraft/world/level/block/BambooStalkBlock/f_260716_ net/minecraft/world/level/block/BambooStalkBlock/LEAVES +FD: net/minecraft/world/level/block/BannerBlock/f_49007_ net/minecraft/world/level/block/BannerBlock/ROTATION +FD: net/minecraft/world/level/block/BannerBlock/f_49008_ net/minecraft/world/level/block/BannerBlock/BY_COLOR +FD: net/minecraft/world/level/block/BannerBlock/f_49009_ net/minecraft/world/level/block/BannerBlock/SHAPE +FD: net/minecraft/world/level/block/BarrelBlock/f_49042_ net/minecraft/world/level/block/BarrelBlock/FACING +FD: net/minecraft/world/level/block/BarrelBlock/f_49043_ net/minecraft/world/level/block/BarrelBlock/OPEN +FD: net/minecraft/world/level/block/BaseCoralFanBlock/f_49103_ net/minecraft/world/level/block/BaseCoralFanBlock/AABB +FD: net/minecraft/world/level/block/BaseCoralPlantBlock/f_152104_ net/minecraft/world/level/block/BaseCoralPlantBlock/AABB_OFFSET +FD: net/minecraft/world/level/block/BaseCoralPlantBlock/f_49148_ net/minecraft/world/level/block/BaseCoralPlantBlock/SHAPE +FD: net/minecraft/world/level/block/BaseCoralPlantTypeBlock/f_49157_ net/minecraft/world/level/block/BaseCoralPlantTypeBlock/AABB +FD: net/minecraft/world/level/block/BaseCoralPlantTypeBlock/f_49158_ net/minecraft/world/level/block/BaseCoralPlantTypeBlock/WATERLOGGED +FD: net/minecraft/world/level/block/BaseCoralWallFanBlock/f_49192_ net/minecraft/world/level/block/BaseCoralWallFanBlock/FACING +FD: net/minecraft/world/level/block/BaseCoralWallFanBlock/f_49193_ net/minecraft/world/level/block/BaseCoralWallFanBlock/SHAPES +FD: net/minecraft/world/level/block/BaseFireBlock/f_152136_ net/minecraft/world/level/block/BaseFireBlock/AABB_OFFSET +FD: net/minecraft/world/level/block/BaseFireBlock/f_152137_ net/minecraft/world/level/block/BaseFireBlock/SECONDS_ON_FIRE +FD: net/minecraft/world/level/block/BaseFireBlock/f_49237_ net/minecraft/world/level/block/BaseFireBlock/DOWN_AABB +FD: net/minecraft/world/level/block/BaseFireBlock/f_49238_ net/minecraft/world/level/block/BaseFireBlock/fireDamage +FD: net/minecraft/world/level/block/BasePressurePlateBlock/f_271167_ net/minecraft/world/level/block/BasePressurePlateBlock/type +FD: net/minecraft/world/level/block/BasePressurePlateBlock/f_49285_ net/minecraft/world/level/block/BasePressurePlateBlock/PRESSED_AABB +FD: net/minecraft/world/level/block/BasePressurePlateBlock/f_49286_ net/minecraft/world/level/block/BasePressurePlateBlock/AABB +FD: net/minecraft/world/level/block/BasePressurePlateBlock/f_49287_ net/minecraft/world/level/block/BasePressurePlateBlock/TOUCH_AABB +FD: net/minecraft/world/level/block/BaseRailBlock/f_152149_ net/minecraft/world/level/block/BaseRailBlock/WATERLOGGED +FD: net/minecraft/world/level/block/BaseRailBlock/f_49355_ net/minecraft/world/level/block/BaseRailBlock/FLAT_AABB +FD: net/minecraft/world/level/block/BaseRailBlock/f_49356_ net/minecraft/world/level/block/BaseRailBlock/HALF_BLOCK_AABB +FD: net/minecraft/world/level/block/BaseRailBlock/f_49357_ net/minecraft/world/level/block/BaseRailBlock/isStraight +FD: net/minecraft/world/level/block/BaseRailBlock$1/f_49418_ net/minecraft/world/level/block/BaseRailBlock$1/$SwitchMap$net$minecraft$world$level$block$state$properties$RailShape +FD: net/minecraft/world/level/block/BedBlock/f_152166_ net/minecraft/world/level/block/BedBlock/HEIGHT +FD: net/minecraft/world/level/block/BedBlock/f_152167_ net/minecraft/world/level/block/BedBlock/LEG_WIDTH +FD: net/minecraft/world/level/block/BedBlock/f_49440_ net/minecraft/world/level/block/BedBlock/PART +FD: net/minecraft/world/level/block/BedBlock/f_49441_ net/minecraft/world/level/block/BedBlock/OCCUPIED +FD: net/minecraft/world/level/block/BedBlock/f_49442_ net/minecraft/world/level/block/BedBlock/BASE +FD: net/minecraft/world/level/block/BedBlock/f_49443_ net/minecraft/world/level/block/BedBlock/LEG_NORTH_WEST +FD: net/minecraft/world/level/block/BedBlock/f_49444_ net/minecraft/world/level/block/BedBlock/LEG_SOUTH_WEST +FD: net/minecraft/world/level/block/BedBlock/f_49445_ net/minecraft/world/level/block/BedBlock/LEG_NORTH_EAST +FD: net/minecraft/world/level/block/BedBlock/f_49446_ net/minecraft/world/level/block/BedBlock/LEG_SOUTH_EAST +FD: net/minecraft/world/level/block/BedBlock/f_49447_ net/minecraft/world/level/block/BedBlock/NORTH_SHAPE +FD: net/minecraft/world/level/block/BedBlock/f_49448_ net/minecraft/world/level/block/BedBlock/SOUTH_SHAPE +FD: net/minecraft/world/level/block/BedBlock/f_49449_ net/minecraft/world/level/block/BedBlock/WEST_SHAPE +FD: net/minecraft/world/level/block/BedBlock/f_49450_ net/minecraft/world/level/block/BedBlock/EAST_SHAPE +FD: net/minecraft/world/level/block/BedBlock/f_49451_ net/minecraft/world/level/block/BedBlock/color +FD: net/minecraft/world/level/block/BedBlock$1/f_49561_ net/minecraft/world/level/block/BedBlock$1/$SwitchMap$net$minecraft$core$Direction +FD: net/minecraft/world/level/block/BeehiveBlock/f_152177_ net/minecraft/world/level/block/BeehiveBlock/MAX_HONEY_LEVELS +FD: net/minecraft/world/level/block/BeehiveBlock/f_152178_ net/minecraft/world/level/block/BeehiveBlock/SHEARED_HONEYCOMB_COUNT +FD: net/minecraft/world/level/block/BeehiveBlock/f_49563_ net/minecraft/world/level/block/BeehiveBlock/FACING +FD: net/minecraft/world/level/block/BeehiveBlock/f_49564_ net/minecraft/world/level/block/BeehiveBlock/HONEY_LEVEL +FD: net/minecraft/world/level/block/BeetrootBlock/f_152186_ net/minecraft/world/level/block/BeetrootBlock/MAX_AGE +FD: net/minecraft/world/level/block/BeetrootBlock/f_49657_ net/minecraft/world/level/block/BeetrootBlock/AGE +FD: net/minecraft/world/level/block/BeetrootBlock/f_49658_ net/minecraft/world/level/block/BeetrootBlock/SHAPE_BY_AGE +FD: net/minecraft/world/level/block/BellBlock/f_152187_ net/minecraft/world/level/block/BellBlock/EVENT_BELL_RING +FD: net/minecraft/world/level/block/BellBlock/f_49679_ net/minecraft/world/level/block/BellBlock/FACING +FD: net/minecraft/world/level/block/BellBlock/f_49680_ net/minecraft/world/level/block/BellBlock/ATTACHMENT +FD: net/minecraft/world/level/block/BellBlock/f_49681_ net/minecraft/world/level/block/BellBlock/POWERED +FD: net/minecraft/world/level/block/BellBlock/f_49682_ net/minecraft/world/level/block/BellBlock/NORTH_SOUTH_FLOOR_SHAPE +FD: net/minecraft/world/level/block/BellBlock/f_49683_ net/minecraft/world/level/block/BellBlock/EAST_WEST_FLOOR_SHAPE +FD: net/minecraft/world/level/block/BellBlock/f_49684_ net/minecraft/world/level/block/BellBlock/BELL_TOP_SHAPE +FD: net/minecraft/world/level/block/BellBlock/f_49685_ net/minecraft/world/level/block/BellBlock/BELL_BOTTOM_SHAPE +FD: net/minecraft/world/level/block/BellBlock/f_49686_ net/minecraft/world/level/block/BellBlock/BELL_SHAPE +FD: net/minecraft/world/level/block/BellBlock/f_49687_ net/minecraft/world/level/block/BellBlock/NORTH_SOUTH_BETWEEN +FD: net/minecraft/world/level/block/BellBlock/f_49688_ net/minecraft/world/level/block/BellBlock/EAST_WEST_BETWEEN +FD: net/minecraft/world/level/block/BellBlock/f_49689_ net/minecraft/world/level/block/BellBlock/TO_WEST +FD: net/minecraft/world/level/block/BellBlock/f_49690_ net/minecraft/world/level/block/BellBlock/TO_EAST +FD: net/minecraft/world/level/block/BellBlock/f_49691_ net/minecraft/world/level/block/BellBlock/TO_NORTH +FD: net/minecraft/world/level/block/BellBlock/f_49692_ net/minecraft/world/level/block/BellBlock/TO_SOUTH +FD: net/minecraft/world/level/block/BellBlock/f_49693_ net/minecraft/world/level/block/BellBlock/CEILING_SHAPE +FD: net/minecraft/world/level/block/BellBlock$1/f_49770_ net/minecraft/world/level/block/BellBlock$1/$SwitchMap$net$minecraft$world$level$block$state$properties$BellAttachType +FD: net/minecraft/world/level/block/BigDripleafBlock/f_152200_ net/minecraft/world/level/block/BigDripleafBlock/WATERLOGGED +FD: net/minecraft/world/level/block/BigDripleafBlock/f_152201_ net/minecraft/world/level/block/BigDripleafBlock/TILT +FD: net/minecraft/world/level/block/BigDripleafBlock/f_152202_ net/minecraft/world/level/block/BigDripleafBlock/NO_TICK +FD: net/minecraft/world/level/block/BigDripleafBlock/f_152203_ net/minecraft/world/level/block/BigDripleafBlock/DELAY_UNTIL_NEXT_TILT_STATE +FD: net/minecraft/world/level/block/BigDripleafBlock/f_152204_ net/minecraft/world/level/block/BigDripleafBlock/MAX_GEN_HEIGHT +FD: net/minecraft/world/level/block/BigDripleafBlock/f_152205_ net/minecraft/world/level/block/BigDripleafBlock/STEM_WIDTH +FD: net/minecraft/world/level/block/BigDripleafBlock/f_152206_ net/minecraft/world/level/block/BigDripleafBlock/ENTITY_DETECTION_MIN_Y +FD: net/minecraft/world/level/block/BigDripleafBlock/f_152207_ net/minecraft/world/level/block/BigDripleafBlock/LOWEST_LEAF_TOP +FD: net/minecraft/world/level/block/BigDripleafBlock/f_152208_ net/minecraft/world/level/block/BigDripleafBlock/LEAF_SHAPES +FD: net/minecraft/world/level/block/BigDripleafBlock/f_152209_ net/minecraft/world/level/block/BigDripleafBlock/STEM_SLICER +FD: net/minecraft/world/level/block/BigDripleafBlock/f_152210_ net/minecraft/world/level/block/BigDripleafBlock/STEM_SHAPES +FD: net/minecraft/world/level/block/BigDripleafBlock/f_152211_ net/minecraft/world/level/block/BigDripleafBlock/shapesCache +FD: net/minecraft/world/level/block/BigDripleafStemBlock/f_152321_ net/minecraft/world/level/block/BigDripleafStemBlock/NORTH_SHAPE +FD: net/minecraft/world/level/block/BigDripleafStemBlock/f_152322_ net/minecraft/world/level/block/BigDripleafStemBlock/SOUTH_SHAPE +FD: net/minecraft/world/level/block/BigDripleafStemBlock/f_152323_ net/minecraft/world/level/block/BigDripleafStemBlock/EAST_SHAPE +FD: net/minecraft/world/level/block/BigDripleafStemBlock/f_152324_ net/minecraft/world/level/block/BigDripleafStemBlock/WEST_SHAPE +FD: net/minecraft/world/level/block/BigDripleafStemBlock/f_152325_ net/minecraft/world/level/block/BigDripleafStemBlock/WATERLOGGED +FD: net/minecraft/world/level/block/BigDripleafStemBlock/f_152326_ net/minecraft/world/level/block/BigDripleafStemBlock/STEM_WIDTH +FD: net/minecraft/world/level/block/BigDripleafStemBlock$1/f_152379_ net/minecraft/world/level/block/BigDripleafStemBlock$1/$SwitchMap$net$minecraft$core$Direction +FD: net/minecraft/world/level/block/Block/f_152388_ net/minecraft/world/level/block/Block/UPDATE_ALL_IMMEDIATE +FD: net/minecraft/world/level/block/Block/f_152389_ net/minecraft/world/level/block/Block/INDESTRUCTIBLE +FD: net/minecraft/world/level/block/Block/f_152390_ net/minecraft/world/level/block/Block/INSTANT +FD: net/minecraft/world/level/block/Block/f_152391_ net/minecraft/world/level/block/Block/UPDATE_LIMIT +FD: net/minecraft/world/level/block/Block/f_152392_ net/minecraft/world/level/block/Block/CACHE_SIZE +FD: net/minecraft/world/level/block/Block/f_152393_ net/minecraft/world/level/block/Block/UPDATE_NEIGHBORS +FD: net/minecraft/world/level/block/Block/f_152394_ net/minecraft/world/level/block/Block/UPDATE_CLIENTS +FD: net/minecraft/world/level/block/Block/f_152395_ net/minecraft/world/level/block/Block/UPDATE_INVISIBLE +FD: net/minecraft/world/level/block/Block/f_152396_ net/minecraft/world/level/block/Block/UPDATE_IMMEDIATE +FD: net/minecraft/world/level/block/Block/f_152397_ net/minecraft/world/level/block/Block/UPDATE_KNOWN_SHAPE +FD: net/minecraft/world/level/block/Block/f_152398_ net/minecraft/world/level/block/Block/UPDATE_SUPPRESS_DROPS +FD: net/minecraft/world/level/block/Block/f_152399_ net/minecraft/world/level/block/Block/UPDATE_MOVE_BY_PISTON +FD: net/minecraft/world/level/block/Block/f_152401_ net/minecraft/world/level/block/Block/UPDATE_NONE +FD: net/minecraft/world/level/block/Block/f_152402_ net/minecraft/world/level/block/Block/UPDATE_ALL +FD: net/minecraft/world/level/block/Block/f_204296_ net/minecraft/world/level/block/Block/builtInRegistryHolder +FD: net/minecraft/world/level/block/Block/f_49785_ net/minecraft/world/level/block/Block/SHAPE_FULL_BLOCK_CACHE +FD: net/minecraft/world/level/block/Block/f_49786_ net/minecraft/world/level/block/Block/defaultBlockState +FD: net/minecraft/world/level/block/Block/f_49787_ net/minecraft/world/level/block/Block/descriptionId +FD: net/minecraft/world/level/block/Block/f_49788_ net/minecraft/world/level/block/Block/item +FD: net/minecraft/world/level/block/Block/f_49789_ net/minecraft/world/level/block/Block/OCCLUSION_CACHE +FD: net/minecraft/world/level/block/Block/f_49790_ net/minecraft/world/level/block/Block/LOGGER +FD: net/minecraft/world/level/block/Block/f_49791_ net/minecraft/world/level/block/Block/BLOCK_STATE_REGISTRY +FD: net/minecraft/world/level/block/Block/f_49792_ net/minecraft/world/level/block/Block/stateDefinition +FD: net/minecraft/world/level/block/Block$BlockStatePairKey/f_49980_ net/minecraft/world/level/block/Block$BlockStatePairKey/first +FD: net/minecraft/world/level/block/Block$BlockStatePairKey/f_49981_ net/minecraft/world/level/block/Block$BlockStatePairKey/second +FD: net/minecraft/world/level/block/Block$BlockStatePairKey/f_49982_ net/minecraft/world/level/block/Block$BlockStatePairKey/direction +FD: net/minecraft/world/level/block/Blocks/f_152467_ net/minecraft/world/level/block/Blocks/DEEPSLATE_GOLD_ORE +FD: net/minecraft/world/level/block/Blocks/f_152468_ net/minecraft/world/level/block/Blocks/DEEPSLATE_IRON_ORE +FD: net/minecraft/world/level/block/Blocks/f_152469_ net/minecraft/world/level/block/Blocks/DEEPSLATE_COAL_ORE +FD: net/minecraft/world/level/block/Blocks/f_152470_ net/minecraft/world/level/block/Blocks/AZALEA_LEAVES +FD: net/minecraft/world/level/block/Blocks/f_152471_ net/minecraft/world/level/block/Blocks/FLOWERING_AZALEA_LEAVES +FD: net/minecraft/world/level/block/Blocks/f_152472_ net/minecraft/world/level/block/Blocks/DEEPSLATE_LAPIS_ORE +FD: net/minecraft/world/level/block/Blocks/f_152473_ net/minecraft/world/level/block/Blocks/DEEPSLATE_REDSTONE_ORE +FD: net/minecraft/world/level/block/Blocks/f_152474_ net/minecraft/world/level/block/Blocks/DEEPSLATE_DIAMOND_ORE +FD: net/minecraft/world/level/block/Blocks/f_152475_ net/minecraft/world/level/block/Blocks/GLOW_LICHEN +FD: net/minecraft/world/level/block/Blocks/f_152476_ net/minecraft/world/level/block/Blocks/WATER_CAULDRON +FD: net/minecraft/world/level/block/Blocks/f_152477_ net/minecraft/world/level/block/Blocks/LAVA_CAULDRON +FD: net/minecraft/world/level/block/Blocks/f_152478_ net/minecraft/world/level/block/Blocks/POWDER_SNOW_CAULDRON +FD: net/minecraft/world/level/block/Blocks/f_152479_ net/minecraft/world/level/block/Blocks/DEEPSLATE_EMERALD_ORE +FD: net/minecraft/world/level/block/Blocks/f_152480_ net/minecraft/world/level/block/Blocks/LIGHT +FD: net/minecraft/world/level/block/Blocks/f_152481_ net/minecraft/world/level/block/Blocks/DIRT_PATH +FD: net/minecraft/world/level/block/Blocks/f_152482_ net/minecraft/world/level/block/Blocks/CANDLE +FD: net/minecraft/world/level/block/Blocks/f_152483_ net/minecraft/world/level/block/Blocks/WHITE_CANDLE +FD: net/minecraft/world/level/block/Blocks/f_152484_ net/minecraft/world/level/block/Blocks/ORANGE_CANDLE +FD: net/minecraft/world/level/block/Blocks/f_152485_ net/minecraft/world/level/block/Blocks/BLUE_CANDLE_CAKE +FD: net/minecraft/world/level/block/Blocks/f_152486_ net/minecraft/world/level/block/Blocks/BROWN_CANDLE_CAKE +FD: net/minecraft/world/level/block/Blocks/f_152487_ net/minecraft/world/level/block/Blocks/GREEN_CANDLE_CAKE +FD: net/minecraft/world/level/block/Blocks/f_152488_ net/minecraft/world/level/block/Blocks/RED_CANDLE_CAKE +FD: net/minecraft/world/level/block/Blocks/f_152489_ net/minecraft/world/level/block/Blocks/BLACK_CANDLE_CAKE +FD: net/minecraft/world/level/block/Blocks/f_152490_ net/minecraft/world/level/block/Blocks/AMETHYST_BLOCK +FD: net/minecraft/world/level/block/Blocks/f_152491_ net/minecraft/world/level/block/Blocks/BUDDING_AMETHYST +FD: net/minecraft/world/level/block/Blocks/f_152492_ net/minecraft/world/level/block/Blocks/AMETHYST_CLUSTER +FD: net/minecraft/world/level/block/Blocks/f_152493_ net/minecraft/world/level/block/Blocks/LARGE_AMETHYST_BUD +FD: net/minecraft/world/level/block/Blocks/f_152494_ net/minecraft/world/level/block/Blocks/MEDIUM_AMETHYST_BUD +FD: net/minecraft/world/level/block/Blocks/f_152495_ net/minecraft/world/level/block/Blocks/SMALL_AMETHYST_BUD +FD: net/minecraft/world/level/block/Blocks/f_152496_ net/minecraft/world/level/block/Blocks/TUFF +FD: net/minecraft/world/level/block/Blocks/f_152497_ net/minecraft/world/level/block/Blocks/CALCITE +FD: net/minecraft/world/level/block/Blocks/f_152498_ net/minecraft/world/level/block/Blocks/TINTED_GLASS +FD: net/minecraft/world/level/block/Blocks/f_152499_ net/minecraft/world/level/block/Blocks/POWDER_SNOW +FD: net/minecraft/world/level/block/Blocks/f_152500_ net/minecraft/world/level/block/Blocks/SCULK_SENSOR +FD: net/minecraft/world/level/block/Blocks/f_152501_ net/minecraft/world/level/block/Blocks/OXIDIZED_COPPER +FD: net/minecraft/world/level/block/Blocks/f_152502_ net/minecraft/world/level/block/Blocks/WEATHERED_COPPER +FD: net/minecraft/world/level/block/Blocks/f_152503_ net/minecraft/world/level/block/Blocks/EXPOSED_COPPER +FD: net/minecraft/world/level/block/Blocks/f_152504_ net/minecraft/world/level/block/Blocks/COPPER_BLOCK +FD: net/minecraft/world/level/block/Blocks/f_152505_ net/minecraft/world/level/block/Blocks/COPPER_ORE +FD: net/minecraft/world/level/block/Blocks/f_152506_ net/minecraft/world/level/block/Blocks/DEEPSLATE_COPPER_ORE +FD: net/minecraft/world/level/block/Blocks/f_152507_ net/minecraft/world/level/block/Blocks/OXIDIZED_CUT_COPPER +FD: net/minecraft/world/level/block/Blocks/f_152508_ net/minecraft/world/level/block/Blocks/WEATHERED_CUT_COPPER +FD: net/minecraft/world/level/block/Blocks/f_152509_ net/minecraft/world/level/block/Blocks/EXPOSED_CUT_COPPER +FD: net/minecraft/world/level/block/Blocks/f_152510_ net/minecraft/world/level/block/Blocks/CUT_COPPER +FD: net/minecraft/world/level/block/Blocks/f_152511_ net/minecraft/world/level/block/Blocks/MAGENTA_CANDLE +FD: net/minecraft/world/level/block/Blocks/f_152512_ net/minecraft/world/level/block/Blocks/LIGHT_BLUE_CANDLE +FD: net/minecraft/world/level/block/Blocks/f_152513_ net/minecraft/world/level/block/Blocks/YELLOW_CANDLE +FD: net/minecraft/world/level/block/Blocks/f_152514_ net/minecraft/world/level/block/Blocks/LIME_CANDLE +FD: net/minecraft/world/level/block/Blocks/f_152515_ net/minecraft/world/level/block/Blocks/PINK_CANDLE +FD: net/minecraft/world/level/block/Blocks/f_152516_ net/minecraft/world/level/block/Blocks/GRAY_CANDLE +FD: net/minecraft/world/level/block/Blocks/f_152517_ net/minecraft/world/level/block/Blocks/LIGHT_GRAY_CANDLE +FD: net/minecraft/world/level/block/Blocks/f_152518_ net/minecraft/world/level/block/Blocks/CYAN_CANDLE +FD: net/minecraft/world/level/block/Blocks/f_152519_ net/minecraft/world/level/block/Blocks/PURPLE_CANDLE +FD: net/minecraft/world/level/block/Blocks/f_152520_ net/minecraft/world/level/block/Blocks/BLUE_CANDLE +FD: net/minecraft/world/level/block/Blocks/f_152521_ net/minecraft/world/level/block/Blocks/BROWN_CANDLE +FD: net/minecraft/world/level/block/Blocks/f_152522_ net/minecraft/world/level/block/Blocks/GREEN_CANDLE +FD: net/minecraft/world/level/block/Blocks/f_152523_ net/minecraft/world/level/block/Blocks/RED_CANDLE +FD: net/minecraft/world/level/block/Blocks/f_152524_ net/minecraft/world/level/block/Blocks/BLACK_CANDLE +FD: net/minecraft/world/level/block/Blocks/f_152525_ net/minecraft/world/level/block/Blocks/CANDLE_CAKE +FD: net/minecraft/world/level/block/Blocks/f_152526_ net/minecraft/world/level/block/Blocks/WHITE_CANDLE_CAKE +FD: net/minecraft/world/level/block/Blocks/f_152527_ net/minecraft/world/level/block/Blocks/ORANGE_CANDLE_CAKE +FD: net/minecraft/world/level/block/Blocks/f_152528_ net/minecraft/world/level/block/Blocks/MAGENTA_CANDLE_CAKE +FD: net/minecraft/world/level/block/Blocks/f_152529_ net/minecraft/world/level/block/Blocks/LIGHT_BLUE_CANDLE_CAKE +FD: net/minecraft/world/level/block/Blocks/f_152530_ net/minecraft/world/level/block/Blocks/YELLOW_CANDLE_CAKE +FD: net/minecraft/world/level/block/Blocks/f_152531_ net/minecraft/world/level/block/Blocks/LIME_CANDLE_CAKE +FD: net/minecraft/world/level/block/Blocks/f_152532_ net/minecraft/world/level/block/Blocks/PINK_CANDLE_CAKE +FD: net/minecraft/world/level/block/Blocks/f_152533_ net/minecraft/world/level/block/Blocks/GRAY_CANDLE_CAKE +FD: net/minecraft/world/level/block/Blocks/f_152534_ net/minecraft/world/level/block/Blocks/LIGHT_GRAY_CANDLE_CAKE +FD: net/minecraft/world/level/block/Blocks/f_152535_ net/minecraft/world/level/block/Blocks/CYAN_CANDLE_CAKE +FD: net/minecraft/world/level/block/Blocks/f_152536_ net/minecraft/world/level/block/Blocks/PURPLE_CANDLE_CAKE +FD: net/minecraft/world/level/block/Blocks/f_152537_ net/minecraft/world/level/block/Blocks/DRIPSTONE_BLOCK +FD: net/minecraft/world/level/block/Blocks/f_152538_ net/minecraft/world/level/block/Blocks/CAVE_VINES +FD: net/minecraft/world/level/block/Blocks/f_152539_ net/minecraft/world/level/block/Blocks/CAVE_VINES_PLANT +FD: net/minecraft/world/level/block/Blocks/f_152540_ net/minecraft/world/level/block/Blocks/SPORE_BLOSSOM +FD: net/minecraft/world/level/block/Blocks/f_152541_ net/minecraft/world/level/block/Blocks/AZALEA +FD: net/minecraft/world/level/block/Blocks/f_152542_ net/minecraft/world/level/block/Blocks/FLOWERING_AZALEA +FD: net/minecraft/world/level/block/Blocks/f_152543_ net/minecraft/world/level/block/Blocks/MOSS_CARPET +FD: net/minecraft/world/level/block/Blocks/f_152544_ net/minecraft/world/level/block/Blocks/MOSS_BLOCK +FD: net/minecraft/world/level/block/Blocks/f_152545_ net/minecraft/world/level/block/Blocks/BIG_DRIPLEAF +FD: net/minecraft/world/level/block/Blocks/f_152546_ net/minecraft/world/level/block/Blocks/BIG_DRIPLEAF_STEM +FD: net/minecraft/world/level/block/Blocks/f_152547_ net/minecraft/world/level/block/Blocks/SMALL_DRIPLEAF +FD: net/minecraft/world/level/block/Blocks/f_152548_ net/minecraft/world/level/block/Blocks/HANGING_ROOTS +FD: net/minecraft/world/level/block/Blocks/f_152549_ net/minecraft/world/level/block/Blocks/ROOTED_DIRT +FD: net/minecraft/world/level/block/Blocks/f_152550_ net/minecraft/world/level/block/Blocks/DEEPSLATE +FD: net/minecraft/world/level/block/Blocks/f_152551_ net/minecraft/world/level/block/Blocks/COBBLED_DEEPSLATE +FD: net/minecraft/world/level/block/Blocks/f_152552_ net/minecraft/world/level/block/Blocks/COBBLED_DEEPSLATE_STAIRS +FD: net/minecraft/world/level/block/Blocks/f_152553_ net/minecraft/world/level/block/Blocks/COBBLED_DEEPSLATE_SLAB +FD: net/minecraft/world/level/block/Blocks/f_152554_ net/minecraft/world/level/block/Blocks/COBBLED_DEEPSLATE_WALL +FD: net/minecraft/world/level/block/Blocks/f_152555_ net/minecraft/world/level/block/Blocks/POLISHED_DEEPSLATE +FD: net/minecraft/world/level/block/Blocks/f_152556_ net/minecraft/world/level/block/Blocks/POLISHED_DEEPSLATE_STAIRS +FD: net/minecraft/world/level/block/Blocks/f_152557_ net/minecraft/world/level/block/Blocks/POLISHED_DEEPSLATE_SLAB +FD: net/minecraft/world/level/block/Blocks/f_152558_ net/minecraft/world/level/block/Blocks/POLISHED_DEEPSLATE_WALL +FD: net/minecraft/world/level/block/Blocks/f_152559_ net/minecraft/world/level/block/Blocks/DEEPSLATE_TILES +FD: net/minecraft/world/level/block/Blocks/f_152560_ net/minecraft/world/level/block/Blocks/DEEPSLATE_TILE_STAIRS +FD: net/minecraft/world/level/block/Blocks/f_152561_ net/minecraft/world/level/block/Blocks/DEEPSLATE_TILE_SLAB +FD: net/minecraft/world/level/block/Blocks/f_152562_ net/minecraft/world/level/block/Blocks/DEEPSLATE_TILE_WALL +FD: net/minecraft/world/level/block/Blocks/f_152563_ net/minecraft/world/level/block/Blocks/OXIDIZED_CUT_COPPER_STAIRS +FD: net/minecraft/world/level/block/Blocks/f_152564_ net/minecraft/world/level/block/Blocks/WEATHERED_CUT_COPPER_STAIRS +FD: net/minecraft/world/level/block/Blocks/f_152565_ net/minecraft/world/level/block/Blocks/EXPOSED_CUT_COPPER_STAIRS +FD: net/minecraft/world/level/block/Blocks/f_152566_ net/minecraft/world/level/block/Blocks/CUT_COPPER_STAIRS +FD: net/minecraft/world/level/block/Blocks/f_152567_ net/minecraft/world/level/block/Blocks/OXIDIZED_CUT_COPPER_SLAB +FD: net/minecraft/world/level/block/Blocks/f_152568_ net/minecraft/world/level/block/Blocks/WEATHERED_CUT_COPPER_SLAB +FD: net/minecraft/world/level/block/Blocks/f_152569_ net/minecraft/world/level/block/Blocks/EXPOSED_CUT_COPPER_SLAB +FD: net/minecraft/world/level/block/Blocks/f_152570_ net/minecraft/world/level/block/Blocks/CUT_COPPER_SLAB +FD: net/minecraft/world/level/block/Blocks/f_152571_ net/minecraft/world/level/block/Blocks/WAXED_COPPER_BLOCK +FD: net/minecraft/world/level/block/Blocks/f_152572_ net/minecraft/world/level/block/Blocks/WAXED_WEATHERED_COPPER +FD: net/minecraft/world/level/block/Blocks/f_152573_ net/minecraft/world/level/block/Blocks/WAXED_EXPOSED_COPPER +FD: net/minecraft/world/level/block/Blocks/f_152574_ net/minecraft/world/level/block/Blocks/WAXED_OXIDIZED_COPPER +FD: net/minecraft/world/level/block/Blocks/f_152575_ net/minecraft/world/level/block/Blocks/WAXED_OXIDIZED_CUT_COPPER +FD: net/minecraft/world/level/block/Blocks/f_152576_ net/minecraft/world/level/block/Blocks/WAXED_WEATHERED_CUT_COPPER +FD: net/minecraft/world/level/block/Blocks/f_152577_ net/minecraft/world/level/block/Blocks/WAXED_EXPOSED_CUT_COPPER +FD: net/minecraft/world/level/block/Blocks/f_152578_ net/minecraft/world/level/block/Blocks/WAXED_CUT_COPPER +FD: net/minecraft/world/level/block/Blocks/f_152579_ net/minecraft/world/level/block/Blocks/WAXED_OXIDIZED_CUT_COPPER_STAIRS +FD: net/minecraft/world/level/block/Blocks/f_152580_ net/minecraft/world/level/block/Blocks/WAXED_WEATHERED_CUT_COPPER_STAIRS +FD: net/minecraft/world/level/block/Blocks/f_152581_ net/minecraft/world/level/block/Blocks/WAXED_EXPOSED_CUT_COPPER_STAIRS +FD: net/minecraft/world/level/block/Blocks/f_152582_ net/minecraft/world/level/block/Blocks/WAXED_CUT_COPPER_STAIRS +FD: net/minecraft/world/level/block/Blocks/f_152583_ net/minecraft/world/level/block/Blocks/WAXED_OXIDIZED_CUT_COPPER_SLAB +FD: net/minecraft/world/level/block/Blocks/f_152584_ net/minecraft/world/level/block/Blocks/WAXED_WEATHERED_CUT_COPPER_SLAB +FD: net/minecraft/world/level/block/Blocks/f_152585_ net/minecraft/world/level/block/Blocks/WAXED_EXPOSED_CUT_COPPER_SLAB +FD: net/minecraft/world/level/block/Blocks/f_152586_ net/minecraft/world/level/block/Blocks/WAXED_CUT_COPPER_SLAB +FD: net/minecraft/world/level/block/Blocks/f_152587_ net/minecraft/world/level/block/Blocks/LIGHTNING_ROD +FD: net/minecraft/world/level/block/Blocks/f_152588_ net/minecraft/world/level/block/Blocks/POINTED_DRIPSTONE +FD: net/minecraft/world/level/block/Blocks/f_152589_ net/minecraft/world/level/block/Blocks/DEEPSLATE_BRICKS +FD: net/minecraft/world/level/block/Blocks/f_152590_ net/minecraft/world/level/block/Blocks/DEEPSLATE_BRICK_STAIRS +FD: net/minecraft/world/level/block/Blocks/f_152591_ net/minecraft/world/level/block/Blocks/DEEPSLATE_BRICK_SLAB +FD: net/minecraft/world/level/block/Blocks/f_152592_ net/minecraft/world/level/block/Blocks/DEEPSLATE_BRICK_WALL +FD: net/minecraft/world/level/block/Blocks/f_152593_ net/minecraft/world/level/block/Blocks/CHISELED_DEEPSLATE +FD: net/minecraft/world/level/block/Blocks/f_152594_ net/minecraft/world/level/block/Blocks/CRACKED_DEEPSLATE_BRICKS +FD: net/minecraft/world/level/block/Blocks/f_152595_ net/minecraft/world/level/block/Blocks/CRACKED_DEEPSLATE_TILES +FD: net/minecraft/world/level/block/Blocks/f_152596_ net/minecraft/world/level/block/Blocks/INFESTED_DEEPSLATE +FD: net/minecraft/world/level/block/Blocks/f_152597_ net/minecraft/world/level/block/Blocks/SMOOTH_BASALT +FD: net/minecraft/world/level/block/Blocks/f_152598_ net/minecraft/world/level/block/Blocks/RAW_IRON_BLOCK +FD: net/minecraft/world/level/block/Blocks/f_152599_ net/minecraft/world/level/block/Blocks/RAW_COPPER_BLOCK +FD: net/minecraft/world/level/block/Blocks/f_152600_ net/minecraft/world/level/block/Blocks/RAW_GOLD_BLOCK +FD: net/minecraft/world/level/block/Blocks/f_152601_ net/minecraft/world/level/block/Blocks/POTTED_AZALEA +FD: net/minecraft/world/level/block/Blocks/f_152602_ net/minecraft/world/level/block/Blocks/POTTED_FLOWERING_AZALEA +FD: net/minecraft/world/level/block/Blocks/f_220831_ net/minecraft/world/level/block/Blocks/MANGROVE_PROPAGULE +FD: net/minecraft/world/level/block/Blocks/f_220832_ net/minecraft/world/level/block/Blocks/MANGROVE_LOG +FD: net/minecraft/world/level/block/Blocks/f_220833_ net/minecraft/world/level/block/Blocks/MANGROVE_ROOTS +FD: net/minecraft/world/level/block/Blocks/f_220834_ net/minecraft/world/level/block/Blocks/MUDDY_MANGROVE_ROOTS +FD: net/minecraft/world/level/block/Blocks/f_220835_ net/minecraft/world/level/block/Blocks/STRIPPED_MANGROVE_LOG +FD: net/minecraft/world/level/block/Blocks/f_220836_ net/minecraft/world/level/block/Blocks/MANGROVE_WOOD +FD: net/minecraft/world/level/block/Blocks/f_220837_ net/minecraft/world/level/block/Blocks/STRIPPED_MANGROVE_WOOD +FD: net/minecraft/world/level/block/Blocks/f_220838_ net/minecraft/world/level/block/Blocks/MANGROVE_LEAVES +FD: net/minecraft/world/level/block/Blocks/f_220839_ net/minecraft/world/level/block/Blocks/MANGROVE_WALL_SIGN +FD: net/minecraft/world/level/block/Blocks/f_220840_ net/minecraft/world/level/block/Blocks/MANGROVE_PRESSURE_PLATE +FD: net/minecraft/world/level/block/Blocks/f_220841_ net/minecraft/world/level/block/Blocks/MANGROVE_SIGN +FD: net/minecraft/world/level/block/Blocks/f_220842_ net/minecraft/world/level/block/Blocks/MANGROVE_TRAPDOOR +FD: net/minecraft/world/level/block/Blocks/f_220843_ net/minecraft/world/level/block/Blocks/PACKED_MUD +FD: net/minecraft/world/level/block/Blocks/f_220844_ net/minecraft/world/level/block/Blocks/MUD_BRICKS +FD: net/minecraft/world/level/block/Blocks/f_220845_ net/minecraft/world/level/block/Blocks/MUD_BRICK_STAIRS +FD: net/minecraft/world/level/block/Blocks/f_220846_ net/minecraft/world/level/block/Blocks/MANGROVE_BUTTON +FD: net/minecraft/world/level/block/Blocks/f_220847_ net/minecraft/world/level/block/Blocks/POTTED_MANGROVE_PROPAGULE +FD: net/minecraft/world/level/block/Blocks/f_220848_ net/minecraft/world/level/block/Blocks/MANGROVE_STAIRS +FD: net/minecraft/world/level/block/Blocks/f_220849_ net/minecraft/world/level/block/Blocks/MUD_BRICK_SLAB +FD: net/minecraft/world/level/block/Blocks/f_220850_ net/minecraft/world/level/block/Blocks/MANGROVE_FENCE_GATE +FD: net/minecraft/world/level/block/Blocks/f_220851_ net/minecraft/world/level/block/Blocks/MANGROVE_SLAB +FD: net/minecraft/world/level/block/Blocks/f_220852_ net/minecraft/world/level/block/Blocks/MANGROVE_FENCE +FD: net/minecraft/world/level/block/Blocks/f_220853_ net/minecraft/world/level/block/Blocks/MANGROVE_DOOR +FD: net/minecraft/world/level/block/Blocks/f_220854_ net/minecraft/world/level/block/Blocks/MUD_BRICK_WALL +FD: net/minecraft/world/level/block/Blocks/f_220855_ net/minecraft/world/level/block/Blocks/SCULK +FD: net/minecraft/world/level/block/Blocks/f_220856_ net/minecraft/world/level/block/Blocks/SCULK_VEIN +FD: net/minecraft/world/level/block/Blocks/f_220857_ net/minecraft/world/level/block/Blocks/SCULK_CATALYST +FD: net/minecraft/world/level/block/Blocks/f_220858_ net/minecraft/world/level/block/Blocks/SCULK_SHRIEKER +FD: net/minecraft/world/level/block/Blocks/f_220859_ net/minecraft/world/level/block/Blocks/OCHRE_FROGLIGHT +FD: net/minecraft/world/level/block/Blocks/f_220860_ net/minecraft/world/level/block/Blocks/VERDANT_FROGLIGHT +FD: net/minecraft/world/level/block/Blocks/f_220861_ net/minecraft/world/level/block/Blocks/PEARLESCENT_FROGLIGHT +FD: net/minecraft/world/level/block/Blocks/f_220862_ net/minecraft/world/level/block/Blocks/FROGSPAWN +FD: net/minecraft/world/level/block/Blocks/f_220863_ net/minecraft/world/level/block/Blocks/REINFORCED_DEEPSLATE +FD: net/minecraft/world/level/block/Blocks/f_220864_ net/minecraft/world/level/block/Blocks/MUD +FD: net/minecraft/world/level/block/Blocks/f_220865_ net/minecraft/world/level/block/Blocks/MANGROVE_PLANKS +FD: net/minecraft/world/level/block/Blocks/f_243716_ net/minecraft/world/level/block/Blocks/ACACIA_HANGING_SIGN +FD: net/minecraft/world/level/block/Blocks/f_243755_ net/minecraft/world/level/block/Blocks/BAMBOO_STAIRS +FD: net/minecraft/world/level/block/Blocks/f_243773_ net/minecraft/world/level/block/Blocks/ACACIA_WALL_HANGING_SIGN +FD: net/minecraft/world/level/block/Blocks/f_243890_ net/minecraft/world/level/block/Blocks/BIRCH_HANGING_SIGN +FD: net/minecraft/world/level/block/Blocks/f_243895_ net/minecraft/world/level/block/Blocks/SPRUCE_WALL_HANGING_SIGN +FD: net/minecraft/world/level/block/Blocks/f_243897_ net/minecraft/world/level/block/Blocks/JUNGLE_WALL_HANGING_SIGN +FD: net/minecraft/world/level/block/Blocks/f_243960_ net/minecraft/world/level/block/Blocks/DARK_OAK_HANGING_SIGN +FD: net/minecraft/world/level/block/Blocks/f_243998_ net/minecraft/world/level/block/Blocks/DARK_OAK_WALL_HANGING_SIGN +FD: net/minecraft/world/level/block/Blocks/f_244004_ net/minecraft/world/level/block/Blocks/BAMBOO_SLAB +FD: net/minecraft/world/level/block/Blocks/f_244091_ net/minecraft/world/level/block/Blocks/BAMBOO_HANGING_SIGN +FD: net/minecraft/world/level/block/Blocks/f_244093_ net/minecraft/world/level/block/Blocks/OAK_WALL_HANGING_SIGN +FD: net/minecraft/world/level/block/Blocks/f_244147_ net/minecraft/world/level/block/Blocks/CRIMSON_HANGING_SIGN +FD: net/minecraft/world/level/block/Blocks/f_244183_ net/minecraft/world/level/block/Blocks/BAMBOO_PRESSURE_PLATE +FD: net/minecraft/world/level/block/Blocks/f_244193_ net/minecraft/world/level/block/Blocks/BAMBOO_MOSAIC_STAIRS +FD: net/minecraft/world/level/block/Blocks/f_244230_ net/minecraft/world/level/block/Blocks/BAMBOO_MOSAIC_SLAB +FD: net/minecraft/world/level/block/Blocks/f_244241_ net/minecraft/world/level/block/Blocks/WARPED_WALL_HANGING_SIGN +FD: net/minecraft/world/level/block/Blocks/f_244263_ net/minecraft/world/level/block/Blocks/JUNGLE_HANGING_SIGN +FD: net/minecraft/world/level/block/Blocks/f_244281_ net/minecraft/world/level/block/Blocks/CRIMSON_WALL_HANGING_SIGN +FD: net/minecraft/world/level/block/Blocks/f_244296_ net/minecraft/world/level/block/Blocks/BIRCH_WALL_HANGING_SIGN +FD: net/minecraft/world/level/block/Blocks/f_244299_ net/minecraft/world/level/block/Blocks/CHISELED_BOOKSHELF +FD: net/minecraft/world/level/block/Blocks/f_244313_ net/minecraft/world/level/block/Blocks/BAMBOO_FENCE_GATE +FD: net/minecraft/world/level/block/Blocks/f_244319_ net/minecraft/world/level/block/Blocks/OAK_HANGING_SIGN +FD: net/minecraft/world/level/block/Blocks/f_244385_ net/minecraft/world/level/block/Blocks/MANGROVE_WALL_HANGING_SIGN +FD: net/minecraft/world/level/block/Blocks/f_244396_ net/minecraft/world/level/block/Blocks/WARPED_HANGING_SIGN +FD: net/minecraft/world/level/block/Blocks/f_244433_ net/minecraft/world/level/block/Blocks/BAMBOO_SIGN +FD: net/minecraft/world/level/block/Blocks/f_244462_ net/minecraft/world/level/block/Blocks/BAMBOO_WALL_HANGING_SIGN +FD: net/minecraft/world/level/block/Blocks/f_244477_ net/minecraft/world/level/block/Blocks/BAMBOO_PLANKS +FD: net/minecraft/world/level/block/Blocks/f_244485_ net/minecraft/world/level/block/Blocks/MANGROVE_HANGING_SIGN +FD: net/minecraft/world/level/block/Blocks/f_244489_ net/minecraft/world/level/block/Blocks/BAMBOO_MOSAIC +FD: net/minecraft/world/level/block/Blocks/f_244549_ net/minecraft/world/level/block/Blocks/BAMBOO_TRAPDOOR +FD: net/minecraft/world/level/block/Blocks/f_244608_ net/minecraft/world/level/block/Blocks/BAMBOO_WALL_SIGN +FD: net/minecraft/world/level/block/Blocks/f_244625_ net/minecraft/world/level/block/Blocks/BAMBOO_BUTTON +FD: net/minecraft/world/level/block/Blocks/f_244633_ net/minecraft/world/level/block/Blocks/SPRUCE_HANGING_SIGN +FD: net/minecraft/world/level/block/Blocks/f_244641_ net/minecraft/world/level/block/Blocks/BAMBOO_FENCE +FD: net/minecraft/world/level/block/Blocks/f_244648_ net/minecraft/world/level/block/Blocks/BAMBOO_DOOR +FD: net/minecraft/world/level/block/Blocks/f_256740_ net/minecraft/world/level/block/Blocks/STRIPPED_BAMBOO_BLOCK +FD: net/minecraft/world/level/block/Blocks/f_256831_ net/minecraft/world/level/block/Blocks/BAMBOO_BLOCK +FD: net/minecraft/world/level/block/Blocks/f_260585_ net/minecraft/world/level/block/Blocks/PIGLIN_WALL_HEAD +FD: net/minecraft/world/level/block/Blocks/f_260630_ net/minecraft/world/level/block/Blocks/PIGLIN_HEAD +FD: net/minecraft/world/level/block/Blocks/f_271106_ net/minecraft/world/level/block/Blocks/POTTED_CHERRY_SAPLING +FD: net/minecraft/world/level/block/Blocks/f_271107_ net/minecraft/world/level/block/Blocks/CHERRY_WALL_SIGN +FD: net/minecraft/world/level/block/Blocks/f_271115_ net/minecraft/world/level/block/Blocks/CHERRY_LEAVES +FD: net/minecraft/world/level/block/Blocks/f_271116_ net/minecraft/world/level/block/Blocks/CHERRY_HANGING_SIGN +FD: net/minecraft/world/level/block/Blocks/f_271145_ net/minecraft/world/level/block/Blocks/STRIPPED_CHERRY_WOOD +FD: net/minecraft/world/level/block/Blocks/f_271169_ net/minecraft/world/level/block/Blocks/CHERRY_DOOR +FD: net/minecraft/world/level/block/Blocks/f_271170_ net/minecraft/world/level/block/Blocks/CHERRY_LOG +FD: net/minecraft/world/level/block/Blocks/f_271197_ net/minecraft/world/level/block/Blocks/DECORATED_POT +FD: net/minecraft/world/level/block/Blocks/f_271206_ net/minecraft/world/level/block/Blocks/CHERRY_STAIRS +FD: net/minecraft/world/level/block/Blocks/f_271219_ net/minecraft/world/level/block/Blocks/CHERRY_FENCE +FD: net/minecraft/world/level/block/Blocks/f_271227_ net/minecraft/world/level/block/Blocks/CHERRY_PRESSURE_PLATE +FD: net/minecraft/world/level/block/Blocks/f_271274_ net/minecraft/world/level/block/Blocks/CHERRY_FENCE_GATE +FD: net/minecraft/world/level/block/Blocks/f_271301_ net/minecraft/world/level/block/Blocks/CHERRY_SLAB +FD: net/minecraft/world/level/block/Blocks/f_271304_ net/minecraft/world/level/block/Blocks/CHERRY_PLANKS +FD: net/minecraft/world/level/block/Blocks/f_271326_ net/minecraft/world/level/block/Blocks/STRIPPED_CHERRY_LOG +FD: net/minecraft/world/level/block/Blocks/f_271329_ net/minecraft/world/level/block/Blocks/TORCHFLOWER +FD: net/minecraft/world/level/block/Blocks/f_271334_ net/minecraft/world/level/block/Blocks/CHERRY_SAPLING +FD: net/minecraft/world/level/block/Blocks/f_271348_ net/minecraft/world/level/block/Blocks/CHERRY_WOOD +FD: net/minecraft/world/level/block/Blocks/f_271350_ net/minecraft/world/level/block/Blocks/CHERRY_TRAPDOOR +FD: net/minecraft/world/level/block/Blocks/f_271396_ net/minecraft/world/level/block/Blocks/CHERRY_BUTTON +FD: net/minecraft/world/level/block/Blocks/f_271410_ net/minecraft/world/level/block/Blocks/TORCHFLOWER_CROP +FD: net/minecraft/world/level/block/Blocks/f_271427_ net/minecraft/world/level/block/Blocks/CHERRY_WALL_HANGING_SIGN +FD: net/minecraft/world/level/block/Blocks/f_271439_ net/minecraft/world/level/block/Blocks/SUSPICIOUS_SAND +FD: net/minecraft/world/level/block/Blocks/f_271445_ net/minecraft/world/level/block/Blocks/PINK_PETALS +FD: net/minecraft/world/level/block/Blocks/f_271468_ net/minecraft/world/level/block/Blocks/POTTED_TORCHFLOWER +FD: net/minecraft/world/level/block/Blocks/f_271516_ net/minecraft/world/level/block/Blocks/CHERRY_SIGN +FD: net/minecraft/world/level/block/Blocks/f_276445_ net/minecraft/world/level/block/Blocks/SUSPICIOUS_GRAVEL +FD: net/minecraft/world/level/block/Blocks/f_276595_ net/minecraft/world/level/block/Blocks/CALIBRATED_SCULK_SENSOR +FD: net/minecraft/world/level/block/Blocks/f_276643_ net/minecraft/world/level/block/Blocks/SNIFFER_EGG +FD: net/minecraft/world/level/block/Blocks/f_276665_ net/minecraft/world/level/block/Blocks/PITCHER_CROP +FD: net/minecraft/world/level/block/Blocks/f_276668_ net/minecraft/world/level/block/Blocks/PITCHER_PLANT +FD: net/minecraft/world/level/block/Blocks/f_49990_ net/minecraft/world/level/block/Blocks/WATER +FD: net/minecraft/world/level/block/Blocks/f_49991_ net/minecraft/world/level/block/Blocks/LAVA +FD: net/minecraft/world/level/block/Blocks/f_49992_ net/minecraft/world/level/block/Blocks/SAND +FD: net/minecraft/world/level/block/Blocks/f_49993_ net/minecraft/world/level/block/Blocks/RED_SAND +FD: net/minecraft/world/level/block/Blocks/f_49994_ net/minecraft/world/level/block/Blocks/GRAVEL +FD: net/minecraft/world/level/block/Blocks/f_49995_ net/minecraft/world/level/block/Blocks/GOLD_ORE +FD: net/minecraft/world/level/block/Blocks/f_49996_ net/minecraft/world/level/block/Blocks/IRON_ORE +FD: net/minecraft/world/level/block/Blocks/f_49997_ net/minecraft/world/level/block/Blocks/COAL_ORE +FD: net/minecraft/world/level/block/Blocks/f_49998_ net/minecraft/world/level/block/Blocks/NETHER_GOLD_ORE +FD: net/minecraft/world/level/block/Blocks/f_49999_ net/minecraft/world/level/block/Blocks/OAK_LOG +FD: net/minecraft/world/level/block/Blocks/f_50000_ net/minecraft/world/level/block/Blocks/SPRUCE_LOG +FD: net/minecraft/world/level/block/Blocks/f_50001_ net/minecraft/world/level/block/Blocks/BIRCH_LOG +FD: net/minecraft/world/level/block/Blocks/f_50002_ net/minecraft/world/level/block/Blocks/JUNGLE_LOG +FD: net/minecraft/world/level/block/Blocks/f_50003_ net/minecraft/world/level/block/Blocks/ACACIA_LOG +FD: net/minecraft/world/level/block/Blocks/f_50004_ net/minecraft/world/level/block/Blocks/DARK_OAK_LOG +FD: net/minecraft/world/level/block/Blocks/f_50005_ net/minecraft/world/level/block/Blocks/STRIPPED_SPRUCE_LOG +FD: net/minecraft/world/level/block/Blocks/f_50006_ net/minecraft/world/level/block/Blocks/STRIPPED_BIRCH_LOG +FD: net/minecraft/world/level/block/Blocks/f_50007_ net/minecraft/world/level/block/Blocks/STRIPPED_JUNGLE_LOG +FD: net/minecraft/world/level/block/Blocks/f_50008_ net/minecraft/world/level/block/Blocks/STRIPPED_ACACIA_LOG +FD: net/minecraft/world/level/block/Blocks/f_50009_ net/minecraft/world/level/block/Blocks/STRIPPED_DARK_OAK_LOG +FD: net/minecraft/world/level/block/Blocks/f_50010_ net/minecraft/world/level/block/Blocks/STRIPPED_OAK_LOG +FD: net/minecraft/world/level/block/Blocks/f_50011_ net/minecraft/world/level/block/Blocks/OAK_WOOD +FD: net/minecraft/world/level/block/Blocks/f_50012_ net/minecraft/world/level/block/Blocks/SPRUCE_WOOD +FD: net/minecraft/world/level/block/Blocks/f_50013_ net/minecraft/world/level/block/Blocks/BIRCH_WOOD +FD: net/minecraft/world/level/block/Blocks/f_50014_ net/minecraft/world/level/block/Blocks/JUNGLE_WOOD +FD: net/minecraft/world/level/block/Blocks/f_50015_ net/minecraft/world/level/block/Blocks/ACACIA_WOOD +FD: net/minecraft/world/level/block/Blocks/f_50016_ net/minecraft/world/level/block/Blocks/AIR +FD: net/minecraft/world/level/block/Blocks/f_50017_ net/minecraft/world/level/block/Blocks/LIGHT_BLUE_BED +FD: net/minecraft/world/level/block/Blocks/f_50018_ net/minecraft/world/level/block/Blocks/YELLOW_BED +FD: net/minecraft/world/level/block/Blocks/f_50019_ net/minecraft/world/level/block/Blocks/LIME_BED +FD: net/minecraft/world/level/block/Blocks/f_50020_ net/minecraft/world/level/block/Blocks/PINK_BED +FD: net/minecraft/world/level/block/Blocks/f_50021_ net/minecraft/world/level/block/Blocks/GRAY_BED +FD: net/minecraft/world/level/block/Blocks/f_50022_ net/minecraft/world/level/block/Blocks/LIGHT_GRAY_BED +FD: net/minecraft/world/level/block/Blocks/f_50023_ net/minecraft/world/level/block/Blocks/CYAN_BED +FD: net/minecraft/world/level/block/Blocks/f_50024_ net/minecraft/world/level/block/Blocks/PURPLE_BED +FD: net/minecraft/world/level/block/Blocks/f_50025_ net/minecraft/world/level/block/Blocks/BLUE_BED +FD: net/minecraft/world/level/block/Blocks/f_50026_ net/minecraft/world/level/block/Blocks/BROWN_BED +FD: net/minecraft/world/level/block/Blocks/f_50027_ net/minecraft/world/level/block/Blocks/GREEN_BED +FD: net/minecraft/world/level/block/Blocks/f_50028_ net/minecraft/world/level/block/Blocks/RED_BED +FD: net/minecraft/world/level/block/Blocks/f_50029_ net/minecraft/world/level/block/Blocks/BLACK_BED +FD: net/minecraft/world/level/block/Blocks/f_50030_ net/minecraft/world/level/block/Blocks/POWERED_RAIL +FD: net/minecraft/world/level/block/Blocks/f_50031_ net/minecraft/world/level/block/Blocks/DETECTOR_RAIL +FD: net/minecraft/world/level/block/Blocks/f_50032_ net/minecraft/world/level/block/Blocks/STICKY_PISTON +FD: net/minecraft/world/level/block/Blocks/f_50033_ net/minecraft/world/level/block/Blocks/COBWEB +FD: net/minecraft/world/level/block/Blocks/f_50034_ net/minecraft/world/level/block/Blocks/GRASS +FD: net/minecraft/world/level/block/Blocks/f_50035_ net/minecraft/world/level/block/Blocks/FERN +FD: net/minecraft/world/level/block/Blocks/f_50036_ net/minecraft/world/level/block/Blocks/DEAD_BUSH +FD: net/minecraft/world/level/block/Blocks/f_50037_ net/minecraft/world/level/block/Blocks/SEAGRASS +FD: net/minecraft/world/level/block/Blocks/f_50038_ net/minecraft/world/level/block/Blocks/TALL_SEAGRASS +FD: net/minecraft/world/level/block/Blocks/f_50039_ net/minecraft/world/level/block/Blocks/PISTON +FD: net/minecraft/world/level/block/Blocks/f_50040_ net/minecraft/world/level/block/Blocks/PISTON_HEAD +FD: net/minecraft/world/level/block/Blocks/f_50041_ net/minecraft/world/level/block/Blocks/WHITE_WOOL +FD: net/minecraft/world/level/block/Blocks/f_50042_ net/minecraft/world/level/block/Blocks/ORANGE_WOOL +FD: net/minecraft/world/level/block/Blocks/f_50043_ net/minecraft/world/level/block/Blocks/DARK_OAK_WOOD +FD: net/minecraft/world/level/block/Blocks/f_50044_ net/minecraft/world/level/block/Blocks/STRIPPED_OAK_WOOD +FD: net/minecraft/world/level/block/Blocks/f_50045_ net/minecraft/world/level/block/Blocks/STRIPPED_SPRUCE_WOOD +FD: net/minecraft/world/level/block/Blocks/f_50046_ net/minecraft/world/level/block/Blocks/STRIPPED_BIRCH_WOOD +FD: net/minecraft/world/level/block/Blocks/f_50047_ net/minecraft/world/level/block/Blocks/STRIPPED_JUNGLE_WOOD +FD: net/minecraft/world/level/block/Blocks/f_50048_ net/minecraft/world/level/block/Blocks/STRIPPED_ACACIA_WOOD +FD: net/minecraft/world/level/block/Blocks/f_50049_ net/minecraft/world/level/block/Blocks/STRIPPED_DARK_OAK_WOOD +FD: net/minecraft/world/level/block/Blocks/f_50050_ net/minecraft/world/level/block/Blocks/OAK_LEAVES +FD: net/minecraft/world/level/block/Blocks/f_50051_ net/minecraft/world/level/block/Blocks/SPRUCE_LEAVES +FD: net/minecraft/world/level/block/Blocks/f_50052_ net/minecraft/world/level/block/Blocks/BIRCH_LEAVES +FD: net/minecraft/world/level/block/Blocks/f_50053_ net/minecraft/world/level/block/Blocks/JUNGLE_LEAVES +FD: net/minecraft/world/level/block/Blocks/f_50054_ net/minecraft/world/level/block/Blocks/ACACIA_LEAVES +FD: net/minecraft/world/level/block/Blocks/f_50055_ net/minecraft/world/level/block/Blocks/DARK_OAK_LEAVES +FD: net/minecraft/world/level/block/Blocks/f_50056_ net/minecraft/world/level/block/Blocks/SPONGE +FD: net/minecraft/world/level/block/Blocks/f_50057_ net/minecraft/world/level/block/Blocks/WET_SPONGE +FD: net/minecraft/world/level/block/Blocks/f_50058_ net/minecraft/world/level/block/Blocks/GLASS +FD: net/minecraft/world/level/block/Blocks/f_50059_ net/minecraft/world/level/block/Blocks/LAPIS_ORE +FD: net/minecraft/world/level/block/Blocks/f_50060_ net/minecraft/world/level/block/Blocks/LAPIS_BLOCK +FD: net/minecraft/world/level/block/Blocks/f_50061_ net/minecraft/world/level/block/Blocks/DISPENSER +FD: net/minecraft/world/level/block/Blocks/f_50062_ net/minecraft/world/level/block/Blocks/SANDSTONE +FD: net/minecraft/world/level/block/Blocks/f_50063_ net/minecraft/world/level/block/Blocks/CHISELED_SANDSTONE +FD: net/minecraft/world/level/block/Blocks/f_50064_ net/minecraft/world/level/block/Blocks/CUT_SANDSTONE +FD: net/minecraft/world/level/block/Blocks/f_50065_ net/minecraft/world/level/block/Blocks/NOTE_BLOCK +FD: net/minecraft/world/level/block/Blocks/f_50066_ net/minecraft/world/level/block/Blocks/WHITE_BED +FD: net/minecraft/world/level/block/Blocks/f_50067_ net/minecraft/world/level/block/Blocks/ORANGE_BED +FD: net/minecraft/world/level/block/Blocks/f_50068_ net/minecraft/world/level/block/Blocks/MAGENTA_BED +FD: net/minecraft/world/level/block/Blocks/f_50069_ net/minecraft/world/level/block/Blocks/STONE +FD: net/minecraft/world/level/block/Blocks/f_50070_ net/minecraft/world/level/block/Blocks/WITHER_ROSE +FD: net/minecraft/world/level/block/Blocks/f_50071_ net/minecraft/world/level/block/Blocks/LILY_OF_THE_VALLEY +FD: net/minecraft/world/level/block/Blocks/f_50072_ net/minecraft/world/level/block/Blocks/BROWN_MUSHROOM +FD: net/minecraft/world/level/block/Blocks/f_50073_ net/minecraft/world/level/block/Blocks/RED_MUSHROOM +FD: net/minecraft/world/level/block/Blocks/f_50074_ net/minecraft/world/level/block/Blocks/GOLD_BLOCK +FD: net/minecraft/world/level/block/Blocks/f_50075_ net/minecraft/world/level/block/Blocks/IRON_BLOCK +FD: net/minecraft/world/level/block/Blocks/f_50076_ net/minecraft/world/level/block/Blocks/BRICKS +FD: net/minecraft/world/level/block/Blocks/f_50077_ net/minecraft/world/level/block/Blocks/TNT +FD: net/minecraft/world/level/block/Blocks/f_50078_ net/minecraft/world/level/block/Blocks/BOOKSHELF +FD: net/minecraft/world/level/block/Blocks/f_50079_ net/minecraft/world/level/block/Blocks/MOSSY_COBBLESTONE +FD: net/minecraft/world/level/block/Blocks/f_50080_ net/minecraft/world/level/block/Blocks/OBSIDIAN +FD: net/minecraft/world/level/block/Blocks/f_50081_ net/minecraft/world/level/block/Blocks/TORCH +FD: net/minecraft/world/level/block/Blocks/f_50082_ net/minecraft/world/level/block/Blocks/WALL_TORCH +FD: net/minecraft/world/level/block/Blocks/f_50083_ net/minecraft/world/level/block/Blocks/FIRE +FD: net/minecraft/world/level/block/Blocks/f_50084_ net/minecraft/world/level/block/Blocks/SOUL_FIRE +FD: net/minecraft/world/level/block/Blocks/f_50085_ net/minecraft/world/level/block/Blocks/SPAWNER +FD: net/minecraft/world/level/block/Blocks/f_50086_ net/minecraft/world/level/block/Blocks/OAK_STAIRS +FD: net/minecraft/world/level/block/Blocks/f_50087_ net/minecraft/world/level/block/Blocks/CHEST +FD: net/minecraft/world/level/block/Blocks/f_50088_ net/minecraft/world/level/block/Blocks/REDSTONE_WIRE +FD: net/minecraft/world/level/block/Blocks/f_50089_ net/minecraft/world/level/block/Blocks/DIAMOND_ORE +FD: net/minecraft/world/level/block/Blocks/f_50090_ net/minecraft/world/level/block/Blocks/DIAMOND_BLOCK +FD: net/minecraft/world/level/block/Blocks/f_50091_ net/minecraft/world/level/block/Blocks/CRAFTING_TABLE +FD: net/minecraft/world/level/block/Blocks/f_50092_ net/minecraft/world/level/block/Blocks/WHEAT +FD: net/minecraft/world/level/block/Blocks/f_50093_ net/minecraft/world/level/block/Blocks/FARMLAND +FD: net/minecraft/world/level/block/Blocks/f_50094_ net/minecraft/world/level/block/Blocks/FURNACE +FD: net/minecraft/world/level/block/Blocks/f_50095_ net/minecraft/world/level/block/Blocks/OAK_SIGN +FD: net/minecraft/world/level/block/Blocks/f_50096_ net/minecraft/world/level/block/Blocks/MAGENTA_WOOL +FD: net/minecraft/world/level/block/Blocks/f_50097_ net/minecraft/world/level/block/Blocks/LIGHT_BLUE_WOOL +FD: net/minecraft/world/level/block/Blocks/f_50098_ net/minecraft/world/level/block/Blocks/YELLOW_WOOL +FD: net/minecraft/world/level/block/Blocks/f_50099_ net/minecraft/world/level/block/Blocks/LIME_WOOL +FD: net/minecraft/world/level/block/Blocks/f_50100_ net/minecraft/world/level/block/Blocks/PINK_WOOL +FD: net/minecraft/world/level/block/Blocks/f_50101_ net/minecraft/world/level/block/Blocks/GRAY_WOOL +FD: net/minecraft/world/level/block/Blocks/f_50102_ net/minecraft/world/level/block/Blocks/LIGHT_GRAY_WOOL +FD: net/minecraft/world/level/block/Blocks/f_50103_ net/minecraft/world/level/block/Blocks/CYAN_WOOL +FD: net/minecraft/world/level/block/Blocks/f_50104_ net/minecraft/world/level/block/Blocks/PURPLE_WOOL +FD: net/minecraft/world/level/block/Blocks/f_50105_ net/minecraft/world/level/block/Blocks/BLUE_WOOL +FD: net/minecraft/world/level/block/Blocks/f_50106_ net/minecraft/world/level/block/Blocks/BROWN_WOOL +FD: net/minecraft/world/level/block/Blocks/f_50107_ net/minecraft/world/level/block/Blocks/GREEN_WOOL +FD: net/minecraft/world/level/block/Blocks/f_50108_ net/minecraft/world/level/block/Blocks/RED_WOOL +FD: net/minecraft/world/level/block/Blocks/f_50109_ net/minecraft/world/level/block/Blocks/BLACK_WOOL +FD: net/minecraft/world/level/block/Blocks/f_50110_ net/minecraft/world/level/block/Blocks/MOVING_PISTON +FD: net/minecraft/world/level/block/Blocks/f_50111_ net/minecraft/world/level/block/Blocks/DANDELION +FD: net/minecraft/world/level/block/Blocks/f_50112_ net/minecraft/world/level/block/Blocks/POPPY +FD: net/minecraft/world/level/block/Blocks/f_50113_ net/minecraft/world/level/block/Blocks/BLUE_ORCHID +FD: net/minecraft/world/level/block/Blocks/f_50114_ net/minecraft/world/level/block/Blocks/ALLIUM +FD: net/minecraft/world/level/block/Blocks/f_50115_ net/minecraft/world/level/block/Blocks/AZURE_BLUET +FD: net/minecraft/world/level/block/Blocks/f_50116_ net/minecraft/world/level/block/Blocks/RED_TULIP +FD: net/minecraft/world/level/block/Blocks/f_50117_ net/minecraft/world/level/block/Blocks/ORANGE_TULIP +FD: net/minecraft/world/level/block/Blocks/f_50118_ net/minecraft/world/level/block/Blocks/WHITE_TULIP +FD: net/minecraft/world/level/block/Blocks/f_50119_ net/minecraft/world/level/block/Blocks/PINK_TULIP +FD: net/minecraft/world/level/block/Blocks/f_50120_ net/minecraft/world/level/block/Blocks/OXEYE_DAISY +FD: net/minecraft/world/level/block/Blocks/f_50121_ net/minecraft/world/level/block/Blocks/CORNFLOWER +FD: net/minecraft/world/level/block/Blocks/f_50122_ net/minecraft/world/level/block/Blocks/GRANITE +FD: net/minecraft/world/level/block/Blocks/f_50123_ net/minecraft/world/level/block/Blocks/REDSTONE_WALL_TORCH +FD: net/minecraft/world/level/block/Blocks/f_50124_ net/minecraft/world/level/block/Blocks/STONE_BUTTON +FD: net/minecraft/world/level/block/Blocks/f_50125_ net/minecraft/world/level/block/Blocks/SNOW +FD: net/minecraft/world/level/block/Blocks/f_50126_ net/minecraft/world/level/block/Blocks/ICE +FD: net/minecraft/world/level/block/Blocks/f_50127_ net/minecraft/world/level/block/Blocks/SNOW_BLOCK +FD: net/minecraft/world/level/block/Blocks/f_50128_ net/minecraft/world/level/block/Blocks/CACTUS +FD: net/minecraft/world/level/block/Blocks/f_50129_ net/minecraft/world/level/block/Blocks/CLAY +FD: net/minecraft/world/level/block/Blocks/f_50130_ net/minecraft/world/level/block/Blocks/SUGAR_CANE +FD: net/minecraft/world/level/block/Blocks/f_50131_ net/minecraft/world/level/block/Blocks/JUKEBOX +FD: net/minecraft/world/level/block/Blocks/f_50132_ net/minecraft/world/level/block/Blocks/OAK_FENCE +FD: net/minecraft/world/level/block/Blocks/f_50133_ net/minecraft/world/level/block/Blocks/PUMPKIN +FD: net/minecraft/world/level/block/Blocks/f_50134_ net/minecraft/world/level/block/Blocks/NETHERRACK +FD: net/minecraft/world/level/block/Blocks/f_50135_ net/minecraft/world/level/block/Blocks/SOUL_SAND +FD: net/minecraft/world/level/block/Blocks/f_50136_ net/minecraft/world/level/block/Blocks/SOUL_SOIL +FD: net/minecraft/world/level/block/Blocks/f_50137_ net/minecraft/world/level/block/Blocks/BASALT +FD: net/minecraft/world/level/block/Blocks/f_50138_ net/minecraft/world/level/block/Blocks/POLISHED_BASALT +FD: net/minecraft/world/level/block/Blocks/f_50139_ net/minecraft/world/level/block/Blocks/SOUL_TORCH +FD: net/minecraft/world/level/block/Blocks/f_50140_ net/minecraft/world/level/block/Blocks/SOUL_WALL_TORCH +FD: net/minecraft/world/level/block/Blocks/f_50141_ net/minecraft/world/level/block/Blocks/GLOWSTONE +FD: net/minecraft/world/level/block/Blocks/f_50142_ net/minecraft/world/level/block/Blocks/NETHER_PORTAL +FD: net/minecraft/world/level/block/Blocks/f_50143_ net/minecraft/world/level/block/Blocks/CARVED_PUMPKIN +FD: net/minecraft/world/level/block/Blocks/f_50144_ net/minecraft/world/level/block/Blocks/JACK_O_LANTERN +FD: net/minecraft/world/level/block/Blocks/f_50145_ net/minecraft/world/level/block/Blocks/CAKE +FD: net/minecraft/world/level/block/Blocks/f_50146_ net/minecraft/world/level/block/Blocks/REPEATER +FD: net/minecraft/world/level/block/Blocks/f_50147_ net/minecraft/world/level/block/Blocks/WHITE_STAINED_GLASS +FD: net/minecraft/world/level/block/Blocks/f_50148_ net/minecraft/world/level/block/Blocks/ORANGE_STAINED_GLASS +FD: net/minecraft/world/level/block/Blocks/f_50149_ net/minecraft/world/level/block/Blocks/SPRUCE_SIGN +FD: net/minecraft/world/level/block/Blocks/f_50150_ net/minecraft/world/level/block/Blocks/BIRCH_SIGN +FD: net/minecraft/world/level/block/Blocks/f_50151_ net/minecraft/world/level/block/Blocks/ACACIA_SIGN +FD: net/minecraft/world/level/block/Blocks/f_50152_ net/minecraft/world/level/block/Blocks/JUNGLE_SIGN +FD: net/minecraft/world/level/block/Blocks/f_50153_ net/minecraft/world/level/block/Blocks/DARK_OAK_SIGN +FD: net/minecraft/world/level/block/Blocks/f_50154_ net/minecraft/world/level/block/Blocks/OAK_DOOR +FD: net/minecraft/world/level/block/Blocks/f_50155_ net/minecraft/world/level/block/Blocks/LADDER +FD: net/minecraft/world/level/block/Blocks/f_50156_ net/minecraft/world/level/block/Blocks/RAIL +FD: net/minecraft/world/level/block/Blocks/f_50157_ net/minecraft/world/level/block/Blocks/COBBLESTONE_STAIRS +FD: net/minecraft/world/level/block/Blocks/f_50158_ net/minecraft/world/level/block/Blocks/OAK_WALL_SIGN +FD: net/minecraft/world/level/block/Blocks/f_50159_ net/minecraft/world/level/block/Blocks/SPRUCE_WALL_SIGN +FD: net/minecraft/world/level/block/Blocks/f_50160_ net/minecraft/world/level/block/Blocks/BIRCH_WALL_SIGN +FD: net/minecraft/world/level/block/Blocks/f_50161_ net/minecraft/world/level/block/Blocks/ACACIA_WALL_SIGN +FD: net/minecraft/world/level/block/Blocks/f_50162_ net/minecraft/world/level/block/Blocks/JUNGLE_WALL_SIGN +FD: net/minecraft/world/level/block/Blocks/f_50163_ net/minecraft/world/level/block/Blocks/DARK_OAK_WALL_SIGN +FD: net/minecraft/world/level/block/Blocks/f_50164_ net/minecraft/world/level/block/Blocks/LEVER +FD: net/minecraft/world/level/block/Blocks/f_50165_ net/minecraft/world/level/block/Blocks/STONE_PRESSURE_PLATE +FD: net/minecraft/world/level/block/Blocks/f_50166_ net/minecraft/world/level/block/Blocks/IRON_DOOR +FD: net/minecraft/world/level/block/Blocks/f_50167_ net/minecraft/world/level/block/Blocks/OAK_PRESSURE_PLATE +FD: net/minecraft/world/level/block/Blocks/f_50168_ net/minecraft/world/level/block/Blocks/SPRUCE_PRESSURE_PLATE +FD: net/minecraft/world/level/block/Blocks/f_50169_ net/minecraft/world/level/block/Blocks/BIRCH_PRESSURE_PLATE +FD: net/minecraft/world/level/block/Blocks/f_50170_ net/minecraft/world/level/block/Blocks/JUNGLE_PRESSURE_PLATE +FD: net/minecraft/world/level/block/Blocks/f_50171_ net/minecraft/world/level/block/Blocks/ACACIA_PRESSURE_PLATE +FD: net/minecraft/world/level/block/Blocks/f_50172_ net/minecraft/world/level/block/Blocks/DARK_OAK_PRESSURE_PLATE +FD: net/minecraft/world/level/block/Blocks/f_50173_ net/minecraft/world/level/block/Blocks/REDSTONE_ORE +FD: net/minecraft/world/level/block/Blocks/f_50174_ net/minecraft/world/level/block/Blocks/REDSTONE_TORCH +FD: net/minecraft/world/level/block/Blocks/f_50175_ net/minecraft/world/level/block/Blocks/POLISHED_GRANITE +FD: net/minecraft/world/level/block/Blocks/f_50176_ net/minecraft/world/level/block/Blocks/INFESTED_STONE_BRICKS +FD: net/minecraft/world/level/block/Blocks/f_50177_ net/minecraft/world/level/block/Blocks/INFESTED_MOSSY_STONE_BRICKS +FD: net/minecraft/world/level/block/Blocks/f_50178_ net/minecraft/world/level/block/Blocks/INFESTED_CRACKED_STONE_BRICKS +FD: net/minecraft/world/level/block/Blocks/f_50179_ net/minecraft/world/level/block/Blocks/INFESTED_CHISELED_STONE_BRICKS +FD: net/minecraft/world/level/block/Blocks/f_50180_ net/minecraft/world/level/block/Blocks/BROWN_MUSHROOM_BLOCK +FD: net/minecraft/world/level/block/Blocks/f_50181_ net/minecraft/world/level/block/Blocks/RED_MUSHROOM_BLOCK +FD: net/minecraft/world/level/block/Blocks/f_50182_ net/minecraft/world/level/block/Blocks/MUSHROOM_STEM +FD: net/minecraft/world/level/block/Blocks/f_50183_ net/minecraft/world/level/block/Blocks/IRON_BARS +FD: net/minecraft/world/level/block/Blocks/f_50184_ net/minecraft/world/level/block/Blocks/CHAIN +FD: net/minecraft/world/level/block/Blocks/f_50185_ net/minecraft/world/level/block/Blocks/GLASS_PANE +FD: net/minecraft/world/level/block/Blocks/f_50186_ net/minecraft/world/level/block/Blocks/MELON +FD: net/minecraft/world/level/block/Blocks/f_50187_ net/minecraft/world/level/block/Blocks/ATTACHED_PUMPKIN_STEM +FD: net/minecraft/world/level/block/Blocks/f_50188_ net/minecraft/world/level/block/Blocks/ATTACHED_MELON_STEM +FD: net/minecraft/world/level/block/Blocks/f_50189_ net/minecraft/world/level/block/Blocks/PUMPKIN_STEM +FD: net/minecraft/world/level/block/Blocks/f_50190_ net/minecraft/world/level/block/Blocks/MELON_STEM +FD: net/minecraft/world/level/block/Blocks/f_50191_ net/minecraft/world/level/block/Blocks/VINE +FD: net/minecraft/world/level/block/Blocks/f_50192_ net/minecraft/world/level/block/Blocks/OAK_FENCE_GATE +FD: net/minecraft/world/level/block/Blocks/f_50193_ net/minecraft/world/level/block/Blocks/BRICK_STAIRS +FD: net/minecraft/world/level/block/Blocks/f_50194_ net/minecraft/world/level/block/Blocks/STONE_BRICK_STAIRS +FD: net/minecraft/world/level/block/Blocks/f_50195_ net/minecraft/world/level/block/Blocks/MYCELIUM +FD: net/minecraft/world/level/block/Blocks/f_50196_ net/minecraft/world/level/block/Blocks/LILY_PAD +FD: net/minecraft/world/level/block/Blocks/f_50197_ net/minecraft/world/level/block/Blocks/NETHER_BRICKS +FD: net/minecraft/world/level/block/Blocks/f_50198_ net/minecraft/world/level/block/Blocks/NETHER_BRICK_FENCE +FD: net/minecraft/world/level/block/Blocks/f_50199_ net/minecraft/world/level/block/Blocks/NETHER_BRICK_STAIRS +FD: net/minecraft/world/level/block/Blocks/f_50200_ net/minecraft/world/level/block/Blocks/NETHER_WART +FD: net/minecraft/world/level/block/Blocks/f_50201_ net/minecraft/world/level/block/Blocks/ENCHANTING_TABLE +FD: net/minecraft/world/level/block/Blocks/f_50202_ net/minecraft/world/level/block/Blocks/MAGENTA_STAINED_GLASS +FD: net/minecraft/world/level/block/Blocks/f_50203_ net/minecraft/world/level/block/Blocks/LIGHT_BLUE_STAINED_GLASS +FD: net/minecraft/world/level/block/Blocks/f_50204_ net/minecraft/world/level/block/Blocks/YELLOW_STAINED_GLASS +FD: net/minecraft/world/level/block/Blocks/f_50205_ net/minecraft/world/level/block/Blocks/LIME_STAINED_GLASS +FD: net/minecraft/world/level/block/Blocks/f_50206_ net/minecraft/world/level/block/Blocks/PINK_STAINED_GLASS +FD: net/minecraft/world/level/block/Blocks/f_50207_ net/minecraft/world/level/block/Blocks/GRAY_STAINED_GLASS +FD: net/minecraft/world/level/block/Blocks/f_50208_ net/minecraft/world/level/block/Blocks/LIGHT_GRAY_STAINED_GLASS +FD: net/minecraft/world/level/block/Blocks/f_50209_ net/minecraft/world/level/block/Blocks/CYAN_STAINED_GLASS +FD: net/minecraft/world/level/block/Blocks/f_50210_ net/minecraft/world/level/block/Blocks/PURPLE_STAINED_GLASS +FD: net/minecraft/world/level/block/Blocks/f_50211_ net/minecraft/world/level/block/Blocks/BLUE_STAINED_GLASS +FD: net/minecraft/world/level/block/Blocks/f_50212_ net/minecraft/world/level/block/Blocks/BROWN_STAINED_GLASS +FD: net/minecraft/world/level/block/Blocks/f_50213_ net/minecraft/world/level/block/Blocks/GREEN_STAINED_GLASS +FD: net/minecraft/world/level/block/Blocks/f_50214_ net/minecraft/world/level/block/Blocks/RED_STAINED_GLASS +FD: net/minecraft/world/level/block/Blocks/f_50215_ net/minecraft/world/level/block/Blocks/BLACK_STAINED_GLASS +FD: net/minecraft/world/level/block/Blocks/f_50216_ net/minecraft/world/level/block/Blocks/OAK_TRAPDOOR +FD: net/minecraft/world/level/block/Blocks/f_50217_ net/minecraft/world/level/block/Blocks/SPRUCE_TRAPDOOR +FD: net/minecraft/world/level/block/Blocks/f_50218_ net/minecraft/world/level/block/Blocks/BIRCH_TRAPDOOR +FD: net/minecraft/world/level/block/Blocks/f_50219_ net/minecraft/world/level/block/Blocks/JUNGLE_TRAPDOOR +FD: net/minecraft/world/level/block/Blocks/f_50220_ net/minecraft/world/level/block/Blocks/ACACIA_TRAPDOOR +FD: net/minecraft/world/level/block/Blocks/f_50221_ net/minecraft/world/level/block/Blocks/DARK_OAK_TRAPDOOR +FD: net/minecraft/world/level/block/Blocks/f_50222_ net/minecraft/world/level/block/Blocks/STONE_BRICKS +FD: net/minecraft/world/level/block/Blocks/f_50223_ net/minecraft/world/level/block/Blocks/MOSSY_STONE_BRICKS +FD: net/minecraft/world/level/block/Blocks/f_50224_ net/minecraft/world/level/block/Blocks/CRACKED_STONE_BRICKS +FD: net/minecraft/world/level/block/Blocks/f_50225_ net/minecraft/world/level/block/Blocks/CHISELED_STONE_BRICKS +FD: net/minecraft/world/level/block/Blocks/f_50226_ net/minecraft/world/level/block/Blocks/INFESTED_STONE +FD: net/minecraft/world/level/block/Blocks/f_50227_ net/minecraft/world/level/block/Blocks/INFESTED_COBBLESTONE +FD: net/minecraft/world/level/block/Blocks/f_50228_ net/minecraft/world/level/block/Blocks/DIORITE +FD: net/minecraft/world/level/block/Blocks/f_50229_ net/minecraft/world/level/block/Blocks/POTTED_ACACIA_SAPLING +FD: net/minecraft/world/level/block/Blocks/f_50230_ net/minecraft/world/level/block/Blocks/POTTED_DARK_OAK_SAPLING +FD: net/minecraft/world/level/block/Blocks/f_50231_ net/minecraft/world/level/block/Blocks/POTTED_FERN +FD: net/minecraft/world/level/block/Blocks/f_50232_ net/minecraft/world/level/block/Blocks/POTTED_DANDELION +FD: net/minecraft/world/level/block/Blocks/f_50233_ net/minecraft/world/level/block/Blocks/POTTED_POPPY +FD: net/minecraft/world/level/block/Blocks/f_50234_ net/minecraft/world/level/block/Blocks/POTTED_BLUE_ORCHID +FD: net/minecraft/world/level/block/Blocks/f_50235_ net/minecraft/world/level/block/Blocks/POTTED_ALLIUM +FD: net/minecraft/world/level/block/Blocks/f_50236_ net/minecraft/world/level/block/Blocks/POTTED_AZURE_BLUET +FD: net/minecraft/world/level/block/Blocks/f_50237_ net/minecraft/world/level/block/Blocks/POTTED_RED_TULIP +FD: net/minecraft/world/level/block/Blocks/f_50238_ net/minecraft/world/level/block/Blocks/POTTED_ORANGE_TULIP +FD: net/minecraft/world/level/block/Blocks/f_50239_ net/minecraft/world/level/block/Blocks/POTTED_WHITE_TULIP +FD: net/minecraft/world/level/block/Blocks/f_50240_ net/minecraft/world/level/block/Blocks/POTTED_PINK_TULIP +FD: net/minecraft/world/level/block/Blocks/f_50241_ net/minecraft/world/level/block/Blocks/POTTED_OXEYE_DAISY +FD: net/minecraft/world/level/block/Blocks/f_50242_ net/minecraft/world/level/block/Blocks/POTTED_CORNFLOWER +FD: net/minecraft/world/level/block/Blocks/f_50243_ net/minecraft/world/level/block/Blocks/POTTED_LILY_OF_THE_VALLEY +FD: net/minecraft/world/level/block/Blocks/f_50244_ net/minecraft/world/level/block/Blocks/POTTED_WITHER_ROSE +FD: net/minecraft/world/level/block/Blocks/f_50245_ net/minecraft/world/level/block/Blocks/POTTED_RED_MUSHROOM +FD: net/minecraft/world/level/block/Blocks/f_50246_ net/minecraft/world/level/block/Blocks/POTTED_BROWN_MUSHROOM +FD: net/minecraft/world/level/block/Blocks/f_50247_ net/minecraft/world/level/block/Blocks/POTTED_DEAD_BUSH +FD: net/minecraft/world/level/block/Blocks/f_50248_ net/minecraft/world/level/block/Blocks/POTTED_CACTUS +FD: net/minecraft/world/level/block/Blocks/f_50249_ net/minecraft/world/level/block/Blocks/CARROTS +FD: net/minecraft/world/level/block/Blocks/f_50250_ net/minecraft/world/level/block/Blocks/POTATOES +FD: net/minecraft/world/level/block/Blocks/f_50251_ net/minecraft/world/level/block/Blocks/OAK_BUTTON +FD: net/minecraft/world/level/block/Blocks/f_50252_ net/minecraft/world/level/block/Blocks/SPRUCE_BUTTON +FD: net/minecraft/world/level/block/Blocks/f_50253_ net/minecraft/world/level/block/Blocks/BIRCH_BUTTON +FD: net/minecraft/world/level/block/Blocks/f_50254_ net/minecraft/world/level/block/Blocks/JUNGLE_BUTTON +FD: net/minecraft/world/level/block/Blocks/f_50255_ net/minecraft/world/level/block/Blocks/BREWING_STAND +FD: net/minecraft/world/level/block/Blocks/f_50256_ net/minecraft/world/level/block/Blocks/CAULDRON +FD: net/minecraft/world/level/block/Blocks/f_50257_ net/minecraft/world/level/block/Blocks/END_PORTAL +FD: net/minecraft/world/level/block/Blocks/f_50258_ net/minecraft/world/level/block/Blocks/END_PORTAL_FRAME +FD: net/minecraft/world/level/block/Blocks/f_50259_ net/minecraft/world/level/block/Blocks/END_STONE +FD: net/minecraft/world/level/block/Blocks/f_50260_ net/minecraft/world/level/block/Blocks/DRAGON_EGG +FD: net/minecraft/world/level/block/Blocks/f_50261_ net/minecraft/world/level/block/Blocks/REDSTONE_LAMP +FD: net/minecraft/world/level/block/Blocks/f_50262_ net/minecraft/world/level/block/Blocks/COCOA +FD: net/minecraft/world/level/block/Blocks/f_50263_ net/minecraft/world/level/block/Blocks/SANDSTONE_STAIRS +FD: net/minecraft/world/level/block/Blocks/f_50264_ net/minecraft/world/level/block/Blocks/EMERALD_ORE +FD: net/minecraft/world/level/block/Blocks/f_50265_ net/minecraft/world/level/block/Blocks/ENDER_CHEST +FD: net/minecraft/world/level/block/Blocks/f_50266_ net/minecraft/world/level/block/Blocks/TRIPWIRE_HOOK +FD: net/minecraft/world/level/block/Blocks/f_50267_ net/minecraft/world/level/block/Blocks/TRIPWIRE +FD: net/minecraft/world/level/block/Blocks/f_50268_ net/minecraft/world/level/block/Blocks/EMERALD_BLOCK +FD: net/minecraft/world/level/block/Blocks/f_50269_ net/minecraft/world/level/block/Blocks/SPRUCE_STAIRS +FD: net/minecraft/world/level/block/Blocks/f_50270_ net/minecraft/world/level/block/Blocks/BIRCH_STAIRS +FD: net/minecraft/world/level/block/Blocks/f_50271_ net/minecraft/world/level/block/Blocks/JUNGLE_STAIRS +FD: net/minecraft/world/level/block/Blocks/f_50272_ net/minecraft/world/level/block/Blocks/COMMAND_BLOCK +FD: net/minecraft/world/level/block/Blocks/f_50273_ net/minecraft/world/level/block/Blocks/BEACON +FD: net/minecraft/world/level/block/Blocks/f_50274_ net/minecraft/world/level/block/Blocks/COBBLESTONE_WALL +FD: net/minecraft/world/level/block/Blocks/f_50275_ net/minecraft/world/level/block/Blocks/MOSSY_COBBLESTONE_WALL +FD: net/minecraft/world/level/block/Blocks/f_50276_ net/minecraft/world/level/block/Blocks/FLOWER_POT +FD: net/minecraft/world/level/block/Blocks/f_50277_ net/minecraft/world/level/block/Blocks/POTTED_OAK_SAPLING +FD: net/minecraft/world/level/block/Blocks/f_50278_ net/minecraft/world/level/block/Blocks/POTTED_SPRUCE_SAPLING +FD: net/minecraft/world/level/block/Blocks/f_50279_ net/minecraft/world/level/block/Blocks/POTTED_BIRCH_SAPLING +FD: net/minecraft/world/level/block/Blocks/f_50280_ net/minecraft/world/level/block/Blocks/POTTED_JUNGLE_SAPLING +FD: net/minecraft/world/level/block/Blocks/f_50281_ net/minecraft/world/level/block/Blocks/POLISHED_DIORITE +FD: net/minecraft/world/level/block/Blocks/f_50282_ net/minecraft/world/level/block/Blocks/CHISELED_QUARTZ_BLOCK +FD: net/minecraft/world/level/block/Blocks/f_50283_ net/minecraft/world/level/block/Blocks/QUARTZ_PILLAR +FD: net/minecraft/world/level/block/Blocks/f_50284_ net/minecraft/world/level/block/Blocks/QUARTZ_STAIRS +FD: net/minecraft/world/level/block/Blocks/f_50285_ net/minecraft/world/level/block/Blocks/ACTIVATOR_RAIL +FD: net/minecraft/world/level/block/Blocks/f_50286_ net/minecraft/world/level/block/Blocks/DROPPER +FD: net/minecraft/world/level/block/Blocks/f_50287_ net/minecraft/world/level/block/Blocks/WHITE_TERRACOTTA +FD: net/minecraft/world/level/block/Blocks/f_50288_ net/minecraft/world/level/block/Blocks/ORANGE_TERRACOTTA +FD: net/minecraft/world/level/block/Blocks/f_50289_ net/minecraft/world/level/block/Blocks/MAGENTA_TERRACOTTA +FD: net/minecraft/world/level/block/Blocks/f_50290_ net/minecraft/world/level/block/Blocks/LIGHT_BLUE_TERRACOTTA +FD: net/minecraft/world/level/block/Blocks/f_50291_ net/minecraft/world/level/block/Blocks/YELLOW_TERRACOTTA +FD: net/minecraft/world/level/block/Blocks/f_50292_ net/minecraft/world/level/block/Blocks/LIME_TERRACOTTA +FD: net/minecraft/world/level/block/Blocks/f_50293_ net/minecraft/world/level/block/Blocks/PINK_TERRACOTTA +FD: net/minecraft/world/level/block/Blocks/f_50294_ net/minecraft/world/level/block/Blocks/GRAY_TERRACOTTA +FD: net/minecraft/world/level/block/Blocks/f_50295_ net/minecraft/world/level/block/Blocks/LIGHT_GRAY_TERRACOTTA +FD: net/minecraft/world/level/block/Blocks/f_50296_ net/minecraft/world/level/block/Blocks/CYAN_TERRACOTTA +FD: net/minecraft/world/level/block/Blocks/f_50297_ net/minecraft/world/level/block/Blocks/PURPLE_TERRACOTTA +FD: net/minecraft/world/level/block/Blocks/f_50298_ net/minecraft/world/level/block/Blocks/BLUE_TERRACOTTA +FD: net/minecraft/world/level/block/Blocks/f_50299_ net/minecraft/world/level/block/Blocks/BROWN_TERRACOTTA +FD: net/minecraft/world/level/block/Blocks/f_50300_ net/minecraft/world/level/block/Blocks/GREEN_TERRACOTTA +FD: net/minecraft/world/level/block/Blocks/f_50301_ net/minecraft/world/level/block/Blocks/RED_TERRACOTTA +FD: net/minecraft/world/level/block/Blocks/f_50302_ net/minecraft/world/level/block/Blocks/BLACK_TERRACOTTA +FD: net/minecraft/world/level/block/Blocks/f_50303_ net/minecraft/world/level/block/Blocks/WHITE_STAINED_GLASS_PANE +FD: net/minecraft/world/level/block/Blocks/f_50304_ net/minecraft/world/level/block/Blocks/ORANGE_STAINED_GLASS_PANE +FD: net/minecraft/world/level/block/Blocks/f_50305_ net/minecraft/world/level/block/Blocks/MAGENTA_STAINED_GLASS_PANE +FD: net/minecraft/world/level/block/Blocks/f_50306_ net/minecraft/world/level/block/Blocks/LIGHT_BLUE_STAINED_GLASS_PANE +FD: net/minecraft/world/level/block/Blocks/f_50307_ net/minecraft/world/level/block/Blocks/YELLOW_STAINED_GLASS_PANE +FD: net/minecraft/world/level/block/Blocks/f_50308_ net/minecraft/world/level/block/Blocks/ACACIA_BUTTON +FD: net/minecraft/world/level/block/Blocks/f_50309_ net/minecraft/world/level/block/Blocks/DARK_OAK_BUTTON +FD: net/minecraft/world/level/block/Blocks/f_50310_ net/minecraft/world/level/block/Blocks/SKELETON_SKULL +FD: net/minecraft/world/level/block/Blocks/f_50311_ net/minecraft/world/level/block/Blocks/SKELETON_WALL_SKULL +FD: net/minecraft/world/level/block/Blocks/f_50312_ net/minecraft/world/level/block/Blocks/WITHER_SKELETON_SKULL +FD: net/minecraft/world/level/block/Blocks/f_50313_ net/minecraft/world/level/block/Blocks/WITHER_SKELETON_WALL_SKULL +FD: net/minecraft/world/level/block/Blocks/f_50314_ net/minecraft/world/level/block/Blocks/ZOMBIE_HEAD +FD: net/minecraft/world/level/block/Blocks/f_50315_ net/minecraft/world/level/block/Blocks/ZOMBIE_WALL_HEAD +FD: net/minecraft/world/level/block/Blocks/f_50316_ net/minecraft/world/level/block/Blocks/PLAYER_HEAD +FD: net/minecraft/world/level/block/Blocks/f_50317_ net/minecraft/world/level/block/Blocks/PLAYER_WALL_HEAD +FD: net/minecraft/world/level/block/Blocks/f_50318_ net/minecraft/world/level/block/Blocks/CREEPER_HEAD +FD: net/minecraft/world/level/block/Blocks/f_50319_ net/minecraft/world/level/block/Blocks/CREEPER_WALL_HEAD +FD: net/minecraft/world/level/block/Blocks/f_50320_ net/minecraft/world/level/block/Blocks/DRAGON_HEAD +FD: net/minecraft/world/level/block/Blocks/f_50321_ net/minecraft/world/level/block/Blocks/DRAGON_WALL_HEAD +FD: net/minecraft/world/level/block/Blocks/f_50322_ net/minecraft/world/level/block/Blocks/ANVIL +FD: net/minecraft/world/level/block/Blocks/f_50323_ net/minecraft/world/level/block/Blocks/CHIPPED_ANVIL +FD: net/minecraft/world/level/block/Blocks/f_50324_ net/minecraft/world/level/block/Blocks/DAMAGED_ANVIL +FD: net/minecraft/world/level/block/Blocks/f_50325_ net/minecraft/world/level/block/Blocks/TRAPPED_CHEST +FD: net/minecraft/world/level/block/Blocks/f_50326_ net/minecraft/world/level/block/Blocks/LIGHT_WEIGHTED_PRESSURE_PLATE +FD: net/minecraft/world/level/block/Blocks/f_50327_ net/minecraft/world/level/block/Blocks/HEAVY_WEIGHTED_PRESSURE_PLATE +FD: net/minecraft/world/level/block/Blocks/f_50328_ net/minecraft/world/level/block/Blocks/COMPARATOR +FD: net/minecraft/world/level/block/Blocks/f_50329_ net/minecraft/world/level/block/Blocks/DAYLIGHT_DETECTOR +FD: net/minecraft/world/level/block/Blocks/f_50330_ net/minecraft/world/level/block/Blocks/REDSTONE_BLOCK +FD: net/minecraft/world/level/block/Blocks/f_50331_ net/minecraft/world/level/block/Blocks/NETHER_QUARTZ_ORE +FD: net/minecraft/world/level/block/Blocks/f_50332_ net/minecraft/world/level/block/Blocks/HOPPER +FD: net/minecraft/world/level/block/Blocks/f_50333_ net/minecraft/world/level/block/Blocks/QUARTZ_BLOCK +FD: net/minecraft/world/level/block/Blocks/f_50334_ net/minecraft/world/level/block/Blocks/ANDESITE +FD: net/minecraft/world/level/block/Blocks/f_50335_ net/minecraft/world/level/block/Blocks/HAY_BLOCK +FD: net/minecraft/world/level/block/Blocks/f_50336_ net/minecraft/world/level/block/Blocks/WHITE_CARPET +FD: net/minecraft/world/level/block/Blocks/f_50337_ net/minecraft/world/level/block/Blocks/ORANGE_CARPET +FD: net/minecraft/world/level/block/Blocks/f_50338_ net/minecraft/world/level/block/Blocks/MAGENTA_CARPET +FD: net/minecraft/world/level/block/Blocks/f_50339_ net/minecraft/world/level/block/Blocks/LIGHT_BLUE_CARPET +FD: net/minecraft/world/level/block/Blocks/f_50340_ net/minecraft/world/level/block/Blocks/YELLOW_CARPET +FD: net/minecraft/world/level/block/Blocks/f_50341_ net/minecraft/world/level/block/Blocks/LIME_CARPET +FD: net/minecraft/world/level/block/Blocks/f_50342_ net/minecraft/world/level/block/Blocks/PINK_CARPET +FD: net/minecraft/world/level/block/Blocks/f_50343_ net/minecraft/world/level/block/Blocks/GRAY_CARPET +FD: net/minecraft/world/level/block/Blocks/f_50344_ net/minecraft/world/level/block/Blocks/LIGHT_GRAY_CARPET +FD: net/minecraft/world/level/block/Blocks/f_50345_ net/minecraft/world/level/block/Blocks/CYAN_CARPET +FD: net/minecraft/world/level/block/Blocks/f_50346_ net/minecraft/world/level/block/Blocks/PURPLE_CARPET +FD: net/minecraft/world/level/block/Blocks/f_50347_ net/minecraft/world/level/block/Blocks/BLUE_CARPET +FD: net/minecraft/world/level/block/Blocks/f_50348_ net/minecraft/world/level/block/Blocks/BROWN_CARPET +FD: net/minecraft/world/level/block/Blocks/f_50349_ net/minecraft/world/level/block/Blocks/GREEN_CARPET +FD: net/minecraft/world/level/block/Blocks/f_50350_ net/minecraft/world/level/block/Blocks/RED_CARPET +FD: net/minecraft/world/level/block/Blocks/f_50351_ net/minecraft/world/level/block/Blocks/BLACK_CARPET +FD: net/minecraft/world/level/block/Blocks/f_50352_ net/minecraft/world/level/block/Blocks/TERRACOTTA +FD: net/minecraft/world/level/block/Blocks/f_50353_ net/minecraft/world/level/block/Blocks/COAL_BLOCK +FD: net/minecraft/world/level/block/Blocks/f_50354_ net/minecraft/world/level/block/Blocks/PACKED_ICE +FD: net/minecraft/world/level/block/Blocks/f_50355_ net/minecraft/world/level/block/Blocks/SUNFLOWER +FD: net/minecraft/world/level/block/Blocks/f_50356_ net/minecraft/world/level/block/Blocks/LILAC +FD: net/minecraft/world/level/block/Blocks/f_50357_ net/minecraft/world/level/block/Blocks/ROSE_BUSH +FD: net/minecraft/world/level/block/Blocks/f_50358_ net/minecraft/world/level/block/Blocks/PEONY +FD: net/minecraft/world/level/block/Blocks/f_50359_ net/minecraft/world/level/block/Blocks/TALL_GRASS +FD: net/minecraft/world/level/block/Blocks/f_50360_ net/minecraft/world/level/block/Blocks/LARGE_FERN +FD: net/minecraft/world/level/block/Blocks/f_50361_ net/minecraft/world/level/block/Blocks/LIME_STAINED_GLASS_PANE +FD: net/minecraft/world/level/block/Blocks/f_50362_ net/minecraft/world/level/block/Blocks/PINK_STAINED_GLASS_PANE +FD: net/minecraft/world/level/block/Blocks/f_50363_ net/minecraft/world/level/block/Blocks/GRAY_STAINED_GLASS_PANE +FD: net/minecraft/world/level/block/Blocks/f_50364_ net/minecraft/world/level/block/Blocks/LIGHT_GRAY_STAINED_GLASS_PANE +FD: net/minecraft/world/level/block/Blocks/f_50365_ net/minecraft/world/level/block/Blocks/CYAN_STAINED_GLASS_PANE +FD: net/minecraft/world/level/block/Blocks/f_50366_ net/minecraft/world/level/block/Blocks/PURPLE_STAINED_GLASS_PANE +FD: net/minecraft/world/level/block/Blocks/f_50367_ net/minecraft/world/level/block/Blocks/BLUE_STAINED_GLASS_PANE +FD: net/minecraft/world/level/block/Blocks/f_50368_ net/minecraft/world/level/block/Blocks/BROWN_STAINED_GLASS_PANE +FD: net/minecraft/world/level/block/Blocks/f_50369_ net/minecraft/world/level/block/Blocks/GREEN_STAINED_GLASS_PANE +FD: net/minecraft/world/level/block/Blocks/f_50370_ net/minecraft/world/level/block/Blocks/RED_STAINED_GLASS_PANE +FD: net/minecraft/world/level/block/Blocks/f_50371_ net/minecraft/world/level/block/Blocks/BLACK_STAINED_GLASS_PANE +FD: net/minecraft/world/level/block/Blocks/f_50372_ net/minecraft/world/level/block/Blocks/ACACIA_STAIRS +FD: net/minecraft/world/level/block/Blocks/f_50373_ net/minecraft/world/level/block/Blocks/DARK_OAK_STAIRS +FD: net/minecraft/world/level/block/Blocks/f_50374_ net/minecraft/world/level/block/Blocks/SLIME_BLOCK +FD: net/minecraft/world/level/block/Blocks/f_50375_ net/minecraft/world/level/block/Blocks/BARRIER +FD: net/minecraft/world/level/block/Blocks/f_50376_ net/minecraft/world/level/block/Blocks/IRON_TRAPDOOR +FD: net/minecraft/world/level/block/Blocks/f_50377_ net/minecraft/world/level/block/Blocks/PRISMARINE +FD: net/minecraft/world/level/block/Blocks/f_50378_ net/minecraft/world/level/block/Blocks/PRISMARINE_BRICKS +FD: net/minecraft/world/level/block/Blocks/f_50379_ net/minecraft/world/level/block/Blocks/DARK_PRISMARINE +FD: net/minecraft/world/level/block/Blocks/f_50380_ net/minecraft/world/level/block/Blocks/PRISMARINE_STAIRS +FD: net/minecraft/world/level/block/Blocks/f_50381_ net/minecraft/world/level/block/Blocks/PRISMARINE_BRICK_STAIRS +FD: net/minecraft/world/level/block/Blocks/f_50382_ net/minecraft/world/level/block/Blocks/DARK_PRISMARINE_STAIRS +FD: net/minecraft/world/level/block/Blocks/f_50383_ net/minecraft/world/level/block/Blocks/PRISMARINE_SLAB +FD: net/minecraft/world/level/block/Blocks/f_50384_ net/minecraft/world/level/block/Blocks/PRISMARINE_BRICK_SLAB +FD: net/minecraft/world/level/block/Blocks/f_50385_ net/minecraft/world/level/block/Blocks/DARK_PRISMARINE_SLAB +FD: net/minecraft/world/level/block/Blocks/f_50386_ net/minecraft/world/level/block/Blocks/SEA_LANTERN +FD: net/minecraft/world/level/block/Blocks/f_50387_ net/minecraft/world/level/block/Blocks/POLISHED_ANDESITE +FD: net/minecraft/world/level/block/Blocks/f_50388_ net/minecraft/world/level/block/Blocks/PURPLE_WALL_BANNER +FD: net/minecraft/world/level/block/Blocks/f_50389_ net/minecraft/world/level/block/Blocks/BLUE_WALL_BANNER +FD: net/minecraft/world/level/block/Blocks/f_50390_ net/minecraft/world/level/block/Blocks/BROWN_WALL_BANNER +FD: net/minecraft/world/level/block/Blocks/f_50391_ net/minecraft/world/level/block/Blocks/GREEN_WALL_BANNER +FD: net/minecraft/world/level/block/Blocks/f_50392_ net/minecraft/world/level/block/Blocks/RED_WALL_BANNER +FD: net/minecraft/world/level/block/Blocks/f_50393_ net/minecraft/world/level/block/Blocks/BLACK_WALL_BANNER +FD: net/minecraft/world/level/block/Blocks/f_50394_ net/minecraft/world/level/block/Blocks/RED_SANDSTONE +FD: net/minecraft/world/level/block/Blocks/f_50395_ net/minecraft/world/level/block/Blocks/CHISELED_RED_SANDSTONE +FD: net/minecraft/world/level/block/Blocks/f_50396_ net/minecraft/world/level/block/Blocks/CUT_RED_SANDSTONE +FD: net/minecraft/world/level/block/Blocks/f_50397_ net/minecraft/world/level/block/Blocks/RED_SANDSTONE_STAIRS +FD: net/minecraft/world/level/block/Blocks/f_50398_ net/minecraft/world/level/block/Blocks/OAK_SLAB +FD: net/minecraft/world/level/block/Blocks/f_50399_ net/minecraft/world/level/block/Blocks/SPRUCE_SLAB +FD: net/minecraft/world/level/block/Blocks/f_50400_ net/minecraft/world/level/block/Blocks/BIRCH_SLAB +FD: net/minecraft/world/level/block/Blocks/f_50401_ net/minecraft/world/level/block/Blocks/JUNGLE_SLAB +FD: net/minecraft/world/level/block/Blocks/f_50402_ net/minecraft/world/level/block/Blocks/ACACIA_SLAB +FD: net/minecraft/world/level/block/Blocks/f_50403_ net/minecraft/world/level/block/Blocks/DARK_OAK_SLAB +FD: net/minecraft/world/level/block/Blocks/f_50404_ net/minecraft/world/level/block/Blocks/STONE_SLAB +FD: net/minecraft/world/level/block/Blocks/f_50405_ net/minecraft/world/level/block/Blocks/SMOOTH_STONE_SLAB +FD: net/minecraft/world/level/block/Blocks/f_50406_ net/minecraft/world/level/block/Blocks/SANDSTONE_SLAB +FD: net/minecraft/world/level/block/Blocks/f_50407_ net/minecraft/world/level/block/Blocks/CUT_SANDSTONE_SLAB +FD: net/minecraft/world/level/block/Blocks/f_50408_ net/minecraft/world/level/block/Blocks/PETRIFIED_OAK_SLAB +FD: net/minecraft/world/level/block/Blocks/f_50409_ net/minecraft/world/level/block/Blocks/COBBLESTONE_SLAB +FD: net/minecraft/world/level/block/Blocks/f_50410_ net/minecraft/world/level/block/Blocks/BRICK_SLAB +FD: net/minecraft/world/level/block/Blocks/f_50411_ net/minecraft/world/level/block/Blocks/STONE_BRICK_SLAB +FD: net/minecraft/world/level/block/Blocks/f_50412_ net/minecraft/world/level/block/Blocks/NETHER_BRICK_SLAB +FD: net/minecraft/world/level/block/Blocks/f_50413_ net/minecraft/world/level/block/Blocks/QUARTZ_SLAB +FD: net/minecraft/world/level/block/Blocks/f_50414_ net/minecraft/world/level/block/Blocks/WHITE_BANNER +FD: net/minecraft/world/level/block/Blocks/f_50415_ net/minecraft/world/level/block/Blocks/ORANGE_BANNER +FD: net/minecraft/world/level/block/Blocks/f_50416_ net/minecraft/world/level/block/Blocks/MAGENTA_BANNER +FD: net/minecraft/world/level/block/Blocks/f_50417_ net/minecraft/world/level/block/Blocks/LIGHT_BLUE_BANNER +FD: net/minecraft/world/level/block/Blocks/f_50418_ net/minecraft/world/level/block/Blocks/YELLOW_BANNER +FD: net/minecraft/world/level/block/Blocks/f_50419_ net/minecraft/world/level/block/Blocks/LIME_BANNER +FD: net/minecraft/world/level/block/Blocks/f_50420_ net/minecraft/world/level/block/Blocks/PINK_BANNER +FD: net/minecraft/world/level/block/Blocks/f_50421_ net/minecraft/world/level/block/Blocks/GRAY_BANNER +FD: net/minecraft/world/level/block/Blocks/f_50422_ net/minecraft/world/level/block/Blocks/LIGHT_GRAY_BANNER +FD: net/minecraft/world/level/block/Blocks/f_50423_ net/minecraft/world/level/block/Blocks/CYAN_BANNER +FD: net/minecraft/world/level/block/Blocks/f_50424_ net/minecraft/world/level/block/Blocks/PURPLE_BANNER +FD: net/minecraft/world/level/block/Blocks/f_50425_ net/minecraft/world/level/block/Blocks/BLUE_BANNER +FD: net/minecraft/world/level/block/Blocks/f_50426_ net/minecraft/world/level/block/Blocks/BROWN_BANNER +FD: net/minecraft/world/level/block/Blocks/f_50427_ net/minecraft/world/level/block/Blocks/GREEN_BANNER +FD: net/minecraft/world/level/block/Blocks/f_50428_ net/minecraft/world/level/block/Blocks/RED_BANNER +FD: net/minecraft/world/level/block/Blocks/f_50429_ net/minecraft/world/level/block/Blocks/BLACK_BANNER +FD: net/minecraft/world/level/block/Blocks/f_50430_ net/minecraft/world/level/block/Blocks/WHITE_WALL_BANNER +FD: net/minecraft/world/level/block/Blocks/f_50431_ net/minecraft/world/level/block/Blocks/ORANGE_WALL_BANNER +FD: net/minecraft/world/level/block/Blocks/f_50432_ net/minecraft/world/level/block/Blocks/MAGENTA_WALL_BANNER +FD: net/minecraft/world/level/block/Blocks/f_50433_ net/minecraft/world/level/block/Blocks/LIGHT_BLUE_WALL_BANNER +FD: net/minecraft/world/level/block/Blocks/f_50434_ net/minecraft/world/level/block/Blocks/YELLOW_WALL_BANNER +FD: net/minecraft/world/level/block/Blocks/f_50435_ net/minecraft/world/level/block/Blocks/LIME_WALL_BANNER +FD: net/minecraft/world/level/block/Blocks/f_50436_ net/minecraft/world/level/block/Blocks/PINK_WALL_BANNER +FD: net/minecraft/world/level/block/Blocks/f_50437_ net/minecraft/world/level/block/Blocks/GRAY_WALL_BANNER +FD: net/minecraft/world/level/block/Blocks/f_50438_ net/minecraft/world/level/block/Blocks/LIGHT_GRAY_WALL_BANNER +FD: net/minecraft/world/level/block/Blocks/f_50439_ net/minecraft/world/level/block/Blocks/CYAN_WALL_BANNER +FD: net/minecraft/world/level/block/Blocks/f_50440_ net/minecraft/world/level/block/Blocks/GRASS_BLOCK +FD: net/minecraft/world/level/block/Blocks/f_50441_ net/minecraft/world/level/block/Blocks/PURPUR_PILLAR +FD: net/minecraft/world/level/block/Blocks/f_50442_ net/minecraft/world/level/block/Blocks/PURPUR_STAIRS +FD: net/minecraft/world/level/block/Blocks/f_50443_ net/minecraft/world/level/block/Blocks/END_STONE_BRICKS +FD: net/minecraft/world/level/block/Blocks/f_50444_ net/minecraft/world/level/block/Blocks/BEETROOTS +FD: net/minecraft/world/level/block/Blocks/f_50446_ net/minecraft/world/level/block/Blocks/END_GATEWAY +FD: net/minecraft/world/level/block/Blocks/f_50447_ net/minecraft/world/level/block/Blocks/REPEATING_COMMAND_BLOCK +FD: net/minecraft/world/level/block/Blocks/f_50448_ net/minecraft/world/level/block/Blocks/CHAIN_COMMAND_BLOCK +FD: net/minecraft/world/level/block/Blocks/f_50449_ net/minecraft/world/level/block/Blocks/FROSTED_ICE +FD: net/minecraft/world/level/block/Blocks/f_50450_ net/minecraft/world/level/block/Blocks/MAGMA_BLOCK +FD: net/minecraft/world/level/block/Blocks/f_50451_ net/minecraft/world/level/block/Blocks/NETHER_WART_BLOCK +FD: net/minecraft/world/level/block/Blocks/f_50452_ net/minecraft/world/level/block/Blocks/RED_NETHER_BRICKS +FD: net/minecraft/world/level/block/Blocks/f_50453_ net/minecraft/world/level/block/Blocks/BONE_BLOCK +FD: net/minecraft/world/level/block/Blocks/f_50454_ net/minecraft/world/level/block/Blocks/STRUCTURE_VOID +FD: net/minecraft/world/level/block/Blocks/f_50455_ net/minecraft/world/level/block/Blocks/OBSERVER +FD: net/minecraft/world/level/block/Blocks/f_50456_ net/minecraft/world/level/block/Blocks/SHULKER_BOX +FD: net/minecraft/world/level/block/Blocks/f_50457_ net/minecraft/world/level/block/Blocks/WHITE_SHULKER_BOX +FD: net/minecraft/world/level/block/Blocks/f_50458_ net/minecraft/world/level/block/Blocks/ORANGE_SHULKER_BOX +FD: net/minecraft/world/level/block/Blocks/f_50459_ net/minecraft/world/level/block/Blocks/MAGENTA_SHULKER_BOX +FD: net/minecraft/world/level/block/Blocks/f_50460_ net/minecraft/world/level/block/Blocks/LIGHT_BLUE_SHULKER_BOX +FD: net/minecraft/world/level/block/Blocks/f_50461_ net/minecraft/world/level/block/Blocks/YELLOW_SHULKER_BOX +FD: net/minecraft/world/level/block/Blocks/f_50462_ net/minecraft/world/level/block/Blocks/LIME_SHULKER_BOX +FD: net/minecraft/world/level/block/Blocks/f_50463_ net/minecraft/world/level/block/Blocks/PINK_SHULKER_BOX +FD: net/minecraft/world/level/block/Blocks/f_50464_ net/minecraft/world/level/block/Blocks/GRAY_SHULKER_BOX +FD: net/minecraft/world/level/block/Blocks/f_50465_ net/minecraft/world/level/block/Blocks/LIGHT_GRAY_SHULKER_BOX +FD: net/minecraft/world/level/block/Blocks/f_50466_ net/minecraft/world/level/block/Blocks/CYAN_SHULKER_BOX +FD: net/minecraft/world/level/block/Blocks/f_50467_ net/minecraft/world/level/block/Blocks/RED_SANDSTONE_SLAB +FD: net/minecraft/world/level/block/Blocks/f_50468_ net/minecraft/world/level/block/Blocks/CUT_RED_SANDSTONE_SLAB +FD: net/minecraft/world/level/block/Blocks/f_50469_ net/minecraft/world/level/block/Blocks/PURPUR_SLAB +FD: net/minecraft/world/level/block/Blocks/f_50470_ net/minecraft/world/level/block/Blocks/SMOOTH_STONE +FD: net/minecraft/world/level/block/Blocks/f_50471_ net/minecraft/world/level/block/Blocks/SMOOTH_SANDSTONE +FD: net/minecraft/world/level/block/Blocks/f_50472_ net/minecraft/world/level/block/Blocks/SMOOTH_QUARTZ +FD: net/minecraft/world/level/block/Blocks/f_50473_ net/minecraft/world/level/block/Blocks/SMOOTH_RED_SANDSTONE +FD: net/minecraft/world/level/block/Blocks/f_50474_ net/minecraft/world/level/block/Blocks/SPRUCE_FENCE_GATE +FD: net/minecraft/world/level/block/Blocks/f_50475_ net/minecraft/world/level/block/Blocks/BIRCH_FENCE_GATE +FD: net/minecraft/world/level/block/Blocks/f_50476_ net/minecraft/world/level/block/Blocks/JUNGLE_FENCE_GATE +FD: net/minecraft/world/level/block/Blocks/f_50477_ net/minecraft/world/level/block/Blocks/ACACIA_FENCE_GATE +FD: net/minecraft/world/level/block/Blocks/f_50478_ net/minecraft/world/level/block/Blocks/DARK_OAK_FENCE_GATE +FD: net/minecraft/world/level/block/Blocks/f_50479_ net/minecraft/world/level/block/Blocks/SPRUCE_FENCE +FD: net/minecraft/world/level/block/Blocks/f_50480_ net/minecraft/world/level/block/Blocks/BIRCH_FENCE +FD: net/minecraft/world/level/block/Blocks/f_50481_ net/minecraft/world/level/block/Blocks/JUNGLE_FENCE +FD: net/minecraft/world/level/block/Blocks/f_50482_ net/minecraft/world/level/block/Blocks/ACACIA_FENCE +FD: net/minecraft/world/level/block/Blocks/f_50483_ net/minecraft/world/level/block/Blocks/DARK_OAK_FENCE +FD: net/minecraft/world/level/block/Blocks/f_50484_ net/minecraft/world/level/block/Blocks/SPRUCE_DOOR +FD: net/minecraft/world/level/block/Blocks/f_50485_ net/minecraft/world/level/block/Blocks/BIRCH_DOOR +FD: net/minecraft/world/level/block/Blocks/f_50486_ net/minecraft/world/level/block/Blocks/JUNGLE_DOOR +FD: net/minecraft/world/level/block/Blocks/f_50487_ net/minecraft/world/level/block/Blocks/ACACIA_DOOR +FD: net/minecraft/world/level/block/Blocks/f_50488_ net/minecraft/world/level/block/Blocks/DARK_OAK_DOOR +FD: net/minecraft/world/level/block/Blocks/f_50489_ net/minecraft/world/level/block/Blocks/END_ROD +FD: net/minecraft/world/level/block/Blocks/f_50490_ net/minecraft/world/level/block/Blocks/CHORUS_PLANT +FD: net/minecraft/world/level/block/Blocks/f_50491_ net/minecraft/world/level/block/Blocks/CHORUS_FLOWER +FD: net/minecraft/world/level/block/Blocks/f_50492_ net/minecraft/world/level/block/Blocks/PURPUR_BLOCK +FD: net/minecraft/world/level/block/Blocks/f_50493_ net/minecraft/world/level/block/Blocks/DIRT +FD: net/minecraft/world/level/block/Blocks/f_50494_ net/minecraft/world/level/block/Blocks/YELLOW_CONCRETE +FD: net/minecraft/world/level/block/Blocks/f_50495_ net/minecraft/world/level/block/Blocks/LIME_CONCRETE +FD: net/minecraft/world/level/block/Blocks/f_50496_ net/minecraft/world/level/block/Blocks/PINK_CONCRETE +FD: net/minecraft/world/level/block/Blocks/f_50497_ net/minecraft/world/level/block/Blocks/GRAY_CONCRETE +FD: net/minecraft/world/level/block/Blocks/f_50498_ net/minecraft/world/level/block/Blocks/LIGHT_GRAY_CONCRETE +FD: net/minecraft/world/level/block/Blocks/f_50499_ net/minecraft/world/level/block/Blocks/CYAN_CONCRETE +FD: net/minecraft/world/level/block/Blocks/f_50500_ net/minecraft/world/level/block/Blocks/PURPLE_CONCRETE +FD: net/minecraft/world/level/block/Blocks/f_50501_ net/minecraft/world/level/block/Blocks/BLUE_CONCRETE +FD: net/minecraft/world/level/block/Blocks/f_50502_ net/minecraft/world/level/block/Blocks/BROWN_CONCRETE +FD: net/minecraft/world/level/block/Blocks/f_50503_ net/minecraft/world/level/block/Blocks/GREEN_CONCRETE +FD: net/minecraft/world/level/block/Blocks/f_50504_ net/minecraft/world/level/block/Blocks/RED_CONCRETE +FD: net/minecraft/world/level/block/Blocks/f_50505_ net/minecraft/world/level/block/Blocks/BLACK_CONCRETE +FD: net/minecraft/world/level/block/Blocks/f_50506_ net/minecraft/world/level/block/Blocks/WHITE_CONCRETE_POWDER +FD: net/minecraft/world/level/block/Blocks/f_50507_ net/minecraft/world/level/block/Blocks/ORANGE_CONCRETE_POWDER +FD: net/minecraft/world/level/block/Blocks/f_50508_ net/minecraft/world/level/block/Blocks/MAGENTA_CONCRETE_POWDER +FD: net/minecraft/world/level/block/Blocks/f_50509_ net/minecraft/world/level/block/Blocks/LIGHT_BLUE_CONCRETE_POWDER +FD: net/minecraft/world/level/block/Blocks/f_50510_ net/minecraft/world/level/block/Blocks/YELLOW_CONCRETE_POWDER +FD: net/minecraft/world/level/block/Blocks/f_50511_ net/minecraft/world/level/block/Blocks/LIME_CONCRETE_POWDER +FD: net/minecraft/world/level/block/Blocks/f_50512_ net/minecraft/world/level/block/Blocks/PINK_CONCRETE_POWDER +FD: net/minecraft/world/level/block/Blocks/f_50513_ net/minecraft/world/level/block/Blocks/GRAY_CONCRETE_POWDER +FD: net/minecraft/world/level/block/Blocks/f_50514_ net/minecraft/world/level/block/Blocks/LIGHT_GRAY_CONCRETE_POWDER +FD: net/minecraft/world/level/block/Blocks/f_50515_ net/minecraft/world/level/block/Blocks/CYAN_CONCRETE_POWDER +FD: net/minecraft/world/level/block/Blocks/f_50516_ net/minecraft/world/level/block/Blocks/PURPLE_CONCRETE_POWDER +FD: net/minecraft/world/level/block/Blocks/f_50517_ net/minecraft/world/level/block/Blocks/BLUE_CONCRETE_POWDER +FD: net/minecraft/world/level/block/Blocks/f_50518_ net/minecraft/world/level/block/Blocks/BROWN_CONCRETE_POWDER +FD: net/minecraft/world/level/block/Blocks/f_50519_ net/minecraft/world/level/block/Blocks/GREEN_CONCRETE_POWDER +FD: net/minecraft/world/level/block/Blocks/f_50520_ net/minecraft/world/level/block/Blocks/PURPLE_SHULKER_BOX +FD: net/minecraft/world/level/block/Blocks/f_50521_ net/minecraft/world/level/block/Blocks/BLUE_SHULKER_BOX +FD: net/minecraft/world/level/block/Blocks/f_50522_ net/minecraft/world/level/block/Blocks/BROWN_SHULKER_BOX +FD: net/minecraft/world/level/block/Blocks/f_50523_ net/minecraft/world/level/block/Blocks/GREEN_SHULKER_BOX +FD: net/minecraft/world/level/block/Blocks/f_50524_ net/minecraft/world/level/block/Blocks/RED_SHULKER_BOX +FD: net/minecraft/world/level/block/Blocks/f_50525_ net/minecraft/world/level/block/Blocks/BLACK_SHULKER_BOX +FD: net/minecraft/world/level/block/Blocks/f_50526_ net/minecraft/world/level/block/Blocks/WHITE_GLAZED_TERRACOTTA +FD: net/minecraft/world/level/block/Blocks/f_50527_ net/minecraft/world/level/block/Blocks/ORANGE_GLAZED_TERRACOTTA +FD: net/minecraft/world/level/block/Blocks/f_50528_ net/minecraft/world/level/block/Blocks/MAGENTA_GLAZED_TERRACOTTA +FD: net/minecraft/world/level/block/Blocks/f_50529_ net/minecraft/world/level/block/Blocks/LIGHT_BLUE_GLAZED_TERRACOTTA +FD: net/minecraft/world/level/block/Blocks/f_50530_ net/minecraft/world/level/block/Blocks/YELLOW_GLAZED_TERRACOTTA +FD: net/minecraft/world/level/block/Blocks/f_50531_ net/minecraft/world/level/block/Blocks/LIME_GLAZED_TERRACOTTA +FD: net/minecraft/world/level/block/Blocks/f_50532_ net/minecraft/world/level/block/Blocks/PINK_GLAZED_TERRACOTTA +FD: net/minecraft/world/level/block/Blocks/f_50533_ net/minecraft/world/level/block/Blocks/GRAY_GLAZED_TERRACOTTA +FD: net/minecraft/world/level/block/Blocks/f_50534_ net/minecraft/world/level/block/Blocks/LIGHT_GRAY_GLAZED_TERRACOTTA +FD: net/minecraft/world/level/block/Blocks/f_50535_ net/minecraft/world/level/block/Blocks/CYAN_GLAZED_TERRACOTTA +FD: net/minecraft/world/level/block/Blocks/f_50536_ net/minecraft/world/level/block/Blocks/PURPLE_GLAZED_TERRACOTTA +FD: net/minecraft/world/level/block/Blocks/f_50537_ net/minecraft/world/level/block/Blocks/BLUE_GLAZED_TERRACOTTA +FD: net/minecraft/world/level/block/Blocks/f_50538_ net/minecraft/world/level/block/Blocks/BROWN_GLAZED_TERRACOTTA +FD: net/minecraft/world/level/block/Blocks/f_50539_ net/minecraft/world/level/block/Blocks/GREEN_GLAZED_TERRACOTTA +FD: net/minecraft/world/level/block/Blocks/f_50540_ net/minecraft/world/level/block/Blocks/RED_GLAZED_TERRACOTTA +FD: net/minecraft/world/level/block/Blocks/f_50541_ net/minecraft/world/level/block/Blocks/BLACK_GLAZED_TERRACOTTA +FD: net/minecraft/world/level/block/Blocks/f_50542_ net/minecraft/world/level/block/Blocks/WHITE_CONCRETE +FD: net/minecraft/world/level/block/Blocks/f_50543_ net/minecraft/world/level/block/Blocks/ORANGE_CONCRETE +FD: net/minecraft/world/level/block/Blocks/f_50544_ net/minecraft/world/level/block/Blocks/MAGENTA_CONCRETE +FD: net/minecraft/world/level/block/Blocks/f_50545_ net/minecraft/world/level/block/Blocks/LIGHT_BLUE_CONCRETE +FD: net/minecraft/world/level/block/Blocks/f_50546_ net/minecraft/world/level/block/Blocks/COARSE_DIRT +FD: net/minecraft/world/level/block/Blocks/f_50547_ net/minecraft/world/level/block/Blocks/DEAD_TUBE_CORAL_FAN +FD: net/minecraft/world/level/block/Blocks/f_50548_ net/minecraft/world/level/block/Blocks/DEAD_BRAIN_CORAL_FAN +FD: net/minecraft/world/level/block/Blocks/f_50549_ net/minecraft/world/level/block/Blocks/DEAD_BUBBLE_CORAL_FAN +FD: net/minecraft/world/level/block/Blocks/f_50550_ net/minecraft/world/level/block/Blocks/DEAD_FIRE_CORAL_FAN +FD: net/minecraft/world/level/block/Blocks/f_50551_ net/minecraft/world/level/block/Blocks/DEAD_HORN_CORAL_FAN +FD: net/minecraft/world/level/block/Blocks/f_50552_ net/minecraft/world/level/block/Blocks/TUBE_CORAL_FAN +FD: net/minecraft/world/level/block/Blocks/f_50553_ net/minecraft/world/level/block/Blocks/BRAIN_CORAL_FAN +FD: net/minecraft/world/level/block/Blocks/f_50554_ net/minecraft/world/level/block/Blocks/BUBBLE_CORAL_FAN +FD: net/minecraft/world/level/block/Blocks/f_50555_ net/minecraft/world/level/block/Blocks/FIRE_CORAL_FAN +FD: net/minecraft/world/level/block/Blocks/f_50556_ net/minecraft/world/level/block/Blocks/HORN_CORAL_FAN +FD: net/minecraft/world/level/block/Blocks/f_50557_ net/minecraft/world/level/block/Blocks/DEAD_TUBE_CORAL_WALL_FAN +FD: net/minecraft/world/level/block/Blocks/f_50558_ net/minecraft/world/level/block/Blocks/DEAD_BRAIN_CORAL_WALL_FAN +FD: net/minecraft/world/level/block/Blocks/f_50559_ net/minecraft/world/level/block/Blocks/DEAD_BUBBLE_CORAL_WALL_FAN +FD: net/minecraft/world/level/block/Blocks/f_50560_ net/minecraft/world/level/block/Blocks/DEAD_FIRE_CORAL_WALL_FAN +FD: net/minecraft/world/level/block/Blocks/f_50561_ net/minecraft/world/level/block/Blocks/DEAD_HORN_CORAL_WALL_FAN +FD: net/minecraft/world/level/block/Blocks/f_50562_ net/minecraft/world/level/block/Blocks/TUBE_CORAL_WALL_FAN +FD: net/minecraft/world/level/block/Blocks/f_50563_ net/minecraft/world/level/block/Blocks/BRAIN_CORAL_WALL_FAN +FD: net/minecraft/world/level/block/Blocks/f_50564_ net/minecraft/world/level/block/Blocks/BUBBLE_CORAL_WALL_FAN +FD: net/minecraft/world/level/block/Blocks/f_50565_ net/minecraft/world/level/block/Blocks/FIRE_CORAL_WALL_FAN +FD: net/minecraft/world/level/block/Blocks/f_50566_ net/minecraft/world/level/block/Blocks/HORN_CORAL_WALL_FAN +FD: net/minecraft/world/level/block/Blocks/f_50567_ net/minecraft/world/level/block/Blocks/SEA_PICKLE +FD: net/minecraft/world/level/block/Blocks/f_50568_ net/minecraft/world/level/block/Blocks/BLUE_ICE +FD: net/minecraft/world/level/block/Blocks/f_50569_ net/minecraft/world/level/block/Blocks/CONDUIT +FD: net/minecraft/world/level/block/Blocks/f_50570_ net/minecraft/world/level/block/Blocks/BAMBOO_SAPLING +FD: net/minecraft/world/level/block/Blocks/f_50571_ net/minecraft/world/level/block/Blocks/BAMBOO +FD: net/minecraft/world/level/block/Blocks/f_50572_ net/minecraft/world/level/block/Blocks/POTTED_BAMBOO +FD: net/minecraft/world/level/block/Blocks/f_50573_ net/minecraft/world/level/block/Blocks/RED_CONCRETE_POWDER +FD: net/minecraft/world/level/block/Blocks/f_50574_ net/minecraft/world/level/block/Blocks/BLACK_CONCRETE_POWDER +FD: net/minecraft/world/level/block/Blocks/f_50575_ net/minecraft/world/level/block/Blocks/KELP +FD: net/minecraft/world/level/block/Blocks/f_50576_ net/minecraft/world/level/block/Blocks/KELP_PLANT +FD: net/minecraft/world/level/block/Blocks/f_50577_ net/minecraft/world/level/block/Blocks/DRIED_KELP_BLOCK +FD: net/minecraft/world/level/block/Blocks/f_50578_ net/minecraft/world/level/block/Blocks/TURTLE_EGG +FD: net/minecraft/world/level/block/Blocks/f_50579_ net/minecraft/world/level/block/Blocks/DEAD_TUBE_CORAL_BLOCK +FD: net/minecraft/world/level/block/Blocks/f_50580_ net/minecraft/world/level/block/Blocks/DEAD_BRAIN_CORAL_BLOCK +FD: net/minecraft/world/level/block/Blocks/f_50581_ net/minecraft/world/level/block/Blocks/DEAD_BUBBLE_CORAL_BLOCK +FD: net/minecraft/world/level/block/Blocks/f_50582_ net/minecraft/world/level/block/Blocks/DEAD_FIRE_CORAL_BLOCK +FD: net/minecraft/world/level/block/Blocks/f_50583_ net/minecraft/world/level/block/Blocks/DEAD_HORN_CORAL_BLOCK +FD: net/minecraft/world/level/block/Blocks/f_50584_ net/minecraft/world/level/block/Blocks/TUBE_CORAL_BLOCK +FD: net/minecraft/world/level/block/Blocks/f_50585_ net/minecraft/world/level/block/Blocks/BRAIN_CORAL_BLOCK +FD: net/minecraft/world/level/block/Blocks/f_50586_ net/minecraft/world/level/block/Blocks/BUBBLE_CORAL_BLOCK +FD: net/minecraft/world/level/block/Blocks/f_50587_ net/minecraft/world/level/block/Blocks/FIRE_CORAL_BLOCK +FD: net/minecraft/world/level/block/Blocks/f_50588_ net/minecraft/world/level/block/Blocks/HORN_CORAL_BLOCK +FD: net/minecraft/world/level/block/Blocks/f_50589_ net/minecraft/world/level/block/Blocks/DEAD_TUBE_CORAL +FD: net/minecraft/world/level/block/Blocks/f_50590_ net/minecraft/world/level/block/Blocks/DEAD_BRAIN_CORAL +FD: net/minecraft/world/level/block/Blocks/f_50591_ net/minecraft/world/level/block/Blocks/DEAD_BUBBLE_CORAL +FD: net/minecraft/world/level/block/Blocks/f_50592_ net/minecraft/world/level/block/Blocks/DEAD_FIRE_CORAL +FD: net/minecraft/world/level/block/Blocks/f_50593_ net/minecraft/world/level/block/Blocks/DEAD_HORN_CORAL +FD: net/minecraft/world/level/block/Blocks/f_50594_ net/minecraft/world/level/block/Blocks/TUBE_CORAL +FD: net/minecraft/world/level/block/Blocks/f_50595_ net/minecraft/world/level/block/Blocks/BRAIN_CORAL +FD: net/minecraft/world/level/block/Blocks/f_50596_ net/minecraft/world/level/block/Blocks/BUBBLE_CORAL +FD: net/minecraft/world/level/block/Blocks/f_50597_ net/minecraft/world/level/block/Blocks/FIRE_CORAL +FD: net/minecraft/world/level/block/Blocks/f_50598_ net/minecraft/world/level/block/Blocks/HORN_CORAL +FD: net/minecraft/world/level/block/Blocks/f_50599_ net/minecraft/world/level/block/Blocks/PODZOL +FD: net/minecraft/world/level/block/Blocks/f_50600_ net/minecraft/world/level/block/Blocks/ANDESITE_SLAB +FD: net/minecraft/world/level/block/Blocks/f_50601_ net/minecraft/world/level/block/Blocks/RED_NETHER_BRICK_SLAB +FD: net/minecraft/world/level/block/Blocks/f_50602_ net/minecraft/world/level/block/Blocks/POLISHED_ANDESITE_SLAB +FD: net/minecraft/world/level/block/Blocks/f_50603_ net/minecraft/world/level/block/Blocks/DIORITE_SLAB +FD: net/minecraft/world/level/block/Blocks/f_50604_ net/minecraft/world/level/block/Blocks/BRICK_WALL +FD: net/minecraft/world/level/block/Blocks/f_50605_ net/minecraft/world/level/block/Blocks/PRISMARINE_WALL +FD: net/minecraft/world/level/block/Blocks/f_50606_ net/minecraft/world/level/block/Blocks/RED_SANDSTONE_WALL +FD: net/minecraft/world/level/block/Blocks/f_50607_ net/minecraft/world/level/block/Blocks/MOSSY_STONE_BRICK_WALL +FD: net/minecraft/world/level/block/Blocks/f_50608_ net/minecraft/world/level/block/Blocks/GRANITE_WALL +FD: net/minecraft/world/level/block/Blocks/f_50609_ net/minecraft/world/level/block/Blocks/STONE_BRICK_WALL +FD: net/minecraft/world/level/block/Blocks/f_50610_ net/minecraft/world/level/block/Blocks/NETHER_BRICK_WALL +FD: net/minecraft/world/level/block/Blocks/f_50611_ net/minecraft/world/level/block/Blocks/ANDESITE_WALL +FD: net/minecraft/world/level/block/Blocks/f_50612_ net/minecraft/world/level/block/Blocks/RED_NETHER_BRICK_WALL +FD: net/minecraft/world/level/block/Blocks/f_50613_ net/minecraft/world/level/block/Blocks/SANDSTONE_WALL +FD: net/minecraft/world/level/block/Blocks/f_50614_ net/minecraft/world/level/block/Blocks/END_STONE_BRICK_WALL +FD: net/minecraft/world/level/block/Blocks/f_50615_ net/minecraft/world/level/block/Blocks/DIORITE_WALL +FD: net/minecraft/world/level/block/Blocks/f_50616_ net/minecraft/world/level/block/Blocks/SCAFFOLDING +FD: net/minecraft/world/level/block/Blocks/f_50617_ net/minecraft/world/level/block/Blocks/LOOM +FD: net/minecraft/world/level/block/Blocks/f_50618_ net/minecraft/world/level/block/Blocks/BARREL +FD: net/minecraft/world/level/block/Blocks/f_50619_ net/minecraft/world/level/block/Blocks/SMOKER +FD: net/minecraft/world/level/block/Blocks/f_50620_ net/minecraft/world/level/block/Blocks/BLAST_FURNACE +FD: net/minecraft/world/level/block/Blocks/f_50621_ net/minecraft/world/level/block/Blocks/CARTOGRAPHY_TABLE +FD: net/minecraft/world/level/block/Blocks/f_50622_ net/minecraft/world/level/block/Blocks/FLETCHING_TABLE +FD: net/minecraft/world/level/block/Blocks/f_50623_ net/minecraft/world/level/block/Blocks/GRINDSTONE +FD: net/minecraft/world/level/block/Blocks/f_50624_ net/minecraft/world/level/block/Blocks/LECTERN +FD: net/minecraft/world/level/block/Blocks/f_50625_ net/minecraft/world/level/block/Blocks/SMITHING_TABLE +FD: net/minecraft/world/level/block/Blocks/f_50626_ net/minecraft/world/level/block/Blocks/VOID_AIR +FD: net/minecraft/world/level/block/Blocks/f_50627_ net/minecraft/world/level/block/Blocks/CAVE_AIR +FD: net/minecraft/world/level/block/Blocks/f_50628_ net/minecraft/world/level/block/Blocks/BUBBLE_COLUMN +FD: net/minecraft/world/level/block/Blocks/f_50629_ net/minecraft/world/level/block/Blocks/POLISHED_GRANITE_STAIRS +FD: net/minecraft/world/level/block/Blocks/f_50630_ net/minecraft/world/level/block/Blocks/SMOOTH_RED_SANDSTONE_STAIRS +FD: net/minecraft/world/level/block/Blocks/f_50631_ net/minecraft/world/level/block/Blocks/MOSSY_STONE_BRICK_STAIRS +FD: net/minecraft/world/level/block/Blocks/f_50632_ net/minecraft/world/level/block/Blocks/POLISHED_DIORITE_STAIRS +FD: net/minecraft/world/level/block/Blocks/f_50633_ net/minecraft/world/level/block/Blocks/MOSSY_COBBLESTONE_STAIRS +FD: net/minecraft/world/level/block/Blocks/f_50634_ net/minecraft/world/level/block/Blocks/END_STONE_BRICK_STAIRS +FD: net/minecraft/world/level/block/Blocks/f_50635_ net/minecraft/world/level/block/Blocks/STONE_STAIRS +FD: net/minecraft/world/level/block/Blocks/f_50636_ net/minecraft/world/level/block/Blocks/SMOOTH_SANDSTONE_STAIRS +FD: net/minecraft/world/level/block/Blocks/f_50637_ net/minecraft/world/level/block/Blocks/SMOOTH_QUARTZ_STAIRS +FD: net/minecraft/world/level/block/Blocks/f_50638_ net/minecraft/world/level/block/Blocks/GRANITE_STAIRS +FD: net/minecraft/world/level/block/Blocks/f_50639_ net/minecraft/world/level/block/Blocks/ANDESITE_STAIRS +FD: net/minecraft/world/level/block/Blocks/f_50640_ net/minecraft/world/level/block/Blocks/RED_NETHER_BRICK_STAIRS +FD: net/minecraft/world/level/block/Blocks/f_50641_ net/minecraft/world/level/block/Blocks/POLISHED_ANDESITE_STAIRS +FD: net/minecraft/world/level/block/Blocks/f_50642_ net/minecraft/world/level/block/Blocks/DIORITE_STAIRS +FD: net/minecraft/world/level/block/Blocks/f_50643_ net/minecraft/world/level/block/Blocks/POLISHED_GRANITE_SLAB +FD: net/minecraft/world/level/block/Blocks/f_50644_ net/minecraft/world/level/block/Blocks/SMOOTH_RED_SANDSTONE_SLAB +FD: net/minecraft/world/level/block/Blocks/f_50645_ net/minecraft/world/level/block/Blocks/MOSSY_STONE_BRICK_SLAB +FD: net/minecraft/world/level/block/Blocks/f_50646_ net/minecraft/world/level/block/Blocks/POLISHED_DIORITE_SLAB +FD: net/minecraft/world/level/block/Blocks/f_50647_ net/minecraft/world/level/block/Blocks/MOSSY_COBBLESTONE_SLAB +FD: net/minecraft/world/level/block/Blocks/f_50648_ net/minecraft/world/level/block/Blocks/END_STONE_BRICK_SLAB +FD: net/minecraft/world/level/block/Blocks/f_50649_ net/minecraft/world/level/block/Blocks/SMOOTH_SANDSTONE_SLAB +FD: net/minecraft/world/level/block/Blocks/f_50650_ net/minecraft/world/level/block/Blocks/SMOOTH_QUARTZ_SLAB +FD: net/minecraft/world/level/block/Blocks/f_50651_ net/minecraft/world/level/block/Blocks/GRANITE_SLAB +FD: net/minecraft/world/level/block/Blocks/f_50652_ net/minecraft/world/level/block/Blocks/COBBLESTONE +FD: net/minecraft/world/level/block/Blocks/f_50653_ net/minecraft/world/level/block/Blocks/TWISTING_VINES_PLANT +FD: net/minecraft/world/level/block/Blocks/f_50654_ net/minecraft/world/level/block/Blocks/CRIMSON_ROOTS +FD: net/minecraft/world/level/block/Blocks/f_50655_ net/minecraft/world/level/block/Blocks/CRIMSON_PLANKS +FD: net/minecraft/world/level/block/Blocks/f_50656_ net/minecraft/world/level/block/Blocks/WARPED_PLANKS +FD: net/minecraft/world/level/block/Blocks/f_50657_ net/minecraft/world/level/block/Blocks/CRIMSON_SLAB +FD: net/minecraft/world/level/block/Blocks/f_50658_ net/minecraft/world/level/block/Blocks/WARPED_SLAB +FD: net/minecraft/world/level/block/Blocks/f_50659_ net/minecraft/world/level/block/Blocks/CRIMSON_PRESSURE_PLATE +FD: net/minecraft/world/level/block/Blocks/f_50660_ net/minecraft/world/level/block/Blocks/WARPED_PRESSURE_PLATE +FD: net/minecraft/world/level/block/Blocks/f_50661_ net/minecraft/world/level/block/Blocks/CRIMSON_FENCE +FD: net/minecraft/world/level/block/Blocks/f_50662_ net/minecraft/world/level/block/Blocks/WARPED_FENCE +FD: net/minecraft/world/level/block/Blocks/f_50663_ net/minecraft/world/level/block/Blocks/CRIMSON_TRAPDOOR +FD: net/minecraft/world/level/block/Blocks/f_50664_ net/minecraft/world/level/block/Blocks/WARPED_TRAPDOOR +FD: net/minecraft/world/level/block/Blocks/f_50665_ net/minecraft/world/level/block/Blocks/CRIMSON_FENCE_GATE +FD: net/minecraft/world/level/block/Blocks/f_50666_ net/minecraft/world/level/block/Blocks/WARPED_FENCE_GATE +FD: net/minecraft/world/level/block/Blocks/f_50667_ net/minecraft/world/level/block/Blocks/CRIMSON_STAIRS +FD: net/minecraft/world/level/block/Blocks/f_50668_ net/minecraft/world/level/block/Blocks/WARPED_STAIRS +FD: net/minecraft/world/level/block/Blocks/f_50669_ net/minecraft/world/level/block/Blocks/CRIMSON_BUTTON +FD: net/minecraft/world/level/block/Blocks/f_50670_ net/minecraft/world/level/block/Blocks/WARPED_BUTTON +FD: net/minecraft/world/level/block/Blocks/f_50671_ net/minecraft/world/level/block/Blocks/CRIMSON_DOOR +FD: net/minecraft/world/level/block/Blocks/f_50672_ net/minecraft/world/level/block/Blocks/WARPED_DOOR +FD: net/minecraft/world/level/block/Blocks/f_50673_ net/minecraft/world/level/block/Blocks/CRIMSON_SIGN +FD: net/minecraft/world/level/block/Blocks/f_50674_ net/minecraft/world/level/block/Blocks/WARPED_SIGN +FD: net/minecraft/world/level/block/Blocks/f_50675_ net/minecraft/world/level/block/Blocks/CRIMSON_WALL_SIGN +FD: net/minecraft/world/level/block/Blocks/f_50676_ net/minecraft/world/level/block/Blocks/WARPED_WALL_SIGN +FD: net/minecraft/world/level/block/Blocks/f_50677_ net/minecraft/world/level/block/Blocks/STRUCTURE_BLOCK +FD: net/minecraft/world/level/block/Blocks/f_50678_ net/minecraft/world/level/block/Blocks/JIGSAW +FD: net/minecraft/world/level/block/Blocks/f_50679_ net/minecraft/world/level/block/Blocks/STONECUTTER +FD: net/minecraft/world/level/block/Blocks/f_50680_ net/minecraft/world/level/block/Blocks/BELL +FD: net/minecraft/world/level/block/Blocks/f_50681_ net/minecraft/world/level/block/Blocks/LANTERN +FD: net/minecraft/world/level/block/Blocks/f_50682_ net/minecraft/world/level/block/Blocks/SOUL_LANTERN +FD: net/minecraft/world/level/block/Blocks/f_50683_ net/minecraft/world/level/block/Blocks/CAMPFIRE +FD: net/minecraft/world/level/block/Blocks/f_50684_ net/minecraft/world/level/block/Blocks/SOUL_CAMPFIRE +FD: net/minecraft/world/level/block/Blocks/f_50685_ net/minecraft/world/level/block/Blocks/SWEET_BERRY_BUSH +FD: net/minecraft/world/level/block/Blocks/f_50686_ net/minecraft/world/level/block/Blocks/WARPED_STEM +FD: net/minecraft/world/level/block/Blocks/f_50687_ net/minecraft/world/level/block/Blocks/STRIPPED_WARPED_STEM +FD: net/minecraft/world/level/block/Blocks/f_50688_ net/minecraft/world/level/block/Blocks/WARPED_HYPHAE +FD: net/minecraft/world/level/block/Blocks/f_50689_ net/minecraft/world/level/block/Blocks/STRIPPED_WARPED_HYPHAE +FD: net/minecraft/world/level/block/Blocks/f_50690_ net/minecraft/world/level/block/Blocks/WARPED_NYLIUM +FD: net/minecraft/world/level/block/Blocks/f_50691_ net/minecraft/world/level/block/Blocks/WARPED_FUNGUS +FD: net/minecraft/world/level/block/Blocks/f_50692_ net/minecraft/world/level/block/Blocks/WARPED_WART_BLOCK +FD: net/minecraft/world/level/block/Blocks/f_50693_ net/minecraft/world/level/block/Blocks/WARPED_ROOTS +FD: net/minecraft/world/level/block/Blocks/f_50694_ net/minecraft/world/level/block/Blocks/NETHER_SPROUTS +FD: net/minecraft/world/level/block/Blocks/f_50695_ net/minecraft/world/level/block/Blocks/CRIMSON_STEM +FD: net/minecraft/world/level/block/Blocks/f_50696_ net/minecraft/world/level/block/Blocks/STRIPPED_CRIMSON_STEM +FD: net/minecraft/world/level/block/Blocks/f_50697_ net/minecraft/world/level/block/Blocks/CRIMSON_HYPHAE +FD: net/minecraft/world/level/block/Blocks/f_50698_ net/minecraft/world/level/block/Blocks/STRIPPED_CRIMSON_HYPHAE +FD: net/minecraft/world/level/block/Blocks/f_50699_ net/minecraft/world/level/block/Blocks/CRIMSON_NYLIUM +FD: net/minecraft/world/level/block/Blocks/f_50700_ net/minecraft/world/level/block/Blocks/CRIMSON_FUNGUS +FD: net/minecraft/world/level/block/Blocks/f_50701_ net/minecraft/world/level/block/Blocks/SHROOMLIGHT +FD: net/minecraft/world/level/block/Blocks/f_50702_ net/minecraft/world/level/block/Blocks/WEEPING_VINES +FD: net/minecraft/world/level/block/Blocks/f_50703_ net/minecraft/world/level/block/Blocks/WEEPING_VINES_PLANT +FD: net/minecraft/world/level/block/Blocks/f_50704_ net/minecraft/world/level/block/Blocks/TWISTING_VINES +FD: net/minecraft/world/level/block/Blocks/f_50705_ net/minecraft/world/level/block/Blocks/OAK_PLANKS +FD: net/minecraft/world/level/block/Blocks/f_50706_ net/minecraft/world/level/block/Blocks/GILDED_BLACKSTONE +FD: net/minecraft/world/level/block/Blocks/f_50707_ net/minecraft/world/level/block/Blocks/POLISHED_BLACKSTONE_STAIRS +FD: net/minecraft/world/level/block/Blocks/f_50708_ net/minecraft/world/level/block/Blocks/POLISHED_BLACKSTONE_SLAB +FD: net/minecraft/world/level/block/Blocks/f_50709_ net/minecraft/world/level/block/Blocks/POLISHED_BLACKSTONE_PRESSURE_PLATE +FD: net/minecraft/world/level/block/Blocks/f_50710_ net/minecraft/world/level/block/Blocks/POLISHED_BLACKSTONE_BUTTON +FD: net/minecraft/world/level/block/Blocks/f_50711_ net/minecraft/world/level/block/Blocks/POLISHED_BLACKSTONE_WALL +FD: net/minecraft/world/level/block/Blocks/f_50712_ net/minecraft/world/level/block/Blocks/CHISELED_NETHER_BRICKS +FD: net/minecraft/world/level/block/Blocks/f_50713_ net/minecraft/world/level/block/Blocks/CRACKED_NETHER_BRICKS +FD: net/minecraft/world/level/block/Blocks/f_50714_ net/minecraft/world/level/block/Blocks/QUARTZ_BRICKS +FD: net/minecraft/world/level/block/Blocks/f_50715_ net/minecraft/world/level/block/Blocks/COMPOSTER +FD: net/minecraft/world/level/block/Blocks/f_50716_ net/minecraft/world/level/block/Blocks/TARGET +FD: net/minecraft/world/level/block/Blocks/f_50717_ net/minecraft/world/level/block/Blocks/BEE_NEST +FD: net/minecraft/world/level/block/Blocks/f_50718_ net/minecraft/world/level/block/Blocks/BEEHIVE +FD: net/minecraft/world/level/block/Blocks/f_50719_ net/minecraft/world/level/block/Blocks/HONEY_BLOCK +FD: net/minecraft/world/level/block/Blocks/f_50720_ net/minecraft/world/level/block/Blocks/HONEYCOMB_BLOCK +FD: net/minecraft/world/level/block/Blocks/f_50721_ net/minecraft/world/level/block/Blocks/NETHERITE_BLOCK +FD: net/minecraft/world/level/block/Blocks/f_50722_ net/minecraft/world/level/block/Blocks/ANCIENT_DEBRIS +FD: net/minecraft/world/level/block/Blocks/f_50723_ net/minecraft/world/level/block/Blocks/CRYING_OBSIDIAN +FD: net/minecraft/world/level/block/Blocks/f_50724_ net/minecraft/world/level/block/Blocks/RESPAWN_ANCHOR +FD: net/minecraft/world/level/block/Blocks/f_50725_ net/minecraft/world/level/block/Blocks/POTTED_CRIMSON_FUNGUS +FD: net/minecraft/world/level/block/Blocks/f_50726_ net/minecraft/world/level/block/Blocks/POTTED_WARPED_FUNGUS +FD: net/minecraft/world/level/block/Blocks/f_50727_ net/minecraft/world/level/block/Blocks/POTTED_CRIMSON_ROOTS +FD: net/minecraft/world/level/block/Blocks/f_50728_ net/minecraft/world/level/block/Blocks/POTTED_WARPED_ROOTS +FD: net/minecraft/world/level/block/Blocks/f_50729_ net/minecraft/world/level/block/Blocks/LODESTONE +FD: net/minecraft/world/level/block/Blocks/f_50730_ net/minecraft/world/level/block/Blocks/BLACKSTONE +FD: net/minecraft/world/level/block/Blocks/f_50731_ net/minecraft/world/level/block/Blocks/BLACKSTONE_STAIRS +FD: net/minecraft/world/level/block/Blocks/f_50732_ net/minecraft/world/level/block/Blocks/BLACKSTONE_WALL +FD: net/minecraft/world/level/block/Blocks/f_50733_ net/minecraft/world/level/block/Blocks/BLACKSTONE_SLAB +FD: net/minecraft/world/level/block/Blocks/f_50734_ net/minecraft/world/level/block/Blocks/POLISHED_BLACKSTONE +FD: net/minecraft/world/level/block/Blocks/f_50735_ net/minecraft/world/level/block/Blocks/POLISHED_BLACKSTONE_BRICKS +FD: net/minecraft/world/level/block/Blocks/f_50736_ net/minecraft/world/level/block/Blocks/CRACKED_POLISHED_BLACKSTONE_BRICKS +FD: net/minecraft/world/level/block/Blocks/f_50737_ net/minecraft/world/level/block/Blocks/CHISELED_POLISHED_BLACKSTONE +FD: net/minecraft/world/level/block/Blocks/f_50738_ net/minecraft/world/level/block/Blocks/POLISHED_BLACKSTONE_BRICK_SLAB +FD: net/minecraft/world/level/block/Blocks/f_50739_ net/minecraft/world/level/block/Blocks/POLISHED_BLACKSTONE_BRICK_STAIRS +FD: net/minecraft/world/level/block/Blocks/f_50740_ net/minecraft/world/level/block/Blocks/POLISHED_BLACKSTONE_BRICK_WALL +FD: net/minecraft/world/level/block/Blocks/f_50741_ net/minecraft/world/level/block/Blocks/SPRUCE_PLANKS +FD: net/minecraft/world/level/block/Blocks/f_50742_ net/minecraft/world/level/block/Blocks/BIRCH_PLANKS +FD: net/minecraft/world/level/block/Blocks/f_50743_ net/minecraft/world/level/block/Blocks/JUNGLE_PLANKS +FD: net/minecraft/world/level/block/Blocks/f_50744_ net/minecraft/world/level/block/Blocks/ACACIA_PLANKS +FD: net/minecraft/world/level/block/Blocks/f_50745_ net/minecraft/world/level/block/Blocks/DARK_OAK_PLANKS +FD: net/minecraft/world/level/block/Blocks/f_50746_ net/minecraft/world/level/block/Blocks/OAK_SAPLING +FD: net/minecraft/world/level/block/Blocks/f_50747_ net/minecraft/world/level/block/Blocks/SPRUCE_SAPLING +FD: net/minecraft/world/level/block/Blocks/f_50748_ net/minecraft/world/level/block/Blocks/BIRCH_SAPLING +FD: net/minecraft/world/level/block/Blocks/f_50749_ net/minecraft/world/level/block/Blocks/JUNGLE_SAPLING +FD: net/minecraft/world/level/block/Blocks/f_50750_ net/minecraft/world/level/block/Blocks/ACACIA_SAPLING +FD: net/minecraft/world/level/block/Blocks/f_50751_ net/minecraft/world/level/block/Blocks/DARK_OAK_SAPLING +FD: net/minecraft/world/level/block/Blocks/f_50752_ net/minecraft/world/level/block/Blocks/BEDROCK +FD: net/minecraft/world/level/block/BrewingStandBlock/f_50905_ net/minecraft/world/level/block/BrewingStandBlock/HAS_BOTTLE +FD: net/minecraft/world/level/block/BrewingStandBlock/f_50906_ net/minecraft/world/level/block/BrewingStandBlock/SHAPE +FD: net/minecraft/world/level/block/BrushableBlock/f_276488_ net/minecraft/world/level/block/BrushableBlock/DUSTED +FD: net/minecraft/world/level/block/BrushableBlock/f_276507_ net/minecraft/world/level/block/BrushableBlock/brushSound +FD: net/minecraft/world/level/block/BrushableBlock/f_276547_ net/minecraft/world/level/block/BrushableBlock/TICK_DELAY +FD: net/minecraft/world/level/block/BrushableBlock/f_276601_ net/minecraft/world/level/block/BrushableBlock/turnsInto +FD: net/minecraft/world/level/block/BrushableBlock/f_276618_ net/minecraft/world/level/block/BrushableBlock/brushCompletedSound +FD: net/minecraft/world/level/block/BubbleColumnBlock/f_152700_ net/minecraft/world/level/block/BubbleColumnBlock/CHECK_PERIOD +FD: net/minecraft/world/level/block/BubbleColumnBlock/f_50956_ net/minecraft/world/level/block/BubbleColumnBlock/DRAG_DOWN +FD: net/minecraft/world/level/block/BuddingAmethystBlock/f_152722_ net/minecraft/world/level/block/BuddingAmethystBlock/GROWTH_CHANCE +FD: net/minecraft/world/level/block/BuddingAmethystBlock/f_152723_ net/minecraft/world/level/block/BuddingAmethystBlock/DIRECTIONS +FD: net/minecraft/world/level/block/ButtonBlock/f_152736_ net/minecraft/world/level/block/ButtonBlock/PRESSED_DEPTH +FD: net/minecraft/world/level/block/ButtonBlock/f_152737_ net/minecraft/world/level/block/ButtonBlock/UNPRESSED_DEPTH +FD: net/minecraft/world/level/block/ButtonBlock/f_152738_ net/minecraft/world/level/block/ButtonBlock/HALF_AABB_HEIGHT +FD: net/minecraft/world/level/block/ButtonBlock/f_152739_ net/minecraft/world/level/block/ButtonBlock/HALF_AABB_WIDTH +FD: net/minecraft/world/level/block/ButtonBlock/f_243959_ net/minecraft/world/level/block/ButtonBlock/arrowsCanPress +FD: net/minecraft/world/level/block/ButtonBlock/f_244105_ net/minecraft/world/level/block/ButtonBlock/ticksToStayPressed +FD: net/minecraft/world/level/block/ButtonBlock/f_271519_ net/minecraft/world/level/block/ButtonBlock/type +FD: net/minecraft/world/level/block/ButtonBlock/f_51045_ net/minecraft/world/level/block/ButtonBlock/POWERED +FD: net/minecraft/world/level/block/ButtonBlock/f_51046_ net/minecraft/world/level/block/ButtonBlock/CEILING_AABB_X +FD: net/minecraft/world/level/block/ButtonBlock/f_51047_ net/minecraft/world/level/block/ButtonBlock/CEILING_AABB_Z +FD: net/minecraft/world/level/block/ButtonBlock/f_51048_ net/minecraft/world/level/block/ButtonBlock/FLOOR_AABB_X +FD: net/minecraft/world/level/block/ButtonBlock/f_51049_ net/minecraft/world/level/block/ButtonBlock/FLOOR_AABB_Z +FD: net/minecraft/world/level/block/ButtonBlock/f_51050_ net/minecraft/world/level/block/ButtonBlock/NORTH_AABB +FD: net/minecraft/world/level/block/ButtonBlock/f_51051_ net/minecraft/world/level/block/ButtonBlock/SOUTH_AABB +FD: net/minecraft/world/level/block/ButtonBlock/f_51052_ net/minecraft/world/level/block/ButtonBlock/WEST_AABB +FD: net/minecraft/world/level/block/ButtonBlock/f_51053_ net/minecraft/world/level/block/ButtonBlock/EAST_AABB +FD: net/minecraft/world/level/block/ButtonBlock/f_51054_ net/minecraft/world/level/block/ButtonBlock/PRESSED_CEILING_AABB_X +FD: net/minecraft/world/level/block/ButtonBlock/f_51055_ net/minecraft/world/level/block/ButtonBlock/PRESSED_CEILING_AABB_Z +FD: net/minecraft/world/level/block/ButtonBlock/f_51056_ net/minecraft/world/level/block/ButtonBlock/PRESSED_FLOOR_AABB_X +FD: net/minecraft/world/level/block/ButtonBlock/f_51057_ net/minecraft/world/level/block/ButtonBlock/PRESSED_FLOOR_AABB_Z +FD: net/minecraft/world/level/block/ButtonBlock/f_51058_ net/minecraft/world/level/block/ButtonBlock/PRESSED_NORTH_AABB +FD: net/minecraft/world/level/block/ButtonBlock/f_51059_ net/minecraft/world/level/block/ButtonBlock/PRESSED_SOUTH_AABB +FD: net/minecraft/world/level/block/ButtonBlock/f_51060_ net/minecraft/world/level/block/ButtonBlock/PRESSED_WEST_AABB +FD: net/minecraft/world/level/block/ButtonBlock/f_51061_ net/minecraft/world/level/block/ButtonBlock/PRESSED_EAST_AABB +FD: net/minecraft/world/level/block/ButtonBlock$1/f_51128_ net/minecraft/world/level/block/ButtonBlock$1/$SwitchMap$net$minecraft$core$Direction +FD: net/minecraft/world/level/block/ButtonBlock$1/f_51129_ net/minecraft/world/level/block/ButtonBlock$1/$SwitchMap$net$minecraft$world$level$block$state$properties$AttachFace +FD: net/minecraft/world/level/block/CactusBlock/f_152740_ net/minecraft/world/level/block/CactusBlock/MAX_AGE +FD: net/minecraft/world/level/block/CactusBlock/f_152741_ net/minecraft/world/level/block/CactusBlock/AABB_OFFSET +FD: net/minecraft/world/level/block/CactusBlock/f_51131_ net/minecraft/world/level/block/CactusBlock/AGE +FD: net/minecraft/world/level/block/CactusBlock/f_51132_ net/minecraft/world/level/block/CactusBlock/COLLISION_SHAPE +FD: net/minecraft/world/level/block/CactusBlock/f_51133_ net/minecraft/world/level/block/CactusBlock/OUTLINE_SHAPE +FD: net/minecraft/world/level/block/CakeBlock/f_152742_ net/minecraft/world/level/block/CakeBlock/MAX_BITES +FD: net/minecraft/world/level/block/CakeBlock/f_152743_ net/minecraft/world/level/block/CakeBlock/FULL_CAKE_SIGNAL +FD: net/minecraft/world/level/block/CakeBlock/f_152744_ net/minecraft/world/level/block/CakeBlock/AABB_OFFSET +FD: net/minecraft/world/level/block/CakeBlock/f_152745_ net/minecraft/world/level/block/CakeBlock/AABB_SIZE_PER_BITE +FD: net/minecraft/world/level/block/CakeBlock/f_51180_ net/minecraft/world/level/block/CakeBlock/BITES +FD: net/minecraft/world/level/block/CakeBlock/f_51181_ net/minecraft/world/level/block/CakeBlock/SHAPE_BY_BITE +FD: net/minecraft/world/level/block/CalibratedSculkSensorBlock/f_276692_ net/minecraft/world/level/block/CalibratedSculkSensorBlock/FACING +FD: net/minecraft/world/level/block/CampfireBlock/f_152748_ net/minecraft/world/level/block/CampfireBlock/SMOKE_DISTANCE +FD: net/minecraft/world/level/block/CampfireBlock/f_51226_ net/minecraft/world/level/block/CampfireBlock/SHAPE +FD: net/minecraft/world/level/block/CampfireBlock/f_51227_ net/minecraft/world/level/block/CampfireBlock/LIT +FD: net/minecraft/world/level/block/CampfireBlock/f_51228_ net/minecraft/world/level/block/CampfireBlock/SIGNAL_FIRE +FD: net/minecraft/world/level/block/CampfireBlock/f_51229_ net/minecraft/world/level/block/CampfireBlock/WATERLOGGED +FD: net/minecraft/world/level/block/CampfireBlock/f_51230_ net/minecraft/world/level/block/CampfireBlock/FACING +FD: net/minecraft/world/level/block/CampfireBlock/f_51231_ net/minecraft/world/level/block/CampfireBlock/VIRTUAL_FENCE_POST +FD: net/minecraft/world/level/block/CampfireBlock/f_51232_ net/minecraft/world/level/block/CampfireBlock/spawnParticles +FD: net/minecraft/world/level/block/CampfireBlock/f_51233_ net/minecraft/world/level/block/CampfireBlock/fireDamage +FD: net/minecraft/world/level/block/CandleBlock/f_152788_ net/minecraft/world/level/block/CandleBlock/MIN_CANDLES +FD: net/minecraft/world/level/block/CandleBlock/f_152789_ net/minecraft/world/level/block/CandleBlock/MAX_CANDLES +FD: net/minecraft/world/level/block/CandleBlock/f_152790_ net/minecraft/world/level/block/CandleBlock/CANDLES +FD: net/minecraft/world/level/block/CandleBlock/f_152791_ net/minecraft/world/level/block/CandleBlock/LIT +FD: net/minecraft/world/level/block/CandleBlock/f_152792_ net/minecraft/world/level/block/CandleBlock/WATERLOGGED +FD: net/minecraft/world/level/block/CandleBlock/f_152793_ net/minecraft/world/level/block/CandleBlock/LIGHT_EMISSION +FD: net/minecraft/world/level/block/CandleBlock/f_152794_ net/minecraft/world/level/block/CandleBlock/PARTICLE_OFFSETS +FD: net/minecraft/world/level/block/CandleBlock/f_152795_ net/minecraft/world/level/block/CandleBlock/ONE_AABB +FD: net/minecraft/world/level/block/CandleBlock/f_152796_ net/minecraft/world/level/block/CandleBlock/TWO_AABB +FD: net/minecraft/world/level/block/CandleBlock/f_152797_ net/minecraft/world/level/block/CandleBlock/THREE_AABB +FD: net/minecraft/world/level/block/CandleBlock/f_152798_ net/minecraft/world/level/block/CandleBlock/FOUR_AABB +FD: net/minecraft/world/level/block/CandleCakeBlock/f_152850_ net/minecraft/world/level/block/CandleCakeBlock/LIT +FD: net/minecraft/world/level/block/CandleCakeBlock/f_152851_ net/minecraft/world/level/block/CandleCakeBlock/AABB_OFFSET +FD: net/minecraft/world/level/block/CandleCakeBlock/f_152852_ net/minecraft/world/level/block/CandleCakeBlock/CAKE_SHAPE +FD: net/minecraft/world/level/block/CandleCakeBlock/f_152853_ net/minecraft/world/level/block/CandleCakeBlock/CANDLE_SHAPE +FD: net/minecraft/world/level/block/CandleCakeBlock/f_152854_ net/minecraft/world/level/block/CandleCakeBlock/SHAPE +FD: net/minecraft/world/level/block/CandleCakeBlock/f_152855_ net/minecraft/world/level/block/CandleCakeBlock/BY_CANDLE +FD: net/minecraft/world/level/block/CandleCakeBlock/f_152856_ net/minecraft/world/level/block/CandleCakeBlock/PARTICLE_OFFSETS +FD: net/minecraft/world/level/block/CarpetBlock/f_152912_ net/minecraft/world/level/block/CarpetBlock/SHAPE +FD: net/minecraft/world/level/block/CarrotBlock/f_51325_ net/minecraft/world/level/block/CarrotBlock/SHAPE_BY_AGE +FD: net/minecraft/world/level/block/CartographyTableBlock/f_51346_ net/minecraft/world/level/block/CartographyTableBlock/CONTAINER_TITLE +FD: net/minecraft/world/level/block/CarvedPumpkinBlock/f_51367_ net/minecraft/world/level/block/CarvedPumpkinBlock/FACING +FD: net/minecraft/world/level/block/CarvedPumpkinBlock/f_51368_ net/minecraft/world/level/block/CarvedPumpkinBlock/snowGolemBase +FD: net/minecraft/world/level/block/CarvedPumpkinBlock/f_51369_ net/minecraft/world/level/block/CarvedPumpkinBlock/snowGolemFull +FD: net/minecraft/world/level/block/CarvedPumpkinBlock/f_51370_ net/minecraft/world/level/block/CarvedPumpkinBlock/ironGolemBase +FD: net/minecraft/world/level/block/CarvedPumpkinBlock/f_51371_ net/minecraft/world/level/block/CarvedPumpkinBlock/ironGolemFull +FD: net/minecraft/world/level/block/CarvedPumpkinBlock/f_51372_ net/minecraft/world/level/block/CarvedPumpkinBlock/PUMPKINS_PREDICATE +FD: net/minecraft/world/level/block/CauldronBlock/f_182448_ net/minecraft/world/level/block/CauldronBlock/RAIN_FILL_CHANCE +FD: net/minecraft/world/level/block/CauldronBlock/f_182449_ net/minecraft/world/level/block/CauldronBlock/POWDER_SNOW_FILL_CHANCE +FD: net/minecraft/world/level/block/CaveVines/f_152948_ net/minecraft/world/level/block/CaveVines/SHAPE +FD: net/minecraft/world/level/block/CaveVines/f_152949_ net/minecraft/world/level/block/CaveVines/BERRIES +FD: net/minecraft/world/level/block/CaveVinesBlock/f_152957_ net/minecraft/world/level/block/CaveVinesBlock/CHANCE_OF_BERRIES_ON_GROWTH +FD: net/minecraft/world/level/block/CeilingHangingSignBlock/f_243683_ net/minecraft/world/level/block/CeilingHangingSignBlock/AABBS +FD: net/minecraft/world/level/block/CeilingHangingSignBlock/f_243835_ net/minecraft/world/level/block/CeilingHangingSignBlock/ATTACHED +FD: net/minecraft/world/level/block/CeilingHangingSignBlock/f_244083_ net/minecraft/world/level/block/CeilingHangingSignBlock/ROTATION +FD: net/minecraft/world/level/block/CeilingHangingSignBlock/f_244092_ net/minecraft/world/level/block/CeilingHangingSignBlock/SHAPE +FD: net/minecraft/world/level/block/CeilingHangingSignBlock/f_244550_ net/minecraft/world/level/block/CeilingHangingSignBlock/AABB_OFFSET +FD: net/minecraft/world/level/block/ChainBlock/f_153033_ net/minecraft/world/level/block/ChainBlock/AABB_MIN +FD: net/minecraft/world/level/block/ChainBlock/f_153034_ net/minecraft/world/level/block/ChainBlock/AABB_MAX +FD: net/minecraft/world/level/block/ChainBlock/f_51446_ net/minecraft/world/level/block/ChainBlock/WATERLOGGED +FD: net/minecraft/world/level/block/ChainBlock/f_51447_ net/minecraft/world/level/block/ChainBlock/Y_AXIS_AABB +FD: net/minecraft/world/level/block/ChainBlock/f_51448_ net/minecraft/world/level/block/ChainBlock/Z_AXIS_AABB +FD: net/minecraft/world/level/block/ChainBlock/f_51449_ net/minecraft/world/level/block/ChainBlock/X_AXIS_AABB +FD: net/minecraft/world/level/block/ChainBlock$1/f_51476_ net/minecraft/world/level/block/ChainBlock$1/$SwitchMap$net$minecraft$core$Direction$Axis +FD: net/minecraft/world/level/block/ChangeOverTimeBlock/f_153035_ net/minecraft/world/level/block/ChangeOverTimeBlock/SCAN_DISTANCE +FD: net/minecraft/world/level/block/ChestBlock/f_153051_ net/minecraft/world/level/block/ChestBlock/EVENT_SET_OPEN_COUNT +FD: net/minecraft/world/level/block/ChestBlock/f_153052_ net/minecraft/world/level/block/ChestBlock/AABB_OFFSET +FD: net/minecraft/world/level/block/ChestBlock/f_153053_ net/minecraft/world/level/block/ChestBlock/AABB_HEIGHT +FD: net/minecraft/world/level/block/ChestBlock/f_51478_ net/minecraft/world/level/block/ChestBlock/FACING +FD: net/minecraft/world/level/block/ChestBlock/f_51479_ net/minecraft/world/level/block/ChestBlock/TYPE +FD: net/minecraft/world/level/block/ChestBlock/f_51480_ net/minecraft/world/level/block/ChestBlock/WATERLOGGED +FD: net/minecraft/world/level/block/ChestBlock/f_51481_ net/minecraft/world/level/block/ChestBlock/NORTH_AABB +FD: net/minecraft/world/level/block/ChestBlock/f_51482_ net/minecraft/world/level/block/ChestBlock/SOUTH_AABB +FD: net/minecraft/world/level/block/ChestBlock/f_51483_ net/minecraft/world/level/block/ChestBlock/WEST_AABB +FD: net/minecraft/world/level/block/ChestBlock/f_51484_ net/minecraft/world/level/block/ChestBlock/EAST_AABB +FD: net/minecraft/world/level/block/ChestBlock/f_51485_ net/minecraft/world/level/block/ChestBlock/AABB +FD: net/minecraft/world/level/block/ChestBlock/f_51486_ net/minecraft/world/level/block/ChestBlock/CHEST_COMBINER +FD: net/minecraft/world/level/block/ChestBlock/f_51487_ net/minecraft/world/level/block/ChestBlock/MENU_PROVIDER_COMBINER +FD: net/minecraft/world/level/block/ChestBlock$2$1/f_51612_ net/minecraft/world/level/block/ChestBlock$2$1/val$first +FD: net/minecraft/world/level/block/ChestBlock$2$1/f_51613_ net/minecraft/world/level/block/ChestBlock$2$1/val$second +FD: net/minecraft/world/level/block/ChestBlock$2$1/f_51614_ net/minecraft/world/level/block/ChestBlock$2$1/val$container +FD: net/minecraft/world/level/block/ChestBlock$2$1/f_51615_ net/minecraft/world/level/block/ChestBlock$2$1/this$0 +FD: net/minecraft/world/level/block/ChestBlock$3/f_51626_ net/minecraft/world/level/block/ChestBlock$3/val$entity +FD: net/minecraft/world/level/block/ChestBlock$4/f_51645_ net/minecraft/world/level/block/ChestBlock$4/$SwitchMap$net$minecraft$core$Direction +FD: net/minecraft/world/level/block/ChiseledBookShelfBlock/f_260522_ net/minecraft/world/level/block/ChiseledBookShelfBlock/MAX_BOOKS_IN_STORAGE +FD: net/minecraft/world/level/block/ChiseledBookShelfBlock/f_260633_ net/minecraft/world/level/block/ChiseledBookShelfBlock/BOOKS_PER_ROW +FD: net/minecraft/world/level/block/ChiseledBookShelfBlock/f_260698_ net/minecraft/world/level/block/ChiseledBookShelfBlock/SLOT_OCCUPIED_PROPERTIES +FD: net/minecraft/world/level/block/ChiseledBookShelfBlock$1/f_260481_ net/minecraft/world/level/block/ChiseledBookShelfBlock$1/$SwitchMap$net$minecraft$core$Direction +FD: net/minecraft/world/level/block/ChorusFlowerBlock/f_153067_ net/minecraft/world/level/block/ChorusFlowerBlock/DEAD_AGE +FD: net/minecraft/world/level/block/ChorusFlowerBlock/f_51647_ net/minecraft/world/level/block/ChorusFlowerBlock/AGE +FD: net/minecraft/world/level/block/ChorusFlowerBlock/f_51648_ net/minecraft/world/level/block/ChorusFlowerBlock/plant +FD: net/minecraft/world/level/block/CocoaBlock/f_153068_ net/minecraft/world/level/block/CocoaBlock/MAX_AGE +FD: net/minecraft/world/level/block/CocoaBlock/f_153069_ net/minecraft/world/level/block/CocoaBlock/AGE_0_WIDTH +FD: net/minecraft/world/level/block/CocoaBlock/f_153070_ net/minecraft/world/level/block/CocoaBlock/AGE_0_HEIGHT +FD: net/minecraft/world/level/block/CocoaBlock/f_153071_ net/minecraft/world/level/block/CocoaBlock/AGE_0_HALFWIDTH +FD: net/minecraft/world/level/block/CocoaBlock/f_153072_ net/minecraft/world/level/block/CocoaBlock/AGE_1_WIDTH +FD: net/minecraft/world/level/block/CocoaBlock/f_153073_ net/minecraft/world/level/block/CocoaBlock/AGE_1_HEIGHT +FD: net/minecraft/world/level/block/CocoaBlock/f_153074_ net/minecraft/world/level/block/CocoaBlock/AGE_1_HALFWIDTH +FD: net/minecraft/world/level/block/CocoaBlock/f_153075_ net/minecraft/world/level/block/CocoaBlock/AGE_2_WIDTH +FD: net/minecraft/world/level/block/CocoaBlock/f_153076_ net/minecraft/world/level/block/CocoaBlock/AGE_2_HEIGHT +FD: net/minecraft/world/level/block/CocoaBlock/f_153077_ net/minecraft/world/level/block/CocoaBlock/AGE_2_HALFWIDTH +FD: net/minecraft/world/level/block/CocoaBlock/f_51736_ net/minecraft/world/level/block/CocoaBlock/AGE +FD: net/minecraft/world/level/block/CocoaBlock/f_51737_ net/minecraft/world/level/block/CocoaBlock/EAST_AABB +FD: net/minecraft/world/level/block/CocoaBlock/f_51738_ net/minecraft/world/level/block/CocoaBlock/WEST_AABB +FD: net/minecraft/world/level/block/CocoaBlock/f_51739_ net/minecraft/world/level/block/CocoaBlock/NORTH_AABB +FD: net/minecraft/world/level/block/CocoaBlock/f_51740_ net/minecraft/world/level/block/CocoaBlock/SOUTH_AABB +FD: net/minecraft/world/level/block/CocoaBlock$1/f_51791_ net/minecraft/world/level/block/CocoaBlock$1/$SwitchMap$net$minecraft$core$Direction +FD: net/minecraft/world/level/block/CommandBlock/f_153078_ net/minecraft/world/level/block/CommandBlock/automatic +FD: net/minecraft/world/level/block/CommandBlock/f_51793_ net/minecraft/world/level/block/CommandBlock/FACING +FD: net/minecraft/world/level/block/CommandBlock/f_51794_ net/minecraft/world/level/block/CommandBlock/CONDITIONAL +FD: net/minecraft/world/level/block/CommandBlock/f_51795_ net/minecraft/world/level/block/CommandBlock/LOGGER +FD: net/minecraft/world/level/block/ComparatorBlock/f_51854_ net/minecraft/world/level/block/ComparatorBlock/MODE +FD: net/minecraft/world/level/block/ComposterBlock/f_153088_ net/minecraft/world/level/block/ComposterBlock/READY +FD: net/minecraft/world/level/block/ComposterBlock/f_153089_ net/minecraft/world/level/block/ComposterBlock/MIN_LEVEL +FD: net/minecraft/world/level/block/ComposterBlock/f_153090_ net/minecraft/world/level/block/ComposterBlock/MAX_LEVEL +FD: net/minecraft/world/level/block/ComposterBlock/f_153091_ net/minecraft/world/level/block/ComposterBlock/AABB_SIDE_THICKNESS +FD: net/minecraft/world/level/block/ComposterBlock/f_51913_ net/minecraft/world/level/block/ComposterBlock/LEVEL +FD: net/minecraft/world/level/block/ComposterBlock/f_51914_ net/minecraft/world/level/block/ComposterBlock/COMPOSTABLES +FD: net/minecraft/world/level/block/ComposterBlock/f_51915_ net/minecraft/world/level/block/ComposterBlock/OUTER_SHAPE +FD: net/minecraft/world/level/block/ComposterBlock/f_51916_ net/minecraft/world/level/block/ComposterBlock/SHAPES +FD: net/minecraft/world/level/block/ComposterBlock$InputContainer/f_52017_ net/minecraft/world/level/block/ComposterBlock$InputContainer/state +FD: net/minecraft/world/level/block/ComposterBlock$InputContainer/f_52018_ net/minecraft/world/level/block/ComposterBlock$InputContainer/level +FD: net/minecraft/world/level/block/ComposterBlock$InputContainer/f_52019_ net/minecraft/world/level/block/ComposterBlock$InputContainer/pos +FD: net/minecraft/world/level/block/ComposterBlock$InputContainer/f_52020_ net/minecraft/world/level/block/ComposterBlock$InputContainer/changed +FD: net/minecraft/world/level/block/ComposterBlock$OutputContainer/f_52037_ net/minecraft/world/level/block/ComposterBlock$OutputContainer/state +FD: net/minecraft/world/level/block/ComposterBlock$OutputContainer/f_52038_ net/minecraft/world/level/block/ComposterBlock$OutputContainer/level +FD: net/minecraft/world/level/block/ComposterBlock$OutputContainer/f_52039_ net/minecraft/world/level/block/ComposterBlock$OutputContainer/pos +FD: net/minecraft/world/level/block/ComposterBlock$OutputContainer/f_52040_ net/minecraft/world/level/block/ComposterBlock$OutputContainer/changed +FD: net/minecraft/world/level/block/ConcretePowderBlock/f_52058_ net/minecraft/world/level/block/ConcretePowderBlock/concrete +FD: net/minecraft/world/level/block/ConduitBlock/f_153092_ net/minecraft/world/level/block/ConduitBlock/SIZE +FD: net/minecraft/world/level/block/ConduitBlock/f_52090_ net/minecraft/world/level/block/ConduitBlock/WATERLOGGED +FD: net/minecraft/world/level/block/ConduitBlock/f_52091_ net/minecraft/world/level/block/ConduitBlock/SHAPE +FD: net/minecraft/world/level/block/CoralBlock/f_52128_ net/minecraft/world/level/block/CoralBlock/deadBlock +FD: net/minecraft/world/level/block/CoralFanBlock/f_52149_ net/minecraft/world/level/block/CoralFanBlock/deadBlock +FD: net/minecraft/world/level/block/CoralPlantBlock/f_153100_ net/minecraft/world/level/block/CoralPlantBlock/AABB_OFFSET +FD: net/minecraft/world/level/block/CoralPlantBlock/f_52171_ net/minecraft/world/level/block/CoralPlantBlock/SHAPE +FD: net/minecraft/world/level/block/CoralPlantBlock/f_52172_ net/minecraft/world/level/block/CoralPlantBlock/deadBlock +FD: net/minecraft/world/level/block/CoralWallFanBlock/f_52200_ net/minecraft/world/level/block/CoralWallFanBlock/deadBlock +FD: net/minecraft/world/level/block/CraftingTableBlock/f_52222_ net/minecraft/world/level/block/CraftingTableBlock/CONTAINER_TITLE +FD: net/minecraft/world/level/block/CropBlock/f_153107_ net/minecraft/world/level/block/CropBlock/MAX_AGE +FD: net/minecraft/world/level/block/CropBlock/f_52243_ net/minecraft/world/level/block/CropBlock/SHAPE_BY_AGE +FD: net/minecraft/world/level/block/CropBlock/f_52244_ net/minecraft/world/level/block/CropBlock/AGE +FD: net/minecraft/world/level/block/CrossCollisionBlock/f_52309_ net/minecraft/world/level/block/CrossCollisionBlock/NORTH +FD: net/minecraft/world/level/block/CrossCollisionBlock/f_52310_ net/minecraft/world/level/block/CrossCollisionBlock/EAST +FD: net/minecraft/world/level/block/CrossCollisionBlock/f_52311_ net/minecraft/world/level/block/CrossCollisionBlock/SOUTH +FD: net/minecraft/world/level/block/CrossCollisionBlock/f_52312_ net/minecraft/world/level/block/CrossCollisionBlock/WEST +FD: net/minecraft/world/level/block/CrossCollisionBlock/f_52313_ net/minecraft/world/level/block/CrossCollisionBlock/WATERLOGGED +FD: net/minecraft/world/level/block/CrossCollisionBlock/f_52314_ net/minecraft/world/level/block/CrossCollisionBlock/PROPERTY_BY_DIRECTION +FD: net/minecraft/world/level/block/CrossCollisionBlock/f_52315_ net/minecraft/world/level/block/CrossCollisionBlock/collisionShapeByIndex +FD: net/minecraft/world/level/block/CrossCollisionBlock/f_52316_ net/minecraft/world/level/block/CrossCollisionBlock/shapeByIndex +FD: net/minecraft/world/level/block/CrossCollisionBlock/f_52317_ net/minecraft/world/level/block/CrossCollisionBlock/stateToIndex +FD: net/minecraft/world/level/block/CrossCollisionBlock$1/f_52367_ net/minecraft/world/level/block/CrossCollisionBlock$1/$SwitchMap$net$minecraft$world$level$block$Rotation +FD: net/minecraft/world/level/block/CrossCollisionBlock$1/f_52368_ net/minecraft/world/level/block/CrossCollisionBlock$1/$SwitchMap$net$minecraft$world$level$block$Mirror +FD: net/minecraft/world/level/block/DaylightDetectorBlock/f_52377_ net/minecraft/world/level/block/DaylightDetectorBlock/POWER +FD: net/minecraft/world/level/block/DaylightDetectorBlock/f_52378_ net/minecraft/world/level/block/DaylightDetectorBlock/INVERTED +FD: net/minecraft/world/level/block/DaylightDetectorBlock/f_52379_ net/minecraft/world/level/block/DaylightDetectorBlock/SHAPE +FD: net/minecraft/world/level/block/DeadBushBlock/f_153120_ net/minecraft/world/level/block/DeadBushBlock/AABB_OFFSET +FD: net/minecraft/world/level/block/DeadBushBlock/f_52414_ net/minecraft/world/level/block/DeadBushBlock/SHAPE +FD: net/minecraft/world/level/block/DecoratedPotBlock/f_271091_ net/minecraft/world/level/block/DecoratedPotBlock/BOUNDING_BOX +FD: net/minecraft/world/level/block/DecoratedPotBlock/f_271222_ net/minecraft/world/level/block/DecoratedPotBlock/WATERLOGGED +FD: net/minecraft/world/level/block/DecoratedPotBlock/f_271251_ net/minecraft/world/level/block/DecoratedPotBlock/HORIZONTAL_FACING +FD: net/minecraft/world/level/block/DecoratedPotBlock/f_276567_ net/minecraft/world/level/block/DecoratedPotBlock/CRACKED +FD: net/minecraft/world/level/block/DecoratedPotBlock/f_283767_ net/minecraft/world/level/block/DecoratedPotBlock/SHERDS_DYNAMIC_DROP_ID +FD: net/minecraft/world/level/block/DetectorRailBlock/f_153121_ net/minecraft/world/level/block/DetectorRailBlock/PRESSED_CHECK_PERIOD +FD: net/minecraft/world/level/block/DetectorRailBlock/f_52427_ net/minecraft/world/level/block/DetectorRailBlock/SHAPE +FD: net/minecraft/world/level/block/DetectorRailBlock/f_52428_ net/minecraft/world/level/block/DetectorRailBlock/POWERED +FD: net/minecraft/world/level/block/DetectorRailBlock$1/f_52491_ net/minecraft/world/level/block/DetectorRailBlock$1/$SwitchMap$net$minecraft$world$level$block$state$properties$RailShape +FD: net/minecraft/world/level/block/DetectorRailBlock$1/f_52492_ net/minecraft/world/level/block/DetectorRailBlock$1/$SwitchMap$net$minecraft$world$level$block$Rotation +FD: net/minecraft/world/level/block/DetectorRailBlock$1/f_52493_ net/minecraft/world/level/block/DetectorRailBlock$1/$SwitchMap$net$minecraft$world$level$block$Mirror +FD: net/minecraft/world/level/block/DiodeBlock/f_52495_ net/minecraft/world/level/block/DiodeBlock/SHAPE +FD: net/minecraft/world/level/block/DiodeBlock/f_52496_ net/minecraft/world/level/block/DiodeBlock/POWERED +FD: net/minecraft/world/level/block/DirectionalBlock/f_52588_ net/minecraft/world/level/block/DirectionalBlock/FACING +FD: net/minecraft/world/level/block/DirtPathBlock/f_153126_ net/minecraft/world/level/block/DirtPathBlock/SHAPE +FD: net/minecraft/world/level/block/DispenserBlock/f_153160_ net/minecraft/world/level/block/DispenserBlock/TRIGGER_DURATION +FD: net/minecraft/world/level/block/DispenserBlock/f_52659_ net/minecraft/world/level/block/DispenserBlock/FACING +FD: net/minecraft/world/level/block/DispenserBlock/f_52660_ net/minecraft/world/level/block/DispenserBlock/TRIGGERED +FD: net/minecraft/world/level/block/DispenserBlock/f_52661_ net/minecraft/world/level/block/DispenserBlock/DISPENSER_REGISTRY +FD: net/minecraft/world/level/block/DoorBlock/f_153164_ net/minecraft/world/level/block/DoorBlock/AABB_DOOR_THICKNESS +FD: net/minecraft/world/level/block/DoorBlock/f_271255_ net/minecraft/world/level/block/DoorBlock/type +FD: net/minecraft/world/level/block/DoorBlock/f_52726_ net/minecraft/world/level/block/DoorBlock/FACING +FD: net/minecraft/world/level/block/DoorBlock/f_52727_ net/minecraft/world/level/block/DoorBlock/OPEN +FD: net/minecraft/world/level/block/DoorBlock/f_52728_ net/minecraft/world/level/block/DoorBlock/HINGE +FD: net/minecraft/world/level/block/DoorBlock/f_52729_ net/minecraft/world/level/block/DoorBlock/POWERED +FD: net/minecraft/world/level/block/DoorBlock/f_52730_ net/minecraft/world/level/block/DoorBlock/HALF +FD: net/minecraft/world/level/block/DoorBlock/f_52731_ net/minecraft/world/level/block/DoorBlock/SOUTH_AABB +FD: net/minecraft/world/level/block/DoorBlock/f_52732_ net/minecraft/world/level/block/DoorBlock/NORTH_AABB +FD: net/minecraft/world/level/block/DoorBlock/f_52733_ net/minecraft/world/level/block/DoorBlock/WEST_AABB +FD: net/minecraft/world/level/block/DoorBlock/f_52734_ net/minecraft/world/level/block/DoorBlock/EAST_AABB +FD: net/minecraft/world/level/block/DoorBlock$1/f_52819_ net/minecraft/world/level/block/DoorBlock$1/$SwitchMap$net$minecraft$core$Direction +FD: net/minecraft/world/level/block/DoorBlock$1/f_52820_ net/minecraft/world/level/block/DoorBlock$1/$SwitchMap$net$minecraft$world$level$pathfinder$PathComputationType +FD: net/minecraft/world/level/block/DoubleBlockCombiner$BlockType/$VALUES net/minecraft/world/level/block/DoubleBlockCombiner$BlockType/$VALUES +FD: net/minecraft/world/level/block/DoubleBlockCombiner$BlockType/FIRST net/minecraft/world/level/block/DoubleBlockCombiner$BlockType/FIRST +FD: net/minecraft/world/level/block/DoubleBlockCombiner$BlockType/SECOND net/minecraft/world/level/block/DoubleBlockCombiner$BlockType/SECOND +FD: net/minecraft/world/level/block/DoubleBlockCombiner$BlockType/SINGLE net/minecraft/world/level/block/DoubleBlockCombiner$BlockType/SINGLE +FD: net/minecraft/world/level/block/DoubleBlockCombiner$NeighborCombineResult$Double/f_52846_ net/minecraft/world/level/block/DoubleBlockCombiner$NeighborCombineResult$Double/first +FD: net/minecraft/world/level/block/DoubleBlockCombiner$NeighborCombineResult$Double/f_52847_ net/minecraft/world/level/block/DoubleBlockCombiner$NeighborCombineResult$Double/second +FD: net/minecraft/world/level/block/DoubleBlockCombiner$NeighborCombineResult$Single/f_52853_ net/minecraft/world/level/block/DoubleBlockCombiner$NeighborCombineResult$Single/single +FD: net/minecraft/world/level/block/DoublePlantBlock/f_52858_ net/minecraft/world/level/block/DoublePlantBlock/HALF +FD: net/minecraft/world/level/block/DragonEggBlock/f_52908_ net/minecraft/world/level/block/DragonEggBlock/SHAPE +FD: net/minecraft/world/level/block/DropExperienceBlock/f_221079_ net/minecraft/world/level/block/DropExperienceBlock/xpRange +FD: net/minecraft/world/level/block/DropperBlock/f_52939_ net/minecraft/world/level/block/DropperBlock/DISPENSE_BEHAVIOUR +FD: net/minecraft/world/level/block/EnchantmentTableBlock/f_207902_ net/minecraft/world/level/block/EnchantmentTableBlock/BOOKSHELF_OFFSETS +FD: net/minecraft/world/level/block/EnchantmentTableBlock/f_52950_ net/minecraft/world/level/block/EnchantmentTableBlock/SHAPE +FD: net/minecraft/world/level/block/EndPortalBlock/f_53014_ net/minecraft/world/level/block/EndPortalBlock/SHAPE +FD: net/minecraft/world/level/block/EndPortalFrameBlock/f_53042_ net/minecraft/world/level/block/EndPortalFrameBlock/FACING +FD: net/minecraft/world/level/block/EndPortalFrameBlock/f_53043_ net/minecraft/world/level/block/EndPortalFrameBlock/HAS_EYE +FD: net/minecraft/world/level/block/EndPortalFrameBlock/f_53044_ net/minecraft/world/level/block/EndPortalFrameBlock/BASE_SHAPE +FD: net/minecraft/world/level/block/EndPortalFrameBlock/f_53045_ net/minecraft/world/level/block/EndPortalFrameBlock/EYE_SHAPE +FD: net/minecraft/world/level/block/EndPortalFrameBlock/f_53046_ net/minecraft/world/level/block/EndPortalFrameBlock/FULL_SHAPE +FD: net/minecraft/world/level/block/EndPortalFrameBlock/f_53047_ net/minecraft/world/level/block/EndPortalFrameBlock/portalShape +FD: net/minecraft/world/level/block/EnderChestBlock/f_53115_ net/minecraft/world/level/block/EnderChestBlock/FACING +FD: net/minecraft/world/level/block/EnderChestBlock/f_53116_ net/minecraft/world/level/block/EnderChestBlock/WATERLOGGED +FD: net/minecraft/world/level/block/EnderChestBlock/f_53117_ net/minecraft/world/level/block/EnderChestBlock/SHAPE +FD: net/minecraft/world/level/block/EnderChestBlock/f_53118_ net/minecraft/world/level/block/EnderChestBlock/CONTAINER_TITLE +FD: net/minecraft/world/level/block/FaceAttachedHorizontalDirectionalBlock/f_53179_ net/minecraft/world/level/block/FaceAttachedHorizontalDirectionalBlock/FACE +FD: net/minecraft/world/level/block/FaceAttachedHorizontalDirectionalBlock$1/f_53202_ net/minecraft/world/level/block/FaceAttachedHorizontalDirectionalBlock$1/$SwitchMap$net$minecraft$world$level$block$state$properties$AttachFace +FD: net/minecraft/world/level/block/FarmBlock/f_153225_ net/minecraft/world/level/block/FarmBlock/MAX_MOISTURE +FD: net/minecraft/world/level/block/FarmBlock/f_53243_ net/minecraft/world/level/block/FarmBlock/MOISTURE +FD: net/minecraft/world/level/block/FarmBlock/f_53244_ net/minecraft/world/level/block/FarmBlock/SHAPE +FD: net/minecraft/world/level/block/FenceBlock/f_53300_ net/minecraft/world/level/block/FenceBlock/occlusionByIndex +FD: net/minecraft/world/level/block/FenceGateBlock/f_252514_ net/minecraft/world/level/block/FenceGateBlock/X_SUPPORT_SHAPE +FD: net/minecraft/world/level/block/FenceGateBlock/f_252518_ net/minecraft/world/level/block/FenceGateBlock/Z_SUPPORT_SHAPE +FD: net/minecraft/world/level/block/FenceGateBlock/f_271446_ net/minecraft/world/level/block/FenceGateBlock/type +FD: net/minecraft/world/level/block/FenceGateBlock/f_53341_ net/minecraft/world/level/block/FenceGateBlock/OPEN +FD: net/minecraft/world/level/block/FenceGateBlock/f_53342_ net/minecraft/world/level/block/FenceGateBlock/POWERED +FD: net/minecraft/world/level/block/FenceGateBlock/f_53343_ net/minecraft/world/level/block/FenceGateBlock/IN_WALL +FD: net/minecraft/world/level/block/FenceGateBlock/f_53344_ net/minecraft/world/level/block/FenceGateBlock/Z_SHAPE +FD: net/minecraft/world/level/block/FenceGateBlock/f_53345_ net/minecraft/world/level/block/FenceGateBlock/X_SHAPE +FD: net/minecraft/world/level/block/FenceGateBlock/f_53346_ net/minecraft/world/level/block/FenceGateBlock/Z_SHAPE_LOW +FD: net/minecraft/world/level/block/FenceGateBlock/f_53347_ net/minecraft/world/level/block/FenceGateBlock/X_SHAPE_LOW +FD: net/minecraft/world/level/block/FenceGateBlock/f_53348_ net/minecraft/world/level/block/FenceGateBlock/Z_COLLISION_SHAPE +FD: net/minecraft/world/level/block/FenceGateBlock/f_53349_ net/minecraft/world/level/block/FenceGateBlock/X_COLLISION_SHAPE +FD: net/minecraft/world/level/block/FenceGateBlock/f_53350_ net/minecraft/world/level/block/FenceGateBlock/Z_OCCLUSION_SHAPE +FD: net/minecraft/world/level/block/FenceGateBlock/f_53351_ net/minecraft/world/level/block/FenceGateBlock/X_OCCLUSION_SHAPE +FD: net/minecraft/world/level/block/FenceGateBlock/f_53352_ net/minecraft/world/level/block/FenceGateBlock/Z_OCCLUSION_SHAPE_LOW +FD: net/minecraft/world/level/block/FenceGateBlock/f_53353_ net/minecraft/world/level/block/FenceGateBlock/X_OCCLUSION_SHAPE_LOW +FD: net/minecraft/world/level/block/FenceGateBlock$1/f_53406_ net/minecraft/world/level/block/FenceGateBlock$1/$SwitchMap$net$minecraft$world$level$pathfinder$PathComputationType +FD: net/minecraft/world/level/block/FireBlock/f_153260_ net/minecraft/world/level/block/FireBlock/BURN_INSTANT +FD: net/minecraft/world/level/block/FireBlock/f_153261_ net/minecraft/world/level/block/FireBlock/BURN_EASY +FD: net/minecraft/world/level/block/FireBlock/f_153262_ net/minecraft/world/level/block/FireBlock/BURN_MEDIUM +FD: net/minecraft/world/level/block/FireBlock/f_153263_ net/minecraft/world/level/block/FireBlock/BURN_HARD +FD: net/minecraft/world/level/block/FireBlock/f_153264_ net/minecraft/world/level/block/FireBlock/MAX_AGE +FD: net/minecraft/world/level/block/FireBlock/f_221143_ net/minecraft/world/level/block/FireBlock/IGNITE_INSTANT +FD: net/minecraft/world/level/block/FireBlock/f_221144_ net/minecraft/world/level/block/FireBlock/IGNITE_EASY +FD: net/minecraft/world/level/block/FireBlock/f_221145_ net/minecraft/world/level/block/FireBlock/IGNITE_MEDIUM +FD: net/minecraft/world/level/block/FireBlock/f_221146_ net/minecraft/world/level/block/FireBlock/IGNITE_HARD +FD: net/minecraft/world/level/block/FireBlock/f_221147_ net/minecraft/world/level/block/FireBlock/igniteOdds +FD: net/minecraft/world/level/block/FireBlock/f_53408_ net/minecraft/world/level/block/FireBlock/AGE +FD: net/minecraft/world/level/block/FireBlock/f_53409_ net/minecraft/world/level/block/FireBlock/NORTH +FD: net/minecraft/world/level/block/FireBlock/f_53410_ net/minecraft/world/level/block/FireBlock/EAST +FD: net/minecraft/world/level/block/FireBlock/f_53411_ net/minecraft/world/level/block/FireBlock/SOUTH +FD: net/minecraft/world/level/block/FireBlock/f_53412_ net/minecraft/world/level/block/FireBlock/WEST +FD: net/minecraft/world/level/block/FireBlock/f_53413_ net/minecraft/world/level/block/FireBlock/UP +FD: net/minecraft/world/level/block/FireBlock/f_53414_ net/minecraft/world/level/block/FireBlock/PROPERTY_BY_DIRECTION +FD: net/minecraft/world/level/block/FireBlock/f_53415_ net/minecraft/world/level/block/FireBlock/UP_AABB +FD: net/minecraft/world/level/block/FireBlock/f_53416_ net/minecraft/world/level/block/FireBlock/WEST_AABB +FD: net/minecraft/world/level/block/FireBlock/f_53417_ net/minecraft/world/level/block/FireBlock/EAST_AABB +FD: net/minecraft/world/level/block/FireBlock/f_53418_ net/minecraft/world/level/block/FireBlock/NORTH_AABB +FD: net/minecraft/world/level/block/FireBlock/f_53419_ net/minecraft/world/level/block/FireBlock/SOUTH_AABB +FD: net/minecraft/world/level/block/FireBlock/f_53420_ net/minecraft/world/level/block/FireBlock/shapesCache +FD: net/minecraft/world/level/block/FireBlock/f_53422_ net/minecraft/world/level/block/FireBlock/burnOdds +FD: net/minecraft/world/level/block/FlowerBlock/f_153265_ net/minecraft/world/level/block/FlowerBlock/AABB_OFFSET +FD: net/minecraft/world/level/block/FlowerBlock/f_53507_ net/minecraft/world/level/block/FlowerBlock/SHAPE +FD: net/minecraft/world/level/block/FlowerBlock/f_53508_ net/minecraft/world/level/block/FlowerBlock/suspiciousStewEffect +FD: net/minecraft/world/level/block/FlowerBlock/f_53509_ net/minecraft/world/level/block/FlowerBlock/effectDuration +FD: net/minecraft/world/level/block/FlowerPotBlock/f_153266_ net/minecraft/world/level/block/FlowerPotBlock/AABB_SIZE +FD: net/minecraft/world/level/block/FlowerPotBlock/f_53523_ net/minecraft/world/level/block/FlowerPotBlock/SHAPE +FD: net/minecraft/world/level/block/FlowerPotBlock/f_53524_ net/minecraft/world/level/block/FlowerPotBlock/POTTED_BY_CONTENT +FD: net/minecraft/world/level/block/FlowerPotBlock/f_53525_ net/minecraft/world/level/block/FlowerPotBlock/content +FD: net/minecraft/world/level/block/FrogspawnBlock/f_221168_ net/minecraft/world/level/block/FrogspawnBlock/SHAPE +FD: net/minecraft/world/level/block/FrogspawnBlock/f_221169_ net/minecraft/world/level/block/FrogspawnBlock/MIN_TADPOLES_SPAWN +FD: net/minecraft/world/level/block/FrogspawnBlock/f_221170_ net/minecraft/world/level/block/FrogspawnBlock/MAX_TADPOLES_SPAWN +FD: net/minecraft/world/level/block/FrogspawnBlock/f_221171_ net/minecraft/world/level/block/FrogspawnBlock/DEFAULT_MIN_HATCH_TICK_DELAY +FD: net/minecraft/world/level/block/FrogspawnBlock/f_221172_ net/minecraft/world/level/block/FrogspawnBlock/DEFAULT_MAX_HATCH_TICK_DELAY +FD: net/minecraft/world/level/block/FrogspawnBlock/f_221173_ net/minecraft/world/level/block/FrogspawnBlock/minHatchTickDelay +FD: net/minecraft/world/level/block/FrogspawnBlock/f_221174_ net/minecraft/world/level/block/FrogspawnBlock/maxHatchTickDelay +FD: net/minecraft/world/level/block/FrostedIceBlock/f_153268_ net/minecraft/world/level/block/FrostedIceBlock/MAX_AGE +FD: net/minecraft/world/level/block/FrostedIceBlock/f_153269_ net/minecraft/world/level/block/FrostedIceBlock/NEIGHBORS_TO_AGE +FD: net/minecraft/world/level/block/FrostedIceBlock/f_153270_ net/minecraft/world/level/block/FrostedIceBlock/NEIGHBORS_TO_MELT +FD: net/minecraft/world/level/block/FrostedIceBlock/f_53561_ net/minecraft/world/level/block/FrostedIceBlock/AGE +FD: net/minecraft/world/level/block/FungusBlock/f_153271_ net/minecraft/world/level/block/FungusBlock/BONEMEAL_SUCCESS_PROBABILITY +FD: net/minecraft/world/level/block/FungusBlock/f_256997_ net/minecraft/world/level/block/FungusBlock/requiredBlock +FD: net/minecraft/world/level/block/FungusBlock/f_53596_ net/minecraft/world/level/block/FungusBlock/SHAPE +FD: net/minecraft/world/level/block/FungusBlock/f_53597_ net/minecraft/world/level/block/FungusBlock/feature +FD: net/minecraft/world/level/block/GlowLichenBlock/f_153279_ net/minecraft/world/level/block/GlowLichenBlock/WATERLOGGED +FD: net/minecraft/world/level/block/GlowLichenBlock/f_221257_ net/minecraft/world/level/block/GlowLichenBlock/spreader +FD: net/minecraft/world/level/block/GrindstoneBlock/f_53741_ net/minecraft/world/level/block/GrindstoneBlock/WALL_SOUTH_ALL_LEGS +FD: net/minecraft/world/level/block/GrindstoneBlock/f_53742_ net/minecraft/world/level/block/GrindstoneBlock/WALL_SOUTH_GRINDSTONE +FD: net/minecraft/world/level/block/GrindstoneBlock/f_53743_ net/minecraft/world/level/block/GrindstoneBlock/WALL_NORTH_LEFT_POST +FD: net/minecraft/world/level/block/GrindstoneBlock/f_53744_ net/minecraft/world/level/block/GrindstoneBlock/WALL_NORTH_RIGHT_POST +FD: net/minecraft/world/level/block/GrindstoneBlock/f_53745_ net/minecraft/world/level/block/GrindstoneBlock/WALL_NORTH_LEFT_PIVOT +FD: net/minecraft/world/level/block/GrindstoneBlock/f_53746_ net/minecraft/world/level/block/GrindstoneBlock/WALL_NORTH_RIGHT_PIVOT +FD: net/minecraft/world/level/block/GrindstoneBlock/f_53747_ net/minecraft/world/level/block/GrindstoneBlock/WALL_NORTH_LEFT_LEG +FD: net/minecraft/world/level/block/GrindstoneBlock/f_53748_ net/minecraft/world/level/block/GrindstoneBlock/WALL_NORTH_RIGHT_LEG +FD: net/minecraft/world/level/block/GrindstoneBlock/f_53749_ net/minecraft/world/level/block/GrindstoneBlock/WALL_NORTH_ALL_LEGS +FD: net/minecraft/world/level/block/GrindstoneBlock/f_53750_ net/minecraft/world/level/block/GrindstoneBlock/WALL_NORTH_GRINDSTONE +FD: net/minecraft/world/level/block/GrindstoneBlock/f_53751_ net/minecraft/world/level/block/GrindstoneBlock/WALL_WEST_LEFT_POST +FD: net/minecraft/world/level/block/GrindstoneBlock/f_53752_ net/minecraft/world/level/block/GrindstoneBlock/WALL_WEST_RIGHT_POST +FD: net/minecraft/world/level/block/GrindstoneBlock/f_53753_ net/minecraft/world/level/block/GrindstoneBlock/WALL_WEST_LEFT_PIVOT +FD: net/minecraft/world/level/block/GrindstoneBlock/f_53754_ net/minecraft/world/level/block/GrindstoneBlock/WALL_WEST_RIGHT_PIVOT +FD: net/minecraft/world/level/block/GrindstoneBlock/f_53755_ net/minecraft/world/level/block/GrindstoneBlock/WALL_WEST_LEFT_LEG +FD: net/minecraft/world/level/block/GrindstoneBlock/f_53756_ net/minecraft/world/level/block/GrindstoneBlock/WALL_WEST_RIGHT_LEG +FD: net/minecraft/world/level/block/GrindstoneBlock/f_53757_ net/minecraft/world/level/block/GrindstoneBlock/WALL_WEST_ALL_LEGS +FD: net/minecraft/world/level/block/GrindstoneBlock/f_53758_ net/minecraft/world/level/block/GrindstoneBlock/WALL_WEST_GRINDSTONE +FD: net/minecraft/world/level/block/GrindstoneBlock/f_53759_ net/minecraft/world/level/block/GrindstoneBlock/WALL_EAST_LEFT_POST +FD: net/minecraft/world/level/block/GrindstoneBlock/f_53760_ net/minecraft/world/level/block/GrindstoneBlock/WALL_EAST_RIGHT_POST +FD: net/minecraft/world/level/block/GrindstoneBlock/f_53761_ net/minecraft/world/level/block/GrindstoneBlock/WALL_EAST_LEFT_PIVOT +FD: net/minecraft/world/level/block/GrindstoneBlock/f_53762_ net/minecraft/world/level/block/GrindstoneBlock/WALL_EAST_RIGHT_PIVOT +FD: net/minecraft/world/level/block/GrindstoneBlock/f_53763_ net/minecraft/world/level/block/GrindstoneBlock/WALL_EAST_LEFT_LEG +FD: net/minecraft/world/level/block/GrindstoneBlock/f_53764_ net/minecraft/world/level/block/GrindstoneBlock/WALL_EAST_RIGHT_LEG +FD: net/minecraft/world/level/block/GrindstoneBlock/f_53765_ net/minecraft/world/level/block/GrindstoneBlock/WALL_EAST_ALL_LEGS +FD: net/minecraft/world/level/block/GrindstoneBlock/f_53766_ net/minecraft/world/level/block/GrindstoneBlock/WALL_EAST_GRINDSTONE +FD: net/minecraft/world/level/block/GrindstoneBlock/f_53767_ net/minecraft/world/level/block/GrindstoneBlock/FLOOR_NORTH_SOUTH_LEFT_POST +FD: net/minecraft/world/level/block/GrindstoneBlock/f_53768_ net/minecraft/world/level/block/GrindstoneBlock/CONTAINER_TITLE +FD: net/minecraft/world/level/block/GrindstoneBlock/f_53769_ net/minecraft/world/level/block/GrindstoneBlock/CEILING_NORTH_SOUTH_LEFT_POST +FD: net/minecraft/world/level/block/GrindstoneBlock/f_53770_ net/minecraft/world/level/block/GrindstoneBlock/CEILING_NORTH_SOUTH_RIGHT_POST +FD: net/minecraft/world/level/block/GrindstoneBlock/f_53771_ net/minecraft/world/level/block/GrindstoneBlock/CEILING_NORTH_SOUTH_LEFT_PIVOT +FD: net/minecraft/world/level/block/GrindstoneBlock/f_53772_ net/minecraft/world/level/block/GrindstoneBlock/CEILING_NORTH_SOUTH_RIGHT_PIVOT +FD: net/minecraft/world/level/block/GrindstoneBlock/f_53773_ net/minecraft/world/level/block/GrindstoneBlock/CEILING_NORTH_SOUTH_LEFT_LEG +FD: net/minecraft/world/level/block/GrindstoneBlock/f_53774_ net/minecraft/world/level/block/GrindstoneBlock/CEILING_NORTH_SOUTH_RIGHT_LEG +FD: net/minecraft/world/level/block/GrindstoneBlock/f_53775_ net/minecraft/world/level/block/GrindstoneBlock/CEILING_NORTH_SOUTH_ALL_LEGS +FD: net/minecraft/world/level/block/GrindstoneBlock/f_53776_ net/minecraft/world/level/block/GrindstoneBlock/CEILING_NORTH_SOUTH_GRINDSTONE +FD: net/minecraft/world/level/block/GrindstoneBlock/f_53777_ net/minecraft/world/level/block/GrindstoneBlock/CEILING_EAST_WEST_LEFT_POST +FD: net/minecraft/world/level/block/GrindstoneBlock/f_53778_ net/minecraft/world/level/block/GrindstoneBlock/CEILING_EAST_WEST_RIGHT_POST +FD: net/minecraft/world/level/block/GrindstoneBlock/f_53779_ net/minecraft/world/level/block/GrindstoneBlock/CEILING_EAST_WEST_LEFT_PIVOT +FD: net/minecraft/world/level/block/GrindstoneBlock/f_53780_ net/minecraft/world/level/block/GrindstoneBlock/CEILING_EAST_WEST_RIGHT_PIVOT +FD: net/minecraft/world/level/block/GrindstoneBlock/f_53781_ net/minecraft/world/level/block/GrindstoneBlock/CEILING_EAST_WEST_LEFT_LEG +FD: net/minecraft/world/level/block/GrindstoneBlock/f_53782_ net/minecraft/world/level/block/GrindstoneBlock/CEILING_EAST_WEST_RIGHT_LEG +FD: net/minecraft/world/level/block/GrindstoneBlock/f_53783_ net/minecraft/world/level/block/GrindstoneBlock/CEILING_EAST_WEST_ALL_LEGS +FD: net/minecraft/world/level/block/GrindstoneBlock/f_53784_ net/minecraft/world/level/block/GrindstoneBlock/CEILING_EAST_WEST_GRINDSTONE +FD: net/minecraft/world/level/block/GrindstoneBlock/f_53785_ net/minecraft/world/level/block/GrindstoneBlock/FLOOR_NORTH_SOUTH_RIGHT_POST +FD: net/minecraft/world/level/block/GrindstoneBlock/f_53786_ net/minecraft/world/level/block/GrindstoneBlock/FLOOR_NORTH_SOUTH_LEFT_PIVOT +FD: net/minecraft/world/level/block/GrindstoneBlock/f_53787_ net/minecraft/world/level/block/GrindstoneBlock/FLOOR_NORTH_SOUTH_RIGHT_PIVOT +FD: net/minecraft/world/level/block/GrindstoneBlock/f_53788_ net/minecraft/world/level/block/GrindstoneBlock/FLOOR_NORTH_SOUTH_LEFT_LEG +FD: net/minecraft/world/level/block/GrindstoneBlock/f_53789_ net/minecraft/world/level/block/GrindstoneBlock/FLOOR_NORTH_SOUTH_RIGHT_LEG +FD: net/minecraft/world/level/block/GrindstoneBlock/f_53790_ net/minecraft/world/level/block/GrindstoneBlock/FLOOR_NORTH_SOUTH_ALL_LEGS +FD: net/minecraft/world/level/block/GrindstoneBlock/f_53791_ net/minecraft/world/level/block/GrindstoneBlock/FLOOR_NORTH_SOUTH_GRINDSTONE +FD: net/minecraft/world/level/block/GrindstoneBlock/f_53792_ net/minecraft/world/level/block/GrindstoneBlock/FLOOR_EAST_WEST_LEFT_POST +FD: net/minecraft/world/level/block/GrindstoneBlock/f_53793_ net/minecraft/world/level/block/GrindstoneBlock/FLOOR_EAST_WEST_RIGHT_POST +FD: net/minecraft/world/level/block/GrindstoneBlock/f_53794_ net/minecraft/world/level/block/GrindstoneBlock/FLOOR_EAST_WEST_LEFT_PIVOT +FD: net/minecraft/world/level/block/GrindstoneBlock/f_53795_ net/minecraft/world/level/block/GrindstoneBlock/FLOOR_EAST_WEST_RIGHT_PIVOT +FD: net/minecraft/world/level/block/GrindstoneBlock/f_53796_ net/minecraft/world/level/block/GrindstoneBlock/FLOOR_EAST_WEST_LEFT_LEG +FD: net/minecraft/world/level/block/GrindstoneBlock/f_53797_ net/minecraft/world/level/block/GrindstoneBlock/FLOOR_EAST_WEST_RIGHT_LEG +FD: net/minecraft/world/level/block/GrindstoneBlock/f_53798_ net/minecraft/world/level/block/GrindstoneBlock/FLOOR_EAST_WEST_ALL_LEGS +FD: net/minecraft/world/level/block/GrindstoneBlock/f_53799_ net/minecraft/world/level/block/GrindstoneBlock/FLOOR_EAST_WEST_GRINDSTONE +FD: net/minecraft/world/level/block/GrindstoneBlock/f_53800_ net/minecraft/world/level/block/GrindstoneBlock/WALL_SOUTH_LEFT_POST +FD: net/minecraft/world/level/block/GrindstoneBlock/f_53801_ net/minecraft/world/level/block/GrindstoneBlock/WALL_SOUTH_RIGHT_POST +FD: net/minecraft/world/level/block/GrindstoneBlock/f_53802_ net/minecraft/world/level/block/GrindstoneBlock/WALL_SOUTH_LEFT_PIVOT +FD: net/minecraft/world/level/block/GrindstoneBlock/f_53803_ net/minecraft/world/level/block/GrindstoneBlock/WALL_SOUTH_RIGHT_PIVOT +FD: net/minecraft/world/level/block/GrindstoneBlock/f_53804_ net/minecraft/world/level/block/GrindstoneBlock/WALL_SOUTH_LEFT_LEG +FD: net/minecraft/world/level/block/GrindstoneBlock/f_53805_ net/minecraft/world/level/block/GrindstoneBlock/WALL_SOUTH_RIGHT_LEG +FD: net/minecraft/world/level/block/GrindstoneBlock$1/f_53857_ net/minecraft/world/level/block/GrindstoneBlock$1/$SwitchMap$net$minecraft$world$level$block$state$properties$AttachFace +FD: net/minecraft/world/level/block/GrowingPlantBlock/f_53859_ net/minecraft/world/level/block/GrowingPlantBlock/growthDirection +FD: net/minecraft/world/level/block/GrowingPlantBlock/f_53860_ net/minecraft/world/level/block/GrowingPlantBlock/scheduleFluidTicks +FD: net/minecraft/world/level/block/GrowingPlantBlock/f_53861_ net/minecraft/world/level/block/GrowingPlantBlock/shape +FD: net/minecraft/world/level/block/GrowingPlantHeadBlock/f_153328_ net/minecraft/world/level/block/GrowingPlantHeadBlock/MAX_AGE +FD: net/minecraft/world/level/block/GrowingPlantHeadBlock/f_53924_ net/minecraft/world/level/block/GrowingPlantHeadBlock/AGE +FD: net/minecraft/world/level/block/GrowingPlantHeadBlock/f_53925_ net/minecraft/world/level/block/GrowingPlantHeadBlock/growPerTickProbability +FD: net/minecraft/world/level/block/HangingRootsBlock/f_153333_ net/minecraft/world/level/block/HangingRootsBlock/SHAPE +FD: net/minecraft/world/level/block/HangingRootsBlock/f_153334_ net/minecraft/world/level/block/HangingRootsBlock/WATERLOGGED +FD: net/minecraft/world/level/block/HoneyBlock/f_153367_ net/minecraft/world/level/block/HoneyBlock/SLIDE_STARTS_WHEN_VERTICAL_SPEED_IS_AT_LEAST +FD: net/minecraft/world/level/block/HoneyBlock/f_153368_ net/minecraft/world/level/block/HoneyBlock/MIN_FALL_SPEED_TO_BE_CONSIDERED_SLIDING +FD: net/minecraft/world/level/block/HoneyBlock/f_153369_ net/minecraft/world/level/block/HoneyBlock/THROTTLE_SLIDE_SPEED_TO +FD: net/minecraft/world/level/block/HoneyBlock/f_153370_ net/minecraft/world/level/block/HoneyBlock/SLIDE_ADVANCEMENT_CHECK_INTERVAL +FD: net/minecraft/world/level/block/HoneyBlock/f_53982_ net/minecraft/world/level/block/HoneyBlock/SHAPE +FD: net/minecraft/world/level/block/HopperBlock/f_54021_ net/minecraft/world/level/block/HopperBlock/FACING +FD: net/minecraft/world/level/block/HopperBlock/f_54022_ net/minecraft/world/level/block/HopperBlock/ENABLED +FD: net/minecraft/world/level/block/HopperBlock/f_54023_ net/minecraft/world/level/block/HopperBlock/TOP +FD: net/minecraft/world/level/block/HopperBlock/f_54024_ net/minecraft/world/level/block/HopperBlock/FUNNEL +FD: net/minecraft/world/level/block/HopperBlock/f_54025_ net/minecraft/world/level/block/HopperBlock/CONVEX_BASE +FD: net/minecraft/world/level/block/HopperBlock/f_54026_ net/minecraft/world/level/block/HopperBlock/BASE +FD: net/minecraft/world/level/block/HopperBlock/f_54027_ net/minecraft/world/level/block/HopperBlock/DOWN_SHAPE +FD: net/minecraft/world/level/block/HopperBlock/f_54028_ net/minecraft/world/level/block/HopperBlock/EAST_SHAPE +FD: net/minecraft/world/level/block/HopperBlock/f_54029_ net/minecraft/world/level/block/HopperBlock/NORTH_SHAPE +FD: net/minecraft/world/level/block/HopperBlock/f_54030_ net/minecraft/world/level/block/HopperBlock/SOUTH_SHAPE +FD: net/minecraft/world/level/block/HopperBlock/f_54031_ net/minecraft/world/level/block/HopperBlock/WEST_SHAPE +FD: net/minecraft/world/level/block/HopperBlock/f_54032_ net/minecraft/world/level/block/HopperBlock/DOWN_INTERACTION_SHAPE +FD: net/minecraft/world/level/block/HopperBlock/f_54033_ net/minecraft/world/level/block/HopperBlock/EAST_INTERACTION_SHAPE +FD: net/minecraft/world/level/block/HopperBlock/f_54034_ net/minecraft/world/level/block/HopperBlock/NORTH_INTERACTION_SHAPE +FD: net/minecraft/world/level/block/HopperBlock/f_54035_ net/minecraft/world/level/block/HopperBlock/SOUTH_INTERACTION_SHAPE +FD: net/minecraft/world/level/block/HopperBlock/f_54036_ net/minecraft/world/level/block/HopperBlock/WEST_INTERACTION_SHAPE +FD: net/minecraft/world/level/block/HopperBlock$1/f_54115_ net/minecraft/world/level/block/HopperBlock$1/$SwitchMap$net$minecraft$core$Direction +FD: net/minecraft/world/level/block/HorizontalDirectionalBlock/f_54117_ net/minecraft/world/level/block/HorizontalDirectionalBlock/FACING +FD: net/minecraft/world/level/block/HugeMushroomBlock/f_54127_ net/minecraft/world/level/block/HugeMushroomBlock/NORTH +FD: net/minecraft/world/level/block/HugeMushroomBlock/f_54128_ net/minecraft/world/level/block/HugeMushroomBlock/EAST +FD: net/minecraft/world/level/block/HugeMushroomBlock/f_54129_ net/minecraft/world/level/block/HugeMushroomBlock/SOUTH +FD: net/minecraft/world/level/block/HugeMushroomBlock/f_54130_ net/minecraft/world/level/block/HugeMushroomBlock/WEST +FD: net/minecraft/world/level/block/HugeMushroomBlock/f_54131_ net/minecraft/world/level/block/HugeMushroomBlock/UP +FD: net/minecraft/world/level/block/HugeMushroomBlock/f_54132_ net/minecraft/world/level/block/HugeMushroomBlock/DOWN +FD: net/minecraft/world/level/block/HugeMushroomBlock/f_54133_ net/minecraft/world/level/block/HugeMushroomBlock/PROPERTY_BY_DIRECTION +FD: net/minecraft/world/level/block/InfestedBlock/f_153421_ net/minecraft/world/level/block/InfestedBlock/HOST_TO_INFESTED_STATES +FD: net/minecraft/world/level/block/InfestedBlock/f_153422_ net/minecraft/world/level/block/InfestedBlock/INFESTED_TO_HOST_STATES +FD: net/minecraft/world/level/block/InfestedBlock/f_54174_ net/minecraft/world/level/block/InfestedBlock/hostBlock +FD: net/minecraft/world/level/block/InfestedBlock/f_54175_ net/minecraft/world/level/block/InfestedBlock/BLOCK_BY_HOST_BLOCK +FD: net/minecraft/world/level/block/JigsawBlock/f_54222_ net/minecraft/world/level/block/JigsawBlock/ORIENTATION +FD: net/minecraft/world/level/block/JukeboxBlock/f_54254_ net/minecraft/world/level/block/JukeboxBlock/HAS_RECORD +FD: net/minecraft/world/level/block/KelpBlock/f_153453_ net/minecraft/world/level/block/KelpBlock/GROW_PER_TICK_PROBABILITY +FD: net/minecraft/world/level/block/KelpBlock/f_54297_ net/minecraft/world/level/block/KelpBlock/SHAPE +FD: net/minecraft/world/level/block/LadderBlock/f_153458_ net/minecraft/world/level/block/LadderBlock/AABB_OFFSET +FD: net/minecraft/world/level/block/LadderBlock/f_54337_ net/minecraft/world/level/block/LadderBlock/FACING +FD: net/minecraft/world/level/block/LadderBlock/f_54338_ net/minecraft/world/level/block/LadderBlock/WATERLOGGED +FD: net/minecraft/world/level/block/LadderBlock/f_54339_ net/minecraft/world/level/block/LadderBlock/EAST_AABB +FD: net/minecraft/world/level/block/LadderBlock/f_54340_ net/minecraft/world/level/block/LadderBlock/WEST_AABB +FD: net/minecraft/world/level/block/LadderBlock/f_54341_ net/minecraft/world/level/block/LadderBlock/SOUTH_AABB +FD: net/minecraft/world/level/block/LadderBlock/f_54342_ net/minecraft/world/level/block/LadderBlock/NORTH_AABB +FD: net/minecraft/world/level/block/LadderBlock$1/f_54378_ net/minecraft/world/level/block/LadderBlock$1/$SwitchMap$net$minecraft$core$Direction +FD: net/minecraft/world/level/block/LanternBlock/f_153459_ net/minecraft/world/level/block/LanternBlock/HANGING +FD: net/minecraft/world/level/block/LanternBlock/f_153460_ net/minecraft/world/level/block/LanternBlock/WATERLOGGED +FD: net/minecraft/world/level/block/LanternBlock/f_153461_ net/minecraft/world/level/block/LanternBlock/AABB +FD: net/minecraft/world/level/block/LanternBlock/f_153462_ net/minecraft/world/level/block/LanternBlock/HANGING_AABB +FD: net/minecraft/world/level/block/LayeredCauldronBlock/f_153512_ net/minecraft/world/level/block/LayeredCauldronBlock/MIN_FILL_LEVEL +FD: net/minecraft/world/level/block/LayeredCauldronBlock/f_153513_ net/minecraft/world/level/block/LayeredCauldronBlock/MAX_FILL_LEVEL +FD: net/minecraft/world/level/block/LayeredCauldronBlock/f_153514_ net/minecraft/world/level/block/LayeredCauldronBlock/LEVEL +FD: net/minecraft/world/level/block/LayeredCauldronBlock/f_153515_ net/minecraft/world/level/block/LayeredCauldronBlock/RAIN +FD: net/minecraft/world/level/block/LayeredCauldronBlock/f_153516_ net/minecraft/world/level/block/LayeredCauldronBlock/SNOW +FD: net/minecraft/world/level/block/LayeredCauldronBlock/f_153517_ net/minecraft/world/level/block/LayeredCauldronBlock/BASE_CONTENT_HEIGHT +FD: net/minecraft/world/level/block/LayeredCauldronBlock/f_153518_ net/minecraft/world/level/block/LayeredCauldronBlock/HEIGHT_PER_LEVEL +FD: net/minecraft/world/level/block/LayeredCauldronBlock/f_153519_ net/minecraft/world/level/block/LayeredCauldronBlock/fillPredicate +FD: net/minecraft/world/level/block/LeavesBlock/f_153563_ net/minecraft/world/level/block/LeavesBlock/DECAY_DISTANCE +FD: net/minecraft/world/level/block/LeavesBlock/f_153564_ net/minecraft/world/level/block/LeavesBlock/TICK_DELAY +FD: net/minecraft/world/level/block/LeavesBlock/f_221367_ net/minecraft/world/level/block/LeavesBlock/WATERLOGGED +FD: net/minecraft/world/level/block/LeavesBlock/f_54418_ net/minecraft/world/level/block/LeavesBlock/DISTANCE +FD: net/minecraft/world/level/block/LeavesBlock/f_54419_ net/minecraft/world/level/block/LeavesBlock/PERSISTENT +FD: net/minecraft/world/level/block/LecternBlock/f_153565_ net/minecraft/world/level/block/LecternBlock/PAGE_CHANGE_IMPULSE_TICKS +FD: net/minecraft/world/level/block/LecternBlock/f_54465_ net/minecraft/world/level/block/LecternBlock/FACING +FD: net/minecraft/world/level/block/LecternBlock/f_54466_ net/minecraft/world/level/block/LecternBlock/POWERED +FD: net/minecraft/world/level/block/LecternBlock/f_54467_ net/minecraft/world/level/block/LecternBlock/HAS_BOOK +FD: net/minecraft/world/level/block/LecternBlock/f_54468_ net/minecraft/world/level/block/LecternBlock/SHAPE_BASE +FD: net/minecraft/world/level/block/LecternBlock/f_54469_ net/minecraft/world/level/block/LecternBlock/SHAPE_POST +FD: net/minecraft/world/level/block/LecternBlock/f_54470_ net/minecraft/world/level/block/LecternBlock/SHAPE_COMMON +FD: net/minecraft/world/level/block/LecternBlock/f_54471_ net/minecraft/world/level/block/LecternBlock/SHAPE_TOP_PLATE +FD: net/minecraft/world/level/block/LecternBlock/f_54472_ net/minecraft/world/level/block/LecternBlock/SHAPE_COLLISION +FD: net/minecraft/world/level/block/LecternBlock/f_54473_ net/minecraft/world/level/block/LecternBlock/SHAPE_WEST +FD: net/minecraft/world/level/block/LecternBlock/f_54474_ net/minecraft/world/level/block/LecternBlock/SHAPE_NORTH +FD: net/minecraft/world/level/block/LecternBlock/f_54475_ net/minecraft/world/level/block/LecternBlock/SHAPE_EAST +FD: net/minecraft/world/level/block/LecternBlock/f_54476_ net/minecraft/world/level/block/LecternBlock/SHAPE_SOUTH +FD: net/minecraft/world/level/block/LecternBlock$1/f_54591_ net/minecraft/world/level/block/LecternBlock$1/$SwitchMap$net$minecraft$core$Direction +FD: net/minecraft/world/level/block/LevelEvent/f_153581_ net/minecraft/world/level/block/LevelEvent/SOUND_ZOMBIE_INFECTED +FD: net/minecraft/world/level/block/LevelEvent/f_153582_ net/minecraft/world/level/block/LevelEvent/SOUND_ZOMBIE_CONVERTED +FD: net/minecraft/world/level/block/LevelEvent/f_153583_ net/minecraft/world/level/block/LevelEvent/SOUND_DRAGON_DEATH +FD: net/minecraft/world/level/block/LevelEvent/f_153584_ net/minecraft/world/level/block/LevelEvent/SOUND_ANVIL_BROKEN +FD: net/minecraft/world/level/block/LevelEvent/f_153585_ net/minecraft/world/level/block/LevelEvent/SOUND_ANVIL_USED +FD: net/minecraft/world/level/block/LevelEvent/f_153586_ net/minecraft/world/level/block/LevelEvent/SOUND_ANVIL_LAND +FD: net/minecraft/world/level/block/LevelEvent/f_153587_ net/minecraft/world/level/block/LevelEvent/SOUND_PORTAL_TRAVEL +FD: net/minecraft/world/level/block/LevelEvent/f_153588_ net/minecraft/world/level/block/LevelEvent/SOUND_CHORUS_GROW +FD: net/minecraft/world/level/block/LevelEvent/f_153589_ net/minecraft/world/level/block/LevelEvent/SOUND_CHORUS_DEATH +FD: net/minecraft/world/level/block/LevelEvent/f_153590_ net/minecraft/world/level/block/LevelEvent/SOUND_BREWING_STAND_BREW +FD: net/minecraft/world/level/block/LevelEvent/f_153593_ net/minecraft/world/level/block/LevelEvent/SOUND_END_PORTAL_SPAWN +FD: net/minecraft/world/level/block/LevelEvent/f_153594_ net/minecraft/world/level/block/LevelEvent/SOUND_PHANTOM_BITE +FD: net/minecraft/world/level/block/LevelEvent/f_153595_ net/minecraft/world/level/block/LevelEvent/SOUND_ZOMBIE_TO_DROWNED +FD: net/minecraft/world/level/block/LevelEvent/f_153596_ net/minecraft/world/level/block/LevelEvent/SOUND_HUSK_TO_ZOMBIE +FD: net/minecraft/world/level/block/LevelEvent/f_153597_ net/minecraft/world/level/block/LevelEvent/SOUND_GRINDSTONE_USED +FD: net/minecraft/world/level/block/LevelEvent/f_153598_ net/minecraft/world/level/block/LevelEvent/SOUND_PAGE_TURN +FD: net/minecraft/world/level/block/LevelEvent/f_153599_ net/minecraft/world/level/block/LevelEvent/SOUND_SMITHING_TABLE_USED +FD: net/minecraft/world/level/block/LevelEvent/f_153600_ net/minecraft/world/level/block/LevelEvent/SOUND_POINTED_DRIPSTONE_LAND +FD: net/minecraft/world/level/block/LevelEvent/f_153601_ net/minecraft/world/level/block/LevelEvent/SOUND_DRIP_LAVA_INTO_CAULDRON +FD: net/minecraft/world/level/block/LevelEvent/f_153602_ net/minecraft/world/level/block/LevelEvent/SOUND_DRIP_WATER_INTO_CAULDRON +FD: net/minecraft/world/level/block/LevelEvent/f_153603_ net/minecraft/world/level/block/LevelEvent/SOUND_SKELETON_TO_STRAY +FD: net/minecraft/world/level/block/LevelEvent/f_153604_ net/minecraft/world/level/block/LevelEvent/COMPOSTER_FILL +FD: net/minecraft/world/level/block/LevelEvent/f_153605_ net/minecraft/world/level/block/LevelEvent/LAVA_FIZZ +FD: net/minecraft/world/level/block/LevelEvent/f_153606_ net/minecraft/world/level/block/LevelEvent/REDSTONE_TORCH_BURNOUT +FD: net/minecraft/world/level/block/LevelEvent/f_153607_ net/minecraft/world/level/block/LevelEvent/SOUND_DISPENSER_DISPENSE +FD: net/minecraft/world/level/block/LevelEvent/f_153608_ net/minecraft/world/level/block/LevelEvent/END_PORTAL_FRAME_FILL +FD: net/minecraft/world/level/block/LevelEvent/f_153609_ net/minecraft/world/level/block/LevelEvent/DRIPSTONE_DRIP +FD: net/minecraft/world/level/block/LevelEvent/f_153610_ net/minecraft/world/level/block/LevelEvent/PARTICLES_AND_SOUND_PLANT_GROWTH +FD: net/minecraft/world/level/block/LevelEvent/f_153611_ net/minecraft/world/level/block/LevelEvent/PARTICLES_SHOOT +FD: net/minecraft/world/level/block/LevelEvent/f_153612_ net/minecraft/world/level/block/LevelEvent/PARTICLES_DESTROY_BLOCK +FD: net/minecraft/world/level/block/LevelEvent/f_153613_ net/minecraft/world/level/block/LevelEvent/PARTICLES_SPELL_POTION_SPLASH +FD: net/minecraft/world/level/block/LevelEvent/f_153614_ net/minecraft/world/level/block/LevelEvent/PARTICLES_EYE_OF_ENDER_DEATH +FD: net/minecraft/world/level/block/LevelEvent/f_153615_ net/minecraft/world/level/block/LevelEvent/PARTICLES_MOBBLOCK_SPAWN +FD: net/minecraft/world/level/block/LevelEvent/f_153616_ net/minecraft/world/level/block/LevelEvent/PARTICLES_PLANT_GROWTH +FD: net/minecraft/world/level/block/LevelEvent/f_153617_ net/minecraft/world/level/block/LevelEvent/PARTICLES_DRAGON_FIREBALL_SPLASH +FD: net/minecraft/world/level/block/LevelEvent/f_153618_ net/minecraft/world/level/block/LevelEvent/PARTICLES_INSTANT_POTION_SPLASH +FD: net/minecraft/world/level/block/LevelEvent/f_153619_ net/minecraft/world/level/block/LevelEvent/PARTICLES_DRAGON_BLOCK_BREAK +FD: net/minecraft/world/level/block/LevelEvent/f_153620_ net/minecraft/world/level/block/LevelEvent/PARTICLES_WATER_EVAPORATING +FD: net/minecraft/world/level/block/LevelEvent/f_153621_ net/minecraft/world/level/block/LevelEvent/ANIMATION_END_GATEWAY_SPAWN +FD: net/minecraft/world/level/block/LevelEvent/f_153622_ net/minecraft/world/level/block/LevelEvent/ANIMATION_DRAGON_SUMMON_ROAR +FD: net/minecraft/world/level/block/LevelEvent/f_153623_ net/minecraft/world/level/block/LevelEvent/PARTICLES_ELECTRIC_SPARK +FD: net/minecraft/world/level/block/LevelEvent/f_153624_ net/minecraft/world/level/block/LevelEvent/PARTICLES_AND_SOUND_WAX_ON +FD: net/minecraft/world/level/block/LevelEvent/f_153625_ net/minecraft/world/level/block/LevelEvent/PARTICLES_WAX_OFF +FD: net/minecraft/world/level/block/LevelEvent/f_153626_ net/minecraft/world/level/block/LevelEvent/PARTICLES_SCRAPE +FD: net/minecraft/world/level/block/LevelEvent/f_153627_ net/minecraft/world/level/block/LevelEvent/SOUND_DISPENSER_FAIL +FD: net/minecraft/world/level/block/LevelEvent/f_153628_ net/minecraft/world/level/block/LevelEvent/SOUND_DISPENSER_PROJECTILE_LAUNCH +FD: net/minecraft/world/level/block/LevelEvent/f_153629_ net/minecraft/world/level/block/LevelEvent/SOUND_ENDER_EYE_LAUNCH +FD: net/minecraft/world/level/block/LevelEvent/f_153630_ net/minecraft/world/level/block/LevelEvent/SOUND_FIREWORK_SHOOT +FD: net/minecraft/world/level/block/LevelEvent/f_153635_ net/minecraft/world/level/block/LevelEvent/SOUND_EXTINGUISH_FIRE +FD: net/minecraft/world/level/block/LevelEvent/f_153641_ net/minecraft/world/level/block/LevelEvent/SOUND_GHAST_WARNING +FD: net/minecraft/world/level/block/LevelEvent/f_153642_ net/minecraft/world/level/block/LevelEvent/SOUND_GHAST_FIREBALL +FD: net/minecraft/world/level/block/LevelEvent/f_153643_ net/minecraft/world/level/block/LevelEvent/SOUND_DRAGON_FIREBALL +FD: net/minecraft/world/level/block/LevelEvent/f_153644_ net/minecraft/world/level/block/LevelEvent/SOUND_BLAZE_FIREBALL +FD: net/minecraft/world/level/block/LevelEvent/f_153645_ net/minecraft/world/level/block/LevelEvent/SOUND_ZOMBIE_WOODEN_DOOR +FD: net/minecraft/world/level/block/LevelEvent/f_153646_ net/minecraft/world/level/block/LevelEvent/SOUND_ZOMBIE_IRON_DOOR +FD: net/minecraft/world/level/block/LevelEvent/f_153647_ net/minecraft/world/level/block/LevelEvent/SOUND_ZOMBIE_DOOR_CRASH +FD: net/minecraft/world/level/block/LevelEvent/f_153648_ net/minecraft/world/level/block/LevelEvent/SOUND_WITHER_BLOCK_BREAK +FD: net/minecraft/world/level/block/LevelEvent/f_153649_ net/minecraft/world/level/block/LevelEvent/SOUND_WITHER_BOSS_SPAWN +FD: net/minecraft/world/level/block/LevelEvent/f_153650_ net/minecraft/world/level/block/LevelEvent/SOUND_WITHER_BOSS_SHOOT +FD: net/minecraft/world/level/block/LevelEvent/f_153651_ net/minecraft/world/level/block/LevelEvent/SOUND_BAT_LIFTOFF +FD: net/minecraft/world/level/block/LevelEvent/f_221392_ net/minecraft/world/level/block/LevelEvent/PARTICLES_SCULK_CHARGE +FD: net/minecraft/world/level/block/LevelEvent/f_221393_ net/minecraft/world/level/block/LevelEvent/PARTICLES_SCULK_SHRIEK +FD: net/minecraft/world/level/block/LevelEvent/f_271287_ net/minecraft/world/level/block/LevelEvent/SOUND_STOP_JUKEBOX_SONG +FD: net/minecraft/world/level/block/LevelEvent/f_271424_ net/minecraft/world/level/block/LevelEvent/PARTICLES_AND_SOUND_BRUSH_BLOCK_COMPLETE +FD: net/minecraft/world/level/block/LevelEvent/f_271529_ net/minecraft/world/level/block/LevelEvent/SOUND_PLAY_JUKEBOX_SONG +FD: net/minecraft/world/level/block/LevelEvent/f_276522_ net/minecraft/world/level/block/LevelEvent/PARTICLES_EGG_CRACK +FD: net/minecraft/world/level/block/LeverBlock/f_153653_ net/minecraft/world/level/block/LeverBlock/DEPTH +FD: net/minecraft/world/level/block/LeverBlock/f_153654_ net/minecraft/world/level/block/LeverBlock/WIDTH +FD: net/minecraft/world/level/block/LeverBlock/f_153655_ net/minecraft/world/level/block/LeverBlock/HEIGHT +FD: net/minecraft/world/level/block/LeverBlock/f_54622_ net/minecraft/world/level/block/LeverBlock/POWERED +FD: net/minecraft/world/level/block/LeverBlock/f_54623_ net/minecraft/world/level/block/LeverBlock/NORTH_AABB +FD: net/minecraft/world/level/block/LeverBlock/f_54624_ net/minecraft/world/level/block/LeverBlock/SOUTH_AABB +FD: net/minecraft/world/level/block/LeverBlock/f_54625_ net/minecraft/world/level/block/LeverBlock/WEST_AABB +FD: net/minecraft/world/level/block/LeverBlock/f_54626_ net/minecraft/world/level/block/LeverBlock/EAST_AABB +FD: net/minecraft/world/level/block/LeverBlock/f_54627_ net/minecraft/world/level/block/LeverBlock/UP_AABB_Z +FD: net/minecraft/world/level/block/LeverBlock/f_54628_ net/minecraft/world/level/block/LeverBlock/UP_AABB_X +FD: net/minecraft/world/level/block/LeverBlock/f_54629_ net/minecraft/world/level/block/LeverBlock/DOWN_AABB_Z +FD: net/minecraft/world/level/block/LeverBlock/f_54630_ net/minecraft/world/level/block/LeverBlock/DOWN_AABB_X +FD: net/minecraft/world/level/block/LeverBlock$1/f_54684_ net/minecraft/world/level/block/LeverBlock$1/$SwitchMap$net$minecraft$core$Direction$Axis +FD: net/minecraft/world/level/block/LeverBlock$1/f_54685_ net/minecraft/world/level/block/LeverBlock$1/$SwitchMap$net$minecraft$core$Direction +FD: net/minecraft/world/level/block/LeverBlock$1/f_54686_ net/minecraft/world/level/block/LeverBlock$1/$SwitchMap$net$minecraft$world$level$block$state$properties$AttachFace +FD: net/minecraft/world/level/block/LightBlock/f_153656_ net/minecraft/world/level/block/LightBlock/MAX_LEVEL +FD: net/minecraft/world/level/block/LightBlock/f_153657_ net/minecraft/world/level/block/LightBlock/LEVEL +FD: net/minecraft/world/level/block/LightBlock/f_153658_ net/minecraft/world/level/block/LightBlock/WATERLOGGED +FD: net/minecraft/world/level/block/LightBlock/f_153659_ net/minecraft/world/level/block/LightBlock/LIGHT_EMISSION +FD: net/minecraft/world/level/block/LightningRodBlock/f_153702_ net/minecraft/world/level/block/LightningRodBlock/WATERLOGGED +FD: net/minecraft/world/level/block/LightningRodBlock/f_153703_ net/minecraft/world/level/block/LightningRodBlock/POWERED +FD: net/minecraft/world/level/block/LightningRodBlock/f_153704_ net/minecraft/world/level/block/LightningRodBlock/RANGE +FD: net/minecraft/world/level/block/LightningRodBlock/f_153705_ net/minecraft/world/level/block/LightningRodBlock/ACTIVATION_TICKS +FD: net/minecraft/world/level/block/LightningRodBlock/f_153706_ net/minecraft/world/level/block/LightningRodBlock/SPARK_CYCLE +FD: net/minecraft/world/level/block/LiquidBlock/f_181233_ net/minecraft/world/level/block/LiquidBlock/POSSIBLE_FLOW_DIRECTIONS +FD: net/minecraft/world/level/block/LiquidBlock/f_54688_ net/minecraft/world/level/block/LiquidBlock/LEVEL +FD: net/minecraft/world/level/block/LiquidBlock/f_54689_ net/minecraft/world/level/block/LiquidBlock/fluid +FD: net/minecraft/world/level/block/LiquidBlock/f_54690_ net/minecraft/world/level/block/LiquidBlock/STABLE_SHAPE +FD: net/minecraft/world/level/block/LiquidBlock/f_54691_ net/minecraft/world/level/block/LiquidBlock/stateCache +FD: net/minecraft/world/level/block/LoomBlock/f_54774_ net/minecraft/world/level/block/LoomBlock/CONTAINER_TITLE +FD: net/minecraft/world/level/block/MagmaBlock/f_153775_ net/minecraft/world/level/block/MagmaBlock/BUBBLE_COLUMN_CHECK_DELAY +FD: net/minecraft/world/level/block/MangrovePropaguleBlock/f_221441_ net/minecraft/world/level/block/MangrovePropaguleBlock/AGE +FD: net/minecraft/world/level/block/MangrovePropaguleBlock/f_221442_ net/minecraft/world/level/block/MangrovePropaguleBlock/MAX_AGE +FD: net/minecraft/world/level/block/MangrovePropaguleBlock/f_221443_ net/minecraft/world/level/block/MangrovePropaguleBlock/HANGING +FD: net/minecraft/world/level/block/MangrovePropaguleBlock/f_221444_ net/minecraft/world/level/block/MangrovePropaguleBlock/SHAPE_PER_AGE +FD: net/minecraft/world/level/block/MangrovePropaguleBlock/f_221445_ net/minecraft/world/level/block/MangrovePropaguleBlock/WATERLOGGED +FD: net/minecraft/world/level/block/MangrovePropaguleBlock/f_221446_ net/minecraft/world/level/block/MangrovePropaguleBlock/GROW_TALL_MANGROVE_PROBABILITY +FD: net/minecraft/world/level/block/MangroveRootsBlock/f_221503_ net/minecraft/world/level/block/MangroveRootsBlock/WATERLOGGED +FD: net/minecraft/world/level/block/Mirror/$VALUES net/minecraft/world/level/block/Mirror/$VALUES +FD: net/minecraft/world/level/block/Mirror/FRONT_BACK net/minecraft/world/level/block/Mirror/FRONT_BACK +FD: net/minecraft/world/level/block/Mirror/LEFT_RIGHT net/minecraft/world/level/block/Mirror/LEFT_RIGHT +FD: net/minecraft/world/level/block/Mirror/NONE net/minecraft/world/level/block/Mirror/NONE +FD: net/minecraft/world/level/block/Mirror/f_153781_ net/minecraft/world/level/block/Mirror/symbol +FD: net/minecraft/world/level/block/Mirror/f_221524_ net/minecraft/world/level/block/Mirror/CODEC +FD: net/minecraft/world/level/block/Mirror/f_221525_ net/minecraft/world/level/block/Mirror/id +FD: net/minecraft/world/level/block/Mirror/f_54835_ net/minecraft/world/level/block/Mirror/rotation +FD: net/minecraft/world/level/block/Mirror$1/f_54853_ net/minecraft/world/level/block/Mirror$1/$SwitchMap$net$minecraft$world$level$block$Mirror +FD: net/minecraft/world/level/block/MudBlock/f_221542_ net/minecraft/world/level/block/MudBlock/SHAPE +FD: net/minecraft/world/level/block/MultifaceBlock/f_153806_ net/minecraft/world/level/block/MultifaceBlock/DIRECTIONS +FD: net/minecraft/world/level/block/MultifaceBlock/f_153807_ net/minecraft/world/level/block/MultifaceBlock/AABB_OFFSET +FD: net/minecraft/world/level/block/MultifaceBlock/f_153808_ net/minecraft/world/level/block/MultifaceBlock/UP_AABB +FD: net/minecraft/world/level/block/MultifaceBlock/f_153809_ net/minecraft/world/level/block/MultifaceBlock/DOWN_AABB +FD: net/minecraft/world/level/block/MultifaceBlock/f_153810_ net/minecraft/world/level/block/MultifaceBlock/WEST_AABB +FD: net/minecraft/world/level/block/MultifaceBlock/f_153811_ net/minecraft/world/level/block/MultifaceBlock/EAST_AABB +FD: net/minecraft/world/level/block/MultifaceBlock/f_153812_ net/minecraft/world/level/block/MultifaceBlock/NORTH_AABB +FD: net/minecraft/world/level/block/MultifaceBlock/f_153813_ net/minecraft/world/level/block/MultifaceBlock/SOUTH_AABB +FD: net/minecraft/world/level/block/MultifaceBlock/f_153814_ net/minecraft/world/level/block/MultifaceBlock/PROPERTY_BY_DIRECTION +FD: net/minecraft/world/level/block/MultifaceBlock/f_153815_ net/minecraft/world/level/block/MultifaceBlock/SHAPE_BY_DIRECTION +FD: net/minecraft/world/level/block/MultifaceBlock/f_153816_ net/minecraft/world/level/block/MultifaceBlock/shapesCache +FD: net/minecraft/world/level/block/MultifaceBlock/f_153817_ net/minecraft/world/level/block/MultifaceBlock/canRotate +FD: net/minecraft/world/level/block/MultifaceBlock/f_153818_ net/minecraft/world/level/block/MultifaceBlock/canMirrorX +FD: net/minecraft/world/level/block/MultifaceBlock/f_153819_ net/minecraft/world/level/block/MultifaceBlock/canMirrorZ +FD: net/minecraft/world/level/block/MultifaceSpreader/f_221586_ net/minecraft/world/level/block/MultifaceSpreader/DEFAULT_SPREAD_ORDER +FD: net/minecraft/world/level/block/MultifaceSpreader/f_221587_ net/minecraft/world/level/block/MultifaceSpreader/config +FD: net/minecraft/world/level/block/MultifaceSpreader$DefaultSpreaderConfig/f_221681_ net/minecraft/world/level/block/MultifaceSpreader$DefaultSpreaderConfig/block +FD: net/minecraft/world/level/block/MultifaceSpreader$SpreadPos/f_221717_ net/minecraft/world/level/block/MultifaceSpreader$SpreadPos/pos +FD: net/minecraft/world/level/block/MultifaceSpreader$SpreadPos/f_221718_ net/minecraft/world/level/block/MultifaceSpreader$SpreadPos/face +FD: net/minecraft/world/level/block/MultifaceSpreader$SpreadType/$VALUES net/minecraft/world/level/block/MultifaceSpreader$SpreadType/$VALUES +FD: net/minecraft/world/level/block/MultifaceSpreader$SpreadType/SAME_PLANE net/minecraft/world/level/block/MultifaceSpreader$SpreadType/SAME_PLANE +FD: net/minecraft/world/level/block/MultifaceSpreader$SpreadType/SAME_POSITION net/minecraft/world/level/block/MultifaceSpreader$SpreadType/SAME_POSITION +FD: net/minecraft/world/level/block/MultifaceSpreader$SpreadType/WRAP_AROUND net/minecraft/world/level/block/MultifaceSpreader$SpreadType/WRAP_AROUND +FD: net/minecraft/world/level/block/MushroomBlock/f_153980_ net/minecraft/world/level/block/MushroomBlock/AABB_OFFSET +FD: net/minecraft/world/level/block/MushroomBlock/f_254650_ net/minecraft/world/level/block/MushroomBlock/feature +FD: net/minecraft/world/level/block/MushroomBlock/f_54855_ net/minecraft/world/level/block/MushroomBlock/SHAPE +FD: net/minecraft/world/level/block/NetherPortalBlock/f_153985_ net/minecraft/world/level/block/NetherPortalBlock/AABB_OFFSET +FD: net/minecraft/world/level/block/NetherPortalBlock/f_54904_ net/minecraft/world/level/block/NetherPortalBlock/AXIS +FD: net/minecraft/world/level/block/NetherPortalBlock/f_54905_ net/minecraft/world/level/block/NetherPortalBlock/X_AXIS_AABB +FD: net/minecraft/world/level/block/NetherPortalBlock/f_54906_ net/minecraft/world/level/block/NetherPortalBlock/Z_AXIS_AABB +FD: net/minecraft/world/level/block/NetherPortalBlock$1/f_54946_ net/minecraft/world/level/block/NetherPortalBlock$1/$SwitchMap$net$minecraft$core$Direction$Axis +FD: net/minecraft/world/level/block/NetherPortalBlock$1/f_54947_ net/minecraft/world/level/block/NetherPortalBlock$1/$SwitchMap$net$minecraft$world$level$block$Rotation +FD: net/minecraft/world/level/block/NetherSproutsBlock/f_54949_ net/minecraft/world/level/block/NetherSproutsBlock/SHAPE +FD: net/minecraft/world/level/block/NetherVines/f_153986_ net/minecraft/world/level/block/NetherVines/GROW_PER_TICK_PROBABILITY +FD: net/minecraft/world/level/block/NetherVines/f_153987_ net/minecraft/world/level/block/NetherVines/BONEMEAL_GROW_PROBABILITY_DECREASE_RATE +FD: net/minecraft/world/level/block/NetherWartBlock/f_153989_ net/minecraft/world/level/block/NetherWartBlock/MAX_AGE +FD: net/minecraft/world/level/block/NetherWartBlock/f_54967_ net/minecraft/world/level/block/NetherWartBlock/AGE +FD: net/minecraft/world/level/block/NetherWartBlock/f_54968_ net/minecraft/world/level/block/NetherWartBlock/SHAPE_BY_AGE +FD: net/minecraft/world/level/block/NoteBlock/f_262759_ net/minecraft/world/level/block/NoteBlock/NOTE_VOLUME +FD: net/minecraft/world/level/block/NoteBlock/f_55011_ net/minecraft/world/level/block/NoteBlock/INSTRUMENT +FD: net/minecraft/world/level/block/NoteBlock/f_55012_ net/minecraft/world/level/block/NoteBlock/POWERED +FD: net/minecraft/world/level/block/NoteBlock/f_55013_ net/minecraft/world/level/block/NoteBlock/NOTE +FD: net/minecraft/world/level/block/ObserverBlock/f_55082_ net/minecraft/world/level/block/ObserverBlock/POWERED +FD: net/minecraft/world/level/block/PiglinWallSkullBlock/f_260652_ net/minecraft/world/level/block/PiglinWallSkullBlock/AABBS +FD: net/minecraft/world/level/block/PinkPetalsBlock/f_271110_ net/minecraft/world/level/block/PinkPetalsBlock/MIN_FLOWERS +FD: net/minecraft/world/level/block/PinkPetalsBlock/f_271156_ net/minecraft/world/level/block/PinkPetalsBlock/MAX_FLOWERS +FD: net/minecraft/world/level/block/PinkPetalsBlock/f_271347_ net/minecraft/world/level/block/PinkPetalsBlock/FACING +FD: net/minecraft/world/level/block/PinkPetalsBlock/f_271373_ net/minecraft/world/level/block/PinkPetalsBlock/AMOUNT +FD: net/minecraft/world/level/block/PipeBlock/f_55148_ net/minecraft/world/level/block/PipeBlock/NORTH +FD: net/minecraft/world/level/block/PipeBlock/f_55149_ net/minecraft/world/level/block/PipeBlock/EAST +FD: net/minecraft/world/level/block/PipeBlock/f_55150_ net/minecraft/world/level/block/PipeBlock/SOUTH +FD: net/minecraft/world/level/block/PipeBlock/f_55151_ net/minecraft/world/level/block/PipeBlock/WEST +FD: net/minecraft/world/level/block/PipeBlock/f_55152_ net/minecraft/world/level/block/PipeBlock/UP +FD: net/minecraft/world/level/block/PipeBlock/f_55153_ net/minecraft/world/level/block/PipeBlock/DOWN +FD: net/minecraft/world/level/block/PipeBlock/f_55154_ net/minecraft/world/level/block/PipeBlock/PROPERTY_BY_DIRECTION +FD: net/minecraft/world/level/block/PipeBlock/f_55155_ net/minecraft/world/level/block/PipeBlock/shapeByIndex +FD: net/minecraft/world/level/block/PipeBlock/f_55156_ net/minecraft/world/level/block/PipeBlock/DIRECTIONS +FD: net/minecraft/world/level/block/PitcherCropBlock/f_276478_ net/minecraft/world/level/block/PitcherCropBlock/AGE +FD: net/minecraft/world/level/block/PitcherCropBlock/f_276589_ net/minecraft/world/level/block/PitcherCropBlock/COLLISION_SHAPE_CROP +FD: net/minecraft/world/level/block/PitcherCropBlock/f_276596_ net/minecraft/world/level/block/PitcherCropBlock/DOUBLE_PLANT_AGE_INTERSECTION +FD: net/minecraft/world/level/block/PitcherCropBlock/f_276671_ net/minecraft/world/level/block/PitcherCropBlock/MAX_AGE +FD: net/minecraft/world/level/block/PitcherCropBlock/f_276694_ net/minecraft/world/level/block/PitcherCropBlock/COLLISION_SHAPE_BULB +FD: net/minecraft/world/level/block/PitcherCropBlock/f_278117_ net/minecraft/world/level/block/PitcherCropBlock/BONEMEAL_INCREASE +FD: net/minecraft/world/level/block/PitcherCropBlock/f_278397_ net/minecraft/world/level/block/PitcherCropBlock/LOWER_SHAPE_BY_AGE +FD: net/minecraft/world/level/block/PitcherCropBlock/f_278400_ net/minecraft/world/level/block/PitcherCropBlock/FULL_LOWER_SHAPE +FD: net/minecraft/world/level/block/PitcherCropBlock/f_278405_ net/minecraft/world/level/block/PitcherCropBlock/UPPER_SHAPE_BY_AGE +FD: net/minecraft/world/level/block/PitcherCropBlock/f_278440_ net/minecraft/world/level/block/PitcherCropBlock/FULL_UPPER_SHAPE +FD: net/minecraft/world/level/block/PitcherCropBlock$PosAndState/f_289993_ net/minecraft/world/level/block/PitcherCropBlock$PosAndState/state +FD: net/minecraft/world/level/block/PitcherCropBlock$PosAndState/f_289994_ net/minecraft/world/level/block/PitcherCropBlock$PosAndState/pos +FD: net/minecraft/world/level/block/PointedDripstoneBlock/f_153994_ net/minecraft/world/level/block/PointedDripstoneBlock/MAX_STALACTITE_HEIGHT_FOR_DAMAGE_CALCULATION +FD: net/minecraft/world/level/block/PointedDripstoneBlock/f_153995_ net/minecraft/world/level/block/PointedDripstoneBlock/STALAGMITE_FALL_DISTANCE_OFFSET +FD: net/minecraft/world/level/block/PointedDripstoneBlock/f_153996_ net/minecraft/world/level/block/PointedDripstoneBlock/STALAGMITE_FALL_DAMAGE_MODIFIER +FD: net/minecraft/world/level/block/PointedDripstoneBlock/f_153997_ net/minecraft/world/level/block/PointedDripstoneBlock/AVERAGE_DAYS_PER_GROWTH +FD: net/minecraft/world/level/block/PointedDripstoneBlock/f_153998_ net/minecraft/world/level/block/PointedDripstoneBlock/GROWTH_PROBABILITY_PER_RANDOM_TICK +FD: net/minecraft/world/level/block/PointedDripstoneBlock/f_153999_ net/minecraft/world/level/block/PointedDripstoneBlock/MAX_GROWTH_LENGTH +FD: net/minecraft/world/level/block/PointedDripstoneBlock/f_154000_ net/minecraft/world/level/block/PointedDripstoneBlock/MAX_STALAGMITE_SEARCH_RANGE_WHEN_GROWING +FD: net/minecraft/world/level/block/PointedDripstoneBlock/f_154001_ net/minecraft/world/level/block/PointedDripstoneBlock/STALACTITE_DRIP_START_PIXEL +FD: net/minecraft/world/level/block/PointedDripstoneBlock/f_154002_ net/minecraft/world/level/block/PointedDripstoneBlock/TIP_MERGE_SHAPE +FD: net/minecraft/world/level/block/PointedDripstoneBlock/f_154003_ net/minecraft/world/level/block/PointedDripstoneBlock/TIP_SHAPE_UP +FD: net/minecraft/world/level/block/PointedDripstoneBlock/f_154004_ net/minecraft/world/level/block/PointedDripstoneBlock/TIP_SHAPE_DOWN +FD: net/minecraft/world/level/block/PointedDripstoneBlock/f_154005_ net/minecraft/world/level/block/PointedDripstoneBlock/FRUSTUM_SHAPE +FD: net/minecraft/world/level/block/PointedDripstoneBlock/f_154006_ net/minecraft/world/level/block/PointedDripstoneBlock/MIDDLE_SHAPE +FD: net/minecraft/world/level/block/PointedDripstoneBlock/f_154007_ net/minecraft/world/level/block/PointedDripstoneBlock/BASE_SHAPE +FD: net/minecraft/world/level/block/PointedDripstoneBlock/f_154008_ net/minecraft/world/level/block/PointedDripstoneBlock/MAX_HORIZONTAL_OFFSET +FD: net/minecraft/world/level/block/PointedDripstoneBlock/f_154009_ net/minecraft/world/level/block/PointedDripstoneBlock/TIP_DIRECTION +FD: net/minecraft/world/level/block/PointedDripstoneBlock/f_154010_ net/minecraft/world/level/block/PointedDripstoneBlock/THICKNESS +FD: net/minecraft/world/level/block/PointedDripstoneBlock/f_154011_ net/minecraft/world/level/block/PointedDripstoneBlock/WATERLOGGED +FD: net/minecraft/world/level/block/PointedDripstoneBlock/f_154012_ net/minecraft/world/level/block/PointedDripstoneBlock/MAX_SEARCH_LENGTH_WHEN_CHECKING_DRIP_TYPE +FD: net/minecraft/world/level/block/PointedDripstoneBlock/f_154014_ net/minecraft/world/level/block/PointedDripstoneBlock/DELAY_BEFORE_FALLING +FD: net/minecraft/world/level/block/PointedDripstoneBlock/f_154015_ net/minecraft/world/level/block/PointedDripstoneBlock/DRIP_PROBABILITY_PER_ANIMATE_TICK +FD: net/minecraft/world/level/block/PointedDripstoneBlock/f_154016_ net/minecraft/world/level/block/PointedDripstoneBlock/DRIP_PROBABILITY_PER_ANIMATE_TICK_IF_UNDER_LIQUID_SOURCE +FD: net/minecraft/world/level/block/PointedDripstoneBlock/f_154017_ net/minecraft/world/level/block/PointedDripstoneBlock/MAX_SEARCH_LENGTH_BETWEEN_STALACTITE_TIP_AND_CAULDRON +FD: net/minecraft/world/level/block/PointedDripstoneBlock/f_154020_ net/minecraft/world/level/block/PointedDripstoneBlock/MIN_TRIDENT_VELOCITY_TO_BREAK_DRIPSTONE +FD: net/minecraft/world/level/block/PointedDripstoneBlock/f_154021_ net/minecraft/world/level/block/PointedDripstoneBlock/STALACTITE_DAMAGE_PER_FALL_DISTANCE_AND_SIZE +FD: net/minecraft/world/level/block/PointedDripstoneBlock/f_154022_ net/minecraft/world/level/block/PointedDripstoneBlock/STALACTITE_MAX_DAMAGE +FD: net/minecraft/world/level/block/PointedDripstoneBlock/f_202005_ net/minecraft/world/level/block/PointedDripstoneBlock/REQUIRED_SPACE_TO_DRIP_THROUGH_NON_SOLID_BLOCK +FD: net/minecraft/world/level/block/PointedDripstoneBlock/f_221844_ net/minecraft/world/level/block/PointedDripstoneBlock/WATER_TRANSFER_PROBABILITY_PER_RANDOM_TICK +FD: net/minecraft/world/level/block/PointedDripstoneBlock/f_221845_ net/minecraft/world/level/block/PointedDripstoneBlock/LAVA_TRANSFER_PROBABILITY_PER_RANDOM_TICK +FD: net/minecraft/world/level/block/PointedDripstoneBlock$FluidInfo/f_221892_ net/minecraft/world/level/block/PointedDripstoneBlock$FluidInfo/pos +FD: net/minecraft/world/level/block/PointedDripstoneBlock$FluidInfo/f_221893_ net/minecraft/world/level/block/PointedDripstoneBlock$FluidInfo/fluid +FD: net/minecraft/world/level/block/PointedDripstoneBlock$FluidInfo/f_221894_ net/minecraft/world/level/block/PointedDripstoneBlock$FluidInfo/sourceState +FD: net/minecraft/world/level/block/PotatoBlock/f_55195_ net/minecraft/world/level/block/PotatoBlock/SHAPE_BY_AGE +FD: net/minecraft/world/level/block/PowderSnowBlock/f_154246_ net/minecraft/world/level/block/PowderSnowBlock/HORIZONTAL_PARTICLE_MOMENTUM_FACTOR +FD: net/minecraft/world/level/block/PowderSnowBlock/f_154247_ net/minecraft/world/level/block/PowderSnowBlock/IN_BLOCK_HORIZONTAL_SPEED_MULTIPLIER +FD: net/minecraft/world/level/block/PowderSnowBlock/f_154248_ net/minecraft/world/level/block/PowderSnowBlock/IN_BLOCK_VERTICAL_SPEED_MULTIPLIER +FD: net/minecraft/world/level/block/PowderSnowBlock/f_154249_ net/minecraft/world/level/block/PowderSnowBlock/NUM_BLOCKS_TO_FALL_INTO_BLOCK +FD: net/minecraft/world/level/block/PowderSnowBlock/f_154250_ net/minecraft/world/level/block/PowderSnowBlock/FALLING_COLLISION_SHAPE +FD: net/minecraft/world/level/block/PowderSnowBlock/f_196692_ net/minecraft/world/level/block/PowderSnowBlock/MINIMUM_FALL_DISTANCE_FOR_SOUND +FD: net/minecraft/world/level/block/PowderSnowBlock/f_196693_ net/minecraft/world/level/block/PowderSnowBlock/MINIMUM_FALL_DISTANCE_FOR_BIG_SOUND +FD: net/minecraft/world/level/block/PoweredRailBlock/f_55214_ net/minecraft/world/level/block/PoweredRailBlock/SHAPE +FD: net/minecraft/world/level/block/PoweredRailBlock/f_55215_ net/minecraft/world/level/block/PoweredRailBlock/POWERED +FD: net/minecraft/world/level/block/PoweredRailBlock$1/f_55245_ net/minecraft/world/level/block/PoweredRailBlock$1/$SwitchMap$net$minecraft$world$level$block$state$properties$RailShape +FD: net/minecraft/world/level/block/PoweredRailBlock$1/f_55246_ net/minecraft/world/level/block/PoweredRailBlock$1/$SwitchMap$net$minecraft$world$level$block$Rotation +FD: net/minecraft/world/level/block/PoweredRailBlock$1/f_55247_ net/minecraft/world/level/block/PoweredRailBlock$1/$SwitchMap$net$minecraft$world$level$block$Mirror +FD: net/minecraft/world/level/block/PressurePlateBlock/f_55249_ net/minecraft/world/level/block/PressurePlateBlock/POWERED +FD: net/minecraft/world/level/block/PressurePlateBlock/f_55250_ net/minecraft/world/level/block/PressurePlateBlock/sensitivity +FD: net/minecraft/world/level/block/PressurePlateBlock$1/f_55271_ net/minecraft/world/level/block/PressurePlateBlock$1/$SwitchMap$net$minecraft$world$level$block$PressurePlateBlock$Sensitivity +FD: net/minecraft/world/level/block/PressurePlateBlock$Sensitivity/$VALUES net/minecraft/world/level/block/PressurePlateBlock$Sensitivity/$VALUES +FD: net/minecraft/world/level/block/PressurePlateBlock$Sensitivity/EVERYTHING net/minecraft/world/level/block/PressurePlateBlock$Sensitivity/EVERYTHING +FD: net/minecraft/world/level/block/PressurePlateBlock$Sensitivity/MOBS net/minecraft/world/level/block/PressurePlateBlock$Sensitivity/MOBS +FD: net/minecraft/world/level/block/RailBlock/f_55392_ net/minecraft/world/level/block/RailBlock/SHAPE +FD: net/minecraft/world/level/block/RailBlock$1/f_55410_ net/minecraft/world/level/block/RailBlock$1/$SwitchMap$net$minecraft$world$level$block$state$properties$RailShape +FD: net/minecraft/world/level/block/RailBlock$1/f_55411_ net/minecraft/world/level/block/RailBlock$1/$SwitchMap$net$minecraft$world$level$block$Rotation +FD: net/minecraft/world/level/block/RailBlock$1/f_55412_ net/minecraft/world/level/block/RailBlock$1/$SwitchMap$net$minecraft$world$level$block$Mirror +FD: net/minecraft/world/level/block/RailState/f_55414_ net/minecraft/world/level/block/RailState/level +FD: net/minecraft/world/level/block/RailState/f_55415_ net/minecraft/world/level/block/RailState/pos +FD: net/minecraft/world/level/block/RailState/f_55416_ net/minecraft/world/level/block/RailState/block +FD: net/minecraft/world/level/block/RailState/f_55417_ net/minecraft/world/level/block/RailState/state +FD: net/minecraft/world/level/block/RailState/f_55418_ net/minecraft/world/level/block/RailState/isStraight +FD: net/minecraft/world/level/block/RailState/f_55419_ net/minecraft/world/level/block/RailState/connections +FD: net/minecraft/world/level/block/RailState$1/f_55448_ net/minecraft/world/level/block/RailState$1/$SwitchMap$net$minecraft$world$level$block$state$properties$RailShape +FD: net/minecraft/world/level/block/RedStoneOreBlock/f_55450_ net/minecraft/world/level/block/RedStoneOreBlock/LIT +FD: net/minecraft/world/level/block/RedStoneWireBlock/f_154303_ net/minecraft/world/level/block/RedStoneWireBlock/PARTICLE_DENSITY +FD: net/minecraft/world/level/block/RedStoneWireBlock/f_154304_ net/minecraft/world/level/block/RedStoneWireBlock/H +FD: net/minecraft/world/level/block/RedStoneWireBlock/f_154305_ net/minecraft/world/level/block/RedStoneWireBlock/W +FD: net/minecraft/world/level/block/RedStoneWireBlock/f_154306_ net/minecraft/world/level/block/RedStoneWireBlock/E +FD: net/minecraft/world/level/block/RedStoneWireBlock/f_154307_ net/minecraft/world/level/block/RedStoneWireBlock/N +FD: net/minecraft/world/level/block/RedStoneWireBlock/f_154308_ net/minecraft/world/level/block/RedStoneWireBlock/S +FD: net/minecraft/world/level/block/RedStoneWireBlock/f_55496_ net/minecraft/world/level/block/RedStoneWireBlock/NORTH +FD: net/minecraft/world/level/block/RedStoneWireBlock/f_55497_ net/minecraft/world/level/block/RedStoneWireBlock/EAST +FD: net/minecraft/world/level/block/RedStoneWireBlock/f_55498_ net/minecraft/world/level/block/RedStoneWireBlock/SOUTH +FD: net/minecraft/world/level/block/RedStoneWireBlock/f_55499_ net/minecraft/world/level/block/RedStoneWireBlock/WEST +FD: net/minecraft/world/level/block/RedStoneWireBlock/f_55500_ net/minecraft/world/level/block/RedStoneWireBlock/POWER +FD: net/minecraft/world/level/block/RedStoneWireBlock/f_55501_ net/minecraft/world/level/block/RedStoneWireBlock/PROPERTY_BY_DIRECTION +FD: net/minecraft/world/level/block/RedStoneWireBlock/f_55502_ net/minecraft/world/level/block/RedStoneWireBlock/SHAPE_DOT +FD: net/minecraft/world/level/block/RedStoneWireBlock/f_55503_ net/minecraft/world/level/block/RedStoneWireBlock/SHAPES_FLOOR +FD: net/minecraft/world/level/block/RedStoneWireBlock/f_55504_ net/minecraft/world/level/block/RedStoneWireBlock/SHAPES_UP +FD: net/minecraft/world/level/block/RedStoneWireBlock/f_55505_ net/minecraft/world/level/block/RedStoneWireBlock/SHAPES_CACHE +FD: net/minecraft/world/level/block/RedStoneWireBlock/f_55506_ net/minecraft/world/level/block/RedStoneWireBlock/COLORS +FD: net/minecraft/world/level/block/RedStoneWireBlock/f_55507_ net/minecraft/world/level/block/RedStoneWireBlock/crossState +FD: net/minecraft/world/level/block/RedStoneWireBlock/f_55508_ net/minecraft/world/level/block/RedStoneWireBlock/shouldSignal +FD: net/minecraft/world/level/block/RedStoneWireBlock$1/f_55650_ net/minecraft/world/level/block/RedStoneWireBlock$1/$SwitchMap$net$minecraft$world$level$block$state$properties$RedstoneSide +FD: net/minecraft/world/level/block/RedStoneWireBlock$1/f_55651_ net/minecraft/world/level/block/RedStoneWireBlock$1/$SwitchMap$net$minecraft$world$level$block$Rotation +FD: net/minecraft/world/level/block/RedStoneWireBlock$1/f_55652_ net/minecraft/world/level/block/RedStoneWireBlock$1/$SwitchMap$net$minecraft$world$level$block$Mirror +FD: net/minecraft/world/level/block/RedstoneLampBlock/f_55654_ net/minecraft/world/level/block/RedstoneLampBlock/LIT +FD: net/minecraft/world/level/block/RedstoneTorchBlock/f_154325_ net/minecraft/world/level/block/RedstoneTorchBlock/RECENT_TOGGLE_TIMER +FD: net/minecraft/world/level/block/RedstoneTorchBlock/f_154326_ net/minecraft/world/level/block/RedstoneTorchBlock/MAX_RECENT_TOGGLES +FD: net/minecraft/world/level/block/RedstoneTorchBlock/f_154327_ net/minecraft/world/level/block/RedstoneTorchBlock/RESTART_DELAY +FD: net/minecraft/world/level/block/RedstoneTorchBlock/f_154328_ net/minecraft/world/level/block/RedstoneTorchBlock/TOGGLE_DELAY +FD: net/minecraft/world/level/block/RedstoneTorchBlock/f_55674_ net/minecraft/world/level/block/RedstoneTorchBlock/LIT +FD: net/minecraft/world/level/block/RedstoneTorchBlock/f_55675_ net/minecraft/world/level/block/RedstoneTorchBlock/RECENT_TOGGLES +FD: net/minecraft/world/level/block/RedstoneTorchBlock$Toggle/f_55731_ net/minecraft/world/level/block/RedstoneTorchBlock$Toggle/pos +FD: net/minecraft/world/level/block/RedstoneTorchBlock$Toggle/f_55732_ net/minecraft/world/level/block/RedstoneTorchBlock$Toggle/when +FD: net/minecraft/world/level/block/RedstoneWallTorchBlock/f_55740_ net/minecraft/world/level/block/RedstoneWallTorchBlock/FACING +FD: net/minecraft/world/level/block/RedstoneWallTorchBlock/f_55741_ net/minecraft/world/level/block/RedstoneWallTorchBlock/LIT +FD: net/minecraft/world/level/block/RenderShape/$VALUES net/minecraft/world/level/block/RenderShape/$VALUES +FD: net/minecraft/world/level/block/RenderShape/ENTITYBLOCK_ANIMATED net/minecraft/world/level/block/RenderShape/ENTITYBLOCK_ANIMATED +FD: net/minecraft/world/level/block/RenderShape/INVISIBLE net/minecraft/world/level/block/RenderShape/INVISIBLE +FD: net/minecraft/world/level/block/RenderShape/MODEL net/minecraft/world/level/block/RenderShape/MODEL +FD: net/minecraft/world/level/block/RepeaterBlock/f_55797_ net/minecraft/world/level/block/RepeaterBlock/LOCKED +FD: net/minecraft/world/level/block/RepeaterBlock/f_55798_ net/minecraft/world/level/block/RepeaterBlock/DELAY +FD: net/minecraft/world/level/block/RespawnAnchorBlock/f_154330_ net/minecraft/world/level/block/RespawnAnchorBlock/MIN_CHARGES +FD: net/minecraft/world/level/block/RespawnAnchorBlock/f_154331_ net/minecraft/world/level/block/RespawnAnchorBlock/MAX_CHARGES +FD: net/minecraft/world/level/block/RespawnAnchorBlock/f_55833_ net/minecraft/world/level/block/RespawnAnchorBlock/CHARGE +FD: net/minecraft/world/level/block/RespawnAnchorBlock/f_55834_ net/minecraft/world/level/block/RespawnAnchorBlock/RESPAWN_HORIZONTAL_OFFSETS +FD: net/minecraft/world/level/block/RespawnAnchorBlock/f_55835_ net/minecraft/world/level/block/RespawnAnchorBlock/RESPAWN_OFFSETS +FD: net/minecraft/world/level/block/RespawnAnchorBlock$1/f_55896_ net/minecraft/world/level/block/RespawnAnchorBlock$1/val$pos +FD: net/minecraft/world/level/block/RespawnAnchorBlock$1/f_55897_ net/minecraft/world/level/block/RespawnAnchorBlock$1/val$inWater +FD: net/minecraft/world/level/block/RespawnAnchorBlock$1/f_55898_ net/minecraft/world/level/block/RespawnAnchorBlock$1/this$0 +FD: net/minecraft/world/level/block/RodBlock/f_154332_ net/minecraft/world/level/block/RodBlock/AABB_MIN +FD: net/minecraft/world/level/block/RodBlock/f_154333_ net/minecraft/world/level/block/RodBlock/AABB_MAX +FD: net/minecraft/world/level/block/RodBlock/f_154334_ net/minecraft/world/level/block/RodBlock/Y_AXIS_AABB +FD: net/minecraft/world/level/block/RodBlock/f_154335_ net/minecraft/world/level/block/RodBlock/Z_AXIS_AABB +FD: net/minecraft/world/level/block/RodBlock/f_154336_ net/minecraft/world/level/block/RodBlock/X_AXIS_AABB +FD: net/minecraft/world/level/block/RodBlock$1/f_154356_ net/minecraft/world/level/block/RodBlock$1/$SwitchMap$net$minecraft$core$Direction$Axis +FD: net/minecraft/world/level/block/RootsBlock/f_154375_ net/minecraft/world/level/block/RootsBlock/AABB_OFFSET +FD: net/minecraft/world/level/block/RootsBlock/f_55909_ net/minecraft/world/level/block/RootsBlock/SHAPE +FD: net/minecraft/world/level/block/RotatedPillarBlock/f_55923_ net/minecraft/world/level/block/RotatedPillarBlock/AXIS +FD: net/minecraft/world/level/block/RotatedPillarBlock$1/f_55934_ net/minecraft/world/level/block/RotatedPillarBlock$1/$SwitchMap$net$minecraft$core$Direction$Axis +FD: net/minecraft/world/level/block/RotatedPillarBlock$1/f_55935_ net/minecraft/world/level/block/RotatedPillarBlock$1/$SwitchMap$net$minecraft$world$level$block$Rotation +FD: net/minecraft/world/level/block/Rotation/$VALUES net/minecraft/world/level/block/Rotation/$VALUES +FD: net/minecraft/world/level/block/Rotation/CLOCKWISE_180 net/minecraft/world/level/block/Rotation/CLOCKWISE_180 +FD: net/minecraft/world/level/block/Rotation/CLOCKWISE_90 net/minecraft/world/level/block/Rotation/CLOCKWISE_90 +FD: net/minecraft/world/level/block/Rotation/COUNTERCLOCKWISE_90 net/minecraft/world/level/block/Rotation/COUNTERCLOCKWISE_90 +FD: net/minecraft/world/level/block/Rotation/NONE net/minecraft/world/level/block/Rotation/NONE +FD: net/minecraft/world/level/block/Rotation/f_221983_ net/minecraft/world/level/block/Rotation/CODEC +FD: net/minecraft/world/level/block/Rotation/f_221984_ net/minecraft/world/level/block/Rotation/id +FD: net/minecraft/world/level/block/Rotation/f_55941_ net/minecraft/world/level/block/Rotation/rotation +FD: net/minecraft/world/level/block/Rotation$1/f_55963_ net/minecraft/world/level/block/Rotation$1/$SwitchMap$net$minecraft$world$level$block$Rotation +FD: net/minecraft/world/level/block/SandBlock/f_55965_ net/minecraft/world/level/block/SandBlock/dustColor +FD: net/minecraft/world/level/block/SaplingBlock/f_154380_ net/minecraft/world/level/block/SaplingBlock/AABB_OFFSET +FD: net/minecraft/world/level/block/SaplingBlock/f_55973_ net/minecraft/world/level/block/SaplingBlock/STAGE +FD: net/minecraft/world/level/block/SaplingBlock/f_55974_ net/minecraft/world/level/block/SaplingBlock/SHAPE +FD: net/minecraft/world/level/block/SaplingBlock/f_55975_ net/minecraft/world/level/block/SaplingBlock/treeGrower +FD: net/minecraft/world/level/block/ScaffoldingBlock/f_154381_ net/minecraft/world/level/block/ScaffoldingBlock/STABILITY_MAX_DISTANCE +FD: net/minecraft/world/level/block/ScaffoldingBlock/f_154382_ net/minecraft/world/level/block/ScaffoldingBlock/TICK_DELAY +FD: net/minecraft/world/level/block/ScaffoldingBlock/f_56012_ net/minecraft/world/level/block/ScaffoldingBlock/DISTANCE +FD: net/minecraft/world/level/block/ScaffoldingBlock/f_56013_ net/minecraft/world/level/block/ScaffoldingBlock/WATERLOGGED +FD: net/minecraft/world/level/block/ScaffoldingBlock/f_56014_ net/minecraft/world/level/block/ScaffoldingBlock/BOTTOM +FD: net/minecraft/world/level/block/ScaffoldingBlock/f_56015_ net/minecraft/world/level/block/ScaffoldingBlock/STABLE_SHAPE +FD: net/minecraft/world/level/block/ScaffoldingBlock/f_56016_ net/minecraft/world/level/block/ScaffoldingBlock/UNSTABLE_SHAPE +FD: net/minecraft/world/level/block/ScaffoldingBlock/f_56017_ net/minecraft/world/level/block/ScaffoldingBlock/UNSTABLE_SHAPE_BOTTOM +FD: net/minecraft/world/level/block/ScaffoldingBlock/f_56018_ net/minecraft/world/level/block/ScaffoldingBlock/BELOW_BLOCK +FD: net/minecraft/world/level/block/SculkBehaviour/f_222023_ net/minecraft/world/level/block/SculkBehaviour/DEFAULT +FD: net/minecraft/world/level/block/SculkCatalystBlock/f_222086_ net/minecraft/world/level/block/SculkCatalystBlock/PULSE +FD: net/minecraft/world/level/block/SculkCatalystBlock/f_222087_ net/minecraft/world/level/block/SculkCatalystBlock/xpRange +FD: net/minecraft/world/level/block/SculkSensorBlock/f_154383_ net/minecraft/world/level/block/SculkSensorBlock/ACTIVE_TICKS +FD: net/minecraft/world/level/block/SculkSensorBlock/f_154384_ net/minecraft/world/level/block/SculkSensorBlock/COOLDOWN_TICKS +FD: net/minecraft/world/level/block/SculkSensorBlock/f_154386_ net/minecraft/world/level/block/SculkSensorBlock/PHASE +FD: net/minecraft/world/level/block/SculkSensorBlock/f_154387_ net/minecraft/world/level/block/SculkSensorBlock/POWER +FD: net/minecraft/world/level/block/SculkSensorBlock/f_154388_ net/minecraft/world/level/block/SculkSensorBlock/WATERLOGGED +FD: net/minecraft/world/level/block/SculkSensorBlock/f_154389_ net/minecraft/world/level/block/SculkSensorBlock/SHAPE +FD: net/minecraft/world/level/block/SculkSensorBlock/f_276565_ net/minecraft/world/level/block/SculkSensorBlock/RESONANCE_PITCH_BEND +FD: net/minecraft/world/level/block/SculkShriekerBlock/f_222152_ net/minecraft/world/level/block/SculkShriekerBlock/SHRIEKING +FD: net/minecraft/world/level/block/SculkShriekerBlock/f_222153_ net/minecraft/world/level/block/SculkShriekerBlock/WATERLOGGED +FD: net/minecraft/world/level/block/SculkShriekerBlock/f_222154_ net/minecraft/world/level/block/SculkShriekerBlock/CAN_SUMMON +FD: net/minecraft/world/level/block/SculkShriekerBlock/f_222155_ net/minecraft/world/level/block/SculkShriekerBlock/COLLIDER +FD: net/minecraft/world/level/block/SculkShriekerBlock/f_222156_ net/minecraft/world/level/block/SculkShriekerBlock/TOP_Y +FD: net/minecraft/world/level/block/SculkSpreader/f_222233_ net/minecraft/world/level/block/SculkSpreader/MAX_GROWTH_RATE_RADIUS +FD: net/minecraft/world/level/block/SculkSpreader/f_222234_ net/minecraft/world/level/block/SculkSpreader/MAX_CHARGE +FD: net/minecraft/world/level/block/SculkSpreader/f_222235_ net/minecraft/world/level/block/SculkSpreader/MAX_DECAY_FACTOR +FD: net/minecraft/world/level/block/SculkSpreader/f_222236_ net/minecraft/world/level/block/SculkSpreader/SHRIEKER_PLACEMENT_RATE +FD: net/minecraft/world/level/block/SculkSpreader/f_222237_ net/minecraft/world/level/block/SculkSpreader/MAX_CURSORS +FD: net/minecraft/world/level/block/SculkSpreader/f_222238_ net/minecraft/world/level/block/SculkSpreader/isWorldGeneration +FD: net/minecraft/world/level/block/SculkSpreader/f_222239_ net/minecraft/world/level/block/SculkSpreader/replaceableBlocks +FD: net/minecraft/world/level/block/SculkSpreader/f_222240_ net/minecraft/world/level/block/SculkSpreader/growthSpawnCost +FD: net/minecraft/world/level/block/SculkSpreader/f_222241_ net/minecraft/world/level/block/SculkSpreader/noGrowthRadius +FD: net/minecraft/world/level/block/SculkSpreader/f_222242_ net/minecraft/world/level/block/SculkSpreader/chargeDecayRate +FD: net/minecraft/world/level/block/SculkSpreader/f_222243_ net/minecraft/world/level/block/SculkSpreader/additionalDecayRate +FD: net/minecraft/world/level/block/SculkSpreader/f_222244_ net/minecraft/world/level/block/SculkSpreader/cursors +FD: net/minecraft/world/level/block/SculkSpreader/f_222245_ net/minecraft/world/level/block/SculkSpreader/LOGGER +FD: net/minecraft/world/level/block/SculkSpreader$ChargeCursor/f_222285_ net/minecraft/world/level/block/SculkSpreader$ChargeCursor/MAX_CURSOR_DECAY_DELAY +FD: net/minecraft/world/level/block/SculkSpreader$ChargeCursor/f_222286_ net/minecraft/world/level/block/SculkSpreader$ChargeCursor/CODEC +FD: net/minecraft/world/level/block/SculkSpreader$ChargeCursor/f_222287_ net/minecraft/world/level/block/SculkSpreader$ChargeCursor/NON_CORNER_NEIGHBOURS +FD: net/minecraft/world/level/block/SculkSpreader$ChargeCursor/f_222288_ net/minecraft/world/level/block/SculkSpreader$ChargeCursor/pos +FD: net/minecraft/world/level/block/SculkSpreader$ChargeCursor/f_222289_ net/minecraft/world/level/block/SculkSpreader$ChargeCursor/charge +FD: net/minecraft/world/level/block/SculkSpreader$ChargeCursor/f_222290_ net/minecraft/world/level/block/SculkSpreader$ChargeCursor/updateDelay +FD: net/minecraft/world/level/block/SculkSpreader$ChargeCursor/f_222291_ net/minecraft/world/level/block/SculkSpreader$ChargeCursor/decayDelay +FD: net/minecraft/world/level/block/SculkSpreader$ChargeCursor/f_222292_ net/minecraft/world/level/block/SculkSpreader$ChargeCursor/facings +FD: net/minecraft/world/level/block/SculkSpreader$ChargeCursor/f_222293_ net/minecraft/world/level/block/SculkSpreader$ChargeCursor/DIRECTION_SET +FD: net/minecraft/world/level/block/SculkVeinBlock/f_222348_ net/minecraft/world/level/block/SculkVeinBlock/WATERLOGGED +FD: net/minecraft/world/level/block/SculkVeinBlock/f_222349_ net/minecraft/world/level/block/SculkVeinBlock/veinSpreader +FD: net/minecraft/world/level/block/SculkVeinBlock/f_222350_ net/minecraft/world/level/block/SculkVeinBlock/sameSpaceSpreader +FD: net/minecraft/world/level/block/SculkVeinBlock$SculkVeinSpreaderConfig/f_222398_ net/minecraft/world/level/block/SculkVeinBlock$SculkVeinSpreaderConfig/this$0 +FD: net/minecraft/world/level/block/SculkVeinBlock$SculkVeinSpreaderConfig/f_222399_ net/minecraft/world/level/block/SculkVeinBlock$SculkVeinSpreaderConfig/spreadTypes +FD: net/minecraft/world/level/block/SeaPickleBlock/f_154491_ net/minecraft/world/level/block/SeaPickleBlock/MAX_PICKLES +FD: net/minecraft/world/level/block/SeaPickleBlock/f_56074_ net/minecraft/world/level/block/SeaPickleBlock/PICKLES +FD: net/minecraft/world/level/block/SeaPickleBlock/f_56075_ net/minecraft/world/level/block/SeaPickleBlock/WATERLOGGED +FD: net/minecraft/world/level/block/SeaPickleBlock/f_56076_ net/minecraft/world/level/block/SeaPickleBlock/ONE_AABB +FD: net/minecraft/world/level/block/SeaPickleBlock/f_56077_ net/minecraft/world/level/block/SeaPickleBlock/TWO_AABB +FD: net/minecraft/world/level/block/SeaPickleBlock/f_56078_ net/minecraft/world/level/block/SeaPickleBlock/THREE_AABB +FD: net/minecraft/world/level/block/SeaPickleBlock/f_56079_ net/minecraft/world/level/block/SeaPickleBlock/FOUR_AABB +FD: net/minecraft/world/level/block/SeagrassBlock/f_154492_ net/minecraft/world/level/block/SeagrassBlock/AABB_OFFSET +FD: net/minecraft/world/level/block/SeagrassBlock/f_154493_ net/minecraft/world/level/block/SeagrassBlock/SHAPE +FD: net/minecraft/world/level/block/ShulkerBoxBlock/f_256794_ net/minecraft/world/level/block/ShulkerBoxBlock/SOUTH_OPEN_AABB +FD: net/minecraft/world/level/block/ShulkerBoxBlock/f_256795_ net/minecraft/world/level/block/ShulkerBoxBlock/DOWN_OPEN_AABB +FD: net/minecraft/world/level/block/ShulkerBoxBlock/f_256800_ net/minecraft/world/level/block/ShulkerBoxBlock/WES_OPEN_AABB +FD: net/minecraft/world/level/block/ShulkerBoxBlock/f_256820_ net/minecraft/world/level/block/ShulkerBoxBlock/OPEN_AABB_SIZE +FD: net/minecraft/world/level/block/ShulkerBoxBlock/f_256830_ net/minecraft/world/level/block/ShulkerBoxBlock/OPEN_SHAPE_BY_DIRECTION +FD: net/minecraft/world/level/block/ShulkerBoxBlock/f_256853_ net/minecraft/world/level/block/ShulkerBoxBlock/UP_OPEN_AABB +FD: net/minecraft/world/level/block/ShulkerBoxBlock/f_256867_ net/minecraft/world/level/block/ShulkerBoxBlock/NORTH_OPEN_AABB +FD: net/minecraft/world/level/block/ShulkerBoxBlock/f_257037_ net/minecraft/world/level/block/ShulkerBoxBlock/EAST_OPEN_AABB +FD: net/minecraft/world/level/block/ShulkerBoxBlock/f_56183_ net/minecraft/world/level/block/ShulkerBoxBlock/FACING +FD: net/minecraft/world/level/block/ShulkerBoxBlock/f_56184_ net/minecraft/world/level/block/ShulkerBoxBlock/CONTENTS +FD: net/minecraft/world/level/block/ShulkerBoxBlock/f_56185_ net/minecraft/world/level/block/ShulkerBoxBlock/color +FD: net/minecraft/world/level/block/ShulkerBoxBlock$1/f_56266_ net/minecraft/world/level/block/ShulkerBoxBlock$1/$SwitchMap$net$minecraft$world$item$DyeColor +FD: net/minecraft/world/level/block/SignBlock/f_154554_ net/minecraft/world/level/block/SignBlock/AABB_OFFSET +FD: net/minecraft/world/level/block/SignBlock/f_56268_ net/minecraft/world/level/block/SignBlock/WATERLOGGED +FD: net/minecraft/world/level/block/SignBlock/f_56269_ net/minecraft/world/level/block/SignBlock/SHAPE +FD: net/minecraft/world/level/block/SignBlock/f_56270_ net/minecraft/world/level/block/SignBlock/type +FD: net/minecraft/world/level/block/SkullBlock/f_154563_ net/minecraft/world/level/block/SkullBlock/MAX +FD: net/minecraft/world/level/block/SkullBlock/f_154564_ net/minecraft/world/level/block/SkullBlock/ROTATIONS +FD: net/minecraft/world/level/block/SkullBlock/f_260503_ net/minecraft/world/level/block/SkullBlock/PIGLIN_SHAPE +FD: net/minecraft/world/level/block/SkullBlock/f_56314_ net/minecraft/world/level/block/SkullBlock/ROTATION +FD: net/minecraft/world/level/block/SkullBlock/f_56315_ net/minecraft/world/level/block/SkullBlock/SHAPE +FD: net/minecraft/world/level/block/SkullBlock$Types/$VALUES net/minecraft/world/level/block/SkullBlock$Types/$VALUES +FD: net/minecraft/world/level/block/SkullBlock$Types/CREEPER net/minecraft/world/level/block/SkullBlock$Types/CREEPER +FD: net/minecraft/world/level/block/SkullBlock$Types/DRAGON net/minecraft/world/level/block/SkullBlock$Types/DRAGON +FD: net/minecraft/world/level/block/SkullBlock$Types/PIGLIN net/minecraft/world/level/block/SkullBlock$Types/PIGLIN +FD: net/minecraft/world/level/block/SkullBlock$Types/PLAYER net/minecraft/world/level/block/SkullBlock$Types/PLAYER +FD: net/minecraft/world/level/block/SkullBlock$Types/SKELETON net/minecraft/world/level/block/SkullBlock$Types/SKELETON +FD: net/minecraft/world/level/block/SkullBlock$Types/WITHER_SKELETON net/minecraft/world/level/block/SkullBlock$Types/WITHER_SKELETON +FD: net/minecraft/world/level/block/SkullBlock$Types/ZOMBIE net/minecraft/world/level/block/SkullBlock$Types/ZOMBIE +FD: net/minecraft/world/level/block/SlabBlock/f_56353_ net/minecraft/world/level/block/SlabBlock/TYPE +FD: net/minecraft/world/level/block/SlabBlock/f_56354_ net/minecraft/world/level/block/SlabBlock/WATERLOGGED +FD: net/minecraft/world/level/block/SlabBlock/f_56355_ net/minecraft/world/level/block/SlabBlock/BOTTOM_AABB +FD: net/minecraft/world/level/block/SlabBlock/f_56356_ net/minecraft/world/level/block/SlabBlock/TOP_AABB +FD: net/minecraft/world/level/block/SlabBlock$1/f_56398_ net/minecraft/world/level/block/SlabBlock$1/$SwitchMap$net$minecraft$world$level$block$state$properties$SlabType +FD: net/minecraft/world/level/block/SlabBlock$1/f_56399_ net/minecraft/world/level/block/SlabBlock$1/$SwitchMap$net$minecraft$world$level$pathfinder$PathComputationType +FD: net/minecraft/world/level/block/SmallDripleafBlock/f_154577_ net/minecraft/world/level/block/SmallDripleafBlock/FACING +FD: net/minecraft/world/level/block/SmallDripleafBlock/f_154578_ net/minecraft/world/level/block/SmallDripleafBlock/AABB_OFFSET +FD: net/minecraft/world/level/block/SmallDripleafBlock/f_154579_ net/minecraft/world/level/block/SmallDripleafBlock/SHAPE +FD: net/minecraft/world/level/block/SmallDripleafBlock/f_154580_ net/minecraft/world/level/block/SmallDripleafBlock/WATERLOGGED +FD: net/minecraft/world/level/block/SmithingTableBlock/f_56417_ net/minecraft/world/level/block/SmithingTableBlock/CONTAINER_TITLE +FD: net/minecraft/world/level/block/SnifferEggBlock/f_276447_ net/minecraft/world/level/block/SnifferEggBlock/BOOSTED_HATCH_TIME_TICKS +FD: net/minecraft/world/level/block/SnifferEggBlock/f_276603_ net/minecraft/world/level/block/SnifferEggBlock/REGULAR_HATCH_TIME_TICKS +FD: net/minecraft/world/level/block/SnifferEggBlock/f_276649_ net/minecraft/world/level/block/SnifferEggBlock/RANDOM_HATCH_OFFSET_TICKS +FD: net/minecraft/world/level/block/SnifferEggBlock/f_276696_ net/minecraft/world/level/block/SnifferEggBlock/SHAPE +FD: net/minecraft/world/level/block/SnifferEggBlock/f_278392_ net/minecraft/world/level/block/SnifferEggBlock/MAX_HATCH_LEVEL +FD: net/minecraft/world/level/block/SnifferEggBlock/f_278491_ net/minecraft/world/level/block/SnifferEggBlock/HATCH +FD: net/minecraft/world/level/block/SnowLayerBlock/f_154646_ net/minecraft/world/level/block/SnowLayerBlock/MAX_HEIGHT +FD: net/minecraft/world/level/block/SnowLayerBlock/f_154647_ net/minecraft/world/level/block/SnowLayerBlock/HEIGHT_IMPASSABLE +FD: net/minecraft/world/level/block/SnowLayerBlock/f_56581_ net/minecraft/world/level/block/SnowLayerBlock/LAYERS +FD: net/minecraft/world/level/block/SnowLayerBlock/f_56582_ net/minecraft/world/level/block/SnowLayerBlock/SHAPE_BY_LAYER +FD: net/minecraft/world/level/block/SnowLayerBlock$1/f_56635_ net/minecraft/world/level/block/SnowLayerBlock$1/$SwitchMap$net$minecraft$world$level$pathfinder$PathComputationType +FD: net/minecraft/world/level/block/SnowyDirtBlock/f_56637_ net/minecraft/world/level/block/SnowyDirtBlock/SNOWY +FD: net/minecraft/world/level/block/SoulSandBlock/f_154652_ net/minecraft/world/level/block/SoulSandBlock/BUBBLE_COLUMN_CHECK_DELAY +FD: net/minecraft/world/level/block/SoulSandBlock/f_56669_ net/minecraft/world/level/block/SoulSandBlock/SHAPE +FD: net/minecraft/world/level/block/SoundType/f_154653_ net/minecraft/world/level/block/SoundType/CANDLE +FD: net/minecraft/world/level/block/SoundType/f_154654_ net/minecraft/world/level/block/SoundType/AMETHYST +FD: net/minecraft/world/level/block/SoundType/f_154655_ net/minecraft/world/level/block/SoundType/AMETHYST_CLUSTER +FD: net/minecraft/world/level/block/SoundType/f_154656_ net/minecraft/world/level/block/SoundType/SMALL_AMETHYST_BUD +FD: net/minecraft/world/level/block/SoundType/f_154657_ net/minecraft/world/level/block/SoundType/MEDIUM_AMETHYST_BUD +FD: net/minecraft/world/level/block/SoundType/f_154658_ net/minecraft/world/level/block/SoundType/LARGE_AMETHYST_BUD +FD: net/minecraft/world/level/block/SoundType/f_154659_ net/minecraft/world/level/block/SoundType/TUFF +FD: net/minecraft/world/level/block/SoundType/f_154660_ net/minecraft/world/level/block/SoundType/CALCITE +FD: net/minecraft/world/level/block/SoundType/f_154661_ net/minecraft/world/level/block/SoundType/DRIPSTONE_BLOCK +FD: net/minecraft/world/level/block/SoundType/f_154662_ net/minecraft/world/level/block/SoundType/POINTED_DRIPSTONE +FD: net/minecraft/world/level/block/SoundType/f_154663_ net/minecraft/world/level/block/SoundType/COPPER +FD: net/minecraft/world/level/block/SoundType/f_154664_ net/minecraft/world/level/block/SoundType/CAVE_VINES +FD: net/minecraft/world/level/block/SoundType/f_154665_ net/minecraft/world/level/block/SoundType/SPORE_BLOSSOM +FD: net/minecraft/world/level/block/SoundType/f_154666_ net/minecraft/world/level/block/SoundType/AZALEA +FD: net/minecraft/world/level/block/SoundType/f_154667_ net/minecraft/world/level/block/SoundType/FLOWERING_AZALEA +FD: net/minecraft/world/level/block/SoundType/f_154668_ net/minecraft/world/level/block/SoundType/MOSS_CARPET +FD: net/minecraft/world/level/block/SoundType/f_154669_ net/minecraft/world/level/block/SoundType/MOSS +FD: net/minecraft/world/level/block/SoundType/f_154670_ net/minecraft/world/level/block/SoundType/BIG_DRIPLEAF +FD: net/minecraft/world/level/block/SoundType/f_154671_ net/minecraft/world/level/block/SoundType/SMALL_DRIPLEAF +FD: net/minecraft/world/level/block/SoundType/f_154672_ net/minecraft/world/level/block/SoundType/ROOTED_DIRT +FD: net/minecraft/world/level/block/SoundType/f_154673_ net/minecraft/world/level/block/SoundType/HANGING_ROOTS +FD: net/minecraft/world/level/block/SoundType/f_154674_ net/minecraft/world/level/block/SoundType/AZALEA_LEAVES +FD: net/minecraft/world/level/block/SoundType/f_154675_ net/minecraft/world/level/block/SoundType/SCULK_SENSOR +FD: net/minecraft/world/level/block/SoundType/f_154676_ net/minecraft/world/level/block/SoundType/GLOW_LICHEN +FD: net/minecraft/world/level/block/SoundType/f_154677_ net/minecraft/world/level/block/SoundType/DEEPSLATE +FD: net/minecraft/world/level/block/SoundType/f_154678_ net/minecraft/world/level/block/SoundType/DEEPSLATE_BRICKS +FD: net/minecraft/world/level/block/SoundType/f_154679_ net/minecraft/world/level/block/SoundType/DEEPSLATE_TILES +FD: net/minecraft/world/level/block/SoundType/f_154680_ net/minecraft/world/level/block/SoundType/POLISHED_DEEPSLATE +FD: net/minecraft/world/level/block/SoundType/f_154681_ net/minecraft/world/level/block/SoundType/POWDER_SNOW +FD: net/minecraft/world/level/block/SoundType/f_222465_ net/minecraft/world/level/block/SoundType/FROGLIGHT +FD: net/minecraft/world/level/block/SoundType/f_222466_ net/minecraft/world/level/block/SoundType/FROGSPAWN +FD: net/minecraft/world/level/block/SoundType/f_222467_ net/minecraft/world/level/block/SoundType/MANGROVE_ROOTS +FD: net/minecraft/world/level/block/SoundType/f_222468_ net/minecraft/world/level/block/SoundType/MUDDY_MANGROVE_ROOTS +FD: net/minecraft/world/level/block/SoundType/f_222469_ net/minecraft/world/level/block/SoundType/MUD +FD: net/minecraft/world/level/block/SoundType/f_222470_ net/minecraft/world/level/block/SoundType/MUD_BRICKS +FD: net/minecraft/world/level/block/SoundType/f_222471_ net/minecraft/world/level/block/SoundType/PACKED_MUD +FD: net/minecraft/world/level/block/SoundType/f_222472_ net/minecraft/world/level/block/SoundType/SCULK_CATALYST +FD: net/minecraft/world/level/block/SoundType/f_222473_ net/minecraft/world/level/block/SoundType/SCULK +FD: net/minecraft/world/level/block/SoundType/f_222474_ net/minecraft/world/level/block/SoundType/SCULK_VEIN +FD: net/minecraft/world/level/block/SoundType/f_222475_ net/minecraft/world/level/block/SoundType/SCULK_SHRIEKER +FD: net/minecraft/world/level/block/SoundType/f_243772_ net/minecraft/world/level/block/SoundType/BAMBOO_WOOD +FD: net/minecraft/world/level/block/SoundType/f_244174_ net/minecraft/world/level/block/SoundType/HANGING_SIGN +FD: net/minecraft/world/level/block/SoundType/f_244244_ net/minecraft/world/level/block/SoundType/NETHER_WOOD +FD: net/minecraft/world/level/block/SoundType/f_256908_ net/minecraft/world/level/block/SoundType/NETHER_WOOD_HANGING_SIGN +FD: net/minecraft/world/level/block/SoundType/f_256956_ net/minecraft/world/level/block/SoundType/CHISELED_BOOKSHELF +FD: net/minecraft/world/level/block/SoundType/f_256995_ net/minecraft/world/level/block/SoundType/BAMBOO_WOOD_HANGING_SIGN +FD: net/minecraft/world/level/block/SoundType/f_271094_ net/minecraft/world/level/block/SoundType/CHERRY_WOOD_HANGING_SIGN +FD: net/minecraft/world/level/block/SoundType/f_271137_ net/minecraft/world/level/block/SoundType/PINK_PETALS +FD: net/minecraft/world/level/block/SoundType/f_271168_ net/minecraft/world/level/block/SoundType/SUSPICIOUS_SAND +FD: net/minecraft/world/level/block/SoundType/f_271215_ net/minecraft/world/level/block/SoundType/DECORATED_POT +FD: net/minecraft/world/level/block/SoundType/f_271239_ net/minecraft/world/level/block/SoundType/CHERRY_LEAVES +FD: net/minecraft/world/level/block/SoundType/f_271370_ net/minecraft/world/level/block/SoundType/CHERRY_SAPLING +FD: net/minecraft/world/level/block/SoundType/f_271497_ net/minecraft/world/level/block/SoundType/CHERRY_WOOD +FD: net/minecraft/world/level/block/SoundType/f_276571_ net/minecraft/world/level/block/SoundType/DECORATED_POT_CRACKED +FD: net/minecraft/world/level/block/SoundType/f_276658_ net/minecraft/world/level/block/SoundType/SUSPICIOUS_GRAVEL +FD: net/minecraft/world/level/block/SoundType/f_279557_ net/minecraft/world/level/block/SoundType/EMPTY +FD: net/minecraft/world/level/block/SoundType/f_56710_ net/minecraft/world/level/block/SoundType/NYLIUM +FD: net/minecraft/world/level/block/SoundType/f_56711_ net/minecraft/world/level/block/SoundType/FUNGUS +FD: net/minecraft/world/level/block/SoundType/f_56712_ net/minecraft/world/level/block/SoundType/ROOTS +FD: net/minecraft/world/level/block/SoundType/f_56713_ net/minecraft/world/level/block/SoundType/SHROOMLIGHT +FD: net/minecraft/world/level/block/SoundType/f_56714_ net/minecraft/world/level/block/SoundType/WEEPING_VINES +FD: net/minecraft/world/level/block/SoundType/f_56715_ net/minecraft/world/level/block/SoundType/TWISTING_VINES +FD: net/minecraft/world/level/block/SoundType/f_56716_ net/minecraft/world/level/block/SoundType/SOUL_SAND +FD: net/minecraft/world/level/block/SoundType/f_56717_ net/minecraft/world/level/block/SoundType/SOUL_SOIL +FD: net/minecraft/world/level/block/SoundType/f_56718_ net/minecraft/world/level/block/SoundType/BASALT +FD: net/minecraft/world/level/block/SoundType/f_56719_ net/minecraft/world/level/block/SoundType/WART_BLOCK +FD: net/minecraft/world/level/block/SoundType/f_56720_ net/minecraft/world/level/block/SoundType/NETHERRACK +FD: net/minecraft/world/level/block/SoundType/f_56721_ net/minecraft/world/level/block/SoundType/NETHER_BRICKS +FD: net/minecraft/world/level/block/SoundType/f_56722_ net/minecraft/world/level/block/SoundType/NETHER_SPROUTS +FD: net/minecraft/world/level/block/SoundType/f_56723_ net/minecraft/world/level/block/SoundType/NETHER_ORE +FD: net/minecraft/world/level/block/SoundType/f_56724_ net/minecraft/world/level/block/SoundType/BONE_BLOCK +FD: net/minecraft/world/level/block/SoundType/f_56725_ net/minecraft/world/level/block/SoundType/NETHERITE_BLOCK +FD: net/minecraft/world/level/block/SoundType/f_56726_ net/minecraft/world/level/block/SoundType/ANCIENT_DEBRIS +FD: net/minecraft/world/level/block/SoundType/f_56727_ net/minecraft/world/level/block/SoundType/LODESTONE +FD: net/minecraft/world/level/block/SoundType/f_56728_ net/minecraft/world/level/block/SoundType/CHAIN +FD: net/minecraft/world/level/block/SoundType/f_56729_ net/minecraft/world/level/block/SoundType/NETHER_GOLD_ORE +FD: net/minecraft/world/level/block/SoundType/f_56730_ net/minecraft/world/level/block/SoundType/GILDED_BLACKSTONE +FD: net/minecraft/world/level/block/SoundType/f_56731_ net/minecraft/world/level/block/SoundType/volume +FD: net/minecraft/world/level/block/SoundType/f_56732_ net/minecraft/world/level/block/SoundType/pitch +FD: net/minecraft/world/level/block/SoundType/f_56733_ net/minecraft/world/level/block/SoundType/breakSound +FD: net/minecraft/world/level/block/SoundType/f_56734_ net/minecraft/world/level/block/SoundType/stepSound +FD: net/minecraft/world/level/block/SoundType/f_56735_ net/minecraft/world/level/block/SoundType/placeSound +FD: net/minecraft/world/level/block/SoundType/f_56736_ net/minecraft/world/level/block/SoundType/WOOD +FD: net/minecraft/world/level/block/SoundType/f_56737_ net/minecraft/world/level/block/SoundType/hitSound +FD: net/minecraft/world/level/block/SoundType/f_56738_ net/minecraft/world/level/block/SoundType/fallSound +FD: net/minecraft/world/level/block/SoundType/f_56739_ net/minecraft/world/level/block/SoundType/GRAVEL +FD: net/minecraft/world/level/block/SoundType/f_56740_ net/minecraft/world/level/block/SoundType/GRASS +FD: net/minecraft/world/level/block/SoundType/f_56741_ net/minecraft/world/level/block/SoundType/LILY_PAD +FD: net/minecraft/world/level/block/SoundType/f_56742_ net/minecraft/world/level/block/SoundType/STONE +FD: net/minecraft/world/level/block/SoundType/f_56743_ net/minecraft/world/level/block/SoundType/METAL +FD: net/minecraft/world/level/block/SoundType/f_56744_ net/minecraft/world/level/block/SoundType/GLASS +FD: net/minecraft/world/level/block/SoundType/f_56745_ net/minecraft/world/level/block/SoundType/WOOL +FD: net/minecraft/world/level/block/SoundType/f_56746_ net/minecraft/world/level/block/SoundType/SAND +FD: net/minecraft/world/level/block/SoundType/f_56747_ net/minecraft/world/level/block/SoundType/SNOW +FD: net/minecraft/world/level/block/SoundType/f_56748_ net/minecraft/world/level/block/SoundType/LADDER +FD: net/minecraft/world/level/block/SoundType/f_56749_ net/minecraft/world/level/block/SoundType/ANVIL +FD: net/minecraft/world/level/block/SoundType/f_56750_ net/minecraft/world/level/block/SoundType/SLIME_BLOCK +FD: net/minecraft/world/level/block/SoundType/f_56751_ net/minecraft/world/level/block/SoundType/HONEY_BLOCK +FD: net/minecraft/world/level/block/SoundType/f_56752_ net/minecraft/world/level/block/SoundType/WET_GRASS +FD: net/minecraft/world/level/block/SoundType/f_56753_ net/minecraft/world/level/block/SoundType/CORAL_BLOCK +FD: net/minecraft/world/level/block/SoundType/f_56754_ net/minecraft/world/level/block/SoundType/BAMBOO +FD: net/minecraft/world/level/block/SoundType/f_56755_ net/minecraft/world/level/block/SoundType/BAMBOO_SAPLING +FD: net/minecraft/world/level/block/SoundType/f_56756_ net/minecraft/world/level/block/SoundType/SCAFFOLDING +FD: net/minecraft/world/level/block/SoundType/f_56757_ net/minecraft/world/level/block/SoundType/SWEET_BERRY_BUSH +FD: net/minecraft/world/level/block/SoundType/f_56758_ net/minecraft/world/level/block/SoundType/CROP +FD: net/minecraft/world/level/block/SoundType/f_56759_ net/minecraft/world/level/block/SoundType/HARD_CROP +FD: net/minecraft/world/level/block/SoundType/f_56760_ net/minecraft/world/level/block/SoundType/VINE +FD: net/minecraft/world/level/block/SoundType/f_56761_ net/minecraft/world/level/block/SoundType/NETHER_WART +FD: net/minecraft/world/level/block/SoundType/f_56762_ net/minecraft/world/level/block/SoundType/LANTERN +FD: net/minecraft/world/level/block/SoundType/f_56763_ net/minecraft/world/level/block/SoundType/STEM +FD: net/minecraft/world/level/block/SpongeBlock/f_154689_ net/minecraft/world/level/block/SpongeBlock/MAX_DEPTH +FD: net/minecraft/world/level/block/SpongeBlock/f_154690_ net/minecraft/world/level/block/SpongeBlock/MAX_COUNT +FD: net/minecraft/world/level/block/SpongeBlock/f_276425_ net/minecraft/world/level/block/SpongeBlock/ALL_DIRECTIONS +FD: net/minecraft/world/level/block/SporeBlossomBlock/f_154691_ net/minecraft/world/level/block/SporeBlossomBlock/SHAPE +FD: net/minecraft/world/level/block/SporeBlossomBlock/f_154692_ net/minecraft/world/level/block/SporeBlossomBlock/ADD_PARTICLE_ATTEMPTS +FD: net/minecraft/world/level/block/SporeBlossomBlock/f_154693_ net/minecraft/world/level/block/SporeBlossomBlock/PARTICLE_XZ_RADIUS +FD: net/minecraft/world/level/block/SporeBlossomBlock/f_154694_ net/minecraft/world/level/block/SporeBlossomBlock/PARTICLE_Y_MAX +FD: net/minecraft/world/level/block/StainedGlassBlock/f_56831_ net/minecraft/world/level/block/StainedGlassBlock/color +FD: net/minecraft/world/level/block/StainedGlassPaneBlock/f_56836_ net/minecraft/world/level/block/StainedGlassPaneBlock/color +FD: net/minecraft/world/level/block/StairBlock/f_56841_ net/minecraft/world/level/block/StairBlock/FACING +FD: net/minecraft/world/level/block/StairBlock/f_56842_ net/minecraft/world/level/block/StairBlock/HALF +FD: net/minecraft/world/level/block/StairBlock/f_56843_ net/minecraft/world/level/block/StairBlock/SHAPE +FD: net/minecraft/world/level/block/StairBlock/f_56844_ net/minecraft/world/level/block/StairBlock/WATERLOGGED +FD: net/minecraft/world/level/block/StairBlock/f_56845_ net/minecraft/world/level/block/StairBlock/TOP_AABB +FD: net/minecraft/world/level/block/StairBlock/f_56846_ net/minecraft/world/level/block/StairBlock/BOTTOM_AABB +FD: net/minecraft/world/level/block/StairBlock/f_56847_ net/minecraft/world/level/block/StairBlock/OCTET_NNN +FD: net/minecraft/world/level/block/StairBlock/f_56848_ net/minecraft/world/level/block/StairBlock/OCTET_NNP +FD: net/minecraft/world/level/block/StairBlock/f_56849_ net/minecraft/world/level/block/StairBlock/OCTET_NPN +FD: net/minecraft/world/level/block/StairBlock/f_56850_ net/minecraft/world/level/block/StairBlock/OCTET_NPP +FD: net/minecraft/world/level/block/StairBlock/f_56851_ net/minecraft/world/level/block/StairBlock/OCTET_PNN +FD: net/minecraft/world/level/block/StairBlock/f_56852_ net/minecraft/world/level/block/StairBlock/OCTET_PNP +FD: net/minecraft/world/level/block/StairBlock/f_56853_ net/minecraft/world/level/block/StairBlock/OCTET_PPN +FD: net/minecraft/world/level/block/StairBlock/f_56854_ net/minecraft/world/level/block/StairBlock/OCTET_PPP +FD: net/minecraft/world/level/block/StairBlock/f_56855_ net/minecraft/world/level/block/StairBlock/TOP_SHAPES +FD: net/minecraft/world/level/block/StairBlock/f_56856_ net/minecraft/world/level/block/StairBlock/BOTTOM_SHAPES +FD: net/minecraft/world/level/block/StairBlock/f_56857_ net/minecraft/world/level/block/StairBlock/SHAPE_BY_STATE +FD: net/minecraft/world/level/block/StairBlock/f_56858_ net/minecraft/world/level/block/StairBlock/base +FD: net/minecraft/world/level/block/StairBlock/f_56859_ net/minecraft/world/level/block/StairBlock/baseState +FD: net/minecraft/world/level/block/StairBlock$1/f_56984_ net/minecraft/world/level/block/StairBlock$1/$SwitchMap$net$minecraft$world$level$block$state$properties$StairsShape +FD: net/minecraft/world/level/block/StairBlock$1/f_56985_ net/minecraft/world/level/block/StairBlock$1/$SwitchMap$net$minecraft$world$level$block$Mirror +FD: net/minecraft/world/level/block/StandingSignBlock/f_56987_ net/minecraft/world/level/block/StandingSignBlock/ROTATION +FD: net/minecraft/world/level/block/StemBlock/f_154724_ net/minecraft/world/level/block/StemBlock/MAX_AGE +FD: net/minecraft/world/level/block/StemBlock/f_154725_ net/minecraft/world/level/block/StemBlock/AABB_OFFSET +FD: net/minecraft/world/level/block/StemBlock/f_154726_ net/minecraft/world/level/block/StemBlock/seedSupplier +FD: net/minecraft/world/level/block/StemBlock/f_57013_ net/minecraft/world/level/block/StemBlock/AGE +FD: net/minecraft/world/level/block/StemBlock/f_57014_ net/minecraft/world/level/block/StemBlock/SHAPE_BY_AGE +FD: net/minecraft/world/level/block/StemBlock/f_57015_ net/minecraft/world/level/block/StemBlock/fruit +FD: net/minecraft/world/level/block/StonecutterBlock/f_57063_ net/minecraft/world/level/block/StonecutterBlock/FACING +FD: net/minecraft/world/level/block/StonecutterBlock/f_57064_ net/minecraft/world/level/block/StonecutterBlock/SHAPE +FD: net/minecraft/world/level/block/StonecutterBlock/f_57065_ net/minecraft/world/level/block/StonecutterBlock/CONTAINER_TITLE +FD: net/minecraft/world/level/block/StructureBlock/f_57110_ net/minecraft/world/level/block/StructureBlock/MODE +FD: net/minecraft/world/level/block/StructureBlock$1/f_57145_ net/minecraft/world/level/block/StructureBlock$1/$SwitchMap$net$minecraft$world$level$block$state$properties$StructureMode +FD: net/minecraft/world/level/block/StructureVoidBlock/f_154734_ net/minecraft/world/level/block/StructureVoidBlock/SIZE +FD: net/minecraft/world/level/block/StructureVoidBlock/f_57147_ net/minecraft/world/level/block/StructureVoidBlock/SHAPE +FD: net/minecraft/world/level/block/SugarCaneBlock/f_154735_ net/minecraft/world/level/block/SugarCaneBlock/AABB_OFFSET +FD: net/minecraft/world/level/block/SugarCaneBlock/f_57164_ net/minecraft/world/level/block/SugarCaneBlock/AGE +FD: net/minecraft/world/level/block/SugarCaneBlock/f_57165_ net/minecraft/world/level/block/SugarCaneBlock/SHAPE +FD: net/minecraft/world/level/block/SupportType/$VALUES net/minecraft/world/level/block/SupportType/$VALUES +FD: net/minecraft/world/level/block/SupportType/CENTER net/minecraft/world/level/block/SupportType/CENTER +FD: net/minecraft/world/level/block/SupportType/FULL net/minecraft/world/level/block/SupportType/FULL +FD: net/minecraft/world/level/block/SupportType/RIGID net/minecraft/world/level/block/SupportType/RIGID +FD: net/minecraft/world/level/block/SupportType$2/f_57224_ net/minecraft/world/level/block/SupportType$2/CENTER_SUPPORT_WIDTH +FD: net/minecraft/world/level/block/SupportType$2/f_57225_ net/minecraft/world/level/block/SupportType$2/CENTER_SUPPORT_SHAPE +FD: net/minecraft/world/level/block/SupportType$3/f_57234_ net/minecraft/world/level/block/SupportType$3/RIGID_SUPPORT_WIDTH +FD: net/minecraft/world/level/block/SupportType$3/f_57235_ net/minecraft/world/level/block/SupportType$3/RIGID_SUPPORT_SHAPE +FD: net/minecraft/world/level/block/SweetBerryBushBlock/f_154737_ net/minecraft/world/level/block/SweetBerryBushBlock/MAX_AGE +FD: net/minecraft/world/level/block/SweetBerryBushBlock/f_154738_ net/minecraft/world/level/block/SweetBerryBushBlock/HURT_SPEED_THRESHOLD +FD: net/minecraft/world/level/block/SweetBerryBushBlock/f_57244_ net/minecraft/world/level/block/SweetBerryBushBlock/AGE +FD: net/minecraft/world/level/block/SweetBerryBushBlock/f_57245_ net/minecraft/world/level/block/SweetBerryBushBlock/SAPLING_SHAPE +FD: net/minecraft/world/level/block/SweetBerryBushBlock/f_57246_ net/minecraft/world/level/block/SweetBerryBushBlock/MID_GROWTH_SHAPE +FD: net/minecraft/world/level/block/TallGrassBlock/f_154739_ net/minecraft/world/level/block/TallGrassBlock/AABB_OFFSET +FD: net/minecraft/world/level/block/TallGrassBlock/f_57315_ net/minecraft/world/level/block/TallGrassBlock/SHAPE +FD: net/minecraft/world/level/block/TallSeagrassBlock/f_154740_ net/minecraft/world/level/block/TallSeagrassBlock/HALF +FD: net/minecraft/world/level/block/TallSeagrassBlock/f_154741_ net/minecraft/world/level/block/TallSeagrassBlock/AABB_OFFSET +FD: net/minecraft/world/level/block/TallSeagrassBlock/f_154742_ net/minecraft/world/level/block/TallSeagrassBlock/SHAPE +FD: net/minecraft/world/level/block/TargetBlock/f_154777_ net/minecraft/world/level/block/TargetBlock/ACTIVATION_TICKS_ARROWS +FD: net/minecraft/world/level/block/TargetBlock/f_154778_ net/minecraft/world/level/block/TargetBlock/ACTIVATION_TICKS_OTHER +FD: net/minecraft/world/level/block/TargetBlock/f_57376_ net/minecraft/world/level/block/TargetBlock/OUTPUT_POWER +FD: net/minecraft/world/level/block/TntBlock/f_57419_ net/minecraft/world/level/block/TntBlock/UNSTABLE +FD: net/minecraft/world/level/block/TorchBlock/f_154831_ net/minecraft/world/level/block/TorchBlock/AABB_STANDING_OFFSET +FD: net/minecraft/world/level/block/TorchBlock/f_57487_ net/minecraft/world/level/block/TorchBlock/AABB +FD: net/minecraft/world/level/block/TorchBlock/f_57488_ net/minecraft/world/level/block/TorchBlock/flameParticle +FD: net/minecraft/world/level/block/TorchflowerCropBlock/f_271086_ net/minecraft/world/level/block/TorchflowerCropBlock/AGE +FD: net/minecraft/world/level/block/TorchflowerCropBlock/f_271128_ net/minecraft/world/level/block/TorchflowerCropBlock/SHAPE_BY_AGE +FD: net/minecraft/world/level/block/TorchflowerCropBlock/f_271140_ net/minecraft/world/level/block/TorchflowerCropBlock/MAX_AGE +FD: net/minecraft/world/level/block/TorchflowerCropBlock/f_271351_ net/minecraft/world/level/block/TorchflowerCropBlock/AABB_OFFSET +FD: net/minecraft/world/level/block/TorchflowerCropBlock/f_278489_ net/minecraft/world/level/block/TorchflowerCropBlock/BONEMEAL_INCREASE +FD: net/minecraft/world/level/block/TrapDoorBlock/f_154832_ net/minecraft/world/level/block/TrapDoorBlock/AABB_THICKNESS +FD: net/minecraft/world/level/block/TrapDoorBlock/f_271458_ net/minecraft/world/level/block/TrapDoorBlock/type +FD: net/minecraft/world/level/block/TrapDoorBlock/f_57514_ net/minecraft/world/level/block/TrapDoorBlock/OPEN +FD: net/minecraft/world/level/block/TrapDoorBlock/f_57515_ net/minecraft/world/level/block/TrapDoorBlock/HALF +FD: net/minecraft/world/level/block/TrapDoorBlock/f_57516_ net/minecraft/world/level/block/TrapDoorBlock/POWERED +FD: net/minecraft/world/level/block/TrapDoorBlock/f_57517_ net/minecraft/world/level/block/TrapDoorBlock/WATERLOGGED +FD: net/minecraft/world/level/block/TrapDoorBlock/f_57518_ net/minecraft/world/level/block/TrapDoorBlock/EAST_OPEN_AABB +FD: net/minecraft/world/level/block/TrapDoorBlock/f_57519_ net/minecraft/world/level/block/TrapDoorBlock/WEST_OPEN_AABB +FD: net/minecraft/world/level/block/TrapDoorBlock/f_57520_ net/minecraft/world/level/block/TrapDoorBlock/SOUTH_OPEN_AABB +FD: net/minecraft/world/level/block/TrapDoorBlock/f_57521_ net/minecraft/world/level/block/TrapDoorBlock/NORTH_OPEN_AABB +FD: net/minecraft/world/level/block/TrapDoorBlock/f_57522_ net/minecraft/world/level/block/TrapDoorBlock/BOTTOM_AABB +FD: net/minecraft/world/level/block/TrapDoorBlock/f_57523_ net/minecraft/world/level/block/TrapDoorBlock/TOP_AABB +FD: net/minecraft/world/level/block/TrapDoorBlock$1/f_57569_ net/minecraft/world/level/block/TrapDoorBlock$1/$SwitchMap$net$minecraft$core$Direction +FD: net/minecraft/world/level/block/TrapDoorBlock$1/f_57570_ net/minecraft/world/level/block/TrapDoorBlock$1/$SwitchMap$net$minecraft$world$level$pathfinder$PathComputationType +FD: net/minecraft/world/level/block/TripWireBlock/f_154836_ net/minecraft/world/level/block/TripWireBlock/RECHECK_PERIOD +FD: net/minecraft/world/level/block/TripWireBlock/f_57590_ net/minecraft/world/level/block/TripWireBlock/POWERED +FD: net/minecraft/world/level/block/TripWireBlock/f_57591_ net/minecraft/world/level/block/TripWireBlock/ATTACHED +FD: net/minecraft/world/level/block/TripWireBlock/f_57592_ net/minecraft/world/level/block/TripWireBlock/DISARMED +FD: net/minecraft/world/level/block/TripWireBlock/f_57593_ net/minecraft/world/level/block/TripWireBlock/NORTH +FD: net/minecraft/world/level/block/TripWireBlock/f_57594_ net/minecraft/world/level/block/TripWireBlock/EAST +FD: net/minecraft/world/level/block/TripWireBlock/f_57595_ net/minecraft/world/level/block/TripWireBlock/SOUTH +FD: net/minecraft/world/level/block/TripWireBlock/f_57596_ net/minecraft/world/level/block/TripWireBlock/WEST +FD: net/minecraft/world/level/block/TripWireBlock/f_57597_ net/minecraft/world/level/block/TripWireBlock/AABB +FD: net/minecraft/world/level/block/TripWireBlock/f_57598_ net/minecraft/world/level/block/TripWireBlock/NOT_ATTACHED_AABB +FD: net/minecraft/world/level/block/TripWireBlock/f_57599_ net/minecraft/world/level/block/TripWireBlock/PROPERTY_BY_DIRECTION +FD: net/minecraft/world/level/block/TripWireBlock/f_57600_ net/minecraft/world/level/block/TripWireBlock/hook +FD: net/minecraft/world/level/block/TripWireBlock$1/f_57664_ net/minecraft/world/level/block/TripWireBlock$1/$SwitchMap$net$minecraft$world$level$block$Rotation +FD: net/minecraft/world/level/block/TripWireBlock$1/f_57665_ net/minecraft/world/level/block/TripWireBlock$1/$SwitchMap$net$minecraft$world$level$block$Mirror +FD: net/minecraft/world/level/block/TripWireHookBlock/f_154837_ net/minecraft/world/level/block/TripWireHookBlock/WIRE_DIST_MIN +FD: net/minecraft/world/level/block/TripWireHookBlock/f_154838_ net/minecraft/world/level/block/TripWireHookBlock/WIRE_DIST_MAX +FD: net/minecraft/world/level/block/TripWireHookBlock/f_154839_ net/minecraft/world/level/block/TripWireHookBlock/AABB_OFFSET +FD: net/minecraft/world/level/block/TripWireHookBlock/f_154840_ net/minecraft/world/level/block/TripWireHookBlock/RECHECK_PERIOD +FD: net/minecraft/world/level/block/TripWireHookBlock/f_57667_ net/minecraft/world/level/block/TripWireHookBlock/FACING +FD: net/minecraft/world/level/block/TripWireHookBlock/f_57668_ net/minecraft/world/level/block/TripWireHookBlock/POWERED +FD: net/minecraft/world/level/block/TripWireHookBlock/f_57669_ net/minecraft/world/level/block/TripWireHookBlock/ATTACHED +FD: net/minecraft/world/level/block/TripWireHookBlock/f_57670_ net/minecraft/world/level/block/TripWireHookBlock/NORTH_AABB +FD: net/minecraft/world/level/block/TripWireHookBlock/f_57671_ net/minecraft/world/level/block/TripWireHookBlock/SOUTH_AABB +FD: net/minecraft/world/level/block/TripWireHookBlock/f_57672_ net/minecraft/world/level/block/TripWireHookBlock/WEST_AABB +FD: net/minecraft/world/level/block/TripWireHookBlock/f_57673_ net/minecraft/world/level/block/TripWireHookBlock/EAST_AABB +FD: net/minecraft/world/level/block/TripWireHookBlock$1/f_57751_ net/minecraft/world/level/block/TripWireHookBlock$1/$SwitchMap$net$minecraft$core$Direction +FD: net/minecraft/world/level/block/TurtleEggBlock/f_154841_ net/minecraft/world/level/block/TurtleEggBlock/MAX_HATCH_LEVEL +FD: net/minecraft/world/level/block/TurtleEggBlock/f_154842_ net/minecraft/world/level/block/TurtleEggBlock/MIN_EGGS +FD: net/minecraft/world/level/block/TurtleEggBlock/f_154843_ net/minecraft/world/level/block/TurtleEggBlock/MAX_EGGS +FD: net/minecraft/world/level/block/TurtleEggBlock/f_57753_ net/minecraft/world/level/block/TurtleEggBlock/HATCH +FD: net/minecraft/world/level/block/TurtleEggBlock/f_57754_ net/minecraft/world/level/block/TurtleEggBlock/EGGS +FD: net/minecraft/world/level/block/TurtleEggBlock/f_57755_ net/minecraft/world/level/block/TurtleEggBlock/ONE_EGG_AABB +FD: net/minecraft/world/level/block/TurtleEggBlock/f_57756_ net/minecraft/world/level/block/TurtleEggBlock/MULTIPLE_EGGS_AABB +FD: net/minecraft/world/level/block/TwistingVinesBlock/f_154861_ net/minecraft/world/level/block/TwistingVinesBlock/SHAPE +FD: net/minecraft/world/level/block/TwistingVinesPlantBlock/f_154870_ net/minecraft/world/level/block/TwistingVinesPlantBlock/SHAPE +FD: net/minecraft/world/level/block/VineBlock/f_154875_ net/minecraft/world/level/block/VineBlock/AABB_OFFSET +FD: net/minecraft/world/level/block/VineBlock/f_57833_ net/minecraft/world/level/block/VineBlock/UP +FD: net/minecraft/world/level/block/VineBlock/f_57834_ net/minecraft/world/level/block/VineBlock/NORTH +FD: net/minecraft/world/level/block/VineBlock/f_57835_ net/minecraft/world/level/block/VineBlock/EAST +FD: net/minecraft/world/level/block/VineBlock/f_57836_ net/minecraft/world/level/block/VineBlock/SOUTH +FD: net/minecraft/world/level/block/VineBlock/f_57837_ net/minecraft/world/level/block/VineBlock/WEST +FD: net/minecraft/world/level/block/VineBlock/f_57838_ net/minecraft/world/level/block/VineBlock/PROPERTY_BY_DIRECTION +FD: net/minecraft/world/level/block/VineBlock/f_57839_ net/minecraft/world/level/block/VineBlock/UP_AABB +FD: net/minecraft/world/level/block/VineBlock/f_57840_ net/minecraft/world/level/block/VineBlock/WEST_AABB +FD: net/minecraft/world/level/block/VineBlock/f_57841_ net/minecraft/world/level/block/VineBlock/EAST_AABB +FD: net/minecraft/world/level/block/VineBlock/f_57842_ net/minecraft/world/level/block/VineBlock/NORTH_AABB +FD: net/minecraft/world/level/block/VineBlock/f_57843_ net/minecraft/world/level/block/VineBlock/SOUTH_AABB +FD: net/minecraft/world/level/block/VineBlock/f_57844_ net/minecraft/world/level/block/VineBlock/shapesCache +FD: net/minecraft/world/level/block/VineBlock$1/f_57913_ net/minecraft/world/level/block/VineBlock$1/$SwitchMap$net$minecraft$world$level$block$Rotation +FD: net/minecraft/world/level/block/VineBlock$1/f_57914_ net/minecraft/world/level/block/VineBlock$1/$SwitchMap$net$minecraft$world$level$block$Mirror +FD: net/minecraft/world/level/block/WallBannerBlock/f_57916_ net/minecraft/world/level/block/WallBannerBlock/FACING +FD: net/minecraft/world/level/block/WallBannerBlock/f_57917_ net/minecraft/world/level/block/WallBannerBlock/SHAPES +FD: net/minecraft/world/level/block/WallBlock/f_154876_ net/minecraft/world/level/block/WallBlock/WALL_WIDTH +FD: net/minecraft/world/level/block/WallBlock/f_154877_ net/minecraft/world/level/block/WallBlock/WALL_HEIGHT +FD: net/minecraft/world/level/block/WallBlock/f_154878_ net/minecraft/world/level/block/WallBlock/POST_WIDTH +FD: net/minecraft/world/level/block/WallBlock/f_154879_ net/minecraft/world/level/block/WallBlock/POST_COVER_WIDTH +FD: net/minecraft/world/level/block/WallBlock/f_154880_ net/minecraft/world/level/block/WallBlock/WALL_COVER_START +FD: net/minecraft/world/level/block/WallBlock/f_154881_ net/minecraft/world/level/block/WallBlock/WALL_COVER_END +FD: net/minecraft/world/level/block/WallBlock/f_57949_ net/minecraft/world/level/block/WallBlock/UP +FD: net/minecraft/world/level/block/WallBlock/f_57950_ net/minecraft/world/level/block/WallBlock/EAST_WALL +FD: net/minecraft/world/level/block/WallBlock/f_57951_ net/minecraft/world/level/block/WallBlock/NORTH_WALL +FD: net/minecraft/world/level/block/WallBlock/f_57952_ net/minecraft/world/level/block/WallBlock/SOUTH_WALL +FD: net/minecraft/world/level/block/WallBlock/f_57953_ net/minecraft/world/level/block/WallBlock/WEST_WALL +FD: net/minecraft/world/level/block/WallBlock/f_57954_ net/minecraft/world/level/block/WallBlock/WATERLOGGED +FD: net/minecraft/world/level/block/WallBlock/f_57955_ net/minecraft/world/level/block/WallBlock/shapeByIndex +FD: net/minecraft/world/level/block/WallBlock/f_57956_ net/minecraft/world/level/block/WallBlock/collisionShapeByIndex +FD: net/minecraft/world/level/block/WallBlock/f_57957_ net/minecraft/world/level/block/WallBlock/POST_TEST +FD: net/minecraft/world/level/block/WallBlock/f_57958_ net/minecraft/world/level/block/WallBlock/NORTH_TEST +FD: net/minecraft/world/level/block/WallBlock/f_57959_ net/minecraft/world/level/block/WallBlock/SOUTH_TEST +FD: net/minecraft/world/level/block/WallBlock/f_57960_ net/minecraft/world/level/block/WallBlock/WEST_TEST +FD: net/minecraft/world/level/block/WallBlock/f_57961_ net/minecraft/world/level/block/WallBlock/EAST_TEST +FD: net/minecraft/world/level/block/WallBlock$1/f_58061_ net/minecraft/world/level/block/WallBlock$1/$SwitchMap$net$minecraft$world$level$block$Rotation +FD: net/minecraft/world/level/block/WallBlock$1/f_58062_ net/minecraft/world/level/block/WallBlock$1/$SwitchMap$net$minecraft$world$level$block$Mirror +FD: net/minecraft/world/level/block/WallHangingSignBlock/f_243914_ net/minecraft/world/level/block/WallHangingSignBlock/SHAPE_EASTWEST +FD: net/minecraft/world/level/block/WallHangingSignBlock/f_244007_ net/minecraft/world/level/block/WallHangingSignBlock/PLANK_NORTHSOUTH +FD: net/minecraft/world/level/block/WallHangingSignBlock/f_244065_ net/minecraft/world/level/block/WallHangingSignBlock/PLANK_EASTWEST +FD: net/minecraft/world/level/block/WallHangingSignBlock/f_244390_ net/minecraft/world/level/block/WallHangingSignBlock/FACING +FD: net/minecraft/world/level/block/WallHangingSignBlock/f_244437_ net/minecraft/world/level/block/WallHangingSignBlock/AABBS +FD: net/minecraft/world/level/block/WallHangingSignBlock/f_244474_ net/minecraft/world/level/block/WallHangingSignBlock/SHAPE_NORTHSOUTH +FD: net/minecraft/world/level/block/WallHangingSignBlock$1/f_243983_ net/minecraft/world/level/block/WallHangingSignBlock$1/$SwitchMap$net$minecraft$core$Direction +FD: net/minecraft/world/level/block/WallSignBlock/f_154882_ net/minecraft/world/level/block/WallSignBlock/AABB_THICKNESS +FD: net/minecraft/world/level/block/WallSignBlock/f_154883_ net/minecraft/world/level/block/WallSignBlock/AABB_BOTTOM +FD: net/minecraft/world/level/block/WallSignBlock/f_154884_ net/minecraft/world/level/block/WallSignBlock/AABB_TOP +FD: net/minecraft/world/level/block/WallSignBlock/f_58064_ net/minecraft/world/level/block/WallSignBlock/FACING +FD: net/minecraft/world/level/block/WallSignBlock/f_58065_ net/minecraft/world/level/block/WallSignBlock/AABBS +FD: net/minecraft/world/level/block/WallSkullBlock/f_58097_ net/minecraft/world/level/block/WallSkullBlock/FACING +FD: net/minecraft/world/level/block/WallSkullBlock/f_58098_ net/minecraft/world/level/block/WallSkullBlock/AABBS +FD: net/minecraft/world/level/block/WallTorchBlock/f_154885_ net/minecraft/world/level/block/WallTorchBlock/AABB_OFFSET +FD: net/minecraft/world/level/block/WallTorchBlock/f_58119_ net/minecraft/world/level/block/WallTorchBlock/FACING +FD: net/minecraft/world/level/block/WallTorchBlock/f_58120_ net/minecraft/world/level/block/WallTorchBlock/AABBS +FD: net/minecraft/world/level/block/WaterlilyBlock/f_58159_ net/minecraft/world/level/block/WaterlilyBlock/AABB +FD: net/minecraft/world/level/block/WeatheringCopper/f_154886_ net/minecraft/world/level/block/WeatheringCopper/NEXT_BY_BLOCK +FD: net/minecraft/world/level/block/WeatheringCopper/f_154887_ net/minecraft/world/level/block/WeatheringCopper/PREVIOUS_BY_BLOCK +FD: net/minecraft/world/level/block/WeatheringCopper$WeatherState/$VALUES net/minecraft/world/level/block/WeatheringCopper$WeatherState/$VALUES +FD: net/minecraft/world/level/block/WeatheringCopper$WeatherState/EXPOSED net/minecraft/world/level/block/WeatheringCopper$WeatherState/EXPOSED +FD: net/minecraft/world/level/block/WeatheringCopper$WeatherState/OXIDIZED net/minecraft/world/level/block/WeatheringCopper$WeatherState/OXIDIZED +FD: net/minecraft/world/level/block/WeatheringCopper$WeatherState/UNAFFECTED net/minecraft/world/level/block/WeatheringCopper$WeatherState/UNAFFECTED +FD: net/minecraft/world/level/block/WeatheringCopper$WeatherState/WEATHERED net/minecraft/world/level/block/WeatheringCopper$WeatherState/WEATHERED +FD: net/minecraft/world/level/block/WeatheringCopperFullBlock/f_154923_ net/minecraft/world/level/block/WeatheringCopperFullBlock/weatherState +FD: net/minecraft/world/level/block/WeatheringCopperSlabBlock/f_154936_ net/minecraft/world/level/block/WeatheringCopperSlabBlock/weatherState +FD: net/minecraft/world/level/block/WeatheringCopperStairBlock/f_154949_ net/minecraft/world/level/block/WeatheringCopperStairBlock/weatherState +FD: net/minecraft/world/level/block/WeepingVinesBlock/f_154963_ net/minecraft/world/level/block/WeepingVinesBlock/SHAPE +FD: net/minecraft/world/level/block/WeepingVinesPlantBlock/f_154972_ net/minecraft/world/level/block/WeepingVinesPlantBlock/SHAPE +FD: net/minecraft/world/level/block/WeightedPressurePlateBlock/f_58198_ net/minecraft/world/level/block/WeightedPressurePlateBlock/POWER +FD: net/minecraft/world/level/block/WeightedPressurePlateBlock/f_58199_ net/minecraft/world/level/block/WeightedPressurePlateBlock/maxWeight +FD: net/minecraft/world/level/block/WitherSkullBlock/f_58251_ net/minecraft/world/level/block/WitherSkullBlock/witherPatternFull +FD: net/minecraft/world/level/block/WitherSkullBlock/f_58252_ net/minecraft/world/level/block/WitherSkullBlock/witherPatternBase +FD: net/minecraft/world/level/block/WoolCarpetBlock/f_58288_ net/minecraft/world/level/block/WoolCarpetBlock/color +FD: net/minecraft/world/level/block/entity/AbstractFurnaceBlockEntity/f_154980_ net/minecraft/world/level/block/entity/AbstractFurnaceBlockEntity/SLOT_INPUT +FD: net/minecraft/world/level/block/entity/AbstractFurnaceBlockEntity/f_154981_ net/minecraft/world/level/block/entity/AbstractFurnaceBlockEntity/SLOT_FUEL +FD: net/minecraft/world/level/block/entity/AbstractFurnaceBlockEntity/f_154982_ net/minecraft/world/level/block/entity/AbstractFurnaceBlockEntity/SLOT_RESULT +FD: net/minecraft/world/level/block/entity/AbstractFurnaceBlockEntity/f_154983_ net/minecraft/world/level/block/entity/AbstractFurnaceBlockEntity/DATA_LIT_TIME +FD: net/minecraft/world/level/block/entity/AbstractFurnaceBlockEntity/f_154984_ net/minecraft/world/level/block/entity/AbstractFurnaceBlockEntity/DATA_LIT_DURATION +FD: net/minecraft/world/level/block/entity/AbstractFurnaceBlockEntity/f_154985_ net/minecraft/world/level/block/entity/AbstractFurnaceBlockEntity/DATA_COOKING_PROGRESS +FD: net/minecraft/world/level/block/entity/AbstractFurnaceBlockEntity/f_154986_ net/minecraft/world/level/block/entity/AbstractFurnaceBlockEntity/DATA_COOKING_TOTAL_TIME +FD: net/minecraft/world/level/block/entity/AbstractFurnaceBlockEntity/f_154987_ net/minecraft/world/level/block/entity/AbstractFurnaceBlockEntity/NUM_DATA_VALUES +FD: net/minecraft/world/level/block/entity/AbstractFurnaceBlockEntity/f_154988_ net/minecraft/world/level/block/entity/AbstractFurnaceBlockEntity/BURN_TIME_STANDARD +FD: net/minecraft/world/level/block/entity/AbstractFurnaceBlockEntity/f_154989_ net/minecraft/world/level/block/entity/AbstractFurnaceBlockEntity/BURN_COOL_SPEED +FD: net/minecraft/world/level/block/entity/AbstractFurnaceBlockEntity/f_222691_ net/minecraft/world/level/block/entity/AbstractFurnaceBlockEntity/quickCheck +FD: net/minecraft/world/level/block/entity/AbstractFurnaceBlockEntity/f_58310_ net/minecraft/world/level/block/entity/AbstractFurnaceBlockEntity/items +FD: net/minecraft/world/level/block/entity/AbstractFurnaceBlockEntity/f_58311_ net/minecraft/world/level/block/entity/AbstractFurnaceBlockEntity/dataAccess +FD: net/minecraft/world/level/block/entity/AbstractFurnaceBlockEntity/f_58313_ net/minecraft/world/level/block/entity/AbstractFurnaceBlockEntity/SLOTS_FOR_UP +FD: net/minecraft/world/level/block/entity/AbstractFurnaceBlockEntity/f_58314_ net/minecraft/world/level/block/entity/AbstractFurnaceBlockEntity/SLOTS_FOR_DOWN +FD: net/minecraft/world/level/block/entity/AbstractFurnaceBlockEntity/f_58315_ net/minecraft/world/level/block/entity/AbstractFurnaceBlockEntity/SLOTS_FOR_SIDES +FD: net/minecraft/world/level/block/entity/AbstractFurnaceBlockEntity/f_58316_ net/minecraft/world/level/block/entity/AbstractFurnaceBlockEntity/litTime +FD: net/minecraft/world/level/block/entity/AbstractFurnaceBlockEntity/f_58317_ net/minecraft/world/level/block/entity/AbstractFurnaceBlockEntity/litDuration +FD: net/minecraft/world/level/block/entity/AbstractFurnaceBlockEntity/f_58318_ net/minecraft/world/level/block/entity/AbstractFurnaceBlockEntity/cookingProgress +FD: net/minecraft/world/level/block/entity/AbstractFurnaceBlockEntity/f_58319_ net/minecraft/world/level/block/entity/AbstractFurnaceBlockEntity/cookingTotalTime +FD: net/minecraft/world/level/block/entity/AbstractFurnaceBlockEntity/f_58320_ net/minecraft/world/level/block/entity/AbstractFurnaceBlockEntity/recipesUsed +FD: net/minecraft/world/level/block/entity/AbstractFurnaceBlockEntity$1/f_58426_ net/minecraft/world/level/block/entity/AbstractFurnaceBlockEntity$1/this$0 +FD: net/minecraft/world/level/block/entity/BannerBlockEntity/f_155030_ net/minecraft/world/level/block/entity/BannerBlockEntity/MAX_PATTERNS +FD: net/minecraft/world/level/block/entity/BannerBlockEntity/f_155031_ net/minecraft/world/level/block/entity/BannerBlockEntity/TAG_PATTERNS +FD: net/minecraft/world/level/block/entity/BannerBlockEntity/f_155032_ net/minecraft/world/level/block/entity/BannerBlockEntity/TAG_PATTERN +FD: net/minecraft/world/level/block/entity/BannerBlockEntity/f_155033_ net/minecraft/world/level/block/entity/BannerBlockEntity/TAG_COLOR +FD: net/minecraft/world/level/block/entity/BannerBlockEntity/f_58473_ net/minecraft/world/level/block/entity/BannerBlockEntity/name +FD: net/minecraft/world/level/block/entity/BannerBlockEntity/f_58474_ net/minecraft/world/level/block/entity/BannerBlockEntity/baseColor +FD: net/minecraft/world/level/block/entity/BannerBlockEntity/f_58475_ net/minecraft/world/level/block/entity/BannerBlockEntity/itemPatterns +FD: net/minecraft/world/level/block/entity/BannerBlockEntity/f_58477_ net/minecraft/world/level/block/entity/BannerBlockEntity/patterns +FD: net/minecraft/world/level/block/entity/BannerPattern/f_58532_ net/minecraft/world/level/block/entity/BannerPattern/hashname +FD: net/minecraft/world/level/block/entity/BannerPattern$Builder/f_58585_ net/minecraft/world/level/block/entity/BannerPattern$Builder/patterns +FD: net/minecraft/world/level/block/entity/BannerPatterns/f_222711_ net/minecraft/world/level/block/entity/BannerPatterns/HALF_VERTICAL +FD: net/minecraft/world/level/block/entity/BannerPatterns/f_222712_ net/minecraft/world/level/block/entity/BannerPatterns/HALF_HORIZONTAL +FD: net/minecraft/world/level/block/entity/BannerPatterns/f_222713_ net/minecraft/world/level/block/entity/BannerPatterns/HALF_VERTICAL_MIRROR +FD: net/minecraft/world/level/block/entity/BannerPatterns/f_222714_ net/minecraft/world/level/block/entity/BannerPatterns/HALF_HORIZONTAL_MIRROR +FD: net/minecraft/world/level/block/entity/BannerPatterns/f_222715_ net/minecraft/world/level/block/entity/BannerPatterns/BORDER +FD: net/minecraft/world/level/block/entity/BannerPatterns/f_222716_ net/minecraft/world/level/block/entity/BannerPatterns/CURLY_BORDER +FD: net/minecraft/world/level/block/entity/BannerPatterns/f_222717_ net/minecraft/world/level/block/entity/BannerPatterns/GRADIENT +FD: net/minecraft/world/level/block/entity/BannerPatterns/f_222718_ net/minecraft/world/level/block/entity/BannerPatterns/GRADIENT_UP +FD: net/minecraft/world/level/block/entity/BannerPatterns/f_222719_ net/minecraft/world/level/block/entity/BannerPatterns/BRICKS +FD: net/minecraft/world/level/block/entity/BannerPatterns/f_222720_ net/minecraft/world/level/block/entity/BannerPatterns/GLOBE +FD: net/minecraft/world/level/block/entity/BannerPatterns/f_222721_ net/minecraft/world/level/block/entity/BannerPatterns/CREEPER +FD: net/minecraft/world/level/block/entity/BannerPatterns/f_222722_ net/minecraft/world/level/block/entity/BannerPatterns/SKULL +FD: net/minecraft/world/level/block/entity/BannerPatterns/f_222723_ net/minecraft/world/level/block/entity/BannerPatterns/FLOWER +FD: net/minecraft/world/level/block/entity/BannerPatterns/f_222724_ net/minecraft/world/level/block/entity/BannerPatterns/MOJANG +FD: net/minecraft/world/level/block/entity/BannerPatterns/f_222725_ net/minecraft/world/level/block/entity/BannerPatterns/PIGLIN +FD: net/minecraft/world/level/block/entity/BannerPatterns/f_222726_ net/minecraft/world/level/block/entity/BannerPatterns/BASE +FD: net/minecraft/world/level/block/entity/BannerPatterns/f_222727_ net/minecraft/world/level/block/entity/BannerPatterns/SQUARE_BOTTOM_LEFT +FD: net/minecraft/world/level/block/entity/BannerPatterns/f_222728_ net/minecraft/world/level/block/entity/BannerPatterns/SQUARE_BOTTOM_RIGHT +FD: net/minecraft/world/level/block/entity/BannerPatterns/f_222729_ net/minecraft/world/level/block/entity/BannerPatterns/SQUARE_TOP_LEFT +FD: net/minecraft/world/level/block/entity/BannerPatterns/f_222730_ net/minecraft/world/level/block/entity/BannerPatterns/SQUARE_TOP_RIGHT +FD: net/minecraft/world/level/block/entity/BannerPatterns/f_222731_ net/minecraft/world/level/block/entity/BannerPatterns/STRIPE_BOTTOM +FD: net/minecraft/world/level/block/entity/BannerPatterns/f_222732_ net/minecraft/world/level/block/entity/BannerPatterns/STRIPE_TOP +FD: net/minecraft/world/level/block/entity/BannerPatterns/f_222733_ net/minecraft/world/level/block/entity/BannerPatterns/STRIPE_LEFT +FD: net/minecraft/world/level/block/entity/BannerPatterns/f_222734_ net/minecraft/world/level/block/entity/BannerPatterns/STRIPE_RIGHT +FD: net/minecraft/world/level/block/entity/BannerPatterns/f_222735_ net/minecraft/world/level/block/entity/BannerPatterns/STRIPE_CENTER +FD: net/minecraft/world/level/block/entity/BannerPatterns/f_222736_ net/minecraft/world/level/block/entity/BannerPatterns/STRIPE_MIDDLE +FD: net/minecraft/world/level/block/entity/BannerPatterns/f_222737_ net/minecraft/world/level/block/entity/BannerPatterns/STRIPE_DOWNRIGHT +FD: net/minecraft/world/level/block/entity/BannerPatterns/f_222738_ net/minecraft/world/level/block/entity/BannerPatterns/STRIPE_DOWNLEFT +FD: net/minecraft/world/level/block/entity/BannerPatterns/f_222739_ net/minecraft/world/level/block/entity/BannerPatterns/STRIPE_SMALL +FD: net/minecraft/world/level/block/entity/BannerPatterns/f_222740_ net/minecraft/world/level/block/entity/BannerPatterns/CROSS +FD: net/minecraft/world/level/block/entity/BannerPatterns/f_222741_ net/minecraft/world/level/block/entity/BannerPatterns/STRAIGHT_CROSS +FD: net/minecraft/world/level/block/entity/BannerPatterns/f_222742_ net/minecraft/world/level/block/entity/BannerPatterns/TRIANGLE_BOTTOM +FD: net/minecraft/world/level/block/entity/BannerPatterns/f_222743_ net/minecraft/world/level/block/entity/BannerPatterns/TRIANGLE_TOP +FD: net/minecraft/world/level/block/entity/BannerPatterns/f_222744_ net/minecraft/world/level/block/entity/BannerPatterns/TRIANGLES_BOTTOM +FD: net/minecraft/world/level/block/entity/BannerPatterns/f_222745_ net/minecraft/world/level/block/entity/BannerPatterns/TRIANGLES_TOP +FD: net/minecraft/world/level/block/entity/BannerPatterns/f_222746_ net/minecraft/world/level/block/entity/BannerPatterns/DIAGONAL_LEFT +FD: net/minecraft/world/level/block/entity/BannerPatterns/f_222747_ net/minecraft/world/level/block/entity/BannerPatterns/DIAGONAL_RIGHT +FD: net/minecraft/world/level/block/entity/BannerPatterns/f_222748_ net/minecraft/world/level/block/entity/BannerPatterns/DIAGONAL_LEFT_MIRROR +FD: net/minecraft/world/level/block/entity/BannerPatterns/f_222749_ net/minecraft/world/level/block/entity/BannerPatterns/DIAGONAL_RIGHT_MIRROR +FD: net/minecraft/world/level/block/entity/BannerPatterns/f_222750_ net/minecraft/world/level/block/entity/BannerPatterns/CIRCLE_MIDDLE +FD: net/minecraft/world/level/block/entity/BannerPatterns/f_222751_ net/minecraft/world/level/block/entity/BannerPatterns/RHOMBUS_MIDDLE +FD: net/minecraft/world/level/block/entity/BarrelBlockEntity/f_155050_ net/minecraft/world/level/block/entity/BarrelBlockEntity/openersCounter +FD: net/minecraft/world/level/block/entity/BarrelBlockEntity/f_58591_ net/minecraft/world/level/block/entity/BarrelBlockEntity/items +FD: net/minecraft/world/level/block/entity/BarrelBlockEntity$1/f_155056_ net/minecraft/world/level/block/entity/BarrelBlockEntity$1/this$0 +FD: net/minecraft/world/level/block/entity/BaseContainerBlockEntity/f_58621_ net/minecraft/world/level/block/entity/BaseContainerBlockEntity/lockKey +FD: net/minecraft/world/level/block/entity/BaseContainerBlockEntity/f_58622_ net/minecraft/world/level/block/entity/BaseContainerBlockEntity/name +FD: net/minecraft/world/level/block/entity/BeaconBlockEntity/f_155081_ net/minecraft/world/level/block/entity/BeaconBlockEntity/DATA_LEVELS +FD: net/minecraft/world/level/block/entity/BeaconBlockEntity/f_155082_ net/minecraft/world/level/block/entity/BeaconBlockEntity/DATA_PRIMARY +FD: net/minecraft/world/level/block/entity/BeaconBlockEntity/f_155083_ net/minecraft/world/level/block/entity/BeaconBlockEntity/DATA_SECONDARY +FD: net/minecraft/world/level/block/entity/BeaconBlockEntity/f_155084_ net/minecraft/world/level/block/entity/BeaconBlockEntity/NUM_DATA_VALUES +FD: net/minecraft/world/level/block/entity/BeaconBlockEntity/f_155085_ net/minecraft/world/level/block/entity/BeaconBlockEntity/MAX_LEVELS +FD: net/minecraft/world/level/block/entity/BeaconBlockEntity/f_155086_ net/minecraft/world/level/block/entity/BeaconBlockEntity/BLOCKS_CHECK_PER_TICK +FD: net/minecraft/world/level/block/entity/BeaconBlockEntity/f_243996_ net/minecraft/world/level/block/entity/BeaconBlockEntity/DEFAULT_NAME +FD: net/minecraft/world/level/block/entity/BeaconBlockEntity/f_58646_ net/minecraft/world/level/block/entity/BeaconBlockEntity/BEACON_EFFECTS +FD: net/minecraft/world/level/block/entity/BeaconBlockEntity/f_58647_ net/minecraft/world/level/block/entity/BeaconBlockEntity/VALID_EFFECTS +FD: net/minecraft/world/level/block/entity/BeaconBlockEntity/f_58648_ net/minecraft/world/level/block/entity/BeaconBlockEntity/beamSections +FD: net/minecraft/world/level/block/entity/BeaconBlockEntity/f_58649_ net/minecraft/world/level/block/entity/BeaconBlockEntity/checkingBeamSections +FD: net/minecraft/world/level/block/entity/BeaconBlockEntity/f_58650_ net/minecraft/world/level/block/entity/BeaconBlockEntity/levels +FD: net/minecraft/world/level/block/entity/BeaconBlockEntity/f_58651_ net/minecraft/world/level/block/entity/BeaconBlockEntity/lastCheckY +FD: net/minecraft/world/level/block/entity/BeaconBlockEntity/f_58652_ net/minecraft/world/level/block/entity/BeaconBlockEntity/primaryPower +FD: net/minecraft/world/level/block/entity/BeaconBlockEntity/f_58653_ net/minecraft/world/level/block/entity/BeaconBlockEntity/secondaryPower +FD: net/minecraft/world/level/block/entity/BeaconBlockEntity/f_58654_ net/minecraft/world/level/block/entity/BeaconBlockEntity/name +FD: net/minecraft/world/level/block/entity/BeaconBlockEntity/f_58655_ net/minecraft/world/level/block/entity/BeaconBlockEntity/lockKey +FD: net/minecraft/world/level/block/entity/BeaconBlockEntity/f_58656_ net/minecraft/world/level/block/entity/BeaconBlockEntity/dataAccess +FD: net/minecraft/world/level/block/entity/BeaconBlockEntity$1/f_58706_ net/minecraft/world/level/block/entity/BeaconBlockEntity$1/this$0 +FD: net/minecraft/world/level/block/entity/BeaconBlockEntity$BeaconBeamSection/f_58715_ net/minecraft/world/level/block/entity/BeaconBlockEntity$BeaconBeamSection/color +FD: net/minecraft/world/level/block/entity/BeaconBlockEntity$BeaconBeamSection/f_58716_ net/minecraft/world/level/block/entity/BeaconBlockEntity$BeaconBeamSection/height +FD: net/minecraft/world/level/block/entity/BedBlockEntity/f_58724_ net/minecraft/world/level/block/entity/BedBlockEntity/color +FD: net/minecraft/world/level/block/entity/BeehiveBlockEntity/f_155121_ net/minecraft/world/level/block/entity/BeehiveBlockEntity/TAG_FLOWER_POS +FD: net/minecraft/world/level/block/entity/BeehiveBlockEntity/f_155122_ net/minecraft/world/level/block/entity/BeehiveBlockEntity/MIN_OCCUPATION_TICKS +FD: net/minecraft/world/level/block/entity/BeehiveBlockEntity/f_155123_ net/minecraft/world/level/block/entity/BeehiveBlockEntity/ENTITY_DATA +FD: net/minecraft/world/level/block/entity/BeehiveBlockEntity/f_155124_ net/minecraft/world/level/block/entity/BeehiveBlockEntity/TICKS_IN_HIVE +FD: net/minecraft/world/level/block/entity/BeehiveBlockEntity/f_155125_ net/minecraft/world/level/block/entity/BeehiveBlockEntity/HAS_NECTAR +FD: net/minecraft/world/level/block/entity/BeehiveBlockEntity/f_155126_ net/minecraft/world/level/block/entity/BeehiveBlockEntity/BEES +FD: net/minecraft/world/level/block/entity/BeehiveBlockEntity/f_155127_ net/minecraft/world/level/block/entity/BeehiveBlockEntity/MAX_OCCUPANTS +FD: net/minecraft/world/level/block/entity/BeehiveBlockEntity/f_155128_ net/minecraft/world/level/block/entity/BeehiveBlockEntity/MIN_OCCUPATION_TICKS_NECTARLESS +FD: net/minecraft/world/level/block/entity/BeehiveBlockEntity/f_155129_ net/minecraft/world/level/block/entity/BeehiveBlockEntity/IGNORED_BEE_TAGS +FD: net/minecraft/world/level/block/entity/BeehiveBlockEntity/f_155130_ net/minecraft/world/level/block/entity/BeehiveBlockEntity/MIN_TICKS_BEFORE_REENTERING_HIVE +FD: net/minecraft/world/level/block/entity/BeehiveBlockEntity/f_155131_ net/minecraft/world/level/block/entity/BeehiveBlockEntity/MIN_OCCUPATION_TICKS_NECTAR +FD: net/minecraft/world/level/block/entity/BeehiveBlockEntity/f_58732_ net/minecraft/world/level/block/entity/BeehiveBlockEntity/stored +FD: net/minecraft/world/level/block/entity/BeehiveBlockEntity/f_58733_ net/minecraft/world/level/block/entity/BeehiveBlockEntity/savedFlowerPos +FD: net/minecraft/world/level/block/entity/BeehiveBlockEntity$BeeData/f_58782_ net/minecraft/world/level/block/entity/BeehiveBlockEntity$BeeData/entityData +FD: net/minecraft/world/level/block/entity/BeehiveBlockEntity$BeeData/f_58783_ net/minecraft/world/level/block/entity/BeehiveBlockEntity$BeeData/ticksInHive +FD: net/minecraft/world/level/block/entity/BeehiveBlockEntity$BeeData/f_58784_ net/minecraft/world/level/block/entity/BeehiveBlockEntity$BeeData/minOccupationTicks +FD: net/minecraft/world/level/block/entity/BeehiveBlockEntity$BeeReleaseStatus/$VALUES net/minecraft/world/level/block/entity/BeehiveBlockEntity$BeeReleaseStatus/$VALUES +FD: net/minecraft/world/level/block/entity/BeehiveBlockEntity$BeeReleaseStatus/BEE_RELEASED net/minecraft/world/level/block/entity/BeehiveBlockEntity$BeeReleaseStatus/BEE_RELEASED +FD: net/minecraft/world/level/block/entity/BeehiveBlockEntity$BeeReleaseStatus/EMERGENCY net/minecraft/world/level/block/entity/BeehiveBlockEntity$BeeReleaseStatus/EMERGENCY +FD: net/minecraft/world/level/block/entity/BeehiveBlockEntity$BeeReleaseStatus/HONEY_DELIVERED net/minecraft/world/level/block/entity/BeehiveBlockEntity$BeeReleaseStatus/HONEY_DELIVERED +FD: net/minecraft/world/level/block/entity/BellBlockEntity/f_155164_ net/minecraft/world/level/block/entity/BellBlockEntity/DURATION +FD: net/minecraft/world/level/block/entity/BellBlockEntity/f_155165_ net/minecraft/world/level/block/entity/BellBlockEntity/GLOW_DURATION +FD: net/minecraft/world/level/block/entity/BellBlockEntity/f_155166_ net/minecraft/world/level/block/entity/BellBlockEntity/MIN_TICKS_BETWEEN_SEARCHES +FD: net/minecraft/world/level/block/entity/BellBlockEntity/f_155167_ net/minecraft/world/level/block/entity/BellBlockEntity/MAX_RESONATION_TICKS +FD: net/minecraft/world/level/block/entity/BellBlockEntity/f_155168_ net/minecraft/world/level/block/entity/BellBlockEntity/TICKS_BEFORE_RESONATION +FD: net/minecraft/world/level/block/entity/BellBlockEntity/f_155169_ net/minecraft/world/level/block/entity/BellBlockEntity/SEARCH_RADIUS +FD: net/minecraft/world/level/block/entity/BellBlockEntity/f_155170_ net/minecraft/world/level/block/entity/BellBlockEntity/HEAR_BELL_RADIUS +FD: net/minecraft/world/level/block/entity/BellBlockEntity/f_155171_ net/minecraft/world/level/block/entity/BellBlockEntity/HIGHLIGHT_RAIDERS_RADIUS +FD: net/minecraft/world/level/block/entity/BellBlockEntity/f_58813_ net/minecraft/world/level/block/entity/BellBlockEntity/ticks +FD: net/minecraft/world/level/block/entity/BellBlockEntity/f_58814_ net/minecraft/world/level/block/entity/BellBlockEntity/shaking +FD: net/minecraft/world/level/block/entity/BellBlockEntity/f_58815_ net/minecraft/world/level/block/entity/BellBlockEntity/clickDirection +FD: net/minecraft/world/level/block/entity/BellBlockEntity/f_58816_ net/minecraft/world/level/block/entity/BellBlockEntity/lastRingTimestamp +FD: net/minecraft/world/level/block/entity/BellBlockEntity/f_58817_ net/minecraft/world/level/block/entity/BellBlockEntity/nearbyEntities +FD: net/minecraft/world/level/block/entity/BellBlockEntity/f_58818_ net/minecraft/world/level/block/entity/BellBlockEntity/resonating +FD: net/minecraft/world/level/block/entity/BellBlockEntity/f_58819_ net/minecraft/world/level/block/entity/BellBlockEntity/resonationTicks +FD: net/minecraft/world/level/block/entity/BlockEntity/f_58854_ net/minecraft/world/level/block/entity/BlockEntity/LOGGER +FD: net/minecraft/world/level/block/entity/BlockEntity/f_58855_ net/minecraft/world/level/block/entity/BlockEntity/type +FD: net/minecraft/world/level/block/entity/BlockEntity/f_58856_ net/minecraft/world/level/block/entity/BlockEntity/blockState +FD: net/minecraft/world/level/block/entity/BlockEntity/f_58857_ net/minecraft/world/level/block/entity/BlockEntity/level +FD: net/minecraft/world/level/block/entity/BlockEntity/f_58858_ net/minecraft/world/level/block/entity/BlockEntity/worldPosition +FD: net/minecraft/world/level/block/entity/BlockEntity/f_58859_ net/minecraft/world/level/block/entity/BlockEntity/remove +FD: net/minecraft/world/level/block/entity/BlockEntityType/f_155257_ net/minecraft/world/level/block/entity/BlockEntityType/SCULK_SENSOR +FD: net/minecraft/world/level/block/entity/BlockEntityType/f_222758_ net/minecraft/world/level/block/entity/BlockEntityType/SCULK_CATALYST +FD: net/minecraft/world/level/block/entity/BlockEntityType/f_222759_ net/minecraft/world/level/block/entity/BlockEntityType/SCULK_SHRIEKER +FD: net/minecraft/world/level/block/entity/BlockEntityType/f_244310_ net/minecraft/world/level/block/entity/BlockEntityType/CHISELED_BOOKSHELF +FD: net/minecraft/world/level/block/entity/BlockEntityType/f_244529_ net/minecraft/world/level/block/entity/BlockEntityType/HANGING_SIGN +FD: net/minecraft/world/level/block/entity/BlockEntityType/f_271291_ net/minecraft/world/level/block/entity/BlockEntityType/DECORATED_POT +FD: net/minecraft/world/level/block/entity/BlockEntityType/f_271323_ net/minecraft/world/level/block/entity/BlockEntityType/BRUSHABLE_BLOCK +FD: net/minecraft/world/level/block/entity/BlockEntityType/f_276581_ net/minecraft/world/level/block/entity/BlockEntityType/CALIBRATED_SCULK_SENSOR +FD: net/minecraft/world/level/block/entity/BlockEntityType/f_58906_ net/minecraft/world/level/block/entity/BlockEntityType/SMOKER +FD: net/minecraft/world/level/block/entity/BlockEntityType/f_58907_ net/minecraft/world/level/block/entity/BlockEntityType/BLAST_FURNACE +FD: net/minecraft/world/level/block/entity/BlockEntityType/f_58908_ net/minecraft/world/level/block/entity/BlockEntityType/LECTERN +FD: net/minecraft/world/level/block/entity/BlockEntityType/f_58909_ net/minecraft/world/level/block/entity/BlockEntityType/BELL +FD: net/minecraft/world/level/block/entity/BlockEntityType/f_58910_ net/minecraft/world/level/block/entity/BlockEntityType/JIGSAW +FD: net/minecraft/world/level/block/entity/BlockEntityType/f_58911_ net/minecraft/world/level/block/entity/BlockEntityType/CAMPFIRE +FD: net/minecraft/world/level/block/entity/BlockEntityType/f_58912_ net/minecraft/world/level/block/entity/BlockEntityType/BEEHIVE +FD: net/minecraft/world/level/block/entity/BlockEntityType/f_58913_ net/minecraft/world/level/block/entity/BlockEntityType/LOGGER +FD: net/minecraft/world/level/block/entity/BlockEntityType/f_58914_ net/minecraft/world/level/block/entity/BlockEntityType/factory +FD: net/minecraft/world/level/block/entity/BlockEntityType/f_58915_ net/minecraft/world/level/block/entity/BlockEntityType/validBlocks +FD: net/minecraft/world/level/block/entity/BlockEntityType/f_58916_ net/minecraft/world/level/block/entity/BlockEntityType/dataType +FD: net/minecraft/world/level/block/entity/BlockEntityType/f_58917_ net/minecraft/world/level/block/entity/BlockEntityType/FURNACE +FD: net/minecraft/world/level/block/entity/BlockEntityType/f_58918_ net/minecraft/world/level/block/entity/BlockEntityType/CHEST +FD: net/minecraft/world/level/block/entity/BlockEntityType/f_58919_ net/minecraft/world/level/block/entity/BlockEntityType/TRAPPED_CHEST +FD: net/minecraft/world/level/block/entity/BlockEntityType/f_58920_ net/minecraft/world/level/block/entity/BlockEntityType/ENDER_CHEST +FD: net/minecraft/world/level/block/entity/BlockEntityType/f_58921_ net/minecraft/world/level/block/entity/BlockEntityType/JUKEBOX +FD: net/minecraft/world/level/block/entity/BlockEntityType/f_58922_ net/minecraft/world/level/block/entity/BlockEntityType/DISPENSER +FD: net/minecraft/world/level/block/entity/BlockEntityType/f_58923_ net/minecraft/world/level/block/entity/BlockEntityType/DROPPER +FD: net/minecraft/world/level/block/entity/BlockEntityType/f_58924_ net/minecraft/world/level/block/entity/BlockEntityType/SIGN +FD: net/minecraft/world/level/block/entity/BlockEntityType/f_58925_ net/minecraft/world/level/block/entity/BlockEntityType/MOB_SPAWNER +FD: net/minecraft/world/level/block/entity/BlockEntityType/f_58926_ net/minecraft/world/level/block/entity/BlockEntityType/PISTON +FD: net/minecraft/world/level/block/entity/BlockEntityType/f_58927_ net/minecraft/world/level/block/entity/BlockEntityType/BREWING_STAND +FD: net/minecraft/world/level/block/entity/BlockEntityType/f_58928_ net/minecraft/world/level/block/entity/BlockEntityType/ENCHANTING_TABLE +FD: net/minecraft/world/level/block/entity/BlockEntityType/f_58929_ net/minecraft/world/level/block/entity/BlockEntityType/END_PORTAL +FD: net/minecraft/world/level/block/entity/BlockEntityType/f_58930_ net/minecraft/world/level/block/entity/BlockEntityType/BEACON +FD: net/minecraft/world/level/block/entity/BlockEntityType/f_58931_ net/minecraft/world/level/block/entity/BlockEntityType/SKULL +FD: net/minecraft/world/level/block/entity/BlockEntityType/f_58932_ net/minecraft/world/level/block/entity/BlockEntityType/DAYLIGHT_DETECTOR +FD: net/minecraft/world/level/block/entity/BlockEntityType/f_58933_ net/minecraft/world/level/block/entity/BlockEntityType/HOPPER +FD: net/minecraft/world/level/block/entity/BlockEntityType/f_58934_ net/minecraft/world/level/block/entity/BlockEntityType/COMPARATOR +FD: net/minecraft/world/level/block/entity/BlockEntityType/f_58935_ net/minecraft/world/level/block/entity/BlockEntityType/BANNER +FD: net/minecraft/world/level/block/entity/BlockEntityType/f_58936_ net/minecraft/world/level/block/entity/BlockEntityType/STRUCTURE_BLOCK +FD: net/minecraft/world/level/block/entity/BlockEntityType/f_58937_ net/minecraft/world/level/block/entity/BlockEntityType/END_GATEWAY +FD: net/minecraft/world/level/block/entity/BlockEntityType/f_58938_ net/minecraft/world/level/block/entity/BlockEntityType/COMMAND_BLOCK +FD: net/minecraft/world/level/block/entity/BlockEntityType/f_58939_ net/minecraft/world/level/block/entity/BlockEntityType/SHULKER_BOX +FD: net/minecraft/world/level/block/entity/BlockEntityType/f_58940_ net/minecraft/world/level/block/entity/BlockEntityType/BED +FD: net/minecraft/world/level/block/entity/BlockEntityType/f_58941_ net/minecraft/world/level/block/entity/BlockEntityType/CONDUIT +FD: net/minecraft/world/level/block/entity/BlockEntityType/f_58942_ net/minecraft/world/level/block/entity/BlockEntityType/BARREL +FD: net/minecraft/world/level/block/entity/BlockEntityType$Builder/f_58959_ net/minecraft/world/level/block/entity/BlockEntityType$Builder/factory +FD: net/minecraft/world/level/block/entity/BlockEntityType$Builder/f_58960_ net/minecraft/world/level/block/entity/BlockEntityType$Builder/validBlocks +FD: net/minecraft/world/level/block/entity/BrewingStandBlockEntity/f_155276_ net/minecraft/world/level/block/entity/BrewingStandBlockEntity/FUEL_USES +FD: net/minecraft/world/level/block/entity/BrewingStandBlockEntity/f_155277_ net/minecraft/world/level/block/entity/BrewingStandBlockEntity/DATA_BREW_TIME +FD: net/minecraft/world/level/block/entity/BrewingStandBlockEntity/f_155278_ net/minecraft/world/level/block/entity/BrewingStandBlockEntity/DATA_FUEL_USES +FD: net/minecraft/world/level/block/entity/BrewingStandBlockEntity/f_155279_ net/minecraft/world/level/block/entity/BrewingStandBlockEntity/NUM_DATA_VALUES +FD: net/minecraft/world/level/block/entity/BrewingStandBlockEntity/f_155280_ net/minecraft/world/level/block/entity/BrewingStandBlockEntity/INGREDIENT_SLOT +FD: net/minecraft/world/level/block/entity/BrewingStandBlockEntity/f_155281_ net/minecraft/world/level/block/entity/BrewingStandBlockEntity/FUEL_SLOT +FD: net/minecraft/world/level/block/entity/BrewingStandBlockEntity/f_58971_ net/minecraft/world/level/block/entity/BrewingStandBlockEntity/dataAccess +FD: net/minecraft/world/level/block/entity/BrewingStandBlockEntity/f_58972_ net/minecraft/world/level/block/entity/BrewingStandBlockEntity/SLOTS_FOR_UP +FD: net/minecraft/world/level/block/entity/BrewingStandBlockEntity/f_58973_ net/minecraft/world/level/block/entity/BrewingStandBlockEntity/SLOTS_FOR_DOWN +FD: net/minecraft/world/level/block/entity/BrewingStandBlockEntity/f_58974_ net/minecraft/world/level/block/entity/BrewingStandBlockEntity/SLOTS_FOR_SIDES +FD: net/minecraft/world/level/block/entity/BrewingStandBlockEntity/f_58975_ net/minecraft/world/level/block/entity/BrewingStandBlockEntity/items +FD: net/minecraft/world/level/block/entity/BrewingStandBlockEntity/f_58976_ net/minecraft/world/level/block/entity/BrewingStandBlockEntity/brewTime +FD: net/minecraft/world/level/block/entity/BrewingStandBlockEntity/f_58977_ net/minecraft/world/level/block/entity/BrewingStandBlockEntity/lastPotionCount +FD: net/minecraft/world/level/block/entity/BrewingStandBlockEntity/f_58978_ net/minecraft/world/level/block/entity/BrewingStandBlockEntity/ingredient +FD: net/minecraft/world/level/block/entity/BrewingStandBlockEntity/f_58979_ net/minecraft/world/level/block/entity/BrewingStandBlockEntity/fuel +FD: net/minecraft/world/level/block/entity/BrewingStandBlockEntity$1/f_59033_ net/minecraft/world/level/block/entity/BrewingStandBlockEntity$1/this$0 +FD: net/minecraft/world/level/block/entity/BrushableBlockEntity/f_276466_ net/minecraft/world/level/block/entity/BrushableBlockEntity/lootTable +FD: net/minecraft/world/level/block/entity/BrushableBlockEntity/f_276481_ net/minecraft/world/level/block/entity/BrushableBlockEntity/LOOT_TABLE_SEED_TAG +FD: net/minecraft/world/level/block/entity/BrushableBlockEntity/f_276487_ net/minecraft/world/level/block/entity/BrushableBlockEntity/lootTableSeed +FD: net/minecraft/world/level/block/entity/BrushableBlockEntity/f_276497_ net/minecraft/world/level/block/entity/BrushableBlockEntity/LOGGER +FD: net/minecraft/world/level/block/entity/BrushableBlockEntity/f_276499_ net/minecraft/world/level/block/entity/BrushableBlockEntity/BRUSH_RESET_TICKS +FD: net/minecraft/world/level/block/entity/BrushableBlockEntity/f_276531_ net/minecraft/world/level/block/entity/BrushableBlockEntity/brushCount +FD: net/minecraft/world/level/block/entity/BrushableBlockEntity/f_276551_ net/minecraft/world/level/block/entity/BrushableBlockEntity/BRUSH_COOLDOWN_TICKS +FD: net/minecraft/world/level/block/entity/BrushableBlockEntity/f_276557_ net/minecraft/world/level/block/entity/BrushableBlockEntity/coolDownEndsAtTick +FD: net/minecraft/world/level/block/entity/BrushableBlockEntity/f_276563_ net/minecraft/world/level/block/entity/BrushableBlockEntity/item +FD: net/minecraft/world/level/block/entity/BrushableBlockEntity/f_276577_ net/minecraft/world/level/block/entity/BrushableBlockEntity/ITEM_TAG +FD: net/minecraft/world/level/block/entity/BrushableBlockEntity/f_276583_ net/minecraft/world/level/block/entity/BrushableBlockEntity/REQUIRED_BRUSHES_TO_BREAK +FD: net/minecraft/world/level/block/entity/BrushableBlockEntity/f_276606_ net/minecraft/world/level/block/entity/BrushableBlockEntity/HIT_DIRECTION_TAG +FD: net/minecraft/world/level/block/entity/BrushableBlockEntity/f_276638_ net/minecraft/world/level/block/entity/BrushableBlockEntity/hitDirection +FD: net/minecraft/world/level/block/entity/BrushableBlockEntity/f_276647_ net/minecraft/world/level/block/entity/BrushableBlockEntity/LOOT_TABLE_TAG +FD: net/minecraft/world/level/block/entity/BrushableBlockEntity/f_276679_ net/minecraft/world/level/block/entity/BrushableBlockEntity/brushCountResetsAtTick +FD: net/minecraft/world/level/block/entity/CalibratedSculkSensorBlockEntity$VibrationUser/f_279588_ net/minecraft/world/level/block/entity/CalibratedSculkSensorBlockEntity$VibrationUser/this$0 +FD: net/minecraft/world/level/block/entity/CampfireBlockEntity/f_155298_ net/minecraft/world/level/block/entity/CampfireBlockEntity/BURN_COOL_SPEED +FD: net/minecraft/world/level/block/entity/CampfireBlockEntity/f_155299_ net/minecraft/world/level/block/entity/CampfireBlockEntity/NUM_SLOTS +FD: net/minecraft/world/level/block/entity/CampfireBlockEntity/f_222760_ net/minecraft/world/level/block/entity/CampfireBlockEntity/quickCheck +FD: net/minecraft/world/level/block/entity/CampfireBlockEntity/f_59042_ net/minecraft/world/level/block/entity/CampfireBlockEntity/items +FD: net/minecraft/world/level/block/entity/CampfireBlockEntity/f_59043_ net/minecraft/world/level/block/entity/CampfireBlockEntity/cookingProgress +FD: net/minecraft/world/level/block/entity/CampfireBlockEntity/f_59044_ net/minecraft/world/level/block/entity/CampfireBlockEntity/cookingTime +FD: net/minecraft/world/level/block/entity/ChestBlockEntity/f_155323_ net/minecraft/world/level/block/entity/ChestBlockEntity/EVENT_SET_OPEN_COUNT +FD: net/minecraft/world/level/block/entity/ChestBlockEntity/f_155324_ net/minecraft/world/level/block/entity/ChestBlockEntity/openersCounter +FD: net/minecraft/world/level/block/entity/ChestBlockEntity/f_155325_ net/minecraft/world/level/block/entity/ChestBlockEntity/chestLidController +FD: net/minecraft/world/level/block/entity/ChestBlockEntity/f_59073_ net/minecraft/world/level/block/entity/ChestBlockEntity/items +FD: net/minecraft/world/level/block/entity/ChestBlockEntity$1/f_155351_ net/minecraft/world/level/block/entity/ChestBlockEntity$1/this$0 +FD: net/minecraft/world/level/block/entity/ChestLidController/f_155370_ net/minecraft/world/level/block/entity/ChestLidController/shouldBeOpen +FD: net/minecraft/world/level/block/entity/ChestLidController/f_155371_ net/minecraft/world/level/block/entity/ChestLidController/openness +FD: net/minecraft/world/level/block/entity/ChestLidController/f_155372_ net/minecraft/world/level/block/entity/ChestLidController/oOpenness +FD: net/minecraft/world/level/block/entity/ChiseledBookShelfBlockEntity/f_244647_ net/minecraft/world/level/block/entity/ChiseledBookShelfBlockEntity/MAX_BOOKS_IN_STORAGE +FD: net/minecraft/world/level/block/entity/ChiseledBookShelfBlockEntity/f_254661_ net/minecraft/world/level/block/entity/ChiseledBookShelfBlockEntity/LOGGER +FD: net/minecraft/world/level/block/entity/ChiseledBookShelfBlockEntity/f_260576_ net/minecraft/world/level/block/entity/ChiseledBookShelfBlockEntity/items +FD: net/minecraft/world/level/block/entity/ChiseledBookShelfBlockEntity/f_262317_ net/minecraft/world/level/block/entity/ChiseledBookShelfBlockEntity/lastInteractedSlot +FD: net/minecraft/world/level/block/entity/CommandBlockEntity/f_59123_ net/minecraft/world/level/block/entity/CommandBlockEntity/powered +FD: net/minecraft/world/level/block/entity/CommandBlockEntity/f_59124_ net/minecraft/world/level/block/entity/CommandBlockEntity/auto +FD: net/minecraft/world/level/block/entity/CommandBlockEntity/f_59125_ net/minecraft/world/level/block/entity/CommandBlockEntity/conditionMet +FD: net/minecraft/world/level/block/entity/CommandBlockEntity/f_59127_ net/minecraft/world/level/block/entity/CommandBlockEntity/commandBlock +FD: net/minecraft/world/level/block/entity/CommandBlockEntity$1/f_59153_ net/minecraft/world/level/block/entity/CommandBlockEntity$1/this$0 +FD: net/minecraft/world/level/block/entity/CommandBlockEntity$Mode/$VALUES net/minecraft/world/level/block/entity/CommandBlockEntity$Mode/$VALUES +FD: net/minecraft/world/level/block/entity/CommandBlockEntity$Mode/AUTO net/minecraft/world/level/block/entity/CommandBlockEntity$Mode/AUTO +FD: net/minecraft/world/level/block/entity/CommandBlockEntity$Mode/REDSTONE net/minecraft/world/level/block/entity/CommandBlockEntity$Mode/REDSTONE +FD: net/minecraft/world/level/block/entity/CommandBlockEntity$Mode/SEQUENCE net/minecraft/world/level/block/entity/CommandBlockEntity$Mode/SEQUENCE +FD: net/minecraft/world/level/block/entity/ComparatorBlockEntity/f_59173_ net/minecraft/world/level/block/entity/ComparatorBlockEntity/output +FD: net/minecraft/world/level/block/entity/ConduitBlockEntity/f_155390_ net/minecraft/world/level/block/entity/ConduitBlockEntity/BLOCK_REFRESH_RATE +FD: net/minecraft/world/level/block/entity/ConduitBlockEntity/f_155391_ net/minecraft/world/level/block/entity/ConduitBlockEntity/EFFECT_DURATION +FD: net/minecraft/world/level/block/entity/ConduitBlockEntity/f_155392_ net/minecraft/world/level/block/entity/ConduitBlockEntity/ROTATION_SPEED +FD: net/minecraft/world/level/block/entity/ConduitBlockEntity/f_155393_ net/minecraft/world/level/block/entity/ConduitBlockEntity/MIN_ACTIVE_SIZE +FD: net/minecraft/world/level/block/entity/ConduitBlockEntity/f_155394_ net/minecraft/world/level/block/entity/ConduitBlockEntity/MIN_KILL_SIZE +FD: net/minecraft/world/level/block/entity/ConduitBlockEntity/f_155395_ net/minecraft/world/level/block/entity/ConduitBlockEntity/KILL_RANGE +FD: net/minecraft/world/level/block/entity/ConduitBlockEntity/f_59183_ net/minecraft/world/level/block/entity/ConduitBlockEntity/tickCount +FD: net/minecraft/world/level/block/entity/ConduitBlockEntity/f_59184_ net/minecraft/world/level/block/entity/ConduitBlockEntity/VALID_BLOCKS +FD: net/minecraft/world/level/block/entity/ConduitBlockEntity/f_59185_ net/minecraft/world/level/block/entity/ConduitBlockEntity/activeRotation +FD: net/minecraft/world/level/block/entity/ConduitBlockEntity/f_59186_ net/minecraft/world/level/block/entity/ConduitBlockEntity/isActive +FD: net/minecraft/world/level/block/entity/ConduitBlockEntity/f_59187_ net/minecraft/world/level/block/entity/ConduitBlockEntity/isHunting +FD: net/minecraft/world/level/block/entity/ConduitBlockEntity/f_59188_ net/minecraft/world/level/block/entity/ConduitBlockEntity/effectBlocks +FD: net/minecraft/world/level/block/entity/ConduitBlockEntity/f_59189_ net/minecraft/world/level/block/entity/ConduitBlockEntity/destroyTarget +FD: net/minecraft/world/level/block/entity/ConduitBlockEntity/f_59190_ net/minecraft/world/level/block/entity/ConduitBlockEntity/destroyTargetUUID +FD: net/minecraft/world/level/block/entity/ConduitBlockEntity/f_59191_ net/minecraft/world/level/block/entity/ConduitBlockEntity/nextAmbientSoundActivation +FD: net/minecraft/world/level/block/entity/ContainerOpenersCounter/f_155447_ net/minecraft/world/level/block/entity/ContainerOpenersCounter/CHECK_TICK_DELAY +FD: net/minecraft/world/level/block/entity/ContainerOpenersCounter/f_155448_ net/minecraft/world/level/block/entity/ContainerOpenersCounter/openCount +FD: net/minecraft/world/level/block/entity/DecoratedPotBlockEntity/f_271111_ net/minecraft/world/level/block/entity/DecoratedPotBlockEntity/TAG_SHERDS +FD: net/minecraft/world/level/block/entity/DecoratedPotBlockEntity/f_283890_ net/minecraft/world/level/block/entity/DecoratedPotBlockEntity/decorations +FD: net/minecraft/world/level/block/entity/DecoratedPotBlockEntity$Decorations/f_283770_ net/minecraft/world/level/block/entity/DecoratedPotBlockEntity$Decorations/EMPTY +FD: net/minecraft/world/level/block/entity/DecoratedPotBlockEntity$Decorations/f_283809_ net/minecraft/world/level/block/entity/DecoratedPotBlockEntity$Decorations/left +FD: net/minecraft/world/level/block/entity/DecoratedPotBlockEntity$Decorations/f_283810_ net/minecraft/world/level/block/entity/DecoratedPotBlockEntity$Decorations/front +FD: net/minecraft/world/level/block/entity/DecoratedPotBlockEntity$Decorations/f_283873_ net/minecraft/world/level/block/entity/DecoratedPotBlockEntity$Decorations/right +FD: net/minecraft/world/level/block/entity/DecoratedPotBlockEntity$Decorations/f_283886_ net/minecraft/world/level/block/entity/DecoratedPotBlockEntity$Decorations/back +FD: net/minecraft/world/level/block/entity/DecoratedPotPatterns/f_271149_ net/minecraft/world/level/block/entity/DecoratedPotPatterns/BRICK +FD: net/minecraft/world/level/block/entity/DecoratedPotPatterns/f_271184_ net/minecraft/world/level/block/entity/DecoratedPotPatterns/PRIZE_NAME +FD: net/minecraft/world/level/block/entity/DecoratedPotPatterns/f_271192_ net/minecraft/world/level/block/entity/DecoratedPotPatterns/BASE_NAME +FD: net/minecraft/world/level/block/entity/DecoratedPotPatterns/f_271238_ net/minecraft/world/level/block/entity/DecoratedPotPatterns/ARCHER +FD: net/minecraft/world/level/block/entity/DecoratedPotPatterns/f_271245_ net/minecraft/world/level/block/entity/DecoratedPotPatterns/BRICK_NAME +FD: net/minecraft/world/level/block/entity/DecoratedPotPatterns/f_271246_ net/minecraft/world/level/block/entity/DecoratedPotPatterns/SKULL +FD: net/minecraft/world/level/block/entity/DecoratedPotPatterns/f_271266_ net/minecraft/world/level/block/entity/DecoratedPotPatterns/BASE +FD: net/minecraft/world/level/block/entity/DecoratedPotPatterns/f_271295_ net/minecraft/world/level/block/entity/DecoratedPotPatterns/ARMS_UP_NAME +FD: net/minecraft/world/level/block/entity/DecoratedPotPatterns/f_271355_ net/minecraft/world/level/block/entity/DecoratedPotPatterns/ARCHER_NAME +FD: net/minecraft/world/level/block/entity/DecoratedPotPatterns/f_271367_ net/minecraft/world/level/block/entity/DecoratedPotPatterns/ITEM_TO_POT_TEXTURE +FD: net/minecraft/world/level/block/entity/DecoratedPotPatterns/f_271411_ net/minecraft/world/level/block/entity/DecoratedPotPatterns/SKULL_NAME +FD: net/minecraft/world/level/block/entity/DecoratedPotPatterns/f_271431_ net/minecraft/world/level/block/entity/DecoratedPotPatterns/ARMS_UP +FD: net/minecraft/world/level/block/entity/DecoratedPotPatterns/f_271499_ net/minecraft/world/level/block/entity/DecoratedPotPatterns/PRIZE +FD: net/minecraft/world/level/block/entity/DecoratedPotPatterns/f_276417_ net/minecraft/world/level/block/entity/DecoratedPotPatterns/BLADE_NAME +FD: net/minecraft/world/level/block/entity/DecoratedPotPatterns/f_276418_ net/minecraft/world/level/block/entity/DecoratedPotPatterns/PLENTY_NAME +FD: net/minecraft/world/level/block/entity/DecoratedPotPatterns/f_276429_ net/minecraft/world/level/block/entity/DecoratedPotPatterns/DANGER_NAME +FD: net/minecraft/world/level/block/entity/DecoratedPotPatterns/f_276437_ net/minecraft/world/level/block/entity/DecoratedPotPatterns/SHEAF_NAME +FD: net/minecraft/world/level/block/entity/DecoratedPotPatterns/f_276453_ net/minecraft/world/level/block/entity/DecoratedPotPatterns/BREWER_NAME +FD: net/minecraft/world/level/block/entity/DecoratedPotPatterns/f_276456_ net/minecraft/world/level/block/entity/DecoratedPotPatterns/MOURNER_NAME +FD: net/minecraft/world/level/block/entity/DecoratedPotPatterns/f_276473_ net/minecraft/world/level/block/entity/DecoratedPotPatterns/ANGLER_NAME +FD: net/minecraft/world/level/block/entity/DecoratedPotPatterns/f_276474_ net/minecraft/world/level/block/entity/DecoratedPotPatterns/HOWL +FD: net/minecraft/world/level/block/entity/DecoratedPotPatterns/f_276482_ net/minecraft/world/level/block/entity/DecoratedPotPatterns/EXPLORER +FD: net/minecraft/world/level/block/entity/DecoratedPotPatterns/f_276483_ net/minecraft/world/level/block/entity/DecoratedPotPatterns/EXPLORER_NAME +FD: net/minecraft/world/level/block/entity/DecoratedPotPatterns/f_276511_ net/minecraft/world/level/block/entity/DecoratedPotPatterns/BLADE +FD: net/minecraft/world/level/block/entity/DecoratedPotPatterns/f_276515_ net/minecraft/world/level/block/entity/DecoratedPotPatterns/BURN_NAME +FD: net/minecraft/world/level/block/entity/DecoratedPotPatterns/f_276521_ net/minecraft/world/level/block/entity/DecoratedPotPatterns/SNORT_NAME +FD: net/minecraft/world/level/block/entity/DecoratedPotPatterns/f_276523_ net/minecraft/world/level/block/entity/DecoratedPotPatterns/FRIEND +FD: net/minecraft/world/level/block/entity/DecoratedPotPatterns/f_276529_ net/minecraft/world/level/block/entity/DecoratedPotPatterns/HEART_NAME +FD: net/minecraft/world/level/block/entity/DecoratedPotPatterns/f_276534_ net/minecraft/world/level/block/entity/DecoratedPotPatterns/HEART +FD: net/minecraft/world/level/block/entity/DecoratedPotPatterns/f_276550_ net/minecraft/world/level/block/entity/DecoratedPotPatterns/BURN +FD: net/minecraft/world/level/block/entity/DecoratedPotPatterns/f_276576_ net/minecraft/world/level/block/entity/DecoratedPotPatterns/MINER_NAME +FD: net/minecraft/world/level/block/entity/DecoratedPotPatterns/f_276578_ net/minecraft/world/level/block/entity/DecoratedPotPatterns/HEARTBREAK +FD: net/minecraft/world/level/block/entity/DecoratedPotPatterns/f_276584_ net/minecraft/world/level/block/entity/DecoratedPotPatterns/PLENTY +FD: net/minecraft/world/level/block/entity/DecoratedPotPatterns/f_276620_ net/minecraft/world/level/block/entity/DecoratedPotPatterns/BREWER +FD: net/minecraft/world/level/block/entity/DecoratedPotPatterns/f_276623_ net/minecraft/world/level/block/entity/DecoratedPotPatterns/HEARTBREAK_NAME +FD: net/minecraft/world/level/block/entity/DecoratedPotPatterns/f_276639_ net/minecraft/world/level/block/entity/DecoratedPotPatterns/DANGER +FD: net/minecraft/world/level/block/entity/DecoratedPotPatterns/f_276640_ net/minecraft/world/level/block/entity/DecoratedPotPatterns/SHELTER +FD: net/minecraft/world/level/block/entity/DecoratedPotPatterns/f_276641_ net/minecraft/world/level/block/entity/DecoratedPotPatterns/SHELTER_NAME +FD: net/minecraft/world/level/block/entity/DecoratedPotPatterns/f_276644_ net/minecraft/world/level/block/entity/DecoratedPotPatterns/SNORT +FD: net/minecraft/world/level/block/entity/DecoratedPotPatterns/f_276653_ net/minecraft/world/level/block/entity/DecoratedPotPatterns/ANGLER +FD: net/minecraft/world/level/block/entity/DecoratedPotPatterns/f_276663_ net/minecraft/world/level/block/entity/DecoratedPotPatterns/FRIEND_NAME +FD: net/minecraft/world/level/block/entity/DecoratedPotPatterns/f_276676_ net/minecraft/world/level/block/entity/DecoratedPotPatterns/MINER +FD: net/minecraft/world/level/block/entity/DecoratedPotPatterns/f_276681_ net/minecraft/world/level/block/entity/DecoratedPotPatterns/HOWL_NAME +FD: net/minecraft/world/level/block/entity/DecoratedPotPatterns/f_276682_ net/minecraft/world/level/block/entity/DecoratedPotPatterns/SHEAF +FD: net/minecraft/world/level/block/entity/DecoratedPotPatterns/f_276687_ net/minecraft/world/level/block/entity/DecoratedPotPatterns/MOURNER +FD: net/minecraft/world/level/block/entity/DispenserBlockEntity/f_155487_ net/minecraft/world/level/block/entity/DispenserBlockEntity/CONTAINER_SIZE +FD: net/minecraft/world/level/block/entity/DispenserBlockEntity/f_59228_ net/minecraft/world/level/block/entity/DispenserBlockEntity/items +FD: net/minecraft/world/level/block/entity/EnchantmentTableBlockEntity/f_59251_ net/minecraft/world/level/block/entity/EnchantmentTableBlockEntity/time +FD: net/minecraft/world/level/block/entity/EnchantmentTableBlockEntity/f_59252_ net/minecraft/world/level/block/entity/EnchantmentTableBlockEntity/flip +FD: net/minecraft/world/level/block/entity/EnchantmentTableBlockEntity/f_59253_ net/minecraft/world/level/block/entity/EnchantmentTableBlockEntity/oFlip +FD: net/minecraft/world/level/block/entity/EnchantmentTableBlockEntity/f_59254_ net/minecraft/world/level/block/entity/EnchantmentTableBlockEntity/flipT +FD: net/minecraft/world/level/block/entity/EnchantmentTableBlockEntity/f_59255_ net/minecraft/world/level/block/entity/EnchantmentTableBlockEntity/flipA +FD: net/minecraft/world/level/block/entity/EnchantmentTableBlockEntity/f_59256_ net/minecraft/world/level/block/entity/EnchantmentTableBlockEntity/open +FD: net/minecraft/world/level/block/entity/EnchantmentTableBlockEntity/f_59257_ net/minecraft/world/level/block/entity/EnchantmentTableBlockEntity/oOpen +FD: net/minecraft/world/level/block/entity/EnchantmentTableBlockEntity/f_59258_ net/minecraft/world/level/block/entity/EnchantmentTableBlockEntity/rot +FD: net/minecraft/world/level/block/entity/EnchantmentTableBlockEntity/f_59259_ net/minecraft/world/level/block/entity/EnchantmentTableBlockEntity/oRot +FD: net/minecraft/world/level/block/entity/EnchantmentTableBlockEntity/f_59260_ net/minecraft/world/level/block/entity/EnchantmentTableBlockEntity/tRot +FD: net/minecraft/world/level/block/entity/EnchantmentTableBlockEntity/f_59261_ net/minecraft/world/level/block/entity/EnchantmentTableBlockEntity/RANDOM +FD: net/minecraft/world/level/block/entity/EnchantmentTableBlockEntity/f_59262_ net/minecraft/world/level/block/entity/EnchantmentTableBlockEntity/name +FD: net/minecraft/world/level/block/entity/EnderChestBlockEntity/f_155510_ net/minecraft/world/level/block/entity/EnderChestBlockEntity/chestLidController +FD: net/minecraft/world/level/block/entity/EnderChestBlockEntity/f_155511_ net/minecraft/world/level/block/entity/EnderChestBlockEntity/openersCounter +FD: net/minecraft/world/level/block/entity/EnderChestBlockEntity$1/f_155525_ net/minecraft/world/level/block/entity/EnderChestBlockEntity$1/this$0 +FD: net/minecraft/world/level/block/entity/HangingSignBlockEntity/f_244305_ net/minecraft/world/level/block/entity/HangingSignBlockEntity/TEXT_LINE_HEIGHT +FD: net/minecraft/world/level/block/entity/HangingSignBlockEntity/f_244379_ net/minecraft/world/level/block/entity/HangingSignBlockEntity/MAX_TEXT_LINE_WIDTH +FD: net/minecraft/world/level/block/entity/Hopper/f_59296_ net/minecraft/world/level/block/entity/Hopper/INSIDE +FD: net/minecraft/world/level/block/entity/Hopper/f_59297_ net/minecraft/world/level/block/entity/Hopper/ABOVE +FD: net/minecraft/world/level/block/entity/Hopper/f_59298_ net/minecraft/world/level/block/entity/Hopper/SUCK +FD: net/minecraft/world/level/block/entity/HopperBlockEntity/f_155547_ net/minecraft/world/level/block/entity/HopperBlockEntity/MOVE_ITEM_SPEED +FD: net/minecraft/world/level/block/entity/HopperBlockEntity/f_155548_ net/minecraft/world/level/block/entity/HopperBlockEntity/HOPPER_CONTAINER_SIZE +FD: net/minecraft/world/level/block/entity/HopperBlockEntity/f_59301_ net/minecraft/world/level/block/entity/HopperBlockEntity/items +FD: net/minecraft/world/level/block/entity/HopperBlockEntity/f_59302_ net/minecraft/world/level/block/entity/HopperBlockEntity/cooldownTime +FD: net/minecraft/world/level/block/entity/HopperBlockEntity/f_59303_ net/minecraft/world/level/block/entity/HopperBlockEntity/tickedGameTime +FD: net/minecraft/world/level/block/entity/JigsawBlockEntity/f_155599_ net/minecraft/world/level/block/entity/JigsawBlockEntity/TARGET +FD: net/minecraft/world/level/block/entity/JigsawBlockEntity/f_155600_ net/minecraft/world/level/block/entity/JigsawBlockEntity/POOL +FD: net/minecraft/world/level/block/entity/JigsawBlockEntity/f_155601_ net/minecraft/world/level/block/entity/JigsawBlockEntity/JOINT +FD: net/minecraft/world/level/block/entity/JigsawBlockEntity/f_155602_ net/minecraft/world/level/block/entity/JigsawBlockEntity/NAME +FD: net/minecraft/world/level/block/entity/JigsawBlockEntity/f_155603_ net/minecraft/world/level/block/entity/JigsawBlockEntity/FINAL_STATE +FD: net/minecraft/world/level/block/entity/JigsawBlockEntity/f_59411_ net/minecraft/world/level/block/entity/JigsawBlockEntity/name +FD: net/minecraft/world/level/block/entity/JigsawBlockEntity/f_59412_ net/minecraft/world/level/block/entity/JigsawBlockEntity/target +FD: net/minecraft/world/level/block/entity/JigsawBlockEntity/f_59413_ net/minecraft/world/level/block/entity/JigsawBlockEntity/pool +FD: net/minecraft/world/level/block/entity/JigsawBlockEntity/f_59414_ net/minecraft/world/level/block/entity/JigsawBlockEntity/joint +FD: net/minecraft/world/level/block/entity/JigsawBlockEntity/f_59415_ net/minecraft/world/level/block/entity/JigsawBlockEntity/finalState +FD: net/minecraft/world/level/block/entity/JigsawBlockEntity$JointType/$VALUES net/minecraft/world/level/block/entity/JigsawBlockEntity$JointType/$VALUES +FD: net/minecraft/world/level/block/entity/JigsawBlockEntity$JointType/ALIGNED net/minecraft/world/level/block/entity/JigsawBlockEntity$JointType/ALIGNED +FD: net/minecraft/world/level/block/entity/JigsawBlockEntity$JointType/ROLLABLE net/minecraft/world/level/block/entity/JigsawBlockEntity$JointType/ROLLABLE +FD: net/minecraft/world/level/block/entity/JigsawBlockEntity$JointType/f_59449_ net/minecraft/world/level/block/entity/JigsawBlockEntity$JointType/name +FD: net/minecraft/world/level/block/entity/JukeboxBlockEntity/f_238572_ net/minecraft/world/level/block/entity/JukeboxBlockEntity/recordStartedTick +FD: net/minecraft/world/level/block/entity/JukeboxBlockEntity/f_238637_ net/minecraft/world/level/block/entity/JukeboxBlockEntity/isPlaying +FD: net/minecraft/world/level/block/entity/JukeboxBlockEntity/f_238695_ net/minecraft/world/level/block/entity/JukeboxBlockEntity/tickCount +FD: net/minecraft/world/level/block/entity/JukeboxBlockEntity/f_238796_ net/minecraft/world/level/block/entity/JukeboxBlockEntity/ticksSinceLastEvent +FD: net/minecraft/world/level/block/entity/JukeboxBlockEntity/f_271436_ net/minecraft/world/level/block/entity/JukeboxBlockEntity/items +FD: net/minecraft/world/level/block/entity/JukeboxBlockEntity/f_271500_ net/minecraft/world/level/block/entity/JukeboxBlockEntity/SONG_END_PADDING +FD: net/minecraft/world/level/block/entity/LecternBlockEntity/f_155617_ net/minecraft/world/level/block/entity/LecternBlockEntity/DATA_PAGE +FD: net/minecraft/world/level/block/entity/LecternBlockEntity/f_155618_ net/minecraft/world/level/block/entity/LecternBlockEntity/NUM_DATA +FD: net/minecraft/world/level/block/entity/LecternBlockEntity/f_155619_ net/minecraft/world/level/block/entity/LecternBlockEntity/SLOT_BOOK +FD: net/minecraft/world/level/block/entity/LecternBlockEntity/f_155620_ net/minecraft/world/level/block/entity/LecternBlockEntity/NUM_SLOTS +FD: net/minecraft/world/level/block/entity/LecternBlockEntity/f_59525_ net/minecraft/world/level/block/entity/LecternBlockEntity/bookAccess +FD: net/minecraft/world/level/block/entity/LecternBlockEntity/f_59526_ net/minecraft/world/level/block/entity/LecternBlockEntity/dataAccess +FD: net/minecraft/world/level/block/entity/LecternBlockEntity/f_59527_ net/minecraft/world/level/block/entity/LecternBlockEntity/book +FD: net/minecraft/world/level/block/entity/LecternBlockEntity/f_59528_ net/minecraft/world/level/block/entity/LecternBlockEntity/page +FD: net/minecraft/world/level/block/entity/LecternBlockEntity/f_59529_ net/minecraft/world/level/block/entity/LecternBlockEntity/pageCount +FD: net/minecraft/world/level/block/entity/LecternBlockEntity$1/f_59572_ net/minecraft/world/level/block/entity/LecternBlockEntity$1/this$0 +FD: net/minecraft/world/level/block/entity/LecternBlockEntity$2/f_59595_ net/minecraft/world/level/block/entity/LecternBlockEntity$2/this$0 +FD: net/minecraft/world/level/block/entity/RandomizableContainerBlockEntity/f_155626_ net/minecraft/world/level/block/entity/RandomizableContainerBlockEntity/LOOT_TABLE_TAG +FD: net/minecraft/world/level/block/entity/RandomizableContainerBlockEntity/f_155627_ net/minecraft/world/level/block/entity/RandomizableContainerBlockEntity/LOOT_TABLE_SEED_TAG +FD: net/minecraft/world/level/block/entity/RandomizableContainerBlockEntity/f_59605_ net/minecraft/world/level/block/entity/RandomizableContainerBlockEntity/lootTable +FD: net/minecraft/world/level/block/entity/RandomizableContainerBlockEntity/f_59606_ net/minecraft/world/level/block/entity/RandomizableContainerBlockEntity/lootTableSeed +FD: net/minecraft/world/level/block/entity/SculkCatalystBlockEntity/f_279609_ net/minecraft/world/level/block/entity/SculkCatalystBlockEntity/catalystListener +FD: net/minecraft/world/level/block/entity/SculkCatalystBlockEntity$CatalystListener/f_279622_ net/minecraft/world/level/block/entity/SculkCatalystBlockEntity$CatalystListener/positionSource +FD: net/minecraft/world/level/block/entity/SculkCatalystBlockEntity$CatalystListener/f_279632_ net/minecraft/world/level/block/entity/SculkCatalystBlockEntity$CatalystListener/sculkSpreader +FD: net/minecraft/world/level/block/entity/SculkCatalystBlockEntity$CatalystListener/f_279646_ net/minecraft/world/level/block/entity/SculkCatalystBlockEntity$CatalystListener/blockState +FD: net/minecraft/world/level/block/entity/SculkCatalystBlockEntity$CatalystListener/f_279651_ net/minecraft/world/level/block/entity/SculkCatalystBlockEntity$CatalystListener/PULSE_TICKS +FD: net/minecraft/world/level/block/entity/SculkSensorBlockEntity/f_155633_ net/minecraft/world/level/block/entity/SculkSensorBlockEntity/lastVibrationFrequency +FD: net/minecraft/world/level/block/entity/SculkSensorBlockEntity/f_222794_ net/minecraft/world/level/block/entity/SculkSensorBlockEntity/LOGGER +FD: net/minecraft/world/level/block/entity/SculkSensorBlockEntity/f_279553_ net/minecraft/world/level/block/entity/SculkSensorBlockEntity/vibrationData +FD: net/minecraft/world/level/block/entity/SculkSensorBlockEntity/f_279572_ net/minecraft/world/level/block/entity/SculkSensorBlockEntity/vibrationUser +FD: net/minecraft/world/level/block/entity/SculkSensorBlockEntity/f_279626_ net/minecraft/world/level/block/entity/SculkSensorBlockEntity/vibrationListener +FD: net/minecraft/world/level/block/entity/SculkSensorBlockEntity$VibrationUser/f_279571_ net/minecraft/world/level/block/entity/SculkSensorBlockEntity$VibrationUser/this$0 +FD: net/minecraft/world/level/block/entity/SculkSensorBlockEntity$VibrationUser/f_279624_ net/minecraft/world/level/block/entity/SculkSensorBlockEntity$VibrationUser/LISTENER_RANGE +FD: net/minecraft/world/level/block/entity/SculkSensorBlockEntity$VibrationUser/f_279654_ net/minecraft/world/level/block/entity/SculkSensorBlockEntity$VibrationUser/blockPos +FD: net/minecraft/world/level/block/entity/SculkSensorBlockEntity$VibrationUser/f_279659_ net/minecraft/world/level/block/entity/SculkSensorBlockEntity$VibrationUser/positionSource +FD: net/minecraft/world/level/block/entity/SculkShriekerBlockEntity/f_222822_ net/minecraft/world/level/block/entity/SculkShriekerBlockEntity/LOGGER +FD: net/minecraft/world/level/block/entity/SculkShriekerBlockEntity/f_222824_ net/minecraft/world/level/block/entity/SculkShriekerBlockEntity/WARNING_SOUND_RADIUS +FD: net/minecraft/world/level/block/entity/SculkShriekerBlockEntity/f_222825_ net/minecraft/world/level/block/entity/SculkShriekerBlockEntity/WARDEN_SPAWN_ATTEMPTS +FD: net/minecraft/world/level/block/entity/SculkShriekerBlockEntity/f_222826_ net/minecraft/world/level/block/entity/SculkShriekerBlockEntity/WARDEN_SPAWN_RANGE_XZ +FD: net/minecraft/world/level/block/entity/SculkShriekerBlockEntity/f_222827_ net/minecraft/world/level/block/entity/SculkShriekerBlockEntity/WARDEN_SPAWN_RANGE_Y +FD: net/minecraft/world/level/block/entity/SculkShriekerBlockEntity/f_222828_ net/minecraft/world/level/block/entity/SculkShriekerBlockEntity/DARKNESS_RADIUS +FD: net/minecraft/world/level/block/entity/SculkShriekerBlockEntity/f_222829_ net/minecraft/world/level/block/entity/SculkShriekerBlockEntity/SOUND_BY_LEVEL +FD: net/minecraft/world/level/block/entity/SculkShriekerBlockEntity/f_222830_ net/minecraft/world/level/block/entity/SculkShriekerBlockEntity/SHRIEKING_TICKS +FD: net/minecraft/world/level/block/entity/SculkShriekerBlockEntity/f_222831_ net/minecraft/world/level/block/entity/SculkShriekerBlockEntity/warningLevel +FD: net/minecraft/world/level/block/entity/SculkShriekerBlockEntity/f_279562_ net/minecraft/world/level/block/entity/SculkShriekerBlockEntity/vibrationData +FD: net/minecraft/world/level/block/entity/SculkShriekerBlockEntity/f_279594_ net/minecraft/world/level/block/entity/SculkShriekerBlockEntity/vibrationUser +FD: net/minecraft/world/level/block/entity/SculkShriekerBlockEntity/f_279640_ net/minecraft/world/level/block/entity/SculkShriekerBlockEntity/vibrationListener +FD: net/minecraft/world/level/block/entity/SculkShriekerBlockEntity$VibrationUser/f_279601_ net/minecraft/world/level/block/entity/SculkShriekerBlockEntity$VibrationUser/this$0 +FD: net/minecraft/world/level/block/entity/SculkShriekerBlockEntity$VibrationUser/f_279639_ net/minecraft/world/level/block/entity/SculkShriekerBlockEntity$VibrationUser/positionSource +FD: net/minecraft/world/level/block/entity/SculkShriekerBlockEntity$VibrationUser/f_279648_ net/minecraft/world/level/block/entity/SculkShriekerBlockEntity$VibrationUser/LISTENER_RADIUS +FD: net/minecraft/world/level/block/entity/ShulkerBoxBlockEntity/f_155657_ net/minecraft/world/level/block/entity/ShulkerBoxBlockEntity/COLUMNS +FD: net/minecraft/world/level/block/entity/ShulkerBoxBlockEntity/f_155658_ net/minecraft/world/level/block/entity/ShulkerBoxBlockEntity/ROWS +FD: net/minecraft/world/level/block/entity/ShulkerBoxBlockEntity/f_155659_ net/minecraft/world/level/block/entity/ShulkerBoxBlockEntity/CONTAINER_SIZE +FD: net/minecraft/world/level/block/entity/ShulkerBoxBlockEntity/f_155660_ net/minecraft/world/level/block/entity/ShulkerBoxBlockEntity/EVENT_SET_OPEN_COUNT +FD: net/minecraft/world/level/block/entity/ShulkerBoxBlockEntity/f_155661_ net/minecraft/world/level/block/entity/ShulkerBoxBlockEntity/OPENING_TICK_LENGTH +FD: net/minecraft/world/level/block/entity/ShulkerBoxBlockEntity/f_155662_ net/minecraft/world/level/block/entity/ShulkerBoxBlockEntity/MAX_LID_HEIGHT +FD: net/minecraft/world/level/block/entity/ShulkerBoxBlockEntity/f_155663_ net/minecraft/world/level/block/entity/ShulkerBoxBlockEntity/MAX_LID_ROTATION +FD: net/minecraft/world/level/block/entity/ShulkerBoxBlockEntity/f_155664_ net/minecraft/world/level/block/entity/ShulkerBoxBlockEntity/ITEMS_TAG +FD: net/minecraft/world/level/block/entity/ShulkerBoxBlockEntity/f_59644_ net/minecraft/world/level/block/entity/ShulkerBoxBlockEntity/SLOTS +FD: net/minecraft/world/level/block/entity/ShulkerBoxBlockEntity/f_59645_ net/minecraft/world/level/block/entity/ShulkerBoxBlockEntity/itemStacks +FD: net/minecraft/world/level/block/entity/ShulkerBoxBlockEntity/f_59646_ net/minecraft/world/level/block/entity/ShulkerBoxBlockEntity/openCount +FD: net/minecraft/world/level/block/entity/ShulkerBoxBlockEntity/f_59647_ net/minecraft/world/level/block/entity/ShulkerBoxBlockEntity/animationStatus +FD: net/minecraft/world/level/block/entity/ShulkerBoxBlockEntity/f_59648_ net/minecraft/world/level/block/entity/ShulkerBoxBlockEntity/progress +FD: net/minecraft/world/level/block/entity/ShulkerBoxBlockEntity/f_59649_ net/minecraft/world/level/block/entity/ShulkerBoxBlockEntity/progressOld +FD: net/minecraft/world/level/block/entity/ShulkerBoxBlockEntity/f_59650_ net/minecraft/world/level/block/entity/ShulkerBoxBlockEntity/color +FD: net/minecraft/world/level/block/entity/ShulkerBoxBlockEntity$1/f_59705_ net/minecraft/world/level/block/entity/ShulkerBoxBlockEntity$1/$SwitchMap$net$minecraft$world$level$block$entity$ShulkerBoxBlockEntity$AnimationStatus +FD: net/minecraft/world/level/block/entity/ShulkerBoxBlockEntity$AnimationStatus/$VALUES net/minecraft/world/level/block/entity/ShulkerBoxBlockEntity$AnimationStatus/$VALUES +FD: net/minecraft/world/level/block/entity/ShulkerBoxBlockEntity$AnimationStatus/CLOSED net/minecraft/world/level/block/entity/ShulkerBoxBlockEntity$AnimationStatus/CLOSED +FD: net/minecraft/world/level/block/entity/ShulkerBoxBlockEntity$AnimationStatus/CLOSING net/minecraft/world/level/block/entity/ShulkerBoxBlockEntity$AnimationStatus/CLOSING +FD: net/minecraft/world/level/block/entity/ShulkerBoxBlockEntity$AnimationStatus/OPENED net/minecraft/world/level/block/entity/ShulkerBoxBlockEntity$AnimationStatus/OPENED +FD: net/minecraft/world/level/block/entity/ShulkerBoxBlockEntity$AnimationStatus/OPENING net/minecraft/world/level/block/entity/ShulkerBoxBlockEntity$AnimationStatus/OPENING +FD: net/minecraft/world/level/block/entity/SignBlockEntity/f_243840_ net/minecraft/world/level/block/entity/SignBlockEntity/MAX_TEXT_LINE_WIDTH +FD: net/minecraft/world/level/block/entity/SignBlockEntity/f_243968_ net/minecraft/world/level/block/entity/SignBlockEntity/TEXT_LINE_HEIGHT +FD: net/minecraft/world/level/block/entity/SignBlockEntity/f_276476_ net/minecraft/world/level/block/entity/SignBlockEntity/backText +FD: net/minecraft/world/level/block/entity/SignBlockEntity/f_276544_ net/minecraft/world/level/block/entity/SignBlockEntity/isWaxed +FD: net/minecraft/world/level/block/entity/SignBlockEntity/f_276598_ net/minecraft/world/level/block/entity/SignBlockEntity/frontText +FD: net/minecraft/world/level/block/entity/SignBlockEntity/f_276608_ net/minecraft/world/level/block/entity/SignBlockEntity/LOGGER +FD: net/minecraft/world/level/block/entity/SignBlockEntity/f_59722_ net/minecraft/world/level/block/entity/SignBlockEntity/playerWhoMayEdit +FD: net/minecraft/world/level/block/entity/SignText/f_276420_ net/minecraft/world/level/block/entity/SignText/hasGlowingText +FD: net/minecraft/world/level/block/entity/SignText/f_276467_ net/minecraft/world/level/block/entity/SignText/renderMessages +FD: net/minecraft/world/level/block/entity/SignText/f_276490_ net/minecraft/world/level/block/entity/SignText/LINES +FD: net/minecraft/world/level/block/entity/SignText/f_276558_ net/minecraft/world/level/block/entity/SignText/DIRECT_CODEC +FD: net/minecraft/world/level/block/entity/SignText/f_276587_ net/minecraft/world/level/block/entity/SignText/LINES_CODEC +FD: net/minecraft/world/level/block/entity/SignText/f_276590_ net/minecraft/world/level/block/entity/SignText/filteredMessages +FD: net/minecraft/world/level/block/entity/SignText/f_276632_ net/minecraft/world/level/block/entity/SignText/messages +FD: net/minecraft/world/level/block/entity/SignText/f_276669_ net/minecraft/world/level/block/entity/SignText/renderMessagedFiltered +FD: net/minecraft/world/level/block/entity/SignText/f_276673_ net/minecraft/world/level/block/entity/SignText/color +FD: net/minecraft/world/level/block/entity/SkullBlockEntity/f_155729_ net/minecraft/world/level/block/entity/SkullBlockEntity/TAG_SKULL_OWNER +FD: net/minecraft/world/level/block/entity/SkullBlockEntity/f_182457_ net/minecraft/world/level/block/entity/SkullBlockEntity/mainThreadExecutor +FD: net/minecraft/world/level/block/entity/SkullBlockEntity/f_260504_ net/minecraft/world/level/block/entity/SkullBlockEntity/animationTickCount +FD: net/minecraft/world/level/block/entity/SkullBlockEntity/f_260642_ net/minecraft/world/level/block/entity/SkullBlockEntity/isAnimating +FD: net/minecraft/world/level/block/entity/SkullBlockEntity/f_262238_ net/minecraft/world/level/block/entity/SkullBlockEntity/TAG_NOTE_BLOCK_SOUND +FD: net/minecraft/world/level/block/entity/SkullBlockEntity/f_262250_ net/minecraft/world/level/block/entity/SkullBlockEntity/noteBlockSound +FD: net/minecraft/world/level/block/entity/SkullBlockEntity/f_59755_ net/minecraft/world/level/block/entity/SkullBlockEntity/profileCache +FD: net/minecraft/world/level/block/entity/SkullBlockEntity/f_59756_ net/minecraft/world/level/block/entity/SkullBlockEntity/sessionService +FD: net/minecraft/world/level/block/entity/SkullBlockEntity/f_59757_ net/minecraft/world/level/block/entity/SkullBlockEntity/owner +FD: net/minecraft/world/level/block/entity/SpawnerBlockEntity/f_59788_ net/minecraft/world/level/block/entity/SpawnerBlockEntity/spawner +FD: net/minecraft/world/level/block/entity/SpawnerBlockEntity$1/f_59803_ net/minecraft/world/level/block/entity/SpawnerBlockEntity$1/this$0 +FD: net/minecraft/world/level/block/entity/StructureBlockEntity/f_155774_ net/minecraft/world/level/block/entity/StructureBlockEntity/MAX_OFFSET_PER_AXIS +FD: net/minecraft/world/level/block/entity/StructureBlockEntity/f_155775_ net/minecraft/world/level/block/entity/StructureBlockEntity/MAX_SIZE_PER_AXIS +FD: net/minecraft/world/level/block/entity/StructureBlockEntity/f_155776_ net/minecraft/world/level/block/entity/StructureBlockEntity/AUTHOR_TAG +FD: net/minecraft/world/level/block/entity/StructureBlockEntity/f_155777_ net/minecraft/world/level/block/entity/StructureBlockEntity/SCAN_CORNER_BLOCKS_RANGE +FD: net/minecraft/world/level/block/entity/StructureBlockEntity/f_59812_ net/minecraft/world/level/block/entity/StructureBlockEntity/structureName +FD: net/minecraft/world/level/block/entity/StructureBlockEntity/f_59813_ net/minecraft/world/level/block/entity/StructureBlockEntity/author +FD: net/minecraft/world/level/block/entity/StructureBlockEntity/f_59814_ net/minecraft/world/level/block/entity/StructureBlockEntity/metaData +FD: net/minecraft/world/level/block/entity/StructureBlockEntity/f_59815_ net/minecraft/world/level/block/entity/StructureBlockEntity/structurePos +FD: net/minecraft/world/level/block/entity/StructureBlockEntity/f_59816_ net/minecraft/world/level/block/entity/StructureBlockEntity/structureSize +FD: net/minecraft/world/level/block/entity/StructureBlockEntity/f_59817_ net/minecraft/world/level/block/entity/StructureBlockEntity/mirror +FD: net/minecraft/world/level/block/entity/StructureBlockEntity/f_59818_ net/minecraft/world/level/block/entity/StructureBlockEntity/rotation +FD: net/minecraft/world/level/block/entity/StructureBlockEntity/f_59819_ net/minecraft/world/level/block/entity/StructureBlockEntity/mode +FD: net/minecraft/world/level/block/entity/StructureBlockEntity/f_59820_ net/minecraft/world/level/block/entity/StructureBlockEntity/ignoreEntities +FD: net/minecraft/world/level/block/entity/StructureBlockEntity/f_59821_ net/minecraft/world/level/block/entity/StructureBlockEntity/powered +FD: net/minecraft/world/level/block/entity/StructureBlockEntity/f_59822_ net/minecraft/world/level/block/entity/StructureBlockEntity/showAir +FD: net/minecraft/world/level/block/entity/StructureBlockEntity/f_59823_ net/minecraft/world/level/block/entity/StructureBlockEntity/showBoundingBox +FD: net/minecraft/world/level/block/entity/StructureBlockEntity/f_59824_ net/minecraft/world/level/block/entity/StructureBlockEntity/integrity +FD: net/minecraft/world/level/block/entity/StructureBlockEntity/f_59825_ net/minecraft/world/level/block/entity/StructureBlockEntity/seed +FD: net/minecraft/world/level/block/entity/StructureBlockEntity$UpdateType/$VALUES net/minecraft/world/level/block/entity/StructureBlockEntity$UpdateType/$VALUES +FD: net/minecraft/world/level/block/entity/StructureBlockEntity$UpdateType/LOAD_AREA net/minecraft/world/level/block/entity/StructureBlockEntity$UpdateType/LOAD_AREA +FD: net/minecraft/world/level/block/entity/StructureBlockEntity$UpdateType/SAVE_AREA net/minecraft/world/level/block/entity/StructureBlockEntity$UpdateType/SAVE_AREA +FD: net/minecraft/world/level/block/entity/StructureBlockEntity$UpdateType/SCAN_AREA net/minecraft/world/level/block/entity/StructureBlockEntity$UpdateType/SCAN_AREA +FD: net/minecraft/world/level/block/entity/StructureBlockEntity$UpdateType/UPDATE_DATA net/minecraft/world/level/block/entity/StructureBlockEntity$UpdateType/UPDATE_DATA +FD: net/minecraft/world/level/block/entity/TheEndGatewayBlockEntity/f_155807_ net/minecraft/world/level/block/entity/TheEndGatewayBlockEntity/SPAWN_TIME +FD: net/minecraft/world/level/block/entity/TheEndGatewayBlockEntity/f_155808_ net/minecraft/world/level/block/entity/TheEndGatewayBlockEntity/COOLDOWN_TIME +FD: net/minecraft/world/level/block/entity/TheEndGatewayBlockEntity/f_155809_ net/minecraft/world/level/block/entity/TheEndGatewayBlockEntity/ATTENTION_INTERVAL +FD: net/minecraft/world/level/block/entity/TheEndGatewayBlockEntity/f_155810_ net/minecraft/world/level/block/entity/TheEndGatewayBlockEntity/EVENT_COOLDOWN +FD: net/minecraft/world/level/block/entity/TheEndGatewayBlockEntity/f_155811_ net/minecraft/world/level/block/entity/TheEndGatewayBlockEntity/GATEWAY_HEIGHT_ABOVE_SURFACE +FD: net/minecraft/world/level/block/entity/TheEndGatewayBlockEntity/f_59925_ net/minecraft/world/level/block/entity/TheEndGatewayBlockEntity/LOGGER +FD: net/minecraft/world/level/block/entity/TheEndGatewayBlockEntity/f_59926_ net/minecraft/world/level/block/entity/TheEndGatewayBlockEntity/age +FD: net/minecraft/world/level/block/entity/TheEndGatewayBlockEntity/f_59927_ net/minecraft/world/level/block/entity/TheEndGatewayBlockEntity/teleportCooldown +FD: net/minecraft/world/level/block/entity/TheEndGatewayBlockEntity/f_59928_ net/minecraft/world/level/block/entity/TheEndGatewayBlockEntity/exitPortal +FD: net/minecraft/world/level/block/entity/TheEndGatewayBlockEntity/f_59929_ net/minecraft/world/level/block/entity/TheEndGatewayBlockEntity/exactTeleport +FD: net/minecraft/world/level/block/grower/MangroveTreeGrower/f_222931_ net/minecraft/world/level/block/grower/MangroveTreeGrower/tallProbability +FD: net/minecraft/world/level/block/piston/MovingPistonBlock/f_60046_ net/minecraft/world/level/block/piston/MovingPistonBlock/FACING +FD: net/minecraft/world/level/block/piston/MovingPistonBlock/f_60047_ net/minecraft/world/level/block/piston/MovingPistonBlock/TYPE +FD: net/minecraft/world/level/block/piston/PistonBaseBlock/f_155888_ net/minecraft/world/level/block/piston/PistonBaseBlock/TRIGGER_EXTEND +FD: net/minecraft/world/level/block/piston/PistonBaseBlock/f_155889_ net/minecraft/world/level/block/piston/PistonBaseBlock/TRIGGER_CONTRACT +FD: net/minecraft/world/level/block/piston/PistonBaseBlock/f_155890_ net/minecraft/world/level/block/piston/PistonBaseBlock/TRIGGER_DROP +FD: net/minecraft/world/level/block/piston/PistonBaseBlock/f_155891_ net/minecraft/world/level/block/piston/PistonBaseBlock/PLATFORM_THICKNESS +FD: net/minecraft/world/level/block/piston/PistonBaseBlock/f_60153_ net/minecraft/world/level/block/piston/PistonBaseBlock/EXTENDED +FD: net/minecraft/world/level/block/piston/PistonBaseBlock/f_60154_ net/minecraft/world/level/block/piston/PistonBaseBlock/EAST_AABB +FD: net/minecraft/world/level/block/piston/PistonBaseBlock/f_60155_ net/minecraft/world/level/block/piston/PistonBaseBlock/WEST_AABB +FD: net/minecraft/world/level/block/piston/PistonBaseBlock/f_60156_ net/minecraft/world/level/block/piston/PistonBaseBlock/SOUTH_AABB +FD: net/minecraft/world/level/block/piston/PistonBaseBlock/f_60157_ net/minecraft/world/level/block/piston/PistonBaseBlock/NORTH_AABB +FD: net/minecraft/world/level/block/piston/PistonBaseBlock/f_60158_ net/minecraft/world/level/block/piston/PistonBaseBlock/UP_AABB +FD: net/minecraft/world/level/block/piston/PistonBaseBlock/f_60159_ net/minecraft/world/level/block/piston/PistonBaseBlock/DOWN_AABB +FD: net/minecraft/world/level/block/piston/PistonBaseBlock/f_60160_ net/minecraft/world/level/block/piston/PistonBaseBlock/isSticky +FD: net/minecraft/world/level/block/piston/PistonBaseBlock$1/f_60232_ net/minecraft/world/level/block/piston/PistonBaseBlock$1/$SwitchMap$net$minecraft$core$Direction +FD: net/minecraft/world/level/block/piston/PistonBaseBlock$1/f_60233_ net/minecraft/world/level/block/piston/PistonBaseBlock$1/$SwitchMap$net$minecraft$world$level$material$PushReaction +FD: net/minecraft/world/level/block/piston/PistonHeadBlock/f_155892_ net/minecraft/world/level/block/piston/PistonHeadBlock/PLATFORM +FD: net/minecraft/world/level/block/piston/PistonHeadBlock/f_155893_ net/minecraft/world/level/block/piston/PistonHeadBlock/AABB_OFFSET +FD: net/minecraft/world/level/block/piston/PistonHeadBlock/f_155894_ net/minecraft/world/level/block/piston/PistonHeadBlock/EDGE_MIN +FD: net/minecraft/world/level/block/piston/PistonHeadBlock/f_155895_ net/minecraft/world/level/block/piston/PistonHeadBlock/EDGE_MAX +FD: net/minecraft/world/level/block/piston/PistonHeadBlock/f_60235_ net/minecraft/world/level/block/piston/PistonHeadBlock/TYPE +FD: net/minecraft/world/level/block/piston/PistonHeadBlock/f_60236_ net/minecraft/world/level/block/piston/PistonHeadBlock/SHORT +FD: net/minecraft/world/level/block/piston/PistonHeadBlock/f_60237_ net/minecraft/world/level/block/piston/PistonHeadBlock/EAST_AABB +FD: net/minecraft/world/level/block/piston/PistonHeadBlock/f_60238_ net/minecraft/world/level/block/piston/PistonHeadBlock/WEST_AABB +FD: net/minecraft/world/level/block/piston/PistonHeadBlock/f_60239_ net/minecraft/world/level/block/piston/PistonHeadBlock/SOUTH_AABB +FD: net/minecraft/world/level/block/piston/PistonHeadBlock/f_60240_ net/minecraft/world/level/block/piston/PistonHeadBlock/NORTH_AABB +FD: net/minecraft/world/level/block/piston/PistonHeadBlock/f_60241_ net/minecraft/world/level/block/piston/PistonHeadBlock/UP_AABB +FD: net/minecraft/world/level/block/piston/PistonHeadBlock/f_60242_ net/minecraft/world/level/block/piston/PistonHeadBlock/DOWN_AABB +FD: net/minecraft/world/level/block/piston/PistonHeadBlock/f_60243_ net/minecraft/world/level/block/piston/PistonHeadBlock/UP_ARM_AABB +FD: net/minecraft/world/level/block/piston/PistonHeadBlock/f_60244_ net/minecraft/world/level/block/piston/PistonHeadBlock/DOWN_ARM_AABB +FD: net/minecraft/world/level/block/piston/PistonHeadBlock/f_60245_ net/minecraft/world/level/block/piston/PistonHeadBlock/SOUTH_ARM_AABB +FD: net/minecraft/world/level/block/piston/PistonHeadBlock/f_60246_ net/minecraft/world/level/block/piston/PistonHeadBlock/NORTH_ARM_AABB +FD: net/minecraft/world/level/block/piston/PistonHeadBlock/f_60247_ net/minecraft/world/level/block/piston/PistonHeadBlock/EAST_ARM_AABB +FD: net/minecraft/world/level/block/piston/PistonHeadBlock/f_60248_ net/minecraft/world/level/block/piston/PistonHeadBlock/WEST_ARM_AABB +FD: net/minecraft/world/level/block/piston/PistonHeadBlock/f_60249_ net/minecraft/world/level/block/piston/PistonHeadBlock/SHORT_UP_ARM_AABB +FD: net/minecraft/world/level/block/piston/PistonHeadBlock/f_60250_ net/minecraft/world/level/block/piston/PistonHeadBlock/SHORT_DOWN_ARM_AABB +FD: net/minecraft/world/level/block/piston/PistonHeadBlock/f_60251_ net/minecraft/world/level/block/piston/PistonHeadBlock/SHORT_SOUTH_ARM_AABB +FD: net/minecraft/world/level/block/piston/PistonHeadBlock/f_60252_ net/minecraft/world/level/block/piston/PistonHeadBlock/SHORT_NORTH_ARM_AABB +FD: net/minecraft/world/level/block/piston/PistonHeadBlock/f_60253_ net/minecraft/world/level/block/piston/PistonHeadBlock/SHORT_EAST_ARM_AABB +FD: net/minecraft/world/level/block/piston/PistonHeadBlock/f_60254_ net/minecraft/world/level/block/piston/PistonHeadBlock/SHORT_WEST_ARM_AABB +FD: net/minecraft/world/level/block/piston/PistonHeadBlock/f_60255_ net/minecraft/world/level/block/piston/PistonHeadBlock/SHAPES_SHORT +FD: net/minecraft/world/level/block/piston/PistonHeadBlock/f_60256_ net/minecraft/world/level/block/piston/PistonHeadBlock/SHAPES_LONG +FD: net/minecraft/world/level/block/piston/PistonHeadBlock$1/f_60326_ net/minecraft/world/level/block/piston/PistonHeadBlock$1/$SwitchMap$net$minecraft$core$Direction +FD: net/minecraft/world/level/block/piston/PistonMath$1/f_60332_ net/minecraft/world/level/block/piston/PistonMath$1/$SwitchMap$net$minecraft$core$Direction +FD: net/minecraft/world/level/block/piston/PistonMovingBlockEntity/f_155897_ net/minecraft/world/level/block/piston/PistonMovingBlockEntity/TICK_MOVEMENT +FD: net/minecraft/world/level/block/piston/PistonMovingBlockEntity/f_155898_ net/minecraft/world/level/block/piston/PistonMovingBlockEntity/TICKS_TO_EXTEND +FD: net/minecraft/world/level/block/piston/PistonMovingBlockEntity/f_155899_ net/minecraft/world/level/block/piston/PistonMovingBlockEntity/PUSH_OFFSET +FD: net/minecraft/world/level/block/piston/PistonMovingBlockEntity/f_60334_ net/minecraft/world/level/block/piston/PistonMovingBlockEntity/movedState +FD: net/minecraft/world/level/block/piston/PistonMovingBlockEntity/f_60335_ net/minecraft/world/level/block/piston/PistonMovingBlockEntity/direction +FD: net/minecraft/world/level/block/piston/PistonMovingBlockEntity/f_60336_ net/minecraft/world/level/block/piston/PistonMovingBlockEntity/extending +FD: net/minecraft/world/level/block/piston/PistonMovingBlockEntity/f_60337_ net/minecraft/world/level/block/piston/PistonMovingBlockEntity/isSourcePiston +FD: net/minecraft/world/level/block/piston/PistonMovingBlockEntity/f_60338_ net/minecraft/world/level/block/piston/PistonMovingBlockEntity/NOCLIP +FD: net/minecraft/world/level/block/piston/PistonMovingBlockEntity/f_60339_ net/minecraft/world/level/block/piston/PistonMovingBlockEntity/progress +FD: net/minecraft/world/level/block/piston/PistonMovingBlockEntity/f_60340_ net/minecraft/world/level/block/piston/PistonMovingBlockEntity/progressO +FD: net/minecraft/world/level/block/piston/PistonMovingBlockEntity/f_60341_ net/minecraft/world/level/block/piston/PistonMovingBlockEntity/lastTicked +FD: net/minecraft/world/level/block/piston/PistonMovingBlockEntity/f_60342_ net/minecraft/world/level/block/piston/PistonMovingBlockEntity/deathTicks +FD: net/minecraft/world/level/block/piston/PistonMovingBlockEntity$1/f_60406_ net/minecraft/world/level/block/piston/PistonMovingBlockEntity$1/$SwitchMap$net$minecraft$core$Direction$Axis +FD: net/minecraft/world/level/block/piston/PistonMovingBlockEntity$1/f_60407_ net/minecraft/world/level/block/piston/PistonMovingBlockEntity$1/$SwitchMap$net$minecraft$core$Direction +FD: net/minecraft/world/level/block/piston/PistonStructureResolver/f_155936_ net/minecraft/world/level/block/piston/PistonStructureResolver/MAX_PUSH_DEPTH +FD: net/minecraft/world/level/block/piston/PistonStructureResolver/f_60409_ net/minecraft/world/level/block/piston/PistonStructureResolver/level +FD: net/minecraft/world/level/block/piston/PistonStructureResolver/f_60410_ net/minecraft/world/level/block/piston/PistonStructureResolver/pistonPos +FD: net/minecraft/world/level/block/piston/PistonStructureResolver/f_60411_ net/minecraft/world/level/block/piston/PistonStructureResolver/extending +FD: net/minecraft/world/level/block/piston/PistonStructureResolver/f_60412_ net/minecraft/world/level/block/piston/PistonStructureResolver/startPos +FD: net/minecraft/world/level/block/piston/PistonStructureResolver/f_60413_ net/minecraft/world/level/block/piston/PistonStructureResolver/pushDirection +FD: net/minecraft/world/level/block/piston/PistonStructureResolver/f_60414_ net/minecraft/world/level/block/piston/PistonStructureResolver/toPush +FD: net/minecraft/world/level/block/piston/PistonStructureResolver/f_60415_ net/minecraft/world/level/block/piston/PistonStructureResolver/toDestroy +FD: net/minecraft/world/level/block/piston/PistonStructureResolver/f_60416_ net/minecraft/world/level/block/piston/PistonStructureResolver/pistonDirection +FD: net/minecraft/world/level/block/state/BlockBehaviour/f_243733_ net/minecraft/world/level/block/state/BlockBehaviour/requiredFeatures +FD: net/minecraft/world/level/block/state/BlockBehaviour/f_60438_ net/minecraft/world/level/block/state/BlockBehaviour/dynamicShape +FD: net/minecraft/world/level/block/state/BlockBehaviour/f_60439_ net/minecraft/world/level/block/state/BlockBehaviour/properties +FD: net/minecraft/world/level/block/state/BlockBehaviour/f_60440_ net/minecraft/world/level/block/state/BlockBehaviour/drops +FD: net/minecraft/world/level/block/state/BlockBehaviour/f_60441_ net/minecraft/world/level/block/state/BlockBehaviour/UPDATE_SHAPE_ORDER +FD: net/minecraft/world/level/block/state/BlockBehaviour/f_60443_ net/minecraft/world/level/block/state/BlockBehaviour/hasCollision +FD: net/minecraft/world/level/block/state/BlockBehaviour/f_60444_ net/minecraft/world/level/block/state/BlockBehaviour/explosionResistance +FD: net/minecraft/world/level/block/state/BlockBehaviour/f_60445_ net/minecraft/world/level/block/state/BlockBehaviour/isRandomlyTicking +FD: net/minecraft/world/level/block/state/BlockBehaviour/f_60446_ net/minecraft/world/level/block/state/BlockBehaviour/soundType +FD: net/minecraft/world/level/block/state/BlockBehaviour/f_60447_ net/minecraft/world/level/block/state/BlockBehaviour/friction +FD: net/minecraft/world/level/block/state/BlockBehaviour/f_60448_ net/minecraft/world/level/block/state/BlockBehaviour/speedFactor +FD: net/minecraft/world/level/block/state/BlockBehaviour/f_60449_ net/minecraft/world/level/block/state/BlockBehaviour/jumpFactor +FD: net/minecraft/world/level/block/state/BlockBehaviour$1/f_271377_ net/minecraft/world/level/block/state/BlockBehaviour$1/$SwitchMap$net$minecraft$world$level$block$state$BlockBehaviour$OffsetType +FD: net/minecraft/world/level/block/state/BlockBehaviour$1/f_60591_ net/minecraft/world/level/block/state/BlockBehaviour$1/$SwitchMap$net$minecraft$world$level$pathfinder$PathComputationType +FD: net/minecraft/world/level/block/state/BlockBehaviour$BlockStateBase/f_243896_ net/minecraft/world/level/block/state/BlockBehaviour$BlockStateBase/fluidState +FD: net/minecraft/world/level/block/state/BlockBehaviour$BlockStateBase/f_244227_ net/minecraft/world/level/block/state/BlockBehaviour$BlockStateBase/isRandomlyTicking +FD: net/minecraft/world/level/block/state/BlockBehaviour$BlockStateBase/f_244264_ net/minecraft/world/level/block/state/BlockBehaviour$BlockStateBase/spawnParticlesOnBreak +FD: net/minecraft/world/level/block/state/BlockBehaviour$BlockStateBase/f_271099_ net/minecraft/world/level/block/state/BlockBehaviour$BlockStateBase/offsetFunction +FD: net/minecraft/world/level/block/state/BlockBehaviour$BlockStateBase/f_278120_ net/minecraft/world/level/block/state/BlockBehaviour$BlockStateBase/ignitedByLava +FD: net/minecraft/world/level/block/state/BlockBehaviour$BlockStateBase/f_278134_ net/minecraft/world/level/block/state/BlockBehaviour$BlockStateBase/pushReaction +FD: net/minecraft/world/level/block/state/BlockBehaviour$BlockStateBase/f_278472_ net/minecraft/world/level/block/state/BlockBehaviour$BlockStateBase/liquid +FD: net/minecraft/world/level/block/state/BlockBehaviour$BlockStateBase/f_279551_ net/minecraft/world/level/block/state/BlockBehaviour$BlockStateBase/legacySolid +FD: net/minecraft/world/level/block/state/BlockBehaviour$BlockStateBase/f_279615_ net/minecraft/world/level/block/state/BlockBehaviour$BlockStateBase/replaceable +FD: net/minecraft/world/level/block/state/BlockBehaviour$BlockStateBase/f_279617_ net/minecraft/world/level/block/state/BlockBehaviour$BlockStateBase/instrument +FD: net/minecraft/world/level/block/state/BlockBehaviour$BlockStateBase/f_283893_ net/minecraft/world/level/block/state/BlockBehaviour$BlockStateBase/mapColor +FD: net/minecraft/world/level/block/state/BlockBehaviour$BlockStateBase/f_60593_ net/minecraft/world/level/block/state/BlockBehaviour$BlockStateBase/cache +FD: net/minecraft/world/level/block/state/BlockBehaviour$BlockStateBase/f_60594_ net/minecraft/world/level/block/state/BlockBehaviour$BlockStateBase/lightEmission +FD: net/minecraft/world/level/block/state/BlockBehaviour$BlockStateBase/f_60595_ net/minecraft/world/level/block/state/BlockBehaviour$BlockStateBase/useShapeForLightOcclusion +FD: net/minecraft/world/level/block/state/BlockBehaviour$BlockStateBase/f_60596_ net/minecraft/world/level/block/state/BlockBehaviour$BlockStateBase/isAir +FD: net/minecraft/world/level/block/state/BlockBehaviour$BlockStateBase/f_60599_ net/minecraft/world/level/block/state/BlockBehaviour$BlockStateBase/destroySpeed +FD: net/minecraft/world/level/block/state/BlockBehaviour$BlockStateBase/f_60600_ net/minecraft/world/level/block/state/BlockBehaviour$BlockStateBase/requiresCorrectToolForDrops +FD: net/minecraft/world/level/block/state/BlockBehaviour$BlockStateBase/f_60601_ net/minecraft/world/level/block/state/BlockBehaviour$BlockStateBase/canOcclude +FD: net/minecraft/world/level/block/state/BlockBehaviour$BlockStateBase/f_60602_ net/minecraft/world/level/block/state/BlockBehaviour$BlockStateBase/isRedstoneConductor +FD: net/minecraft/world/level/block/state/BlockBehaviour$BlockStateBase/f_60603_ net/minecraft/world/level/block/state/BlockBehaviour$BlockStateBase/isSuffocating +FD: net/minecraft/world/level/block/state/BlockBehaviour$BlockStateBase/f_60604_ net/minecraft/world/level/block/state/BlockBehaviour$BlockStateBase/isViewBlocking +FD: net/minecraft/world/level/block/state/BlockBehaviour$BlockStateBase/f_60605_ net/minecraft/world/level/block/state/BlockBehaviour$BlockStateBase/hasPostProcess +FD: net/minecraft/world/level/block/state/BlockBehaviour$BlockStateBase/f_60606_ net/minecraft/world/level/block/state/BlockBehaviour$BlockStateBase/emissiveRendering +FD: net/minecraft/world/level/block/state/BlockBehaviour$BlockStateBase$Cache/f_60841_ net/minecraft/world/level/block/state/BlockBehaviour$BlockStateBase$Cache/solidRender +FD: net/minecraft/world/level/block/state/BlockBehaviour$BlockStateBase$Cache/f_60842_ net/minecraft/world/level/block/state/BlockBehaviour$BlockStateBase$Cache/collisionShape +FD: net/minecraft/world/level/block/state/BlockBehaviour$BlockStateBase$Cache/f_60843_ net/minecraft/world/level/block/state/BlockBehaviour$BlockStateBase$Cache/largeCollisionShape +FD: net/minecraft/world/level/block/state/BlockBehaviour$BlockStateBase$Cache/f_60844_ net/minecraft/world/level/block/state/BlockBehaviour$BlockStateBase$Cache/isCollisionShapeFullBlock +FD: net/minecraft/world/level/block/state/BlockBehaviour$BlockStateBase$Cache/f_60845_ net/minecraft/world/level/block/state/BlockBehaviour$BlockStateBase$Cache/DIRECTIONS +FD: net/minecraft/world/level/block/state/BlockBehaviour$BlockStateBase$Cache/f_60846_ net/minecraft/world/level/block/state/BlockBehaviour$BlockStateBase$Cache/SUPPORT_TYPE_COUNT +FD: net/minecraft/world/level/block/state/BlockBehaviour$BlockStateBase$Cache/f_60847_ net/minecraft/world/level/block/state/BlockBehaviour$BlockStateBase$Cache/propagatesSkylightDown +FD: net/minecraft/world/level/block/state/BlockBehaviour$BlockStateBase$Cache/f_60848_ net/minecraft/world/level/block/state/BlockBehaviour$BlockStateBase$Cache/lightBlock +FD: net/minecraft/world/level/block/state/BlockBehaviour$BlockStateBase$Cache/f_60849_ net/minecraft/world/level/block/state/BlockBehaviour$BlockStateBase$Cache/occlusionShapes +FD: net/minecraft/world/level/block/state/BlockBehaviour$BlockStateBase$Cache/f_60850_ net/minecraft/world/level/block/state/BlockBehaviour$BlockStateBase$Cache/faceSturdy +FD: net/minecraft/world/level/block/state/BlockBehaviour$OffsetType/$VALUES net/minecraft/world/level/block/state/BlockBehaviour$OffsetType/$VALUES +FD: net/minecraft/world/level/block/state/BlockBehaviour$OffsetType/NONE net/minecraft/world/level/block/state/BlockBehaviour$OffsetType/NONE +FD: net/minecraft/world/level/block/state/BlockBehaviour$OffsetType/XYZ net/minecraft/world/level/block/state/BlockBehaviour$OffsetType/XYZ +FD: net/minecraft/world/level/block/state/BlockBehaviour$OffsetType/XZ net/minecraft/world/level/block/state/BlockBehaviour$OffsetType/XZ +FD: net/minecraft/world/level/block/state/BlockBehaviour$Properties/f_243850_ net/minecraft/world/level/block/state/BlockBehaviour$Properties/spawnParticlesOnBreak +FD: net/minecraft/world/level/block/state/BlockBehaviour$Properties/f_244138_ net/minecraft/world/level/block/state/BlockBehaviour$Properties/requiredFeatures +FD: net/minecraft/world/level/block/state/BlockBehaviour$Properties/f_271289_ net/minecraft/world/level/block/state/BlockBehaviour$Properties/offsetFunction +FD: net/minecraft/world/level/block/state/BlockBehaviour$Properties/f_278123_ net/minecraft/world/level/block/state/BlockBehaviour$Properties/ignitedByLava +FD: net/minecraft/world/level/block/state/BlockBehaviour$Properties/f_278130_ net/minecraft/world/level/block/state/BlockBehaviour$Properties/pushReaction +FD: net/minecraft/world/level/block/state/BlockBehaviour$Properties/f_278418_ net/minecraft/world/level/block/state/BlockBehaviour$Properties/liquid +FD: net/minecraft/world/level/block/state/BlockBehaviour$Properties/f_279538_ net/minecraft/world/level/block/state/BlockBehaviour$Properties/instrument +FD: net/minecraft/world/level/block/state/BlockBehaviour$Properties/f_279618_ net/minecraft/world/level/block/state/BlockBehaviour$Properties/forceSolidOn +FD: net/minecraft/world/level/block/state/BlockBehaviour$Properties/f_279630_ net/minecraft/world/level/block/state/BlockBehaviour$Properties/replaceable +FD: net/minecraft/world/level/block/state/BlockBehaviour$Properties/f_279665_ net/minecraft/world/level/block/state/BlockBehaviour$Properties/forceSolidOff +FD: net/minecraft/world/level/block/state/BlockBehaviour$Properties/f_283880_ net/minecraft/world/level/block/state/BlockBehaviour$Properties/mapColor +FD: net/minecraft/world/level/block/state/BlockBehaviour$Properties/f_60884_ net/minecraft/world/level/block/state/BlockBehaviour$Properties/hasCollision +FD: net/minecraft/world/level/block/state/BlockBehaviour$Properties/f_60885_ net/minecraft/world/level/block/state/BlockBehaviour$Properties/soundType +FD: net/minecraft/world/level/block/state/BlockBehaviour$Properties/f_60886_ net/minecraft/world/level/block/state/BlockBehaviour$Properties/lightEmission +FD: net/minecraft/world/level/block/state/BlockBehaviour$Properties/f_60887_ net/minecraft/world/level/block/state/BlockBehaviour$Properties/explosionResistance +FD: net/minecraft/world/level/block/state/BlockBehaviour$Properties/f_60888_ net/minecraft/world/level/block/state/BlockBehaviour$Properties/destroyTime +FD: net/minecraft/world/level/block/state/BlockBehaviour$Properties/f_60889_ net/minecraft/world/level/block/state/BlockBehaviour$Properties/requiresCorrectToolForDrops +FD: net/minecraft/world/level/block/state/BlockBehaviour$Properties/f_60890_ net/minecraft/world/level/block/state/BlockBehaviour$Properties/isRandomlyTicking +FD: net/minecraft/world/level/block/state/BlockBehaviour$Properties/f_60891_ net/minecraft/world/level/block/state/BlockBehaviour$Properties/friction +FD: net/minecraft/world/level/block/state/BlockBehaviour$Properties/f_60892_ net/minecraft/world/level/block/state/BlockBehaviour$Properties/speedFactor +FD: net/minecraft/world/level/block/state/BlockBehaviour$Properties/f_60893_ net/minecraft/world/level/block/state/BlockBehaviour$Properties/jumpFactor +FD: net/minecraft/world/level/block/state/BlockBehaviour$Properties/f_60894_ net/minecraft/world/level/block/state/BlockBehaviour$Properties/drops +FD: net/minecraft/world/level/block/state/BlockBehaviour$Properties/f_60895_ net/minecraft/world/level/block/state/BlockBehaviour$Properties/canOcclude +FD: net/minecraft/world/level/block/state/BlockBehaviour$Properties/f_60896_ net/minecraft/world/level/block/state/BlockBehaviour$Properties/isAir +FD: net/minecraft/world/level/block/state/BlockBehaviour$Properties/f_60897_ net/minecraft/world/level/block/state/BlockBehaviour$Properties/isValidSpawn +FD: net/minecraft/world/level/block/state/BlockBehaviour$Properties/f_60898_ net/minecraft/world/level/block/state/BlockBehaviour$Properties/isRedstoneConductor +FD: net/minecraft/world/level/block/state/BlockBehaviour$Properties/f_60899_ net/minecraft/world/level/block/state/BlockBehaviour$Properties/isSuffocating +FD: net/minecraft/world/level/block/state/BlockBehaviour$Properties/f_60900_ net/minecraft/world/level/block/state/BlockBehaviour$Properties/isViewBlocking +FD: net/minecraft/world/level/block/state/BlockBehaviour$Properties/f_60901_ net/minecraft/world/level/block/state/BlockBehaviour$Properties/hasPostProcess +FD: net/minecraft/world/level/block/state/BlockBehaviour$Properties/f_60902_ net/minecraft/world/level/block/state/BlockBehaviour$Properties/emissiveRendering +FD: net/minecraft/world/level/block/state/BlockBehaviour$Properties/f_60903_ net/minecraft/world/level/block/state/BlockBehaviour$Properties/dynamicShape +FD: net/minecraft/world/level/block/state/BlockState/f_61039_ net/minecraft/world/level/block/state/BlockState/CODEC +FD: net/minecraft/world/level/block/state/StateDefinition/f_61046_ net/minecraft/world/level/block/state/StateDefinition/NAME_PATTERN +FD: net/minecraft/world/level/block/state/StateDefinition/f_61047_ net/minecraft/world/level/block/state/StateDefinition/owner +FD: net/minecraft/world/level/block/state/StateDefinition/f_61048_ net/minecraft/world/level/block/state/StateDefinition/propertiesByName +FD: net/minecraft/world/level/block/state/StateDefinition/f_61049_ net/minecraft/world/level/block/state/StateDefinition/states +FD: net/minecraft/world/level/block/state/StateDefinition$Builder/f_61095_ net/minecraft/world/level/block/state/StateDefinition$Builder/owner +FD: net/minecraft/world/level/block/state/StateDefinition$Builder/f_61096_ net/minecraft/world/level/block/state/StateDefinition$Builder/properties +FD: net/minecraft/world/level/block/state/StateHolder/f_155962_ net/minecraft/world/level/block/state/StateHolder/NAME_TAG +FD: net/minecraft/world/level/block/state/StateHolder/f_155963_ net/minecraft/world/level/block/state/StateHolder/PROPERTIES_TAG +FD: net/minecraft/world/level/block/state/StateHolder/f_61110_ net/minecraft/world/level/block/state/StateHolder/PROPERTY_ENTRY_TO_STRING_FUNCTION +FD: net/minecraft/world/level/block/state/StateHolder/f_61111_ net/minecraft/world/level/block/state/StateHolder/values +FD: net/minecraft/world/level/block/state/StateHolder/f_61112_ net/minecraft/world/level/block/state/StateHolder/owner +FD: net/minecraft/world/level/block/state/StateHolder/f_61113_ net/minecraft/world/level/block/state/StateHolder/propertiesCodec +FD: net/minecraft/world/level/block/state/StateHolder/f_61114_ net/minecraft/world/level/block/state/StateHolder/neighbours +FD: net/minecraft/world/level/block/state/pattern/BlockInWorld/f_61158_ net/minecraft/world/level/block/state/pattern/BlockInWorld/level +FD: net/minecraft/world/level/block/state/pattern/BlockInWorld/f_61159_ net/minecraft/world/level/block/state/pattern/BlockInWorld/pos +FD: net/minecraft/world/level/block/state/pattern/BlockInWorld/f_61160_ net/minecraft/world/level/block/state/pattern/BlockInWorld/loadChunks +FD: net/minecraft/world/level/block/state/pattern/BlockInWorld/f_61161_ net/minecraft/world/level/block/state/pattern/BlockInWorld/state +FD: net/minecraft/world/level/block/state/pattern/BlockInWorld/f_61162_ net/minecraft/world/level/block/state/pattern/BlockInWorld/entity +FD: net/minecraft/world/level/block/state/pattern/BlockInWorld/f_61163_ net/minecraft/world/level/block/state/pattern/BlockInWorld/cachedEntity +FD: net/minecraft/world/level/block/state/pattern/BlockPattern/f_61177_ net/minecraft/world/level/block/state/pattern/BlockPattern/pattern +FD: net/minecraft/world/level/block/state/pattern/BlockPattern/f_61178_ net/minecraft/world/level/block/state/pattern/BlockPattern/depth +FD: net/minecraft/world/level/block/state/pattern/BlockPattern/f_61179_ net/minecraft/world/level/block/state/pattern/BlockPattern/height +FD: net/minecraft/world/level/block/state/pattern/BlockPattern/f_61180_ net/minecraft/world/level/block/state/pattern/BlockPattern/width +FD: net/minecraft/world/level/block/state/pattern/BlockPattern$BlockCacheLoader/f_61204_ net/minecraft/world/level/block/state/pattern/BlockPattern$BlockCacheLoader/level +FD: net/minecraft/world/level/block/state/pattern/BlockPattern$BlockCacheLoader/f_61205_ net/minecraft/world/level/block/state/pattern/BlockPattern$BlockCacheLoader/loadChunks +FD: net/minecraft/world/level/block/state/pattern/BlockPattern$BlockPatternMatch/f_61213_ net/minecraft/world/level/block/state/pattern/BlockPattern$BlockPatternMatch/frontTopLeft +FD: net/minecraft/world/level/block/state/pattern/BlockPattern$BlockPatternMatch/f_61214_ net/minecraft/world/level/block/state/pattern/BlockPattern$BlockPatternMatch/forwards +FD: net/minecraft/world/level/block/state/pattern/BlockPattern$BlockPatternMatch/f_61215_ net/minecraft/world/level/block/state/pattern/BlockPattern$BlockPatternMatch/up +FD: net/minecraft/world/level/block/state/pattern/BlockPattern$BlockPatternMatch/f_61216_ net/minecraft/world/level/block/state/pattern/BlockPattern$BlockPatternMatch/cache +FD: net/minecraft/world/level/block/state/pattern/BlockPattern$BlockPatternMatch/f_61217_ net/minecraft/world/level/block/state/pattern/BlockPattern$BlockPatternMatch/width +FD: net/minecraft/world/level/block/state/pattern/BlockPattern$BlockPatternMatch/f_61218_ net/minecraft/world/level/block/state/pattern/BlockPattern$BlockPatternMatch/height +FD: net/minecraft/world/level/block/state/pattern/BlockPattern$BlockPatternMatch/f_61219_ net/minecraft/world/level/block/state/pattern/BlockPattern$BlockPatternMatch/depth +FD: net/minecraft/world/level/block/state/pattern/BlockPatternBuilder/f_61236_ net/minecraft/world/level/block/state/pattern/BlockPatternBuilder/COMMA_JOINED +FD: net/minecraft/world/level/block/state/pattern/BlockPatternBuilder/f_61237_ net/minecraft/world/level/block/state/pattern/BlockPatternBuilder/pattern +FD: net/minecraft/world/level/block/state/pattern/BlockPatternBuilder/f_61238_ net/minecraft/world/level/block/state/pattern/BlockPatternBuilder/lookup +FD: net/minecraft/world/level/block/state/pattern/BlockPatternBuilder/f_61239_ net/minecraft/world/level/block/state/pattern/BlockPatternBuilder/height +FD: net/minecraft/world/level/block/state/pattern/BlockPatternBuilder/f_61240_ net/minecraft/world/level/block/state/pattern/BlockPatternBuilder/width +FD: net/minecraft/world/level/block/state/predicate/BlockPredicate/f_61272_ net/minecraft/world/level/block/state/predicate/BlockPredicate/block +FD: net/minecraft/world/level/block/state/predicate/BlockStatePredicate/f_61281_ net/minecraft/world/level/block/state/predicate/BlockStatePredicate/ANY +FD: net/minecraft/world/level/block/state/predicate/BlockStatePredicate/f_61282_ net/minecraft/world/level/block/state/predicate/BlockStatePredicate/definition +FD: net/minecraft/world/level/block/state/predicate/BlockStatePredicate/f_61283_ net/minecraft/world/level/block/state/predicate/BlockStatePredicate/properties +FD: net/minecraft/world/level/block/state/properties/AttachFace/$VALUES net/minecraft/world/level/block/state/properties/AttachFace/$VALUES +FD: net/minecraft/world/level/block/state/properties/AttachFace/CEILING net/minecraft/world/level/block/state/properties/AttachFace/CEILING +FD: net/minecraft/world/level/block/state/properties/AttachFace/FLOOR net/minecraft/world/level/block/state/properties/AttachFace/FLOOR +FD: net/minecraft/world/level/block/state/properties/AttachFace/WALL net/minecraft/world/level/block/state/properties/AttachFace/WALL +FD: net/minecraft/world/level/block/state/properties/AttachFace/f_61305_ net/minecraft/world/level/block/state/properties/AttachFace/name +FD: net/minecraft/world/level/block/state/properties/BambooLeaves/$VALUES net/minecraft/world/level/block/state/properties/BambooLeaves/$VALUES +FD: net/minecraft/world/level/block/state/properties/BambooLeaves/LARGE net/minecraft/world/level/block/state/properties/BambooLeaves/LARGE +FD: net/minecraft/world/level/block/state/properties/BambooLeaves/NONE net/minecraft/world/level/block/state/properties/BambooLeaves/NONE +FD: net/minecraft/world/level/block/state/properties/BambooLeaves/SMALL net/minecraft/world/level/block/state/properties/BambooLeaves/SMALL +FD: net/minecraft/world/level/block/state/properties/BambooLeaves/f_61319_ net/minecraft/world/level/block/state/properties/BambooLeaves/name +FD: net/minecraft/world/level/block/state/properties/BedPart/$VALUES net/minecraft/world/level/block/state/properties/BedPart/$VALUES +FD: net/minecraft/world/level/block/state/properties/BedPart/FOOT net/minecraft/world/level/block/state/properties/BedPart/FOOT +FD: net/minecraft/world/level/block/state/properties/BedPart/HEAD net/minecraft/world/level/block/state/properties/BedPart/HEAD +FD: net/minecraft/world/level/block/state/properties/BedPart/f_61333_ net/minecraft/world/level/block/state/properties/BedPart/name +FD: net/minecraft/world/level/block/state/properties/BellAttachType/$VALUES net/minecraft/world/level/block/state/properties/BellAttachType/$VALUES +FD: net/minecraft/world/level/block/state/properties/BellAttachType/CEILING net/minecraft/world/level/block/state/properties/BellAttachType/CEILING +FD: net/minecraft/world/level/block/state/properties/BellAttachType/DOUBLE_WALL net/minecraft/world/level/block/state/properties/BellAttachType/DOUBLE_WALL +FD: net/minecraft/world/level/block/state/properties/BellAttachType/FLOOR net/minecraft/world/level/block/state/properties/BellAttachType/FLOOR +FD: net/minecraft/world/level/block/state/properties/BellAttachType/SINGLE_WALL net/minecraft/world/level/block/state/properties/BellAttachType/SINGLE_WALL +FD: net/minecraft/world/level/block/state/properties/BellAttachType/f_61349_ net/minecraft/world/level/block/state/properties/BellAttachType/name +FD: net/minecraft/world/level/block/state/properties/BlockSetType/f_271088_ net/minecraft/world/level/block/state/properties/BlockSetType/BAMBOO +FD: net/minecraft/world/level/block/state/properties/BlockSetType/f_271100_ net/minecraft/world/level/block/state/properties/BlockSetType/SPRUCE +FD: net/minecraft/world/level/block/state/properties/BlockSetType/f_271132_ net/minecraft/world/level/block/state/properties/BlockSetType/IRON +FD: net/minecraft/world/level/block/state/properties/BlockSetType/f_271136_ net/minecraft/world/level/block/state/properties/BlockSetType/soundType +FD: net/minecraft/world/level/block/state/properties/BlockSetType/f_271141_ net/minecraft/world/level/block/state/properties/BlockSetType/doorOpen +FD: net/minecraft/world/level/block/state/properties/BlockSetType/f_271187_ net/minecraft/world/level/block/state/properties/BlockSetType/JUNGLE +FD: net/minecraft/world/level/block/state/properties/BlockSetType/f_271194_ net/minecraft/world/level/block/state/properties/BlockSetType/buttonClickOff +FD: net/minecraft/world/level/block/state/properties/BlockSetType/f_271198_ net/minecraft/world/level/block/state/properties/BlockSetType/OAK +FD: net/minecraft/world/level/block/state/properties/BlockSetType/f_271208_ net/minecraft/world/level/block/state/properties/BlockSetType/GOLD +FD: net/minecraft/world/level/block/state/properties/BlockSetType/f_271232_ net/minecraft/world/level/block/state/properties/BlockSetType/VALUES +FD: net/minecraft/world/level/block/state/properties/BlockSetType/f_271234_ net/minecraft/world/level/block/state/properties/BlockSetType/pressurePlateClickOff +FD: net/minecraft/world/level/block/state/properties/BlockSetType/f_271253_ net/minecraft/world/level/block/state/properties/BlockSetType/name +FD: net/minecraft/world/level/block/state/properties/BlockSetType/f_271258_ net/minecraft/world/level/block/state/properties/BlockSetType/trapdoorOpen +FD: net/minecraft/world/level/block/state/properties/BlockSetType/f_271263_ net/minecraft/world/level/block/state/properties/BlockSetType/POLISHED_BLACKSTONE +FD: net/minecraft/world/level/block/state/properties/BlockSetType/f_271290_ net/minecraft/world/level/block/state/properties/BlockSetType/CRIMSON +FD: net/minecraft/world/level/block/state/properties/BlockSetType/f_271383_ net/minecraft/world/level/block/state/properties/BlockSetType/MANGROVE +FD: net/minecraft/world/level/block/state/properties/BlockSetType/f_271387_ net/minecraft/world/level/block/state/properties/BlockSetType/BIRCH +FD: net/minecraft/world/level/block/state/properties/BlockSetType/f_271394_ net/minecraft/world/level/block/state/properties/BlockSetType/buttonClickOn +FD: net/minecraft/world/level/block/state/properties/BlockSetType/f_271400_ net/minecraft/world/level/block/state/properties/BlockSetType/WARPED +FD: net/minecraft/world/level/block/state/properties/BlockSetType/f_271401_ net/minecraft/world/level/block/state/properties/BlockSetType/CHERRY +FD: net/minecraft/world/level/block/state/properties/BlockSetType/f_271425_ net/minecraft/world/level/block/state/properties/BlockSetType/trapdoorClose +FD: net/minecraft/world/level/block/state/properties/BlockSetType/f_271479_ net/minecraft/world/level/block/state/properties/BlockSetType/STONE +FD: net/minecraft/world/level/block/state/properties/BlockSetType/f_271481_ net/minecraft/world/level/block/state/properties/BlockSetType/pressurePlateClickOn +FD: net/minecraft/world/level/block/state/properties/BlockSetType/f_271502_ net/minecraft/world/level/block/state/properties/BlockSetType/doorClose +FD: net/minecraft/world/level/block/state/properties/BlockSetType/f_271512_ net/minecraft/world/level/block/state/properties/BlockSetType/ACACIA +FD: net/minecraft/world/level/block/state/properties/BlockSetType/f_271528_ net/minecraft/world/level/block/state/properties/BlockSetType/DARK_OAK +FD: net/minecraft/world/level/block/state/properties/BlockSetType/f_278463_ net/minecraft/world/level/block/state/properties/BlockSetType/canOpenByHand +FD: net/minecraft/world/level/block/state/properties/BlockStateProperties/f_155977_ net/minecraft/world/level/block/state/properties/BlockStateProperties/BERRIES +FD: net/minecraft/world/level/block/state/properties/BlockStateProperties/f_155978_ net/minecraft/world/level/block/state/properties/BlockStateProperties/MIN_LEVEL +FD: net/minecraft/world/level/block/state/properties/BlockStateProperties/f_155979_ net/minecraft/world/level/block/state/properties/BlockStateProperties/MIN_LEVEL_CAULDRON +FD: net/minecraft/world/level/block/state/properties/BlockStateProperties/f_155980_ net/minecraft/world/level/block/state/properties/BlockStateProperties/MAX_LEVEL_3 +FD: net/minecraft/world/level/block/state/properties/BlockStateProperties/f_155981_ net/minecraft/world/level/block/state/properties/BlockStateProperties/MAX_LEVEL_8 +FD: net/minecraft/world/level/block/state/properties/BlockStateProperties/f_155982_ net/minecraft/world/level/block/state/properties/BlockStateProperties/MAX_LEVEL_15 +FD: net/minecraft/world/level/block/state/properties/BlockStateProperties/f_155983_ net/minecraft/world/level/block/state/properties/BlockStateProperties/STABILITY_MAX_DISTANCE +FD: net/minecraft/world/level/block/state/properties/BlockStateProperties/f_155984_ net/minecraft/world/level/block/state/properties/BlockStateProperties/MIN_RESPAWN_ANCHOR_CHARGES +FD: net/minecraft/world/level/block/state/properties/BlockStateProperties/f_155985_ net/minecraft/world/level/block/state/properties/BlockStateProperties/MAX_RESPAWN_ANCHOR_CHARGES +FD: net/minecraft/world/level/block/state/properties/BlockStateProperties/f_155987_ net/minecraft/world/level/block/state/properties/BlockStateProperties/MAX_AGE_1 +FD: net/minecraft/world/level/block/state/properties/BlockStateProperties/f_155988_ net/minecraft/world/level/block/state/properties/BlockStateProperties/MAX_AGE_2 +FD: net/minecraft/world/level/block/state/properties/BlockStateProperties/f_155989_ net/minecraft/world/level/block/state/properties/BlockStateProperties/MAX_AGE_3 +FD: net/minecraft/world/level/block/state/properties/BlockStateProperties/f_155990_ net/minecraft/world/level/block/state/properties/BlockStateProperties/MAX_AGE_5 +FD: net/minecraft/world/level/block/state/properties/BlockStateProperties/f_155991_ net/minecraft/world/level/block/state/properties/BlockStateProperties/MAX_AGE_7 +FD: net/minecraft/world/level/block/state/properties/BlockStateProperties/f_155992_ net/minecraft/world/level/block/state/properties/BlockStateProperties/MAX_AGE_15 +FD: net/minecraft/world/level/block/state/properties/BlockStateProperties/f_155993_ net/minecraft/world/level/block/state/properties/BlockStateProperties/MAX_AGE_25 +FD: net/minecraft/world/level/block/state/properties/BlockStateProperties/f_155994_ net/minecraft/world/level/block/state/properties/BlockStateProperties/CANDLES +FD: net/minecraft/world/level/block/state/properties/BlockStateProperties/f_155995_ net/minecraft/world/level/block/state/properties/BlockStateProperties/MAX_DISTANCE +FD: net/minecraft/world/level/block/state/properties/BlockStateProperties/f_155996_ net/minecraft/world/level/block/state/properties/BlockStateProperties/TILT +FD: net/minecraft/world/level/block/state/properties/BlockStateProperties/f_155997_ net/minecraft/world/level/block/state/properties/BlockStateProperties/VERTICAL_DIRECTION +FD: net/minecraft/world/level/block/state/properties/BlockStateProperties/f_155998_ net/minecraft/world/level/block/state/properties/BlockStateProperties/DRIPSTONE_THICKNESS +FD: net/minecraft/world/level/block/state/properties/BlockStateProperties/f_155999_ net/minecraft/world/level/block/state/properties/BlockStateProperties/SCULK_SENSOR_PHASE +FD: net/minecraft/world/level/block/state/properties/BlockStateProperties/f_222995_ net/minecraft/world/level/block/state/properties/BlockStateProperties/BLOOM +FD: net/minecraft/world/level/block/state/properties/BlockStateProperties/f_222996_ net/minecraft/world/level/block/state/properties/BlockStateProperties/SHRIEKING +FD: net/minecraft/world/level/block/state/properties/BlockStateProperties/f_222997_ net/minecraft/world/level/block/state/properties/BlockStateProperties/CAN_SUMMON +FD: net/minecraft/world/level/block/state/properties/BlockStateProperties/f_222998_ net/minecraft/world/level/block/state/properties/BlockStateProperties/MAX_AGE_4 +FD: net/minecraft/world/level/block/state/properties/BlockStateProperties/f_222999_ net/minecraft/world/level/block/state/properties/BlockStateProperties/AGE_4 +FD: net/minecraft/world/level/block/state/properties/BlockStateProperties/f_260439_ net/minecraft/world/level/block/state/properties/BlockStateProperties/CHISELED_BOOKSHELF_SLOT_5_OCCUPIED +FD: net/minecraft/world/level/block/state/properties/BlockStateProperties/f_260472_ net/minecraft/world/level/block/state/properties/BlockStateProperties/CHISELED_BOOKSHELF_SLOT_0_OCCUPIED +FD: net/minecraft/world/level/block/state/properties/BlockStateProperties/f_260519_ net/minecraft/world/level/block/state/properties/BlockStateProperties/CHISELED_BOOKSHELF_SLOT_4_OCCUPIED +FD: net/minecraft/world/level/block/state/properties/BlockStateProperties/f_260538_ net/minecraft/world/level/block/state/properties/BlockStateProperties/CHISELED_BOOKSHELF_SLOT_2_OCCUPIED +FD: net/minecraft/world/level/block/state/properties/BlockStateProperties/f_260553_ net/minecraft/world/level/block/state/properties/BlockStateProperties/CHISELED_BOOKSHELF_SLOT_1_OCCUPIED +FD: net/minecraft/world/level/block/state/properties/BlockStateProperties/f_260590_ net/minecraft/world/level/block/state/properties/BlockStateProperties/CHISELED_BOOKSHELF_SLOT_3_OCCUPIED +FD: net/minecraft/world/level/block/state/properties/BlockStateProperties/f_271112_ net/minecraft/world/level/block/state/properties/BlockStateProperties/DUSTED +FD: net/minecraft/world/level/block/state/properties/BlockStateProperties/f_271526_ net/minecraft/world/level/block/state/properties/BlockStateProperties/FLOWER_AMOUNT +FD: net/minecraft/world/level/block/state/properties/BlockStateProperties/f_276520_ net/minecraft/world/level/block/state/properties/BlockStateProperties/CRACKED +FD: net/minecraft/world/level/block/state/properties/BlockStateProperties/f_61360_ net/minecraft/world/level/block/state/properties/BlockStateProperties/TRIGGERED +FD: net/minecraft/world/level/block/state/properties/BlockStateProperties/f_61361_ net/minecraft/world/level/block/state/properties/BlockStateProperties/UNSTABLE +FD: net/minecraft/world/level/block/state/properties/BlockStateProperties/f_61362_ net/minecraft/world/level/block/state/properties/BlockStateProperties/WATERLOGGED +FD: net/minecraft/world/level/block/state/properties/BlockStateProperties/f_61364_ net/minecraft/world/level/block/state/properties/BlockStateProperties/HORIZONTAL_AXIS +FD: net/minecraft/world/level/block/state/properties/BlockStateProperties/f_61365_ net/minecraft/world/level/block/state/properties/BlockStateProperties/AXIS +FD: net/minecraft/world/level/block/state/properties/BlockStateProperties/f_61366_ net/minecraft/world/level/block/state/properties/BlockStateProperties/UP +FD: net/minecraft/world/level/block/state/properties/BlockStateProperties/f_61367_ net/minecraft/world/level/block/state/properties/BlockStateProperties/DOWN +FD: net/minecraft/world/level/block/state/properties/BlockStateProperties/f_61368_ net/minecraft/world/level/block/state/properties/BlockStateProperties/NORTH +FD: net/minecraft/world/level/block/state/properties/BlockStateProperties/f_61369_ net/minecraft/world/level/block/state/properties/BlockStateProperties/EAST +FD: net/minecraft/world/level/block/state/properties/BlockStateProperties/f_61370_ net/minecraft/world/level/block/state/properties/BlockStateProperties/SOUTH +FD: net/minecraft/world/level/block/state/properties/BlockStateProperties/f_61371_ net/minecraft/world/level/block/state/properties/BlockStateProperties/WEST +FD: net/minecraft/world/level/block/state/properties/BlockStateProperties/f_61372_ net/minecraft/world/level/block/state/properties/BlockStateProperties/FACING +FD: net/minecraft/world/level/block/state/properties/BlockStateProperties/f_61373_ net/minecraft/world/level/block/state/properties/BlockStateProperties/FACING_HOPPER +FD: net/minecraft/world/level/block/state/properties/BlockStateProperties/f_61374_ net/minecraft/world/level/block/state/properties/BlockStateProperties/HORIZONTAL_FACING +FD: net/minecraft/world/level/block/state/properties/BlockStateProperties/f_61375_ net/minecraft/world/level/block/state/properties/BlockStateProperties/ORIENTATION +FD: net/minecraft/world/level/block/state/properties/BlockStateProperties/f_61376_ net/minecraft/world/level/block/state/properties/BlockStateProperties/ATTACH_FACE +FD: net/minecraft/world/level/block/state/properties/BlockStateProperties/f_61377_ net/minecraft/world/level/block/state/properties/BlockStateProperties/BELL_ATTACHMENT +FD: net/minecraft/world/level/block/state/properties/BlockStateProperties/f_61378_ net/minecraft/world/level/block/state/properties/BlockStateProperties/EAST_WALL +FD: net/minecraft/world/level/block/state/properties/BlockStateProperties/f_61379_ net/minecraft/world/level/block/state/properties/BlockStateProperties/NORTH_WALL +FD: net/minecraft/world/level/block/state/properties/BlockStateProperties/f_61380_ net/minecraft/world/level/block/state/properties/BlockStateProperties/SOUTH_WALL +FD: net/minecraft/world/level/block/state/properties/BlockStateProperties/f_61381_ net/minecraft/world/level/block/state/properties/BlockStateProperties/WEST_WALL +FD: net/minecraft/world/level/block/state/properties/BlockStateProperties/f_61382_ net/minecraft/world/level/block/state/properties/BlockStateProperties/EAST_REDSTONE +FD: net/minecraft/world/level/block/state/properties/BlockStateProperties/f_61383_ net/minecraft/world/level/block/state/properties/BlockStateProperties/NORTH_REDSTONE +FD: net/minecraft/world/level/block/state/properties/BlockStateProperties/f_61384_ net/minecraft/world/level/block/state/properties/BlockStateProperties/SOUTH_REDSTONE +FD: net/minecraft/world/level/block/state/properties/BlockStateProperties/f_61385_ net/minecraft/world/level/block/state/properties/BlockStateProperties/WEST_REDSTONE +FD: net/minecraft/world/level/block/state/properties/BlockStateProperties/f_61386_ net/minecraft/world/level/block/state/properties/BlockStateProperties/ATTACHED +FD: net/minecraft/world/level/block/state/properties/BlockStateProperties/f_61387_ net/minecraft/world/level/block/state/properties/BlockStateProperties/STAGE +FD: net/minecraft/world/level/block/state/properties/BlockStateProperties/f_61388_ net/minecraft/world/level/block/state/properties/BlockStateProperties/STABILITY_DISTANCE +FD: net/minecraft/world/level/block/state/properties/BlockStateProperties/f_61389_ net/minecraft/world/level/block/state/properties/BlockStateProperties/RESPAWN_ANCHOR_CHARGES +FD: net/minecraft/world/level/block/state/properties/BlockStateProperties/f_61390_ net/minecraft/world/level/block/state/properties/BlockStateProperties/ROTATION_16 +FD: net/minecraft/world/level/block/state/properties/BlockStateProperties/f_61391_ net/minecraft/world/level/block/state/properties/BlockStateProperties/BED_PART +FD: net/minecraft/world/level/block/state/properties/BlockStateProperties/f_61392_ net/minecraft/world/level/block/state/properties/BlockStateProperties/CHEST_TYPE +FD: net/minecraft/world/level/block/state/properties/BlockStateProperties/f_61393_ net/minecraft/world/level/block/state/properties/BlockStateProperties/MODE_COMPARATOR +FD: net/minecraft/world/level/block/state/properties/BlockStateProperties/f_61394_ net/minecraft/world/level/block/state/properties/BlockStateProperties/DOOR_HINGE +FD: net/minecraft/world/level/block/state/properties/BlockStateProperties/f_61395_ net/minecraft/world/level/block/state/properties/BlockStateProperties/NOTEBLOCK_INSTRUMENT +FD: net/minecraft/world/level/block/state/properties/BlockStateProperties/f_61396_ net/minecraft/world/level/block/state/properties/BlockStateProperties/PISTON_TYPE +FD: net/minecraft/world/level/block/state/properties/BlockStateProperties/f_61397_ net/minecraft/world/level/block/state/properties/BlockStateProperties/SLAB_TYPE +FD: net/minecraft/world/level/block/state/properties/BlockStateProperties/f_61398_ net/minecraft/world/level/block/state/properties/BlockStateProperties/STAIRS_SHAPE +FD: net/minecraft/world/level/block/state/properties/BlockStateProperties/f_61399_ net/minecraft/world/level/block/state/properties/BlockStateProperties/STRUCTUREBLOCK_MODE +FD: net/minecraft/world/level/block/state/properties/BlockStateProperties/f_61400_ net/minecraft/world/level/block/state/properties/BlockStateProperties/BAMBOO_LEAVES +FD: net/minecraft/world/level/block/state/properties/BlockStateProperties/f_61401_ net/minecraft/world/level/block/state/properties/BlockStateProperties/DOUBLE_BLOCK_HALF +FD: net/minecraft/world/level/block/state/properties/BlockStateProperties/f_61402_ net/minecraft/world/level/block/state/properties/BlockStateProperties/HALF +FD: net/minecraft/world/level/block/state/properties/BlockStateProperties/f_61403_ net/minecraft/world/level/block/state/properties/BlockStateProperties/RAIL_SHAPE +FD: net/minecraft/world/level/block/state/properties/BlockStateProperties/f_61404_ net/minecraft/world/level/block/state/properties/BlockStateProperties/RAIL_SHAPE_STRAIGHT +FD: net/minecraft/world/level/block/state/properties/BlockStateProperties/f_61405_ net/minecraft/world/level/block/state/properties/BlockStateProperties/AGE_1 +FD: net/minecraft/world/level/block/state/properties/BlockStateProperties/f_61406_ net/minecraft/world/level/block/state/properties/BlockStateProperties/AGE_2 +FD: net/minecraft/world/level/block/state/properties/BlockStateProperties/f_61407_ net/minecraft/world/level/block/state/properties/BlockStateProperties/AGE_3 +FD: net/minecraft/world/level/block/state/properties/BlockStateProperties/f_61408_ net/minecraft/world/level/block/state/properties/BlockStateProperties/AGE_5 +FD: net/minecraft/world/level/block/state/properties/BlockStateProperties/f_61409_ net/minecraft/world/level/block/state/properties/BlockStateProperties/AGE_7 +FD: net/minecraft/world/level/block/state/properties/BlockStateProperties/f_61410_ net/minecraft/world/level/block/state/properties/BlockStateProperties/AGE_15 +FD: net/minecraft/world/level/block/state/properties/BlockStateProperties/f_61411_ net/minecraft/world/level/block/state/properties/BlockStateProperties/AGE_25 +FD: net/minecraft/world/level/block/state/properties/BlockStateProperties/f_61412_ net/minecraft/world/level/block/state/properties/BlockStateProperties/BITES +FD: net/minecraft/world/level/block/state/properties/BlockStateProperties/f_61413_ net/minecraft/world/level/block/state/properties/BlockStateProperties/DELAY +FD: net/minecraft/world/level/block/state/properties/BlockStateProperties/f_61414_ net/minecraft/world/level/block/state/properties/BlockStateProperties/DISTANCE +FD: net/minecraft/world/level/block/state/properties/BlockStateProperties/f_61415_ net/minecraft/world/level/block/state/properties/BlockStateProperties/EGGS +FD: net/minecraft/world/level/block/state/properties/BlockStateProperties/f_61416_ net/minecraft/world/level/block/state/properties/BlockStateProperties/HATCH +FD: net/minecraft/world/level/block/state/properties/BlockStateProperties/f_61417_ net/minecraft/world/level/block/state/properties/BlockStateProperties/LAYERS +FD: net/minecraft/world/level/block/state/properties/BlockStateProperties/f_61418_ net/minecraft/world/level/block/state/properties/BlockStateProperties/LEVEL_CAULDRON +FD: net/minecraft/world/level/block/state/properties/BlockStateProperties/f_61419_ net/minecraft/world/level/block/state/properties/BlockStateProperties/LEVEL_COMPOSTER +FD: net/minecraft/world/level/block/state/properties/BlockStateProperties/f_61420_ net/minecraft/world/level/block/state/properties/BlockStateProperties/LEVEL_FLOWING +FD: net/minecraft/world/level/block/state/properties/BlockStateProperties/f_61421_ net/minecraft/world/level/block/state/properties/BlockStateProperties/LEVEL_HONEY +FD: net/minecraft/world/level/block/state/properties/BlockStateProperties/f_61422_ net/minecraft/world/level/block/state/properties/BlockStateProperties/LEVEL +FD: net/minecraft/world/level/block/state/properties/BlockStateProperties/f_61423_ net/minecraft/world/level/block/state/properties/BlockStateProperties/MOISTURE +FD: net/minecraft/world/level/block/state/properties/BlockStateProperties/f_61424_ net/minecraft/world/level/block/state/properties/BlockStateProperties/NOTE +FD: net/minecraft/world/level/block/state/properties/BlockStateProperties/f_61425_ net/minecraft/world/level/block/state/properties/BlockStateProperties/PICKLES +FD: net/minecraft/world/level/block/state/properties/BlockStateProperties/f_61426_ net/minecraft/world/level/block/state/properties/BlockStateProperties/POWER +FD: net/minecraft/world/level/block/state/properties/BlockStateProperties/f_61427_ net/minecraft/world/level/block/state/properties/BlockStateProperties/BOTTOM +FD: net/minecraft/world/level/block/state/properties/BlockStateProperties/f_61428_ net/minecraft/world/level/block/state/properties/BlockStateProperties/CONDITIONAL +FD: net/minecraft/world/level/block/state/properties/BlockStateProperties/f_61429_ net/minecraft/world/level/block/state/properties/BlockStateProperties/DISARMED +FD: net/minecraft/world/level/block/state/properties/BlockStateProperties/f_61430_ net/minecraft/world/level/block/state/properties/BlockStateProperties/DRAG +FD: net/minecraft/world/level/block/state/properties/BlockStateProperties/f_61431_ net/minecraft/world/level/block/state/properties/BlockStateProperties/ENABLED +FD: net/minecraft/world/level/block/state/properties/BlockStateProperties/f_61432_ net/minecraft/world/level/block/state/properties/BlockStateProperties/EXTENDED +FD: net/minecraft/world/level/block/state/properties/BlockStateProperties/f_61433_ net/minecraft/world/level/block/state/properties/BlockStateProperties/EYE +FD: net/minecraft/world/level/block/state/properties/BlockStateProperties/f_61434_ net/minecraft/world/level/block/state/properties/BlockStateProperties/FALLING +FD: net/minecraft/world/level/block/state/properties/BlockStateProperties/f_61435_ net/minecraft/world/level/block/state/properties/BlockStateProperties/HANGING +FD: net/minecraft/world/level/block/state/properties/BlockStateProperties/f_61436_ net/minecraft/world/level/block/state/properties/BlockStateProperties/HAS_BOTTLE_0 +FD: net/minecraft/world/level/block/state/properties/BlockStateProperties/f_61437_ net/minecraft/world/level/block/state/properties/BlockStateProperties/HAS_BOTTLE_1 +FD: net/minecraft/world/level/block/state/properties/BlockStateProperties/f_61438_ net/minecraft/world/level/block/state/properties/BlockStateProperties/HAS_BOTTLE_2 +FD: net/minecraft/world/level/block/state/properties/BlockStateProperties/f_61439_ net/minecraft/world/level/block/state/properties/BlockStateProperties/HAS_RECORD +FD: net/minecraft/world/level/block/state/properties/BlockStateProperties/f_61440_ net/minecraft/world/level/block/state/properties/BlockStateProperties/HAS_BOOK +FD: net/minecraft/world/level/block/state/properties/BlockStateProperties/f_61441_ net/minecraft/world/level/block/state/properties/BlockStateProperties/INVERTED +FD: net/minecraft/world/level/block/state/properties/BlockStateProperties/f_61442_ net/minecraft/world/level/block/state/properties/BlockStateProperties/IN_WALL +FD: net/minecraft/world/level/block/state/properties/BlockStateProperties/f_61443_ net/minecraft/world/level/block/state/properties/BlockStateProperties/LIT +FD: net/minecraft/world/level/block/state/properties/BlockStateProperties/f_61444_ net/minecraft/world/level/block/state/properties/BlockStateProperties/LOCKED +FD: net/minecraft/world/level/block/state/properties/BlockStateProperties/f_61445_ net/minecraft/world/level/block/state/properties/BlockStateProperties/OCCUPIED +FD: net/minecraft/world/level/block/state/properties/BlockStateProperties/f_61446_ net/minecraft/world/level/block/state/properties/BlockStateProperties/OPEN +FD: net/minecraft/world/level/block/state/properties/BlockStateProperties/f_61447_ net/minecraft/world/level/block/state/properties/BlockStateProperties/PERSISTENT +FD: net/minecraft/world/level/block/state/properties/BlockStateProperties/f_61448_ net/minecraft/world/level/block/state/properties/BlockStateProperties/POWERED +FD: net/minecraft/world/level/block/state/properties/BlockStateProperties/f_61449_ net/minecraft/world/level/block/state/properties/BlockStateProperties/SHORT +FD: net/minecraft/world/level/block/state/properties/BlockStateProperties/f_61450_ net/minecraft/world/level/block/state/properties/BlockStateProperties/SIGNAL_FIRE +FD: net/minecraft/world/level/block/state/properties/BlockStateProperties/f_61451_ net/minecraft/world/level/block/state/properties/BlockStateProperties/SNOWY +FD: net/minecraft/world/level/block/state/properties/BooleanProperty/f_61457_ net/minecraft/world/level/block/state/properties/BooleanProperty/values +FD: net/minecraft/world/level/block/state/properties/ChestType/$VALUES net/minecraft/world/level/block/state/properties/ChestType/$VALUES +FD: net/minecraft/world/level/block/state/properties/ChestType/LEFT net/minecraft/world/level/block/state/properties/ChestType/LEFT +FD: net/minecraft/world/level/block/state/properties/ChestType/RIGHT net/minecraft/world/level/block/state/properties/ChestType/RIGHT +FD: net/minecraft/world/level/block/state/properties/ChestType/SINGLE net/minecraft/world/level/block/state/properties/ChestType/SINGLE +FD: net/minecraft/world/level/block/state/properties/ChestType/f_61476_ net/minecraft/world/level/block/state/properties/ChestType/name +FD: net/minecraft/world/level/block/state/properties/ChestType$1/f_262740_ net/minecraft/world/level/block/state/properties/ChestType$1/$SwitchMap$net$minecraft$world$level$block$state$properties$ChestType +FD: net/minecraft/world/level/block/state/properties/ComparatorMode/$VALUES net/minecraft/world/level/block/state/properties/ComparatorMode/$VALUES +FD: net/minecraft/world/level/block/state/properties/ComparatorMode/COMPARE net/minecraft/world/level/block/state/properties/ComparatorMode/COMPARE +FD: net/minecraft/world/level/block/state/properties/ComparatorMode/SUBTRACT net/minecraft/world/level/block/state/properties/ComparatorMode/SUBTRACT +FD: net/minecraft/world/level/block/state/properties/ComparatorMode/f_61528_ net/minecraft/world/level/block/state/properties/ComparatorMode/name +FD: net/minecraft/world/level/block/state/properties/DoorHingeSide/$VALUES net/minecraft/world/level/block/state/properties/DoorHingeSide/$VALUES +FD: net/minecraft/world/level/block/state/properties/DoorHingeSide/LEFT net/minecraft/world/level/block/state/properties/DoorHingeSide/LEFT +FD: net/minecraft/world/level/block/state/properties/DoorHingeSide/RIGHT net/minecraft/world/level/block/state/properties/DoorHingeSide/RIGHT +FD: net/minecraft/world/level/block/state/properties/DoubleBlockHalf/$VALUES net/minecraft/world/level/block/state/properties/DoubleBlockHalf/$VALUES +FD: net/minecraft/world/level/block/state/properties/DoubleBlockHalf/LOWER net/minecraft/world/level/block/state/properties/DoubleBlockHalf/LOWER +FD: net/minecraft/world/level/block/state/properties/DoubleBlockHalf/UPPER net/minecraft/world/level/block/state/properties/DoubleBlockHalf/UPPER +FD: net/minecraft/world/level/block/state/properties/DripstoneThickness/$VALUES net/minecraft/world/level/block/state/properties/DripstoneThickness/$VALUES +FD: net/minecraft/world/level/block/state/properties/DripstoneThickness/BASE net/minecraft/world/level/block/state/properties/DripstoneThickness/BASE +FD: net/minecraft/world/level/block/state/properties/DripstoneThickness/FRUSTUM net/minecraft/world/level/block/state/properties/DripstoneThickness/FRUSTUM +FD: net/minecraft/world/level/block/state/properties/DripstoneThickness/MIDDLE net/minecraft/world/level/block/state/properties/DripstoneThickness/MIDDLE +FD: net/minecraft/world/level/block/state/properties/DripstoneThickness/TIP net/minecraft/world/level/block/state/properties/DripstoneThickness/TIP +FD: net/minecraft/world/level/block/state/properties/DripstoneThickness/TIP_MERGE net/minecraft/world/level/block/state/properties/DripstoneThickness/TIP_MERGE +FD: net/minecraft/world/level/block/state/properties/DripstoneThickness/f_156012_ net/minecraft/world/level/block/state/properties/DripstoneThickness/name +FD: net/minecraft/world/level/block/state/properties/EnumProperty/f_61576_ net/minecraft/world/level/block/state/properties/EnumProperty/values +FD: net/minecraft/world/level/block/state/properties/EnumProperty/f_61577_ net/minecraft/world/level/block/state/properties/EnumProperty/names +FD: net/minecraft/world/level/block/state/properties/Half/$VALUES net/minecraft/world/level/block/state/properties/Half/$VALUES +FD: net/minecraft/world/level/block/state/properties/Half/BOTTOM net/minecraft/world/level/block/state/properties/Half/BOTTOM +FD: net/minecraft/world/level/block/state/properties/Half/TOP net/minecraft/world/level/block/state/properties/Half/TOP +FD: net/minecraft/world/level/block/state/properties/Half/f_61609_ net/minecraft/world/level/block/state/properties/Half/name +FD: net/minecraft/world/level/block/state/properties/IntegerProperty/f_223000_ net/minecraft/world/level/block/state/properties/IntegerProperty/min +FD: net/minecraft/world/level/block/state/properties/IntegerProperty/f_223001_ net/minecraft/world/level/block/state/properties/IntegerProperty/max +FD: net/minecraft/world/level/block/state/properties/IntegerProperty/f_61621_ net/minecraft/world/level/block/state/properties/IntegerProperty/values +FD: net/minecraft/world/level/block/state/properties/NoteBlockInstrument/$VALUES net/minecraft/world/level/block/state/properties/NoteBlockInstrument/$VALUES +FD: net/minecraft/world/level/block/state/properties/NoteBlockInstrument/BANJO net/minecraft/world/level/block/state/properties/NoteBlockInstrument/BANJO +FD: net/minecraft/world/level/block/state/properties/NoteBlockInstrument/BASEDRUM net/minecraft/world/level/block/state/properties/NoteBlockInstrument/BASEDRUM +FD: net/minecraft/world/level/block/state/properties/NoteBlockInstrument/BASS net/minecraft/world/level/block/state/properties/NoteBlockInstrument/BASS +FD: net/minecraft/world/level/block/state/properties/NoteBlockInstrument/BELL net/minecraft/world/level/block/state/properties/NoteBlockInstrument/BELL +FD: net/minecraft/world/level/block/state/properties/NoteBlockInstrument/BIT net/minecraft/world/level/block/state/properties/NoteBlockInstrument/BIT +FD: net/minecraft/world/level/block/state/properties/NoteBlockInstrument/CHIME net/minecraft/world/level/block/state/properties/NoteBlockInstrument/CHIME +FD: net/minecraft/world/level/block/state/properties/NoteBlockInstrument/COW_BELL net/minecraft/world/level/block/state/properties/NoteBlockInstrument/COW_BELL +FD: net/minecraft/world/level/block/state/properties/NoteBlockInstrument/CREEPER net/minecraft/world/level/block/state/properties/NoteBlockInstrument/CREEPER +FD: net/minecraft/world/level/block/state/properties/NoteBlockInstrument/CUSTOM_HEAD net/minecraft/world/level/block/state/properties/NoteBlockInstrument/CUSTOM_HEAD +FD: net/minecraft/world/level/block/state/properties/NoteBlockInstrument/DIDGERIDOO net/minecraft/world/level/block/state/properties/NoteBlockInstrument/DIDGERIDOO +FD: net/minecraft/world/level/block/state/properties/NoteBlockInstrument/DRAGON net/minecraft/world/level/block/state/properties/NoteBlockInstrument/DRAGON +FD: net/minecraft/world/level/block/state/properties/NoteBlockInstrument/FLUTE net/minecraft/world/level/block/state/properties/NoteBlockInstrument/FLUTE +FD: net/minecraft/world/level/block/state/properties/NoteBlockInstrument/GUITAR net/minecraft/world/level/block/state/properties/NoteBlockInstrument/GUITAR +FD: net/minecraft/world/level/block/state/properties/NoteBlockInstrument/HARP net/minecraft/world/level/block/state/properties/NoteBlockInstrument/HARP +FD: net/minecraft/world/level/block/state/properties/NoteBlockInstrument/HAT net/minecraft/world/level/block/state/properties/NoteBlockInstrument/HAT +FD: net/minecraft/world/level/block/state/properties/NoteBlockInstrument/IRON_XYLOPHONE net/minecraft/world/level/block/state/properties/NoteBlockInstrument/IRON_XYLOPHONE +FD: net/minecraft/world/level/block/state/properties/NoteBlockInstrument/PIGLIN net/minecraft/world/level/block/state/properties/NoteBlockInstrument/PIGLIN +FD: net/minecraft/world/level/block/state/properties/NoteBlockInstrument/PLING net/minecraft/world/level/block/state/properties/NoteBlockInstrument/PLING +FD: net/minecraft/world/level/block/state/properties/NoteBlockInstrument/SKELETON net/minecraft/world/level/block/state/properties/NoteBlockInstrument/SKELETON +FD: net/minecraft/world/level/block/state/properties/NoteBlockInstrument/SNARE net/minecraft/world/level/block/state/properties/NoteBlockInstrument/SNARE +FD: net/minecraft/world/level/block/state/properties/NoteBlockInstrument/WITHER_SKELETON net/minecraft/world/level/block/state/properties/NoteBlockInstrument/WITHER_SKELETON +FD: net/minecraft/world/level/block/state/properties/NoteBlockInstrument/XYLOPHONE net/minecraft/world/level/block/state/properties/NoteBlockInstrument/XYLOPHONE +FD: net/minecraft/world/level/block/state/properties/NoteBlockInstrument/ZOMBIE net/minecraft/world/level/block/state/properties/NoteBlockInstrument/ZOMBIE +FD: net/minecraft/world/level/block/state/properties/NoteBlockInstrument/f_262302_ net/minecraft/world/level/block/state/properties/NoteBlockInstrument/type +FD: net/minecraft/world/level/block/state/properties/NoteBlockInstrument/f_61656_ net/minecraft/world/level/block/state/properties/NoteBlockInstrument/name +FD: net/minecraft/world/level/block/state/properties/NoteBlockInstrument/f_61657_ net/minecraft/world/level/block/state/properties/NoteBlockInstrument/soundEvent +FD: net/minecraft/world/level/block/state/properties/NoteBlockInstrument$Type/$VALUES net/minecraft/world/level/block/state/properties/NoteBlockInstrument$Type/$VALUES +FD: net/minecraft/world/level/block/state/properties/NoteBlockInstrument$Type/BASE_BLOCK net/minecraft/world/level/block/state/properties/NoteBlockInstrument$Type/BASE_BLOCK +FD: net/minecraft/world/level/block/state/properties/NoteBlockInstrument$Type/CUSTOM net/minecraft/world/level/block/state/properties/NoteBlockInstrument$Type/CUSTOM +FD: net/minecraft/world/level/block/state/properties/NoteBlockInstrument$Type/MOB_HEAD net/minecraft/world/level/block/state/properties/NoteBlockInstrument$Type/MOB_HEAD +FD: net/minecraft/world/level/block/state/properties/PistonType/$VALUES net/minecraft/world/level/block/state/properties/PistonType/$VALUES +FD: net/minecraft/world/level/block/state/properties/PistonType/DEFAULT net/minecraft/world/level/block/state/properties/PistonType/DEFAULT +FD: net/minecraft/world/level/block/state/properties/PistonType/STICKY net/minecraft/world/level/block/state/properties/PistonType/STICKY +FD: net/minecraft/world/level/block/state/properties/PistonType/f_61674_ net/minecraft/world/level/block/state/properties/PistonType/name +FD: net/minecraft/world/level/block/state/properties/Property/f_61686_ net/minecraft/world/level/block/state/properties/Property/clazz +FD: net/minecraft/world/level/block/state/properties/Property/f_61687_ net/minecraft/world/level/block/state/properties/Property/name +FD: net/minecraft/world/level/block/state/properties/Property/f_61688_ net/minecraft/world/level/block/state/properties/Property/hashCode +FD: net/minecraft/world/level/block/state/properties/Property/f_61689_ net/minecraft/world/level/block/state/properties/Property/codec +FD: net/minecraft/world/level/block/state/properties/Property/f_61690_ net/minecraft/world/level/block/state/properties/Property/valueCodec +FD: net/minecraft/world/level/block/state/properties/Property$Value/f_61712_ net/minecraft/world/level/block/state/properties/Property$Value/property +FD: net/minecraft/world/level/block/state/properties/Property$Value/f_61713_ net/minecraft/world/level/block/state/properties/Property$Value/value +FD: net/minecraft/world/level/block/state/properties/RailShape/$VALUES net/minecraft/world/level/block/state/properties/RailShape/$VALUES +FD: net/minecraft/world/level/block/state/properties/RailShape/ASCENDING_EAST net/minecraft/world/level/block/state/properties/RailShape/ASCENDING_EAST +FD: net/minecraft/world/level/block/state/properties/RailShape/ASCENDING_NORTH net/minecraft/world/level/block/state/properties/RailShape/ASCENDING_NORTH +FD: net/minecraft/world/level/block/state/properties/RailShape/ASCENDING_SOUTH net/minecraft/world/level/block/state/properties/RailShape/ASCENDING_SOUTH +FD: net/minecraft/world/level/block/state/properties/RailShape/ASCENDING_WEST net/minecraft/world/level/block/state/properties/RailShape/ASCENDING_WEST +FD: net/minecraft/world/level/block/state/properties/RailShape/EAST_WEST net/minecraft/world/level/block/state/properties/RailShape/EAST_WEST +FD: net/minecraft/world/level/block/state/properties/RailShape/NORTH_EAST net/minecraft/world/level/block/state/properties/RailShape/NORTH_EAST +FD: net/minecraft/world/level/block/state/properties/RailShape/NORTH_SOUTH net/minecraft/world/level/block/state/properties/RailShape/NORTH_SOUTH +FD: net/minecraft/world/level/block/state/properties/RailShape/NORTH_WEST net/minecraft/world/level/block/state/properties/RailShape/NORTH_WEST +FD: net/minecraft/world/level/block/state/properties/RailShape/SOUTH_EAST net/minecraft/world/level/block/state/properties/RailShape/SOUTH_EAST +FD: net/minecraft/world/level/block/state/properties/RailShape/SOUTH_WEST net/minecraft/world/level/block/state/properties/RailShape/SOUTH_WEST +FD: net/minecraft/world/level/block/state/properties/RailShape/f_61737_ net/minecraft/world/level/block/state/properties/RailShape/name +FD: net/minecraft/world/level/block/state/properties/RedstoneSide/$VALUES net/minecraft/world/level/block/state/properties/RedstoneSide/$VALUES +FD: net/minecraft/world/level/block/state/properties/RedstoneSide/NONE net/minecraft/world/level/block/state/properties/RedstoneSide/NONE +FD: net/minecraft/world/level/block/state/properties/RedstoneSide/SIDE net/minecraft/world/level/block/state/properties/RedstoneSide/SIDE +FD: net/minecraft/world/level/block/state/properties/RedstoneSide/UP net/minecraft/world/level/block/state/properties/RedstoneSide/UP +FD: net/minecraft/world/level/block/state/properties/RedstoneSide/f_61753_ net/minecraft/world/level/block/state/properties/RedstoneSide/name +FD: net/minecraft/world/level/block/state/properties/RotationSegment/f_243806_ net/minecraft/world/level/block/state/properties/RotationSegment/NORTH_0 +FD: net/minecraft/world/level/block/state/properties/RotationSegment/f_243970_ net/minecraft/world/level/block/state/properties/RotationSegment/EAST_90 +FD: net/minecraft/world/level/block/state/properties/RotationSegment/f_243971_ net/minecraft/world/level/block/state/properties/RotationSegment/WEST_270 +FD: net/minecraft/world/level/block/state/properties/RotationSegment/f_244031_ net/minecraft/world/level/block/state/properties/RotationSegment/SOUTH_180 +FD: net/minecraft/world/level/block/state/properties/RotationSegment/f_244269_ net/minecraft/world/level/block/state/properties/RotationSegment/MAX_SEGMENT_INDEX +FD: net/minecraft/world/level/block/state/properties/RotationSegment/f_263687_ net/minecraft/world/level/block/state/properties/RotationSegment/SEGMENTED_ANGLE16 +FD: net/minecraft/world/level/block/state/properties/SculkSensorPhase/$VALUES net/minecraft/world/level/block/state/properties/SculkSensorPhase/$VALUES +FD: net/minecraft/world/level/block/state/properties/SculkSensorPhase/ACTIVE net/minecraft/world/level/block/state/properties/SculkSensorPhase/ACTIVE +FD: net/minecraft/world/level/block/state/properties/SculkSensorPhase/COOLDOWN net/minecraft/world/level/block/state/properties/SculkSensorPhase/COOLDOWN +FD: net/minecraft/world/level/block/state/properties/SculkSensorPhase/INACTIVE net/minecraft/world/level/block/state/properties/SculkSensorPhase/INACTIVE +FD: net/minecraft/world/level/block/state/properties/SculkSensorPhase/f_156044_ net/minecraft/world/level/block/state/properties/SculkSensorPhase/name +FD: net/minecraft/world/level/block/state/properties/SlabType/$VALUES net/minecraft/world/level/block/state/properties/SlabType/$VALUES +FD: net/minecraft/world/level/block/state/properties/SlabType/BOTTOM net/minecraft/world/level/block/state/properties/SlabType/BOTTOM +FD: net/minecraft/world/level/block/state/properties/SlabType/DOUBLE net/minecraft/world/level/block/state/properties/SlabType/DOUBLE +FD: net/minecraft/world/level/block/state/properties/SlabType/TOP net/minecraft/world/level/block/state/properties/SlabType/TOP +FD: net/minecraft/world/level/block/state/properties/SlabType/f_61769_ net/minecraft/world/level/block/state/properties/SlabType/name +FD: net/minecraft/world/level/block/state/properties/StairsShape/$VALUES net/minecraft/world/level/block/state/properties/StairsShape/$VALUES +FD: net/minecraft/world/level/block/state/properties/StairsShape/INNER_LEFT net/minecraft/world/level/block/state/properties/StairsShape/INNER_LEFT +FD: net/minecraft/world/level/block/state/properties/StairsShape/INNER_RIGHT net/minecraft/world/level/block/state/properties/StairsShape/INNER_RIGHT +FD: net/minecraft/world/level/block/state/properties/StairsShape/OUTER_LEFT net/minecraft/world/level/block/state/properties/StairsShape/OUTER_LEFT +FD: net/minecraft/world/level/block/state/properties/StairsShape/OUTER_RIGHT net/minecraft/world/level/block/state/properties/StairsShape/OUTER_RIGHT +FD: net/minecraft/world/level/block/state/properties/StairsShape/STRAIGHT net/minecraft/world/level/block/state/properties/StairsShape/STRAIGHT +FD: net/minecraft/world/level/block/state/properties/StairsShape/f_61786_ net/minecraft/world/level/block/state/properties/StairsShape/name +FD: net/minecraft/world/level/block/state/properties/StructureMode/$VALUES net/minecraft/world/level/block/state/properties/StructureMode/$VALUES +FD: net/minecraft/world/level/block/state/properties/StructureMode/CORNER net/minecraft/world/level/block/state/properties/StructureMode/CORNER +FD: net/minecraft/world/level/block/state/properties/StructureMode/DATA net/minecraft/world/level/block/state/properties/StructureMode/DATA +FD: net/minecraft/world/level/block/state/properties/StructureMode/LOAD net/minecraft/world/level/block/state/properties/StructureMode/LOAD +FD: net/minecraft/world/level/block/state/properties/StructureMode/SAVE net/minecraft/world/level/block/state/properties/StructureMode/SAVE +FD: net/minecraft/world/level/block/state/properties/StructureMode/f_61802_ net/minecraft/world/level/block/state/properties/StructureMode/name +FD: net/minecraft/world/level/block/state/properties/StructureMode/f_61803_ net/minecraft/world/level/block/state/properties/StructureMode/displayName +FD: net/minecraft/world/level/block/state/properties/Tilt/$VALUES net/minecraft/world/level/block/state/properties/Tilt/$VALUES +FD: net/minecraft/world/level/block/state/properties/Tilt/FULL net/minecraft/world/level/block/state/properties/Tilt/FULL +FD: net/minecraft/world/level/block/state/properties/Tilt/NONE net/minecraft/world/level/block/state/properties/Tilt/NONE +FD: net/minecraft/world/level/block/state/properties/Tilt/PARTIAL net/minecraft/world/level/block/state/properties/Tilt/PARTIAL +FD: net/minecraft/world/level/block/state/properties/Tilt/UNSTABLE net/minecraft/world/level/block/state/properties/Tilt/UNSTABLE +FD: net/minecraft/world/level/block/state/properties/Tilt/f_156075_ net/minecraft/world/level/block/state/properties/Tilt/name +FD: net/minecraft/world/level/block/state/properties/Tilt/f_156076_ net/minecraft/world/level/block/state/properties/Tilt/causesVibration +FD: net/minecraft/world/level/block/state/properties/WallSide/$VALUES net/minecraft/world/level/block/state/properties/WallSide/$VALUES +FD: net/minecraft/world/level/block/state/properties/WallSide/LOW net/minecraft/world/level/block/state/properties/WallSide/LOW +FD: net/minecraft/world/level/block/state/properties/WallSide/NONE net/minecraft/world/level/block/state/properties/WallSide/NONE +FD: net/minecraft/world/level/block/state/properties/WallSide/TALL net/minecraft/world/level/block/state/properties/WallSide/TALL +FD: net/minecraft/world/level/block/state/properties/WallSide/f_61818_ net/minecraft/world/level/block/state/properties/WallSide/name +FD: net/minecraft/world/level/block/state/properties/WoodType/f_223002_ net/minecraft/world/level/block/state/properties/WoodType/MANGROVE +FD: net/minecraft/world/level/block/state/properties/WoodType/f_244200_ net/minecraft/world/level/block/state/properties/WoodType/BAMBOO +FD: net/minecraft/world/level/block/state/properties/WoodType/f_271162_ net/minecraft/world/level/block/state/properties/WoodType/fenceGateOpen +FD: net/minecraft/world/level/block/state/properties/WoodType/f_271224_ net/minecraft/world/level/block/state/properties/WoodType/CHERRY +FD: net/minecraft/world/level/block/state/properties/WoodType/f_271309_ net/minecraft/world/level/block/state/properties/WoodType/hangingSignSoundType +FD: net/minecraft/world/level/block/state/properties/WoodType/f_271317_ net/minecraft/world/level/block/state/properties/WoodType/soundType +FD: net/minecraft/world/level/block/state/properties/WoodType/f_271340_ net/minecraft/world/level/block/state/properties/WoodType/setType +FD: net/minecraft/world/level/block/state/properties/WoodType/f_271365_ net/minecraft/world/level/block/state/properties/WoodType/fenceGateClose +FD: net/minecraft/world/level/block/state/properties/WoodType/f_61830_ net/minecraft/world/level/block/state/properties/WoodType/OAK +FD: net/minecraft/world/level/block/state/properties/WoodType/f_61831_ net/minecraft/world/level/block/state/properties/WoodType/SPRUCE +FD: net/minecraft/world/level/block/state/properties/WoodType/f_61832_ net/minecraft/world/level/block/state/properties/WoodType/BIRCH +FD: net/minecraft/world/level/block/state/properties/WoodType/f_61833_ net/minecraft/world/level/block/state/properties/WoodType/ACACIA +FD: net/minecraft/world/level/block/state/properties/WoodType/f_61834_ net/minecraft/world/level/block/state/properties/WoodType/JUNGLE +FD: net/minecraft/world/level/block/state/properties/WoodType/f_61835_ net/minecraft/world/level/block/state/properties/WoodType/DARK_OAK +FD: net/minecraft/world/level/block/state/properties/WoodType/f_61836_ net/minecraft/world/level/block/state/properties/WoodType/CRIMSON +FD: net/minecraft/world/level/block/state/properties/WoodType/f_61837_ net/minecraft/world/level/block/state/properties/WoodType/WARPED +FD: net/minecraft/world/level/block/state/properties/WoodType/f_61838_ net/minecraft/world/level/block/state/properties/WoodType/VALUES +FD: net/minecraft/world/level/block/state/properties/WoodType/f_61839_ net/minecraft/world/level/block/state/properties/WoodType/name +FD: net/minecraft/world/level/border/BorderChangeListener$DelegateBorderChangeListener/f_61864_ net/minecraft/world/level/border/BorderChangeListener$DelegateBorderChangeListener/worldBorder +FD: net/minecraft/world/level/border/BorderStatus/$VALUES net/minecraft/world/level/border/BorderStatus/$VALUES +FD: net/minecraft/world/level/border/BorderStatus/GROWING net/minecraft/world/level/border/BorderStatus/GROWING +FD: net/minecraft/world/level/border/BorderStatus/SHRINKING net/minecraft/world/level/border/BorderStatus/SHRINKING +FD: net/minecraft/world/level/border/BorderStatus/STATIONARY net/minecraft/world/level/border/BorderStatus/STATIONARY +FD: net/minecraft/world/level/border/BorderStatus/f_61894_ net/minecraft/world/level/border/BorderStatus/color +FD: net/minecraft/world/level/border/WorldBorder/f_156092_ net/minecraft/world/level/border/WorldBorder/MAX_SIZE +FD: net/minecraft/world/level/border/WorldBorder/f_196705_ net/minecraft/world/level/border/WorldBorder/MAX_CENTER_COORDINATE +FD: net/minecraft/world/level/border/WorldBorder/f_61905_ net/minecraft/world/level/border/WorldBorder/listeners +FD: net/minecraft/world/level/border/WorldBorder/f_61906_ net/minecraft/world/level/border/WorldBorder/damagePerBlock +FD: net/minecraft/world/level/border/WorldBorder/f_61907_ net/minecraft/world/level/border/WorldBorder/DEFAULT_SETTINGS +FD: net/minecraft/world/level/border/WorldBorder/f_61908_ net/minecraft/world/level/border/WorldBorder/damageSafeZone +FD: net/minecraft/world/level/border/WorldBorder/f_61909_ net/minecraft/world/level/border/WorldBorder/warningTime +FD: net/minecraft/world/level/border/WorldBorder/f_61910_ net/minecraft/world/level/border/WorldBorder/warningBlocks +FD: net/minecraft/world/level/border/WorldBorder/f_61911_ net/minecraft/world/level/border/WorldBorder/centerX +FD: net/minecraft/world/level/border/WorldBorder/f_61912_ net/minecraft/world/level/border/WorldBorder/centerZ +FD: net/minecraft/world/level/border/WorldBorder/f_61913_ net/minecraft/world/level/border/WorldBorder/absoluteMaxSize +FD: net/minecraft/world/level/border/WorldBorder/f_61914_ net/minecraft/world/level/border/WorldBorder/extent +FD: net/minecraft/world/level/border/WorldBorder$MovingBorderExtent/f_61971_ net/minecraft/world/level/border/WorldBorder$MovingBorderExtent/this$0 +FD: net/minecraft/world/level/border/WorldBorder$MovingBorderExtent/f_61972_ net/minecraft/world/level/border/WorldBorder$MovingBorderExtent/from +FD: net/minecraft/world/level/border/WorldBorder$MovingBorderExtent/f_61973_ net/minecraft/world/level/border/WorldBorder$MovingBorderExtent/to +FD: net/minecraft/world/level/border/WorldBorder$MovingBorderExtent/f_61974_ net/minecraft/world/level/border/WorldBorder$MovingBorderExtent/lerpEnd +FD: net/minecraft/world/level/border/WorldBorder$MovingBorderExtent/f_61975_ net/minecraft/world/level/border/WorldBorder$MovingBorderExtent/lerpBegin +FD: net/minecraft/world/level/border/WorldBorder$MovingBorderExtent/f_61976_ net/minecraft/world/level/border/WorldBorder$MovingBorderExtent/lerpDuration +FD: net/minecraft/world/level/border/WorldBorder$Settings/f_62001_ net/minecraft/world/level/border/WorldBorder$Settings/centerX +FD: net/minecraft/world/level/border/WorldBorder$Settings/f_62002_ net/minecraft/world/level/border/WorldBorder$Settings/centerZ +FD: net/minecraft/world/level/border/WorldBorder$Settings/f_62003_ net/minecraft/world/level/border/WorldBorder$Settings/damagePerBlock +FD: net/minecraft/world/level/border/WorldBorder$Settings/f_62004_ net/minecraft/world/level/border/WorldBorder$Settings/safeZone +FD: net/minecraft/world/level/border/WorldBorder$Settings/f_62005_ net/minecraft/world/level/border/WorldBorder$Settings/warningBlocks +FD: net/minecraft/world/level/border/WorldBorder$Settings/f_62006_ net/minecraft/world/level/border/WorldBorder$Settings/warningTime +FD: net/minecraft/world/level/border/WorldBorder$Settings/f_62007_ net/minecraft/world/level/border/WorldBorder$Settings/size +FD: net/minecraft/world/level/border/WorldBorder$Settings/f_62008_ net/minecraft/world/level/border/WorldBorder$Settings/sizeLerpTime +FD: net/minecraft/world/level/border/WorldBorder$Settings/f_62009_ net/minecraft/world/level/border/WorldBorder$Settings/sizeLerpTarget +FD: net/minecraft/world/level/border/WorldBorder$StaticBorderExtent/f_62050_ net/minecraft/world/level/border/WorldBorder$StaticBorderExtent/this$0 +FD: net/minecraft/world/level/border/WorldBorder$StaticBorderExtent/f_62051_ net/minecraft/world/level/border/WorldBorder$StaticBorderExtent/size +FD: net/minecraft/world/level/border/WorldBorder$StaticBorderExtent/f_62052_ net/minecraft/world/level/border/WorldBorder$StaticBorderExtent/minX +FD: net/minecraft/world/level/border/WorldBorder$StaticBorderExtent/f_62053_ net/minecraft/world/level/border/WorldBorder$StaticBorderExtent/minZ +FD: net/minecraft/world/level/border/WorldBorder$StaticBorderExtent/f_62054_ net/minecraft/world/level/border/WorldBorder$StaticBorderExtent/maxX +FD: net/minecraft/world/level/border/WorldBorder$StaticBorderExtent/f_62055_ net/minecraft/world/level/border/WorldBorder$StaticBorderExtent/maxZ +FD: net/minecraft/world/level/border/WorldBorder$StaticBorderExtent/f_62056_ net/minecraft/world/level/border/WorldBorder$StaticBorderExtent/shape +FD: net/minecraft/world/level/chunk/BulkSectionAccess/f_156098_ net/minecraft/world/level/chunk/BulkSectionAccess/level +FD: net/minecraft/world/level/chunk/BulkSectionAccess/f_156099_ net/minecraft/world/level/chunk/BulkSectionAccess/acquiredSections +FD: net/minecraft/world/level/chunk/BulkSectionAccess/f_156100_ net/minecraft/world/level/chunk/BulkSectionAccess/lastSection +FD: net/minecraft/world/level/chunk/BulkSectionAccess/f_156101_ net/minecraft/world/level/chunk/BulkSectionAccess/lastSectionKey +FD: net/minecraft/world/level/chunk/CarvingMask/f_187576_ net/minecraft/world/level/chunk/CarvingMask/minY +FD: net/minecraft/world/level/chunk/CarvingMask/f_187577_ net/minecraft/world/level/chunk/CarvingMask/mask +FD: net/minecraft/world/level/chunk/CarvingMask/f_196706_ net/minecraft/world/level/chunk/CarvingMask/additionalMask +FD: net/minecraft/world/level/chunk/ChunkAccess/f_187602_ net/minecraft/world/level/chunk/ChunkAccess/postProcessing +FD: net/minecraft/world/level/chunk/ChunkAccess/f_187603_ net/minecraft/world/level/chunk/ChunkAccess/unsaved +FD: net/minecraft/world/level/chunk/ChunkAccess/f_187604_ net/minecraft/world/level/chunk/ChunkAccess/chunkPos +FD: net/minecraft/world/level/chunk/ChunkAccess/f_187605_ net/minecraft/world/level/chunk/ChunkAccess/noiseChunk +FD: net/minecraft/world/level/chunk/ChunkAccess/f_187606_ net/minecraft/world/level/chunk/ChunkAccess/upgradeData +FD: net/minecraft/world/level/chunk/ChunkAccess/f_187607_ net/minecraft/world/level/chunk/ChunkAccess/blendingData +FD: net/minecraft/world/level/chunk/ChunkAccess/f_187608_ net/minecraft/world/level/chunk/ChunkAccess/heightmaps +FD: net/minecraft/world/level/chunk/ChunkAccess/f_187609_ net/minecraft/world/level/chunk/ChunkAccess/pendingBlockEntities +FD: net/minecraft/world/level/chunk/ChunkAccess/f_187610_ net/minecraft/world/level/chunk/ChunkAccess/blockEntities +FD: net/minecraft/world/level/chunk/ChunkAccess/f_187611_ net/minecraft/world/level/chunk/ChunkAccess/levelHeightAccessor +FD: net/minecraft/world/level/chunk/ChunkAccess/f_187612_ net/minecraft/world/level/chunk/ChunkAccess/sections +FD: net/minecraft/world/level/chunk/ChunkAccess/f_187613_ net/minecraft/world/level/chunk/ChunkAccess/LOGGER +FD: net/minecraft/world/level/chunk/ChunkAccess/f_187614_ net/minecraft/world/level/chunk/ChunkAccess/isLightCorrect +FD: net/minecraft/world/level/chunk/ChunkAccess/f_187615_ net/minecraft/world/level/chunk/ChunkAccess/inhabitedTime +FD: net/minecraft/world/level/chunk/ChunkAccess/f_187617_ net/minecraft/world/level/chunk/ChunkAccess/structureStarts +FD: net/minecraft/world/level/chunk/ChunkAccess/f_187618_ net/minecraft/world/level/chunk/ChunkAccess/structuresRefences +FD: net/minecraft/world/level/chunk/ChunkAccess/f_207932_ net/minecraft/world/level/chunk/ChunkAccess/EMPTY_REFERENCE_SET +FD: net/minecraft/world/level/chunk/ChunkAccess/f_223003_ net/minecraft/world/level/chunk/ChunkAccess/carverBiomeSettings +FD: net/minecraft/world/level/chunk/ChunkAccess/f_279635_ net/minecraft/world/level/chunk/ChunkAccess/NO_FILLED_SECTION +FD: net/minecraft/world/level/chunk/ChunkAccess/f_283754_ net/minecraft/world/level/chunk/ChunkAccess/skyLightSources +FD: net/minecraft/world/level/chunk/ChunkAccess$TicksToSave/f_187680_ net/minecraft/world/level/chunk/ChunkAccess$TicksToSave/blocks +FD: net/minecraft/world/level/chunk/ChunkAccess$TicksToSave/f_187681_ net/minecraft/world/level/chunk/ChunkAccess$TicksToSave/fluids +FD: net/minecraft/world/level/chunk/ChunkGenerator/f_223020_ net/minecraft/world/level/chunk/ChunkGenerator/featuresPerStep +FD: net/minecraft/world/level/chunk/ChunkGenerator/f_223021_ net/minecraft/world/level/chunk/ChunkGenerator/generationSettingsGetter +FD: net/minecraft/world/level/chunk/ChunkGenerator/f_62136_ net/minecraft/world/level/chunk/ChunkGenerator/CODEC +FD: net/minecraft/world/level/chunk/ChunkGenerator/f_62137_ net/minecraft/world/level/chunk/ChunkGenerator/biomeSource +FD: net/minecraft/world/level/chunk/ChunkGeneratorStructureState/f_254647_ net/minecraft/world/level/chunk/ChunkGeneratorStructureState/levelSeed +FD: net/minecraft/world/level/chunk/ChunkGeneratorStructureState/f_254674_ net/minecraft/world/level/chunk/ChunkGeneratorStructureState/ringPositions +FD: net/minecraft/world/level/chunk/ChunkGeneratorStructureState/f_254677_ net/minecraft/world/level/chunk/ChunkGeneratorStructureState/randomState +FD: net/minecraft/world/level/chunk/ChunkGeneratorStructureState/f_254681_ net/minecraft/world/level/chunk/ChunkGeneratorStructureState/biomeSource +FD: net/minecraft/world/level/chunk/ChunkGeneratorStructureState/f_254706_ net/minecraft/world/level/chunk/ChunkGeneratorStructureState/LOGGER +FD: net/minecraft/world/level/chunk/ChunkGeneratorStructureState/f_254708_ net/minecraft/world/level/chunk/ChunkGeneratorStructureState/possibleStructureSets +FD: net/minecraft/world/level/chunk/ChunkGeneratorStructureState/f_254710_ net/minecraft/world/level/chunk/ChunkGeneratorStructureState/hasGeneratedPositions +FD: net/minecraft/world/level/chunk/ChunkGeneratorStructureState/f_254729_ net/minecraft/world/level/chunk/ChunkGeneratorStructureState/placementsForStructure +FD: net/minecraft/world/level/chunk/ChunkGeneratorStructureState/f_254746_ net/minecraft/world/level/chunk/ChunkGeneratorStructureState/concentricRingsSeed +FD: net/minecraft/world/level/chunk/ChunkStatus/f_187758_ net/minecraft/world/level/chunk/ChunkStatus/MAX_STRUCTURE_DISTANCE +FD: net/minecraft/world/level/chunk/ChunkStatus/f_279602_ net/minecraft/world/level/chunk/ChunkStatus/hasLoadDependencies +FD: net/minecraft/world/level/chunk/ChunkStatus/f_279614_ net/minecraft/world/level/chunk/ChunkStatus/INITIALIZE_LIGHT +FD: net/minecraft/world/level/chunk/ChunkStatus/f_62314_ net/minecraft/world/level/chunk/ChunkStatus/EMPTY +FD: net/minecraft/world/level/chunk/ChunkStatus/f_62315_ net/minecraft/world/level/chunk/ChunkStatus/STRUCTURE_STARTS +FD: net/minecraft/world/level/chunk/ChunkStatus/f_62316_ net/minecraft/world/level/chunk/ChunkStatus/STRUCTURE_REFERENCES +FD: net/minecraft/world/level/chunk/ChunkStatus/f_62317_ net/minecraft/world/level/chunk/ChunkStatus/BIOMES +FD: net/minecraft/world/level/chunk/ChunkStatus/f_62318_ net/minecraft/world/level/chunk/ChunkStatus/NOISE +FD: net/minecraft/world/level/chunk/ChunkStatus/f_62319_ net/minecraft/world/level/chunk/ChunkStatus/SURFACE +FD: net/minecraft/world/level/chunk/ChunkStatus/f_62320_ net/minecraft/world/level/chunk/ChunkStatus/CARVERS +FD: net/minecraft/world/level/chunk/ChunkStatus/f_62322_ net/minecraft/world/level/chunk/ChunkStatus/FEATURES +FD: net/minecraft/world/level/chunk/ChunkStatus/f_62323_ net/minecraft/world/level/chunk/ChunkStatus/LIGHT +FD: net/minecraft/world/level/chunk/ChunkStatus/f_62324_ net/minecraft/world/level/chunk/ChunkStatus/SPAWN +FD: net/minecraft/world/level/chunk/ChunkStatus/f_62326_ net/minecraft/world/level/chunk/ChunkStatus/FULL +FD: net/minecraft/world/level/chunk/ChunkStatus/f_62327_ net/minecraft/world/level/chunk/ChunkStatus/PRE_FEATURES +FD: net/minecraft/world/level/chunk/ChunkStatus/f_62328_ net/minecraft/world/level/chunk/ChunkStatus/POST_FEATURES +FD: net/minecraft/world/level/chunk/ChunkStatus/f_62329_ net/minecraft/world/level/chunk/ChunkStatus/PASSTHROUGH_LOAD_TASK +FD: net/minecraft/world/level/chunk/ChunkStatus/f_62330_ net/minecraft/world/level/chunk/ChunkStatus/STATUS_BY_RANGE +FD: net/minecraft/world/level/chunk/ChunkStatus/f_62331_ net/minecraft/world/level/chunk/ChunkStatus/RANGE_BY_STATUS +FD: net/minecraft/world/level/chunk/ChunkStatus/f_62333_ net/minecraft/world/level/chunk/ChunkStatus/index +FD: net/minecraft/world/level/chunk/ChunkStatus/f_62334_ net/minecraft/world/level/chunk/ChunkStatus/parent +FD: net/minecraft/world/level/chunk/ChunkStatus/f_62335_ net/minecraft/world/level/chunk/ChunkStatus/generationTask +FD: net/minecraft/world/level/chunk/ChunkStatus/f_62336_ net/minecraft/world/level/chunk/ChunkStatus/loadingTask +FD: net/minecraft/world/level/chunk/ChunkStatus/f_62337_ net/minecraft/world/level/chunk/ChunkStatus/range +FD: net/minecraft/world/level/chunk/ChunkStatus/f_62338_ net/minecraft/world/level/chunk/ChunkStatus/chunkType +FD: net/minecraft/world/level/chunk/ChunkStatus/f_62339_ net/minecraft/world/level/chunk/ChunkStatus/heightmapsAfter +FD: net/minecraft/world/level/chunk/ChunkStatus$ChunkType/$VALUES net/minecraft/world/level/chunk/ChunkStatus$ChunkType/$VALUES +FD: net/minecraft/world/level/chunk/ChunkStatus$ChunkType/LEVELCHUNK net/minecraft/world/level/chunk/ChunkStatus$ChunkType/LEVELCHUNK +FD: net/minecraft/world/level/chunk/ChunkStatus$ChunkType/PROTOCHUNK net/minecraft/world/level/chunk/ChunkStatus$ChunkType/PROTOCHUNK +FD: net/minecraft/world/level/chunk/DataLayer/f_156338_ net/minecraft/world/level/chunk/DataLayer/SIZE +FD: net/minecraft/world/level/chunk/DataLayer/f_156339_ net/minecraft/world/level/chunk/DataLayer/LAYER_SIZE +FD: net/minecraft/world/level/chunk/DataLayer/f_156340_ net/minecraft/world/level/chunk/DataLayer/NIBBLE_SIZE +FD: net/minecraft/world/level/chunk/DataLayer/f_182480_ net/minecraft/world/level/chunk/DataLayer/LAYER_COUNT +FD: net/minecraft/world/level/chunk/DataLayer/f_279645_ net/minecraft/world/level/chunk/DataLayer/defaultValue +FD: net/minecraft/world/level/chunk/DataLayer/f_62551_ net/minecraft/world/level/chunk/DataLayer/data +FD: net/minecraft/world/level/chunk/EmptyLevelChunk/f_204420_ net/minecraft/world/level/chunk/EmptyLevelChunk/biome +FD: net/minecraft/world/level/chunk/GlobalPalette/f_62639_ net/minecraft/world/level/chunk/GlobalPalette/registry +FD: net/minecraft/world/level/chunk/HashMapPalette/f_62657_ net/minecraft/world/level/chunk/HashMapPalette/registry +FD: net/minecraft/world/level/chunk/HashMapPalette/f_62658_ net/minecraft/world/level/chunk/HashMapPalette/values +FD: net/minecraft/world/level/chunk/HashMapPalette/f_62659_ net/minecraft/world/level/chunk/HashMapPalette/resizeHandler +FD: net/minecraft/world/level/chunk/HashMapPalette/f_62662_ net/minecraft/world/level/chunk/HashMapPalette/bits +FD: net/minecraft/world/level/chunk/ImposterProtoChunk/f_187918_ net/minecraft/world/level/chunk/ImposterProtoChunk/allowWrites +FD: net/minecraft/world/level/chunk/ImposterProtoChunk/f_62685_ net/minecraft/world/level/chunk/ImposterProtoChunk/wrapped +FD: net/minecraft/world/level/chunk/LevelChunk/f_156361_ net/minecraft/world/level/chunk/LevelChunk/NULL_TICKER +FD: net/minecraft/world/level/chunk/LevelChunk/f_156362_ net/minecraft/world/level/chunk/LevelChunk/tickersInLevel +FD: net/minecraft/world/level/chunk/LevelChunk/f_187943_ net/minecraft/world/level/chunk/LevelChunk/fluidTicks +FD: net/minecraft/world/level/chunk/LevelChunk/f_244451_ net/minecraft/world/level/chunk/LevelChunk/gameEventListenerRegistrySections +FD: net/minecraft/world/level/chunk/LevelChunk/f_62771_ net/minecraft/world/level/chunk/LevelChunk/LOGGER +FD: net/minecraft/world/level/chunk/LevelChunk/f_62775_ net/minecraft/world/level/chunk/LevelChunk/loaded +FD: net/minecraft/world/level/chunk/LevelChunk/f_62776_ net/minecraft/world/level/chunk/LevelChunk/level +FD: net/minecraft/world/level/chunk/LevelChunk/f_62784_ net/minecraft/world/level/chunk/LevelChunk/blockTicks +FD: net/minecraft/world/level/chunk/LevelChunk/f_62790_ net/minecraft/world/level/chunk/LevelChunk/fullStatus +FD: net/minecraft/world/level/chunk/LevelChunk/f_62791_ net/minecraft/world/level/chunk/LevelChunk/postLoad +FD: net/minecraft/world/level/chunk/LevelChunk$BoundTickingBlockEntity/f_156427_ net/minecraft/world/level/chunk/LevelChunk$BoundTickingBlockEntity/this$0 +FD: net/minecraft/world/level/chunk/LevelChunk$BoundTickingBlockEntity/f_156428_ net/minecraft/world/level/chunk/LevelChunk$BoundTickingBlockEntity/blockEntity +FD: net/minecraft/world/level/chunk/LevelChunk$BoundTickingBlockEntity/f_156429_ net/minecraft/world/level/chunk/LevelChunk$BoundTickingBlockEntity/ticker +FD: net/minecraft/world/level/chunk/LevelChunk$BoundTickingBlockEntity/f_156430_ net/minecraft/world/level/chunk/LevelChunk$BoundTickingBlockEntity/loggedInvalidBlockState +FD: net/minecraft/world/level/chunk/LevelChunk$EntityCreationType/$VALUES net/minecraft/world/level/chunk/LevelChunk$EntityCreationType/$VALUES +FD: net/minecraft/world/level/chunk/LevelChunk$EntityCreationType/CHECK net/minecraft/world/level/chunk/LevelChunk$EntityCreationType/CHECK +FD: net/minecraft/world/level/chunk/LevelChunk$EntityCreationType/IMMEDIATE net/minecraft/world/level/chunk/LevelChunk$EntityCreationType/IMMEDIATE +FD: net/minecraft/world/level/chunk/LevelChunk$EntityCreationType/QUEUED net/minecraft/world/level/chunk/LevelChunk$EntityCreationType/QUEUED +FD: net/minecraft/world/level/chunk/LevelChunk$RebindableTickingBlockEntityWrapper/f_156443_ net/minecraft/world/level/chunk/LevelChunk$RebindableTickingBlockEntityWrapper/this$0 +FD: net/minecraft/world/level/chunk/LevelChunk$RebindableTickingBlockEntityWrapper/f_156444_ net/minecraft/world/level/chunk/LevelChunk$RebindableTickingBlockEntityWrapper/ticker +FD: net/minecraft/world/level/chunk/LevelChunkSection/f_156455_ net/minecraft/world/level/chunk/LevelChunkSection/SECTION_WIDTH +FD: net/minecraft/world/level/chunk/LevelChunkSection/f_156456_ net/minecraft/world/level/chunk/LevelChunkSection/SECTION_HEIGHT +FD: net/minecraft/world/level/chunk/LevelChunkSection/f_156457_ net/minecraft/world/level/chunk/LevelChunkSection/SECTION_SIZE +FD: net/minecraft/world/level/chunk/LevelChunkSection/f_187994_ net/minecraft/world/level/chunk/LevelChunkSection/BIOME_CONTAINER_BITS +FD: net/minecraft/world/level/chunk/LevelChunkSection/f_187995_ net/minecraft/world/level/chunk/LevelChunkSection/biomes +FD: net/minecraft/world/level/chunk/LevelChunkSection/f_62969_ net/minecraft/world/level/chunk/LevelChunkSection/nonEmptyBlockCount +FD: net/minecraft/world/level/chunk/LevelChunkSection/f_62970_ net/minecraft/world/level/chunk/LevelChunkSection/tickingBlockCount +FD: net/minecraft/world/level/chunk/LevelChunkSection/f_62971_ net/minecraft/world/level/chunk/LevelChunkSection/tickingFluidCount +FD: net/minecraft/world/level/chunk/LevelChunkSection/f_62972_ net/minecraft/world/level/chunk/LevelChunkSection/states +FD: net/minecraft/world/level/chunk/LevelChunkSection$1BlockCounter/f_204437_ net/minecraft/world/level/chunk/LevelChunkSection$1BlockCounter/nonEmptyBlockCount +FD: net/minecraft/world/level/chunk/LevelChunkSection$1BlockCounter/f_204438_ net/minecraft/world/level/chunk/LevelChunkSection$1BlockCounter/tickingBlockCount +FD: net/minecraft/world/level/chunk/LevelChunkSection$1BlockCounter/f_204439_ net/minecraft/world/level/chunk/LevelChunkSection$1BlockCounter/tickingFluidCount +FD: net/minecraft/world/level/chunk/LevelChunkSection$1BlockCounter/f_204440_ net/minecraft/world/level/chunk/LevelChunkSection$1BlockCounter/this$0 +FD: net/minecraft/world/level/chunk/LinearPalette/f_63025_ net/minecraft/world/level/chunk/LinearPalette/registry +FD: net/minecraft/world/level/chunk/LinearPalette/f_63026_ net/minecraft/world/level/chunk/LinearPalette/values +FD: net/minecraft/world/level/chunk/LinearPalette/f_63027_ net/minecraft/world/level/chunk/LinearPalette/resizeHandler +FD: net/minecraft/world/level/chunk/LinearPalette/f_63029_ net/minecraft/world/level/chunk/LinearPalette/bits +FD: net/minecraft/world/level/chunk/LinearPalette/f_63030_ net/minecraft/world/level/chunk/LinearPalette/size +FD: net/minecraft/world/level/chunk/PalettedContainer/f_188031_ net/minecraft/world/level/chunk/PalettedContainer/MIN_PALETTE_BITS +FD: net/minecraft/world/level/chunk/PalettedContainer/f_188032_ net/minecraft/world/level/chunk/PalettedContainer/data +FD: net/minecraft/world/level/chunk/PalettedContainer/f_188033_ net/minecraft/world/level/chunk/PalettedContainer/strategy +FD: net/minecraft/world/level/chunk/PalettedContainer/f_199441_ net/minecraft/world/level/chunk/PalettedContainer/threadingDetector +FD: net/minecraft/world/level/chunk/PalettedContainer/f_63070_ net/minecraft/world/level/chunk/PalettedContainer/dummyPaletteResize +FD: net/minecraft/world/level/chunk/PalettedContainer/f_63071_ net/minecraft/world/level/chunk/PalettedContainer/registry +FD: net/minecraft/world/level/chunk/PalettedContainer$Configuration/f_188085_ net/minecraft/world/level/chunk/PalettedContainer$Configuration/factory +FD: net/minecraft/world/level/chunk/PalettedContainer$Configuration/f_188086_ net/minecraft/world/level/chunk/PalettedContainer$Configuration/bits +FD: net/minecraft/world/level/chunk/PalettedContainer$Data/f_188100_ net/minecraft/world/level/chunk/PalettedContainer$Data/configuration +FD: net/minecraft/world/level/chunk/PalettedContainer$Data/f_188101_ net/minecraft/world/level/chunk/PalettedContainer$Data/storage +FD: net/minecraft/world/level/chunk/PalettedContainer$Data/f_188102_ net/minecraft/world/level/chunk/PalettedContainer$Data/palette +FD: net/minecraft/world/level/chunk/PalettedContainer$Strategy/f_188134_ net/minecraft/world/level/chunk/PalettedContainer$Strategy/SINGLE_VALUE_PALETTE_FACTORY +FD: net/minecraft/world/level/chunk/PalettedContainer$Strategy/f_188135_ net/minecraft/world/level/chunk/PalettedContainer$Strategy/LINEAR_PALETTE_FACTORY +FD: net/minecraft/world/level/chunk/PalettedContainer$Strategy/f_188136_ net/minecraft/world/level/chunk/PalettedContainer$Strategy/HASHMAP_PALETTE_FACTORY +FD: net/minecraft/world/level/chunk/PalettedContainer$Strategy/f_188137_ net/minecraft/world/level/chunk/PalettedContainer$Strategy/SECTION_STATES +FD: net/minecraft/world/level/chunk/PalettedContainer$Strategy/f_188138_ net/minecraft/world/level/chunk/PalettedContainer$Strategy/SECTION_BIOMES +FD: net/minecraft/world/level/chunk/PalettedContainer$Strategy/f_188139_ net/minecraft/world/level/chunk/PalettedContainer$Strategy/GLOBAL_PALETTE_FACTORY +FD: net/minecraft/world/level/chunk/PalettedContainer$Strategy/f_188140_ net/minecraft/world/level/chunk/PalettedContainer$Strategy/sizeBits +FD: net/minecraft/world/level/chunk/PalettedContainerRO$PackedData/f_238179_ net/minecraft/world/level/chunk/PalettedContainerRO$PackedData/storage +FD: net/minecraft/world/level/chunk/PalettedContainerRO$PackedData/f_238184_ net/minecraft/world/level/chunk/PalettedContainerRO$PackedData/paletteEntries +FD: net/minecraft/world/level/chunk/ProtoChunk/f_188164_ net/minecraft/world/level/chunk/ProtoChunk/belowZeroRetrogen +FD: net/minecraft/world/level/chunk/ProtoChunk/f_188165_ net/minecraft/world/level/chunk/ProtoChunk/fluidTicks +FD: net/minecraft/world/level/chunk/ProtoChunk/f_63151_ net/minecraft/world/level/chunk/ProtoChunk/lightEngine +FD: net/minecraft/world/level/chunk/ProtoChunk/f_63153_ net/minecraft/world/level/chunk/ProtoChunk/status +FD: net/minecraft/world/level/chunk/ProtoChunk/f_63157_ net/minecraft/world/level/chunk/ProtoChunk/entities +FD: net/minecraft/world/level/chunk/ProtoChunk/f_63163_ net/minecraft/world/level/chunk/ProtoChunk/blockTicks +FD: net/minecraft/world/level/chunk/ProtoChunk/f_63166_ net/minecraft/world/level/chunk/ProtoChunk/carvingMasks +FD: net/minecraft/world/level/chunk/SingleValuePalette/f_188203_ net/minecraft/world/level/chunk/SingleValuePalette/registry +FD: net/minecraft/world/level/chunk/SingleValuePalette/f_188204_ net/minecraft/world/level/chunk/SingleValuePalette/value +FD: net/minecraft/world/level/chunk/SingleValuePalette/f_188205_ net/minecraft/world/level/chunk/SingleValuePalette/resizeHandler +FD: net/minecraft/world/level/chunk/UpgradeData/f_156504_ net/minecraft/world/level/chunk/UpgradeData/TAG_INDICES +FD: net/minecraft/world/level/chunk/UpgradeData/f_208118_ net/minecraft/world/level/chunk/UpgradeData/neighborBlockTicks +FD: net/minecraft/world/level/chunk/UpgradeData/f_208119_ net/minecraft/world/level/chunk/UpgradeData/neighborFluidTicks +FD: net/minecraft/world/level/chunk/UpgradeData/f_63320_ net/minecraft/world/level/chunk/UpgradeData/EMPTY +FD: net/minecraft/world/level/chunk/UpgradeData/f_63321_ net/minecraft/world/level/chunk/UpgradeData/LOGGER +FD: net/minecraft/world/level/chunk/UpgradeData/f_63322_ net/minecraft/world/level/chunk/UpgradeData/DIRECTIONS +FD: net/minecraft/world/level/chunk/UpgradeData/f_63323_ net/minecraft/world/level/chunk/UpgradeData/sides +FD: net/minecraft/world/level/chunk/UpgradeData/f_63324_ net/minecraft/world/level/chunk/UpgradeData/index +FD: net/minecraft/world/level/chunk/UpgradeData/f_63325_ net/minecraft/world/level/chunk/UpgradeData/MAP +FD: net/minecraft/world/level/chunk/UpgradeData/f_63326_ net/minecraft/world/level/chunk/UpgradeData/CHUNKY_FIXERS +FD: net/minecraft/world/level/chunk/UpgradeData$BlockFixers/$VALUES net/minecraft/world/level/chunk/UpgradeData$BlockFixers/$VALUES +FD: net/minecraft/world/level/chunk/UpgradeData$BlockFixers/BLACKLIST net/minecraft/world/level/chunk/UpgradeData$BlockFixers/BLACKLIST +FD: net/minecraft/world/level/chunk/UpgradeData$BlockFixers/CHEST net/minecraft/world/level/chunk/UpgradeData$BlockFixers/CHEST +FD: net/minecraft/world/level/chunk/UpgradeData$BlockFixers/DEFAULT net/minecraft/world/level/chunk/UpgradeData$BlockFixers/DEFAULT +FD: net/minecraft/world/level/chunk/UpgradeData$BlockFixers/LEAVES net/minecraft/world/level/chunk/UpgradeData$BlockFixers/LEAVES +FD: net/minecraft/world/level/chunk/UpgradeData$BlockFixers/STEM_BLOCK net/minecraft/world/level/chunk/UpgradeData$BlockFixers/STEM_BLOCK +FD: net/minecraft/world/level/chunk/UpgradeData$BlockFixers/f_63363_ net/minecraft/world/level/chunk/UpgradeData$BlockFixers/DIRECTIONS +FD: net/minecraft/world/level/chunk/UpgradeData$BlockFixers$4/f_63422_ net/minecraft/world/level/chunk/UpgradeData$BlockFixers$4/queue +FD: net/minecraft/world/level/chunk/storage/ChunkSerializer/f_156511_ net/minecraft/world/level/chunk/storage/ChunkSerializer/TAG_UPGRADE_DATA +FD: net/minecraft/world/level/chunk/storage/ChunkSerializer/f_188227_ net/minecraft/world/level/chunk/storage/ChunkSerializer/BLOCK_STATE_CODEC +FD: net/minecraft/world/level/chunk/storage/ChunkSerializer/f_188228_ net/minecraft/world/level/chunk/storage/ChunkSerializer/BLOCK_TICKS_TAG +FD: net/minecraft/world/level/chunk/storage/ChunkSerializer/f_188229_ net/minecraft/world/level/chunk/storage/ChunkSerializer/FLUID_TICKS_TAG +FD: net/minecraft/world/level/chunk/storage/ChunkSerializer/f_223441_ net/minecraft/world/level/chunk/storage/ChunkSerializer/X_POS_TAG +FD: net/minecraft/world/level/chunk/storage/ChunkSerializer/f_223442_ net/minecraft/world/level/chunk/storage/ChunkSerializer/Z_POS_TAG +FD: net/minecraft/world/level/chunk/storage/ChunkSerializer/f_223443_ net/minecraft/world/level/chunk/storage/ChunkSerializer/HEIGHTMAPS_TAG +FD: net/minecraft/world/level/chunk/storage/ChunkSerializer/f_223444_ net/minecraft/world/level/chunk/storage/ChunkSerializer/IS_LIGHT_ON_TAG +FD: net/minecraft/world/level/chunk/storage/ChunkSerializer/f_223445_ net/minecraft/world/level/chunk/storage/ChunkSerializer/SECTIONS_TAG +FD: net/minecraft/world/level/chunk/storage/ChunkSerializer/f_223446_ net/minecraft/world/level/chunk/storage/ChunkSerializer/BLOCK_LIGHT_TAG +FD: net/minecraft/world/level/chunk/storage/ChunkSerializer/f_223447_ net/minecraft/world/level/chunk/storage/ChunkSerializer/SKY_LIGHT_TAG +FD: net/minecraft/world/level/chunk/storage/ChunkSerializer/f_63449_ net/minecraft/world/level/chunk/storage/ChunkSerializer/LOGGER +FD: net/minecraft/world/level/chunk/storage/ChunkStorage/f_196910_ net/minecraft/world/level/chunk/storage/ChunkStorage/LAST_MONOLYTH_STRUCTURE_DATA_VERSION +FD: net/minecraft/world/level/chunk/storage/ChunkStorage/f_63495_ net/minecraft/world/level/chunk/storage/ChunkStorage/worker +FD: net/minecraft/world/level/chunk/storage/ChunkStorage/f_63496_ net/minecraft/world/level/chunk/storage/ChunkStorage/fixerUpper +FD: net/minecraft/world/level/chunk/storage/ChunkStorage/f_63497_ net/minecraft/world/level/chunk/storage/ChunkStorage/legacyStructureHandler +FD: net/minecraft/world/level/chunk/storage/EntityStorage/f_156534_ net/minecraft/world/level/chunk/storage/EntityStorage/fixerUpper +FD: net/minecraft/world/level/chunk/storage/EntityStorage/f_156535_ net/minecraft/world/level/chunk/storage/EntityStorage/LOGGER +FD: net/minecraft/world/level/chunk/storage/EntityStorage/f_156536_ net/minecraft/world/level/chunk/storage/EntityStorage/ENTITIES_TAG +FD: net/minecraft/world/level/chunk/storage/EntityStorage/f_156537_ net/minecraft/world/level/chunk/storage/EntityStorage/POSITION_TAG +FD: net/minecraft/world/level/chunk/storage/EntityStorage/f_156538_ net/minecraft/world/level/chunk/storage/EntityStorage/level +FD: net/minecraft/world/level/chunk/storage/EntityStorage/f_156539_ net/minecraft/world/level/chunk/storage/EntityStorage/worker +FD: net/minecraft/world/level/chunk/storage/EntityStorage/f_156540_ net/minecraft/world/level/chunk/storage/EntityStorage/emptyChunks +FD: net/minecraft/world/level/chunk/storage/EntityStorage/f_182485_ net/minecraft/world/level/chunk/storage/EntityStorage/entityDeserializerQueue +FD: net/minecraft/world/level/chunk/storage/IOWorker/f_223459_ net/minecraft/world/level/chunk/storage/IOWorker/regionCacheForBlender +FD: net/minecraft/world/level/chunk/storage/IOWorker/f_223460_ net/minecraft/world/level/chunk/storage/IOWorker/REGION_CACHE_SIZE +FD: net/minecraft/world/level/chunk/storage/IOWorker/f_63515_ net/minecraft/world/level/chunk/storage/IOWorker/LOGGER +FD: net/minecraft/world/level/chunk/storage/IOWorker/f_63516_ net/minecraft/world/level/chunk/storage/IOWorker/shutdownRequested +FD: net/minecraft/world/level/chunk/storage/IOWorker/f_63517_ net/minecraft/world/level/chunk/storage/IOWorker/mailbox +FD: net/minecraft/world/level/chunk/storage/IOWorker/f_63518_ net/minecraft/world/level/chunk/storage/IOWorker/storage +FD: net/minecraft/world/level/chunk/storage/IOWorker/f_63519_ net/minecraft/world/level/chunk/storage/IOWorker/pendingWrites +FD: net/minecraft/world/level/chunk/storage/IOWorker$PendingStore/f_63565_ net/minecraft/world/level/chunk/storage/IOWorker$PendingStore/data +FD: net/minecraft/world/level/chunk/storage/IOWorker$PendingStore/f_63566_ net/minecraft/world/level/chunk/storage/IOWorker$PendingStore/result +FD: net/minecraft/world/level/chunk/storage/IOWorker$Priority/$VALUES net/minecraft/world/level/chunk/storage/IOWorker$Priority/$VALUES +FD: net/minecraft/world/level/chunk/storage/IOWorker$Priority/BACKGROUND net/minecraft/world/level/chunk/storage/IOWorker$Priority/BACKGROUND +FD: net/minecraft/world/level/chunk/storage/IOWorker$Priority/FOREGROUND net/minecraft/world/level/chunk/storage/IOWorker$Priority/FOREGROUND +FD: net/minecraft/world/level/chunk/storage/IOWorker$Priority/SHUTDOWN net/minecraft/world/level/chunk/storage/IOWorker$Priority/SHUTDOWN +FD: net/minecraft/world/level/chunk/storage/RegionBitmap/f_63608_ net/minecraft/world/level/chunk/storage/RegionBitmap/used +FD: net/minecraft/world/level/chunk/storage/RegionFile/f_156604_ net/minecraft/world/level/chunk/storage/RegionFile/SECTOR_INTS +FD: net/minecraft/world/level/chunk/storage/RegionFile/f_156605_ net/minecraft/world/level/chunk/storage/RegionFile/SECTOR_BYTES +FD: net/minecraft/world/level/chunk/storage/RegionFile/f_156606_ net/minecraft/world/level/chunk/storage/RegionFile/CHUNK_HEADER_SIZE +FD: net/minecraft/world/level/chunk/storage/RegionFile/f_156607_ net/minecraft/world/level/chunk/storage/RegionFile/HEADER_OFFSET +FD: net/minecraft/world/level/chunk/storage/RegionFile/f_156608_ net/minecraft/world/level/chunk/storage/RegionFile/EXTERNAL_FILE_EXTENSION +FD: net/minecraft/world/level/chunk/storage/RegionFile/f_156609_ net/minecraft/world/level/chunk/storage/RegionFile/EXTERNAL_STREAM_FLAG +FD: net/minecraft/world/level/chunk/storage/RegionFile/f_156610_ net/minecraft/world/level/chunk/storage/RegionFile/EXTERNAL_CHUNK_THRESHOLD +FD: net/minecraft/world/level/chunk/storage/RegionFile/f_156611_ net/minecraft/world/level/chunk/storage/RegionFile/CHUNK_NOT_PRESENT +FD: net/minecraft/world/level/chunk/storage/RegionFile/f_63618_ net/minecraft/world/level/chunk/storage/RegionFile/usedSectors +FD: net/minecraft/world/level/chunk/storage/RegionFile/f_63619_ net/minecraft/world/level/chunk/storage/RegionFile/LOGGER +FD: net/minecraft/world/level/chunk/storage/RegionFile/f_63620_ net/minecraft/world/level/chunk/storage/RegionFile/PADDING_BUFFER +FD: net/minecraft/world/level/chunk/storage/RegionFile/f_63621_ net/minecraft/world/level/chunk/storage/RegionFile/file +FD: net/minecraft/world/level/chunk/storage/RegionFile/f_63622_ net/minecraft/world/level/chunk/storage/RegionFile/externalFileDir +FD: net/minecraft/world/level/chunk/storage/RegionFile/f_63623_ net/minecraft/world/level/chunk/storage/RegionFile/version +FD: net/minecraft/world/level/chunk/storage/RegionFile/f_63624_ net/minecraft/world/level/chunk/storage/RegionFile/header +FD: net/minecraft/world/level/chunk/storage/RegionFile/f_63625_ net/minecraft/world/level/chunk/storage/RegionFile/offsets +FD: net/minecraft/world/level/chunk/storage/RegionFile/f_63626_ net/minecraft/world/level/chunk/storage/RegionFile/timestamps +FD: net/minecraft/world/level/chunk/storage/RegionFile$ChunkBuffer/f_63692_ net/minecraft/world/level/chunk/storage/RegionFile$ChunkBuffer/this$0 +FD: net/minecraft/world/level/chunk/storage/RegionFile$ChunkBuffer/f_63693_ net/minecraft/world/level/chunk/storage/RegionFile$ChunkBuffer/pos +FD: net/minecraft/world/level/chunk/storage/RegionFileStorage/f_156615_ net/minecraft/world/level/chunk/storage/RegionFileStorage/ANVIL_EXTENSION +FD: net/minecraft/world/level/chunk/storage/RegionFileStorage/f_156616_ net/minecraft/world/level/chunk/storage/RegionFileStorage/MAX_CACHE_SIZE +FD: net/minecraft/world/level/chunk/storage/RegionFileStorage/f_63699_ net/minecraft/world/level/chunk/storage/RegionFileStorage/regionCache +FD: net/minecraft/world/level/chunk/storage/RegionFileStorage/f_63700_ net/minecraft/world/level/chunk/storage/RegionFileStorage/folder +FD: net/minecraft/world/level/chunk/storage/RegionFileStorage/f_63701_ net/minecraft/world/level/chunk/storage/RegionFileStorage/sync +FD: net/minecraft/world/level/chunk/storage/RegionFileVersion/f_63743_ net/minecraft/world/level/chunk/storage/RegionFileVersion/VERSION_GZIP +FD: net/minecraft/world/level/chunk/storage/RegionFileVersion/f_63744_ net/minecraft/world/level/chunk/storage/RegionFileVersion/VERSION_DEFLATE +FD: net/minecraft/world/level/chunk/storage/RegionFileVersion/f_63745_ net/minecraft/world/level/chunk/storage/RegionFileVersion/VERSION_NONE +FD: net/minecraft/world/level/chunk/storage/RegionFileVersion/f_63746_ net/minecraft/world/level/chunk/storage/RegionFileVersion/VERSIONS +FD: net/minecraft/world/level/chunk/storage/RegionFileVersion/f_63747_ net/minecraft/world/level/chunk/storage/RegionFileVersion/id +FD: net/minecraft/world/level/chunk/storage/RegionFileVersion/f_63748_ net/minecraft/world/level/chunk/storage/RegionFileVersion/inputWrapper +FD: net/minecraft/world/level/chunk/storage/RegionFileVersion/f_63749_ net/minecraft/world/level/chunk/storage/RegionFileVersion/outputWrapper +FD: net/minecraft/world/level/chunk/storage/SectionStorage/f_156617_ net/minecraft/world/level/chunk/storage/SectionStorage/SECTIONS_TAG +FD: net/minecraft/world/level/chunk/storage/SectionStorage/f_156618_ net/minecraft/world/level/chunk/storage/SectionStorage/levelHeightAccessor +FD: net/minecraft/world/level/chunk/storage/SectionStorage/f_223507_ net/minecraft/world/level/chunk/storage/SectionStorage/registryAccess +FD: net/minecraft/world/level/chunk/storage/SectionStorage/f_63772_ net/minecraft/world/level/chunk/storage/SectionStorage/LOGGER +FD: net/minecraft/world/level/chunk/storage/SectionStorage/f_63773_ net/minecraft/world/level/chunk/storage/SectionStorage/worker +FD: net/minecraft/world/level/chunk/storage/SectionStorage/f_63774_ net/minecraft/world/level/chunk/storage/SectionStorage/storage +FD: net/minecraft/world/level/chunk/storage/SectionStorage/f_63775_ net/minecraft/world/level/chunk/storage/SectionStorage/dirty +FD: net/minecraft/world/level/chunk/storage/SectionStorage/f_63776_ net/minecraft/world/level/chunk/storage/SectionStorage/codec +FD: net/minecraft/world/level/chunk/storage/SectionStorage/f_63777_ net/minecraft/world/level/chunk/storage/SectionStorage/factory +FD: net/minecraft/world/level/chunk/storage/SectionStorage/f_63778_ net/minecraft/world/level/chunk/storage/SectionStorage/fixerUpper +FD: net/minecraft/world/level/chunk/storage/SectionStorage/f_63779_ net/minecraft/world/level/chunk/storage/SectionStorage/type +FD: net/minecraft/world/level/dimension/BuiltinDimensionTypes/f_223538_ net/minecraft/world/level/dimension/BuiltinDimensionTypes/OVERWORLD +FD: net/minecraft/world/level/dimension/BuiltinDimensionTypes/f_223539_ net/minecraft/world/level/dimension/BuiltinDimensionTypes/NETHER +FD: net/minecraft/world/level/dimension/BuiltinDimensionTypes/f_223540_ net/minecraft/world/level/dimension/BuiltinDimensionTypes/END +FD: net/minecraft/world/level/dimension/BuiltinDimensionTypes/f_223541_ net/minecraft/world/level/dimension/BuiltinDimensionTypes/OVERWORLD_CAVES +FD: net/minecraft/world/level/dimension/BuiltinDimensionTypes/f_223542_ net/minecraft/world/level/dimension/BuiltinDimensionTypes/OVERWORLD_EFFECTS +FD: net/minecraft/world/level/dimension/BuiltinDimensionTypes/f_223543_ net/minecraft/world/level/dimension/BuiltinDimensionTypes/NETHER_EFFECTS +FD: net/minecraft/world/level/dimension/BuiltinDimensionTypes/f_223544_ net/minecraft/world/level/dimension/BuiltinDimensionTypes/END_EFFECTS +FD: net/minecraft/world/level/dimension/DimensionDefaults/f_156634_ net/minecraft/world/level/dimension/DimensionDefaults/OVERWORLD_MIN_Y +FD: net/minecraft/world/level/dimension/DimensionDefaults/f_156635_ net/minecraft/world/level/dimension/DimensionDefaults/OVERWORLD_LEVEL_HEIGHT +FD: net/minecraft/world/level/dimension/DimensionDefaults/f_156636_ net/minecraft/world/level/dimension/DimensionDefaults/OVERWORLD_GENERATION_HEIGHT +FD: net/minecraft/world/level/dimension/DimensionDefaults/f_156637_ net/minecraft/world/level/dimension/DimensionDefaults/OVERWORLD_LOGICAL_HEIGHT +FD: net/minecraft/world/level/dimension/DimensionDefaults/f_156638_ net/minecraft/world/level/dimension/DimensionDefaults/NETHER_MIN_Y +FD: net/minecraft/world/level/dimension/DimensionDefaults/f_156639_ net/minecraft/world/level/dimension/DimensionDefaults/NETHER_LEVEL_HEIGHT +FD: net/minecraft/world/level/dimension/DimensionDefaults/f_156640_ net/minecraft/world/level/dimension/DimensionDefaults/NETHER_GENERATION_HEIGHT +FD: net/minecraft/world/level/dimension/DimensionDefaults/f_156641_ net/minecraft/world/level/dimension/DimensionDefaults/NETHER_LOGICAL_HEIGHT +FD: net/minecraft/world/level/dimension/DimensionDefaults/f_156642_ net/minecraft/world/level/dimension/DimensionDefaults/END_MIN_Y +FD: net/minecraft/world/level/dimension/DimensionDefaults/f_156643_ net/minecraft/world/level/dimension/DimensionDefaults/END_LEVEL_HEIGHT +FD: net/minecraft/world/level/dimension/DimensionDefaults/f_156644_ net/minecraft/world/level/dimension/DimensionDefaults/END_GENERATION_HEIGHT +FD: net/minecraft/world/level/dimension/DimensionDefaults/f_156645_ net/minecraft/world/level/dimension/DimensionDefaults/END_LOGICAL_HEIGHT +FD: net/minecraft/world/level/dimension/DimensionType/f_156647_ net/minecraft/world/level/dimension/DimensionType/minY +FD: net/minecraft/world/level/dimension/DimensionType/f_156648_ net/minecraft/world/level/dimension/DimensionType/height +FD: net/minecraft/world/level/dimension/DimensionType/f_156649_ net/minecraft/world/level/dimension/DimensionType/BITS_FOR_Y +FD: net/minecraft/world/level/dimension/DimensionType/f_156650_ net/minecraft/world/level/dimension/DimensionType/MIN_HEIGHT +FD: net/minecraft/world/level/dimension/DimensionType/f_156651_ net/minecraft/world/level/dimension/DimensionType/Y_SIZE +FD: net/minecraft/world/level/dimension/DimensionType/f_156652_ net/minecraft/world/level/dimension/DimensionType/MAX_Y +FD: net/minecraft/world/level/dimension/DimensionType/f_156653_ net/minecraft/world/level/dimension/DimensionType/MIN_Y +FD: net/minecraft/world/level/dimension/DimensionType/f_156654_ net/minecraft/world/level/dimension/DimensionType/MOON_PHASES +FD: net/minecraft/world/level/dimension/DimensionType/f_188293_ net/minecraft/world/level/dimension/DimensionType/WAY_ABOVE_MAX_Y +FD: net/minecraft/world/level/dimension/DimensionType/f_188294_ net/minecraft/world/level/dimension/DimensionType/WAY_BELOW_MIN_Y +FD: net/minecraft/world/level/dimension/DimensionType/f_223549_ net/minecraft/world/level/dimension/DimensionType/hasSkyLight +FD: net/minecraft/world/level/dimension/DimensionType/f_223550_ net/minecraft/world/level/dimension/DimensionType/monsterSettings +FD: net/minecraft/world/level/dimension/DimensionType/f_63836_ net/minecraft/world/level/dimension/DimensionType/infiniburn +FD: net/minecraft/world/level/dimension/DimensionType/f_63837_ net/minecraft/world/level/dimension/DimensionType/effectsLocation +FD: net/minecraft/world/level/dimension/DimensionType/f_63838_ net/minecraft/world/level/dimension/DimensionType/ambientLight +FD: net/minecraft/world/level/dimension/DimensionType/f_63843_ net/minecraft/world/level/dimension/DimensionType/DIRECT_CODEC +FD: net/minecraft/world/level/dimension/DimensionType/f_63844_ net/minecraft/world/level/dimension/DimensionType/MOON_BRIGHTNESS_PER_PHASE +FD: net/minecraft/world/level/dimension/DimensionType/f_63853_ net/minecraft/world/level/dimension/DimensionType/CODEC +FD: net/minecraft/world/level/dimension/DimensionType/f_63854_ net/minecraft/world/level/dimension/DimensionType/fixedTime +FD: net/minecraft/world/level/dimension/DimensionType/f_63856_ net/minecraft/world/level/dimension/DimensionType/hasCeiling +FD: net/minecraft/world/level/dimension/DimensionType/f_63857_ net/minecraft/world/level/dimension/DimensionType/ultraWarm +FD: net/minecraft/world/level/dimension/DimensionType/f_63858_ net/minecraft/world/level/dimension/DimensionType/natural +FD: net/minecraft/world/level/dimension/DimensionType/f_63859_ net/minecraft/world/level/dimension/DimensionType/coordinateScale +FD: net/minecraft/world/level/dimension/DimensionType/f_63862_ net/minecraft/world/level/dimension/DimensionType/bedWorks +FD: net/minecraft/world/level/dimension/DimensionType/f_63863_ net/minecraft/world/level/dimension/DimensionType/respawnAnchorWorks +FD: net/minecraft/world/level/dimension/DimensionType/f_63865_ net/minecraft/world/level/dimension/DimensionType/logicalHeight +FD: net/minecraft/world/level/dimension/DimensionType$MonsterSettings/f_223578_ net/minecraft/world/level/dimension/DimensionType$MonsterSettings/CODEC +FD: net/minecraft/world/level/dimension/DimensionType$MonsterSettings/f_223579_ net/minecraft/world/level/dimension/DimensionType$MonsterSettings/piglinSafe +FD: net/minecraft/world/level/dimension/DimensionType$MonsterSettings/f_223580_ net/minecraft/world/level/dimension/DimensionType$MonsterSettings/hasRaids +FD: net/minecraft/world/level/dimension/DimensionType$MonsterSettings/f_223581_ net/minecraft/world/level/dimension/DimensionType$MonsterSettings/monsterSpawnLightTest +FD: net/minecraft/world/level/dimension/DimensionType$MonsterSettings/f_223582_ net/minecraft/world/level/dimension/DimensionType$MonsterSettings/monsterSpawnBlockLightLimit +FD: net/minecraft/world/level/dimension/LevelStem/f_63970_ net/minecraft/world/level/dimension/LevelStem/CODEC +FD: net/minecraft/world/level/dimension/LevelStem/f_63971_ net/minecraft/world/level/dimension/LevelStem/OVERWORLD +FD: net/minecraft/world/level/dimension/LevelStem/f_63972_ net/minecraft/world/level/dimension/LevelStem/NETHER +FD: net/minecraft/world/level/dimension/LevelStem/f_63973_ net/minecraft/world/level/dimension/LevelStem/END +FD: net/minecraft/world/level/dimension/LevelStem/f_63975_ net/minecraft/world/level/dimension/LevelStem/type +FD: net/minecraft/world/level/dimension/LevelStem/f_63976_ net/minecraft/world/level/dimension/LevelStem/generator +FD: net/minecraft/world/level/dimension/end/DragonRespawnAnimation/$VALUES net/minecraft/world/level/dimension/end/DragonRespawnAnimation/$VALUES +FD: net/minecraft/world/level/dimension/end/DragonRespawnAnimation/END net/minecraft/world/level/dimension/end/DragonRespawnAnimation/END +FD: net/minecraft/world/level/dimension/end/DragonRespawnAnimation/PREPARING_TO_SUMMON_PILLARS net/minecraft/world/level/dimension/end/DragonRespawnAnimation/PREPARING_TO_SUMMON_PILLARS +FD: net/minecraft/world/level/dimension/end/DragonRespawnAnimation/START net/minecraft/world/level/dimension/end/DragonRespawnAnimation/START +FD: net/minecraft/world/level/dimension/end/DragonRespawnAnimation/SUMMONING_DRAGON net/minecraft/world/level/dimension/end/DragonRespawnAnimation/SUMMONING_DRAGON +FD: net/minecraft/world/level/dimension/end/DragonRespawnAnimation/SUMMONING_PILLARS net/minecraft/world/level/dimension/end/DragonRespawnAnimation/SUMMONING_PILLARS +FD: net/minecraft/world/level/dimension/end/EndDragonFight/f_156735_ net/minecraft/world/level/dimension/end/EndDragonFight/ARENA_TICKET_LEVEL +FD: net/minecraft/world/level/dimension/end/EndDragonFight/f_156736_ net/minecraft/world/level/dimension/end/EndDragonFight/DRAGON_SPAWN_Y +FD: net/minecraft/world/level/dimension/end/EndDragonFight/f_156737_ net/minecraft/world/level/dimension/end/EndDragonFight/MAX_TICKS_BEFORE_DRAGON_RESPAWN +FD: net/minecraft/world/level/dimension/end/EndDragonFight/f_156738_ net/minecraft/world/level/dimension/end/EndDragonFight/TIME_BETWEEN_CRYSTAL_SCANS +FD: net/minecraft/world/level/dimension/end/EndDragonFight/f_156739_ net/minecraft/world/level/dimension/end/EndDragonFight/TIME_BETWEEN_PLAYER_SCANS +FD: net/minecraft/world/level/dimension/end/EndDragonFight/f_156740_ net/minecraft/world/level/dimension/end/EndDragonFight/ARENA_SIZE_CHUNKS +FD: net/minecraft/world/level/dimension/end/EndDragonFight/f_156741_ net/minecraft/world/level/dimension/end/EndDragonFight/GATEWAY_COUNT +FD: net/minecraft/world/level/dimension/end/EndDragonFight/f_156742_ net/minecraft/world/level/dimension/end/EndDragonFight/GATEWAY_DISTANCE +FD: net/minecraft/world/level/dimension/end/EndDragonFight/f_286982_ net/minecraft/world/level/dimension/end/EndDragonFight/skipArenaLoadedCheck +FD: net/minecraft/world/level/dimension/end/EndDragonFight/f_286985_ net/minecraft/world/level/dimension/end/EndDragonFight/origin +FD: net/minecraft/world/level/dimension/end/EndDragonFight/f_286991_ net/minecraft/world/level/dimension/end/EndDragonFight/validPlayer +FD: net/minecraft/world/level/dimension/end/EndDragonFight/f_64058_ net/minecraft/world/level/dimension/end/EndDragonFight/LOGGER +FD: net/minecraft/world/level/dimension/end/EndDragonFight/f_64060_ net/minecraft/world/level/dimension/end/EndDragonFight/dragonEvent +FD: net/minecraft/world/level/dimension/end/EndDragonFight/f_64061_ net/minecraft/world/level/dimension/end/EndDragonFight/level +FD: net/minecraft/world/level/dimension/end/EndDragonFight/f_64062_ net/minecraft/world/level/dimension/end/EndDragonFight/gateways +FD: net/minecraft/world/level/dimension/end/EndDragonFight/f_64063_ net/minecraft/world/level/dimension/end/EndDragonFight/exitPortalPattern +FD: net/minecraft/world/level/dimension/end/EndDragonFight/f_64064_ net/minecraft/world/level/dimension/end/EndDragonFight/ticksSinceDragonSeen +FD: net/minecraft/world/level/dimension/end/EndDragonFight/f_64065_ net/minecraft/world/level/dimension/end/EndDragonFight/crystalsAlive +FD: net/minecraft/world/level/dimension/end/EndDragonFight/f_64066_ net/minecraft/world/level/dimension/end/EndDragonFight/ticksSinceCrystalsScanned +FD: net/minecraft/world/level/dimension/end/EndDragonFight/f_64067_ net/minecraft/world/level/dimension/end/EndDragonFight/ticksSinceLastPlayerScan +FD: net/minecraft/world/level/dimension/end/EndDragonFight/f_64068_ net/minecraft/world/level/dimension/end/EndDragonFight/dragonKilled +FD: net/minecraft/world/level/dimension/end/EndDragonFight/f_64069_ net/minecraft/world/level/dimension/end/EndDragonFight/previouslyKilled +FD: net/minecraft/world/level/dimension/end/EndDragonFight/f_64070_ net/minecraft/world/level/dimension/end/EndDragonFight/dragonUUID +FD: net/minecraft/world/level/dimension/end/EndDragonFight/f_64071_ net/minecraft/world/level/dimension/end/EndDragonFight/needsStateScanning +FD: net/minecraft/world/level/dimension/end/EndDragonFight/f_64072_ net/minecraft/world/level/dimension/end/EndDragonFight/portalLocation +FD: net/minecraft/world/level/dimension/end/EndDragonFight/f_64073_ net/minecraft/world/level/dimension/end/EndDragonFight/respawnStage +FD: net/minecraft/world/level/dimension/end/EndDragonFight/f_64074_ net/minecraft/world/level/dimension/end/EndDragonFight/respawnTime +FD: net/minecraft/world/level/dimension/end/EndDragonFight/f_64075_ net/minecraft/world/level/dimension/end/EndDragonFight/respawnCrystals +FD: net/minecraft/world/level/dimension/end/EndDragonFight$Data/f_289702_ net/minecraft/world/level/dimension/end/EndDragonFight$Data/dragonUUID +FD: net/minecraft/world/level/dimension/end/EndDragonFight$Data/f_289703_ net/minecraft/world/level/dimension/end/EndDragonFight$Data/isRespawning +FD: net/minecraft/world/level/dimension/end/EndDragonFight$Data/f_289704_ net/minecraft/world/level/dimension/end/EndDragonFight$Data/previouslyKilled +FD: net/minecraft/world/level/dimension/end/EndDragonFight$Data/f_289705_ net/minecraft/world/level/dimension/end/EndDragonFight$Data/gateways +FD: net/minecraft/world/level/dimension/end/EndDragonFight$Data/f_289707_ net/minecraft/world/level/dimension/end/EndDragonFight$Data/CODEC +FD: net/minecraft/world/level/dimension/end/EndDragonFight$Data/f_289708_ net/minecraft/world/level/dimension/end/EndDragonFight$Data/exitPortalLocation +FD: net/minecraft/world/level/dimension/end/EndDragonFight$Data/f_289709_ net/minecraft/world/level/dimension/end/EndDragonFight$Data/DEFAULT +FD: net/minecraft/world/level/dimension/end/EndDragonFight$Data/f_289710_ net/minecraft/world/level/dimension/end/EndDragonFight$Data/needsStateScanning +FD: net/minecraft/world/level/dimension/end/EndDragonFight$Data/f_289711_ net/minecraft/world/level/dimension/end/EndDragonFight$Data/dragonKilled +FD: net/minecraft/world/level/entity/ChunkEntities/f_156786_ net/minecraft/world/level/entity/ChunkEntities/pos +FD: net/minecraft/world/level/entity/ChunkEntities/f_156787_ net/minecraft/world/level/entity/ChunkEntities/entities +FD: net/minecraft/world/level/entity/EntityInLevelCallback/f_156799_ net/minecraft/world/level/entity/EntityInLevelCallback/NULL +FD: net/minecraft/world/level/entity/EntityLookup/f_156806_ net/minecraft/world/level/entity/EntityLookup/LOGGER +FD: net/minecraft/world/level/entity/EntityLookup/f_156807_ net/minecraft/world/level/entity/EntityLookup/byId +FD: net/minecraft/world/level/entity/EntityLookup/f_156808_ net/minecraft/world/level/entity/EntityLookup/byUuid +FD: net/minecraft/world/level/entity/EntitySection/f_156826_ net/minecraft/world/level/entity/EntitySection/LOGGER +FD: net/minecraft/world/level/entity/EntitySection/f_156827_ net/minecraft/world/level/entity/EntitySection/storage +FD: net/minecraft/world/level/entity/EntitySection/f_156828_ net/minecraft/world/level/entity/EntitySection/chunkStatus +FD: net/minecraft/world/level/entity/EntitySectionStorage/f_156850_ net/minecraft/world/level/entity/EntitySectionStorage/entityClass +FD: net/minecraft/world/level/entity/EntitySectionStorage/f_156851_ net/minecraft/world/level/entity/EntitySectionStorage/intialSectionVisibility +FD: net/minecraft/world/level/entity/EntitySectionStorage/f_156852_ net/minecraft/world/level/entity/EntitySectionStorage/sections +FD: net/minecraft/world/level/entity/EntitySectionStorage/f_156853_ net/minecraft/world/level/entity/EntitySectionStorage/sectionIds +FD: net/minecraft/world/level/entity/EntityTickList/f_156903_ net/minecraft/world/level/entity/EntityTickList/active +FD: net/minecraft/world/level/entity/EntityTickList/f_156904_ net/minecraft/world/level/entity/EntityTickList/passive +FD: net/minecraft/world/level/entity/EntityTickList/f_156905_ net/minecraft/world/level/entity/EntityTickList/iterated +FD: net/minecraft/world/level/entity/EntityTypeTest$1/f_156919_ net/minecraft/world/level/entity/EntityTypeTest$1/val$cls +FD: net/minecraft/world/level/entity/LevelEntityGetterAdapter/f_156940_ net/minecraft/world/level/entity/LevelEntityGetterAdapter/visibleEntities +FD: net/minecraft/world/level/entity/LevelEntityGetterAdapter/f_156941_ net/minecraft/world/level/entity/LevelEntityGetterAdapter/sectionStorage +FD: net/minecraft/world/level/entity/PersistentEntitySectionManager/f_157490_ net/minecraft/world/level/entity/PersistentEntitySectionManager/LOGGER +FD: net/minecraft/world/level/entity/PersistentEntitySectionManager/f_157491_ net/minecraft/world/level/entity/PersistentEntitySectionManager/knownUuids +FD: net/minecraft/world/level/entity/PersistentEntitySectionManager/f_157492_ net/minecraft/world/level/entity/PersistentEntitySectionManager/callbacks +FD: net/minecraft/world/level/entity/PersistentEntitySectionManager/f_157493_ net/minecraft/world/level/entity/PersistentEntitySectionManager/permanentStorage +FD: net/minecraft/world/level/entity/PersistentEntitySectionManager/f_157494_ net/minecraft/world/level/entity/PersistentEntitySectionManager/visibleEntityStorage +FD: net/minecraft/world/level/entity/PersistentEntitySectionManager/f_157495_ net/minecraft/world/level/entity/PersistentEntitySectionManager/sectionStorage +FD: net/minecraft/world/level/entity/PersistentEntitySectionManager/f_157496_ net/minecraft/world/level/entity/PersistentEntitySectionManager/entityGetter +FD: net/minecraft/world/level/entity/PersistentEntitySectionManager/f_157497_ net/minecraft/world/level/entity/PersistentEntitySectionManager/chunkVisibility +FD: net/minecraft/world/level/entity/PersistentEntitySectionManager/f_157498_ net/minecraft/world/level/entity/PersistentEntitySectionManager/chunkLoadStatuses +FD: net/minecraft/world/level/entity/PersistentEntitySectionManager/f_157499_ net/minecraft/world/level/entity/PersistentEntitySectionManager/chunksToUnload +FD: net/minecraft/world/level/entity/PersistentEntitySectionManager/f_157500_ net/minecraft/world/level/entity/PersistentEntitySectionManager/loadingInbox +FD: net/minecraft/world/level/entity/PersistentEntitySectionManager$Callback/f_157608_ net/minecraft/world/level/entity/PersistentEntitySectionManager$Callback/this$0 +FD: net/minecraft/world/level/entity/PersistentEntitySectionManager$Callback/f_157609_ net/minecraft/world/level/entity/PersistentEntitySectionManager$Callback/entity +FD: net/minecraft/world/level/entity/PersistentEntitySectionManager$Callback/f_157610_ net/minecraft/world/level/entity/PersistentEntitySectionManager$Callback/currentSectionKey +FD: net/minecraft/world/level/entity/PersistentEntitySectionManager$Callback/f_157611_ net/minecraft/world/level/entity/PersistentEntitySectionManager$Callback/currentSection +FD: net/minecraft/world/level/entity/PersistentEntitySectionManager$ChunkLoadStatus/$VALUES net/minecraft/world/level/entity/PersistentEntitySectionManager$ChunkLoadStatus/$VALUES +FD: net/minecraft/world/level/entity/PersistentEntitySectionManager$ChunkLoadStatus/FRESH net/minecraft/world/level/entity/PersistentEntitySectionManager$ChunkLoadStatus/FRESH +FD: net/minecraft/world/level/entity/PersistentEntitySectionManager$ChunkLoadStatus/LOADED net/minecraft/world/level/entity/PersistentEntitySectionManager$ChunkLoadStatus/LOADED +FD: net/minecraft/world/level/entity/PersistentEntitySectionManager$ChunkLoadStatus/PENDING net/minecraft/world/level/entity/PersistentEntitySectionManager$ChunkLoadStatus/PENDING +FD: net/minecraft/world/level/entity/TransientEntitySectionManager/f_157635_ net/minecraft/world/level/entity/TransientEntitySectionManager/LOGGER +FD: net/minecraft/world/level/entity/TransientEntitySectionManager/f_157636_ net/minecraft/world/level/entity/TransientEntitySectionManager/callbacks +FD: net/minecraft/world/level/entity/TransientEntitySectionManager/f_157637_ net/minecraft/world/level/entity/TransientEntitySectionManager/entityStorage +FD: net/minecraft/world/level/entity/TransientEntitySectionManager/f_157638_ net/minecraft/world/level/entity/TransientEntitySectionManager/sectionStorage +FD: net/minecraft/world/level/entity/TransientEntitySectionManager/f_157639_ net/minecraft/world/level/entity/TransientEntitySectionManager/tickingChunks +FD: net/minecraft/world/level/entity/TransientEntitySectionManager/f_157640_ net/minecraft/world/level/entity/TransientEntitySectionManager/entityGetter +FD: net/minecraft/world/level/entity/TransientEntitySectionManager$Callback/f_157667_ net/minecraft/world/level/entity/TransientEntitySectionManager$Callback/this$0 +FD: net/minecraft/world/level/entity/TransientEntitySectionManager$Callback/f_157668_ net/minecraft/world/level/entity/TransientEntitySectionManager$Callback/entity +FD: net/minecraft/world/level/entity/TransientEntitySectionManager$Callback/f_157669_ net/minecraft/world/level/entity/TransientEntitySectionManager$Callback/currentSectionKey +FD: net/minecraft/world/level/entity/TransientEntitySectionManager$Callback/f_157670_ net/minecraft/world/level/entity/TransientEntitySectionManager$Callback/currentSection +FD: net/minecraft/world/level/entity/Visibility/$VALUES net/minecraft/world/level/entity/Visibility/$VALUES +FD: net/minecraft/world/level/entity/Visibility/HIDDEN net/minecraft/world/level/entity/Visibility/HIDDEN +FD: net/minecraft/world/level/entity/Visibility/TICKING net/minecraft/world/level/entity/Visibility/TICKING +FD: net/minecraft/world/level/entity/Visibility/TRACKED net/minecraft/world/level/entity/Visibility/TRACKED +FD: net/minecraft/world/level/entity/Visibility/f_157682_ net/minecraft/world/level/entity/Visibility/accessible +FD: net/minecraft/world/level/entity/Visibility/f_157683_ net/minecraft/world/level/entity/Visibility/ticking +FD: net/minecraft/world/level/gameevent/BlockPositionSource/f_157699_ net/minecraft/world/level/gameevent/BlockPositionSource/CODEC +FD: net/minecraft/world/level/gameevent/BlockPositionSource/f_157700_ net/minecraft/world/level/gameevent/BlockPositionSource/pos +FD: net/minecraft/world/level/gameevent/DynamicGameEventListener/f_223612_ net/minecraft/world/level/gameevent/DynamicGameEventListener/listener +FD: net/minecraft/world/level/gameevent/DynamicGameEventListener/f_223613_ net/minecraft/world/level/gameevent/DynamicGameEventListener/lastSection +FD: net/minecraft/world/level/gameevent/EntityPositionSource/f_157725_ net/minecraft/world/level/gameevent/EntityPositionSource/CODEC +FD: net/minecraft/world/level/gameevent/EntityPositionSource/f_223645_ net/minecraft/world/level/gameevent/EntityPositionSource/entityOrUuidOrId +FD: net/minecraft/world/level/gameevent/EntityPositionSource/f_223646_ net/minecraft/world/level/gameevent/EntityPositionSource/yOffset +FD: net/minecraft/world/level/gameevent/EuclideanGameEventListenerRegistry/f_244008_ net/minecraft/world/level/gameevent/EuclideanGameEventListenerRegistry/listenersToAdd +FD: net/minecraft/world/level/gameevent/EuclideanGameEventListenerRegistry/f_244249_ net/minecraft/world/level/gameevent/EuclideanGameEventListenerRegistry/processing +FD: net/minecraft/world/level/gameevent/EuclideanGameEventListenerRegistry/f_244308_ net/minecraft/world/level/gameevent/EuclideanGameEventListenerRegistry/listenersToRemove +FD: net/minecraft/world/level/gameevent/EuclideanGameEventListenerRegistry/f_244422_ net/minecraft/world/level/gameevent/EuclideanGameEventListenerRegistry/listeners +FD: net/minecraft/world/level/gameevent/EuclideanGameEventListenerRegistry/f_244607_ net/minecraft/world/level/gameevent/EuclideanGameEventListenerRegistry/level +FD: net/minecraft/world/level/gameevent/EuclideanGameEventListenerRegistry/f_279540_ net/minecraft/world/level/gameevent/EuclideanGameEventListenerRegistry/sectionY +FD: net/minecraft/world/level/gameevent/EuclideanGameEventListenerRegistry/f_279576_ net/minecraft/world/level/gameevent/EuclideanGameEventListenerRegistry/onEmptyAction +FD: net/minecraft/world/level/gameevent/GameEvent/f_157769_ net/minecraft/world/level/gameevent/GameEvent/FLUID_PLACE +FD: net/minecraft/world/level/gameevent/GameEvent/f_157770_ net/minecraft/world/level/gameevent/GameEvent/HIT_GROUND +FD: net/minecraft/world/level/gameevent/GameEvent/f_157772_ net/minecraft/world/level/gameevent/GameEvent/LIGHTNING_STRIKE +FD: net/minecraft/world/level/gameevent/GameEvent/f_157776_ net/minecraft/world/level/gameevent/GameEvent/PRIME_FUSE +FD: net/minecraft/world/level/gameevent/GameEvent/f_157777_ net/minecraft/world/level/gameevent/GameEvent/PROJECTILE_LAND +FD: net/minecraft/world/level/gameevent/GameEvent/f_157778_ net/minecraft/world/level/gameevent/GameEvent/PROJECTILE_SHOOT +FD: net/minecraft/world/level/gameevent/GameEvent/f_157781_ net/minecraft/world/level/gameevent/GameEvent/SHEAR +FD: net/minecraft/world/level/gameevent/GameEvent/f_157784_ net/minecraft/world/level/gameevent/GameEvent/SPLASH +FD: net/minecraft/world/level/gameevent/GameEvent/f_157785_ net/minecraft/world/level/gameevent/GameEvent/STEP +FD: net/minecraft/world/level/gameevent/GameEvent/f_157786_ net/minecraft/world/level/gameevent/GameEvent/SWIM +FD: net/minecraft/world/level/gameevent/GameEvent/f_157788_ net/minecraft/world/level/gameevent/GameEvent/DEFAULT_NOTIFICATION_RADIUS +FD: net/minecraft/world/level/gameevent/GameEvent/f_157789_ net/minecraft/world/level/gameevent/GameEvent/name +FD: net/minecraft/world/level/gameevent/GameEvent/f_157790_ net/minecraft/world/level/gameevent/GameEvent/notificationRadius +FD: net/minecraft/world/level/gameevent/GameEvent/f_157791_ net/minecraft/world/level/gameevent/GameEvent/BLOCK_ATTACH +FD: net/minecraft/world/level/gameevent/GameEvent/f_157792_ net/minecraft/world/level/gameevent/GameEvent/BLOCK_CHANGE +FD: net/minecraft/world/level/gameevent/GameEvent/f_157793_ net/minecraft/world/level/gameevent/GameEvent/BLOCK_CLOSE +FD: net/minecraft/world/level/gameevent/GameEvent/f_157794_ net/minecraft/world/level/gameevent/GameEvent/BLOCK_DESTROY +FD: net/minecraft/world/level/gameevent/GameEvent/f_157795_ net/minecraft/world/level/gameevent/GameEvent/BLOCK_DETACH +FD: net/minecraft/world/level/gameevent/GameEvent/f_157796_ net/minecraft/world/level/gameevent/GameEvent/BLOCK_OPEN +FD: net/minecraft/world/level/gameevent/GameEvent/f_157797_ net/minecraft/world/level/gameevent/GameEvent/BLOCK_PLACE +FD: net/minecraft/world/level/gameevent/GameEvent/f_157802_ net/minecraft/world/level/gameevent/GameEvent/CONTAINER_CLOSE +FD: net/minecraft/world/level/gameevent/GameEvent/f_157803_ net/minecraft/world/level/gameevent/GameEvent/CONTAINER_OPEN +FD: net/minecraft/world/level/gameevent/GameEvent/f_157806_ net/minecraft/world/level/gameevent/GameEvent/EAT +FD: net/minecraft/world/level/gameevent/GameEvent/f_157810_ net/minecraft/world/level/gameevent/GameEvent/ENTITY_PLACE +FD: net/minecraft/world/level/gameevent/GameEvent/f_157811_ net/minecraft/world/level/gameevent/GameEvent/EQUIP +FD: net/minecraft/world/level/gameevent/GameEvent/f_157812_ net/minecraft/world/level/gameevent/GameEvent/EXPLODE +FD: net/minecraft/world/level/gameevent/GameEvent/f_157815_ net/minecraft/world/level/gameevent/GameEvent/FLAP +FD: net/minecraft/world/level/gameevent/GameEvent/f_157816_ net/minecraft/world/level/gameevent/GameEvent/FLUID_PICKUP +FD: net/minecraft/world/level/gameevent/GameEvent/f_204527_ net/minecraft/world/level/gameevent/GameEvent/builtInRegistryHolder +FD: net/minecraft/world/level/gameevent/GameEvent/f_223696_ net/minecraft/world/level/gameevent/GameEvent/INSTRUMENT_PLAY +FD: net/minecraft/world/level/gameevent/GameEvent/f_223697_ net/minecraft/world/level/gameevent/GameEvent/ITEM_INTERACT_FINISH +FD: net/minecraft/world/level/gameevent/GameEvent/f_223698_ net/minecraft/world/level/gameevent/GameEvent/ITEM_INTERACT_START +FD: net/minecraft/world/level/gameevent/GameEvent/f_223699_ net/minecraft/world/level/gameevent/GameEvent/NOTE_BLOCK_PLAY +FD: net/minecraft/world/level/gameevent/GameEvent/f_223700_ net/minecraft/world/level/gameevent/GameEvent/SCULK_SENSOR_TENDRILS_CLICKING +FD: net/minecraft/world/level/gameevent/GameEvent/f_223701_ net/minecraft/world/level/gameevent/GameEvent/SHRIEK +FD: net/minecraft/world/level/gameevent/GameEvent/f_223702_ net/minecraft/world/level/gameevent/GameEvent/BLOCK_ACTIVATE +FD: net/minecraft/world/level/gameevent/GameEvent/f_223703_ net/minecraft/world/level/gameevent/GameEvent/BLOCK_DEACTIVATE +FD: net/minecraft/world/level/gameevent/GameEvent/f_223704_ net/minecraft/world/level/gameevent/GameEvent/DRINK +FD: net/minecraft/world/level/gameevent/GameEvent/f_223705_ net/minecraft/world/level/gameevent/GameEvent/ELYTRA_GLIDE +FD: net/minecraft/world/level/gameevent/GameEvent/f_223706_ net/minecraft/world/level/gameevent/GameEvent/ENTITY_DAMAGE +FD: net/minecraft/world/level/gameevent/GameEvent/f_223707_ net/minecraft/world/level/gameevent/GameEvent/ENTITY_DIE +FD: net/minecraft/world/level/gameevent/GameEvent/f_223708_ net/minecraft/world/level/gameevent/GameEvent/ENTITY_INTERACT +FD: net/minecraft/world/level/gameevent/GameEvent/f_223709_ net/minecraft/world/level/gameevent/GameEvent/ENTITY_ROAR +FD: net/minecraft/world/level/gameevent/GameEvent/f_223710_ net/minecraft/world/level/gameevent/GameEvent/ENTITY_SHAKE +FD: net/minecraft/world/level/gameevent/GameEvent/f_238175_ net/minecraft/world/level/gameevent/GameEvent/TELEPORT +FD: net/minecraft/world/level/gameevent/GameEvent/f_238649_ net/minecraft/world/level/gameevent/GameEvent/JUKEBOX_STOP_PLAY +FD: net/minecraft/world/level/gameevent/GameEvent/f_238690_ net/minecraft/world/level/gameevent/GameEvent/JUKEBOX_PLAY +FD: net/minecraft/world/level/gameevent/GameEvent/f_268500_ net/minecraft/world/level/gameevent/GameEvent/ENTITY_MOUNT +FD: net/minecraft/world/level/gameevent/GameEvent/f_268533_ net/minecraft/world/level/gameevent/GameEvent/ENTITY_DISMOUNT +FD: net/minecraft/world/level/gameevent/GameEvent/f_276419_ net/minecraft/world/level/gameevent/GameEvent/RESONATE_9 +FD: net/minecraft/world/level/gameevent/GameEvent/f_276431_ net/minecraft/world/level/gameevent/GameEvent/RESONATE_10 +FD: net/minecraft/world/level/gameevent/GameEvent/f_276436_ net/minecraft/world/level/gameevent/GameEvent/RESONATE_15 +FD: net/minecraft/world/level/gameevent/GameEvent/f_276454_ net/minecraft/world/level/gameevent/GameEvent/RESONATE_14 +FD: net/minecraft/world/level/gameevent/GameEvent/f_276494_ net/minecraft/world/level/gameevent/GameEvent/RESONATE_8 +FD: net/minecraft/world/level/gameevent/GameEvent/f_276518_ net/minecraft/world/level/gameevent/GameEvent/RESONATE_6 +FD: net/minecraft/world/level/gameevent/GameEvent/f_276530_ net/minecraft/world/level/gameevent/GameEvent/RESONATE_2 +FD: net/minecraft/world/level/gameevent/GameEvent/f_276533_ net/minecraft/world/level/gameevent/GameEvent/RESONATE_4 +FD: net/minecraft/world/level/gameevent/GameEvent/f_276548_ net/minecraft/world/level/gameevent/GameEvent/RESONATE_12 +FD: net/minecraft/world/level/gameevent/GameEvent/f_276553_ net/minecraft/world/level/gameevent/GameEvent/RESONATE_1 +FD: net/minecraft/world/level/gameevent/GameEvent/f_276569_ net/minecraft/world/level/gameevent/GameEvent/RESONATE_13 +FD: net/minecraft/world/level/gameevent/GameEvent/f_276621_ net/minecraft/world/level/gameevent/GameEvent/RESONATE_11 +FD: net/minecraft/world/level/gameevent/GameEvent/f_276655_ net/minecraft/world/level/gameevent/GameEvent/RESONATE_7 +FD: net/minecraft/world/level/gameevent/GameEvent/f_276691_ net/minecraft/world/level/gameevent/GameEvent/RESONATE_3 +FD: net/minecraft/world/level/gameevent/GameEvent/f_276695_ net/minecraft/world/level/gameevent/GameEvent/RESONATE_5 +FD: net/minecraft/world/level/gameevent/GameEvent$Context/f_223711_ net/minecraft/world/level/gameevent/GameEvent$Context/sourceEntity +FD: net/minecraft/world/level/gameevent/GameEvent$Context/f_223712_ net/minecraft/world/level/gameevent/GameEvent$Context/affectedState +FD: net/minecraft/world/level/gameevent/GameEvent$ListenerInfo/f_243994_ net/minecraft/world/level/gameevent/GameEvent$ListenerInfo/distanceToRecipient +FD: net/minecraft/world/level/gameevent/GameEvent$ListenerInfo/f_244423_ net/minecraft/world/level/gameevent/GameEvent$ListenerInfo/source +FD: net/minecraft/world/level/gameevent/GameEvent$ListenerInfo/f_244470_ net/minecraft/world/level/gameevent/GameEvent$ListenerInfo/context +FD: net/minecraft/world/level/gameevent/GameEvent$ListenerInfo/f_244497_ net/minecraft/world/level/gameevent/GameEvent$ListenerInfo/gameEvent +FD: net/minecraft/world/level/gameevent/GameEvent$ListenerInfo/f_244568_ net/minecraft/world/level/gameevent/GameEvent$ListenerInfo/recipient +FD: net/minecraft/world/level/gameevent/GameEventDispatcher/f_243917_ net/minecraft/world/level/gameevent/GameEventDispatcher/level +FD: net/minecraft/world/level/gameevent/GameEventListener$DeliveryMode/$VALUES net/minecraft/world/level/gameevent/GameEventListener$DeliveryMode/$VALUES +FD: net/minecraft/world/level/gameevent/GameEventListener$DeliveryMode/BY_DISTANCE net/minecraft/world/level/gameevent/GameEventListener$DeliveryMode/BY_DISTANCE +FD: net/minecraft/world/level/gameevent/GameEventListener$DeliveryMode/UNSPECIFIED net/minecraft/world/level/gameevent/GameEventListener$DeliveryMode/UNSPECIFIED +FD: net/minecraft/world/level/gameevent/GameEventListenerRegistry/f_244154_ net/minecraft/world/level/gameevent/GameEventListenerRegistry/NOOP +FD: net/minecraft/world/level/gameevent/PositionSource/f_157868_ net/minecraft/world/level/gameevent/PositionSource/CODEC +FD: net/minecraft/world/level/gameevent/PositionSourceType/f_157871_ net/minecraft/world/level/gameevent/PositionSourceType/BLOCK +FD: net/minecraft/world/level/gameevent/PositionSourceType/f_157872_ net/minecraft/world/level/gameevent/PositionSourceType/ENTITY +FD: net/minecraft/world/level/gameevent/vibrations/VibrationInfo/f_243709_ net/minecraft/world/level/gameevent/vibrations/VibrationInfo/gameEvent +FD: net/minecraft/world/level/gameevent/vibrations/VibrationInfo/f_243776_ net/minecraft/world/level/gameevent/vibrations/VibrationInfo/distance +FD: net/minecraft/world/level/gameevent/vibrations/VibrationInfo/f_243797_ net/minecraft/world/level/gameevent/vibrations/VibrationInfo/uuid +FD: net/minecraft/world/level/gameevent/vibrations/VibrationInfo/f_243906_ net/minecraft/world/level/gameevent/vibrations/VibrationInfo/pos +FD: net/minecraft/world/level/gameevent/vibrations/VibrationInfo/f_243913_ net/minecraft/world/level/gameevent/vibrations/VibrationInfo/projectileOwnerUuid +FD: net/minecraft/world/level/gameevent/vibrations/VibrationInfo/f_244048_ net/minecraft/world/level/gameevent/vibrations/VibrationInfo/entity +FD: net/minecraft/world/level/gameevent/vibrations/VibrationInfo/f_244481_ net/minecraft/world/level/gameevent/vibrations/VibrationInfo/CODEC +FD: net/minecraft/world/level/gameevent/vibrations/VibrationSelector/f_244309_ net/minecraft/world/level/gameevent/vibrations/VibrationSelector/CODEC +FD: net/minecraft/world/level/gameevent/vibrations/VibrationSelector/f_244532_ net/minecraft/world/level/gameevent/vibrations/VibrationSelector/currentVibrationData +FD: net/minecraft/world/level/gameevent/vibrations/VibrationSystem/f_279561_ net/minecraft/world/level/gameevent/vibrations/VibrationSystem/VIBRATION_FREQUENCY_FOR_EVENT +FD: net/minecraft/world/level/gameevent/vibrations/VibrationSystem/f_279664_ net/minecraft/world/level/gameevent/vibrations/VibrationSystem/RESONANCE_EVENTS +FD: net/minecraft/world/level/gameevent/vibrations/VibrationSystem$Data/f_279525_ net/minecraft/world/level/gameevent/vibrations/VibrationSystem$Data/NBT_TAG_KEY +FD: net/minecraft/world/level/gameevent/vibrations/VibrationSystem$Data/f_279593_ net/minecraft/world/level/gameevent/vibrations/VibrationSystem$Data/selectionStrategy +FD: net/minecraft/world/level/gameevent/vibrations/VibrationSystem$Data/f_279613_ net/minecraft/world/level/gameevent/vibrations/VibrationSystem$Data/reloadVibrationParticle +FD: net/minecraft/world/level/gameevent/vibrations/VibrationSystem$Data/f_279637_ net/minecraft/world/level/gameevent/vibrations/VibrationSystem$Data/CODEC +FD: net/minecraft/world/level/gameevent/vibrations/VibrationSystem$Data/f_279638_ net/minecraft/world/level/gameevent/vibrations/VibrationSystem$Data/travelTimeInTicks +FD: net/minecraft/world/level/gameevent/vibrations/VibrationSystem$Data/f_279652_ net/minecraft/world/level/gameevent/vibrations/VibrationSystem$Data/currentVibration +FD: net/minecraft/world/level/gameevent/vibrations/VibrationSystem$Listener/f_279547_ net/minecraft/world/level/gameevent/vibrations/VibrationSystem$Listener/system +FD: net/minecraft/world/level/levelgen/Aquifer$1/f_188388_ net/minecraft/world/level/levelgen/Aquifer$1/val$fluidRule +FD: net/minecraft/world/level/levelgen/Aquifer$FluidStatus/f_188400_ net/minecraft/world/level/levelgen/Aquifer$FluidStatus/fluidLevel +FD: net/minecraft/world/level/levelgen/Aquifer$FluidStatus/f_188401_ net/minecraft/world/level/levelgen/Aquifer$FluidStatus/fluidType +FD: net/minecraft/world/level/levelgen/Aquifer$NoiseBasedAquifer/f_157985_ net/minecraft/world/level/levelgen/Aquifer$NoiseBasedAquifer/X_RANGE +FD: net/minecraft/world/level/levelgen/Aquifer$NoiseBasedAquifer/f_157986_ net/minecraft/world/level/levelgen/Aquifer$NoiseBasedAquifer/Y_RANGE +FD: net/minecraft/world/level/levelgen/Aquifer$NoiseBasedAquifer/f_157987_ net/minecraft/world/level/levelgen/Aquifer$NoiseBasedAquifer/Z_RANGE +FD: net/minecraft/world/level/levelgen/Aquifer$NoiseBasedAquifer/f_157988_ net/minecraft/world/level/levelgen/Aquifer$NoiseBasedAquifer/X_SEPARATION +FD: net/minecraft/world/level/levelgen/Aquifer$NoiseBasedAquifer/f_157989_ net/minecraft/world/level/levelgen/Aquifer$NoiseBasedAquifer/Y_SEPARATION +FD: net/minecraft/world/level/levelgen/Aquifer$NoiseBasedAquifer/f_157990_ net/minecraft/world/level/levelgen/Aquifer$NoiseBasedAquifer/Z_SEPARATION +FD: net/minecraft/world/level/levelgen/Aquifer$NoiseBasedAquifer/f_157991_ net/minecraft/world/level/levelgen/Aquifer$NoiseBasedAquifer/X_SPACING +FD: net/minecraft/world/level/levelgen/Aquifer$NoiseBasedAquifer/f_157992_ net/minecraft/world/level/levelgen/Aquifer$NoiseBasedAquifer/Y_SPACING +FD: net/minecraft/world/level/levelgen/Aquifer$NoiseBasedAquifer/f_157993_ net/minecraft/world/level/levelgen/Aquifer$NoiseBasedAquifer/Z_SPACING +FD: net/minecraft/world/level/levelgen/Aquifer$NoiseBasedAquifer/f_157994_ net/minecraft/world/level/levelgen/Aquifer$NoiseBasedAquifer/barrierNoise +FD: net/minecraft/world/level/levelgen/Aquifer$NoiseBasedAquifer/f_157996_ net/minecraft/world/level/levelgen/Aquifer$NoiseBasedAquifer/lavaNoise +FD: net/minecraft/world/level/levelgen/Aquifer$NoiseBasedAquifer/f_157998_ net/minecraft/world/level/levelgen/Aquifer$NoiseBasedAquifer/aquiferCache +FD: net/minecraft/world/level/levelgen/Aquifer$NoiseBasedAquifer/f_157999_ net/minecraft/world/level/levelgen/Aquifer$NoiseBasedAquifer/aquiferLocationCache +FD: net/minecraft/world/level/levelgen/Aquifer$NoiseBasedAquifer/f_158000_ net/minecraft/world/level/levelgen/Aquifer$NoiseBasedAquifer/shouldScheduleFluidUpdate +FD: net/minecraft/world/level/levelgen/Aquifer$NoiseBasedAquifer/f_158002_ net/minecraft/world/level/levelgen/Aquifer$NoiseBasedAquifer/minGridX +FD: net/minecraft/world/level/levelgen/Aquifer$NoiseBasedAquifer/f_158003_ net/minecraft/world/level/levelgen/Aquifer$NoiseBasedAquifer/minGridY +FD: net/minecraft/world/level/levelgen/Aquifer$NoiseBasedAquifer/f_158004_ net/minecraft/world/level/levelgen/Aquifer$NoiseBasedAquifer/minGridZ +FD: net/minecraft/world/level/levelgen/Aquifer$NoiseBasedAquifer/f_158005_ net/minecraft/world/level/levelgen/Aquifer$NoiseBasedAquifer/gridSizeX +FD: net/minecraft/world/level/levelgen/Aquifer$NoiseBasedAquifer/f_158006_ net/minecraft/world/level/levelgen/Aquifer$NoiseBasedAquifer/gridSizeZ +FD: net/minecraft/world/level/levelgen/Aquifer$NoiseBasedAquifer/f_188407_ net/minecraft/world/level/levelgen/Aquifer$NoiseBasedAquifer/noiseChunk +FD: net/minecraft/world/level/levelgen/Aquifer$NoiseBasedAquifer/f_188408_ net/minecraft/world/level/levelgen/Aquifer$NoiseBasedAquifer/fluidLevelFloodednessNoise +FD: net/minecraft/world/level/levelgen/Aquifer$NoiseBasedAquifer/f_188409_ net/minecraft/world/level/levelgen/Aquifer$NoiseBasedAquifer/fluidLevelSpreadNoise +FD: net/minecraft/world/level/levelgen/Aquifer$NoiseBasedAquifer/f_188410_ net/minecraft/world/level/levelgen/Aquifer$NoiseBasedAquifer/positionalRandomFactory +FD: net/minecraft/world/level/levelgen/Aquifer$NoiseBasedAquifer/f_188411_ net/minecraft/world/level/levelgen/Aquifer$NoiseBasedAquifer/globalFluidPicker +FD: net/minecraft/world/level/levelgen/Aquifer$NoiseBasedAquifer/f_188412_ net/minecraft/world/level/levelgen/Aquifer$NoiseBasedAquifer/SURFACE_SAMPLING_OFFSETS_IN_CHUNKS +FD: net/minecraft/world/level/levelgen/Aquifer$NoiseBasedAquifer/f_196978_ net/minecraft/world/level/levelgen/Aquifer$NoiseBasedAquifer/MAX_REASONABLE_DISTANCE_TO_AQUIFER_CENTER +FD: net/minecraft/world/level/levelgen/Aquifer$NoiseBasedAquifer/f_196979_ net/minecraft/world/level/levelgen/Aquifer$NoiseBasedAquifer/FLOWING_UPDATE_SIMULARITY +FD: net/minecraft/world/level/levelgen/Aquifer$NoiseBasedAquifer/f_223888_ net/minecraft/world/level/levelgen/Aquifer$NoiseBasedAquifer/erosion +FD: net/minecraft/world/level/levelgen/Aquifer$NoiseBasedAquifer/f_223889_ net/minecraft/world/level/levelgen/Aquifer$NoiseBasedAquifer/depth +FD: net/minecraft/world/level/levelgen/Beardifier/f_158060_ net/minecraft/world/level/levelgen/Beardifier/BEARD_KERNEL_RADIUS +FD: net/minecraft/world/level/levelgen/Beardifier/f_158061_ net/minecraft/world/level/levelgen/Beardifier/BEARD_KERNEL_SIZE +FD: net/minecraft/world/level/levelgen/Beardifier/f_158062_ net/minecraft/world/level/levelgen/Beardifier/BEARD_KERNEL +FD: net/minecraft/world/level/levelgen/Beardifier/f_158065_ net/minecraft/world/level/levelgen/Beardifier/pieceIterator +FD: net/minecraft/world/level/levelgen/Beardifier/f_158066_ net/minecraft/world/level/levelgen/Beardifier/junctionIterator +FD: net/minecraft/world/level/levelgen/Beardifier$1/f_223942_ net/minecraft/world/level/levelgen/Beardifier$1/$SwitchMap$net$minecraft$world$level$levelgen$structure$TerrainAdjustment +FD: net/minecraft/world/level/levelgen/Beardifier$Rigid/f_223944_ net/minecraft/world/level/levelgen/Beardifier$Rigid/box +FD: net/minecraft/world/level/levelgen/Beardifier$Rigid/f_223945_ net/minecraft/world/level/levelgen/Beardifier$Rigid/terrainAdjustment +FD: net/minecraft/world/level/levelgen/Beardifier$Rigid/f_223946_ net/minecraft/world/level/levelgen/Beardifier$Rigid/groundLevelDelta +FD: net/minecraft/world/level/levelgen/BelowZeroRetrogen/f_188455_ net/minecraft/world/level/levelgen/BelowZeroRetrogen/CODEC +FD: net/minecraft/world/level/levelgen/BelowZeroRetrogen/f_188456_ net/minecraft/world/level/levelgen/BelowZeroRetrogen/UPGRADE_HEIGHT_ACCESSOR +FD: net/minecraft/world/level/levelgen/BelowZeroRetrogen/f_188457_ net/minecraft/world/level/levelgen/BelowZeroRetrogen/EMPTY +FD: net/minecraft/world/level/levelgen/BelowZeroRetrogen/f_188458_ net/minecraft/world/level/levelgen/BelowZeroRetrogen/BITSET_CODEC +FD: net/minecraft/world/level/levelgen/BelowZeroRetrogen/f_188459_ net/minecraft/world/level/levelgen/BelowZeroRetrogen/NON_EMPTY_CHUNK_STATUS +FD: net/minecraft/world/level/levelgen/BelowZeroRetrogen/f_188460_ net/minecraft/world/level/levelgen/BelowZeroRetrogen/targetStatus +FD: net/minecraft/world/level/levelgen/BelowZeroRetrogen/f_188461_ net/minecraft/world/level/levelgen/BelowZeroRetrogen/missingBedrock +FD: net/minecraft/world/level/levelgen/BelowZeroRetrogen/f_196980_ net/minecraft/world/level/levelgen/BelowZeroRetrogen/RETAINED_RETROGEN_BIOMES +FD: net/minecraft/world/level/levelgen/BitRandomSource/f_188496_ net/minecraft/world/level/levelgen/BitRandomSource/FLOAT_MULTIPLIER +FD: net/minecraft/world/level/levelgen/BitRandomSource/f_188497_ net/minecraft/world/level/levelgen/BitRandomSource/DOUBLE_MULTIPLIER +FD: net/minecraft/world/level/levelgen/Column$Line/f_158197_ net/minecraft/world/level/levelgen/Column$Line/INSTANCE +FD: net/minecraft/world/level/levelgen/Column$Range/f_158204_ net/minecraft/world/level/levelgen/Column$Range/floor +FD: net/minecraft/world/level/levelgen/Column$Range/f_158205_ net/minecraft/world/level/levelgen/Column$Range/ceiling +FD: net/minecraft/world/level/levelgen/Column$Ray/f_158216_ net/minecraft/world/level/levelgen/Column$Ray/edge +FD: net/minecraft/world/level/levelgen/Column$Ray/f_158217_ net/minecraft/world/level/levelgen/Column$Ray/pointingUp +FD: net/minecraft/world/level/levelgen/DebugLevelSource/f_158225_ net/minecraft/world/level/levelgen/DebugLevelSource/HEIGHT +FD: net/minecraft/world/level/levelgen/DebugLevelSource/f_158226_ net/minecraft/world/level/levelgen/DebugLevelSource/BARRIER_HEIGHT +FD: net/minecraft/world/level/levelgen/DebugLevelSource/f_158227_ net/minecraft/world/level/levelgen/DebugLevelSource/BLOCK_MARGIN +FD: net/minecraft/world/level/levelgen/DebugLevelSource/f_64111_ net/minecraft/world/level/levelgen/DebugLevelSource/CODEC +FD: net/minecraft/world/level/levelgen/DebugLevelSource/f_64112_ net/minecraft/world/level/levelgen/DebugLevelSource/AIR +FD: net/minecraft/world/level/levelgen/DebugLevelSource/f_64113_ net/minecraft/world/level/levelgen/DebugLevelSource/BARRIER +FD: net/minecraft/world/level/levelgen/DebugLevelSource/f_64114_ net/minecraft/world/level/levelgen/DebugLevelSource/ALL_BLOCKS +FD: net/minecraft/world/level/levelgen/DebugLevelSource/f_64115_ net/minecraft/world/level/levelgen/DebugLevelSource/GRID_WIDTH +FD: net/minecraft/world/level/levelgen/DebugLevelSource/f_64116_ net/minecraft/world/level/levelgen/DebugLevelSource/GRID_HEIGHT +FD: net/minecraft/world/level/levelgen/Density/f_188536_ net/minecraft/world/level/levelgen/Density/SURFACE +FD: net/minecraft/world/level/levelgen/Density/f_188537_ net/minecraft/world/level/levelgen/Density/UNRECOVERABLY_DENSE +FD: net/minecraft/world/level/levelgen/Density/f_188538_ net/minecraft/world/level/levelgen/Density/UNRECOVERABLY_THIN +FD: net/minecraft/world/level/levelgen/DensityFunction/f_208216_ net/minecraft/world/level/levelgen/DensityFunction/DIRECT_CODEC +FD: net/minecraft/world/level/levelgen/DensityFunction/f_208217_ net/minecraft/world/level/levelgen/DensityFunction/CODEC +FD: net/minecraft/world/level/levelgen/DensityFunction/f_208218_ net/minecraft/world/level/levelgen/DensityFunction/HOLDER_HELPER_CODEC +FD: net/minecraft/world/level/levelgen/DensityFunction$NoiseHolder/f_223996_ net/minecraft/world/level/levelgen/DensityFunction$NoiseHolder/CODEC +FD: net/minecraft/world/level/levelgen/DensityFunction$NoiseHolder/f_223997_ net/minecraft/world/level/levelgen/DensityFunction$NoiseHolder/noiseData +FD: net/minecraft/world/level/levelgen/DensityFunction$NoiseHolder/f_223998_ net/minecraft/world/level/levelgen/DensityFunction$NoiseHolder/noise +FD: net/minecraft/world/level/levelgen/DensityFunction$SinglePointContext/f_208243_ net/minecraft/world/level/levelgen/DensityFunction$SinglePointContext/blockX +FD: net/minecraft/world/level/levelgen/DensityFunction$SinglePointContext/f_208244_ net/minecraft/world/level/levelgen/DensityFunction$SinglePointContext/blockY +FD: net/minecraft/world/level/levelgen/DensityFunction$SinglePointContext/f_208245_ net/minecraft/world/level/levelgen/DensityFunction$SinglePointContext/blockZ +FD: net/minecraft/world/level/levelgen/DensityFunctions/f_208257_ net/minecraft/world/level/levelgen/DensityFunctions/MAX_REASONABLE_NOISE_VALUE +FD: net/minecraft/world/level/levelgen/DensityFunctions/f_208258_ net/minecraft/world/level/levelgen/DensityFunctions/DIRECT_CODEC +FD: net/minecraft/world/level/levelgen/DensityFunctions/f_208259_ net/minecraft/world/level/levelgen/DensityFunctions/CODEC +FD: net/minecraft/world/level/levelgen/DensityFunctions/f_208260_ net/minecraft/world/level/levelgen/DensityFunctions/NOISE_VALUE_CODEC +FD: net/minecraft/world/level/levelgen/DensityFunctions$1/f_208393_ net/minecraft/world/level/levelgen/DensityFunctions$1/$SwitchMap$net$minecraft$world$level$levelgen$DensityFunctions$Mapped$Type +FD: net/minecraft/world/level/levelgen/DensityFunctions$1/f_208394_ net/minecraft/world/level/levelgen/DensityFunctions$1/$SwitchMap$net$minecraft$world$level$levelgen$DensityFunctions$TwoArgumentSimpleFunction$Type +FD: net/minecraft/world/level/levelgen/DensityFunctions$1/f_208395_ net/minecraft/world/level/levelgen/DensityFunctions$1/$SwitchMap$net$minecraft$world$level$levelgen$DensityFunctions$MulOrAdd$Type +FD: net/minecraft/world/level/levelgen/DensityFunctions$Ap2/f_208397_ net/minecraft/world/level/levelgen/DensityFunctions$Ap2/type +FD: net/minecraft/world/level/levelgen/DensityFunctions$Ap2/f_208398_ net/minecraft/world/level/levelgen/DensityFunctions$Ap2/argument1 +FD: net/minecraft/world/level/levelgen/DensityFunctions$Ap2/f_208399_ net/minecraft/world/level/levelgen/DensityFunctions$Ap2/argument2 +FD: net/minecraft/world/level/levelgen/DensityFunctions$Ap2/f_208400_ net/minecraft/world/level/levelgen/DensityFunctions$Ap2/minValue +FD: net/minecraft/world/level/levelgen/DensityFunctions$Ap2/f_208401_ net/minecraft/world/level/levelgen/DensityFunctions$Ap2/maxValue +FD: net/minecraft/world/level/levelgen/DensityFunctions$BeardifierMarker/$VALUES net/minecraft/world/level/levelgen/DensityFunctions$BeardifierMarker/$VALUES +FD: net/minecraft/world/level/levelgen/DensityFunctions$BeardifierMarker/INSTANCE net/minecraft/world/level/levelgen/DensityFunctions$BeardifierMarker/INSTANCE +FD: net/minecraft/world/level/levelgen/DensityFunctions$BeardifierOrMarker/f_208524_ net/minecraft/world/level/levelgen/DensityFunctions$BeardifierOrMarker/CODEC +FD: net/minecraft/world/level/levelgen/DensityFunctions$BlendAlpha/$VALUES net/minecraft/world/level/levelgen/DensityFunctions$BlendAlpha/$VALUES +FD: net/minecraft/world/level/levelgen/DensityFunctions$BlendAlpha/INSTANCE net/minecraft/world/level/levelgen/DensityFunctions$BlendAlpha/INSTANCE +FD: net/minecraft/world/level/levelgen/DensityFunctions$BlendAlpha/f_208528_ net/minecraft/world/level/levelgen/DensityFunctions$BlendAlpha/CODEC +FD: net/minecraft/world/level/levelgen/DensityFunctions$BlendDensity/f_208546_ net/minecraft/world/level/levelgen/DensityFunctions$BlendDensity/input +FD: net/minecraft/world/level/levelgen/DensityFunctions$BlendDensity/f_208547_ net/minecraft/world/level/levelgen/DensityFunctions$BlendDensity/CODEC +FD: net/minecraft/world/level/levelgen/DensityFunctions$BlendOffset/$VALUES net/minecraft/world/level/levelgen/DensityFunctions$BlendOffset/$VALUES +FD: net/minecraft/world/level/levelgen/DensityFunctions$BlendOffset/INSTANCE net/minecraft/world/level/levelgen/DensityFunctions$BlendOffset/INSTANCE +FD: net/minecraft/world/level/levelgen/DensityFunctions$BlendOffset/f_208565_ net/minecraft/world/level/levelgen/DensityFunctions$BlendOffset/CODEC +FD: net/minecraft/world/level/levelgen/DensityFunctions$Clamp/f_208583_ net/minecraft/world/level/levelgen/DensityFunctions$Clamp/CODEC +FD: net/minecraft/world/level/levelgen/DensityFunctions$Clamp/f_208584_ net/minecraft/world/level/levelgen/DensityFunctions$Clamp/input +FD: net/minecraft/world/level/levelgen/DensityFunctions$Clamp/f_208585_ net/minecraft/world/level/levelgen/DensityFunctions$Clamp/minValue +FD: net/minecraft/world/level/levelgen/DensityFunctions$Clamp/f_208586_ net/minecraft/world/level/levelgen/DensityFunctions$Clamp/maxValue +FD: net/minecraft/world/level/levelgen/DensityFunctions$Clamp/f_208587_ net/minecraft/world/level/levelgen/DensityFunctions$Clamp/DATA_CODEC +FD: net/minecraft/world/level/levelgen/DensityFunctions$Constant/f_208607_ net/minecraft/world/level/levelgen/DensityFunctions$Constant/value +FD: net/minecraft/world/level/levelgen/DensityFunctions$Constant/f_208608_ net/minecraft/world/level/levelgen/DensityFunctions$Constant/CODEC +FD: net/minecraft/world/level/levelgen/DensityFunctions$Constant/f_208609_ net/minecraft/world/level/levelgen/DensityFunctions$Constant/ZERO +FD: net/minecraft/world/level/levelgen/DensityFunctions$EndIslandDensityFunction/f_208626_ net/minecraft/world/level/levelgen/DensityFunctions$EndIslandDensityFunction/CODEC +FD: net/minecraft/world/level/levelgen/DensityFunctions$EndIslandDensityFunction/f_208627_ net/minecraft/world/level/levelgen/DensityFunctions$EndIslandDensityFunction/islandNoise +FD: net/minecraft/world/level/levelgen/DensityFunctions$EndIslandDensityFunction/f_224061_ net/minecraft/world/level/levelgen/DensityFunctions$EndIslandDensityFunction/ISLAND_THRESHOLD +FD: net/minecraft/world/level/levelgen/DensityFunctions$HolderHolder/f_208636_ net/minecraft/world/level/levelgen/DensityFunctions$HolderHolder/function +FD: net/minecraft/world/level/levelgen/DensityFunctions$Mapped/f_208654_ net/minecraft/world/level/levelgen/DensityFunctions$Mapped/type +FD: net/minecraft/world/level/levelgen/DensityFunctions$Mapped/f_208655_ net/minecraft/world/level/levelgen/DensityFunctions$Mapped/input +FD: net/minecraft/world/level/levelgen/DensityFunctions$Mapped/f_208656_ net/minecraft/world/level/levelgen/DensityFunctions$Mapped/minValue +FD: net/minecraft/world/level/levelgen/DensityFunctions$Mapped/f_208657_ net/minecraft/world/level/levelgen/DensityFunctions$Mapped/maxValue +FD: net/minecraft/world/level/levelgen/DensityFunctions$Mapped$Type/$VALUES net/minecraft/world/level/levelgen/DensityFunctions$Mapped$Type/$VALUES +FD: net/minecraft/world/level/levelgen/DensityFunctions$Mapped$Type/ABS net/minecraft/world/level/levelgen/DensityFunctions$Mapped$Type/ABS +FD: net/minecraft/world/level/levelgen/DensityFunctions$Mapped$Type/CUBE net/minecraft/world/level/levelgen/DensityFunctions$Mapped$Type/CUBE +FD: net/minecraft/world/level/levelgen/DensityFunctions$Mapped$Type/HALF_NEGATIVE net/minecraft/world/level/levelgen/DensityFunctions$Mapped$Type/HALF_NEGATIVE +FD: net/minecraft/world/level/levelgen/DensityFunctions$Mapped$Type/QUARTER_NEGATIVE net/minecraft/world/level/levelgen/DensityFunctions$Mapped$Type/QUARTER_NEGATIVE +FD: net/minecraft/world/level/levelgen/DensityFunctions$Mapped$Type/SQUARE net/minecraft/world/level/levelgen/DensityFunctions$Mapped$Type/SQUARE +FD: net/minecraft/world/level/levelgen/DensityFunctions$Mapped$Type/SQUEEZE net/minecraft/world/level/levelgen/DensityFunctions$Mapped$Type/SQUEEZE +FD: net/minecraft/world/level/levelgen/DensityFunctions$Mapped$Type/f_208690_ net/minecraft/world/level/levelgen/DensityFunctions$Mapped$Type/name +FD: net/minecraft/world/level/levelgen/DensityFunctions$Mapped$Type/f_208691_ net/minecraft/world/level/levelgen/DensityFunctions$Mapped$Type/codec +FD: net/minecraft/world/level/levelgen/DensityFunctions$Marker/f_208705_ net/minecraft/world/level/levelgen/DensityFunctions$Marker/type +FD: net/minecraft/world/level/levelgen/DensityFunctions$Marker/f_208706_ net/minecraft/world/level/levelgen/DensityFunctions$Marker/wrapped +FD: net/minecraft/world/level/levelgen/DensityFunctions$Marker$Type/$VALUES net/minecraft/world/level/levelgen/DensityFunctions$Marker$Type/$VALUES +FD: net/minecraft/world/level/levelgen/DensityFunctions$Marker$Type/Cache2D net/minecraft/world/level/levelgen/DensityFunctions$Marker$Type/Cache2D +FD: net/minecraft/world/level/levelgen/DensityFunctions$Marker$Type/CacheAllInCell net/minecraft/world/level/levelgen/DensityFunctions$Marker$Type/CacheAllInCell +FD: net/minecraft/world/level/levelgen/DensityFunctions$Marker$Type/CacheOnce net/minecraft/world/level/levelgen/DensityFunctions$Marker$Type/CacheOnce +FD: net/minecraft/world/level/levelgen/DensityFunctions$Marker$Type/FlatCache net/minecraft/world/level/levelgen/DensityFunctions$Marker$Type/FlatCache +FD: net/minecraft/world/level/levelgen/DensityFunctions$Marker$Type/Interpolated net/minecraft/world/level/levelgen/DensityFunctions$Marker$Type/Interpolated +FD: net/minecraft/world/level/levelgen/DensityFunctions$Marker$Type/f_208730_ net/minecraft/world/level/levelgen/DensityFunctions$Marker$Type/name +FD: net/minecraft/world/level/levelgen/DensityFunctions$Marker$Type/f_208731_ net/minecraft/world/level/levelgen/DensityFunctions$Marker$Type/codec +FD: net/minecraft/world/level/levelgen/DensityFunctions$MulOrAdd/f_208746_ net/minecraft/world/level/levelgen/DensityFunctions$MulOrAdd/specificType +FD: net/minecraft/world/level/levelgen/DensityFunctions$MulOrAdd/f_208747_ net/minecraft/world/level/levelgen/DensityFunctions$MulOrAdd/input +FD: net/minecraft/world/level/levelgen/DensityFunctions$MulOrAdd/f_208748_ net/minecraft/world/level/levelgen/DensityFunctions$MulOrAdd/minValue +FD: net/minecraft/world/level/levelgen/DensityFunctions$MulOrAdd/f_208749_ net/minecraft/world/level/levelgen/DensityFunctions$MulOrAdd/maxValue +FD: net/minecraft/world/level/levelgen/DensityFunctions$MulOrAdd/f_208750_ net/minecraft/world/level/levelgen/DensityFunctions$MulOrAdd/argument +FD: net/minecraft/world/level/levelgen/DensityFunctions$MulOrAdd$Type/$VALUES net/minecraft/world/level/levelgen/DensityFunctions$MulOrAdd$Type/$VALUES +FD: net/minecraft/world/level/levelgen/DensityFunctions$MulOrAdd$Type/ADD net/minecraft/world/level/levelgen/DensityFunctions$MulOrAdd$Type/ADD +FD: net/minecraft/world/level/levelgen/DensityFunctions$MulOrAdd$Type/MUL net/minecraft/world/level/levelgen/DensityFunctions$MulOrAdd$Type/MUL +FD: net/minecraft/world/level/levelgen/DensityFunctions$Noise/f_208784_ net/minecraft/world/level/levelgen/DensityFunctions$Noise/DATA_CODEC +FD: net/minecraft/world/level/levelgen/DensityFunctions$Noise/f_208785_ net/minecraft/world/level/levelgen/DensityFunctions$Noise/CODEC +FD: net/minecraft/world/level/levelgen/DensityFunctions$Noise/f_208787_ net/minecraft/world/level/levelgen/DensityFunctions$Noise/noise +FD: net/minecraft/world/level/levelgen/DensityFunctions$Noise/f_208788_ net/minecraft/world/level/levelgen/DensityFunctions$Noise/xzScale +FD: net/minecraft/world/level/levelgen/DensityFunctions$Noise/f_208789_ net/minecraft/world/level/levelgen/DensityFunctions$Noise/yScale +FD: net/minecraft/world/level/levelgen/DensityFunctions$RangeChoice/f_208821_ net/minecraft/world/level/levelgen/DensityFunctions$RangeChoice/DATA_CODEC +FD: net/minecraft/world/level/levelgen/DensityFunctions$RangeChoice/f_208822_ net/minecraft/world/level/levelgen/DensityFunctions$RangeChoice/CODEC +FD: net/minecraft/world/level/levelgen/DensityFunctions$RangeChoice/f_208823_ net/minecraft/world/level/levelgen/DensityFunctions$RangeChoice/input +FD: net/minecraft/world/level/levelgen/DensityFunctions$RangeChoice/f_208824_ net/minecraft/world/level/levelgen/DensityFunctions$RangeChoice/minInclusive +FD: net/minecraft/world/level/levelgen/DensityFunctions$RangeChoice/f_208825_ net/minecraft/world/level/levelgen/DensityFunctions$RangeChoice/maxExclusive +FD: net/minecraft/world/level/levelgen/DensityFunctions$RangeChoice/f_208826_ net/minecraft/world/level/levelgen/DensityFunctions$RangeChoice/whenInRange +FD: net/minecraft/world/level/levelgen/DensityFunctions$RangeChoice/f_208827_ net/minecraft/world/level/levelgen/DensityFunctions$RangeChoice/whenOutOfRange +FD: net/minecraft/world/level/levelgen/DensityFunctions$Shift/f_208857_ net/minecraft/world/level/levelgen/DensityFunctions$Shift/offsetNoise +FD: net/minecraft/world/level/levelgen/DensityFunctions$Shift/f_208858_ net/minecraft/world/level/levelgen/DensityFunctions$Shift/CODEC +FD: net/minecraft/world/level/levelgen/DensityFunctions$ShiftA/f_208877_ net/minecraft/world/level/levelgen/DensityFunctions$ShiftA/offsetNoise +FD: net/minecraft/world/level/levelgen/DensityFunctions$ShiftA/f_208878_ net/minecraft/world/level/levelgen/DensityFunctions$ShiftA/CODEC +FD: net/minecraft/world/level/levelgen/DensityFunctions$ShiftB/f_208897_ net/minecraft/world/level/levelgen/DensityFunctions$ShiftB/offsetNoise +FD: net/minecraft/world/level/levelgen/DensityFunctions$ShiftB/f_208898_ net/minecraft/world/level/levelgen/DensityFunctions$ShiftB/CODEC +FD: net/minecraft/world/level/levelgen/DensityFunctions$ShiftedNoise/f_208923_ net/minecraft/world/level/levelgen/DensityFunctions$ShiftedNoise/CODEC +FD: net/minecraft/world/level/levelgen/DensityFunctions$ShiftedNoise/f_208924_ net/minecraft/world/level/levelgen/DensityFunctions$ShiftedNoise/shiftX +FD: net/minecraft/world/level/levelgen/DensityFunctions$ShiftedNoise/f_208925_ net/minecraft/world/level/levelgen/DensityFunctions$ShiftedNoise/shiftY +FD: net/minecraft/world/level/levelgen/DensityFunctions$ShiftedNoise/f_208926_ net/minecraft/world/level/levelgen/DensityFunctions$ShiftedNoise/shiftZ +FD: net/minecraft/world/level/levelgen/DensityFunctions$ShiftedNoise/f_208927_ net/minecraft/world/level/levelgen/DensityFunctions$ShiftedNoise/xzScale +FD: net/minecraft/world/level/levelgen/DensityFunctions$ShiftedNoise/f_208928_ net/minecraft/world/level/levelgen/DensityFunctions$ShiftedNoise/yScale +FD: net/minecraft/world/level/levelgen/DensityFunctions$ShiftedNoise/f_208930_ net/minecraft/world/level/levelgen/DensityFunctions$ShiftedNoise/noise +FD: net/minecraft/world/level/levelgen/DensityFunctions$ShiftedNoise/f_208931_ net/minecraft/world/level/levelgen/DensityFunctions$ShiftedNoise/DATA_CODEC +FD: net/minecraft/world/level/levelgen/DensityFunctions$Spline/f_211701_ net/minecraft/world/level/levelgen/DensityFunctions$Spline/CODEC +FD: net/minecraft/world/level/levelgen/DensityFunctions$Spline/f_211702_ net/minecraft/world/level/levelgen/DensityFunctions$Spline/spline +FD: net/minecraft/world/level/levelgen/DensityFunctions$Spline/f_211705_ net/minecraft/world/level/levelgen/DensityFunctions$Spline/DATA_CODEC +FD: net/minecraft/world/level/levelgen/DensityFunctions$Spline/f_224114_ net/minecraft/world/level/levelgen/DensityFunctions$Spline/SPLINE_CODEC +FD: net/minecraft/world/level/levelgen/DensityFunctions$Spline$Coordinate/f_224121_ net/minecraft/world/level/levelgen/DensityFunctions$Spline$Coordinate/CODEC +FD: net/minecraft/world/level/levelgen/DensityFunctions$Spline$Coordinate/f_224122_ net/minecraft/world/level/levelgen/DensityFunctions$Spline$Coordinate/function +FD: net/minecraft/world/level/levelgen/DensityFunctions$Spline$Point/f_224139_ net/minecraft/world/level/levelgen/DensityFunctions$Spline$Point/context +FD: net/minecraft/world/level/levelgen/DensityFunctions$TwoArgumentSimpleFunction/f_209071_ net/minecraft/world/level/levelgen/DensityFunctions$TwoArgumentSimpleFunction/LOGGER +FD: net/minecraft/world/level/levelgen/DensityFunctions$TwoArgumentSimpleFunction$Type/$VALUES net/minecraft/world/level/levelgen/DensityFunctions$TwoArgumentSimpleFunction$Type/$VALUES +FD: net/minecraft/world/level/levelgen/DensityFunctions$TwoArgumentSimpleFunction$Type/ADD net/minecraft/world/level/levelgen/DensityFunctions$TwoArgumentSimpleFunction$Type/ADD +FD: net/minecraft/world/level/levelgen/DensityFunctions$TwoArgumentSimpleFunction$Type/MAX net/minecraft/world/level/levelgen/DensityFunctions$TwoArgumentSimpleFunction$Type/MAX +FD: net/minecraft/world/level/levelgen/DensityFunctions$TwoArgumentSimpleFunction$Type/MIN net/minecraft/world/level/levelgen/DensityFunctions$TwoArgumentSimpleFunction$Type/MIN +FD: net/minecraft/world/level/levelgen/DensityFunctions$TwoArgumentSimpleFunction$Type/MUL net/minecraft/world/level/levelgen/DensityFunctions$TwoArgumentSimpleFunction$Type/MUL +FD: net/minecraft/world/level/levelgen/DensityFunctions$TwoArgumentSimpleFunction$Type/f_209082_ net/minecraft/world/level/levelgen/DensityFunctions$TwoArgumentSimpleFunction$Type/codec +FD: net/minecraft/world/level/levelgen/DensityFunctions$TwoArgumentSimpleFunction$Type/f_209083_ net/minecraft/world/level/levelgen/DensityFunctions$TwoArgumentSimpleFunction$Type/name +FD: net/minecraft/world/level/levelgen/DensityFunctions$WeirdScaledSampler/f_208424_ net/minecraft/world/level/levelgen/DensityFunctions$WeirdScaledSampler/CODEC +FD: net/minecraft/world/level/levelgen/DensityFunctions$WeirdScaledSampler/f_208425_ net/minecraft/world/level/levelgen/DensityFunctions$WeirdScaledSampler/input +FD: net/minecraft/world/level/levelgen/DensityFunctions$WeirdScaledSampler/f_208427_ net/minecraft/world/level/levelgen/DensityFunctions$WeirdScaledSampler/noise +FD: net/minecraft/world/level/levelgen/DensityFunctions$WeirdScaledSampler/f_208428_ net/minecraft/world/level/levelgen/DensityFunctions$WeirdScaledSampler/rarityValueMapper +FD: net/minecraft/world/level/levelgen/DensityFunctions$WeirdScaledSampler/f_208429_ net/minecraft/world/level/levelgen/DensityFunctions$WeirdScaledSampler/DATA_CODEC +FD: net/minecraft/world/level/levelgen/DensityFunctions$WeirdScaledSampler$RarityValueMapper/$VALUES net/minecraft/world/level/levelgen/DensityFunctions$WeirdScaledSampler$RarityValueMapper/$VALUES +FD: net/minecraft/world/level/levelgen/DensityFunctions$WeirdScaledSampler$RarityValueMapper/TYPE1 net/minecraft/world/level/levelgen/DensityFunctions$WeirdScaledSampler$RarityValueMapper/TYPE1 +FD: net/minecraft/world/level/levelgen/DensityFunctions$WeirdScaledSampler$RarityValueMapper/TYPE2 net/minecraft/world/level/levelgen/DensityFunctions$WeirdScaledSampler$RarityValueMapper/TYPE2 +FD: net/minecraft/world/level/levelgen/DensityFunctions$WeirdScaledSampler$RarityValueMapper/f_208460_ net/minecraft/world/level/levelgen/DensityFunctions$WeirdScaledSampler$RarityValueMapper/CODEC +FD: net/minecraft/world/level/levelgen/DensityFunctions$WeirdScaledSampler$RarityValueMapper/f_208462_ net/minecraft/world/level/levelgen/DensityFunctions$WeirdScaledSampler$RarityValueMapper/name +FD: net/minecraft/world/level/levelgen/DensityFunctions$WeirdScaledSampler$RarityValueMapper/f_208463_ net/minecraft/world/level/levelgen/DensityFunctions$WeirdScaledSampler$RarityValueMapper/mapper +FD: net/minecraft/world/level/levelgen/DensityFunctions$WeirdScaledSampler$RarityValueMapper/f_208464_ net/minecraft/world/level/levelgen/DensityFunctions$WeirdScaledSampler$RarityValueMapper/maxRarity +FD: net/minecraft/world/level/levelgen/DensityFunctions$YClampedGradient/f_208480_ net/minecraft/world/level/levelgen/DensityFunctions$YClampedGradient/CODEC +FD: net/minecraft/world/level/levelgen/DensityFunctions$YClampedGradient/f_208481_ net/minecraft/world/level/levelgen/DensityFunctions$YClampedGradient/fromY +FD: net/minecraft/world/level/levelgen/DensityFunctions$YClampedGradient/f_208482_ net/minecraft/world/level/levelgen/DensityFunctions$YClampedGradient/toY +FD: net/minecraft/world/level/levelgen/DensityFunctions$YClampedGradient/f_208483_ net/minecraft/world/level/levelgen/DensityFunctions$YClampedGradient/fromValue +FD: net/minecraft/world/level/levelgen/DensityFunctions$YClampedGradient/f_208484_ net/minecraft/world/level/levelgen/DensityFunctions$YClampedGradient/toValue +FD: net/minecraft/world/level/levelgen/DensityFunctions$YClampedGradient/f_208485_ net/minecraft/world/level/levelgen/DensityFunctions$YClampedGradient/DATA_CODEC +FD: net/minecraft/world/level/levelgen/FlatLevelSource/f_64164_ net/minecraft/world/level/levelgen/FlatLevelSource/CODEC +FD: net/minecraft/world/level/levelgen/FlatLevelSource/f_64165_ net/minecraft/world/level/levelgen/FlatLevelSource/settings +FD: net/minecraft/world/level/levelgen/GenerationStep$Carving/$VALUES net/minecraft/world/level/levelgen/GenerationStep$Carving/$VALUES +FD: net/minecraft/world/level/levelgen/GenerationStep$Carving/AIR net/minecraft/world/level/levelgen/GenerationStep$Carving/AIR +FD: net/minecraft/world/level/levelgen/GenerationStep$Carving/LIQUID net/minecraft/world/level/levelgen/GenerationStep$Carving/LIQUID +FD: net/minecraft/world/level/levelgen/GenerationStep$Carving/f_64194_ net/minecraft/world/level/levelgen/GenerationStep$Carving/CODEC +FD: net/minecraft/world/level/levelgen/GenerationStep$Carving/f_64196_ net/minecraft/world/level/levelgen/GenerationStep$Carving/name +FD: net/minecraft/world/level/levelgen/GenerationStep$Decoration/$VALUES net/minecraft/world/level/levelgen/GenerationStep$Decoration/$VALUES +FD: net/minecraft/world/level/levelgen/GenerationStep$Decoration/FLUID_SPRINGS net/minecraft/world/level/levelgen/GenerationStep$Decoration/FLUID_SPRINGS +FD: net/minecraft/world/level/levelgen/GenerationStep$Decoration/LAKES net/minecraft/world/level/levelgen/GenerationStep$Decoration/LAKES +FD: net/minecraft/world/level/levelgen/GenerationStep$Decoration/LOCAL_MODIFICATIONS net/minecraft/world/level/levelgen/GenerationStep$Decoration/LOCAL_MODIFICATIONS +FD: net/minecraft/world/level/levelgen/GenerationStep$Decoration/RAW_GENERATION net/minecraft/world/level/levelgen/GenerationStep$Decoration/RAW_GENERATION +FD: net/minecraft/world/level/levelgen/GenerationStep$Decoration/STRONGHOLDS net/minecraft/world/level/levelgen/GenerationStep$Decoration/STRONGHOLDS +FD: net/minecraft/world/level/levelgen/GenerationStep$Decoration/SURFACE_STRUCTURES net/minecraft/world/level/levelgen/GenerationStep$Decoration/SURFACE_STRUCTURES +FD: net/minecraft/world/level/levelgen/GenerationStep$Decoration/TOP_LAYER_MODIFICATION net/minecraft/world/level/levelgen/GenerationStep$Decoration/TOP_LAYER_MODIFICATION +FD: net/minecraft/world/level/levelgen/GenerationStep$Decoration/UNDERGROUND_DECORATION net/minecraft/world/level/levelgen/GenerationStep$Decoration/UNDERGROUND_DECORATION +FD: net/minecraft/world/level/levelgen/GenerationStep$Decoration/UNDERGROUND_ORES net/minecraft/world/level/levelgen/GenerationStep$Decoration/UNDERGROUND_ORES +FD: net/minecraft/world/level/levelgen/GenerationStep$Decoration/UNDERGROUND_STRUCTURES net/minecraft/world/level/levelgen/GenerationStep$Decoration/UNDERGROUND_STRUCTURES +FD: net/minecraft/world/level/levelgen/GenerationStep$Decoration/VEGETAL_DECORATION net/minecraft/world/level/levelgen/GenerationStep$Decoration/VEGETAL_DECORATION +FD: net/minecraft/world/level/levelgen/GenerationStep$Decoration/f_224188_ net/minecraft/world/level/levelgen/GenerationStep$Decoration/CODEC +FD: net/minecraft/world/level/levelgen/GenerationStep$Decoration/f_224189_ net/minecraft/world/level/levelgen/GenerationStep$Decoration/name +FD: net/minecraft/world/level/levelgen/GeodeBlockSettings/f_158287_ net/minecraft/world/level/levelgen/GeodeBlockSettings/fillingProvider +FD: net/minecraft/world/level/levelgen/GeodeBlockSettings/f_158288_ net/minecraft/world/level/levelgen/GeodeBlockSettings/innerLayerProvider +FD: net/minecraft/world/level/levelgen/GeodeBlockSettings/f_158289_ net/minecraft/world/level/levelgen/GeodeBlockSettings/alternateInnerLayerProvider +FD: net/minecraft/world/level/levelgen/GeodeBlockSettings/f_158290_ net/minecraft/world/level/levelgen/GeodeBlockSettings/middleLayerProvider +FD: net/minecraft/world/level/levelgen/GeodeBlockSettings/f_158291_ net/minecraft/world/level/levelgen/GeodeBlockSettings/outerLayerProvider +FD: net/minecraft/world/level/levelgen/GeodeBlockSettings/f_158292_ net/minecraft/world/level/levelgen/GeodeBlockSettings/innerPlacements +FD: net/minecraft/world/level/levelgen/GeodeBlockSettings/f_158293_ net/minecraft/world/level/levelgen/GeodeBlockSettings/cannotReplace +FD: net/minecraft/world/level/levelgen/GeodeBlockSettings/f_158294_ net/minecraft/world/level/levelgen/GeodeBlockSettings/invalidBlocks +FD: net/minecraft/world/level/levelgen/GeodeBlockSettings/f_158295_ net/minecraft/world/level/levelgen/GeodeBlockSettings/CODEC +FD: net/minecraft/world/level/levelgen/GeodeCrackSettings/f_158324_ net/minecraft/world/level/levelgen/GeodeCrackSettings/CODEC +FD: net/minecraft/world/level/levelgen/GeodeCrackSettings/f_158325_ net/minecraft/world/level/levelgen/GeodeCrackSettings/generateCrackChance +FD: net/minecraft/world/level/levelgen/GeodeCrackSettings/f_158326_ net/minecraft/world/level/levelgen/GeodeCrackSettings/baseCrackSize +FD: net/minecraft/world/level/levelgen/GeodeCrackSettings/f_158327_ net/minecraft/world/level/levelgen/GeodeCrackSettings/crackPointOffset +FD: net/minecraft/world/level/levelgen/GeodeLayerSettings/f_158341_ net/minecraft/world/level/levelgen/GeodeLayerSettings/CODEC +FD: net/minecraft/world/level/levelgen/GeodeLayerSettings/f_158342_ net/minecraft/world/level/levelgen/GeodeLayerSettings/filling +FD: net/minecraft/world/level/levelgen/GeodeLayerSettings/f_158343_ net/minecraft/world/level/levelgen/GeodeLayerSettings/innerLayer +FD: net/minecraft/world/level/levelgen/GeodeLayerSettings/f_158344_ net/minecraft/world/level/levelgen/GeodeLayerSettings/middleLayer +FD: net/minecraft/world/level/levelgen/GeodeLayerSettings/f_158345_ net/minecraft/world/level/levelgen/GeodeLayerSettings/outerLayer +FD: net/minecraft/world/level/levelgen/GeodeLayerSettings/f_158346_ net/minecraft/world/level/levelgen/GeodeLayerSettings/LAYER_RANGE +FD: net/minecraft/world/level/levelgen/Heightmap/f_158363_ net/minecraft/world/level/levelgen/Heightmap/LOGGER +FD: net/minecraft/world/level/levelgen/Heightmap/f_64230_ net/minecraft/world/level/levelgen/Heightmap/NOT_AIR +FD: net/minecraft/world/level/levelgen/Heightmap/f_64231_ net/minecraft/world/level/levelgen/Heightmap/MATERIAL_MOTION_BLOCKING +FD: net/minecraft/world/level/levelgen/Heightmap/f_64232_ net/minecraft/world/level/levelgen/Heightmap/data +FD: net/minecraft/world/level/levelgen/Heightmap/f_64233_ net/minecraft/world/level/levelgen/Heightmap/isOpaque +FD: net/minecraft/world/level/levelgen/Heightmap/f_64234_ net/minecraft/world/level/levelgen/Heightmap/chunk +FD: net/minecraft/world/level/levelgen/Heightmap$Types/$VALUES net/minecraft/world/level/levelgen/Heightmap$Types/$VALUES +FD: net/minecraft/world/level/levelgen/Heightmap$Types/MOTION_BLOCKING net/minecraft/world/level/levelgen/Heightmap$Types/MOTION_BLOCKING +FD: net/minecraft/world/level/levelgen/Heightmap$Types/MOTION_BLOCKING_NO_LEAVES net/minecraft/world/level/levelgen/Heightmap$Types/MOTION_BLOCKING_NO_LEAVES +FD: net/minecraft/world/level/levelgen/Heightmap$Types/OCEAN_FLOOR net/minecraft/world/level/levelgen/Heightmap$Types/OCEAN_FLOOR +FD: net/minecraft/world/level/levelgen/Heightmap$Types/OCEAN_FLOOR_WG net/minecraft/world/level/levelgen/Heightmap$Types/OCEAN_FLOOR_WG +FD: net/minecraft/world/level/levelgen/Heightmap$Types/WORLD_SURFACE net/minecraft/world/level/levelgen/Heightmap$Types/WORLD_SURFACE +FD: net/minecraft/world/level/levelgen/Heightmap$Types/WORLD_SURFACE_WG net/minecraft/world/level/levelgen/Heightmap$Types/WORLD_SURFACE_WG +FD: net/minecraft/world/level/levelgen/Heightmap$Types/f_64274_ net/minecraft/world/level/levelgen/Heightmap$Types/CODEC +FD: net/minecraft/world/level/levelgen/Heightmap$Types/f_64275_ net/minecraft/world/level/levelgen/Heightmap$Types/serializationKey +FD: net/minecraft/world/level/levelgen/Heightmap$Types/f_64276_ net/minecraft/world/level/levelgen/Heightmap$Types/usage +FD: net/minecraft/world/level/levelgen/Heightmap$Types/f_64277_ net/minecraft/world/level/levelgen/Heightmap$Types/isOpaque +FD: net/minecraft/world/level/levelgen/Heightmap$Usage/$VALUES net/minecraft/world/level/levelgen/Heightmap$Usage/$VALUES +FD: net/minecraft/world/level/levelgen/Heightmap$Usage/CLIENT net/minecraft/world/level/levelgen/Heightmap$Usage/CLIENT +FD: net/minecraft/world/level/levelgen/Heightmap$Usage/LIVE_WORLD net/minecraft/world/level/levelgen/Heightmap$Usage/LIVE_WORLD +FD: net/minecraft/world/level/levelgen/Heightmap$Usage/WORLDGEN net/minecraft/world/level/levelgen/Heightmap$Usage/WORLDGEN +FD: net/minecraft/world/level/levelgen/LegacyRandomSource/f_188571_ net/minecraft/world/level/levelgen/LegacyRandomSource/MODULUS_BITS +FD: net/minecraft/world/level/levelgen/LegacyRandomSource/f_188572_ net/minecraft/world/level/levelgen/LegacyRandomSource/MODULUS_MASK +FD: net/minecraft/world/level/levelgen/LegacyRandomSource/f_188573_ net/minecraft/world/level/levelgen/LegacyRandomSource/MULTIPLIER +FD: net/minecraft/world/level/levelgen/LegacyRandomSource/f_188574_ net/minecraft/world/level/levelgen/LegacyRandomSource/INCREMENT +FD: net/minecraft/world/level/levelgen/LegacyRandomSource/f_188575_ net/minecraft/world/level/levelgen/LegacyRandomSource/seed +FD: net/minecraft/world/level/levelgen/LegacyRandomSource/f_188576_ net/minecraft/world/level/levelgen/LegacyRandomSource/gaussianSource +FD: net/minecraft/world/level/levelgen/LegacyRandomSource$LegacyPositionalRandomFactory/f_188586_ net/minecraft/world/level/levelgen/LegacyRandomSource$LegacyPositionalRandomFactory/seed +FD: net/minecraft/world/level/levelgen/MarsagliaPolarGaussian/f_188597_ net/minecraft/world/level/levelgen/MarsagliaPolarGaussian/randomSource +FD: net/minecraft/world/level/levelgen/MarsagliaPolarGaussian/f_188598_ net/minecraft/world/level/levelgen/MarsagliaPolarGaussian/nextNextGaussian +FD: net/minecraft/world/level/levelgen/MarsagliaPolarGaussian/f_188599_ net/minecraft/world/level/levelgen/MarsagliaPolarGaussian/haveNextNextGaussian +FD: net/minecraft/world/level/levelgen/NoiseBasedChunkGenerator/f_188607_ net/minecraft/world/level/levelgen/NoiseBasedChunkGenerator/globalFluidPicker +FD: net/minecraft/world/level/levelgen/NoiseBasedChunkGenerator/f_64314_ net/minecraft/world/level/levelgen/NoiseBasedChunkGenerator/CODEC +FD: net/minecraft/world/level/levelgen/NoiseBasedChunkGenerator/f_64318_ net/minecraft/world/level/levelgen/NoiseBasedChunkGenerator/settings +FD: net/minecraft/world/level/levelgen/NoiseBasedChunkGenerator/f_64321_ net/minecraft/world/level/levelgen/NoiseBasedChunkGenerator/AIR +FD: net/minecraft/world/level/levelgen/NoiseChunk/f_188717_ net/minecraft/world/level/levelgen/NoiseChunk/noiseSettings +FD: net/minecraft/world/level/levelgen/NoiseChunk/f_188718_ net/minecraft/world/level/levelgen/NoiseChunk/cellCountXZ +FD: net/minecraft/world/level/levelgen/NoiseChunk/f_188719_ net/minecraft/world/level/levelgen/NoiseChunk/cellCountY +FD: net/minecraft/world/level/levelgen/NoiseChunk/f_188720_ net/minecraft/world/level/levelgen/NoiseChunk/cellNoiseMinY +FD: net/minecraft/world/level/levelgen/NoiseChunk/f_188721_ net/minecraft/world/level/levelgen/NoiseChunk/firstCellX +FD: net/minecraft/world/level/levelgen/NoiseChunk/f_188722_ net/minecraft/world/level/levelgen/NoiseChunk/firstCellZ +FD: net/minecraft/world/level/levelgen/NoiseChunk/f_188723_ net/minecraft/world/level/levelgen/NoiseChunk/firstNoiseX +FD: net/minecraft/world/level/levelgen/NoiseChunk/f_188724_ net/minecraft/world/level/levelgen/NoiseChunk/firstNoiseZ +FD: net/minecraft/world/level/levelgen/NoiseChunk/f_188725_ net/minecraft/world/level/levelgen/NoiseChunk/interpolators +FD: net/minecraft/world/level/levelgen/NoiseChunk/f_188728_ net/minecraft/world/level/levelgen/NoiseChunk/aquifer +FD: net/minecraft/world/level/levelgen/NoiseChunk/f_188731_ net/minecraft/world/level/levelgen/NoiseChunk/blender +FD: net/minecraft/world/level/levelgen/NoiseChunk/f_198238_ net/minecraft/world/level/levelgen/NoiseChunk/preliminarySurfaceLevel +FD: net/minecraft/world/level/levelgen/NoiseChunk/f_209150_ net/minecraft/world/level/levelgen/NoiseChunk/cellStartBlockX +FD: net/minecraft/world/level/levelgen/NoiseChunk/f_209151_ net/minecraft/world/level/levelgen/NoiseChunk/cellStartBlockY +FD: net/minecraft/world/level/levelgen/NoiseChunk/f_209152_ net/minecraft/world/level/levelgen/NoiseChunk/cellStartBlockZ +FD: net/minecraft/world/level/levelgen/NoiseChunk/f_209153_ net/minecraft/world/level/levelgen/NoiseChunk/inCellX +FD: net/minecraft/world/level/levelgen/NoiseChunk/f_209154_ net/minecraft/world/level/levelgen/NoiseChunk/inCellY +FD: net/minecraft/world/level/levelgen/NoiseChunk/f_209155_ net/minecraft/world/level/levelgen/NoiseChunk/inCellZ +FD: net/minecraft/world/level/levelgen/NoiseChunk/f_209156_ net/minecraft/world/level/levelgen/NoiseChunk/interpolationCounter +FD: net/minecraft/world/level/levelgen/NoiseChunk/f_209157_ net/minecraft/world/level/levelgen/NoiseChunk/arrayInterpolationCounter +FD: net/minecraft/world/level/levelgen/NoiseChunk/f_209158_ net/minecraft/world/level/levelgen/NoiseChunk/arrayIndex +FD: net/minecraft/world/level/levelgen/NoiseChunk/f_209159_ net/minecraft/world/level/levelgen/NoiseChunk/sliceFillingContextProvider +FD: net/minecraft/world/level/levelgen/NoiseChunk/f_209160_ net/minecraft/world/level/levelgen/NoiseChunk/cellCaches +FD: net/minecraft/world/level/levelgen/NoiseChunk/f_209161_ net/minecraft/world/level/levelgen/NoiseChunk/wrapped +FD: net/minecraft/world/level/levelgen/NoiseChunk/f_209162_ net/minecraft/world/level/levelgen/NoiseChunk/initialDensityNoJaggedness +FD: net/minecraft/world/level/levelgen/NoiseChunk/f_209163_ net/minecraft/world/level/levelgen/NoiseChunk/blockStateRule +FD: net/minecraft/world/level/levelgen/NoiseChunk/f_209164_ net/minecraft/world/level/levelgen/NoiseChunk/blendAlpha +FD: net/minecraft/world/level/levelgen/NoiseChunk/f_209165_ net/minecraft/world/level/levelgen/NoiseChunk/blendOffset +FD: net/minecraft/world/level/levelgen/NoiseChunk/f_209166_ net/minecraft/world/level/levelgen/NoiseChunk/beardifier +FD: net/minecraft/world/level/levelgen/NoiseChunk/f_209167_ net/minecraft/world/level/levelgen/NoiseChunk/lastBlendingDataPos +FD: net/minecraft/world/level/levelgen/NoiseChunk/f_209168_ net/minecraft/world/level/levelgen/NoiseChunk/lastBlendingOutput +FD: net/minecraft/world/level/levelgen/NoiseChunk/f_209169_ net/minecraft/world/level/levelgen/NoiseChunk/noiseSizeXZ +FD: net/minecraft/world/level/levelgen/NoiseChunk/f_209170_ net/minecraft/world/level/levelgen/NoiseChunk/cellWidth +FD: net/minecraft/world/level/levelgen/NoiseChunk/f_209171_ net/minecraft/world/level/levelgen/NoiseChunk/cellHeight +FD: net/minecraft/world/level/levelgen/NoiseChunk/f_209172_ net/minecraft/world/level/levelgen/NoiseChunk/interpolating +FD: net/minecraft/world/level/levelgen/NoiseChunk/f_209173_ net/minecraft/world/level/levelgen/NoiseChunk/fillingCell +FD: net/minecraft/world/level/levelgen/NoiseChunk$1/f_209249_ net/minecraft/world/level/levelgen/NoiseChunk$1/this$0 +FD: net/minecraft/world/level/levelgen/NoiseChunk$2/f_209257_ net/minecraft/world/level/levelgen/NoiseChunk$2/$SwitchMap$net$minecraft$world$level$levelgen$DensityFunctions$Marker$Type +FD: net/minecraft/world/level/levelgen/NoiseChunk$BlendAlpha/f_209259_ net/minecraft/world/level/levelgen/NoiseChunk$BlendAlpha/this$0 +FD: net/minecraft/world/level/levelgen/NoiseChunk$BlendOffset/f_209271_ net/minecraft/world/level/levelgen/NoiseChunk$BlendOffset/this$0 +FD: net/minecraft/world/level/levelgen/NoiseChunk$Cache2D/f_209284_ net/minecraft/world/level/levelgen/NoiseChunk$Cache2D/function +FD: net/minecraft/world/level/levelgen/NoiseChunk$Cache2D/f_209285_ net/minecraft/world/level/levelgen/NoiseChunk$Cache2D/lastPos2D +FD: net/minecraft/world/level/levelgen/NoiseChunk$Cache2D/f_209286_ net/minecraft/world/level/levelgen/NoiseChunk$Cache2D/lastValue +FD: net/minecraft/world/level/levelgen/NoiseChunk$CacheAllInCell/f_209296_ net/minecraft/world/level/levelgen/NoiseChunk$CacheAllInCell/this$0 +FD: net/minecraft/world/level/levelgen/NoiseChunk$CacheAllInCell/f_209297_ net/minecraft/world/level/levelgen/NoiseChunk$CacheAllInCell/noiseFiller +FD: net/minecraft/world/level/levelgen/NoiseChunk$CacheAllInCell/f_209298_ net/minecraft/world/level/levelgen/NoiseChunk$CacheAllInCell/values +FD: net/minecraft/world/level/levelgen/NoiseChunk$CacheOnce/f_209309_ net/minecraft/world/level/levelgen/NoiseChunk$CacheOnce/this$0 +FD: net/minecraft/world/level/levelgen/NoiseChunk$CacheOnce/f_209310_ net/minecraft/world/level/levelgen/NoiseChunk$CacheOnce/function +FD: net/minecraft/world/level/levelgen/NoiseChunk$CacheOnce/f_209311_ net/minecraft/world/level/levelgen/NoiseChunk$CacheOnce/lastCounter +FD: net/minecraft/world/level/levelgen/NoiseChunk$CacheOnce/f_209312_ net/minecraft/world/level/levelgen/NoiseChunk$CacheOnce/lastArrayCounter +FD: net/minecraft/world/level/levelgen/NoiseChunk$CacheOnce/f_209313_ net/minecraft/world/level/levelgen/NoiseChunk$CacheOnce/lastValue +FD: net/minecraft/world/level/levelgen/NoiseChunk$CacheOnce/f_209314_ net/minecraft/world/level/levelgen/NoiseChunk$CacheOnce/lastArray +FD: net/minecraft/world/level/levelgen/NoiseChunk$FlatCache/f_209325_ net/minecraft/world/level/levelgen/NoiseChunk$FlatCache/this$0 +FD: net/minecraft/world/level/levelgen/NoiseChunk$FlatCache/f_209326_ net/minecraft/world/level/levelgen/NoiseChunk$FlatCache/noiseFiller +FD: net/minecraft/world/level/levelgen/NoiseChunk$FlatCache/f_209327_ net/minecraft/world/level/levelgen/NoiseChunk$FlatCache/values +FD: net/minecraft/world/level/levelgen/NoiseChunk$NoiseInterpolator/f_188827_ net/minecraft/world/level/levelgen/NoiseChunk$NoiseInterpolator/this$0 +FD: net/minecraft/world/level/levelgen/NoiseChunk$NoiseInterpolator/f_188828_ net/minecraft/world/level/levelgen/NoiseChunk$NoiseInterpolator/slice0 +FD: net/minecraft/world/level/levelgen/NoiseChunk$NoiseInterpolator/f_188829_ net/minecraft/world/level/levelgen/NoiseChunk$NoiseInterpolator/slice1 +FD: net/minecraft/world/level/levelgen/NoiseChunk$NoiseInterpolator/f_188830_ net/minecraft/world/level/levelgen/NoiseChunk$NoiseInterpolator/noiseFiller +FD: net/minecraft/world/level/levelgen/NoiseChunk$NoiseInterpolator/f_188831_ net/minecraft/world/level/levelgen/NoiseChunk$NoiseInterpolator/noise000 +FD: net/minecraft/world/level/levelgen/NoiseChunk$NoiseInterpolator/f_188832_ net/minecraft/world/level/levelgen/NoiseChunk$NoiseInterpolator/noise001 +FD: net/minecraft/world/level/levelgen/NoiseChunk$NoiseInterpolator/f_188833_ net/minecraft/world/level/levelgen/NoiseChunk$NoiseInterpolator/noise100 +FD: net/minecraft/world/level/levelgen/NoiseChunk$NoiseInterpolator/f_188834_ net/minecraft/world/level/levelgen/NoiseChunk$NoiseInterpolator/noise101 +FD: net/minecraft/world/level/levelgen/NoiseChunk$NoiseInterpolator/f_188835_ net/minecraft/world/level/levelgen/NoiseChunk$NoiseInterpolator/noise010 +FD: net/minecraft/world/level/levelgen/NoiseChunk$NoiseInterpolator/f_188836_ net/minecraft/world/level/levelgen/NoiseChunk$NoiseInterpolator/noise011 +FD: net/minecraft/world/level/levelgen/NoiseChunk$NoiseInterpolator/f_188837_ net/minecraft/world/level/levelgen/NoiseChunk$NoiseInterpolator/noise110 +FD: net/minecraft/world/level/levelgen/NoiseChunk$NoiseInterpolator/f_188838_ net/minecraft/world/level/levelgen/NoiseChunk$NoiseInterpolator/noise111 +FD: net/minecraft/world/level/levelgen/NoiseChunk$NoiseInterpolator/f_188839_ net/minecraft/world/level/levelgen/NoiseChunk$NoiseInterpolator/valueXZ00 +FD: net/minecraft/world/level/levelgen/NoiseChunk$NoiseInterpolator/f_188840_ net/minecraft/world/level/levelgen/NoiseChunk$NoiseInterpolator/valueXZ10 +FD: net/minecraft/world/level/levelgen/NoiseChunk$NoiseInterpolator/f_188841_ net/minecraft/world/level/levelgen/NoiseChunk$NoiseInterpolator/valueXZ01 +FD: net/minecraft/world/level/levelgen/NoiseChunk$NoiseInterpolator/f_188842_ net/minecraft/world/level/levelgen/NoiseChunk$NoiseInterpolator/valueXZ11 +FD: net/minecraft/world/level/levelgen/NoiseChunk$NoiseInterpolator/f_188843_ net/minecraft/world/level/levelgen/NoiseChunk$NoiseInterpolator/valueZ0 +FD: net/minecraft/world/level/levelgen/NoiseChunk$NoiseInterpolator/f_188844_ net/minecraft/world/level/levelgen/NoiseChunk$NoiseInterpolator/valueZ1 +FD: net/minecraft/world/level/levelgen/NoiseChunk$NoiseInterpolator/f_188845_ net/minecraft/world/level/levelgen/NoiseChunk$NoiseInterpolator/value +FD: net/minecraft/world/level/levelgen/NoiseGeneratorSettings/f_158533_ net/minecraft/world/level/levelgen/NoiseGeneratorSettings/aquifersEnabled +FD: net/minecraft/world/level/levelgen/NoiseGeneratorSettings/f_158536_ net/minecraft/world/level/levelgen/NoiseGeneratorSettings/oreVeinsEnabled +FD: net/minecraft/world/level/levelgen/NoiseGeneratorSettings/f_188869_ net/minecraft/world/level/levelgen/NoiseGeneratorSettings/LARGE_BIOMES +FD: net/minecraft/world/level/levelgen/NoiseGeneratorSettings/f_188871_ net/minecraft/world/level/levelgen/NoiseGeneratorSettings/surfaceRule +FD: net/minecraft/world/level/levelgen/NoiseGeneratorSettings/f_209353_ net/minecraft/world/level/levelgen/NoiseGeneratorSettings/noiseRouter +FD: net/minecraft/world/level/levelgen/NoiseGeneratorSettings/f_209354_ net/minecraft/world/level/levelgen/NoiseGeneratorSettings/useLegacyRandomSource +FD: net/minecraft/world/level/levelgen/NoiseGeneratorSettings/f_224370_ net/minecraft/world/level/levelgen/NoiseGeneratorSettings/spawnTarget +FD: net/minecraft/world/level/levelgen/NoiseGeneratorSettings/f_64430_ net/minecraft/world/level/levelgen/NoiseGeneratorSettings/DIRECT_CODEC +FD: net/minecraft/world/level/levelgen/NoiseGeneratorSettings/f_64431_ net/minecraft/world/level/levelgen/NoiseGeneratorSettings/CODEC +FD: net/minecraft/world/level/levelgen/NoiseGeneratorSettings/f_64432_ net/minecraft/world/level/levelgen/NoiseGeneratorSettings/OVERWORLD +FD: net/minecraft/world/level/levelgen/NoiseGeneratorSettings/f_64433_ net/minecraft/world/level/levelgen/NoiseGeneratorSettings/AMPLIFIED +FD: net/minecraft/world/level/levelgen/NoiseGeneratorSettings/f_64434_ net/minecraft/world/level/levelgen/NoiseGeneratorSettings/NETHER +FD: net/minecraft/world/level/levelgen/NoiseGeneratorSettings/f_64435_ net/minecraft/world/level/levelgen/NoiseGeneratorSettings/END +FD: net/minecraft/world/level/levelgen/NoiseGeneratorSettings/f_64436_ net/minecraft/world/level/levelgen/NoiseGeneratorSettings/CAVES +FD: net/minecraft/world/level/levelgen/NoiseGeneratorSettings/f_64437_ net/minecraft/world/level/levelgen/NoiseGeneratorSettings/FLOATING_ISLANDS +FD: net/minecraft/world/level/levelgen/NoiseGeneratorSettings/f_64439_ net/minecraft/world/level/levelgen/NoiseGeneratorSettings/noiseSettings +FD: net/minecraft/world/level/levelgen/NoiseGeneratorSettings/f_64440_ net/minecraft/world/level/levelgen/NoiseGeneratorSettings/defaultBlock +FD: net/minecraft/world/level/levelgen/NoiseGeneratorSettings/f_64441_ net/minecraft/world/level/levelgen/NoiseGeneratorSettings/defaultFluid +FD: net/minecraft/world/level/levelgen/NoiseGeneratorSettings/f_64444_ net/minecraft/world/level/levelgen/NoiseGeneratorSettings/seaLevel +FD: net/minecraft/world/level/levelgen/NoiseGeneratorSettings/f_64445_ net/minecraft/world/level/levelgen/NoiseGeneratorSettings/disableMobGeneration +FD: net/minecraft/world/level/levelgen/NoiseRouter/f_209378_ net/minecraft/world/level/levelgen/NoiseRouter/barrierNoise +FD: net/minecraft/world/level/levelgen/NoiseRouter/f_209379_ net/minecraft/world/level/levelgen/NoiseRouter/fluidLevelFloodednessNoise +FD: net/minecraft/world/level/levelgen/NoiseRouter/f_209380_ net/minecraft/world/level/levelgen/NoiseRouter/fluidLevelSpreadNoise +FD: net/minecraft/world/level/levelgen/NoiseRouter/f_209381_ net/minecraft/world/level/levelgen/NoiseRouter/lavaNoise +FD: net/minecraft/world/level/levelgen/NoiseRouter/f_209384_ net/minecraft/world/level/levelgen/NoiseRouter/temperature +FD: net/minecraft/world/level/levelgen/NoiseRouter/f_209386_ net/minecraft/world/level/levelgen/NoiseRouter/continents +FD: net/minecraft/world/level/levelgen/NoiseRouter/f_209387_ net/minecraft/world/level/levelgen/NoiseRouter/erosion +FD: net/minecraft/world/level/levelgen/NoiseRouter/f_209388_ net/minecraft/world/level/levelgen/NoiseRouter/depth +FD: net/minecraft/world/level/levelgen/NoiseRouter/f_209389_ net/minecraft/world/level/levelgen/NoiseRouter/ridges +FD: net/minecraft/world/level/levelgen/NoiseRouter/f_209390_ net/minecraft/world/level/levelgen/NoiseRouter/initialDensityWithoutJaggedness +FD: net/minecraft/world/level/levelgen/NoiseRouter/f_209391_ net/minecraft/world/level/levelgen/NoiseRouter/finalDensity +FD: net/minecraft/world/level/levelgen/NoiseRouter/f_209392_ net/minecraft/world/level/levelgen/NoiseRouter/veinToggle +FD: net/minecraft/world/level/levelgen/NoiseRouter/f_209393_ net/minecraft/world/level/levelgen/NoiseRouter/veinRidged +FD: net/minecraft/world/level/levelgen/NoiseRouter/f_209394_ net/minecraft/world/level/levelgen/NoiseRouter/veinGap +FD: net/minecraft/world/level/levelgen/NoiseRouter/f_224391_ net/minecraft/world/level/levelgen/NoiseRouter/CODEC +FD: net/minecraft/world/level/levelgen/NoiseRouter/f_224392_ net/minecraft/world/level/levelgen/NoiseRouter/vegetation +FD: net/minecraft/world/level/levelgen/NoiseRouterData/f_209437_ net/minecraft/world/level/levelgen/NoiseRouterData/PILLARS +FD: net/minecraft/world/level/levelgen/NoiseRouterData/f_209438_ net/minecraft/world/level/levelgen/NoiseRouterData/SPAGHETTI_2D_THICKNESS_MODULATOR +FD: net/minecraft/world/level/levelgen/NoiseRouterData/f_209439_ net/minecraft/world/level/levelgen/NoiseRouterData/SPAGHETTI_2D +FD: net/minecraft/world/level/levelgen/NoiseRouterData/f_209440_ net/minecraft/world/level/levelgen/NoiseRouterData/ORE_THICKNESS +FD: net/minecraft/world/level/levelgen/NoiseRouterData/f_209441_ net/minecraft/world/level/levelgen/NoiseRouterData/VEININESS_FREQUENCY +FD: net/minecraft/world/level/levelgen/NoiseRouterData/f_209442_ net/minecraft/world/level/levelgen/NoiseRouterData/NOODLE_SPACING_AND_STRAIGHTNESS +FD: net/minecraft/world/level/levelgen/NoiseRouterData/f_209443_ net/minecraft/world/level/levelgen/NoiseRouterData/SURFACE_DENSITY_THRESHOLD +FD: net/minecraft/world/level/levelgen/NoiseRouterData/f_209444_ net/minecraft/world/level/levelgen/NoiseRouterData/BLENDING_FACTOR +FD: net/minecraft/world/level/levelgen/NoiseRouterData/f_209445_ net/minecraft/world/level/levelgen/NoiseRouterData/BLENDING_JAGGEDNESS +FD: net/minecraft/world/level/levelgen/NoiseRouterData/f_209446_ net/minecraft/world/level/levelgen/NoiseRouterData/ZERO +FD: net/minecraft/world/level/levelgen/NoiseRouterData/f_209447_ net/minecraft/world/level/levelgen/NoiseRouterData/Y +FD: net/minecraft/world/level/levelgen/NoiseRouterData/f_209448_ net/minecraft/world/level/levelgen/NoiseRouterData/SHIFT_X +FD: net/minecraft/world/level/levelgen/NoiseRouterData/f_209449_ net/minecraft/world/level/levelgen/NoiseRouterData/SHIFT_Z +FD: net/minecraft/world/level/levelgen/NoiseRouterData/f_209451_ net/minecraft/world/level/levelgen/NoiseRouterData/CONTINENTS +FD: net/minecraft/world/level/levelgen/NoiseRouterData/f_209452_ net/minecraft/world/level/levelgen/NoiseRouterData/EROSION +FD: net/minecraft/world/level/levelgen/NoiseRouterData/f_209453_ net/minecraft/world/level/levelgen/NoiseRouterData/RIDGES +FD: net/minecraft/world/level/levelgen/NoiseRouterData/f_209454_ net/minecraft/world/level/levelgen/NoiseRouterData/FACTOR +FD: net/minecraft/world/level/levelgen/NoiseRouterData/f_209455_ net/minecraft/world/level/levelgen/NoiseRouterData/DEPTH +FD: net/minecraft/world/level/levelgen/NoiseRouterData/f_209456_ net/minecraft/world/level/levelgen/NoiseRouterData/SLOPED_CHEESE +FD: net/minecraft/world/level/levelgen/NoiseRouterData/f_209457_ net/minecraft/world/level/levelgen/NoiseRouterData/CONTINENTS_LARGE +FD: net/minecraft/world/level/levelgen/NoiseRouterData/f_209458_ net/minecraft/world/level/levelgen/NoiseRouterData/EROSION_LARGE +FD: net/minecraft/world/level/levelgen/NoiseRouterData/f_209459_ net/minecraft/world/level/levelgen/NoiseRouterData/FACTOR_LARGE +FD: net/minecraft/world/level/levelgen/NoiseRouterData/f_209460_ net/minecraft/world/level/levelgen/NoiseRouterData/DEPTH_LARGE +FD: net/minecraft/world/level/levelgen/NoiseRouterData/f_209461_ net/minecraft/world/level/levelgen/NoiseRouterData/SLOPED_CHEESE_LARGE +FD: net/minecraft/world/level/levelgen/NoiseRouterData/f_209462_ net/minecraft/world/level/levelgen/NoiseRouterData/SLOPED_CHEESE_END +FD: net/minecraft/world/level/levelgen/NoiseRouterData/f_209463_ net/minecraft/world/level/levelgen/NoiseRouterData/SPAGHETTI_ROUGHNESS_FUNCTION +FD: net/minecraft/world/level/levelgen/NoiseRouterData/f_209464_ net/minecraft/world/level/levelgen/NoiseRouterData/ENTRANCES +FD: net/minecraft/world/level/levelgen/NoiseRouterData/f_209465_ net/minecraft/world/level/levelgen/NoiseRouterData/NOODLE +FD: net/minecraft/world/level/levelgen/NoiseRouterData/f_224418_ net/minecraft/world/level/levelgen/NoiseRouterData/BASE_3D_NOISE_END +FD: net/minecraft/world/level/levelgen/NoiseRouterData/f_224419_ net/minecraft/world/level/levelgen/NoiseRouterData/OFFSET_LARGE +FD: net/minecraft/world/level/levelgen/NoiseRouterData/f_224420_ net/minecraft/world/level/levelgen/NoiseRouterData/JAGGEDNESS_LARGE +FD: net/minecraft/world/level/levelgen/NoiseRouterData/f_224421_ net/minecraft/world/level/levelgen/NoiseRouterData/OFFSET_AMPLIFIED +FD: net/minecraft/world/level/levelgen/NoiseRouterData/f_224422_ net/minecraft/world/level/levelgen/NoiseRouterData/FACTOR_AMPLIFIED +FD: net/minecraft/world/level/levelgen/NoiseRouterData/f_224423_ net/minecraft/world/level/levelgen/NoiseRouterData/JAGGEDNESS_AMPLIFIED +FD: net/minecraft/world/level/levelgen/NoiseRouterData/f_224424_ net/minecraft/world/level/levelgen/NoiseRouterData/DEPTH_AMPLIFIED +FD: net/minecraft/world/level/levelgen/NoiseRouterData/f_224425_ net/minecraft/world/level/levelgen/NoiseRouterData/SLOPED_CHEESE_AMPLIFIED +FD: net/minecraft/world/level/levelgen/NoiseRouterData/f_224426_ net/minecraft/world/level/levelgen/NoiseRouterData/GLOBAL_OFFSET +FD: net/minecraft/world/level/levelgen/NoiseRouterData/f_224427_ net/minecraft/world/level/levelgen/NoiseRouterData/ISLAND_CHUNK_DISTANCE +FD: net/minecraft/world/level/levelgen/NoiseRouterData/f_224428_ net/minecraft/world/level/levelgen/NoiseRouterData/ISLAND_CHUNK_DISTANCE_SQR +FD: net/minecraft/world/level/levelgen/NoiseRouterData/f_224429_ net/minecraft/world/level/levelgen/NoiseRouterData/RIDGES_FOLDED +FD: net/minecraft/world/level/levelgen/NoiseRouterData/f_224430_ net/minecraft/world/level/levelgen/NoiseRouterData/OFFSET +FD: net/minecraft/world/level/levelgen/NoiseRouterData/f_224431_ net/minecraft/world/level/levelgen/NoiseRouterData/JAGGEDNESS +FD: net/minecraft/world/level/levelgen/NoiseRouterData/f_224432_ net/minecraft/world/level/levelgen/NoiseRouterData/CHEESE_NOISE_TARGET +FD: net/minecraft/world/level/levelgen/NoiseRouterData/f_224433_ net/minecraft/world/level/levelgen/NoiseRouterData/BASE_3D_NOISE_OVERWORLD +FD: net/minecraft/world/level/levelgen/NoiseRouterData/f_224434_ net/minecraft/world/level/levelgen/NoiseRouterData/BASE_3D_NOISE_NETHER +FD: net/minecraft/world/level/levelgen/NoiseSettings/f_158688_ net/minecraft/world/level/levelgen/NoiseSettings/minY +FD: net/minecraft/world/level/levelgen/NoiseSettings/f_209630_ net/minecraft/world/level/levelgen/NoiseSettings/NETHER_NOISE_SETTINGS +FD: net/minecraft/world/level/levelgen/NoiseSettings/f_209631_ net/minecraft/world/level/levelgen/NoiseSettings/END_NOISE_SETTINGS +FD: net/minecraft/world/level/levelgen/NoiseSettings/f_209632_ net/minecraft/world/level/levelgen/NoiseSettings/CAVES_NOISE_SETTINGS +FD: net/minecraft/world/level/levelgen/NoiseSettings/f_209633_ net/minecraft/world/level/levelgen/NoiseSettings/FLOATING_ISLANDS_NOISE_SETTINGS +FD: net/minecraft/world/level/levelgen/NoiseSettings/f_224519_ net/minecraft/world/level/levelgen/NoiseSettings/OVERWORLD_NOISE_SETTINGS +FD: net/minecraft/world/level/levelgen/NoiseSettings/f_64507_ net/minecraft/world/level/levelgen/NoiseSettings/CODEC +FD: net/minecraft/world/level/levelgen/NoiseSettings/f_64508_ net/minecraft/world/level/levelgen/NoiseSettings/height +FD: net/minecraft/world/level/levelgen/NoiseSettings/f_64512_ net/minecraft/world/level/levelgen/NoiseSettings/noiseSizeHorizontal +FD: net/minecraft/world/level/levelgen/NoiseSettings/f_64513_ net/minecraft/world/level/levelgen/NoiseSettings/noiseSizeVertical +FD: net/minecraft/world/level/levelgen/Noises/f_189243_ net/minecraft/world/level/levelgen/Noises/SPAGHETTI_ROUGHNESS_MODULATOR +FD: net/minecraft/world/level/levelgen/Noises/f_189244_ net/minecraft/world/level/levelgen/Noises/CAVE_ENTRANCE +FD: net/minecraft/world/level/levelgen/Noises/f_189245_ net/minecraft/world/level/levelgen/Noises/CAVE_LAYER +FD: net/minecraft/world/level/levelgen/Noises/f_189246_ net/minecraft/world/level/levelgen/Noises/CAVE_CHEESE +FD: net/minecraft/world/level/levelgen/Noises/f_189247_ net/minecraft/world/level/levelgen/Noises/ORE_VEININESS +FD: net/minecraft/world/level/levelgen/Noises/f_189248_ net/minecraft/world/level/levelgen/Noises/ORE_VEIN_A +FD: net/minecraft/world/level/levelgen/Noises/f_189249_ net/minecraft/world/level/levelgen/Noises/ORE_VEIN_B +FD: net/minecraft/world/level/levelgen/Noises/f_189250_ net/minecraft/world/level/levelgen/Noises/ORE_GAP +FD: net/minecraft/world/level/levelgen/Noises/f_189251_ net/minecraft/world/level/levelgen/Noises/NOODLE +FD: net/minecraft/world/level/levelgen/Noises/f_189252_ net/minecraft/world/level/levelgen/Noises/NOODLE_THICKNESS +FD: net/minecraft/world/level/levelgen/Noises/f_189253_ net/minecraft/world/level/levelgen/Noises/NOODLE_RIDGE_A +FD: net/minecraft/world/level/levelgen/Noises/f_189254_ net/minecraft/world/level/levelgen/Noises/NOODLE_RIDGE_B +FD: net/minecraft/world/level/levelgen/Noises/f_189255_ net/minecraft/world/level/levelgen/Noises/JAGGED +FD: net/minecraft/world/level/levelgen/Noises/f_189256_ net/minecraft/world/level/levelgen/Noises/SURFACE +FD: net/minecraft/world/level/levelgen/Noises/f_189257_ net/minecraft/world/level/levelgen/Noises/SURFACE_SECONDARY +FD: net/minecraft/world/level/levelgen/Noises/f_189258_ net/minecraft/world/level/levelgen/Noises/CLAY_BANDS_OFFSET +FD: net/minecraft/world/level/levelgen/Noises/f_189259_ net/minecraft/world/level/levelgen/Noises/BADLANDS_PILLAR +FD: net/minecraft/world/level/levelgen/Noises/f_189260_ net/minecraft/world/level/levelgen/Noises/BADLANDS_PILLAR_ROOF +FD: net/minecraft/world/level/levelgen/Noises/f_189261_ net/minecraft/world/level/levelgen/Noises/BADLANDS_SURFACE +FD: net/minecraft/world/level/levelgen/Noises/f_189262_ net/minecraft/world/level/levelgen/Noises/ICEBERG_PILLAR +FD: net/minecraft/world/level/levelgen/Noises/f_189263_ net/minecraft/world/level/levelgen/Noises/ICEBERG_PILLAR_ROOF +FD: net/minecraft/world/level/levelgen/Noises/f_189264_ net/minecraft/world/level/levelgen/Noises/ICEBERG_SURFACE +FD: net/minecraft/world/level/levelgen/Noises/f_189265_ net/minecraft/world/level/levelgen/Noises/SWAMP +FD: net/minecraft/world/level/levelgen/Noises/f_189266_ net/minecraft/world/level/levelgen/Noises/CALCITE +FD: net/minecraft/world/level/levelgen/Noises/f_189267_ net/minecraft/world/level/levelgen/Noises/GRAVEL +FD: net/minecraft/world/level/levelgen/Noises/f_189268_ net/minecraft/world/level/levelgen/Noises/POWDER_SNOW +FD: net/minecraft/world/level/levelgen/Noises/f_189269_ net/minecraft/world/level/levelgen/Noises/TEMPERATURE +FD: net/minecraft/world/level/levelgen/Noises/f_189270_ net/minecraft/world/level/levelgen/Noises/PACKED_ICE +FD: net/minecraft/world/level/levelgen/Noises/f_189271_ net/minecraft/world/level/levelgen/Noises/ICE +FD: net/minecraft/world/level/levelgen/Noises/f_189272_ net/minecraft/world/level/levelgen/Noises/SOUL_SAND_LAYER +FD: net/minecraft/world/level/levelgen/Noises/f_189273_ net/minecraft/world/level/levelgen/Noises/GRAVEL_LAYER +FD: net/minecraft/world/level/levelgen/Noises/f_189274_ net/minecraft/world/level/levelgen/Noises/PATCH +FD: net/minecraft/world/level/levelgen/Noises/f_189275_ net/minecraft/world/level/levelgen/Noises/NETHERRACK +FD: net/minecraft/world/level/levelgen/Noises/f_189276_ net/minecraft/world/level/levelgen/Noises/NETHER_WART +FD: net/minecraft/world/level/levelgen/Noises/f_189277_ net/minecraft/world/level/levelgen/Noises/NETHER_STATE_SELECTOR +FD: net/minecraft/world/level/levelgen/Noises/f_189278_ net/minecraft/world/level/levelgen/Noises/VEGETATION +FD: net/minecraft/world/level/levelgen/Noises/f_189279_ net/minecraft/world/level/levelgen/Noises/CONTINENTALNESS +FD: net/minecraft/world/level/levelgen/Noises/f_189280_ net/minecraft/world/level/levelgen/Noises/EROSION +FD: net/minecraft/world/level/levelgen/Noises/f_189281_ net/minecraft/world/level/levelgen/Noises/TEMPERATURE_LARGE +FD: net/minecraft/world/level/levelgen/Noises/f_189282_ net/minecraft/world/level/levelgen/Noises/VEGETATION_LARGE +FD: net/minecraft/world/level/levelgen/Noises/f_189283_ net/minecraft/world/level/levelgen/Noises/CONTINENTALNESS_LARGE +FD: net/minecraft/world/level/levelgen/Noises/f_189284_ net/minecraft/world/level/levelgen/Noises/EROSION_LARGE +FD: net/minecraft/world/level/levelgen/Noises/f_189285_ net/minecraft/world/level/levelgen/Noises/RIDGE +FD: net/minecraft/world/level/levelgen/Noises/f_189286_ net/minecraft/world/level/levelgen/Noises/SHIFT +FD: net/minecraft/world/level/levelgen/Noises/f_189287_ net/minecraft/world/level/levelgen/Noises/AQUIFER_BARRIER +FD: net/minecraft/world/level/levelgen/Noises/f_189288_ net/minecraft/world/level/levelgen/Noises/AQUIFER_FLUID_LEVEL_FLOODEDNESS +FD: net/minecraft/world/level/levelgen/Noises/f_189289_ net/minecraft/world/level/levelgen/Noises/AQUIFER_LAVA +FD: net/minecraft/world/level/levelgen/Noises/f_189290_ net/minecraft/world/level/levelgen/Noises/AQUIFER_FLUID_LEVEL_SPREAD +FD: net/minecraft/world/level/levelgen/Noises/f_189291_ net/minecraft/world/level/levelgen/Noises/PILLAR +FD: net/minecraft/world/level/levelgen/Noises/f_189292_ net/minecraft/world/level/levelgen/Noises/PILLAR_RARENESS +FD: net/minecraft/world/level/levelgen/Noises/f_189293_ net/minecraft/world/level/levelgen/Noises/PILLAR_THICKNESS +FD: net/minecraft/world/level/levelgen/Noises/f_189294_ net/minecraft/world/level/levelgen/Noises/SPAGHETTI_2D +FD: net/minecraft/world/level/levelgen/Noises/f_189295_ net/minecraft/world/level/levelgen/Noises/SPAGHETTI_2D_ELEVATION +FD: net/minecraft/world/level/levelgen/Noises/f_189296_ net/minecraft/world/level/levelgen/Noises/SPAGHETTI_2D_MODULATOR +FD: net/minecraft/world/level/levelgen/Noises/f_189297_ net/minecraft/world/level/levelgen/Noises/SPAGHETTI_2D_THICKNESS +FD: net/minecraft/world/level/levelgen/Noises/f_189298_ net/minecraft/world/level/levelgen/Noises/SPAGHETTI_3D_1 +FD: net/minecraft/world/level/levelgen/Noises/f_189299_ net/minecraft/world/level/levelgen/Noises/SPAGHETTI_3D_2 +FD: net/minecraft/world/level/levelgen/Noises/f_189300_ net/minecraft/world/level/levelgen/Noises/SPAGHETTI_3D_RARITY +FD: net/minecraft/world/level/levelgen/Noises/f_189301_ net/minecraft/world/level/levelgen/Noises/SPAGHETTI_3D_THICKNESS +FD: net/minecraft/world/level/levelgen/Noises/f_189302_ net/minecraft/world/level/levelgen/Noises/SPAGHETTI_ROUGHNESS +FD: net/minecraft/world/level/levelgen/OreVeinifier/f_209650_ net/minecraft/world/level/levelgen/OreVeinifier/VEININESS_THRESHOLD +FD: net/minecraft/world/level/levelgen/OreVeinifier/f_209651_ net/minecraft/world/level/levelgen/OreVeinifier/EDGE_ROUNDOFF_BEGIN +FD: net/minecraft/world/level/levelgen/OreVeinifier/f_209652_ net/minecraft/world/level/levelgen/OreVeinifier/MAX_EDGE_ROUNDOFF +FD: net/minecraft/world/level/levelgen/OreVeinifier/f_209653_ net/minecraft/world/level/levelgen/OreVeinifier/VEIN_SOLIDNESS +FD: net/minecraft/world/level/levelgen/OreVeinifier/f_209654_ net/minecraft/world/level/levelgen/OreVeinifier/MIN_RICHNESS +FD: net/minecraft/world/level/levelgen/OreVeinifier/f_209655_ net/minecraft/world/level/levelgen/OreVeinifier/MAX_RICHNESS +FD: net/minecraft/world/level/levelgen/OreVeinifier/f_209656_ net/minecraft/world/level/levelgen/OreVeinifier/MAX_RICHNESS_THRESHOLD +FD: net/minecraft/world/level/levelgen/OreVeinifier/f_209657_ net/minecraft/world/level/levelgen/OreVeinifier/CHANCE_OF_RAW_ORE_BLOCK +FD: net/minecraft/world/level/levelgen/OreVeinifier/f_209658_ net/minecraft/world/level/levelgen/OreVeinifier/SKIP_ORE_IF_GAP_NOISE_IS_BELOW +FD: net/minecraft/world/level/levelgen/OreVeinifier$VeinType/$VALUES net/minecraft/world/level/levelgen/OreVeinifier$VeinType/$VALUES +FD: net/minecraft/world/level/levelgen/OreVeinifier$VeinType/COPPER net/minecraft/world/level/levelgen/OreVeinifier$VeinType/COPPER +FD: net/minecraft/world/level/levelgen/OreVeinifier$VeinType/IRON net/minecraft/world/level/levelgen/OreVeinifier$VeinType/IRON +FD: net/minecraft/world/level/levelgen/OreVeinifier$VeinType/f_209674_ net/minecraft/world/level/levelgen/OreVeinifier$VeinType/minY +FD: net/minecraft/world/level/levelgen/OreVeinifier$VeinType/f_209675_ net/minecraft/world/level/levelgen/OreVeinifier$VeinType/maxY +FD: net/minecraft/world/level/levelgen/OreVeinifier$VeinType/f_209676_ net/minecraft/world/level/levelgen/OreVeinifier$VeinType/ore +FD: net/minecraft/world/level/levelgen/OreVeinifier$VeinType/f_209677_ net/minecraft/world/level/levelgen/OreVeinifier$VeinType/rawOreBlock +FD: net/minecraft/world/level/levelgen/OreVeinifier$VeinType/f_209678_ net/minecraft/world/level/levelgen/OreVeinifier$VeinType/filler +FD: net/minecraft/world/level/levelgen/PatrolSpawner/f_64562_ net/minecraft/world/level/levelgen/PatrolSpawner/nextTick +FD: net/minecraft/world/level/levelgen/PhantomSpawner/f_64573_ net/minecraft/world/level/levelgen/PhantomSpawner/nextTick +FD: net/minecraft/world/level/levelgen/RandomState/f_224545_ net/minecraft/world/level/levelgen/RandomState/random +FD: net/minecraft/world/level/levelgen/RandomState/f_224547_ net/minecraft/world/level/levelgen/RandomState/noises +FD: net/minecraft/world/level/levelgen/RandomState/f_224548_ net/minecraft/world/level/levelgen/RandomState/router +FD: net/minecraft/world/level/levelgen/RandomState/f_224549_ net/minecraft/world/level/levelgen/RandomState/sampler +FD: net/minecraft/world/level/levelgen/RandomState/f_224550_ net/minecraft/world/level/levelgen/RandomState/surfaceSystem +FD: net/minecraft/world/level/levelgen/RandomState/f_224551_ net/minecraft/world/level/levelgen/RandomState/aquiferRandom +FD: net/minecraft/world/level/levelgen/RandomState/f_224552_ net/minecraft/world/level/levelgen/RandomState/oreRandom +FD: net/minecraft/world/level/levelgen/RandomState/f_224553_ net/minecraft/world/level/levelgen/RandomState/noiseIntances +FD: net/minecraft/world/level/levelgen/RandomState/f_224554_ net/minecraft/world/level/levelgen/RandomState/positionalRandoms +FD: net/minecraft/world/level/levelgen/RandomState$1/f_244167_ net/minecraft/world/level/levelgen/RandomState$1/this$0 +FD: net/minecraft/world/level/levelgen/RandomState$1/f_244328_ net/minecraft/world/level/levelgen/RandomState$1/wrapped +FD: net/minecraft/world/level/levelgen/RandomState$1NoiseWiringHelper/f_224583_ net/minecraft/world/level/levelgen/RandomState$1NoiseWiringHelper/val$seed +FD: net/minecraft/world/level/levelgen/RandomState$1NoiseWiringHelper/f_224584_ net/minecraft/world/level/levelgen/RandomState$1NoiseWiringHelper/val$useLegacyInit +FD: net/minecraft/world/level/levelgen/RandomState$1NoiseWiringHelper/f_224585_ net/minecraft/world/level/levelgen/RandomState$1NoiseWiringHelper/this$0 +FD: net/minecraft/world/level/levelgen/RandomState$1NoiseWiringHelper/f_224586_ net/minecraft/world/level/levelgen/RandomState$1NoiseWiringHelper/wrapped +FD: net/minecraft/world/level/levelgen/RandomSupport/f_189323_ net/minecraft/world/level/levelgen/RandomSupport/GOLDEN_RATIO_64 +FD: net/minecraft/world/level/levelgen/RandomSupport/f_189324_ net/minecraft/world/level/levelgen/RandomSupport/SILVER_RATIO_64 +FD: net/minecraft/world/level/levelgen/RandomSupport/f_189325_ net/minecraft/world/level/levelgen/RandomSupport/SEED_UNIQUIFIER +FD: net/minecraft/world/level/levelgen/RandomSupport/f_287788_ net/minecraft/world/level/levelgen/RandomSupport/MD5_128 +FD: net/minecraft/world/level/levelgen/RandomSupport$Seed128bit/f_189335_ net/minecraft/world/level/levelgen/RandomSupport$Seed128bit/seedLo +FD: net/minecraft/world/level/levelgen/RandomSupport$Seed128bit/f_189336_ net/minecraft/world/level/levelgen/RandomSupport$Seed128bit/seedHi +FD: net/minecraft/world/level/levelgen/SingleThreadedRandomSource/f_189346_ net/minecraft/world/level/levelgen/SingleThreadedRandomSource/MODULUS_BITS +FD: net/minecraft/world/level/levelgen/SingleThreadedRandomSource/f_189347_ net/minecraft/world/level/levelgen/SingleThreadedRandomSource/MODULUS_MASK +FD: net/minecraft/world/level/levelgen/SingleThreadedRandomSource/f_189348_ net/minecraft/world/level/levelgen/SingleThreadedRandomSource/MULTIPLIER +FD: net/minecraft/world/level/levelgen/SingleThreadedRandomSource/f_189349_ net/minecraft/world/level/levelgen/SingleThreadedRandomSource/INCREMENT +FD: net/minecraft/world/level/levelgen/SingleThreadedRandomSource/f_189350_ net/minecraft/world/level/levelgen/SingleThreadedRandomSource/seed +FD: net/minecraft/world/level/levelgen/SingleThreadedRandomSource/f_189351_ net/minecraft/world/level/levelgen/SingleThreadedRandomSource/gaussianSource +FD: net/minecraft/world/level/levelgen/SurfaceRules/f_189375_ net/minecraft/world/level/levelgen/SurfaceRules/ON_FLOOR +FD: net/minecraft/world/level/levelgen/SurfaceRules/f_189376_ net/minecraft/world/level/levelgen/SurfaceRules/UNDER_FLOOR +FD: net/minecraft/world/level/levelgen/SurfaceRules/f_189377_ net/minecraft/world/level/levelgen/SurfaceRules/ON_CEILING +FD: net/minecraft/world/level/levelgen/SurfaceRules/f_189378_ net/minecraft/world/level/levelgen/SurfaceRules/UNDER_CEILING +FD: net/minecraft/world/level/levelgen/SurfaceRules/f_202169_ net/minecraft/world/level/levelgen/SurfaceRules/DEEP_UNDER_FLOOR +FD: net/minecraft/world/level/levelgen/SurfaceRules/f_202170_ net/minecraft/world/level/levelgen/SurfaceRules/VERY_DEEP_UNDER_FLOOR +FD: net/minecraft/world/level/levelgen/SurfaceRules$AbovePreliminarySurface/$VALUES net/minecraft/world/level/levelgen/SurfaceRules$AbovePreliminarySurface/$VALUES +FD: net/minecraft/world/level/levelgen/SurfaceRules$AbovePreliminarySurface/INSTANCE net/minecraft/world/level/levelgen/SurfaceRules$AbovePreliminarySurface/INSTANCE +FD: net/minecraft/world/level/levelgen/SurfaceRules$AbovePreliminarySurface/f_189429_ net/minecraft/world/level/levelgen/SurfaceRules$AbovePreliminarySurface/CODEC +FD: net/minecraft/world/level/levelgen/SurfaceRules$Bandlands/$VALUES net/minecraft/world/level/levelgen/SurfaceRules$Bandlands/$VALUES +FD: net/minecraft/world/level/levelgen/SurfaceRules$Bandlands/INSTANCE net/minecraft/world/level/levelgen/SurfaceRules$Bandlands/INSTANCE +FD: net/minecraft/world/level/levelgen/SurfaceRules$Bandlands/f_189474_ net/minecraft/world/level/levelgen/SurfaceRules$Bandlands/CODEC +FD: net/minecraft/world/level/levelgen/SurfaceRules$BiomeConditionSource/f_189489_ net/minecraft/world/level/levelgen/SurfaceRules$BiomeConditionSource/biomes +FD: net/minecraft/world/level/levelgen/SurfaceRules$BiomeConditionSource/f_189490_ net/minecraft/world/level/levelgen/SurfaceRules$BiomeConditionSource/CODEC +FD: net/minecraft/world/level/levelgen/SurfaceRules$BiomeConditionSource/f_204618_ net/minecraft/world/level/levelgen/SurfaceRules$BiomeConditionSource/biomeNameTest +FD: net/minecraft/world/level/levelgen/SurfaceRules$BiomeConditionSource$1BiomeCondition/f_189504_ net/minecraft/world/level/levelgen/SurfaceRules$BiomeConditionSource$1BiomeCondition/val$ruleContext +FD: net/minecraft/world/level/levelgen/SurfaceRules$BiomeConditionSource$1BiomeCondition/f_189506_ net/minecraft/world/level/levelgen/SurfaceRules$BiomeConditionSource$1BiomeCondition/this$0 +FD: net/minecraft/world/level/levelgen/SurfaceRules$BlockRuleSource/f_189512_ net/minecraft/world/level/levelgen/SurfaceRules$BlockRuleSource/resultState +FD: net/minecraft/world/level/levelgen/SurfaceRules$BlockRuleSource/f_189513_ net/minecraft/world/level/levelgen/SurfaceRules$BlockRuleSource/rule +FD: net/minecraft/world/level/levelgen/SurfaceRules$BlockRuleSource/f_189514_ net/minecraft/world/level/levelgen/SurfaceRules$BlockRuleSource/CODEC +FD: net/minecraft/world/level/levelgen/SurfaceRules$ConditionSource/f_189532_ net/minecraft/world/level/levelgen/SurfaceRules$ConditionSource/CODEC +FD: net/minecraft/world/level/levelgen/SurfaceRules$Context/f_189535_ net/minecraft/world/level/levelgen/SurfaceRules$Context/system +FD: net/minecraft/world/level/levelgen/SurfaceRules$Context/f_189536_ net/minecraft/world/level/levelgen/SurfaceRules$Context/temperature +FD: net/minecraft/world/level/levelgen/SurfaceRules$Context/f_189537_ net/minecraft/world/level/levelgen/SurfaceRules$Context/steep +FD: net/minecraft/world/level/levelgen/SurfaceRules$Context/f_189538_ net/minecraft/world/level/levelgen/SurfaceRules$Context/hole +FD: net/minecraft/world/level/levelgen/SurfaceRules$Context/f_189539_ net/minecraft/world/level/levelgen/SurfaceRules$Context/abovePreliminarySurface +FD: net/minecraft/world/level/levelgen/SurfaceRules$Context/f_189540_ net/minecraft/world/level/levelgen/SurfaceRules$Context/chunk +FD: net/minecraft/world/level/levelgen/SurfaceRules$Context/f_189541_ net/minecraft/world/level/levelgen/SurfaceRules$Context/noiseChunk +FD: net/minecraft/world/level/levelgen/SurfaceRules$Context/f_189542_ net/minecraft/world/level/levelgen/SurfaceRules$Context/biomeGetter +FD: net/minecraft/world/level/levelgen/SurfaceRules$Context/f_189544_ net/minecraft/world/level/levelgen/SurfaceRules$Context/context +FD: net/minecraft/world/level/levelgen/SurfaceRules$Context/f_189545_ net/minecraft/world/level/levelgen/SurfaceRules$Context/lastUpdateXZ +FD: net/minecraft/world/level/levelgen/SurfaceRules$Context/f_189546_ net/minecraft/world/level/levelgen/SurfaceRules$Context/blockX +FD: net/minecraft/world/level/levelgen/SurfaceRules$Context/f_189547_ net/minecraft/world/level/levelgen/SurfaceRules$Context/blockZ +FD: net/minecraft/world/level/levelgen/SurfaceRules$Context/f_189548_ net/minecraft/world/level/levelgen/SurfaceRules$Context/surfaceDepth +FD: net/minecraft/world/level/levelgen/SurfaceRules$Context/f_189549_ net/minecraft/world/level/levelgen/SurfaceRules$Context/lastSurfaceDepth2Update +FD: net/minecraft/world/level/levelgen/SurfaceRules$Context/f_189551_ net/minecraft/world/level/levelgen/SurfaceRules$Context/lastMinSurfaceLevelUpdate +FD: net/minecraft/world/level/levelgen/SurfaceRules$Context/f_189552_ net/minecraft/world/level/levelgen/SurfaceRules$Context/minSurfaceLevel +FD: net/minecraft/world/level/levelgen/SurfaceRules$Context/f_189553_ net/minecraft/world/level/levelgen/SurfaceRules$Context/lastUpdateY +FD: net/minecraft/world/level/levelgen/SurfaceRules$Context/f_189554_ net/minecraft/world/level/levelgen/SurfaceRules$Context/pos +FD: net/minecraft/world/level/levelgen/SurfaceRules$Context/f_189555_ net/minecraft/world/level/levelgen/SurfaceRules$Context/biome +FD: net/minecraft/world/level/levelgen/SurfaceRules$Context/f_189557_ net/minecraft/world/level/levelgen/SurfaceRules$Context/blockY +FD: net/minecraft/world/level/levelgen/SurfaceRules$Context/f_189558_ net/minecraft/world/level/levelgen/SurfaceRules$Context/waterHeight +FD: net/minecraft/world/level/levelgen/SurfaceRules$Context/f_189559_ net/minecraft/world/level/levelgen/SurfaceRules$Context/stoneDepthBelow +FD: net/minecraft/world/level/levelgen/SurfaceRules$Context/f_189560_ net/minecraft/world/level/levelgen/SurfaceRules$Context/stoneDepthAbove +FD: net/minecraft/world/level/levelgen/SurfaceRules$Context/f_198274_ net/minecraft/world/level/levelgen/SurfaceRules$Context/HOW_FAR_BELOW_PRELIMINARY_SURFACE_LEVEL_TO_BUILD_SURFACE +FD: net/minecraft/world/level/levelgen/SurfaceRules$Context/f_198275_ net/minecraft/world/level/levelgen/SurfaceRules$Context/SURFACE_CELL_BITS +FD: net/minecraft/world/level/levelgen/SurfaceRules$Context/f_198276_ net/minecraft/world/level/levelgen/SurfaceRules$Context/SURFACE_CELL_SIZE +FD: net/minecraft/world/level/levelgen/SurfaceRules$Context/f_198277_ net/minecraft/world/level/levelgen/SurfaceRules$Context/SURFACE_CELL_MASK +FD: net/minecraft/world/level/levelgen/SurfaceRules$Context/f_198278_ net/minecraft/world/level/levelgen/SurfaceRules$Context/lastPreliminarySurfaceCellOrigin +FD: net/minecraft/world/level/levelgen/SurfaceRules$Context/f_198279_ net/minecraft/world/level/levelgen/SurfaceRules$Context/preliminarySurfaceCache +FD: net/minecraft/world/level/levelgen/SurfaceRules$Context/f_202180_ net/minecraft/world/level/levelgen/SurfaceRules$Context/surfaceSecondary +FD: net/minecraft/world/level/levelgen/SurfaceRules$Context/f_224614_ net/minecraft/world/level/levelgen/SurfaceRules$Context/randomState +FD: net/minecraft/world/level/levelgen/SurfaceRules$Context$AbovePreliminarySurfaceCondition/f_189586_ net/minecraft/world/level/levelgen/SurfaceRules$Context$AbovePreliminarySurfaceCondition/this$0 +FD: net/minecraft/world/level/levelgen/SurfaceRules$Hole/$VALUES net/minecraft/world/level/levelgen/SurfaceRules$Hole/$VALUES +FD: net/minecraft/world/level/levelgen/SurfaceRules$Hole/INSTANCE net/minecraft/world/level/levelgen/SurfaceRules$Hole/INSTANCE +FD: net/minecraft/world/level/levelgen/SurfaceRules$Hole/f_189600_ net/minecraft/world/level/levelgen/SurfaceRules$Hole/CODEC +FD: net/minecraft/world/level/levelgen/SurfaceRules$LazyCondition/f_189615_ net/minecraft/world/level/levelgen/SurfaceRules$LazyCondition/lastUpdate +FD: net/minecraft/world/level/levelgen/SurfaceRules$LazyCondition/f_189616_ net/minecraft/world/level/levelgen/SurfaceRules$LazyCondition/context +FD: net/minecraft/world/level/levelgen/SurfaceRules$LazyCondition/f_189617_ net/minecraft/world/level/levelgen/SurfaceRules$LazyCondition/result +FD: net/minecraft/world/level/levelgen/SurfaceRules$NoiseThresholdConditionSource/f_189627_ net/minecraft/world/level/levelgen/SurfaceRules$NoiseThresholdConditionSource/noise +FD: net/minecraft/world/level/levelgen/SurfaceRules$NoiseThresholdConditionSource/f_189628_ net/minecraft/world/level/levelgen/SurfaceRules$NoiseThresholdConditionSource/minThreshold +FD: net/minecraft/world/level/levelgen/SurfaceRules$NoiseThresholdConditionSource/f_189629_ net/minecraft/world/level/levelgen/SurfaceRules$NoiseThresholdConditionSource/maxThreshold +FD: net/minecraft/world/level/levelgen/SurfaceRules$NoiseThresholdConditionSource/f_189630_ net/minecraft/world/level/levelgen/SurfaceRules$NoiseThresholdConditionSource/CODEC +FD: net/minecraft/world/level/levelgen/SurfaceRules$NoiseThresholdConditionSource$1NoiseThresholdCondition/f_189650_ net/minecraft/world/level/levelgen/SurfaceRules$NoiseThresholdConditionSource$1NoiseThresholdCondition/val$ruleContext +FD: net/minecraft/world/level/levelgen/SurfaceRules$NoiseThresholdConditionSource$1NoiseThresholdCondition/f_189651_ net/minecraft/world/level/levelgen/SurfaceRules$NoiseThresholdConditionSource$1NoiseThresholdCondition/val$noise +FD: net/minecraft/world/level/levelgen/SurfaceRules$NoiseThresholdConditionSource$1NoiseThresholdCondition/f_189652_ net/minecraft/world/level/levelgen/SurfaceRules$NoiseThresholdConditionSource$1NoiseThresholdCondition/this$0 +FD: net/minecraft/world/level/levelgen/SurfaceRules$NotCondition/f_189658_ net/minecraft/world/level/levelgen/SurfaceRules$NotCondition/target +FD: net/minecraft/world/level/levelgen/SurfaceRules$NotConditionSource/f_189667_ net/minecraft/world/level/levelgen/SurfaceRules$NotConditionSource/target +FD: net/minecraft/world/level/levelgen/SurfaceRules$NotConditionSource/f_189668_ net/minecraft/world/level/levelgen/SurfaceRules$NotConditionSource/CODEC +FD: net/minecraft/world/level/levelgen/SurfaceRules$RuleSource/f_189682_ net/minecraft/world/level/levelgen/SurfaceRules$RuleSource/CODEC +FD: net/minecraft/world/level/levelgen/SurfaceRules$SequenceRule/f_189685_ net/minecraft/world/level/levelgen/SurfaceRules$SequenceRule/rules +FD: net/minecraft/world/level/levelgen/SurfaceRules$SequenceRuleSource/f_189697_ net/minecraft/world/level/levelgen/SurfaceRules$SequenceRuleSource/sequence +FD: net/minecraft/world/level/levelgen/SurfaceRules$SequenceRuleSource/f_189698_ net/minecraft/world/level/levelgen/SurfaceRules$SequenceRuleSource/CODEC +FD: net/minecraft/world/level/levelgen/SurfaceRules$StateRule/f_189712_ net/minecraft/world/level/levelgen/SurfaceRules$StateRule/state +FD: net/minecraft/world/level/levelgen/SurfaceRules$Steep/$VALUES net/minecraft/world/level/levelgen/SurfaceRules$Steep/$VALUES +FD: net/minecraft/world/level/levelgen/SurfaceRules$Steep/INSTANCE net/minecraft/world/level/levelgen/SurfaceRules$Steep/INSTANCE +FD: net/minecraft/world/level/levelgen/SurfaceRules$Steep/f_189725_ net/minecraft/world/level/levelgen/SurfaceRules$Steep/CODEC +FD: net/minecraft/world/level/levelgen/SurfaceRules$StoneDepthCheck/f_189740_ net/minecraft/world/level/levelgen/SurfaceRules$StoneDepthCheck/offset +FD: net/minecraft/world/level/levelgen/SurfaceRules$StoneDepthCheck/f_189741_ net/minecraft/world/level/levelgen/SurfaceRules$StoneDepthCheck/addSurfaceDepth +FD: net/minecraft/world/level/levelgen/SurfaceRules$StoneDepthCheck/f_189743_ net/minecraft/world/level/levelgen/SurfaceRules$StoneDepthCheck/surfaceType +FD: net/minecraft/world/level/levelgen/SurfaceRules$StoneDepthCheck/f_189744_ net/minecraft/world/level/levelgen/SurfaceRules$StoneDepthCheck/CODEC +FD: net/minecraft/world/level/levelgen/SurfaceRules$StoneDepthCheck/f_202182_ net/minecraft/world/level/levelgen/SurfaceRules$StoneDepthCheck/secondaryDepthRange +FD: net/minecraft/world/level/levelgen/SurfaceRules$StoneDepthCheck$1StoneDepthCondition/f_189766_ net/minecraft/world/level/levelgen/SurfaceRules$StoneDepthCheck$1StoneDepthCondition/val$ruleContext +FD: net/minecraft/world/level/levelgen/SurfaceRules$StoneDepthCheck$1StoneDepthCondition/f_189767_ net/minecraft/world/level/levelgen/SurfaceRules$StoneDepthCheck$1StoneDepthCondition/val$ceiling +FD: net/minecraft/world/level/levelgen/SurfaceRules$StoneDepthCheck$1StoneDepthCondition/f_189768_ net/minecraft/world/level/levelgen/SurfaceRules$StoneDepthCheck$1StoneDepthCondition/this$0 +FD: net/minecraft/world/level/levelgen/SurfaceRules$Temperature/$VALUES net/minecraft/world/level/levelgen/SurfaceRules$Temperature/$VALUES +FD: net/minecraft/world/level/levelgen/SurfaceRules$Temperature/INSTANCE net/minecraft/world/level/levelgen/SurfaceRules$Temperature/INSTANCE +FD: net/minecraft/world/level/levelgen/SurfaceRules$Temperature/f_189778_ net/minecraft/world/level/levelgen/SurfaceRules$Temperature/CODEC +FD: net/minecraft/world/level/levelgen/SurfaceRules$TestRule/f_189793_ net/minecraft/world/level/levelgen/SurfaceRules$TestRule/condition +FD: net/minecraft/world/level/levelgen/SurfaceRules$TestRule/f_189794_ net/minecraft/world/level/levelgen/SurfaceRules$TestRule/followup +FD: net/minecraft/world/level/levelgen/SurfaceRules$TestRuleSource/f_189808_ net/minecraft/world/level/levelgen/SurfaceRules$TestRuleSource/ifTrue +FD: net/minecraft/world/level/levelgen/SurfaceRules$TestRuleSource/f_189809_ net/minecraft/world/level/levelgen/SurfaceRules$TestRuleSource/thenRun +FD: net/minecraft/world/level/levelgen/SurfaceRules$TestRuleSource/f_189810_ net/minecraft/world/level/levelgen/SurfaceRules$TestRuleSource/CODEC +FD: net/minecraft/world/level/levelgen/SurfaceRules$VerticalGradientConditionSource/f_189828_ net/minecraft/world/level/levelgen/SurfaceRules$VerticalGradientConditionSource/randomName +FD: net/minecraft/world/level/levelgen/SurfaceRules$VerticalGradientConditionSource/f_189829_ net/minecraft/world/level/levelgen/SurfaceRules$VerticalGradientConditionSource/trueAtAndBelow +FD: net/minecraft/world/level/levelgen/SurfaceRules$VerticalGradientConditionSource/f_189830_ net/minecraft/world/level/levelgen/SurfaceRules$VerticalGradientConditionSource/falseAtAndAbove +FD: net/minecraft/world/level/levelgen/SurfaceRules$VerticalGradientConditionSource/f_189831_ net/minecraft/world/level/levelgen/SurfaceRules$VerticalGradientConditionSource/CODEC +FD: net/minecraft/world/level/levelgen/SurfaceRules$VerticalGradientConditionSource$1VerticalGradientCondition/f_189851_ net/minecraft/world/level/levelgen/SurfaceRules$VerticalGradientConditionSource$1VerticalGradientCondition/val$ruleContext +FD: net/minecraft/world/level/levelgen/SurfaceRules$VerticalGradientConditionSource$1VerticalGradientCondition/f_189852_ net/minecraft/world/level/levelgen/SurfaceRules$VerticalGradientConditionSource$1VerticalGradientCondition/val$trueAtAndBelow +FD: net/minecraft/world/level/levelgen/SurfaceRules$VerticalGradientConditionSource$1VerticalGradientCondition/f_189853_ net/minecraft/world/level/levelgen/SurfaceRules$VerticalGradientConditionSource$1VerticalGradientCondition/val$falseAtAndAbove +FD: net/minecraft/world/level/levelgen/SurfaceRules$VerticalGradientConditionSource$1VerticalGradientCondition/f_189854_ net/minecraft/world/level/levelgen/SurfaceRules$VerticalGradientConditionSource$1VerticalGradientCondition/val$randomFactory +FD: net/minecraft/world/level/levelgen/SurfaceRules$VerticalGradientConditionSource$1VerticalGradientCondition/f_189855_ net/minecraft/world/level/levelgen/SurfaceRules$VerticalGradientConditionSource$1VerticalGradientCondition/this$0 +FD: net/minecraft/world/level/levelgen/SurfaceRules$WaterConditionSource/f_189863_ net/minecraft/world/level/levelgen/SurfaceRules$WaterConditionSource/offset +FD: net/minecraft/world/level/levelgen/SurfaceRules$WaterConditionSource/f_189864_ net/minecraft/world/level/levelgen/SurfaceRules$WaterConditionSource/surfaceDepthMultiplier +FD: net/minecraft/world/level/levelgen/SurfaceRules$WaterConditionSource/f_189865_ net/minecraft/world/level/levelgen/SurfaceRules$WaterConditionSource/addStoneDepth +FD: net/minecraft/world/level/levelgen/SurfaceRules$WaterConditionSource/f_189866_ net/minecraft/world/level/levelgen/SurfaceRules$WaterConditionSource/CODEC +FD: net/minecraft/world/level/levelgen/SurfaceRules$WaterConditionSource$1WaterCondition/f_189886_ net/minecraft/world/level/levelgen/SurfaceRules$WaterConditionSource$1WaterCondition/val$ruleContext +FD: net/minecraft/world/level/levelgen/SurfaceRules$WaterConditionSource$1WaterCondition/f_189887_ net/minecraft/world/level/levelgen/SurfaceRules$WaterConditionSource$1WaterCondition/this$0 +FD: net/minecraft/world/level/levelgen/SurfaceRules$YConditionSource/f_189444_ net/minecraft/world/level/levelgen/SurfaceRules$YConditionSource/anchor +FD: net/minecraft/world/level/levelgen/SurfaceRules$YConditionSource/f_189445_ net/minecraft/world/level/levelgen/SurfaceRules$YConditionSource/surfaceDepthMultiplier +FD: net/minecraft/world/level/levelgen/SurfaceRules$YConditionSource/f_189446_ net/minecraft/world/level/levelgen/SurfaceRules$YConditionSource/addStoneDepth +FD: net/minecraft/world/level/levelgen/SurfaceRules$YConditionSource/f_189447_ net/minecraft/world/level/levelgen/SurfaceRules$YConditionSource/CODEC +FD: net/minecraft/world/level/levelgen/SurfaceRules$YConditionSource$1YCondition/f_189467_ net/minecraft/world/level/levelgen/SurfaceRules$YConditionSource$1YCondition/val$ruleContext +FD: net/minecraft/world/level/levelgen/SurfaceRules$YConditionSource$1YCondition/f_189468_ net/minecraft/world/level/levelgen/SurfaceRules$YConditionSource$1YCondition/this$0 +FD: net/minecraft/world/level/levelgen/SurfaceSystem/f_189892_ net/minecraft/world/level/levelgen/SurfaceSystem/surfaceSecondaryNoise +FD: net/minecraft/world/level/levelgen/SurfaceSystem/f_189894_ net/minecraft/world/level/levelgen/SurfaceSystem/WHITE_TERRACOTTA +FD: net/minecraft/world/level/levelgen/SurfaceSystem/f_189895_ net/minecraft/world/level/levelgen/SurfaceSystem/ORANGE_TERRACOTTA +FD: net/minecraft/world/level/levelgen/SurfaceSystem/f_189896_ net/minecraft/world/level/levelgen/SurfaceSystem/TERRACOTTA +FD: net/minecraft/world/level/levelgen/SurfaceSystem/f_189897_ net/minecraft/world/level/levelgen/SurfaceSystem/YELLOW_TERRACOTTA +FD: net/minecraft/world/level/levelgen/SurfaceSystem/f_189898_ net/minecraft/world/level/levelgen/SurfaceSystem/BROWN_TERRACOTTA +FD: net/minecraft/world/level/levelgen/SurfaceSystem/f_189899_ net/minecraft/world/level/levelgen/SurfaceSystem/RED_TERRACOTTA +FD: net/minecraft/world/level/levelgen/SurfaceSystem/f_189900_ net/minecraft/world/level/levelgen/SurfaceSystem/LIGHT_GRAY_TERRACOTTA +FD: net/minecraft/world/level/levelgen/SurfaceSystem/f_189901_ net/minecraft/world/level/levelgen/SurfaceSystem/PACKED_ICE +FD: net/minecraft/world/level/levelgen/SurfaceSystem/f_189902_ net/minecraft/world/level/levelgen/SurfaceSystem/SNOW_BLOCK +FD: net/minecraft/world/level/levelgen/SurfaceSystem/f_189904_ net/minecraft/world/level/levelgen/SurfaceSystem/defaultBlock +FD: net/minecraft/world/level/levelgen/SurfaceSystem/f_189905_ net/minecraft/world/level/levelgen/SurfaceSystem/seaLevel +FD: net/minecraft/world/level/levelgen/SurfaceSystem/f_189906_ net/minecraft/world/level/levelgen/SurfaceSystem/clayBands +FD: net/minecraft/world/level/levelgen/SurfaceSystem/f_189907_ net/minecraft/world/level/levelgen/SurfaceSystem/clayBandsOffsetNoise +FD: net/minecraft/world/level/levelgen/SurfaceSystem/f_189908_ net/minecraft/world/level/levelgen/SurfaceSystem/badlandsPillarNoise +FD: net/minecraft/world/level/levelgen/SurfaceSystem/f_189909_ net/minecraft/world/level/levelgen/SurfaceSystem/badlandsPillarRoofNoise +FD: net/minecraft/world/level/levelgen/SurfaceSystem/f_189910_ net/minecraft/world/level/levelgen/SurfaceSystem/badlandsSurfaceNoise +FD: net/minecraft/world/level/levelgen/SurfaceSystem/f_189911_ net/minecraft/world/level/levelgen/SurfaceSystem/icebergPillarNoise +FD: net/minecraft/world/level/levelgen/SurfaceSystem/f_189912_ net/minecraft/world/level/levelgen/SurfaceSystem/icebergPillarRoofNoise +FD: net/minecraft/world/level/levelgen/SurfaceSystem/f_189913_ net/minecraft/world/level/levelgen/SurfaceSystem/icebergSurfaceNoise +FD: net/minecraft/world/level/levelgen/SurfaceSystem/f_189918_ net/minecraft/world/level/levelgen/SurfaceSystem/surfaceNoise +FD: net/minecraft/world/level/levelgen/SurfaceSystem/f_224635_ net/minecraft/world/level/levelgen/SurfaceSystem/noiseRandom +FD: net/minecraft/world/level/levelgen/SurfaceSystem$1/f_189996_ net/minecraft/world/level/levelgen/SurfaceSystem$1/val$protoChunk +FD: net/minecraft/world/level/levelgen/SurfaceSystem$1/f_189997_ net/minecraft/world/level/levelgen/SurfaceSystem$1/val$columnPos +FD: net/minecraft/world/level/levelgen/SurfaceSystem$1/f_189998_ net/minecraft/world/level/levelgen/SurfaceSystem$1/val$chunkPos +FD: net/minecraft/world/level/levelgen/SurfaceSystem$1/f_189999_ net/minecraft/world/level/levelgen/SurfaceSystem$1/this$0 +FD: net/minecraft/world/level/levelgen/ThreadSafeLegacyRandomSource/f_224657_ net/minecraft/world/level/levelgen/ThreadSafeLegacyRandomSource/MODULUS_BITS +FD: net/minecraft/world/level/levelgen/ThreadSafeLegacyRandomSource/f_224658_ net/minecraft/world/level/levelgen/ThreadSafeLegacyRandomSource/MODULUS_MASK +FD: net/minecraft/world/level/levelgen/ThreadSafeLegacyRandomSource/f_224659_ net/minecraft/world/level/levelgen/ThreadSafeLegacyRandomSource/MULTIPLIER +FD: net/minecraft/world/level/levelgen/ThreadSafeLegacyRandomSource/f_224660_ net/minecraft/world/level/levelgen/ThreadSafeLegacyRandomSource/INCREMENT +FD: net/minecraft/world/level/levelgen/ThreadSafeLegacyRandomSource/f_224661_ net/minecraft/world/level/levelgen/ThreadSafeLegacyRandomSource/seed +FD: net/minecraft/world/level/levelgen/ThreadSafeLegacyRandomSource/f_224662_ net/minecraft/world/level/levelgen/ThreadSafeLegacyRandomSource/gaussianSource +FD: net/minecraft/world/level/levelgen/VerticalAnchor/f_158914_ net/minecraft/world/level/levelgen/VerticalAnchor/CODEC +FD: net/minecraft/world/level/levelgen/VerticalAnchor/f_158915_ net/minecraft/world/level/levelgen/VerticalAnchor/BOTTOM +FD: net/minecraft/world/level/levelgen/VerticalAnchor/f_158916_ net/minecraft/world/level/levelgen/VerticalAnchor/TOP +FD: net/minecraft/world/level/levelgen/VerticalAnchor$AboveBottom/f_158937_ net/minecraft/world/level/levelgen/VerticalAnchor$AboveBottom/CODEC +FD: net/minecraft/world/level/levelgen/VerticalAnchor$AboveBottom/f_209699_ net/minecraft/world/level/levelgen/VerticalAnchor$AboveBottom/offset +FD: net/minecraft/world/level/levelgen/VerticalAnchor$Absolute/f_158944_ net/minecraft/world/level/levelgen/VerticalAnchor$Absolute/CODEC +FD: net/minecraft/world/level/levelgen/VerticalAnchor$Absolute/f_209704_ net/minecraft/world/level/levelgen/VerticalAnchor$Absolute/y +FD: net/minecraft/world/level/levelgen/VerticalAnchor$BelowTop/f_158951_ net/minecraft/world/level/levelgen/VerticalAnchor$BelowTop/CODEC +FD: net/minecraft/world/level/levelgen/VerticalAnchor$BelowTop/f_209709_ net/minecraft/world/level/levelgen/VerticalAnchor$BelowTop/offset +FD: net/minecraft/world/level/levelgen/WorldDimensions/f_243726_ net/minecraft/world/level/levelgen/WorldDimensions/BUILTIN_ORDER +FD: net/minecraft/world/level/levelgen/WorldDimensions/f_243810_ net/minecraft/world/level/levelgen/WorldDimensions/CODEC +FD: net/minecraft/world/level/levelgen/WorldDimensions/f_243847_ net/minecraft/world/level/levelgen/WorldDimensions/VANILLA_DIMENSION_COUNT +FD: net/minecraft/world/level/levelgen/WorldDimensions/f_243948_ net/minecraft/world/level/levelgen/WorldDimensions/dimensions +FD: net/minecraft/world/level/levelgen/WorldDimensions$1Entry/f_243758_ net/minecraft/world/level/levelgen/WorldDimensions$1Entry/value +FD: net/minecraft/world/level/levelgen/WorldDimensions$1Entry/f_244236_ net/minecraft/world/level/levelgen/WorldDimensions$1Entry/key +FD: net/minecraft/world/level/levelgen/WorldDimensions$Complete/f_244049_ net/minecraft/world/level/levelgen/WorldDimensions$Complete/dimensions +FD: net/minecraft/world/level/levelgen/WorldDimensions$Complete/f_244634_ net/minecraft/world/level/levelgen/WorldDimensions$Complete/specialWorldProperty +FD: net/minecraft/world/level/levelgen/WorldGenSettings/f_243992_ net/minecraft/world/level/levelgen/WorldGenSettings/options +FD: net/minecraft/world/level/levelgen/WorldGenSettings/f_64600_ net/minecraft/world/level/levelgen/WorldGenSettings/CODEC +FD: net/minecraft/world/level/levelgen/WorldGenSettings/f_64605_ net/minecraft/world/level/levelgen/WorldGenSettings/dimensions +FD: net/minecraft/world/level/levelgen/WorldGenerationContext/f_182504_ net/minecraft/world/level/levelgen/WorldGenerationContext/minY +FD: net/minecraft/world/level/levelgen/WorldGenerationContext/f_182505_ net/minecraft/world/level/levelgen/WorldGenerationContext/height +FD: net/minecraft/world/level/levelgen/WorldOptions/f_243816_ net/minecraft/world/level/levelgen/WorldOptions/seed +FD: net/minecraft/world/level/levelgen/WorldOptions/f_243984_ net/minecraft/world/level/levelgen/WorldOptions/legacyCustomOptions +FD: net/minecraft/world/level/levelgen/WorldOptions/f_244001_ net/minecraft/world/level/levelgen/WorldOptions/generateStructures +FD: net/minecraft/world/level/levelgen/WorldOptions/f_244225_ net/minecraft/world/level/levelgen/WorldOptions/DEMO_OPTIONS +FD: net/minecraft/world/level/levelgen/WorldOptions/f_244615_ net/minecraft/world/level/levelgen/WorldOptions/generateBonusChest +FD: net/minecraft/world/level/levelgen/WorldOptions/f_244622_ net/minecraft/world/level/levelgen/WorldOptions/CODEC +FD: net/minecraft/world/level/levelgen/WorldgenRandom/f_190054_ net/minecraft/world/level/levelgen/WorldgenRandom/randomSource +FD: net/minecraft/world/level/levelgen/WorldgenRandom/f_64676_ net/minecraft/world/level/levelgen/WorldgenRandom/count +FD: net/minecraft/world/level/levelgen/WorldgenRandom$Algorithm/$VALUES net/minecraft/world/level/levelgen/WorldgenRandom$Algorithm/$VALUES +FD: net/minecraft/world/level/levelgen/WorldgenRandom$Algorithm/LEGACY net/minecraft/world/level/levelgen/WorldgenRandom$Algorithm/LEGACY +FD: net/minecraft/world/level/levelgen/WorldgenRandom$Algorithm/XOROSHIRO net/minecraft/world/level/levelgen/WorldgenRandom$Algorithm/XOROSHIRO +FD: net/minecraft/world/level/levelgen/WorldgenRandom$Algorithm/f_190076_ net/minecraft/world/level/levelgen/WorldgenRandom$Algorithm/constructor +FD: net/minecraft/world/level/levelgen/Xoroshiro128PlusPlus/f_190089_ net/minecraft/world/level/levelgen/Xoroshiro128PlusPlus/seedLo +FD: net/minecraft/world/level/levelgen/Xoroshiro128PlusPlus/f_190090_ net/minecraft/world/level/levelgen/Xoroshiro128PlusPlus/seedHi +FD: net/minecraft/world/level/levelgen/Xoroshiro128PlusPlus/f_286992_ net/minecraft/world/level/levelgen/Xoroshiro128PlusPlus/CODEC +FD: net/minecraft/world/level/levelgen/XoroshiroRandomSource/f_190097_ net/minecraft/world/level/levelgen/XoroshiroRandomSource/FLOAT_UNIT +FD: net/minecraft/world/level/levelgen/XoroshiroRandomSource/f_190098_ net/minecraft/world/level/levelgen/XoroshiroRandomSource/DOUBLE_UNIT +FD: net/minecraft/world/level/levelgen/XoroshiroRandomSource/f_190099_ net/minecraft/world/level/levelgen/XoroshiroRandomSource/randomNumberGenerator +FD: net/minecraft/world/level/levelgen/XoroshiroRandomSource/f_190100_ net/minecraft/world/level/levelgen/XoroshiroRandomSource/gaussianSource +FD: net/minecraft/world/level/levelgen/XoroshiroRandomSource/f_286948_ net/minecraft/world/level/levelgen/XoroshiroRandomSource/CODEC +FD: net/minecraft/world/level/levelgen/XoroshiroRandomSource$XoroshiroPositionalRandomFactory/f_190123_ net/minecraft/world/level/levelgen/XoroshiroRandomSource$XoroshiroPositionalRandomFactory/seedLo +FD: net/minecraft/world/level/levelgen/XoroshiroRandomSource$XoroshiroPositionalRandomFactory/f_190124_ net/minecraft/world/level/levelgen/XoroshiroRandomSource$XoroshiroPositionalRandomFactory/seedHi +FD: net/minecraft/world/level/levelgen/blending/Blender/f_190137_ net/minecraft/world/level/levelgen/blending/Blender/EMPTY +FD: net/minecraft/world/level/levelgen/blending/Blender/f_190138_ net/minecraft/world/level/levelgen/blending/Blender/SHIFT_NOISE +FD: net/minecraft/world/level/levelgen/blending/Blender/f_190139_ net/minecraft/world/level/levelgen/blending/Blender/HEIGHT_BLENDING_RANGE_CELLS +FD: net/minecraft/world/level/levelgen/blending/Blender/f_190140_ net/minecraft/world/level/levelgen/blending/Blender/HEIGHT_BLENDING_RANGE_CHUNKS +FD: net/minecraft/world/level/levelgen/blending/Blender/f_190141_ net/minecraft/world/level/levelgen/blending/Blender/DENSITY_BLENDING_RANGE_CELLS +FD: net/minecraft/world/level/levelgen/blending/Blender/f_190142_ net/minecraft/world/level/levelgen/blending/Blender/DENSITY_BLENDING_RANGE_CHUNKS +FD: net/minecraft/world/level/levelgen/blending/Blender/f_197017_ net/minecraft/world/level/levelgen/blending/Blender/OLD_CHUNK_XZ_RADIUS +FD: net/minecraft/world/level/levelgen/blending/Blender/f_224696_ net/minecraft/world/level/levelgen/blending/Blender/heightAndBiomeBlendingData +FD: net/minecraft/world/level/levelgen/blending/Blender/f_224697_ net/minecraft/world/level/levelgen/blending/Blender/densityBlendingData +FD: net/minecraft/world/level/levelgen/blending/Blender$BlendingOutput/f_209729_ net/minecraft/world/level/levelgen/blending/Blender$BlendingOutput/alpha +FD: net/minecraft/world/level/levelgen/blending/Blender$BlendingOutput/f_209730_ net/minecraft/world/level/levelgen/blending/Blender$BlendingOutput/blendingOffset +FD: net/minecraft/world/level/levelgen/blending/BlendingData/f_190252_ net/minecraft/world/level/levelgen/blending/BlendingData/CELL_HEIGHT +FD: net/minecraft/world/level/levelgen/blending/BlendingData/f_190253_ net/minecraft/world/level/levelgen/blending/BlendingData/NO_VALUE +FD: net/minecraft/world/level/levelgen/blending/BlendingData/f_190254_ net/minecraft/world/level/levelgen/blending/BlendingData/CODEC +FD: net/minecraft/world/level/levelgen/blending/BlendingData/f_190255_ net/minecraft/world/level/levelgen/blending/BlendingData/BLENDING_DENSITY_FACTOR +FD: net/minecraft/world/level/levelgen/blending/BlendingData/f_190257_ net/minecraft/world/level/levelgen/blending/BlendingData/CELLS_PER_SECTION_Y +FD: net/minecraft/world/level/levelgen/blending/BlendingData/f_190258_ net/minecraft/world/level/levelgen/blending/BlendingData/QUARTS_PER_SECTION +FD: net/minecraft/world/level/levelgen/blending/BlendingData/f_190259_ net/minecraft/world/level/levelgen/blending/BlendingData/CELL_HORIZONTAL_MAX_INDEX_INSIDE +FD: net/minecraft/world/level/levelgen/blending/BlendingData/f_190260_ net/minecraft/world/level/levelgen/blending/BlendingData/CELL_HORIZONTAL_MAX_INDEX_OUTSIDE +FD: net/minecraft/world/level/levelgen/blending/BlendingData/f_190261_ net/minecraft/world/level/levelgen/blending/BlendingData/CELL_COLUMN_INSIDE_COUNT +FD: net/minecraft/world/level/levelgen/blending/BlendingData/f_190262_ net/minecraft/world/level/levelgen/blending/BlendingData/CELL_COLUMN_OUTSIDE_COUNT +FD: net/minecraft/world/level/levelgen/blending/BlendingData/f_190263_ net/minecraft/world/level/levelgen/blending/BlendingData/CELL_COLUMN_COUNT +FD: net/minecraft/world/level/levelgen/blending/BlendingData/f_190265_ net/minecraft/world/level/levelgen/blending/BlendingData/SURFACE_BLOCKS +FD: net/minecraft/world/level/levelgen/blending/BlendingData/f_190267_ net/minecraft/world/level/levelgen/blending/BlendingData/hasCalculatedData +FD: net/minecraft/world/level/levelgen/blending/BlendingData/f_190269_ net/minecraft/world/level/levelgen/blending/BlendingData/heights +FD: net/minecraft/world/level/levelgen/blending/BlendingData/f_190270_ net/minecraft/world/level/levelgen/blending/BlendingData/densities +FD: net/minecraft/world/level/levelgen/blending/BlendingData/f_190272_ net/minecraft/world/level/levelgen/blending/BlendingData/DOUBLE_ARRAY_CODEC +FD: net/minecraft/world/level/levelgen/blending/BlendingData/f_198290_ net/minecraft/world/level/levelgen/blending/BlendingData/CELL_WIDTH +FD: net/minecraft/world/level/levelgen/blending/BlendingData/f_198291_ net/minecraft/world/level/levelgen/blending/BlendingData/CELL_RATIO +FD: net/minecraft/world/level/levelgen/blending/BlendingData/f_202276_ net/minecraft/world/level/levelgen/blending/BlendingData/biomes +FD: net/minecraft/world/level/levelgen/blending/BlendingData/f_224736_ net/minecraft/world/level/levelgen/blending/BlendingData/SOLID_DENSITY +FD: net/minecraft/world/level/levelgen/blending/BlendingData/f_224737_ net/minecraft/world/level/levelgen/blending/BlendingData/AIR_DENSITY +FD: net/minecraft/world/level/levelgen/blending/BlendingData/f_224738_ net/minecraft/world/level/levelgen/blending/BlendingData/areaWithOldGeneration +FD: net/minecraft/world/level/levelgen/blockpredicates/AllOfPredicate/f_190370_ net/minecraft/world/level/levelgen/blockpredicates/AllOfPredicate/CODEC +FD: net/minecraft/world/level/levelgen/blockpredicates/AnyOfPredicate/f_190381_ net/minecraft/world/level/levelgen/blockpredicates/AnyOfPredicate/CODEC +FD: net/minecraft/world/level/levelgen/blockpredicates/BlockPredicate/f_190392_ net/minecraft/world/level/levelgen/blockpredicates/BlockPredicate/CODEC +FD: net/minecraft/world/level/levelgen/blockpredicates/BlockPredicate/f_190393_ net/minecraft/world/level/levelgen/blockpredicates/BlockPredicate/ONLY_IN_AIR_PREDICATE +FD: net/minecraft/world/level/levelgen/blockpredicates/BlockPredicate/f_190394_ net/minecraft/world/level/levelgen/blockpredicates/BlockPredicate/ONLY_IN_AIR_OR_WATER_PREDICATE +FD: net/minecraft/world/level/levelgen/blockpredicates/BlockPredicateType/f_190436_ net/minecraft/world/level/levelgen/blockpredicates/BlockPredicateType/MATCHING_BLOCKS +FD: net/minecraft/world/level/levelgen/blockpredicates/BlockPredicateType/f_190437_ net/minecraft/world/level/levelgen/blockpredicates/BlockPredicateType/MATCHING_FLUIDS +FD: net/minecraft/world/level/levelgen/blockpredicates/BlockPredicateType/f_190438_ net/minecraft/world/level/levelgen/blockpredicates/BlockPredicateType/SOLID +FD: net/minecraft/world/level/levelgen/blockpredicates/BlockPredicateType/f_190439_ net/minecraft/world/level/levelgen/blockpredicates/BlockPredicateType/REPLACEABLE +FD: net/minecraft/world/level/levelgen/blockpredicates/BlockPredicateType/f_190440_ net/minecraft/world/level/levelgen/blockpredicates/BlockPredicateType/WOULD_SURVIVE +FD: net/minecraft/world/level/levelgen/blockpredicates/BlockPredicateType/f_190441_ net/minecraft/world/level/levelgen/blockpredicates/BlockPredicateType/INSIDE_WORLD_BOUNDS +FD: net/minecraft/world/level/levelgen/blockpredicates/BlockPredicateType/f_190442_ net/minecraft/world/level/levelgen/blockpredicates/BlockPredicateType/ANY_OF +FD: net/minecraft/world/level/levelgen/blockpredicates/BlockPredicateType/f_190443_ net/minecraft/world/level/levelgen/blockpredicates/BlockPredicateType/ALL_OF +FD: net/minecraft/world/level/levelgen/blockpredicates/BlockPredicateType/f_190444_ net/minecraft/world/level/levelgen/blockpredicates/BlockPredicateType/NOT +FD: net/minecraft/world/level/levelgen/blockpredicates/BlockPredicateType/f_190445_ net/minecraft/world/level/levelgen/blockpredicates/BlockPredicateType/TRUE +FD: net/minecraft/world/level/levelgen/blockpredicates/BlockPredicateType/f_198313_ net/minecraft/world/level/levelgen/blockpredicates/BlockPredicateType/MATCHING_BLOCK_TAG +FD: net/minecraft/world/level/levelgen/blockpredicates/BlockPredicateType/f_198314_ net/minecraft/world/level/levelgen/blockpredicates/BlockPredicateType/HAS_STURDY_FACE +FD: net/minecraft/world/level/levelgen/blockpredicates/CombiningPredicate/f_190453_ net/minecraft/world/level/levelgen/blockpredicates/CombiningPredicate/predicates +FD: net/minecraft/world/level/levelgen/blockpredicates/HasSturdyFacePredicate/f_198315_ net/minecraft/world/level/levelgen/blockpredicates/HasSturdyFacePredicate/CODEC +FD: net/minecraft/world/level/levelgen/blockpredicates/HasSturdyFacePredicate/f_198316_ net/minecraft/world/level/levelgen/blockpredicates/HasSturdyFacePredicate/offset +FD: net/minecraft/world/level/levelgen/blockpredicates/HasSturdyFacePredicate/f_198317_ net/minecraft/world/level/levelgen/blockpredicates/HasSturdyFacePredicate/direction +FD: net/minecraft/world/level/levelgen/blockpredicates/InsideWorldBoundsPredicate/f_190463_ net/minecraft/world/level/levelgen/blockpredicates/InsideWorldBoundsPredicate/CODEC +FD: net/minecraft/world/level/levelgen/blockpredicates/InsideWorldBoundsPredicate/f_190464_ net/minecraft/world/level/levelgen/blockpredicates/InsideWorldBoundsPredicate/offset +FD: net/minecraft/world/level/levelgen/blockpredicates/MatchingBlockTagPredicate/f_198335_ net/minecraft/world/level/levelgen/blockpredicates/MatchingBlockTagPredicate/tag +FD: net/minecraft/world/level/levelgen/blockpredicates/MatchingBlockTagPredicate/f_198336_ net/minecraft/world/level/levelgen/blockpredicates/MatchingBlockTagPredicate/CODEC +FD: net/minecraft/world/level/levelgen/blockpredicates/MatchingBlocksPredicate/f_190479_ net/minecraft/world/level/levelgen/blockpredicates/MatchingBlocksPredicate/CODEC +FD: net/minecraft/world/level/levelgen/blockpredicates/MatchingBlocksPredicate/f_190480_ net/minecraft/world/level/levelgen/blockpredicates/MatchingBlocksPredicate/blocks +FD: net/minecraft/world/level/levelgen/blockpredicates/MatchingFluidsPredicate/f_190492_ net/minecraft/world/level/levelgen/blockpredicates/MatchingFluidsPredicate/CODEC +FD: net/minecraft/world/level/levelgen/blockpredicates/MatchingFluidsPredicate/f_190493_ net/minecraft/world/level/levelgen/blockpredicates/MatchingFluidsPredicate/fluids +FD: net/minecraft/world/level/levelgen/blockpredicates/NotPredicate/f_190505_ net/minecraft/world/level/levelgen/blockpredicates/NotPredicate/CODEC +FD: net/minecraft/world/level/levelgen/blockpredicates/NotPredicate/f_190506_ net/minecraft/world/level/levelgen/blockpredicates/NotPredicate/predicate +FD: net/minecraft/world/level/levelgen/blockpredicates/ReplaceablePredicate/f_190521_ net/minecraft/world/level/levelgen/blockpredicates/ReplaceablePredicate/CODEC +FD: net/minecraft/world/level/levelgen/blockpredicates/SolidPredicate/f_190530_ net/minecraft/world/level/levelgen/blockpredicates/SolidPredicate/CODEC +FD: net/minecraft/world/level/levelgen/blockpredicates/StateTestingPredicate/f_190539_ net/minecraft/world/level/levelgen/blockpredicates/StateTestingPredicate/offset +FD: net/minecraft/world/level/levelgen/blockpredicates/TrueBlockPredicate/f_190553_ net/minecraft/world/level/levelgen/blockpredicates/TrueBlockPredicate/INSTANCE +FD: net/minecraft/world/level/levelgen/blockpredicates/TrueBlockPredicate/f_190554_ net/minecraft/world/level/levelgen/blockpredicates/TrueBlockPredicate/CODEC +FD: net/minecraft/world/level/levelgen/blockpredicates/WouldSurvivePredicate/f_190565_ net/minecraft/world/level/levelgen/blockpredicates/WouldSurvivePredicate/CODEC +FD: net/minecraft/world/level/levelgen/blockpredicates/WouldSurvivePredicate/f_190566_ net/minecraft/world/level/levelgen/blockpredicates/WouldSurvivePredicate/offset +FD: net/minecraft/world/level/levelgen/blockpredicates/WouldSurvivePredicate/f_190567_ net/minecraft/world/level/levelgen/blockpredicates/WouldSurvivePredicate/state +FD: net/minecraft/world/level/levelgen/carver/CanyonCarverConfiguration/f_158966_ net/minecraft/world/level/levelgen/carver/CanyonCarverConfiguration/CODEC +FD: net/minecraft/world/level/levelgen/carver/CanyonCarverConfiguration/f_158967_ net/minecraft/world/level/levelgen/carver/CanyonCarverConfiguration/verticalRotation +FD: net/minecraft/world/level/levelgen/carver/CanyonCarverConfiguration/f_158968_ net/minecraft/world/level/levelgen/carver/CanyonCarverConfiguration/shape +FD: net/minecraft/world/level/levelgen/carver/CanyonCarverConfiguration$CanyonShapeConfiguration/f_158991_ net/minecraft/world/level/levelgen/carver/CanyonCarverConfiguration$CanyonShapeConfiguration/CODEC +FD: net/minecraft/world/level/levelgen/carver/CanyonCarverConfiguration$CanyonShapeConfiguration/f_158992_ net/minecraft/world/level/levelgen/carver/CanyonCarverConfiguration$CanyonShapeConfiguration/distanceFactor +FD: net/minecraft/world/level/levelgen/carver/CanyonCarverConfiguration$CanyonShapeConfiguration/f_158993_ net/minecraft/world/level/levelgen/carver/CanyonCarverConfiguration$CanyonShapeConfiguration/thickness +FD: net/minecraft/world/level/levelgen/carver/CanyonCarverConfiguration$CanyonShapeConfiguration/f_158994_ net/minecraft/world/level/levelgen/carver/CanyonCarverConfiguration$CanyonShapeConfiguration/widthSmoothness +FD: net/minecraft/world/level/levelgen/carver/CanyonCarverConfiguration$CanyonShapeConfiguration/f_158995_ net/minecraft/world/level/levelgen/carver/CanyonCarverConfiguration$CanyonShapeConfiguration/horizontalRadiusFactor +FD: net/minecraft/world/level/levelgen/carver/CanyonCarverConfiguration$CanyonShapeConfiguration/f_158996_ net/minecraft/world/level/levelgen/carver/CanyonCarverConfiguration$CanyonShapeConfiguration/verticalRadiusDefaultFactor +FD: net/minecraft/world/level/levelgen/carver/CanyonCarverConfiguration$CanyonShapeConfiguration/f_158997_ net/minecraft/world/level/levelgen/carver/CanyonCarverConfiguration$CanyonShapeConfiguration/verticalRadiusCenterFactor +FD: net/minecraft/world/level/levelgen/carver/CarverConfiguration/f_159087_ net/minecraft/world/level/levelgen/carver/CarverConfiguration/CODEC +FD: net/minecraft/world/level/levelgen/carver/CarverConfiguration/f_159088_ net/minecraft/world/level/levelgen/carver/CarverConfiguration/y +FD: net/minecraft/world/level/levelgen/carver/CarverConfiguration/f_159089_ net/minecraft/world/level/levelgen/carver/CarverConfiguration/yScale +FD: net/minecraft/world/level/levelgen/carver/CarverConfiguration/f_159090_ net/minecraft/world/level/levelgen/carver/CarverConfiguration/lavaLevel +FD: net/minecraft/world/level/levelgen/carver/CarverConfiguration/f_159092_ net/minecraft/world/level/levelgen/carver/CarverConfiguration/debugSettings +FD: net/minecraft/world/level/levelgen/carver/CarverConfiguration/f_224830_ net/minecraft/world/level/levelgen/carver/CarverConfiguration/replaceable +FD: net/minecraft/world/level/levelgen/carver/CarverDebugSettings/f_159114_ net/minecraft/world/level/levelgen/carver/CarverDebugSettings/DEFAULT +FD: net/minecraft/world/level/levelgen/carver/CarverDebugSettings/f_159115_ net/minecraft/world/level/levelgen/carver/CarverDebugSettings/CODEC +FD: net/minecraft/world/level/levelgen/carver/CarverDebugSettings/f_159116_ net/minecraft/world/level/levelgen/carver/CarverDebugSettings/debugMode +FD: net/minecraft/world/level/levelgen/carver/CarverDebugSettings/f_159117_ net/minecraft/world/level/levelgen/carver/CarverDebugSettings/airState +FD: net/minecraft/world/level/levelgen/carver/CarverDebugSettings/f_159118_ net/minecraft/world/level/levelgen/carver/CarverDebugSettings/waterState +FD: net/minecraft/world/level/levelgen/carver/CarverDebugSettings/f_159119_ net/minecraft/world/level/levelgen/carver/CarverDebugSettings/lavaState +FD: net/minecraft/world/level/levelgen/carver/CarverDebugSettings/f_159120_ net/minecraft/world/level/levelgen/carver/CarverDebugSettings/barrierState +FD: net/minecraft/world/level/levelgen/carver/CarvingContext/f_190639_ net/minecraft/world/level/levelgen/carver/CarvingContext/registryAccess +FD: net/minecraft/world/level/levelgen/carver/CarvingContext/f_190640_ net/minecraft/world/level/levelgen/carver/CarvingContext/noiseChunk +FD: net/minecraft/world/level/levelgen/carver/CarvingContext/f_224842_ net/minecraft/world/level/levelgen/carver/CarvingContext/randomState +FD: net/minecraft/world/level/levelgen/carver/CarvingContext/f_224843_ net/minecraft/world/level/levelgen/carver/CarvingContext/surfaceRule +FD: net/minecraft/world/level/levelgen/carver/CaveCarverConfiguration/f_159154_ net/minecraft/world/level/levelgen/carver/CaveCarverConfiguration/CODEC +FD: net/minecraft/world/level/levelgen/carver/CaveCarverConfiguration/f_159155_ net/minecraft/world/level/levelgen/carver/CaveCarverConfiguration/horizontalRadiusMultiplier +FD: net/minecraft/world/level/levelgen/carver/CaveCarverConfiguration/f_159156_ net/minecraft/world/level/levelgen/carver/CaveCarverConfiguration/verticalRadiusMultiplier +FD: net/minecraft/world/level/levelgen/carver/CaveCarverConfiguration/f_159157_ net/minecraft/world/level/levelgen/carver/CaveCarverConfiguration/floorLevel +FD: net/minecraft/world/level/levelgen/carver/ConfiguredWorldCarver/f_64846_ net/minecraft/world/level/levelgen/carver/ConfiguredWorldCarver/DIRECT_CODEC +FD: net/minecraft/world/level/levelgen/carver/ConfiguredWorldCarver/f_64847_ net/minecraft/world/level/levelgen/carver/ConfiguredWorldCarver/CODEC +FD: net/minecraft/world/level/levelgen/carver/ConfiguredWorldCarver/f_64848_ net/minecraft/world/level/levelgen/carver/ConfiguredWorldCarver/LIST_CODEC +FD: net/minecraft/world/level/levelgen/carver/ConfiguredWorldCarver/f_64849_ net/minecraft/world/level/levelgen/carver/ConfiguredWorldCarver/worldCarver +FD: net/minecraft/world/level/levelgen/carver/ConfiguredWorldCarver/f_64850_ net/minecraft/world/level/levelgen/carver/ConfiguredWorldCarver/config +FD: net/minecraft/world/level/levelgen/carver/WorldCarver/f_64974_ net/minecraft/world/level/levelgen/carver/WorldCarver/CAVE +FD: net/minecraft/world/level/levelgen/carver/WorldCarver/f_64975_ net/minecraft/world/level/levelgen/carver/WorldCarver/NETHER_CAVE +FD: net/minecraft/world/level/levelgen/carver/WorldCarver/f_64976_ net/minecraft/world/level/levelgen/carver/WorldCarver/CANYON +FD: net/minecraft/world/level/levelgen/carver/WorldCarver/f_64979_ net/minecraft/world/level/levelgen/carver/WorldCarver/AIR +FD: net/minecraft/world/level/levelgen/carver/WorldCarver/f_64980_ net/minecraft/world/level/levelgen/carver/WorldCarver/CAVE_AIR +FD: net/minecraft/world/level/levelgen/carver/WorldCarver/f_64981_ net/minecraft/world/level/levelgen/carver/WorldCarver/WATER +FD: net/minecraft/world/level/levelgen/carver/WorldCarver/f_64982_ net/minecraft/world/level/levelgen/carver/WorldCarver/LAVA +FD: net/minecraft/world/level/levelgen/carver/WorldCarver/f_64984_ net/minecraft/world/level/levelgen/carver/WorldCarver/liquids +FD: net/minecraft/world/level/levelgen/carver/WorldCarver/f_64986_ net/minecraft/world/level/levelgen/carver/WorldCarver/configuredCodec +FD: net/minecraft/world/level/levelgen/feature/BambooFeature/f_65131_ net/minecraft/world/level/levelgen/feature/BambooFeature/BAMBOO_TRUNK +FD: net/minecraft/world/level/levelgen/feature/BambooFeature/f_65132_ net/minecraft/world/level/levelgen/feature/BambooFeature/BAMBOO_FINAL_LARGE +FD: net/minecraft/world/level/levelgen/feature/BambooFeature/f_65133_ net/minecraft/world/level/levelgen/feature/BambooFeature/BAMBOO_TOP_LARGE +FD: net/minecraft/world/level/levelgen/feature/BambooFeature/f_65134_ net/minecraft/world/level/levelgen/feature/BambooFeature/BAMBOO_TOP_SMALL +FD: net/minecraft/world/level/levelgen/feature/BasaltColumnsFeature/f_159439_ net/minecraft/world/level/levelgen/feature/BasaltColumnsFeature/CLUSTERED_REACH +FD: net/minecraft/world/level/levelgen/feature/BasaltColumnsFeature/f_159440_ net/minecraft/world/level/levelgen/feature/BasaltColumnsFeature/CLUSTERED_SIZE +FD: net/minecraft/world/level/levelgen/feature/BasaltColumnsFeature/f_159441_ net/minecraft/world/level/levelgen/feature/BasaltColumnsFeature/UNCLUSTERED_REACH +FD: net/minecraft/world/level/levelgen/feature/BasaltColumnsFeature/f_159442_ net/minecraft/world/level/levelgen/feature/BasaltColumnsFeature/UNCLUSTERED_SIZE +FD: net/minecraft/world/level/levelgen/feature/BasaltColumnsFeature/f_65150_ net/minecraft/world/level/levelgen/feature/BasaltColumnsFeature/CANNOT_PLACE_ON +FD: net/minecraft/world/level/levelgen/feature/ConfiguredFeature/f_65373_ net/minecraft/world/level/levelgen/feature/ConfiguredFeature/DIRECT_CODEC +FD: net/minecraft/world/level/levelgen/feature/ConfiguredFeature/f_65374_ net/minecraft/world/level/levelgen/feature/ConfiguredFeature/CODEC +FD: net/minecraft/world/level/levelgen/feature/ConfiguredFeature/f_65375_ net/minecraft/world/level/levelgen/feature/ConfiguredFeature/LIST_CODEC +FD: net/minecraft/world/level/levelgen/feature/ConfiguredFeature/f_65377_ net/minecraft/world/level/levelgen/feature/ConfiguredFeature/feature +FD: net/minecraft/world/level/levelgen/feature/ConfiguredFeature/f_65378_ net/minecraft/world/level/levelgen/feature/ConfiguredFeature/config +FD: net/minecraft/world/level/levelgen/feature/DeltaFeature/f_159546_ net/minecraft/world/level/levelgen/feature/DeltaFeature/RIM_SPAWN_CHANCE +FD: net/minecraft/world/level/levelgen/feature/DeltaFeature/f_65546_ net/minecraft/world/level/levelgen/feature/DeltaFeature/CANNOT_REPLACE +FD: net/minecraft/world/level/levelgen/feature/DeltaFeature/f_65547_ net/minecraft/world/level/levelgen/feature/DeltaFeature/DIRECTIONS +FD: net/minecraft/world/level/levelgen/feature/DesertWellFeature/f_276683_ net/minecraft/world/level/levelgen/feature/DesertWellFeature/sand +FD: net/minecraft/world/level/levelgen/feature/DesertWellFeature/f_65593_ net/minecraft/world/level/levelgen/feature/DesertWellFeature/IS_SAND +FD: net/minecraft/world/level/levelgen/feature/DesertWellFeature/f_65594_ net/minecraft/world/level/levelgen/feature/DesertWellFeature/sandSlab +FD: net/minecraft/world/level/levelgen/feature/DesertWellFeature/f_65595_ net/minecraft/world/level/levelgen/feature/DesertWellFeature/sandstone +FD: net/minecraft/world/level/levelgen/feature/DesertWellFeature/f_65596_ net/minecraft/world/level/levelgen/feature/DesertWellFeature/water +FD: net/minecraft/world/level/levelgen/feature/EndPodiumFeature/f_159718_ net/minecraft/world/level/levelgen/feature/EndPodiumFeature/PODIUM_RADIUS +FD: net/minecraft/world/level/levelgen/feature/EndPodiumFeature/f_159719_ net/minecraft/world/level/levelgen/feature/EndPodiumFeature/PODIUM_PILLAR_HEIGHT +FD: net/minecraft/world/level/levelgen/feature/EndPodiumFeature/f_159720_ net/minecraft/world/level/levelgen/feature/EndPodiumFeature/RIM_RADIUS +FD: net/minecraft/world/level/levelgen/feature/EndPodiumFeature/f_159721_ net/minecraft/world/level/levelgen/feature/EndPodiumFeature/CORNER_ROUNDING +FD: net/minecraft/world/level/levelgen/feature/EndPodiumFeature/f_65714_ net/minecraft/world/level/levelgen/feature/EndPodiumFeature/END_PODIUM_LOCATION +FD: net/minecraft/world/level/levelgen/feature/EndPodiumFeature/f_65715_ net/minecraft/world/level/levelgen/feature/EndPodiumFeature/active +FD: net/minecraft/world/level/levelgen/feature/Feature/f_159724_ net/minecraft/world/level/levelgen/feature/Feature/ROOT_SYSTEM +FD: net/minecraft/world/level/levelgen/feature/Feature/f_159726_ net/minecraft/world/level/levelgen/feature/Feature/UNDERWATER_MAGMA +FD: net/minecraft/world/level/levelgen/feature/Feature/f_159727_ net/minecraft/world/level/levelgen/feature/Feature/SCATTERED_ORE +FD: net/minecraft/world/level/levelgen/feature/Feature/f_159728_ net/minecraft/world/level/levelgen/feature/Feature/GEODE +FD: net/minecraft/world/level/levelgen/feature/Feature/f_159729_ net/minecraft/world/level/levelgen/feature/Feature/DRIPSTONE_CLUSTER +FD: net/minecraft/world/level/levelgen/feature/Feature/f_159730_ net/minecraft/world/level/levelgen/feature/Feature/LARGE_DRIPSTONE +FD: net/minecraft/world/level/levelgen/feature/Feature/f_159732_ net/minecraft/world/level/levelgen/feature/Feature/REPLACE_SINGLE_BLOCK +FD: net/minecraft/world/level/levelgen/feature/Feature/f_159734_ net/minecraft/world/level/levelgen/feature/Feature/VEGETATION_PATCH +FD: net/minecraft/world/level/levelgen/feature/Feature/f_159735_ net/minecraft/world/level/levelgen/feature/Feature/WATERLOGGED_VEGETATION_PATCH +FD: net/minecraft/world/level/levelgen/feature/Feature/f_190874_ net/minecraft/world/level/levelgen/feature/Feature/POINTED_DRIPSTONE +FD: net/minecraft/world/level/levelgen/feature/Feature/f_190875_ net/minecraft/world/level/levelgen/feature/Feature/BLOCK_COLUMN +FD: net/minecraft/world/level/levelgen/feature/Feature/f_225026_ net/minecraft/world/level/levelgen/feature/Feature/MULTIFACE_GROWTH +FD: net/minecraft/world/level/levelgen/feature/Feature/f_225027_ net/minecraft/world/level/levelgen/feature/Feature/SCULK_PATCH +FD: net/minecraft/world/level/levelgen/feature/Feature/f_65731_ net/minecraft/world/level/levelgen/feature/Feature/ORE +FD: net/minecraft/world/level/levelgen/feature/Feature/f_65732_ net/minecraft/world/level/levelgen/feature/Feature/END_SPIKE +FD: net/minecraft/world/level/levelgen/feature/Feature/f_65733_ net/minecraft/world/level/levelgen/feature/Feature/END_ISLAND +FD: net/minecraft/world/level/levelgen/feature/Feature/f_65734_ net/minecraft/world/level/levelgen/feature/Feature/END_GATEWAY +FD: net/minecraft/world/level/levelgen/feature/Feature/f_65735_ net/minecraft/world/level/levelgen/feature/Feature/SEAGRASS +FD: net/minecraft/world/level/levelgen/feature/Feature/f_65736_ net/minecraft/world/level/levelgen/feature/Feature/KELP +FD: net/minecraft/world/level/levelgen/feature/Feature/f_65737_ net/minecraft/world/level/levelgen/feature/Feature/CORAL_TREE +FD: net/minecraft/world/level/levelgen/feature/Feature/f_65738_ net/minecraft/world/level/levelgen/feature/Feature/CORAL_MUSHROOM +FD: net/minecraft/world/level/levelgen/feature/Feature/f_65739_ net/minecraft/world/level/levelgen/feature/Feature/CORAL_CLAW +FD: net/minecraft/world/level/levelgen/feature/Feature/f_65740_ net/minecraft/world/level/levelgen/feature/Feature/SEA_PICKLE +FD: net/minecraft/world/level/levelgen/feature/Feature/f_65741_ net/minecraft/world/level/levelgen/feature/Feature/SIMPLE_BLOCK +FD: net/minecraft/world/level/levelgen/feature/Feature/f_65742_ net/minecraft/world/level/levelgen/feature/Feature/BAMBOO +FD: net/minecraft/world/level/levelgen/feature/Feature/f_65743_ net/minecraft/world/level/levelgen/feature/Feature/HUGE_FUNGUS +FD: net/minecraft/world/level/levelgen/feature/Feature/f_65744_ net/minecraft/world/level/levelgen/feature/Feature/NETHER_FOREST_VEGETATION +FD: net/minecraft/world/level/levelgen/feature/Feature/f_65745_ net/minecraft/world/level/levelgen/feature/Feature/WEEPING_VINES +FD: net/minecraft/world/level/levelgen/feature/Feature/f_65746_ net/minecraft/world/level/levelgen/feature/Feature/TWISTING_VINES +FD: net/minecraft/world/level/levelgen/feature/Feature/f_65747_ net/minecraft/world/level/levelgen/feature/Feature/BASALT_COLUMNS +FD: net/minecraft/world/level/levelgen/feature/Feature/f_65748_ net/minecraft/world/level/levelgen/feature/Feature/DELTA_FEATURE +FD: net/minecraft/world/level/levelgen/feature/Feature/f_65749_ net/minecraft/world/level/levelgen/feature/Feature/REPLACE_BLOBS +FD: net/minecraft/world/level/levelgen/feature/Feature/f_65750_ net/minecraft/world/level/levelgen/feature/Feature/FILL_LAYER +FD: net/minecraft/world/level/levelgen/feature/Feature/f_65751_ net/minecraft/world/level/levelgen/feature/Feature/BONUS_CHEST +FD: net/minecraft/world/level/levelgen/feature/Feature/f_65752_ net/minecraft/world/level/levelgen/feature/Feature/BASALT_PILLAR +FD: net/minecraft/world/level/levelgen/feature/Feature/f_65754_ net/minecraft/world/level/levelgen/feature/Feature/RANDOM_SELECTOR +FD: net/minecraft/world/level/levelgen/feature/Feature/f_65755_ net/minecraft/world/level/levelgen/feature/Feature/SIMPLE_RANDOM_SELECTOR +FD: net/minecraft/world/level/levelgen/feature/Feature/f_65756_ net/minecraft/world/level/levelgen/feature/Feature/RANDOM_BOOLEAN_SELECTOR +FD: net/minecraft/world/level/levelgen/feature/Feature/f_65757_ net/minecraft/world/level/levelgen/feature/Feature/configuredCodec +FD: net/minecraft/world/level/levelgen/feature/Feature/f_65759_ net/minecraft/world/level/levelgen/feature/Feature/NO_OP +FD: net/minecraft/world/level/levelgen/feature/Feature/f_65760_ net/minecraft/world/level/levelgen/feature/Feature/TREE +FD: net/minecraft/world/level/levelgen/feature/Feature/f_65761_ net/minecraft/world/level/levelgen/feature/Feature/FLOWER +FD: net/minecraft/world/level/levelgen/feature/Feature/f_65762_ net/minecraft/world/level/levelgen/feature/Feature/NO_BONEMEAL_FLOWER +FD: net/minecraft/world/level/levelgen/feature/Feature/f_65763_ net/minecraft/world/level/levelgen/feature/Feature/RANDOM_PATCH +FD: net/minecraft/world/level/levelgen/feature/Feature/f_65764_ net/minecraft/world/level/levelgen/feature/Feature/BLOCK_PILE +FD: net/minecraft/world/level/levelgen/feature/Feature/f_65765_ net/minecraft/world/level/levelgen/feature/Feature/SPRING +FD: net/minecraft/world/level/levelgen/feature/Feature/f_65766_ net/minecraft/world/level/levelgen/feature/Feature/CHORUS_PLANT +FD: net/minecraft/world/level/levelgen/feature/Feature/f_65768_ net/minecraft/world/level/levelgen/feature/Feature/VOID_START_PLATFORM +FD: net/minecraft/world/level/levelgen/feature/Feature/f_65769_ net/minecraft/world/level/levelgen/feature/Feature/DESERT_WELL +FD: net/minecraft/world/level/levelgen/feature/Feature/f_65770_ net/minecraft/world/level/levelgen/feature/Feature/FOSSIL +FD: net/minecraft/world/level/levelgen/feature/Feature/f_65771_ net/minecraft/world/level/levelgen/feature/Feature/HUGE_RED_MUSHROOM +FD: net/minecraft/world/level/levelgen/feature/Feature/f_65772_ net/minecraft/world/level/levelgen/feature/Feature/HUGE_BROWN_MUSHROOM +FD: net/minecraft/world/level/levelgen/feature/Feature/f_65773_ net/minecraft/world/level/levelgen/feature/Feature/ICE_SPIKE +FD: net/minecraft/world/level/levelgen/feature/Feature/f_65774_ net/minecraft/world/level/levelgen/feature/Feature/GLOWSTONE_BLOB +FD: net/minecraft/world/level/levelgen/feature/Feature/f_65775_ net/minecraft/world/level/levelgen/feature/Feature/FREEZE_TOP_LAYER +FD: net/minecraft/world/level/levelgen/feature/Feature/f_65776_ net/minecraft/world/level/levelgen/feature/Feature/VINES +FD: net/minecraft/world/level/levelgen/feature/Feature/f_65777_ net/minecraft/world/level/levelgen/feature/Feature/MONSTER_ROOM +FD: net/minecraft/world/level/levelgen/feature/Feature/f_65778_ net/minecraft/world/level/levelgen/feature/Feature/BLUE_ICE +FD: net/minecraft/world/level/levelgen/feature/Feature/f_65779_ net/minecraft/world/level/levelgen/feature/Feature/ICEBERG +FD: net/minecraft/world/level/levelgen/feature/Feature/f_65780_ net/minecraft/world/level/levelgen/feature/Feature/FOREST_ROCK +FD: net/minecraft/world/level/levelgen/feature/Feature/f_65781_ net/minecraft/world/level/levelgen/feature/Feature/DISK +FD: net/minecraft/world/level/levelgen/feature/Feature/f_65783_ net/minecraft/world/level/levelgen/feature/Feature/LAKE +FD: net/minecraft/world/level/levelgen/feature/FeatureCountTracker/f_190876_ net/minecraft/world/level/levelgen/feature/FeatureCountTracker/LOGGER +FD: net/minecraft/world/level/levelgen/feature/FeatureCountTracker/f_190877_ net/minecraft/world/level/levelgen/feature/FeatureCountTracker/data +FD: net/minecraft/world/level/levelgen/feature/FeatureCountTracker$FeatureData/f_190905_ net/minecraft/world/level/levelgen/feature/FeatureCountTracker$FeatureData/feature +FD: net/minecraft/world/level/levelgen/feature/FeatureCountTracker$FeatureData/f_190906_ net/minecraft/world/level/levelgen/feature/FeatureCountTracker$FeatureData/topFeature +FD: net/minecraft/world/level/levelgen/feature/FeatureCountTracker$LevelData/f_190916_ net/minecraft/world/level/levelgen/feature/FeatureCountTracker$LevelData/featureData +FD: net/minecraft/world/level/levelgen/feature/FeatureCountTracker$LevelData/f_190917_ net/minecraft/world/level/levelgen/feature/FeatureCountTracker$LevelData/chunksWithFeatures +FD: net/minecraft/world/level/levelgen/feature/FeaturePlaceContext/f_159763_ net/minecraft/world/level/levelgen/feature/FeaturePlaceContext/level +FD: net/minecraft/world/level/levelgen/feature/FeaturePlaceContext/f_159764_ net/minecraft/world/level/levelgen/feature/FeaturePlaceContext/chunkGenerator +FD: net/minecraft/world/level/levelgen/feature/FeaturePlaceContext/f_159765_ net/minecraft/world/level/levelgen/feature/FeaturePlaceContext/random +FD: net/minecraft/world/level/levelgen/feature/FeaturePlaceContext/f_159766_ net/minecraft/world/level/levelgen/feature/FeaturePlaceContext/origin +FD: net/minecraft/world/level/levelgen/feature/FeaturePlaceContext/f_159767_ net/minecraft/world/level/levelgen/feature/FeaturePlaceContext/config +FD: net/minecraft/world/level/levelgen/feature/FeaturePlaceContext/f_190927_ net/minecraft/world/level/levelgen/feature/FeaturePlaceContext/topFeature +FD: net/minecraft/world/level/levelgen/feature/FossilFeatureConfiguration/f_159796_ net/minecraft/world/level/levelgen/feature/FossilFeatureConfiguration/CODEC +FD: net/minecraft/world/level/levelgen/feature/FossilFeatureConfiguration/f_159797_ net/minecraft/world/level/levelgen/feature/FossilFeatureConfiguration/fossilStructures +FD: net/minecraft/world/level/levelgen/feature/FossilFeatureConfiguration/f_159798_ net/minecraft/world/level/levelgen/feature/FossilFeatureConfiguration/overlayStructures +FD: net/minecraft/world/level/levelgen/feature/FossilFeatureConfiguration/f_159799_ net/minecraft/world/level/levelgen/feature/FossilFeatureConfiguration/fossilProcessors +FD: net/minecraft/world/level/levelgen/feature/FossilFeatureConfiguration/f_159800_ net/minecraft/world/level/levelgen/feature/FossilFeatureConfiguration/overlayProcessors +FD: net/minecraft/world/level/levelgen/feature/FossilFeatureConfiguration/f_159801_ net/minecraft/world/level/levelgen/feature/FossilFeatureConfiguration/maxEmptyCornersAllowed +FD: net/minecraft/world/level/levelgen/feature/GeodeFeature/f_159831_ net/minecraft/world/level/levelgen/feature/GeodeFeature/DIRECTIONS +FD: net/minecraft/world/level/levelgen/feature/HugeFungusConfiguration/f_283781_ net/minecraft/world/level/levelgen/feature/HugeFungusConfiguration/replaceableBlocks +FD: net/minecraft/world/level/levelgen/feature/HugeFungusConfiguration/f_65892_ net/minecraft/world/level/levelgen/feature/HugeFungusConfiguration/CODEC +FD: net/minecraft/world/level/levelgen/feature/HugeFungusConfiguration/f_65897_ net/minecraft/world/level/levelgen/feature/HugeFungusConfiguration/validBaseState +FD: net/minecraft/world/level/levelgen/feature/HugeFungusConfiguration/f_65898_ net/minecraft/world/level/levelgen/feature/HugeFungusConfiguration/stemState +FD: net/minecraft/world/level/levelgen/feature/HugeFungusConfiguration/f_65899_ net/minecraft/world/level/levelgen/feature/HugeFungusConfiguration/hatState +FD: net/minecraft/world/level/levelgen/feature/HugeFungusConfiguration/f_65900_ net/minecraft/world/level/levelgen/feature/HugeFungusConfiguration/decorState +FD: net/minecraft/world/level/levelgen/feature/HugeFungusConfiguration/f_65901_ net/minecraft/world/level/levelgen/feature/HugeFungusConfiguration/planted +FD: net/minecraft/world/level/levelgen/feature/HugeFungusFeature/f_159876_ net/minecraft/world/level/levelgen/feature/HugeFungusFeature/HUGE_PROBABILITY +FD: net/minecraft/world/level/levelgen/feature/LakeFeature/f_66256_ net/minecraft/world/level/levelgen/feature/LakeFeature/AIR +FD: net/minecraft/world/level/levelgen/feature/LakeFeature$Configuration/f_190953_ net/minecraft/world/level/levelgen/feature/LakeFeature$Configuration/CODEC +FD: net/minecraft/world/level/levelgen/feature/LakeFeature$Configuration/f_190954_ net/minecraft/world/level/levelgen/feature/LakeFeature$Configuration/fluid +FD: net/minecraft/world/level/levelgen/feature/LakeFeature$Configuration/f_190955_ net/minecraft/world/level/levelgen/feature/LakeFeature$Configuration/barrier +FD: net/minecraft/world/level/levelgen/feature/LargeDripstoneFeature$LargeDripstone/f_159975_ net/minecraft/world/level/levelgen/feature/LargeDripstoneFeature$LargeDripstone/root +FD: net/minecraft/world/level/levelgen/feature/LargeDripstoneFeature$LargeDripstone/f_159976_ net/minecraft/world/level/levelgen/feature/LargeDripstoneFeature$LargeDripstone/pointingUp +FD: net/minecraft/world/level/levelgen/feature/LargeDripstoneFeature$LargeDripstone/f_159977_ net/minecraft/world/level/levelgen/feature/LargeDripstoneFeature$LargeDripstone/radius +FD: net/minecraft/world/level/levelgen/feature/LargeDripstoneFeature$LargeDripstone/f_159978_ net/minecraft/world/level/levelgen/feature/LargeDripstoneFeature$LargeDripstone/bluntness +FD: net/minecraft/world/level/levelgen/feature/LargeDripstoneFeature$LargeDripstone/f_159979_ net/minecraft/world/level/levelgen/feature/LargeDripstoneFeature$LargeDripstone/scale +FD: net/minecraft/world/level/levelgen/feature/LargeDripstoneFeature$WindOffsetter/f_160000_ net/minecraft/world/level/levelgen/feature/LargeDripstoneFeature$WindOffsetter/originY +FD: net/minecraft/world/level/levelgen/feature/LargeDripstoneFeature$WindOffsetter/f_160001_ net/minecraft/world/level/levelgen/feature/LargeDripstoneFeature$WindOffsetter/windSpeed +FD: net/minecraft/world/level/levelgen/feature/MonsterRoomFeature/f_66340_ net/minecraft/world/level/levelgen/feature/MonsterRoomFeature/LOGGER +FD: net/minecraft/world/level/levelgen/feature/MonsterRoomFeature/f_66341_ net/minecraft/world/level/levelgen/feature/MonsterRoomFeature/MOBS +FD: net/minecraft/world/level/levelgen/feature/MonsterRoomFeature/f_66342_ net/minecraft/world/level/levelgen/feature/MonsterRoomFeature/AIR +FD: net/minecraft/world/level/levelgen/feature/ScatteredOreFeature/f_160302_ net/minecraft/world/level/levelgen/feature/ScatteredOreFeature/MAX_DIST_FROM_ORIGIN +FD: net/minecraft/world/level/levelgen/feature/SpikeFeature/f_160369_ net/minecraft/world/level/levelgen/feature/SpikeFeature/NUMBER_OF_SPIKES +FD: net/minecraft/world/level/levelgen/feature/SpikeFeature/f_160370_ net/minecraft/world/level/levelgen/feature/SpikeFeature/SPIKE_DISTANCE +FD: net/minecraft/world/level/levelgen/feature/SpikeFeature/f_66849_ net/minecraft/world/level/levelgen/feature/SpikeFeature/SPIKE_CACHE +FD: net/minecraft/world/level/levelgen/feature/SpikeFeature$EndSpike/f_66872_ net/minecraft/world/level/levelgen/feature/SpikeFeature$EndSpike/CODEC +FD: net/minecraft/world/level/levelgen/feature/SpikeFeature$EndSpike/f_66873_ net/minecraft/world/level/levelgen/feature/SpikeFeature$EndSpike/centerX +FD: net/minecraft/world/level/levelgen/feature/SpikeFeature$EndSpike/f_66874_ net/minecraft/world/level/levelgen/feature/SpikeFeature$EndSpike/centerZ +FD: net/minecraft/world/level/levelgen/feature/SpikeFeature$EndSpike/f_66875_ net/minecraft/world/level/levelgen/feature/SpikeFeature$EndSpike/radius +FD: net/minecraft/world/level/levelgen/feature/SpikeFeature$EndSpike/f_66876_ net/minecraft/world/level/levelgen/feature/SpikeFeature$EndSpike/height +FD: net/minecraft/world/level/levelgen/feature/SpikeFeature$EndSpike/f_66877_ net/minecraft/world/level/levelgen/feature/SpikeFeature$EndSpike/guarded +FD: net/minecraft/world/level/levelgen/feature/SpikeFeature$EndSpike/f_66878_ net/minecraft/world/level/levelgen/feature/SpikeFeature$EndSpike/topBoundingBox +FD: net/minecraft/world/level/levelgen/feature/TreeFeature/f_160509_ net/minecraft/world/level/levelgen/feature/TreeFeature/BLOCK_UPDATE_FLAGS +FD: net/minecraft/world/level/levelgen/feature/TreeFeature$1/f_271236_ net/minecraft/world/level/levelgen/feature/TreeFeature$1/this$0 +FD: net/minecraft/world/level/levelgen/feature/TreeFeature$1/f_271346_ net/minecraft/world/level/levelgen/feature/TreeFeature$1/val$foliage +FD: net/minecraft/world/level/levelgen/feature/TreeFeature$1/f_271398_ net/minecraft/world/level/levelgen/feature/TreeFeature$1/val$level +FD: net/minecraft/world/level/levelgen/feature/VoidStartPlatformFeature/f_160629_ net/minecraft/world/level/levelgen/feature/VoidStartPlatformFeature/PLATFORM_OFFSET +FD: net/minecraft/world/level/levelgen/feature/VoidStartPlatformFeature/f_160630_ net/minecraft/world/level/levelgen/feature/VoidStartPlatformFeature/PLATFORM_RADIUS +FD: net/minecraft/world/level/levelgen/feature/VoidStartPlatformFeature/f_160631_ net/minecraft/world/level/levelgen/feature/VoidStartPlatformFeature/PLATFORM_RADIUS_CHUNKS +FD: net/minecraft/world/level/levelgen/feature/VoidStartPlatformFeature/f_67351_ net/minecraft/world/level/levelgen/feature/VoidStartPlatformFeature/PLATFORM_ORIGIN_CHUNK +FD: net/minecraft/world/level/levelgen/feature/WeepingVinesFeature/f_67372_ net/minecraft/world/level/levelgen/feature/WeepingVinesFeature/DIRECTIONS +FD: net/minecraft/world/level/levelgen/feature/WeightedPlacedFeature/f_191171_ net/minecraft/world/level/levelgen/feature/WeightedPlacedFeature/CODEC +FD: net/minecraft/world/level/levelgen/feature/WeightedPlacedFeature/f_191172_ net/minecraft/world/level/levelgen/feature/WeightedPlacedFeature/feature +FD: net/minecraft/world/level/levelgen/feature/WeightedPlacedFeature/f_191173_ net/minecraft/world/level/levelgen/feature/WeightedPlacedFeature/chance +FD: net/minecraft/world/level/levelgen/feature/configurations/BlockColumnConfiguration/f_191206_ net/minecraft/world/level/levelgen/feature/configurations/BlockColumnConfiguration/CODEC +FD: net/minecraft/world/level/levelgen/feature/configurations/BlockColumnConfiguration/f_191207_ net/minecraft/world/level/levelgen/feature/configurations/BlockColumnConfiguration/layers +FD: net/minecraft/world/level/levelgen/feature/configurations/BlockColumnConfiguration/f_191208_ net/minecraft/world/level/levelgen/feature/configurations/BlockColumnConfiguration/direction +FD: net/minecraft/world/level/levelgen/feature/configurations/BlockColumnConfiguration/f_191209_ net/minecraft/world/level/levelgen/feature/configurations/BlockColumnConfiguration/allowedPlacement +FD: net/minecraft/world/level/levelgen/feature/configurations/BlockColumnConfiguration/f_191210_ net/minecraft/world/level/levelgen/feature/configurations/BlockColumnConfiguration/prioritizeTip +FD: net/minecraft/world/level/levelgen/feature/configurations/BlockColumnConfiguration$Layer/f_191233_ net/minecraft/world/level/levelgen/feature/configurations/BlockColumnConfiguration$Layer/CODEC +FD: net/minecraft/world/level/levelgen/feature/configurations/BlockColumnConfiguration$Layer/f_191234_ net/minecraft/world/level/levelgen/feature/configurations/BlockColumnConfiguration$Layer/height +FD: net/minecraft/world/level/levelgen/feature/configurations/BlockColumnConfiguration$Layer/f_191235_ net/minecraft/world/level/levelgen/feature/configurations/BlockColumnConfiguration$Layer/state +FD: net/minecraft/world/level/levelgen/feature/configurations/BlockPileConfiguration/f_67539_ net/minecraft/world/level/levelgen/feature/configurations/BlockPileConfiguration/CODEC +FD: net/minecraft/world/level/levelgen/feature/configurations/BlockPileConfiguration/f_67540_ net/minecraft/world/level/levelgen/feature/configurations/BlockPileConfiguration/stateProvider +FD: net/minecraft/world/level/levelgen/feature/configurations/BlockStateConfiguration/f_67546_ net/minecraft/world/level/levelgen/feature/configurations/BlockStateConfiguration/CODEC +FD: net/minecraft/world/level/levelgen/feature/configurations/BlockStateConfiguration/f_67547_ net/minecraft/world/level/levelgen/feature/configurations/BlockStateConfiguration/state +FD: net/minecraft/world/level/levelgen/feature/configurations/ColumnFeatureConfiguration/f_67553_ net/minecraft/world/level/levelgen/feature/configurations/ColumnFeatureConfiguration/CODEC +FD: net/minecraft/world/level/levelgen/feature/configurations/ColumnFeatureConfiguration/f_67554_ net/minecraft/world/level/levelgen/feature/configurations/ColumnFeatureConfiguration/reach +FD: net/minecraft/world/level/levelgen/feature/configurations/ColumnFeatureConfiguration/f_67555_ net/minecraft/world/level/levelgen/feature/configurations/ColumnFeatureConfiguration/height +FD: net/minecraft/world/level/levelgen/feature/configurations/CountConfiguration/f_67568_ net/minecraft/world/level/levelgen/feature/configurations/CountConfiguration/CODEC +FD: net/minecraft/world/level/levelgen/feature/configurations/CountConfiguration/f_67569_ net/minecraft/world/level/levelgen/feature/configurations/CountConfiguration/count +FD: net/minecraft/world/level/levelgen/feature/configurations/DeltaFeatureConfiguration/f_67593_ net/minecraft/world/level/levelgen/feature/configurations/DeltaFeatureConfiguration/CODEC +FD: net/minecraft/world/level/levelgen/feature/configurations/DeltaFeatureConfiguration/f_67594_ net/minecraft/world/level/levelgen/feature/configurations/DeltaFeatureConfiguration/contents +FD: net/minecraft/world/level/levelgen/feature/configurations/DeltaFeatureConfiguration/f_67595_ net/minecraft/world/level/levelgen/feature/configurations/DeltaFeatureConfiguration/rim +FD: net/minecraft/world/level/levelgen/feature/configurations/DeltaFeatureConfiguration/f_67596_ net/minecraft/world/level/levelgen/feature/configurations/DeltaFeatureConfiguration/size +FD: net/minecraft/world/level/levelgen/feature/configurations/DeltaFeatureConfiguration/f_67597_ net/minecraft/world/level/levelgen/feature/configurations/DeltaFeatureConfiguration/rimSize +FD: net/minecraft/world/level/levelgen/feature/configurations/DiskConfiguration/f_225372_ net/minecraft/world/level/levelgen/feature/configurations/DiskConfiguration/stateProvider +FD: net/minecraft/world/level/levelgen/feature/configurations/DiskConfiguration/f_225373_ net/minecraft/world/level/levelgen/feature/configurations/DiskConfiguration/target +FD: net/minecraft/world/level/levelgen/feature/configurations/DiskConfiguration/f_67618_ net/minecraft/world/level/levelgen/feature/configurations/DiskConfiguration/CODEC +FD: net/minecraft/world/level/levelgen/feature/configurations/DiskConfiguration/f_67620_ net/minecraft/world/level/levelgen/feature/configurations/DiskConfiguration/radius +FD: net/minecraft/world/level/levelgen/feature/configurations/DiskConfiguration/f_67621_ net/minecraft/world/level/levelgen/feature/configurations/DiskConfiguration/halfHeight +FD: net/minecraft/world/level/levelgen/feature/configurations/DripstoneClusterConfiguration/f_160758_ net/minecraft/world/level/levelgen/feature/configurations/DripstoneClusterConfiguration/CODEC +FD: net/minecraft/world/level/levelgen/feature/configurations/DripstoneClusterConfiguration/f_160759_ net/minecraft/world/level/levelgen/feature/configurations/DripstoneClusterConfiguration/floorToCeilingSearchRange +FD: net/minecraft/world/level/levelgen/feature/configurations/DripstoneClusterConfiguration/f_160760_ net/minecraft/world/level/levelgen/feature/configurations/DripstoneClusterConfiguration/height +FD: net/minecraft/world/level/levelgen/feature/configurations/DripstoneClusterConfiguration/f_160761_ net/minecraft/world/level/levelgen/feature/configurations/DripstoneClusterConfiguration/radius +FD: net/minecraft/world/level/levelgen/feature/configurations/DripstoneClusterConfiguration/f_160762_ net/minecraft/world/level/levelgen/feature/configurations/DripstoneClusterConfiguration/maxStalagmiteStalactiteHeightDiff +FD: net/minecraft/world/level/levelgen/feature/configurations/DripstoneClusterConfiguration/f_160763_ net/minecraft/world/level/levelgen/feature/configurations/DripstoneClusterConfiguration/heightDeviation +FD: net/minecraft/world/level/levelgen/feature/configurations/DripstoneClusterConfiguration/f_160764_ net/minecraft/world/level/levelgen/feature/configurations/DripstoneClusterConfiguration/dripstoneBlockLayerThickness +FD: net/minecraft/world/level/levelgen/feature/configurations/DripstoneClusterConfiguration/f_160765_ net/minecraft/world/level/levelgen/feature/configurations/DripstoneClusterConfiguration/density +FD: net/minecraft/world/level/levelgen/feature/configurations/DripstoneClusterConfiguration/f_160766_ net/minecraft/world/level/levelgen/feature/configurations/DripstoneClusterConfiguration/wetness +FD: net/minecraft/world/level/levelgen/feature/configurations/DripstoneClusterConfiguration/f_160767_ net/minecraft/world/level/levelgen/feature/configurations/DripstoneClusterConfiguration/chanceOfDripstoneColumnAtMaxDistanceFromCenter +FD: net/minecraft/world/level/levelgen/feature/configurations/DripstoneClusterConfiguration/f_160768_ net/minecraft/world/level/levelgen/feature/configurations/DripstoneClusterConfiguration/maxDistanceFromEdgeAffectingChanceOfDripstoneColumn +FD: net/minecraft/world/level/levelgen/feature/configurations/DripstoneClusterConfiguration/f_160769_ net/minecraft/world/level/levelgen/feature/configurations/DripstoneClusterConfiguration/maxDistanceFromCenterAffectingHeightBias +FD: net/minecraft/world/level/levelgen/feature/configurations/EndGatewayConfiguration/f_67639_ net/minecraft/world/level/levelgen/feature/configurations/EndGatewayConfiguration/CODEC +FD: net/minecraft/world/level/levelgen/feature/configurations/EndGatewayConfiguration/f_67640_ net/minecraft/world/level/levelgen/feature/configurations/EndGatewayConfiguration/exit +FD: net/minecraft/world/level/levelgen/feature/configurations/EndGatewayConfiguration/f_67641_ net/minecraft/world/level/levelgen/feature/configurations/EndGatewayConfiguration/exact +FD: net/minecraft/world/level/levelgen/feature/configurations/FeatureConfiguration/f_67737_ net/minecraft/world/level/levelgen/feature/configurations/FeatureConfiguration/NONE +FD: net/minecraft/world/level/levelgen/feature/configurations/GeodeConfiguration/f_160811_ net/minecraft/world/level/levelgen/feature/configurations/GeodeConfiguration/CHANCE_RANGE +FD: net/minecraft/world/level/levelgen/feature/configurations/GeodeConfiguration/f_160812_ net/minecraft/world/level/levelgen/feature/configurations/GeodeConfiguration/CODEC +FD: net/minecraft/world/level/levelgen/feature/configurations/GeodeConfiguration/f_160813_ net/minecraft/world/level/levelgen/feature/configurations/GeodeConfiguration/geodeBlockSettings +FD: net/minecraft/world/level/levelgen/feature/configurations/GeodeConfiguration/f_160814_ net/minecraft/world/level/levelgen/feature/configurations/GeodeConfiguration/geodeLayerSettings +FD: net/minecraft/world/level/levelgen/feature/configurations/GeodeConfiguration/f_160815_ net/minecraft/world/level/levelgen/feature/configurations/GeodeConfiguration/geodeCrackSettings +FD: net/minecraft/world/level/levelgen/feature/configurations/GeodeConfiguration/f_160816_ net/minecraft/world/level/levelgen/feature/configurations/GeodeConfiguration/usePotentialPlacementsChance +FD: net/minecraft/world/level/levelgen/feature/configurations/GeodeConfiguration/f_160817_ net/minecraft/world/level/levelgen/feature/configurations/GeodeConfiguration/useAlternateLayer0Chance +FD: net/minecraft/world/level/levelgen/feature/configurations/GeodeConfiguration/f_160818_ net/minecraft/world/level/levelgen/feature/configurations/GeodeConfiguration/placementsRequireLayer0Alternate +FD: net/minecraft/world/level/levelgen/feature/configurations/GeodeConfiguration/f_160819_ net/minecraft/world/level/levelgen/feature/configurations/GeodeConfiguration/outerWallDistance +FD: net/minecraft/world/level/levelgen/feature/configurations/GeodeConfiguration/f_160820_ net/minecraft/world/level/levelgen/feature/configurations/GeodeConfiguration/distributionPoints +FD: net/minecraft/world/level/levelgen/feature/configurations/GeodeConfiguration/f_160821_ net/minecraft/world/level/levelgen/feature/configurations/GeodeConfiguration/pointOffset +FD: net/minecraft/world/level/levelgen/feature/configurations/GeodeConfiguration/f_160822_ net/minecraft/world/level/levelgen/feature/configurations/GeodeConfiguration/minGenOffset +FD: net/minecraft/world/level/levelgen/feature/configurations/GeodeConfiguration/f_160823_ net/minecraft/world/level/levelgen/feature/configurations/GeodeConfiguration/maxGenOffset +FD: net/minecraft/world/level/levelgen/feature/configurations/GeodeConfiguration/f_160824_ net/minecraft/world/level/levelgen/feature/configurations/GeodeConfiguration/noiseMultiplier +FD: net/minecraft/world/level/levelgen/feature/configurations/GeodeConfiguration/f_160825_ net/minecraft/world/level/levelgen/feature/configurations/GeodeConfiguration/invalidBlocksThreshold +FD: net/minecraft/world/level/levelgen/feature/configurations/HugeMushroomFeatureConfiguration/f_67739_ net/minecraft/world/level/levelgen/feature/configurations/HugeMushroomFeatureConfiguration/CODEC +FD: net/minecraft/world/level/levelgen/feature/configurations/HugeMushroomFeatureConfiguration/f_67740_ net/minecraft/world/level/levelgen/feature/configurations/HugeMushroomFeatureConfiguration/capProvider +FD: net/minecraft/world/level/levelgen/feature/configurations/HugeMushroomFeatureConfiguration/f_67741_ net/minecraft/world/level/levelgen/feature/configurations/HugeMushroomFeatureConfiguration/stemProvider +FD: net/minecraft/world/level/levelgen/feature/configurations/HugeMushroomFeatureConfiguration/f_67742_ net/minecraft/world/level/levelgen/feature/configurations/HugeMushroomFeatureConfiguration/foliageRadius +FD: net/minecraft/world/level/levelgen/feature/configurations/LargeDripstoneConfiguration/f_160944_ net/minecraft/world/level/levelgen/feature/configurations/LargeDripstoneConfiguration/CODEC +FD: net/minecraft/world/level/levelgen/feature/configurations/LargeDripstoneConfiguration/f_160945_ net/minecraft/world/level/levelgen/feature/configurations/LargeDripstoneConfiguration/floorToCeilingSearchRange +FD: net/minecraft/world/level/levelgen/feature/configurations/LargeDripstoneConfiguration/f_160946_ net/minecraft/world/level/levelgen/feature/configurations/LargeDripstoneConfiguration/columnRadius +FD: net/minecraft/world/level/levelgen/feature/configurations/LargeDripstoneConfiguration/f_160947_ net/minecraft/world/level/levelgen/feature/configurations/LargeDripstoneConfiguration/heightScale +FD: net/minecraft/world/level/levelgen/feature/configurations/LargeDripstoneConfiguration/f_160948_ net/minecraft/world/level/levelgen/feature/configurations/LargeDripstoneConfiguration/maxColumnRadiusToCaveHeightRatio +FD: net/minecraft/world/level/levelgen/feature/configurations/LargeDripstoneConfiguration/f_160949_ net/minecraft/world/level/levelgen/feature/configurations/LargeDripstoneConfiguration/stalactiteBluntness +FD: net/minecraft/world/level/levelgen/feature/configurations/LargeDripstoneConfiguration/f_160950_ net/minecraft/world/level/levelgen/feature/configurations/LargeDripstoneConfiguration/stalagmiteBluntness +FD: net/minecraft/world/level/levelgen/feature/configurations/LargeDripstoneConfiguration/f_160951_ net/minecraft/world/level/levelgen/feature/configurations/LargeDripstoneConfiguration/windSpeed +FD: net/minecraft/world/level/levelgen/feature/configurations/LargeDripstoneConfiguration/f_160952_ net/minecraft/world/level/levelgen/feature/configurations/LargeDripstoneConfiguration/minRadiusForWind +FD: net/minecraft/world/level/levelgen/feature/configurations/LargeDripstoneConfiguration/f_160953_ net/minecraft/world/level/levelgen/feature/configurations/LargeDripstoneConfiguration/minBluntnessForWind +FD: net/minecraft/world/level/levelgen/feature/configurations/LayerConfiguration/f_67767_ net/minecraft/world/level/levelgen/feature/configurations/LayerConfiguration/CODEC +FD: net/minecraft/world/level/levelgen/feature/configurations/LayerConfiguration/f_67768_ net/minecraft/world/level/levelgen/feature/configurations/LayerConfiguration/height +FD: net/minecraft/world/level/levelgen/feature/configurations/LayerConfiguration/f_67769_ net/minecraft/world/level/levelgen/feature/configurations/LayerConfiguration/state +FD: net/minecraft/world/level/levelgen/feature/configurations/MultifaceGrowthConfiguration/f_225381_ net/minecraft/world/level/levelgen/feature/configurations/MultifaceGrowthConfiguration/CODEC +FD: net/minecraft/world/level/levelgen/feature/configurations/MultifaceGrowthConfiguration/f_225382_ net/minecraft/world/level/levelgen/feature/configurations/MultifaceGrowthConfiguration/placeBlock +FD: net/minecraft/world/level/levelgen/feature/configurations/MultifaceGrowthConfiguration/f_225383_ net/minecraft/world/level/levelgen/feature/configurations/MultifaceGrowthConfiguration/searchRange +FD: net/minecraft/world/level/levelgen/feature/configurations/MultifaceGrowthConfiguration/f_225384_ net/minecraft/world/level/levelgen/feature/configurations/MultifaceGrowthConfiguration/canPlaceOnFloor +FD: net/minecraft/world/level/levelgen/feature/configurations/MultifaceGrowthConfiguration/f_225385_ net/minecraft/world/level/levelgen/feature/configurations/MultifaceGrowthConfiguration/canPlaceOnCeiling +FD: net/minecraft/world/level/levelgen/feature/configurations/MultifaceGrowthConfiguration/f_225386_ net/minecraft/world/level/levelgen/feature/configurations/MultifaceGrowthConfiguration/canPlaceOnWall +FD: net/minecraft/world/level/levelgen/feature/configurations/MultifaceGrowthConfiguration/f_225387_ net/minecraft/world/level/levelgen/feature/configurations/MultifaceGrowthConfiguration/chanceOfSpreading +FD: net/minecraft/world/level/levelgen/feature/configurations/MultifaceGrowthConfiguration/f_225388_ net/minecraft/world/level/levelgen/feature/configurations/MultifaceGrowthConfiguration/canBePlacedOn +FD: net/minecraft/world/level/levelgen/feature/configurations/MultifaceGrowthConfiguration/f_225389_ net/minecraft/world/level/levelgen/feature/configurations/MultifaceGrowthConfiguration/validDirections +FD: net/minecraft/world/level/levelgen/feature/configurations/NetherForestVegetationConfig/f_191258_ net/minecraft/world/level/levelgen/feature/configurations/NetherForestVegetationConfig/CODEC +FD: net/minecraft/world/level/levelgen/feature/configurations/NetherForestVegetationConfig/f_191259_ net/minecraft/world/level/levelgen/feature/configurations/NetherForestVegetationConfig/spreadWidth +FD: net/minecraft/world/level/levelgen/feature/configurations/NetherForestVegetationConfig/f_191260_ net/minecraft/world/level/levelgen/feature/configurations/NetherForestVegetationConfig/spreadHeight +FD: net/minecraft/world/level/levelgen/feature/configurations/NoneFeatureConfiguration/f_67815_ net/minecraft/world/level/levelgen/feature/configurations/NoneFeatureConfiguration/CODEC +FD: net/minecraft/world/level/levelgen/feature/configurations/NoneFeatureConfiguration/f_67816_ net/minecraft/world/level/levelgen/feature/configurations/NoneFeatureConfiguration/INSTANCE +FD: net/minecraft/world/level/levelgen/feature/configurations/OreConfiguration/f_161005_ net/minecraft/world/level/levelgen/feature/configurations/OreConfiguration/targetStates +FD: net/minecraft/world/level/levelgen/feature/configurations/OreConfiguration/f_161006_ net/minecraft/world/level/levelgen/feature/configurations/OreConfiguration/discardChanceOnAirExposure +FD: net/minecraft/world/level/levelgen/feature/configurations/OreConfiguration/f_67837_ net/minecraft/world/level/levelgen/feature/configurations/OreConfiguration/CODEC +FD: net/minecraft/world/level/levelgen/feature/configurations/OreConfiguration/f_67839_ net/minecraft/world/level/levelgen/feature/configurations/OreConfiguration/size +FD: net/minecraft/world/level/levelgen/feature/configurations/OreConfiguration$TargetBlockState/f_161031_ net/minecraft/world/level/levelgen/feature/configurations/OreConfiguration$TargetBlockState/CODEC +FD: net/minecraft/world/level/levelgen/feature/configurations/OreConfiguration$TargetBlockState/f_161032_ net/minecraft/world/level/levelgen/feature/configurations/OreConfiguration$TargetBlockState/target +FD: net/minecraft/world/level/levelgen/feature/configurations/OreConfiguration$TargetBlockState/f_161033_ net/minecraft/world/level/levelgen/feature/configurations/OreConfiguration$TargetBlockState/state +FD: net/minecraft/world/level/levelgen/feature/configurations/PointedDripstoneConfiguration/f_191274_ net/minecraft/world/level/levelgen/feature/configurations/PointedDripstoneConfiguration/CODEC +FD: net/minecraft/world/level/levelgen/feature/configurations/PointedDripstoneConfiguration/f_191275_ net/minecraft/world/level/levelgen/feature/configurations/PointedDripstoneConfiguration/chanceOfTallerDripstone +FD: net/minecraft/world/level/levelgen/feature/configurations/PointedDripstoneConfiguration/f_191276_ net/minecraft/world/level/levelgen/feature/configurations/PointedDripstoneConfiguration/chanceOfDirectionalSpread +FD: net/minecraft/world/level/levelgen/feature/configurations/PointedDripstoneConfiguration/f_191277_ net/minecraft/world/level/levelgen/feature/configurations/PointedDripstoneConfiguration/chanceOfSpreadRadius2 +FD: net/minecraft/world/level/levelgen/feature/configurations/PointedDripstoneConfiguration/f_191278_ net/minecraft/world/level/levelgen/feature/configurations/PointedDripstoneConfiguration/chanceOfSpreadRadius3 +FD: net/minecraft/world/level/levelgen/feature/configurations/ProbabilityFeatureConfiguration/f_67858_ net/minecraft/world/level/levelgen/feature/configurations/ProbabilityFeatureConfiguration/CODEC +FD: net/minecraft/world/level/levelgen/feature/configurations/ProbabilityFeatureConfiguration/f_67859_ net/minecraft/world/level/levelgen/feature/configurations/ProbabilityFeatureConfiguration/probability +FD: net/minecraft/world/level/levelgen/feature/configurations/RandomBooleanFeatureConfiguration/f_67867_ net/minecraft/world/level/levelgen/feature/configurations/RandomBooleanFeatureConfiguration/CODEC +FD: net/minecraft/world/level/levelgen/feature/configurations/RandomBooleanFeatureConfiguration/f_67868_ net/minecraft/world/level/levelgen/feature/configurations/RandomBooleanFeatureConfiguration/featureTrue +FD: net/minecraft/world/level/levelgen/feature/configurations/RandomBooleanFeatureConfiguration/f_67869_ net/minecraft/world/level/levelgen/feature/configurations/RandomBooleanFeatureConfiguration/featureFalse +FD: net/minecraft/world/level/levelgen/feature/configurations/RandomFeatureConfiguration/f_67881_ net/minecraft/world/level/levelgen/feature/configurations/RandomFeatureConfiguration/CODEC +FD: net/minecraft/world/level/levelgen/feature/configurations/RandomFeatureConfiguration/f_67882_ net/minecraft/world/level/levelgen/feature/configurations/RandomFeatureConfiguration/features +FD: net/minecraft/world/level/levelgen/feature/configurations/RandomFeatureConfiguration/f_67883_ net/minecraft/world/level/levelgen/feature/configurations/RandomFeatureConfiguration/defaultFeature +FD: net/minecraft/world/level/levelgen/feature/configurations/RandomPatchConfiguration/f_191302_ net/minecraft/world/level/levelgen/feature/configurations/RandomPatchConfiguration/xzSpread +FD: net/minecraft/world/level/levelgen/feature/configurations/RandomPatchConfiguration/f_191303_ net/minecraft/world/level/levelgen/feature/configurations/RandomPatchConfiguration/ySpread +FD: net/minecraft/world/level/levelgen/feature/configurations/RandomPatchConfiguration/f_191304_ net/minecraft/world/level/levelgen/feature/configurations/RandomPatchConfiguration/feature +FD: net/minecraft/world/level/levelgen/feature/configurations/RandomPatchConfiguration/f_67902_ net/minecraft/world/level/levelgen/feature/configurations/RandomPatchConfiguration/CODEC +FD: net/minecraft/world/level/levelgen/feature/configurations/RandomPatchConfiguration/f_67907_ net/minecraft/world/level/levelgen/feature/configurations/RandomPatchConfiguration/tries +FD: net/minecraft/world/level/levelgen/feature/configurations/ReplaceBlockConfiguration/f_161083_ net/minecraft/world/level/levelgen/feature/configurations/ReplaceBlockConfiguration/targetStates +FD: net/minecraft/world/level/levelgen/feature/configurations/ReplaceBlockConfiguration/f_68023_ net/minecraft/world/level/levelgen/feature/configurations/ReplaceBlockConfiguration/CODEC +FD: net/minecraft/world/level/levelgen/feature/configurations/ReplaceSphereConfiguration/f_68036_ net/minecraft/world/level/levelgen/feature/configurations/ReplaceSphereConfiguration/CODEC +FD: net/minecraft/world/level/levelgen/feature/configurations/ReplaceSphereConfiguration/f_68037_ net/minecraft/world/level/levelgen/feature/configurations/ReplaceSphereConfiguration/targetState +FD: net/minecraft/world/level/levelgen/feature/configurations/ReplaceSphereConfiguration/f_68038_ net/minecraft/world/level/levelgen/feature/configurations/ReplaceSphereConfiguration/replaceState +FD: net/minecraft/world/level/levelgen/feature/configurations/ReplaceSphereConfiguration/f_68039_ net/minecraft/world/level/levelgen/feature/configurations/ReplaceSphereConfiguration/radius +FD: net/minecraft/world/level/levelgen/feature/configurations/RootSystemConfiguration/f_161101_ net/minecraft/world/level/levelgen/feature/configurations/RootSystemConfiguration/CODEC +FD: net/minecraft/world/level/levelgen/feature/configurations/RootSystemConfiguration/f_161102_ net/minecraft/world/level/levelgen/feature/configurations/RootSystemConfiguration/treeFeature +FD: net/minecraft/world/level/levelgen/feature/configurations/RootSystemConfiguration/f_161103_ net/minecraft/world/level/levelgen/feature/configurations/RootSystemConfiguration/requiredVerticalSpaceForTree +FD: net/minecraft/world/level/levelgen/feature/configurations/RootSystemConfiguration/f_161104_ net/minecraft/world/level/levelgen/feature/configurations/RootSystemConfiguration/rootRadius +FD: net/minecraft/world/level/levelgen/feature/configurations/RootSystemConfiguration/f_161105_ net/minecraft/world/level/levelgen/feature/configurations/RootSystemConfiguration/rootReplaceable +FD: net/minecraft/world/level/levelgen/feature/configurations/RootSystemConfiguration/f_161106_ net/minecraft/world/level/levelgen/feature/configurations/RootSystemConfiguration/rootStateProvider +FD: net/minecraft/world/level/levelgen/feature/configurations/RootSystemConfiguration/f_161107_ net/minecraft/world/level/levelgen/feature/configurations/RootSystemConfiguration/rootPlacementAttempts +FD: net/minecraft/world/level/levelgen/feature/configurations/RootSystemConfiguration/f_161108_ net/minecraft/world/level/levelgen/feature/configurations/RootSystemConfiguration/rootColumnMaxHeight +FD: net/minecraft/world/level/levelgen/feature/configurations/RootSystemConfiguration/f_161109_ net/minecraft/world/level/levelgen/feature/configurations/RootSystemConfiguration/hangingRootRadius +FD: net/minecraft/world/level/levelgen/feature/configurations/RootSystemConfiguration/f_161110_ net/minecraft/world/level/levelgen/feature/configurations/RootSystemConfiguration/hangingRootsVerticalSpan +FD: net/minecraft/world/level/levelgen/feature/configurations/RootSystemConfiguration/f_161111_ net/minecraft/world/level/levelgen/feature/configurations/RootSystemConfiguration/hangingRootStateProvider +FD: net/minecraft/world/level/levelgen/feature/configurations/RootSystemConfiguration/f_161112_ net/minecraft/world/level/levelgen/feature/configurations/RootSystemConfiguration/hangingRootPlacementAttempts +FD: net/minecraft/world/level/levelgen/feature/configurations/RootSystemConfiguration/f_161113_ net/minecraft/world/level/levelgen/feature/configurations/RootSystemConfiguration/allowedVerticalWaterForTree +FD: net/minecraft/world/level/levelgen/feature/configurations/RootSystemConfiguration/f_198355_ net/minecraft/world/level/levelgen/feature/configurations/RootSystemConfiguration/allowedTreePosition +FD: net/minecraft/world/level/levelgen/feature/configurations/SculkPatchConfiguration/f_225425_ net/minecraft/world/level/levelgen/feature/configurations/SculkPatchConfiguration/CODEC +FD: net/minecraft/world/level/levelgen/feature/configurations/SculkPatchConfiguration/f_225426_ net/minecraft/world/level/levelgen/feature/configurations/SculkPatchConfiguration/chargeCount +FD: net/minecraft/world/level/levelgen/feature/configurations/SculkPatchConfiguration/f_225427_ net/minecraft/world/level/levelgen/feature/configurations/SculkPatchConfiguration/amountPerCharge +FD: net/minecraft/world/level/levelgen/feature/configurations/SculkPatchConfiguration/f_225428_ net/minecraft/world/level/levelgen/feature/configurations/SculkPatchConfiguration/spreadAttempts +FD: net/minecraft/world/level/levelgen/feature/configurations/SculkPatchConfiguration/f_225429_ net/minecraft/world/level/levelgen/feature/configurations/SculkPatchConfiguration/growthRounds +FD: net/minecraft/world/level/levelgen/feature/configurations/SculkPatchConfiguration/f_225430_ net/minecraft/world/level/levelgen/feature/configurations/SculkPatchConfiguration/spreadRounds +FD: net/minecraft/world/level/levelgen/feature/configurations/SculkPatchConfiguration/f_225431_ net/minecraft/world/level/levelgen/feature/configurations/SculkPatchConfiguration/extraRareGrowths +FD: net/minecraft/world/level/levelgen/feature/configurations/SculkPatchConfiguration/f_225432_ net/minecraft/world/level/levelgen/feature/configurations/SculkPatchConfiguration/catalystChance +FD: net/minecraft/world/level/levelgen/feature/configurations/SimpleBlockConfiguration/f_68068_ net/minecraft/world/level/levelgen/feature/configurations/SimpleBlockConfiguration/CODEC +FD: net/minecraft/world/level/levelgen/feature/configurations/SimpleBlockConfiguration/f_68069_ net/minecraft/world/level/levelgen/feature/configurations/SimpleBlockConfiguration/toPlace +FD: net/minecraft/world/level/levelgen/feature/configurations/SimpleRandomFeatureConfiguration/f_68089_ net/minecraft/world/level/levelgen/feature/configurations/SimpleRandomFeatureConfiguration/CODEC +FD: net/minecraft/world/level/levelgen/feature/configurations/SimpleRandomFeatureConfiguration/f_68090_ net/minecraft/world/level/levelgen/feature/configurations/SimpleRandomFeatureConfiguration/features +FD: net/minecraft/world/level/levelgen/feature/configurations/SpikeConfiguration/f_68099_ net/minecraft/world/level/levelgen/feature/configurations/SpikeConfiguration/CODEC +FD: net/minecraft/world/level/levelgen/feature/configurations/SpikeConfiguration/f_68100_ net/minecraft/world/level/levelgen/feature/configurations/SpikeConfiguration/crystalInvulnerable +FD: net/minecraft/world/level/levelgen/feature/configurations/SpikeConfiguration/f_68101_ net/minecraft/world/level/levelgen/feature/configurations/SpikeConfiguration/spikes +FD: net/minecraft/world/level/levelgen/feature/configurations/SpikeConfiguration/f_68102_ net/minecraft/world/level/levelgen/feature/configurations/SpikeConfiguration/crystalBeamTarget +FD: net/minecraft/world/level/levelgen/feature/configurations/SpringConfiguration/f_68123_ net/minecraft/world/level/levelgen/feature/configurations/SpringConfiguration/CODEC +FD: net/minecraft/world/level/levelgen/feature/configurations/SpringConfiguration/f_68124_ net/minecraft/world/level/levelgen/feature/configurations/SpringConfiguration/state +FD: net/minecraft/world/level/levelgen/feature/configurations/SpringConfiguration/f_68125_ net/minecraft/world/level/levelgen/feature/configurations/SpringConfiguration/requiresBlockBelow +FD: net/minecraft/world/level/levelgen/feature/configurations/SpringConfiguration/f_68126_ net/minecraft/world/level/levelgen/feature/configurations/SpringConfiguration/rockCount +FD: net/minecraft/world/level/levelgen/feature/configurations/SpringConfiguration/f_68127_ net/minecraft/world/level/levelgen/feature/configurations/SpringConfiguration/holeCount +FD: net/minecraft/world/level/levelgen/feature/configurations/SpringConfiguration/f_68128_ net/minecraft/world/level/levelgen/feature/configurations/SpringConfiguration/validBlocks +FD: net/minecraft/world/level/levelgen/feature/configurations/TreeConfiguration/f_161212_ net/minecraft/world/level/levelgen/feature/configurations/TreeConfiguration/dirtProvider +FD: net/minecraft/world/level/levelgen/feature/configurations/TreeConfiguration/f_161213_ net/minecraft/world/level/levelgen/feature/configurations/TreeConfiguration/foliageProvider +FD: net/minecraft/world/level/levelgen/feature/configurations/TreeConfiguration/f_161215_ net/minecraft/world/level/levelgen/feature/configurations/TreeConfiguration/forceDirt +FD: net/minecraft/world/level/levelgen/feature/configurations/TreeConfiguration/f_225455_ net/minecraft/world/level/levelgen/feature/configurations/TreeConfiguration/rootPlacer +FD: net/minecraft/world/level/levelgen/feature/configurations/TreeConfiguration/f_68184_ net/minecraft/world/level/levelgen/feature/configurations/TreeConfiguration/CODEC +FD: net/minecraft/world/level/levelgen/feature/configurations/TreeConfiguration/f_68185_ net/minecraft/world/level/levelgen/feature/configurations/TreeConfiguration/trunkProvider +FD: net/minecraft/world/level/levelgen/feature/configurations/TreeConfiguration/f_68187_ net/minecraft/world/level/levelgen/feature/configurations/TreeConfiguration/decorators +FD: net/minecraft/world/level/levelgen/feature/configurations/TreeConfiguration/f_68189_ net/minecraft/world/level/levelgen/feature/configurations/TreeConfiguration/foliagePlacer +FD: net/minecraft/world/level/levelgen/feature/configurations/TreeConfiguration/f_68190_ net/minecraft/world/level/levelgen/feature/configurations/TreeConfiguration/trunkPlacer +FD: net/minecraft/world/level/levelgen/feature/configurations/TreeConfiguration/f_68191_ net/minecraft/world/level/levelgen/feature/configurations/TreeConfiguration/minimumSize +FD: net/minecraft/world/level/levelgen/feature/configurations/TreeConfiguration/f_68193_ net/minecraft/world/level/levelgen/feature/configurations/TreeConfiguration/ignoreVines +FD: net/minecraft/world/level/levelgen/feature/configurations/TreeConfiguration$TreeConfigurationBuilder/f_161249_ net/minecraft/world/level/levelgen/feature/configurations/TreeConfiguration$TreeConfigurationBuilder/foliageProvider +FD: net/minecraft/world/level/levelgen/feature/configurations/TreeConfiguration$TreeConfigurationBuilder/f_161251_ net/minecraft/world/level/levelgen/feature/configurations/TreeConfiguration$TreeConfigurationBuilder/dirtProvider +FD: net/minecraft/world/level/levelgen/feature/configurations/TreeConfiguration$TreeConfigurationBuilder/f_161252_ net/minecraft/world/level/levelgen/feature/configurations/TreeConfiguration$TreeConfigurationBuilder/forceDirt +FD: net/minecraft/world/level/levelgen/feature/configurations/TreeConfiguration$TreeConfigurationBuilder/f_225479_ net/minecraft/world/level/levelgen/feature/configurations/TreeConfiguration$TreeConfigurationBuilder/rootPlacer +FD: net/minecraft/world/level/levelgen/feature/configurations/TreeConfiguration$TreeConfigurationBuilder/f_68229_ net/minecraft/world/level/levelgen/feature/configurations/TreeConfiguration$TreeConfigurationBuilder/trunkProvider +FD: net/minecraft/world/level/levelgen/feature/configurations/TreeConfiguration$TreeConfigurationBuilder/f_68231_ net/minecraft/world/level/levelgen/feature/configurations/TreeConfiguration$TreeConfigurationBuilder/foliagePlacer +FD: net/minecraft/world/level/levelgen/feature/configurations/TreeConfiguration$TreeConfigurationBuilder/f_68232_ net/minecraft/world/level/levelgen/feature/configurations/TreeConfiguration$TreeConfigurationBuilder/trunkPlacer +FD: net/minecraft/world/level/levelgen/feature/configurations/TreeConfiguration$TreeConfigurationBuilder/f_68233_ net/minecraft/world/level/levelgen/feature/configurations/TreeConfiguration$TreeConfigurationBuilder/minimumSize +FD: net/minecraft/world/level/levelgen/feature/configurations/TreeConfiguration$TreeConfigurationBuilder/f_68234_ net/minecraft/world/level/levelgen/feature/configurations/TreeConfiguration$TreeConfigurationBuilder/decorators +FD: net/minecraft/world/level/levelgen/feature/configurations/TreeConfiguration$TreeConfigurationBuilder/f_68236_ net/minecraft/world/level/levelgen/feature/configurations/TreeConfiguration$TreeConfigurationBuilder/ignoreVines +FD: net/minecraft/world/level/levelgen/feature/configurations/TwistingVinesConfig/f_191364_ net/minecraft/world/level/levelgen/feature/configurations/TwistingVinesConfig/CODEC +FD: net/minecraft/world/level/levelgen/feature/configurations/TwistingVinesConfig/f_191365_ net/minecraft/world/level/levelgen/feature/configurations/TwistingVinesConfig/spreadWidth +FD: net/minecraft/world/level/levelgen/feature/configurations/TwistingVinesConfig/f_191366_ net/minecraft/world/level/levelgen/feature/configurations/TwistingVinesConfig/spreadHeight +FD: net/minecraft/world/level/levelgen/feature/configurations/TwistingVinesConfig/f_191367_ net/minecraft/world/level/levelgen/feature/configurations/TwistingVinesConfig/maxHeight +FD: net/minecraft/world/level/levelgen/feature/configurations/UnderwaterMagmaConfiguration/f_161263_ net/minecraft/world/level/levelgen/feature/configurations/UnderwaterMagmaConfiguration/CODEC +FD: net/minecraft/world/level/levelgen/feature/configurations/UnderwaterMagmaConfiguration/f_161264_ net/minecraft/world/level/levelgen/feature/configurations/UnderwaterMagmaConfiguration/floorSearchRange +FD: net/minecraft/world/level/levelgen/feature/configurations/UnderwaterMagmaConfiguration/f_161265_ net/minecraft/world/level/levelgen/feature/configurations/UnderwaterMagmaConfiguration/placementRadiusAroundFloor +FD: net/minecraft/world/level/levelgen/feature/configurations/UnderwaterMagmaConfiguration/f_161266_ net/minecraft/world/level/levelgen/feature/configurations/UnderwaterMagmaConfiguration/placementProbabilityPerValidPosition +FD: net/minecraft/world/level/levelgen/feature/configurations/VegetationPatchConfiguration/f_161280_ net/minecraft/world/level/levelgen/feature/configurations/VegetationPatchConfiguration/CODEC +FD: net/minecraft/world/level/levelgen/feature/configurations/VegetationPatchConfiguration/f_161281_ net/minecraft/world/level/levelgen/feature/configurations/VegetationPatchConfiguration/replaceable +FD: net/minecraft/world/level/levelgen/feature/configurations/VegetationPatchConfiguration/f_161282_ net/minecraft/world/level/levelgen/feature/configurations/VegetationPatchConfiguration/groundState +FD: net/minecraft/world/level/levelgen/feature/configurations/VegetationPatchConfiguration/f_161283_ net/minecraft/world/level/levelgen/feature/configurations/VegetationPatchConfiguration/vegetationFeature +FD: net/minecraft/world/level/levelgen/feature/configurations/VegetationPatchConfiguration/f_161284_ net/minecraft/world/level/levelgen/feature/configurations/VegetationPatchConfiguration/surface +FD: net/minecraft/world/level/levelgen/feature/configurations/VegetationPatchConfiguration/f_161285_ net/minecraft/world/level/levelgen/feature/configurations/VegetationPatchConfiguration/depth +FD: net/minecraft/world/level/levelgen/feature/configurations/VegetationPatchConfiguration/f_161286_ net/minecraft/world/level/levelgen/feature/configurations/VegetationPatchConfiguration/extraBottomBlockChance +FD: net/minecraft/world/level/levelgen/feature/configurations/VegetationPatchConfiguration/f_161287_ net/minecraft/world/level/levelgen/feature/configurations/VegetationPatchConfiguration/verticalRange +FD: net/minecraft/world/level/levelgen/feature/configurations/VegetationPatchConfiguration/f_161288_ net/minecraft/world/level/levelgen/feature/configurations/VegetationPatchConfiguration/vegetationChance +FD: net/minecraft/world/level/levelgen/feature/configurations/VegetationPatchConfiguration/f_161289_ net/minecraft/world/level/levelgen/feature/configurations/VegetationPatchConfiguration/xzRadius +FD: net/minecraft/world/level/levelgen/feature/configurations/VegetationPatchConfiguration/f_161290_ net/minecraft/world/level/levelgen/feature/configurations/VegetationPatchConfiguration/extraEdgeColumnChance +FD: net/minecraft/world/level/levelgen/feature/featuresize/FeatureSize/f_161325_ net/minecraft/world/level/levelgen/feature/featuresize/FeatureSize/MAX_WIDTH +FD: net/minecraft/world/level/levelgen/feature/featuresize/FeatureSize/f_68281_ net/minecraft/world/level/levelgen/feature/featuresize/FeatureSize/CODEC +FD: net/minecraft/world/level/levelgen/feature/featuresize/FeatureSize/f_68282_ net/minecraft/world/level/levelgen/feature/featuresize/FeatureSize/minClippedHeight +FD: net/minecraft/world/level/levelgen/feature/featuresize/FeatureSizeType/f_68296_ net/minecraft/world/level/levelgen/feature/featuresize/FeatureSizeType/TWO_LAYERS_FEATURE_SIZE +FD: net/minecraft/world/level/levelgen/feature/featuresize/FeatureSizeType/f_68297_ net/minecraft/world/level/levelgen/feature/featuresize/FeatureSizeType/THREE_LAYERS_FEATURE_SIZE +FD: net/minecraft/world/level/levelgen/feature/featuresize/FeatureSizeType/f_68298_ net/minecraft/world/level/levelgen/feature/featuresize/FeatureSizeType/codec +FD: net/minecraft/world/level/levelgen/feature/featuresize/ThreeLayersFeatureSize/f_68306_ net/minecraft/world/level/levelgen/feature/featuresize/ThreeLayersFeatureSize/CODEC +FD: net/minecraft/world/level/levelgen/feature/featuresize/ThreeLayersFeatureSize/f_68307_ net/minecraft/world/level/levelgen/feature/featuresize/ThreeLayersFeatureSize/limit +FD: net/minecraft/world/level/levelgen/feature/featuresize/ThreeLayersFeatureSize/f_68308_ net/minecraft/world/level/levelgen/feature/featuresize/ThreeLayersFeatureSize/upperLimit +FD: net/minecraft/world/level/levelgen/feature/featuresize/ThreeLayersFeatureSize/f_68309_ net/minecraft/world/level/levelgen/feature/featuresize/ThreeLayersFeatureSize/lowerSize +FD: net/minecraft/world/level/levelgen/feature/featuresize/ThreeLayersFeatureSize/f_68310_ net/minecraft/world/level/levelgen/feature/featuresize/ThreeLayersFeatureSize/middleSize +FD: net/minecraft/world/level/levelgen/feature/featuresize/ThreeLayersFeatureSize/f_68311_ net/minecraft/world/level/levelgen/feature/featuresize/ThreeLayersFeatureSize/upperSize +FD: net/minecraft/world/level/levelgen/feature/featuresize/TwoLayersFeatureSize/f_68336_ net/minecraft/world/level/levelgen/feature/featuresize/TwoLayersFeatureSize/CODEC +FD: net/minecraft/world/level/levelgen/feature/featuresize/TwoLayersFeatureSize/f_68337_ net/minecraft/world/level/levelgen/feature/featuresize/TwoLayersFeatureSize/limit +FD: net/minecraft/world/level/levelgen/feature/featuresize/TwoLayersFeatureSize/f_68338_ net/minecraft/world/level/levelgen/feature/featuresize/TwoLayersFeatureSize/lowerSize +FD: net/minecraft/world/level/levelgen/feature/featuresize/TwoLayersFeatureSize/f_68339_ net/minecraft/world/level/levelgen/feature/featuresize/TwoLayersFeatureSize/upperSize +FD: net/minecraft/world/level/levelgen/feature/foliageplacers/AcaciaFoliagePlacer/f_68362_ net/minecraft/world/level/levelgen/feature/foliageplacers/AcaciaFoliagePlacer/CODEC +FD: net/minecraft/world/level/levelgen/feature/foliageplacers/BlobFoliagePlacer/f_68392_ net/minecraft/world/level/levelgen/feature/foliageplacers/BlobFoliagePlacer/CODEC +FD: net/minecraft/world/level/levelgen/feature/foliageplacers/BlobFoliagePlacer/f_68393_ net/minecraft/world/level/levelgen/feature/foliageplacers/BlobFoliagePlacer/height +FD: net/minecraft/world/level/levelgen/feature/foliageplacers/BushFoliagePlacer/f_68428_ net/minecraft/world/level/levelgen/feature/foliageplacers/BushFoliagePlacer/CODEC +FD: net/minecraft/world/level/levelgen/feature/foliageplacers/CherryFoliagePlacer/f_271102_ net/minecraft/world/level/levelgen/feature/foliageplacers/CherryFoliagePlacer/height +FD: net/minecraft/world/level/levelgen/feature/foliageplacers/CherryFoliagePlacer/f_271143_ net/minecraft/world/level/levelgen/feature/foliageplacers/CherryFoliagePlacer/hangingLeavesChance +FD: net/minecraft/world/level/levelgen/feature/foliageplacers/CherryFoliagePlacer/f_271179_ net/minecraft/world/level/levelgen/feature/foliageplacers/CherryFoliagePlacer/wideBottomLayerHoleChance +FD: net/minecraft/world/level/levelgen/feature/foliageplacers/CherryFoliagePlacer/f_271259_ net/minecraft/world/level/levelgen/feature/foliageplacers/CherryFoliagePlacer/CODEC +FD: net/minecraft/world/level/levelgen/feature/foliageplacers/CherryFoliagePlacer/f_271392_ net/minecraft/world/level/levelgen/feature/foliageplacers/CherryFoliagePlacer/cornerHoleChance +FD: net/minecraft/world/level/levelgen/feature/foliageplacers/CherryFoliagePlacer/f_271510_ net/minecraft/world/level/levelgen/feature/foliageplacers/CherryFoliagePlacer/hangingLeavesExtensionChance +FD: net/minecraft/world/level/levelgen/feature/foliageplacers/DarkOakFoliagePlacer/f_68455_ net/minecraft/world/level/levelgen/feature/foliageplacers/DarkOakFoliagePlacer/CODEC +FD: net/minecraft/world/level/levelgen/feature/foliageplacers/FancyFoliagePlacer/f_68492_ net/minecraft/world/level/levelgen/feature/foliageplacers/FancyFoliagePlacer/CODEC +FD: net/minecraft/world/level/levelgen/feature/foliageplacers/FoliagePlacer/f_68519_ net/minecraft/world/level/levelgen/feature/foliageplacers/FoliagePlacer/CODEC +FD: net/minecraft/world/level/levelgen/feature/foliageplacers/FoliagePlacer/f_68520_ net/minecraft/world/level/levelgen/feature/foliageplacers/FoliagePlacer/radius +FD: net/minecraft/world/level/levelgen/feature/foliageplacers/FoliagePlacer/f_68521_ net/minecraft/world/level/levelgen/feature/foliageplacers/FoliagePlacer/offset +FD: net/minecraft/world/level/levelgen/feature/foliageplacers/FoliagePlacer$FoliageAttachment/f_161450_ net/minecraft/world/level/levelgen/feature/foliageplacers/FoliagePlacer$FoliageAttachment/pos +FD: net/minecraft/world/level/levelgen/feature/foliageplacers/FoliagePlacer$FoliageAttachment/f_68582_ net/minecraft/world/level/levelgen/feature/foliageplacers/FoliagePlacer$FoliageAttachment/radiusOffset +FD: net/minecraft/world/level/levelgen/feature/foliageplacers/FoliagePlacer$FoliageAttachment/f_68583_ net/minecraft/world/level/levelgen/feature/foliageplacers/FoliagePlacer$FoliageAttachment/doubleTrunk +FD: net/minecraft/world/level/levelgen/feature/foliageplacers/FoliagePlacerType/f_161452_ net/minecraft/world/level/levelgen/feature/foliageplacers/FoliagePlacerType/RANDOM_SPREAD_FOLIAGE_PLACER +FD: net/minecraft/world/level/levelgen/feature/foliageplacers/FoliagePlacerType/f_271376_ net/minecraft/world/level/levelgen/feature/foliageplacers/FoliagePlacerType/CHERRY_FOLIAGE_PLACER +FD: net/minecraft/world/level/levelgen/feature/foliageplacers/FoliagePlacerType/f_68591_ net/minecraft/world/level/levelgen/feature/foliageplacers/FoliagePlacerType/BLOB_FOLIAGE_PLACER +FD: net/minecraft/world/level/levelgen/feature/foliageplacers/FoliagePlacerType/f_68592_ net/minecraft/world/level/levelgen/feature/foliageplacers/FoliagePlacerType/SPRUCE_FOLIAGE_PLACER +FD: net/minecraft/world/level/levelgen/feature/foliageplacers/FoliagePlacerType/f_68593_ net/minecraft/world/level/levelgen/feature/foliageplacers/FoliagePlacerType/PINE_FOLIAGE_PLACER +FD: net/minecraft/world/level/levelgen/feature/foliageplacers/FoliagePlacerType/f_68594_ net/minecraft/world/level/levelgen/feature/foliageplacers/FoliagePlacerType/ACACIA_FOLIAGE_PLACER +FD: net/minecraft/world/level/levelgen/feature/foliageplacers/FoliagePlacerType/f_68595_ net/minecraft/world/level/levelgen/feature/foliageplacers/FoliagePlacerType/BUSH_FOLIAGE_PLACER +FD: net/minecraft/world/level/levelgen/feature/foliageplacers/FoliagePlacerType/f_68596_ net/minecraft/world/level/levelgen/feature/foliageplacers/FoliagePlacerType/FANCY_FOLIAGE_PLACER +FD: net/minecraft/world/level/levelgen/feature/foliageplacers/FoliagePlacerType/f_68597_ net/minecraft/world/level/levelgen/feature/foliageplacers/FoliagePlacerType/MEGA_JUNGLE_FOLIAGE_PLACER +FD: net/minecraft/world/level/levelgen/feature/foliageplacers/FoliagePlacerType/f_68598_ net/minecraft/world/level/levelgen/feature/foliageplacers/FoliagePlacerType/MEGA_PINE_FOLIAGE_PLACER +FD: net/minecraft/world/level/levelgen/feature/foliageplacers/FoliagePlacerType/f_68599_ net/minecraft/world/level/levelgen/feature/foliageplacers/FoliagePlacerType/DARK_OAK_FOLIAGE_PLACER +FD: net/minecraft/world/level/levelgen/feature/foliageplacers/FoliagePlacerType/f_68600_ net/minecraft/world/level/levelgen/feature/foliageplacers/FoliagePlacerType/codec +FD: net/minecraft/world/level/levelgen/feature/foliageplacers/MegaJungleFoliagePlacer/f_68608_ net/minecraft/world/level/levelgen/feature/foliageplacers/MegaJungleFoliagePlacer/CODEC +FD: net/minecraft/world/level/levelgen/feature/foliageplacers/MegaJungleFoliagePlacer/f_68609_ net/minecraft/world/level/levelgen/feature/foliageplacers/MegaJungleFoliagePlacer/height +FD: net/minecraft/world/level/levelgen/feature/foliageplacers/MegaPineFoliagePlacer/f_68642_ net/minecraft/world/level/levelgen/feature/foliageplacers/MegaPineFoliagePlacer/CODEC +FD: net/minecraft/world/level/levelgen/feature/foliageplacers/MegaPineFoliagePlacer/f_68643_ net/minecraft/world/level/levelgen/feature/foliageplacers/MegaPineFoliagePlacer/crownHeight +FD: net/minecraft/world/level/levelgen/feature/foliageplacers/PineFoliagePlacer/f_68676_ net/minecraft/world/level/levelgen/feature/foliageplacers/PineFoliagePlacer/CODEC +FD: net/minecraft/world/level/levelgen/feature/foliageplacers/PineFoliagePlacer/f_68677_ net/minecraft/world/level/levelgen/feature/foliageplacers/PineFoliagePlacer/height +FD: net/minecraft/world/level/levelgen/feature/foliageplacers/RandomSpreadFoliagePlacer/f_161501_ net/minecraft/world/level/levelgen/feature/foliageplacers/RandomSpreadFoliagePlacer/CODEC +FD: net/minecraft/world/level/levelgen/feature/foliageplacers/RandomSpreadFoliagePlacer/f_161502_ net/minecraft/world/level/levelgen/feature/foliageplacers/RandomSpreadFoliagePlacer/foliageHeight +FD: net/minecraft/world/level/levelgen/feature/foliageplacers/RandomSpreadFoliagePlacer/f_161503_ net/minecraft/world/level/levelgen/feature/foliageplacers/RandomSpreadFoliagePlacer/leafPlacementAttempts +FD: net/minecraft/world/level/levelgen/feature/foliageplacers/SpruceFoliagePlacer/f_68713_ net/minecraft/world/level/levelgen/feature/foliageplacers/SpruceFoliagePlacer/CODEC +FD: net/minecraft/world/level/levelgen/feature/foliageplacers/SpruceFoliagePlacer/f_68714_ net/minecraft/world/level/levelgen/feature/foliageplacers/SpruceFoliagePlacer/trunkHeight +FD: net/minecraft/world/level/levelgen/feature/rootplacers/AboveRootPlacement/f_225753_ net/minecraft/world/level/levelgen/feature/rootplacers/AboveRootPlacement/CODEC +FD: net/minecraft/world/level/levelgen/feature/rootplacers/AboveRootPlacement/f_225754_ net/minecraft/world/level/levelgen/feature/rootplacers/AboveRootPlacement/aboveRootProvider +FD: net/minecraft/world/level/levelgen/feature/rootplacers/AboveRootPlacement/f_225755_ net/minecraft/world/level/levelgen/feature/rootplacers/AboveRootPlacement/aboveRootPlacementChance +FD: net/minecraft/world/level/levelgen/feature/rootplacers/MangroveRootPlacement/f_225772_ net/minecraft/world/level/levelgen/feature/rootplacers/MangroveRootPlacement/CODEC +FD: net/minecraft/world/level/levelgen/feature/rootplacers/MangroveRootPlacement/f_225773_ net/minecraft/world/level/levelgen/feature/rootplacers/MangroveRootPlacement/canGrowThrough +FD: net/minecraft/world/level/levelgen/feature/rootplacers/MangroveRootPlacement/f_225774_ net/minecraft/world/level/levelgen/feature/rootplacers/MangroveRootPlacement/muddyRootsIn +FD: net/minecraft/world/level/levelgen/feature/rootplacers/MangroveRootPlacement/f_225775_ net/minecraft/world/level/levelgen/feature/rootplacers/MangroveRootPlacement/muddyRootsProvider +FD: net/minecraft/world/level/levelgen/feature/rootplacers/MangroveRootPlacement/f_225776_ net/minecraft/world/level/levelgen/feature/rootplacers/MangroveRootPlacement/maxRootWidth +FD: net/minecraft/world/level/levelgen/feature/rootplacers/MangroveRootPlacement/f_225777_ net/minecraft/world/level/levelgen/feature/rootplacers/MangroveRootPlacement/maxRootLength +FD: net/minecraft/world/level/levelgen/feature/rootplacers/MangroveRootPlacement/f_225778_ net/minecraft/world/level/levelgen/feature/rootplacers/MangroveRootPlacement/randomSkewChance +FD: net/minecraft/world/level/levelgen/feature/rootplacers/MangroveRootPlacer/f_225811_ net/minecraft/world/level/levelgen/feature/rootplacers/MangroveRootPlacer/ROOT_WIDTH_LIMIT +FD: net/minecraft/world/level/levelgen/feature/rootplacers/MangroveRootPlacer/f_225812_ net/minecraft/world/level/levelgen/feature/rootplacers/MangroveRootPlacer/ROOT_LENGTH_LIMIT +FD: net/minecraft/world/level/levelgen/feature/rootplacers/MangroveRootPlacer/f_225813_ net/minecraft/world/level/levelgen/feature/rootplacers/MangroveRootPlacer/CODEC +FD: net/minecraft/world/level/levelgen/feature/rootplacers/MangroveRootPlacer/f_225814_ net/minecraft/world/level/levelgen/feature/rootplacers/MangroveRootPlacer/mangroveRootPlacement +FD: net/minecraft/world/level/levelgen/feature/rootplacers/RootPlacer/f_225859_ net/minecraft/world/level/levelgen/feature/rootplacers/RootPlacer/CODEC +FD: net/minecraft/world/level/levelgen/feature/rootplacers/RootPlacer/f_225860_ net/minecraft/world/level/levelgen/feature/rootplacers/RootPlacer/trunkOffsetY +FD: net/minecraft/world/level/levelgen/feature/rootplacers/RootPlacer/f_225861_ net/minecraft/world/level/levelgen/feature/rootplacers/RootPlacer/rootProvider +FD: net/minecraft/world/level/levelgen/feature/rootplacers/RootPlacer/f_225862_ net/minecraft/world/level/levelgen/feature/rootplacers/RootPlacer/aboveRootPlacement +FD: net/minecraft/world/level/levelgen/feature/rootplacers/RootPlacerType/f_225898_ net/minecraft/world/level/levelgen/feature/rootplacers/RootPlacerType/MANGROVE_ROOT_PLACER +FD: net/minecraft/world/level/levelgen/feature/rootplacers/RootPlacerType/f_225899_ net/minecraft/world/level/levelgen/feature/rootplacers/RootPlacerType/codec +FD: net/minecraft/world/level/levelgen/feature/stateproviders/BlockStateProvider/f_68747_ net/minecraft/world/level/levelgen/feature/stateproviders/BlockStateProvider/CODEC +FD: net/minecraft/world/level/levelgen/feature/stateproviders/BlockStateProviderType/f_161554_ net/minecraft/world/level/levelgen/feature/stateproviders/BlockStateProviderType/RANDOMIZED_INT_STATE_PROVIDER +FD: net/minecraft/world/level/levelgen/feature/stateproviders/BlockStateProviderType/f_191386_ net/minecraft/world/level/levelgen/feature/stateproviders/BlockStateProviderType/NOISE_THRESHOLD_PROVIDER +FD: net/minecraft/world/level/levelgen/feature/stateproviders/BlockStateProviderType/f_191387_ net/minecraft/world/level/levelgen/feature/stateproviders/BlockStateProviderType/NOISE_PROVIDER +FD: net/minecraft/world/level/levelgen/feature/stateproviders/BlockStateProviderType/f_191388_ net/minecraft/world/level/levelgen/feature/stateproviders/BlockStateProviderType/DUAL_NOISE_PROVIDER +FD: net/minecraft/world/level/levelgen/feature/stateproviders/BlockStateProviderType/f_68752_ net/minecraft/world/level/levelgen/feature/stateproviders/BlockStateProviderType/SIMPLE_STATE_PROVIDER +FD: net/minecraft/world/level/levelgen/feature/stateproviders/BlockStateProviderType/f_68753_ net/minecraft/world/level/levelgen/feature/stateproviders/BlockStateProviderType/WEIGHTED_STATE_PROVIDER +FD: net/minecraft/world/level/levelgen/feature/stateproviders/BlockStateProviderType/f_68756_ net/minecraft/world/level/levelgen/feature/stateproviders/BlockStateProviderType/ROTATED_BLOCK_PROVIDER +FD: net/minecraft/world/level/levelgen/feature/stateproviders/BlockStateProviderType/f_68757_ net/minecraft/world/level/levelgen/feature/stateproviders/BlockStateProviderType/codec +FD: net/minecraft/world/level/levelgen/feature/stateproviders/DualNoiseProvider/f_191389_ net/minecraft/world/level/levelgen/feature/stateproviders/DualNoiseProvider/CODEC +FD: net/minecraft/world/level/levelgen/feature/stateproviders/DualNoiseProvider/f_191390_ net/minecraft/world/level/levelgen/feature/stateproviders/DualNoiseProvider/variety +FD: net/minecraft/world/level/levelgen/feature/stateproviders/DualNoiseProvider/f_191391_ net/minecraft/world/level/levelgen/feature/stateproviders/DualNoiseProvider/slowNoiseParameters +FD: net/minecraft/world/level/levelgen/feature/stateproviders/DualNoiseProvider/f_191392_ net/minecraft/world/level/levelgen/feature/stateproviders/DualNoiseProvider/slowScale +FD: net/minecraft/world/level/levelgen/feature/stateproviders/DualNoiseProvider/f_191393_ net/minecraft/world/level/levelgen/feature/stateproviders/DualNoiseProvider/slowNoise +FD: net/minecraft/world/level/levelgen/feature/stateproviders/NoiseBasedStateProvider/f_191417_ net/minecraft/world/level/levelgen/feature/stateproviders/NoiseBasedStateProvider/seed +FD: net/minecraft/world/level/levelgen/feature/stateproviders/NoiseBasedStateProvider/f_191418_ net/minecraft/world/level/levelgen/feature/stateproviders/NoiseBasedStateProvider/parameters +FD: net/minecraft/world/level/levelgen/feature/stateproviders/NoiseBasedStateProvider/f_191419_ net/minecraft/world/level/levelgen/feature/stateproviders/NoiseBasedStateProvider/scale +FD: net/minecraft/world/level/levelgen/feature/stateproviders/NoiseBasedStateProvider/f_191420_ net/minecraft/world/level/levelgen/feature/stateproviders/NoiseBasedStateProvider/noise +FD: net/minecraft/world/level/levelgen/feature/stateproviders/NoiseProvider/f_191438_ net/minecraft/world/level/levelgen/feature/stateproviders/NoiseProvider/CODEC +FD: net/minecraft/world/level/levelgen/feature/stateproviders/NoiseProvider/f_191439_ net/minecraft/world/level/levelgen/feature/stateproviders/NoiseProvider/states +FD: net/minecraft/world/level/levelgen/feature/stateproviders/NoiseThresholdProvider/f_191463_ net/minecraft/world/level/levelgen/feature/stateproviders/NoiseThresholdProvider/CODEC +FD: net/minecraft/world/level/levelgen/feature/stateproviders/NoiseThresholdProvider/f_191464_ net/minecraft/world/level/levelgen/feature/stateproviders/NoiseThresholdProvider/threshold +FD: net/minecraft/world/level/levelgen/feature/stateproviders/NoiseThresholdProvider/f_191465_ net/minecraft/world/level/levelgen/feature/stateproviders/NoiseThresholdProvider/highChance +FD: net/minecraft/world/level/levelgen/feature/stateproviders/NoiseThresholdProvider/f_191466_ net/minecraft/world/level/levelgen/feature/stateproviders/NoiseThresholdProvider/defaultState +FD: net/minecraft/world/level/levelgen/feature/stateproviders/NoiseThresholdProvider/f_191467_ net/minecraft/world/level/levelgen/feature/stateproviders/NoiseThresholdProvider/lowStates +FD: net/minecraft/world/level/levelgen/feature/stateproviders/NoiseThresholdProvider/f_191468_ net/minecraft/world/level/levelgen/feature/stateproviders/NoiseThresholdProvider/highStates +FD: net/minecraft/world/level/levelgen/feature/stateproviders/RandomizedIntStateProvider/f_161555_ net/minecraft/world/level/levelgen/feature/stateproviders/RandomizedIntStateProvider/CODEC +FD: net/minecraft/world/level/levelgen/feature/stateproviders/RandomizedIntStateProvider/f_161556_ net/minecraft/world/level/levelgen/feature/stateproviders/RandomizedIntStateProvider/source +FD: net/minecraft/world/level/levelgen/feature/stateproviders/RandomizedIntStateProvider/f_161557_ net/minecraft/world/level/levelgen/feature/stateproviders/RandomizedIntStateProvider/propertyName +FD: net/minecraft/world/level/levelgen/feature/stateproviders/RandomizedIntStateProvider/f_161558_ net/minecraft/world/level/levelgen/feature/stateproviders/RandomizedIntStateProvider/property +FD: net/minecraft/world/level/levelgen/feature/stateproviders/RandomizedIntStateProvider/f_161559_ net/minecraft/world/level/levelgen/feature/stateproviders/RandomizedIntStateProvider/values +FD: net/minecraft/world/level/levelgen/feature/stateproviders/RotatedBlockProvider/f_68786_ net/minecraft/world/level/levelgen/feature/stateproviders/RotatedBlockProvider/CODEC +FD: net/minecraft/world/level/levelgen/feature/stateproviders/RotatedBlockProvider/f_68787_ net/minecraft/world/level/levelgen/feature/stateproviders/RotatedBlockProvider/block +FD: net/minecraft/world/level/levelgen/feature/stateproviders/RuleBasedBlockStateProvider/f_225924_ net/minecraft/world/level/levelgen/feature/stateproviders/RuleBasedBlockStateProvider/CODEC +FD: net/minecraft/world/level/levelgen/feature/stateproviders/RuleBasedBlockStateProvider/f_225925_ net/minecraft/world/level/levelgen/feature/stateproviders/RuleBasedBlockStateProvider/fallback +FD: net/minecraft/world/level/levelgen/feature/stateproviders/RuleBasedBlockStateProvider/f_225926_ net/minecraft/world/level/levelgen/feature/stateproviders/RuleBasedBlockStateProvider/rules +FD: net/minecraft/world/level/levelgen/feature/stateproviders/RuleBasedBlockStateProvider$Rule/f_225947_ net/minecraft/world/level/levelgen/feature/stateproviders/RuleBasedBlockStateProvider$Rule/CODEC +FD: net/minecraft/world/level/levelgen/feature/stateproviders/RuleBasedBlockStateProvider$Rule/f_225948_ net/minecraft/world/level/levelgen/feature/stateproviders/RuleBasedBlockStateProvider$Rule/ifTrue +FD: net/minecraft/world/level/levelgen/feature/stateproviders/RuleBasedBlockStateProvider$Rule/f_225949_ net/minecraft/world/level/levelgen/feature/stateproviders/RuleBasedBlockStateProvider$Rule/then +FD: net/minecraft/world/level/levelgen/feature/stateproviders/SimpleStateProvider/f_68797_ net/minecraft/world/level/levelgen/feature/stateproviders/SimpleStateProvider/CODEC +FD: net/minecraft/world/level/levelgen/feature/stateproviders/SimpleStateProvider/f_68798_ net/minecraft/world/level/levelgen/feature/stateproviders/SimpleStateProvider/state +FD: net/minecraft/world/level/levelgen/feature/stateproviders/WeightedStateProvider/f_68808_ net/minecraft/world/level/levelgen/feature/stateproviders/WeightedStateProvider/CODEC +FD: net/minecraft/world/level/levelgen/feature/stateproviders/WeightedStateProvider/f_68809_ net/minecraft/world/level/levelgen/feature/stateproviders/WeightedStateProvider/weightedList +FD: net/minecraft/world/level/levelgen/feature/treedecorators/AlterGroundDecorator/f_69302_ net/minecraft/world/level/levelgen/feature/treedecorators/AlterGroundDecorator/CODEC +FD: net/minecraft/world/level/levelgen/feature/treedecorators/AlterGroundDecorator/f_69303_ net/minecraft/world/level/levelgen/feature/treedecorators/AlterGroundDecorator/provider +FD: net/minecraft/world/level/levelgen/feature/treedecorators/AttachedToLeavesDecorator/f_225979_ net/minecraft/world/level/levelgen/feature/treedecorators/AttachedToLeavesDecorator/CODEC +FD: net/minecraft/world/level/levelgen/feature/treedecorators/AttachedToLeavesDecorator/f_225980_ net/minecraft/world/level/levelgen/feature/treedecorators/AttachedToLeavesDecorator/probability +FD: net/minecraft/world/level/levelgen/feature/treedecorators/AttachedToLeavesDecorator/f_225981_ net/minecraft/world/level/levelgen/feature/treedecorators/AttachedToLeavesDecorator/exclusionRadiusXZ +FD: net/minecraft/world/level/levelgen/feature/treedecorators/AttachedToLeavesDecorator/f_225982_ net/minecraft/world/level/levelgen/feature/treedecorators/AttachedToLeavesDecorator/exclusionRadiusY +FD: net/minecraft/world/level/levelgen/feature/treedecorators/AttachedToLeavesDecorator/f_225983_ net/minecraft/world/level/levelgen/feature/treedecorators/AttachedToLeavesDecorator/blockProvider +FD: net/minecraft/world/level/levelgen/feature/treedecorators/AttachedToLeavesDecorator/f_225984_ net/minecraft/world/level/levelgen/feature/treedecorators/AttachedToLeavesDecorator/requiredEmptyBlocks +FD: net/minecraft/world/level/levelgen/feature/treedecorators/AttachedToLeavesDecorator/f_225985_ net/minecraft/world/level/levelgen/feature/treedecorators/AttachedToLeavesDecorator/directions +FD: net/minecraft/world/level/levelgen/feature/treedecorators/BeehiveDecorator/f_202294_ net/minecraft/world/level/levelgen/feature/treedecorators/BeehiveDecorator/WORLDGEN_FACING +FD: net/minecraft/world/level/levelgen/feature/treedecorators/BeehiveDecorator/f_202295_ net/minecraft/world/level/levelgen/feature/treedecorators/BeehiveDecorator/SPAWN_DIRECTIONS +FD: net/minecraft/world/level/levelgen/feature/treedecorators/BeehiveDecorator/f_69954_ net/minecraft/world/level/levelgen/feature/treedecorators/BeehiveDecorator/CODEC +FD: net/minecraft/world/level/levelgen/feature/treedecorators/BeehiveDecorator/f_69955_ net/minecraft/world/level/levelgen/feature/treedecorators/BeehiveDecorator/probability +FD: net/minecraft/world/level/levelgen/feature/treedecorators/CocoaDecorator/f_69972_ net/minecraft/world/level/levelgen/feature/treedecorators/CocoaDecorator/CODEC +FD: net/minecraft/world/level/levelgen/feature/treedecorators/CocoaDecorator/f_69973_ net/minecraft/world/level/levelgen/feature/treedecorators/CocoaDecorator/probability +FD: net/minecraft/world/level/levelgen/feature/treedecorators/LeaveVineDecorator/f_226029_ net/minecraft/world/level/levelgen/feature/treedecorators/LeaveVineDecorator/probability +FD: net/minecraft/world/level/levelgen/feature/treedecorators/LeaveVineDecorator/f_69996_ net/minecraft/world/level/levelgen/feature/treedecorators/LeaveVineDecorator/CODEC +FD: net/minecraft/world/level/levelgen/feature/treedecorators/TreeDecorator/f_70021_ net/minecraft/world/level/levelgen/feature/treedecorators/TreeDecorator/CODEC +FD: net/minecraft/world/level/levelgen/feature/treedecorators/TreeDecorator$Context/f_226045_ net/minecraft/world/level/levelgen/feature/treedecorators/TreeDecorator$Context/level +FD: net/minecraft/world/level/levelgen/feature/treedecorators/TreeDecorator$Context/f_226046_ net/minecraft/world/level/levelgen/feature/treedecorators/TreeDecorator$Context/decorationSetter +FD: net/minecraft/world/level/levelgen/feature/treedecorators/TreeDecorator$Context/f_226047_ net/minecraft/world/level/levelgen/feature/treedecorators/TreeDecorator$Context/random +FD: net/minecraft/world/level/levelgen/feature/treedecorators/TreeDecorator$Context/f_226048_ net/minecraft/world/level/levelgen/feature/treedecorators/TreeDecorator$Context/logs +FD: net/minecraft/world/level/levelgen/feature/treedecorators/TreeDecorator$Context/f_226049_ net/minecraft/world/level/levelgen/feature/treedecorators/TreeDecorator$Context/leaves +FD: net/minecraft/world/level/levelgen/feature/treedecorators/TreeDecorator$Context/f_226050_ net/minecraft/world/level/levelgen/feature/treedecorators/TreeDecorator$Context/roots +FD: net/minecraft/world/level/levelgen/feature/treedecorators/TreeDecoratorType/f_226071_ net/minecraft/world/level/levelgen/feature/treedecorators/TreeDecoratorType/ATTACHED_TO_LEAVES +FD: net/minecraft/world/level/levelgen/feature/treedecorators/TreeDecoratorType/f_70042_ net/minecraft/world/level/levelgen/feature/treedecorators/TreeDecoratorType/TRUNK_VINE +FD: net/minecraft/world/level/levelgen/feature/treedecorators/TreeDecoratorType/f_70043_ net/minecraft/world/level/levelgen/feature/treedecorators/TreeDecoratorType/LEAVE_VINE +FD: net/minecraft/world/level/levelgen/feature/treedecorators/TreeDecoratorType/f_70044_ net/minecraft/world/level/levelgen/feature/treedecorators/TreeDecoratorType/COCOA +FD: net/minecraft/world/level/levelgen/feature/treedecorators/TreeDecoratorType/f_70045_ net/minecraft/world/level/levelgen/feature/treedecorators/TreeDecoratorType/BEEHIVE +FD: net/minecraft/world/level/levelgen/feature/treedecorators/TreeDecoratorType/f_70046_ net/minecraft/world/level/levelgen/feature/treedecorators/TreeDecoratorType/ALTER_GROUND +FD: net/minecraft/world/level/levelgen/feature/treedecorators/TreeDecoratorType/f_70047_ net/minecraft/world/level/levelgen/feature/treedecorators/TreeDecoratorType/codec +FD: net/minecraft/world/level/levelgen/feature/treedecorators/TrunkVineDecorator/f_70055_ net/minecraft/world/level/levelgen/feature/treedecorators/TrunkVineDecorator/CODEC +FD: net/minecraft/world/level/levelgen/feature/treedecorators/TrunkVineDecorator/f_70056_ net/minecraft/world/level/levelgen/feature/treedecorators/TrunkVineDecorator/INSTANCE +FD: net/minecraft/world/level/levelgen/feature/trunkplacers/BendingTrunkPlacer/f_161765_ net/minecraft/world/level/levelgen/feature/trunkplacers/BendingTrunkPlacer/CODEC +FD: net/minecraft/world/level/levelgen/feature/trunkplacers/BendingTrunkPlacer/f_161766_ net/minecraft/world/level/levelgen/feature/trunkplacers/BendingTrunkPlacer/minHeightForLeaves +FD: net/minecraft/world/level/levelgen/feature/trunkplacers/BendingTrunkPlacer/f_161767_ net/minecraft/world/level/levelgen/feature/trunkplacers/BendingTrunkPlacer/bendLength +FD: net/minecraft/world/level/levelgen/feature/trunkplacers/CherryTrunkPlacer/f_271123_ net/minecraft/world/level/levelgen/feature/trunkplacers/CherryTrunkPlacer/branchEndOffsetFromTop +FD: net/minecraft/world/level/levelgen/feature/trunkplacers/CherryTrunkPlacer/f_271342_ net/minecraft/world/level/levelgen/feature/trunkplacers/CherryTrunkPlacer/branchCount +FD: net/minecraft/world/level/levelgen/feature/trunkplacers/CherryTrunkPlacer/f_271384_ net/minecraft/world/level/levelgen/feature/trunkplacers/CherryTrunkPlacer/branchHorizontalLength +FD: net/minecraft/world/level/levelgen/feature/trunkplacers/CherryTrunkPlacer/f_271407_ net/minecraft/world/level/levelgen/feature/trunkplacers/CherryTrunkPlacer/secondBranchStartOffsetFromTop +FD: net/minecraft/world/level/levelgen/feature/trunkplacers/CherryTrunkPlacer/f_271464_ net/minecraft/world/level/levelgen/feature/trunkplacers/CherryTrunkPlacer/BRANCH_START_CODEC +FD: net/minecraft/world/level/levelgen/feature/trunkplacers/CherryTrunkPlacer/f_271473_ net/minecraft/world/level/levelgen/feature/trunkplacers/CherryTrunkPlacer/branchStartOffsetFromTop +FD: net/minecraft/world/level/levelgen/feature/trunkplacers/CherryTrunkPlacer/f_271475_ net/minecraft/world/level/levelgen/feature/trunkplacers/CherryTrunkPlacer/CODEC +FD: net/minecraft/world/level/levelgen/feature/trunkplacers/DarkOakTrunkPlacer/f_70074_ net/minecraft/world/level/levelgen/feature/trunkplacers/DarkOakTrunkPlacer/CODEC +FD: net/minecraft/world/level/levelgen/feature/trunkplacers/FancyTrunkPlacer/f_161796_ net/minecraft/world/level/levelgen/feature/trunkplacers/FancyTrunkPlacer/TRUNK_HEIGHT_SCALE +FD: net/minecraft/world/level/levelgen/feature/trunkplacers/FancyTrunkPlacer/f_161797_ net/minecraft/world/level/levelgen/feature/trunkplacers/FancyTrunkPlacer/CLUSTER_DENSITY_MAGIC +FD: net/minecraft/world/level/levelgen/feature/trunkplacers/FancyTrunkPlacer/f_161798_ net/minecraft/world/level/levelgen/feature/trunkplacers/FancyTrunkPlacer/BRANCH_SLOPE +FD: net/minecraft/world/level/levelgen/feature/trunkplacers/FancyTrunkPlacer/f_161799_ net/minecraft/world/level/levelgen/feature/trunkplacers/FancyTrunkPlacer/BRANCH_LENGTH_MAGIC +FD: net/minecraft/world/level/levelgen/feature/trunkplacers/FancyTrunkPlacer/f_70091_ net/minecraft/world/level/levelgen/feature/trunkplacers/FancyTrunkPlacer/CODEC +FD: net/minecraft/world/level/levelgen/feature/trunkplacers/FancyTrunkPlacer$FoliageCoords/f_70137_ net/minecraft/world/level/levelgen/feature/trunkplacers/FancyTrunkPlacer$FoliageCoords/attachment +FD: net/minecraft/world/level/levelgen/feature/trunkplacers/FancyTrunkPlacer$FoliageCoords/f_70138_ net/minecraft/world/level/levelgen/feature/trunkplacers/FancyTrunkPlacer$FoliageCoords/branchBase +FD: net/minecraft/world/level/levelgen/feature/trunkplacers/ForkingTrunkPlacer/f_70145_ net/minecraft/world/level/levelgen/feature/trunkplacers/ForkingTrunkPlacer/CODEC +FD: net/minecraft/world/level/levelgen/feature/trunkplacers/GiantTrunkPlacer/f_70162_ net/minecraft/world/level/levelgen/feature/trunkplacers/GiantTrunkPlacer/CODEC +FD: net/minecraft/world/level/levelgen/feature/trunkplacers/MegaJungleTrunkPlacer/f_70190_ net/minecraft/world/level/levelgen/feature/trunkplacers/MegaJungleTrunkPlacer/CODEC +FD: net/minecraft/world/level/levelgen/feature/trunkplacers/StraightTrunkPlacer/f_70245_ net/minecraft/world/level/levelgen/feature/trunkplacers/StraightTrunkPlacer/CODEC +FD: net/minecraft/world/level/levelgen/feature/trunkplacers/TrunkPlacer/f_161865_ net/minecraft/world/level/levelgen/feature/trunkplacers/TrunkPlacer/MAX_BASE_HEIGHT +FD: net/minecraft/world/level/levelgen/feature/trunkplacers/TrunkPlacer/f_161866_ net/minecraft/world/level/levelgen/feature/trunkplacers/TrunkPlacer/MAX_RAND +FD: net/minecraft/world/level/levelgen/feature/trunkplacers/TrunkPlacer/f_161867_ net/minecraft/world/level/levelgen/feature/trunkplacers/TrunkPlacer/MAX_HEIGHT +FD: net/minecraft/world/level/levelgen/feature/trunkplacers/TrunkPlacer/f_70262_ net/minecraft/world/level/levelgen/feature/trunkplacers/TrunkPlacer/CODEC +FD: net/minecraft/world/level/levelgen/feature/trunkplacers/TrunkPlacer/f_70263_ net/minecraft/world/level/levelgen/feature/trunkplacers/TrunkPlacer/baseHeight +FD: net/minecraft/world/level/levelgen/feature/trunkplacers/TrunkPlacer/f_70264_ net/minecraft/world/level/levelgen/feature/trunkplacers/TrunkPlacer/heightRandA +FD: net/minecraft/world/level/levelgen/feature/trunkplacers/TrunkPlacer/f_70265_ net/minecraft/world/level/levelgen/feature/trunkplacers/TrunkPlacer/heightRandB +FD: net/minecraft/world/level/levelgen/feature/trunkplacers/TrunkPlacerType/f_161899_ net/minecraft/world/level/levelgen/feature/trunkplacers/TrunkPlacerType/BENDING_TRUNK_PLACER +FD: net/minecraft/world/level/levelgen/feature/trunkplacers/TrunkPlacerType/f_226193_ net/minecraft/world/level/levelgen/feature/trunkplacers/TrunkPlacerType/UPWARDS_BRANCHING_TRUNK_PLACER +FD: net/minecraft/world/level/levelgen/feature/trunkplacers/TrunkPlacerType/f_271399_ net/minecraft/world/level/levelgen/feature/trunkplacers/TrunkPlacerType/CHERRY_TRUNK_PLACER +FD: net/minecraft/world/level/levelgen/feature/trunkplacers/TrunkPlacerType/f_70315_ net/minecraft/world/level/levelgen/feature/trunkplacers/TrunkPlacerType/STRAIGHT_TRUNK_PLACER +FD: net/minecraft/world/level/levelgen/feature/trunkplacers/TrunkPlacerType/f_70316_ net/minecraft/world/level/levelgen/feature/trunkplacers/TrunkPlacerType/FORKING_TRUNK_PLACER +FD: net/minecraft/world/level/levelgen/feature/trunkplacers/TrunkPlacerType/f_70317_ net/minecraft/world/level/levelgen/feature/trunkplacers/TrunkPlacerType/GIANT_TRUNK_PLACER +FD: net/minecraft/world/level/levelgen/feature/trunkplacers/TrunkPlacerType/f_70318_ net/minecraft/world/level/levelgen/feature/trunkplacers/TrunkPlacerType/MEGA_JUNGLE_TRUNK_PLACER +FD: net/minecraft/world/level/levelgen/feature/trunkplacers/TrunkPlacerType/f_70319_ net/minecraft/world/level/levelgen/feature/trunkplacers/TrunkPlacerType/DARK_OAK_TRUNK_PLACER +FD: net/minecraft/world/level/levelgen/feature/trunkplacers/TrunkPlacerType/f_70320_ net/minecraft/world/level/levelgen/feature/trunkplacers/TrunkPlacerType/FANCY_TRUNK_PLACER +FD: net/minecraft/world/level/levelgen/feature/trunkplacers/TrunkPlacerType/f_70321_ net/minecraft/world/level/levelgen/feature/trunkplacers/TrunkPlacerType/codec +FD: net/minecraft/world/level/levelgen/feature/trunkplacers/UpwardsBranchingTrunkPlacer/f_226194_ net/minecraft/world/level/levelgen/feature/trunkplacers/UpwardsBranchingTrunkPlacer/CODEC +FD: net/minecraft/world/level/levelgen/feature/trunkplacers/UpwardsBranchingTrunkPlacer/f_226195_ net/minecraft/world/level/levelgen/feature/trunkplacers/UpwardsBranchingTrunkPlacer/extraBranchSteps +FD: net/minecraft/world/level/levelgen/feature/trunkplacers/UpwardsBranchingTrunkPlacer/f_226196_ net/minecraft/world/level/levelgen/feature/trunkplacers/UpwardsBranchingTrunkPlacer/placeBranchPerLogProbability +FD: net/minecraft/world/level/levelgen/feature/trunkplacers/UpwardsBranchingTrunkPlacer/f_226197_ net/minecraft/world/level/levelgen/feature/trunkplacers/UpwardsBranchingTrunkPlacer/extraBranchLength +FD: net/minecraft/world/level/levelgen/feature/trunkplacers/UpwardsBranchingTrunkPlacer/f_226198_ net/minecraft/world/level/levelgen/feature/trunkplacers/UpwardsBranchingTrunkPlacer/canGrowThrough +FD: net/minecraft/world/level/levelgen/flat/FlatLayerInfo/f_161900_ net/minecraft/world/level/levelgen/flat/FlatLayerInfo/block +FD: net/minecraft/world/level/levelgen/flat/FlatLayerInfo/f_70329_ net/minecraft/world/level/levelgen/flat/FlatLayerInfo/CODEC +FD: net/minecraft/world/level/levelgen/flat/FlatLayerInfo/f_70331_ net/minecraft/world/level/levelgen/flat/FlatLayerInfo/height +FD: net/minecraft/world/level/levelgen/flat/FlatLevelGeneratorPreset/f_226243_ net/minecraft/world/level/levelgen/flat/FlatLevelGeneratorPreset/DIRECT_CODEC +FD: net/minecraft/world/level/levelgen/flat/FlatLevelGeneratorPreset/f_226244_ net/minecraft/world/level/levelgen/flat/FlatLevelGeneratorPreset/CODEC +FD: net/minecraft/world/level/levelgen/flat/FlatLevelGeneratorPreset/f_226245_ net/minecraft/world/level/levelgen/flat/FlatLevelGeneratorPreset/displayItem +FD: net/minecraft/world/level/levelgen/flat/FlatLevelGeneratorPreset/f_226246_ net/minecraft/world/level/levelgen/flat/FlatLevelGeneratorPreset/settings +FD: net/minecraft/world/level/levelgen/flat/FlatLevelGeneratorPresets/f_226263_ net/minecraft/world/level/levelgen/flat/FlatLevelGeneratorPresets/CLASSIC_FLAT +FD: net/minecraft/world/level/levelgen/flat/FlatLevelGeneratorPresets/f_226264_ net/minecraft/world/level/levelgen/flat/FlatLevelGeneratorPresets/TUNNELERS_DREAM +FD: net/minecraft/world/level/levelgen/flat/FlatLevelGeneratorPresets/f_226265_ net/minecraft/world/level/levelgen/flat/FlatLevelGeneratorPresets/WATER_WORLD +FD: net/minecraft/world/level/levelgen/flat/FlatLevelGeneratorPresets/f_226266_ net/minecraft/world/level/levelgen/flat/FlatLevelGeneratorPresets/OVERWORLD +FD: net/minecraft/world/level/levelgen/flat/FlatLevelGeneratorPresets/f_226267_ net/minecraft/world/level/levelgen/flat/FlatLevelGeneratorPresets/SNOWY_KINGDOM +FD: net/minecraft/world/level/levelgen/flat/FlatLevelGeneratorPresets/f_226268_ net/minecraft/world/level/levelgen/flat/FlatLevelGeneratorPresets/BOTTOMLESS_PIT +FD: net/minecraft/world/level/levelgen/flat/FlatLevelGeneratorPresets/f_226269_ net/minecraft/world/level/levelgen/flat/FlatLevelGeneratorPresets/DESERT +FD: net/minecraft/world/level/levelgen/flat/FlatLevelGeneratorPresets/f_226270_ net/minecraft/world/level/levelgen/flat/FlatLevelGeneratorPresets/REDSTONE_READY +FD: net/minecraft/world/level/levelgen/flat/FlatLevelGeneratorPresets/f_226271_ net/minecraft/world/level/levelgen/flat/FlatLevelGeneratorPresets/THE_VOID +FD: net/minecraft/world/level/levelgen/flat/FlatLevelGeneratorPresets$Bootstrap/f_254741_ net/minecraft/world/level/levelgen/flat/FlatLevelGeneratorPresets$Bootstrap/context +FD: net/minecraft/world/level/levelgen/flat/FlatLevelGeneratorSettings/f_209788_ net/minecraft/world/level/levelgen/flat/FlatLevelGeneratorSettings/structureOverrides +FD: net/minecraft/world/level/levelgen/flat/FlatLevelGeneratorSettings/f_254642_ net/minecraft/world/level/levelgen/flat/FlatLevelGeneratorSettings/lakes +FD: net/minecraft/world/level/levelgen/flat/FlatLevelGeneratorSettings/f_70347_ net/minecraft/world/level/levelgen/flat/FlatLevelGeneratorSettings/CODEC +FD: net/minecraft/world/level/levelgen/flat/FlatLevelGeneratorSettings/f_70348_ net/minecraft/world/level/levelgen/flat/FlatLevelGeneratorSettings/LOGGER +FD: net/minecraft/world/level/levelgen/flat/FlatLevelGeneratorSettings/f_70352_ net/minecraft/world/level/levelgen/flat/FlatLevelGeneratorSettings/layersInfo +FD: net/minecraft/world/level/levelgen/flat/FlatLevelGeneratorSettings/f_70353_ net/minecraft/world/level/levelgen/flat/FlatLevelGeneratorSettings/biome +FD: net/minecraft/world/level/levelgen/flat/FlatLevelGeneratorSettings/f_70354_ net/minecraft/world/level/levelgen/flat/FlatLevelGeneratorSettings/layers +FD: net/minecraft/world/level/levelgen/flat/FlatLevelGeneratorSettings/f_70355_ net/minecraft/world/level/levelgen/flat/FlatLevelGeneratorSettings/voidGen +FD: net/minecraft/world/level/levelgen/flat/FlatLevelGeneratorSettings/f_70356_ net/minecraft/world/level/levelgen/flat/FlatLevelGeneratorSettings/decoration +FD: net/minecraft/world/level/levelgen/flat/FlatLevelGeneratorSettings/f_70357_ net/minecraft/world/level/levelgen/flat/FlatLevelGeneratorSettings/addLakes +FD: net/minecraft/world/level/levelgen/heightproviders/BiasedToBottomHeight/f_161918_ net/minecraft/world/level/levelgen/heightproviders/BiasedToBottomHeight/CODEC +FD: net/minecraft/world/level/levelgen/heightproviders/BiasedToBottomHeight/f_161919_ net/minecraft/world/level/levelgen/heightproviders/BiasedToBottomHeight/LOGGER +FD: net/minecraft/world/level/levelgen/heightproviders/BiasedToBottomHeight/f_161920_ net/minecraft/world/level/levelgen/heightproviders/BiasedToBottomHeight/minInclusive +FD: net/minecraft/world/level/levelgen/heightproviders/BiasedToBottomHeight/f_161921_ net/minecraft/world/level/levelgen/heightproviders/BiasedToBottomHeight/maxInclusive +FD: net/minecraft/world/level/levelgen/heightproviders/BiasedToBottomHeight/f_161922_ net/minecraft/world/level/levelgen/heightproviders/BiasedToBottomHeight/inner +FD: net/minecraft/world/level/levelgen/heightproviders/ConstantHeight/f_161945_ net/minecraft/world/level/levelgen/heightproviders/ConstantHeight/ZERO +FD: net/minecraft/world/level/levelgen/heightproviders/ConstantHeight/f_161946_ net/minecraft/world/level/levelgen/heightproviders/ConstantHeight/CODEC +FD: net/minecraft/world/level/levelgen/heightproviders/ConstantHeight/f_161947_ net/minecraft/world/level/levelgen/heightproviders/ConstantHeight/value +FD: net/minecraft/world/level/levelgen/heightproviders/HeightProvider/f_161969_ net/minecraft/world/level/levelgen/heightproviders/HeightProvider/CONSTANT_OR_DISPATCH_CODEC +FD: net/minecraft/world/level/levelgen/heightproviders/HeightProvider/f_161970_ net/minecraft/world/level/levelgen/heightproviders/HeightProvider/CODEC +FD: net/minecraft/world/level/levelgen/heightproviders/HeightProviderType/f_161981_ net/minecraft/world/level/levelgen/heightproviders/HeightProviderType/CONSTANT +FD: net/minecraft/world/level/levelgen/heightproviders/HeightProviderType/f_161982_ net/minecraft/world/level/levelgen/heightproviders/HeightProviderType/UNIFORM +FD: net/minecraft/world/level/levelgen/heightproviders/HeightProviderType/f_161983_ net/minecraft/world/level/levelgen/heightproviders/HeightProviderType/BIASED_TO_BOTTOM +FD: net/minecraft/world/level/levelgen/heightproviders/HeightProviderType/f_161984_ net/minecraft/world/level/levelgen/heightproviders/HeightProviderType/VERY_BIASED_TO_BOTTOM +FD: net/minecraft/world/level/levelgen/heightproviders/HeightProviderType/f_161985_ net/minecraft/world/level/levelgen/heightproviders/HeightProviderType/TRAPEZOID +FD: net/minecraft/world/level/levelgen/heightproviders/HeightProviderType/f_191531_ net/minecraft/world/level/levelgen/heightproviders/HeightProviderType/WEIGHTED_LIST +FD: net/minecraft/world/level/levelgen/heightproviders/TrapezoidHeight/f_161993_ net/minecraft/world/level/levelgen/heightproviders/TrapezoidHeight/CODEC +FD: net/minecraft/world/level/levelgen/heightproviders/TrapezoidHeight/f_161994_ net/minecraft/world/level/levelgen/heightproviders/TrapezoidHeight/LOGGER +FD: net/minecraft/world/level/levelgen/heightproviders/TrapezoidHeight/f_161995_ net/minecraft/world/level/levelgen/heightproviders/TrapezoidHeight/minInclusive +FD: net/minecraft/world/level/levelgen/heightproviders/TrapezoidHeight/f_161996_ net/minecraft/world/level/levelgen/heightproviders/TrapezoidHeight/maxInclusive +FD: net/minecraft/world/level/levelgen/heightproviders/TrapezoidHeight/f_161997_ net/minecraft/world/level/levelgen/heightproviders/TrapezoidHeight/plateau +FD: net/minecraft/world/level/levelgen/heightproviders/UniformHeight/f_162023_ net/minecraft/world/level/levelgen/heightproviders/UniformHeight/CODEC +FD: net/minecraft/world/level/levelgen/heightproviders/UniformHeight/f_162024_ net/minecraft/world/level/levelgen/heightproviders/UniformHeight/LOGGER +FD: net/minecraft/world/level/levelgen/heightproviders/UniformHeight/f_162025_ net/minecraft/world/level/levelgen/heightproviders/UniformHeight/minInclusive +FD: net/minecraft/world/level/levelgen/heightproviders/UniformHeight/f_162026_ net/minecraft/world/level/levelgen/heightproviders/UniformHeight/maxInclusive +FD: net/minecraft/world/level/levelgen/heightproviders/UniformHeight/f_198374_ net/minecraft/world/level/levelgen/heightproviders/UniformHeight/warnedFor +FD: net/minecraft/world/level/levelgen/heightproviders/VeryBiasedToBottomHeight/f_162045_ net/minecraft/world/level/levelgen/heightproviders/VeryBiasedToBottomHeight/CODEC +FD: net/minecraft/world/level/levelgen/heightproviders/VeryBiasedToBottomHeight/f_162046_ net/minecraft/world/level/levelgen/heightproviders/VeryBiasedToBottomHeight/LOGGER +FD: net/minecraft/world/level/levelgen/heightproviders/VeryBiasedToBottomHeight/f_162047_ net/minecraft/world/level/levelgen/heightproviders/VeryBiasedToBottomHeight/minInclusive +FD: net/minecraft/world/level/levelgen/heightproviders/VeryBiasedToBottomHeight/f_162048_ net/minecraft/world/level/levelgen/heightproviders/VeryBiasedToBottomHeight/maxInclusive +FD: net/minecraft/world/level/levelgen/heightproviders/VeryBiasedToBottomHeight/f_162049_ net/minecraft/world/level/levelgen/heightproviders/VeryBiasedToBottomHeight/inner +FD: net/minecraft/world/level/levelgen/heightproviders/WeightedListHeight/f_191532_ net/minecraft/world/level/levelgen/heightproviders/WeightedListHeight/CODEC +FD: net/minecraft/world/level/levelgen/heightproviders/WeightedListHeight/f_191533_ net/minecraft/world/level/levelgen/heightproviders/WeightedListHeight/distribution +FD: net/minecraft/world/level/levelgen/material/MaterialRuleList/f_191545_ net/minecraft/world/level/levelgen/material/MaterialRuleList/materialRuleList +FD: net/minecraft/world/level/levelgen/placement/BiomeFilter/f_191557_ net/minecraft/world/level/levelgen/placement/BiomeFilter/CODEC +FD: net/minecraft/world/level/levelgen/placement/BiomeFilter/f_191558_ net/minecraft/world/level/levelgen/placement/BiomeFilter/INSTANCE +FD: net/minecraft/world/level/levelgen/placement/BlockPredicateFilter/f_191569_ net/minecraft/world/level/levelgen/placement/BlockPredicateFilter/CODEC +FD: net/minecraft/world/level/levelgen/placement/BlockPredicateFilter/f_191570_ net/minecraft/world/level/levelgen/placement/BlockPredicateFilter/predicate +FD: net/minecraft/world/level/levelgen/placement/CarvingMaskPlacement/f_191585_ net/minecraft/world/level/levelgen/placement/CarvingMaskPlacement/CODEC +FD: net/minecraft/world/level/levelgen/placement/CarvingMaskPlacement/f_191586_ net/minecraft/world/level/levelgen/placement/CarvingMaskPlacement/step +FD: net/minecraft/world/level/levelgen/placement/CaveSurface/$VALUES net/minecraft/world/level/levelgen/placement/CaveSurface/$VALUES +FD: net/minecraft/world/level/levelgen/placement/CaveSurface/CEILING net/minecraft/world/level/levelgen/placement/CaveSurface/CEILING +FD: net/minecraft/world/level/levelgen/placement/CaveSurface/FLOOR net/minecraft/world/level/levelgen/placement/CaveSurface/FLOOR +FD: net/minecraft/world/level/levelgen/placement/CaveSurface/f_162094_ net/minecraft/world/level/levelgen/placement/CaveSurface/CODEC +FD: net/minecraft/world/level/levelgen/placement/CaveSurface/f_162095_ net/minecraft/world/level/levelgen/placement/CaveSurface/direction +FD: net/minecraft/world/level/levelgen/placement/CaveSurface/f_162096_ net/minecraft/world/level/levelgen/placement/CaveSurface/y +FD: net/minecraft/world/level/levelgen/placement/CaveSurface/f_162097_ net/minecraft/world/level/levelgen/placement/CaveSurface/id +FD: net/minecraft/world/level/levelgen/placement/CountOnEveryLayerPlacement/f_191599_ net/minecraft/world/level/levelgen/placement/CountOnEveryLayerPlacement/CODEC +FD: net/minecraft/world/level/levelgen/placement/CountOnEveryLayerPlacement/f_191600_ net/minecraft/world/level/levelgen/placement/CountOnEveryLayerPlacement/count +FD: net/minecraft/world/level/levelgen/placement/CountPlacement/f_191623_ net/minecraft/world/level/levelgen/placement/CountPlacement/CODEC +FD: net/minecraft/world/level/levelgen/placement/CountPlacement/f_191624_ net/minecraft/world/level/levelgen/placement/CountPlacement/count +FD: net/minecraft/world/level/levelgen/placement/EnvironmentScanPlacement/f_191638_ net/minecraft/world/level/levelgen/placement/EnvironmentScanPlacement/CODEC +FD: net/minecraft/world/level/levelgen/placement/EnvironmentScanPlacement/f_191639_ net/minecraft/world/level/levelgen/placement/EnvironmentScanPlacement/directionOfSearch +FD: net/minecraft/world/level/levelgen/placement/EnvironmentScanPlacement/f_191640_ net/minecraft/world/level/levelgen/placement/EnvironmentScanPlacement/targetCondition +FD: net/minecraft/world/level/levelgen/placement/EnvironmentScanPlacement/f_191641_ net/minecraft/world/level/levelgen/placement/EnvironmentScanPlacement/allowedSearchCondition +FD: net/minecraft/world/level/levelgen/placement/EnvironmentScanPlacement/f_191642_ net/minecraft/world/level/levelgen/placement/EnvironmentScanPlacement/maxSteps +FD: net/minecraft/world/level/levelgen/placement/HeightRangePlacement/f_191673_ net/minecraft/world/level/levelgen/placement/HeightRangePlacement/CODEC +FD: net/minecraft/world/level/levelgen/placement/HeightRangePlacement/f_191674_ net/minecraft/world/level/levelgen/placement/HeightRangePlacement/height +FD: net/minecraft/world/level/levelgen/placement/HeightmapPlacement/f_191695_ net/minecraft/world/level/levelgen/placement/HeightmapPlacement/CODEC +FD: net/minecraft/world/level/levelgen/placement/HeightmapPlacement/f_191696_ net/minecraft/world/level/levelgen/placement/HeightmapPlacement/heightmap +FD: net/minecraft/world/level/levelgen/placement/InSquarePlacement/f_191711_ net/minecraft/world/level/levelgen/placement/InSquarePlacement/CODEC +FD: net/minecraft/world/level/levelgen/placement/InSquarePlacement/f_191712_ net/minecraft/world/level/levelgen/placement/InSquarePlacement/INSTANCE +FD: net/minecraft/world/level/levelgen/placement/NoiseBasedCountPlacement/f_191722_ net/minecraft/world/level/levelgen/placement/NoiseBasedCountPlacement/CODEC +FD: net/minecraft/world/level/levelgen/placement/NoiseBasedCountPlacement/f_191723_ net/minecraft/world/level/levelgen/placement/NoiseBasedCountPlacement/noiseToCountRatio +FD: net/minecraft/world/level/levelgen/placement/NoiseBasedCountPlacement/f_191724_ net/minecraft/world/level/levelgen/placement/NoiseBasedCountPlacement/noiseFactor +FD: net/minecraft/world/level/levelgen/placement/NoiseBasedCountPlacement/f_191725_ net/minecraft/world/level/levelgen/placement/NoiseBasedCountPlacement/noiseOffset +FD: net/minecraft/world/level/levelgen/placement/NoiseThresholdCountPlacement/f_191747_ net/minecraft/world/level/levelgen/placement/NoiseThresholdCountPlacement/CODEC +FD: net/minecraft/world/level/levelgen/placement/NoiseThresholdCountPlacement/f_191748_ net/minecraft/world/level/levelgen/placement/NoiseThresholdCountPlacement/noiseLevel +FD: net/minecraft/world/level/levelgen/placement/NoiseThresholdCountPlacement/f_191749_ net/minecraft/world/level/levelgen/placement/NoiseThresholdCountPlacement/belowNoise +FD: net/minecraft/world/level/levelgen/placement/NoiseThresholdCountPlacement/f_191750_ net/minecraft/world/level/levelgen/placement/NoiseThresholdCountPlacement/aboveNoise +FD: net/minecraft/world/level/levelgen/placement/PlacedFeature/f_191772_ net/minecraft/world/level/levelgen/placement/PlacedFeature/DIRECT_CODEC +FD: net/minecraft/world/level/levelgen/placement/PlacedFeature/f_191773_ net/minecraft/world/level/levelgen/placement/PlacedFeature/CODEC +FD: net/minecraft/world/level/levelgen/placement/PlacedFeature/f_191774_ net/minecraft/world/level/levelgen/placement/PlacedFeature/LIST_CODEC +FD: net/minecraft/world/level/levelgen/placement/PlacedFeature/f_191775_ net/minecraft/world/level/levelgen/placement/PlacedFeature/feature +FD: net/minecraft/world/level/levelgen/placement/PlacedFeature/f_191776_ net/minecraft/world/level/levelgen/placement/PlacedFeature/placement +FD: net/minecraft/world/level/levelgen/placement/PlacedFeature/f_204922_ net/minecraft/world/level/levelgen/placement/PlacedFeature/LIST_OF_LISTS_CODEC +FD: net/minecraft/world/level/levelgen/placement/PlacementContext/f_191814_ net/minecraft/world/level/levelgen/placement/PlacementContext/level +FD: net/minecraft/world/level/levelgen/placement/PlacementContext/f_191815_ net/minecraft/world/level/levelgen/placement/PlacementContext/generator +FD: net/minecraft/world/level/levelgen/placement/PlacementContext/f_191816_ net/minecraft/world/level/levelgen/placement/PlacementContext/topFeature +FD: net/minecraft/world/level/levelgen/placement/PlacementModifier/f_191842_ net/minecraft/world/level/levelgen/placement/PlacementModifier/CODEC +FD: net/minecraft/world/level/levelgen/placement/PlacementModifierType/f_191848_ net/minecraft/world/level/levelgen/placement/PlacementModifierType/BLOCK_PREDICATE_FILTER +FD: net/minecraft/world/level/levelgen/placement/PlacementModifierType/f_191849_ net/minecraft/world/level/levelgen/placement/PlacementModifierType/RARITY_FILTER +FD: net/minecraft/world/level/levelgen/placement/PlacementModifierType/f_191850_ net/minecraft/world/level/levelgen/placement/PlacementModifierType/SURFACE_RELATIVE_THRESHOLD_FILTER +FD: net/minecraft/world/level/levelgen/placement/PlacementModifierType/f_191851_ net/minecraft/world/level/levelgen/placement/PlacementModifierType/SURFACE_WATER_DEPTH_FILTER +FD: net/minecraft/world/level/levelgen/placement/PlacementModifierType/f_191852_ net/minecraft/world/level/levelgen/placement/PlacementModifierType/BIOME_FILTER +FD: net/minecraft/world/level/levelgen/placement/PlacementModifierType/f_191853_ net/minecraft/world/level/levelgen/placement/PlacementModifierType/COUNT +FD: net/minecraft/world/level/levelgen/placement/PlacementModifierType/f_191854_ net/minecraft/world/level/levelgen/placement/PlacementModifierType/NOISE_BASED_COUNT +FD: net/minecraft/world/level/levelgen/placement/PlacementModifierType/f_191855_ net/minecraft/world/level/levelgen/placement/PlacementModifierType/NOISE_THRESHOLD_COUNT +FD: net/minecraft/world/level/levelgen/placement/PlacementModifierType/f_191856_ net/minecraft/world/level/levelgen/placement/PlacementModifierType/COUNT_ON_EVERY_LAYER +FD: net/minecraft/world/level/levelgen/placement/PlacementModifierType/f_191857_ net/minecraft/world/level/levelgen/placement/PlacementModifierType/ENVIRONMENT_SCAN +FD: net/minecraft/world/level/levelgen/placement/PlacementModifierType/f_191858_ net/minecraft/world/level/levelgen/placement/PlacementModifierType/HEIGHTMAP +FD: net/minecraft/world/level/levelgen/placement/PlacementModifierType/f_191859_ net/minecraft/world/level/levelgen/placement/PlacementModifierType/HEIGHT_RANGE +FD: net/minecraft/world/level/levelgen/placement/PlacementModifierType/f_191860_ net/minecraft/world/level/levelgen/placement/PlacementModifierType/IN_SQUARE +FD: net/minecraft/world/level/levelgen/placement/PlacementModifierType/f_191861_ net/minecraft/world/level/levelgen/placement/PlacementModifierType/RANDOM_OFFSET +FD: net/minecraft/world/level/levelgen/placement/PlacementModifierType/f_191862_ net/minecraft/world/level/levelgen/placement/PlacementModifierType/CARVING_MASK_PLACEMENT +FD: net/minecraft/world/level/levelgen/placement/RandomOffsetPlacement/f_191870_ net/minecraft/world/level/levelgen/placement/RandomOffsetPlacement/CODEC +FD: net/minecraft/world/level/levelgen/placement/RandomOffsetPlacement/f_191871_ net/minecraft/world/level/levelgen/placement/RandomOffsetPlacement/xzSpread +FD: net/minecraft/world/level/levelgen/placement/RandomOffsetPlacement/f_191872_ net/minecraft/world/level/levelgen/placement/RandomOffsetPlacement/ySpread +FD: net/minecraft/world/level/levelgen/placement/RarityFilter/f_191895_ net/minecraft/world/level/levelgen/placement/RarityFilter/CODEC +FD: net/minecraft/world/level/levelgen/placement/RarityFilter/f_191896_ net/minecraft/world/level/levelgen/placement/RarityFilter/chance +FD: net/minecraft/world/level/levelgen/placement/SurfaceRelativeThresholdFilter/f_191919_ net/minecraft/world/level/levelgen/placement/SurfaceRelativeThresholdFilter/CODEC +FD: net/minecraft/world/level/levelgen/placement/SurfaceRelativeThresholdFilter/f_191920_ net/minecraft/world/level/levelgen/placement/SurfaceRelativeThresholdFilter/heightmap +FD: net/minecraft/world/level/levelgen/placement/SurfaceRelativeThresholdFilter/f_191921_ net/minecraft/world/level/levelgen/placement/SurfaceRelativeThresholdFilter/minInclusive +FD: net/minecraft/world/level/levelgen/placement/SurfaceRelativeThresholdFilter/f_191922_ net/minecraft/world/level/levelgen/placement/SurfaceRelativeThresholdFilter/maxInclusive +FD: net/minecraft/world/level/levelgen/placement/SurfaceWaterDepthFilter/f_191945_ net/minecraft/world/level/levelgen/placement/SurfaceWaterDepthFilter/CODEC +FD: net/minecraft/world/level/levelgen/placement/SurfaceWaterDepthFilter/f_191946_ net/minecraft/world/level/levelgen/placement/SurfaceWaterDepthFilter/maxWaterDepth +FD: net/minecraft/world/level/levelgen/presets/WorldPreset/f_226414_ net/minecraft/world/level/levelgen/presets/WorldPreset/DIRECT_CODEC +FD: net/minecraft/world/level/levelgen/presets/WorldPreset/f_226415_ net/minecraft/world/level/levelgen/presets/WorldPreset/CODEC +FD: net/minecraft/world/level/levelgen/presets/WorldPreset/f_226416_ net/minecraft/world/level/levelgen/presets/WorldPreset/dimensions +FD: net/minecraft/world/level/levelgen/presets/WorldPresets/f_226437_ net/minecraft/world/level/levelgen/presets/WorldPresets/NORMAL +FD: net/minecraft/world/level/levelgen/presets/WorldPresets/f_226438_ net/minecraft/world/level/levelgen/presets/WorldPresets/FLAT +FD: net/minecraft/world/level/levelgen/presets/WorldPresets/f_226439_ net/minecraft/world/level/levelgen/presets/WorldPresets/LARGE_BIOMES +FD: net/minecraft/world/level/levelgen/presets/WorldPresets/f_226440_ net/minecraft/world/level/levelgen/presets/WorldPresets/AMPLIFIED +FD: net/minecraft/world/level/levelgen/presets/WorldPresets/f_226441_ net/minecraft/world/level/levelgen/presets/WorldPresets/SINGLE_BIOME_SURFACE +FD: net/minecraft/world/level/levelgen/presets/WorldPresets/f_226442_ net/minecraft/world/level/levelgen/presets/WorldPresets/DEBUG +FD: net/minecraft/world/level/levelgen/presets/WorldPresets$Bootstrap/f_226467_ net/minecraft/world/level/levelgen/presets/WorldPresets$Bootstrap/biomes +FD: net/minecraft/world/level/levelgen/presets/WorldPresets$Bootstrap/f_226468_ net/minecraft/world/level/levelgen/presets/WorldPresets$Bootstrap/structureSets +FD: net/minecraft/world/level/levelgen/presets/WorldPresets$Bootstrap/f_226469_ net/minecraft/world/level/levelgen/presets/WorldPresets$Bootstrap/noiseSettings +FD: net/minecraft/world/level/levelgen/presets/WorldPresets$Bootstrap/f_226471_ net/minecraft/world/level/levelgen/presets/WorldPresets$Bootstrap/overworldDimensionType +FD: net/minecraft/world/level/levelgen/presets/WorldPresets$Bootstrap/f_226474_ net/minecraft/world/level/levelgen/presets/WorldPresets$Bootstrap/netherStem +FD: net/minecraft/world/level/levelgen/presets/WorldPresets$Bootstrap/f_226477_ net/minecraft/world/level/levelgen/presets/WorldPresets$Bootstrap/endStem +FD: net/minecraft/world/level/levelgen/presets/WorldPresets$Bootstrap/f_254745_ net/minecraft/world/level/levelgen/presets/WorldPresets$Bootstrap/context +FD: net/minecraft/world/level/levelgen/presets/WorldPresets$Bootstrap/f_254750_ net/minecraft/world/level/levelgen/presets/WorldPresets$Bootstrap/placedFeatures +FD: net/minecraft/world/level/levelgen/presets/WorldPresets$Bootstrap/f_273886_ net/minecraft/world/level/levelgen/presets/WorldPresets$Bootstrap/multiNoiseBiomeSourceParameterLists +FD: net/minecraft/world/level/levelgen/structure/BoundingBox/f_162354_ net/minecraft/world/level/levelgen/structure/BoundingBox/CODEC +FD: net/minecraft/world/level/levelgen/structure/BoundingBox/f_162355_ net/minecraft/world/level/levelgen/structure/BoundingBox/LOGGER +FD: net/minecraft/world/level/levelgen/structure/BoundingBox/f_162356_ net/minecraft/world/level/levelgen/structure/BoundingBox/minX +FD: net/minecraft/world/level/levelgen/structure/BoundingBox/f_162357_ net/minecraft/world/level/levelgen/structure/BoundingBox/minY +FD: net/minecraft/world/level/levelgen/structure/BoundingBox/f_162358_ net/minecraft/world/level/levelgen/structure/BoundingBox/minZ +FD: net/minecraft/world/level/levelgen/structure/BoundingBox/f_162359_ net/minecraft/world/level/levelgen/structure/BoundingBox/maxX +FD: net/minecraft/world/level/levelgen/structure/BoundingBox/f_162360_ net/minecraft/world/level/levelgen/structure/BoundingBox/maxY +FD: net/minecraft/world/level/levelgen/structure/BoundingBox/f_162361_ net/minecraft/world/level/levelgen/structure/BoundingBox/maxZ +FD: net/minecraft/world/level/levelgen/structure/BoundingBox$1/f_71062_ net/minecraft/world/level/levelgen/structure/BoundingBox$1/$SwitchMap$net$minecraft$core$Direction +FD: net/minecraft/world/level/levelgen/structure/BuiltinStructureSets/f_209820_ net/minecraft/world/level/levelgen/structure/BuiltinStructureSets/VILLAGES +FD: net/minecraft/world/level/levelgen/structure/BuiltinStructureSets/f_209821_ net/minecraft/world/level/levelgen/structure/BuiltinStructureSets/DESERT_PYRAMIDS +FD: net/minecraft/world/level/levelgen/structure/BuiltinStructureSets/f_209822_ net/minecraft/world/level/levelgen/structure/BuiltinStructureSets/IGLOOS +FD: net/minecraft/world/level/levelgen/structure/BuiltinStructureSets/f_209823_ net/minecraft/world/level/levelgen/structure/BuiltinStructureSets/JUNGLE_TEMPLES +FD: net/minecraft/world/level/levelgen/structure/BuiltinStructureSets/f_209824_ net/minecraft/world/level/levelgen/structure/BuiltinStructureSets/SWAMP_HUTS +FD: net/minecraft/world/level/levelgen/structure/BuiltinStructureSets/f_209825_ net/minecraft/world/level/levelgen/structure/BuiltinStructureSets/PILLAGER_OUTPOSTS +FD: net/minecraft/world/level/levelgen/structure/BuiltinStructureSets/f_209826_ net/minecraft/world/level/levelgen/structure/BuiltinStructureSets/OCEAN_MONUMENTS +FD: net/minecraft/world/level/levelgen/structure/BuiltinStructureSets/f_209827_ net/minecraft/world/level/levelgen/structure/BuiltinStructureSets/WOODLAND_MANSIONS +FD: net/minecraft/world/level/levelgen/structure/BuiltinStructureSets/f_209828_ net/minecraft/world/level/levelgen/structure/BuiltinStructureSets/BURIED_TREASURES +FD: net/minecraft/world/level/levelgen/structure/BuiltinStructureSets/f_209829_ net/minecraft/world/level/levelgen/structure/BuiltinStructureSets/MINESHAFTS +FD: net/minecraft/world/level/levelgen/structure/BuiltinStructureSets/f_209830_ net/minecraft/world/level/levelgen/structure/BuiltinStructureSets/RUINED_PORTALS +FD: net/minecraft/world/level/levelgen/structure/BuiltinStructureSets/f_209831_ net/minecraft/world/level/levelgen/structure/BuiltinStructureSets/SHIPWRECKS +FD: net/minecraft/world/level/levelgen/structure/BuiltinStructureSets/f_209832_ net/minecraft/world/level/levelgen/structure/BuiltinStructureSets/OCEAN_RUINS +FD: net/minecraft/world/level/levelgen/structure/BuiltinStructureSets/f_209833_ net/minecraft/world/level/levelgen/structure/BuiltinStructureSets/NETHER_COMPLEXES +FD: net/minecraft/world/level/levelgen/structure/BuiltinStructureSets/f_209834_ net/minecraft/world/level/levelgen/structure/BuiltinStructureSets/NETHER_FOSSILS +FD: net/minecraft/world/level/levelgen/structure/BuiltinStructureSets/f_209835_ net/minecraft/world/level/levelgen/structure/BuiltinStructureSets/END_CITIES +FD: net/minecraft/world/level/levelgen/structure/BuiltinStructureSets/f_209836_ net/minecraft/world/level/levelgen/structure/BuiltinStructureSets/STRONGHOLDS +FD: net/minecraft/world/level/levelgen/structure/BuiltinStructureSets/f_226491_ net/minecraft/world/level/levelgen/structure/BuiltinStructureSets/ANCIENT_CITIES +FD: net/minecraft/world/level/levelgen/structure/BuiltinStructureSets/f_276475_ net/minecraft/world/level/levelgen/structure/BuiltinStructureSets/TRAIL_RUINS +FD: net/minecraft/world/level/levelgen/structure/BuiltinStructures/f_209840_ net/minecraft/world/level/levelgen/structure/BuiltinStructures/RUINED_PORTAL_JUNGLE +FD: net/minecraft/world/level/levelgen/structure/BuiltinStructures/f_209841_ net/minecraft/world/level/levelgen/structure/BuiltinStructures/RUINED_PORTAL_SWAMP +FD: net/minecraft/world/level/levelgen/structure/BuiltinStructures/f_209842_ net/minecraft/world/level/levelgen/structure/BuiltinStructures/RUINED_PORTAL_MOUNTAIN +FD: net/minecraft/world/level/levelgen/structure/BuiltinStructures/f_209843_ net/minecraft/world/level/levelgen/structure/BuiltinStructures/RUINED_PORTAL_OCEAN +FD: net/minecraft/world/level/levelgen/structure/BuiltinStructures/f_209844_ net/minecraft/world/level/levelgen/structure/BuiltinStructures/RUINED_PORTAL_NETHER +FD: net/minecraft/world/level/levelgen/structure/BuiltinStructures/f_209845_ net/minecraft/world/level/levelgen/structure/BuiltinStructures/PILLAGER_OUTPOST +FD: net/minecraft/world/level/levelgen/structure/BuiltinStructures/f_209846_ net/minecraft/world/level/levelgen/structure/BuiltinStructures/MINESHAFT +FD: net/minecraft/world/level/levelgen/structure/BuiltinStructures/f_209847_ net/minecraft/world/level/levelgen/structure/BuiltinStructures/MINESHAFT_MESA +FD: net/minecraft/world/level/levelgen/structure/BuiltinStructures/f_209848_ net/minecraft/world/level/levelgen/structure/BuiltinStructures/WOODLAND_MANSION +FD: net/minecraft/world/level/levelgen/structure/BuiltinStructures/f_209849_ net/minecraft/world/level/levelgen/structure/BuiltinStructures/JUNGLE_TEMPLE +FD: net/minecraft/world/level/levelgen/structure/BuiltinStructures/f_209850_ net/minecraft/world/level/levelgen/structure/BuiltinStructures/DESERT_PYRAMID +FD: net/minecraft/world/level/levelgen/structure/BuiltinStructures/f_209851_ net/minecraft/world/level/levelgen/structure/BuiltinStructures/IGLOO +FD: net/minecraft/world/level/levelgen/structure/BuiltinStructures/f_209852_ net/minecraft/world/level/levelgen/structure/BuiltinStructures/SHIPWRECK +FD: net/minecraft/world/level/levelgen/structure/BuiltinStructures/f_209853_ net/minecraft/world/level/levelgen/structure/BuiltinStructures/SHIPWRECK_BEACHED +FD: net/minecraft/world/level/levelgen/structure/BuiltinStructures/f_209854_ net/minecraft/world/level/levelgen/structure/BuiltinStructures/SWAMP_HUT +FD: net/minecraft/world/level/levelgen/structure/BuiltinStructures/f_209855_ net/minecraft/world/level/levelgen/structure/BuiltinStructures/STRONGHOLD +FD: net/minecraft/world/level/levelgen/structure/BuiltinStructures/f_209856_ net/minecraft/world/level/levelgen/structure/BuiltinStructures/OCEAN_MONUMENT +FD: net/minecraft/world/level/levelgen/structure/BuiltinStructures/f_209857_ net/minecraft/world/level/levelgen/structure/BuiltinStructures/OCEAN_RUIN_COLD +FD: net/minecraft/world/level/levelgen/structure/BuiltinStructures/f_209858_ net/minecraft/world/level/levelgen/structure/BuiltinStructures/OCEAN_RUIN_WARM +FD: net/minecraft/world/level/levelgen/structure/BuiltinStructures/f_209859_ net/minecraft/world/level/levelgen/structure/BuiltinStructures/FORTRESS +FD: net/minecraft/world/level/levelgen/structure/BuiltinStructures/f_209860_ net/minecraft/world/level/levelgen/structure/BuiltinStructures/NETHER_FOSSIL +FD: net/minecraft/world/level/levelgen/structure/BuiltinStructures/f_209861_ net/minecraft/world/level/levelgen/structure/BuiltinStructures/END_CITY +FD: net/minecraft/world/level/levelgen/structure/BuiltinStructures/f_209862_ net/minecraft/world/level/levelgen/structure/BuiltinStructures/BURIED_TREASURE +FD: net/minecraft/world/level/levelgen/structure/BuiltinStructures/f_209863_ net/minecraft/world/level/levelgen/structure/BuiltinStructures/BASTION_REMNANT +FD: net/minecraft/world/level/levelgen/structure/BuiltinStructures/f_209864_ net/minecraft/world/level/levelgen/structure/BuiltinStructures/VILLAGE_PLAINS +FD: net/minecraft/world/level/levelgen/structure/BuiltinStructures/f_209865_ net/minecraft/world/level/levelgen/structure/BuiltinStructures/VILLAGE_DESERT +FD: net/minecraft/world/level/levelgen/structure/BuiltinStructures/f_209866_ net/minecraft/world/level/levelgen/structure/BuiltinStructures/VILLAGE_SAVANNA +FD: net/minecraft/world/level/levelgen/structure/BuiltinStructures/f_209867_ net/minecraft/world/level/levelgen/structure/BuiltinStructures/VILLAGE_SNOWY +FD: net/minecraft/world/level/levelgen/structure/BuiltinStructures/f_209868_ net/minecraft/world/level/levelgen/structure/BuiltinStructures/VILLAGE_TAIGA +FD: net/minecraft/world/level/levelgen/structure/BuiltinStructures/f_209869_ net/minecraft/world/level/levelgen/structure/BuiltinStructures/RUINED_PORTAL_STANDARD +FD: net/minecraft/world/level/levelgen/structure/BuiltinStructures/f_209870_ net/minecraft/world/level/levelgen/structure/BuiltinStructures/RUINED_PORTAL_DESERT +FD: net/minecraft/world/level/levelgen/structure/BuiltinStructures/f_226492_ net/minecraft/world/level/levelgen/structure/BuiltinStructures/ANCIENT_CITY +FD: net/minecraft/world/level/levelgen/structure/BuiltinStructures/f_276588_ net/minecraft/world/level/levelgen/structure/BuiltinStructures/TRAIL_RUINS +FD: net/minecraft/world/level/levelgen/structure/LegacyStructureDataHandler/f_209874_ net/minecraft/world/level/levelgen/structure/LegacyStructureDataHandler/OLD_STRUCTURE_REGISTRY_KEYS +FD: net/minecraft/world/level/levelgen/structure/LegacyStructureDataHandler/f_71299_ net/minecraft/world/level/levelgen/structure/LegacyStructureDataHandler/CURRENT_TO_LEGACY_MAP +FD: net/minecraft/world/level/levelgen/structure/LegacyStructureDataHandler/f_71300_ net/minecraft/world/level/levelgen/structure/LegacyStructureDataHandler/LEGACY_TO_CURRENT_MAP +FD: net/minecraft/world/level/levelgen/structure/LegacyStructureDataHandler/f_71301_ net/minecraft/world/level/levelgen/structure/LegacyStructureDataHandler/hasLegacyData +FD: net/minecraft/world/level/levelgen/structure/LegacyStructureDataHandler/f_71302_ net/minecraft/world/level/levelgen/structure/LegacyStructureDataHandler/dataMap +FD: net/minecraft/world/level/levelgen/structure/LegacyStructureDataHandler/f_71303_ net/minecraft/world/level/levelgen/structure/LegacyStructureDataHandler/indexMap +FD: net/minecraft/world/level/levelgen/structure/LegacyStructureDataHandler/f_71304_ net/minecraft/world/level/levelgen/structure/LegacyStructureDataHandler/legacyKeys +FD: net/minecraft/world/level/levelgen/structure/LegacyStructureDataHandler/f_71305_ net/minecraft/world/level/levelgen/structure/LegacyStructureDataHandler/currentKeys +FD: net/minecraft/world/level/levelgen/structure/PoolElementStructurePiece/f_226493_ net/minecraft/world/level/levelgen/structure/PoolElementStructurePiece/structureTemplateManager +FD: net/minecraft/world/level/levelgen/structure/PoolElementStructurePiece/f_72597_ net/minecraft/world/level/levelgen/structure/PoolElementStructurePiece/element +FD: net/minecraft/world/level/levelgen/structure/PoolElementStructurePiece/f_72598_ net/minecraft/world/level/levelgen/structure/PoolElementStructurePiece/position +FD: net/minecraft/world/level/levelgen/structure/PoolElementStructurePiece/f_72599_ net/minecraft/world/level/levelgen/structure/PoolElementStructurePiece/rotation +FD: net/minecraft/world/level/levelgen/structure/PoolElementStructurePiece/f_72600_ net/minecraft/world/level/levelgen/structure/PoolElementStructurePiece/LOGGER +FD: net/minecraft/world/level/levelgen/structure/PoolElementStructurePiece/f_72601_ net/minecraft/world/level/levelgen/structure/PoolElementStructurePiece/groundLevelDelta +FD: net/minecraft/world/level/levelgen/structure/PoolElementStructurePiece/f_72602_ net/minecraft/world/level/levelgen/structure/PoolElementStructurePiece/junctions +FD: net/minecraft/world/level/levelgen/structure/PostPlacementProcessor/f_192427_ net/minecraft/world/level/levelgen/structure/PostPlacementProcessor/NONE +FD: net/minecraft/world/level/levelgen/structure/ScatteredFeaturePiece/f_72787_ net/minecraft/world/level/levelgen/structure/ScatteredFeaturePiece/width +FD: net/minecraft/world/level/levelgen/structure/ScatteredFeaturePiece/f_72788_ net/minecraft/world/level/levelgen/structure/ScatteredFeaturePiece/height +FD: net/minecraft/world/level/levelgen/structure/ScatteredFeaturePiece/f_72789_ net/minecraft/world/level/levelgen/structure/ScatteredFeaturePiece/depth +FD: net/minecraft/world/level/levelgen/structure/ScatteredFeaturePiece/f_72790_ net/minecraft/world/level/levelgen/structure/ScatteredFeaturePiece/heightPosition +FD: net/minecraft/world/level/levelgen/structure/SinglePieceStructure/f_226533_ net/minecraft/world/level/levelgen/structure/SinglePieceStructure/constructor +FD: net/minecraft/world/level/levelgen/structure/SinglePieceStructure/f_226534_ net/minecraft/world/level/levelgen/structure/SinglePieceStructure/width +FD: net/minecraft/world/level/levelgen/structure/SinglePieceStructure/f_226535_ net/minecraft/world/level/levelgen/structure/SinglePieceStructure/depth +FD: net/minecraft/world/level/levelgen/structure/Structure/f_226553_ net/minecraft/world/level/levelgen/structure/Structure/DIRECT_CODEC +FD: net/minecraft/world/level/levelgen/structure/Structure/f_226554_ net/minecraft/world/level/levelgen/structure/Structure/CODEC +FD: net/minecraft/world/level/levelgen/structure/Structure/f_226555_ net/minecraft/world/level/levelgen/structure/Structure/settings +FD: net/minecraft/world/level/levelgen/structure/Structure$GenerationContext/f_226621_ net/minecraft/world/level/levelgen/structure/Structure$GenerationContext/registryAccess +FD: net/minecraft/world/level/levelgen/structure/Structure$GenerationContext/f_226622_ net/minecraft/world/level/levelgen/structure/Structure$GenerationContext/chunkGenerator +FD: net/minecraft/world/level/levelgen/structure/Structure$GenerationContext/f_226623_ net/minecraft/world/level/levelgen/structure/Structure$GenerationContext/biomeSource +FD: net/minecraft/world/level/levelgen/structure/Structure$GenerationContext/f_226624_ net/minecraft/world/level/levelgen/structure/Structure$GenerationContext/randomState +FD: net/minecraft/world/level/levelgen/structure/Structure$GenerationContext/f_226625_ net/minecraft/world/level/levelgen/structure/Structure$GenerationContext/structureTemplateManager +FD: net/minecraft/world/level/levelgen/structure/Structure$GenerationContext/f_226626_ net/minecraft/world/level/levelgen/structure/Structure$GenerationContext/random +FD: net/minecraft/world/level/levelgen/structure/Structure$GenerationContext/f_226627_ net/minecraft/world/level/levelgen/structure/Structure$GenerationContext/seed +FD: net/minecraft/world/level/levelgen/structure/Structure$GenerationContext/f_226628_ net/minecraft/world/level/levelgen/structure/Structure$GenerationContext/chunkPos +FD: net/minecraft/world/level/levelgen/structure/Structure$GenerationContext/f_226629_ net/minecraft/world/level/levelgen/structure/Structure$GenerationContext/heightAccessor +FD: net/minecraft/world/level/levelgen/structure/Structure$GenerationContext/f_226630_ net/minecraft/world/level/levelgen/structure/Structure$GenerationContext/validBiome +FD: net/minecraft/world/level/levelgen/structure/Structure$GenerationStub/f_226669_ net/minecraft/world/level/levelgen/structure/Structure$GenerationStub/position +FD: net/minecraft/world/level/levelgen/structure/Structure$GenerationStub/f_226670_ net/minecraft/world/level/levelgen/structure/Structure$GenerationStub/generator +FD: net/minecraft/world/level/levelgen/structure/Structure$StructureSettings/f_226688_ net/minecraft/world/level/levelgen/structure/Structure$StructureSettings/CODEC +FD: net/minecraft/world/level/levelgen/structure/Structure$StructureSettings/f_226689_ net/minecraft/world/level/levelgen/structure/Structure$StructureSettings/biomes +FD: net/minecraft/world/level/levelgen/structure/Structure$StructureSettings/f_226690_ net/minecraft/world/level/levelgen/structure/Structure$StructureSettings/spawnOverrides +FD: net/minecraft/world/level/levelgen/structure/Structure$StructureSettings/f_226691_ net/minecraft/world/level/levelgen/structure/Structure$StructureSettings/step +FD: net/minecraft/world/level/levelgen/structure/Structure$StructureSettings/f_226692_ net/minecraft/world/level/levelgen/structure/Structure$StructureSettings/terrainAdaptation +FD: net/minecraft/world/level/levelgen/structure/StructureCheck/f_197235_ net/minecraft/world/level/levelgen/structure/StructureCheck/LOGGER +FD: net/minecraft/world/level/levelgen/structure/StructureCheck/f_197236_ net/minecraft/world/level/levelgen/structure/StructureCheck/NO_STRUCTURE +FD: net/minecraft/world/level/levelgen/structure/StructureCheck/f_197237_ net/minecraft/world/level/levelgen/structure/StructureCheck/storageAccess +FD: net/minecraft/world/level/levelgen/structure/StructureCheck/f_197238_ net/minecraft/world/level/levelgen/structure/StructureCheck/registryAccess +FD: net/minecraft/world/level/levelgen/structure/StructureCheck/f_197239_ net/minecraft/world/level/levelgen/structure/StructureCheck/biomes +FD: net/minecraft/world/level/levelgen/structure/StructureCheck/f_197241_ net/minecraft/world/level/levelgen/structure/StructureCheck/dimension +FD: net/minecraft/world/level/levelgen/structure/StructureCheck/f_197242_ net/minecraft/world/level/levelgen/structure/StructureCheck/chunkGenerator +FD: net/minecraft/world/level/levelgen/structure/StructureCheck/f_197243_ net/minecraft/world/level/levelgen/structure/StructureCheck/heightAccessor +FD: net/minecraft/world/level/levelgen/structure/StructureCheck/f_197244_ net/minecraft/world/level/levelgen/structure/StructureCheck/biomeSource +FD: net/minecraft/world/level/levelgen/structure/StructureCheck/f_197245_ net/minecraft/world/level/levelgen/structure/StructureCheck/seed +FD: net/minecraft/world/level/levelgen/structure/StructureCheck/f_197246_ net/minecraft/world/level/levelgen/structure/StructureCheck/fixerUpper +FD: net/minecraft/world/level/levelgen/structure/StructureCheck/f_197247_ net/minecraft/world/level/levelgen/structure/StructureCheck/loadedChunks +FD: net/minecraft/world/level/levelgen/structure/StructureCheck/f_197248_ net/minecraft/world/level/levelgen/structure/StructureCheck/featureChecks +FD: net/minecraft/world/level/levelgen/structure/StructureCheck/f_204945_ net/minecraft/world/level/levelgen/structure/StructureCheck/structureConfigs +FD: net/minecraft/world/level/levelgen/structure/StructureCheck/f_226709_ net/minecraft/world/level/levelgen/structure/StructureCheck/structureTemplateManager +FD: net/minecraft/world/level/levelgen/structure/StructureCheck/f_226710_ net/minecraft/world/level/levelgen/structure/StructureCheck/randomState +FD: net/minecraft/world/level/levelgen/structure/StructureCheckResult/$VALUES net/minecraft/world/level/levelgen/structure/StructureCheckResult/$VALUES +FD: net/minecraft/world/level/levelgen/structure/StructureCheckResult/CHUNK_LOAD_NEEDED net/minecraft/world/level/levelgen/structure/StructureCheckResult/CHUNK_LOAD_NEEDED +FD: net/minecraft/world/level/levelgen/structure/StructureCheckResult/START_NOT_PRESENT net/minecraft/world/level/levelgen/structure/StructureCheckResult/START_NOT_PRESENT +FD: net/minecraft/world/level/levelgen/structure/StructureCheckResult/START_PRESENT net/minecraft/world/level/levelgen/structure/StructureCheckResult/START_PRESENT +FD: net/minecraft/world/level/levelgen/structure/StructureFeatureIndexSavedData/f_163528_ net/minecraft/world/level/levelgen/structure/StructureFeatureIndexSavedData/TAG_REMAINING_INDEXES +FD: net/minecraft/world/level/levelgen/structure/StructureFeatureIndexSavedData/f_163529_ net/minecraft/world/level/levelgen/structure/StructureFeatureIndexSavedData/TAG_All_INDEXES +FD: net/minecraft/world/level/levelgen/structure/StructureFeatureIndexSavedData/f_73360_ net/minecraft/world/level/levelgen/structure/StructureFeatureIndexSavedData/all +FD: net/minecraft/world/level/levelgen/structure/StructureFeatureIndexSavedData/f_73361_ net/minecraft/world/level/levelgen/structure/StructureFeatureIndexSavedData/remaining +FD: net/minecraft/world/level/levelgen/structure/StructurePiece/f_163536_ net/minecraft/world/level/levelgen/structure/StructurePiece/LOGGER +FD: net/minecraft/world/level/levelgen/structure/StructurePiece/f_73377_ net/minecraft/world/level/levelgen/structure/StructurePiece/orientation +FD: net/minecraft/world/level/levelgen/structure/StructurePiece/f_73378_ net/minecraft/world/level/levelgen/structure/StructurePiece/mirror +FD: net/minecraft/world/level/levelgen/structure/StructurePiece/f_73379_ net/minecraft/world/level/levelgen/structure/StructurePiece/rotation +FD: net/minecraft/world/level/levelgen/structure/StructurePiece/f_73380_ net/minecraft/world/level/levelgen/structure/StructurePiece/type +FD: net/minecraft/world/level/levelgen/structure/StructurePiece/f_73381_ net/minecraft/world/level/levelgen/structure/StructurePiece/SHAPE_CHECK_BLOCKS +FD: net/minecraft/world/level/levelgen/structure/StructurePiece/f_73382_ net/minecraft/world/level/levelgen/structure/StructurePiece/CAVE_AIR +FD: net/minecraft/world/level/levelgen/structure/StructurePiece/f_73383_ net/minecraft/world/level/levelgen/structure/StructurePiece/boundingBox +FD: net/minecraft/world/level/levelgen/structure/StructurePiece/f_73384_ net/minecraft/world/level/levelgen/structure/StructurePiece/genDepth +FD: net/minecraft/world/level/levelgen/structure/StructurePiece$1/f_73551_ net/minecraft/world/level/levelgen/structure/StructurePiece$1/$SwitchMap$net$minecraft$core$Direction +FD: net/minecraft/world/level/levelgen/structure/StructurePiece$BlockSelector/f_73553_ net/minecraft/world/level/levelgen/structure/StructurePiece$BlockSelector/next +FD: net/minecraft/world/level/levelgen/structure/StructureSet/f_210001_ net/minecraft/world/level/levelgen/structure/StructureSet/DIRECT_CODEC +FD: net/minecraft/world/level/levelgen/structure/StructureSet/f_210002_ net/minecraft/world/level/levelgen/structure/StructureSet/CODEC +FD: net/minecraft/world/level/levelgen/structure/StructureSet/f_210003_ net/minecraft/world/level/levelgen/structure/StructureSet/structures +FD: net/minecraft/world/level/levelgen/structure/StructureSet/f_210004_ net/minecraft/world/level/levelgen/structure/StructureSet/placement +FD: net/minecraft/world/level/levelgen/structure/StructureSet$StructureSelectionEntry/f_210025_ net/minecraft/world/level/levelgen/structure/StructureSet$StructureSelectionEntry/CODEC +FD: net/minecraft/world/level/levelgen/structure/StructureSet$StructureSelectionEntry/f_210026_ net/minecraft/world/level/levelgen/structure/StructureSet$StructureSelectionEntry/structure +FD: net/minecraft/world/level/levelgen/structure/StructureSet$StructureSelectionEntry/f_210027_ net/minecraft/world/level/levelgen/structure/StructureSet$StructureSelectionEntry/weight +FD: net/minecraft/world/level/levelgen/structure/StructureSpawnOverride/f_210042_ net/minecraft/world/level/levelgen/structure/StructureSpawnOverride/CODEC +FD: net/minecraft/world/level/levelgen/structure/StructureSpawnOverride/f_210043_ net/minecraft/world/level/levelgen/structure/StructureSpawnOverride/boundingBox +FD: net/minecraft/world/level/levelgen/structure/StructureSpawnOverride/f_210044_ net/minecraft/world/level/levelgen/structure/StructureSpawnOverride/spawns +FD: net/minecraft/world/level/levelgen/structure/StructureSpawnOverride$BoundingBoxType/$VALUES net/minecraft/world/level/levelgen/structure/StructureSpawnOverride$BoundingBoxType/$VALUES +FD: net/minecraft/world/level/levelgen/structure/StructureSpawnOverride$BoundingBoxType/PIECE net/minecraft/world/level/levelgen/structure/StructureSpawnOverride$BoundingBoxType/PIECE +FD: net/minecraft/world/level/levelgen/structure/StructureSpawnOverride$BoundingBoxType/STRUCTURE net/minecraft/world/level/levelgen/structure/StructureSpawnOverride$BoundingBoxType/STRUCTURE +FD: net/minecraft/world/level/levelgen/structure/StructureSpawnOverride$BoundingBoxType/f_210060_ net/minecraft/world/level/levelgen/structure/StructureSpawnOverride$BoundingBoxType/CODEC +FD: net/minecraft/world/level/levelgen/structure/StructureSpawnOverride$BoundingBoxType/f_210061_ net/minecraft/world/level/levelgen/structure/StructureSpawnOverride$BoundingBoxType/id +FD: net/minecraft/world/level/levelgen/structure/StructureStart/f_163590_ net/minecraft/world/level/levelgen/structure/StructureStart/INVALID_START_ID +FD: net/minecraft/world/level/levelgen/structure/StructureStart/f_163592_ net/minecraft/world/level/levelgen/structure/StructureStart/chunkPos +FD: net/minecraft/world/level/levelgen/structure/StructureStart/f_163593_ net/minecraft/world/level/levelgen/structure/StructureStart/cachedBoundingBox +FD: net/minecraft/world/level/levelgen/structure/StructureStart/f_192654_ net/minecraft/world/level/levelgen/structure/StructureStart/pieceContainer +FD: net/minecraft/world/level/levelgen/structure/StructureStart/f_226843_ net/minecraft/world/level/levelgen/structure/StructureStart/LOGGER +FD: net/minecraft/world/level/levelgen/structure/StructureStart/f_226844_ net/minecraft/world/level/levelgen/structure/StructureStart/structure +FD: net/minecraft/world/level/levelgen/structure/StructureStart/f_73561_ net/minecraft/world/level/levelgen/structure/StructureStart/INVALID_START +FD: net/minecraft/world/level/levelgen/structure/StructureStart/f_73568_ net/minecraft/world/level/levelgen/structure/StructureStart/references +FD: net/minecraft/world/level/levelgen/structure/StructureType/f_226862_ net/minecraft/world/level/levelgen/structure/StructureType/BURIED_TREASURE +FD: net/minecraft/world/level/levelgen/structure/StructureType/f_226863_ net/minecraft/world/level/levelgen/structure/StructureType/DESERT_PYRAMID +FD: net/minecraft/world/level/levelgen/structure/StructureType/f_226864_ net/minecraft/world/level/levelgen/structure/StructureType/END_CITY +FD: net/minecraft/world/level/levelgen/structure/StructureType/f_226865_ net/minecraft/world/level/levelgen/structure/StructureType/FORTRESS +FD: net/minecraft/world/level/levelgen/structure/StructureType/f_226866_ net/minecraft/world/level/levelgen/structure/StructureType/IGLOO +FD: net/minecraft/world/level/levelgen/structure/StructureType/f_226867_ net/minecraft/world/level/levelgen/structure/StructureType/JIGSAW +FD: net/minecraft/world/level/levelgen/structure/StructureType/f_226868_ net/minecraft/world/level/levelgen/structure/StructureType/JUNGLE_TEMPLE +FD: net/minecraft/world/level/levelgen/structure/StructureType/f_226869_ net/minecraft/world/level/levelgen/structure/StructureType/MINESHAFT +FD: net/minecraft/world/level/levelgen/structure/StructureType/f_226870_ net/minecraft/world/level/levelgen/structure/StructureType/NETHER_FOSSIL +FD: net/minecraft/world/level/levelgen/structure/StructureType/f_226871_ net/minecraft/world/level/levelgen/structure/StructureType/OCEAN_MONUMENT +FD: net/minecraft/world/level/levelgen/structure/StructureType/f_226872_ net/minecraft/world/level/levelgen/structure/StructureType/OCEAN_RUIN +FD: net/minecraft/world/level/levelgen/structure/StructureType/f_226873_ net/minecraft/world/level/levelgen/structure/StructureType/RUINED_PORTAL +FD: net/minecraft/world/level/levelgen/structure/StructureType/f_226874_ net/minecraft/world/level/levelgen/structure/StructureType/SHIPWRECK +FD: net/minecraft/world/level/levelgen/structure/StructureType/f_226875_ net/minecraft/world/level/levelgen/structure/StructureType/STRONGHOLD +FD: net/minecraft/world/level/levelgen/structure/StructureType/f_226876_ net/minecraft/world/level/levelgen/structure/StructureType/SWAMP_HUT +FD: net/minecraft/world/level/levelgen/structure/StructureType/f_226877_ net/minecraft/world/level/levelgen/structure/StructureType/WOODLAND_MANSION +FD: net/minecraft/world/level/levelgen/structure/TemplateStructurePiece/f_163658_ net/minecraft/world/level/levelgen/structure/TemplateStructurePiece/templateName +FD: net/minecraft/world/level/levelgen/structure/TemplateStructurePiece/f_73656_ net/minecraft/world/level/levelgen/structure/TemplateStructurePiece/template +FD: net/minecraft/world/level/levelgen/structure/TemplateStructurePiece/f_73657_ net/minecraft/world/level/levelgen/structure/TemplateStructurePiece/placeSettings +FD: net/minecraft/world/level/levelgen/structure/TemplateStructurePiece/f_73658_ net/minecraft/world/level/levelgen/structure/TemplateStructurePiece/templatePosition +FD: net/minecraft/world/level/levelgen/structure/TemplateStructurePiece/f_73659_ net/minecraft/world/level/levelgen/structure/TemplateStructurePiece/LOGGER +FD: net/minecraft/world/level/levelgen/structure/TerrainAdjustment/$VALUES net/minecraft/world/level/levelgen/structure/TerrainAdjustment/$VALUES +FD: net/minecraft/world/level/levelgen/structure/TerrainAdjustment/BEARD_BOX net/minecraft/world/level/levelgen/structure/TerrainAdjustment/BEARD_BOX +FD: net/minecraft/world/level/levelgen/structure/TerrainAdjustment/BEARD_THIN net/minecraft/world/level/levelgen/structure/TerrainAdjustment/BEARD_THIN +FD: net/minecraft/world/level/levelgen/structure/TerrainAdjustment/BURY net/minecraft/world/level/levelgen/structure/TerrainAdjustment/BURY +FD: net/minecraft/world/level/levelgen/structure/TerrainAdjustment/NONE net/minecraft/world/level/levelgen/structure/TerrainAdjustment/NONE +FD: net/minecraft/world/level/levelgen/structure/TerrainAdjustment/f_226918_ net/minecraft/world/level/levelgen/structure/TerrainAdjustment/CODEC +FD: net/minecraft/world/level/levelgen/structure/TerrainAdjustment/f_226919_ net/minecraft/world/level/levelgen/structure/TerrainAdjustment/id +FD: net/minecraft/world/level/levelgen/structure/pieces/PieceGenerator$Context/f_192703_ net/minecraft/world/level/levelgen/structure/pieces/PieceGenerator$Context/chunkGenerator +FD: net/minecraft/world/level/levelgen/structure/pieces/PieceGenerator$Context/f_192705_ net/minecraft/world/level/levelgen/structure/pieces/PieceGenerator$Context/chunkPos +FD: net/minecraft/world/level/levelgen/structure/pieces/PieceGenerator$Context/f_192707_ net/minecraft/world/level/levelgen/structure/pieces/PieceGenerator$Context/heightAccessor +FD: net/minecraft/world/level/levelgen/structure/pieces/PieceGenerator$Context/f_192708_ net/minecraft/world/level/levelgen/structure/pieces/PieceGenerator$Context/random +FD: net/minecraft/world/level/levelgen/structure/pieces/PieceGenerator$Context/f_192709_ net/minecraft/world/level/levelgen/structure/pieces/PieceGenerator$Context/seed +FD: net/minecraft/world/level/levelgen/structure/pieces/PieceGenerator$Context/f_197328_ net/minecraft/world/level/levelgen/structure/pieces/PieceGenerator$Context/config +FD: net/minecraft/world/level/levelgen/structure/pieces/PieceGenerator$Context/f_226931_ net/minecraft/world/level/levelgen/structure/pieces/PieceGenerator$Context/structureTemplateManager +FD: net/minecraft/world/level/levelgen/structure/pieces/PieceGeneratorSupplier$Context/f_197352_ net/minecraft/world/level/levelgen/structure/pieces/PieceGeneratorSupplier$Context/chunkGenerator +FD: net/minecraft/world/level/levelgen/structure/pieces/PieceGeneratorSupplier$Context/f_197353_ net/minecraft/world/level/levelgen/structure/pieces/PieceGeneratorSupplier$Context/biomeSource +FD: net/minecraft/world/level/levelgen/structure/pieces/PieceGeneratorSupplier$Context/f_197354_ net/minecraft/world/level/levelgen/structure/pieces/PieceGeneratorSupplier$Context/seed +FD: net/minecraft/world/level/levelgen/structure/pieces/PieceGeneratorSupplier$Context/f_197355_ net/minecraft/world/level/levelgen/structure/pieces/PieceGeneratorSupplier$Context/chunkPos +FD: net/minecraft/world/level/levelgen/structure/pieces/PieceGeneratorSupplier$Context/f_197356_ net/minecraft/world/level/levelgen/structure/pieces/PieceGeneratorSupplier$Context/config +FD: net/minecraft/world/level/levelgen/structure/pieces/PieceGeneratorSupplier$Context/f_197357_ net/minecraft/world/level/levelgen/structure/pieces/PieceGeneratorSupplier$Context/heightAccessor +FD: net/minecraft/world/level/levelgen/structure/pieces/PieceGeneratorSupplier$Context/f_197358_ net/minecraft/world/level/levelgen/structure/pieces/PieceGeneratorSupplier$Context/validBiome +FD: net/minecraft/world/level/levelgen/structure/pieces/PieceGeneratorSupplier$Context/f_197360_ net/minecraft/world/level/levelgen/structure/pieces/PieceGeneratorSupplier$Context/registryAccess +FD: net/minecraft/world/level/levelgen/structure/pieces/PieceGeneratorSupplier$Context/f_226941_ net/minecraft/world/level/levelgen/structure/pieces/PieceGeneratorSupplier$Context/randomState +FD: net/minecraft/world/level/levelgen/structure/pieces/PieceGeneratorSupplier$Context/f_226942_ net/minecraft/world/level/levelgen/structure/pieces/PieceGeneratorSupplier$Context/structureTemplateManager +FD: net/minecraft/world/level/levelgen/structure/pieces/PiecesContainer/f_192741_ net/minecraft/world/level/levelgen/structure/pieces/PiecesContainer/pieces +FD: net/minecraft/world/level/levelgen/structure/pieces/PiecesContainer/f_192742_ net/minecraft/world/level/levelgen/structure/pieces/PiecesContainer/LOGGER +FD: net/minecraft/world/level/levelgen/structure/pieces/PiecesContainer/f_192743_ net/minecraft/world/level/levelgen/structure/pieces/PiecesContainer/JIGSAW_RENAME +FD: net/minecraft/world/level/levelgen/structure/pieces/PiecesContainer/f_192744_ net/minecraft/world/level/levelgen/structure/pieces/PiecesContainer/RENAMES +FD: net/minecraft/world/level/levelgen/structure/pieces/StructurePieceSerializationContext/f_192762_ net/minecraft/world/level/levelgen/structure/pieces/StructurePieceSerializationContext/resourceManager +FD: net/minecraft/world/level/levelgen/structure/pieces/StructurePieceSerializationContext/f_192763_ net/minecraft/world/level/levelgen/structure/pieces/StructurePieceSerializationContext/registryAccess +FD: net/minecraft/world/level/levelgen/structure/pieces/StructurePieceSerializationContext/f_226956_ net/minecraft/world/level/levelgen/structure/pieces/StructurePieceSerializationContext/structureTemplateManager +FD: net/minecraft/world/level/levelgen/structure/pieces/StructurePieceType/f_210095_ net/minecraft/world/level/levelgen/structure/pieces/StructurePieceType/STRONGHOLD_RIGHT_TURN +FD: net/minecraft/world/level/levelgen/structure/pieces/StructurePieceType/f_210096_ net/minecraft/world/level/levelgen/structure/pieces/StructurePieceType/STRONGHOLD_ROOM_CROSSING +FD: net/minecraft/world/level/levelgen/structure/pieces/StructurePieceType/f_210097_ net/minecraft/world/level/levelgen/structure/pieces/StructurePieceType/STRONGHOLD_STAIRS_DOWN +FD: net/minecraft/world/level/levelgen/structure/pieces/StructurePieceType/f_210098_ net/minecraft/world/level/levelgen/structure/pieces/StructurePieceType/STRONGHOLD_START +FD: net/minecraft/world/level/levelgen/structure/pieces/StructurePieceType/f_210099_ net/minecraft/world/level/levelgen/structure/pieces/StructurePieceType/STRONGHOLD_STRAIGHT +FD: net/minecraft/world/level/levelgen/structure/pieces/StructurePieceType/f_210100_ net/minecraft/world/level/levelgen/structure/pieces/StructurePieceType/STRONGHOLD_STRAIGHT_STAIRS_DOWN +FD: net/minecraft/world/level/levelgen/structure/pieces/StructurePieceType/f_210101_ net/minecraft/world/level/levelgen/structure/pieces/StructurePieceType/JUNGLE_PYRAMID_PIECE +FD: net/minecraft/world/level/levelgen/structure/pieces/StructurePieceType/f_210102_ net/minecraft/world/level/levelgen/structure/pieces/StructurePieceType/OCEAN_RUIN +FD: net/minecraft/world/level/levelgen/structure/pieces/StructurePieceType/f_210103_ net/minecraft/world/level/levelgen/structure/pieces/StructurePieceType/IGLOO +FD: net/minecraft/world/level/levelgen/structure/pieces/StructurePieceType/f_210104_ net/minecraft/world/level/levelgen/structure/pieces/StructurePieceType/RUINED_PORTAL +FD: net/minecraft/world/level/levelgen/structure/pieces/StructurePieceType/f_210105_ net/minecraft/world/level/levelgen/structure/pieces/StructurePieceType/SWAMPLAND_HUT +FD: net/minecraft/world/level/levelgen/structure/pieces/StructurePieceType/f_210106_ net/minecraft/world/level/levelgen/structure/pieces/StructurePieceType/DESERT_PYRAMID_PIECE +FD: net/minecraft/world/level/levelgen/structure/pieces/StructurePieceType/f_210107_ net/minecraft/world/level/levelgen/structure/pieces/StructurePieceType/OCEAN_MONUMENT_BUILDING +FD: net/minecraft/world/level/levelgen/structure/pieces/StructurePieceType/f_210108_ net/minecraft/world/level/levelgen/structure/pieces/StructurePieceType/OCEAN_MONUMENT_CORE_ROOM +FD: net/minecraft/world/level/levelgen/structure/pieces/StructurePieceType/f_210109_ net/minecraft/world/level/levelgen/structure/pieces/StructurePieceType/OCEAN_MONUMENT_DOUBLE_X_ROOM +FD: net/minecraft/world/level/levelgen/structure/pieces/StructurePieceType/f_210110_ net/minecraft/world/level/levelgen/structure/pieces/StructurePieceType/OCEAN_MONUMENT_DOUBLE_XY_ROOM +FD: net/minecraft/world/level/levelgen/structure/pieces/StructurePieceType/f_210111_ net/minecraft/world/level/levelgen/structure/pieces/StructurePieceType/OCEAN_MONUMENT_DOUBLE_Y_ROOM +FD: net/minecraft/world/level/levelgen/structure/pieces/StructurePieceType/f_210112_ net/minecraft/world/level/levelgen/structure/pieces/StructurePieceType/OCEAN_MONUMENT_DOUBLE_YZ_ROOM +FD: net/minecraft/world/level/levelgen/structure/pieces/StructurePieceType/f_210113_ net/minecraft/world/level/levelgen/structure/pieces/StructurePieceType/OCEAN_MONUMENT_DOUBLE_Z_ROOM +FD: net/minecraft/world/level/levelgen/structure/pieces/StructurePieceType/f_210114_ net/minecraft/world/level/levelgen/structure/pieces/StructurePieceType/OCEAN_MONUMENT_ENTRY_ROOM +FD: net/minecraft/world/level/levelgen/structure/pieces/StructurePieceType/f_210115_ net/minecraft/world/level/levelgen/structure/pieces/StructurePieceType/OCEAN_MONUMENT_PENTHOUSE +FD: net/minecraft/world/level/levelgen/structure/pieces/StructurePieceType/f_210116_ net/minecraft/world/level/levelgen/structure/pieces/StructurePieceType/OCEAN_MONUMENT_SIMPLE_ROOM +FD: net/minecraft/world/level/levelgen/structure/pieces/StructurePieceType/f_210117_ net/minecraft/world/level/levelgen/structure/pieces/StructurePieceType/OCEAN_MONUMENT_SIMPLE_TOP_ROOM +FD: net/minecraft/world/level/levelgen/structure/pieces/StructurePieceType/f_210118_ net/minecraft/world/level/levelgen/structure/pieces/StructurePieceType/OCEAN_MONUMENT_WING_ROOM +FD: net/minecraft/world/level/levelgen/structure/pieces/StructurePieceType/f_210119_ net/minecraft/world/level/levelgen/structure/pieces/StructurePieceType/END_CITY_PIECE +FD: net/minecraft/world/level/levelgen/structure/pieces/StructurePieceType/f_210120_ net/minecraft/world/level/levelgen/structure/pieces/StructurePieceType/WOODLAND_MANSION_PIECE +FD: net/minecraft/world/level/levelgen/structure/pieces/StructurePieceType/f_210121_ net/minecraft/world/level/levelgen/structure/pieces/StructurePieceType/MINE_SHAFT_CORRIDOR +FD: net/minecraft/world/level/levelgen/structure/pieces/StructurePieceType/f_210122_ net/minecraft/world/level/levelgen/structure/pieces/StructurePieceType/BURIED_TREASURE_PIECE +FD: net/minecraft/world/level/levelgen/structure/pieces/StructurePieceType/f_210123_ net/minecraft/world/level/levelgen/structure/pieces/StructurePieceType/SHIPWRECK_PIECE +FD: net/minecraft/world/level/levelgen/structure/pieces/StructurePieceType/f_210124_ net/minecraft/world/level/levelgen/structure/pieces/StructurePieceType/NETHER_FOSSIL +FD: net/minecraft/world/level/levelgen/structure/pieces/StructurePieceType/f_210125_ net/minecraft/world/level/levelgen/structure/pieces/StructurePieceType/JIGSAW +FD: net/minecraft/world/level/levelgen/structure/pieces/StructurePieceType/f_210126_ net/minecraft/world/level/levelgen/structure/pieces/StructurePieceType/MINE_SHAFT_CROSSING +FD: net/minecraft/world/level/levelgen/structure/pieces/StructurePieceType/f_210127_ net/minecraft/world/level/levelgen/structure/pieces/StructurePieceType/MINE_SHAFT_ROOM +FD: net/minecraft/world/level/levelgen/structure/pieces/StructurePieceType/f_210128_ net/minecraft/world/level/levelgen/structure/pieces/StructurePieceType/MINE_SHAFT_STAIRS +FD: net/minecraft/world/level/levelgen/structure/pieces/StructurePieceType/f_210129_ net/minecraft/world/level/levelgen/structure/pieces/StructurePieceType/NETHER_FORTRESS_BRIDGE_CROSSING +FD: net/minecraft/world/level/levelgen/structure/pieces/StructurePieceType/f_210130_ net/minecraft/world/level/levelgen/structure/pieces/StructurePieceType/NETHER_FORTRESS_BRIDGE_END_FILLER +FD: net/minecraft/world/level/levelgen/structure/pieces/StructurePieceType/f_210131_ net/minecraft/world/level/levelgen/structure/pieces/StructurePieceType/NETHER_FORTRESS_BRIDGE_STRAIGHT +FD: net/minecraft/world/level/levelgen/structure/pieces/StructurePieceType/f_210132_ net/minecraft/world/level/levelgen/structure/pieces/StructurePieceType/NETHER_FORTRESS_CASTLE_CORRIDOR_STAIRS +FD: net/minecraft/world/level/levelgen/structure/pieces/StructurePieceType/f_210133_ net/minecraft/world/level/levelgen/structure/pieces/StructurePieceType/NETHER_FORTRESS_CASTLE_CORRIDOR_T_BALCONY +FD: net/minecraft/world/level/levelgen/structure/pieces/StructurePieceType/f_210134_ net/minecraft/world/level/levelgen/structure/pieces/StructurePieceType/NETHER_FORTRESS_CASTLE_ENTRANCE +FD: net/minecraft/world/level/levelgen/structure/pieces/StructurePieceType/f_210135_ net/minecraft/world/level/levelgen/structure/pieces/StructurePieceType/NETHER_FORTRESS_CASTLE_SMALL_CORRIDOR_CROSSING +FD: net/minecraft/world/level/levelgen/structure/pieces/StructurePieceType/f_210136_ net/minecraft/world/level/levelgen/structure/pieces/StructurePieceType/NETHER_FORTRESS_CASTLE_SMALL_CORRIDOR_LEFT_TURN +FD: net/minecraft/world/level/levelgen/structure/pieces/StructurePieceType/f_210137_ net/minecraft/world/level/levelgen/structure/pieces/StructurePieceType/NETHER_FORTRESS_CASTLE_SMALL_CORRIDOR +FD: net/minecraft/world/level/levelgen/structure/pieces/StructurePieceType/f_210138_ net/minecraft/world/level/levelgen/structure/pieces/StructurePieceType/NETHER_FORTRESS_CASTLE_SMALL_CORRIDOR_RIGHT_TURN +FD: net/minecraft/world/level/levelgen/structure/pieces/StructurePieceType/f_210139_ net/minecraft/world/level/levelgen/structure/pieces/StructurePieceType/NETHER_FORTRESS_CASTLE_STALK_ROOM +FD: net/minecraft/world/level/levelgen/structure/pieces/StructurePieceType/f_210140_ net/minecraft/world/level/levelgen/structure/pieces/StructurePieceType/NETHER_FORTRESS_MONSTER_THRONE +FD: net/minecraft/world/level/levelgen/structure/pieces/StructurePieceType/f_210141_ net/minecraft/world/level/levelgen/structure/pieces/StructurePieceType/NETHER_FORTRESS_ROOM_CROSSING +FD: net/minecraft/world/level/levelgen/structure/pieces/StructurePieceType/f_210142_ net/minecraft/world/level/levelgen/structure/pieces/StructurePieceType/NETHER_FORTRESS_STAIRS_ROOM +FD: net/minecraft/world/level/levelgen/structure/pieces/StructurePieceType/f_210143_ net/minecraft/world/level/levelgen/structure/pieces/StructurePieceType/NETHER_FORTRESS_START +FD: net/minecraft/world/level/levelgen/structure/pieces/StructurePieceType/f_210144_ net/minecraft/world/level/levelgen/structure/pieces/StructurePieceType/STRONGHOLD_CHEST_CORRIDOR +FD: net/minecraft/world/level/levelgen/structure/pieces/StructurePieceType/f_210145_ net/minecraft/world/level/levelgen/structure/pieces/StructurePieceType/STRONGHOLD_FILLER_CORRIDOR +FD: net/minecraft/world/level/levelgen/structure/pieces/StructurePieceType/f_210146_ net/minecraft/world/level/levelgen/structure/pieces/StructurePieceType/STRONGHOLD_FIVE_CROSSING +FD: net/minecraft/world/level/levelgen/structure/pieces/StructurePieceType/f_210147_ net/minecraft/world/level/levelgen/structure/pieces/StructurePieceType/STRONGHOLD_LEFT_TURN +FD: net/minecraft/world/level/levelgen/structure/pieces/StructurePieceType/f_210148_ net/minecraft/world/level/levelgen/structure/pieces/StructurePieceType/STRONGHOLD_LIBRARY +FD: net/minecraft/world/level/levelgen/structure/pieces/StructurePieceType/f_210149_ net/minecraft/world/level/levelgen/structure/pieces/StructurePieceType/STRONGHOLD_PORTAL_ROOM +FD: net/minecraft/world/level/levelgen/structure/pieces/StructurePieceType/f_210150_ net/minecraft/world/level/levelgen/structure/pieces/StructurePieceType/STRONGHOLD_PRISON_HALL +FD: net/minecraft/world/level/levelgen/structure/pieces/StructurePiecesBuilder/f_192778_ net/minecraft/world/level/levelgen/structure/pieces/StructurePiecesBuilder/pieces +FD: net/minecraft/world/level/levelgen/structure/placement/ConcentricRingsStructurePlacement/f_204949_ net/minecraft/world/level/levelgen/structure/placement/ConcentricRingsStructurePlacement/CODEC +FD: net/minecraft/world/level/levelgen/structure/placement/ConcentricRingsStructurePlacement/f_204950_ net/minecraft/world/level/levelgen/structure/placement/ConcentricRingsStructurePlacement/distance +FD: net/minecraft/world/level/levelgen/structure/placement/ConcentricRingsStructurePlacement/f_204951_ net/minecraft/world/level/levelgen/structure/placement/ConcentricRingsStructurePlacement/spread +FD: net/minecraft/world/level/levelgen/structure/placement/ConcentricRingsStructurePlacement/f_204952_ net/minecraft/world/level/levelgen/structure/placement/ConcentricRingsStructurePlacement/count +FD: net/minecraft/world/level/levelgen/structure/placement/ConcentricRingsStructurePlacement/f_226974_ net/minecraft/world/level/levelgen/structure/placement/ConcentricRingsStructurePlacement/preferredBiomes +FD: net/minecraft/world/level/levelgen/structure/placement/RandomSpreadStructurePlacement/f_204972_ net/minecraft/world/level/levelgen/structure/placement/RandomSpreadStructurePlacement/CODEC +FD: net/minecraft/world/level/levelgen/structure/placement/RandomSpreadStructurePlacement/f_204973_ net/minecraft/world/level/levelgen/structure/placement/RandomSpreadStructurePlacement/spacing +FD: net/minecraft/world/level/levelgen/structure/placement/RandomSpreadStructurePlacement/f_204974_ net/minecraft/world/level/levelgen/structure/placement/RandomSpreadStructurePlacement/separation +FD: net/minecraft/world/level/levelgen/structure/placement/RandomSpreadStructurePlacement/f_204975_ net/minecraft/world/level/levelgen/structure/placement/RandomSpreadStructurePlacement/spreadType +FD: net/minecraft/world/level/levelgen/structure/placement/RandomSpreadType/$VALUES net/minecraft/world/level/levelgen/structure/placement/RandomSpreadType/$VALUES +FD: net/minecraft/world/level/levelgen/structure/placement/RandomSpreadType/LINEAR net/minecraft/world/level/levelgen/structure/placement/RandomSpreadType/LINEAR +FD: net/minecraft/world/level/levelgen/structure/placement/RandomSpreadType/TRIANGULAR net/minecraft/world/level/levelgen/structure/placement/RandomSpreadType/TRIANGULAR +FD: net/minecraft/world/level/levelgen/structure/placement/RandomSpreadType/f_205014_ net/minecraft/world/level/levelgen/structure/placement/RandomSpreadType/CODEC +FD: net/minecraft/world/level/levelgen/structure/placement/RandomSpreadType/f_205016_ net/minecraft/world/level/levelgen/structure/placement/RandomSpreadType/id +FD: net/minecraft/world/level/levelgen/structure/placement/RandomSpreadType$1/f_205034_ net/minecraft/world/level/levelgen/structure/placement/RandomSpreadType$1/$SwitchMap$net$minecraft$world$level$levelgen$structure$placement$RandomSpreadType +FD: net/minecraft/world/level/levelgen/structure/placement/StructurePlacement/f_205036_ net/minecraft/world/level/levelgen/structure/placement/StructurePlacement/CODEC +FD: net/minecraft/world/level/levelgen/structure/placement/StructurePlacement/f_227021_ net/minecraft/world/level/levelgen/structure/placement/StructurePlacement/HIGHLY_ARBITRARY_RANDOM_SALT +FD: net/minecraft/world/level/levelgen/structure/placement/StructurePlacement/f_227022_ net/minecraft/world/level/levelgen/structure/placement/StructurePlacement/locateOffset +FD: net/minecraft/world/level/levelgen/structure/placement/StructurePlacement/f_227023_ net/minecraft/world/level/levelgen/structure/placement/StructurePlacement/frequencyReductionMethod +FD: net/minecraft/world/level/levelgen/structure/placement/StructurePlacement/f_227024_ net/minecraft/world/level/levelgen/structure/placement/StructurePlacement/frequency +FD: net/minecraft/world/level/levelgen/structure/placement/StructurePlacement/f_227025_ net/minecraft/world/level/levelgen/structure/placement/StructurePlacement/salt +FD: net/minecraft/world/level/levelgen/structure/placement/StructurePlacement/f_227026_ net/minecraft/world/level/levelgen/structure/placement/StructurePlacement/exclusionZone +FD: net/minecraft/world/level/levelgen/structure/placement/StructurePlacement$ExclusionZone/f_227077_ net/minecraft/world/level/levelgen/structure/placement/StructurePlacement$ExclusionZone/CODEC +FD: net/minecraft/world/level/levelgen/structure/placement/StructurePlacement$ExclusionZone/f_227078_ net/minecraft/world/level/levelgen/structure/placement/StructurePlacement$ExclusionZone/otherSet +FD: net/minecraft/world/level/levelgen/structure/placement/StructurePlacement$ExclusionZone/f_227079_ net/minecraft/world/level/levelgen/structure/placement/StructurePlacement$ExclusionZone/chunkCount +FD: net/minecraft/world/level/levelgen/structure/placement/StructurePlacement$FrequencyReductionMethod/$VALUES net/minecraft/world/level/levelgen/structure/placement/StructurePlacement$FrequencyReductionMethod/$VALUES +FD: net/minecraft/world/level/levelgen/structure/placement/StructurePlacement$FrequencyReductionMethod/DEFAULT net/minecraft/world/level/levelgen/structure/placement/StructurePlacement$FrequencyReductionMethod/DEFAULT +FD: net/minecraft/world/level/levelgen/structure/placement/StructurePlacement$FrequencyReductionMethod/LEGACY_TYPE_1 net/minecraft/world/level/levelgen/structure/placement/StructurePlacement$FrequencyReductionMethod/LEGACY_TYPE_1 +FD: net/minecraft/world/level/levelgen/structure/placement/StructurePlacement$FrequencyReductionMethod/LEGACY_TYPE_2 net/minecraft/world/level/levelgen/structure/placement/StructurePlacement$FrequencyReductionMethod/LEGACY_TYPE_2 +FD: net/minecraft/world/level/levelgen/structure/placement/StructurePlacement$FrequencyReductionMethod/LEGACY_TYPE_3 net/minecraft/world/level/levelgen/structure/placement/StructurePlacement$FrequencyReductionMethod/LEGACY_TYPE_3 +FD: net/minecraft/world/level/levelgen/structure/placement/StructurePlacement$FrequencyReductionMethod/f_227108_ net/minecraft/world/level/levelgen/structure/placement/StructurePlacement$FrequencyReductionMethod/CODEC +FD: net/minecraft/world/level/levelgen/structure/placement/StructurePlacement$FrequencyReductionMethod/f_227109_ net/minecraft/world/level/levelgen/structure/placement/StructurePlacement$FrequencyReductionMethod/name +FD: net/minecraft/world/level/levelgen/structure/placement/StructurePlacement$FrequencyReductionMethod/f_227110_ net/minecraft/world/level/levelgen/structure/placement/StructurePlacement$FrequencyReductionMethod/reducer +FD: net/minecraft/world/level/levelgen/structure/placement/StructurePlacementType/f_205041_ net/minecraft/world/level/levelgen/structure/placement/StructurePlacementType/RANDOM_SPREAD +FD: net/minecraft/world/level/levelgen/structure/placement/StructurePlacementType/f_205042_ net/minecraft/world/level/levelgen/structure/placement/StructurePlacementType/CONCENTRIC_RINGS +FD: net/minecraft/world/level/levelgen/structure/pools/EmptyPoolElement/f_210174_ net/minecraft/world/level/levelgen/structure/pools/EmptyPoolElement/CODEC +FD: net/minecraft/world/level/levelgen/structure/pools/EmptyPoolElement/f_210175_ net/minecraft/world/level/levelgen/structure/pools/EmptyPoolElement/INSTANCE +FD: net/minecraft/world/level/levelgen/structure/pools/FeaturePoolElement/f_210204_ net/minecraft/world/level/levelgen/structure/pools/FeaturePoolElement/CODEC +FD: net/minecraft/world/level/levelgen/structure/pools/FeaturePoolElement/f_210205_ net/minecraft/world/level/levelgen/structure/pools/FeaturePoolElement/feature +FD: net/minecraft/world/level/levelgen/structure/pools/FeaturePoolElement/f_210206_ net/minecraft/world/level/levelgen/structure/pools/FeaturePoolElement/defaultJigsawNBT +FD: net/minecraft/world/level/levelgen/structure/pools/JigsawJunction/f_210241_ net/minecraft/world/level/levelgen/structure/pools/JigsawJunction/sourceX +FD: net/minecraft/world/level/levelgen/structure/pools/JigsawJunction/f_210242_ net/minecraft/world/level/levelgen/structure/pools/JigsawJunction/sourceGroundY +FD: net/minecraft/world/level/levelgen/structure/pools/JigsawJunction/f_210243_ net/minecraft/world/level/levelgen/structure/pools/JigsawJunction/sourceZ +FD: net/minecraft/world/level/levelgen/structure/pools/JigsawJunction/f_210244_ net/minecraft/world/level/levelgen/structure/pools/JigsawJunction/deltaY +FD: net/minecraft/world/level/levelgen/structure/pools/JigsawJunction/f_210245_ net/minecraft/world/level/levelgen/structure/pools/JigsawJunction/destProjection +FD: net/minecraft/world/level/levelgen/structure/pools/JigsawPlacement/f_210265_ net/minecraft/world/level/levelgen/structure/pools/JigsawPlacement/LOGGER +FD: net/minecraft/world/level/levelgen/structure/pools/JigsawPlacement$PieceState/f_210307_ net/minecraft/world/level/levelgen/structure/pools/JigsawPlacement$PieceState/piece +FD: net/minecraft/world/level/levelgen/structure/pools/JigsawPlacement$PieceState/f_210308_ net/minecraft/world/level/levelgen/structure/pools/JigsawPlacement$PieceState/free +FD: net/minecraft/world/level/levelgen/structure/pools/JigsawPlacement$PieceState/f_210309_ net/minecraft/world/level/levelgen/structure/pools/JigsawPlacement$PieceState/depth +FD: net/minecraft/world/level/levelgen/structure/pools/JigsawPlacement$Placer/f_210314_ net/minecraft/world/level/levelgen/structure/pools/JigsawPlacement$Placer/pools +FD: net/minecraft/world/level/levelgen/structure/pools/JigsawPlacement$Placer/f_210315_ net/minecraft/world/level/levelgen/structure/pools/JigsawPlacement$Placer/maxDepth +FD: net/minecraft/world/level/levelgen/structure/pools/JigsawPlacement$Placer/f_210317_ net/minecraft/world/level/levelgen/structure/pools/JigsawPlacement$Placer/chunkGenerator +FD: net/minecraft/world/level/levelgen/structure/pools/JigsawPlacement$Placer/f_210319_ net/minecraft/world/level/levelgen/structure/pools/JigsawPlacement$Placer/pieces +FD: net/minecraft/world/level/levelgen/structure/pools/JigsawPlacement$Placer/f_210320_ net/minecraft/world/level/levelgen/structure/pools/JigsawPlacement$Placer/random +FD: net/minecraft/world/level/levelgen/structure/pools/JigsawPlacement$Placer/f_210321_ net/minecraft/world/level/levelgen/structure/pools/JigsawPlacement$Placer/placing +FD: net/minecraft/world/level/levelgen/structure/pools/JigsawPlacement$Placer/f_227256_ net/minecraft/world/level/levelgen/structure/pools/JigsawPlacement$Placer/structureTemplateManager +FD: net/minecraft/world/level/levelgen/structure/pools/LegacySinglePoolElement/f_210345_ net/minecraft/world/level/levelgen/structure/pools/LegacySinglePoolElement/CODEC +FD: net/minecraft/world/level/levelgen/structure/pools/ListPoolElement/f_210359_ net/minecraft/world/level/levelgen/structure/pools/ListPoolElement/CODEC +FD: net/minecraft/world/level/levelgen/structure/pools/ListPoolElement/f_210360_ net/minecraft/world/level/levelgen/structure/pools/ListPoolElement/elements +FD: net/minecraft/world/level/levelgen/structure/pools/SinglePoolElement/f_210409_ net/minecraft/world/level/levelgen/structure/pools/SinglePoolElement/TEMPLATE_CODEC +FD: net/minecraft/world/level/levelgen/structure/pools/SinglePoolElement/f_210410_ net/minecraft/world/level/levelgen/structure/pools/SinglePoolElement/CODEC +FD: net/minecraft/world/level/levelgen/structure/pools/SinglePoolElement/f_210411_ net/minecraft/world/level/levelgen/structure/pools/SinglePoolElement/template +FD: net/minecraft/world/level/levelgen/structure/pools/SinglePoolElement/f_210412_ net/minecraft/world/level/levelgen/structure/pools/SinglePoolElement/processors +FD: net/minecraft/world/level/levelgen/structure/pools/StructurePoolElement/f_210467_ net/minecraft/world/level/levelgen/structure/pools/StructurePoolElement/projection +FD: net/minecraft/world/level/levelgen/structure/pools/StructurePoolElement/f_210468_ net/minecraft/world/level/levelgen/structure/pools/StructurePoolElement/CODEC +FD: net/minecraft/world/level/levelgen/structure/pools/StructurePoolElement/f_254734_ net/minecraft/world/level/levelgen/structure/pools/StructurePoolElement/EMPTY +FD: net/minecraft/world/level/levelgen/structure/pools/StructurePoolElementType/f_210542_ net/minecraft/world/level/levelgen/structure/pools/StructurePoolElementType/SINGLE +FD: net/minecraft/world/level/levelgen/structure/pools/StructurePoolElementType/f_210543_ net/minecraft/world/level/levelgen/structure/pools/StructurePoolElementType/LIST +FD: net/minecraft/world/level/levelgen/structure/pools/StructurePoolElementType/f_210544_ net/minecraft/world/level/levelgen/structure/pools/StructurePoolElementType/FEATURE +FD: net/minecraft/world/level/levelgen/structure/pools/StructurePoolElementType/f_210545_ net/minecraft/world/level/levelgen/structure/pools/StructurePoolElementType/EMPTY +FD: net/minecraft/world/level/levelgen/structure/pools/StructurePoolElementType/f_210546_ net/minecraft/world/level/levelgen/structure/pools/StructurePoolElementType/LEGACY +FD: net/minecraft/world/level/levelgen/structure/pools/StructureTemplatePool/f_210554_ net/minecraft/world/level/levelgen/structure/pools/StructureTemplatePool/DIRECT_CODEC +FD: net/minecraft/world/level/levelgen/structure/pools/StructureTemplatePool/f_210555_ net/minecraft/world/level/levelgen/structure/pools/StructureTemplatePool/CODEC +FD: net/minecraft/world/level/levelgen/structure/pools/StructureTemplatePool/f_210557_ net/minecraft/world/level/levelgen/structure/pools/StructureTemplatePool/SIZE_UNSET +FD: net/minecraft/world/level/levelgen/structure/pools/StructureTemplatePool/f_210559_ net/minecraft/world/level/levelgen/structure/pools/StructureTemplatePool/rawTemplates +FD: net/minecraft/world/level/levelgen/structure/pools/StructureTemplatePool/f_210560_ net/minecraft/world/level/levelgen/structure/pools/StructureTemplatePool/templates +FD: net/minecraft/world/level/levelgen/structure/pools/StructureTemplatePool/f_210561_ net/minecraft/world/level/levelgen/structure/pools/StructureTemplatePool/fallback +FD: net/minecraft/world/level/levelgen/structure/pools/StructureTemplatePool/f_210562_ net/minecraft/world/level/levelgen/structure/pools/StructureTemplatePool/maxSize +FD: net/minecraft/world/level/levelgen/structure/pools/StructureTemplatePool/f_254652_ net/minecraft/world/level/levelgen/structure/pools/StructureTemplatePool/CODEC_REFERENCE +FD: net/minecraft/world/level/levelgen/structure/pools/StructureTemplatePool$Projection/$VALUES net/minecraft/world/level/levelgen/structure/pools/StructureTemplatePool$Projection/$VALUES +FD: net/minecraft/world/level/levelgen/structure/pools/StructureTemplatePool$Projection/RIGID net/minecraft/world/level/levelgen/structure/pools/StructureTemplatePool$Projection/RIGID +FD: net/minecraft/world/level/levelgen/structure/pools/StructureTemplatePool$Projection/TERRAIN_MATCHING net/minecraft/world/level/levelgen/structure/pools/StructureTemplatePool$Projection/TERRAIN_MATCHING +FD: net/minecraft/world/level/levelgen/structure/pools/StructureTemplatePool$Projection/f_210593_ net/minecraft/world/level/levelgen/structure/pools/StructureTemplatePool$Projection/CODEC +FD: net/minecraft/world/level/levelgen/structure/pools/StructureTemplatePool$Projection/f_210595_ net/minecraft/world/level/levelgen/structure/pools/StructureTemplatePool$Projection/name +FD: net/minecraft/world/level/levelgen/structure/pools/StructureTemplatePool$Projection/f_210596_ net/minecraft/world/level/levelgen/structure/pools/StructureTemplatePool$Projection/processors +FD: net/minecraft/world/level/levelgen/structure/structures/BuriedTreasureStructure/f_227382_ net/minecraft/world/level/levelgen/structure/structures/BuriedTreasureStructure/CODEC +FD: net/minecraft/world/level/levelgen/structure/structures/DesertPyramidPiece/f_227395_ net/minecraft/world/level/levelgen/structure/structures/DesertPyramidPiece/WIDTH +FD: net/minecraft/world/level/levelgen/structure/structures/DesertPyramidPiece/f_227396_ net/minecraft/world/level/levelgen/structure/structures/DesertPyramidPiece/DEPTH +FD: net/minecraft/world/level/levelgen/structure/structures/DesertPyramidPiece/f_227397_ net/minecraft/world/level/levelgen/structure/structures/DesertPyramidPiece/hasPlacedChest +FD: net/minecraft/world/level/levelgen/structure/structures/DesertPyramidPiece/f_271477_ net/minecraft/world/level/levelgen/structure/structures/DesertPyramidPiece/potentialSuspiciousSandWorldPositions +FD: net/minecraft/world/level/levelgen/structure/structures/DesertPyramidPiece/f_278492_ net/minecraft/world/level/levelgen/structure/structures/DesertPyramidPiece/randomCollapsedRoofPos +FD: net/minecraft/world/level/levelgen/structure/structures/DesertPyramidStructure/f_227415_ net/minecraft/world/level/levelgen/structure/structures/DesertPyramidStructure/CODEC +FD: net/minecraft/world/level/levelgen/structure/structures/EndCityPieces/f_227420_ net/minecraft/world/level/levelgen/structure/structures/EndCityPieces/MAX_GEN_DEPTH +FD: net/minecraft/world/level/levelgen/structure/structures/EndCityPieces/f_227421_ net/minecraft/world/level/levelgen/structure/structures/EndCityPieces/HOUSE_TOWER_GENERATOR +FD: net/minecraft/world/level/levelgen/structure/structures/EndCityPieces/f_227422_ net/minecraft/world/level/levelgen/structure/structures/EndCityPieces/TOWER_BRIDGES +FD: net/minecraft/world/level/levelgen/structure/structures/EndCityPieces/f_227423_ net/minecraft/world/level/levelgen/structure/structures/EndCityPieces/TOWER_GENERATOR +FD: net/minecraft/world/level/levelgen/structure/structures/EndCityPieces/f_227424_ net/minecraft/world/level/levelgen/structure/structures/EndCityPieces/TOWER_BRIDGE_GENERATOR +FD: net/minecraft/world/level/levelgen/structure/structures/EndCityPieces/f_227425_ net/minecraft/world/level/levelgen/structure/structures/EndCityPieces/FAT_TOWER_BRIDGES +FD: net/minecraft/world/level/levelgen/structure/structures/EndCityPieces/f_227426_ net/minecraft/world/level/levelgen/structure/structures/EndCityPieces/FAT_TOWER_GENERATOR +FD: net/minecraft/world/level/levelgen/structure/structures/EndCityPieces$3/f_227471_ net/minecraft/world/level/levelgen/structure/structures/EndCityPieces$3/shipCreated +FD: net/minecraft/world/level/levelgen/structure/structures/EndCityStructure/f_227523_ net/minecraft/world/level/levelgen/structure/structures/EndCityStructure/CODEC +FD: net/minecraft/world/level/levelgen/structure/structures/IglooPieces/f_227540_ net/minecraft/world/level/levelgen/structure/structures/IglooPieces/GENERATION_HEIGHT +FD: net/minecraft/world/level/levelgen/structure/structures/IglooPieces/f_227541_ net/minecraft/world/level/levelgen/structure/structures/IglooPieces/STRUCTURE_LOCATION_IGLOO +FD: net/minecraft/world/level/levelgen/structure/structures/IglooPieces/f_227542_ net/minecraft/world/level/levelgen/structure/structures/IglooPieces/STRUCTURE_LOCATION_LADDER +FD: net/minecraft/world/level/levelgen/structure/structures/IglooPieces/f_227543_ net/minecraft/world/level/levelgen/structure/structures/IglooPieces/STRUCTURE_LOCATION_LABORATORY +FD: net/minecraft/world/level/levelgen/structure/structures/IglooPieces/f_227544_ net/minecraft/world/level/levelgen/structure/structures/IglooPieces/PIVOTS +FD: net/minecraft/world/level/levelgen/structure/structures/IglooPieces/f_227545_ net/minecraft/world/level/levelgen/structure/structures/IglooPieces/OFFSETS +FD: net/minecraft/world/level/levelgen/structure/structures/IglooStructure/f_227590_ net/minecraft/world/level/levelgen/structure/structures/IglooStructure/CODEC +FD: net/minecraft/world/level/levelgen/structure/structures/JigsawStructure/f_227603_ net/minecraft/world/level/levelgen/structure/structures/JigsawStructure/MAX_TOTAL_STRUCTURE_RANGE +FD: net/minecraft/world/level/levelgen/structure/structures/JigsawStructure/f_227604_ net/minecraft/world/level/levelgen/structure/structures/JigsawStructure/CODEC +FD: net/minecraft/world/level/levelgen/structure/structures/JigsawStructure/f_227605_ net/minecraft/world/level/levelgen/structure/structures/JigsawStructure/startPool +FD: net/minecraft/world/level/levelgen/structure/structures/JigsawStructure/f_227606_ net/minecraft/world/level/levelgen/structure/structures/JigsawStructure/startJigsawName +FD: net/minecraft/world/level/levelgen/structure/structures/JigsawStructure/f_227607_ net/minecraft/world/level/levelgen/structure/structures/JigsawStructure/maxDepth +FD: net/minecraft/world/level/levelgen/structure/structures/JigsawStructure/f_227608_ net/minecraft/world/level/levelgen/structure/structures/JigsawStructure/startHeight +FD: net/minecraft/world/level/levelgen/structure/structures/JigsawStructure/f_227609_ net/minecraft/world/level/levelgen/structure/structures/JigsawStructure/useExpansionHack +FD: net/minecraft/world/level/levelgen/structure/structures/JigsawStructure/f_227610_ net/minecraft/world/level/levelgen/structure/structures/JigsawStructure/projectStartToHeightmap +FD: net/minecraft/world/level/levelgen/structure/structures/JigsawStructure/f_227611_ net/minecraft/world/level/levelgen/structure/structures/JigsawStructure/maxDistanceFromCenter +FD: net/minecraft/world/level/levelgen/structure/structures/JigsawStructure$1/f_227657_ net/minecraft/world/level/levelgen/structure/structures/JigsawStructure$1/$SwitchMap$net$minecraft$world$level$levelgen$structure$TerrainAdjustment +FD: net/minecraft/world/level/levelgen/structure/structures/JungleTemplePiece/f_227659_ net/minecraft/world/level/levelgen/structure/structures/JungleTemplePiece/WIDTH +FD: net/minecraft/world/level/levelgen/structure/structures/JungleTemplePiece/f_227660_ net/minecraft/world/level/levelgen/structure/structures/JungleTemplePiece/DEPTH +FD: net/minecraft/world/level/levelgen/structure/structures/JungleTemplePiece/f_227661_ net/minecraft/world/level/levelgen/structure/structures/JungleTemplePiece/placedMainChest +FD: net/minecraft/world/level/levelgen/structure/structures/JungleTemplePiece/f_227662_ net/minecraft/world/level/levelgen/structure/structures/JungleTemplePiece/placedHiddenChest +FD: net/minecraft/world/level/levelgen/structure/structures/JungleTemplePiece/f_227663_ net/minecraft/world/level/levelgen/structure/structures/JungleTemplePiece/placedTrap1 +FD: net/minecraft/world/level/levelgen/structure/structures/JungleTemplePiece/f_227664_ net/minecraft/world/level/levelgen/structure/structures/JungleTemplePiece/placedTrap2 +FD: net/minecraft/world/level/levelgen/structure/structures/JungleTemplePiece/f_227665_ net/minecraft/world/level/levelgen/structure/structures/JungleTemplePiece/STONE_SELECTOR +FD: net/minecraft/world/level/levelgen/structure/structures/JungleTempleStructure/f_227691_ net/minecraft/world/level/levelgen/structure/structures/JungleTempleStructure/CODEC +FD: net/minecraft/world/level/levelgen/structure/structures/MineshaftPieces/f_227696_ net/minecraft/world/level/levelgen/structure/structures/MineshaftPieces/MAGIC_START_Y +FD: net/minecraft/world/level/levelgen/structure/structures/MineshaftPieces/f_227697_ net/minecraft/world/level/levelgen/structure/structures/MineshaftPieces/LOGGER +FD: net/minecraft/world/level/levelgen/structure/structures/MineshaftPieces/f_227698_ net/minecraft/world/level/levelgen/structure/structures/MineshaftPieces/DEFAULT_SHAFT_WIDTH +FD: net/minecraft/world/level/levelgen/structure/structures/MineshaftPieces/f_227699_ net/minecraft/world/level/levelgen/structure/structures/MineshaftPieces/DEFAULT_SHAFT_HEIGHT +FD: net/minecraft/world/level/levelgen/structure/structures/MineshaftPieces/f_227700_ net/minecraft/world/level/levelgen/structure/structures/MineshaftPieces/DEFAULT_SHAFT_LENGTH +FD: net/minecraft/world/level/levelgen/structure/structures/MineshaftPieces/f_227701_ net/minecraft/world/level/levelgen/structure/structures/MineshaftPieces/MAX_PILLAR_HEIGHT +FD: net/minecraft/world/level/levelgen/structure/structures/MineshaftPieces/f_227702_ net/minecraft/world/level/levelgen/structure/structures/MineshaftPieces/MAX_CHAIN_HEIGHT +FD: net/minecraft/world/level/levelgen/structure/structures/MineshaftPieces/f_227703_ net/minecraft/world/level/levelgen/structure/structures/MineshaftPieces/MAX_DEPTH +FD: net/minecraft/world/level/levelgen/structure/structures/MineshaftPieces$1/f_227724_ net/minecraft/world/level/levelgen/structure/structures/MineshaftPieces$1/$SwitchMap$net$minecraft$core$Direction +FD: net/minecraft/world/level/levelgen/structure/structures/MineshaftPieces$MineShaftCorridor/f_227726_ net/minecraft/world/level/levelgen/structure/structures/MineshaftPieces$MineShaftCorridor/hasRails +FD: net/minecraft/world/level/levelgen/structure/structures/MineshaftPieces$MineShaftCorridor/f_227727_ net/minecraft/world/level/levelgen/structure/structures/MineshaftPieces$MineShaftCorridor/spiderCorridor +FD: net/minecraft/world/level/levelgen/structure/structures/MineshaftPieces$MineShaftCorridor/f_227728_ net/minecraft/world/level/levelgen/structure/structures/MineshaftPieces$MineShaftCorridor/hasPlacedSpider +FD: net/minecraft/world/level/levelgen/structure/structures/MineshaftPieces$MineShaftCorridor/f_227729_ net/minecraft/world/level/levelgen/structure/structures/MineshaftPieces$MineShaftCorridor/numSections +FD: net/minecraft/world/level/levelgen/structure/structures/MineshaftPieces$MineShaftCrossing/f_227826_ net/minecraft/world/level/levelgen/structure/structures/MineshaftPieces$MineShaftCrossing/direction +FD: net/minecraft/world/level/levelgen/structure/structures/MineshaftPieces$MineShaftCrossing/f_227827_ net/minecraft/world/level/levelgen/structure/structures/MineshaftPieces$MineShaftCrossing/isTwoFloored +FD: net/minecraft/world/level/levelgen/structure/structures/MineshaftPieces$MineShaftPiece/f_227864_ net/minecraft/world/level/levelgen/structure/structures/MineshaftPieces$MineShaftPiece/type +FD: net/minecraft/world/level/levelgen/structure/structures/MineshaftPieces$MineShaftRoom/f_227900_ net/minecraft/world/level/levelgen/structure/structures/MineshaftPieces$MineShaftRoom/childEntranceBoxes +FD: net/minecraft/world/level/levelgen/structure/structures/MineshaftStructure/f_227957_ net/minecraft/world/level/levelgen/structure/structures/MineshaftStructure/CODEC +FD: net/minecraft/world/level/levelgen/structure/structures/MineshaftStructure/f_227958_ net/minecraft/world/level/levelgen/structure/structures/MineshaftStructure/type +FD: net/minecraft/world/level/levelgen/structure/structures/MineshaftStructure$Type/$VALUES net/minecraft/world/level/levelgen/structure/structures/MineshaftStructure$Type/$VALUES +FD: net/minecraft/world/level/levelgen/structure/structures/MineshaftStructure$Type/MESA net/minecraft/world/level/levelgen/structure/structures/MineshaftStructure$Type/MESA +FD: net/minecraft/world/level/levelgen/structure/structures/MineshaftStructure$Type/NORMAL net/minecraft/world/level/levelgen/structure/structures/MineshaftStructure$Type/NORMAL +FD: net/minecraft/world/level/levelgen/structure/structures/MineshaftStructure$Type/f_227975_ net/minecraft/world/level/levelgen/structure/structures/MineshaftStructure$Type/CODEC +FD: net/minecraft/world/level/levelgen/structure/structures/MineshaftStructure$Type/f_227976_ net/minecraft/world/level/levelgen/structure/structures/MineshaftStructure$Type/name +FD: net/minecraft/world/level/levelgen/structure/structures/MineshaftStructure$Type/f_227977_ net/minecraft/world/level/levelgen/structure/structures/MineshaftStructure$Type/woodState +FD: net/minecraft/world/level/levelgen/structure/structures/MineshaftStructure$Type/f_227978_ net/minecraft/world/level/levelgen/structure/structures/MineshaftStructure$Type/planksState +FD: net/minecraft/world/level/levelgen/structure/structures/MineshaftStructure$Type/f_227979_ net/minecraft/world/level/levelgen/structure/structures/MineshaftStructure$Type/fenceState +FD: net/minecraft/world/level/levelgen/structure/structures/MineshaftStructure$Type/f_262747_ net/minecraft/world/level/levelgen/structure/structures/MineshaftStructure$Type/BY_ID +FD: net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces/f_228000_ net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces/MAGIC_START_Y +FD: net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces/f_228001_ net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces/MAX_DEPTH +FD: net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces/f_228002_ net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces/LOWEST_Y_POSITION +FD: net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces/f_228003_ net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces/BRIDGE_PIECE_WEIGHTS +FD: net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces/f_228004_ net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces/CASTLE_PIECE_WEIGHTS +FD: net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$1/f_228016_ net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$1/$SwitchMap$net$minecraft$core$Direction +FD: net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$BridgeCrossing/f_228018_ net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$BridgeCrossing/WIDTH +FD: net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$BridgeCrossing/f_228019_ net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$BridgeCrossing/HEIGHT +FD: net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$BridgeCrossing/f_228020_ net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$BridgeCrossing/DEPTH +FD: net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$BridgeEndFiller/f_228053_ net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$BridgeEndFiller/WIDTH +FD: net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$BridgeEndFiller/f_228054_ net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$BridgeEndFiller/HEIGHT +FD: net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$BridgeEndFiller/f_228055_ net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$BridgeEndFiller/DEPTH +FD: net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$BridgeEndFiller/f_228056_ net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$BridgeEndFiller/selfSeed +FD: net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$BridgeStraight/f_228083_ net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$BridgeStraight/WIDTH +FD: net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$BridgeStraight/f_228084_ net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$BridgeStraight/HEIGHT +FD: net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$BridgeStraight/f_228085_ net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$BridgeStraight/DEPTH +FD: net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$CastleCorridorStairsPiece/f_228113_ net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$CastleCorridorStairsPiece/WIDTH +FD: net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$CastleCorridorStairsPiece/f_228114_ net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$CastleCorridorStairsPiece/HEIGHT +FD: net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$CastleCorridorStairsPiece/f_228115_ net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$CastleCorridorStairsPiece/DEPTH +FD: net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$CastleCorridorTBalconyPiece/f_228141_ net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$CastleCorridorTBalconyPiece/WIDTH +FD: net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$CastleCorridorTBalconyPiece/f_228142_ net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$CastleCorridorTBalconyPiece/HEIGHT +FD: net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$CastleCorridorTBalconyPiece/f_228143_ net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$CastleCorridorTBalconyPiece/DEPTH +FD: net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$CastleEntrance/f_228169_ net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$CastleEntrance/WIDTH +FD: net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$CastleEntrance/f_228170_ net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$CastleEntrance/HEIGHT +FD: net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$CastleEntrance/f_228171_ net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$CastleEntrance/DEPTH +FD: net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$CastleSmallCorridorCrossingPiece/f_228199_ net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$CastleSmallCorridorCrossingPiece/WIDTH +FD: net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$CastleSmallCorridorCrossingPiece/f_228200_ net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$CastleSmallCorridorCrossingPiece/HEIGHT +FD: net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$CastleSmallCorridorCrossingPiece/f_228201_ net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$CastleSmallCorridorCrossingPiece/DEPTH +FD: net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$CastleSmallCorridorLeftTurnPiece/f_228227_ net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$CastleSmallCorridorLeftTurnPiece/WIDTH +FD: net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$CastleSmallCorridorLeftTurnPiece/f_228228_ net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$CastleSmallCorridorLeftTurnPiece/HEIGHT +FD: net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$CastleSmallCorridorLeftTurnPiece/f_228229_ net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$CastleSmallCorridorLeftTurnPiece/DEPTH +FD: net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$CastleSmallCorridorLeftTurnPiece/f_228230_ net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$CastleSmallCorridorLeftTurnPiece/isNeedingChest +FD: net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$CastleSmallCorridorPiece/f_228261_ net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$CastleSmallCorridorPiece/WIDTH +FD: net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$CastleSmallCorridorPiece/f_228262_ net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$CastleSmallCorridorPiece/HEIGHT +FD: net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$CastleSmallCorridorPiece/f_228263_ net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$CastleSmallCorridorPiece/DEPTH +FD: net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$CastleSmallCorridorRightTurnPiece/f_228289_ net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$CastleSmallCorridorRightTurnPiece/WIDTH +FD: net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$CastleSmallCorridorRightTurnPiece/f_228290_ net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$CastleSmallCorridorRightTurnPiece/HEIGHT +FD: net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$CastleSmallCorridorRightTurnPiece/f_228291_ net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$CastleSmallCorridorRightTurnPiece/DEPTH +FD: net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$CastleSmallCorridorRightTurnPiece/f_228292_ net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$CastleSmallCorridorRightTurnPiece/isNeedingChest +FD: net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$CastleStalkRoom/f_228323_ net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$CastleStalkRoom/WIDTH +FD: net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$CastleStalkRoom/f_228324_ net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$CastleStalkRoom/HEIGHT +FD: net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$CastleStalkRoom/f_228325_ net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$CastleStalkRoom/DEPTH +FD: net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$MonsterThrone/f_228351_ net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$MonsterThrone/WIDTH +FD: net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$MonsterThrone/f_228352_ net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$MonsterThrone/HEIGHT +FD: net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$MonsterThrone/f_228353_ net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$MonsterThrone/DEPTH +FD: net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$MonsterThrone/f_228354_ net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$MonsterThrone/hasPlacedSpawner +FD: net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$PieceWeight/f_228434_ net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$PieceWeight/pieceClass +FD: net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$PieceWeight/f_228435_ net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$PieceWeight/weight +FD: net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$PieceWeight/f_228436_ net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$PieceWeight/placeCount +FD: net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$PieceWeight/f_228437_ net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$PieceWeight/maxPlaceCount +FD: net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$PieceWeight/f_228438_ net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$PieceWeight/allowInRow +FD: net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$RoomCrossing/f_228451_ net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$RoomCrossing/WIDTH +FD: net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$RoomCrossing/f_228452_ net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$RoomCrossing/HEIGHT +FD: net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$RoomCrossing/f_228453_ net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$RoomCrossing/DEPTH +FD: net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$StairsRoom/f_228479_ net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$StairsRoom/WIDTH +FD: net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$StairsRoom/f_228480_ net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$StairsRoom/HEIGHT +FD: net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$StairsRoom/f_228481_ net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$StairsRoom/DEPTH +FD: net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$StartPiece/f_228507_ net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$StartPiece/previousPiece +FD: net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$StartPiece/f_228508_ net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$StartPiece/availableBridgePieces +FD: net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$StartPiece/f_228509_ net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$StartPiece/availableCastlePieces +FD: net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$StartPiece/f_228510_ net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$StartPiece/pendingChildren +FD: net/minecraft/world/level/levelgen/structure/structures/NetherFortressStructure/f_228517_ net/minecraft/world/level/levelgen/structure/structures/NetherFortressStructure/FORTRESS_ENEMIES +FD: net/minecraft/world/level/levelgen/structure/structures/NetherFortressStructure/f_228518_ net/minecraft/world/level/levelgen/structure/structures/NetherFortressStructure/CODEC +FD: net/minecraft/world/level/levelgen/structure/structures/NetherFossilPieces/f_228531_ net/minecraft/world/level/levelgen/structure/structures/NetherFossilPieces/FOSSILS +FD: net/minecraft/world/level/levelgen/structure/structures/NetherFossilStructure/f_228569_ net/minecraft/world/level/levelgen/structure/structures/NetherFossilStructure/CODEC +FD: net/minecraft/world/level/levelgen/structure/structures/NetherFossilStructure/f_228570_ net/minecraft/world/level/levelgen/structure/structures/NetherFossilStructure/height +FD: net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$1/f_228588_ net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$1/$SwitchMap$net$minecraft$core$Direction +FD: net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$MonumentBuilding/f_228639_ net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$MonumentBuilding/WIDTH +FD: net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$MonumentBuilding/f_228640_ net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$MonumentBuilding/HEIGHT +FD: net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$MonumentBuilding/f_228641_ net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$MonumentBuilding/DEPTH +FD: net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$MonumentBuilding/f_228642_ net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$MonumentBuilding/TOP_POSITION +FD: net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$MonumentBuilding/f_228643_ net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$MonumentBuilding/sourceRoom +FD: net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$MonumentBuilding/f_228644_ net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$MonumentBuilding/coreRoom +FD: net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$MonumentBuilding/f_228645_ net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$MonumentBuilding/childPieces +FD: net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$MonumentBuilding/f_228646_ net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$MonumentBuilding/BIOME_RANGE_CHECK +FD: net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$OceanMonumentPiece/f_228802_ net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$OceanMonumentPiece/PENTHOUSE_INDEX +FD: net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$OceanMonumentPiece/f_228803_ net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$OceanMonumentPiece/roomDefinition +FD: net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$OceanMonumentPiece/f_228804_ net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$OceanMonumentPiece/BASE_GRAY +FD: net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$OceanMonumentPiece/f_228805_ net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$OceanMonumentPiece/BASE_LIGHT +FD: net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$OceanMonumentPiece/f_228806_ net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$OceanMonumentPiece/BASE_BLACK +FD: net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$OceanMonumentPiece/f_228807_ net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$OceanMonumentPiece/DOT_DECO_DATA +FD: net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$OceanMonumentPiece/f_228808_ net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$OceanMonumentPiece/LAMP_BLOCK +FD: net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$OceanMonumentPiece/f_228809_ net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$OceanMonumentPiece/DO_FILL +FD: net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$OceanMonumentPiece/f_228810_ net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$OceanMonumentPiece/FILL_BLOCK +FD: net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$OceanMonumentPiece/f_228811_ net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$OceanMonumentPiece/FILL_KEEP +FD: net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$OceanMonumentPiece/f_228812_ net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$OceanMonumentPiece/GRIDROOM_WIDTH +FD: net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$OceanMonumentPiece/f_228813_ net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$OceanMonumentPiece/GRIDROOM_DEPTH +FD: net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$OceanMonumentPiece/f_228814_ net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$OceanMonumentPiece/GRIDROOM_HEIGHT +FD: net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$OceanMonumentPiece/f_228815_ net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$OceanMonumentPiece/GRID_WIDTH +FD: net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$OceanMonumentPiece/f_228816_ net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$OceanMonumentPiece/GRID_DEPTH +FD: net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$OceanMonumentPiece/f_228817_ net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$OceanMonumentPiece/GRID_HEIGHT +FD: net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$OceanMonumentPiece/f_228818_ net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$OceanMonumentPiece/GRID_FLOOR_COUNT +FD: net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$OceanMonumentPiece/f_228819_ net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$OceanMonumentPiece/GRID_SIZE +FD: net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$OceanMonumentPiece/f_228820_ net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$OceanMonumentPiece/GRIDROOM_SOURCE_INDEX +FD: net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$OceanMonumentPiece/f_228821_ net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$OceanMonumentPiece/GRIDROOM_TOP_CONNECT_INDEX +FD: net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$OceanMonumentPiece/f_228822_ net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$OceanMonumentPiece/GRIDROOM_LEFTWING_CONNECT_INDEX +FD: net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$OceanMonumentPiece/f_228823_ net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$OceanMonumentPiece/GRIDROOM_RIGHTWING_CONNECT_INDEX +FD: net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$OceanMonumentPiece/f_228824_ net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$OceanMonumentPiece/LEFTWING_INDEX +FD: net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$OceanMonumentPiece/f_228825_ net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$OceanMonumentPiece/RIGHTWING_INDEX +FD: net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$OceanMonumentSimpleRoom/f_228893_ net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$OceanMonumentSimpleRoom/mainDesign +FD: net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$OceanMonumentWingRoom/f_228921_ net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$OceanMonumentWingRoom/mainDesign +FD: net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$RoomDefinition/f_228936_ net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$RoomDefinition/index +FD: net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$RoomDefinition/f_228937_ net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$RoomDefinition/connections +FD: net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$RoomDefinition/f_228938_ net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$RoomDefinition/hasOpening +FD: net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$RoomDefinition/f_228939_ net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$RoomDefinition/claimed +FD: net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$RoomDefinition/f_228940_ net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$RoomDefinition/isSource +FD: net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$RoomDefinition/f_228941_ net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$RoomDefinition/scanIndex +FD: net/minecraft/world/level/levelgen/structure/structures/OceanMonumentStructure/f_228952_ net/minecraft/world/level/levelgen/structure/structures/OceanMonumentStructure/CODEC +FD: net/minecraft/world/level/levelgen/structure/structures/OceanRuinPieces/f_228972_ net/minecraft/world/level/levelgen/structure/structures/OceanRuinPieces/WARM_RUINS +FD: net/minecraft/world/level/levelgen/structure/structures/OceanRuinPieces/f_228973_ net/minecraft/world/level/levelgen/structure/structures/OceanRuinPieces/RUINS_BRICK +FD: net/minecraft/world/level/levelgen/structure/structures/OceanRuinPieces/f_228974_ net/minecraft/world/level/levelgen/structure/structures/OceanRuinPieces/RUINS_CRACKED +FD: net/minecraft/world/level/levelgen/structure/structures/OceanRuinPieces/f_228975_ net/minecraft/world/level/levelgen/structure/structures/OceanRuinPieces/RUINS_MOSSY +FD: net/minecraft/world/level/levelgen/structure/structures/OceanRuinPieces/f_228976_ net/minecraft/world/level/levelgen/structure/structures/OceanRuinPieces/BIG_RUINS_BRICK +FD: net/minecraft/world/level/levelgen/structure/structures/OceanRuinPieces/f_228977_ net/minecraft/world/level/levelgen/structure/structures/OceanRuinPieces/BIG_RUINS_MOSSY +FD: net/minecraft/world/level/levelgen/structure/structures/OceanRuinPieces/f_228978_ net/minecraft/world/level/levelgen/structure/structures/OceanRuinPieces/BIG_RUINS_CRACKED +FD: net/minecraft/world/level/levelgen/structure/structures/OceanRuinPieces/f_228979_ net/minecraft/world/level/levelgen/structure/structures/OceanRuinPieces/BIG_WARM_RUINS +FD: net/minecraft/world/level/levelgen/structure/structures/OceanRuinPieces/f_276541_ net/minecraft/world/level/levelgen/structure/structures/OceanRuinPieces/COLD_SUSPICIOUS_BLOCK_PROCESSOR +FD: net/minecraft/world/level/levelgen/structure/structures/OceanRuinPieces/f_276678_ net/minecraft/world/level/levelgen/structure/structures/OceanRuinPieces/WARM_SUSPICIOUS_BLOCK_PROCESSOR +FD: net/minecraft/world/level/levelgen/structure/structures/OceanRuinPieces$1/f_229012_ net/minecraft/world/level/levelgen/structure/structures/OceanRuinPieces$1/$SwitchMap$net$minecraft$world$level$levelgen$structure$structures$OceanRuinStructure$Type +FD: net/minecraft/world/level/levelgen/structure/structures/OceanRuinPieces$OceanRuinPiece/f_229014_ net/minecraft/world/level/levelgen/structure/structures/OceanRuinPieces$OceanRuinPiece/biomeType +FD: net/minecraft/world/level/levelgen/structure/structures/OceanRuinPieces$OceanRuinPiece/f_229015_ net/minecraft/world/level/levelgen/structure/structures/OceanRuinPieces$OceanRuinPiece/integrity +FD: net/minecraft/world/level/levelgen/structure/structures/OceanRuinPieces$OceanRuinPiece/f_229016_ net/minecraft/world/level/levelgen/structure/structures/OceanRuinPieces$OceanRuinPiece/isLarge +FD: net/minecraft/world/level/levelgen/structure/structures/OceanRuinStructure/f_229054_ net/minecraft/world/level/levelgen/structure/structures/OceanRuinStructure/CODEC +FD: net/minecraft/world/level/levelgen/structure/structures/OceanRuinStructure/f_229055_ net/minecraft/world/level/levelgen/structure/structures/OceanRuinStructure/biomeTemp +FD: net/minecraft/world/level/levelgen/structure/structures/OceanRuinStructure/f_229056_ net/minecraft/world/level/levelgen/structure/structures/OceanRuinStructure/largeProbability +FD: net/minecraft/world/level/levelgen/structure/structures/OceanRuinStructure/f_229057_ net/minecraft/world/level/levelgen/structure/structures/OceanRuinStructure/clusterProbability +FD: net/minecraft/world/level/levelgen/structure/structures/OceanRuinStructure$Type/$VALUES net/minecraft/world/level/levelgen/structure/structures/OceanRuinStructure$Type/$VALUES +FD: net/minecraft/world/level/levelgen/structure/structures/OceanRuinStructure$Type/COLD net/minecraft/world/level/levelgen/structure/structures/OceanRuinStructure$Type/COLD +FD: net/minecraft/world/level/levelgen/structure/structures/OceanRuinStructure$Type/WARM net/minecraft/world/level/levelgen/structure/structures/OceanRuinStructure$Type/WARM +FD: net/minecraft/world/level/levelgen/structure/structures/OceanRuinStructure$Type/f_229083_ net/minecraft/world/level/levelgen/structure/structures/OceanRuinStructure$Type/CODEC +FD: net/minecraft/world/level/levelgen/structure/structures/OceanRuinStructure$Type/f_229084_ net/minecraft/world/level/levelgen/structure/structures/OceanRuinStructure$Type/name +FD: net/minecraft/world/level/levelgen/structure/structures/RuinedPortalPiece/f_229097_ net/minecraft/world/level/levelgen/structure/structures/RuinedPortalPiece/LOGGER +FD: net/minecraft/world/level/levelgen/structure/structures/RuinedPortalPiece/f_229098_ net/minecraft/world/level/levelgen/structure/structures/RuinedPortalPiece/PROBABILITY_OF_GOLD_GONE +FD: net/minecraft/world/level/levelgen/structure/structures/RuinedPortalPiece/f_229099_ net/minecraft/world/level/levelgen/structure/structures/RuinedPortalPiece/PROBABILITY_OF_MAGMA_INSTEAD_OF_NETHERRACK +FD: net/minecraft/world/level/levelgen/structure/structures/RuinedPortalPiece/f_229100_ net/minecraft/world/level/levelgen/structure/structures/RuinedPortalPiece/PROBABILITY_OF_MAGMA_INSTEAD_OF_LAVA +FD: net/minecraft/world/level/levelgen/structure/structures/RuinedPortalPiece/f_229101_ net/minecraft/world/level/levelgen/structure/structures/RuinedPortalPiece/verticalPlacement +FD: net/minecraft/world/level/levelgen/structure/structures/RuinedPortalPiece/f_229102_ net/minecraft/world/level/levelgen/structure/structures/RuinedPortalPiece/properties +FD: net/minecraft/world/level/levelgen/structure/structures/RuinedPortalPiece$Properties/f_229197_ net/minecraft/world/level/levelgen/structure/structures/RuinedPortalPiece$Properties/CODEC +FD: net/minecraft/world/level/levelgen/structure/structures/RuinedPortalPiece$Properties/f_229198_ net/minecraft/world/level/levelgen/structure/structures/RuinedPortalPiece$Properties/cold +FD: net/minecraft/world/level/levelgen/structure/structures/RuinedPortalPiece$Properties/f_229199_ net/minecraft/world/level/levelgen/structure/structures/RuinedPortalPiece$Properties/mossiness +FD: net/minecraft/world/level/levelgen/structure/structures/RuinedPortalPiece$Properties/f_229200_ net/minecraft/world/level/levelgen/structure/structures/RuinedPortalPiece$Properties/airPocket +FD: net/minecraft/world/level/levelgen/structure/structures/RuinedPortalPiece$Properties/f_229201_ net/minecraft/world/level/levelgen/structure/structures/RuinedPortalPiece$Properties/overgrown +FD: net/minecraft/world/level/levelgen/structure/structures/RuinedPortalPiece$Properties/f_229202_ net/minecraft/world/level/levelgen/structure/structures/RuinedPortalPiece$Properties/vines +FD: net/minecraft/world/level/levelgen/structure/structures/RuinedPortalPiece$Properties/f_229203_ net/minecraft/world/level/levelgen/structure/structures/RuinedPortalPiece$Properties/replaceWithBlackstone +FD: net/minecraft/world/level/levelgen/structure/structures/RuinedPortalPiece$VerticalPlacement/$VALUES net/minecraft/world/level/levelgen/structure/structures/RuinedPortalPiece$VerticalPlacement/$VALUES +FD: net/minecraft/world/level/levelgen/structure/structures/RuinedPortalPiece$VerticalPlacement/IN_MOUNTAIN net/minecraft/world/level/levelgen/structure/structures/RuinedPortalPiece$VerticalPlacement/IN_MOUNTAIN +FD: net/minecraft/world/level/levelgen/structure/structures/RuinedPortalPiece$VerticalPlacement/IN_NETHER net/minecraft/world/level/levelgen/structure/structures/RuinedPortalPiece$VerticalPlacement/IN_NETHER +FD: net/minecraft/world/level/levelgen/structure/structures/RuinedPortalPiece$VerticalPlacement/ON_LAND_SURFACE net/minecraft/world/level/levelgen/structure/structures/RuinedPortalPiece$VerticalPlacement/ON_LAND_SURFACE +FD: net/minecraft/world/level/levelgen/structure/structures/RuinedPortalPiece$VerticalPlacement/ON_OCEAN_FLOOR net/minecraft/world/level/levelgen/structure/structures/RuinedPortalPiece$VerticalPlacement/ON_OCEAN_FLOOR +FD: net/minecraft/world/level/levelgen/structure/structures/RuinedPortalPiece$VerticalPlacement/PARTLY_BURIED net/minecraft/world/level/levelgen/structure/structures/RuinedPortalPiece$VerticalPlacement/PARTLY_BURIED +FD: net/minecraft/world/level/levelgen/structure/structures/RuinedPortalPiece$VerticalPlacement/UNDERGROUND net/minecraft/world/level/levelgen/structure/structures/RuinedPortalPiece$VerticalPlacement/UNDERGROUND +FD: net/minecraft/world/level/levelgen/structure/structures/RuinedPortalPiece$VerticalPlacement/f_229233_ net/minecraft/world/level/levelgen/structure/structures/RuinedPortalPiece$VerticalPlacement/CODEC +FD: net/minecraft/world/level/levelgen/structure/structures/RuinedPortalPiece$VerticalPlacement/f_229234_ net/minecraft/world/level/levelgen/structure/structures/RuinedPortalPiece$VerticalPlacement/name +FD: net/minecraft/world/level/levelgen/structure/structures/RuinedPortalStructure/f_229249_ net/minecraft/world/level/levelgen/structure/structures/RuinedPortalStructure/CODEC +FD: net/minecraft/world/level/levelgen/structure/structures/RuinedPortalStructure/f_229250_ net/minecraft/world/level/levelgen/structure/structures/RuinedPortalStructure/STRUCTURE_LOCATION_PORTALS +FD: net/minecraft/world/level/levelgen/structure/structures/RuinedPortalStructure/f_229251_ net/minecraft/world/level/levelgen/structure/structures/RuinedPortalStructure/STRUCTURE_LOCATION_GIANT_PORTALS +FD: net/minecraft/world/level/levelgen/structure/structures/RuinedPortalStructure/f_229252_ net/minecraft/world/level/levelgen/structure/structures/RuinedPortalStructure/PROBABILITY_OF_GIANT_PORTAL +FD: net/minecraft/world/level/levelgen/structure/structures/RuinedPortalStructure/f_229253_ net/minecraft/world/level/levelgen/structure/structures/RuinedPortalStructure/MIN_Y_INDEX +FD: net/minecraft/world/level/levelgen/structure/structures/RuinedPortalStructure/f_229254_ net/minecraft/world/level/levelgen/structure/structures/RuinedPortalStructure/setups +FD: net/minecraft/world/level/levelgen/structure/structures/RuinedPortalStructure$Setup/f_229306_ net/minecraft/world/level/levelgen/structure/structures/RuinedPortalStructure$Setup/CODEC +FD: net/minecraft/world/level/levelgen/structure/structures/RuinedPortalStructure$Setup/f_229307_ net/minecraft/world/level/levelgen/structure/structures/RuinedPortalStructure$Setup/placement +FD: net/minecraft/world/level/levelgen/structure/structures/RuinedPortalStructure$Setup/f_229308_ net/minecraft/world/level/levelgen/structure/structures/RuinedPortalStructure$Setup/airPocketProbability +FD: net/minecraft/world/level/levelgen/structure/structures/RuinedPortalStructure$Setup/f_229309_ net/minecraft/world/level/levelgen/structure/structures/RuinedPortalStructure$Setup/mossiness +FD: net/minecraft/world/level/levelgen/structure/structures/RuinedPortalStructure$Setup/f_229310_ net/minecraft/world/level/levelgen/structure/structures/RuinedPortalStructure$Setup/overgrown +FD: net/minecraft/world/level/levelgen/structure/structures/RuinedPortalStructure$Setup/f_229311_ net/minecraft/world/level/levelgen/structure/structures/RuinedPortalStructure$Setup/vines +FD: net/minecraft/world/level/levelgen/structure/structures/RuinedPortalStructure$Setup/f_229312_ net/minecraft/world/level/levelgen/structure/structures/RuinedPortalStructure$Setup/canBeCold +FD: net/minecraft/world/level/levelgen/structure/structures/RuinedPortalStructure$Setup/f_229313_ net/minecraft/world/level/levelgen/structure/structures/RuinedPortalStructure$Setup/replaceWithBlackstone +FD: net/minecraft/world/level/levelgen/structure/structures/RuinedPortalStructure$Setup/f_229314_ net/minecraft/world/level/levelgen/structure/structures/RuinedPortalStructure$Setup/weight +FD: net/minecraft/world/level/levelgen/structure/structures/ShipwreckPieces/f_229339_ net/minecraft/world/level/levelgen/structure/structures/ShipwreckPieces/PIVOT +FD: net/minecraft/world/level/levelgen/structure/structures/ShipwreckPieces/f_229340_ net/minecraft/world/level/levelgen/structure/structures/ShipwreckPieces/STRUCTURE_LOCATION_BEACHED +FD: net/minecraft/world/level/levelgen/structure/structures/ShipwreckPieces/f_229341_ net/minecraft/world/level/levelgen/structure/structures/ShipwreckPieces/STRUCTURE_LOCATION_OCEAN +FD: net/minecraft/world/level/levelgen/structure/structures/ShipwreckPieces/f_229342_ net/minecraft/world/level/levelgen/structure/structures/ShipwreckPieces/MARKERS_TO_LOOT +FD: net/minecraft/world/level/levelgen/structure/structures/ShipwreckPieces$ShipwreckPiece/f_229352_ net/minecraft/world/level/levelgen/structure/structures/ShipwreckPieces$ShipwreckPiece/isBeached +FD: net/minecraft/world/level/levelgen/structure/structures/ShipwreckStructure/f_229384_ net/minecraft/world/level/levelgen/structure/structures/ShipwreckStructure/CODEC +FD: net/minecraft/world/level/levelgen/structure/structures/ShipwreckStructure/f_229385_ net/minecraft/world/level/levelgen/structure/structures/ShipwreckStructure/isBeached +FD: net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces/f_229403_ net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces/MAGIC_START_Y +FD: net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces/f_229404_ net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces/SMALL_DOOR_WIDTH +FD: net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces/f_229405_ net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces/SMALL_DOOR_HEIGHT +FD: net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces/f_229406_ net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces/MAX_DEPTH +FD: net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces/f_229407_ net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces/LOWEST_Y_POSITION +FD: net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces/f_229408_ net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces/CHECK_AIR +FD: net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces/f_229409_ net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces/STRONGHOLD_PIECE_WEIGHTS +FD: net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces/f_229410_ net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces/currentPieces +FD: net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces/f_229411_ net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces/imposedPiece +FD: net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces/f_229412_ net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces/totalWeight +FD: net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces/f_229413_ net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces/SMOOTH_STONE_SELECTOR +FD: net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$3/f_229457_ net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$3/$SwitchMap$net$minecraft$world$level$levelgen$structure$structures$StrongholdPieces$StrongholdPiece$SmallDoorType +FD: net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$3/f_229458_ net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$3/$SwitchMap$net$minecraft$core$Direction +FD: net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$ChestCorridor/f_229460_ net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$ChestCorridor/WIDTH +FD: net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$ChestCorridor/f_229461_ net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$ChestCorridor/HEIGHT +FD: net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$ChestCorridor/f_229462_ net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$ChestCorridor/DEPTH +FD: net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$ChestCorridor/f_229463_ net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$ChestCorridor/hasPlacedChest +FD: net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$FillerCorridor/f_229494_ net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$FillerCorridor/steps +FD: net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$FiveCrossing/f_229519_ net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$FiveCrossing/WIDTH +FD: net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$FiveCrossing/f_229520_ net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$FiveCrossing/HEIGHT +FD: net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$FiveCrossing/f_229521_ net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$FiveCrossing/DEPTH +FD: net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$FiveCrossing/f_229522_ net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$FiveCrossing/leftLow +FD: net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$FiveCrossing/f_229523_ net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$FiveCrossing/leftHigh +FD: net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$FiveCrossing/f_229524_ net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$FiveCrossing/rightLow +FD: net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$FiveCrossing/f_229525_ net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$FiveCrossing/rightHigh +FD: net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$Library/f_229583_ net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$Library/WIDTH +FD: net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$Library/f_229584_ net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$Library/HEIGHT +FD: net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$Library/f_229585_ net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$Library/TALL_HEIGHT +FD: net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$Library/f_229586_ net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$Library/DEPTH +FD: net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$Library/f_229587_ net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$Library/isTall +FD: net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$PieceWeight/f_229614_ net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$PieceWeight/pieceClass +FD: net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$PieceWeight/f_229615_ net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$PieceWeight/weight +FD: net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$PieceWeight/f_229616_ net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$PieceWeight/placeCount +FD: net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$PieceWeight/f_229617_ net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$PieceWeight/maxPlaceCount +FD: net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$PortalRoom/f_229624_ net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$PortalRoom/WIDTH +FD: net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$PortalRoom/f_229625_ net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$PortalRoom/HEIGHT +FD: net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$PortalRoom/f_229626_ net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$PortalRoom/DEPTH +FD: net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$PortalRoom/f_229627_ net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$PortalRoom/hasPlacedSpawner +FD: net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$PrisonHall/f_229656_ net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$PrisonHall/WIDTH +FD: net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$PrisonHall/f_229657_ net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$PrisonHall/HEIGHT +FD: net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$PrisonHall/f_229658_ net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$PrisonHall/DEPTH +FD: net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$RoomCrossing/f_229713_ net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$RoomCrossing/WIDTH +FD: net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$RoomCrossing/f_229714_ net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$RoomCrossing/HEIGHT +FD: net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$RoomCrossing/f_229715_ net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$RoomCrossing/DEPTH +FD: net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$RoomCrossing/f_229716_ net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$RoomCrossing/type +FD: net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$StairsDown/f_229754_ net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$StairsDown/WIDTH +FD: net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$StairsDown/f_229755_ net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$StairsDown/HEIGHT +FD: net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$StairsDown/f_229756_ net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$StairsDown/DEPTH +FD: net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$StairsDown/f_229757_ net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$StairsDown/isSource +FD: net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$StartPiece/f_229797_ net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$StartPiece/previousPiece +FD: net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$StartPiece/f_229798_ net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$StartPiece/portalRoomPiece +FD: net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$StartPiece/f_229799_ net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$StartPiece/pendingChildren +FD: net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$Straight/f_229807_ net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$Straight/WIDTH +FD: net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$Straight/f_229808_ net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$Straight/HEIGHT +FD: net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$Straight/f_229809_ net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$Straight/DEPTH +FD: net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$Straight/f_229810_ net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$Straight/leftChild +FD: net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$Straight/f_229811_ net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$Straight/rightChild +FD: net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$StraightStairsDown/f_229842_ net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$StraightStairsDown/WIDTH +FD: net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$StraightStairsDown/f_229843_ net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$StraightStairsDown/HEIGHT +FD: net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$StraightStairsDown/f_229844_ net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$StraightStairsDown/DEPTH +FD: net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$StrongholdPiece/f_229872_ net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$StrongholdPiece/entryDoor +FD: net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$StrongholdPiece$SmallDoorType/$VALUES net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$StrongholdPiece$SmallDoorType/$VALUES +FD: net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$StrongholdPiece$SmallDoorType/GRATES net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$StrongholdPiece$SmallDoorType/GRATES +FD: net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$StrongholdPiece$SmallDoorType/IRON_DOOR net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$StrongholdPiece$SmallDoorType/IRON_DOOR +FD: net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$StrongholdPiece$SmallDoorType/OPENING net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$StrongholdPiece$SmallDoorType/OPENING +FD: net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$StrongholdPiece$SmallDoorType/WOOD_DOOR net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$StrongholdPiece$SmallDoorType/WOOD_DOOR +FD: net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$Turn/f_229926_ net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$Turn/WIDTH +FD: net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$Turn/f_229927_ net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$Turn/HEIGHT +FD: net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$Turn/f_229928_ net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$Turn/DEPTH +FD: net/minecraft/world/level/levelgen/structure/structures/StrongholdStructure/f_229936_ net/minecraft/world/level/levelgen/structure/structures/StrongholdStructure/CODEC +FD: net/minecraft/world/level/levelgen/structure/structures/SwampHutPiece/f_229949_ net/minecraft/world/level/levelgen/structure/structures/SwampHutPiece/spawnedWitch +FD: net/minecraft/world/level/levelgen/structure/structures/SwampHutPiece/f_229950_ net/minecraft/world/level/levelgen/structure/structures/SwampHutPiece/spawnedCat +FD: net/minecraft/world/level/levelgen/structure/structures/SwampHutStructure/f_229971_ net/minecraft/world/level/levelgen/structure/structures/SwampHutStructure/CODEC +FD: net/minecraft/world/level/levelgen/structure/structures/WoodlandMansionPieces$MansionGrid/f_230020_ net/minecraft/world/level/levelgen/structure/structures/WoodlandMansionPieces$MansionGrid/DEFAULT_SIZE +FD: net/minecraft/world/level/levelgen/structure/structures/WoodlandMansionPieces$MansionGrid/f_230021_ net/minecraft/world/level/levelgen/structure/structures/WoodlandMansionPieces$MansionGrid/CLEAR +FD: net/minecraft/world/level/levelgen/structure/structures/WoodlandMansionPieces$MansionGrid/f_230022_ net/minecraft/world/level/levelgen/structure/structures/WoodlandMansionPieces$MansionGrid/CORRIDOR +FD: net/minecraft/world/level/levelgen/structure/structures/WoodlandMansionPieces$MansionGrid/f_230023_ net/minecraft/world/level/levelgen/structure/structures/WoodlandMansionPieces$MansionGrid/ROOM +FD: net/minecraft/world/level/levelgen/structure/structures/WoodlandMansionPieces$MansionGrid/f_230024_ net/minecraft/world/level/levelgen/structure/structures/WoodlandMansionPieces$MansionGrid/START_ROOM +FD: net/minecraft/world/level/levelgen/structure/structures/WoodlandMansionPieces$MansionGrid/f_230025_ net/minecraft/world/level/levelgen/structure/structures/WoodlandMansionPieces$MansionGrid/TEST_ROOM +FD: net/minecraft/world/level/levelgen/structure/structures/WoodlandMansionPieces$MansionGrid/f_230026_ net/minecraft/world/level/levelgen/structure/structures/WoodlandMansionPieces$MansionGrid/BLOCKED +FD: net/minecraft/world/level/levelgen/structure/structures/WoodlandMansionPieces$MansionGrid/f_230027_ net/minecraft/world/level/levelgen/structure/structures/WoodlandMansionPieces$MansionGrid/ROOM_1x1 +FD: net/minecraft/world/level/levelgen/structure/structures/WoodlandMansionPieces$MansionGrid/f_230028_ net/minecraft/world/level/levelgen/structure/structures/WoodlandMansionPieces$MansionGrid/ROOM_1x2 +FD: net/minecraft/world/level/levelgen/structure/structures/WoodlandMansionPieces$MansionGrid/f_230029_ net/minecraft/world/level/levelgen/structure/structures/WoodlandMansionPieces$MansionGrid/ROOM_2x2 +FD: net/minecraft/world/level/levelgen/structure/structures/WoodlandMansionPieces$MansionGrid/f_230030_ net/minecraft/world/level/levelgen/structure/structures/WoodlandMansionPieces$MansionGrid/ROOM_ORIGIN_FLAG +FD: net/minecraft/world/level/levelgen/structure/structures/WoodlandMansionPieces$MansionGrid/f_230031_ net/minecraft/world/level/levelgen/structure/structures/WoodlandMansionPieces$MansionGrid/ROOM_DOOR_FLAG +FD: net/minecraft/world/level/levelgen/structure/structures/WoodlandMansionPieces$MansionGrid/f_230032_ net/minecraft/world/level/levelgen/structure/structures/WoodlandMansionPieces$MansionGrid/ROOM_STAIRS_FLAG +FD: net/minecraft/world/level/levelgen/structure/structures/WoodlandMansionPieces$MansionGrid/f_230033_ net/minecraft/world/level/levelgen/structure/structures/WoodlandMansionPieces$MansionGrid/ROOM_CORRIDOR_FLAG +FD: net/minecraft/world/level/levelgen/structure/structures/WoodlandMansionPieces$MansionGrid/f_230034_ net/minecraft/world/level/levelgen/structure/structures/WoodlandMansionPieces$MansionGrid/ROOM_TYPE_MASK +FD: net/minecraft/world/level/levelgen/structure/structures/WoodlandMansionPieces$MansionGrid/f_230035_ net/minecraft/world/level/levelgen/structure/structures/WoodlandMansionPieces$MansionGrid/ROOM_ID_MASK +FD: net/minecraft/world/level/levelgen/structure/structures/WoodlandMansionPieces$MansionGrid/f_230036_ net/minecraft/world/level/levelgen/structure/structures/WoodlandMansionPieces$MansionGrid/random +FD: net/minecraft/world/level/levelgen/structure/structures/WoodlandMansionPieces$MansionGrid/f_230037_ net/minecraft/world/level/levelgen/structure/structures/WoodlandMansionPieces$MansionGrid/baseGrid +FD: net/minecraft/world/level/levelgen/structure/structures/WoodlandMansionPieces$MansionGrid/f_230038_ net/minecraft/world/level/levelgen/structure/structures/WoodlandMansionPieces$MansionGrid/thirdFloorGrid +FD: net/minecraft/world/level/levelgen/structure/structures/WoodlandMansionPieces$MansionGrid/f_230039_ net/minecraft/world/level/levelgen/structure/structures/WoodlandMansionPieces$MansionGrid/floorRooms +FD: net/minecraft/world/level/levelgen/structure/structures/WoodlandMansionPieces$MansionGrid/f_230040_ net/minecraft/world/level/levelgen/structure/structures/WoodlandMansionPieces$MansionGrid/entranceX +FD: net/minecraft/world/level/levelgen/structure/structures/WoodlandMansionPieces$MansionGrid/f_230041_ net/minecraft/world/level/levelgen/structure/structures/WoodlandMansionPieces$MansionGrid/entranceY +FD: net/minecraft/world/level/levelgen/structure/structures/WoodlandMansionPieces$MansionPiecePlacer/f_230073_ net/minecraft/world/level/levelgen/structure/structures/WoodlandMansionPieces$MansionPiecePlacer/structureTemplateManager +FD: net/minecraft/world/level/levelgen/structure/structures/WoodlandMansionPieces$MansionPiecePlacer/f_230074_ net/minecraft/world/level/levelgen/structure/structures/WoodlandMansionPieces$MansionPiecePlacer/random +FD: net/minecraft/world/level/levelgen/structure/structures/WoodlandMansionPieces$MansionPiecePlacer/f_230075_ net/minecraft/world/level/levelgen/structure/structures/WoodlandMansionPieces$MansionPiecePlacer/startX +FD: net/minecraft/world/level/levelgen/structure/structures/WoodlandMansionPieces$MansionPiecePlacer/f_230076_ net/minecraft/world/level/levelgen/structure/structures/WoodlandMansionPieces$MansionPiecePlacer/startY +FD: net/minecraft/world/level/levelgen/structure/structures/WoodlandMansionPieces$PlacementData/f_230138_ net/minecraft/world/level/levelgen/structure/structures/WoodlandMansionPieces$PlacementData/rotation +FD: net/minecraft/world/level/levelgen/structure/structures/WoodlandMansionPieces$PlacementData/f_230139_ net/minecraft/world/level/levelgen/structure/structures/WoodlandMansionPieces$PlacementData/position +FD: net/minecraft/world/level/levelgen/structure/structures/WoodlandMansionPieces$PlacementData/f_230140_ net/minecraft/world/level/levelgen/structure/structures/WoodlandMansionPieces$PlacementData/wallType +FD: net/minecraft/world/level/levelgen/structure/structures/WoodlandMansionPieces$SimpleGrid/f_230159_ net/minecraft/world/level/levelgen/structure/structures/WoodlandMansionPieces$SimpleGrid/grid +FD: net/minecraft/world/level/levelgen/structure/structures/WoodlandMansionPieces$SimpleGrid/f_230160_ net/minecraft/world/level/levelgen/structure/structures/WoodlandMansionPieces$SimpleGrid/width +FD: net/minecraft/world/level/levelgen/structure/structures/WoodlandMansionPieces$SimpleGrid/f_230161_ net/minecraft/world/level/levelgen/structure/structures/WoodlandMansionPieces$SimpleGrid/height +FD: net/minecraft/world/level/levelgen/structure/structures/WoodlandMansionPieces$SimpleGrid/f_230162_ net/minecraft/world/level/levelgen/structure/structures/WoodlandMansionPieces$SimpleGrid/valueIfOutside +FD: net/minecraft/world/level/levelgen/structure/structures/WoodlandMansionStructure/f_230222_ net/minecraft/world/level/levelgen/structure/structures/WoodlandMansionStructure/CODEC +FD: net/minecraft/world/level/levelgen/structure/templatesystem/AlwaysTrueTest/f_73953_ net/minecraft/world/level/levelgen/structure/templatesystem/AlwaysTrueTest/CODEC +FD: net/minecraft/world/level/levelgen/structure/templatesystem/AlwaysTrueTest/f_73954_ net/minecraft/world/level/levelgen/structure/templatesystem/AlwaysTrueTest/INSTANCE +FD: net/minecraft/world/level/levelgen/structure/templatesystem/AxisAlignedLinearPosTest/f_73962_ net/minecraft/world/level/levelgen/structure/templatesystem/AxisAlignedLinearPosTest/CODEC +FD: net/minecraft/world/level/levelgen/structure/templatesystem/AxisAlignedLinearPosTest/f_73963_ net/minecraft/world/level/levelgen/structure/templatesystem/AxisAlignedLinearPosTest/minChance +FD: net/minecraft/world/level/levelgen/structure/templatesystem/AxisAlignedLinearPosTest/f_73964_ net/minecraft/world/level/levelgen/structure/templatesystem/AxisAlignedLinearPosTest/maxChance +FD: net/minecraft/world/level/levelgen/structure/templatesystem/AxisAlignedLinearPosTest/f_73965_ net/minecraft/world/level/levelgen/structure/templatesystem/AxisAlignedLinearPosTest/minDist +FD: net/minecraft/world/level/levelgen/structure/templatesystem/AxisAlignedLinearPosTest/f_73966_ net/minecraft/world/level/levelgen/structure/templatesystem/AxisAlignedLinearPosTest/maxDist +FD: net/minecraft/world/level/levelgen/structure/templatesystem/AxisAlignedLinearPosTest/f_73967_ net/minecraft/world/level/levelgen/structure/templatesystem/AxisAlignedLinearPosTest/axis +FD: net/minecraft/world/level/levelgen/structure/templatesystem/BlackstoneReplaceProcessor/f_73993_ net/minecraft/world/level/levelgen/structure/templatesystem/BlackstoneReplaceProcessor/CODEC +FD: net/minecraft/world/level/levelgen/structure/templatesystem/BlackstoneReplaceProcessor/f_73994_ net/minecraft/world/level/levelgen/structure/templatesystem/BlackstoneReplaceProcessor/INSTANCE +FD: net/minecraft/world/level/levelgen/structure/templatesystem/BlackstoneReplaceProcessor/f_73995_ net/minecraft/world/level/levelgen/structure/templatesystem/BlackstoneReplaceProcessor/replacements +FD: net/minecraft/world/level/levelgen/structure/templatesystem/BlockAgeProcessor/f_163720_ net/minecraft/world/level/levelgen/structure/templatesystem/BlockAgeProcessor/PROBABILITY_OF_REPLACING_FULL_BLOCK +FD: net/minecraft/world/level/levelgen/structure/templatesystem/BlockAgeProcessor/f_163721_ net/minecraft/world/level/levelgen/structure/templatesystem/BlockAgeProcessor/PROBABILITY_OF_REPLACING_STAIRS +FD: net/minecraft/world/level/levelgen/structure/templatesystem/BlockAgeProcessor/f_163722_ net/minecraft/world/level/levelgen/structure/templatesystem/BlockAgeProcessor/PROBABILITY_OF_REPLACING_OBSIDIAN +FD: net/minecraft/world/level/levelgen/structure/templatesystem/BlockAgeProcessor/f_163723_ net/minecraft/world/level/levelgen/structure/templatesystem/BlockAgeProcessor/NON_MOSSY_REPLACEMENTS +FD: net/minecraft/world/level/levelgen/structure/templatesystem/BlockAgeProcessor/f_74009_ net/minecraft/world/level/levelgen/structure/templatesystem/BlockAgeProcessor/CODEC +FD: net/minecraft/world/level/levelgen/structure/templatesystem/BlockAgeProcessor/f_74010_ net/minecraft/world/level/levelgen/structure/templatesystem/BlockAgeProcessor/mossiness +FD: net/minecraft/world/level/levelgen/structure/templatesystem/BlockIgnoreProcessor/f_74045_ net/minecraft/world/level/levelgen/structure/templatesystem/BlockIgnoreProcessor/CODEC +FD: net/minecraft/world/level/levelgen/structure/templatesystem/BlockIgnoreProcessor/f_74046_ net/minecraft/world/level/levelgen/structure/templatesystem/BlockIgnoreProcessor/STRUCTURE_BLOCK +FD: net/minecraft/world/level/levelgen/structure/templatesystem/BlockIgnoreProcessor/f_74047_ net/minecraft/world/level/levelgen/structure/templatesystem/BlockIgnoreProcessor/AIR +FD: net/minecraft/world/level/levelgen/structure/templatesystem/BlockIgnoreProcessor/f_74048_ net/minecraft/world/level/levelgen/structure/templatesystem/BlockIgnoreProcessor/STRUCTURE_AND_AIR +FD: net/minecraft/world/level/levelgen/structure/templatesystem/BlockIgnoreProcessor/f_74049_ net/minecraft/world/level/levelgen/structure/templatesystem/BlockIgnoreProcessor/toIgnore +FD: net/minecraft/world/level/levelgen/structure/templatesystem/BlockMatchTest/f_74063_ net/minecraft/world/level/levelgen/structure/templatesystem/BlockMatchTest/CODEC +FD: net/minecraft/world/level/levelgen/structure/templatesystem/BlockMatchTest/f_74064_ net/minecraft/world/level/levelgen/structure/templatesystem/BlockMatchTest/block +FD: net/minecraft/world/level/levelgen/structure/templatesystem/BlockRotProcessor/f_230279_ net/minecraft/world/level/levelgen/structure/templatesystem/BlockRotProcessor/rottableBlocks +FD: net/minecraft/world/level/levelgen/structure/templatesystem/BlockRotProcessor/f_74074_ net/minecraft/world/level/levelgen/structure/templatesystem/BlockRotProcessor/CODEC +FD: net/minecraft/world/level/levelgen/structure/templatesystem/BlockRotProcessor/f_74075_ net/minecraft/world/level/levelgen/structure/templatesystem/BlockRotProcessor/integrity +FD: net/minecraft/world/level/levelgen/structure/templatesystem/BlockStateMatchTest/f_74089_ net/minecraft/world/level/levelgen/structure/templatesystem/BlockStateMatchTest/CODEC +FD: net/minecraft/world/level/levelgen/structure/templatesystem/BlockStateMatchTest/f_74090_ net/minecraft/world/level/levelgen/structure/templatesystem/BlockStateMatchTest/blockState +FD: net/minecraft/world/level/levelgen/structure/templatesystem/CappedProcessor/f_276424_ net/minecraft/world/level/levelgen/structure/templatesystem/CappedProcessor/CODEC +FD: net/minecraft/world/level/levelgen/structure/templatesystem/CappedProcessor/f_276479_ net/minecraft/world/level/levelgen/structure/templatesystem/CappedProcessor/limit +FD: net/minecraft/world/level/levelgen/structure/templatesystem/CappedProcessor/f_276605_ net/minecraft/world/level/levelgen/structure/templatesystem/CappedProcessor/delegate +FD: net/minecraft/world/level/levelgen/structure/templatesystem/GravityProcessor/f_74100_ net/minecraft/world/level/levelgen/structure/templatesystem/GravityProcessor/CODEC +FD: net/minecraft/world/level/levelgen/structure/templatesystem/GravityProcessor/f_74101_ net/minecraft/world/level/levelgen/structure/templatesystem/GravityProcessor/heightmap +FD: net/minecraft/world/level/levelgen/structure/templatesystem/GravityProcessor/f_74102_ net/minecraft/world/level/levelgen/structure/templatesystem/GravityProcessor/offset +FD: net/minecraft/world/level/levelgen/structure/templatesystem/JigsawReplacementProcessor/f_276536_ net/minecraft/world/level/levelgen/structure/templatesystem/JigsawReplacementProcessor/LOGGER +FD: net/minecraft/world/level/levelgen/structure/templatesystem/JigsawReplacementProcessor/f_74121_ net/minecraft/world/level/levelgen/structure/templatesystem/JigsawReplacementProcessor/CODEC +FD: net/minecraft/world/level/levelgen/structure/templatesystem/JigsawReplacementProcessor/f_74122_ net/minecraft/world/level/levelgen/structure/templatesystem/JigsawReplacementProcessor/INSTANCE +FD: net/minecraft/world/level/levelgen/structure/templatesystem/LavaSubmergedBlockProcessor/f_74134_ net/minecraft/world/level/levelgen/structure/templatesystem/LavaSubmergedBlockProcessor/CODEC +FD: net/minecraft/world/level/levelgen/structure/templatesystem/LavaSubmergedBlockProcessor/f_74135_ net/minecraft/world/level/levelgen/structure/templatesystem/LavaSubmergedBlockProcessor/INSTANCE +FD: net/minecraft/world/level/levelgen/structure/templatesystem/LinearPosTest/f_74147_ net/minecraft/world/level/levelgen/structure/templatesystem/LinearPosTest/CODEC +FD: net/minecraft/world/level/levelgen/structure/templatesystem/LinearPosTest/f_74148_ net/minecraft/world/level/levelgen/structure/templatesystem/LinearPosTest/minChance +FD: net/minecraft/world/level/levelgen/structure/templatesystem/LinearPosTest/f_74149_ net/minecraft/world/level/levelgen/structure/templatesystem/LinearPosTest/maxChance +FD: net/minecraft/world/level/levelgen/structure/templatesystem/LinearPosTest/f_74150_ net/minecraft/world/level/levelgen/structure/templatesystem/LinearPosTest/minDist +FD: net/minecraft/world/level/levelgen/structure/templatesystem/LinearPosTest/f_74151_ net/minecraft/world/level/levelgen/structure/templatesystem/LinearPosTest/maxDist +FD: net/minecraft/world/level/levelgen/structure/templatesystem/NopProcessor/f_74174_ net/minecraft/world/level/levelgen/structure/templatesystem/NopProcessor/CODEC +FD: net/minecraft/world/level/levelgen/structure/templatesystem/NopProcessor/f_74175_ net/minecraft/world/level/levelgen/structure/templatesystem/NopProcessor/INSTANCE +FD: net/minecraft/world/level/levelgen/structure/templatesystem/PosAlwaysTrueTest/f_74187_ net/minecraft/world/level/levelgen/structure/templatesystem/PosAlwaysTrueTest/CODEC +FD: net/minecraft/world/level/levelgen/structure/templatesystem/PosAlwaysTrueTest/f_74188_ net/minecraft/world/level/levelgen/structure/templatesystem/PosAlwaysTrueTest/INSTANCE +FD: net/minecraft/world/level/levelgen/structure/templatesystem/PosRuleTest/f_74198_ net/minecraft/world/level/levelgen/structure/templatesystem/PosRuleTest/CODEC +FD: net/minecraft/world/level/levelgen/structure/templatesystem/PosRuleTestType/f_74205_ net/minecraft/world/level/levelgen/structure/templatesystem/PosRuleTestType/ALWAYS_TRUE_TEST +FD: net/minecraft/world/level/levelgen/structure/templatesystem/PosRuleTestType/f_74206_ net/minecraft/world/level/levelgen/structure/templatesystem/PosRuleTestType/LINEAR_POS_TEST +FD: net/minecraft/world/level/levelgen/structure/templatesystem/PosRuleTestType/f_74207_ net/minecraft/world/level/levelgen/structure/templatesystem/PosRuleTestType/AXIS_ALIGNED_LINEAR_POS_TEST +FD: net/minecraft/world/level/levelgen/structure/templatesystem/ProcessorRule/f_276504_ net/minecraft/world/level/levelgen/structure/templatesystem/ProcessorRule/blockEntityModifier +FD: net/minecraft/world/level/levelgen/structure/templatesystem/ProcessorRule/f_276568_ net/minecraft/world/level/levelgen/structure/templatesystem/ProcessorRule/DEFAULT_BLOCK_ENTITY_MODIFIER +FD: net/minecraft/world/level/levelgen/structure/templatesystem/ProcessorRule/f_74215_ net/minecraft/world/level/levelgen/structure/templatesystem/ProcessorRule/CODEC +FD: net/minecraft/world/level/levelgen/structure/templatesystem/ProcessorRule/f_74216_ net/minecraft/world/level/levelgen/structure/templatesystem/ProcessorRule/inputPredicate +FD: net/minecraft/world/level/levelgen/structure/templatesystem/ProcessorRule/f_74217_ net/minecraft/world/level/levelgen/structure/templatesystem/ProcessorRule/locPredicate +FD: net/minecraft/world/level/levelgen/structure/templatesystem/ProcessorRule/f_74218_ net/minecraft/world/level/levelgen/structure/templatesystem/ProcessorRule/posPredicate +FD: net/minecraft/world/level/levelgen/structure/templatesystem/ProcessorRule/f_74219_ net/minecraft/world/level/levelgen/structure/templatesystem/ProcessorRule/outputState +FD: net/minecraft/world/level/levelgen/structure/templatesystem/ProtectedBlockProcessor/f_163748_ net/minecraft/world/level/levelgen/structure/templatesystem/ProtectedBlockProcessor/cannotReplace +FD: net/minecraft/world/level/levelgen/structure/templatesystem/ProtectedBlockProcessor/f_163749_ net/minecraft/world/level/levelgen/structure/templatesystem/ProtectedBlockProcessor/CODEC +FD: net/minecraft/world/level/levelgen/structure/templatesystem/RandomBlockMatchTest/f_74258_ net/minecraft/world/level/levelgen/structure/templatesystem/RandomBlockMatchTest/CODEC +FD: net/minecraft/world/level/levelgen/structure/templatesystem/RandomBlockMatchTest/f_74259_ net/minecraft/world/level/levelgen/structure/templatesystem/RandomBlockMatchTest/block +FD: net/minecraft/world/level/levelgen/structure/templatesystem/RandomBlockMatchTest/f_74260_ net/minecraft/world/level/levelgen/structure/templatesystem/RandomBlockMatchTest/probability +FD: net/minecraft/world/level/levelgen/structure/templatesystem/RandomBlockStateMatchTest/f_74275_ net/minecraft/world/level/levelgen/structure/templatesystem/RandomBlockStateMatchTest/CODEC +FD: net/minecraft/world/level/levelgen/structure/templatesystem/RandomBlockStateMatchTest/f_74276_ net/minecraft/world/level/levelgen/structure/templatesystem/RandomBlockStateMatchTest/blockState +FD: net/minecraft/world/level/levelgen/structure/templatesystem/RandomBlockStateMatchTest/f_74277_ net/minecraft/world/level/levelgen/structure/templatesystem/RandomBlockStateMatchTest/probability +FD: net/minecraft/world/level/levelgen/structure/templatesystem/RuleProcessor/f_74292_ net/minecraft/world/level/levelgen/structure/templatesystem/RuleProcessor/CODEC +FD: net/minecraft/world/level/levelgen/structure/templatesystem/RuleProcessor/f_74293_ net/minecraft/world/level/levelgen/structure/templatesystem/RuleProcessor/rules +FD: net/minecraft/world/level/levelgen/structure/templatesystem/RuleTest/f_74307_ net/minecraft/world/level/levelgen/structure/templatesystem/RuleTest/CODEC +FD: net/minecraft/world/level/levelgen/structure/templatesystem/RuleTestType/f_74312_ net/minecraft/world/level/levelgen/structure/templatesystem/RuleTestType/ALWAYS_TRUE_TEST +FD: net/minecraft/world/level/levelgen/structure/templatesystem/RuleTestType/f_74313_ net/minecraft/world/level/levelgen/structure/templatesystem/RuleTestType/BLOCK_TEST +FD: net/minecraft/world/level/levelgen/structure/templatesystem/RuleTestType/f_74314_ net/minecraft/world/level/levelgen/structure/templatesystem/RuleTestType/BLOCKSTATE_TEST +FD: net/minecraft/world/level/levelgen/structure/templatesystem/RuleTestType/f_74315_ net/minecraft/world/level/levelgen/structure/templatesystem/RuleTestType/TAG_TEST +FD: net/minecraft/world/level/levelgen/structure/templatesystem/RuleTestType/f_74316_ net/minecraft/world/level/levelgen/structure/templatesystem/RuleTestType/RANDOM_BLOCK_TEST +FD: net/minecraft/world/level/levelgen/structure/templatesystem/RuleTestType/f_74317_ net/minecraft/world/level/levelgen/structure/templatesystem/RuleTestType/RANDOM_BLOCKSTATE_TEST +FD: net/minecraft/world/level/levelgen/structure/templatesystem/StructurePlaceSettings/f_74361_ net/minecraft/world/level/levelgen/structure/templatesystem/StructurePlaceSettings/mirror +FD: net/minecraft/world/level/levelgen/structure/templatesystem/StructurePlaceSettings/f_74362_ net/minecraft/world/level/levelgen/structure/templatesystem/StructurePlaceSettings/rotation +FD: net/minecraft/world/level/levelgen/structure/templatesystem/StructurePlaceSettings/f_74363_ net/minecraft/world/level/levelgen/structure/templatesystem/StructurePlaceSettings/rotationPivot +FD: net/minecraft/world/level/levelgen/structure/templatesystem/StructurePlaceSettings/f_74364_ net/minecraft/world/level/levelgen/structure/templatesystem/StructurePlaceSettings/ignoreEntities +FD: net/minecraft/world/level/levelgen/structure/templatesystem/StructurePlaceSettings/f_74366_ net/minecraft/world/level/levelgen/structure/templatesystem/StructurePlaceSettings/boundingBox +FD: net/minecraft/world/level/levelgen/structure/templatesystem/StructurePlaceSettings/f_74367_ net/minecraft/world/level/levelgen/structure/templatesystem/StructurePlaceSettings/keepLiquids +FD: net/minecraft/world/level/levelgen/structure/templatesystem/StructurePlaceSettings/f_74368_ net/minecraft/world/level/levelgen/structure/templatesystem/StructurePlaceSettings/random +FD: net/minecraft/world/level/levelgen/structure/templatesystem/StructurePlaceSettings/f_74369_ net/minecraft/world/level/levelgen/structure/templatesystem/StructurePlaceSettings/palette +FD: net/minecraft/world/level/levelgen/structure/templatesystem/StructurePlaceSettings/f_74370_ net/minecraft/world/level/levelgen/structure/templatesystem/StructurePlaceSettings/processors +FD: net/minecraft/world/level/levelgen/structure/templatesystem/StructurePlaceSettings/f_74371_ net/minecraft/world/level/levelgen/structure/templatesystem/StructurePlaceSettings/knownShape +FD: net/minecraft/world/level/levelgen/structure/templatesystem/StructurePlaceSettings/f_74372_ net/minecraft/world/level/levelgen/structure/templatesystem/StructurePlaceSettings/finalizeEntities +FD: net/minecraft/world/level/levelgen/structure/templatesystem/StructureProcessorList/f_74422_ net/minecraft/world/level/levelgen/structure/templatesystem/StructureProcessorList/list +FD: net/minecraft/world/level/levelgen/structure/templatesystem/StructureProcessorType/f_163784_ net/minecraft/world/level/levelgen/structure/templatesystem/StructureProcessorType/PROTECTED_BLOCKS +FD: net/minecraft/world/level/levelgen/structure/templatesystem/StructureProcessorType/f_276421_ net/minecraft/world/level/levelgen/structure/templatesystem/StructureProcessorType/CAPPED +FD: net/minecraft/world/level/levelgen/structure/templatesystem/StructureProcessorType/f_74456_ net/minecraft/world/level/levelgen/structure/templatesystem/StructureProcessorType/BLOCK_IGNORE +FD: net/minecraft/world/level/levelgen/structure/templatesystem/StructureProcessorType/f_74457_ net/minecraft/world/level/levelgen/structure/templatesystem/StructureProcessorType/BLOCK_ROT +FD: net/minecraft/world/level/levelgen/structure/templatesystem/StructureProcessorType/f_74458_ net/minecraft/world/level/levelgen/structure/templatesystem/StructureProcessorType/GRAVITY +FD: net/minecraft/world/level/levelgen/structure/templatesystem/StructureProcessorType/f_74459_ net/minecraft/world/level/levelgen/structure/templatesystem/StructureProcessorType/JIGSAW_REPLACEMENT +FD: net/minecraft/world/level/levelgen/structure/templatesystem/StructureProcessorType/f_74460_ net/minecraft/world/level/levelgen/structure/templatesystem/StructureProcessorType/RULE +FD: net/minecraft/world/level/levelgen/structure/templatesystem/StructureProcessorType/f_74461_ net/minecraft/world/level/levelgen/structure/templatesystem/StructureProcessorType/NOP +FD: net/minecraft/world/level/levelgen/structure/templatesystem/StructureProcessorType/f_74462_ net/minecraft/world/level/levelgen/structure/templatesystem/StructureProcessorType/BLOCK_AGE +FD: net/minecraft/world/level/levelgen/structure/templatesystem/StructureProcessorType/f_74463_ net/minecraft/world/level/levelgen/structure/templatesystem/StructureProcessorType/BLACKSTONE_REPLACE +FD: net/minecraft/world/level/levelgen/structure/templatesystem/StructureProcessorType/f_74464_ net/minecraft/world/level/levelgen/structure/templatesystem/StructureProcessorType/LAVA_SUBMERGED_BLOCK +FD: net/minecraft/world/level/levelgen/structure/templatesystem/StructureProcessorType/f_74465_ net/minecraft/world/level/levelgen/structure/templatesystem/StructureProcessorType/SINGLE_CODEC +FD: net/minecraft/world/level/levelgen/structure/templatesystem/StructureProcessorType/f_74466_ net/minecraft/world/level/levelgen/structure/templatesystem/StructureProcessorType/LIST_OBJECT_CODEC +FD: net/minecraft/world/level/levelgen/structure/templatesystem/StructureProcessorType/f_74467_ net/minecraft/world/level/levelgen/structure/templatesystem/StructureProcessorType/DIRECT_CODEC +FD: net/minecraft/world/level/levelgen/structure/templatesystem/StructureProcessorType/f_74468_ net/minecraft/world/level/levelgen/structure/templatesystem/StructureProcessorType/LIST_CODEC +FD: net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate/f_163789_ net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate/PALETTE_TAG +FD: net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate/f_163790_ net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate/PALETTE_LIST_TAG +FD: net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate/f_163791_ net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate/ENTITIES_TAG +FD: net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate/f_163792_ net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate/BLOCKS_TAG +FD: net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate/f_163793_ net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate/BLOCK_TAG_POS +FD: net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate/f_163794_ net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate/BLOCK_TAG_STATE +FD: net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate/f_163795_ net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate/BLOCK_TAG_NBT +FD: net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate/f_163796_ net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate/ENTITY_TAG_POS +FD: net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate/f_163797_ net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate/ENTITY_TAG_BLOCKPOS +FD: net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate/f_163798_ net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate/ENTITY_TAG_NBT +FD: net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate/f_163799_ net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate/SIZE_TAG +FD: net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate/f_74482_ net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate/palettes +FD: net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate/f_74483_ net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate/entityInfoList +FD: net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate/f_74484_ net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate/size +FD: net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate/f_74485_ net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate/author +FD: net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate$1/f_74642_ net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate$1/$SwitchMap$net$minecraft$world$level$block$Rotation +FD: net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate$1/f_74643_ net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate$1/$SwitchMap$net$minecraft$world$level$block$Mirror +FD: net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate$Palette/f_74645_ net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate$Palette/blocks +FD: net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate$Palette/f_74646_ net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate$Palette/cache +FD: net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate$SimplePalette/f_74660_ net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate$SimplePalette/DEFAULT_BLOCK_STATE +FD: net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate$SimplePalette/f_74661_ net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate$SimplePalette/ids +FD: net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate$SimplePalette/f_74662_ net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate$SimplePalette/lastId +FD: net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate$StructureBlockInfo/f_74675_ net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate$StructureBlockInfo/pos +FD: net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate$StructureBlockInfo/f_74676_ net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate$StructureBlockInfo/state +FD: net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate$StructureBlockInfo/f_74677_ net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate$StructureBlockInfo/nbt +FD: net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate$StructureEntityInfo/f_74683_ net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate$StructureEntityInfo/pos +FD: net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate$StructureEntityInfo/f_74684_ net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate$StructureEntityInfo/blockPos +FD: net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate$StructureEntityInfo/f_74685_ net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate$StructureEntityInfo/nbt +FD: net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager/f_230340_ net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager/LOGGER +FD: net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager/f_230341_ net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager/STRUCTURE_DIRECTORY_NAME +FD: net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager/f_230342_ net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager/TEST_STRUCTURES_DIR +FD: net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager/f_230343_ net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager/STRUCTURE_FILE_EXTENSION +FD: net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager/f_230344_ net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager/STRUCTURE_TEXT_FILE_EXTENSION +FD: net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager/f_230345_ net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager/structureRepository +FD: net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager/f_230346_ net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager/fixerUpper +FD: net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager/f_230347_ net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager/resourceManager +FD: net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager/f_230348_ net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager/generatedDir +FD: net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager/f_230349_ net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager/sources +FD: net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager/f_243724_ net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager/blockLookup +FD: net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager/f_244413_ net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager/LISTER +FD: net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager$Source/f_230440_ net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager$Source/loader +FD: net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager$Source/f_230441_ net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager$Source/lister +FD: net/minecraft/world/level/levelgen/structure/templatesystem/TagMatchTest/f_74690_ net/minecraft/world/level/levelgen/structure/templatesystem/TagMatchTest/CODEC +FD: net/minecraft/world/level/levelgen/structure/templatesystem/TagMatchTest/f_74691_ net/minecraft/world/level/levelgen/structure/templatesystem/TagMatchTest/tag +FD: net/minecraft/world/level/levelgen/structure/templatesystem/rule/blockentity/AppendLoot/f_276575_ net/minecraft/world/level/levelgen/structure/templatesystem/rule/blockentity/AppendLoot/lootTable +FD: net/minecraft/world/level/levelgen/structure/templatesystem/rule/blockentity/AppendLoot/f_276677_ net/minecraft/world/level/levelgen/structure/templatesystem/rule/blockentity/AppendLoot/LOGGER +FD: net/minecraft/world/level/levelgen/structure/templatesystem/rule/blockentity/AppendLoot/f_276688_ net/minecraft/world/level/levelgen/structure/templatesystem/rule/blockentity/AppendLoot/CODEC +FD: net/minecraft/world/level/levelgen/structure/templatesystem/rule/blockentity/AppendStatic/f_276564_ net/minecraft/world/level/levelgen/structure/templatesystem/rule/blockentity/AppendStatic/CODEC +FD: net/minecraft/world/level/levelgen/structure/templatesystem/rule/blockentity/AppendStatic/f_276635_ net/minecraft/world/level/levelgen/structure/templatesystem/rule/blockentity/AppendStatic/tag +FD: net/minecraft/world/level/levelgen/structure/templatesystem/rule/blockentity/Clear/f_276495_ net/minecraft/world/level/levelgen/structure/templatesystem/rule/blockentity/Clear/INSTANCE +FD: net/minecraft/world/level/levelgen/structure/templatesystem/rule/blockentity/Clear/f_276500_ net/minecraft/world/level/levelgen/structure/templatesystem/rule/blockentity/Clear/CODEC +FD: net/minecraft/world/level/levelgen/structure/templatesystem/rule/blockentity/Passthrough/f_276645_ net/minecraft/world/level/levelgen/structure/templatesystem/rule/blockentity/Passthrough/INSTANCE +FD: net/minecraft/world/level/levelgen/structure/templatesystem/rule/blockentity/Passthrough/f_276690_ net/minecraft/world/level/levelgen/structure/templatesystem/rule/blockentity/Passthrough/CODEC +FD: net/minecraft/world/level/levelgen/structure/templatesystem/rule/blockentity/RuleBlockEntityModifier/f_276484_ net/minecraft/world/level/levelgen/structure/templatesystem/rule/blockentity/RuleBlockEntityModifier/CODEC +FD: net/minecraft/world/level/levelgen/structure/templatesystem/rule/blockentity/RuleBlockEntityModifierType/f_276423_ net/minecraft/world/level/levelgen/structure/templatesystem/rule/blockentity/RuleBlockEntityModifierType/APPEND_STATIC +FD: net/minecraft/world/level/levelgen/structure/templatesystem/rule/blockentity/RuleBlockEntityModifierType/f_276455_ net/minecraft/world/level/levelgen/structure/templatesystem/rule/blockentity/RuleBlockEntityModifierType/CLEAR +FD: net/minecraft/world/level/levelgen/structure/templatesystem/rule/blockentity/RuleBlockEntityModifierType/f_276528_ net/minecraft/world/level/levelgen/structure/templatesystem/rule/blockentity/RuleBlockEntityModifierType/PASSTHROUGH +FD: net/minecraft/world/level/levelgen/structure/templatesystem/rule/blockentity/RuleBlockEntityModifierType/f_276561_ net/minecraft/world/level/levelgen/structure/templatesystem/rule/blockentity/RuleBlockEntityModifierType/APPEND_LOOT +FD: net/minecraft/world/level/levelgen/synth/BlendedNoise/f_164288_ net/minecraft/world/level/levelgen/synth/BlendedNoise/minLimitNoise +FD: net/minecraft/world/level/levelgen/synth/BlendedNoise/f_164289_ net/minecraft/world/level/levelgen/synth/BlendedNoise/maxLimitNoise +FD: net/minecraft/world/level/levelgen/synth/BlendedNoise/f_164290_ net/minecraft/world/level/levelgen/synth/BlendedNoise/mainNoise +FD: net/minecraft/world/level/levelgen/synth/BlendedNoise/f_192799_ net/minecraft/world/level/levelgen/synth/BlendedNoise/xzScale +FD: net/minecraft/world/level/levelgen/synth/BlendedNoise/f_192800_ net/minecraft/world/level/levelgen/synth/BlendedNoise/yScale +FD: net/minecraft/world/level/levelgen/synth/BlendedNoise/f_210616_ net/minecraft/world/level/levelgen/synth/BlendedNoise/CODEC +FD: net/minecraft/world/level/levelgen/synth/BlendedNoise/f_210617_ net/minecraft/world/level/levelgen/synth/BlendedNoise/maxValue +FD: net/minecraft/world/level/levelgen/synth/BlendedNoise/f_230454_ net/minecraft/world/level/levelgen/synth/BlendedNoise/SCALE_RANGE +FD: net/minecraft/world/level/levelgen/synth/BlendedNoise/f_230455_ net/minecraft/world/level/levelgen/synth/BlendedNoise/DATA_CODEC +FD: net/minecraft/world/level/levelgen/synth/BlendedNoise/f_230456_ net/minecraft/world/level/levelgen/synth/BlendedNoise/xzMultiplier +FD: net/minecraft/world/level/levelgen/synth/BlendedNoise/f_230457_ net/minecraft/world/level/levelgen/synth/BlendedNoise/yMultiplier +FD: net/minecraft/world/level/levelgen/synth/BlendedNoise/f_230458_ net/minecraft/world/level/levelgen/synth/BlendedNoise/xzFactor +FD: net/minecraft/world/level/levelgen/synth/BlendedNoise/f_230459_ net/minecraft/world/level/levelgen/synth/BlendedNoise/yFactor +FD: net/minecraft/world/level/levelgen/synth/BlendedNoise/f_230460_ net/minecraft/world/level/levelgen/synth/BlendedNoise/smearScaleMultiplier +FD: net/minecraft/world/level/levelgen/synth/ImprovedNoise/f_164305_ net/minecraft/world/level/levelgen/synth/ImprovedNoise/SHIFT_UP_EPSILON +FD: net/minecraft/world/level/levelgen/synth/ImprovedNoise/f_75321_ net/minecraft/world/level/levelgen/synth/ImprovedNoise/xo +FD: net/minecraft/world/level/levelgen/synth/ImprovedNoise/f_75322_ net/minecraft/world/level/levelgen/synth/ImprovedNoise/yo +FD: net/minecraft/world/level/levelgen/synth/ImprovedNoise/f_75323_ net/minecraft/world/level/levelgen/synth/ImprovedNoise/zo +FD: net/minecraft/world/level/levelgen/synth/ImprovedNoise/f_75324_ net/minecraft/world/level/levelgen/synth/ImprovedNoise/p +FD: net/minecraft/world/level/levelgen/synth/NormalNoise/f_164344_ net/minecraft/world/level/levelgen/synth/NormalNoise/INPUT_FACTOR +FD: net/minecraft/world/level/levelgen/synth/NormalNoise/f_164345_ net/minecraft/world/level/levelgen/synth/NormalNoise/TARGET_DEVIATION +FD: net/minecraft/world/level/levelgen/synth/NormalNoise/f_210624_ net/minecraft/world/level/levelgen/synth/NormalNoise/maxValue +FD: net/minecraft/world/level/levelgen/synth/NormalNoise/f_210625_ net/minecraft/world/level/levelgen/synth/NormalNoise/parameters +FD: net/minecraft/world/level/levelgen/synth/NormalNoise/f_75373_ net/minecraft/world/level/levelgen/synth/NormalNoise/valueFactor +FD: net/minecraft/world/level/levelgen/synth/NormalNoise/f_75374_ net/minecraft/world/level/levelgen/synth/NormalNoise/first +FD: net/minecraft/world/level/levelgen/synth/NormalNoise/f_75375_ net/minecraft/world/level/levelgen/synth/NormalNoise/second +FD: net/minecraft/world/level/levelgen/synth/NormalNoise$NoiseParameters/f_192851_ net/minecraft/world/level/levelgen/synth/NormalNoise$NoiseParameters/DIRECT_CODEC +FD: net/minecraft/world/level/levelgen/synth/NormalNoise$NoiseParameters/f_192852_ net/minecraft/world/level/levelgen/synth/NormalNoise$NoiseParameters/CODEC +FD: net/minecraft/world/level/levelgen/synth/NormalNoise$NoiseParameters/f_192853_ net/minecraft/world/level/levelgen/synth/NormalNoise$NoiseParameters/firstOctave +FD: net/minecraft/world/level/levelgen/synth/NormalNoise$NoiseParameters/f_192854_ net/minecraft/world/level/levelgen/synth/NormalNoise$NoiseParameters/amplitudes +FD: net/minecraft/world/level/levelgen/synth/PerlinNoise/f_164358_ net/minecraft/world/level/levelgen/synth/PerlinNoise/ROUND_OFF +FD: net/minecraft/world/level/levelgen/synth/PerlinNoise/f_192867_ net/minecraft/world/level/levelgen/synth/PerlinNoise/firstOctave +FD: net/minecraft/world/level/levelgen/synth/PerlinNoise/f_210641_ net/minecraft/world/level/levelgen/synth/PerlinNoise/maxValue +FD: net/minecraft/world/level/levelgen/synth/PerlinNoise/f_75390_ net/minecraft/world/level/levelgen/synth/PerlinNoise/noiseLevels +FD: net/minecraft/world/level/levelgen/synth/PerlinNoise/f_75391_ net/minecraft/world/level/levelgen/synth/PerlinNoise/amplitudes +FD: net/minecraft/world/level/levelgen/synth/PerlinNoise/f_75392_ net/minecraft/world/level/levelgen/synth/PerlinNoise/lowestFreqValueFactor +FD: net/minecraft/world/level/levelgen/synth/PerlinNoise/f_75393_ net/minecraft/world/level/levelgen/synth/PerlinNoise/lowestFreqInputFactor +FD: net/minecraft/world/level/levelgen/synth/PerlinSimplexNoise/f_75432_ net/minecraft/world/level/levelgen/synth/PerlinSimplexNoise/noiseLevels +FD: net/minecraft/world/level/levelgen/synth/PerlinSimplexNoise/f_75433_ net/minecraft/world/level/levelgen/synth/PerlinSimplexNoise/highestFreqValueFactor +FD: net/minecraft/world/level/levelgen/synth/PerlinSimplexNoise/f_75434_ net/minecraft/world/level/levelgen/synth/PerlinSimplexNoise/highestFreqInputFactor +FD: net/minecraft/world/level/levelgen/synth/SimplexNoise/f_75453_ net/minecraft/world/level/levelgen/synth/SimplexNoise/GRADIENT +FD: net/minecraft/world/level/levelgen/synth/SimplexNoise/f_75454_ net/minecraft/world/level/levelgen/synth/SimplexNoise/xo +FD: net/minecraft/world/level/levelgen/synth/SimplexNoise/f_75455_ net/minecraft/world/level/levelgen/synth/SimplexNoise/yo +FD: net/minecraft/world/level/levelgen/synth/SimplexNoise/f_75456_ net/minecraft/world/level/levelgen/synth/SimplexNoise/zo +FD: net/minecraft/world/level/levelgen/synth/SimplexNoise/f_75457_ net/minecraft/world/level/levelgen/synth/SimplexNoise/SQRT_3 +FD: net/minecraft/world/level/levelgen/synth/SimplexNoise/f_75458_ net/minecraft/world/level/levelgen/synth/SimplexNoise/F2 +FD: net/minecraft/world/level/levelgen/synth/SimplexNoise/f_75459_ net/minecraft/world/level/levelgen/synth/SimplexNoise/G2 +FD: net/minecraft/world/level/levelgen/synth/SimplexNoise/f_75460_ net/minecraft/world/level/levelgen/synth/SimplexNoise/p +FD: net/minecraft/world/level/lighting/BlockLightEngine/f_75489_ net/minecraft/world/level/lighting/BlockLightEngine/mutablePos +FD: net/minecraft/world/level/lighting/ChunkSkyLightSources/f_283752_ net/minecraft/world/level/lighting/ChunkSkyLightSources/SIZE +FD: net/minecraft/world/level/lighting/ChunkSkyLightSources/f_283758_ net/minecraft/world/level/lighting/ChunkSkyLightSources/minY +FD: net/minecraft/world/level/lighting/ChunkSkyLightSources/f_283783_ net/minecraft/world/level/lighting/ChunkSkyLightSources/mutablePos2 +FD: net/minecraft/world/level/lighting/ChunkSkyLightSources/f_283790_ net/minecraft/world/level/lighting/ChunkSkyLightSources/NEGATIVE_INFINITY +FD: net/minecraft/world/level/lighting/ChunkSkyLightSources/f_283859_ net/minecraft/world/level/lighting/ChunkSkyLightSources/mutablePos1 +FD: net/minecraft/world/level/lighting/ChunkSkyLightSources/f_283905_ net/minecraft/world/level/lighting/ChunkSkyLightSources/heightmap +FD: net/minecraft/world/level/lighting/DataLayerStorageMap/f_164421_ net/minecraft/world/level/lighting/DataLayerStorageMap/CACHE_SIZE +FD: net/minecraft/world/level/lighting/DataLayerStorageMap/f_75518_ net/minecraft/world/level/lighting/DataLayerStorageMap/map +FD: net/minecraft/world/level/lighting/DataLayerStorageMap/f_75519_ net/minecraft/world/level/lighting/DataLayerStorageMap/lastSectionKeys +FD: net/minecraft/world/level/lighting/DataLayerStorageMap/f_75520_ net/minecraft/world/level/lighting/DataLayerStorageMap/lastSections +FD: net/minecraft/world/level/lighting/DataLayerStorageMap/f_75521_ net/minecraft/world/level/lighting/DataLayerStorageMap/cacheEnabled +FD: net/minecraft/world/level/lighting/DynamicGraphMinFixedPoint/f_164422_ net/minecraft/world/level/lighting/DynamicGraphMinFixedPoint/NO_COMPUTED_LEVEL +FD: net/minecraft/world/level/lighting/DynamicGraphMinFixedPoint/f_278118_ net/minecraft/world/level/lighting/DynamicGraphMinFixedPoint/priorityQueue +FD: net/minecraft/world/level/lighting/DynamicGraphMinFixedPoint/f_278132_ net/minecraft/world/level/lighting/DynamicGraphMinFixedPoint/SOURCE +FD: net/minecraft/world/level/lighting/DynamicGraphMinFixedPoint/f_75537_ net/minecraft/world/level/lighting/DynamicGraphMinFixedPoint/levelCount +FD: net/minecraft/world/level/lighting/DynamicGraphMinFixedPoint/f_75539_ net/minecraft/world/level/lighting/DynamicGraphMinFixedPoint/computedLevels +FD: net/minecraft/world/level/lighting/DynamicGraphMinFixedPoint/f_75541_ net/minecraft/world/level/lighting/DynamicGraphMinFixedPoint/hasWork +FD: net/minecraft/world/level/lighting/DynamicGraphMinFixedPoint$1/f_278131_ net/minecraft/world/level/lighting/DynamicGraphMinFixedPoint$1/val$minMapSize +FD: net/minecraft/world/level/lighting/DynamicGraphMinFixedPoint$1/f_75604_ net/minecraft/world/level/lighting/DynamicGraphMinFixedPoint$1/this$0 +FD: net/minecraft/world/level/lighting/LayerLightEventListener$DummyLightLayerEventListener/$VALUES net/minecraft/world/level/lighting/LayerLightEventListener$DummyLightLayerEventListener/$VALUES +FD: net/minecraft/world/level/lighting/LayerLightEventListener$DummyLightLayerEventListener/INSTANCE net/minecraft/world/level/lighting/LayerLightEventListener$DummyLightLayerEventListener/INSTANCE +FD: net/minecraft/world/level/lighting/LayerLightSectionStorage/f_283775_ net/minecraft/world/level/lighting/LayerLightSectionStorage/columnsWithSources +FD: net/minecraft/world/level/lighting/LayerLightSectionStorage/f_283847_ net/minecraft/world/level/lighting/LayerLightSectionStorage/hasInconsistencies +FD: net/minecraft/world/level/lighting/LayerLightSectionStorage/f_283872_ net/minecraft/world/level/lighting/LayerLightSectionStorage/sectionStates +FD: net/minecraft/world/level/lighting/LayerLightSectionStorage/f_75731_ net/minecraft/world/level/lighting/LayerLightSectionStorage/visibleSectionData +FD: net/minecraft/world/level/lighting/LayerLightSectionStorage/f_75732_ net/minecraft/world/level/lighting/LayerLightSectionStorage/updatingSectionData +FD: net/minecraft/world/level/lighting/LayerLightSectionStorage/f_75733_ net/minecraft/world/level/lighting/LayerLightSectionStorage/changedSections +FD: net/minecraft/world/level/lighting/LayerLightSectionStorage/f_75734_ net/minecraft/world/level/lighting/LayerLightSectionStorage/sectionsAffectedByLightUpdates +FD: net/minecraft/world/level/lighting/LayerLightSectionStorage/f_75735_ net/minecraft/world/level/lighting/LayerLightSectionStorage/queuedSections +FD: net/minecraft/world/level/lighting/LayerLightSectionStorage/f_75738_ net/minecraft/world/level/lighting/LayerLightSectionStorage/layer +FD: net/minecraft/world/level/lighting/LayerLightSectionStorage/f_75739_ net/minecraft/world/level/lighting/LayerLightSectionStorage/chunkSource +FD: net/minecraft/world/level/lighting/LayerLightSectionStorage/f_75741_ net/minecraft/world/level/lighting/LayerLightSectionStorage/columnsToRetainQueuedDataFor +FD: net/minecraft/world/level/lighting/LayerLightSectionStorage/f_75742_ net/minecraft/world/level/lighting/LayerLightSectionStorage/toRemove +FD: net/minecraft/world/level/lighting/LayerLightSectionStorage$SectionState/f_283742_ net/minecraft/world/level/lighting/LayerLightSectionStorage$SectionState/MIN_NEIGHBORS +FD: net/minecraft/world/level/lighting/LayerLightSectionStorage$SectionState/f_283815_ net/minecraft/world/level/lighting/LayerLightSectionStorage$SectionState/MAX_NEIGHBORS +FD: net/minecraft/world/level/lighting/LayerLightSectionStorage$SectionState/f_283852_ net/minecraft/world/level/lighting/LayerLightSectionStorage$SectionState/NEIGHBOR_COUNT_BITS +FD: net/minecraft/world/level/lighting/LayerLightSectionStorage$SectionState/f_283868_ net/minecraft/world/level/lighting/LayerLightSectionStorage$SectionState/HAS_DATA_BIT +FD: net/minecraft/world/level/lighting/LayerLightSectionStorage$SectionState/f_283943_ net/minecraft/world/level/lighting/LayerLightSectionStorage$SectionState/EMPTY +FD: net/minecraft/world/level/lighting/LayerLightSectionStorage$SectionType/$VALUES net/minecraft/world/level/lighting/LayerLightSectionStorage$SectionType/$VALUES +FD: net/minecraft/world/level/lighting/LayerLightSectionStorage$SectionType/EMPTY net/minecraft/world/level/lighting/LayerLightSectionStorage$SectionType/EMPTY +FD: net/minecraft/world/level/lighting/LayerLightSectionStorage$SectionType/LIGHT_AND_DATA net/minecraft/world/level/lighting/LayerLightSectionStorage$SectionType/LIGHT_AND_DATA +FD: net/minecraft/world/level/lighting/LayerLightSectionStorage$SectionType/LIGHT_ONLY net/minecraft/world/level/lighting/LayerLightSectionStorage$SectionType/LIGHT_ONLY +FD: net/minecraft/world/level/lighting/LayerLightSectionStorage$SectionType/f_283935_ net/minecraft/world/level/lighting/LayerLightSectionStorage$SectionType/display +FD: net/minecraft/world/level/lighting/LevelLightEngine/f_164444_ net/minecraft/world/level/lighting/LevelLightEngine/LIGHT_SECTION_PADDING +FD: net/minecraft/world/level/lighting/LevelLightEngine/f_164445_ net/minecraft/world/level/lighting/LevelLightEngine/levelHeightAccessor +FD: net/minecraft/world/level/lighting/LevelLightEngine/f_75802_ net/minecraft/world/level/lighting/LevelLightEngine/blockEngine +FD: net/minecraft/world/level/lighting/LevelLightEngine/f_75803_ net/minecraft/world/level/lighting/LevelLightEngine/skyEngine +FD: net/minecraft/world/level/lighting/LeveledPriorityQueue/f_278115_ net/minecraft/world/level/lighting/LeveledPriorityQueue/queues +FD: net/minecraft/world/level/lighting/LeveledPriorityQueue/f_278119_ net/minecraft/world/level/lighting/LeveledPriorityQueue/levelCount +FD: net/minecraft/world/level/lighting/LeveledPriorityQueue/f_278122_ net/minecraft/world/level/lighting/LeveledPriorityQueue/firstQueuedLevel +FD: net/minecraft/world/level/lighting/LeveledPriorityQueue$1/f_278129_ net/minecraft/world/level/lighting/LeveledPriorityQueue$1/val$minSize +FD: net/minecraft/world/level/lighting/LeveledPriorityQueue$1/f_278133_ net/minecraft/world/level/lighting/LeveledPriorityQueue$1/this$0 +FD: net/minecraft/world/level/lighting/LightEngine/f_283739_ net/minecraft/world/level/lighting/LightEngine/MIN_OPACITY +FD: net/minecraft/world/level/lighting/LightEngine/f_283746_ net/minecraft/world/level/lighting/LightEngine/MAX_LEVEL +FD: net/minecraft/world/level/lighting/LightEngine/f_283747_ net/minecraft/world/level/lighting/LightEngine/MIN_QUEUE_SIZE +FD: net/minecraft/world/level/lighting/LightEngine/f_283814_ net/minecraft/world/level/lighting/LightEngine/PROPAGATION_DIRECTIONS +FD: net/minecraft/world/level/lighting/LightEngine/f_283823_ net/minecraft/world/level/lighting/LightEngine/decreaseQueue +FD: net/minecraft/world/level/lighting/LightEngine/f_283833_ net/minecraft/world/level/lighting/LightEngine/lastChunkPos +FD: net/minecraft/world/level/lighting/LightEngine/f_283849_ net/minecraft/world/level/lighting/LightEngine/storage +FD: net/minecraft/world/level/lighting/LightEngine/f_283854_ net/minecraft/world/level/lighting/LightEngine/PULL_LIGHT_IN_ENTRY +FD: net/minecraft/world/level/lighting/LightEngine/f_283860_ net/minecraft/world/level/lighting/LightEngine/CACHE_SIZE +FD: net/minecraft/world/level/lighting/LightEngine/f_283863_ net/minecraft/world/level/lighting/LightEngine/blockNodesToCheck +FD: net/minecraft/world/level/lighting/LightEngine/f_283884_ net/minecraft/world/level/lighting/LightEngine/chunkSource +FD: net/minecraft/world/level/lighting/LightEngine/f_283888_ net/minecraft/world/level/lighting/LightEngine/lastChunk +FD: net/minecraft/world/level/lighting/LightEngine/f_283920_ net/minecraft/world/level/lighting/LightEngine/mutablePos +FD: net/minecraft/world/level/lighting/LightEngine/f_283934_ net/minecraft/world/level/lighting/LightEngine/increaseQueue +FD: net/minecraft/world/level/lighting/LightEngine$QueueEntry/f_283763_ net/minecraft/world/level/lighting/LightEngine$QueueEntry/DIRECTION_BITS +FD: net/minecraft/world/level/lighting/LightEngine$QueueEntry/f_283793_ net/minecraft/world/level/lighting/LightEngine$QueueEntry/FLAG_INCREASE_FROM_EMISSION +FD: net/minecraft/world/level/lighting/LightEngine$QueueEntry/f_283794_ net/minecraft/world/level/lighting/LightEngine$QueueEntry/DIRECTIONS_MASK +FD: net/minecraft/world/level/lighting/LightEngine$QueueEntry/f_283813_ net/minecraft/world/level/lighting/LightEngine$QueueEntry/FROM_LEVEL_BITS +FD: net/minecraft/world/level/lighting/LightEngine$QueueEntry/f_283865_ net/minecraft/world/level/lighting/LightEngine$QueueEntry/FLAG_FROM_EMPTY_SHAPE +FD: net/minecraft/world/level/lighting/LightEngine$QueueEntry/f_283912_ net/minecraft/world/level/lighting/LightEngine$QueueEntry/LEVEL_MASK +FD: net/minecraft/world/level/lighting/SkyLightEngine/f_283756_ net/minecraft/world/level/lighting/SkyLightEngine/ADD_SKY_SOURCE_ENTRY +FD: net/minecraft/world/level/lighting/SkyLightEngine/f_283759_ net/minecraft/world/level/lighting/SkyLightEngine/REMOVE_TOP_SKY_SOURCE_ENTRY +FD: net/minecraft/world/level/lighting/SkyLightEngine/f_283845_ net/minecraft/world/level/lighting/SkyLightEngine/REMOVE_SKY_SOURCE_ENTRY +FD: net/minecraft/world/level/lighting/SkyLightEngine/f_283853_ net/minecraft/world/level/lighting/SkyLightEngine/mutablePos +FD: net/minecraft/world/level/lighting/SkyLightEngine/f_283855_ net/minecraft/world/level/lighting/SkyLightEngine/emptyChunkSources +FD: net/minecraft/world/level/lighting/SkyLightEngine$1/f_283792_ net/minecraft/world/level/lighting/SkyLightEngine$1/$SwitchMap$net$minecraft$core$Direction +FD: net/minecraft/world/level/lighting/SkyLightSectionStorage$SkyDataLayerStorageMap/f_75900_ net/minecraft/world/level/lighting/SkyLightSectionStorage$SkyDataLayerStorageMap/currentLowestY +FD: net/minecraft/world/level/lighting/SkyLightSectionStorage$SkyDataLayerStorageMap/f_75901_ net/minecraft/world/level/lighting/SkyLightSectionStorage$SkyDataLayerStorageMap/topSections +FD: net/minecraft/world/level/lighting/SpatialLongSet/f_164460_ net/minecraft/world/level/lighting/SpatialLongSet/map +FD: net/minecraft/world/level/lighting/SpatialLongSet$InternalMap/f_164471_ net/minecraft/world/level/lighting/SpatialLongSet$InternalMap/X_BITS +FD: net/minecraft/world/level/lighting/SpatialLongSet$InternalMap/f_164472_ net/minecraft/world/level/lighting/SpatialLongSet$InternalMap/Z_BITS +FD: net/minecraft/world/level/lighting/SpatialLongSet$InternalMap/f_164473_ net/minecraft/world/level/lighting/SpatialLongSet$InternalMap/Y_BITS +FD: net/minecraft/world/level/lighting/SpatialLongSet$InternalMap/f_164474_ net/minecraft/world/level/lighting/SpatialLongSet$InternalMap/Y_OFFSET +FD: net/minecraft/world/level/lighting/SpatialLongSet$InternalMap/f_164475_ net/minecraft/world/level/lighting/SpatialLongSet$InternalMap/Z_OFFSET +FD: net/minecraft/world/level/lighting/SpatialLongSet$InternalMap/f_164476_ net/minecraft/world/level/lighting/SpatialLongSet$InternalMap/X_OFFSET +FD: net/minecraft/world/level/lighting/SpatialLongSet$InternalMap/f_164477_ net/minecraft/world/level/lighting/SpatialLongSet$InternalMap/OUTER_MASK +FD: net/minecraft/world/level/lighting/SpatialLongSet$InternalMap/f_164478_ net/minecraft/world/level/lighting/SpatialLongSet$InternalMap/lastPos +FD: net/minecraft/world/level/lighting/SpatialLongSet$InternalMap/f_164479_ net/minecraft/world/level/lighting/SpatialLongSet$InternalMap/lastOuterKey +FD: net/minecraft/world/level/lighting/SpatialLongSet$InternalMap/f_164480_ net/minecraft/world/level/lighting/SpatialLongSet$InternalMap/minSize +FD: net/minecraft/world/level/material/FlowingFluid/f_164507_ net/minecraft/world/level/material/FlowingFluid/CACHE_SIZE +FD: net/minecraft/world/level/material/FlowingFluid/f_75947_ net/minecraft/world/level/material/FlowingFluid/FALLING +FD: net/minecraft/world/level/material/FlowingFluid/f_75948_ net/minecraft/world/level/material/FlowingFluid/LEVEL +FD: net/minecraft/world/level/material/FlowingFluid/f_75949_ net/minecraft/world/level/material/FlowingFluid/OCCLUSION_CACHE +FD: net/minecraft/world/level/material/FlowingFluid/f_75950_ net/minecraft/world/level/material/FlowingFluid/shapes +FD: net/minecraft/world/level/material/Fluid/f_205066_ net/minecraft/world/level/material/Fluid/builtInRegistryHolder +FD: net/minecraft/world/level/material/Fluid/f_76103_ net/minecraft/world/level/material/Fluid/defaultFluidState +FD: net/minecraft/world/level/material/Fluid/f_76104_ net/minecraft/world/level/material/Fluid/FLUID_STATE_REGISTRY +FD: net/minecraft/world/level/material/Fluid/f_76105_ net/minecraft/world/level/material/Fluid/stateDefinition +FD: net/minecraft/world/level/material/FluidState/f_164510_ net/minecraft/world/level/material/FluidState/AMOUNT_MAX +FD: net/minecraft/world/level/material/FluidState/f_164511_ net/minecraft/world/level/material/FluidState/AMOUNT_FULL +FD: net/minecraft/world/level/material/FluidState/f_76146_ net/minecraft/world/level/material/FluidState/CODEC +FD: net/minecraft/world/level/material/Fluids/f_76191_ net/minecraft/world/level/material/Fluids/EMPTY +FD: net/minecraft/world/level/material/Fluids/f_76192_ net/minecraft/world/level/material/Fluids/FLOWING_WATER +FD: net/minecraft/world/level/material/Fluids/f_76193_ net/minecraft/world/level/material/Fluids/WATER +FD: net/minecraft/world/level/material/Fluids/f_76194_ net/minecraft/world/level/material/Fluids/FLOWING_LAVA +FD: net/minecraft/world/level/material/Fluids/f_76195_ net/minecraft/world/level/material/Fluids/LAVA +FD: net/minecraft/world/level/material/FogType/$VALUES net/minecraft/world/level/material/FogType/$VALUES +FD: net/minecraft/world/level/material/FogType/LAVA net/minecraft/world/level/material/FogType/LAVA +FD: net/minecraft/world/level/material/FogType/NONE net/minecraft/world/level/material/FogType/NONE +FD: net/minecraft/world/level/material/FogType/POWDER_SNOW net/minecraft/world/level/material/FogType/POWDER_SNOW +FD: net/minecraft/world/level/material/FogType/WATER net/minecraft/world/level/material/FogType/WATER +FD: net/minecraft/world/level/material/LavaFluid/f_164528_ net/minecraft/world/level/material/LavaFluid/MIN_LEVEL_CUTOFF +FD: net/minecraft/world/level/material/MapColor/f_283743_ net/minecraft/world/level/material/MapColor/COLOR_BLUE +FD: net/minecraft/world/level/material/MapColor/f_283744_ net/minecraft/world/level/material/MapColor/CLAY +FD: net/minecraft/world/level/material/MapColor/f_283745_ net/minecraft/world/level/material/MapColor/WARPED_NYLIUM +FD: net/minecraft/world/level/material/MapColor/f_283748_ net/minecraft/world/level/material/MapColor/COLOR_BROWN +FD: net/minecraft/world/level/material/MapColor/f_283749_ net/minecraft/world/level/material/MapColor/WARPED_STEM +FD: net/minecraft/world/level/material/MapColor/f_283750_ net/minecraft/world/level/material/MapColor/COLOR_ORANGE +FD: net/minecraft/world/level/material/MapColor/f_283757_ net/minecraft/world/level/material/MapColor/GOLD +FD: net/minecraft/world/level/material/MapColor/f_283761_ net/minecraft/world/level/material/MapColor/SAND +FD: net/minecraft/world/level/material/MapColor/f_283762_ net/minecraft/world/level/material/MapColor/DIRT +FD: net/minecraft/world/level/material/MapColor/f_283765_ net/minecraft/world/level/material/MapColor/COLOR_PINK +FD: net/minecraft/world/level/material/MapColor/f_283769_ net/minecraft/world/level/material/MapColor/GLOW_LICHEN +FD: net/minecraft/world/level/material/MapColor/f_283771_ net/minecraft/world/level/material/MapColor/TERRACOTTA_BLACK +FD: net/minecraft/world/level/material/MapColor/f_283772_ net/minecraft/world/level/material/MapColor/COLOR_CYAN +FD: net/minecraft/world/level/material/MapColor/f_283774_ net/minecraft/world/level/material/MapColor/TERRACOTTA_BROWN +FD: net/minecraft/world/level/material/MapColor/f_283778_ net/minecraft/world/level/material/MapColor/TERRACOTTA_LIGHT_GREEN +FD: net/minecraft/world/level/material/MapColor/f_283779_ net/minecraft/world/level/material/MapColor/COLOR_LIGHT_GRAY +FD: net/minecraft/world/level/material/MapColor/f_283784_ net/minecraft/world/level/material/MapColor/COLOR_GREEN +FD: net/minecraft/world/level/material/MapColor/f_283791_ net/minecraft/world/level/material/MapColor/TERRACOTTA_LIGHT_BLUE +FD: net/minecraft/world/level/material/MapColor/f_283798_ net/minecraft/world/level/material/MapColor/TERRACOTTA_RED +FD: net/minecraft/world/level/material/MapColor/f_283804_ net/minecraft/world/level/material/MapColor/CRIMSON_STEM +FD: net/minecraft/world/level/material/MapColor/f_283805_ net/minecraft/world/level/material/MapColor/id +FD: net/minecraft/world/level/material/MapColor/f_283807_ net/minecraft/world/level/material/MapColor/WARPED_HYPHAE +FD: net/minecraft/world/level/material/MapColor/f_283808_ net/minecraft/world/level/material/MapColor/NONE +FD: net/minecraft/world/level/material/MapColor/f_283811_ net/minecraft/world/level/material/MapColor/SNOW +FD: net/minecraft/world/level/material/MapColor/f_283812_ net/minecraft/world/level/material/MapColor/EMERALD +FD: net/minecraft/world/level/material/MapColor/f_283816_ net/minecraft/world/level/material/MapColor/FIRE +FD: net/minecraft/world/level/material/MapColor/f_283818_ net/minecraft/world/level/material/MapColor/COLOR_GRAY +FD: net/minecraft/world/level/material/MapColor/f_283819_ net/minecraft/world/level/material/MapColor/PODZOL +FD: net/minecraft/world/level/material/MapColor/f_283820_ net/minecraft/world/level/material/MapColor/NETHER +FD: net/minecraft/world/level/material/MapColor/f_283821_ net/minecraft/world/level/material/MapColor/DIAMOND +FD: net/minecraft/world/level/material/MapColor/f_283824_ net/minecraft/world/level/material/MapColor/GRASS +FD: net/minecraft/world/level/material/MapColor/f_283825_ net/minecraft/world/level/material/MapColor/WOOD +FD: net/minecraft/world/level/material/MapColor/f_283828_ net/minecraft/world/level/material/MapColor/ICE +FD: net/minecraft/world/level/material/MapColor/f_283832_ net/minecraft/world/level/material/MapColor/COLOR_YELLOW +FD: net/minecraft/world/level/material/MapColor/f_283843_ net/minecraft/world/level/material/MapColor/TERRACOTTA_YELLOW +FD: net/minecraft/world/level/material/MapColor/f_283846_ net/minecraft/world/level/material/MapColor/TERRACOTTA_CYAN +FD: net/minecraft/world/level/material/MapColor/f_283850_ net/minecraft/world/level/material/MapColor/TERRACOTTA_MAGENTA +FD: net/minecraft/world/level/material/MapColor/f_283856_ net/minecraft/world/level/material/MapColor/TERRACOTTA_GREEN +FD: net/minecraft/world/level/material/MapColor/f_283861_ net/minecraft/world/level/material/MapColor/TERRACOTTA_GRAY +FD: net/minecraft/world/level/material/MapColor/f_283862_ net/minecraft/world/level/material/MapColor/MATERIAL_COLORS +FD: net/minecraft/world/level/material/MapColor/f_283864_ net/minecraft/world/level/material/MapColor/WATER +FD: net/minecraft/world/level/material/MapColor/f_283869_ net/minecraft/world/level/material/MapColor/COLOR_LIGHT_BLUE +FD: net/minecraft/world/level/material/MapColor/f_283870_ net/minecraft/world/level/material/MapColor/TERRACOTTA_PINK +FD: net/minecraft/world/level/material/MapColor/f_283871_ net/minecraft/world/level/material/MapColor/col +FD: net/minecraft/world/level/material/MapColor/f_283875_ net/minecraft/world/level/material/MapColor/DEEPSLATE +FD: net/minecraft/world/level/material/MapColor/f_283877_ net/minecraft/world/level/material/MapColor/RAW_IRON +FD: net/minecraft/world/level/material/MapColor/f_283883_ net/minecraft/world/level/material/MapColor/CRIMSON_HYPHAE +FD: net/minecraft/world/level/material/MapColor/f_283889_ net/minecraft/world/level/material/MapColor/COLOR_PURPLE +FD: net/minecraft/world/level/material/MapColor/f_283892_ net/minecraft/world/level/material/MapColor/TERRACOTTA_PURPLE +FD: net/minecraft/world/level/material/MapColor/f_283895_ net/minecraft/world/level/material/MapColor/TERRACOTTA_ORANGE +FD: net/minecraft/world/level/material/MapColor/f_283898_ net/minecraft/world/level/material/MapColor/WARPED_WART_BLOCK +FD: net/minecraft/world/level/material/MapColor/f_283906_ net/minecraft/world/level/material/MapColor/METAL +FD: net/minecraft/world/level/material/MapColor/f_283907_ net/minecraft/world/level/material/MapColor/TERRACOTTA_LIGHT_GRAY +FD: net/minecraft/world/level/material/MapColor/f_283908_ net/minecraft/world/level/material/MapColor/TERRACOTTA_BLUE +FD: net/minecraft/world/level/material/MapColor/f_283909_ net/minecraft/world/level/material/MapColor/CRIMSON_NYLIUM +FD: net/minecraft/world/level/material/MapColor/f_283913_ net/minecraft/world/level/material/MapColor/COLOR_RED +FD: net/minecraft/world/level/material/MapColor/f_283915_ net/minecraft/world/level/material/MapColor/PLANT +FD: net/minecraft/world/level/material/MapColor/f_283916_ net/minecraft/world/level/material/MapColor/COLOR_LIGHT_GREEN +FD: net/minecraft/world/level/material/MapColor/f_283919_ net/minecraft/world/level/material/MapColor/TERRACOTTA_WHITE +FD: net/minecraft/world/level/material/MapColor/f_283927_ net/minecraft/world/level/material/MapColor/COLOR_BLACK +FD: net/minecraft/world/level/material/MapColor/f_283930_ net/minecraft/world/level/material/MapColor/WOOL +FD: net/minecraft/world/level/material/MapColor/f_283931_ net/minecraft/world/level/material/MapColor/COLOR_MAGENTA +FD: net/minecraft/world/level/material/MapColor/f_283933_ net/minecraft/world/level/material/MapColor/LAPIS +FD: net/minecraft/world/level/material/MapColor/f_283942_ net/minecraft/world/level/material/MapColor/QUARTZ +FD: net/minecraft/world/level/material/MapColor/f_283947_ net/minecraft/world/level/material/MapColor/STONE +FD: net/minecraft/world/level/material/MapColor$Brightness/$VALUES net/minecraft/world/level/material/MapColor$Brightness/$VALUES +FD: net/minecraft/world/level/material/MapColor$Brightness/HIGH net/minecraft/world/level/material/MapColor$Brightness/HIGH +FD: net/minecraft/world/level/material/MapColor$Brightness/LOW net/minecraft/world/level/material/MapColor$Brightness/LOW +FD: net/minecraft/world/level/material/MapColor$Brightness/LOWEST net/minecraft/world/level/material/MapColor$Brightness/LOWEST +FD: net/minecraft/world/level/material/MapColor$Brightness/NORMAL net/minecraft/world/level/material/MapColor$Brightness/NORMAL +FD: net/minecraft/world/level/material/MapColor$Brightness/f_283785_ net/minecraft/world/level/material/MapColor$Brightness/modifier +FD: net/minecraft/world/level/material/MapColor$Brightness/f_283939_ net/minecraft/world/level/material/MapColor$Brightness/VALUES +FD: net/minecraft/world/level/material/MapColor$Brightness/f_283941_ net/minecraft/world/level/material/MapColor$Brightness/id +FD: net/minecraft/world/level/material/PushReaction/$VALUES net/minecraft/world/level/material/PushReaction/$VALUES +FD: net/minecraft/world/level/material/PushReaction/BLOCK net/minecraft/world/level/material/PushReaction/BLOCK +FD: net/minecraft/world/level/material/PushReaction/DESTROY net/minecraft/world/level/material/PushReaction/DESTROY +FD: net/minecraft/world/level/material/PushReaction/IGNORE net/minecraft/world/level/material/PushReaction/IGNORE +FD: net/minecraft/world/level/material/PushReaction/NORMAL net/minecraft/world/level/material/PushReaction/NORMAL +FD: net/minecraft/world/level/material/PushReaction/PUSH_ONLY net/minecraft/world/level/material/PushReaction/PUSH_ONLY +FD: net/minecraft/world/level/pathfinder/AmphibiousNodeEvaluator/f_164655_ net/minecraft/world/level/pathfinder/AmphibiousNodeEvaluator/prefersShallowSwimming +FD: net/minecraft/world/level/pathfinder/AmphibiousNodeEvaluator/f_164656_ net/minecraft/world/level/pathfinder/AmphibiousNodeEvaluator/oldWalkableCost +FD: net/minecraft/world/level/pathfinder/AmphibiousNodeEvaluator/f_164657_ net/minecraft/world/level/pathfinder/AmphibiousNodeEvaluator/oldWaterBorderCost +FD: net/minecraft/world/level/pathfinder/BinaryHeap/f_77078_ net/minecraft/world/level/pathfinder/BinaryHeap/heap +FD: net/minecraft/world/level/pathfinder/BinaryHeap/f_77079_ net/minecraft/world/level/pathfinder/BinaryHeap/size +FD: net/minecraft/world/level/pathfinder/BlockPathTypes/$VALUES net/minecraft/world/level/pathfinder/BlockPathTypes/$VALUES +FD: net/minecraft/world/level/pathfinder/BlockPathTypes/BLOCKED net/minecraft/world/level/pathfinder/BlockPathTypes/BLOCKED +FD: net/minecraft/world/level/pathfinder/BlockPathTypes/BREACH net/minecraft/world/level/pathfinder/BlockPathTypes/BREACH +FD: net/minecraft/world/level/pathfinder/BlockPathTypes/COCOA net/minecraft/world/level/pathfinder/BlockPathTypes/COCOA +FD: net/minecraft/world/level/pathfinder/BlockPathTypes/DAMAGE_CAUTIOUS net/minecraft/world/level/pathfinder/BlockPathTypes/DAMAGE_CAUTIOUS +FD: net/minecraft/world/level/pathfinder/BlockPathTypes/DAMAGE_FIRE net/minecraft/world/level/pathfinder/BlockPathTypes/DAMAGE_FIRE +FD: net/minecraft/world/level/pathfinder/BlockPathTypes/DAMAGE_OTHER net/minecraft/world/level/pathfinder/BlockPathTypes/DAMAGE_OTHER +FD: net/minecraft/world/level/pathfinder/BlockPathTypes/DANGER_FIRE net/minecraft/world/level/pathfinder/BlockPathTypes/DANGER_FIRE +FD: net/minecraft/world/level/pathfinder/BlockPathTypes/DANGER_OTHER net/minecraft/world/level/pathfinder/BlockPathTypes/DANGER_OTHER +FD: net/minecraft/world/level/pathfinder/BlockPathTypes/DANGER_POWDER_SNOW net/minecraft/world/level/pathfinder/BlockPathTypes/DANGER_POWDER_SNOW +FD: net/minecraft/world/level/pathfinder/BlockPathTypes/DOOR_IRON_CLOSED net/minecraft/world/level/pathfinder/BlockPathTypes/DOOR_IRON_CLOSED +FD: net/minecraft/world/level/pathfinder/BlockPathTypes/DOOR_OPEN net/minecraft/world/level/pathfinder/BlockPathTypes/DOOR_OPEN +FD: net/minecraft/world/level/pathfinder/BlockPathTypes/DOOR_WOOD_CLOSED net/minecraft/world/level/pathfinder/BlockPathTypes/DOOR_WOOD_CLOSED +FD: net/minecraft/world/level/pathfinder/BlockPathTypes/FENCE net/minecraft/world/level/pathfinder/BlockPathTypes/FENCE +FD: net/minecraft/world/level/pathfinder/BlockPathTypes/LAVA net/minecraft/world/level/pathfinder/BlockPathTypes/LAVA +FD: net/minecraft/world/level/pathfinder/BlockPathTypes/LEAVES net/minecraft/world/level/pathfinder/BlockPathTypes/LEAVES +FD: net/minecraft/world/level/pathfinder/BlockPathTypes/OPEN net/minecraft/world/level/pathfinder/BlockPathTypes/OPEN +FD: net/minecraft/world/level/pathfinder/BlockPathTypes/POWDER_SNOW net/minecraft/world/level/pathfinder/BlockPathTypes/POWDER_SNOW +FD: net/minecraft/world/level/pathfinder/BlockPathTypes/RAIL net/minecraft/world/level/pathfinder/BlockPathTypes/RAIL +FD: net/minecraft/world/level/pathfinder/BlockPathTypes/STICKY_HONEY net/minecraft/world/level/pathfinder/BlockPathTypes/STICKY_HONEY +FD: net/minecraft/world/level/pathfinder/BlockPathTypes/TRAPDOOR net/minecraft/world/level/pathfinder/BlockPathTypes/TRAPDOOR +FD: net/minecraft/world/level/pathfinder/BlockPathTypes/UNPASSABLE_RAIL net/minecraft/world/level/pathfinder/BlockPathTypes/UNPASSABLE_RAIL +FD: net/minecraft/world/level/pathfinder/BlockPathTypes/WALKABLE net/minecraft/world/level/pathfinder/BlockPathTypes/WALKABLE +FD: net/minecraft/world/level/pathfinder/BlockPathTypes/WALKABLE_DOOR net/minecraft/world/level/pathfinder/BlockPathTypes/WALKABLE_DOOR +FD: net/minecraft/world/level/pathfinder/BlockPathTypes/WATER net/minecraft/world/level/pathfinder/BlockPathTypes/WATER +FD: net/minecraft/world/level/pathfinder/BlockPathTypes/WATER_BORDER net/minecraft/world/level/pathfinder/BlockPathTypes/WATER_BORDER +FD: net/minecraft/world/level/pathfinder/BlockPathTypes/f_77117_ net/minecraft/world/level/pathfinder/BlockPathTypes/malus +FD: net/minecraft/world/level/pathfinder/FlyNodeEvaluator/f_164687_ net/minecraft/world/level/pathfinder/FlyNodeEvaluator/pathTypeByPosCache +FD: net/minecraft/world/level/pathfinder/FlyNodeEvaluator/f_262722_ net/minecraft/world/level/pathfinder/FlyNodeEvaluator/SMALL_MOB_INFLATED_START_NODE_BOUNDING_BOX +FD: net/minecraft/world/level/pathfinder/FlyNodeEvaluator/f_262734_ net/minecraft/world/level/pathfinder/FlyNodeEvaluator/MAX_START_NODE_CANDIDATES +FD: net/minecraft/world/level/pathfinder/Node/f_77271_ net/minecraft/world/level/pathfinder/Node/x +FD: net/minecraft/world/level/pathfinder/Node/f_77272_ net/minecraft/world/level/pathfinder/Node/y +FD: net/minecraft/world/level/pathfinder/Node/f_77273_ net/minecraft/world/level/pathfinder/Node/z +FD: net/minecraft/world/level/pathfinder/Node/f_77274_ net/minecraft/world/level/pathfinder/Node/heapIdx +FD: net/minecraft/world/level/pathfinder/Node/f_77275_ net/minecraft/world/level/pathfinder/Node/g +FD: net/minecraft/world/level/pathfinder/Node/f_77276_ net/minecraft/world/level/pathfinder/Node/h +FD: net/minecraft/world/level/pathfinder/Node/f_77277_ net/minecraft/world/level/pathfinder/Node/f +FD: net/minecraft/world/level/pathfinder/Node/f_77278_ net/minecraft/world/level/pathfinder/Node/cameFrom +FD: net/minecraft/world/level/pathfinder/Node/f_77279_ net/minecraft/world/level/pathfinder/Node/closed +FD: net/minecraft/world/level/pathfinder/Node/f_77280_ net/minecraft/world/level/pathfinder/Node/walkedDistance +FD: net/minecraft/world/level/pathfinder/Node/f_77281_ net/minecraft/world/level/pathfinder/Node/costMalus +FD: net/minecraft/world/level/pathfinder/Node/f_77282_ net/minecraft/world/level/pathfinder/Node/type +FD: net/minecraft/world/level/pathfinder/Node/f_77283_ net/minecraft/world/level/pathfinder/Node/hash +FD: net/minecraft/world/level/pathfinder/NodeEvaluator/f_254713_ net/minecraft/world/level/pathfinder/NodeEvaluator/canWalkOverFences +FD: net/minecraft/world/level/pathfinder/NodeEvaluator/f_77312_ net/minecraft/world/level/pathfinder/NodeEvaluator/level +FD: net/minecraft/world/level/pathfinder/NodeEvaluator/f_77313_ net/minecraft/world/level/pathfinder/NodeEvaluator/mob +FD: net/minecraft/world/level/pathfinder/NodeEvaluator/f_77314_ net/minecraft/world/level/pathfinder/NodeEvaluator/nodes +FD: net/minecraft/world/level/pathfinder/NodeEvaluator/f_77315_ net/minecraft/world/level/pathfinder/NodeEvaluator/entityWidth +FD: net/minecraft/world/level/pathfinder/NodeEvaluator/f_77316_ net/minecraft/world/level/pathfinder/NodeEvaluator/entityHeight +FD: net/minecraft/world/level/pathfinder/NodeEvaluator/f_77317_ net/minecraft/world/level/pathfinder/NodeEvaluator/entityDepth +FD: net/minecraft/world/level/pathfinder/NodeEvaluator/f_77318_ net/minecraft/world/level/pathfinder/NodeEvaluator/canPassDoors +FD: net/minecraft/world/level/pathfinder/NodeEvaluator/f_77319_ net/minecraft/world/level/pathfinder/NodeEvaluator/canOpenDoors +FD: net/minecraft/world/level/pathfinder/NodeEvaluator/f_77320_ net/minecraft/world/level/pathfinder/NodeEvaluator/canFloat +FD: net/minecraft/world/level/pathfinder/Path/f_77362_ net/minecraft/world/level/pathfinder/Path/nodes +FD: net/minecraft/world/level/pathfinder/Path/f_77363_ net/minecraft/world/level/pathfinder/Path/openSet +FD: net/minecraft/world/level/pathfinder/Path/f_77364_ net/minecraft/world/level/pathfinder/Path/closedSet +FD: net/minecraft/world/level/pathfinder/Path/f_77365_ net/minecraft/world/level/pathfinder/Path/targetNodes +FD: net/minecraft/world/level/pathfinder/Path/f_77366_ net/minecraft/world/level/pathfinder/Path/nextNodeIndex +FD: net/minecraft/world/level/pathfinder/Path/f_77367_ net/minecraft/world/level/pathfinder/Path/target +FD: net/minecraft/world/level/pathfinder/Path/f_77368_ net/minecraft/world/level/pathfinder/Path/distToTarget +FD: net/minecraft/world/level/pathfinder/Path/f_77369_ net/minecraft/world/level/pathfinder/Path/reached +FD: net/minecraft/world/level/pathfinder/PathComputationType/$VALUES net/minecraft/world/level/pathfinder/PathComputationType/$VALUES +FD: net/minecraft/world/level/pathfinder/PathComputationType/AIR net/minecraft/world/level/pathfinder/PathComputationType/AIR +FD: net/minecraft/world/level/pathfinder/PathComputationType/LAND net/minecraft/world/level/pathfinder/PathComputationType/LAND +FD: net/minecraft/world/level/pathfinder/PathComputationType/WATER net/minecraft/world/level/pathfinder/PathComputationType/WATER +FD: net/minecraft/world/level/pathfinder/PathFinder/f_164714_ net/minecraft/world/level/pathfinder/PathFinder/FUDGING +FD: net/minecraft/world/level/pathfinder/PathFinder/f_164715_ net/minecraft/world/level/pathfinder/PathFinder/DEBUG +FD: net/minecraft/world/level/pathfinder/PathFinder/f_77420_ net/minecraft/world/level/pathfinder/PathFinder/neighbors +FD: net/minecraft/world/level/pathfinder/PathFinder/f_77421_ net/minecraft/world/level/pathfinder/PathFinder/maxVisitedNodes +FD: net/minecraft/world/level/pathfinder/PathFinder/f_77422_ net/minecraft/world/level/pathfinder/PathFinder/nodeEvaluator +FD: net/minecraft/world/level/pathfinder/PathFinder/f_77423_ net/minecraft/world/level/pathfinder/PathFinder/openSet +FD: net/minecraft/world/level/pathfinder/SwimNodeEvaluator/f_192951_ net/minecraft/world/level/pathfinder/SwimNodeEvaluator/pathTypesByPosCache +FD: net/minecraft/world/level/pathfinder/SwimNodeEvaluator/f_77455_ net/minecraft/world/level/pathfinder/SwimNodeEvaluator/allowBreaching +FD: net/minecraft/world/level/pathfinder/Target/f_77494_ net/minecraft/world/level/pathfinder/Target/bestHeuristic +FD: net/minecraft/world/level/pathfinder/Target/f_77495_ net/minecraft/world/level/pathfinder/Target/bestNode +FD: net/minecraft/world/level/pathfinder/Target/f_77496_ net/minecraft/world/level/pathfinder/Target/reached +FD: net/minecraft/world/level/pathfinder/WalkNodeEvaluator/f_164724_ net/minecraft/world/level/pathfinder/WalkNodeEvaluator/SPACE_BETWEEN_WALL_POSTS +FD: net/minecraft/world/level/pathfinder/WalkNodeEvaluator/f_254631_ net/minecraft/world/level/pathfinder/WalkNodeEvaluator/DEFAULT_MOB_JUMP_HEIGHT +FD: net/minecraft/world/level/pathfinder/WalkNodeEvaluator/f_77545_ net/minecraft/world/level/pathfinder/WalkNodeEvaluator/pathTypesByPosCache +FD: net/minecraft/world/level/pathfinder/WalkNodeEvaluator/f_77546_ net/minecraft/world/level/pathfinder/WalkNodeEvaluator/collisionCache +FD: net/minecraft/world/level/portal/PortalForcer/f_164734_ net/minecraft/world/level/portal/PortalForcer/TICKET_RADIUS +FD: net/minecraft/world/level/portal/PortalForcer/f_164735_ net/minecraft/world/level/portal/PortalForcer/SEARCH_RADIUS +FD: net/minecraft/world/level/portal/PortalForcer/f_164736_ net/minecraft/world/level/portal/PortalForcer/CREATE_RADIUS +FD: net/minecraft/world/level/portal/PortalForcer/f_164737_ net/minecraft/world/level/portal/PortalForcer/FRAME_HEIGHT +FD: net/minecraft/world/level/portal/PortalForcer/f_164738_ net/minecraft/world/level/portal/PortalForcer/FRAME_WIDTH +FD: net/minecraft/world/level/portal/PortalForcer/f_164739_ net/minecraft/world/level/portal/PortalForcer/FRAME_BOX +FD: net/minecraft/world/level/portal/PortalForcer/f_164740_ net/minecraft/world/level/portal/PortalForcer/FRAME_HEIGHT_START +FD: net/minecraft/world/level/portal/PortalForcer/f_164741_ net/minecraft/world/level/portal/PortalForcer/FRAME_HEIGHT_END +FD: net/minecraft/world/level/portal/PortalForcer/f_164742_ net/minecraft/world/level/portal/PortalForcer/FRAME_WIDTH_START +FD: net/minecraft/world/level/portal/PortalForcer/f_164743_ net/minecraft/world/level/portal/PortalForcer/FRAME_WIDTH_END +FD: net/minecraft/world/level/portal/PortalForcer/f_164744_ net/minecraft/world/level/portal/PortalForcer/FRAME_BOX_START +FD: net/minecraft/world/level/portal/PortalForcer/f_164745_ net/minecraft/world/level/portal/PortalForcer/FRAME_BOX_END +FD: net/minecraft/world/level/portal/PortalForcer/f_164746_ net/minecraft/world/level/portal/PortalForcer/NOTHING_FOUND +FD: net/minecraft/world/level/portal/PortalForcer/f_77648_ net/minecraft/world/level/portal/PortalForcer/level +FD: net/minecraft/world/level/portal/PortalInfo/f_77676_ net/minecraft/world/level/portal/PortalInfo/pos +FD: net/minecraft/world/level/portal/PortalInfo/f_77677_ net/minecraft/world/level/portal/PortalInfo/speed +FD: net/minecraft/world/level/portal/PortalInfo/f_77678_ net/minecraft/world/level/portal/PortalInfo/yRot +FD: net/minecraft/world/level/portal/PortalInfo/f_77679_ net/minecraft/world/level/portal/PortalInfo/xRot +FD: net/minecraft/world/level/portal/PortalShape/f_164750_ net/minecraft/world/level/portal/PortalShape/MAX_WIDTH +FD: net/minecraft/world/level/portal/PortalShape/f_164751_ net/minecraft/world/level/portal/PortalShape/MAX_HEIGHT +FD: net/minecraft/world/level/portal/PortalShape/f_164752_ net/minecraft/world/level/portal/PortalShape/MIN_WIDTH +FD: net/minecraft/world/level/portal/PortalShape/f_164753_ net/minecraft/world/level/portal/PortalShape/MIN_HEIGHT +FD: net/minecraft/world/level/portal/PortalShape/f_256802_ net/minecraft/world/level/portal/PortalShape/SAFE_TRAVEL_MAX_VERTICAL_DELTA +FD: net/minecraft/world/level/portal/PortalShape/f_256985_ net/minecraft/world/level/portal/PortalShape/SAFE_TRAVEL_MAX_ENTITY_XY +FD: net/minecraft/world/level/portal/PortalShape/f_77685_ net/minecraft/world/level/portal/PortalShape/FRAME +FD: net/minecraft/world/level/portal/PortalShape/f_77686_ net/minecraft/world/level/portal/PortalShape/level +FD: net/minecraft/world/level/portal/PortalShape/f_77687_ net/minecraft/world/level/portal/PortalShape/axis +FD: net/minecraft/world/level/portal/PortalShape/f_77688_ net/minecraft/world/level/portal/PortalShape/rightDir +FD: net/minecraft/world/level/portal/PortalShape/f_77689_ net/minecraft/world/level/portal/PortalShape/numPortalBlocks +FD: net/minecraft/world/level/portal/PortalShape/f_77690_ net/minecraft/world/level/portal/PortalShape/bottomLeft +FD: net/minecraft/world/level/portal/PortalShape/f_77691_ net/minecraft/world/level/portal/PortalShape/height +FD: net/minecraft/world/level/portal/PortalShape/f_77692_ net/minecraft/world/level/portal/PortalShape/width +FD: net/minecraft/world/level/redstone/CollectingNeighborUpdater/f_230635_ net/minecraft/world/level/redstone/CollectingNeighborUpdater/LOGGER +FD: net/minecraft/world/level/redstone/CollectingNeighborUpdater/f_230636_ net/minecraft/world/level/redstone/CollectingNeighborUpdater/level +FD: net/minecraft/world/level/redstone/CollectingNeighborUpdater/f_230637_ net/minecraft/world/level/redstone/CollectingNeighborUpdater/maxChainedNeighborUpdates +FD: net/minecraft/world/level/redstone/CollectingNeighborUpdater/f_230638_ net/minecraft/world/level/redstone/CollectingNeighborUpdater/stack +FD: net/minecraft/world/level/redstone/CollectingNeighborUpdater/f_230639_ net/minecraft/world/level/redstone/CollectingNeighborUpdater/addedThisLayer +FD: net/minecraft/world/level/redstone/CollectingNeighborUpdater/f_230640_ net/minecraft/world/level/redstone/CollectingNeighborUpdater/count +FD: net/minecraft/world/level/redstone/CollectingNeighborUpdater$FullNeighborUpdate/f_230670_ net/minecraft/world/level/redstone/CollectingNeighborUpdater$FullNeighborUpdate/state +FD: net/minecraft/world/level/redstone/CollectingNeighborUpdater$FullNeighborUpdate/f_230671_ net/minecraft/world/level/redstone/CollectingNeighborUpdater$FullNeighborUpdate/pos +FD: net/minecraft/world/level/redstone/CollectingNeighborUpdater$FullNeighborUpdate/f_230672_ net/minecraft/world/level/redstone/CollectingNeighborUpdater$FullNeighborUpdate/block +FD: net/minecraft/world/level/redstone/CollectingNeighborUpdater$FullNeighborUpdate/f_230673_ net/minecraft/world/level/redstone/CollectingNeighborUpdater$FullNeighborUpdate/neighborPos +FD: net/minecraft/world/level/redstone/CollectingNeighborUpdater$FullNeighborUpdate/f_230674_ net/minecraft/world/level/redstone/CollectingNeighborUpdater$FullNeighborUpdate/movedByPiston +FD: net/minecraft/world/level/redstone/CollectingNeighborUpdater$MultiNeighborUpdate/f_230692_ net/minecraft/world/level/redstone/CollectingNeighborUpdater$MultiNeighborUpdate/sourcePos +FD: net/minecraft/world/level/redstone/CollectingNeighborUpdater$MultiNeighborUpdate/f_230693_ net/minecraft/world/level/redstone/CollectingNeighborUpdater$MultiNeighborUpdate/sourceBlock +FD: net/minecraft/world/level/redstone/CollectingNeighborUpdater$MultiNeighborUpdate/f_230694_ net/minecraft/world/level/redstone/CollectingNeighborUpdater$MultiNeighborUpdate/skipDirection +FD: net/minecraft/world/level/redstone/CollectingNeighborUpdater$MultiNeighborUpdate/f_230695_ net/minecraft/world/level/redstone/CollectingNeighborUpdater$MultiNeighborUpdate/idx +FD: net/minecraft/world/level/redstone/CollectingNeighborUpdater$ShapeUpdate/f_230703_ net/minecraft/world/level/redstone/CollectingNeighborUpdater$ShapeUpdate/direction +FD: net/minecraft/world/level/redstone/CollectingNeighborUpdater$ShapeUpdate/f_230704_ net/minecraft/world/level/redstone/CollectingNeighborUpdater$ShapeUpdate/state +FD: net/minecraft/world/level/redstone/CollectingNeighborUpdater$ShapeUpdate/f_230705_ net/minecraft/world/level/redstone/CollectingNeighborUpdater$ShapeUpdate/pos +FD: net/minecraft/world/level/redstone/CollectingNeighborUpdater$ShapeUpdate/f_230706_ net/minecraft/world/level/redstone/CollectingNeighborUpdater$ShapeUpdate/neighborPos +FD: net/minecraft/world/level/redstone/CollectingNeighborUpdater$ShapeUpdate/f_230707_ net/minecraft/world/level/redstone/CollectingNeighborUpdater$ShapeUpdate/updateFlags +FD: net/minecraft/world/level/redstone/CollectingNeighborUpdater$ShapeUpdate/f_276599_ net/minecraft/world/level/redstone/CollectingNeighborUpdater$ShapeUpdate/updateLimit +FD: net/minecraft/world/level/redstone/CollectingNeighborUpdater$SimpleNeighborUpdate/f_230725_ net/minecraft/world/level/redstone/CollectingNeighborUpdater$SimpleNeighborUpdate/pos +FD: net/minecraft/world/level/redstone/CollectingNeighborUpdater$SimpleNeighborUpdate/f_230726_ net/minecraft/world/level/redstone/CollectingNeighborUpdater$SimpleNeighborUpdate/block +FD: net/minecraft/world/level/redstone/CollectingNeighborUpdater$SimpleNeighborUpdate/f_230727_ net/minecraft/world/level/redstone/CollectingNeighborUpdater$SimpleNeighborUpdate/neighborPos +FD: net/minecraft/world/level/redstone/InstantNeighborUpdater/f_230741_ net/minecraft/world/level/redstone/InstantNeighborUpdater/level +FD: net/minecraft/world/level/redstone/NeighborUpdater/f_230761_ net/minecraft/world/level/redstone/NeighborUpdater/UPDATE_ORDER +FD: net/minecraft/world/level/redstone/Redstone/f_164754_ net/minecraft/world/level/redstone/Redstone/SIGNAL_MIN +FD: net/minecraft/world/level/redstone/Redstone/f_164755_ net/minecraft/world/level/redstone/Redstone/SIGNAL_MAX +FD: net/minecraft/world/level/redstone/Redstone/f_164756_ net/minecraft/world/level/redstone/Redstone/SIGNAL_NONE +FD: net/minecraft/world/level/saveddata/SavedData/f_77751_ net/minecraft/world/level/saveddata/SavedData/LOGGER +FD: net/minecraft/world/level/saveddata/SavedData/f_77753_ net/minecraft/world/level/saveddata/SavedData/dirty +FD: net/minecraft/world/level/saveddata/maps/MapBanner/f_77766_ net/minecraft/world/level/saveddata/maps/MapBanner/pos +FD: net/minecraft/world/level/saveddata/maps/MapBanner/f_77767_ net/minecraft/world/level/saveddata/maps/MapBanner/color +FD: net/minecraft/world/level/saveddata/maps/MapBanner/f_77768_ net/minecraft/world/level/saveddata/maps/MapBanner/name +FD: net/minecraft/world/level/saveddata/maps/MapBanner$1/f_77789_ net/minecraft/world/level/saveddata/maps/MapBanner$1/$SwitchMap$net$minecraft$world$item$DyeColor +FD: net/minecraft/world/level/saveddata/maps/MapDecoration/f_77791_ net/minecraft/world/level/saveddata/maps/MapDecoration/type +FD: net/minecraft/world/level/saveddata/maps/MapDecoration/f_77792_ net/minecraft/world/level/saveddata/maps/MapDecoration/x +FD: net/minecraft/world/level/saveddata/maps/MapDecoration/f_77793_ net/minecraft/world/level/saveddata/maps/MapDecoration/y +FD: net/minecraft/world/level/saveddata/maps/MapDecoration/f_77794_ net/minecraft/world/level/saveddata/maps/MapDecoration/rot +FD: net/minecraft/world/level/saveddata/maps/MapDecoration/f_77795_ net/minecraft/world/level/saveddata/maps/MapDecoration/name +FD: net/minecraft/world/level/saveddata/maps/MapDecoration$Type/$VALUES net/minecraft/world/level/saveddata/maps/MapDecoration$Type/$VALUES +FD: net/minecraft/world/level/saveddata/maps/MapDecoration$Type/BANNER_BLACK net/minecraft/world/level/saveddata/maps/MapDecoration$Type/BANNER_BLACK +FD: net/minecraft/world/level/saveddata/maps/MapDecoration$Type/BANNER_BLUE net/minecraft/world/level/saveddata/maps/MapDecoration$Type/BANNER_BLUE +FD: net/minecraft/world/level/saveddata/maps/MapDecoration$Type/BANNER_BROWN net/minecraft/world/level/saveddata/maps/MapDecoration$Type/BANNER_BROWN +FD: net/minecraft/world/level/saveddata/maps/MapDecoration$Type/BANNER_CYAN net/minecraft/world/level/saveddata/maps/MapDecoration$Type/BANNER_CYAN +FD: net/minecraft/world/level/saveddata/maps/MapDecoration$Type/BANNER_GRAY net/minecraft/world/level/saveddata/maps/MapDecoration$Type/BANNER_GRAY +FD: net/minecraft/world/level/saveddata/maps/MapDecoration$Type/BANNER_GREEN net/minecraft/world/level/saveddata/maps/MapDecoration$Type/BANNER_GREEN +FD: net/minecraft/world/level/saveddata/maps/MapDecoration$Type/BANNER_LIGHT_BLUE net/minecraft/world/level/saveddata/maps/MapDecoration$Type/BANNER_LIGHT_BLUE +FD: net/minecraft/world/level/saveddata/maps/MapDecoration$Type/BANNER_LIGHT_GRAY net/minecraft/world/level/saveddata/maps/MapDecoration$Type/BANNER_LIGHT_GRAY +FD: net/minecraft/world/level/saveddata/maps/MapDecoration$Type/BANNER_LIME net/minecraft/world/level/saveddata/maps/MapDecoration$Type/BANNER_LIME +FD: net/minecraft/world/level/saveddata/maps/MapDecoration$Type/BANNER_MAGENTA net/minecraft/world/level/saveddata/maps/MapDecoration$Type/BANNER_MAGENTA +FD: net/minecraft/world/level/saveddata/maps/MapDecoration$Type/BANNER_ORANGE net/minecraft/world/level/saveddata/maps/MapDecoration$Type/BANNER_ORANGE +FD: net/minecraft/world/level/saveddata/maps/MapDecoration$Type/BANNER_PINK net/minecraft/world/level/saveddata/maps/MapDecoration$Type/BANNER_PINK +FD: net/minecraft/world/level/saveddata/maps/MapDecoration$Type/BANNER_PURPLE net/minecraft/world/level/saveddata/maps/MapDecoration$Type/BANNER_PURPLE +FD: net/minecraft/world/level/saveddata/maps/MapDecoration$Type/BANNER_RED net/minecraft/world/level/saveddata/maps/MapDecoration$Type/BANNER_RED +FD: net/minecraft/world/level/saveddata/maps/MapDecoration$Type/BANNER_WHITE net/minecraft/world/level/saveddata/maps/MapDecoration$Type/BANNER_WHITE +FD: net/minecraft/world/level/saveddata/maps/MapDecoration$Type/BANNER_YELLOW net/minecraft/world/level/saveddata/maps/MapDecoration$Type/BANNER_YELLOW +FD: net/minecraft/world/level/saveddata/maps/MapDecoration$Type/BLUE_MARKER net/minecraft/world/level/saveddata/maps/MapDecoration$Type/BLUE_MARKER +FD: net/minecraft/world/level/saveddata/maps/MapDecoration$Type/FRAME net/minecraft/world/level/saveddata/maps/MapDecoration$Type/FRAME +FD: net/minecraft/world/level/saveddata/maps/MapDecoration$Type/MANSION net/minecraft/world/level/saveddata/maps/MapDecoration$Type/MANSION +FD: net/minecraft/world/level/saveddata/maps/MapDecoration$Type/MONUMENT net/minecraft/world/level/saveddata/maps/MapDecoration$Type/MONUMENT +FD: net/minecraft/world/level/saveddata/maps/MapDecoration$Type/PLAYER net/minecraft/world/level/saveddata/maps/MapDecoration$Type/PLAYER +FD: net/minecraft/world/level/saveddata/maps/MapDecoration$Type/PLAYER_OFF_LIMITS net/minecraft/world/level/saveddata/maps/MapDecoration$Type/PLAYER_OFF_LIMITS +FD: net/minecraft/world/level/saveddata/maps/MapDecoration$Type/PLAYER_OFF_MAP net/minecraft/world/level/saveddata/maps/MapDecoration$Type/PLAYER_OFF_MAP +FD: net/minecraft/world/level/saveddata/maps/MapDecoration$Type/RED_MARKER net/minecraft/world/level/saveddata/maps/MapDecoration$Type/RED_MARKER +FD: net/minecraft/world/level/saveddata/maps/MapDecoration$Type/RED_X net/minecraft/world/level/saveddata/maps/MapDecoration$Type/RED_X +FD: net/minecraft/world/level/saveddata/maps/MapDecoration$Type/TARGET_POINT net/minecraft/world/level/saveddata/maps/MapDecoration$Type/TARGET_POINT +FD: net/minecraft/world/level/saveddata/maps/MapDecoration$Type/TARGET_X net/minecraft/world/level/saveddata/maps/MapDecoration$Type/TARGET_X +FD: net/minecraft/world/level/saveddata/maps/MapDecoration$Type/f_181294_ net/minecraft/world/level/saveddata/maps/MapDecoration$Type/trackCount +FD: net/minecraft/world/level/saveddata/maps/MapDecoration$Type/f_77813_ net/minecraft/world/level/saveddata/maps/MapDecoration$Type/icon +FD: net/minecraft/world/level/saveddata/maps/MapDecoration$Type/f_77814_ net/minecraft/world/level/saveddata/maps/MapDecoration$Type/renderedOnFrame +FD: net/minecraft/world/level/saveddata/maps/MapDecoration$Type/f_77815_ net/minecraft/world/level/saveddata/maps/MapDecoration$Type/mapColor +FD: net/minecraft/world/level/saveddata/maps/MapFrame/f_77862_ net/minecraft/world/level/saveddata/maps/MapFrame/pos +FD: net/minecraft/world/level/saveddata/maps/MapFrame/f_77863_ net/minecraft/world/level/saveddata/maps/MapFrame/rotation +FD: net/minecraft/world/level/saveddata/maps/MapFrame/f_77864_ net/minecraft/world/level/saveddata/maps/MapFrame/entityId +FD: net/minecraft/world/level/saveddata/maps/MapIndex/f_164761_ net/minecraft/world/level/saveddata/maps/MapIndex/FILE_NAME +FD: net/minecraft/world/level/saveddata/maps/MapIndex/f_77878_ net/minecraft/world/level/saveddata/maps/MapIndex/usedAuxIds +FD: net/minecraft/world/level/saveddata/maps/MapItemSavedData/f_164764_ net/minecraft/world/level/saveddata/maps/MapItemSavedData/MAX_SCALE +FD: net/minecraft/world/level/saveddata/maps/MapItemSavedData/f_164765_ net/minecraft/world/level/saveddata/maps/MapItemSavedData/MAP_SIZE +FD: net/minecraft/world/level/saveddata/maps/MapItemSavedData/f_164766_ net/minecraft/world/level/saveddata/maps/MapItemSavedData/HALF_MAP_SIZE +FD: net/minecraft/world/level/saveddata/maps/MapItemSavedData/f_181307_ net/minecraft/world/level/saveddata/maps/MapItemSavedData/TRACKED_DECORATION_LIMIT +FD: net/minecraft/world/level/saveddata/maps/MapItemSavedData/f_181308_ net/minecraft/world/level/saveddata/maps/MapItemSavedData/trackedDecorationCount +FD: net/minecraft/world/level/saveddata/maps/MapItemSavedData/f_256718_ net/minecraft/world/level/saveddata/maps/MapItemSavedData/centerX +FD: net/minecraft/world/level/saveddata/maps/MapItemSavedData/f_256789_ net/minecraft/world/level/saveddata/maps/MapItemSavedData/centerZ +FD: net/minecraft/world/level/saveddata/maps/MapItemSavedData/f_77887_ net/minecraft/world/level/saveddata/maps/MapItemSavedData/dimension +FD: net/minecraft/world/level/saveddata/maps/MapItemSavedData/f_77888_ net/minecraft/world/level/saveddata/maps/MapItemSavedData/trackingPosition +FD: net/minecraft/world/level/saveddata/maps/MapItemSavedData/f_77889_ net/minecraft/world/level/saveddata/maps/MapItemSavedData/unlimitedTracking +FD: net/minecraft/world/level/saveddata/maps/MapItemSavedData/f_77890_ net/minecraft/world/level/saveddata/maps/MapItemSavedData/scale +FD: net/minecraft/world/level/saveddata/maps/MapItemSavedData/f_77891_ net/minecraft/world/level/saveddata/maps/MapItemSavedData/colors +FD: net/minecraft/world/level/saveddata/maps/MapItemSavedData/f_77892_ net/minecraft/world/level/saveddata/maps/MapItemSavedData/locked +FD: net/minecraft/world/level/saveddata/maps/MapItemSavedData/f_77893_ net/minecraft/world/level/saveddata/maps/MapItemSavedData/carriedBy +FD: net/minecraft/world/level/saveddata/maps/MapItemSavedData/f_77894_ net/minecraft/world/level/saveddata/maps/MapItemSavedData/decorations +FD: net/minecraft/world/level/saveddata/maps/MapItemSavedData/f_77895_ net/minecraft/world/level/saveddata/maps/MapItemSavedData/LOGGER +FD: net/minecraft/world/level/saveddata/maps/MapItemSavedData/f_77896_ net/minecraft/world/level/saveddata/maps/MapItemSavedData/carriedByPlayers +FD: net/minecraft/world/level/saveddata/maps/MapItemSavedData/f_77897_ net/minecraft/world/level/saveddata/maps/MapItemSavedData/bannerMarkers +FD: net/minecraft/world/level/saveddata/maps/MapItemSavedData/f_77898_ net/minecraft/world/level/saveddata/maps/MapItemSavedData/frameMarkers +FD: net/minecraft/world/level/saveddata/maps/MapItemSavedData$HoldingPlayer/f_164813_ net/minecraft/world/level/saveddata/maps/MapItemSavedData$HoldingPlayer/dirtyDecorations +FD: net/minecraft/world/level/saveddata/maps/MapItemSavedData$HoldingPlayer/f_77959_ net/minecraft/world/level/saveddata/maps/MapItemSavedData$HoldingPlayer/player +FD: net/minecraft/world/level/saveddata/maps/MapItemSavedData$HoldingPlayer/f_77960_ net/minecraft/world/level/saveddata/maps/MapItemSavedData$HoldingPlayer/step +FD: net/minecraft/world/level/saveddata/maps/MapItemSavedData$HoldingPlayer/f_77961_ net/minecraft/world/level/saveddata/maps/MapItemSavedData$HoldingPlayer/this$0 +FD: net/minecraft/world/level/saveddata/maps/MapItemSavedData$HoldingPlayer/f_77962_ net/minecraft/world/level/saveddata/maps/MapItemSavedData$HoldingPlayer/dirtyData +FD: net/minecraft/world/level/saveddata/maps/MapItemSavedData$HoldingPlayer/f_77963_ net/minecraft/world/level/saveddata/maps/MapItemSavedData$HoldingPlayer/minDirtyX +FD: net/minecraft/world/level/saveddata/maps/MapItemSavedData$HoldingPlayer/f_77964_ net/minecraft/world/level/saveddata/maps/MapItemSavedData$HoldingPlayer/minDirtyY +FD: net/minecraft/world/level/saveddata/maps/MapItemSavedData$HoldingPlayer/f_77965_ net/minecraft/world/level/saveddata/maps/MapItemSavedData$HoldingPlayer/maxDirtyX +FD: net/minecraft/world/level/saveddata/maps/MapItemSavedData$HoldingPlayer/f_77966_ net/minecraft/world/level/saveddata/maps/MapItemSavedData$HoldingPlayer/maxDirtyY +FD: net/minecraft/world/level/saveddata/maps/MapItemSavedData$HoldingPlayer/f_77967_ net/minecraft/world/level/saveddata/maps/MapItemSavedData$HoldingPlayer/tick +FD: net/minecraft/world/level/saveddata/maps/MapItemSavedData$MapPatch/f_164821_ net/minecraft/world/level/saveddata/maps/MapItemSavedData$MapPatch/startX +FD: net/minecraft/world/level/saveddata/maps/MapItemSavedData$MapPatch/f_164822_ net/minecraft/world/level/saveddata/maps/MapItemSavedData$MapPatch/startY +FD: net/minecraft/world/level/saveddata/maps/MapItemSavedData$MapPatch/f_164823_ net/minecraft/world/level/saveddata/maps/MapItemSavedData$MapPatch/width +FD: net/minecraft/world/level/saveddata/maps/MapItemSavedData$MapPatch/f_164824_ net/minecraft/world/level/saveddata/maps/MapItemSavedData$MapPatch/height +FD: net/minecraft/world/level/saveddata/maps/MapItemSavedData$MapPatch/f_164825_ net/minecraft/world/level/saveddata/maps/MapItemSavedData$MapPatch/mapColors +FD: net/minecraft/world/level/storage/CommandStorage/f_164834_ net/minecraft/world/level/storage/CommandStorage/ID_PREFIX +FD: net/minecraft/world/level/storage/CommandStorage/f_78032_ net/minecraft/world/level/storage/CommandStorage/namespaces +FD: net/minecraft/world/level/storage/CommandStorage/f_78033_ net/minecraft/world/level/storage/CommandStorage/storage +FD: net/minecraft/world/level/storage/CommandStorage$Container/f_164847_ net/minecraft/world/level/storage/CommandStorage$Container/TAG_CONTENTS +FD: net/minecraft/world/level/storage/CommandStorage$Container/f_78055_ net/minecraft/world/level/storage/CommandStorage$Container/storage +FD: net/minecraft/world/level/storage/DataVersion/f_192993_ net/minecraft/world/level/storage/DataVersion/MAIN_SERIES +FD: net/minecraft/world/level/storage/DataVersion/f_192994_ net/minecraft/world/level/storage/DataVersion/version +FD: net/minecraft/world/level/storage/DataVersion/f_192995_ net/minecraft/world/level/storage/DataVersion/series +FD: net/minecraft/world/level/storage/DerivedLevelData/f_78076_ net/minecraft/world/level/storage/DerivedLevelData/worldData +FD: net/minecraft/world/level/storage/DerivedLevelData/f_78077_ net/minecraft/world/level/storage/DerivedLevelData/wrapped +FD: net/minecraft/world/level/storage/DimensionDataStorage/f_78143_ net/minecraft/world/level/storage/DimensionDataStorage/LOGGER +FD: net/minecraft/world/level/storage/DimensionDataStorage/f_78144_ net/minecraft/world/level/storage/DimensionDataStorage/cache +FD: net/minecraft/world/level/storage/DimensionDataStorage/f_78145_ net/minecraft/world/level/storage/DimensionDataStorage/fixerUpper +FD: net/minecraft/world/level/storage/DimensionDataStorage/f_78146_ net/minecraft/world/level/storage/DimensionDataStorage/dataFolder +FD: net/minecraft/world/level/storage/LevelResource/f_230800_ net/minecraft/world/level/storage/LevelResource/OLD_LEVEL_DATA_FILE +FD: net/minecraft/world/level/storage/LevelResource/f_230801_ net/minecraft/world/level/storage/LevelResource/ICON_FILE +FD: net/minecraft/world/level/storage/LevelResource/f_230802_ net/minecraft/world/level/storage/LevelResource/LOCK_FILE +FD: net/minecraft/world/level/storage/LevelResource/f_78174_ net/minecraft/world/level/storage/LevelResource/PLAYER_ADVANCEMENTS_DIR +FD: net/minecraft/world/level/storage/LevelResource/f_78175_ net/minecraft/world/level/storage/LevelResource/PLAYER_STATS_DIR +FD: net/minecraft/world/level/storage/LevelResource/f_78176_ net/minecraft/world/level/storage/LevelResource/PLAYER_DATA_DIR +FD: net/minecraft/world/level/storage/LevelResource/f_78177_ net/minecraft/world/level/storage/LevelResource/PLAYER_OLD_DATA_DIR +FD: net/minecraft/world/level/storage/LevelResource/f_78178_ net/minecraft/world/level/storage/LevelResource/LEVEL_DATA_FILE +FD: net/minecraft/world/level/storage/LevelResource/f_78179_ net/minecraft/world/level/storage/LevelResource/GENERATED_DIR +FD: net/minecraft/world/level/storage/LevelResource/f_78180_ net/minecraft/world/level/storage/LevelResource/DATAPACK_DIR +FD: net/minecraft/world/level/storage/LevelResource/f_78181_ net/minecraft/world/level/storage/LevelResource/MAP_RESOURCE_FILE +FD: net/minecraft/world/level/storage/LevelResource/f_78182_ net/minecraft/world/level/storage/LevelResource/ROOT +FD: net/minecraft/world/level/storage/LevelResource/f_78183_ net/minecraft/world/level/storage/LevelResource/id +FD: net/minecraft/world/level/storage/LevelStorageException/f_230803_ net/minecraft/world/level/storage/LevelStorageException/messageComponent +FD: net/minecraft/world/level/storage/LevelStorageSource/f_202311_ net/minecraft/world/level/storage/LevelStorageSource/TAG_DATA +FD: net/minecraft/world/level/storage/LevelStorageSource/f_289816_ net/minecraft/world/level/storage/LevelStorageSource/worldDirValidator +FD: net/minecraft/world/level/storage/LevelStorageSource/f_289824_ net/minecraft/world/level/storage/LevelStorageSource/ALLOWED_SYMLINKS_CONFIG_NAME +FD: net/minecraft/world/level/storage/LevelStorageSource/f_289833_ net/minecraft/world/level/storage/LevelStorageSource/NO_SYMLINKS_ALLOWED +FD: net/minecraft/world/level/storage/LevelStorageSource/f_78191_ net/minecraft/world/level/storage/LevelStorageSource/LOGGER +FD: net/minecraft/world/level/storage/LevelStorageSource/f_78192_ net/minecraft/world/level/storage/LevelStorageSource/FORMATTER +FD: net/minecraft/world/level/storage/LevelStorageSource/f_78193_ net/minecraft/world/level/storage/LevelStorageSource/OLD_SETTINGS_KEYS +FD: net/minecraft/world/level/storage/LevelStorageSource/f_78194_ net/minecraft/world/level/storage/LevelStorageSource/baseDir +FD: net/minecraft/world/level/storage/LevelStorageSource/f_78195_ net/minecraft/world/level/storage/LevelStorageSource/backupDir +FD: net/minecraft/world/level/storage/LevelStorageSource/f_78196_ net/minecraft/world/level/storage/LevelStorageSource/fixerUpper +FD: net/minecraft/world/level/storage/LevelStorageSource$LevelCandidates/f_230840_ net/minecraft/world/level/storage/LevelStorageSource$LevelCandidates/levels +FD: net/minecraft/world/level/storage/LevelStorageSource$LevelDirectory/f_230850_ net/minecraft/world/level/storage/LevelStorageSource$LevelDirectory/path +FD: net/minecraft/world/level/storage/LevelStorageSource$LevelStorageAccess/f_230867_ net/minecraft/world/level/storage/LevelStorageSource$LevelStorageAccess/levelDirectory +FD: net/minecraft/world/level/storage/LevelStorageSource$LevelStorageAccess/f_78269_ net/minecraft/world/level/storage/LevelStorageSource$LevelStorageAccess/this$0 +FD: net/minecraft/world/level/storage/LevelStorageSource$LevelStorageAccess/f_78270_ net/minecraft/world/level/storage/LevelStorageSource$LevelStorageAccess/lock +FD: net/minecraft/world/level/storage/LevelStorageSource$LevelStorageAccess/f_78272_ net/minecraft/world/level/storage/LevelStorageSource$LevelStorageAccess/levelId +FD: net/minecraft/world/level/storage/LevelStorageSource$LevelStorageAccess/f_78273_ net/minecraft/world/level/storage/LevelStorageSource$LevelStorageAccess/resources +FD: net/minecraft/world/level/storage/LevelStorageSource$LevelStorageAccess$1/f_78314_ net/minecraft/world/level/storage/LevelStorageSource$LevelStorageAccess$1/val$lockPath +FD: net/minecraft/world/level/storage/LevelStorageSource$LevelStorageAccess$1/f_78315_ net/minecraft/world/level/storage/LevelStorageSource$LevelStorageAccess$1/this$1 +FD: net/minecraft/world/level/storage/LevelStorageSource$LevelStorageAccess$2/f_78331_ net/minecraft/world/level/storage/LevelStorageSource$LevelStorageAccess$2/val$rootPath +FD: net/minecraft/world/level/storage/LevelStorageSource$LevelStorageAccess$2/f_78332_ net/minecraft/world/level/storage/LevelStorageSource$LevelStorageAccess$2/val$stream +FD: net/minecraft/world/level/storage/LevelStorageSource$LevelStorageAccess$2/f_78333_ net/minecraft/world/level/storage/LevelStorageSource$LevelStorageAccess$2/this$1 +FD: net/minecraft/world/level/storage/LevelSummary/f_193019_ net/minecraft/world/level/storage/LevelSummary/requiresManualConversion +FD: net/minecraft/world/level/storage/LevelSummary/f_244135_ net/minecraft/world/level/storage/LevelSummary/experimental +FD: net/minecraft/world/level/storage/LevelSummary/f_78344_ net/minecraft/world/level/storage/LevelSummary/settings +FD: net/minecraft/world/level/storage/LevelSummary/f_78345_ net/minecraft/world/level/storage/LevelSummary/levelVersion +FD: net/minecraft/world/level/storage/LevelSummary/f_78346_ net/minecraft/world/level/storage/LevelSummary/levelId +FD: net/minecraft/world/level/storage/LevelSummary/f_78348_ net/minecraft/world/level/storage/LevelSummary/locked +FD: net/minecraft/world/level/storage/LevelSummary/f_78349_ net/minecraft/world/level/storage/LevelSummary/icon +FD: net/minecraft/world/level/storage/LevelSummary/f_78350_ net/minecraft/world/level/storage/LevelSummary/info +FD: net/minecraft/world/level/storage/LevelSummary$BackupStatus/$VALUES net/minecraft/world/level/storage/LevelSummary$BackupStatus/$VALUES +FD: net/minecraft/world/level/storage/LevelSummary$BackupStatus/DOWNGRADE net/minecraft/world/level/storage/LevelSummary$BackupStatus/DOWNGRADE +FD: net/minecraft/world/level/storage/LevelSummary$BackupStatus/NONE net/minecraft/world/level/storage/LevelSummary$BackupStatus/NONE +FD: net/minecraft/world/level/storage/LevelSummary$BackupStatus/UPGRADE_TO_SNAPSHOT net/minecraft/world/level/storage/LevelSummary$BackupStatus/UPGRADE_TO_SNAPSHOT +FD: net/minecraft/world/level/storage/LevelSummary$BackupStatus/f_164920_ net/minecraft/world/level/storage/LevelSummary$BackupStatus/shouldBackup +FD: net/minecraft/world/level/storage/LevelSummary$BackupStatus/f_164921_ net/minecraft/world/level/storage/LevelSummary$BackupStatus/severe +FD: net/minecraft/world/level/storage/LevelSummary$BackupStatus/f_164922_ net/minecraft/world/level/storage/LevelSummary$BackupStatus/translationKey +FD: net/minecraft/world/level/storage/LevelVersion/f_78378_ net/minecraft/world/level/storage/LevelVersion/levelDataVersion +FD: net/minecraft/world/level/storage/LevelVersion/f_78379_ net/minecraft/world/level/storage/LevelVersion/lastPlayed +FD: net/minecraft/world/level/storage/LevelVersion/f_78380_ net/minecraft/world/level/storage/LevelVersion/minecraftVersionName +FD: net/minecraft/world/level/storage/LevelVersion/f_78381_ net/minecraft/world/level/storage/LevelVersion/minecraftVersion +FD: net/minecraft/world/level/storage/LevelVersion/f_78382_ net/minecraft/world/level/storage/LevelVersion/snapshot +FD: net/minecraft/world/level/storage/PlayerDataStorage/f_78425_ net/minecraft/world/level/storage/PlayerDataStorage/fixerUpper +FD: net/minecraft/world/level/storage/PlayerDataStorage/f_78426_ net/minecraft/world/level/storage/PlayerDataStorage/LOGGER +FD: net/minecraft/world/level/storage/PlayerDataStorage/f_78427_ net/minecraft/world/level/storage/PlayerDataStorage/playerDir +FD: net/minecraft/world/level/storage/PrimaryLevelData/f_164940_ net/minecraft/world/level/storage/PrimaryLevelData/WORLD_GEN_SETTINGS +FD: net/minecraft/world/level/storage/PrimaryLevelData/f_202314_ net/minecraft/world/level/storage/PrimaryLevelData/PLAYER +FD: net/minecraft/world/level/storage/PrimaryLevelData/f_244368_ net/minecraft/world/level/storage/PrimaryLevelData/specialWorldProperty +FD: net/minecraft/world/level/storage/PrimaryLevelData/f_244409_ net/minecraft/world/level/storage/PrimaryLevelData/worldOptions +FD: net/minecraft/world/level/storage/PrimaryLevelData/f_276525_ net/minecraft/world/level/storage/PrimaryLevelData/removedFeatureFlags +FD: net/minecraft/world/level/storage/PrimaryLevelData/f_78437_ net/minecraft/world/level/storage/PrimaryLevelData/wanderingTraderSpawnChance +FD: net/minecraft/world/level/storage/PrimaryLevelData/f_78438_ net/minecraft/world/level/storage/PrimaryLevelData/wanderingTraderId +FD: net/minecraft/world/level/storage/PrimaryLevelData/f_78439_ net/minecraft/world/level/storage/PrimaryLevelData/knownServerBrands +FD: net/minecraft/world/level/storage/PrimaryLevelData/f_78440_ net/minecraft/world/level/storage/PrimaryLevelData/wasModded +FD: net/minecraft/world/level/storage/PrimaryLevelData/f_78441_ net/minecraft/world/level/storage/PrimaryLevelData/scheduledEvents +FD: net/minecraft/world/level/storage/PrimaryLevelData/f_78442_ net/minecraft/world/level/storage/PrimaryLevelData/LOGGER +FD: net/minecraft/world/level/storage/PrimaryLevelData/f_78443_ net/minecraft/world/level/storage/PrimaryLevelData/settings +FD: net/minecraft/world/level/storage/PrimaryLevelData/f_78445_ net/minecraft/world/level/storage/PrimaryLevelData/worldGenSettingsLifecycle +FD: net/minecraft/world/level/storage/PrimaryLevelData/f_78446_ net/minecraft/world/level/storage/PrimaryLevelData/xSpawn +FD: net/minecraft/world/level/storage/PrimaryLevelData/f_78447_ net/minecraft/world/level/storage/PrimaryLevelData/ySpawn +FD: net/minecraft/world/level/storage/PrimaryLevelData/f_78448_ net/minecraft/world/level/storage/PrimaryLevelData/zSpawn +FD: net/minecraft/world/level/storage/PrimaryLevelData/f_78449_ net/minecraft/world/level/storage/PrimaryLevelData/spawnAngle +FD: net/minecraft/world/level/storage/PrimaryLevelData/f_78450_ net/minecraft/world/level/storage/PrimaryLevelData/gameTime +FD: net/minecraft/world/level/storage/PrimaryLevelData/f_78451_ net/minecraft/world/level/storage/PrimaryLevelData/dayTime +FD: net/minecraft/world/level/storage/PrimaryLevelData/f_78452_ net/minecraft/world/level/storage/PrimaryLevelData/fixerUpper +FD: net/minecraft/world/level/storage/PrimaryLevelData/f_78453_ net/minecraft/world/level/storage/PrimaryLevelData/playerDataVersion +FD: net/minecraft/world/level/storage/PrimaryLevelData/f_78454_ net/minecraft/world/level/storage/PrimaryLevelData/upgradedPlayerTag +FD: net/minecraft/world/level/storage/PrimaryLevelData/f_78455_ net/minecraft/world/level/storage/PrimaryLevelData/loadedPlayerTag +FD: net/minecraft/world/level/storage/PrimaryLevelData/f_78456_ net/minecraft/world/level/storage/PrimaryLevelData/version +FD: net/minecraft/world/level/storage/PrimaryLevelData/f_78457_ net/minecraft/world/level/storage/PrimaryLevelData/clearWeatherTime +FD: net/minecraft/world/level/storage/PrimaryLevelData/f_78458_ net/minecraft/world/level/storage/PrimaryLevelData/raining +FD: net/minecraft/world/level/storage/PrimaryLevelData/f_78459_ net/minecraft/world/level/storage/PrimaryLevelData/rainTime +FD: net/minecraft/world/level/storage/PrimaryLevelData/f_78460_ net/minecraft/world/level/storage/PrimaryLevelData/thundering +FD: net/minecraft/world/level/storage/PrimaryLevelData/f_78461_ net/minecraft/world/level/storage/PrimaryLevelData/thunderTime +FD: net/minecraft/world/level/storage/PrimaryLevelData/f_78462_ net/minecraft/world/level/storage/PrimaryLevelData/initialized +FD: net/minecraft/world/level/storage/PrimaryLevelData/f_78463_ net/minecraft/world/level/storage/PrimaryLevelData/difficultyLocked +FD: net/minecraft/world/level/storage/PrimaryLevelData/f_78464_ net/minecraft/world/level/storage/PrimaryLevelData/worldBorder +FD: net/minecraft/world/level/storage/PrimaryLevelData/f_78465_ net/minecraft/world/level/storage/PrimaryLevelData/endDragonFightData +FD: net/minecraft/world/level/storage/PrimaryLevelData/f_78466_ net/minecraft/world/level/storage/PrimaryLevelData/customBossEvents +FD: net/minecraft/world/level/storage/PrimaryLevelData/f_78467_ net/minecraft/world/level/storage/PrimaryLevelData/wanderingTraderSpawnDelay +FD: net/minecraft/world/level/storage/PrimaryLevelData$SpecialWorldProperty/$VALUES net/minecraft/world/level/storage/PrimaryLevelData$SpecialWorldProperty/$VALUES +FD: net/minecraft/world/level/storage/PrimaryLevelData$SpecialWorldProperty/DEBUG net/minecraft/world/level/storage/PrimaryLevelData$SpecialWorldProperty/DEBUG +FD: net/minecraft/world/level/storage/PrimaryLevelData$SpecialWorldProperty/FLAT net/minecraft/world/level/storage/PrimaryLevelData$SpecialWorldProperty/FLAT +FD: net/minecraft/world/level/storage/PrimaryLevelData$SpecialWorldProperty/NONE net/minecraft/world/level/storage/PrimaryLevelData$SpecialWorldProperty/NONE +FD: net/minecraft/world/level/storage/WorldData/f_164978_ net/minecraft/world/level/storage/WorldData/ANVIL_VERSION_ID +FD: net/minecraft/world/level/storage/WorldData/f_164979_ net/minecraft/world/level/storage/WorldData/MCREGION_VERSION_ID +FD: net/minecraft/world/level/storage/loot/BuiltInLootTables/f_230876_ net/minecraft/world/level/storage/loot/BuiltInLootTables/ANCIENT_CITY +FD: net/minecraft/world/level/storage/loot/BuiltInLootTables/f_230877_ net/minecraft/world/level/storage/loot/BuiltInLootTables/ANCIENT_CITY_ICE_BOX +FD: net/minecraft/world/level/storage/loot/BuiltInLootTables/f_276611_ net/minecraft/world/level/storage/loot/BuiltInLootTables/OCEAN_RUIN_WARM_ARCHAEOLOGY +FD: net/minecraft/world/level/storage/loot/BuiltInLootTables/f_276614_ net/minecraft/world/level/storage/loot/BuiltInLootTables/OCEAN_RUIN_COLD_ARCHAEOLOGY +FD: net/minecraft/world/level/storage/loot/BuiltInLootTables/f_276661_ net/minecraft/world/level/storage/loot/BuiltInLootTables/DESERT_PYRAMID_ARCHAEOLOGY +FD: net/minecraft/world/level/storage/loot/BuiltInLootTables/f_276662_ net/minecraft/world/level/storage/loot/BuiltInLootTables/DESERT_WELL_ARCHAEOLOGY +FD: net/minecraft/world/level/storage/loot/BuiltInLootTables/f_279573_ net/minecraft/world/level/storage/loot/BuiltInLootTables/TRAIL_RUINS_ARCHAEOLOGY_COMMON +FD: net/minecraft/world/level/storage/loot/BuiltInLootTables/f_279604_ net/minecraft/world/level/storage/loot/BuiltInLootTables/TRAIL_RUINS_ARCHAEOLOGY_RARE +FD: net/minecraft/world/level/storage/loot/BuiltInLootTables/f_283841_ net/minecraft/world/level/storage/loot/BuiltInLootTables/SNIFFER_DIGGING +FD: net/minecraft/world/level/storage/loot/BuiltInLootTables/f_78686_ net/minecraft/world/level/storage/loot/BuiltInLootTables/JUNGLE_TEMPLE +FD: net/minecraft/world/level/storage/loot/BuiltInLootTables/f_78687_ net/minecraft/world/level/storage/loot/BuiltInLootTables/JUNGLE_TEMPLE_DISPENSER +FD: net/minecraft/world/level/storage/loot/BuiltInLootTables/f_78688_ net/minecraft/world/level/storage/loot/BuiltInLootTables/IGLOO_CHEST +FD: net/minecraft/world/level/storage/loot/BuiltInLootTables/f_78689_ net/minecraft/world/level/storage/loot/BuiltInLootTables/WOODLAND_MANSION +FD: net/minecraft/world/level/storage/loot/BuiltInLootTables/f_78690_ net/minecraft/world/level/storage/loot/BuiltInLootTables/UNDERWATER_RUIN_SMALL +FD: net/minecraft/world/level/storage/loot/BuiltInLootTables/f_78691_ net/minecraft/world/level/storage/loot/BuiltInLootTables/UNDERWATER_RUIN_BIG +FD: net/minecraft/world/level/storage/loot/BuiltInLootTables/f_78692_ net/minecraft/world/level/storage/loot/BuiltInLootTables/BURIED_TREASURE +FD: net/minecraft/world/level/storage/loot/BuiltInLootTables/f_78693_ net/minecraft/world/level/storage/loot/BuiltInLootTables/SHIPWRECK_MAP +FD: net/minecraft/world/level/storage/loot/BuiltInLootTables/f_78694_ net/minecraft/world/level/storage/loot/BuiltInLootTables/SHIPWRECK_SUPPLY +FD: net/minecraft/world/level/storage/loot/BuiltInLootTables/f_78695_ net/minecraft/world/level/storage/loot/BuiltInLootTables/SHIPWRECK_TREASURE +FD: net/minecraft/world/level/storage/loot/BuiltInLootTables/f_78696_ net/minecraft/world/level/storage/loot/BuiltInLootTables/PILLAGER_OUTPOST +FD: net/minecraft/world/level/storage/loot/BuiltInLootTables/f_78697_ net/minecraft/world/level/storage/loot/BuiltInLootTables/BASTION_TREASURE +FD: net/minecraft/world/level/storage/loot/BuiltInLootTables/f_78698_ net/minecraft/world/level/storage/loot/BuiltInLootTables/BASTION_OTHER +FD: net/minecraft/world/level/storage/loot/BuiltInLootTables/f_78699_ net/minecraft/world/level/storage/loot/BuiltInLootTables/BASTION_BRIDGE +FD: net/minecraft/world/level/storage/loot/BuiltInLootTables/f_78700_ net/minecraft/world/level/storage/loot/BuiltInLootTables/BASTION_HOGLIN_STABLE +FD: net/minecraft/world/level/storage/loot/BuiltInLootTables/f_78701_ net/minecraft/world/level/storage/loot/BuiltInLootTables/RUINED_PORTAL +FD: net/minecraft/world/level/storage/loot/BuiltInLootTables/f_78702_ net/minecraft/world/level/storage/loot/BuiltInLootTables/SHEEP_WHITE +FD: net/minecraft/world/level/storage/loot/BuiltInLootTables/f_78703_ net/minecraft/world/level/storage/loot/BuiltInLootTables/SHEEP_ORANGE +FD: net/minecraft/world/level/storage/loot/BuiltInLootTables/f_78704_ net/minecraft/world/level/storage/loot/BuiltInLootTables/SHEEP_MAGENTA +FD: net/minecraft/world/level/storage/loot/BuiltInLootTables/f_78705_ net/minecraft/world/level/storage/loot/BuiltInLootTables/SHEEP_LIGHT_BLUE +FD: net/minecraft/world/level/storage/loot/BuiltInLootTables/f_78706_ net/minecraft/world/level/storage/loot/BuiltInLootTables/SHEEP_YELLOW +FD: net/minecraft/world/level/storage/loot/BuiltInLootTables/f_78707_ net/minecraft/world/level/storage/loot/BuiltInLootTables/SHEEP_LIME +FD: net/minecraft/world/level/storage/loot/BuiltInLootTables/f_78708_ net/minecraft/world/level/storage/loot/BuiltInLootTables/SHEEP_PINK +FD: net/minecraft/world/level/storage/loot/BuiltInLootTables/f_78709_ net/minecraft/world/level/storage/loot/BuiltInLootTables/SHEEP_GRAY +FD: net/minecraft/world/level/storage/loot/BuiltInLootTables/f_78710_ net/minecraft/world/level/storage/loot/BuiltInLootTables/SHEEP_LIGHT_GRAY +FD: net/minecraft/world/level/storage/loot/BuiltInLootTables/f_78711_ net/minecraft/world/level/storage/loot/BuiltInLootTables/SHEEP_CYAN +FD: net/minecraft/world/level/storage/loot/BuiltInLootTables/f_78712_ net/minecraft/world/level/storage/loot/BuiltInLootTables/EMPTY +FD: net/minecraft/world/level/storage/loot/BuiltInLootTables/f_78713_ net/minecraft/world/level/storage/loot/BuiltInLootTables/IMMUTABLE_LOCATIONS +FD: net/minecraft/world/level/storage/loot/BuiltInLootTables/f_78714_ net/minecraft/world/level/storage/loot/BuiltInLootTables/SHEEP_PURPLE +FD: net/minecraft/world/level/storage/loot/BuiltInLootTables/f_78715_ net/minecraft/world/level/storage/loot/BuiltInLootTables/SHEEP_BLUE +FD: net/minecraft/world/level/storage/loot/BuiltInLootTables/f_78716_ net/minecraft/world/level/storage/loot/BuiltInLootTables/SHEEP_BROWN +FD: net/minecraft/world/level/storage/loot/BuiltInLootTables/f_78717_ net/minecraft/world/level/storage/loot/BuiltInLootTables/SHEEP_GREEN +FD: net/minecraft/world/level/storage/loot/BuiltInLootTables/f_78718_ net/minecraft/world/level/storage/loot/BuiltInLootTables/SHEEP_RED +FD: net/minecraft/world/level/storage/loot/BuiltInLootTables/f_78719_ net/minecraft/world/level/storage/loot/BuiltInLootTables/SHEEP_BLACK +FD: net/minecraft/world/level/storage/loot/BuiltInLootTables/f_78720_ net/minecraft/world/level/storage/loot/BuiltInLootTables/FISHING +FD: net/minecraft/world/level/storage/loot/BuiltInLootTables/f_78721_ net/minecraft/world/level/storage/loot/BuiltInLootTables/FISHING_JUNK +FD: net/minecraft/world/level/storage/loot/BuiltInLootTables/f_78722_ net/minecraft/world/level/storage/loot/BuiltInLootTables/FISHING_TREASURE +FD: net/minecraft/world/level/storage/loot/BuiltInLootTables/f_78723_ net/minecraft/world/level/storage/loot/BuiltInLootTables/FISHING_FISH +FD: net/minecraft/world/level/storage/loot/BuiltInLootTables/f_78724_ net/minecraft/world/level/storage/loot/BuiltInLootTables/CAT_MORNING_GIFT +FD: net/minecraft/world/level/storage/loot/BuiltInLootTables/f_78725_ net/minecraft/world/level/storage/loot/BuiltInLootTables/ARMORER_GIFT +FD: net/minecraft/world/level/storage/loot/BuiltInLootTables/f_78726_ net/minecraft/world/level/storage/loot/BuiltInLootTables/BUTCHER_GIFT +FD: net/minecraft/world/level/storage/loot/BuiltInLootTables/f_78727_ net/minecraft/world/level/storage/loot/BuiltInLootTables/CARTOGRAPHER_GIFT +FD: net/minecraft/world/level/storage/loot/BuiltInLootTables/f_78728_ net/minecraft/world/level/storage/loot/BuiltInLootTables/CLERIC_GIFT +FD: net/minecraft/world/level/storage/loot/BuiltInLootTables/f_78729_ net/minecraft/world/level/storage/loot/BuiltInLootTables/FARMER_GIFT +FD: net/minecraft/world/level/storage/loot/BuiltInLootTables/f_78730_ net/minecraft/world/level/storage/loot/BuiltInLootTables/FISHERMAN_GIFT +FD: net/minecraft/world/level/storage/loot/BuiltInLootTables/f_78731_ net/minecraft/world/level/storage/loot/BuiltInLootTables/FLETCHER_GIFT +FD: net/minecraft/world/level/storage/loot/BuiltInLootTables/f_78732_ net/minecraft/world/level/storage/loot/BuiltInLootTables/LEATHERWORKER_GIFT +FD: net/minecraft/world/level/storage/loot/BuiltInLootTables/f_78733_ net/minecraft/world/level/storage/loot/BuiltInLootTables/LIBRARIAN_GIFT +FD: net/minecraft/world/level/storage/loot/BuiltInLootTables/f_78734_ net/minecraft/world/level/storage/loot/BuiltInLootTables/MASON_GIFT +FD: net/minecraft/world/level/storage/loot/BuiltInLootTables/f_78735_ net/minecraft/world/level/storage/loot/BuiltInLootTables/SHEPHERD_GIFT +FD: net/minecraft/world/level/storage/loot/BuiltInLootTables/f_78736_ net/minecraft/world/level/storage/loot/BuiltInLootTables/TOOLSMITH_GIFT +FD: net/minecraft/world/level/storage/loot/BuiltInLootTables/f_78737_ net/minecraft/world/level/storage/loot/BuiltInLootTables/WEAPONSMITH_GIFT +FD: net/minecraft/world/level/storage/loot/BuiltInLootTables/f_78738_ net/minecraft/world/level/storage/loot/BuiltInLootTables/PIGLIN_BARTERING +FD: net/minecraft/world/level/storage/loot/BuiltInLootTables/f_78739_ net/minecraft/world/level/storage/loot/BuiltInLootTables/LOCATIONS +FD: net/minecraft/world/level/storage/loot/BuiltInLootTables/f_78740_ net/minecraft/world/level/storage/loot/BuiltInLootTables/SPAWN_BONUS_CHEST +FD: net/minecraft/world/level/storage/loot/BuiltInLootTables/f_78741_ net/minecraft/world/level/storage/loot/BuiltInLootTables/END_CITY_TREASURE +FD: net/minecraft/world/level/storage/loot/BuiltInLootTables/f_78742_ net/minecraft/world/level/storage/loot/BuiltInLootTables/SIMPLE_DUNGEON +FD: net/minecraft/world/level/storage/loot/BuiltInLootTables/f_78743_ net/minecraft/world/level/storage/loot/BuiltInLootTables/VILLAGE_WEAPONSMITH +FD: net/minecraft/world/level/storage/loot/BuiltInLootTables/f_78744_ net/minecraft/world/level/storage/loot/BuiltInLootTables/VILLAGE_TOOLSMITH +FD: net/minecraft/world/level/storage/loot/BuiltInLootTables/f_78745_ net/minecraft/world/level/storage/loot/BuiltInLootTables/VILLAGE_ARMORER +FD: net/minecraft/world/level/storage/loot/BuiltInLootTables/f_78746_ net/minecraft/world/level/storage/loot/BuiltInLootTables/VILLAGE_CARTOGRAPHER +FD: net/minecraft/world/level/storage/loot/BuiltInLootTables/f_78747_ net/minecraft/world/level/storage/loot/BuiltInLootTables/VILLAGE_MASON +FD: net/minecraft/world/level/storage/loot/BuiltInLootTables/f_78748_ net/minecraft/world/level/storage/loot/BuiltInLootTables/VILLAGE_SHEPHERD +FD: net/minecraft/world/level/storage/loot/BuiltInLootTables/f_78749_ net/minecraft/world/level/storage/loot/BuiltInLootTables/VILLAGE_BUTCHER +FD: net/minecraft/world/level/storage/loot/BuiltInLootTables/f_78750_ net/minecraft/world/level/storage/loot/BuiltInLootTables/VILLAGE_FLETCHER +FD: net/minecraft/world/level/storage/loot/BuiltInLootTables/f_78751_ net/minecraft/world/level/storage/loot/BuiltInLootTables/VILLAGE_FISHER +FD: net/minecraft/world/level/storage/loot/BuiltInLootTables/f_78752_ net/minecraft/world/level/storage/loot/BuiltInLootTables/VILLAGE_TANNERY +FD: net/minecraft/world/level/storage/loot/BuiltInLootTables/f_78753_ net/minecraft/world/level/storage/loot/BuiltInLootTables/VILLAGE_TEMPLE +FD: net/minecraft/world/level/storage/loot/BuiltInLootTables/f_78754_ net/minecraft/world/level/storage/loot/BuiltInLootTables/VILLAGE_DESERT_HOUSE +FD: net/minecraft/world/level/storage/loot/BuiltInLootTables/f_78755_ net/minecraft/world/level/storage/loot/BuiltInLootTables/VILLAGE_PLAINS_HOUSE +FD: net/minecraft/world/level/storage/loot/BuiltInLootTables/f_78756_ net/minecraft/world/level/storage/loot/BuiltInLootTables/VILLAGE_TAIGA_HOUSE +FD: net/minecraft/world/level/storage/loot/BuiltInLootTables/f_78757_ net/minecraft/world/level/storage/loot/BuiltInLootTables/VILLAGE_SNOWY_HOUSE +FD: net/minecraft/world/level/storage/loot/BuiltInLootTables/f_78758_ net/minecraft/world/level/storage/loot/BuiltInLootTables/VILLAGE_SAVANNA_HOUSE +FD: net/minecraft/world/level/storage/loot/BuiltInLootTables/f_78759_ net/minecraft/world/level/storage/loot/BuiltInLootTables/ABANDONED_MINESHAFT +FD: net/minecraft/world/level/storage/loot/BuiltInLootTables/f_78760_ net/minecraft/world/level/storage/loot/BuiltInLootTables/NETHER_BRIDGE +FD: net/minecraft/world/level/storage/loot/BuiltInLootTables/f_78761_ net/minecraft/world/level/storage/loot/BuiltInLootTables/STRONGHOLD_LIBRARY +FD: net/minecraft/world/level/storage/loot/BuiltInLootTables/f_78762_ net/minecraft/world/level/storage/loot/BuiltInLootTables/STRONGHOLD_CROSSING +FD: net/minecraft/world/level/storage/loot/BuiltInLootTables/f_78763_ net/minecraft/world/level/storage/loot/BuiltInLootTables/STRONGHOLD_CORRIDOR +FD: net/minecraft/world/level/storage/loot/BuiltInLootTables/f_78764_ net/minecraft/world/level/storage/loot/BuiltInLootTables/DESERT_PYRAMID +FD: net/minecraft/world/level/storage/loot/GsonAdapterFactory$Builder/f_164983_ net/minecraft/world/level/storage/loot/GsonAdapterFactory$Builder/inlineType +FD: net/minecraft/world/level/storage/loot/GsonAdapterFactory$Builder/f_78806_ net/minecraft/world/level/storage/loot/GsonAdapterFactory$Builder/registry +FD: net/minecraft/world/level/storage/loot/GsonAdapterFactory$Builder/f_78807_ net/minecraft/world/level/storage/loot/GsonAdapterFactory$Builder/elementName +FD: net/minecraft/world/level/storage/loot/GsonAdapterFactory$Builder/f_78808_ net/minecraft/world/level/storage/loot/GsonAdapterFactory$Builder/typeKey +FD: net/minecraft/world/level/storage/loot/GsonAdapterFactory$Builder/f_78809_ net/minecraft/world/level/storage/loot/GsonAdapterFactory$Builder/typeGetter +FD: net/minecraft/world/level/storage/loot/GsonAdapterFactory$Builder/f_78810_ net/minecraft/world/level/storage/loot/GsonAdapterFactory$Builder/defaultType +FD: net/minecraft/world/level/storage/loot/GsonAdapterFactory$JsonAdapter/f_164993_ net/minecraft/world/level/storage/loot/GsonAdapterFactory$JsonAdapter/inlineType +FD: net/minecraft/world/level/storage/loot/GsonAdapterFactory$JsonAdapter/f_78829_ net/minecraft/world/level/storage/loot/GsonAdapterFactory$JsonAdapter/registry +FD: net/minecraft/world/level/storage/loot/GsonAdapterFactory$JsonAdapter/f_78830_ net/minecraft/world/level/storage/loot/GsonAdapterFactory$JsonAdapter/elementName +FD: net/minecraft/world/level/storage/loot/GsonAdapterFactory$JsonAdapter/f_78831_ net/minecraft/world/level/storage/loot/GsonAdapterFactory$JsonAdapter/typeKey +FD: net/minecraft/world/level/storage/loot/GsonAdapterFactory$JsonAdapter/f_78832_ net/minecraft/world/level/storage/loot/GsonAdapterFactory$JsonAdapter/typeGetter +FD: net/minecraft/world/level/storage/loot/GsonAdapterFactory$JsonAdapter/f_78833_ net/minecraft/world/level/storage/loot/GsonAdapterFactory$JsonAdapter/defaultType +FD: net/minecraft/world/level/storage/loot/IntRange/f_165001_ net/minecraft/world/level/storage/loot/IntRange/min +FD: net/minecraft/world/level/storage/loot/IntRange/f_165002_ net/minecraft/world/level/storage/loot/IntRange/max +FD: net/minecraft/world/level/storage/loot/IntRange/f_165003_ net/minecraft/world/level/storage/loot/IntRange/limiter +FD: net/minecraft/world/level/storage/loot/IntRange/f_165004_ net/minecraft/world/level/storage/loot/IntRange/predicate +FD: net/minecraft/world/level/storage/loot/LootContext/f_278421_ net/minecraft/world/level/storage/loot/LootContext/lootDataResolver +FD: net/minecraft/world/level/storage/loot/LootContext/f_278466_ net/minecraft/world/level/storage/loot/LootContext/visitedElements +FD: net/minecraft/world/level/storage/loot/LootContext/f_78907_ net/minecraft/world/level/storage/loot/LootContext/random +FD: net/minecraft/world/level/storage/loot/LootContext/f_78914_ net/minecraft/world/level/storage/loot/LootContext/params +FD: net/minecraft/world/level/storage/loot/LootContext$Builder/f_78956_ net/minecraft/world/level/storage/loot/LootContext$Builder/params +FD: net/minecraft/world/level/storage/loot/LootContext$Builder/f_78958_ net/minecraft/world/level/storage/loot/LootContext$Builder/random +FD: net/minecraft/world/level/storage/loot/LootContext$EntityTarget/$VALUES net/minecraft/world/level/storage/loot/LootContext$EntityTarget/$VALUES +FD: net/minecraft/world/level/storage/loot/LootContext$EntityTarget/DIRECT_KILLER net/minecraft/world/level/storage/loot/LootContext$EntityTarget/DIRECT_KILLER +FD: net/minecraft/world/level/storage/loot/LootContext$EntityTarget/KILLER net/minecraft/world/level/storage/loot/LootContext$EntityTarget/KILLER +FD: net/minecraft/world/level/storage/loot/LootContext$EntityTarget/KILLER_PLAYER net/minecraft/world/level/storage/loot/LootContext$EntityTarget/KILLER_PLAYER +FD: net/minecraft/world/level/storage/loot/LootContext$EntityTarget/THIS net/minecraft/world/level/storage/loot/LootContext$EntityTarget/THIS +FD: net/minecraft/world/level/storage/loot/LootContext$EntityTarget/f_78994_ net/minecraft/world/level/storage/loot/LootContext$EntityTarget/name +FD: net/minecraft/world/level/storage/loot/LootContext$EntityTarget/f_78995_ net/minecraft/world/level/storage/loot/LootContext$EntityTarget/param +FD: net/minecraft/world/level/storage/loot/LootContext$VisitedEntry/f_278374_ net/minecraft/world/level/storage/loot/LootContext$VisitedEntry/value +FD: net/minecraft/world/level/storage/loot/LootContext$VisitedEntry/f_278478_ net/minecraft/world/level/storage/loot/LootContext$VisitedEntry/type +FD: net/minecraft/world/level/storage/loot/LootDataId/f_278383_ net/minecraft/world/level/storage/loot/LootDataId/type +FD: net/minecraft/world/level/storage/loot/LootDataId/f_278500_ net/minecraft/world/level/storage/loot/LootDataId/location +FD: net/minecraft/world/level/storage/loot/LootDataManager/f_278404_ net/minecraft/world/level/storage/loot/LootDataManager/typeKeys +FD: net/minecraft/world/level/storage/loot/LootDataManager/f_278415_ net/minecraft/world/level/storage/loot/LootDataManager/elements +FD: net/minecraft/world/level/storage/loot/LootDataManager/f_278474_ net/minecraft/world/level/storage/loot/LootDataManager/EMPTY_LOOT_TABLE_KEY +FD: net/minecraft/world/level/storage/loot/LootDataManager/f_278476_ net/minecraft/world/level/storage/loot/LootDataManager/LOGGER +FD: net/minecraft/world/level/storage/loot/LootDataManager$1/f_278380_ net/minecraft/world/level/storage/loot/LootDataManager$1/val$bakedElements +FD: net/minecraft/world/level/storage/loot/LootDataManager$1/f_278498_ net/minecraft/world/level/storage/loot/LootDataManager$1/this$0 +FD: net/minecraft/world/level/storage/loot/LootDataManager$CompositePredicate/f_278433_ net/minecraft/world/level/storage/loot/LootDataManager$CompositePredicate/composedPredicate +FD: net/minecraft/world/level/storage/loot/LootDataManager$CompositePredicate/f_278503_ net/minecraft/world/level/storage/loot/LootDataManager$CompositePredicate/terms +FD: net/minecraft/world/level/storage/loot/LootDataManager$FunctionSequence/f_278409_ net/minecraft/world/level/storage/loot/LootDataManager$FunctionSequence/compositeFunction +FD: net/minecraft/world/level/storage/loot/LootDataManager$FunctionSequence/f_278417_ net/minecraft/world/level/storage/loot/LootDataManager$FunctionSequence/functions +FD: net/minecraft/world/level/storage/loot/LootDataType/f_278407_ net/minecraft/world/level/storage/loot/LootDataType/PREDICATE +FD: net/minecraft/world/level/storage/loot/LootDataType/f_278413_ net/minecraft/world/level/storage/loot/LootDataType/TABLE +FD: net/minecraft/world/level/storage/loot/LootDataType/f_278425_ net/minecraft/world/level/storage/loot/LootDataType/LOGGER +FD: net/minecraft/world/level/storage/loot/LootDataType/f_278443_ net/minecraft/world/level/storage/loot/LootDataType/validator +FD: net/minecraft/world/level/storage/loot/LootDataType/f_278462_ net/minecraft/world/level/storage/loot/LootDataType/directory +FD: net/minecraft/world/level/storage/loot/LootDataType/f_278485_ net/minecraft/world/level/storage/loot/LootDataType/topDeserializer +FD: net/minecraft/world/level/storage/loot/LootDataType/f_278496_ net/minecraft/world/level/storage/loot/LootDataType/MODIFIER +FD: net/minecraft/world/level/storage/loot/LootDataType/f_278508_ net/minecraft/world/level/storage/loot/LootDataType/parser +FD: net/minecraft/world/level/storage/loot/LootParams/f_286955_ net/minecraft/world/level/storage/loot/LootParams/dynamicDrops +FD: net/minecraft/world/level/storage/loot/LootParams/f_286957_ net/minecraft/world/level/storage/loot/LootParams/luck +FD: net/minecraft/world/level/storage/loot/LootParams/f_286977_ net/minecraft/world/level/storage/loot/LootParams/params +FD: net/minecraft/world/level/storage/loot/LootParams/f_286983_ net/minecraft/world/level/storage/loot/LootParams/level +FD: net/minecraft/world/level/storage/loot/LootParams$Builder/f_286934_ net/minecraft/world/level/storage/loot/LootParams$Builder/level +FD: net/minecraft/world/level/storage/loot/LootParams$Builder/f_286945_ net/minecraft/world/level/storage/loot/LootParams$Builder/params +FD: net/minecraft/world/level/storage/loot/LootParams$Builder/f_286986_ net/minecraft/world/level/storage/loot/LootParams$Builder/dynamicDrops +FD: net/minecraft/world/level/storage/loot/LootParams$Builder/f_287000_ net/minecraft/world/level/storage/loot/LootParams$Builder/luck +FD: net/minecraft/world/level/storage/loot/LootPool/f_79023_ net/minecraft/world/level/storage/loot/LootPool/entries +FD: net/minecraft/world/level/storage/loot/LootPool/f_79024_ net/minecraft/world/level/storage/loot/LootPool/conditions +FD: net/minecraft/world/level/storage/loot/LootPool/f_79025_ net/minecraft/world/level/storage/loot/LootPool/compositeCondition +FD: net/minecraft/world/level/storage/loot/LootPool/f_79026_ net/minecraft/world/level/storage/loot/LootPool/functions +FD: net/minecraft/world/level/storage/loot/LootPool/f_79027_ net/minecraft/world/level/storage/loot/LootPool/compositeFunction +FD: net/minecraft/world/level/storage/loot/LootPool/f_79028_ net/minecraft/world/level/storage/loot/LootPool/rolls +FD: net/minecraft/world/level/storage/loot/LootPool/f_79029_ net/minecraft/world/level/storage/loot/LootPool/bonusRolls +FD: net/minecraft/world/level/storage/loot/LootPool$Builder/f_79067_ net/minecraft/world/level/storage/loot/LootPool$Builder/entries +FD: net/minecraft/world/level/storage/loot/LootPool$Builder/f_79068_ net/minecraft/world/level/storage/loot/LootPool$Builder/conditions +FD: net/minecraft/world/level/storage/loot/LootPool$Builder/f_79069_ net/minecraft/world/level/storage/loot/LootPool$Builder/functions +FD: net/minecraft/world/level/storage/loot/LootPool$Builder/f_79070_ net/minecraft/world/level/storage/loot/LootPool$Builder/rolls +FD: net/minecraft/world/level/storage/loot/LootPool$Builder/f_79071_ net/minecraft/world/level/storage/loot/LootPool$Builder/bonusRolls +FD: net/minecraft/world/level/storage/loot/LootTable/f_286958_ net/minecraft/world/level/storage/loot/LootTable/randomSequence +FD: net/minecraft/world/level/storage/loot/LootTable/f_79105_ net/minecraft/world/level/storage/loot/LootTable/EMPTY +FD: net/minecraft/world/level/storage/loot/LootTable/f_79106_ net/minecraft/world/level/storage/loot/LootTable/DEFAULT_PARAM_SET +FD: net/minecraft/world/level/storage/loot/LootTable/f_79107_ net/minecraft/world/level/storage/loot/LootTable/LOGGER +FD: net/minecraft/world/level/storage/loot/LootTable/f_79108_ net/minecraft/world/level/storage/loot/LootTable/paramSet +FD: net/minecraft/world/level/storage/loot/LootTable/f_79109_ net/minecraft/world/level/storage/loot/LootTable/pools +FD: net/minecraft/world/level/storage/loot/LootTable/f_79110_ net/minecraft/world/level/storage/loot/LootTable/functions +FD: net/minecraft/world/level/storage/loot/LootTable/f_79111_ net/minecraft/world/level/storage/loot/LootTable/compositeFunction +FD: net/minecraft/world/level/storage/loot/LootTable$Builder/f_287003_ net/minecraft/world/level/storage/loot/LootTable$Builder/randomSequence +FD: net/minecraft/world/level/storage/loot/LootTable$Builder/f_79156_ net/minecraft/world/level/storage/loot/LootTable$Builder/pools +FD: net/minecraft/world/level/storage/loot/LootTable$Builder/f_79157_ net/minecraft/world/level/storage/loot/LootTable$Builder/functions +FD: net/minecraft/world/level/storage/loot/LootTable$Builder/f_79158_ net/minecraft/world/level/storage/loot/LootTable$Builder/paramSet +FD: net/minecraft/world/level/storage/loot/SerializerType/f_79328_ net/minecraft/world/level/storage/loot/SerializerType/serializer +FD: net/minecraft/world/level/storage/loot/ValidationContext/f_278480_ net/minecraft/world/level/storage/loot/ValidationContext/resolver +FD: net/minecraft/world/level/storage/loot/ValidationContext/f_278483_ net/minecraft/world/level/storage/loot/ValidationContext/visitedElements +FD: net/minecraft/world/level/storage/loot/ValidationContext/f_79332_ net/minecraft/world/level/storage/loot/ValidationContext/problems +FD: net/minecraft/world/level/storage/loot/ValidationContext/f_79333_ net/minecraft/world/level/storage/loot/ValidationContext/context +FD: net/minecraft/world/level/storage/loot/ValidationContext/f_79334_ net/minecraft/world/level/storage/loot/ValidationContext/params +FD: net/minecraft/world/level/storage/loot/ValidationContext/f_79339_ net/minecraft/world/level/storage/loot/ValidationContext/contextCache +FD: net/minecraft/world/level/storage/loot/entries/AlternativesEntry$Builder/f_79397_ net/minecraft/world/level/storage/loot/entries/AlternativesEntry$Builder/entries +FD: net/minecraft/world/level/storage/loot/entries/ComposableEntryContainer/f_79405_ net/minecraft/world/level/storage/loot/entries/ComposableEntryContainer/ALWAYS_FALSE +FD: net/minecraft/world/level/storage/loot/entries/ComposableEntryContainer/f_79406_ net/minecraft/world/level/storage/loot/entries/ComposableEntryContainer/ALWAYS_TRUE +FD: net/minecraft/world/level/storage/loot/entries/CompositeEntryBase/f_79428_ net/minecraft/world/level/storage/loot/entries/CompositeEntryBase/children +FD: net/minecraft/world/level/storage/loot/entries/CompositeEntryBase/f_79429_ net/minecraft/world/level/storage/loot/entries/CompositeEntryBase/composedChildren +FD: net/minecraft/world/level/storage/loot/entries/CompositeEntryBase$1/f_79441_ net/minecraft/world/level/storage/loot/entries/CompositeEntryBase$1/val$constructor +FD: net/minecraft/world/level/storage/loot/entries/DynamicLoot/f_79463_ net/minecraft/world/level/storage/loot/entries/DynamicLoot/name +FD: net/minecraft/world/level/storage/loot/entries/EntryGroup$Builder/f_165139_ net/minecraft/world/level/storage/loot/entries/EntryGroup$Builder/entries +FD: net/minecraft/world/level/storage/loot/entries/LootItem/f_79564_ net/minecraft/world/level/storage/loot/entries/LootItem/item +FD: net/minecraft/world/level/storage/loot/entries/LootPoolEntries/f_79619_ net/minecraft/world/level/storage/loot/entries/LootPoolEntries/EMPTY +FD: net/minecraft/world/level/storage/loot/entries/LootPoolEntries/f_79620_ net/minecraft/world/level/storage/loot/entries/LootPoolEntries/ITEM +FD: net/minecraft/world/level/storage/loot/entries/LootPoolEntries/f_79621_ net/minecraft/world/level/storage/loot/entries/LootPoolEntries/REFERENCE +FD: net/minecraft/world/level/storage/loot/entries/LootPoolEntries/f_79622_ net/minecraft/world/level/storage/loot/entries/LootPoolEntries/DYNAMIC +FD: net/minecraft/world/level/storage/loot/entries/LootPoolEntries/f_79623_ net/minecraft/world/level/storage/loot/entries/LootPoolEntries/TAG +FD: net/minecraft/world/level/storage/loot/entries/LootPoolEntries/f_79624_ net/minecraft/world/level/storage/loot/entries/LootPoolEntries/ALTERNATIVES +FD: net/minecraft/world/level/storage/loot/entries/LootPoolEntries/f_79625_ net/minecraft/world/level/storage/loot/entries/LootPoolEntries/SEQUENCE +FD: net/minecraft/world/level/storage/loot/entries/LootPoolEntries/f_79626_ net/minecraft/world/level/storage/loot/entries/LootPoolEntries/GROUP +FD: net/minecraft/world/level/storage/loot/entries/LootPoolEntryContainer/f_79635_ net/minecraft/world/level/storage/loot/entries/LootPoolEntryContainer/compositeCondition +FD: net/minecraft/world/level/storage/loot/entries/LootPoolEntryContainer/f_79636_ net/minecraft/world/level/storage/loot/entries/LootPoolEntryContainer/conditions +FD: net/minecraft/world/level/storage/loot/entries/LootPoolEntryContainer$Builder/f_79642_ net/minecraft/world/level/storage/loot/entries/LootPoolEntryContainer$Builder/conditions +FD: net/minecraft/world/level/storage/loot/entries/LootPoolSingletonContainer/f_165150_ net/minecraft/world/level/storage/loot/entries/LootPoolSingletonContainer/DEFAULT_WEIGHT +FD: net/minecraft/world/level/storage/loot/entries/LootPoolSingletonContainer/f_165151_ net/minecraft/world/level/storage/loot/entries/LootPoolSingletonContainer/DEFAULT_QUALITY +FD: net/minecraft/world/level/storage/loot/entries/LootPoolSingletonContainer/f_79675_ net/minecraft/world/level/storage/loot/entries/LootPoolSingletonContainer/weight +FD: net/minecraft/world/level/storage/loot/entries/LootPoolSingletonContainer/f_79676_ net/minecraft/world/level/storage/loot/entries/LootPoolSingletonContainer/quality +FD: net/minecraft/world/level/storage/loot/entries/LootPoolSingletonContainer/f_79677_ net/minecraft/world/level/storage/loot/entries/LootPoolSingletonContainer/functions +FD: net/minecraft/world/level/storage/loot/entries/LootPoolSingletonContainer/f_79678_ net/minecraft/world/level/storage/loot/entries/LootPoolSingletonContainer/compositeFunction +FD: net/minecraft/world/level/storage/loot/entries/LootPoolSingletonContainer/f_79679_ net/minecraft/world/level/storage/loot/entries/LootPoolSingletonContainer/entry +FD: net/minecraft/world/level/storage/loot/entries/LootPoolSingletonContainer$1/f_79696_ net/minecraft/world/level/storage/loot/entries/LootPoolSingletonContainer$1/this$0 +FD: net/minecraft/world/level/storage/loot/entries/LootPoolSingletonContainer$Builder/f_79702_ net/minecraft/world/level/storage/loot/entries/LootPoolSingletonContainer$Builder/weight +FD: net/minecraft/world/level/storage/loot/entries/LootPoolSingletonContainer$Builder/f_79703_ net/minecraft/world/level/storage/loot/entries/LootPoolSingletonContainer$Builder/quality +FD: net/minecraft/world/level/storage/loot/entries/LootPoolSingletonContainer$Builder/f_79704_ net/minecraft/world/level/storage/loot/entries/LootPoolSingletonContainer$Builder/functions +FD: net/minecraft/world/level/storage/loot/entries/LootPoolSingletonContainer$DummyBuilder/f_79715_ net/minecraft/world/level/storage/loot/entries/LootPoolSingletonContainer$DummyBuilder/constructor +FD: net/minecraft/world/level/storage/loot/entries/LootPoolSingletonContainer$EntryBase/f_79721_ net/minecraft/world/level/storage/loot/entries/LootPoolSingletonContainer$EntryBase/this$0 +FD: net/minecraft/world/level/storage/loot/entries/LootTableReference/f_79754_ net/minecraft/world/level/storage/loot/entries/LootTableReference/name +FD: net/minecraft/world/level/storage/loot/entries/SequentialEntry$Builder/f_165154_ net/minecraft/world/level/storage/loot/entries/SequentialEntry$Builder/entries +FD: net/minecraft/world/level/storage/loot/entries/TagEntry/f_79821_ net/minecraft/world/level/storage/loot/entries/TagEntry/tag +FD: net/minecraft/world/level/storage/loot/entries/TagEntry/f_79822_ net/minecraft/world/level/storage/loot/entries/TagEntry/expand +FD: net/minecraft/world/level/storage/loot/entries/TagEntry$1/f_79863_ net/minecraft/world/level/storage/loot/entries/TagEntry$1/val$item +FD: net/minecraft/world/level/storage/loot/entries/TagEntry$1/f_79864_ net/minecraft/world/level/storage/loot/entries/TagEntry$1/this$0 +FD: net/minecraft/world/level/storage/loot/functions/ApplyBonusCount/f_79898_ net/minecraft/world/level/storage/loot/functions/ApplyBonusCount/FORMULAS +FD: net/minecraft/world/level/storage/loot/functions/ApplyBonusCount/f_79899_ net/minecraft/world/level/storage/loot/functions/ApplyBonusCount/enchantment +FD: net/minecraft/world/level/storage/loot/functions/ApplyBonusCount/f_79900_ net/minecraft/world/level/storage/loot/functions/ApplyBonusCount/formula +FD: net/minecraft/world/level/storage/loot/functions/ApplyBonusCount$BinomialWithBonusCount/f_79947_ net/minecraft/world/level/storage/loot/functions/ApplyBonusCount$BinomialWithBonusCount/TYPE +FD: net/minecraft/world/level/storage/loot/functions/ApplyBonusCount$BinomialWithBonusCount/f_79948_ net/minecraft/world/level/storage/loot/functions/ApplyBonusCount$BinomialWithBonusCount/extraRounds +FD: net/minecraft/world/level/storage/loot/functions/ApplyBonusCount$BinomialWithBonusCount/f_79949_ net/minecraft/world/level/storage/loot/functions/ApplyBonusCount$BinomialWithBonusCount/probability +FD: net/minecraft/world/level/storage/loot/functions/ApplyBonusCount$OreDrops/f_79973_ net/minecraft/world/level/storage/loot/functions/ApplyBonusCount$OreDrops/TYPE +FD: net/minecraft/world/level/storage/loot/functions/ApplyBonusCount$UniformBonusCount/f_80012_ net/minecraft/world/level/storage/loot/functions/ApplyBonusCount$UniformBonusCount/TYPE +FD: net/minecraft/world/level/storage/loot/functions/ApplyBonusCount$UniformBonusCount/f_80013_ net/minecraft/world/level/storage/loot/functions/ApplyBonusCount$UniformBonusCount/bonusMultiplier +FD: net/minecraft/world/level/storage/loot/functions/CopyBlockState/f_80047_ net/minecraft/world/level/storage/loot/functions/CopyBlockState/block +FD: net/minecraft/world/level/storage/loot/functions/CopyBlockState/f_80048_ net/minecraft/world/level/storage/loot/functions/CopyBlockState/properties +FD: net/minecraft/world/level/storage/loot/functions/CopyBlockState$Builder/f_80076_ net/minecraft/world/level/storage/loot/functions/CopyBlockState$Builder/block +FD: net/minecraft/world/level/storage/loot/functions/CopyBlockState$Builder/f_80077_ net/minecraft/world/level/storage/loot/functions/CopyBlockState$Builder/properties +FD: net/minecraft/world/level/storage/loot/functions/CopyNameFunction/f_80175_ net/minecraft/world/level/storage/loot/functions/CopyNameFunction/source +FD: net/minecraft/world/level/storage/loot/functions/CopyNameFunction$NameSource/$VALUES net/minecraft/world/level/storage/loot/functions/CopyNameFunction$NameSource/$VALUES +FD: net/minecraft/world/level/storage/loot/functions/CopyNameFunction$NameSource/BLOCK_ENTITY net/minecraft/world/level/storage/loot/functions/CopyNameFunction$NameSource/BLOCK_ENTITY +FD: net/minecraft/world/level/storage/loot/functions/CopyNameFunction$NameSource/KILLER net/minecraft/world/level/storage/loot/functions/CopyNameFunction$NameSource/KILLER +FD: net/minecraft/world/level/storage/loot/functions/CopyNameFunction$NameSource/KILLER_PLAYER net/minecraft/world/level/storage/loot/functions/CopyNameFunction$NameSource/KILLER_PLAYER +FD: net/minecraft/world/level/storage/loot/functions/CopyNameFunction$NameSource/THIS net/minecraft/world/level/storage/loot/functions/CopyNameFunction$NameSource/THIS +FD: net/minecraft/world/level/storage/loot/functions/CopyNameFunction$NameSource/f_80199_ net/minecraft/world/level/storage/loot/functions/CopyNameFunction$NameSource/name +FD: net/minecraft/world/level/storage/loot/functions/CopyNameFunction$NameSource/f_80200_ net/minecraft/world/level/storage/loot/functions/CopyNameFunction$NameSource/param +FD: net/minecraft/world/level/storage/loot/functions/CopyNbtFunction/f_80234_ net/minecraft/world/level/storage/loot/functions/CopyNbtFunction/source +FD: net/minecraft/world/level/storage/loot/functions/CopyNbtFunction/f_80235_ net/minecraft/world/level/storage/loot/functions/CopyNbtFunction/operations +FD: net/minecraft/world/level/storage/loot/functions/CopyNbtFunction$Builder/f_80271_ net/minecraft/world/level/storage/loot/functions/CopyNbtFunction$Builder/source +FD: net/minecraft/world/level/storage/loot/functions/CopyNbtFunction$Builder/f_80272_ net/minecraft/world/level/storage/loot/functions/CopyNbtFunction$Builder/ops +FD: net/minecraft/world/level/storage/loot/functions/CopyNbtFunction$CopyOperation/f_80288_ net/minecraft/world/level/storage/loot/functions/CopyNbtFunction$CopyOperation/sourcePathText +FD: net/minecraft/world/level/storage/loot/functions/CopyNbtFunction$CopyOperation/f_80289_ net/minecraft/world/level/storage/loot/functions/CopyNbtFunction$CopyOperation/sourcePath +FD: net/minecraft/world/level/storage/loot/functions/CopyNbtFunction$CopyOperation/f_80290_ net/minecraft/world/level/storage/loot/functions/CopyNbtFunction$CopyOperation/targetPathText +FD: net/minecraft/world/level/storage/loot/functions/CopyNbtFunction$CopyOperation/f_80291_ net/minecraft/world/level/storage/loot/functions/CopyNbtFunction$CopyOperation/targetPath +FD: net/minecraft/world/level/storage/loot/functions/CopyNbtFunction$CopyOperation/f_80292_ net/minecraft/world/level/storage/loot/functions/CopyNbtFunction$CopyOperation/op +FD: net/minecraft/world/level/storage/loot/functions/CopyNbtFunction$MergeStrategy/$VALUES net/minecraft/world/level/storage/loot/functions/CopyNbtFunction$MergeStrategy/$VALUES +FD: net/minecraft/world/level/storage/loot/functions/CopyNbtFunction$MergeStrategy/APPEND net/minecraft/world/level/storage/loot/functions/CopyNbtFunction$MergeStrategy/APPEND +FD: net/minecraft/world/level/storage/loot/functions/CopyNbtFunction$MergeStrategy/MERGE net/minecraft/world/level/storage/loot/functions/CopyNbtFunction$MergeStrategy/MERGE +FD: net/minecraft/world/level/storage/loot/functions/CopyNbtFunction$MergeStrategy/REPLACE net/minecraft/world/level/storage/loot/functions/CopyNbtFunction$MergeStrategy/REPLACE +FD: net/minecraft/world/level/storage/loot/functions/CopyNbtFunction$MergeStrategy/f_80335_ net/minecraft/world/level/storage/loot/functions/CopyNbtFunction$MergeStrategy/name +FD: net/minecraft/world/level/storage/loot/functions/EnchantRandomlyFunction/f_80414_ net/minecraft/world/level/storage/loot/functions/EnchantRandomlyFunction/LOGGER +FD: net/minecraft/world/level/storage/loot/functions/EnchantRandomlyFunction/f_80415_ net/minecraft/world/level/storage/loot/functions/EnchantRandomlyFunction/enchantments +FD: net/minecraft/world/level/storage/loot/functions/EnchantRandomlyFunction$Builder/f_80441_ net/minecraft/world/level/storage/loot/functions/EnchantRandomlyFunction$Builder/enchantments +FD: net/minecraft/world/level/storage/loot/functions/EnchantWithLevelsFunction/f_80471_ net/minecraft/world/level/storage/loot/functions/EnchantWithLevelsFunction/levels +FD: net/minecraft/world/level/storage/loot/functions/EnchantWithLevelsFunction/f_80472_ net/minecraft/world/level/storage/loot/functions/EnchantWithLevelsFunction/treasure +FD: net/minecraft/world/level/storage/loot/functions/EnchantWithLevelsFunction$Builder/f_80492_ net/minecraft/world/level/storage/loot/functions/EnchantWithLevelsFunction$Builder/levels +FD: net/minecraft/world/level/storage/loot/functions/EnchantWithLevelsFunction$Builder/f_80493_ net/minecraft/world/level/storage/loot/functions/EnchantWithLevelsFunction$Builder/treasure +FD: net/minecraft/world/level/storage/loot/functions/ExplorationMapFunction/f_165201_ net/minecraft/world/level/storage/loot/functions/ExplorationMapFunction/DEFAULT_DECORATION_NAME +FD: net/minecraft/world/level/storage/loot/functions/ExplorationMapFunction/f_165202_ net/minecraft/world/level/storage/loot/functions/ExplorationMapFunction/DEFAULT_ZOOM +FD: net/minecraft/world/level/storage/loot/functions/ExplorationMapFunction/f_165203_ net/minecraft/world/level/storage/loot/functions/ExplorationMapFunction/DEFAULT_SEARCH_RADIUS +FD: net/minecraft/world/level/storage/loot/functions/ExplorationMapFunction/f_165204_ net/minecraft/world/level/storage/loot/functions/ExplorationMapFunction/DEFAULT_SKIP_EXISTING +FD: net/minecraft/world/level/storage/loot/functions/ExplorationMapFunction/f_230983_ net/minecraft/world/level/storage/loot/functions/ExplorationMapFunction/DEFAULT_DESTINATION +FD: net/minecraft/world/level/storage/loot/functions/ExplorationMapFunction/f_80522_ net/minecraft/world/level/storage/loot/functions/ExplorationMapFunction/DEFAULT_DECORATION +FD: net/minecraft/world/level/storage/loot/functions/ExplorationMapFunction/f_80523_ net/minecraft/world/level/storage/loot/functions/ExplorationMapFunction/LOGGER +FD: net/minecraft/world/level/storage/loot/functions/ExplorationMapFunction/f_80524_ net/minecraft/world/level/storage/loot/functions/ExplorationMapFunction/destination +FD: net/minecraft/world/level/storage/loot/functions/ExplorationMapFunction/f_80525_ net/minecraft/world/level/storage/loot/functions/ExplorationMapFunction/mapDecoration +FD: net/minecraft/world/level/storage/loot/functions/ExplorationMapFunction/f_80526_ net/minecraft/world/level/storage/loot/functions/ExplorationMapFunction/zoom +FD: net/minecraft/world/level/storage/loot/functions/ExplorationMapFunction/f_80527_ net/minecraft/world/level/storage/loot/functions/ExplorationMapFunction/searchRadius +FD: net/minecraft/world/level/storage/loot/functions/ExplorationMapFunction/f_80528_ net/minecraft/world/level/storage/loot/functions/ExplorationMapFunction/skipKnownStructures +FD: net/minecraft/world/level/storage/loot/functions/ExplorationMapFunction$Builder/f_80562_ net/minecraft/world/level/storage/loot/functions/ExplorationMapFunction$Builder/destination +FD: net/minecraft/world/level/storage/loot/functions/ExplorationMapFunction$Builder/f_80563_ net/minecraft/world/level/storage/loot/functions/ExplorationMapFunction$Builder/mapDecoration +FD: net/minecraft/world/level/storage/loot/functions/ExplorationMapFunction$Builder/f_80564_ net/minecraft/world/level/storage/loot/functions/ExplorationMapFunction$Builder/zoom +FD: net/minecraft/world/level/storage/loot/functions/ExplorationMapFunction$Builder/f_80565_ net/minecraft/world/level/storage/loot/functions/ExplorationMapFunction$Builder/searchRadius +FD: net/minecraft/world/level/storage/loot/functions/ExplorationMapFunction$Builder/f_80566_ net/minecraft/world/level/storage/loot/functions/ExplorationMapFunction$Builder/skipKnownStructures +FD: net/minecraft/world/level/storage/loot/functions/FillPlayerHead/f_80602_ net/minecraft/world/level/storage/loot/functions/FillPlayerHead/entityTarget +FD: net/minecraft/world/level/storage/loot/functions/FunctionReference/f_278448_ net/minecraft/world/level/storage/loot/functions/FunctionReference/LOGGER +FD: net/minecraft/world/level/storage/loot/functions/FunctionReference/f_278490_ net/minecraft/world/level/storage/loot/functions/FunctionReference/name +FD: net/minecraft/world/level/storage/loot/functions/LimitCount/f_80635_ net/minecraft/world/level/storage/loot/functions/LimitCount/limiter +FD: net/minecraft/world/level/storage/loot/functions/LootItemConditionalFunction/f_80675_ net/minecraft/world/level/storage/loot/functions/LootItemConditionalFunction/compositePredicates +FD: net/minecraft/world/level/storage/loot/functions/LootItemConditionalFunction/f_80676_ net/minecraft/world/level/storage/loot/functions/LootItemConditionalFunction/predicates +FD: net/minecraft/world/level/storage/loot/functions/LootItemConditionalFunction$Builder/f_80691_ net/minecraft/world/level/storage/loot/functions/LootItemConditionalFunction$Builder/conditions +FD: net/minecraft/world/level/storage/loot/functions/LootItemConditionalFunction$DummyBuilder/f_80700_ net/minecraft/world/level/storage/loot/functions/LootItemConditionalFunction$DummyBuilder/constructor +FD: net/minecraft/world/level/storage/loot/functions/LootItemFunctions/f_165221_ net/minecraft/world/level/storage/loot/functions/LootItemFunctions/SET_ENCHANTMENTS +FD: net/minecraft/world/level/storage/loot/functions/LootItemFunctions/f_165222_ net/minecraft/world/level/storage/loot/functions/LootItemFunctions/SET_BANNER_PATTERN +FD: net/minecraft/world/level/storage/loot/functions/LootItemFunctions/f_193030_ net/minecraft/world/level/storage/loot/functions/LootItemFunctions/SET_POTION +FD: net/minecraft/world/level/storage/loot/functions/LootItemFunctions/f_230994_ net/minecraft/world/level/storage/loot/functions/LootItemFunctions/SET_INSTRUMENT +FD: net/minecraft/world/level/storage/loot/functions/LootItemFunctions/f_278442_ net/minecraft/world/level/storage/loot/functions/LootItemFunctions/REFERENCE +FD: net/minecraft/world/level/storage/loot/functions/LootItemFunctions/f_80735_ net/minecraft/world/level/storage/loot/functions/LootItemFunctions/IDENTITY +FD: net/minecraft/world/level/storage/loot/functions/LootItemFunctions/f_80736_ net/minecraft/world/level/storage/loot/functions/LootItemFunctions/SET_COUNT +FD: net/minecraft/world/level/storage/loot/functions/LootItemFunctions/f_80737_ net/minecraft/world/level/storage/loot/functions/LootItemFunctions/ENCHANT_WITH_LEVELS +FD: net/minecraft/world/level/storage/loot/functions/LootItemFunctions/f_80738_ net/minecraft/world/level/storage/loot/functions/LootItemFunctions/ENCHANT_RANDOMLY +FD: net/minecraft/world/level/storage/loot/functions/LootItemFunctions/f_80739_ net/minecraft/world/level/storage/loot/functions/LootItemFunctions/SET_NBT +FD: net/minecraft/world/level/storage/loot/functions/LootItemFunctions/f_80740_ net/minecraft/world/level/storage/loot/functions/LootItemFunctions/FURNACE_SMELT +FD: net/minecraft/world/level/storage/loot/functions/LootItemFunctions/f_80741_ net/minecraft/world/level/storage/loot/functions/LootItemFunctions/LOOTING_ENCHANT +FD: net/minecraft/world/level/storage/loot/functions/LootItemFunctions/f_80742_ net/minecraft/world/level/storage/loot/functions/LootItemFunctions/SET_DAMAGE +FD: net/minecraft/world/level/storage/loot/functions/LootItemFunctions/f_80743_ net/minecraft/world/level/storage/loot/functions/LootItemFunctions/SET_ATTRIBUTES +FD: net/minecraft/world/level/storage/loot/functions/LootItemFunctions/f_80744_ net/minecraft/world/level/storage/loot/functions/LootItemFunctions/SET_NAME +FD: net/minecraft/world/level/storage/loot/functions/LootItemFunctions/f_80745_ net/minecraft/world/level/storage/loot/functions/LootItemFunctions/EXPLORATION_MAP +FD: net/minecraft/world/level/storage/loot/functions/LootItemFunctions/f_80746_ net/minecraft/world/level/storage/loot/functions/LootItemFunctions/SET_STEW_EFFECT +FD: net/minecraft/world/level/storage/loot/functions/LootItemFunctions/f_80747_ net/minecraft/world/level/storage/loot/functions/LootItemFunctions/COPY_NAME +FD: net/minecraft/world/level/storage/loot/functions/LootItemFunctions/f_80748_ net/minecraft/world/level/storage/loot/functions/LootItemFunctions/SET_CONTENTS +FD: net/minecraft/world/level/storage/loot/functions/LootItemFunctions/f_80749_ net/minecraft/world/level/storage/loot/functions/LootItemFunctions/LIMIT_COUNT +FD: net/minecraft/world/level/storage/loot/functions/LootItemFunctions/f_80750_ net/minecraft/world/level/storage/loot/functions/LootItemFunctions/APPLY_BONUS +FD: net/minecraft/world/level/storage/loot/functions/LootItemFunctions/f_80751_ net/minecraft/world/level/storage/loot/functions/LootItemFunctions/SET_LOOT_TABLE +FD: net/minecraft/world/level/storage/loot/functions/LootItemFunctions/f_80752_ net/minecraft/world/level/storage/loot/functions/LootItemFunctions/EXPLOSION_DECAY +FD: net/minecraft/world/level/storage/loot/functions/LootItemFunctions/f_80753_ net/minecraft/world/level/storage/loot/functions/LootItemFunctions/SET_LORE +FD: net/minecraft/world/level/storage/loot/functions/LootItemFunctions/f_80754_ net/minecraft/world/level/storage/loot/functions/LootItemFunctions/FILL_PLAYER_HEAD +FD: net/minecraft/world/level/storage/loot/functions/LootItemFunctions/f_80755_ net/minecraft/world/level/storage/loot/functions/LootItemFunctions/COPY_NBT +FD: net/minecraft/world/level/storage/loot/functions/LootItemFunctions/f_80756_ net/minecraft/world/level/storage/loot/functions/LootItemFunctions/COPY_STATE +FD: net/minecraft/world/level/storage/loot/functions/LootingEnchantFunction/f_165224_ net/minecraft/world/level/storage/loot/functions/LootingEnchantFunction/NO_LIMIT +FD: net/minecraft/world/level/storage/loot/functions/LootingEnchantFunction/f_80776_ net/minecraft/world/level/storage/loot/functions/LootingEnchantFunction/value +FD: net/minecraft/world/level/storage/loot/functions/LootingEnchantFunction/f_80777_ net/minecraft/world/level/storage/loot/functions/LootingEnchantFunction/limit +FD: net/minecraft/world/level/storage/loot/functions/LootingEnchantFunction$Builder/f_80801_ net/minecraft/world/level/storage/loot/functions/LootingEnchantFunction$Builder/count +FD: net/minecraft/world/level/storage/loot/functions/LootingEnchantFunction$Builder/f_80802_ net/minecraft/world/level/storage/loot/functions/LootingEnchantFunction$Builder/limit +FD: net/minecraft/world/level/storage/loot/functions/SetAttributesFunction/f_80831_ net/minecraft/world/level/storage/loot/functions/SetAttributesFunction/modifiers +FD: net/minecraft/world/level/storage/loot/functions/SetAttributesFunction$1/f_80845_ net/minecraft/world/level/storage/loot/functions/SetAttributesFunction$1/$SwitchMap$net$minecraft$world$entity$ai$attributes$AttributeModifier$Operation +FD: net/minecraft/world/level/storage/loot/functions/SetAttributesFunction$Builder/f_165242_ net/minecraft/world/level/storage/loot/functions/SetAttributesFunction$Builder/modifiers +FD: net/minecraft/world/level/storage/loot/functions/SetAttributesFunction$Modifier/f_80847_ net/minecraft/world/level/storage/loot/functions/SetAttributesFunction$Modifier/name +FD: net/minecraft/world/level/storage/loot/functions/SetAttributesFunction$Modifier/f_80848_ net/minecraft/world/level/storage/loot/functions/SetAttributesFunction$Modifier/attribute +FD: net/minecraft/world/level/storage/loot/functions/SetAttributesFunction$Modifier/f_80849_ net/minecraft/world/level/storage/loot/functions/SetAttributesFunction$Modifier/operation +FD: net/minecraft/world/level/storage/loot/functions/SetAttributesFunction$Modifier/f_80850_ net/minecraft/world/level/storage/loot/functions/SetAttributesFunction$Modifier/amount +FD: net/minecraft/world/level/storage/loot/functions/SetAttributesFunction$Modifier/f_80851_ net/minecraft/world/level/storage/loot/functions/SetAttributesFunction$Modifier/id +FD: net/minecraft/world/level/storage/loot/functions/SetAttributesFunction$Modifier/f_80852_ net/minecraft/world/level/storage/loot/functions/SetAttributesFunction$Modifier/slots +FD: net/minecraft/world/level/storage/loot/functions/SetAttributesFunction$ModifierBuilder/f_165256_ net/minecraft/world/level/storage/loot/functions/SetAttributesFunction$ModifierBuilder/name +FD: net/minecraft/world/level/storage/loot/functions/SetAttributesFunction$ModifierBuilder/f_165257_ net/minecraft/world/level/storage/loot/functions/SetAttributesFunction$ModifierBuilder/attribute +FD: net/minecraft/world/level/storage/loot/functions/SetAttributesFunction$ModifierBuilder/f_165258_ net/minecraft/world/level/storage/loot/functions/SetAttributesFunction$ModifierBuilder/operation +FD: net/minecraft/world/level/storage/loot/functions/SetAttributesFunction$ModifierBuilder/f_165259_ net/minecraft/world/level/storage/loot/functions/SetAttributesFunction$ModifierBuilder/amount +FD: net/minecraft/world/level/storage/loot/functions/SetAttributesFunction$ModifierBuilder/f_165260_ net/minecraft/world/level/storage/loot/functions/SetAttributesFunction$ModifierBuilder/id +FD: net/minecraft/world/level/storage/loot/functions/SetAttributesFunction$ModifierBuilder/f_165261_ net/minecraft/world/level/storage/loot/functions/SetAttributesFunction$ModifierBuilder/slots +FD: net/minecraft/world/level/storage/loot/functions/SetBannerPatternFunction/f_165272_ net/minecraft/world/level/storage/loot/functions/SetBannerPatternFunction/patterns +FD: net/minecraft/world/level/storage/loot/functions/SetBannerPatternFunction/f_165273_ net/minecraft/world/level/storage/loot/functions/SetBannerPatternFunction/append +FD: net/minecraft/world/level/storage/loot/functions/SetBannerPatternFunction$Builder/f_165284_ net/minecraft/world/level/storage/loot/functions/SetBannerPatternFunction$Builder/patterns +FD: net/minecraft/world/level/storage/loot/functions/SetBannerPatternFunction$Builder/f_165285_ net/minecraft/world/level/storage/loot/functions/SetBannerPatternFunction$Builder/append +FD: net/minecraft/world/level/storage/loot/functions/SetContainerContents/f_193031_ net/minecraft/world/level/storage/loot/functions/SetContainerContents/type +FD: net/minecraft/world/level/storage/loot/functions/SetContainerContents/f_80902_ net/minecraft/world/level/storage/loot/functions/SetContainerContents/entries +FD: net/minecraft/world/level/storage/loot/functions/SetContainerContents$Builder/f_193038_ net/minecraft/world/level/storage/loot/functions/SetContainerContents$Builder/type +FD: net/minecraft/world/level/storage/loot/functions/SetContainerContents$Builder/f_80927_ net/minecraft/world/level/storage/loot/functions/SetContainerContents$Builder/entries +FD: net/minecraft/world/level/storage/loot/functions/SetContainerLootTable/f_193043_ net/minecraft/world/level/storage/loot/functions/SetContainerLootTable/type +FD: net/minecraft/world/level/storage/loot/functions/SetContainerLootTable/f_80955_ net/minecraft/world/level/storage/loot/functions/SetContainerLootTable/name +FD: net/minecraft/world/level/storage/loot/functions/SetContainerLootTable/f_80956_ net/minecraft/world/level/storage/loot/functions/SetContainerLootTable/seed +FD: net/minecraft/world/level/storage/loot/functions/SetEnchantmentsFunction/f_165334_ net/minecraft/world/level/storage/loot/functions/SetEnchantmentsFunction/enchantments +FD: net/minecraft/world/level/storage/loot/functions/SetEnchantmentsFunction/f_165335_ net/minecraft/world/level/storage/loot/functions/SetEnchantmentsFunction/add +FD: net/minecraft/world/level/storage/loot/functions/SetEnchantmentsFunction$Builder/f_165368_ net/minecraft/world/level/storage/loot/functions/SetEnchantmentsFunction$Builder/enchantments +FD: net/minecraft/world/level/storage/loot/functions/SetEnchantmentsFunction$Builder/f_165369_ net/minecraft/world/level/storage/loot/functions/SetEnchantmentsFunction$Builder/add +FD: net/minecraft/world/level/storage/loot/functions/SetInstrumentFunction/f_231006_ net/minecraft/world/level/storage/loot/functions/SetInstrumentFunction/options +FD: net/minecraft/world/level/storage/loot/functions/SetItemCountFunction/f_165407_ net/minecraft/world/level/storage/loot/functions/SetItemCountFunction/add +FD: net/minecraft/world/level/storage/loot/functions/SetItemCountFunction/f_80997_ net/minecraft/world/level/storage/loot/functions/SetItemCountFunction/value +FD: net/minecraft/world/level/storage/loot/functions/SetItemDamageFunction/f_165425_ net/minecraft/world/level/storage/loot/functions/SetItemDamageFunction/add +FD: net/minecraft/world/level/storage/loot/functions/SetItemDamageFunction/f_81037_ net/minecraft/world/level/storage/loot/functions/SetItemDamageFunction/LOGGER +FD: net/minecraft/world/level/storage/loot/functions/SetItemDamageFunction/f_81038_ net/minecraft/world/level/storage/loot/functions/SetItemDamageFunction/damage +FD: net/minecraft/world/level/storage/loot/functions/SetLoreFunction/f_81079_ net/minecraft/world/level/storage/loot/functions/SetLoreFunction/replace +FD: net/minecraft/world/level/storage/loot/functions/SetLoreFunction/f_81080_ net/minecraft/world/level/storage/loot/functions/SetLoreFunction/lore +FD: net/minecraft/world/level/storage/loot/functions/SetLoreFunction/f_81081_ net/minecraft/world/level/storage/loot/functions/SetLoreFunction/resolutionContext +FD: net/minecraft/world/level/storage/loot/functions/SetLoreFunction$Builder/f_165444_ net/minecraft/world/level/storage/loot/functions/SetLoreFunction$Builder/replace +FD: net/minecraft/world/level/storage/loot/functions/SetLoreFunction$Builder/f_165445_ net/minecraft/world/level/storage/loot/functions/SetLoreFunction$Builder/resolutionContext +FD: net/minecraft/world/level/storage/loot/functions/SetLoreFunction$Builder/f_165446_ net/minecraft/world/level/storage/loot/functions/SetLoreFunction$Builder/lore +FD: net/minecraft/world/level/storage/loot/functions/SetNameFunction/f_81122_ net/minecraft/world/level/storage/loot/functions/SetNameFunction/LOGGER +FD: net/minecraft/world/level/storage/loot/functions/SetNameFunction/f_81123_ net/minecraft/world/level/storage/loot/functions/SetNameFunction/name +FD: net/minecraft/world/level/storage/loot/functions/SetNameFunction/f_81124_ net/minecraft/world/level/storage/loot/functions/SetNameFunction/resolutionContext +FD: net/minecraft/world/level/storage/loot/functions/SetNbtFunction/f_81174_ net/minecraft/world/level/storage/loot/functions/SetNbtFunction/tag +FD: net/minecraft/world/level/storage/loot/functions/SetPotionFunction/f_193067_ net/minecraft/world/level/storage/loot/functions/SetPotionFunction/potion +FD: net/minecraft/world/level/storage/loot/functions/SetStewEffectFunction/f_81214_ net/minecraft/world/level/storage/loot/functions/SetStewEffectFunction/effectDurationMap +FD: net/minecraft/world/level/storage/loot/functions/SetStewEffectFunction$Builder/f_81229_ net/minecraft/world/level/storage/loot/functions/SetStewEffectFunction$Builder/effectDurationMap +FD: net/minecraft/world/level/storage/loot/functions/SmeltItemFunction/f_81260_ net/minecraft/world/level/storage/loot/functions/SmeltItemFunction/LOGGER +FD: net/minecraft/world/level/storage/loot/parameters/LootContextParam/f_81281_ net/minecraft/world/level/storage/loot/parameters/LootContextParam/name +FD: net/minecraft/world/level/storage/loot/parameters/LootContextParamSet/f_81385_ net/minecraft/world/level/storage/loot/parameters/LootContextParamSet/required +FD: net/minecraft/world/level/storage/loot/parameters/LootContextParamSet/f_81386_ net/minecraft/world/level/storage/loot/parameters/LootContextParamSet/all +FD: net/minecraft/world/level/storage/loot/parameters/LootContextParamSet$Builder/f_81402_ net/minecraft/world/level/storage/loot/parameters/LootContextParamSet$Builder/required +FD: net/minecraft/world/level/storage/loot/parameters/LootContextParamSet$Builder/f_81403_ net/minecraft/world/level/storage/loot/parameters/LootContextParamSet$Builder/optional +FD: net/minecraft/world/level/storage/loot/parameters/LootContextParamSets/f_271368_ net/minecraft/world/level/storage/loot/parameters/LootContextParamSets/ARCHAEOLOGY +FD: net/minecraft/world/level/storage/loot/parameters/LootContextParamSets/f_285637_ net/minecraft/world/level/storage/loot/parameters/LootContextParamSets/ADVANCEMENT_LOCATION +FD: net/minecraft/world/level/storage/loot/parameters/LootContextParamSets/f_81410_ net/minecraft/world/level/storage/loot/parameters/LootContextParamSets/EMPTY +FD: net/minecraft/world/level/storage/loot/parameters/LootContextParamSets/f_81411_ net/minecraft/world/level/storage/loot/parameters/LootContextParamSets/CHEST +FD: net/minecraft/world/level/storage/loot/parameters/LootContextParamSets/f_81412_ net/minecraft/world/level/storage/loot/parameters/LootContextParamSets/COMMAND +FD: net/minecraft/world/level/storage/loot/parameters/LootContextParamSets/f_81413_ net/minecraft/world/level/storage/loot/parameters/LootContextParamSets/SELECTOR +FD: net/minecraft/world/level/storage/loot/parameters/LootContextParamSets/f_81414_ net/minecraft/world/level/storage/loot/parameters/LootContextParamSets/FISHING +FD: net/minecraft/world/level/storage/loot/parameters/LootContextParamSets/f_81415_ net/minecraft/world/level/storage/loot/parameters/LootContextParamSets/ENTITY +FD: net/minecraft/world/level/storage/loot/parameters/LootContextParamSets/f_81416_ net/minecraft/world/level/storage/loot/parameters/LootContextParamSets/GIFT +FD: net/minecraft/world/level/storage/loot/parameters/LootContextParamSets/f_81417_ net/minecraft/world/level/storage/loot/parameters/LootContextParamSets/PIGLIN_BARTER +FD: net/minecraft/world/level/storage/loot/parameters/LootContextParamSets/f_81418_ net/minecraft/world/level/storage/loot/parameters/LootContextParamSets/ADVANCEMENT_REWARD +FD: net/minecraft/world/level/storage/loot/parameters/LootContextParamSets/f_81419_ net/minecraft/world/level/storage/loot/parameters/LootContextParamSets/ADVANCEMENT_ENTITY +FD: net/minecraft/world/level/storage/loot/parameters/LootContextParamSets/f_81420_ net/minecraft/world/level/storage/loot/parameters/LootContextParamSets/ALL_PARAMS +FD: net/minecraft/world/level/storage/loot/parameters/LootContextParamSets/f_81421_ net/minecraft/world/level/storage/loot/parameters/LootContextParamSets/BLOCK +FD: net/minecraft/world/level/storage/loot/parameters/LootContextParamSets/f_81422_ net/minecraft/world/level/storage/loot/parameters/LootContextParamSets/REGISTRY +FD: net/minecraft/world/level/storage/loot/parameters/LootContextParams/f_81455_ net/minecraft/world/level/storage/loot/parameters/LootContextParams/THIS_ENTITY +FD: net/minecraft/world/level/storage/loot/parameters/LootContextParams/f_81456_ net/minecraft/world/level/storage/loot/parameters/LootContextParams/LAST_DAMAGE_PLAYER +FD: net/minecraft/world/level/storage/loot/parameters/LootContextParams/f_81457_ net/minecraft/world/level/storage/loot/parameters/LootContextParams/DAMAGE_SOURCE +FD: net/minecraft/world/level/storage/loot/parameters/LootContextParams/f_81458_ net/minecraft/world/level/storage/loot/parameters/LootContextParams/KILLER_ENTITY +FD: net/minecraft/world/level/storage/loot/parameters/LootContextParams/f_81459_ net/minecraft/world/level/storage/loot/parameters/LootContextParams/DIRECT_KILLER_ENTITY +FD: net/minecraft/world/level/storage/loot/parameters/LootContextParams/f_81460_ net/minecraft/world/level/storage/loot/parameters/LootContextParams/ORIGIN +FD: net/minecraft/world/level/storage/loot/parameters/LootContextParams/f_81461_ net/minecraft/world/level/storage/loot/parameters/LootContextParams/BLOCK_STATE +FD: net/minecraft/world/level/storage/loot/parameters/LootContextParams/f_81462_ net/minecraft/world/level/storage/loot/parameters/LootContextParams/BLOCK_ENTITY +FD: net/minecraft/world/level/storage/loot/parameters/LootContextParams/f_81463_ net/minecraft/world/level/storage/loot/parameters/LootContextParams/TOOL +FD: net/minecraft/world/level/storage/loot/parameters/LootContextParams/f_81464_ net/minecraft/world/level/storage/loot/parameters/LootContextParams/EXPLOSION_RADIUS +FD: net/minecraft/world/level/storage/loot/predicates/BonusLevelTableCondition/f_81507_ net/minecraft/world/level/storage/loot/predicates/BonusLevelTableCondition/enchantment +FD: net/minecraft/world/level/storage/loot/predicates/BonusLevelTableCondition/f_81508_ net/minecraft/world/level/storage/loot/predicates/BonusLevelTableCondition/values +FD: net/minecraft/world/level/storage/loot/predicates/CompositeLootItemCondition/f_285609_ net/minecraft/world/level/storage/loot/predicates/CompositeLootItemCondition/terms +FD: net/minecraft/world/level/storage/loot/predicates/CompositeLootItemCondition/f_285616_ net/minecraft/world/level/storage/loot/predicates/CompositeLootItemCondition/composedPredicate +FD: net/minecraft/world/level/storage/loot/predicates/CompositeLootItemCondition$Builder/f_285633_ net/minecraft/world/level/storage/loot/predicates/CompositeLootItemCondition$Builder/terms +FD: net/minecraft/world/level/storage/loot/predicates/ConditionReference/f_81549_ net/minecraft/world/level/storage/loot/predicates/ConditionReference/LOGGER +FD: net/minecraft/world/level/storage/loot/predicates/ConditionReference/f_81550_ net/minecraft/world/level/storage/loot/predicates/ConditionReference/name +FD: net/minecraft/world/level/storage/loot/predicates/DamageSourceCondition/f_81582_ net/minecraft/world/level/storage/loot/predicates/DamageSourceCondition/predicate +FD: net/minecraft/world/level/storage/loot/predicates/EntityHasScoreCondition/f_81615_ net/minecraft/world/level/storage/loot/predicates/EntityHasScoreCondition/scores +FD: net/minecraft/world/level/storage/loot/predicates/EntityHasScoreCondition/f_81616_ net/minecraft/world/level/storage/loot/predicates/EntityHasScoreCondition/entityTarget +FD: net/minecraft/world/level/storage/loot/predicates/EntityHasScoreCondition$Builder/f_165496_ net/minecraft/world/level/storage/loot/predicates/EntityHasScoreCondition$Builder/scores +FD: net/minecraft/world/level/storage/loot/predicates/EntityHasScoreCondition$Builder/f_165497_ net/minecraft/world/level/storage/loot/predicates/EntityHasScoreCondition$Builder/entityTarget +FD: net/minecraft/world/level/storage/loot/predicates/ExplosionCondition/f_81654_ net/minecraft/world/level/storage/loot/predicates/ExplosionCondition/INSTANCE +FD: net/minecraft/world/level/storage/loot/predicates/InvertedLootItemCondition/f_81681_ net/minecraft/world/level/storage/loot/predicates/InvertedLootItemCondition/term +FD: net/minecraft/world/level/storage/loot/predicates/LocationCheck/f_81716_ net/minecraft/world/level/storage/loot/predicates/LocationCheck/predicate +FD: net/minecraft/world/level/storage/loot/predicates/LocationCheck/f_81717_ net/minecraft/world/level/storage/loot/predicates/LocationCheck/offset +FD: net/minecraft/world/level/storage/loot/predicates/LootItemBlockStatePropertyCondition/f_81759_ net/minecraft/world/level/storage/loot/predicates/LootItemBlockStatePropertyCondition/block +FD: net/minecraft/world/level/storage/loot/predicates/LootItemBlockStatePropertyCondition/f_81760_ net/minecraft/world/level/storage/loot/predicates/LootItemBlockStatePropertyCondition/properties +FD: net/minecraft/world/level/storage/loot/predicates/LootItemBlockStatePropertyCondition$Builder/f_81780_ net/minecraft/world/level/storage/loot/predicates/LootItemBlockStatePropertyCondition$Builder/block +FD: net/minecraft/world/level/storage/loot/predicates/LootItemBlockStatePropertyCondition$Builder/f_81781_ net/minecraft/world/level/storage/loot/predicates/LootItemBlockStatePropertyCondition$Builder/properties +FD: net/minecraft/world/level/storage/loot/predicates/LootItemConditions/f_165504_ net/minecraft/world/level/storage/loot/predicates/LootItemConditions/VALUE_CHECK +FD: net/minecraft/world/level/storage/loot/predicates/LootItemConditions/f_285643_ net/minecraft/world/level/storage/loot/predicates/LootItemConditions/ANY_OF +FD: net/minecraft/world/level/storage/loot/predicates/LootItemConditions/f_285646_ net/minecraft/world/level/storage/loot/predicates/LootItemConditions/ALL_OF +FD: net/minecraft/world/level/storage/loot/predicates/LootItemConditions/f_81811_ net/minecraft/world/level/storage/loot/predicates/LootItemConditions/INVERTED +FD: net/minecraft/world/level/storage/loot/predicates/LootItemConditions/f_81813_ net/minecraft/world/level/storage/loot/predicates/LootItemConditions/RANDOM_CHANCE +FD: net/minecraft/world/level/storage/loot/predicates/LootItemConditions/f_81814_ net/minecraft/world/level/storage/loot/predicates/LootItemConditions/RANDOM_CHANCE_WITH_LOOTING +FD: net/minecraft/world/level/storage/loot/predicates/LootItemConditions/f_81815_ net/minecraft/world/level/storage/loot/predicates/LootItemConditions/ENTITY_PROPERTIES +FD: net/minecraft/world/level/storage/loot/predicates/LootItemConditions/f_81816_ net/minecraft/world/level/storage/loot/predicates/LootItemConditions/KILLED_BY_PLAYER +FD: net/minecraft/world/level/storage/loot/predicates/LootItemConditions/f_81817_ net/minecraft/world/level/storage/loot/predicates/LootItemConditions/ENTITY_SCORES +FD: net/minecraft/world/level/storage/loot/predicates/LootItemConditions/f_81818_ net/minecraft/world/level/storage/loot/predicates/LootItemConditions/BLOCK_STATE_PROPERTY +FD: net/minecraft/world/level/storage/loot/predicates/LootItemConditions/f_81819_ net/minecraft/world/level/storage/loot/predicates/LootItemConditions/MATCH_TOOL +FD: net/minecraft/world/level/storage/loot/predicates/LootItemConditions/f_81820_ net/minecraft/world/level/storage/loot/predicates/LootItemConditions/TABLE_BONUS +FD: net/minecraft/world/level/storage/loot/predicates/LootItemConditions/f_81821_ net/minecraft/world/level/storage/loot/predicates/LootItemConditions/SURVIVES_EXPLOSION +FD: net/minecraft/world/level/storage/loot/predicates/LootItemConditions/f_81822_ net/minecraft/world/level/storage/loot/predicates/LootItemConditions/DAMAGE_SOURCE_PROPERTIES +FD: net/minecraft/world/level/storage/loot/predicates/LootItemConditions/f_81823_ net/minecraft/world/level/storage/loot/predicates/LootItemConditions/LOCATION_CHECK +FD: net/minecraft/world/level/storage/loot/predicates/LootItemConditions/f_81824_ net/minecraft/world/level/storage/loot/predicates/LootItemConditions/WEATHER_CHECK +FD: net/minecraft/world/level/storage/loot/predicates/LootItemConditions/f_81825_ net/minecraft/world/level/storage/loot/predicates/LootItemConditions/REFERENCE +FD: net/minecraft/world/level/storage/loot/predicates/LootItemConditions/f_81826_ net/minecraft/world/level/storage/loot/predicates/LootItemConditions/TIME_CHECK +FD: net/minecraft/world/level/storage/loot/predicates/LootItemEntityPropertyCondition/f_81846_ net/minecraft/world/level/storage/loot/predicates/LootItemEntityPropertyCondition/predicate +FD: net/minecraft/world/level/storage/loot/predicates/LootItemEntityPropertyCondition/f_81847_ net/minecraft/world/level/storage/loot/predicates/LootItemEntityPropertyCondition/entityTarget +FD: net/minecraft/world/level/storage/loot/predicates/LootItemKilledByPlayerCondition/f_81894_ net/minecraft/world/level/storage/loot/predicates/LootItemKilledByPlayerCondition/INSTANCE +FD: net/minecraft/world/level/storage/loot/predicates/LootItemRandomChanceCondition/f_81921_ net/minecraft/world/level/storage/loot/predicates/LootItemRandomChanceCondition/probability +FD: net/minecraft/world/level/storage/loot/predicates/LootItemRandomChanceWithLootingCondition/f_81953_ net/minecraft/world/level/storage/loot/predicates/LootItemRandomChanceWithLootingCondition/percent +FD: net/minecraft/world/level/storage/loot/predicates/LootItemRandomChanceWithLootingCondition/f_81954_ net/minecraft/world/level/storage/loot/predicates/LootItemRandomChanceWithLootingCondition/lootingMultiplier +FD: net/minecraft/world/level/storage/loot/predicates/MatchTool/f_81993_ net/minecraft/world/level/storage/loot/predicates/MatchTool/predicate +FD: net/minecraft/world/level/storage/loot/predicates/TimeCheck/f_82023_ net/minecraft/world/level/storage/loot/predicates/TimeCheck/period +FD: net/minecraft/world/level/storage/loot/predicates/TimeCheck/f_82024_ net/minecraft/world/level/storage/loot/predicates/TimeCheck/value +FD: net/minecraft/world/level/storage/loot/predicates/TimeCheck$Builder/f_165512_ net/minecraft/world/level/storage/loot/predicates/TimeCheck$Builder/period +FD: net/minecraft/world/level/storage/loot/predicates/TimeCheck$Builder/f_165513_ net/minecraft/world/level/storage/loot/predicates/TimeCheck$Builder/value +FD: net/minecraft/world/level/storage/loot/predicates/ValueCheckCondition/f_165520_ net/minecraft/world/level/storage/loot/predicates/ValueCheckCondition/provider +FD: net/minecraft/world/level/storage/loot/predicates/ValueCheckCondition/f_165521_ net/minecraft/world/level/storage/loot/predicates/ValueCheckCondition/range +FD: net/minecraft/world/level/storage/loot/predicates/WeatherCheck/f_82056_ net/minecraft/world/level/storage/loot/predicates/WeatherCheck/isRaining +FD: net/minecraft/world/level/storage/loot/predicates/WeatherCheck/f_82057_ net/minecraft/world/level/storage/loot/predicates/WeatherCheck/isThundering +FD: net/minecraft/world/level/storage/loot/predicates/WeatherCheck$Builder/f_165553_ net/minecraft/world/level/storage/loot/predicates/WeatherCheck$Builder/isRaining +FD: net/minecraft/world/level/storage/loot/predicates/WeatherCheck$Builder/f_165554_ net/minecraft/world/level/storage/loot/predicates/WeatherCheck$Builder/isThundering +FD: net/minecraft/world/level/storage/loot/providers/nbt/ContextNbtProvider/f_165562_ net/minecraft/world/level/storage/loot/providers/nbt/ContextNbtProvider/BLOCK_ENTITY +FD: net/minecraft/world/level/storage/loot/providers/nbt/ContextNbtProvider/f_165563_ net/minecraft/world/level/storage/loot/providers/nbt/ContextNbtProvider/BLOCK_ENTITY_ID +FD: net/minecraft/world/level/storage/loot/providers/nbt/ContextNbtProvider/f_165564_ net/minecraft/world/level/storage/loot/providers/nbt/ContextNbtProvider/BLOCK_ENTITY_PROVIDER +FD: net/minecraft/world/level/storage/loot/providers/nbt/ContextNbtProvider/f_165565_ net/minecraft/world/level/storage/loot/providers/nbt/ContextNbtProvider/getter +FD: net/minecraft/world/level/storage/loot/providers/nbt/ContextNbtProvider$2/f_165584_ net/minecraft/world/level/storage/loot/providers/nbt/ContextNbtProvider$2/val$target +FD: net/minecraft/world/level/storage/loot/providers/nbt/NbtProviders/f_165623_ net/minecraft/world/level/storage/loot/providers/nbt/NbtProviders/STORAGE +FD: net/minecraft/world/level/storage/loot/providers/nbt/NbtProviders/f_165624_ net/minecraft/world/level/storage/loot/providers/nbt/NbtProviders/CONTEXT +FD: net/minecraft/world/level/storage/loot/providers/nbt/StorageNbtProvider/f_165631_ net/minecraft/world/level/storage/loot/providers/nbt/StorageNbtProvider/id +FD: net/minecraft/world/level/storage/loot/providers/number/BinomialDistributionGenerator/f_165653_ net/minecraft/world/level/storage/loot/providers/number/BinomialDistributionGenerator/n +FD: net/minecraft/world/level/storage/loot/providers/number/BinomialDistributionGenerator/f_165654_ net/minecraft/world/level/storage/loot/providers/number/BinomialDistributionGenerator/p +FD: net/minecraft/world/level/storage/loot/providers/number/ConstantValue/f_165688_ net/minecraft/world/level/storage/loot/providers/number/ConstantValue/value +FD: net/minecraft/world/level/storage/loot/providers/number/NumberProviders/f_165731_ net/minecraft/world/level/storage/loot/providers/number/NumberProviders/CONSTANT +FD: net/minecraft/world/level/storage/loot/providers/number/NumberProviders/f_165732_ net/minecraft/world/level/storage/loot/providers/number/NumberProviders/UNIFORM +FD: net/minecraft/world/level/storage/loot/providers/number/NumberProviders/f_165733_ net/minecraft/world/level/storage/loot/providers/number/NumberProviders/BINOMIAL +FD: net/minecraft/world/level/storage/loot/providers/number/NumberProviders/f_165734_ net/minecraft/world/level/storage/loot/providers/number/NumberProviders/SCORE +FD: net/minecraft/world/level/storage/loot/providers/number/ScoreboardValue/f_165741_ net/minecraft/world/level/storage/loot/providers/number/ScoreboardValue/target +FD: net/minecraft/world/level/storage/loot/providers/number/ScoreboardValue/f_165742_ net/minecraft/world/level/storage/loot/providers/number/ScoreboardValue/score +FD: net/minecraft/world/level/storage/loot/providers/number/ScoreboardValue/f_165743_ net/minecraft/world/level/storage/loot/providers/number/ScoreboardValue/scale +FD: net/minecraft/world/level/storage/loot/providers/number/UniformGenerator/f_165774_ net/minecraft/world/level/storage/loot/providers/number/UniformGenerator/min +FD: net/minecraft/world/level/storage/loot/providers/number/UniformGenerator/f_165775_ net/minecraft/world/level/storage/loot/providers/number/UniformGenerator/max +FD: net/minecraft/world/level/storage/loot/providers/score/ContextScoreboardNameProvider/f_165803_ net/minecraft/world/level/storage/loot/providers/score/ContextScoreboardNameProvider/target +FD: net/minecraft/world/level/storage/loot/providers/score/FixedScoreboardNameProvider/f_165840_ net/minecraft/world/level/storage/loot/providers/score/FixedScoreboardNameProvider/name +FD: net/minecraft/world/level/storage/loot/providers/score/ScoreboardNameProviders/f_165868_ net/minecraft/world/level/storage/loot/providers/score/ScoreboardNameProviders/FIXED +FD: net/minecraft/world/level/storage/loot/providers/score/ScoreboardNameProviders/f_165869_ net/minecraft/world/level/storage/loot/providers/score/ScoreboardNameProviders/CONTEXT +FD: net/minecraft/world/level/timers/FunctionCallback/f_82162_ net/minecraft/world/level/timers/FunctionCallback/functionId +FD: net/minecraft/world/level/timers/FunctionTagCallback/f_82189_ net/minecraft/world/level/timers/FunctionTagCallback/tagId +FD: net/minecraft/world/level/timers/TimerCallback$Serializer/f_82216_ net/minecraft/world/level/timers/TimerCallback$Serializer/id +FD: net/minecraft/world/level/timers/TimerCallback$Serializer/f_82217_ net/minecraft/world/level/timers/TimerCallback$Serializer/cls +FD: net/minecraft/world/level/timers/TimerCallbacks/f_82226_ net/minecraft/world/level/timers/TimerCallbacks/SERVER_CALLBACKS +FD: net/minecraft/world/level/timers/TimerCallbacks/f_82227_ net/minecraft/world/level/timers/TimerCallbacks/LOGGER +FD: net/minecraft/world/level/timers/TimerCallbacks/f_82228_ net/minecraft/world/level/timers/TimerCallbacks/idToSerializer +FD: net/minecraft/world/level/timers/TimerCallbacks/f_82229_ net/minecraft/world/level/timers/TimerCallbacks/classToSerializer +FD: net/minecraft/world/level/timers/TimerQueue/f_165876_ net/minecraft/world/level/timers/TimerQueue/CALLBACK_DATA_TAG +FD: net/minecraft/world/level/timers/TimerQueue/f_165877_ net/minecraft/world/level/timers/TimerQueue/TIMER_NAME_TAG +FD: net/minecraft/world/level/timers/TimerQueue/f_165878_ net/minecraft/world/level/timers/TimerQueue/TIMER_TRIGGER_TIME_TAG +FD: net/minecraft/world/level/timers/TimerQueue/f_82240_ net/minecraft/world/level/timers/TimerQueue/LOGGER +FD: net/minecraft/world/level/timers/TimerQueue/f_82241_ net/minecraft/world/level/timers/TimerQueue/callbacksRegistry +FD: net/minecraft/world/level/timers/TimerQueue/f_82242_ net/minecraft/world/level/timers/TimerQueue/queue +FD: net/minecraft/world/level/timers/TimerQueue/f_82243_ net/minecraft/world/level/timers/TimerQueue/sequentialId +FD: net/minecraft/world/level/timers/TimerQueue/f_82244_ net/minecraft/world/level/timers/TimerQueue/events +FD: net/minecraft/world/level/timers/TimerQueue$Event/f_82273_ net/minecraft/world/level/timers/TimerQueue$Event/triggerTime +FD: net/minecraft/world/level/timers/TimerQueue$Event/f_82274_ net/minecraft/world/level/timers/TimerQueue$Event/sequentialId +FD: net/minecraft/world/level/timers/TimerQueue$Event/f_82275_ net/minecraft/world/level/timers/TimerQueue$Event/id +FD: net/minecraft/world/level/timers/TimerQueue$Event/f_82276_ net/minecraft/world/level/timers/TimerQueue$Event/callback +FD: net/minecraft/world/level/validation/ContentValidationException/f_289822_ net/minecraft/world/level/validation/ContentValidationException/directory +FD: net/minecraft/world/level/validation/ContentValidationException/f_289835_ net/minecraft/world/level/validation/ContentValidationException/entries +FD: net/minecraft/world/level/validation/DirectoryValidator/f_289823_ net/minecraft/world/level/validation/DirectoryValidator/symlinkTargetAllowList +FD: net/minecraft/world/level/validation/DirectoryValidator$1/f_289831_ net/minecraft/world/level/validation/DirectoryValidator$1/val$issues +FD: net/minecraft/world/level/validation/DirectoryValidator$1/f_289834_ net/minecraft/world/level/validation/DirectoryValidator$1/this$0 +FD: net/minecraft/world/level/validation/ForbiddenSymlinkInfo/f_289826_ net/minecraft/world/level/validation/ForbiddenSymlinkInfo/link +FD: net/minecraft/world/level/validation/ForbiddenSymlinkInfo/f_289840_ net/minecraft/world/level/validation/ForbiddenSymlinkInfo/target +FD: net/minecraft/world/level/validation/PathAllowList/f_289818_ net/minecraft/world/level/validation/PathAllowList/compiledPaths +FD: net/minecraft/world/level/validation/PathAllowList/f_289820_ net/minecraft/world/level/validation/PathAllowList/entries +FD: net/minecraft/world/level/validation/PathAllowList/f_289821_ net/minecraft/world/level/validation/PathAllowList/COMMENT_PREFIX +FD: net/minecraft/world/level/validation/PathAllowList/f_289832_ net/minecraft/world/level/validation/PathAllowList/LOGGER +FD: net/minecraft/world/level/validation/PathAllowList$ConfigEntry/f_289830_ net/minecraft/world/level/validation/PathAllowList$ConfigEntry/type +FD: net/minecraft/world/level/validation/PathAllowList$ConfigEntry/f_289839_ net/minecraft/world/level/validation/PathAllowList$ConfigEntry/pattern +FD: net/minecraft/world/level/validation/PathAllowList$EntryType/f_289828_ net/minecraft/world/level/validation/PathAllowList$EntryType/FILESYSTEM +FD: net/minecraft/world/level/validation/PathAllowList$EntryType/f_289838_ net/minecraft/world/level/validation/PathAllowList$EntryType/PREFIX +FD: net/minecraft/world/phys/AABB/f_165879_ net/minecraft/world/phys/AABB/EPSILON +FD: net/minecraft/world/phys/AABB/f_82288_ net/minecraft/world/phys/AABB/minX +FD: net/minecraft/world/phys/AABB/f_82289_ net/minecraft/world/phys/AABB/minY +FD: net/minecraft/world/phys/AABB/f_82290_ net/minecraft/world/phys/AABB/minZ +FD: net/minecraft/world/phys/AABB/f_82291_ net/minecraft/world/phys/AABB/maxX +FD: net/minecraft/world/phys/AABB/f_82292_ net/minecraft/world/phys/AABB/maxY +FD: net/minecraft/world/phys/AABB/f_82293_ net/minecraft/world/phys/AABB/maxZ +FD: net/minecraft/world/phys/BlockHitResult/f_82410_ net/minecraft/world/phys/BlockHitResult/direction +FD: net/minecraft/world/phys/BlockHitResult/f_82411_ net/minecraft/world/phys/BlockHitResult/blockPos +FD: net/minecraft/world/phys/BlockHitResult/f_82412_ net/minecraft/world/phys/BlockHitResult/miss +FD: net/minecraft/world/phys/BlockHitResult/f_82413_ net/minecraft/world/phys/BlockHitResult/inside +FD: net/minecraft/world/phys/EntityHitResult/f_82437_ net/minecraft/world/phys/EntityHitResult/entity +FD: net/minecraft/world/phys/HitResult/f_82445_ net/minecraft/world/phys/HitResult/location +FD: net/minecraft/world/phys/HitResult$Type/$VALUES net/minecraft/world/phys/HitResult$Type/$VALUES +FD: net/minecraft/world/phys/HitResult$Type/BLOCK net/minecraft/world/phys/HitResult$Type/BLOCK +FD: net/minecraft/world/phys/HitResult$Type/ENTITY net/minecraft/world/phys/HitResult$Type/ENTITY +FD: net/minecraft/world/phys/HitResult$Type/MISS net/minecraft/world/phys/HitResult$Type/MISS +FD: net/minecraft/world/phys/Vec2/f_82462_ net/minecraft/world/phys/Vec2/ZERO +FD: net/minecraft/world/phys/Vec2/f_82463_ net/minecraft/world/phys/Vec2/ONE +FD: net/minecraft/world/phys/Vec2/f_82464_ net/minecraft/world/phys/Vec2/UNIT_X +FD: net/minecraft/world/phys/Vec2/f_82465_ net/minecraft/world/phys/Vec2/NEG_UNIT_X +FD: net/minecraft/world/phys/Vec2/f_82466_ net/minecraft/world/phys/Vec2/UNIT_Y +FD: net/minecraft/world/phys/Vec2/f_82467_ net/minecraft/world/phys/Vec2/NEG_UNIT_Y +FD: net/minecraft/world/phys/Vec2/f_82468_ net/minecraft/world/phys/Vec2/MAX +FD: net/minecraft/world/phys/Vec2/f_82469_ net/minecraft/world/phys/Vec2/MIN +FD: net/minecraft/world/phys/Vec2/f_82470_ net/minecraft/world/phys/Vec2/x +FD: net/minecraft/world/phys/Vec2/f_82471_ net/minecraft/world/phys/Vec2/y +FD: net/minecraft/world/phys/Vec3/f_231074_ net/minecraft/world/phys/Vec3/CODEC +FD: net/minecraft/world/phys/Vec3/f_82478_ net/minecraft/world/phys/Vec3/ZERO +FD: net/minecraft/world/phys/Vec3/f_82479_ net/minecraft/world/phys/Vec3/x +FD: net/minecraft/world/phys/Vec3/f_82480_ net/minecraft/world/phys/Vec3/y +FD: net/minecraft/world/phys/Vec3/f_82481_ net/minecraft/world/phys/Vec3/z +FD: net/minecraft/world/phys/shapes/ArrayVoxelShape/f_82563_ net/minecraft/world/phys/shapes/ArrayVoxelShape/xs +FD: net/minecraft/world/phys/shapes/ArrayVoxelShape/f_82564_ net/minecraft/world/phys/shapes/ArrayVoxelShape/ys +FD: net/minecraft/world/phys/shapes/ArrayVoxelShape/f_82565_ net/minecraft/world/phys/shapes/ArrayVoxelShape/zs +FD: net/minecraft/world/phys/shapes/ArrayVoxelShape$1/f_82578_ net/minecraft/world/phys/shapes/ArrayVoxelShape$1/$SwitchMap$net$minecraft$core$Direction$Axis +FD: net/minecraft/world/phys/shapes/BitSetDiscreteVoxelShape/f_82580_ net/minecraft/world/phys/shapes/BitSetDiscreteVoxelShape/storage +FD: net/minecraft/world/phys/shapes/BitSetDiscreteVoxelShape/f_82581_ net/minecraft/world/phys/shapes/BitSetDiscreteVoxelShape/xMin +FD: net/minecraft/world/phys/shapes/BitSetDiscreteVoxelShape/f_82582_ net/minecraft/world/phys/shapes/BitSetDiscreteVoxelShape/yMin +FD: net/minecraft/world/phys/shapes/BitSetDiscreteVoxelShape/f_82583_ net/minecraft/world/phys/shapes/BitSetDiscreteVoxelShape/zMin +FD: net/minecraft/world/phys/shapes/BitSetDiscreteVoxelShape/f_82584_ net/minecraft/world/phys/shapes/BitSetDiscreteVoxelShape/xMax +FD: net/minecraft/world/phys/shapes/BitSetDiscreteVoxelShape/f_82585_ net/minecraft/world/phys/shapes/BitSetDiscreteVoxelShape/yMax +FD: net/minecraft/world/phys/shapes/BitSetDiscreteVoxelShape/f_82586_ net/minecraft/world/phys/shapes/BitSetDiscreteVoxelShape/zMax +FD: net/minecraft/world/phys/shapes/BooleanOp/f_82681_ net/minecraft/world/phys/shapes/BooleanOp/FALSE +FD: net/minecraft/world/phys/shapes/BooleanOp/f_82682_ net/minecraft/world/phys/shapes/BooleanOp/NOT_OR +FD: net/minecraft/world/phys/shapes/BooleanOp/f_82683_ net/minecraft/world/phys/shapes/BooleanOp/ONLY_SECOND +FD: net/minecraft/world/phys/shapes/BooleanOp/f_82684_ net/minecraft/world/phys/shapes/BooleanOp/NOT_FIRST +FD: net/minecraft/world/phys/shapes/BooleanOp/f_82685_ net/minecraft/world/phys/shapes/BooleanOp/ONLY_FIRST +FD: net/minecraft/world/phys/shapes/BooleanOp/f_82686_ net/minecraft/world/phys/shapes/BooleanOp/NOT_SECOND +FD: net/minecraft/world/phys/shapes/BooleanOp/f_82687_ net/minecraft/world/phys/shapes/BooleanOp/NOT_SAME +FD: net/minecraft/world/phys/shapes/BooleanOp/f_82688_ net/minecraft/world/phys/shapes/BooleanOp/NOT_AND +FD: net/minecraft/world/phys/shapes/BooleanOp/f_82689_ net/minecraft/world/phys/shapes/BooleanOp/AND +FD: net/minecraft/world/phys/shapes/BooleanOp/f_82690_ net/minecraft/world/phys/shapes/BooleanOp/SAME +FD: net/minecraft/world/phys/shapes/BooleanOp/f_82691_ net/minecraft/world/phys/shapes/BooleanOp/SECOND +FD: net/minecraft/world/phys/shapes/BooleanOp/f_82692_ net/minecraft/world/phys/shapes/BooleanOp/CAUSES +FD: net/minecraft/world/phys/shapes/BooleanOp/f_82693_ net/minecraft/world/phys/shapes/BooleanOp/FIRST +FD: net/minecraft/world/phys/shapes/BooleanOp/f_82694_ net/minecraft/world/phys/shapes/BooleanOp/CAUSED_BY +FD: net/minecraft/world/phys/shapes/BooleanOp/f_82695_ net/minecraft/world/phys/shapes/BooleanOp/OR +FD: net/minecraft/world/phys/shapes/BooleanOp/f_82696_ net/minecraft/world/phys/shapes/BooleanOp/TRUE +FD: net/minecraft/world/phys/shapes/CubePointRange/f_82758_ net/minecraft/world/phys/shapes/CubePointRange/parts +FD: net/minecraft/world/phys/shapes/DiscreteCubeMerger/f_165991_ net/minecraft/world/phys/shapes/DiscreteCubeMerger/firstDiv +FD: net/minecraft/world/phys/shapes/DiscreteCubeMerger/f_165992_ net/minecraft/world/phys/shapes/DiscreteCubeMerger/secondDiv +FD: net/minecraft/world/phys/shapes/DiscreteCubeMerger/f_82771_ net/minecraft/world/phys/shapes/DiscreteCubeMerger/result +FD: net/minecraft/world/phys/shapes/DiscreteVoxelShape/f_82781_ net/minecraft/world/phys/shapes/DiscreteVoxelShape/xSize +FD: net/minecraft/world/phys/shapes/DiscreteVoxelShape/f_82782_ net/minecraft/world/phys/shapes/DiscreteVoxelShape/ySize +FD: net/minecraft/world/phys/shapes/DiscreteVoxelShape/f_82783_ net/minecraft/world/phys/shapes/DiscreteVoxelShape/zSize +FD: net/minecraft/world/phys/shapes/DiscreteVoxelShape/f_82784_ net/minecraft/world/phys/shapes/DiscreteVoxelShape/AXIS_VALUES +FD: net/minecraft/world/phys/shapes/EntityCollisionContext/f_166002_ net/minecraft/world/phys/shapes/EntityCollisionContext/entity +FD: net/minecraft/world/phys/shapes/EntityCollisionContext/f_82865_ net/minecraft/world/phys/shapes/EntityCollisionContext/EMPTY +FD: net/minecraft/world/phys/shapes/EntityCollisionContext/f_82866_ net/minecraft/world/phys/shapes/EntityCollisionContext/descending +FD: net/minecraft/world/phys/shapes/EntityCollisionContext/f_82867_ net/minecraft/world/phys/shapes/EntityCollisionContext/entityBottom +FD: net/minecraft/world/phys/shapes/EntityCollisionContext/f_82868_ net/minecraft/world/phys/shapes/EntityCollisionContext/heldItem +FD: net/minecraft/world/phys/shapes/EntityCollisionContext/f_82869_ net/minecraft/world/phys/shapes/EntityCollisionContext/canStandOnFluid +FD: net/minecraft/world/phys/shapes/IdenticalMerger/f_82901_ net/minecraft/world/phys/shapes/IdenticalMerger/coords +FD: net/minecraft/world/phys/shapes/IndirectMerger/f_166021_ net/minecraft/world/phys/shapes/IndirectMerger/EMPTY +FD: net/minecraft/world/phys/shapes/IndirectMerger/f_166022_ net/minecraft/world/phys/shapes/IndirectMerger/resultLength +FD: net/minecraft/world/phys/shapes/IndirectMerger/f_82997_ net/minecraft/world/phys/shapes/IndirectMerger/result +FD: net/minecraft/world/phys/shapes/IndirectMerger/f_82998_ net/minecraft/world/phys/shapes/IndirectMerger/firstIndices +FD: net/minecraft/world/phys/shapes/IndirectMerger/f_82999_ net/minecraft/world/phys/shapes/IndirectMerger/secondIndices +FD: net/minecraft/world/phys/shapes/NonOverlappingMerger/f_83008_ net/minecraft/world/phys/shapes/NonOverlappingMerger/lower +FD: net/minecraft/world/phys/shapes/NonOverlappingMerger/f_83009_ net/minecraft/world/phys/shapes/NonOverlappingMerger/upper +FD: net/minecraft/world/phys/shapes/NonOverlappingMerger/f_83010_ net/minecraft/world/phys/shapes/NonOverlappingMerger/swap +FD: net/minecraft/world/phys/shapes/OffsetDoubleList/f_83028_ net/minecraft/world/phys/shapes/OffsetDoubleList/delegate +FD: net/minecraft/world/phys/shapes/OffsetDoubleList/f_83029_ net/minecraft/world/phys/shapes/OffsetDoubleList/offset +FD: net/minecraft/world/phys/shapes/Shapes/f_166025_ net/minecraft/world/phys/shapes/Shapes/EPSILON +FD: net/minecraft/world/phys/shapes/Shapes/f_166026_ net/minecraft/world/phys/shapes/Shapes/BIG_EPSILON +FD: net/minecraft/world/phys/shapes/Shapes/f_83036_ net/minecraft/world/phys/shapes/Shapes/INFINITY +FD: net/minecraft/world/phys/shapes/Shapes/f_83037_ net/minecraft/world/phys/shapes/Shapes/BLOCK +FD: net/minecraft/world/phys/shapes/Shapes/f_83038_ net/minecraft/world/phys/shapes/Shapes/EMPTY +FD: net/minecraft/world/phys/shapes/SliceShape/f_83168_ net/minecraft/world/phys/shapes/SliceShape/delegate +FD: net/minecraft/world/phys/shapes/SliceShape/f_83169_ net/minecraft/world/phys/shapes/SliceShape/axis +FD: net/minecraft/world/phys/shapes/SliceShape/f_83170_ net/minecraft/world/phys/shapes/SliceShape/SLICE_COORDS +FD: net/minecraft/world/phys/shapes/SubShape/f_83182_ net/minecraft/world/phys/shapes/SubShape/parent +FD: net/minecraft/world/phys/shapes/SubShape/f_83183_ net/minecraft/world/phys/shapes/SubShape/startX +FD: net/minecraft/world/phys/shapes/SubShape/f_83184_ net/minecraft/world/phys/shapes/SubShape/startY +FD: net/minecraft/world/phys/shapes/SubShape/f_83185_ net/minecraft/world/phys/shapes/SubShape/startZ +FD: net/minecraft/world/phys/shapes/SubShape/f_83186_ net/minecraft/world/phys/shapes/SubShape/endX +FD: net/minecraft/world/phys/shapes/SubShape/f_83187_ net/minecraft/world/phys/shapes/SubShape/endY +FD: net/minecraft/world/phys/shapes/SubShape/f_83188_ net/minecraft/world/phys/shapes/SubShape/endZ +FD: net/minecraft/world/phys/shapes/VoxelShape/f_83211_ net/minecraft/world/phys/shapes/VoxelShape/shape +FD: net/minecraft/world/phys/shapes/VoxelShape/f_83212_ net/minecraft/world/phys/shapes/VoxelShape/faces +FD: net/minecraft/world/scores/Objective/f_83301_ net/minecraft/world/scores/Objective/scoreboard +FD: net/minecraft/world/scores/Objective/f_83302_ net/minecraft/world/scores/Objective/name +FD: net/minecraft/world/scores/Objective/f_83303_ net/minecraft/world/scores/Objective/criteria +FD: net/minecraft/world/scores/Objective/f_83304_ net/minecraft/world/scores/Objective/displayName +FD: net/minecraft/world/scores/Objective/f_83305_ net/minecraft/world/scores/Objective/formattedDisplayName +FD: net/minecraft/world/scores/Objective/f_83306_ net/minecraft/world/scores/Objective/renderType +FD: net/minecraft/world/scores/PlayerTeam/f_166084_ net/minecraft/world/scores/PlayerTeam/BIT_FRIENDLY_FIRE +FD: net/minecraft/world/scores/PlayerTeam/f_166085_ net/minecraft/world/scores/PlayerTeam/BIT_SEE_INVISIBLES +FD: net/minecraft/world/scores/PlayerTeam/f_83326_ net/minecraft/world/scores/PlayerTeam/scoreboard +FD: net/minecraft/world/scores/PlayerTeam/f_83327_ net/minecraft/world/scores/PlayerTeam/name +FD: net/minecraft/world/scores/PlayerTeam/f_83328_ net/minecraft/world/scores/PlayerTeam/players +FD: net/minecraft/world/scores/PlayerTeam/f_83329_ net/minecraft/world/scores/PlayerTeam/displayName +FD: net/minecraft/world/scores/PlayerTeam/f_83330_ net/minecraft/world/scores/PlayerTeam/playerPrefix +FD: net/minecraft/world/scores/PlayerTeam/f_83331_ net/minecraft/world/scores/PlayerTeam/playerSuffix +FD: net/minecraft/world/scores/PlayerTeam/f_83332_ net/minecraft/world/scores/PlayerTeam/allowFriendlyFire +FD: net/minecraft/world/scores/PlayerTeam/f_83333_ net/minecraft/world/scores/PlayerTeam/seeFriendlyInvisibles +FD: net/minecraft/world/scores/PlayerTeam/f_83334_ net/minecraft/world/scores/PlayerTeam/nameTagVisibility +FD: net/minecraft/world/scores/PlayerTeam/f_83335_ net/minecraft/world/scores/PlayerTeam/deathMessageVisibility +FD: net/minecraft/world/scores/PlayerTeam/f_83336_ net/minecraft/world/scores/PlayerTeam/color +FD: net/minecraft/world/scores/PlayerTeam/f_83337_ net/minecraft/world/scores/PlayerTeam/collisionRule +FD: net/minecraft/world/scores/PlayerTeam/f_83338_ net/minecraft/world/scores/PlayerTeam/displayNameStyle +FD: net/minecraft/world/scores/Score/f_83380_ net/minecraft/world/scores/Score/SCORE_COMPARATOR +FD: net/minecraft/world/scores/Score/f_83381_ net/minecraft/world/scores/Score/scoreboard +FD: net/minecraft/world/scores/Score/f_83382_ net/minecraft/world/scores/Score/objective +FD: net/minecraft/world/scores/Score/f_83383_ net/minecraft/world/scores/Score/owner +FD: net/minecraft/world/scores/Score/f_83384_ net/minecraft/world/scores/Score/count +FD: net/minecraft/world/scores/Score/f_83385_ net/minecraft/world/scores/Score/locked +FD: net/minecraft/world/scores/Score/f_83386_ net/minecraft/world/scores/Score/forceUpdate +FD: net/minecraft/world/scores/Scoreboard/f_166087_ net/minecraft/world/scores/Scoreboard/DISPLAY_SLOT_LIST +FD: net/minecraft/world/scores/Scoreboard/f_166088_ net/minecraft/world/scores/Scoreboard/DISPLAY_SLOT_SIDEBAR +FD: net/minecraft/world/scores/Scoreboard/f_166089_ net/minecraft/world/scores/Scoreboard/DISPLAY_SLOT_BELOW_NAME +FD: net/minecraft/world/scores/Scoreboard/f_166090_ net/minecraft/world/scores/Scoreboard/DISPLAY_SLOT_TEAMS_SIDEBAR_START +FD: net/minecraft/world/scores/Scoreboard/f_166091_ net/minecraft/world/scores/Scoreboard/DISPLAY_SLOT_TEAMS_SIDEBAR_END +FD: net/minecraft/world/scores/Scoreboard/f_166092_ net/minecraft/world/scores/Scoreboard/DISPLAY_SLOTS +FD: net/minecraft/world/scores/Scoreboard/f_199933_ net/minecraft/world/scores/Scoreboard/LOGGER +FD: net/minecraft/world/scores/Scoreboard/f_83408_ net/minecraft/world/scores/Scoreboard/objectivesByName +FD: net/minecraft/world/scores/Scoreboard/f_83409_ net/minecraft/world/scores/Scoreboard/objectivesByCriteria +FD: net/minecraft/world/scores/Scoreboard/f_83410_ net/minecraft/world/scores/Scoreboard/playerScores +FD: net/minecraft/world/scores/Scoreboard/f_83411_ net/minecraft/world/scores/Scoreboard/displayObjectives +FD: net/minecraft/world/scores/Scoreboard/f_83412_ net/minecraft/world/scores/Scoreboard/teamsByName +FD: net/minecraft/world/scores/Scoreboard/f_83413_ net/minecraft/world/scores/Scoreboard/teamsByPlayer +FD: net/minecraft/world/scores/Scoreboard/f_83414_ net/minecraft/world/scores/Scoreboard/displaySlotNames +FD: net/minecraft/world/scores/ScoreboardSaveData/f_166099_ net/minecraft/world/scores/ScoreboardSaveData/FILE_ID +FD: net/minecraft/world/scores/ScoreboardSaveData/f_83509_ net/minecraft/world/scores/ScoreboardSaveData/scoreboard +FD: net/minecraft/world/scores/Team$CollisionRule/$VALUES net/minecraft/world/scores/Team$CollisionRule/$VALUES +FD: net/minecraft/world/scores/Team$CollisionRule/ALWAYS net/minecraft/world/scores/Team$CollisionRule/ALWAYS +FD: net/minecraft/world/scores/Team$CollisionRule/NEVER net/minecraft/world/scores/Team$CollisionRule/NEVER +FD: net/minecraft/world/scores/Team$CollisionRule/PUSH_OTHER_TEAMS net/minecraft/world/scores/Team$CollisionRule/PUSH_OTHER_TEAMS +FD: net/minecraft/world/scores/Team$CollisionRule/PUSH_OWN_TEAM net/minecraft/world/scores/Team$CollisionRule/PUSH_OWN_TEAM +FD: net/minecraft/world/scores/Team$CollisionRule/f_83543_ net/minecraft/world/scores/Team$CollisionRule/name +FD: net/minecraft/world/scores/Team$CollisionRule/f_83544_ net/minecraft/world/scores/Team$CollisionRule/id +FD: net/minecraft/world/scores/Team$CollisionRule/f_83545_ net/minecraft/world/scores/Team$CollisionRule/BY_NAME +FD: net/minecraft/world/scores/Team$Visibility/$VALUES net/minecraft/world/scores/Team$Visibility/$VALUES +FD: net/minecraft/world/scores/Team$Visibility/ALWAYS net/minecraft/world/scores/Team$Visibility/ALWAYS +FD: net/minecraft/world/scores/Team$Visibility/HIDE_FOR_OTHER_TEAMS net/minecraft/world/scores/Team$Visibility/HIDE_FOR_OTHER_TEAMS +FD: net/minecraft/world/scores/Team$Visibility/HIDE_FOR_OWN_TEAM net/minecraft/world/scores/Team$Visibility/HIDE_FOR_OWN_TEAM +FD: net/minecraft/world/scores/Team$Visibility/NEVER net/minecraft/world/scores/Team$Visibility/NEVER +FD: net/minecraft/world/scores/Team$Visibility/f_83567_ net/minecraft/world/scores/Team$Visibility/name +FD: net/minecraft/world/scores/Team$Visibility/f_83568_ net/minecraft/world/scores/Team$Visibility/id +FD: net/minecraft/world/scores/Team$Visibility/f_83569_ net/minecraft/world/scores/Team$Visibility/BY_NAME +FD: net/minecraft/world/scores/criteria/ObjectiveCriteria/f_166107_ net/minecraft/world/scores/criteria/ObjectiveCriteria/CUSTOM_CRITERIA +FD: net/minecraft/world/scores/criteria/ObjectiveCriteria/f_166108_ net/minecraft/world/scores/criteria/ObjectiveCriteria/CRITERIA_CACHE +FD: net/minecraft/world/scores/criteria/ObjectiveCriteria/f_83588_ net/minecraft/world/scores/criteria/ObjectiveCriteria/DUMMY +FD: net/minecraft/world/scores/criteria/ObjectiveCriteria/f_83589_ net/minecraft/world/scores/criteria/ObjectiveCriteria/TRIGGER +FD: net/minecraft/world/scores/criteria/ObjectiveCriteria/f_83590_ net/minecraft/world/scores/criteria/ObjectiveCriteria/DEATH_COUNT +FD: net/minecraft/world/scores/criteria/ObjectiveCriteria/f_83591_ net/minecraft/world/scores/criteria/ObjectiveCriteria/KILL_COUNT_PLAYERS +FD: net/minecraft/world/scores/criteria/ObjectiveCriteria/f_83592_ net/minecraft/world/scores/criteria/ObjectiveCriteria/KILL_COUNT_ALL +FD: net/minecraft/world/scores/criteria/ObjectiveCriteria/f_83593_ net/minecraft/world/scores/criteria/ObjectiveCriteria/HEALTH +FD: net/minecraft/world/scores/criteria/ObjectiveCriteria/f_83594_ net/minecraft/world/scores/criteria/ObjectiveCriteria/FOOD +FD: net/minecraft/world/scores/criteria/ObjectiveCriteria/f_83595_ net/minecraft/world/scores/criteria/ObjectiveCriteria/AIR +FD: net/minecraft/world/scores/criteria/ObjectiveCriteria/f_83596_ net/minecraft/world/scores/criteria/ObjectiveCriteria/ARMOR +FD: net/minecraft/world/scores/criteria/ObjectiveCriteria/f_83597_ net/minecraft/world/scores/criteria/ObjectiveCriteria/EXPERIENCE +FD: net/minecraft/world/scores/criteria/ObjectiveCriteria/f_83598_ net/minecraft/world/scores/criteria/ObjectiveCriteria/LEVEL +FD: net/minecraft/world/scores/criteria/ObjectiveCriteria/f_83599_ net/minecraft/world/scores/criteria/ObjectiveCriteria/TEAM_KILL +FD: net/minecraft/world/scores/criteria/ObjectiveCriteria/f_83600_ net/minecraft/world/scores/criteria/ObjectiveCriteria/KILLED_BY_TEAM +FD: net/minecraft/world/scores/criteria/ObjectiveCriteria/f_83601_ net/minecraft/world/scores/criteria/ObjectiveCriteria/name +FD: net/minecraft/world/scores/criteria/ObjectiveCriteria/f_83602_ net/minecraft/world/scores/criteria/ObjectiveCriteria/readOnly +FD: net/minecraft/world/scores/criteria/ObjectiveCriteria/f_83603_ net/minecraft/world/scores/criteria/ObjectiveCriteria/renderType +FD: net/minecraft/world/scores/criteria/ObjectiveCriteria$RenderType/$VALUES net/minecraft/world/scores/criteria/ObjectiveCriteria$RenderType/$VALUES +FD: net/minecraft/world/scores/criteria/ObjectiveCriteria$RenderType/HEARTS net/minecraft/world/scores/criteria/ObjectiveCriteria$RenderType/HEARTS +FD: net/minecraft/world/scores/criteria/ObjectiveCriteria$RenderType/INTEGER net/minecraft/world/scores/criteria/ObjectiveCriteria$RenderType/INTEGER +FD: net/minecraft/world/scores/criteria/ObjectiveCriteria$RenderType/f_262724_ net/minecraft/world/scores/criteria/ObjectiveCriteria$RenderType/CODEC +FD: net/minecraft/world/scores/criteria/ObjectiveCriteria$RenderType/f_83625_ net/minecraft/world/scores/criteria/ObjectiveCriteria$RenderType/id +FD: net/minecraft/world/ticks/BlackholeTickAccess/f_193140_ net/minecraft/world/ticks/BlackholeTickAccess/CONTAINER_BLACKHOLE +FD: net/minecraft/world/ticks/BlackholeTickAccess/f_193141_ net/minecraft/world/ticks/BlackholeTickAccess/LEVEL_BLACKHOLE +FD: net/minecraft/world/ticks/LevelChunkTicks/f_193163_ net/minecraft/world/ticks/LevelChunkTicks/tickQueue +FD: net/minecraft/world/ticks/LevelChunkTicks/f_193164_ net/minecraft/world/ticks/LevelChunkTicks/pendingTicks +FD: net/minecraft/world/ticks/LevelChunkTicks/f_193165_ net/minecraft/world/ticks/LevelChunkTicks/ticksPerPosition +FD: net/minecraft/world/ticks/LevelChunkTicks/f_193166_ net/minecraft/world/ticks/LevelChunkTicks/onTickAdded +FD: net/minecraft/world/ticks/LevelTicks/f_193199_ net/minecraft/world/ticks/LevelTicks/CONTAINER_DRAIN_ORDER +FD: net/minecraft/world/ticks/LevelTicks/f_193200_ net/minecraft/world/ticks/LevelTicks/tickCheck +FD: net/minecraft/world/ticks/LevelTicks/f_193201_ net/minecraft/world/ticks/LevelTicks/profiler +FD: net/minecraft/world/ticks/LevelTicks/f_193202_ net/minecraft/world/ticks/LevelTicks/allContainers +FD: net/minecraft/world/ticks/LevelTicks/f_193203_ net/minecraft/world/ticks/LevelTicks/nextTickForContainer +FD: net/minecraft/world/ticks/LevelTicks/f_193204_ net/minecraft/world/ticks/LevelTicks/containersToTick +FD: net/minecraft/world/ticks/LevelTicks/f_193205_ net/minecraft/world/ticks/LevelTicks/toRunThisTick +FD: net/minecraft/world/ticks/LevelTicks/f_193206_ net/minecraft/world/ticks/LevelTicks/alreadyRunThisTick +FD: net/minecraft/world/ticks/LevelTicks/f_193207_ net/minecraft/world/ticks/LevelTicks/toRunThisTickSet +FD: net/minecraft/world/ticks/LevelTicks/f_193208_ net/minecraft/world/ticks/LevelTicks/chunkScheduleUpdater +FD: net/minecraft/world/ticks/ProtoChunkTicks/f_193291_ net/minecraft/world/ticks/ProtoChunkTicks/ticks +FD: net/minecraft/world/ticks/ProtoChunkTicks/f_193292_ net/minecraft/world/ticks/ProtoChunkTicks/ticksPerPosition +FD: net/minecraft/world/ticks/SavedTick/f_193310_ net/minecraft/world/ticks/SavedTick/UNIQUE_TICK_HASH +FD: net/minecraft/world/ticks/SavedTick/f_193311_ net/minecraft/world/ticks/SavedTick/type +FD: net/minecraft/world/ticks/SavedTick/f_193312_ net/minecraft/world/ticks/SavedTick/pos +FD: net/minecraft/world/ticks/SavedTick/f_193313_ net/minecraft/world/ticks/SavedTick/delay +FD: net/minecraft/world/ticks/SavedTick/f_193314_ net/minecraft/world/ticks/SavedTick/priority +FD: net/minecraft/world/ticks/SavedTick/f_193315_ net/minecraft/world/ticks/SavedTick/TAG_ID +FD: net/minecraft/world/ticks/SavedTick/f_193316_ net/minecraft/world/ticks/SavedTick/TAG_X +FD: net/minecraft/world/ticks/SavedTick/f_193317_ net/minecraft/world/ticks/SavedTick/TAG_Y +FD: net/minecraft/world/ticks/SavedTick/f_193318_ net/minecraft/world/ticks/SavedTick/TAG_Z +FD: net/minecraft/world/ticks/SavedTick/f_193319_ net/minecraft/world/ticks/SavedTick/TAG_DELAY +FD: net/minecraft/world/ticks/SavedTick/f_193320_ net/minecraft/world/ticks/SavedTick/TAG_PRIORITY +FD: net/minecraft/world/ticks/ScheduledTick/f_193373_ net/minecraft/world/ticks/ScheduledTick/DRAIN_ORDER +FD: net/minecraft/world/ticks/ScheduledTick/f_193374_ net/minecraft/world/ticks/ScheduledTick/INTRA_TICK_DRAIN_ORDER +FD: net/minecraft/world/ticks/ScheduledTick/f_193375_ net/minecraft/world/ticks/ScheduledTick/UNIQUE_TICK_HASH +FD: net/minecraft/world/ticks/ScheduledTick/f_193376_ net/minecraft/world/ticks/ScheduledTick/type +FD: net/minecraft/world/ticks/ScheduledTick/f_193377_ net/minecraft/world/ticks/ScheduledTick/pos +FD: net/minecraft/world/ticks/ScheduledTick/f_193378_ net/minecraft/world/ticks/ScheduledTick/triggerTick +FD: net/minecraft/world/ticks/ScheduledTick/f_193379_ net/minecraft/world/ticks/ScheduledTick/priority +FD: net/minecraft/world/ticks/ScheduledTick/f_193380_ net/minecraft/world/ticks/ScheduledTick/subTickOrder +FD: net/minecraft/world/ticks/TickPriority/$VALUES net/minecraft/world/ticks/TickPriority/$VALUES +FD: net/minecraft/world/ticks/TickPriority/EXTREMELY_HIGH net/minecraft/world/ticks/TickPriority/EXTREMELY_HIGH +FD: net/minecraft/world/ticks/TickPriority/EXTREMELY_LOW net/minecraft/world/ticks/TickPriority/EXTREMELY_LOW +FD: net/minecraft/world/ticks/TickPriority/HIGH net/minecraft/world/ticks/TickPriority/HIGH +FD: net/minecraft/world/ticks/TickPriority/LOW net/minecraft/world/ticks/TickPriority/LOW +FD: net/minecraft/world/ticks/TickPriority/NORMAL net/minecraft/world/ticks/TickPriority/NORMAL +FD: net/minecraft/world/ticks/TickPriority/VERY_HIGH net/minecraft/world/ticks/TickPriority/VERY_HIGH +FD: net/minecraft/world/ticks/TickPriority/VERY_LOW net/minecraft/world/ticks/TickPriority/VERY_LOW +FD: net/minecraft/world/ticks/TickPriority/f_193438_ net/minecraft/world/ticks/TickPriority/value +FD: net/minecraft/world/ticks/WorldGenTickAccess/f_193452_ net/minecraft/world/ticks/WorldGenTickAccess/containerGetter +MD: com/mojang/blaze3d/Blaze3D/ ()V com/mojang/blaze3d/Blaze3D/ ()V +MD: com/mojang/blaze3d/Blaze3D/m_166118_ (Lcom/mojang/blaze3d/pipeline/RenderPipeline;F)V com/mojang/blaze3d/Blaze3D/process (Lcom/mojang/blaze3d/pipeline/RenderPipeline;F)V +MD: com/mojang/blaze3d/Blaze3D/m_166121_ (Lcom/mojang/blaze3d/pipeline/RenderPipeline;F)V com/mojang/blaze3d/Blaze3D/render (Lcom/mojang/blaze3d/pipeline/RenderPipeline;F)V +MD: com/mojang/blaze3d/Blaze3D/m_83639_ ()V com/mojang/blaze3d/Blaze3D/youJustLostTheGame ()V +MD: com/mojang/blaze3d/Blaze3D/m_83640_ ()D com/mojang/blaze3d/Blaze3D/getTime ()D +MD: com/mojang/blaze3d/audio/Channel/ ()V com/mojang/blaze3d/audio/Channel/ ()V +MD: com/mojang/blaze3d/audio/Channel/ (I)V com/mojang/blaze3d/audio/Channel/ (I)V +MD: com/mojang/blaze3d/audio/Channel/m_166126_ ()Z com/mojang/blaze3d/audio/Channel/playing ()Z +MD: com/mojang/blaze3d/audio/Channel/m_83649_ ()Lcom/mojang/blaze3d/audio/Channel; com/mojang/blaze3d/audio/Channel/create ()Lcom/mojang/blaze3d/audio/Channel; +MD: com/mojang/blaze3d/audio/Channel/m_83650_ (F)V com/mojang/blaze3d/audio/Channel/setPitch (F)V +MD: com/mojang/blaze3d/audio/Channel/m_83652_ (I)V com/mojang/blaze3d/audio/Channel/pumpBuffers (I)V +MD: com/mojang/blaze3d/audio/Channel/m_83654_ (Lnet/minecraft/world/phys/Vec3;)V com/mojang/blaze3d/audio/Channel/setSelfPosition (Lnet/minecraft/world/phys/Vec3;)V +MD: com/mojang/blaze3d/audio/Channel/m_83656_ (Lcom/mojang/blaze3d/audio/SoundBuffer;)V com/mojang/blaze3d/audio/Channel/attachStaticBuffer (Lcom/mojang/blaze3d/audio/SoundBuffer;)V +MD: com/mojang/blaze3d/audio/Channel/m_83658_ (Lnet/minecraft/client/sounds/AudioStream;)V com/mojang/blaze3d/audio/Channel/attachBufferStream (Lnet/minecraft/client/sounds/AudioStream;)V +MD: com/mojang/blaze3d/audio/Channel/m_83660_ (Ljavax/sound/sampled/AudioFormat;I)I com/mojang/blaze3d/audio/Channel/calculateBufferSize (Ljavax/sound/sampled/AudioFormat;I)I +MD: com/mojang/blaze3d/audio/Channel/m_83663_ (Z)V com/mojang/blaze3d/audio/Channel/setLooping (Z)V +MD: com/mojang/blaze3d/audio/Channel/m_83665_ ()V com/mojang/blaze3d/audio/Channel/destroy ()V +MD: com/mojang/blaze3d/audio/Channel/m_83666_ (F)V com/mojang/blaze3d/audio/Channel/setVolume (F)V +MD: com/mojang/blaze3d/audio/Channel/m_83668_ (I)V com/mojang/blaze3d/audio/Channel/lambda$pumpBuffers$1 (I)V +MD: com/mojang/blaze3d/audio/Channel/m_83670_ (Z)V com/mojang/blaze3d/audio/Channel/setRelative (Z)V +MD: com/mojang/blaze3d/audio/Channel/m_83672_ ()V com/mojang/blaze3d/audio/Channel/play ()V +MD: com/mojang/blaze3d/audio/Channel/m_83673_ (F)V com/mojang/blaze3d/audio/Channel/linearAttenuation (F)V +MD: com/mojang/blaze3d/audio/Channel/m_83675_ (I)V com/mojang/blaze3d/audio/Channel/lambda$attachStaticBuffer$0 (I)V +MD: com/mojang/blaze3d/audio/Channel/m_83677_ ()V com/mojang/blaze3d/audio/Channel/pause ()V +MD: com/mojang/blaze3d/audio/Channel/m_83678_ ()V com/mojang/blaze3d/audio/Channel/unpause ()V +MD: com/mojang/blaze3d/audio/Channel/m_83679_ ()V com/mojang/blaze3d/audio/Channel/stop ()V +MD: com/mojang/blaze3d/audio/Channel/m_83680_ ()Z com/mojang/blaze3d/audio/Channel/stopped ()Z +MD: com/mojang/blaze3d/audio/Channel/m_83681_ ()V com/mojang/blaze3d/audio/Channel/disableAttenuation ()V +MD: com/mojang/blaze3d/audio/Channel/m_83682_ ()V com/mojang/blaze3d/audio/Channel/updateStream ()V +MD: com/mojang/blaze3d/audio/Channel/m_83683_ ()I com/mojang/blaze3d/audio/Channel/getState ()I +MD: com/mojang/blaze3d/audio/Channel/m_83684_ ()I com/mojang/blaze3d/audio/Channel/removeProcessedBuffers ()I +MD: com/mojang/blaze3d/audio/Library/ ()V com/mojang/blaze3d/audio/Library/ ()V +MD: com/mojang/blaze3d/audio/Library/ ()V com/mojang/blaze3d/audio/Library/ ()V +MD: com/mojang/blaze3d/audio/Library/m_193468_ ()Ljava/lang/String; com/mojang/blaze3d/audio/Library/getDefaultDeviceName ()Ljava/lang/String; +MD: com/mojang/blaze3d/audio/Library/m_193471_ ()Ljava/lang/String; com/mojang/blaze3d/audio/Library/getCurrentDeviceName ()Ljava/lang/String; +MD: com/mojang/blaze3d/audio/Library/m_193472_ (Ljava/lang/String;)J com/mojang/blaze3d/audio/Library/openDeviceOrFallback (Ljava/lang/String;)J +MD: com/mojang/blaze3d/audio/Library/m_193474_ ()Z com/mojang/blaze3d/audio/Library/hasDefaultDeviceChanged ()Z +MD: com/mojang/blaze3d/audio/Library/m_193475_ (Ljava/lang/String;)Ljava/util/OptionalLong; com/mojang/blaze3d/audio/Library/tryOpenDevice (Ljava/lang/String;)Ljava/util/OptionalLong; +MD: com/mojang/blaze3d/audio/Library/m_193477_ ()Ljava/util/List; com/mojang/blaze3d/audio/Library/getAvailableSoundDevices ()Ljava/util/List; +MD: com/mojang/blaze3d/audio/Library/m_193478_ ()Z com/mojang/blaze3d/audio/Library/isCurrentDeviceDisconnected ()Z +MD: com/mojang/blaze3d/audio/Library/m_231084_ (Ljava/lang/String;Z)V com/mojang/blaze3d/audio/Library/init (Ljava/lang/String;Z)V +MD: com/mojang/blaze3d/audio/Library/m_241879_ (Z)V com/mojang/blaze3d/audio/Library/setHrtf (Z)V +MD: com/mojang/blaze3d/audio/Library/m_83695_ (Lcom/mojang/blaze3d/audio/Channel;)V com/mojang/blaze3d/audio/Library/releaseChannel (Lcom/mojang/blaze3d/audio/Channel;)V +MD: com/mojang/blaze3d/audio/Library/m_83697_ (Lcom/mojang/blaze3d/audio/Library$Pool;)Lcom/mojang/blaze3d/audio/Channel; com/mojang/blaze3d/audio/Library/acquireChannel (Lcom/mojang/blaze3d/audio/Library$Pool;)Lcom/mojang/blaze3d/audio/Channel; +MD: com/mojang/blaze3d/audio/Library/m_83699_ ()V com/mojang/blaze3d/audio/Library/cleanup ()V +MD: com/mojang/blaze3d/audio/Library/m_83700_ ()Lcom/mojang/blaze3d/audio/Listener; com/mojang/blaze3d/audio/Library/getListener ()Lcom/mojang/blaze3d/audio/Listener; +MD: com/mojang/blaze3d/audio/Library/m_83701_ ()Ljava/lang/String; com/mojang/blaze3d/audio/Library/getDebugString ()Ljava/lang/String; +MD: com/mojang/blaze3d/audio/Library/m_83703_ ()I com/mojang/blaze3d/audio/Library/getChannelCount ()I +MD: com/mojang/blaze3d/audio/Library$1/ ()V com/mojang/blaze3d/audio/Library$1/ ()V +MD: com/mojang/blaze3d/audio/Library$1/m_5574_ ()Lcom/mojang/blaze3d/audio/Channel; com/mojang/blaze3d/audio/Library$1/acquire ()Lcom/mojang/blaze3d/audio/Channel; +MD: com/mojang/blaze3d/audio/Library$1/m_5658_ (Lcom/mojang/blaze3d/audio/Channel;)Z com/mojang/blaze3d/audio/Library$1/release (Lcom/mojang/blaze3d/audio/Channel;)Z +MD: com/mojang/blaze3d/audio/Library$1/m_6471_ ()V com/mojang/blaze3d/audio/Library$1/cleanup ()V +MD: com/mojang/blaze3d/audio/Library$1/m_6492_ ()I com/mojang/blaze3d/audio/Library$1/getMaxCount ()I +MD: com/mojang/blaze3d/audio/Library$1/m_6500_ ()I com/mojang/blaze3d/audio/Library$1/getUsedCount ()I +MD: com/mojang/blaze3d/audio/Library$ChannelPool/m_5574_ ()Lcom/mojang/blaze3d/audio/Channel; com/mojang/blaze3d/audio/Library$ChannelPool/acquire ()Lcom/mojang/blaze3d/audio/Channel; +MD: com/mojang/blaze3d/audio/Library$ChannelPool/m_5658_ (Lcom/mojang/blaze3d/audio/Channel;)Z com/mojang/blaze3d/audio/Library$ChannelPool/release (Lcom/mojang/blaze3d/audio/Channel;)Z +MD: com/mojang/blaze3d/audio/Library$ChannelPool/m_6471_ ()V com/mojang/blaze3d/audio/Library$ChannelPool/cleanup ()V +MD: com/mojang/blaze3d/audio/Library$ChannelPool/m_6492_ ()I com/mojang/blaze3d/audio/Library$ChannelPool/getMaxCount ()I +MD: com/mojang/blaze3d/audio/Library$ChannelPool/m_6500_ ()I com/mojang/blaze3d/audio/Library$ChannelPool/getUsedCount ()I +MD: com/mojang/blaze3d/audio/Library$CountingChannelPool/ (I)V com/mojang/blaze3d/audio/Library$CountingChannelPool/ (I)V +MD: com/mojang/blaze3d/audio/Library$CountingChannelPool/m_5574_ ()Lcom/mojang/blaze3d/audio/Channel; com/mojang/blaze3d/audio/Library$CountingChannelPool/acquire ()Lcom/mojang/blaze3d/audio/Channel; +MD: com/mojang/blaze3d/audio/Library$CountingChannelPool/m_5658_ (Lcom/mojang/blaze3d/audio/Channel;)Z com/mojang/blaze3d/audio/Library$CountingChannelPool/release (Lcom/mojang/blaze3d/audio/Channel;)Z +MD: com/mojang/blaze3d/audio/Library$CountingChannelPool/m_6471_ ()V com/mojang/blaze3d/audio/Library$CountingChannelPool/cleanup ()V +MD: com/mojang/blaze3d/audio/Library$CountingChannelPool/m_6492_ ()I com/mojang/blaze3d/audio/Library$CountingChannelPool/getMaxCount ()I +MD: com/mojang/blaze3d/audio/Library$CountingChannelPool/m_6500_ ()I com/mojang/blaze3d/audio/Library$CountingChannelPool/getUsedCount ()I +MD: com/mojang/blaze3d/audio/Library$Pool/ ()V com/mojang/blaze3d/audio/Library$Pool/ ()V +MD: com/mojang/blaze3d/audio/Library$Pool/ (Ljava/lang/String;I)V com/mojang/blaze3d/audio/Library$Pool/ (Ljava/lang/String;I)V +MD: com/mojang/blaze3d/audio/Library$Pool/m_166129_ ()[Lcom/mojang/blaze3d/audio/Library$Pool; com/mojang/blaze3d/audio/Library$Pool/$values ()[Lcom/mojang/blaze3d/audio/Library$Pool; +MD: com/mojang/blaze3d/audio/Library$Pool/valueOf (Ljava/lang/String;)Lcom/mojang/blaze3d/audio/Library$Pool; com/mojang/blaze3d/audio/Library$Pool/valueOf (Ljava/lang/String;)Lcom/mojang/blaze3d/audio/Library$Pool; +MD: com/mojang/blaze3d/audio/Library$Pool/values ()[Lcom/mojang/blaze3d/audio/Library$Pool; com/mojang/blaze3d/audio/Library$Pool/values ()[Lcom/mojang/blaze3d/audio/Library$Pool; +MD: com/mojang/blaze3d/audio/Listener/ ()V com/mojang/blaze3d/audio/Listener/ ()V +MD: com/mojang/blaze3d/audio/Listener/m_252991_ (Lorg/joml/Vector3f;Lorg/joml/Vector3f;)V com/mojang/blaze3d/audio/Listener/setListenerOrientation (Lorg/joml/Vector3f;Lorg/joml/Vector3f;)V +MD: com/mojang/blaze3d/audio/Listener/m_83736_ ()Lnet/minecraft/world/phys/Vec3; com/mojang/blaze3d/audio/Listener/getListenerPosition ()Lnet/minecraft/world/phys/Vec3; +MD: com/mojang/blaze3d/audio/Listener/m_83737_ (F)V com/mojang/blaze3d/audio/Listener/setGain (F)V +MD: com/mojang/blaze3d/audio/Listener/m_83739_ (Lnet/minecraft/world/phys/Vec3;)V com/mojang/blaze3d/audio/Listener/setListenerPosition (Lnet/minecraft/world/phys/Vec3;)V +MD: com/mojang/blaze3d/audio/Listener/m_83744_ ()F com/mojang/blaze3d/audio/Listener/getGain ()F +MD: com/mojang/blaze3d/audio/Listener/m_83745_ ()V com/mojang/blaze3d/audio/Listener/reset ()V +MD: com/mojang/blaze3d/audio/OggAudioStream/ (Ljava/io/InputStream;)V com/mojang/blaze3d/audio/OggAudioStream/ (Ljava/io/InputStream;)V +MD: com/mojang/blaze3d/audio/OggAudioStream/close ()V com/mojang/blaze3d/audio/OggAudioStream/close ()V +MD: com/mojang/blaze3d/audio/OggAudioStream/m_6206_ ()Ljavax/sound/sampled/AudioFormat; com/mojang/blaze3d/audio/OggAudioStream/getFormat ()Ljavax/sound/sampled/AudioFormat; +MD: com/mojang/blaze3d/audio/OggAudioStream/m_7118_ (I)Ljava/nio/ByteBuffer; com/mojang/blaze3d/audio/OggAudioStream/read (I)Ljava/nio/ByteBuffer; +MD: com/mojang/blaze3d/audio/OggAudioStream/m_83755_ (Lcom/mojang/blaze3d/audio/OggAudioStream$OutputConcat;)Z com/mojang/blaze3d/audio/OggAudioStream/readFrame (Lcom/mojang/blaze3d/audio/OggAudioStream$OutputConcat;)Z +MD: com/mojang/blaze3d/audio/OggAudioStream/m_83757_ (Ljava/nio/FloatBuffer;Lcom/mojang/blaze3d/audio/OggAudioStream$OutputConcat;)V com/mojang/blaze3d/audio/OggAudioStream/convertMono (Ljava/nio/FloatBuffer;Lcom/mojang/blaze3d/audio/OggAudioStream$OutputConcat;)V +MD: com/mojang/blaze3d/audio/OggAudioStream/m_83760_ (Ljava/nio/FloatBuffer;Ljava/nio/FloatBuffer;Lcom/mojang/blaze3d/audio/OggAudioStream$OutputConcat;)V com/mojang/blaze3d/audio/OggAudioStream/convertStereo (Ljava/nio/FloatBuffer;Ljava/nio/FloatBuffer;Lcom/mojang/blaze3d/audio/OggAudioStream$OutputConcat;)V +MD: com/mojang/blaze3d/audio/OggAudioStream/m_83764_ ()Ljava/nio/ByteBuffer; com/mojang/blaze3d/audio/OggAudioStream/readAll ()Ljava/nio/ByteBuffer; +MD: com/mojang/blaze3d/audio/OggAudioStream/m_83765_ ()Z com/mojang/blaze3d/audio/OggAudioStream/refillFromStream ()Z +MD: com/mojang/blaze3d/audio/OggAudioStream/m_83767_ ()V com/mojang/blaze3d/audio/OggAudioStream/forwardBuffer ()V +MD: com/mojang/blaze3d/audio/OggAudioStream$OutputConcat/ (I)V com/mojang/blaze3d/audio/OggAudioStream$OutputConcat/ (I)V +MD: com/mojang/blaze3d/audio/OggAudioStream$OutputConcat/m_83774_ ()Ljava/nio/ByteBuffer; com/mojang/blaze3d/audio/OggAudioStream$OutputConcat/get ()Ljava/nio/ByteBuffer; +MD: com/mojang/blaze3d/audio/OggAudioStream$OutputConcat/m_83775_ (F)V com/mojang/blaze3d/audio/OggAudioStream$OutputConcat/put (F)V +MD: com/mojang/blaze3d/audio/OggAudioStream$OutputConcat/m_83779_ ()V com/mojang/blaze3d/audio/OggAudioStream$OutputConcat/createNewBuffer ()V +MD: com/mojang/blaze3d/audio/OpenAlUtil/ ()V com/mojang/blaze3d/audio/OpenAlUtil/ ()V +MD: com/mojang/blaze3d/audio/OpenAlUtil/ ()V com/mojang/blaze3d/audio/OpenAlUtil/ ()V +MD: com/mojang/blaze3d/audio/OpenAlUtil/m_83782_ (I)Ljava/lang/String; com/mojang/blaze3d/audio/OpenAlUtil/alErrorToString (I)Ljava/lang/String; +MD: com/mojang/blaze3d/audio/OpenAlUtil/m_83784_ (JLjava/lang/String;)Z com/mojang/blaze3d/audio/OpenAlUtil/checkALCError (JLjava/lang/String;)Z +MD: com/mojang/blaze3d/audio/OpenAlUtil/m_83787_ (Ljava/lang/String;)Z com/mojang/blaze3d/audio/OpenAlUtil/checkALError (Ljava/lang/String;)Z +MD: com/mojang/blaze3d/audio/OpenAlUtil/m_83789_ (Ljavax/sound/sampled/AudioFormat;)I com/mojang/blaze3d/audio/OpenAlUtil/audioFormatToOpenAl (Ljavax/sound/sampled/AudioFormat;)I +MD: com/mojang/blaze3d/audio/OpenAlUtil/m_83791_ (I)Ljava/lang/String; com/mojang/blaze3d/audio/OpenAlUtil/alcErrorToString (I)Ljava/lang/String; +MD: com/mojang/blaze3d/audio/SoundBuffer/ (Ljava/nio/ByteBuffer;Ljavax/sound/sampled/AudioFormat;)V com/mojang/blaze3d/audio/SoundBuffer/ (Ljava/nio/ByteBuffer;Ljavax/sound/sampled/AudioFormat;)V +MD: com/mojang/blaze3d/audio/SoundBuffer/m_83800_ ()Ljava/util/OptionalInt; com/mojang/blaze3d/audio/SoundBuffer/getAlBuffer ()Ljava/util/OptionalInt; +MD: com/mojang/blaze3d/audio/SoundBuffer/m_83801_ ()V com/mojang/blaze3d/audio/SoundBuffer/discardAlBuffer ()V +MD: com/mojang/blaze3d/audio/SoundBuffer/m_83802_ ()Ljava/util/OptionalInt; com/mojang/blaze3d/audio/SoundBuffer/releaseAlBuffer ()Ljava/util/OptionalInt; +MD: com/mojang/blaze3d/font/GlyphInfo/m_213604_ (Ljava/util/function/Function;)Lnet/minecraft/client/gui/font/glyphs/BakedGlyph; com/mojang/blaze3d/font/GlyphInfo/bake (Ljava/util/function/Function;)Lnet/minecraft/client/gui/font/glyphs/BakedGlyph; +MD: com/mojang/blaze3d/font/GlyphInfo/m_5619_ ()F com/mojang/blaze3d/font/GlyphInfo/getBoldOffset ()F +MD: com/mojang/blaze3d/font/GlyphInfo/m_5645_ ()F com/mojang/blaze3d/font/GlyphInfo/getShadowOffset ()F +MD: com/mojang/blaze3d/font/GlyphInfo/m_7403_ ()F com/mojang/blaze3d/font/GlyphInfo/getAdvance ()F +MD: com/mojang/blaze3d/font/GlyphInfo/m_83827_ (Z)F com/mojang/blaze3d/font/GlyphInfo/getAdvance (Z)F +MD: com/mojang/blaze3d/font/GlyphInfo$SpaceGlyphInfo/m_213604_ (Ljava/util/function/Function;)Lnet/minecraft/client/gui/font/glyphs/BakedGlyph; com/mojang/blaze3d/font/GlyphInfo$SpaceGlyphInfo/bake (Ljava/util/function/Function;)Lnet/minecraft/client/gui/font/glyphs/BakedGlyph; +MD: com/mojang/blaze3d/font/GlyphProvider/close ()V com/mojang/blaze3d/font/GlyphProvider/close ()V +MD: com/mojang/blaze3d/font/GlyphProvider/m_214022_ (I)Lcom/mojang/blaze3d/font/GlyphInfo; com/mojang/blaze3d/font/GlyphProvider/getGlyph (I)Lcom/mojang/blaze3d/font/GlyphInfo; +MD: com/mojang/blaze3d/font/GlyphProvider/m_6990_ ()Lit/unimi/dsi/fastutil/ints/IntSet; com/mojang/blaze3d/font/GlyphProvider/getSupportedGlyphs ()Lit/unimi/dsi/fastutil/ints/IntSet; +MD: com/mojang/blaze3d/font/SheetGlyphInfo/m_213958_ (II)V com/mojang/blaze3d/font/SheetGlyphInfo/upload (II)V +MD: com/mojang/blaze3d/font/SheetGlyphInfo/m_213961_ ()I com/mojang/blaze3d/font/SheetGlyphInfo/getPixelHeight ()I +MD: com/mojang/blaze3d/font/SheetGlyphInfo/m_213962_ ()I com/mojang/blaze3d/font/SheetGlyphInfo/getPixelWidth ()I +MD: com/mojang/blaze3d/font/SheetGlyphInfo/m_213963_ ()F com/mojang/blaze3d/font/SheetGlyphInfo/getOversample ()F +MD: com/mojang/blaze3d/font/SheetGlyphInfo/m_213964_ ()F com/mojang/blaze3d/font/SheetGlyphInfo/getBearingY ()F +MD: com/mojang/blaze3d/font/SheetGlyphInfo/m_213965_ ()Z com/mojang/blaze3d/font/SheetGlyphInfo/isColored ()Z +MD: com/mojang/blaze3d/font/SheetGlyphInfo/m_213966_ ()F com/mojang/blaze3d/font/SheetGlyphInfo/getBearingX ()F +MD: com/mojang/blaze3d/font/SheetGlyphInfo/m_231094_ ()F com/mojang/blaze3d/font/SheetGlyphInfo/getLeft ()F +MD: com/mojang/blaze3d/font/SheetGlyphInfo/m_231095_ ()F com/mojang/blaze3d/font/SheetGlyphInfo/getRight ()F +MD: com/mojang/blaze3d/font/SheetGlyphInfo/m_231096_ ()F com/mojang/blaze3d/font/SheetGlyphInfo/getUp ()F +MD: com/mojang/blaze3d/font/SheetGlyphInfo/m_231097_ ()F com/mojang/blaze3d/font/SheetGlyphInfo/getDown ()F +MD: com/mojang/blaze3d/font/SpaceProvider/ (Ljava/util/Map;)V com/mojang/blaze3d/font/SpaceProvider/ (Ljava/util/Map;)V +MD: com/mojang/blaze3d/font/SpaceProvider/m_214022_ (I)Lcom/mojang/blaze3d/font/GlyphInfo; com/mojang/blaze3d/font/SpaceProvider/getGlyph (I)Lcom/mojang/blaze3d/font/GlyphInfo; +MD: com/mojang/blaze3d/font/SpaceProvider/m_285663_ (Ljava/lang/Integer;Ljava/lang/Float;)V com/mojang/blaze3d/font/SpaceProvider/lambda$new$1 (Ljava/lang/Integer;Ljava/lang/Float;)V +MD: com/mojang/blaze3d/font/SpaceProvider/m_285664_ (Ljava/lang/Float;)F com/mojang/blaze3d/font/SpaceProvider/lambda$new$0 (Ljava/lang/Float;)F +MD: com/mojang/blaze3d/font/SpaceProvider/m_6990_ ()Lit/unimi/dsi/fastutil/ints/IntSet; com/mojang/blaze3d/font/SpaceProvider/getSupportedGlyphs ()Lit/unimi/dsi/fastutil/ints/IntSet; +MD: com/mojang/blaze3d/font/SpaceProvider$Definition/ ()V com/mojang/blaze3d/font/SpaceProvider$Definition/ ()V +MD: com/mojang/blaze3d/font/SpaceProvider$Definition/ (Ljava/util/Map;)V com/mojang/blaze3d/font/SpaceProvider$Definition/ (Ljava/util/Map;)V +MD: com/mojang/blaze3d/font/SpaceProvider$Definition/equals (Ljava/lang/Object;)Z com/mojang/blaze3d/font/SpaceProvider$Definition/equals (Ljava/lang/Object;)Z +MD: com/mojang/blaze3d/font/SpaceProvider$Definition/f_285580_ ()Ljava/util/Map; com/mojang/blaze3d/font/SpaceProvider$Definition/advances ()Ljava/util/Map; +MD: com/mojang/blaze3d/font/SpaceProvider$Definition/hashCode ()I com/mojang/blaze3d/font/SpaceProvider$Definition/hashCode ()I +MD: com/mojang/blaze3d/font/SpaceProvider$Definition/m_285782_ ()Lcom/mojang/datafixers/util/Either; com/mojang/blaze3d/font/SpaceProvider$Definition/unpack ()Lcom/mojang/datafixers/util/Either; +MD: com/mojang/blaze3d/font/SpaceProvider$Definition/m_285843_ ()Lnet/minecraft/client/gui/font/providers/GlyphProviderType; com/mojang/blaze3d/font/SpaceProvider$Definition/type ()Lnet/minecraft/client/gui/font/providers/GlyphProviderType; +MD: com/mojang/blaze3d/font/SpaceProvider$Definition/m_285951_ (Lnet/minecraft/server/packs/resources/ResourceManager;)Lcom/mojang/blaze3d/font/GlyphProvider; com/mojang/blaze3d/font/SpaceProvider$Definition/lambda$unpack$1 (Lnet/minecraft/server/packs/resources/ResourceManager;)Lcom/mojang/blaze3d/font/GlyphProvider; +MD: com/mojang/blaze3d/font/SpaceProvider$Definition/m_286087_ (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; com/mojang/blaze3d/font/SpaceProvider$Definition/lambda$static$0 (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: com/mojang/blaze3d/font/SpaceProvider$Definition/toString ()Ljava/lang/String; com/mojang/blaze3d/font/SpaceProvider$Definition/toString ()Ljava/lang/String; +MD: com/mojang/blaze3d/font/TrueTypeGlyphProvider/ (Ljava/nio/ByteBuffer;Lorg/lwjgl/stb/STBTTFontinfo;FFFFLjava/lang/String;)V com/mojang/blaze3d/font/TrueTypeGlyphProvider/ (Ljava/nio/ByteBuffer;Lorg/lwjgl/stb/STBTTFontinfo;FFFFLjava/lang/String;)V +MD: com/mojang/blaze3d/font/TrueTypeGlyphProvider/close ()V com/mojang/blaze3d/font/TrueTypeGlyphProvider/close ()V +MD: com/mojang/blaze3d/font/TrueTypeGlyphProvider/m_214022_ (I)Lcom/mojang/blaze3d/font/GlyphInfo; com/mojang/blaze3d/font/TrueTypeGlyphProvider/getGlyph (I)Lcom/mojang/blaze3d/font/GlyphInfo; +MD: com/mojang/blaze3d/font/TrueTypeGlyphProvider/m_231113_ (F)F com/mojang/blaze3d/font/TrueTypeGlyphProvider/lambda$getGlyph$0 (F)F +MD: com/mojang/blaze3d/font/TrueTypeGlyphProvider/m_231117_ (I)Z com/mojang/blaze3d/font/TrueTypeGlyphProvider/lambda$getSupportedGlyphs$1 (I)Z +MD: com/mojang/blaze3d/font/TrueTypeGlyphProvider/m_287161_ ()Lorg/lwjgl/stb/STBTTFontinfo; com/mojang/blaze3d/font/TrueTypeGlyphProvider/validateFontOpen ()Lorg/lwjgl/stb/STBTTFontinfo; +MD: com/mojang/blaze3d/font/TrueTypeGlyphProvider/m_6990_ ()Lit/unimi/dsi/fastutil/ints/IntSet; com/mojang/blaze3d/font/TrueTypeGlyphProvider/getSupportedGlyphs ()Lit/unimi/dsi/fastutil/ints/IntSet; +MD: com/mojang/blaze3d/font/TrueTypeGlyphProvider$Glyph/ (Lcom/mojang/blaze3d/font/TrueTypeGlyphProvider;IIIIFFI)V com/mojang/blaze3d/font/TrueTypeGlyphProvider$Glyph/ (Lcom/mojang/blaze3d/font/TrueTypeGlyphProvider;IIIIFFI)V +MD: com/mojang/blaze3d/font/TrueTypeGlyphProvider$Glyph/m_213604_ (Ljava/util/function/Function;)Lnet/minecraft/client/gui/font/glyphs/BakedGlyph; com/mojang/blaze3d/font/TrueTypeGlyphProvider$Glyph/bake (Ljava/util/function/Function;)Lnet/minecraft/client/gui/font/glyphs/BakedGlyph; +MD: com/mojang/blaze3d/font/TrueTypeGlyphProvider$Glyph/m_7403_ ()F com/mojang/blaze3d/font/TrueTypeGlyphProvider$Glyph/getAdvance ()F +MD: com/mojang/blaze3d/font/TrueTypeGlyphProvider$Glyph$1/ (Lcom/mojang/blaze3d/font/TrueTypeGlyphProvider$Glyph;)V com/mojang/blaze3d/font/TrueTypeGlyphProvider$Glyph$1/ (Lcom/mojang/blaze3d/font/TrueTypeGlyphProvider$Glyph;)V +MD: com/mojang/blaze3d/font/TrueTypeGlyphProvider$Glyph$1/m_213958_ (II)V com/mojang/blaze3d/font/TrueTypeGlyphProvider$Glyph$1/upload (II)V +MD: com/mojang/blaze3d/font/TrueTypeGlyphProvider$Glyph$1/m_213961_ ()I com/mojang/blaze3d/font/TrueTypeGlyphProvider$Glyph$1/getPixelHeight ()I +MD: com/mojang/blaze3d/font/TrueTypeGlyphProvider$Glyph$1/m_213962_ ()I com/mojang/blaze3d/font/TrueTypeGlyphProvider$Glyph$1/getPixelWidth ()I +MD: com/mojang/blaze3d/font/TrueTypeGlyphProvider$Glyph$1/m_213963_ ()F com/mojang/blaze3d/font/TrueTypeGlyphProvider$Glyph$1/getOversample ()F +MD: com/mojang/blaze3d/font/TrueTypeGlyphProvider$Glyph$1/m_213964_ ()F com/mojang/blaze3d/font/TrueTypeGlyphProvider$Glyph$1/getBearingY ()F +MD: com/mojang/blaze3d/font/TrueTypeGlyphProvider$Glyph$1/m_213965_ ()Z com/mojang/blaze3d/font/TrueTypeGlyphProvider$Glyph$1/isColored ()Z +MD: com/mojang/blaze3d/font/TrueTypeGlyphProvider$Glyph$1/m_213966_ ()F com/mojang/blaze3d/font/TrueTypeGlyphProvider$Glyph$1/getBearingX ()F +MD: com/mojang/blaze3d/pipeline/MainTarget/ ()V com/mojang/blaze3d/pipeline/MainTarget/ ()V +MD: com/mojang/blaze3d/pipeline/MainTarget/ (II)V com/mojang/blaze3d/pipeline/MainTarget/ (II)V +MD: com/mojang/blaze3d/pipeline/MainTarget/m_166139_ (Lcom/mojang/blaze3d/pipeline/MainTarget$Dimension;)Z com/mojang/blaze3d/pipeline/MainTarget/allocateColorAttachment (Lcom/mojang/blaze3d/pipeline/MainTarget$Dimension;)Z +MD: com/mojang/blaze3d/pipeline/MainTarget/m_166141_ (II)V com/mojang/blaze3d/pipeline/MainTarget/createFrameBuffer (II)V +MD: com/mojang/blaze3d/pipeline/MainTarget/m_166144_ (Lcom/mojang/blaze3d/pipeline/MainTarget$Dimension;)Z com/mojang/blaze3d/pipeline/MainTarget/allocateDepthAttachment (Lcom/mojang/blaze3d/pipeline/MainTarget$Dimension;)Z +MD: com/mojang/blaze3d/pipeline/MainTarget/m_166146_ (II)Lcom/mojang/blaze3d/pipeline/MainTarget$Dimension; com/mojang/blaze3d/pipeline/MainTarget/allocateAttachments (II)Lcom/mojang/blaze3d/pipeline/MainTarget$Dimension; +MD: com/mojang/blaze3d/pipeline/MainTarget/m_166149_ (II)V com/mojang/blaze3d/pipeline/MainTarget/lambda$new$0 (II)V +MD: com/mojang/blaze3d/pipeline/MainTarget$AttachmentState/ ()V com/mojang/blaze3d/pipeline/MainTarget$AttachmentState/ ()V +MD: com/mojang/blaze3d/pipeline/MainTarget$AttachmentState/ (Ljava/lang/String;I)V com/mojang/blaze3d/pipeline/MainTarget$AttachmentState/ (Ljava/lang/String;I)V +MD: com/mojang/blaze3d/pipeline/MainTarget$AttachmentState/m_166162_ ()[Lcom/mojang/blaze3d/pipeline/MainTarget$AttachmentState; com/mojang/blaze3d/pipeline/MainTarget$AttachmentState/$values ()[Lcom/mojang/blaze3d/pipeline/MainTarget$AttachmentState; +MD: com/mojang/blaze3d/pipeline/MainTarget$AttachmentState/m_166163_ (Lcom/mojang/blaze3d/pipeline/MainTarget$AttachmentState;)Lcom/mojang/blaze3d/pipeline/MainTarget$AttachmentState; com/mojang/blaze3d/pipeline/MainTarget$AttachmentState/with (Lcom/mojang/blaze3d/pipeline/MainTarget$AttachmentState;)Lcom/mojang/blaze3d/pipeline/MainTarget$AttachmentState; +MD: com/mojang/blaze3d/pipeline/MainTarget$AttachmentState/valueOf (Ljava/lang/String;)Lcom/mojang/blaze3d/pipeline/MainTarget$AttachmentState; com/mojang/blaze3d/pipeline/MainTarget$AttachmentState/valueOf (Ljava/lang/String;)Lcom/mojang/blaze3d/pipeline/MainTarget$AttachmentState; +MD: com/mojang/blaze3d/pipeline/MainTarget$AttachmentState/values ()[Lcom/mojang/blaze3d/pipeline/MainTarget$AttachmentState; com/mojang/blaze3d/pipeline/MainTarget$AttachmentState/values ()[Lcom/mojang/blaze3d/pipeline/MainTarget$AttachmentState; +MD: com/mojang/blaze3d/pipeline/MainTarget$Dimension/ (II)V com/mojang/blaze3d/pipeline/MainTarget$Dimension/ (II)V +MD: com/mojang/blaze3d/pipeline/MainTarget$Dimension/equals (Ljava/lang/Object;)Z com/mojang/blaze3d/pipeline/MainTarget$Dimension/equals (Ljava/lang/Object;)Z +MD: com/mojang/blaze3d/pipeline/MainTarget$Dimension/hashCode ()I com/mojang/blaze3d/pipeline/MainTarget$Dimension/hashCode ()I +MD: com/mojang/blaze3d/pipeline/MainTarget$Dimension/m_166173_ (II)Ljava/util/List; com/mojang/blaze3d/pipeline/MainTarget$Dimension/listWithFallback (II)Ljava/util/List; +MD: com/mojang/blaze3d/pipeline/MainTarget$Dimension/toString ()Ljava/lang/String; com/mojang/blaze3d/pipeline/MainTarget$Dimension/toString ()Ljava/lang/String; +MD: com/mojang/blaze3d/pipeline/RenderCall/m_83909_ ()V com/mojang/blaze3d/pipeline/RenderCall/execute ()V +MD: com/mojang/blaze3d/pipeline/RenderPipeline/ ()V com/mojang/blaze3d/pipeline/RenderPipeline/ ()V +MD: com/mojang/blaze3d/pipeline/RenderPipeline/m_166182_ ()Z com/mojang/blaze3d/pipeline/RenderPipeline/canBeginRecording ()Z +MD: com/mojang/blaze3d/pipeline/RenderPipeline/m_166183_ (Lcom/mojang/blaze3d/pipeline/RenderCall;)V com/mojang/blaze3d/pipeline/RenderPipeline/recordRenderCall (Lcom/mojang/blaze3d/pipeline/RenderCall;)V +MD: com/mojang/blaze3d/pipeline/RenderPipeline/m_166185_ ()Z com/mojang/blaze3d/pipeline/RenderPipeline/beginRecording ()Z +MD: com/mojang/blaze3d/pipeline/RenderPipeline/m_166186_ ()V com/mojang/blaze3d/pipeline/RenderPipeline/endRecording ()V +MD: com/mojang/blaze3d/pipeline/RenderPipeline/m_166187_ ()Z com/mojang/blaze3d/pipeline/RenderPipeline/canBeginProcessing ()Z +MD: com/mojang/blaze3d/pipeline/RenderPipeline/m_166188_ ()Z com/mojang/blaze3d/pipeline/RenderPipeline/beginProcessing ()Z +MD: com/mojang/blaze3d/pipeline/RenderPipeline/m_166189_ ()V com/mojang/blaze3d/pipeline/RenderPipeline/processRecordedQueue ()V +MD: com/mojang/blaze3d/pipeline/RenderPipeline/m_166190_ ()V com/mojang/blaze3d/pipeline/RenderPipeline/endProcessing ()V +MD: com/mojang/blaze3d/pipeline/RenderPipeline/m_166191_ ()Ljava/util/concurrent/ConcurrentLinkedQueue; com/mojang/blaze3d/pipeline/RenderPipeline/startRendering ()Ljava/util/concurrent/ConcurrentLinkedQueue; +MD: com/mojang/blaze3d/pipeline/RenderPipeline/m_166192_ ()Ljava/util/concurrent/ConcurrentLinkedQueue; com/mojang/blaze3d/pipeline/RenderPipeline/getRecordingQueue ()Ljava/util/concurrent/ConcurrentLinkedQueue; +MD: com/mojang/blaze3d/pipeline/RenderPipeline/m_166193_ ()Ljava/util/concurrent/ConcurrentLinkedQueue; com/mojang/blaze3d/pipeline/RenderPipeline/getProcessedQueue ()Ljava/util/concurrent/ConcurrentLinkedQueue; +MD: com/mojang/blaze3d/pipeline/RenderTarget/ (Z)V com/mojang/blaze3d/pipeline/RenderTarget/ (Z)V +MD: com/mojang/blaze3d/pipeline/RenderTarget/m_166200_ (Z)V com/mojang/blaze3d/pipeline/RenderTarget/lambda$bindWrite$2 (Z)V +MD: com/mojang/blaze3d/pipeline/RenderTarget/m_166202_ (IIZ)V com/mojang/blaze3d/pipeline/RenderTarget/lambda$blitToScreen$4 (IIZ)V +MD: com/mojang/blaze3d/pipeline/RenderTarget/m_166206_ (IIZ)V com/mojang/blaze3d/pipeline/RenderTarget/lambda$resize$1 (IIZ)V +MD: com/mojang/blaze3d/pipeline/RenderTarget/m_166210_ ()V com/mojang/blaze3d/pipeline/RenderTarget/lambda$unbindWrite$3 ()V +MD: com/mojang/blaze3d/pipeline/RenderTarget/m_166211_ ()[F com/mojang/blaze3d/pipeline/RenderTarget/lambda$new$0 ()[F +MD: com/mojang/blaze3d/pipeline/RenderTarget/m_83930_ ()V com/mojang/blaze3d/pipeline/RenderTarget/destroyBuffers ()V +MD: com/mojang/blaze3d/pipeline/RenderTarget/m_83931_ (FFFF)V com/mojang/blaze3d/pipeline/RenderTarget/setClearColor (FFFF)V +MD: com/mojang/blaze3d/pipeline/RenderTarget/m_83936_ (I)V com/mojang/blaze3d/pipeline/RenderTarget/setFilterMode (I)V +MD: com/mojang/blaze3d/pipeline/RenderTarget/m_83938_ (II)V com/mojang/blaze3d/pipeline/RenderTarget/blitToScreen (II)V +MD: com/mojang/blaze3d/pipeline/RenderTarget/m_83941_ (IIZ)V com/mojang/blaze3d/pipeline/RenderTarget/resize (IIZ)V +MD: com/mojang/blaze3d/pipeline/RenderTarget/m_83945_ (Lcom/mojang/blaze3d/pipeline/RenderTarget;)V com/mojang/blaze3d/pipeline/RenderTarget/copyDepthFrom (Lcom/mojang/blaze3d/pipeline/RenderTarget;)V +MD: com/mojang/blaze3d/pipeline/RenderTarget/m_83947_ (Z)V com/mojang/blaze3d/pipeline/RenderTarget/bindWrite (Z)V +MD: com/mojang/blaze3d/pipeline/RenderTarget/m_83949_ ()V com/mojang/blaze3d/pipeline/RenderTarget/checkStatus ()V +MD: com/mojang/blaze3d/pipeline/RenderTarget/m_83950_ (IIZ)V com/mojang/blaze3d/pipeline/RenderTarget/createBuffers (IIZ)V +MD: com/mojang/blaze3d/pipeline/RenderTarget/m_83954_ (Z)V com/mojang/blaze3d/pipeline/RenderTarget/clear (Z)V +MD: com/mojang/blaze3d/pipeline/RenderTarget/m_83956_ ()V com/mojang/blaze3d/pipeline/RenderTarget/bindRead ()V +MD: com/mojang/blaze3d/pipeline/RenderTarget/m_83957_ (IIZ)V com/mojang/blaze3d/pipeline/RenderTarget/blitToScreen (IIZ)V +MD: com/mojang/blaze3d/pipeline/RenderTarget/m_83961_ (Z)V com/mojang/blaze3d/pipeline/RenderTarget/_bindWrite (Z)V +MD: com/mojang/blaze3d/pipeline/RenderTarget/m_83963_ ()V com/mojang/blaze3d/pipeline/RenderTarget/unbindRead ()V +MD: com/mojang/blaze3d/pipeline/RenderTarget/m_83964_ (IIZ)V com/mojang/blaze3d/pipeline/RenderTarget/_resize (IIZ)V +MD: com/mojang/blaze3d/pipeline/RenderTarget/m_83970_ ()V com/mojang/blaze3d/pipeline/RenderTarget/unbindWrite ()V +MD: com/mojang/blaze3d/pipeline/RenderTarget/m_83971_ (IIZ)V com/mojang/blaze3d/pipeline/RenderTarget/_blitToScreen (IIZ)V +MD: com/mojang/blaze3d/pipeline/RenderTarget/m_83975_ ()I com/mojang/blaze3d/pipeline/RenderTarget/getColorTextureId ()I +MD: com/mojang/blaze3d/pipeline/RenderTarget/m_83980_ ()I com/mojang/blaze3d/pipeline/RenderTarget/getDepthTextureId ()I +MD: com/mojang/blaze3d/pipeline/TextureTarget/ (IIZZ)V com/mojang/blaze3d/pipeline/TextureTarget/ (IIZZ)V +MD: com/mojang/blaze3d/platform/ClipboardManager/ ()V com/mojang/blaze3d/platform/ClipboardManager/ ()V +MD: com/mojang/blaze3d/platform/ClipboardManager/m_83988_ (JLjava/lang/String;)V com/mojang/blaze3d/platform/ClipboardManager/setClipboard (JLjava/lang/String;)V +MD: com/mojang/blaze3d/platform/ClipboardManager/m_83991_ (JLjava/nio/ByteBuffer;[B)V com/mojang/blaze3d/platform/ClipboardManager/pushClipboard (JLjava/nio/ByteBuffer;[B)V +MD: com/mojang/blaze3d/platform/ClipboardManager/m_83995_ (JLorg/lwjgl/glfw/GLFWErrorCallbackI;)Ljava/lang/String; com/mojang/blaze3d/platform/ClipboardManager/getClipboard (JLorg/lwjgl/glfw/GLFWErrorCallbackI;)Ljava/lang/String; +MD: com/mojang/blaze3d/platform/DebugMemoryUntracker/ ()V com/mojang/blaze3d/platform/DebugMemoryUntracker/ ()V +MD: com/mojang/blaze3d/platform/DebugMemoryUntracker/ ()V com/mojang/blaze3d/platform/DebugMemoryUntracker/ ()V +MD: com/mojang/blaze3d/platform/DebugMemoryUntracker/m_84000_ ()Ljava/lang/invoke/MethodHandle; com/mojang/blaze3d/platform/DebugMemoryUntracker/lambda$static$0 ()Ljava/lang/invoke/MethodHandle; +MD: com/mojang/blaze3d/platform/DebugMemoryUntracker/m_84001_ (J)V com/mojang/blaze3d/platform/DebugMemoryUntracker/untrack (J)V +MD: com/mojang/blaze3d/platform/DebugMemoryUntracker/m_84003_ (Lorg/lwjgl/system/Pointer;)V com/mojang/blaze3d/platform/DebugMemoryUntracker/untrack (Lorg/lwjgl/system/Pointer;)V +MD: com/mojang/blaze3d/platform/DisplayData/ (IILjava/util/OptionalInt;Ljava/util/OptionalInt;Z)V com/mojang/blaze3d/platform/DisplayData/ (IILjava/util/OptionalInt;Ljava/util/OptionalInt;Z)V +MD: com/mojang/blaze3d/platform/GLX/ ()V com/mojang/blaze3d/platform/GLX/ ()V +MD: com/mojang/blaze3d/platform/GLX/ ()V com/mojang/blaze3d/platform/GLX/ ()V +MD: com/mojang/blaze3d/platform/GLX/_getCpuInfo ()Ljava/lang/String; com/mojang/blaze3d/platform/GLX/_getCpuInfo ()Ljava/lang/String; +MD: com/mojang/blaze3d/platform/GLX/_getLWJGLVersion ()Ljava/lang/String; com/mojang/blaze3d/platform/GLX/_getLWJGLVersion ()Ljava/lang/String; +MD: com/mojang/blaze3d/platform/GLX/_getRefreshRate (Lcom/mojang/blaze3d/platform/Window;)I com/mojang/blaze3d/platform/GLX/_getRefreshRate (Lcom/mojang/blaze3d/platform/Window;)I +MD: com/mojang/blaze3d/platform/GLX/_init (IZ)V com/mojang/blaze3d/platform/GLX/_init (IZ)V +MD: com/mojang/blaze3d/platform/GLX/_initGlfw ()Ljava/util/function/LongSupplier; com/mojang/blaze3d/platform/GLX/_initGlfw ()Ljava/util/function/LongSupplier; +MD: com/mojang/blaze3d/platform/GLX/_renderCrosshair (IZZZ)V com/mojang/blaze3d/platform/GLX/_renderCrosshair (IZZZ)V +MD: com/mojang/blaze3d/platform/GLX/_setGlfwErrorCallback (Lorg/lwjgl/glfw/GLFWErrorCallbackI;)V com/mojang/blaze3d/platform/GLX/_setGlfwErrorCallback (Lorg/lwjgl/glfw/GLFWErrorCallbackI;)V +MD: com/mojang/blaze3d/platform/GLX/_shouldClose (Lcom/mojang/blaze3d/platform/Window;)Z com/mojang/blaze3d/platform/GLX/_shouldClose (Lcom/mojang/blaze3d/platform/Window;)Z +MD: com/mojang/blaze3d/platform/GLX/getOpenGLVersionString ()Ljava/lang/String; com/mojang/blaze3d/platform/GLX/getOpenGLVersionString ()Ljava/lang/String; +MD: com/mojang/blaze3d/platform/GLX/lambda$_initGlfw$0 (Ljava/lang/Integer;Ljava/lang/String;)V com/mojang/blaze3d/platform/GLX/lambda$_initGlfw$0 (Ljava/lang/Integer;Ljava/lang/String;)V +MD: com/mojang/blaze3d/platform/GLX/lambda$_initGlfw$1 (Ljava/util/List;IJ)V com/mojang/blaze3d/platform/GLX/lambda$_initGlfw$1 (Ljava/util/List;IJ)V +MD: com/mojang/blaze3d/platform/GLX/lambda$_initGlfw$2 ()J com/mojang/blaze3d/platform/GLX/lambda$_initGlfw$2 ()J +MD: com/mojang/blaze3d/platform/GLX/make (Ljava/util/function/Supplier;)Ljava/lang/Object; com/mojang/blaze3d/platform/GLX/make (Ljava/util/function/Supplier;)Ljava/lang/Object; +MD: com/mojang/blaze3d/platform/GLX/make (Ljava/lang/Object;Ljava/util/function/Consumer;)Ljava/lang/Object; com/mojang/blaze3d/platform/GLX/make (Ljava/lang/Object;Ljava/util/function/Consumer;)Ljava/lang/Object; +MD: com/mojang/blaze3d/platform/GlConst/ ()V com/mojang/blaze3d/platform/GlConst/ ()V +MD: com/mojang/blaze3d/platform/GlDebug/ ()V com/mojang/blaze3d/platform/GlDebug/ ()V +MD: com/mojang/blaze3d/platform/GlDebug/ ()V com/mojang/blaze3d/platform/GlDebug/ ()V +MD: com/mojang/blaze3d/platform/GlDebug/m_166225_ ()Ljava/util/List; com/mojang/blaze3d/platform/GlDebug/getLastOpenGlDebugMessages ()Ljava/util/List; +MD: com/mojang/blaze3d/platform/GlDebug/m_166226_ ()Z com/mojang/blaze3d/platform/GlDebug/isDebugEnabled ()Z +MD: com/mojang/blaze3d/platform/GlDebug/m_84036_ (I)Ljava/lang/String; com/mojang/blaze3d/platform/GlDebug/printUnknownToken (I)Ljava/lang/String; +MD: com/mojang/blaze3d/platform/GlDebug/m_84038_ (IIIIIJJ)V com/mojang/blaze3d/platform/GlDebug/printDebugLog (IIIIIJJ)V +MD: com/mojang/blaze3d/platform/GlDebug/m_84049_ (IZ)V com/mojang/blaze3d/platform/GlDebug/enableDebugCallback (IZ)V +MD: com/mojang/blaze3d/platform/GlDebug/m_84055_ (I)Ljava/lang/String; com/mojang/blaze3d/platform/GlDebug/sourceToString (I)Ljava/lang/String; +MD: com/mojang/blaze3d/platform/GlDebug/m_84057_ (I)Ljava/lang/String; com/mojang/blaze3d/platform/GlDebug/typeToString (I)Ljava/lang/String; +MD: com/mojang/blaze3d/platform/GlDebug/m_84059_ (I)Ljava/lang/String; com/mojang/blaze3d/platform/GlDebug/severityToString (I)Ljava/lang/String; +MD: com/mojang/blaze3d/platform/GlDebug$LogEntry/ (IIIILjava/lang/String;)V com/mojang/blaze3d/platform/GlDebug$LogEntry/ (IIIILjava/lang/String;)V +MD: com/mojang/blaze3d/platform/GlDebug$LogEntry/m_166239_ (IIIILjava/lang/String;)Z com/mojang/blaze3d/platform/GlDebug$LogEntry/isSame (IIIILjava/lang/String;)Z +MD: com/mojang/blaze3d/platform/GlDebug$LogEntry/toString ()Ljava/lang/String; com/mojang/blaze3d/platform/GlDebug$LogEntry/toString ()Ljava/lang/String; +MD: com/mojang/blaze3d/platform/GlStateManager/ ()V com/mojang/blaze3d/platform/GlStateManager/ ()V +MD: com/mojang/blaze3d/platform/GlStateManager/ ()V com/mojang/blaze3d/platform/GlStateManager/ ()V +MD: com/mojang/blaze3d/platform/GlStateManager/_activeTexture (I)V com/mojang/blaze3d/platform/GlStateManager/_activeTexture (I)V +MD: com/mojang/blaze3d/platform/GlStateManager/_bindTexture (I)V com/mojang/blaze3d/platform/GlStateManager/_bindTexture (I)V +MD: com/mojang/blaze3d/platform/GlStateManager/_blendEquation (I)V com/mojang/blaze3d/platform/GlStateManager/_blendEquation (I)V +MD: com/mojang/blaze3d/platform/GlStateManager/_blendFunc (II)V com/mojang/blaze3d/platform/GlStateManager/_blendFunc (II)V +MD: com/mojang/blaze3d/platform/GlStateManager/_blendFuncSeparate (IIII)V com/mojang/blaze3d/platform/GlStateManager/_blendFuncSeparate (IIII)V +MD: com/mojang/blaze3d/platform/GlStateManager/_clear (IZ)V com/mojang/blaze3d/platform/GlStateManager/_clear (IZ)V +MD: com/mojang/blaze3d/platform/GlStateManager/_clearColor (FFFF)V com/mojang/blaze3d/platform/GlStateManager/_clearColor (FFFF)V +MD: com/mojang/blaze3d/platform/GlStateManager/_clearDepth (D)V com/mojang/blaze3d/platform/GlStateManager/_clearDepth (D)V +MD: com/mojang/blaze3d/platform/GlStateManager/_clearStencil (I)V com/mojang/blaze3d/platform/GlStateManager/_clearStencil (I)V +MD: com/mojang/blaze3d/platform/GlStateManager/_colorMask (ZZZZ)V com/mojang/blaze3d/platform/GlStateManager/_colorMask (ZZZZ)V +MD: com/mojang/blaze3d/platform/GlStateManager/_deleteTexture (I)V com/mojang/blaze3d/platform/GlStateManager/_deleteTexture (I)V +MD: com/mojang/blaze3d/platform/GlStateManager/_deleteTextures ([I)V com/mojang/blaze3d/platform/GlStateManager/_deleteTextures ([I)V +MD: com/mojang/blaze3d/platform/GlStateManager/_depthFunc (I)V com/mojang/blaze3d/platform/GlStateManager/_depthFunc (I)V +MD: com/mojang/blaze3d/platform/GlStateManager/_depthMask (Z)V com/mojang/blaze3d/platform/GlStateManager/_depthMask (Z)V +MD: com/mojang/blaze3d/platform/GlStateManager/_disableBlend ()V com/mojang/blaze3d/platform/GlStateManager/_disableBlend ()V +MD: com/mojang/blaze3d/platform/GlStateManager/_disableColorLogicOp ()V com/mojang/blaze3d/platform/GlStateManager/_disableColorLogicOp ()V +MD: com/mojang/blaze3d/platform/GlStateManager/_disableCull ()V com/mojang/blaze3d/platform/GlStateManager/_disableCull ()V +MD: com/mojang/blaze3d/platform/GlStateManager/_disableDepthTest ()V com/mojang/blaze3d/platform/GlStateManager/_disableDepthTest ()V +MD: com/mojang/blaze3d/platform/GlStateManager/_disablePolygonOffset ()V com/mojang/blaze3d/platform/GlStateManager/_disablePolygonOffset ()V +MD: com/mojang/blaze3d/platform/GlStateManager/_disableScissorTest ()V com/mojang/blaze3d/platform/GlStateManager/_disableScissorTest ()V +MD: com/mojang/blaze3d/platform/GlStateManager/_disableVertexAttribArray (I)V com/mojang/blaze3d/platform/GlStateManager/_disableVertexAttribArray (I)V +MD: com/mojang/blaze3d/platform/GlStateManager/_drawElements (IIIJ)V com/mojang/blaze3d/platform/GlStateManager/_drawElements (IIIJ)V +MD: com/mojang/blaze3d/platform/GlStateManager/_enableBlend ()V com/mojang/blaze3d/platform/GlStateManager/_enableBlend ()V +MD: com/mojang/blaze3d/platform/GlStateManager/_enableColorLogicOp ()V com/mojang/blaze3d/platform/GlStateManager/_enableColorLogicOp ()V +MD: com/mojang/blaze3d/platform/GlStateManager/_enableCull ()V com/mojang/blaze3d/platform/GlStateManager/_enableCull ()V +MD: com/mojang/blaze3d/platform/GlStateManager/_enableDepthTest ()V com/mojang/blaze3d/platform/GlStateManager/_enableDepthTest ()V +MD: com/mojang/blaze3d/platform/GlStateManager/_enablePolygonOffset ()V com/mojang/blaze3d/platform/GlStateManager/_enablePolygonOffset ()V +MD: com/mojang/blaze3d/platform/GlStateManager/_enableScissorTest ()V com/mojang/blaze3d/platform/GlStateManager/_enableScissorTest ()V +MD: com/mojang/blaze3d/platform/GlStateManager/_enableVertexAttribArray (I)V com/mojang/blaze3d/platform/GlStateManager/_enableVertexAttribArray (I)V +MD: com/mojang/blaze3d/platform/GlStateManager/_genTexture ()I com/mojang/blaze3d/platform/GlStateManager/_genTexture ()I +MD: com/mojang/blaze3d/platform/GlStateManager/_genTextures ([I)V com/mojang/blaze3d/platform/GlStateManager/_genTextures ([I)V +MD: com/mojang/blaze3d/platform/GlStateManager/_getActiveTexture ()I com/mojang/blaze3d/platform/GlStateManager/_getActiveTexture ()I +MD: com/mojang/blaze3d/platform/GlStateManager/_getError ()I com/mojang/blaze3d/platform/GlStateManager/_getError ()I +MD: com/mojang/blaze3d/platform/GlStateManager/_getInteger (I)I com/mojang/blaze3d/platform/GlStateManager/_getInteger (I)I +MD: com/mojang/blaze3d/platform/GlStateManager/_getString (I)Ljava/lang/String; com/mojang/blaze3d/platform/GlStateManager/_getString (I)Ljava/lang/String; +MD: com/mojang/blaze3d/platform/GlStateManager/_getTexImage (IIIIJ)V com/mojang/blaze3d/platform/GlStateManager/_getTexImage (IIIIJ)V +MD: com/mojang/blaze3d/platform/GlStateManager/_getTexLevelParameter (III)I com/mojang/blaze3d/platform/GlStateManager/_getTexLevelParameter (III)I +MD: com/mojang/blaze3d/platform/GlStateManager/_glBindAttribLocation (IILjava/lang/CharSequence;)V com/mojang/blaze3d/platform/GlStateManager/_glBindAttribLocation (IILjava/lang/CharSequence;)V +MD: com/mojang/blaze3d/platform/GlStateManager/_glBindBuffer (II)V com/mojang/blaze3d/platform/GlStateManager/_glBindBuffer (II)V +MD: com/mojang/blaze3d/platform/GlStateManager/_glBindFramebuffer (II)V com/mojang/blaze3d/platform/GlStateManager/_glBindFramebuffer (II)V +MD: com/mojang/blaze3d/platform/GlStateManager/_glBindRenderbuffer (II)V com/mojang/blaze3d/platform/GlStateManager/_glBindRenderbuffer (II)V +MD: com/mojang/blaze3d/platform/GlStateManager/_glBindVertexArray (I)V com/mojang/blaze3d/platform/GlStateManager/_glBindVertexArray (I)V +MD: com/mojang/blaze3d/platform/GlStateManager/_glBlitFrameBuffer (IIIIIIIIII)V com/mojang/blaze3d/platform/GlStateManager/_glBlitFrameBuffer (IIIIIIIIII)V +MD: com/mojang/blaze3d/platform/GlStateManager/_glBufferData (IJI)V com/mojang/blaze3d/platform/GlStateManager/_glBufferData (IJI)V +MD: com/mojang/blaze3d/platform/GlStateManager/_glBufferData (ILjava/nio/ByteBuffer;I)V com/mojang/blaze3d/platform/GlStateManager/_glBufferData (ILjava/nio/ByteBuffer;I)V +MD: com/mojang/blaze3d/platform/GlStateManager/_glCopyTexSubImage2D (IIIIIIII)V com/mojang/blaze3d/platform/GlStateManager/_glCopyTexSubImage2D (IIIIIIII)V +MD: com/mojang/blaze3d/platform/GlStateManager/_glDeleteBuffers (I)V com/mojang/blaze3d/platform/GlStateManager/_glDeleteBuffers (I)V +MD: com/mojang/blaze3d/platform/GlStateManager/_glDeleteFramebuffers (I)V com/mojang/blaze3d/platform/GlStateManager/_glDeleteFramebuffers (I)V +MD: com/mojang/blaze3d/platform/GlStateManager/_glDeleteRenderbuffers (I)V com/mojang/blaze3d/platform/GlStateManager/_glDeleteRenderbuffers (I)V +MD: com/mojang/blaze3d/platform/GlStateManager/_glDeleteVertexArrays (I)V com/mojang/blaze3d/platform/GlStateManager/_glDeleteVertexArrays (I)V +MD: com/mojang/blaze3d/platform/GlStateManager/_glDrawPixels (IIIIJ)V com/mojang/blaze3d/platform/GlStateManager/_glDrawPixels (IIIIJ)V +MD: com/mojang/blaze3d/platform/GlStateManager/_glFramebufferRenderbuffer (IIII)V com/mojang/blaze3d/platform/GlStateManager/_glFramebufferRenderbuffer (IIII)V +MD: com/mojang/blaze3d/platform/GlStateManager/_glFramebufferTexture2D (IIIII)V com/mojang/blaze3d/platform/GlStateManager/_glFramebufferTexture2D (IIIII)V +MD: com/mojang/blaze3d/platform/GlStateManager/_glGenBuffers ()I com/mojang/blaze3d/platform/GlStateManager/_glGenBuffers ()I +MD: com/mojang/blaze3d/platform/GlStateManager/_glGenVertexArrays ()I com/mojang/blaze3d/platform/GlStateManager/_glGenVertexArrays ()I +MD: com/mojang/blaze3d/platform/GlStateManager/_glGetAttribLocation (ILjava/lang/CharSequence;)I com/mojang/blaze3d/platform/GlStateManager/_glGetAttribLocation (ILjava/lang/CharSequence;)I +MD: com/mojang/blaze3d/platform/GlStateManager/_glGetUniformLocation (ILjava/lang/CharSequence;)I com/mojang/blaze3d/platform/GlStateManager/_glGetUniformLocation (ILjava/lang/CharSequence;)I +MD: com/mojang/blaze3d/platform/GlStateManager/_glMapBuffer (II)Ljava/nio/ByteBuffer; com/mojang/blaze3d/platform/GlStateManager/_glMapBuffer (II)Ljava/nio/ByteBuffer; +MD: com/mojang/blaze3d/platform/GlStateManager/_glRenderbufferStorage (IIII)V com/mojang/blaze3d/platform/GlStateManager/_glRenderbufferStorage (IIII)V +MD: com/mojang/blaze3d/platform/GlStateManager/_glUniform1 (ILjava/nio/IntBuffer;)V com/mojang/blaze3d/platform/GlStateManager/_glUniform1 (ILjava/nio/IntBuffer;)V +MD: com/mojang/blaze3d/platform/GlStateManager/_glUniform1 (ILjava/nio/FloatBuffer;)V com/mojang/blaze3d/platform/GlStateManager/_glUniform1 (ILjava/nio/FloatBuffer;)V +MD: com/mojang/blaze3d/platform/GlStateManager/_glUniform1i (II)V com/mojang/blaze3d/platform/GlStateManager/_glUniform1i (II)V +MD: com/mojang/blaze3d/platform/GlStateManager/_glUniform2 (ILjava/nio/FloatBuffer;)V com/mojang/blaze3d/platform/GlStateManager/_glUniform2 (ILjava/nio/FloatBuffer;)V +MD: com/mojang/blaze3d/platform/GlStateManager/_glUniform2 (ILjava/nio/IntBuffer;)V com/mojang/blaze3d/platform/GlStateManager/_glUniform2 (ILjava/nio/IntBuffer;)V +MD: com/mojang/blaze3d/platform/GlStateManager/_glUniform3 (ILjava/nio/FloatBuffer;)V com/mojang/blaze3d/platform/GlStateManager/_glUniform3 (ILjava/nio/FloatBuffer;)V +MD: com/mojang/blaze3d/platform/GlStateManager/_glUniform3 (ILjava/nio/IntBuffer;)V com/mojang/blaze3d/platform/GlStateManager/_glUniform3 (ILjava/nio/IntBuffer;)V +MD: com/mojang/blaze3d/platform/GlStateManager/_glUniform4 (ILjava/nio/FloatBuffer;)V com/mojang/blaze3d/platform/GlStateManager/_glUniform4 (ILjava/nio/FloatBuffer;)V +MD: com/mojang/blaze3d/platform/GlStateManager/_glUniform4 (ILjava/nio/IntBuffer;)V com/mojang/blaze3d/platform/GlStateManager/_glUniform4 (ILjava/nio/IntBuffer;)V +MD: com/mojang/blaze3d/platform/GlStateManager/_glUniformMatrix2 (IZLjava/nio/FloatBuffer;)V com/mojang/blaze3d/platform/GlStateManager/_glUniformMatrix2 (IZLjava/nio/FloatBuffer;)V +MD: com/mojang/blaze3d/platform/GlStateManager/_glUniformMatrix3 (IZLjava/nio/FloatBuffer;)V com/mojang/blaze3d/platform/GlStateManager/_glUniformMatrix3 (IZLjava/nio/FloatBuffer;)V +MD: com/mojang/blaze3d/platform/GlStateManager/_glUniformMatrix4 (IZLjava/nio/FloatBuffer;)V com/mojang/blaze3d/platform/GlStateManager/_glUniformMatrix4 (IZLjava/nio/FloatBuffer;)V +MD: com/mojang/blaze3d/platform/GlStateManager/_glUnmapBuffer (I)V com/mojang/blaze3d/platform/GlStateManager/_glUnmapBuffer (I)V +MD: com/mojang/blaze3d/platform/GlStateManager/_glUseProgram (I)V com/mojang/blaze3d/platform/GlStateManager/_glUseProgram (I)V +MD: com/mojang/blaze3d/platform/GlStateManager/_logicOp (I)V com/mojang/blaze3d/platform/GlStateManager/_logicOp (I)V +MD: com/mojang/blaze3d/platform/GlStateManager/_pixelStore (II)V com/mojang/blaze3d/platform/GlStateManager/_pixelStore (II)V +MD: com/mojang/blaze3d/platform/GlStateManager/_polygonMode (II)V com/mojang/blaze3d/platform/GlStateManager/_polygonMode (II)V +MD: com/mojang/blaze3d/platform/GlStateManager/_polygonOffset (FF)V com/mojang/blaze3d/platform/GlStateManager/_polygonOffset (FF)V +MD: com/mojang/blaze3d/platform/GlStateManager/_readPixels (IIIIIIJ)V com/mojang/blaze3d/platform/GlStateManager/_readPixels (IIIIIIJ)V +MD: com/mojang/blaze3d/platform/GlStateManager/_readPixels (IIIIIILjava/nio/ByteBuffer;)V com/mojang/blaze3d/platform/GlStateManager/_readPixels (IIIIIILjava/nio/ByteBuffer;)V +MD: com/mojang/blaze3d/platform/GlStateManager/_scissorBox (IIII)V com/mojang/blaze3d/platform/GlStateManager/_scissorBox (IIII)V +MD: com/mojang/blaze3d/platform/GlStateManager/_stencilFunc (III)V com/mojang/blaze3d/platform/GlStateManager/_stencilFunc (III)V +MD: com/mojang/blaze3d/platform/GlStateManager/_stencilMask (I)V com/mojang/blaze3d/platform/GlStateManager/_stencilMask (I)V +MD: com/mojang/blaze3d/platform/GlStateManager/_stencilOp (III)V com/mojang/blaze3d/platform/GlStateManager/_stencilOp (III)V +MD: com/mojang/blaze3d/platform/GlStateManager/_texImage2D (IIIIIIIILjava/nio/IntBuffer;)V com/mojang/blaze3d/platform/GlStateManager/_texImage2D (IIIIIIIILjava/nio/IntBuffer;)V +MD: com/mojang/blaze3d/platform/GlStateManager/_texParameter (IIF)V com/mojang/blaze3d/platform/GlStateManager/_texParameter (IIF)V +MD: com/mojang/blaze3d/platform/GlStateManager/_texParameter (III)V com/mojang/blaze3d/platform/GlStateManager/_texParameter (III)V +MD: com/mojang/blaze3d/platform/GlStateManager/_texSubImage2D (IIIIIIIIJ)V com/mojang/blaze3d/platform/GlStateManager/_texSubImage2D (IIIIIIIIJ)V +MD: com/mojang/blaze3d/platform/GlStateManager/_upload (IIIIILcom/mojang/blaze3d/platform/NativeImage$Format;Ljava/nio/IntBuffer;Ljava/util/function/Consumer;)V com/mojang/blaze3d/platform/GlStateManager/_upload (IIIIILcom/mojang/blaze3d/platform/NativeImage$Format;Ljava/nio/IntBuffer;Ljava/util/function/Consumer;)V +MD: com/mojang/blaze3d/platform/GlStateManager/_vertexAttribIPointer (IIIIJ)V com/mojang/blaze3d/platform/GlStateManager/_vertexAttribIPointer (IIIIJ)V +MD: com/mojang/blaze3d/platform/GlStateManager/_vertexAttribPointer (IIIZIJ)V com/mojang/blaze3d/platform/GlStateManager/_vertexAttribPointer (IIIZIJ)V +MD: com/mojang/blaze3d/platform/GlStateManager/_viewport (IIII)V com/mojang/blaze3d/platform/GlStateManager/_viewport (IIII)V +MD: com/mojang/blaze3d/platform/GlStateManager/getBoundFramebuffer ()I com/mojang/blaze3d/platform/GlStateManager/getBoundFramebuffer ()I +MD: com/mojang/blaze3d/platform/GlStateManager/glActiveTexture (I)V com/mojang/blaze3d/platform/GlStateManager/glActiveTexture (I)V +MD: com/mojang/blaze3d/platform/GlStateManager/glAttachShader (II)V com/mojang/blaze3d/platform/GlStateManager/glAttachShader (II)V +MD: com/mojang/blaze3d/platform/GlStateManager/glBlendFuncSeparate (IIII)V com/mojang/blaze3d/platform/GlStateManager/glBlendFuncSeparate (IIII)V +MD: com/mojang/blaze3d/platform/GlStateManager/glCheckFramebufferStatus (I)I com/mojang/blaze3d/platform/GlStateManager/glCheckFramebufferStatus (I)I +MD: com/mojang/blaze3d/platform/GlStateManager/glCompileShader (I)V com/mojang/blaze3d/platform/GlStateManager/glCompileShader (I)V +MD: com/mojang/blaze3d/platform/GlStateManager/glCreateProgram ()I com/mojang/blaze3d/platform/GlStateManager/glCreateProgram ()I +MD: com/mojang/blaze3d/platform/GlStateManager/glCreateShader (I)I com/mojang/blaze3d/platform/GlStateManager/glCreateShader (I)I +MD: com/mojang/blaze3d/platform/GlStateManager/glDeleteProgram (I)V com/mojang/blaze3d/platform/GlStateManager/glDeleteProgram (I)V +MD: com/mojang/blaze3d/platform/GlStateManager/glDeleteShader (I)V com/mojang/blaze3d/platform/GlStateManager/glDeleteShader (I)V +MD: com/mojang/blaze3d/platform/GlStateManager/glGenFramebuffers ()I com/mojang/blaze3d/platform/GlStateManager/glGenFramebuffers ()I +MD: com/mojang/blaze3d/platform/GlStateManager/glGenRenderbuffers ()I com/mojang/blaze3d/platform/GlStateManager/glGenRenderbuffers ()I +MD: com/mojang/blaze3d/platform/GlStateManager/glGetProgramInfoLog (II)Ljava/lang/String; com/mojang/blaze3d/platform/GlStateManager/glGetProgramInfoLog (II)Ljava/lang/String; +MD: com/mojang/blaze3d/platform/GlStateManager/glGetProgrami (II)I com/mojang/blaze3d/platform/GlStateManager/glGetProgrami (II)I +MD: com/mojang/blaze3d/platform/GlStateManager/glGetShaderInfoLog (II)Ljava/lang/String; com/mojang/blaze3d/platform/GlStateManager/glGetShaderInfoLog (II)Ljava/lang/String; +MD: com/mojang/blaze3d/platform/GlStateManager/glGetShaderi (II)I com/mojang/blaze3d/platform/GlStateManager/glGetShaderi (II)I +MD: com/mojang/blaze3d/platform/GlStateManager/glLinkProgram (I)V com/mojang/blaze3d/platform/GlStateManager/glLinkProgram (I)V +MD: com/mojang/blaze3d/platform/GlStateManager/glShaderSource (ILjava/util/List;)V com/mojang/blaze3d/platform/GlStateManager/glShaderSource (ILjava/util/List;)V +MD: com/mojang/blaze3d/platform/GlStateManager/lambda$static$0 (I)Lcom/mojang/blaze3d/platform/GlStateManager$TextureState; com/mojang/blaze3d/platform/GlStateManager/lambda$static$0 (I)Lcom/mojang/blaze3d/platform/GlStateManager$TextureState; +MD: com/mojang/blaze3d/platform/GlStateManager/lambda$static$1 (I)[Lcom/mojang/blaze3d/platform/GlStateManager$TextureState; com/mojang/blaze3d/platform/GlStateManager/lambda$static$1 (I)[Lcom/mojang/blaze3d/platform/GlStateManager$TextureState; +MD: com/mojang/blaze3d/platform/GlStateManager/lambda$upload$2 (IIIIILcom/mojang/blaze3d/platform/NativeImage$Format;Ljava/nio/IntBuffer;Ljava/util/function/Consumer;)V com/mojang/blaze3d/platform/GlStateManager/lambda$upload$2 (IIIIILcom/mojang/blaze3d/platform/NativeImage$Format;Ljava/nio/IntBuffer;Ljava/util/function/Consumer;)V +MD: com/mojang/blaze3d/platform/GlStateManager/setupGui3DDiffuseLighting (Lorg/joml/Vector3f;Lorg/joml/Vector3f;)V com/mojang/blaze3d/platform/GlStateManager/setupGui3DDiffuseLighting (Lorg/joml/Vector3f;Lorg/joml/Vector3f;)V +MD: com/mojang/blaze3d/platform/GlStateManager/setupGuiFlatDiffuseLighting (Lorg/joml/Vector3f;Lorg/joml/Vector3f;)V com/mojang/blaze3d/platform/GlStateManager/setupGuiFlatDiffuseLighting (Lorg/joml/Vector3f;Lorg/joml/Vector3f;)V +MD: com/mojang/blaze3d/platform/GlStateManager/setupLevelDiffuseLighting (Lorg/joml/Vector3f;Lorg/joml/Vector3f;Lorg/joml/Matrix4f;)V com/mojang/blaze3d/platform/GlStateManager/setupLevelDiffuseLighting (Lorg/joml/Vector3f;Lorg/joml/Vector3f;Lorg/joml/Matrix4f;)V +MD: com/mojang/blaze3d/platform/GlStateManager/upload (IIIIILcom/mojang/blaze3d/platform/NativeImage$Format;Ljava/nio/IntBuffer;Ljava/util/function/Consumer;)V com/mojang/blaze3d/platform/GlStateManager/upload (IIIIILcom/mojang/blaze3d/platform/NativeImage$Format;Ljava/nio/IntBuffer;Ljava/util/function/Consumer;)V +MD: com/mojang/blaze3d/platform/GlStateManager$BlendState/ ()V com/mojang/blaze3d/platform/GlStateManager$BlendState/ ()V +MD: com/mojang/blaze3d/platform/GlStateManager$BooleanState/ (I)V com/mojang/blaze3d/platform/GlStateManager$BooleanState/ (I)V +MD: com/mojang/blaze3d/platform/GlStateManager$BooleanState/m_84589_ ()V com/mojang/blaze3d/platform/GlStateManager$BooleanState/disable ()V +MD: com/mojang/blaze3d/platform/GlStateManager$BooleanState/m_84590_ (Z)V com/mojang/blaze3d/platform/GlStateManager$BooleanState/setEnabled (Z)V +MD: com/mojang/blaze3d/platform/GlStateManager$BooleanState/m_84592_ ()V com/mojang/blaze3d/platform/GlStateManager$BooleanState/enable ()V +MD: com/mojang/blaze3d/platform/GlStateManager$ColorLogicState/ ()V com/mojang/blaze3d/platform/GlStateManager$ColorLogicState/ ()V +MD: com/mojang/blaze3d/platform/GlStateManager$ColorMask/ ()V com/mojang/blaze3d/platform/GlStateManager$ColorMask/ ()V +MD: com/mojang/blaze3d/platform/GlStateManager$CullState/ ()V com/mojang/blaze3d/platform/GlStateManager$CullState/ ()V +MD: com/mojang/blaze3d/platform/GlStateManager$DepthState/ ()V com/mojang/blaze3d/platform/GlStateManager$DepthState/ ()V +MD: com/mojang/blaze3d/platform/GlStateManager$DestFactor/$values ()[Lcom/mojang/blaze3d/platform/GlStateManager$DestFactor; com/mojang/blaze3d/platform/GlStateManager$DestFactor/$values ()[Lcom/mojang/blaze3d/platform/GlStateManager$DestFactor; +MD: com/mojang/blaze3d/platform/GlStateManager$DestFactor/ ()V com/mojang/blaze3d/platform/GlStateManager$DestFactor/ ()V +MD: com/mojang/blaze3d/platform/GlStateManager$DestFactor/ (Ljava/lang/String;II)V com/mojang/blaze3d/platform/GlStateManager$DestFactor/ (Ljava/lang/String;II)V +MD: com/mojang/blaze3d/platform/GlStateManager$DestFactor/valueOf (Ljava/lang/String;)Lcom/mojang/blaze3d/platform/GlStateManager$DestFactor; com/mojang/blaze3d/platform/GlStateManager$DestFactor/valueOf (Ljava/lang/String;)Lcom/mojang/blaze3d/platform/GlStateManager$DestFactor; +MD: com/mojang/blaze3d/platform/GlStateManager$DestFactor/values ()[Lcom/mojang/blaze3d/platform/GlStateManager$DestFactor; com/mojang/blaze3d/platform/GlStateManager$DestFactor/values ()[Lcom/mojang/blaze3d/platform/GlStateManager$DestFactor; +MD: com/mojang/blaze3d/platform/GlStateManager$LogicOp/ ()V com/mojang/blaze3d/platform/GlStateManager$LogicOp/ ()V +MD: com/mojang/blaze3d/platform/GlStateManager$LogicOp/ (Ljava/lang/String;II)V com/mojang/blaze3d/platform/GlStateManager$LogicOp/ (Ljava/lang/String;II)V +MD: com/mojang/blaze3d/platform/GlStateManager$LogicOp/m_157125_ ()[Lcom/mojang/blaze3d/platform/GlStateManager$LogicOp; com/mojang/blaze3d/platform/GlStateManager$LogicOp/$values ()[Lcom/mojang/blaze3d/platform/GlStateManager$LogicOp; +MD: com/mojang/blaze3d/platform/GlStateManager$LogicOp/valueOf (Ljava/lang/String;)Lcom/mojang/blaze3d/platform/GlStateManager$LogicOp; com/mojang/blaze3d/platform/GlStateManager$LogicOp/valueOf (Ljava/lang/String;)Lcom/mojang/blaze3d/platform/GlStateManager$LogicOp; +MD: com/mojang/blaze3d/platform/GlStateManager$LogicOp/values ()[Lcom/mojang/blaze3d/platform/GlStateManager$LogicOp; com/mojang/blaze3d/platform/GlStateManager$LogicOp/values ()[Lcom/mojang/blaze3d/platform/GlStateManager$LogicOp; +MD: com/mojang/blaze3d/platform/GlStateManager$PolygonOffsetState/ ()V com/mojang/blaze3d/platform/GlStateManager$PolygonOffsetState/ ()V +MD: com/mojang/blaze3d/platform/GlStateManager$ScissorState/ ()V com/mojang/blaze3d/platform/GlStateManager$ScissorState/ ()V +MD: com/mojang/blaze3d/platform/GlStateManager$SourceFactor/$values ()[Lcom/mojang/blaze3d/platform/GlStateManager$SourceFactor; com/mojang/blaze3d/platform/GlStateManager$SourceFactor/$values ()[Lcom/mojang/blaze3d/platform/GlStateManager$SourceFactor; +MD: com/mojang/blaze3d/platform/GlStateManager$SourceFactor/ ()V com/mojang/blaze3d/platform/GlStateManager$SourceFactor/ ()V +MD: com/mojang/blaze3d/platform/GlStateManager$SourceFactor/ (Ljava/lang/String;II)V com/mojang/blaze3d/platform/GlStateManager$SourceFactor/ (Ljava/lang/String;II)V +MD: com/mojang/blaze3d/platform/GlStateManager$SourceFactor/valueOf (Ljava/lang/String;)Lcom/mojang/blaze3d/platform/GlStateManager$SourceFactor; com/mojang/blaze3d/platform/GlStateManager$SourceFactor/valueOf (Ljava/lang/String;)Lcom/mojang/blaze3d/platform/GlStateManager$SourceFactor; +MD: com/mojang/blaze3d/platform/GlStateManager$SourceFactor/values ()[Lcom/mojang/blaze3d/platform/GlStateManager$SourceFactor; com/mojang/blaze3d/platform/GlStateManager$SourceFactor/values ()[Lcom/mojang/blaze3d/platform/GlStateManager$SourceFactor; +MD: com/mojang/blaze3d/platform/GlStateManager$StencilFunc/ ()V com/mojang/blaze3d/platform/GlStateManager$StencilFunc/ ()V +MD: com/mojang/blaze3d/platform/GlStateManager$StencilState/ ()V com/mojang/blaze3d/platform/GlStateManager$StencilState/ ()V +MD: com/mojang/blaze3d/platform/GlStateManager$TextureState/ ()V com/mojang/blaze3d/platform/GlStateManager$TextureState/ ()V +MD: com/mojang/blaze3d/platform/GlStateManager$Viewport/ ()V com/mojang/blaze3d/platform/GlStateManager$Viewport/ ()V +MD: com/mojang/blaze3d/platform/GlStateManager$Viewport/ (Ljava/lang/String;I)V com/mojang/blaze3d/platform/GlStateManager$Viewport/ (Ljava/lang/String;I)V +MD: com/mojang/blaze3d/platform/GlStateManager$Viewport/m_157126_ ()I com/mojang/blaze3d/platform/GlStateManager$Viewport/x ()I +MD: com/mojang/blaze3d/platform/GlStateManager$Viewport/m_157127_ ()I com/mojang/blaze3d/platform/GlStateManager$Viewport/y ()I +MD: com/mojang/blaze3d/platform/GlStateManager$Viewport/m_157128_ ()I com/mojang/blaze3d/platform/GlStateManager$Viewport/width ()I +MD: com/mojang/blaze3d/platform/GlStateManager$Viewport/m_157129_ ()I com/mojang/blaze3d/platform/GlStateManager$Viewport/height ()I +MD: com/mojang/blaze3d/platform/GlStateManager$Viewport/m_157130_ ()[Lcom/mojang/blaze3d/platform/GlStateManager$Viewport; com/mojang/blaze3d/platform/GlStateManager$Viewport/$values ()[Lcom/mojang/blaze3d/platform/GlStateManager$Viewport; +MD: com/mojang/blaze3d/platform/GlStateManager$Viewport/valueOf (Ljava/lang/String;)Lcom/mojang/blaze3d/platform/GlStateManager$Viewport; com/mojang/blaze3d/platform/GlStateManager$Viewport/valueOf (Ljava/lang/String;)Lcom/mojang/blaze3d/platform/GlStateManager$Viewport; +MD: com/mojang/blaze3d/platform/GlStateManager$Viewport/values ()[Lcom/mojang/blaze3d/platform/GlStateManager$Viewport; com/mojang/blaze3d/platform/GlStateManager$Viewport/values ()[Lcom/mojang/blaze3d/platform/GlStateManager$Viewport; +MD: com/mojang/blaze3d/platform/GlUtil/ ()V com/mojang/blaze3d/platform/GlUtil/ ()V +MD: com/mojang/blaze3d/platform/GlUtil/m_166247_ (I)Ljava/nio/ByteBuffer; com/mojang/blaze3d/platform/GlUtil/allocateMemory (I)Ljava/nio/ByteBuffer; +MD: com/mojang/blaze3d/platform/GlUtil/m_166251_ (Ljava/nio/Buffer;)V com/mojang/blaze3d/platform/GlUtil/freeMemory (Ljava/nio/Buffer;)V +MD: com/mojang/blaze3d/platform/GlUtil/m_84818_ ()Ljava/lang/String; com/mojang/blaze3d/platform/GlUtil/getVendor ()Ljava/lang/String; +MD: com/mojang/blaze3d/platform/GlUtil/m_84819_ ()Ljava/lang/String; com/mojang/blaze3d/platform/GlUtil/getCpuInfo ()Ljava/lang/String; +MD: com/mojang/blaze3d/platform/GlUtil/m_84820_ ()Ljava/lang/String; com/mojang/blaze3d/platform/GlUtil/getRenderer ()Ljava/lang/String; +MD: com/mojang/blaze3d/platform/GlUtil/m_84821_ ()Ljava/lang/String; com/mojang/blaze3d/platform/GlUtil/getOpenGLVersion ()Ljava/lang/String; +MD: com/mojang/blaze3d/platform/IconSet/ ()V com/mojang/blaze3d/platform/IconSet/ ()V +MD: com/mojang/blaze3d/platform/IconSet/ (Ljava/lang/String;I[Ljava/lang/String;)V com/mojang/blaze3d/platform/IconSet/ (Ljava/lang/String;I[Ljava/lang/String;)V +MD: com/mojang/blaze3d/platform/IconSet/m_280095_ (Lnet/minecraft/server/packs/PackResources;)Lnet/minecraft/server/packs/resources/IoSupplier; com/mojang/blaze3d/platform/IconSet/getMacIcon (Lnet/minecraft/server/packs/PackResources;)Lnet/minecraft/server/packs/resources/IoSupplier; +MD: com/mojang/blaze3d/platform/IconSet/m_280117_ (Lnet/minecraft/server/packs/PackResources;Ljava/lang/String;)Lnet/minecraft/server/packs/resources/IoSupplier; com/mojang/blaze3d/platform/IconSet/getFile (Lnet/minecraft/server/packs/PackResources;Ljava/lang/String;)Lnet/minecraft/server/packs/resources/IoSupplier; +MD: com/mojang/blaze3d/platform/IconSet/m_280284_ (Lnet/minecraft/server/packs/PackResources;)Ljava/util/List; com/mojang/blaze3d/platform/IconSet/getStandardIcons (Lnet/minecraft/server/packs/PackResources;)Ljava/util/List; +MD: com/mojang/blaze3d/platform/IconSet/m_280441_ ()[Lcom/mojang/blaze3d/platform/IconSet; com/mojang/blaze3d/platform/IconSet/$values ()[Lcom/mojang/blaze3d/platform/IconSet; +MD: com/mojang/blaze3d/platform/IconSet/valueOf (Ljava/lang/String;)Lcom/mojang/blaze3d/platform/IconSet; com/mojang/blaze3d/platform/IconSet/valueOf (Ljava/lang/String;)Lcom/mojang/blaze3d/platform/IconSet; +MD: com/mojang/blaze3d/platform/IconSet/values ()[Lcom/mojang/blaze3d/platform/IconSet; com/mojang/blaze3d/platform/IconSet/values ()[Lcom/mojang/blaze3d/platform/IconSet; +MD: com/mojang/blaze3d/platform/InputConstants/ ()V com/mojang/blaze3d/platform/InputConstants/ ()V +MD: com/mojang/blaze3d/platform/InputConstants/ ()V com/mojang/blaze3d/platform/InputConstants/ ()V +MD: com/mojang/blaze3d/platform/InputConstants/m_84826_ ()Z com/mojang/blaze3d/platform/InputConstants/isRawMouseInputSupported ()Z +MD: com/mojang/blaze3d/platform/InputConstants/m_84827_ (II)Lcom/mojang/blaze3d/platform/InputConstants$Key; com/mojang/blaze3d/platform/InputConstants/getKey (II)Lcom/mojang/blaze3d/platform/InputConstants$Key; +MD: com/mojang/blaze3d/platform/InputConstants/m_84830_ (JI)Z com/mojang/blaze3d/platform/InputConstants/isKeyDown (JI)Z +MD: com/mojang/blaze3d/platform/InputConstants/m_84833_ (JIDD)V com/mojang/blaze3d/platform/InputConstants/grabOrReleaseMouse (JIDD)V +MD: com/mojang/blaze3d/platform/InputConstants/m_84838_ (JLorg/lwjgl/glfw/GLFWCursorPosCallbackI;Lorg/lwjgl/glfw/GLFWMouseButtonCallbackI;Lorg/lwjgl/glfw/GLFWScrollCallbackI;Lorg/lwjgl/glfw/GLFWDropCallbackI;)V com/mojang/blaze3d/platform/InputConstants/setupMouseCallbacks (JLorg/lwjgl/glfw/GLFWCursorPosCallbackI;Lorg/lwjgl/glfw/GLFWMouseButtonCallbackI;Lorg/lwjgl/glfw/GLFWScrollCallbackI;Lorg/lwjgl/glfw/GLFWDropCallbackI;)V +MD: com/mojang/blaze3d/platform/InputConstants/m_84844_ (JLorg/lwjgl/glfw/GLFWKeyCallbackI;Lorg/lwjgl/glfw/GLFWCharModsCallbackI;)V com/mojang/blaze3d/platform/InputConstants/setupKeyboardCallbacks (JLorg/lwjgl/glfw/GLFWKeyCallbackI;Lorg/lwjgl/glfw/GLFWCharModsCallbackI;)V +MD: com/mojang/blaze3d/platform/InputConstants/m_84848_ (JZ)V com/mojang/blaze3d/platform/InputConstants/updateRawMouseInput (JZ)V +MD: com/mojang/blaze3d/platform/InputConstants/m_84851_ (Ljava/lang/String;)Lcom/mojang/blaze3d/platform/InputConstants$Key; com/mojang/blaze3d/platform/InputConstants/getKey (Ljava/lang/String;)Lcom/mojang/blaze3d/platform/InputConstants$Key; +MD: com/mojang/blaze3d/platform/InputConstants$Key/ ()V com/mojang/blaze3d/platform/InputConstants$Key/ ()V +MD: com/mojang/blaze3d/platform/InputConstants$Key/ (Ljava/lang/String;Lcom/mojang/blaze3d/platform/InputConstants$Type;I)V com/mojang/blaze3d/platform/InputConstants$Key/ (Ljava/lang/String;Lcom/mojang/blaze3d/platform/InputConstants$Type;I)V +MD: com/mojang/blaze3d/platform/InputConstants$Key/equals (Ljava/lang/Object;)Z com/mojang/blaze3d/platform/InputConstants$Key/equals (Ljava/lang/Object;)Z +MD: com/mojang/blaze3d/platform/InputConstants$Key/hashCode ()I com/mojang/blaze3d/platform/InputConstants$Key/hashCode ()I +MD: com/mojang/blaze3d/platform/InputConstants$Key/m_84868_ ()Lcom/mojang/blaze3d/platform/InputConstants$Type; com/mojang/blaze3d/platform/InputConstants$Key/getType ()Lcom/mojang/blaze3d/platform/InputConstants$Type; +MD: com/mojang/blaze3d/platform/InputConstants$Key/m_84869_ (Lcom/mojang/blaze3d/platform/InputConstants$Type;ILjava/lang/String;)Lnet/minecraft/network/chat/Component; com/mojang/blaze3d/platform/InputConstants$Key/lambda$new$0 (Lcom/mojang/blaze3d/platform/InputConstants$Type;ILjava/lang/String;)Lnet/minecraft/network/chat/Component; +MD: com/mojang/blaze3d/platform/InputConstants$Key/m_84873_ ()I com/mojang/blaze3d/platform/InputConstants$Key/getValue ()I +MD: com/mojang/blaze3d/platform/InputConstants$Key/m_84874_ ()Ljava/lang/String; com/mojang/blaze3d/platform/InputConstants$Key/getName ()Ljava/lang/String; +MD: com/mojang/blaze3d/platform/InputConstants$Key/m_84875_ ()Lnet/minecraft/network/chat/Component; com/mojang/blaze3d/platform/InputConstants$Key/getDisplayName ()Lnet/minecraft/network/chat/Component; +MD: com/mojang/blaze3d/platform/InputConstants$Key/m_84876_ ()Ljava/util/OptionalInt; com/mojang/blaze3d/platform/InputConstants$Key/getNumericKeyValue ()Ljava/util/OptionalInt; +MD: com/mojang/blaze3d/platform/InputConstants$Key/toString ()Ljava/lang/String; com/mojang/blaze3d/platform/InputConstants$Key/toString ()Ljava/lang/String; +MD: com/mojang/blaze3d/platform/InputConstants$Type/ ()V com/mojang/blaze3d/platform/InputConstants$Type/ ()V +MD: com/mojang/blaze3d/platform/InputConstants$Type/ (Ljava/lang/String;ILjava/lang/String;Ljava/util/function/BiFunction;)V com/mojang/blaze3d/platform/InputConstants$Type/ (Ljava/lang/String;ILjava/lang/String;Ljava/util/function/BiFunction;)V +MD: com/mojang/blaze3d/platform/InputConstants$Type/m_166380_ ()[Lcom/mojang/blaze3d/platform/InputConstants$Type; com/mojang/blaze3d/platform/InputConstants$Type/$values ()[Lcom/mojang/blaze3d/platform/InputConstants$Type; +MD: com/mojang/blaze3d/platform/InputConstants$Type/m_287794_ (Ljava/lang/Integer;Ljava/lang/String;)Lnet/minecraft/network/chat/Component; com/mojang/blaze3d/platform/InputConstants$Type/lambda$static$0 (Ljava/lang/Integer;Ljava/lang/String;)Lnet/minecraft/network/chat/Component; +MD: com/mojang/blaze3d/platform/InputConstants$Type/m_84895_ (I)Lcom/mojang/blaze3d/platform/InputConstants$Key; com/mojang/blaze3d/platform/InputConstants$Type/getOrCreate (I)Lcom/mojang/blaze3d/platform/InputConstants$Key; +MD: com/mojang/blaze3d/platform/InputConstants$Type/m_84899_ (Lcom/mojang/blaze3d/platform/InputConstants$Type;Ljava/lang/String;I)V com/mojang/blaze3d/platform/InputConstants$Type/addKey (Lcom/mojang/blaze3d/platform/InputConstants$Type;Ljava/lang/String;I)V +MD: com/mojang/blaze3d/platform/InputConstants$Type/m_84903_ (Ljava/lang/Integer;Ljava/lang/String;)Lnet/minecraft/network/chat/Component; com/mojang/blaze3d/platform/InputConstants$Type/lambda$static$2 (Ljava/lang/Integer;Ljava/lang/String;)Lnet/minecraft/network/chat/Component; +MD: com/mojang/blaze3d/platform/InputConstants$Type/m_84906_ (I)Lcom/mojang/blaze3d/platform/InputConstants$Key; com/mojang/blaze3d/platform/InputConstants$Type/lambda$getOrCreate$3 (I)Lcom/mojang/blaze3d/platform/InputConstants$Key; +MD: com/mojang/blaze3d/platform/InputConstants$Type/m_84910_ (Ljava/lang/Integer;Ljava/lang/String;)Lnet/minecraft/network/chat/Component; com/mojang/blaze3d/platform/InputConstants$Type/lambda$static$1 (Ljava/lang/Integer;Ljava/lang/String;)Lnet/minecraft/network/chat/Component; +MD: com/mojang/blaze3d/platform/InputConstants$Type/valueOf (Ljava/lang/String;)Lcom/mojang/blaze3d/platform/InputConstants$Type; com/mojang/blaze3d/platform/InputConstants$Type/valueOf (Ljava/lang/String;)Lcom/mojang/blaze3d/platform/InputConstants$Type; +MD: com/mojang/blaze3d/platform/InputConstants$Type/values ()[Lcom/mojang/blaze3d/platform/InputConstants$Type; com/mojang/blaze3d/platform/InputConstants$Type/values ()[Lcom/mojang/blaze3d/platform/InputConstants$Type; +MD: com/mojang/blaze3d/platform/Lighting/ ()V com/mojang/blaze3d/platform/Lighting/ ()V +MD: com/mojang/blaze3d/platform/Lighting/ ()V com/mojang/blaze3d/platform/Lighting/ ()V +MD: com/mojang/blaze3d/platform/Lighting/m_166384_ ()V com/mojang/blaze3d/platform/Lighting/setupForEntityInInventory ()V +MD: com/mojang/blaze3d/platform/Lighting/m_252756_ (Lorg/joml/Matrix4f;)V com/mojang/blaze3d/platform/Lighting/setupLevel (Lorg/joml/Matrix4f;)V +MD: com/mojang/blaze3d/platform/Lighting/m_252995_ (Lorg/joml/Matrix4f;)V com/mojang/blaze3d/platform/Lighting/setupNetherLevel (Lorg/joml/Matrix4f;)V +MD: com/mojang/blaze3d/platform/Lighting/m_84930_ ()V com/mojang/blaze3d/platform/Lighting/setupForFlatItems ()V +MD: com/mojang/blaze3d/platform/Lighting/m_84931_ ()V com/mojang/blaze3d/platform/Lighting/setupFor3DItems ()V +MD: com/mojang/blaze3d/platform/MacosUtil/ ()V com/mojang/blaze3d/platform/MacosUtil/ ()V +MD: com/mojang/blaze3d/platform/MacosUtil/m_182517_ (J)V com/mojang/blaze3d/platform/MacosUtil/toggleFullscreen (J)V +MD: com/mojang/blaze3d/platform/MacosUtil/m_182519_ (Lca/weblite/objc/NSObject;)Z com/mojang/blaze3d/platform/MacosUtil/isInKioskMode (Lca/weblite/objc/NSObject;)Z +MD: com/mojang/blaze3d/platform/MacosUtil/m_182521_ (J)Ljava/util/Optional; com/mojang/blaze3d/platform/MacosUtil/getNsWindow (J)Ljava/util/Optional; +MD: com/mojang/blaze3d/platform/MacosUtil/m_182523_ (Lca/weblite/objc/NSObject;)V com/mojang/blaze3d/platform/MacosUtil/toggleFullscreen (Lca/weblite/objc/NSObject;)V +MD: com/mojang/blaze3d/platform/MacosUtil/m_247671_ (Lnet/minecraft/server/packs/resources/IoSupplier;)V com/mojang/blaze3d/platform/MacosUtil/loadIcon (Lnet/minecraft/server/packs/resources/IoSupplier;)V +MD: com/mojang/blaze3d/platform/MemoryTracker/ ()V com/mojang/blaze3d/platform/MemoryTracker/ ()V +MD: com/mojang/blaze3d/platform/MemoryTracker/ ()V com/mojang/blaze3d/platform/MemoryTracker/ ()V +MD: com/mojang/blaze3d/platform/MemoryTracker/m_182527_ (I)Ljava/nio/ByteBuffer; com/mojang/blaze3d/platform/MemoryTracker/create (I)Ljava/nio/ByteBuffer; +MD: com/mojang/blaze3d/platform/MemoryTracker/m_182529_ (Ljava/nio/ByteBuffer;I)Ljava/nio/ByteBuffer; com/mojang/blaze3d/platform/MemoryTracker/resize (Ljava/nio/ByteBuffer;I)Ljava/nio/ByteBuffer; +MD: com/mojang/blaze3d/platform/Monitor/ (J)V com/mojang/blaze3d/platform/Monitor/ (J)V +MD: com/mojang/blaze3d/platform/Monitor/m_84943_ ()V com/mojang/blaze3d/platform/Monitor/refreshVideoModes ()V +MD: com/mojang/blaze3d/platform/Monitor/m_84944_ (I)Lcom/mojang/blaze3d/platform/VideoMode; com/mojang/blaze3d/platform/Monitor/getMode (I)Lcom/mojang/blaze3d/platform/VideoMode; +MD: com/mojang/blaze3d/platform/Monitor/m_84946_ (Lcom/mojang/blaze3d/platform/VideoMode;)I com/mojang/blaze3d/platform/Monitor/getVideoModeIndex (Lcom/mojang/blaze3d/platform/VideoMode;)I +MD: com/mojang/blaze3d/platform/Monitor/m_84948_ (Ljava/util/Optional;)Lcom/mojang/blaze3d/platform/VideoMode; com/mojang/blaze3d/platform/Monitor/getPreferredVidMode (Ljava/util/Optional;)Lcom/mojang/blaze3d/platform/VideoMode; +MD: com/mojang/blaze3d/platform/Monitor/m_84950_ ()Lcom/mojang/blaze3d/platform/VideoMode; com/mojang/blaze3d/platform/Monitor/getCurrentMode ()Lcom/mojang/blaze3d/platform/VideoMode; +MD: com/mojang/blaze3d/platform/Monitor/m_84951_ ()I com/mojang/blaze3d/platform/Monitor/getX ()I +MD: com/mojang/blaze3d/platform/Monitor/m_84952_ ()I com/mojang/blaze3d/platform/Monitor/getY ()I +MD: com/mojang/blaze3d/platform/Monitor/m_84953_ ()I com/mojang/blaze3d/platform/Monitor/getModeCount ()I +MD: com/mojang/blaze3d/platform/Monitor/m_84954_ ()J com/mojang/blaze3d/platform/Monitor/getMonitor ()J +MD: com/mojang/blaze3d/platform/Monitor/toString ()Ljava/lang/String; com/mojang/blaze3d/platform/Monitor/toString ()Ljava/lang/String; +MD: com/mojang/blaze3d/platform/MonitorCreator/m_84956_ (J)Lcom/mojang/blaze3d/platform/Monitor; com/mojang/blaze3d/platform/MonitorCreator/createMonitor (J)Lcom/mojang/blaze3d/platform/Monitor; +MD: com/mojang/blaze3d/platform/NativeImage/ ()V com/mojang/blaze3d/platform/NativeImage/ ()V +MD: com/mojang/blaze3d/platform/NativeImage/ (Lcom/mojang/blaze3d/platform/NativeImage$Format;IIZ)V com/mojang/blaze3d/platform/NativeImage/ (Lcom/mojang/blaze3d/platform/NativeImage$Format;IIZ)V +MD: com/mojang/blaze3d/platform/NativeImage/ (IIZ)V com/mojang/blaze3d/platform/NativeImage/ (IIZ)V +MD: com/mojang/blaze3d/platform/NativeImage/ (Lcom/mojang/blaze3d/platform/NativeImage$Format;IIZJ)V com/mojang/blaze3d/platform/NativeImage/ (Lcom/mojang/blaze3d/platform/NativeImage$Format;IIZJ)V +MD: com/mojang/blaze3d/platform/NativeImage/close ()V com/mojang/blaze3d/platform/NativeImage/close ()V +MD: com/mojang/blaze3d/platform/NativeImage/m_166400_ (F)V com/mojang/blaze3d/platform/NativeImage/downloadDepthBuffer (F)V +MD: com/mojang/blaze3d/platform/NativeImage/m_166402_ (IIB)V com/mojang/blaze3d/platform/NativeImage/setPixelLuminance (IIB)V +MD: com/mojang/blaze3d/platform/NativeImage/m_166408_ (II)B com/mojang/blaze3d/platform/NativeImage/getRedOrLuminance (II)B +MD: com/mojang/blaze3d/platform/NativeImage/m_166411_ (III)V com/mojang/blaze3d/platform/NativeImage/blendPixel (III)V +MD: com/mojang/blaze3d/platform/NativeImage/m_166415_ (II)B com/mojang/blaze3d/platform/NativeImage/getGreenOrLuminance (II)B +MD: com/mojang/blaze3d/platform/NativeImage/m_166418_ (II)B com/mojang/blaze3d/platform/NativeImage/getBlueOrLuminance (II)B +MD: com/mojang/blaze3d/platform/NativeImage/m_166421_ ()V com/mojang/blaze3d/platform/NativeImage/drawPixels ()V +MD: com/mojang/blaze3d/platform/NativeImage/m_166422_ (II)Z com/mojang/blaze3d/platform/NativeImage/isOutsideBounds (II)Z +MD: com/mojang/blaze3d/platform/NativeImage/m_260930_ (Lcom/mojang/blaze3d/platform/NativeImage;IIIIIIZZ)V com/mojang/blaze3d/platform/NativeImage/copyRect (Lcom/mojang/blaze3d/platform/NativeImage;IIIIIIZZ)V +MD: com/mojang/blaze3d/platform/NativeImage/m_266370_ ()[I com/mojang/blaze3d/platform/NativeImage/getPixelsRGBA ()[I +MD: com/mojang/blaze3d/platform/NativeImage/m_266528_ (Ljava/util/function/IntUnaryOperator;)Lcom/mojang/blaze3d/platform/NativeImage; com/mojang/blaze3d/platform/NativeImage/mappedCopy (Ljava/util/function/IntUnaryOperator;)Lcom/mojang/blaze3d/platform/NativeImage; +MD: com/mojang/blaze3d/platform/NativeImage/m_271751_ ([B)Lcom/mojang/blaze3d/platform/NativeImage; com/mojang/blaze3d/platform/NativeImage/read ([B)Lcom/mojang/blaze3d/platform/NativeImage; +MD: com/mojang/blaze3d/platform/NativeImage/m_284481_ (Ljava/util/function/IntUnaryOperator;)V com/mojang/blaze3d/platform/NativeImage/applyToAllPixels (Ljava/util/function/IntUnaryOperator;)V +MD: com/mojang/blaze3d/platform/NativeImage/m_84982_ ()I com/mojang/blaze3d/platform/NativeImage/getWidth ()I +MD: com/mojang/blaze3d/platform/NativeImage/m_84985_ (II)I com/mojang/blaze3d/platform/NativeImage/getPixelRGBA (II)I +MD: com/mojang/blaze3d/platform/NativeImage/m_84988_ (III)V com/mojang/blaze3d/platform/NativeImage/setPixelRGBA (III)V +MD: com/mojang/blaze3d/platform/NativeImage/m_84997_ (IIIII)V com/mojang/blaze3d/platform/NativeImage/fillRect (IIIII)V +MD: com/mojang/blaze3d/platform/NativeImage/m_85003_ (IIIIIIIZZ)V com/mojang/blaze3d/platform/NativeImage/upload (IIIIIIIZZ)V +MD: com/mojang/blaze3d/platform/NativeImage/m_85013_ (IIIIIIIZZZZ)V com/mojang/blaze3d/platform/NativeImage/upload (IIIIIIIZZZZ)V +MD: com/mojang/blaze3d/platform/NativeImage/m_85025_ (IIIIIIZZ)V com/mojang/blaze3d/platform/NativeImage/copyRect (IIIIIIZZ)V +MD: com/mojang/blaze3d/platform/NativeImage/m_85034_ (IIIILcom/mojang/blaze3d/platform/NativeImage;)V com/mojang/blaze3d/platform/NativeImage/resizeSubRectTo (IIIILcom/mojang/blaze3d/platform/NativeImage;)V +MD: com/mojang/blaze3d/platform/NativeImage/m_85040_ (IIIZ)V com/mojang/blaze3d/platform/NativeImage/upload (IIIZ)V +MD: com/mojang/blaze3d/platform/NativeImage/m_85045_ (IZ)V com/mojang/blaze3d/platform/NativeImage/downloadTexture (IZ)V +MD: com/mojang/blaze3d/platform/NativeImage/m_85048_ (Lcom/mojang/blaze3d/platform/NativeImage$Format;Ljava/io/InputStream;)Lcom/mojang/blaze3d/platform/NativeImage; com/mojang/blaze3d/platform/NativeImage/read (Lcom/mojang/blaze3d/platform/NativeImage$Format;Ljava/io/InputStream;)Lcom/mojang/blaze3d/platform/NativeImage; +MD: com/mojang/blaze3d/platform/NativeImage/m_85051_ (Lcom/mojang/blaze3d/platform/NativeImage$Format;Ljava/nio/ByteBuffer;)Lcom/mojang/blaze3d/platform/NativeImage; com/mojang/blaze3d/platform/NativeImage/read (Lcom/mojang/blaze3d/platform/NativeImage$Format;Ljava/nio/ByteBuffer;)Lcom/mojang/blaze3d/platform/NativeImage; +MD: com/mojang/blaze3d/platform/NativeImage/m_85054_ (Lcom/mojang/blaze3d/platform/NativeImage;)V com/mojang/blaze3d/platform/NativeImage/copyFrom (Lcom/mojang/blaze3d/platform/NativeImage;)V +MD: com/mojang/blaze3d/platform/NativeImage/m_85056_ (Ljava/io/File;)V com/mojang/blaze3d/platform/NativeImage/writeToFile (Ljava/io/File;)V +MD: com/mojang/blaze3d/platform/NativeImage/m_85058_ (Ljava/io/InputStream;)Lcom/mojang/blaze3d/platform/NativeImage; com/mojang/blaze3d/platform/NativeImage/read (Ljava/io/InputStream;)Lcom/mojang/blaze3d/platform/NativeImage; +MD: com/mojang/blaze3d/platform/NativeImage/m_85062_ (Ljava/nio/ByteBuffer;)Lcom/mojang/blaze3d/platform/NativeImage; com/mojang/blaze3d/platform/NativeImage/read (Ljava/nio/ByteBuffer;)Lcom/mojang/blaze3d/platform/NativeImage; +MD: com/mojang/blaze3d/platform/NativeImage/m_85064_ (Ljava/nio/channels/WritableByteChannel;)Z com/mojang/blaze3d/platform/NativeImage/writeToChannel (Ljava/nio/channels/WritableByteChannel;)Z +MD: com/mojang/blaze3d/platform/NativeImage/m_85066_ (Ljava/nio/file/Path;)V com/mojang/blaze3d/platform/NativeImage/writeToFile (Ljava/nio/file/Path;)V +MD: com/mojang/blaze3d/platform/NativeImage/m_85068_ (Lorg/lwjgl/stb/STBTTFontinfo;IIIFFFFII)V com/mojang/blaze3d/platform/NativeImage/copyFromFont (Lorg/lwjgl/stb/STBTTFontinfo;IIIFFFFII)V +MD: com/mojang/blaze3d/platform/NativeImage/m_85081_ (ZZ)V com/mojang/blaze3d/platform/NativeImage/setFilter (ZZ)V +MD: com/mojang/blaze3d/platform/NativeImage/m_85084_ ()I com/mojang/blaze3d/platform/NativeImage/getHeight ()I +MD: com/mojang/blaze3d/platform/NativeImage/m_85087_ (II)B com/mojang/blaze3d/platform/NativeImage/getLuminanceOrAlpha (II)B +MD: com/mojang/blaze3d/platform/NativeImage/m_85090_ (IIIIIIIZZZZ)V com/mojang/blaze3d/platform/NativeImage/_upload (IIIIIIIZZZZ)V +MD: com/mojang/blaze3d/platform/NativeImage/m_85102_ ()Lcom/mojang/blaze3d/platform/NativeImage$Format; com/mojang/blaze3d/platform/NativeImage/format ()Lcom/mojang/blaze3d/platform/NativeImage$Format; +MD: com/mojang/blaze3d/platform/NativeImage/m_85105_ (IIIIIIIZZZZ)V com/mojang/blaze3d/platform/NativeImage/lambda$upload$0 (IIIIIIIZZZZ)V +MD: com/mojang/blaze3d/platform/NativeImage/m_85118_ ()[I com/mojang/blaze3d/platform/NativeImage/makePixelArray ()[I +MD: com/mojang/blaze3d/platform/NativeImage/m_85121_ ()[B com/mojang/blaze3d/platform/NativeImage/asByteArray ()[B +MD: com/mojang/blaze3d/platform/NativeImage/m_85122_ ()V com/mojang/blaze3d/platform/NativeImage/flipY ()V +MD: com/mojang/blaze3d/platform/NativeImage/m_85123_ ()V com/mojang/blaze3d/platform/NativeImage/untrack ()V +MD: com/mojang/blaze3d/platform/NativeImage/m_85124_ ()V com/mojang/blaze3d/platform/NativeImage/checkAllocated ()V +MD: com/mojang/blaze3d/platform/NativeImage/toString ()Ljava/lang/String; com/mojang/blaze3d/platform/NativeImage/toString ()Ljava/lang/String; +MD: com/mojang/blaze3d/platform/NativeImage$Format/ ()V com/mojang/blaze3d/platform/NativeImage$Format/ ()V +MD: com/mojang/blaze3d/platform/NativeImage$Format/ (Ljava/lang/String;IIIZZZZZIIIIIZ)V com/mojang/blaze3d/platform/NativeImage$Format/ (Ljava/lang/String;IIIZZZZZIIIIIZ)V +MD: com/mojang/blaze3d/platform/NativeImage$Format/m_166425_ ()Z com/mojang/blaze3d/platform/NativeImage$Format/hasRed ()Z +MD: com/mojang/blaze3d/platform/NativeImage$Format/m_166426_ ()Z com/mojang/blaze3d/platform/NativeImage$Format/hasGreen ()Z +MD: com/mojang/blaze3d/platform/NativeImage$Format/m_166427_ ()Z com/mojang/blaze3d/platform/NativeImage$Format/hasBlue ()Z +MD: com/mojang/blaze3d/platform/NativeImage$Format/m_166428_ ()Z com/mojang/blaze3d/platform/NativeImage$Format/hasLuminance ()Z +MD: com/mojang/blaze3d/platform/NativeImage$Format/m_166429_ ()I com/mojang/blaze3d/platform/NativeImage$Format/redOffset ()I +MD: com/mojang/blaze3d/platform/NativeImage$Format/m_166430_ ()I com/mojang/blaze3d/platform/NativeImage$Format/greenOffset ()I +MD: com/mojang/blaze3d/platform/NativeImage$Format/m_166431_ ()I com/mojang/blaze3d/platform/NativeImage$Format/blueOffset ()I +MD: com/mojang/blaze3d/platform/NativeImage$Format/m_166432_ ()I com/mojang/blaze3d/platform/NativeImage$Format/luminanceOffset ()I +MD: com/mojang/blaze3d/platform/NativeImage$Format/m_166433_ ()Z com/mojang/blaze3d/platform/NativeImage$Format/hasLuminanceOrRed ()Z +MD: com/mojang/blaze3d/platform/NativeImage$Format/m_166434_ ()Z com/mojang/blaze3d/platform/NativeImage$Format/hasLuminanceOrGreen ()Z +MD: com/mojang/blaze3d/platform/NativeImage$Format/m_166435_ ()Z com/mojang/blaze3d/platform/NativeImage$Format/hasLuminanceOrBlue ()Z +MD: com/mojang/blaze3d/platform/NativeImage$Format/m_166436_ ()I com/mojang/blaze3d/platform/NativeImage$Format/luminanceOrRedOffset ()I +MD: com/mojang/blaze3d/platform/NativeImage$Format/m_166437_ ()I com/mojang/blaze3d/platform/NativeImage$Format/luminanceOrGreenOffset ()I +MD: com/mojang/blaze3d/platform/NativeImage$Format/m_166438_ ()I com/mojang/blaze3d/platform/NativeImage$Format/luminanceOrBlueOffset ()I +MD: com/mojang/blaze3d/platform/NativeImage$Format/m_166439_ ()[Lcom/mojang/blaze3d/platform/NativeImage$Format; com/mojang/blaze3d/platform/NativeImage$Format/$values ()[Lcom/mojang/blaze3d/platform/NativeImage$Format; +MD: com/mojang/blaze3d/platform/NativeImage$Format/m_85161_ ()I com/mojang/blaze3d/platform/NativeImage$Format/components ()I +MD: com/mojang/blaze3d/platform/NativeImage$Format/m_85166_ ()V com/mojang/blaze3d/platform/NativeImage$Format/setPackPixelStoreState ()V +MD: com/mojang/blaze3d/platform/NativeImage$Format/m_85167_ (I)Lcom/mojang/blaze3d/platform/NativeImage$Format; com/mojang/blaze3d/platform/NativeImage$Format/getStbFormat (I)Lcom/mojang/blaze3d/platform/NativeImage$Format; +MD: com/mojang/blaze3d/platform/NativeImage$Format/m_85169_ ()V com/mojang/blaze3d/platform/NativeImage$Format/setUnpackPixelStoreState ()V +MD: com/mojang/blaze3d/platform/NativeImage$Format/m_85170_ ()I com/mojang/blaze3d/platform/NativeImage$Format/glFormat ()I +MD: com/mojang/blaze3d/platform/NativeImage$Format/m_85171_ ()Z com/mojang/blaze3d/platform/NativeImage$Format/hasAlpha ()Z +MD: com/mojang/blaze3d/platform/NativeImage$Format/m_85172_ ()I com/mojang/blaze3d/platform/NativeImage$Format/alphaOffset ()I +MD: com/mojang/blaze3d/platform/NativeImage$Format/m_85173_ ()Z com/mojang/blaze3d/platform/NativeImage$Format/hasLuminanceOrAlpha ()Z +MD: com/mojang/blaze3d/platform/NativeImage$Format/m_85174_ ()I com/mojang/blaze3d/platform/NativeImage$Format/luminanceOrAlphaOffset ()I +MD: com/mojang/blaze3d/platform/NativeImage$Format/m_85175_ ()Z com/mojang/blaze3d/platform/NativeImage$Format/supportedByStb ()Z +MD: com/mojang/blaze3d/platform/NativeImage$Format/valueOf (Ljava/lang/String;)Lcom/mojang/blaze3d/platform/NativeImage$Format; com/mojang/blaze3d/platform/NativeImage$Format/valueOf (Ljava/lang/String;)Lcom/mojang/blaze3d/platform/NativeImage$Format; +MD: com/mojang/blaze3d/platform/NativeImage$Format/values ()[Lcom/mojang/blaze3d/platform/NativeImage$Format; com/mojang/blaze3d/platform/NativeImage$Format/values ()[Lcom/mojang/blaze3d/platform/NativeImage$Format; +MD: com/mojang/blaze3d/platform/NativeImage$InternalGlFormat/ ()V com/mojang/blaze3d/platform/NativeImage$InternalGlFormat/ ()V +MD: com/mojang/blaze3d/platform/NativeImage$InternalGlFormat/ (Ljava/lang/String;II)V com/mojang/blaze3d/platform/NativeImage$InternalGlFormat/ (Ljava/lang/String;II)V +MD: com/mojang/blaze3d/platform/NativeImage$InternalGlFormat/m_166442_ ()[Lcom/mojang/blaze3d/platform/NativeImage$InternalGlFormat; com/mojang/blaze3d/platform/NativeImage$InternalGlFormat/$values ()[Lcom/mojang/blaze3d/platform/NativeImage$InternalGlFormat; +MD: com/mojang/blaze3d/platform/NativeImage$InternalGlFormat/m_85191_ ()I com/mojang/blaze3d/platform/NativeImage$InternalGlFormat/glFormat ()I +MD: com/mojang/blaze3d/platform/NativeImage$InternalGlFormat/valueOf (Ljava/lang/String;)Lcom/mojang/blaze3d/platform/NativeImage$InternalGlFormat; com/mojang/blaze3d/platform/NativeImage$InternalGlFormat/valueOf (Ljava/lang/String;)Lcom/mojang/blaze3d/platform/NativeImage$InternalGlFormat; +MD: com/mojang/blaze3d/platform/NativeImage$InternalGlFormat/values ()[Lcom/mojang/blaze3d/platform/NativeImage$InternalGlFormat; com/mojang/blaze3d/platform/NativeImage$InternalGlFormat/values ()[Lcom/mojang/blaze3d/platform/NativeImage$InternalGlFormat; +MD: com/mojang/blaze3d/platform/NativeImage$WriteCallback/ (Ljava/nio/channels/WritableByteChannel;)V com/mojang/blaze3d/platform/NativeImage$WriteCallback/ (Ljava/nio/channels/WritableByteChannel;)V +MD: com/mojang/blaze3d/platform/NativeImage$WriteCallback/invoke (JJI)V com/mojang/blaze3d/platform/NativeImage$WriteCallback/invoke (JJI)V +MD: com/mojang/blaze3d/platform/NativeImage$WriteCallback/m_85202_ ()V com/mojang/blaze3d/platform/NativeImage$WriteCallback/throwIfException ()V +MD: com/mojang/blaze3d/platform/ScreenManager/ ()V com/mojang/blaze3d/platform/ScreenManager/ ()V +MD: com/mojang/blaze3d/platform/ScreenManager/ (Lcom/mojang/blaze3d/platform/MonitorCreator;)V com/mojang/blaze3d/platform/ScreenManager/ (Lcom/mojang/blaze3d/platform/MonitorCreator;)V +MD: com/mojang/blaze3d/platform/ScreenManager/m_85266_ ()V com/mojang/blaze3d/platform/ScreenManager/shutdown ()V +MD: com/mojang/blaze3d/platform/ScreenManager/m_85267_ (III)I com/mojang/blaze3d/platform/ScreenManager/clamp (III)I +MD: com/mojang/blaze3d/platform/ScreenManager/m_85271_ (J)Lcom/mojang/blaze3d/platform/Monitor; com/mojang/blaze3d/platform/ScreenManager/getMonitor (J)Lcom/mojang/blaze3d/platform/Monitor; +MD: com/mojang/blaze3d/platform/ScreenManager/m_85273_ (JI)V com/mojang/blaze3d/platform/ScreenManager/onMonitorChange (JI)V +MD: com/mojang/blaze3d/platform/ScreenManager/m_85276_ (Lcom/mojang/blaze3d/platform/Window;)Lcom/mojang/blaze3d/platform/Monitor; com/mojang/blaze3d/platform/ScreenManager/findBestMonitor (Lcom/mojang/blaze3d/platform/Window;)Lcom/mojang/blaze3d/platform/Monitor; +MD: com/mojang/blaze3d/platform/TextureUtil/ ()V com/mojang/blaze3d/platform/TextureUtil/ ()V +MD: com/mojang/blaze3d/platform/TextureUtil/ ()V com/mojang/blaze3d/platform/TextureUtil/ ()V +MD: com/mojang/blaze3d/platform/TextureUtil/bind (I)V com/mojang/blaze3d/platform/TextureUtil/bind (I)V +MD: com/mojang/blaze3d/platform/TextureUtil/generateTextureId ()I com/mojang/blaze3d/platform/TextureUtil/generateTextureId ()I +MD: com/mojang/blaze3d/platform/TextureUtil/getDebugTexturePath (Ljava/nio/file/Path;)Ljava/nio/file/Path; com/mojang/blaze3d/platform/TextureUtil/getDebugTexturePath (Ljava/nio/file/Path;)Ljava/nio/file/Path; +MD: com/mojang/blaze3d/platform/TextureUtil/getDebugTexturePath ()Ljava/nio/file/Path; com/mojang/blaze3d/platform/TextureUtil/getDebugTexturePath ()Ljava/nio/file/Path; +MD: com/mojang/blaze3d/platform/TextureUtil/prepareImage (Lcom/mojang/blaze3d/platform/NativeImage$InternalGlFormat;IIII)V com/mojang/blaze3d/platform/TextureUtil/prepareImage (Lcom/mojang/blaze3d/platform/NativeImage$InternalGlFormat;IIII)V +MD: com/mojang/blaze3d/platform/TextureUtil/prepareImage (Lcom/mojang/blaze3d/platform/NativeImage$InternalGlFormat;III)V com/mojang/blaze3d/platform/TextureUtil/prepareImage (Lcom/mojang/blaze3d/platform/NativeImage$InternalGlFormat;III)V +MD: com/mojang/blaze3d/platform/TextureUtil/prepareImage (IIII)V com/mojang/blaze3d/platform/TextureUtil/prepareImage (IIII)V +MD: com/mojang/blaze3d/platform/TextureUtil/prepareImage (III)V com/mojang/blaze3d/platform/TextureUtil/prepareImage (III)V +MD: com/mojang/blaze3d/platform/TextureUtil/readResource (Ljava/nio/channels/ReadableByteChannel;I)Ljava/nio/ByteBuffer; com/mojang/blaze3d/platform/TextureUtil/readResource (Ljava/nio/channels/ReadableByteChannel;I)Ljava/nio/ByteBuffer; +MD: com/mojang/blaze3d/platform/TextureUtil/readResource (Ljava/io/InputStream;)Ljava/nio/ByteBuffer; com/mojang/blaze3d/platform/TextureUtil/readResource (Ljava/io/InputStream;)Ljava/nio/ByteBuffer; +MD: com/mojang/blaze3d/platform/TextureUtil/releaseTextureId (I)V com/mojang/blaze3d/platform/TextureUtil/releaseTextureId (I)V +MD: com/mojang/blaze3d/platform/TextureUtil/writeAsPNG (Ljava/nio/file/Path;Ljava/lang/String;IIII)V com/mojang/blaze3d/platform/TextureUtil/writeAsPNG (Ljava/nio/file/Path;Ljava/lang/String;IIII)V +MD: com/mojang/blaze3d/platform/TextureUtil/writeAsPNG (Ljava/nio/file/Path;Ljava/lang/String;IIIILjava/util/function/IntUnaryOperator;)V com/mojang/blaze3d/platform/TextureUtil/writeAsPNG (Ljava/nio/file/Path;Ljava/lang/String;IIIILjava/util/function/IntUnaryOperator;)V +MD: com/mojang/blaze3d/platform/VideoMode/ ()V com/mojang/blaze3d/platform/VideoMode/ ()V +MD: com/mojang/blaze3d/platform/VideoMode/ (Lorg/lwjgl/glfw/GLFWVidMode;)V com/mojang/blaze3d/platform/VideoMode/ (Lorg/lwjgl/glfw/GLFWVidMode;)V +MD: com/mojang/blaze3d/platform/VideoMode/ (IIIIII)V com/mojang/blaze3d/platform/VideoMode/ (IIIIII)V +MD: com/mojang/blaze3d/platform/VideoMode/ (Lorg/lwjgl/glfw/GLFWVidMode$Buffer;)V com/mojang/blaze3d/platform/VideoMode/ (Lorg/lwjgl/glfw/GLFWVidMode$Buffer;)V +MD: com/mojang/blaze3d/platform/VideoMode/equals (Ljava/lang/Object;)Z com/mojang/blaze3d/platform/VideoMode/equals (Ljava/lang/Object;)Z +MD: com/mojang/blaze3d/platform/VideoMode/hashCode ()I com/mojang/blaze3d/platform/VideoMode/hashCode ()I +MD: com/mojang/blaze3d/platform/VideoMode/m_85332_ ()I com/mojang/blaze3d/platform/VideoMode/getWidth ()I +MD: com/mojang/blaze3d/platform/VideoMode/m_85333_ (Ljava/lang/String;)Ljava/util/Optional; com/mojang/blaze3d/platform/VideoMode/read (Ljava/lang/String;)Ljava/util/Optional; +MD: com/mojang/blaze3d/platform/VideoMode/m_85335_ ()I com/mojang/blaze3d/platform/VideoMode/getHeight ()I +MD: com/mojang/blaze3d/platform/VideoMode/m_85336_ ()I com/mojang/blaze3d/platform/VideoMode/getRedBits ()I +MD: com/mojang/blaze3d/platform/VideoMode/m_85337_ ()I com/mojang/blaze3d/platform/VideoMode/getGreenBits ()I +MD: com/mojang/blaze3d/platform/VideoMode/m_85338_ ()I com/mojang/blaze3d/platform/VideoMode/getBlueBits ()I +MD: com/mojang/blaze3d/platform/VideoMode/m_85341_ ()I com/mojang/blaze3d/platform/VideoMode/getRefreshRate ()I +MD: com/mojang/blaze3d/platform/VideoMode/m_85342_ ()Ljava/lang/String; com/mojang/blaze3d/platform/VideoMode/write ()Ljava/lang/String; +MD: com/mojang/blaze3d/platform/VideoMode/toString ()Ljava/lang/String; com/mojang/blaze3d/platform/VideoMode/toString ()Ljava/lang/String; +MD: com/mojang/blaze3d/platform/Window/ ()V com/mojang/blaze3d/platform/Window/ ()V +MD: com/mojang/blaze3d/platform/Window/ (Lcom/mojang/blaze3d/platform/WindowEventHandler;Lcom/mojang/blaze3d/platform/ScreenManager;Lcom/mojang/blaze3d/platform/DisplayData;Ljava/lang/String;Ljava/lang/String;)V com/mojang/blaze3d/platform/Window/ (Lcom/mojang/blaze3d/platform/WindowEventHandler;Lcom/mojang/blaze3d/platform/ScreenManager;Lcom/mojang/blaze3d/platform/DisplayData;Ljava/lang/String;Ljava/lang/String;)V +MD: com/mojang/blaze3d/platform/Window/close ()V com/mojang/blaze3d/platform/Window/close ()V +MD: com/mojang/blaze3d/platform/Window/m_166447_ (II)V com/mojang/blaze3d/platform/Window/setWindowed (II)V +MD: com/mojang/blaze3d/platform/Window/m_166450_ (I)V com/mojang/blaze3d/platform/Window/setWidth (I)V +MD: com/mojang/blaze3d/platform/Window/m_166452_ (I)V com/mojang/blaze3d/platform/Window/setHeight (I)V +MD: com/mojang/blaze3d/platform/Window/m_280655_ (Lnet/minecraft/server/packs/PackResources;Lcom/mojang/blaze3d/platform/IconSet;)V com/mojang/blaze3d/platform/Window/setIcon (Lnet/minecraft/server/packs/PackResources;Lcom/mojang/blaze3d/platform/IconSet;)V +MD: com/mojang/blaze3d/platform/Window/m_85377_ ()I com/mojang/blaze3d/platform/Window/getRefreshRate ()I +MD: com/mojang/blaze3d/platform/Window/m_85378_ (D)V com/mojang/blaze3d/platform/Window/setGuiScale (D)V +MD: com/mojang/blaze3d/platform/Window/m_85380_ (I)V com/mojang/blaze3d/platform/Window/setFramerateLimit (I)V +MD: com/mojang/blaze3d/platform/Window/m_85382_ (IJ)V com/mojang/blaze3d/platform/Window/defaultErrorCallback (IJ)V +MD: com/mojang/blaze3d/platform/Window/m_85385_ (IZ)I com/mojang/blaze3d/platform/Window/calculateScale (IZ)I +MD: com/mojang/blaze3d/platform/Window/m_85388_ (JII)V com/mojang/blaze3d/platform/Window/onMove (JII)V +MD: com/mojang/blaze3d/platform/Window/m_85392_ (JZ)V com/mojang/blaze3d/platform/Window/onFocus (JZ)V +MD: com/mojang/blaze3d/platform/Window/m_85403_ (Ljava/lang/String;)V com/mojang/blaze3d/platform/Window/setErrorSection (Ljava/lang/String;)V +MD: com/mojang/blaze3d/platform/Window/m_85405_ (Ljava/util/Optional;)V com/mojang/blaze3d/platform/Window/setPreferredFullscreenVideoMode (Ljava/util/Optional;)V +MD: com/mojang/blaze3d/platform/Window/m_85407_ (Ljava/util/function/BiConsumer;)V com/mojang/blaze3d/platform/Window/checkGlfwError (Ljava/util/function/BiConsumer;)V +MD: com/mojang/blaze3d/platform/Window/m_85409_ (Z)V com/mojang/blaze3d/platform/Window/updateVsync (Z)V +MD: com/mojang/blaze3d/platform/Window/m_85411_ ()Z com/mojang/blaze3d/platform/Window/shouldClose ()Z +MD: com/mojang/blaze3d/platform/Window/m_85412_ (IJ)V com/mojang/blaze3d/platform/Window/bootCrash (IJ)V +MD: com/mojang/blaze3d/platform/Window/m_85415_ (JII)V com/mojang/blaze3d/platform/Window/onFramebufferResize (JII)V +MD: com/mojang/blaze3d/platform/Window/m_85419_ (JZ)V com/mojang/blaze3d/platform/Window/onEnter (JZ)V +MD: com/mojang/blaze3d/platform/Window/m_85422_ (Ljava/lang/String;)V com/mojang/blaze3d/platform/Window/setTitle (Ljava/lang/String;)V +MD: com/mojang/blaze3d/platform/Window/m_85424_ (Z)V com/mojang/blaze3d/platform/Window/updateRawMouseInput (Z)V +MD: com/mojang/blaze3d/platform/Window/m_85426_ ()V com/mojang/blaze3d/platform/Window/setDefaultErrorCallback ()V +MD: com/mojang/blaze3d/platform/Window/m_85427_ (JII)V com/mojang/blaze3d/platform/Window/onResize (JII)V +MD: com/mojang/blaze3d/platform/Window/m_85431_ (Z)V com/mojang/blaze3d/platform/Window/updateFullscreen (Z)V +MD: com/mojang/blaze3d/platform/Window/m_85434_ ()I com/mojang/blaze3d/platform/Window/getFramerateLimit ()I +MD: com/mojang/blaze3d/platform/Window/m_85435_ ()V com/mojang/blaze3d/platform/Window/updateDisplay ()V +MD: com/mojang/blaze3d/platform/Window/m_85436_ ()Ljava/util/Optional; com/mojang/blaze3d/platform/Window/getPreferredFullscreenVideoMode ()Ljava/util/Optional; +MD: com/mojang/blaze3d/platform/Window/m_85437_ ()V com/mojang/blaze3d/platform/Window/changeFullscreenVideoMode ()V +MD: com/mojang/blaze3d/platform/Window/m_85438_ ()V com/mojang/blaze3d/platform/Window/toggleFullScreen ()V +MD: com/mojang/blaze3d/platform/Window/m_85439_ ()J com/mojang/blaze3d/platform/Window/getWindow ()J +MD: com/mojang/blaze3d/platform/Window/m_85440_ ()Z com/mojang/blaze3d/platform/Window/isFullscreen ()Z +MD: com/mojang/blaze3d/platform/Window/m_85441_ ()I com/mojang/blaze3d/platform/Window/getWidth ()I +MD: com/mojang/blaze3d/platform/Window/m_85442_ ()I com/mojang/blaze3d/platform/Window/getHeight ()I +MD: com/mojang/blaze3d/platform/Window/m_85443_ ()I com/mojang/blaze3d/platform/Window/getScreenWidth ()I +MD: com/mojang/blaze3d/platform/Window/m_85444_ ()I com/mojang/blaze3d/platform/Window/getScreenHeight ()I +MD: com/mojang/blaze3d/platform/Window/m_85445_ ()I com/mojang/blaze3d/platform/Window/getGuiScaledWidth ()I +MD: com/mojang/blaze3d/platform/Window/m_85446_ ()I com/mojang/blaze3d/platform/Window/getGuiScaledHeight ()I +MD: com/mojang/blaze3d/platform/Window/m_85447_ ()I com/mojang/blaze3d/platform/Window/getX ()I +MD: com/mojang/blaze3d/platform/Window/m_85448_ ()I com/mojang/blaze3d/platform/Window/getY ()I +MD: com/mojang/blaze3d/platform/Window/m_85449_ ()D com/mojang/blaze3d/platform/Window/getGuiScale ()D +MD: com/mojang/blaze3d/platform/Window/m_85450_ ()Lcom/mojang/blaze3d/platform/Monitor; com/mojang/blaze3d/platform/Window/findBestMonitor ()Lcom/mojang/blaze3d/platform/Monitor; +MD: com/mojang/blaze3d/platform/Window/m_85451_ ()V com/mojang/blaze3d/platform/Window/setBootErrorCallback ()V +MD: com/mojang/blaze3d/platform/Window/m_85452_ ()V com/mojang/blaze3d/platform/Window/refreshFramebufferSize ()V +MD: com/mojang/blaze3d/platform/Window/m_85453_ ()V com/mojang/blaze3d/platform/Window/setMode ()V +MD: com/mojang/blaze3d/platform/Window$WindowInitFailed/ (Ljava/lang/String;)V com/mojang/blaze3d/platform/Window$WindowInitFailed/ (Ljava/lang/String;)V +MD: com/mojang/blaze3d/platform/WindowEventHandler/m_5740_ ()V com/mojang/blaze3d/platform/WindowEventHandler/cursorEntered ()V +MD: com/mojang/blaze3d/platform/WindowEventHandler/m_5741_ ()V com/mojang/blaze3d/platform/WindowEventHandler/resizeDisplay ()V +MD: com/mojang/blaze3d/platform/WindowEventHandler/m_7440_ (Z)V com/mojang/blaze3d/platform/WindowEventHandler/setWindowActive (Z)V +MD: com/mojang/blaze3d/preprocessor/GlslPreprocessor/ ()V com/mojang/blaze3d/preprocessor/GlslPreprocessor/ ()V +MD: com/mojang/blaze3d/preprocessor/GlslPreprocessor/ ()V com/mojang/blaze3d/preprocessor/GlslPreprocessor/ ()V +MD: com/mojang/blaze3d/preprocessor/GlslPreprocessor/m_142138_ (ZLjava/lang/String;)Ljava/lang/String; com/mojang/blaze3d/preprocessor/GlslPreprocessor/applyImport (ZLjava/lang/String;)Ljava/lang/String; +MD: com/mojang/blaze3d/preprocessor/GlslPreprocessor/m_166461_ (Ljava/lang/String;)Ljava/util/List; com/mojang/blaze3d/preprocessor/GlslPreprocessor/process (Ljava/lang/String;)Ljava/util/List; +MD: com/mojang/blaze3d/preprocessor/GlslPreprocessor/m_166463_ (Ljava/lang/String;I)Ljava/lang/String; com/mojang/blaze3d/preprocessor/GlslPreprocessor/setVersion (Ljava/lang/String;I)Ljava/lang/String; +MD: com/mojang/blaze3d/preprocessor/GlslPreprocessor/m_166466_ (Ljava/lang/String;Lcom/mojang/blaze3d/preprocessor/GlslPreprocessor$Context;)Ljava/lang/String; com/mojang/blaze3d/preprocessor/GlslPreprocessor/processVersions (Ljava/lang/String;Lcom/mojang/blaze3d/preprocessor/GlslPreprocessor$Context;)Ljava/lang/String; +MD: com/mojang/blaze3d/preprocessor/GlslPreprocessor/m_166469_ (Ljava/lang/String;Lcom/mojang/blaze3d/preprocessor/GlslPreprocessor$Context;Ljava/lang/String;)Ljava/util/List; com/mojang/blaze3d/preprocessor/GlslPreprocessor/processImports (Ljava/lang/String;Lcom/mojang/blaze3d/preprocessor/GlslPreprocessor$Context;Ljava/lang/String;)Ljava/util/List; +MD: com/mojang/blaze3d/preprocessor/GlslPreprocessor/m_166473_ (Ljava/lang/String;Ljava/util/regex/Matcher;)Z com/mojang/blaze3d/preprocessor/GlslPreprocessor/isDirectiveEnabled (Ljava/lang/String;Ljava/util/regex/Matcher;)Z +MD: com/mojang/blaze3d/preprocessor/GlslPreprocessor/m_166476_ (Ljava/lang/String;Ljava/util/regex/Matcher;I)Z com/mojang/blaze3d/preprocessor/GlslPreprocessor/isDirectiveDisabled (Ljava/lang/String;Ljava/util/regex/Matcher;I)Z +MD: com/mojang/blaze3d/preprocessor/GlslPreprocessor$Context/ ()V com/mojang/blaze3d/preprocessor/GlslPreprocessor$Context/ ()V +MD: com/mojang/blaze3d/shaders/AbstractUniform/ ()V com/mojang/blaze3d/shaders/AbstractUniform/ ()V +MD: com/mojang/blaze3d/shaders/AbstractUniform/m_141963_ (FFFFFF)V com/mojang/blaze3d/shaders/AbstractUniform/setMat3x2 (FFFFFF)V +MD: com/mojang/blaze3d/shaders/AbstractUniform/m_141964_ (FFFFFF)V com/mojang/blaze3d/shaders/AbstractUniform/setMat2x3 (FFFFFF)V +MD: com/mojang/blaze3d/shaders/AbstractUniform/m_141978_ (FFFFFFFFFFFFFFFF)V com/mojang/blaze3d/shaders/AbstractUniform/setMat4x4 (FFFFFFFFFFFFFFFF)V +MD: com/mojang/blaze3d/shaders/AbstractUniform/m_142004_ (FFFFFFFF)V com/mojang/blaze3d/shaders/AbstractUniform/setMat4x2 (FFFFFFFF)V +MD: com/mojang/blaze3d/shaders/AbstractUniform/m_142005_ (FFFFFFFF)V com/mojang/blaze3d/shaders/AbstractUniform/setMat2x4 (FFFFFFFF)V +MD: com/mojang/blaze3d/shaders/AbstractUniform/m_142217_ (FFFFFFFFF)V com/mojang/blaze3d/shaders/AbstractUniform/setMat3x3 (FFFFFFFFF)V +MD: com/mojang/blaze3d/shaders/AbstractUniform/m_142276_ (Lorg/joml/Vector3f;)V com/mojang/blaze3d/shaders/AbstractUniform/set (Lorg/joml/Vector3f;)V +MD: com/mojang/blaze3d/shaders/AbstractUniform/m_142326_ (II)V com/mojang/blaze3d/shaders/AbstractUniform/set (II)V +MD: com/mojang/blaze3d/shaders/AbstractUniform/m_142492_ (IIII)V com/mojang/blaze3d/shaders/AbstractUniform/set (IIII)V +MD: com/mojang/blaze3d/shaders/AbstractUniform/m_142558_ (Lorg/joml/Vector4f;)V com/mojang/blaze3d/shaders/AbstractUniform/set (Lorg/joml/Vector4f;)V +MD: com/mojang/blaze3d/shaders/AbstractUniform/m_142588_ (FFFF)V com/mojang/blaze3d/shaders/AbstractUniform/setMat2x2 (FFFF)V +MD: com/mojang/blaze3d/shaders/AbstractUniform/m_142604_ (FFFFFFFFFFFF)V com/mojang/blaze3d/shaders/AbstractUniform/setMat3x4 (FFFFFFFFFFFF)V +MD: com/mojang/blaze3d/shaders/AbstractUniform/m_142605_ (FFFFFFFFFFFF)V com/mojang/blaze3d/shaders/AbstractUniform/setMat4x3 (FFFFFFFFFFFF)V +MD: com/mojang/blaze3d/shaders/AbstractUniform/m_142617_ (I)V com/mojang/blaze3d/shaders/AbstractUniform/set (I)V +MD: com/mojang/blaze3d/shaders/AbstractUniform/m_142693_ (III)V com/mojang/blaze3d/shaders/AbstractUniform/set (III)V +MD: com/mojang/blaze3d/shaders/AbstractUniform/m_200759_ (Lorg/joml/Matrix3f;)V com/mojang/blaze3d/shaders/AbstractUniform/set (Lorg/joml/Matrix3f;)V +MD: com/mojang/blaze3d/shaders/AbstractUniform/m_5679_ (Lorg/joml/Matrix4f;)V com/mojang/blaze3d/shaders/AbstractUniform/set (Lorg/joml/Matrix4f;)V +MD: com/mojang/blaze3d/shaders/AbstractUniform/m_5805_ (FFFF)V com/mojang/blaze3d/shaders/AbstractUniform/set (FFFF)V +MD: com/mojang/blaze3d/shaders/AbstractUniform/m_5808_ (FFFF)V com/mojang/blaze3d/shaders/AbstractUniform/setSafe (FFFF)V +MD: com/mojang/blaze3d/shaders/AbstractUniform/m_5889_ (FFF)V com/mojang/blaze3d/shaders/AbstractUniform/set (FFF)V +MD: com/mojang/blaze3d/shaders/AbstractUniform/m_5941_ ([F)V com/mojang/blaze3d/shaders/AbstractUniform/set ([F)V +MD: com/mojang/blaze3d/shaders/AbstractUniform/m_5985_ (F)V com/mojang/blaze3d/shaders/AbstractUniform/set (F)V +MD: com/mojang/blaze3d/shaders/AbstractUniform/m_7401_ (IIII)V com/mojang/blaze3d/shaders/AbstractUniform/setSafe (IIII)V +MD: com/mojang/blaze3d/shaders/AbstractUniform/m_7971_ (FF)V com/mojang/blaze3d/shaders/AbstractUniform/set (FF)V +MD: com/mojang/blaze3d/shaders/BlendMode/ (III)V com/mojang/blaze3d/shaders/BlendMode/ (III)V +MD: com/mojang/blaze3d/shaders/BlendMode/ (IIIII)V com/mojang/blaze3d/shaders/BlendMode/ (IIIII)V +MD: com/mojang/blaze3d/shaders/BlendMode/ ()V com/mojang/blaze3d/shaders/BlendMode/ ()V +MD: com/mojang/blaze3d/shaders/BlendMode/ (ZZIIIII)V com/mojang/blaze3d/shaders/BlendMode/ (ZZIIIII)V +MD: com/mojang/blaze3d/shaders/BlendMode/equals (Ljava/lang/Object;)Z com/mojang/blaze3d/shaders/BlendMode/equals (Ljava/lang/Object;)Z +MD: com/mojang/blaze3d/shaders/BlendMode/hashCode ()I com/mojang/blaze3d/shaders/BlendMode/hashCode ()I +MD: com/mojang/blaze3d/shaders/BlendMode/m_85526_ ()V com/mojang/blaze3d/shaders/BlendMode/apply ()V +MD: com/mojang/blaze3d/shaders/BlendMode/m_85527_ (Ljava/lang/String;)I com/mojang/blaze3d/shaders/BlendMode/stringToBlendFunc (Ljava/lang/String;)I +MD: com/mojang/blaze3d/shaders/BlendMode/m_85529_ ()Z com/mojang/blaze3d/shaders/BlendMode/isOpaque ()Z +MD: com/mojang/blaze3d/shaders/BlendMode/m_85530_ (Ljava/lang/String;)I com/mojang/blaze3d/shaders/BlendMode/stringToBlendFactor (Ljava/lang/String;)I +MD: com/mojang/blaze3d/shaders/EffectProgram/ ()V com/mojang/blaze3d/shaders/EffectProgram/ ()V +MD: com/mojang/blaze3d/shaders/EffectProgram/ (Lcom/mojang/blaze3d/shaders/Program$Type;ILjava/lang/String;)V com/mojang/blaze3d/shaders/EffectProgram/ (Lcom/mojang/blaze3d/shaders/Program$Type;ILjava/lang/String;)V +MD: com/mojang/blaze3d/shaders/EffectProgram/m_166586_ (Lcom/mojang/blaze3d/shaders/Effect;)V com/mojang/blaze3d/shaders/EffectProgram/attachToEffect (Lcom/mojang/blaze3d/shaders/Effect;)V +MD: com/mojang/blaze3d/shaders/EffectProgram/m_166588_ (Lcom/mojang/blaze3d/shaders/Program$Type;Ljava/lang/String;Ljava/io/InputStream;Ljava/lang/String;)Lcom/mojang/blaze3d/shaders/EffectProgram; com/mojang/blaze3d/shaders/EffectProgram/compileShader (Lcom/mojang/blaze3d/shaders/Program$Type;Ljava/lang/String;Ljava/io/InputStream;Ljava/lang/String;)Lcom/mojang/blaze3d/shaders/EffectProgram; +MD: com/mojang/blaze3d/shaders/EffectProgram/m_85543_ ()V com/mojang/blaze3d/shaders/EffectProgram/close ()V +MD: com/mojang/blaze3d/shaders/EffectProgram$1/ ()V com/mojang/blaze3d/shaders/EffectProgram$1/ ()V +MD: com/mojang/blaze3d/shaders/EffectProgram$1/m_142138_ (ZLjava/lang/String;)Ljava/lang/String; com/mojang/blaze3d/shaders/EffectProgram$1/applyImport (ZLjava/lang/String;)Ljava/lang/String; +MD: com/mojang/blaze3d/shaders/FogShape/ ()V com/mojang/blaze3d/shaders/FogShape/ ()V +MD: com/mojang/blaze3d/shaders/FogShape/ (Ljava/lang/String;II)V com/mojang/blaze3d/shaders/FogShape/ (Ljava/lang/String;II)V +MD: com/mojang/blaze3d/shaders/FogShape/m_202324_ ()I com/mojang/blaze3d/shaders/FogShape/getIndex ()I +MD: com/mojang/blaze3d/shaders/FogShape/m_202325_ ()[Lcom/mojang/blaze3d/shaders/FogShape; com/mojang/blaze3d/shaders/FogShape/$values ()[Lcom/mojang/blaze3d/shaders/FogShape; +MD: com/mojang/blaze3d/shaders/FogShape/valueOf (Ljava/lang/String;)Lcom/mojang/blaze3d/shaders/FogShape; com/mojang/blaze3d/shaders/FogShape/valueOf (Ljava/lang/String;)Lcom/mojang/blaze3d/shaders/FogShape; +MD: com/mojang/blaze3d/shaders/FogShape/values ()[Lcom/mojang/blaze3d/shaders/FogShape; com/mojang/blaze3d/shaders/FogShape/values ()[Lcom/mojang/blaze3d/shaders/FogShape; +MD: com/mojang/blaze3d/shaders/Program/ (Lcom/mojang/blaze3d/shaders/Program$Type;ILjava/lang/String;)V com/mojang/blaze3d/shaders/Program/ (Lcom/mojang/blaze3d/shaders/Program$Type;ILjava/lang/String;)V +MD: com/mojang/blaze3d/shaders/Program/m_166604_ (Lcom/mojang/blaze3d/shaders/Program$Type;Ljava/lang/String;Ljava/io/InputStream;Ljava/lang/String;Lcom/mojang/blaze3d/preprocessor/GlslPreprocessor;)Lcom/mojang/blaze3d/shaders/Program; com/mojang/blaze3d/shaders/Program/compileShader (Lcom/mojang/blaze3d/shaders/Program$Type;Ljava/lang/String;Ljava/io/InputStream;Ljava/lang/String;Lcom/mojang/blaze3d/preprocessor/GlslPreprocessor;)Lcom/mojang/blaze3d/shaders/Program; +MD: com/mojang/blaze3d/shaders/Program/m_166610_ (Lcom/mojang/blaze3d/shaders/Shader;)V com/mojang/blaze3d/shaders/Program/attachToShader (Lcom/mojang/blaze3d/shaders/Shader;)V +MD: com/mojang/blaze3d/shaders/Program/m_166612_ (Lcom/mojang/blaze3d/shaders/Program$Type;Ljava/lang/String;Ljava/io/InputStream;Ljava/lang/String;Lcom/mojang/blaze3d/preprocessor/GlslPreprocessor;)I com/mojang/blaze3d/shaders/Program/compileShaderInternal (Lcom/mojang/blaze3d/shaders/Program$Type;Ljava/lang/String;Ljava/io/InputStream;Ljava/lang/String;Lcom/mojang/blaze3d/preprocessor/GlslPreprocessor;)I +MD: com/mojang/blaze3d/shaders/Program/m_166618_ ()I com/mojang/blaze3d/shaders/Program/getId ()I +MD: com/mojang/blaze3d/shaders/Program/m_85543_ ()V com/mojang/blaze3d/shaders/Program/close ()V +MD: com/mojang/blaze3d/shaders/Program/m_85551_ ()Ljava/lang/String; com/mojang/blaze3d/shaders/Program/getName ()Ljava/lang/String; +MD: com/mojang/blaze3d/shaders/Program$Type/ ()V com/mojang/blaze3d/shaders/Program$Type/ ()V +MD: com/mojang/blaze3d/shaders/Program$Type/ (Ljava/lang/String;ILjava/lang/String;Ljava/lang/String;I)V com/mojang/blaze3d/shaders/Program$Type/ (Ljava/lang/String;ILjava/lang/String;Ljava/lang/String;I)V +MD: com/mojang/blaze3d/shaders/Program$Type/m_166619_ ()[Lcom/mojang/blaze3d/shaders/Program$Type; com/mojang/blaze3d/shaders/Program$Type/$values ()[Lcom/mojang/blaze3d/shaders/Program$Type; +MD: com/mojang/blaze3d/shaders/Program$Type/m_85566_ ()Ljava/lang/String; com/mojang/blaze3d/shaders/Program$Type/getName ()Ljava/lang/String; +MD: com/mojang/blaze3d/shaders/Program$Type/m_85569_ ()Ljava/lang/String; com/mojang/blaze3d/shaders/Program$Type/getExtension ()Ljava/lang/String; +MD: com/mojang/blaze3d/shaders/Program$Type/m_85570_ ()Ljava/util/Map; com/mojang/blaze3d/shaders/Program$Type/getPrograms ()Ljava/util/Map; +MD: com/mojang/blaze3d/shaders/Program$Type/m_85571_ ()I com/mojang/blaze3d/shaders/Program$Type/getGlType ()I +MD: com/mojang/blaze3d/shaders/Program$Type/valueOf (Ljava/lang/String;)Lcom/mojang/blaze3d/shaders/Program$Type; com/mojang/blaze3d/shaders/Program$Type/valueOf (Ljava/lang/String;)Lcom/mojang/blaze3d/shaders/Program$Type; +MD: com/mojang/blaze3d/shaders/Program$Type/values ()[Lcom/mojang/blaze3d/shaders/Program$Type; com/mojang/blaze3d/shaders/Program$Type/values ()[Lcom/mojang/blaze3d/shaders/Program$Type; +MD: com/mojang/blaze3d/shaders/ProgramManager/ ()V com/mojang/blaze3d/shaders/ProgramManager/ ()V +MD: com/mojang/blaze3d/shaders/ProgramManager/ ()V com/mojang/blaze3d/shaders/ProgramManager/ ()V +MD: com/mojang/blaze3d/shaders/ProgramManager/m_166621_ (Lcom/mojang/blaze3d/shaders/Shader;)V com/mojang/blaze3d/shaders/ProgramManager/releaseProgram (Lcom/mojang/blaze3d/shaders/Shader;)V +MD: com/mojang/blaze3d/shaders/ProgramManager/m_166623_ (Lcom/mojang/blaze3d/shaders/Shader;)V com/mojang/blaze3d/shaders/ProgramManager/linkShader (Lcom/mojang/blaze3d/shaders/Shader;)V +MD: com/mojang/blaze3d/shaders/ProgramManager/m_85577_ ()I com/mojang/blaze3d/shaders/ProgramManager/createProgram ()I +MD: com/mojang/blaze3d/shaders/ProgramManager/m_85578_ (I)V com/mojang/blaze3d/shaders/ProgramManager/glUseProgram (I)V +MD: com/mojang/blaze3d/shaders/Shader/m_108943_ ()I com/mojang/blaze3d/shaders/Shader/getId ()I +MD: com/mojang/blaze3d/shaders/Shader/m_108957_ ()V com/mojang/blaze3d/shaders/Shader/markDirty ()V +MD: com/mojang/blaze3d/shaders/Shader/m_108962_ ()Lcom/mojang/blaze3d/shaders/Program; com/mojang/blaze3d/shaders/Shader/getVertexProgram ()Lcom/mojang/blaze3d/shaders/Program; +MD: com/mojang/blaze3d/shaders/Shader/m_108964_ ()Lcom/mojang/blaze3d/shaders/Program; com/mojang/blaze3d/shaders/Shader/getFragmentProgram ()Lcom/mojang/blaze3d/shaders/Program; +MD: com/mojang/blaze3d/shaders/Shader/m_142662_ ()V com/mojang/blaze3d/shaders/Shader/attachToProgram ()V +MD: com/mojang/blaze3d/shaders/Uniform/ ()V com/mojang/blaze3d/shaders/Uniform/ ()V +MD: com/mojang/blaze3d/shaders/Uniform/ (Ljava/lang/String;IILcom/mojang/blaze3d/shaders/Shader;)V com/mojang/blaze3d/shaders/Uniform/ (Ljava/lang/String;IILcom/mojang/blaze3d/shaders/Shader;)V +MD: com/mojang/blaze3d/shaders/Uniform/close ()V com/mojang/blaze3d/shaders/Uniform/close ()V +MD: com/mojang/blaze3d/shaders/Uniform/m_141963_ (FFFFFF)V com/mojang/blaze3d/shaders/Uniform/setMat3x2 (FFFFFF)V +MD: com/mojang/blaze3d/shaders/Uniform/m_141964_ (FFFFFF)V com/mojang/blaze3d/shaders/Uniform/setMat2x3 (FFFFFF)V +MD: com/mojang/blaze3d/shaders/Uniform/m_141978_ (FFFFFFFFFFFFFFFF)V com/mojang/blaze3d/shaders/Uniform/setMat4x4 (FFFFFFFFFFFFFFFF)V +MD: com/mojang/blaze3d/shaders/Uniform/m_142004_ (FFFFFFFF)V com/mojang/blaze3d/shaders/Uniform/setMat4x2 (FFFFFFFF)V +MD: com/mojang/blaze3d/shaders/Uniform/m_142005_ (FFFFFFFF)V com/mojang/blaze3d/shaders/Uniform/setMat2x4 (FFFFFFFF)V +MD: com/mojang/blaze3d/shaders/Uniform/m_142217_ (FFFFFFFFF)V com/mojang/blaze3d/shaders/Uniform/setMat3x3 (FFFFFFFFF)V +MD: com/mojang/blaze3d/shaders/Uniform/m_142276_ (Lorg/joml/Vector3f;)V com/mojang/blaze3d/shaders/Uniform/set (Lorg/joml/Vector3f;)V +MD: com/mojang/blaze3d/shaders/Uniform/m_142326_ (II)V com/mojang/blaze3d/shaders/Uniform/set (II)V +MD: com/mojang/blaze3d/shaders/Uniform/m_142492_ (IIII)V com/mojang/blaze3d/shaders/Uniform/set (IIII)V +MD: com/mojang/blaze3d/shaders/Uniform/m_142558_ (Lorg/joml/Vector4f;)V com/mojang/blaze3d/shaders/Uniform/set (Lorg/joml/Vector4f;)V +MD: com/mojang/blaze3d/shaders/Uniform/m_142588_ (FFFF)V com/mojang/blaze3d/shaders/Uniform/setMat2x2 (FFFF)V +MD: com/mojang/blaze3d/shaders/Uniform/m_142604_ (FFFFFFFFFFFF)V com/mojang/blaze3d/shaders/Uniform/setMat3x4 (FFFFFFFFFFFF)V +MD: com/mojang/blaze3d/shaders/Uniform/m_142605_ (FFFFFFFFFFFF)V com/mojang/blaze3d/shaders/Uniform/setMat4x3 (FFFFFFFFFFFF)V +MD: com/mojang/blaze3d/shaders/Uniform/m_142617_ (I)V com/mojang/blaze3d/shaders/Uniform/set (I)V +MD: com/mojang/blaze3d/shaders/Uniform/m_142693_ (III)V com/mojang/blaze3d/shaders/Uniform/set (III)V +MD: com/mojang/blaze3d/shaders/Uniform/m_166700_ (IF)V com/mojang/blaze3d/shaders/Uniform/set (IF)V +MD: com/mojang/blaze3d/shaders/Uniform/m_166710_ (IILjava/lang/CharSequence;)V com/mojang/blaze3d/shaders/Uniform/glBindAttribLocation (IILjava/lang/CharSequence;)V +MD: com/mojang/blaze3d/shaders/Uniform/m_166752_ ()I com/mojang/blaze3d/shaders/Uniform/getLocation ()I +MD: com/mojang/blaze3d/shaders/Uniform/m_166758_ ()I com/mojang/blaze3d/shaders/Uniform/getCount ()I +MD: com/mojang/blaze3d/shaders/Uniform/m_166759_ ()I com/mojang/blaze3d/shaders/Uniform/getType ()I +MD: com/mojang/blaze3d/shaders/Uniform/m_166760_ ()Ljava/nio/IntBuffer; com/mojang/blaze3d/shaders/Uniform/getIntBuffer ()Ljava/nio/IntBuffer; +MD: com/mojang/blaze3d/shaders/Uniform/m_166761_ ()Ljava/nio/FloatBuffer; com/mojang/blaze3d/shaders/Uniform/getFloatBuffer ()Ljava/nio/FloatBuffer; +MD: com/mojang/blaze3d/shaders/Uniform/m_200759_ (Lorg/joml/Matrix3f;)V com/mojang/blaze3d/shaders/Uniform/set (Lorg/joml/Matrix3f;)V +MD: com/mojang/blaze3d/shaders/Uniform/m_5679_ (Lorg/joml/Matrix4f;)V com/mojang/blaze3d/shaders/Uniform/set (Lorg/joml/Matrix4f;)V +MD: com/mojang/blaze3d/shaders/Uniform/m_5805_ (FFFF)V com/mojang/blaze3d/shaders/Uniform/set (FFFF)V +MD: com/mojang/blaze3d/shaders/Uniform/m_5808_ (FFFF)V com/mojang/blaze3d/shaders/Uniform/setSafe (FFFF)V +MD: com/mojang/blaze3d/shaders/Uniform/m_5889_ (FFF)V com/mojang/blaze3d/shaders/Uniform/set (FFF)V +MD: com/mojang/blaze3d/shaders/Uniform/m_5941_ ([F)V com/mojang/blaze3d/shaders/Uniform/set ([F)V +MD: com/mojang/blaze3d/shaders/Uniform/m_5985_ (F)V com/mojang/blaze3d/shaders/Uniform/set (F)V +MD: com/mojang/blaze3d/shaders/Uniform/m_7401_ (IIII)V com/mojang/blaze3d/shaders/Uniform/setSafe (IIII)V +MD: com/mojang/blaze3d/shaders/Uniform/m_7971_ (FF)V com/mojang/blaze3d/shaders/Uniform/set (FF)V +MD: com/mojang/blaze3d/shaders/Uniform/m_85599_ ()Ljava/lang/String; com/mojang/blaze3d/shaders/Uniform/getName ()Ljava/lang/String; +MD: com/mojang/blaze3d/shaders/Uniform/m_85614_ (I)V com/mojang/blaze3d/shaders/Uniform/setLocation (I)V +MD: com/mojang/blaze3d/shaders/Uniform/m_85616_ (II)V com/mojang/blaze3d/shaders/Uniform/uploadInteger (II)V +MD: com/mojang/blaze3d/shaders/Uniform/m_85624_ (ILjava/lang/CharSequence;)I com/mojang/blaze3d/shaders/Uniform/glGetUniformLocation (ILjava/lang/CharSequence;)I +MD: com/mojang/blaze3d/shaders/Uniform/m_85629_ (Ljava/lang/String;)I com/mojang/blaze3d/shaders/Uniform/getTypeFromString (Ljava/lang/String;)I +MD: com/mojang/blaze3d/shaders/Uniform/m_85633_ ()V com/mojang/blaze3d/shaders/Uniform/upload ()V +MD: com/mojang/blaze3d/shaders/Uniform/m_85639_ (ILjava/lang/CharSequence;)I com/mojang/blaze3d/shaders/Uniform/glGetAttribLocation (ILjava/lang/CharSequence;)I +MD: com/mojang/blaze3d/shaders/Uniform/m_85642_ ()V com/mojang/blaze3d/shaders/Uniform/markDirty ()V +MD: com/mojang/blaze3d/shaders/Uniform/m_85644_ ()V com/mojang/blaze3d/shaders/Uniform/uploadAsInteger ()V +MD: com/mojang/blaze3d/shaders/Uniform/m_85645_ ()V com/mojang/blaze3d/shaders/Uniform/uploadAsFloat ()V +MD: com/mojang/blaze3d/shaders/Uniform/m_85646_ ()V com/mojang/blaze3d/shaders/Uniform/uploadAsMatrix ()V +MD: com/mojang/blaze3d/systems/RenderSystem/ ()V com/mojang/blaze3d/systems/RenderSystem/ ()V +MD: com/mojang/blaze3d/systems/RenderSystem/ ()V com/mojang/blaze3d/systems/RenderSystem/ ()V +MD: com/mojang/blaze3d/systems/RenderSystem/_backupProjectionMatrix ()V com/mojang/blaze3d/systems/RenderSystem/_backupProjectionMatrix ()V +MD: com/mojang/blaze3d/systems/RenderSystem/_restoreProjectionMatrix ()V com/mojang/blaze3d/systems/RenderSystem/_restoreProjectionMatrix ()V +MD: com/mojang/blaze3d/systems/RenderSystem/_setShaderColor (FFFF)V com/mojang/blaze3d/systems/RenderSystem/_setShaderColor (FFFF)V +MD: com/mojang/blaze3d/systems/RenderSystem/_setShaderFogColor (FFFF)V com/mojang/blaze3d/systems/RenderSystem/_setShaderFogColor (FFFF)V +MD: com/mojang/blaze3d/systems/RenderSystem/_setShaderFogEnd (F)V com/mojang/blaze3d/systems/RenderSystem/_setShaderFogEnd (F)V +MD: com/mojang/blaze3d/systems/RenderSystem/_setShaderFogShape (Lcom/mojang/blaze3d/shaders/FogShape;)V com/mojang/blaze3d/systems/RenderSystem/_setShaderFogShape (Lcom/mojang/blaze3d/shaders/FogShape;)V +MD: com/mojang/blaze3d/systems/RenderSystem/_setShaderFogStart (F)V com/mojang/blaze3d/systems/RenderSystem/_setShaderFogStart (F)V +MD: com/mojang/blaze3d/systems/RenderSystem/_setShaderGlintAlpha (F)V com/mojang/blaze3d/systems/RenderSystem/_setShaderGlintAlpha (F)V +MD: com/mojang/blaze3d/systems/RenderSystem/_setShaderLights (Lorg/joml/Vector3f;Lorg/joml/Vector3f;)V com/mojang/blaze3d/systems/RenderSystem/_setShaderLights (Lorg/joml/Vector3f;Lorg/joml/Vector3f;)V +MD: com/mojang/blaze3d/systems/RenderSystem/_setShaderTexture (ILnet/minecraft/resources/ResourceLocation;)V com/mojang/blaze3d/systems/RenderSystem/_setShaderTexture (ILnet/minecraft/resources/ResourceLocation;)V +MD: com/mojang/blaze3d/systems/RenderSystem/_setShaderTexture (II)V com/mojang/blaze3d/systems/RenderSystem/_setShaderTexture (II)V +MD: com/mojang/blaze3d/systems/RenderSystem/activeTexture (I)V com/mojang/blaze3d/systems/RenderSystem/activeTexture (I)V +MD: com/mojang/blaze3d/systems/RenderSystem/applyModelViewMatrix ()V com/mojang/blaze3d/systems/RenderSystem/applyModelViewMatrix ()V +MD: com/mojang/blaze3d/systems/RenderSystem/assertInInitPhase ()V com/mojang/blaze3d/systems/RenderSystem/assertInInitPhase ()V +MD: com/mojang/blaze3d/systems/RenderSystem/assertOnGameThread ()V com/mojang/blaze3d/systems/RenderSystem/assertOnGameThread ()V +MD: com/mojang/blaze3d/systems/RenderSystem/assertOnGameThreadOrInit ()V com/mojang/blaze3d/systems/RenderSystem/assertOnGameThreadOrInit ()V +MD: com/mojang/blaze3d/systems/RenderSystem/assertOnRenderThread ()V com/mojang/blaze3d/systems/RenderSystem/assertOnRenderThread ()V +MD: com/mojang/blaze3d/systems/RenderSystem/assertOnRenderThreadOrInit ()V com/mojang/blaze3d/systems/RenderSystem/assertOnRenderThreadOrInit ()V +MD: com/mojang/blaze3d/systems/RenderSystem/backupProjectionMatrix ()V com/mojang/blaze3d/systems/RenderSystem/backupProjectionMatrix ()V +MD: com/mojang/blaze3d/systems/RenderSystem/beginInitialization ()V com/mojang/blaze3d/systems/RenderSystem/beginInitialization ()V +MD: com/mojang/blaze3d/systems/RenderSystem/bindTexture (I)V com/mojang/blaze3d/systems/RenderSystem/bindTexture (I)V +MD: com/mojang/blaze3d/systems/RenderSystem/bindTextureForSetup (I)V com/mojang/blaze3d/systems/RenderSystem/bindTextureForSetup (I)V +MD: com/mojang/blaze3d/systems/RenderSystem/blendEquation (I)V com/mojang/blaze3d/systems/RenderSystem/blendEquation (I)V +MD: com/mojang/blaze3d/systems/RenderSystem/blendFunc (II)V com/mojang/blaze3d/systems/RenderSystem/blendFunc (II)V +MD: com/mojang/blaze3d/systems/RenderSystem/blendFunc (Lcom/mojang/blaze3d/platform/GlStateManager$SourceFactor;Lcom/mojang/blaze3d/platform/GlStateManager$DestFactor;)V com/mojang/blaze3d/systems/RenderSystem/blendFunc (Lcom/mojang/blaze3d/platform/GlStateManager$SourceFactor;Lcom/mojang/blaze3d/platform/GlStateManager$DestFactor;)V +MD: com/mojang/blaze3d/systems/RenderSystem/blendFuncSeparate (Lcom/mojang/blaze3d/platform/GlStateManager$SourceFactor;Lcom/mojang/blaze3d/platform/GlStateManager$DestFactor;Lcom/mojang/blaze3d/platform/GlStateManager$SourceFactor;Lcom/mojang/blaze3d/platform/GlStateManager$DestFactor;)V com/mojang/blaze3d/systems/RenderSystem/blendFuncSeparate (Lcom/mojang/blaze3d/platform/GlStateManager$SourceFactor;Lcom/mojang/blaze3d/platform/GlStateManager$DestFactor;Lcom/mojang/blaze3d/platform/GlStateManager$SourceFactor;Lcom/mojang/blaze3d/platform/GlStateManager$DestFactor;)V +MD: com/mojang/blaze3d/systems/RenderSystem/blendFuncSeparate (IIII)V com/mojang/blaze3d/systems/RenderSystem/blendFuncSeparate (IIII)V +MD: com/mojang/blaze3d/systems/RenderSystem/clear (IZ)V com/mojang/blaze3d/systems/RenderSystem/clear (IZ)V +MD: com/mojang/blaze3d/systems/RenderSystem/clearColor (FFFF)V com/mojang/blaze3d/systems/RenderSystem/clearColor (FFFF)V +MD: com/mojang/blaze3d/systems/RenderSystem/clearDepth (D)V com/mojang/blaze3d/systems/RenderSystem/clearDepth (D)V +MD: com/mojang/blaze3d/systems/RenderSystem/clearStencil (I)V com/mojang/blaze3d/systems/RenderSystem/clearStencil (I)V +MD: com/mojang/blaze3d/systems/RenderSystem/colorMask (ZZZZ)V com/mojang/blaze3d/systems/RenderSystem/colorMask (ZZZZ)V +MD: com/mojang/blaze3d/systems/RenderSystem/constructThreadException ()Ljava/lang/IllegalStateException; com/mojang/blaze3d/systems/RenderSystem/constructThreadException ()Ljava/lang/IllegalStateException; +MD: com/mojang/blaze3d/systems/RenderSystem/defaultBlendFunc ()V com/mojang/blaze3d/systems/RenderSystem/defaultBlendFunc ()V +MD: com/mojang/blaze3d/systems/RenderSystem/deleteTexture (I)V com/mojang/blaze3d/systems/RenderSystem/deleteTexture (I)V +MD: com/mojang/blaze3d/systems/RenderSystem/depthFunc (I)V com/mojang/blaze3d/systems/RenderSystem/depthFunc (I)V +MD: com/mojang/blaze3d/systems/RenderSystem/depthMask (Z)V com/mojang/blaze3d/systems/RenderSystem/depthMask (Z)V +MD: com/mojang/blaze3d/systems/RenderSystem/disableBlend ()V com/mojang/blaze3d/systems/RenderSystem/disableBlend ()V +MD: com/mojang/blaze3d/systems/RenderSystem/disableColorLogicOp ()V com/mojang/blaze3d/systems/RenderSystem/disableColorLogicOp ()V +MD: com/mojang/blaze3d/systems/RenderSystem/disableCull ()V com/mojang/blaze3d/systems/RenderSystem/disableCull ()V +MD: com/mojang/blaze3d/systems/RenderSystem/disableDepthTest ()V com/mojang/blaze3d/systems/RenderSystem/disableDepthTest ()V +MD: com/mojang/blaze3d/systems/RenderSystem/disablePolygonOffset ()V com/mojang/blaze3d/systems/RenderSystem/disablePolygonOffset ()V +MD: com/mojang/blaze3d/systems/RenderSystem/disableScissor ()V com/mojang/blaze3d/systems/RenderSystem/disableScissor ()V +MD: com/mojang/blaze3d/systems/RenderSystem/drawElements (III)V com/mojang/blaze3d/systems/RenderSystem/drawElements (III)V +MD: com/mojang/blaze3d/systems/RenderSystem/enableBlend ()V com/mojang/blaze3d/systems/RenderSystem/enableBlend ()V +MD: com/mojang/blaze3d/systems/RenderSystem/enableColorLogicOp ()V com/mojang/blaze3d/systems/RenderSystem/enableColorLogicOp ()V +MD: com/mojang/blaze3d/systems/RenderSystem/enableCull ()V com/mojang/blaze3d/systems/RenderSystem/enableCull ()V +MD: com/mojang/blaze3d/systems/RenderSystem/enableDepthTest ()V com/mojang/blaze3d/systems/RenderSystem/enableDepthTest ()V +MD: com/mojang/blaze3d/systems/RenderSystem/enablePolygonOffset ()V com/mojang/blaze3d/systems/RenderSystem/enablePolygonOffset ()V +MD: com/mojang/blaze3d/systems/RenderSystem/enableScissor (IIII)V com/mojang/blaze3d/systems/RenderSystem/enableScissor (IIII)V +MD: com/mojang/blaze3d/systems/RenderSystem/finishInitialization ()V com/mojang/blaze3d/systems/RenderSystem/finishInitialization ()V +MD: com/mojang/blaze3d/systems/RenderSystem/flipFrame (J)V com/mojang/blaze3d/systems/RenderSystem/flipFrame (J)V +MD: com/mojang/blaze3d/systems/RenderSystem/getApiDescription ()Ljava/lang/String; com/mojang/blaze3d/systems/RenderSystem/getApiDescription ()Ljava/lang/String; +MD: com/mojang/blaze3d/systems/RenderSystem/getBackendDescription ()Ljava/lang/String; com/mojang/blaze3d/systems/RenderSystem/getBackendDescription ()Ljava/lang/String; +MD: com/mojang/blaze3d/systems/RenderSystem/getCapsString ()Ljava/lang/String; com/mojang/blaze3d/systems/RenderSystem/getCapsString ()Ljava/lang/String; +MD: com/mojang/blaze3d/systems/RenderSystem/getInverseViewRotationMatrix ()Lorg/joml/Matrix3f; com/mojang/blaze3d/systems/RenderSystem/getInverseViewRotationMatrix ()Lorg/joml/Matrix3f; +MD: com/mojang/blaze3d/systems/RenderSystem/getModelViewMatrix ()Lorg/joml/Matrix4f; com/mojang/blaze3d/systems/RenderSystem/getModelViewMatrix ()Lorg/joml/Matrix4f; +MD: com/mojang/blaze3d/systems/RenderSystem/getModelViewStack ()Lcom/mojang/blaze3d/vertex/PoseStack; com/mojang/blaze3d/systems/RenderSystem/getModelViewStack ()Lcom/mojang/blaze3d/vertex/PoseStack; +MD: com/mojang/blaze3d/systems/RenderSystem/getProjectionMatrix ()Lorg/joml/Matrix4f; com/mojang/blaze3d/systems/RenderSystem/getProjectionMatrix ()Lorg/joml/Matrix4f; +MD: com/mojang/blaze3d/systems/RenderSystem/getSequentialBuffer (Lcom/mojang/blaze3d/vertex/VertexFormat$Mode;)Lcom/mojang/blaze3d/systems/RenderSystem$AutoStorageIndexBuffer; com/mojang/blaze3d/systems/RenderSystem/getSequentialBuffer (Lcom/mojang/blaze3d/vertex/VertexFormat$Mode;)Lcom/mojang/blaze3d/systems/RenderSystem$AutoStorageIndexBuffer; +MD: com/mojang/blaze3d/systems/RenderSystem/getShader ()Lnet/minecraft/client/renderer/ShaderInstance; com/mojang/blaze3d/systems/RenderSystem/getShader ()Lnet/minecraft/client/renderer/ShaderInstance; +MD: com/mojang/blaze3d/systems/RenderSystem/getShaderColor ()[F com/mojang/blaze3d/systems/RenderSystem/getShaderColor ()[F +MD: com/mojang/blaze3d/systems/RenderSystem/getShaderFogColor ()[F com/mojang/blaze3d/systems/RenderSystem/getShaderFogColor ()[F +MD: com/mojang/blaze3d/systems/RenderSystem/getShaderFogEnd ()F com/mojang/blaze3d/systems/RenderSystem/getShaderFogEnd ()F +MD: com/mojang/blaze3d/systems/RenderSystem/getShaderFogShape ()Lcom/mojang/blaze3d/shaders/FogShape; com/mojang/blaze3d/systems/RenderSystem/getShaderFogShape ()Lcom/mojang/blaze3d/shaders/FogShape; +MD: com/mojang/blaze3d/systems/RenderSystem/getShaderFogStart ()F com/mojang/blaze3d/systems/RenderSystem/getShaderFogStart ()F +MD: com/mojang/blaze3d/systems/RenderSystem/getShaderGameTime ()F com/mojang/blaze3d/systems/RenderSystem/getShaderGameTime ()F +MD: com/mojang/blaze3d/systems/RenderSystem/getShaderGlintAlpha ()F com/mojang/blaze3d/systems/RenderSystem/getShaderGlintAlpha ()F +MD: com/mojang/blaze3d/systems/RenderSystem/getShaderLineWidth ()F com/mojang/blaze3d/systems/RenderSystem/getShaderLineWidth ()F +MD: com/mojang/blaze3d/systems/RenderSystem/getShaderTexture (I)I com/mojang/blaze3d/systems/RenderSystem/getShaderTexture (I)I +MD: com/mojang/blaze3d/systems/RenderSystem/getString (ILjava/util/function/Consumer;)V com/mojang/blaze3d/systems/RenderSystem/getString (ILjava/util/function/Consumer;)V +MD: com/mojang/blaze3d/systems/RenderSystem/getTextureMatrix ()Lorg/joml/Matrix4f; com/mojang/blaze3d/systems/RenderSystem/getTextureMatrix ()Lorg/joml/Matrix4f; +MD: com/mojang/blaze3d/systems/RenderSystem/getVertexSorting ()Lcom/mojang/blaze3d/vertex/VertexSorting; com/mojang/blaze3d/systems/RenderSystem/getVertexSorting ()Lcom/mojang/blaze3d/vertex/VertexSorting; +MD: com/mojang/blaze3d/systems/RenderSystem/glBindBuffer (ILjava/util/function/IntSupplier;)V com/mojang/blaze3d/systems/RenderSystem/glBindBuffer (ILjava/util/function/IntSupplier;)V +MD: com/mojang/blaze3d/systems/RenderSystem/glBindVertexArray (Ljava/util/function/Supplier;)V com/mojang/blaze3d/systems/RenderSystem/glBindVertexArray (Ljava/util/function/Supplier;)V +MD: com/mojang/blaze3d/systems/RenderSystem/glBufferData (ILjava/nio/ByteBuffer;I)V com/mojang/blaze3d/systems/RenderSystem/glBufferData (ILjava/nio/ByteBuffer;I)V +MD: com/mojang/blaze3d/systems/RenderSystem/glDeleteBuffers (I)V com/mojang/blaze3d/systems/RenderSystem/glDeleteBuffers (I)V +MD: com/mojang/blaze3d/systems/RenderSystem/glDeleteVertexArrays (I)V com/mojang/blaze3d/systems/RenderSystem/glDeleteVertexArrays (I)V +MD: com/mojang/blaze3d/systems/RenderSystem/glGenBuffers (Ljava/util/function/Consumer;)V com/mojang/blaze3d/systems/RenderSystem/glGenBuffers (Ljava/util/function/Consumer;)V +MD: com/mojang/blaze3d/systems/RenderSystem/glGenVertexArrays (Ljava/util/function/Consumer;)V com/mojang/blaze3d/systems/RenderSystem/glGenVertexArrays (Ljava/util/function/Consumer;)V +MD: com/mojang/blaze3d/systems/RenderSystem/glUniform1 (ILjava/nio/IntBuffer;)V com/mojang/blaze3d/systems/RenderSystem/glUniform1 (ILjava/nio/IntBuffer;)V +MD: com/mojang/blaze3d/systems/RenderSystem/glUniform1 (ILjava/nio/FloatBuffer;)V com/mojang/blaze3d/systems/RenderSystem/glUniform1 (ILjava/nio/FloatBuffer;)V +MD: com/mojang/blaze3d/systems/RenderSystem/glUniform1i (II)V com/mojang/blaze3d/systems/RenderSystem/glUniform1i (II)V +MD: com/mojang/blaze3d/systems/RenderSystem/glUniform2 (ILjava/nio/IntBuffer;)V com/mojang/blaze3d/systems/RenderSystem/glUniform2 (ILjava/nio/IntBuffer;)V +MD: com/mojang/blaze3d/systems/RenderSystem/glUniform2 (ILjava/nio/FloatBuffer;)V com/mojang/blaze3d/systems/RenderSystem/glUniform2 (ILjava/nio/FloatBuffer;)V +MD: com/mojang/blaze3d/systems/RenderSystem/glUniform3 (ILjava/nio/IntBuffer;)V com/mojang/blaze3d/systems/RenderSystem/glUniform3 (ILjava/nio/IntBuffer;)V +MD: com/mojang/blaze3d/systems/RenderSystem/glUniform3 (ILjava/nio/FloatBuffer;)V com/mojang/blaze3d/systems/RenderSystem/glUniform3 (ILjava/nio/FloatBuffer;)V +MD: com/mojang/blaze3d/systems/RenderSystem/glUniform4 (ILjava/nio/IntBuffer;)V com/mojang/blaze3d/systems/RenderSystem/glUniform4 (ILjava/nio/IntBuffer;)V +MD: com/mojang/blaze3d/systems/RenderSystem/glUniform4 (ILjava/nio/FloatBuffer;)V com/mojang/blaze3d/systems/RenderSystem/glUniform4 (ILjava/nio/FloatBuffer;)V +MD: com/mojang/blaze3d/systems/RenderSystem/glUniformMatrix2 (IZLjava/nio/FloatBuffer;)V com/mojang/blaze3d/systems/RenderSystem/glUniformMatrix2 (IZLjava/nio/FloatBuffer;)V +MD: com/mojang/blaze3d/systems/RenderSystem/glUniformMatrix3 (IZLjava/nio/FloatBuffer;)V com/mojang/blaze3d/systems/RenderSystem/glUniformMatrix3 (IZLjava/nio/FloatBuffer;)V +MD: com/mojang/blaze3d/systems/RenderSystem/glUniformMatrix4 (IZLjava/nio/FloatBuffer;)V com/mojang/blaze3d/systems/RenderSystem/glUniformMatrix4 (IZLjava/nio/FloatBuffer;)V +MD: com/mojang/blaze3d/systems/RenderSystem/initBackendSystem ()Lnet/minecraft/util/TimeSource$NanoTimeSource; com/mojang/blaze3d/systems/RenderSystem/initBackendSystem ()Lnet/minecraft/util/TimeSource$NanoTimeSource; +MD: com/mojang/blaze3d/systems/RenderSystem/initGameThread (Z)V com/mojang/blaze3d/systems/RenderSystem/initGameThread (Z)V +MD: com/mojang/blaze3d/systems/RenderSystem/initRenderThread ()V com/mojang/blaze3d/systems/RenderSystem/initRenderThread ()V +MD: com/mojang/blaze3d/systems/RenderSystem/initRenderer (IZ)V com/mojang/blaze3d/systems/RenderSystem/initRenderer (IZ)V +MD: com/mojang/blaze3d/systems/RenderSystem/isFrozenAtPollEvents ()Z com/mojang/blaze3d/systems/RenderSystem/isFrozenAtPollEvents ()Z +MD: com/mojang/blaze3d/systems/RenderSystem/isInInitPhase ()Z com/mojang/blaze3d/systems/RenderSystem/isInInitPhase ()Z +MD: com/mojang/blaze3d/systems/RenderSystem/isOnGameThread ()Z com/mojang/blaze3d/systems/RenderSystem/isOnGameThread ()Z +MD: com/mojang/blaze3d/systems/RenderSystem/isOnRenderThread ()Z com/mojang/blaze3d/systems/RenderSystem/isOnRenderThread ()Z +MD: com/mojang/blaze3d/systems/RenderSystem/isOnRenderThreadOrInit ()Z com/mojang/blaze3d/systems/RenderSystem/isOnRenderThreadOrInit ()Z +MD: com/mojang/blaze3d/systems/RenderSystem/lambda$activeTexture$13 (I)V com/mojang/blaze3d/systems/RenderSystem/lambda$activeTexture$13 (I)V +MD: com/mojang/blaze3d/systems/RenderSystem/lambda$applyModelViewMatrix$69 (Lorg/joml/Matrix4f;)V com/mojang/blaze3d/systems/RenderSystem/lambda$applyModelViewMatrix$69 (Lorg/joml/Matrix4f;)V +MD: com/mojang/blaze3d/systems/RenderSystem/lambda$backupProjectionMatrix$70 ()V com/mojang/blaze3d/systems/RenderSystem/lambda$backupProjectionMatrix$70 ()V +MD: com/mojang/blaze3d/systems/RenderSystem/lambda$bindTexture$16 (I)V com/mojang/blaze3d/systems/RenderSystem/lambda$bindTexture$16 (I)V +MD: com/mojang/blaze3d/systems/RenderSystem/lambda$blendEquation$9 (I)V com/mojang/blaze3d/systems/RenderSystem/lambda$blendEquation$9 (I)V +MD: com/mojang/blaze3d/systems/RenderSystem/lambda$blendFunc$5 (Lcom/mojang/blaze3d/platform/GlStateManager$SourceFactor;Lcom/mojang/blaze3d/platform/GlStateManager$DestFactor;)V com/mojang/blaze3d/systems/RenderSystem/lambda$blendFunc$5 (Lcom/mojang/blaze3d/platform/GlStateManager$SourceFactor;Lcom/mojang/blaze3d/platform/GlStateManager$DestFactor;)V +MD: com/mojang/blaze3d/systems/RenderSystem/lambda$blendFunc$6 (II)V com/mojang/blaze3d/systems/RenderSystem/lambda$blendFunc$6 (II)V +MD: com/mojang/blaze3d/systems/RenderSystem/lambda$blendFuncSeparate$7 (Lcom/mojang/blaze3d/platform/GlStateManager$SourceFactor;Lcom/mojang/blaze3d/platform/GlStateManager$DestFactor;Lcom/mojang/blaze3d/platform/GlStateManager$SourceFactor;Lcom/mojang/blaze3d/platform/GlStateManager$DestFactor;)V com/mojang/blaze3d/systems/RenderSystem/lambda$blendFuncSeparate$7 (Lcom/mojang/blaze3d/platform/GlStateManager$SourceFactor;Lcom/mojang/blaze3d/platform/GlStateManager$DestFactor;Lcom/mojang/blaze3d/platform/GlStateManager$SourceFactor;Lcom/mojang/blaze3d/platform/GlStateManager$DestFactor;)V +MD: com/mojang/blaze3d/systems/RenderSystem/lambda$blendFuncSeparate$8 (IIII)V com/mojang/blaze3d/systems/RenderSystem/lambda$blendFuncSeparate$8 (IIII)V +MD: com/mojang/blaze3d/systems/RenderSystem/lambda$clear$25 (IZ)V com/mojang/blaze3d/systems/RenderSystem/lambda$clear$25 (IZ)V +MD: com/mojang/blaze3d/systems/RenderSystem/lambda$clearColor$23 (FFFF)V com/mojang/blaze3d/systems/RenderSystem/lambda$clearColor$23 (FFFF)V +MD: com/mojang/blaze3d/systems/RenderSystem/lambda$clearDepth$22 (D)V com/mojang/blaze3d/systems/RenderSystem/lambda$clearDepth$22 (D)V +MD: com/mojang/blaze3d/systems/RenderSystem/lambda$clearStencil$24 (I)V com/mojang/blaze3d/systems/RenderSystem/lambda$clearStencil$24 (I)V +MD: com/mojang/blaze3d/systems/RenderSystem/lambda$colorMask$18 (ZZZZ)V com/mojang/blaze3d/systems/RenderSystem/lambda$colorMask$18 (ZZZZ)V +MD: com/mojang/blaze3d/systems/RenderSystem/lambda$deleteTexture$15 (I)V com/mojang/blaze3d/systems/RenderSystem/lambda$deleteTexture$15 (I)V +MD: com/mojang/blaze3d/systems/RenderSystem/lambda$depthFunc$3 (I)V com/mojang/blaze3d/systems/RenderSystem/lambda$depthFunc$3 (I)V +MD: com/mojang/blaze3d/systems/RenderSystem/lambda$depthMask$4 (Z)V com/mojang/blaze3d/systems/RenderSystem/lambda$depthMask$4 (Z)V +MD: com/mojang/blaze3d/systems/RenderSystem/lambda$drawElements$33 (III)V com/mojang/blaze3d/systems/RenderSystem/lambda$drawElements$33 (III)V +MD: com/mojang/blaze3d/systems/RenderSystem/lambda$enableScissor$2 (IIII)V com/mojang/blaze3d/systems/RenderSystem/lambda$enableScissor$2 (IIII)V +MD: com/mojang/blaze3d/systems/RenderSystem/lambda$getString$37 (ILjava/util/function/Consumer;)V com/mojang/blaze3d/systems/RenderSystem/lambda$getString$37 (ILjava/util/function/Consumer;)V +MD: com/mojang/blaze3d/systems/RenderSystem/lambda$glBindBuffer$39 (ILjava/util/function/IntSupplier;)V com/mojang/blaze3d/systems/RenderSystem/lambda$glBindBuffer$39 (ILjava/util/function/IntSupplier;)V +MD: com/mojang/blaze3d/systems/RenderSystem/lambda$glBindVertexArray$40 (Ljava/util/function/Supplier;)V com/mojang/blaze3d/systems/RenderSystem/lambda$glBindVertexArray$40 (Ljava/util/function/Supplier;)V +MD: com/mojang/blaze3d/systems/RenderSystem/lambda$glDeleteBuffers$41 (I)V com/mojang/blaze3d/systems/RenderSystem/lambda$glDeleteBuffers$41 (I)V +MD: com/mojang/blaze3d/systems/RenderSystem/lambda$glDeleteVertexArrays$42 (I)V com/mojang/blaze3d/systems/RenderSystem/lambda$glDeleteVertexArrays$42 (I)V +MD: com/mojang/blaze3d/systems/RenderSystem/lambda$glGenBuffers$60 (Ljava/util/function/Consumer;)V com/mojang/blaze3d/systems/RenderSystem/lambda$glGenBuffers$60 (Ljava/util/function/Consumer;)V +MD: com/mojang/blaze3d/systems/RenderSystem/lambda$glGenVertexArrays$61 (Ljava/util/function/Consumer;)V com/mojang/blaze3d/systems/RenderSystem/lambda$glGenVertexArrays$61 (Ljava/util/function/Consumer;)V +MD: com/mojang/blaze3d/systems/RenderSystem/lambda$glUniform1$44 (ILjava/nio/IntBuffer;)V com/mojang/blaze3d/systems/RenderSystem/lambda$glUniform1$44 (ILjava/nio/IntBuffer;)V +MD: com/mojang/blaze3d/systems/RenderSystem/lambda$glUniform1$48 (ILjava/nio/FloatBuffer;)V com/mojang/blaze3d/systems/RenderSystem/lambda$glUniform1$48 (ILjava/nio/FloatBuffer;)V +MD: com/mojang/blaze3d/systems/RenderSystem/lambda$glUniform1i$43 (II)V com/mojang/blaze3d/systems/RenderSystem/lambda$glUniform1i$43 (II)V +MD: com/mojang/blaze3d/systems/RenderSystem/lambda$glUniform2$45 (ILjava/nio/IntBuffer;)V com/mojang/blaze3d/systems/RenderSystem/lambda$glUniform2$45 (ILjava/nio/IntBuffer;)V +MD: com/mojang/blaze3d/systems/RenderSystem/lambda$glUniform2$49 (ILjava/nio/FloatBuffer;)V com/mojang/blaze3d/systems/RenderSystem/lambda$glUniform2$49 (ILjava/nio/FloatBuffer;)V +MD: com/mojang/blaze3d/systems/RenderSystem/lambda$glUniform3$46 (ILjava/nio/IntBuffer;)V com/mojang/blaze3d/systems/RenderSystem/lambda$glUniform3$46 (ILjava/nio/IntBuffer;)V +MD: com/mojang/blaze3d/systems/RenderSystem/lambda$glUniform3$50 (ILjava/nio/FloatBuffer;)V com/mojang/blaze3d/systems/RenderSystem/lambda$glUniform3$50 (ILjava/nio/FloatBuffer;)V +MD: com/mojang/blaze3d/systems/RenderSystem/lambda$glUniform4$47 (ILjava/nio/IntBuffer;)V com/mojang/blaze3d/systems/RenderSystem/lambda$glUniform4$47 (ILjava/nio/IntBuffer;)V +MD: com/mojang/blaze3d/systems/RenderSystem/lambda$glUniform4$51 (ILjava/nio/FloatBuffer;)V com/mojang/blaze3d/systems/RenderSystem/lambda$glUniform4$51 (ILjava/nio/FloatBuffer;)V +MD: com/mojang/blaze3d/systems/RenderSystem/lambda$glUniformMatrix2$52 (IZLjava/nio/FloatBuffer;)V com/mojang/blaze3d/systems/RenderSystem/lambda$glUniformMatrix2$52 (IZLjava/nio/FloatBuffer;)V +MD: com/mojang/blaze3d/systems/RenderSystem/lambda$glUniformMatrix3$53 (IZLjava/nio/FloatBuffer;)V com/mojang/blaze3d/systems/RenderSystem/lambda$glUniformMatrix3$53 (IZLjava/nio/FloatBuffer;)V +MD: com/mojang/blaze3d/systems/RenderSystem/lambda$glUniformMatrix4$54 (IZLjava/nio/FloatBuffer;)V com/mojang/blaze3d/systems/RenderSystem/lambda$glUniformMatrix4$54 (IZLjava/nio/FloatBuffer;)V +MD: com/mojang/blaze3d/systems/RenderSystem/lambda$lineWidth$34 (F)V com/mojang/blaze3d/systems/RenderSystem/lambda$lineWidth$34 (F)V +MD: com/mojang/blaze3d/systems/RenderSystem/lambda$logicOp$12 (Lcom/mojang/blaze3d/platform/GlStateManager$LogicOp;)V com/mojang/blaze3d/systems/RenderSystem/lambda$logicOp$12 (Lcom/mojang/blaze3d/platform/GlStateManager$LogicOp;)V +MD: com/mojang/blaze3d/systems/RenderSystem/lambda$pixelStore$35 (II)V com/mojang/blaze3d/systems/RenderSystem/lambda$pixelStore$35 (II)V +MD: com/mojang/blaze3d/systems/RenderSystem/lambda$polygonMode$10 (II)V com/mojang/blaze3d/systems/RenderSystem/lambda$polygonMode$10 (II)V +MD: com/mojang/blaze3d/systems/RenderSystem/lambda$polygonOffset$11 (FF)V com/mojang/blaze3d/systems/RenderSystem/lambda$polygonOffset$11 (FF)V +MD: com/mojang/blaze3d/systems/RenderSystem/lambda$readPixels$36 (IIIIIILjava/nio/ByteBuffer;)V com/mojang/blaze3d/systems/RenderSystem/lambda$readPixels$36 (IIIIIILjava/nio/ByteBuffer;)V +MD: com/mojang/blaze3d/systems/RenderSystem/lambda$renderCrosshair$38 (I)V com/mojang/blaze3d/systems/RenderSystem/lambda$renderCrosshair$38 (I)V +MD: com/mojang/blaze3d/systems/RenderSystem/lambda$resetTextureMatrix$68 ()V com/mojang/blaze3d/systems/RenderSystem/lambda$resetTextureMatrix$68 ()V +MD: com/mojang/blaze3d/systems/RenderSystem/lambda$restoreProjectionMatrix$71 ()V com/mojang/blaze3d/systems/RenderSystem/lambda$restoreProjectionMatrix$71 ()V +MD: com/mojang/blaze3d/systems/RenderSystem/lambda$setInverseViewRotationMatrix$66 (Lorg/joml/Matrix3f;)V com/mojang/blaze3d/systems/RenderSystem/lambda$setInverseViewRotationMatrix$66 (Lorg/joml/Matrix3f;)V +MD: com/mojang/blaze3d/systems/RenderSystem/lambda$setProjectionMatrix$65 (Lorg/joml/Matrix4f;Lcom/mojang/blaze3d/vertex/VertexSorting;)V com/mojang/blaze3d/systems/RenderSystem/lambda$setProjectionMatrix$65 (Lorg/joml/Matrix4f;Lcom/mojang/blaze3d/vertex/VertexSorting;)V +MD: com/mojang/blaze3d/systems/RenderSystem/lambda$setShader$62 (Ljava/util/function/Supplier;)V com/mojang/blaze3d/systems/RenderSystem/lambda$setShader$62 (Ljava/util/function/Supplier;)V +MD: com/mojang/blaze3d/systems/RenderSystem/lambda$setShaderColor$32 (FFFF)V com/mojang/blaze3d/systems/RenderSystem/lambda$setShaderColor$32 (FFFF)V +MD: com/mojang/blaze3d/systems/RenderSystem/lambda$setShaderFogColor$29 (FFFF)V com/mojang/blaze3d/systems/RenderSystem/lambda$setShaderFogColor$29 (FFFF)V +MD: com/mojang/blaze3d/systems/RenderSystem/lambda$setShaderFogEnd$28 (F)V com/mojang/blaze3d/systems/RenderSystem/lambda$setShaderFogEnd$28 (F)V +MD: com/mojang/blaze3d/systems/RenderSystem/lambda$setShaderFogShape$30 (Lcom/mojang/blaze3d/shaders/FogShape;)V com/mojang/blaze3d/systems/RenderSystem/lambda$setShaderFogShape$30 (Lcom/mojang/blaze3d/shaders/FogShape;)V +MD: com/mojang/blaze3d/systems/RenderSystem/lambda$setShaderFogStart$26 (F)V com/mojang/blaze3d/systems/RenderSystem/lambda$setShaderFogStart$26 (F)V +MD: com/mojang/blaze3d/systems/RenderSystem/lambda$setShaderGameTime$72 (F)V com/mojang/blaze3d/systems/RenderSystem/lambda$setShaderGameTime$72 (F)V +MD: com/mojang/blaze3d/systems/RenderSystem/lambda$setShaderGlintAlpha$27 (F)V com/mojang/blaze3d/systems/RenderSystem/lambda$setShaderGlintAlpha$27 (F)V +MD: com/mojang/blaze3d/systems/RenderSystem/lambda$setShaderLights$31 (Lorg/joml/Vector3f;Lorg/joml/Vector3f;)V com/mojang/blaze3d/systems/RenderSystem/lambda$setShaderLights$31 (Lorg/joml/Vector3f;Lorg/joml/Vector3f;)V +MD: com/mojang/blaze3d/systems/RenderSystem/lambda$setShaderTexture$63 (ILnet/minecraft/resources/ResourceLocation;)V com/mojang/blaze3d/systems/RenderSystem/lambda$setShaderTexture$63 (ILnet/minecraft/resources/ResourceLocation;)V +MD: com/mojang/blaze3d/systems/RenderSystem/lambda$setShaderTexture$64 (II)V com/mojang/blaze3d/systems/RenderSystem/lambda$setShaderTexture$64 (II)V +MD: com/mojang/blaze3d/systems/RenderSystem/lambda$setTextureMatrix$67 (Lorg/joml/Matrix4f;)V com/mojang/blaze3d/systems/RenderSystem/lambda$setTextureMatrix$67 (Lorg/joml/Matrix4f;)V +MD: com/mojang/blaze3d/systems/RenderSystem/lambda$setupGui3DDiffuseLighting$59 (Lorg/joml/Vector3f;Lorg/joml/Vector3f;)V com/mojang/blaze3d/systems/RenderSystem/lambda$setupGui3DDiffuseLighting$59 (Lorg/joml/Vector3f;Lorg/joml/Vector3f;)V +MD: com/mojang/blaze3d/systems/RenderSystem/lambda$setupGuiFlatDiffuseLighting$58 (Lorg/joml/Vector3f;Lorg/joml/Vector3f;)V com/mojang/blaze3d/systems/RenderSystem/lambda$setupGuiFlatDiffuseLighting$58 (Lorg/joml/Vector3f;Lorg/joml/Vector3f;)V +MD: com/mojang/blaze3d/systems/RenderSystem/lambda$setupLevelDiffuseLighting$57 (Lorg/joml/Vector3f;Lorg/joml/Vector3f;Lorg/joml/Matrix4f;)V com/mojang/blaze3d/systems/RenderSystem/lambda$setupLevelDiffuseLighting$57 (Lorg/joml/Vector3f;Lorg/joml/Vector3f;Lorg/joml/Matrix4f;)V +MD: com/mojang/blaze3d/systems/RenderSystem/lambda$setupOverlayColor$55 (Ljava/util/function/IntSupplier;)V com/mojang/blaze3d/systems/RenderSystem/lambda$setupOverlayColor$55 (Ljava/util/function/IntSupplier;)V +MD: com/mojang/blaze3d/systems/RenderSystem/lambda$static$0 (Lit/unimi/dsi/fastutil/ints/IntConsumer;I)V com/mojang/blaze3d/systems/RenderSystem/lambda$static$0 (Lit/unimi/dsi/fastutil/ints/IntConsumer;I)V +MD: com/mojang/blaze3d/systems/RenderSystem/lambda$static$1 (Lit/unimi/dsi/fastutil/ints/IntConsumer;I)V com/mojang/blaze3d/systems/RenderSystem/lambda$static$1 (Lit/unimi/dsi/fastutil/ints/IntConsumer;I)V +MD: com/mojang/blaze3d/systems/RenderSystem/lambda$stencilFunc$19 (III)V com/mojang/blaze3d/systems/RenderSystem/lambda$stencilFunc$19 (III)V +MD: com/mojang/blaze3d/systems/RenderSystem/lambda$stencilMask$20 (I)V com/mojang/blaze3d/systems/RenderSystem/lambda$stencilMask$20 (I)V +MD: com/mojang/blaze3d/systems/RenderSystem/lambda$stencilOp$21 (III)V com/mojang/blaze3d/systems/RenderSystem/lambda$stencilOp$21 (III)V +MD: com/mojang/blaze3d/systems/RenderSystem/lambda$teardownOverlayColor$56 ()V com/mojang/blaze3d/systems/RenderSystem/lambda$teardownOverlayColor$56 ()V +MD: com/mojang/blaze3d/systems/RenderSystem/lambda$texParameter$14 (III)V com/mojang/blaze3d/systems/RenderSystem/lambda$texParameter$14 (III)V +MD: com/mojang/blaze3d/systems/RenderSystem/lambda$viewport$17 (IIII)V com/mojang/blaze3d/systems/RenderSystem/lambda$viewport$17 (IIII)V +MD: com/mojang/blaze3d/systems/RenderSystem/limitDisplayFPS (I)V com/mojang/blaze3d/systems/RenderSystem/limitDisplayFPS (I)V +MD: com/mojang/blaze3d/systems/RenderSystem/lineWidth (F)V com/mojang/blaze3d/systems/RenderSystem/lineWidth (F)V +MD: com/mojang/blaze3d/systems/RenderSystem/logicOp (Lcom/mojang/blaze3d/platform/GlStateManager$LogicOp;)V com/mojang/blaze3d/systems/RenderSystem/logicOp (Lcom/mojang/blaze3d/platform/GlStateManager$LogicOp;)V +MD: com/mojang/blaze3d/systems/RenderSystem/maxSupportedTextureSize ()I com/mojang/blaze3d/systems/RenderSystem/maxSupportedTextureSize ()I +MD: com/mojang/blaze3d/systems/RenderSystem/pixelStore (II)V com/mojang/blaze3d/systems/RenderSystem/pixelStore (II)V +MD: com/mojang/blaze3d/systems/RenderSystem/pollEvents ()V com/mojang/blaze3d/systems/RenderSystem/pollEvents ()V +MD: com/mojang/blaze3d/systems/RenderSystem/polygonMode (II)V com/mojang/blaze3d/systems/RenderSystem/polygonMode (II)V +MD: com/mojang/blaze3d/systems/RenderSystem/polygonOffset (FF)V com/mojang/blaze3d/systems/RenderSystem/polygonOffset (FF)V +MD: com/mojang/blaze3d/systems/RenderSystem/readPixels (IIIIIILjava/nio/ByteBuffer;)V com/mojang/blaze3d/systems/RenderSystem/readPixels (IIIIIILjava/nio/ByteBuffer;)V +MD: com/mojang/blaze3d/systems/RenderSystem/recordRenderCall (Lcom/mojang/blaze3d/pipeline/RenderCall;)V com/mojang/blaze3d/systems/RenderSystem/recordRenderCall (Lcom/mojang/blaze3d/pipeline/RenderCall;)V +MD: com/mojang/blaze3d/systems/RenderSystem/renderCrosshair (I)V com/mojang/blaze3d/systems/RenderSystem/renderCrosshair (I)V +MD: com/mojang/blaze3d/systems/RenderSystem/renderThreadTesselator ()Lcom/mojang/blaze3d/vertex/Tesselator; com/mojang/blaze3d/systems/RenderSystem/renderThreadTesselator ()Lcom/mojang/blaze3d/vertex/Tesselator; +MD: com/mojang/blaze3d/systems/RenderSystem/replayQueue ()V com/mojang/blaze3d/systems/RenderSystem/replayQueue ()V +MD: com/mojang/blaze3d/systems/RenderSystem/resetTextureMatrix ()V com/mojang/blaze3d/systems/RenderSystem/resetTextureMatrix ()V +MD: com/mojang/blaze3d/systems/RenderSystem/restoreProjectionMatrix ()V com/mojang/blaze3d/systems/RenderSystem/restoreProjectionMatrix ()V +MD: com/mojang/blaze3d/systems/RenderSystem/runAsFancy (Ljava/lang/Runnable;)V com/mojang/blaze3d/systems/RenderSystem/runAsFancy (Ljava/lang/Runnable;)V +MD: com/mojang/blaze3d/systems/RenderSystem/setErrorCallback (Lorg/lwjgl/glfw/GLFWErrorCallbackI;)V com/mojang/blaze3d/systems/RenderSystem/setErrorCallback (Lorg/lwjgl/glfw/GLFWErrorCallbackI;)V +MD: com/mojang/blaze3d/systems/RenderSystem/setInverseViewRotationMatrix (Lorg/joml/Matrix3f;)V com/mojang/blaze3d/systems/RenderSystem/setInverseViewRotationMatrix (Lorg/joml/Matrix3f;)V +MD: com/mojang/blaze3d/systems/RenderSystem/setProjectionMatrix (Lorg/joml/Matrix4f;Lcom/mojang/blaze3d/vertex/VertexSorting;)V com/mojang/blaze3d/systems/RenderSystem/setProjectionMatrix (Lorg/joml/Matrix4f;Lcom/mojang/blaze3d/vertex/VertexSorting;)V +MD: com/mojang/blaze3d/systems/RenderSystem/setShader (Ljava/util/function/Supplier;)V com/mojang/blaze3d/systems/RenderSystem/setShader (Ljava/util/function/Supplier;)V +MD: com/mojang/blaze3d/systems/RenderSystem/setShaderColor (FFFF)V com/mojang/blaze3d/systems/RenderSystem/setShaderColor (FFFF)V +MD: com/mojang/blaze3d/systems/RenderSystem/setShaderFogColor (FFF)V com/mojang/blaze3d/systems/RenderSystem/setShaderFogColor (FFF)V +MD: com/mojang/blaze3d/systems/RenderSystem/setShaderFogColor (FFFF)V com/mojang/blaze3d/systems/RenderSystem/setShaderFogColor (FFFF)V +MD: com/mojang/blaze3d/systems/RenderSystem/setShaderFogEnd (F)V com/mojang/blaze3d/systems/RenderSystem/setShaderFogEnd (F)V +MD: com/mojang/blaze3d/systems/RenderSystem/setShaderFogShape (Lcom/mojang/blaze3d/shaders/FogShape;)V com/mojang/blaze3d/systems/RenderSystem/setShaderFogShape (Lcom/mojang/blaze3d/shaders/FogShape;)V +MD: com/mojang/blaze3d/systems/RenderSystem/setShaderFogStart (F)V com/mojang/blaze3d/systems/RenderSystem/setShaderFogStart (F)V +MD: com/mojang/blaze3d/systems/RenderSystem/setShaderGameTime (JF)V com/mojang/blaze3d/systems/RenderSystem/setShaderGameTime (JF)V +MD: com/mojang/blaze3d/systems/RenderSystem/setShaderGlintAlpha (F)V com/mojang/blaze3d/systems/RenderSystem/setShaderGlintAlpha (F)V +MD: com/mojang/blaze3d/systems/RenderSystem/setShaderGlintAlpha (D)V com/mojang/blaze3d/systems/RenderSystem/setShaderGlintAlpha (D)V +MD: com/mojang/blaze3d/systems/RenderSystem/setShaderLights (Lorg/joml/Vector3f;Lorg/joml/Vector3f;)V com/mojang/blaze3d/systems/RenderSystem/setShaderLights (Lorg/joml/Vector3f;Lorg/joml/Vector3f;)V +MD: com/mojang/blaze3d/systems/RenderSystem/setShaderTexture (II)V com/mojang/blaze3d/systems/RenderSystem/setShaderTexture (II)V +MD: com/mojang/blaze3d/systems/RenderSystem/setShaderTexture (ILnet/minecraft/resources/ResourceLocation;)V com/mojang/blaze3d/systems/RenderSystem/setShaderTexture (ILnet/minecraft/resources/ResourceLocation;)V +MD: com/mojang/blaze3d/systems/RenderSystem/setTextureMatrix (Lorg/joml/Matrix4f;)V com/mojang/blaze3d/systems/RenderSystem/setTextureMatrix (Lorg/joml/Matrix4f;)V +MD: com/mojang/blaze3d/systems/RenderSystem/setupDefaultState (IIII)V com/mojang/blaze3d/systems/RenderSystem/setupDefaultState (IIII)V +MD: com/mojang/blaze3d/systems/RenderSystem/setupGui3DDiffuseLighting (Lorg/joml/Vector3f;Lorg/joml/Vector3f;)V com/mojang/blaze3d/systems/RenderSystem/setupGui3DDiffuseLighting (Lorg/joml/Vector3f;Lorg/joml/Vector3f;)V +MD: com/mojang/blaze3d/systems/RenderSystem/setupGuiFlatDiffuseLighting (Lorg/joml/Vector3f;Lorg/joml/Vector3f;)V com/mojang/blaze3d/systems/RenderSystem/setupGuiFlatDiffuseLighting (Lorg/joml/Vector3f;Lorg/joml/Vector3f;)V +MD: com/mojang/blaze3d/systems/RenderSystem/setupLevelDiffuseLighting (Lorg/joml/Vector3f;Lorg/joml/Vector3f;Lorg/joml/Matrix4f;)V com/mojang/blaze3d/systems/RenderSystem/setupLevelDiffuseLighting (Lorg/joml/Vector3f;Lorg/joml/Vector3f;Lorg/joml/Matrix4f;)V +MD: com/mojang/blaze3d/systems/RenderSystem/setupOverlayColor (Ljava/util/function/IntSupplier;I)V com/mojang/blaze3d/systems/RenderSystem/setupOverlayColor (Ljava/util/function/IntSupplier;I)V +MD: com/mojang/blaze3d/systems/RenderSystem/setupShaderLights (Lnet/minecraft/client/renderer/ShaderInstance;)V com/mojang/blaze3d/systems/RenderSystem/setupShaderLights (Lnet/minecraft/client/renderer/ShaderInstance;)V +MD: com/mojang/blaze3d/systems/RenderSystem/stencilFunc (III)V com/mojang/blaze3d/systems/RenderSystem/stencilFunc (III)V +MD: com/mojang/blaze3d/systems/RenderSystem/stencilMask (I)V com/mojang/blaze3d/systems/RenderSystem/stencilMask (I)V +MD: com/mojang/blaze3d/systems/RenderSystem/stencilOp (III)V com/mojang/blaze3d/systems/RenderSystem/stencilOp (III)V +MD: com/mojang/blaze3d/systems/RenderSystem/teardownOverlayColor ()V com/mojang/blaze3d/systems/RenderSystem/teardownOverlayColor ()V +MD: com/mojang/blaze3d/systems/RenderSystem/texParameter (III)V com/mojang/blaze3d/systems/RenderSystem/texParameter (III)V +MD: com/mojang/blaze3d/systems/RenderSystem/viewport (IIII)V com/mojang/blaze3d/systems/RenderSystem/viewport (IIII)V +MD: com/mojang/blaze3d/systems/RenderSystem$1/ ()V com/mojang/blaze3d/systems/RenderSystem$1/ ()V +MD: com/mojang/blaze3d/systems/RenderSystem$AutoStorageIndexBuffer/ (IILcom/mojang/blaze3d/systems/RenderSystem$AutoStorageIndexBuffer$IndexGenerator;)V com/mojang/blaze3d/systems/RenderSystem$AutoStorageIndexBuffer/ (IILcom/mojang/blaze3d/systems/RenderSystem$AutoStorageIndexBuffer$IndexGenerator;)V +MD: com/mojang/blaze3d/systems/RenderSystem$AutoStorageIndexBuffer/m_157476_ (I)V com/mojang/blaze3d/systems/RenderSystem$AutoStorageIndexBuffer/ensureStorage (I)V +MD: com/mojang/blaze3d/systems/RenderSystem$AutoStorageIndexBuffer/m_157478_ (Ljava/nio/ByteBuffer;)Lit/unimi/dsi/fastutil/ints/IntConsumer; com/mojang/blaze3d/systems/RenderSystem$AutoStorageIndexBuffer/intConsumer (Ljava/nio/ByteBuffer;)Lit/unimi/dsi/fastutil/ints/IntConsumer; +MD: com/mojang/blaze3d/systems/RenderSystem$AutoStorageIndexBuffer/m_157480_ (Ljava/nio/ByteBuffer;I)V com/mojang/blaze3d/systems/RenderSystem$AutoStorageIndexBuffer/lambda$intConsumer$0 (Ljava/nio/ByteBuffer;I)V +MD: com/mojang/blaze3d/systems/RenderSystem$AutoStorageIndexBuffer/m_157483_ ()Lcom/mojang/blaze3d/vertex/VertexFormat$IndexType; com/mojang/blaze3d/systems/RenderSystem$AutoStorageIndexBuffer/type ()Lcom/mojang/blaze3d/vertex/VertexFormat$IndexType; +MD: com/mojang/blaze3d/systems/RenderSystem$AutoStorageIndexBuffer/m_221944_ (I)Z com/mojang/blaze3d/systems/RenderSystem$AutoStorageIndexBuffer/hasStorage (I)Z +MD: com/mojang/blaze3d/systems/RenderSystem$AutoStorageIndexBuffer/m_221946_ (I)V com/mojang/blaze3d/systems/RenderSystem$AutoStorageIndexBuffer/bind (I)V +MD: com/mojang/blaze3d/systems/RenderSystem$AutoStorageIndexBuffer$IndexGenerator/m_157487_ (Lit/unimi/dsi/fastutil/ints/IntConsumer;I)V com/mojang/blaze3d/systems/RenderSystem$AutoStorageIndexBuffer$IndexGenerator/accept (Lit/unimi/dsi/fastutil/ints/IntConsumer;I)V +MD: com/mojang/blaze3d/systems/TimerQuery/ ()V com/mojang/blaze3d/systems/TimerQuery/ ()V +MD: com/mojang/blaze3d/systems/TimerQuery/m_231140_ ()Ljava/util/Optional; com/mojang/blaze3d/systems/TimerQuery/getInstance ()Ljava/util/Optional; +MD: com/mojang/blaze3d/systems/TimerQuery/m_231141_ ()V com/mojang/blaze3d/systems/TimerQuery/beginProfile ()V +MD: com/mojang/blaze3d/systems/TimerQuery/m_231142_ ()Lcom/mojang/blaze3d/systems/TimerQuery$FrameProfile; com/mojang/blaze3d/systems/TimerQuery/endProfile ()Lcom/mojang/blaze3d/systems/TimerQuery$FrameProfile; +MD: com/mojang/blaze3d/systems/TimerQuery$FrameProfile/ (I)V com/mojang/blaze3d/systems/TimerQuery$FrameProfile/ (I)V +MD: com/mojang/blaze3d/systems/TimerQuery$FrameProfile/m_231149_ ()V com/mojang/blaze3d/systems/TimerQuery$FrameProfile/cancel ()V +MD: com/mojang/blaze3d/systems/TimerQuery$FrameProfile/m_231150_ ()Z com/mojang/blaze3d/systems/TimerQuery$FrameProfile/isDone ()Z +MD: com/mojang/blaze3d/systems/TimerQuery$FrameProfile/m_231151_ ()J com/mojang/blaze3d/systems/TimerQuery$FrameProfile/get ()J +MD: com/mojang/blaze3d/systems/TimerQuery$TimerQueryLazyLoader/ ()V com/mojang/blaze3d/systems/TimerQuery$TimerQueryLazyLoader/ ()V +MD: com/mojang/blaze3d/systems/TimerQuery$TimerQueryLazyLoader/ ()V com/mojang/blaze3d/systems/TimerQuery$TimerQueryLazyLoader/ ()V +MD: com/mojang/blaze3d/systems/TimerQuery$TimerQueryLazyLoader/m_231155_ ()Lcom/mojang/blaze3d/systems/TimerQuery; com/mojang/blaze3d/systems/TimerQuery$TimerQueryLazyLoader/instantiate ()Lcom/mojang/blaze3d/systems/TimerQuery; +MD: com/mojang/blaze3d/vertex/BufferBuilder/ ()V com/mojang/blaze3d/vertex/BufferBuilder/ ()V +MD: com/mojang/blaze3d/vertex/BufferBuilder/ (I)V com/mojang/blaze3d/vertex/BufferBuilder/ (I)V +MD: com/mojang/blaze3d/vertex/BufferBuilder/m_166770_ ()Lcom/mojang/blaze3d/vertex/BufferBuilder$SortState; com/mojang/blaze3d/vertex/BufferBuilder/getSortState ()Lcom/mojang/blaze3d/vertex/BufferBuilder$SortState; +MD: com/mojang/blaze3d/vertex/BufferBuilder/m_166775_ (Lcom/mojang/blaze3d/vertex/BufferBuilder$SortState;)V com/mojang/blaze3d/vertex/BufferBuilder/restoreSortState (Lcom/mojang/blaze3d/vertex/BufferBuilder$SortState;)V +MD: com/mojang/blaze3d/vertex/BufferBuilder/m_166779_ (Lcom/mojang/blaze3d/vertex/VertexFormat$Mode;Lcom/mojang/blaze3d/vertex/VertexFormat;)V com/mojang/blaze3d/vertex/BufferBuilder/begin (Lcom/mojang/blaze3d/vertex/VertexFormat$Mode;Lcom/mojang/blaze3d/vertex/VertexFormat;)V +MD: com/mojang/blaze3d/vertex/BufferBuilder/m_166786_ (Lcom/mojang/blaze3d/vertex/VertexFormat$IndexType;)V com/mojang/blaze3d/vertex/BufferBuilder/putSortedQuadIndices (Lcom/mojang/blaze3d/vertex/VertexFormat$IndexType;)V +MD: com/mojang/blaze3d/vertex/BufferBuilder/m_166794_ ()[Lorg/joml/Vector3f; com/mojang/blaze3d/vertex/BufferBuilder/makeQuadSortingPoints ()[Lorg/joml/Vector3f; +MD: com/mojang/blaze3d/vertex/BufferBuilder/m_231158_ (ILcom/mojang/blaze3d/vertex/VertexFormat$IndexType;)Lit/unimi/dsi/fastutil/ints/IntConsumer; com/mojang/blaze3d/vertex/BufferBuilder/intConsumer (ILcom/mojang/blaze3d/vertex/VertexFormat$IndexType;)Lit/unimi/dsi/fastutil/ints/IntConsumer; +MD: com/mojang/blaze3d/vertex/BufferBuilder/m_231161_ (Lorg/apache/commons/lang3/mutable/MutableInt;I)V com/mojang/blaze3d/vertex/BufferBuilder/lambda$intConsumer$1 (Lorg/apache/commons/lang3/mutable/MutableInt;I)V +MD: com/mojang/blaze3d/vertex/BufferBuilder/m_231164_ ()Z com/mojang/blaze3d/vertex/BufferBuilder/isCurrentBatchEmpty ()Z +MD: com/mojang/blaze3d/vertex/BufferBuilder/m_231165_ (Lorg/apache/commons/lang3/mutable/MutableInt;I)V com/mojang/blaze3d/vertex/BufferBuilder/lambda$intConsumer$0 (Lorg/apache/commons/lang3/mutable/MutableInt;I)V +MD: com/mojang/blaze3d/vertex/BufferBuilder/m_231168_ ()Lcom/mojang/blaze3d/vertex/BufferBuilder$RenderedBuffer; com/mojang/blaze3d/vertex/BufferBuilder/endOrDiscardIfEmpty ()Lcom/mojang/blaze3d/vertex/BufferBuilder$RenderedBuffer; +MD: com/mojang/blaze3d/vertex/BufferBuilder/m_231169_ (II)Ljava/nio/ByteBuffer; com/mojang/blaze3d/vertex/BufferBuilder/bufferSlice (II)Ljava/nio/ByteBuffer; +MD: com/mojang/blaze3d/vertex/BufferBuilder/m_231175_ ()Lcom/mojang/blaze3d/vertex/BufferBuilder$RenderedBuffer; com/mojang/blaze3d/vertex/BufferBuilder/end ()Lcom/mojang/blaze3d/vertex/BufferBuilder$RenderedBuffer; +MD: com/mojang/blaze3d/vertex/BufferBuilder/m_231176_ ()V com/mojang/blaze3d/vertex/BufferBuilder/ensureDrawing ()V +MD: com/mojang/blaze3d/vertex/BufferBuilder/m_231177_ ()Lcom/mojang/blaze3d/vertex/BufferBuilder$RenderedBuffer; com/mojang/blaze3d/vertex/BufferBuilder/storeRenderedBuffer ()Lcom/mojang/blaze3d/vertex/BufferBuilder$RenderedBuffer; +MD: com/mojang/blaze3d/vertex/BufferBuilder/m_231178_ ()V com/mojang/blaze3d/vertex/BufferBuilder/reset ()V +MD: com/mojang/blaze3d/vertex/BufferBuilder/m_231179_ ()V com/mojang/blaze3d/vertex/BufferBuilder/releaseRenderedBuffer ()V +MD: com/mojang/blaze3d/vertex/BufferBuilder/m_277127_ (Lcom/mojang/blaze3d/vertex/VertexSorting;)V com/mojang/blaze3d/vertex/BufferBuilder/setQuadSorting (Lcom/mojang/blaze3d/vertex/VertexSorting;)V +MD: com/mojang/blaze3d/vertex/BufferBuilder/m_5586_ (IS)V com/mojang/blaze3d/vertex/BufferBuilder/putShort (IS)V +MD: com/mojang/blaze3d/vertex/BufferBuilder/m_5672_ (IB)V com/mojang/blaze3d/vertex/BufferBuilder/putByte (IB)V +MD: com/mojang/blaze3d/vertex/BufferBuilder/m_5751_ ()V com/mojang/blaze3d/vertex/BufferBuilder/nextElement ()V +MD: com/mojang/blaze3d/vertex/BufferBuilder/m_5752_ ()V com/mojang/blaze3d/vertex/BufferBuilder/endVertex ()V +MD: com/mojang/blaze3d/vertex/BufferBuilder/m_5832_ (IF)V com/mojang/blaze3d/vertex/BufferBuilder/putFloat (IF)V +MD: com/mojang/blaze3d/vertex/BufferBuilder/m_5954_ (FFFFFFFFFIIFFF)V com/mojang/blaze3d/vertex/BufferBuilder/vertex (FFFFFFFFFIIFFF)V +MD: com/mojang/blaze3d/vertex/BufferBuilder/m_6122_ (IIII)Lcom/mojang/blaze3d/vertex/VertexConsumer; com/mojang/blaze3d/vertex/BufferBuilder/color (IIII)Lcom/mojang/blaze3d/vertex/VertexConsumer; +MD: com/mojang/blaze3d/vertex/BufferBuilder/m_6297_ ()Lcom/mojang/blaze3d/vertex/VertexFormatElement; com/mojang/blaze3d/vertex/BufferBuilder/currentElement ()Lcom/mojang/blaze3d/vertex/VertexFormatElement; +MD: com/mojang/blaze3d/vertex/BufferBuilder/m_85665_ ()V com/mojang/blaze3d/vertex/BufferBuilder/ensureVertexCapacity ()V +MD: com/mojang/blaze3d/vertex/BufferBuilder/m_85704_ (Lcom/mojang/blaze3d/vertex/VertexFormat;)V com/mojang/blaze3d/vertex/BufferBuilder/switchFormat (Lcom/mojang/blaze3d/vertex/VertexFormat;)V +MD: com/mojang/blaze3d/vertex/BufferBuilder/m_85722_ (I)V com/mojang/blaze3d/vertex/BufferBuilder/ensureCapacity (I)V +MD: com/mojang/blaze3d/vertex/BufferBuilder/m_85725_ (I)I com/mojang/blaze3d/vertex/BufferBuilder/roundUp (I)I +MD: com/mojang/blaze3d/vertex/BufferBuilder/m_85729_ ()V com/mojang/blaze3d/vertex/BufferBuilder/clear ()V +MD: com/mojang/blaze3d/vertex/BufferBuilder/m_85730_ ()V com/mojang/blaze3d/vertex/BufferBuilder/discard ()V +MD: com/mojang/blaze3d/vertex/BufferBuilder/m_85732_ ()Z com/mojang/blaze3d/vertex/BufferBuilder/building ()Z +MD: com/mojang/blaze3d/vertex/BufferBuilder$1/ ()V com/mojang/blaze3d/vertex/BufferBuilder$1/ ()V +MD: com/mojang/blaze3d/vertex/BufferBuilder$DrawState/ (Lcom/mojang/blaze3d/vertex/VertexFormat;IILcom/mojang/blaze3d/vertex/VertexFormat$Mode;Lcom/mojang/blaze3d/vertex/VertexFormat$IndexType;ZZ)V com/mojang/blaze3d/vertex/BufferBuilder$DrawState/ (Lcom/mojang/blaze3d/vertex/VertexFormat;IILcom/mojang/blaze3d/vertex/VertexFormat$Mode;Lcom/mojang/blaze3d/vertex/VertexFormat$IndexType;ZZ)V +MD: com/mojang/blaze3d/vertex/BufferBuilder$DrawState/equals (Ljava/lang/Object;)Z com/mojang/blaze3d/vertex/BufferBuilder$DrawState/equals (Ljava/lang/Object;)Z +MD: com/mojang/blaze3d/vertex/BufferBuilder$DrawState/f_166797_ ()I com/mojang/blaze3d/vertex/BufferBuilder$DrawState/indexCount ()I +MD: com/mojang/blaze3d/vertex/BufferBuilder$DrawState/f_166798_ ()Lcom/mojang/blaze3d/vertex/VertexFormat$IndexType; com/mojang/blaze3d/vertex/BufferBuilder$DrawState/indexType ()Lcom/mojang/blaze3d/vertex/VertexFormat$IndexType; +MD: com/mojang/blaze3d/vertex/BufferBuilder$DrawState/f_166799_ ()Z com/mojang/blaze3d/vertex/BufferBuilder$DrawState/indexOnly ()Z +MD: com/mojang/blaze3d/vertex/BufferBuilder$DrawState/f_166800_ ()Z com/mojang/blaze3d/vertex/BufferBuilder$DrawState/sequentialIndex ()Z +MD: com/mojang/blaze3d/vertex/BufferBuilder$DrawState/f_85733_ ()Lcom/mojang/blaze3d/vertex/VertexFormat; com/mojang/blaze3d/vertex/BufferBuilder$DrawState/format ()Lcom/mojang/blaze3d/vertex/VertexFormat; +MD: com/mojang/blaze3d/vertex/BufferBuilder$DrawState/f_85734_ ()I com/mojang/blaze3d/vertex/BufferBuilder$DrawState/vertexCount ()I +MD: com/mojang/blaze3d/vertex/BufferBuilder$DrawState/f_85735_ ()Lcom/mojang/blaze3d/vertex/VertexFormat$Mode; com/mojang/blaze3d/vertex/BufferBuilder$DrawState/mode ()Lcom/mojang/blaze3d/vertex/VertexFormat$Mode; +MD: com/mojang/blaze3d/vertex/BufferBuilder$DrawState/hashCode ()I com/mojang/blaze3d/vertex/BufferBuilder$DrawState/hashCode ()I +MD: com/mojang/blaze3d/vertex/BufferBuilder$DrawState/m_166812_ ()I com/mojang/blaze3d/vertex/BufferBuilder$DrawState/vertexBufferSize ()I +MD: com/mojang/blaze3d/vertex/BufferBuilder$DrawState/m_166813_ ()I com/mojang/blaze3d/vertex/BufferBuilder$DrawState/bufferSize ()I +MD: com/mojang/blaze3d/vertex/BufferBuilder$DrawState/m_166816_ ()I com/mojang/blaze3d/vertex/BufferBuilder$DrawState/indexBufferSize ()I +MD: com/mojang/blaze3d/vertex/BufferBuilder$DrawState/m_231180_ ()I com/mojang/blaze3d/vertex/BufferBuilder$DrawState/vertexBufferStart ()I +MD: com/mojang/blaze3d/vertex/BufferBuilder$DrawState/m_231181_ ()I com/mojang/blaze3d/vertex/BufferBuilder$DrawState/vertexBufferEnd ()I +MD: com/mojang/blaze3d/vertex/BufferBuilder$DrawState/m_231182_ ()I com/mojang/blaze3d/vertex/BufferBuilder$DrawState/indexBufferStart ()I +MD: com/mojang/blaze3d/vertex/BufferBuilder$DrawState/m_231183_ ()I com/mojang/blaze3d/vertex/BufferBuilder$DrawState/indexBufferEnd ()I +MD: com/mojang/blaze3d/vertex/BufferBuilder$DrawState/toString ()Ljava/lang/String; com/mojang/blaze3d/vertex/BufferBuilder$DrawState/toString ()Ljava/lang/String; +MD: com/mojang/blaze3d/vertex/BufferBuilder$RenderedBuffer/ (Lcom/mojang/blaze3d/vertex/BufferBuilder;ILcom/mojang/blaze3d/vertex/BufferBuilder$DrawState;)V com/mojang/blaze3d/vertex/BufferBuilder$RenderedBuffer/ (Lcom/mojang/blaze3d/vertex/BufferBuilder;ILcom/mojang/blaze3d/vertex/BufferBuilder$DrawState;)V +MD: com/mojang/blaze3d/vertex/BufferBuilder$RenderedBuffer/m_231196_ ()Ljava/nio/ByteBuffer; com/mojang/blaze3d/vertex/BufferBuilder$RenderedBuffer/vertexBuffer ()Ljava/nio/ByteBuffer; +MD: com/mojang/blaze3d/vertex/BufferBuilder$RenderedBuffer/m_231197_ ()Ljava/nio/ByteBuffer; com/mojang/blaze3d/vertex/BufferBuilder$RenderedBuffer/indexBuffer ()Ljava/nio/ByteBuffer; +MD: com/mojang/blaze3d/vertex/BufferBuilder$RenderedBuffer/m_231198_ ()Lcom/mojang/blaze3d/vertex/BufferBuilder$DrawState; com/mojang/blaze3d/vertex/BufferBuilder$RenderedBuffer/drawState ()Lcom/mojang/blaze3d/vertex/BufferBuilder$DrawState; +MD: com/mojang/blaze3d/vertex/BufferBuilder$RenderedBuffer/m_231199_ ()Z com/mojang/blaze3d/vertex/BufferBuilder$RenderedBuffer/isEmpty ()Z +MD: com/mojang/blaze3d/vertex/BufferBuilder$RenderedBuffer/m_231200_ ()V com/mojang/blaze3d/vertex/BufferBuilder$RenderedBuffer/release ()V +MD: com/mojang/blaze3d/vertex/BufferBuilder$SortState/ (Lcom/mojang/blaze3d/vertex/VertexFormat$Mode;I[Lorg/joml/Vector3f;Lcom/mojang/blaze3d/vertex/VertexSorting;)V com/mojang/blaze3d/vertex/BufferBuilder$SortState/ (Lcom/mojang/blaze3d/vertex/VertexFormat$Mode;I[Lorg/joml/Vector3f;Lcom/mojang/blaze3d/vertex/VertexSorting;)V +MD: com/mojang/blaze3d/vertex/BufferUploader/ ()V com/mojang/blaze3d/vertex/BufferUploader/ ()V +MD: com/mojang/blaze3d/vertex/BufferUploader/m_166835_ ()V com/mojang/blaze3d/vertex/BufferUploader/reset ()V +MD: com/mojang/blaze3d/vertex/BufferUploader/m_231202_ (Lcom/mojang/blaze3d/vertex/BufferBuilder$RenderedBuffer;)V com/mojang/blaze3d/vertex/BufferUploader/drawWithShader (Lcom/mojang/blaze3d/vertex/BufferBuilder$RenderedBuffer;)V +MD: com/mojang/blaze3d/vertex/BufferUploader/m_231204_ (Lcom/mojang/blaze3d/vertex/VertexBuffer;)V com/mojang/blaze3d/vertex/BufferUploader/bindImmediateBuffer (Lcom/mojang/blaze3d/vertex/VertexBuffer;)V +MD: com/mojang/blaze3d/vertex/BufferUploader/m_231206_ (Lcom/mojang/blaze3d/vertex/VertexFormat;)Lcom/mojang/blaze3d/vertex/VertexBuffer; com/mojang/blaze3d/vertex/BufferUploader/bindImmediateBuffer (Lcom/mojang/blaze3d/vertex/VertexFormat;)Lcom/mojang/blaze3d/vertex/VertexBuffer; +MD: com/mojang/blaze3d/vertex/BufferUploader/m_231208_ ()V com/mojang/blaze3d/vertex/BufferUploader/invalidate ()V +MD: com/mojang/blaze3d/vertex/BufferUploader/m_231209_ (Lcom/mojang/blaze3d/vertex/BufferBuilder$RenderedBuffer;)V com/mojang/blaze3d/vertex/BufferUploader/draw (Lcom/mojang/blaze3d/vertex/BufferBuilder$RenderedBuffer;)V +MD: com/mojang/blaze3d/vertex/BufferUploader/m_231211_ (Lcom/mojang/blaze3d/vertex/BufferBuilder$RenderedBuffer;)V com/mojang/blaze3d/vertex/BufferUploader/_drawWithShader (Lcom/mojang/blaze3d/vertex/BufferBuilder$RenderedBuffer;)V +MD: com/mojang/blaze3d/vertex/BufferUploader/m_231213_ (Lcom/mojang/blaze3d/vertex/BufferBuilder$RenderedBuffer;)Lcom/mojang/blaze3d/vertex/VertexBuffer; com/mojang/blaze3d/vertex/BufferUploader/upload (Lcom/mojang/blaze3d/vertex/BufferBuilder$RenderedBuffer;)Lcom/mojang/blaze3d/vertex/VertexBuffer; +MD: com/mojang/blaze3d/vertex/BufferUploader/m_231215_ (Lcom/mojang/blaze3d/vertex/BufferBuilder$RenderedBuffer;)V com/mojang/blaze3d/vertex/BufferUploader/lambda$drawWithShader$0 (Lcom/mojang/blaze3d/vertex/BufferBuilder$RenderedBuffer;)V +MD: com/mojang/blaze3d/vertex/BufferVertexConsumer/m_5483_ (DDD)Lcom/mojang/blaze3d/vertex/VertexConsumer; com/mojang/blaze3d/vertex/BufferVertexConsumer/vertex (DDD)Lcom/mojang/blaze3d/vertex/VertexConsumer; +MD: com/mojang/blaze3d/vertex/BufferVertexConsumer/m_5586_ (IS)V com/mojang/blaze3d/vertex/BufferVertexConsumer/putShort (IS)V +MD: com/mojang/blaze3d/vertex/BufferVertexConsumer/m_5601_ (FFF)Lcom/mojang/blaze3d/vertex/VertexConsumer; com/mojang/blaze3d/vertex/BufferVertexConsumer/normal (FFF)Lcom/mojang/blaze3d/vertex/VertexConsumer; +MD: com/mojang/blaze3d/vertex/BufferVertexConsumer/m_5672_ (IB)V com/mojang/blaze3d/vertex/BufferVertexConsumer/putByte (IB)V +MD: com/mojang/blaze3d/vertex/BufferVertexConsumer/m_5751_ ()V com/mojang/blaze3d/vertex/BufferVertexConsumer/nextElement ()V +MD: com/mojang/blaze3d/vertex/BufferVertexConsumer/m_5832_ (IF)V com/mojang/blaze3d/vertex/BufferVertexConsumer/putFloat (IF)V +MD: com/mojang/blaze3d/vertex/BufferVertexConsumer/m_6122_ (IIII)Lcom/mojang/blaze3d/vertex/VertexConsumer; com/mojang/blaze3d/vertex/BufferVertexConsumer/color (IIII)Lcom/mojang/blaze3d/vertex/VertexConsumer; +MD: com/mojang/blaze3d/vertex/BufferVertexConsumer/m_6297_ ()Lcom/mojang/blaze3d/vertex/VertexFormatElement; com/mojang/blaze3d/vertex/BufferVertexConsumer/currentElement ()Lcom/mojang/blaze3d/vertex/VertexFormatElement; +MD: com/mojang/blaze3d/vertex/BufferVertexConsumer/m_7120_ (II)Lcom/mojang/blaze3d/vertex/VertexConsumer; com/mojang/blaze3d/vertex/BufferVertexConsumer/uv2 (II)Lcom/mojang/blaze3d/vertex/VertexConsumer; +MD: com/mojang/blaze3d/vertex/BufferVertexConsumer/m_7122_ (II)Lcom/mojang/blaze3d/vertex/VertexConsumer; com/mojang/blaze3d/vertex/BufferVertexConsumer/overlayCoords (II)Lcom/mojang/blaze3d/vertex/VertexConsumer; +MD: com/mojang/blaze3d/vertex/BufferVertexConsumer/m_7421_ (FF)Lcom/mojang/blaze3d/vertex/VertexConsumer; com/mojang/blaze3d/vertex/BufferVertexConsumer/uv (FF)Lcom/mojang/blaze3d/vertex/VertexConsumer; +MD: com/mojang/blaze3d/vertex/BufferVertexConsumer/m_85774_ (F)B com/mojang/blaze3d/vertex/BufferVertexConsumer/normalIntValue (F)B +MD: com/mojang/blaze3d/vertex/BufferVertexConsumer/m_85793_ (SSI)Lcom/mojang/blaze3d/vertex/VertexConsumer; com/mojang/blaze3d/vertex/BufferVertexConsumer/uvShort (SSI)Lcom/mojang/blaze3d/vertex/VertexConsumer; +MD: com/mojang/blaze3d/vertex/DefaultVertexFormat/ ()V com/mojang/blaze3d/vertex/DefaultVertexFormat/ ()V +MD: com/mojang/blaze3d/vertex/DefaultVertexFormat/ ()V com/mojang/blaze3d/vertex/DefaultVertexFormat/ ()V +MD: com/mojang/blaze3d/vertex/DefaultedVertexConsumer/ ()V com/mojang/blaze3d/vertex/DefaultedVertexConsumer/ ()V +MD: com/mojang/blaze3d/vertex/DefaultedVertexConsumer/m_141991_ ()V com/mojang/blaze3d/vertex/DefaultedVertexConsumer/unsetDefaultColor ()V +MD: com/mojang/blaze3d/vertex/DefaultedVertexConsumer/m_7404_ (IIII)V com/mojang/blaze3d/vertex/DefaultedVertexConsumer/defaultColor (IIII)V +MD: com/mojang/blaze3d/vertex/PoseStack/ ()V com/mojang/blaze3d/vertex/PoseStack/ ()V +MD: com/mojang/blaze3d/vertex/PoseStack/m_166856_ ()V com/mojang/blaze3d/vertex/PoseStack/setIdentity ()V +MD: com/mojang/blaze3d/vertex/PoseStack/m_252549_ (Ljava/util/ArrayDeque;)V com/mojang/blaze3d/vertex/PoseStack/lambda$new$0 (Ljava/util/ArrayDeque;)V +MD: com/mojang/blaze3d/vertex/PoseStack/m_252781_ (Lorg/joml/Quaternionf;)V com/mojang/blaze3d/vertex/PoseStack/mulPose (Lorg/joml/Quaternionf;)V +MD: com/mojang/blaze3d/vertex/PoseStack/m_252880_ (FFF)V com/mojang/blaze3d/vertex/PoseStack/translate (FFF)V +MD: com/mojang/blaze3d/vertex/PoseStack/m_252931_ (Lorg/joml/Matrix4f;)V com/mojang/blaze3d/vertex/PoseStack/mulPoseMatrix (Lorg/joml/Matrix4f;)V +MD: com/mojang/blaze3d/vertex/PoseStack/m_272245_ (Lorg/joml/Quaternionf;FFF)V com/mojang/blaze3d/vertex/PoseStack/rotateAround (Lorg/joml/Quaternionf;FFF)V +MD: com/mojang/blaze3d/vertex/PoseStack/m_85836_ ()V com/mojang/blaze3d/vertex/PoseStack/pushPose ()V +MD: com/mojang/blaze3d/vertex/PoseStack/m_85837_ (DDD)V com/mojang/blaze3d/vertex/PoseStack/translate (DDD)V +MD: com/mojang/blaze3d/vertex/PoseStack/m_85841_ (FFF)V com/mojang/blaze3d/vertex/PoseStack/scale (FFF)V +MD: com/mojang/blaze3d/vertex/PoseStack/m_85849_ ()V com/mojang/blaze3d/vertex/PoseStack/popPose ()V +MD: com/mojang/blaze3d/vertex/PoseStack/m_85850_ ()Lcom/mojang/blaze3d/vertex/PoseStack$Pose; com/mojang/blaze3d/vertex/PoseStack/last ()Lcom/mojang/blaze3d/vertex/PoseStack$Pose; +MD: com/mojang/blaze3d/vertex/PoseStack/m_85851_ ()Z com/mojang/blaze3d/vertex/PoseStack/clear ()Z +MD: com/mojang/blaze3d/vertex/PoseStack$Pose/ (Lorg/joml/Matrix4f;Lorg/joml/Matrix3f;)V com/mojang/blaze3d/vertex/PoseStack$Pose/ (Lorg/joml/Matrix4f;Lorg/joml/Matrix3f;)V +MD: com/mojang/blaze3d/vertex/PoseStack$Pose/m_252922_ ()Lorg/joml/Matrix4f; com/mojang/blaze3d/vertex/PoseStack$Pose/pose ()Lorg/joml/Matrix4f; +MD: com/mojang/blaze3d/vertex/PoseStack$Pose/m_252943_ ()Lorg/joml/Matrix3f; com/mojang/blaze3d/vertex/PoseStack$Pose/normal ()Lorg/joml/Matrix3f; +MD: com/mojang/blaze3d/vertex/SheetedDecalTextureGenerator/ (Lcom/mojang/blaze3d/vertex/VertexConsumer;Lorg/joml/Matrix4f;Lorg/joml/Matrix3f;F)V com/mojang/blaze3d/vertex/SheetedDecalTextureGenerator/ (Lcom/mojang/blaze3d/vertex/VertexConsumer;Lorg/joml/Matrix4f;Lorg/joml/Matrix3f;F)V +MD: com/mojang/blaze3d/vertex/SheetedDecalTextureGenerator/m_5483_ (DDD)Lcom/mojang/blaze3d/vertex/VertexConsumer; com/mojang/blaze3d/vertex/SheetedDecalTextureGenerator/vertex (DDD)Lcom/mojang/blaze3d/vertex/VertexConsumer; +MD: com/mojang/blaze3d/vertex/SheetedDecalTextureGenerator/m_5601_ (FFF)Lcom/mojang/blaze3d/vertex/VertexConsumer; com/mojang/blaze3d/vertex/SheetedDecalTextureGenerator/normal (FFF)Lcom/mojang/blaze3d/vertex/VertexConsumer; +MD: com/mojang/blaze3d/vertex/SheetedDecalTextureGenerator/m_5752_ ()V com/mojang/blaze3d/vertex/SheetedDecalTextureGenerator/endVertex ()V +MD: com/mojang/blaze3d/vertex/SheetedDecalTextureGenerator/m_6122_ (IIII)Lcom/mojang/blaze3d/vertex/VertexConsumer; com/mojang/blaze3d/vertex/SheetedDecalTextureGenerator/color (IIII)Lcom/mojang/blaze3d/vertex/VertexConsumer; +MD: com/mojang/blaze3d/vertex/SheetedDecalTextureGenerator/m_7120_ (II)Lcom/mojang/blaze3d/vertex/VertexConsumer; com/mojang/blaze3d/vertex/SheetedDecalTextureGenerator/uv2 (II)Lcom/mojang/blaze3d/vertex/VertexConsumer; +MD: com/mojang/blaze3d/vertex/SheetedDecalTextureGenerator/m_7122_ (II)Lcom/mojang/blaze3d/vertex/VertexConsumer; com/mojang/blaze3d/vertex/SheetedDecalTextureGenerator/overlayCoords (II)Lcom/mojang/blaze3d/vertex/VertexConsumer; +MD: com/mojang/blaze3d/vertex/SheetedDecalTextureGenerator/m_7421_ (FF)Lcom/mojang/blaze3d/vertex/VertexConsumer; com/mojang/blaze3d/vertex/SheetedDecalTextureGenerator/uv (FF)Lcom/mojang/blaze3d/vertex/VertexConsumer; +MD: com/mojang/blaze3d/vertex/SheetedDecalTextureGenerator/m_85883_ ()V com/mojang/blaze3d/vertex/SheetedDecalTextureGenerator/resetState ()V +MD: com/mojang/blaze3d/vertex/Tesselator/ ()V com/mojang/blaze3d/vertex/Tesselator/ ()V +MD: com/mojang/blaze3d/vertex/Tesselator/ (I)V com/mojang/blaze3d/vertex/Tesselator/ (I)V +MD: com/mojang/blaze3d/vertex/Tesselator/ ()V com/mojang/blaze3d/vertex/Tesselator/ ()V +MD: com/mojang/blaze3d/vertex/Tesselator/m_85913_ ()Lcom/mojang/blaze3d/vertex/Tesselator; com/mojang/blaze3d/vertex/Tesselator/getInstance ()Lcom/mojang/blaze3d/vertex/Tesselator; +MD: com/mojang/blaze3d/vertex/Tesselator/m_85914_ ()V com/mojang/blaze3d/vertex/Tesselator/end ()V +MD: com/mojang/blaze3d/vertex/Tesselator/m_85915_ ()Lcom/mojang/blaze3d/vertex/BufferBuilder; com/mojang/blaze3d/vertex/Tesselator/getBuilder ()Lcom/mojang/blaze3d/vertex/BufferBuilder; +MD: com/mojang/blaze3d/vertex/VertexBuffer/ (Lcom/mojang/blaze3d/vertex/VertexBuffer$Usage;)V com/mojang/blaze3d/vertex/VertexBuffer/ (Lcom/mojang/blaze3d/vertex/VertexBuffer$Usage;)V +MD: com/mojang/blaze3d/vertex/VertexBuffer/close ()V com/mojang/blaze3d/vertex/VertexBuffer/close ()V +MD: com/mojang/blaze3d/vertex/VertexBuffer/m_166876_ (Lorg/joml/Matrix4f;Lorg/joml/Matrix4f;Lnet/minecraft/client/renderer/ShaderInstance;)V com/mojang/blaze3d/vertex/VertexBuffer/_drawWithShader (Lorg/joml/Matrix4f;Lorg/joml/Matrix4f;Lnet/minecraft/client/renderer/ShaderInstance;)V +MD: com/mojang/blaze3d/vertex/VertexBuffer/m_166882_ ()V com/mojang/blaze3d/vertex/VertexBuffer/draw ()V +MD: com/mojang/blaze3d/vertex/VertexBuffer/m_166892_ ()Lcom/mojang/blaze3d/vertex/VertexFormat; com/mojang/blaze3d/vertex/VertexBuffer/getFormat ()Lcom/mojang/blaze3d/vertex/VertexFormat; +MD: com/mojang/blaze3d/vertex/VertexBuffer/m_231218_ (Lcom/mojang/blaze3d/vertex/BufferBuilder$DrawState;Ljava/nio/ByteBuffer;)Lcom/mojang/blaze3d/vertex/VertexFormat; com/mojang/blaze3d/vertex/VertexBuffer/uploadVertexBuffer (Lcom/mojang/blaze3d/vertex/BufferBuilder$DrawState;Ljava/nio/ByteBuffer;)Lcom/mojang/blaze3d/vertex/VertexFormat; +MD: com/mojang/blaze3d/vertex/VertexBuffer/m_231221_ (Lcom/mojang/blaze3d/vertex/BufferBuilder$RenderedBuffer;)V com/mojang/blaze3d/vertex/VertexBuffer/upload (Lcom/mojang/blaze3d/vertex/BufferBuilder$RenderedBuffer;)V +MD: com/mojang/blaze3d/vertex/VertexBuffer/m_231223_ (Lcom/mojang/blaze3d/vertex/BufferBuilder$DrawState;Ljava/nio/ByteBuffer;)Lcom/mojang/blaze3d/systems/RenderSystem$AutoStorageIndexBuffer; com/mojang/blaze3d/vertex/VertexBuffer/uploadIndexBuffer (Lcom/mojang/blaze3d/vertex/BufferBuilder$DrawState;Ljava/nio/ByteBuffer;)Lcom/mojang/blaze3d/systems/RenderSystem$AutoStorageIndexBuffer; +MD: com/mojang/blaze3d/vertex/VertexBuffer/m_231230_ ()Z com/mojang/blaze3d/vertex/VertexBuffer/isInvalid ()Z +MD: com/mojang/blaze3d/vertex/VertexBuffer/m_231231_ ()Lcom/mojang/blaze3d/vertex/VertexFormat$IndexType; com/mojang/blaze3d/vertex/VertexBuffer/getIndexType ()Lcom/mojang/blaze3d/vertex/VertexFormat$IndexType; +MD: com/mojang/blaze3d/vertex/VertexBuffer/m_252550_ (Lorg/joml/Matrix4f;Lorg/joml/Matrix4f;Lnet/minecraft/client/renderer/ShaderInstance;)V com/mojang/blaze3d/vertex/VertexBuffer/lambda$drawWithShader$0 (Lorg/joml/Matrix4f;Lorg/joml/Matrix4f;Lnet/minecraft/client/renderer/ShaderInstance;)V +MD: com/mojang/blaze3d/vertex/VertexBuffer/m_253207_ (Lorg/joml/Matrix4f;Lorg/joml/Matrix4f;Lnet/minecraft/client/renderer/ShaderInstance;)V com/mojang/blaze3d/vertex/VertexBuffer/drawWithShader (Lorg/joml/Matrix4f;Lorg/joml/Matrix4f;Lnet/minecraft/client/renderer/ShaderInstance;)V +MD: com/mojang/blaze3d/vertex/VertexBuffer/m_85921_ ()V com/mojang/blaze3d/vertex/VertexBuffer/bind ()V +MD: com/mojang/blaze3d/vertex/VertexBuffer/m_85931_ ()V com/mojang/blaze3d/vertex/VertexBuffer/unbind ()V +MD: com/mojang/blaze3d/vertex/VertexBuffer$Usage/ ()V com/mojang/blaze3d/vertex/VertexBuffer$Usage/ ()V +MD: com/mojang/blaze3d/vertex/VertexBuffer$Usage/ (Ljava/lang/String;II)V com/mojang/blaze3d/vertex/VertexBuffer$Usage/ (Ljava/lang/String;II)V +MD: com/mojang/blaze3d/vertex/VertexBuffer$Usage/m_285873_ ()[Lcom/mojang/blaze3d/vertex/VertexBuffer$Usage; com/mojang/blaze3d/vertex/VertexBuffer$Usage/$values ()[Lcom/mojang/blaze3d/vertex/VertexBuffer$Usage; +MD: com/mojang/blaze3d/vertex/VertexBuffer$Usage/valueOf (Ljava/lang/String;)Lcom/mojang/blaze3d/vertex/VertexBuffer$Usage; com/mojang/blaze3d/vertex/VertexBuffer$Usage/valueOf (Ljava/lang/String;)Lcom/mojang/blaze3d/vertex/VertexBuffer$Usage; +MD: com/mojang/blaze3d/vertex/VertexBuffer$Usage/values ()[Lcom/mojang/blaze3d/vertex/VertexBuffer$Usage; com/mojang/blaze3d/vertex/VertexBuffer$Usage/values ()[Lcom/mojang/blaze3d/vertex/VertexBuffer$Usage; +MD: com/mojang/blaze3d/vertex/VertexConsumer/m_141991_ ()V com/mojang/blaze3d/vertex/VertexConsumer/unsetDefaultColor ()V +MD: com/mojang/blaze3d/vertex/VertexConsumer/m_193479_ (I)Lcom/mojang/blaze3d/vertex/VertexConsumer; com/mojang/blaze3d/vertex/VertexConsumer/color (I)Lcom/mojang/blaze3d/vertex/VertexConsumer; +MD: com/mojang/blaze3d/vertex/VertexConsumer/m_252939_ (Lorg/joml/Matrix3f;FFF)Lcom/mojang/blaze3d/vertex/VertexConsumer; com/mojang/blaze3d/vertex/VertexConsumer/normal (Lorg/joml/Matrix3f;FFF)Lcom/mojang/blaze3d/vertex/VertexConsumer; +MD: com/mojang/blaze3d/vertex/VertexConsumer/m_252986_ (Lorg/joml/Matrix4f;FFF)Lcom/mojang/blaze3d/vertex/VertexConsumer; com/mojang/blaze3d/vertex/VertexConsumer/vertex (Lorg/joml/Matrix4f;FFF)Lcom/mojang/blaze3d/vertex/VertexConsumer; +MD: com/mojang/blaze3d/vertex/VertexConsumer/m_5483_ (DDD)Lcom/mojang/blaze3d/vertex/VertexConsumer; com/mojang/blaze3d/vertex/VertexConsumer/vertex (DDD)Lcom/mojang/blaze3d/vertex/VertexConsumer; +MD: com/mojang/blaze3d/vertex/VertexConsumer/m_5601_ (FFF)Lcom/mojang/blaze3d/vertex/VertexConsumer; com/mojang/blaze3d/vertex/VertexConsumer/normal (FFF)Lcom/mojang/blaze3d/vertex/VertexConsumer; +MD: com/mojang/blaze3d/vertex/VertexConsumer/m_5752_ ()V com/mojang/blaze3d/vertex/VertexConsumer/endVertex ()V +MD: com/mojang/blaze3d/vertex/VertexConsumer/m_5954_ (FFFFFFFFFIIFFF)V com/mojang/blaze3d/vertex/VertexConsumer/vertex (FFFFFFFFFIIFFF)V +MD: com/mojang/blaze3d/vertex/VertexConsumer/m_6122_ (IIII)Lcom/mojang/blaze3d/vertex/VertexConsumer; com/mojang/blaze3d/vertex/VertexConsumer/color (IIII)Lcom/mojang/blaze3d/vertex/VertexConsumer; +MD: com/mojang/blaze3d/vertex/VertexConsumer/m_7120_ (II)Lcom/mojang/blaze3d/vertex/VertexConsumer; com/mojang/blaze3d/vertex/VertexConsumer/uv2 (II)Lcom/mojang/blaze3d/vertex/VertexConsumer; +MD: com/mojang/blaze3d/vertex/VertexConsumer/m_7122_ (II)Lcom/mojang/blaze3d/vertex/VertexConsumer; com/mojang/blaze3d/vertex/VertexConsumer/overlayCoords (II)Lcom/mojang/blaze3d/vertex/VertexConsumer; +MD: com/mojang/blaze3d/vertex/VertexConsumer/m_7404_ (IIII)V com/mojang/blaze3d/vertex/VertexConsumer/defaultColor (IIII)V +MD: com/mojang/blaze3d/vertex/VertexConsumer/m_7421_ (FF)Lcom/mojang/blaze3d/vertex/VertexConsumer; com/mojang/blaze3d/vertex/VertexConsumer/uv (FF)Lcom/mojang/blaze3d/vertex/VertexConsumer; +MD: com/mojang/blaze3d/vertex/VertexConsumer/m_85950_ (FFFF)Lcom/mojang/blaze3d/vertex/VertexConsumer; com/mojang/blaze3d/vertex/VertexConsumer/color (FFFF)Lcom/mojang/blaze3d/vertex/VertexConsumer; +MD: com/mojang/blaze3d/vertex/VertexConsumer/m_85969_ (I)Lcom/mojang/blaze3d/vertex/VertexConsumer; com/mojang/blaze3d/vertex/VertexConsumer/uv2 (I)Lcom/mojang/blaze3d/vertex/VertexConsumer; +MD: com/mojang/blaze3d/vertex/VertexConsumer/m_85987_ (Lcom/mojang/blaze3d/vertex/PoseStack$Pose;Lnet/minecraft/client/renderer/block/model/BakedQuad;FFFII)V com/mojang/blaze3d/vertex/VertexConsumer/putBulkData (Lcom/mojang/blaze3d/vertex/PoseStack$Pose;Lnet/minecraft/client/renderer/block/model/BakedQuad;FFFII)V +MD: com/mojang/blaze3d/vertex/VertexConsumer/m_85995_ (Lcom/mojang/blaze3d/vertex/PoseStack$Pose;Lnet/minecraft/client/renderer/block/model/BakedQuad;[FFFF[IIZ)V com/mojang/blaze3d/vertex/VertexConsumer/putBulkData (Lcom/mojang/blaze3d/vertex/PoseStack$Pose;Lnet/minecraft/client/renderer/block/model/BakedQuad;[FFFF[IIZ)V +MD: com/mojang/blaze3d/vertex/VertexConsumer/m_86008_ (I)Lcom/mojang/blaze3d/vertex/VertexConsumer; com/mojang/blaze3d/vertex/VertexConsumer/overlayCoords (I)Lcom/mojang/blaze3d/vertex/VertexConsumer; +MD: com/mojang/blaze3d/vertex/VertexFormat/ (Lcom/google/common/collect/ImmutableMap;)V com/mojang/blaze3d/vertex/VertexFormat/ (Lcom/google/common/collect/ImmutableMap;)V +MD: com/mojang/blaze3d/vertex/VertexFormat/equals (Ljava/lang/Object;)Z com/mojang/blaze3d/vertex/VertexFormat/equals (Ljava/lang/Object;)Z +MD: com/mojang/blaze3d/vertex/VertexFormat/hashCode ()I com/mojang/blaze3d/vertex/VertexFormat/hashCode ()I +MD: com/mojang/blaze3d/vertex/VertexFormat/m_166911_ ()Lcom/google/common/collect/ImmutableList; com/mojang/blaze3d/vertex/VertexFormat/getElementAttributeNames ()Lcom/google/common/collect/ImmutableList; +MD: com/mojang/blaze3d/vertex/VertexFormat/m_166912_ ()V com/mojang/blaze3d/vertex/VertexFormat/setupBufferState ()V +MD: com/mojang/blaze3d/vertex/VertexFormat/m_166916_ ()V com/mojang/blaze3d/vertex/VertexFormat/_setupBufferState ()V +MD: com/mojang/blaze3d/vertex/VertexFormat/m_166917_ ()V com/mojang/blaze3d/vertex/VertexFormat/_clearBufferState ()V +MD: com/mojang/blaze3d/vertex/VertexFormat/m_231233_ ()Lcom/mojang/blaze3d/vertex/VertexBuffer; com/mojang/blaze3d/vertex/VertexFormat/getImmediateDrawVertexBuffer ()Lcom/mojang/blaze3d/vertex/VertexBuffer; +MD: com/mojang/blaze3d/vertex/VertexFormat/m_86017_ ()I com/mojang/blaze3d/vertex/VertexFormat/getIntegerSize ()I +MD: com/mojang/blaze3d/vertex/VertexFormat/m_86020_ ()I com/mojang/blaze3d/vertex/VertexFormat/getVertexSize ()I +MD: com/mojang/blaze3d/vertex/VertexFormat/m_86023_ ()Lcom/google/common/collect/ImmutableList; com/mojang/blaze3d/vertex/VertexFormat/getElements ()Lcom/google/common/collect/ImmutableList; +MD: com/mojang/blaze3d/vertex/VertexFormat/m_86024_ ()V com/mojang/blaze3d/vertex/VertexFormat/clearBufferState ()V +MD: com/mojang/blaze3d/vertex/VertexFormat/toString ()Ljava/lang/String; com/mojang/blaze3d/vertex/VertexFormat/toString ()Ljava/lang/String; +MD: com/mojang/blaze3d/vertex/VertexFormat$1/ ()V com/mojang/blaze3d/vertex/VertexFormat$1/ ()V +MD: com/mojang/blaze3d/vertex/VertexFormat$IndexType/ ()V com/mojang/blaze3d/vertex/VertexFormat$IndexType/ ()V +MD: com/mojang/blaze3d/vertex/VertexFormat$IndexType/ (Ljava/lang/String;III)V com/mojang/blaze3d/vertex/VertexFormat$IndexType/ (Ljava/lang/String;III)V +MD: com/mojang/blaze3d/vertex/VertexFormat$IndexType/m_166932_ ()[Lcom/mojang/blaze3d/vertex/VertexFormat$IndexType; com/mojang/blaze3d/vertex/VertexFormat$IndexType/$values ()[Lcom/mojang/blaze3d/vertex/VertexFormat$IndexType; +MD: com/mojang/blaze3d/vertex/VertexFormat$IndexType/m_166933_ (I)Lcom/mojang/blaze3d/vertex/VertexFormat$IndexType; com/mojang/blaze3d/vertex/VertexFormat$IndexType/least (I)Lcom/mojang/blaze3d/vertex/VertexFormat$IndexType; +MD: com/mojang/blaze3d/vertex/VertexFormat$IndexType/valueOf (Ljava/lang/String;)Lcom/mojang/blaze3d/vertex/VertexFormat$IndexType; com/mojang/blaze3d/vertex/VertexFormat$IndexType/valueOf (Ljava/lang/String;)Lcom/mojang/blaze3d/vertex/VertexFormat$IndexType; +MD: com/mojang/blaze3d/vertex/VertexFormat$IndexType/values ()[Lcom/mojang/blaze3d/vertex/VertexFormat$IndexType; com/mojang/blaze3d/vertex/VertexFormat$IndexType/values ()[Lcom/mojang/blaze3d/vertex/VertexFormat$IndexType; +MD: com/mojang/blaze3d/vertex/VertexFormat$Mode/ ()V com/mojang/blaze3d/vertex/VertexFormat$Mode/ ()V +MD: com/mojang/blaze3d/vertex/VertexFormat$Mode/ (Ljava/lang/String;IIIIZ)V com/mojang/blaze3d/vertex/VertexFormat$Mode/ (Ljava/lang/String;IIIIZ)V +MD: com/mojang/blaze3d/vertex/VertexFormat$Mode/m_166957_ ()[Lcom/mojang/blaze3d/vertex/VertexFormat$Mode; com/mojang/blaze3d/vertex/VertexFormat$Mode/$values ()[Lcom/mojang/blaze3d/vertex/VertexFormat$Mode; +MD: com/mojang/blaze3d/vertex/VertexFormat$Mode/m_166958_ (I)I com/mojang/blaze3d/vertex/VertexFormat$Mode/indexCount (I)I +MD: com/mojang/blaze3d/vertex/VertexFormat$Mode/valueOf (Ljava/lang/String;)Lcom/mojang/blaze3d/vertex/VertexFormat$Mode; com/mojang/blaze3d/vertex/VertexFormat$Mode/valueOf (Ljava/lang/String;)Lcom/mojang/blaze3d/vertex/VertexFormat$Mode; +MD: com/mojang/blaze3d/vertex/VertexFormat$Mode/values ()[Lcom/mojang/blaze3d/vertex/VertexFormat$Mode; com/mojang/blaze3d/vertex/VertexFormat$Mode/values ()[Lcom/mojang/blaze3d/vertex/VertexFormat$Mode; +MD: com/mojang/blaze3d/vertex/VertexFormatElement/ (ILcom/mojang/blaze3d/vertex/VertexFormatElement$Type;Lcom/mojang/blaze3d/vertex/VertexFormatElement$Usage;I)V com/mojang/blaze3d/vertex/VertexFormatElement/ (ILcom/mojang/blaze3d/vertex/VertexFormatElement$Type;Lcom/mojang/blaze3d/vertex/VertexFormatElement$Usage;I)V +MD: com/mojang/blaze3d/vertex/VertexFormatElement/equals (Ljava/lang/Object;)Z com/mojang/blaze3d/vertex/VertexFormatElement/equals (Ljava/lang/Object;)Z +MD: com/mojang/blaze3d/vertex/VertexFormatElement/hashCode ()I com/mojang/blaze3d/vertex/VertexFormatElement/hashCode ()I +MD: com/mojang/blaze3d/vertex/VertexFormatElement/m_166963_ (I)V com/mojang/blaze3d/vertex/VertexFormatElement/clearBufferState (I)V +MD: com/mojang/blaze3d/vertex/VertexFormatElement/m_166965_ (IJI)V com/mojang/blaze3d/vertex/VertexFormatElement/setupBufferState (IJI)V +MD: com/mojang/blaze3d/vertex/VertexFormatElement/m_166969_ ()I com/mojang/blaze3d/vertex/VertexFormatElement/getCount ()I +MD: com/mojang/blaze3d/vertex/VertexFormatElement/m_166970_ ()Z com/mojang/blaze3d/vertex/VertexFormatElement/isPosition ()Z +MD: com/mojang/blaze3d/vertex/VertexFormatElement/m_86041_ ()Lcom/mojang/blaze3d/vertex/VertexFormatElement$Type; com/mojang/blaze3d/vertex/VertexFormatElement/getType ()Lcom/mojang/blaze3d/vertex/VertexFormatElement$Type; +MD: com/mojang/blaze3d/vertex/VertexFormatElement/m_86042_ (ILcom/mojang/blaze3d/vertex/VertexFormatElement$Usage;)Z com/mojang/blaze3d/vertex/VertexFormatElement/supportsUsage (ILcom/mojang/blaze3d/vertex/VertexFormatElement$Usage;)Z +MD: com/mojang/blaze3d/vertex/VertexFormatElement/m_86048_ ()Lcom/mojang/blaze3d/vertex/VertexFormatElement$Usage; com/mojang/blaze3d/vertex/VertexFormatElement/getUsage ()Lcom/mojang/blaze3d/vertex/VertexFormatElement$Usage; +MD: com/mojang/blaze3d/vertex/VertexFormatElement/m_86049_ ()I com/mojang/blaze3d/vertex/VertexFormatElement/getIndex ()I +MD: com/mojang/blaze3d/vertex/VertexFormatElement/m_86050_ ()I com/mojang/blaze3d/vertex/VertexFormatElement/getByteSize ()I +MD: com/mojang/blaze3d/vertex/VertexFormatElement/toString ()Ljava/lang/String; com/mojang/blaze3d/vertex/VertexFormatElement/toString ()Ljava/lang/String; +MD: com/mojang/blaze3d/vertex/VertexFormatElement$Type/ ()V com/mojang/blaze3d/vertex/VertexFormatElement$Type/ ()V +MD: com/mojang/blaze3d/vertex/VertexFormatElement$Type/ (Ljava/lang/String;IILjava/lang/String;I)V com/mojang/blaze3d/vertex/VertexFormatElement$Type/ (Ljava/lang/String;IILjava/lang/String;I)V +MD: com/mojang/blaze3d/vertex/VertexFormatElement$Type/m_166971_ ()[Lcom/mojang/blaze3d/vertex/VertexFormatElement$Type; com/mojang/blaze3d/vertex/VertexFormatElement$Type/$values ()[Lcom/mojang/blaze3d/vertex/VertexFormatElement$Type; +MD: com/mojang/blaze3d/vertex/VertexFormatElement$Type/m_86074_ ()I com/mojang/blaze3d/vertex/VertexFormatElement$Type/getSize ()I +MD: com/mojang/blaze3d/vertex/VertexFormatElement$Type/m_86075_ ()Ljava/lang/String; com/mojang/blaze3d/vertex/VertexFormatElement$Type/getName ()Ljava/lang/String; +MD: com/mojang/blaze3d/vertex/VertexFormatElement$Type/m_86076_ ()I com/mojang/blaze3d/vertex/VertexFormatElement$Type/getGlType ()I +MD: com/mojang/blaze3d/vertex/VertexFormatElement$Type/valueOf (Ljava/lang/String;)Lcom/mojang/blaze3d/vertex/VertexFormatElement$Type; com/mojang/blaze3d/vertex/VertexFormatElement$Type/valueOf (Ljava/lang/String;)Lcom/mojang/blaze3d/vertex/VertexFormatElement$Type; +MD: com/mojang/blaze3d/vertex/VertexFormatElement$Type/values ()[Lcom/mojang/blaze3d/vertex/VertexFormatElement$Type; com/mojang/blaze3d/vertex/VertexFormatElement$Type/values ()[Lcom/mojang/blaze3d/vertex/VertexFormatElement$Type; +MD: com/mojang/blaze3d/vertex/VertexFormatElement$Usage/ ()V com/mojang/blaze3d/vertex/VertexFormatElement$Usage/ ()V +MD: com/mojang/blaze3d/vertex/VertexFormatElement$Usage/ (Ljava/lang/String;ILjava/lang/String;Lcom/mojang/blaze3d/vertex/VertexFormatElement$Usage$SetupState;Lcom/mojang/blaze3d/vertex/VertexFormatElement$Usage$ClearState;)V com/mojang/blaze3d/vertex/VertexFormatElement$Usage/ (Ljava/lang/String;ILjava/lang/String;Lcom/mojang/blaze3d/vertex/VertexFormatElement$Usage$SetupState;Lcom/mojang/blaze3d/vertex/VertexFormatElement$Usage$ClearState;)V +MD: com/mojang/blaze3d/vertex/VertexFormatElement$Usage/m_166978_ (II)V com/mojang/blaze3d/vertex/VertexFormatElement$Usage/clearBufferState (II)V +MD: com/mojang/blaze3d/vertex/VertexFormatElement$Usage/m_166981_ (IIIJII)V com/mojang/blaze3d/vertex/VertexFormatElement$Usage/setupBufferState (IIIJII)V +MD: com/mojang/blaze3d/vertex/VertexFormatElement$Usage/m_166988_ ()[Lcom/mojang/blaze3d/vertex/VertexFormatElement$Usage; com/mojang/blaze3d/vertex/VertexFormatElement$Usage/$values ()[Lcom/mojang/blaze3d/vertex/VertexFormatElement$Usage; +MD: com/mojang/blaze3d/vertex/VertexFormatElement$Usage/m_166989_ (II)V com/mojang/blaze3d/vertex/VertexFormatElement$Usage/lambda$static$11 (II)V +MD: com/mojang/blaze3d/vertex/VertexFormatElement$Usage/m_166992_ (IIIJII)V com/mojang/blaze3d/vertex/VertexFormatElement$Usage/lambda$static$10 (IIIJII)V +MD: com/mojang/blaze3d/vertex/VertexFormatElement$Usage/m_166999_ (II)V com/mojang/blaze3d/vertex/VertexFormatElement$Usage/lambda$static$9 (II)V +MD: com/mojang/blaze3d/vertex/VertexFormatElement$Usage/m_167002_ (IIIJII)V com/mojang/blaze3d/vertex/VertexFormatElement$Usage/lambda$static$8 (IIIJII)V +MD: com/mojang/blaze3d/vertex/VertexFormatElement$Usage/m_167009_ (II)V com/mojang/blaze3d/vertex/VertexFormatElement$Usage/lambda$static$7 (II)V +MD: com/mojang/blaze3d/vertex/VertexFormatElement$Usage/m_167012_ (IIIJII)V com/mojang/blaze3d/vertex/VertexFormatElement$Usage/lambda$static$6 (IIIJII)V +MD: com/mojang/blaze3d/vertex/VertexFormatElement$Usage/m_167019_ (II)V com/mojang/blaze3d/vertex/VertexFormatElement$Usage/lambda$static$5 (II)V +MD: com/mojang/blaze3d/vertex/VertexFormatElement$Usage/m_167022_ (IIIJII)V com/mojang/blaze3d/vertex/VertexFormatElement$Usage/lambda$static$4 (IIIJII)V +MD: com/mojang/blaze3d/vertex/VertexFormatElement$Usage/m_167029_ (II)V com/mojang/blaze3d/vertex/VertexFormatElement$Usage/lambda$static$3 (II)V +MD: com/mojang/blaze3d/vertex/VertexFormatElement$Usage/m_167032_ (IIIJII)V com/mojang/blaze3d/vertex/VertexFormatElement$Usage/lambda$static$2 (IIIJII)V +MD: com/mojang/blaze3d/vertex/VertexFormatElement$Usage/m_167039_ (II)V com/mojang/blaze3d/vertex/VertexFormatElement$Usage/lambda$static$1 (II)V +MD: com/mojang/blaze3d/vertex/VertexFormatElement$Usage/m_167042_ (IIIJII)V com/mojang/blaze3d/vertex/VertexFormatElement$Usage/lambda$static$0 (IIIJII)V +MD: com/mojang/blaze3d/vertex/VertexFormatElement$Usage/m_86097_ ()Ljava/lang/String; com/mojang/blaze3d/vertex/VertexFormatElement$Usage/getName ()Ljava/lang/String; +MD: com/mojang/blaze3d/vertex/VertexFormatElement$Usage/valueOf (Ljava/lang/String;)Lcom/mojang/blaze3d/vertex/VertexFormatElement$Usage; com/mojang/blaze3d/vertex/VertexFormatElement$Usage/valueOf (Ljava/lang/String;)Lcom/mojang/blaze3d/vertex/VertexFormatElement$Usage; +MD: com/mojang/blaze3d/vertex/VertexFormatElement$Usage/values ()[Lcom/mojang/blaze3d/vertex/VertexFormatElement$Usage; com/mojang/blaze3d/vertex/VertexFormatElement$Usage/values ()[Lcom/mojang/blaze3d/vertex/VertexFormatElement$Usage; +MD: com/mojang/blaze3d/vertex/VertexFormatElement$Usage$ClearState/m_167049_ (II)V com/mojang/blaze3d/vertex/VertexFormatElement$Usage$ClearState/clearBufferState (II)V +MD: com/mojang/blaze3d/vertex/VertexFormatElement$Usage$SetupState/m_167052_ (IIIJII)V com/mojang/blaze3d/vertex/VertexFormatElement$Usage$SetupState/setupBufferState (IIIJII)V +MD: com/mojang/blaze3d/vertex/VertexMultiConsumer/ ()V com/mojang/blaze3d/vertex/VertexMultiConsumer/ ()V +MD: com/mojang/blaze3d/vertex/VertexMultiConsumer/m_167060_ ()Lcom/mojang/blaze3d/vertex/VertexConsumer; com/mojang/blaze3d/vertex/VertexMultiConsumer/create ()Lcom/mojang/blaze3d/vertex/VertexConsumer; +MD: com/mojang/blaze3d/vertex/VertexMultiConsumer/m_167061_ (Lcom/mojang/blaze3d/vertex/VertexConsumer;)Lcom/mojang/blaze3d/vertex/VertexConsumer; com/mojang/blaze3d/vertex/VertexMultiConsumer/create (Lcom/mojang/blaze3d/vertex/VertexConsumer;)Lcom/mojang/blaze3d/vertex/VertexConsumer; +MD: com/mojang/blaze3d/vertex/VertexMultiConsumer/m_167063_ ([Lcom/mojang/blaze3d/vertex/VertexConsumer;)Lcom/mojang/blaze3d/vertex/VertexConsumer; com/mojang/blaze3d/vertex/VertexMultiConsumer/create ([Lcom/mojang/blaze3d/vertex/VertexConsumer;)Lcom/mojang/blaze3d/vertex/VertexConsumer; +MD: com/mojang/blaze3d/vertex/VertexMultiConsumer/m_86168_ (Lcom/mojang/blaze3d/vertex/VertexConsumer;Lcom/mojang/blaze3d/vertex/VertexConsumer;)Lcom/mojang/blaze3d/vertex/VertexConsumer; com/mojang/blaze3d/vertex/VertexMultiConsumer/create (Lcom/mojang/blaze3d/vertex/VertexConsumer;Lcom/mojang/blaze3d/vertex/VertexConsumer;)Lcom/mojang/blaze3d/vertex/VertexConsumer; +MD: com/mojang/blaze3d/vertex/VertexMultiConsumer$Double/ (Lcom/mojang/blaze3d/vertex/VertexConsumer;Lcom/mojang/blaze3d/vertex/VertexConsumer;)V com/mojang/blaze3d/vertex/VertexMultiConsumer$Double/ (Lcom/mojang/blaze3d/vertex/VertexConsumer;Lcom/mojang/blaze3d/vertex/VertexConsumer;)V +MD: com/mojang/blaze3d/vertex/VertexMultiConsumer$Double/m_141991_ ()V com/mojang/blaze3d/vertex/VertexMultiConsumer$Double/unsetDefaultColor ()V +MD: com/mojang/blaze3d/vertex/VertexMultiConsumer$Double/m_5483_ (DDD)Lcom/mojang/blaze3d/vertex/VertexConsumer; com/mojang/blaze3d/vertex/VertexMultiConsumer$Double/vertex (DDD)Lcom/mojang/blaze3d/vertex/VertexConsumer; +MD: com/mojang/blaze3d/vertex/VertexMultiConsumer$Double/m_5601_ (FFF)Lcom/mojang/blaze3d/vertex/VertexConsumer; com/mojang/blaze3d/vertex/VertexMultiConsumer$Double/normal (FFF)Lcom/mojang/blaze3d/vertex/VertexConsumer; +MD: com/mojang/blaze3d/vertex/VertexMultiConsumer$Double/m_5752_ ()V com/mojang/blaze3d/vertex/VertexMultiConsumer$Double/endVertex ()V +MD: com/mojang/blaze3d/vertex/VertexMultiConsumer$Double/m_5954_ (FFFFFFFFFIIFFF)V com/mojang/blaze3d/vertex/VertexMultiConsumer$Double/vertex (FFFFFFFFFIIFFF)V +MD: com/mojang/blaze3d/vertex/VertexMultiConsumer$Double/m_6122_ (IIII)Lcom/mojang/blaze3d/vertex/VertexConsumer; com/mojang/blaze3d/vertex/VertexMultiConsumer$Double/color (IIII)Lcom/mojang/blaze3d/vertex/VertexConsumer; +MD: com/mojang/blaze3d/vertex/VertexMultiConsumer$Double/m_7120_ (II)Lcom/mojang/blaze3d/vertex/VertexConsumer; com/mojang/blaze3d/vertex/VertexMultiConsumer$Double/uv2 (II)Lcom/mojang/blaze3d/vertex/VertexConsumer; +MD: com/mojang/blaze3d/vertex/VertexMultiConsumer$Double/m_7122_ (II)Lcom/mojang/blaze3d/vertex/VertexConsumer; com/mojang/blaze3d/vertex/VertexMultiConsumer$Double/overlayCoords (II)Lcom/mojang/blaze3d/vertex/VertexConsumer; +MD: com/mojang/blaze3d/vertex/VertexMultiConsumer$Double/m_7404_ (IIII)V com/mojang/blaze3d/vertex/VertexMultiConsumer$Double/defaultColor (IIII)V +MD: com/mojang/blaze3d/vertex/VertexMultiConsumer$Double/m_7421_ (FF)Lcom/mojang/blaze3d/vertex/VertexConsumer; com/mojang/blaze3d/vertex/VertexMultiConsumer$Double/uv (FF)Lcom/mojang/blaze3d/vertex/VertexConsumer; +MD: com/mojang/blaze3d/vertex/VertexMultiConsumer$Multiple/ ([Lcom/mojang/blaze3d/vertex/VertexConsumer;)V com/mojang/blaze3d/vertex/VertexMultiConsumer$Multiple/ ([Lcom/mojang/blaze3d/vertex/VertexConsumer;)V +MD: com/mojang/blaze3d/vertex/VertexMultiConsumer$Multiple/m_141991_ ()V com/mojang/blaze3d/vertex/VertexMultiConsumer$Multiple/unsetDefaultColor ()V +MD: com/mojang/blaze3d/vertex/VertexMultiConsumer$Multiple/m_167078_ (DDDLcom/mojang/blaze3d/vertex/VertexConsumer;)V com/mojang/blaze3d/vertex/VertexMultiConsumer$Multiple/lambda$vertex$0 (DDDLcom/mojang/blaze3d/vertex/VertexConsumer;)V +MD: com/mojang/blaze3d/vertex/VertexMultiConsumer$Multiple/m_167101_ (FFFFFFFFFIIFFFLcom/mojang/blaze3d/vertex/VertexConsumer;)V com/mojang/blaze3d/vertex/VertexMultiConsumer$Multiple/lambda$vertex$6 (FFFFFFFFFIIFFFLcom/mojang/blaze3d/vertex/VertexConsumer;)V +MD: com/mojang/blaze3d/vertex/VertexMultiConsumer$Multiple/m_167117_ (FFFLcom/mojang/blaze3d/vertex/VertexConsumer;)V com/mojang/blaze3d/vertex/VertexMultiConsumer$Multiple/lambda$normal$5 (FFFLcom/mojang/blaze3d/vertex/VertexConsumer;)V +MD: com/mojang/blaze3d/vertex/VertexMultiConsumer$Multiple/m_167122_ (FFLcom/mojang/blaze3d/vertex/VertexConsumer;)V com/mojang/blaze3d/vertex/VertexMultiConsumer$Multiple/lambda$uv$2 (FFLcom/mojang/blaze3d/vertex/VertexConsumer;)V +MD: com/mojang/blaze3d/vertex/VertexMultiConsumer$Multiple/m_167134_ (IIIILcom/mojang/blaze3d/vertex/VertexConsumer;)V com/mojang/blaze3d/vertex/VertexMultiConsumer$Multiple/lambda$defaultColor$7 (IIIILcom/mojang/blaze3d/vertex/VertexConsumer;)V +MD: com/mojang/blaze3d/vertex/VertexMultiConsumer$Multiple/m_167140_ (IILcom/mojang/blaze3d/vertex/VertexConsumer;)V com/mojang/blaze3d/vertex/VertexMultiConsumer$Multiple/lambda$uv2$4 (IILcom/mojang/blaze3d/vertex/VertexConsumer;)V +MD: com/mojang/blaze3d/vertex/VertexMultiConsumer$Multiple/m_167144_ (Ljava/util/function/Consumer;)V com/mojang/blaze3d/vertex/VertexMultiConsumer$Multiple/forEach (Ljava/util/function/Consumer;)V +MD: com/mojang/blaze3d/vertex/VertexMultiConsumer$Multiple/m_167158_ (IIIILcom/mojang/blaze3d/vertex/VertexConsumer;)V com/mojang/blaze3d/vertex/VertexMultiConsumer$Multiple/lambda$color$1 (IIIILcom/mojang/blaze3d/vertex/VertexConsumer;)V +MD: com/mojang/blaze3d/vertex/VertexMultiConsumer$Multiple/m_167164_ (IILcom/mojang/blaze3d/vertex/VertexConsumer;)V com/mojang/blaze3d/vertex/VertexMultiConsumer$Multiple/lambda$overlayCoords$3 (IILcom/mojang/blaze3d/vertex/VertexConsumer;)V +MD: com/mojang/blaze3d/vertex/VertexMultiConsumer$Multiple/m_5483_ (DDD)Lcom/mojang/blaze3d/vertex/VertexConsumer; com/mojang/blaze3d/vertex/VertexMultiConsumer$Multiple/vertex (DDD)Lcom/mojang/blaze3d/vertex/VertexConsumer; +MD: com/mojang/blaze3d/vertex/VertexMultiConsumer$Multiple/m_5601_ (FFF)Lcom/mojang/blaze3d/vertex/VertexConsumer; com/mojang/blaze3d/vertex/VertexMultiConsumer$Multiple/normal (FFF)Lcom/mojang/blaze3d/vertex/VertexConsumer; +MD: com/mojang/blaze3d/vertex/VertexMultiConsumer$Multiple/m_5752_ ()V com/mojang/blaze3d/vertex/VertexMultiConsumer$Multiple/endVertex ()V +MD: com/mojang/blaze3d/vertex/VertexMultiConsumer$Multiple/m_5954_ (FFFFFFFFFIIFFF)V com/mojang/blaze3d/vertex/VertexMultiConsumer$Multiple/vertex (FFFFFFFFFIIFFF)V +MD: com/mojang/blaze3d/vertex/VertexMultiConsumer$Multiple/m_6122_ (IIII)Lcom/mojang/blaze3d/vertex/VertexConsumer; com/mojang/blaze3d/vertex/VertexMultiConsumer$Multiple/color (IIII)Lcom/mojang/blaze3d/vertex/VertexConsumer; +MD: com/mojang/blaze3d/vertex/VertexMultiConsumer$Multiple/m_7120_ (II)Lcom/mojang/blaze3d/vertex/VertexConsumer; com/mojang/blaze3d/vertex/VertexMultiConsumer$Multiple/uv2 (II)Lcom/mojang/blaze3d/vertex/VertexConsumer; +MD: com/mojang/blaze3d/vertex/VertexMultiConsumer$Multiple/m_7122_ (II)Lcom/mojang/blaze3d/vertex/VertexConsumer; com/mojang/blaze3d/vertex/VertexMultiConsumer$Multiple/overlayCoords (II)Lcom/mojang/blaze3d/vertex/VertexConsumer; +MD: com/mojang/blaze3d/vertex/VertexMultiConsumer$Multiple/m_7404_ (IIII)V com/mojang/blaze3d/vertex/VertexMultiConsumer$Multiple/defaultColor (IIII)V +MD: com/mojang/blaze3d/vertex/VertexMultiConsumer$Multiple/m_7421_ (FF)Lcom/mojang/blaze3d/vertex/VertexConsumer; com/mojang/blaze3d/vertex/VertexMultiConsumer$Multiple/uv (FF)Lcom/mojang/blaze3d/vertex/VertexConsumer; +MD: com/mojang/blaze3d/vertex/VertexSorting/ ()V com/mojang/blaze3d/vertex/VertexSorting/ ()V +MD: com/mojang/blaze3d/vertex/VertexSorting/m_276941_ ([FII)I com/mojang/blaze3d/vertex/VertexSorting/lambda$byDistance$1 ([FII)I +MD: com/mojang/blaze3d/vertex/VertexSorting/m_276997_ (Lorg/joml/Vector3f;)Lcom/mojang/blaze3d/vertex/VertexSorting; com/mojang/blaze3d/vertex/VertexSorting/byDistance (Lorg/joml/Vector3f;)Lcom/mojang/blaze3d/vertex/VertexSorting; +MD: com/mojang/blaze3d/vertex/VertexSorting/m_277065_ ([Lorg/joml/Vector3f;)[I com/mojang/blaze3d/vertex/VertexSorting/sort ([Lorg/joml/Vector3f;)[I +MD: com/mojang/blaze3d/vertex/VertexSorting/m_277071_ (FFF)Lcom/mojang/blaze3d/vertex/VertexSorting; com/mojang/blaze3d/vertex/VertexSorting/byDistance (FFF)Lcom/mojang/blaze3d/vertex/VertexSorting; +MD: com/mojang/blaze3d/vertex/VertexSorting/m_277155_ (Lcom/mojang/blaze3d/vertex/VertexSorting$DistanceFunction;[Lorg/joml/Vector3f;)[I com/mojang/blaze3d/vertex/VertexSorting/lambda$byDistance$2 (Lcom/mojang/blaze3d/vertex/VertexSorting$DistanceFunction;[Lorg/joml/Vector3f;)[I +MD: com/mojang/blaze3d/vertex/VertexSorting/m_277160_ (Lorg/joml/Vector3f;)F com/mojang/blaze3d/vertex/VertexSorting/lambda$static$0 (Lorg/joml/Vector3f;)F +MD: com/mojang/blaze3d/vertex/VertexSorting/m_277161_ (Lcom/mojang/blaze3d/vertex/VertexSorting$DistanceFunction;)Lcom/mojang/blaze3d/vertex/VertexSorting; com/mojang/blaze3d/vertex/VertexSorting/byDistance (Lcom/mojang/blaze3d/vertex/VertexSorting$DistanceFunction;)Lcom/mojang/blaze3d/vertex/VertexSorting; +MD: com/mojang/blaze3d/vertex/VertexSorting$DistanceFunction/m_276875_ (Lorg/joml/Vector3f;)F com/mojang/blaze3d/vertex/VertexSorting$DistanceFunction/apply (Lorg/joml/Vector3f;)F +MD: com/mojang/math/Axis/ ()V com/mojang/math/Axis/ ()V +MD: com/mojang/math/Axis/m_252774_ (F)Lorg/joml/Quaternionf; com/mojang/math/Axis/lambda$static$5 (F)Lorg/joml/Quaternionf; +MD: com/mojang/math/Axis/m_252822_ (Lorg/joml/Vector3f;F)Lorg/joml/Quaternionf; com/mojang/math/Axis/lambda$of$6 (Lorg/joml/Vector3f;F)Lorg/joml/Quaternionf; +MD: com/mojang/math/Axis/m_252961_ (F)Lorg/joml/Quaternionf; com/mojang/math/Axis/rotation (F)Lorg/joml/Quaternionf; +MD: com/mojang/math/Axis/m_252977_ (F)Lorg/joml/Quaternionf; com/mojang/math/Axis/rotationDegrees (F)Lorg/joml/Quaternionf; +MD: com/mojang/math/Axis/m_252978_ (F)Lorg/joml/Quaternionf; com/mojang/math/Axis/lambda$static$0 (F)Lorg/joml/Quaternionf; +MD: com/mojang/math/Axis/m_253050_ (F)Lorg/joml/Quaternionf; com/mojang/math/Axis/lambda$static$2 (F)Lorg/joml/Quaternionf; +MD: com/mojang/math/Axis/m_253057_ (Lorg/joml/Vector3f;)Lcom/mojang/math/Axis; com/mojang/math/Axis/of (Lorg/joml/Vector3f;)Lcom/mojang/math/Axis; +MD: com/mojang/math/Axis/m_253127_ (F)Lorg/joml/Quaternionf; com/mojang/math/Axis/lambda$static$1 (F)Lorg/joml/Quaternionf; +MD: com/mojang/math/Axis/m_253156_ (F)Lorg/joml/Quaternionf; com/mojang/math/Axis/lambda$static$4 (F)Lorg/joml/Quaternionf; +MD: com/mojang/math/Axis/m_253246_ (F)Lorg/joml/Quaternionf; com/mojang/math/Axis/lambda$static$3 (F)Lorg/joml/Quaternionf; +MD: com/mojang/math/Constants/ ()V com/mojang/math/Constants/ ()V +MD: com/mojang/math/Divisor/ (II)V com/mojang/math/Divisor/ (II)V +MD: com/mojang/math/Divisor/hasNext ()Z com/mojang/math/Divisor/hasNext ()Z +MD: com/mojang/math/Divisor/m_253068_ (II)Ljava/lang/Iterable; com/mojang/math/Divisor/asIterable (II)Ljava/lang/Iterable; +MD: com/mojang/math/Divisor/m_253093_ (II)Ljava/util/Iterator; com/mojang/math/Divisor/lambda$asIterable$0 (II)Ljava/util/Iterator; +MD: com/mojang/math/Divisor/nextInt ()I com/mojang/math/Divisor/nextInt ()I +MD: com/mojang/math/GivensParameters/ (FF)V com/mojang/math/GivensParameters/ (FF)V +MD: com/mojang/math/GivensParameters/equals (Ljava/lang/Object;)Z com/mojang/math/GivensParameters/equals (Ljava/lang/Object;)Z +MD: com/mojang/math/GivensParameters/f_276137_ ()F com/mojang/math/GivensParameters/cosHalf ()F +MD: com/mojang/math/GivensParameters/f_276143_ ()F com/mojang/math/GivensParameters/sinHalf ()F +MD: com/mojang/math/GivensParameters/hashCode ()I com/mojang/math/GivensParameters/hashCode ()I +MD: com/mojang/math/GivensParameters/m_276191_ ()F com/mojang/math/GivensParameters/cos ()F +MD: com/mojang/math/GivensParameters/m_276195_ (F)Lcom/mojang/math/GivensParameters; com/mojang/math/GivensParameters/fromPositiveAngle (F)Lcom/mojang/math/GivensParameters; +MD: com/mojang/math/GivensParameters/m_276196_ (Lorg/joml/Quaternionf;)Lorg/joml/Quaternionf; com/mojang/math/GivensParameters/aroundX (Lorg/joml/Quaternionf;)Lorg/joml/Quaternionf; +MD: com/mojang/math/GivensParameters/m_276201_ (Lorg/joml/Matrix3f;)Lorg/joml/Matrix3f; com/mojang/math/GivensParameters/aroundX (Lorg/joml/Matrix3f;)Lorg/joml/Matrix3f; +MD: com/mojang/math/GivensParameters/m_276202_ (Lorg/joml/Quaternionf;)Lorg/joml/Quaternionf; com/mojang/math/GivensParameters/aroundZ (Lorg/joml/Quaternionf;)Lorg/joml/Quaternionf; +MD: com/mojang/math/GivensParameters/m_276210_ (Lorg/joml/Matrix3f;)Lorg/joml/Matrix3f; com/mojang/math/GivensParameters/aroundZ (Lorg/joml/Matrix3f;)Lorg/joml/Matrix3f; +MD: com/mojang/math/GivensParameters/m_276211_ ()F com/mojang/math/GivensParameters/sin ()F +MD: com/mojang/math/GivensParameters/m_276212_ (Lorg/joml/Quaternionf;)Lorg/joml/Quaternionf; com/mojang/math/GivensParameters/aroundY (Lorg/joml/Quaternionf;)Lorg/joml/Quaternionf; +MD: com/mojang/math/GivensParameters/m_276214_ (Lorg/joml/Matrix3f;)Lorg/joml/Matrix3f; com/mojang/math/GivensParameters/aroundY (Lorg/joml/Matrix3f;)Lorg/joml/Matrix3f; +MD: com/mojang/math/GivensParameters/m_276224_ ()Lcom/mojang/math/GivensParameters; com/mojang/math/GivensParameters/inverse ()Lcom/mojang/math/GivensParameters; +MD: com/mojang/math/GivensParameters/m_276229_ (FF)Lcom/mojang/math/GivensParameters; com/mojang/math/GivensParameters/fromUnnormalized (FF)Lcom/mojang/math/GivensParameters; +MD: com/mojang/math/GivensParameters/toString ()Ljava/lang/String; com/mojang/math/GivensParameters/toString ()Ljava/lang/String; +MD: com/mojang/math/MatrixUtil/ ()V com/mojang/math/MatrixUtil/ ()V +MD: com/mojang/math/MatrixUtil/ ()V com/mojang/math/MatrixUtil/ ()V +MD: com/mojang/math/MatrixUtil/m_252892_ (FF)Lcom/mojang/math/GivensParameters; com/mojang/math/MatrixUtil/qrGivensQuat (FF)Lcom/mojang/math/GivensParameters; +MD: com/mojang/math/MatrixUtil/m_253023_ (Lorg/joml/Matrix4f;F)Lorg/joml/Matrix4f; com/mojang/math/MatrixUtil/mulComponentWise (Lorg/joml/Matrix4f;F)Lorg/joml/Matrix4f; +MD: com/mojang/math/MatrixUtil/m_253103_ (Lorg/joml/Matrix3f;)Lorg/apache/commons/lang3/tuple/Triple; com/mojang/math/MatrixUtil/svdDecompose (Lorg/joml/Matrix3f;)Lorg/apache/commons/lang3/tuple/Triple; +MD: com/mojang/math/MatrixUtil/m_276192_ (Lorg/joml/Matrix3f;Lorg/joml/Matrix3f;)V com/mojang/math/MatrixUtil/similarityTransform (Lorg/joml/Matrix3f;Lorg/joml/Matrix3f;)V +MD: com/mojang/math/MatrixUtil/m_276207_ (FFF)Lcom/mojang/math/GivensParameters; com/mojang/math/MatrixUtil/approxGivensQuat (FFF)Lcom/mojang/math/GivensParameters; +MD: com/mojang/math/MatrixUtil/m_276219_ (Lorg/joml/Matrix3f;Lorg/joml/Matrix3f;Lorg/joml/Quaternionf;Lorg/joml/Quaternionf;)V com/mojang/math/MatrixUtil/stepJacobi (Lorg/joml/Matrix3f;Lorg/joml/Matrix3f;Lorg/joml/Quaternionf;Lorg/joml/Quaternionf;)V +MD: com/mojang/math/MatrixUtil/m_276221_ (Lorg/joml/Matrix3f;I)Lorg/joml/Quaternionf; com/mojang/math/MatrixUtil/eigenvalueJacobi (Lorg/joml/Matrix3f;I)Lorg/joml/Quaternionf; +MD: com/mojang/math/OctahedralGroup/ ()V com/mojang/math/OctahedralGroup/ ()V +MD: com/mojang/math/OctahedralGroup/ (Ljava/lang/String;ILjava/lang/String;Lcom/mojang/math/SymmetricGroup3;ZZZ)V com/mojang/math/OctahedralGroup/ (Ljava/lang/String;ILjava/lang/String;Lcom/mojang/math/SymmetricGroup3;ZZZ)V +MD: com/mojang/math/OctahedralGroup/m_174944_ ()Lcom/mojang/math/OctahedralGroup; com/mojang/math/OctahedralGroup/inverse ()Lcom/mojang/math/OctahedralGroup; +MD: com/mojang/math/OctahedralGroup/m_174945_ (Lcom/mojang/math/OctahedralGroup;Lcom/mojang/math/OctahedralGroup;)Z com/mojang/math/OctahedralGroup/lambda$static$3 (Lcom/mojang/math/OctahedralGroup;Lcom/mojang/math/OctahedralGroup;)Z +MD: com/mojang/math/OctahedralGroup/m_174949_ (Lcom/mojang/math/OctahedralGroup;)Lcom/mojang/math/OctahedralGroup; com/mojang/math/OctahedralGroup/lambda$static$1 (Lcom/mojang/math/OctahedralGroup;)Lcom/mojang/math/OctahedralGroup; +MD: com/mojang/math/OctahedralGroup/m_174951_ (Lcom/mojang/math/OctahedralGroup;)Lcom/mojang/datafixers/util/Pair; com/mojang/math/OctahedralGroup/lambda$static$0 (Lcom/mojang/math/OctahedralGroup;)Lcom/mojang/datafixers/util/Pair; +MD: com/mojang/math/OctahedralGroup/m_174953_ ()[Lcom/mojang/math/OctahedralGroup; com/mojang/math/OctahedralGroup/$values ()[Lcom/mojang/math/OctahedralGroup; +MD: com/mojang/math/OctahedralGroup/m_253203_ ()Lorg/joml/Matrix3f; com/mojang/math/OctahedralGroup/transformation ()Lorg/joml/Matrix3f; +MD: com/mojang/math/OctahedralGroup/m_56519_ (I)[Lcom/mojang/math/OctahedralGroup; com/mojang/math/OctahedralGroup/lambda$static$5 (I)[Lcom/mojang/math/OctahedralGroup; +MD: com/mojang/math/OctahedralGroup/m_56521_ (Lcom/mojang/math/OctahedralGroup;)Lcom/mojang/math/OctahedralGroup; com/mojang/math/OctahedralGroup/compose (Lcom/mojang/math/OctahedralGroup;)Lcom/mojang/math/OctahedralGroup; +MD: com/mojang/math/OctahedralGroup/m_56526_ (Lnet/minecraft/core/Direction$Axis;)Z com/mojang/math/OctahedralGroup/inverts (Lnet/minecraft/core/Direction$Axis;)Z +MD: com/mojang/math/OctahedralGroup/m_56528_ (Lnet/minecraft/core/Direction;)Lnet/minecraft/core/Direction; com/mojang/math/OctahedralGroup/rotate (Lnet/minecraft/core/Direction;)Lnet/minecraft/core/Direction; +MD: com/mojang/math/OctahedralGroup/m_56530_ (Lnet/minecraft/core/FrontAndTop;)Lnet/minecraft/core/FrontAndTop; com/mojang/math/OctahedralGroup/rotate (Lnet/minecraft/core/FrontAndTop;)Lnet/minecraft/core/FrontAndTop; +MD: com/mojang/math/OctahedralGroup/m_56532_ ([[Lcom/mojang/math/OctahedralGroup;)V com/mojang/math/OctahedralGroup/lambda$static$2 ([[Lcom/mojang/math/OctahedralGroup;)V +MD: com/mojang/math/OctahedralGroup/m_56534_ ()Lit/unimi/dsi/fastutil/booleans/BooleanList; com/mojang/math/OctahedralGroup/packInversions ()Lit/unimi/dsi/fastutil/booleans/BooleanList; +MD: com/mojang/math/OctahedralGroup/m_56535_ (Lcom/mojang/math/OctahedralGroup;)Lcom/mojang/math/OctahedralGroup; com/mojang/math/OctahedralGroup/lambda$static$4 (Lcom/mojang/math/OctahedralGroup;)Lcom/mojang/math/OctahedralGroup; +MD: com/mojang/math/OctahedralGroup/m_7912_ ()Ljava/lang/String; com/mojang/math/OctahedralGroup/getSerializedName ()Ljava/lang/String; +MD: com/mojang/math/OctahedralGroup/toString ()Ljava/lang/String; com/mojang/math/OctahedralGroup/toString ()Ljava/lang/String; +MD: com/mojang/math/OctahedralGroup/valueOf (Ljava/lang/String;)Lcom/mojang/math/OctahedralGroup; com/mojang/math/OctahedralGroup/valueOf (Ljava/lang/String;)Lcom/mojang/math/OctahedralGroup; +MD: com/mojang/math/OctahedralGroup/values ()[Lcom/mojang/math/OctahedralGroup; com/mojang/math/OctahedralGroup/values ()[Lcom/mojang/math/OctahedralGroup; +MD: com/mojang/math/OctahedralGroup$1/ ()V com/mojang/math/OctahedralGroup$1/ ()V +MD: com/mojang/math/SymmetricGroup3/ ()V com/mojang/math/SymmetricGroup3/ ()V +MD: com/mojang/math/SymmetricGroup3/ (Ljava/lang/String;IIII)V com/mojang/math/SymmetricGroup3/ (Ljava/lang/String;IIII)V +MD: com/mojang/math/SymmetricGroup3/m_109180_ (I)I com/mojang/math/SymmetricGroup3/permutation (I)I +MD: com/mojang/math/SymmetricGroup3/m_109182_ (Lcom/mojang/math/SymmetricGroup3;)Lcom/mojang/math/SymmetricGroup3; com/mojang/math/SymmetricGroup3/compose (Lcom/mojang/math/SymmetricGroup3;)Lcom/mojang/math/SymmetricGroup3; +MD: com/mojang/math/SymmetricGroup3/m_109187_ ([[Lcom/mojang/math/SymmetricGroup3;)V com/mojang/math/SymmetricGroup3/lambda$static$1 ([[Lcom/mojang/math/SymmetricGroup3;)V +MD: com/mojang/math/SymmetricGroup3/m_175575_ ([ILcom/mojang/math/SymmetricGroup3;)Z com/mojang/math/SymmetricGroup3/lambda$static$0 ([ILcom/mojang/math/SymmetricGroup3;)Z +MD: com/mojang/math/SymmetricGroup3/m_175578_ ()[Lcom/mojang/math/SymmetricGroup3; com/mojang/math/SymmetricGroup3/$values ()[Lcom/mojang/math/SymmetricGroup3; +MD: com/mojang/math/SymmetricGroup3/m_253007_ ()Lorg/joml/Matrix3f; com/mojang/math/SymmetricGroup3/transformation ()Lorg/joml/Matrix3f; +MD: com/mojang/math/SymmetricGroup3/valueOf (Ljava/lang/String;)Lcom/mojang/math/SymmetricGroup3; com/mojang/math/SymmetricGroup3/valueOf (Ljava/lang/String;)Lcom/mojang/math/SymmetricGroup3; +MD: com/mojang/math/SymmetricGroup3/values ()[Lcom/mojang/math/SymmetricGroup3; com/mojang/math/SymmetricGroup3/values ()[Lcom/mojang/math/SymmetricGroup3; +MD: com/mojang/math/Transformation/ ()V com/mojang/math/Transformation/ ()V +MD: com/mojang/math/Transformation/ (Lorg/joml/Vector3f;Lorg/joml/Quaternionf;Lorg/joml/Vector3f;Lorg/joml/Quaternionf;)V com/mojang/math/Transformation/ (Lorg/joml/Vector3f;Lorg/joml/Quaternionf;Lorg/joml/Vector3f;Lorg/joml/Quaternionf;)V +MD: com/mojang/math/Transformation/ (Lorg/joml/Matrix4f;)V com/mojang/math/Transformation/ (Lorg/joml/Matrix4f;)V +MD: com/mojang/math/Transformation/equals (Ljava/lang/Object;)Z com/mojang/math/Transformation/equals (Ljava/lang/Object;)Z +MD: com/mojang/math/Transformation/hashCode ()I com/mojang/math/Transformation/hashCode ()I +MD: com/mojang/math/Transformation/m_121093_ ()Lcom/mojang/math/Transformation; com/mojang/math/Transformation/identity ()Lcom/mojang/math/Transformation; +MD: com/mojang/math/Transformation/m_121096_ (Lcom/mojang/math/Transformation;)Lcom/mojang/math/Transformation; com/mojang/math/Transformation/compose (Lcom/mojang/math/Transformation;)Lcom/mojang/math/Transformation; +MD: com/mojang/math/Transformation/m_121103_ ()Lcom/mojang/math/Transformation; com/mojang/math/Transformation/inverse ()Lcom/mojang/math/Transformation; +MD: com/mojang/math/Transformation/m_121106_ ()V com/mojang/math/Transformation/ensureDecomposed ()V +MD: com/mojang/math/Transformation/m_175937_ (Lcom/mojang/math/Transformation;F)Lcom/mojang/math/Transformation; com/mojang/math/Transformation/slerp (Lcom/mojang/math/Transformation;F)Lcom/mojang/math/Transformation; +MD: com/mojang/math/Transformation/m_252783_ ()Lorg/joml/Matrix4f; com/mojang/math/Transformation/getMatrix ()Lorg/joml/Matrix4f; +MD: com/mojang/math/Transformation/m_252829_ ()Lorg/joml/Vector3f; com/mojang/math/Transformation/getTranslation ()Lorg/joml/Vector3f; +MD: com/mojang/math/Transformation/m_252848_ ()Lorg/joml/Quaternionf; com/mojang/math/Transformation/getRightRotation ()Lorg/joml/Quaternionf; +MD: com/mojang/math/Transformation/m_252900_ ()Lorg/joml/Vector3f; com/mojang/math/Transformation/getScale ()Lorg/joml/Vector3f; +MD: com/mojang/math/Transformation/m_253227_ (Lorg/joml/Vector3f;Lorg/joml/Quaternionf;Lorg/joml/Vector3f;Lorg/joml/Quaternionf;)Lorg/joml/Matrix4f; com/mojang/math/Transformation/compose (Lorg/joml/Vector3f;Lorg/joml/Quaternionf;Lorg/joml/Vector3f;Lorg/joml/Quaternionf;)Lorg/joml/Matrix4f; +MD: com/mojang/math/Transformation/m_253244_ ()Lorg/joml/Quaternionf; com/mojang/math/Transformation/getLeftRotation ()Lorg/joml/Quaternionf; +MD: com/mojang/math/Transformation/m_268754_ (Lcom/mojang/math/Transformation;)Lorg/joml/Quaternionf; com/mojang/math/Transformation/lambda$static$3 (Lcom/mojang/math/Transformation;)Lorg/joml/Quaternionf; +MD: com/mojang/math/Transformation/m_268755_ (Lcom/mojang/math/Transformation;)Lorg/joml/Vector3f; com/mojang/math/Transformation/lambda$static$0 (Lcom/mojang/math/Transformation;)Lorg/joml/Vector3f; +MD: com/mojang/math/Transformation/m_268756_ (Lcom/mojang/math/Transformation;)Lorg/joml/Quaternionf; com/mojang/math/Transformation/lambda$static$1 (Lcom/mojang/math/Transformation;)Lorg/joml/Quaternionf; +MD: com/mojang/math/Transformation/m_268757_ (Lcom/mojang/math/Transformation;)Lcom/mojang/math/Transformation; com/mojang/math/Transformation/lambda$static$5 (Lcom/mojang/math/Transformation;)Lcom/mojang/math/Transformation; +MD: com/mojang/math/Transformation/m_268758_ (Lcom/mojang/math/Transformation;)Lcom/mojang/math/Transformation; com/mojang/math/Transformation/lambda$static$6 (Lcom/mojang/math/Transformation;)Lcom/mojang/math/Transformation; +MD: com/mojang/math/Transformation/m_268759_ (Lcom/mojang/math/Transformation;)Lorg/joml/Vector3f; com/mojang/math/Transformation/lambda$static$2 (Lcom/mojang/math/Transformation;)Lorg/joml/Vector3f; +MD: com/mojang/math/Transformation/m_268760_ (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; com/mojang/math/Transformation/lambda$static$4 (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: com/mojang/math/Transformation/m_268761_ (Lcom/mojang/datafixers/util/Either;)Lcom/mojang/math/Transformation; com/mojang/math/Transformation/lambda$static$7 (Lcom/mojang/datafixers/util/Either;)Lcom/mojang/math/Transformation; +MD: com/mojang/math/Transformation/m_276167_ ()Lcom/mojang/math/Transformation; com/mojang/math/Transformation/lambda$static$8 ()Lcom/mojang/math/Transformation; +MD: com/mojang/realmsclient/KeyCombo/ ([C)V com/mojang/realmsclient/KeyCombo/ ([C)V +MD: com/mojang/realmsclient/KeyCombo/ ([CLjava/lang/Runnable;)V com/mojang/realmsclient/KeyCombo/ ([CLjava/lang/Runnable;)V +MD: com/mojang/realmsclient/KeyCombo/m_167172_ ()V com/mojang/realmsclient/KeyCombo/lambda$new$0 ()V +MD: com/mojang/realmsclient/KeyCombo/m_86227_ ()V com/mojang/realmsclient/KeyCombo/reset ()V +MD: com/mojang/realmsclient/KeyCombo/m_86228_ (C)Z com/mojang/realmsclient/KeyCombo/keyPressed (C)Z +MD: com/mojang/realmsclient/KeyCombo/toString ()Ljava/lang/String; com/mojang/realmsclient/KeyCombo/toString ()Ljava/lang/String; +MD: com/mojang/realmsclient/RealmsMainScreen/ ()V com/mojang/realmsclient/RealmsMainScreen/ ()V +MD: com/mojang/realmsclient/RealmsMainScreen/ (Lnet/minecraft/client/gui/screens/Screen;)V com/mojang/realmsclient/RealmsMainScreen/ (Lnet/minecraft/client/gui/screens/Screen;)V +MD: com/mojang/realmsclient/RealmsMainScreen/m_167176_ (Lcom/mojang/realmsclient/RealmsMainScreen;)Lnet/minecraft/client/gui/Font; com/mojang/realmsclient/RealmsMainScreen/access$2600 (Lcom/mojang/realmsclient/RealmsMainScreen;)Lnet/minecraft/client/gui/Font; +MD: com/mojang/realmsclient/RealmsMainScreen/m_167186_ (Lcom/mojang/realmsclient/RealmsMainScreen;)Lnet/minecraft/client/Minecraft; com/mojang/realmsclient/RealmsMainScreen/access$000 (Lcom/mojang/realmsclient/RealmsMainScreen;)Lnet/minecraft/client/Minecraft; +MD: com/mojang/realmsclient/RealmsMainScreen/m_167190_ (Z)V com/mojang/realmsclient/RealmsMainScreen/setCreatedTrial (Z)V +MD: com/mojang/realmsclient/RealmsMainScreen/m_167192_ (Lcom/mojang/realmsclient/RealmsMainScreen;)Lnet/minecraft/client/Minecraft; com/mojang/realmsclient/RealmsMainScreen/access$100 (Lcom/mojang/realmsclient/RealmsMainScreen;)Lnet/minecraft/client/Minecraft; +MD: com/mojang/realmsclient/RealmsMainScreen/m_167194_ (Lcom/mojang/realmsclient/RealmsMainScreen;)Lnet/minecraft/client/Minecraft; com/mojang/realmsclient/RealmsMainScreen/access$200 (Lcom/mojang/realmsclient/RealmsMainScreen;)Lnet/minecraft/client/Minecraft; +MD: com/mojang/realmsclient/RealmsMainScreen/m_167196_ (Lcom/mojang/realmsclient/RealmsMainScreen;)Lnet/minecraft/client/Minecraft; com/mojang/realmsclient/RealmsMainScreen/access$500 (Lcom/mojang/realmsclient/RealmsMainScreen;)Lnet/minecraft/client/Minecraft; +MD: com/mojang/realmsclient/RealmsMainScreen/m_167198_ (Lcom/mojang/realmsclient/RealmsMainScreen;)Lnet/minecraft/client/Minecraft; com/mojang/realmsclient/RealmsMainScreen/access$600 (Lcom/mojang/realmsclient/RealmsMainScreen;)Lnet/minecraft/client/Minecraft; +MD: com/mojang/realmsclient/RealmsMainScreen/m_167201_ (Lcom/mojang/realmsclient/RealmsMainScreen;)Lnet/minecraft/client/Minecraft; com/mojang/realmsclient/RealmsMainScreen/access$700 (Lcom/mojang/realmsclient/RealmsMainScreen;)Lnet/minecraft/client/Minecraft; +MD: com/mojang/realmsclient/RealmsMainScreen/m_167203_ (Lcom/mojang/realmsclient/RealmsMainScreen;)Lnet/minecraft/client/Minecraft; com/mojang/realmsclient/RealmsMainScreen/access$1600 (Lcom/mojang/realmsclient/RealmsMainScreen;)Lnet/minecraft/client/Minecraft; +MD: com/mojang/realmsclient/RealmsMainScreen/m_167205_ (Lcom/mojang/realmsclient/RealmsMainScreen;)Lnet/minecraft/client/gui/Font; com/mojang/realmsclient/RealmsMainScreen/access$1500 (Lcom/mojang/realmsclient/RealmsMainScreen;)Lnet/minecraft/client/gui/Font; +MD: com/mojang/realmsclient/RealmsMainScreen/m_167209_ (Lcom/mojang/realmsclient/RealmsMainScreen;)Lnet/minecraft/client/gui/Font; com/mojang/realmsclient/RealmsMainScreen/access$3000 (Lcom/mojang/realmsclient/RealmsMainScreen;)Lnet/minecraft/client/gui/Font; +MD: com/mojang/realmsclient/RealmsMainScreen/m_167211_ (Lcom/mojang/realmsclient/RealmsMainScreen;)Lnet/minecraft/client/gui/Font; com/mojang/realmsclient/RealmsMainScreen/access$2100 (Lcom/mojang/realmsclient/RealmsMainScreen;)Lnet/minecraft/client/gui/Font; +MD: com/mojang/realmsclient/RealmsMainScreen/m_167215_ (Lcom/mojang/realmsclient/RealmsMainScreen;)Lnet/minecraft/client/gui/Font; com/mojang/realmsclient/RealmsMainScreen/access$2000 (Lcom/mojang/realmsclient/RealmsMainScreen;)Lnet/minecraft/client/gui/Font; +MD: com/mojang/realmsclient/RealmsMainScreen/m_167219_ (Lcom/mojang/realmsclient/RealmsMainScreen;)Lnet/minecraft/client/gui/Font; com/mojang/realmsclient/RealmsMainScreen/access$2200 (Lcom/mojang/realmsclient/RealmsMainScreen;)Lnet/minecraft/client/gui/Font; +MD: com/mojang/realmsclient/RealmsMainScreen/m_167221_ (Lcom/mojang/realmsclient/RealmsMainScreen;)Lnet/minecraft/client/gui/Font; com/mojang/realmsclient/RealmsMainScreen/access$2900 (Lcom/mojang/realmsclient/RealmsMainScreen;)Lnet/minecraft/client/gui/Font; +MD: com/mojang/realmsclient/RealmsMainScreen/m_167223_ (Lcom/mojang/realmsclient/RealmsMainScreen;)Lnet/minecraft/client/gui/Font; com/mojang/realmsclient/RealmsMainScreen/access$2400 (Lcom/mojang/realmsclient/RealmsMainScreen;)Lnet/minecraft/client/gui/Font; +MD: com/mojang/realmsclient/RealmsMainScreen/m_167225_ (Lcom/mojang/realmsclient/RealmsMainScreen;)Lnet/minecraft/client/gui/Font; com/mojang/realmsclient/RealmsMainScreen/access$2500 (Lcom/mojang/realmsclient/RealmsMainScreen;)Lnet/minecraft/client/gui/Font; +MD: com/mojang/realmsclient/RealmsMainScreen/m_193481_ ()Lcom/mojang/realmsclient/dto/RealmsServer; com/mojang/realmsclient/RealmsMainScreen/getSelectedServer ()Lcom/mojang/realmsclient/dto/RealmsServer; +MD: com/mojang/realmsclient/RealmsMainScreen/m_193493_ (ZLcom/mojang/realmsclient/dto/RealmsServer;)V com/mojang/realmsclient/RealmsMainScreen/leaveServer (ZLcom/mojang/realmsclient/dto/RealmsServer;)V +MD: com/mojang/realmsclient/RealmsMainScreen/m_193498_ ()V com/mojang/realmsclient/RealmsMainScreen/resetScreen ()V +MD: com/mojang/realmsclient/RealmsMainScreen/m_193499_ (Lcom/mojang/realmsclient/dto/RealmsServer;)V com/mojang/realmsclient/RealmsMainScreen/onRenew (Lcom/mojang/realmsclient/dto/RealmsServer;)V +MD: com/mojang/realmsclient/RealmsMainScreen/m_231242_ ()V com/mojang/realmsclient/RealmsMainScreen/lambda$pingRegions$22 ()V +MD: com/mojang/realmsclient/RealmsMainScreen/m_231243_ (CLcom/mojang/realmsclient/KeyCombo;)V com/mojang/realmsclient/RealmsMainScreen/lambda$charTyped$28 (CLcom/mojang/realmsclient/KeyCombo;)V +MD: com/mojang/realmsclient/RealmsMainScreen/m_231248_ (Lcom/mojang/realmsclient/dto/RealmsServer;Z)V com/mojang/realmsclient/RealmsMainScreen/lambda$leaveClicked$23 (Lcom/mojang/realmsclient/dto/RealmsServer;Z)V +MD: com/mojang/realmsclient/RealmsMainScreen/m_231251_ (Ljava/lang/Boolean;)V com/mojang/realmsclient/RealmsMainScreen/lambda$initDataFetcher$15 (Ljava/lang/Boolean;)V +MD: com/mojang/realmsclient/RealmsMainScreen/m_231254_ (Lnet/minecraft/client/gui/components/Button;)V com/mojang/realmsclient/RealmsMainScreen/lambda$addMiddleButtons$5 (Lnet/minecraft/client/gui/components/Button;)V +MD: com/mojang/realmsclient/RealmsMainScreen/m_231256_ (Lcom/mojang/realmsclient/RealmsMainScreen;)Lnet/minecraft/client/gui/Font; com/mojang/realmsclient/RealmsMainScreen/access$1300 (Lcom/mojang/realmsclient/RealmsMainScreen;)Lnet/minecraft/client/gui/Font; +MD: com/mojang/realmsclient/RealmsMainScreen/m_238841_ (Lnet/minecraft/resources/ResourceLocation;)Z com/mojang/realmsclient/RealmsMainScreen/lambda$updateTeaserImages$29 (Lnet/minecraft/resources/ResourceLocation;)Z +MD: com/mojang/realmsclient/RealmsMainScreen/m_238843_ (Lcom/mojang/realmsclient/dto/RealmsServer;Lcom/mojang/realmsclient/RealmsMainScreen$Entry;)Z com/mojang/realmsclient/RealmsMainScreen/lambda$removeServer$24 (Lcom/mojang/realmsclient/dto/RealmsServer;Lcom/mojang/realmsclient/RealmsMainScreen$Entry;)Z +MD: com/mojang/realmsclient/RealmsMainScreen/m_238846_ (Lcom/mojang/realmsclient/dto/RealmsServerPlayerLists;)V com/mojang/realmsclient/RealmsMainScreen/lambda$initDataFetcher$16 (Lcom/mojang/realmsclient/dto/RealmsServerPlayerLists;)V +MD: com/mojang/realmsclient/RealmsMainScreen/m_238848_ (Lcom/mojang/realmsclient/gui/RealmsDataFetcher;Lcom/mojang/realmsclient/dto/RealmsNews;)V com/mojang/realmsclient/RealmsMainScreen/lambda$initDataFetcher$17 (Lcom/mojang/realmsclient/gui/RealmsDataFetcher;Lcom/mojang/realmsclient/dto/RealmsNews;)V +MD: com/mojang/realmsclient/RealmsMainScreen/m_238851_ (Lnet/minecraft/resources/ResourceLocation;)Z com/mojang/realmsclient/RealmsMainScreen/lambda$updateTeaserImages$30 (Lnet/minecraft/resources/ResourceLocation;)Z +MD: com/mojang/realmsclient/RealmsMainScreen/m_240107_ ()V com/mojang/realmsclient/RealmsMainScreen/refreshFetcher ()V +MD: com/mojang/realmsclient/RealmsMainScreen/m_258074_ (Lcom/mojang/realmsclient/RealmsMainScreen;Lnet/minecraft/network/chat/Component;)V com/mojang/realmsclient/RealmsMainScreen/access$2300 (Lcom/mojang/realmsclient/RealmsMainScreen;Lnet/minecraft/network/chat/Component;)V +MD: com/mojang/realmsclient/RealmsMainScreen/m_264302_ ()V com/mojang/realmsclient/RealmsMainScreen/addMiddleButtons ()V +MD: com/mojang/realmsclient/RealmsMainScreen/m_264589_ ()V com/mojang/realmsclient/RealmsMainScreen/addTopButtons ()V +MD: com/mojang/realmsclient/RealmsMainScreen/m_271543_ (Lcom/mojang/realmsclient/RealmsMainScreen;Lnet/minecraft/client/gui/components/events/GuiEventListener;)V com/mojang/realmsclient/RealmsMainScreen/lambda$addFooterButtons$11 (Lcom/mojang/realmsclient/RealmsMainScreen;Lnet/minecraft/client/gui/components/events/GuiEventListener;)V +MD: com/mojang/realmsclient/RealmsMainScreen/m_272189_ ()V com/mojang/realmsclient/RealmsMainScreen/addFooterButtons ()V +MD: com/mojang/realmsclient/RealmsMainScreen/m_273951_ (Ljava/util/UUID;Lcom/mojang/realmsclient/dto/RealmsNotification;)Z com/mojang/realmsclient/RealmsMainScreen/lambda$dismissNotification$26 (Ljava/util/UUID;Lcom/mojang/realmsclient/dto/RealmsNotification;)Z +MD: com/mojang/realmsclient/RealmsMainScreen/m_273952_ (Ljava/util/List;)V com/mojang/realmsclient/RealmsMainScreen/lambda$initDataFetcher$13 (Ljava/util/List;)V +MD: com/mojang/realmsclient/RealmsMainScreen/m_273954_ (Ljava/util/List;Lcom/mojang/realmsclient/client/RealmsClient;)Ljava/lang/Object; com/mojang/realmsclient/RealmsMainScreen/lambda$refreshRealmsSelectionList$20 (Ljava/util/List;Lcom/mojang/realmsclient/client/RealmsClient;)Ljava/lang/Object; +MD: com/mojang/realmsclient/RealmsMainScreen/m_273955_ (Ljava/lang/Throwable;)Ljava/lang/Void; com/mojang/realmsclient/RealmsMainScreen/lambda$callRealmsClient$19 (Ljava/lang/Throwable;)Ljava/lang/Void; +MD: com/mojang/realmsclient/RealmsMainScreen/m_273956_ (Ljava/util/UUID;Lcom/mojang/realmsclient/client/RealmsClient;)Ljava/lang/Object; com/mojang/realmsclient/RealmsMainScreen/lambda$dismissNotification$25 (Ljava/util/UUID;Lcom/mojang/realmsclient/client/RealmsClient;)Ljava/lang/Object; +MD: com/mojang/realmsclient/RealmsMainScreen/m_273957_ (Ljava/util/List;Ljava/lang/Object;)V com/mojang/realmsclient/RealmsMainScreen/lambda$refreshRealmsSelectionList$21 (Ljava/util/List;Ljava/lang/Object;)V +MD: com/mojang/realmsclient/RealmsMainScreen/m_273958_ (Ljava/util/UUID;Ljava/lang/Object;)V com/mojang/realmsclient/RealmsMainScreen/lambda$dismissNotification$27 (Ljava/util/UUID;Ljava/lang/Object;)V +MD: com/mojang/realmsclient/RealmsMainScreen/m_273959_ (Lcom/mojang/realmsclient/RealmsMainScreen$RealmsCall;Lnet/minecraft/client/Minecraft;)Ljava/lang/Object; com/mojang/realmsclient/RealmsMainScreen/lambda$callRealmsClient$18 (Lcom/mojang/realmsclient/RealmsMainScreen$RealmsCall;Lnet/minecraft/client/Minecraft;)Ljava/lang/Object; +MD: com/mojang/realmsclient/RealmsMainScreen/m_274332_ (Lcom/mojang/realmsclient/RealmsMainScreen$RealmsCall;Ljava/util/function/Consumer;)V com/mojang/realmsclient/RealmsMainScreen/callRealmsClient (Lcom/mojang/realmsclient/RealmsMainScreen$RealmsCall;Ljava/util/function/Consumer;)V +MD: com/mojang/realmsclient/RealmsMainScreen/m_274411_ (Lcom/mojang/realmsclient/RealmsMainScreen$RealmSelectionList;Lcom/mojang/realmsclient/dto/RealmsNotification;)V com/mojang/realmsclient/RealmsMainScreen/addEntriesForNotification (Lcom/mojang/realmsclient/RealmsMainScreen$RealmSelectionList;Lcom/mojang/realmsclient/dto/RealmsNotification;)V +MD: com/mojang/realmsclient/RealmsMainScreen/m_274440_ (Lcom/mojang/realmsclient/RealmsMainScreen;)Lnet/minecraft/client/gui/Font; com/mojang/realmsclient/RealmsMainScreen/access$2700 (Lcom/mojang/realmsclient/RealmsMainScreen;)Lnet/minecraft/client/gui/Font; +MD: com/mojang/realmsclient/RealmsMainScreen/m_274485_ (Lcom/mojang/realmsclient/RealmsMainScreen;)Lnet/minecraft/client/gui/Font; com/mojang/realmsclient/RealmsMainScreen/access$2800 (Lcom/mojang/realmsclient/RealmsMainScreen;)Lnet/minecraft/client/gui/Font; +MD: com/mojang/realmsclient/RealmsMainScreen/m_274513_ (Lcom/mojang/realmsclient/RealmsMainScreen;)Lnet/minecraft/client/gui/Font; com/mojang/realmsclient/RealmsMainScreen/access$1400 (Lcom/mojang/realmsclient/RealmsMainScreen;)Lnet/minecraft/client/gui/Font; +MD: com/mojang/realmsclient/RealmsMainScreen/m_274580_ (Ljava/util/UUID;)V com/mojang/realmsclient/RealmsMainScreen/dismissNotification (Ljava/util/UUID;)V +MD: com/mojang/realmsclient/RealmsMainScreen/m_274604_ ()V com/mojang/realmsclient/RealmsMainScreen/refreshRealmsSelectionList ()V +MD: com/mojang/realmsclient/RealmsMainScreen/m_274617_ (Lcom/mojang/realmsclient/RealmsMainScreen;)Lnet/minecraft/client/gui/Font; com/mojang/realmsclient/RealmsMainScreen/access$1900 (Lcom/mojang/realmsclient/RealmsMainScreen;)Lnet/minecraft/client/gui/Font; +MD: com/mojang/realmsclient/RealmsMainScreen/m_275762_ (Ljava/util/List;)V com/mojang/realmsclient/RealmsMainScreen/lambda$initDataFetcher$12 (Ljava/util/List;)V +MD: com/mojang/realmsclient/RealmsMainScreen/m_278724_ (Lcom/mojang/realmsclient/RealmsMainScreen;)Lnet/minecraft/client/Minecraft; com/mojang/realmsclient/RealmsMainScreen/access$1700 (Lcom/mojang/realmsclient/RealmsMainScreen;)Lnet/minecraft/client/Minecraft; +MD: com/mojang/realmsclient/RealmsMainScreen/m_278804_ (Lcom/mojang/realmsclient/RealmsMainScreen;)Lnet/minecraft/client/Minecraft; com/mojang/realmsclient/RealmsMainScreen/access$1800 (Lcom/mojang/realmsclient/RealmsMainScreen;)Lnet/minecraft/client/Minecraft; +MD: com/mojang/realmsclient/RealmsMainScreen/m_278839_ (Lcom/mojang/realmsclient/RealmsMainScreen;)Lnet/minecraft/client/Minecraft; com/mojang/realmsclient/RealmsMainScreen/access$3100 (Lcom/mojang/realmsclient/RealmsMainScreen;)Lnet/minecraft/client/Minecraft; +MD: com/mojang/realmsclient/RealmsMainScreen/m_279667_ (Lnet/minecraft/client/gui/components/Button;)V com/mojang/realmsclient/RealmsMainScreen/lambda$addMiddleButtons$4 (Lnet/minecraft/client/gui/components/Button;)V +MD: com/mojang/realmsclient/RealmsMainScreen/m_279668_ (Ljava/lang/Integer;)V com/mojang/realmsclient/RealmsMainScreen/lambda$initDataFetcher$14 (Ljava/lang/Integer;)V +MD: com/mojang/realmsclient/RealmsMainScreen/m_279669_ (Lnet/minecraft/client/gui/components/Button;)V com/mojang/realmsclient/RealmsMainScreen/lambda$addFooterButtons$10 (Lnet/minecraft/client/gui/components/Button;)V +MD: com/mojang/realmsclient/RealmsMainScreen/m_280129_ (Lnet/minecraft/client/gui/GuiGraphics;IIII)V com/mojang/realmsclient/RealmsMainScreen/drawClose (Lnet/minecraft/client/gui/GuiGraphics;IIII)V +MD: com/mojang/realmsclient/RealmsMainScreen/m_280162_ (Lnet/minecraft/client/gui/GuiGraphics;IIZIIZZ)V com/mojang/realmsclient/RealmsMainScreen/renderNews (Lnet/minecraft/client/gui/GuiGraphics;IIZIIZZ)V +MD: com/mojang/realmsclient/RealmsMainScreen/m_280236_ (Lnet/minecraft/client/gui/GuiGraphics;IIII)V com/mojang/realmsclient/RealmsMainScreen/drawOpen (Lnet/minecraft/client/gui/GuiGraphics;IIII)V +MD: com/mojang/realmsclient/RealmsMainScreen/m_280377_ (Lnet/minecraft/client/gui/GuiGraphics;IIIII)V com/mojang/realmsclient/RealmsMainScreen/drawExpiring (Lnet/minecraft/client/gui/GuiGraphics;IIIII)V +MD: com/mojang/realmsclient/RealmsMainScreen/m_280475_ (Lnet/minecraft/client/gui/GuiGraphics;IIF)V com/mojang/realmsclient/RealmsMainScreen/drawPopup (Lnet/minecraft/client/gui/GuiGraphics;IIF)V +MD: com/mojang/realmsclient/RealmsMainScreen/m_280597_ (Lnet/minecraft/client/gui/GuiGraphics;IIII)V com/mojang/realmsclient/RealmsMainScreen/drawExpired (Lnet/minecraft/client/gui/GuiGraphics;IIII)V +MD: com/mojang/realmsclient/RealmsMainScreen/m_5534_ (CI)Z com/mojang/realmsclient/RealmsMainScreen/charTyped (CI)Z +MD: com/mojang/realmsclient/RealmsMainScreen/m_6375_ (DDI)Z com/mojang/realmsclient/RealmsMainScreen/mouseClicked (DDI)Z +MD: com/mojang/realmsclient/RealmsMainScreen/m_7856_ ()V com/mojang/realmsclient/RealmsMainScreen/init ()V +MD: com/mojang/realmsclient/RealmsMainScreen/m_7933_ (III)Z com/mojang/realmsclient/RealmsMainScreen/keyPressed (III)Z +MD: com/mojang/realmsclient/RealmsMainScreen/m_86318_ ()Z com/mojang/realmsclient/RealmsMainScreen/shouldShowMessageInList ()Z +MD: com/mojang/realmsclient/RealmsMainScreen/m_86321_ ()Z com/mojang/realmsclient/RealmsMainScreen/hasParentalConsent ()Z +MD: com/mojang/realmsclient/RealmsMainScreen/m_86324_ ()Z com/mojang/realmsclient/RealmsMainScreen/shouldShowPopupButton ()Z +MD: com/mojang/realmsclient/RealmsMainScreen/m_86327_ ()V com/mojang/realmsclient/RealmsMainScreen/pingRegions ()V +MD: com/mojang/realmsclient/RealmsMainScreen/m_86330_ ()Ljava/util/List; com/mojang/realmsclient/RealmsMainScreen/getOwnedNonExpiredWorldIds ()Ljava/util/List; +MD: com/mojang/realmsclient/RealmsMainScreen/m_86336_ ()V com/mojang/realmsclient/RealmsMainScreen/checkClientCompatability ()V +MD: com/mojang/realmsclient/RealmsMainScreen/m_86342_ ()V com/mojang/realmsclient/RealmsMainScreen/checkParentalConsent ()V +MD: com/mojang/realmsclient/RealmsMainScreen/m_86345_ ()V com/mojang/realmsclient/RealmsMainScreen/switchToStage ()V +MD: com/mojang/realmsclient/RealmsMainScreen/m_86348_ ()V com/mojang/realmsclient/RealmsMainScreen/switchToLocal ()V +MD: com/mojang/realmsclient/RealmsMainScreen/m_86351_ ()V com/mojang/realmsclient/RealmsMainScreen/switchToProd ()V +MD: com/mojang/realmsclient/RealmsMainScreen/m_86354_ (Lcom/mojang/realmsclient/gui/RealmsDataFetcher;)Lcom/mojang/realmsclient/gui/task/DataFetcher$Subscription; com/mojang/realmsclient/RealmsMainScreen/initDataFetcher (Lcom/mojang/realmsclient/gui/RealmsDataFetcher;)Lcom/mojang/realmsclient/gui/task/DataFetcher$Subscription; +MD: com/mojang/realmsclient/RealmsMainScreen/m_86357_ ()V com/mojang/realmsclient/RealmsMainScreen/saveListScrollPosition ()V +MD: com/mojang/realmsclient/RealmsMainScreen/m_86360_ ()V com/mojang/realmsclient/RealmsMainScreen/onClosePopup ()V +MD: com/mojang/realmsclient/RealmsMainScreen/m_86363_ ()I com/mojang/realmsclient/RealmsMainScreen/popupX0 ()I +MD: com/mojang/realmsclient/RealmsMainScreen/m_86366_ ()I com/mojang/realmsclient/RealmsMainScreen/popupY0 ()I +MD: com/mojang/realmsclient/RealmsMainScreen/m_86372_ ()V com/mojang/realmsclient/RealmsMainScreen/lambda$init$2 ()V +MD: com/mojang/realmsclient/RealmsMainScreen/m_86375_ ()V com/mojang/realmsclient/RealmsMainScreen/lambda$init$1 ()V +MD: com/mojang/realmsclient/RealmsMainScreen/m_86378_ ()V com/mojang/realmsclient/RealmsMainScreen/lambda$init$0 ()V +MD: com/mojang/realmsclient/RealmsMainScreen/m_86393_ (DD)Z com/mojang/realmsclient/RealmsMainScreen/isOutsidePopup (DD)Z +MD: com/mojang/realmsclient/RealmsMainScreen/m_86406_ (Lnet/minecraft/server/packs/resources/ResourceManager;)V com/mojang/realmsclient/RealmsMainScreen/updateTeaserImages (Lnet/minecraft/server/packs/resources/ResourceManager;)V +MD: com/mojang/realmsclient/RealmsMainScreen/m_86513_ (Lcom/mojang/realmsclient/dto/RealmsServer;)V com/mojang/realmsclient/RealmsMainScreen/updateButtonStates (Lcom/mojang/realmsclient/dto/RealmsServer;)V +MD: com/mojang/realmsclient/RealmsMainScreen/m_86515_ (Lcom/mojang/realmsclient/dto/RealmsServer;Lnet/minecraft/client/gui/screens/Screen;)V com/mojang/realmsclient/RealmsMainScreen/play (Lcom/mojang/realmsclient/dto/RealmsServer;Lnet/minecraft/client/gui/screens/Screen;)V +MD: com/mojang/realmsclient/RealmsMainScreen/m_86528_ ()Z com/mojang/realmsclient/RealmsMainScreen/shouldShowPopup ()Z +MD: com/mojang/realmsclient/RealmsMainScreen/m_86544_ (Lcom/mojang/realmsclient/RealmsMainScreen;)Lnet/minecraft/client/Minecraft; com/mojang/realmsclient/RealmsMainScreen/access$300 (Lcom/mojang/realmsclient/RealmsMainScreen;)Lnet/minecraft/client/Minecraft; +MD: com/mojang/realmsclient/RealmsMainScreen/m_86562_ (Lcom/mojang/realmsclient/dto/RealmsServer;)Z com/mojang/realmsclient/RealmsMainScreen/shouldPlayButtonBeActive (Lcom/mojang/realmsclient/dto/RealmsServer;)Z +MD: com/mojang/realmsclient/RealmsMainScreen/m_86582_ (Lcom/mojang/realmsclient/RealmsMainScreen;)Lnet/minecraft/client/Minecraft; com/mojang/realmsclient/RealmsMainScreen/access$400 (Lcom/mojang/realmsclient/RealmsMainScreen;)Lnet/minecraft/client/Minecraft; +MD: com/mojang/realmsclient/RealmsMainScreen/m_86594_ (Lcom/mojang/realmsclient/dto/RealmsServer;)Z com/mojang/realmsclient/RealmsMainScreen/shouldRenewButtonBeActive (Lcom/mojang/realmsclient/dto/RealmsServer;)Z +MD: com/mojang/realmsclient/RealmsMainScreen/m_86596_ (Lnet/minecraft/client/gui/components/Button;)V com/mojang/realmsclient/RealmsMainScreen/lambda$addTopButtons$3 (Lnet/minecraft/client/gui/components/Button;)V +MD: com/mojang/realmsclient/RealmsMainScreen/m_86600_ ()V com/mojang/realmsclient/RealmsMainScreen/tick ()V +MD: com/mojang/realmsclient/RealmsMainScreen/m_86601_ (Lnet/minecraft/client/gui/GuiGraphics;)V com/mojang/realmsclient/RealmsMainScreen/renderStage (Lnet/minecraft/client/gui/GuiGraphics;)V +MD: com/mojang/realmsclient/RealmsMainScreen/m_86619_ (Lcom/mojang/realmsclient/dto/RealmsServer;)Z com/mojang/realmsclient/RealmsMainScreen/shouldConfigureButtonBeActive (Lcom/mojang/realmsclient/dto/RealmsServer;)Z +MD: com/mojang/realmsclient/RealmsMainScreen/m_86621_ (Lnet/minecraft/client/gui/components/Button;)V com/mojang/realmsclient/RealmsMainScreen/lambda$addFooterButtons$8 (Lnet/minecraft/client/gui/components/Button;)V +MD: com/mojang/realmsclient/RealmsMainScreen/m_86626_ (Lnet/minecraft/client/gui/GuiGraphics;)V com/mojang/realmsclient/RealmsMainScreen/renderLocal (Lnet/minecraft/client/gui/GuiGraphics;)V +MD: com/mojang/realmsclient/RealmsMainScreen/m_86632_ (Lcom/mojang/realmsclient/RealmsMainScreen;)Lnet/minecraft/client/Minecraft; com/mojang/realmsclient/RealmsMainScreen/access$800 (Lcom/mojang/realmsclient/RealmsMainScreen;)Lnet/minecraft/client/Minecraft; +MD: com/mojang/realmsclient/RealmsMainScreen/m_86644_ (Lcom/mojang/realmsclient/dto/RealmsServer;)Z com/mojang/realmsclient/RealmsMainScreen/shouldLeaveButtonBeActive (Lcom/mojang/realmsclient/dto/RealmsServer;)Z +MD: com/mojang/realmsclient/RealmsMainScreen/m_86654_ (Lcom/mojang/realmsclient/RealmsMainScreen;)Lnet/minecraft/client/Minecraft; com/mojang/realmsclient/RealmsMainScreen/access$900 (Lcom/mojang/realmsclient/RealmsMainScreen;)Lnet/minecraft/client/Minecraft; +MD: com/mojang/realmsclient/RealmsMainScreen/m_86656_ (Lcom/mojang/realmsclient/dto/RealmsServer;)V com/mojang/realmsclient/RealmsMainScreen/configureClicked (Lcom/mojang/realmsclient/dto/RealmsServer;)V +MD: com/mojang/realmsclient/RealmsMainScreen/m_86658_ (Lnet/minecraft/client/gui/components/Button;)V com/mojang/realmsclient/RealmsMainScreen/lambda$addFooterButtons$6 (Lnet/minecraft/client/gui/components/Button;)V +MD: com/mojang/realmsclient/RealmsMainScreen/m_86660_ ()Lcom/mojang/realmsclient/RealmsMainScreen; com/mojang/realmsclient/RealmsMainScreen/newScreen ()Lcom/mojang/realmsclient/RealmsMainScreen; +MD: com/mojang/realmsclient/RealmsMainScreen/m_86667_ (Lcom/mojang/realmsclient/RealmsMainScreen;)Lnet/minecraft/client/Minecraft; com/mojang/realmsclient/RealmsMainScreen/access$1000 (Lcom/mojang/realmsclient/RealmsMainScreen;)Lnet/minecraft/client/Minecraft; +MD: com/mojang/realmsclient/RealmsMainScreen/m_86669_ (Lcom/mojang/realmsclient/dto/RealmsServer;)V com/mojang/realmsclient/RealmsMainScreen/leaveClicked (Lcom/mojang/realmsclient/dto/RealmsServer;)V +MD: com/mojang/realmsclient/RealmsMainScreen/m_86671_ (Lnet/minecraft/client/gui/components/Button;)V com/mojang/realmsclient/RealmsMainScreen/lambda$addFooterButtons$7 (Lnet/minecraft/client/gui/components/Button;)V +MD: com/mojang/realmsclient/RealmsMainScreen/m_86674_ (Lcom/mojang/realmsclient/RealmsMainScreen;)Lnet/minecraft/client/Minecraft; com/mojang/realmsclient/RealmsMainScreen/access$1100 (Lcom/mojang/realmsclient/RealmsMainScreen;)Lnet/minecraft/client/Minecraft; +MD: com/mojang/realmsclient/RealmsMainScreen/m_86676_ (Lcom/mojang/realmsclient/dto/RealmsServer;)V com/mojang/realmsclient/RealmsMainScreen/removeServer (Lcom/mojang/realmsclient/dto/RealmsServer;)V +MD: com/mojang/realmsclient/RealmsMainScreen/m_86678_ (Lnet/minecraft/client/gui/components/Button;)V com/mojang/realmsclient/RealmsMainScreen/lambda$addFooterButtons$9 (Lnet/minecraft/client/gui/components/Button;)V +MD: com/mojang/realmsclient/RealmsMainScreen/m_86681_ (Lcom/mojang/realmsclient/RealmsMainScreen;)Lnet/minecraft/client/Minecraft; com/mojang/realmsclient/RealmsMainScreen/access$1200 (Lcom/mojang/realmsclient/RealmsMainScreen;)Lnet/minecraft/client/Minecraft; +MD: com/mojang/realmsclient/RealmsMainScreen/m_86683_ (Lcom/mojang/realmsclient/dto/RealmsServer;)Z com/mojang/realmsclient/RealmsMainScreen/isSelfOwnedServer (Lcom/mojang/realmsclient/dto/RealmsServer;)Z +MD: com/mojang/realmsclient/RealmsMainScreen/m_86688_ (Lcom/mojang/realmsclient/dto/RealmsServer;)Z com/mojang/realmsclient/RealmsMainScreen/isSelfOwnedNonExpiredServer (Lcom/mojang/realmsclient/dto/RealmsServer;)Z +MD: com/mojang/realmsclient/RealmsMainScreen/m_88315_ (Lnet/minecraft/client/gui/GuiGraphics;IIF)V com/mojang/realmsclient/RealmsMainScreen/render (Lnet/minecraft/client/gui/GuiGraphics;IIF)V +MD: com/mojang/realmsclient/RealmsMainScreen$1/ (Lcom/mojang/realmsclient/RealmsMainScreen;Ljava/lang/String;)V com/mojang/realmsclient/RealmsMainScreen$1/ (Lcom/mojang/realmsclient/RealmsMainScreen;Ljava/lang/String;)V +MD: com/mojang/realmsclient/RealmsMainScreen$1/m_231260_ (Lcom/mojang/realmsclient/exception/RealmsServiceException;)V com/mojang/realmsclient/RealmsMainScreen$1/lambda$run$2 (Lcom/mojang/realmsclient/exception/RealmsServiceException;)V +MD: com/mojang/realmsclient/RealmsMainScreen$1/m_86740_ ()V com/mojang/realmsclient/RealmsMainScreen$1/lambda$run$1 ()V +MD: com/mojang/realmsclient/RealmsMainScreen$1/m_86741_ ()V com/mojang/realmsclient/RealmsMainScreen$1/lambda$run$0 ()V +MD: com/mojang/realmsclient/RealmsMainScreen$1/run ()V com/mojang/realmsclient/RealmsMainScreen$1/run ()V +MD: com/mojang/realmsclient/RealmsMainScreen$2/ (Lcom/mojang/realmsclient/RealmsMainScreen;Ljava/lang/String;)V com/mojang/realmsclient/RealmsMainScreen$2/ (Lcom/mojang/realmsclient/RealmsMainScreen;Ljava/lang/String;)V +MD: com/mojang/realmsclient/RealmsMainScreen$2/m_86747_ ()V com/mojang/realmsclient/RealmsMainScreen$2/lambda$run$0 ()V +MD: com/mojang/realmsclient/RealmsMainScreen$2/m_86748_ (Lcom/mojang/realmsclient/exception/RealmsServiceException;)V com/mojang/realmsclient/RealmsMainScreen$2/lambda$run$1 (Lcom/mojang/realmsclient/exception/RealmsServiceException;)V +MD: com/mojang/realmsclient/RealmsMainScreen$2/run ()V com/mojang/realmsclient/RealmsMainScreen$2/run ()V +MD: com/mojang/realmsclient/RealmsMainScreen$3/ (Lcom/mojang/realmsclient/RealmsMainScreen;Ljava/lang/String;)V com/mojang/realmsclient/RealmsMainScreen$3/ (Lcom/mojang/realmsclient/RealmsMainScreen;Ljava/lang/String;)V +MD: com/mojang/realmsclient/RealmsMainScreen$3/run ()V com/mojang/realmsclient/RealmsMainScreen$3/run ()V +MD: com/mojang/realmsclient/RealmsMainScreen$4/ (Lcom/mojang/realmsclient/RealmsMainScreen;Ljava/lang/String;)V com/mojang/realmsclient/RealmsMainScreen$4/ (Lcom/mojang/realmsclient/RealmsMainScreen;Ljava/lang/String;)V +MD: com/mojang/realmsclient/RealmsMainScreen$4/run ()V com/mojang/realmsclient/RealmsMainScreen$4/run ()V +MD: com/mojang/realmsclient/RealmsMainScreen$5/ (Lcom/mojang/realmsclient/RealmsMainScreen;Ljava/lang/String;Lcom/mojang/realmsclient/dto/RealmsServer;)V com/mojang/realmsclient/RealmsMainScreen$5/ (Lcom/mojang/realmsclient/RealmsMainScreen;Ljava/lang/String;Lcom/mojang/realmsclient/dto/RealmsServer;)V +MD: com/mojang/realmsclient/RealmsMainScreen$5/m_86765_ (Lcom/mojang/realmsclient/dto/RealmsServer;)V com/mojang/realmsclient/RealmsMainScreen$5/lambda$run$0 (Lcom/mojang/realmsclient/dto/RealmsServer;)V +MD: com/mojang/realmsclient/RealmsMainScreen$5/m_86767_ (Lcom/mojang/realmsclient/exception/RealmsServiceException;)V com/mojang/realmsclient/RealmsMainScreen$5/lambda$run$1 (Lcom/mojang/realmsclient/exception/RealmsServiceException;)V +MD: com/mojang/realmsclient/RealmsMainScreen$5/run ()V com/mojang/realmsclient/RealmsMainScreen$5/run ()V +MD: com/mojang/realmsclient/RealmsMainScreen$ButtonEntry/ (Lcom/mojang/realmsclient/RealmsMainScreen;Lnet/minecraft/client/gui/components/Button;)V com/mojang/realmsclient/RealmsMainScreen$ButtonEntry/ (Lcom/mojang/realmsclient/RealmsMainScreen;Lnet/minecraft/client/gui/components/Button;)V +MD: com/mojang/realmsclient/RealmsMainScreen$ButtonEntry/m_142172_ ()Lnet/minecraft/network/chat/Component; com/mojang/realmsclient/RealmsMainScreen$ButtonEntry/getNarration ()Lnet/minecraft/network/chat/Component; +MD: com/mojang/realmsclient/RealmsMainScreen$ButtonEntry/m_6311_ (Lnet/minecraft/client/gui/GuiGraphics;IIIIIIIZF)V com/mojang/realmsclient/RealmsMainScreen$ButtonEntry/render (Lnet/minecraft/client/gui/GuiGraphics;IIIIIIIZF)V +MD: com/mojang/realmsclient/RealmsMainScreen$ButtonEntry/m_6375_ (DDI)Z com/mojang/realmsclient/RealmsMainScreen$ButtonEntry/mouseClicked (DDI)Z +MD: com/mojang/realmsclient/RealmsMainScreen$ButtonEntry/m_7933_ (III)Z com/mojang/realmsclient/RealmsMainScreen$ButtonEntry/keyPressed (III)Z +MD: com/mojang/realmsclient/RealmsMainScreen$CloseButton/ (Lcom/mojang/realmsclient/RealmsMainScreen;)V com/mojang/realmsclient/RealmsMainScreen$CloseButton/ (Lcom/mojang/realmsclient/RealmsMainScreen;)V +MD: com/mojang/realmsclient/RealmsMainScreen$CloseButton/m_86773_ (Lcom/mojang/realmsclient/RealmsMainScreen;Lnet/minecraft/client/gui/components/Button;)V com/mojang/realmsclient/RealmsMainScreen$CloseButton/lambda$new$0 (Lcom/mojang/realmsclient/RealmsMainScreen;Lnet/minecraft/client/gui/components/Button;)V +MD: com/mojang/realmsclient/RealmsMainScreen$CrossButton/ (Lnet/minecraft/client/gui/components/Button$OnPress;Lnet/minecraft/network/chat/Component;)V com/mojang/realmsclient/RealmsMainScreen$CrossButton/ (Lnet/minecraft/client/gui/components/Button$OnPress;Lnet/minecraft/network/chat/Component;)V +MD: com/mojang/realmsclient/RealmsMainScreen$CrossButton/ (IILnet/minecraft/client/gui/components/Button$OnPress;Lnet/minecraft/network/chat/Component;)V com/mojang/realmsclient/RealmsMainScreen$CrossButton/ (IILnet/minecraft/client/gui/components/Button$OnPress;Lnet/minecraft/network/chat/Component;)V +MD: com/mojang/realmsclient/RealmsMainScreen$CrossButton/m_87963_ (Lnet/minecraft/client/gui/GuiGraphics;IIF)V com/mojang/realmsclient/RealmsMainScreen$CrossButton/renderWidget (Lnet/minecraft/client/gui/GuiGraphics;IIF)V +MD: com/mojang/realmsclient/RealmsMainScreen$Entry/ (Lcom/mojang/realmsclient/RealmsMainScreen;)V com/mojang/realmsclient/RealmsMainScreen$Entry/ (Lcom/mojang/realmsclient/RealmsMainScreen;)V +MD: com/mojang/realmsclient/RealmsMainScreen$Entry/m_183377_ ()Lcom/mojang/realmsclient/dto/RealmsServer; com/mojang/realmsclient/RealmsMainScreen$Entry/getServer ()Lcom/mojang/realmsclient/dto/RealmsServer; +MD: com/mojang/realmsclient/RealmsMainScreen$NewsButton/ (Lcom/mojang/realmsclient/RealmsMainScreen;)V com/mojang/realmsclient/RealmsMainScreen$NewsButton/ (Lcom/mojang/realmsclient/RealmsMainScreen;)V +MD: com/mojang/realmsclient/RealmsMainScreen$NewsButton/m_273960_ (Lcom/mojang/realmsclient/RealmsMainScreen;Lnet/minecraft/client/gui/components/Button;)V com/mojang/realmsclient/RealmsMainScreen$NewsButton/lambda$new$0 (Lcom/mojang/realmsclient/RealmsMainScreen;Lnet/minecraft/client/gui/components/Button;)V +MD: com/mojang/realmsclient/RealmsMainScreen$NewsButton/m_87963_ (Lnet/minecraft/client/gui/GuiGraphics;IIF)V com/mojang/realmsclient/RealmsMainScreen$NewsButton/renderWidget (Lnet/minecraft/client/gui/GuiGraphics;IIF)V +MD: com/mojang/realmsclient/RealmsMainScreen$NotificationMessageEntry/ (Lcom/mojang/realmsclient/RealmsMainScreen;Lnet/minecraft/network/chat/Component;Lcom/mojang/realmsclient/dto/RealmsNotification;)V com/mojang/realmsclient/RealmsMainScreen$NotificationMessageEntry/ (Lcom/mojang/realmsclient/RealmsMainScreen;Lnet/minecraft/network/chat/Component;Lcom/mojang/realmsclient/dto/RealmsNotification;)V +MD: com/mojang/realmsclient/RealmsMainScreen$NotificationMessageEntry/m_142172_ ()Lnet/minecraft/network/chat/Component; com/mojang/realmsclient/RealmsMainScreen$NotificationMessageEntry/getNarration ()Lnet/minecraft/network/chat/Component; +MD: com/mojang/realmsclient/RealmsMainScreen$NotificationMessageEntry/m_274357_ (I)V com/mojang/realmsclient/RealmsMainScreen$NotificationMessageEntry/updateEntryWidth (I)V +MD: com/mojang/realmsclient/RealmsMainScreen$NotificationMessageEntry/m_274379_ (Lcom/mojang/realmsclient/dto/RealmsNotification;Lnet/minecraft/client/gui/components/Button;)V com/mojang/realmsclient/RealmsMainScreen$NotificationMessageEntry/lambda$new$0 (Lcom/mojang/realmsclient/dto/RealmsNotification;Lnet/minecraft/client/gui/components/Button;)V +MD: com/mojang/realmsclient/RealmsMainScreen$NotificationMessageEntry/m_274437_ (Lnet/minecraft/client/gui/GuiGraphics;IIIIIIIZF)V com/mojang/realmsclient/RealmsMainScreen$NotificationMessageEntry/renderBack (Lnet/minecraft/client/gui/GuiGraphics;IIIIIIIZF)V +MD: com/mojang/realmsclient/RealmsMainScreen$NotificationMessageEntry/m_274589_ (I)V com/mojang/realmsclient/RealmsMainScreen$NotificationMessageEntry/refreshLayout (I)V +MD: com/mojang/realmsclient/RealmsMainScreen$NotificationMessageEntry/m_279670_ (Lnet/minecraft/client/gui/GuiGraphics;IIFLnet/minecraft/client/gui/components/AbstractWidget;)V com/mojang/realmsclient/RealmsMainScreen$NotificationMessageEntry/lambda$render$1 (Lnet/minecraft/client/gui/GuiGraphics;IIFLnet/minecraft/client/gui/components/AbstractWidget;)V +MD: com/mojang/realmsclient/RealmsMainScreen$NotificationMessageEntry/m_6311_ (Lnet/minecraft/client/gui/GuiGraphics;IIIIIIIZF)V com/mojang/realmsclient/RealmsMainScreen$NotificationMessageEntry/render (Lnet/minecraft/client/gui/GuiGraphics;IIIIIIIZF)V +MD: com/mojang/realmsclient/RealmsMainScreen$NotificationMessageEntry/m_6375_ (DDI)Z com/mojang/realmsclient/RealmsMainScreen$NotificationMessageEntry/mouseClicked (DDI)Z +MD: com/mojang/realmsclient/RealmsMainScreen$NotificationMessageEntry/m_7933_ (III)Z com/mojang/realmsclient/RealmsMainScreen$NotificationMessageEntry/keyPressed (III)Z +MD: com/mojang/realmsclient/RealmsMainScreen$PendingInvitesButton/ ()V com/mojang/realmsclient/RealmsMainScreen$PendingInvitesButton/ ()V +MD: com/mojang/realmsclient/RealmsMainScreen$PendingInvitesButton/ (Lcom/mojang/realmsclient/RealmsMainScreen;)V com/mojang/realmsclient/RealmsMainScreen$PendingInvitesButton/ (Lcom/mojang/realmsclient/RealmsMainScreen;)V +MD: com/mojang/realmsclient/RealmsMainScreen$PendingInvitesButton/m_278766_ (Lcom/mojang/realmsclient/RealmsMainScreen;Lnet/minecraft/client/gui/components/Button;)V com/mojang/realmsclient/RealmsMainScreen$PendingInvitesButton/lambda$new$0 (Lcom/mojang/realmsclient/RealmsMainScreen;Lnet/minecraft/client/gui/components/Button;)V +MD: com/mojang/realmsclient/RealmsMainScreen$PendingInvitesButton/m_280587_ (Lnet/minecraft/client/gui/GuiGraphics;)V com/mojang/realmsclient/RealmsMainScreen$PendingInvitesButton/drawInvitations (Lnet/minecraft/client/gui/GuiGraphics;)V +MD: com/mojang/realmsclient/RealmsMainScreen$PendingInvitesButton/m_86821_ ()V com/mojang/realmsclient/RealmsMainScreen$PendingInvitesButton/tick ()V +MD: com/mojang/realmsclient/RealmsMainScreen$PendingInvitesButton/m_87963_ (Lnet/minecraft/client/gui/GuiGraphics;IIF)V com/mojang/realmsclient/RealmsMainScreen$PendingInvitesButton/renderWidget (Lnet/minecraft/client/gui/GuiGraphics;IIF)V +MD: com/mojang/realmsclient/RealmsMainScreen$RealmSelectionList/ (Lcom/mojang/realmsclient/RealmsMainScreen;)V com/mojang/realmsclient/RealmsMainScreen$RealmSelectionList/ (Lcom/mojang/realmsclient/RealmsMainScreen;)V +MD: com/mojang/realmsclient/RealmsMainScreen$RealmSelectionList/m_5759_ ()I com/mojang/realmsclient/RealmsMainScreen$RealmSelectionList/getRowWidth ()I +MD: com/mojang/realmsclient/RealmsMainScreen$RealmSelectionList/m_5775_ ()I com/mojang/realmsclient/RealmsMainScreen$RealmSelectionList/getMaxPosition ()I +MD: com/mojang/realmsclient/RealmsMainScreen$RealmSelectionList/m_6987_ (Lnet/minecraft/client/gui/components/AbstractSelectionList$Entry;)V com/mojang/realmsclient/RealmsMainScreen$RealmSelectionList/setSelected (Lnet/minecraft/client/gui/components/AbstractSelectionList$Entry;)V +MD: com/mojang/realmsclient/RealmsMainScreen$RealmSelectionList/m_6987_ (Lcom/mojang/realmsclient/RealmsMainScreen$Entry;)V com/mojang/realmsclient/RealmsMainScreen$RealmSelectionList/setSelected (Lcom/mojang/realmsclient/RealmsMainScreen$Entry;)V +MD: com/mojang/realmsclient/RealmsMainScreen$RealmsCall/m_274420_ (Lcom/mojang/realmsclient/client/RealmsClient;)Ljava/lang/Object; com/mojang/realmsclient/RealmsMainScreen$RealmsCall/request (Lcom/mojang/realmsclient/client/RealmsClient;)Ljava/lang/Object; +MD: com/mojang/realmsclient/RealmsMainScreen$ServerEntry/ (Lcom/mojang/realmsclient/RealmsMainScreen;Lcom/mojang/realmsclient/dto/RealmsServer;)V com/mojang/realmsclient/RealmsMainScreen$ServerEntry/ (Lcom/mojang/realmsclient/RealmsMainScreen;Lcom/mojang/realmsclient/dto/RealmsServer;)V +MD: com/mojang/realmsclient/RealmsMainScreen$ServerEntry/m_142172_ ()Lnet/minecraft/network/chat/Component; com/mojang/realmsclient/RealmsMainScreen$ServerEntry/getNarration ()Lnet/minecraft/network/chat/Component; +MD: com/mojang/realmsclient/RealmsMainScreen$ServerEntry/m_183377_ ()Lcom/mojang/realmsclient/dto/RealmsServer; com/mojang/realmsclient/RealmsMainScreen$ServerEntry/getServer ()Lcom/mojang/realmsclient/dto/RealmsServer; +MD: com/mojang/realmsclient/RealmsMainScreen$ServerEntry/m_271912_ (Lcom/mojang/realmsclient/dto/RealmsServer;Lnet/minecraft/client/gui/GuiGraphics;IIIIII)V com/mojang/realmsclient/RealmsMainScreen$ServerEntry/renderStatusLights (Lcom/mojang/realmsclient/dto/RealmsServer;Lnet/minecraft/client/gui/GuiGraphics;IIIIII)V +MD: com/mojang/realmsclient/RealmsMainScreen$ServerEntry/m_280176_ (Lcom/mojang/realmsclient/dto/RealmsServer;Lnet/minecraft/client/gui/GuiGraphics;IIII)V com/mojang/realmsclient/RealmsMainScreen$ServerEntry/renderLegacy (Lcom/mojang/realmsclient/dto/RealmsServer;Lnet/minecraft/client/gui/GuiGraphics;IIII)V +MD: com/mojang/realmsclient/RealmsMainScreen$ServerEntry/m_280291_ (Lcom/mojang/realmsclient/dto/RealmsServer;Lnet/minecraft/client/gui/GuiGraphics;IIII)V com/mojang/realmsclient/RealmsMainScreen$ServerEntry/renderMcoServerItem (Lcom/mojang/realmsclient/dto/RealmsServer;Lnet/minecraft/client/gui/GuiGraphics;IIII)V +MD: com/mojang/realmsclient/RealmsMainScreen$ServerEntry/m_6311_ (Lnet/minecraft/client/gui/GuiGraphics;IIIIIIIZF)V com/mojang/realmsclient/RealmsMainScreen$ServerEntry/render (Lnet/minecraft/client/gui/GuiGraphics;IIIIIIIZF)V +MD: com/mojang/realmsclient/RealmsMainScreen$ServerEntry/m_6375_ (DDI)Z com/mojang/realmsclient/RealmsMainScreen$ServerEntry/mouseClicked (DDI)Z +MD: com/mojang/realmsclient/RealmsMainScreen$ServerEntry/m_7933_ (III)Z com/mojang/realmsclient/RealmsMainScreen$ServerEntry/keyPressed (III)Z +MD: com/mojang/realmsclient/RealmsMainScreen$TrialEntry/ (Lcom/mojang/realmsclient/RealmsMainScreen;)V com/mojang/realmsclient/RealmsMainScreen$TrialEntry/ (Lcom/mojang/realmsclient/RealmsMainScreen;)V +MD: com/mojang/realmsclient/RealmsMainScreen$TrialEntry/m_142172_ ()Lnet/minecraft/network/chat/Component; com/mojang/realmsclient/RealmsMainScreen$TrialEntry/getNarration ()Lnet/minecraft/network/chat/Component; +MD: com/mojang/realmsclient/RealmsMainScreen$TrialEntry/m_6311_ (Lnet/minecraft/client/gui/GuiGraphics;IIIIIIIZF)V com/mojang/realmsclient/RealmsMainScreen$TrialEntry/render (Lnet/minecraft/client/gui/GuiGraphics;IIIIIIIZF)V +MD: com/mojang/realmsclient/RealmsMainScreen$TrialEntry/m_6375_ (DDI)Z com/mojang/realmsclient/RealmsMainScreen$TrialEntry/mouseClicked (DDI)Z +MD: com/mojang/realmsclient/RealmsMainScreen$TrialEntry/m_86913_ (Lnet/minecraft/client/gui/GuiGraphics;IIIII)V com/mojang/realmsclient/RealmsMainScreen$TrialEntry/renderTrialItem (Lnet/minecraft/client/gui/GuiGraphics;IIIII)V +MD: com/mojang/realmsclient/Unit/ ()V com/mojang/realmsclient/Unit/ ()V +MD: com/mojang/realmsclient/Unit/ (Ljava/lang/String;I)V com/mojang/realmsclient/Unit/ (Ljava/lang/String;I)V +MD: com/mojang/realmsclient/Unit/m_167232_ ()[Lcom/mojang/realmsclient/Unit; com/mojang/realmsclient/Unit/$values ()[Lcom/mojang/realmsclient/Unit; +MD: com/mojang/realmsclient/Unit/m_86940_ (J)Lcom/mojang/realmsclient/Unit; com/mojang/realmsclient/Unit/getLargest (J)Lcom/mojang/realmsclient/Unit; +MD: com/mojang/realmsclient/Unit/m_86942_ (JLcom/mojang/realmsclient/Unit;)D com/mojang/realmsclient/Unit/convertTo (JLcom/mojang/realmsclient/Unit;)D +MD: com/mojang/realmsclient/Unit/m_86945_ (J)Ljava/lang/String; com/mojang/realmsclient/Unit/humanReadable (J)Ljava/lang/String; +MD: com/mojang/realmsclient/Unit/m_86947_ (JLcom/mojang/realmsclient/Unit;)Ljava/lang/String; com/mojang/realmsclient/Unit/humanReadable (JLcom/mojang/realmsclient/Unit;)Ljava/lang/String; +MD: com/mojang/realmsclient/Unit/valueOf (Ljava/lang/String;)Lcom/mojang/realmsclient/Unit; com/mojang/realmsclient/Unit/valueOf (Ljava/lang/String;)Lcom/mojang/realmsclient/Unit; +MD: com/mojang/realmsclient/Unit/values ()[Lcom/mojang/realmsclient/Unit; com/mojang/realmsclient/Unit/values ()[Lcom/mojang/realmsclient/Unit; +MD: com/mojang/realmsclient/client/FileDownload/ ()V com/mojang/realmsclient/client/FileDownload/ ()V +MD: com/mojang/realmsclient/client/FileDownload/ ()V com/mojang/realmsclient/client/FileDownload/ ()V +MD: com/mojang/realmsclient/client/FileDownload/m_86966_ ()V com/mojang/realmsclient/client/FileDownload/cancel ()V +MD: com/mojang/realmsclient/client/FileDownload/m_86977_ (Lcom/mojang/realmsclient/dto/WorldDownload;Lcom/mojang/realmsclient/gui/screens/RealmsDownloadLatestWorldScreen$DownloadStatus;Ljava/lang/String;Lnet/minecraft/world/level/storage/LevelStorageSource;)V com/mojang/realmsclient/client/FileDownload/lambda$download$0 (Lcom/mojang/realmsclient/dto/WorldDownload;Lcom/mojang/realmsclient/gui/screens/RealmsDownloadLatestWorldScreen$DownloadStatus;Ljava/lang/String;Lnet/minecraft/world/level/storage/LevelStorageSource;)V +MD: com/mojang/realmsclient/client/FileDownload/m_86982_ (Lcom/mojang/realmsclient/dto/WorldDownload;Ljava/lang/String;Lcom/mojang/realmsclient/gui/screens/RealmsDownloadLatestWorldScreen$DownloadStatus;Lnet/minecraft/world/level/storage/LevelStorageSource;)V com/mojang/realmsclient/client/FileDownload/download (Lcom/mojang/realmsclient/dto/WorldDownload;Ljava/lang/String;Lcom/mojang/realmsclient/gui/screens/RealmsDownloadLatestWorldScreen$DownloadStatus;Lnet/minecraft/world/level/storage/LevelStorageSource;)V +MD: com/mojang/realmsclient/client/FileDownload/m_86987_ (Ljava/io/File;)V com/mojang/realmsclient/client/FileDownload/deletePlayerTag (Ljava/io/File;)V +MD: com/mojang/realmsclient/client/FileDownload/m_86989_ (Ljava/lang/String;)J com/mojang/realmsclient/client/FileDownload/contentLength (Ljava/lang/String;)J +MD: com/mojang/realmsclient/client/FileDownload/m_86991_ (Ljava/lang/String;Ljava/io/File;Lnet/minecraft/world/level/storage/LevelStorageSource;)V com/mojang/realmsclient/client/FileDownload/untarGzipArchive (Ljava/lang/String;Ljava/io/File;Lnet/minecraft/world/level/storage/LevelStorageSource;)V +MD: com/mojang/realmsclient/client/FileDownload/m_86995_ ()Z com/mojang/realmsclient/client/FileDownload/isFinished ()Z +MD: com/mojang/realmsclient/client/FileDownload/m_87001_ (Ljava/lang/String;)Ljava/lang/String; com/mojang/realmsclient/client/FileDownload/findAvailableFolderName (Ljava/lang/String;)Ljava/lang/String; +MD: com/mojang/realmsclient/client/FileDownload/m_87003_ ()Z com/mojang/realmsclient/client/FileDownload/isError ()Z +MD: com/mojang/realmsclient/client/FileDownload/m_87009_ ()Z com/mojang/realmsclient/client/FileDownload/isExtracting ()Z +MD: com/mojang/realmsclient/client/FileDownload$DownloadCountingOutputStream/ (Ljava/io/OutputStream;)V com/mojang/realmsclient/client/FileDownload$DownloadCountingOutputStream/ (Ljava/io/OutputStream;)V +MD: com/mojang/realmsclient/client/FileDownload$DownloadCountingOutputStream/afterWrite (I)V com/mojang/realmsclient/client/FileDownload$DownloadCountingOutputStream/afterWrite (I)V +MD: com/mojang/realmsclient/client/FileDownload$DownloadCountingOutputStream/m_87016_ (Ljava/awt/event/ActionListener;)V com/mojang/realmsclient/client/FileDownload$DownloadCountingOutputStream/setListener (Ljava/awt/event/ActionListener;)V +MD: com/mojang/realmsclient/client/FileDownload$ProgressListener/ (Lcom/mojang/realmsclient/client/FileDownload;Ljava/lang/String;Ljava/io/File;Lnet/minecraft/world/level/storage/LevelStorageSource;Lcom/mojang/realmsclient/gui/screens/RealmsDownloadLatestWorldScreen$DownloadStatus;)V com/mojang/realmsclient/client/FileDownload$ProgressListener/ (Lcom/mojang/realmsclient/client/FileDownload;Ljava/lang/String;Ljava/io/File;Lnet/minecraft/world/level/storage/LevelStorageSource;Lcom/mojang/realmsclient/gui/screens/RealmsDownloadLatestWorldScreen$DownloadStatus;)V +MD: com/mojang/realmsclient/client/FileDownload$ProgressListener/actionPerformed (Ljava/awt/event/ActionEvent;)V com/mojang/realmsclient/client/FileDownload$ProgressListener/actionPerformed (Ljava/awt/event/ActionEvent;)V +MD: com/mojang/realmsclient/client/FileDownload$ResourcePackProgressListener/ (Lcom/mojang/realmsclient/client/FileDownload;Ljava/io/File;Lcom/mojang/realmsclient/gui/screens/RealmsDownloadLatestWorldScreen$DownloadStatus;Lcom/mojang/realmsclient/dto/WorldDownload;)V com/mojang/realmsclient/client/FileDownload$ResourcePackProgressListener/ (Lcom/mojang/realmsclient/client/FileDownload;Ljava/io/File;Lcom/mojang/realmsclient/gui/screens/RealmsDownloadLatestWorldScreen$DownloadStatus;Lcom/mojang/realmsclient/dto/WorldDownload;)V +MD: com/mojang/realmsclient/client/FileDownload$ResourcePackProgressListener/actionPerformed (Ljava/awt/event/ActionEvent;)V com/mojang/realmsclient/client/FileDownload$ResourcePackProgressListener/actionPerformed (Ljava/awt/event/ActionEvent;)V +MD: com/mojang/realmsclient/client/FileUpload/ ()V com/mojang/realmsclient/client/FileUpload/ ()V +MD: com/mojang/realmsclient/client/FileUpload/ (Ljava/io/File;JILcom/mojang/realmsclient/dto/UploadInfo;Lnet/minecraft/client/User;Ljava/lang/String;Lcom/mojang/realmsclient/client/UploadStatus;)V com/mojang/realmsclient/client/FileUpload/ (Ljava/io/File;JILcom/mojang/realmsclient/dto/UploadInfo;Lnet/minecraft/client/User;Ljava/lang/String;Lcom/mojang/realmsclient/client/UploadStatus;)V +MD: com/mojang/realmsclient/client/FileUpload/m_87078_ ()V com/mojang/realmsclient/client/FileUpload/cancel ()V +MD: com/mojang/realmsclient/client/FileUpload/m_87079_ (I)Lcom/mojang/realmsclient/gui/screens/UploadResult; com/mojang/realmsclient/client/FileUpload/requestUpload (I)Lcom/mojang/realmsclient/gui/screens/UploadResult; +MD: com/mojang/realmsclient/client/FileUpload/m_87081_ (JI)Z com/mojang/realmsclient/client/FileUpload/shouldRetry (JI)Z +MD: com/mojang/realmsclient/client/FileUpload/m_87084_ (Ljava/util/function/Consumer;)V com/mojang/realmsclient/client/FileUpload/upload (Ljava/util/function/Consumer;)V +MD: com/mojang/realmsclient/client/FileUpload/m_87086_ (Lorg/apache/http/HttpResponse;)J com/mojang/realmsclient/client/FileUpload/getRetryDelaySeconds (Lorg/apache/http/HttpResponse;)J +MD: com/mojang/realmsclient/client/FileUpload/m_87088_ (Lorg/apache/http/HttpResponse;Lcom/mojang/realmsclient/gui/screens/UploadResult$Builder;)V com/mojang/realmsclient/client/FileUpload/handleResponse (Lorg/apache/http/HttpResponse;Lcom/mojang/realmsclient/gui/screens/UploadResult$Builder;)V +MD: com/mojang/realmsclient/client/FileUpload/m_87091_ (Lorg/apache/http/client/methods/HttpPost;)V com/mojang/realmsclient/client/FileUpload/setupRequest (Lorg/apache/http/client/methods/HttpPost;)V +MD: com/mojang/realmsclient/client/FileUpload/m_87093_ (Lorg/apache/http/client/methods/HttpPost;Lorg/apache/http/impl/client/CloseableHttpClient;)V com/mojang/realmsclient/client/FileUpload/cleanup (Lorg/apache/http/client/methods/HttpPost;Lorg/apache/http/impl/client/CloseableHttpClient;)V +MD: com/mojang/realmsclient/client/FileUpload/m_87096_ ()Z com/mojang/realmsclient/client/FileUpload/isFinished ()Z +MD: com/mojang/realmsclient/client/FileUpload/m_87097_ (JI)Lcom/mojang/realmsclient/gui/screens/UploadResult; com/mojang/realmsclient/client/FileUpload/retryUploadAfter (JI)Lcom/mojang/realmsclient/gui/screens/UploadResult; +MD: com/mojang/realmsclient/client/FileUpload/m_87100_ ()Lcom/mojang/realmsclient/gui/screens/UploadResult; com/mojang/realmsclient/client/FileUpload/lambda$upload$0 ()Lcom/mojang/realmsclient/gui/screens/UploadResult; +MD: com/mojang/realmsclient/client/FileUpload$CustomInputStreamEntity/ (Ljava/io/InputStream;JLcom/mojang/realmsclient/client/UploadStatus;)V com/mojang/realmsclient/client/FileUpload$CustomInputStreamEntity/ (Ljava/io/InputStream;JLcom/mojang/realmsclient/client/UploadStatus;)V +MD: com/mojang/realmsclient/client/FileUpload$CustomInputStreamEntity/writeTo (Ljava/io/OutputStream;)V com/mojang/realmsclient/client/FileUpload$CustomInputStreamEntity/writeTo (Ljava/io/OutputStream;)V +MD: com/mojang/realmsclient/client/Ping/ ()V com/mojang/realmsclient/client/Ping/ ()V +MD: com/mojang/realmsclient/client/Ping/m_87125_ ()Ljava/util/List; com/mojang/realmsclient/client/Ping/pingAllRegions ()Ljava/util/List; +MD: com/mojang/realmsclient/client/Ping/m_87126_ (Ljava/lang/String;)I com/mojang/realmsclient/client/Ping/ping (Ljava/lang/String;)I +MD: com/mojang/realmsclient/client/Ping/m_87130_ ([Lcom/mojang/realmsclient/client/Ping$Region;)Ljava/util/List; com/mojang/realmsclient/client/Ping/ping ([Lcom/mojang/realmsclient/client/Ping$Region;)Ljava/util/List; +MD: com/mojang/realmsclient/client/Ping/m_87132_ ()J com/mojang/realmsclient/client/Ping/now ()J +MD: com/mojang/realmsclient/client/Ping$Region/ ()V com/mojang/realmsclient/client/Ping$Region/ ()V +MD: com/mojang/realmsclient/client/Ping$Region/ (Ljava/lang/String;ILjava/lang/String;Ljava/lang/String;)V com/mojang/realmsclient/client/Ping$Region/ (Ljava/lang/String;ILjava/lang/String;Ljava/lang/String;)V +MD: com/mojang/realmsclient/client/Ping$Region/m_167236_ ()[Lcom/mojang/realmsclient/client/Ping$Region; com/mojang/realmsclient/client/Ping$Region/$values ()[Lcom/mojang/realmsclient/client/Ping$Region; +MD: com/mojang/realmsclient/client/Ping$Region/valueOf (Ljava/lang/String;)Lcom/mojang/realmsclient/client/Ping$Region; com/mojang/realmsclient/client/Ping$Region/valueOf (Ljava/lang/String;)Lcom/mojang/realmsclient/client/Ping$Region; +MD: com/mojang/realmsclient/client/Ping$Region/values ()[Lcom/mojang/realmsclient/client/Ping$Region; com/mojang/realmsclient/client/Ping$Region/values ()[Lcom/mojang/realmsclient/client/Ping$Region; +MD: com/mojang/realmsclient/client/RealmsClient/ ()V com/mojang/realmsclient/client/RealmsClient/ ()V +MD: com/mojang/realmsclient/client/RealmsClient/ (Ljava/lang/String;Ljava/lang/String;Lnet/minecraft/client/Minecraft;)V com/mojang/realmsclient/client/RealmsClient/ (Ljava/lang/String;Ljava/lang/String;Lnet/minecraft/client/Minecraft;)V +MD: com/mojang/realmsclient/client/RealmsClient/m_167275_ (JLcom/mojang/realmsclient/util/WorldGenerationInfo;)Ljava/lang/Boolean; com/mojang/realmsclient/client/RealmsClient/resetWorldWithSeed (JLcom/mojang/realmsclient/util/WorldGenerationInfo;)Ljava/lang/Boolean; +MD: com/mojang/realmsclient/client/RealmsClient/m_167278_ (J)Lcom/mojang/realmsclient/dto/ServerActivityList; com/mojang/realmsclient/client/RealmsClient/getActivity (J)Lcom/mojang/realmsclient/dto/ServerActivityList; +MD: com/mojang/realmsclient/client/RealmsClient/m_200936_ (I)Ljava/lang/String; com/mojang/realmsclient/client/RealmsClient/getHttpCodeDescription (I)Ljava/lang/String; +MD: com/mojang/realmsclient/client/RealmsClient/m_239151_ (Lnet/minecraft/client/Minecraft;)Lcom/mojang/realmsclient/client/RealmsClient; com/mojang/realmsclient/client/RealmsClient/create (Lnet/minecraft/client/Minecraft;)Lcom/mojang/realmsclient/client/RealmsClient; +MD: com/mojang/realmsclient/client/RealmsClient/m_274314_ ()Ljava/util/List; com/mojang/realmsclient/client/RealmsClient/getNotifications ()Ljava/util/List; +MD: com/mojang/realmsclient/client/RealmsClient/m_274401_ (Ljava/util/List;)V com/mojang/realmsclient/client/RealmsClient/notificationsDismiss (Ljava/util/List;)V +MD: com/mojang/realmsclient/client/RealmsClient/m_274462_ (Ljava/util/List;)Lcom/google/gson/JsonArray; com/mojang/realmsclient/client/RealmsClient/uuidListToJsonArray (Ljava/util/List;)Lcom/google/gson/JsonArray; +MD: com/mojang/realmsclient/client/RealmsClient/m_274582_ (Ljava/util/List;)V com/mojang/realmsclient/client/RealmsClient/notificationsSeen (Ljava/util/List;)V +MD: com/mojang/realmsclient/client/RealmsClient/m_289606_ (Lcom/mojang/realmsclient/client/RealmsClient$Environment;)V com/mojang/realmsclient/client/RealmsClient/lambda$create$1 (Lcom/mojang/realmsclient/client/RealmsClient$Environment;)V +MD: com/mojang/realmsclient/client/RealmsClient/m_289610_ ()Ljava/util/Optional; com/mojang/realmsclient/client/RealmsClient/lambda$create$0 ()Ljava/util/Optional; +MD: com/mojang/realmsclient/client/RealmsClient/m_87169_ ()Lcom/mojang/realmsclient/client/RealmsClient; com/mojang/realmsclient/client/RealmsClient/create ()Lcom/mojang/realmsclient/client/RealmsClient; +MD: com/mojang/realmsclient/client/RealmsClient/m_87170_ (IILcom/mojang/realmsclient/dto/RealmsServer$WorldType;)Lcom/mojang/realmsclient/dto/WorldTemplatePaginatedList; com/mojang/realmsclient/client/RealmsClient/fetchWorldTemplates (IILcom/mojang/realmsclient/dto/RealmsServer$WorldType;)Lcom/mojang/realmsclient/dto/WorldTemplatePaginatedList; +MD: com/mojang/realmsclient/client/RealmsClient/m_87174_ (J)Lcom/mojang/realmsclient/dto/RealmsServer; com/mojang/realmsclient/client/RealmsClient/getOwnWorld (J)Lcom/mojang/realmsclient/dto/RealmsServer; +MD: com/mojang/realmsclient/client/RealmsClient/m_87176_ (JI)Z com/mojang/realmsclient/client/RealmsClient/switchSlot (JI)Z +MD: com/mojang/realmsclient/client/RealmsClient/m_87179_ (JILcom/mojang/realmsclient/dto/RealmsWorldOptions;)V com/mojang/realmsclient/client/RealmsClient/updateSlot (JILcom/mojang/realmsclient/dto/RealmsWorldOptions;)V +MD: com/mojang/realmsclient/client/RealmsClient/m_87183_ (JLjava/lang/String;)V com/mojang/realmsclient/client/RealmsClient/uninvite (JLjava/lang/String;)V +MD: com/mojang/realmsclient/client/RealmsClient/m_87191_ (JLjava/lang/String;Ljava/lang/String;)V com/mojang/realmsclient/client/RealmsClient/initializeWorld (JLjava/lang/String;Ljava/lang/String;)V +MD: com/mojang/realmsclient/client/RealmsClient/m_87195_ (Lcom/mojang/realmsclient/client/Request;)Ljava/lang/String; com/mojang/realmsclient/client/RealmsClient/execute (Lcom/mojang/realmsclient/client/Request;)Ljava/lang/String; +MD: com/mojang/realmsclient/client/RealmsClient/m_87197_ (Lcom/mojang/realmsclient/dto/PendingInvite;)Z com/mojang/realmsclient/client/RealmsClient/isBlocked (Lcom/mojang/realmsclient/dto/PendingInvite;)Z +MD: com/mojang/realmsclient/client/RealmsClient/m_87199_ (Lcom/mojang/realmsclient/dto/PingResult;)V com/mojang/realmsclient/client/RealmsClient/sendPingResults (Lcom/mojang/realmsclient/dto/PingResult;)V +MD: com/mojang/realmsclient/client/RealmsClient/m_87201_ (Ljava/lang/String;)V com/mojang/realmsclient/client/RealmsClient/acceptInvitation (Ljava/lang/String;)V +MD: com/mojang/realmsclient/client/RealmsClient/m_87203_ (Ljava/lang/String;Ljava/lang/String;)Ljava/lang/String; com/mojang/realmsclient/client/RealmsClient/url (Ljava/lang/String;Ljava/lang/String;)Ljava/lang/String; +MD: com/mojang/realmsclient/client/RealmsClient/m_87206_ ()V com/mojang/realmsclient/client/RealmsClient/switchToStage ()V +MD: com/mojang/realmsclient/client/RealmsClient/m_87207_ (J)Lcom/mojang/realmsclient/dto/RealmsServerAddress; com/mojang/realmsclient/client/RealmsClient/join (J)Lcom/mojang/realmsclient/dto/RealmsServerAddress; +MD: com/mojang/realmsclient/client/RealmsClient/m_87209_ (JI)Lcom/mojang/realmsclient/dto/WorldDownload; com/mojang/realmsclient/client/RealmsClient/requestDownloadInfo (JI)Lcom/mojang/realmsclient/dto/WorldDownload; +MD: com/mojang/realmsclient/client/RealmsClient/m_87212_ (JLjava/lang/String;)Lcom/mojang/realmsclient/dto/RealmsServer; com/mojang/realmsclient/client/RealmsClient/invite (JLjava/lang/String;)Lcom/mojang/realmsclient/dto/RealmsServer; +MD: com/mojang/realmsclient/client/RealmsClient/m_87215_ (JLjava/lang/String;Ljava/lang/String;)V com/mojang/realmsclient/client/RealmsClient/update (JLjava/lang/String;Ljava/lang/String;)V +MD: com/mojang/realmsclient/client/RealmsClient/m_87219_ (Ljava/lang/String;)V com/mojang/realmsclient/client/RealmsClient/rejectInvitation (Ljava/lang/String;)V +MD: com/mojang/realmsclient/client/RealmsClient/m_87221_ ()V com/mojang/realmsclient/client/RealmsClient/switchToProd ()V +MD: com/mojang/realmsclient/client/RealmsClient/m_87222_ (J)V com/mojang/realmsclient/client/RealmsClient/uninviteMyselfFrom (J)V +MD: com/mojang/realmsclient/client/RealmsClient/m_87224_ (JLjava/lang/String;)V com/mojang/realmsclient/client/RealmsClient/restoreWorld (JLjava/lang/String;)V +MD: com/mojang/realmsclient/client/RealmsClient/m_87227_ (Ljava/lang/String;)Ljava/lang/String; com/mojang/realmsclient/client/RealmsClient/url (Ljava/lang/String;)Ljava/lang/String; +MD: com/mojang/realmsclient/client/RealmsClient/m_87229_ ()V com/mojang/realmsclient/client/RealmsClient/switchToLocal ()V +MD: com/mojang/realmsclient/client/RealmsClient/m_87230_ (J)Lcom/mojang/realmsclient/dto/BackupList; com/mojang/realmsclient/client/RealmsClient/backupsFor (J)Lcom/mojang/realmsclient/dto/BackupList; +MD: com/mojang/realmsclient/client/RealmsClient/m_87232_ (JLjava/lang/String;)Ljava/lang/Boolean; com/mojang/realmsclient/client/RealmsClient/putIntoMinigameMode (JLjava/lang/String;)Ljava/lang/Boolean; +MD: com/mojang/realmsclient/client/RealmsClient/m_87235_ ()Lcom/mojang/realmsclient/dto/RealmsServerList; com/mojang/realmsclient/client/RealmsClient/listWorlds ()Lcom/mojang/realmsclient/dto/RealmsServerList; +MD: com/mojang/realmsclient/client/RealmsClient/m_87236_ (J)Ljava/lang/Boolean; com/mojang/realmsclient/client/RealmsClient/open (J)Ljava/lang/Boolean; +MD: com/mojang/realmsclient/client/RealmsClient/m_87238_ (JLjava/lang/String;)Lcom/mojang/realmsclient/dto/Ops; com/mojang/realmsclient/client/RealmsClient/op (JLjava/lang/String;)Lcom/mojang/realmsclient/dto/Ops; +MD: com/mojang/realmsclient/client/RealmsClient/m_87241_ ()Lcom/mojang/realmsclient/dto/RealmsServerPlayerLists; com/mojang/realmsclient/client/RealmsClient/getLiveStats ()Lcom/mojang/realmsclient/dto/RealmsServerPlayerLists; +MD: com/mojang/realmsclient/client/RealmsClient/m_87242_ (J)Ljava/lang/Boolean; com/mojang/realmsclient/client/RealmsClient/close (J)Ljava/lang/Boolean; +MD: com/mojang/realmsclient/client/RealmsClient/m_87244_ (JLjava/lang/String;)Lcom/mojang/realmsclient/dto/Ops; com/mojang/realmsclient/client/RealmsClient/deop (JLjava/lang/String;)Lcom/mojang/realmsclient/dto/Ops; +MD: com/mojang/realmsclient/client/RealmsClient/m_87247_ ()Ljava/lang/Boolean; com/mojang/realmsclient/client/RealmsClient/mcoEnabled ()Ljava/lang/Boolean; +MD: com/mojang/realmsclient/client/RealmsClient/m_87248_ (J)Lcom/mojang/realmsclient/dto/Subscription; com/mojang/realmsclient/client/RealmsClient/subscriptionFor (J)Lcom/mojang/realmsclient/dto/Subscription; +MD: com/mojang/realmsclient/client/RealmsClient/m_87250_ (JLjava/lang/String;)Ljava/lang/Boolean; com/mojang/realmsclient/client/RealmsClient/resetWorldWithTemplate (JLjava/lang/String;)Ljava/lang/Boolean; +MD: com/mojang/realmsclient/client/RealmsClient/m_87253_ ()Ljava/lang/Boolean; com/mojang/realmsclient/client/RealmsClient/stageAvailable ()Ljava/lang/Boolean; +MD: com/mojang/realmsclient/client/RealmsClient/m_87254_ (J)V com/mojang/realmsclient/client/RealmsClient/deleteWorld (J)V +MD: com/mojang/realmsclient/client/RealmsClient/m_87256_ (JLjava/lang/String;)Lcom/mojang/realmsclient/dto/UploadInfo; com/mojang/realmsclient/client/RealmsClient/requestUploadInfo (JLjava/lang/String;)Lcom/mojang/realmsclient/dto/UploadInfo; +MD: com/mojang/realmsclient/client/RealmsClient/m_87259_ ()Lcom/mojang/realmsclient/client/RealmsClient$CompatibleVersionResponse; com/mojang/realmsclient/client/RealmsClient/clientCompatible ()Lcom/mojang/realmsclient/client/RealmsClient$CompatibleVersionResponse; +MD: com/mojang/realmsclient/client/RealmsClient/m_87260_ ()I com/mojang/realmsclient/client/RealmsClient/pendingInvitesCount ()I +MD: com/mojang/realmsclient/client/RealmsClient/m_87261_ ()Lcom/mojang/realmsclient/dto/PendingInvitesList; com/mojang/realmsclient/client/RealmsClient/pendingInvites ()Lcom/mojang/realmsclient/dto/PendingInvitesList; +MD: com/mojang/realmsclient/client/RealmsClient/m_87262_ ()V com/mojang/realmsclient/client/RealmsClient/agreeToTos ()V +MD: com/mojang/realmsclient/client/RealmsClient/m_87263_ ()Lcom/mojang/realmsclient/dto/RealmsNews; com/mojang/realmsclient/client/RealmsClient/getNews ()Lcom/mojang/realmsclient/dto/RealmsNews; +MD: com/mojang/realmsclient/client/RealmsClient/m_87264_ ()Ljava/lang/Boolean; com/mojang/realmsclient/client/RealmsClient/trialAvailable ()Ljava/lang/Boolean; +MD: com/mojang/realmsclient/client/RealmsClient$CompatibleVersionResponse/ ()V com/mojang/realmsclient/client/RealmsClient$CompatibleVersionResponse/ ()V +MD: com/mojang/realmsclient/client/RealmsClient$CompatibleVersionResponse/ (Ljava/lang/String;I)V com/mojang/realmsclient/client/RealmsClient$CompatibleVersionResponse/ (Ljava/lang/String;I)V +MD: com/mojang/realmsclient/client/RealmsClient$CompatibleVersionResponse/m_167280_ ()[Lcom/mojang/realmsclient/client/RealmsClient$CompatibleVersionResponse; com/mojang/realmsclient/client/RealmsClient$CompatibleVersionResponse/$values ()[Lcom/mojang/realmsclient/client/RealmsClient$CompatibleVersionResponse; +MD: com/mojang/realmsclient/client/RealmsClient$CompatibleVersionResponse/valueOf (Ljava/lang/String;)Lcom/mojang/realmsclient/client/RealmsClient$CompatibleVersionResponse; com/mojang/realmsclient/client/RealmsClient$CompatibleVersionResponse/valueOf (Ljava/lang/String;)Lcom/mojang/realmsclient/client/RealmsClient$CompatibleVersionResponse; +MD: com/mojang/realmsclient/client/RealmsClient$CompatibleVersionResponse/values ()[Lcom/mojang/realmsclient/client/RealmsClient$CompatibleVersionResponse; com/mojang/realmsclient/client/RealmsClient$CompatibleVersionResponse/values ()[Lcom/mojang/realmsclient/client/RealmsClient$CompatibleVersionResponse; +MD: com/mojang/realmsclient/client/RealmsClient$Environment/ ()V com/mojang/realmsclient/client/RealmsClient$Environment/ ()V +MD: com/mojang/realmsclient/client/RealmsClient$Environment/ (Ljava/lang/String;ILjava/lang/String;Ljava/lang/String;)V com/mojang/realmsclient/client/RealmsClient$Environment/ (Ljava/lang/String;ILjava/lang/String;Ljava/lang/String;)V +MD: com/mojang/realmsclient/client/RealmsClient$Environment/m_167281_ ()[Lcom/mojang/realmsclient/client/RealmsClient$Environment; com/mojang/realmsclient/client/RealmsClient$Environment/$values ()[Lcom/mojang/realmsclient/client/RealmsClient$Environment; +MD: com/mojang/realmsclient/client/RealmsClient$Environment/m_289598_ (Ljava/lang/String;)Ljava/util/Optional; com/mojang/realmsclient/client/RealmsClient$Environment/byName (Ljava/lang/String;)Ljava/util/Optional; +MD: com/mojang/realmsclient/client/RealmsClient$Environment/valueOf (Ljava/lang/String;)Lcom/mojang/realmsclient/client/RealmsClient$Environment; com/mojang/realmsclient/client/RealmsClient$Environment/valueOf (Ljava/lang/String;)Lcom/mojang/realmsclient/client/RealmsClient$Environment; +MD: com/mojang/realmsclient/client/RealmsClient$Environment/values ()[Lcom/mojang/realmsclient/client/RealmsClient$Environment; com/mojang/realmsclient/client/RealmsClient$Environment/values ()[Lcom/mojang/realmsclient/client/RealmsClient$Environment; +MD: com/mojang/realmsclient/client/RealmsClientConfig/ ()V com/mojang/realmsclient/client/RealmsClientConfig/ ()V +MD: com/mojang/realmsclient/client/RealmsClientConfig/m_87292_ ()Ljava/net/Proxy; com/mojang/realmsclient/client/RealmsClientConfig/getProxy ()Ljava/net/Proxy; +MD: com/mojang/realmsclient/client/RealmsClientConfig/m_87293_ (Ljava/net/Proxy;)V com/mojang/realmsclient/client/RealmsClientConfig/setProxy (Ljava/net/Proxy;)V +MD: com/mojang/realmsclient/client/RealmsError/ ()V com/mojang/realmsclient/client/RealmsError/ ()V +MD: com/mojang/realmsclient/client/RealmsError/ (Ljava/lang/String;I)V com/mojang/realmsclient/client/RealmsError/ (Ljava/lang/String;I)V +MD: com/mojang/realmsclient/client/RealmsError/m_87302_ ()Ljava/lang/String; com/mojang/realmsclient/client/RealmsError/getErrorMessage ()Ljava/lang/String; +MD: com/mojang/realmsclient/client/RealmsError/m_87303_ (Ljava/lang/String;)Lcom/mojang/realmsclient/client/RealmsError; com/mojang/realmsclient/client/RealmsError/parse (Ljava/lang/String;)Lcom/mojang/realmsclient/client/RealmsError; +MD: com/mojang/realmsclient/client/RealmsError/m_87305_ ()I com/mojang/realmsclient/client/RealmsError/getErrorCode ()I +MD: com/mojang/realmsclient/client/Request/ (Ljava/lang/String;II)V com/mojang/realmsclient/client/Request/ (Ljava/lang/String;II)V +MD: com/mojang/realmsclient/client/Request/m_167285_ (Ljava/lang/String;Ljava/lang/String;)Lcom/mojang/realmsclient/client/Request; com/mojang/realmsclient/client/Request/header (Ljava/lang/String;Ljava/lang/String;)Lcom/mojang/realmsclient/client/Request; +MD: com/mojang/realmsclient/client/Request/m_7218_ ()Lcom/mojang/realmsclient/client/Request; com/mojang/realmsclient/client/Request/doConnect ()Lcom/mojang/realmsclient/client/Request; +MD: com/mojang/realmsclient/client/Request/m_87313_ ()I com/mojang/realmsclient/client/Request/getRetryAfterHeader ()I +MD: com/mojang/realmsclient/client/Request/m_87314_ (Ljava/io/InputStream;)Ljava/lang/String; com/mojang/realmsclient/client/Request/read (Ljava/io/InputStream;)Ljava/lang/String; +MD: com/mojang/realmsclient/client/Request/m_87316_ (Ljava/lang/String;)Lcom/mojang/realmsclient/client/Request; com/mojang/realmsclient/client/Request/get (Ljava/lang/String;)Lcom/mojang/realmsclient/client/Request; +MD: com/mojang/realmsclient/client/Request/m_87318_ (Ljava/lang/String;II)Lcom/mojang/realmsclient/client/Request; com/mojang/realmsclient/client/Request/get (Ljava/lang/String;II)Lcom/mojang/realmsclient/client/Request; +MD: com/mojang/realmsclient/client/Request/m_87322_ (Ljava/lang/String;Ljava/lang/String;)V com/mojang/realmsclient/client/Request/cookie (Ljava/lang/String;Ljava/lang/String;)V +MD: com/mojang/realmsclient/client/Request/m_87325_ (Ljava/lang/String;Ljava/lang/String;II)Lcom/mojang/realmsclient/client/Request; com/mojang/realmsclient/client/Request/post (Ljava/lang/String;Ljava/lang/String;II)Lcom/mojang/realmsclient/client/Request; +MD: com/mojang/realmsclient/client/Request/m_87330_ (Ljava/net/HttpURLConnection;)I com/mojang/realmsclient/client/Request/getRetryAfterHeader (Ljava/net/HttpURLConnection;)I +MD: com/mojang/realmsclient/client/Request/m_87332_ (Ljava/net/HttpURLConnection;Ljava/lang/String;)Ljava/lang/String; com/mojang/realmsclient/client/Request/getHeader (Ljava/net/HttpURLConnection;Ljava/lang/String;)Ljava/lang/String; +MD: com/mojang/realmsclient/client/Request/m_87335_ (Ljava/net/HttpURLConnection;Ljava/lang/String;Ljava/lang/String;)V com/mojang/realmsclient/client/Request/cookie (Ljava/net/HttpURLConnection;Ljava/lang/String;Ljava/lang/String;)V +MD: com/mojang/realmsclient/client/Request/m_87339_ ()I com/mojang/realmsclient/client/Request/responseCode ()I +MD: com/mojang/realmsclient/client/Request/m_87340_ (Ljava/lang/String;)Lcom/mojang/realmsclient/client/Request; com/mojang/realmsclient/client/Request/delete (Ljava/lang/String;)Lcom/mojang/realmsclient/client/Request; +MD: com/mojang/realmsclient/client/Request/m_87342_ (Ljava/lang/String;Ljava/lang/String;)Lcom/mojang/realmsclient/client/Request; com/mojang/realmsclient/client/Request/post (Ljava/lang/String;Ljava/lang/String;)Lcom/mojang/realmsclient/client/Request; +MD: com/mojang/realmsclient/client/Request/m_87345_ (Ljava/lang/String;Ljava/lang/String;II)Lcom/mojang/realmsclient/client/Request; com/mojang/realmsclient/client/Request/put (Ljava/lang/String;Ljava/lang/String;II)Lcom/mojang/realmsclient/client/Request; +MD: com/mojang/realmsclient/client/Request/m_87350_ ()Ljava/lang/String; com/mojang/realmsclient/client/Request/text ()Ljava/lang/String; +MD: com/mojang/realmsclient/client/Request/m_87351_ (Ljava/lang/String;)Ljava/lang/String; com/mojang/realmsclient/client/Request/getHeader (Ljava/lang/String;)Ljava/lang/String; +MD: com/mojang/realmsclient/client/Request/m_87353_ (Ljava/lang/String;Ljava/lang/String;)Lcom/mojang/realmsclient/client/Request; com/mojang/realmsclient/client/Request/put (Ljava/lang/String;Ljava/lang/String;)Lcom/mojang/realmsclient/client/Request; +MD: com/mojang/realmsclient/client/Request/m_87356_ ()Lcom/mojang/realmsclient/client/Request; com/mojang/realmsclient/client/Request/connect ()Lcom/mojang/realmsclient/client/Request; +MD: com/mojang/realmsclient/client/Request/m_87357_ ()V com/mojang/realmsclient/client/Request/dispose ()V +MD: com/mojang/realmsclient/client/Request$Delete/ (Ljava/lang/String;II)V com/mojang/realmsclient/client/Request$Delete/ (Ljava/lang/String;II)V +MD: com/mojang/realmsclient/client/Request$Delete/m_7218_ ()Lcom/mojang/realmsclient/client/Request; com/mojang/realmsclient/client/Request$Delete/doConnect ()Lcom/mojang/realmsclient/client/Request; +MD: com/mojang/realmsclient/client/Request$Delete/m_7218_ ()Lcom/mojang/realmsclient/client/Request$Delete; com/mojang/realmsclient/client/Request$Delete/doConnect ()Lcom/mojang/realmsclient/client/Request$Delete; +MD: com/mojang/realmsclient/client/Request$Get/ (Ljava/lang/String;II)V com/mojang/realmsclient/client/Request$Get/ (Ljava/lang/String;II)V +MD: com/mojang/realmsclient/client/Request$Get/m_7218_ ()Lcom/mojang/realmsclient/client/Request; com/mojang/realmsclient/client/Request$Get/doConnect ()Lcom/mojang/realmsclient/client/Request; +MD: com/mojang/realmsclient/client/Request$Get/m_7218_ ()Lcom/mojang/realmsclient/client/Request$Get; com/mojang/realmsclient/client/Request$Get/doConnect ()Lcom/mojang/realmsclient/client/Request$Get; +MD: com/mojang/realmsclient/client/Request$Post/ (Ljava/lang/String;Ljava/lang/String;II)V com/mojang/realmsclient/client/Request$Post/ (Ljava/lang/String;Ljava/lang/String;II)V +MD: com/mojang/realmsclient/client/Request$Post/m_7218_ ()Lcom/mojang/realmsclient/client/Request; com/mojang/realmsclient/client/Request$Post/doConnect ()Lcom/mojang/realmsclient/client/Request; +MD: com/mojang/realmsclient/client/Request$Post/m_7218_ ()Lcom/mojang/realmsclient/client/Request$Post; com/mojang/realmsclient/client/Request$Post/doConnect ()Lcom/mojang/realmsclient/client/Request$Post; +MD: com/mojang/realmsclient/client/Request$Put/ (Ljava/lang/String;Ljava/lang/String;II)V com/mojang/realmsclient/client/Request$Put/ (Ljava/lang/String;Ljava/lang/String;II)V +MD: com/mojang/realmsclient/client/Request$Put/m_7218_ ()Lcom/mojang/realmsclient/client/Request; com/mojang/realmsclient/client/Request$Put/doConnect ()Lcom/mojang/realmsclient/client/Request; +MD: com/mojang/realmsclient/client/Request$Put/m_7218_ ()Lcom/mojang/realmsclient/client/Request$Put; com/mojang/realmsclient/client/Request$Put/doConnect ()Lcom/mojang/realmsclient/client/Request$Put; +MD: com/mojang/realmsclient/client/UploadStatus/ ()V com/mojang/realmsclient/client/UploadStatus/ ()V +MD: com/mojang/realmsclient/dto/Backup/ ()V com/mojang/realmsclient/dto/Backup/ ()V +MD: com/mojang/realmsclient/dto/Backup/ ()V com/mojang/realmsclient/dto/Backup/ ()V +MD: com/mojang/realmsclient/dto/Backup/m_87398_ ()Z com/mojang/realmsclient/dto/Backup/isUploadedVersion ()Z +MD: com/mojang/realmsclient/dto/Backup/m_87399_ (Lcom/google/gson/JsonElement;)Lcom/mojang/realmsclient/dto/Backup; com/mojang/realmsclient/dto/Backup/parse (Lcom/google/gson/JsonElement;)Lcom/mojang/realmsclient/dto/Backup; +MD: com/mojang/realmsclient/dto/Backup/m_87403_ (Z)V com/mojang/realmsclient/dto/Backup/setUploadedVersion (Z)V +MD: com/mojang/realmsclient/dto/BackupList/ ()V com/mojang/realmsclient/dto/BackupList/ ()V +MD: com/mojang/realmsclient/dto/BackupList/ ()V com/mojang/realmsclient/dto/BackupList/ ()V +MD: com/mojang/realmsclient/dto/BackupList/m_87409_ (Ljava/lang/String;)Lcom/mojang/realmsclient/dto/BackupList; com/mojang/realmsclient/dto/BackupList/parse (Ljava/lang/String;)Lcom/mojang/realmsclient/dto/BackupList; +MD: com/mojang/realmsclient/dto/GuardedSerializer/ ()V com/mojang/realmsclient/dto/GuardedSerializer/ ()V +MD: com/mojang/realmsclient/dto/GuardedSerializer/m_274558_ (Lcom/google/gson/JsonElement;)Ljava/lang/String; com/mojang/realmsclient/dto/GuardedSerializer/toJson (Lcom/google/gson/JsonElement;)Ljava/lang/String; +MD: com/mojang/realmsclient/dto/GuardedSerializer/m_87413_ (Lcom/mojang/realmsclient/dto/ReflectionBasedSerialization;)Ljava/lang/String; com/mojang/realmsclient/dto/GuardedSerializer/toJson (Lcom/mojang/realmsclient/dto/ReflectionBasedSerialization;)Ljava/lang/String; +MD: com/mojang/realmsclient/dto/GuardedSerializer/m_87415_ (Ljava/lang/String;Ljava/lang/Class;)Lcom/mojang/realmsclient/dto/ReflectionBasedSerialization; com/mojang/realmsclient/dto/GuardedSerializer/fromJson (Ljava/lang/String;Ljava/lang/Class;)Lcom/mojang/realmsclient/dto/ReflectionBasedSerialization; +MD: com/mojang/realmsclient/dto/Ops/ ()V com/mojang/realmsclient/dto/Ops/ ()V +MD: com/mojang/realmsclient/dto/Ops/m_87420_ (Ljava/lang/String;)Lcom/mojang/realmsclient/dto/Ops; com/mojang/realmsclient/dto/Ops/parse (Ljava/lang/String;)Lcom/mojang/realmsclient/dto/Ops; +MD: com/mojang/realmsclient/dto/PendingInvite/ ()V com/mojang/realmsclient/dto/PendingInvite/ ()V +MD: com/mojang/realmsclient/dto/PendingInvite/ ()V com/mojang/realmsclient/dto/PendingInvite/ ()V +MD: com/mojang/realmsclient/dto/PendingInvite/m_87430_ (Lcom/google/gson/JsonObject;)Lcom/mojang/realmsclient/dto/PendingInvite; com/mojang/realmsclient/dto/PendingInvite/parse (Lcom/google/gson/JsonObject;)Lcom/mojang/realmsclient/dto/PendingInvite; +MD: com/mojang/realmsclient/dto/PendingInvitesList/ ()V com/mojang/realmsclient/dto/PendingInvitesList/ ()V +MD: com/mojang/realmsclient/dto/PendingInvitesList/ ()V com/mojang/realmsclient/dto/PendingInvitesList/ ()V +MD: com/mojang/realmsclient/dto/PendingInvitesList/m_87436_ (Ljava/lang/String;)Lcom/mojang/realmsclient/dto/PendingInvitesList; com/mojang/realmsclient/dto/PendingInvitesList/parse (Ljava/lang/String;)Lcom/mojang/realmsclient/dto/PendingInvitesList; +MD: com/mojang/realmsclient/dto/PingResult/ ()V com/mojang/realmsclient/dto/PingResult/ ()V +MD: com/mojang/realmsclient/dto/PlayerInfo/ ()V com/mojang/realmsclient/dto/PlayerInfo/ ()V +MD: com/mojang/realmsclient/dto/PlayerInfo/m_87447_ ()Ljava/lang/String; com/mojang/realmsclient/dto/PlayerInfo/getName ()Ljava/lang/String; +MD: com/mojang/realmsclient/dto/PlayerInfo/m_87448_ (Ljava/lang/String;)V com/mojang/realmsclient/dto/PlayerInfo/setName (Ljava/lang/String;)V +MD: com/mojang/realmsclient/dto/PlayerInfo/m_87450_ (Z)V com/mojang/realmsclient/dto/PlayerInfo/setOperator (Z)V +MD: com/mojang/realmsclient/dto/PlayerInfo/m_87452_ ()Ljava/lang/String; com/mojang/realmsclient/dto/PlayerInfo/getUuid ()Ljava/lang/String; +MD: com/mojang/realmsclient/dto/PlayerInfo/m_87453_ (Ljava/lang/String;)V com/mojang/realmsclient/dto/PlayerInfo/setUuid (Ljava/lang/String;)V +MD: com/mojang/realmsclient/dto/PlayerInfo/m_87455_ (Z)V com/mojang/realmsclient/dto/PlayerInfo/setAccepted (Z)V +MD: com/mojang/realmsclient/dto/PlayerInfo/m_87457_ ()Z com/mojang/realmsclient/dto/PlayerInfo/isOperator ()Z +MD: com/mojang/realmsclient/dto/PlayerInfo/m_87458_ (Z)V com/mojang/realmsclient/dto/PlayerInfo/setOnline (Z)V +MD: com/mojang/realmsclient/dto/PlayerInfo/m_87460_ ()Z com/mojang/realmsclient/dto/PlayerInfo/getAccepted ()Z +MD: com/mojang/realmsclient/dto/PlayerInfo/m_87461_ ()Z com/mojang/realmsclient/dto/PlayerInfo/getOnline ()Z +MD: com/mojang/realmsclient/dto/RealmsDescriptionDto/ (Ljava/lang/String;Ljava/lang/String;)V com/mojang/realmsclient/dto/RealmsDescriptionDto/ (Ljava/lang/String;Ljava/lang/String;)V +MD: com/mojang/realmsclient/dto/RealmsNews/ ()V com/mojang/realmsclient/dto/RealmsNews/ ()V +MD: com/mojang/realmsclient/dto/RealmsNews/ ()V com/mojang/realmsclient/dto/RealmsNews/ ()V +MD: com/mojang/realmsclient/dto/RealmsNews/m_87471_ (Ljava/lang/String;)Lcom/mojang/realmsclient/dto/RealmsNews; com/mojang/realmsclient/dto/RealmsNews/parse (Ljava/lang/String;)Lcom/mojang/realmsclient/dto/RealmsNews; +MD: com/mojang/realmsclient/dto/RealmsNotification/ ()V com/mojang/realmsclient/dto/RealmsNotification/ ()V +MD: com/mojang/realmsclient/dto/RealmsNotification/ (Ljava/util/UUID;ZZLjava/lang/String;)V com/mojang/realmsclient/dto/RealmsNotification/ (Ljava/util/UUID;ZZLjava/lang/String;)V +MD: com/mojang/realmsclient/dto/RealmsNotification/m_274400_ ()Ljava/util/UUID; com/mojang/realmsclient/dto/RealmsNotification/uuid ()Ljava/util/UUID; +MD: com/mojang/realmsclient/dto/RealmsNotification/m_274416_ ()Z com/mojang/realmsclient/dto/RealmsNotification/dismissable ()Z +MD: com/mojang/realmsclient/dto/RealmsNotification/m_274477_ (Lcom/google/gson/JsonObject;)Lcom/mojang/realmsclient/dto/RealmsNotification; com/mojang/realmsclient/dto/RealmsNotification/parse (Lcom/google/gson/JsonObject;)Lcom/mojang/realmsclient/dto/RealmsNotification; +MD: com/mojang/realmsclient/dto/RealmsNotification/m_274572_ (Ljava/lang/String;)Ljava/util/List; com/mojang/realmsclient/dto/RealmsNotification/parseList (Ljava/lang/String;)Ljava/util/List; +MD: com/mojang/realmsclient/dto/RealmsNotification/m_274594_ ()Z com/mojang/realmsclient/dto/RealmsNotification/seen ()Z +MD: com/mojang/realmsclient/dto/RealmsNotification$VisitUrl/ (Lcom/mojang/realmsclient/dto/RealmsNotification;Ljava/lang/String;Lcom/mojang/realmsclient/dto/RealmsText;Lcom/mojang/realmsclient/dto/RealmsText;)V com/mojang/realmsclient/dto/RealmsNotification$VisitUrl/ (Lcom/mojang/realmsclient/dto/RealmsNotification;Ljava/lang/String;Lcom/mojang/realmsclient/dto/RealmsText;Lcom/mojang/realmsclient/dto/RealmsText;)V +MD: com/mojang/realmsclient/dto/RealmsNotification$VisitUrl/m_274431_ (Lnet/minecraft/client/gui/screens/Screen;)Lnet/minecraft/client/gui/components/Button; com/mojang/realmsclient/dto/RealmsNotification$VisitUrl/buildOpenLinkButton (Lnet/minecraft/client/gui/screens/Screen;)Lnet/minecraft/client/gui/components/Button; +MD: com/mojang/realmsclient/dto/RealmsNotification$VisitUrl/m_274551_ (Lcom/mojang/realmsclient/dto/RealmsNotification;Lcom/google/gson/JsonObject;)Lcom/mojang/realmsclient/dto/RealmsNotification$VisitUrl; com/mojang/realmsclient/dto/RealmsNotification$VisitUrl/parse (Lcom/mojang/realmsclient/dto/RealmsNotification;Lcom/google/gson/JsonObject;)Lcom/mojang/realmsclient/dto/RealmsNotification$VisitUrl; +MD: com/mojang/realmsclient/dto/RealmsNotification$VisitUrl/m_274603_ ()Lnet/minecraft/network/chat/Component; com/mojang/realmsclient/dto/RealmsNotification$VisitUrl/getMessage ()Lnet/minecraft/network/chat/Component; +MD: com/mojang/realmsclient/dto/RealmsServer/ ()V com/mojang/realmsclient/dto/RealmsServer/ ()V +MD: com/mojang/realmsclient/dto/RealmsServer/ ()V com/mojang/realmsclient/dto/RealmsServer/ ()V +MD: com/mojang/realmsclient/dto/RealmsServer/clone ()Ljava/lang/Object; com/mojang/realmsclient/dto/RealmsServer/clone ()Ljava/lang/Object; +MD: com/mojang/realmsclient/dto/RealmsServer/clone ()Lcom/mojang/realmsclient/dto/RealmsServer; com/mojang/realmsclient/dto/RealmsServer/clone ()Lcom/mojang/realmsclient/dto/RealmsServer; +MD: com/mojang/realmsclient/dto/RealmsServer/equals (Ljava/lang/Object;)Z com/mojang/realmsclient/dto/RealmsServer/equals (Ljava/lang/Object;)Z +MD: com/mojang/realmsclient/dto/RealmsServer/hashCode ()I com/mojang/realmsclient/dto/RealmsServer/hashCode ()I +MD: com/mojang/realmsclient/dto/RealmsServer/m_87494_ ()Ljava/lang/String; com/mojang/realmsclient/dto/RealmsServer/getDescription ()Ljava/lang/String; +MD: com/mojang/realmsclient/dto/RealmsServer/m_87495_ (I)Ljava/lang/String; com/mojang/realmsclient/dto/RealmsServer/getWorldName (I)Ljava/lang/String; +MD: com/mojang/realmsclient/dto/RealmsServer/m_87497_ (Lcom/google/gson/JsonArray;)Ljava/util/List; com/mojang/realmsclient/dto/RealmsServer/parseInvited (Lcom/google/gson/JsonArray;)Ljava/util/List; +MD: com/mojang/realmsclient/dto/RealmsServer/m_87499_ (Lcom/google/gson/JsonObject;)Lcom/mojang/realmsclient/dto/RealmsServer; com/mojang/realmsclient/dto/RealmsServer/parse (Lcom/google/gson/JsonObject;)Lcom/mojang/realmsclient/dto/RealmsServer; +MD: com/mojang/realmsclient/dto/RealmsServer/m_87501_ (Lcom/mojang/realmsclient/dto/PlayerInfo;Lcom/mojang/realmsclient/dto/PlayerInfo;)I com/mojang/realmsclient/dto/RealmsServer/lambda$sortInvited$0 (Lcom/mojang/realmsclient/dto/PlayerInfo;Lcom/mojang/realmsclient/dto/PlayerInfo;)I +MD: com/mojang/realmsclient/dto/RealmsServer/m_87504_ (Lcom/mojang/realmsclient/dto/RealmsServer;)V com/mojang/realmsclient/dto/RealmsServer/sortInvited (Lcom/mojang/realmsclient/dto/RealmsServer;)V +MD: com/mojang/realmsclient/dto/RealmsServer/m_87506_ (Lcom/mojang/realmsclient/dto/RealmsServerPlayerList;)V com/mojang/realmsclient/dto/RealmsServer/updateServerPing (Lcom/mojang/realmsclient/dto/RealmsServerPlayerList;)V +MD: com/mojang/realmsclient/dto/RealmsServer/m_87508_ (Ljava/lang/String;)V com/mojang/realmsclient/dto/RealmsServer/setName (Ljava/lang/String;)V +MD: com/mojang/realmsclient/dto/RealmsServer/m_87510_ (Ljava/util/Map;)Ljava/util/Map; com/mojang/realmsclient/dto/RealmsServer/cloneSlots (Ljava/util/Map;)Ljava/util/Map; +MD: com/mojang/realmsclient/dto/RealmsServer/m_87512_ ()Ljava/lang/String; com/mojang/realmsclient/dto/RealmsServer/getName ()Ljava/lang/String; +MD: com/mojang/realmsclient/dto/RealmsServer/m_87513_ (Lcom/google/gson/JsonArray;)Ljava/util/Map; com/mojang/realmsclient/dto/RealmsServer/parseSlots (Lcom/google/gson/JsonArray;)Ljava/util/Map; +MD: com/mojang/realmsclient/dto/RealmsServer/m_87515_ (Ljava/lang/String;)V com/mojang/realmsclient/dto/RealmsServer/setDescription (Ljava/lang/String;)V +MD: com/mojang/realmsclient/dto/RealmsServer/m_87517_ ()Ljava/lang/String; com/mojang/realmsclient/dto/RealmsServer/getMinigameName ()Ljava/lang/String; +MD: com/mojang/realmsclient/dto/RealmsServer/m_87518_ (Ljava/lang/String;)Lcom/mojang/realmsclient/dto/RealmsServer; com/mojang/realmsclient/dto/RealmsServer/parse (Ljava/lang/String;)Lcom/mojang/realmsclient/dto/RealmsServer; +MD: com/mojang/realmsclient/dto/RealmsServer/m_87522_ (Ljava/lang/String;)Lnet/minecraft/client/multiplayer/ServerData; com/mojang/realmsclient/dto/RealmsServer/toServerData (Ljava/lang/String;)Lnet/minecraft/client/multiplayer/ServerData; +MD: com/mojang/realmsclient/dto/RealmsServer/m_87524_ ()Ljava/util/Map; com/mojang/realmsclient/dto/RealmsServer/createEmptySlots ()Ljava/util/Map; +MD: com/mojang/realmsclient/dto/RealmsServer/m_87525_ (Ljava/lang/String;)Lcom/mojang/realmsclient/dto/RealmsServer$State; com/mojang/realmsclient/dto/RealmsServer/getState (Ljava/lang/String;)Lcom/mojang/realmsclient/dto/RealmsServer$State; +MD: com/mojang/realmsclient/dto/RealmsServer/m_87529_ (Ljava/lang/String;)Lcom/mojang/realmsclient/dto/RealmsServer$WorldType; com/mojang/realmsclient/dto/RealmsServer/getWorldType (Ljava/lang/String;)Lcom/mojang/realmsclient/dto/RealmsServer$WorldType; +MD: com/mojang/realmsclient/dto/RealmsServer$McoServerComparator/ (Ljava/lang/String;)V com/mojang/realmsclient/dto/RealmsServer$McoServerComparator/ (Ljava/lang/String;)V +MD: com/mojang/realmsclient/dto/RealmsServer$McoServerComparator/compare (Lcom/mojang/realmsclient/dto/RealmsServer;Lcom/mojang/realmsclient/dto/RealmsServer;)I com/mojang/realmsclient/dto/RealmsServer$McoServerComparator/compare (Lcom/mojang/realmsclient/dto/RealmsServer;Lcom/mojang/realmsclient/dto/RealmsServer;)I +MD: com/mojang/realmsclient/dto/RealmsServer$McoServerComparator/compare (Ljava/lang/Object;Ljava/lang/Object;)I com/mojang/realmsclient/dto/RealmsServer$McoServerComparator/compare (Ljava/lang/Object;Ljava/lang/Object;)I +MD: com/mojang/realmsclient/dto/RealmsServer$State/ ()V com/mojang/realmsclient/dto/RealmsServer$State/ ()V +MD: com/mojang/realmsclient/dto/RealmsServer$State/ (Ljava/lang/String;I)V com/mojang/realmsclient/dto/RealmsServer$State/ (Ljava/lang/String;I)V +MD: com/mojang/realmsclient/dto/RealmsServer$State/m_167288_ ()[Lcom/mojang/realmsclient/dto/RealmsServer$State; com/mojang/realmsclient/dto/RealmsServer$State/$values ()[Lcom/mojang/realmsclient/dto/RealmsServer$State; +MD: com/mojang/realmsclient/dto/RealmsServer$State/valueOf (Ljava/lang/String;)Lcom/mojang/realmsclient/dto/RealmsServer$State; com/mojang/realmsclient/dto/RealmsServer$State/valueOf (Ljava/lang/String;)Lcom/mojang/realmsclient/dto/RealmsServer$State; +MD: com/mojang/realmsclient/dto/RealmsServer$State/values ()[Lcom/mojang/realmsclient/dto/RealmsServer$State; com/mojang/realmsclient/dto/RealmsServer$State/values ()[Lcom/mojang/realmsclient/dto/RealmsServer$State; +MD: com/mojang/realmsclient/dto/RealmsServer$WorldType/ ()V com/mojang/realmsclient/dto/RealmsServer$WorldType/ ()V +MD: com/mojang/realmsclient/dto/RealmsServer$WorldType/ (Ljava/lang/String;I)V com/mojang/realmsclient/dto/RealmsServer$WorldType/ (Ljava/lang/String;I)V +MD: com/mojang/realmsclient/dto/RealmsServer$WorldType/m_167289_ ()[Lcom/mojang/realmsclient/dto/RealmsServer$WorldType; com/mojang/realmsclient/dto/RealmsServer$WorldType/$values ()[Lcom/mojang/realmsclient/dto/RealmsServer$WorldType; +MD: com/mojang/realmsclient/dto/RealmsServer$WorldType/valueOf (Ljava/lang/String;)Lcom/mojang/realmsclient/dto/RealmsServer$WorldType; com/mojang/realmsclient/dto/RealmsServer$WorldType/valueOf (Ljava/lang/String;)Lcom/mojang/realmsclient/dto/RealmsServer$WorldType; +MD: com/mojang/realmsclient/dto/RealmsServer$WorldType/values ()[Lcom/mojang/realmsclient/dto/RealmsServer$WorldType; com/mojang/realmsclient/dto/RealmsServer$WorldType/values ()[Lcom/mojang/realmsclient/dto/RealmsServer$WorldType; +MD: com/mojang/realmsclient/dto/RealmsServerAddress/ ()V com/mojang/realmsclient/dto/RealmsServerAddress/ ()V +MD: com/mojang/realmsclient/dto/RealmsServerAddress/ ()V com/mojang/realmsclient/dto/RealmsServerAddress/ ()V +MD: com/mojang/realmsclient/dto/RealmsServerAddress/m_87571_ (Ljava/lang/String;)Lcom/mojang/realmsclient/dto/RealmsServerAddress; com/mojang/realmsclient/dto/RealmsServerAddress/parse (Ljava/lang/String;)Lcom/mojang/realmsclient/dto/RealmsServerAddress; +MD: com/mojang/realmsclient/dto/RealmsServerList/ ()V com/mojang/realmsclient/dto/RealmsServerList/ ()V +MD: com/mojang/realmsclient/dto/RealmsServerList/ ()V com/mojang/realmsclient/dto/RealmsServerList/ ()V +MD: com/mojang/realmsclient/dto/RealmsServerList/m_87577_ (Ljava/lang/String;)Lcom/mojang/realmsclient/dto/RealmsServerList; com/mojang/realmsclient/dto/RealmsServerList/parse (Ljava/lang/String;)Lcom/mojang/realmsclient/dto/RealmsServerList; +MD: com/mojang/realmsclient/dto/RealmsServerPing/ ()V com/mojang/realmsclient/dto/RealmsServerPing/ ()V +MD: com/mojang/realmsclient/dto/RealmsServerPlayerList/ ()V com/mojang/realmsclient/dto/RealmsServerPlayerList/ ()V +MD: com/mojang/realmsclient/dto/RealmsServerPlayerList/ ()V com/mojang/realmsclient/dto/RealmsServerPlayerList/ ()V +MD: com/mojang/realmsclient/dto/RealmsServerPlayerList/m_87588_ (Lcom/google/gson/JsonArray;)Ljava/util/List; com/mojang/realmsclient/dto/RealmsServerPlayerList/parsePlayers (Lcom/google/gson/JsonArray;)Ljava/util/List; +MD: com/mojang/realmsclient/dto/RealmsServerPlayerList/m_87590_ (Lcom/google/gson/JsonObject;)Lcom/mojang/realmsclient/dto/RealmsServerPlayerList; com/mojang/realmsclient/dto/RealmsServerPlayerList/parse (Lcom/google/gson/JsonObject;)Lcom/mojang/realmsclient/dto/RealmsServerPlayerList; +MD: com/mojang/realmsclient/dto/RealmsServerPlayerLists/ ()V com/mojang/realmsclient/dto/RealmsServerPlayerLists/ ()V +MD: com/mojang/realmsclient/dto/RealmsServerPlayerLists/ ()V com/mojang/realmsclient/dto/RealmsServerPlayerLists/ ()V +MD: com/mojang/realmsclient/dto/RealmsServerPlayerLists/m_87596_ (Ljava/lang/String;)Lcom/mojang/realmsclient/dto/RealmsServerPlayerLists; com/mojang/realmsclient/dto/RealmsServerPlayerLists/parse (Ljava/lang/String;)Lcom/mojang/realmsclient/dto/RealmsServerPlayerLists; +MD: com/mojang/realmsclient/dto/RealmsText/ (Ljava/lang/String;[Ljava/lang/Object;)V com/mojang/realmsclient/dto/RealmsText/ (Ljava/lang/String;[Ljava/lang/Object;)V +MD: com/mojang/realmsclient/dto/RealmsText/m_274486_ (Lcom/google/gson/JsonObject;)Lcom/mojang/realmsclient/dto/RealmsText; com/mojang/realmsclient/dto/RealmsText/parse (Lcom/google/gson/JsonObject;)Lcom/mojang/realmsclient/dto/RealmsText; +MD: com/mojang/realmsclient/dto/RealmsText/m_274597_ (Lnet/minecraft/network/chat/Component;)Lnet/minecraft/network/chat/Component; com/mojang/realmsclient/dto/RealmsText/createComponent (Lnet/minecraft/network/chat/Component;)Lnet/minecraft/network/chat/Component; +MD: com/mojang/realmsclient/dto/RealmsWorldOptions/ ()V com/mojang/realmsclient/dto/RealmsWorldOptions/ ()V +MD: com/mojang/realmsclient/dto/RealmsWorldOptions/ (ZZZZIZIIZLjava/lang/String;)V com/mojang/realmsclient/dto/RealmsWorldOptions/ (ZZZZIZIIZLjava/lang/String;)V +MD: com/mojang/realmsclient/dto/RealmsWorldOptions/clone ()Lcom/mojang/realmsclient/dto/RealmsWorldOptions; com/mojang/realmsclient/dto/RealmsWorldOptions/clone ()Lcom/mojang/realmsclient/dto/RealmsWorldOptions; +MD: com/mojang/realmsclient/dto/RealmsWorldOptions/clone ()Ljava/lang/Object; com/mojang/realmsclient/dto/RealmsWorldOptions/clone ()Ljava/lang/Object; +MD: com/mojang/realmsclient/dto/RealmsWorldOptions/m_87625_ ()Lcom/mojang/realmsclient/dto/RealmsWorldOptions; com/mojang/realmsclient/dto/RealmsWorldOptions/createDefaults ()Lcom/mojang/realmsclient/dto/RealmsWorldOptions; +MD: com/mojang/realmsclient/dto/RealmsWorldOptions/m_87626_ (I)Ljava/lang/String; com/mojang/realmsclient/dto/RealmsWorldOptions/getSlotName (I)Ljava/lang/String; +MD: com/mojang/realmsclient/dto/RealmsWorldOptions/m_87628_ (Lcom/google/gson/JsonObject;)Lcom/mojang/realmsclient/dto/RealmsWorldOptions; com/mojang/realmsclient/dto/RealmsWorldOptions/parse (Lcom/google/gson/JsonObject;)Lcom/mojang/realmsclient/dto/RealmsWorldOptions; +MD: com/mojang/realmsclient/dto/RealmsWorldOptions/m_87630_ (Z)V com/mojang/realmsclient/dto/RealmsWorldOptions/setEmpty (Z)V +MD: com/mojang/realmsclient/dto/RealmsWorldOptions/m_87632_ ()Lcom/mojang/realmsclient/dto/RealmsWorldOptions; com/mojang/realmsclient/dto/RealmsWorldOptions/createEmptyDefaults ()Lcom/mojang/realmsclient/dto/RealmsWorldOptions; +MD: com/mojang/realmsclient/dto/RealmsWorldOptions/m_87633_ (I)Ljava/lang/String; com/mojang/realmsclient/dto/RealmsWorldOptions/getDefaultSlotName (I)Ljava/lang/String; +MD: com/mojang/realmsclient/dto/RealmsWorldOptions/m_87635_ ()Ljava/lang/String; com/mojang/realmsclient/dto/RealmsWorldOptions/toJson ()Ljava/lang/String; +MD: com/mojang/realmsclient/dto/RealmsWorldResetDto/ (Ljava/lang/String;JIZ)V com/mojang/realmsclient/dto/RealmsWorldResetDto/ (Ljava/lang/String;JIZ)V +MD: com/mojang/realmsclient/dto/RegionPingResult/ (Ljava/lang/String;I)V com/mojang/realmsclient/dto/RegionPingResult/ (Ljava/lang/String;I)V +MD: com/mojang/realmsclient/dto/RegionPingResult/m_87652_ ()I com/mojang/realmsclient/dto/RegionPingResult/ping ()I +MD: com/mojang/realmsclient/dto/RegionPingResult/toString ()Ljava/lang/String; com/mojang/realmsclient/dto/RegionPingResult/toString ()Ljava/lang/String; +MD: com/mojang/realmsclient/dto/ServerActivity/ ()V com/mojang/realmsclient/dto/ServerActivity/ ()V +MD: com/mojang/realmsclient/dto/ServerActivity/m_167316_ (Lcom/google/gson/JsonObject;)Lcom/mojang/realmsclient/dto/ServerActivity; com/mojang/realmsclient/dto/ServerActivity/parse (Lcom/google/gson/JsonObject;)Lcom/mojang/realmsclient/dto/ServerActivity; +MD: com/mojang/realmsclient/dto/ServerActivityList/ ()V com/mojang/realmsclient/dto/ServerActivityList/ ()V +MD: com/mojang/realmsclient/dto/ServerActivityList/m_167321_ (Ljava/lang/String;)Lcom/mojang/realmsclient/dto/ServerActivityList; com/mojang/realmsclient/dto/ServerActivityList/parse (Ljava/lang/String;)Lcom/mojang/realmsclient/dto/ServerActivityList; +MD: com/mojang/realmsclient/dto/Subscription/ ()V com/mojang/realmsclient/dto/Subscription/ ()V +MD: com/mojang/realmsclient/dto/Subscription/ ()V com/mojang/realmsclient/dto/Subscription/ ()V +MD: com/mojang/realmsclient/dto/Subscription/m_87672_ (Ljava/lang/String;)Lcom/mojang/realmsclient/dto/Subscription; com/mojang/realmsclient/dto/Subscription/parse (Ljava/lang/String;)Lcom/mojang/realmsclient/dto/Subscription; +MD: com/mojang/realmsclient/dto/Subscription/m_87674_ (Ljava/lang/String;)Lcom/mojang/realmsclient/dto/Subscription$SubscriptionType; com/mojang/realmsclient/dto/Subscription/typeFrom (Ljava/lang/String;)Lcom/mojang/realmsclient/dto/Subscription$SubscriptionType; +MD: com/mojang/realmsclient/dto/Subscription$SubscriptionType/ ()V com/mojang/realmsclient/dto/Subscription$SubscriptionType/ ()V +MD: com/mojang/realmsclient/dto/Subscription$SubscriptionType/ (Ljava/lang/String;I)V com/mojang/realmsclient/dto/Subscription$SubscriptionType/ (Ljava/lang/String;I)V +MD: com/mojang/realmsclient/dto/Subscription$SubscriptionType/m_167323_ ()[Lcom/mojang/realmsclient/dto/Subscription$SubscriptionType; com/mojang/realmsclient/dto/Subscription$SubscriptionType/$values ()[Lcom/mojang/realmsclient/dto/Subscription$SubscriptionType; +MD: com/mojang/realmsclient/dto/Subscription$SubscriptionType/valueOf (Ljava/lang/String;)Lcom/mojang/realmsclient/dto/Subscription$SubscriptionType; com/mojang/realmsclient/dto/Subscription$SubscriptionType/valueOf (Ljava/lang/String;)Lcom/mojang/realmsclient/dto/Subscription$SubscriptionType; +MD: com/mojang/realmsclient/dto/Subscription$SubscriptionType/values ()[Lcom/mojang/realmsclient/dto/Subscription$SubscriptionType; com/mojang/realmsclient/dto/Subscription$SubscriptionType/values ()[Lcom/mojang/realmsclient/dto/Subscription$SubscriptionType; +MD: com/mojang/realmsclient/dto/UploadInfo/ ()V com/mojang/realmsclient/dto/UploadInfo/ ()V +MD: com/mojang/realmsclient/dto/UploadInfo/ (ZLjava/lang/String;Ljava/net/URI;)V com/mojang/realmsclient/dto/UploadInfo/ (ZLjava/lang/String;Ljava/net/URI;)V +MD: com/mojang/realmsclient/dto/UploadInfo/m_87696_ ()Ljava/lang/String; com/mojang/realmsclient/dto/UploadInfo/getToken ()Ljava/lang/String; +MD: com/mojang/realmsclient/dto/UploadInfo/m_87697_ (II)I com/mojang/realmsclient/dto/UploadInfo/selectPortOrDefault (II)I +MD: com/mojang/realmsclient/dto/UploadInfo/m_87700_ (Ljava/lang/String;)Lcom/mojang/realmsclient/dto/UploadInfo; com/mojang/realmsclient/dto/UploadInfo/parse (Ljava/lang/String;)Lcom/mojang/realmsclient/dto/UploadInfo; +MD: com/mojang/realmsclient/dto/UploadInfo/m_87702_ (Ljava/lang/String;I)Ljava/net/URI; com/mojang/realmsclient/dto/UploadInfo/assembleUri (Ljava/lang/String;I)Ljava/net/URI; +MD: com/mojang/realmsclient/dto/UploadInfo/m_87705_ (Ljava/lang/String;Ljava/util/regex/Matcher;)Ljava/lang/String; com/mojang/realmsclient/dto/UploadInfo/ensureEndpointSchema (Ljava/lang/String;Ljava/util/regex/Matcher;)Ljava/lang/String; +MD: com/mojang/realmsclient/dto/UploadInfo/m_87708_ ()Ljava/net/URI; com/mojang/realmsclient/dto/UploadInfo/getUploadEndpoint ()Ljava/net/URI; +MD: com/mojang/realmsclient/dto/UploadInfo/m_87709_ (Ljava/lang/String;)Ljava/lang/String; com/mojang/realmsclient/dto/UploadInfo/createRequest (Ljava/lang/String;)Ljava/lang/String; +MD: com/mojang/realmsclient/dto/UploadInfo/m_87711_ ()Z com/mojang/realmsclient/dto/UploadInfo/isWorldClosed ()Z +MD: com/mojang/realmsclient/dto/ValueObject/ ()V com/mojang/realmsclient/dto/ValueObject/ ()V +MD: com/mojang/realmsclient/dto/ValueObject/m_87713_ (Ljava/lang/reflect/Field;)Ljava/lang/String; com/mojang/realmsclient/dto/ValueObject/getName (Ljava/lang/reflect/Field;)Ljava/lang/String; +MD: com/mojang/realmsclient/dto/ValueObject/m_87715_ (Ljava/lang/reflect/Field;)Z com/mojang/realmsclient/dto/ValueObject/isStatic (Ljava/lang/reflect/Field;)Z +MD: com/mojang/realmsclient/dto/ValueObject/toString ()Ljava/lang/String; com/mojang/realmsclient/dto/ValueObject/toString ()Ljava/lang/String; +MD: com/mojang/realmsclient/dto/WorldDownload/ ()V com/mojang/realmsclient/dto/WorldDownload/ ()V +MD: com/mojang/realmsclient/dto/WorldDownload/ ()V com/mojang/realmsclient/dto/WorldDownload/ ()V +MD: com/mojang/realmsclient/dto/WorldDownload/m_87724_ (Ljava/lang/String;)Lcom/mojang/realmsclient/dto/WorldDownload; com/mojang/realmsclient/dto/WorldDownload/parse (Ljava/lang/String;)Lcom/mojang/realmsclient/dto/WorldDownload; +MD: com/mojang/realmsclient/dto/WorldTemplate/ ()V com/mojang/realmsclient/dto/WorldTemplate/ ()V +MD: com/mojang/realmsclient/dto/WorldTemplate/ ()V com/mojang/realmsclient/dto/WorldTemplate/ ()V +MD: com/mojang/realmsclient/dto/WorldTemplate/m_87738_ (Lcom/google/gson/JsonObject;)Lcom/mojang/realmsclient/dto/WorldTemplate; com/mojang/realmsclient/dto/WorldTemplate/parse (Lcom/google/gson/JsonObject;)Lcom/mojang/realmsclient/dto/WorldTemplate; +MD: com/mojang/realmsclient/dto/WorldTemplate$WorldTemplateType/ ()V com/mojang/realmsclient/dto/WorldTemplate$WorldTemplateType/ ()V +MD: com/mojang/realmsclient/dto/WorldTemplate$WorldTemplateType/ (Ljava/lang/String;I)V com/mojang/realmsclient/dto/WorldTemplate$WorldTemplateType/ (Ljava/lang/String;I)V +MD: com/mojang/realmsclient/dto/WorldTemplate$WorldTemplateType/m_167326_ ()[Lcom/mojang/realmsclient/dto/WorldTemplate$WorldTemplateType; com/mojang/realmsclient/dto/WorldTemplate$WorldTemplateType/$values ()[Lcom/mojang/realmsclient/dto/WorldTemplate$WorldTemplateType; +MD: com/mojang/realmsclient/dto/WorldTemplate$WorldTemplateType/valueOf (Ljava/lang/String;)Lcom/mojang/realmsclient/dto/WorldTemplate$WorldTemplateType; com/mojang/realmsclient/dto/WorldTemplate$WorldTemplateType/valueOf (Ljava/lang/String;)Lcom/mojang/realmsclient/dto/WorldTemplate$WorldTemplateType; +MD: com/mojang/realmsclient/dto/WorldTemplate$WorldTemplateType/values ()[Lcom/mojang/realmsclient/dto/WorldTemplate$WorldTemplateType; com/mojang/realmsclient/dto/WorldTemplate$WorldTemplateType/values ()[Lcom/mojang/realmsclient/dto/WorldTemplate$WorldTemplateType; +MD: com/mojang/realmsclient/dto/WorldTemplatePaginatedList/ ()V com/mojang/realmsclient/dto/WorldTemplatePaginatedList/ ()V +MD: com/mojang/realmsclient/dto/WorldTemplatePaginatedList/ (I)V com/mojang/realmsclient/dto/WorldTemplatePaginatedList/ (I)V +MD: com/mojang/realmsclient/dto/WorldTemplatePaginatedList/ ()V com/mojang/realmsclient/dto/WorldTemplatePaginatedList/ ()V +MD: com/mojang/realmsclient/dto/WorldTemplatePaginatedList/m_167327_ ()Z com/mojang/realmsclient/dto/WorldTemplatePaginatedList/isLastPage ()Z +MD: com/mojang/realmsclient/dto/WorldTemplatePaginatedList/m_87762_ (Ljava/lang/String;)Lcom/mojang/realmsclient/dto/WorldTemplatePaginatedList; com/mojang/realmsclient/dto/WorldTemplatePaginatedList/parse (Ljava/lang/String;)Lcom/mojang/realmsclient/dto/WorldTemplatePaginatedList; +MD: com/mojang/realmsclient/exception/RealmsDefaultUncaughtExceptionHandler/ (Lorg/slf4j/Logger;)V com/mojang/realmsclient/exception/RealmsDefaultUncaughtExceptionHandler/ (Lorg/slf4j/Logger;)V +MD: com/mojang/realmsclient/exception/RealmsDefaultUncaughtExceptionHandler/uncaughtException (Ljava/lang/Thread;Ljava/lang/Throwable;)V com/mojang/realmsclient/exception/RealmsDefaultUncaughtExceptionHandler/uncaughtException (Ljava/lang/Thread;Ljava/lang/Throwable;)V +MD: com/mojang/realmsclient/exception/RealmsHttpException/ (Ljava/lang/String;Ljava/lang/Exception;)V com/mojang/realmsclient/exception/RealmsHttpException/ (Ljava/lang/String;Ljava/lang/Exception;)V +MD: com/mojang/realmsclient/exception/RealmsServiceException/ (ILjava/lang/String;Lcom/mojang/realmsclient/client/RealmsError;)V com/mojang/realmsclient/exception/RealmsServiceException/ (ILjava/lang/String;Lcom/mojang/realmsclient/client/RealmsError;)V +MD: com/mojang/realmsclient/exception/RealmsServiceException/ (ILjava/lang/String;)V com/mojang/realmsclient/exception/RealmsServiceException/ (ILjava/lang/String;)V +MD: com/mojang/realmsclient/exception/RealmsServiceException/getMessage ()Ljava/lang/String; com/mojang/realmsclient/exception/RealmsServiceException/getMessage ()Ljava/lang/String; +MD: com/mojang/realmsclient/exception/RealmsServiceException/m_200945_ (I)I com/mojang/realmsclient/exception/RealmsServiceException/realmsErrorCodeOrDefault (I)I +MD: com/mojang/realmsclient/exception/RetryCallException/ (II)V com/mojang/realmsclient/exception/RetryCallException/ (II)V +MD: com/mojang/realmsclient/gui/ErrorCallback/m_5673_ (Lnet/minecraft/network/chat/Component;)V com/mojang/realmsclient/gui/ErrorCallback/error (Lnet/minecraft/network/chat/Component;)V +MD: com/mojang/realmsclient/gui/ErrorCallback/m_87791_ (Ljava/lang/String;)V com/mojang/realmsclient/gui/ErrorCallback/error (Ljava/lang/String;)V +MD: com/mojang/realmsclient/gui/RealmsDataFetcher/ (Lcom/mojang/realmsclient/client/RealmsClient;)V com/mojang/realmsclient/gui/RealmsDataFetcher/ (Lcom/mojang/realmsclient/client/RealmsClient;)V +MD: com/mojang/realmsclient/gui/RealmsDataFetcher/m_167339_ (Lcom/mojang/realmsclient/client/RealmsClient;)Ljava/util/List; com/mojang/realmsclient/gui/RealmsDataFetcher/lambda$new$0 (Lcom/mojang/realmsclient/client/RealmsClient;)Ljava/util/List; +MD: com/mojang/realmsclient/gui/RealmsNewsManager/ (Lcom/mojang/realmsclient/util/RealmsPersistence;)V com/mojang/realmsclient/gui/RealmsNewsManager/ (Lcom/mojang/realmsclient/util/RealmsPersistence;)V +MD: com/mojang/realmsclient/gui/RealmsNewsManager/m_239190_ (Lcom/mojang/realmsclient/dto/RealmsNews;)V com/mojang/realmsclient/gui/RealmsNewsManager/updateUnreadNews (Lcom/mojang/realmsclient/dto/RealmsNews;)V +MD: com/mojang/realmsclient/gui/RealmsNewsManager/m_239499_ ()Z com/mojang/realmsclient/gui/RealmsNewsManager/hasUnreadNews ()Z +MD: com/mojang/realmsclient/gui/RealmsNewsManager/m_240058_ ()Ljava/lang/String; com/mojang/realmsclient/gui/RealmsNewsManager/newsLink ()Ljava/lang/String; +MD: com/mojang/realmsclient/gui/RealmsNewsManager/m_240152_ (Lcom/mojang/realmsclient/dto/RealmsNews;)Lcom/mojang/realmsclient/util/RealmsPersistence$RealmsPersistenceData; com/mojang/realmsclient/gui/RealmsNewsManager/updateNewsStorage (Lcom/mojang/realmsclient/dto/RealmsNews;)Lcom/mojang/realmsclient/util/RealmsPersistence$RealmsPersistenceData; +MD: com/mojang/realmsclient/gui/RealmsServerList/ (Lnet/minecraft/client/Minecraft;)V com/mojang/realmsclient/gui/RealmsServerList/ (Lnet/minecraft/client/Minecraft;)V +MD: com/mojang/realmsclient/gui/RealmsServerList/m_239868_ (Ljava/util/List;)Ljava/util/List; com/mojang/realmsclient/gui/RealmsServerList/updateServersList (Ljava/util/List;)Ljava/util/List; +MD: com/mojang/realmsclient/gui/RealmsServerList/m_240076_ (Lcom/mojang/realmsclient/dto/RealmsServer;)Ljava/util/List; com/mojang/realmsclient/gui/RealmsServerList/removeItem (Lcom/mojang/realmsclient/dto/RealmsServer;)Ljava/util/List; +MD: com/mojang/realmsclient/gui/RealmsWorldSlotButton/ ()V com/mojang/realmsclient/gui/RealmsWorldSlotButton/ ()V +MD: com/mojang/realmsclient/gui/RealmsWorldSlotButton/ (IIIILjava/util/function/Supplier;Ljava/util/function/Consumer;ILnet/minecraft/client/gui/components/Button$OnPress;)V com/mojang/realmsclient/gui/RealmsWorldSlotButton/ (IIIILjava/util/function/Supplier;Ljava/util/function/Consumer;ILnet/minecraft/client/gui/components/Button$OnPress;)V +MD: com/mojang/realmsclient/gui/RealmsWorldSlotButton/m_280493_ (Lnet/minecraft/client/gui/GuiGraphics;IIIIZLjava/lang/String;IJLjava/lang/String;ZZLcom/mojang/realmsclient/gui/RealmsWorldSlotButton$Action;Lnet/minecraft/network/chat/Component;)V com/mojang/realmsclient/gui/RealmsWorldSlotButton/drawSlotFrame (Lnet/minecraft/client/gui/GuiGraphics;IIIIZLjava/lang/String;IJLjava/lang/String;ZZLcom/mojang/realmsclient/gui/RealmsWorldSlotButton$Action;Lnet/minecraft/network/chat/Component;)V +MD: com/mojang/realmsclient/gui/RealmsWorldSlotButton/m_280498_ (Lnet/minecraft/client/gui/GuiGraphics;II)V com/mojang/realmsclient/gui/RealmsWorldSlotButton/renderCheckMark (Lnet/minecraft/client/gui/GuiGraphics;II)V +MD: com/mojang/realmsclient/gui/RealmsWorldSlotButton/m_87937_ ()Lcom/mojang/realmsclient/gui/RealmsWorldSlotButton$State; com/mojang/realmsclient/gui/RealmsWorldSlotButton/getState ()Lcom/mojang/realmsclient/gui/RealmsWorldSlotButton$State; +MD: com/mojang/realmsclient/gui/RealmsWorldSlotButton/m_87953_ (Lcom/mojang/realmsclient/dto/RealmsServer;Ljava/lang/String;ZZLcom/mojang/realmsclient/gui/RealmsWorldSlotButton$Action;)Lcom/mojang/datafixers/util/Pair; com/mojang/realmsclient/gui/RealmsWorldSlotButton/getTooltipAndNarration (Lcom/mojang/realmsclient/dto/RealmsServer;Ljava/lang/String;ZZLcom/mojang/realmsclient/gui/RealmsWorldSlotButton$Action;)Lcom/mojang/datafixers/util/Pair; +MD: com/mojang/realmsclient/gui/RealmsWorldSlotButton/m_87959_ (Lcom/mojang/realmsclient/dto/RealmsServer;ZZ)Lcom/mojang/realmsclient/gui/RealmsWorldSlotButton$Action; com/mojang/realmsclient/gui/RealmsWorldSlotButton/getAction (Lcom/mojang/realmsclient/dto/RealmsServer;ZZ)Lcom/mojang/realmsclient/gui/RealmsWorldSlotButton$Action; +MD: com/mojang/realmsclient/gui/RealmsWorldSlotButton/m_87963_ (Lnet/minecraft/client/gui/GuiGraphics;IIF)V com/mojang/realmsclient/gui/RealmsWorldSlotButton/renderWidget (Lnet/minecraft/client/gui/GuiGraphics;IIF)V +MD: com/mojang/realmsclient/gui/RealmsWorldSlotButton/m_87968_ ()V com/mojang/realmsclient/gui/RealmsWorldSlotButton/tick ()V +MD: com/mojang/realmsclient/gui/RealmsWorldSlotButton$Action/ ()V com/mojang/realmsclient/gui/RealmsWorldSlotButton$Action/ ()V +MD: com/mojang/realmsclient/gui/RealmsWorldSlotButton$Action/ (Ljava/lang/String;I)V com/mojang/realmsclient/gui/RealmsWorldSlotButton$Action/ (Ljava/lang/String;I)V +MD: com/mojang/realmsclient/gui/RealmsWorldSlotButton$Action/m_167351_ ()[Lcom/mojang/realmsclient/gui/RealmsWorldSlotButton$Action; com/mojang/realmsclient/gui/RealmsWorldSlotButton$Action/$values ()[Lcom/mojang/realmsclient/gui/RealmsWorldSlotButton$Action; +MD: com/mojang/realmsclient/gui/RealmsWorldSlotButton$Action/valueOf (Ljava/lang/String;)Lcom/mojang/realmsclient/gui/RealmsWorldSlotButton$Action; com/mojang/realmsclient/gui/RealmsWorldSlotButton$Action/valueOf (Ljava/lang/String;)Lcom/mojang/realmsclient/gui/RealmsWorldSlotButton$Action; +MD: com/mojang/realmsclient/gui/RealmsWorldSlotButton$Action/values ()[Lcom/mojang/realmsclient/gui/RealmsWorldSlotButton$Action; com/mojang/realmsclient/gui/RealmsWorldSlotButton$Action/values ()[Lcom/mojang/realmsclient/gui/RealmsWorldSlotButton$Action; +MD: com/mojang/realmsclient/gui/RealmsWorldSlotButton$State/ (ZLjava/lang/String;JLjava/lang/String;ZZLcom/mojang/realmsclient/gui/RealmsWorldSlotButton$Action;Lnet/minecraft/network/chat/Component;)V com/mojang/realmsclient/gui/RealmsWorldSlotButton$State/ (ZLjava/lang/String;JLjava/lang/String;ZZLcom/mojang/realmsclient/gui/RealmsWorldSlotButton$Action;Lnet/minecraft/network/chat/Component;)V +MD: com/mojang/realmsclient/gui/RowButton/ (IIII)V com/mojang/realmsclient/gui/RowButton/ (IIII)V +MD: com/mojang/realmsclient/gui/RowButton/m_280516_ (Lnet/minecraft/client/gui/GuiGraphics;Ljava/util/List;Lnet/minecraft/realms/RealmsObjectSelectionList;IIII)V com/mojang/realmsclient/gui/RowButton/drawButtonsInRow (Lnet/minecraft/client/gui/GuiGraphics;Ljava/util/List;Lnet/minecraft/realms/RealmsObjectSelectionList;IIII)V +MD: com/mojang/realmsclient/gui/RowButton/m_7516_ (I)V com/mojang/realmsclient/gui/RowButton/onClick (I)V +MD: com/mojang/realmsclient/gui/RowButton/m_7537_ (Lnet/minecraft/client/gui/GuiGraphics;IIZ)V com/mojang/realmsclient/gui/RowButton/draw (Lnet/minecraft/client/gui/GuiGraphics;IIZ)V +MD: com/mojang/realmsclient/gui/RowButton/m_88016_ ()I com/mojang/realmsclient/gui/RowButton/getRight ()I +MD: com/mojang/realmsclient/gui/RowButton/m_88018_ (Lnet/minecraft/client/gui/GuiGraphics;IIII)V com/mojang/realmsclient/gui/RowButton/drawForRowAt (Lnet/minecraft/client/gui/GuiGraphics;IIII)V +MD: com/mojang/realmsclient/gui/RowButton/m_88036_ (Lnet/minecraft/realms/RealmsObjectSelectionList;Lnet/minecraft/client/gui/components/ObjectSelectionList$Entry;Ljava/util/List;IDD)V com/mojang/realmsclient/gui/RowButton/rowButtonMouseClicked (Lnet/minecraft/realms/RealmsObjectSelectionList;Lnet/minecraft/client/gui/components/ObjectSelectionList$Entry;Ljava/util/List;IDD)V +MD: com/mojang/realmsclient/gui/RowButton/m_88043_ ()I com/mojang/realmsclient/gui/RowButton/getBottom ()I +MD: com/mojang/realmsclient/gui/screens/RealmsBackupInfoScreen/ ()V com/mojang/realmsclient/gui/screens/RealmsBackupInfoScreen/ ()V +MD: com/mojang/realmsclient/gui/screens/RealmsBackupInfoScreen/ (Lnet/minecraft/client/gui/screens/Screen;Lcom/mojang/realmsclient/dto/Backup;)V com/mojang/realmsclient/gui/screens/RealmsBackupInfoScreen/ (Lnet/minecraft/client/gui/screens/Screen;Lcom/mojang/realmsclient/dto/Backup;)V +MD: com/mojang/realmsclient/gui/screens/RealmsBackupInfoScreen/m_279671_ (Lnet/minecraft/client/gui/components/Button;)V com/mojang/realmsclient/gui/screens/RealmsBackupInfoScreen/lambda$init$0 (Lnet/minecraft/client/gui/components/Button;)V +MD: com/mojang/realmsclient/gui/screens/RealmsBackupInfoScreen/m_287193_ (Lcom/mojang/realmsclient/gui/screens/RealmsBackupInfoScreen;)Lnet/minecraft/client/gui/Font; com/mojang/realmsclient/gui/screens/RealmsBackupInfoScreen/access$100 (Lcom/mojang/realmsclient/gui/screens/RealmsBackupInfoScreen;)Lnet/minecraft/client/gui/Font; +MD: com/mojang/realmsclient/gui/screens/RealmsBackupInfoScreen/m_287274_ (Lcom/mojang/realmsclient/gui/screens/RealmsBackupInfoScreen;)Lnet/minecraft/client/gui/Font; com/mojang/realmsclient/gui/screens/RealmsBackupInfoScreen/access$000 (Lcom/mojang/realmsclient/gui/screens/RealmsBackupInfoScreen;)Lnet/minecraft/client/gui/Font; +MD: com/mojang/realmsclient/gui/screens/RealmsBackupInfoScreen/m_7856_ ()V com/mojang/realmsclient/gui/screens/RealmsBackupInfoScreen/init ()V +MD: com/mojang/realmsclient/gui/screens/RealmsBackupInfoScreen/m_7933_ (III)Z com/mojang/realmsclient/gui/screens/RealmsBackupInfoScreen/keyPressed (III)Z +MD: com/mojang/realmsclient/gui/screens/RealmsBackupInfoScreen/m_86600_ ()V com/mojang/realmsclient/gui/screens/RealmsBackupInfoScreen/tick ()V +MD: com/mojang/realmsclient/gui/screens/RealmsBackupInfoScreen/m_88067_ (Ljava/lang/String;Ljava/lang/String;)Lnet/minecraft/network/chat/Component; com/mojang/realmsclient/gui/screens/RealmsBackupInfoScreen/checkForSpecificMetadata (Ljava/lang/String;Ljava/lang/String;)Lnet/minecraft/network/chat/Component; +MD: com/mojang/realmsclient/gui/screens/RealmsBackupInfoScreen/m_88073_ (Ljava/lang/String;)Lnet/minecraft/network/chat/Component; com/mojang/realmsclient/gui/screens/RealmsBackupInfoScreen/gameDifficultyMetadata (Ljava/lang/String;)Lnet/minecraft/network/chat/Component; +MD: com/mojang/realmsclient/gui/screens/RealmsBackupInfoScreen/m_88075_ (Ljava/lang/String;)Lnet/minecraft/network/chat/Component; com/mojang/realmsclient/gui/screens/RealmsBackupInfoScreen/gameModeMetadata (Ljava/lang/String;)Lnet/minecraft/network/chat/Component; +MD: com/mojang/realmsclient/gui/screens/RealmsBackupInfoScreen/m_88315_ (Lnet/minecraft/client/gui/GuiGraphics;IIF)V com/mojang/realmsclient/gui/screens/RealmsBackupInfoScreen/render (Lnet/minecraft/client/gui/GuiGraphics;IIF)V +MD: com/mojang/realmsclient/gui/screens/RealmsBackupInfoScreen$BackupInfoList/ (Lcom/mojang/realmsclient/gui/screens/RealmsBackupInfoScreen;Lnet/minecraft/client/Minecraft;)V com/mojang/realmsclient/gui/screens/RealmsBackupInfoScreen$BackupInfoList/ (Lcom/mojang/realmsclient/gui/screens/RealmsBackupInfoScreen;Lnet/minecraft/client/Minecraft;)V +MD: com/mojang/realmsclient/gui/screens/RealmsBackupInfoScreen$BackupInfoList/m_88083_ (Ljava/lang/String;Ljava/lang/String;)V com/mojang/realmsclient/gui/screens/RealmsBackupInfoScreen$BackupInfoList/lambda$new$0 (Ljava/lang/String;Ljava/lang/String;)V +MD: com/mojang/realmsclient/gui/screens/RealmsBackupInfoScreen$BackupInfoListEntry/ ()V com/mojang/realmsclient/gui/screens/RealmsBackupInfoScreen$BackupInfoListEntry/ ()V +MD: com/mojang/realmsclient/gui/screens/RealmsBackupInfoScreen$BackupInfoListEntry/ (Lcom/mojang/realmsclient/gui/screens/RealmsBackupInfoScreen;Ljava/lang/String;Ljava/lang/String;)V com/mojang/realmsclient/gui/screens/RealmsBackupInfoScreen$BackupInfoListEntry/ (Lcom/mojang/realmsclient/gui/screens/RealmsBackupInfoScreen;Ljava/lang/String;Ljava/lang/String;)V +MD: com/mojang/realmsclient/gui/screens/RealmsBackupInfoScreen$BackupInfoListEntry/m_142172_ ()Lnet/minecraft/network/chat/Component; com/mojang/realmsclient/gui/screens/RealmsBackupInfoScreen$BackupInfoListEntry/getNarration ()Lnet/minecraft/network/chat/Component; +MD: com/mojang/realmsclient/gui/screens/RealmsBackupInfoScreen$BackupInfoListEntry/m_287178_ (Ljava/lang/String;)Lnet/minecraft/network/chat/Component; com/mojang/realmsclient/gui/screens/RealmsBackupInfoScreen$BackupInfoListEntry/translateKey (Ljava/lang/String;)Lnet/minecraft/network/chat/Component; +MD: com/mojang/realmsclient/gui/screens/RealmsBackupInfoScreen$BackupInfoListEntry/m_6311_ (Lnet/minecraft/client/gui/GuiGraphics;IIIIIIIZF)V com/mojang/realmsclient/gui/screens/RealmsBackupInfoScreen$BackupInfoListEntry/render (Lnet/minecraft/client/gui/GuiGraphics;IIIIIIIZF)V +MD: com/mojang/realmsclient/gui/screens/RealmsBackupScreen/ ()V com/mojang/realmsclient/gui/screens/RealmsBackupScreen/ ()V +MD: com/mojang/realmsclient/gui/screens/RealmsBackupScreen/ (Lcom/mojang/realmsclient/gui/screens/RealmsConfigureWorldScreen;Lcom/mojang/realmsclient/dto/RealmsServer;I)V com/mojang/realmsclient/gui/screens/RealmsBackupScreen/ (Lcom/mojang/realmsclient/gui/screens/RealmsConfigureWorldScreen;Lcom/mojang/realmsclient/dto/RealmsServer;I)V +MD: com/mojang/realmsclient/gui/screens/RealmsBackupScreen/m_167356_ (Lcom/mojang/realmsclient/gui/screens/RealmsBackupScreen;)Lnet/minecraft/client/Minecraft; com/mojang/realmsclient/gui/screens/RealmsBackupScreen/access$000 (Lcom/mojang/realmsclient/gui/screens/RealmsBackupScreen;)Lnet/minecraft/client/Minecraft; +MD: com/mojang/realmsclient/gui/screens/RealmsBackupScreen/m_167358_ (Lcom/mojang/realmsclient/gui/screens/RealmsBackupScreen;)Lnet/minecraft/client/gui/Font; com/mojang/realmsclient/gui/screens/RealmsBackupScreen/access$100 (Lcom/mojang/realmsclient/gui/screens/RealmsBackupScreen;)Lnet/minecraft/client/gui/Font; +MD: com/mojang/realmsclient/gui/screens/RealmsBackupScreen/m_167360_ (Lcom/mojang/realmsclient/gui/screens/RealmsBackupScreen;)Lnet/minecraft/client/gui/Font; com/mojang/realmsclient/gui/screens/RealmsBackupScreen/access$200 (Lcom/mojang/realmsclient/gui/screens/RealmsBackupScreen;)Lnet/minecraft/client/gui/Font; +MD: com/mojang/realmsclient/gui/screens/RealmsBackupScreen/m_278623_ (Lcom/mojang/realmsclient/gui/screens/RealmsBackupScreen;)Lnet/minecraft/client/Minecraft; com/mojang/realmsclient/gui/screens/RealmsBackupScreen/access$300 (Lcom/mojang/realmsclient/gui/screens/RealmsBackupScreen;)Lnet/minecraft/client/Minecraft; +MD: com/mojang/realmsclient/gui/screens/RealmsBackupScreen/m_279672_ (Z)V com/mojang/realmsclient/gui/screens/RealmsBackupScreen/lambda$downloadClicked$5 (Z)V +MD: com/mojang/realmsclient/gui/screens/RealmsBackupScreen/m_279673_ (Lnet/minecraft/client/gui/components/Button;)V com/mojang/realmsclient/gui/screens/RealmsBackupScreen/lambda$init$3 (Lnet/minecraft/client/gui/components/Button;)V +MD: com/mojang/realmsclient/gui/screens/RealmsBackupScreen/m_279674_ (Lnet/minecraft/client/gui/components/Button;)V com/mojang/realmsclient/gui/screens/RealmsBackupScreen/lambda$init$2 (Lnet/minecraft/client/gui/components/Button;)V +MD: com/mojang/realmsclient/gui/screens/RealmsBackupScreen/m_279675_ (Z)V com/mojang/realmsclient/gui/screens/RealmsBackupScreen/lambda$restoreClicked$4 (Z)V +MD: com/mojang/realmsclient/gui/screens/RealmsBackupScreen/m_7856_ ()V com/mojang/realmsclient/gui/screens/RealmsBackupScreen/init ()V +MD: com/mojang/realmsclient/gui/screens/RealmsBackupScreen/m_7933_ (III)Z com/mojang/realmsclient/gui/screens/RealmsBackupScreen/keyPressed (III)Z +MD: com/mojang/realmsclient/gui/screens/RealmsBackupScreen/m_88166_ (I)V com/mojang/realmsclient/gui/screens/RealmsBackupScreen/restoreClicked (I)V +MD: com/mojang/realmsclient/gui/screens/RealmsBackupScreen/m_88178_ (Lnet/minecraft/client/gui/components/Button;)V com/mojang/realmsclient/gui/screens/RealmsBackupScreen/lambda$init$1 (Lnet/minecraft/client/gui/components/Button;)V +MD: com/mojang/realmsclient/gui/screens/RealmsBackupScreen/m_88184_ (Lnet/minecraft/client/gui/components/Button;)V com/mojang/realmsclient/gui/screens/RealmsBackupScreen/lambda$init$0 (Lnet/minecraft/client/gui/components/Button;)V +MD: com/mojang/realmsclient/gui/screens/RealmsBackupScreen/m_88204_ ()V com/mojang/realmsclient/gui/screens/RealmsBackupScreen/updateButtonStates ()V +MD: com/mojang/realmsclient/gui/screens/RealmsBackupScreen/m_88205_ ()Z com/mojang/realmsclient/gui/screens/RealmsBackupScreen/shouldChangesButtonBeVisible ()Z +MD: com/mojang/realmsclient/gui/screens/RealmsBackupScreen/m_88206_ ()Z com/mojang/realmsclient/gui/screens/RealmsBackupScreen/shouldRestoreButtonBeVisible ()Z +MD: com/mojang/realmsclient/gui/screens/RealmsBackupScreen/m_88207_ ()V com/mojang/realmsclient/gui/screens/RealmsBackupScreen/downloadClicked ()V +MD: com/mojang/realmsclient/gui/screens/RealmsBackupScreen/m_88208_ ()V com/mojang/realmsclient/gui/screens/RealmsBackupScreen/downloadWorldData ()V +MD: com/mojang/realmsclient/gui/screens/RealmsBackupScreen/m_88209_ ()V com/mojang/realmsclient/gui/screens/RealmsBackupScreen/restore ()V +MD: com/mojang/realmsclient/gui/screens/RealmsBackupScreen/m_88315_ (Lnet/minecraft/client/gui/GuiGraphics;IIF)V com/mojang/realmsclient/gui/screens/RealmsBackupScreen/render (Lnet/minecraft/client/gui/GuiGraphics;IIF)V +MD: com/mojang/realmsclient/gui/screens/RealmsBackupScreen$1/ (Lcom/mojang/realmsclient/gui/screens/RealmsBackupScreen;Ljava/lang/String;)V com/mojang/realmsclient/gui/screens/RealmsBackupScreen$1/ (Lcom/mojang/realmsclient/gui/screens/RealmsBackupScreen;Ljava/lang/String;)V +MD: com/mojang/realmsclient/gui/screens/RealmsBackupScreen$1/m_279676_ (Ljava/util/List;)V com/mojang/realmsclient/gui/screens/RealmsBackupScreen$1/lambda$run$0 (Ljava/util/List;)V +MD: com/mojang/realmsclient/gui/screens/RealmsBackupScreen$1/run ()V com/mojang/realmsclient/gui/screens/RealmsBackupScreen$1/run ()V +MD: com/mojang/realmsclient/gui/screens/RealmsBackupScreen$BackupObjectSelectionList/ (Lcom/mojang/realmsclient/gui/screens/RealmsBackupScreen;)V com/mojang/realmsclient/gui/screens/RealmsBackupScreen$BackupObjectSelectionList/ (Lcom/mojang/realmsclient/gui/screens/RealmsBackupScreen;)V +MD: com/mojang/realmsclient/gui/screens/RealmsBackupScreen$BackupObjectSelectionList/m_5756_ ()I com/mojang/realmsclient/gui/screens/RealmsBackupScreen$BackupObjectSelectionList/getScrollbarPosition ()I +MD: com/mojang/realmsclient/gui/screens/RealmsBackupScreen$BackupObjectSelectionList/m_5759_ ()I com/mojang/realmsclient/gui/screens/RealmsBackupScreen$BackupObjectSelectionList/getRowWidth ()I +MD: com/mojang/realmsclient/gui/screens/RealmsBackupScreen$BackupObjectSelectionList/m_5775_ ()I com/mojang/realmsclient/gui/screens/RealmsBackupScreen$BackupObjectSelectionList/getMaxPosition ()I +MD: com/mojang/realmsclient/gui/screens/RealmsBackupScreen$BackupObjectSelectionList/m_6987_ (Lcom/mojang/realmsclient/gui/screens/RealmsBackupScreen$Entry;)V com/mojang/realmsclient/gui/screens/RealmsBackupScreen$BackupObjectSelectionList/setSelected (Lcom/mojang/realmsclient/gui/screens/RealmsBackupScreen$Entry;)V +MD: com/mojang/realmsclient/gui/screens/RealmsBackupScreen$BackupObjectSelectionList/m_6987_ (Lnet/minecraft/client/gui/components/AbstractSelectionList$Entry;)V com/mojang/realmsclient/gui/screens/RealmsBackupScreen$BackupObjectSelectionList/setSelected (Lnet/minecraft/client/gui/components/AbstractSelectionList$Entry;)V +MD: com/mojang/realmsclient/gui/screens/RealmsBackupScreen$BackupObjectSelectionList/m_7109_ (I)V com/mojang/realmsclient/gui/screens/RealmsBackupScreen$BackupObjectSelectionList/selectItem (I)V +MD: com/mojang/realmsclient/gui/screens/RealmsBackupScreen$BackupObjectSelectionList/m_7733_ (Lnet/minecraft/client/gui/GuiGraphics;)V com/mojang/realmsclient/gui/screens/RealmsBackupScreen$BackupObjectSelectionList/renderBackground (Lnet/minecraft/client/gui/GuiGraphics;)V +MD: com/mojang/realmsclient/gui/screens/RealmsBackupScreen$BackupObjectSelectionList/m_88234_ (Lcom/mojang/realmsclient/dto/Backup;)V com/mojang/realmsclient/gui/screens/RealmsBackupScreen$BackupObjectSelectionList/addEntry (Lcom/mojang/realmsclient/dto/Backup;)V +MD: com/mojang/realmsclient/gui/screens/RealmsBackupScreen$BackupObjectSelectionList/m_88241_ (I)V com/mojang/realmsclient/gui/screens/RealmsBackupScreen$BackupObjectSelectionList/selectInviteListItem (I)V +MD: com/mojang/realmsclient/gui/screens/RealmsBackupScreen$Entry/ (Lcom/mojang/realmsclient/gui/screens/RealmsBackupScreen;Lcom/mojang/realmsclient/dto/Backup;)V com/mojang/realmsclient/gui/screens/RealmsBackupScreen$Entry/ (Lcom/mojang/realmsclient/gui/screens/RealmsBackupScreen;Lcom/mojang/realmsclient/dto/Backup;)V +MD: com/mojang/realmsclient/gui/screens/RealmsBackupScreen$Entry/m_142172_ ()Lnet/minecraft/network/chat/Component; com/mojang/realmsclient/gui/screens/RealmsBackupScreen$Entry/getNarration ()Lnet/minecraft/network/chat/Component; +MD: com/mojang/realmsclient/gui/screens/RealmsBackupScreen$Entry/m_278652_ (Lnet/minecraft/client/gui/components/Button;)V com/mojang/realmsclient/gui/screens/RealmsBackupScreen$Entry/lambda$addChangesButton$0 (Lnet/minecraft/client/gui/components/Button;)V +MD: com/mojang/realmsclient/gui/screens/RealmsBackupScreen$Entry/m_278673_ (Lnet/minecraft/client/gui/components/Button;)V com/mojang/realmsclient/gui/screens/RealmsBackupScreen$Entry/lambda$addRestoreButton$1 (Lnet/minecraft/client/gui/components/Button;)V +MD: com/mojang/realmsclient/gui/screens/RealmsBackupScreen$Entry/m_278718_ ()V com/mojang/realmsclient/gui/screens/RealmsBackupScreen$Entry/addRestoreButton ()V +MD: com/mojang/realmsclient/gui/screens/RealmsBackupScreen$Entry/m_278753_ (Ljava/lang/String;)V com/mojang/realmsclient/gui/screens/RealmsBackupScreen$Entry/addToChangeList (Ljava/lang/String;)V +MD: com/mojang/realmsclient/gui/screens/RealmsBackupScreen$Entry/m_278829_ ()V com/mojang/realmsclient/gui/screens/RealmsBackupScreen$Entry/addChangesButton ()V +MD: com/mojang/realmsclient/gui/screens/RealmsBackupScreen$Entry/m_278830_ (Lcom/mojang/realmsclient/dto/Backup;)V com/mojang/realmsclient/gui/screens/RealmsBackupScreen$Entry/populateChangeList (Lcom/mojang/realmsclient/dto/Backup;)V +MD: com/mojang/realmsclient/gui/screens/RealmsBackupScreen$Entry/m_279677_ (ILnet/minecraft/client/gui/GuiGraphics;IIFLnet/minecraft/client/gui/components/AbstractWidget;)V com/mojang/realmsclient/gui/screens/RealmsBackupScreen$Entry/lambda$render$2 (ILnet/minecraft/client/gui/GuiGraphics;IIFLnet/minecraft/client/gui/components/AbstractWidget;)V +MD: com/mojang/realmsclient/gui/screens/RealmsBackupScreen$Entry/m_6311_ (Lnet/minecraft/client/gui/GuiGraphics;IIIIIIIZF)V com/mojang/realmsclient/gui/screens/RealmsBackupScreen$Entry/render (Lnet/minecraft/client/gui/GuiGraphics;IIIIIIIZF)V +MD: com/mojang/realmsclient/gui/screens/RealmsBackupScreen$Entry/m_6375_ (DDI)Z com/mojang/realmsclient/gui/screens/RealmsBackupScreen$Entry/mouseClicked (DDI)Z +MD: com/mojang/realmsclient/gui/screens/RealmsBackupScreen$Entry/m_88275_ (Ljava/util/Date;)Ljava/lang/String; com/mojang/realmsclient/gui/screens/RealmsBackupScreen$Entry/getMediumDatePresentation (Ljava/util/Date;)Ljava/lang/String; +MD: com/mojang/realmsclient/gui/screens/RealmsBrokenWorldScreen/ ()V com/mojang/realmsclient/gui/screens/RealmsBrokenWorldScreen/ ()V +MD: com/mojang/realmsclient/gui/screens/RealmsBrokenWorldScreen/ (Lnet/minecraft/client/gui/screens/Screen;Lcom/mojang/realmsclient/RealmsMainScreen;JZ)V com/mojang/realmsclient/gui/screens/RealmsBrokenWorldScreen/ (Lnet/minecraft/client/gui/screens/Screen;Lcom/mojang/realmsclient/RealmsMainScreen;JZ)V +MD: com/mojang/realmsclient/gui/screens/RealmsBrokenWorldScreen/m_142562_ ()Lnet/minecraft/network/chat/Component; com/mojang/realmsclient/gui/screens/RealmsBrokenWorldScreen/getNarrationMessage ()Lnet/minecraft/network/chat/Component; +MD: com/mojang/realmsclient/gui/screens/RealmsBrokenWorldScreen/m_181317_ (Lcom/mojang/realmsclient/dto/RealmsServer;)V com/mojang/realmsclient/gui/screens/RealmsBrokenWorldScreen/lambda$doSwitchOrReset$9 (Lcom/mojang/realmsclient/dto/RealmsServer;)V +MD: com/mojang/realmsclient/gui/screens/RealmsBrokenWorldScreen/m_181319_ ()V com/mojang/realmsclient/gui/screens/RealmsBrokenWorldScreen/lambda$doSwitchOrReset$11 ()V +MD: com/mojang/realmsclient/gui/screens/RealmsBrokenWorldScreen/m_279678_ (IZ)V com/mojang/realmsclient/gui/screens/RealmsBrokenWorldScreen/lambda$downloadWorld$12 (IZ)V +MD: com/mojang/realmsclient/gui/screens/RealmsBrokenWorldScreen/m_279679_ ()V com/mojang/realmsclient/gui/screens/RealmsBrokenWorldScreen/lambda$doSwitchOrReset$8 ()V +MD: com/mojang/realmsclient/gui/screens/RealmsBrokenWorldScreen/m_279680_ (J)V com/mojang/realmsclient/gui/screens/RealmsBrokenWorldScreen/lambda$fetchServerData$7 (J)V +MD: com/mojang/realmsclient/gui/screens/RealmsBrokenWorldScreen/m_279681_ ()V com/mojang/realmsclient/gui/screens/RealmsBrokenWorldScreen/lambda$addButtons$1 ()V +MD: com/mojang/realmsclient/gui/screens/RealmsBrokenWorldScreen/m_279682_ (IZ)V com/mojang/realmsclient/gui/screens/RealmsBrokenWorldScreen/lambda$addButtons$3 (IZ)V +MD: com/mojang/realmsclient/gui/screens/RealmsBrokenWorldScreen/m_279683_ (ILnet/minecraft/client/gui/components/Button;)V com/mojang/realmsclient/gui/screens/RealmsBrokenWorldScreen/lambda$addButtons$6 (ILnet/minecraft/client/gui/components/Button;)V +MD: com/mojang/realmsclient/gui/screens/RealmsBrokenWorldScreen/m_279684_ ()V com/mojang/realmsclient/gui/screens/RealmsBrokenWorldScreen/lambda$addButtons$5 ()V +MD: com/mojang/realmsclient/gui/screens/RealmsBrokenWorldScreen/m_279685_ ()V com/mojang/realmsclient/gui/screens/RealmsBrokenWorldScreen/lambda$doSwitchOrReset$10 ()V +MD: com/mojang/realmsclient/gui/screens/RealmsBrokenWorldScreen/m_280068_ (Lnet/minecraft/client/gui/GuiGraphics;IIIIZLjava/lang/String;IJLjava/lang/String;Z)V com/mojang/realmsclient/gui/screens/RealmsBrokenWorldScreen/drawSlotFrame (Lnet/minecraft/client/gui/GuiGraphics;IIIIZLjava/lang/String;IJLjava/lang/String;Z)V +MD: com/mojang/realmsclient/gui/screens/RealmsBrokenWorldScreen/m_287011_ (ILnet/minecraft/client/gui/components/Button;)V com/mojang/realmsclient/gui/screens/RealmsBrokenWorldScreen/lambda$addButtons$4 (ILnet/minecraft/client/gui/components/Button;)V +MD: com/mojang/realmsclient/gui/screens/RealmsBrokenWorldScreen/m_7856_ ()V com/mojang/realmsclient/gui/screens/RealmsBrokenWorldScreen/init ()V +MD: com/mojang/realmsclient/gui/screens/RealmsBrokenWorldScreen/m_7933_ (III)Z com/mojang/realmsclient/gui/screens/RealmsBrokenWorldScreen/keyPressed (III)Z +MD: com/mojang/realmsclient/gui/screens/RealmsBrokenWorldScreen/m_86600_ ()V com/mojang/realmsclient/gui/screens/RealmsBrokenWorldScreen/tick ()V +MD: com/mojang/realmsclient/gui/screens/RealmsBrokenWorldScreen/m_88300_ ()V com/mojang/realmsclient/gui/screens/RealmsBrokenWorldScreen/doSwitchOrReset ()V +MD: com/mojang/realmsclient/gui/screens/RealmsBrokenWorldScreen/m_88301_ (I)I com/mojang/realmsclient/gui/screens/RealmsBrokenWorldScreen/getFramePositionX (I)I +MD: com/mojang/realmsclient/gui/screens/RealmsBrokenWorldScreen/m_88313_ (J)V com/mojang/realmsclient/gui/screens/RealmsBrokenWorldScreen/fetchServerData (J)V +MD: com/mojang/realmsclient/gui/screens/RealmsBrokenWorldScreen/m_88315_ (Lnet/minecraft/client/gui/GuiGraphics;IIF)V com/mojang/realmsclient/gui/screens/RealmsBrokenWorldScreen/render (Lnet/minecraft/client/gui/GuiGraphics;IIF)V +MD: com/mojang/realmsclient/gui/screens/RealmsBrokenWorldScreen/m_88332_ (Lnet/minecraft/client/gui/components/Button;)V com/mojang/realmsclient/gui/screens/RealmsBrokenWorldScreen/lambda$init$0 (Lnet/minecraft/client/gui/components/Button;)V +MD: com/mojang/realmsclient/gui/screens/RealmsBrokenWorldScreen/m_88335_ (I)V com/mojang/realmsclient/gui/screens/RealmsBrokenWorldScreen/downloadWorld (I)V +MD: com/mojang/realmsclient/gui/screens/RealmsBrokenWorldScreen/m_88345_ (ILnet/minecraft/client/gui/components/Button;)V com/mojang/realmsclient/gui/screens/RealmsBrokenWorldScreen/lambda$addButtons$2 (ILnet/minecraft/client/gui/components/Button;)V +MD: com/mojang/realmsclient/gui/screens/RealmsBrokenWorldScreen/m_88350_ ()V com/mojang/realmsclient/gui/screens/RealmsBrokenWorldScreen/addButtons ()V +MD: com/mojang/realmsclient/gui/screens/RealmsBrokenWorldScreen/m_88351_ ()V com/mojang/realmsclient/gui/screens/RealmsBrokenWorldScreen/backButtonClicked ()V +MD: com/mojang/realmsclient/gui/screens/RealmsBrokenWorldScreen/m_88352_ ()Z com/mojang/realmsclient/gui/screens/RealmsBrokenWorldScreen/isMinigame ()Z +MD: com/mojang/realmsclient/gui/screens/RealmsClientOutdatedScreen/ ()V com/mojang/realmsclient/gui/screens/RealmsClientOutdatedScreen/ ()V +MD: com/mojang/realmsclient/gui/screens/RealmsClientOutdatedScreen/ (Lnet/minecraft/client/gui/screens/Screen;)V com/mojang/realmsclient/gui/screens/RealmsClientOutdatedScreen/ (Lnet/minecraft/client/gui/screens/Screen;)V +MD: com/mojang/realmsclient/gui/screens/RealmsClientOutdatedScreen/m_231305_ ()[Lnet/minecraft/network/chat/Component; com/mojang/realmsclient/gui/screens/RealmsClientOutdatedScreen/getMessages ()[Lnet/minecraft/network/chat/Component; +MD: com/mojang/realmsclient/gui/screens/RealmsClientOutdatedScreen/m_279687_ (Lnet/minecraft/client/gui/components/Button;)V com/mojang/realmsclient/gui/screens/RealmsClientOutdatedScreen/lambda$init$0 (Lnet/minecraft/client/gui/components/Button;)V +MD: com/mojang/realmsclient/gui/screens/RealmsClientOutdatedScreen/m_7856_ ()V com/mojang/realmsclient/gui/screens/RealmsClientOutdatedScreen/init ()V +MD: com/mojang/realmsclient/gui/screens/RealmsClientOutdatedScreen/m_7933_ (III)Z com/mojang/realmsclient/gui/screens/RealmsClientOutdatedScreen/keyPressed (III)Z +MD: com/mojang/realmsclient/gui/screens/RealmsClientOutdatedScreen/m_88315_ (Lnet/minecraft/client/gui/GuiGraphics;IIF)V com/mojang/realmsclient/gui/screens/RealmsClientOutdatedScreen/render (Lnet/minecraft/client/gui/GuiGraphics;IIF)V +MD: com/mojang/realmsclient/gui/screens/RealmsConfigureWorldScreen/ ()V com/mojang/realmsclient/gui/screens/RealmsConfigureWorldScreen/ ()V +MD: com/mojang/realmsclient/gui/screens/RealmsConfigureWorldScreen/ (Lcom/mojang/realmsclient/RealmsMainScreen;J)V com/mojang/realmsclient/gui/screens/RealmsConfigureWorldScreen/ (Lcom/mojang/realmsclient/RealmsMainScreen;J)V +MD: com/mojang/realmsclient/gui/screens/RealmsConfigureWorldScreen/m_167381_ ()Lcom/mojang/realmsclient/dto/RealmsServer; com/mojang/realmsclient/gui/screens/RealmsConfigureWorldScreen/lambda$addSlotButton$11 ()Lcom/mojang/realmsclient/dto/RealmsServer; +MD: com/mojang/realmsclient/gui/screens/RealmsConfigureWorldScreen/m_167385_ (I)Lcom/mojang/realmsclient/gui/RealmsWorldSlotButton; com/mojang/realmsclient/gui/screens/RealmsConfigureWorldScreen/addSlotButton (I)Lcom/mojang/realmsclient/gui/RealmsWorldSlotButton; +MD: com/mojang/realmsclient/gui/screens/RealmsConfigureWorldScreen/m_167387_ (ILnet/minecraft/client/gui/components/Button;)V com/mojang/realmsclient/gui/screens/RealmsConfigureWorldScreen/lambda$addSlotButton$13 (ILnet/minecraft/client/gui/components/Button;)V +MD: com/mojang/realmsclient/gui/screens/RealmsConfigureWorldScreen/m_167394_ (Lcom/mojang/realmsclient/dto/WorldTemplate;)V com/mojang/realmsclient/gui/screens/RealmsConfigureWorldScreen/templateSelectionCallback (Lcom/mojang/realmsclient/dto/WorldTemplate;)V +MD: com/mojang/realmsclient/gui/screens/RealmsConfigureWorldScreen/m_167398_ (Lnet/minecraft/network/chat/Component;)V com/mojang/realmsclient/gui/screens/RealmsConfigureWorldScreen/lambda$addSlotButton$12 (Lnet/minecraft/network/chat/Component;)V +MD: com/mojang/realmsclient/gui/screens/RealmsConfigureWorldScreen/m_167406_ (Lnet/minecraft/client/gui/components/Button;)V com/mojang/realmsclient/gui/screens/RealmsConfigureWorldScreen/lambda$init$10 (Lnet/minecraft/client/gui/components/Button;)V +MD: com/mojang/realmsclient/gui/screens/RealmsConfigureWorldScreen/m_181330_ (Lcom/mojang/realmsclient/dto/RealmsServer;)V com/mojang/realmsclient/gui/screens/RealmsConfigureWorldScreen/lambda$fetchServerData$14 (Lcom/mojang/realmsclient/dto/RealmsServer;)V +MD: com/mojang/realmsclient/gui/screens/RealmsConfigureWorldScreen/m_279688_ ()V com/mojang/realmsclient/gui/screens/RealmsConfigureWorldScreen/lambda$init$7 ()V +MD: com/mojang/realmsclient/gui/screens/RealmsConfigureWorldScreen/m_279689_ ()V com/mojang/realmsclient/gui/screens/RealmsConfigureWorldScreen/lambda$switchToFullSlot$17 ()V +MD: com/mojang/realmsclient/gui/screens/RealmsConfigureWorldScreen/m_279690_ (Lnet/minecraft/client/gui/components/Button;)V com/mojang/realmsclient/gui/screens/RealmsConfigureWorldScreen/lambda$init$3 (Lnet/minecraft/client/gui/components/Button;)V +MD: com/mojang/realmsclient/gui/screens/RealmsConfigureWorldScreen/m_279691_ (Lcom/mojang/realmsclient/dto/RealmsServer;IZ)V com/mojang/realmsclient/gui/screens/RealmsConfigureWorldScreen/lambda$switchToFullSlot$19 (Lcom/mojang/realmsclient/dto/RealmsServer;IZ)V +MD: com/mojang/realmsclient/gui/screens/RealmsConfigureWorldScreen/m_279692_ (Lnet/minecraft/client/gui/components/Button;)V com/mojang/realmsclient/gui/screens/RealmsConfigureWorldScreen/lambda$init$5 (Lnet/minecraft/client/gui/components/Button;)V +MD: com/mojang/realmsclient/gui/screens/RealmsConfigureWorldScreen/m_279693_ ()V com/mojang/realmsclient/gui/screens/RealmsConfigureWorldScreen/lambda$switchToEmptySlot$20 ()V +MD: com/mojang/realmsclient/gui/screens/RealmsConfigureWorldScreen/m_279694_ (Lnet/minecraft/client/gui/components/Button;)V com/mojang/realmsclient/gui/screens/RealmsConfigureWorldScreen/lambda$init$1 (Lnet/minecraft/client/gui/components/Button;)V +MD: com/mojang/realmsclient/gui/screens/RealmsConfigureWorldScreen/m_279695_ ()V com/mojang/realmsclient/gui/screens/RealmsConfigureWorldScreen/lambda$init$8 ()V +MD: com/mojang/realmsclient/gui/screens/RealmsConfigureWorldScreen/m_279696_ ()V com/mojang/realmsclient/gui/screens/RealmsConfigureWorldScreen/lambda$switchToFullSlot$18 ()V +MD: com/mojang/realmsclient/gui/screens/RealmsConfigureWorldScreen/m_279697_ (Lcom/mojang/realmsclient/dto/RealmsServer;IZ)V com/mojang/realmsclient/gui/screens/RealmsConfigureWorldScreen/lambda$switchToEmptySlot$23 (Lcom/mojang/realmsclient/dto/RealmsServer;IZ)V +MD: com/mojang/realmsclient/gui/screens/RealmsConfigureWorldScreen/m_279698_ (Lnet/minecraft/client/gui/components/Button;)V com/mojang/realmsclient/gui/screens/RealmsConfigureWorldScreen/lambda$init$4 (Lnet/minecraft/client/gui/components/Button;)V +MD: com/mojang/realmsclient/gui/screens/RealmsConfigureWorldScreen/m_279699_ ()V com/mojang/realmsclient/gui/screens/RealmsConfigureWorldScreen/lambda$init$6 ()V +MD: com/mojang/realmsclient/gui/screens/RealmsConfigureWorldScreen/m_279700_ (Lcom/mojang/realmsclient/exception/RealmsServiceException;)V com/mojang/realmsclient/gui/screens/RealmsConfigureWorldScreen/lambda$fetchServerData$15 (Lcom/mojang/realmsclient/exception/RealmsServiceException;)V +MD: com/mojang/realmsclient/gui/screens/RealmsConfigureWorldScreen/m_279701_ ()V com/mojang/realmsclient/gui/screens/RealmsConfigureWorldScreen/lambda$switchToEmptySlot$22 ()V +MD: com/mojang/realmsclient/gui/screens/RealmsConfigureWorldScreen/m_279702_ ()V com/mojang/realmsclient/gui/screens/RealmsConfigureWorldScreen/lambda$switchToEmptySlot$21 ()V +MD: com/mojang/realmsclient/gui/screens/RealmsConfigureWorldScreen/m_279703_ (Lnet/minecraft/client/gui/components/Button;)V com/mojang/realmsclient/gui/screens/RealmsConfigureWorldScreen/lambda$init$0 (Lnet/minecraft/client/gui/components/Button;)V +MD: com/mojang/realmsclient/gui/screens/RealmsConfigureWorldScreen/m_279704_ (J)V com/mojang/realmsclient/gui/screens/RealmsConfigureWorldScreen/lambda$fetchServerData$16 (J)V +MD: com/mojang/realmsclient/gui/screens/RealmsConfigureWorldScreen/m_279705_ (Lnet/minecraft/client/gui/components/Button;)V com/mojang/realmsclient/gui/screens/RealmsConfigureWorldScreen/lambda$init$9 (Lnet/minecraft/client/gui/components/Button;)V +MD: com/mojang/realmsclient/gui/screens/RealmsConfigureWorldScreen/m_279706_ (Lnet/minecraft/client/gui/components/Button;)V com/mojang/realmsclient/gui/screens/RealmsConfigureWorldScreen/lambda$init$2 (Lnet/minecraft/client/gui/components/Button;)V +MD: com/mojang/realmsclient/gui/screens/RealmsConfigureWorldScreen/m_280084_ (Lnet/minecraft/client/gui/GuiGraphics;Lnet/minecraft/network/chat/Component;II)V com/mojang/realmsclient/gui/screens/RealmsConfigureWorldScreen/renderMousehoverTooltip (Lnet/minecraft/client/gui/GuiGraphics;Lnet/minecraft/network/chat/Component;II)V +MD: com/mojang/realmsclient/gui/screens/RealmsConfigureWorldScreen/m_280267_ (Lnet/minecraft/client/gui/GuiGraphics;IIII)V com/mojang/realmsclient/gui/screens/RealmsConfigureWorldScreen/drawOpen (Lnet/minecraft/client/gui/GuiGraphics;IIII)V +MD: com/mojang/realmsclient/gui/screens/RealmsConfigureWorldScreen/m_280544_ (Lnet/minecraft/client/gui/GuiGraphics;IIII)V com/mojang/realmsclient/gui/screens/RealmsConfigureWorldScreen/drawClose (Lnet/minecraft/client/gui/GuiGraphics;IIII)V +MD: com/mojang/realmsclient/gui/screens/RealmsConfigureWorldScreen/m_280590_ (Lnet/minecraft/client/gui/GuiGraphics;IIII)V com/mojang/realmsclient/gui/screens/RealmsConfigureWorldScreen/drawExpired (Lnet/minecraft/client/gui/GuiGraphics;IIII)V +MD: com/mojang/realmsclient/gui/screens/RealmsConfigureWorldScreen/m_280675_ (Lnet/minecraft/client/gui/GuiGraphics;IIIII)V com/mojang/realmsclient/gui/screens/RealmsConfigureWorldScreen/drawExpiring (Lnet/minecraft/client/gui/GuiGraphics;IIIII)V +MD: com/mojang/realmsclient/gui/screens/RealmsConfigureWorldScreen/m_7856_ ()V com/mojang/realmsclient/gui/screens/RealmsConfigureWorldScreen/init ()V +MD: com/mojang/realmsclient/gui/screens/RealmsConfigureWorldScreen/m_7933_ (III)Z com/mojang/realmsclient/gui/screens/RealmsConfigureWorldScreen/keyPressed (III)Z +MD: com/mojang/realmsclient/gui/screens/RealmsConfigureWorldScreen/m_86600_ ()V com/mojang/realmsclient/gui/screens/RealmsConfigureWorldScreen/tick ()V +MD: com/mojang/realmsclient/gui/screens/RealmsConfigureWorldScreen/m_88315_ (Lnet/minecraft/client/gui/GuiGraphics;IIF)V com/mojang/realmsclient/gui/screens/RealmsConfigureWorldScreen/render (Lnet/minecraft/client/gui/GuiGraphics;IIF)V +MD: com/mojang/realmsclient/gui/screens/RealmsConfigureWorldScreen/m_88413_ ()V com/mojang/realmsclient/gui/screens/RealmsConfigureWorldScreen/stateChanged ()V +MD: com/mojang/realmsclient/gui/screens/RealmsConfigureWorldScreen/m_88420_ (ILcom/mojang/realmsclient/dto/RealmsServer;)V com/mojang/realmsclient/gui/screens/RealmsConfigureWorldScreen/switchToFullSlot (ILcom/mojang/realmsclient/dto/RealmsServer;)V +MD: com/mojang/realmsclient/gui/screens/RealmsConfigureWorldScreen/m_88426_ (J)V com/mojang/realmsclient/gui/screens/RealmsConfigureWorldScreen/fetchServerData (J)V +MD: com/mojang/realmsclient/gui/screens/RealmsConfigureWorldScreen/m_88438_ (Lcom/mojang/realmsclient/dto/RealmsServer;)V com/mojang/realmsclient/gui/screens/RealmsConfigureWorldScreen/joinRealm (Lcom/mojang/realmsclient/dto/RealmsServer;)V +MD: com/mojang/realmsclient/gui/screens/RealmsConfigureWorldScreen/m_88444_ (Lcom/mojang/realmsclient/dto/RealmsWorldOptions;)V com/mojang/realmsclient/gui/screens/RealmsConfigureWorldScreen/saveSlotSettings (Lcom/mojang/realmsclient/dto/RealmsWorldOptions;)V +MD: com/mojang/realmsclient/gui/screens/RealmsConfigureWorldScreen/m_88450_ (Lnet/minecraft/client/gui/components/Button;)V com/mojang/realmsclient/gui/screens/RealmsConfigureWorldScreen/hide (Lnet/minecraft/client/gui/components/Button;)V +MD: com/mojang/realmsclient/gui/screens/RealmsConfigureWorldScreen/m_88452_ (Lnet/minecraft/client/gui/screens/Screen;)V com/mojang/realmsclient/gui/screens/RealmsConfigureWorldScreen/closeTheWorld (Lnet/minecraft/client/gui/screens/Screen;)V +MD: com/mojang/realmsclient/gui/screens/RealmsConfigureWorldScreen/m_88454_ (Ljava/lang/String;Ljava/lang/String;)V com/mojang/realmsclient/gui/screens/RealmsConfigureWorldScreen/saveSettings (Ljava/lang/String;Ljava/lang/String;)V +MD: com/mojang/realmsclient/gui/screens/RealmsConfigureWorldScreen/m_88459_ (ZLnet/minecraft/client/gui/screens/Screen;)V com/mojang/realmsclient/gui/screens/RealmsConfigureWorldScreen/openTheWorld (ZLnet/minecraft/client/gui/screens/Screen;)V +MD: com/mojang/realmsclient/gui/screens/RealmsConfigureWorldScreen/m_88463_ (I)I com/mojang/realmsclient/gui/screens/RealmsConfigureWorldScreen/leftButton (I)I +MD: com/mojang/realmsclient/gui/screens/RealmsConfigureWorldScreen/m_88465_ (II)I com/mojang/realmsclient/gui/screens/RealmsConfigureWorldScreen/centerButton (II)I +MD: com/mojang/realmsclient/gui/screens/RealmsConfigureWorldScreen/m_88468_ (ILcom/mojang/realmsclient/dto/RealmsServer;)V com/mojang/realmsclient/gui/screens/RealmsConfigureWorldScreen/switchToEmptySlot (ILcom/mojang/realmsclient/dto/RealmsServer;)V +MD: com/mojang/realmsclient/gui/screens/RealmsConfigureWorldScreen/m_88484_ (Lnet/minecraft/client/gui/components/Button;)V com/mojang/realmsclient/gui/screens/RealmsConfigureWorldScreen/show (Lnet/minecraft/client/gui/components/Button;)V +MD: com/mojang/realmsclient/gui/screens/RealmsConfigureWorldScreen/m_88486_ ()Lcom/mojang/realmsclient/gui/screens/RealmsConfigureWorldScreen; com/mojang/realmsclient/gui/screens/RealmsConfigureWorldScreen/getNewScreen ()Lcom/mojang/realmsclient/gui/screens/RealmsConfigureWorldScreen; +MD: com/mojang/realmsclient/gui/screens/RealmsConfigureWorldScreen/m_88487_ (I)I com/mojang/realmsclient/gui/screens/RealmsConfigureWorldScreen/frame (I)I +MD: com/mojang/realmsclient/gui/screens/RealmsConfigureWorldScreen/m_88489_ (Lnet/minecraft/client/gui/GuiGraphics;IIII)V com/mojang/realmsclient/gui/screens/RealmsConfigureWorldScreen/drawServerStatus (Lnet/minecraft/client/gui/GuiGraphics;IIII)V +MD: com/mojang/realmsclient/gui/screens/RealmsConfigureWorldScreen/m_88525_ ()V com/mojang/realmsclient/gui/screens/RealmsConfigureWorldScreen/backButtonClicked ()V +MD: com/mojang/realmsclient/gui/screens/RealmsConfigureWorldScreen/m_88528_ ()V com/mojang/realmsclient/gui/screens/RealmsConfigureWorldScreen/disableButtons ()V +MD: com/mojang/realmsclient/gui/screens/RealmsConfigureWorldScreen/m_88533_ ()V com/mojang/realmsclient/gui/screens/RealmsConfigureWorldScreen/switchToMinigame ()V +MD: com/mojang/realmsclient/gui/screens/RealmsConfigureWorldScreen/m_88534_ ()Z com/mojang/realmsclient/gui/screens/RealmsConfigureWorldScreen/isMinigame ()Z +MD: com/mojang/realmsclient/gui/screens/RealmsConfigureWorldScreen/m_88535_ ()V com/mojang/realmsclient/gui/screens/RealmsConfigureWorldScreen/hideRegularButtons ()V +MD: com/mojang/realmsclient/gui/screens/RealmsConfigureWorldScreen/m_88536_ ()V com/mojang/realmsclient/gui/screens/RealmsConfigureWorldScreen/hideMinigameButtons ()V +MD: com/mojang/realmsclient/gui/screens/RealmsConfigureWorldScreen$1/ ()V com/mojang/realmsclient/gui/screens/RealmsConfigureWorldScreen$1/ ()V +MD: com/mojang/realmsclient/gui/screens/RealmsConfirmScreen/ (Lit/unimi/dsi/fastutil/booleans/BooleanConsumer;Lnet/minecraft/network/chat/Component;Lnet/minecraft/network/chat/Component;)V com/mojang/realmsclient/gui/screens/RealmsConfirmScreen/ (Lit/unimi/dsi/fastutil/booleans/BooleanConsumer;Lnet/minecraft/network/chat/Component;Lnet/minecraft/network/chat/Component;)V +MD: com/mojang/realmsclient/gui/screens/RealmsConfirmScreen/m_7856_ ()V com/mojang/realmsclient/gui/screens/RealmsConfirmScreen/init ()V +MD: com/mojang/realmsclient/gui/screens/RealmsConfirmScreen/m_88315_ (Lnet/minecraft/client/gui/GuiGraphics;IIF)V com/mojang/realmsclient/gui/screens/RealmsConfirmScreen/render (Lnet/minecraft/client/gui/GuiGraphics;IIF)V +MD: com/mojang/realmsclient/gui/screens/RealmsConfirmScreen/m_88558_ (Lnet/minecraft/client/gui/components/Button;)V com/mojang/realmsclient/gui/screens/RealmsConfirmScreen/lambda$init$1 (Lnet/minecraft/client/gui/components/Button;)V +MD: com/mojang/realmsclient/gui/screens/RealmsConfirmScreen/m_88561_ (Lnet/minecraft/client/gui/components/Button;)V com/mojang/realmsclient/gui/screens/RealmsConfirmScreen/lambda$init$0 (Lnet/minecraft/client/gui/components/Button;)V +MD: com/mojang/realmsclient/gui/screens/RealmsCreateRealmScreen/ ()V com/mojang/realmsclient/gui/screens/RealmsCreateRealmScreen/ ()V +MD: com/mojang/realmsclient/gui/screens/RealmsCreateRealmScreen/ (Lcom/mojang/realmsclient/dto/RealmsServer;Lcom/mojang/realmsclient/RealmsMainScreen;)V com/mojang/realmsclient/gui/screens/RealmsCreateRealmScreen/ (Lcom/mojang/realmsclient/dto/RealmsServer;Lcom/mojang/realmsclient/RealmsMainScreen;)V +MD: com/mojang/realmsclient/gui/screens/RealmsCreateRealmScreen/m_279707_ ()V com/mojang/realmsclient/gui/screens/RealmsCreateRealmScreen/lambda$createWorld$4 ()V +MD: com/mojang/realmsclient/gui/screens/RealmsCreateRealmScreen/m_279708_ ()V com/mojang/realmsclient/gui/screens/RealmsCreateRealmScreen/lambda$createWorld$2 ()V +MD: com/mojang/realmsclient/gui/screens/RealmsCreateRealmScreen/m_279709_ ()V com/mojang/realmsclient/gui/screens/RealmsCreateRealmScreen/lambda$createWorld$3 ()V +MD: com/mojang/realmsclient/gui/screens/RealmsCreateRealmScreen/m_279710_ (Lnet/minecraft/client/gui/components/Button;)V com/mojang/realmsclient/gui/screens/RealmsCreateRealmScreen/lambda$init$1 (Lnet/minecraft/client/gui/components/Button;)V +MD: com/mojang/realmsclient/gui/screens/RealmsCreateRealmScreen/m_5534_ (CI)Z com/mojang/realmsclient/gui/screens/RealmsCreateRealmScreen/charTyped (CI)Z +MD: com/mojang/realmsclient/gui/screens/RealmsCreateRealmScreen/m_7856_ ()V com/mojang/realmsclient/gui/screens/RealmsCreateRealmScreen/init ()V +MD: com/mojang/realmsclient/gui/screens/RealmsCreateRealmScreen/m_7933_ (III)Z com/mojang/realmsclient/gui/screens/RealmsCreateRealmScreen/keyPressed (III)Z +MD: com/mojang/realmsclient/gui/screens/RealmsCreateRealmScreen/m_86600_ ()V com/mojang/realmsclient/gui/screens/RealmsCreateRealmScreen/tick ()V +MD: com/mojang/realmsclient/gui/screens/RealmsCreateRealmScreen/m_88315_ (Lnet/minecraft/client/gui/GuiGraphics;IIF)V com/mojang/realmsclient/gui/screens/RealmsCreateRealmScreen/render (Lnet/minecraft/client/gui/GuiGraphics;IIF)V +MD: com/mojang/realmsclient/gui/screens/RealmsCreateRealmScreen/m_88591_ (Lnet/minecraft/client/gui/components/Button;)V com/mojang/realmsclient/gui/screens/RealmsCreateRealmScreen/lambda$init$0 (Lnet/minecraft/client/gui/components/Button;)V +MD: com/mojang/realmsclient/gui/screens/RealmsCreateRealmScreen/m_88595_ ()V com/mojang/realmsclient/gui/screens/RealmsCreateRealmScreen/createWorld ()V +MD: com/mojang/realmsclient/gui/screens/RealmsCreateRealmScreen/m_88596_ ()Z com/mojang/realmsclient/gui/screens/RealmsCreateRealmScreen/valid ()Z +MD: com/mojang/realmsclient/gui/screens/RealmsDownloadLatestWorldScreen/ ()V com/mojang/realmsclient/gui/screens/RealmsDownloadLatestWorldScreen/ ()V +MD: com/mojang/realmsclient/gui/screens/RealmsDownloadLatestWorldScreen/ (Lnet/minecraft/client/gui/screens/Screen;Lcom/mojang/realmsclient/dto/WorldDownload;Ljava/lang/String;Lit/unimi/dsi/fastutil/booleans/BooleanConsumer;)V com/mojang/realmsclient/gui/screens/RealmsDownloadLatestWorldScreen/ (Lnet/minecraft/client/gui/screens/Screen;Lcom/mojang/realmsclient/dto/WorldDownload;Ljava/lang/String;Lit/unimi/dsi/fastutil/booleans/BooleanConsumer;)V +MD: com/mojang/realmsclient/gui/screens/RealmsDownloadLatestWorldScreen/m_167409_ ()Lnet/minecraft/network/chat/Component; com/mojang/realmsclient/gui/screens/RealmsDownloadLatestWorldScreen/createProgressNarrationMessage ()Lnet/minecraft/network/chat/Component; +MD: com/mojang/realmsclient/gui/screens/RealmsDownloadLatestWorldScreen/m_279711_ (Z)V com/mojang/realmsclient/gui/screens/RealmsDownloadLatestWorldScreen/lambda$checkDownloadSize$1 (Z)V +MD: com/mojang/realmsclient/gui/screens/RealmsDownloadLatestWorldScreen/m_280316_ (Lnet/minecraft/client/gui/GuiGraphics;J)V com/mojang/realmsclient/gui/screens/RealmsDownloadLatestWorldScreen/drawDownloadSpeed0 (Lnet/minecraft/client/gui/GuiGraphics;J)V +MD: com/mojang/realmsclient/gui/screens/RealmsDownloadLatestWorldScreen/m_280494_ (Lnet/minecraft/client/gui/GuiGraphics;)V com/mojang/realmsclient/gui/screens/RealmsDownloadLatestWorldScreen/drawDots (Lnet/minecraft/client/gui/GuiGraphics;)V +MD: com/mojang/realmsclient/gui/screens/RealmsDownloadLatestWorldScreen/m_7856_ ()V com/mojang/realmsclient/gui/screens/RealmsDownloadLatestWorldScreen/init ()V +MD: com/mojang/realmsclient/gui/screens/RealmsDownloadLatestWorldScreen/m_7933_ (III)Z com/mojang/realmsclient/gui/screens/RealmsDownloadLatestWorldScreen/keyPressed (III)Z +MD: com/mojang/realmsclient/gui/screens/RealmsDownloadLatestWorldScreen/m_86600_ ()V com/mojang/realmsclient/gui/screens/RealmsDownloadLatestWorldScreen/tick ()V +MD: com/mojang/realmsclient/gui/screens/RealmsDownloadLatestWorldScreen/m_88315_ (Lnet/minecraft/client/gui/GuiGraphics;IIF)V com/mojang/realmsclient/gui/screens/RealmsDownloadLatestWorldScreen/render (Lnet/minecraft/client/gui/GuiGraphics;IIF)V +MD: com/mojang/realmsclient/gui/screens/RealmsDownloadLatestWorldScreen/m_88641_ (Lnet/minecraft/client/gui/components/Button;)V com/mojang/realmsclient/gui/screens/RealmsDownloadLatestWorldScreen/lambda$init$0 (Lnet/minecraft/client/gui/components/Button;)V +MD: com/mojang/realmsclient/gui/screens/RealmsDownloadLatestWorldScreen/m_88646_ (Ljava/lang/String;)J com/mojang/realmsclient/gui/screens/RealmsDownloadLatestWorldScreen/getContentLength (Ljava/lang/String;)J +MD: com/mojang/realmsclient/gui/screens/RealmsDownloadLatestWorldScreen/m_88648_ (Lnet/minecraft/client/gui/GuiGraphics;)V com/mojang/realmsclient/gui/screens/RealmsDownloadLatestWorldScreen/drawProgressBar (Lnet/minecraft/client/gui/GuiGraphics;)V +MD: com/mojang/realmsclient/gui/screens/RealmsDownloadLatestWorldScreen/m_88653_ (Lnet/minecraft/client/gui/GuiGraphics;)V com/mojang/realmsclient/gui/screens/RealmsDownloadLatestWorldScreen/drawDownloadSpeed (Lnet/minecraft/client/gui/GuiGraphics;)V +MD: com/mojang/realmsclient/gui/screens/RealmsDownloadLatestWorldScreen/m_88655_ ()V com/mojang/realmsclient/gui/screens/RealmsDownloadLatestWorldScreen/checkDownloadSize ()V +MD: com/mojang/realmsclient/gui/screens/RealmsDownloadLatestWorldScreen/m_88656_ ()V com/mojang/realmsclient/gui/screens/RealmsDownloadLatestWorldScreen/backButtonClicked ()V +MD: com/mojang/realmsclient/gui/screens/RealmsDownloadLatestWorldScreen/m_88657_ ()V com/mojang/realmsclient/gui/screens/RealmsDownloadLatestWorldScreen/downloadSave ()V +MD: com/mojang/realmsclient/gui/screens/RealmsDownloadLatestWorldScreen/m_88658_ ()V com/mojang/realmsclient/gui/screens/RealmsDownloadLatestWorldScreen/downloadCancelled ()V +MD: com/mojang/realmsclient/gui/screens/RealmsDownloadLatestWorldScreen/m_88659_ ()V com/mojang/realmsclient/gui/screens/RealmsDownloadLatestWorldScreen/lambda$downloadSave$2 ()V +MD: com/mojang/realmsclient/gui/screens/RealmsDownloadLatestWorldScreen$DownloadStatus/ ()V com/mojang/realmsclient/gui/screens/RealmsDownloadLatestWorldScreen$DownloadStatus/ ()V +MD: com/mojang/realmsclient/gui/screens/RealmsGenericErrorScreen/ (Lnet/minecraft/network/chat/Component;Lnet/minecraft/network/chat/Component;Lnet/minecraft/client/gui/screens/Screen;)V com/mojang/realmsclient/gui/screens/RealmsGenericErrorScreen/ (Lnet/minecraft/network/chat/Component;Lnet/minecraft/network/chat/Component;Lnet/minecraft/client/gui/screens/Screen;)V +MD: com/mojang/realmsclient/gui/screens/RealmsGenericErrorScreen/ (Lnet/minecraft/network/chat/Component;Lnet/minecraft/client/gui/screens/Screen;)V com/mojang/realmsclient/gui/screens/RealmsGenericErrorScreen/ (Lnet/minecraft/network/chat/Component;Lnet/minecraft/client/gui/screens/Screen;)V +MD: com/mojang/realmsclient/gui/screens/RealmsGenericErrorScreen/ (Lcom/mojang/realmsclient/exception/RealmsServiceException;Lnet/minecraft/client/gui/screens/Screen;)V com/mojang/realmsclient/gui/screens/RealmsGenericErrorScreen/ (Lcom/mojang/realmsclient/exception/RealmsServiceException;Lnet/minecraft/client/gui/screens/Screen;)V +MD: com/mojang/realmsclient/gui/screens/RealmsGenericErrorScreen/m_142562_ ()Lnet/minecraft/network/chat/Component; com/mojang/realmsclient/gui/screens/RealmsGenericErrorScreen/getNarrationMessage ()Lnet/minecraft/network/chat/Component; +MD: com/mojang/realmsclient/gui/screens/RealmsGenericErrorScreen/m_279712_ (Lnet/minecraft/client/gui/components/Button;)V com/mojang/realmsclient/gui/screens/RealmsGenericErrorScreen/lambda$init$0 (Lnet/minecraft/client/gui/components/Button;)V +MD: com/mojang/realmsclient/gui/screens/RealmsGenericErrorScreen/m_288196_ (Lnet/minecraft/network/chat/Component;Lnet/minecraft/network/chat/Component;)Lcom/mojang/realmsclient/gui/screens/RealmsGenericErrorScreen$ErrorMessage; com/mojang/realmsclient/gui/screens/RealmsGenericErrorScreen/errorMessage (Lnet/minecraft/network/chat/Component;Lnet/minecraft/network/chat/Component;)Lcom/mojang/realmsclient/gui/screens/RealmsGenericErrorScreen$ErrorMessage; +MD: com/mojang/realmsclient/gui/screens/RealmsGenericErrorScreen/m_288216_ (Lcom/mojang/realmsclient/exception/RealmsServiceException;)Lcom/mojang/realmsclient/gui/screens/RealmsGenericErrorScreen$ErrorMessage; com/mojang/realmsclient/gui/screens/RealmsGenericErrorScreen/errorMessage (Lcom/mojang/realmsclient/exception/RealmsServiceException;)Lcom/mojang/realmsclient/gui/screens/RealmsGenericErrorScreen$ErrorMessage; +MD: com/mojang/realmsclient/gui/screens/RealmsGenericErrorScreen/m_288225_ (Lnet/minecraft/network/chat/Component;)Lcom/mojang/realmsclient/gui/screens/RealmsGenericErrorScreen$ErrorMessage; com/mojang/realmsclient/gui/screens/RealmsGenericErrorScreen/errorMessage (Lnet/minecraft/network/chat/Component;)Lcom/mojang/realmsclient/gui/screens/RealmsGenericErrorScreen$ErrorMessage; +MD: com/mojang/realmsclient/gui/screens/RealmsGenericErrorScreen/m_7856_ ()V com/mojang/realmsclient/gui/screens/RealmsGenericErrorScreen/init ()V +MD: com/mojang/realmsclient/gui/screens/RealmsGenericErrorScreen/m_88315_ (Lnet/minecraft/client/gui/GuiGraphics;IIF)V com/mojang/realmsclient/gui/screens/RealmsGenericErrorScreen/render (Lnet/minecraft/client/gui/GuiGraphics;IIF)V +MD: com/mojang/realmsclient/gui/screens/RealmsGenericErrorScreen$ErrorMessage/ (Lnet/minecraft/network/chat/Component;Lnet/minecraft/network/chat/Component;)V com/mojang/realmsclient/gui/screens/RealmsGenericErrorScreen$ErrorMessage/ (Lnet/minecraft/network/chat/Component;Lnet/minecraft/network/chat/Component;)V +MD: com/mojang/realmsclient/gui/screens/RealmsGenericErrorScreen$ErrorMessage/equals (Ljava/lang/Object;)Z com/mojang/realmsclient/gui/screens/RealmsGenericErrorScreen$ErrorMessage/equals (Ljava/lang/Object;)Z +MD: com/mojang/realmsclient/gui/screens/RealmsGenericErrorScreen$ErrorMessage/f_287787_ ()Lnet/minecraft/network/chat/Component; com/mojang/realmsclient/gui/screens/RealmsGenericErrorScreen$ErrorMessage/detail ()Lnet/minecraft/network/chat/Component; +MD: com/mojang/realmsclient/gui/screens/RealmsGenericErrorScreen$ErrorMessage/f_287789_ ()Lnet/minecraft/network/chat/Component; com/mojang/realmsclient/gui/screens/RealmsGenericErrorScreen$ErrorMessage/title ()Lnet/minecraft/network/chat/Component; +MD: com/mojang/realmsclient/gui/screens/RealmsGenericErrorScreen$ErrorMessage/hashCode ()I com/mojang/realmsclient/gui/screens/RealmsGenericErrorScreen$ErrorMessage/hashCode ()I +MD: com/mojang/realmsclient/gui/screens/RealmsGenericErrorScreen$ErrorMessage/toString ()Ljava/lang/String; com/mojang/realmsclient/gui/screens/RealmsGenericErrorScreen$ErrorMessage/toString ()Ljava/lang/String; +MD: com/mojang/realmsclient/gui/screens/RealmsInviteScreen/ ()V com/mojang/realmsclient/gui/screens/RealmsInviteScreen/ ()V +MD: com/mojang/realmsclient/gui/screens/RealmsInviteScreen/ (Lcom/mojang/realmsclient/gui/screens/RealmsConfigureWorldScreen;Lnet/minecraft/client/gui/screens/Screen;Lcom/mojang/realmsclient/dto/RealmsServer;)V com/mojang/realmsclient/gui/screens/RealmsInviteScreen/ (Lcom/mojang/realmsclient/gui/screens/RealmsConfigureWorldScreen;Lnet/minecraft/client/gui/screens/Screen;Lcom/mojang/realmsclient/dto/RealmsServer;)V +MD: com/mojang/realmsclient/gui/screens/RealmsInviteScreen/m_279713_ (Lnet/minecraft/client/gui/components/Button;)V com/mojang/realmsclient/gui/screens/RealmsInviteScreen/lambda$init$4 (Lnet/minecraft/client/gui/components/Button;)V +MD: com/mojang/realmsclient/gui/screens/RealmsInviteScreen/m_289579_ (Lnet/minecraft/network/chat/Style;)Lnet/minecraft/network/chat/Style; com/mojang/realmsclient/gui/screens/RealmsInviteScreen/lambda$static$1 (Lnet/minecraft/network/chat/Style;)Lnet/minecraft/network/chat/Style; +MD: com/mojang/realmsclient/gui/screens/RealmsInviteScreen/m_289580_ (Lcom/mojang/realmsclient/dto/RealmsServer;)V com/mojang/realmsclient/gui/screens/RealmsInviteScreen/lambda$onInvite$6 (Lcom/mojang/realmsclient/dto/RealmsServer;)V +MD: com/mojang/realmsclient/gui/screens/RealmsInviteScreen/m_289581_ (JLjava/lang/String;)Lcom/mojang/realmsclient/dto/RealmsServer; com/mojang/realmsclient/gui/screens/RealmsInviteScreen/lambda$onInvite$5 (JLjava/lang/String;)Lcom/mojang/realmsclient/dto/RealmsServer; +MD: com/mojang/realmsclient/gui/screens/RealmsInviteScreen/m_289582_ (Lnet/minecraft/network/chat/Style;)Lnet/minecraft/network/chat/Style; com/mojang/realmsclient/gui/screens/RealmsInviteScreen/lambda$static$0 (Lnet/minecraft/network/chat/Style;)Lnet/minecraft/network/chat/Style; +MD: com/mojang/realmsclient/gui/screens/RealmsInviteScreen/m_289583_ (Lnet/minecraft/network/chat/Style;)Lnet/minecraft/network/chat/Style; com/mojang/realmsclient/gui/screens/RealmsInviteScreen/lambda$static$2 (Lnet/minecraft/network/chat/Style;)Lnet/minecraft/network/chat/Style; +MD: com/mojang/realmsclient/gui/screens/RealmsInviteScreen/m_289601_ (Lnet/minecraft/network/chat/Component;)V com/mojang/realmsclient/gui/screens/RealmsInviteScreen/showMessage (Lnet/minecraft/network/chat/Component;)V +MD: com/mojang/realmsclient/gui/screens/RealmsInviteScreen/m_7856_ ()V com/mojang/realmsclient/gui/screens/RealmsInviteScreen/init ()V +MD: com/mojang/realmsclient/gui/screens/RealmsInviteScreen/m_7933_ (III)Z com/mojang/realmsclient/gui/screens/RealmsInviteScreen/keyPressed (III)Z +MD: com/mojang/realmsclient/gui/screens/RealmsInviteScreen/m_86600_ ()V com/mojang/realmsclient/gui/screens/RealmsInviteScreen/tick ()V +MD: com/mojang/realmsclient/gui/screens/RealmsInviteScreen/m_88315_ (Lnet/minecraft/client/gui/GuiGraphics;IIF)V com/mojang/realmsclient/gui/screens/RealmsInviteScreen/render (Lnet/minecraft/client/gui/GuiGraphics;IIF)V +MD: com/mojang/realmsclient/gui/screens/RealmsInviteScreen/m_88720_ (Lnet/minecraft/client/gui/components/Button;)V com/mojang/realmsclient/gui/screens/RealmsInviteScreen/lambda$init$3 (Lnet/minecraft/client/gui/components/Button;)V +MD: com/mojang/realmsclient/gui/screens/RealmsInviteScreen/m_88724_ ()V com/mojang/realmsclient/gui/screens/RealmsInviteScreen/onInvite ()V +MD: com/mojang/realmsclient/gui/screens/RealmsLongConfirmationScreen/ ()V com/mojang/realmsclient/gui/screens/RealmsLongConfirmationScreen/ ()V +MD: com/mojang/realmsclient/gui/screens/RealmsLongConfirmationScreen/ (Lit/unimi/dsi/fastutil/booleans/BooleanConsumer;Lcom/mojang/realmsclient/gui/screens/RealmsLongConfirmationScreen$Type;Lnet/minecraft/network/chat/Component;Lnet/minecraft/network/chat/Component;Z)V com/mojang/realmsclient/gui/screens/RealmsLongConfirmationScreen/ (Lit/unimi/dsi/fastutil/booleans/BooleanConsumer;Lcom/mojang/realmsclient/gui/screens/RealmsLongConfirmationScreen$Type;Lnet/minecraft/network/chat/Component;Lnet/minecraft/network/chat/Component;Z)V +MD: com/mojang/realmsclient/gui/screens/RealmsLongConfirmationScreen/m_142562_ ()Lnet/minecraft/network/chat/Component; com/mojang/realmsclient/gui/screens/RealmsLongConfirmationScreen/getNarrationMessage ()Lnet/minecraft/network/chat/Component; +MD: com/mojang/realmsclient/gui/screens/RealmsLongConfirmationScreen/m_7856_ ()V com/mojang/realmsclient/gui/screens/RealmsLongConfirmationScreen/init ()V +MD: com/mojang/realmsclient/gui/screens/RealmsLongConfirmationScreen/m_7933_ (III)Z com/mojang/realmsclient/gui/screens/RealmsLongConfirmationScreen/keyPressed (III)Z +MD: com/mojang/realmsclient/gui/screens/RealmsLongConfirmationScreen/m_88315_ (Lnet/minecraft/client/gui/GuiGraphics;IIF)V com/mojang/realmsclient/gui/screens/RealmsLongConfirmationScreen/render (Lnet/minecraft/client/gui/GuiGraphics;IIF)V +MD: com/mojang/realmsclient/gui/screens/RealmsLongConfirmationScreen/m_88745_ (Lnet/minecraft/client/gui/components/Button;)V com/mojang/realmsclient/gui/screens/RealmsLongConfirmationScreen/lambda$init$2 (Lnet/minecraft/client/gui/components/Button;)V +MD: com/mojang/realmsclient/gui/screens/RealmsLongConfirmationScreen/m_88748_ (Lnet/minecraft/client/gui/components/Button;)V com/mojang/realmsclient/gui/screens/RealmsLongConfirmationScreen/lambda$init$1 (Lnet/minecraft/client/gui/components/Button;)V +MD: com/mojang/realmsclient/gui/screens/RealmsLongConfirmationScreen/m_88750_ (Lnet/minecraft/client/gui/components/Button;)V com/mojang/realmsclient/gui/screens/RealmsLongConfirmationScreen/lambda$init$0 (Lnet/minecraft/client/gui/components/Button;)V +MD: com/mojang/realmsclient/gui/screens/RealmsLongConfirmationScreen$Type/ ()V com/mojang/realmsclient/gui/screens/RealmsLongConfirmationScreen$Type/ ()V +MD: com/mojang/realmsclient/gui/screens/RealmsLongConfirmationScreen$Type/ (Ljava/lang/String;ILnet/minecraft/network/chat/Component;I)V com/mojang/realmsclient/gui/screens/RealmsLongConfirmationScreen$Type/ (Ljava/lang/String;ILnet/minecraft/network/chat/Component;I)V +MD: com/mojang/realmsclient/gui/screens/RealmsLongConfirmationScreen$Type/m_167412_ ()[Lcom/mojang/realmsclient/gui/screens/RealmsLongConfirmationScreen$Type; com/mojang/realmsclient/gui/screens/RealmsLongConfirmationScreen$Type/$values ()[Lcom/mojang/realmsclient/gui/screens/RealmsLongConfirmationScreen$Type; +MD: com/mojang/realmsclient/gui/screens/RealmsLongConfirmationScreen$Type/valueOf (Ljava/lang/String;)Lcom/mojang/realmsclient/gui/screens/RealmsLongConfirmationScreen$Type; com/mojang/realmsclient/gui/screens/RealmsLongConfirmationScreen$Type/valueOf (Ljava/lang/String;)Lcom/mojang/realmsclient/gui/screens/RealmsLongConfirmationScreen$Type; +MD: com/mojang/realmsclient/gui/screens/RealmsLongConfirmationScreen$Type/values ()[Lcom/mojang/realmsclient/gui/screens/RealmsLongConfirmationScreen$Type; com/mojang/realmsclient/gui/screens/RealmsLongConfirmationScreen$Type/values ()[Lcom/mojang/realmsclient/gui/screens/RealmsLongConfirmationScreen$Type; +MD: com/mojang/realmsclient/gui/screens/RealmsLongRunningMcoTaskScreen/ ()V com/mojang/realmsclient/gui/screens/RealmsLongRunningMcoTaskScreen/ ()V +MD: com/mojang/realmsclient/gui/screens/RealmsLongRunningMcoTaskScreen/ (Lnet/minecraft/client/gui/screens/Screen;Lcom/mojang/realmsclient/util/task/LongRunningTask;)V com/mojang/realmsclient/gui/screens/RealmsLongRunningMcoTaskScreen/ (Lnet/minecraft/client/gui/screens/Screen;Lcom/mojang/realmsclient/util/task/LongRunningTask;)V +MD: com/mojang/realmsclient/gui/screens/RealmsLongRunningMcoTaskScreen/m_279714_ ()V com/mojang/realmsclient/gui/screens/RealmsLongRunningMcoTaskScreen/lambda$error$2 ()V +MD: com/mojang/realmsclient/gui/screens/RealmsLongRunningMcoTaskScreen/m_5673_ (Lnet/minecraft/network/chat/Component;)V com/mojang/realmsclient/gui/screens/RealmsLongRunningMcoTaskScreen/error (Lnet/minecraft/network/chat/Component;)V +MD: com/mojang/realmsclient/gui/screens/RealmsLongRunningMcoTaskScreen/m_7856_ ()V com/mojang/realmsclient/gui/screens/RealmsLongRunningMcoTaskScreen/init ()V +MD: com/mojang/realmsclient/gui/screens/RealmsLongRunningMcoTaskScreen/m_7933_ (III)Z com/mojang/realmsclient/gui/screens/RealmsLongRunningMcoTaskScreen/keyPressed (III)Z +MD: com/mojang/realmsclient/gui/screens/RealmsLongRunningMcoTaskScreen/m_86600_ ()V com/mojang/realmsclient/gui/screens/RealmsLongRunningMcoTaskScreen/tick ()V +MD: com/mojang/realmsclient/gui/screens/RealmsLongRunningMcoTaskScreen/m_88315_ (Lnet/minecraft/client/gui/GuiGraphics;IIF)V com/mojang/realmsclient/gui/screens/RealmsLongRunningMcoTaskScreen/render (Lnet/minecraft/client/gui/GuiGraphics;IIF)V +MD: com/mojang/realmsclient/gui/screens/RealmsLongRunningMcoTaskScreen/m_88779_ ()Z com/mojang/realmsclient/gui/screens/RealmsLongRunningMcoTaskScreen/aborted ()Z +MD: com/mojang/realmsclient/gui/screens/RealmsLongRunningMcoTaskScreen/m_88789_ (Lnet/minecraft/client/gui/components/Button;)V com/mojang/realmsclient/gui/screens/RealmsLongRunningMcoTaskScreen/lambda$error$1 (Lnet/minecraft/client/gui/components/Button;)V +MD: com/mojang/realmsclient/gui/screens/RealmsLongRunningMcoTaskScreen/m_88794_ (Lnet/minecraft/client/gui/components/Button;)V com/mojang/realmsclient/gui/screens/RealmsLongRunningMcoTaskScreen/lambda$init$0 (Lnet/minecraft/client/gui/components/Button;)V +MD: com/mojang/realmsclient/gui/screens/RealmsLongRunningMcoTaskScreen/m_88796_ (Lnet/minecraft/network/chat/Component;)V com/mojang/realmsclient/gui/screens/RealmsLongRunningMcoTaskScreen/setTitle (Lnet/minecraft/network/chat/Component;)V +MD: com/mojang/realmsclient/gui/screens/RealmsLongRunningMcoTaskScreen/m_88799_ ()V com/mojang/realmsclient/gui/screens/RealmsLongRunningMcoTaskScreen/cancelOrBackButtonClicked ()V +MD: com/mojang/realmsclient/gui/screens/RealmsNotificationsScreen/ ()V com/mojang/realmsclient/gui/screens/RealmsNotificationsScreen/ ()V +MD: com/mojang/realmsclient/gui/screens/RealmsNotificationsScreen/ ()V com/mojang/realmsclient/gui/screens/RealmsNotificationsScreen/ ()V +MD: com/mojang/realmsclient/gui/screens/RealmsNotificationsScreen/m_238944_ (Lcom/mojang/realmsclient/gui/RealmsDataFetcher;Lcom/mojang/realmsclient/dto/RealmsNews;)V com/mojang/realmsclient/gui/screens/RealmsNotificationsScreen/lambda$addNewsAndInvitesSubscriptions$2 (Lcom/mojang/realmsclient/gui/RealmsDataFetcher;Lcom/mojang/realmsclient/dto/RealmsNews;)V +MD: com/mojang/realmsclient/gui/screens/RealmsNotificationsScreen/m_239493_ (Ljava/lang/Boolean;)V com/mojang/realmsclient/gui/screens/RealmsNotificationsScreen/lambda$addNewsAndInvitesSubscriptions$1 (Ljava/lang/Boolean;)V +MD: com/mojang/realmsclient/gui/screens/RealmsNotificationsScreen/m_239520_ (Ljava/lang/Integer;)V com/mojang/realmsclient/gui/screens/RealmsNotificationsScreen/lambda$addNewsAndInvitesSubscriptions$0 (Ljava/lang/Integer;)V +MD: com/mojang/realmsclient/gui/screens/RealmsNotificationsScreen/m_273962_ (Ljava/util/List;)V com/mojang/realmsclient/gui/screens/RealmsNotificationsScreen/lambda$addNotificationsSubscriptions$3 (Ljava/util/List;)V +MD: com/mojang/realmsclient/gui/screens/RealmsNotificationsScreen/m_274333_ ()V com/mojang/realmsclient/gui/screens/RealmsNotificationsScreen/added ()V +MD: com/mojang/realmsclient/gui/screens/RealmsNotificationsScreen/m_274584_ (Lcom/mojang/realmsclient/gui/RealmsDataFetcher;Lcom/mojang/realmsclient/gui/task/DataFetcher$Subscription;)V com/mojang/realmsclient/gui/screens/RealmsNotificationsScreen/addNewsAndInvitesSubscriptions (Lcom/mojang/realmsclient/gui/RealmsDataFetcher;Lcom/mojang/realmsclient/gui/task/DataFetcher$Subscription;)V +MD: com/mojang/realmsclient/gui/screens/RealmsNotificationsScreen/m_274585_ (Lcom/mojang/realmsclient/gui/RealmsDataFetcher;Lcom/mojang/realmsclient/gui/task/DataFetcher$Subscription;)V com/mojang/realmsclient/gui/screens/RealmsNotificationsScreen/addNotificationsSubscriptions (Lcom/mojang/realmsclient/gui/RealmsDataFetcher;Lcom/mojang/realmsclient/gui/task/DataFetcher$Subscription;)V +MD: com/mojang/realmsclient/gui/screens/RealmsNotificationsScreen/m_274595_ ()Lcom/mojang/realmsclient/gui/screens/RealmsNotificationsScreen$DataFetcherConfiguration; com/mojang/realmsclient/gui/screens/RealmsNotificationsScreen/getConfiguration ()Lcom/mojang/realmsclient/gui/screens/RealmsNotificationsScreen$DataFetcherConfiguration; +MD: com/mojang/realmsclient/gui/screens/RealmsNotificationsScreen/m_280451_ (Lnet/minecraft/client/gui/GuiGraphics;)V com/mojang/realmsclient/gui/screens/RealmsNotificationsScreen/drawIcons (Lnet/minecraft/client/gui/GuiGraphics;)V +MD: com/mojang/realmsclient/gui/screens/RealmsNotificationsScreen/m_7856_ ()V com/mojang/realmsclient/gui/screens/RealmsNotificationsScreen/init ()V +MD: com/mojang/realmsclient/gui/screens/RealmsNotificationsScreen/m_86600_ ()V com/mojang/realmsclient/gui/screens/RealmsNotificationsScreen/tick ()V +MD: com/mojang/realmsclient/gui/screens/RealmsNotificationsScreen/m_88315_ (Lnet/minecraft/client/gui/GuiGraphics;IIF)V com/mojang/realmsclient/gui/screens/RealmsNotificationsScreen/render (Lnet/minecraft/client/gui/GuiGraphics;IIF)V +MD: com/mojang/realmsclient/gui/screens/RealmsNotificationsScreen/m_88848_ ()Z com/mojang/realmsclient/gui/screens/RealmsNotificationsScreen/getRealmsNotificationsEnabled ()Z +MD: com/mojang/realmsclient/gui/screens/RealmsNotificationsScreen/m_88849_ ()Z com/mojang/realmsclient/gui/screens/RealmsNotificationsScreen/inTitleScreen ()Z +MD: com/mojang/realmsclient/gui/screens/RealmsNotificationsScreen/m_88850_ ()V com/mojang/realmsclient/gui/screens/RealmsNotificationsScreen/checkIfMcoEnabled ()V +MD: com/mojang/realmsclient/gui/screens/RealmsNotificationsScreen$1/ (Lcom/mojang/realmsclient/gui/screens/RealmsNotificationsScreen;Ljava/lang/String;)V com/mojang/realmsclient/gui/screens/RealmsNotificationsScreen$1/ (Lcom/mojang/realmsclient/gui/screens/RealmsNotificationsScreen;Ljava/lang/String;)V +MD: com/mojang/realmsclient/gui/screens/RealmsNotificationsScreen$1/run ()V com/mojang/realmsclient/gui/screens/RealmsNotificationsScreen$1/run ()V +MD: com/mojang/realmsclient/gui/screens/RealmsNotificationsScreen$2/ (Lcom/mojang/realmsclient/gui/screens/RealmsNotificationsScreen;)V com/mojang/realmsclient/gui/screens/RealmsNotificationsScreen$2/ (Lcom/mojang/realmsclient/gui/screens/RealmsNotificationsScreen;)V +MD: com/mojang/realmsclient/gui/screens/RealmsNotificationsScreen$2/m_274316_ (Lcom/mojang/realmsclient/gui/RealmsDataFetcher;)Lcom/mojang/realmsclient/gui/task/DataFetcher$Subscription; com/mojang/realmsclient/gui/screens/RealmsNotificationsScreen$2/initDataFetcher (Lcom/mojang/realmsclient/gui/RealmsDataFetcher;)Lcom/mojang/realmsclient/gui/task/DataFetcher$Subscription; +MD: com/mojang/realmsclient/gui/screens/RealmsNotificationsScreen$2/m_274328_ ()Z com/mojang/realmsclient/gui/screens/RealmsNotificationsScreen$2/showOldNotifications ()Z +MD: com/mojang/realmsclient/gui/screens/RealmsNotificationsScreen$3/ (Lcom/mojang/realmsclient/gui/screens/RealmsNotificationsScreen;)V com/mojang/realmsclient/gui/screens/RealmsNotificationsScreen$3/ (Lcom/mojang/realmsclient/gui/screens/RealmsNotificationsScreen;)V +MD: com/mojang/realmsclient/gui/screens/RealmsNotificationsScreen$3/m_274316_ (Lcom/mojang/realmsclient/gui/RealmsDataFetcher;)Lcom/mojang/realmsclient/gui/task/DataFetcher$Subscription; com/mojang/realmsclient/gui/screens/RealmsNotificationsScreen$3/initDataFetcher (Lcom/mojang/realmsclient/gui/RealmsDataFetcher;)Lcom/mojang/realmsclient/gui/task/DataFetcher$Subscription; +MD: com/mojang/realmsclient/gui/screens/RealmsNotificationsScreen$3/m_274328_ ()Z com/mojang/realmsclient/gui/screens/RealmsNotificationsScreen$3/showOldNotifications ()Z +MD: com/mojang/realmsclient/gui/screens/RealmsNotificationsScreen$DataFetcherConfiguration/m_274316_ (Lcom/mojang/realmsclient/gui/RealmsDataFetcher;)Lcom/mojang/realmsclient/gui/task/DataFetcher$Subscription; com/mojang/realmsclient/gui/screens/RealmsNotificationsScreen$DataFetcherConfiguration/initDataFetcher (Lcom/mojang/realmsclient/gui/RealmsDataFetcher;)Lcom/mojang/realmsclient/gui/task/DataFetcher$Subscription; +MD: com/mojang/realmsclient/gui/screens/RealmsNotificationsScreen$DataFetcherConfiguration/m_274328_ ()Z com/mojang/realmsclient/gui/screens/RealmsNotificationsScreen$DataFetcherConfiguration/showOldNotifications ()Z +MD: com/mojang/realmsclient/gui/screens/RealmsParentalConsentScreen/ ()V com/mojang/realmsclient/gui/screens/RealmsParentalConsentScreen/ ()V +MD: com/mojang/realmsclient/gui/screens/RealmsParentalConsentScreen/ (Lnet/minecraft/client/gui/screens/Screen;)V com/mojang/realmsclient/gui/screens/RealmsParentalConsentScreen/ (Lnet/minecraft/client/gui/screens/Screen;)V +MD: com/mojang/realmsclient/gui/screens/RealmsParentalConsentScreen/m_142562_ ()Lnet/minecraft/network/chat/Component; com/mojang/realmsclient/gui/screens/RealmsParentalConsentScreen/getNarrationMessage ()Lnet/minecraft/network/chat/Component; +MD: com/mojang/realmsclient/gui/screens/RealmsParentalConsentScreen/m_279715_ (Lnet/minecraft/client/gui/components/Button;)V com/mojang/realmsclient/gui/screens/RealmsParentalConsentScreen/lambda$init$2 (Lnet/minecraft/client/gui/components/Button;)V +MD: com/mojang/realmsclient/gui/screens/RealmsParentalConsentScreen/m_7856_ ()V com/mojang/realmsclient/gui/screens/RealmsParentalConsentScreen/init ()V +MD: com/mojang/realmsclient/gui/screens/RealmsParentalConsentScreen/m_88315_ (Lnet/minecraft/client/gui/GuiGraphics;IIF)V com/mojang/realmsclient/gui/screens/RealmsParentalConsentScreen/render (Lnet/minecraft/client/gui/GuiGraphics;IIF)V +MD: com/mojang/realmsclient/gui/screens/RealmsParentalConsentScreen/m_88870_ (Lnet/minecraft/client/gui/components/Button;)V com/mojang/realmsclient/gui/screens/RealmsParentalConsentScreen/lambda$init$1 (Lnet/minecraft/client/gui/components/Button;)V +MD: com/mojang/realmsclient/gui/screens/RealmsParentalConsentScreen/m_88872_ (Lnet/minecraft/client/gui/components/Button;)V com/mojang/realmsclient/gui/screens/RealmsParentalConsentScreen/lambda$init$0 (Lnet/minecraft/client/gui/components/Button;)V +MD: com/mojang/realmsclient/gui/screens/RealmsPendingInvitesScreen/ ()V com/mojang/realmsclient/gui/screens/RealmsPendingInvitesScreen/ ()V +MD: com/mojang/realmsclient/gui/screens/RealmsPendingInvitesScreen/ (Lnet/minecraft/client/gui/screens/Screen;Lnet/minecraft/network/chat/Component;)V com/mojang/realmsclient/gui/screens/RealmsPendingInvitesScreen/ (Lnet/minecraft/client/gui/screens/Screen;Lnet/minecraft/network/chat/Component;)V +MD: com/mojang/realmsclient/gui/screens/RealmsPendingInvitesScreen/m_167417_ (Lcom/mojang/realmsclient/gui/screens/RealmsPendingInvitesScreen;)Lnet/minecraft/client/Minecraft; com/mojang/realmsclient/gui/screens/RealmsPendingInvitesScreen/access$100 (Lcom/mojang/realmsclient/gui/screens/RealmsPendingInvitesScreen;)Lnet/minecraft/client/Minecraft; +MD: com/mojang/realmsclient/gui/screens/RealmsPendingInvitesScreen/m_167419_ (Lcom/mojang/realmsclient/gui/screens/RealmsPendingInvitesScreen;)Lnet/minecraft/client/Minecraft; com/mojang/realmsclient/gui/screens/RealmsPendingInvitesScreen/access$200 (Lcom/mojang/realmsclient/gui/screens/RealmsPendingInvitesScreen;)Lnet/minecraft/client/Minecraft; +MD: com/mojang/realmsclient/gui/screens/RealmsPendingInvitesScreen/m_167421_ (Lcom/mojang/realmsclient/gui/screens/RealmsPendingInvitesScreen;)Lnet/minecraft/client/gui/Font; com/mojang/realmsclient/gui/screens/RealmsPendingInvitesScreen/access$300 (Lcom/mojang/realmsclient/gui/screens/RealmsPendingInvitesScreen;)Lnet/minecraft/client/gui/Font; +MD: com/mojang/realmsclient/gui/screens/RealmsPendingInvitesScreen/m_167423_ (Lcom/mojang/realmsclient/gui/screens/RealmsPendingInvitesScreen;)Lnet/minecraft/client/gui/Font; com/mojang/realmsclient/gui/screens/RealmsPendingInvitesScreen/access$400 (Lcom/mojang/realmsclient/gui/screens/RealmsPendingInvitesScreen;)Lnet/minecraft/client/gui/Font; +MD: com/mojang/realmsclient/gui/screens/RealmsPendingInvitesScreen/m_167425_ (Lcom/mojang/realmsclient/gui/screens/RealmsPendingInvitesScreen;)Lnet/minecraft/client/gui/Font; com/mojang/realmsclient/gui/screens/RealmsPendingInvitesScreen/access$500 (Lcom/mojang/realmsclient/gui/screens/RealmsPendingInvitesScreen;)Lnet/minecraft/client/gui/Font; +MD: com/mojang/realmsclient/gui/screens/RealmsPendingInvitesScreen/m_279716_ (Lnet/minecraft/client/gui/components/Button;)V com/mojang/realmsclient/gui/screens/RealmsPendingInvitesScreen/lambda$init$1 (Lnet/minecraft/client/gui/components/Button;)V +MD: com/mojang/realmsclient/gui/screens/RealmsPendingInvitesScreen/m_280517_ (Lnet/minecraft/client/gui/GuiGraphics;Lnet/minecraft/network/chat/Component;II)V com/mojang/realmsclient/gui/screens/RealmsPendingInvitesScreen/renderMousehoverTooltip (Lnet/minecraft/client/gui/GuiGraphics;Lnet/minecraft/network/chat/Component;II)V +MD: com/mojang/realmsclient/gui/screens/RealmsPendingInvitesScreen/m_7856_ ()V com/mojang/realmsclient/gui/screens/RealmsPendingInvitesScreen/init ()V +MD: com/mojang/realmsclient/gui/screens/RealmsPendingInvitesScreen/m_7933_ (III)Z com/mojang/realmsclient/gui/screens/RealmsPendingInvitesScreen/keyPressed (III)Z +MD: com/mojang/realmsclient/gui/screens/RealmsPendingInvitesScreen/m_88315_ (Lnet/minecraft/client/gui/GuiGraphics;IIF)V com/mojang/realmsclient/gui/screens/RealmsPendingInvitesScreen/render (Lnet/minecraft/client/gui/GuiGraphics;IIF)V +MD: com/mojang/realmsclient/gui/screens/RealmsPendingInvitesScreen/m_88892_ (I)V com/mojang/realmsclient/gui/screens/RealmsPendingInvitesScreen/updateList (I)V +MD: com/mojang/realmsclient/gui/screens/RealmsPendingInvitesScreen/m_88908_ (Lcom/mojang/realmsclient/gui/screens/RealmsPendingInvitesScreen;)Lnet/minecraft/client/Minecraft; com/mojang/realmsclient/gui/screens/RealmsPendingInvitesScreen/access$000 (Lcom/mojang/realmsclient/gui/screens/RealmsPendingInvitesScreen;)Lnet/minecraft/client/Minecraft; +MD: com/mojang/realmsclient/gui/screens/RealmsPendingInvitesScreen/m_88919_ (Lnet/minecraft/client/gui/components/Button;)V com/mojang/realmsclient/gui/screens/RealmsPendingInvitesScreen/lambda$init$2 (Lnet/minecraft/client/gui/components/Button;)V +MD: com/mojang/realmsclient/gui/screens/RealmsPendingInvitesScreen/m_88922_ (I)V com/mojang/realmsclient/gui/screens/RealmsPendingInvitesScreen/reject (I)V +MD: com/mojang/realmsclient/gui/screens/RealmsPendingInvitesScreen/m_88932_ (I)V com/mojang/realmsclient/gui/screens/RealmsPendingInvitesScreen/accept (I)V +MD: com/mojang/realmsclient/gui/screens/RealmsPendingInvitesScreen/m_88939_ (Lnet/minecraft/client/gui/components/Button;)V com/mojang/realmsclient/gui/screens/RealmsPendingInvitesScreen/lambda$init$0 (Lnet/minecraft/client/gui/components/Button;)V +MD: com/mojang/realmsclient/gui/screens/RealmsPendingInvitesScreen/m_88957_ ()V com/mojang/realmsclient/gui/screens/RealmsPendingInvitesScreen/updateButtonStates ()V +MD: com/mojang/realmsclient/gui/screens/RealmsPendingInvitesScreen/m_88962_ (I)Z com/mojang/realmsclient/gui/screens/RealmsPendingInvitesScreen/shouldAcceptAndRejectButtonBeVisible (I)Z +MD: com/mojang/realmsclient/gui/screens/RealmsPendingInvitesScreen$1/ (Lcom/mojang/realmsclient/gui/screens/RealmsPendingInvitesScreen;Ljava/lang/String;)V com/mojang/realmsclient/gui/screens/RealmsPendingInvitesScreen$1/ (Lcom/mojang/realmsclient/gui/screens/RealmsPendingInvitesScreen;Ljava/lang/String;)V +MD: com/mojang/realmsclient/gui/screens/RealmsPendingInvitesScreen$1/m_88968_ (Lcom/mojang/realmsclient/dto/PendingInvite;)Lcom/mojang/realmsclient/gui/screens/RealmsPendingInvitesScreen$Entry; com/mojang/realmsclient/gui/screens/RealmsPendingInvitesScreen$1/lambda$run$0 (Lcom/mojang/realmsclient/dto/PendingInvite;)Lcom/mojang/realmsclient/gui/screens/RealmsPendingInvitesScreen$Entry; +MD: com/mojang/realmsclient/gui/screens/RealmsPendingInvitesScreen$1/m_88970_ (Ljava/util/List;)V com/mojang/realmsclient/gui/screens/RealmsPendingInvitesScreen$1/lambda$run$1 (Ljava/util/List;)V +MD: com/mojang/realmsclient/gui/screens/RealmsPendingInvitesScreen$1/run ()V com/mojang/realmsclient/gui/screens/RealmsPendingInvitesScreen$1/run ()V +MD: com/mojang/realmsclient/gui/screens/RealmsPendingInvitesScreen$2/ (Lcom/mojang/realmsclient/gui/screens/RealmsPendingInvitesScreen;Ljava/lang/String;I)V com/mojang/realmsclient/gui/screens/RealmsPendingInvitesScreen$2/ (Lcom/mojang/realmsclient/gui/screens/RealmsPendingInvitesScreen;Ljava/lang/String;I)V +MD: com/mojang/realmsclient/gui/screens/RealmsPendingInvitesScreen$2/m_88979_ (I)V com/mojang/realmsclient/gui/screens/RealmsPendingInvitesScreen$2/lambda$run$0 (I)V +MD: com/mojang/realmsclient/gui/screens/RealmsPendingInvitesScreen$2/run ()V com/mojang/realmsclient/gui/screens/RealmsPendingInvitesScreen$2/run ()V +MD: com/mojang/realmsclient/gui/screens/RealmsPendingInvitesScreen$3/ (Lcom/mojang/realmsclient/gui/screens/RealmsPendingInvitesScreen;Ljava/lang/String;I)V com/mojang/realmsclient/gui/screens/RealmsPendingInvitesScreen$3/ (Lcom/mojang/realmsclient/gui/screens/RealmsPendingInvitesScreen;Ljava/lang/String;I)V +MD: com/mojang/realmsclient/gui/screens/RealmsPendingInvitesScreen$3/m_88988_ (I)V com/mojang/realmsclient/gui/screens/RealmsPendingInvitesScreen$3/lambda$run$0 (I)V +MD: com/mojang/realmsclient/gui/screens/RealmsPendingInvitesScreen$3/run ()V com/mojang/realmsclient/gui/screens/RealmsPendingInvitesScreen$3/run ()V +MD: com/mojang/realmsclient/gui/screens/RealmsPendingInvitesScreen$Entry/ (Lcom/mojang/realmsclient/gui/screens/RealmsPendingInvitesScreen;Lcom/mojang/realmsclient/dto/PendingInvite;)V com/mojang/realmsclient/gui/screens/RealmsPendingInvitesScreen$Entry/ (Lcom/mojang/realmsclient/gui/screens/RealmsPendingInvitesScreen;Lcom/mojang/realmsclient/dto/PendingInvite;)V +MD: com/mojang/realmsclient/gui/screens/RealmsPendingInvitesScreen$Entry/m_142172_ ()Lnet/minecraft/network/chat/Component; com/mojang/realmsclient/gui/screens/RealmsPendingInvitesScreen$Entry/getNarration ()Lnet/minecraft/network/chat/Component; +MD: com/mojang/realmsclient/gui/screens/RealmsPendingInvitesScreen$Entry/m_280468_ (Lnet/minecraft/client/gui/GuiGraphics;Lcom/mojang/realmsclient/dto/PendingInvite;IIII)V com/mojang/realmsclient/gui/screens/RealmsPendingInvitesScreen$Entry/renderPendingInvitationItem (Lnet/minecraft/client/gui/GuiGraphics;Lcom/mojang/realmsclient/dto/PendingInvite;IIII)V +MD: com/mojang/realmsclient/gui/screens/RealmsPendingInvitesScreen$Entry/m_6311_ (Lnet/minecraft/client/gui/GuiGraphics;IIIIIIIZF)V com/mojang/realmsclient/gui/screens/RealmsPendingInvitesScreen$Entry/render (Lnet/minecraft/client/gui/GuiGraphics;IIIIIIIZF)V +MD: com/mojang/realmsclient/gui/screens/RealmsPendingInvitesScreen$Entry/m_6375_ (DDI)Z com/mojang/realmsclient/gui/screens/RealmsPendingInvitesScreen$Entry/mouseClicked (DDI)Z +MD: com/mojang/realmsclient/gui/screens/RealmsPendingInvitesScreen$Entry$AcceptRowButton/ (Lcom/mojang/realmsclient/gui/screens/RealmsPendingInvitesScreen$Entry;)V com/mojang/realmsclient/gui/screens/RealmsPendingInvitesScreen$Entry$AcceptRowButton/ (Lcom/mojang/realmsclient/gui/screens/RealmsPendingInvitesScreen$Entry;)V +MD: com/mojang/realmsclient/gui/screens/RealmsPendingInvitesScreen$Entry$AcceptRowButton/m_7516_ (I)V com/mojang/realmsclient/gui/screens/RealmsPendingInvitesScreen$Entry$AcceptRowButton/onClick (I)V +MD: com/mojang/realmsclient/gui/screens/RealmsPendingInvitesScreen$Entry$AcceptRowButton/m_7537_ (Lnet/minecraft/client/gui/GuiGraphics;IIZ)V com/mojang/realmsclient/gui/screens/RealmsPendingInvitesScreen$Entry$AcceptRowButton/draw (Lnet/minecraft/client/gui/GuiGraphics;IIZ)V +MD: com/mojang/realmsclient/gui/screens/RealmsPendingInvitesScreen$Entry$RejectRowButton/ (Lcom/mojang/realmsclient/gui/screens/RealmsPendingInvitesScreen$Entry;)V com/mojang/realmsclient/gui/screens/RealmsPendingInvitesScreen$Entry$RejectRowButton/ (Lcom/mojang/realmsclient/gui/screens/RealmsPendingInvitesScreen$Entry;)V +MD: com/mojang/realmsclient/gui/screens/RealmsPendingInvitesScreen$Entry$RejectRowButton/m_7516_ (I)V com/mojang/realmsclient/gui/screens/RealmsPendingInvitesScreen$Entry$RejectRowButton/onClick (I)V +MD: com/mojang/realmsclient/gui/screens/RealmsPendingInvitesScreen$Entry$RejectRowButton/m_7537_ (Lnet/minecraft/client/gui/GuiGraphics;IIZ)V com/mojang/realmsclient/gui/screens/RealmsPendingInvitesScreen$Entry$RejectRowButton/draw (Lnet/minecraft/client/gui/GuiGraphics;IIZ)V +MD: com/mojang/realmsclient/gui/screens/RealmsPendingInvitesScreen$PendingInvitationSelectionList/ (Lcom/mojang/realmsclient/gui/screens/RealmsPendingInvitesScreen;)V com/mojang/realmsclient/gui/screens/RealmsPendingInvitesScreen$PendingInvitationSelectionList/ (Lcom/mojang/realmsclient/gui/screens/RealmsPendingInvitesScreen;)V +MD: com/mojang/realmsclient/gui/screens/RealmsPendingInvitesScreen$PendingInvitationSelectionList/m_5759_ ()I com/mojang/realmsclient/gui/screens/RealmsPendingInvitesScreen$PendingInvitationSelectionList/getRowWidth ()I +MD: com/mojang/realmsclient/gui/screens/RealmsPendingInvitesScreen$PendingInvitationSelectionList/m_5775_ ()I com/mojang/realmsclient/gui/screens/RealmsPendingInvitesScreen$PendingInvitationSelectionList/getMaxPosition ()I +MD: com/mojang/realmsclient/gui/screens/RealmsPendingInvitesScreen$PendingInvitationSelectionList/m_6987_ (Lcom/mojang/realmsclient/gui/screens/RealmsPendingInvitesScreen$Entry;)V com/mojang/realmsclient/gui/screens/RealmsPendingInvitesScreen$PendingInvitationSelectionList/setSelected (Lcom/mojang/realmsclient/gui/screens/RealmsPendingInvitesScreen$Entry;)V +MD: com/mojang/realmsclient/gui/screens/RealmsPendingInvitesScreen$PendingInvitationSelectionList/m_6987_ (Lnet/minecraft/client/gui/components/AbstractSelectionList$Entry;)V com/mojang/realmsclient/gui/screens/RealmsPendingInvitesScreen$PendingInvitationSelectionList/setSelected (Lnet/minecraft/client/gui/components/AbstractSelectionList$Entry;)V +MD: com/mojang/realmsclient/gui/screens/RealmsPendingInvitesScreen$PendingInvitationSelectionList/m_7109_ (I)V com/mojang/realmsclient/gui/screens/RealmsPendingInvitesScreen$PendingInvitationSelectionList/selectItem (I)V +MD: com/mojang/realmsclient/gui/screens/RealmsPendingInvitesScreen$PendingInvitationSelectionList/m_7733_ (Lnet/minecraft/client/gui/GuiGraphics;)V com/mojang/realmsclient/gui/screens/RealmsPendingInvitesScreen$PendingInvitationSelectionList/renderBackground (Lnet/minecraft/client/gui/GuiGraphics;)V +MD: com/mojang/realmsclient/gui/screens/RealmsPendingInvitesScreen$PendingInvitationSelectionList/m_89057_ (I)V com/mojang/realmsclient/gui/screens/RealmsPendingInvitesScreen$PendingInvitationSelectionList/removeAtIndex (I)V +MD: com/mojang/realmsclient/gui/screens/RealmsPendingInvitesScreen$PendingInvitationSelectionList/m_89060_ (I)V com/mojang/realmsclient/gui/screens/RealmsPendingInvitesScreen$PendingInvitationSelectionList/selectInviteListItem (I)V +MD: com/mojang/realmsclient/gui/screens/RealmsPlayerScreen/ ()V com/mojang/realmsclient/gui/screens/RealmsPlayerScreen/ ()V +MD: com/mojang/realmsclient/gui/screens/RealmsPlayerScreen/ (Lcom/mojang/realmsclient/gui/screens/RealmsConfigureWorldScreen;Lcom/mojang/realmsclient/dto/RealmsServer;)V com/mojang/realmsclient/gui/screens/RealmsPlayerScreen/ (Lcom/mojang/realmsclient/gui/screens/RealmsConfigureWorldScreen;Lcom/mojang/realmsclient/dto/RealmsServer;)V +MD: com/mojang/realmsclient/gui/screens/RealmsPlayerScreen/m_167429_ (I)I com/mojang/realmsclient/gui/screens/RealmsPlayerScreen/access$000 (I)I +MD: com/mojang/realmsclient/gui/screens/RealmsPlayerScreen/m_167431_ (Lcom/mojang/realmsclient/gui/screens/RealmsPlayerScreen;)Lnet/minecraft/client/gui/Font; com/mojang/realmsclient/gui/screens/RealmsPlayerScreen/access$300 (Lcom/mojang/realmsclient/gui/screens/RealmsPlayerScreen;)Lnet/minecraft/client/gui/Font; +MD: com/mojang/realmsclient/gui/screens/RealmsPlayerScreen/m_278515_ (Lnet/minecraft/client/gui/components/Button;)V com/mojang/realmsclient/gui/screens/RealmsPlayerScreen/lambda$init$1 (Lnet/minecraft/client/gui/components/Button;)V +MD: com/mojang/realmsclient/gui/screens/RealmsPlayerScreen/m_278516_ (Lcom/mojang/realmsclient/dto/PlayerInfo;Z)V com/mojang/realmsclient/gui/screens/RealmsPlayerScreen/lambda$uninvite$4 (Lcom/mojang/realmsclient/dto/PlayerInfo;Z)V +MD: com/mojang/realmsclient/gui/screens/RealmsPlayerScreen/m_278517_ (Lnet/minecraft/client/gui/components/Button;)V com/mojang/realmsclient/gui/screens/RealmsPlayerScreen/lambda$init$2 (Lnet/minecraft/client/gui/components/Button;)V +MD: com/mojang/realmsclient/gui/screens/RealmsPlayerScreen/m_279717_ (Lnet/minecraft/client/gui/components/Button;)V com/mojang/realmsclient/gui/screens/RealmsPlayerScreen/lambda$init$0 (Lnet/minecraft/client/gui/components/Button;)V +MD: com/mojang/realmsclient/gui/screens/RealmsPlayerScreen/m_7856_ ()V com/mojang/realmsclient/gui/screens/RealmsPlayerScreen/init ()V +MD: com/mojang/realmsclient/gui/screens/RealmsPlayerScreen/m_7933_ (III)Z com/mojang/realmsclient/gui/screens/RealmsPlayerScreen/keyPressed (III)Z +MD: com/mojang/realmsclient/gui/screens/RealmsPlayerScreen/m_88315_ (Lnet/minecraft/client/gui/GuiGraphics;IIF)V com/mojang/realmsclient/gui/screens/RealmsPlayerScreen/render (Lnet/minecraft/client/gui/GuiGraphics;IIF)V +MD: com/mojang/realmsclient/gui/screens/RealmsPlayerScreen/m_89091_ (I)I com/mojang/realmsclient/gui/screens/RealmsPlayerScreen/access$100 (I)I +MD: com/mojang/realmsclient/gui/screens/RealmsPlayerScreen/m_89107_ (Lcom/mojang/realmsclient/dto/Ops;)V com/mojang/realmsclient/gui/screens/RealmsPlayerScreen/updateOps (Lcom/mojang/realmsclient/dto/Ops;)V +MD: com/mojang/realmsclient/gui/screens/RealmsPlayerScreen/m_89121_ (Lnet/minecraft/client/gui/components/Button;)V com/mojang/realmsclient/gui/screens/RealmsPlayerScreen/lambda$init$3 (Lnet/minecraft/client/gui/components/Button;)V +MD: com/mojang/realmsclient/gui/screens/RealmsPlayerScreen/m_89124_ (I)I com/mojang/realmsclient/gui/screens/RealmsPlayerScreen/access$200 (I)I +MD: com/mojang/realmsclient/gui/screens/RealmsPlayerScreen/m_89188_ ()V com/mojang/realmsclient/gui/screens/RealmsPlayerScreen/updateButtonStates ()V +MD: com/mojang/realmsclient/gui/screens/RealmsPlayerScreen/m_89189_ ()V com/mojang/realmsclient/gui/screens/RealmsPlayerScreen/backButtonClicked ()V +MD: com/mojang/realmsclient/gui/screens/RealmsPlayerScreen/m_89190_ (I)Z com/mojang/realmsclient/gui/screens/RealmsPlayerScreen/shouldRemoveAndOpdeopButtonBeVisible (I)Z +MD: com/mojang/realmsclient/gui/screens/RealmsPlayerScreen/m_89192_ (I)V com/mojang/realmsclient/gui/screens/RealmsPlayerScreen/op (I)V +MD: com/mojang/realmsclient/gui/screens/RealmsPlayerScreen/m_89194_ (I)V com/mojang/realmsclient/gui/screens/RealmsPlayerScreen/deop (I)V +MD: com/mojang/realmsclient/gui/screens/RealmsPlayerScreen/m_89196_ (I)V com/mojang/realmsclient/gui/screens/RealmsPlayerScreen/uninvite (I)V +MD: com/mojang/realmsclient/gui/screens/RealmsPlayerScreen$Entry/ (Lcom/mojang/realmsclient/gui/screens/RealmsPlayerScreen;Lcom/mojang/realmsclient/dto/PlayerInfo;)V com/mojang/realmsclient/gui/screens/RealmsPlayerScreen$Entry/ (Lcom/mojang/realmsclient/gui/screens/RealmsPlayerScreen;Lcom/mojang/realmsclient/dto/PlayerInfo;)V +MD: com/mojang/realmsclient/gui/screens/RealmsPlayerScreen$Entry/m_142172_ ()Lnet/minecraft/network/chat/Component; com/mojang/realmsclient/gui/screens/RealmsPlayerScreen$Entry/getNarration ()Lnet/minecraft/network/chat/Component; +MD: com/mojang/realmsclient/gui/screens/RealmsPlayerScreen$Entry/m_278685_ (ILnet/minecraft/client/gui/components/Button;)V com/mojang/realmsclient/gui/screens/RealmsPlayerScreen$Entry/lambda$new$2 (ILnet/minecraft/client/gui/components/Button;)V +MD: com/mojang/realmsclient/gui/screens/RealmsPlayerScreen$Entry/m_278710_ (ILnet/minecraft/client/gui/components/Button;)V com/mojang/realmsclient/gui/screens/RealmsPlayerScreen$Entry/lambda$new$0 (ILnet/minecraft/client/gui/components/Button;)V +MD: com/mojang/realmsclient/gui/screens/RealmsPlayerScreen$Entry/m_278731_ (ILnet/minecraft/client/gui/components/Button;)V com/mojang/realmsclient/gui/screens/RealmsPlayerScreen$Entry/lambda$new$1 (ILnet/minecraft/client/gui/components/Button;)V +MD: com/mojang/realmsclient/gui/screens/RealmsPlayerScreen$Entry/m_278747_ ()V com/mojang/realmsclient/gui/screens/RealmsPlayerScreen$Entry/updateButtons ()V +MD: com/mojang/realmsclient/gui/screens/RealmsPlayerScreen$Entry/m_279718_ (ILnet/minecraft/client/gui/GuiGraphics;IIFLnet/minecraft/client/gui/components/AbstractWidget;)V com/mojang/realmsclient/gui/screens/RealmsPlayerScreen$Entry/lambda$render$3 (ILnet/minecraft/client/gui/GuiGraphics;IIFLnet/minecraft/client/gui/components/AbstractWidget;)V +MD: com/mojang/realmsclient/gui/screens/RealmsPlayerScreen$Entry/m_6311_ (Lnet/minecraft/client/gui/GuiGraphics;IIIIIIIZF)V com/mojang/realmsclient/gui/screens/RealmsPlayerScreen$Entry/render (Lnet/minecraft/client/gui/GuiGraphics;IIIIIIIZF)V +MD: com/mojang/realmsclient/gui/screens/RealmsPlayerScreen$Entry/m_6375_ (DDI)Z com/mojang/realmsclient/gui/screens/RealmsPlayerScreen$Entry/mouseClicked (DDI)Z +MD: com/mojang/realmsclient/gui/screens/RealmsPlayerScreen$InvitedObjectSelectionList/ (Lcom/mojang/realmsclient/gui/screens/RealmsPlayerScreen;)V com/mojang/realmsclient/gui/screens/RealmsPlayerScreen$InvitedObjectSelectionList/ (Lcom/mojang/realmsclient/gui/screens/RealmsPlayerScreen;)V +MD: com/mojang/realmsclient/gui/screens/RealmsPlayerScreen$InvitedObjectSelectionList/m_278791_ ()V com/mojang/realmsclient/gui/screens/RealmsPlayerScreen$InvitedObjectSelectionList/updateButtons ()V +MD: com/mojang/realmsclient/gui/screens/RealmsPlayerScreen$InvitedObjectSelectionList/m_5756_ ()I com/mojang/realmsclient/gui/screens/RealmsPlayerScreen$InvitedObjectSelectionList/getScrollbarPosition ()I +MD: com/mojang/realmsclient/gui/screens/RealmsPlayerScreen$InvitedObjectSelectionList/m_5759_ ()I com/mojang/realmsclient/gui/screens/RealmsPlayerScreen$InvitedObjectSelectionList/getRowWidth ()I +MD: com/mojang/realmsclient/gui/screens/RealmsPlayerScreen$InvitedObjectSelectionList/m_5775_ ()I com/mojang/realmsclient/gui/screens/RealmsPlayerScreen$InvitedObjectSelectionList/getMaxPosition ()I +MD: com/mojang/realmsclient/gui/screens/RealmsPlayerScreen$InvitedObjectSelectionList/m_6987_ (Lcom/mojang/realmsclient/gui/screens/RealmsPlayerScreen$Entry;)V com/mojang/realmsclient/gui/screens/RealmsPlayerScreen$InvitedObjectSelectionList/setSelected (Lcom/mojang/realmsclient/gui/screens/RealmsPlayerScreen$Entry;)V +MD: com/mojang/realmsclient/gui/screens/RealmsPlayerScreen$InvitedObjectSelectionList/m_6987_ (Lnet/minecraft/client/gui/components/AbstractSelectionList$Entry;)V com/mojang/realmsclient/gui/screens/RealmsPlayerScreen$InvitedObjectSelectionList/setSelected (Lnet/minecraft/client/gui/components/AbstractSelectionList$Entry;)V +MD: com/mojang/realmsclient/gui/screens/RealmsPlayerScreen$InvitedObjectSelectionList/m_7109_ (I)V com/mojang/realmsclient/gui/screens/RealmsPlayerScreen$InvitedObjectSelectionList/selectItem (I)V +MD: com/mojang/realmsclient/gui/screens/RealmsPlayerScreen$InvitedObjectSelectionList/m_7733_ (Lnet/minecraft/client/gui/GuiGraphics;)V com/mojang/realmsclient/gui/screens/RealmsPlayerScreen$InvitedObjectSelectionList/renderBackground (Lnet/minecraft/client/gui/GuiGraphics;)V +MD: com/mojang/realmsclient/gui/screens/RealmsPlayerScreen$InvitedObjectSelectionList/m_89243_ (Lcom/mojang/realmsclient/dto/PlayerInfo;)V com/mojang/realmsclient/gui/screens/RealmsPlayerScreen$InvitedObjectSelectionList/addEntry (Lcom/mojang/realmsclient/dto/PlayerInfo;)V +MD: com/mojang/realmsclient/gui/screens/RealmsPlayerScreen$InvitedObjectSelectionList/m_89250_ (I)V com/mojang/realmsclient/gui/screens/RealmsPlayerScreen$InvitedObjectSelectionList/selectInviteListItem (I)V +MD: com/mojang/realmsclient/gui/screens/RealmsResetNormalWorldScreen/ ()V com/mojang/realmsclient/gui/screens/RealmsResetNormalWorldScreen/ ()V +MD: com/mojang/realmsclient/gui/screens/RealmsResetNormalWorldScreen/ (Ljava/util/function/Consumer;Lnet/minecraft/network/chat/Component;)V com/mojang/realmsclient/gui/screens/RealmsResetNormalWorldScreen/ (Ljava/util/function/Consumer;Lnet/minecraft/network/chat/Component;)V +MD: com/mojang/realmsclient/gui/screens/RealmsResetNormalWorldScreen/m_167440_ (Lnet/minecraft/client/gui/components/CycleButton;Lcom/mojang/realmsclient/util/LevelType;)V com/mojang/realmsclient/gui/screens/RealmsResetNormalWorldScreen/lambda$init$0 (Lnet/minecraft/client/gui/components/CycleButton;Lcom/mojang/realmsclient/util/LevelType;)V +MD: com/mojang/realmsclient/gui/screens/RealmsResetNormalWorldScreen/m_167443_ (Lnet/minecraft/client/gui/components/CycleButton;Ljava/lang/Boolean;)V com/mojang/realmsclient/gui/screens/RealmsResetNormalWorldScreen/lambda$init$1 (Lnet/minecraft/client/gui/components/CycleButton;Ljava/lang/Boolean;)V +MD: com/mojang/realmsclient/gui/screens/RealmsResetNormalWorldScreen/m_7379_ ()V com/mojang/realmsclient/gui/screens/RealmsResetNormalWorldScreen/onClose ()V +MD: com/mojang/realmsclient/gui/screens/RealmsResetNormalWorldScreen/m_7856_ ()V com/mojang/realmsclient/gui/screens/RealmsResetNormalWorldScreen/init ()V +MD: com/mojang/realmsclient/gui/screens/RealmsResetNormalWorldScreen/m_86600_ ()V com/mojang/realmsclient/gui/screens/RealmsResetNormalWorldScreen/tick ()V +MD: com/mojang/realmsclient/gui/screens/RealmsResetNormalWorldScreen/m_88315_ (Lnet/minecraft/client/gui/GuiGraphics;IIF)V com/mojang/realmsclient/gui/screens/RealmsResetNormalWorldScreen/render (Lnet/minecraft/client/gui/GuiGraphics;IIF)V +MD: com/mojang/realmsclient/gui/screens/RealmsResetNormalWorldScreen/m_89287_ (Lnet/minecraft/client/gui/components/Button;)V com/mojang/realmsclient/gui/screens/RealmsResetNormalWorldScreen/lambda$init$3 (Lnet/minecraft/client/gui/components/Button;)V +MD: com/mojang/realmsclient/gui/screens/RealmsResetNormalWorldScreen/m_89290_ (Lnet/minecraft/client/gui/components/Button;)V com/mojang/realmsclient/gui/screens/RealmsResetNormalWorldScreen/lambda$init$2 (Lnet/minecraft/client/gui/components/Button;)V +MD: com/mojang/realmsclient/gui/screens/RealmsResetWorldScreen/ ()V com/mojang/realmsclient/gui/screens/RealmsResetWorldScreen/ ()V +MD: com/mojang/realmsclient/gui/screens/RealmsResetWorldScreen/ (Lnet/minecraft/client/gui/screens/Screen;Lcom/mojang/realmsclient/dto/RealmsServer;Lnet/minecraft/network/chat/Component;Lnet/minecraft/network/chat/Component;ILnet/minecraft/network/chat/Component;Ljava/lang/Runnable;Ljava/lang/Runnable;)V com/mojang/realmsclient/gui/screens/RealmsResetWorldScreen/ (Lnet/minecraft/client/gui/screens/Screen;Lcom/mojang/realmsclient/dto/RealmsServer;Lnet/minecraft/network/chat/Component;Lnet/minecraft/network/chat/Component;ILnet/minecraft/network/chat/Component;Ljava/lang/Runnable;Ljava/lang/Runnable;)V +MD: com/mojang/realmsclient/gui/screens/RealmsResetWorldScreen/ (Lnet/minecraft/client/gui/screens/Screen;Lcom/mojang/realmsclient/dto/RealmsServer;Lnet/minecraft/network/chat/Component;Ljava/lang/Runnable;Ljava/lang/Runnable;)V com/mojang/realmsclient/gui/screens/RealmsResetWorldScreen/ (Lnet/minecraft/client/gui/screens/Screen;Lcom/mojang/realmsclient/dto/RealmsServer;Lnet/minecraft/network/chat/Component;Ljava/lang/Runnable;Ljava/lang/Runnable;)V +MD: com/mojang/realmsclient/gui/screens/RealmsResetWorldScreen/ (Lnet/minecraft/client/gui/screens/Screen;Lcom/mojang/realmsclient/dto/RealmsServer;Ljava/lang/Runnable;Ljava/lang/Runnable;)V com/mojang/realmsclient/gui/screens/RealmsResetWorldScreen/ (Lnet/minecraft/client/gui/screens/Screen;Lcom/mojang/realmsclient/dto/RealmsServer;Ljava/lang/Runnable;Ljava/lang/Runnable;)V +MD: com/mojang/realmsclient/gui/screens/RealmsResetWorldScreen/m_142562_ ()Lnet/minecraft/network/chat/Component; com/mojang/realmsclient/gui/screens/RealmsResetWorldScreen/getNarrationMessage ()Lnet/minecraft/network/chat/Component; +MD: com/mojang/realmsclient/gui/screens/RealmsResetWorldScreen/m_167453_ (Lcom/mojang/realmsclient/dto/WorldTemplate;)V com/mojang/realmsclient/gui/screens/RealmsResetWorldScreen/templateSelectionCallback (Lcom/mojang/realmsclient/dto/WorldTemplate;)V +MD: com/mojang/realmsclient/gui/screens/RealmsResetWorldScreen/m_167455_ (Lcom/mojang/realmsclient/util/WorldGenerationInfo;)V com/mojang/realmsclient/gui/screens/RealmsResetWorldScreen/generationSelectionCallback (Lcom/mojang/realmsclient/util/WorldGenerationInfo;)V +MD: com/mojang/realmsclient/gui/screens/RealmsResetWorldScreen/m_167457_ (Lcom/mojang/realmsclient/util/task/LongRunningTask;)V com/mojang/realmsclient/gui/screens/RealmsResetWorldScreen/startTask (Lcom/mojang/realmsclient/util/task/LongRunningTask;)V +MD: com/mojang/realmsclient/gui/screens/RealmsResetWorldScreen/m_167464_ (Ljava/lang/Runnable;)V com/mojang/realmsclient/gui/screens/RealmsResetWorldScreen/resetWorld (Ljava/lang/Runnable;)V +MD: com/mojang/realmsclient/gui/screens/RealmsResetWorldScreen/m_181336_ (Lcom/mojang/realmsclient/dto/WorldTemplate;)V com/mojang/realmsclient/gui/screens/RealmsResetWorldScreen/lambda$templateSelectionCallback$8 (Lcom/mojang/realmsclient/dto/WorldTemplate;)V +MD: com/mojang/realmsclient/gui/screens/RealmsResetWorldScreen/m_181338_ (Lcom/mojang/realmsclient/util/WorldGenerationInfo;)V com/mojang/realmsclient/gui/screens/RealmsResetWorldScreen/lambda$generationSelectionCallback$9 (Lcom/mojang/realmsclient/util/WorldGenerationInfo;)V +MD: com/mojang/realmsclient/gui/screens/RealmsResetWorldScreen/m_279719_ (Lnet/minecraft/client/gui/components/Button;)V com/mojang/realmsclient/gui/screens/RealmsResetWorldScreen/lambda$init$4 (Lnet/minecraft/client/gui/components/Button;)V +MD: com/mojang/realmsclient/gui/screens/RealmsResetWorldScreen/m_279720_ (Lnet/minecraft/client/gui/components/Button;)V com/mojang/realmsclient/gui/screens/RealmsResetWorldScreen/lambda$init$6 (Lnet/minecraft/client/gui/components/Button;)V +MD: com/mojang/realmsclient/gui/screens/RealmsResetWorldScreen/m_279721_ (Lnet/minecraft/client/gui/components/Button;)V com/mojang/realmsclient/gui/screens/RealmsResetWorldScreen/lambda$init$0 (Lnet/minecraft/client/gui/components/Button;)V +MD: com/mojang/realmsclient/gui/screens/RealmsResetWorldScreen/m_279722_ (Lnet/minecraft/client/gui/components/Button;)V com/mojang/realmsclient/gui/screens/RealmsResetWorldScreen/lambda$init$3 (Lnet/minecraft/client/gui/components/Button;)V +MD: com/mojang/realmsclient/gui/screens/RealmsResetWorldScreen/m_279723_ (Ljava/lang/Runnable;)V com/mojang/realmsclient/gui/screens/RealmsResetWorldScreen/lambda$switchSlot$7 (Ljava/lang/Runnable;)V +MD: com/mojang/realmsclient/gui/screens/RealmsResetWorldScreen/m_279724_ (Lnet/minecraft/client/gui/components/Button;)V com/mojang/realmsclient/gui/screens/RealmsResetWorldScreen/lambda$init$2 (Lnet/minecraft/client/gui/components/Button;)V +MD: com/mojang/realmsclient/gui/screens/RealmsResetWorldScreen/m_279725_ (Lnet/minecraft/client/gui/components/Button;)V com/mojang/realmsclient/gui/screens/RealmsResetWorldScreen/lambda$init$5 (Lnet/minecraft/client/gui/components/Button;)V +MD: com/mojang/realmsclient/gui/screens/RealmsResetWorldScreen/m_279726_ (Lnet/minecraft/client/gui/components/Button;)V com/mojang/realmsclient/gui/screens/RealmsResetWorldScreen/lambda$init$1 (Lnet/minecraft/client/gui/components/Button;)V +MD: com/mojang/realmsclient/gui/screens/RealmsResetWorldScreen/m_280014_ (Lnet/minecraft/client/gui/GuiGraphics;IILnet/minecraft/network/chat/Component;Lnet/minecraft/resources/ResourceLocation;ZZ)V com/mojang/realmsclient/gui/screens/RealmsResetWorldScreen/drawFrame (Lnet/minecraft/client/gui/GuiGraphics;IILnet/minecraft/network/chat/Component;Lnet/minecraft/resources/ResourceLocation;ZZ)V +MD: com/mojang/realmsclient/gui/screens/RealmsResetWorldScreen/m_7856_ ()V com/mojang/realmsclient/gui/screens/RealmsResetWorldScreen/init ()V +MD: com/mojang/realmsclient/gui/screens/RealmsResetWorldScreen/m_7933_ (III)Z com/mojang/realmsclient/gui/screens/RealmsResetWorldScreen/keyPressed (III)Z +MD: com/mojang/realmsclient/gui/screens/RealmsResetWorldScreen/m_88315_ (Lnet/minecraft/client/gui/GuiGraphics;IIF)V com/mojang/realmsclient/gui/screens/RealmsResetWorldScreen/render (Lnet/minecraft/client/gui/GuiGraphics;IIF)V +MD: com/mojang/realmsclient/gui/screens/RealmsResetWorldScreen/m_89343_ (I)V com/mojang/realmsclient/gui/screens/RealmsResetWorldScreen/setSlot (I)V +MD: com/mojang/realmsclient/gui/screens/RealmsResetWorldScreen/m_89366_ (Lcom/mojang/realmsclient/gui/screens/RealmsResetWorldScreen;)Lnet/minecraft/client/Minecraft; com/mojang/realmsclient/gui/screens/RealmsResetWorldScreen/access$000 (Lcom/mojang/realmsclient/gui/screens/RealmsResetWorldScreen;)Lnet/minecraft/client/Minecraft; +MD: com/mojang/realmsclient/gui/screens/RealmsResetWorldScreen/m_89382_ (Ljava/lang/Runnable;)V com/mojang/realmsclient/gui/screens/RealmsResetWorldScreen/switchSlot (Ljava/lang/Runnable;)V +MD: com/mojang/realmsclient/gui/screens/RealmsResetWorldScreen/m_89389_ (Lnet/minecraft/network/chat/Component;)V com/mojang/realmsclient/gui/screens/RealmsResetWorldScreen/setResetTitle (Lnet/minecraft/network/chat/Component;)V +MD: com/mojang/realmsclient/gui/screens/RealmsResetWorldScreen/m_89392_ (I)I com/mojang/realmsclient/gui/screens/RealmsResetWorldScreen/frame (I)I +MD: com/mojang/realmsclient/gui/screens/RealmsResetWorldScreen$1/ (Lcom/mojang/realmsclient/gui/screens/RealmsResetWorldScreen;Ljava/lang/String;)V com/mojang/realmsclient/gui/screens/RealmsResetWorldScreen$1/ (Lcom/mojang/realmsclient/gui/screens/RealmsResetWorldScreen;Ljava/lang/String;)V +MD: com/mojang/realmsclient/gui/screens/RealmsResetWorldScreen$1/m_89426_ (Lcom/mojang/realmsclient/dto/WorldTemplatePaginatedList;Lcom/mojang/realmsclient/dto/WorldTemplatePaginatedList;Lcom/mojang/realmsclient/dto/WorldTemplatePaginatedList;Lcom/mojang/realmsclient/dto/WorldTemplatePaginatedList;)V com/mojang/realmsclient/gui/screens/RealmsResetWorldScreen$1/lambda$run$0 (Lcom/mojang/realmsclient/dto/WorldTemplatePaginatedList;Lcom/mojang/realmsclient/dto/WorldTemplatePaginatedList;Lcom/mojang/realmsclient/dto/WorldTemplatePaginatedList;Lcom/mojang/realmsclient/dto/WorldTemplatePaginatedList;)V +MD: com/mojang/realmsclient/gui/screens/RealmsResetWorldScreen$1/run ()V com/mojang/realmsclient/gui/screens/RealmsResetWorldScreen$1/run ()V +MD: com/mojang/realmsclient/gui/screens/RealmsResetWorldScreen$FrameButton/ (Lcom/mojang/realmsclient/gui/screens/RealmsResetWorldScreen;IILnet/minecraft/network/chat/Component;Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/client/gui/components/Button$OnPress;)V com/mojang/realmsclient/gui/screens/RealmsResetWorldScreen$FrameButton/ (Lcom/mojang/realmsclient/gui/screens/RealmsResetWorldScreen;IILnet/minecraft/network/chat/Component;Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/client/gui/components/Button$OnPress;)V +MD: com/mojang/realmsclient/gui/screens/RealmsResetWorldScreen$FrameButton/m_87963_ (Lnet/minecraft/client/gui/GuiGraphics;IIF)V com/mojang/realmsclient/gui/screens/RealmsResetWorldScreen$FrameButton/renderWidget (Lnet/minecraft/client/gui/GuiGraphics;IIF)V +MD: com/mojang/realmsclient/gui/screens/RealmsSelectFileToUploadScreen/ ()V com/mojang/realmsclient/gui/screens/RealmsSelectFileToUploadScreen/ ()V +MD: com/mojang/realmsclient/gui/screens/RealmsSelectFileToUploadScreen/ (JILcom/mojang/realmsclient/gui/screens/RealmsResetWorldScreen;Ljava/lang/Runnable;)V com/mojang/realmsclient/gui/screens/RealmsSelectFileToUploadScreen/ (JILcom/mojang/realmsclient/gui/screens/RealmsResetWorldScreen;Ljava/lang/Runnable;)V +MD: com/mojang/realmsclient/gui/screens/RealmsSelectFileToUploadScreen/m_142562_ ()Lnet/minecraft/network/chat/Component; com/mojang/realmsclient/gui/screens/RealmsSelectFileToUploadScreen/getNarrationMessage ()Lnet/minecraft/network/chat/Component; +MD: com/mojang/realmsclient/gui/screens/RealmsSelectFileToUploadScreen/m_167466_ (Lcom/mojang/realmsclient/gui/screens/RealmsSelectFileToUploadScreen;)Lnet/minecraft/client/gui/Font; com/mojang/realmsclient/gui/screens/RealmsSelectFileToUploadScreen/access$100 (Lcom/mojang/realmsclient/gui/screens/RealmsSelectFileToUploadScreen;)Lnet/minecraft/client/gui/Font; +MD: com/mojang/realmsclient/gui/screens/RealmsSelectFileToUploadScreen/m_167469_ (Lcom/mojang/realmsclient/gui/screens/RealmsSelectFileToUploadScreen;)Lnet/minecraft/client/gui/Font; com/mojang/realmsclient/gui/screens/RealmsSelectFileToUploadScreen/access$200 (Lcom/mojang/realmsclient/gui/screens/RealmsSelectFileToUploadScreen;)Lnet/minecraft/client/gui/Font; +MD: com/mojang/realmsclient/gui/screens/RealmsSelectFileToUploadScreen/m_167471_ (Lcom/mojang/realmsclient/gui/screens/RealmsSelectFileToUploadScreen;)Lnet/minecraft/client/gui/Font; com/mojang/realmsclient/gui/screens/RealmsSelectFileToUploadScreen/access$300 (Lcom/mojang/realmsclient/gui/screens/RealmsSelectFileToUploadScreen;)Lnet/minecraft/client/gui/Font; +MD: com/mojang/realmsclient/gui/screens/RealmsSelectFileToUploadScreen/m_193516_ (Lnet/minecraft/world/level/storage/LevelSummary;)Z com/mojang/realmsclient/gui/screens/RealmsSelectFileToUploadScreen/lambda$loadLevelList$1 (Lnet/minecraft/world/level/storage/LevelSummary;)Z +MD: com/mojang/realmsclient/gui/screens/RealmsSelectFileToUploadScreen/m_231306_ (Lnet/minecraft/client/gui/components/Button;)V com/mojang/realmsclient/gui/screens/RealmsSelectFileToUploadScreen/lambda$init$2 (Lnet/minecraft/client/gui/components/Button;)V +MD: com/mojang/realmsclient/gui/screens/RealmsSelectFileToUploadScreen/m_263854_ (Lnet/minecraft/network/chat/Style;)Lnet/minecraft/network/chat/Style; com/mojang/realmsclient/gui/screens/RealmsSelectFileToUploadScreen/lambda$static$0 (Lnet/minecraft/network/chat/Style;)Lnet/minecraft/network/chat/Style; +MD: com/mojang/realmsclient/gui/screens/RealmsSelectFileToUploadScreen/m_279727_ (Lnet/minecraft/client/gui/components/Button;)V com/mojang/realmsclient/gui/screens/RealmsSelectFileToUploadScreen/lambda$init$3 (Lnet/minecraft/client/gui/components/Button;)V +MD: com/mojang/realmsclient/gui/screens/RealmsSelectFileToUploadScreen/m_7856_ ()V com/mojang/realmsclient/gui/screens/RealmsSelectFileToUploadScreen/init ()V +MD: com/mojang/realmsclient/gui/screens/RealmsSelectFileToUploadScreen/m_7933_ (III)Z com/mojang/realmsclient/gui/screens/RealmsSelectFileToUploadScreen/keyPressed (III)Z +MD: com/mojang/realmsclient/gui/screens/RealmsSelectFileToUploadScreen/m_88315_ (Lnet/minecraft/client/gui/GuiGraphics;IIF)V com/mojang/realmsclient/gui/screens/RealmsSelectFileToUploadScreen/render (Lnet/minecraft/client/gui/GuiGraphics;IIF)V +MD: com/mojang/realmsclient/gui/screens/RealmsSelectFileToUploadScreen/m_89503_ (I)I com/mojang/realmsclient/gui/screens/RealmsSelectFileToUploadScreen/access$000 (I)I +MD: com/mojang/realmsclient/gui/screens/RealmsSelectFileToUploadScreen/m_89534_ (Lnet/minecraft/world/level/storage/LevelSummary;)Lnet/minecraft/network/chat/Component; com/mojang/realmsclient/gui/screens/RealmsSelectFileToUploadScreen/gameModeName (Lnet/minecraft/world/level/storage/LevelSummary;)Lnet/minecraft/network/chat/Component; +MD: com/mojang/realmsclient/gui/screens/RealmsSelectFileToUploadScreen/m_89538_ (Lnet/minecraft/world/level/storage/LevelSummary;)Ljava/lang/String; com/mojang/realmsclient/gui/screens/RealmsSelectFileToUploadScreen/formatLastPlayed (Lnet/minecraft/world/level/storage/LevelSummary;)Ljava/lang/String; +MD: com/mojang/realmsclient/gui/screens/RealmsSelectFileToUploadScreen/m_89551_ ()V com/mojang/realmsclient/gui/screens/RealmsSelectFileToUploadScreen/loadLevelList ()V +MD: com/mojang/realmsclient/gui/screens/RealmsSelectFileToUploadScreen/m_89552_ ()V com/mojang/realmsclient/gui/screens/RealmsSelectFileToUploadScreen/upload ()V +MD: com/mojang/realmsclient/gui/screens/RealmsSelectFileToUploadScreen$Entry/ (Lcom/mojang/realmsclient/gui/screens/RealmsSelectFileToUploadScreen;Lnet/minecraft/world/level/storage/LevelSummary;)V com/mojang/realmsclient/gui/screens/RealmsSelectFileToUploadScreen$Entry/ (Lcom/mojang/realmsclient/gui/screens/RealmsSelectFileToUploadScreen;Lnet/minecraft/world/level/storage/LevelSummary;)V +MD: com/mojang/realmsclient/gui/screens/RealmsSelectFileToUploadScreen$Entry/m_142172_ ()Lnet/minecraft/network/chat/Component; com/mojang/realmsclient/gui/screens/RealmsSelectFileToUploadScreen$Entry/getNarration ()Lnet/minecraft/network/chat/Component; +MD: com/mojang/realmsclient/gui/screens/RealmsSelectFileToUploadScreen$Entry/m_280233_ (Lnet/minecraft/client/gui/GuiGraphics;III)V com/mojang/realmsclient/gui/screens/RealmsSelectFileToUploadScreen$Entry/renderItem (Lnet/minecraft/client/gui/GuiGraphics;III)V +MD: com/mojang/realmsclient/gui/screens/RealmsSelectFileToUploadScreen$Entry/m_6311_ (Lnet/minecraft/client/gui/GuiGraphics;IIIIIIIZF)V com/mojang/realmsclient/gui/screens/RealmsSelectFileToUploadScreen$Entry/render (Lnet/minecraft/client/gui/GuiGraphics;IIIIIIIZF)V +MD: com/mojang/realmsclient/gui/screens/RealmsSelectFileToUploadScreen$Entry/m_6375_ (DDI)Z com/mojang/realmsclient/gui/screens/RealmsSelectFileToUploadScreen$Entry/mouseClicked (DDI)Z +MD: com/mojang/realmsclient/gui/screens/RealmsSelectFileToUploadScreen$WorldSelectionList/ (Lcom/mojang/realmsclient/gui/screens/RealmsSelectFileToUploadScreen;)V com/mojang/realmsclient/gui/screens/RealmsSelectFileToUploadScreen$WorldSelectionList/ (Lcom/mojang/realmsclient/gui/screens/RealmsSelectFileToUploadScreen;)V +MD: com/mojang/realmsclient/gui/screens/RealmsSelectFileToUploadScreen$WorldSelectionList/m_5775_ ()I com/mojang/realmsclient/gui/screens/RealmsSelectFileToUploadScreen$WorldSelectionList/getMaxPosition ()I +MD: com/mojang/realmsclient/gui/screens/RealmsSelectFileToUploadScreen$WorldSelectionList/m_6987_ (Lcom/mojang/realmsclient/gui/screens/RealmsSelectFileToUploadScreen$Entry;)V com/mojang/realmsclient/gui/screens/RealmsSelectFileToUploadScreen$WorldSelectionList/setSelected (Lcom/mojang/realmsclient/gui/screens/RealmsSelectFileToUploadScreen$Entry;)V +MD: com/mojang/realmsclient/gui/screens/RealmsSelectFileToUploadScreen$WorldSelectionList/m_6987_ (Lnet/minecraft/client/gui/components/AbstractSelectionList$Entry;)V com/mojang/realmsclient/gui/screens/RealmsSelectFileToUploadScreen$WorldSelectionList/setSelected (Lnet/minecraft/client/gui/components/AbstractSelectionList$Entry;)V +MD: com/mojang/realmsclient/gui/screens/RealmsSelectFileToUploadScreen$WorldSelectionList/m_7733_ (Lnet/minecraft/client/gui/GuiGraphics;)V com/mojang/realmsclient/gui/screens/RealmsSelectFileToUploadScreen$WorldSelectionList/renderBackground (Lnet/minecraft/client/gui/GuiGraphics;)V +MD: com/mojang/realmsclient/gui/screens/RealmsSelectFileToUploadScreen$WorldSelectionList/m_89587_ (Lnet/minecraft/world/level/storage/LevelSummary;)V com/mojang/realmsclient/gui/screens/RealmsSelectFileToUploadScreen$WorldSelectionList/addEntry (Lnet/minecraft/world/level/storage/LevelSummary;)V +MD: com/mojang/realmsclient/gui/screens/RealmsSelectWorldTemplateScreen/ ()V com/mojang/realmsclient/gui/screens/RealmsSelectWorldTemplateScreen/ ()V +MD: com/mojang/realmsclient/gui/screens/RealmsSelectWorldTemplateScreen/ (Lnet/minecraft/network/chat/Component;Ljava/util/function/Consumer;Lcom/mojang/realmsclient/dto/RealmsServer$WorldType;Lcom/mojang/realmsclient/dto/WorldTemplatePaginatedList;)V com/mojang/realmsclient/gui/screens/RealmsSelectWorldTemplateScreen/ (Lnet/minecraft/network/chat/Component;Ljava/util/function/Consumer;Lcom/mojang/realmsclient/dto/RealmsServer$WorldType;Lcom/mojang/realmsclient/dto/WorldTemplatePaginatedList;)V +MD: com/mojang/realmsclient/gui/screens/RealmsSelectWorldTemplateScreen/ (Lnet/minecraft/network/chat/Component;Ljava/util/function/Consumer;Lcom/mojang/realmsclient/dto/RealmsServer$WorldType;)V com/mojang/realmsclient/gui/screens/RealmsSelectWorldTemplateScreen/ (Lnet/minecraft/network/chat/Component;Ljava/util/function/Consumer;Lcom/mojang/realmsclient/dto/RealmsServer$WorldType;)V +MD: com/mojang/realmsclient/gui/screens/RealmsSelectWorldTemplateScreen/m_142562_ ()Lnet/minecraft/network/chat/Component; com/mojang/realmsclient/gui/screens/RealmsSelectWorldTemplateScreen/getNarrationMessage ()Lnet/minecraft/network/chat/Component; +MD: com/mojang/realmsclient/gui/screens/RealmsSelectWorldTemplateScreen/m_167489_ (I)I com/mojang/realmsclient/gui/screens/RealmsSelectWorldTemplateScreen/access$100 (I)I +MD: com/mojang/realmsclient/gui/screens/RealmsSelectWorldTemplateScreen/m_167491_ (Lcom/mojang/realmsclient/gui/screens/RealmsSelectWorldTemplateScreen;)Lnet/minecraft/client/Minecraft; com/mojang/realmsclient/gui/screens/RealmsSelectWorldTemplateScreen/access$000 (Lcom/mojang/realmsclient/gui/screens/RealmsSelectWorldTemplateScreen;)Lnet/minecraft/client/Minecraft; +MD: com/mojang/realmsclient/gui/screens/RealmsSelectWorldTemplateScreen/m_167495_ (Lcom/mojang/realmsclient/gui/screens/RealmsSelectWorldTemplateScreen;)Lnet/minecraft/client/gui/Font; com/mojang/realmsclient/gui/screens/RealmsSelectWorldTemplateScreen/access$200 (Lcom/mojang/realmsclient/gui/screens/RealmsSelectWorldTemplateScreen;)Lnet/minecraft/client/gui/Font; +MD: com/mojang/realmsclient/gui/screens/RealmsSelectWorldTemplateScreen/m_167497_ (Lcom/mojang/realmsclient/gui/screens/RealmsSelectWorldTemplateScreen;)Lnet/minecraft/client/gui/Font; com/mojang/realmsclient/gui/screens/RealmsSelectWorldTemplateScreen/access$300 (Lcom/mojang/realmsclient/gui/screens/RealmsSelectWorldTemplateScreen;)Lnet/minecraft/client/gui/Font; +MD: com/mojang/realmsclient/gui/screens/RealmsSelectWorldTemplateScreen/m_167499_ (Lcom/mojang/realmsclient/gui/screens/RealmsSelectWorldTemplateScreen;)Lnet/minecraft/client/gui/Font; com/mojang/realmsclient/gui/screens/RealmsSelectWorldTemplateScreen/access$400 (Lcom/mojang/realmsclient/gui/screens/RealmsSelectWorldTemplateScreen;)Lnet/minecraft/client/gui/Font; +MD: com/mojang/realmsclient/gui/screens/RealmsSelectWorldTemplateScreen/m_167501_ (Lcom/mojang/realmsclient/gui/screens/RealmsSelectWorldTemplateScreen;)Lnet/minecraft/client/gui/Font; com/mojang/realmsclient/gui/screens/RealmsSelectWorldTemplateScreen/access$500 (Lcom/mojang/realmsclient/gui/screens/RealmsSelectWorldTemplateScreen;)Lnet/minecraft/client/gui/Font; +MD: com/mojang/realmsclient/gui/screens/RealmsSelectWorldTemplateScreen/m_167503_ (Lcom/mojang/realmsclient/gui/screens/RealmsSelectWorldTemplateScreen;)Lnet/minecraft/client/gui/Font; com/mojang/realmsclient/gui/screens/RealmsSelectWorldTemplateScreen/access$600 (Lcom/mojang/realmsclient/gui/screens/RealmsSelectWorldTemplateScreen;)Lnet/minecraft/client/gui/Font; +MD: com/mojang/realmsclient/gui/screens/RealmsSelectWorldTemplateScreen/m_167505_ (Lcom/mojang/realmsclient/gui/screens/RealmsSelectWorldTemplateScreen;)Lnet/minecraft/client/gui/Font; com/mojang/realmsclient/gui/screens/RealmsSelectWorldTemplateScreen/access$700 (Lcom/mojang/realmsclient/gui/screens/RealmsSelectWorldTemplateScreen;)Lnet/minecraft/client/gui/Font; +MD: com/mojang/realmsclient/gui/screens/RealmsSelectWorldTemplateScreen/m_279728_ (Lcom/mojang/realmsclient/util/TextRenderingUtils$LineSegment;)I com/mojang/realmsclient/gui/screens/RealmsSelectWorldTemplateScreen/lambda$renderMultilineMessage$4 (Lcom/mojang/realmsclient/util/TextRenderingUtils$LineSegment;)I +MD: com/mojang/realmsclient/gui/screens/RealmsSelectWorldTemplateScreen/m_280015_ (Lnet/minecraft/client/gui/GuiGraphics;Lnet/minecraft/network/chat/Component;II)V com/mojang/realmsclient/gui/screens/RealmsSelectWorldTemplateScreen/renderMousehoverTooltip (Lnet/minecraft/client/gui/GuiGraphics;Lnet/minecraft/network/chat/Component;II)V +MD: com/mojang/realmsclient/gui/screens/RealmsSelectWorldTemplateScreen/m_280418_ (Lnet/minecraft/client/gui/GuiGraphics;IILjava/util/List;)V com/mojang/realmsclient/gui/screens/RealmsSelectWorldTemplateScreen/renderMultilineMessage (Lnet/minecraft/client/gui/GuiGraphics;IILjava/util/List;)V +MD: com/mojang/realmsclient/gui/screens/RealmsSelectWorldTemplateScreen/m_6375_ (DDI)Z com/mojang/realmsclient/gui/screens/RealmsSelectWorldTemplateScreen/mouseClicked (DDI)Z +MD: com/mojang/realmsclient/gui/screens/RealmsSelectWorldTemplateScreen/m_7379_ ()V com/mojang/realmsclient/gui/screens/RealmsSelectWorldTemplateScreen/onClose ()V +MD: com/mojang/realmsclient/gui/screens/RealmsSelectWorldTemplateScreen/m_7856_ ()V com/mojang/realmsclient/gui/screens/RealmsSelectWorldTemplateScreen/init ()V +MD: com/mojang/realmsclient/gui/screens/RealmsSelectWorldTemplateScreen/m_86600_ ()V com/mojang/realmsclient/gui/screens/RealmsSelectWorldTemplateScreen/tick ()V +MD: com/mojang/realmsclient/gui/screens/RealmsSelectWorldTemplateScreen/m_88315_ (Lnet/minecraft/client/gui/GuiGraphics;IIF)V com/mojang/realmsclient/gui/screens/RealmsSelectWorldTemplateScreen/render (Lnet/minecraft/client/gui/GuiGraphics;IIF)V +MD: com/mojang/realmsclient/gui/screens/RealmsSelectWorldTemplateScreen/m_89653_ (Lcom/mojang/realmsclient/dto/WorldTemplatePaginatedList;)V com/mojang/realmsclient/gui/screens/RealmsSelectWorldTemplateScreen/fetchTemplatesAsync (Lcom/mojang/realmsclient/dto/WorldTemplatePaginatedList;)V +MD: com/mojang/realmsclient/gui/screens/RealmsSelectWorldTemplateScreen/m_89655_ (Lcom/mojang/realmsclient/dto/WorldTemplatePaginatedList;Lcom/mojang/realmsclient/client/RealmsClient;)Lcom/mojang/datafixers/util/Either; com/mojang/realmsclient/gui/screens/RealmsSelectWorldTemplateScreen/fetchTemplates (Lcom/mojang/realmsclient/dto/WorldTemplatePaginatedList;Lcom/mojang/realmsclient/client/RealmsClient;)Lcom/mojang/datafixers/util/Either; +MD: com/mojang/realmsclient/gui/screens/RealmsSelectWorldTemplateScreen/m_89678_ (Lnet/minecraft/client/gui/components/Button;)V com/mojang/realmsclient/gui/screens/RealmsSelectWorldTemplateScreen/lambda$init$3 (Lnet/minecraft/client/gui/components/Button;)V +MD: com/mojang/realmsclient/gui/screens/RealmsSelectWorldTemplateScreen/m_89682_ ([Lnet/minecraft/network/chat/Component;)V com/mojang/realmsclient/gui/screens/RealmsSelectWorldTemplateScreen/setWarning ([Lnet/minecraft/network/chat/Component;)V +MD: com/mojang/realmsclient/gui/screens/RealmsSelectWorldTemplateScreen/m_89690_ (Lnet/minecraft/client/gui/components/Button;)V com/mojang/realmsclient/gui/screens/RealmsSelectWorldTemplateScreen/lambda$init$2 (Lnet/minecraft/client/gui/components/Button;)V +MD: com/mojang/realmsclient/gui/screens/RealmsSelectWorldTemplateScreen/m_89695_ (Lnet/minecraft/client/gui/components/Button;)V com/mojang/realmsclient/gui/screens/RealmsSelectWorldTemplateScreen/lambda$init$1 (Lnet/minecraft/client/gui/components/Button;)V +MD: com/mojang/realmsclient/gui/screens/RealmsSelectWorldTemplateScreen/m_89700_ (Lnet/minecraft/client/gui/components/Button;)V com/mojang/realmsclient/gui/screens/RealmsSelectWorldTemplateScreen/lambda$init$0 (Lnet/minecraft/client/gui/components/Button;)V +MD: com/mojang/realmsclient/gui/screens/RealmsSelectWorldTemplateScreen/m_89718_ ()V com/mojang/realmsclient/gui/screens/RealmsSelectWorldTemplateScreen/updateButtonStates ()V +MD: com/mojang/realmsclient/gui/screens/RealmsSelectWorldTemplateScreen/m_89721_ ()Z com/mojang/realmsclient/gui/screens/RealmsSelectWorldTemplateScreen/shouldSelectButtonBeActive ()Z +MD: com/mojang/realmsclient/gui/screens/RealmsSelectWorldTemplateScreen/m_89724_ ()Z com/mojang/realmsclient/gui/screens/RealmsSelectWorldTemplateScreen/shouldPublisherBeVisible ()Z +MD: com/mojang/realmsclient/gui/screens/RealmsSelectWorldTemplateScreen/m_89727_ ()Lcom/mojang/realmsclient/dto/WorldTemplate; com/mojang/realmsclient/gui/screens/RealmsSelectWorldTemplateScreen/getSelectedTemplate ()Lcom/mojang/realmsclient/dto/WorldTemplate; +MD: com/mojang/realmsclient/gui/screens/RealmsSelectWorldTemplateScreen/m_89730_ ()Z com/mojang/realmsclient/gui/screens/RealmsSelectWorldTemplateScreen/shouldTrailerBeVisible ()Z +MD: com/mojang/realmsclient/gui/screens/RealmsSelectWorldTemplateScreen/m_89736_ ()V com/mojang/realmsclient/gui/screens/RealmsSelectWorldTemplateScreen/selectTemplate ()V +MD: com/mojang/realmsclient/gui/screens/RealmsSelectWorldTemplateScreen/m_89737_ ()Z com/mojang/realmsclient/gui/screens/RealmsSelectWorldTemplateScreen/hasValidTemplate ()Z +MD: com/mojang/realmsclient/gui/screens/RealmsSelectWorldTemplateScreen/m_89738_ ()V com/mojang/realmsclient/gui/screens/RealmsSelectWorldTemplateScreen/onTrailer ()V +MD: com/mojang/realmsclient/gui/screens/RealmsSelectWorldTemplateScreen/m_89739_ ()V com/mojang/realmsclient/gui/screens/RealmsSelectWorldTemplateScreen/onPublish ()V +MD: com/mojang/realmsclient/gui/screens/RealmsSelectWorldTemplateScreen$1/ (Lcom/mojang/realmsclient/gui/screens/RealmsSelectWorldTemplateScreen;Ljava/lang/String;Lcom/mojang/realmsclient/dto/WorldTemplatePaginatedList;)V com/mojang/realmsclient/gui/screens/RealmsSelectWorldTemplateScreen$1/ (Lcom/mojang/realmsclient/gui/screens/RealmsSelectWorldTemplateScreen;Ljava/lang/String;Lcom/mojang/realmsclient/dto/WorldTemplatePaginatedList;)V +MD: com/mojang/realmsclient/gui/screens/RealmsSelectWorldTemplateScreen$1/m_89746_ (Lcom/mojang/datafixers/util/Either;)Lcom/mojang/realmsclient/dto/WorldTemplatePaginatedList; com/mojang/realmsclient/gui/screens/RealmsSelectWorldTemplateScreen$1/lambda$run$0 (Lcom/mojang/datafixers/util/Either;)Lcom/mojang/realmsclient/dto/WorldTemplatePaginatedList; +MD: com/mojang/realmsclient/gui/screens/RealmsSelectWorldTemplateScreen$1/run ()V com/mojang/realmsclient/gui/screens/RealmsSelectWorldTemplateScreen$1/run ()V +MD: com/mojang/realmsclient/gui/screens/RealmsSelectWorldTemplateScreen$Entry/ (Lcom/mojang/realmsclient/gui/screens/RealmsSelectWorldTemplateScreen;Lcom/mojang/realmsclient/dto/WorldTemplate;)V com/mojang/realmsclient/gui/screens/RealmsSelectWorldTemplateScreen$Entry/ (Lcom/mojang/realmsclient/gui/screens/RealmsSelectWorldTemplateScreen;Lcom/mojang/realmsclient/dto/WorldTemplate;)V +MD: com/mojang/realmsclient/gui/screens/RealmsSelectWorldTemplateScreen$Entry/m_142172_ ()Lnet/minecraft/network/chat/Component; com/mojang/realmsclient/gui/screens/RealmsSelectWorldTemplateScreen$Entry/getNarration ()Lnet/minecraft/network/chat/Component; +MD: com/mojang/realmsclient/gui/screens/RealmsSelectWorldTemplateScreen$Entry/m_280395_ (Lnet/minecraft/client/gui/GuiGraphics;IIIILjava/lang/String;Ljava/lang/String;Ljava/lang/String;)V com/mojang/realmsclient/gui/screens/RealmsSelectWorldTemplateScreen$Entry/drawIcons (Lnet/minecraft/client/gui/GuiGraphics;IIIILjava/lang/String;Ljava/lang/String;Ljava/lang/String;)V +MD: com/mojang/realmsclient/gui/screens/RealmsSelectWorldTemplateScreen$Entry/m_280486_ (Lnet/minecraft/client/gui/GuiGraphics;Lcom/mojang/realmsclient/dto/WorldTemplate;IIII)V com/mojang/realmsclient/gui/screens/RealmsSelectWorldTemplateScreen$Entry/renderWorldTemplateItem (Lnet/minecraft/client/gui/GuiGraphics;Lcom/mojang/realmsclient/dto/WorldTemplate;IIII)V +MD: com/mojang/realmsclient/gui/screens/RealmsSelectWorldTemplateScreen$Entry/m_280563_ (Lnet/minecraft/client/gui/GuiGraphics;IIIILcom/mojang/realmsclient/dto/WorldTemplate;)V com/mojang/realmsclient/gui/screens/RealmsSelectWorldTemplateScreen$Entry/drawImage (Lnet/minecraft/client/gui/GuiGraphics;IIIILcom/mojang/realmsclient/dto/WorldTemplate;)V +MD: com/mojang/realmsclient/gui/screens/RealmsSelectWorldTemplateScreen$Entry/m_6311_ (Lnet/minecraft/client/gui/GuiGraphics;IIIIIIIZF)V com/mojang/realmsclient/gui/screens/RealmsSelectWorldTemplateScreen$Entry/render (Lnet/minecraft/client/gui/GuiGraphics;IIIIIIIZF)V +MD: com/mojang/realmsclient/gui/screens/RealmsSelectWorldTemplateScreen$WorldTemplateObjectSelectionList/ (Lcom/mojang/realmsclient/gui/screens/RealmsSelectWorldTemplateScreen;)V com/mojang/realmsclient/gui/screens/RealmsSelectWorldTemplateScreen$WorldTemplateObjectSelectionList/ (Lcom/mojang/realmsclient/gui/screens/RealmsSelectWorldTemplateScreen;)V +MD: com/mojang/realmsclient/gui/screens/RealmsSelectWorldTemplateScreen$WorldTemplateObjectSelectionList/ (Lcom/mojang/realmsclient/gui/screens/RealmsSelectWorldTemplateScreen;Ljava/lang/Iterable;)V com/mojang/realmsclient/gui/screens/RealmsSelectWorldTemplateScreen$WorldTemplateObjectSelectionList/ (Lcom/mojang/realmsclient/gui/screens/RealmsSelectWorldTemplateScreen;Ljava/lang/Iterable;)V +MD: com/mojang/realmsclient/gui/screens/RealmsSelectWorldTemplateScreen$WorldTemplateObjectSelectionList/m_5759_ ()I com/mojang/realmsclient/gui/screens/RealmsSelectWorldTemplateScreen$WorldTemplateObjectSelectionList/getRowWidth ()I +MD: com/mojang/realmsclient/gui/screens/RealmsSelectWorldTemplateScreen$WorldTemplateObjectSelectionList/m_5775_ ()I com/mojang/realmsclient/gui/screens/RealmsSelectWorldTemplateScreen$WorldTemplateObjectSelectionList/getMaxPosition ()I +MD: com/mojang/realmsclient/gui/screens/RealmsSelectWorldTemplateScreen$WorldTemplateObjectSelectionList/m_6375_ (DDI)Z com/mojang/realmsclient/gui/screens/RealmsSelectWorldTemplateScreen$WorldTemplateObjectSelectionList/mouseClicked (DDI)Z +MD: com/mojang/realmsclient/gui/screens/RealmsSelectWorldTemplateScreen$WorldTemplateObjectSelectionList/m_6987_ (Lcom/mojang/realmsclient/gui/screens/RealmsSelectWorldTemplateScreen$Entry;)V com/mojang/realmsclient/gui/screens/RealmsSelectWorldTemplateScreen$WorldTemplateObjectSelectionList/setSelected (Lcom/mojang/realmsclient/gui/screens/RealmsSelectWorldTemplateScreen$Entry;)V +MD: com/mojang/realmsclient/gui/screens/RealmsSelectWorldTemplateScreen$WorldTemplateObjectSelectionList/m_6987_ (Lnet/minecraft/client/gui/components/AbstractSelectionList$Entry;)V com/mojang/realmsclient/gui/screens/RealmsSelectWorldTemplateScreen$WorldTemplateObjectSelectionList/setSelected (Lnet/minecraft/client/gui/components/AbstractSelectionList$Entry;)V +MD: com/mojang/realmsclient/gui/screens/RealmsSelectWorldTemplateScreen$WorldTemplateObjectSelectionList/m_7733_ (Lnet/minecraft/client/gui/GuiGraphics;)V com/mojang/realmsclient/gui/screens/RealmsSelectWorldTemplateScreen$WorldTemplateObjectSelectionList/renderBackground (Lnet/minecraft/client/gui/GuiGraphics;)V +MD: com/mojang/realmsclient/gui/screens/RealmsSelectWorldTemplateScreen$WorldTemplateObjectSelectionList/m_89804_ (Lcom/mojang/realmsclient/dto/WorldTemplate;)V com/mojang/realmsclient/gui/screens/RealmsSelectWorldTemplateScreen$WorldTemplateObjectSelectionList/addEntry (Lcom/mojang/realmsclient/dto/WorldTemplate;)V +MD: com/mojang/realmsclient/gui/screens/RealmsSelectWorldTemplateScreen$WorldTemplateObjectSelectionList/m_89811_ (I)Lcom/mojang/realmsclient/dto/WorldTemplate; com/mojang/realmsclient/gui/screens/RealmsSelectWorldTemplateScreen$WorldTemplateObjectSelectionList/get (I)Lcom/mojang/realmsclient/dto/WorldTemplate; +MD: com/mojang/realmsclient/gui/screens/RealmsSelectWorldTemplateScreen$WorldTemplateObjectSelectionList/m_89813_ (Lcom/mojang/realmsclient/gui/screens/RealmsSelectWorldTemplateScreen$Entry;)Lcom/mojang/realmsclient/dto/WorldTemplate; com/mojang/realmsclient/gui/screens/RealmsSelectWorldTemplateScreen$WorldTemplateObjectSelectionList/lambda$getTemplates$0 (Lcom/mojang/realmsclient/gui/screens/RealmsSelectWorldTemplateScreen$Entry;)Lcom/mojang/realmsclient/dto/WorldTemplate; +MD: com/mojang/realmsclient/gui/screens/RealmsSelectWorldTemplateScreen$WorldTemplateObjectSelectionList/m_89817_ ()Z com/mojang/realmsclient/gui/screens/RealmsSelectWorldTemplateScreen$WorldTemplateObjectSelectionList/isEmpty ()Z +MD: com/mojang/realmsclient/gui/screens/RealmsSelectWorldTemplateScreen$WorldTemplateObjectSelectionList/m_89818_ ()Ljava/util/List; com/mojang/realmsclient/gui/screens/RealmsSelectWorldTemplateScreen$WorldTemplateObjectSelectionList/getTemplates ()Ljava/util/List; +MD: com/mojang/realmsclient/gui/screens/RealmsSettingsScreen/ ()V com/mojang/realmsclient/gui/screens/RealmsSettingsScreen/ ()V +MD: com/mojang/realmsclient/gui/screens/RealmsSettingsScreen/ (Lcom/mojang/realmsclient/gui/screens/RealmsConfigureWorldScreen;Lcom/mojang/realmsclient/dto/RealmsServer;)V com/mojang/realmsclient/gui/screens/RealmsSettingsScreen/ (Lcom/mojang/realmsclient/gui/screens/RealmsConfigureWorldScreen;Lcom/mojang/realmsclient/dto/RealmsServer;)V +MD: com/mojang/realmsclient/gui/screens/RealmsSettingsScreen/m_279729_ (Lnet/minecraft/client/gui/components/Button;)V com/mojang/realmsclient/gui/screens/RealmsSettingsScreen/lambda$init$1 (Lnet/minecraft/client/gui/components/Button;)V +MD: com/mojang/realmsclient/gui/screens/RealmsSettingsScreen/m_279730_ (Z)V com/mojang/realmsclient/gui/screens/RealmsSettingsScreen/lambda$init$2 (Z)V +MD: com/mojang/realmsclient/gui/screens/RealmsSettingsScreen/m_287012_ (Lnet/minecraft/client/gui/components/Button;)V com/mojang/realmsclient/gui/screens/RealmsSettingsScreen/lambda$init$3 (Lnet/minecraft/client/gui/components/Button;)V +MD: com/mojang/realmsclient/gui/screens/RealmsSettingsScreen/m_7856_ ()V com/mojang/realmsclient/gui/screens/RealmsSettingsScreen/init ()V +MD: com/mojang/realmsclient/gui/screens/RealmsSettingsScreen/m_7933_ (III)Z com/mojang/realmsclient/gui/screens/RealmsSettingsScreen/keyPressed (III)Z +MD: com/mojang/realmsclient/gui/screens/RealmsSettingsScreen/m_86600_ ()V com/mojang/realmsclient/gui/screens/RealmsSettingsScreen/tick ()V +MD: com/mojang/realmsclient/gui/screens/RealmsSettingsScreen/m_88315_ (Lnet/minecraft/client/gui/GuiGraphics;IIF)V com/mojang/realmsclient/gui/screens/RealmsSettingsScreen/render (Lnet/minecraft/client/gui/GuiGraphics;IIF)V +MD: com/mojang/realmsclient/gui/screens/RealmsSettingsScreen/m_89831_ ()V com/mojang/realmsclient/gui/screens/RealmsSettingsScreen/save ()V +MD: com/mojang/realmsclient/gui/screens/RealmsSettingsScreen/m_89846_ (Lnet/minecraft/client/gui/components/Button;)V com/mojang/realmsclient/gui/screens/RealmsSettingsScreen/lambda$init$0 (Lnet/minecraft/client/gui/components/Button;)V +MD: com/mojang/realmsclient/gui/screens/RealmsSlotOptionsScreen/ ()V com/mojang/realmsclient/gui/screens/RealmsSlotOptionsScreen/ ()V +MD: com/mojang/realmsclient/gui/screens/RealmsSlotOptionsScreen/ (Lcom/mojang/realmsclient/gui/screens/RealmsConfigureWorldScreen;Lcom/mojang/realmsclient/dto/RealmsWorldOptions;Lcom/mojang/realmsclient/dto/RealmsServer$WorldType;I)V com/mojang/realmsclient/gui/screens/RealmsSlotOptionsScreen/ (Lcom/mojang/realmsclient/gui/screens/RealmsConfigureWorldScreen;Lcom/mojang/realmsclient/dto/RealmsWorldOptions;Lcom/mojang/realmsclient/dto/RealmsServer$WorldType;I)V +MD: com/mojang/realmsclient/gui/screens/RealmsSlotOptionsScreen/m_142562_ ()Lnet/minecraft/network/chat/Component; com/mojang/realmsclient/gui/screens/RealmsSlotOptionsScreen/getNarrationMessage ()Lnet/minecraft/network/chat/Component; +MD: com/mojang/realmsclient/gui/screens/RealmsSlotOptionsScreen/m_167514_ (Lnet/minecraft/client/gui/components/CycleButton;Lnet/minecraft/world/level/GameType;)V com/mojang/realmsclient/gui/screens/RealmsSlotOptionsScreen/lambda$init$1 (Lnet/minecraft/client/gui/components/CycleButton;Lnet/minecraft/world/level/GameType;)V +MD: com/mojang/realmsclient/gui/screens/RealmsSlotOptionsScreen/m_167517_ (Lnet/minecraft/client/gui/components/CycleButton;Lnet/minecraft/client/gui/components/CycleButton;Lnet/minecraft/world/Difficulty;)V com/mojang/realmsclient/gui/screens/RealmsSlotOptionsScreen/lambda$init$4 (Lnet/minecraft/client/gui/components/CycleButton;Lnet/minecraft/client/gui/components/CycleButton;Lnet/minecraft/world/Difficulty;)V +MD: com/mojang/realmsclient/gui/screens/RealmsSlotOptionsScreen/m_167521_ (Lnet/minecraft/client/gui/components/CycleButton;Ljava/lang/Boolean;)V com/mojang/realmsclient/gui/screens/RealmsSlotOptionsScreen/lambda$init$7 (Lnet/minecraft/client/gui/components/CycleButton;Ljava/lang/Boolean;)V +MD: com/mojang/realmsclient/gui/screens/RealmsSlotOptionsScreen/m_167524_ (Ljava/util/List;II)Ljava/lang/Object; com/mojang/realmsclient/gui/screens/RealmsSlotOptionsScreen/findByIndex (Ljava/util/List;II)Ljava/lang/Object; +MD: com/mojang/realmsclient/gui/screens/RealmsSlotOptionsScreen/m_167528_ (Ljava/util/List;Ljava/lang/Object;I)I com/mojang/realmsclient/gui/screens/RealmsSlotOptionsScreen/findIndex (Ljava/util/List;Ljava/lang/Object;I)I +MD: com/mojang/realmsclient/gui/screens/RealmsSlotOptionsScreen/m_167533_ (Lnet/minecraft/client/gui/components/CycleButton;Ljava/lang/Boolean;)V com/mojang/realmsclient/gui/screens/RealmsSlotOptionsScreen/lambda$init$6 (Lnet/minecraft/client/gui/components/CycleButton;Ljava/lang/Boolean;)V +MD: com/mojang/realmsclient/gui/screens/RealmsSlotOptionsScreen/m_167545_ (Lnet/minecraft/client/gui/components/CycleButton;Ljava/lang/Boolean;)V com/mojang/realmsclient/gui/screens/RealmsSlotOptionsScreen/lambda$init$0 (Lnet/minecraft/client/gui/components/CycleButton;Ljava/lang/Boolean;)V +MD: com/mojang/realmsclient/gui/screens/RealmsSlotOptionsScreen/m_231311_ (Ljava/lang/Boolean;)V com/mojang/realmsclient/gui/screens/RealmsSlotOptionsScreen/lambda$init$5 (Ljava/lang/Boolean;)V +MD: com/mojang/realmsclient/gui/screens/RealmsSlotOptionsScreen/m_231313_ (Ljava/lang/String;)V com/mojang/realmsclient/gui/screens/RealmsSlotOptionsScreen/setWorldName (Ljava/lang/String;)V +MD: com/mojang/realmsclient/gui/screens/RealmsSlotOptionsScreen/m_231323_ (Lnet/minecraft/network/chat/Component;Ljava/util/function/Consumer;)Lnet/minecraft/client/gui/components/CycleButton$OnValueChange; com/mojang/realmsclient/gui/screens/RealmsSlotOptionsScreen/confirmDangerousOption (Lnet/minecraft/network/chat/Component;Ljava/util/function/Consumer;)Lnet/minecraft/client/gui/components/CycleButton$OnValueChange; +MD: com/mojang/realmsclient/gui/screens/RealmsSlotOptionsScreen/m_231326_ (Ljava/lang/Boolean;)V com/mojang/realmsclient/gui/screens/RealmsSlotOptionsScreen/lambda$init$3 (Ljava/lang/Boolean;)V +MD: com/mojang/realmsclient/gui/screens/RealmsSlotOptionsScreen/m_231328_ (Ljava/lang/Boolean;)V com/mojang/realmsclient/gui/screens/RealmsSlotOptionsScreen/lambda$init$2 (Ljava/lang/Boolean;)V +MD: com/mojang/realmsclient/gui/screens/RealmsSlotOptionsScreen/m_279732_ (Ljava/util/function/Consumer;Lnet/minecraft/network/chat/Component;Lnet/minecraft/client/gui/components/CycleButton;Ljava/lang/Boolean;)V com/mojang/realmsclient/gui/screens/RealmsSlotOptionsScreen/lambda$confirmDangerousOption$11 (Ljava/util/function/Consumer;Lnet/minecraft/network/chat/Component;Lnet/minecraft/client/gui/components/CycleButton;Ljava/lang/Boolean;)V +MD: com/mojang/realmsclient/gui/screens/RealmsSlotOptionsScreen/m_279733_ (Ljava/util/function/Consumer;Z)V com/mojang/realmsclient/gui/screens/RealmsSlotOptionsScreen/lambda$confirmDangerousOption$10 (Ljava/util/function/Consumer;Z)V +MD: com/mojang/realmsclient/gui/screens/RealmsSlotOptionsScreen/m_279734_ (Lnet/minecraft/client/gui/components/Button;)V com/mojang/realmsclient/gui/screens/RealmsSlotOptionsScreen/lambda$init$9 (Lnet/minecraft/client/gui/components/Button;)V +MD: com/mojang/realmsclient/gui/screens/RealmsSlotOptionsScreen/m_7856_ ()V com/mojang/realmsclient/gui/screens/RealmsSlotOptionsScreen/init ()V +MD: com/mojang/realmsclient/gui/screens/RealmsSlotOptionsScreen/m_7933_ (III)Z com/mojang/realmsclient/gui/screens/RealmsSlotOptionsScreen/keyPressed (III)Z +MD: com/mojang/realmsclient/gui/screens/RealmsSlotOptionsScreen/m_86600_ ()V com/mojang/realmsclient/gui/screens/RealmsSlotOptionsScreen/tick ()V +MD: com/mojang/realmsclient/gui/screens/RealmsSlotOptionsScreen/m_88315_ (Lnet/minecraft/client/gui/GuiGraphics;IIF)V com/mojang/realmsclient/gui/screens/RealmsSlotOptionsScreen/render (Lnet/minecraft/client/gui/GuiGraphics;IIF)V +MD: com/mojang/realmsclient/gui/screens/RealmsSlotOptionsScreen/m_89909_ (Lnet/minecraft/client/gui/components/Button;)V com/mojang/realmsclient/gui/screens/RealmsSlotOptionsScreen/lambda$init$8 (Lnet/minecraft/client/gui/components/Button;)V +MD: com/mojang/realmsclient/gui/screens/RealmsSlotOptionsScreen/m_89940_ ()V com/mojang/realmsclient/gui/screens/RealmsSlotOptionsScreen/saveSettings ()V +MD: com/mojang/realmsclient/gui/screens/RealmsSlotOptionsScreen$SettingsSlider/ (Lcom/mojang/realmsclient/gui/screens/RealmsSlotOptionsScreen;IIIIFF)V com/mojang/realmsclient/gui/screens/RealmsSlotOptionsScreen$SettingsSlider/ (Lcom/mojang/realmsclient/gui/screens/RealmsSlotOptionsScreen;IIIIFF)V +MD: com/mojang/realmsclient/gui/screens/RealmsSlotOptionsScreen$SettingsSlider/m_5695_ ()V com/mojang/realmsclient/gui/screens/RealmsSlotOptionsScreen$SettingsSlider/updateMessage ()V +MD: com/mojang/realmsclient/gui/screens/RealmsSlotOptionsScreen$SettingsSlider/m_5697_ ()V com/mojang/realmsclient/gui/screens/RealmsSlotOptionsScreen$SettingsSlider/applyValue ()V +MD: com/mojang/realmsclient/gui/screens/RealmsSlotOptionsScreen$SettingsSlider/m_5716_ (DD)V com/mojang/realmsclient/gui/screens/RealmsSlotOptionsScreen$SettingsSlider/onClick (DD)V +MD: com/mojang/realmsclient/gui/screens/RealmsSlotOptionsScreen$SettingsSlider/m_7691_ (DD)V com/mojang/realmsclient/gui/screens/RealmsSlotOptionsScreen$SettingsSlider/onRelease (DD)V +MD: com/mojang/realmsclient/gui/screens/RealmsSubscriptionInfoScreen/ ()V com/mojang/realmsclient/gui/screens/RealmsSubscriptionInfoScreen/ ()V +MD: com/mojang/realmsclient/gui/screens/RealmsSubscriptionInfoScreen/ (Lnet/minecraft/client/gui/screens/Screen;Lcom/mojang/realmsclient/dto/RealmsServer;Lnet/minecraft/client/gui/screens/Screen;)V com/mojang/realmsclient/gui/screens/RealmsSubscriptionInfoScreen/ (Lnet/minecraft/client/gui/screens/Screen;Lcom/mojang/realmsclient/dto/RealmsServer;Lnet/minecraft/client/gui/screens/Screen;)V +MD: com/mojang/realmsclient/gui/screens/RealmsSubscriptionInfoScreen/m_142562_ ()Lnet/minecraft/network/chat/Component; com/mojang/realmsclient/gui/screens/RealmsSubscriptionInfoScreen/getNarrationMessage ()Lnet/minecraft/network/chat/Component; +MD: com/mojang/realmsclient/gui/screens/RealmsSubscriptionInfoScreen/m_167549_ (Lcom/mojang/realmsclient/gui/screens/RealmsSubscriptionInfoScreen;)Lnet/minecraft/client/Minecraft; com/mojang/realmsclient/gui/screens/RealmsSubscriptionInfoScreen/access$000 (Lcom/mojang/realmsclient/gui/screens/RealmsSubscriptionInfoScreen;)Lnet/minecraft/client/Minecraft; +MD: com/mojang/realmsclient/gui/screens/RealmsSubscriptionInfoScreen/m_167552_ (Lcom/mojang/realmsclient/gui/screens/RealmsSubscriptionInfoScreen;)Lnet/minecraft/client/Minecraft; com/mojang/realmsclient/gui/screens/RealmsSubscriptionInfoScreen/access$100 (Lcom/mojang/realmsclient/gui/screens/RealmsSubscriptionInfoScreen;)Lnet/minecraft/client/Minecraft; +MD: com/mojang/realmsclient/gui/screens/RealmsSubscriptionInfoScreen/m_182538_ (J)Lnet/minecraft/network/chat/Component; com/mojang/realmsclient/gui/screens/RealmsSubscriptionInfoScreen/localPresentation (J)Lnet/minecraft/network/chat/Component; +MD: com/mojang/realmsclient/gui/screens/RealmsSubscriptionInfoScreen/m_279736_ (Lnet/minecraft/client/gui/components/Button;)V com/mojang/realmsclient/gui/screens/RealmsSubscriptionInfoScreen/lambda$init$2 (Lnet/minecraft/client/gui/components/Button;)V +MD: com/mojang/realmsclient/gui/screens/RealmsSubscriptionInfoScreen/m_279737_ (Lnet/minecraft/client/gui/components/Button;)V com/mojang/realmsclient/gui/screens/RealmsSubscriptionInfoScreen/lambda$init$0 (Lnet/minecraft/client/gui/components/Button;)V +MD: com/mojang/realmsclient/gui/screens/RealmsSubscriptionInfoScreen/m_287013_ (Lnet/minecraft/client/gui/components/Button;)V com/mojang/realmsclient/gui/screens/RealmsSubscriptionInfoScreen/lambda$init$1 (Lnet/minecraft/client/gui/components/Button;)V +MD: com/mojang/realmsclient/gui/screens/RealmsSubscriptionInfoScreen/m_7856_ ()V com/mojang/realmsclient/gui/screens/RealmsSubscriptionInfoScreen/init ()V +MD: com/mojang/realmsclient/gui/screens/RealmsSubscriptionInfoScreen/m_7933_ (III)Z com/mojang/realmsclient/gui/screens/RealmsSubscriptionInfoScreen/keyPressed (III)Z +MD: com/mojang/realmsclient/gui/screens/RealmsSubscriptionInfoScreen/m_88315_ (Lnet/minecraft/client/gui/GuiGraphics;IIF)V com/mojang/realmsclient/gui/screens/RealmsSubscriptionInfoScreen/render (Lnet/minecraft/client/gui/GuiGraphics;IIF)V +MD: com/mojang/realmsclient/gui/screens/RealmsSubscriptionInfoScreen/m_89983_ (I)Lnet/minecraft/network/chat/Component; com/mojang/realmsclient/gui/screens/RealmsSubscriptionInfoScreen/daysLeftPresentation (I)Lnet/minecraft/network/chat/Component; +MD: com/mojang/realmsclient/gui/screens/RealmsSubscriptionInfoScreen/m_89989_ (J)V com/mojang/realmsclient/gui/screens/RealmsSubscriptionInfoScreen/getSubscription (J)V +MD: com/mojang/realmsclient/gui/screens/RealmsSubscriptionInfoScreen/m_90011_ (Z)V com/mojang/realmsclient/gui/screens/RealmsSubscriptionInfoScreen/deleteRealm (Z)V +MD: com/mojang/realmsclient/gui/screens/RealmsSubscriptionInfoScreen$1/ (Lcom/mojang/realmsclient/gui/screens/RealmsSubscriptionInfoScreen;Ljava/lang/String;)V com/mojang/realmsclient/gui/screens/RealmsSubscriptionInfoScreen$1/ (Lcom/mojang/realmsclient/gui/screens/RealmsSubscriptionInfoScreen;Ljava/lang/String;)V +MD: com/mojang/realmsclient/gui/screens/RealmsSubscriptionInfoScreen$1/m_90020_ ()V com/mojang/realmsclient/gui/screens/RealmsSubscriptionInfoScreen$1/lambda$run$0 ()V +MD: com/mojang/realmsclient/gui/screens/RealmsSubscriptionInfoScreen$1/run ()V com/mojang/realmsclient/gui/screens/RealmsSubscriptionInfoScreen$1/run ()V +MD: com/mojang/realmsclient/gui/screens/RealmsTermsScreen/ ()V com/mojang/realmsclient/gui/screens/RealmsTermsScreen/ ()V +MD: com/mojang/realmsclient/gui/screens/RealmsTermsScreen/ (Lnet/minecraft/client/gui/screens/Screen;Lcom/mojang/realmsclient/RealmsMainScreen;Lcom/mojang/realmsclient/dto/RealmsServer;)V com/mojang/realmsclient/gui/screens/RealmsTermsScreen/ (Lnet/minecraft/client/gui/screens/Screen;Lcom/mojang/realmsclient/RealmsMainScreen;Lcom/mojang/realmsclient/dto/RealmsServer;)V +MD: com/mojang/realmsclient/gui/screens/RealmsTermsScreen/m_142562_ ()Lnet/minecraft/network/chat/Component; com/mojang/realmsclient/gui/screens/RealmsTermsScreen/getNarrationMessage ()Lnet/minecraft/network/chat/Component; +MD: com/mojang/realmsclient/gui/screens/RealmsTermsScreen/m_279738_ (Lnet/minecraft/client/gui/components/Button;)V com/mojang/realmsclient/gui/screens/RealmsTermsScreen/lambda$init$1 (Lnet/minecraft/client/gui/components/Button;)V +MD: com/mojang/realmsclient/gui/screens/RealmsTermsScreen/m_6375_ (DDI)Z com/mojang/realmsclient/gui/screens/RealmsTermsScreen/mouseClicked (DDI)Z +MD: com/mojang/realmsclient/gui/screens/RealmsTermsScreen/m_7856_ ()V com/mojang/realmsclient/gui/screens/RealmsTermsScreen/init ()V +MD: com/mojang/realmsclient/gui/screens/RealmsTermsScreen/m_7933_ (III)Z com/mojang/realmsclient/gui/screens/RealmsTermsScreen/keyPressed (III)Z +MD: com/mojang/realmsclient/gui/screens/RealmsTermsScreen/m_88315_ (Lnet/minecraft/client/gui/GuiGraphics;IIF)V com/mojang/realmsclient/gui/screens/RealmsTermsScreen/render (Lnet/minecraft/client/gui/GuiGraphics;IIF)V +MD: com/mojang/realmsclient/gui/screens/RealmsTermsScreen/m_90053_ (Lnet/minecraft/client/gui/components/Button;)V com/mojang/realmsclient/gui/screens/RealmsTermsScreen/lambda$init$0 (Lnet/minecraft/client/gui/components/Button;)V +MD: com/mojang/realmsclient/gui/screens/RealmsTermsScreen/m_90056_ ()V com/mojang/realmsclient/gui/screens/RealmsTermsScreen/agreedToTos ()V +MD: com/mojang/realmsclient/gui/screens/RealmsUploadScreen/ ()V com/mojang/realmsclient/gui/screens/RealmsUploadScreen/ ()V +MD: com/mojang/realmsclient/gui/screens/RealmsUploadScreen/ (JILcom/mojang/realmsclient/gui/screens/RealmsResetWorldScreen;Lnet/minecraft/world/level/storage/LevelSummary;Ljava/lang/Runnable;)V com/mojang/realmsclient/gui/screens/RealmsUploadScreen/ (JILcom/mojang/realmsclient/gui/screens/RealmsResetWorldScreen;Lnet/minecraft/world/level/storage/LevelSummary;Ljava/lang/Runnable;)V +MD: com/mojang/realmsclient/gui/screens/RealmsUploadScreen/m_167555_ (JLcom/mojang/realmsclient/gui/screens/UploadResult;)V com/mojang/realmsclient/gui/screens/RealmsUploadScreen/lambda$upload$3 (JLcom/mojang/realmsclient/gui/screens/UploadResult;)V +MD: com/mojang/realmsclient/gui/screens/RealmsUploadScreen/m_167558_ ()Lnet/minecraft/network/chat/Component; com/mojang/realmsclient/gui/screens/RealmsUploadScreen/createProgressNarrationMessage ()Lnet/minecraft/network/chat/Component; +MD: com/mojang/realmsclient/gui/screens/RealmsUploadScreen/m_279739_ ()V com/mojang/realmsclient/gui/screens/RealmsUploadScreen/lambda$init$2 ()V +MD: com/mojang/realmsclient/gui/screens/RealmsUploadScreen/m_280334_ (Lnet/minecraft/client/gui/GuiGraphics;J)V com/mojang/realmsclient/gui/screens/RealmsUploadScreen/drawUploadSpeed0 (Lnet/minecraft/client/gui/GuiGraphics;J)V +MD: com/mojang/realmsclient/gui/screens/RealmsUploadScreen/m_280401_ (Lnet/minecraft/client/gui/GuiGraphics;)V com/mojang/realmsclient/gui/screens/RealmsUploadScreen/drawDots (Lnet/minecraft/client/gui/GuiGraphics;)V +MD: com/mojang/realmsclient/gui/screens/RealmsUploadScreen/m_7856_ ()V com/mojang/realmsclient/gui/screens/RealmsUploadScreen/init ()V +MD: com/mojang/realmsclient/gui/screens/RealmsUploadScreen/m_7933_ (III)Z com/mojang/realmsclient/gui/screens/RealmsUploadScreen/keyPressed (III)Z +MD: com/mojang/realmsclient/gui/screens/RealmsUploadScreen/m_86600_ ()V com/mojang/realmsclient/gui/screens/RealmsUploadScreen/tick ()V +MD: com/mojang/realmsclient/gui/screens/RealmsUploadScreen/m_88315_ (Lnet/minecraft/client/gui/GuiGraphics;IIF)V com/mojang/realmsclient/gui/screens/RealmsUploadScreen/render (Lnet/minecraft/client/gui/GuiGraphics;IIF)V +MD: com/mojang/realmsclient/gui/screens/RealmsUploadScreen/m_90103_ (Lnet/minecraft/client/gui/components/Button;)V com/mojang/realmsclient/gui/screens/RealmsUploadScreen/lambda$init$1 (Lnet/minecraft/client/gui/components/Button;)V +MD: com/mojang/realmsclient/gui/screens/RealmsUploadScreen/m_90105_ (Ljava/io/File;)Z com/mojang/realmsclient/gui/screens/RealmsUploadScreen/verify (Ljava/io/File;)Z +MD: com/mojang/realmsclient/gui/screens/RealmsUploadScreen/m_90107_ (Lorg/apache/commons/compress/archivers/tar/TarArchiveOutputStream;Ljava/lang/String;Ljava/lang/String;Z)V com/mojang/realmsclient/gui/screens/RealmsUploadScreen/addFileToTarGz (Lorg/apache/commons/compress/archivers/tar/TarArchiveOutputStream;Ljava/lang/String;Ljava/lang/String;Z)V +MD: com/mojang/realmsclient/gui/screens/RealmsUploadScreen/m_90112_ ([Lnet/minecraft/network/chat/Component;)V com/mojang/realmsclient/gui/screens/RealmsUploadScreen/setErrorMessage ([Lnet/minecraft/network/chat/Component;)V +MD: com/mojang/realmsclient/gui/screens/RealmsUploadScreen/m_90117_ (Lnet/minecraft/client/gui/components/Button;)V com/mojang/realmsclient/gui/screens/RealmsUploadScreen/lambda$init$0 (Lnet/minecraft/client/gui/components/Button;)V +MD: com/mojang/realmsclient/gui/screens/RealmsUploadScreen/m_90119_ (Ljava/io/File;)Ljava/io/File; com/mojang/realmsclient/gui/screens/RealmsUploadScreen/tarGzipArchive (Ljava/io/File;)Ljava/io/File; +MD: com/mojang/realmsclient/gui/screens/RealmsUploadScreen/m_90121_ (Lnet/minecraft/client/gui/GuiGraphics;)V com/mojang/realmsclient/gui/screens/RealmsUploadScreen/drawProgressBar (Lnet/minecraft/client/gui/GuiGraphics;)V +MD: com/mojang/realmsclient/gui/screens/RealmsUploadScreen/m_90124_ (Lnet/minecraft/client/gui/GuiGraphics;)V com/mojang/realmsclient/gui/screens/RealmsUploadScreen/drawUploadSpeed (Lnet/minecraft/client/gui/GuiGraphics;)V +MD: com/mojang/realmsclient/gui/screens/RealmsUploadScreen/m_90127_ ()V com/mojang/realmsclient/gui/screens/RealmsUploadScreen/onBack ()V +MD: com/mojang/realmsclient/gui/screens/RealmsUploadScreen/m_90128_ ()V com/mojang/realmsclient/gui/screens/RealmsUploadScreen/onCancel ()V +MD: com/mojang/realmsclient/gui/screens/RealmsUploadScreen/m_90129_ ()V com/mojang/realmsclient/gui/screens/RealmsUploadScreen/upload ()V +MD: com/mojang/realmsclient/gui/screens/RealmsUploadScreen/m_90130_ ()V com/mojang/realmsclient/gui/screens/RealmsUploadScreen/uploadCancelled ()V +MD: com/mojang/realmsclient/gui/screens/RealmsUploadScreen/m_90131_ ()V com/mojang/realmsclient/gui/screens/RealmsUploadScreen/lambda$upload$4 ()V +MD: com/mojang/realmsclient/gui/screens/UploadResult/ (ILjava/lang/String;)V com/mojang/realmsclient/gui/screens/UploadResult/ (ILjava/lang/String;)V +MD: com/mojang/realmsclient/gui/screens/UploadResult$Builder/ ()V com/mojang/realmsclient/gui/screens/UploadResult$Builder/ ()V +MD: com/mojang/realmsclient/gui/screens/UploadResult$Builder/m_90145_ ()Lcom/mojang/realmsclient/gui/screens/UploadResult; com/mojang/realmsclient/gui/screens/UploadResult$Builder/build ()Lcom/mojang/realmsclient/gui/screens/UploadResult; +MD: com/mojang/realmsclient/gui/screens/UploadResult$Builder/m_90146_ (I)Lcom/mojang/realmsclient/gui/screens/UploadResult$Builder; com/mojang/realmsclient/gui/screens/UploadResult$Builder/withStatusCode (I)Lcom/mojang/realmsclient/gui/screens/UploadResult$Builder; +MD: com/mojang/realmsclient/gui/screens/UploadResult$Builder/m_90148_ (Ljava/lang/String;)Lcom/mojang/realmsclient/gui/screens/UploadResult$Builder; com/mojang/realmsclient/gui/screens/UploadResult$Builder/withErrorMessage (Ljava/lang/String;)Lcom/mojang/realmsclient/gui/screens/UploadResult$Builder; +MD: com/mojang/realmsclient/gui/task/DataFetcher/ ()V com/mojang/realmsclient/gui/task/DataFetcher/ ()V +MD: com/mojang/realmsclient/gui/task/DataFetcher/ (Ljava/util/concurrent/Executor;Ljava/util/concurrent/TimeUnit;Lnet/minecraft/util/TimeSource;)V com/mojang/realmsclient/gui/task/DataFetcher/ (Ljava/util/concurrent/Executor;Ljava/util/concurrent/TimeUnit;Lnet/minecraft/util/TimeSource;)V +MD: com/mojang/realmsclient/gui/task/DataFetcher/m_239139_ ()Lcom/mojang/realmsclient/gui/task/DataFetcher$Subscription; com/mojang/realmsclient/gui/task/DataFetcher/createSubscription ()Lcom/mojang/realmsclient/gui/task/DataFetcher$Subscription; +MD: com/mojang/realmsclient/gui/task/DataFetcher/m_239622_ (Ljava/lang/String;Ljava/util/concurrent/Callable;Ljava/time/Duration;Lcom/mojang/realmsclient/gui/task/RepeatedDelayStrategy;)Lcom/mojang/realmsclient/gui/task/DataFetcher$Task; com/mojang/realmsclient/gui/task/DataFetcher/createTask (Ljava/lang/String;Ljava/util/concurrent/Callable;Ljava/time/Duration;Lcom/mojang/realmsclient/gui/task/RepeatedDelayStrategy;)Lcom/mojang/realmsclient/gui/task/DataFetcher$Task; +MD: com/mojang/realmsclient/gui/task/DataFetcher$ComputationResult/ (Lcom/mojang/datafixers/util/Either;J)V com/mojang/realmsclient/gui/task/DataFetcher$ComputationResult/ (Lcom/mojang/datafixers/util/Either;J)V +MD: com/mojang/realmsclient/gui/task/DataFetcher$ComputationResult/equals (Ljava/lang/Object;)Z com/mojang/realmsclient/gui/task/DataFetcher$ComputationResult/equals (Ljava/lang/Object;)Z +MD: com/mojang/realmsclient/gui/task/DataFetcher$ComputationResult/f_238664_ ()J com/mojang/realmsclient/gui/task/DataFetcher$ComputationResult/time ()J +MD: com/mojang/realmsclient/gui/task/DataFetcher$ComputationResult/f_238822_ ()Lcom/mojang/datafixers/util/Either; com/mojang/realmsclient/gui/task/DataFetcher$ComputationResult/value ()Lcom/mojang/datafixers/util/Either; +MD: com/mojang/realmsclient/gui/task/DataFetcher$ComputationResult/hashCode ()I com/mojang/realmsclient/gui/task/DataFetcher$ComputationResult/hashCode ()I +MD: com/mojang/realmsclient/gui/task/DataFetcher$ComputationResult/toString ()Ljava/lang/String; com/mojang/realmsclient/gui/task/DataFetcher$ComputationResult/toString ()Ljava/lang/String; +MD: com/mojang/realmsclient/gui/task/DataFetcher$SubscribedTask/ (Lcom/mojang/realmsclient/gui/task/DataFetcher;Lcom/mojang/realmsclient/gui/task/DataFetcher$Task;Ljava/util/function/Consumer;)V com/mojang/realmsclient/gui/task/DataFetcher$SubscribedTask/ (Lcom/mojang/realmsclient/gui/task/DataFetcher;Lcom/mojang/realmsclient/gui/task/DataFetcher$Task;Ljava/util/function/Consumer;)V +MD: com/mojang/realmsclient/gui/task/DataFetcher$SubscribedTask/m_239225_ (J)V com/mojang/realmsclient/gui/task/DataFetcher$SubscribedTask/update (J)V +MD: com/mojang/realmsclient/gui/task/DataFetcher$SubscribedTask/m_239278_ ()V com/mojang/realmsclient/gui/task/DataFetcher$SubscribedTask/reset ()V +MD: com/mojang/realmsclient/gui/task/DataFetcher$SubscribedTask/m_240045_ ()V com/mojang/realmsclient/gui/task/DataFetcher$SubscribedTask/runCallbackIfNeeded ()V +MD: com/mojang/realmsclient/gui/task/DataFetcher$SubscribedTask/m_240119_ ()V com/mojang/realmsclient/gui/task/DataFetcher$SubscribedTask/runCallback ()V +MD: com/mojang/realmsclient/gui/task/DataFetcher$Subscription/ (Lcom/mojang/realmsclient/gui/task/DataFetcher;)V com/mojang/realmsclient/gui/task/DataFetcher$Subscription/ (Lcom/mojang/realmsclient/gui/task/DataFetcher;)V +MD: com/mojang/realmsclient/gui/task/DataFetcher$Subscription/m_239355_ ()V com/mojang/realmsclient/gui/task/DataFetcher$Subscription/tick ()V +MD: com/mojang/realmsclient/gui/task/DataFetcher$Subscription/m_239441_ (Lcom/mojang/realmsclient/gui/task/DataFetcher$Task;Ljava/util/function/Consumer;)V com/mojang/realmsclient/gui/task/DataFetcher$Subscription/subscribe (Lcom/mojang/realmsclient/gui/task/DataFetcher$Task;Ljava/util/function/Consumer;)V +MD: com/mojang/realmsclient/gui/task/DataFetcher$Subscription/m_240009_ ()V com/mojang/realmsclient/gui/task/DataFetcher$Subscription/forceUpdate ()V +MD: com/mojang/realmsclient/gui/task/DataFetcher$Subscription/m_240120_ ()V com/mojang/realmsclient/gui/task/DataFetcher$Subscription/reset ()V +MD: com/mojang/realmsclient/gui/task/DataFetcher$SuccessfulComputationResult/ (Ljava/lang/Object;J)V com/mojang/realmsclient/gui/task/DataFetcher$SuccessfulComputationResult/ (Ljava/lang/Object;J)V +MD: com/mojang/realmsclient/gui/task/DataFetcher$SuccessfulComputationResult/equals (Ljava/lang/Object;)Z com/mojang/realmsclient/gui/task/DataFetcher$SuccessfulComputationResult/equals (Ljava/lang/Object;)Z +MD: com/mojang/realmsclient/gui/task/DataFetcher$SuccessfulComputationResult/f_238529_ ()Ljava/lang/Object; com/mojang/realmsclient/gui/task/DataFetcher$SuccessfulComputationResult/value ()Ljava/lang/Object; +MD: com/mojang/realmsclient/gui/task/DataFetcher$SuccessfulComputationResult/f_238539_ ()J com/mojang/realmsclient/gui/task/DataFetcher$SuccessfulComputationResult/time ()J +MD: com/mojang/realmsclient/gui/task/DataFetcher$SuccessfulComputationResult/hashCode ()I com/mojang/realmsclient/gui/task/DataFetcher$SuccessfulComputationResult/hashCode ()I +MD: com/mojang/realmsclient/gui/task/DataFetcher$SuccessfulComputationResult/toString ()Ljava/lang/String; com/mojang/realmsclient/gui/task/DataFetcher$SuccessfulComputationResult/toString ()Ljava/lang/String; +MD: com/mojang/realmsclient/gui/task/DataFetcher$Task/ (Lcom/mojang/realmsclient/gui/task/DataFetcher;Ljava/lang/String;Ljava/util/concurrent/Callable;JLcom/mojang/realmsclient/gui/task/RepeatedDelayStrategy;)V com/mojang/realmsclient/gui/task/DataFetcher$Task/ (Lcom/mojang/realmsclient/gui/task/DataFetcher;Ljava/lang/String;Ljava/util/concurrent/Callable;JLcom/mojang/realmsclient/gui/task/RepeatedDelayStrategy;)V +MD: com/mojang/realmsclient/gui/task/DataFetcher$Task/m_239279_ (JLjava/lang/Exception;)V com/mojang/realmsclient/gui/task/DataFetcher$Task/lambda$updateIfNeeded$1 (JLjava/lang/Exception;)V +MD: com/mojang/realmsclient/gui/task/DataFetcher$Task/m_239554_ ()Lcom/mojang/realmsclient/gui/task/DataFetcher$ComputationResult; com/mojang/realmsclient/gui/task/DataFetcher$Task/lambda$updateIfNeeded$2 ()Lcom/mojang/realmsclient/gui/task/DataFetcher$ComputationResult; +MD: com/mojang/realmsclient/gui/task/DataFetcher$Task/m_239689_ (JLjava/lang/Object;)V com/mojang/realmsclient/gui/task/DataFetcher$Task/lambda$updateIfNeeded$0 (JLjava/lang/Object;)V +MD: com/mojang/realmsclient/gui/task/DataFetcher$Task/m_239709_ (J)V com/mojang/realmsclient/gui/task/DataFetcher$Task/updateIfNeeded (J)V +MD: com/mojang/realmsclient/gui/task/DataFetcher$Task/m_239964_ ()V com/mojang/realmsclient/gui/task/DataFetcher$Task/reset ()V +MD: com/mojang/realmsclient/gui/task/RepeatedDelayStrategy/ ()V com/mojang/realmsclient/gui/task/RepeatedDelayStrategy/ ()V +MD: com/mojang/realmsclient/gui/task/RepeatedDelayStrategy/m_239029_ ()J com/mojang/realmsclient/gui/task/RepeatedDelayStrategy/delayCyclesAfterSuccess ()J +MD: com/mojang/realmsclient/gui/task/RepeatedDelayStrategy/m_239153_ ()J com/mojang/realmsclient/gui/task/RepeatedDelayStrategy/delayCyclesAfterFailure ()J +MD: com/mojang/realmsclient/gui/task/RepeatedDelayStrategy/m_239255_ (I)Lcom/mojang/realmsclient/gui/task/RepeatedDelayStrategy; com/mojang/realmsclient/gui/task/RepeatedDelayStrategy/exponentialBackoff (I)Lcom/mojang/realmsclient/gui/task/RepeatedDelayStrategy; +MD: com/mojang/realmsclient/gui/task/RepeatedDelayStrategy$1/ ()V com/mojang/realmsclient/gui/task/RepeatedDelayStrategy$1/ ()V +MD: com/mojang/realmsclient/gui/task/RepeatedDelayStrategy$1/m_239029_ ()J com/mojang/realmsclient/gui/task/RepeatedDelayStrategy$1/delayCyclesAfterSuccess ()J +MD: com/mojang/realmsclient/gui/task/RepeatedDelayStrategy$1/m_239153_ ()J com/mojang/realmsclient/gui/task/RepeatedDelayStrategy$1/delayCyclesAfterFailure ()J +MD: com/mojang/realmsclient/gui/task/RepeatedDelayStrategy$2/ ()V com/mojang/realmsclient/gui/task/RepeatedDelayStrategy$2/ ()V +MD: com/mojang/realmsclient/gui/task/RepeatedDelayStrategy$2/ (I)V com/mojang/realmsclient/gui/task/RepeatedDelayStrategy$2/ (I)V +MD: com/mojang/realmsclient/gui/task/RepeatedDelayStrategy$2/m_239029_ ()J com/mojang/realmsclient/gui/task/RepeatedDelayStrategy$2/delayCyclesAfterSuccess ()J +MD: com/mojang/realmsclient/gui/task/RepeatedDelayStrategy$2/m_239153_ ()J com/mojang/realmsclient/gui/task/RepeatedDelayStrategy$2/delayCyclesAfterFailure ()J +MD: com/mojang/realmsclient/util/JsonUtils/ ()V com/mojang/realmsclient/util/JsonUtils/ ()V +MD: com/mojang/realmsclient/util/JsonUtils/m_274305_ (Ljava/lang/String;Lcom/google/gson/JsonObject;)Ljava/lang/String; com/mojang/realmsclient/util/JsonUtils/getRequiredString (Ljava/lang/String;Lcom/google/gson/JsonObject;)Ljava/lang/String; +MD: com/mojang/realmsclient/util/JsonUtils/m_274562_ (Ljava/lang/String;Lcom/google/gson/JsonObject;Ljava/util/UUID;)Ljava/util/UUID; com/mojang/realmsclient/util/JsonUtils/getUuidOr (Ljava/lang/String;Lcom/google/gson/JsonObject;Ljava/util/UUID;)Ljava/util/UUID; +MD: com/mojang/realmsclient/util/JsonUtils/m_274579_ (Ljava/lang/String;Lcom/google/gson/JsonObject;Ljava/util/function/Function;)Ljava/lang/Object; com/mojang/realmsclient/util/JsonUtils/getRequired (Ljava/lang/String;Lcom/google/gson/JsonObject;Ljava/util/function/Function;)Ljava/lang/Object; +MD: com/mojang/realmsclient/util/JsonUtils/m_90150_ (Ljava/lang/String;Lcom/google/gson/JsonObject;)Ljava/util/Date; com/mojang/realmsclient/util/JsonUtils/getDateOr (Ljava/lang/String;Lcom/google/gson/JsonObject;)Ljava/util/Date; +MD: com/mojang/realmsclient/util/JsonUtils/m_90153_ (Ljava/lang/String;Lcom/google/gson/JsonObject;I)I com/mojang/realmsclient/util/JsonUtils/getIntOr (Ljava/lang/String;Lcom/google/gson/JsonObject;I)I +MD: com/mojang/realmsclient/util/JsonUtils/m_90157_ (Ljava/lang/String;Lcom/google/gson/JsonObject;J)J com/mojang/realmsclient/util/JsonUtils/getLongOr (Ljava/lang/String;Lcom/google/gson/JsonObject;J)J +MD: com/mojang/realmsclient/util/JsonUtils/m_90161_ (Ljava/lang/String;Lcom/google/gson/JsonObject;Ljava/lang/String;)Ljava/lang/String; com/mojang/realmsclient/util/JsonUtils/getStringOr (Ljava/lang/String;Lcom/google/gson/JsonObject;Ljava/lang/String;)Ljava/lang/String; +MD: com/mojang/realmsclient/util/JsonUtils/m_90165_ (Ljava/lang/String;Lcom/google/gson/JsonObject;Z)Z com/mojang/realmsclient/util/JsonUtils/getBooleanOr (Ljava/lang/String;Lcom/google/gson/JsonObject;Z)Z +MD: com/mojang/realmsclient/util/LevelType/ ()V com/mojang/realmsclient/util/LevelType/ ()V +MD: com/mojang/realmsclient/util/LevelType/ (Ljava/lang/String;IILnet/minecraft/resources/ResourceKey;)V com/mojang/realmsclient/util/LevelType/ (Ljava/lang/String;IILnet/minecraft/resources/ResourceKey;)V +MD: com/mojang/realmsclient/util/LevelType/m_167607_ ()Lnet/minecraft/network/chat/Component; com/mojang/realmsclient/util/LevelType/getName ()Lnet/minecraft/network/chat/Component; +MD: com/mojang/realmsclient/util/LevelType/m_167608_ ()I com/mojang/realmsclient/util/LevelType/getDtoIndex ()I +MD: com/mojang/realmsclient/util/LevelType/m_167609_ ()[Lcom/mojang/realmsclient/util/LevelType; com/mojang/realmsclient/util/LevelType/$values ()[Lcom/mojang/realmsclient/util/LevelType; +MD: com/mojang/realmsclient/util/LevelType/valueOf (Ljava/lang/String;)Lcom/mojang/realmsclient/util/LevelType; com/mojang/realmsclient/util/LevelType/valueOf (Ljava/lang/String;)Lcom/mojang/realmsclient/util/LevelType; +MD: com/mojang/realmsclient/util/LevelType/values ()[Lcom/mojang/realmsclient/util/LevelType; com/mojang/realmsclient/util/LevelType/values ()[Lcom/mojang/realmsclient/util/LevelType; +MD: com/mojang/realmsclient/util/RealmsPersistence/ ()V com/mojang/realmsclient/util/RealmsPersistence/ ()V +MD: com/mojang/realmsclient/util/RealmsPersistence/ ()V com/mojang/realmsclient/util/RealmsPersistence/ ()V +MD: com/mojang/realmsclient/util/RealmsPersistence/m_167615_ ()Lcom/mojang/realmsclient/util/RealmsPersistence$RealmsPersistenceData; com/mojang/realmsclient/util/RealmsPersistence/read ()Lcom/mojang/realmsclient/util/RealmsPersistence$RealmsPersistenceData; +MD: com/mojang/realmsclient/util/RealmsPersistence/m_167616_ (Lcom/mojang/realmsclient/util/RealmsPersistence$RealmsPersistenceData;)V com/mojang/realmsclient/util/RealmsPersistence/save (Lcom/mojang/realmsclient/util/RealmsPersistence$RealmsPersistenceData;)V +MD: com/mojang/realmsclient/util/RealmsPersistence/m_90171_ ()Lcom/mojang/realmsclient/util/RealmsPersistence$RealmsPersistenceData; com/mojang/realmsclient/util/RealmsPersistence/readFile ()Lcom/mojang/realmsclient/util/RealmsPersistence$RealmsPersistenceData; +MD: com/mojang/realmsclient/util/RealmsPersistence/m_90172_ (Lcom/mojang/realmsclient/util/RealmsPersistence$RealmsPersistenceData;)V com/mojang/realmsclient/util/RealmsPersistence/writeFile (Lcom/mojang/realmsclient/util/RealmsPersistence$RealmsPersistenceData;)V +MD: com/mojang/realmsclient/util/RealmsPersistence/m_90174_ ()Ljava/nio/file/Path; com/mojang/realmsclient/util/RealmsPersistence/getPathToData ()Ljava/nio/file/Path; +MD: com/mojang/realmsclient/util/RealmsPersistence$RealmsPersistenceData/ ()V com/mojang/realmsclient/util/RealmsPersistence$RealmsPersistenceData/ ()V +MD: com/mojang/realmsclient/util/RealmsTextureManager/ ()V com/mojang/realmsclient/util/RealmsTextureManager/ ()V +MD: com/mojang/realmsclient/util/RealmsTextureManager/ ()V com/mojang/realmsclient/util/RealmsTextureManager/ ()V +MD: com/mojang/realmsclient/util/RealmsTextureManager/m_269309_ (Ljava/lang/String;)Lcom/mojang/blaze3d/platform/NativeImage; com/mojang/realmsclient/util/RealmsTextureManager/loadImage (Ljava/lang/String;)Lcom/mojang/blaze3d/platform/NativeImage; +MD: com/mojang/realmsclient/util/RealmsTextureManager/m_269474_ (Ljava/lang/String;Ljava/lang/String;)Lnet/minecraft/resources/ResourceLocation; com/mojang/realmsclient/util/RealmsTextureManager/worldTemplate (Ljava/lang/String;Ljava/lang/String;)Lnet/minecraft/resources/ResourceLocation; +MD: com/mojang/realmsclient/util/RealmsTextureManager/m_90196_ (Ljava/lang/String;Ljava/lang/String;)Lnet/minecraft/resources/ResourceLocation; com/mojang/realmsclient/util/RealmsTextureManager/getTexture (Ljava/lang/String;Ljava/lang/String;)Lnet/minecraft/resources/ResourceLocation; +MD: com/mojang/realmsclient/util/RealmsTextureManager$RealmsTexture/ (Ljava/lang/String;Lnet/minecraft/resources/ResourceLocation;)V com/mojang/realmsclient/util/RealmsTextureManager$RealmsTexture/ (Ljava/lang/String;Lnet/minecraft/resources/ResourceLocation;)V +MD: com/mojang/realmsclient/util/RealmsTextureManager$RealmsTexture/equals (Ljava/lang/Object;)Z com/mojang/realmsclient/util/RealmsTextureManager$RealmsTexture/equals (Ljava/lang/Object;)Z +MD: com/mojang/realmsclient/util/RealmsTextureManager$RealmsTexture/f_90205_ ()Ljava/lang/String; com/mojang/realmsclient/util/RealmsTextureManager$RealmsTexture/image ()Ljava/lang/String; +MD: com/mojang/realmsclient/util/RealmsTextureManager$RealmsTexture/f_90206_ ()Lnet/minecraft/resources/ResourceLocation; com/mojang/realmsclient/util/RealmsTextureManager$RealmsTexture/textureId ()Lnet/minecraft/resources/ResourceLocation; +MD: com/mojang/realmsclient/util/RealmsTextureManager$RealmsTexture/hashCode ()I com/mojang/realmsclient/util/RealmsTextureManager$RealmsTexture/hashCode ()I +MD: com/mojang/realmsclient/util/RealmsTextureManager$RealmsTexture/toString ()Ljava/lang/String; com/mojang/realmsclient/util/RealmsTextureManager$RealmsTexture/toString ()Ljava/lang/String; +MD: com/mojang/realmsclient/util/RealmsUtil/ ()V com/mojang/realmsclient/util/RealmsUtil/ ()V +MD: com/mojang/realmsclient/util/RealmsUtil/ ()V com/mojang/realmsclient/util/RealmsUtil/ ()V +MD: com/mojang/realmsclient/util/RealmsUtil/m_269239_ (Ljava/lang/String;)Lcom/mojang/authlib/GameProfile; com/mojang/realmsclient/util/RealmsUtil/getGameProfile (Ljava/lang/String;)Lcom/mojang/authlib/GameProfile; +MD: com/mojang/realmsclient/util/RealmsUtil/m_280319_ (Lnet/minecraft/client/gui/GuiGraphics;IIILjava/lang/String;)V com/mojang/realmsclient/util/RealmsUtil/renderPlayerFace (Lnet/minecraft/client/gui/GuiGraphics;IIILjava/lang/String;)V +MD: com/mojang/realmsclient/util/RealmsUtil/m_287183_ (J)Lnet/minecraft/network/chat/Component; com/mojang/realmsclient/util/RealmsUtil/convertToAgePresentation (J)Lnet/minecraft/network/chat/Component; +MD: com/mojang/realmsclient/util/RealmsUtil/m_287255_ (Ljava/util/Date;)Lnet/minecraft/network/chat/Component; com/mojang/realmsclient/util/RealmsUtil/convertToAgePresentationFromInstant (Ljava/util/Date;)Lnet/minecraft/network/chat/Component; +MD: com/mojang/realmsclient/util/RealmsUtil/m_90221_ (Ljava/lang/String;)Ljava/lang/String; com/mojang/realmsclient/util/RealmsUtil/uuidToName (Ljava/lang/String;)Ljava/lang/String; +MD: com/mojang/realmsclient/util/RealmsUtil$1/ ()V com/mojang/realmsclient/util/RealmsUtil$1/ ()V +MD: com/mojang/realmsclient/util/RealmsUtil$1/load (Ljava/lang/String;)Lcom/mojang/authlib/GameProfile; com/mojang/realmsclient/util/RealmsUtil$1/load (Ljava/lang/String;)Lcom/mojang/authlib/GameProfile; +MD: com/mojang/realmsclient/util/RealmsUtil$1/load (Ljava/lang/Object;)Ljava/lang/Object; com/mojang/realmsclient/util/RealmsUtil$1/load (Ljava/lang/Object;)Ljava/lang/Object; +MD: com/mojang/realmsclient/util/TextRenderingUtils/ ()V com/mojang/realmsclient/util/TextRenderingUtils/ ()V +MD: com/mojang/realmsclient/util/TextRenderingUtils/m_90248_ (Ljava/lang/String;)Ljava/util/List; com/mojang/realmsclient/util/TextRenderingUtils/lineBreak (Ljava/lang/String;)Ljava/util/List; +MD: com/mojang/realmsclient/util/TextRenderingUtils/m_90250_ (Ljava/lang/String;Ljava/lang/String;)Ljava/util/List; com/mojang/realmsclient/util/TextRenderingUtils/split (Ljava/lang/String;Ljava/lang/String;)Ljava/util/List; +MD: com/mojang/realmsclient/util/TextRenderingUtils/m_90253_ (Ljava/lang/String;Ljava/util/List;)Ljava/util/List; com/mojang/realmsclient/util/TextRenderingUtils/decompose (Ljava/lang/String;Ljava/util/List;)Ljava/util/List; +MD: com/mojang/realmsclient/util/TextRenderingUtils/m_90256_ (Ljava/lang/String;[Lcom/mojang/realmsclient/util/TextRenderingUtils$LineSegment;)Ljava/util/List; com/mojang/realmsclient/util/TextRenderingUtils/decompose (Ljava/lang/String;[Lcom/mojang/realmsclient/util/TextRenderingUtils$LineSegment;)Ljava/util/List; +MD: com/mojang/realmsclient/util/TextRenderingUtils/m_90259_ (Ljava/util/List;Ljava/util/List;)Ljava/util/List; com/mojang/realmsclient/util/TextRenderingUtils/insertLinks (Ljava/util/List;Ljava/util/List;)Ljava/util/List; +MD: com/mojang/realmsclient/util/TextRenderingUtils$Line/ ([Lcom/mojang/realmsclient/util/TextRenderingUtils$LineSegment;)V com/mojang/realmsclient/util/TextRenderingUtils$Line/ ([Lcom/mojang/realmsclient/util/TextRenderingUtils$LineSegment;)V +MD: com/mojang/realmsclient/util/TextRenderingUtils$Line/ (Ljava/util/List;)V com/mojang/realmsclient/util/TextRenderingUtils$Line/ (Ljava/util/List;)V +MD: com/mojang/realmsclient/util/TextRenderingUtils$Line/equals (Ljava/lang/Object;)Z com/mojang/realmsclient/util/TextRenderingUtils$Line/equals (Ljava/lang/Object;)Z +MD: com/mojang/realmsclient/util/TextRenderingUtils$Line/hashCode ()I com/mojang/realmsclient/util/TextRenderingUtils$Line/hashCode ()I +MD: com/mojang/realmsclient/util/TextRenderingUtils$Line/toString ()Ljava/lang/String; com/mojang/realmsclient/util/TextRenderingUtils$Line/toString ()Ljava/lang/String; +MD: com/mojang/realmsclient/util/TextRenderingUtils$LineSegment/ (Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;)V com/mojang/realmsclient/util/TextRenderingUtils$LineSegment/ (Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;)V +MD: com/mojang/realmsclient/util/TextRenderingUtils$LineSegment/ (Ljava/lang/String;)V com/mojang/realmsclient/util/TextRenderingUtils$LineSegment/ (Ljava/lang/String;)V +MD: com/mojang/realmsclient/util/TextRenderingUtils$LineSegment/equals (Ljava/lang/Object;)Z com/mojang/realmsclient/util/TextRenderingUtils$LineSegment/equals (Ljava/lang/Object;)Z +MD: com/mojang/realmsclient/util/TextRenderingUtils$LineSegment/hashCode ()I com/mojang/realmsclient/util/TextRenderingUtils$LineSegment/hashCode ()I +MD: com/mojang/realmsclient/util/TextRenderingUtils$LineSegment/m_90278_ ()Ljava/lang/String; com/mojang/realmsclient/util/TextRenderingUtils$LineSegment/renderedText ()Ljava/lang/String; +MD: com/mojang/realmsclient/util/TextRenderingUtils$LineSegment/m_90279_ (Ljava/lang/String;)Lcom/mojang/realmsclient/util/TextRenderingUtils$LineSegment; com/mojang/realmsclient/util/TextRenderingUtils$LineSegment/text (Ljava/lang/String;)Lcom/mojang/realmsclient/util/TextRenderingUtils$LineSegment; +MD: com/mojang/realmsclient/util/TextRenderingUtils$LineSegment/m_90281_ (Ljava/lang/String;Ljava/lang/String;)Lcom/mojang/realmsclient/util/TextRenderingUtils$LineSegment; com/mojang/realmsclient/util/TextRenderingUtils$LineSegment/link (Ljava/lang/String;Ljava/lang/String;)Lcom/mojang/realmsclient/util/TextRenderingUtils$LineSegment; +MD: com/mojang/realmsclient/util/TextRenderingUtils$LineSegment/m_90284_ ()Z com/mojang/realmsclient/util/TextRenderingUtils$LineSegment/isLink ()Z +MD: com/mojang/realmsclient/util/TextRenderingUtils$LineSegment/m_90285_ ()Ljava/lang/String; com/mojang/realmsclient/util/TextRenderingUtils$LineSegment/getLinkUrl ()Ljava/lang/String; +MD: com/mojang/realmsclient/util/TextRenderingUtils$LineSegment/toString ()Ljava/lang/String; com/mojang/realmsclient/util/TextRenderingUtils$LineSegment/toString ()Ljava/lang/String; +MD: com/mojang/realmsclient/util/UploadTokenCache/ ()V com/mojang/realmsclient/util/UploadTokenCache/ ()V +MD: com/mojang/realmsclient/util/UploadTokenCache/ ()V com/mojang/realmsclient/util/UploadTokenCache/ ()V +MD: com/mojang/realmsclient/util/UploadTokenCache/m_90292_ (J)Ljava/lang/String; com/mojang/realmsclient/util/UploadTokenCache/get (J)Ljava/lang/String; +MD: com/mojang/realmsclient/util/UploadTokenCache/m_90294_ (JLjava/lang/String;)V com/mojang/realmsclient/util/UploadTokenCache/put (JLjava/lang/String;)V +MD: com/mojang/realmsclient/util/UploadTokenCache/m_90297_ (J)V com/mojang/realmsclient/util/UploadTokenCache/invalidate (J)V +MD: com/mojang/realmsclient/util/WorldGenerationInfo/ (Ljava/lang/String;Lcom/mojang/realmsclient/util/LevelType;Z)V com/mojang/realmsclient/util/WorldGenerationInfo/ (Ljava/lang/String;Lcom/mojang/realmsclient/util/LevelType;Z)V +MD: com/mojang/realmsclient/util/WorldGenerationInfo/m_167634_ ()Ljava/lang/String; com/mojang/realmsclient/util/WorldGenerationInfo/getSeed ()Ljava/lang/String; +MD: com/mojang/realmsclient/util/WorldGenerationInfo/m_167635_ ()Lcom/mojang/realmsclient/util/LevelType; com/mojang/realmsclient/util/WorldGenerationInfo/getLevelType ()Lcom/mojang/realmsclient/util/LevelType; +MD: com/mojang/realmsclient/util/WorldGenerationInfo/m_167636_ ()Z com/mojang/realmsclient/util/WorldGenerationInfo/shouldGenerateStructures ()Z +MD: com/mojang/realmsclient/util/task/CloseServerTask/ ()V com/mojang/realmsclient/util/task/CloseServerTask/ ()V +MD: com/mojang/realmsclient/util/task/CloseServerTask/ (Lcom/mojang/realmsclient/dto/RealmsServer;Lcom/mojang/realmsclient/gui/screens/RealmsConfigureWorldScreen;)V com/mojang/realmsclient/util/task/CloseServerTask/ (Lcom/mojang/realmsclient/dto/RealmsServer;Lcom/mojang/realmsclient/gui/screens/RealmsConfigureWorldScreen;)V +MD: com/mojang/realmsclient/util/task/CloseServerTask/run ()V com/mojang/realmsclient/util/task/CloseServerTask/run ()V +MD: com/mojang/realmsclient/util/task/ConnectTask/ (Lnet/minecraft/client/gui/screens/Screen;Lcom/mojang/realmsclient/dto/RealmsServer;Lcom/mojang/realmsclient/dto/RealmsServerAddress;)V com/mojang/realmsclient/util/task/ConnectTask/ (Lnet/minecraft/client/gui/screens/Screen;Lcom/mojang/realmsclient/dto/RealmsServer;Lcom/mojang/realmsclient/dto/RealmsServerAddress;)V +MD: com/mojang/realmsclient/util/task/ConnectTask/m_5519_ ()V com/mojang/realmsclient/util/task/ConnectTask/tick ()V +MD: com/mojang/realmsclient/util/task/ConnectTask/m_5520_ ()V com/mojang/realmsclient/util/task/ConnectTask/abortTask ()V +MD: com/mojang/realmsclient/util/task/ConnectTask/run ()V com/mojang/realmsclient/util/task/ConnectTask/run ()V +MD: com/mojang/realmsclient/util/task/DownloadTask/ ()V com/mojang/realmsclient/util/task/DownloadTask/ ()V +MD: com/mojang/realmsclient/util/task/DownloadTask/ (JILjava/lang/String;Lnet/minecraft/client/gui/screens/Screen;)V com/mojang/realmsclient/util/task/DownloadTask/ (JILjava/lang/String;Lnet/minecraft/client/gui/screens/Screen;)V +MD: com/mojang/realmsclient/util/task/DownloadTask/m_90324_ (Z)V com/mojang/realmsclient/util/task/DownloadTask/lambda$run$0 (Z)V +MD: com/mojang/realmsclient/util/task/DownloadTask/run ()V com/mojang/realmsclient/util/task/DownloadTask/run ()V +MD: com/mojang/realmsclient/util/task/GetServerDetailsTask/ ()V com/mojang/realmsclient/util/task/GetServerDetailsTask/ ()V +MD: com/mojang/realmsclient/util/task/GetServerDetailsTask/ (Lcom/mojang/realmsclient/RealmsMainScreen;Lnet/minecraft/client/gui/screens/Screen;Lcom/mojang/realmsclient/dto/RealmsServer;Ljava/util/concurrent/locks/ReentrantLock;)V com/mojang/realmsclient/util/task/GetServerDetailsTask/ (Lcom/mojang/realmsclient/RealmsMainScreen;Lnet/minecraft/client/gui/screens/Screen;Lcom/mojang/realmsclient/dto/RealmsServer;Ljava/util/concurrent/locks/ReentrantLock;)V +MD: com/mojang/realmsclient/util/task/GetServerDetailsTask/m_167637_ (Lcom/mojang/realmsclient/dto/RealmsServerAddress;)Lcom/mojang/realmsclient/gui/screens/RealmsLongRunningMcoTaskScreen; com/mojang/realmsclient/util/task/GetServerDetailsTask/connectScreen (Lcom/mojang/realmsclient/dto/RealmsServerAddress;)Lcom/mojang/realmsclient/gui/screens/RealmsLongRunningMcoTaskScreen; +MD: com/mojang/realmsclient/util/task/GetServerDetailsTask/m_167639_ (Lcom/mojang/realmsclient/dto/RealmsServerAddress;Ljava/util/function/Function;)Lcom/mojang/realmsclient/gui/screens/RealmsLongConfirmationScreen; com/mojang/realmsclient/util/task/GetServerDetailsTask/resourcePackDownloadConfirmationScreen (Lcom/mojang/realmsclient/dto/RealmsServerAddress;Ljava/util/function/Function;)Lcom/mojang/realmsclient/gui/screens/RealmsLongConfirmationScreen; +MD: com/mojang/realmsclient/util/task/GetServerDetailsTask/m_167642_ (Lcom/mojang/realmsclient/dto/RealmsServerAddress;Ljava/util/function/Function;Z)V com/mojang/realmsclient/util/task/GetServerDetailsTask/lambda$resourcePackDownloadConfirmationScreen$2 (Lcom/mojang/realmsclient/dto/RealmsServerAddress;Ljava/util/function/Function;Z)V +MD: com/mojang/realmsclient/util/task/GetServerDetailsTask/m_167648_ (Ljava/util/function/Function;Lcom/mojang/realmsclient/dto/RealmsServerAddress;)V com/mojang/realmsclient/util/task/GetServerDetailsTask/lambda$resourcePackDownloadConfirmationScreen$0 (Ljava/util/function/Function;Lcom/mojang/realmsclient/dto/RealmsServerAddress;)V +MD: com/mojang/realmsclient/util/task/GetServerDetailsTask/m_167651_ (Lcom/mojang/realmsclient/dto/RealmsServerAddress;)Ljava/util/concurrent/CompletableFuture; com/mojang/realmsclient/util/task/GetServerDetailsTask/scheduleResourcePackDownload (Lcom/mojang/realmsclient/dto/RealmsServerAddress;)Ljava/util/concurrent/CompletableFuture; +MD: com/mojang/realmsclient/util/task/GetServerDetailsTask/m_167653_ ()Lcom/mojang/realmsclient/dto/RealmsServerAddress; com/mojang/realmsclient/util/task/GetServerDetailsTask/fetchServerAddress ()Lcom/mojang/realmsclient/dto/RealmsServerAddress; +MD: com/mojang/realmsclient/util/task/GetServerDetailsTask/m_287014_ (Lcom/mojang/realmsclient/dto/RealmsServerAddress;Ljava/lang/Throwable;)Ljava/lang/Void; com/mojang/realmsclient/util/task/GetServerDetailsTask/lambda$resourcePackDownloadConfirmationScreen$1 (Lcom/mojang/realmsclient/dto/RealmsServerAddress;Ljava/lang/Throwable;)Ljava/lang/Void; +MD: com/mojang/realmsclient/util/task/GetServerDetailsTask/run ()V com/mojang/realmsclient/util/task/GetServerDetailsTask/run ()V +MD: com/mojang/realmsclient/util/task/LongRunningTask/ ()V com/mojang/realmsclient/util/task/LongRunningTask/ ()V +MD: com/mojang/realmsclient/util/task/LongRunningTask/ ()V com/mojang/realmsclient/util/task/LongRunningTask/ ()V +MD: com/mojang/realmsclient/util/task/LongRunningTask/m_167655_ (J)V com/mojang/realmsclient/util/task/LongRunningTask/pause (J)V +MD: com/mojang/realmsclient/util/task/LongRunningTask/m_5519_ ()V com/mojang/realmsclient/util/task/LongRunningTask/tick ()V +MD: com/mojang/realmsclient/util/task/LongRunningTask/m_5520_ ()V com/mojang/realmsclient/util/task/LongRunningTask/abortTask ()V +MD: com/mojang/realmsclient/util/task/LongRunningTask/m_5673_ (Lnet/minecraft/network/chat/Component;)V com/mojang/realmsclient/util/task/LongRunningTask/error (Lnet/minecraft/network/chat/Component;)V +MD: com/mojang/realmsclient/util/task/LongRunningTask/m_90400_ (Lcom/mojang/realmsclient/gui/screens/RealmsLongRunningMcoTaskScreen;)V com/mojang/realmsclient/util/task/LongRunningTask/setScreen (Lcom/mojang/realmsclient/gui/screens/RealmsLongRunningMcoTaskScreen;)V +MD: com/mojang/realmsclient/util/task/LongRunningTask/m_90402_ (Lnet/minecraft/client/Minecraft;Lnet/minecraft/client/gui/screens/Screen;)V com/mojang/realmsclient/util/task/LongRunningTask/lambda$setScreen$0 (Lnet/minecraft/client/Minecraft;Lnet/minecraft/client/gui/screens/Screen;)V +MD: com/mojang/realmsclient/util/task/LongRunningTask/m_90405_ (Lnet/minecraft/client/gui/screens/Screen;)V com/mojang/realmsclient/util/task/LongRunningTask/setScreen (Lnet/minecraft/client/gui/screens/Screen;)V +MD: com/mojang/realmsclient/util/task/LongRunningTask/m_90409_ (Lnet/minecraft/network/chat/Component;)V com/mojang/realmsclient/util/task/LongRunningTask/setTitle (Lnet/minecraft/network/chat/Component;)V +MD: com/mojang/realmsclient/util/task/LongRunningTask/m_90411_ ()Z com/mojang/realmsclient/util/task/LongRunningTask/aborted ()Z +MD: com/mojang/realmsclient/util/task/LongRunningTask/m_90412_ ()V com/mojang/realmsclient/util/task/LongRunningTask/init ()V +MD: com/mojang/realmsclient/util/task/OpenServerTask/ ()V com/mojang/realmsclient/util/task/OpenServerTask/ ()V +MD: com/mojang/realmsclient/util/task/OpenServerTask/ (Lcom/mojang/realmsclient/dto/RealmsServer;Lnet/minecraft/client/gui/screens/Screen;Lcom/mojang/realmsclient/RealmsMainScreen;ZLnet/minecraft/client/Minecraft;)V com/mojang/realmsclient/util/task/OpenServerTask/ (Lcom/mojang/realmsclient/dto/RealmsServer;Lnet/minecraft/client/gui/screens/Screen;Lcom/mojang/realmsclient/RealmsMainScreen;ZLnet/minecraft/client/Minecraft;)V +MD: com/mojang/realmsclient/util/task/OpenServerTask/m_181349_ ()V com/mojang/realmsclient/util/task/OpenServerTask/lambda$run$0 ()V +MD: com/mojang/realmsclient/util/task/OpenServerTask/run ()V com/mojang/realmsclient/util/task/OpenServerTask/run ()V +MD: com/mojang/realmsclient/util/task/ResettingGeneratedWorldTask/ (Lcom/mojang/realmsclient/util/WorldGenerationInfo;JLnet/minecraft/network/chat/Component;Ljava/lang/Runnable;)V com/mojang/realmsclient/util/task/ResettingGeneratedWorldTask/ (Lcom/mojang/realmsclient/util/WorldGenerationInfo;JLnet/minecraft/network/chat/Component;Ljava/lang/Runnable;)V +MD: com/mojang/realmsclient/util/task/ResettingGeneratedWorldTask/m_142381_ (Lcom/mojang/realmsclient/client/RealmsClient;J)V com/mojang/realmsclient/util/task/ResettingGeneratedWorldTask/sendResetRequest (Lcom/mojang/realmsclient/client/RealmsClient;J)V +MD: com/mojang/realmsclient/util/task/ResettingTemplateWorldTask/ (Lcom/mojang/realmsclient/dto/WorldTemplate;JLnet/minecraft/network/chat/Component;Ljava/lang/Runnable;)V com/mojang/realmsclient/util/task/ResettingTemplateWorldTask/ (Lcom/mojang/realmsclient/dto/WorldTemplate;JLnet/minecraft/network/chat/Component;Ljava/lang/Runnable;)V +MD: com/mojang/realmsclient/util/task/ResettingTemplateWorldTask/m_142381_ (Lcom/mojang/realmsclient/client/RealmsClient;J)V com/mojang/realmsclient/util/task/ResettingTemplateWorldTask/sendResetRequest (Lcom/mojang/realmsclient/client/RealmsClient;J)V +MD: com/mojang/realmsclient/util/task/ResettingWorldTask/ ()V com/mojang/realmsclient/util/task/ResettingWorldTask/ ()V +MD: com/mojang/realmsclient/util/task/ResettingWorldTask/ (JLnet/minecraft/network/chat/Component;Ljava/lang/Runnable;)V com/mojang/realmsclient/util/task/ResettingWorldTask/ (JLnet/minecraft/network/chat/Component;Ljava/lang/Runnable;)V +MD: com/mojang/realmsclient/util/task/ResettingWorldTask/m_142381_ (Lcom/mojang/realmsclient/client/RealmsClient;J)V com/mojang/realmsclient/util/task/ResettingWorldTask/sendResetRequest (Lcom/mojang/realmsclient/client/RealmsClient;J)V +MD: com/mojang/realmsclient/util/task/ResettingWorldTask/run ()V com/mojang/realmsclient/util/task/ResettingWorldTask/run ()V +MD: com/mojang/realmsclient/util/task/RestoreTask/ ()V com/mojang/realmsclient/util/task/RestoreTask/ ()V +MD: com/mojang/realmsclient/util/task/RestoreTask/ (Lcom/mojang/realmsclient/dto/Backup;JLcom/mojang/realmsclient/gui/screens/RealmsConfigureWorldScreen;)V com/mojang/realmsclient/util/task/RestoreTask/ (Lcom/mojang/realmsclient/dto/Backup;JLcom/mojang/realmsclient/gui/screens/RealmsConfigureWorldScreen;)V +MD: com/mojang/realmsclient/util/task/RestoreTask/run ()V com/mojang/realmsclient/util/task/RestoreTask/run ()V +MD: com/mojang/realmsclient/util/task/SwitchMinigameTask/ ()V com/mojang/realmsclient/util/task/SwitchMinigameTask/ ()V +MD: com/mojang/realmsclient/util/task/SwitchMinigameTask/ (JLcom/mojang/realmsclient/dto/WorldTemplate;Lcom/mojang/realmsclient/gui/screens/RealmsConfigureWorldScreen;)V com/mojang/realmsclient/util/task/SwitchMinigameTask/ (JLcom/mojang/realmsclient/dto/WorldTemplate;Lcom/mojang/realmsclient/gui/screens/RealmsConfigureWorldScreen;)V +MD: com/mojang/realmsclient/util/task/SwitchMinigameTask/run ()V com/mojang/realmsclient/util/task/SwitchMinigameTask/run ()V +MD: com/mojang/realmsclient/util/task/SwitchSlotTask/ ()V com/mojang/realmsclient/util/task/SwitchSlotTask/ ()V +MD: com/mojang/realmsclient/util/task/SwitchSlotTask/ (JILjava/lang/Runnable;)V com/mojang/realmsclient/util/task/SwitchSlotTask/ (JILjava/lang/Runnable;)V +MD: com/mojang/realmsclient/util/task/SwitchSlotTask/run ()V com/mojang/realmsclient/util/task/SwitchSlotTask/run ()V +MD: com/mojang/realmsclient/util/task/WorldCreationTask/ ()V com/mojang/realmsclient/util/task/WorldCreationTask/ ()V +MD: com/mojang/realmsclient/util/task/WorldCreationTask/ (JLjava/lang/String;Ljava/lang/String;Lnet/minecraft/client/gui/screens/Screen;)V com/mojang/realmsclient/util/task/WorldCreationTask/ (JLjava/lang/String;Ljava/lang/String;Lnet/minecraft/client/gui/screens/Screen;)V +MD: com/mojang/realmsclient/util/task/WorldCreationTask/run ()V com/mojang/realmsclient/util/task/WorldCreationTask/run ()V +MD: net/minecraft/BlockUtil/ ()V net/minecraft/BlockUtil/ ()V +MD: net/minecraft/BlockUtil/m_124334_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Direction$Axis;ILnet/minecraft/core/Direction$Axis;ILjava/util/function/Predicate;)Lnet/minecraft/BlockUtil$FoundRectangle; net/minecraft/BlockUtil/getLargestRectangleAround (Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Direction$Axis;ILnet/minecraft/core/Direction$Axis;ILjava/util/function/Predicate;)Lnet/minecraft/BlockUtil$FoundRectangle; +MD: net/minecraft/BlockUtil/m_124341_ (Ljava/util/function/Predicate;Lnet/minecraft/core/BlockPos$MutableBlockPos;Lnet/minecraft/core/Direction;I)I net/minecraft/BlockUtil/getLimit (Ljava/util/function/Predicate;Lnet/minecraft/core/BlockPos$MutableBlockPos;Lnet/minecraft/core/Direction;I)I +MD: net/minecraft/BlockUtil/m_124346_ ([I)Lcom/mojang/datafixers/util/Pair; net/minecraft/BlockUtil/getMaxRectangleLocation ([I)Lcom/mojang/datafixers/util/Pair; +MD: net/minecraft/BlockUtil/m_177845_ (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/Block;Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/block/Block;)Ljava/util/Optional; net/minecraft/BlockUtil/getTopConnectedBlock (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/Block;Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/block/Block;)Ljava/util/Optional; +MD: net/minecraft/BlockUtil$FoundRectangle/ (Lnet/minecraft/core/BlockPos;II)V net/minecraft/BlockUtil$FoundRectangle/ (Lnet/minecraft/core/BlockPos;II)V +MD: net/minecraft/BlockUtil$IntBounds/ (II)V net/minecraft/BlockUtil$IntBounds/ (II)V +MD: net/minecraft/BlockUtil$IntBounds/toString ()Ljava/lang/String; net/minecraft/BlockUtil$IntBounds/toString ()Ljava/lang/String; +MD: net/minecraft/CharPredicate/m_125854_ (C)Z net/minecraft/CharPredicate/test (C)Z +MD: net/minecraft/CharPredicate/m_178283_ ()Lnet/minecraft/CharPredicate; net/minecraft/CharPredicate/negate ()Lnet/minecraft/CharPredicate; +MD: net/minecraft/CharPredicate/m_178284_ (C)Z net/minecraft/CharPredicate/lambda$negate$1 (C)Z +MD: net/minecraft/CharPredicate/m_178286_ (Lnet/minecraft/CharPredicate;)Lnet/minecraft/CharPredicate; net/minecraft/CharPredicate/and (Lnet/minecraft/CharPredicate;)Lnet/minecraft/CharPredicate; +MD: net/minecraft/CharPredicate/m_178288_ (Lnet/minecraft/CharPredicate;C)Z net/minecraft/CharPredicate/lambda$or$2 (Lnet/minecraft/CharPredicate;C)Z +MD: net/minecraft/CharPredicate/m_178291_ (Lnet/minecraft/CharPredicate;)Lnet/minecraft/CharPredicate; net/minecraft/CharPredicate/or (Lnet/minecraft/CharPredicate;)Lnet/minecraft/CharPredicate; +MD: net/minecraft/CharPredicate/m_178293_ (Lnet/minecraft/CharPredicate;C)Z net/minecraft/CharPredicate/lambda$and$0 (Lnet/minecraft/CharPredicate;C)Z +MD: net/minecraft/ChatFormatting/ ()V net/minecraft/ChatFormatting/ ()V +MD: net/minecraft/ChatFormatting/ (Ljava/lang/String;ILjava/lang/String;CILjava/lang/Integer;)V net/minecraft/ChatFormatting/ (Ljava/lang/String;ILjava/lang/String;CILjava/lang/Integer;)V +MD: net/minecraft/ChatFormatting/ (Ljava/lang/String;ILjava/lang/String;CZ)V net/minecraft/ChatFormatting/ (Ljava/lang/String;ILjava/lang/String;CZ)V +MD: net/minecraft/ChatFormatting/ (Ljava/lang/String;ILjava/lang/String;CZILjava/lang/Integer;)V net/minecraft/ChatFormatting/ (Ljava/lang/String;ILjava/lang/String;CZILjava/lang/Integer;)V +MD: net/minecraft/ChatFormatting/m_126645_ (C)Lnet/minecraft/ChatFormatting; net/minecraft/ChatFormatting/getByCode (C)Lnet/minecraft/ChatFormatting; +MD: net/minecraft/ChatFormatting/m_126647_ (I)Lnet/minecraft/ChatFormatting; net/minecraft/ChatFormatting/getById (I)Lnet/minecraft/ChatFormatting; +MD: net/minecraft/ChatFormatting/m_126649_ (Ljava/lang/String;)Ljava/lang/String; net/minecraft/ChatFormatting/stripFormatting (Ljava/lang/String;)Ljava/lang/String; +MD: net/minecraft/ChatFormatting/m_126651_ (Lnet/minecraft/ChatFormatting;)Lnet/minecraft/ChatFormatting; net/minecraft/ChatFormatting/lambda$static$1 (Lnet/minecraft/ChatFormatting;)Lnet/minecraft/ChatFormatting; +MD: net/minecraft/ChatFormatting/m_126653_ (ZZ)Ljava/util/Collection; net/minecraft/ChatFormatting/getNames (ZZ)Ljava/util/Collection; +MD: net/minecraft/ChatFormatting/m_126656_ ()I net/minecraft/ChatFormatting/getId ()I +MD: net/minecraft/ChatFormatting/m_126657_ (Ljava/lang/String;)Lnet/minecraft/ChatFormatting; net/minecraft/ChatFormatting/getByName (Ljava/lang/String;)Lnet/minecraft/ChatFormatting; +MD: net/minecraft/ChatFormatting/m_126659_ (Lnet/minecraft/ChatFormatting;)Ljava/lang/String; net/minecraft/ChatFormatting/lambda$static$0 (Lnet/minecraft/ChatFormatting;)Ljava/lang/String; +MD: net/minecraft/ChatFormatting/m_126661_ ()Z net/minecraft/ChatFormatting/isFormat ()Z +MD: net/minecraft/ChatFormatting/m_126662_ (Ljava/lang/String;)Ljava/lang/String; net/minecraft/ChatFormatting/cleanName (Ljava/lang/String;)Ljava/lang/String; +MD: net/minecraft/ChatFormatting/m_126664_ ()Z net/minecraft/ChatFormatting/isColor ()Z +MD: net/minecraft/ChatFormatting/m_126665_ ()Ljava/lang/Integer; net/minecraft/ChatFormatting/getColor ()Ljava/lang/Integer; +MD: net/minecraft/ChatFormatting/m_126666_ ()Ljava/lang/String; net/minecraft/ChatFormatting/getName ()Ljava/lang/String; +MD: net/minecraft/ChatFormatting/m_178510_ ()C net/minecraft/ChatFormatting/getChar ()C +MD: net/minecraft/ChatFormatting/m_178511_ ()[Lnet/minecraft/ChatFormatting; net/minecraft/ChatFormatting/$values ()[Lnet/minecraft/ChatFormatting; +MD: net/minecraft/ChatFormatting/m_7912_ ()Ljava/lang/String; net/minecraft/ChatFormatting/getSerializedName ()Ljava/lang/String; +MD: net/minecraft/ChatFormatting/toString ()Ljava/lang/String; net/minecraft/ChatFormatting/toString ()Ljava/lang/String; +MD: net/minecraft/ChatFormatting/valueOf (Ljava/lang/String;)Lnet/minecraft/ChatFormatting; net/minecraft/ChatFormatting/valueOf (Ljava/lang/String;)Lnet/minecraft/ChatFormatting; +MD: net/minecraft/ChatFormatting/values ()[Lnet/minecraft/ChatFormatting; net/minecraft/ChatFormatting/values ()[Lnet/minecraft/ChatFormatting; +MD: net/minecraft/CrashReport/ ()V net/minecraft/CrashReport/ ()V +MD: net/minecraft/CrashReport/ (Ljava/lang/String;Ljava/lang/Throwable;)V net/minecraft/CrashReport/ (Ljava/lang/String;Ljava/lang/Throwable;)V +MD: net/minecraft/CrashReport/m_127511_ ()Ljava/lang/String; net/minecraft/CrashReport/getTitle ()Ljava/lang/String; +MD: net/minecraft/CrashReport/m_127512_ (Ljava/io/File;)Z net/minecraft/CrashReport/saveToFile (Ljava/io/File;)Z +MD: net/minecraft/CrashReport/m_127514_ (Ljava/lang/String;)Lnet/minecraft/CrashReportCategory; net/minecraft/CrashReport/addCategory (Ljava/lang/String;)Lnet/minecraft/CrashReportCategory; +MD: net/minecraft/CrashReport/m_127516_ (Ljava/lang/String;I)Lnet/minecraft/CrashReportCategory; net/minecraft/CrashReport/addCategory (Ljava/lang/String;I)Lnet/minecraft/CrashReportCategory; +MD: net/minecraft/CrashReport/m_127519_ (Ljava/lang/StringBuilder;)V net/minecraft/CrashReport/getDetails (Ljava/lang/StringBuilder;)V +MD: net/minecraft/CrashReport/m_127521_ (Ljava/lang/Throwable;Ljava/lang/String;)Lnet/minecraft/CrashReport; net/minecraft/CrashReport/forThrowable (Ljava/lang/Throwable;Ljava/lang/String;)Lnet/minecraft/CrashReport; +MD: net/minecraft/CrashReport/m_127524_ ()Ljava/lang/Throwable; net/minecraft/CrashReport/getException ()Ljava/lang/Throwable; +MD: net/minecraft/CrashReport/m_127525_ ()Ljava/lang/String; net/minecraft/CrashReport/getExceptionMessage ()Ljava/lang/String; +MD: net/minecraft/CrashReport/m_127526_ ()Ljava/lang/String; net/minecraft/CrashReport/getFriendlyReport ()Ljava/lang/String; +MD: net/minecraft/CrashReport/m_127527_ ()Ljava/io/File; net/minecraft/CrashReport/getSaveFile ()Ljava/io/File; +MD: net/minecraft/CrashReport/m_127529_ ()V net/minecraft/CrashReport/preload ()V +MD: net/minecraft/CrashReport/m_127531_ ()Ljava/lang/String; net/minecraft/CrashReport/getErrorComment ()Ljava/lang/String; +MD: net/minecraft/CrashReport/m_178625_ ()Ljava/lang/String; net/minecraft/CrashReport/getDetails ()Ljava/lang/String; +MD: net/minecraft/CrashReport/m_178626_ ()Lnet/minecraft/SystemReport; net/minecraft/CrashReport/getSystemReport ()Lnet/minecraft/SystemReport; +MD: net/minecraft/CrashReportCategory/ (Ljava/lang/String;)V net/minecraft/CrashReportCategory/ (Ljava/lang/String;)V +MD: net/minecraft/CrashReportCategory/m_128143_ ()[Ljava/lang/StackTraceElement; net/minecraft/CrashReportCategory/getStacktrace ()[Ljava/lang/StackTraceElement; +MD: net/minecraft/CrashReportCategory/m_128148_ (I)I net/minecraft/CrashReportCategory/fillInStackTrace (I)I +MD: net/minecraft/CrashReportCategory/m_128156_ (Ljava/lang/StackTraceElement;Ljava/lang/StackTraceElement;)Z net/minecraft/CrashReportCategory/validateStackTrace (Ljava/lang/StackTraceElement;Ljava/lang/StackTraceElement;)Z +MD: net/minecraft/CrashReportCategory/m_128159_ (Ljava/lang/String;Ljava/lang/Object;)Lnet/minecraft/CrashReportCategory; net/minecraft/CrashReportCategory/setDetail (Ljava/lang/String;Ljava/lang/Object;)Lnet/minecraft/CrashReportCategory; +MD: net/minecraft/CrashReportCategory/m_128162_ (Ljava/lang/String;Ljava/lang/Throwable;)V net/minecraft/CrashReportCategory/setDetailError (Ljava/lang/String;Ljava/lang/Throwable;)V +MD: net/minecraft/CrashReportCategory/m_128165_ (Ljava/lang/String;Lnet/minecraft/CrashReportDetail;)Lnet/minecraft/CrashReportCategory; net/minecraft/CrashReportCategory/setDetail (Ljava/lang/String;Lnet/minecraft/CrashReportDetail;)Lnet/minecraft/CrashReportCategory; +MD: net/minecraft/CrashReportCategory/m_128168_ (Ljava/lang/StringBuilder;)V net/minecraft/CrashReportCategory/getDetails (Ljava/lang/StringBuilder;)V +MD: net/minecraft/CrashReportCategory/m_128174_ (I)V net/minecraft/CrashReportCategory/trimStacktrace (I)V +MD: net/minecraft/CrashReportCategory/m_178937_ (Lnet/minecraft/world/level/LevelHeightAccessor;DDD)Ljava/lang/String; net/minecraft/CrashReportCategory/formatLocation (Lnet/minecraft/world/level/LevelHeightAccessor;DDD)Ljava/lang/String; +MD: net/minecraft/CrashReportCategory/m_178942_ (Lnet/minecraft/world/level/LevelHeightAccessor;III)Ljava/lang/String; net/minecraft/CrashReportCategory/formatLocation (Lnet/minecraft/world/level/LevelHeightAccessor;III)Ljava/lang/String; +MD: net/minecraft/CrashReportCategory/m_178947_ (Lnet/minecraft/world/level/LevelHeightAccessor;Lnet/minecraft/core/BlockPos;)Ljava/lang/String; net/minecraft/CrashReportCategory/formatLocation (Lnet/minecraft/world/level/LevelHeightAccessor;Lnet/minecraft/core/BlockPos;)Ljava/lang/String; +MD: net/minecraft/CrashReportCategory/m_178950_ (Lnet/minecraft/CrashReportCategory;Lnet/minecraft/world/level/LevelHeightAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V net/minecraft/CrashReportCategory/populateBlockDetails (Lnet/minecraft/CrashReportCategory;Lnet/minecraft/world/level/LevelHeightAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V +MD: net/minecraft/CrashReportCategory/m_178955_ (Lnet/minecraft/world/level/LevelHeightAccessor;Lnet/minecraft/core/BlockPos;)Ljava/lang/String; net/minecraft/CrashReportCategory/lambda$populateBlockDetails$0 (Lnet/minecraft/world/level/LevelHeightAccessor;Lnet/minecraft/core/BlockPos;)Ljava/lang/String; +MD: net/minecraft/CrashReportCategory$Entry/ (Ljava/lang/String;Ljava/lang/Object;)V net/minecraft/CrashReportCategory$Entry/ (Ljava/lang/String;Ljava/lang/Object;)V +MD: net/minecraft/CrashReportCategory$Entry/m_128183_ ()Ljava/lang/String; net/minecraft/CrashReportCategory$Entry/getKey ()Ljava/lang/String; +MD: net/minecraft/CrashReportCategory$Entry/m_128184_ ()Ljava/lang/String; net/minecraft/CrashReportCategory$Entry/getValue ()Ljava/lang/String; +MD: net/minecraft/DefaultUncaughtExceptionHandler/ (Lorg/slf4j/Logger;)V net/minecraft/DefaultUncaughtExceptionHandler/ (Lorg/slf4j/Logger;)V +MD: net/minecraft/DefaultUncaughtExceptionHandler/uncaughtException (Ljava/lang/Thread;Ljava/lang/Throwable;)V net/minecraft/DefaultUncaughtExceptionHandler/uncaughtException (Ljava/lang/Thread;Ljava/lang/Throwable;)V +MD: net/minecraft/DefaultUncaughtExceptionHandlerWithName/ (Lorg/slf4j/Logger;)V net/minecraft/DefaultUncaughtExceptionHandlerWithName/ (Lorg/slf4j/Logger;)V +MD: net/minecraft/DefaultUncaughtExceptionHandlerWithName/uncaughtException (Ljava/lang/Thread;Ljava/lang/Throwable;)V net/minecraft/DefaultUncaughtExceptionHandlerWithName/uncaughtException (Ljava/lang/Thread;Ljava/lang/Throwable;)V +MD: net/minecraft/DetectedVersion/ ()V net/minecraft/DetectedVersion/ ()V +MD: net/minecraft/DetectedVersion/ ()V net/minecraft/DetectedVersion/ ()V +MD: net/minecraft/DetectedVersion/ (Lcom/google/gson/JsonObject;)V net/minecraft/DetectedVersion/ (Lcom/google/gson/JsonObject;)V +MD: net/minecraft/DetectedVersion/m_132491_ ()Ljava/util/Date; net/minecraft/DetectedVersion/getBuildTime ()Ljava/util/Date; +MD: net/minecraft/DetectedVersion/m_132492_ ()Ljava/lang/String; net/minecraft/DetectedVersion/getId ()Ljava/lang/String; +MD: net/minecraft/DetectedVersion/m_132493_ ()Ljava/lang/String; net/minecraft/DetectedVersion/getName ()Ljava/lang/String; +MD: net/minecraft/DetectedVersion/m_132495_ ()I net/minecraft/DetectedVersion/getProtocolVersion ()I +MD: net/minecraft/DetectedVersion/m_132498_ ()Z net/minecraft/DetectedVersion/isStable ()Z +MD: net/minecraft/DetectedVersion/m_183476_ ()Lnet/minecraft/world/level/storage/DataVersion; net/minecraft/DetectedVersion/getDataVersion ()Lnet/minecraft/world/level/storage/DataVersion; +MD: net/minecraft/DetectedVersion/m_195834_ ()Lnet/minecraft/WorldVersion; net/minecraft/DetectedVersion/tryDetectVersion ()Lnet/minecraft/WorldVersion; +MD: net/minecraft/DetectedVersion/m_264084_ (Lnet/minecraft/server/packs/PackType;)I net/minecraft/DetectedVersion/getPackVersion (Lnet/minecraft/server/packs/PackType;)I +MD: net/minecraft/FileUtil/ ()V net/minecraft/FileUtil/ ()V +MD: net/minecraft/FileUtil/ ()V net/minecraft/FileUtil/ ()V +MD: net/minecraft/FileUtil/m_133728_ (Ljava/nio/file/Path;)Z net/minecraft/FileUtil/isPathNormalized (Ljava/nio/file/Path;)Z +MD: net/minecraft/FileUtil/m_133730_ (Ljava/nio/file/Path;Ljava/lang/String;Ljava/lang/String;)Ljava/lang/String; net/minecraft/FileUtil/findAvailableName (Ljava/nio/file/Path;Ljava/lang/String;Ljava/lang/String;)Ljava/lang/String; +MD: net/minecraft/FileUtil/m_133734_ (Ljava/nio/file/Path;)Z net/minecraft/FileUtil/isPathPortable (Ljava/nio/file/Path;)Z +MD: net/minecraft/FileUtil/m_133736_ (Ljava/nio/file/Path;Ljava/lang/String;Ljava/lang/String;)Ljava/nio/file/Path; net/minecraft/FileUtil/createPathToResource (Ljava/nio/file/Path;Ljava/lang/String;Ljava/lang/String;)Ljava/nio/file/Path; +MD: net/minecraft/FileUtil/m_179922_ (Ljava/lang/String;)Ljava/lang/String; net/minecraft/FileUtil/getFullResourcePath (Ljava/lang/String;)Ljava/lang/String; +MD: net/minecraft/FileUtil/m_179924_ (Ljava/lang/String;)Ljava/lang/String; net/minecraft/FileUtil/normalizeResourcePath (Ljava/lang/String;)Ljava/lang/String; +MD: net/minecraft/FileUtil/m_245247_ (Ljava/nio/file/Path;Ljava/util/List;)Ljava/nio/file/Path; net/minecraft/FileUtil/resolvePath (Ljava/nio/file/Path;Ljava/util/List;)Ljava/nio/file/Path; +MD: net/minecraft/FileUtil/m_245411_ ([Ljava/lang/String;)V net/minecraft/FileUtil/validatePath ([Ljava/lang/String;)V +MD: net/minecraft/FileUtil/m_245538_ (Ljava/lang/String;)Lcom/mojang/serialization/DataResult; net/minecraft/FileUtil/decomposePath (Ljava/lang/String;)Lcom/mojang/serialization/DataResult; +MD: net/minecraft/FileUtil/m_245636_ (Ljava/lang/String;)Z net/minecraft/FileUtil/isValidStrictPathSegment (Ljava/lang/String;)Z +MD: net/minecraft/FileUtil/m_257659_ (Ljava/nio/file/Path;)V net/minecraft/FileUtil/createDirectoriesSafe (Ljava/nio/file/Path;)V +MD: net/minecraft/FileUtil/m_274352_ (Ljava/lang/String;Ljava/lang/String;)Ljava/lang/String; net/minecraft/FileUtil/lambda$decomposePath$3 (Ljava/lang/String;Ljava/lang/String;)Ljava/lang/String; +MD: net/minecraft/FileUtil/m_274372_ (Ljava/lang/String;)Ljava/lang/String; net/minecraft/FileUtil/lambda$decomposePath$1 (Ljava/lang/String;)Ljava/lang/String; +MD: net/minecraft/FileUtil/m_274428_ (Ljava/lang/String;)Ljava/lang/String; net/minecraft/FileUtil/lambda$decomposePath$0 (Ljava/lang/String;)Ljava/lang/String; +MD: net/minecraft/FileUtil/m_274618_ (Ljava/lang/String;Ljava/lang/String;)Ljava/lang/String; net/minecraft/FileUtil/lambda$decomposePath$2 (Ljava/lang/String;Ljava/lang/String;)Ljava/lang/String; +MD: net/minecraft/Optionull/ ()V net/minecraft/Optionull/ ()V +MD: net/minecraft/Optionull/m_269165_ ([S)Z net/minecraft/Optionull/isNullOrEmpty ([S)Z +MD: net/minecraft/Optionull/m_269216_ ([I)Z net/minecraft/Optionull/isNullOrEmpty ([I)Z +MD: net/minecraft/Optionull/m_269248_ (Ljava/util/Collection;Ljava/lang/Object;)Ljava/lang/Object; net/minecraft/Optionull/firstOrDefault (Ljava/util/Collection;Ljava/lang/Object;)Ljava/lang/Object; +MD: net/minecraft/Optionull/m_269262_ (Ljava/util/Collection;Ljava/util/function/Supplier;)Ljava/lang/Object; net/minecraft/Optionull/firstOrElse (Ljava/util/Collection;Ljava/util/function/Supplier;)Ljava/lang/Object; +MD: net/minecraft/Optionull/m_269263_ ([D)Z net/minecraft/Optionull/isNullOrEmpty ([D)Z +MD: net/minecraft/Optionull/m_269278_ (Ljava/lang/Object;Ljava/util/function/Function;Ljava/lang/Object;)Ljava/lang/Object; net/minecraft/Optionull/mapOrDefault (Ljava/lang/Object;Ljava/util/function/Function;Ljava/lang/Object;)Ljava/lang/Object; +MD: net/minecraft/Optionull/m_269359_ (Ljava/util/Collection;)Ljava/lang/Object; net/minecraft/Optionull/first (Ljava/util/Collection;)Ljava/lang/Object; +MD: net/minecraft/Optionull/m_269382_ (Ljava/lang/Object;Ljava/util/function/Function;)Ljava/lang/Object; net/minecraft/Optionull/map (Ljava/lang/Object;Ljava/util/function/Function;)Ljava/lang/Object; +MD: net/minecraft/Optionull/m_269432_ ([Z)Z net/minecraft/Optionull/isNullOrEmpty ([Z)Z +MD: net/minecraft/Optionull/m_269433_ ([J)Z net/minecraft/Optionull/isNullOrEmpty ([J)Z +MD: net/minecraft/Optionull/m_269501_ ([F)Z net/minecraft/Optionull/isNullOrEmpty ([F)Z +MD: net/minecraft/Optionull/m_269516_ ([C)Z net/minecraft/Optionull/isNullOrEmpty ([C)Z +MD: net/minecraft/Optionull/m_269543_ (Ljava/lang/Object;Ljava/util/function/Function;Ljava/util/function/Supplier;)Ljava/lang/Object; net/minecraft/Optionull/mapOrElse (Ljava/lang/Object;Ljava/util/function/Function;Ljava/util/function/Supplier;)Ljava/lang/Object; +MD: net/minecraft/Optionull/m_269589_ ([B)Z net/minecraft/Optionull/isNullOrEmpty ([B)Z +MD: net/minecraft/Optionull/m_269596_ ([Ljava/lang/Object;)Z net/minecraft/Optionull/isNullOrEmpty ([Ljava/lang/Object;)Z +MD: net/minecraft/ReportedException/ (Lnet/minecraft/CrashReport;)V net/minecraft/ReportedException/ (Lnet/minecraft/CrashReport;)V +MD: net/minecraft/ReportedException/getCause ()Ljava/lang/Throwable; net/minecraft/ReportedException/getCause ()Ljava/lang/Throwable; +MD: net/minecraft/ReportedException/getMessage ()Ljava/lang/String; net/minecraft/ReportedException/getMessage ()Ljava/lang/String; +MD: net/minecraft/ReportedException/m_134761_ ()Lnet/minecraft/CrashReport; net/minecraft/ReportedException/getReport ()Lnet/minecraft/CrashReport; +MD: net/minecraft/ResourceLocationException/ (Ljava/lang/String;)V net/minecraft/ResourceLocationException/ (Ljava/lang/String;)V +MD: net/minecraft/ResourceLocationException/ (Ljava/lang/String;Ljava/lang/Throwable;)V net/minecraft/ResourceLocationException/ (Ljava/lang/String;Ljava/lang/Throwable;)V +MD: net/minecraft/SharedConstants/ ()V net/minecraft/SharedConstants/ ()V +MD: net/minecraft/SharedConstants/ ()V net/minecraft/SharedConstants/ ()V +MD: net/minecraft/SharedConstants/m_136188_ (C)Z net/minecraft/SharedConstants/isAllowedChatCharacter (C)Z +MD: net/minecraft/SharedConstants/m_136190_ (Ljava/lang/String;)Ljava/lang/String; net/minecraft/SharedConstants/filterText (Ljava/lang/String;)Ljava/lang/String; +MD: net/minecraft/SharedConstants/m_136192_ ()I net/minecraft/SharedConstants/getProtocolVersion ()I +MD: net/minecraft/SharedConstants/m_142977_ ()V net/minecraft/SharedConstants/tryDetectVersion ()V +MD: net/minecraft/SharedConstants/m_183705_ (Lnet/minecraft/WorldVersion;)V net/minecraft/SharedConstants/setVersion (Lnet/minecraft/WorldVersion;)V +MD: net/minecraft/SharedConstants/m_183707_ (Lnet/minecraft/world/level/ChunkPos;)Z net/minecraft/SharedConstants/debugVoidTerrain (Lnet/minecraft/world/level/ChunkPos;)Z +MD: net/minecraft/SharedConstants/m_183709_ ()Lnet/minecraft/WorldVersion; net/minecraft/SharedConstants/getCurrentVersion ()Lnet/minecraft/WorldVersion; +MD: net/minecraft/SharedConstants/m_214358_ ()V net/minecraft/SharedConstants/enableDataFixerOptimizations ()V +MD: net/minecraft/SharedConstants/m_239657_ (Ljava/lang/String;Z)Ljava/lang/String; net/minecraft/SharedConstants/filterText (Ljava/lang/String;Z)Ljava/lang/String; +MD: net/minecraft/SystemReport/ ()V net/minecraft/SystemReport/ ()V +MD: net/minecraft/SystemReport/ ()V net/minecraft/SystemReport/ ()V +MD: net/minecraft/SystemReport/m_143515_ ()Ljava/lang/String; net/minecraft/SystemReport/toLineSeparatedString ()Ljava/lang/String; +MD: net/minecraft/SystemReport/m_143516_ (Ljava/lang/String;Ljava/lang/Runnable;)V net/minecraft/SystemReport/ignoreErrors (Ljava/lang/String;Ljava/lang/Runnable;)V +MD: net/minecraft/SystemReport/m_143519_ (Ljava/lang/String;Ljava/lang/String;)V net/minecraft/SystemReport/setDetail (Ljava/lang/String;Ljava/lang/String;)V +MD: net/minecraft/SystemReport/m_143522_ (Ljava/lang/String;Ljava/util/function/Supplier;)V net/minecraft/SystemReport/setDetail (Ljava/lang/String;Ljava/util/function/Supplier;)V +MD: net/minecraft/SystemReport/m_143525_ (Ljava/lang/StringBuilder;)V net/minecraft/SystemReport/appendToCrashReportString (Ljava/lang/StringBuilder;)V +MD: net/minecraft/SystemReport/m_143527_ (Ljava/lang/StringBuilder;Ljava/lang/String;Ljava/lang/String;)V net/minecraft/SystemReport/lambda$appendToCrashReportString$20 (Ljava/lang/StringBuilder;Ljava/lang/String;Ljava/lang/String;)V +MD: net/minecraft/SystemReport/m_143531_ (Ljava/util/List;)V net/minecraft/SystemReport/putPhysicalMemory (Ljava/util/List;)V +MD: net/minecraft/SystemReport/m_143533_ (Ljava/util/Map$Entry;)Ljava/lang/String; net/minecraft/SystemReport/lambda$toLineSeparatedString$21 (Ljava/util/Map$Entry;)Ljava/lang/String; +MD: net/minecraft/SystemReport/m_143535_ (Loshi/SystemInfo;)V net/minecraft/SystemReport/putHardware (Loshi/SystemInfo;)V +MD: net/minecraft/SystemReport/m_143539_ (Loshi/hardware/CentralProcessor;)V net/minecraft/SystemReport/putProcessor (Loshi/hardware/CentralProcessor;)V +MD: net/minecraft/SystemReport/m_143541_ (Loshi/hardware/GlobalMemory;)V net/minecraft/SystemReport/putMemory (Loshi/hardware/GlobalMemory;)V +MD: net/minecraft/SystemReport/m_143545_ (Loshi/hardware/HardwareAbstractionLayer;)V net/minecraft/SystemReport/lambda$putHardware$6 (Loshi/hardware/HardwareAbstractionLayer;)V +MD: net/minecraft/SystemReport/m_143549_ (Loshi/hardware/VirtualMemory;)V net/minecraft/SystemReport/putVirtualMemory (Loshi/hardware/VirtualMemory;)V +MD: net/minecraft/SystemReport/m_143552_ (Ljava/util/List;)V net/minecraft/SystemReport/putGraphics (Ljava/util/List;)V +MD: net/minecraft/SystemReport/m_143554_ (Loshi/hardware/CentralProcessor;)Ljava/lang/String; net/minecraft/SystemReport/lambda$putProcessor$19 (Loshi/hardware/CentralProcessor;)Ljava/lang/String; +MD: net/minecraft/SystemReport/m_143556_ (Loshi/hardware/GlobalMemory;)V net/minecraft/SystemReport/lambda$putMemory$14 (Loshi/hardware/GlobalMemory;)V +MD: net/minecraft/SystemReport/m_143558_ (Loshi/hardware/HardwareAbstractionLayer;)V net/minecraft/SystemReport/lambda$putHardware$5 (Loshi/hardware/HardwareAbstractionLayer;)V +MD: net/minecraft/SystemReport/m_143564_ ()V net/minecraft/SystemReport/lambda$new$2 ()V +MD: net/minecraft/SystemReport/m_143565_ (Loshi/hardware/CentralProcessor;)Ljava/lang/String; net/minecraft/SystemReport/lambda$putProcessor$18 (Loshi/hardware/CentralProcessor;)Ljava/lang/String; +MD: net/minecraft/SystemReport/m_143567_ (Loshi/hardware/GlobalMemory;)V net/minecraft/SystemReport/lambda$putMemory$13 (Loshi/hardware/GlobalMemory;)V +MD: net/minecraft/SystemReport/m_143569_ (Loshi/hardware/HardwareAbstractionLayer;)V net/minecraft/SystemReport/lambda$putHardware$4 (Loshi/hardware/HardwareAbstractionLayer;)V +MD: net/minecraft/SystemReport/m_143573_ ()Ljava/lang/String; net/minecraft/SystemReport/lambda$new$1 ()Ljava/lang/String; +MD: net/minecraft/SystemReport/m_143574_ (Loshi/hardware/CentralProcessor;)Ljava/lang/String; net/minecraft/SystemReport/lambda$putProcessor$17 (Loshi/hardware/CentralProcessor;)Ljava/lang/String; +MD: net/minecraft/SystemReport/m_143578_ ()Ljava/lang/String; net/minecraft/SystemReport/lambda$new$0 ()Ljava/lang/String; +MD: net/minecraft/SystemReport/m_241706_ (Loshi/hardware/CentralProcessor$ProcessorIdentifier;)Ljava/lang/String; net/minecraft/SystemReport/lambda$putProcessor$16 (Loshi/hardware/CentralProcessor$ProcessorIdentifier;)Ljava/lang/String; +MD: net/minecraft/SystemReport/m_241707_ (Loshi/hardware/PhysicalMemory;)Ljava/lang/String; net/minecraft/SystemReport/lambda$putPhysicalMemory$7 (Loshi/hardware/PhysicalMemory;)Ljava/lang/String; +MD: net/minecraft/SystemReport/m_241708_ (Loshi/hardware/VirtualMemory;)Ljava/lang/String; net/minecraft/SystemReport/lambda$putVirtualMemory$9 (Loshi/hardware/VirtualMemory;)Ljava/lang/String; +MD: net/minecraft/SystemReport/m_241709_ (Loshi/hardware/PhysicalMemory;)Ljava/lang/String; net/minecraft/SystemReport/lambda$putPhysicalMemory$8 (Loshi/hardware/PhysicalMemory;)Ljava/lang/String; +MD: net/minecraft/SystemReport/m_241710_ (Loshi/hardware/VirtualMemory;)Ljava/lang/String; net/minecraft/SystemReport/lambda$putVirtualMemory$11 (Loshi/hardware/VirtualMemory;)Ljava/lang/String; +MD: net/minecraft/SystemReport/m_241711_ (Loshi/hardware/VirtualMemory;)Ljava/lang/String; net/minecraft/SystemReport/lambda$putVirtualMemory$12 (Loshi/hardware/VirtualMemory;)Ljava/lang/String; +MD: net/minecraft/SystemReport/m_241712_ (Loshi/hardware/VirtualMemory;)Ljava/lang/String; net/minecraft/SystemReport/lambda$putVirtualMemory$10 (Loshi/hardware/VirtualMemory;)Ljava/lang/String; +MD: net/minecraft/SystemReport/m_241713_ ()Ljava/lang/String; net/minecraft/SystemReport/lambda$new$3 ()Ljava/lang/String; +MD: net/minecraft/SystemReport/m_241714_ (Loshi/hardware/GraphicsCard;)Ljava/lang/String; net/minecraft/SystemReport/lambda$putGraphics$15 (Loshi/hardware/GraphicsCard;)Ljava/lang/String; +MD: net/minecraft/Util/ ()V net/minecraft/Util/ ()V +MD: net/minecraft/Util/ ()V net/minecraft/Util/ ()V +MD: net/minecraft/Util/m_137448_ ()Ljava/util/stream/Collector; net/minecraft/Util/toMap ()Ljava/util/stream/Collector; +MD: net/minecraft/Util/m_137449_ (ILjava/lang/String;[Ljava/util/function/BooleanSupplier;)Z net/minecraft/Util/runWithRetries (ILjava/lang/String;[Ljava/util/function/BooleanSupplier;)Z +MD: net/minecraft/Util/m_137453_ (Lnet/minecraft/world/level/block/state/properties/Property;Ljava/lang/Object;)Ljava/lang/String; net/minecraft/Util/getPropertyName (Lnet/minecraft/world/level/block/state/properties/Property;Ljava/lang/Object;)Ljava/lang/String; +MD: net/minecraft/Util/m_137456_ (Lcom/mojang/datafixers/DSL$TypeReference;Ljava/lang/String;)Lcom/mojang/datafixers/types/Type; net/minecraft/Util/fetchChoiceType (Lcom/mojang/datafixers/DSL$TypeReference;Ljava/lang/String;)Lcom/mojang/datafixers/types/Type; +MD: net/minecraft/Util/m_137462_ (Ljava/io/File;Ljava/io/File;Ljava/io/File;)V net/minecraft/Util/safeReplaceFile (Ljava/io/File;Ljava/io/File;Ljava/io/File;)V +MD: net/minecraft/Util/m_137466_ (Ljava/lang/Iterable;Ljava/lang/Object;)Ljava/lang/Object; net/minecraft/Util/findNextInIterable (Ljava/lang/Iterable;Ljava/lang/Object;)Ljava/lang/Object; +MD: net/minecraft/Util/m_137469_ (Ljava/lang/Object;Ljava/util/function/Consumer;)Ljava/lang/Object; net/minecraft/Util/make (Ljava/lang/Object;Ljava/util/function/Consumer;)Ljava/lang/Object; +MD: net/minecraft/Util/m_137474_ (Ljava/lang/Runnable;Ljava/util/function/Supplier;)Ljava/lang/Runnable; net/minecraft/Util/name (Ljava/lang/Runnable;Ljava/util/function/Supplier;)Ljava/lang/Runnable; +MD: net/minecraft/Util/m_137477_ (Ljava/lang/String;)Ljava/util/concurrent/ExecutorService; net/minecraft/Util/makeExecutor (Ljava/lang/String;)Ljava/util/concurrent/ExecutorService; +MD: net/minecraft/Util/m_137479_ (Ljava/lang/String;II)I net/minecraft/Util/offsetByCodepoints (Ljava/lang/String;II)I +MD: net/minecraft/Util/m_137483_ (Ljava/lang/String;Lnet/minecraft/CharPredicate;)Ljava/lang/String; net/minecraft/Util/sanitizeName (Ljava/lang/String;Lnet/minecraft/CharPredicate;)Ljava/lang/String; +MD: net/minecraft/Util/m_137489_ (Ljava/lang/String;Ljava/util/function/Consumer;)Ljava/util/function/Consumer; net/minecraft/Util/prefix (Ljava/lang/String;Ljava/util/function/Consumer;)Ljava/util/function/Consumer; +MD: net/minecraft/Util/m_137492_ (Ljava/lang/String;Lnet/minecraft/resources/ResourceLocation;)Ljava/lang/String; net/minecraft/Util/makeDescriptionId (Ljava/lang/String;Lnet/minecraft/resources/ResourceLocation;)Ljava/lang/String; +MD: net/minecraft/Util/m_137495_ (Ljava/lang/Thread;Ljava/lang/Throwable;)V net/minecraft/Util/onThreadException (Ljava/lang/Thread;Ljava/lang/Throwable;)V +MD: net/minecraft/Util/m_137500_ (Ljava/nio/file/Path;)Ljava/util/function/BooleanSupplier; net/minecraft/Util/createDeleter (Ljava/nio/file/Path;)Ljava/util/function/BooleanSupplier; +MD: net/minecraft/Util/m_137502_ (Ljava/nio/file/Path;Ljava/nio/file/Path;)Ljava/util/function/BooleanSupplier; net/minecraft/Util/createRenamer (Ljava/nio/file/Path;Ljava/nio/file/Path;)Ljava/util/function/BooleanSupplier; +MD: net/minecraft/Util/m_137505_ (Ljava/nio/file/Path;Ljava/nio/file/Path;Ljava/nio/file/Path;)V net/minecraft/Util/safeReplaceFile (Ljava/nio/file/Path;Ljava/nio/file/Path;Ljava/nio/file/Path;)V +MD: net/minecraft/Util/m_137509_ (Ljava/util/List;)Ljava/lang/Object; net/minecraft/Util/lastOf (Ljava/util/List;)Ljava/lang/Object; +MD: net/minecraft/Util/m_137521_ (Ljava/util/Optional;Ljava/util/function/Consumer;Ljava/lang/Runnable;)Ljava/util/Optional; net/minecraft/Util/ifElse (Ljava/util/Optional;Ljava/util/function/Consumer;Ljava/lang/Runnable;)Ljava/util/Optional; +MD: net/minecraft/Util/m_137531_ (Ljava/util/concurrent/ExecutorService;)V net/minecraft/Util/shutdownExecutor (Ljava/util/concurrent/ExecutorService;)V +MD: net/minecraft/Util/m_137537_ (Ljava/util/function/Supplier;)Ljava/lang/Object; net/minecraft/Util/make (Ljava/util/function/Supplier;)Ljava/lang/Object; +MD: net/minecraft/Util/m_137539_ (Ljava/util/stream/IntStream;I)Lcom/mojang/serialization/DataResult; net/minecraft/Util/fixedSize (Ljava/util/stream/IntStream;I)Lcom/mojang/serialization/DataResult; +MD: net/minecraft/Util/m_137548_ ([Ljava/util/function/BooleanSupplier;)Z net/minecraft/Util/executeInSequence ([Ljava/util/function/BooleanSupplier;)Z +MD: net/minecraft/Util/m_137550_ ()J net/minecraft/Util/getMillis ()J +MD: net/minecraft/Util/m_137551_ (Lcom/mojang/datafixers/DSL$TypeReference;Ljava/lang/String;)Lcom/mojang/datafixers/types/Type; net/minecraft/Util/doFetchChoiceType (Lcom/mojang/datafixers/DSL$TypeReference;Ljava/lang/String;)Lcom/mojang/datafixers/types/Type; +MD: net/minecraft/Util/m_137554_ (Ljava/lang/Iterable;Ljava/lang/Object;)Ljava/lang/Object; net/minecraft/Util/findPreviousInIterable (Ljava/lang/Iterable;Ljava/lang/Object;)Ljava/lang/Object; +MD: net/minecraft/Util/m_137559_ (Ljava/lang/Throwable;)V net/minecraft/Util/throwAsRuntime (Ljava/lang/Throwable;)V +MD: net/minecraft/Util/m_137561_ (Ljava/nio/file/Path;)Ljava/util/function/BooleanSupplier; net/minecraft/Util/createFileDeletedCheck (Ljava/nio/file/Path;)Ljava/util/function/BooleanSupplier; +MD: net/minecraft/Util/m_137563_ (Ljava/nio/file/Path;Ljava/nio/file/Path;Ljava/nio/file/Path;)V net/minecraft/Util/copyBetweenDirs (Ljava/nio/file/Path;Ljava/nio/file/Path;Ljava/nio/file/Path;)V +MD: net/minecraft/Util/m_137567_ (Ljava/util/List;)Ljava/util/concurrent/CompletableFuture; net/minecraft/Util/sequence (Ljava/util/List;)Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/Util/m_137569_ ()J net/minecraft/Util/getNanos ()J +MD: net/minecraft/Util/m_137570_ (Ljava/lang/Throwable;)Ljava/lang/Throwable; net/minecraft/Util/pauseInIde (Ljava/lang/Throwable;)Ljava/lang/Throwable; +MD: net/minecraft/Util/m_137572_ (Ljava/nio/file/Path;)Ljava/util/function/BooleanSupplier; net/minecraft/Util/createFileCreatedCheck (Ljava/nio/file/Path;)Ljava/util/function/BooleanSupplier; +MD: net/minecraft/Util/m_137574_ ()J net/minecraft/Util/getEpochMillis ()J +MD: net/minecraft/Util/m_137575_ (Ljava/lang/Throwable;)Ljava/lang/String; net/minecraft/Util/describeError (Ljava/lang/Throwable;)Ljava/lang/String; +MD: net/minecraft/Util/m_137580_ ()V net/minecraft/Util/shutdownExecutors ()V +MD: net/minecraft/Util/m_137581_ ()Lnet/minecraft/Util$OS; net/minecraft/Util/getPlatform ()Lnet/minecraft/Util$OS; +MD: net/minecraft/Util/m_137582_ ()Ljava/util/stream/Stream; net/minecraft/Util/getVmArguments ()Ljava/util/stream/Stream; +MD: net/minecraft/Util/m_137583_ ()Lit/unimi/dsi/fastutil/Hash$Strategy; net/minecraft/Util/identityStrategy ()Lit/unimi/dsi/fastutil/Hash$Strategy; +MD: net/minecraft/Util/m_137584_ ()V net/minecraft/Util/startTimerHackThread ()V +MD: net/minecraft/Util/m_137586_ ()Ljava/util/concurrent/ExecutorService; net/minecraft/Util/makeIoExecutor ()Ljava/util/concurrent/ExecutorService; +MD: net/minecraft/Util/m_143785_ (Ljava/lang/String;)V net/minecraft/Util/logAndPauseIfInIde (Ljava/lang/String;)V +MD: net/minecraft/Util/m_143787_ (Ljava/lang/String;Ljava/lang/Runnable;)Ljava/lang/Runnable; net/minecraft/Util/wrapThreadWithTaskName (Ljava/lang/String;Ljava/lang/Runnable;)Ljava/lang/Runnable; +MD: net/minecraft/Util/m_143795_ (Ljava/util/List;I)Lcom/mojang/serialization/DataResult; net/minecraft/Util/fixedSize (Ljava/util/List;I)Lcom/mojang/serialization/DataResult; +MD: net/minecraft/Util/m_143821_ (Ljava/util/function/BiFunction;)Ljava/util/function/BiFunction; net/minecraft/Util/memoize (Ljava/util/function/BiFunction;)Ljava/util/function/BiFunction; +MD: net/minecraft/Util/m_143827_ (Ljava/util/function/Function;)Ljava/util/function/Function; net/minecraft/Util/memoize (Ljava/util/function/Function;)Ljava/util/function/Function; +MD: net/minecraft/Util/m_143840_ (Ljava/util/List;)Ljava/util/concurrent/CompletableFuture; net/minecraft/Util/sequenceFailFast (Ljava/util/List;)Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/Util/m_183946_ (Ljava/lang/String;Ljava/util/function/Supplier;)Ljava/util/function/Supplier; net/minecraft/Util/wrapThreadWithTaskName (Ljava/lang/String;Ljava/util/function/Supplier;)Ljava/util/function/Supplier; +MD: net/minecraft/Util/m_183969_ (Ljava/util/function/Consumer;)V net/minecraft/Util/setPause (Ljava/util/function/Consumer;)V +MD: net/minecraft/Util/m_183984_ (Ljava/lang/String;)V net/minecraft/Util/doPause (Ljava/lang/String;)V +MD: net/minecraft/Util/m_183991_ ()Ljava/util/concurrent/ExecutorService; net/minecraft/Util/backgroundExecutor ()Ljava/util/concurrent/ExecutorService; +MD: net/minecraft/Util/m_183992_ ()Ljava/util/concurrent/ExecutorService; net/minecraft/Util/ioPool ()Ljava/util/concurrent/ExecutorService; +MD: net/minecraft/Util/m_183993_ ()I net/minecraft/Util/getMaxThreads ()I +MD: net/minecraft/Util/m_200890_ (Ljava/lang/String;Ljava/lang/Throwable;)V net/minecraft/Util/logAndPauseIfInIde (Ljava/lang/String;Ljava/lang/Throwable;)V +MD: net/minecraft/Util/m_201859_ (Ljava/lang/Runnable;)Ljava/lang/Thread; net/minecraft/Util/lambda$makeIoExecutor$4 (Ljava/lang/Runnable;)Ljava/lang/Thread; +MD: net/minecraft/Util/m_201861_ (Ljava/lang/String;Ljava/util/concurrent/ForkJoinPool;)Ljava/util/concurrent/ForkJoinWorkerThread; net/minecraft/Util/lambda$makeExecutor$3 (Ljava/lang/String;Ljava/util/concurrent/ForkJoinPool;)Ljava/util/concurrent/ForkJoinWorkerThread; +MD: net/minecraft/Util/m_201864_ (Ljava/nio/file/spi/FileSystemProvider;)Z net/minecraft/Util/lambda$static$0 (Ljava/nio/file/spi/FileSystemProvider;)Z +MD: net/minecraft/Util/m_201893_ (Ljava/lang/String;Ljava/lang/Runnable;)V net/minecraft/Util/lambda$wrapThreadWithTaskName$5 (Ljava/lang/String;Ljava/lang/Runnable;)V +MD: net/minecraft/Util/m_201896_ (Ljava/lang/String;Ljava/util/function/Supplier;)Ljava/lang/Object; net/minecraft/Util/lambda$wrapThreadWithTaskName$6 (Ljava/lang/String;Ljava/util/function/Supplier;)Ljava/lang/Object; +MD: net/minecraft/Util/m_201902_ (Ljava/lang/String;)Z net/minecraft/Util/lambda$getVmArguments$7 (Ljava/lang/String;)Z +MD: net/minecraft/Util/m_201904_ (Ljava/lang/String;)V net/minecraft/Util/lambda$static$2 (Ljava/lang/String;)V +MD: net/minecraft/Util/m_201906_ ()Ljava/lang/IllegalStateException; net/minecraft/Util/lambda$static$1 ()Ljava/lang/IllegalStateException; +MD: net/minecraft/Util/m_203744_ (Ljava/util/List;Ljava/lang/Void;)Ljava/util/List; net/minecraft/Util/lambda$sequence$8 (Ljava/util/List;Ljava/lang/Void;)Ljava/util/List; +MD: net/minecraft/Util/m_212224_ (Ljava/io/File;Ljava/io/File;Ljava/io/File;Z)V net/minecraft/Util/safeReplaceOrMoveFile (Ljava/io/File;Ljava/io/File;Ljava/io/File;Z)V +MD: net/minecraft/Util/m_212229_ (Ljava/nio/file/Path;Ljava/nio/file/Path;Ljava/nio/file/Path;Z)V net/minecraft/Util/safeReplaceOrMoveFile (Ljava/nio/file/Path;Ljava/nio/file/Path;Ljava/nio/file/Path;Z)V +MD: net/minecraft/Util/m_214611_ (Lit/unimi/dsi/fastutil/objects/ObjectArrayList;Lnet/minecraft/util/RandomSource;)Ljava/util/List; net/minecraft/Util/shuffledCopy (Lit/unimi/dsi/fastutil/objects/ObjectArrayList;Lnet/minecraft/util/RandomSource;)Ljava/util/List; +MD: net/minecraft/Util/m_214621_ (Ljava/util/List;Lnet/minecraft/util/RandomSource;)Ljava/lang/Object; net/minecraft/Util/getRandom (Ljava/util/List;Lnet/minecraft/util/RandomSource;)Ljava/lang/Object; +MD: net/minecraft/Util/m_214624_ (Ljava/util/List;Ljava/lang/Void;)Ljava/util/List; net/minecraft/Util/lambda$fallibleSequence$12 (Ljava/util/List;Ljava/lang/Void;)Ljava/util/List; +MD: net/minecraft/Util/m_214631_ (Ljava/util/List;Ljava/util/function/Consumer;)Ljava/util/concurrent/CompletableFuture; net/minecraft/Util/fallibleSequence (Ljava/util/List;Ljava/util/function/Consumer;)Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/Util/m_214634_ (Ljava/util/List;Ljava/util/function/IntFunction;)Ljava/util/function/ToIntFunction; net/minecraft/Util/createIndexLookup (Ljava/util/List;Ljava/util/function/IntFunction;)Ljava/util/function/ToIntFunction; +MD: net/minecraft/Util/m_214637_ (Ljava/util/List;[Ljava/util/concurrent/CompletableFuture;Ljava/util/function/Consumer;Ljava/util/concurrent/CompletableFuture;)V net/minecraft/Util/lambda$fallibleSequence$11 (Ljava/util/List;[Ljava/util/concurrent/CompletableFuture;Ljava/util/function/Consumer;Ljava/util/concurrent/CompletableFuture;)V +MD: net/minecraft/Util/m_214642_ (Ljava/util/function/Consumer;Ljava/lang/String;Ljava/lang/String;)V net/minecraft/Util/lambda$prefix$13 (Ljava/util/function/Consumer;Ljava/lang/String;Ljava/lang/String;)V +MD: net/minecraft/Util/m_214646_ (Ljava/util/function/Consumer;Ljava/util/List;ILjava/lang/Object;Ljava/lang/Throwable;)V net/minecraft/Util/lambda$fallibleSequence$10 (Ljava/util/function/Consumer;Ljava/util/List;ILjava/lang/Object;Ljava/lang/Throwable;)V +MD: net/minecraft/Util/m_214652_ (Ljava/util/function/Function;Ljava/util/function/Predicate;)Ljava/lang/Object; net/minecraft/Util/blockUntilDone (Ljava/util/function/Function;Ljava/util/function/Predicate;)Ljava/lang/Object; +MD: net/minecraft/Util/m_214655_ (Ljava/util/function/Supplier;Ljava/util/function/Supplier;)Ljava/util/function/Supplier; net/minecraft/Util/name (Ljava/util/function/Supplier;Ljava/util/function/Supplier;)Ljava/util/function/Supplier; +MD: net/minecraft/Util/m_214658_ (Ljava/util/stream/IntStream;Lnet/minecraft/util/RandomSource;)Lit/unimi/dsi/fastutil/ints/IntArrayList; net/minecraft/Util/toShuffledList (Ljava/util/stream/IntStream;Lnet/minecraft/util/RandomSource;)Lit/unimi/dsi/fastutil/ints/IntArrayList; +MD: net/minecraft/Util/m_214661_ (Ljava/util/stream/Stream;Lnet/minecraft/util/RandomSource;)Ljava/util/List; net/minecraft/Util/toShuffledList (Ljava/util/stream/Stream;Lnet/minecraft/util/RandomSource;)Ljava/util/List; +MD: net/minecraft/Util/m_214664_ (Lnet/minecraft/CharPredicate;I)Ljava/lang/String; net/minecraft/Util/lambda$sanitizeName$17 (Lnet/minecraft/CharPredicate;I)Ljava/lang/String; +MD: net/minecraft/Util/m_214667_ ([ILnet/minecraft/util/RandomSource;)I net/minecraft/Util/getRandom ([ILnet/minecraft/util/RandomSource;)I +MD: net/minecraft/Util/m_214670_ ([Ljava/lang/Object;Lnet/minecraft/util/RandomSource;)Ljava/lang/Object; net/minecraft/Util/getRandom ([Ljava/lang/Object;Lnet/minecraft/util/RandomSource;)Ljava/lang/Object; +MD: net/minecraft/Util/m_214673_ (Lit/unimi/dsi/fastutil/objects/ObjectArrayList;Lnet/minecraft/util/RandomSource;)V net/minecraft/Util/shuffle (Lit/unimi/dsi/fastutil/objects/ObjectArrayList;Lnet/minecraft/util/RandomSource;)V +MD: net/minecraft/Util/m_214676_ (Ljava/util/List;Lnet/minecraft/util/RandomSource;)Ljava/util/Optional; net/minecraft/Util/getRandomSafe (Ljava/util/List;Lnet/minecraft/util/RandomSource;)Ljava/util/Optional; +MD: net/minecraft/Util/m_214679_ (Ljava/util/function/Function;)Ljava/util/concurrent/CompletableFuture; net/minecraft/Util/blockUntilDone (Ljava/util/function/Function;)Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/Util/m_214681_ ([Ljava/lang/Object;Lnet/minecraft/util/RandomSource;)Ljava/util/List; net/minecraft/Util/shuffledCopy ([Ljava/lang/Object;Lnet/minecraft/util/RandomSource;)Ljava/util/List; +MD: net/minecraft/Util/m_214684_ (Ljava/util/List;)Ljava/util/concurrent/CompletableFuture; net/minecraft/Util/sequenceFailFastAndCancel (Ljava/util/List;)Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/Util/m_214686_ (Ljava/util/List;)Ljava/util/function/ToIntFunction; net/minecraft/Util/createIndexLookup (Ljava/util/List;)Ljava/util/function/ToIntFunction; +MD: net/minecraft/Util/m_241986_ ()Ljava/lang/String; net/minecraft/Util/getFilenameFormattedDateTime ()Ljava/lang/String; +MD: net/minecraft/Util/m_260975_ (Lcom/mojang/serialization/DataResult;Ljava/util/function/Function;)Ljava/lang/Object; net/minecraft/Util/getOrThrow (Lcom/mojang/serialization/DataResult;Ljava/util/function/Function;)Ljava/lang/Object; +MD: net/minecraft/Util/m_269175_ (Ljava/util/function/Function;)Lnet/minecraft/util/SingleKeyCache; net/minecraft/Util/singleKeyCache (Ljava/util/function/Function;)Lnet/minecraft/util/SingleKeyCache; +MD: net/minecraft/Util/m_273964_ (I)Ljava/lang/String; net/minecraft/Util/lambda$fixedSize$15 (I)Ljava/lang/String; +MD: net/minecraft/Util/m_273965_ (Ljava/util/concurrent/CompletableFuture;Ljava/util/List;Ljava/lang/Throwable;)V net/minecraft/Util/lambda$sequenceFailFastAndCancel$9 (Ljava/util/concurrent/CompletableFuture;Ljava/util/List;Ljava/lang/Throwable;)V +MD: net/minecraft/Util/m_273966_ (I)Ljava/lang/String; net/minecraft/Util/lambda$fixedSize$14 (I)Ljava/lang/String; +MD: net/minecraft/Util/m_287015_ (I)Ljava/lang/String; net/minecraft/Util/lambda$fixedSize$16 (I)Ljava/lang/String; +MD: net/minecraft/Util/m_287262_ (Ljava/util/stream/LongStream;I)Lcom/mojang/serialization/DataResult; net/minecraft/Util/fixedSize (Ljava/util/stream/LongStream;I)Lcom/mojang/serialization/DataResult; +MD: net/minecraft/Util/m_288213_ (I)Z net/minecraft/Util/isWhitespace (I)Z +MD: net/minecraft/Util/m_288217_ (Ljava/lang/String;)Z net/minecraft/Util/isBlank (Ljava/lang/String;)Z +MD: net/minecraft/Util$1/ ()V net/minecraft/Util$1/ ()V +MD: net/minecraft/Util$1/read ()J net/minecraft/Util$1/read ()J +MD: net/minecraft/Util$10/ (Ljava/util/function/Function;)V net/minecraft/Util$10/ (Ljava/util/function/Function;)V +MD: net/minecraft/Util$10/apply (Ljava/lang/Object;)Ljava/lang/Object; net/minecraft/Util$10/apply (Ljava/lang/Object;)Ljava/lang/Object; +MD: net/minecraft/Util$10/toString ()Ljava/lang/String; net/minecraft/Util$10/toString ()Ljava/lang/String; +MD: net/minecraft/Util$11/ (Ljava/util/function/BiFunction;)V net/minecraft/Util$11/ (Ljava/util/function/BiFunction;)V +MD: net/minecraft/Util$11/apply (Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object; net/minecraft/Util$11/apply (Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object; +MD: net/minecraft/Util$11/m_214696_ (Ljava/util/function/BiFunction;Lcom/mojang/datafixers/util/Pair;)Ljava/lang/Object; net/minecraft/Util$11/lambda$apply$0 (Ljava/util/function/BiFunction;Lcom/mojang/datafixers/util/Pair;)Ljava/lang/Object; +MD: net/minecraft/Util$11/toString ()Ljava/lang/String; net/minecraft/Util$11/toString ()Ljava/lang/String; +MD: net/minecraft/Util$2/ (Ljava/util/concurrent/ForkJoinPool;)V net/minecraft/Util$2/ (Ljava/util/concurrent/ForkJoinPool;)V +MD: net/minecraft/Util$2/onTermination (Ljava/lang/Throwable;)V net/minecraft/Util$2/onTermination (Ljava/lang/Throwable;)V +MD: net/minecraft/Util$5/ (Ljava/nio/file/Path;Ljava/nio/file/Path;)V net/minecraft/Util$5/ (Ljava/nio/file/Path;Ljava/nio/file/Path;)V +MD: net/minecraft/Util$5/getAsBoolean ()Z net/minecraft/Util$5/getAsBoolean ()Z +MD: net/minecraft/Util$5/toString ()Ljava/lang/String; net/minecraft/Util$5/toString ()Ljava/lang/String; +MD: net/minecraft/Util$6/ (Ljava/nio/file/Path;)V net/minecraft/Util$6/ (Ljava/nio/file/Path;)V +MD: net/minecraft/Util$6/getAsBoolean ()Z net/minecraft/Util$6/getAsBoolean ()Z +MD: net/minecraft/Util$6/toString ()Ljava/lang/String; net/minecraft/Util$6/toString ()Ljava/lang/String; +MD: net/minecraft/Util$7/ (Ljava/nio/file/Path;)V net/minecraft/Util$7/ (Ljava/nio/file/Path;)V +MD: net/minecraft/Util$7/getAsBoolean ()Z net/minecraft/Util$7/getAsBoolean ()Z +MD: net/minecraft/Util$7/toString ()Ljava/lang/String; net/minecraft/Util$7/toString ()Ljava/lang/String; +MD: net/minecraft/Util$8/ (Ljava/nio/file/Path;)V net/minecraft/Util$8/ (Ljava/nio/file/Path;)V +MD: net/minecraft/Util$8/getAsBoolean ()Z net/minecraft/Util$8/getAsBoolean ()Z +MD: net/minecraft/Util$8/toString ()Ljava/lang/String; net/minecraft/Util$8/toString ()Ljava/lang/String; +MD: net/minecraft/Util$9/ (Ljava/lang/String;)V net/minecraft/Util$9/ (Ljava/lang/String;)V +MD: net/minecraft/Util$9/run ()V net/minecraft/Util$9/run ()V +MD: net/minecraft/Util$IdentityStrategy/ ()V net/minecraft/Util$IdentityStrategy/ ()V +MD: net/minecraft/Util$IdentityStrategy/ (Ljava/lang/String;I)V net/minecraft/Util$IdentityStrategy/ (Ljava/lang/String;I)V +MD: net/minecraft/Util$IdentityStrategy/equals (Ljava/lang/Object;Ljava/lang/Object;)Z net/minecraft/Util$IdentityStrategy/equals (Ljava/lang/Object;Ljava/lang/Object;)Z +MD: net/minecraft/Util$IdentityStrategy/hashCode (Ljava/lang/Object;)I net/minecraft/Util$IdentityStrategy/hashCode (Ljava/lang/Object;)I +MD: net/minecraft/Util$IdentityStrategy/m_143862_ ()[Lnet/minecraft/Util$IdentityStrategy; net/minecraft/Util$IdentityStrategy/$values ()[Lnet/minecraft/Util$IdentityStrategy; +MD: net/minecraft/Util$IdentityStrategy/valueOf (Ljava/lang/String;)Lnet/minecraft/Util$IdentityStrategy; net/minecraft/Util$IdentityStrategy/valueOf (Ljava/lang/String;)Lnet/minecraft/Util$IdentityStrategy; +MD: net/minecraft/Util$IdentityStrategy/values ()[Lnet/minecraft/Util$IdentityStrategy; net/minecraft/Util$IdentityStrategy/values ()[Lnet/minecraft/Util$IdentityStrategy; +MD: net/minecraft/Util$OS/ ()V net/minecraft/Util$OS/ ()V +MD: net/minecraft/Util$OS/ (Ljava/lang/String;ILjava/lang/String;)V net/minecraft/Util$OS/ (Ljava/lang/String;ILjava/lang/String;)V +MD: net/minecraft/Util$OS/m_137644_ (Ljava/io/File;)V net/minecraft/Util$OS/openFile (Ljava/io/File;)V +MD: net/minecraft/Util$OS/m_137646_ (Ljava/lang/String;)V net/minecraft/Util$OS/openUri (Ljava/lang/String;)V +MD: net/minecraft/Util$OS/m_137648_ (Ljava/net/URI;)V net/minecraft/Util$OS/openUri (Ljava/net/URI;)V +MD: net/minecraft/Util$OS/m_137650_ (Ljava/net/URL;)V net/minecraft/Util$OS/openUrl (Ljava/net/URL;)V +MD: net/minecraft/Util$OS/m_137653_ (Ljava/net/URL;)Ljava/lang/Process; net/minecraft/Util$OS/lambda$openUrl$0 (Ljava/net/URL;)Ljava/lang/Process; +MD: net/minecraft/Util$OS/m_143863_ ()[Lnet/minecraft/Util$OS; net/minecraft/Util$OS/$values ()[Lnet/minecraft/Util$OS; +MD: net/minecraft/Util$OS/m_183999_ ()Ljava/lang/String; net/minecraft/Util$OS/telemetryName ()Ljava/lang/String; +MD: net/minecraft/Util$OS/m_6868_ (Ljava/net/URL;)[Ljava/lang/String; net/minecraft/Util$OS/getOpenUrlArguments (Ljava/net/URL;)[Ljava/lang/String; +MD: net/minecraft/Util$OS/valueOf (Ljava/lang/String;)Lnet/minecraft/Util$OS; net/minecraft/Util$OS/valueOf (Ljava/lang/String;)Lnet/minecraft/Util$OS; +MD: net/minecraft/Util$OS/values ()[Lnet/minecraft/Util$OS; net/minecraft/Util$OS/values ()[Lnet/minecraft/Util$OS; +MD: net/minecraft/Util$OS$1/ (Ljava/lang/String;ILjava/lang/String;)V net/minecraft/Util$OS$1/ (Ljava/lang/String;ILjava/lang/String;)V +MD: net/minecraft/Util$OS$1/m_6868_ (Ljava/net/URL;)[Ljava/lang/String; net/minecraft/Util$OS$1/getOpenUrlArguments (Ljava/net/URL;)[Ljava/lang/String; +MD: net/minecraft/Util$OS$2/ (Ljava/lang/String;ILjava/lang/String;)V net/minecraft/Util$OS$2/ (Ljava/lang/String;ILjava/lang/String;)V +MD: net/minecraft/Util$OS$2/m_6868_ (Ljava/net/URL;)[Ljava/lang/String; net/minecraft/Util$OS$2/getOpenUrlArguments (Ljava/net/URL;)[Ljava/lang/String; +MD: net/minecraft/WorldVersion/m_132491_ ()Ljava/util/Date; net/minecraft/WorldVersion/getBuildTime ()Ljava/util/Date; +MD: net/minecraft/WorldVersion/m_132492_ ()Ljava/lang/String; net/minecraft/WorldVersion/getId ()Ljava/lang/String; +MD: net/minecraft/WorldVersion/m_132493_ ()Ljava/lang/String; net/minecraft/WorldVersion/getName ()Ljava/lang/String; +MD: net/minecraft/WorldVersion/m_132495_ ()I net/minecraft/WorldVersion/getProtocolVersion ()I +MD: net/minecraft/WorldVersion/m_132498_ ()Z net/minecraft/WorldVersion/isStable ()Z +MD: net/minecraft/WorldVersion/m_183476_ ()Lnet/minecraft/world/level/storage/DataVersion; net/minecraft/WorldVersion/getDataVersion ()Lnet/minecraft/world/level/storage/DataVersion; +MD: net/minecraft/WorldVersion/m_264084_ (Lnet/minecraft/server/packs/PackType;)I net/minecraft/WorldVersion/getPackVersion (Lnet/minecraft/server/packs/PackType;)I +MD: net/minecraft/advancements/Advancement/ (Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/advancements/Advancement;Lnet/minecraft/advancements/DisplayInfo;Lnet/minecraft/advancements/AdvancementRewards;Ljava/util/Map;[[Ljava/lang/String;Z)V net/minecraft/advancements/Advancement/ (Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/advancements/Advancement;Lnet/minecraft/advancements/DisplayInfo;Lnet/minecraft/advancements/AdvancementRewards;Ljava/util/Map;[[Ljava/lang/String;Z)V +MD: net/minecraft/advancements/Advancement/equals (Ljava/lang/Object;)Z net/minecraft/advancements/Advancement/equals (Ljava/lang/Object;)Z +MD: net/minecraft/advancements/Advancement/hashCode ()I net/minecraft/advancements/Advancement/hashCode ()I +MD: net/minecraft/advancements/Advancement/m_138313_ ()Lnet/minecraft/advancements/Advancement$Builder; net/minecraft/advancements/Advancement/deconstruct ()Lnet/minecraft/advancements/Advancement$Builder; +MD: net/minecraft/advancements/Advancement/m_138314_ (Lnet/minecraft/network/chat/Component;Lnet/minecraft/network/chat/Style;)Lnet/minecraft/network/chat/Style; net/minecraft/advancements/Advancement/lambda$new$0 (Lnet/minecraft/network/chat/Component;Lnet/minecraft/network/chat/Style;)Lnet/minecraft/network/chat/Style; +MD: net/minecraft/advancements/Advancement/m_138317_ (Lnet/minecraft/advancements/Advancement;)V net/minecraft/advancements/Advancement/addChild (Lnet/minecraft/advancements/Advancement;)V +MD: net/minecraft/advancements/Advancement/m_138319_ ()Lnet/minecraft/advancements/Advancement; net/minecraft/advancements/Advancement/getParent ()Lnet/minecraft/advancements/Advancement; +MD: net/minecraft/advancements/Advancement/m_138320_ ()Lnet/minecraft/advancements/DisplayInfo; net/minecraft/advancements/Advancement/getDisplay ()Lnet/minecraft/advancements/DisplayInfo; +MD: net/minecraft/advancements/Advancement/m_138321_ ()Lnet/minecraft/advancements/AdvancementRewards; net/minecraft/advancements/Advancement/getRewards ()Lnet/minecraft/advancements/AdvancementRewards; +MD: net/minecraft/advancements/Advancement/m_138322_ ()Ljava/lang/Iterable; net/minecraft/advancements/Advancement/getChildren ()Ljava/lang/Iterable; +MD: net/minecraft/advancements/Advancement/m_138325_ ()Ljava/util/Map; net/minecraft/advancements/Advancement/getCriteria ()Ljava/util/Map; +MD: net/minecraft/advancements/Advancement/m_138326_ ()I net/minecraft/advancements/Advancement/getMaxCriteraRequired ()I +MD: net/minecraft/advancements/Advancement/m_138327_ ()Lnet/minecraft/resources/ResourceLocation; net/minecraft/advancements/Advancement/getId ()Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/advancements/Advancement/m_138329_ ()[[Ljava/lang/String; net/minecraft/advancements/Advancement/getRequirements ()[[Ljava/lang/String; +MD: net/minecraft/advancements/Advancement/m_138330_ ()Lnet/minecraft/network/chat/Component; net/minecraft/advancements/Advancement/getChatComponent ()Lnet/minecraft/network/chat/Component; +MD: net/minecraft/advancements/Advancement/m_264348_ ()Lnet/minecraft/advancements/Advancement; net/minecraft/advancements/Advancement/getRoot ()Lnet/minecraft/advancements/Advancement; +MD: net/minecraft/advancements/Advancement/m_264636_ (Lnet/minecraft/advancements/Advancement;)Lnet/minecraft/advancements/Advancement; net/minecraft/advancements/Advancement/getRoot (Lnet/minecraft/advancements/Advancement;)Lnet/minecraft/advancements/Advancement; +MD: net/minecraft/advancements/Advancement/m_285828_ ()Z net/minecraft/advancements/Advancement/sendsTelemetryEvent ()Z +MD: net/minecraft/advancements/Advancement/toString ()Ljava/lang/String; net/minecraft/advancements/Advancement/toString ()Ljava/lang/String; +MD: net/minecraft/advancements/Advancement$Builder/ (Z)V net/minecraft/advancements/Advancement$Builder/ (Z)V +MD: net/minecraft/advancements/Advancement$Builder/ (Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/advancements/DisplayInfo;Lnet/minecraft/advancements/AdvancementRewards;Ljava/util/Map;[[Ljava/lang/String;Z)V net/minecraft/advancements/Advancement$Builder/ (Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/advancements/DisplayInfo;Lnet/minecraft/advancements/AdvancementRewards;Ljava/util/Map;[[Ljava/lang/String;Z)V +MD: net/minecraft/advancements/Advancement$Builder/m_138353_ ()Lnet/minecraft/advancements/Advancement$Builder; net/minecraft/advancements/Advancement$Builder/advancement ()Lnet/minecraft/advancements/Advancement$Builder; +MD: net/minecraft/advancements/Advancement$Builder/m_138354_ (Lnet/minecraft/advancements/AdvancementRewards$Builder;)Lnet/minecraft/advancements/Advancement$Builder; net/minecraft/advancements/Advancement$Builder/rewards (Lnet/minecraft/advancements/AdvancementRewards$Builder;)Lnet/minecraft/advancements/Advancement$Builder; +MD: net/minecraft/advancements/Advancement$Builder/m_138356_ (Lnet/minecraft/advancements/AdvancementRewards;)Lnet/minecraft/advancements/Advancement$Builder; net/minecraft/advancements/Advancement$Builder/rewards (Lnet/minecraft/advancements/AdvancementRewards;)Lnet/minecraft/advancements/Advancement$Builder; +MD: net/minecraft/advancements/Advancement$Builder/m_138358_ (Lnet/minecraft/advancements/DisplayInfo;)Lnet/minecraft/advancements/Advancement$Builder; net/minecraft/advancements/Advancement$Builder/display (Lnet/minecraft/advancements/DisplayInfo;)Lnet/minecraft/advancements/Advancement$Builder; +MD: net/minecraft/advancements/Advancement$Builder/m_138360_ (Lnet/minecraft/advancements/RequirementsStrategy;)Lnet/minecraft/advancements/Advancement$Builder; net/minecraft/advancements/Advancement$Builder/requirements (Lnet/minecraft/advancements/RequirementsStrategy;)Lnet/minecraft/advancements/Advancement$Builder; +MD: net/minecraft/advancements/Advancement$Builder/m_138362_ (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/network/chat/Component;Lnet/minecraft/network/chat/Component;Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/advancements/FrameType;ZZZ)Lnet/minecraft/advancements/Advancement$Builder; net/minecraft/advancements/Advancement$Builder/display (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/network/chat/Component;Lnet/minecraft/network/chat/Component;Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/advancements/FrameType;ZZZ)Lnet/minecraft/advancements/Advancement$Builder; +MD: net/minecraft/advancements/Advancement$Builder/m_138371_ (Lnet/minecraft/world/level/ItemLike;Lnet/minecraft/network/chat/Component;Lnet/minecraft/network/chat/Component;Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/advancements/FrameType;ZZZ)Lnet/minecraft/advancements/Advancement$Builder; net/minecraft/advancements/Advancement$Builder/display (Lnet/minecraft/world/level/ItemLike;Lnet/minecraft/network/chat/Component;Lnet/minecraft/network/chat/Component;Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/advancements/FrameType;ZZZ)Lnet/minecraft/advancements/Advancement$Builder; +MD: net/minecraft/advancements/Advancement$Builder/m_138380_ (Lcom/google/gson/JsonObject;Lnet/minecraft/advancements/critereon/DeserializationContext;)Lnet/minecraft/advancements/Advancement$Builder; net/minecraft/advancements/Advancement$Builder/fromJson (Lcom/google/gson/JsonObject;Lnet/minecraft/advancements/critereon/DeserializationContext;)Lnet/minecraft/advancements/Advancement$Builder; +MD: net/minecraft/advancements/Advancement$Builder/m_138383_ (Ljava/lang/String;Lnet/minecraft/advancements/Criterion;)Lnet/minecraft/advancements/Advancement$Builder; net/minecraft/advancements/Advancement$Builder/addCriterion (Ljava/lang/String;Lnet/minecraft/advancements/Criterion;)Lnet/minecraft/advancements/Advancement$Builder; +MD: net/minecraft/advancements/Advancement$Builder/m_138386_ (Ljava/lang/String;Lnet/minecraft/advancements/CriterionTriggerInstance;)Lnet/minecraft/advancements/Advancement$Builder; net/minecraft/advancements/Advancement$Builder/addCriterion (Ljava/lang/String;Lnet/minecraft/advancements/CriterionTriggerInstance;)Lnet/minecraft/advancements/Advancement$Builder; +MD: net/minecraft/advancements/Advancement$Builder/m_138389_ (Ljava/util/function/Consumer;Ljava/lang/String;)Lnet/minecraft/advancements/Advancement; net/minecraft/advancements/Advancement$Builder/save (Ljava/util/function/Consumer;Ljava/lang/String;)Lnet/minecraft/advancements/Advancement; +MD: net/minecraft/advancements/Advancement$Builder/m_138392_ (Ljava/util/function/Function;)Z net/minecraft/advancements/Advancement$Builder/canBuild (Ljava/util/function/Function;)Z +MD: net/minecraft/advancements/Advancement$Builder/m_138394_ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/advancements/Advancement$Builder/serializeToNetwork (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/advancements/Advancement$Builder/m_138396_ (Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/advancements/Advancement$Builder; net/minecraft/advancements/Advancement$Builder/parent (Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/advancements/Advancement$Builder; +MD: net/minecraft/advancements/Advancement$Builder/m_138398_ (Lnet/minecraft/advancements/Advancement;)Lnet/minecraft/advancements/Advancement$Builder; net/minecraft/advancements/Advancement$Builder/parent (Lnet/minecraft/advancements/Advancement;)Lnet/minecraft/advancements/Advancement$Builder; +MD: net/minecraft/advancements/Advancement$Builder/m_138400_ ()Lcom/google/gson/JsonObject; net/minecraft/advancements/Advancement$Builder/serializeToJson ()Lcom/google/gson/JsonObject; +MD: net/minecraft/advancements/Advancement$Builder/m_138401_ (Lnet/minecraft/network/FriendlyByteBuf;)Lnet/minecraft/advancements/Advancement$Builder; net/minecraft/advancements/Advancement$Builder/fromNetwork (Lnet/minecraft/network/FriendlyByteBuf;)Lnet/minecraft/advancements/Advancement$Builder; +MD: net/minecraft/advancements/Advancement$Builder/m_138403_ (Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/advancements/Advancement; net/minecraft/advancements/Advancement$Builder/build (Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/advancements/Advancement; +MD: net/minecraft/advancements/Advancement$Builder/m_138405_ ()Ljava/util/Map; net/minecraft/advancements/Advancement$Builder/getCriteria ()Ljava/util/Map; +MD: net/minecraft/advancements/Advancement$Builder/m_138406_ (Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/advancements/Advancement; net/minecraft/advancements/Advancement$Builder/lambda$build$0 (Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/advancements/Advancement; +MD: net/minecraft/advancements/Advancement$Builder/m_143951_ ([[Ljava/lang/String;)Lnet/minecraft/advancements/Advancement$Builder; net/minecraft/advancements/Advancement$Builder/requirements ([[Ljava/lang/String;)Lnet/minecraft/advancements/Advancement$Builder; +MD: net/minecraft/advancements/Advancement$Builder/m_214830_ (Lnet/minecraft/network/FriendlyByteBuf;Lnet/minecraft/advancements/DisplayInfo;)V net/minecraft/advancements/Advancement$Builder/lambda$serializeToNetwork$1 (Lnet/minecraft/network/FriendlyByteBuf;Lnet/minecraft/advancements/DisplayInfo;)V +MD: net/minecraft/advancements/Advancement$Builder/m_285878_ ()Lnet/minecraft/advancements/Advancement$Builder; net/minecraft/advancements/Advancement$Builder/recipeAdvancement ()Lnet/minecraft/advancements/Advancement$Builder; +MD: net/minecraft/advancements/Advancement$Builder/toString ()Ljava/lang/String; net/minecraft/advancements/Advancement$Builder/toString ()Ljava/lang/String; +MD: net/minecraft/advancements/AdvancementList/ ()V net/minecraft/advancements/AdvancementList/ ()V +MD: net/minecraft/advancements/AdvancementList/ ()V net/minecraft/advancements/AdvancementList/ ()V +MD: net/minecraft/advancements/AdvancementList/m_139332_ ()V net/minecraft/advancements/AdvancementList/clear ()V +MD: net/minecraft/advancements/AdvancementList/m_139333_ (Ljava/util/Map;)V net/minecraft/advancements/AdvancementList/add (Ljava/util/Map;)V +MD: net/minecraft/advancements/AdvancementList/m_139335_ (Ljava/util/Set;)V net/minecraft/advancements/AdvancementList/remove (Ljava/util/Set;)V +MD: net/minecraft/advancements/AdvancementList/m_139337_ (Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/advancements/Advancement; net/minecraft/advancements/AdvancementList/get (Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/advancements/Advancement; +MD: net/minecraft/advancements/AdvancementList/m_139339_ (Lnet/minecraft/advancements/Advancement;)V net/minecraft/advancements/AdvancementList/remove (Lnet/minecraft/advancements/Advancement;)V +MD: net/minecraft/advancements/AdvancementList/m_139341_ (Lnet/minecraft/advancements/AdvancementList$Listener;)V net/minecraft/advancements/AdvancementList/setListener (Lnet/minecraft/advancements/AdvancementList$Listener;)V +MD: net/minecraft/advancements/AdvancementList/m_139343_ ()Ljava/lang/Iterable; net/minecraft/advancements/AdvancementList/getRoots ()Ljava/lang/Iterable; +MD: net/minecraft/advancements/AdvancementList/m_139344_ ()Ljava/util/Collection; net/minecraft/advancements/AdvancementList/getAllAdvancements ()Ljava/util/Collection; +MD: net/minecraft/advancements/AdvancementList$Listener/m_5504_ (Lnet/minecraft/advancements/Advancement;)V net/minecraft/advancements/AdvancementList$Listener/onRemoveAdvancementRoot (Lnet/minecraft/advancements/Advancement;)V +MD: net/minecraft/advancements/AdvancementList$Listener/m_5505_ (Lnet/minecraft/advancements/Advancement;)V net/minecraft/advancements/AdvancementList$Listener/onAddAdvancementTask (Lnet/minecraft/advancements/Advancement;)V +MD: net/minecraft/advancements/AdvancementList$Listener/m_5513_ (Lnet/minecraft/advancements/Advancement;)V net/minecraft/advancements/AdvancementList$Listener/onAddAdvancementRoot (Lnet/minecraft/advancements/Advancement;)V +MD: net/minecraft/advancements/AdvancementList$Listener/m_5516_ (Lnet/minecraft/advancements/Advancement;)V net/minecraft/advancements/AdvancementList$Listener/onRemoveAdvancementTask (Lnet/minecraft/advancements/Advancement;)V +MD: net/minecraft/advancements/AdvancementList$Listener/m_7204_ ()V net/minecraft/advancements/AdvancementList$Listener/onAdvancementsCleared ()V +MD: net/minecraft/advancements/AdvancementProgress/ (Ljava/util/Map;)V net/minecraft/advancements/AdvancementProgress/ (Ljava/util/Map;)V +MD: net/minecraft/advancements/AdvancementProgress/ ()V net/minecraft/advancements/AdvancementProgress/ ()V +MD: net/minecraft/advancements/AdvancementProgress/compareTo (Ljava/lang/Object;)I net/minecraft/advancements/AdvancementProgress/compareTo (Ljava/lang/Object;)I +MD: net/minecraft/advancements/AdvancementProgress/compareTo (Lnet/minecraft/advancements/AdvancementProgress;)I net/minecraft/advancements/AdvancementProgress/compareTo (Lnet/minecraft/advancements/AdvancementProgress;)I +MD: net/minecraft/advancements/AdvancementProgress/m_144359_ (Lnet/minecraft/network/FriendlyByteBuf;Lnet/minecraft/advancements/CriterionProgress;)V net/minecraft/advancements/AdvancementProgress/lambda$serializeToNetwork$1 (Lnet/minecraft/network/FriendlyByteBuf;Lnet/minecraft/advancements/CriterionProgress;)V +MD: net/minecraft/advancements/AdvancementProgress/m_8193_ ()Z net/minecraft/advancements/AdvancementProgress/isDone ()Z +MD: net/minecraft/advancements/AdvancementProgress/m_8196_ (Ljava/lang/String;)Z net/minecraft/advancements/AdvancementProgress/grantProgress (Ljava/lang/String;)Z +MD: net/minecraft/advancements/AdvancementProgress/m_8198_ (Ljava/util/Map;[[Ljava/lang/String;)V net/minecraft/advancements/AdvancementProgress/update (Ljava/util/Map;[[Ljava/lang/String;)V +MD: net/minecraft/advancements/AdvancementProgress/m_8201_ (Ljava/util/Set;Ljava/util/Map$Entry;)Z net/minecraft/advancements/AdvancementProgress/lambda$update$0 (Ljava/util/Set;Ljava/util/Map$Entry;)Z +MD: net/minecraft/advancements/AdvancementProgress/m_8204_ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/advancements/AdvancementProgress/serializeToNetwork (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/advancements/AdvancementProgress/m_8206_ ()Z net/minecraft/advancements/AdvancementProgress/hasProgress ()Z +MD: net/minecraft/advancements/AdvancementProgress/m_8209_ (Ljava/lang/String;)Z net/minecraft/advancements/AdvancementProgress/revokeProgress (Ljava/lang/String;)Z +MD: net/minecraft/advancements/AdvancementProgress/m_8211_ (Lnet/minecraft/network/FriendlyByteBuf;)Lnet/minecraft/advancements/AdvancementProgress; net/minecraft/advancements/AdvancementProgress/fromNetwork (Lnet/minecraft/network/FriendlyByteBuf;)Lnet/minecraft/advancements/AdvancementProgress; +MD: net/minecraft/advancements/AdvancementProgress/m_8213_ ()F net/minecraft/advancements/AdvancementProgress/getPercent ()F +MD: net/minecraft/advancements/AdvancementProgress/m_8214_ (Ljava/lang/String;)Lnet/minecraft/advancements/CriterionProgress; net/minecraft/advancements/AdvancementProgress/getCriterion (Ljava/lang/String;)Lnet/minecraft/advancements/CriterionProgress; +MD: net/minecraft/advancements/AdvancementProgress/m_8218_ ()Ljava/lang/String; net/minecraft/advancements/AdvancementProgress/getProgressText ()Ljava/lang/String; +MD: net/minecraft/advancements/AdvancementProgress/m_8219_ ()Ljava/lang/Iterable; net/minecraft/advancements/AdvancementProgress/getRemainingCriteria ()Ljava/lang/Iterable; +MD: net/minecraft/advancements/AdvancementProgress/m_8220_ ()Ljava/lang/Iterable; net/minecraft/advancements/AdvancementProgress/getCompletedCriteria ()Ljava/lang/Iterable; +MD: net/minecraft/advancements/AdvancementProgress/m_8221_ ()Ljava/util/Date; net/minecraft/advancements/AdvancementProgress/getFirstProgressDate ()Ljava/util/Date; +MD: net/minecraft/advancements/AdvancementProgress/m_8222_ ()I net/minecraft/advancements/AdvancementProgress/countCompletedRequirements ()I +MD: net/minecraft/advancements/AdvancementProgress/toString ()Ljava/lang/String; net/minecraft/advancements/AdvancementProgress/toString ()Ljava/lang/String; +MD: net/minecraft/advancements/AdvancementProgress$Serializer/ ()V net/minecraft/advancements/AdvancementProgress$Serializer/ ()V +MD: net/minecraft/advancements/AdvancementProgress$Serializer/deserialize (Lcom/google/gson/JsonElement;Ljava/lang/reflect/Type;Lcom/google/gson/JsonDeserializationContext;)Ljava/lang/Object; net/minecraft/advancements/AdvancementProgress$Serializer/deserialize (Lcom/google/gson/JsonElement;Ljava/lang/reflect/Type;Lcom/google/gson/JsonDeserializationContext;)Ljava/lang/Object; +MD: net/minecraft/advancements/AdvancementProgress$Serializer/deserialize (Lcom/google/gson/JsonElement;Ljava/lang/reflect/Type;Lcom/google/gson/JsonDeserializationContext;)Lnet/minecraft/advancements/AdvancementProgress; net/minecraft/advancements/AdvancementProgress$Serializer/deserialize (Lcom/google/gson/JsonElement;Ljava/lang/reflect/Type;Lcom/google/gson/JsonDeserializationContext;)Lnet/minecraft/advancements/AdvancementProgress; +MD: net/minecraft/advancements/AdvancementProgress$Serializer/serialize (Ljava/lang/Object;Ljava/lang/reflect/Type;Lcom/google/gson/JsonSerializationContext;)Lcom/google/gson/JsonElement; net/minecraft/advancements/AdvancementProgress$Serializer/serialize (Ljava/lang/Object;Ljava/lang/reflect/Type;Lcom/google/gson/JsonSerializationContext;)Lcom/google/gson/JsonElement; +MD: net/minecraft/advancements/AdvancementProgress$Serializer/serialize (Lnet/minecraft/advancements/AdvancementProgress;Ljava/lang/reflect/Type;Lcom/google/gson/JsonSerializationContext;)Lcom/google/gson/JsonElement; net/minecraft/advancements/AdvancementProgress$Serializer/serialize (Lnet/minecraft/advancements/AdvancementProgress;Ljava/lang/reflect/Type;Lcom/google/gson/JsonSerializationContext;)Lcom/google/gson/JsonElement; +MD: net/minecraft/advancements/AdvancementRewards/ ()V net/minecraft/advancements/AdvancementRewards/ ()V +MD: net/minecraft/advancements/AdvancementRewards/ (I[Lnet/minecraft/resources/ResourceLocation;[Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/commands/CommandFunction$CacheableFunction;)V net/minecraft/advancements/AdvancementRewards/ (I[Lnet/minecraft/resources/ResourceLocation;[Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/commands/CommandFunction$CacheableFunction;)V +MD: net/minecraft/advancements/AdvancementRewards/m_144821_ ()[Lnet/minecraft/resources/ResourceLocation; net/minecraft/advancements/AdvancementRewards/getRecipes ()[Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/advancements/AdvancementRewards/m_289047_ (Lnet/minecraft/server/MinecraftServer;Lnet/minecraft/server/level/ServerPlayer;Lnet/minecraft/commands/CommandFunction;)V net/minecraft/advancements/AdvancementRewards/lambda$grant$0 (Lnet/minecraft/server/MinecraftServer;Lnet/minecraft/server/level/ServerPlayer;Lnet/minecraft/commands/CommandFunction;)V +MD: net/minecraft/advancements/AdvancementRewards/m_9989_ (Lnet/minecraft/server/level/ServerPlayer;)V net/minecraft/advancements/AdvancementRewards/grant (Lnet/minecraft/server/level/ServerPlayer;)V +MD: net/minecraft/advancements/AdvancementRewards/m_9991_ (Lcom/google/gson/JsonObject;)Lnet/minecraft/advancements/AdvancementRewards; net/minecraft/advancements/AdvancementRewards/deserialize (Lcom/google/gson/JsonObject;)Lnet/minecraft/advancements/AdvancementRewards; +MD: net/minecraft/advancements/AdvancementRewards/m_9997_ ()Lcom/google/gson/JsonElement; net/minecraft/advancements/AdvancementRewards/serializeToJson ()Lcom/google/gson/JsonElement; +MD: net/minecraft/advancements/AdvancementRewards/toString ()Ljava/lang/String; net/minecraft/advancements/AdvancementRewards/toString ()Ljava/lang/String; +MD: net/minecraft/advancements/AdvancementRewards$Builder/ ()V net/minecraft/advancements/AdvancementRewards$Builder/ ()V +MD: net/minecraft/advancements/AdvancementRewards$Builder/m_10004_ ()Lnet/minecraft/advancements/AdvancementRewards; net/minecraft/advancements/AdvancementRewards$Builder/build ()Lnet/minecraft/advancements/AdvancementRewards; +MD: net/minecraft/advancements/AdvancementRewards$Builder/m_10005_ (I)Lnet/minecraft/advancements/AdvancementRewards$Builder; net/minecraft/advancements/AdvancementRewards$Builder/experience (I)Lnet/minecraft/advancements/AdvancementRewards$Builder; +MD: net/minecraft/advancements/AdvancementRewards$Builder/m_10007_ (I)Lnet/minecraft/advancements/AdvancementRewards$Builder; net/minecraft/advancements/AdvancementRewards$Builder/addExperience (I)Lnet/minecraft/advancements/AdvancementRewards$Builder; +MD: net/minecraft/advancements/AdvancementRewards$Builder/m_10009_ (Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/advancements/AdvancementRewards$Builder; net/minecraft/advancements/AdvancementRewards$Builder/recipe (Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/advancements/AdvancementRewards$Builder; +MD: net/minecraft/advancements/AdvancementRewards$Builder/m_10011_ (Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/advancements/AdvancementRewards$Builder; net/minecraft/advancements/AdvancementRewards$Builder/addRecipe (Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/advancements/AdvancementRewards$Builder; +MD: net/minecraft/advancements/AdvancementRewards$Builder/m_144822_ (Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/advancements/AdvancementRewards$Builder; net/minecraft/advancements/AdvancementRewards$Builder/loot (Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/advancements/AdvancementRewards$Builder; +MD: net/minecraft/advancements/AdvancementRewards$Builder/m_144824_ (Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/advancements/AdvancementRewards$Builder; net/minecraft/advancements/AdvancementRewards$Builder/addLootTable (Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/advancements/AdvancementRewards$Builder; +MD: net/minecraft/advancements/AdvancementRewards$Builder/m_144826_ (Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/advancements/AdvancementRewards$Builder; net/minecraft/advancements/AdvancementRewards$Builder/function (Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/advancements/AdvancementRewards$Builder; +MD: net/minecraft/advancements/AdvancementRewards$Builder/m_144828_ (Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/advancements/AdvancementRewards$Builder; net/minecraft/advancements/AdvancementRewards$Builder/runs (Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/advancements/AdvancementRewards$Builder; +MD: net/minecraft/advancements/CriteriaTriggers/ ()V net/minecraft/advancements/CriteriaTriggers/ ()V +MD: net/minecraft/advancements/CriteriaTriggers/ ()V net/minecraft/advancements/CriteriaTriggers/ ()V +MD: net/minecraft/advancements/CriteriaTriggers/m_10594_ ()Ljava/lang/Iterable; net/minecraft/advancements/CriteriaTriggers/all ()Ljava/lang/Iterable; +MD: net/minecraft/advancements/CriteriaTriggers/m_10595_ (Lnet/minecraft/advancements/CriterionTrigger;)Lnet/minecraft/advancements/CriterionTrigger; net/minecraft/advancements/CriteriaTriggers/register (Lnet/minecraft/advancements/CriterionTrigger;)Lnet/minecraft/advancements/CriterionTrigger; +MD: net/minecraft/advancements/CriteriaTriggers/m_10597_ (Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/advancements/CriterionTrigger; net/minecraft/advancements/CriteriaTriggers/getCriterion (Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/advancements/CriterionTrigger; +MD: net/minecraft/advancements/Criterion/ (Lnet/minecraft/advancements/CriterionTriggerInstance;)V net/minecraft/advancements/Criterion/ (Lnet/minecraft/advancements/CriterionTriggerInstance;)V +MD: net/minecraft/advancements/Criterion/ ()V net/minecraft/advancements/Criterion/ ()V +MD: net/minecraft/advancements/Criterion/m_11416_ ()Lnet/minecraft/advancements/CriterionTriggerInstance; net/minecraft/advancements/Criterion/getTrigger ()Lnet/minecraft/advancements/CriterionTriggerInstance; +MD: net/minecraft/advancements/Criterion/m_11417_ (Lcom/google/gson/JsonObject;Lnet/minecraft/advancements/critereon/DeserializationContext;)Lnet/minecraft/advancements/Criterion; net/minecraft/advancements/Criterion/criterionFromJson (Lcom/google/gson/JsonObject;Lnet/minecraft/advancements/critereon/DeserializationContext;)Lnet/minecraft/advancements/Criterion; +MD: net/minecraft/advancements/Criterion/m_11420_ (Ljava/util/Map;Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/advancements/Criterion/serializeToNetwork (Ljava/util/Map;Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/advancements/Criterion/m_11423_ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/advancements/Criterion/serializeToNetwork (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/advancements/Criterion/m_11425_ ()Lcom/google/gson/JsonElement; net/minecraft/advancements/Criterion/serializeToJson ()Lcom/google/gson/JsonElement; +MD: net/minecraft/advancements/Criterion/m_11426_ (Lcom/google/gson/JsonObject;Lnet/minecraft/advancements/critereon/DeserializationContext;)Ljava/util/Map; net/minecraft/advancements/Criterion/criteriaFromJson (Lcom/google/gson/JsonObject;Lnet/minecraft/advancements/critereon/DeserializationContext;)Ljava/util/Map; +MD: net/minecraft/advancements/Criterion/m_11429_ (Lnet/minecraft/network/FriendlyByteBuf;)Lnet/minecraft/advancements/Criterion; net/minecraft/advancements/Criterion/criterionFromNetwork (Lnet/minecraft/network/FriendlyByteBuf;)Lnet/minecraft/advancements/Criterion; +MD: net/minecraft/advancements/Criterion/m_11431_ (Lnet/minecraft/network/FriendlyByteBuf;)Ljava/util/Map; net/minecraft/advancements/Criterion/criteriaFromNetwork (Lnet/minecraft/network/FriendlyByteBuf;)Ljava/util/Map; +MD: net/minecraft/advancements/Criterion/m_145257_ (Lnet/minecraft/network/FriendlyByteBuf;Lnet/minecraft/advancements/Criterion;)V net/minecraft/advancements/Criterion/lambda$serializeToNetwork$0 (Lnet/minecraft/network/FriendlyByteBuf;Lnet/minecraft/advancements/Criterion;)V +MD: net/minecraft/advancements/CriterionProgress/ ()V net/minecraft/advancements/CriterionProgress/ ()V +MD: net/minecraft/advancements/CriterionProgress/ ()V net/minecraft/advancements/CriterionProgress/ ()V +MD: net/minecraft/advancements/CriterionProgress/m_12911_ ()Z net/minecraft/advancements/CriterionProgress/isDone ()Z +MD: net/minecraft/advancements/CriterionProgress/m_12912_ (Ljava/lang/String;)Lnet/minecraft/advancements/CriterionProgress; net/minecraft/advancements/CriterionProgress/fromJson (Ljava/lang/String;)Lnet/minecraft/advancements/CriterionProgress; +MD: net/minecraft/advancements/CriterionProgress/m_12914_ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/advancements/CriterionProgress/serializeToNetwork (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/advancements/CriterionProgress/m_12916_ ()V net/minecraft/advancements/CriterionProgress/grant ()V +MD: net/minecraft/advancements/CriterionProgress/m_12917_ (Lnet/minecraft/network/FriendlyByteBuf;)Lnet/minecraft/advancements/CriterionProgress; net/minecraft/advancements/CriterionProgress/fromNetwork (Lnet/minecraft/network/FriendlyByteBuf;)Lnet/minecraft/advancements/CriterionProgress; +MD: net/minecraft/advancements/CriterionProgress/m_12919_ ()V net/minecraft/advancements/CriterionProgress/revoke ()V +MD: net/minecraft/advancements/CriterionProgress/m_12920_ ()Ljava/util/Date; net/minecraft/advancements/CriterionProgress/getObtained ()Ljava/util/Date; +MD: net/minecraft/advancements/CriterionProgress/m_12921_ ()Lcom/google/gson/JsonElement; net/minecraft/advancements/CriterionProgress/serializeToJson ()Lcom/google/gson/JsonElement; +MD: net/minecraft/advancements/CriterionProgress/toString ()Ljava/lang/String; net/minecraft/advancements/CriterionProgress/toString ()Ljava/lang/String; +MD: net/minecraft/advancements/CriterionTrigger/m_5656_ (Lnet/minecraft/server/PlayerAdvancements;)V net/minecraft/advancements/CriterionTrigger/removePlayerListeners (Lnet/minecraft/server/PlayerAdvancements;)V +MD: net/minecraft/advancements/CriterionTrigger/m_5868_ (Lcom/google/gson/JsonObject;Lnet/minecraft/advancements/critereon/DeserializationContext;)Lnet/minecraft/advancements/CriterionTriggerInstance; net/minecraft/advancements/CriterionTrigger/createInstance (Lcom/google/gson/JsonObject;Lnet/minecraft/advancements/critereon/DeserializationContext;)Lnet/minecraft/advancements/CriterionTriggerInstance; +MD: net/minecraft/advancements/CriterionTrigger/m_6467_ (Lnet/minecraft/server/PlayerAdvancements;Lnet/minecraft/advancements/CriterionTrigger$Listener;)V net/minecraft/advancements/CriterionTrigger/addPlayerListener (Lnet/minecraft/server/PlayerAdvancements;Lnet/minecraft/advancements/CriterionTrigger$Listener;)V +MD: net/minecraft/advancements/CriterionTrigger/m_6468_ (Lnet/minecraft/server/PlayerAdvancements;Lnet/minecraft/advancements/CriterionTrigger$Listener;)V net/minecraft/advancements/CriterionTrigger/removePlayerListener (Lnet/minecraft/server/PlayerAdvancements;Lnet/minecraft/advancements/CriterionTrigger$Listener;)V +MD: net/minecraft/advancements/CriterionTrigger/m_7295_ ()Lnet/minecraft/resources/ResourceLocation; net/minecraft/advancements/CriterionTrigger/getId ()Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/advancements/CriterionTrigger$Listener/ (Lnet/minecraft/advancements/CriterionTriggerInstance;Lnet/minecraft/advancements/Advancement;Ljava/lang/String;)V net/minecraft/advancements/CriterionTrigger$Listener/ (Lnet/minecraft/advancements/CriterionTriggerInstance;Lnet/minecraft/advancements/Advancement;Ljava/lang/String;)V +MD: net/minecraft/advancements/CriterionTrigger$Listener/equals (Ljava/lang/Object;)Z net/minecraft/advancements/CriterionTrigger$Listener/equals (Ljava/lang/Object;)Z +MD: net/minecraft/advancements/CriterionTrigger$Listener/hashCode ()I net/minecraft/advancements/CriterionTrigger$Listener/hashCode ()I +MD: net/minecraft/advancements/CriterionTrigger$Listener/m_13685_ ()Lnet/minecraft/advancements/CriterionTriggerInstance; net/minecraft/advancements/CriterionTrigger$Listener/getTriggerInstance ()Lnet/minecraft/advancements/CriterionTriggerInstance; +MD: net/minecraft/advancements/CriterionTrigger$Listener/m_13686_ (Lnet/minecraft/server/PlayerAdvancements;)V net/minecraft/advancements/CriterionTrigger$Listener/run (Lnet/minecraft/server/PlayerAdvancements;)V +MD: net/minecraft/advancements/CriterionTriggerInstance/m_7294_ ()Lnet/minecraft/resources/ResourceLocation; net/minecraft/advancements/CriterionTriggerInstance/getCriterion ()Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/advancements/CriterionTriggerInstance/m_7683_ (Lnet/minecraft/advancements/critereon/SerializationContext;)Lcom/google/gson/JsonObject; net/minecraft/advancements/CriterionTriggerInstance/serializeToJson (Lnet/minecraft/advancements/critereon/SerializationContext;)Lcom/google/gson/JsonObject; +MD: net/minecraft/advancements/DisplayInfo/ (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/network/chat/Component;Lnet/minecraft/network/chat/Component;Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/advancements/FrameType;ZZZ)V net/minecraft/advancements/DisplayInfo/ (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/network/chat/Component;Lnet/minecraft/network/chat/Component;Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/advancements/FrameType;ZZZ)V +MD: net/minecraft/advancements/DisplayInfo/m_14977_ ()Lnet/minecraft/network/chat/Component; net/minecraft/advancements/DisplayInfo/getTitle ()Lnet/minecraft/network/chat/Component; +MD: net/minecraft/advancements/DisplayInfo/m_14978_ (FF)V net/minecraft/advancements/DisplayInfo/setLocation (FF)V +MD: net/minecraft/advancements/DisplayInfo/m_14981_ (Lcom/google/gson/JsonObject;)Lnet/minecraft/advancements/DisplayInfo; net/minecraft/advancements/DisplayInfo/fromJson (Lcom/google/gson/JsonObject;)Lnet/minecraft/advancements/DisplayInfo; +MD: net/minecraft/advancements/DisplayInfo/m_14983_ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/advancements/DisplayInfo/serializeToNetwork (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/advancements/DisplayInfo/m_14985_ ()Lnet/minecraft/network/chat/Component; net/minecraft/advancements/DisplayInfo/getDescription ()Lnet/minecraft/network/chat/Component; +MD: net/minecraft/advancements/DisplayInfo/m_14986_ (Lcom/google/gson/JsonObject;)Lnet/minecraft/world/item/ItemStack; net/minecraft/advancements/DisplayInfo/getIcon (Lcom/google/gson/JsonObject;)Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/advancements/DisplayInfo/m_14988_ (Lnet/minecraft/network/FriendlyByteBuf;)Lnet/minecraft/advancements/DisplayInfo; net/minecraft/advancements/DisplayInfo/fromNetwork (Lnet/minecraft/network/FriendlyByteBuf;)Lnet/minecraft/advancements/DisplayInfo; +MD: net/minecraft/advancements/DisplayInfo/m_14990_ ()Lnet/minecraft/world/item/ItemStack; net/minecraft/advancements/DisplayInfo/getIcon ()Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/advancements/DisplayInfo/m_14991_ ()Lnet/minecraft/resources/ResourceLocation; net/minecraft/advancements/DisplayInfo/getBackground ()Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/advancements/DisplayInfo/m_14992_ ()Lnet/minecraft/advancements/FrameType; net/minecraft/advancements/DisplayInfo/getFrame ()Lnet/minecraft/advancements/FrameType; +MD: net/minecraft/advancements/DisplayInfo/m_14993_ ()F net/minecraft/advancements/DisplayInfo/getX ()F +MD: net/minecraft/advancements/DisplayInfo/m_14994_ ()F net/minecraft/advancements/DisplayInfo/getY ()F +MD: net/minecraft/advancements/DisplayInfo/m_14995_ ()Z net/minecraft/advancements/DisplayInfo/shouldShowToast ()Z +MD: net/minecraft/advancements/DisplayInfo/m_14996_ ()Z net/minecraft/advancements/DisplayInfo/shouldAnnounceChat ()Z +MD: net/minecraft/advancements/DisplayInfo/m_14997_ ()Z net/minecraft/advancements/DisplayInfo/isHidden ()Z +MD: net/minecraft/advancements/DisplayInfo/m_14998_ ()Lcom/google/gson/JsonElement; net/minecraft/advancements/DisplayInfo/serializeToJson ()Lcom/google/gson/JsonElement; +MD: net/minecraft/advancements/DisplayInfo/m_14999_ ()Lcom/google/gson/JsonObject; net/minecraft/advancements/DisplayInfo/serializeIcon ()Lcom/google/gson/JsonObject; +MD: net/minecraft/advancements/FrameType/ ()V net/minecraft/advancements/FrameType/ ()V +MD: net/minecraft/advancements/FrameType/ (Ljava/lang/String;ILjava/lang/String;ILnet/minecraft/ChatFormatting;)V net/minecraft/advancements/FrameType/ (Ljava/lang/String;ILjava/lang/String;ILnet/minecraft/ChatFormatting;)V +MD: net/minecraft/advancements/FrameType/m_145833_ ()[Lnet/minecraft/advancements/FrameType; net/minecraft/advancements/FrameType/$values ()[Lnet/minecraft/advancements/FrameType; +MD: net/minecraft/advancements/FrameType/m_15548_ ()Ljava/lang/String; net/minecraft/advancements/FrameType/getName ()Ljava/lang/String; +MD: net/minecraft/advancements/FrameType/m_15549_ (Ljava/lang/String;)Lnet/minecraft/advancements/FrameType; net/minecraft/advancements/FrameType/byName (Ljava/lang/String;)Lnet/minecraft/advancements/FrameType; +MD: net/minecraft/advancements/FrameType/m_15551_ ()I net/minecraft/advancements/FrameType/getTexture ()I +MD: net/minecraft/advancements/FrameType/m_15552_ ()Lnet/minecraft/ChatFormatting; net/minecraft/advancements/FrameType/getChatColor ()Lnet/minecraft/ChatFormatting; +MD: net/minecraft/advancements/FrameType/m_15553_ ()Lnet/minecraft/network/chat/Component; net/minecraft/advancements/FrameType/getDisplayName ()Lnet/minecraft/network/chat/Component; +MD: net/minecraft/advancements/FrameType/valueOf (Ljava/lang/String;)Lnet/minecraft/advancements/FrameType; net/minecraft/advancements/FrameType/valueOf (Ljava/lang/String;)Lnet/minecraft/advancements/FrameType; +MD: net/minecraft/advancements/FrameType/values ()[Lnet/minecraft/advancements/FrameType; net/minecraft/advancements/FrameType/values ()[Lnet/minecraft/advancements/FrameType; +MD: net/minecraft/advancements/RequirementsStrategy/ ()V net/minecraft/advancements/RequirementsStrategy/ ()V +MD: net/minecraft/advancements/RequirementsStrategy/m_15981_ (Ljava/util/Collection;)[[Ljava/lang/String; net/minecraft/advancements/RequirementsStrategy/lambda$static$1 (Ljava/util/Collection;)[[Ljava/lang/String; +MD: net/minecraft/advancements/RequirementsStrategy/m_15983_ (Ljava/util/Collection;)[[Ljava/lang/String; net/minecraft/advancements/RequirementsStrategy/lambda$static$0 (Ljava/util/Collection;)[[Ljava/lang/String; +MD: net/minecraft/advancements/RequirementsStrategy/m_15985_ (Ljava/util/Collection;)[[Ljava/lang/String; net/minecraft/advancements/RequirementsStrategy/createRequirements (Ljava/util/Collection;)[[Ljava/lang/String; +MD: net/minecraft/advancements/TreeNodePosition/ (Lnet/minecraft/advancements/Advancement;Lnet/minecraft/advancements/TreeNodePosition;Lnet/minecraft/advancements/TreeNodePosition;II)V net/minecraft/advancements/TreeNodePosition/ (Lnet/minecraft/advancements/Advancement;Lnet/minecraft/advancements/TreeNodePosition;Lnet/minecraft/advancements/TreeNodePosition;II)V +MD: net/minecraft/advancements/TreeNodePosition/m_16572_ ()V net/minecraft/advancements/TreeNodePosition/firstWalk ()V +MD: net/minecraft/advancements/TreeNodePosition/m_16573_ (F)V net/minecraft/advancements/TreeNodePosition/thirdWalk (F)V +MD: net/minecraft/advancements/TreeNodePosition/m_16575_ (FIF)F net/minecraft/advancements/TreeNodePosition/secondWalk (FIF)F +MD: net/minecraft/advancements/TreeNodePosition/m_16579_ (Lnet/minecraft/advancements/TreeNodePosition;)Lnet/minecraft/advancements/TreeNodePosition; net/minecraft/advancements/TreeNodePosition/apportion (Lnet/minecraft/advancements/TreeNodePosition;)Lnet/minecraft/advancements/TreeNodePosition; +MD: net/minecraft/advancements/TreeNodePosition/m_16581_ (Lnet/minecraft/advancements/TreeNodePosition;F)V net/minecraft/advancements/TreeNodePosition/moveSubtree (Lnet/minecraft/advancements/TreeNodePosition;F)V +MD: net/minecraft/advancements/TreeNodePosition/m_16584_ (Lnet/minecraft/advancements/TreeNodePosition;Lnet/minecraft/advancements/TreeNodePosition;)Lnet/minecraft/advancements/TreeNodePosition; net/minecraft/advancements/TreeNodePosition/getAncestor (Lnet/minecraft/advancements/TreeNodePosition;Lnet/minecraft/advancements/TreeNodePosition;)Lnet/minecraft/advancements/TreeNodePosition; +MD: net/minecraft/advancements/TreeNodePosition/m_16587_ (Lnet/minecraft/advancements/Advancement;)V net/minecraft/advancements/TreeNodePosition/run (Lnet/minecraft/advancements/Advancement;)V +MD: net/minecraft/advancements/TreeNodePosition/m_16589_ (Lnet/minecraft/advancements/Advancement;Lnet/minecraft/advancements/TreeNodePosition;)Lnet/minecraft/advancements/TreeNodePosition; net/minecraft/advancements/TreeNodePosition/addChild (Lnet/minecraft/advancements/Advancement;Lnet/minecraft/advancements/TreeNodePosition;)Lnet/minecraft/advancements/TreeNodePosition; +MD: net/minecraft/advancements/TreeNodePosition/m_16592_ ()V net/minecraft/advancements/TreeNodePosition/executeShifts ()V +MD: net/minecraft/advancements/TreeNodePosition/m_16593_ ()Lnet/minecraft/advancements/TreeNodePosition; net/minecraft/advancements/TreeNodePosition/previousOrThread ()Lnet/minecraft/advancements/TreeNodePosition; +MD: net/minecraft/advancements/TreeNodePosition/m_16594_ ()Lnet/minecraft/advancements/TreeNodePosition; net/minecraft/advancements/TreeNodePosition/nextOrThread ()Lnet/minecraft/advancements/TreeNodePosition; +MD: net/minecraft/advancements/TreeNodePosition/m_16595_ ()V net/minecraft/advancements/TreeNodePosition/finalizePosition ()V +MD: net/minecraft/advancements/critereon/AbstractCriterionTriggerInstance/ (Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/advancements/critereon/ContextAwarePredicate;)V net/minecraft/advancements/critereon/AbstractCriterionTriggerInstance/ (Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/advancements/critereon/ContextAwarePredicate;)V +MD: net/minecraft/advancements/critereon/AbstractCriterionTriggerInstance/m_285924_ ()Lnet/minecraft/advancements/critereon/ContextAwarePredicate; net/minecraft/advancements/critereon/AbstractCriterionTriggerInstance/getPlayerPredicate ()Lnet/minecraft/advancements/critereon/ContextAwarePredicate; +MD: net/minecraft/advancements/critereon/AbstractCriterionTriggerInstance/m_7294_ ()Lnet/minecraft/resources/ResourceLocation; net/minecraft/advancements/critereon/AbstractCriterionTriggerInstance/getCriterion ()Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/advancements/critereon/AbstractCriterionTriggerInstance/m_7683_ (Lnet/minecraft/advancements/critereon/SerializationContext;)Lcom/google/gson/JsonObject; net/minecraft/advancements/critereon/AbstractCriterionTriggerInstance/serializeToJson (Lnet/minecraft/advancements/critereon/SerializationContext;)Lcom/google/gson/JsonObject; +MD: net/minecraft/advancements/critereon/AbstractCriterionTriggerInstance/toString ()Ljava/lang/String; net/minecraft/advancements/critereon/AbstractCriterionTriggerInstance/toString ()Ljava/lang/String; +MD: net/minecraft/advancements/critereon/BeeNestDestroyedTrigger/ ()V net/minecraft/advancements/critereon/BeeNestDestroyedTrigger/ ()V +MD: net/minecraft/advancements/critereon/BeeNestDestroyedTrigger/ ()V net/minecraft/advancements/critereon/BeeNestDestroyedTrigger/ ()V +MD: net/minecraft/advancements/critereon/BeeNestDestroyedTrigger/m_146651_ (Lnet/minecraft/server/level/ServerPlayer;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/item/ItemStack;I)V net/minecraft/advancements/critereon/BeeNestDestroyedTrigger/trigger (Lnet/minecraft/server/level/ServerPlayer;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/item/ItemStack;I)V +MD: net/minecraft/advancements/critereon/BeeNestDestroyedTrigger/m_146656_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/item/ItemStack;ILnet/minecraft/advancements/critereon/BeeNestDestroyedTrigger$TriggerInstance;)Z net/minecraft/advancements/critereon/BeeNestDestroyedTrigger/lambda$trigger$1 (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/item/ItemStack;ILnet/minecraft/advancements/critereon/BeeNestDestroyedTrigger$TriggerInstance;)Z +MD: net/minecraft/advancements/critereon/BeeNestDestroyedTrigger/m_17487_ (Lcom/google/gson/JsonObject;)Lnet/minecraft/world/level/block/Block; net/minecraft/advancements/critereon/BeeNestDestroyedTrigger/deserializeBlock (Lcom/google/gson/JsonObject;)Lnet/minecraft/world/level/block/Block; +MD: net/minecraft/advancements/critereon/BeeNestDestroyedTrigger/m_17493_ (Lnet/minecraft/resources/ResourceLocation;)Lcom/google/gson/JsonSyntaxException; net/minecraft/advancements/critereon/BeeNestDestroyedTrigger/lambda$deserializeBlock$0 (Lnet/minecraft/resources/ResourceLocation;)Lcom/google/gson/JsonSyntaxException; +MD: net/minecraft/advancements/critereon/BeeNestDestroyedTrigger/m_7214_ (Lcom/google/gson/JsonObject;Lnet/minecraft/advancements/critereon/ContextAwarePredicate;Lnet/minecraft/advancements/critereon/DeserializationContext;)Lnet/minecraft/advancements/critereon/AbstractCriterionTriggerInstance; net/minecraft/advancements/critereon/BeeNestDestroyedTrigger/createInstance (Lcom/google/gson/JsonObject;Lnet/minecraft/advancements/critereon/ContextAwarePredicate;Lnet/minecraft/advancements/critereon/DeserializationContext;)Lnet/minecraft/advancements/critereon/AbstractCriterionTriggerInstance; +MD: net/minecraft/advancements/critereon/BeeNestDestroyedTrigger/m_7214_ (Lcom/google/gson/JsonObject;Lnet/minecraft/advancements/critereon/ContextAwarePredicate;Lnet/minecraft/advancements/critereon/DeserializationContext;)Lnet/minecraft/advancements/critereon/BeeNestDestroyedTrigger$TriggerInstance; net/minecraft/advancements/critereon/BeeNestDestroyedTrigger/createInstance (Lcom/google/gson/JsonObject;Lnet/minecraft/advancements/critereon/ContextAwarePredicate;Lnet/minecraft/advancements/critereon/DeserializationContext;)Lnet/minecraft/advancements/critereon/BeeNestDestroyedTrigger$TriggerInstance; +MD: net/minecraft/advancements/critereon/BeeNestDestroyedTrigger/m_7295_ ()Lnet/minecraft/resources/ResourceLocation; net/minecraft/advancements/critereon/BeeNestDestroyedTrigger/getId ()Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/advancements/critereon/BeeNestDestroyedTrigger$TriggerInstance/ (Lnet/minecraft/advancements/critereon/ContextAwarePredicate;Lnet/minecraft/world/level/block/Block;Lnet/minecraft/advancements/critereon/ItemPredicate;Lnet/minecraft/advancements/critereon/MinMaxBounds$Ints;)V net/minecraft/advancements/critereon/BeeNestDestroyedTrigger$TriggerInstance/ (Lnet/minecraft/advancements/critereon/ContextAwarePredicate;Lnet/minecraft/world/level/block/Block;Lnet/minecraft/advancements/critereon/ItemPredicate;Lnet/minecraft/advancements/critereon/MinMaxBounds$Ints;)V +MD: net/minecraft/advancements/critereon/BeeNestDestroyedTrigger$TriggerInstance/m_146661_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/item/ItemStack;I)Z net/minecraft/advancements/critereon/BeeNestDestroyedTrigger$TriggerInstance/matches (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/item/ItemStack;I)Z +MD: net/minecraft/advancements/critereon/BeeNestDestroyedTrigger$TriggerInstance/m_17512_ (Lnet/minecraft/world/level/block/Block;Lnet/minecraft/advancements/critereon/ItemPredicate$Builder;Lnet/minecraft/advancements/critereon/MinMaxBounds$Ints;)Lnet/minecraft/advancements/critereon/BeeNestDestroyedTrigger$TriggerInstance; net/minecraft/advancements/critereon/BeeNestDestroyedTrigger$TriggerInstance/destroyedBeeNest (Lnet/minecraft/world/level/block/Block;Lnet/minecraft/advancements/critereon/ItemPredicate$Builder;Lnet/minecraft/advancements/critereon/MinMaxBounds$Ints;)Lnet/minecraft/advancements/critereon/BeeNestDestroyedTrigger$TriggerInstance; +MD: net/minecraft/advancements/critereon/BeeNestDestroyedTrigger$TriggerInstance/m_7683_ (Lnet/minecraft/advancements/critereon/SerializationContext;)Lcom/google/gson/JsonObject; net/minecraft/advancements/critereon/BeeNestDestroyedTrigger$TriggerInstance/serializeToJson (Lnet/minecraft/advancements/critereon/SerializationContext;)Lcom/google/gson/JsonObject; +MD: net/minecraft/advancements/critereon/BlockPredicate/ ()V net/minecraft/advancements/critereon/BlockPredicate/ ()V +MD: net/minecraft/advancements/critereon/BlockPredicate/ (Lnet/minecraft/tags/TagKey;Ljava/util/Set;Lnet/minecraft/advancements/critereon/StatePropertiesPredicate;Lnet/minecraft/advancements/critereon/NbtPredicate;)V net/minecraft/advancements/critereon/BlockPredicate/ (Lnet/minecraft/tags/TagKey;Ljava/util/Set;Lnet/minecraft/advancements/critereon/StatePropertiesPredicate;Lnet/minecraft/advancements/critereon/NbtPredicate;)V +MD: net/minecraft/advancements/critereon/BlockPredicate/m_146719_ (Lnet/minecraft/resources/ResourceLocation;)Lcom/google/gson/JsonSyntaxException; net/minecraft/advancements/critereon/BlockPredicate/lambda$fromJson$0 (Lnet/minecraft/resources/ResourceLocation;)Lcom/google/gson/JsonSyntaxException; +MD: net/minecraft/advancements/critereon/BlockPredicate/m_17913_ ()Lcom/google/gson/JsonElement; net/minecraft/advancements/critereon/BlockPredicate/serializeToJson ()Lcom/google/gson/JsonElement; +MD: net/minecraft/advancements/critereon/BlockPredicate/m_17914_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;)Z net/minecraft/advancements/critereon/BlockPredicate/matches (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/advancements/critereon/BlockPredicate/m_17917_ (Lcom/google/gson/JsonElement;)Lnet/minecraft/advancements/critereon/BlockPredicate; net/minecraft/advancements/critereon/BlockPredicate/fromJson (Lcom/google/gson/JsonElement;)Lnet/minecraft/advancements/critereon/BlockPredicate; +MD: net/minecraft/advancements/critereon/BlockPredicate$Builder/ ()V net/minecraft/advancements/critereon/BlockPredicate$Builder/ ()V +MD: net/minecraft/advancements/critereon/BlockPredicate$Builder/m_146722_ (Ljava/lang/Iterable;)Lnet/minecraft/advancements/critereon/BlockPredicate$Builder; net/minecraft/advancements/critereon/BlockPredicate$Builder/of (Ljava/lang/Iterable;)Lnet/minecraft/advancements/critereon/BlockPredicate$Builder; +MD: net/minecraft/advancements/critereon/BlockPredicate$Builder/m_146724_ (Lnet/minecraft/nbt/CompoundTag;)Lnet/minecraft/advancements/critereon/BlockPredicate$Builder; net/minecraft/advancements/critereon/BlockPredicate$Builder/hasNbt (Lnet/minecraft/nbt/CompoundTag;)Lnet/minecraft/advancements/critereon/BlockPredicate$Builder; +MD: net/minecraft/advancements/critereon/BlockPredicate$Builder/m_146726_ ([Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/advancements/critereon/BlockPredicate$Builder; net/minecraft/advancements/critereon/BlockPredicate$Builder/of ([Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/advancements/critereon/BlockPredicate$Builder; +MD: net/minecraft/advancements/critereon/BlockPredicate$Builder/m_17924_ ()Lnet/minecraft/advancements/critereon/BlockPredicate$Builder; net/minecraft/advancements/critereon/BlockPredicate$Builder/block ()Lnet/minecraft/advancements/critereon/BlockPredicate$Builder; +MD: net/minecraft/advancements/critereon/BlockPredicate$Builder/m_17929_ (Lnet/minecraft/advancements/critereon/StatePropertiesPredicate;)Lnet/minecraft/advancements/critereon/BlockPredicate$Builder; net/minecraft/advancements/critereon/BlockPredicate$Builder/setProperties (Lnet/minecraft/advancements/critereon/StatePropertiesPredicate;)Lnet/minecraft/advancements/critereon/BlockPredicate$Builder; +MD: net/minecraft/advancements/critereon/BlockPredicate$Builder/m_17931_ ()Lnet/minecraft/advancements/critereon/BlockPredicate; net/minecraft/advancements/critereon/BlockPredicate$Builder/build ()Lnet/minecraft/advancements/critereon/BlockPredicate; +MD: net/minecraft/advancements/critereon/BlockPredicate$Builder/m_204027_ (Lnet/minecraft/tags/TagKey;)Lnet/minecraft/advancements/critereon/BlockPredicate$Builder; net/minecraft/advancements/critereon/BlockPredicate$Builder/of (Lnet/minecraft/tags/TagKey;)Lnet/minecraft/advancements/critereon/BlockPredicate$Builder; +MD: net/minecraft/advancements/critereon/BredAnimalsTrigger/ ()V net/minecraft/advancements/critereon/BredAnimalsTrigger/ ()V +MD: net/minecraft/advancements/critereon/BredAnimalsTrigger/ ()V net/minecraft/advancements/critereon/BredAnimalsTrigger/ ()V +MD: net/minecraft/advancements/critereon/BredAnimalsTrigger/m_147278_ (Lnet/minecraft/server/level/ServerPlayer;Lnet/minecraft/world/entity/animal/Animal;Lnet/minecraft/world/entity/animal/Animal;Lnet/minecraft/world/entity/AgeableMob;)V net/minecraft/advancements/critereon/BredAnimalsTrigger/trigger (Lnet/minecraft/server/level/ServerPlayer;Lnet/minecraft/world/entity/animal/Animal;Lnet/minecraft/world/entity/animal/Animal;Lnet/minecraft/world/entity/AgeableMob;)V +MD: net/minecraft/advancements/critereon/BredAnimalsTrigger/m_18649_ (Lnet/minecraft/world/level/storage/loot/LootContext;Lnet/minecraft/world/level/storage/loot/LootContext;Lnet/minecraft/world/level/storage/loot/LootContext;Lnet/minecraft/advancements/critereon/BredAnimalsTrigger$TriggerInstance;)Z net/minecraft/advancements/critereon/BredAnimalsTrigger/lambda$trigger$0 (Lnet/minecraft/world/level/storage/loot/LootContext;Lnet/minecraft/world/level/storage/loot/LootContext;Lnet/minecraft/world/level/storage/loot/LootContext;Lnet/minecraft/advancements/critereon/BredAnimalsTrigger$TriggerInstance;)Z +MD: net/minecraft/advancements/critereon/BredAnimalsTrigger/m_7214_ (Lcom/google/gson/JsonObject;Lnet/minecraft/advancements/critereon/ContextAwarePredicate;Lnet/minecraft/advancements/critereon/DeserializationContext;)Lnet/minecraft/advancements/critereon/AbstractCriterionTriggerInstance; net/minecraft/advancements/critereon/BredAnimalsTrigger/createInstance (Lcom/google/gson/JsonObject;Lnet/minecraft/advancements/critereon/ContextAwarePredicate;Lnet/minecraft/advancements/critereon/DeserializationContext;)Lnet/minecraft/advancements/critereon/AbstractCriterionTriggerInstance; +MD: net/minecraft/advancements/critereon/BredAnimalsTrigger/m_7214_ (Lcom/google/gson/JsonObject;Lnet/minecraft/advancements/critereon/ContextAwarePredicate;Lnet/minecraft/advancements/critereon/DeserializationContext;)Lnet/minecraft/advancements/critereon/BredAnimalsTrigger$TriggerInstance; net/minecraft/advancements/critereon/BredAnimalsTrigger/createInstance (Lcom/google/gson/JsonObject;Lnet/minecraft/advancements/critereon/ContextAwarePredicate;Lnet/minecraft/advancements/critereon/DeserializationContext;)Lnet/minecraft/advancements/critereon/BredAnimalsTrigger$TriggerInstance; +MD: net/minecraft/advancements/critereon/BredAnimalsTrigger/m_7295_ ()Lnet/minecraft/resources/ResourceLocation; net/minecraft/advancements/critereon/BredAnimalsTrigger/getId ()Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/advancements/critereon/BredAnimalsTrigger$TriggerInstance/ (Lnet/minecraft/advancements/critereon/ContextAwarePredicate;Lnet/minecraft/advancements/critereon/ContextAwarePredicate;Lnet/minecraft/advancements/critereon/ContextAwarePredicate;Lnet/minecraft/advancements/critereon/ContextAwarePredicate;)V net/minecraft/advancements/critereon/BredAnimalsTrigger$TriggerInstance/ (Lnet/minecraft/advancements/critereon/ContextAwarePredicate;Lnet/minecraft/advancements/critereon/ContextAwarePredicate;Lnet/minecraft/advancements/critereon/ContextAwarePredicate;Lnet/minecraft/advancements/critereon/ContextAwarePredicate;)V +MD: net/minecraft/advancements/critereon/BredAnimalsTrigger$TriggerInstance/m_18667_ (Lnet/minecraft/advancements/critereon/EntityPredicate$Builder;)Lnet/minecraft/advancements/critereon/BredAnimalsTrigger$TriggerInstance; net/minecraft/advancements/critereon/BredAnimalsTrigger$TriggerInstance/bredAnimals (Lnet/minecraft/advancements/critereon/EntityPredicate$Builder;)Lnet/minecraft/advancements/critereon/BredAnimalsTrigger$TriggerInstance; +MD: net/minecraft/advancements/critereon/BredAnimalsTrigger$TriggerInstance/m_18669_ (Lnet/minecraft/advancements/critereon/EntityPredicate;Lnet/minecraft/advancements/critereon/EntityPredicate;Lnet/minecraft/advancements/critereon/EntityPredicate;)Lnet/minecraft/advancements/critereon/BredAnimalsTrigger$TriggerInstance; net/minecraft/advancements/critereon/BredAnimalsTrigger$TriggerInstance/bredAnimals (Lnet/minecraft/advancements/critereon/EntityPredicate;Lnet/minecraft/advancements/critereon/EntityPredicate;Lnet/minecraft/advancements/critereon/EntityPredicate;)Lnet/minecraft/advancements/critereon/BredAnimalsTrigger$TriggerInstance; +MD: net/minecraft/advancements/critereon/BredAnimalsTrigger$TriggerInstance/m_18675_ (Lnet/minecraft/world/level/storage/loot/LootContext;Lnet/minecraft/world/level/storage/loot/LootContext;Lnet/minecraft/world/level/storage/loot/LootContext;)Z net/minecraft/advancements/critereon/BredAnimalsTrigger$TriggerInstance/matches (Lnet/minecraft/world/level/storage/loot/LootContext;Lnet/minecraft/world/level/storage/loot/LootContext;Lnet/minecraft/world/level/storage/loot/LootContext;)Z +MD: net/minecraft/advancements/critereon/BredAnimalsTrigger$TriggerInstance/m_18679_ ()Lnet/minecraft/advancements/critereon/BredAnimalsTrigger$TriggerInstance; net/minecraft/advancements/critereon/BredAnimalsTrigger$TriggerInstance/bredAnimals ()Lnet/minecraft/advancements/critereon/BredAnimalsTrigger$TriggerInstance; +MD: net/minecraft/advancements/critereon/BredAnimalsTrigger$TriggerInstance/m_7683_ (Lnet/minecraft/advancements/critereon/SerializationContext;)Lcom/google/gson/JsonObject; net/minecraft/advancements/critereon/BredAnimalsTrigger$TriggerInstance/serializeToJson (Lnet/minecraft/advancements/critereon/SerializationContext;)Lcom/google/gson/JsonObject; +MD: net/minecraft/advancements/critereon/BrewedPotionTrigger/ ()V net/minecraft/advancements/critereon/BrewedPotionTrigger/ ()V +MD: net/minecraft/advancements/critereon/BrewedPotionTrigger/ ()V net/minecraft/advancements/critereon/BrewedPotionTrigger/ ()V +MD: net/minecraft/advancements/critereon/BrewedPotionTrigger/m_19120_ (Lnet/minecraft/server/level/ServerPlayer;Lnet/minecraft/world/item/alchemy/Potion;)V net/minecraft/advancements/critereon/BrewedPotionTrigger/trigger (Lnet/minecraft/server/level/ServerPlayer;Lnet/minecraft/world/item/alchemy/Potion;)V +MD: net/minecraft/advancements/critereon/BrewedPotionTrigger/m_19123_ (Lnet/minecraft/world/item/alchemy/Potion;Lnet/minecraft/advancements/critereon/BrewedPotionTrigger$TriggerInstance;)Z net/minecraft/advancements/critereon/BrewedPotionTrigger/lambda$trigger$1 (Lnet/minecraft/world/item/alchemy/Potion;Lnet/minecraft/advancements/critereon/BrewedPotionTrigger$TriggerInstance;)Z +MD: net/minecraft/advancements/critereon/BrewedPotionTrigger/m_19130_ (Lnet/minecraft/resources/ResourceLocation;)Lcom/google/gson/JsonSyntaxException; net/minecraft/advancements/critereon/BrewedPotionTrigger/lambda$createInstance$0 (Lnet/minecraft/resources/ResourceLocation;)Lcom/google/gson/JsonSyntaxException; +MD: net/minecraft/advancements/critereon/BrewedPotionTrigger/m_7214_ (Lcom/google/gson/JsonObject;Lnet/minecraft/advancements/critereon/ContextAwarePredicate;Lnet/minecraft/advancements/critereon/DeserializationContext;)Lnet/minecraft/advancements/critereon/AbstractCriterionTriggerInstance; net/minecraft/advancements/critereon/BrewedPotionTrigger/createInstance (Lcom/google/gson/JsonObject;Lnet/minecraft/advancements/critereon/ContextAwarePredicate;Lnet/minecraft/advancements/critereon/DeserializationContext;)Lnet/minecraft/advancements/critereon/AbstractCriterionTriggerInstance; +MD: net/minecraft/advancements/critereon/BrewedPotionTrigger/m_7214_ (Lcom/google/gson/JsonObject;Lnet/minecraft/advancements/critereon/ContextAwarePredicate;Lnet/minecraft/advancements/critereon/DeserializationContext;)Lnet/minecraft/advancements/critereon/BrewedPotionTrigger$TriggerInstance; net/minecraft/advancements/critereon/BrewedPotionTrigger/createInstance (Lcom/google/gson/JsonObject;Lnet/minecraft/advancements/critereon/ContextAwarePredicate;Lnet/minecraft/advancements/critereon/DeserializationContext;)Lnet/minecraft/advancements/critereon/BrewedPotionTrigger$TriggerInstance; +MD: net/minecraft/advancements/critereon/BrewedPotionTrigger/m_7295_ ()Lnet/minecraft/resources/ResourceLocation; net/minecraft/advancements/critereon/BrewedPotionTrigger/getId ()Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/advancements/critereon/BrewedPotionTrigger$TriggerInstance/ (Lnet/minecraft/advancements/critereon/ContextAwarePredicate;Lnet/minecraft/world/item/alchemy/Potion;)V net/minecraft/advancements/critereon/BrewedPotionTrigger$TriggerInstance/ (Lnet/minecraft/advancements/critereon/ContextAwarePredicate;Lnet/minecraft/world/item/alchemy/Potion;)V +MD: net/minecraft/advancements/critereon/BrewedPotionTrigger$TriggerInstance/m_19141_ (Lnet/minecraft/world/item/alchemy/Potion;)Z net/minecraft/advancements/critereon/BrewedPotionTrigger$TriggerInstance/matches (Lnet/minecraft/world/item/alchemy/Potion;)Z +MD: net/minecraft/advancements/critereon/BrewedPotionTrigger$TriggerInstance/m_19145_ ()Lnet/minecraft/advancements/critereon/BrewedPotionTrigger$TriggerInstance; net/minecraft/advancements/critereon/BrewedPotionTrigger$TriggerInstance/brewedPotion ()Lnet/minecraft/advancements/critereon/BrewedPotionTrigger$TriggerInstance; +MD: net/minecraft/advancements/critereon/BrewedPotionTrigger$TriggerInstance/m_7683_ (Lnet/minecraft/advancements/critereon/SerializationContext;)Lcom/google/gson/JsonObject; net/minecraft/advancements/critereon/BrewedPotionTrigger$TriggerInstance/serializeToJson (Lnet/minecraft/advancements/critereon/SerializationContext;)Lcom/google/gson/JsonObject; +MD: net/minecraft/advancements/critereon/ChangeDimensionTrigger/ ()V net/minecraft/advancements/critereon/ChangeDimensionTrigger/ ()V +MD: net/minecraft/advancements/critereon/ChangeDimensionTrigger/ ()V net/minecraft/advancements/critereon/ChangeDimensionTrigger/ ()V +MD: net/minecraft/advancements/critereon/ChangeDimensionTrigger/m_19757_ (Lnet/minecraft/server/level/ServerPlayer;Lnet/minecraft/resources/ResourceKey;Lnet/minecraft/resources/ResourceKey;)V net/minecraft/advancements/critereon/ChangeDimensionTrigger/trigger (Lnet/minecraft/server/level/ServerPlayer;Lnet/minecraft/resources/ResourceKey;Lnet/minecraft/resources/ResourceKey;)V +MD: net/minecraft/advancements/critereon/ChangeDimensionTrigger/m_19765_ (Lnet/minecraft/resources/ResourceKey;Lnet/minecraft/resources/ResourceKey;Lnet/minecraft/advancements/critereon/ChangeDimensionTrigger$TriggerInstance;)Z net/minecraft/advancements/critereon/ChangeDimensionTrigger/lambda$trigger$0 (Lnet/minecraft/resources/ResourceKey;Lnet/minecraft/resources/ResourceKey;Lnet/minecraft/advancements/critereon/ChangeDimensionTrigger$TriggerInstance;)Z +MD: net/minecraft/advancements/critereon/ChangeDimensionTrigger/m_7214_ (Lcom/google/gson/JsonObject;Lnet/minecraft/advancements/critereon/ContextAwarePredicate;Lnet/minecraft/advancements/critereon/DeserializationContext;)Lnet/minecraft/advancements/critereon/ChangeDimensionTrigger$TriggerInstance; net/minecraft/advancements/critereon/ChangeDimensionTrigger/createInstance (Lcom/google/gson/JsonObject;Lnet/minecraft/advancements/critereon/ContextAwarePredicate;Lnet/minecraft/advancements/critereon/DeserializationContext;)Lnet/minecraft/advancements/critereon/ChangeDimensionTrigger$TriggerInstance; +MD: net/minecraft/advancements/critereon/ChangeDimensionTrigger/m_7214_ (Lcom/google/gson/JsonObject;Lnet/minecraft/advancements/critereon/ContextAwarePredicate;Lnet/minecraft/advancements/critereon/DeserializationContext;)Lnet/minecraft/advancements/critereon/AbstractCriterionTriggerInstance; net/minecraft/advancements/critereon/ChangeDimensionTrigger/createInstance (Lcom/google/gson/JsonObject;Lnet/minecraft/advancements/critereon/ContextAwarePredicate;Lnet/minecraft/advancements/critereon/DeserializationContext;)Lnet/minecraft/advancements/critereon/AbstractCriterionTriggerInstance; +MD: net/minecraft/advancements/critereon/ChangeDimensionTrigger/m_7295_ ()Lnet/minecraft/resources/ResourceLocation; net/minecraft/advancements/critereon/ChangeDimensionTrigger/getId ()Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/advancements/critereon/ChangeDimensionTrigger$TriggerInstance/ (Lnet/minecraft/advancements/critereon/ContextAwarePredicate;Lnet/minecraft/resources/ResourceKey;Lnet/minecraft/resources/ResourceKey;)V net/minecraft/advancements/critereon/ChangeDimensionTrigger$TriggerInstance/ (Lnet/minecraft/advancements/critereon/ContextAwarePredicate;Lnet/minecraft/resources/ResourceKey;Lnet/minecraft/resources/ResourceKey;)V +MD: net/minecraft/advancements/critereon/ChangeDimensionTrigger$TriggerInstance/m_147560_ (Lnet/minecraft/resources/ResourceKey;Lnet/minecraft/resources/ResourceKey;)Lnet/minecraft/advancements/critereon/ChangeDimensionTrigger$TriggerInstance; net/minecraft/advancements/critereon/ChangeDimensionTrigger$TriggerInstance/changedDimension (Lnet/minecraft/resources/ResourceKey;Lnet/minecraft/resources/ResourceKey;)Lnet/minecraft/advancements/critereon/ChangeDimensionTrigger$TriggerInstance; +MD: net/minecraft/advancements/critereon/ChangeDimensionTrigger$TriggerInstance/m_147563_ (Lnet/minecraft/resources/ResourceKey;)Lnet/minecraft/advancements/critereon/ChangeDimensionTrigger$TriggerInstance; net/minecraft/advancements/critereon/ChangeDimensionTrigger$TriggerInstance/changedDimensionFrom (Lnet/minecraft/resources/ResourceKey;)Lnet/minecraft/advancements/critereon/ChangeDimensionTrigger$TriggerInstance; +MD: net/minecraft/advancements/critereon/ChangeDimensionTrigger$TriggerInstance/m_147565_ ()Lnet/minecraft/advancements/critereon/ChangeDimensionTrigger$TriggerInstance; net/minecraft/advancements/critereon/ChangeDimensionTrigger$TriggerInstance/changedDimension ()Lnet/minecraft/advancements/critereon/ChangeDimensionTrigger$TriggerInstance; +MD: net/minecraft/advancements/critereon/ChangeDimensionTrigger$TriggerInstance/m_19782_ (Lnet/minecraft/resources/ResourceKey;)Lnet/minecraft/advancements/critereon/ChangeDimensionTrigger$TriggerInstance; net/minecraft/advancements/critereon/ChangeDimensionTrigger$TriggerInstance/changedDimensionTo (Lnet/minecraft/resources/ResourceKey;)Lnet/minecraft/advancements/critereon/ChangeDimensionTrigger$TriggerInstance; +MD: net/minecraft/advancements/critereon/ChangeDimensionTrigger$TriggerInstance/m_19784_ (Lnet/minecraft/resources/ResourceKey;Lnet/minecraft/resources/ResourceKey;)Z net/minecraft/advancements/critereon/ChangeDimensionTrigger$TriggerInstance/matches (Lnet/minecraft/resources/ResourceKey;Lnet/minecraft/resources/ResourceKey;)Z +MD: net/minecraft/advancements/critereon/ChangeDimensionTrigger$TriggerInstance/m_7683_ (Lnet/minecraft/advancements/critereon/SerializationContext;)Lcom/google/gson/JsonObject; net/minecraft/advancements/critereon/ChangeDimensionTrigger$TriggerInstance/serializeToJson (Lnet/minecraft/advancements/critereon/SerializationContext;)Lcom/google/gson/JsonObject; +MD: net/minecraft/advancements/critereon/ChanneledLightningTrigger/ ()V net/minecraft/advancements/critereon/ChanneledLightningTrigger/ ()V +MD: net/minecraft/advancements/critereon/ChanneledLightningTrigger/ ()V net/minecraft/advancements/critereon/ChanneledLightningTrigger/ ()V +MD: net/minecraft/advancements/critereon/ChanneledLightningTrigger/m_21718_ (Lnet/minecraft/server/level/ServerPlayer;Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/world/level/storage/loot/LootContext; net/minecraft/advancements/critereon/ChanneledLightningTrigger/lambda$trigger$0 (Lnet/minecraft/server/level/ServerPlayer;Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/world/level/storage/loot/LootContext; +MD: net/minecraft/advancements/critereon/ChanneledLightningTrigger/m_21721_ (Lnet/minecraft/server/level/ServerPlayer;Ljava/util/Collection;)V net/minecraft/advancements/critereon/ChanneledLightningTrigger/trigger (Lnet/minecraft/server/level/ServerPlayer;Ljava/util/Collection;)V +MD: net/minecraft/advancements/critereon/ChanneledLightningTrigger/m_21728_ (Ljava/util/List;Lnet/minecraft/advancements/critereon/ChanneledLightningTrigger$TriggerInstance;)Z net/minecraft/advancements/critereon/ChanneledLightningTrigger/lambda$trigger$1 (Ljava/util/List;Lnet/minecraft/advancements/critereon/ChanneledLightningTrigger$TriggerInstance;)Z +MD: net/minecraft/advancements/critereon/ChanneledLightningTrigger/m_7214_ (Lcom/google/gson/JsonObject;Lnet/minecraft/advancements/critereon/ContextAwarePredicate;Lnet/minecraft/advancements/critereon/DeserializationContext;)Lnet/minecraft/advancements/critereon/ChanneledLightningTrigger$TriggerInstance; net/minecraft/advancements/critereon/ChanneledLightningTrigger/createInstance (Lcom/google/gson/JsonObject;Lnet/minecraft/advancements/critereon/ContextAwarePredicate;Lnet/minecraft/advancements/critereon/DeserializationContext;)Lnet/minecraft/advancements/critereon/ChanneledLightningTrigger$TriggerInstance; +MD: net/minecraft/advancements/critereon/ChanneledLightningTrigger/m_7214_ (Lcom/google/gson/JsonObject;Lnet/minecraft/advancements/critereon/ContextAwarePredicate;Lnet/minecraft/advancements/critereon/DeserializationContext;)Lnet/minecraft/advancements/critereon/AbstractCriterionTriggerInstance; net/minecraft/advancements/critereon/ChanneledLightningTrigger/createInstance (Lcom/google/gson/JsonObject;Lnet/minecraft/advancements/critereon/ContextAwarePredicate;Lnet/minecraft/advancements/critereon/DeserializationContext;)Lnet/minecraft/advancements/critereon/AbstractCriterionTriggerInstance; +MD: net/minecraft/advancements/critereon/ChanneledLightningTrigger/m_7295_ ()Lnet/minecraft/resources/ResourceLocation; net/minecraft/advancements/critereon/ChanneledLightningTrigger/getId ()Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/advancements/critereon/ChanneledLightningTrigger$TriggerInstance/ (Lnet/minecraft/advancements/critereon/ContextAwarePredicate;[Lnet/minecraft/advancements/critereon/ContextAwarePredicate;)V net/minecraft/advancements/critereon/ChanneledLightningTrigger$TriggerInstance/ (Lnet/minecraft/advancements/critereon/ContextAwarePredicate;[Lnet/minecraft/advancements/critereon/ContextAwarePredicate;)V +MD: net/minecraft/advancements/critereon/ChanneledLightningTrigger$TriggerInstance/m_21744_ (Ljava/util/Collection;)Z net/minecraft/advancements/critereon/ChanneledLightningTrigger$TriggerInstance/matches (Ljava/util/Collection;)Z +MD: net/minecraft/advancements/critereon/ChanneledLightningTrigger$TriggerInstance/m_21746_ ([Lnet/minecraft/advancements/critereon/EntityPredicate;)Lnet/minecraft/advancements/critereon/ChanneledLightningTrigger$TriggerInstance; net/minecraft/advancements/critereon/ChanneledLightningTrigger$TriggerInstance/channeledLightning ([Lnet/minecraft/advancements/critereon/EntityPredicate;)Lnet/minecraft/advancements/critereon/ChanneledLightningTrigger$TriggerInstance; +MD: net/minecraft/advancements/critereon/ChanneledLightningTrigger$TriggerInstance/m_285665_ (I)[Lnet/minecraft/advancements/critereon/ContextAwarePredicate; net/minecraft/advancements/critereon/ChanneledLightningTrigger$TriggerInstance/lambda$channeledLightning$0 (I)[Lnet/minecraft/advancements/critereon/ContextAwarePredicate; +MD: net/minecraft/advancements/critereon/ChanneledLightningTrigger$TriggerInstance/m_7683_ (Lnet/minecraft/advancements/critereon/SerializationContext;)Lcom/google/gson/JsonObject; net/minecraft/advancements/critereon/ChanneledLightningTrigger$TriggerInstance/serializeToJson (Lnet/minecraft/advancements/critereon/SerializationContext;)Lcom/google/gson/JsonObject; +MD: net/minecraft/advancements/critereon/ConstructBeaconTrigger/ ()V net/minecraft/advancements/critereon/ConstructBeaconTrigger/ ()V +MD: net/minecraft/advancements/critereon/ConstructBeaconTrigger/ ()V net/minecraft/advancements/critereon/ConstructBeaconTrigger/ ()V +MD: net/minecraft/advancements/critereon/ConstructBeaconTrigger/m_148026_ (ILnet/minecraft/advancements/critereon/ConstructBeaconTrigger$TriggerInstance;)Z net/minecraft/advancements/critereon/ConstructBeaconTrigger/lambda$trigger$0 (ILnet/minecraft/advancements/critereon/ConstructBeaconTrigger$TriggerInstance;)Z +MD: net/minecraft/advancements/critereon/ConstructBeaconTrigger/m_148029_ (Lnet/minecraft/server/level/ServerPlayer;I)V net/minecraft/advancements/critereon/ConstructBeaconTrigger/trigger (Lnet/minecraft/server/level/ServerPlayer;I)V +MD: net/minecraft/advancements/critereon/ConstructBeaconTrigger/m_7214_ (Lcom/google/gson/JsonObject;Lnet/minecraft/advancements/critereon/ContextAwarePredicate;Lnet/minecraft/advancements/critereon/DeserializationContext;)Lnet/minecraft/advancements/critereon/AbstractCriterionTriggerInstance; net/minecraft/advancements/critereon/ConstructBeaconTrigger/createInstance (Lcom/google/gson/JsonObject;Lnet/minecraft/advancements/critereon/ContextAwarePredicate;Lnet/minecraft/advancements/critereon/DeserializationContext;)Lnet/minecraft/advancements/critereon/AbstractCriterionTriggerInstance; +MD: net/minecraft/advancements/critereon/ConstructBeaconTrigger/m_7214_ (Lcom/google/gson/JsonObject;Lnet/minecraft/advancements/critereon/ContextAwarePredicate;Lnet/minecraft/advancements/critereon/DeserializationContext;)Lnet/minecraft/advancements/critereon/ConstructBeaconTrigger$TriggerInstance; net/minecraft/advancements/critereon/ConstructBeaconTrigger/createInstance (Lcom/google/gson/JsonObject;Lnet/minecraft/advancements/critereon/ContextAwarePredicate;Lnet/minecraft/advancements/critereon/DeserializationContext;)Lnet/minecraft/advancements/critereon/ConstructBeaconTrigger$TriggerInstance; +MD: net/minecraft/advancements/critereon/ConstructBeaconTrigger/m_7295_ ()Lnet/minecraft/resources/ResourceLocation; net/minecraft/advancements/critereon/ConstructBeaconTrigger/getId ()Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/advancements/critereon/ConstructBeaconTrigger$TriggerInstance/ (Lnet/minecraft/advancements/critereon/ContextAwarePredicate;Lnet/minecraft/advancements/critereon/MinMaxBounds$Ints;)V net/minecraft/advancements/critereon/ConstructBeaconTrigger$TriggerInstance/ (Lnet/minecraft/advancements/critereon/ContextAwarePredicate;Lnet/minecraft/advancements/critereon/MinMaxBounds$Ints;)V +MD: net/minecraft/advancements/critereon/ConstructBeaconTrigger$TriggerInstance/m_148032_ (I)Z net/minecraft/advancements/critereon/ConstructBeaconTrigger$TriggerInstance/matches (I)Z +MD: net/minecraft/advancements/critereon/ConstructBeaconTrigger$TriggerInstance/m_148034_ ()Lnet/minecraft/advancements/critereon/ConstructBeaconTrigger$TriggerInstance; net/minecraft/advancements/critereon/ConstructBeaconTrigger$TriggerInstance/constructedBeacon ()Lnet/minecraft/advancements/critereon/ConstructBeaconTrigger$TriggerInstance; +MD: net/minecraft/advancements/critereon/ConstructBeaconTrigger$TriggerInstance/m_22765_ (Lnet/minecraft/advancements/critereon/MinMaxBounds$Ints;)Lnet/minecraft/advancements/critereon/ConstructBeaconTrigger$TriggerInstance; net/minecraft/advancements/critereon/ConstructBeaconTrigger$TriggerInstance/constructedBeacon (Lnet/minecraft/advancements/critereon/MinMaxBounds$Ints;)Lnet/minecraft/advancements/critereon/ConstructBeaconTrigger$TriggerInstance; +MD: net/minecraft/advancements/critereon/ConstructBeaconTrigger$TriggerInstance/m_7683_ (Lnet/minecraft/advancements/critereon/SerializationContext;)Lcom/google/gson/JsonObject; net/minecraft/advancements/critereon/ConstructBeaconTrigger$TriggerInstance/serializeToJson (Lnet/minecraft/advancements/critereon/SerializationContext;)Lcom/google/gson/JsonObject; +MD: net/minecraft/advancements/critereon/ConsumeItemTrigger/ ()V net/minecraft/advancements/critereon/ConsumeItemTrigger/ ()V +MD: net/minecraft/advancements/critereon/ConsumeItemTrigger/ ()V net/minecraft/advancements/critereon/ConsumeItemTrigger/ ()V +MD: net/minecraft/advancements/critereon/ConsumeItemTrigger/m_23682_ (Lnet/minecraft/server/level/ServerPlayer;Lnet/minecraft/world/item/ItemStack;)V net/minecraft/advancements/critereon/ConsumeItemTrigger/trigger (Lnet/minecraft/server/level/ServerPlayer;Lnet/minecraft/world/item/ItemStack;)V +MD: net/minecraft/advancements/critereon/ConsumeItemTrigger/m_23685_ (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/advancements/critereon/ConsumeItemTrigger$TriggerInstance;)Z net/minecraft/advancements/critereon/ConsumeItemTrigger/lambda$trigger$0 (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/advancements/critereon/ConsumeItemTrigger$TriggerInstance;)Z +MD: net/minecraft/advancements/critereon/ConsumeItemTrigger/m_7214_ (Lcom/google/gson/JsonObject;Lnet/minecraft/advancements/critereon/ContextAwarePredicate;Lnet/minecraft/advancements/critereon/DeserializationContext;)Lnet/minecraft/advancements/critereon/AbstractCriterionTriggerInstance; net/minecraft/advancements/critereon/ConsumeItemTrigger/createInstance (Lcom/google/gson/JsonObject;Lnet/minecraft/advancements/critereon/ContextAwarePredicate;Lnet/minecraft/advancements/critereon/DeserializationContext;)Lnet/minecraft/advancements/critereon/AbstractCriterionTriggerInstance; +MD: net/minecraft/advancements/critereon/ConsumeItemTrigger/m_7214_ (Lcom/google/gson/JsonObject;Lnet/minecraft/advancements/critereon/ContextAwarePredicate;Lnet/minecraft/advancements/critereon/DeserializationContext;)Lnet/minecraft/advancements/critereon/ConsumeItemTrigger$TriggerInstance; net/minecraft/advancements/critereon/ConsumeItemTrigger/createInstance (Lcom/google/gson/JsonObject;Lnet/minecraft/advancements/critereon/ContextAwarePredicate;Lnet/minecraft/advancements/critereon/DeserializationContext;)Lnet/minecraft/advancements/critereon/ConsumeItemTrigger$TriggerInstance; +MD: net/minecraft/advancements/critereon/ConsumeItemTrigger/m_7295_ ()Lnet/minecraft/resources/ResourceLocation; net/minecraft/advancements/critereon/ConsumeItemTrigger/getId ()Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/advancements/critereon/ConsumeItemTrigger$TriggerInstance/ (Lnet/minecraft/advancements/critereon/ContextAwarePredicate;Lnet/minecraft/advancements/critereon/ItemPredicate;)V net/minecraft/advancements/critereon/ConsumeItemTrigger$TriggerInstance/ (Lnet/minecraft/advancements/critereon/ContextAwarePredicate;Lnet/minecraft/advancements/critereon/ItemPredicate;)V +MD: net/minecraft/advancements/critereon/ConsumeItemTrigger$TriggerInstance/m_148081_ (Lnet/minecraft/advancements/critereon/ItemPredicate;)Lnet/minecraft/advancements/critereon/ConsumeItemTrigger$TriggerInstance; net/minecraft/advancements/critereon/ConsumeItemTrigger$TriggerInstance/usedItem (Lnet/minecraft/advancements/critereon/ItemPredicate;)Lnet/minecraft/advancements/critereon/ConsumeItemTrigger$TriggerInstance; +MD: net/minecraft/advancements/critereon/ConsumeItemTrigger$TriggerInstance/m_23701_ (Lnet/minecraft/world/item/ItemStack;)Z net/minecraft/advancements/critereon/ConsumeItemTrigger$TriggerInstance/matches (Lnet/minecraft/world/item/ItemStack;)Z +MD: net/minecraft/advancements/critereon/ConsumeItemTrigger$TriggerInstance/m_23703_ (Lnet/minecraft/world/level/ItemLike;)Lnet/minecraft/advancements/critereon/ConsumeItemTrigger$TriggerInstance; net/minecraft/advancements/critereon/ConsumeItemTrigger$TriggerInstance/usedItem (Lnet/minecraft/world/level/ItemLike;)Lnet/minecraft/advancements/critereon/ConsumeItemTrigger$TriggerInstance; +MD: net/minecraft/advancements/critereon/ConsumeItemTrigger$TriggerInstance/m_23707_ ()Lnet/minecraft/advancements/critereon/ConsumeItemTrigger$TriggerInstance; net/minecraft/advancements/critereon/ConsumeItemTrigger$TriggerInstance/usedItem ()Lnet/minecraft/advancements/critereon/ConsumeItemTrigger$TriggerInstance; +MD: net/minecraft/advancements/critereon/ConsumeItemTrigger$TriggerInstance/m_7683_ (Lnet/minecraft/advancements/critereon/SerializationContext;)Lcom/google/gson/JsonObject; net/minecraft/advancements/critereon/ConsumeItemTrigger$TriggerInstance/serializeToJson (Lnet/minecraft/advancements/critereon/SerializationContext;)Lcom/google/gson/JsonObject; +MD: net/minecraft/advancements/critereon/ContextAwarePredicate/ ()V net/minecraft/advancements/critereon/ContextAwarePredicate/ ()V +MD: net/minecraft/advancements/critereon/ContextAwarePredicate/ ([Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;)V net/minecraft/advancements/critereon/ContextAwarePredicate/ ([Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;)V +MD: net/minecraft/advancements/critereon/ContextAwarePredicate/m_285802_ (Ljava/lang/String;Lnet/minecraft/advancements/critereon/DeserializationContext;Lcom/google/gson/JsonElement;Lnet/minecraft/world/level/storage/loot/parameters/LootContextParamSet;)Lnet/minecraft/advancements/critereon/ContextAwarePredicate; net/minecraft/advancements/critereon/ContextAwarePredicate/fromElement (Ljava/lang/String;Lnet/minecraft/advancements/critereon/DeserializationContext;Lcom/google/gson/JsonElement;Lnet/minecraft/world/level/storage/loot/parameters/LootContextParamSet;)Lnet/minecraft/advancements/critereon/ContextAwarePredicate; +MD: net/minecraft/advancements/critereon/ContextAwarePredicate/m_285805_ ([Lnet/minecraft/advancements/critereon/ContextAwarePredicate;Lnet/minecraft/advancements/critereon/SerializationContext;)Lcom/google/gson/JsonElement; net/minecraft/advancements/critereon/ContextAwarePredicate/toJson ([Lnet/minecraft/advancements/critereon/ContextAwarePredicate;Lnet/minecraft/advancements/critereon/SerializationContext;)Lcom/google/gson/JsonElement; +MD: net/minecraft/advancements/critereon/ContextAwarePredicate/m_285831_ (Lnet/minecraft/world/level/storage/loot/LootContext;)Z net/minecraft/advancements/critereon/ContextAwarePredicate/matches (Lnet/minecraft/world/level/storage/loot/LootContext;)Z +MD: net/minecraft/advancements/critereon/ContextAwarePredicate/m_286026_ (Lnet/minecraft/advancements/critereon/SerializationContext;)Lcom/google/gson/JsonElement; net/minecraft/advancements/critereon/ContextAwarePredicate/toJson (Lnet/minecraft/advancements/critereon/SerializationContext;)Lcom/google/gson/JsonElement; +MD: net/minecraft/advancements/critereon/ContextAwarePredicate/m_286108_ ([Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;)Lnet/minecraft/advancements/critereon/ContextAwarePredicate; net/minecraft/advancements/critereon/ContextAwarePredicate/create ([Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;)Lnet/minecraft/advancements/critereon/ContextAwarePredicate; +MD: net/minecraft/advancements/critereon/CuredZombieVillagerTrigger/ ()V net/minecraft/advancements/critereon/CuredZombieVillagerTrigger/ ()V +MD: net/minecraft/advancements/critereon/CuredZombieVillagerTrigger/ ()V net/minecraft/advancements/critereon/CuredZombieVillagerTrigger/ ()V +MD: net/minecraft/advancements/critereon/CuredZombieVillagerTrigger/m_24274_ (Lnet/minecraft/server/level/ServerPlayer;Lnet/minecraft/world/entity/monster/Zombie;Lnet/minecraft/world/entity/npc/Villager;)V net/minecraft/advancements/critereon/CuredZombieVillagerTrigger/trigger (Lnet/minecraft/server/level/ServerPlayer;Lnet/minecraft/world/entity/monster/Zombie;Lnet/minecraft/world/entity/npc/Villager;)V +MD: net/minecraft/advancements/critereon/CuredZombieVillagerTrigger/m_24282_ (Lnet/minecraft/world/level/storage/loot/LootContext;Lnet/minecraft/world/level/storage/loot/LootContext;Lnet/minecraft/advancements/critereon/CuredZombieVillagerTrigger$TriggerInstance;)Z net/minecraft/advancements/critereon/CuredZombieVillagerTrigger/lambda$trigger$0 (Lnet/minecraft/world/level/storage/loot/LootContext;Lnet/minecraft/world/level/storage/loot/LootContext;Lnet/minecraft/advancements/critereon/CuredZombieVillagerTrigger$TriggerInstance;)Z +MD: net/minecraft/advancements/critereon/CuredZombieVillagerTrigger/m_7214_ (Lcom/google/gson/JsonObject;Lnet/minecraft/advancements/critereon/ContextAwarePredicate;Lnet/minecraft/advancements/critereon/DeserializationContext;)Lnet/minecraft/advancements/critereon/CuredZombieVillagerTrigger$TriggerInstance; net/minecraft/advancements/critereon/CuredZombieVillagerTrigger/createInstance (Lcom/google/gson/JsonObject;Lnet/minecraft/advancements/critereon/ContextAwarePredicate;Lnet/minecraft/advancements/critereon/DeserializationContext;)Lnet/minecraft/advancements/critereon/CuredZombieVillagerTrigger$TriggerInstance; +MD: net/minecraft/advancements/critereon/CuredZombieVillagerTrigger/m_7214_ (Lcom/google/gson/JsonObject;Lnet/minecraft/advancements/critereon/ContextAwarePredicate;Lnet/minecraft/advancements/critereon/DeserializationContext;)Lnet/minecraft/advancements/critereon/AbstractCriterionTriggerInstance; net/minecraft/advancements/critereon/CuredZombieVillagerTrigger/createInstance (Lcom/google/gson/JsonObject;Lnet/minecraft/advancements/critereon/ContextAwarePredicate;Lnet/minecraft/advancements/critereon/DeserializationContext;)Lnet/minecraft/advancements/critereon/AbstractCriterionTriggerInstance; +MD: net/minecraft/advancements/critereon/CuredZombieVillagerTrigger/m_7295_ ()Lnet/minecraft/resources/ResourceLocation; net/minecraft/advancements/critereon/CuredZombieVillagerTrigger/getId ()Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/advancements/critereon/CuredZombieVillagerTrigger$TriggerInstance/ (Lnet/minecraft/advancements/critereon/ContextAwarePredicate;Lnet/minecraft/advancements/critereon/ContextAwarePredicate;Lnet/minecraft/advancements/critereon/ContextAwarePredicate;)V net/minecraft/advancements/critereon/CuredZombieVillagerTrigger$TriggerInstance/ (Lnet/minecraft/advancements/critereon/ContextAwarePredicate;Lnet/minecraft/advancements/critereon/ContextAwarePredicate;Lnet/minecraft/advancements/critereon/ContextAwarePredicate;)V +MD: net/minecraft/advancements/critereon/CuredZombieVillagerTrigger$TriggerInstance/m_24299_ (Lnet/minecraft/world/level/storage/loot/LootContext;Lnet/minecraft/world/level/storage/loot/LootContext;)Z net/minecraft/advancements/critereon/CuredZombieVillagerTrigger$TriggerInstance/matches (Lnet/minecraft/world/level/storage/loot/LootContext;Lnet/minecraft/world/level/storage/loot/LootContext;)Z +MD: net/minecraft/advancements/critereon/CuredZombieVillagerTrigger$TriggerInstance/m_24302_ ()Lnet/minecraft/advancements/critereon/CuredZombieVillagerTrigger$TriggerInstance; net/minecraft/advancements/critereon/CuredZombieVillagerTrigger$TriggerInstance/curedZombieVillager ()Lnet/minecraft/advancements/critereon/CuredZombieVillagerTrigger$TriggerInstance; +MD: net/minecraft/advancements/critereon/CuredZombieVillagerTrigger$TriggerInstance/m_7683_ (Lnet/minecraft/advancements/critereon/SerializationContext;)Lcom/google/gson/JsonObject; net/minecraft/advancements/critereon/CuredZombieVillagerTrigger$TriggerInstance/serializeToJson (Lnet/minecraft/advancements/critereon/SerializationContext;)Lcom/google/gson/JsonObject; +MD: net/minecraft/advancements/critereon/DamagePredicate/ ()V net/minecraft/advancements/critereon/DamagePredicate/ ()V +MD: net/minecraft/advancements/critereon/DamagePredicate/ ()V net/minecraft/advancements/critereon/DamagePredicate/ ()V +MD: net/minecraft/advancements/critereon/DamagePredicate/ (Lnet/minecraft/advancements/critereon/MinMaxBounds$Doubles;Lnet/minecraft/advancements/critereon/MinMaxBounds$Doubles;Lnet/minecraft/advancements/critereon/EntityPredicate;Ljava/lang/Boolean;Lnet/minecraft/advancements/critereon/DamageSourcePredicate;)V net/minecraft/advancements/critereon/DamagePredicate/ (Lnet/minecraft/advancements/critereon/MinMaxBounds$Doubles;Lnet/minecraft/advancements/critereon/MinMaxBounds$Doubles;Lnet/minecraft/advancements/critereon/EntityPredicate;Ljava/lang/Boolean;Lnet/minecraft/advancements/critereon/DamageSourcePredicate;)V +MD: net/minecraft/advancements/critereon/DamagePredicate/m_24916_ ()Lcom/google/gson/JsonElement; net/minecraft/advancements/critereon/DamagePredicate/serializeToJson ()Lcom/google/gson/JsonElement; +MD: net/minecraft/advancements/critereon/DamagePredicate/m_24917_ (Lnet/minecraft/server/level/ServerPlayer;Lnet/minecraft/world/damagesource/DamageSource;FFZ)Z net/minecraft/advancements/critereon/DamagePredicate/matches (Lnet/minecraft/server/level/ServerPlayer;Lnet/minecraft/world/damagesource/DamageSource;FFZ)Z +MD: net/minecraft/advancements/critereon/DamagePredicate/m_24923_ (Lcom/google/gson/JsonElement;)Lnet/minecraft/advancements/critereon/DamagePredicate; net/minecraft/advancements/critereon/DamagePredicate/fromJson (Lcom/google/gson/JsonElement;)Lnet/minecraft/advancements/critereon/DamagePredicate; +MD: net/minecraft/advancements/critereon/DamagePredicate$Builder/ ()V net/minecraft/advancements/critereon/DamagePredicate$Builder/ ()V +MD: net/minecraft/advancements/critereon/DamagePredicate$Builder/m_148141_ (Lnet/minecraft/advancements/critereon/DamageSourcePredicate;)Lnet/minecraft/advancements/critereon/DamagePredicate$Builder; net/minecraft/advancements/critereon/DamagePredicate$Builder/type (Lnet/minecraft/advancements/critereon/DamageSourcePredicate;)Lnet/minecraft/advancements/critereon/DamagePredicate$Builder; +MD: net/minecraft/advancements/critereon/DamagePredicate$Builder/m_148143_ (Lnet/minecraft/advancements/critereon/EntityPredicate;)Lnet/minecraft/advancements/critereon/DamagePredicate$Builder; net/minecraft/advancements/critereon/DamagePredicate$Builder/sourceEntity (Lnet/minecraft/advancements/critereon/EntityPredicate;)Lnet/minecraft/advancements/critereon/DamagePredicate$Builder; +MD: net/minecraft/advancements/critereon/DamagePredicate$Builder/m_148145_ (Lnet/minecraft/advancements/critereon/MinMaxBounds$Doubles;)Lnet/minecraft/advancements/critereon/DamagePredicate$Builder; net/minecraft/advancements/critereon/DamagePredicate$Builder/dealtDamage (Lnet/minecraft/advancements/critereon/MinMaxBounds$Doubles;)Lnet/minecraft/advancements/critereon/DamagePredicate$Builder; +MD: net/minecraft/advancements/critereon/DamagePredicate$Builder/m_148147_ (Lnet/minecraft/advancements/critereon/MinMaxBounds$Doubles;)Lnet/minecraft/advancements/critereon/DamagePredicate$Builder; net/minecraft/advancements/critereon/DamagePredicate$Builder/takenDamage (Lnet/minecraft/advancements/critereon/MinMaxBounds$Doubles;)Lnet/minecraft/advancements/critereon/DamagePredicate$Builder; +MD: net/minecraft/advancements/critereon/DamagePredicate$Builder/m_24931_ ()Lnet/minecraft/advancements/critereon/DamagePredicate$Builder; net/minecraft/advancements/critereon/DamagePredicate$Builder/damageInstance ()Lnet/minecraft/advancements/critereon/DamagePredicate$Builder; +MD: net/minecraft/advancements/critereon/DamagePredicate$Builder/m_24932_ (Lnet/minecraft/advancements/critereon/DamageSourcePredicate$Builder;)Lnet/minecraft/advancements/critereon/DamagePredicate$Builder; net/minecraft/advancements/critereon/DamagePredicate$Builder/type (Lnet/minecraft/advancements/critereon/DamageSourcePredicate$Builder;)Lnet/minecraft/advancements/critereon/DamagePredicate$Builder; +MD: net/minecraft/advancements/critereon/DamagePredicate$Builder/m_24934_ (Ljava/lang/Boolean;)Lnet/minecraft/advancements/critereon/DamagePredicate$Builder; net/minecraft/advancements/critereon/DamagePredicate$Builder/blocked (Ljava/lang/Boolean;)Lnet/minecraft/advancements/critereon/DamagePredicate$Builder; +MD: net/minecraft/advancements/critereon/DamagePredicate$Builder/m_24936_ ()Lnet/minecraft/advancements/critereon/DamagePredicate; net/minecraft/advancements/critereon/DamagePredicate$Builder/build ()Lnet/minecraft/advancements/critereon/DamagePredicate; +MD: net/minecraft/advancements/critereon/DamageSourcePredicate/ ()V net/minecraft/advancements/critereon/DamageSourcePredicate/ ()V +MD: net/minecraft/advancements/critereon/DamageSourcePredicate/ (Ljava/util/List;Lnet/minecraft/advancements/critereon/EntityPredicate;Lnet/minecraft/advancements/critereon/EntityPredicate;)V net/minecraft/advancements/critereon/DamageSourcePredicate/ (Ljava/util/List;Lnet/minecraft/advancements/critereon/EntityPredicate;Lnet/minecraft/advancements/critereon/EntityPredicate;)V +MD: net/minecraft/advancements/critereon/DamageSourcePredicate/m_25443_ ()Lcom/google/gson/JsonElement; net/minecraft/advancements/critereon/DamageSourcePredicate/serializeToJson ()Lcom/google/gson/JsonElement; +MD: net/minecraft/advancements/critereon/DamageSourcePredicate/m_25444_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/phys/Vec3;Lnet/minecraft/world/damagesource/DamageSource;)Z net/minecraft/advancements/critereon/DamageSourcePredicate/matches (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/phys/Vec3;Lnet/minecraft/world/damagesource/DamageSource;)Z +MD: net/minecraft/advancements/critereon/DamageSourcePredicate/m_25448_ (Lnet/minecraft/server/level/ServerPlayer;Lnet/minecraft/world/damagesource/DamageSource;)Z net/minecraft/advancements/critereon/DamageSourcePredicate/matches (Lnet/minecraft/server/level/ServerPlayer;Lnet/minecraft/world/damagesource/DamageSource;)Z +MD: net/minecraft/advancements/critereon/DamageSourcePredicate/m_25451_ (Lcom/google/gson/JsonElement;)Lnet/minecraft/advancements/critereon/DamageSourcePredicate; net/minecraft/advancements/critereon/DamageSourcePredicate/fromJson (Lcom/google/gson/JsonElement;)Lnet/minecraft/advancements/critereon/DamageSourcePredicate; +MD: net/minecraft/advancements/critereon/DamageSourcePredicate$Builder/ ()V net/minecraft/advancements/critereon/DamageSourcePredicate$Builder/ ()V +MD: net/minecraft/advancements/critereon/DamageSourcePredicate$Builder/m_148229_ (Lnet/minecraft/advancements/critereon/EntityPredicate;)Lnet/minecraft/advancements/critereon/DamageSourcePredicate$Builder; net/minecraft/advancements/critereon/DamageSourcePredicate$Builder/direct (Lnet/minecraft/advancements/critereon/EntityPredicate;)Lnet/minecraft/advancements/critereon/DamageSourcePredicate$Builder; +MD: net/minecraft/advancements/critereon/DamageSourcePredicate$Builder/m_148231_ (Lnet/minecraft/advancements/critereon/EntityPredicate$Builder;)Lnet/minecraft/advancements/critereon/DamageSourcePredicate$Builder; net/minecraft/advancements/critereon/DamageSourcePredicate$Builder/source (Lnet/minecraft/advancements/critereon/EntityPredicate$Builder;)Lnet/minecraft/advancements/critereon/DamageSourcePredicate$Builder; +MD: net/minecraft/advancements/critereon/DamageSourcePredicate$Builder/m_148233_ (Lnet/minecraft/advancements/critereon/EntityPredicate;)Lnet/minecraft/advancements/critereon/DamageSourcePredicate$Builder; net/minecraft/advancements/critereon/DamageSourcePredicate$Builder/source (Lnet/minecraft/advancements/critereon/EntityPredicate;)Lnet/minecraft/advancements/critereon/DamageSourcePredicate$Builder; +MD: net/minecraft/advancements/critereon/DamageSourcePredicate$Builder/m_25471_ ()Lnet/minecraft/advancements/critereon/DamageSourcePredicate$Builder; net/minecraft/advancements/critereon/DamageSourcePredicate$Builder/damageType ()Lnet/minecraft/advancements/critereon/DamageSourcePredicate$Builder; +MD: net/minecraft/advancements/critereon/DamageSourcePredicate$Builder/m_25472_ (Lnet/minecraft/advancements/critereon/EntityPredicate$Builder;)Lnet/minecraft/advancements/critereon/DamageSourcePredicate$Builder; net/minecraft/advancements/critereon/DamageSourcePredicate$Builder/direct (Lnet/minecraft/advancements/critereon/EntityPredicate$Builder;)Lnet/minecraft/advancements/critereon/DamageSourcePredicate$Builder; +MD: net/minecraft/advancements/critereon/DamageSourcePredicate$Builder/m_25476_ ()Lnet/minecraft/advancements/critereon/DamageSourcePredicate; net/minecraft/advancements/critereon/DamageSourcePredicate$Builder/build ()Lnet/minecraft/advancements/critereon/DamageSourcePredicate; +MD: net/minecraft/advancements/critereon/DamageSourcePredicate$Builder/m_269507_ (Lnet/minecraft/advancements/critereon/TagPredicate;)Lnet/minecraft/advancements/critereon/DamageSourcePredicate$Builder; net/minecraft/advancements/critereon/DamageSourcePredicate$Builder/tag (Lnet/minecraft/advancements/critereon/TagPredicate;)Lnet/minecraft/advancements/critereon/DamageSourcePredicate$Builder; +MD: net/minecraft/advancements/critereon/DeserializationContext/ ()V net/minecraft/advancements/critereon/DeserializationContext/ ()V +MD: net/minecraft/advancements/critereon/DeserializationContext/ (Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/world/level/storage/loot/LootDataManager;)V net/minecraft/advancements/critereon/DeserializationContext/ (Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/world/level/storage/loot/LootDataManager;)V +MD: net/minecraft/advancements/critereon/DeserializationContext/m_25873_ ()Lnet/minecraft/resources/ResourceLocation; net/minecraft/advancements/critereon/DeserializationContext/getAdvancementId ()Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/advancements/critereon/DeserializationContext/m_25874_ (Lcom/google/gson/JsonArray;Ljava/lang/String;Lnet/minecraft/world/level/storage/loot/parameters/LootContextParamSet;)[Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition; net/minecraft/advancements/critereon/DeserializationContext/deserializeConditions (Lcom/google/gson/JsonArray;Ljava/lang/String;Lnet/minecraft/world/level/storage/loot/parameters/LootContextParamSet;)[Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition; +MD: net/minecraft/advancements/critereon/DeserializationContext/m_25878_ (Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;)V net/minecraft/advancements/critereon/DeserializationContext/lambda$deserializeConditions$0 (Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;)V +MD: net/minecraft/advancements/critereon/DistancePredicate/ ()V net/minecraft/advancements/critereon/DistancePredicate/ ()V +MD: net/minecraft/advancements/critereon/DistancePredicate/ (Lnet/minecraft/advancements/critereon/MinMaxBounds$Doubles;Lnet/minecraft/advancements/critereon/MinMaxBounds$Doubles;Lnet/minecraft/advancements/critereon/MinMaxBounds$Doubles;Lnet/minecraft/advancements/critereon/MinMaxBounds$Doubles;Lnet/minecraft/advancements/critereon/MinMaxBounds$Doubles;)V net/minecraft/advancements/critereon/DistancePredicate/ (Lnet/minecraft/advancements/critereon/MinMaxBounds$Doubles;Lnet/minecraft/advancements/critereon/MinMaxBounds$Doubles;Lnet/minecraft/advancements/critereon/MinMaxBounds$Doubles;Lnet/minecraft/advancements/critereon/MinMaxBounds$Doubles;Lnet/minecraft/advancements/critereon/MinMaxBounds$Doubles;)V +MD: net/minecraft/advancements/critereon/DistancePredicate/m_148836_ (Lnet/minecraft/advancements/critereon/MinMaxBounds$Doubles;)Lnet/minecraft/advancements/critereon/DistancePredicate; net/minecraft/advancements/critereon/DistancePredicate/horizontal (Lnet/minecraft/advancements/critereon/MinMaxBounds$Doubles;)Lnet/minecraft/advancements/critereon/DistancePredicate; +MD: net/minecraft/advancements/critereon/DistancePredicate/m_148838_ (Lnet/minecraft/advancements/critereon/MinMaxBounds$Doubles;)Lnet/minecraft/advancements/critereon/DistancePredicate; net/minecraft/advancements/critereon/DistancePredicate/vertical (Lnet/minecraft/advancements/critereon/MinMaxBounds$Doubles;)Lnet/minecraft/advancements/critereon/DistancePredicate; +MD: net/minecraft/advancements/critereon/DistancePredicate/m_148840_ (Lnet/minecraft/advancements/critereon/MinMaxBounds$Doubles;)Lnet/minecraft/advancements/critereon/DistancePredicate; net/minecraft/advancements/critereon/DistancePredicate/absolute (Lnet/minecraft/advancements/critereon/MinMaxBounds$Doubles;)Lnet/minecraft/advancements/critereon/DistancePredicate; +MD: net/minecraft/advancements/critereon/DistancePredicate/m_26254_ ()Lcom/google/gson/JsonElement; net/minecraft/advancements/critereon/DistancePredicate/serializeToJson ()Lcom/google/gson/JsonElement; +MD: net/minecraft/advancements/critereon/DistancePredicate/m_26255_ (DDDDDD)Z net/minecraft/advancements/critereon/DistancePredicate/matches (DDDDDD)Z +MD: net/minecraft/advancements/critereon/DistancePredicate/m_26264_ (Lcom/google/gson/JsonElement;)Lnet/minecraft/advancements/critereon/DistancePredicate; net/minecraft/advancements/critereon/DistancePredicate/fromJson (Lcom/google/gson/JsonElement;)Lnet/minecraft/advancements/critereon/DistancePredicate; +MD: net/minecraft/advancements/critereon/DistanceTrigger/ (Lnet/minecraft/resources/ResourceLocation;)V net/minecraft/advancements/critereon/DistanceTrigger/ (Lnet/minecraft/resources/ResourceLocation;)V +MD: net/minecraft/advancements/critereon/DistanceTrigger/m_186165_ (Lnet/minecraft/server/level/ServerPlayer;Lnet/minecraft/world/phys/Vec3;)V net/minecraft/advancements/critereon/DistanceTrigger/trigger (Lnet/minecraft/server/level/ServerPlayer;Lnet/minecraft/world/phys/Vec3;)V +MD: net/minecraft/advancements/critereon/DistanceTrigger/m_283951_ (Lnet/minecraft/server/level/ServerPlayer;Lnet/minecraft/world/phys/Vec3;Lnet/minecraft/world/phys/Vec3;Lnet/minecraft/advancements/critereon/DistanceTrigger$TriggerInstance;)Z net/minecraft/advancements/critereon/DistanceTrigger/lambda$trigger$0 (Lnet/minecraft/server/level/ServerPlayer;Lnet/minecraft/world/phys/Vec3;Lnet/minecraft/world/phys/Vec3;Lnet/minecraft/advancements/critereon/DistanceTrigger$TriggerInstance;)Z +MD: net/minecraft/advancements/critereon/DistanceTrigger/m_7214_ (Lcom/google/gson/JsonObject;Lnet/minecraft/advancements/critereon/ContextAwarePredicate;Lnet/minecraft/advancements/critereon/DeserializationContext;)Lnet/minecraft/advancements/critereon/DistanceTrigger$TriggerInstance; net/minecraft/advancements/critereon/DistanceTrigger/createInstance (Lcom/google/gson/JsonObject;Lnet/minecraft/advancements/critereon/ContextAwarePredicate;Lnet/minecraft/advancements/critereon/DeserializationContext;)Lnet/minecraft/advancements/critereon/DistanceTrigger$TriggerInstance; +MD: net/minecraft/advancements/critereon/DistanceTrigger/m_7214_ (Lcom/google/gson/JsonObject;Lnet/minecraft/advancements/critereon/ContextAwarePredicate;Lnet/minecraft/advancements/critereon/DeserializationContext;)Lnet/minecraft/advancements/critereon/AbstractCriterionTriggerInstance; net/minecraft/advancements/critereon/DistanceTrigger/createInstance (Lcom/google/gson/JsonObject;Lnet/minecraft/advancements/critereon/ContextAwarePredicate;Lnet/minecraft/advancements/critereon/DeserializationContext;)Lnet/minecraft/advancements/critereon/AbstractCriterionTriggerInstance; +MD: net/minecraft/advancements/critereon/DistanceTrigger/m_7295_ ()Lnet/minecraft/resources/ResourceLocation; net/minecraft/advancements/critereon/DistanceTrigger/getId ()Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/advancements/critereon/DistanceTrigger$TriggerInstance/ (Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/advancements/critereon/ContextAwarePredicate;Lnet/minecraft/advancements/critereon/LocationPredicate;Lnet/minecraft/advancements/critereon/DistancePredicate;)V net/minecraft/advancements/critereon/DistanceTrigger$TriggerInstance/ (Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/advancements/critereon/ContextAwarePredicate;Lnet/minecraft/advancements/critereon/LocationPredicate;Lnet/minecraft/advancements/critereon/DistancePredicate;)V +MD: net/minecraft/advancements/critereon/DistanceTrigger$TriggerInstance/m_186188_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/phys/Vec3;Lnet/minecraft/world/phys/Vec3;)Z net/minecraft/advancements/critereon/DistanceTrigger$TriggerInstance/matches (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/phys/Vec3;Lnet/minecraft/world/phys/Vec3;)Z +MD: net/minecraft/advancements/critereon/DistanceTrigger$TriggerInstance/m_186192_ (Lnet/minecraft/advancements/critereon/DistancePredicate;)Lnet/minecraft/advancements/critereon/DistanceTrigger$TriggerInstance; net/minecraft/advancements/critereon/DistanceTrigger$TriggerInstance/travelledThroughNether (Lnet/minecraft/advancements/critereon/DistancePredicate;)Lnet/minecraft/advancements/critereon/DistanceTrigger$TriggerInstance; +MD: net/minecraft/advancements/critereon/DistanceTrigger$TriggerInstance/m_186194_ (Lnet/minecraft/advancements/critereon/EntityPredicate$Builder;Lnet/minecraft/advancements/critereon/DistancePredicate;)Lnet/minecraft/advancements/critereon/DistanceTrigger$TriggerInstance; net/minecraft/advancements/critereon/DistanceTrigger$TriggerInstance/rideEntityInLava (Lnet/minecraft/advancements/critereon/EntityPredicate$Builder;Lnet/minecraft/advancements/critereon/DistancePredicate;)Lnet/minecraft/advancements/critereon/DistanceTrigger$TriggerInstance; +MD: net/minecraft/advancements/critereon/DistanceTrigger$TriggerInstance/m_186197_ (Lnet/minecraft/advancements/critereon/EntityPredicate$Builder;Lnet/minecraft/advancements/critereon/DistancePredicate;Lnet/minecraft/advancements/critereon/LocationPredicate;)Lnet/minecraft/advancements/critereon/DistanceTrigger$TriggerInstance; net/minecraft/advancements/critereon/DistanceTrigger$TriggerInstance/fallFromHeight (Lnet/minecraft/advancements/critereon/EntityPredicate$Builder;Lnet/minecraft/advancements/critereon/DistancePredicate;Lnet/minecraft/advancements/critereon/LocationPredicate;)Lnet/minecraft/advancements/critereon/DistanceTrigger$TriggerInstance; +MD: net/minecraft/advancements/critereon/DistanceTrigger$TriggerInstance/m_7683_ (Lnet/minecraft/advancements/critereon/SerializationContext;)Lcom/google/gson/JsonObject; net/minecraft/advancements/critereon/DistanceTrigger$TriggerInstance/serializeToJson (Lnet/minecraft/advancements/critereon/SerializationContext;)Lcom/google/gson/JsonObject; +MD: net/minecraft/advancements/critereon/EffectsChangedTrigger/ ()V net/minecraft/advancements/critereon/EffectsChangedTrigger/ ()V +MD: net/minecraft/advancements/critereon/EffectsChangedTrigger/ ()V net/minecraft/advancements/critereon/EffectsChangedTrigger/ ()V +MD: net/minecraft/advancements/critereon/EffectsChangedTrigger/m_149262_ (Lnet/minecraft/server/level/ServerPlayer;Lnet/minecraft/world/entity/Entity;)V net/minecraft/advancements/critereon/EffectsChangedTrigger/trigger (Lnet/minecraft/server/level/ServerPlayer;Lnet/minecraft/world/entity/Entity;)V +MD: net/minecraft/advancements/critereon/EffectsChangedTrigger/m_149265_ (Lnet/minecraft/server/level/ServerPlayer;Lnet/minecraft/world/level/storage/loot/LootContext;Lnet/minecraft/advancements/critereon/EffectsChangedTrigger$TriggerInstance;)Z net/minecraft/advancements/critereon/EffectsChangedTrigger/lambda$trigger$0 (Lnet/minecraft/server/level/ServerPlayer;Lnet/minecraft/world/level/storage/loot/LootContext;Lnet/minecraft/advancements/critereon/EffectsChangedTrigger$TriggerInstance;)Z +MD: net/minecraft/advancements/critereon/EffectsChangedTrigger/m_7214_ (Lcom/google/gson/JsonObject;Lnet/minecraft/advancements/critereon/ContextAwarePredicate;Lnet/minecraft/advancements/critereon/DeserializationContext;)Lnet/minecraft/advancements/critereon/AbstractCriterionTriggerInstance; net/minecraft/advancements/critereon/EffectsChangedTrigger/createInstance (Lcom/google/gson/JsonObject;Lnet/minecraft/advancements/critereon/ContextAwarePredicate;Lnet/minecraft/advancements/critereon/DeserializationContext;)Lnet/minecraft/advancements/critereon/AbstractCriterionTriggerInstance; +MD: net/minecraft/advancements/critereon/EffectsChangedTrigger/m_7214_ (Lcom/google/gson/JsonObject;Lnet/minecraft/advancements/critereon/ContextAwarePredicate;Lnet/minecraft/advancements/critereon/DeserializationContext;)Lnet/minecraft/advancements/critereon/EffectsChangedTrigger$TriggerInstance; net/minecraft/advancements/critereon/EffectsChangedTrigger/createInstance (Lcom/google/gson/JsonObject;Lnet/minecraft/advancements/critereon/ContextAwarePredicate;Lnet/minecraft/advancements/critereon/DeserializationContext;)Lnet/minecraft/advancements/critereon/EffectsChangedTrigger$TriggerInstance; +MD: net/minecraft/advancements/critereon/EffectsChangedTrigger/m_7295_ ()Lnet/minecraft/resources/ResourceLocation; net/minecraft/advancements/critereon/EffectsChangedTrigger/getId ()Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/advancements/critereon/EffectsChangedTrigger$TriggerInstance/ (Lnet/minecraft/advancements/critereon/ContextAwarePredicate;Lnet/minecraft/advancements/critereon/MobEffectsPredicate;Lnet/minecraft/advancements/critereon/ContextAwarePredicate;)V net/minecraft/advancements/critereon/EffectsChangedTrigger$TriggerInstance/ (Lnet/minecraft/advancements/critereon/ContextAwarePredicate;Lnet/minecraft/advancements/critereon/MobEffectsPredicate;Lnet/minecraft/advancements/critereon/ContextAwarePredicate;)V +MD: net/minecraft/advancements/critereon/EffectsChangedTrigger$TriggerInstance/m_149274_ (Lnet/minecraft/server/level/ServerPlayer;Lnet/minecraft/world/level/storage/loot/LootContext;)Z net/minecraft/advancements/critereon/EffectsChangedTrigger$TriggerInstance/matches (Lnet/minecraft/server/level/ServerPlayer;Lnet/minecraft/world/level/storage/loot/LootContext;)Z +MD: net/minecraft/advancements/critereon/EffectsChangedTrigger$TriggerInstance/m_149277_ (Lnet/minecraft/advancements/critereon/EntityPredicate;)Lnet/minecraft/advancements/critereon/EffectsChangedTrigger$TriggerInstance; net/minecraft/advancements/critereon/EffectsChangedTrigger$TriggerInstance/gotEffectsFrom (Lnet/minecraft/advancements/critereon/EntityPredicate;)Lnet/minecraft/advancements/critereon/EffectsChangedTrigger$TriggerInstance; +MD: net/minecraft/advancements/critereon/EffectsChangedTrigger$TriggerInstance/m_26780_ (Lnet/minecraft/advancements/critereon/MobEffectsPredicate;)Lnet/minecraft/advancements/critereon/EffectsChangedTrigger$TriggerInstance; net/minecraft/advancements/critereon/EffectsChangedTrigger$TriggerInstance/hasEffects (Lnet/minecraft/advancements/critereon/MobEffectsPredicate;)Lnet/minecraft/advancements/critereon/EffectsChangedTrigger$TriggerInstance; +MD: net/minecraft/advancements/critereon/EffectsChangedTrigger$TriggerInstance/m_7683_ (Lnet/minecraft/advancements/critereon/SerializationContext;)Lcom/google/gson/JsonObject; net/minecraft/advancements/critereon/EffectsChangedTrigger$TriggerInstance/serializeToJson (Lnet/minecraft/advancements/critereon/SerializationContext;)Lcom/google/gson/JsonObject; +MD: net/minecraft/advancements/critereon/EnchantedItemTrigger/ ()V net/minecraft/advancements/critereon/EnchantedItemTrigger/ ()V +MD: net/minecraft/advancements/critereon/EnchantedItemTrigger/ ()V net/minecraft/advancements/critereon/EnchantedItemTrigger/ ()V +MD: net/minecraft/advancements/critereon/EnchantedItemTrigger/m_27668_ (Lnet/minecraft/server/level/ServerPlayer;Lnet/minecraft/world/item/ItemStack;I)V net/minecraft/advancements/critereon/EnchantedItemTrigger/trigger (Lnet/minecraft/server/level/ServerPlayer;Lnet/minecraft/world/item/ItemStack;I)V +MD: net/minecraft/advancements/critereon/EnchantedItemTrigger/m_27672_ (Lnet/minecraft/world/item/ItemStack;ILnet/minecraft/advancements/critereon/EnchantedItemTrigger$TriggerInstance;)Z net/minecraft/advancements/critereon/EnchantedItemTrigger/lambda$trigger$0 (Lnet/minecraft/world/item/ItemStack;ILnet/minecraft/advancements/critereon/EnchantedItemTrigger$TriggerInstance;)Z +MD: net/minecraft/advancements/critereon/EnchantedItemTrigger/m_7214_ (Lcom/google/gson/JsonObject;Lnet/minecraft/advancements/critereon/ContextAwarePredicate;Lnet/minecraft/advancements/critereon/DeserializationContext;)Lnet/minecraft/advancements/critereon/AbstractCriterionTriggerInstance; net/minecraft/advancements/critereon/EnchantedItemTrigger/createInstance (Lcom/google/gson/JsonObject;Lnet/minecraft/advancements/critereon/ContextAwarePredicate;Lnet/minecraft/advancements/critereon/DeserializationContext;)Lnet/minecraft/advancements/critereon/AbstractCriterionTriggerInstance; +MD: net/minecraft/advancements/critereon/EnchantedItemTrigger/m_7214_ (Lcom/google/gson/JsonObject;Lnet/minecraft/advancements/critereon/ContextAwarePredicate;Lnet/minecraft/advancements/critereon/DeserializationContext;)Lnet/minecraft/advancements/critereon/EnchantedItemTrigger$TriggerInstance; net/minecraft/advancements/critereon/EnchantedItemTrigger/createInstance (Lcom/google/gson/JsonObject;Lnet/minecraft/advancements/critereon/ContextAwarePredicate;Lnet/minecraft/advancements/critereon/DeserializationContext;)Lnet/minecraft/advancements/critereon/EnchantedItemTrigger$TriggerInstance; +MD: net/minecraft/advancements/critereon/EnchantedItemTrigger/m_7295_ ()Lnet/minecraft/resources/ResourceLocation; net/minecraft/advancements/critereon/EnchantedItemTrigger/getId ()Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/advancements/critereon/EnchantedItemTrigger$TriggerInstance/ (Lnet/minecraft/advancements/critereon/ContextAwarePredicate;Lnet/minecraft/advancements/critereon/ItemPredicate;Lnet/minecraft/advancements/critereon/MinMaxBounds$Ints;)V net/minecraft/advancements/critereon/EnchantedItemTrigger$TriggerInstance/ (Lnet/minecraft/advancements/critereon/ContextAwarePredicate;Lnet/minecraft/advancements/critereon/ItemPredicate;Lnet/minecraft/advancements/critereon/MinMaxBounds$Ints;)V +MD: net/minecraft/advancements/critereon/EnchantedItemTrigger$TriggerInstance/m_27691_ (Lnet/minecraft/world/item/ItemStack;I)Z net/minecraft/advancements/critereon/EnchantedItemTrigger$TriggerInstance/matches (Lnet/minecraft/world/item/ItemStack;I)Z +MD: net/minecraft/advancements/critereon/EnchantedItemTrigger$TriggerInstance/m_27696_ ()Lnet/minecraft/advancements/critereon/EnchantedItemTrigger$TriggerInstance; net/minecraft/advancements/critereon/EnchantedItemTrigger$TriggerInstance/enchantedItem ()Lnet/minecraft/advancements/critereon/EnchantedItemTrigger$TriggerInstance; +MD: net/minecraft/advancements/critereon/EnchantedItemTrigger$TriggerInstance/m_7683_ (Lnet/minecraft/advancements/critereon/SerializationContext;)Lcom/google/gson/JsonObject; net/minecraft/advancements/critereon/EnchantedItemTrigger$TriggerInstance/serializeToJson (Lnet/minecraft/advancements/critereon/SerializationContext;)Lcom/google/gson/JsonObject; +MD: net/minecraft/advancements/critereon/EnchantmentPredicate/ ()V net/minecraft/advancements/critereon/EnchantmentPredicate/ ()V +MD: net/minecraft/advancements/critereon/EnchantmentPredicate/ (Lnet/minecraft/world/item/enchantment/Enchantment;Lnet/minecraft/advancements/critereon/MinMaxBounds$Ints;)V net/minecraft/advancements/critereon/EnchantmentPredicate/ (Lnet/minecraft/world/item/enchantment/Enchantment;Lnet/minecraft/advancements/critereon/MinMaxBounds$Ints;)V +MD: net/minecraft/advancements/critereon/EnchantmentPredicate/ ()V net/minecraft/advancements/critereon/EnchantmentPredicate/ ()V +MD: net/minecraft/advancements/critereon/EnchantmentPredicate/m_30473_ ()Lcom/google/gson/JsonElement; net/minecraft/advancements/critereon/EnchantmentPredicate/serializeToJson ()Lcom/google/gson/JsonElement; +MD: net/minecraft/advancements/critereon/EnchantmentPredicate/m_30474_ (Lcom/google/gson/JsonElement;)Lnet/minecraft/advancements/critereon/EnchantmentPredicate; net/minecraft/advancements/critereon/EnchantmentPredicate/fromJson (Lcom/google/gson/JsonElement;)Lnet/minecraft/advancements/critereon/EnchantmentPredicate; +MD: net/minecraft/advancements/critereon/EnchantmentPredicate/m_30476_ (Ljava/util/Map;)Z net/minecraft/advancements/critereon/EnchantmentPredicate/containedIn (Ljava/util/Map;)Z +MD: net/minecraft/advancements/critereon/EnchantmentPredicate/m_30478_ (Lnet/minecraft/resources/ResourceLocation;)Lcom/google/gson/JsonSyntaxException; net/minecraft/advancements/critereon/EnchantmentPredicate/lambda$fromJson$0 (Lnet/minecraft/resources/ResourceLocation;)Lcom/google/gson/JsonSyntaxException; +MD: net/minecraft/advancements/critereon/EnchantmentPredicate/m_30480_ (Lcom/google/gson/JsonElement;)[Lnet/minecraft/advancements/critereon/EnchantmentPredicate; net/minecraft/advancements/critereon/EnchantmentPredicate/fromJsonArray (Lcom/google/gson/JsonElement;)[Lnet/minecraft/advancements/critereon/EnchantmentPredicate; +MD: net/minecraft/advancements/critereon/EnterBlockTrigger/ ()V net/minecraft/advancements/critereon/EnterBlockTrigger/ ()V +MD: net/minecraft/advancements/critereon/EnterBlockTrigger/ ()V net/minecraft/advancements/critereon/EnterBlockTrigger/ ()V +MD: net/minecraft/advancements/critereon/EnterBlockTrigger/m_31269_ (Lnet/minecraft/server/level/ServerPlayer;Lnet/minecraft/world/level/block/state/BlockState;)V net/minecraft/advancements/critereon/EnterBlockTrigger/trigger (Lnet/minecraft/server/level/ServerPlayer;Lnet/minecraft/world/level/block/state/BlockState;)V +MD: net/minecraft/advancements/critereon/EnterBlockTrigger/m_31272_ (Lnet/minecraft/world/level/block/Block;Ljava/lang/String;)V net/minecraft/advancements/critereon/EnterBlockTrigger/lambda$createInstance$0 (Lnet/minecraft/world/level/block/Block;Ljava/lang/String;)V +MD: net/minecraft/advancements/critereon/EnterBlockTrigger/m_31275_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/advancements/critereon/EnterBlockTrigger$TriggerInstance;)Z net/minecraft/advancements/critereon/EnterBlockTrigger/lambda$trigger$2 (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/advancements/critereon/EnterBlockTrigger$TriggerInstance;)Z +MD: net/minecraft/advancements/critereon/EnterBlockTrigger/m_31278_ (Lcom/google/gson/JsonObject;)Lnet/minecraft/world/level/block/Block; net/minecraft/advancements/critereon/EnterBlockTrigger/deserializeBlock (Lcom/google/gson/JsonObject;)Lnet/minecraft/world/level/block/Block; +MD: net/minecraft/advancements/critereon/EnterBlockTrigger/m_31284_ (Lnet/minecraft/resources/ResourceLocation;)Lcom/google/gson/JsonSyntaxException; net/minecraft/advancements/critereon/EnterBlockTrigger/lambda$deserializeBlock$1 (Lnet/minecraft/resources/ResourceLocation;)Lcom/google/gson/JsonSyntaxException; +MD: net/minecraft/advancements/critereon/EnterBlockTrigger/m_7214_ (Lcom/google/gson/JsonObject;Lnet/minecraft/advancements/critereon/ContextAwarePredicate;Lnet/minecraft/advancements/critereon/DeserializationContext;)Lnet/minecraft/advancements/critereon/AbstractCriterionTriggerInstance; net/minecraft/advancements/critereon/EnterBlockTrigger/createInstance (Lcom/google/gson/JsonObject;Lnet/minecraft/advancements/critereon/ContextAwarePredicate;Lnet/minecraft/advancements/critereon/DeserializationContext;)Lnet/minecraft/advancements/critereon/AbstractCriterionTriggerInstance; +MD: net/minecraft/advancements/critereon/EnterBlockTrigger/m_7214_ (Lcom/google/gson/JsonObject;Lnet/minecraft/advancements/critereon/ContextAwarePredicate;Lnet/minecraft/advancements/critereon/DeserializationContext;)Lnet/minecraft/advancements/critereon/EnterBlockTrigger$TriggerInstance; net/minecraft/advancements/critereon/EnterBlockTrigger/createInstance (Lcom/google/gson/JsonObject;Lnet/minecraft/advancements/critereon/ContextAwarePredicate;Lnet/minecraft/advancements/critereon/DeserializationContext;)Lnet/minecraft/advancements/critereon/EnterBlockTrigger$TriggerInstance; +MD: net/minecraft/advancements/critereon/EnterBlockTrigger/m_7295_ ()Lnet/minecraft/resources/ResourceLocation; net/minecraft/advancements/critereon/EnterBlockTrigger/getId ()Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/advancements/critereon/EnterBlockTrigger$TriggerInstance/ (Lnet/minecraft/advancements/critereon/ContextAwarePredicate;Lnet/minecraft/world/level/block/Block;Lnet/minecraft/advancements/critereon/StatePropertiesPredicate;)V net/minecraft/advancements/critereon/EnterBlockTrigger$TriggerInstance/ (Lnet/minecraft/advancements/critereon/ContextAwarePredicate;Lnet/minecraft/world/level/block/Block;Lnet/minecraft/advancements/critereon/StatePropertiesPredicate;)V +MD: net/minecraft/advancements/critereon/EnterBlockTrigger$TriggerInstance/m_31297_ (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/advancements/critereon/EnterBlockTrigger$TriggerInstance; net/minecraft/advancements/critereon/EnterBlockTrigger$TriggerInstance/entersBlock (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/advancements/critereon/EnterBlockTrigger$TriggerInstance; +MD: net/minecraft/advancements/critereon/EnterBlockTrigger$TriggerInstance/m_31299_ (Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/advancements/critereon/EnterBlockTrigger$TriggerInstance/matches (Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/advancements/critereon/EnterBlockTrigger$TriggerInstance/m_7683_ (Lnet/minecraft/advancements/critereon/SerializationContext;)Lcom/google/gson/JsonObject; net/minecraft/advancements/critereon/EnterBlockTrigger$TriggerInstance/serializeToJson (Lnet/minecraft/advancements/critereon/SerializationContext;)Lcom/google/gson/JsonObject; +MD: net/minecraft/advancements/critereon/EntityEquipmentPredicate/ ()V net/minecraft/advancements/critereon/EntityEquipmentPredicate/ ()V +MD: net/minecraft/advancements/critereon/EntityEquipmentPredicate/ (Lnet/minecraft/advancements/critereon/ItemPredicate;Lnet/minecraft/advancements/critereon/ItemPredicate;Lnet/minecraft/advancements/critereon/ItemPredicate;Lnet/minecraft/advancements/critereon/ItemPredicate;Lnet/minecraft/advancements/critereon/ItemPredicate;Lnet/minecraft/advancements/critereon/ItemPredicate;)V net/minecraft/advancements/critereon/EntityEquipmentPredicate/ (Lnet/minecraft/advancements/critereon/ItemPredicate;Lnet/minecraft/advancements/critereon/ItemPredicate;Lnet/minecraft/advancements/critereon/ItemPredicate;Lnet/minecraft/advancements/critereon/ItemPredicate;Lnet/minecraft/advancements/critereon/ItemPredicate;Lnet/minecraft/advancements/critereon/ItemPredicate;)V +MD: net/minecraft/advancements/critereon/EntityEquipmentPredicate/m_32192_ ()Lcom/google/gson/JsonElement; net/minecraft/advancements/critereon/EntityEquipmentPredicate/serializeToJson ()Lcom/google/gson/JsonElement; +MD: net/minecraft/advancements/critereon/EntityEquipmentPredicate/m_32193_ (Lnet/minecraft/world/entity/Entity;)Z net/minecraft/advancements/critereon/EntityEquipmentPredicate/matches (Lnet/minecraft/world/entity/Entity;)Z +MD: net/minecraft/advancements/critereon/EntityEquipmentPredicate/m_32195_ (Lcom/google/gson/JsonElement;)Lnet/minecraft/advancements/critereon/EntityEquipmentPredicate; net/minecraft/advancements/critereon/EntityEquipmentPredicate/fromJson (Lcom/google/gson/JsonElement;)Lnet/minecraft/advancements/critereon/EntityEquipmentPredicate; +MD: net/minecraft/advancements/critereon/EntityEquipmentPredicate$Builder/ ()V net/minecraft/advancements/critereon/EntityEquipmentPredicate$Builder/ ()V +MD: net/minecraft/advancements/critereon/EntityEquipmentPredicate$Builder/m_149928_ (Lnet/minecraft/advancements/critereon/ItemPredicate;)Lnet/minecraft/advancements/critereon/EntityEquipmentPredicate$Builder; net/minecraft/advancements/critereon/EntityEquipmentPredicate$Builder/mainhand (Lnet/minecraft/advancements/critereon/ItemPredicate;)Lnet/minecraft/advancements/critereon/EntityEquipmentPredicate$Builder; +MD: net/minecraft/advancements/critereon/EntityEquipmentPredicate$Builder/m_149930_ (Lnet/minecraft/advancements/critereon/ItemPredicate;)Lnet/minecraft/advancements/critereon/EntityEquipmentPredicate$Builder; net/minecraft/advancements/critereon/EntityEquipmentPredicate$Builder/offhand (Lnet/minecraft/advancements/critereon/ItemPredicate;)Lnet/minecraft/advancements/critereon/EntityEquipmentPredicate$Builder; +MD: net/minecraft/advancements/critereon/EntityEquipmentPredicate$Builder/m_32204_ ()Lnet/minecraft/advancements/critereon/EntityEquipmentPredicate$Builder; net/minecraft/advancements/critereon/EntityEquipmentPredicate$Builder/equipment ()Lnet/minecraft/advancements/critereon/EntityEquipmentPredicate$Builder; +MD: net/minecraft/advancements/critereon/EntityEquipmentPredicate$Builder/m_32205_ (Lnet/minecraft/advancements/critereon/ItemPredicate;)Lnet/minecraft/advancements/critereon/EntityEquipmentPredicate$Builder; net/minecraft/advancements/critereon/EntityEquipmentPredicate$Builder/head (Lnet/minecraft/advancements/critereon/ItemPredicate;)Lnet/minecraft/advancements/critereon/EntityEquipmentPredicate$Builder; +MD: net/minecraft/advancements/critereon/EntityEquipmentPredicate$Builder/m_32207_ ()Lnet/minecraft/advancements/critereon/EntityEquipmentPredicate; net/minecraft/advancements/critereon/EntityEquipmentPredicate$Builder/build ()Lnet/minecraft/advancements/critereon/EntityEquipmentPredicate; +MD: net/minecraft/advancements/critereon/EntityEquipmentPredicate$Builder/m_32208_ (Lnet/minecraft/advancements/critereon/ItemPredicate;)Lnet/minecraft/advancements/critereon/EntityEquipmentPredicate$Builder; net/minecraft/advancements/critereon/EntityEquipmentPredicate$Builder/chest (Lnet/minecraft/advancements/critereon/ItemPredicate;)Lnet/minecraft/advancements/critereon/EntityEquipmentPredicate$Builder; +MD: net/minecraft/advancements/critereon/EntityEquipmentPredicate$Builder/m_32210_ (Lnet/minecraft/advancements/critereon/ItemPredicate;)Lnet/minecraft/advancements/critereon/EntityEquipmentPredicate$Builder; net/minecraft/advancements/critereon/EntityEquipmentPredicate$Builder/legs (Lnet/minecraft/advancements/critereon/ItemPredicate;)Lnet/minecraft/advancements/critereon/EntityEquipmentPredicate$Builder; +MD: net/minecraft/advancements/critereon/EntityEquipmentPredicate$Builder/m_32212_ (Lnet/minecraft/advancements/critereon/ItemPredicate;)Lnet/minecraft/advancements/critereon/EntityEquipmentPredicate$Builder; net/minecraft/advancements/critereon/EntityEquipmentPredicate$Builder/feet (Lnet/minecraft/advancements/critereon/ItemPredicate;)Lnet/minecraft/advancements/critereon/EntityEquipmentPredicate$Builder; +MD: net/minecraft/advancements/critereon/EntityFlagsPredicate/ ()V net/minecraft/advancements/critereon/EntityFlagsPredicate/ ()V +MD: net/minecraft/advancements/critereon/EntityFlagsPredicate/ (Ljava/lang/Boolean;Ljava/lang/Boolean;Ljava/lang/Boolean;Ljava/lang/Boolean;Ljava/lang/Boolean;)V net/minecraft/advancements/critereon/EntityFlagsPredicate/ (Ljava/lang/Boolean;Ljava/lang/Boolean;Ljava/lang/Boolean;Ljava/lang/Boolean;Ljava/lang/Boolean;)V +MD: net/minecraft/advancements/critereon/EntityFlagsPredicate/m_33695_ ()Lcom/google/gson/JsonElement; net/minecraft/advancements/critereon/EntityFlagsPredicate/serializeToJson ()Lcom/google/gson/JsonElement; +MD: net/minecraft/advancements/critereon/EntityFlagsPredicate/m_33696_ (Lnet/minecraft/world/entity/Entity;)Z net/minecraft/advancements/critereon/EntityFlagsPredicate/matches (Lnet/minecraft/world/entity/Entity;)Z +MD: net/minecraft/advancements/critereon/EntityFlagsPredicate/m_33698_ (Lcom/google/gson/JsonElement;)Lnet/minecraft/advancements/critereon/EntityFlagsPredicate; net/minecraft/advancements/critereon/EntityFlagsPredicate/fromJson (Lcom/google/gson/JsonElement;)Lnet/minecraft/advancements/critereon/EntityFlagsPredicate; +MD: net/minecraft/advancements/critereon/EntityFlagsPredicate/m_33700_ (Lcom/google/gson/JsonObject;Ljava/lang/String;)Ljava/lang/Boolean; net/minecraft/advancements/critereon/EntityFlagsPredicate/getOptionalBoolean (Lcom/google/gson/JsonObject;Ljava/lang/String;)Ljava/lang/Boolean; +MD: net/minecraft/advancements/critereon/EntityFlagsPredicate/m_33703_ (Lcom/google/gson/JsonObject;Ljava/lang/String;Ljava/lang/Boolean;)V net/minecraft/advancements/critereon/EntityFlagsPredicate/addOptionalBoolean (Lcom/google/gson/JsonObject;Ljava/lang/String;Ljava/lang/Boolean;)V +MD: net/minecraft/advancements/critereon/EntityFlagsPredicate$Builder/ ()V net/minecraft/advancements/critereon/EntityFlagsPredicate$Builder/ ()V +MD: net/minecraft/advancements/critereon/EntityFlagsPredicate$Builder/m_150057_ (Ljava/lang/Boolean;)Lnet/minecraft/advancements/critereon/EntityFlagsPredicate$Builder; net/minecraft/advancements/critereon/EntityFlagsPredicate$Builder/setCrouching (Ljava/lang/Boolean;)Lnet/minecraft/advancements/critereon/EntityFlagsPredicate$Builder; +MD: net/minecraft/advancements/critereon/EntityFlagsPredicate$Builder/m_150059_ (Ljava/lang/Boolean;)Lnet/minecraft/advancements/critereon/EntityFlagsPredicate$Builder; net/minecraft/advancements/critereon/EntityFlagsPredicate$Builder/setSprinting (Ljava/lang/Boolean;)Lnet/minecraft/advancements/critereon/EntityFlagsPredicate$Builder; +MD: net/minecraft/advancements/critereon/EntityFlagsPredicate$Builder/m_150061_ (Ljava/lang/Boolean;)Lnet/minecraft/advancements/critereon/EntityFlagsPredicate$Builder; net/minecraft/advancements/critereon/EntityFlagsPredicate$Builder/setSwimming (Ljava/lang/Boolean;)Lnet/minecraft/advancements/critereon/EntityFlagsPredicate$Builder; +MD: net/minecraft/advancements/critereon/EntityFlagsPredicate$Builder/m_33713_ ()Lnet/minecraft/advancements/critereon/EntityFlagsPredicate$Builder; net/minecraft/advancements/critereon/EntityFlagsPredicate$Builder/flags ()Lnet/minecraft/advancements/critereon/EntityFlagsPredicate$Builder; +MD: net/minecraft/advancements/critereon/EntityFlagsPredicate$Builder/m_33714_ (Ljava/lang/Boolean;)Lnet/minecraft/advancements/critereon/EntityFlagsPredicate$Builder; net/minecraft/advancements/critereon/EntityFlagsPredicate$Builder/setOnFire (Ljava/lang/Boolean;)Lnet/minecraft/advancements/critereon/EntityFlagsPredicate$Builder; +MD: net/minecraft/advancements/critereon/EntityFlagsPredicate$Builder/m_33716_ ()Lnet/minecraft/advancements/critereon/EntityFlagsPredicate; net/minecraft/advancements/critereon/EntityFlagsPredicate$Builder/build ()Lnet/minecraft/advancements/critereon/EntityFlagsPredicate; +MD: net/minecraft/advancements/critereon/EntityFlagsPredicate$Builder/m_33717_ (Ljava/lang/Boolean;)Lnet/minecraft/advancements/critereon/EntityFlagsPredicate$Builder; net/minecraft/advancements/critereon/EntityFlagsPredicate$Builder/setIsBaby (Ljava/lang/Boolean;)Lnet/minecraft/advancements/critereon/EntityFlagsPredicate$Builder; +MD: net/minecraft/advancements/critereon/EntityHurtPlayerTrigger/ ()V net/minecraft/advancements/critereon/EntityHurtPlayerTrigger/ ()V +MD: net/minecraft/advancements/critereon/EntityHurtPlayerTrigger/ ()V net/minecraft/advancements/critereon/EntityHurtPlayerTrigger/ ()V +MD: net/minecraft/advancements/critereon/EntityHurtPlayerTrigger/m_35174_ (Lnet/minecraft/server/level/ServerPlayer;Lnet/minecraft/world/damagesource/DamageSource;FFZ)V net/minecraft/advancements/critereon/EntityHurtPlayerTrigger/trigger (Lnet/minecraft/server/level/ServerPlayer;Lnet/minecraft/world/damagesource/DamageSource;FFZ)V +MD: net/minecraft/advancements/critereon/EntityHurtPlayerTrigger/m_35180_ (Lnet/minecraft/server/level/ServerPlayer;Lnet/minecraft/world/damagesource/DamageSource;FFZLnet/minecraft/advancements/critereon/EntityHurtPlayerTrigger$TriggerInstance;)Z net/minecraft/advancements/critereon/EntityHurtPlayerTrigger/lambda$trigger$0 (Lnet/minecraft/server/level/ServerPlayer;Lnet/minecraft/world/damagesource/DamageSource;FFZLnet/minecraft/advancements/critereon/EntityHurtPlayerTrigger$TriggerInstance;)Z +MD: net/minecraft/advancements/critereon/EntityHurtPlayerTrigger/m_7214_ (Lcom/google/gson/JsonObject;Lnet/minecraft/advancements/critereon/ContextAwarePredicate;Lnet/minecraft/advancements/critereon/DeserializationContext;)Lnet/minecraft/advancements/critereon/EntityHurtPlayerTrigger$TriggerInstance; net/minecraft/advancements/critereon/EntityHurtPlayerTrigger/createInstance (Lcom/google/gson/JsonObject;Lnet/minecraft/advancements/critereon/ContextAwarePredicate;Lnet/minecraft/advancements/critereon/DeserializationContext;)Lnet/minecraft/advancements/critereon/EntityHurtPlayerTrigger$TriggerInstance; +MD: net/minecraft/advancements/critereon/EntityHurtPlayerTrigger/m_7214_ (Lcom/google/gson/JsonObject;Lnet/minecraft/advancements/critereon/ContextAwarePredicate;Lnet/minecraft/advancements/critereon/DeserializationContext;)Lnet/minecraft/advancements/critereon/AbstractCriterionTriggerInstance; net/minecraft/advancements/critereon/EntityHurtPlayerTrigger/createInstance (Lcom/google/gson/JsonObject;Lnet/minecraft/advancements/critereon/ContextAwarePredicate;Lnet/minecraft/advancements/critereon/DeserializationContext;)Lnet/minecraft/advancements/critereon/AbstractCriterionTriggerInstance; +MD: net/minecraft/advancements/critereon/EntityHurtPlayerTrigger/m_7295_ ()Lnet/minecraft/resources/ResourceLocation; net/minecraft/advancements/critereon/EntityHurtPlayerTrigger/getId ()Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/advancements/critereon/EntityHurtPlayerTrigger$TriggerInstance/ (Lnet/minecraft/advancements/critereon/ContextAwarePredicate;Lnet/minecraft/advancements/critereon/DamagePredicate;)V net/minecraft/advancements/critereon/EntityHurtPlayerTrigger$TriggerInstance/ (Lnet/minecraft/advancements/critereon/ContextAwarePredicate;Lnet/minecraft/advancements/critereon/DamagePredicate;)V +MD: net/minecraft/advancements/critereon/EntityHurtPlayerTrigger$TriggerInstance/m_150187_ (Lnet/minecraft/advancements/critereon/DamagePredicate;)Lnet/minecraft/advancements/critereon/EntityHurtPlayerTrigger$TriggerInstance; net/minecraft/advancements/critereon/EntityHurtPlayerTrigger$TriggerInstance/entityHurtPlayer (Lnet/minecraft/advancements/critereon/DamagePredicate;)Lnet/minecraft/advancements/critereon/EntityHurtPlayerTrigger$TriggerInstance; +MD: net/minecraft/advancements/critereon/EntityHurtPlayerTrigger$TriggerInstance/m_150189_ ()Lnet/minecraft/advancements/critereon/EntityHurtPlayerTrigger$TriggerInstance; net/minecraft/advancements/critereon/EntityHurtPlayerTrigger$TriggerInstance/entityHurtPlayer ()Lnet/minecraft/advancements/critereon/EntityHurtPlayerTrigger$TriggerInstance; +MD: net/minecraft/advancements/critereon/EntityHurtPlayerTrigger$TriggerInstance/m_35200_ (Lnet/minecraft/server/level/ServerPlayer;Lnet/minecraft/world/damagesource/DamageSource;FFZ)Z net/minecraft/advancements/critereon/EntityHurtPlayerTrigger$TriggerInstance/matches (Lnet/minecraft/server/level/ServerPlayer;Lnet/minecraft/world/damagesource/DamageSource;FFZ)Z +MD: net/minecraft/advancements/critereon/EntityHurtPlayerTrigger$TriggerInstance/m_35206_ (Lnet/minecraft/advancements/critereon/DamagePredicate$Builder;)Lnet/minecraft/advancements/critereon/EntityHurtPlayerTrigger$TriggerInstance; net/minecraft/advancements/critereon/EntityHurtPlayerTrigger$TriggerInstance/entityHurtPlayer (Lnet/minecraft/advancements/critereon/DamagePredicate$Builder;)Lnet/minecraft/advancements/critereon/EntityHurtPlayerTrigger$TriggerInstance; +MD: net/minecraft/advancements/critereon/EntityHurtPlayerTrigger$TriggerInstance/m_7683_ (Lnet/minecraft/advancements/critereon/SerializationContext;)Lcom/google/gson/JsonObject; net/minecraft/advancements/critereon/EntityHurtPlayerTrigger$TriggerInstance/serializeToJson (Lnet/minecraft/advancements/critereon/SerializationContext;)Lcom/google/gson/JsonObject; +MD: net/minecraft/advancements/critereon/EntityPredicate/ ()V net/minecraft/advancements/critereon/EntityPredicate/ ()V +MD: net/minecraft/advancements/critereon/EntityPredicate/ (Lnet/minecraft/advancements/critereon/EntityTypePredicate;Lnet/minecraft/advancements/critereon/DistancePredicate;Lnet/minecraft/advancements/critereon/LocationPredicate;Lnet/minecraft/advancements/critereon/LocationPredicate;Lnet/minecraft/advancements/critereon/MobEffectsPredicate;Lnet/minecraft/advancements/critereon/NbtPredicate;Lnet/minecraft/advancements/critereon/EntityFlagsPredicate;Lnet/minecraft/advancements/critereon/EntityEquipmentPredicate;Lnet/minecraft/advancements/critereon/EntitySubPredicate;Ljava/lang/String;)V net/minecraft/advancements/critereon/EntityPredicate/ (Lnet/minecraft/advancements/critereon/EntityTypePredicate;Lnet/minecraft/advancements/critereon/DistancePredicate;Lnet/minecraft/advancements/critereon/LocationPredicate;Lnet/minecraft/advancements/critereon/LocationPredicate;Lnet/minecraft/advancements/critereon/MobEffectsPredicate;Lnet/minecraft/advancements/critereon/NbtPredicate;Lnet/minecraft/advancements/critereon/EntityFlagsPredicate;Lnet/minecraft/advancements/critereon/EntityEquipmentPredicate;Lnet/minecraft/advancements/critereon/EntitySubPredicate;Ljava/lang/String;)V +MD: net/minecraft/advancements/critereon/EntityPredicate/ (Lnet/minecraft/advancements/critereon/EntityTypePredicate;Lnet/minecraft/advancements/critereon/DistancePredicate;Lnet/minecraft/advancements/critereon/LocationPredicate;Lnet/minecraft/advancements/critereon/LocationPredicate;Lnet/minecraft/advancements/critereon/MobEffectsPredicate;Lnet/minecraft/advancements/critereon/NbtPredicate;Lnet/minecraft/advancements/critereon/EntityFlagsPredicate;Lnet/minecraft/advancements/critereon/EntityEquipmentPredicate;Lnet/minecraft/advancements/critereon/EntitySubPredicate;Lnet/minecraft/advancements/critereon/EntityPredicate;Lnet/minecraft/advancements/critereon/EntityPredicate;Lnet/minecraft/advancements/critereon/EntityPredicate;Ljava/lang/String;)V net/minecraft/advancements/critereon/EntityPredicate/ (Lnet/minecraft/advancements/critereon/EntityTypePredicate;Lnet/minecraft/advancements/critereon/DistancePredicate;Lnet/minecraft/advancements/critereon/LocationPredicate;Lnet/minecraft/advancements/critereon/LocationPredicate;Lnet/minecraft/advancements/critereon/MobEffectsPredicate;Lnet/minecraft/advancements/critereon/NbtPredicate;Lnet/minecraft/advancements/critereon/EntityFlagsPredicate;Lnet/minecraft/advancements/critereon/EntityEquipmentPredicate;Lnet/minecraft/advancements/critereon/EntitySubPredicate;Lnet/minecraft/advancements/critereon/EntityPredicate;Lnet/minecraft/advancements/critereon/EntityPredicate;Lnet/minecraft/advancements/critereon/EntityPredicate;Ljava/lang/String;)V +MD: net/minecraft/advancements/critereon/EntityPredicate/m_150319_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/phys/Vec3;Lnet/minecraft/world/entity/Entity;)Z net/minecraft/advancements/critereon/EntityPredicate/lambda$matches$0 (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/phys/Vec3;Lnet/minecraft/world/entity/Entity;)Z +MD: net/minecraft/advancements/critereon/EntityPredicate/m_285787_ (Lnet/minecraft/advancements/critereon/EntityPredicate;)Lnet/minecraft/advancements/critereon/ContextAwarePredicate; net/minecraft/advancements/critereon/EntityPredicate/wrap (Lnet/minecraft/advancements/critereon/EntityPredicate;)Lnet/minecraft/advancements/critereon/ContextAwarePredicate; +MD: net/minecraft/advancements/critereon/EntityPredicate/m_285855_ (Lcom/google/gson/JsonObject;Ljava/lang/String;Lnet/minecraft/advancements/critereon/DeserializationContext;)Lnet/minecraft/advancements/critereon/ContextAwarePredicate; net/minecraft/advancements/critereon/EntityPredicate/fromJson (Lcom/google/gson/JsonObject;Ljava/lang/String;Lnet/minecraft/advancements/critereon/DeserializationContext;)Lnet/minecraft/advancements/critereon/ContextAwarePredicate; +MD: net/minecraft/advancements/critereon/EntityPredicate/m_285868_ (Lcom/google/gson/JsonObject;Ljava/lang/String;Lnet/minecraft/advancements/critereon/DeserializationContext;)[Lnet/minecraft/advancements/critereon/ContextAwarePredicate; net/minecraft/advancements/critereon/EntityPredicate/fromJsonArray (Lcom/google/gson/JsonObject;Ljava/lang/String;Lnet/minecraft/advancements/critereon/DeserializationContext;)[Lnet/minecraft/advancements/critereon/ContextAwarePredicate; +MD: net/minecraft/advancements/critereon/EntityPredicate/m_285915_ (Ljava/lang/String;Lnet/minecraft/advancements/critereon/DeserializationContext;Lcom/google/gson/JsonElement;)Lnet/minecraft/advancements/critereon/ContextAwarePredicate; net/minecraft/advancements/critereon/EntityPredicate/fromElement (Ljava/lang/String;Lnet/minecraft/advancements/critereon/DeserializationContext;Lcom/google/gson/JsonElement;)Lnet/minecraft/advancements/critereon/ContextAwarePredicate; +MD: net/minecraft/advancements/critereon/EntityPredicate/m_36606_ ()Lcom/google/gson/JsonElement; net/minecraft/advancements/critereon/EntityPredicate/serializeToJson ()Lcom/google/gson/JsonElement; +MD: net/minecraft/advancements/critereon/EntityPredicate/m_36607_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/phys/Vec3;Lnet/minecraft/world/entity/Entity;)Z net/minecraft/advancements/critereon/EntityPredicate/matches (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/phys/Vec3;Lnet/minecraft/world/entity/Entity;)Z +MD: net/minecraft/advancements/critereon/EntityPredicate/m_36611_ (Lnet/minecraft/server/level/ServerPlayer;Lnet/minecraft/world/entity/Entity;)Z net/minecraft/advancements/critereon/EntityPredicate/matches (Lnet/minecraft/server/level/ServerPlayer;Lnet/minecraft/world/entity/Entity;)Z +MD: net/minecraft/advancements/critereon/EntityPredicate/m_36614_ (Lcom/google/gson/JsonElement;)Lnet/minecraft/advancements/critereon/EntityPredicate; net/minecraft/advancements/critereon/EntityPredicate/fromJson (Lcom/google/gson/JsonElement;)Lnet/minecraft/advancements/critereon/EntityPredicate; +MD: net/minecraft/advancements/critereon/EntityPredicate/m_36616_ (Lnet/minecraft/server/level/ServerPlayer;Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/world/level/storage/loot/LootContext; net/minecraft/advancements/critereon/EntityPredicate/createContext (Lnet/minecraft/server/level/ServerPlayer;Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/world/level/storage/loot/LootContext; +MD: net/minecraft/advancements/critereon/EntityPredicate$Builder/ ()V net/minecraft/advancements/critereon/EntityPredicate$Builder/ ()V +MD: net/minecraft/advancements/critereon/EntityPredicate$Builder/m_150328_ (Lnet/minecraft/advancements/critereon/EntityPredicate;)Lnet/minecraft/advancements/critereon/EntityPredicate$Builder; net/minecraft/advancements/critereon/EntityPredicate$Builder/passenger (Lnet/minecraft/advancements/critereon/EntityPredicate;)Lnet/minecraft/advancements/critereon/EntityPredicate$Builder; +MD: net/minecraft/advancements/critereon/EntityPredicate$Builder/m_150330_ (Lnet/minecraft/advancements/critereon/LocationPredicate;)Lnet/minecraft/advancements/critereon/EntityPredicate$Builder; net/minecraft/advancements/critereon/EntityPredicate$Builder/steppingOn (Lnet/minecraft/advancements/critereon/LocationPredicate;)Lnet/minecraft/advancements/critereon/EntityPredicate$Builder; +MD: net/minecraft/advancements/critereon/EntityPredicate$Builder/m_204077_ (Lnet/minecraft/tags/TagKey;)Lnet/minecraft/advancements/critereon/EntityPredicate$Builder; net/minecraft/advancements/critereon/EntityPredicate$Builder/of (Lnet/minecraft/tags/TagKey;)Lnet/minecraft/advancements/critereon/EntityPredicate$Builder; +MD: net/minecraft/advancements/critereon/EntityPredicate$Builder/m_218800_ (Lnet/minecraft/advancements/critereon/EntitySubPredicate;)Lnet/minecraft/advancements/critereon/EntityPredicate$Builder; net/minecraft/advancements/critereon/EntityPredicate$Builder/subPredicate (Lnet/minecraft/advancements/critereon/EntitySubPredicate;)Lnet/minecraft/advancements/critereon/EntityPredicate$Builder; +MD: net/minecraft/advancements/critereon/EntityPredicate$Builder/m_36633_ ()Lnet/minecraft/advancements/critereon/EntityPredicate$Builder; net/minecraft/advancements/critereon/EntityPredicate$Builder/entity ()Lnet/minecraft/advancements/critereon/EntityPredicate$Builder; +MD: net/minecraft/advancements/critereon/EntityPredicate$Builder/m_36636_ (Lnet/minecraft/world/entity/EntityType;)Lnet/minecraft/advancements/critereon/EntityPredicate$Builder; net/minecraft/advancements/critereon/EntityPredicate$Builder/of (Lnet/minecraft/world/entity/EntityType;)Lnet/minecraft/advancements/critereon/EntityPredicate$Builder; +MD: net/minecraft/advancements/critereon/EntityPredicate$Builder/m_36638_ (Lnet/minecraft/advancements/critereon/DistancePredicate;)Lnet/minecraft/advancements/critereon/EntityPredicate$Builder; net/minecraft/advancements/critereon/EntityPredicate$Builder/distance (Lnet/minecraft/advancements/critereon/DistancePredicate;)Lnet/minecraft/advancements/critereon/EntityPredicate$Builder; +MD: net/minecraft/advancements/critereon/EntityPredicate$Builder/m_36640_ (Lnet/minecraft/advancements/critereon/EntityEquipmentPredicate;)Lnet/minecraft/advancements/critereon/EntityPredicate$Builder; net/minecraft/advancements/critereon/EntityPredicate$Builder/equipment (Lnet/minecraft/advancements/critereon/EntityEquipmentPredicate;)Lnet/minecraft/advancements/critereon/EntityPredicate$Builder; +MD: net/minecraft/advancements/critereon/EntityPredicate$Builder/m_36642_ (Lnet/minecraft/advancements/critereon/EntityFlagsPredicate;)Lnet/minecraft/advancements/critereon/EntityPredicate$Builder; net/minecraft/advancements/critereon/EntityPredicate$Builder/flags (Lnet/minecraft/advancements/critereon/EntityFlagsPredicate;)Lnet/minecraft/advancements/critereon/EntityPredicate$Builder; +MD: net/minecraft/advancements/critereon/EntityPredicate$Builder/m_36644_ (Lnet/minecraft/advancements/critereon/EntityPredicate;)Lnet/minecraft/advancements/critereon/EntityPredicate$Builder; net/minecraft/advancements/critereon/EntityPredicate$Builder/vehicle (Lnet/minecraft/advancements/critereon/EntityPredicate;)Lnet/minecraft/advancements/critereon/EntityPredicate$Builder; +MD: net/minecraft/advancements/critereon/EntityPredicate$Builder/m_36646_ (Lnet/minecraft/advancements/critereon/EntityTypePredicate;)Lnet/minecraft/advancements/critereon/EntityPredicate$Builder; net/minecraft/advancements/critereon/EntityPredicate$Builder/entityType (Lnet/minecraft/advancements/critereon/EntityTypePredicate;)Lnet/minecraft/advancements/critereon/EntityPredicate$Builder; +MD: net/minecraft/advancements/critereon/EntityPredicate$Builder/m_36650_ (Lnet/minecraft/advancements/critereon/LocationPredicate;)Lnet/minecraft/advancements/critereon/EntityPredicate$Builder; net/minecraft/advancements/critereon/EntityPredicate$Builder/located (Lnet/minecraft/advancements/critereon/LocationPredicate;)Lnet/minecraft/advancements/critereon/EntityPredicate$Builder; +MD: net/minecraft/advancements/critereon/EntityPredicate$Builder/m_36652_ (Lnet/minecraft/advancements/critereon/MobEffectsPredicate;)Lnet/minecraft/advancements/critereon/EntityPredicate$Builder; net/minecraft/advancements/critereon/EntityPredicate$Builder/effects (Lnet/minecraft/advancements/critereon/MobEffectsPredicate;)Lnet/minecraft/advancements/critereon/EntityPredicate$Builder; +MD: net/minecraft/advancements/critereon/EntityPredicate$Builder/m_36654_ (Lnet/minecraft/advancements/critereon/NbtPredicate;)Lnet/minecraft/advancements/critereon/EntityPredicate$Builder; net/minecraft/advancements/critereon/EntityPredicate$Builder/nbt (Lnet/minecraft/advancements/critereon/NbtPredicate;)Lnet/minecraft/advancements/critereon/EntityPredicate$Builder; +MD: net/minecraft/advancements/critereon/EntityPredicate$Builder/m_36658_ (Ljava/lang/String;)Lnet/minecraft/advancements/critereon/EntityPredicate$Builder; net/minecraft/advancements/critereon/EntityPredicate$Builder/team (Ljava/lang/String;)Lnet/minecraft/advancements/critereon/EntityPredicate$Builder; +MD: net/minecraft/advancements/critereon/EntityPredicate$Builder/m_36662_ ()Lnet/minecraft/advancements/critereon/EntityPredicate; net/minecraft/advancements/critereon/EntityPredicate$Builder/build ()Lnet/minecraft/advancements/critereon/EntityPredicate; +MD: net/minecraft/advancements/critereon/EntityPredicate$Builder/m_36663_ (Lnet/minecraft/advancements/critereon/EntityPredicate;)Lnet/minecraft/advancements/critereon/EntityPredicate$Builder; net/minecraft/advancements/critereon/EntityPredicate$Builder/targetedEntity (Lnet/minecraft/advancements/critereon/EntityPredicate;)Lnet/minecraft/advancements/critereon/EntityPredicate$Builder; +MD: net/minecraft/advancements/critereon/EntitySubPredicate/ ()V net/minecraft/advancements/critereon/EntitySubPredicate/ ()V +MD: net/minecraft/advancements/critereon/EntitySubPredicate/m_153246_ (Lnet/minecraft/world/entity/Entity;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/phys/Vec3;)Z net/minecraft/advancements/critereon/EntitySubPredicate/matches (Lnet/minecraft/world/entity/Entity;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/phys/Vec3;)Z +MD: net/minecraft/advancements/critereon/EntitySubPredicate/m_213616_ ()Lcom/google/gson/JsonObject; net/minecraft/advancements/critereon/EntitySubPredicate/serializeCustomData ()Lcom/google/gson/JsonObject; +MD: net/minecraft/advancements/critereon/EntitySubPredicate/m_213836_ ()Lnet/minecraft/advancements/critereon/EntitySubPredicate$Type; net/minecraft/advancements/critereon/EntitySubPredicate/type ()Lnet/minecraft/advancements/critereon/EntitySubPredicate$Type; +MD: net/minecraft/advancements/critereon/EntitySubPredicate/m_218831_ (Lnet/minecraft/world/entity/animal/CatVariant;)Lnet/minecraft/advancements/critereon/EntitySubPredicate; net/minecraft/advancements/critereon/EntitySubPredicate/variant (Lnet/minecraft/world/entity/animal/CatVariant;)Lnet/minecraft/advancements/critereon/EntitySubPredicate; +MD: net/minecraft/advancements/critereon/EntitySubPredicate/m_218833_ (Lnet/minecraft/world/entity/animal/FrogVariant;)Lnet/minecraft/advancements/critereon/EntitySubPredicate; net/minecraft/advancements/critereon/EntitySubPredicate/variant (Lnet/minecraft/world/entity/animal/FrogVariant;)Lnet/minecraft/advancements/critereon/EntitySubPredicate; +MD: net/minecraft/advancements/critereon/EntitySubPredicate/m_218835_ (Lcom/google/gson/JsonElement;)Lnet/minecraft/advancements/critereon/EntitySubPredicate; net/minecraft/advancements/critereon/EntitySubPredicate/fromJson (Lcom/google/gson/JsonElement;)Lnet/minecraft/advancements/critereon/EntitySubPredicate; +MD: net/minecraft/advancements/critereon/EntitySubPredicate/m_218837_ ()Lcom/google/gson/JsonElement; net/minecraft/advancements/critereon/EntitySubPredicate/serialize ()Lcom/google/gson/JsonElement; +MD: net/minecraft/advancements/critereon/EntitySubPredicate$1/ ()V net/minecraft/advancements/critereon/EntitySubPredicate$1/ ()V +MD: net/minecraft/advancements/critereon/EntitySubPredicate$1/m_153246_ (Lnet/minecraft/world/entity/Entity;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/phys/Vec3;)Z net/minecraft/advancements/critereon/EntitySubPredicate$1/matches (Lnet/minecraft/world/entity/Entity;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/phys/Vec3;)Z +MD: net/minecraft/advancements/critereon/EntitySubPredicate$1/m_213616_ ()Lcom/google/gson/JsonObject; net/minecraft/advancements/critereon/EntitySubPredicate$1/serializeCustomData ()Lcom/google/gson/JsonObject; +MD: net/minecraft/advancements/critereon/EntitySubPredicate$1/m_213836_ ()Lnet/minecraft/advancements/critereon/EntitySubPredicate$Type; net/minecraft/advancements/critereon/EntitySubPredicate$1/type ()Lnet/minecraft/advancements/critereon/EntitySubPredicate$Type; +MD: net/minecraft/advancements/critereon/EntitySubPredicate$Type/m_218845_ (Lcom/google/gson/JsonObject;)Lnet/minecraft/advancements/critereon/EntitySubPredicate; net/minecraft/advancements/critereon/EntitySubPredicate$Type/deserialize (Lcom/google/gson/JsonObject;)Lnet/minecraft/advancements/critereon/EntitySubPredicate; +MD: net/minecraft/advancements/critereon/EntitySubPredicate$Types/ ()V net/minecraft/advancements/critereon/EntitySubPredicate$Types/ ()V +MD: net/minecraft/advancements/critereon/EntitySubPredicate$Types/ ()V net/minecraft/advancements/critereon/EntitySubPredicate$Types/ ()V +MD: net/minecraft/advancements/critereon/EntitySubPredicate$Types/m_218857_ (Lnet/minecraft/world/entity/Entity;)Ljava/util/Optional; net/minecraft/advancements/critereon/EntitySubPredicate$Types/lambda$static$2 (Lnet/minecraft/world/entity/Entity;)Ljava/util/Optional; +MD: net/minecraft/advancements/critereon/EntitySubPredicate$Types/m_218859_ (Lcom/google/gson/JsonObject;)Lnet/minecraft/advancements/critereon/EntitySubPredicate; net/minecraft/advancements/critereon/EntitySubPredicate$Types/lambda$static$0 (Lcom/google/gson/JsonObject;)Lnet/minecraft/advancements/critereon/EntitySubPredicate; +MD: net/minecraft/advancements/critereon/EntitySubPredicate$Types/m_262324_ (Lnet/minecraft/world/entity/Entity;)Ljava/util/Optional; net/minecraft/advancements/critereon/EntitySubPredicate$Types/lambda$static$12 (Lnet/minecraft/world/entity/Entity;)Ljava/util/Optional; +MD: net/minecraft/advancements/critereon/EntitySubPredicate$Types/m_262325_ (Lnet/minecraft/world/entity/Entity;)Ljava/util/Optional; net/minecraft/advancements/critereon/EntitySubPredicate$Types/lambda$static$4 (Lnet/minecraft/world/entity/Entity;)Ljava/util/Optional; +MD: net/minecraft/advancements/critereon/EntitySubPredicate$Types/m_262326_ (Lnet/minecraft/world/entity/Entity;)Ljava/util/Optional; net/minecraft/advancements/critereon/EntitySubPredicate$Types/lambda$static$3 (Lnet/minecraft/world/entity/Entity;)Ljava/util/Optional; +MD: net/minecraft/advancements/critereon/EntitySubPredicate$Types/m_262327_ (Lnet/minecraft/world/entity/Entity;)Ljava/util/Optional; net/minecraft/advancements/critereon/EntitySubPredicate$Types/lambda$static$7 (Lnet/minecraft/world/entity/Entity;)Ljava/util/Optional; +MD: net/minecraft/advancements/critereon/EntitySubPredicate$Types/m_262328_ (Lnet/minecraft/world/entity/Entity;)Ljava/util/Optional; net/minecraft/advancements/critereon/EntitySubPredicate$Types/lambda$static$5 (Lnet/minecraft/world/entity/Entity;)Ljava/util/Optional; +MD: net/minecraft/advancements/critereon/EntitySubPredicate$Types/m_262329_ (Lnet/minecraft/world/entity/Entity;)Ljava/util/Optional; net/minecraft/advancements/critereon/EntitySubPredicate$Types/lambda$static$8 (Lnet/minecraft/world/entity/Entity;)Ljava/util/Optional; +MD: net/minecraft/advancements/critereon/EntitySubPredicate$Types/m_262330_ (Lnet/minecraft/world/entity/Entity;)Ljava/util/Optional; net/minecraft/advancements/critereon/EntitySubPredicate$Types/lambda$static$11 (Lnet/minecraft/world/entity/Entity;)Ljava/util/Optional; +MD: net/minecraft/advancements/critereon/EntitySubPredicate$Types/m_262331_ (Lnet/minecraft/world/entity/Entity;)Ljava/util/Optional; net/minecraft/advancements/critereon/EntitySubPredicate$Types/lambda$static$6 (Lnet/minecraft/world/entity/Entity;)Ljava/util/Optional; +MD: net/minecraft/advancements/critereon/EntitySubPredicate$Types/m_262332_ (Lnet/minecraft/world/entity/Entity;)Ljava/util/Optional; net/minecraft/advancements/critereon/EntitySubPredicate$Types/lambda$static$1 (Lnet/minecraft/world/entity/Entity;)Ljava/util/Optional; +MD: net/minecraft/advancements/critereon/EntitySubPredicate$Types/m_262333_ (Lnet/minecraft/world/entity/Entity;)Ljava/util/Optional; net/minecraft/advancements/critereon/EntitySubPredicate$Types/lambda$static$10 (Lnet/minecraft/world/entity/Entity;)Ljava/util/Optional; +MD: net/minecraft/advancements/critereon/EntitySubPredicate$Types/m_262334_ (Lnet/minecraft/world/entity/Entity;)Ljava/util/Optional; net/minecraft/advancements/critereon/EntitySubPredicate$Types/lambda$static$9 (Lnet/minecraft/world/entity/Entity;)Ljava/util/Optional; +MD: net/minecraft/advancements/critereon/EntitySubPredicate$Types/m_262335_ (Lnet/minecraft/world/entity/Entity;)Ljava/util/Optional; net/minecraft/advancements/critereon/EntitySubPredicate$Types/lambda$static$13 (Lnet/minecraft/world/entity/Entity;)Ljava/util/Optional; +MD: net/minecraft/advancements/critereon/EntityTypePredicate/ ()V net/minecraft/advancements/critereon/EntityTypePredicate/ ()V +MD: net/minecraft/advancements/critereon/EntityTypePredicate/ ()V net/minecraft/advancements/critereon/EntityTypePredicate/ ()V +MD: net/minecraft/advancements/critereon/EntityTypePredicate/m_204081_ (Lnet/minecraft/tags/TagKey;)Lnet/minecraft/advancements/critereon/EntityTypePredicate; net/minecraft/advancements/critereon/EntityTypePredicate/of (Lnet/minecraft/tags/TagKey;)Lnet/minecraft/advancements/critereon/EntityTypePredicate; +MD: net/minecraft/advancements/critereon/EntityTypePredicate/m_257054_ (Lnet/minecraft/resources/ResourceLocation;)Lcom/google/gson/JsonSyntaxException; net/minecraft/advancements/critereon/EntityTypePredicate/lambda$fromJson$0 (Lnet/minecraft/resources/ResourceLocation;)Lcom/google/gson/JsonSyntaxException; +MD: net/minecraft/advancements/critereon/EntityTypePredicate/m_37643_ (Lcom/google/gson/JsonElement;)Lnet/minecraft/advancements/critereon/EntityTypePredicate; net/minecraft/advancements/critereon/EntityTypePredicate/fromJson (Lcom/google/gson/JsonElement;)Lnet/minecraft/advancements/critereon/EntityTypePredicate; +MD: net/minecraft/advancements/critereon/EntityTypePredicate/m_37647_ (Lnet/minecraft/world/entity/EntityType;)Lnet/minecraft/advancements/critereon/EntityTypePredicate; net/minecraft/advancements/critereon/EntityTypePredicate/of (Lnet/minecraft/world/entity/EntityType;)Lnet/minecraft/advancements/critereon/EntityTypePredicate; +MD: net/minecraft/advancements/critereon/EntityTypePredicate/m_5908_ ()Lcom/google/gson/JsonElement; net/minecraft/advancements/critereon/EntityTypePredicate/serializeToJson ()Lcom/google/gson/JsonElement; +MD: net/minecraft/advancements/critereon/EntityTypePredicate/m_7484_ (Lnet/minecraft/world/entity/EntityType;)Z net/minecraft/advancements/critereon/EntityTypePredicate/matches (Lnet/minecraft/world/entity/EntityType;)Z +MD: net/minecraft/advancements/critereon/EntityTypePredicate$1/ ()V net/minecraft/advancements/critereon/EntityTypePredicate$1/ ()V +MD: net/minecraft/advancements/critereon/EntityTypePredicate$1/m_5908_ ()Lcom/google/gson/JsonElement; net/minecraft/advancements/critereon/EntityTypePredicate$1/serializeToJson ()Lcom/google/gson/JsonElement; +MD: net/minecraft/advancements/critereon/EntityTypePredicate$1/m_7484_ (Lnet/minecraft/world/entity/EntityType;)Z net/minecraft/advancements/critereon/EntityTypePredicate$1/matches (Lnet/minecraft/world/entity/EntityType;)Z +MD: net/minecraft/advancements/critereon/EntityTypePredicate$TagPredicate/ (Lnet/minecraft/tags/TagKey;)V net/minecraft/advancements/critereon/EntityTypePredicate$TagPredicate/ (Lnet/minecraft/tags/TagKey;)V +MD: net/minecraft/advancements/critereon/EntityTypePredicate$TagPredicate/m_5908_ ()Lcom/google/gson/JsonElement; net/minecraft/advancements/critereon/EntityTypePredicate$TagPredicate/serializeToJson ()Lcom/google/gson/JsonElement; +MD: net/minecraft/advancements/critereon/EntityTypePredicate$TagPredicate/m_7484_ (Lnet/minecraft/world/entity/EntityType;)Z net/minecraft/advancements/critereon/EntityTypePredicate$TagPredicate/matches (Lnet/minecraft/world/entity/EntityType;)Z +MD: net/minecraft/advancements/critereon/EntityTypePredicate$TypePredicate/ (Lnet/minecraft/world/entity/EntityType;)V net/minecraft/advancements/critereon/EntityTypePredicate$TypePredicate/ (Lnet/minecraft/world/entity/EntityType;)V +MD: net/minecraft/advancements/critereon/EntityTypePredicate$TypePredicate/m_5908_ ()Lcom/google/gson/JsonElement; net/minecraft/advancements/critereon/EntityTypePredicate$TypePredicate/serializeToJson ()Lcom/google/gson/JsonElement; +MD: net/minecraft/advancements/critereon/EntityTypePredicate$TypePredicate/m_7484_ (Lnet/minecraft/world/entity/EntityType;)Z net/minecraft/advancements/critereon/EntityTypePredicate$TypePredicate/matches (Lnet/minecraft/world/entity/EntityType;)Z +MD: net/minecraft/advancements/critereon/EntityVariantPredicate/ (Lcom/mojang/serialization/Codec;Ljava/util/function/Function;)V net/minecraft/advancements/critereon/EntityVariantPredicate/ (Lcom/mojang/serialization/Codec;Ljava/util/function/Function;)V +MD: net/minecraft/advancements/critereon/EntityVariantPredicate/m_219089_ ()Lnet/minecraft/advancements/critereon/EntitySubPredicate$Type; net/minecraft/advancements/critereon/EntityVariantPredicate/type ()Lnet/minecraft/advancements/critereon/EntitySubPredicate$Type; +MD: net/minecraft/advancements/critereon/EntityVariantPredicate/m_219093_ (Lnet/minecraft/core/Registry;Ljava/util/function/Function;)Lnet/minecraft/advancements/critereon/EntityVariantPredicate; net/minecraft/advancements/critereon/EntityVariantPredicate/create (Lnet/minecraft/core/Registry;Ljava/util/function/Function;)Lnet/minecraft/advancements/critereon/EntityVariantPredicate; +MD: net/minecraft/advancements/critereon/EntityVariantPredicate/m_219096_ (Ljava/lang/Object;)Lnet/minecraft/advancements/critereon/EntitySubPredicate; net/minecraft/advancements/critereon/EntityVariantPredicate/createPredicate (Ljava/lang/Object;)Lnet/minecraft/advancements/critereon/EntitySubPredicate; +MD: net/minecraft/advancements/critereon/EntityVariantPredicate/m_262336_ (Lcom/mojang/serialization/Codec;Lcom/google/gson/JsonObject;)Lnet/minecraft/advancements/critereon/EntitySubPredicate; net/minecraft/advancements/critereon/EntityVariantPredicate/lambda$new$0 (Lcom/mojang/serialization/Codec;Lcom/google/gson/JsonObject;)Lnet/minecraft/advancements/critereon/EntitySubPredicate; +MD: net/minecraft/advancements/critereon/EntityVariantPredicate/m_262478_ (Lcom/mojang/serialization/Codec;Ljava/util/function/Function;)Lnet/minecraft/advancements/critereon/EntityVariantPredicate; net/minecraft/advancements/critereon/EntityVariantPredicate/create (Lcom/mojang/serialization/Codec;Ljava/util/function/Function;)Lnet/minecraft/advancements/critereon/EntityVariantPredicate; +MD: net/minecraft/advancements/critereon/EntityVariantPredicate$1/ (Lnet/minecraft/advancements/critereon/EntityVariantPredicate;Ljava/lang/Object;)V net/minecraft/advancements/critereon/EntityVariantPredicate$1/ (Lnet/minecraft/advancements/critereon/EntityVariantPredicate;Ljava/lang/Object;)V +MD: net/minecraft/advancements/critereon/EntityVariantPredicate$1/m_153246_ (Lnet/minecraft/world/entity/Entity;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/phys/Vec3;)Z net/minecraft/advancements/critereon/EntityVariantPredicate$1/matches (Lnet/minecraft/world/entity/Entity;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/phys/Vec3;)Z +MD: net/minecraft/advancements/critereon/EntityVariantPredicate$1/m_213616_ ()Lcom/google/gson/JsonObject; net/minecraft/advancements/critereon/EntityVariantPredicate$1/serializeCustomData ()Lcom/google/gson/JsonObject; +MD: net/minecraft/advancements/critereon/EntityVariantPredicate$1/m_213836_ ()Lnet/minecraft/advancements/critereon/EntitySubPredicate$Type; net/minecraft/advancements/critereon/EntityVariantPredicate$1/type ()Lnet/minecraft/advancements/critereon/EntitySubPredicate$Type; +MD: net/minecraft/advancements/critereon/EntityVariantPredicate$1/m_219108_ (Ljava/lang/Object;Ljava/lang/Object;)Z net/minecraft/advancements/critereon/EntityVariantPredicate$1/lambda$matches$0 (Ljava/lang/Object;Ljava/lang/Object;)Z +MD: net/minecraft/advancements/critereon/EntityVariantPredicate$1/m_262337_ (Ljava/lang/Object;Ljava/lang/String;)Lcom/google/gson/JsonParseException; net/minecraft/advancements/critereon/EntityVariantPredicate$1/lambda$serializeCustomData$1 (Ljava/lang/Object;Ljava/lang/String;)Lcom/google/gson/JsonParseException; +MD: net/minecraft/advancements/critereon/FilledBucketTrigger/ ()V net/minecraft/advancements/critereon/FilledBucketTrigger/ ()V +MD: net/minecraft/advancements/critereon/FilledBucketTrigger/ ()V net/minecraft/advancements/critereon/FilledBucketTrigger/ ()V +MD: net/minecraft/advancements/critereon/FilledBucketTrigger/m_38772_ (Lnet/minecraft/server/level/ServerPlayer;Lnet/minecraft/world/item/ItemStack;)V net/minecraft/advancements/critereon/FilledBucketTrigger/trigger (Lnet/minecraft/server/level/ServerPlayer;Lnet/minecraft/world/item/ItemStack;)V +MD: net/minecraft/advancements/critereon/FilledBucketTrigger/m_38775_ (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/advancements/critereon/FilledBucketTrigger$TriggerInstance;)Z net/minecraft/advancements/critereon/FilledBucketTrigger/lambda$trigger$0 (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/advancements/critereon/FilledBucketTrigger$TriggerInstance;)Z +MD: net/minecraft/advancements/critereon/FilledBucketTrigger/m_7214_ (Lcom/google/gson/JsonObject;Lnet/minecraft/advancements/critereon/ContextAwarePredicate;Lnet/minecraft/advancements/critereon/DeserializationContext;)Lnet/minecraft/advancements/critereon/AbstractCriterionTriggerInstance; net/minecraft/advancements/critereon/FilledBucketTrigger/createInstance (Lcom/google/gson/JsonObject;Lnet/minecraft/advancements/critereon/ContextAwarePredicate;Lnet/minecraft/advancements/critereon/DeserializationContext;)Lnet/minecraft/advancements/critereon/AbstractCriterionTriggerInstance; +MD: net/minecraft/advancements/critereon/FilledBucketTrigger/m_7214_ (Lcom/google/gson/JsonObject;Lnet/minecraft/advancements/critereon/ContextAwarePredicate;Lnet/minecraft/advancements/critereon/DeserializationContext;)Lnet/minecraft/advancements/critereon/FilledBucketTrigger$TriggerInstance; net/minecraft/advancements/critereon/FilledBucketTrigger/createInstance (Lcom/google/gson/JsonObject;Lnet/minecraft/advancements/critereon/ContextAwarePredicate;Lnet/minecraft/advancements/critereon/DeserializationContext;)Lnet/minecraft/advancements/critereon/FilledBucketTrigger$TriggerInstance; +MD: net/minecraft/advancements/critereon/FilledBucketTrigger/m_7295_ ()Lnet/minecraft/resources/ResourceLocation; net/minecraft/advancements/critereon/FilledBucketTrigger/getId ()Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/advancements/critereon/FilledBucketTrigger$TriggerInstance/ (Lnet/minecraft/advancements/critereon/ContextAwarePredicate;Lnet/minecraft/advancements/critereon/ItemPredicate;)V net/minecraft/advancements/critereon/FilledBucketTrigger$TriggerInstance/ (Lnet/minecraft/advancements/critereon/ContextAwarePredicate;Lnet/minecraft/advancements/critereon/ItemPredicate;)V +MD: net/minecraft/advancements/critereon/FilledBucketTrigger$TriggerInstance/m_38791_ (Lnet/minecraft/world/item/ItemStack;)Z net/minecraft/advancements/critereon/FilledBucketTrigger$TriggerInstance/matches (Lnet/minecraft/world/item/ItemStack;)Z +MD: net/minecraft/advancements/critereon/FilledBucketTrigger$TriggerInstance/m_38793_ (Lnet/minecraft/advancements/critereon/ItemPredicate;)Lnet/minecraft/advancements/critereon/FilledBucketTrigger$TriggerInstance; net/minecraft/advancements/critereon/FilledBucketTrigger$TriggerInstance/filledBucket (Lnet/minecraft/advancements/critereon/ItemPredicate;)Lnet/minecraft/advancements/critereon/FilledBucketTrigger$TriggerInstance; +MD: net/minecraft/advancements/critereon/FilledBucketTrigger$TriggerInstance/m_7683_ (Lnet/minecraft/advancements/critereon/SerializationContext;)Lcom/google/gson/JsonObject; net/minecraft/advancements/critereon/FilledBucketTrigger$TriggerInstance/serializeToJson (Lnet/minecraft/advancements/critereon/SerializationContext;)Lcom/google/gson/JsonObject; +MD: net/minecraft/advancements/critereon/FishingHookPredicate/ ()V net/minecraft/advancements/critereon/FishingHookPredicate/ ()V +MD: net/minecraft/advancements/critereon/FishingHookPredicate/ (Z)V net/minecraft/advancements/critereon/FishingHookPredicate/ (Z)V +MD: net/minecraft/advancements/critereon/FishingHookPredicate/m_153246_ (Lnet/minecraft/world/entity/Entity;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/phys/Vec3;)Z net/minecraft/advancements/critereon/FishingHookPredicate/matches (Lnet/minecraft/world/entity/Entity;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/phys/Vec3;)Z +MD: net/minecraft/advancements/critereon/FishingHookPredicate/m_213616_ ()Lcom/google/gson/JsonObject; net/minecraft/advancements/critereon/FishingHookPredicate/serializeCustomData ()Lcom/google/gson/JsonObject; +MD: net/minecraft/advancements/critereon/FishingHookPredicate/m_213836_ ()Lnet/minecraft/advancements/critereon/EntitySubPredicate$Type; net/minecraft/advancements/critereon/FishingHookPredicate/type ()Lnet/minecraft/advancements/critereon/EntitySubPredicate$Type; +MD: net/minecraft/advancements/critereon/FishingHookPredicate/m_219719_ (Lcom/google/gson/JsonObject;)Lnet/minecraft/advancements/critereon/FishingHookPredicate; net/minecraft/advancements/critereon/FishingHookPredicate/fromJson (Lcom/google/gson/JsonObject;)Lnet/minecraft/advancements/critereon/FishingHookPredicate; +MD: net/minecraft/advancements/critereon/FishingHookPredicate/m_39766_ (Z)Lnet/minecraft/advancements/critereon/FishingHookPredicate; net/minecraft/advancements/critereon/FishingHookPredicate/inOpenWater (Z)Lnet/minecraft/advancements/critereon/FishingHookPredicate; +MD: net/minecraft/advancements/critereon/FishingRodHookedTrigger/ ()V net/minecraft/advancements/critereon/FishingRodHookedTrigger/ ()V +MD: net/minecraft/advancements/critereon/FishingRodHookedTrigger/ ()V net/minecraft/advancements/critereon/FishingRodHookedTrigger/ ()V +MD: net/minecraft/advancements/critereon/FishingRodHookedTrigger/m_40416_ (Lnet/minecraft/server/level/ServerPlayer;Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/entity/projectile/FishingHook;Ljava/util/Collection;)V net/minecraft/advancements/critereon/FishingRodHookedTrigger/trigger (Lnet/minecraft/server/level/ServerPlayer;Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/entity/projectile/FishingHook;Ljava/util/Collection;)V +MD: net/minecraft/advancements/critereon/FishingRodHookedTrigger/m_40421_ (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/level/storage/loot/LootContext;Ljava/util/Collection;Lnet/minecraft/advancements/critereon/FishingRodHookedTrigger$TriggerInstance;)Z net/minecraft/advancements/critereon/FishingRodHookedTrigger/lambda$trigger$0 (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/level/storage/loot/LootContext;Ljava/util/Collection;Lnet/minecraft/advancements/critereon/FishingRodHookedTrigger$TriggerInstance;)Z +MD: net/minecraft/advancements/critereon/FishingRodHookedTrigger/m_7214_ (Lcom/google/gson/JsonObject;Lnet/minecraft/advancements/critereon/ContextAwarePredicate;Lnet/minecraft/advancements/critereon/DeserializationContext;)Lnet/minecraft/advancements/critereon/AbstractCriterionTriggerInstance; net/minecraft/advancements/critereon/FishingRodHookedTrigger/createInstance (Lcom/google/gson/JsonObject;Lnet/minecraft/advancements/critereon/ContextAwarePredicate;Lnet/minecraft/advancements/critereon/DeserializationContext;)Lnet/minecraft/advancements/critereon/AbstractCriterionTriggerInstance; +MD: net/minecraft/advancements/critereon/FishingRodHookedTrigger/m_7214_ (Lcom/google/gson/JsonObject;Lnet/minecraft/advancements/critereon/ContextAwarePredicate;Lnet/minecraft/advancements/critereon/DeserializationContext;)Lnet/minecraft/advancements/critereon/FishingRodHookedTrigger$TriggerInstance; net/minecraft/advancements/critereon/FishingRodHookedTrigger/createInstance (Lcom/google/gson/JsonObject;Lnet/minecraft/advancements/critereon/ContextAwarePredicate;Lnet/minecraft/advancements/critereon/DeserializationContext;)Lnet/minecraft/advancements/critereon/FishingRodHookedTrigger$TriggerInstance; +MD: net/minecraft/advancements/critereon/FishingRodHookedTrigger/m_7295_ ()Lnet/minecraft/resources/ResourceLocation; net/minecraft/advancements/critereon/FishingRodHookedTrigger/getId ()Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/advancements/critereon/FishingRodHookedTrigger$TriggerInstance/ (Lnet/minecraft/advancements/critereon/ContextAwarePredicate;Lnet/minecraft/advancements/critereon/ItemPredicate;Lnet/minecraft/advancements/critereon/ContextAwarePredicate;Lnet/minecraft/advancements/critereon/ItemPredicate;)V net/minecraft/advancements/critereon/FishingRodHookedTrigger$TriggerInstance/ (Lnet/minecraft/advancements/critereon/ContextAwarePredicate;Lnet/minecraft/advancements/critereon/ItemPredicate;Lnet/minecraft/advancements/critereon/ContextAwarePredicate;Lnet/minecraft/advancements/critereon/ItemPredicate;)V +MD: net/minecraft/advancements/critereon/FishingRodHookedTrigger$TriggerInstance/m_40443_ (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/level/storage/loot/LootContext;Ljava/util/Collection;)Z net/minecraft/advancements/critereon/FishingRodHookedTrigger$TriggerInstance/matches (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/level/storage/loot/LootContext;Ljava/util/Collection;)Z +MD: net/minecraft/advancements/critereon/FishingRodHookedTrigger$TriggerInstance/m_40447_ (Lnet/minecraft/advancements/critereon/ItemPredicate;Lnet/minecraft/advancements/critereon/EntityPredicate;Lnet/minecraft/advancements/critereon/ItemPredicate;)Lnet/minecraft/advancements/critereon/FishingRodHookedTrigger$TriggerInstance; net/minecraft/advancements/critereon/FishingRodHookedTrigger$TriggerInstance/fishedItem (Lnet/minecraft/advancements/critereon/ItemPredicate;Lnet/minecraft/advancements/critereon/EntityPredicate;Lnet/minecraft/advancements/critereon/ItemPredicate;)Lnet/minecraft/advancements/critereon/FishingRodHookedTrigger$TriggerInstance; +MD: net/minecraft/advancements/critereon/FishingRodHookedTrigger$TriggerInstance/m_7683_ (Lnet/minecraft/advancements/critereon/SerializationContext;)Lcom/google/gson/JsonObject; net/minecraft/advancements/critereon/FishingRodHookedTrigger$TriggerInstance/serializeToJson (Lnet/minecraft/advancements/critereon/SerializationContext;)Lcom/google/gson/JsonObject; +MD: net/minecraft/advancements/critereon/FluidPredicate/ ()V net/minecraft/advancements/critereon/FluidPredicate/ ()V +MD: net/minecraft/advancements/critereon/FluidPredicate/ (Lnet/minecraft/tags/TagKey;Lnet/minecraft/world/level/material/Fluid;Lnet/minecraft/advancements/critereon/StatePropertiesPredicate;)V net/minecraft/advancements/critereon/FluidPredicate/ (Lnet/minecraft/tags/TagKey;Lnet/minecraft/world/level/material/Fluid;Lnet/minecraft/advancements/critereon/StatePropertiesPredicate;)V +MD: net/minecraft/advancements/critereon/FluidPredicate/m_41103_ ()Lcom/google/gson/JsonElement; net/minecraft/advancements/critereon/FluidPredicate/serializeToJson ()Lcom/google/gson/JsonElement; +MD: net/minecraft/advancements/critereon/FluidPredicate/m_41104_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;)Z net/minecraft/advancements/critereon/FluidPredicate/matches (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/advancements/critereon/FluidPredicate/m_41107_ (Lcom/google/gson/JsonElement;)Lnet/minecraft/advancements/critereon/FluidPredicate; net/minecraft/advancements/critereon/FluidPredicate/fromJson (Lcom/google/gson/JsonElement;)Lnet/minecraft/advancements/critereon/FluidPredicate; +MD: net/minecraft/advancements/critereon/FluidPredicate$Builder/ ()V net/minecraft/advancements/critereon/FluidPredicate$Builder/ ()V +MD: net/minecraft/advancements/critereon/FluidPredicate$Builder/m_151166_ ()Lnet/minecraft/advancements/critereon/FluidPredicate$Builder; net/minecraft/advancements/critereon/FluidPredicate$Builder/fluid ()Lnet/minecraft/advancements/critereon/FluidPredicate$Builder; +MD: net/minecraft/advancements/critereon/FluidPredicate$Builder/m_151169_ (Lnet/minecraft/advancements/critereon/StatePropertiesPredicate;)Lnet/minecraft/advancements/critereon/FluidPredicate$Builder; net/minecraft/advancements/critereon/FluidPredicate$Builder/setProperties (Lnet/minecraft/advancements/critereon/StatePropertiesPredicate;)Lnet/minecraft/advancements/critereon/FluidPredicate$Builder; +MD: net/minecraft/advancements/critereon/FluidPredicate$Builder/m_151171_ (Lnet/minecraft/world/level/material/Fluid;)Lnet/minecraft/advancements/critereon/FluidPredicate$Builder; net/minecraft/advancements/critereon/FluidPredicate$Builder/of (Lnet/minecraft/world/level/material/Fluid;)Lnet/minecraft/advancements/critereon/FluidPredicate$Builder; +MD: net/minecraft/advancements/critereon/FluidPredicate$Builder/m_151173_ ()Lnet/minecraft/advancements/critereon/FluidPredicate; net/minecraft/advancements/critereon/FluidPredicate$Builder/build ()Lnet/minecraft/advancements/critereon/FluidPredicate; +MD: net/minecraft/advancements/critereon/FluidPredicate$Builder/m_204105_ (Lnet/minecraft/tags/TagKey;)Lnet/minecraft/advancements/critereon/FluidPredicate$Builder; net/minecraft/advancements/critereon/FluidPredicate$Builder/of (Lnet/minecraft/tags/TagKey;)Lnet/minecraft/advancements/critereon/FluidPredicate$Builder; +MD: net/minecraft/advancements/critereon/ImpossibleTrigger/ ()V net/minecraft/advancements/critereon/ImpossibleTrigger/ ()V +MD: net/minecraft/advancements/critereon/ImpossibleTrigger/ ()V net/minecraft/advancements/critereon/ImpossibleTrigger/ ()V +MD: net/minecraft/advancements/critereon/ImpossibleTrigger/m_5656_ (Lnet/minecraft/server/PlayerAdvancements;)V net/minecraft/advancements/critereon/ImpossibleTrigger/removePlayerListeners (Lnet/minecraft/server/PlayerAdvancements;)V +MD: net/minecraft/advancements/critereon/ImpossibleTrigger/m_5868_ (Lcom/google/gson/JsonObject;Lnet/minecraft/advancements/critereon/DeserializationContext;)Lnet/minecraft/advancements/CriterionTriggerInstance; net/minecraft/advancements/critereon/ImpossibleTrigger/createInstance (Lcom/google/gson/JsonObject;Lnet/minecraft/advancements/critereon/DeserializationContext;)Lnet/minecraft/advancements/CriterionTriggerInstance; +MD: net/minecraft/advancements/critereon/ImpossibleTrigger/m_5868_ (Lcom/google/gson/JsonObject;Lnet/minecraft/advancements/critereon/DeserializationContext;)Lnet/minecraft/advancements/critereon/ImpossibleTrigger$TriggerInstance; net/minecraft/advancements/critereon/ImpossibleTrigger/createInstance (Lcom/google/gson/JsonObject;Lnet/minecraft/advancements/critereon/DeserializationContext;)Lnet/minecraft/advancements/critereon/ImpossibleTrigger$TriggerInstance; +MD: net/minecraft/advancements/critereon/ImpossibleTrigger/m_6467_ (Lnet/minecraft/server/PlayerAdvancements;Lnet/minecraft/advancements/CriterionTrigger$Listener;)V net/minecraft/advancements/critereon/ImpossibleTrigger/addPlayerListener (Lnet/minecraft/server/PlayerAdvancements;Lnet/minecraft/advancements/CriterionTrigger$Listener;)V +MD: net/minecraft/advancements/critereon/ImpossibleTrigger/m_6468_ (Lnet/minecraft/server/PlayerAdvancements;Lnet/minecraft/advancements/CriterionTrigger$Listener;)V net/minecraft/advancements/critereon/ImpossibleTrigger/removePlayerListener (Lnet/minecraft/server/PlayerAdvancements;Lnet/minecraft/advancements/CriterionTrigger$Listener;)V +MD: net/minecraft/advancements/critereon/ImpossibleTrigger/m_7295_ ()Lnet/minecraft/resources/ResourceLocation; net/minecraft/advancements/critereon/ImpossibleTrigger/getId ()Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/advancements/critereon/ImpossibleTrigger$TriggerInstance/ ()V net/minecraft/advancements/critereon/ImpossibleTrigger$TriggerInstance/ ()V +MD: net/minecraft/advancements/critereon/ImpossibleTrigger$TriggerInstance/m_7294_ ()Lnet/minecraft/resources/ResourceLocation; net/minecraft/advancements/critereon/ImpossibleTrigger$TriggerInstance/getCriterion ()Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/advancements/critereon/ImpossibleTrigger$TriggerInstance/m_7683_ (Lnet/minecraft/advancements/critereon/SerializationContext;)Lcom/google/gson/JsonObject; net/minecraft/advancements/critereon/ImpossibleTrigger$TriggerInstance/serializeToJson (Lnet/minecraft/advancements/critereon/SerializationContext;)Lcom/google/gson/JsonObject; +MD: net/minecraft/advancements/critereon/InventoryChangeTrigger/ ()V net/minecraft/advancements/critereon/InventoryChangeTrigger/ ()V +MD: net/minecraft/advancements/critereon/InventoryChangeTrigger/ ()V net/minecraft/advancements/critereon/InventoryChangeTrigger/ ()V +MD: net/minecraft/advancements/critereon/InventoryChangeTrigger/m_43149_ (Lnet/minecraft/server/level/ServerPlayer;Lnet/minecraft/world/entity/player/Inventory;Lnet/minecraft/world/item/ItemStack;)V net/minecraft/advancements/critereon/InventoryChangeTrigger/trigger (Lnet/minecraft/server/level/ServerPlayer;Lnet/minecraft/world/entity/player/Inventory;Lnet/minecraft/world/item/ItemStack;)V +MD: net/minecraft/advancements/critereon/InventoryChangeTrigger/m_43153_ (Lnet/minecraft/server/level/ServerPlayer;Lnet/minecraft/world/entity/player/Inventory;Lnet/minecraft/world/item/ItemStack;III)V net/minecraft/advancements/critereon/InventoryChangeTrigger/trigger (Lnet/minecraft/server/level/ServerPlayer;Lnet/minecraft/world/entity/player/Inventory;Lnet/minecraft/world/item/ItemStack;III)V +MD: net/minecraft/advancements/critereon/InventoryChangeTrigger/m_43160_ (Lnet/minecraft/world/entity/player/Inventory;Lnet/minecraft/world/item/ItemStack;IIILnet/minecraft/advancements/critereon/InventoryChangeTrigger$TriggerInstance;)Z net/minecraft/advancements/critereon/InventoryChangeTrigger/lambda$trigger$0 (Lnet/minecraft/world/entity/player/Inventory;Lnet/minecraft/world/item/ItemStack;IIILnet/minecraft/advancements/critereon/InventoryChangeTrigger$TriggerInstance;)Z +MD: net/minecraft/advancements/critereon/InventoryChangeTrigger/m_7214_ (Lcom/google/gson/JsonObject;Lnet/minecraft/advancements/critereon/ContextAwarePredicate;Lnet/minecraft/advancements/critereon/DeserializationContext;)Lnet/minecraft/advancements/critereon/AbstractCriterionTriggerInstance; net/minecraft/advancements/critereon/InventoryChangeTrigger/createInstance (Lcom/google/gson/JsonObject;Lnet/minecraft/advancements/critereon/ContextAwarePredicate;Lnet/minecraft/advancements/critereon/DeserializationContext;)Lnet/minecraft/advancements/critereon/AbstractCriterionTriggerInstance; +MD: net/minecraft/advancements/critereon/InventoryChangeTrigger/m_7214_ (Lcom/google/gson/JsonObject;Lnet/minecraft/advancements/critereon/ContextAwarePredicate;Lnet/minecraft/advancements/critereon/DeserializationContext;)Lnet/minecraft/advancements/critereon/InventoryChangeTrigger$TriggerInstance; net/minecraft/advancements/critereon/InventoryChangeTrigger/createInstance (Lcom/google/gson/JsonObject;Lnet/minecraft/advancements/critereon/ContextAwarePredicate;Lnet/minecraft/advancements/critereon/DeserializationContext;)Lnet/minecraft/advancements/critereon/InventoryChangeTrigger$TriggerInstance; +MD: net/minecraft/advancements/critereon/InventoryChangeTrigger/m_7295_ ()Lnet/minecraft/resources/ResourceLocation; net/minecraft/advancements/critereon/InventoryChangeTrigger/getId ()Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/advancements/critereon/InventoryChangeTrigger$TriggerInstance/ (Lnet/minecraft/advancements/critereon/ContextAwarePredicate;Lnet/minecraft/advancements/critereon/MinMaxBounds$Ints;Lnet/minecraft/advancements/critereon/MinMaxBounds$Ints;Lnet/minecraft/advancements/critereon/MinMaxBounds$Ints;[Lnet/minecraft/advancements/critereon/ItemPredicate;)V net/minecraft/advancements/critereon/InventoryChangeTrigger$TriggerInstance/ (Lnet/minecraft/advancements/critereon/ContextAwarePredicate;Lnet/minecraft/advancements/critereon/MinMaxBounds$Ints;Lnet/minecraft/advancements/critereon/MinMaxBounds$Ints;Lnet/minecraft/advancements/critereon/MinMaxBounds$Ints;[Lnet/minecraft/advancements/critereon/ItemPredicate;)V +MD: net/minecraft/advancements/critereon/InventoryChangeTrigger$TriggerInstance/m_43186_ (Lnet/minecraft/world/entity/player/Inventory;Lnet/minecraft/world/item/ItemStack;III)Z net/minecraft/advancements/critereon/InventoryChangeTrigger$TriggerInstance/matches (Lnet/minecraft/world/entity/player/Inventory;Lnet/minecraft/world/item/ItemStack;III)Z +MD: net/minecraft/advancements/critereon/InventoryChangeTrigger$TriggerInstance/m_43192_ (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/advancements/critereon/ItemPredicate;)Z net/minecraft/advancements/critereon/InventoryChangeTrigger$TriggerInstance/lambda$matches$0 (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/advancements/critereon/ItemPredicate;)Z +MD: net/minecraft/advancements/critereon/InventoryChangeTrigger$TriggerInstance/m_43197_ ([Lnet/minecraft/advancements/critereon/ItemPredicate;)Lnet/minecraft/advancements/critereon/InventoryChangeTrigger$TriggerInstance; net/minecraft/advancements/critereon/InventoryChangeTrigger$TriggerInstance/hasItems ([Lnet/minecraft/advancements/critereon/ItemPredicate;)Lnet/minecraft/advancements/critereon/InventoryChangeTrigger$TriggerInstance; +MD: net/minecraft/advancements/critereon/InventoryChangeTrigger$TriggerInstance/m_43199_ ([Lnet/minecraft/world/level/ItemLike;)Lnet/minecraft/advancements/critereon/InventoryChangeTrigger$TriggerInstance; net/minecraft/advancements/critereon/InventoryChangeTrigger$TriggerInstance/hasItems ([Lnet/minecraft/world/level/ItemLike;)Lnet/minecraft/advancements/critereon/InventoryChangeTrigger$TriggerInstance; +MD: net/minecraft/advancements/critereon/InventoryChangeTrigger$TriggerInstance/m_7683_ (Lnet/minecraft/advancements/critereon/SerializationContext;)Lcom/google/gson/JsonObject; net/minecraft/advancements/critereon/InventoryChangeTrigger$TriggerInstance/serializeToJson (Lnet/minecraft/advancements/critereon/SerializationContext;)Lcom/google/gson/JsonObject; +MD: net/minecraft/advancements/critereon/ItemDurabilityTrigger/ ()V net/minecraft/advancements/critereon/ItemDurabilityTrigger/ ()V +MD: net/minecraft/advancements/critereon/ItemDurabilityTrigger/ ()V net/minecraft/advancements/critereon/ItemDurabilityTrigger/ ()V +MD: net/minecraft/advancements/critereon/ItemDurabilityTrigger/m_43669_ (Lnet/minecraft/server/level/ServerPlayer;Lnet/minecraft/world/item/ItemStack;I)V net/minecraft/advancements/critereon/ItemDurabilityTrigger/trigger (Lnet/minecraft/server/level/ServerPlayer;Lnet/minecraft/world/item/ItemStack;I)V +MD: net/minecraft/advancements/critereon/ItemDurabilityTrigger/m_43673_ (Lnet/minecraft/world/item/ItemStack;ILnet/minecraft/advancements/critereon/ItemDurabilityTrigger$TriggerInstance;)Z net/minecraft/advancements/critereon/ItemDurabilityTrigger/lambda$trigger$0 (Lnet/minecraft/world/item/ItemStack;ILnet/minecraft/advancements/critereon/ItemDurabilityTrigger$TriggerInstance;)Z +MD: net/minecraft/advancements/critereon/ItemDurabilityTrigger/m_7214_ (Lcom/google/gson/JsonObject;Lnet/minecraft/advancements/critereon/ContextAwarePredicate;Lnet/minecraft/advancements/critereon/DeserializationContext;)Lnet/minecraft/advancements/critereon/ItemDurabilityTrigger$TriggerInstance; net/minecraft/advancements/critereon/ItemDurabilityTrigger/createInstance (Lcom/google/gson/JsonObject;Lnet/minecraft/advancements/critereon/ContextAwarePredicate;Lnet/minecraft/advancements/critereon/DeserializationContext;)Lnet/minecraft/advancements/critereon/ItemDurabilityTrigger$TriggerInstance; +MD: net/minecraft/advancements/critereon/ItemDurabilityTrigger/m_7214_ (Lcom/google/gson/JsonObject;Lnet/minecraft/advancements/critereon/ContextAwarePredicate;Lnet/minecraft/advancements/critereon/DeserializationContext;)Lnet/minecraft/advancements/critereon/AbstractCriterionTriggerInstance; net/minecraft/advancements/critereon/ItemDurabilityTrigger/createInstance (Lcom/google/gson/JsonObject;Lnet/minecraft/advancements/critereon/ContextAwarePredicate;Lnet/minecraft/advancements/critereon/DeserializationContext;)Lnet/minecraft/advancements/critereon/AbstractCriterionTriggerInstance; +MD: net/minecraft/advancements/critereon/ItemDurabilityTrigger/m_7295_ ()Lnet/minecraft/resources/ResourceLocation; net/minecraft/advancements/critereon/ItemDurabilityTrigger/getId ()Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/advancements/critereon/ItemDurabilityTrigger$TriggerInstance/ (Lnet/minecraft/advancements/critereon/ContextAwarePredicate;Lnet/minecraft/advancements/critereon/ItemPredicate;Lnet/minecraft/advancements/critereon/MinMaxBounds$Ints;Lnet/minecraft/advancements/critereon/MinMaxBounds$Ints;)V net/minecraft/advancements/critereon/ItemDurabilityTrigger$TriggerInstance/ (Lnet/minecraft/advancements/critereon/ContextAwarePredicate;Lnet/minecraft/advancements/critereon/ItemPredicate;Lnet/minecraft/advancements/critereon/MinMaxBounds$Ints;Lnet/minecraft/advancements/critereon/MinMaxBounds$Ints;)V +MD: net/minecraft/advancements/critereon/ItemDurabilityTrigger$TriggerInstance/m_151286_ (Lnet/minecraft/advancements/critereon/ItemPredicate;Lnet/minecraft/advancements/critereon/MinMaxBounds$Ints;)Lnet/minecraft/advancements/critereon/ItemDurabilityTrigger$TriggerInstance; net/minecraft/advancements/critereon/ItemDurabilityTrigger$TriggerInstance/changedDurability (Lnet/minecraft/advancements/critereon/ItemPredicate;Lnet/minecraft/advancements/critereon/MinMaxBounds$Ints;)Lnet/minecraft/advancements/critereon/ItemDurabilityTrigger$TriggerInstance; +MD: net/minecraft/advancements/critereon/ItemDurabilityTrigger$TriggerInstance/m_285799_ (Lnet/minecraft/advancements/critereon/ContextAwarePredicate;Lnet/minecraft/advancements/critereon/ItemPredicate;Lnet/minecraft/advancements/critereon/MinMaxBounds$Ints;)Lnet/minecraft/advancements/critereon/ItemDurabilityTrigger$TriggerInstance; net/minecraft/advancements/critereon/ItemDurabilityTrigger$TriggerInstance/changedDurability (Lnet/minecraft/advancements/critereon/ContextAwarePredicate;Lnet/minecraft/advancements/critereon/ItemPredicate;Lnet/minecraft/advancements/critereon/MinMaxBounds$Ints;)Lnet/minecraft/advancements/critereon/ItemDurabilityTrigger$TriggerInstance; +MD: net/minecraft/advancements/critereon/ItemDurabilityTrigger$TriggerInstance/m_43698_ (Lnet/minecraft/world/item/ItemStack;I)Z net/minecraft/advancements/critereon/ItemDurabilityTrigger$TriggerInstance/matches (Lnet/minecraft/world/item/ItemStack;I)Z +MD: net/minecraft/advancements/critereon/ItemDurabilityTrigger$TriggerInstance/m_7683_ (Lnet/minecraft/advancements/critereon/SerializationContext;)Lcom/google/gson/JsonObject; net/minecraft/advancements/critereon/ItemDurabilityTrigger$TriggerInstance/serializeToJson (Lnet/minecraft/advancements/critereon/SerializationContext;)Lcom/google/gson/JsonObject; +MD: net/minecraft/advancements/critereon/ItemPredicate/ ()V net/minecraft/advancements/critereon/ItemPredicate/ ()V +MD: net/minecraft/advancements/critereon/ItemPredicate/ (Lnet/minecraft/tags/TagKey;Ljava/util/Set;Lnet/minecraft/advancements/critereon/MinMaxBounds$Ints;Lnet/minecraft/advancements/critereon/MinMaxBounds$Ints;[Lnet/minecraft/advancements/critereon/EnchantmentPredicate;[Lnet/minecraft/advancements/critereon/EnchantmentPredicate;Lnet/minecraft/world/item/alchemy/Potion;Lnet/minecraft/advancements/critereon/NbtPredicate;)V net/minecraft/advancements/critereon/ItemPredicate/ (Lnet/minecraft/tags/TagKey;Ljava/util/Set;Lnet/minecraft/advancements/critereon/MinMaxBounds$Ints;Lnet/minecraft/advancements/critereon/MinMaxBounds$Ints;[Lnet/minecraft/advancements/critereon/EnchantmentPredicate;[Lnet/minecraft/advancements/critereon/EnchantmentPredicate;Lnet/minecraft/world/item/alchemy/Potion;Lnet/minecraft/advancements/critereon/NbtPredicate;)V +MD: net/minecraft/advancements/critereon/ItemPredicate/ ()V net/minecraft/advancements/critereon/ItemPredicate/ ()V +MD: net/minecraft/advancements/critereon/ItemPredicate/m_45048_ ()Lcom/google/gson/JsonElement; net/minecraft/advancements/critereon/ItemPredicate/serializeToJson ()Lcom/google/gson/JsonElement; +MD: net/minecraft/advancements/critereon/ItemPredicate/m_45049_ (Lnet/minecraft/world/item/ItemStack;)Z net/minecraft/advancements/critereon/ItemPredicate/matches (Lnet/minecraft/world/item/ItemStack;)Z +MD: net/minecraft/advancements/critereon/ItemPredicate/m_45051_ (Lcom/google/gson/JsonElement;)Lnet/minecraft/advancements/critereon/ItemPredicate; net/minecraft/advancements/critereon/ItemPredicate/fromJson (Lcom/google/gson/JsonElement;)Lnet/minecraft/advancements/critereon/ItemPredicate; +MD: net/minecraft/advancements/critereon/ItemPredicate/m_45053_ (Lnet/minecraft/resources/ResourceLocation;)Lcom/google/gson/JsonSyntaxException; net/minecraft/advancements/critereon/ItemPredicate/lambda$fromJson$1 (Lnet/minecraft/resources/ResourceLocation;)Lcom/google/gson/JsonSyntaxException; +MD: net/minecraft/advancements/critereon/ItemPredicate/m_45055_ (Lcom/google/gson/JsonElement;)[Lnet/minecraft/advancements/critereon/ItemPredicate; net/minecraft/advancements/critereon/ItemPredicate/fromJsonArray (Lcom/google/gson/JsonElement;)[Lnet/minecraft/advancements/critereon/ItemPredicate; +MD: net/minecraft/advancements/critereon/ItemPredicate/m_45057_ (Lnet/minecraft/resources/ResourceLocation;)Lcom/google/gson/JsonSyntaxException; net/minecraft/advancements/critereon/ItemPredicate/lambda$fromJson$0 (Lnet/minecraft/resources/ResourceLocation;)Lcom/google/gson/JsonSyntaxException; +MD: net/minecraft/advancements/critereon/ItemPredicate$Builder/ ()V net/minecraft/advancements/critereon/ItemPredicate$Builder/ ()V +MD: net/minecraft/advancements/critereon/ItemPredicate$Builder/m_151441_ (Lnet/minecraft/world/item/alchemy/Potion;)Lnet/minecraft/advancements/critereon/ItemPredicate$Builder; net/minecraft/advancements/critereon/ItemPredicate$Builder/isPotion (Lnet/minecraft/world/item/alchemy/Potion;)Lnet/minecraft/advancements/critereon/ItemPredicate$Builder; +MD: net/minecraft/advancements/critereon/ItemPredicate$Builder/m_151443_ (Lnet/minecraft/advancements/critereon/MinMaxBounds$Ints;)Lnet/minecraft/advancements/critereon/ItemPredicate$Builder; net/minecraft/advancements/critereon/ItemPredicate$Builder/withCount (Lnet/minecraft/advancements/critereon/MinMaxBounds$Ints;)Lnet/minecraft/advancements/critereon/ItemPredicate$Builder; +MD: net/minecraft/advancements/critereon/ItemPredicate$Builder/m_151445_ ([Lnet/minecraft/world/level/ItemLike;)Lnet/minecraft/advancements/critereon/ItemPredicate$Builder; net/minecraft/advancements/critereon/ItemPredicate$Builder/of ([Lnet/minecraft/world/level/ItemLike;)Lnet/minecraft/advancements/critereon/ItemPredicate$Builder; +MD: net/minecraft/advancements/critereon/ItemPredicate$Builder/m_151447_ (Lnet/minecraft/advancements/critereon/EnchantmentPredicate;)Lnet/minecraft/advancements/critereon/ItemPredicate$Builder; net/minecraft/advancements/critereon/ItemPredicate$Builder/hasStoredEnchantment (Lnet/minecraft/advancements/critereon/EnchantmentPredicate;)Lnet/minecraft/advancements/critereon/ItemPredicate$Builder; +MD: net/minecraft/advancements/critereon/ItemPredicate$Builder/m_151449_ (Lnet/minecraft/advancements/critereon/MinMaxBounds$Ints;)Lnet/minecraft/advancements/critereon/ItemPredicate$Builder; net/minecraft/advancements/critereon/ItemPredicate$Builder/hasDurability (Lnet/minecraft/advancements/critereon/MinMaxBounds$Ints;)Lnet/minecraft/advancements/critereon/ItemPredicate$Builder; +MD: net/minecraft/advancements/critereon/ItemPredicate$Builder/m_204145_ (Lnet/minecraft/tags/TagKey;)Lnet/minecraft/advancements/critereon/ItemPredicate$Builder; net/minecraft/advancements/critereon/ItemPredicate$Builder/of (Lnet/minecraft/tags/TagKey;)Lnet/minecraft/advancements/critereon/ItemPredicate$Builder; +MD: net/minecraft/advancements/critereon/ItemPredicate$Builder/m_45068_ ()Lnet/minecraft/advancements/critereon/ItemPredicate$Builder; net/minecraft/advancements/critereon/ItemPredicate$Builder/item ()Lnet/minecraft/advancements/critereon/ItemPredicate$Builder; +MD: net/minecraft/advancements/critereon/ItemPredicate$Builder/m_45071_ (Lnet/minecraft/advancements/critereon/EnchantmentPredicate;)Lnet/minecraft/advancements/critereon/ItemPredicate$Builder; net/minecraft/advancements/critereon/ItemPredicate$Builder/hasEnchantment (Lnet/minecraft/advancements/critereon/EnchantmentPredicate;)Lnet/minecraft/advancements/critereon/ItemPredicate$Builder; +MD: net/minecraft/advancements/critereon/ItemPredicate$Builder/m_45075_ (Lnet/minecraft/nbt/CompoundTag;)Lnet/minecraft/advancements/critereon/ItemPredicate$Builder; net/minecraft/advancements/critereon/ItemPredicate$Builder/hasNbt (Lnet/minecraft/nbt/CompoundTag;)Lnet/minecraft/advancements/critereon/ItemPredicate$Builder; +MD: net/minecraft/advancements/critereon/ItemPredicate$Builder/m_45077_ ()Lnet/minecraft/advancements/critereon/ItemPredicate; net/minecraft/advancements/critereon/ItemPredicate$Builder/build ()Lnet/minecraft/advancements/critereon/ItemPredicate; +MD: net/minecraft/advancements/critereon/ItemUsedOnLocationTrigger/ (Lnet/minecraft/resources/ResourceLocation;)V net/minecraft/advancements/critereon/ItemUsedOnLocationTrigger/ (Lnet/minecraft/resources/ResourceLocation;)V +MD: net/minecraft/advancements/critereon/ItemUsedOnLocationTrigger/m_285767_ (Lnet/minecraft/server/level/ServerPlayer;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/item/ItemStack;)V net/minecraft/advancements/critereon/ItemUsedOnLocationTrigger/trigger (Lnet/minecraft/server/level/ServerPlayer;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/item/ItemStack;)V +MD: net/minecraft/advancements/critereon/ItemUsedOnLocationTrigger/m_285985_ (Lnet/minecraft/world/level/storage/loot/LootContext;Lnet/minecraft/advancements/critereon/ItemUsedOnLocationTrigger$TriggerInstance;)Z net/minecraft/advancements/critereon/ItemUsedOnLocationTrigger/lambda$trigger$0 (Lnet/minecraft/world/level/storage/loot/LootContext;Lnet/minecraft/advancements/critereon/ItemUsedOnLocationTrigger$TriggerInstance;)Z +MD: net/minecraft/advancements/critereon/ItemUsedOnLocationTrigger/m_7214_ (Lcom/google/gson/JsonObject;Lnet/minecraft/advancements/critereon/ContextAwarePredicate;Lnet/minecraft/advancements/critereon/DeserializationContext;)Lnet/minecraft/advancements/critereon/AbstractCriterionTriggerInstance; net/minecraft/advancements/critereon/ItemUsedOnLocationTrigger/createInstance (Lcom/google/gson/JsonObject;Lnet/minecraft/advancements/critereon/ContextAwarePredicate;Lnet/minecraft/advancements/critereon/DeserializationContext;)Lnet/minecraft/advancements/critereon/AbstractCriterionTriggerInstance; +MD: net/minecraft/advancements/critereon/ItemUsedOnLocationTrigger/m_7214_ (Lcom/google/gson/JsonObject;Lnet/minecraft/advancements/critereon/ContextAwarePredicate;Lnet/minecraft/advancements/critereon/DeserializationContext;)Lnet/minecraft/advancements/critereon/ItemUsedOnLocationTrigger$TriggerInstance; net/minecraft/advancements/critereon/ItemUsedOnLocationTrigger/createInstance (Lcom/google/gson/JsonObject;Lnet/minecraft/advancements/critereon/ContextAwarePredicate;Lnet/minecraft/advancements/critereon/DeserializationContext;)Lnet/minecraft/advancements/critereon/ItemUsedOnLocationTrigger$TriggerInstance; +MD: net/minecraft/advancements/critereon/ItemUsedOnLocationTrigger/m_7295_ ()Lnet/minecraft/resources/ResourceLocation; net/minecraft/advancements/critereon/ItemUsedOnLocationTrigger/getId ()Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/advancements/critereon/ItemUsedOnLocationTrigger$TriggerInstance/ (Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/advancements/critereon/ContextAwarePredicate;Lnet/minecraft/advancements/critereon/ContextAwarePredicate;)V net/minecraft/advancements/critereon/ItemUsedOnLocationTrigger$TriggerInstance/ (Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/advancements/critereon/ContextAwarePredicate;Lnet/minecraft/advancements/critereon/ContextAwarePredicate;)V +MD: net/minecraft/advancements/critereon/ItemUsedOnLocationTrigger$TriggerInstance/m_285745_ ([Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition$Builder;)Lnet/minecraft/advancements/critereon/ItemUsedOnLocationTrigger$TriggerInstance; net/minecraft/advancements/critereon/ItemUsedOnLocationTrigger$TriggerInstance/placedBlock ([Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition$Builder;)Lnet/minecraft/advancements/critereon/ItemUsedOnLocationTrigger$TriggerInstance; +MD: net/minecraft/advancements/critereon/ItemUsedOnLocationTrigger$TriggerInstance/m_285770_ (Lnet/minecraft/advancements/critereon/LocationPredicate$Builder;Lnet/minecraft/advancements/critereon/ItemPredicate$Builder;)Lnet/minecraft/advancements/critereon/ItemUsedOnLocationTrigger$TriggerInstance; net/minecraft/advancements/critereon/ItemUsedOnLocationTrigger$TriggerInstance/allayDropItemOnBlock (Lnet/minecraft/advancements/critereon/LocationPredicate$Builder;Lnet/minecraft/advancements/critereon/ItemPredicate$Builder;)Lnet/minecraft/advancements/critereon/ItemUsedOnLocationTrigger$TriggerInstance; +MD: net/minecraft/advancements/critereon/ItemUsedOnLocationTrigger$TriggerInstance/m_285898_ (Lnet/minecraft/world/level/storage/loot/LootContext;)Z net/minecraft/advancements/critereon/ItemUsedOnLocationTrigger$TriggerInstance/matches (Lnet/minecraft/world/level/storage/loot/LootContext;)Z +MD: net/minecraft/advancements/critereon/ItemUsedOnLocationTrigger$TriggerInstance/m_285945_ (Lnet/minecraft/advancements/critereon/LocationPredicate$Builder;Lnet/minecraft/advancements/critereon/ItemPredicate$Builder;)Lnet/minecraft/advancements/critereon/ItemUsedOnLocationTrigger$TriggerInstance; net/minecraft/advancements/critereon/ItemUsedOnLocationTrigger$TriggerInstance/itemUsedOnBlock (Lnet/minecraft/advancements/critereon/LocationPredicate$Builder;Lnet/minecraft/advancements/critereon/ItemPredicate$Builder;)Lnet/minecraft/advancements/critereon/ItemUsedOnLocationTrigger$TriggerInstance; +MD: net/minecraft/advancements/critereon/ItemUsedOnLocationTrigger$TriggerInstance/m_285996_ (Lnet/minecraft/advancements/critereon/LocationPredicate$Builder;Lnet/minecraft/advancements/critereon/ItemPredicate$Builder;Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/advancements/critereon/ItemUsedOnLocationTrigger$TriggerInstance; net/minecraft/advancements/critereon/ItemUsedOnLocationTrigger$TriggerInstance/itemUsedOnLocation (Lnet/minecraft/advancements/critereon/LocationPredicate$Builder;Lnet/minecraft/advancements/critereon/ItemPredicate$Builder;Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/advancements/critereon/ItemUsedOnLocationTrigger$TriggerInstance; +MD: net/minecraft/advancements/critereon/ItemUsedOnLocationTrigger$TriggerInstance/m_286031_ (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/advancements/critereon/ItemUsedOnLocationTrigger$TriggerInstance; net/minecraft/advancements/critereon/ItemUsedOnLocationTrigger$TriggerInstance/placedBlock (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/advancements/critereon/ItemUsedOnLocationTrigger$TriggerInstance; +MD: net/minecraft/advancements/critereon/ItemUsedOnLocationTrigger$TriggerInstance/m_286091_ (I)[Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition; net/minecraft/advancements/critereon/ItemUsedOnLocationTrigger$TriggerInstance/lambda$placedBlock$0 (I)[Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition; +MD: net/minecraft/advancements/critereon/ItemUsedOnLocationTrigger$TriggerInstance/m_7683_ (Lnet/minecraft/advancements/critereon/SerializationContext;)Lcom/google/gson/JsonObject; net/minecraft/advancements/critereon/ItemUsedOnLocationTrigger$TriggerInstance/serializeToJson (Lnet/minecraft/advancements/critereon/SerializationContext;)Lcom/google/gson/JsonObject; +MD: net/minecraft/advancements/critereon/KilledByCrossbowTrigger/ ()V net/minecraft/advancements/critereon/KilledByCrossbowTrigger/ ()V +MD: net/minecraft/advancements/critereon/KilledByCrossbowTrigger/ ()V net/minecraft/advancements/critereon/KilledByCrossbowTrigger/ ()V +MD: net/minecraft/advancements/critereon/KilledByCrossbowTrigger/m_46871_ (Lnet/minecraft/server/level/ServerPlayer;Ljava/util/Collection;)V net/minecraft/advancements/critereon/KilledByCrossbowTrigger/trigger (Lnet/minecraft/server/level/ServerPlayer;Ljava/util/Collection;)V +MD: net/minecraft/advancements/critereon/KilledByCrossbowTrigger/m_46878_ (Ljava/util/List;Ljava/util/Set;Lnet/minecraft/advancements/critereon/KilledByCrossbowTrigger$TriggerInstance;)Z net/minecraft/advancements/critereon/KilledByCrossbowTrigger/lambda$trigger$0 (Ljava/util/List;Ljava/util/Set;Lnet/minecraft/advancements/critereon/KilledByCrossbowTrigger$TriggerInstance;)Z +MD: net/minecraft/advancements/critereon/KilledByCrossbowTrigger/m_7214_ (Lcom/google/gson/JsonObject;Lnet/minecraft/advancements/critereon/ContextAwarePredicate;Lnet/minecraft/advancements/critereon/DeserializationContext;)Lnet/minecraft/advancements/critereon/AbstractCriterionTriggerInstance; net/minecraft/advancements/critereon/KilledByCrossbowTrigger/createInstance (Lcom/google/gson/JsonObject;Lnet/minecraft/advancements/critereon/ContextAwarePredicate;Lnet/minecraft/advancements/critereon/DeserializationContext;)Lnet/minecraft/advancements/critereon/AbstractCriterionTriggerInstance; +MD: net/minecraft/advancements/critereon/KilledByCrossbowTrigger/m_7214_ (Lcom/google/gson/JsonObject;Lnet/minecraft/advancements/critereon/ContextAwarePredicate;Lnet/minecraft/advancements/critereon/DeserializationContext;)Lnet/minecraft/advancements/critereon/KilledByCrossbowTrigger$TriggerInstance; net/minecraft/advancements/critereon/KilledByCrossbowTrigger/createInstance (Lcom/google/gson/JsonObject;Lnet/minecraft/advancements/critereon/ContextAwarePredicate;Lnet/minecraft/advancements/critereon/DeserializationContext;)Lnet/minecraft/advancements/critereon/KilledByCrossbowTrigger$TriggerInstance; +MD: net/minecraft/advancements/critereon/KilledByCrossbowTrigger/m_7295_ ()Lnet/minecraft/resources/ResourceLocation; net/minecraft/advancements/critereon/KilledByCrossbowTrigger/getId ()Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/advancements/critereon/KilledByCrossbowTrigger$TriggerInstance/ (Lnet/minecraft/advancements/critereon/ContextAwarePredicate;[Lnet/minecraft/advancements/critereon/ContextAwarePredicate;Lnet/minecraft/advancements/critereon/MinMaxBounds$Ints;)V net/minecraft/advancements/critereon/KilledByCrossbowTrigger$TriggerInstance/ (Lnet/minecraft/advancements/critereon/ContextAwarePredicate;[Lnet/minecraft/advancements/critereon/ContextAwarePredicate;Lnet/minecraft/advancements/critereon/MinMaxBounds$Ints;)V +MD: net/minecraft/advancements/critereon/KilledByCrossbowTrigger$TriggerInstance/m_46893_ (Lnet/minecraft/advancements/critereon/MinMaxBounds$Ints;)Lnet/minecraft/advancements/critereon/KilledByCrossbowTrigger$TriggerInstance; net/minecraft/advancements/critereon/KilledByCrossbowTrigger$TriggerInstance/crossbowKilled (Lnet/minecraft/advancements/critereon/MinMaxBounds$Ints;)Lnet/minecraft/advancements/critereon/KilledByCrossbowTrigger$TriggerInstance; +MD: net/minecraft/advancements/critereon/KilledByCrossbowTrigger$TriggerInstance/m_46897_ (Ljava/util/Collection;I)Z net/minecraft/advancements/critereon/KilledByCrossbowTrigger$TriggerInstance/matches (Ljava/util/Collection;I)Z +MD: net/minecraft/advancements/critereon/KilledByCrossbowTrigger$TriggerInstance/m_46900_ ([Lnet/minecraft/advancements/critereon/EntityPredicate$Builder;)Lnet/minecraft/advancements/critereon/KilledByCrossbowTrigger$TriggerInstance; net/minecraft/advancements/critereon/KilledByCrossbowTrigger$TriggerInstance/crossbowKilled ([Lnet/minecraft/advancements/critereon/EntityPredicate$Builder;)Lnet/minecraft/advancements/critereon/KilledByCrossbowTrigger$TriggerInstance; +MD: net/minecraft/advancements/critereon/KilledByCrossbowTrigger$TriggerInstance/m_7683_ (Lnet/minecraft/advancements/critereon/SerializationContext;)Lcom/google/gson/JsonObject; net/minecraft/advancements/critereon/KilledByCrossbowTrigger$TriggerInstance/serializeToJson (Lnet/minecraft/advancements/critereon/SerializationContext;)Lcom/google/gson/JsonObject; +MD: net/minecraft/advancements/critereon/KilledTrigger/ (Lnet/minecraft/resources/ResourceLocation;)V net/minecraft/advancements/critereon/KilledTrigger/ (Lnet/minecraft/resources/ResourceLocation;)V +MD: net/minecraft/advancements/critereon/KilledTrigger/m_48104_ (Lnet/minecraft/server/level/ServerPlayer;Lnet/minecraft/world/entity/Entity;Lnet/minecraft/world/damagesource/DamageSource;)V net/minecraft/advancements/critereon/KilledTrigger/trigger (Lnet/minecraft/server/level/ServerPlayer;Lnet/minecraft/world/entity/Entity;Lnet/minecraft/world/damagesource/DamageSource;)V +MD: net/minecraft/advancements/critereon/KilledTrigger/m_48108_ (Lnet/minecraft/server/level/ServerPlayer;Lnet/minecraft/world/level/storage/loot/LootContext;Lnet/minecraft/world/damagesource/DamageSource;Lnet/minecraft/advancements/critereon/KilledTrigger$TriggerInstance;)Z net/minecraft/advancements/critereon/KilledTrigger/lambda$trigger$0 (Lnet/minecraft/server/level/ServerPlayer;Lnet/minecraft/world/level/storage/loot/LootContext;Lnet/minecraft/world/damagesource/DamageSource;Lnet/minecraft/advancements/critereon/KilledTrigger$TriggerInstance;)Z +MD: net/minecraft/advancements/critereon/KilledTrigger/m_7214_ (Lcom/google/gson/JsonObject;Lnet/minecraft/advancements/critereon/ContextAwarePredicate;Lnet/minecraft/advancements/critereon/DeserializationContext;)Lnet/minecraft/advancements/critereon/AbstractCriterionTriggerInstance; net/minecraft/advancements/critereon/KilledTrigger/createInstance (Lcom/google/gson/JsonObject;Lnet/minecraft/advancements/critereon/ContextAwarePredicate;Lnet/minecraft/advancements/critereon/DeserializationContext;)Lnet/minecraft/advancements/critereon/AbstractCriterionTriggerInstance; +MD: net/minecraft/advancements/critereon/KilledTrigger/m_7214_ (Lcom/google/gson/JsonObject;Lnet/minecraft/advancements/critereon/ContextAwarePredicate;Lnet/minecraft/advancements/critereon/DeserializationContext;)Lnet/minecraft/advancements/critereon/KilledTrigger$TriggerInstance; net/minecraft/advancements/critereon/KilledTrigger/createInstance (Lcom/google/gson/JsonObject;Lnet/minecraft/advancements/critereon/ContextAwarePredicate;Lnet/minecraft/advancements/critereon/DeserializationContext;)Lnet/minecraft/advancements/critereon/KilledTrigger$TriggerInstance; +MD: net/minecraft/advancements/critereon/KilledTrigger/m_7295_ ()Lnet/minecraft/resources/ResourceLocation; net/minecraft/advancements/critereon/KilledTrigger/getId ()Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/advancements/critereon/KilledTrigger$TriggerInstance/ (Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/advancements/critereon/ContextAwarePredicate;Lnet/minecraft/advancements/critereon/ContextAwarePredicate;Lnet/minecraft/advancements/critereon/DamageSourcePredicate;)V net/minecraft/advancements/critereon/KilledTrigger$TriggerInstance/ (Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/advancements/critereon/ContextAwarePredicate;Lnet/minecraft/advancements/critereon/ContextAwarePredicate;Lnet/minecraft/advancements/critereon/DamageSourcePredicate;)V +MD: net/minecraft/advancements/critereon/KilledTrigger$TriggerInstance/m_152105_ (Lnet/minecraft/advancements/critereon/EntityPredicate$Builder;Lnet/minecraft/advancements/critereon/DamageSourcePredicate;)Lnet/minecraft/advancements/critereon/KilledTrigger$TriggerInstance; net/minecraft/advancements/critereon/KilledTrigger$TriggerInstance/playerKilledEntity (Lnet/minecraft/advancements/critereon/EntityPredicate$Builder;Lnet/minecraft/advancements/critereon/DamageSourcePredicate;)Lnet/minecraft/advancements/critereon/KilledTrigger$TriggerInstance; +MD: net/minecraft/advancements/critereon/KilledTrigger$TriggerInstance/m_152108_ (Lnet/minecraft/advancements/critereon/EntityPredicate;)Lnet/minecraft/advancements/critereon/KilledTrigger$TriggerInstance; net/minecraft/advancements/critereon/KilledTrigger$TriggerInstance/playerKilledEntity (Lnet/minecraft/advancements/critereon/EntityPredicate;)Lnet/minecraft/advancements/critereon/KilledTrigger$TriggerInstance; +MD: net/minecraft/advancements/critereon/KilledTrigger$TriggerInstance/m_152110_ (Lnet/minecraft/advancements/critereon/EntityPredicate;Lnet/minecraft/advancements/critereon/DamageSourcePredicate$Builder;)Lnet/minecraft/advancements/critereon/KilledTrigger$TriggerInstance; net/minecraft/advancements/critereon/KilledTrigger$TriggerInstance/playerKilledEntity (Lnet/minecraft/advancements/critereon/EntityPredicate;Lnet/minecraft/advancements/critereon/DamageSourcePredicate$Builder;)Lnet/minecraft/advancements/critereon/KilledTrigger$TriggerInstance; +MD: net/minecraft/advancements/critereon/KilledTrigger$TriggerInstance/m_152113_ (Lnet/minecraft/advancements/critereon/EntityPredicate;Lnet/minecraft/advancements/critereon/DamageSourcePredicate;)Lnet/minecraft/advancements/critereon/KilledTrigger$TriggerInstance; net/minecraft/advancements/critereon/KilledTrigger$TriggerInstance/playerKilledEntity (Lnet/minecraft/advancements/critereon/EntityPredicate;Lnet/minecraft/advancements/critereon/DamageSourcePredicate;)Lnet/minecraft/advancements/critereon/KilledTrigger$TriggerInstance; +MD: net/minecraft/advancements/critereon/KilledTrigger$TriggerInstance/m_152116_ (Lnet/minecraft/advancements/critereon/EntityPredicate$Builder;)Lnet/minecraft/advancements/critereon/KilledTrigger$TriggerInstance; net/minecraft/advancements/critereon/KilledTrigger$TriggerInstance/entityKilledPlayer (Lnet/minecraft/advancements/critereon/EntityPredicate$Builder;)Lnet/minecraft/advancements/critereon/KilledTrigger$TriggerInstance; +MD: net/minecraft/advancements/critereon/KilledTrigger$TriggerInstance/m_152118_ (Lnet/minecraft/advancements/critereon/EntityPredicate$Builder;Lnet/minecraft/advancements/critereon/DamageSourcePredicate$Builder;)Lnet/minecraft/advancements/critereon/KilledTrigger$TriggerInstance; net/minecraft/advancements/critereon/KilledTrigger$TriggerInstance/entityKilledPlayer (Lnet/minecraft/advancements/critereon/EntityPredicate$Builder;Lnet/minecraft/advancements/critereon/DamageSourcePredicate$Builder;)Lnet/minecraft/advancements/critereon/KilledTrigger$TriggerInstance; +MD: net/minecraft/advancements/critereon/KilledTrigger$TriggerInstance/m_152121_ (Lnet/minecraft/advancements/critereon/EntityPredicate$Builder;Lnet/minecraft/advancements/critereon/DamageSourcePredicate;)Lnet/minecraft/advancements/critereon/KilledTrigger$TriggerInstance; net/minecraft/advancements/critereon/KilledTrigger$TriggerInstance/entityKilledPlayer (Lnet/minecraft/advancements/critereon/EntityPredicate$Builder;Lnet/minecraft/advancements/critereon/DamageSourcePredicate;)Lnet/minecraft/advancements/critereon/KilledTrigger$TriggerInstance; +MD: net/minecraft/advancements/critereon/KilledTrigger$TriggerInstance/m_152124_ (Lnet/minecraft/advancements/critereon/EntityPredicate;)Lnet/minecraft/advancements/critereon/KilledTrigger$TriggerInstance; net/minecraft/advancements/critereon/KilledTrigger$TriggerInstance/entityKilledPlayer (Lnet/minecraft/advancements/critereon/EntityPredicate;)Lnet/minecraft/advancements/critereon/KilledTrigger$TriggerInstance; +MD: net/minecraft/advancements/critereon/KilledTrigger$TriggerInstance/m_152126_ (Lnet/minecraft/advancements/critereon/EntityPredicate;Lnet/minecraft/advancements/critereon/DamageSourcePredicate$Builder;)Lnet/minecraft/advancements/critereon/KilledTrigger$TriggerInstance; net/minecraft/advancements/critereon/KilledTrigger$TriggerInstance/entityKilledPlayer (Lnet/minecraft/advancements/critereon/EntityPredicate;Lnet/minecraft/advancements/critereon/DamageSourcePredicate$Builder;)Lnet/minecraft/advancements/critereon/KilledTrigger$TriggerInstance; +MD: net/minecraft/advancements/critereon/KilledTrigger$TriggerInstance/m_152129_ (Lnet/minecraft/advancements/critereon/EntityPredicate;Lnet/minecraft/advancements/critereon/DamageSourcePredicate;)Lnet/minecraft/advancements/critereon/KilledTrigger$TriggerInstance; net/minecraft/advancements/critereon/KilledTrigger$TriggerInstance/entityKilledPlayer (Lnet/minecraft/advancements/critereon/EntityPredicate;Lnet/minecraft/advancements/critereon/DamageSourcePredicate;)Lnet/minecraft/advancements/critereon/KilledTrigger$TriggerInstance; +MD: net/minecraft/advancements/critereon/KilledTrigger$TriggerInstance/m_220237_ ()Lnet/minecraft/advancements/critereon/KilledTrigger$TriggerInstance; net/minecraft/advancements/critereon/KilledTrigger$TriggerInstance/playerKilledEntityNearSculkCatalyst ()Lnet/minecraft/advancements/critereon/KilledTrigger$TriggerInstance; +MD: net/minecraft/advancements/critereon/KilledTrigger$TriggerInstance/m_48130_ (Lnet/minecraft/server/level/ServerPlayer;Lnet/minecraft/world/level/storage/loot/LootContext;Lnet/minecraft/world/damagesource/DamageSource;)Z net/minecraft/advancements/critereon/KilledTrigger$TriggerInstance/matches (Lnet/minecraft/server/level/ServerPlayer;Lnet/minecraft/world/level/storage/loot/LootContext;Lnet/minecraft/world/damagesource/DamageSource;)Z +MD: net/minecraft/advancements/critereon/KilledTrigger$TriggerInstance/m_48134_ (Lnet/minecraft/advancements/critereon/EntityPredicate$Builder;)Lnet/minecraft/advancements/critereon/KilledTrigger$TriggerInstance; net/minecraft/advancements/critereon/KilledTrigger$TriggerInstance/playerKilledEntity (Lnet/minecraft/advancements/critereon/EntityPredicate$Builder;)Lnet/minecraft/advancements/critereon/KilledTrigger$TriggerInstance; +MD: net/minecraft/advancements/critereon/KilledTrigger$TriggerInstance/m_48136_ (Lnet/minecraft/advancements/critereon/EntityPredicate$Builder;Lnet/minecraft/advancements/critereon/DamageSourcePredicate$Builder;)Lnet/minecraft/advancements/critereon/KilledTrigger$TriggerInstance; net/minecraft/advancements/critereon/KilledTrigger$TriggerInstance/playerKilledEntity (Lnet/minecraft/advancements/critereon/EntityPredicate$Builder;Lnet/minecraft/advancements/critereon/DamageSourcePredicate$Builder;)Lnet/minecraft/advancements/critereon/KilledTrigger$TriggerInstance; +MD: net/minecraft/advancements/critereon/KilledTrigger$TriggerInstance/m_48141_ ()Lnet/minecraft/advancements/critereon/KilledTrigger$TriggerInstance; net/minecraft/advancements/critereon/KilledTrigger$TriggerInstance/playerKilledEntity ()Lnet/minecraft/advancements/critereon/KilledTrigger$TriggerInstance; +MD: net/minecraft/advancements/critereon/KilledTrigger$TriggerInstance/m_48142_ ()Lnet/minecraft/advancements/critereon/KilledTrigger$TriggerInstance; net/minecraft/advancements/critereon/KilledTrigger$TriggerInstance/entityKilledPlayer ()Lnet/minecraft/advancements/critereon/KilledTrigger$TriggerInstance; +MD: net/minecraft/advancements/critereon/KilledTrigger$TriggerInstance/m_7683_ (Lnet/minecraft/advancements/critereon/SerializationContext;)Lcom/google/gson/JsonObject; net/minecraft/advancements/critereon/KilledTrigger$TriggerInstance/serializeToJson (Lnet/minecraft/advancements/critereon/SerializationContext;)Lcom/google/gson/JsonObject; +MD: net/minecraft/advancements/critereon/LevitationTrigger/ ()V net/minecraft/advancements/critereon/LevitationTrigger/ ()V +MD: net/minecraft/advancements/critereon/LevitationTrigger/ ()V net/minecraft/advancements/critereon/LevitationTrigger/ ()V +MD: net/minecraft/advancements/critereon/LevitationTrigger/m_49116_ (Lnet/minecraft/server/level/ServerPlayer;Lnet/minecraft/world/phys/Vec3;I)V net/minecraft/advancements/critereon/LevitationTrigger/trigger (Lnet/minecraft/server/level/ServerPlayer;Lnet/minecraft/world/phys/Vec3;I)V +MD: net/minecraft/advancements/critereon/LevitationTrigger/m_49120_ (Lnet/minecraft/server/level/ServerPlayer;Lnet/minecraft/world/phys/Vec3;ILnet/minecraft/advancements/critereon/LevitationTrigger$TriggerInstance;)Z net/minecraft/advancements/critereon/LevitationTrigger/lambda$trigger$0 (Lnet/minecraft/server/level/ServerPlayer;Lnet/minecraft/world/phys/Vec3;ILnet/minecraft/advancements/critereon/LevitationTrigger$TriggerInstance;)Z +MD: net/minecraft/advancements/critereon/LevitationTrigger/m_7214_ (Lcom/google/gson/JsonObject;Lnet/minecraft/advancements/critereon/ContextAwarePredicate;Lnet/minecraft/advancements/critereon/DeserializationContext;)Lnet/minecraft/advancements/critereon/AbstractCriterionTriggerInstance; net/minecraft/advancements/critereon/LevitationTrigger/createInstance (Lcom/google/gson/JsonObject;Lnet/minecraft/advancements/critereon/ContextAwarePredicate;Lnet/minecraft/advancements/critereon/DeserializationContext;)Lnet/minecraft/advancements/critereon/AbstractCriterionTriggerInstance; +MD: net/minecraft/advancements/critereon/LevitationTrigger/m_7214_ (Lcom/google/gson/JsonObject;Lnet/minecraft/advancements/critereon/ContextAwarePredicate;Lnet/minecraft/advancements/critereon/DeserializationContext;)Lnet/minecraft/advancements/critereon/LevitationTrigger$TriggerInstance; net/minecraft/advancements/critereon/LevitationTrigger/createInstance (Lcom/google/gson/JsonObject;Lnet/minecraft/advancements/critereon/ContextAwarePredicate;Lnet/minecraft/advancements/critereon/DeserializationContext;)Lnet/minecraft/advancements/critereon/LevitationTrigger$TriggerInstance; +MD: net/minecraft/advancements/critereon/LevitationTrigger/m_7295_ ()Lnet/minecraft/resources/ResourceLocation; net/minecraft/advancements/critereon/LevitationTrigger/getId ()Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/advancements/critereon/LevitationTrigger$TriggerInstance/ (Lnet/minecraft/advancements/critereon/ContextAwarePredicate;Lnet/minecraft/advancements/critereon/DistancePredicate;Lnet/minecraft/advancements/critereon/MinMaxBounds$Ints;)V net/minecraft/advancements/critereon/LevitationTrigger$TriggerInstance/ (Lnet/minecraft/advancements/critereon/ContextAwarePredicate;Lnet/minecraft/advancements/critereon/DistancePredicate;Lnet/minecraft/advancements/critereon/MinMaxBounds$Ints;)V +MD: net/minecraft/advancements/critereon/LevitationTrigger$TriggerInstance/m_49140_ (Lnet/minecraft/server/level/ServerPlayer;Lnet/minecraft/world/phys/Vec3;I)Z net/minecraft/advancements/critereon/LevitationTrigger$TriggerInstance/matches (Lnet/minecraft/server/level/ServerPlayer;Lnet/minecraft/world/phys/Vec3;I)Z +MD: net/minecraft/advancements/critereon/LevitationTrigger$TriggerInstance/m_49144_ (Lnet/minecraft/advancements/critereon/DistancePredicate;)Lnet/minecraft/advancements/critereon/LevitationTrigger$TriggerInstance; net/minecraft/advancements/critereon/LevitationTrigger$TriggerInstance/levitated (Lnet/minecraft/advancements/critereon/DistancePredicate;)Lnet/minecraft/advancements/critereon/LevitationTrigger$TriggerInstance; +MD: net/minecraft/advancements/critereon/LevitationTrigger$TriggerInstance/m_7683_ (Lnet/minecraft/advancements/critereon/SerializationContext;)Lcom/google/gson/JsonObject; net/minecraft/advancements/critereon/LevitationTrigger$TriggerInstance/serializeToJson (Lnet/minecraft/advancements/critereon/SerializationContext;)Lcom/google/gson/JsonObject; +MD: net/minecraft/advancements/critereon/LightPredicate/ ()V net/minecraft/advancements/critereon/LightPredicate/ ()V +MD: net/minecraft/advancements/critereon/LightPredicate/ (Lnet/minecraft/advancements/critereon/MinMaxBounds$Ints;)V net/minecraft/advancements/critereon/LightPredicate/ (Lnet/minecraft/advancements/critereon/MinMaxBounds$Ints;)V +MD: net/minecraft/advancements/critereon/LightPredicate/m_51340_ ()Lcom/google/gson/JsonElement; net/minecraft/advancements/critereon/LightPredicate/serializeToJson ()Lcom/google/gson/JsonElement; +MD: net/minecraft/advancements/critereon/LightPredicate/m_51341_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;)Z net/minecraft/advancements/critereon/LightPredicate/matches (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/advancements/critereon/LightPredicate/m_51344_ (Lcom/google/gson/JsonElement;)Lnet/minecraft/advancements/critereon/LightPredicate; net/minecraft/advancements/critereon/LightPredicate/fromJson (Lcom/google/gson/JsonElement;)Lnet/minecraft/advancements/critereon/LightPredicate; +MD: net/minecraft/advancements/critereon/LightPredicate$Builder/ ()V net/minecraft/advancements/critereon/LightPredicate$Builder/ ()V +MD: net/minecraft/advancements/critereon/LightPredicate$Builder/m_153103_ ()Lnet/minecraft/advancements/critereon/LightPredicate$Builder; net/minecraft/advancements/critereon/LightPredicate$Builder/light ()Lnet/minecraft/advancements/critereon/LightPredicate$Builder; +MD: net/minecraft/advancements/critereon/LightPredicate$Builder/m_153104_ (Lnet/minecraft/advancements/critereon/MinMaxBounds$Ints;)Lnet/minecraft/advancements/critereon/LightPredicate$Builder; net/minecraft/advancements/critereon/LightPredicate$Builder/setComposite (Lnet/minecraft/advancements/critereon/MinMaxBounds$Ints;)Lnet/minecraft/advancements/critereon/LightPredicate$Builder; +MD: net/minecraft/advancements/critereon/LightPredicate$Builder/m_153106_ ()Lnet/minecraft/advancements/critereon/LightPredicate; net/minecraft/advancements/critereon/LightPredicate$Builder/build ()Lnet/minecraft/advancements/critereon/LightPredicate; +MD: net/minecraft/advancements/critereon/LighthingBoltPredicate/ (Lnet/minecraft/advancements/critereon/MinMaxBounds$Ints;Lnet/minecraft/advancements/critereon/EntityPredicate;)V net/minecraft/advancements/critereon/LighthingBoltPredicate/ (Lnet/minecraft/advancements/critereon/MinMaxBounds$Ints;Lnet/minecraft/advancements/critereon/EntityPredicate;)V +MD: net/minecraft/advancements/critereon/LighthingBoltPredicate/m_153242_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/phys/Vec3;Lnet/minecraft/world/entity/Entity;)Z net/minecraft/advancements/critereon/LighthingBoltPredicate/lambda$matches$0 (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/phys/Vec3;Lnet/minecraft/world/entity/Entity;)Z +MD: net/minecraft/advancements/critereon/LighthingBoltPredicate/m_153246_ (Lnet/minecraft/world/entity/Entity;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/phys/Vec3;)Z net/minecraft/advancements/critereon/LighthingBoltPredicate/matches (Lnet/minecraft/world/entity/Entity;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/phys/Vec3;)Z +MD: net/minecraft/advancements/critereon/LighthingBoltPredicate/m_153250_ (Lnet/minecraft/advancements/critereon/MinMaxBounds$Ints;)Lnet/minecraft/advancements/critereon/LighthingBoltPredicate; net/minecraft/advancements/critereon/LighthingBoltPredicate/blockSetOnFire (Lnet/minecraft/advancements/critereon/MinMaxBounds$Ints;)Lnet/minecraft/advancements/critereon/LighthingBoltPredicate; +MD: net/minecraft/advancements/critereon/LighthingBoltPredicate/m_213616_ ()Lcom/google/gson/JsonObject; net/minecraft/advancements/critereon/LighthingBoltPredicate/serializeCustomData ()Lcom/google/gson/JsonObject; +MD: net/minecraft/advancements/critereon/LighthingBoltPredicate/m_213836_ ()Lnet/minecraft/advancements/critereon/EntitySubPredicate$Type; net/minecraft/advancements/critereon/LighthingBoltPredicate/type ()Lnet/minecraft/advancements/critereon/EntitySubPredicate$Type; +MD: net/minecraft/advancements/critereon/LighthingBoltPredicate/m_220332_ (Lcom/google/gson/JsonObject;)Lnet/minecraft/advancements/critereon/LighthingBoltPredicate; net/minecraft/advancements/critereon/LighthingBoltPredicate/fromJson (Lcom/google/gson/JsonObject;)Lnet/minecraft/advancements/critereon/LighthingBoltPredicate; +MD: net/minecraft/advancements/critereon/LightningStrikeTrigger/ ()V net/minecraft/advancements/critereon/LightningStrikeTrigger/ ()V +MD: net/minecraft/advancements/critereon/LightningStrikeTrigger/ ()V net/minecraft/advancements/critereon/LightningStrikeTrigger/ ()V +MD: net/minecraft/advancements/critereon/LightningStrikeTrigger/m_153388_ (Lnet/minecraft/server/level/ServerPlayer;Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/world/level/storage/loot/LootContext; net/minecraft/advancements/critereon/LightningStrikeTrigger/lambda$trigger$0 (Lnet/minecraft/server/level/ServerPlayer;Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/world/level/storage/loot/LootContext; +MD: net/minecraft/advancements/critereon/LightningStrikeTrigger/m_153391_ (Lnet/minecraft/server/level/ServerPlayer;Lnet/minecraft/world/entity/LightningBolt;Ljava/util/List;)V net/minecraft/advancements/critereon/LightningStrikeTrigger/trigger (Lnet/minecraft/server/level/ServerPlayer;Lnet/minecraft/world/entity/LightningBolt;Ljava/util/List;)V +MD: net/minecraft/advancements/critereon/LightningStrikeTrigger/m_153399_ (Lnet/minecraft/world/level/storage/loot/LootContext;Ljava/util/List;Lnet/minecraft/advancements/critereon/LightningStrikeTrigger$TriggerInstance;)Z net/minecraft/advancements/critereon/LightningStrikeTrigger/lambda$trigger$1 (Lnet/minecraft/world/level/storage/loot/LootContext;Ljava/util/List;Lnet/minecraft/advancements/critereon/LightningStrikeTrigger$TriggerInstance;)Z +MD: net/minecraft/advancements/critereon/LightningStrikeTrigger/m_7214_ (Lcom/google/gson/JsonObject;Lnet/minecraft/advancements/critereon/ContextAwarePredicate;Lnet/minecraft/advancements/critereon/DeserializationContext;)Lnet/minecraft/advancements/critereon/AbstractCriterionTriggerInstance; net/minecraft/advancements/critereon/LightningStrikeTrigger/createInstance (Lcom/google/gson/JsonObject;Lnet/minecraft/advancements/critereon/ContextAwarePredicate;Lnet/minecraft/advancements/critereon/DeserializationContext;)Lnet/minecraft/advancements/critereon/AbstractCriterionTriggerInstance; +MD: net/minecraft/advancements/critereon/LightningStrikeTrigger/m_7214_ (Lcom/google/gson/JsonObject;Lnet/minecraft/advancements/critereon/ContextAwarePredicate;Lnet/minecraft/advancements/critereon/DeserializationContext;)Lnet/minecraft/advancements/critereon/LightningStrikeTrigger$TriggerInstance; net/minecraft/advancements/critereon/LightningStrikeTrigger/createInstance (Lcom/google/gson/JsonObject;Lnet/minecraft/advancements/critereon/ContextAwarePredicate;Lnet/minecraft/advancements/critereon/DeserializationContext;)Lnet/minecraft/advancements/critereon/LightningStrikeTrigger$TriggerInstance; +MD: net/minecraft/advancements/critereon/LightningStrikeTrigger/m_7295_ ()Lnet/minecraft/resources/ResourceLocation; net/minecraft/advancements/critereon/LightningStrikeTrigger/getId ()Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/advancements/critereon/LightningStrikeTrigger$TriggerInstance/ (Lnet/minecraft/advancements/critereon/ContextAwarePredicate;Lnet/minecraft/advancements/critereon/ContextAwarePredicate;Lnet/minecraft/advancements/critereon/ContextAwarePredicate;)V net/minecraft/advancements/critereon/LightningStrikeTrigger$TriggerInstance/ (Lnet/minecraft/advancements/critereon/ContextAwarePredicate;Lnet/minecraft/advancements/critereon/ContextAwarePredicate;Lnet/minecraft/advancements/critereon/ContextAwarePredicate;)V +MD: net/minecraft/advancements/critereon/LightningStrikeTrigger$TriggerInstance/m_153413_ (Lnet/minecraft/advancements/critereon/EntityPredicate;Lnet/minecraft/advancements/critereon/EntityPredicate;)Lnet/minecraft/advancements/critereon/LightningStrikeTrigger$TriggerInstance; net/minecraft/advancements/critereon/LightningStrikeTrigger$TriggerInstance/lighthingStrike (Lnet/minecraft/advancements/critereon/EntityPredicate;Lnet/minecraft/advancements/critereon/EntityPredicate;)Lnet/minecraft/advancements/critereon/LightningStrikeTrigger$TriggerInstance; +MD: net/minecraft/advancements/critereon/LightningStrikeTrigger$TriggerInstance/m_153418_ (Lnet/minecraft/world/level/storage/loot/LootContext;Ljava/util/List;)Z net/minecraft/advancements/critereon/LightningStrikeTrigger$TriggerInstance/matches (Lnet/minecraft/world/level/storage/loot/LootContext;Ljava/util/List;)Z +MD: net/minecraft/advancements/critereon/LightningStrikeTrigger$TriggerInstance/m_7683_ (Lnet/minecraft/advancements/critereon/SerializationContext;)Lcom/google/gson/JsonObject; net/minecraft/advancements/critereon/LightningStrikeTrigger$TriggerInstance/serializeToJson (Lnet/minecraft/advancements/critereon/SerializationContext;)Lcom/google/gson/JsonObject; +MD: net/minecraft/advancements/critereon/LocationPredicate/ ()V net/minecraft/advancements/critereon/LocationPredicate/ ()V +MD: net/minecraft/advancements/critereon/LocationPredicate/ (Lnet/minecraft/advancements/critereon/MinMaxBounds$Doubles;Lnet/minecraft/advancements/critereon/MinMaxBounds$Doubles;Lnet/minecraft/advancements/critereon/MinMaxBounds$Doubles;Lnet/minecraft/resources/ResourceKey;Lnet/minecraft/resources/ResourceKey;Lnet/minecraft/resources/ResourceKey;Ljava/lang/Boolean;Lnet/minecraft/advancements/critereon/LightPredicate;Lnet/minecraft/advancements/critereon/BlockPredicate;Lnet/minecraft/advancements/critereon/FluidPredicate;)V net/minecraft/advancements/critereon/LocationPredicate/ (Lnet/minecraft/advancements/critereon/MinMaxBounds$Doubles;Lnet/minecraft/advancements/critereon/MinMaxBounds$Doubles;Lnet/minecraft/advancements/critereon/MinMaxBounds$Doubles;Lnet/minecraft/resources/ResourceKey;Lnet/minecraft/resources/ResourceKey;Lnet/minecraft/resources/ResourceKey;Ljava/lang/Boolean;Lnet/minecraft/advancements/critereon/LightPredicate;Lnet/minecraft/advancements/critereon/BlockPredicate;Lnet/minecraft/advancements/critereon/FluidPredicate;)V +MD: net/minecraft/advancements/critereon/LocationPredicate/m_187442_ (Lnet/minecraft/advancements/critereon/MinMaxBounds$Doubles;)Lnet/minecraft/advancements/critereon/LocationPredicate; net/minecraft/advancements/critereon/LocationPredicate/atYLocation (Lnet/minecraft/advancements/critereon/MinMaxBounds$Doubles;)Lnet/minecraft/advancements/critereon/LocationPredicate; +MD: net/minecraft/advancements/critereon/LocationPredicate/m_220589_ (Lnet/minecraft/resources/ResourceKey;)Lnet/minecraft/advancements/critereon/LocationPredicate; net/minecraft/advancements/critereon/LocationPredicate/inStructure (Lnet/minecraft/resources/ResourceKey;)Lnet/minecraft/advancements/critereon/LocationPredicate; +MD: net/minecraft/advancements/critereon/LocationPredicate/m_257056_ (Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/resources/ResourceKey; net/minecraft/advancements/critereon/LocationPredicate/lambda$fromJson$1 (Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/resources/ResourceKey; +MD: net/minecraft/advancements/critereon/LocationPredicate/m_257057_ (Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/resources/ResourceKey; net/minecraft/advancements/critereon/LocationPredicate/lambda$fromJson$2 (Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/resources/ResourceKey; +MD: net/minecraft/advancements/critereon/LocationPredicate/m_52616_ ()Lcom/google/gson/JsonElement; net/minecraft/advancements/critereon/LocationPredicate/serializeToJson ()Lcom/google/gson/JsonElement; +MD: net/minecraft/advancements/critereon/LocationPredicate/m_52617_ (Lnet/minecraft/server/level/ServerLevel;DDD)Z net/minecraft/advancements/critereon/LocationPredicate/matches (Lnet/minecraft/server/level/ServerLevel;DDD)Z +MD: net/minecraft/advancements/critereon/LocationPredicate/m_52629_ (Lcom/google/gson/JsonElement;)Lnet/minecraft/advancements/critereon/LocationPredicate; net/minecraft/advancements/critereon/LocationPredicate/fromJson (Lcom/google/gson/JsonElement;)Lnet/minecraft/advancements/critereon/LocationPredicate; +MD: net/minecraft/advancements/critereon/LocationPredicate/m_52631_ (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonElement;)V net/minecraft/advancements/critereon/LocationPredicate/lambda$serializeToJson$0 (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonElement;)V +MD: net/minecraft/advancements/critereon/LocationPredicate/m_52634_ (Lnet/minecraft/resources/ResourceKey;)Lnet/minecraft/advancements/critereon/LocationPredicate; net/minecraft/advancements/critereon/LocationPredicate/inBiome (Lnet/minecraft/resources/ResourceKey;)Lnet/minecraft/advancements/critereon/LocationPredicate; +MD: net/minecraft/advancements/critereon/LocationPredicate/m_52638_ (Lnet/minecraft/resources/ResourceKey;)Lnet/minecraft/advancements/critereon/LocationPredicate; net/minecraft/advancements/critereon/LocationPredicate/inDimension (Lnet/minecraft/resources/ResourceKey;)Lnet/minecraft/advancements/critereon/LocationPredicate; +MD: net/minecraft/advancements/critereon/LocationPredicate$Builder/ ()V net/minecraft/advancements/critereon/LocationPredicate$Builder/ ()V +MD: net/minecraft/advancements/critereon/LocationPredicate$Builder/m_153966_ (Lnet/minecraft/advancements/critereon/FluidPredicate;)Lnet/minecraft/advancements/critereon/LocationPredicate$Builder; net/minecraft/advancements/critereon/LocationPredicate$Builder/setFluid (Lnet/minecraft/advancements/critereon/FluidPredicate;)Lnet/minecraft/advancements/critereon/LocationPredicate$Builder; +MD: net/minecraft/advancements/critereon/LocationPredicate$Builder/m_153968_ (Lnet/minecraft/advancements/critereon/LightPredicate;)Lnet/minecraft/advancements/critereon/LocationPredicate$Builder; net/minecraft/advancements/critereon/LocationPredicate$Builder/setLight (Lnet/minecraft/advancements/critereon/LightPredicate;)Lnet/minecraft/advancements/critereon/LocationPredicate$Builder; +MD: net/minecraft/advancements/critereon/LocationPredicate$Builder/m_153970_ (Lnet/minecraft/advancements/critereon/MinMaxBounds$Doubles;)Lnet/minecraft/advancements/critereon/LocationPredicate$Builder; net/minecraft/advancements/critereon/LocationPredicate$Builder/setX (Lnet/minecraft/advancements/critereon/MinMaxBounds$Doubles;)Lnet/minecraft/advancements/critereon/LocationPredicate$Builder; +MD: net/minecraft/advancements/critereon/LocationPredicate$Builder/m_153974_ (Lnet/minecraft/advancements/critereon/MinMaxBounds$Doubles;)Lnet/minecraft/advancements/critereon/LocationPredicate$Builder; net/minecraft/advancements/critereon/LocationPredicate$Builder/setY (Lnet/minecraft/advancements/critereon/MinMaxBounds$Doubles;)Lnet/minecraft/advancements/critereon/LocationPredicate$Builder; +MD: net/minecraft/advancements/critereon/LocationPredicate$Builder/m_153976_ (Lnet/minecraft/resources/ResourceKey;)Lnet/minecraft/advancements/critereon/LocationPredicate$Builder; net/minecraft/advancements/critereon/LocationPredicate$Builder/setDimension (Lnet/minecraft/resources/ResourceKey;)Lnet/minecraft/advancements/critereon/LocationPredicate$Builder; +MD: net/minecraft/advancements/critereon/LocationPredicate$Builder/m_153978_ (Lnet/minecraft/advancements/critereon/MinMaxBounds$Doubles;)Lnet/minecraft/advancements/critereon/LocationPredicate$Builder; net/minecraft/advancements/critereon/LocationPredicate$Builder/setZ (Lnet/minecraft/advancements/critereon/MinMaxBounds$Doubles;)Lnet/minecraft/advancements/critereon/LocationPredicate$Builder; +MD: net/minecraft/advancements/critereon/LocationPredicate$Builder/m_220592_ (Lnet/minecraft/resources/ResourceKey;)Lnet/minecraft/advancements/critereon/LocationPredicate$Builder; net/minecraft/advancements/critereon/LocationPredicate$Builder/setStructure (Lnet/minecraft/resources/ResourceKey;)Lnet/minecraft/advancements/critereon/LocationPredicate$Builder; +MD: net/minecraft/advancements/critereon/LocationPredicate$Builder/m_52651_ ()Lnet/minecraft/advancements/critereon/LocationPredicate$Builder; net/minecraft/advancements/critereon/LocationPredicate$Builder/location ()Lnet/minecraft/advancements/critereon/LocationPredicate$Builder; +MD: net/minecraft/advancements/critereon/LocationPredicate$Builder/m_52652_ (Lnet/minecraft/advancements/critereon/BlockPredicate;)Lnet/minecraft/advancements/critereon/LocationPredicate$Builder; net/minecraft/advancements/critereon/LocationPredicate$Builder/setBlock (Lnet/minecraft/advancements/critereon/BlockPredicate;)Lnet/minecraft/advancements/critereon/LocationPredicate$Builder; +MD: net/minecraft/advancements/critereon/LocationPredicate$Builder/m_52654_ (Ljava/lang/Boolean;)Lnet/minecraft/advancements/critereon/LocationPredicate$Builder; net/minecraft/advancements/critereon/LocationPredicate$Builder/setSmokey (Ljava/lang/Boolean;)Lnet/minecraft/advancements/critereon/LocationPredicate$Builder; +MD: net/minecraft/advancements/critereon/LocationPredicate$Builder/m_52656_ (Lnet/minecraft/resources/ResourceKey;)Lnet/minecraft/advancements/critereon/LocationPredicate$Builder; net/minecraft/advancements/critereon/LocationPredicate$Builder/setBiome (Lnet/minecraft/resources/ResourceKey;)Lnet/minecraft/advancements/critereon/LocationPredicate$Builder; +MD: net/minecraft/advancements/critereon/LocationPredicate$Builder/m_52658_ ()Lnet/minecraft/advancements/critereon/LocationPredicate; net/minecraft/advancements/critereon/LocationPredicate$Builder/build ()Lnet/minecraft/advancements/critereon/LocationPredicate; +MD: net/minecraft/advancements/critereon/LootTableTrigger/ ()V net/minecraft/advancements/critereon/LootTableTrigger/ ()V +MD: net/minecraft/advancements/critereon/LootTableTrigger/ ()V net/minecraft/advancements/critereon/LootTableTrigger/ ()V +MD: net/minecraft/advancements/critereon/LootTableTrigger/m_54597_ (Lnet/minecraft/server/level/ServerPlayer;Lnet/minecraft/resources/ResourceLocation;)V net/minecraft/advancements/critereon/LootTableTrigger/trigger (Lnet/minecraft/server/level/ServerPlayer;Lnet/minecraft/resources/ResourceLocation;)V +MD: net/minecraft/advancements/critereon/LootTableTrigger/m_54604_ (Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/advancements/critereon/LootTableTrigger$TriggerInstance;)Z net/minecraft/advancements/critereon/LootTableTrigger/lambda$trigger$0 (Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/advancements/critereon/LootTableTrigger$TriggerInstance;)Z +MD: net/minecraft/advancements/critereon/LootTableTrigger/m_7214_ (Lcom/google/gson/JsonObject;Lnet/minecraft/advancements/critereon/ContextAwarePredicate;Lnet/minecraft/advancements/critereon/DeserializationContext;)Lnet/minecraft/advancements/critereon/LootTableTrigger$TriggerInstance; net/minecraft/advancements/critereon/LootTableTrigger/createInstance (Lcom/google/gson/JsonObject;Lnet/minecraft/advancements/critereon/ContextAwarePredicate;Lnet/minecraft/advancements/critereon/DeserializationContext;)Lnet/minecraft/advancements/critereon/LootTableTrigger$TriggerInstance; +MD: net/minecraft/advancements/critereon/LootTableTrigger/m_7214_ (Lcom/google/gson/JsonObject;Lnet/minecraft/advancements/critereon/ContextAwarePredicate;Lnet/minecraft/advancements/critereon/DeserializationContext;)Lnet/minecraft/advancements/critereon/AbstractCriterionTriggerInstance; net/minecraft/advancements/critereon/LootTableTrigger/createInstance (Lcom/google/gson/JsonObject;Lnet/minecraft/advancements/critereon/ContextAwarePredicate;Lnet/minecraft/advancements/critereon/DeserializationContext;)Lnet/minecraft/advancements/critereon/AbstractCriterionTriggerInstance; +MD: net/minecraft/advancements/critereon/LootTableTrigger/m_7295_ ()Lnet/minecraft/resources/ResourceLocation; net/minecraft/advancements/critereon/LootTableTrigger/getId ()Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/advancements/critereon/LootTableTrigger$TriggerInstance/ (Lnet/minecraft/advancements/critereon/ContextAwarePredicate;Lnet/minecraft/resources/ResourceLocation;)V net/minecraft/advancements/critereon/LootTableTrigger$TriggerInstance/ (Lnet/minecraft/advancements/critereon/ContextAwarePredicate;Lnet/minecraft/resources/ResourceLocation;)V +MD: net/minecraft/advancements/critereon/LootTableTrigger$TriggerInstance/m_54618_ (Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/advancements/critereon/LootTableTrigger$TriggerInstance; net/minecraft/advancements/critereon/LootTableTrigger$TriggerInstance/lootTableUsed (Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/advancements/critereon/LootTableTrigger$TriggerInstance; +MD: net/minecraft/advancements/critereon/LootTableTrigger$TriggerInstance/m_54620_ (Lnet/minecraft/resources/ResourceLocation;)Z net/minecraft/advancements/critereon/LootTableTrigger$TriggerInstance/matches (Lnet/minecraft/resources/ResourceLocation;)Z +MD: net/minecraft/advancements/critereon/LootTableTrigger$TriggerInstance/m_7683_ (Lnet/minecraft/advancements/critereon/SerializationContext;)Lcom/google/gson/JsonObject; net/minecraft/advancements/critereon/LootTableTrigger$TriggerInstance/serializeToJson (Lnet/minecraft/advancements/critereon/SerializationContext;)Lcom/google/gson/JsonObject; +MD: net/minecraft/advancements/critereon/MinMaxBounds/ ()V net/minecraft/advancements/critereon/MinMaxBounds/ ()V +MD: net/minecraft/advancements/critereon/MinMaxBounds/ (Ljava/lang/Number;Ljava/lang/Number;)V net/minecraft/advancements/critereon/MinMaxBounds/ (Ljava/lang/Number;Ljava/lang/Number;)V +MD: net/minecraft/advancements/critereon/MinMaxBounds/m_55305_ ()Ljava/lang/Number; net/minecraft/advancements/critereon/MinMaxBounds/getMin ()Ljava/lang/Number; +MD: net/minecraft/advancements/critereon/MinMaxBounds/m_55306_ (Lcom/google/gson/JsonElement;Lnet/minecraft/advancements/critereon/MinMaxBounds;Ljava/util/function/BiFunction;Lnet/minecraft/advancements/critereon/MinMaxBounds$BoundsFactory;)Lnet/minecraft/advancements/critereon/MinMaxBounds; net/minecraft/advancements/critereon/MinMaxBounds/fromJson (Lcom/google/gson/JsonElement;Lnet/minecraft/advancements/critereon/MinMaxBounds;Ljava/util/function/BiFunction;Lnet/minecraft/advancements/critereon/MinMaxBounds$BoundsFactory;)Lnet/minecraft/advancements/critereon/MinMaxBounds; +MD: net/minecraft/advancements/critereon/MinMaxBounds/m_55311_ (Lcom/mojang/brigadier/StringReader;)Z net/minecraft/advancements/critereon/MinMaxBounds/isAllowedInputChat (Lcom/mojang/brigadier/StringReader;)Z +MD: net/minecraft/advancements/critereon/MinMaxBounds/m_55313_ (Lcom/mojang/brigadier/StringReader;Lnet/minecraft/advancements/critereon/MinMaxBounds$BoundsFromReaderFactory;Ljava/util/function/Function;Ljava/util/function/Supplier;Ljava/util/function/Function;)Lnet/minecraft/advancements/critereon/MinMaxBounds; net/minecraft/advancements/critereon/MinMaxBounds/fromReader (Lcom/mojang/brigadier/StringReader;Lnet/minecraft/advancements/critereon/MinMaxBounds$BoundsFromReaderFactory;Ljava/util/function/Function;Ljava/util/function/Supplier;Ljava/util/function/Function;)Lnet/minecraft/advancements/critereon/MinMaxBounds; +MD: net/minecraft/advancements/critereon/MinMaxBounds/m_55319_ (Lcom/mojang/brigadier/StringReader;Ljava/util/function/Function;Ljava/util/function/Supplier;)Ljava/lang/Number; net/minecraft/advancements/critereon/MinMaxBounds/readNumber (Lcom/mojang/brigadier/StringReader;Ljava/util/function/Function;Ljava/util/function/Supplier;)Ljava/lang/Number; +MD: net/minecraft/advancements/critereon/MinMaxBounds/m_55323_ (Ljava/lang/Object;Ljava/util/function/Function;)Ljava/lang/Object; net/minecraft/advancements/critereon/MinMaxBounds/optionallyFormat (Ljava/lang/Object;Ljava/util/function/Function;)Ljava/lang/Object; +MD: net/minecraft/advancements/critereon/MinMaxBounds/m_55326_ ()Ljava/lang/Number; net/minecraft/advancements/critereon/MinMaxBounds/getMax ()Ljava/lang/Number; +MD: net/minecraft/advancements/critereon/MinMaxBounds/m_55327_ ()Z net/minecraft/advancements/critereon/MinMaxBounds/isAny ()Z +MD: net/minecraft/advancements/critereon/MinMaxBounds/m_55328_ ()Lcom/google/gson/JsonElement; net/minecraft/advancements/critereon/MinMaxBounds/serializeToJson ()Lcom/google/gson/JsonElement; +MD: net/minecraft/advancements/critereon/MinMaxBounds$BoundsFactory/m_55329_ (Ljava/lang/Number;Ljava/lang/Number;)Lnet/minecraft/advancements/critereon/MinMaxBounds; net/minecraft/advancements/critereon/MinMaxBounds$BoundsFactory/create (Ljava/lang/Number;Ljava/lang/Number;)Lnet/minecraft/advancements/critereon/MinMaxBounds; +MD: net/minecraft/advancements/critereon/MinMaxBounds$BoundsFromReaderFactory/m_55332_ (Lcom/mojang/brigadier/StringReader;Ljava/lang/Number;Ljava/lang/Number;)Lnet/minecraft/advancements/critereon/MinMaxBounds; net/minecraft/advancements/critereon/MinMaxBounds$BoundsFromReaderFactory/create (Lcom/mojang/brigadier/StringReader;Ljava/lang/Number;Ljava/lang/Number;)Lnet/minecraft/advancements/critereon/MinMaxBounds; +MD: net/minecraft/advancements/critereon/MinMaxBounds$Doubles/ ()V net/minecraft/advancements/critereon/MinMaxBounds$Doubles/ ()V +MD: net/minecraft/advancements/critereon/MinMaxBounds$Doubles/ (Ljava/lang/Double;Ljava/lang/Double;)V net/minecraft/advancements/critereon/MinMaxBounds$Doubles/ (Ljava/lang/Double;Ljava/lang/Double;)V +MD: net/minecraft/advancements/critereon/MinMaxBounds$Doubles/m_154786_ (D)Lnet/minecraft/advancements/critereon/MinMaxBounds$Doubles; net/minecraft/advancements/critereon/MinMaxBounds$Doubles/exactly (D)Lnet/minecraft/advancements/critereon/MinMaxBounds$Doubles; +MD: net/minecraft/advancements/critereon/MinMaxBounds$Doubles/m_154788_ (DD)Lnet/minecraft/advancements/critereon/MinMaxBounds$Doubles; net/minecraft/advancements/critereon/MinMaxBounds$Doubles/between (DD)Lnet/minecraft/advancements/critereon/MinMaxBounds$Doubles; +MD: net/minecraft/advancements/critereon/MinMaxBounds$Doubles/m_154791_ (Lcom/google/gson/JsonElement;)Lnet/minecraft/advancements/critereon/MinMaxBounds$Doubles; net/minecraft/advancements/critereon/MinMaxBounds$Doubles/fromJson (Lcom/google/gson/JsonElement;)Lnet/minecraft/advancements/critereon/MinMaxBounds$Doubles; +MD: net/minecraft/advancements/critereon/MinMaxBounds$Doubles/m_154793_ (Lcom/mojang/brigadier/StringReader;)Lnet/minecraft/advancements/critereon/MinMaxBounds$Doubles; net/minecraft/advancements/critereon/MinMaxBounds$Doubles/fromReader (Lcom/mojang/brigadier/StringReader;)Lnet/minecraft/advancements/critereon/MinMaxBounds$Doubles; +MD: net/minecraft/advancements/critereon/MinMaxBounds$Doubles/m_154795_ (Lcom/mojang/brigadier/StringReader;Ljava/lang/Double;Ljava/lang/Double;)Lnet/minecraft/advancements/critereon/MinMaxBounds$Doubles; net/minecraft/advancements/critereon/MinMaxBounds$Doubles/create (Lcom/mojang/brigadier/StringReader;Ljava/lang/Double;Ljava/lang/Double;)Lnet/minecraft/advancements/critereon/MinMaxBounds$Doubles; +MD: net/minecraft/advancements/critereon/MinMaxBounds$Doubles/m_154799_ (Lcom/mojang/brigadier/StringReader;Ljava/util/function/Function;)Lnet/minecraft/advancements/critereon/MinMaxBounds$Doubles; net/minecraft/advancements/critereon/MinMaxBounds$Doubles/fromReader (Lcom/mojang/brigadier/StringReader;Ljava/util/function/Function;)Lnet/minecraft/advancements/critereon/MinMaxBounds$Doubles; +MD: net/minecraft/advancements/critereon/MinMaxBounds$Doubles/m_154802_ (Ljava/lang/Double;)Ljava/lang/Double; net/minecraft/advancements/critereon/MinMaxBounds$Doubles/squareOpt (Ljava/lang/Double;)Ljava/lang/Double; +MD: net/minecraft/advancements/critereon/MinMaxBounds$Doubles/m_154804_ (D)Lnet/minecraft/advancements/critereon/MinMaxBounds$Doubles; net/minecraft/advancements/critereon/MinMaxBounds$Doubles/atLeast (D)Lnet/minecraft/advancements/critereon/MinMaxBounds$Doubles; +MD: net/minecraft/advancements/critereon/MinMaxBounds$Doubles/m_154806_ (Ljava/lang/Double;)Ljava/lang/Double; net/minecraft/advancements/critereon/MinMaxBounds$Doubles/lambda$fromReader$0 (Ljava/lang/Double;)Ljava/lang/Double; +MD: net/minecraft/advancements/critereon/MinMaxBounds$Doubles/m_154808_ (D)Lnet/minecraft/advancements/critereon/MinMaxBounds$Doubles; net/minecraft/advancements/critereon/MinMaxBounds$Doubles/atMost (D)Lnet/minecraft/advancements/critereon/MinMaxBounds$Doubles; +MD: net/minecraft/advancements/critereon/MinMaxBounds$Doubles/m_154810_ (D)Z net/minecraft/advancements/critereon/MinMaxBounds$Doubles/matches (D)Z +MD: net/minecraft/advancements/critereon/MinMaxBounds$Doubles/m_154812_ (D)Z net/minecraft/advancements/critereon/MinMaxBounds$Doubles/matchesSqr (D)Z +MD: net/minecraft/advancements/critereon/MinMaxBounds$Ints/ ()V net/minecraft/advancements/critereon/MinMaxBounds$Ints/ ()V +MD: net/minecraft/advancements/critereon/MinMaxBounds$Ints/ (Ljava/lang/Integer;Ljava/lang/Integer;)V net/minecraft/advancements/critereon/MinMaxBounds$Ints/ (Ljava/lang/Integer;Ljava/lang/Integer;)V +MD: net/minecraft/advancements/critereon/MinMaxBounds$Ints/m_154814_ (II)Lnet/minecraft/advancements/critereon/MinMaxBounds$Ints; net/minecraft/advancements/critereon/MinMaxBounds$Ints/between (II)Lnet/minecraft/advancements/critereon/MinMaxBounds$Ints; +MD: net/minecraft/advancements/critereon/MinMaxBounds$Ints/m_154817_ (J)Z net/minecraft/advancements/critereon/MinMaxBounds$Ints/matchesSqr (J)Z +MD: net/minecraft/advancements/critereon/MinMaxBounds$Ints/m_154819_ (I)Lnet/minecraft/advancements/critereon/MinMaxBounds$Ints; net/minecraft/advancements/critereon/MinMaxBounds$Ints/atMost (I)Lnet/minecraft/advancements/critereon/MinMaxBounds$Ints; +MD: net/minecraft/advancements/critereon/MinMaxBounds$Ints/m_55371_ (I)Lnet/minecraft/advancements/critereon/MinMaxBounds$Ints; net/minecraft/advancements/critereon/MinMaxBounds$Ints/exactly (I)Lnet/minecraft/advancements/critereon/MinMaxBounds$Ints; +MD: net/minecraft/advancements/critereon/MinMaxBounds$Ints/m_55373_ (Lcom/google/gson/JsonElement;)Lnet/minecraft/advancements/critereon/MinMaxBounds$Ints; net/minecraft/advancements/critereon/MinMaxBounds$Ints/fromJson (Lcom/google/gson/JsonElement;)Lnet/minecraft/advancements/critereon/MinMaxBounds$Ints; +MD: net/minecraft/advancements/critereon/MinMaxBounds$Ints/m_55375_ (Lcom/mojang/brigadier/StringReader;)Lnet/minecraft/advancements/critereon/MinMaxBounds$Ints; net/minecraft/advancements/critereon/MinMaxBounds$Ints/fromReader (Lcom/mojang/brigadier/StringReader;)Lnet/minecraft/advancements/critereon/MinMaxBounds$Ints; +MD: net/minecraft/advancements/critereon/MinMaxBounds$Ints/m_55377_ (Lcom/mojang/brigadier/StringReader;Ljava/lang/Integer;Ljava/lang/Integer;)Lnet/minecraft/advancements/critereon/MinMaxBounds$Ints; net/minecraft/advancements/critereon/MinMaxBounds$Ints/create (Lcom/mojang/brigadier/StringReader;Ljava/lang/Integer;Ljava/lang/Integer;)Lnet/minecraft/advancements/critereon/MinMaxBounds$Ints; +MD: net/minecraft/advancements/critereon/MinMaxBounds$Ints/m_55381_ (Lcom/mojang/brigadier/StringReader;Ljava/util/function/Function;)Lnet/minecraft/advancements/critereon/MinMaxBounds$Ints; net/minecraft/advancements/critereon/MinMaxBounds$Ints/fromReader (Lcom/mojang/brigadier/StringReader;Ljava/util/function/Function;)Lnet/minecraft/advancements/critereon/MinMaxBounds$Ints; +MD: net/minecraft/advancements/critereon/MinMaxBounds$Ints/m_55384_ (Ljava/lang/Integer;)Ljava/lang/Long; net/minecraft/advancements/critereon/MinMaxBounds$Ints/squareOpt (Ljava/lang/Integer;)Ljava/lang/Long; +MD: net/minecraft/advancements/critereon/MinMaxBounds$Ints/m_55386_ (I)Lnet/minecraft/advancements/critereon/MinMaxBounds$Ints; net/minecraft/advancements/critereon/MinMaxBounds$Ints/atLeast (I)Lnet/minecraft/advancements/critereon/MinMaxBounds$Ints; +MD: net/minecraft/advancements/critereon/MinMaxBounds$Ints/m_55388_ (Ljava/lang/Integer;)Ljava/lang/Integer; net/minecraft/advancements/critereon/MinMaxBounds$Ints/lambda$fromReader$0 (Ljava/lang/Integer;)Ljava/lang/Integer; +MD: net/minecraft/advancements/critereon/MinMaxBounds$Ints/m_55390_ (I)Z net/minecraft/advancements/critereon/MinMaxBounds$Ints/matches (I)Z +MD: net/minecraft/advancements/critereon/MobEffectsPredicate/ ()V net/minecraft/advancements/critereon/MobEffectsPredicate/ ()V +MD: net/minecraft/advancements/critereon/MobEffectsPredicate/ (Ljava/util/Map;)V net/minecraft/advancements/critereon/MobEffectsPredicate/ (Ljava/util/Map;)V +MD: net/minecraft/advancements/critereon/MobEffectsPredicate/m_154977_ (Lnet/minecraft/world/effect/MobEffect;Lnet/minecraft/advancements/critereon/MobEffectsPredicate$MobEffectInstancePredicate;)Lnet/minecraft/advancements/critereon/MobEffectsPredicate; net/minecraft/advancements/critereon/MobEffectsPredicate/and (Lnet/minecraft/world/effect/MobEffect;Lnet/minecraft/advancements/critereon/MobEffectsPredicate$MobEffectInstancePredicate;)Lnet/minecraft/advancements/critereon/MobEffectsPredicate; +MD: net/minecraft/advancements/critereon/MobEffectsPredicate/m_56552_ ()Lnet/minecraft/advancements/critereon/MobEffectsPredicate; net/minecraft/advancements/critereon/MobEffectsPredicate/effects ()Lnet/minecraft/advancements/critereon/MobEffectsPredicate; +MD: net/minecraft/advancements/critereon/MobEffectsPredicate/m_56553_ (Lnet/minecraft/world/effect/MobEffect;)Lnet/minecraft/advancements/critereon/MobEffectsPredicate; net/minecraft/advancements/critereon/MobEffectsPredicate/and (Lnet/minecraft/world/effect/MobEffect;)Lnet/minecraft/advancements/critereon/MobEffectsPredicate; +MD: net/minecraft/advancements/critereon/MobEffectsPredicate/m_56555_ (Lnet/minecraft/world/entity/Entity;)Z net/minecraft/advancements/critereon/MobEffectsPredicate/matches (Lnet/minecraft/world/entity/Entity;)Z +MD: net/minecraft/advancements/critereon/MobEffectsPredicate/m_56557_ (Lnet/minecraft/world/entity/LivingEntity;)Z net/minecraft/advancements/critereon/MobEffectsPredicate/matches (Lnet/minecraft/world/entity/LivingEntity;)Z +MD: net/minecraft/advancements/critereon/MobEffectsPredicate/m_56559_ (Lcom/google/gson/JsonElement;)Lnet/minecraft/advancements/critereon/MobEffectsPredicate; net/minecraft/advancements/critereon/MobEffectsPredicate/fromJson (Lcom/google/gson/JsonElement;)Lnet/minecraft/advancements/critereon/MobEffectsPredicate; +MD: net/minecraft/advancements/critereon/MobEffectsPredicate/m_56561_ (Ljava/util/Map;)Z net/minecraft/advancements/critereon/MobEffectsPredicate/matches (Ljava/util/Map;)Z +MD: net/minecraft/advancements/critereon/MobEffectsPredicate/m_56563_ (Lnet/minecraft/resources/ResourceLocation;)Lcom/google/gson/JsonSyntaxException; net/minecraft/advancements/critereon/MobEffectsPredicate/lambda$fromJson$0 (Lnet/minecraft/resources/ResourceLocation;)Lcom/google/gson/JsonSyntaxException; +MD: net/minecraft/advancements/critereon/MobEffectsPredicate/m_56565_ ()Lcom/google/gson/JsonElement; net/minecraft/advancements/critereon/MobEffectsPredicate/serializeToJson ()Lcom/google/gson/JsonElement; +MD: net/minecraft/advancements/critereon/MobEffectsPredicate$MobEffectInstancePredicate/ (Lnet/minecraft/advancements/critereon/MinMaxBounds$Ints;Lnet/minecraft/advancements/critereon/MinMaxBounds$Ints;Ljava/lang/Boolean;Ljava/lang/Boolean;)V net/minecraft/advancements/critereon/MobEffectsPredicate$MobEffectInstancePredicate/ (Lnet/minecraft/advancements/critereon/MinMaxBounds$Ints;Lnet/minecraft/advancements/critereon/MinMaxBounds$Ints;Ljava/lang/Boolean;Ljava/lang/Boolean;)V +MD: net/minecraft/advancements/critereon/MobEffectsPredicate$MobEffectInstancePredicate/ ()V net/minecraft/advancements/critereon/MobEffectsPredicate$MobEffectInstancePredicate/ ()V +MD: net/minecraft/advancements/critereon/MobEffectsPredicate$MobEffectInstancePredicate/m_56576_ ()Lcom/google/gson/JsonElement; net/minecraft/advancements/critereon/MobEffectsPredicate$MobEffectInstancePredicate/serializeToJson ()Lcom/google/gson/JsonElement; +MD: net/minecraft/advancements/critereon/MobEffectsPredicate$MobEffectInstancePredicate/m_56577_ (Lnet/minecraft/world/effect/MobEffectInstance;)Z net/minecraft/advancements/critereon/MobEffectsPredicate$MobEffectInstancePredicate/matches (Lnet/minecraft/world/effect/MobEffectInstance;)Z +MD: net/minecraft/advancements/critereon/MobEffectsPredicate$MobEffectInstancePredicate/m_56579_ (Lcom/google/gson/JsonObject;)Lnet/minecraft/advancements/critereon/MobEffectsPredicate$MobEffectInstancePredicate; net/minecraft/advancements/critereon/MobEffectsPredicate$MobEffectInstancePredicate/fromJson (Lcom/google/gson/JsonObject;)Lnet/minecraft/advancements/critereon/MobEffectsPredicate$MobEffectInstancePredicate; +MD: net/minecraft/advancements/critereon/NbtPredicate/ ()V net/minecraft/advancements/critereon/NbtPredicate/ ()V +MD: net/minecraft/advancements/critereon/NbtPredicate/ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/advancements/critereon/NbtPredicate/ (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/advancements/critereon/NbtPredicate/m_57476_ ()Lcom/google/gson/JsonElement; net/minecraft/advancements/critereon/NbtPredicate/serializeToJson ()Lcom/google/gson/JsonElement; +MD: net/minecraft/advancements/critereon/NbtPredicate/m_57477_ (Lnet/minecraft/world/entity/Entity;)Z net/minecraft/advancements/critereon/NbtPredicate/matches (Lnet/minecraft/world/entity/Entity;)Z +MD: net/minecraft/advancements/critereon/NbtPredicate/m_57479_ (Lnet/minecraft/world/item/ItemStack;)Z net/minecraft/advancements/critereon/NbtPredicate/matches (Lnet/minecraft/world/item/ItemStack;)Z +MD: net/minecraft/advancements/critereon/NbtPredicate/m_57481_ (Lcom/google/gson/JsonElement;)Lnet/minecraft/advancements/critereon/NbtPredicate; net/minecraft/advancements/critereon/NbtPredicate/fromJson (Lcom/google/gson/JsonElement;)Lnet/minecraft/advancements/critereon/NbtPredicate; +MD: net/minecraft/advancements/critereon/NbtPredicate/m_57483_ (Lnet/minecraft/nbt/Tag;)Z net/minecraft/advancements/critereon/NbtPredicate/matches (Lnet/minecraft/nbt/Tag;)Z +MD: net/minecraft/advancements/critereon/NbtPredicate/m_57485_ (Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/nbt/CompoundTag; net/minecraft/advancements/critereon/NbtPredicate/getEntityTagToCompare (Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/nbt/CompoundTag; +MD: net/minecraft/advancements/critereon/PickedUpItemTrigger/ (Lnet/minecraft/resources/ResourceLocation;)V net/minecraft/advancements/critereon/PickedUpItemTrigger/ (Lnet/minecraft/resources/ResourceLocation;)V +MD: net/minecraft/advancements/critereon/PickedUpItemTrigger/m_221298_ (Lnet/minecraft/server/level/ServerPlayer;Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/entity/Entity;)V net/minecraft/advancements/critereon/PickedUpItemTrigger/trigger (Lnet/minecraft/server/level/ServerPlayer;Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/entity/Entity;)V +MD: net/minecraft/advancements/critereon/PickedUpItemTrigger/m_221302_ (Lnet/minecraft/server/level/ServerPlayer;Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/level/storage/loot/LootContext;Lnet/minecraft/advancements/critereon/PickedUpItemTrigger$TriggerInstance;)Z net/minecraft/advancements/critereon/PickedUpItemTrigger/lambda$trigger$0 (Lnet/minecraft/server/level/ServerPlayer;Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/level/storage/loot/LootContext;Lnet/minecraft/advancements/critereon/PickedUpItemTrigger$TriggerInstance;)Z +MD: net/minecraft/advancements/critereon/PickedUpItemTrigger/m_7214_ (Lcom/google/gson/JsonObject;Lnet/minecraft/advancements/critereon/ContextAwarePredicate;Lnet/minecraft/advancements/critereon/DeserializationContext;)Lnet/minecraft/advancements/critereon/PickedUpItemTrigger$TriggerInstance; net/minecraft/advancements/critereon/PickedUpItemTrigger/createInstance (Lcom/google/gson/JsonObject;Lnet/minecraft/advancements/critereon/ContextAwarePredicate;Lnet/minecraft/advancements/critereon/DeserializationContext;)Lnet/minecraft/advancements/critereon/PickedUpItemTrigger$TriggerInstance; +MD: net/minecraft/advancements/critereon/PickedUpItemTrigger/m_7214_ (Lcom/google/gson/JsonObject;Lnet/minecraft/advancements/critereon/ContextAwarePredicate;Lnet/minecraft/advancements/critereon/DeserializationContext;)Lnet/minecraft/advancements/critereon/AbstractCriterionTriggerInstance; net/minecraft/advancements/critereon/PickedUpItemTrigger/createInstance (Lcom/google/gson/JsonObject;Lnet/minecraft/advancements/critereon/ContextAwarePredicate;Lnet/minecraft/advancements/critereon/DeserializationContext;)Lnet/minecraft/advancements/critereon/AbstractCriterionTriggerInstance; +MD: net/minecraft/advancements/critereon/PickedUpItemTrigger/m_7295_ ()Lnet/minecraft/resources/ResourceLocation; net/minecraft/advancements/critereon/PickedUpItemTrigger/getId ()Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/advancements/critereon/PickedUpItemTrigger$TriggerInstance/ (Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/advancements/critereon/ContextAwarePredicate;Lnet/minecraft/advancements/critereon/ItemPredicate;Lnet/minecraft/advancements/critereon/ContextAwarePredicate;)V net/minecraft/advancements/critereon/PickedUpItemTrigger$TriggerInstance/ (Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/advancements/critereon/ContextAwarePredicate;Lnet/minecraft/advancements/critereon/ItemPredicate;Lnet/minecraft/advancements/critereon/ContextAwarePredicate;)V +MD: net/minecraft/advancements/critereon/PickedUpItemTrigger$TriggerInstance/m_221322_ (Lnet/minecraft/server/level/ServerPlayer;Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/level/storage/loot/LootContext;)Z net/minecraft/advancements/critereon/PickedUpItemTrigger$TriggerInstance/matches (Lnet/minecraft/server/level/ServerPlayer;Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/level/storage/loot/LootContext;)Z +MD: net/minecraft/advancements/critereon/PickedUpItemTrigger$TriggerInstance/m_286072_ (Lnet/minecraft/advancements/critereon/ContextAwarePredicate;Lnet/minecraft/advancements/critereon/ItemPredicate;Lnet/minecraft/advancements/critereon/ContextAwarePredicate;)Lnet/minecraft/advancements/critereon/PickedUpItemTrigger$TriggerInstance; net/minecraft/advancements/critereon/PickedUpItemTrigger$TriggerInstance/thrownItemPickedUpByEntity (Lnet/minecraft/advancements/critereon/ContextAwarePredicate;Lnet/minecraft/advancements/critereon/ItemPredicate;Lnet/minecraft/advancements/critereon/ContextAwarePredicate;)Lnet/minecraft/advancements/critereon/PickedUpItemTrigger$TriggerInstance; +MD: net/minecraft/advancements/critereon/PickedUpItemTrigger$TriggerInstance/m_286101_ (Lnet/minecraft/advancements/critereon/ContextAwarePredicate;Lnet/minecraft/advancements/critereon/ItemPredicate;Lnet/minecraft/advancements/critereon/ContextAwarePredicate;)Lnet/minecraft/advancements/critereon/PickedUpItemTrigger$TriggerInstance; net/minecraft/advancements/critereon/PickedUpItemTrigger$TriggerInstance/thrownItemPickedUpByPlayer (Lnet/minecraft/advancements/critereon/ContextAwarePredicate;Lnet/minecraft/advancements/critereon/ItemPredicate;Lnet/minecraft/advancements/critereon/ContextAwarePredicate;)Lnet/minecraft/advancements/critereon/PickedUpItemTrigger$TriggerInstance; +MD: net/minecraft/advancements/critereon/PickedUpItemTrigger$TriggerInstance/m_7683_ (Lnet/minecraft/advancements/critereon/SerializationContext;)Lcom/google/gson/JsonObject; net/minecraft/advancements/critereon/PickedUpItemTrigger$TriggerInstance/serializeToJson (Lnet/minecraft/advancements/critereon/SerializationContext;)Lcom/google/gson/JsonObject; +MD: net/minecraft/advancements/critereon/PlayerHurtEntityTrigger/ ()V net/minecraft/advancements/critereon/PlayerHurtEntityTrigger/ ()V +MD: net/minecraft/advancements/critereon/PlayerHurtEntityTrigger/ ()V net/minecraft/advancements/critereon/PlayerHurtEntityTrigger/ ()V +MD: net/minecraft/advancements/critereon/PlayerHurtEntityTrigger/m_60112_ (Lnet/minecraft/server/level/ServerPlayer;Lnet/minecraft/world/entity/Entity;Lnet/minecraft/world/damagesource/DamageSource;FFZ)V net/minecraft/advancements/critereon/PlayerHurtEntityTrigger/trigger (Lnet/minecraft/server/level/ServerPlayer;Lnet/minecraft/world/entity/Entity;Lnet/minecraft/world/damagesource/DamageSource;FFZ)V +MD: net/minecraft/advancements/critereon/PlayerHurtEntityTrigger/m_60119_ (Lnet/minecraft/server/level/ServerPlayer;Lnet/minecraft/world/level/storage/loot/LootContext;Lnet/minecraft/world/damagesource/DamageSource;FFZLnet/minecraft/advancements/critereon/PlayerHurtEntityTrigger$TriggerInstance;)Z net/minecraft/advancements/critereon/PlayerHurtEntityTrigger/lambda$trigger$0 (Lnet/minecraft/server/level/ServerPlayer;Lnet/minecraft/world/level/storage/loot/LootContext;Lnet/minecraft/world/damagesource/DamageSource;FFZLnet/minecraft/advancements/critereon/PlayerHurtEntityTrigger$TriggerInstance;)Z +MD: net/minecraft/advancements/critereon/PlayerHurtEntityTrigger/m_7214_ (Lcom/google/gson/JsonObject;Lnet/minecraft/advancements/critereon/ContextAwarePredicate;Lnet/minecraft/advancements/critereon/DeserializationContext;)Lnet/minecraft/advancements/critereon/AbstractCriterionTriggerInstance; net/minecraft/advancements/critereon/PlayerHurtEntityTrigger/createInstance (Lcom/google/gson/JsonObject;Lnet/minecraft/advancements/critereon/ContextAwarePredicate;Lnet/minecraft/advancements/critereon/DeserializationContext;)Lnet/minecraft/advancements/critereon/AbstractCriterionTriggerInstance; +MD: net/minecraft/advancements/critereon/PlayerHurtEntityTrigger/m_7214_ (Lcom/google/gson/JsonObject;Lnet/minecraft/advancements/critereon/ContextAwarePredicate;Lnet/minecraft/advancements/critereon/DeserializationContext;)Lnet/minecraft/advancements/critereon/PlayerHurtEntityTrigger$TriggerInstance; net/minecraft/advancements/critereon/PlayerHurtEntityTrigger/createInstance (Lcom/google/gson/JsonObject;Lnet/minecraft/advancements/critereon/ContextAwarePredicate;Lnet/minecraft/advancements/critereon/DeserializationContext;)Lnet/minecraft/advancements/critereon/PlayerHurtEntityTrigger$TriggerInstance; +MD: net/minecraft/advancements/critereon/PlayerHurtEntityTrigger/m_7295_ ()Lnet/minecraft/resources/ResourceLocation; net/minecraft/advancements/critereon/PlayerHurtEntityTrigger/getId ()Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/advancements/critereon/PlayerHurtEntityTrigger$TriggerInstance/ (Lnet/minecraft/advancements/critereon/ContextAwarePredicate;Lnet/minecraft/advancements/critereon/DamagePredicate;Lnet/minecraft/advancements/critereon/ContextAwarePredicate;)V net/minecraft/advancements/critereon/PlayerHurtEntityTrigger$TriggerInstance/ (Lnet/minecraft/advancements/critereon/ContextAwarePredicate;Lnet/minecraft/advancements/critereon/DamagePredicate;Lnet/minecraft/advancements/critereon/ContextAwarePredicate;)V +MD: net/minecraft/advancements/critereon/PlayerHurtEntityTrigger$TriggerInstance/m_156058_ (Lnet/minecraft/advancements/critereon/DamagePredicate$Builder;Lnet/minecraft/advancements/critereon/EntityPredicate;)Lnet/minecraft/advancements/critereon/PlayerHurtEntityTrigger$TriggerInstance; net/minecraft/advancements/critereon/PlayerHurtEntityTrigger$TriggerInstance/playerHurtEntity (Lnet/minecraft/advancements/critereon/DamagePredicate$Builder;Lnet/minecraft/advancements/critereon/EntityPredicate;)Lnet/minecraft/advancements/critereon/PlayerHurtEntityTrigger$TriggerInstance; +MD: net/minecraft/advancements/critereon/PlayerHurtEntityTrigger$TriggerInstance/m_156061_ (Lnet/minecraft/advancements/critereon/DamagePredicate;)Lnet/minecraft/advancements/critereon/PlayerHurtEntityTrigger$TriggerInstance; net/minecraft/advancements/critereon/PlayerHurtEntityTrigger$TriggerInstance/playerHurtEntity (Lnet/minecraft/advancements/critereon/DamagePredicate;)Lnet/minecraft/advancements/critereon/PlayerHurtEntityTrigger$TriggerInstance; +MD: net/minecraft/advancements/critereon/PlayerHurtEntityTrigger$TriggerInstance/m_156063_ (Lnet/minecraft/advancements/critereon/DamagePredicate;Lnet/minecraft/advancements/critereon/EntityPredicate;)Lnet/minecraft/advancements/critereon/PlayerHurtEntityTrigger$TriggerInstance; net/minecraft/advancements/critereon/PlayerHurtEntityTrigger$TriggerInstance/playerHurtEntity (Lnet/minecraft/advancements/critereon/DamagePredicate;Lnet/minecraft/advancements/critereon/EntityPredicate;)Lnet/minecraft/advancements/critereon/PlayerHurtEntityTrigger$TriggerInstance; +MD: net/minecraft/advancements/critereon/PlayerHurtEntityTrigger$TriggerInstance/m_156066_ (Lnet/minecraft/advancements/critereon/EntityPredicate;)Lnet/minecraft/advancements/critereon/PlayerHurtEntityTrigger$TriggerInstance; net/minecraft/advancements/critereon/PlayerHurtEntityTrigger$TriggerInstance/playerHurtEntity (Lnet/minecraft/advancements/critereon/EntityPredicate;)Lnet/minecraft/advancements/critereon/PlayerHurtEntityTrigger$TriggerInstance; +MD: net/minecraft/advancements/critereon/PlayerHurtEntityTrigger$TriggerInstance/m_156068_ ()Lnet/minecraft/advancements/critereon/PlayerHurtEntityTrigger$TriggerInstance; net/minecraft/advancements/critereon/PlayerHurtEntityTrigger$TriggerInstance/playerHurtEntity ()Lnet/minecraft/advancements/critereon/PlayerHurtEntityTrigger$TriggerInstance; +MD: net/minecraft/advancements/critereon/PlayerHurtEntityTrigger$TriggerInstance/m_60142_ (Lnet/minecraft/server/level/ServerPlayer;Lnet/minecraft/world/level/storage/loot/LootContext;Lnet/minecraft/world/damagesource/DamageSource;FFZ)Z net/minecraft/advancements/critereon/PlayerHurtEntityTrigger$TriggerInstance/matches (Lnet/minecraft/server/level/ServerPlayer;Lnet/minecraft/world/level/storage/loot/LootContext;Lnet/minecraft/world/damagesource/DamageSource;FFZ)Z +MD: net/minecraft/advancements/critereon/PlayerHurtEntityTrigger$TriggerInstance/m_60149_ (Lnet/minecraft/advancements/critereon/DamagePredicate$Builder;)Lnet/minecraft/advancements/critereon/PlayerHurtEntityTrigger$TriggerInstance; net/minecraft/advancements/critereon/PlayerHurtEntityTrigger$TriggerInstance/playerHurtEntity (Lnet/minecraft/advancements/critereon/DamagePredicate$Builder;)Lnet/minecraft/advancements/critereon/PlayerHurtEntityTrigger$TriggerInstance; +MD: net/minecraft/advancements/critereon/PlayerHurtEntityTrigger$TriggerInstance/m_7683_ (Lnet/minecraft/advancements/critereon/SerializationContext;)Lcom/google/gson/JsonObject; net/minecraft/advancements/critereon/PlayerHurtEntityTrigger$TriggerInstance/serializeToJson (Lnet/minecraft/advancements/critereon/SerializationContext;)Lcom/google/gson/JsonObject; +MD: net/minecraft/advancements/critereon/PlayerInteractTrigger/ ()V net/minecraft/advancements/critereon/PlayerInteractTrigger/ ()V +MD: net/minecraft/advancements/critereon/PlayerInteractTrigger/ ()V net/minecraft/advancements/critereon/PlayerInteractTrigger/ ()V +MD: net/minecraft/advancements/critereon/PlayerInteractTrigger/m_61494_ (Lnet/minecraft/server/level/ServerPlayer;Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/entity/Entity;)V net/minecraft/advancements/critereon/PlayerInteractTrigger/trigger (Lnet/minecraft/server/level/ServerPlayer;Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/entity/Entity;)V +MD: net/minecraft/advancements/critereon/PlayerInteractTrigger/m_61498_ (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/level/storage/loot/LootContext;Lnet/minecraft/advancements/critereon/PlayerInteractTrigger$TriggerInstance;)Z net/minecraft/advancements/critereon/PlayerInteractTrigger/lambda$trigger$0 (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/level/storage/loot/LootContext;Lnet/minecraft/advancements/critereon/PlayerInteractTrigger$TriggerInstance;)Z +MD: net/minecraft/advancements/critereon/PlayerInteractTrigger/m_7214_ (Lcom/google/gson/JsonObject;Lnet/minecraft/advancements/critereon/ContextAwarePredicate;Lnet/minecraft/advancements/critereon/DeserializationContext;)Lnet/minecraft/advancements/critereon/AbstractCriterionTriggerInstance; net/minecraft/advancements/critereon/PlayerInteractTrigger/createInstance (Lcom/google/gson/JsonObject;Lnet/minecraft/advancements/critereon/ContextAwarePredicate;Lnet/minecraft/advancements/critereon/DeserializationContext;)Lnet/minecraft/advancements/critereon/AbstractCriterionTriggerInstance; +MD: net/minecraft/advancements/critereon/PlayerInteractTrigger/m_7214_ (Lcom/google/gson/JsonObject;Lnet/minecraft/advancements/critereon/ContextAwarePredicate;Lnet/minecraft/advancements/critereon/DeserializationContext;)Lnet/minecraft/advancements/critereon/PlayerInteractTrigger$TriggerInstance; net/minecraft/advancements/critereon/PlayerInteractTrigger/createInstance (Lcom/google/gson/JsonObject;Lnet/minecraft/advancements/critereon/ContextAwarePredicate;Lnet/minecraft/advancements/critereon/DeserializationContext;)Lnet/minecraft/advancements/critereon/PlayerInteractTrigger$TriggerInstance; +MD: net/minecraft/advancements/critereon/PlayerInteractTrigger/m_7295_ ()Lnet/minecraft/resources/ResourceLocation; net/minecraft/advancements/critereon/PlayerInteractTrigger/getId ()Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/advancements/critereon/PlayerInteractTrigger$TriggerInstance/ (Lnet/minecraft/advancements/critereon/ContextAwarePredicate;Lnet/minecraft/advancements/critereon/ItemPredicate;Lnet/minecraft/advancements/critereon/ContextAwarePredicate;)V net/minecraft/advancements/critereon/PlayerInteractTrigger$TriggerInstance/ (Lnet/minecraft/advancements/critereon/ContextAwarePredicate;Lnet/minecraft/advancements/critereon/ItemPredicate;Lnet/minecraft/advancements/critereon/ContextAwarePredicate;)V +MD: net/minecraft/advancements/critereon/PlayerInteractTrigger$TriggerInstance/m_285812_ (Lnet/minecraft/advancements/critereon/ItemPredicate$Builder;Lnet/minecraft/advancements/critereon/ContextAwarePredicate;)Lnet/minecraft/advancements/critereon/PlayerInteractTrigger$TriggerInstance; net/minecraft/advancements/critereon/PlayerInteractTrigger$TriggerInstance/itemUsedOnEntity (Lnet/minecraft/advancements/critereon/ItemPredicate$Builder;Lnet/minecraft/advancements/critereon/ContextAwarePredicate;)Lnet/minecraft/advancements/critereon/PlayerInteractTrigger$TriggerInstance; +MD: net/minecraft/advancements/critereon/PlayerInteractTrigger$TriggerInstance/m_285836_ (Lnet/minecraft/advancements/critereon/ContextAwarePredicate;Lnet/minecraft/advancements/critereon/ItemPredicate$Builder;Lnet/minecraft/advancements/critereon/ContextAwarePredicate;)Lnet/minecraft/advancements/critereon/PlayerInteractTrigger$TriggerInstance; net/minecraft/advancements/critereon/PlayerInteractTrigger$TriggerInstance/itemUsedOnEntity (Lnet/minecraft/advancements/critereon/ContextAwarePredicate;Lnet/minecraft/advancements/critereon/ItemPredicate$Builder;Lnet/minecraft/advancements/critereon/ContextAwarePredicate;)Lnet/minecraft/advancements/critereon/PlayerInteractTrigger$TriggerInstance; +MD: net/minecraft/advancements/critereon/PlayerInteractTrigger$TriggerInstance/m_61521_ (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/level/storage/loot/LootContext;)Z net/minecraft/advancements/critereon/PlayerInteractTrigger$TriggerInstance/matches (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/level/storage/loot/LootContext;)Z +MD: net/minecraft/advancements/critereon/PlayerInteractTrigger$TriggerInstance/m_7683_ (Lnet/minecraft/advancements/critereon/SerializationContext;)Lcom/google/gson/JsonObject; net/minecraft/advancements/critereon/PlayerInteractTrigger$TriggerInstance/serializeToJson (Lnet/minecraft/advancements/critereon/SerializationContext;)Lcom/google/gson/JsonObject; +MD: net/minecraft/advancements/critereon/PlayerPredicate/ (Lnet/minecraft/advancements/critereon/MinMaxBounds$Ints;Lnet/minecraft/world/level/GameType;Ljava/util/Map;Lit/unimi/dsi/fastutil/objects/Object2BooleanMap;Ljava/util/Map;Lnet/minecraft/advancements/critereon/EntityPredicate;)V net/minecraft/advancements/critereon/PlayerPredicate/ (Lnet/minecraft/advancements/critereon/MinMaxBounds$Ints;Lnet/minecraft/world/level/GameType;Ljava/util/Map;Lit/unimi/dsi/fastutil/objects/Object2BooleanMap;Ljava/util/Map;Lnet/minecraft/advancements/critereon/EntityPredicate;)V +MD: net/minecraft/advancements/critereon/PlayerPredicate/m_153246_ (Lnet/minecraft/world/entity/Entity;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/phys/Vec3;)Z net/minecraft/advancements/critereon/PlayerPredicate/matches (Lnet/minecraft/world/entity/Entity;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/phys/Vec3;)Z +MD: net/minecraft/advancements/critereon/PlayerPredicate/m_156764_ (Lnet/minecraft/world/entity/Entity;)Z net/minecraft/advancements/critereon/PlayerPredicate/lambda$matches$1 (Lnet/minecraft/world/entity/Entity;)Z +MD: net/minecraft/advancements/critereon/PlayerPredicate/m_213616_ ()Lcom/google/gson/JsonObject; net/minecraft/advancements/critereon/PlayerPredicate/serializeCustomData ()Lcom/google/gson/JsonObject; +MD: net/minecraft/advancements/critereon/PlayerPredicate/m_213836_ ()Lnet/minecraft/advancements/critereon/EntitySubPredicate$Type; net/minecraft/advancements/critereon/PlayerPredicate/type ()Lnet/minecraft/advancements/critereon/EntitySubPredicate$Type; +MD: net/minecraft/advancements/critereon/PlayerPredicate/m_222491_ (Lcom/google/gson/JsonObject;)Lnet/minecraft/advancements/critereon/PlayerPredicate; net/minecraft/advancements/critereon/PlayerPredicate/fromJson (Lcom/google/gson/JsonObject;)Lnet/minecraft/advancements/critereon/PlayerPredicate; +MD: net/minecraft/advancements/critereon/PlayerPredicate/m_222493_ (Lcom/google/gson/JsonObject;Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/advancements/critereon/PlayerPredicate$AdvancementPredicate;)V net/minecraft/advancements/critereon/PlayerPredicate/lambda$serializeCustomData$4 (Lcom/google/gson/JsonObject;Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/advancements/critereon/PlayerPredicate$AdvancementPredicate;)V +MD: net/minecraft/advancements/critereon/PlayerPredicate/m_222497_ (Lcom/google/gson/JsonObject;Lnet/minecraft/resources/ResourceLocation;Ljava/lang/Boolean;)V net/minecraft/advancements/critereon/PlayerPredicate/lambda$serializeCustomData$3 (Lcom/google/gson/JsonObject;Lnet/minecraft/resources/ResourceLocation;Ljava/lang/Boolean;)V +MD: net/minecraft/advancements/critereon/PlayerPredicate/m_257058_ (Lcom/google/gson/JsonArray;Lnet/minecraft/stats/Stat;Lnet/minecraft/advancements/critereon/MinMaxBounds$Ints;)V net/minecraft/advancements/critereon/PlayerPredicate/lambda$serializeCustomData$2 (Lcom/google/gson/JsonArray;Lnet/minecraft/stats/Stat;Lnet/minecraft/advancements/critereon/MinMaxBounds$Ints;)V +MD: net/minecraft/advancements/critereon/PlayerPredicate/m_62265_ (Lnet/minecraft/stats/Stat;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/advancements/critereon/PlayerPredicate/getStatValueId (Lnet/minecraft/stats/Stat;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/advancements/critereon/PlayerPredicate/m_62267_ (Lnet/minecraft/stats/StatType;Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/stats/Stat; net/minecraft/advancements/critereon/PlayerPredicate/getStat (Lnet/minecraft/stats/StatType;Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/stats/Stat; +MD: net/minecraft/advancements/critereon/PlayerPredicate/m_62286_ (Lit/unimi/dsi/fastutil/objects/Object2BooleanMap;Ljava/util/Map$Entry;)V net/minecraft/advancements/critereon/PlayerPredicate/lambda$advancementPredicateFromJson$0 (Lit/unimi/dsi/fastutil/objects/Object2BooleanMap;Ljava/util/Map$Entry;)V +MD: net/minecraft/advancements/critereon/PlayerPredicate/m_62289_ (Lcom/google/gson/JsonElement;)Lnet/minecraft/advancements/critereon/PlayerPredicate$AdvancementPredicate; net/minecraft/advancements/critereon/PlayerPredicate/advancementPredicateFromJson (Lcom/google/gson/JsonElement;)Lnet/minecraft/advancements/critereon/PlayerPredicate$AdvancementPredicate; +MD: net/minecraft/advancements/critereon/PlayerPredicate$AdvancementCriterionsPredicate/ (Lit/unimi/dsi/fastutil/objects/Object2BooleanMap;)V net/minecraft/advancements/critereon/PlayerPredicate$AdvancementCriterionsPredicate/ (Lit/unimi/dsi/fastutil/objects/Object2BooleanMap;)V +MD: net/minecraft/advancements/critereon/PlayerPredicate$AdvancementCriterionsPredicate/m_7943_ ()Lcom/google/gson/JsonElement; net/minecraft/advancements/critereon/PlayerPredicate$AdvancementCriterionsPredicate/toJson ()Lcom/google/gson/JsonElement; +MD: net/minecraft/advancements/critereon/PlayerPredicate$AdvancementCriterionsPredicate/test (Ljava/lang/Object;)Z net/minecraft/advancements/critereon/PlayerPredicate$AdvancementCriterionsPredicate/test (Ljava/lang/Object;)Z +MD: net/minecraft/advancements/critereon/PlayerPredicate$AdvancementCriterionsPredicate/test (Lnet/minecraft/advancements/AdvancementProgress;)Z net/minecraft/advancements/critereon/PlayerPredicate$AdvancementCriterionsPredicate/test (Lnet/minecraft/advancements/AdvancementProgress;)Z +MD: net/minecraft/advancements/critereon/PlayerPredicate$AdvancementDonePredicate/ (Z)V net/minecraft/advancements/critereon/PlayerPredicate$AdvancementDonePredicate/ (Z)V +MD: net/minecraft/advancements/critereon/PlayerPredicate$AdvancementDonePredicate/m_7943_ ()Lcom/google/gson/JsonElement; net/minecraft/advancements/critereon/PlayerPredicate$AdvancementDonePredicate/toJson ()Lcom/google/gson/JsonElement; +MD: net/minecraft/advancements/critereon/PlayerPredicate$AdvancementDonePredicate/test (Ljava/lang/Object;)Z net/minecraft/advancements/critereon/PlayerPredicate$AdvancementDonePredicate/test (Ljava/lang/Object;)Z +MD: net/minecraft/advancements/critereon/PlayerPredicate$AdvancementDonePredicate/test (Lnet/minecraft/advancements/AdvancementProgress;)Z net/minecraft/advancements/critereon/PlayerPredicate$AdvancementDonePredicate/test (Lnet/minecraft/advancements/AdvancementProgress;)Z +MD: net/minecraft/advancements/critereon/PlayerPredicate$AdvancementPredicate/m_7943_ ()Lcom/google/gson/JsonElement; net/minecraft/advancements/critereon/PlayerPredicate$AdvancementPredicate/toJson ()Lcom/google/gson/JsonElement; +MD: net/minecraft/advancements/critereon/PlayerPredicate$Builder/ ()V net/minecraft/advancements/critereon/PlayerPredicate$Builder/ ()V +MD: net/minecraft/advancements/critereon/PlayerPredicate$Builder/m_156767_ ()Lnet/minecraft/advancements/critereon/PlayerPredicate$Builder; net/minecraft/advancements/critereon/PlayerPredicate$Builder/player ()Lnet/minecraft/advancements/critereon/PlayerPredicate$Builder; +MD: net/minecraft/advancements/critereon/PlayerPredicate$Builder/m_156768_ (Lnet/minecraft/stats/Stat;Lnet/minecraft/advancements/critereon/MinMaxBounds$Ints;)Lnet/minecraft/advancements/critereon/PlayerPredicate$Builder; net/minecraft/advancements/critereon/PlayerPredicate$Builder/addStat (Lnet/minecraft/stats/Stat;Lnet/minecraft/advancements/critereon/MinMaxBounds$Ints;)Lnet/minecraft/advancements/critereon/PlayerPredicate$Builder; +MD: net/minecraft/advancements/critereon/PlayerPredicate$Builder/m_156771_ (Lnet/minecraft/advancements/critereon/EntityPredicate;)Lnet/minecraft/advancements/critereon/PlayerPredicate$Builder; net/minecraft/advancements/critereon/PlayerPredicate$Builder/setLookingAt (Lnet/minecraft/advancements/critereon/EntityPredicate;)Lnet/minecraft/advancements/critereon/PlayerPredicate$Builder; +MD: net/minecraft/advancements/critereon/PlayerPredicate$Builder/m_156773_ (Lnet/minecraft/world/level/GameType;)Lnet/minecraft/advancements/critereon/PlayerPredicate$Builder; net/minecraft/advancements/critereon/PlayerPredicate$Builder/setGameType (Lnet/minecraft/world/level/GameType;)Lnet/minecraft/advancements/critereon/PlayerPredicate$Builder; +MD: net/minecraft/advancements/critereon/PlayerPredicate$Builder/m_156775_ (Lnet/minecraft/advancements/critereon/MinMaxBounds$Ints;)Lnet/minecraft/advancements/critereon/PlayerPredicate$Builder; net/minecraft/advancements/critereon/PlayerPredicate$Builder/setLevel (Lnet/minecraft/advancements/critereon/MinMaxBounds$Ints;)Lnet/minecraft/advancements/critereon/PlayerPredicate$Builder; +MD: net/minecraft/advancements/critereon/PlayerPredicate$Builder/m_156777_ (Lnet/minecraft/resources/ResourceLocation;Ljava/util/Map;)Lnet/minecraft/advancements/critereon/PlayerPredicate$Builder; net/minecraft/advancements/critereon/PlayerPredicate$Builder/checkAdvancementCriterions (Lnet/minecraft/resources/ResourceLocation;Ljava/util/Map;)Lnet/minecraft/advancements/critereon/PlayerPredicate$Builder; +MD: net/minecraft/advancements/critereon/PlayerPredicate$Builder/m_156780_ (Lnet/minecraft/resources/ResourceLocation;Z)Lnet/minecraft/advancements/critereon/PlayerPredicate$Builder; net/minecraft/advancements/critereon/PlayerPredicate$Builder/addRecipe (Lnet/minecraft/resources/ResourceLocation;Z)Lnet/minecraft/advancements/critereon/PlayerPredicate$Builder; +MD: net/minecraft/advancements/critereon/PlayerPredicate$Builder/m_156783_ (Lnet/minecraft/resources/ResourceLocation;Z)Lnet/minecraft/advancements/critereon/PlayerPredicate$Builder; net/minecraft/advancements/critereon/PlayerPredicate$Builder/checkAdvancementDone (Lnet/minecraft/resources/ResourceLocation;Z)Lnet/minecraft/advancements/critereon/PlayerPredicate$Builder; +MD: net/minecraft/advancements/critereon/PlayerPredicate$Builder/m_62313_ ()Lnet/minecraft/advancements/critereon/PlayerPredicate; net/minecraft/advancements/critereon/PlayerPredicate$Builder/build ()Lnet/minecraft/advancements/critereon/PlayerPredicate; +MD: net/minecraft/advancements/critereon/PlayerTrigger/ (Lnet/minecraft/resources/ResourceLocation;)V net/minecraft/advancements/critereon/PlayerTrigger/ (Lnet/minecraft/resources/ResourceLocation;)V +MD: net/minecraft/advancements/critereon/PlayerTrigger/m_222618_ (Lnet/minecraft/server/level/ServerPlayer;)V net/minecraft/advancements/critereon/PlayerTrigger/trigger (Lnet/minecraft/server/level/ServerPlayer;)V +MD: net/minecraft/advancements/critereon/PlayerTrigger/m_222624_ (Lnet/minecraft/advancements/critereon/PlayerTrigger$TriggerInstance;)Z net/minecraft/advancements/critereon/PlayerTrigger/lambda$trigger$0 (Lnet/minecraft/advancements/critereon/PlayerTrigger$TriggerInstance;)Z +MD: net/minecraft/advancements/critereon/PlayerTrigger/m_7214_ (Lcom/google/gson/JsonObject;Lnet/minecraft/advancements/critereon/ContextAwarePredicate;Lnet/minecraft/advancements/critereon/DeserializationContext;)Lnet/minecraft/advancements/critereon/AbstractCriterionTriggerInstance; net/minecraft/advancements/critereon/PlayerTrigger/createInstance (Lcom/google/gson/JsonObject;Lnet/minecraft/advancements/critereon/ContextAwarePredicate;Lnet/minecraft/advancements/critereon/DeserializationContext;)Lnet/minecraft/advancements/critereon/AbstractCriterionTriggerInstance; +MD: net/minecraft/advancements/critereon/PlayerTrigger/m_7214_ (Lcom/google/gson/JsonObject;Lnet/minecraft/advancements/critereon/ContextAwarePredicate;Lnet/minecraft/advancements/critereon/DeserializationContext;)Lnet/minecraft/advancements/critereon/PlayerTrigger$TriggerInstance; net/minecraft/advancements/critereon/PlayerTrigger/createInstance (Lcom/google/gson/JsonObject;Lnet/minecraft/advancements/critereon/ContextAwarePredicate;Lnet/minecraft/advancements/critereon/DeserializationContext;)Lnet/minecraft/advancements/critereon/PlayerTrigger$TriggerInstance; +MD: net/minecraft/advancements/critereon/PlayerTrigger/m_7295_ ()Lnet/minecraft/resources/ResourceLocation; net/minecraft/advancements/critereon/PlayerTrigger/getId ()Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/advancements/critereon/PlayerTrigger$TriggerInstance/ (Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/advancements/critereon/ContextAwarePredicate;)V net/minecraft/advancements/critereon/PlayerTrigger$TriggerInstance/ (Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/advancements/critereon/ContextAwarePredicate;)V +MD: net/minecraft/advancements/critereon/PlayerTrigger$TriggerInstance/m_222633_ (Lnet/minecraft/advancements/critereon/EntityPredicate;)Lnet/minecraft/advancements/critereon/PlayerTrigger$TriggerInstance; net/minecraft/advancements/critereon/PlayerTrigger$TriggerInstance/located (Lnet/minecraft/advancements/critereon/EntityPredicate;)Lnet/minecraft/advancements/critereon/PlayerTrigger$TriggerInstance; +MD: net/minecraft/advancements/critereon/PlayerTrigger$TriggerInstance/m_222635_ (Lnet/minecraft/advancements/critereon/LocationPredicate;)Lnet/minecraft/advancements/critereon/PlayerTrigger$TriggerInstance; net/minecraft/advancements/critereon/PlayerTrigger$TriggerInstance/located (Lnet/minecraft/advancements/critereon/LocationPredicate;)Lnet/minecraft/advancements/critereon/PlayerTrigger$TriggerInstance; +MD: net/minecraft/advancements/critereon/PlayerTrigger$TriggerInstance/m_222637_ (Lnet/minecraft/world/level/block/Block;Lnet/minecraft/world/item/Item;)Lnet/minecraft/advancements/critereon/PlayerTrigger$TriggerInstance; net/minecraft/advancements/critereon/PlayerTrigger$TriggerInstance/walkOnBlockWithEquipment (Lnet/minecraft/world/level/block/Block;Lnet/minecraft/world/item/Item;)Lnet/minecraft/advancements/critereon/PlayerTrigger$TriggerInstance; +MD: net/minecraft/advancements/critereon/PlayerTrigger$TriggerInstance/m_222640_ ()Lnet/minecraft/advancements/critereon/PlayerTrigger$TriggerInstance; net/minecraft/advancements/critereon/PlayerTrigger$TriggerInstance/sleptInBed ()Lnet/minecraft/advancements/critereon/PlayerTrigger$TriggerInstance; +MD: net/minecraft/advancements/critereon/PlayerTrigger$TriggerInstance/m_222641_ ()Lnet/minecraft/advancements/critereon/PlayerTrigger$TriggerInstance; net/minecraft/advancements/critereon/PlayerTrigger$TriggerInstance/raidWon ()Lnet/minecraft/advancements/critereon/PlayerTrigger$TriggerInstance; +MD: net/minecraft/advancements/critereon/PlayerTrigger$TriggerInstance/m_222642_ ()Lnet/minecraft/advancements/critereon/PlayerTrigger$TriggerInstance; net/minecraft/advancements/critereon/PlayerTrigger$TriggerInstance/avoidVibration ()Lnet/minecraft/advancements/critereon/PlayerTrigger$TriggerInstance; +MD: net/minecraft/advancements/critereon/PlayerTrigger$TriggerInstance/m_272050_ ()Lnet/minecraft/advancements/critereon/PlayerTrigger$TriggerInstance; net/minecraft/advancements/critereon/PlayerTrigger$TriggerInstance/tick ()Lnet/minecraft/advancements/critereon/PlayerTrigger$TriggerInstance; +MD: net/minecraft/advancements/critereon/RecipeCraftedTrigger/ ()V net/minecraft/advancements/critereon/RecipeCraftedTrigger/ ()V +MD: net/minecraft/advancements/critereon/RecipeCraftedTrigger/ ()V net/minecraft/advancements/critereon/RecipeCraftedTrigger/ ()V +MD: net/minecraft/advancements/critereon/RecipeCraftedTrigger/m_280436_ (Lnet/minecraft/resources/ResourceLocation;Ljava/util/List;Lnet/minecraft/advancements/critereon/RecipeCraftedTrigger$TriggerInstance;)Z net/minecraft/advancements/critereon/RecipeCraftedTrigger/lambda$trigger$0 (Lnet/minecraft/resources/ResourceLocation;Ljava/util/List;Lnet/minecraft/advancements/critereon/RecipeCraftedTrigger$TriggerInstance;)Z +MD: net/minecraft/advancements/critereon/RecipeCraftedTrigger/m_280437_ (Lnet/minecraft/server/level/ServerPlayer;Lnet/minecraft/resources/ResourceLocation;Ljava/util/List;)V net/minecraft/advancements/critereon/RecipeCraftedTrigger/trigger (Lnet/minecraft/server/level/ServerPlayer;Lnet/minecraft/resources/ResourceLocation;Ljava/util/List;)V +MD: net/minecraft/advancements/critereon/RecipeCraftedTrigger/m_7214_ (Lcom/google/gson/JsonObject;Lnet/minecraft/advancements/critereon/ContextAwarePredicate;Lnet/minecraft/advancements/critereon/DeserializationContext;)Lnet/minecraft/advancements/critereon/RecipeCraftedTrigger$TriggerInstance; net/minecraft/advancements/critereon/RecipeCraftedTrigger/createInstance (Lcom/google/gson/JsonObject;Lnet/minecraft/advancements/critereon/ContextAwarePredicate;Lnet/minecraft/advancements/critereon/DeserializationContext;)Lnet/minecraft/advancements/critereon/RecipeCraftedTrigger$TriggerInstance; +MD: net/minecraft/advancements/critereon/RecipeCraftedTrigger/m_7214_ (Lcom/google/gson/JsonObject;Lnet/minecraft/advancements/critereon/ContextAwarePredicate;Lnet/minecraft/advancements/critereon/DeserializationContext;)Lnet/minecraft/advancements/critereon/AbstractCriterionTriggerInstance; net/minecraft/advancements/critereon/RecipeCraftedTrigger/createInstance (Lcom/google/gson/JsonObject;Lnet/minecraft/advancements/critereon/ContextAwarePredicate;Lnet/minecraft/advancements/critereon/DeserializationContext;)Lnet/minecraft/advancements/critereon/AbstractCriterionTriggerInstance; +MD: net/minecraft/advancements/critereon/RecipeCraftedTrigger/m_7295_ ()Lnet/minecraft/resources/ResourceLocation; net/minecraft/advancements/critereon/RecipeCraftedTrigger/getId ()Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/advancements/critereon/RecipeCraftedTrigger$TriggerInstance/ (Lnet/minecraft/advancements/critereon/ContextAwarePredicate;Lnet/minecraft/resources/ResourceLocation;Ljava/util/List;)V net/minecraft/advancements/critereon/RecipeCraftedTrigger$TriggerInstance/ (Lnet/minecraft/advancements/critereon/ContextAwarePredicate;Lnet/minecraft/resources/ResourceLocation;Ljava/util/List;)V +MD: net/minecraft/advancements/critereon/RecipeCraftedTrigger$TriggerInstance/m_280013_ (Lnet/minecraft/resources/ResourceLocation;Ljava/util/List;)Z net/minecraft/advancements/critereon/RecipeCraftedTrigger$TriggerInstance/matches (Lnet/minecraft/resources/ResourceLocation;Ljava/util/List;)Z +MD: net/minecraft/advancements/critereon/RecipeCraftedTrigger$TriggerInstance/m_280097_ (Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/advancements/critereon/RecipeCraftedTrigger$TriggerInstance; net/minecraft/advancements/critereon/RecipeCraftedTrigger$TriggerInstance/craftedItem (Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/advancements/critereon/RecipeCraftedTrigger$TriggerInstance; +MD: net/minecraft/advancements/critereon/RecipeCraftedTrigger$TriggerInstance/m_280477_ (Lnet/minecraft/resources/ResourceLocation;Ljava/util/List;)Lnet/minecraft/advancements/critereon/RecipeCraftedTrigger$TriggerInstance; net/minecraft/advancements/critereon/RecipeCraftedTrigger$TriggerInstance/craftedItem (Lnet/minecraft/resources/ResourceLocation;Ljava/util/List;)Lnet/minecraft/advancements/critereon/RecipeCraftedTrigger$TriggerInstance; +MD: net/minecraft/advancements/critereon/RecipeCraftedTrigger$TriggerInstance/m_7683_ (Lnet/minecraft/advancements/critereon/SerializationContext;)Lcom/google/gson/JsonObject; net/minecraft/advancements/critereon/RecipeCraftedTrigger$TriggerInstance/serializeToJson (Lnet/minecraft/advancements/critereon/SerializationContext;)Lcom/google/gson/JsonObject; +MD: net/minecraft/advancements/critereon/RecipeUnlockedTrigger/ ()V net/minecraft/advancements/critereon/RecipeUnlockedTrigger/ ()V +MD: net/minecraft/advancements/critereon/RecipeUnlockedTrigger/ ()V net/minecraft/advancements/critereon/RecipeUnlockedTrigger/ ()V +MD: net/minecraft/advancements/critereon/RecipeUnlockedTrigger/m_63718_ (Lnet/minecraft/server/level/ServerPlayer;Lnet/minecraft/world/item/crafting/Recipe;)V net/minecraft/advancements/critereon/RecipeUnlockedTrigger/trigger (Lnet/minecraft/server/level/ServerPlayer;Lnet/minecraft/world/item/crafting/Recipe;)V +MD: net/minecraft/advancements/critereon/RecipeUnlockedTrigger/m_63721_ (Lnet/minecraft/world/item/crafting/Recipe;Lnet/minecraft/advancements/critereon/RecipeUnlockedTrigger$TriggerInstance;)Z net/minecraft/advancements/critereon/RecipeUnlockedTrigger/lambda$trigger$0 (Lnet/minecraft/world/item/crafting/Recipe;Lnet/minecraft/advancements/critereon/RecipeUnlockedTrigger$TriggerInstance;)Z +MD: net/minecraft/advancements/critereon/RecipeUnlockedTrigger/m_63728_ (Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/advancements/critereon/RecipeUnlockedTrigger$TriggerInstance; net/minecraft/advancements/critereon/RecipeUnlockedTrigger/unlocked (Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/advancements/critereon/RecipeUnlockedTrigger$TriggerInstance; +MD: net/minecraft/advancements/critereon/RecipeUnlockedTrigger/m_7214_ (Lcom/google/gson/JsonObject;Lnet/minecraft/advancements/critereon/ContextAwarePredicate;Lnet/minecraft/advancements/critereon/DeserializationContext;)Lnet/minecraft/advancements/critereon/RecipeUnlockedTrigger$TriggerInstance; net/minecraft/advancements/critereon/RecipeUnlockedTrigger/createInstance (Lcom/google/gson/JsonObject;Lnet/minecraft/advancements/critereon/ContextAwarePredicate;Lnet/minecraft/advancements/critereon/DeserializationContext;)Lnet/minecraft/advancements/critereon/RecipeUnlockedTrigger$TriggerInstance; +MD: net/minecraft/advancements/critereon/RecipeUnlockedTrigger/m_7214_ (Lcom/google/gson/JsonObject;Lnet/minecraft/advancements/critereon/ContextAwarePredicate;Lnet/minecraft/advancements/critereon/DeserializationContext;)Lnet/minecraft/advancements/critereon/AbstractCriterionTriggerInstance; net/minecraft/advancements/critereon/RecipeUnlockedTrigger/createInstance (Lcom/google/gson/JsonObject;Lnet/minecraft/advancements/critereon/ContextAwarePredicate;Lnet/minecraft/advancements/critereon/DeserializationContext;)Lnet/minecraft/advancements/critereon/AbstractCriterionTriggerInstance; +MD: net/minecraft/advancements/critereon/RecipeUnlockedTrigger/m_7295_ ()Lnet/minecraft/resources/ResourceLocation; net/minecraft/advancements/critereon/RecipeUnlockedTrigger/getId ()Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/advancements/critereon/RecipeUnlockedTrigger$TriggerInstance/ (Lnet/minecraft/advancements/critereon/ContextAwarePredicate;Lnet/minecraft/resources/ResourceLocation;)V net/minecraft/advancements/critereon/RecipeUnlockedTrigger$TriggerInstance/ (Lnet/minecraft/advancements/critereon/ContextAwarePredicate;Lnet/minecraft/resources/ResourceLocation;)V +MD: net/minecraft/advancements/critereon/RecipeUnlockedTrigger$TriggerInstance/m_63739_ (Lnet/minecraft/world/item/crafting/Recipe;)Z net/minecraft/advancements/critereon/RecipeUnlockedTrigger$TriggerInstance/matches (Lnet/minecraft/world/item/crafting/Recipe;)Z +MD: net/minecraft/advancements/critereon/RecipeUnlockedTrigger$TriggerInstance/m_7683_ (Lnet/minecraft/advancements/critereon/SerializationContext;)Lcom/google/gson/JsonObject; net/minecraft/advancements/critereon/RecipeUnlockedTrigger$TriggerInstance/serializeToJson (Lnet/minecraft/advancements/critereon/SerializationContext;)Lcom/google/gson/JsonObject; +MD: net/minecraft/advancements/critereon/SerializationContext/ ()V net/minecraft/advancements/critereon/SerializationContext/ ()V +MD: net/minecraft/advancements/critereon/SerializationContext/ ()V net/minecraft/advancements/critereon/SerializationContext/ ()V +MD: net/minecraft/advancements/critereon/SerializationContext/m_64772_ ([Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;)Lcom/google/gson/JsonElement; net/minecraft/advancements/critereon/SerializationContext/serializeConditions ([Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;)Lcom/google/gson/JsonElement; +MD: net/minecraft/advancements/critereon/ShotCrossbowTrigger/ ()V net/minecraft/advancements/critereon/ShotCrossbowTrigger/ ()V +MD: net/minecraft/advancements/critereon/ShotCrossbowTrigger/ ()V net/minecraft/advancements/critereon/ShotCrossbowTrigger/ ()V +MD: net/minecraft/advancements/critereon/ShotCrossbowTrigger/m_65462_ (Lnet/minecraft/server/level/ServerPlayer;Lnet/minecraft/world/item/ItemStack;)V net/minecraft/advancements/critereon/ShotCrossbowTrigger/trigger (Lnet/minecraft/server/level/ServerPlayer;Lnet/minecraft/world/item/ItemStack;)V +MD: net/minecraft/advancements/critereon/ShotCrossbowTrigger/m_65465_ (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/advancements/critereon/ShotCrossbowTrigger$TriggerInstance;)Z net/minecraft/advancements/critereon/ShotCrossbowTrigger/lambda$trigger$0 (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/advancements/critereon/ShotCrossbowTrigger$TriggerInstance;)Z +MD: net/minecraft/advancements/critereon/ShotCrossbowTrigger/m_7214_ (Lcom/google/gson/JsonObject;Lnet/minecraft/advancements/critereon/ContextAwarePredicate;Lnet/minecraft/advancements/critereon/DeserializationContext;)Lnet/minecraft/advancements/critereon/AbstractCriterionTriggerInstance; net/minecraft/advancements/critereon/ShotCrossbowTrigger/createInstance (Lcom/google/gson/JsonObject;Lnet/minecraft/advancements/critereon/ContextAwarePredicate;Lnet/minecraft/advancements/critereon/DeserializationContext;)Lnet/minecraft/advancements/critereon/AbstractCriterionTriggerInstance; +MD: net/minecraft/advancements/critereon/ShotCrossbowTrigger/m_7214_ (Lcom/google/gson/JsonObject;Lnet/minecraft/advancements/critereon/ContextAwarePredicate;Lnet/minecraft/advancements/critereon/DeserializationContext;)Lnet/minecraft/advancements/critereon/ShotCrossbowTrigger$TriggerInstance; net/minecraft/advancements/critereon/ShotCrossbowTrigger/createInstance (Lcom/google/gson/JsonObject;Lnet/minecraft/advancements/critereon/ContextAwarePredicate;Lnet/minecraft/advancements/critereon/DeserializationContext;)Lnet/minecraft/advancements/critereon/ShotCrossbowTrigger$TriggerInstance; +MD: net/minecraft/advancements/critereon/ShotCrossbowTrigger/m_7295_ ()Lnet/minecraft/resources/ResourceLocation; net/minecraft/advancements/critereon/ShotCrossbowTrigger/getId ()Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/advancements/critereon/ShotCrossbowTrigger$TriggerInstance/ (Lnet/minecraft/advancements/critereon/ContextAwarePredicate;Lnet/minecraft/advancements/critereon/ItemPredicate;)V net/minecraft/advancements/critereon/ShotCrossbowTrigger$TriggerInstance/ (Lnet/minecraft/advancements/critereon/ContextAwarePredicate;Lnet/minecraft/advancements/critereon/ItemPredicate;)V +MD: net/minecraft/advancements/critereon/ShotCrossbowTrigger$TriggerInstance/m_159431_ (Lnet/minecraft/advancements/critereon/ItemPredicate;)Lnet/minecraft/advancements/critereon/ShotCrossbowTrigger$TriggerInstance; net/minecraft/advancements/critereon/ShotCrossbowTrigger$TriggerInstance/shotCrossbow (Lnet/minecraft/advancements/critereon/ItemPredicate;)Lnet/minecraft/advancements/critereon/ShotCrossbowTrigger$TriggerInstance; +MD: net/minecraft/advancements/critereon/ShotCrossbowTrigger$TriggerInstance/m_65481_ (Lnet/minecraft/world/item/ItemStack;)Z net/minecraft/advancements/critereon/ShotCrossbowTrigger$TriggerInstance/matches (Lnet/minecraft/world/item/ItemStack;)Z +MD: net/minecraft/advancements/critereon/ShotCrossbowTrigger$TriggerInstance/m_65483_ (Lnet/minecraft/world/level/ItemLike;)Lnet/minecraft/advancements/critereon/ShotCrossbowTrigger$TriggerInstance; net/minecraft/advancements/critereon/ShotCrossbowTrigger$TriggerInstance/shotCrossbow (Lnet/minecraft/world/level/ItemLike;)Lnet/minecraft/advancements/critereon/ShotCrossbowTrigger$TriggerInstance; +MD: net/minecraft/advancements/critereon/ShotCrossbowTrigger$TriggerInstance/m_7683_ (Lnet/minecraft/advancements/critereon/SerializationContext;)Lcom/google/gson/JsonObject; net/minecraft/advancements/critereon/ShotCrossbowTrigger$TriggerInstance/serializeToJson (Lnet/minecraft/advancements/critereon/SerializationContext;)Lcom/google/gson/JsonObject; +MD: net/minecraft/advancements/critereon/SimpleCriterionTrigger/ ()V net/minecraft/advancements/critereon/SimpleCriterionTrigger/ ()V +MD: net/minecraft/advancements/critereon/SimpleCriterionTrigger/m_5656_ (Lnet/minecraft/server/PlayerAdvancements;)V net/minecraft/advancements/critereon/SimpleCriterionTrigger/removePlayerListeners (Lnet/minecraft/server/PlayerAdvancements;)V +MD: net/minecraft/advancements/critereon/SimpleCriterionTrigger/m_5868_ (Lcom/google/gson/JsonObject;Lnet/minecraft/advancements/critereon/DeserializationContext;)Lnet/minecraft/advancements/CriterionTriggerInstance; net/minecraft/advancements/critereon/SimpleCriterionTrigger/createInstance (Lcom/google/gson/JsonObject;Lnet/minecraft/advancements/critereon/DeserializationContext;)Lnet/minecraft/advancements/CriterionTriggerInstance; +MD: net/minecraft/advancements/critereon/SimpleCriterionTrigger/m_5868_ (Lcom/google/gson/JsonObject;Lnet/minecraft/advancements/critereon/DeserializationContext;)Lnet/minecraft/advancements/critereon/AbstractCriterionTriggerInstance; net/minecraft/advancements/critereon/SimpleCriterionTrigger/createInstance (Lcom/google/gson/JsonObject;Lnet/minecraft/advancements/critereon/DeserializationContext;)Lnet/minecraft/advancements/critereon/AbstractCriterionTriggerInstance; +MD: net/minecraft/advancements/critereon/SimpleCriterionTrigger/m_6467_ (Lnet/minecraft/server/PlayerAdvancements;Lnet/minecraft/advancements/CriterionTrigger$Listener;)V net/minecraft/advancements/critereon/SimpleCriterionTrigger/addPlayerListener (Lnet/minecraft/server/PlayerAdvancements;Lnet/minecraft/advancements/CriterionTrigger$Listener;)V +MD: net/minecraft/advancements/critereon/SimpleCriterionTrigger/m_6468_ (Lnet/minecraft/server/PlayerAdvancements;Lnet/minecraft/advancements/CriterionTrigger$Listener;)V net/minecraft/advancements/critereon/SimpleCriterionTrigger/removePlayerListener (Lnet/minecraft/server/PlayerAdvancements;Lnet/minecraft/advancements/CriterionTrigger$Listener;)V +MD: net/minecraft/advancements/critereon/SimpleCriterionTrigger/m_66234_ (Lnet/minecraft/server/level/ServerPlayer;Ljava/util/function/Predicate;)V net/minecraft/advancements/critereon/SimpleCriterionTrigger/trigger (Lnet/minecraft/server/level/ServerPlayer;Ljava/util/function/Predicate;)V +MD: net/minecraft/advancements/critereon/SimpleCriterionTrigger/m_66251_ (Lnet/minecraft/server/PlayerAdvancements;)Ljava/util/Set; net/minecraft/advancements/critereon/SimpleCriterionTrigger/lambda$addPlayerListener$0 (Lnet/minecraft/server/PlayerAdvancements;)Ljava/util/Set; +MD: net/minecraft/advancements/critereon/SimpleCriterionTrigger/m_7214_ (Lcom/google/gson/JsonObject;Lnet/minecraft/advancements/critereon/ContextAwarePredicate;Lnet/minecraft/advancements/critereon/DeserializationContext;)Lnet/minecraft/advancements/critereon/AbstractCriterionTriggerInstance; net/minecraft/advancements/critereon/SimpleCriterionTrigger/createInstance (Lcom/google/gson/JsonObject;Lnet/minecraft/advancements/critereon/ContextAwarePredicate;Lnet/minecraft/advancements/critereon/DeserializationContext;)Lnet/minecraft/advancements/critereon/AbstractCriterionTriggerInstance; +MD: net/minecraft/advancements/critereon/SlideDownBlockTrigger/ ()V net/minecraft/advancements/critereon/SlideDownBlockTrigger/ ()V +MD: net/minecraft/advancements/critereon/SlideDownBlockTrigger/ ()V net/minecraft/advancements/critereon/SlideDownBlockTrigger/ ()V +MD: net/minecraft/advancements/critereon/SlideDownBlockTrigger/m_66978_ (Lnet/minecraft/server/level/ServerPlayer;Lnet/minecraft/world/level/block/state/BlockState;)V net/minecraft/advancements/critereon/SlideDownBlockTrigger/trigger (Lnet/minecraft/server/level/ServerPlayer;Lnet/minecraft/world/level/block/state/BlockState;)V +MD: net/minecraft/advancements/critereon/SlideDownBlockTrigger/m_66981_ (Lnet/minecraft/world/level/block/Block;Ljava/lang/String;)V net/minecraft/advancements/critereon/SlideDownBlockTrigger/lambda$createInstance$0 (Lnet/minecraft/world/level/block/Block;Ljava/lang/String;)V +MD: net/minecraft/advancements/critereon/SlideDownBlockTrigger/m_66984_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/advancements/critereon/SlideDownBlockTrigger$TriggerInstance;)Z net/minecraft/advancements/critereon/SlideDownBlockTrigger/lambda$trigger$2 (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/advancements/critereon/SlideDownBlockTrigger$TriggerInstance;)Z +MD: net/minecraft/advancements/critereon/SlideDownBlockTrigger/m_66987_ (Lcom/google/gson/JsonObject;)Lnet/minecraft/world/level/block/Block; net/minecraft/advancements/critereon/SlideDownBlockTrigger/deserializeBlock (Lcom/google/gson/JsonObject;)Lnet/minecraft/world/level/block/Block; +MD: net/minecraft/advancements/critereon/SlideDownBlockTrigger/m_66993_ (Lnet/minecraft/resources/ResourceLocation;)Lcom/google/gson/JsonSyntaxException; net/minecraft/advancements/critereon/SlideDownBlockTrigger/lambda$deserializeBlock$1 (Lnet/minecraft/resources/ResourceLocation;)Lcom/google/gson/JsonSyntaxException; +MD: net/minecraft/advancements/critereon/SlideDownBlockTrigger/m_7214_ (Lcom/google/gson/JsonObject;Lnet/minecraft/advancements/critereon/ContextAwarePredicate;Lnet/minecraft/advancements/critereon/DeserializationContext;)Lnet/minecraft/advancements/critereon/SlideDownBlockTrigger$TriggerInstance; net/minecraft/advancements/critereon/SlideDownBlockTrigger/createInstance (Lcom/google/gson/JsonObject;Lnet/minecraft/advancements/critereon/ContextAwarePredicate;Lnet/minecraft/advancements/critereon/DeserializationContext;)Lnet/minecraft/advancements/critereon/SlideDownBlockTrigger$TriggerInstance; +MD: net/minecraft/advancements/critereon/SlideDownBlockTrigger/m_7214_ (Lcom/google/gson/JsonObject;Lnet/minecraft/advancements/critereon/ContextAwarePredicate;Lnet/minecraft/advancements/critereon/DeserializationContext;)Lnet/minecraft/advancements/critereon/AbstractCriterionTriggerInstance; net/minecraft/advancements/critereon/SlideDownBlockTrigger/createInstance (Lcom/google/gson/JsonObject;Lnet/minecraft/advancements/critereon/ContextAwarePredicate;Lnet/minecraft/advancements/critereon/DeserializationContext;)Lnet/minecraft/advancements/critereon/AbstractCriterionTriggerInstance; +MD: net/minecraft/advancements/critereon/SlideDownBlockTrigger/m_7295_ ()Lnet/minecraft/resources/ResourceLocation; net/minecraft/advancements/critereon/SlideDownBlockTrigger/getId ()Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/advancements/critereon/SlideDownBlockTrigger$TriggerInstance/ (Lnet/minecraft/advancements/critereon/ContextAwarePredicate;Lnet/minecraft/world/level/block/Block;Lnet/minecraft/advancements/critereon/StatePropertiesPredicate;)V net/minecraft/advancements/critereon/SlideDownBlockTrigger$TriggerInstance/ (Lnet/minecraft/advancements/critereon/ContextAwarePredicate;Lnet/minecraft/world/level/block/Block;Lnet/minecraft/advancements/critereon/StatePropertiesPredicate;)V +MD: net/minecraft/advancements/critereon/SlideDownBlockTrigger$TriggerInstance/m_67006_ (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/advancements/critereon/SlideDownBlockTrigger$TriggerInstance; net/minecraft/advancements/critereon/SlideDownBlockTrigger$TriggerInstance/slidesDownBlock (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/advancements/critereon/SlideDownBlockTrigger$TriggerInstance; +MD: net/minecraft/advancements/critereon/SlideDownBlockTrigger$TriggerInstance/m_67008_ (Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/advancements/critereon/SlideDownBlockTrigger$TriggerInstance/matches (Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/advancements/critereon/SlideDownBlockTrigger$TriggerInstance/m_7683_ (Lnet/minecraft/advancements/critereon/SerializationContext;)Lcom/google/gson/JsonObject; net/minecraft/advancements/critereon/SlideDownBlockTrigger$TriggerInstance/serializeToJson (Lnet/minecraft/advancements/critereon/SerializationContext;)Lcom/google/gson/JsonObject; +MD: net/minecraft/advancements/critereon/SlimePredicate/ (Lnet/minecraft/advancements/critereon/MinMaxBounds$Ints;)V net/minecraft/advancements/critereon/SlimePredicate/ (Lnet/minecraft/advancements/critereon/MinMaxBounds$Ints;)V +MD: net/minecraft/advancements/critereon/SlimePredicate/m_153246_ (Lnet/minecraft/world/entity/Entity;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/phys/Vec3;)Z net/minecraft/advancements/critereon/SlimePredicate/matches (Lnet/minecraft/world/entity/Entity;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/phys/Vec3;)Z +MD: net/minecraft/advancements/critereon/SlimePredicate/m_213616_ ()Lcom/google/gson/JsonObject; net/minecraft/advancements/critereon/SlimePredicate/serializeCustomData ()Lcom/google/gson/JsonObject; +MD: net/minecraft/advancements/critereon/SlimePredicate/m_213836_ ()Lnet/minecraft/advancements/critereon/EntitySubPredicate$Type; net/minecraft/advancements/critereon/SlimePredicate/type ()Lnet/minecraft/advancements/critereon/EntitySubPredicate$Type; +MD: net/minecraft/advancements/critereon/SlimePredicate/m_223426_ (Lnet/minecraft/advancements/critereon/MinMaxBounds$Ints;)Lnet/minecraft/advancements/critereon/SlimePredicate; net/minecraft/advancements/critereon/SlimePredicate/sized (Lnet/minecraft/advancements/critereon/MinMaxBounds$Ints;)Lnet/minecraft/advancements/critereon/SlimePredicate; +MD: net/minecraft/advancements/critereon/SlimePredicate/m_223428_ (Lcom/google/gson/JsonObject;)Lnet/minecraft/advancements/critereon/SlimePredicate; net/minecraft/advancements/critereon/SlimePredicate/fromJson (Lcom/google/gson/JsonObject;)Lnet/minecraft/advancements/critereon/SlimePredicate; +MD: net/minecraft/advancements/critereon/StartRidingTrigger/ ()V net/minecraft/advancements/critereon/StartRidingTrigger/ ()V +MD: net/minecraft/advancements/critereon/StartRidingTrigger/ ()V net/minecraft/advancements/critereon/StartRidingTrigger/ ()V +MD: net/minecraft/advancements/critereon/StartRidingTrigger/m_160387_ (Lnet/minecraft/server/level/ServerPlayer;)V net/minecraft/advancements/critereon/StartRidingTrigger/trigger (Lnet/minecraft/server/level/ServerPlayer;)V +MD: net/minecraft/advancements/critereon/StartRidingTrigger/m_160393_ (Lnet/minecraft/advancements/critereon/StartRidingTrigger$TriggerInstance;)Z net/minecraft/advancements/critereon/StartRidingTrigger/lambda$trigger$0 (Lnet/minecraft/advancements/critereon/StartRidingTrigger$TriggerInstance;)Z +MD: net/minecraft/advancements/critereon/StartRidingTrigger/m_7214_ (Lcom/google/gson/JsonObject;Lnet/minecraft/advancements/critereon/ContextAwarePredicate;Lnet/minecraft/advancements/critereon/DeserializationContext;)Lnet/minecraft/advancements/critereon/StartRidingTrigger$TriggerInstance; net/minecraft/advancements/critereon/StartRidingTrigger/createInstance (Lcom/google/gson/JsonObject;Lnet/minecraft/advancements/critereon/ContextAwarePredicate;Lnet/minecraft/advancements/critereon/DeserializationContext;)Lnet/minecraft/advancements/critereon/StartRidingTrigger$TriggerInstance; +MD: net/minecraft/advancements/critereon/StartRidingTrigger/m_7214_ (Lcom/google/gson/JsonObject;Lnet/minecraft/advancements/critereon/ContextAwarePredicate;Lnet/minecraft/advancements/critereon/DeserializationContext;)Lnet/minecraft/advancements/critereon/AbstractCriterionTriggerInstance; net/minecraft/advancements/critereon/StartRidingTrigger/createInstance (Lcom/google/gson/JsonObject;Lnet/minecraft/advancements/critereon/ContextAwarePredicate;Lnet/minecraft/advancements/critereon/DeserializationContext;)Lnet/minecraft/advancements/critereon/AbstractCriterionTriggerInstance; +MD: net/minecraft/advancements/critereon/StartRidingTrigger/m_7295_ ()Lnet/minecraft/resources/ResourceLocation; net/minecraft/advancements/critereon/StartRidingTrigger/getId ()Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/advancements/critereon/StartRidingTrigger$TriggerInstance/ (Lnet/minecraft/advancements/critereon/ContextAwarePredicate;)V net/minecraft/advancements/critereon/StartRidingTrigger$TriggerInstance/ (Lnet/minecraft/advancements/critereon/ContextAwarePredicate;)V +MD: net/minecraft/advancements/critereon/StartRidingTrigger$TriggerInstance/m_160401_ (Lnet/minecraft/advancements/critereon/EntityPredicate$Builder;)Lnet/minecraft/advancements/critereon/StartRidingTrigger$TriggerInstance; net/minecraft/advancements/critereon/StartRidingTrigger$TriggerInstance/playerStartsRiding (Lnet/minecraft/advancements/critereon/EntityPredicate$Builder;)Lnet/minecraft/advancements/critereon/StartRidingTrigger$TriggerInstance; +MD: net/minecraft/advancements/critereon/StatePropertiesPredicate/ ()V net/minecraft/advancements/critereon/StatePropertiesPredicate/ ()V +MD: net/minecraft/advancements/critereon/StatePropertiesPredicate/ (Ljava/util/List;)V net/minecraft/advancements/critereon/StatePropertiesPredicate/ (Ljava/util/List;)V +MD: net/minecraft/advancements/critereon/StatePropertiesPredicate/m_67666_ ()Lcom/google/gson/JsonElement; net/minecraft/advancements/critereon/StatePropertiesPredicate/serializeToJson ()Lcom/google/gson/JsonElement; +MD: net/minecraft/advancements/critereon/StatePropertiesPredicate/m_67667_ (Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/advancements/critereon/StatePropertiesPredicate/matches (Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/advancements/critereon/StatePropertiesPredicate/m_67669_ (Lnet/minecraft/world/level/block/state/StateDefinition;Lnet/minecraft/world/level/block/state/StateHolder;)Z net/minecraft/advancements/critereon/StatePropertiesPredicate/matches (Lnet/minecraft/world/level/block/state/StateDefinition;Lnet/minecraft/world/level/block/state/StateHolder;)Z +MD: net/minecraft/advancements/critereon/StatePropertiesPredicate/m_67672_ (Lnet/minecraft/world/level/block/state/StateDefinition;Ljava/util/function/Consumer;)V net/minecraft/advancements/critereon/StatePropertiesPredicate/checkState (Lnet/minecraft/world/level/block/state/StateDefinition;Ljava/util/function/Consumer;)V +MD: net/minecraft/advancements/critereon/StatePropertiesPredicate/m_67675_ (Lnet/minecraft/world/level/block/state/StateDefinition;Ljava/util/function/Consumer;Lnet/minecraft/advancements/critereon/StatePropertiesPredicate$PropertyMatcher;)V net/minecraft/advancements/critereon/StatePropertiesPredicate/lambda$checkState$0 (Lnet/minecraft/world/level/block/state/StateDefinition;Ljava/util/function/Consumer;Lnet/minecraft/advancements/critereon/StatePropertiesPredicate$PropertyMatcher;)V +MD: net/minecraft/advancements/critereon/StatePropertiesPredicate/m_67679_ (Lcom/google/gson/JsonElement;)Lnet/minecraft/advancements/critereon/StatePropertiesPredicate; net/minecraft/advancements/critereon/StatePropertiesPredicate/fromJson (Lcom/google/gson/JsonElement;)Lnet/minecraft/advancements/critereon/StatePropertiesPredicate; +MD: net/minecraft/advancements/critereon/StatePropertiesPredicate/m_67681_ (Lcom/google/gson/JsonObject;Lnet/minecraft/advancements/critereon/StatePropertiesPredicate$PropertyMatcher;)V net/minecraft/advancements/critereon/StatePropertiesPredicate/lambda$serializeToJson$1 (Lcom/google/gson/JsonObject;Lnet/minecraft/advancements/critereon/StatePropertiesPredicate$PropertyMatcher;)V +MD: net/minecraft/advancements/critereon/StatePropertiesPredicate/m_67684_ (Lnet/minecraft/world/level/material/FluidState;)Z net/minecraft/advancements/critereon/StatePropertiesPredicate/matches (Lnet/minecraft/world/level/material/FluidState;)Z +MD: net/minecraft/advancements/critereon/StatePropertiesPredicate/m_67686_ (Ljava/lang/String;Lcom/google/gson/JsonElement;)Lnet/minecraft/advancements/critereon/StatePropertiesPredicate$PropertyMatcher; net/minecraft/advancements/critereon/StatePropertiesPredicate/fromJson (Ljava/lang/String;Lcom/google/gson/JsonElement;)Lnet/minecraft/advancements/critereon/StatePropertiesPredicate$PropertyMatcher; +MD: net/minecraft/advancements/critereon/StatePropertiesPredicate/m_67689_ (Lcom/google/gson/JsonElement;)Ljava/lang/String; net/minecraft/advancements/critereon/StatePropertiesPredicate/getStringOrNull (Lcom/google/gson/JsonElement;)Ljava/lang/String; +MD: net/minecraft/advancements/critereon/StatePropertiesPredicate$Builder/ ()V net/minecraft/advancements/critereon/StatePropertiesPredicate$Builder/ ()V +MD: net/minecraft/advancements/critereon/StatePropertiesPredicate$Builder/m_67693_ ()Lnet/minecraft/advancements/critereon/StatePropertiesPredicate$Builder; net/minecraft/advancements/critereon/StatePropertiesPredicate$Builder/properties ()Lnet/minecraft/advancements/critereon/StatePropertiesPredicate$Builder; +MD: net/minecraft/advancements/critereon/StatePropertiesPredicate$Builder/m_67694_ (Lnet/minecraft/world/level/block/state/properties/Property;I)Lnet/minecraft/advancements/critereon/StatePropertiesPredicate$Builder; net/minecraft/advancements/critereon/StatePropertiesPredicate$Builder/hasProperty (Lnet/minecraft/world/level/block/state/properties/Property;I)Lnet/minecraft/advancements/critereon/StatePropertiesPredicate$Builder; +MD: net/minecraft/advancements/critereon/StatePropertiesPredicate$Builder/m_67697_ (Lnet/minecraft/world/level/block/state/properties/Property;Ljava/lang/Comparable;)Lnet/minecraft/advancements/critereon/StatePropertiesPredicate$Builder; net/minecraft/advancements/critereon/StatePropertiesPredicate$Builder/hasProperty (Lnet/minecraft/world/level/block/state/properties/Property;Ljava/lang/Comparable;)Lnet/minecraft/advancements/critereon/StatePropertiesPredicate$Builder; +MD: net/minecraft/advancements/critereon/StatePropertiesPredicate$Builder/m_67700_ (Lnet/minecraft/world/level/block/state/properties/Property;Ljava/lang/String;)Lnet/minecraft/advancements/critereon/StatePropertiesPredicate$Builder; net/minecraft/advancements/critereon/StatePropertiesPredicate$Builder/hasProperty (Lnet/minecraft/world/level/block/state/properties/Property;Ljava/lang/String;)Lnet/minecraft/advancements/critereon/StatePropertiesPredicate$Builder; +MD: net/minecraft/advancements/critereon/StatePropertiesPredicate$Builder/m_67703_ (Lnet/minecraft/world/level/block/state/properties/Property;Z)Lnet/minecraft/advancements/critereon/StatePropertiesPredicate$Builder; net/minecraft/advancements/critereon/StatePropertiesPredicate$Builder/hasProperty (Lnet/minecraft/world/level/block/state/properties/Property;Z)Lnet/minecraft/advancements/critereon/StatePropertiesPredicate$Builder; +MD: net/minecraft/advancements/critereon/StatePropertiesPredicate$Builder/m_67706_ ()Lnet/minecraft/advancements/critereon/StatePropertiesPredicate; net/minecraft/advancements/critereon/StatePropertiesPredicate$Builder/build ()Lnet/minecraft/advancements/critereon/StatePropertiesPredicate; +MD: net/minecraft/advancements/critereon/StatePropertiesPredicate$ExactPropertyMatcher/ (Ljava/lang/String;Ljava/lang/String;)V net/minecraft/advancements/critereon/StatePropertiesPredicate$ExactPropertyMatcher/ (Ljava/lang/String;Ljava/lang/String;)V +MD: net/minecraft/advancements/critereon/StatePropertiesPredicate$ExactPropertyMatcher/m_7517_ (Lnet/minecraft/world/level/block/state/StateHolder;Lnet/minecraft/world/level/block/state/properties/Property;)Z net/minecraft/advancements/critereon/StatePropertiesPredicate$ExactPropertyMatcher/match (Lnet/minecraft/world/level/block/state/StateHolder;Lnet/minecraft/world/level/block/state/properties/Property;)Z +MD: net/minecraft/advancements/critereon/StatePropertiesPredicate$ExactPropertyMatcher/m_7682_ ()Lcom/google/gson/JsonElement; net/minecraft/advancements/critereon/StatePropertiesPredicate$ExactPropertyMatcher/toJson ()Lcom/google/gson/JsonElement; +MD: net/minecraft/advancements/critereon/StatePropertiesPredicate$PropertyMatcher/ (Ljava/lang/String;)V net/minecraft/advancements/critereon/StatePropertiesPredicate$PropertyMatcher/ (Ljava/lang/String;)V +MD: net/minecraft/advancements/critereon/StatePropertiesPredicate$PropertyMatcher/m_67718_ (Lnet/minecraft/world/level/block/state/StateDefinition;Lnet/minecraft/world/level/block/state/StateHolder;)Z net/minecraft/advancements/critereon/StatePropertiesPredicate$PropertyMatcher/match (Lnet/minecraft/world/level/block/state/StateDefinition;Lnet/minecraft/world/level/block/state/StateHolder;)Z +MD: net/minecraft/advancements/critereon/StatePropertiesPredicate$PropertyMatcher/m_67721_ (Lnet/minecraft/world/level/block/state/StateDefinition;Ljava/util/function/Consumer;)V net/minecraft/advancements/critereon/StatePropertiesPredicate$PropertyMatcher/checkState (Lnet/minecraft/world/level/block/state/StateDefinition;Ljava/util/function/Consumer;)V +MD: net/minecraft/advancements/critereon/StatePropertiesPredicate$PropertyMatcher/m_67726_ ()Ljava/lang/String; net/minecraft/advancements/critereon/StatePropertiesPredicate$PropertyMatcher/getName ()Ljava/lang/String; +MD: net/minecraft/advancements/critereon/StatePropertiesPredicate$PropertyMatcher/m_7517_ (Lnet/minecraft/world/level/block/state/StateHolder;Lnet/minecraft/world/level/block/state/properties/Property;)Z net/minecraft/advancements/critereon/StatePropertiesPredicate$PropertyMatcher/match (Lnet/minecraft/world/level/block/state/StateHolder;Lnet/minecraft/world/level/block/state/properties/Property;)Z +MD: net/minecraft/advancements/critereon/StatePropertiesPredicate$PropertyMatcher/m_7682_ ()Lcom/google/gson/JsonElement; net/minecraft/advancements/critereon/StatePropertiesPredicate$PropertyMatcher/toJson ()Lcom/google/gson/JsonElement; +MD: net/minecraft/advancements/critereon/StatePropertiesPredicate$RangedPropertyMatcher/ (Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;)V net/minecraft/advancements/critereon/StatePropertiesPredicate$RangedPropertyMatcher/ (Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;)V +MD: net/minecraft/advancements/critereon/StatePropertiesPredicate$RangedPropertyMatcher/m_7517_ (Lnet/minecraft/world/level/block/state/StateHolder;Lnet/minecraft/world/level/block/state/properties/Property;)Z net/minecraft/advancements/critereon/StatePropertiesPredicate$RangedPropertyMatcher/match (Lnet/minecraft/world/level/block/state/StateHolder;Lnet/minecraft/world/level/block/state/properties/Property;)Z +MD: net/minecraft/advancements/critereon/StatePropertiesPredicate$RangedPropertyMatcher/m_7682_ ()Lcom/google/gson/JsonElement; net/minecraft/advancements/critereon/StatePropertiesPredicate$RangedPropertyMatcher/toJson ()Lcom/google/gson/JsonElement; +MD: net/minecraft/advancements/critereon/SummonedEntityTrigger/ ()V net/minecraft/advancements/critereon/SummonedEntityTrigger/ ()V +MD: net/minecraft/advancements/critereon/SummonedEntityTrigger/ ()V net/minecraft/advancements/critereon/SummonedEntityTrigger/ ()V +MD: net/minecraft/advancements/critereon/SummonedEntityTrigger/m_68256_ (Lnet/minecraft/server/level/ServerPlayer;Lnet/minecraft/world/entity/Entity;)V net/minecraft/advancements/critereon/SummonedEntityTrigger/trigger (Lnet/minecraft/server/level/ServerPlayer;Lnet/minecraft/world/entity/Entity;)V +MD: net/minecraft/advancements/critereon/SummonedEntityTrigger/m_68263_ (Lnet/minecraft/world/level/storage/loot/LootContext;Lnet/minecraft/advancements/critereon/SummonedEntityTrigger$TriggerInstance;)Z net/minecraft/advancements/critereon/SummonedEntityTrigger/lambda$trigger$0 (Lnet/minecraft/world/level/storage/loot/LootContext;Lnet/minecraft/advancements/critereon/SummonedEntityTrigger$TriggerInstance;)Z +MD: net/minecraft/advancements/critereon/SummonedEntityTrigger/m_7214_ (Lcom/google/gson/JsonObject;Lnet/minecraft/advancements/critereon/ContextAwarePredicate;Lnet/minecraft/advancements/critereon/DeserializationContext;)Lnet/minecraft/advancements/critereon/AbstractCriterionTriggerInstance; net/minecraft/advancements/critereon/SummonedEntityTrigger/createInstance (Lcom/google/gson/JsonObject;Lnet/minecraft/advancements/critereon/ContextAwarePredicate;Lnet/minecraft/advancements/critereon/DeserializationContext;)Lnet/minecraft/advancements/critereon/AbstractCriterionTriggerInstance; +MD: net/minecraft/advancements/critereon/SummonedEntityTrigger/m_7214_ (Lcom/google/gson/JsonObject;Lnet/minecraft/advancements/critereon/ContextAwarePredicate;Lnet/minecraft/advancements/critereon/DeserializationContext;)Lnet/minecraft/advancements/critereon/SummonedEntityTrigger$TriggerInstance; net/minecraft/advancements/critereon/SummonedEntityTrigger/createInstance (Lcom/google/gson/JsonObject;Lnet/minecraft/advancements/critereon/ContextAwarePredicate;Lnet/minecraft/advancements/critereon/DeserializationContext;)Lnet/minecraft/advancements/critereon/SummonedEntityTrigger$TriggerInstance; +MD: net/minecraft/advancements/critereon/SummonedEntityTrigger/m_7295_ ()Lnet/minecraft/resources/ResourceLocation; net/minecraft/advancements/critereon/SummonedEntityTrigger/getId ()Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/advancements/critereon/SummonedEntityTrigger$TriggerInstance/ (Lnet/minecraft/advancements/critereon/ContextAwarePredicate;Lnet/minecraft/advancements/critereon/ContextAwarePredicate;)V net/minecraft/advancements/critereon/SummonedEntityTrigger$TriggerInstance/ (Lnet/minecraft/advancements/critereon/ContextAwarePredicate;Lnet/minecraft/advancements/critereon/ContextAwarePredicate;)V +MD: net/minecraft/advancements/critereon/SummonedEntityTrigger$TriggerInstance/m_68275_ (Lnet/minecraft/advancements/critereon/EntityPredicate$Builder;)Lnet/minecraft/advancements/critereon/SummonedEntityTrigger$TriggerInstance; net/minecraft/advancements/critereon/SummonedEntityTrigger$TriggerInstance/summonedEntity (Lnet/minecraft/advancements/critereon/EntityPredicate$Builder;)Lnet/minecraft/advancements/critereon/SummonedEntityTrigger$TriggerInstance; +MD: net/minecraft/advancements/critereon/SummonedEntityTrigger$TriggerInstance/m_68279_ (Lnet/minecraft/world/level/storage/loot/LootContext;)Z net/minecraft/advancements/critereon/SummonedEntityTrigger$TriggerInstance/matches (Lnet/minecraft/world/level/storage/loot/LootContext;)Z +MD: net/minecraft/advancements/critereon/SummonedEntityTrigger$TriggerInstance/m_7683_ (Lnet/minecraft/advancements/critereon/SerializationContext;)Lcom/google/gson/JsonObject; net/minecraft/advancements/critereon/SummonedEntityTrigger$TriggerInstance/serializeToJson (Lnet/minecraft/advancements/critereon/SerializationContext;)Lcom/google/gson/JsonObject; +MD: net/minecraft/advancements/critereon/TagPredicate/ (Lnet/minecraft/tags/TagKey;Z)V net/minecraft/advancements/critereon/TagPredicate/ (Lnet/minecraft/tags/TagKey;Z)V +MD: net/minecraft/advancements/critereon/TagPredicate/m_269314_ (Lnet/minecraft/tags/TagKey;)Lnet/minecraft/advancements/critereon/TagPredicate; net/minecraft/advancements/critereon/TagPredicate/is (Lnet/minecraft/tags/TagKey;)Lnet/minecraft/advancements/critereon/TagPredicate; +MD: net/minecraft/advancements/critereon/TagPredicate/m_269409_ (Lcom/google/gson/JsonElement;Lnet/minecraft/resources/ResourceKey;)Lnet/minecraft/advancements/critereon/TagPredicate; net/minecraft/advancements/critereon/TagPredicate/fromJson (Lcom/google/gson/JsonElement;Lnet/minecraft/resources/ResourceKey;)Lnet/minecraft/advancements/critereon/TagPredicate; +MD: net/minecraft/advancements/critereon/TagPredicate/m_269422_ (Lnet/minecraft/tags/TagKey;)Lnet/minecraft/advancements/critereon/TagPredicate; net/minecraft/advancements/critereon/TagPredicate/isNot (Lnet/minecraft/tags/TagKey;)Lnet/minecraft/advancements/critereon/TagPredicate; +MD: net/minecraft/advancements/critereon/TagPredicate/m_269475_ (Lnet/minecraft/core/Holder;)Z net/minecraft/advancements/critereon/TagPredicate/matches (Lnet/minecraft/core/Holder;)Z +MD: net/minecraft/advancements/critereon/TagPredicate/m_269579_ ()Lcom/google/gson/JsonElement; net/minecraft/advancements/critereon/TagPredicate/serializeToJson ()Lcom/google/gson/JsonElement; +MD: net/minecraft/advancements/critereon/TameAnimalTrigger/ ()V net/minecraft/advancements/critereon/TameAnimalTrigger/ ()V +MD: net/minecraft/advancements/critereon/TameAnimalTrigger/ ()V net/minecraft/advancements/critereon/TameAnimalTrigger/ ()V +MD: net/minecraft/advancements/critereon/TameAnimalTrigger/m_68829_ (Lnet/minecraft/server/level/ServerPlayer;Lnet/minecraft/world/entity/animal/Animal;)V net/minecraft/advancements/critereon/TameAnimalTrigger/trigger (Lnet/minecraft/server/level/ServerPlayer;Lnet/minecraft/world/entity/animal/Animal;)V +MD: net/minecraft/advancements/critereon/TameAnimalTrigger/m_68836_ (Lnet/minecraft/world/level/storage/loot/LootContext;Lnet/minecraft/advancements/critereon/TameAnimalTrigger$TriggerInstance;)Z net/minecraft/advancements/critereon/TameAnimalTrigger/lambda$trigger$0 (Lnet/minecraft/world/level/storage/loot/LootContext;Lnet/minecraft/advancements/critereon/TameAnimalTrigger$TriggerInstance;)Z +MD: net/minecraft/advancements/critereon/TameAnimalTrigger/m_7214_ (Lcom/google/gson/JsonObject;Lnet/minecraft/advancements/critereon/ContextAwarePredicate;Lnet/minecraft/advancements/critereon/DeserializationContext;)Lnet/minecraft/advancements/critereon/AbstractCriterionTriggerInstance; net/minecraft/advancements/critereon/TameAnimalTrigger/createInstance (Lcom/google/gson/JsonObject;Lnet/minecraft/advancements/critereon/ContextAwarePredicate;Lnet/minecraft/advancements/critereon/DeserializationContext;)Lnet/minecraft/advancements/critereon/AbstractCriterionTriggerInstance; +MD: net/minecraft/advancements/critereon/TameAnimalTrigger/m_7214_ (Lcom/google/gson/JsonObject;Lnet/minecraft/advancements/critereon/ContextAwarePredicate;Lnet/minecraft/advancements/critereon/DeserializationContext;)Lnet/minecraft/advancements/critereon/TameAnimalTrigger$TriggerInstance; net/minecraft/advancements/critereon/TameAnimalTrigger/createInstance (Lcom/google/gson/JsonObject;Lnet/minecraft/advancements/critereon/ContextAwarePredicate;Lnet/minecraft/advancements/critereon/DeserializationContext;)Lnet/minecraft/advancements/critereon/TameAnimalTrigger$TriggerInstance; +MD: net/minecraft/advancements/critereon/TameAnimalTrigger/m_7295_ ()Lnet/minecraft/resources/ResourceLocation; net/minecraft/advancements/critereon/TameAnimalTrigger/getId ()Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/advancements/critereon/TameAnimalTrigger$TriggerInstance/ (Lnet/minecraft/advancements/critereon/ContextAwarePredicate;Lnet/minecraft/advancements/critereon/ContextAwarePredicate;)V net/minecraft/advancements/critereon/TameAnimalTrigger$TriggerInstance/ (Lnet/minecraft/advancements/critereon/ContextAwarePredicate;Lnet/minecraft/advancements/critereon/ContextAwarePredicate;)V +MD: net/minecraft/advancements/critereon/TameAnimalTrigger$TriggerInstance/m_68848_ (Lnet/minecraft/advancements/critereon/EntityPredicate;)Lnet/minecraft/advancements/critereon/TameAnimalTrigger$TriggerInstance; net/minecraft/advancements/critereon/TameAnimalTrigger$TriggerInstance/tamedAnimal (Lnet/minecraft/advancements/critereon/EntityPredicate;)Lnet/minecraft/advancements/critereon/TameAnimalTrigger$TriggerInstance; +MD: net/minecraft/advancements/critereon/TameAnimalTrigger$TriggerInstance/m_68852_ (Lnet/minecraft/world/level/storage/loot/LootContext;)Z net/minecraft/advancements/critereon/TameAnimalTrigger$TriggerInstance/matches (Lnet/minecraft/world/level/storage/loot/LootContext;)Z +MD: net/minecraft/advancements/critereon/TameAnimalTrigger$TriggerInstance/m_68854_ ()Lnet/minecraft/advancements/critereon/TameAnimalTrigger$TriggerInstance; net/minecraft/advancements/critereon/TameAnimalTrigger$TriggerInstance/tamedAnimal ()Lnet/minecraft/advancements/critereon/TameAnimalTrigger$TriggerInstance; +MD: net/minecraft/advancements/critereon/TameAnimalTrigger$TriggerInstance/m_7683_ (Lnet/minecraft/advancements/critereon/SerializationContext;)Lcom/google/gson/JsonObject; net/minecraft/advancements/critereon/TameAnimalTrigger$TriggerInstance/serializeToJson (Lnet/minecraft/advancements/critereon/SerializationContext;)Lcom/google/gson/JsonObject; +MD: net/minecraft/advancements/critereon/TargetBlockTrigger/ ()V net/minecraft/advancements/critereon/TargetBlockTrigger/ ()V +MD: net/minecraft/advancements/critereon/TargetBlockTrigger/ ()V net/minecraft/advancements/critereon/TargetBlockTrigger/ ()V +MD: net/minecraft/advancements/critereon/TargetBlockTrigger/m_70211_ (Lnet/minecraft/server/level/ServerPlayer;Lnet/minecraft/world/entity/Entity;Lnet/minecraft/world/phys/Vec3;I)V net/minecraft/advancements/critereon/TargetBlockTrigger/trigger (Lnet/minecraft/server/level/ServerPlayer;Lnet/minecraft/world/entity/Entity;Lnet/minecraft/world/phys/Vec3;I)V +MD: net/minecraft/advancements/critereon/TargetBlockTrigger/m_70220_ (Lnet/minecraft/world/level/storage/loot/LootContext;Lnet/minecraft/world/phys/Vec3;ILnet/minecraft/advancements/critereon/TargetBlockTrigger$TriggerInstance;)Z net/minecraft/advancements/critereon/TargetBlockTrigger/lambda$trigger$0 (Lnet/minecraft/world/level/storage/loot/LootContext;Lnet/minecraft/world/phys/Vec3;ILnet/minecraft/advancements/critereon/TargetBlockTrigger$TriggerInstance;)Z +MD: net/minecraft/advancements/critereon/TargetBlockTrigger/m_7214_ (Lcom/google/gson/JsonObject;Lnet/minecraft/advancements/critereon/ContextAwarePredicate;Lnet/minecraft/advancements/critereon/DeserializationContext;)Lnet/minecraft/advancements/critereon/TargetBlockTrigger$TriggerInstance; net/minecraft/advancements/critereon/TargetBlockTrigger/createInstance (Lcom/google/gson/JsonObject;Lnet/minecraft/advancements/critereon/ContextAwarePredicate;Lnet/minecraft/advancements/critereon/DeserializationContext;)Lnet/minecraft/advancements/critereon/TargetBlockTrigger$TriggerInstance; +MD: net/minecraft/advancements/critereon/TargetBlockTrigger/m_7214_ (Lcom/google/gson/JsonObject;Lnet/minecraft/advancements/critereon/ContextAwarePredicate;Lnet/minecraft/advancements/critereon/DeserializationContext;)Lnet/minecraft/advancements/critereon/AbstractCriterionTriggerInstance; net/minecraft/advancements/critereon/TargetBlockTrigger/createInstance (Lcom/google/gson/JsonObject;Lnet/minecraft/advancements/critereon/ContextAwarePredicate;Lnet/minecraft/advancements/critereon/DeserializationContext;)Lnet/minecraft/advancements/critereon/AbstractCriterionTriggerInstance; +MD: net/minecraft/advancements/critereon/TargetBlockTrigger/m_7295_ ()Lnet/minecraft/resources/ResourceLocation; net/minecraft/advancements/critereon/TargetBlockTrigger/getId ()Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/advancements/critereon/TargetBlockTrigger$TriggerInstance/ (Lnet/minecraft/advancements/critereon/ContextAwarePredicate;Lnet/minecraft/advancements/critereon/MinMaxBounds$Ints;Lnet/minecraft/advancements/critereon/ContextAwarePredicate;)V net/minecraft/advancements/critereon/TargetBlockTrigger$TriggerInstance/ (Lnet/minecraft/advancements/critereon/ContextAwarePredicate;Lnet/minecraft/advancements/critereon/MinMaxBounds$Ints;Lnet/minecraft/advancements/critereon/ContextAwarePredicate;)V +MD: net/minecraft/advancements/critereon/TargetBlockTrigger$TriggerInstance/m_285906_ (Lnet/minecraft/advancements/critereon/MinMaxBounds$Ints;Lnet/minecraft/advancements/critereon/ContextAwarePredicate;)Lnet/minecraft/advancements/critereon/TargetBlockTrigger$TriggerInstance; net/minecraft/advancements/critereon/TargetBlockTrigger$TriggerInstance/targetHit (Lnet/minecraft/advancements/critereon/MinMaxBounds$Ints;Lnet/minecraft/advancements/critereon/ContextAwarePredicate;)Lnet/minecraft/advancements/critereon/TargetBlockTrigger$TriggerInstance; +MD: net/minecraft/advancements/critereon/TargetBlockTrigger$TriggerInstance/m_70241_ (Lnet/minecraft/world/level/storage/loot/LootContext;Lnet/minecraft/world/phys/Vec3;I)Z net/minecraft/advancements/critereon/TargetBlockTrigger$TriggerInstance/matches (Lnet/minecraft/world/level/storage/loot/LootContext;Lnet/minecraft/world/phys/Vec3;I)Z +MD: net/minecraft/advancements/critereon/TargetBlockTrigger$TriggerInstance/m_7683_ (Lnet/minecraft/advancements/critereon/SerializationContext;)Lcom/google/gson/JsonObject; net/minecraft/advancements/critereon/TargetBlockTrigger$TriggerInstance/serializeToJson (Lnet/minecraft/advancements/critereon/SerializationContext;)Lcom/google/gson/JsonObject; +MD: net/minecraft/advancements/critereon/TradeTrigger/ ()V net/minecraft/advancements/critereon/TradeTrigger/ ()V +MD: net/minecraft/advancements/critereon/TradeTrigger/ ()V net/minecraft/advancements/critereon/TradeTrigger/ ()V +MD: net/minecraft/advancements/critereon/TradeTrigger/m_70959_ (Lnet/minecraft/server/level/ServerPlayer;Lnet/minecraft/world/entity/npc/AbstractVillager;Lnet/minecraft/world/item/ItemStack;)V net/minecraft/advancements/critereon/TradeTrigger/trigger (Lnet/minecraft/server/level/ServerPlayer;Lnet/minecraft/world/entity/npc/AbstractVillager;Lnet/minecraft/world/item/ItemStack;)V +MD: net/minecraft/advancements/critereon/TradeTrigger/m_70967_ (Lnet/minecraft/world/level/storage/loot/LootContext;Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/advancements/critereon/TradeTrigger$TriggerInstance;)Z net/minecraft/advancements/critereon/TradeTrigger/lambda$trigger$0 (Lnet/minecraft/world/level/storage/loot/LootContext;Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/advancements/critereon/TradeTrigger$TriggerInstance;)Z +MD: net/minecraft/advancements/critereon/TradeTrigger/m_7214_ (Lcom/google/gson/JsonObject;Lnet/minecraft/advancements/critereon/ContextAwarePredicate;Lnet/minecraft/advancements/critereon/DeserializationContext;)Lnet/minecraft/advancements/critereon/TradeTrigger$TriggerInstance; net/minecraft/advancements/critereon/TradeTrigger/createInstance (Lcom/google/gson/JsonObject;Lnet/minecraft/advancements/critereon/ContextAwarePredicate;Lnet/minecraft/advancements/critereon/DeserializationContext;)Lnet/minecraft/advancements/critereon/TradeTrigger$TriggerInstance; +MD: net/minecraft/advancements/critereon/TradeTrigger/m_7214_ (Lcom/google/gson/JsonObject;Lnet/minecraft/advancements/critereon/ContextAwarePredicate;Lnet/minecraft/advancements/critereon/DeserializationContext;)Lnet/minecraft/advancements/critereon/AbstractCriterionTriggerInstance; net/minecraft/advancements/critereon/TradeTrigger/createInstance (Lcom/google/gson/JsonObject;Lnet/minecraft/advancements/critereon/ContextAwarePredicate;Lnet/minecraft/advancements/critereon/DeserializationContext;)Lnet/minecraft/advancements/critereon/AbstractCriterionTriggerInstance; +MD: net/minecraft/advancements/critereon/TradeTrigger/m_7295_ ()Lnet/minecraft/resources/ResourceLocation; net/minecraft/advancements/critereon/TradeTrigger/getId ()Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/advancements/critereon/TradeTrigger$TriggerInstance/ (Lnet/minecraft/advancements/critereon/ContextAwarePredicate;Lnet/minecraft/advancements/critereon/ContextAwarePredicate;Lnet/minecraft/advancements/critereon/ItemPredicate;)V net/minecraft/advancements/critereon/TradeTrigger$TriggerInstance/ (Lnet/minecraft/advancements/critereon/ContextAwarePredicate;Lnet/minecraft/advancements/critereon/ContextAwarePredicate;Lnet/minecraft/advancements/critereon/ItemPredicate;)V +MD: net/minecraft/advancements/critereon/TradeTrigger$TriggerInstance/m_191436_ (Lnet/minecraft/advancements/critereon/EntityPredicate$Builder;)Lnet/minecraft/advancements/critereon/TradeTrigger$TriggerInstance; net/minecraft/advancements/critereon/TradeTrigger$TriggerInstance/tradedWithVillager (Lnet/minecraft/advancements/critereon/EntityPredicate$Builder;)Lnet/minecraft/advancements/critereon/TradeTrigger$TriggerInstance; +MD: net/minecraft/advancements/critereon/TradeTrigger$TriggerInstance/m_70984_ (Lnet/minecraft/world/level/storage/loot/LootContext;Lnet/minecraft/world/item/ItemStack;)Z net/minecraft/advancements/critereon/TradeTrigger$TriggerInstance/matches (Lnet/minecraft/world/level/storage/loot/LootContext;Lnet/minecraft/world/item/ItemStack;)Z +MD: net/minecraft/advancements/critereon/TradeTrigger$TriggerInstance/m_70987_ ()Lnet/minecraft/advancements/critereon/TradeTrigger$TriggerInstance; net/minecraft/advancements/critereon/TradeTrigger$TriggerInstance/tradedWithVillager ()Lnet/minecraft/advancements/critereon/TradeTrigger$TriggerInstance; +MD: net/minecraft/advancements/critereon/TradeTrigger$TriggerInstance/m_7683_ (Lnet/minecraft/advancements/critereon/SerializationContext;)Lcom/google/gson/JsonObject; net/minecraft/advancements/critereon/TradeTrigger$TriggerInstance/serializeToJson (Lnet/minecraft/advancements/critereon/SerializationContext;)Lcom/google/gson/JsonObject; +MD: net/minecraft/advancements/critereon/UsedEnderEyeTrigger/ ()V net/minecraft/advancements/critereon/UsedEnderEyeTrigger/ ()V +MD: net/minecraft/advancements/critereon/UsedEnderEyeTrigger/ ()V net/minecraft/advancements/critereon/UsedEnderEyeTrigger/ ()V +MD: net/minecraft/advancements/critereon/UsedEnderEyeTrigger/m_7214_ (Lcom/google/gson/JsonObject;Lnet/minecraft/advancements/critereon/ContextAwarePredicate;Lnet/minecraft/advancements/critereon/DeserializationContext;)Lnet/minecraft/advancements/critereon/AbstractCriterionTriggerInstance; net/minecraft/advancements/critereon/UsedEnderEyeTrigger/createInstance (Lcom/google/gson/JsonObject;Lnet/minecraft/advancements/critereon/ContextAwarePredicate;Lnet/minecraft/advancements/critereon/DeserializationContext;)Lnet/minecraft/advancements/critereon/AbstractCriterionTriggerInstance; +MD: net/minecraft/advancements/critereon/UsedEnderEyeTrigger/m_7214_ (Lcom/google/gson/JsonObject;Lnet/minecraft/advancements/critereon/ContextAwarePredicate;Lnet/minecraft/advancements/critereon/DeserializationContext;)Lnet/minecraft/advancements/critereon/UsedEnderEyeTrigger$TriggerInstance; net/minecraft/advancements/critereon/UsedEnderEyeTrigger/createInstance (Lcom/google/gson/JsonObject;Lnet/minecraft/advancements/critereon/ContextAwarePredicate;Lnet/minecraft/advancements/critereon/DeserializationContext;)Lnet/minecraft/advancements/critereon/UsedEnderEyeTrigger$TriggerInstance; +MD: net/minecraft/advancements/critereon/UsedEnderEyeTrigger/m_7295_ ()Lnet/minecraft/resources/ResourceLocation; net/minecraft/advancements/critereon/UsedEnderEyeTrigger/getId ()Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/advancements/critereon/UsedEnderEyeTrigger/m_73932_ (DLnet/minecraft/advancements/critereon/UsedEnderEyeTrigger$TriggerInstance;)Z net/minecraft/advancements/critereon/UsedEnderEyeTrigger/lambda$trigger$0 (DLnet/minecraft/advancements/critereon/UsedEnderEyeTrigger$TriggerInstance;)Z +MD: net/minecraft/advancements/critereon/UsedEnderEyeTrigger/m_73935_ (Lnet/minecraft/server/level/ServerPlayer;Lnet/minecraft/core/BlockPos;)V net/minecraft/advancements/critereon/UsedEnderEyeTrigger/trigger (Lnet/minecraft/server/level/ServerPlayer;Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/advancements/critereon/UsedEnderEyeTrigger$TriggerInstance/ (Lnet/minecraft/advancements/critereon/ContextAwarePredicate;Lnet/minecraft/advancements/critereon/MinMaxBounds$Doubles;)V net/minecraft/advancements/critereon/UsedEnderEyeTrigger$TriggerInstance/ (Lnet/minecraft/advancements/critereon/ContextAwarePredicate;Lnet/minecraft/advancements/critereon/MinMaxBounds$Doubles;)V +MD: net/minecraft/advancements/critereon/UsedEnderEyeTrigger$TriggerInstance/m_73951_ (D)Z net/minecraft/advancements/critereon/UsedEnderEyeTrigger$TriggerInstance/matches (D)Z +MD: net/minecraft/advancements/critereon/UsedTotemTrigger/ ()V net/minecraft/advancements/critereon/UsedTotemTrigger/ ()V +MD: net/minecraft/advancements/critereon/UsedTotemTrigger/ ()V net/minecraft/advancements/critereon/UsedTotemTrigger/ ()V +MD: net/minecraft/advancements/critereon/UsedTotemTrigger/m_7214_ (Lcom/google/gson/JsonObject;Lnet/minecraft/advancements/critereon/ContextAwarePredicate;Lnet/minecraft/advancements/critereon/DeserializationContext;)Lnet/minecraft/advancements/critereon/UsedTotemTrigger$TriggerInstance; net/minecraft/advancements/critereon/UsedTotemTrigger/createInstance (Lcom/google/gson/JsonObject;Lnet/minecraft/advancements/critereon/ContextAwarePredicate;Lnet/minecraft/advancements/critereon/DeserializationContext;)Lnet/minecraft/advancements/critereon/UsedTotemTrigger$TriggerInstance; +MD: net/minecraft/advancements/critereon/UsedTotemTrigger/m_7214_ (Lcom/google/gson/JsonObject;Lnet/minecraft/advancements/critereon/ContextAwarePredicate;Lnet/minecraft/advancements/critereon/DeserializationContext;)Lnet/minecraft/advancements/critereon/AbstractCriterionTriggerInstance; net/minecraft/advancements/critereon/UsedTotemTrigger/createInstance (Lcom/google/gson/JsonObject;Lnet/minecraft/advancements/critereon/ContextAwarePredicate;Lnet/minecraft/advancements/critereon/DeserializationContext;)Lnet/minecraft/advancements/critereon/AbstractCriterionTriggerInstance; +MD: net/minecraft/advancements/critereon/UsedTotemTrigger/m_7295_ ()Lnet/minecraft/resources/ResourceLocation; net/minecraft/advancements/critereon/UsedTotemTrigger/getId ()Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/advancements/critereon/UsedTotemTrigger/m_74431_ (Lnet/minecraft/server/level/ServerPlayer;Lnet/minecraft/world/item/ItemStack;)V net/minecraft/advancements/critereon/UsedTotemTrigger/trigger (Lnet/minecraft/server/level/ServerPlayer;Lnet/minecraft/world/item/ItemStack;)V +MD: net/minecraft/advancements/critereon/UsedTotemTrigger/m_74434_ (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/advancements/critereon/UsedTotemTrigger$TriggerInstance;)Z net/minecraft/advancements/critereon/UsedTotemTrigger/lambda$trigger$0 (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/advancements/critereon/UsedTotemTrigger$TriggerInstance;)Z +MD: net/minecraft/advancements/critereon/UsedTotemTrigger$TriggerInstance/ (Lnet/minecraft/advancements/critereon/ContextAwarePredicate;Lnet/minecraft/advancements/critereon/ItemPredicate;)V net/minecraft/advancements/critereon/UsedTotemTrigger$TriggerInstance/ (Lnet/minecraft/advancements/critereon/ContextAwarePredicate;Lnet/minecraft/advancements/critereon/ItemPredicate;)V +MD: net/minecraft/advancements/critereon/UsedTotemTrigger$TriggerInstance/m_163724_ (Lnet/minecraft/advancements/critereon/ItemPredicate;)Lnet/minecraft/advancements/critereon/UsedTotemTrigger$TriggerInstance; net/minecraft/advancements/critereon/UsedTotemTrigger$TriggerInstance/usedTotem (Lnet/minecraft/advancements/critereon/ItemPredicate;)Lnet/minecraft/advancements/critereon/UsedTotemTrigger$TriggerInstance; +MD: net/minecraft/advancements/critereon/UsedTotemTrigger$TriggerInstance/m_74450_ (Lnet/minecraft/world/item/ItemStack;)Z net/minecraft/advancements/critereon/UsedTotemTrigger$TriggerInstance/matches (Lnet/minecraft/world/item/ItemStack;)Z +MD: net/minecraft/advancements/critereon/UsedTotemTrigger$TriggerInstance/m_74452_ (Lnet/minecraft/world/level/ItemLike;)Lnet/minecraft/advancements/critereon/UsedTotemTrigger$TriggerInstance; net/minecraft/advancements/critereon/UsedTotemTrigger$TriggerInstance/usedTotem (Lnet/minecraft/world/level/ItemLike;)Lnet/minecraft/advancements/critereon/UsedTotemTrigger$TriggerInstance; +MD: net/minecraft/advancements/critereon/UsedTotemTrigger$TriggerInstance/m_7683_ (Lnet/minecraft/advancements/critereon/SerializationContext;)Lcom/google/gson/JsonObject; net/minecraft/advancements/critereon/UsedTotemTrigger$TriggerInstance/serializeToJson (Lnet/minecraft/advancements/critereon/SerializationContext;)Lcom/google/gson/JsonObject; +MD: net/minecraft/advancements/critereon/UsingItemTrigger/ ()V net/minecraft/advancements/critereon/UsingItemTrigger/ ()V +MD: net/minecraft/advancements/critereon/UsingItemTrigger/ ()V net/minecraft/advancements/critereon/UsingItemTrigger/ ()V +MD: net/minecraft/advancements/critereon/UsingItemTrigger/m_163865_ (Lnet/minecraft/server/level/ServerPlayer;Lnet/minecraft/world/item/ItemStack;)V net/minecraft/advancements/critereon/UsingItemTrigger/trigger (Lnet/minecraft/server/level/ServerPlayer;Lnet/minecraft/world/item/ItemStack;)V +MD: net/minecraft/advancements/critereon/UsingItemTrigger/m_163868_ (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/advancements/critereon/UsingItemTrigger$TriggerInstance;)Z net/minecraft/advancements/critereon/UsingItemTrigger/lambda$trigger$0 (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/advancements/critereon/UsingItemTrigger$TriggerInstance;)Z +MD: net/minecraft/advancements/critereon/UsingItemTrigger/m_7214_ (Lcom/google/gson/JsonObject;Lnet/minecraft/advancements/critereon/ContextAwarePredicate;Lnet/minecraft/advancements/critereon/DeserializationContext;)Lnet/minecraft/advancements/critereon/UsingItemTrigger$TriggerInstance; net/minecraft/advancements/critereon/UsingItemTrigger/createInstance (Lcom/google/gson/JsonObject;Lnet/minecraft/advancements/critereon/ContextAwarePredicate;Lnet/minecraft/advancements/critereon/DeserializationContext;)Lnet/minecraft/advancements/critereon/UsingItemTrigger$TriggerInstance; +MD: net/minecraft/advancements/critereon/UsingItemTrigger/m_7214_ (Lcom/google/gson/JsonObject;Lnet/minecraft/advancements/critereon/ContextAwarePredicate;Lnet/minecraft/advancements/critereon/DeserializationContext;)Lnet/minecraft/advancements/critereon/AbstractCriterionTriggerInstance; net/minecraft/advancements/critereon/UsingItemTrigger/createInstance (Lcom/google/gson/JsonObject;Lnet/minecraft/advancements/critereon/ContextAwarePredicate;Lnet/minecraft/advancements/critereon/DeserializationContext;)Lnet/minecraft/advancements/critereon/AbstractCriterionTriggerInstance; +MD: net/minecraft/advancements/critereon/UsingItemTrigger/m_7295_ ()Lnet/minecraft/resources/ResourceLocation; net/minecraft/advancements/critereon/UsingItemTrigger/getId ()Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/advancements/critereon/UsingItemTrigger$TriggerInstance/ (Lnet/minecraft/advancements/critereon/ContextAwarePredicate;Lnet/minecraft/advancements/critereon/ItemPredicate;)V net/minecraft/advancements/critereon/UsingItemTrigger$TriggerInstance/ (Lnet/minecraft/advancements/critereon/ContextAwarePredicate;Lnet/minecraft/advancements/critereon/ItemPredicate;)V +MD: net/minecraft/advancements/critereon/UsingItemTrigger$TriggerInstance/m_163883_ (Lnet/minecraft/advancements/critereon/EntityPredicate$Builder;Lnet/minecraft/advancements/critereon/ItemPredicate$Builder;)Lnet/minecraft/advancements/critereon/UsingItemTrigger$TriggerInstance; net/minecraft/advancements/critereon/UsingItemTrigger$TriggerInstance/lookingAt (Lnet/minecraft/advancements/critereon/EntityPredicate$Builder;Lnet/minecraft/advancements/critereon/ItemPredicate$Builder;)Lnet/minecraft/advancements/critereon/UsingItemTrigger$TriggerInstance; +MD: net/minecraft/advancements/critereon/UsingItemTrigger$TriggerInstance/m_163886_ (Lnet/minecraft/world/item/ItemStack;)Z net/minecraft/advancements/critereon/UsingItemTrigger$TriggerInstance/matches (Lnet/minecraft/world/item/ItemStack;)Z +MD: net/minecraft/advancements/critereon/UsingItemTrigger$TriggerInstance/m_7683_ (Lnet/minecraft/advancements/critereon/SerializationContext;)Lcom/google/gson/JsonObject; net/minecraft/advancements/critereon/UsingItemTrigger$TriggerInstance/serializeToJson (Lnet/minecraft/advancements/critereon/SerializationContext;)Lcom/google/gson/JsonObject; +MD: net/minecraft/advancements/critereon/WrappedMinMaxBounds/ ()V net/minecraft/advancements/critereon/WrappedMinMaxBounds/ ()V +MD: net/minecraft/advancements/critereon/WrappedMinMaxBounds/ (Ljava/lang/Float;Ljava/lang/Float;)V net/minecraft/advancements/critereon/WrappedMinMaxBounds/ (Ljava/lang/Float;Ljava/lang/Float;)V +MD: net/minecraft/advancements/critereon/WrappedMinMaxBounds/m_164400_ (D)Z net/minecraft/advancements/critereon/WrappedMinMaxBounds/matchesSqr (D)Z +MD: net/minecraft/advancements/critereon/WrappedMinMaxBounds/m_164402_ (F)Lnet/minecraft/advancements/critereon/WrappedMinMaxBounds; net/minecraft/advancements/critereon/WrappedMinMaxBounds/exactly (F)Lnet/minecraft/advancements/critereon/WrappedMinMaxBounds; +MD: net/minecraft/advancements/critereon/WrappedMinMaxBounds/m_164404_ (FF)Lnet/minecraft/advancements/critereon/WrappedMinMaxBounds; net/minecraft/advancements/critereon/WrappedMinMaxBounds/between (FF)Lnet/minecraft/advancements/critereon/WrappedMinMaxBounds; +MD: net/minecraft/advancements/critereon/WrappedMinMaxBounds/m_164407_ (Lcom/google/gson/JsonElement;)Lnet/minecraft/advancements/critereon/WrappedMinMaxBounds; net/minecraft/advancements/critereon/WrappedMinMaxBounds/fromJson (Lcom/google/gson/JsonElement;)Lnet/minecraft/advancements/critereon/WrappedMinMaxBounds; +MD: net/minecraft/advancements/critereon/WrappedMinMaxBounds/m_164409_ (Lcom/mojang/brigadier/StringReader;Z)Lnet/minecraft/advancements/critereon/WrappedMinMaxBounds; net/minecraft/advancements/critereon/WrappedMinMaxBounds/fromReader (Lcom/mojang/brigadier/StringReader;Z)Lnet/minecraft/advancements/critereon/WrappedMinMaxBounds; +MD: net/minecraft/advancements/critereon/WrappedMinMaxBounds/m_164412_ (Ljava/lang/Float;)Ljava/lang/Float; net/minecraft/advancements/critereon/WrappedMinMaxBounds/lambda$fromReader$0 (Ljava/lang/Float;)Ljava/lang/Float; +MD: net/minecraft/advancements/critereon/WrappedMinMaxBounds/m_164414_ (F)Lnet/minecraft/advancements/critereon/WrappedMinMaxBounds; net/minecraft/advancements/critereon/WrappedMinMaxBounds/atLeast (F)Lnet/minecraft/advancements/critereon/WrappedMinMaxBounds; +MD: net/minecraft/advancements/critereon/WrappedMinMaxBounds/m_164416_ ()Lcom/google/gson/JsonElement; net/minecraft/advancements/critereon/WrappedMinMaxBounds/serializeToJson ()Lcom/google/gson/JsonElement; +MD: net/minecraft/advancements/critereon/WrappedMinMaxBounds/m_164417_ (F)Lnet/minecraft/advancements/critereon/WrappedMinMaxBounds; net/minecraft/advancements/critereon/WrappedMinMaxBounds/atMost (F)Lnet/minecraft/advancements/critereon/WrappedMinMaxBounds; +MD: net/minecraft/advancements/critereon/WrappedMinMaxBounds/m_164419_ (F)Z net/minecraft/advancements/critereon/WrappedMinMaxBounds/matches (F)Z +MD: net/minecraft/advancements/critereon/WrappedMinMaxBounds/m_75358_ ()Ljava/lang/Float; net/minecraft/advancements/critereon/WrappedMinMaxBounds/getMin ()Ljava/lang/Float; +MD: net/minecraft/advancements/critereon/WrappedMinMaxBounds/m_75359_ (Lcom/mojang/brigadier/StringReader;ZLjava/util/function/Function;)Lnet/minecraft/advancements/critereon/WrappedMinMaxBounds; net/minecraft/advancements/critereon/WrappedMinMaxBounds/fromReader (Lcom/mojang/brigadier/StringReader;ZLjava/util/function/Function;)Lnet/minecraft/advancements/critereon/WrappedMinMaxBounds; +MD: net/minecraft/advancements/critereon/WrappedMinMaxBounds/m_75363_ (Ljava/lang/Float;Ljava/util/function/Function;)Ljava/lang/Float; net/minecraft/advancements/critereon/WrappedMinMaxBounds/optionallyFormat (Ljava/lang/Float;Ljava/util/function/Function;)Ljava/lang/Float; +MD: net/minecraft/advancements/critereon/WrappedMinMaxBounds/m_75366_ ()Ljava/lang/Float; net/minecraft/advancements/critereon/WrappedMinMaxBounds/getMax ()Ljava/lang/Float; +MD: net/minecraft/advancements/critereon/WrappedMinMaxBounds/m_75367_ (Lcom/mojang/brigadier/StringReader;Z)Ljava/lang/Float; net/minecraft/advancements/critereon/WrappedMinMaxBounds/readNumber (Lcom/mojang/brigadier/StringReader;Z)Ljava/lang/Float; +MD: net/minecraft/advancements/critereon/WrappedMinMaxBounds/m_75370_ (Lcom/mojang/brigadier/StringReader;Z)Z net/minecraft/advancements/critereon/WrappedMinMaxBounds/isAllowedNumber (Lcom/mojang/brigadier/StringReader;Z)Z +MD: net/minecraft/client/AttackIndicatorStatus/ ()V net/minecraft/client/AttackIndicatorStatus/ ()V +MD: net/minecraft/client/AttackIndicatorStatus/ (Ljava/lang/String;IILjava/lang/String;)V net/minecraft/client/AttackIndicatorStatus/ (Ljava/lang/String;IILjava/lang/String;)V +MD: net/minecraft/client/AttackIndicatorStatus/m_167682_ ()[Lnet/minecraft/client/AttackIndicatorStatus; net/minecraft/client/AttackIndicatorStatus/$values ()[Lnet/minecraft/client/AttackIndicatorStatus; +MD: net/minecraft/client/AttackIndicatorStatus/m_35965_ ()I net/minecraft/client/AttackIndicatorStatus/getId ()I +MD: net/minecraft/client/AttackIndicatorStatus/m_35968_ ()Ljava/lang/String; net/minecraft/client/AttackIndicatorStatus/getKey ()Ljava/lang/String; +MD: net/minecraft/client/AttackIndicatorStatus/m_90509_ (I)Lnet/minecraft/client/AttackIndicatorStatus; net/minecraft/client/AttackIndicatorStatus/byId (I)Lnet/minecraft/client/AttackIndicatorStatus; +MD: net/minecraft/client/AttackIndicatorStatus/valueOf (Ljava/lang/String;)Lnet/minecraft/client/AttackIndicatorStatus; net/minecraft/client/AttackIndicatorStatus/valueOf (Ljava/lang/String;)Lnet/minecraft/client/AttackIndicatorStatus; +MD: net/minecraft/client/AttackIndicatorStatus/values ()[Lnet/minecraft/client/AttackIndicatorStatus; net/minecraft/client/AttackIndicatorStatus/values ()[Lnet/minecraft/client/AttackIndicatorStatus; +MD: net/minecraft/client/Camera/ ()V net/minecraft/client/Camera/ ()V +MD: net/minecraft/client/Camera/m_167684_ ()Lnet/minecraft/client/Camera$NearPlane; net/minecraft/client/Camera/getNearPlane ()Lnet/minecraft/client/Camera$NearPlane; +MD: net/minecraft/client/Camera/m_167685_ ()Lnet/minecraft/world/level/material/FogType; net/minecraft/client/Camera/getFluidInCamera ()Lnet/minecraft/world/level/material/FogType; +MD: net/minecraft/client/Camera/m_252775_ ()Lorg/joml/Vector3f; net/minecraft/client/Camera/getLeftVector ()Lorg/joml/Vector3f; +MD: net/minecraft/client/Camera/m_253028_ ()Lorg/joml/Vector3f; net/minecraft/client/Camera/getUpVector ()Lorg/joml/Vector3f; +MD: net/minecraft/client/Camera/m_253058_ ()Lorg/joml/Vector3f; net/minecraft/client/Camera/getLookVector ()Lorg/joml/Vector3f; +MD: net/minecraft/client/Camera/m_253121_ ()Lorg/joml/Quaternionf; net/minecraft/client/Camera/rotation ()Lorg/joml/Quaternionf; +MD: net/minecraft/client/Camera/m_90565_ ()V net/minecraft/client/Camera/tick ()V +MD: net/minecraft/client/Camera/m_90566_ (D)D net/minecraft/client/Camera/getMaxZoom (D)D +MD: net/minecraft/client/Camera/m_90568_ (DDD)V net/minecraft/client/Camera/move (DDD)V +MD: net/minecraft/client/Camera/m_90572_ (FF)V net/minecraft/client/Camera/setRotation (FF)V +MD: net/minecraft/client/Camera/m_90575_ (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/world/entity/Entity;ZZF)V net/minecraft/client/Camera/setup (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/world/entity/Entity;ZZF)V +MD: net/minecraft/client/Camera/m_90581_ (Lnet/minecraft/world/phys/Vec3;)V net/minecraft/client/Camera/setPosition (Lnet/minecraft/world/phys/Vec3;)V +MD: net/minecraft/client/Camera/m_90583_ ()Lnet/minecraft/world/phys/Vec3; net/minecraft/client/Camera/getPosition ()Lnet/minecraft/world/phys/Vec3; +MD: net/minecraft/client/Camera/m_90584_ (DDD)V net/minecraft/client/Camera/setPosition (DDD)V +MD: net/minecraft/client/Camera/m_90588_ ()Lnet/minecraft/core/BlockPos; net/minecraft/client/Camera/getBlockPosition ()Lnet/minecraft/core/BlockPos; +MD: net/minecraft/client/Camera/m_90589_ ()F net/minecraft/client/Camera/getXRot ()F +MD: net/minecraft/client/Camera/m_90590_ ()F net/minecraft/client/Camera/getYRot ()F +MD: net/minecraft/client/Camera/m_90592_ ()Lnet/minecraft/world/entity/Entity; net/minecraft/client/Camera/getEntity ()Lnet/minecraft/world/entity/Entity; +MD: net/minecraft/client/Camera/m_90593_ ()Z net/minecraft/client/Camera/isInitialized ()Z +MD: net/minecraft/client/Camera/m_90594_ ()Z net/minecraft/client/Camera/isDetached ()Z +MD: net/minecraft/client/Camera/m_90598_ ()V net/minecraft/client/Camera/reset ()V +MD: net/minecraft/client/Camera$NearPlane/ (Lnet/minecraft/world/phys/Vec3;Lnet/minecraft/world/phys/Vec3;Lnet/minecraft/world/phys/Vec3;)V net/minecraft/client/Camera$NearPlane/ (Lnet/minecraft/world/phys/Vec3;Lnet/minecraft/world/phys/Vec3;Lnet/minecraft/world/phys/Vec3;)V +MD: net/minecraft/client/Camera$NearPlane/m_167694_ ()Lnet/minecraft/world/phys/Vec3; net/minecraft/client/Camera$NearPlane/getTopLeft ()Lnet/minecraft/world/phys/Vec3; +MD: net/minecraft/client/Camera$NearPlane/m_167695_ (FF)Lnet/minecraft/world/phys/Vec3; net/minecraft/client/Camera$NearPlane/getPointOnPlane (FF)Lnet/minecraft/world/phys/Vec3; +MD: net/minecraft/client/Camera$NearPlane/m_167698_ ()Lnet/minecraft/world/phys/Vec3; net/minecraft/client/Camera$NearPlane/getTopRight ()Lnet/minecraft/world/phys/Vec3; +MD: net/minecraft/client/Camera$NearPlane/m_167699_ ()Lnet/minecraft/world/phys/Vec3; net/minecraft/client/Camera$NearPlane/getBottomLeft ()Lnet/minecraft/world/phys/Vec3; +MD: net/minecraft/client/Camera$NearPlane/m_167700_ ()Lnet/minecraft/world/phys/Vec3; net/minecraft/client/Camera$NearPlane/getBottomRight ()Lnet/minecraft/world/phys/Vec3; +MD: net/minecraft/client/CameraType/ ()V net/minecraft/client/CameraType/ ()V +MD: net/minecraft/client/CameraType/ (Ljava/lang/String;IZZ)V net/minecraft/client/CameraType/ (Ljava/lang/String;IZZ)V +MD: net/minecraft/client/CameraType/m_167703_ ()[Lnet/minecraft/client/CameraType; net/minecraft/client/CameraType/$values ()[Lnet/minecraft/client/CameraType; +MD: net/minecraft/client/CameraType/m_90612_ ()Z net/minecraft/client/CameraType/isFirstPerson ()Z +MD: net/minecraft/client/CameraType/m_90613_ ()Z net/minecraft/client/CameraType/isMirrored ()Z +MD: net/minecraft/client/CameraType/m_90614_ ()Lnet/minecraft/client/CameraType; net/minecraft/client/CameraType/cycle ()Lnet/minecraft/client/CameraType; +MD: net/minecraft/client/CameraType/valueOf (Ljava/lang/String;)Lnet/minecraft/client/CameraType; net/minecraft/client/CameraType/valueOf (Ljava/lang/String;)Lnet/minecraft/client/CameraType; +MD: net/minecraft/client/CameraType/values ()[Lnet/minecraft/client/CameraType; net/minecraft/client/CameraType/values ()[Lnet/minecraft/client/CameraType; +MD: net/minecraft/client/ClientBrandRetriever/ ()V net/minecraft/client/ClientBrandRetriever/ ()V +MD: net/minecraft/client/ClientBrandRetriever/getClientModName ()Ljava/lang/String; net/minecraft/client/ClientBrandRetriever/getClientModName ()Ljava/lang/String; +MD: net/minecraft/client/ClientRecipeBook/ ()V net/minecraft/client/ClientRecipeBook/ ()V +MD: net/minecraft/client/ClientRecipeBook/ ()V net/minecraft/client/ClientRecipeBook/ ()V +MD: net/minecraft/client/ClientRecipeBook/m_167704_ (Ljava/util/Map;Lnet/minecraft/client/RecipeBookCategories;)Ljava/util/stream/Stream; net/minecraft/client/ClientRecipeBook/lambda$setupCollections$2 (Ljava/util/Map;Lnet/minecraft/client/RecipeBookCategories;)Ljava/util/stream/Stream; +MD: net/minecraft/client/ClientRecipeBook/m_257059_ (Lnet/minecraft/world/item/crafting/Recipe;)Ljava/lang/Object; net/minecraft/client/ClientRecipeBook/lambda$getCategory$6 (Lnet/minecraft/world/item/crafting/Recipe;)Ljava/lang/Object; +MD: net/minecraft/client/ClientRecipeBook/m_266117_ (Ljava/util/Map;Lnet/minecraft/core/RegistryAccess;Lcom/google/common/collect/ImmutableList$Builder;Lnet/minecraft/client/RecipeBookCategories;Ljava/util/List;)V net/minecraft/client/ClientRecipeBook/lambda$setupCollections$1 (Ljava/util/Map;Lnet/minecraft/core/RegistryAccess;Lcom/google/common/collect/ImmutableList$Builder;Lnet/minecraft/client/RecipeBookCategories;Ljava/util/List;)V +MD: net/minecraft/client/ClientRecipeBook/m_266118_ (Lnet/minecraft/core/RegistryAccess;Ljava/util/List;)Lnet/minecraft/client/gui/screens/recipebook/RecipeCollection; net/minecraft/client/ClientRecipeBook/lambda$setupCollections$0 (Lnet/minecraft/core/RegistryAccess;Ljava/util/List;)Lnet/minecraft/client/gui/screens/recipebook/RecipeCollection; +MD: net/minecraft/client/ClientRecipeBook/m_266394_ (Ljava/lang/Iterable;Lnet/minecraft/core/RegistryAccess;)V net/minecraft/client/ClientRecipeBook/setupCollections (Ljava/lang/Iterable;Lnet/minecraft/core/RegistryAccess;)V +MD: net/minecraft/client/ClientRecipeBook/m_90623_ (Lnet/minecraft/client/RecipeBookCategories;)Ljava/util/List; net/minecraft/client/ClientRecipeBook/getCollection (Lnet/minecraft/client/RecipeBookCategories;)Ljava/util/List; +MD: net/minecraft/client/ClientRecipeBook/m_90635_ (Ljava/util/Map;Lnet/minecraft/client/RecipeBookCategories;Ljava/util/List;)V net/minecraft/client/ClientRecipeBook/lambda$setupCollections$3 (Ljava/util/Map;Lnet/minecraft/client/RecipeBookCategories;Ljava/util/List;)V +MD: net/minecraft/client/ClientRecipeBook/m_90639_ ()Ljava/util/List; net/minecraft/client/ClientRecipeBook/getCollections ()Ljava/util/List; +MD: net/minecraft/client/ClientRecipeBook/m_90640_ (Lnet/minecraft/client/RecipeBookCategories;)Ljava/util/List; net/minecraft/client/ClientRecipeBook/lambda$categorizeAndGroupRecipes$5 (Lnet/minecraft/client/RecipeBookCategories;)Ljava/util/List; +MD: net/minecraft/client/ClientRecipeBook/m_90642_ (Ljava/lang/Iterable;)Ljava/util/Map; net/minecraft/client/ClientRecipeBook/categorizeAndGroupRecipes (Ljava/lang/Iterable;)Ljava/util/Map; +MD: net/minecraft/client/ClientRecipeBook/m_90644_ (Lnet/minecraft/client/RecipeBookCategories;)Ljava/util/List; net/minecraft/client/ClientRecipeBook/lambda$categorizeAndGroupRecipes$4 (Lnet/minecraft/client/RecipeBookCategories;)Ljava/util/List; +MD: net/minecraft/client/ClientRecipeBook/m_90646_ (Lnet/minecraft/world/item/crafting/Recipe;)Lnet/minecraft/client/RecipeBookCategories; net/minecraft/client/ClientRecipeBook/getCategory (Lnet/minecraft/world/item/crafting/Recipe;)Lnet/minecraft/client/RecipeBookCategories; +MD: net/minecraft/client/ClientRecipeBook$1/ ()V net/minecraft/client/ClientRecipeBook$1/ ()V +MD: net/minecraft/client/CloudStatus/ ()V net/minecraft/client/CloudStatus/ ()V +MD: net/minecraft/client/CloudStatus/ (Ljava/lang/String;IILjava/lang/String;)V net/minecraft/client/CloudStatus/ (Ljava/lang/String;IILjava/lang/String;)V +MD: net/minecraft/client/CloudStatus/m_167711_ ()[Lnet/minecraft/client/CloudStatus; net/minecraft/client/CloudStatus/$values ()[Lnet/minecraft/client/CloudStatus; +MD: net/minecraft/client/CloudStatus/m_35965_ ()I net/minecraft/client/CloudStatus/getId ()I +MD: net/minecraft/client/CloudStatus/m_35968_ ()Ljava/lang/String; net/minecraft/client/CloudStatus/getKey ()Ljava/lang/String; +MD: net/minecraft/client/CloudStatus/valueOf (Ljava/lang/String;)Lnet/minecraft/client/CloudStatus; net/minecraft/client/CloudStatus/valueOf (Ljava/lang/String;)Lnet/minecraft/client/CloudStatus; +MD: net/minecraft/client/CloudStatus/values ()[Lnet/minecraft/client/CloudStatus; net/minecraft/client/CloudStatus/values ()[Lnet/minecraft/client/CloudStatus; +MD: net/minecraft/client/ComponentCollector/ ()V net/minecraft/client/ComponentCollector/ ()V +MD: net/minecraft/client/ComponentCollector/m_167712_ ()V net/minecraft/client/ComponentCollector/reset ()V +MD: net/minecraft/client/ComponentCollector/m_90674_ ()Lnet/minecraft/network/chat/FormattedText; net/minecraft/client/ComponentCollector/getResult ()Lnet/minecraft/network/chat/FormattedText; +MD: net/minecraft/client/ComponentCollector/m_90675_ (Lnet/minecraft/network/chat/FormattedText;)V net/minecraft/client/ComponentCollector/append (Lnet/minecraft/network/chat/FormattedText;)V +MD: net/minecraft/client/ComponentCollector/m_90677_ ()Lnet/minecraft/network/chat/FormattedText; net/minecraft/client/ComponentCollector/getResultOrEmpty ()Lnet/minecraft/network/chat/FormattedText; +MD: net/minecraft/client/DebugQueryHandler/ (Lnet/minecraft/client/multiplayer/ClientPacketListener;)V net/minecraft/client/DebugQueryHandler/ (Lnet/minecraft/client/multiplayer/ClientPacketListener;)V +MD: net/minecraft/client/DebugQueryHandler/m_90702_ (ILjava/util/function/Consumer;)V net/minecraft/client/DebugQueryHandler/queryEntityTag (ILjava/util/function/Consumer;)V +MD: net/minecraft/client/DebugQueryHandler/m_90705_ (ILnet/minecraft/nbt/CompoundTag;)Z net/minecraft/client/DebugQueryHandler/handleResponse (ILnet/minecraft/nbt/CompoundTag;)Z +MD: net/minecraft/client/DebugQueryHandler/m_90708_ (Lnet/minecraft/core/BlockPos;Ljava/util/function/Consumer;)V net/minecraft/client/DebugQueryHandler/queryBlockEntityTag (Lnet/minecraft/core/BlockPos;Ljava/util/function/Consumer;)V +MD: net/minecraft/client/DebugQueryHandler/m_90711_ (Ljava/util/function/Consumer;)I net/minecraft/client/DebugQueryHandler/startTransaction (Ljava/util/function/Consumer;)I +MD: net/minecraft/client/GameNarrator/ ()V net/minecraft/client/GameNarrator/ ()V +MD: net/minecraft/client/GameNarrator/ (Lnet/minecraft/client/Minecraft;)V net/minecraft/client/GameNarrator/ (Lnet/minecraft/client/Minecraft;)V +MD: net/minecraft/client/GameNarrator/m_168785_ (Lnet/minecraft/network/chat/Component;)V net/minecraft/client/GameNarrator/sayNow (Lnet/minecraft/network/chat/Component;)V +MD: net/minecraft/client/GameNarrator/m_168787_ (Ljava/lang/String;)V net/minecraft/client/GameNarrator/logNarratedMessage (Ljava/lang/String;)V +MD: net/minecraft/client/GameNarrator/m_263194_ (Lnet/minecraft/network/chat/Component;)V net/minecraft/client/GameNarrator/sayChat (Lnet/minecraft/network/chat/Component;)V +MD: net/minecraft/client/GameNarrator/m_263195_ (Lnet/minecraft/network/chat/Component;)V net/minecraft/client/GameNarrator/say (Lnet/minecraft/network/chat/Component;)V +MD: net/minecraft/client/GameNarrator/m_288189_ (Z)V net/minecraft/client/GameNarrator/checkStatus (Z)V +MD: net/minecraft/client/GameNarrator/m_93316_ ()Z net/minecraft/client/GameNarrator/isActive ()Z +MD: net/minecraft/client/GameNarrator/m_93317_ (Lnet/minecraft/client/NarratorStatus;)V net/minecraft/client/GameNarrator/updateNarratorStatus (Lnet/minecraft/client/NarratorStatus;)V +MD: net/minecraft/client/GameNarrator/m_93319_ (Ljava/lang/String;)V net/minecraft/client/GameNarrator/sayNow (Ljava/lang/String;)V +MD: net/minecraft/client/GameNarrator/m_93328_ ()V net/minecraft/client/GameNarrator/clear ()V +MD: net/minecraft/client/GameNarrator/m_93329_ ()V net/minecraft/client/GameNarrator/destroy ()V +MD: net/minecraft/client/GameNarrator/m_93330_ ()Lnet/minecraft/client/NarratorStatus; net/minecraft/client/GameNarrator/getStatus ()Lnet/minecraft/client/NarratorStatus; +MD: net/minecraft/client/GameNarrator$NarratorInitException/ (Ljava/lang/String;)V net/minecraft/client/GameNarrator$NarratorInitException/ (Ljava/lang/String;)V +MD: net/minecraft/client/GraphicsStatus/ ()V net/minecraft/client/GraphicsStatus/ ()V +MD: net/minecraft/client/GraphicsStatus/ (Ljava/lang/String;IILjava/lang/String;)V net/minecraft/client/GraphicsStatus/ (Ljava/lang/String;IILjava/lang/String;)V +MD: net/minecraft/client/GraphicsStatus/m_167803_ ()[Lnet/minecraft/client/GraphicsStatus; net/minecraft/client/GraphicsStatus/$values ()[Lnet/minecraft/client/GraphicsStatus; +MD: net/minecraft/client/GraphicsStatus/m_35965_ ()I net/minecraft/client/GraphicsStatus/getId ()I +MD: net/minecraft/client/GraphicsStatus/m_35968_ ()Ljava/lang/String; net/minecraft/client/GraphicsStatus/getKey ()Ljava/lang/String; +MD: net/minecraft/client/GraphicsStatus/m_90774_ (I)Lnet/minecraft/client/GraphicsStatus; net/minecraft/client/GraphicsStatus/byId (I)Lnet/minecraft/client/GraphicsStatus; +MD: net/minecraft/client/GraphicsStatus/toString ()Ljava/lang/String; net/minecraft/client/GraphicsStatus/toString ()Ljava/lang/String; +MD: net/minecraft/client/GraphicsStatus/valueOf (Ljava/lang/String;)Lnet/minecraft/client/GraphicsStatus; net/minecraft/client/GraphicsStatus/valueOf (Ljava/lang/String;)Lnet/minecraft/client/GraphicsStatus; +MD: net/minecraft/client/GraphicsStatus/values ()[Lnet/minecraft/client/GraphicsStatus; net/minecraft/client/GraphicsStatus/values ()[Lnet/minecraft/client/GraphicsStatus; +MD: net/minecraft/client/GraphicsStatus$1/ ()V net/minecraft/client/GraphicsStatus$1/ ()V +MD: net/minecraft/client/GuiMessage/ (ILnet/minecraft/network/chat/Component;Lnet/minecraft/network/chat/MessageSignature;Lnet/minecraft/client/GuiMessageTag;)V net/minecraft/client/GuiMessage/ (ILnet/minecraft/network/chat/Component;Lnet/minecraft/network/chat/MessageSignature;Lnet/minecraft/client/GuiMessageTag;)V +MD: net/minecraft/client/GuiMessage/equals (Ljava/lang/Object;)Z net/minecraft/client/GuiMessage/equals (Ljava/lang/Object;)Z +MD: net/minecraft/client/GuiMessage/f_240352_ ()Lnet/minecraft/client/GuiMessageTag; net/minecraft/client/GuiMessage/tag ()Lnet/minecraft/client/GuiMessageTag; +MD: net/minecraft/client/GuiMessage/f_240363_ ()Lnet/minecraft/network/chat/Component; net/minecraft/client/GuiMessage/content ()Lnet/minecraft/network/chat/Component; +MD: net/minecraft/client/GuiMessage/f_240905_ ()Lnet/minecraft/network/chat/MessageSignature; net/minecraft/client/GuiMessage/signature ()Lnet/minecraft/network/chat/MessageSignature; +MD: net/minecraft/client/GuiMessage/f_90786_ ()I net/minecraft/client/GuiMessage/addedTime ()I +MD: net/minecraft/client/GuiMessage/hashCode ()I net/minecraft/client/GuiMessage/hashCode ()I +MD: net/minecraft/client/GuiMessage/toString ()Ljava/lang/String; net/minecraft/client/GuiMessage/toString ()Ljava/lang/String; +MD: net/minecraft/client/GuiMessage$Line/ (ILnet/minecraft/util/FormattedCharSequence;Lnet/minecraft/client/GuiMessageTag;Z)V net/minecraft/client/GuiMessage$Line/ (ILnet/minecraft/util/FormattedCharSequence;Lnet/minecraft/client/GuiMessageTag;Z)V +MD: net/minecraft/client/GuiMessage$Line/equals (Ljava/lang/Object;)Z net/minecraft/client/GuiMessage$Line/equals (Ljava/lang/Object;)Z +MD: net/minecraft/client/GuiMessage$Line/f_240339_ ()Lnet/minecraft/util/FormattedCharSequence; net/minecraft/client/GuiMessage$Line/content ()Lnet/minecraft/util/FormattedCharSequence; +MD: net/minecraft/client/GuiMessage$Line/f_240350_ ()I net/minecraft/client/GuiMessage$Line/addedTime ()I +MD: net/minecraft/client/GuiMessage$Line/f_240351_ ()Lnet/minecraft/client/GuiMessageTag; net/minecraft/client/GuiMessage$Line/tag ()Lnet/minecraft/client/GuiMessageTag; +MD: net/minecraft/client/GuiMessage$Line/f_240367_ ()Z net/minecraft/client/GuiMessage$Line/endOfEntry ()Z +MD: net/minecraft/client/GuiMessage$Line/hashCode ()I net/minecraft/client/GuiMessage$Line/hashCode ()I +MD: net/minecraft/client/GuiMessage$Line/toString ()Ljava/lang/String; net/minecraft/client/GuiMessage$Line/toString ()Ljava/lang/String; +MD: net/minecraft/client/GuiMessageTag/ ()V net/minecraft/client/GuiMessageTag/ ()V +MD: net/minecraft/client/GuiMessageTag/ (ILnet/minecraft/client/GuiMessageTag$Icon;Lnet/minecraft/network/chat/Component;Ljava/lang/String;)V net/minecraft/client/GuiMessageTag/ (ILnet/minecraft/client/GuiMessageTag$Icon;Lnet/minecraft/network/chat/Component;Ljava/lang/String;)V +MD: net/minecraft/client/GuiMessageTag/equals (Ljava/lang/Object;)Z net/minecraft/client/GuiMessageTag/equals (Ljava/lang/Object;)Z +MD: net/minecraft/client/GuiMessageTag/f_240342_ ()Ljava/lang/String; net/minecraft/client/GuiMessageTag/logTag ()Ljava/lang/String; +MD: net/minecraft/client/GuiMessageTag/f_240355_ ()Lnet/minecraft/client/GuiMessageTag$Icon; net/minecraft/client/GuiMessageTag/icon ()Lnet/minecraft/client/GuiMessageTag$Icon; +MD: net/minecraft/client/GuiMessageTag/f_240381_ ()Lnet/minecraft/network/chat/Component; net/minecraft/client/GuiMessageTag/text ()Lnet/minecraft/network/chat/Component; +MD: net/minecraft/client/GuiMessageTag/f_240386_ ()I net/minecraft/client/GuiMessageTag/indicatorColor ()I +MD: net/minecraft/client/GuiMessageTag/hashCode ()I net/minecraft/client/GuiMessageTag/hashCode ()I +MD: net/minecraft/client/GuiMessageTag/m_240400_ ()Lnet/minecraft/client/GuiMessageTag; net/minecraft/client/GuiMessageTag/chatNotSecure ()Lnet/minecraft/client/GuiMessageTag; +MD: net/minecraft/client/GuiMessageTag/m_240466_ (Ljava/lang/String;)Lnet/minecraft/client/GuiMessageTag; net/minecraft/client/GuiMessageTag/chatModified (Ljava/lang/String;)Lnet/minecraft/client/GuiMessageTag; +MD: net/minecraft/client/GuiMessageTag/m_240701_ ()Lnet/minecraft/client/GuiMessageTag; net/minecraft/client/GuiMessageTag/system ()Lnet/minecraft/client/GuiMessageTag; +MD: net/minecraft/client/GuiMessageTag/m_257673_ ()Lnet/minecraft/client/GuiMessageTag; net/minecraft/client/GuiMessageTag/systemSinglePlayer ()Lnet/minecraft/client/GuiMessageTag; +MD: net/minecraft/client/GuiMessageTag/toString ()Ljava/lang/String; net/minecraft/client/GuiMessageTag/toString ()Ljava/lang/String; +MD: net/minecraft/client/GuiMessageTag$Icon/ ()V net/minecraft/client/GuiMessageTag$Icon/ ()V +MD: net/minecraft/client/GuiMessageTag$Icon/ (Ljava/lang/String;IIIII)V net/minecraft/client/GuiMessageTag$Icon/ (Ljava/lang/String;IIIII)V +MD: net/minecraft/client/GuiMessageTag$Icon/m_240404_ ()[Lnet/minecraft/client/GuiMessageTag$Icon; net/minecraft/client/GuiMessageTag$Icon/$values ()[Lnet/minecraft/client/GuiMessageTag$Icon; +MD: net/minecraft/client/GuiMessageTag$Icon/m_280252_ (Lnet/minecraft/client/gui/GuiGraphics;II)V net/minecraft/client/GuiMessageTag$Icon/draw (Lnet/minecraft/client/gui/GuiGraphics;II)V +MD: net/minecraft/client/GuiMessageTag$Icon/valueOf (Ljava/lang/String;)Lnet/minecraft/client/GuiMessageTag$Icon; net/minecraft/client/GuiMessageTag$Icon/valueOf (Ljava/lang/String;)Lnet/minecraft/client/GuiMessageTag$Icon; +MD: net/minecraft/client/GuiMessageTag$Icon/values ()[Lnet/minecraft/client/GuiMessageTag$Icon; net/minecraft/client/GuiMessageTag$Icon/values ()[Lnet/minecraft/client/GuiMessageTag$Icon; +MD: net/minecraft/client/HotbarManager/ ()V net/minecraft/client/HotbarManager/ ()V +MD: net/minecraft/client/HotbarManager/ (Ljava/io/File;Lcom/mojang/datafixers/DataFixer;)V net/minecraft/client/HotbarManager/ (Ljava/io/File;Lcom/mojang/datafixers/DataFixer;)V +MD: net/minecraft/client/HotbarManager/m_90805_ ()V net/minecraft/client/HotbarManager/save ()V +MD: net/minecraft/client/HotbarManager/m_90806_ (I)Lnet/minecraft/client/player/inventory/Hotbar; net/minecraft/client/HotbarManager/get (I)Lnet/minecraft/client/player/inventory/Hotbar; +MD: net/minecraft/client/HotbarManager/m_90808_ ()V net/minecraft/client/HotbarManager/load ()V +MD: net/minecraft/client/InputType/ ()V net/minecraft/client/InputType/ ()V +MD: net/minecraft/client/InputType/ (Ljava/lang/String;I)V net/minecraft/client/InputType/ (Ljava/lang/String;I)V +MD: net/minecraft/client/InputType/m_264153_ ()[Lnet/minecraft/client/InputType; net/minecraft/client/InputType/$values ()[Lnet/minecraft/client/InputType; +MD: net/minecraft/client/InputType/m_264505_ ()Z net/minecraft/client/InputType/isKeyboard ()Z +MD: net/minecraft/client/InputType/m_264588_ ()Z net/minecraft/client/InputType/isMouse ()Z +MD: net/minecraft/client/InputType/valueOf (Ljava/lang/String;)Lnet/minecraft/client/InputType; net/minecraft/client/InputType/valueOf (Ljava/lang/String;)Lnet/minecraft/client/InputType; +MD: net/minecraft/client/InputType/values ()[Lnet/minecraft/client/InputType; net/minecraft/client/InputType/values ()[Lnet/minecraft/client/InputType; +MD: net/minecraft/client/KeyMapping/ ()V net/minecraft/client/KeyMapping/ ()V +MD: net/minecraft/client/KeyMapping/ (Ljava/lang/String;ILjava/lang/String;)V net/minecraft/client/KeyMapping/ (Ljava/lang/String;ILjava/lang/String;)V +MD: net/minecraft/client/KeyMapping/ (Ljava/lang/String;Lcom/mojang/blaze3d/platform/InputConstants$Type;ILjava/lang/String;)V net/minecraft/client/KeyMapping/ (Ljava/lang/String;Lcom/mojang/blaze3d/platform/InputConstants$Type;ILjava/lang/String;)V +MD: net/minecraft/client/KeyMapping/compareTo (Ljava/lang/Object;)I net/minecraft/client/KeyMapping/compareTo (Ljava/lang/Object;)I +MD: net/minecraft/client/KeyMapping/compareTo (Lnet/minecraft/client/KeyMapping;)I net/minecraft/client/KeyMapping/compareTo (Lnet/minecraft/client/KeyMapping;)I +MD: net/minecraft/client/KeyMapping/m_289723_ ()V net/minecraft/client/KeyMapping/resetToggleKeys ()V +MD: net/minecraft/client/KeyMapping/m_7249_ (Z)V net/minecraft/client/KeyMapping/setDown (Z)V +MD: net/minecraft/client/KeyMapping/m_90829_ ()V net/minecraft/client/KeyMapping/setAll ()V +MD: net/minecraft/client/KeyMapping/m_90830_ (I)Z net/minecraft/client/KeyMapping/matchesMouse (I)Z +MD: net/minecraft/client/KeyMapping/m_90832_ (II)Z net/minecraft/client/KeyMapping/matches (II)Z +MD: net/minecraft/client/KeyMapping/m_90835_ (Lcom/mojang/blaze3d/platform/InputConstants$Key;)V net/minecraft/client/KeyMapping/click (Lcom/mojang/blaze3d/platform/InputConstants$Key;)V +MD: net/minecraft/client/KeyMapping/m_90837_ (Lcom/mojang/blaze3d/platform/InputConstants$Key;Z)V net/minecraft/client/KeyMapping/set (Lcom/mojang/blaze3d/platform/InputConstants$Key;Z)V +MD: net/minecraft/client/KeyMapping/m_90842_ (Ljava/lang/String;)Ljava/util/function/Supplier; net/minecraft/client/KeyMapping/createNameSupplier (Ljava/lang/String;)Ljava/util/function/Supplier; +MD: net/minecraft/client/KeyMapping/m_90844_ (Ljava/util/HashMap;)V net/minecraft/client/KeyMapping/lambda$static$0 (Ljava/util/HashMap;)V +MD: net/minecraft/client/KeyMapping/m_90847_ ()V net/minecraft/client/KeyMapping/releaseAll ()V +MD: net/minecraft/client/KeyMapping/m_90848_ (Lcom/mojang/blaze3d/platform/InputConstants$Key;)V net/minecraft/client/KeyMapping/setKey (Lcom/mojang/blaze3d/platform/InputConstants$Key;)V +MD: net/minecraft/client/KeyMapping/m_90850_ (Lnet/minecraft/client/KeyMapping;)Z net/minecraft/client/KeyMapping/same (Lnet/minecraft/client/KeyMapping;)Z +MD: net/minecraft/client/KeyMapping/m_90852_ (Ljava/lang/String;)Lnet/minecraft/network/chat/Component; net/minecraft/client/KeyMapping/lambda$createNameSupplier$1 (Ljava/lang/String;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/client/KeyMapping/m_90854_ ()V net/minecraft/client/KeyMapping/resetMapping ()V +MD: net/minecraft/client/KeyMapping/m_90857_ ()Z net/minecraft/client/KeyMapping/isDown ()Z +MD: net/minecraft/client/KeyMapping/m_90858_ ()Ljava/lang/String; net/minecraft/client/KeyMapping/getCategory ()Ljava/lang/String; +MD: net/minecraft/client/KeyMapping/m_90859_ ()Z net/minecraft/client/KeyMapping/consumeClick ()Z +MD: net/minecraft/client/KeyMapping/m_90860_ ()Ljava/lang/String; net/minecraft/client/KeyMapping/getName ()Ljava/lang/String; +MD: net/minecraft/client/KeyMapping/m_90861_ ()Lcom/mojang/blaze3d/platform/InputConstants$Key; net/minecraft/client/KeyMapping/getDefaultKey ()Lcom/mojang/blaze3d/platform/InputConstants$Key; +MD: net/minecraft/client/KeyMapping/m_90862_ ()Z net/minecraft/client/KeyMapping/isUnbound ()Z +MD: net/minecraft/client/KeyMapping/m_90863_ ()Lnet/minecraft/network/chat/Component; net/minecraft/client/KeyMapping/getTranslatedKeyMessage ()Lnet/minecraft/network/chat/Component; +MD: net/minecraft/client/KeyMapping/m_90864_ ()Z net/minecraft/client/KeyMapping/isDefault ()Z +MD: net/minecraft/client/KeyMapping/m_90865_ ()Ljava/lang/String; net/minecraft/client/KeyMapping/saveString ()Ljava/lang/String; +MD: net/minecraft/client/KeyMapping/m_90866_ ()V net/minecraft/client/KeyMapping/release ()V +MD: net/minecraft/client/KeyboardHandler/ (Lnet/minecraft/client/Minecraft;)V net/minecraft/client/KeyboardHandler/ (Lnet/minecraft/client/Minecraft;)V +MD: net/minecraft/client/KeyboardHandler/m_167813_ (I)Z net/minecraft/client/KeyboardHandler/handleChunkDebugKeys (I)Z +MD: net/minecraft/client/KeyboardHandler/m_167822_ (Lnet/minecraft/network/chat/Component;)V net/minecraft/client/KeyboardHandler/debugFeedbackComponent (Lnet/minecraft/network/chat/Component;)V +MD: net/minecraft/client/KeyboardHandler/m_167824_ (Lnet/minecraft/ChatFormatting;Lnet/minecraft/network/chat/Component;)V net/minecraft/client/KeyboardHandler/debugComponent (Lnet/minecraft/ChatFormatting;Lnet/minecraft/network/chat/Component;)V +MD: net/minecraft/client/KeyboardHandler/m_167827_ (JII)V net/minecraft/client/KeyboardHandler/lambda$setup$10 (JII)V +MD: net/minecraft/client/KeyboardHandler/m_167831_ (JIIII)V net/minecraft/client/KeyboardHandler/lambda$setup$8 (JIIII)V +MD: net/minecraft/client/KeyboardHandler/m_167837_ (Ljava/lang/String;[Ljava/lang/Object;)V net/minecraft/client/KeyboardHandler/debugFeedback (Ljava/lang/String;[Ljava/lang/Object;)V +MD: net/minecraft/client/KeyboardHandler/m_167840_ (Lnet/minecraft/network/chat/Component;)V net/minecraft/client/KeyboardHandler/lambda$keyPress$3 (Lnet/minecraft/network/chat/Component;)V +MD: net/minecraft/client/KeyboardHandler/m_260734_ (ILnet/minecraft/client/gui/screens/Screen;[ZIII)V net/minecraft/client/KeyboardHandler/lambda$keyPress$5 (ILnet/minecraft/client/gui/screens/Screen;[ZIII)V +MD: net/minecraft/client/KeyboardHandler/m_276074_ (Ljava/nio/file/Path;Lnet/minecraft/network/chat/Style;)Lnet/minecraft/network/chat/Style; net/minecraft/client/KeyboardHandler/lambda$handleDebugKeys$0 (Ljava/nio/file/Path;Lnet/minecraft/network/chat/Style;)Lnet/minecraft/network/chat/Style; +MD: net/minecraft/client/KeyboardHandler/m_90876_ ()Ljava/lang/String; net/minecraft/client/KeyboardHandler/getClipboard ()Ljava/lang/String; +MD: net/minecraft/client/KeyboardHandler/m_90877_ (IJ)V net/minecraft/client/KeyboardHandler/lambda$getClipboard$12 (IJ)V +MD: net/minecraft/client/KeyboardHandler/m_90887_ (J)V net/minecraft/client/KeyboardHandler/setup (J)V +MD: net/minecraft/client/KeyboardHandler/m_90889_ (JII)V net/minecraft/client/KeyboardHandler/charTyped (JII)V +MD: net/minecraft/client/KeyboardHandler/m_90893_ (JIIII)V net/minecraft/client/KeyboardHandler/keyPress (JIIII)V +MD: net/minecraft/client/KeyboardHandler/m_90899_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/BlockPos;Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/client/KeyboardHandler/copyCreateBlockCommand (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/BlockPos;Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/client/KeyboardHandler/m_90903_ (Lnet/minecraft/client/gui/components/events/GuiEventListener;CI)V net/minecraft/client/KeyboardHandler/lambda$charTyped$7 (Lnet/minecraft/client/gui/components/events/GuiEventListener;CI)V +MD: net/minecraft/client/KeyboardHandler/m_90907_ (Lnet/minecraft/client/gui/components/events/GuiEventListener;II)V net/minecraft/client/KeyboardHandler/lambda$charTyped$6 (Lnet/minecraft/client/gui/components/events/GuiEventListener;II)V +MD: net/minecraft/client/KeyboardHandler/m_90911_ (Ljava/lang/String;)V net/minecraft/client/KeyboardHandler/setClipboard (Ljava/lang/String;)V +MD: net/minecraft/client/KeyboardHandler/m_90913_ (Ljava/lang/String;[Ljava/lang/Object;)V net/minecraft/client/KeyboardHandler/debugFeedbackTranslated (Ljava/lang/String;[Ljava/lang/Object;)V +MD: net/minecraft/client/KeyboardHandler/m_90916_ (Lnet/minecraft/network/chat/Component;)V net/minecraft/client/KeyboardHandler/lambda$keyPress$4 (Lnet/minecraft/network/chat/Component;)V +MD: net/minecraft/client/KeyboardHandler/m_90918_ (Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/world/entity/Entity;Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/client/KeyboardHandler/lambda$copyRecreateCommand$2 (Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/world/entity/Entity;Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/client/KeyboardHandler/m_90922_ (Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/world/phys/Vec3;Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/client/KeyboardHandler/copyCreateEntityCommand (Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/world/phys/Vec3;Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/client/KeyboardHandler/m_90928_ (ZZ)V net/minecraft/client/KeyboardHandler/copyRecreateCommand (ZZ)V +MD: net/minecraft/client/KeyboardHandler/m_90931_ ()V net/minecraft/client/KeyboardHandler/tick ()V +MD: net/minecraft/client/KeyboardHandler/m_90932_ (I)Z net/minecraft/client/KeyboardHandler/handleDebugKeys (I)Z +MD: net/minecraft/client/KeyboardHandler/m_90934_ (JII)V net/minecraft/client/KeyboardHandler/lambda$setup$11 (JII)V +MD: net/minecraft/client/KeyboardHandler/m_90938_ (JIIII)V net/minecraft/client/KeyboardHandler/lambda$setup$9 (JIIII)V +MD: net/minecraft/client/KeyboardHandler/m_90944_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/BlockPos;Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/client/KeyboardHandler/lambda$copyRecreateCommand$1 (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/BlockPos;Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/client/KeyboardHandler/m_90948_ (Ljava/lang/String;[Ljava/lang/Object;)V net/minecraft/client/KeyboardHandler/debugWarningTranslated (Ljava/lang/String;[Ljava/lang/Object;)V +MD: net/minecraft/client/KeyboardHandler$1/ ()V net/minecraft/client/KeyboardHandler$1/ ()V +MD: net/minecraft/client/Minecraft/ ()V net/minecraft/client/Minecraft/ ()V +MD: net/minecraft/client/Minecraft/ (Lnet/minecraft/client/main/GameConfig;)V net/minecraft/client/Minecraft/ (Lnet/minecraft/client/main/GameConfig;)V +MD: net/minecraft/client/Minecraft/close ()V net/minecraft/client/Minecraft/close ()V +MD: net/minecraft/client/Minecraft/m_167850_ (Lnet/minecraft/SystemReport;Lnet/minecraft/client/Minecraft;Lnet/minecraft/client/resources/language/LanguageManager;Ljava/lang/String;Lnet/minecraft/client/Options;)Lnet/minecraft/SystemReport; net/minecraft/client/Minecraft/fillSystemReport (Lnet/minecraft/SystemReport;Lnet/minecraft/client/Minecraft;Lnet/minecraft/client/resources/language/LanguageManager;Ljava/lang/String;Lnet/minecraft/client/Options;)Lnet/minecraft/SystemReport; +MD: net/minecraft/client/Minecraft/m_167856_ (Lnet/minecraft/SystemReport;Ljava/util/List;)Ljava/nio/file/Path; net/minecraft/client/Minecraft/archiveProfilingReport (Lnet/minecraft/SystemReport;Ljava/util/List;)Ljava/nio/file/Path; +MD: net/minecraft/client/Minecraft/m_167872_ (Lnet/minecraft/client/Minecraft;Lnet/minecraft/client/resources/language/LanguageManager;Ljava/lang/String;Lnet/minecraft/client/Options;Lnet/minecraft/CrashReport;)V net/minecraft/client/Minecraft/fillReport (Lnet/minecraft/client/Minecraft;Lnet/minecraft/client/resources/language/LanguageManager;Ljava/lang/String;Lnet/minecraft/client/Options;Lnet/minecraft/CrashReport;)V +MD: net/minecraft/client/Minecraft/m_167899_ (Ljava/io/File;II)Lnet/minecraft/network/chat/Component; net/minecraft/client/Minecraft/grabPanoramixScreenshot (Ljava/io/File;II)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/client/Minecraft/m_167903_ (Ljava/io/File;IIII)Lnet/minecraft/network/chat/Component; net/minecraft/client/Minecraft/grabHugeScreenshot (Ljava/io/File;IIII)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/client/Minecraft/m_167946_ (Ljava/util/function/Consumer;)Z net/minecraft/client/Minecraft/debugClientMetricsStart (Ljava/util/function/Consumer;)Z +MD: net/minecraft/client/Minecraft/m_167970_ (ZLnet/minecraft/util/profiling/SingleTickProfiler;)Lnet/minecraft/util/profiling/ProfilerFiller; net/minecraft/client/Minecraft/constructProfiler (ZLnet/minecraft/util/profiling/SingleTickProfiler;)Lnet/minecraft/util/profiling/ProfilerFiller; +MD: net/minecraft/client/Minecraft/m_167973_ ()Lnet/minecraft/client/model/geom/EntityModelSet; net/minecraft/client/Minecraft/getEntityModels ()Lnet/minecraft/client/model/geom/EntityModelSet; +MD: net/minecraft/client/Minecraft/m_167974_ ()Z net/minecraft/client/Minecraft/isTextFilteringEnabled ()Z +MD: net/minecraft/client/Minecraft/m_167975_ ()V net/minecraft/client/Minecraft/debugClientMetricsStop ()V +MD: net/minecraft/client/Minecraft/m_167982_ ()Lnet/minecraft/client/renderer/blockentity/BlockEntityRenderDispatcher; net/minecraft/client/Minecraft/getBlockEntityRenderDispatcher ()Lnet/minecraft/client/renderer/blockentity/BlockEntityRenderDispatcher; +MD: net/minecraft/client/Minecraft/m_167983_ ()Lnet/minecraft/server/level/progress/StoringChunkProgressListener; net/minecraft/client/Minecraft/getProgressListener ()Lnet/minecraft/server/level/progress/StoringChunkProgressListener; +MD: net/minecraft/client/Minecraft/m_168019_ (Z)Ljava/util/concurrent/CompletableFuture; net/minecraft/client/Minecraft/reloadResourcePacks (Z)Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/client/Minecraft/m_168021_ ()Z net/minecraft/client/Minecraft/allowsRealms ()Z +MD: net/minecraft/client/Minecraft/m_168022_ ()Lnet/minecraft/client/Minecraft$ChatStatus; net/minecraft/client/Minecraft/getChatStatus ()Lnet/minecraft/client/Minecraft$ChatStatus; +MD: net/minecraft/client/Minecraft/m_193585_ (Lcom/mojang/authlib/yggdrasil/YggdrasilAuthenticationService;Lnet/minecraft/client/main/GameConfig;)Lcom/mojang/authlib/minecraft/UserApiService; net/minecraft/client/Minecraft/createUserApiService (Lcom/mojang/authlib/yggdrasil/YggdrasilAuthenticationService;Lnet/minecraft/client/main/GameConfig;)Lcom/mojang/authlib/minecraft/UserApiService; +MD: net/minecraft/client/Minecraft/m_193588_ ()V net/minecraft/client/Minecraft/prepareForMultiplayer ()V +MD: net/minecraft/client/Minecraft/m_193589_ ()Lnet/minecraft/util/ModCheck; net/minecraft/client/Minecraft/checkModStatus ()Lnet/minecraft/util/ModCheck; +MD: net/minecraft/client/Minecraft/m_202354_ ()Z net/minecraft/client/Minecraft/startAttack ()Z +MD: net/minecraft/client/Minecraft/m_210744_ (Ljava/util/Optional;)V net/minecraft/client/Minecraft/lambda$new$2 (Ljava/util/Optional;)V +MD: net/minecraft/client/Minecraft/m_210770_ ()Ljava/lang/String; net/minecraft/client/Minecraft/lambda$fillSystemReport$48 ()Ljava/lang/String; +MD: net/minecraft/client/Minecraft/m_210774_ ()I net/minecraft/client/Minecraft/lambda$new$0 ()I +MD: net/minecraft/client/Minecraft/m_210782_ (Ljava/lang/Object;)Z net/minecraft/client/Minecraft/countryEqualsISO3 (Ljava/lang/Object;)Z +MD: net/minecraft/client/Minecraft/m_210806_ (Lnet/minecraft/network/chat/Component;)Ljava/lang/String; net/minecraft/client/Minecraft/lambda$createSearchTrees$5 (Lnet/minecraft/network/chat/Component;)Ljava/lang/String; +MD: net/minecraft/client/Minecraft/m_210808_ (Ljava/lang/String;)Z net/minecraft/client/Minecraft/lambda$createSearchTrees$6 (Ljava/lang/String;)Z +MD: net/minecraft/client/Minecraft/m_231344_ (Lnet/minecraft/server/WorldStem;)Ljava/lang/String; net/minecraft/client/Minecraft/lambda$doWorldLoad$42 (Lnet/minecraft/server/WorldStem;)Ljava/lang/String; +MD: net/minecraft/client/Minecraft/m_231346_ (Lnet/minecraft/SystemReport;Ljava/util/function/Consumer;Ljava/util/List;)V net/minecraft/client/Minecraft/lambda$debugClientMetricsStart$33 (Lnet/minecraft/SystemReport;Ljava/util/function/Consumer;Ljava/util/List;)V +MD: net/minecraft/client/Minecraft/m_231350_ (Lnet/minecraft/util/profiling/ProfileResults;)V net/minecraft/client/Minecraft/lambda$debugClientMetricsStart$36 (Lnet/minecraft/util/profiling/ProfileResults;)V +MD: net/minecraft/client/Minecraft/m_231352_ (Ljava/util/function/Consumer;DI)V net/minecraft/client/Minecraft/lambda$debugClientMetricsStart$28 (Ljava/util/function/Consumer;DI)V +MD: net/minecraft/client/Minecraft/m_231354_ (Ljava/util/List;)Lnet/minecraft/client/searchtree/RefreshableSearchTree; net/minecraft/client/Minecraft/lambda$createSearchTrees$11 (Ljava/util/List;)Lnet/minecraft/client/searchtree/RefreshableSearchTree; +MD: net/minecraft/client/Minecraft/m_231356_ (Lnet/minecraft/world/level/storage/LevelStorageSource$LevelStorageAccess;Lnet/minecraft/server/packs/repository/PackRepository;Lnet/minecraft/server/WorldStem;Lnet/minecraft/server/Services;Ljava/lang/Thread;)Lnet/minecraft/client/server/IntegratedServer; net/minecraft/client/Minecraft/lambda$doWorldLoad$41 (Lnet/minecraft/world/level/storage/LevelStorageSource$LevelStorageAccess;Lnet/minecraft/server/packs/repository/PackRepository;Lnet/minecraft/server/WorldStem;Lnet/minecraft/server/Services;Ljava/lang/Thread;)Lnet/minecraft/client/server/IntegratedServer; +MD: net/minecraft/client/Minecraft/m_231362_ (Lcom/mojang/blaze3d/systems/TimerQuery;)V net/minecraft/client/Minecraft/lambda$runTick$27 (Lcom/mojang/blaze3d/systems/TimerQuery;)V +MD: net/minecraft/client/Minecraft/m_231364_ (Lnet/minecraft/client/Minecraft;)Ljava/lang/String; net/minecraft/client/Minecraft/lambda$fillSystemReport$45 (Lnet/minecraft/client/Minecraft;)Ljava/lang/String; +MD: net/minecraft/client/Minecraft/m_231366_ (Lnet/minecraft/client/Options;)Ljava/lang/String; net/minecraft/client/Minecraft/lambda$fillSystemReport$49 (Lnet/minecraft/client/Options;)Ljava/lang/String; +MD: net/minecraft/client/Minecraft/m_231372_ (Lnet/minecraft/client/searchtree/SearchRegistry$Key;)Lnet/minecraft/client/searchtree/SearchTree; net/minecraft/client/Minecraft/getSearchTree (Lnet/minecraft/client/searchtree/SearchRegistry$Key;)Lnet/minecraft/client/searchtree/SearchTree; +MD: net/minecraft/client/Minecraft/m_231374_ (Lnet/minecraft/client/searchtree/SearchRegistry$Key;Ljava/util/List;)V net/minecraft/client/Minecraft/populateSearchTree (Lnet/minecraft/client/searchtree/SearchRegistry$Key;Ljava/util/List;)V +MD: net/minecraft/client/Minecraft/m_231377_ (Ljava/io/File;Lnet/minecraft/network/chat/Style;)Lnet/minecraft/network/chat/Style; net/minecraft/client/Minecraft/lambda$grabHugeScreenshot$54 (Ljava/io/File;Lnet/minecraft/network/chat/Style;)Lnet/minecraft/network/chat/Style; +MD: net/minecraft/client/Minecraft/m_231385_ (Ljava/util/List;)Lnet/minecraft/client/searchtree/RefreshableSearchTree; net/minecraft/client/Minecraft/lambda$createSearchTrees$9 (Ljava/util/List;)Lnet/minecraft/client/searchtree/RefreshableSearchTree; +MD: net/minecraft/client/Minecraft/m_231390_ (Ljava/util/concurrent/CompletableFuture;)Ljava/util/concurrent/CompletionStage; net/minecraft/client/Minecraft/lambda$delayTextureReload$51 (Ljava/util/concurrent/CompletableFuture;)Ljava/util/concurrent/CompletionStage; +MD: net/minecraft/client/Minecraft/m_231395_ (Ljava/nio/file/Path;Lnet/minecraft/network/chat/Style;)Lnet/minecraft/network/chat/Style; net/minecraft/client/Minecraft/lambda$debugClientMetricsStart$30 (Ljava/nio/file/Path;Lnet/minecraft/network/chat/Style;)Lnet/minecraft/network/chat/Style; +MD: net/minecraft/client/Minecraft/m_231399_ (Ljava/util/function/Consumer;Lnet/minecraft/util/profiling/ProfileResults;)V net/minecraft/client/Minecraft/lambda$debugClientMetricsStart$37 (Ljava/util/function/Consumer;Lnet/minecraft/util/profiling/ProfileResults;)V +MD: net/minecraft/client/Minecraft/m_231402_ (Ljava/util/function/Consumer;Ljava/nio/file/Path;)V net/minecraft/client/Minecraft/lambda$debugClientMetricsStart$34 (Ljava/util/function/Consumer;Ljava/nio/file/Path;)V +MD: net/minecraft/client/Minecraft/m_231405_ (Ljava/util/function/Consumer;Ljava/util/concurrent/CompletableFuture;Ljava/util/concurrent/CompletableFuture;)V net/minecraft/client/Minecraft/lambda$debugClientMetricsStart$35 (Ljava/util/function/Consumer;Ljava/util/concurrent/CompletableFuture;Ljava/util/concurrent/CompletableFuture;)V +MD: net/minecraft/client/Minecraft/m_231409_ (Ljava/util/function/Consumer;Lnet/minecraft/network/chat/Component;)V net/minecraft/client/Minecraft/lambda$debugClientMetricsStart$31 (Ljava/util/function/Consumer;Lnet/minecraft/network/chat/Component;)V +MD: net/minecraft/client/Minecraft/m_231412_ (Lnet/minecraft/CrashReport;)V net/minecraft/client/Minecraft/delayCrash (Lnet/minecraft/CrashReport;)V +MD: net/minecraft/client/Minecraft/m_231414_ (Lnet/minecraft/network/chat/Component;)V net/minecraft/client/Minecraft/lambda$grabPanoramixScreenshot$52 (Lnet/minecraft/network/chat/Component;)V +MD: net/minecraft/client/Minecraft/m_231416_ ()Lnet/minecraft/client/Realms32BitWarningStatus; net/minecraft/client/Minecraft/getRealms32BitWarningStatus ()Lnet/minecraft/client/Realms32BitWarningStatus; +MD: net/minecraft/client/Minecraft/m_231417_ ()Lnet/minecraft/util/SignatureValidator; net/minecraft/client/Minecraft/getProfileKeySignatureValidator ()Lnet/minecraft/util/SignatureValidator; +MD: net/minecraft/client/Minecraft/m_231418_ ()V net/minecraft/client/Minecraft/debugClientMetricsCancel ()V +MD: net/minecraft/client/Minecraft/m_231419_ ()Ljava/lang/String; net/minecraft/client/Minecraft/lambda$fillSystemReport$47 ()Ljava/lang/String; +MD: net/minecraft/client/Minecraft/m_231424_ (Ljava/io/File;Lnet/minecraft/network/chat/Style;)Lnet/minecraft/network/chat/Style; net/minecraft/client/Minecraft/lambda$grabPanoramixScreenshot$53 (Ljava/io/File;Lnet/minecraft/network/chat/Style;)Lnet/minecraft/network/chat/Style; +MD: net/minecraft/client/Minecraft/m_231427_ (Ljava/lang/String;)Ljava/lang/String; net/minecraft/client/Minecraft/lambda$fillSystemReport$44 (Ljava/lang/String;)Ljava/lang/String; +MD: net/minecraft/client/Minecraft/m_231429_ (Lnet/minecraft/world/item/ItemStack;)Ljava/util/stream/Stream; net/minecraft/client/Minecraft/lambda$createSearchTrees$10 (Lnet/minecraft/world/item/ItemStack;)Ljava/util/stream/Stream; +MD: net/minecraft/client/Minecraft/m_231431_ (Ljava/util/concurrent/CompletableFuture;)V net/minecraft/client/Minecraft/lambda$runTick$26 (Ljava/util/concurrent/CompletableFuture;)V +MD: net/minecraft/client/Minecraft/m_231433_ (Ljava/util/function/Consumer;Lnet/minecraft/util/profiling/ProfileResults;)V net/minecraft/client/Minecraft/lambda$debugClientMetricsStart$29 (Ljava/util/function/Consumer;Lnet/minecraft/util/profiling/ProfileResults;)V +MD: net/minecraft/client/Minecraft/m_231436_ (Ljava/util/function/Consumer;Ljava/nio/file/Path;)V net/minecraft/client/Minecraft/lambda$debugClientMetricsStart$32 (Ljava/util/function/Consumer;Ljava/nio/file/Path;)V +MD: net/minecraft/client/Minecraft/m_231439_ (Lnet/minecraft/CrashReport;)V net/minecraft/client/Minecraft/delayCrashRaw (Lnet/minecraft/CrashReport;)V +MD: net/minecraft/client/Minecraft/m_231441_ (Lnet/minecraft/network/chat/Component;)V net/minecraft/client/Minecraft/lambda$doWorldLoad$43 (Lnet/minecraft/network/chat/Component;)V +MD: net/minecraft/client/Minecraft/m_231443_ ()Ljava/lang/String; net/minecraft/client/Minecraft/lambda$fillSystemReport$46 ()Ljava/lang/String; +MD: net/minecraft/client/Minecraft/m_231445_ ()V net/minecraft/client/Minecraft/lambda$tick$38 ()V +MD: net/minecraft/client/Minecraft/m_231446_ (I)Lnet/minecraft/server/level/progress/ChunkProgressListener; net/minecraft/client/Minecraft/lambda$doWorldLoad$40 (I)Lnet/minecraft/server/level/progress/ChunkProgressListener; +MD: net/minecraft/client/Minecraft/m_231448_ (Ljava/lang/String;)Z net/minecraft/client/Minecraft/lambda$createSearchTrees$14 (Ljava/lang/String;)Z +MD: net/minecraft/client/Minecraft/m_231452_ (Ljava/util/concurrent/CompletableFuture;)V net/minecraft/client/Minecraft/lambda$reloadResourcePacks$23 (Ljava/util/concurrent/CompletableFuture;)V +MD: net/minecraft/client/Minecraft/m_231454_ (Lnet/minecraft/network/chat/Component;)Ljava/lang/String; net/minecraft/client/Minecraft/lambda$createSearchTrees$13 (Lnet/minecraft/network/chat/Component;)Ljava/lang/String; +MD: net/minecraft/client/Minecraft/m_231460_ (Lnet/minecraft/CrashReport;)Lnet/minecraft/CrashReport; net/minecraft/client/Minecraft/lambda$delayCrashRaw$21 (Lnet/minecraft/CrashReport;)Lnet/minecraft/CrashReport; +MD: net/minecraft/client/Minecraft/m_231462_ (Lnet/minecraft/CrashReport;)Lnet/minecraft/CrashReport; net/minecraft/client/Minecraft/lambda$delayCrash$20 (Lnet/minecraft/CrashReport;)Lnet/minecraft/CrashReport; +MD: net/minecraft/client/Minecraft/m_231464_ ()D net/minecraft/client/Minecraft/getGpuUtilization ()D +MD: net/minecraft/client/Minecraft/m_231465_ ()Lnet/minecraft/client/multiplayer/ProfileKeyPairManager; net/minecraft/client/Minecraft/getProfileKeyPairManager ()Lnet/minecraft/client/multiplayer/ProfileKeyPairManager; +MD: net/minecraft/client/Minecraft/m_231466_ ()Lnet/minecraft/client/gui/screens/worldselection/WorldOpenFlows; net/minecraft/client/Minecraft/createWorldOpenFlows ()Lnet/minecraft/client/gui/screens/worldselection/WorldOpenFlows; +MD: net/minecraft/client/Minecraft/m_238186_ (Z)V net/minecraft/client/Minecraft/lambda$openChatScreen$25 (Z)V +MD: net/minecraft/client/Minecraft/m_238868_ ()Z net/minecraft/client/Minecraft/lambda$tick$39 ()Z +MD: net/minecraft/client/Minecraft/m_239210_ ()Lcom/mojang/authlib/minecraft/BanDetails; net/minecraft/client/Minecraft/multiplayerBan ()Lcom/mojang/authlib/minecraft/BanDetails; +MD: net/minecraft/client/Minecraft/m_239211_ ()Lnet/minecraft/client/multiplayer/chat/report/ReportingContext; net/minecraft/client/Minecraft/getReportingContext ()Lnet/minecraft/client/multiplayer/chat/report/ReportingContext; +MD: net/minecraft/client/Minecraft/m_239420_ ()Lcom/mojang/realmsclient/gui/RealmsDataFetcher; net/minecraft/client/Minecraft/realmsDataFetcher ()Lcom/mojang/realmsclient/gui/RealmsDataFetcher; +MD: net/minecraft/client/Minecraft/m_239476_ (Lnet/minecraft/client/multiplayer/chat/report/ReportEnvironment;)V net/minecraft/client/Minecraft/updateReportEnvironment (Lnet/minecraft/client/multiplayer/chat/report/ReportEnvironment;)V +MD: net/minecraft/client/Minecraft/m_239929_ ()Z net/minecraft/client/Minecraft/shouldShowBanNotice ()Z +MD: net/minecraft/client/Minecraft/m_240442_ ()Lnet/minecraft/client/multiplayer/chat/ChatListener; net/minecraft/client/Minecraft/getChatListener ()Lnet/minecraft/client/multiplayer/chat/ChatListener; +MD: net/minecraft/client/Minecraft/m_240477_ ()Lnet/minecraft/client/GameNarrator; net/minecraft/client/Minecraft/getNarrator ()Lnet/minecraft/client/GameNarrator; +MD: net/minecraft/client/Minecraft/m_245161_ ()Ljava/nio/file/Path; net/minecraft/client/Minecraft/getResourcePackDirectory ()Ljava/nio/file/Path; +MD: net/minecraft/client/Minecraft/m_246804_ ()Lnet/minecraft/server/packs/VanillaPackResources; net/minecraft/client/Minecraft/getVanillaPackResources ()Lnet/minecraft/server/packs/VanillaPackResources; +MD: net/minecraft/client/Minecraft/m_247489_ ()Lnet/minecraft/client/resources/DownloadedPackSource; net/minecraft/client/Minecraft/getDownloadedPackSource ()Lnet/minecraft/client/resources/DownloadedPackSource; +MD: net/minecraft/client/Minecraft/m_254754_ (Ljava/util/List;)V net/minecraft/client/Minecraft/lambda$createSearchTrees$19 (Ljava/util/List;)V +MD: net/minecraft/client/Minecraft/m_257060_ (Lnet/minecraft/world/item/ItemStack;)Ljava/util/stream/Stream; net/minecraft/client/Minecraft/lambda$createSearchTrees$7 (Lnet/minecraft/world/item/ItemStack;)Ljava/util/stream/Stream; +MD: net/minecraft/client/Minecraft/m_257063_ (Lnet/minecraft/world/item/ItemStack;)Ljava/util/stream/Stream; net/minecraft/client/Minecraft/lambda$createSearchTrees$8 (Lnet/minecraft/world/item/ItemStack;)Ljava/util/stream/Stream; +MD: net/minecraft/client/Minecraft/m_257720_ ()Z net/minecraft/client/Minecraft/isSingleplayer ()Z +MD: net/minecraft/client/Minecraft/m_260875_ ()I net/minecraft/client/Minecraft/getFps ()I +MD: net/minecraft/client/Minecraft/m_260979_ ()Z net/minecraft/client/Minecraft/telemetryOptInExtra ()Z +MD: net/minecraft/client/Minecraft/m_261007_ ()Lnet/minecraft/client/telemetry/ClientTelemetryManager; net/minecraft/client/Minecraft/getTelemetryManager ()Lnet/minecraft/client/telemetry/ClientTelemetryManager; +MD: net/minecraft/client/Minecraft/m_261031_ (Ljava/lang/String;Lnet/minecraft/world/level/storage/LevelStorageSource$LevelStorageAccess;Lnet/minecraft/server/packs/repository/PackRepository;Lnet/minecraft/server/WorldStem;Z)V net/minecraft/client/Minecraft/doWorldLoad (Ljava/lang/String;Lnet/minecraft/world/level/storage/LevelStorageSource$LevelStorageAccess;Lnet/minecraft/server/packs/repository/PackRepository;Lnet/minecraft/server/WorldStem;Z)V +MD: net/minecraft/client/Minecraft/m_261169_ ()J net/minecraft/client/Minecraft/getFrameTimeNs ()J +MD: net/minecraft/client/Minecraft/m_261210_ ()Z net/minecraft/client/Minecraft/allowsTelemetry ()Z +MD: net/minecraft/client/Minecraft/m_261227_ ()Z net/minecraft/client/Minecraft/extraTelemetryAvailable ()Z +MD: net/minecraft/client/Minecraft/m_263196_ (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/level/block/entity/BlockEntity;)V net/minecraft/client/Minecraft/addCustomNbtData (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/level/block/entity/BlockEntity;)V +MD: net/minecraft/client/Minecraft/m_263856_ (Lnet/minecraft/client/resources/language/LanguageManager;)Ljava/lang/String; net/minecraft/client/Minecraft/lambda$fillSystemReport$50 (Lnet/minecraft/client/resources/language/LanguageManager;)Ljava/lang/String; +MD: net/minecraft/client/Minecraft/m_264033_ (Lnet/minecraft/client/InputType;)V net/minecraft/client/Minecraft/setLastInputType (Lnet/minecraft/client/InputType;)V +MD: net/minecraft/client/Minecraft/m_264529_ ()Lnet/minecraft/client/InputType; net/minecraft/client/Minecraft/getLastInputType ()Lnet/minecraft/client/InputType; +MD: net/minecraft/client/Minecraft/m_266119_ (Lnet/minecraft/client/gui/screens/recipebook/RecipeCollection;Lnet/minecraft/world/item/crafting/Recipe;)Ljava/util/stream/Stream; net/minecraft/client/Minecraft/lambda$createSearchTrees$12 (Lnet/minecraft/client/gui/screens/recipebook/RecipeCollection;Lnet/minecraft/world/item/crafting/Recipe;)Ljava/util/stream/Stream; +MD: net/minecraft/client/Minecraft/m_266120_ (Lnet/minecraft/client/gui/screens/recipebook/RecipeCollection;)Ljava/util/stream/Stream; net/minecraft/client/Minecraft/lambda$createSearchTrees$17 (Lnet/minecraft/client/gui/screens/recipebook/RecipeCollection;)Ljava/util/stream/Stream; +MD: net/minecraft/client/Minecraft/m_266121_ (Lnet/minecraft/client/gui/screens/recipebook/RecipeCollection;Lnet/minecraft/world/item/crafting/Recipe;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/client/Minecraft/lambda$createSearchTrees$16 (Lnet/minecraft/client/gui/screens/recipebook/RecipeCollection;Lnet/minecraft/world/item/crafting/Recipe;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/client/Minecraft/m_266122_ (Lnet/minecraft/client/gui/screens/recipebook/RecipeCollection;)Ljava/util/stream/Stream; net/minecraft/client/Minecraft/lambda$createSearchTrees$15 (Lnet/minecraft/client/gui/screens/recipebook/RecipeCollection;)Ljava/util/stream/Stream; +MD: net/minecraft/client/Minecraft/m_271547_ (ZLjava/util/concurrent/CompletableFuture;Ljava/util/Optional;)V net/minecraft/client/Minecraft/lambda$reloadResourcePacks$24 (ZLjava/util/concurrent/CompletableFuture;Ljava/util/Optional;)V +MD: net/minecraft/client/Minecraft/m_271548_ (ZLjava/lang/Throwable;)V net/minecraft/client/Minecraft/lambda$reloadResourcePacks$22 (ZLjava/lang/Throwable;)V +MD: net/minecraft/client/Minecraft/m_271549_ (Lnet/minecraft/network/chat/Component;)V net/minecraft/client/Minecraft/lambda$clearResourcePacksOnError$4 (Lnet/minecraft/network/chat/Component;)V +MD: net/minecraft/client/Minecraft/m_271937_ (Lnet/minecraft/network/chat/Component;)V net/minecraft/client/Minecraft/addResourcePackLoadFailToast (Lnet/minecraft/network/chat/Component;)V +MD: net/minecraft/client/Minecraft/m_272186_ ()V net/minecraft/client/Minecraft/abortResourcePackRecovery ()V +MD: net/minecraft/client/Minecraft/m_278518_ (Lcom/mojang/realmsclient/client/RealmsClient;Lnet/minecraft/server/packs/resources/ReloadInstance;Lnet/minecraft/client/main/GameConfig;Z)V net/minecraft/client/Minecraft/lambda$new$3 (Lcom/mojang/realmsclient/client/RealmsClient;Lnet/minecraft/server/packs/resources/ReloadInstance;Lnet/minecraft/client/main/GameConfig;Z)V +MD: net/minecraft/client/Minecraft/m_278644_ ()Lnet/minecraft/client/quickplay/QuickPlayLog; net/minecraft/client/Minecraft/quickPlayLog ()Lnet/minecraft/client/quickplay/QuickPlayLog; +MD: net/minecraft/client/Minecraft/m_278684_ (Lcom/mojang/realmsclient/client/RealmsClient;Lnet/minecraft/server/packs/resources/ReloadInstance;Lnet/minecraft/client/main/GameConfig$QuickPlayData;)V net/minecraft/client/Minecraft/setInitialScreen (Lcom/mojang/realmsclient/client/RealmsClient;Lnet/minecraft/server/packs/resources/ReloadInstance;Lnet/minecraft/client/main/GameConfig$QuickPlayData;)V +MD: net/minecraft/client/Minecraft/m_280564_ (Lnet/minecraft/client/gui/GuiGraphics;Lnet/minecraft/util/profiling/ProfileResults;)V net/minecraft/client/Minecraft/renderFpsMeter (Lnet/minecraft/client/gui/GuiGraphics;Lnet/minecraft/util/profiling/ProfileResults;)V +MD: net/minecraft/client/Minecraft/m_285666_ ()V net/minecraft/client/Minecraft/lambda$new$1 ()V +MD: net/minecraft/client/Minecraft/m_286052_ ()V net/minecraft/client/Minecraft/onGameLoadFinished ()V +MD: net/minecraft/client/Minecraft/m_5740_ ()V net/minecraft/client/Minecraft/cursorEntered ()V +MD: net/minecraft/client/Minecraft/m_5741_ ()V net/minecraft/client/Minecraft/resizeDisplay ()V +MD: net/minecraft/client/Minecraft/m_6304_ ()Ljava/lang/Thread; net/minecraft/client/Minecraft/getRunningThread ()Ljava/lang/Thread; +MD: net/minecraft/client/Minecraft/m_6362_ (Ljava/lang/Runnable;)Z net/minecraft/client/Minecraft/shouldRun (Ljava/lang/Runnable;)Z +MD: net/minecraft/client/Minecraft/m_6681_ (Ljava/lang/Runnable;)Ljava/lang/Runnable; net/minecraft/client/Minecraft/wrapRunnable (Ljava/lang/Runnable;)Ljava/lang/Runnable; +MD: net/minecraft/client/Minecraft/m_7440_ (Z)V net/minecraft/client/Minecraft/setWindowActive (Z)V +MD: net/minecraft/client/Minecraft/m_91085_ ()Z net/minecraft/client/Minecraft/useShaderTransparency ()Z +MD: net/minecraft/client/Minecraft/m_91086_ ()Z net/minecraft/client/Minecraft/useAmbientOcclusion ()Z +MD: net/minecraft/client/Minecraft/m_91087_ ()Lnet/minecraft/client/Minecraft; net/minecraft/client/Minecraft/getInstance ()Lnet/minecraft/client/Minecraft; +MD: net/minecraft/client/Minecraft/m_91088_ ()Ljava/util/concurrent/CompletableFuture; net/minecraft/client/Minecraft/delayTextureReload ()Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/client/Minecraft/m_91089_ ()Lnet/minecraft/client/multiplayer/ServerData; net/minecraft/client/Minecraft/getCurrentServer ()Lnet/minecraft/client/multiplayer/ServerData; +MD: net/minecraft/client/Minecraft/m_91090_ ()Z net/minecraft/client/Minecraft/isLocalServer ()Z +MD: net/minecraft/client/Minecraft/m_91091_ ()Z net/minecraft/client/Minecraft/hasSingleplayerServer ()Z +MD: net/minecraft/client/Minecraft/m_91092_ ()Lnet/minecraft/client/server/IntegratedServer; net/minecraft/client/Minecraft/getSingleplayerServer ()Lnet/minecraft/client/server/IntegratedServer; +MD: net/minecraft/client/Minecraft/m_91094_ ()Lnet/minecraft/client/User; net/minecraft/client/Minecraft/getUser ()Lnet/minecraft/client/User; +MD: net/minecraft/client/Minecraft/m_91095_ ()Lcom/mojang/authlib/properties/PropertyMap; net/minecraft/client/Minecraft/getProfileProperties ()Lcom/mojang/authlib/properties/PropertyMap; +MD: net/minecraft/client/Minecraft/m_91096_ ()Ljava/net/Proxy; net/minecraft/client/Minecraft/getProxy ()Ljava/net/Proxy; +MD: net/minecraft/client/Minecraft/m_91097_ ()Lnet/minecraft/client/renderer/texture/TextureManager; net/minecraft/client/Minecraft/getTextureManager ()Lnet/minecraft/client/renderer/texture/TextureManager; +MD: net/minecraft/client/Minecraft/m_91098_ ()Lnet/minecraft/server/packs/resources/ResourceManager; net/minecraft/client/Minecraft/getResourceManager ()Lnet/minecraft/server/packs/resources/ResourceManager; +MD: net/minecraft/client/Minecraft/m_91099_ ()Lnet/minecraft/server/packs/repository/PackRepository; net/minecraft/client/Minecraft/getResourcePackRepository ()Lnet/minecraft/server/packs/repository/PackRepository; +MD: net/minecraft/client/Minecraft/m_91102_ ()Lnet/minecraft/client/resources/language/LanguageManager; net/minecraft/client/Minecraft/getLanguageManager ()Lnet/minecraft/client/resources/language/LanguageManager; +MD: net/minecraft/client/Minecraft/m_91103_ ()Z net/minecraft/client/Minecraft/is64Bit ()Z +MD: net/minecraft/client/Minecraft/m_91104_ ()Z net/minecraft/client/Minecraft/isPaused ()Z +MD: net/minecraft/client/Minecraft/m_91105_ ()Lnet/minecraft/client/renderer/GpuWarnlistManager; net/minecraft/client/Minecraft/getGpuWarnlistManager ()Lnet/minecraft/client/renderer/GpuWarnlistManager; +MD: net/minecraft/client/Minecraft/m_91106_ ()Lnet/minecraft/client/sounds/SoundManager; net/minecraft/client/Minecraft/getSoundManager ()Lnet/minecraft/client/sounds/SoundManager; +MD: net/minecraft/client/Minecraft/m_91107_ ()Lnet/minecraft/sounds/Music; net/minecraft/client/Minecraft/getSituationalMusic ()Lnet/minecraft/sounds/Music; +MD: net/minecraft/client/Minecraft/m_91108_ ()Lcom/mojang/authlib/minecraft/MinecraftSessionService; net/minecraft/client/Minecraft/getMinecraftSessionService ()Lcom/mojang/authlib/minecraft/MinecraftSessionService; +MD: net/minecraft/client/Minecraft/m_91109_ ()Lnet/minecraft/client/resources/SkinManager; net/minecraft/client/Minecraft/getSkinManager ()Lnet/minecraft/client/resources/SkinManager; +MD: net/minecraft/client/Minecraft/m_91111_ (I)V net/minecraft/client/Minecraft/debugFpsMeterKeyPress (I)V +MD: net/minecraft/client/Minecraft/m_91113_ (IJ)V net/minecraft/client/Minecraft/onFullscreenError (IJ)V +MD: net/minecraft/client/Minecraft/m_91118_ (Lnet/minecraft/world/entity/Entity;)V net/minecraft/client/Minecraft/setCameraEntity (Lnet/minecraft/world/entity/Entity;)V +MD: net/minecraft/client/Minecraft/m_91150_ (Lnet/minecraft/client/gui/screens/Overlay;)V net/minecraft/client/Minecraft/setOverlay (Lnet/minecraft/client/gui/screens/Overlay;)V +MD: net/minecraft/client/Minecraft/m_91152_ (Lnet/minecraft/client/gui/screens/Screen;)V net/minecraft/client/Minecraft/setScreen (Lnet/minecraft/client/gui/screens/Screen;)V +MD: net/minecraft/client/Minecraft/m_91156_ (Lnet/minecraft/client/multiplayer/ClientLevel;)V net/minecraft/client/Minecraft/setLevel (Lnet/minecraft/client/multiplayer/ClientLevel;)V +MD: net/minecraft/client/Minecraft/m_91239_ (Ljava/lang/Throwable;)V net/minecraft/client/Minecraft/rollbackResourcePacks (Ljava/lang/Throwable;)V +MD: net/minecraft/client/Minecraft/m_91241_ (Ljava/lang/Throwable;Lnet/minecraft/network/chat/Component;)V net/minecraft/client/Minecraft/clearResourcePacksOnError (Ljava/lang/Throwable;Lnet/minecraft/network/chat/Component;)V +MD: net/minecraft/client/Minecraft/m_91246_ (Ljava/util/UUID;)Z net/minecraft/client/Minecraft/isBlocked (Ljava/util/UUID;)Z +MD: net/minecraft/client/Minecraft/m_91258_ (Lnet/minecraft/resources/ResourceLocation;)Ljava/util/function/Function; net/minecraft/client/Minecraft/getTextureAtlas (Lnet/minecraft/resources/ResourceLocation;)Ljava/util/function/Function; +MD: net/minecraft/client/Minecraft/m_91265_ ()Lnet/minecraft/client/gui/screens/Overlay; net/minecraft/client/Minecraft/getOverlay ()Lnet/minecraft/client/gui/screens/Overlay; +MD: net/minecraft/client/Minecraft/m_91266_ ()Lnet/minecraft/client/gui/screens/social/PlayerSocialManager; net/minecraft/client/Minecraft/getPlayerSocialManager ()Lnet/minecraft/client/gui/screens/social/PlayerSocialManager; +MD: net/minecraft/client/Minecraft/m_91267_ ()Z net/minecraft/client/Minecraft/renderOnThread ()Z +MD: net/minecraft/client/Minecraft/m_91268_ ()Lcom/mojang/blaze3d/platform/Window; net/minecraft/client/Minecraft/getWindow ()Lcom/mojang/blaze3d/platform/Window; +MD: net/minecraft/client/Minecraft/m_91269_ ()Lnet/minecraft/client/renderer/RenderBuffers; net/minecraft/client/Minecraft/renderBuffers ()Lnet/minecraft/client/renderer/RenderBuffers; +MD: net/minecraft/client/Minecraft/m_91270_ ()Ljava/lang/String; net/minecraft/client/Minecraft/createTitle ()Ljava/lang/String; +MD: net/minecraft/client/Minecraft/m_91271_ ()V net/minecraft/client/Minecraft/createSearchTrees ()V +MD: net/minecraft/client/Minecraft/m_91272_ ()Z net/minecraft/client/Minecraft/checkIs64Bit ()Z +MD: net/minecraft/client/Minecraft/m_91273_ ()V net/minecraft/client/Minecraft/selfTest ()V +MD: net/minecraft/client/Minecraft/m_91274_ ()Z net/minecraft/client/Minecraft/shouldRenderFpsPie ()Z +MD: net/minecraft/client/Minecraft/m_91275_ ()I net/minecraft/client/Minecraft/getFramerateLimit ()I +MD: net/minecraft/client/Minecraft/m_91277_ ()V net/minecraft/client/Minecraft/startUseItem ()V +MD: net/minecraft/client/Minecraft/m_91278_ ()Z net/minecraft/client/Minecraft/isMultiplayerServer ()Z +MD: net/minecraft/client/Minecraft/m_91279_ ()V net/minecraft/client/Minecraft/handleKeybinds ()V +MD: net/minecraft/client/Minecraft/m_91280_ ()V net/minecraft/client/Minecraft/pickBlock ()V +MD: net/minecraft/client/Minecraft/m_91288_ ()Lnet/minecraft/world/entity/Entity; net/minecraft/client/Minecraft/getCameraEntity ()Lnet/minecraft/world/entity/Entity; +MD: net/minecraft/client/Minecraft/m_91289_ ()Lnet/minecraft/client/renderer/block/BlockRenderDispatcher; net/minecraft/client/Minecraft/getBlockRenderer ()Lnet/minecraft/client/renderer/block/BlockRenderDispatcher; +MD: net/minecraft/client/Minecraft/m_91290_ ()Lnet/minecraft/client/renderer/entity/EntityRenderDispatcher; net/minecraft/client/Minecraft/getEntityRenderDispatcher ()Lnet/minecraft/client/renderer/entity/EntityRenderDispatcher; +MD: net/minecraft/client/Minecraft/m_91291_ ()Lnet/minecraft/client/renderer/entity/ItemRenderer; net/minecraft/client/Minecraft/getItemRenderer ()Lnet/minecraft/client/renderer/entity/ItemRenderer; +MD: net/minecraft/client/Minecraft/m_91293_ ()Lnet/minecraft/util/FrameTimer; net/minecraft/client/Minecraft/getFrameTimer ()Lnet/minecraft/util/FrameTimer; +MD: net/minecraft/client/Minecraft/m_91294_ ()Z net/minecraft/client/Minecraft/isConnectedToRealms ()Z +MD: net/minecraft/client/Minecraft/m_91295_ ()Lcom/mojang/datafixers/DataFixer; net/minecraft/client/Minecraft/getFixerUpper ()Lcom/mojang/datafixers/DataFixer; +MD: net/minecraft/client/Minecraft/m_91296_ ()F net/minecraft/client/Minecraft/getFrameTime ()F +MD: net/minecraft/client/Minecraft/m_91297_ ()F net/minecraft/client/Minecraft/getDeltaFrameTime ()F +MD: net/minecraft/client/Minecraft/m_91298_ ()Lnet/minecraft/client/color/block/BlockColors; net/minecraft/client/Minecraft/getBlockColors ()Lnet/minecraft/client/color/block/BlockColors; +MD: net/minecraft/client/Minecraft/m_91299_ ()Z net/minecraft/client/Minecraft/showOnlyReducedInfo ()Z +MD: net/minecraft/client/Minecraft/m_91300_ ()Lnet/minecraft/client/gui/components/toasts/ToastComponent; net/minecraft/client/Minecraft/getToasts ()Lnet/minecraft/client/gui/components/toasts/ToastComponent; +MD: net/minecraft/client/Minecraft/m_91301_ ()Lnet/minecraft/client/tutorial/Tutorial; net/minecraft/client/Minecraft/getTutorial ()Lnet/minecraft/client/tutorial/Tutorial; +MD: net/minecraft/client/Minecraft/m_91302_ ()Z net/minecraft/client/Minecraft/isWindowActive ()Z +MD: net/minecraft/client/Minecraft/m_91303_ ()Lnet/minecraft/client/HotbarManager; net/minecraft/client/Minecraft/getHotbarManager ()Lnet/minecraft/client/HotbarManager; +MD: net/minecraft/client/Minecraft/m_91304_ ()Lnet/minecraft/client/resources/model/ModelManager; net/minecraft/client/Minecraft/getModelManager ()Lnet/minecraft/client/resources/model/ModelManager; +MD: net/minecraft/client/Minecraft/m_91305_ ()Lnet/minecraft/client/resources/PaintingTextureManager; net/minecraft/client/Minecraft/getPaintingTextures ()Lnet/minecraft/client/resources/PaintingTextureManager; +MD: net/minecraft/client/Minecraft/m_91306_ ()Lnet/minecraft/client/resources/MobEffectTextureManager; net/minecraft/client/Minecraft/getMobEffectTextures ()Lnet/minecraft/client/resources/MobEffectTextureManager; +MD: net/minecraft/client/Minecraft/m_91307_ ()Lnet/minecraft/util/profiling/ProfilerFiller; net/minecraft/client/Minecraft/getProfiler ()Lnet/minecraft/util/profiling/ProfilerFiller; +MD: net/minecraft/client/Minecraft/m_91310_ ()Lnet/minecraft/client/resources/SplashManager; net/minecraft/client/Minecraft/getSplashManager ()Lnet/minecraft/client/resources/SplashManager; +MD: net/minecraft/client/Minecraft/m_91312_ (I)V net/minecraft/client/Minecraft/updateMaxMipLevel (I)V +MD: net/minecraft/client/Minecraft/m_91314_ (Lnet/minecraft/world/entity/Entity;)Z net/minecraft/client/Minecraft/shouldEntityAppearGlowing (Lnet/minecraft/world/entity/Entity;)Z +MD: net/minecraft/client/Minecraft/m_91316_ (Ljava/util/List;)Lnet/minecraft/client/searchtree/RefreshableSearchTree; net/minecraft/client/Minecraft/lambda$createSearchTrees$18 (Ljava/util/List;)Lnet/minecraft/client/searchtree/RefreshableSearchTree; +MD: net/minecraft/client/Minecraft/m_91320_ (Lnet/minecraft/client/gui/screens/Screen;)V net/minecraft/client/Minecraft/clearLevel (Lnet/minecraft/client/gui/screens/Screen;)V +MD: net/minecraft/client/Minecraft/m_91324_ (Lnet/minecraft/client/multiplayer/ClientLevel;)V net/minecraft/client/Minecraft/updateLevelInEngines (Lnet/minecraft/client/multiplayer/ClientLevel;)V +MD: net/minecraft/client/Minecraft/m_91326_ (Ljava/lang/String;)V net/minecraft/client/Minecraft/openChatScreen (Ljava/lang/String;)V +MD: net/minecraft/client/Minecraft/m_91332_ (Lnet/minecraft/CrashReport;)V net/minecraft/client/Minecraft/crash (Lnet/minecraft/CrashReport;)V +MD: net/minecraft/client/Minecraft/m_91336_ (Z)V net/minecraft/client/Minecraft/selectMainFont (Z)V +MD: net/minecraft/client/Minecraft/m_91338_ (ZLnet/minecraft/util/profiling/SingleTickProfiler;)V net/minecraft/client/Minecraft/finishProfilers (ZLnet/minecraft/util/profiling/SingleTickProfiler;)V +MD: net/minecraft/client/Minecraft/m_91341_ ()V net/minecraft/client/Minecraft/updateTitle ()V +MD: net/minecraft/client/Minecraft/m_91346_ (Lnet/minecraft/client/gui/screens/Screen;)V net/minecraft/client/Minecraft/forceSetScreen (Lnet/minecraft/client/gui/screens/Screen;)V +MD: net/minecraft/client/Minecraft/m_91354_ (Lnet/minecraft/CrashReport;)Lnet/minecraft/CrashReport; net/minecraft/client/Minecraft/fillReport (Lnet/minecraft/CrashReport;)Lnet/minecraft/CrashReport; +MD: net/minecraft/client/Minecraft/m_91358_ (Z)V net/minecraft/client/Minecraft/pauseGame (Z)V +MD: net/minecraft/client/Minecraft/m_91362_ (Lnet/minecraft/client/gui/screens/Screen;)V net/minecraft/client/Minecraft/updateScreenAndTick (Lnet/minecraft/client/gui/screens/Screen;)V +MD: net/minecraft/client/Minecraft/m_91372_ (Z)V net/minecraft/client/Minecraft/setConnectedToRealms (Z)V +MD: net/minecraft/client/Minecraft/m_91374_ ()V net/minecraft/client/Minecraft/run ()V +MD: net/minecraft/client/Minecraft/m_91383_ (Z)V net/minecraft/client/Minecraft/runTick (Z)V +MD: net/minecraft/client/Minecraft/m_91385_ ()Lcom/mojang/blaze3d/pipeline/RenderTarget; net/minecraft/client/Minecraft/getMainRenderTarget ()Lcom/mojang/blaze3d/pipeline/RenderTarget; +MD: net/minecraft/client/Minecraft/m_91386_ (Z)V net/minecraft/client/Minecraft/continueAttack (Z)V +MD: net/minecraft/client/Minecraft/m_91388_ ()Ljava/lang/String; net/minecraft/client/Minecraft/getLaunchedVersion ()Ljava/lang/String; +MD: net/minecraft/client/Minecraft/m_91389_ ()Ljava/lang/String; net/minecraft/client/Minecraft/getVersionType ()Ljava/lang/String; +MD: net/minecraft/client/Minecraft/m_91390_ ()Z net/minecraft/client/Minecraft/isEnforceUnicode ()Z +MD: net/minecraft/client/Minecraft/m_91391_ ()Ljava/util/concurrent/CompletableFuture; net/minecraft/client/Minecraft/reloadResourcePacks ()Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/client/Minecraft/m_91392_ ()Lnet/minecraft/world/level/storage/LevelStorageSource; net/minecraft/client/Minecraft/getLevelSource ()Lnet/minecraft/world/level/storage/LevelStorageSource; +MD: net/minecraft/client/Minecraft/m_91393_ ()V net/minecraft/client/Minecraft/destroy ()V +MD: net/minecraft/client/Minecraft/m_91394_ ()V net/minecraft/client/Minecraft/emergencySave ()V +MD: net/minecraft/client/Minecraft/m_91395_ ()V net/minecraft/client/Minecraft/stop ()V +MD: net/minecraft/client/Minecraft/m_91396_ ()Z net/minecraft/client/Minecraft/isRunning ()Z +MD: net/minecraft/client/Minecraft/m_91397_ ()Lnet/minecraft/client/sounds/MusicManager; net/minecraft/client/Minecraft/getMusicManager ()Lnet/minecraft/client/sounds/MusicManager; +MD: net/minecraft/client/Minecraft/m_91398_ ()V net/minecraft/client/Minecraft/tick ()V +MD: net/minecraft/client/Minecraft/m_91399_ ()V net/minecraft/client/Minecraft/clearLevel ()V +MD: net/minecraft/client/Minecraft/m_91400_ ()Z net/minecraft/client/Minecraft/allowsMultiplayer ()Z +MD: net/minecraft/client/Minecraft/m_91402_ ()Z net/minecraft/client/Minecraft/isDemo ()Z +MD: net/minecraft/client/Minecraft/m_91403_ ()Lnet/minecraft/client/multiplayer/ClientPacketListener; net/minecraft/client/Minecraft/getConnection ()Lnet/minecraft/client/multiplayer/ClientPacketListener; +MD: net/minecraft/client/Minecraft/m_91404_ ()Z net/minecraft/client/Minecraft/renderNames ()Z +MD: net/minecraft/client/Minecraft/m_91405_ ()Z net/minecraft/client/Minecraft/useFancyGraphics ()Z +MD: net/minecraft/client/Minecraft$1/ ()V net/minecraft/client/Minecraft$1/ ()V +MD: net/minecraft/client/Minecraft$ChatStatus/ ()V net/minecraft/client/Minecraft$ChatStatus/ ()V +MD: net/minecraft/client/Minecraft$ChatStatus/ (Ljava/lang/String;ILnet/minecraft/network/chat/Component;)V net/minecraft/client/Minecraft$ChatStatus/ (Ljava/lang/String;ILnet/minecraft/network/chat/Component;)V +MD: net/minecraft/client/Minecraft$ChatStatus/m_142594_ (Z)Z net/minecraft/client/Minecraft$ChatStatus/isChatAllowed (Z)Z +MD: net/minecraft/client/Minecraft$ChatStatus/m_168034_ ()Lnet/minecraft/network/chat/Component; net/minecraft/client/Minecraft$ChatStatus/getMessage ()Lnet/minecraft/network/chat/Component; +MD: net/minecraft/client/Minecraft$ChatStatus/m_168036_ ()[Lnet/minecraft/client/Minecraft$ChatStatus; net/minecraft/client/Minecraft$ChatStatus/$values ()[Lnet/minecraft/client/Minecraft$ChatStatus; +MD: net/minecraft/client/Minecraft$ChatStatus/valueOf (Ljava/lang/String;)Lnet/minecraft/client/Minecraft$ChatStatus; net/minecraft/client/Minecraft$ChatStatus/valueOf (Ljava/lang/String;)Lnet/minecraft/client/Minecraft$ChatStatus; +MD: net/minecraft/client/Minecraft$ChatStatus/values ()[Lnet/minecraft/client/Minecraft$ChatStatus; net/minecraft/client/Minecraft$ChatStatus/values ()[Lnet/minecraft/client/Minecraft$ChatStatus; +MD: net/minecraft/client/Minecraft$ChatStatus$1/ (Ljava/lang/String;ILnet/minecraft/network/chat/Component;)V net/minecraft/client/Minecraft$ChatStatus$1/ (Ljava/lang/String;ILnet/minecraft/network/chat/Component;)V +MD: net/minecraft/client/Minecraft$ChatStatus$1/m_142594_ (Z)Z net/minecraft/client/Minecraft$ChatStatus$1/isChatAllowed (Z)Z +MD: net/minecraft/client/Minecraft$ChatStatus$2/ (Ljava/lang/String;ILnet/minecraft/network/chat/Component;)V net/minecraft/client/Minecraft$ChatStatus$2/ (Ljava/lang/String;ILnet/minecraft/network/chat/Component;)V +MD: net/minecraft/client/Minecraft$ChatStatus$2/m_142594_ (Z)Z net/minecraft/client/Minecraft$ChatStatus$2/isChatAllowed (Z)Z +MD: net/minecraft/client/Minecraft$ChatStatus$3/ (Ljava/lang/String;ILnet/minecraft/network/chat/Component;)V net/minecraft/client/Minecraft$ChatStatus$3/ (Ljava/lang/String;ILnet/minecraft/network/chat/Component;)V +MD: net/minecraft/client/Minecraft$ChatStatus$3/m_142594_ (Z)Z net/minecraft/client/Minecraft$ChatStatus$3/isChatAllowed (Z)Z +MD: net/minecraft/client/Minecraft$ChatStatus$4/ (Ljava/lang/String;ILnet/minecraft/network/chat/Component;)V net/minecraft/client/Minecraft$ChatStatus$4/ (Ljava/lang/String;ILnet/minecraft/network/chat/Component;)V +MD: net/minecraft/client/Minecraft$ChatStatus$4/m_142594_ (Z)Z net/minecraft/client/Minecraft$ChatStatus$4/isChatAllowed (Z)Z +MD: net/minecraft/client/MouseHandler/ (Lnet/minecraft/client/Minecraft;)V net/minecraft/client/MouseHandler/ (Lnet/minecraft/client/Minecraft;)V +MD: net/minecraft/client/MouseHandler/m_168065_ (J[Ljava/nio/file/Path;)V net/minecraft/client/MouseHandler/lambda$setup$8 (J[Ljava/nio/file/Path;)V +MD: net/minecraft/client/MouseHandler/m_168072_ (Lnet/minecraft/client/gui/screens/Screen;DDDD)V net/minecraft/client/MouseHandler/lambda$onMove$11 (Lnet/minecraft/client/gui/screens/Screen;DDDD)V +MD: net/minecraft/client/MouseHandler/m_168078_ ([ZLnet/minecraft/client/gui/screens/Screen;DDI)V net/minecraft/client/MouseHandler/lambda$onPress$1 ([ZLnet/minecraft/client/gui/screens/Screen;DDI)V +MD: net/minecraft/client/MouseHandler/m_168084_ ([ZLnet/minecraft/client/gui/screens/Screen;DDI)V net/minecraft/client/MouseHandler/lambda$onPress$0 ([ZLnet/minecraft/client/gui/screens/Screen;DDI)V +MD: net/minecraft/client/MouseHandler/m_168090_ ()Z net/minecraft/client/MouseHandler/isMiddlePressed ()Z +MD: net/minecraft/client/MouseHandler/m_168091_ (JIII)V net/minecraft/client/MouseHandler/lambda$setup$4 (JIII)V +MD: net/minecraft/client/MouseHandler/m_168096_ (JDD)V net/minecraft/client/MouseHandler/lambda$setup$6 (JDD)V +MD: net/minecraft/client/MouseHandler/m_168100_ (JDD)V net/minecraft/client/MouseHandler/lambda$setup$2 (JDD)V +MD: net/minecraft/client/MouseHandler/m_263857_ (Lnet/minecraft/client/gui/screens/Screen;DD)V net/minecraft/client/MouseHandler/lambda$onMove$10 (Lnet/minecraft/client/gui/screens/Screen;DD)V +MD: net/minecraft/client/MouseHandler/m_91523_ ()V net/minecraft/client/MouseHandler/turnPlayer ()V +MD: net/minecraft/client/MouseHandler/m_91524_ (J)V net/minecraft/client/MouseHandler/setup (J)V +MD: net/minecraft/client/MouseHandler/m_91526_ (JDD)V net/minecraft/client/MouseHandler/onScroll (JDD)V +MD: net/minecraft/client/MouseHandler/m_91530_ (JIII)V net/minecraft/client/MouseHandler/onPress (JIII)V +MD: net/minecraft/client/MouseHandler/m_91535_ (JIJ)V net/minecraft/client/MouseHandler/lambda$setup$9 (JIJ)V +MD: net/minecraft/client/MouseHandler/m_91539_ (JLjava/util/List;)V net/minecraft/client/MouseHandler/onDrop (JLjava/util/List;)V +MD: net/minecraft/client/MouseHandler/m_91560_ ()Z net/minecraft/client/MouseHandler/isLeftPressed ()Z +MD: net/minecraft/client/MouseHandler/m_91561_ (JDD)V net/minecraft/client/MouseHandler/onMove (JDD)V +MD: net/minecraft/client/MouseHandler/m_91565_ (JIII)V net/minecraft/client/MouseHandler/lambda$setup$5 (JIII)V +MD: net/minecraft/client/MouseHandler/m_91575_ (JDD)V net/minecraft/client/MouseHandler/lambda$setup$7 (JDD)V +MD: net/minecraft/client/MouseHandler/m_91584_ ()Z net/minecraft/client/MouseHandler/isRightPressed ()Z +MD: net/minecraft/client/MouseHandler/m_91589_ ()D net/minecraft/client/MouseHandler/xpos ()D +MD: net/minecraft/client/MouseHandler/m_91590_ (JDD)V net/minecraft/client/MouseHandler/lambda$setup$3 (JDD)V +MD: net/minecraft/client/MouseHandler/m_91594_ ()D net/minecraft/client/MouseHandler/ypos ()D +MD: net/minecraft/client/MouseHandler/m_91599_ ()V net/minecraft/client/MouseHandler/setIgnoreFirstMove ()V +MD: net/minecraft/client/MouseHandler/m_91600_ ()Z net/minecraft/client/MouseHandler/isMouseGrabbed ()Z +MD: net/minecraft/client/MouseHandler/m_91601_ ()V net/minecraft/client/MouseHandler/grabMouse ()V +MD: net/minecraft/client/MouseHandler/m_91602_ ()V net/minecraft/client/MouseHandler/releaseMouse ()V +MD: net/minecraft/client/MouseHandler/m_91603_ ()V net/minecraft/client/MouseHandler/cursorEntered ()V +MD: net/minecraft/client/NarratorStatus/ ()V net/minecraft/client/NarratorStatus/ ()V +MD: net/minecraft/client/NarratorStatus/ (Ljava/lang/String;IILjava/lang/String;)V net/minecraft/client/NarratorStatus/ (Ljava/lang/String;IILjava/lang/String;)V +MD: net/minecraft/client/NarratorStatus/m_168104_ ()[Lnet/minecraft/client/NarratorStatus; net/minecraft/client/NarratorStatus/$values ()[Lnet/minecraft/client/NarratorStatus; +MD: net/minecraft/client/NarratorStatus/m_240472_ ()Z net/minecraft/client/NarratorStatus/shouldNarrateSystem ()Z +MD: net/minecraft/client/NarratorStatus/m_240504_ ()Z net/minecraft/client/NarratorStatus/shouldNarrateChat ()Z +MD: net/minecraft/client/NarratorStatus/m_91618_ ()I net/minecraft/client/NarratorStatus/getId ()I +MD: net/minecraft/client/NarratorStatus/m_91619_ (I)Lnet/minecraft/client/NarratorStatus; net/minecraft/client/NarratorStatus/byId (I)Lnet/minecraft/client/NarratorStatus; +MD: net/minecraft/client/NarratorStatus/m_91621_ ()Lnet/minecraft/network/chat/Component; net/minecraft/client/NarratorStatus/getName ()Lnet/minecraft/network/chat/Component; +MD: net/minecraft/client/NarratorStatus/valueOf (Ljava/lang/String;)Lnet/minecraft/client/NarratorStatus; net/minecraft/client/NarratorStatus/valueOf (Ljava/lang/String;)Lnet/minecraft/client/NarratorStatus; +MD: net/minecraft/client/NarratorStatus/values ()[Lnet/minecraft/client/NarratorStatus; net/minecraft/client/NarratorStatus/values ()[Lnet/minecraft/client/NarratorStatus; +MD: net/minecraft/client/OptionInstance/ ()V net/minecraft/client/OptionInstance/ ()V +MD: net/minecraft/client/OptionInstance/ (Ljava/lang/String;Lnet/minecraft/client/OptionInstance$TooltipSupplier;Lnet/minecraft/client/OptionInstance$CaptionBasedToString;Lnet/minecraft/client/OptionInstance$ValueSet;Ljava/lang/Object;Ljava/util/function/Consumer;)V net/minecraft/client/OptionInstance/ (Ljava/lang/String;Lnet/minecraft/client/OptionInstance$TooltipSupplier;Lnet/minecraft/client/OptionInstance$CaptionBasedToString;Lnet/minecraft/client/OptionInstance$ValueSet;Ljava/lang/Object;Ljava/util/function/Consumer;)V +MD: net/minecraft/client/OptionInstance/ (Ljava/lang/String;Lnet/minecraft/client/OptionInstance$TooltipSupplier;Lnet/minecraft/client/OptionInstance$CaptionBasedToString;Lnet/minecraft/client/OptionInstance$ValueSet;Lcom/mojang/serialization/Codec;Ljava/lang/Object;Ljava/util/function/Consumer;)V net/minecraft/client/OptionInstance/ (Ljava/lang/String;Lnet/minecraft/client/OptionInstance$TooltipSupplier;Lnet/minecraft/client/OptionInstance$CaptionBasedToString;Lnet/minecraft/client/OptionInstance$ValueSet;Lcom/mojang/serialization/Codec;Ljava/lang/Object;Ljava/util/function/Consumer;)V +MD: net/minecraft/client/OptionInstance/m_231498_ ()Lnet/minecraft/client/OptionInstance$TooltipSupplier; net/minecraft/client/OptionInstance/noTooltip ()Lnet/minecraft/client/OptionInstance$TooltipSupplier; +MD: net/minecraft/client/OptionInstance/m_231504_ (Lnet/minecraft/client/OptionInstance$CaptionBasedToString;Ljava/lang/Object;)Lnet/minecraft/network/chat/Component; net/minecraft/client/OptionInstance/lambda$new$3 (Lnet/minecraft/client/OptionInstance$CaptionBasedToString;Ljava/lang/Object;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/client/OptionInstance/m_231507_ (Lnet/minecraft/client/Options;III)Lnet/minecraft/client/gui/components/AbstractWidget; net/minecraft/client/OptionInstance/createButton (Lnet/minecraft/client/Options;III)Lnet/minecraft/client/gui/components/AbstractWidget; +MD: net/minecraft/client/OptionInstance/m_231512_ (Ljava/lang/Boolean;)V net/minecraft/client/OptionInstance/lambda$createBoolean$2 (Ljava/lang/Boolean;)V +MD: net/minecraft/client/OptionInstance/m_231514_ (Ljava/lang/Object;)V net/minecraft/client/OptionInstance/set (Ljava/lang/Object;)V +MD: net/minecraft/client/OptionInstance/m_231525_ (Ljava/lang/String;Z)Lnet/minecraft/client/OptionInstance; net/minecraft/client/OptionInstance/createBoolean (Ljava/lang/String;Z)Lnet/minecraft/client/OptionInstance; +MD: net/minecraft/client/OptionInstance/m_231528_ (Ljava/lang/String;ZLjava/util/function/Consumer;)Lnet/minecraft/client/OptionInstance; net/minecraft/client/OptionInstance/createBoolean (Ljava/lang/String;ZLjava/util/function/Consumer;)Lnet/minecraft/client/OptionInstance; +MD: net/minecraft/client/OptionInstance/m_231535_ (Lnet/minecraft/network/chat/Component;)Lnet/minecraft/client/OptionInstance$TooltipSupplier; net/minecraft/client/OptionInstance/cachedConstantTooltip (Lnet/minecraft/network/chat/Component;)Lnet/minecraft/client/OptionInstance$TooltipSupplier; +MD: net/minecraft/client/OptionInstance/m_231537_ (Lnet/minecraft/network/chat/Component;Lnet/minecraft/util/OptionEnum;)Lnet/minecraft/network/chat/Component; net/minecraft/client/OptionInstance/lambda$forOptionEnum$6 (Lnet/minecraft/network/chat/Component;Lnet/minecraft/util/OptionEnum;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/client/OptionInstance/m_231543_ (Lnet/minecraft/network/chat/Component;Ljava/lang/Boolean;)Lnet/minecraft/network/chat/Component; net/minecraft/client/OptionInstance/lambda$static$0 (Lnet/minecraft/network/chat/Component;Ljava/lang/Boolean;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/client/OptionInstance/m_231546_ ()Lnet/minecraft/client/OptionInstance$CaptionBasedToString; net/minecraft/client/OptionInstance/forOptionEnum ()Lnet/minecraft/client/OptionInstance$CaptionBasedToString; +MD: net/minecraft/client/OptionInstance/m_231547_ (Ljava/lang/Boolean;)V net/minecraft/client/OptionInstance/lambda$createBoolean$1 (Ljava/lang/Boolean;)V +MD: net/minecraft/client/OptionInstance/m_231549_ (Ljava/lang/Object;)Ljava/lang/Object; net/minecraft/client/OptionInstance/lambda$set$8 (Ljava/lang/Object;)Ljava/lang/Object; +MD: net/minecraft/client/OptionInstance/m_231551_ ()Ljava/lang/Object; net/minecraft/client/OptionInstance/get ()Ljava/lang/Object; +MD: net/minecraft/client/OptionInstance/m_231554_ ()Lcom/mojang/serialization/Codec; net/minecraft/client/OptionInstance/codec ()Lcom/mojang/serialization/Codec; +MD: net/minecraft/client/OptionInstance/m_231555_ ()Lnet/minecraft/client/OptionInstance$ValueSet; net/minecraft/client/OptionInstance/values ()Lnet/minecraft/client/OptionInstance$ValueSet; +MD: net/minecraft/client/OptionInstance/m_257064_ (Ljava/lang/Object;)Lnet/minecraft/client/gui/components/Tooltip; net/minecraft/client/OptionInstance/lambda$noTooltip$4 (Ljava/lang/Object;)Lnet/minecraft/client/gui/components/Tooltip; +MD: net/minecraft/client/OptionInstance/m_257065_ (Lnet/minecraft/network/chat/Component;Ljava/lang/Object;)Lnet/minecraft/client/gui/components/Tooltip; net/minecraft/client/OptionInstance/lambda$cachedConstantTooltip$5 (Lnet/minecraft/network/chat/Component;Ljava/lang/Object;)Lnet/minecraft/client/gui/components/Tooltip; +MD: net/minecraft/client/OptionInstance/m_257536_ (Ljava/lang/String;Lnet/minecraft/client/OptionInstance$TooltipSupplier;Z)Lnet/minecraft/client/OptionInstance; net/minecraft/client/OptionInstance/createBoolean (Ljava/lang/String;Lnet/minecraft/client/OptionInstance$TooltipSupplier;Z)Lnet/minecraft/client/OptionInstance; +MD: net/minecraft/client/OptionInstance/m_257874_ (Ljava/lang/String;Lnet/minecraft/client/OptionInstance$TooltipSupplier;ZLjava/util/function/Consumer;)Lnet/minecraft/client/OptionInstance; net/minecraft/client/OptionInstance/createBoolean (Ljava/lang/String;Lnet/minecraft/client/OptionInstance$TooltipSupplier;ZLjava/util/function/Consumer;)Lnet/minecraft/client/OptionInstance; +MD: net/minecraft/client/OptionInstance/m_260737_ (Ljava/lang/Object;)V net/minecraft/client/OptionInstance/lambda$createButton$7 (Ljava/lang/Object;)V +MD: net/minecraft/client/OptionInstance/m_260965_ (Ljava/lang/String;Lnet/minecraft/client/OptionInstance$TooltipSupplier;Lnet/minecraft/client/OptionInstance$CaptionBasedToString;ZLjava/util/function/Consumer;)Lnet/minecraft/client/OptionInstance; net/minecraft/client/OptionInstance/createBoolean (Ljava/lang/String;Lnet/minecraft/client/OptionInstance$TooltipSupplier;Lnet/minecraft/client/OptionInstance$CaptionBasedToString;ZLjava/util/function/Consumer;)Lnet/minecraft/client/OptionInstance; +MD: net/minecraft/client/OptionInstance/m_261194_ (Lnet/minecraft/client/Options;IIILjava/util/function/Consumer;)Lnet/minecraft/client/gui/components/AbstractWidget; net/minecraft/client/OptionInstance/createButton (Lnet/minecraft/client/Options;IIILjava/util/function/Consumer;)Lnet/minecraft/client/gui/components/AbstractWidget; +MD: net/minecraft/client/OptionInstance/toString ()Ljava/lang/String; net/minecraft/client/OptionInstance/toString ()Ljava/lang/String; +MD: net/minecraft/client/OptionInstance$AltEnum/ (Ljava/util/List;Ljava/util/List;Ljava/util/function/BooleanSupplier;Lnet/minecraft/client/OptionInstance$CycleableValueSet$ValueSetter;Lcom/mojang/serialization/Codec;)V net/minecraft/client/OptionInstance$AltEnum/ (Ljava/util/List;Ljava/util/List;Ljava/util/function/BooleanSupplier;Lnet/minecraft/client/OptionInstance$CycleableValueSet$ValueSetter;Lcom/mojang/serialization/Codec;)V +MD: net/minecraft/client/OptionInstance$AltEnum/equals (Ljava/lang/Object;)Z net/minecraft/client/OptionInstance$AltEnum/equals (Ljava/lang/Object;)Z +MD: net/minecraft/client/OptionInstance$AltEnum/f_231557_ ()Ljava/util/List; net/minecraft/client/OptionInstance$AltEnum/values ()Ljava/util/List; +MD: net/minecraft/client/OptionInstance$AltEnum/f_231558_ ()Ljava/util/List; net/minecraft/client/OptionInstance$AltEnum/altValues ()Ljava/util/List; +MD: net/minecraft/client/OptionInstance$AltEnum/f_231559_ ()Ljava/util/function/BooleanSupplier; net/minecraft/client/OptionInstance$AltEnum/altCondition ()Ljava/util/function/BooleanSupplier; +MD: net/minecraft/client/OptionInstance$AltEnum/hashCode ()I net/minecraft/client/OptionInstance$AltEnum/hashCode ()I +MD: net/minecraft/client/OptionInstance$AltEnum/m_213569_ ()Lnet/minecraft/client/OptionInstance$CycleableValueSet$ValueSetter; net/minecraft/client/OptionInstance$AltEnum/valueSetter ()Lnet/minecraft/client/OptionInstance$CycleableValueSet$ValueSetter; +MD: net/minecraft/client/OptionInstance$AltEnum/m_213664_ ()Lcom/mojang/serialization/Codec; net/minecraft/client/OptionInstance$AltEnum/codec ()Lcom/mojang/serialization/Codec; +MD: net/minecraft/client/OptionInstance$AltEnum/m_213889_ ()Lnet/minecraft/client/gui/components/CycleButton$ValueListSupplier; net/minecraft/client/OptionInstance$AltEnum/valueListSupplier ()Lnet/minecraft/client/gui/components/CycleButton$ValueListSupplier; +MD: net/minecraft/client/OptionInstance$AltEnum/m_214064_ (Ljava/lang/Object;)Ljava/util/Optional; net/minecraft/client/OptionInstance$AltEnum/validateValue (Ljava/lang/Object;)Ljava/util/Optional; +MD: net/minecraft/client/OptionInstance$AltEnum/toString ()Ljava/lang/String; net/minecraft/client/OptionInstance$AltEnum/toString ()Ljava/lang/String; +MD: net/minecraft/client/OptionInstance$CaptionBasedToString/m_231580_ (Lnet/minecraft/network/chat/Component;Ljava/lang/Object;)Lnet/minecraft/network/chat/Component; net/minecraft/client/OptionInstance$CaptionBasedToString/toString (Lnet/minecraft/network/chat/Component;Ljava/lang/Object;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/client/OptionInstance$ClampingLazyMaxIntRange/ (ILjava/util/function/IntSupplier;I)V net/minecraft/client/OptionInstance$ClampingLazyMaxIntRange/ (ILjava/util/function/IntSupplier;I)V +MD: net/minecraft/client/OptionInstance$ClampingLazyMaxIntRange/equals (Ljava/lang/Object;)Z net/minecraft/client/OptionInstance$ClampingLazyMaxIntRange/equals (Ljava/lang/Object;)Z +MD: net/minecraft/client/OptionInstance$ClampingLazyMaxIntRange/f_231584_ ()Ljava/util/function/IntSupplier; net/minecraft/client/OptionInstance$ClampingLazyMaxIntRange/maxSupplier ()Ljava/util/function/IntSupplier; +MD: net/minecraft/client/OptionInstance$ClampingLazyMaxIntRange/f_276069_ ()I net/minecraft/client/OptionInstance$ClampingLazyMaxIntRange/encodableMaxInclusive ()I +MD: net/minecraft/client/OptionInstance$ClampingLazyMaxIntRange/hashCode ()I net/minecraft/client/OptionInstance$ClampingLazyMaxIntRange/hashCode ()I +MD: net/minecraft/client/OptionInstance$ClampingLazyMaxIntRange/m_213664_ ()Lcom/mojang/serialization/Codec; net/minecraft/client/OptionInstance$ClampingLazyMaxIntRange/codec ()Lcom/mojang/serialization/Codec; +MD: net/minecraft/client/OptionInstance$ClampingLazyMaxIntRange/m_213889_ ()Lnet/minecraft/client/gui/components/CycleButton$ValueListSupplier; net/minecraft/client/OptionInstance$ClampingLazyMaxIntRange/valueListSupplier ()Lnet/minecraft/client/gui/components/CycleButton$ValueListSupplier; +MD: net/minecraft/client/OptionInstance$ClampingLazyMaxIntRange/m_214064_ (Ljava/lang/Integer;)Ljava/util/Optional; net/minecraft/client/OptionInstance$ClampingLazyMaxIntRange/validateValue (Ljava/lang/Integer;)Ljava/util/Optional; +MD: net/minecraft/client/OptionInstance$ClampingLazyMaxIntRange/m_214064_ (Ljava/lang/Object;)Ljava/util/Optional; net/minecraft/client/OptionInstance$ClampingLazyMaxIntRange/validateValue (Ljava/lang/Object;)Ljava/util/Optional; +MD: net/minecraft/client/OptionInstance$ClampingLazyMaxIntRange/m_214105_ ()Z net/minecraft/client/OptionInstance$ClampingLazyMaxIntRange/createCycleButton ()Z +MD: net/minecraft/client/OptionInstance$ClampingLazyMaxIntRange/m_214118_ ()I net/minecraft/client/OptionInstance$ClampingLazyMaxIntRange/maxInclusive ()I +MD: net/minecraft/client/OptionInstance$ClampingLazyMaxIntRange/m_214123_ ()I net/minecraft/client/OptionInstance$ClampingLazyMaxIntRange/minInclusive ()I +MD: net/minecraft/client/OptionInstance$ClampingLazyMaxIntRange/m_273968_ (Ljava/lang/Integer;I)Ljava/lang/String; net/minecraft/client/OptionInstance$ClampingLazyMaxIntRange/lambda$codec$0 (Ljava/lang/Integer;I)Ljava/lang/String; +MD: net/minecraft/client/OptionInstance$ClampingLazyMaxIntRange/m_276075_ (Ljava/lang/Integer;)Lcom/mojang/serialization/DataResult; net/minecraft/client/OptionInstance$ClampingLazyMaxIntRange/lambda$codec$1 (Ljava/lang/Integer;)Lcom/mojang/serialization/DataResult; +MD: net/minecraft/client/OptionInstance$ClampingLazyMaxIntRange/toString ()Ljava/lang/String; net/minecraft/client/OptionInstance$ClampingLazyMaxIntRange/toString ()Ljava/lang/String; +MD: net/minecraft/client/OptionInstance$CycleableValueSet/m_213569_ ()Lnet/minecraft/client/OptionInstance$CycleableValueSet$ValueSetter; net/minecraft/client/OptionInstance$CycleableValueSet/valueSetter ()Lnet/minecraft/client/OptionInstance$CycleableValueSet$ValueSetter; +MD: net/minecraft/client/OptionInstance$CycleableValueSet/m_213823_ (Lnet/minecraft/client/OptionInstance$TooltipSupplier;Lnet/minecraft/client/Options;IIILjava/util/function/Consumer;)Ljava/util/function/Function; net/minecraft/client/OptionInstance$CycleableValueSet/createButton (Lnet/minecraft/client/OptionInstance$TooltipSupplier;Lnet/minecraft/client/Options;IIILjava/util/function/Consumer;)Ljava/util/function/Function; +MD: net/minecraft/client/OptionInstance$CycleableValueSet/m_213889_ ()Lnet/minecraft/client/gui/components/CycleButton$ValueListSupplier; net/minecraft/client/OptionInstance$CycleableValueSet/valueListSupplier ()Lnet/minecraft/client/gui/components/CycleButton$ValueListSupplier; +MD: net/minecraft/client/OptionInstance$CycleableValueSet/m_260738_ (Lnet/minecraft/client/OptionInstance$TooltipSupplier;IIILnet/minecraft/client/Options;Ljava/util/function/Consumer;Lnet/minecraft/client/OptionInstance;)Lnet/minecraft/client/gui/components/AbstractWidget; net/minecraft/client/OptionInstance$CycleableValueSet/lambda$createButton$1 (Lnet/minecraft/client/OptionInstance$TooltipSupplier;IIILnet/minecraft/client/Options;Ljava/util/function/Consumer;Lnet/minecraft/client/OptionInstance;)Lnet/minecraft/client/gui/components/AbstractWidget; +MD: net/minecraft/client/OptionInstance$CycleableValueSet/m_260739_ (Lnet/minecraft/client/OptionInstance;Lnet/minecraft/client/Options;Ljava/util/function/Consumer;Lnet/minecraft/client/gui/components/CycleButton;Ljava/lang/Object;)V net/minecraft/client/OptionInstance$CycleableValueSet/lambda$createButton$0 (Lnet/minecraft/client/OptionInstance;Lnet/minecraft/client/Options;Ljava/util/function/Consumer;Lnet/minecraft/client/gui/components/CycleButton;Ljava/lang/Object;)V +MD: net/minecraft/client/OptionInstance$CycleableValueSet$ValueSetter/m_231622_ (Lnet/minecraft/client/OptionInstance;Ljava/lang/Object;)V net/minecraft/client/OptionInstance$CycleableValueSet$ValueSetter/set (Lnet/minecraft/client/OptionInstance;Ljava/lang/Object;)V +MD: net/minecraft/client/OptionInstance$Enum/ (Ljava/util/List;Lcom/mojang/serialization/Codec;)V net/minecraft/client/OptionInstance$Enum/ (Ljava/util/List;Lcom/mojang/serialization/Codec;)V +MD: net/minecraft/client/OptionInstance$Enum/equals (Ljava/lang/Object;)Z net/minecraft/client/OptionInstance$Enum/equals (Ljava/lang/Object;)Z +MD: net/minecraft/client/OptionInstance$Enum/f_231625_ ()Ljava/util/List; net/minecraft/client/OptionInstance$Enum/values ()Ljava/util/List; +MD: net/minecraft/client/OptionInstance$Enum/hashCode ()I net/minecraft/client/OptionInstance$Enum/hashCode ()I +MD: net/minecraft/client/OptionInstance$Enum/m_213664_ ()Lcom/mojang/serialization/Codec; net/minecraft/client/OptionInstance$Enum/codec ()Lcom/mojang/serialization/Codec; +MD: net/minecraft/client/OptionInstance$Enum/m_213889_ ()Lnet/minecraft/client/gui/components/CycleButton$ValueListSupplier; net/minecraft/client/OptionInstance$Enum/valueListSupplier ()Lnet/minecraft/client/gui/components/CycleButton$ValueListSupplier; +MD: net/minecraft/client/OptionInstance$Enum/m_214064_ (Ljava/lang/Object;)Ljava/util/Optional; net/minecraft/client/OptionInstance$Enum/validateValue (Ljava/lang/Object;)Ljava/util/Optional; +MD: net/minecraft/client/OptionInstance$Enum/toString ()Ljava/lang/String; net/minecraft/client/OptionInstance$Enum/toString ()Ljava/lang/String; +MD: net/minecraft/client/OptionInstance$IntRange/ (II)V net/minecraft/client/OptionInstance$IntRange/ (II)V +MD: net/minecraft/client/OptionInstance$IntRange/equals (Ljava/lang/Object;)Z net/minecraft/client/OptionInstance$IntRange/equals (Ljava/lang/Object;)Z +MD: net/minecraft/client/OptionInstance$IntRange/hashCode ()I net/minecraft/client/OptionInstance$IntRange/hashCode ()I +MD: net/minecraft/client/OptionInstance$IntRange/m_213664_ ()Lcom/mojang/serialization/Codec; net/minecraft/client/OptionInstance$IntRange/codec ()Lcom/mojang/serialization/Codec; +MD: net/minecraft/client/OptionInstance$IntRange/m_214064_ (Ljava/lang/Integer;)Ljava/util/Optional; net/minecraft/client/OptionInstance$IntRange/validateValue (Ljava/lang/Integer;)Ljava/util/Optional; +MD: net/minecraft/client/OptionInstance$IntRange/m_214064_ (Ljava/lang/Object;)Ljava/util/Optional; net/minecraft/client/OptionInstance$IntRange/validateValue (Ljava/lang/Object;)Ljava/util/Optional; +MD: net/minecraft/client/OptionInstance$IntRange/m_214118_ ()I net/minecraft/client/OptionInstance$IntRange/maxInclusive ()I +MD: net/minecraft/client/OptionInstance$IntRange/m_214123_ ()I net/minecraft/client/OptionInstance$IntRange/minInclusive ()I +MD: net/minecraft/client/OptionInstance$IntRange/toString ()Ljava/lang/String; net/minecraft/client/OptionInstance$IntRange/toString ()Ljava/lang/String; +MD: net/minecraft/client/OptionInstance$IntRangeBase/m_213640_ (Ljava/lang/Integer;)D net/minecraft/client/OptionInstance$IntRangeBase/toSliderValue (Ljava/lang/Integer;)D +MD: net/minecraft/client/OptionInstance$IntRangeBase/m_213640_ (Ljava/lang/Object;)D net/minecraft/client/OptionInstance$IntRangeBase/toSliderValue (Ljava/lang/Object;)D +MD: net/minecraft/client/OptionInstance$IntRangeBase/m_213729_ (D)Ljava/lang/Integer; net/minecraft/client/OptionInstance$IntRangeBase/fromSliderValue (D)Ljava/lang/Integer; +MD: net/minecraft/client/OptionInstance$IntRangeBase/m_213729_ (D)Ljava/lang/Object; net/minecraft/client/OptionInstance$IntRangeBase/fromSliderValue (D)Ljava/lang/Object; +MD: net/minecraft/client/OptionInstance$IntRangeBase/m_214118_ ()I net/minecraft/client/OptionInstance$IntRangeBase/maxInclusive ()I +MD: net/minecraft/client/OptionInstance$IntRangeBase/m_214123_ ()I net/minecraft/client/OptionInstance$IntRangeBase/minInclusive ()I +MD: net/minecraft/client/OptionInstance$IntRangeBase/m_231657_ (Ljava/util/function/IntFunction;Ljava/util/function/ToIntFunction;)Lnet/minecraft/client/OptionInstance$SliderableValueSet; net/minecraft/client/OptionInstance$IntRangeBase/xmap (Ljava/util/function/IntFunction;Ljava/util/function/ToIntFunction;)Lnet/minecraft/client/OptionInstance$SliderableValueSet; +MD: net/minecraft/client/OptionInstance$IntRangeBase$1/ (Lnet/minecraft/client/OptionInstance$IntRangeBase;Ljava/util/function/ToIntFunction;Ljava/util/function/IntFunction;)V net/minecraft/client/OptionInstance$IntRangeBase$1/ (Lnet/minecraft/client/OptionInstance$IntRangeBase;Ljava/util/function/ToIntFunction;Ljava/util/function/IntFunction;)V +MD: net/minecraft/client/OptionInstance$IntRangeBase$1/m_213640_ (Ljava/lang/Object;)D net/minecraft/client/OptionInstance$IntRangeBase$1/toSliderValue (Ljava/lang/Object;)D +MD: net/minecraft/client/OptionInstance$IntRangeBase$1/m_213664_ ()Lcom/mojang/serialization/Codec; net/minecraft/client/OptionInstance$IntRangeBase$1/codec ()Lcom/mojang/serialization/Codec; +MD: net/minecraft/client/OptionInstance$IntRangeBase$1/m_213729_ (D)Ljava/lang/Object; net/minecraft/client/OptionInstance$IntRangeBase$1/fromSliderValue (D)Ljava/lang/Object; +MD: net/minecraft/client/OptionInstance$IntRangeBase$1/m_214064_ (Ljava/lang/Object;)Ljava/util/Optional; net/minecraft/client/OptionInstance$IntRangeBase$1/validateValue (Ljava/lang/Object;)Ljava/util/Optional; +MD: net/minecraft/client/OptionInstance$LazyEnum/ (Ljava/util/function/Supplier;Ljava/util/function/Function;Lcom/mojang/serialization/Codec;)V net/minecraft/client/OptionInstance$LazyEnum/ (Ljava/util/function/Supplier;Ljava/util/function/Function;Lcom/mojang/serialization/Codec;)V +MD: net/minecraft/client/OptionInstance$LazyEnum/equals (Ljava/lang/Object;)Z net/minecraft/client/OptionInstance$LazyEnum/equals (Ljava/lang/Object;)Z +MD: net/minecraft/client/OptionInstance$LazyEnum/f_231680_ ()Ljava/util/function/Supplier; net/minecraft/client/OptionInstance$LazyEnum/values ()Ljava/util/function/Supplier; +MD: net/minecraft/client/OptionInstance$LazyEnum/f_231681_ ()Ljava/util/function/Function; net/minecraft/client/OptionInstance$LazyEnum/validateValue ()Ljava/util/function/Function; +MD: net/minecraft/client/OptionInstance$LazyEnum/hashCode ()I net/minecraft/client/OptionInstance$LazyEnum/hashCode ()I +MD: net/minecraft/client/OptionInstance$LazyEnum/m_213664_ ()Lcom/mojang/serialization/Codec; net/minecraft/client/OptionInstance$LazyEnum/codec ()Lcom/mojang/serialization/Codec; +MD: net/minecraft/client/OptionInstance$LazyEnum/m_213889_ ()Lnet/minecraft/client/gui/components/CycleButton$ValueListSupplier; net/minecraft/client/OptionInstance$LazyEnum/valueListSupplier ()Lnet/minecraft/client/gui/components/CycleButton$ValueListSupplier; +MD: net/minecraft/client/OptionInstance$LazyEnum/m_214064_ (Ljava/lang/Object;)Ljava/util/Optional; net/minecraft/client/OptionInstance$LazyEnum/validateValue (Ljava/lang/Object;)Ljava/util/Optional; +MD: net/minecraft/client/OptionInstance$LazyEnum/toString ()Ljava/lang/String; net/minecraft/client/OptionInstance$LazyEnum/toString ()Ljava/lang/String; +MD: net/minecraft/client/OptionInstance$OptionInstanceSliderButton/ (Lnet/minecraft/client/Options;IIIILnet/minecraft/client/OptionInstance;Lnet/minecraft/client/OptionInstance$SliderableValueSet;Lnet/minecraft/client/OptionInstance$TooltipSupplier;Ljava/util/function/Consumer;)V net/minecraft/client/OptionInstance$OptionInstanceSliderButton/ (Lnet/minecraft/client/Options;IIIILnet/minecraft/client/OptionInstance;Lnet/minecraft/client/OptionInstance$SliderableValueSet;Lnet/minecraft/client/OptionInstance$TooltipSupplier;Ljava/util/function/Consumer;)V +MD: net/minecraft/client/OptionInstance$OptionInstanceSliderButton/m_5695_ ()V net/minecraft/client/OptionInstance$OptionInstanceSliderButton/updateMessage ()V +MD: net/minecraft/client/OptionInstance$OptionInstanceSliderButton/m_5697_ ()V net/minecraft/client/OptionInstance$OptionInstanceSliderButton/applyValue ()V +MD: net/minecraft/client/OptionInstance$SliderableOrCyclableValueSet/m_213823_ (Lnet/minecraft/client/OptionInstance$TooltipSupplier;Lnet/minecraft/client/Options;IIILjava/util/function/Consumer;)Ljava/util/function/Function; net/minecraft/client/OptionInstance$SliderableOrCyclableValueSet/createButton (Lnet/minecraft/client/OptionInstance$TooltipSupplier;Lnet/minecraft/client/Options;IIILjava/util/function/Consumer;)Ljava/util/function/Function; +MD: net/minecraft/client/OptionInstance$SliderableOrCyclableValueSet/m_214105_ ()Z net/minecraft/client/OptionInstance$SliderableOrCyclableValueSet/createCycleButton ()Z +MD: net/minecraft/client/OptionInstance$SliderableValueSet/m_213640_ (Ljava/lang/Object;)D net/minecraft/client/OptionInstance$SliderableValueSet/toSliderValue (Ljava/lang/Object;)D +MD: net/minecraft/client/OptionInstance$SliderableValueSet/m_213729_ (D)Ljava/lang/Object; net/minecraft/client/OptionInstance$SliderableValueSet/fromSliderValue (D)Ljava/lang/Object; +MD: net/minecraft/client/OptionInstance$SliderableValueSet/m_213823_ (Lnet/minecraft/client/OptionInstance$TooltipSupplier;Lnet/minecraft/client/Options;IIILjava/util/function/Consumer;)Ljava/util/function/Function; net/minecraft/client/OptionInstance$SliderableValueSet/createButton (Lnet/minecraft/client/OptionInstance$TooltipSupplier;Lnet/minecraft/client/Options;IIILjava/util/function/Consumer;)Ljava/util/function/Function; +MD: net/minecraft/client/OptionInstance$SliderableValueSet/m_260740_ (Lnet/minecraft/client/Options;IIILnet/minecraft/client/OptionInstance$TooltipSupplier;Ljava/util/function/Consumer;Lnet/minecraft/client/OptionInstance;)Lnet/minecraft/client/gui/components/AbstractWidget; net/minecraft/client/OptionInstance$SliderableValueSet/lambda$createButton$0 (Lnet/minecraft/client/Options;IIILnet/minecraft/client/OptionInstance$TooltipSupplier;Ljava/util/function/Consumer;Lnet/minecraft/client/OptionInstance;)Lnet/minecraft/client/gui/components/AbstractWidget; +MD: net/minecraft/client/OptionInstance$TooltipSupplier/m_257630_ (Ljava/lang/Object;)Lnet/minecraft/client/gui/components/Tooltip; net/minecraft/client/OptionInstance$TooltipSupplier/apply (Ljava/lang/Object;)Lnet/minecraft/client/gui/components/Tooltip; +MD: net/minecraft/client/OptionInstance$UnitDouble/ ()V net/minecraft/client/OptionInstance$UnitDouble/ ()V +MD: net/minecraft/client/OptionInstance$UnitDouble/ (Ljava/lang/String;I)V net/minecraft/client/OptionInstance$UnitDouble/ (Ljava/lang/String;I)V +MD: net/minecraft/client/OptionInstance$UnitDouble/m_213640_ (Ljava/lang/Double;)D net/minecraft/client/OptionInstance$UnitDouble/toSliderValue (Ljava/lang/Double;)D +MD: net/minecraft/client/OptionInstance$UnitDouble/m_213640_ (Ljava/lang/Object;)D net/minecraft/client/OptionInstance$UnitDouble/toSliderValue (Ljava/lang/Object;)D +MD: net/minecraft/client/OptionInstance$UnitDouble/m_213664_ ()Lcom/mojang/serialization/Codec; net/minecraft/client/OptionInstance$UnitDouble/codec ()Lcom/mojang/serialization/Codec; +MD: net/minecraft/client/OptionInstance$UnitDouble/m_213729_ (D)Ljava/lang/Double; net/minecraft/client/OptionInstance$UnitDouble/fromSliderValue (D)Ljava/lang/Double; +MD: net/minecraft/client/OptionInstance$UnitDouble/m_213729_ (D)Ljava/lang/Object; net/minecraft/client/OptionInstance$UnitDouble/fromSliderValue (D)Ljava/lang/Object; +MD: net/minecraft/client/OptionInstance$UnitDouble/m_214064_ (Ljava/lang/Double;)Ljava/util/Optional; net/minecraft/client/OptionInstance$UnitDouble/validateValue (Ljava/lang/Double;)Ljava/util/Optional; +MD: net/minecraft/client/OptionInstance$UnitDouble/m_214064_ (Ljava/lang/Object;)Ljava/util/Optional; net/minecraft/client/OptionInstance$UnitDouble/validateValue (Ljava/lang/Object;)Ljava/util/Optional; +MD: net/minecraft/client/OptionInstance$UnitDouble/m_231739_ ()[Lnet/minecraft/client/OptionInstance$UnitDouble; net/minecraft/client/OptionInstance$UnitDouble/$values ()[Lnet/minecraft/client/OptionInstance$UnitDouble; +MD: net/minecraft/client/OptionInstance$UnitDouble/m_231742_ (Lcom/mojang/datafixers/util/Either;)Ljava/lang/Double; net/minecraft/client/OptionInstance$UnitDouble/lambda$codec$2 (Lcom/mojang/datafixers/util/Either;)Ljava/lang/Double; +MD: net/minecraft/client/OptionInstance$UnitDouble/m_231744_ (Ljava/lang/Boolean;)Ljava/lang/Double; net/minecraft/client/OptionInstance$UnitDouble/lambda$codec$1 (Ljava/lang/Boolean;)Ljava/lang/Double; +MD: net/minecraft/client/OptionInstance$UnitDouble/m_231750_ (Ljava/util/function/DoubleFunction;Ljava/util/function/ToDoubleFunction;)Lnet/minecraft/client/OptionInstance$SliderableValueSet; net/minecraft/client/OptionInstance$UnitDouble/xmap (Ljava/util/function/DoubleFunction;Ljava/util/function/ToDoubleFunction;)Lnet/minecraft/client/OptionInstance$SliderableValueSet; +MD: net/minecraft/client/OptionInstance$UnitDouble/m_231759_ (Ljava/lang/Double;)Ljava/lang/Double; net/minecraft/client/OptionInstance$UnitDouble/lambda$codec$0 (Ljava/lang/Double;)Ljava/lang/Double; +MD: net/minecraft/client/OptionInstance$UnitDouble/valueOf (Ljava/lang/String;)Lnet/minecraft/client/OptionInstance$UnitDouble; net/minecraft/client/OptionInstance$UnitDouble/valueOf (Ljava/lang/String;)Lnet/minecraft/client/OptionInstance$UnitDouble; +MD: net/minecraft/client/OptionInstance$UnitDouble/values ()[Lnet/minecraft/client/OptionInstance$UnitDouble; net/minecraft/client/OptionInstance$UnitDouble/values ()[Lnet/minecraft/client/OptionInstance$UnitDouble; +MD: net/minecraft/client/OptionInstance$UnitDouble$1/ (Lnet/minecraft/client/OptionInstance$UnitDouble;Ljava/util/function/ToDoubleFunction;Ljava/util/function/DoubleFunction;)V net/minecraft/client/OptionInstance$UnitDouble$1/ (Lnet/minecraft/client/OptionInstance$UnitDouble;Ljava/util/function/ToDoubleFunction;Ljava/util/function/DoubleFunction;)V +MD: net/minecraft/client/OptionInstance$UnitDouble$1/m_213640_ (Ljava/lang/Object;)D net/minecraft/client/OptionInstance$UnitDouble$1/toSliderValue (Ljava/lang/Object;)D +MD: net/minecraft/client/OptionInstance$UnitDouble$1/m_213664_ ()Lcom/mojang/serialization/Codec; net/minecraft/client/OptionInstance$UnitDouble$1/codec ()Lcom/mojang/serialization/Codec; +MD: net/minecraft/client/OptionInstance$UnitDouble$1/m_213729_ (D)Ljava/lang/Object; net/minecraft/client/OptionInstance$UnitDouble$1/fromSliderValue (D)Ljava/lang/Object; +MD: net/minecraft/client/OptionInstance$UnitDouble$1/m_214064_ (Ljava/lang/Object;)Ljava/util/Optional; net/minecraft/client/OptionInstance$UnitDouble$1/validateValue (Ljava/lang/Object;)Ljava/util/Optional; +MD: net/minecraft/client/OptionInstance$ValueSet/m_213664_ ()Lcom/mojang/serialization/Codec; net/minecraft/client/OptionInstance$ValueSet/codec ()Lcom/mojang/serialization/Codec; +MD: net/minecraft/client/OptionInstance$ValueSet/m_213823_ (Lnet/minecraft/client/OptionInstance$TooltipSupplier;Lnet/minecraft/client/Options;IIILjava/util/function/Consumer;)Ljava/util/function/Function; net/minecraft/client/OptionInstance$ValueSet/createButton (Lnet/minecraft/client/OptionInstance$TooltipSupplier;Lnet/minecraft/client/Options;IIILjava/util/function/Consumer;)Ljava/util/function/Function; +MD: net/minecraft/client/OptionInstance$ValueSet/m_214064_ (Ljava/lang/Object;)Ljava/util/Optional; net/minecraft/client/OptionInstance$ValueSet/validateValue (Ljava/lang/Object;)Ljava/util/Optional; +MD: net/minecraft/client/Options/ ()V net/minecraft/client/Options/ ()V +MD: net/minecraft/client/Options/ (Lnet/minecraft/client/Minecraft;Ljava/io/File;)V net/minecraft/client/Options/ (Lnet/minecraft/client/Minecraft;Ljava/io/File;)V +MD: net/minecraft/client/Options/m_168416_ (Lnet/minecraft/world/entity/player/PlayerModelPart;)Z net/minecraft/client/Options/isModelPartEnabled (Lnet/minecraft/world/entity/player/PlayerModelPart;)Z +MD: net/minecraft/client/Options/m_168418_ (Lnet/minecraft/world/entity/player/PlayerModelPart;Z)V net/minecraft/client/Options/toggleModelPart (Lnet/minecraft/world/entity/player/PlayerModelPart;Z)V +MD: net/minecraft/client/Options/m_168427_ (Lnet/minecraft/client/Options$FieldAccess;)V net/minecraft/client/Options/processOptions (Lnet/minecraft/client/Options$FieldAccess;)V +MD: net/minecraft/client/Options/m_168435_ (Ljava/lang/String;)Z net/minecraft/client/Options/isTrue (Ljava/lang/String;)Z +MD: net/minecraft/client/Options/m_168440_ (Ljava/lang/String;)Z net/minecraft/client/Options/isFalse (Ljava/lang/String;)Z +MD: net/minecraft/client/Options/m_168442_ (Ljava/lang/String;)Ljava/util/List; net/minecraft/client/Options/readPackList (Ljava/lang/String;)Ljava/util/List; +MD: net/minecraft/client/Options/m_168450_ ()Ljava/io/File; net/minecraft/client/Options/getFile ()Ljava/io/File; +MD: net/minecraft/client/Options/m_168451_ ()Ljava/lang/String; net/minecraft/client/Options/dumpOptionsForReport ()Ljava/lang/String; +MD: net/minecraft/client/Options/m_193770_ (I)V net/minecraft/client/Options/setServerRenderDistance (I)V +MD: net/minecraft/client/Options/m_193772_ ()I net/minecraft/client/Options/getEffectiveRenderDistance ()I +MD: net/minecraft/client/Options/m_231812_ ()Lnet/minecraft/client/OptionInstance; net/minecraft/client/Options/autoJump ()Lnet/minecraft/client/OptionInstance; +MD: net/minecraft/client/Options/m_231813_ ()Lnet/minecraft/client/OptionInstance; net/minecraft/client/Options/autoSuggestions ()Lnet/minecraft/client/OptionInstance; +MD: net/minecraft/client/Options/m_231814_ ()Lnet/minecraft/client/OptionInstance; net/minecraft/client/Options/chatColors ()Lnet/minecraft/client/OptionInstance; +MD: net/minecraft/client/Options/m_231815_ ()Lnet/minecraft/client/OptionInstance; net/minecraft/client/Options/chatLinks ()Lnet/minecraft/client/OptionInstance; +MD: net/minecraft/client/Options/m_231816_ ()Lnet/minecraft/client/OptionInstance; net/minecraft/client/Options/chatLinksPrompt ()Lnet/minecraft/client/OptionInstance; +MD: net/minecraft/client/Options/m_231817_ ()Lnet/minecraft/client/OptionInstance; net/minecraft/client/Options/enableVsync ()Lnet/minecraft/client/OptionInstance; +MD: net/minecraft/client/Options/m_231818_ ()Lnet/minecraft/client/OptionInstance; net/minecraft/client/Options/entityShadows ()Lnet/minecraft/client/OptionInstance; +MD: net/minecraft/client/Options/m_231819_ ()Lnet/minecraft/client/OptionInstance; net/minecraft/client/Options/forceUnicodeFont ()Lnet/minecraft/client/OptionInstance; +MD: net/minecraft/client/Options/m_231820_ ()Lnet/minecraft/client/OptionInstance; net/minecraft/client/Options/invertYMouse ()Lnet/minecraft/client/OptionInstance; +MD: net/minecraft/client/Options/m_231821_ ()Lnet/minecraft/client/OptionInstance; net/minecraft/client/Options/discreteMouseScroll ()Lnet/minecraft/client/OptionInstance; +MD: net/minecraft/client/Options/m_231822_ ()Lnet/minecraft/client/OptionInstance; net/minecraft/client/Options/realmsNotifications ()Lnet/minecraft/client/OptionInstance; +MD: net/minecraft/client/Options/m_231823_ ()Lnet/minecraft/client/OptionInstance; net/minecraft/client/Options/allowServerListing ()Lnet/minecraft/client/OptionInstance; +MD: net/minecraft/client/Options/m_231824_ ()Lnet/minecraft/client/OptionInstance; net/minecraft/client/Options/reducedDebugInfo ()Lnet/minecraft/client/OptionInstance; +MD: net/minecraft/client/Options/m_231825_ ()Lnet/minecraft/client/OptionInstance; net/minecraft/client/Options/showSubtitles ()Lnet/minecraft/client/OptionInstance; +MD: net/minecraft/client/Options/m_231826_ ()Lnet/minecraft/client/OptionInstance; net/minecraft/client/Options/directionalAudio ()Lnet/minecraft/client/OptionInstance; +MD: net/minecraft/client/Options/m_231827_ ()Lnet/minecraft/client/OptionInstance; net/minecraft/client/Options/backgroundForChatOnly ()Lnet/minecraft/client/OptionInstance; +MD: net/minecraft/client/Options/m_231828_ ()Lnet/minecraft/client/OptionInstance; net/minecraft/client/Options/touchscreen ()Lnet/minecraft/client/OptionInstance; +MD: net/minecraft/client/Options/m_231829_ ()Lnet/minecraft/client/OptionInstance; net/minecraft/client/Options/fullscreen ()Lnet/minecraft/client/OptionInstance; +MD: net/minecraft/client/Options/m_231830_ ()Lnet/minecraft/client/OptionInstance; net/minecraft/client/Options/bobView ()Lnet/minecraft/client/OptionInstance; +MD: net/minecraft/client/Options/m_231831_ ()Lnet/minecraft/client/OptionInstance; net/minecraft/client/Options/toggleCrouch ()Lnet/minecraft/client/OptionInstance; +MD: net/minecraft/client/Options/m_231832_ ()Lnet/minecraft/client/OptionInstance; net/minecraft/client/Options/toggleSprint ()Lnet/minecraft/client/OptionInstance; +MD: net/minecraft/client/Options/m_231833_ ()Lnet/minecraft/client/OptionInstance; net/minecraft/client/Options/hideMatchedNames ()Lnet/minecraft/client/OptionInstance; +MD: net/minecraft/client/Options/m_231834_ ()Lnet/minecraft/client/OptionInstance; net/minecraft/client/Options/showAutosaveIndicator ()Lnet/minecraft/client/OptionInstance; +MD: net/minecraft/client/Options/m_231836_ ()Lnet/minecraft/client/OptionInstance; net/minecraft/client/Options/onlyShowSecureChat ()Lnet/minecraft/client/OptionInstance; +MD: net/minecraft/client/Options/m_231837_ ()Lnet/minecraft/client/OptionInstance; net/minecraft/client/Options/fov ()Lnet/minecraft/client/OptionInstance; +MD: net/minecraft/client/Options/m_231838_ ()Lnet/minecraft/client/OptionInstance; net/minecraft/client/Options/darkMojangStudiosBackground ()Lnet/minecraft/client/OptionInstance; +MD: net/minecraft/client/Options/m_231839_ (D)I net/minecraft/client/Options/unlogMouse (D)I +MD: net/minecraft/client/Options/m_231841_ (Lnet/minecraft/world/entity/HumanoidArm;)V net/minecraft/client/Options/lambda$new$32 (Lnet/minecraft/world/entity/HumanoidArm;)V +MD: net/minecraft/client/Options/m_231843_ (Lnet/minecraft/client/PrioritizeChunkUpdates;)V net/minecraft/client/Options/lambda$new$22 (Lnet/minecraft/client/PrioritizeChunkUpdates;)V +MD: net/minecraft/client/Options/m_231847_ (Lcom/mojang/datafixers/util/Pair;)Ljava/lang/String; net/minecraft/client/Options/lambda$dumpOptionsForReport$106 (Lcom/mojang/datafixers/util/Pair;)Ljava/lang/String; +MD: net/minecraft/client/Options/m_231849_ (Ljava/lang/Boolean;)V net/minecraft/client/Options/lambda$new$20 (Ljava/lang/Boolean;)V +MD: net/minecraft/client/Options/m_231851_ (Ljava/lang/Double;)V net/minecraft/client/Options/lambda$new$48 (Ljava/lang/Double;)V +MD: net/minecraft/client/Options/m_231853_ (Lnet/minecraft/client/CloudStatus;)V net/minecraft/client/Options/lambda$new$13 (Lnet/minecraft/client/CloudStatus;)V +MD: net/minecraft/client/Options/m_231855_ (Ljava/lang/Integer;)V net/minecraft/client/Options/lambda$new$104 (Ljava/lang/Integer;)V +MD: net/minecraft/client/Options/m_231861_ (Lnet/minecraft/client/OptionInstance;Lnet/minecraft/client/GraphicsStatus;)V net/minecraft/client/Options/lambda$new$18 (Lnet/minecraft/client/OptionInstance;Lnet/minecraft/client/GraphicsStatus;)V +MD: net/minecraft/client/Options/m_231868_ (Ljava/lang/Double;)V net/minecraft/client/Options/lambda$new$83 (Ljava/lang/Double;)V +MD: net/minecraft/client/Options/m_231870_ (Lnet/minecraft/client/GraphicsStatus;)V net/minecraft/client/Options/lambda$new$19 (Lnet/minecraft/client/GraphicsStatus;)V +MD: net/minecraft/client/Options/m_231874_ (Ljava/lang/Boolean;)V net/minecraft/client/Options/lambda$new$66 (Ljava/lang/Boolean;)V +MD: net/minecraft/client/Options/m_231876_ (Ljava/lang/Double;)V net/minecraft/client/Options/lambda$new$79 (Ljava/lang/Double;)V +MD: net/minecraft/client/Options/m_231894_ (Lnet/minecraft/nbt/CompoundTag;Ljava/lang/String;)V net/minecraft/client/Options/lambda$load$105 (Lnet/minecraft/nbt/CompoundTag;Ljava/lang/String;)V +MD: net/minecraft/client/Options/m_231897_ (Lnet/minecraft/network/chat/Component;D)Lnet/minecraft/network/chat/Component; net/minecraft/client/Options/percentValueLabel (Lnet/minecraft/network/chat/Component;D)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/client/Options/m_231900_ (Lnet/minecraft/network/chat/Component;I)Lnet/minecraft/network/chat/Component; net/minecraft/client/Options/genericValueLabel (Lnet/minecraft/network/chat/Component;I)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/client/Options/m_231903_ (Lnet/minecraft/network/chat/Component;Lnet/minecraft/client/GraphicsStatus;)Lnet/minecraft/network/chat/Component; net/minecraft/client/Options/lambda$new$15 (Lnet/minecraft/network/chat/Component;Lnet/minecraft/client/GraphicsStatus;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/client/Options/m_231909_ (Lnet/minecraft/network/chat/Component;Ljava/lang/Boolean;)Lnet/minecraft/network/chat/Component; net/minecraft/client/Options/lambda$new$70 (Lnet/minecraft/network/chat/Component;Ljava/lang/Boolean;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/client/Options/m_231912_ (Lnet/minecraft/network/chat/Component;Ljava/lang/Double;)Lnet/minecraft/network/chat/Component; net/minecraft/client/Options/lambda$new$89 (Lnet/minecraft/network/chat/Component;Ljava/lang/Double;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/client/Options/m_231915_ (Lnet/minecraft/network/chat/Component;Ljava/lang/Integer;)Lnet/minecraft/network/chat/Component; net/minecraft/client/Options/lambda$new$103 (Lnet/minecraft/network/chat/Component;Ljava/lang/Integer;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/client/Options/m_231918_ (Lnet/minecraft/network/chat/Component;Ljava/lang/String;)Lnet/minecraft/network/chat/Component; net/minecraft/client/Options/lambda$new$97 (Lnet/minecraft/network/chat/Component;Ljava/lang/String;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/client/Options/m_231921_ (Lnet/minecraft/network/chat/Component;Lnet/minecraft/network/chat/Component;)Lnet/minecraft/network/chat/Component; net/minecraft/client/Options/genericValueLabel (Lnet/minecraft/network/chat/Component;Lnet/minecraft/network/chat/Component;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/client/Options/m_231924_ ()Lnet/minecraft/client/OptionInstance; net/minecraft/client/Options/screenEffectScale ()Lnet/minecraft/client/OptionInstance; +MD: net/minecraft/client/Options/m_231925_ ()Lnet/minecraft/client/OptionInstance; net/minecraft/client/Options/fovEffectScale ()Lnet/minecraft/client/OptionInstance; +MD: net/minecraft/client/Options/m_231926_ ()Lnet/minecraft/client/OptionInstance; net/minecraft/client/Options/darknessEffectScale ()Lnet/minecraft/client/OptionInstance; +MD: net/minecraft/client/Options/m_231927_ ()Lnet/minecraft/client/OptionInstance; net/minecraft/client/Options/gamma ()Lnet/minecraft/client/OptionInstance; +MD: net/minecraft/client/Options/m_231928_ ()Lnet/minecraft/client/OptionInstance; net/minecraft/client/Options/guiScale ()Lnet/minecraft/client/OptionInstance; +MD: net/minecraft/client/Options/m_231929_ ()Lnet/minecraft/client/OptionInstance; net/minecraft/client/Options/particles ()Lnet/minecraft/client/OptionInstance; +MD: net/minecraft/client/Options/m_231930_ ()Lnet/minecraft/client/OptionInstance; net/minecraft/client/Options/narrator ()Lnet/minecraft/client/OptionInstance; +MD: net/minecraft/client/Options/m_231931_ ()Lnet/minecraft/client/OptionInstance; net/minecraft/client/Options/soundDevice ()Lnet/minecraft/client/OptionInstance; +MD: net/minecraft/client/Options/m_231932_ ()Ljava/util/List; net/minecraft/client/Options/lambda$new$98 ()Ljava/util/List; +MD: net/minecraft/client/Options/m_231933_ ()I net/minecraft/client/Options/lambda$new$92 ()I +MD: net/minecraft/client/Options/m_231934_ ()Z net/minecraft/client/Options/lambda$new$17 ()Z +MD: net/minecraft/client/Options/m_231935_ ()Lnet/minecraft/client/OptionInstance; net/minecraft/client/Options/hideLightningFlash ()Lnet/minecraft/client/OptionInstance; +MD: net/minecraft/client/Options/m_231936_ (Lnet/minecraft/world/entity/HumanoidArm;)Ljava/lang/String; net/minecraft/client/Options/lambda$new$31 (Lnet/minecraft/world/entity/HumanoidArm;)Ljava/lang/String; +MD: net/minecraft/client/Options/m_231938_ (Lcom/mojang/datafixers/util/Either;)Lnet/minecraft/client/CloudStatus; net/minecraft/client/Options/lambda$new$11 (Lcom/mojang/datafixers/util/Either;)Lnet/minecraft/client/CloudStatus; +MD: net/minecraft/client/Options/m_231940_ (Lnet/minecraft/client/CloudStatus;)Lcom/mojang/datafixers/util/Either; net/minecraft/client/Options/lambda$new$12 (Lnet/minecraft/client/CloudStatus;)Lcom/mojang/datafixers/util/Either; +MD: net/minecraft/client/Options/m_231942_ (Lnet/minecraft/client/GraphicsStatus;)Z net/minecraft/client/Options/lambda$new$16 (Lnet/minecraft/client/GraphicsStatus;)Z +MD: net/minecraft/client/Options/m_231946_ (Ljava/lang/Double;)V net/minecraft/client/Options/lambda$new$55 (Ljava/lang/Double;)V +MD: net/minecraft/client/Options/m_231948_ (Ljava/lang/Boolean;)V net/minecraft/client/Options/lambda$new$77 (Ljava/lang/Boolean;)V +MD: net/minecraft/client/Options/m_231950_ (Ljava/lang/Integer;)V net/minecraft/client/Options/lambda$new$75 (Ljava/lang/Integer;)V +MD: net/minecraft/client/Options/m_231952_ (Lnet/minecraft/network/chat/Component;I)Lnet/minecraft/network/chat/Component; net/minecraft/client/Options/pixelValueLabel (Lnet/minecraft/network/chat/Component;I)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/client/Options/m_231955_ (Lnet/minecraft/network/chat/Component;Ljava/lang/Boolean;)Lnet/minecraft/network/chat/Component; net/minecraft/client/Options/lambda$new$68 (Lnet/minecraft/network/chat/Component;Ljava/lang/Boolean;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/client/Options/m_231958_ (Lnet/minecraft/network/chat/Component;Ljava/lang/Double;)Lnet/minecraft/network/chat/Component; net/minecraft/client/Options/lambda$new$80 (Lnet/minecraft/network/chat/Component;Ljava/lang/Double;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/client/Options/m_231961_ (Lnet/minecraft/network/chat/Component;Ljava/lang/Integer;)Lnet/minecraft/network/chat/Component; net/minecraft/client/Options/lambda$new$101 (Lnet/minecraft/network/chat/Component;Ljava/lang/Integer;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/client/Options/m_231964_ ()Lnet/minecraft/client/OptionInstance; net/minecraft/client/Options/sensitivity ()Lnet/minecraft/client/OptionInstance; +MD: net/minecraft/client/Options/m_231965_ (I)D net/minecraft/client/Options/logMouse (I)D +MD: net/minecraft/client/Options/m_231969_ (Ljava/lang/Boolean;)V net/minecraft/client/Options/lambda$new$67 (Ljava/lang/Boolean;)V +MD: net/minecraft/client/Options/m_231971_ (Ljava/lang/Boolean;)V net/minecraft/client/Options/lambda$new$71 (Ljava/lang/Boolean;)V +MD: net/minecraft/client/Options/m_231973_ (Ljava/lang/Double;)V net/minecraft/client/Options/lambda$new$81 (Ljava/lang/Double;)V +MD: net/minecraft/client/Options/m_231975_ (Lnet/minecraft/network/chat/Component;Ljava/lang/Boolean;)Lnet/minecraft/network/chat/Component; net/minecraft/client/Options/lambda$new$65 (Lnet/minecraft/network/chat/Component;Ljava/lang/Boolean;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/client/Options/m_231978_ (Lnet/minecraft/network/chat/Component;Ljava/lang/Double;)Lnet/minecraft/network/chat/Component; net/minecraft/client/Options/lambda$new$78 (Lnet/minecraft/network/chat/Component;Ljava/lang/Double;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/client/Options/m_231981_ (Lnet/minecraft/network/chat/Component;Ljava/lang/Integer;)Lnet/minecraft/network/chat/Component; net/minecraft/client/Options/lambda$new$91 (Lnet/minecraft/network/chat/Component;Ljava/lang/Integer;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/client/Options/m_231984_ ()Lnet/minecraft/client/OptionInstance; net/minecraft/client/Options/renderDistance ()Lnet/minecraft/client/OptionInstance; +MD: net/minecraft/client/Options/m_231985_ (I)Ljava/lang/Double; net/minecraft/client/Options/lambda$new$42 (I)Ljava/lang/Double; +MD: net/minecraft/client/Options/m_231987_ (Lnet/minecraft/client/AttackIndicatorStatus;)V net/minecraft/client/Options/lambda$new$51 (Lnet/minecraft/client/AttackIndicatorStatus;)V +MD: net/minecraft/client/Options/m_231989_ (Ljava/lang/Boolean;)V net/minecraft/client/Options/lambda$new$69 (Ljava/lang/Boolean;)V +MD: net/minecraft/client/Options/m_231991_ (Ljava/lang/Integer;)V net/minecraft/client/Options/lambda$new$102 (Ljava/lang/Integer;)V +MD: net/minecraft/client/Options/m_231995_ (Lnet/minecraft/network/chat/Component;Ljava/lang/Double;)Lnet/minecraft/network/chat/Component; net/minecraft/client/Options/lambda$createSoundSliderOptionInstance$61 (Lnet/minecraft/network/chat/Component;Ljava/lang/Double;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/client/Options/m_231998_ (Lnet/minecraft/network/chat/Component;Ljava/lang/Integer;)Lnet/minecraft/network/chat/Component; net/minecraft/client/Options/lambda$new$72 (Lnet/minecraft/network/chat/Component;Ljava/lang/Integer;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/client/Options/m_232001_ ()Lnet/minecraft/client/OptionInstance; net/minecraft/client/Options/simulationDistance ()Lnet/minecraft/client/OptionInstance; +MD: net/minecraft/client/Options/m_232002_ (I)Ljava/lang/Integer; net/minecraft/client/Options/lambda$new$6 (I)Ljava/lang/Integer; +MD: net/minecraft/client/Options/m_232006_ (Ljava/lang/Double;)Ljava/lang/Integer; net/minecraft/client/Options/lambda$new$73 (Ljava/lang/Double;)Ljava/lang/Integer; +MD: net/minecraft/client/Options/m_232008_ (Ljava/lang/Integer;)Ljava/lang/Double; net/minecraft/client/Options/lambda$new$74 (Ljava/lang/Integer;)Ljava/lang/Double; +MD: net/minecraft/client/Options/m_232010_ (Ljava/lang/String;)Ljava/util/Optional; net/minecraft/client/Options/lambda$new$99 (Ljava/lang/String;)Ljava/util/Optional; +MD: net/minecraft/client/Options/m_232015_ (Lnet/minecraft/network/chat/Component;Ljava/lang/Integer;)Lnet/minecraft/network/chat/Component; net/minecraft/client/Options/lambda$new$52 (Lnet/minecraft/network/chat/Component;Ljava/lang/Integer;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/client/Options/m_232018_ ()Lnet/minecraft/client/OptionInstance; net/minecraft/client/Options/entityDistanceScaling ()Lnet/minecraft/client/OptionInstance; +MD: net/minecraft/client/Options/m_232019_ (I)Ljava/lang/Double; net/minecraft/client/Options/lambda$new$2 (I)Ljava/lang/Double; +MD: net/minecraft/client/Options/m_232021_ (Ljava/lang/Boolean;)V net/minecraft/client/Options/lambda$new$59 (Ljava/lang/Boolean;)V +MD: net/minecraft/client/Options/m_232023_ (Ljava/lang/Integer;)V net/minecraft/client/Options/lambda$new$50 (Ljava/lang/Integer;)V +MD: net/minecraft/client/Options/m_232025_ (Ljava/lang/Integer;)V net/minecraft/client/Options/lambda$new$53 (Ljava/lang/Integer;)V +MD: net/minecraft/client/Options/m_232027_ (Ljava/lang/String;)Lnet/minecraft/world/entity/HumanoidArm; net/minecraft/client/Options/lambda$new$30 (Ljava/lang/String;)Lnet/minecraft/world/entity/HumanoidArm; +MD: net/minecraft/client/Options/m_232032_ (Lnet/minecraft/network/chat/Component;Ljava/lang/Integer;)Lnet/minecraft/network/chat/Component; net/minecraft/client/Options/lambda$new$49 (Lnet/minecraft/network/chat/Component;Ljava/lang/Integer;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/client/Options/m_232035_ ()Lnet/minecraft/client/OptionInstance; net/minecraft/client/Options/framerateLimit ()Lnet/minecraft/client/OptionInstance; +MD: net/minecraft/client/Options/m_232036_ (Ljava/lang/Boolean;)V net/minecraft/client/Options/lambda$new$58 (Ljava/lang/Boolean;)V +MD: net/minecraft/client/Options/m_232038_ (Ljava/lang/Double;)V net/minecraft/client/Options/lambda$new$28 (Ljava/lang/Double;)V +MD: net/minecraft/client/Options/m_232040_ (Ljava/lang/Double;)V net/minecraft/client/Options/lambda$new$4 (Ljava/lang/Double;)V +MD: net/minecraft/client/Options/m_232042_ (Ljava/lang/String;)Lnet/minecraft/client/CloudStatus; net/minecraft/client/Options/lambda$new$10 (Ljava/lang/String;)Lnet/minecraft/client/CloudStatus; +MD: net/minecraft/client/Options/m_232044_ (Lnet/minecraft/network/chat/Component;Ljava/lang/Double;)Lnet/minecraft/network/chat/Component; net/minecraft/client/Options/lambda$new$39 (Lnet/minecraft/network/chat/Component;Ljava/lang/Double;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/client/Options/m_232047_ (Lnet/minecraft/network/chat/Component;Ljava/lang/Integer;)Lnet/minecraft/network/chat/Component; net/minecraft/client/Options/lambda$new$5 (Lnet/minecraft/network/chat/Component;Ljava/lang/Integer;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/client/Options/m_232050_ ()Lnet/minecraft/client/OptionInstance; net/minecraft/client/Options/cloudStatus ()Lnet/minecraft/client/OptionInstance; +MD: net/minecraft/client/Options/m_232051_ (Ljava/lang/Boolean;)V net/minecraft/client/Options/lambda$new$57 (Ljava/lang/Boolean;)V +MD: net/minecraft/client/Options/m_232053_ (Ljava/lang/Double;)I net/minecraft/client/Options/lambda$new$43 (Ljava/lang/Double;)I +MD: net/minecraft/client/Options/m_232057_ (Lnet/minecraft/network/chat/Component;Ljava/lang/Double;)Lnet/minecraft/network/chat/Component; net/minecraft/client/Options/lambda$new$37 (Lnet/minecraft/network/chat/Component;Ljava/lang/Double;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/client/Options/m_232060_ ()Lnet/minecraft/client/OptionInstance; net/minecraft/client/Options/graphicsMode ()Lnet/minecraft/client/OptionInstance; +MD: net/minecraft/client/Options/m_232061_ (Ljava/lang/Boolean;)V net/minecraft/client/Options/lambda$new$56 (Ljava/lang/Boolean;)V +MD: net/minecraft/client/Options/m_232063_ (Ljava/lang/Double;)V net/minecraft/client/Options/lambda$new$40 (Ljava/lang/Double;)V +MD: net/minecraft/client/Options/m_232067_ (Lnet/minecraft/network/chat/Component;Ljava/lang/Double;)Lnet/minecraft/network/chat/Component; net/minecraft/client/Options/lambda$new$35 (Lnet/minecraft/network/chat/Component;Ljava/lang/Double;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/client/Options/m_232070_ ()Lnet/minecraft/client/OptionInstance; net/minecraft/client/Options/ambientOcclusion ()Lnet/minecraft/client/OptionInstance; +MD: net/minecraft/client/Options/m_232073_ (Ljava/lang/Double;)V net/minecraft/client/Options/lambda$new$38 (Ljava/lang/Double;)V +MD: net/minecraft/client/Options/m_232077_ (Lnet/minecraft/network/chat/Component;Ljava/lang/Double;)Lnet/minecraft/network/chat/Component; net/minecraft/client/Options/lambda$new$33 (Lnet/minecraft/network/chat/Component;Ljava/lang/Double;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/client/Options/m_232080_ ()Lnet/minecraft/client/OptionInstance; net/minecraft/client/Options/prioritizeChunkUpdates ()Lnet/minecraft/client/OptionInstance; +MD: net/minecraft/client/Options/m_232081_ (Ljava/lang/Boolean;)Lnet/minecraft/client/CloudStatus; net/minecraft/client/Options/lambda$new$9 (Ljava/lang/Boolean;)Lnet/minecraft/client/CloudStatus; +MD: net/minecraft/client/Options/m_232083_ (Ljava/lang/Double;)V net/minecraft/client/Options/lambda$new$36 (Ljava/lang/Double;)V +MD: net/minecraft/client/Options/m_232085_ (Ljava/lang/Integer;)V net/minecraft/client/Options/lambda$new$8 (Ljava/lang/Integer;)V +MD: net/minecraft/client/Options/m_232087_ (Lnet/minecraft/network/chat/Component;Ljava/lang/Double;)Lnet/minecraft/network/chat/Component; net/minecraft/client/Options/lambda$new$24 (Lnet/minecraft/network/chat/Component;Ljava/lang/Double;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/client/Options/m_232090_ ()Lnet/minecraft/client/OptionInstance; net/minecraft/client/Options/chatVisibility ()Lnet/minecraft/client/OptionInstance; +MD: net/minecraft/client/Options/m_232091_ (Ljava/lang/Double;)V net/minecraft/client/Options/lambda$new$34 (Ljava/lang/Double;)V +MD: net/minecraft/client/Options/m_232093_ (Ljava/lang/Integer;)I net/minecraft/client/Options/lambda$new$7 (Ljava/lang/Integer;)I +MD: net/minecraft/client/Options/m_232095_ (Lnet/minecraft/network/chat/Component;Ljava/lang/Double;)Lnet/minecraft/network/chat/Component; net/minecraft/client/Options/lambda$new$0 (Lnet/minecraft/network/chat/Component;Ljava/lang/Double;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/client/Options/m_232098_ ()Lnet/minecraft/client/OptionInstance; net/minecraft/client/Options/chatOpacity ()Lnet/minecraft/client/OptionInstance; +MD: net/minecraft/client/Options/m_232099_ (Ljava/lang/Double;)V net/minecraft/client/Options/lambda$new$27 (Ljava/lang/Double;)V +MD: net/minecraft/client/Options/m_232101_ ()Lnet/minecraft/client/OptionInstance; net/minecraft/client/Options/chatLineSpacing ()Lnet/minecraft/client/OptionInstance; +MD: net/minecraft/client/Options/m_232102_ (Lnet/minecraft/world/entity/player/ChatVisiblity;)V net/minecraft/client/Options/lambda$new$23 (Lnet/minecraft/world/entity/player/ChatVisiblity;)V +MD: net/minecraft/client/Options/m_232104_ ()Lnet/minecraft/client/OptionInstance; net/minecraft/client/Options/textBackgroundOpacity ()Lnet/minecraft/client/OptionInstance; +MD: net/minecraft/client/Options/m_232105_ (Ljava/lang/Double;)V net/minecraft/client/Options/lambda$new$25 (Ljava/lang/Double;)V +MD: net/minecraft/client/Options/m_232107_ ()Lnet/minecraft/client/OptionInstance; net/minecraft/client/Options/mainHand ()Lnet/minecraft/client/OptionInstance; +MD: net/minecraft/client/Options/m_232108_ (Ljava/lang/Double;)V net/minecraft/client/Options/lambda$new$26 (Ljava/lang/Double;)V +MD: net/minecraft/client/Options/m_232110_ ()Lnet/minecraft/client/OptionInstance; net/minecraft/client/Options/chatScale ()Lnet/minecraft/client/OptionInstance; +MD: net/minecraft/client/Options/m_232111_ (Ljava/lang/Double;)I net/minecraft/client/Options/lambda$new$3 (Ljava/lang/Double;)I +MD: net/minecraft/client/Options/m_232113_ ()Lnet/minecraft/client/OptionInstance; net/minecraft/client/Options/chatWidth ()Lnet/minecraft/client/OptionInstance; +MD: net/minecraft/client/Options/m_232114_ (Ljava/lang/Double;)V net/minecraft/client/Options/lambda$new$1 (Ljava/lang/Double;)V +MD: net/minecraft/client/Options/m_232116_ ()Lnet/minecraft/client/OptionInstance; net/minecraft/client/Options/chatHeightUnfocused ()Lnet/minecraft/client/OptionInstance; +MD: net/minecraft/client/Options/m_232117_ ()Lnet/minecraft/client/OptionInstance; net/minecraft/client/Options/chatHeightFocused ()Lnet/minecraft/client/OptionInstance; +MD: net/minecraft/client/Options/m_232118_ ()Lnet/minecraft/client/OptionInstance; net/minecraft/client/Options/chatDelay ()Lnet/minecraft/client/OptionInstance; +MD: net/minecraft/client/Options/m_232119_ ()Lnet/minecraft/client/OptionInstance; net/minecraft/client/Options/mipmapLevels ()Lnet/minecraft/client/OptionInstance; +MD: net/minecraft/client/Options/m_232120_ ()Lnet/minecraft/client/OptionInstance; net/minecraft/client/Options/attackIndicator ()Lnet/minecraft/client/OptionInstance; +MD: net/minecraft/client/Options/m_232121_ ()Lnet/minecraft/client/OptionInstance; net/minecraft/client/Options/biomeBlendRadius ()Lnet/minecraft/client/OptionInstance; +MD: net/minecraft/client/Options/m_232122_ ()Lnet/minecraft/client/OptionInstance; net/minecraft/client/Options/mouseWheelSensitivity ()Lnet/minecraft/client/OptionInstance; +MD: net/minecraft/client/Options/m_232123_ ()Lnet/minecraft/client/OptionInstance; net/minecraft/client/Options/rawMouseInput ()Lnet/minecraft/client/OptionInstance; +MD: net/minecraft/client/Options/m_240389_ (Lnet/minecraft/client/NarratorStatus;)V net/minecraft/client/Options/lambda$new$96 (Lnet/minecraft/client/NarratorStatus;)V +MD: net/minecraft/client/Options/m_240390_ (Lnet/minecraft/network/chat/Component;Lnet/minecraft/client/NarratorStatus;)Lnet/minecraft/network/chat/Component; net/minecraft/client/Options/lambda$new$95 (Lnet/minecraft/network/chat/Component;Lnet/minecraft/client/NarratorStatus;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/client/Options/m_240679_ (Ljava/lang/Double;)V net/minecraft/client/Options/lambda$new$44 (Ljava/lang/Double;)V +MD: net/minecraft/client/Options/m_241715_ (Lnet/minecraft/network/chat/Component;Ljava/lang/Double;)Lnet/minecraft/network/chat/Component; net/minecraft/client/Options/lambda$new$41 (Lnet/minecraft/network/chat/Component;Ljava/lang/Double;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/client/Options/m_241716_ (Lnet/minecraft/network/chat/Component;Ljava/lang/Double;)Lnet/minecraft/network/chat/Component; net/minecraft/client/Options/lambda$new$54 (Lnet/minecraft/network/chat/Component;Ljava/lang/Double;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/client/Options/m_241717_ (Ljava/lang/Double;)V net/minecraft/client/Options/lambda$new$85 (Ljava/lang/Double;)V +MD: net/minecraft/client/Options/m_244655_ (Lnet/minecraft/network/chat/Component;Ljava/lang/Double;)Lnet/minecraft/network/chat/Component; net/minecraft/client/Options/lambda$new$82 (Lnet/minecraft/network/chat/Component;Ljava/lang/Double;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/client/Options/m_244656_ (Ljava/util/EnumMap;)V net/minecraft/client/Options/lambda$new$60 (Ljava/util/EnumMap;)V +MD: net/minecraft/client/Options/m_244657_ (Lnet/minecraft/sounds/SoundSource;Ljava/lang/Double;)V net/minecraft/client/Options/lambda$createSoundSliderOptionInstance$62 (Lnet/minecraft/sounds/SoundSource;Ljava/lang/Double;)V +MD: net/minecraft/client/Options/m_245201_ ()Lnet/minecraft/client/OptionInstance; net/minecraft/client/Options/panoramaSpeed ()Lnet/minecraft/client/OptionInstance; +MD: net/minecraft/client/Options/m_246669_ (Lnet/minecraft/sounds/SoundSource;)Lnet/minecraft/client/OptionInstance; net/minecraft/client/Options/getSoundSourceOptionInstance (Lnet/minecraft/sounds/SoundSource;)Lnet/minecraft/client/OptionInstance; +MD: net/minecraft/client/Options/m_247249_ (Ljava/lang/String;Lnet/minecraft/sounds/SoundSource;)Lnet/minecraft/client/OptionInstance; net/minecraft/client/Options/createSoundSliderOptionInstance (Ljava/lang/String;Lnet/minecraft/sounds/SoundSource;)Lnet/minecraft/client/OptionInstance; +MD: net/minecraft/client/Options/m_257066_ (Lnet/minecraft/client/GraphicsStatus;)Lnet/minecraft/client/gui/components/Tooltip; net/minecraft/client/Options/lambda$new$14 (Lnet/minecraft/client/GraphicsStatus;)Lnet/minecraft/client/gui/components/Tooltip; +MD: net/minecraft/client/Options/m_257067_ (Lnet/minecraft/client/PrioritizeChunkUpdates;)Lnet/minecraft/client/gui/components/Tooltip; net/minecraft/client/Options/lambda$new$21 (Lnet/minecraft/client/PrioritizeChunkUpdates;)Lnet/minecraft/client/gui/components/Tooltip; +MD: net/minecraft/client/Options/m_257068_ (Ljava/lang/Boolean;)Lnet/minecraft/client/gui/components/Tooltip; net/minecraft/client/Options/lambda$new$63 (Ljava/lang/Boolean;)Lnet/minecraft/client/gui/components/Tooltip; +MD: net/minecraft/client/Options/m_257871_ ()Lnet/minecraft/client/OptionInstance; net/minecraft/client/Options/operatorItemsTab ()Lnet/minecraft/client/OptionInstance; +MD: net/minecraft/client/Options/m_260741_ (Lnet/minecraft/network/chat/Component;Ljava/lang/Boolean;)Lnet/minecraft/network/chat/Component; net/minecraft/client/Options/lambda$new$76 (Lnet/minecraft/network/chat/Component;Ljava/lang/Boolean;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/client/Options/m_260742_ (Ljava/lang/Double;)V net/minecraft/client/Options/lambda$new$88 (Ljava/lang/Double;)V +MD: net/minecraft/client/Options/m_261324_ ()Lnet/minecraft/client/OptionInstance; net/minecraft/client/Options/telemetryOptInExtra ()Lnet/minecraft/client/OptionInstance; +MD: net/minecraft/client/Options/m_263137_ (Ljava/lang/String;)V net/minecraft/client/Options/lambda$new$100 (Ljava/lang/String;)V +MD: net/minecraft/client/Options/m_263138_ (Ljava/lang/Boolean;)V net/minecraft/client/Options/lambda$new$64 (Ljava/lang/Boolean;)V +MD: net/minecraft/client/Options/m_263858_ (Ljava/lang/Double;)V net/minecraft/client/Options/lambda$new$90 (Ljava/lang/Double;)V +MD: net/minecraft/client/Options/m_263859_ (Lnet/minecraft/network/chat/Component;Ljava/lang/Double;)Lnet/minecraft/network/chat/Component; net/minecraft/client/Options/lambda$new$45 (Lnet/minecraft/network/chat/Component;Ljava/lang/Double;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/client/Options/m_263860_ (I)Ljava/lang/Double; net/minecraft/client/Options/lambda$new$46 (I)Ljava/lang/Double; +MD: net/minecraft/client/Options/m_263861_ (Ljava/lang/Double;)I net/minecraft/client/Options/lambda$new$47 (Ljava/lang/Double;)I +MD: net/minecraft/client/Options/m_264038_ ()Lnet/minecraft/client/OptionInstance; net/minecraft/client/Options/notificationDisplayTime ()Lnet/minecraft/client/OptionInstance; +MD: net/minecraft/client/Options/m_267499_ (Lnet/minecraft/network/chat/Component;Ljava/lang/Double;)Lnet/minecraft/network/chat/Component; net/minecraft/client/Options/lambda$new$84 (Lnet/minecraft/network/chat/Component;Ljava/lang/Double;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/client/Options/m_267500_ (Ljava/lang/Integer;)V net/minecraft/client/Options/lambda$new$93 (Ljava/lang/Integer;)V +MD: net/minecraft/client/Options/m_267501_ (Lnet/minecraft/network/chat/Component;Ljava/lang/Double;)Lnet/minecraft/network/chat/Component; net/minecraft/client/Options/lambda$new$86 (Lnet/minecraft/network/chat/Component;Ljava/lang/Double;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/client/Options/m_267782_ ()Lnet/minecraft/client/OptionInstance; net/minecraft/client/Options/glintStrength ()Lnet/minecraft/client/OptionInstance; +MD: net/minecraft/client/Options/m_267805_ ()Lnet/minecraft/client/OptionInstance; net/minecraft/client/Options/glintSpeed ()Lnet/minecraft/client/OptionInstance; +MD: net/minecraft/client/Options/m_268763_ (Lnet/minecraft/network/chat/Component;Ljava/lang/Double;)Lnet/minecraft/network/chat/Component; net/minecraft/client/Options/lambda$new$87 (Lnet/minecraft/network/chat/Component;Ljava/lang/Double;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/client/Options/m_268764_ (Lnet/minecraft/client/ParticleStatus;)V net/minecraft/client/Options/lambda$new$94 (Lnet/minecraft/client/ParticleStatus;)V +MD: net/minecraft/client/Options/m_269326_ ()Lnet/minecraft/client/OptionInstance; net/minecraft/client/Options/damageTiltStrength ()Lnet/minecraft/client/OptionInstance; +MD: net/minecraft/client/Options/m_274330_ ()Lnet/minecraft/client/OptionInstance; net/minecraft/client/Options/highContrast ()Lnet/minecraft/client/OptionInstance; +MD: net/minecraft/client/Options/m_274546_ (Lnet/minecraft/server/packs/repository/PackRepository;)V net/minecraft/client/Options/updateResourcePacks (Lnet/minecraft/server/packs/repository/PackRepository;)V +MD: net/minecraft/client/Options/m_275764_ (Ljava/lang/Boolean;)V net/minecraft/client/Options/lambda$new$29 (Ljava/lang/Boolean;)V +MD: net/minecraft/client/Options/m_92140_ ()V net/minecraft/client/Options/load ()V +MD: net/minecraft/client/Options/m_92141_ (F)F net/minecraft/client/Options/getBackgroundOpacity (F)F +MD: net/minecraft/client/Options/m_92143_ (I)I net/minecraft/client/Options/getBackgroundColor (I)I +MD: net/minecraft/client/Options/m_92145_ (Lnet/minecraft/server/packs/repository/PackRepository;)V net/minecraft/client/Options/loadSelectedResourcePacks (Lnet/minecraft/server/packs/repository/PackRepository;)V +MD: net/minecraft/client/Options/m_92147_ (Lnet/minecraft/sounds/SoundSource;)F net/minecraft/client/Options/getSoundSourceVolume (Lnet/minecraft/sounds/SoundSource;)F +MD: net/minecraft/client/Options/m_92154_ (Lnet/minecraft/world/entity/player/PlayerModelPart;Z)V net/minecraft/client/Options/setModelPart (Lnet/minecraft/world/entity/player/PlayerModelPart;Z)V +MD: net/minecraft/client/Options/m_92157_ (Lnet/minecraft/client/CameraType;)V net/minecraft/client/Options/setCameraType (Lnet/minecraft/client/CameraType;)V +MD: net/minecraft/client/Options/m_92159_ (Lnet/minecraft/client/KeyMapping;Lcom/mojang/blaze3d/platform/InputConstants$Key;)V net/minecraft/client/Options/setKey (Lnet/minecraft/client/KeyMapping;Lcom/mojang/blaze3d/platform/InputConstants$Key;)V +MD: net/minecraft/client/Options/m_92164_ (Lnet/minecraft/nbt/CompoundTag;)Lnet/minecraft/nbt/CompoundTag; net/minecraft/client/Options/dataFix (Lnet/minecraft/nbt/CompoundTag;)Lnet/minecraft/nbt/CompoundTag; +MD: net/minecraft/client/Options/m_92169_ ()V net/minecraft/client/Options/save ()V +MD: net/minecraft/client/Options/m_92170_ (F)I net/minecraft/client/Options/getBackgroundColor (F)I +MD: net/minecraft/client/Options/m_92172_ ()V net/minecraft/client/Options/broadcastOptions ()V +MD: net/minecraft/client/Options/m_92174_ ()Lnet/minecraft/client/CloudStatus; net/minecraft/client/Options/getCloudsType ()Lnet/minecraft/client/CloudStatus; +MD: net/minecraft/client/Options/m_92175_ ()Z net/minecraft/client/Options/useNativeTransport ()Z +MD: net/minecraft/client/Options/m_92176_ ()Lnet/minecraft/client/CameraType; net/minecraft/client/Options/getCameraType ()Lnet/minecraft/client/CameraType; +MD: net/minecraft/client/Options$1/ ()V net/minecraft/client/Options$1/ ()V +MD: net/minecraft/client/Options$2/ (Lnet/minecraft/client/Options;Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/client/Options$2/ (Lnet/minecraft/client/Options;Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/client/Options$2/m_141943_ (Ljava/lang/String;Ljava/lang/String;)Ljava/lang/String; net/minecraft/client/Options$2/process (Ljava/lang/String;Ljava/lang/String;)Ljava/lang/String; +MD: net/minecraft/client/Options$2/m_142432_ (Ljava/lang/String;F)F net/minecraft/client/Options$2/process (Ljava/lang/String;F)F +MD: net/minecraft/client/Options$2/m_142634_ (Ljava/lang/String;Ljava/lang/Object;Ljava/util/function/Function;Ljava/util/function/Function;)Ljava/lang/Object; net/minecraft/client/Options$2/process (Ljava/lang/String;Ljava/lang/Object;Ljava/util/function/Function;Ljava/util/function/Function;)Ljava/lang/Object; +MD: net/minecraft/client/Options$2/m_142682_ (Ljava/lang/String;Z)Z net/minecraft/client/Options$2/process (Ljava/lang/String;Z)Z +MD: net/minecraft/client/Options$2/m_142708_ (Ljava/lang/String;I)I net/minecraft/client/Options$2/process (Ljava/lang/String;I)I +MD: net/minecraft/client/Options$2/m_168458_ (Ljava/lang/String;)Ljava/lang/String; net/minecraft/client/Options$2/getValueOrNull (Ljava/lang/String;)Ljava/lang/String; +MD: net/minecraft/client/Options$2/m_213982_ (Ljava/lang/String;Lnet/minecraft/client/OptionInstance;)V net/minecraft/client/Options$2/process (Ljava/lang/String;Lnet/minecraft/client/OptionInstance;)V +MD: net/minecraft/client/Options$2/m_232127_ (Ljava/lang/String;Lnet/minecraft/client/OptionInstance;Lcom/mojang/serialization/DataResult$PartialResult;)V net/minecraft/client/Options$2/lambda$process$0 (Ljava/lang/String;Lnet/minecraft/client/OptionInstance;Lcom/mojang/serialization/DataResult$PartialResult;)V +MD: net/minecraft/client/Options$3/ (Lnet/minecraft/client/Options;Ljava/io/PrintWriter;)V net/minecraft/client/Options$3/ (Lnet/minecraft/client/Options;Ljava/io/PrintWriter;)V +MD: net/minecraft/client/Options$3/m_141943_ (Ljava/lang/String;Ljava/lang/String;)Ljava/lang/String; net/minecraft/client/Options$3/process (Ljava/lang/String;Ljava/lang/String;)Ljava/lang/String; +MD: net/minecraft/client/Options$3/m_142432_ (Ljava/lang/String;F)F net/minecraft/client/Options$3/process (Ljava/lang/String;F)F +MD: net/minecraft/client/Options$3/m_142634_ (Ljava/lang/String;Ljava/lang/Object;Ljava/util/function/Function;Ljava/util/function/Function;)Ljava/lang/Object; net/minecraft/client/Options$3/process (Ljava/lang/String;Ljava/lang/Object;Ljava/util/function/Function;Ljava/util/function/Function;)Ljava/lang/Object; +MD: net/minecraft/client/Options$3/m_142682_ (Ljava/lang/String;Z)Z net/minecraft/client/Options$3/process (Ljava/lang/String;Z)Z +MD: net/minecraft/client/Options$3/m_142708_ (Ljava/lang/String;I)I net/minecraft/client/Options$3/process (Ljava/lang/String;I)I +MD: net/minecraft/client/Options$3/m_168490_ (Ljava/lang/String;)V net/minecraft/client/Options$3/writePrefix (Ljava/lang/String;)V +MD: net/minecraft/client/Options$3/m_213982_ (Ljava/lang/String;Lnet/minecraft/client/OptionInstance;)V net/minecraft/client/Options$3/process (Ljava/lang/String;Lnet/minecraft/client/OptionInstance;)V +MD: net/minecraft/client/Options$3/m_232131_ (Lnet/minecraft/client/OptionInstance;Lcom/mojang/serialization/DataResult$PartialResult;)V net/minecraft/client/Options$3/lambda$process$0 (Lnet/minecraft/client/OptionInstance;Lcom/mojang/serialization/DataResult$PartialResult;)V +MD: net/minecraft/client/Options$3/m_232137_ (Ljava/lang/String;Ljava/io/PrintWriter;Lcom/google/gson/JsonElement;)V net/minecraft/client/Options$3/lambda$process$1 (Ljava/lang/String;Ljava/io/PrintWriter;Lcom/google/gson/JsonElement;)V +MD: net/minecraft/client/Options$4/ ()V net/minecraft/client/Options$4/ ()V +MD: net/minecraft/client/Options$FieldAccess/m_141943_ (Ljava/lang/String;Ljava/lang/String;)Ljava/lang/String; net/minecraft/client/Options$FieldAccess/process (Ljava/lang/String;Ljava/lang/String;)Ljava/lang/String; +MD: net/minecraft/client/Options$FieldAccess/m_142432_ (Ljava/lang/String;F)F net/minecraft/client/Options$FieldAccess/process (Ljava/lang/String;F)F +MD: net/minecraft/client/Options$FieldAccess/m_142634_ (Ljava/lang/String;Ljava/lang/Object;Ljava/util/function/Function;Ljava/util/function/Function;)Ljava/lang/Object; net/minecraft/client/Options$FieldAccess/process (Ljava/lang/String;Ljava/lang/Object;Ljava/util/function/Function;Ljava/util/function/Function;)Ljava/lang/Object; +MD: net/minecraft/client/Options$FieldAccess/m_142682_ (Ljava/lang/String;Z)Z net/minecraft/client/Options$FieldAccess/process (Ljava/lang/String;Z)Z +MD: net/minecraft/client/Options$FieldAccess/m_142708_ (Ljava/lang/String;I)I net/minecraft/client/Options$FieldAccess/process (Ljava/lang/String;I)I +MD: net/minecraft/client/Options$FieldAccess/m_213982_ (Ljava/lang/String;Lnet/minecraft/client/OptionInstance;)V net/minecraft/client/Options$FieldAccess/process (Ljava/lang/String;Lnet/minecraft/client/OptionInstance;)V +MD: net/minecraft/client/ParticleStatus/ ()V net/minecraft/client/ParticleStatus/ ()V +MD: net/minecraft/client/ParticleStatus/ (Ljava/lang/String;IILjava/lang/String;)V net/minecraft/client/ParticleStatus/ (Ljava/lang/String;IILjava/lang/String;)V +MD: net/minecraft/client/ParticleStatus/m_168537_ ()[Lnet/minecraft/client/ParticleStatus; net/minecraft/client/ParticleStatus/$values ()[Lnet/minecraft/client/ParticleStatus; +MD: net/minecraft/client/ParticleStatus/m_35965_ ()I net/minecraft/client/ParticleStatus/getId ()I +MD: net/minecraft/client/ParticleStatus/m_35968_ ()Ljava/lang/String; net/minecraft/client/ParticleStatus/getKey ()Ljava/lang/String; +MD: net/minecraft/client/ParticleStatus/m_92196_ (I)Lnet/minecraft/client/ParticleStatus; net/minecraft/client/ParticleStatus/byId (I)Lnet/minecraft/client/ParticleStatus; +MD: net/minecraft/client/ParticleStatus/valueOf (Ljava/lang/String;)Lnet/minecraft/client/ParticleStatus; net/minecraft/client/ParticleStatus/valueOf (Ljava/lang/String;)Lnet/minecraft/client/ParticleStatus; +MD: net/minecraft/client/ParticleStatus/values ()[Lnet/minecraft/client/ParticleStatus; net/minecraft/client/ParticleStatus/values ()[Lnet/minecraft/client/ParticleStatus; +MD: net/minecraft/client/PeriodicNotificationManager/ ()V net/minecraft/client/PeriodicNotificationManager/ ()V +MD: net/minecraft/client/PeriodicNotificationManager/ (Lnet/minecraft/resources/ResourceLocation;Lit/unimi/dsi/fastutil/objects/Object2BooleanFunction;)V net/minecraft/client/PeriodicNotificationManager/ (Lnet/minecraft/resources/ResourceLocation;Lit/unimi/dsi/fastutil/objects/Object2BooleanFunction;)V +MD: net/minecraft/client/PeriodicNotificationManager/close ()V net/minecraft/client/PeriodicNotificationManager/close ()V +MD: net/minecraft/client/PeriodicNotificationManager/m_205295_ ()V net/minecraft/client/PeriodicNotificationManager/stopTimer ()V +MD: net/minecraft/client/PeriodicNotificationManager/m_205296_ (JLnet/minecraft/client/PeriodicNotificationManager$Notification;)J net/minecraft/client/PeriodicNotificationManager/lambda$calculateOptimalPeriod$3 (JLnet/minecraft/client/PeriodicNotificationManager$Notification;)J +MD: net/minecraft/client/PeriodicNotificationManager/m_205302_ (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/client/PeriodicNotificationManager/lambda$static$0 (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/client/PeriodicNotificationManager/m_205304_ (Lnet/minecraft/client/PeriodicNotificationManager$Notification;)J net/minecraft/client/PeriodicNotificationManager/lambda$calculateInitialDelay$5 (Lnet/minecraft/client/PeriodicNotificationManager$Notification;)J +MD: net/minecraft/client/PeriodicNotificationManager/m_205310_ (Ljava/util/List;)J net/minecraft/client/PeriodicNotificationManager/calculateInitialDelay (Ljava/util/List;)J +MD: net/minecraft/client/PeriodicNotificationManager/m_205312_ (Ljava/util/List;J)J net/minecraft/client/PeriodicNotificationManager/calculateOptimalPeriod (Ljava/util/List;J)J +MD: net/minecraft/client/PeriodicNotificationManager/m_205315_ (Ljava/util/Map$Entry;)Z net/minecraft/client/PeriodicNotificationManager/lambda$apply$1 (Ljava/util/Map$Entry;)Z +MD: net/minecraft/client/PeriodicNotificationManager/m_205321_ ()Ljava/lang/IllegalStateException; net/minecraft/client/PeriodicNotificationManager/lambda$calculateOptimalPeriod$4 ()Ljava/lang/IllegalStateException; +MD: net/minecraft/client/PeriodicNotificationManager/m_205325_ (Lnet/minecraft/client/PeriodicNotificationManager$Notification;)Z net/minecraft/client/PeriodicNotificationManager/lambda$apply$2 (Lnet/minecraft/client/PeriodicNotificationManager$Notification;)Z +MD: net/minecraft/client/PeriodicNotificationManager/m_5787_ (Ljava/lang/Object;Lnet/minecraft/server/packs/resources/ResourceManager;Lnet/minecraft/util/profiling/ProfilerFiller;)V net/minecraft/client/PeriodicNotificationManager/apply (Ljava/lang/Object;Lnet/minecraft/server/packs/resources/ResourceManager;Lnet/minecraft/util/profiling/ProfilerFiller;)V +MD: net/minecraft/client/PeriodicNotificationManager/m_5787_ (Ljava/util/Map;Lnet/minecraft/server/packs/resources/ResourceManager;Lnet/minecraft/util/profiling/ProfilerFiller;)V net/minecraft/client/PeriodicNotificationManager/apply (Ljava/util/Map;Lnet/minecraft/server/packs/resources/ResourceManager;Lnet/minecraft/util/profiling/ProfilerFiller;)V +MD: net/minecraft/client/PeriodicNotificationManager/m_5944_ (Lnet/minecraft/server/packs/resources/ResourceManager;Lnet/minecraft/util/profiling/ProfilerFiller;)Ljava/util/Map; net/minecraft/client/PeriodicNotificationManager/prepare (Lnet/minecraft/server/packs/resources/ResourceManager;Lnet/minecraft/util/profiling/ProfilerFiller;)Ljava/util/Map; +MD: net/minecraft/client/PeriodicNotificationManager/m_5944_ (Lnet/minecraft/server/packs/resources/ResourceManager;Lnet/minecraft/util/profiling/ProfilerFiller;)Ljava/lang/Object; net/minecraft/client/PeriodicNotificationManager/prepare (Lnet/minecraft/server/packs/resources/ResourceManager;Lnet/minecraft/util/profiling/ProfilerFiller;)Ljava/lang/Object; +MD: net/minecraft/client/PeriodicNotificationManager$Notification/ (JJLjava/lang/String;Ljava/lang/String;)V net/minecraft/client/PeriodicNotificationManager$Notification/ (JJLjava/lang/String;Ljava/lang/String;)V +MD: net/minecraft/client/PeriodicNotificationManager$Notification/equals (Ljava/lang/Object;)Z net/minecraft/client/PeriodicNotificationManager$Notification/equals (Ljava/lang/Object;)Z +MD: net/minecraft/client/PeriodicNotificationManager$Notification/f_205328_ ()J net/minecraft/client/PeriodicNotificationManager$Notification/delay ()J +MD: net/minecraft/client/PeriodicNotificationManager$Notification/f_205329_ ()J net/minecraft/client/PeriodicNotificationManager$Notification/period ()J +MD: net/minecraft/client/PeriodicNotificationManager$Notification/f_205330_ ()Ljava/lang/String; net/minecraft/client/PeriodicNotificationManager$Notification/title ()Ljava/lang/String; +MD: net/minecraft/client/PeriodicNotificationManager$Notification/f_205331_ ()Ljava/lang/String; net/minecraft/client/PeriodicNotificationManager$Notification/message ()Ljava/lang/String; +MD: net/minecraft/client/PeriodicNotificationManager$Notification/hashCode ()I net/minecraft/client/PeriodicNotificationManager$Notification/hashCode ()I +MD: net/minecraft/client/PeriodicNotificationManager$Notification/toString ()Ljava/lang/String; net/minecraft/client/PeriodicNotificationManager$Notification/toString ()Ljava/lang/String; +MD: net/minecraft/client/PeriodicNotificationManager$NotificationTask/ (Ljava/util/List;JJ)V net/minecraft/client/PeriodicNotificationManager$NotificationTask/ (Ljava/util/List;JJ)V +MD: net/minecraft/client/PeriodicNotificationManager$NotificationTask/m_205353_ (Lnet/minecraft/client/PeriodicNotificationManager$Notification;J)V net/minecraft/client/PeriodicNotificationManager$NotificationTask/lambda$run$0 (Lnet/minecraft/client/PeriodicNotificationManager$Notification;J)V +MD: net/minecraft/client/PeriodicNotificationManager$NotificationTask/m_205356_ (Ljava/util/List;J)Lnet/minecraft/client/PeriodicNotificationManager$NotificationTask; net/minecraft/client/PeriodicNotificationManager$NotificationTask/reset (Ljava/util/List;J)Lnet/minecraft/client/PeriodicNotificationManager$NotificationTask; +MD: net/minecraft/client/PeriodicNotificationManager$NotificationTask/run ()V net/minecraft/client/PeriodicNotificationManager$NotificationTask/run ()V +MD: net/minecraft/client/PrioritizeChunkUpdates/ ()V net/minecraft/client/PrioritizeChunkUpdates/ ()V +MD: net/minecraft/client/PrioritizeChunkUpdates/ (Ljava/lang/String;IILjava/lang/String;)V net/minecraft/client/PrioritizeChunkUpdates/ (Ljava/lang/String;IILjava/lang/String;)V +MD: net/minecraft/client/PrioritizeChunkUpdates/m_193787_ (I)Lnet/minecraft/client/PrioritizeChunkUpdates; net/minecraft/client/PrioritizeChunkUpdates/byId (I)Lnet/minecraft/client/PrioritizeChunkUpdates; +MD: net/minecraft/client/PrioritizeChunkUpdates/m_193792_ ()[Lnet/minecraft/client/PrioritizeChunkUpdates; net/minecraft/client/PrioritizeChunkUpdates/$values ()[Lnet/minecraft/client/PrioritizeChunkUpdates; +MD: net/minecraft/client/PrioritizeChunkUpdates/m_35965_ ()I net/minecraft/client/PrioritizeChunkUpdates/getId ()I +MD: net/minecraft/client/PrioritizeChunkUpdates/m_35968_ ()Ljava/lang/String; net/minecraft/client/PrioritizeChunkUpdates/getKey ()Ljava/lang/String; +MD: net/minecraft/client/PrioritizeChunkUpdates/valueOf (Ljava/lang/String;)Lnet/minecraft/client/PrioritizeChunkUpdates; net/minecraft/client/PrioritizeChunkUpdates/valueOf (Ljava/lang/String;)Lnet/minecraft/client/PrioritizeChunkUpdates; +MD: net/minecraft/client/PrioritizeChunkUpdates/values ()[Lnet/minecraft/client/PrioritizeChunkUpdates; net/minecraft/client/PrioritizeChunkUpdates/values ()[Lnet/minecraft/client/PrioritizeChunkUpdates; +MD: net/minecraft/client/Realms32BitWarningStatus/ ()V net/minecraft/client/Realms32BitWarningStatus/ ()V +MD: net/minecraft/client/Realms32BitWarningStatus/ (Lnet/minecraft/client/Minecraft;)V net/minecraft/client/Realms32BitWarningStatus/ (Lnet/minecraft/client/Minecraft;)V +MD: net/minecraft/client/Realms32BitWarningStatus/m_232205_ ()Ljava/lang/Boolean; net/minecraft/client/Realms32BitWarningStatus/checkForRealmsSubscription ()Ljava/lang/Boolean; +MD: net/minecraft/client/Realms32BitWarningStatus/m_232206_ (Lcom/mojang/realmsclient/dto/RealmsServer;)Z net/minecraft/client/Realms32BitWarningStatus/lambda$hasRealmsSubscription$0 (Lcom/mojang/realmsclient/dto/RealmsServer;)Z +MD: net/minecraft/client/Realms32BitWarningStatus/m_232208_ (Lnet/minecraft/client/gui/screens/Screen;)V net/minecraft/client/Realms32BitWarningStatus/showRealms32BitWarningIfNeeded (Lnet/minecraft/client/gui/screens/Screen;)V +MD: net/minecraft/client/Realms32BitWarningStatus/m_232210_ ()Z net/minecraft/client/Realms32BitWarningStatus/hasRealmsSubscription ()Z +MD: net/minecraft/client/RecipeBookCategories/ ()V net/minecraft/client/RecipeBookCategories/ ()V +MD: net/minecraft/client/RecipeBookCategories/ (Ljava/lang/String;I[Lnet/minecraft/world/item/ItemStack;)V net/minecraft/client/RecipeBookCategories/ (Ljava/lang/String;I[Lnet/minecraft/world/item/ItemStack;)V +MD: net/minecraft/client/RecipeBookCategories/m_168550_ ()[Lnet/minecraft/client/RecipeBookCategories; net/minecraft/client/RecipeBookCategories/$values ()[Lnet/minecraft/client/RecipeBookCategories; +MD: net/minecraft/client/RecipeBookCategories/m_92268_ ()Ljava/util/List; net/minecraft/client/RecipeBookCategories/getIconItems ()Ljava/util/List; +MD: net/minecraft/client/RecipeBookCategories/m_92269_ (Lnet/minecraft/world/inventory/RecipeBookType;)Ljava/util/List; net/minecraft/client/RecipeBookCategories/getCategories (Lnet/minecraft/world/inventory/RecipeBookType;)Ljava/util/List; +MD: net/minecraft/client/RecipeBookCategories/valueOf (Ljava/lang/String;)Lnet/minecraft/client/RecipeBookCategories; net/minecraft/client/RecipeBookCategories/valueOf (Ljava/lang/String;)Lnet/minecraft/client/RecipeBookCategories; +MD: net/minecraft/client/RecipeBookCategories/values ()[Lnet/minecraft/client/RecipeBookCategories; net/minecraft/client/RecipeBookCategories/values ()[Lnet/minecraft/client/RecipeBookCategories; +MD: net/minecraft/client/RecipeBookCategories$1/ ()V net/minecraft/client/RecipeBookCategories$1/ ()V +MD: net/minecraft/client/ResourceLoadStateTracker/ ()V net/minecraft/client/ResourceLoadStateTracker/ ()V +MD: net/minecraft/client/ResourceLoadStateTracker/ ()V net/minecraft/client/ResourceLoadStateTracker/ ()V +MD: net/minecraft/client/ResourceLoadStateTracker/m_168556_ ()V net/minecraft/client/ResourceLoadStateTracker/finishReload ()V +MD: net/minecraft/client/ResourceLoadStateTracker/m_168557_ (Lnet/minecraft/client/ResourceLoadStateTracker$ReloadReason;Ljava/util/List;)V net/minecraft/client/ResourceLoadStateTracker/startReload (Lnet/minecraft/client/ResourceLoadStateTracker$ReloadReason;Ljava/util/List;)V +MD: net/minecraft/client/ResourceLoadStateTracker/m_168560_ (Ljava/lang/Throwable;)V net/minecraft/client/ResourceLoadStateTracker/startRecovery (Ljava/lang/Throwable;)V +MD: net/minecraft/client/ResourceLoadStateTracker/m_168562_ (Lnet/minecraft/CrashReport;)V net/minecraft/client/ResourceLoadStateTracker/fillCrashReport (Lnet/minecraft/CrashReport;)V +MD: net/minecraft/client/ResourceLoadStateTracker$RecoveryInfo/ (Ljava/lang/Throwable;)V net/minecraft/client/ResourceLoadStateTracker$RecoveryInfo/ (Ljava/lang/Throwable;)V +MD: net/minecraft/client/ResourceLoadStateTracker$RecoveryInfo/m_168567_ ()Ljava/lang/String; net/minecraft/client/ResourceLoadStateTracker$RecoveryInfo/lambda$fillCrashInfo$0 ()Ljava/lang/String; +MD: net/minecraft/client/ResourceLoadStateTracker$RecoveryInfo/m_168568_ (Lnet/minecraft/CrashReportCategory;)V net/minecraft/client/ResourceLoadStateTracker$RecoveryInfo/fillCrashInfo (Lnet/minecraft/CrashReportCategory;)V +MD: net/minecraft/client/ResourceLoadStateTracker$ReloadReason/ ()V net/minecraft/client/ResourceLoadStateTracker$ReloadReason/ ()V +MD: net/minecraft/client/ResourceLoadStateTracker$ReloadReason/ (Ljava/lang/String;ILjava/lang/String;)V net/minecraft/client/ResourceLoadStateTracker$ReloadReason/ (Ljava/lang/String;ILjava/lang/String;)V +MD: net/minecraft/client/ResourceLoadStateTracker$ReloadReason/m_168580_ ()[Lnet/minecraft/client/ResourceLoadStateTracker$ReloadReason; net/minecraft/client/ResourceLoadStateTracker$ReloadReason/$values ()[Lnet/minecraft/client/ResourceLoadStateTracker$ReloadReason; +MD: net/minecraft/client/ResourceLoadStateTracker$ReloadReason/valueOf (Ljava/lang/String;)Lnet/minecraft/client/ResourceLoadStateTracker$ReloadReason; net/minecraft/client/ResourceLoadStateTracker$ReloadReason/valueOf (Ljava/lang/String;)Lnet/minecraft/client/ResourceLoadStateTracker$ReloadReason; +MD: net/minecraft/client/ResourceLoadStateTracker$ReloadReason/values ()[Lnet/minecraft/client/ResourceLoadStateTracker$ReloadReason; net/minecraft/client/ResourceLoadStateTracker$ReloadReason/values ()[Lnet/minecraft/client/ResourceLoadStateTracker$ReloadReason; +MD: net/minecraft/client/ResourceLoadStateTracker$ReloadState/ (Lnet/minecraft/client/ResourceLoadStateTracker$ReloadReason;Ljava/util/List;)V net/minecraft/client/ResourceLoadStateTracker$ReloadState/ (Lnet/minecraft/client/ResourceLoadStateTracker$ReloadReason;Ljava/util/List;)V +MD: net/minecraft/client/ResourceLoadStateTracker$ReloadState/m_168591_ ()Ljava/lang/String; net/minecraft/client/ResourceLoadStateTracker$ReloadState/lambda$fillCrashInfo$0 ()Ljava/lang/String; +MD: net/minecraft/client/ResourceLoadStateTracker$ReloadState/m_168592_ (Lnet/minecraft/CrashReportCategory;)V net/minecraft/client/ResourceLoadStateTracker$ReloadState/fillCrashInfo (Lnet/minecraft/CrashReportCategory;)V +MD: net/minecraft/client/Screenshot/ ()V net/minecraft/client/Screenshot/ ()V +MD: net/minecraft/client/Screenshot/ (Ljava/io/File;III)V net/minecraft/client/Screenshot/ (Ljava/io/File;III)V +MD: net/minecraft/client/Screenshot/m_168605_ ()V net/minecraft/client/Screenshot/saveRow ()V +MD: net/minecraft/client/Screenshot/m_168606_ (Ljava/io/File;Lnet/minecraft/network/chat/Style;)Lnet/minecraft/network/chat/Style; net/minecraft/client/Screenshot/lambda$_grab$1 (Ljava/io/File;Lnet/minecraft/network/chat/Style;)Lnet/minecraft/network/chat/Style; +MD: net/minecraft/client/Screenshot/m_168609_ (Ljava/nio/ByteBuffer;IIII)V net/minecraft/client/Screenshot/addRegion (Ljava/nio/ByteBuffer;IIII)V +MD: net/minecraft/client/Screenshot/m_168615_ ()Ljava/io/File; net/minecraft/client/Screenshot/close ()Ljava/io/File; +MD: net/minecraft/client/Screenshot/m_182556_ (Ljava/io/File;Ljava/lang/String;Lcom/mojang/blaze3d/pipeline/RenderTarget;Ljava/util/function/Consumer;)V net/minecraft/client/Screenshot/lambda$grab$0 (Ljava/io/File;Ljava/lang/String;Lcom/mojang/blaze3d/pipeline/RenderTarget;Ljava/util/function/Consumer;)V +MD: net/minecraft/client/Screenshot/m_92279_ (Lcom/mojang/blaze3d/pipeline/RenderTarget;)Lcom/mojang/blaze3d/platform/NativeImage; net/minecraft/client/Screenshot/takeScreenshot (Lcom/mojang/blaze3d/pipeline/RenderTarget;)Lcom/mojang/blaze3d/platform/NativeImage; +MD: net/minecraft/client/Screenshot/m_92283_ (Lcom/mojang/blaze3d/platform/NativeImage;Ljava/io/File;Ljava/util/function/Consumer;)V net/minecraft/client/Screenshot/lambda$_grab$2 (Lcom/mojang/blaze3d/platform/NativeImage;Ljava/io/File;Ljava/util/function/Consumer;)V +MD: net/minecraft/client/Screenshot/m_92287_ (Ljava/io/File;)Ljava/io/File; net/minecraft/client/Screenshot/getFile (Ljava/io/File;)Ljava/io/File; +MD: net/minecraft/client/Screenshot/m_92289_ (Ljava/io/File;Lcom/mojang/blaze3d/pipeline/RenderTarget;Ljava/util/function/Consumer;)V net/minecraft/client/Screenshot/grab (Ljava/io/File;Lcom/mojang/blaze3d/pipeline/RenderTarget;Ljava/util/function/Consumer;)V +MD: net/minecraft/client/Screenshot/m_92295_ (Ljava/io/File;Ljava/lang/String;Lcom/mojang/blaze3d/pipeline/RenderTarget;Ljava/util/function/Consumer;)V net/minecraft/client/Screenshot/grab (Ljava/io/File;Ljava/lang/String;Lcom/mojang/blaze3d/pipeline/RenderTarget;Ljava/util/function/Consumer;)V +MD: net/minecraft/client/Screenshot/m_92305_ (Ljava/io/File;Ljava/lang/String;Lcom/mojang/blaze3d/pipeline/RenderTarget;Ljava/util/function/Consumer;)V net/minecraft/client/Screenshot/_grab (Ljava/io/File;Ljava/lang/String;Lcom/mojang/blaze3d/pipeline/RenderTarget;Ljava/util/function/Consumer;)V +MD: net/minecraft/client/StringSplitter/ (Lnet/minecraft/client/StringSplitter$WidthProvider;)V net/minecraft/client/StringSplitter/ (Lnet/minecraft/client/StringSplitter$WidthProvider;)V +MD: net/minecraft/client/StringSplitter/m_168616_ (Ljava/util/List;Lnet/minecraft/network/chat/FormattedText;Lnet/minecraft/network/chat/FormattedText;Ljava/lang/Boolean;)V net/minecraft/client/StringSplitter/lambda$splitLines$8 (Ljava/util/List;Lnet/minecraft/network/chat/FormattedText;Lnet/minecraft/network/chat/FormattedText;Ljava/lang/Boolean;)V +MD: net/minecraft/client/StringSplitter/m_168621_ (Lnet/minecraft/network/chat/FormattedText;ILnet/minecraft/network/chat/Style;Lnet/minecraft/network/chat/FormattedText;)Ljava/util/List; net/minecraft/client/StringSplitter/splitLines (Lnet/minecraft/network/chat/FormattedText;ILnet/minecraft/network/chat/Style;Lnet/minecraft/network/chat/FormattedText;)Ljava/util/List; +MD: net/minecraft/client/StringSplitter/m_168626_ (Ljava/lang/String;ILnet/minecraft/network/chat/Style;)I net/minecraft/client/StringSplitter/formattedIndexByWidth (Ljava/lang/String;ILnet/minecraft/network/chat/Style;)I +MD: net/minecraft/client/StringSplitter/m_168630_ (Ljava/lang/String;ILnet/minecraft/network/chat/Style;)Ljava/lang/String; net/minecraft/client/StringSplitter/formattedHeadByWidth (Ljava/lang/String;ILnet/minecraft/network/chat/Style;)Ljava/lang/String; +MD: net/minecraft/client/StringSplitter/m_168634_ (Ljava/lang/String;ILnet/minecraft/network/chat/Style;)I net/minecraft/client/StringSplitter/findLineBreak (Ljava/lang/String;ILnet/minecraft/network/chat/Style;)I +MD: net/minecraft/client/StringSplitter/m_92336_ (Lnet/minecraft/util/FormattedCharSequence;)F net/minecraft/client/StringSplitter/stringWidth (Lnet/minecraft/util/FormattedCharSequence;)F +MD: net/minecraft/client/StringSplitter/m_92338_ (Lnet/minecraft/util/FormattedCharSequence;I)Lnet/minecraft/network/chat/Style; net/minecraft/client/StringSplitter/componentStyleAtWidth (Lnet/minecraft/util/FormattedCharSequence;I)Lnet/minecraft/network/chat/Style; +MD: net/minecraft/client/StringSplitter/m_92341_ (Lnet/minecraft/client/StringSplitter$WidthLimitedCharSink;Lnet/minecraft/network/chat/Style;Ljava/lang/String;)Ljava/util/Optional; net/minecraft/client/StringSplitter/lambda$componentStyleAtWidth$4 (Lnet/minecraft/client/StringSplitter$WidthLimitedCharSink;Lnet/minecraft/network/chat/Style;Ljava/lang/String;)Ljava/util/Optional; +MD: net/minecraft/client/StringSplitter/m_92345_ (Lnet/minecraft/client/StringSplitter$WidthLimitedCharSink;Lorg/apache/commons/lang3/mutable/MutableObject;ILnet/minecraft/network/chat/Style;I)Z net/minecraft/client/StringSplitter/lambda$componentStyleAtWidth$5 (Lnet/minecraft/client/StringSplitter$WidthLimitedCharSink;Lorg/apache/commons/lang3/mutable/MutableObject;ILnet/minecraft/network/chat/Style;I)Z +MD: net/minecraft/client/StringSplitter/m_92353_ (Ljava/lang/String;)F net/minecraft/client/StringSplitter/stringWidth (Ljava/lang/String;)F +MD: net/minecraft/client/StringSplitter/m_92355_ (Ljava/lang/String;IIZ)I net/minecraft/client/StringSplitter/getWordPosition (Ljava/lang/String;IIZ)I +MD: net/minecraft/client/StringSplitter/m_92360_ (Ljava/lang/String;ILnet/minecraft/network/chat/Style;)I net/minecraft/client/StringSplitter/plainIndexAtWidth (Ljava/lang/String;ILnet/minecraft/network/chat/Style;)I +MD: net/minecraft/client/StringSplitter/m_92364_ (Ljava/lang/String;ILnet/minecraft/network/chat/Style;ZLnet/minecraft/client/StringSplitter$LinePosConsumer;)V net/minecraft/client/StringSplitter/splitLines (Ljava/lang/String;ILnet/minecraft/network/chat/Style;ZLnet/minecraft/client/StringSplitter$LinePosConsumer;)V +MD: net/minecraft/client/StringSplitter/m_92370_ (Ljava/util/List;Ljava/lang/String;Lnet/minecraft/network/chat/Style;II)V net/minecraft/client/StringSplitter/lambda$splitLines$6 (Ljava/util/List;Ljava/lang/String;Lnet/minecraft/network/chat/Style;II)V +MD: net/minecraft/client/StringSplitter/m_92376_ (Ljava/util/List;Lnet/minecraft/network/chat/FormattedText;Ljava/lang/Boolean;)V net/minecraft/client/StringSplitter/lambda$splitLines$7 (Ljava/util/List;Lnet/minecraft/network/chat/FormattedText;Ljava/lang/Boolean;)V +MD: net/minecraft/client/StringSplitter/m_92380_ (Ljava/util/List;Lnet/minecraft/network/chat/Style;Ljava/lang/String;)Ljava/util/Optional; net/minecraft/client/StringSplitter/lambda$splitLines$9 (Ljava/util/List;Lnet/minecraft/network/chat/Style;Ljava/lang/String;)Ljava/util/Optional; +MD: net/minecraft/client/StringSplitter/m_92384_ (Lnet/minecraft/network/chat/FormattedText;)F net/minecraft/client/StringSplitter/stringWidth (Lnet/minecraft/network/chat/FormattedText;)F +MD: net/minecraft/client/StringSplitter/m_92386_ (Lnet/minecraft/network/chat/FormattedText;I)Lnet/minecraft/network/chat/Style; net/minecraft/client/StringSplitter/componentStyleAtWidth (Lnet/minecraft/network/chat/FormattedText;I)Lnet/minecraft/network/chat/Style; +MD: net/minecraft/client/StringSplitter/m_92389_ (Lnet/minecraft/network/chat/FormattedText;ILnet/minecraft/network/chat/Style;)Lnet/minecraft/network/chat/FormattedText; net/minecraft/client/StringSplitter/headByWidth (Lnet/minecraft/network/chat/FormattedText;ILnet/minecraft/network/chat/Style;)Lnet/minecraft/network/chat/FormattedText; +MD: net/minecraft/client/StringSplitter/m_92393_ (Lnet/minecraft/network/chat/FormattedText;ILnet/minecraft/network/chat/Style;Ljava/util/function/BiConsumer;)V net/minecraft/client/StringSplitter/splitLines (Lnet/minecraft/network/chat/FormattedText;ILnet/minecraft/network/chat/Style;Ljava/util/function/BiConsumer;)V +MD: net/minecraft/client/StringSplitter/m_92398_ (Lorg/apache/commons/lang3/mutable/MutableFloat;ILnet/minecraft/network/chat/Style;I)Z net/minecraft/client/StringSplitter/lambda$stringWidth$2 (Lorg/apache/commons/lang3/mutable/MutableFloat;ILnet/minecraft/network/chat/Style;I)Z +MD: net/minecraft/client/StringSplitter/m_92403_ (Lorg/apache/commons/lang3/mutable/MutableFloat;ILorg/apache/commons/lang3/mutable/MutableInt;ILnet/minecraft/network/chat/Style;I)Z net/minecraft/client/StringSplitter/lambda$plainTailByWidth$3 (Lorg/apache/commons/lang3/mutable/MutableFloat;ILorg/apache/commons/lang3/mutable/MutableInt;ILnet/minecraft/network/chat/Style;I)Z +MD: net/minecraft/client/StringSplitter/m_92410_ (Ljava/lang/String;ILnet/minecraft/network/chat/Style;)Ljava/lang/String; net/minecraft/client/StringSplitter/plainHeadByWidth (Ljava/lang/String;ILnet/minecraft/network/chat/Style;)Ljava/lang/String; +MD: net/minecraft/client/StringSplitter/m_92414_ (Lnet/minecraft/network/chat/FormattedText;ILnet/minecraft/network/chat/Style;)Ljava/util/List; net/minecraft/client/StringSplitter/splitLines (Lnet/minecraft/network/chat/FormattedText;ILnet/minecraft/network/chat/Style;)Ljava/util/List; +MD: net/minecraft/client/StringSplitter/m_92418_ (Lorg/apache/commons/lang3/mutable/MutableFloat;ILnet/minecraft/network/chat/Style;I)Z net/minecraft/client/StringSplitter/lambda$stringWidth$1 (Lorg/apache/commons/lang3/mutable/MutableFloat;ILnet/minecraft/network/chat/Style;I)Z +MD: net/minecraft/client/StringSplitter/m_92423_ (Ljava/lang/String;ILnet/minecraft/network/chat/Style;)Ljava/lang/String; net/minecraft/client/StringSplitter/plainTailByWidth (Ljava/lang/String;ILnet/minecraft/network/chat/Style;)Ljava/lang/String; +MD: net/minecraft/client/StringSplitter/m_92427_ (Lorg/apache/commons/lang3/mutable/MutableFloat;ILnet/minecraft/network/chat/Style;I)Z net/minecraft/client/StringSplitter/lambda$stringWidth$0 (Lorg/apache/commons/lang3/mutable/MutableFloat;ILnet/minecraft/network/chat/Style;I)Z +MD: net/minecraft/client/StringSplitter/m_92432_ (Ljava/lang/String;ILnet/minecraft/network/chat/Style;)Ljava/util/List; net/minecraft/client/StringSplitter/splitLines (Ljava/lang/String;ILnet/minecraft/network/chat/Style;)Ljava/util/List; +MD: net/minecraft/client/StringSplitter$1/ (Lnet/minecraft/client/StringSplitter;Lnet/minecraft/client/StringSplitter$WidthLimitedCharSink;)V net/minecraft/client/StringSplitter$1/ (Lnet/minecraft/client/StringSplitter;Lnet/minecraft/client/StringSplitter$WidthLimitedCharSink;)V +MD: net/minecraft/client/StringSplitter$1/m_7164_ (Lnet/minecraft/network/chat/Style;Ljava/lang/String;)Ljava/util/Optional; net/minecraft/client/StringSplitter$1/accept (Lnet/minecraft/network/chat/Style;Ljava/lang/String;)Ljava/util/Optional; +MD: net/minecraft/client/StringSplitter$FlatComponents/ (Ljava/util/List;)V net/minecraft/client/StringSplitter$FlatComponents/ (Ljava/util/List;)V +MD: net/minecraft/client/StringSplitter$FlatComponents/m_92449_ ()Lnet/minecraft/network/chat/FormattedText; net/minecraft/client/StringSplitter$FlatComponents/getRemainder ()Lnet/minecraft/network/chat/FormattedText; +MD: net/minecraft/client/StringSplitter$FlatComponents/m_92450_ (I)C net/minecraft/client/StringSplitter$FlatComponents/charAt (I)C +MD: net/minecraft/client/StringSplitter$FlatComponents/m_92452_ (IILnet/minecraft/network/chat/Style;)Lnet/minecraft/network/chat/FormattedText; net/minecraft/client/StringSplitter$FlatComponents/splitAt (IILnet/minecraft/network/chat/Style;)Lnet/minecraft/network/chat/FormattedText; +MD: net/minecraft/client/StringSplitter$FlatComponents/m_92458_ (Lnet/minecraft/client/StringSplitter$LineComponent;)Ljava/lang/String; net/minecraft/client/StringSplitter$FlatComponents/lambda$new$0 (Lnet/minecraft/client/StringSplitter$LineComponent;)Ljava/lang/String; +MD: net/minecraft/client/StringSplitter$LineBreakFinder/ (Lnet/minecraft/client/StringSplitter;F)V net/minecraft/client/StringSplitter$LineBreakFinder/ (Lnet/minecraft/client/StringSplitter;F)V +MD: net/minecraft/client/StringSplitter$LineBreakFinder/m_6411_ (ILnet/minecraft/network/chat/Style;I)Z net/minecraft/client/StringSplitter$LineBreakFinder/accept (ILnet/minecraft/network/chat/Style;I)Z +MD: net/minecraft/client/StringSplitter$LineBreakFinder/m_92473_ ()I net/minecraft/client/StringSplitter$LineBreakFinder/getSplitPosition ()I +MD: net/minecraft/client/StringSplitter$LineBreakFinder/m_92474_ (I)V net/minecraft/client/StringSplitter$LineBreakFinder/addToOffset (I)V +MD: net/minecraft/client/StringSplitter$LineBreakFinder/m_92476_ (ILnet/minecraft/network/chat/Style;)Z net/minecraft/client/StringSplitter$LineBreakFinder/finishIteration (ILnet/minecraft/network/chat/Style;)Z +MD: net/minecraft/client/StringSplitter$LineBreakFinder/m_92483_ ()Lnet/minecraft/network/chat/Style; net/minecraft/client/StringSplitter$LineBreakFinder/getSplitStyle ()Lnet/minecraft/network/chat/Style; +MD: net/minecraft/client/StringSplitter$LineBreakFinder/m_92484_ ()Z net/minecraft/client/StringSplitter$LineBreakFinder/lineBreakFound ()Z +MD: net/minecraft/client/StringSplitter$LineComponent/ (Ljava/lang/String;Lnet/minecraft/network/chat/Style;)V net/minecraft/client/StringSplitter$LineComponent/ (Ljava/lang/String;Lnet/minecraft/network/chat/Style;)V +MD: net/minecraft/client/StringSplitter$LineComponent/m_5651_ (Lnet/minecraft/network/chat/FormattedText$ContentConsumer;)Ljava/util/Optional; net/minecraft/client/StringSplitter$LineComponent/visit (Lnet/minecraft/network/chat/FormattedText$ContentConsumer;)Ljava/util/Optional; +MD: net/minecraft/client/StringSplitter$LineComponent/m_7451_ (Lnet/minecraft/network/chat/FormattedText$StyledContentConsumer;Lnet/minecraft/network/chat/Style;)Ljava/util/Optional; net/minecraft/client/StringSplitter$LineComponent/visit (Lnet/minecraft/network/chat/FormattedText$StyledContentConsumer;Lnet/minecraft/network/chat/Style;)Ljava/util/Optional; +MD: net/minecraft/client/StringSplitter$LinePosConsumer/m_92499_ (Lnet/minecraft/network/chat/Style;II)V net/minecraft/client/StringSplitter$LinePosConsumer/accept (Lnet/minecraft/network/chat/Style;II)V +MD: net/minecraft/client/StringSplitter$WidthLimitedCharSink/ (Lnet/minecraft/client/StringSplitter;F)V net/minecraft/client/StringSplitter$WidthLimitedCharSink/ (Lnet/minecraft/client/StringSplitter;F)V +MD: net/minecraft/client/StringSplitter$WidthLimitedCharSink/m_6411_ (ILnet/minecraft/network/chat/Style;I)Z net/minecraft/client/StringSplitter$WidthLimitedCharSink/accept (ILnet/minecraft/network/chat/Style;I)Z +MD: net/minecraft/client/StringSplitter$WidthLimitedCharSink/m_92509_ ()I net/minecraft/client/StringSplitter$WidthLimitedCharSink/getPosition ()I +MD: net/minecraft/client/StringSplitter$WidthLimitedCharSink/m_92514_ ()V net/minecraft/client/StringSplitter$WidthLimitedCharSink/resetPosition ()V +MD: net/minecraft/client/StringSplitter$WidthProvider/m_92515_ (ILnet/minecraft/network/chat/Style;)F net/minecraft/client/StringSplitter$WidthProvider/getWidth (ILnet/minecraft/network/chat/Style;)F +MD: net/minecraft/client/Timer/ (FJ)V net/minecraft/client/Timer/ (FJ)V +MD: net/minecraft/client/Timer/m_92525_ (J)I net/minecraft/client/Timer/advanceTime (J)I +MD: net/minecraft/client/ToggleKeyMapping/ (Ljava/lang/String;ILjava/lang/String;Ljava/util/function/BooleanSupplier;)V net/minecraft/client/ToggleKeyMapping/ (Ljava/lang/String;ILjava/lang/String;Ljava/util/function/BooleanSupplier;)V +MD: net/minecraft/client/ToggleKeyMapping/m_289748_ ()V net/minecraft/client/ToggleKeyMapping/reset ()V +MD: net/minecraft/client/ToggleKeyMapping/m_7249_ (Z)V net/minecraft/client/ToggleKeyMapping/setDown (Z)V +MD: net/minecraft/client/User/ (Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Ljava/util/Optional;Ljava/util/Optional;Lnet/minecraft/client/User$Type;)V net/minecraft/client/User/ (Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Ljava/util/Optional;Ljava/util/Optional;Lnet/minecraft/client/User$Type;)V +MD: net/minecraft/client/User/m_168638_ ()Lnet/minecraft/client/User$Type; net/minecraft/client/User/getType ()Lnet/minecraft/client/User$Type; +MD: net/minecraft/client/User/m_193805_ ()Ljava/util/Optional; net/minecraft/client/User/getClientId ()Ljava/util/Optional; +MD: net/minecraft/client/User/m_193806_ ()Ljava/util/Optional; net/minecraft/client/User/getXuid ()Ljava/util/Optional; +MD: net/minecraft/client/User/m_240411_ ()Ljava/util/UUID; net/minecraft/client/User/getProfileId ()Ljava/util/UUID; +MD: net/minecraft/client/User/m_92544_ ()Ljava/lang/String; net/minecraft/client/User/getSessionId ()Ljava/lang/String; +MD: net/minecraft/client/User/m_92545_ ()Ljava/lang/String; net/minecraft/client/User/getUuid ()Ljava/lang/String; +MD: net/minecraft/client/User/m_92546_ ()Ljava/lang/String; net/minecraft/client/User/getName ()Ljava/lang/String; +MD: net/minecraft/client/User/m_92547_ ()Ljava/lang/String; net/minecraft/client/User/getAccessToken ()Ljava/lang/String; +MD: net/minecraft/client/User/m_92548_ ()Lcom/mojang/authlib/GameProfile; net/minecraft/client/User/getGameProfile ()Lcom/mojang/authlib/GameProfile; +MD: net/minecraft/client/User$Type/ ()V net/minecraft/client/User$Type/ ()V +MD: net/minecraft/client/User$Type/ (Ljava/lang/String;ILjava/lang/String;)V net/minecraft/client/User$Type/ (Ljava/lang/String;ILjava/lang/String;)V +MD: net/minecraft/client/User$Type/m_168639_ ()[Lnet/minecraft/client/User$Type; net/minecraft/client/User$Type/$values ()[Lnet/minecraft/client/User$Type; +MD: net/minecraft/client/User$Type/m_193808_ ()Ljava/lang/String; net/minecraft/client/User$Type/getName ()Ljava/lang/String; +MD: net/minecraft/client/User$Type/m_92559_ (Lnet/minecraft/client/User$Type;)Ljava/lang/String; net/minecraft/client/User$Type/lambda$static$0 (Lnet/minecraft/client/User$Type;)Ljava/lang/String; +MD: net/minecraft/client/User$Type/m_92561_ (Ljava/lang/String;)Lnet/minecraft/client/User$Type; net/minecraft/client/User$Type/byName (Ljava/lang/String;)Lnet/minecraft/client/User$Type; +MD: net/minecraft/client/User$Type/valueOf (Ljava/lang/String;)Lnet/minecraft/client/User$Type; net/minecraft/client/User$Type/valueOf (Ljava/lang/String;)Lnet/minecraft/client/User$Type; +MD: net/minecraft/client/User$Type/values ()[Lnet/minecraft/client/User$Type; net/minecraft/client/User$Type/values ()[Lnet/minecraft/client/User$Type; +MD: net/minecraft/client/animation/AnimationChannel/ (Lnet/minecraft/client/animation/AnimationChannel$Target;[Lnet/minecraft/client/animation/Keyframe;)V net/minecraft/client/animation/AnimationChannel/ (Lnet/minecraft/client/animation/AnimationChannel$Target;[Lnet/minecraft/client/animation/Keyframe;)V +MD: net/minecraft/client/animation/AnimationChannel/equals (Ljava/lang/Object;)Z net/minecraft/client/animation/AnimationChannel/equals (Ljava/lang/Object;)Z +MD: net/minecraft/client/animation/AnimationChannel/f_232211_ ()Lnet/minecraft/client/animation/AnimationChannel$Target; net/minecraft/client/animation/AnimationChannel/target ()Lnet/minecraft/client/animation/AnimationChannel$Target; +MD: net/minecraft/client/animation/AnimationChannel/f_232212_ ()[Lnet/minecraft/client/animation/Keyframe; net/minecraft/client/animation/AnimationChannel/keyframes ()[Lnet/minecraft/client/animation/Keyframe; +MD: net/minecraft/client/animation/AnimationChannel/hashCode ()I net/minecraft/client/animation/AnimationChannel/hashCode ()I +MD: net/minecraft/client/animation/AnimationChannel/toString ()Ljava/lang/String; net/minecraft/client/animation/AnimationChannel/toString ()Ljava/lang/String; +MD: net/minecraft/client/animation/AnimationChannel$Interpolation/m_232222_ (Lorg/joml/Vector3f;F[Lnet/minecraft/client/animation/Keyframe;IIF)Lorg/joml/Vector3f; net/minecraft/client/animation/AnimationChannel$Interpolation/apply (Lorg/joml/Vector3f;F[Lnet/minecraft/client/animation/Keyframe;IIF)Lorg/joml/Vector3f; +MD: net/minecraft/client/animation/AnimationChannel$Interpolations/ ()V net/minecraft/client/animation/AnimationChannel$Interpolations/ ()V +MD: net/minecraft/client/animation/AnimationChannel$Interpolations/ ()V net/minecraft/client/animation/AnimationChannel$Interpolations/ ()V +MD: net/minecraft/client/animation/AnimationChannel$Interpolations/m_232233_ (Lorg/joml/Vector3f;F[Lnet/minecraft/client/animation/Keyframe;IIF)Lorg/joml/Vector3f; net/minecraft/client/animation/AnimationChannel$Interpolations/lambda$static$1 (Lorg/joml/Vector3f;F[Lnet/minecraft/client/animation/Keyframe;IIF)Lorg/joml/Vector3f; +MD: net/minecraft/client/animation/AnimationChannel$Interpolations/m_252556_ (Lorg/joml/Vector3f;F[Lnet/minecraft/client/animation/Keyframe;IIF)Lorg/joml/Vector3f; net/minecraft/client/animation/AnimationChannel$Interpolations/lambda$static$0 (Lorg/joml/Vector3f;F[Lnet/minecraft/client/animation/Keyframe;IIF)Lorg/joml/Vector3f; +MD: net/minecraft/client/animation/AnimationChannel$Target/m_232247_ (Lnet/minecraft/client/model/geom/ModelPart;Lorg/joml/Vector3f;)V net/minecraft/client/animation/AnimationChannel$Target/apply (Lnet/minecraft/client/model/geom/ModelPart;Lorg/joml/Vector3f;)V +MD: net/minecraft/client/animation/AnimationChannel$Targets/ ()V net/minecraft/client/animation/AnimationChannel$Targets/ ()V +MD: net/minecraft/client/animation/AnimationChannel$Targets/ ()V net/minecraft/client/animation/AnimationChannel$Targets/ ()V +MD: net/minecraft/client/animation/AnimationDefinition/ (FZLjava/util/Map;)V net/minecraft/client/animation/AnimationDefinition/ (FZLjava/util/Map;)V +MD: net/minecraft/client/animation/AnimationDefinition/equals (Ljava/lang/Object;)Z net/minecraft/client/animation/AnimationDefinition/equals (Ljava/lang/Object;)Z +MD: net/minecraft/client/animation/AnimationDefinition/f_232255_ ()F net/minecraft/client/animation/AnimationDefinition/lengthInSeconds ()F +MD: net/minecraft/client/animation/AnimationDefinition/f_232256_ ()Z net/minecraft/client/animation/AnimationDefinition/looping ()Z +MD: net/minecraft/client/animation/AnimationDefinition/f_232257_ ()Ljava/util/Map; net/minecraft/client/animation/AnimationDefinition/boneAnimations ()Ljava/util/Map; +MD: net/minecraft/client/animation/AnimationDefinition/hashCode ()I net/minecraft/client/animation/AnimationDefinition/hashCode ()I +MD: net/minecraft/client/animation/AnimationDefinition/toString ()Ljava/lang/String; net/minecraft/client/animation/AnimationDefinition/toString ()Ljava/lang/String; +MD: net/minecraft/client/animation/AnimationDefinition$Builder/ (F)V net/minecraft/client/animation/AnimationDefinition$Builder/ (F)V +MD: net/minecraft/client/animation/AnimationDefinition$Builder/m_232274_ ()Lnet/minecraft/client/animation/AnimationDefinition$Builder; net/minecraft/client/animation/AnimationDefinition$Builder/looping ()Lnet/minecraft/client/animation/AnimationDefinition$Builder; +MD: net/minecraft/client/animation/AnimationDefinition$Builder/m_232275_ (F)Lnet/minecraft/client/animation/AnimationDefinition$Builder; net/minecraft/client/animation/AnimationDefinition$Builder/withLength (F)Lnet/minecraft/client/animation/AnimationDefinition$Builder; +MD: net/minecraft/client/animation/AnimationDefinition$Builder/m_232277_ (Ljava/lang/String;)Ljava/util/List; net/minecraft/client/animation/AnimationDefinition$Builder/lambda$addAnimation$0 (Ljava/lang/String;)Ljava/util/List; +MD: net/minecraft/client/animation/AnimationDefinition$Builder/m_232279_ (Ljava/lang/String;Lnet/minecraft/client/animation/AnimationChannel;)Lnet/minecraft/client/animation/AnimationDefinition$Builder; net/minecraft/client/animation/AnimationDefinition$Builder/addAnimation (Ljava/lang/String;Lnet/minecraft/client/animation/AnimationChannel;)Lnet/minecraft/client/animation/AnimationDefinition$Builder; +MD: net/minecraft/client/animation/AnimationDefinition$Builder/m_232282_ ()Lnet/minecraft/client/animation/AnimationDefinition; net/minecraft/client/animation/AnimationDefinition$Builder/build ()Lnet/minecraft/client/animation/AnimationDefinition; +MD: net/minecraft/client/animation/Keyframe/ (FLorg/joml/Vector3f;Lnet/minecraft/client/animation/AnimationChannel$Interpolation;)V net/minecraft/client/animation/Keyframe/ (FLorg/joml/Vector3f;Lnet/minecraft/client/animation/AnimationChannel$Interpolation;)V +MD: net/minecraft/client/animation/Keyframe/equals (Ljava/lang/Object;)Z net/minecraft/client/animation/Keyframe/equals (Ljava/lang/Object;)Z +MD: net/minecraft/client/animation/Keyframe/f_232283_ ()F net/minecraft/client/animation/Keyframe/timestamp ()F +MD: net/minecraft/client/animation/Keyframe/f_232284_ ()Lorg/joml/Vector3f; net/minecraft/client/animation/Keyframe/target ()Lorg/joml/Vector3f; +MD: net/minecraft/client/animation/Keyframe/f_232285_ ()Lnet/minecraft/client/animation/AnimationChannel$Interpolation; net/minecraft/client/animation/Keyframe/interpolation ()Lnet/minecraft/client/animation/AnimationChannel$Interpolation; +MD: net/minecraft/client/animation/Keyframe/hashCode ()I net/minecraft/client/animation/Keyframe/hashCode ()I +MD: net/minecraft/client/animation/Keyframe/toString ()Ljava/lang/String; net/minecraft/client/animation/Keyframe/toString ()Ljava/lang/String; +MD: net/minecraft/client/animation/KeyframeAnimations/ ()V net/minecraft/client/animation/KeyframeAnimations/ ()V +MD: net/minecraft/client/animation/KeyframeAnimations/m_232312_ (F[Lnet/minecraft/client/animation/Keyframe;I)Z net/minecraft/client/animation/KeyframeAnimations/lambda$animate$0 (F[Lnet/minecraft/client/animation/Keyframe;I)Z +MD: net/minecraft/client/animation/KeyframeAnimations/m_232316_ (Lnet/minecraft/client/animation/AnimationDefinition;J)F net/minecraft/client/animation/KeyframeAnimations/getElapsedSeconds (Lnet/minecraft/client/animation/AnimationDefinition;J)F +MD: net/minecraft/client/animation/KeyframeAnimations/m_232319_ (Lnet/minecraft/client/model/HierarchicalModel;Lnet/minecraft/client/animation/AnimationDefinition;JFLorg/joml/Vector3f;)V net/minecraft/client/animation/KeyframeAnimations/animate (Lnet/minecraft/client/model/HierarchicalModel;Lnet/minecraft/client/animation/AnimationDefinition;JFLorg/joml/Vector3f;)V +MD: net/minecraft/client/animation/KeyframeAnimations/m_232325_ (Ljava/util/List;FLorg/joml/Vector3f;FLnet/minecraft/client/model/geom/ModelPart;)V net/minecraft/client/animation/KeyframeAnimations/lambda$animate$2 (Ljava/util/List;FLorg/joml/Vector3f;FLnet/minecraft/client/model/geom/ModelPart;)V +MD: net/minecraft/client/animation/KeyframeAnimations/m_253004_ (DDD)Lorg/joml/Vector3f; net/minecraft/client/animation/KeyframeAnimations/scaleVec (DDD)Lorg/joml/Vector3f; +MD: net/minecraft/client/animation/KeyframeAnimations/m_253126_ (FFF)Lorg/joml/Vector3f; net/minecraft/client/animation/KeyframeAnimations/posVec (FFF)Lorg/joml/Vector3f; +MD: net/minecraft/client/animation/KeyframeAnimations/m_253186_ (FFF)Lorg/joml/Vector3f; net/minecraft/client/animation/KeyframeAnimations/degreeVec (FFF)Lorg/joml/Vector3f; +MD: net/minecraft/client/animation/KeyframeAnimations/m_287796_ (FLorg/joml/Vector3f;FLnet/minecraft/client/model/geom/ModelPart;Lnet/minecraft/client/animation/AnimationChannel;)V net/minecraft/client/animation/KeyframeAnimations/lambda$animate$1 (FLorg/joml/Vector3f;FLnet/minecraft/client/model/geom/ModelPart;Lnet/minecraft/client/animation/AnimationChannel;)V +MD: net/minecraft/client/animation/definitions/CamelAnimation/ ()V net/minecraft/client/animation/definitions/CamelAnimation/ ()V +MD: net/minecraft/client/animation/definitions/CamelAnimation/ ()V net/minecraft/client/animation/definitions/CamelAnimation/ ()V +MD: net/minecraft/client/animation/definitions/FrogAnimation/ ()V net/minecraft/client/animation/definitions/FrogAnimation/ ()V +MD: net/minecraft/client/animation/definitions/FrogAnimation/ ()V net/minecraft/client/animation/definitions/FrogAnimation/ ()V +MD: net/minecraft/client/animation/definitions/SnifferAnimation/ ()V net/minecraft/client/animation/definitions/SnifferAnimation/ ()V +MD: net/minecraft/client/animation/definitions/SnifferAnimation/ ()V net/minecraft/client/animation/definitions/SnifferAnimation/ ()V +MD: net/minecraft/client/animation/definitions/WardenAnimation/ ()V net/minecraft/client/animation/definitions/WardenAnimation/ ()V +MD: net/minecraft/client/animation/definitions/WardenAnimation/ ()V net/minecraft/client/animation/definitions/WardenAnimation/ ()V +MD: net/minecraft/client/color/block/BlockColor/m_92566_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockAndTintGetter;Lnet/minecraft/core/BlockPos;I)I net/minecraft/client/color/block/BlockColor/getColor (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockAndTintGetter;Lnet/minecraft/core/BlockPos;I)I +MD: net/minecraft/client/color/block/BlockColors/ ()V net/minecraft/client/color/block/BlockColors/ ()V +MD: net/minecraft/client/color/block/BlockColors/m_276170_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockAndTintGetter;Lnet/minecraft/core/BlockPos;I)I net/minecraft/client/color/block/BlockColors/lambda$createDefault$0 (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockAndTintGetter;Lnet/minecraft/core/BlockPos;I)I +MD: net/minecraft/client/color/block/BlockColors/m_276171_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockAndTintGetter;Lnet/minecraft/core/BlockPos;I)I net/minecraft/client/color/block/BlockColors/lambda$createDefault$1 (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockAndTintGetter;Lnet/minecraft/core/BlockPos;I)I +MD: net/minecraft/client/color/block/BlockColors/m_276172_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockAndTintGetter;Lnet/minecraft/core/BlockPos;I)I net/minecraft/client/color/block/BlockColors/lambda$createDefault$2 (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockAndTintGetter;Lnet/minecraft/core/BlockPos;I)I +MD: net/minecraft/client/color/block/BlockColors/m_92574_ ()Lnet/minecraft/client/color/block/BlockColors; net/minecraft/client/color/block/BlockColors/createDefault ()Lnet/minecraft/client/color/block/BlockColors; +MD: net/minecraft/client/color/block/BlockColors/m_92575_ (Lnet/minecraft/world/level/block/Block;)Ljava/util/Set; net/minecraft/client/color/block/BlockColors/getColoringProperties (Lnet/minecraft/world/level/block/Block;)Ljava/util/Set; +MD: net/minecraft/client/color/block/BlockColors/m_92577_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockAndTintGetter;Lnet/minecraft/core/BlockPos;I)I net/minecraft/client/color/block/BlockColors/getColor (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockAndTintGetter;Lnet/minecraft/core/BlockPos;I)I +MD: net/minecraft/client/color/block/BlockColors/m_92582_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;)I net/minecraft/client/color/block/BlockColors/getColor (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;)I +MD: net/minecraft/client/color/block/BlockColors/m_92586_ (Lnet/minecraft/world/level/block/state/properties/Property;[Lnet/minecraft/world/level/block/Block;)V net/minecraft/client/color/block/BlockColors/addColoringState (Lnet/minecraft/world/level/block/state/properties/Property;[Lnet/minecraft/world/level/block/Block;)V +MD: net/minecraft/client/color/block/BlockColors/m_92589_ (Lnet/minecraft/client/color/block/BlockColor;[Lnet/minecraft/world/level/block/Block;)V net/minecraft/client/color/block/BlockColors/register (Lnet/minecraft/client/color/block/BlockColor;[Lnet/minecraft/world/level/block/Block;)V +MD: net/minecraft/client/color/block/BlockColors/m_92592_ (Ljava/util/Set;[Lnet/minecraft/world/level/block/Block;)V net/minecraft/client/color/block/BlockColors/addColoringStates (Ljava/util/Set;[Lnet/minecraft/world/level/block/Block;)V +MD: net/minecraft/client/color/block/BlockColors/m_92595_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockAndTintGetter;Lnet/minecraft/core/BlockPos;I)I net/minecraft/client/color/block/BlockColors/lambda$createDefault$11 (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockAndTintGetter;Lnet/minecraft/core/BlockPos;I)I +MD: net/minecraft/client/color/block/BlockColors/m_92600_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockAndTintGetter;Lnet/minecraft/core/BlockPos;I)I net/minecraft/client/color/block/BlockColors/lambda$createDefault$10 (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockAndTintGetter;Lnet/minecraft/core/BlockPos;I)I +MD: net/minecraft/client/color/block/BlockColors/m_92605_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockAndTintGetter;Lnet/minecraft/core/BlockPos;I)I net/minecraft/client/color/block/BlockColors/lambda$createDefault$9 (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockAndTintGetter;Lnet/minecraft/core/BlockPos;I)I +MD: net/minecraft/client/color/block/BlockColors/m_92610_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockAndTintGetter;Lnet/minecraft/core/BlockPos;I)I net/minecraft/client/color/block/BlockColors/lambda$createDefault$8 (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockAndTintGetter;Lnet/minecraft/core/BlockPos;I)I +MD: net/minecraft/client/color/block/BlockColors/m_92615_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockAndTintGetter;Lnet/minecraft/core/BlockPos;I)I net/minecraft/client/color/block/BlockColors/lambda$createDefault$7 (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockAndTintGetter;Lnet/minecraft/core/BlockPos;I)I +MD: net/minecraft/client/color/block/BlockColors/m_92620_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockAndTintGetter;Lnet/minecraft/core/BlockPos;I)I net/minecraft/client/color/block/BlockColors/lambda$createDefault$6 (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockAndTintGetter;Lnet/minecraft/core/BlockPos;I)I +MD: net/minecraft/client/color/block/BlockColors/m_92625_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockAndTintGetter;Lnet/minecraft/core/BlockPos;I)I net/minecraft/client/color/block/BlockColors/lambda$createDefault$5 (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockAndTintGetter;Lnet/minecraft/core/BlockPos;I)I +MD: net/minecraft/client/color/block/BlockColors/m_92630_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockAndTintGetter;Lnet/minecraft/core/BlockPos;I)I net/minecraft/client/color/block/BlockColors/lambda$createDefault$4 (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockAndTintGetter;Lnet/minecraft/core/BlockPos;I)I +MD: net/minecraft/client/color/block/BlockColors/m_92635_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockAndTintGetter;Lnet/minecraft/core/BlockPos;I)I net/minecraft/client/color/block/BlockColors/lambda$createDefault$3 (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockAndTintGetter;Lnet/minecraft/core/BlockPos;I)I +MD: net/minecraft/client/color/block/BlockTintCache/ (Ljava/util/function/ToIntFunction;)V net/minecraft/client/color/block/BlockTintCache/ (Ljava/util/function/ToIntFunction;)V +MD: net/minecraft/client/color/block/BlockTintCache/m_193812_ (Lnet/minecraft/core/BlockPos;)I net/minecraft/client/color/block/BlockTintCache/getColor (Lnet/minecraft/core/BlockPos;)I +MD: net/minecraft/client/color/block/BlockTintCache/m_193814_ (II)Lnet/minecraft/client/color/block/BlockTintCache$CacheData; net/minecraft/client/color/block/BlockTintCache/findOrCreateChunkCache (II)Lnet/minecraft/client/color/block/BlockTintCache$CacheData; +MD: net/minecraft/client/color/block/BlockTintCache/m_92654_ ()V net/minecraft/client/color/block/BlockTintCache/invalidateAll ()V +MD: net/minecraft/client/color/block/BlockTintCache/m_92655_ (II)V net/minecraft/client/color/block/BlockTintCache/invalidateForChunk (II)V +MD: net/minecraft/client/color/block/BlockTintCache$CacheData/ ()V net/minecraft/client/color/block/BlockTintCache$CacheData/ ()V +MD: net/minecraft/client/color/block/BlockTintCache$CacheData/ ()V net/minecraft/client/color/block/BlockTintCache$CacheData/ ()V +MD: net/minecraft/client/color/block/BlockTintCache$CacheData/m_193822_ ()[I net/minecraft/client/color/block/BlockTintCache$CacheData/allocateLayer ()[I +MD: net/minecraft/client/color/block/BlockTintCache$CacheData/m_193823_ (I)[I net/minecraft/client/color/block/BlockTintCache$CacheData/getLayer (I)[I +MD: net/minecraft/client/color/block/BlockTintCache$CacheData/m_193825_ (I)[I net/minecraft/client/color/block/BlockTintCache$CacheData/lambda$getLayer$0 (I)[I +MD: net/minecraft/client/color/block/BlockTintCache$CacheData/m_262378_ ()V net/minecraft/client/color/block/BlockTintCache$CacheData/invalidate ()V +MD: net/minecraft/client/color/block/BlockTintCache$CacheData/m_262488_ ()Z net/minecraft/client/color/block/BlockTintCache$CacheData/isInvalidated ()Z +MD: net/minecraft/client/color/block/BlockTintCache$LatestCacheInfo/ ()V net/minecraft/client/color/block/BlockTintCache$LatestCacheInfo/ ()V +MD: net/minecraft/client/color/item/ItemColor/m_92671_ (Lnet/minecraft/world/item/ItemStack;I)I net/minecraft/client/color/item/ItemColor/getColor (Lnet/minecraft/world/item/ItemStack;I)I +MD: net/minecraft/client/color/item/ItemColors/ ()V net/minecraft/client/color/item/ItemColors/ ()V +MD: net/minecraft/client/color/item/ItemColors/m_232351_ (Lnet/minecraft/world/item/ItemStack;I)I net/minecraft/client/color/item/ItemColors/lambda$createDefault$8 (Lnet/minecraft/world/item/ItemStack;I)I +MD: net/minecraft/client/color/item/ItemColors/m_92676_ (Lnet/minecraft/world/item/ItemStack;I)I net/minecraft/client/color/item/ItemColors/getColor (Lnet/minecraft/world/item/ItemStack;I)I +MD: net/minecraft/client/color/item/ItemColors/m_92679_ (Lnet/minecraft/world/item/SpawnEggItem;Lnet/minecraft/world/item/ItemStack;I)I net/minecraft/client/color/item/ItemColors/lambda$createDefault$4 (Lnet/minecraft/world/item/SpawnEggItem;Lnet/minecraft/world/item/ItemStack;I)I +MD: net/minecraft/client/color/item/ItemColors/m_92683_ (Lnet/minecraft/client/color/block/BlockColors;)Lnet/minecraft/client/color/item/ItemColors; net/minecraft/client/color/item/ItemColors/createDefault (Lnet/minecraft/client/color/block/BlockColors;)Lnet/minecraft/client/color/item/ItemColors; +MD: net/minecraft/client/color/item/ItemColors/m_92685_ (Lnet/minecraft/client/color/block/BlockColors;Lnet/minecraft/world/item/ItemStack;I)I net/minecraft/client/color/item/ItemColors/lambda$createDefault$5 (Lnet/minecraft/client/color/block/BlockColors;Lnet/minecraft/world/item/ItemStack;I)I +MD: net/minecraft/client/color/item/ItemColors/m_92689_ (Lnet/minecraft/client/color/item/ItemColor;[Lnet/minecraft/world/level/ItemLike;)V net/minecraft/client/color/item/ItemColors/register (Lnet/minecraft/client/color/item/ItemColor;[Lnet/minecraft/world/level/ItemLike;)V +MD: net/minecraft/client/color/item/ItemColors/m_92692_ (Lnet/minecraft/world/item/ItemStack;I)I net/minecraft/client/color/item/ItemColors/lambda$createDefault$7 (Lnet/minecraft/world/item/ItemStack;I)I +MD: net/minecraft/client/color/item/ItemColors/m_92695_ (Lnet/minecraft/world/item/ItemStack;I)I net/minecraft/client/color/item/ItemColors/lambda$createDefault$6 (Lnet/minecraft/world/item/ItemStack;I)I +MD: net/minecraft/client/color/item/ItemColors/m_92698_ (Lnet/minecraft/world/item/ItemStack;I)I net/minecraft/client/color/item/ItemColors/lambda$createDefault$3 (Lnet/minecraft/world/item/ItemStack;I)I +MD: net/minecraft/client/color/item/ItemColors/m_92701_ (Lnet/minecraft/world/item/ItemStack;I)I net/minecraft/client/color/item/ItemColors/lambda$createDefault$2 (Lnet/minecraft/world/item/ItemStack;I)I +MD: net/minecraft/client/color/item/ItemColors/m_92704_ (Lnet/minecraft/world/item/ItemStack;I)I net/minecraft/client/color/item/ItemColors/lambda$createDefault$1 (Lnet/minecraft/world/item/ItemStack;I)I +MD: net/minecraft/client/color/item/ItemColors/m_92707_ (Lnet/minecraft/world/item/ItemStack;I)I net/minecraft/client/color/item/ItemColors/lambda$createDefault$0 (Lnet/minecraft/world/item/ItemStack;I)I +MD: net/minecraft/client/gui/ComponentPath/m_264222_ ()Lnet/minecraft/client/gui/components/events/GuiEventListener; net/minecraft/client/gui/ComponentPath/component ()Lnet/minecraft/client/gui/components/events/GuiEventListener; +MD: net/minecraft/client/gui/ComponentPath/m_264334_ (Lnet/minecraft/client/gui/components/events/ContainerEventHandler;Lnet/minecraft/client/gui/ComponentPath;)Lnet/minecraft/client/gui/ComponentPath; net/minecraft/client/gui/ComponentPath/path (Lnet/minecraft/client/gui/components/events/ContainerEventHandler;Lnet/minecraft/client/gui/ComponentPath;)Lnet/minecraft/client/gui/ComponentPath; +MD: net/minecraft/client/gui/ComponentPath/m_264401_ (Lnet/minecraft/client/gui/components/events/GuiEventListener;)Lnet/minecraft/client/gui/ComponentPath; net/minecraft/client/gui/ComponentPath/leaf (Lnet/minecraft/client/gui/components/events/GuiEventListener;)Lnet/minecraft/client/gui/ComponentPath; +MD: net/minecraft/client/gui/ComponentPath/m_264432_ (Z)V net/minecraft/client/gui/ComponentPath/applyFocus (Z)V +MD: net/minecraft/client/gui/ComponentPath/m_264492_ (Lnet/minecraft/client/gui/components/events/GuiEventListener;[Lnet/minecraft/client/gui/components/events/ContainerEventHandler;)Lnet/minecraft/client/gui/ComponentPath; net/minecraft/client/gui/ComponentPath/path (Lnet/minecraft/client/gui/components/events/GuiEventListener;[Lnet/minecraft/client/gui/components/events/ContainerEventHandler;)Lnet/minecraft/client/gui/ComponentPath; +MD: net/minecraft/client/gui/ComponentPath$Leaf/ (Lnet/minecraft/client/gui/components/events/GuiEventListener;)V net/minecraft/client/gui/ComponentPath$Leaf/ (Lnet/minecraft/client/gui/components/events/GuiEventListener;)V +MD: net/minecraft/client/gui/ComponentPath$Leaf/equals (Ljava/lang/Object;)Z net/minecraft/client/gui/ComponentPath$Leaf/equals (Ljava/lang/Object;)Z +MD: net/minecraft/client/gui/ComponentPath$Leaf/hashCode ()I net/minecraft/client/gui/ComponentPath$Leaf/hashCode ()I +MD: net/minecraft/client/gui/ComponentPath$Leaf/m_264222_ ()Lnet/minecraft/client/gui/components/events/GuiEventListener; net/minecraft/client/gui/ComponentPath$Leaf/component ()Lnet/minecraft/client/gui/components/events/GuiEventListener; +MD: net/minecraft/client/gui/ComponentPath$Leaf/m_264432_ (Z)V net/minecraft/client/gui/ComponentPath$Leaf/applyFocus (Z)V +MD: net/minecraft/client/gui/ComponentPath$Leaf/toString ()Ljava/lang/String; net/minecraft/client/gui/ComponentPath$Leaf/toString ()Ljava/lang/String; +MD: net/minecraft/client/gui/ComponentPath$Path/ (Lnet/minecraft/client/gui/components/events/ContainerEventHandler;Lnet/minecraft/client/gui/ComponentPath;)V net/minecraft/client/gui/ComponentPath$Path/ (Lnet/minecraft/client/gui/components/events/ContainerEventHandler;Lnet/minecraft/client/gui/ComponentPath;)V +MD: net/minecraft/client/gui/ComponentPath$Path/equals (Ljava/lang/Object;)Z net/minecraft/client/gui/ComponentPath$Path/equals (Ljava/lang/Object;)Z +MD: net/minecraft/client/gui/ComponentPath$Path/f_263808_ ()Lnet/minecraft/client/gui/ComponentPath; net/minecraft/client/gui/ComponentPath$Path/childPath ()Lnet/minecraft/client/gui/ComponentPath; +MD: net/minecraft/client/gui/ComponentPath$Path/hashCode ()I net/minecraft/client/gui/ComponentPath$Path/hashCode ()I +MD: net/minecraft/client/gui/ComponentPath$Path/m_264222_ ()Lnet/minecraft/client/gui/components/events/ContainerEventHandler; net/minecraft/client/gui/ComponentPath$Path/component ()Lnet/minecraft/client/gui/components/events/ContainerEventHandler; +MD: net/minecraft/client/gui/ComponentPath$Path/m_264222_ ()Lnet/minecraft/client/gui/components/events/GuiEventListener; net/minecraft/client/gui/ComponentPath$Path/component ()Lnet/minecraft/client/gui/components/events/GuiEventListener; +MD: net/minecraft/client/gui/ComponentPath$Path/m_264432_ (Z)V net/minecraft/client/gui/ComponentPath$Path/applyFocus (Z)V +MD: net/minecraft/client/gui/ComponentPath$Path/toString ()Ljava/lang/String; net/minecraft/client/gui/ComponentPath$Path/toString ()Ljava/lang/String; +MD: net/minecraft/client/gui/Font/ ()V net/minecraft/client/gui/Font/ ()V +MD: net/minecraft/client/gui/Font/ (Ljava/util/function/Function;Z)V net/minecraft/client/gui/Font/ (Ljava/util/function/Function;Z)V +MD: net/minecraft/client/gui/Font/m_168645_ (Lnet/minecraft/util/FormattedCharSequence;FFIILorg/joml/Matrix4f;Lnet/minecraft/client/renderer/MultiBufferSource;I)V net/minecraft/client/gui/Font/drawInBatch8xOutline (Lnet/minecraft/util/FormattedCharSequence;FFIILorg/joml/Matrix4f;Lnet/minecraft/client/renderer/MultiBufferSource;I)V +MD: net/minecraft/client/gui/Font/m_168654_ (Lnet/minecraft/client/gui/Font$StringRenderOutput;[FIFIIILnet/minecraft/network/chat/Style;I)Z net/minecraft/client/gui/Font/lambda$drawInBatch8xOutline$1 (Lnet/minecraft/client/gui/Font$StringRenderOutput;[FIFIIILnet/minecraft/network/chat/Style;I)Z +MD: net/minecraft/client/gui/Font/m_239133_ (Lnet/minecraft/network/chat/FormattedText;I)I net/minecraft/client/gui/Font/wordWrapHeight (Lnet/minecraft/network/chat/FormattedText;I)I +MD: net/minecraft/client/gui/Font/m_243025_ (ILnet/minecraft/network/chat/Style;)F net/minecraft/client/gui/Font/lambda$new$0 (ILnet/minecraft/network/chat/Style;)F +MD: net/minecraft/client/gui/Font/m_253238_ (Lnet/minecraft/client/gui/font/glyphs/BakedGlyph;ZZFFFLorg/joml/Matrix4f;Lcom/mojang/blaze3d/vertex/VertexConsumer;FFFFI)V net/minecraft/client/gui/Font/renderChar (Lnet/minecraft/client/gui/font/glyphs/BakedGlyph;ZZFFFLorg/joml/Matrix4f;Lcom/mojang/blaze3d/vertex/VertexConsumer;FFFFI)V +MD: net/minecraft/client/gui/Font/m_271703_ (Ljava/lang/String;FFIZLorg/joml/Matrix4f;Lnet/minecraft/client/renderer/MultiBufferSource;Lnet/minecraft/client/gui/Font$DisplayMode;II)I net/minecraft/client/gui/Font/drawInBatch (Ljava/lang/String;FFIZLorg/joml/Matrix4f;Lnet/minecraft/client/renderer/MultiBufferSource;Lnet/minecraft/client/gui/Font$DisplayMode;II)I +MD: net/minecraft/client/gui/Font/m_271880_ (Ljava/lang/String;FFIZLorg/joml/Matrix4f;Lnet/minecraft/client/renderer/MultiBufferSource;Lnet/minecraft/client/gui/Font$DisplayMode;IIZ)I net/minecraft/client/gui/Font/drawInternal (Ljava/lang/String;FFIZLorg/joml/Matrix4f;Lnet/minecraft/client/renderer/MultiBufferSource;Lnet/minecraft/client/gui/Font$DisplayMode;IIZ)I +MD: net/minecraft/client/gui/Font/m_271978_ (Ljava/lang/String;FFIZLorg/joml/Matrix4f;Lnet/minecraft/client/renderer/MultiBufferSource;Lnet/minecraft/client/gui/Font$DisplayMode;II)F net/minecraft/client/gui/Font/renderText (Ljava/lang/String;FFIZLorg/joml/Matrix4f;Lnet/minecraft/client/renderer/MultiBufferSource;Lnet/minecraft/client/gui/Font$DisplayMode;II)F +MD: net/minecraft/client/gui/Font/m_271992_ (Lnet/minecraft/util/FormattedCharSequence;FFIZLorg/joml/Matrix4f;Lnet/minecraft/client/renderer/MultiBufferSource;Lnet/minecraft/client/gui/Font$DisplayMode;II)F net/minecraft/client/gui/Font/renderText (Lnet/minecraft/util/FormattedCharSequence;FFIZLorg/joml/Matrix4f;Lnet/minecraft/client/renderer/MultiBufferSource;Lnet/minecraft/client/gui/Font$DisplayMode;II)F +MD: net/minecraft/client/gui/Font/m_272077_ (Lnet/minecraft/network/chat/Component;FFIZLorg/joml/Matrix4f;Lnet/minecraft/client/renderer/MultiBufferSource;Lnet/minecraft/client/gui/Font$DisplayMode;II)I net/minecraft/client/gui/Font/drawInBatch (Lnet/minecraft/network/chat/Component;FFIZLorg/joml/Matrix4f;Lnet/minecraft/client/renderer/MultiBufferSource;Lnet/minecraft/client/gui/Font$DisplayMode;II)I +MD: net/minecraft/client/gui/Font/m_272078_ (Ljava/lang/String;FFIZLorg/joml/Matrix4f;Lnet/minecraft/client/renderer/MultiBufferSource;Lnet/minecraft/client/gui/Font$DisplayMode;IIZ)I net/minecraft/client/gui/Font/drawInBatch (Ljava/lang/String;FFIZLorg/joml/Matrix4f;Lnet/minecraft/client/renderer/MultiBufferSource;Lnet/minecraft/client/gui/Font$DisplayMode;IIZ)I +MD: net/minecraft/client/gui/Font/m_272085_ (Lnet/minecraft/util/FormattedCharSequence;FFIZLorg/joml/Matrix4f;Lnet/minecraft/client/renderer/MultiBufferSource;Lnet/minecraft/client/gui/Font$DisplayMode;II)I net/minecraft/client/gui/Font/drawInternal (Lnet/minecraft/util/FormattedCharSequence;FFIZLorg/joml/Matrix4f;Lnet/minecraft/client/renderer/MultiBufferSource;Lnet/minecraft/client/gui/Font$DisplayMode;II)I +MD: net/minecraft/client/gui/Font/m_272191_ (Lnet/minecraft/util/FormattedCharSequence;FFIZLorg/joml/Matrix4f;Lnet/minecraft/client/renderer/MultiBufferSource;Lnet/minecraft/client/gui/Font$DisplayMode;II)I net/minecraft/client/gui/Font/drawInBatch (Lnet/minecraft/util/FormattedCharSequence;FFIZLorg/joml/Matrix4f;Lnet/minecraft/client/renderer/MultiBufferSource;Lnet/minecraft/client/gui/Font$DisplayMode;II)I +MD: net/minecraft/client/gui/Font/m_92718_ ()Z net/minecraft/client/gui/Font/isBidirectional ()Z +MD: net/minecraft/client/gui/Font/m_92719_ (I)I net/minecraft/client/gui/Font/adjustColor (I)I +MD: net/minecraft/client/gui/Font/m_92724_ (Lnet/minecraft/util/FormattedCharSequence;)I net/minecraft/client/gui/Font/width (Lnet/minecraft/util/FormattedCharSequence;)I +MD: net/minecraft/client/gui/Font/m_92801_ (Ljava/lang/String;)Ljava/lang/String; net/minecraft/client/gui/Font/bidirectionalShaping (Ljava/lang/String;)Ljava/lang/String; +MD: net/minecraft/client/gui/Font/m_92834_ (Ljava/lang/String;I)Ljava/lang/String; net/minecraft/client/gui/Font/plainSubstrByWidth (Ljava/lang/String;I)Ljava/lang/String; +MD: net/minecraft/client/gui/Font/m_92837_ (Ljava/lang/String;IZ)Ljava/lang/String; net/minecraft/client/gui/Font/plainSubstrByWidth (Ljava/lang/String;IZ)Ljava/lang/String; +MD: net/minecraft/client/gui/Font/m_92852_ (Lnet/minecraft/network/chat/FormattedText;)I net/minecraft/client/gui/Font/width (Lnet/minecraft/network/chat/FormattedText;)I +MD: net/minecraft/client/gui/Font/m_92854_ (Lnet/minecraft/network/chat/FormattedText;I)Lnet/minecraft/network/chat/FormattedText; net/minecraft/client/gui/Font/substrByWidth (Lnet/minecraft/network/chat/FormattedText;I)Lnet/minecraft/network/chat/FormattedText; +MD: net/minecraft/client/gui/Font/m_92863_ (Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/client/gui/font/FontSet; net/minecraft/client/gui/Font/getFontSet (Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/client/gui/font/FontSet; +MD: net/minecraft/client/gui/Font/m_92865_ ()Lnet/minecraft/client/StringSplitter; net/minecraft/client/gui/Font/getSplitter ()Lnet/minecraft/client/StringSplitter; +MD: net/minecraft/client/gui/Font/m_92895_ (Ljava/lang/String;)I net/minecraft/client/gui/Font/width (Ljava/lang/String;)I +MD: net/minecraft/client/gui/Font/m_92920_ (Ljava/lang/String;I)I net/minecraft/client/gui/Font/wordWrapHeight (Ljava/lang/String;I)I +MD: net/minecraft/client/gui/Font/m_92923_ (Lnet/minecraft/network/chat/FormattedText;I)Ljava/util/List; net/minecraft/client/gui/Font/split (Lnet/minecraft/network/chat/FormattedText;I)Ljava/util/List; +MD: net/minecraft/client/gui/Font$DisplayMode/ ()V net/minecraft/client/gui/Font$DisplayMode/ ()V +MD: net/minecraft/client/gui/Font$DisplayMode/ (Ljava/lang/String;I)V net/minecraft/client/gui/Font$DisplayMode/ (Ljava/lang/String;I)V +MD: net/minecraft/client/gui/Font$DisplayMode/m_181358_ ()[Lnet/minecraft/client/gui/Font$DisplayMode; net/minecraft/client/gui/Font$DisplayMode/$values ()[Lnet/minecraft/client/gui/Font$DisplayMode; +MD: net/minecraft/client/gui/Font$DisplayMode/valueOf (Ljava/lang/String;)Lnet/minecraft/client/gui/Font$DisplayMode; net/minecraft/client/gui/Font$DisplayMode/valueOf (Ljava/lang/String;)Lnet/minecraft/client/gui/Font$DisplayMode; +MD: net/minecraft/client/gui/Font$DisplayMode/values ()[Lnet/minecraft/client/gui/Font$DisplayMode; net/minecraft/client/gui/Font$DisplayMode/values ()[Lnet/minecraft/client/gui/Font$DisplayMode; +MD: net/minecraft/client/gui/Font$StringRenderOutput/ (Lnet/minecraft/client/gui/Font;Lnet/minecraft/client/renderer/MultiBufferSource;FFIZLorg/joml/Matrix4f;Lnet/minecraft/client/gui/Font$DisplayMode;I)V net/minecraft/client/gui/Font$StringRenderOutput/ (Lnet/minecraft/client/gui/Font;Lnet/minecraft/client/renderer/MultiBufferSource;FFIZLorg/joml/Matrix4f;Lnet/minecraft/client/gui/Font$DisplayMode;I)V +MD: net/minecraft/client/gui/Font$StringRenderOutput/m_6411_ (ILnet/minecraft/network/chat/Style;I)Z net/minecraft/client/gui/Font$StringRenderOutput/accept (ILnet/minecraft/network/chat/Style;I)Z +MD: net/minecraft/client/gui/Font$StringRenderOutput/m_92961_ (IF)F net/minecraft/client/gui/Font$StringRenderOutput/finish (IF)F +MD: net/minecraft/client/gui/Font$StringRenderOutput/m_92964_ (Lnet/minecraft/client/gui/font/glyphs/BakedGlyph$Effect;)V net/minecraft/client/gui/Font$StringRenderOutput/addEffect (Lnet/minecraft/client/gui/font/glyphs/BakedGlyph$Effect;)V +MD: net/minecraft/client/gui/Gui/ ()V net/minecraft/client/gui/Gui/ ()V +MD: net/minecraft/client/gui/Gui/ (Lnet/minecraft/client/Minecraft;Lnet/minecraft/client/renderer/entity/ItemRenderer;)V net/minecraft/client/gui/Gui/ (Lnet/minecraft/client/Minecraft;Lnet/minecraft/client/renderer/entity/ItemRenderer;)V +MD: net/minecraft/client/gui/Gui/m_168684_ (III)V net/minecraft/client/gui/Gui/setTimes (III)V +MD: net/minecraft/client/gui/Gui/m_168688_ (Lnet/minecraft/client/gui/GuiGraphics;Lnet/minecraft/world/entity/player/Player;IIIIFIIIZ)V net/minecraft/client/gui/Gui/renderHearts (Lnet/minecraft/client/gui/GuiGraphics;Lnet/minecraft/world/entity/player/Player;IIIIFIIIZ)V +MD: net/minecraft/client/gui/Gui/m_168711_ (Lnet/minecraft/network/chat/Component;)V net/minecraft/client/gui/Gui/setSubtitle (Lnet/minecraft/network/chat/Component;)V +MD: net/minecraft/client/gui/Gui/m_168713_ ()V net/minecraft/client/gui/Gui/clear ()V +MD: net/minecraft/client/gui/Gui/m_168714_ (Lnet/minecraft/network/chat/Component;)V net/minecraft/client/gui/Gui/setTitle (Lnet/minecraft/network/chat/Component;)V +MD: net/minecraft/client/gui/Gui/m_193832_ (Z)V net/minecraft/client/gui/Gui/tick (Z)V +MD: net/minecraft/client/gui/Gui/m_193836_ ()V net/minecraft/client/gui/Gui/tickAutosaveIndicator ()V +MD: net/minecraft/client/gui/Gui/m_238351_ ()Z net/minecraft/client/gui/Gui/isShowingChatDisabledByPlayer ()Z +MD: net/minecraft/client/gui/Gui/m_238397_ (Z)V net/minecraft/client/gui/Gui/setChatDisabledByPlayerShown (Z)V +MD: net/minecraft/client/gui/Gui/m_279741_ (Lnet/minecraft/client/gui/GuiGraphics;FIILnet/minecraft/client/renderer/texture/TextureAtlasSprite;)V net/minecraft/client/gui/Gui/lambda$renderEffects$0 (Lnet/minecraft/client/gui/GuiGraphics;FIILnet/minecraft/client/renderer/texture/TextureAtlasSprite;)V +MD: net/minecraft/client/gui/Gui/m_280030_ (Lnet/minecraft/client/gui/GuiGraphics;Lnet/minecraft/world/scores/Objective;)V net/minecraft/client/gui/Gui/displayScoreboardSidebar (Lnet/minecraft/client/gui/GuiGraphics;Lnet/minecraft/world/scores/Objective;)V +MD: net/minecraft/client/gui/Gui/m_280069_ (Lnet/minecraft/world/entity/PlayerRideableJumping;Lnet/minecraft/client/gui/GuiGraphics;I)V net/minecraft/client/gui/Gui/renderJumpMeter (Lnet/minecraft/world/entity/PlayerRideableJumping;Lnet/minecraft/client/gui/GuiGraphics;I)V +MD: net/minecraft/client/gui/Gui/m_280130_ (Lnet/minecraft/client/gui/GuiGraphics;)V net/minecraft/client/gui/Gui/renderCrosshair (Lnet/minecraft/client/gui/GuiGraphics;)V +MD: net/minecraft/client/gui/Gui/m_280154_ (Lnet/minecraft/client/gui/GuiGraphics;Lnet/minecraft/world/entity/Entity;)V net/minecraft/client/gui/Gui/renderVignette (Lnet/minecraft/client/gui/GuiGraphics;Lnet/minecraft/world/entity/Entity;)V +MD: net/minecraft/client/gui/Gui/m_280155_ (Lnet/minecraft/client/gui/GuiGraphics;Lnet/minecraft/resources/ResourceLocation;F)V net/minecraft/client/gui/Gui/renderTextureOverlay (Lnet/minecraft/client/gui/GuiGraphics;Lnet/minecraft/resources/ResourceLocation;F)V +MD: net/minecraft/client/gui/Gui/m_280173_ (Lnet/minecraft/client/gui/GuiGraphics;)V net/minecraft/client/gui/Gui/renderPlayerHealth (Lnet/minecraft/client/gui/GuiGraphics;)V +MD: net/minecraft/client/gui/Gui/m_280250_ (Lnet/minecraft/client/gui/GuiGraphics;)V net/minecraft/client/gui/Gui/renderVehicleHealth (Lnet/minecraft/client/gui/GuiGraphics;)V +MD: net/minecraft/client/gui/Gui/m_280266_ (Lnet/minecraft/client/gui/GuiGraphics;)V net/minecraft/client/gui/Gui/renderSavingIndicator (Lnet/minecraft/client/gui/GuiGraphics;)V +MD: net/minecraft/client/gui/Gui/m_280276_ (Lnet/minecraft/client/gui/GuiGraphics;I)V net/minecraft/client/gui/Gui/renderExperienceBar (Lnet/minecraft/client/gui/GuiGraphics;I)V +MD: net/minecraft/client/gui/Gui/m_280278_ (Lnet/minecraft/client/gui/GuiGraphics;F)V net/minecraft/client/gui/Gui/renderSpyglassOverlay (Lnet/minecraft/client/gui/GuiGraphics;F)V +MD: net/minecraft/client/gui/Gui/m_280295_ (Lnet/minecraft/client/gui/GuiGraphics;)V net/minecraft/client/gui/Gui/renderSelectedItemName (Lnet/minecraft/client/gui/GuiGraphics;)V +MD: net/minecraft/client/gui/Gui/m_280339_ (Lnet/minecraft/client/gui/GuiGraphics;)V net/minecraft/client/gui/Gui/renderDemoOverlay (Lnet/minecraft/client/gui/GuiGraphics;)V +MD: net/minecraft/client/gui/Gui/m_280379_ (Lnet/minecraft/client/gui/GuiGraphics;F)V net/minecraft/client/gui/Gui/renderPortalOverlay (Lnet/minecraft/client/gui/GuiGraphics;F)V +MD: net/minecraft/client/gui/Gui/m_280421_ (Lnet/minecraft/client/gui/GuiGraphics;F)V net/minecraft/client/gui/Gui/render (Lnet/minecraft/client/gui/GuiGraphics;F)V +MD: net/minecraft/client/gui/Gui/m_280518_ (FLnet/minecraft/client/gui/GuiGraphics;)V net/minecraft/client/gui/Gui/renderHotbar (FLnet/minecraft/client/gui/GuiGraphics;)V +MD: net/minecraft/client/gui/Gui/m_280523_ (Lnet/minecraft/client/gui/GuiGraphics;)V net/minecraft/client/gui/Gui/renderEffects (Lnet/minecraft/client/gui/GuiGraphics;)V +MD: net/minecraft/client/gui/Gui/m_280585_ (Lnet/minecraft/client/gui/GuiGraphics;IIFLnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/item/ItemStack;I)V net/minecraft/client/gui/Gui/renderSlot (Lnet/minecraft/client/gui/GuiGraphics;IIFLnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/item/ItemStack;I)V +MD: net/minecraft/client/gui/Gui/m_280593_ (Lnet/minecraft/client/gui/GuiGraphics;Lnet/minecraft/client/gui/Gui$HeartType;IIIZZ)V net/minecraft/client/gui/Gui/renderHeart (Lnet/minecraft/client/gui/GuiGraphics;Lnet/minecraft/client/gui/Gui$HeartType;IIIZZ)V +MD: net/minecraft/client/gui/Gui/m_93006_ ()V net/minecraft/client/gui/Gui/resetTitleTimes ()V +MD: net/minecraft/client/gui/Gui/m_93012_ (I)I net/minecraft/client/gui/Gui/getVisibleVehicleHeartRows (I)I +MD: net/minecraft/client/gui/Gui/m_93020_ (Lnet/minecraft/world/entity/Entity;)V net/minecraft/client/gui/Gui/updateVignetteBrightness (Lnet/minecraft/world/entity/Entity;)V +MD: net/minecraft/client/gui/Gui/m_93022_ (Lnet/minecraft/world/entity/LivingEntity;)I net/minecraft/client/gui/Gui/getVehicleMaxHearts (Lnet/minecraft/world/entity/LivingEntity;)I +MD: net/minecraft/client/gui/Gui/m_93024_ (Lnet/minecraft/world/phys/HitResult;)Z net/minecraft/client/gui/Gui/canRenderCrosshairForSpectator (Lnet/minecraft/world/phys/HitResult;)Z +MD: net/minecraft/client/gui/Gui/m_93026_ (Lnet/minecraft/world/scores/Score;)Z net/minecraft/client/gui/Gui/lambda$displayScoreboardSidebar$1 (Lnet/minecraft/world/scores/Score;)Z +MD: net/minecraft/client/gui/Gui/m_93039_ (Lnet/minecraft/client/gui/GuiGraphics;Lnet/minecraft/client/gui/Font;III)V net/minecraft/client/gui/Gui/drawBackdrop (Lnet/minecraft/client/gui/GuiGraphics;Lnet/minecraft/client/gui/Font;III)V +MD: net/minecraft/client/gui/Gui/m_93055_ (Lnet/minecraft/network/chat/Component;)V net/minecraft/client/gui/Gui/setNowPlaying (Lnet/minecraft/network/chat/Component;)V +MD: net/minecraft/client/gui/Gui/m_93063_ (Lnet/minecraft/network/chat/Component;Z)V net/minecraft/client/gui/Gui/setOverlayMessage (Lnet/minecraft/network/chat/Component;Z)V +MD: net/minecraft/client/gui/Gui/m_93066_ ()V net/minecraft/client/gui/Gui/tick ()V +MD: net/minecraft/client/gui/Gui/m_93076_ ()Lnet/minecraft/client/gui/components/ChatComponent; net/minecraft/client/gui/Gui/getChat ()Lnet/minecraft/client/gui/components/ChatComponent; +MD: net/minecraft/client/gui/Gui/m_93079_ ()I net/minecraft/client/gui/Gui/getGuiTicks ()I +MD: net/minecraft/client/gui/Gui/m_93082_ ()Lnet/minecraft/client/gui/Font; net/minecraft/client/gui/Gui/getFont ()Lnet/minecraft/client/gui/Font; +MD: net/minecraft/client/gui/Gui/m_93085_ ()Lnet/minecraft/client/gui/components/spectator/SpectatorGui; net/minecraft/client/gui/Gui/getSpectatorGui ()Lnet/minecraft/client/gui/components/spectator/SpectatorGui; +MD: net/minecraft/client/gui/Gui/m_93088_ ()Lnet/minecraft/client/gui/components/PlayerTabOverlay; net/minecraft/client/gui/Gui/getTabList ()Lnet/minecraft/client/gui/components/PlayerTabOverlay; +MD: net/minecraft/client/gui/Gui/m_93089_ ()V net/minecraft/client/gui/Gui/onDisconnected ()V +MD: net/minecraft/client/gui/Gui/m_93090_ ()Lnet/minecraft/client/gui/components/BossHealthOverlay; net/minecraft/client/gui/Gui/getBossOverlay ()Lnet/minecraft/client/gui/components/BossHealthOverlay; +MD: net/minecraft/client/gui/Gui/m_93091_ ()V net/minecraft/client/gui/Gui/clearCache ()V +MD: net/minecraft/client/gui/Gui/m_93092_ ()Lnet/minecraft/world/entity/player/Player; net/minecraft/client/gui/Gui/getCameraPlayer ()Lnet/minecraft/world/entity/player/Player; +MD: net/minecraft/client/gui/Gui/m_93093_ ()Lnet/minecraft/world/entity/LivingEntity; net/minecraft/client/gui/Gui/getPlayerVehicleWithHealth ()Lnet/minecraft/world/entity/LivingEntity; +MD: net/minecraft/client/gui/Gui$HeartType/ ()V net/minecraft/client/gui/Gui$HeartType/ ()V +MD: net/minecraft/client/gui/Gui$HeartType/ (Ljava/lang/String;IIZ)V net/minecraft/client/gui/Gui$HeartType/ (Ljava/lang/String;IIZ)V +MD: net/minecraft/client/gui/Gui$HeartType/m_168731_ ()[Lnet/minecraft/client/gui/Gui$HeartType; net/minecraft/client/gui/Gui$HeartType/$values ()[Lnet/minecraft/client/gui/Gui$HeartType; +MD: net/minecraft/client/gui/Gui$HeartType/m_168732_ (Lnet/minecraft/world/entity/player/Player;)Lnet/minecraft/client/gui/Gui$HeartType; net/minecraft/client/gui/Gui$HeartType/forPlayer (Lnet/minecraft/world/entity/player/Player;)Lnet/minecraft/client/gui/Gui$HeartType; +MD: net/minecraft/client/gui/Gui$HeartType/m_168734_ (ZZ)I net/minecraft/client/gui/Gui$HeartType/getX (ZZ)I +MD: net/minecraft/client/gui/Gui$HeartType/valueOf (Ljava/lang/String;)Lnet/minecraft/client/gui/Gui$HeartType; net/minecraft/client/gui/Gui$HeartType/valueOf (Ljava/lang/String;)Lnet/minecraft/client/gui/Gui$HeartType; +MD: net/minecraft/client/gui/Gui$HeartType/values ()[Lnet/minecraft/client/gui/Gui$HeartType; net/minecraft/client/gui/Gui$HeartType/values ()[Lnet/minecraft/client/gui/Gui$HeartType; +MD: net/minecraft/client/gui/GuiGraphics/ (Lnet/minecraft/client/Minecraft;Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource$BufferSource;)V net/minecraft/client/gui/GuiGraphics/ (Lnet/minecraft/client/Minecraft;Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource$BufferSource;)V +MD: net/minecraft/client/gui/GuiGraphics/ (Lnet/minecraft/client/Minecraft;Lnet/minecraft/client/renderer/MultiBufferSource$BufferSource;)V net/minecraft/client/gui/GuiGraphics/ (Lnet/minecraft/client/Minecraft;Lnet/minecraft/client/renderer/MultiBufferSource$BufferSource;)V +MD: net/minecraft/client/gui/GuiGraphics/m_280024_ (IIIIII)V net/minecraft/client/gui/GuiGraphics/fillGradient (IIIIII)V +MD: net/minecraft/client/gui/GuiGraphics/m_280027_ (Lnet/minecraft/resources/ResourceLocation;IIIIIIIIII)V net/minecraft/client/gui/GuiGraphics/blitNineSliced (Lnet/minecraft/resources/ResourceLocation;IIIIIIIIII)V +MD: net/minecraft/client/gui/GuiGraphics/m_280046_ (IIIIII)V net/minecraft/client/gui/GuiGraphics/fill (IIIIII)V +MD: net/minecraft/client/gui/GuiGraphics/m_280053_ (Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/level/Level;Lnet/minecraft/world/item/ItemStack;III)V net/minecraft/client/gui/GuiGraphics/renderItem (Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/level/Level;Lnet/minecraft/world/item/ItemStack;III)V +MD: net/minecraft/client/gui/GuiGraphics/m_280056_ (Lnet/minecraft/client/gui/Font;Ljava/lang/String;IIIZ)I net/minecraft/client/gui/GuiGraphics/drawString (Lnet/minecraft/client/gui/Font;Ljava/lang/String;IIIZ)I +MD: net/minecraft/client/gui/GuiGraphics/m_280064_ (Lnet/minecraft/world/item/ItemStack;IIII)V net/minecraft/client/gui/GuiGraphics/renderItem (Lnet/minecraft/world/item/ItemStack;IIII)V +MD: net/minecraft/client/gui/GuiGraphics/m_280091_ ()Lnet/minecraft/client/renderer/MultiBufferSource$BufferSource; net/minecraft/client/gui/GuiGraphics/bufferSource ()Lnet/minecraft/client/renderer/MultiBufferSource$BufferSource; +MD: net/minecraft/client/gui/GuiGraphics/m_280120_ (IIIIIII)V net/minecraft/client/gui/GuiGraphics/fillGradient (IIIIIII)V +MD: net/minecraft/client/gui/GuiGraphics/m_280124_ (Lnet/minecraft/world/item/ItemStack;)Ljava/lang/String; net/minecraft/client/gui/GuiGraphics/lambda$renderItem$0 (Lnet/minecraft/world/item/ItemStack;)Ljava/lang/String; +MD: net/minecraft/client/gui/GuiGraphics/m_280137_ (Lnet/minecraft/client/gui/Font;Ljava/lang/String;III)V net/minecraft/client/gui/GuiGraphics/drawCenteredString (Lnet/minecraft/client/gui/Font;Ljava/lang/String;III)V +MD: net/minecraft/client/gui/GuiGraphics/m_280149_ (Lnet/minecraft/world/item/ItemStack;)Ljava/lang/String; net/minecraft/client/gui/GuiGraphics/lambda$renderItem$2 (Lnet/minecraft/world/item/ItemStack;)Ljava/lang/String; +MD: net/minecraft/client/gui/GuiGraphics/m_280153_ (Lnet/minecraft/client/gui/Font;Lnet/minecraft/world/item/ItemStack;II)V net/minecraft/client/gui/GuiGraphics/renderTooltip (Lnet/minecraft/client/gui/Font;Lnet/minecraft/world/item/ItemStack;II)V +MD: net/minecraft/client/gui/GuiGraphics/m_280159_ (IIIIILnet/minecraft/client/renderer/texture/TextureAtlasSprite;)V net/minecraft/client/gui/GuiGraphics/blit (IIIIILnet/minecraft/client/renderer/texture/TextureAtlasSprite;)V +MD: net/minecraft/client/gui/GuiGraphics/m_280163_ (Lnet/minecraft/resources/ResourceLocation;IIFFIIII)V net/minecraft/client/gui/GuiGraphics/blit (Lnet/minecraft/resources/ResourceLocation;IIFFIIII)V +MD: net/minecraft/client/gui/GuiGraphics/m_280168_ ()Lcom/mojang/blaze3d/vertex/PoseStack; net/minecraft/client/gui/GuiGraphics/pose ()Lcom/mojang/blaze3d/vertex/PoseStack; +MD: net/minecraft/client/gui/GuiGraphics/m_280182_ ()I net/minecraft/client/gui/GuiGraphics/guiWidth ()I +MD: net/minecraft/client/gui/GuiGraphics/m_280185_ (Lnet/minecraft/client/gui/navigation/ScreenRectangle;)V net/minecraft/client/gui/GuiGraphics/applyScissor (Lnet/minecraft/client/gui/navigation/ScreenRectangle;)V +MD: net/minecraft/client/gui/GuiGraphics/m_280195_ (Lnet/minecraft/resources/ResourceLocation;IIIIIIIIIIII)V net/minecraft/client/gui/GuiGraphics/blitNineSliced (Lnet/minecraft/resources/ResourceLocation;IIIIIIIIIIII)V +MD: net/minecraft/client/gui/GuiGraphics/m_280203_ (Lnet/minecraft/world/item/ItemStack;II)V net/minecraft/client/gui/GuiGraphics/renderFakeItem (Lnet/minecraft/world/item/ItemStack;II)V +MD: net/minecraft/client/gui/GuiGraphics/m_280206_ ()I net/minecraft/client/gui/GuiGraphics/guiHeight ()I +MD: net/minecraft/client/gui/GuiGraphics/m_280218_ (Lnet/minecraft/resources/ResourceLocation;IIIIII)V net/minecraft/client/gui/GuiGraphics/blit (Lnet/minecraft/resources/ResourceLocation;IIIIII)V +MD: net/minecraft/client/gui/GuiGraphics/m_280240_ (Lnet/minecraft/world/item/ItemStack;)Ljava/lang/String; net/minecraft/client/gui/GuiGraphics/lambda$renderItem$1 (Lnet/minecraft/world/item/ItemStack;)Ljava/lang/String; +MD: net/minecraft/client/gui/GuiGraphics/m_280245_ (Lnet/minecraft/client/gui/Font;Ljava/util/List;II)V net/minecraft/client/gui/GuiGraphics/renderTooltip (Lnet/minecraft/client/gui/Font;Ljava/util/List;II)V +MD: net/minecraft/client/gui/GuiGraphics/m_280246_ (FFFF)V net/minecraft/client/gui/GuiGraphics/setColor (FFFF)V +MD: net/minecraft/client/gui/GuiGraphics/m_280256_ (Lnet/minecraft/world/item/ItemStack;III)V net/minecraft/client/gui/GuiGraphics/renderItem (Lnet/minecraft/world/item/ItemStack;III)V +MD: net/minecraft/client/gui/GuiGraphics/m_280260_ (Lnet/minecraft/resources/ResourceLocation;IIIIIIIII)V net/minecraft/client/gui/GuiGraphics/blitNineSliced (Lnet/minecraft/resources/ResourceLocation;IIIIIIIII)V +MD: net/minecraft/client/gui/GuiGraphics/m_280262_ ()V net/minecraft/client/gui/GuiGraphics/flush ()V +MD: net/minecraft/client/gui/GuiGraphics/m_280302_ (Lnet/minecraft/client/gui/Font;Lnet/minecraft/world/item/ItemStack;IILjava/lang/String;)V net/minecraft/client/gui/GuiGraphics/renderItemDecorations (Lnet/minecraft/client/gui/Font;Lnet/minecraft/world/item/ItemStack;IILjava/lang/String;)V +MD: net/minecraft/client/gui/GuiGraphics/m_280304_ (Lnet/minecraft/client/gui/Font;Lnet/minecraft/network/chat/Style;II)V net/minecraft/client/gui/GuiGraphics/renderComponentHoverEffect (Lnet/minecraft/client/gui/Font;Lnet/minecraft/network/chat/Style;II)V +MD: net/minecraft/client/gui/GuiGraphics/m_280312_ (Lnet/minecraft/resources/ResourceLocation;IIIIIIIFFII)V net/minecraft/client/gui/GuiGraphics/blit (Lnet/minecraft/resources/ResourceLocation;IIIIIIIFFII)V +MD: net/minecraft/client/gui/GuiGraphics/m_280315_ (IIII)V net/minecraft/client/gui/GuiGraphics/vLine (IIII)V +MD: net/minecraft/client/gui/GuiGraphics/m_280358_ (II)Lit/unimi/dsi/fastutil/ints/IntIterator; net/minecraft/client/gui/GuiGraphics/slices (II)Lit/unimi/dsi/fastutil/ints/IntIterator; +MD: net/minecraft/client/gui/GuiGraphics/m_280364_ (Lnet/minecraft/client/gui/Font;Lnet/minecraft/util/FormattedCharSequence;III)V net/minecraft/client/gui/GuiGraphics/drawCenteredString (Lnet/minecraft/client/gui/Font;Lnet/minecraft/util/FormattedCharSequence;III)V +MD: net/minecraft/client/gui/GuiGraphics/m_280370_ (Lnet/minecraft/client/gui/Font;Lnet/minecraft/world/item/ItemStack;II)V net/minecraft/client/gui/GuiGraphics/renderItemDecorations (Lnet/minecraft/client/gui/Font;Lnet/minecraft/world/item/ItemStack;II)V +MD: net/minecraft/client/gui/GuiGraphics/m_280398_ (Lnet/minecraft/resources/ResourceLocation;IIIFFIIII)V net/minecraft/client/gui/GuiGraphics/blit (Lnet/minecraft/resources/ResourceLocation;IIIFFIIII)V +MD: net/minecraft/client/gui/GuiGraphics/m_280405_ (Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/level/Level;Lnet/minecraft/world/item/ItemStack;IIII)V net/minecraft/client/gui/GuiGraphics/renderItem (Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/level/Level;Lnet/minecraft/world/item/ItemStack;IIII)V +MD: net/minecraft/client/gui/GuiGraphics/m_280411_ (Lnet/minecraft/resources/ResourceLocation;IIIIFFIIII)V net/minecraft/client/gui/GuiGraphics/blit (Lnet/minecraft/resources/ResourceLocation;IIIIFFIIII)V +MD: net/minecraft/client/gui/GuiGraphics/m_280430_ (Lnet/minecraft/client/gui/Font;Lnet/minecraft/network/chat/Component;III)I net/minecraft/client/gui/GuiGraphics/drawString (Lnet/minecraft/client/gui/Font;Lnet/minecraft/network/chat/Component;III)I +MD: net/minecraft/client/gui/GuiGraphics/m_280444_ (Lnet/minecraft/resources/ResourceLocation;IIIIIFFFF)V net/minecraft/client/gui/GuiGraphics/innerBlit (Lnet/minecraft/resources/ResourceLocation;IIIIIFFFF)V +MD: net/minecraft/client/gui/GuiGraphics/m_280474_ (Lnet/minecraft/world/item/ItemStack;)Ljava/lang/String; net/minecraft/client/gui/GuiGraphics/lambda$renderItem$3 (Lnet/minecraft/world/item/ItemStack;)Ljava/lang/String; +MD: net/minecraft/client/gui/GuiGraphics/m_280479_ (Lnet/minecraft/resources/ResourceLocation;IIIIIFFFFFFFF)V net/minecraft/client/gui/GuiGraphics/innerBlit (Lnet/minecraft/resources/ResourceLocation;IIIIIFFFFFFFF)V +MD: net/minecraft/client/gui/GuiGraphics/m_280480_ (Lnet/minecraft/world/item/ItemStack;II)V net/minecraft/client/gui/GuiGraphics/renderItem (Lnet/minecraft/world/item/ItemStack;II)V +MD: net/minecraft/client/gui/GuiGraphics/m_280488_ (Lnet/minecraft/client/gui/Font;Ljava/lang/String;III)I net/minecraft/client/gui/GuiGraphics/drawString (Lnet/minecraft/client/gui/Font;Ljava/lang/String;III)I +MD: net/minecraft/client/gui/GuiGraphics/m_280497_ (Lnet/minecraft/client/gui/Font;Ljava/util/List;IILnet/minecraft/client/gui/screens/inventory/tooltip/ClientTooltipPositioner;)V net/minecraft/client/gui/GuiGraphics/renderTooltipInternal (Lnet/minecraft/client/gui/Font;Ljava/util/List;IILnet/minecraft/client/gui/screens/inventory/tooltip/ClientTooltipPositioner;)V +MD: net/minecraft/client/gui/GuiGraphics/m_280509_ (IIIII)V net/minecraft/client/gui/GuiGraphics/fill (IIIII)V +MD: net/minecraft/client/gui/GuiGraphics/m_280543_ (Lnet/minecraft/resources/ResourceLocation;IIIIIIII)V net/minecraft/client/gui/GuiGraphics/blitRepeating (Lnet/minecraft/resources/ResourceLocation;IIIIIIII)V +MD: net/minecraft/client/gui/GuiGraphics/m_280547_ (Lnet/minecraft/client/gui/Font;Ljava/util/List;Lnet/minecraft/client/gui/screens/inventory/tooltip/ClientTooltipPositioner;II)V net/minecraft/client/gui/GuiGraphics/renderTooltip (Lnet/minecraft/client/gui/Font;Ljava/util/List;Lnet/minecraft/client/gui/screens/inventory/tooltip/ClientTooltipPositioner;II)V +MD: net/minecraft/client/gui/GuiGraphics/m_280554_ (Lnet/minecraft/client/gui/Font;Lnet/minecraft/network/chat/FormattedText;IIII)V net/minecraft/client/gui/GuiGraphics/drawWordWrap (Lnet/minecraft/client/gui/Font;Lnet/minecraft/network/chat/FormattedText;IIII)V +MD: net/minecraft/client/gui/GuiGraphics/m_280557_ (Lnet/minecraft/client/gui/Font;Lnet/minecraft/network/chat/Component;II)V net/minecraft/client/gui/GuiGraphics/renderTooltip (Lnet/minecraft/client/gui/Font;Lnet/minecraft/network/chat/Component;II)V +MD: net/minecraft/client/gui/GuiGraphics/m_280565_ (IIIIILnet/minecraft/client/renderer/texture/TextureAtlasSprite;FFFF)V net/minecraft/client/gui/GuiGraphics/blit (IIIIILnet/minecraft/client/renderer/texture/TextureAtlasSprite;FFFF)V +MD: net/minecraft/client/gui/GuiGraphics/m_280584_ (Lcom/mojang/blaze3d/vertex/VertexConsumer;IIIIIII)V net/minecraft/client/gui/GuiGraphics/fillGradient (Lcom/mojang/blaze3d/vertex/VertexConsumer;IIIIIII)V +MD: net/minecraft/client/gui/GuiGraphics/m_280588_ (IIII)V net/minecraft/client/gui/GuiGraphics/enableScissor (IIII)V +MD: net/minecraft/client/gui/GuiGraphics/m_280614_ (Lnet/minecraft/client/gui/Font;Lnet/minecraft/network/chat/Component;IIIZ)I net/minecraft/client/gui/GuiGraphics/drawString (Lnet/minecraft/client/gui/Font;Lnet/minecraft/network/chat/Component;IIIZ)I +MD: net/minecraft/client/gui/GuiGraphics/m_280618_ ()V net/minecraft/client/gui/GuiGraphics/disableScissor ()V +MD: net/minecraft/client/gui/GuiGraphics/m_280637_ (IIIII)V net/minecraft/client/gui/GuiGraphics/renderOutline (IIIII)V +MD: net/minecraft/client/gui/GuiGraphics/m_280638_ (Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/item/ItemStack;III)V net/minecraft/client/gui/GuiGraphics/renderItem (Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/item/ItemStack;III)V +MD: net/minecraft/client/gui/GuiGraphics/m_280645_ (Ljava/util/List;Lnet/minecraft/world/inventory/tooltip/TooltipComponent;)V net/minecraft/client/gui/GuiGraphics/lambda$renderTooltip$4 (Ljava/util/List;Lnet/minecraft/world/inventory/tooltip/TooltipComponent;)V +MD: net/minecraft/client/gui/GuiGraphics/m_280648_ (Lnet/minecraft/client/gui/Font;Lnet/minecraft/util/FormattedCharSequence;III)I net/minecraft/client/gui/GuiGraphics/drawString (Lnet/minecraft/client/gui/Font;Lnet/minecraft/util/FormattedCharSequence;III)I +MD: net/minecraft/client/gui/GuiGraphics/m_280649_ (Lnet/minecraft/client/gui/Font;Lnet/minecraft/util/FormattedCharSequence;IIIZ)I net/minecraft/client/gui/GuiGraphics/drawString (Lnet/minecraft/client/gui/Font;Lnet/minecraft/util/FormattedCharSequence;IIIZ)I +MD: net/minecraft/client/gui/GuiGraphics/m_280653_ (Lnet/minecraft/client/gui/Font;Lnet/minecraft/network/chat/Component;III)V net/minecraft/client/gui/GuiGraphics/drawCenteredString (Lnet/minecraft/client/gui/Font;Lnet/minecraft/network/chat/Component;III)V +MD: net/minecraft/client/gui/GuiGraphics/m_280656_ (IIII)V net/minecraft/client/gui/GuiGraphics/hLine (IIII)V +MD: net/minecraft/client/gui/GuiGraphics/m_280666_ (Lnet/minecraft/client/gui/Font;Ljava/util/List;II)V net/minecraft/client/gui/GuiGraphics/renderComponentTooltip (Lnet/minecraft/client/gui/Font;Ljava/util/List;II)V +MD: net/minecraft/client/gui/GuiGraphics/m_280677_ (Lnet/minecraft/client/gui/Font;Ljava/util/List;Ljava/util/Optional;II)V net/minecraft/client/gui/GuiGraphics/renderTooltip (Lnet/minecraft/client/gui/Font;Ljava/util/List;Ljava/util/Optional;II)V +MD: net/minecraft/client/gui/GuiGraphics/m_285667_ (IIII)V net/minecraft/client/gui/GuiGraphics/lambda$renderTooltipInternal$5 (IIII)V +MD: net/minecraft/client/gui/GuiGraphics/m_285795_ (Lnet/minecraft/client/renderer/RenderType;IIIIII)V net/minecraft/client/gui/GuiGraphics/fill (Lnet/minecraft/client/renderer/RenderType;IIIIII)V +MD: net/minecraft/client/gui/GuiGraphics/m_285844_ (Lnet/minecraft/client/renderer/RenderType;IIII)V net/minecraft/client/gui/GuiGraphics/hLine (Lnet/minecraft/client/renderer/RenderType;IIII)V +MD: net/minecraft/client/gui/GuiGraphics/m_285886_ (Lnet/minecraft/client/renderer/RenderType;IIII)V net/minecraft/client/gui/GuiGraphics/vLine (Lnet/minecraft/client/renderer/RenderType;IIII)V +MD: net/minecraft/client/gui/GuiGraphics/m_285944_ (Lnet/minecraft/client/renderer/RenderType;IIIII)V net/minecraft/client/gui/GuiGraphics/fill (Lnet/minecraft/client/renderer/RenderType;IIIII)V +MD: net/minecraft/client/gui/GuiGraphics/m_285978_ (Lnet/minecraft/client/renderer/RenderType;IIIIIII)V net/minecraft/client/gui/GuiGraphics/fillGradient (Lnet/minecraft/client/renderer/RenderType;IIIIIII)V +MD: net/minecraft/client/gui/GuiGraphics/m_286007_ (Ljava/lang/Runnable;)V net/minecraft/client/gui/GuiGraphics/drawManaged (Ljava/lang/Runnable;)V +MD: net/minecraft/client/gui/GuiGraphics/m_286081_ ()V net/minecraft/client/gui/GuiGraphics/flushIfUnmanaged ()V +MD: net/minecraft/client/gui/GuiGraphics/m_287246_ ()V net/minecraft/client/gui/GuiGraphics/flushIfManaged ()V +MD: net/minecraft/client/gui/GuiGraphics$ScissorStack/ ()V net/minecraft/client/gui/GuiGraphics$ScissorStack/ ()V +MD: net/minecraft/client/gui/GuiGraphics$ScissorStack/m_280318_ (Lnet/minecraft/client/gui/navigation/ScreenRectangle;)Lnet/minecraft/client/gui/navigation/ScreenRectangle; net/minecraft/client/gui/GuiGraphics$ScissorStack/push (Lnet/minecraft/client/gui/navigation/ScreenRectangle;)Lnet/minecraft/client/gui/navigation/ScreenRectangle; +MD: net/minecraft/client/gui/GuiGraphics$ScissorStack/m_280462_ ()Lnet/minecraft/client/gui/navigation/ScreenRectangle; net/minecraft/client/gui/GuiGraphics$ScissorStack/pop ()Lnet/minecraft/client/gui/navigation/ScreenRectangle; +MD: net/minecraft/client/gui/MapRenderer/ ()V net/minecraft/client/gui/MapRenderer/ ()V +MD: net/minecraft/client/gui/MapRenderer/ (Lnet/minecraft/client/renderer/texture/TextureManager;)V net/minecraft/client/gui/MapRenderer/ (Lnet/minecraft/client/renderer/texture/TextureManager;)V +MD: net/minecraft/client/gui/MapRenderer/close ()V net/minecraft/client/gui/MapRenderer/close ()V +MD: net/minecraft/client/gui/MapRenderer/m_168765_ (ILnet/minecraft/world/level/saveddata/maps/MapItemSavedData;)V net/minecraft/client/gui/MapRenderer/update (ILnet/minecraft/world/level/saveddata/maps/MapItemSavedData;)V +MD: net/minecraft/client/gui/MapRenderer/m_168771_ (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;ILnet/minecraft/world/level/saveddata/maps/MapItemSavedData;ZI)V net/minecraft/client/gui/MapRenderer/render (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;ILnet/minecraft/world/level/saveddata/maps/MapItemSavedData;ZI)V +MD: net/minecraft/client/gui/MapRenderer/m_168778_ (ILnet/minecraft/world/level/saveddata/maps/MapItemSavedData;)Lnet/minecraft/client/gui/MapRenderer$MapInstance; net/minecraft/client/gui/MapRenderer/getOrCreateMapInstance (ILnet/minecraft/world/level/saveddata/maps/MapItemSavedData;)Lnet/minecraft/client/gui/MapRenderer$MapInstance; +MD: net/minecraft/client/gui/MapRenderer/m_182561_ (Lnet/minecraft/world/level/saveddata/maps/MapItemSavedData;Ljava/lang/Integer;Lnet/minecraft/client/gui/MapRenderer$MapInstance;)Lnet/minecraft/client/gui/MapRenderer$MapInstance; net/minecraft/client/gui/MapRenderer/lambda$getOrCreateMapInstance$0 (Lnet/minecraft/world/level/saveddata/maps/MapItemSavedData;Ljava/lang/Integer;Lnet/minecraft/client/gui/MapRenderer$MapInstance;)Lnet/minecraft/client/gui/MapRenderer$MapInstance; +MD: net/minecraft/client/gui/MapRenderer/m_93260_ ()V net/minecraft/client/gui/MapRenderer/resetData ()V +MD: net/minecraft/client/gui/MapRenderer$MapInstance/ (Lnet/minecraft/client/gui/MapRenderer;ILnet/minecraft/world/level/saveddata/maps/MapItemSavedData;)V net/minecraft/client/gui/MapRenderer$MapInstance/ (Lnet/minecraft/client/gui/MapRenderer;ILnet/minecraft/world/level/saveddata/maps/MapItemSavedData;)V +MD: net/minecraft/client/gui/MapRenderer$MapInstance/close ()V net/minecraft/client/gui/MapRenderer$MapInstance/close ()V +MD: net/minecraft/client/gui/MapRenderer$MapInstance/m_182566_ ()V net/minecraft/client/gui/MapRenderer$MapInstance/forceUpload ()V +MD: net/minecraft/client/gui/MapRenderer$MapInstance/m_182567_ (Lnet/minecraft/world/level/saveddata/maps/MapItemSavedData;)V net/minecraft/client/gui/MapRenderer$MapInstance/replaceMapData (Lnet/minecraft/world/level/saveddata/maps/MapItemSavedData;)V +MD: net/minecraft/client/gui/MapRenderer$MapInstance/m_93290_ ()V net/minecraft/client/gui/MapRenderer$MapInstance/updateTexture ()V +MD: net/minecraft/client/gui/MapRenderer$MapInstance/m_93291_ (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;ZI)V net/minecraft/client/gui/MapRenderer$MapInstance/draw (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;ZI)V +MD: net/minecraft/client/gui/components/AbstractButton/ (IIIILnet/minecraft/network/chat/Component;)V net/minecraft/client/gui/components/AbstractButton/ (IIIILnet/minecraft/network/chat/Component;)V +MD: net/minecraft/client/gui/components/AbstractButton/m_274533_ ()I net/minecraft/client/gui/components/AbstractButton/getTextureY ()I +MD: net/minecraft/client/gui/components/AbstractButton/m_280139_ (Lnet/minecraft/client/gui/GuiGraphics;Lnet/minecraft/client/gui/Font;I)V net/minecraft/client/gui/components/AbstractButton/renderString (Lnet/minecraft/client/gui/GuiGraphics;Lnet/minecraft/client/gui/Font;I)V +MD: net/minecraft/client/gui/components/AbstractButton/m_5691_ ()V net/minecraft/client/gui/components/AbstractButton/onPress ()V +MD: net/minecraft/client/gui/components/AbstractButton/m_5716_ (DD)V net/minecraft/client/gui/components/AbstractButton/onClick (DD)V +MD: net/minecraft/client/gui/components/AbstractButton/m_7933_ (III)Z net/minecraft/client/gui/components/AbstractButton/keyPressed (III)Z +MD: net/minecraft/client/gui/components/AbstractButton/m_87963_ (Lnet/minecraft/client/gui/GuiGraphics;IIF)V net/minecraft/client/gui/components/AbstractButton/renderWidget (Lnet/minecraft/client/gui/GuiGraphics;IIF)V +MD: net/minecraft/client/gui/components/AbstractOptionSliderButton/ (Lnet/minecraft/client/Options;IIIID)V net/minecraft/client/gui/components/AbstractOptionSliderButton/ (Lnet/minecraft/client/Options;IIIID)V +MD: net/minecraft/client/gui/components/AbstractScrollWidget/ (IIIILnet/minecraft/network/chat/Component;)V net/minecraft/client/gui/components/AbstractScrollWidget/ (IIIILnet/minecraft/network/chat/Component;)V +MD: net/minecraft/client/gui/components/AbstractScrollWidget/m_239019_ ()I net/minecraft/client/gui/components/AbstractScrollWidget/getInnerHeight ()I +MD: net/minecraft/client/gui/components/AbstractScrollWidget/m_239030_ ()D net/minecraft/client/gui/components/AbstractScrollWidget/scrollAmount ()D +MD: net/minecraft/client/gui/components/AbstractScrollWidget/m_239044_ ()I net/minecraft/client/gui/components/AbstractScrollWidget/getContentHeight ()I +MD: net/minecraft/client/gui/components/AbstractScrollWidget/m_239197_ (Lnet/minecraft/client/gui/GuiGraphics;IIF)V net/minecraft/client/gui/components/AbstractScrollWidget/renderContents (Lnet/minecraft/client/gui/GuiGraphics;IIF)V +MD: net/minecraft/client/gui/components/AbstractScrollWidget/m_239244_ ()I net/minecraft/client/gui/components/AbstractScrollWidget/innerPadding ()I +MD: net/minecraft/client/gui/components/AbstractScrollWidget/m_239509_ ()I net/minecraft/client/gui/components/AbstractScrollWidget/getMaxScrollAmount ()I +MD: net/minecraft/client/gui/components/AbstractScrollWidget/m_239516_ (Lnet/minecraft/client/gui/GuiGraphics;)V net/minecraft/client/gui/components/AbstractScrollWidget/renderDecorations (Lnet/minecraft/client/gui/GuiGraphics;)V +MD: net/minecraft/client/gui/components/AbstractScrollWidget/m_239606_ (DD)Z net/minecraft/client/gui/components/AbstractScrollWidget/withinContentAreaPoint (DD)Z +MD: net/minecraft/client/gui/components/AbstractScrollWidget/m_239656_ ()Z net/minecraft/client/gui/components/AbstractScrollWidget/scrollbarVisible ()Z +MD: net/minecraft/client/gui/components/AbstractScrollWidget/m_239725_ ()D net/minecraft/client/gui/components/AbstractScrollWidget/scrollRate ()D +MD: net/minecraft/client/gui/components/AbstractScrollWidget/m_239942_ (II)Z net/minecraft/client/gui/components/AbstractScrollWidget/withinContentAreaTopBottom (II)Z +MD: net/minecraft/client/gui/components/AbstractScrollWidget/m_240012_ ()I net/minecraft/client/gui/components/AbstractScrollWidget/totalInnerPadding ()I +MD: net/minecraft/client/gui/components/AbstractScrollWidget/m_240048_ (Lnet/minecraft/client/gui/GuiGraphics;)V net/minecraft/client/gui/components/AbstractScrollWidget/renderBackground (Lnet/minecraft/client/gui/GuiGraphics;)V +MD: net/minecraft/client/gui/components/AbstractScrollWidget/m_240206_ (D)V net/minecraft/client/gui/components/AbstractScrollWidget/setScrollAmount (D)V +MD: net/minecraft/client/gui/components/AbstractScrollWidget/m_240211_ ()I net/minecraft/client/gui/components/AbstractScrollWidget/getScrollBarHeight ()I +MD: net/minecraft/client/gui/components/AbstractScrollWidget/m_264041_ (Lnet/minecraft/client/gui/GuiGraphics;)V net/minecraft/client/gui/components/AbstractScrollWidget/renderScrollBar (Lnet/minecraft/client/gui/GuiGraphics;)V +MD: net/minecraft/client/gui/components/AbstractScrollWidget/m_289749_ (Lnet/minecraft/client/gui/GuiGraphics;IIII)V net/minecraft/client/gui/components/AbstractScrollWidget/renderBorder (Lnet/minecraft/client/gui/GuiGraphics;IIII)V +MD: net/minecraft/client/gui/components/AbstractScrollWidget/m_6050_ (DDD)Z net/minecraft/client/gui/components/AbstractScrollWidget/mouseScrolled (DDD)Z +MD: net/minecraft/client/gui/components/AbstractScrollWidget/m_6348_ (DDI)Z net/minecraft/client/gui/components/AbstractScrollWidget/mouseReleased (DDI)Z +MD: net/minecraft/client/gui/components/AbstractScrollWidget/m_6375_ (DDI)Z net/minecraft/client/gui/components/AbstractScrollWidget/mouseClicked (DDI)Z +MD: net/minecraft/client/gui/components/AbstractScrollWidget/m_7933_ (III)Z net/minecraft/client/gui/components/AbstractScrollWidget/keyPressed (III)Z +MD: net/minecraft/client/gui/components/AbstractScrollWidget/m_7979_ (DDIDD)Z net/minecraft/client/gui/components/AbstractScrollWidget/mouseDragged (DDIDD)Z +MD: net/minecraft/client/gui/components/AbstractScrollWidget/m_87963_ (Lnet/minecraft/client/gui/GuiGraphics;IIF)V net/minecraft/client/gui/components/AbstractScrollWidget/renderWidget (Lnet/minecraft/client/gui/GuiGraphics;IIF)V +MD: net/minecraft/client/gui/components/AbstractSelectionList/ (Lnet/minecraft/client/Minecraft;IIIII)V net/minecraft/client/gui/components/AbstractSelectionList/ (Lnet/minecraft/client/Minecraft;IIIII)V +MD: net/minecraft/client/gui/components/AbstractSelectionList/m_142684_ ()Lnet/minecraft/client/gui/narration/NarratableEntry$NarrationPriority; net/minecraft/client/gui/components/AbstractSelectionList/narrationPriority ()Lnet/minecraft/client/gui/narration/NarratableEntry$NarrationPriority; +MD: net/minecraft/client/gui/components/AbstractSelectionList/m_168790_ (Lnet/minecraft/client/gui/narration/NarrationElementOutput;Lnet/minecraft/client/gui/components/AbstractSelectionList$Entry;)V net/minecraft/client/gui/components/AbstractSelectionList/narrateListElementPosition (Lnet/minecraft/client/gui/narration/NarrationElementOutput;Lnet/minecraft/client/gui/components/AbstractSelectionList$Entry;)V +MD: net/minecraft/client/gui/components/AbstractSelectionList/m_168793_ ()I net/minecraft/client/gui/components/AbstractSelectionList/getScrollBottom ()I +MD: net/minecraft/client/gui/components/AbstractSelectionList/m_168795_ ()Lnet/minecraft/client/gui/components/AbstractSelectionList$Entry; net/minecraft/client/gui/components/AbstractSelectionList/getHovered ()Lnet/minecraft/client/gui/components/AbstractSelectionList$Entry; +MD: net/minecraft/client/gui/components/AbstractSelectionList/m_238964_ (Lnet/minecraft/client/gui/GuiGraphics;IIFIIIII)V net/minecraft/client/gui/components/AbstractSelectionList/renderItem (Lnet/minecraft/client/gui/GuiGraphics;IIFIIIII)V +MD: net/minecraft/client/gui/components/AbstractSelectionList/m_239045_ (Lnet/minecraft/client/gui/components/AbstractSelectionList$Entry;)Z net/minecraft/client/gui/components/AbstractSelectionList/removeEntryFromTop (Lnet/minecraft/client/gui/components/AbstractSelectionList$Entry;)Z +MD: net/minecraft/client/gui/components/AbstractSelectionList/m_239227_ (Lnet/minecraft/client/gui/GuiGraphics;IIF)V net/minecraft/client/gui/components/AbstractSelectionList/renderList (Lnet/minecraft/client/gui/GuiGraphics;IIF)V +MD: net/minecraft/client/gui/components/AbstractSelectionList/m_239857_ (Lnet/minecraft/client/gui/components/AbstractSelectionList$Entry;)V net/minecraft/client/gui/components/AbstractSelectionList/addEntryToTop (Lnet/minecraft/client/gui/components/AbstractSelectionList$Entry;)V +MD: net/minecraft/client/gui/components/AbstractSelectionList/m_240140_ (Lnet/minecraft/client/gui/GuiGraphics;IIIII)V net/minecraft/client/gui/components/AbstractSelectionList/renderSelection (Lnet/minecraft/client/gui/GuiGraphics;IIIII)V +MD: net/minecraft/client/gui/components/AbstractSelectionList/m_264198_ ()Lnet/minecraft/client/gui/navigation/ScreenRectangle; net/minecraft/client/gui/components/AbstractSelectionList/getRectangle ()Lnet/minecraft/client/gui/navigation/ScreenRectangle; +MD: net/minecraft/client/gui/components/AbstractSelectionList/m_264238_ (Lnet/minecraft/client/gui/navigation/ScreenDirection;Ljava/util/function/Predicate;Lnet/minecraft/client/gui/components/AbstractSelectionList$Entry;)Lnet/minecraft/client/gui/components/AbstractSelectionList$Entry; net/minecraft/client/gui/components/AbstractSelectionList/nextEntry (Lnet/minecraft/client/gui/navigation/ScreenDirection;Ljava/util/function/Predicate;Lnet/minecraft/client/gui/components/AbstractSelectionList$Entry;)Lnet/minecraft/client/gui/components/AbstractSelectionList$Entry; +MD: net/minecraft/client/gui/components/AbstractSelectionList/m_264254_ (Lnet/minecraft/client/gui/navigation/ScreenDirection;)Lnet/minecraft/client/gui/components/AbstractSelectionList$Entry; net/minecraft/client/gui/components/AbstractSelectionList/nextEntry (Lnet/minecraft/client/gui/navigation/ScreenDirection;)Lnet/minecraft/client/gui/components/AbstractSelectionList$Entry; +MD: net/minecraft/client/gui/components/AbstractSelectionList/m_264567_ ()Lnet/minecraft/client/gui/components/AbstractSelectionList$Entry; net/minecraft/client/gui/components/AbstractSelectionList/getFirstElement ()Lnet/minecraft/client/gui/components/AbstractSelectionList$Entry; +MD: net/minecraft/client/gui/components/AbstractSelectionList/m_264620_ (Lnet/minecraft/client/gui/navigation/ScreenDirection;Ljava/util/function/Predicate;)Lnet/minecraft/client/gui/components/AbstractSelectionList$Entry; net/minecraft/client/gui/components/AbstractSelectionList/nextEntry (Lnet/minecraft/client/gui/navigation/ScreenDirection;Ljava/util/function/Predicate;)Lnet/minecraft/client/gui/components/AbstractSelectionList$Entry; +MD: net/minecraft/client/gui/components/AbstractSelectionList/m_280310_ (Lnet/minecraft/client/gui/GuiGraphics;)V net/minecraft/client/gui/components/AbstractSelectionList/enableScissor (Lnet/minecraft/client/gui/GuiGraphics;)V +MD: net/minecraft/client/gui/components/AbstractSelectionList/m_5747_ ()I net/minecraft/client/gui/components/AbstractSelectionList/getRowLeft ()I +MD: net/minecraft/client/gui/components/AbstractSelectionList/m_5756_ ()I net/minecraft/client/gui/components/AbstractSelectionList/getScrollbarPosition ()I +MD: net/minecraft/client/gui/components/AbstractSelectionList/m_5759_ ()I net/minecraft/client/gui/components/AbstractSelectionList/getRowWidth ()I +MD: net/minecraft/client/gui/components/AbstractSelectionList/m_5773_ ()I net/minecraft/client/gui/components/AbstractSelectionList/getItemCount ()I +MD: net/minecraft/client/gui/components/AbstractSelectionList/m_5775_ ()I net/minecraft/client/gui/components/AbstractSelectionList/getMaxPosition ()I +MD: net/minecraft/client/gui/components/AbstractSelectionList/m_5953_ (DD)Z net/minecraft/client/gui/components/AbstractSelectionList/isMouseOver (DD)Z +MD: net/minecraft/client/gui/components/AbstractSelectionList/m_5988_ (Ljava/util/Collection;)V net/minecraft/client/gui/components/AbstractSelectionList/replaceEntries (Ljava/util/Collection;)V +MD: net/minecraft/client/gui/components/AbstractSelectionList/m_6050_ (DDD)Z net/minecraft/client/gui/components/AbstractSelectionList/mouseScrolled (DDD)Z +MD: net/minecraft/client/gui/components/AbstractSelectionList/m_6205_ (II)V net/minecraft/client/gui/components/AbstractSelectionList/clickedHeader (II)V +MD: net/minecraft/client/gui/components/AbstractSelectionList/m_6348_ (DDI)Z net/minecraft/client/gui/components/AbstractSelectionList/mouseReleased (DDI)Z +MD: net/minecraft/client/gui/components/AbstractSelectionList/m_6375_ (DDI)Z net/minecraft/client/gui/components/AbstractSelectionList/mouseClicked (DDI)Z +MD: net/minecraft/client/gui/components/AbstractSelectionList/m_6702_ ()Ljava/util/List; net/minecraft/client/gui/components/AbstractSelectionList/children ()Ljava/util/List; +MD: net/minecraft/client/gui/components/AbstractSelectionList/m_6987_ (Lnet/minecraft/client/gui/components/AbstractSelectionList$Entry;)V net/minecraft/client/gui/components/AbstractSelectionList/setSelected (Lnet/minecraft/client/gui/components/AbstractSelectionList$Entry;)V +MD: net/minecraft/client/gui/components/AbstractSelectionList/m_7085_ (Lnet/minecraft/client/gui/components/AbstractSelectionList$Entry;)I net/minecraft/client/gui/components/AbstractSelectionList/addEntry (Lnet/minecraft/client/gui/components/AbstractSelectionList$Entry;)I +MD: net/minecraft/client/gui/components/AbstractSelectionList/m_7154_ (Lnet/minecraft/client/gui/GuiGraphics;II)V net/minecraft/client/gui/components/AbstractSelectionList/renderDecorations (Lnet/minecraft/client/gui/GuiGraphics;II)V +MD: net/minecraft/client/gui/components/AbstractSelectionList/m_7222_ ()Lnet/minecraft/client/gui/components/AbstractSelectionList$Entry; net/minecraft/client/gui/components/AbstractSelectionList/getFocused ()Lnet/minecraft/client/gui/components/AbstractSelectionList$Entry; +MD: net/minecraft/client/gui/components/AbstractSelectionList/m_7222_ ()Lnet/minecraft/client/gui/components/events/GuiEventListener; net/minecraft/client/gui/components/AbstractSelectionList/getFocused ()Lnet/minecraft/client/gui/components/events/GuiEventListener; +MD: net/minecraft/client/gui/components/AbstractSelectionList/m_7415_ (Lnet/minecraft/client/gui/GuiGraphics;II)V net/minecraft/client/gui/components/AbstractSelectionList/renderHeader (Lnet/minecraft/client/gui/GuiGraphics;II)V +MD: net/minecraft/client/gui/components/AbstractSelectionList/m_7522_ (Lnet/minecraft/client/gui/components/events/GuiEventListener;)V net/minecraft/client/gui/components/AbstractSelectionList/setFocused (Lnet/minecraft/client/gui/components/events/GuiEventListener;)V +MD: net/minecraft/client/gui/components/AbstractSelectionList/m_7610_ (I)I net/minecraft/client/gui/components/AbstractSelectionList/getRowTop (I)I +MD: net/minecraft/client/gui/components/AbstractSelectionList/m_7733_ (Lnet/minecraft/client/gui/GuiGraphics;)V net/minecraft/client/gui/components/AbstractSelectionList/renderBackground (Lnet/minecraft/client/gui/GuiGraphics;)V +MD: net/minecraft/client/gui/components/AbstractSelectionList/m_7979_ (DDIDD)Z net/minecraft/client/gui/components/AbstractSelectionList/mouseDragged (DDIDD)Z +MD: net/minecraft/client/gui/components/AbstractSelectionList/m_7987_ (I)Z net/minecraft/client/gui/components/AbstractSelectionList/isSelectedItem (I)Z +MD: net/minecraft/client/gui/components/AbstractSelectionList/m_88315_ (Lnet/minecraft/client/gui/GuiGraphics;IIF)V net/minecraft/client/gui/components/AbstractSelectionList/render (Lnet/minecraft/client/gui/GuiGraphics;IIF)V +MD: net/minecraft/client/gui/components/AbstractSelectionList/m_93410_ (D)V net/minecraft/client/gui/components/AbstractSelectionList/setScrollAmount (D)V +MD: net/minecraft/client/gui/components/AbstractSelectionList/m_93412_ (DD)Lnet/minecraft/client/gui/components/AbstractSelectionList$Entry; net/minecraft/client/gui/components/AbstractSelectionList/getEntryAtPosition (DD)Lnet/minecraft/client/gui/components/AbstractSelectionList$Entry; +MD: net/minecraft/client/gui/components/AbstractSelectionList/m_93429_ (I)V net/minecraft/client/gui/components/AbstractSelectionList/scroll (I)V +MD: net/minecraft/client/gui/components/AbstractSelectionList/m_93437_ (IIII)V net/minecraft/client/gui/components/AbstractSelectionList/updateSize (IIII)V +MD: net/minecraft/client/gui/components/AbstractSelectionList/m_93471_ (Z)V net/minecraft/client/gui/components/AbstractSelectionList/setRenderSelection (Z)V +MD: net/minecraft/client/gui/components/AbstractSelectionList/m_93473_ (ZI)V net/minecraft/client/gui/components/AbstractSelectionList/setRenderHeader (ZI)V +MD: net/minecraft/client/gui/components/AbstractSelectionList/m_93481_ (DDI)V net/minecraft/client/gui/components/AbstractSelectionList/updateScrollingState (DDI)V +MD: net/minecraft/client/gui/components/AbstractSelectionList/m_93485_ (I)I net/minecraft/client/gui/components/AbstractSelectionList/getRowBottom (I)I +MD: net/minecraft/client/gui/components/AbstractSelectionList/m_93488_ (Z)V net/minecraft/client/gui/components/AbstractSelectionList/setRenderBackground (Z)V +MD: net/minecraft/client/gui/components/AbstractSelectionList/m_93494_ (Lnet/minecraft/client/gui/components/AbstractSelectionList$Entry;)V net/minecraft/client/gui/components/AbstractSelectionList/centerScrollOn (Lnet/minecraft/client/gui/components/AbstractSelectionList$Entry;)V +MD: net/minecraft/client/gui/components/AbstractSelectionList/m_93496_ (Z)V net/minecraft/client/gui/components/AbstractSelectionList/setRenderTopAndBottom (Z)V +MD: net/minecraft/client/gui/components/AbstractSelectionList/m_93498_ (Lnet/minecraft/client/gui/components/AbstractSelectionList$Entry;)V net/minecraft/client/gui/components/AbstractSelectionList/ensureVisible (Lnet/minecraft/client/gui/components/AbstractSelectionList$Entry;)V +MD: net/minecraft/client/gui/components/AbstractSelectionList/m_93500_ (I)Lnet/minecraft/client/gui/components/AbstractSelectionList$Entry; net/minecraft/client/gui/components/AbstractSelectionList/getEntry (I)Lnet/minecraft/client/gui/components/AbstractSelectionList$Entry; +MD: net/minecraft/client/gui/components/AbstractSelectionList/m_93502_ (Lnet/minecraft/client/gui/components/AbstractSelectionList$Entry;)Z net/minecraft/client/gui/components/AbstractSelectionList/removeEntry (Lnet/minecraft/client/gui/components/AbstractSelectionList$Entry;)Z +MD: net/minecraft/client/gui/components/AbstractSelectionList/m_93505_ (Lnet/minecraft/client/gui/components/AbstractSelectionList$Entry;)V net/minecraft/client/gui/components/AbstractSelectionList/bindEntryToSelf (Lnet/minecraft/client/gui/components/AbstractSelectionList$Entry;)V +MD: net/minecraft/client/gui/components/AbstractSelectionList/m_93507_ (I)V net/minecraft/client/gui/components/AbstractSelectionList/setLeftPos (I)V +MD: net/minecraft/client/gui/components/AbstractSelectionList/m_93509_ (Lnet/minecraft/client/gui/components/AbstractSelectionList$Entry;)Z net/minecraft/client/gui/components/AbstractSelectionList/lambda$nextEntry$0 (Lnet/minecraft/client/gui/components/AbstractSelectionList$Entry;)Z +MD: net/minecraft/client/gui/components/AbstractSelectionList/m_93511_ ()Lnet/minecraft/client/gui/components/AbstractSelectionList$Entry; net/minecraft/client/gui/components/AbstractSelectionList/getSelected ()Lnet/minecraft/client/gui/components/AbstractSelectionList$Entry; +MD: net/minecraft/client/gui/components/AbstractSelectionList/m_93514_ (I)Lnet/minecraft/client/gui/components/AbstractSelectionList$Entry; net/minecraft/client/gui/components/AbstractSelectionList/remove (I)Lnet/minecraft/client/gui/components/AbstractSelectionList$Entry; +MD: net/minecraft/client/gui/components/AbstractSelectionList/m_93516_ ()V net/minecraft/client/gui/components/AbstractSelectionList/clearEntries ()V +MD: net/minecraft/client/gui/components/AbstractSelectionList/m_93517_ ()D net/minecraft/client/gui/components/AbstractSelectionList/getScrollAmount ()D +MD: net/minecraft/client/gui/components/AbstractSelectionList/m_93518_ ()I net/minecraft/client/gui/components/AbstractSelectionList/getMaxScroll ()I +MD: net/minecraft/client/gui/components/AbstractSelectionList/m_93520_ ()I net/minecraft/client/gui/components/AbstractSelectionList/getRowRight ()I +MD: net/minecraft/client/gui/components/AbstractSelectionList$1/ ()V net/minecraft/client/gui/components/AbstractSelectionList$1/ ()V +MD: net/minecraft/client/gui/components/AbstractSelectionList$Entry/ ()V net/minecraft/client/gui/components/AbstractSelectionList$Entry/ ()V +MD: net/minecraft/client/gui/components/AbstractSelectionList$Entry/m_274437_ (Lnet/minecraft/client/gui/GuiGraphics;IIIIIIIZF)V net/minecraft/client/gui/components/AbstractSelectionList$Entry/renderBack (Lnet/minecraft/client/gui/GuiGraphics;IIIIIIIZF)V +MD: net/minecraft/client/gui/components/AbstractSelectionList$Entry/m_5953_ (DD)Z net/minecraft/client/gui/components/AbstractSelectionList$Entry/isMouseOver (DD)Z +MD: net/minecraft/client/gui/components/AbstractSelectionList$Entry/m_6311_ (Lnet/minecraft/client/gui/GuiGraphics;IIIIIIIZF)V net/minecraft/client/gui/components/AbstractSelectionList$Entry/render (Lnet/minecraft/client/gui/GuiGraphics;IIIIIIIZF)V +MD: net/minecraft/client/gui/components/AbstractSelectionList$Entry/m_93692_ (Z)V net/minecraft/client/gui/components/AbstractSelectionList$Entry/setFocused (Z)V +MD: net/minecraft/client/gui/components/AbstractSelectionList$Entry/m_93696_ ()Z net/minecraft/client/gui/components/AbstractSelectionList$Entry/isFocused ()Z +MD: net/minecraft/client/gui/components/AbstractSelectionList$TrackedList/ (Lnet/minecraft/client/gui/components/AbstractSelectionList;)V net/minecraft/client/gui/components/AbstractSelectionList$TrackedList/ (Lnet/minecraft/client/gui/components/AbstractSelectionList;)V +MD: net/minecraft/client/gui/components/AbstractSelectionList$TrackedList/add (ILjava/lang/Object;)V net/minecraft/client/gui/components/AbstractSelectionList$TrackedList/add (ILjava/lang/Object;)V +MD: net/minecraft/client/gui/components/AbstractSelectionList$TrackedList/add (ILnet/minecraft/client/gui/components/AbstractSelectionList$Entry;)V net/minecraft/client/gui/components/AbstractSelectionList$TrackedList/add (ILnet/minecraft/client/gui/components/AbstractSelectionList$Entry;)V +MD: net/minecraft/client/gui/components/AbstractSelectionList$TrackedList/get (I)Lnet/minecraft/client/gui/components/AbstractSelectionList$Entry; net/minecraft/client/gui/components/AbstractSelectionList$TrackedList/get (I)Lnet/minecraft/client/gui/components/AbstractSelectionList$Entry; +MD: net/minecraft/client/gui/components/AbstractSelectionList$TrackedList/get (I)Ljava/lang/Object; net/minecraft/client/gui/components/AbstractSelectionList$TrackedList/get (I)Ljava/lang/Object; +MD: net/minecraft/client/gui/components/AbstractSelectionList$TrackedList/remove (I)Ljava/lang/Object; net/minecraft/client/gui/components/AbstractSelectionList$TrackedList/remove (I)Ljava/lang/Object; +MD: net/minecraft/client/gui/components/AbstractSelectionList$TrackedList/remove (I)Lnet/minecraft/client/gui/components/AbstractSelectionList$Entry; net/minecraft/client/gui/components/AbstractSelectionList$TrackedList/remove (I)Lnet/minecraft/client/gui/components/AbstractSelectionList$Entry; +MD: net/minecraft/client/gui/components/AbstractSelectionList$TrackedList/set (ILnet/minecraft/client/gui/components/AbstractSelectionList$Entry;)Lnet/minecraft/client/gui/components/AbstractSelectionList$Entry; net/minecraft/client/gui/components/AbstractSelectionList$TrackedList/set (ILnet/minecraft/client/gui/components/AbstractSelectionList$Entry;)Lnet/minecraft/client/gui/components/AbstractSelectionList$Entry; +MD: net/minecraft/client/gui/components/AbstractSelectionList$TrackedList/set (ILjava/lang/Object;)Ljava/lang/Object; net/minecraft/client/gui/components/AbstractSelectionList$TrackedList/set (ILjava/lang/Object;)Ljava/lang/Object; +MD: net/minecraft/client/gui/components/AbstractSelectionList$TrackedList/size ()I net/minecraft/client/gui/components/AbstractSelectionList$TrackedList/size ()I +MD: net/minecraft/client/gui/components/AbstractSliderButton/ ()V net/minecraft/client/gui/components/AbstractSliderButton/ ()V +MD: net/minecraft/client/gui/components/AbstractSliderButton/ (IIIILnet/minecraft/network/chat/Component;D)V net/minecraft/client/gui/components/AbstractSliderButton/ (IIIILnet/minecraft/network/chat/Component;D)V +MD: net/minecraft/client/gui/components/AbstractSliderButton/m_168797_ (Lnet/minecraft/client/gui/narration/NarrationElementOutput;)V net/minecraft/client/gui/components/AbstractSliderButton/updateWidgetNarration (Lnet/minecraft/client/gui/narration/NarrationElementOutput;)V +MD: net/minecraft/client/gui/components/AbstractSliderButton/m_264270_ ()I net/minecraft/client/gui/components/AbstractSliderButton/getHandleTextureY ()I +MD: net/minecraft/client/gui/components/AbstractSliderButton/m_264355_ ()I net/minecraft/client/gui/components/AbstractSliderButton/getTextureY ()I +MD: net/minecraft/client/gui/components/AbstractSliderButton/m_5646_ ()Lnet/minecraft/network/chat/MutableComponent; net/minecraft/client/gui/components/AbstractSliderButton/createNarrationMessage ()Lnet/minecraft/network/chat/MutableComponent; +MD: net/minecraft/client/gui/components/AbstractSliderButton/m_5695_ ()V net/minecraft/client/gui/components/AbstractSliderButton/updateMessage ()V +MD: net/minecraft/client/gui/components/AbstractSliderButton/m_5697_ ()V net/minecraft/client/gui/components/AbstractSliderButton/applyValue ()V +MD: net/minecraft/client/gui/components/AbstractSliderButton/m_5716_ (DD)V net/minecraft/client/gui/components/AbstractSliderButton/onClick (DD)V +MD: net/minecraft/client/gui/components/AbstractSliderButton/m_7212_ (DDDD)V net/minecraft/client/gui/components/AbstractSliderButton/onDrag (DDDD)V +MD: net/minecraft/client/gui/components/AbstractSliderButton/m_7435_ (Lnet/minecraft/client/sounds/SoundManager;)V net/minecraft/client/gui/components/AbstractSliderButton/playDownSound (Lnet/minecraft/client/sounds/SoundManager;)V +MD: net/minecraft/client/gui/components/AbstractSliderButton/m_7691_ (DD)V net/minecraft/client/gui/components/AbstractSliderButton/onRelease (DD)V +MD: net/minecraft/client/gui/components/AbstractSliderButton/m_7933_ (III)Z net/minecraft/client/gui/components/AbstractSliderButton/keyPressed (III)Z +MD: net/minecraft/client/gui/components/AbstractSliderButton/m_87963_ (Lnet/minecraft/client/gui/GuiGraphics;IIF)V net/minecraft/client/gui/components/AbstractSliderButton/renderWidget (Lnet/minecraft/client/gui/GuiGraphics;IIF)V +MD: net/minecraft/client/gui/components/AbstractSliderButton/m_93585_ (D)V net/minecraft/client/gui/components/AbstractSliderButton/setValueFromMouse (D)V +MD: net/minecraft/client/gui/components/AbstractSliderButton/m_93611_ (D)V net/minecraft/client/gui/components/AbstractSliderButton/setValue (D)V +MD: net/minecraft/client/gui/components/AbstractSliderButton/m_93692_ (Z)V net/minecraft/client/gui/components/AbstractSliderButton/setFocused (Z)V +MD: net/minecraft/client/gui/components/AbstractStringWidget/ (IIIILnet/minecraft/network/chat/Component;Lnet/minecraft/client/gui/Font;)V net/minecraft/client/gui/components/AbstractStringWidget/ (IIIILnet/minecraft/network/chat/Component;Lnet/minecraft/client/gui/Font;)V +MD: net/minecraft/client/gui/components/AbstractStringWidget/m_168797_ (Lnet/minecraft/client/gui/narration/NarrationElementOutput;)V net/minecraft/client/gui/components/AbstractStringWidget/updateWidgetNarration (Lnet/minecraft/client/gui/narration/NarrationElementOutput;)V +MD: net/minecraft/client/gui/components/AbstractStringWidget/m_269033_ (I)Lnet/minecraft/client/gui/components/AbstractStringWidget; net/minecraft/client/gui/components/AbstractStringWidget/setColor (I)Lnet/minecraft/client/gui/components/AbstractStringWidget; +MD: net/minecraft/client/gui/components/AbstractStringWidget/m_269100_ ()Lnet/minecraft/client/gui/Font; net/minecraft/client/gui/components/AbstractStringWidget/getFont ()Lnet/minecraft/client/gui/Font; +MD: net/minecraft/client/gui/components/AbstractStringWidget/m_269468_ ()I net/minecraft/client/gui/components/AbstractStringWidget/getColor ()I +MD: net/minecraft/client/gui/components/AbstractWidget/ ()V net/minecraft/client/gui/components/AbstractWidget/ ()V +MD: net/minecraft/client/gui/components/AbstractWidget/ (IIIILnet/minecraft/network/chat/Component;)V net/minecraft/client/gui/components/AbstractWidget/ (IIIILnet/minecraft/network/chat/Component;)V +MD: net/minecraft/client/gui/components/AbstractWidget/m_142291_ (Lnet/minecraft/client/gui/narration/NarrationElementOutput;)V net/minecraft/client/gui/components/AbstractWidget/updateNarration (Lnet/minecraft/client/gui/narration/NarrationElementOutput;)V +MD: net/minecraft/client/gui/components/AbstractWidget/m_142518_ ()Z net/minecraft/client/gui/components/AbstractWidget/isActive ()Z +MD: net/minecraft/client/gui/components/AbstractWidget/m_142684_ ()Lnet/minecraft/client/gui/narration/NarratableEntry$NarrationPriority; net/minecraft/client/gui/components/AbstractWidget/narrationPriority ()Lnet/minecraft/client/gui/narration/NarratableEntry$NarrationPriority; +MD: net/minecraft/client/gui/components/AbstractWidget/m_168797_ (Lnet/minecraft/client/gui/narration/NarrationElementOutput;)V net/minecraft/client/gui/components/AbstractWidget/updateWidgetNarration (Lnet/minecraft/client/gui/narration/NarrationElementOutput;)V +MD: net/minecraft/client/gui/components/AbstractWidget/m_168799_ (Lnet/minecraft/network/chat/Component;)Lnet/minecraft/network/chat/MutableComponent; net/minecraft/client/gui/components/AbstractWidget/wrapDefaultNarrationMessage (Lnet/minecraft/network/chat/Component;)Lnet/minecraft/network/chat/MutableComponent; +MD: net/minecraft/client/gui/components/AbstractWidget/m_168802_ (Lnet/minecraft/client/gui/narration/NarrationElementOutput;)V net/minecraft/client/gui/components/AbstractWidget/defaultButtonNarrationText (Lnet/minecraft/client/gui/narration/NarrationElementOutput;)V +MD: net/minecraft/client/gui/components/AbstractWidget/m_198029_ ()Z net/minecraft/client/gui/components/AbstractWidget/isHoveredOrFocused ()Z +MD: net/minecraft/client/gui/components/AbstractWidget/m_252754_ ()I net/minecraft/client/gui/components/AbstractWidget/getX ()I +MD: net/minecraft/client/gui/components/AbstractWidget/m_252865_ (I)V net/minecraft/client/gui/components/AbstractWidget/setX (I)V +MD: net/minecraft/client/gui/components/AbstractWidget/m_252907_ ()I net/minecraft/client/gui/components/AbstractWidget/getY ()I +MD: net/minecraft/client/gui/components/AbstractWidget/m_253211_ (I)V net/minecraft/client/gui/components/AbstractWidget/setY (I)V +MD: net/minecraft/client/gui/components/AbstractWidget/m_257427_ (I)V net/minecraft/client/gui/components/AbstractWidget/setTooltipDelay (I)V +MD: net/minecraft/client/gui/components/AbstractWidget/m_257544_ (Lnet/minecraft/client/gui/components/Tooltip;)V net/minecraft/client/gui/components/AbstractWidget/setTooltip (Lnet/minecraft/client/gui/components/Tooltip;)V +MD: net/minecraft/client/gui/components/AbstractWidget/m_257936_ ()V net/minecraft/client/gui/components/AbstractWidget/updateTooltip ()V +MD: net/minecraft/client/gui/components/AbstractWidget/m_262860_ ()Lnet/minecraft/client/gui/screens/inventory/tooltip/ClientTooltipPositioner; net/minecraft/client/gui/components/AbstractWidget/createTooltipPositioner ()Lnet/minecraft/client/gui/screens/inventory/tooltip/ClientTooltipPositioner; +MD: net/minecraft/client/gui/components/AbstractWidget/m_264064_ (Lnet/minecraft/client/gui/navigation/FocusNavigationEvent;)Lnet/minecraft/client/gui/ComponentPath; net/minecraft/client/gui/components/AbstractWidget/nextFocusPath (Lnet/minecraft/client/gui/navigation/FocusNavigationEvent;)Lnet/minecraft/client/gui/ComponentPath; +MD: net/minecraft/client/gui/components/AbstractWidget/m_264134_ (Ljava/util/function/Consumer;)V net/minecraft/client/gui/components/AbstractWidget/visitWidgets (Ljava/util/function/Consumer;)V +MD: net/minecraft/client/gui/components/AbstractWidget/m_264198_ ()Lnet/minecraft/client/gui/navigation/ScreenRectangle; net/minecraft/client/gui/components/AbstractWidget/getRectangle ()Lnet/minecraft/client/gui/navigation/ScreenRectangle; +MD: net/minecraft/client/gui/components/AbstractWidget/m_267579_ ()I net/minecraft/client/gui/components/AbstractWidget/getTabOrderGroup ()I +MD: net/minecraft/client/gui/components/AbstractWidget/m_267708_ (I)V net/minecraft/client/gui/components/AbstractWidget/setTabOrderGroup (I)V +MD: net/minecraft/client/gui/components/AbstractWidget/m_274382_ ()Z net/minecraft/client/gui/components/AbstractWidget/isHovered ()Z +MD: net/minecraft/client/gui/components/AbstractWidget/m_278622_ ()Lnet/minecraft/client/gui/components/Tooltip; net/minecraft/client/gui/components/AbstractWidget/getTooltip ()Lnet/minecraft/client/gui/components/Tooltip; +MD: net/minecraft/client/gui/components/AbstractWidget/m_280138_ (Lnet/minecraft/client/gui/GuiGraphics;Lnet/minecraft/client/gui/Font;Lnet/minecraft/network/chat/Component;IIIII)V net/minecraft/client/gui/components/AbstractWidget/renderScrollingString (Lnet/minecraft/client/gui/GuiGraphics;Lnet/minecraft/client/gui/Font;Lnet/minecraft/network/chat/Component;IIIII)V +MD: net/minecraft/client/gui/components/AbstractWidget/m_280322_ (Lnet/minecraft/client/gui/GuiGraphics;Lnet/minecraft/resources/ResourceLocation;IIIIIIIII)V net/minecraft/client/gui/components/AbstractWidget/renderTexture (Lnet/minecraft/client/gui/GuiGraphics;Lnet/minecraft/resources/ResourceLocation;IIIIIIIII)V +MD: net/minecraft/client/gui/components/AbstractWidget/m_280372_ (Lnet/minecraft/client/gui/GuiGraphics;Lnet/minecraft/client/gui/Font;II)V net/minecraft/client/gui/components/AbstractWidget/renderScrollingString (Lnet/minecraft/client/gui/GuiGraphics;Lnet/minecraft/client/gui/Font;II)V +MD: net/minecraft/client/gui/components/AbstractWidget/m_5646_ ()Lnet/minecraft/network/chat/MutableComponent; net/minecraft/client/gui/components/AbstractWidget/createNarrationMessage ()Lnet/minecraft/network/chat/MutableComponent; +MD: net/minecraft/client/gui/components/AbstractWidget/m_5711_ ()I net/minecraft/client/gui/components/AbstractWidget/getWidth ()I +MD: net/minecraft/client/gui/components/AbstractWidget/m_5716_ (DD)V net/minecraft/client/gui/components/AbstractWidget/onClick (DD)V +MD: net/minecraft/client/gui/components/AbstractWidget/m_5953_ (DD)Z net/minecraft/client/gui/components/AbstractWidget/isMouseOver (DD)Z +MD: net/minecraft/client/gui/components/AbstractWidget/m_6035_ ()Lnet/minecraft/network/chat/Component; net/minecraft/client/gui/components/AbstractWidget/getMessage ()Lnet/minecraft/network/chat/Component; +MD: net/minecraft/client/gui/components/AbstractWidget/m_6348_ (DDI)Z net/minecraft/client/gui/components/AbstractWidget/mouseReleased (DDI)Z +MD: net/minecraft/client/gui/components/AbstractWidget/m_6375_ (DDI)Z net/minecraft/client/gui/components/AbstractWidget/mouseClicked (DDI)Z +MD: net/minecraft/client/gui/components/AbstractWidget/m_7212_ (DDDD)V net/minecraft/client/gui/components/AbstractWidget/onDrag (DDDD)V +MD: net/minecraft/client/gui/components/AbstractWidget/m_7435_ (Lnet/minecraft/client/sounds/SoundManager;)V net/minecraft/client/gui/components/AbstractWidget/playDownSound (Lnet/minecraft/client/sounds/SoundManager;)V +MD: net/minecraft/client/gui/components/AbstractWidget/m_7691_ (DD)V net/minecraft/client/gui/components/AbstractWidget/onRelease (DD)V +MD: net/minecraft/client/gui/components/AbstractWidget/m_7972_ (I)Z net/minecraft/client/gui/components/AbstractWidget/isValidClickButton (I)Z +MD: net/minecraft/client/gui/components/AbstractWidget/m_7979_ (DDIDD)Z net/minecraft/client/gui/components/AbstractWidget/mouseDragged (DDIDD)Z +MD: net/minecraft/client/gui/components/AbstractWidget/m_87963_ (Lnet/minecraft/client/gui/GuiGraphics;IIF)V net/minecraft/client/gui/components/AbstractWidget/renderWidget (Lnet/minecraft/client/gui/GuiGraphics;IIF)V +MD: net/minecraft/client/gui/components/AbstractWidget/m_88315_ (Lnet/minecraft/client/gui/GuiGraphics;IIF)V net/minecraft/client/gui/components/AbstractWidget/render (Lnet/minecraft/client/gui/GuiGraphics;IIF)V +MD: net/minecraft/client/gui/components/AbstractWidget/m_93650_ (F)V net/minecraft/client/gui/components/AbstractWidget/setAlpha (F)V +MD: net/minecraft/client/gui/components/AbstractWidget/m_93666_ (Lnet/minecraft/network/chat/Component;)V net/minecraft/client/gui/components/AbstractWidget/setMessage (Lnet/minecraft/network/chat/Component;)V +MD: net/minecraft/client/gui/components/AbstractWidget/m_93674_ (I)V net/minecraft/client/gui/components/AbstractWidget/setWidth (I)V +MD: net/minecraft/client/gui/components/AbstractWidget/m_93680_ (DD)Z net/minecraft/client/gui/components/AbstractWidget/clicked (DD)Z +MD: net/minecraft/client/gui/components/AbstractWidget/m_93692_ (Z)V net/minecraft/client/gui/components/AbstractWidget/setFocused (Z)V +MD: net/minecraft/client/gui/components/AbstractWidget/m_93694_ ()I net/minecraft/client/gui/components/AbstractWidget/getHeight ()I +MD: net/minecraft/client/gui/components/AbstractWidget/m_93696_ ()Z net/minecraft/client/gui/components/AbstractWidget/isFocused ()Z +MD: net/minecraft/client/gui/components/AccessibilityOnboardingTextWidget/ (Lnet/minecraft/client/gui/Font;Lnet/minecraft/network/chat/Component;I)V net/minecraft/client/gui/components/AccessibilityOnboardingTextWidget/ (Lnet/minecraft/client/gui/Font;Lnet/minecraft/network/chat/Component;I)V +MD: net/minecraft/client/gui/components/AccessibilityOnboardingTextWidget/m_168797_ (Lnet/minecraft/client/gui/narration/NarrationElementOutput;)V net/minecraft/client/gui/components/AccessibilityOnboardingTextWidget/updateWidgetNarration (Lnet/minecraft/client/gui/narration/NarrationElementOutput;)V +MD: net/minecraft/client/gui/components/AccessibilityOnboardingTextWidget/m_7435_ (Lnet/minecraft/client/sounds/SoundManager;)V net/minecraft/client/gui/components/AccessibilityOnboardingTextWidget/playDownSound (Lnet/minecraft/client/sounds/SoundManager;)V +MD: net/minecraft/client/gui/components/AccessibilityOnboardingTextWidget/m_87963_ (Lnet/minecraft/client/gui/GuiGraphics;IIF)V net/minecraft/client/gui/components/AccessibilityOnboardingTextWidget/renderWidget (Lnet/minecraft/client/gui/GuiGraphics;IIF)V +MD: net/minecraft/client/gui/components/BossHealthOverlay/ ()V net/minecraft/client/gui/components/BossHealthOverlay/ ()V +MD: net/minecraft/client/gui/components/BossHealthOverlay/ (Lnet/minecraft/client/Minecraft;)V net/minecraft/client/gui/components/BossHealthOverlay/ (Lnet/minecraft/client/Minecraft;)V +MD: net/minecraft/client/gui/components/BossHealthOverlay/m_280093_ (Lnet/minecraft/client/gui/GuiGraphics;IILnet/minecraft/world/BossEvent;II)V net/minecraft/client/gui/components/BossHealthOverlay/drawBar (Lnet/minecraft/client/gui/GuiGraphics;IILnet/minecraft/world/BossEvent;II)V +MD: net/minecraft/client/gui/components/BossHealthOverlay/m_280106_ (Lnet/minecraft/client/gui/GuiGraphics;IILnet/minecraft/world/BossEvent;)V net/minecraft/client/gui/components/BossHealthOverlay/drawBar (Lnet/minecraft/client/gui/GuiGraphics;IILnet/minecraft/world/BossEvent;)V +MD: net/minecraft/client/gui/components/BossHealthOverlay/m_280652_ (Lnet/minecraft/client/gui/GuiGraphics;)V net/minecraft/client/gui/components/BossHealthOverlay/render (Lnet/minecraft/client/gui/GuiGraphics;)V +MD: net/minecraft/client/gui/components/BossHealthOverlay/m_93703_ ()V net/minecraft/client/gui/components/BossHealthOverlay/reset ()V +MD: net/minecraft/client/gui/components/BossHealthOverlay/m_93711_ (Lnet/minecraft/network/protocol/game/ClientboundBossEventPacket;)V net/minecraft/client/gui/components/BossHealthOverlay/update (Lnet/minecraft/network/protocol/game/ClientboundBossEventPacket;)V +MD: net/minecraft/client/gui/components/BossHealthOverlay/m_93713_ ()Z net/minecraft/client/gui/components/BossHealthOverlay/shouldPlayMusic ()Z +MD: net/minecraft/client/gui/components/BossHealthOverlay/m_93714_ ()Z net/minecraft/client/gui/components/BossHealthOverlay/shouldDarkenScreen ()Z +MD: net/minecraft/client/gui/components/BossHealthOverlay/m_93715_ ()Z net/minecraft/client/gui/components/BossHealthOverlay/shouldCreateWorldFog ()Z +MD: net/minecraft/client/gui/components/BossHealthOverlay$1/ (Lnet/minecraft/client/gui/components/BossHealthOverlay;)V net/minecraft/client/gui/components/BossHealthOverlay$1/ (Lnet/minecraft/client/gui/components/BossHealthOverlay;)V +MD: net/minecraft/client/gui/components/BossHealthOverlay$1/m_142107_ (Ljava/util/UUID;Lnet/minecraft/network/chat/Component;FLnet/minecraft/world/BossEvent$BossBarColor;Lnet/minecraft/world/BossEvent$BossBarOverlay;ZZZ)V net/minecraft/client/gui/components/BossHealthOverlay$1/add (Ljava/util/UUID;Lnet/minecraft/network/chat/Component;FLnet/minecraft/world/BossEvent$BossBarColor;Lnet/minecraft/world/BossEvent$BossBarOverlay;ZZZ)V +MD: net/minecraft/client/gui/components/BossHealthOverlay$1/m_142358_ (Ljava/util/UUID;Lnet/minecraft/world/BossEvent$BossBarColor;Lnet/minecraft/world/BossEvent$BossBarOverlay;)V net/minecraft/client/gui/components/BossHealthOverlay$1/updateStyle (Ljava/util/UUID;Lnet/minecraft/world/BossEvent$BossBarColor;Lnet/minecraft/world/BossEvent$BossBarOverlay;)V +MD: net/minecraft/client/gui/components/BossHealthOverlay$1/m_142366_ (Ljava/util/UUID;Lnet/minecraft/network/chat/Component;)V net/minecraft/client/gui/components/BossHealthOverlay$1/updateName (Ljava/util/UUID;Lnet/minecraft/network/chat/Component;)V +MD: net/minecraft/client/gui/components/BossHealthOverlay$1/m_142513_ (Ljava/util/UUID;ZZZ)V net/minecraft/client/gui/components/BossHealthOverlay$1/updateProperties (Ljava/util/UUID;ZZZ)V +MD: net/minecraft/client/gui/components/BossHealthOverlay$1/m_142653_ (Ljava/util/UUID;F)V net/minecraft/client/gui/components/BossHealthOverlay$1/updateProgress (Ljava/util/UUID;F)V +MD: net/minecraft/client/gui/components/BossHealthOverlay$1/m_142751_ (Ljava/util/UUID;)V net/minecraft/client/gui/components/BossHealthOverlay$1/remove (Ljava/util/UUID;)V +MD: net/minecraft/client/gui/components/Button/ ()V net/minecraft/client/gui/components/Button/ ()V +MD: net/minecraft/client/gui/components/Button/ (IIIILnet/minecraft/network/chat/Component;Lnet/minecraft/client/gui/components/Button$OnPress;Lnet/minecraft/client/gui/components/Button$CreateNarration;)V net/minecraft/client/gui/components/Button/ (IIIILnet/minecraft/network/chat/Component;Lnet/minecraft/client/gui/components/Button$OnPress;Lnet/minecraft/client/gui/components/Button$CreateNarration;)V +MD: net/minecraft/client/gui/components/Button/m_168797_ (Lnet/minecraft/client/gui/narration/NarrationElementOutput;)V net/minecraft/client/gui/components/Button/updateWidgetNarration (Lnet/minecraft/client/gui/narration/NarrationElementOutput;)V +MD: net/minecraft/client/gui/components/Button/m_252557_ (Ljava/util/function/Supplier;)Lnet/minecraft/network/chat/MutableComponent; net/minecraft/client/gui/components/Button/lambda$static$0 (Ljava/util/function/Supplier;)Lnet/minecraft/network/chat/MutableComponent; +MD: net/minecraft/client/gui/components/Button/m_253074_ (Lnet/minecraft/network/chat/Component;Lnet/minecraft/client/gui/components/Button$OnPress;)Lnet/minecraft/client/gui/components/Button$Builder; net/minecraft/client/gui/components/Button/builder (Lnet/minecraft/network/chat/Component;Lnet/minecraft/client/gui/components/Button$OnPress;)Lnet/minecraft/client/gui/components/Button$Builder; +MD: net/minecraft/client/gui/components/Button/m_289584_ ()Lnet/minecraft/network/chat/MutableComponent; net/minecraft/client/gui/components/Button/lambda$createNarrationMessage$1 ()Lnet/minecraft/network/chat/MutableComponent; +MD: net/minecraft/client/gui/components/Button/m_5646_ ()Lnet/minecraft/network/chat/MutableComponent; net/minecraft/client/gui/components/Button/createNarrationMessage ()Lnet/minecraft/network/chat/MutableComponent; +MD: net/minecraft/client/gui/components/Button/m_5691_ ()V net/minecraft/client/gui/components/Button/onPress ()V +MD: net/minecraft/client/gui/components/Button$Builder/ (Lnet/minecraft/network/chat/Component;Lnet/minecraft/client/gui/components/Button$OnPress;)V net/minecraft/client/gui/components/Button$Builder/ (Lnet/minecraft/network/chat/Component;Lnet/minecraft/client/gui/components/Button$OnPress;)V +MD: net/minecraft/client/gui/components/Button$Builder/m_252778_ (Lnet/minecraft/client/gui/components/Button$CreateNarration;)Lnet/minecraft/client/gui/components/Button$Builder; net/minecraft/client/gui/components/Button$Builder/createNarration (Lnet/minecraft/client/gui/components/Button$CreateNarration;)Lnet/minecraft/client/gui/components/Button$Builder; +MD: net/minecraft/client/gui/components/Button$Builder/m_252780_ (I)Lnet/minecraft/client/gui/components/Button$Builder; net/minecraft/client/gui/components/Button$Builder/width (I)Lnet/minecraft/client/gui/components/Button$Builder; +MD: net/minecraft/client/gui/components/Button$Builder/m_252794_ (II)Lnet/minecraft/client/gui/components/Button$Builder; net/minecraft/client/gui/components/Button$Builder/pos (II)Lnet/minecraft/client/gui/components/Button$Builder; +MD: net/minecraft/client/gui/components/Button$Builder/m_252987_ (IIII)Lnet/minecraft/client/gui/components/Button$Builder; net/minecraft/client/gui/components/Button$Builder/bounds (IIII)Lnet/minecraft/client/gui/components/Button$Builder; +MD: net/minecraft/client/gui/components/Button$Builder/m_253046_ (II)Lnet/minecraft/client/gui/components/Button$Builder; net/minecraft/client/gui/components/Button$Builder/size (II)Lnet/minecraft/client/gui/components/Button$Builder; +MD: net/minecraft/client/gui/components/Button$Builder/m_253136_ ()Lnet/minecraft/client/gui/components/Button; net/minecraft/client/gui/components/Button$Builder/build ()Lnet/minecraft/client/gui/components/Button; +MD: net/minecraft/client/gui/components/Button$Builder/m_257505_ (Lnet/minecraft/client/gui/components/Tooltip;)Lnet/minecraft/client/gui/components/Button$Builder; net/minecraft/client/gui/components/Button$Builder/tooltip (Lnet/minecraft/client/gui/components/Tooltip;)Lnet/minecraft/client/gui/components/Button$Builder; +MD: net/minecraft/client/gui/components/Button$CreateNarration/m_253229_ (Ljava/util/function/Supplier;)Lnet/minecraft/network/chat/MutableComponent; net/minecraft/client/gui/components/Button$CreateNarration/createNarrationMessage (Ljava/util/function/Supplier;)Lnet/minecraft/network/chat/MutableComponent; +MD: net/minecraft/client/gui/components/Button$OnPress/m_93750_ (Lnet/minecraft/client/gui/components/Button;)V net/minecraft/client/gui/components/Button$OnPress/onPress (Lnet/minecraft/client/gui/components/Button;)V +MD: net/minecraft/client/gui/components/ChatComponent/ ()V net/minecraft/client/gui/components/ChatComponent/ ()V +MD: net/minecraft/client/gui/components/ChatComponent/ (Lnet/minecraft/client/Minecraft;)V net/minecraft/client/gui/components/ChatComponent/ (Lnet/minecraft/client/Minecraft;)V +MD: net/minecraft/client/gui/components/ChatComponent/m_205360_ (I)V net/minecraft/client/gui/components/ChatComponent/scrollChat (I)V +MD: net/minecraft/client/gui/components/ChatComponent/m_232477_ ()D net/minecraft/client/gui/components/ChatComponent/defaultUnfocusedPct ()D +MD: net/minecraft/client/gui/components/ChatComponent/m_240447_ (DLnet/minecraft/client/GuiMessage$Line;Lnet/minecraft/client/GuiMessageTag;)Z net/minecraft/client/gui/components/ChatComponent/hasSelectedMessageTag (DLnet/minecraft/client/GuiMessage$Line;Lnet/minecraft/client/GuiMessageTag;)Z +MD: net/minecraft/client/gui/components/ChatComponent/m_240463_ (DD)Lnet/minecraft/client/GuiMessageTag; net/minecraft/client/gui/components/ChatComponent/getMessageTagAt (DD)Lnet/minecraft/client/GuiMessageTag; +MD: net/minecraft/client/gui/components/ChatComponent/m_240465_ (Lnet/minecraft/network/chat/Component;Lnet/minecraft/network/chat/MessageSignature;ILnet/minecraft/client/GuiMessageTag;Z)V net/minecraft/client/gui/components/ChatComponent/addMessage (Lnet/minecraft/network/chat/Component;Lnet/minecraft/network/chat/MessageSignature;ILnet/minecraft/client/GuiMessageTag;Z)V +MD: net/minecraft/client/gui/components/ChatComponent/m_240485_ (D)D net/minecraft/client/gui/components/ChatComponent/screenToChatY (D)D +MD: net/minecraft/client/gui/components/ChatComponent/m_240491_ (D)D net/minecraft/client/gui/components/ChatComponent/screenToChatX (D)D +MD: net/minecraft/client/gui/components/ChatComponent/m_240495_ (Lnet/minecraft/client/GuiMessage$Line;)I net/minecraft/client/gui/components/ChatComponent/getTagIconLeft (Lnet/minecraft/client/GuiMessage$Line;)I +MD: net/minecraft/client/gui/components/ChatComponent/m_240691_ ()I net/minecraft/client/gui/components/ChatComponent/getLineHeight ()I +MD: net/minecraft/client/gui/components/ChatComponent/m_240953_ (Lnet/minecraft/network/chat/MessageSignature;)V net/minecraft/client/gui/components/ChatComponent/deleteMessage (Lnet/minecraft/network/chat/MessageSignature;)V +MD: net/minecraft/client/gui/components/ChatComponent/m_240964_ (Lnet/minecraft/network/chat/Component;Lnet/minecraft/network/chat/MessageSignature;Lnet/minecraft/client/GuiMessageTag;)V net/minecraft/client/gui/components/ChatComponent/addMessage (Lnet/minecraft/network/chat/Component;Lnet/minecraft/network/chat/MessageSignature;Lnet/minecraft/client/GuiMessageTag;)V +MD: net/minecraft/client/gui/components/ChatComponent/m_241120_ ()V net/minecraft/client/gui/components/ChatComponent/refreshTrimmedMessage ()V +MD: net/minecraft/client/gui/components/ChatComponent/m_242648_ (Lnet/minecraft/network/chat/Component;Lnet/minecraft/client/GuiMessageTag;)V net/minecraft/client/gui/components/ChatComponent/logChatMessage (Lnet/minecraft/network/chat/Component;Lnet/minecraft/client/GuiMessageTag;)V +MD: net/minecraft/client/gui/components/ChatComponent/m_245406_ (ILnet/minecraft/client/gui/components/ChatComponent$DelayedMessageDeletion;)Z net/minecraft/client/gui/components/ChatComponent/lambda$processMessageDeletionQueue$0 (ILnet/minecraft/client/gui/components/ChatComponent$DelayedMessageDeletion;)Z +MD: net/minecraft/client/gui/components/ChatComponent/m_245423_ (Lnet/minecraft/network/chat/MessageSignature;)Lnet/minecraft/client/gui/components/ChatComponent$DelayedMessageDeletion; net/minecraft/client/gui/components/ChatComponent/deleteMessageOrDelay (Lnet/minecraft/network/chat/MessageSignature;)Lnet/minecraft/client/gui/components/ChatComponent$DelayedMessageDeletion; +MD: net/minecraft/client/gui/components/ChatComponent/m_246025_ ()V net/minecraft/client/gui/components/ChatComponent/processMessageDeletionQueue ()V +MD: net/minecraft/client/gui/components/ChatComponent/m_246107_ (DD)I net/minecraft/client/gui/components/ChatComponent/getMessageEndIndexAt (DD)I +MD: net/minecraft/client/gui/components/ChatComponent/m_246602_ ()V net/minecraft/client/gui/components/ChatComponent/tick ()V +MD: net/minecraft/client/gui/components/ChatComponent/m_246885_ (Lnet/minecraft/client/GuiMessage;)Lnet/minecraft/client/GuiMessage; net/minecraft/client/gui/components/ChatComponent/createDeletedMarker (Lnet/minecraft/client/GuiMessage;)Lnet/minecraft/client/GuiMessage; +MD: net/minecraft/client/gui/components/ChatComponent/m_247428_ (DD)I net/minecraft/client/gui/components/ChatComponent/getMessageLineIndexAt (DD)I +MD: net/minecraft/client/gui/components/ChatComponent/m_280134_ (Lnet/minecraft/client/gui/GuiGraphics;IILnet/minecraft/client/GuiMessageTag$Icon;)V net/minecraft/client/gui/components/ChatComponent/drawTagIcon (Lnet/minecraft/client/gui/GuiGraphics;IILnet/minecraft/client/GuiMessageTag$Icon;)V +MD: net/minecraft/client/gui/components/ChatComponent/m_280165_ (Lnet/minecraft/client/gui/GuiGraphics;III)V net/minecraft/client/gui/components/ChatComponent/render (Lnet/minecraft/client/gui/GuiGraphics;III)V +MD: net/minecraft/client/gui/components/ChatComponent/m_93769_ ()V net/minecraft/client/gui/components/ChatComponent/rescaleChat ()V +MD: net/minecraft/client/gui/components/ChatComponent/m_93772_ (DD)Z net/minecraft/client/gui/components/ChatComponent/handleChatQueueClicked (DD)Z +MD: net/minecraft/client/gui/components/ChatComponent/m_93775_ (I)D net/minecraft/client/gui/components/ChatComponent/getTimeFactor (I)D +MD: net/minecraft/client/gui/components/ChatComponent/m_93783_ (Ljava/lang/String;)V net/minecraft/client/gui/components/ChatComponent/addRecentChat (Ljava/lang/String;)V +MD: net/minecraft/client/gui/components/ChatComponent/m_93785_ (Lnet/minecraft/network/chat/Component;)V net/minecraft/client/gui/components/ChatComponent/addMessage (Lnet/minecraft/network/chat/Component;)V +MD: net/minecraft/client/gui/components/ChatComponent/m_93795_ (Z)V net/minecraft/client/gui/components/ChatComponent/clearMessages (Z)V +MD: net/minecraft/client/gui/components/ChatComponent/m_93797_ ()Ljava/util/List; net/minecraft/client/gui/components/ChatComponent/getRecentChat ()Ljava/util/List; +MD: net/minecraft/client/gui/components/ChatComponent/m_93798_ (D)I net/minecraft/client/gui/components/ChatComponent/getWidth (D)I +MD: net/minecraft/client/gui/components/ChatComponent/m_93800_ (DD)Lnet/minecraft/network/chat/Style; net/minecraft/client/gui/components/ChatComponent/getClickedComponentStyleAt (DD)Lnet/minecraft/network/chat/Style; +MD: net/minecraft/client/gui/components/ChatComponent/m_93810_ ()V net/minecraft/client/gui/components/ChatComponent/resetChatScroll ()V +MD: net/minecraft/client/gui/components/ChatComponent/m_93811_ (D)I net/minecraft/client/gui/components/ChatComponent/getHeight (D)I +MD: net/minecraft/client/gui/components/ChatComponent/m_93813_ ()I net/minecraft/client/gui/components/ChatComponent/getWidth ()I +MD: net/minecraft/client/gui/components/ChatComponent/m_93814_ ()I net/minecraft/client/gui/components/ChatComponent/getHeight ()I +MD: net/minecraft/client/gui/components/ChatComponent/m_93815_ ()D net/minecraft/client/gui/components/ChatComponent/getScale ()D +MD: net/minecraft/client/gui/components/ChatComponent/m_93816_ ()I net/minecraft/client/gui/components/ChatComponent/getLinesPerPage ()I +MD: net/minecraft/client/gui/components/ChatComponent/m_93817_ ()Z net/minecraft/client/gui/components/ChatComponent/isChatHidden ()Z +MD: net/minecraft/client/gui/components/ChatComponent/m_93818_ ()Z net/minecraft/client/gui/components/ChatComponent/isChatFocused ()Z +MD: net/minecraft/client/gui/components/ChatComponent$DelayedMessageDeletion/ (Lnet/minecraft/network/chat/MessageSignature;I)V net/minecraft/client/gui/components/ChatComponent$DelayedMessageDeletion/ (Lnet/minecraft/network/chat/MessageSignature;I)V +MD: net/minecraft/client/gui/components/ChatComponent$DelayedMessageDeletion/equals (Ljava/lang/Object;)Z net/minecraft/client/gui/components/ChatComponent$DelayedMessageDeletion/equals (Ljava/lang/Object;)Z +MD: net/minecraft/client/gui/components/ChatComponent$DelayedMessageDeletion/f_244186_ ()Lnet/minecraft/network/chat/MessageSignature; net/minecraft/client/gui/components/ChatComponent$DelayedMessageDeletion/signature ()Lnet/minecraft/network/chat/MessageSignature; +MD: net/minecraft/client/gui/components/ChatComponent$DelayedMessageDeletion/f_244411_ ()I net/minecraft/client/gui/components/ChatComponent$DelayedMessageDeletion/deletableAfter ()I +MD: net/minecraft/client/gui/components/ChatComponent$DelayedMessageDeletion/hashCode ()I net/minecraft/client/gui/components/ChatComponent$DelayedMessageDeletion/hashCode ()I +MD: net/minecraft/client/gui/components/ChatComponent$DelayedMessageDeletion/toString ()Ljava/lang/String; net/minecraft/client/gui/components/ChatComponent$DelayedMessageDeletion/toString ()Ljava/lang/String; +MD: net/minecraft/client/gui/components/Checkbox/ ()V net/minecraft/client/gui/components/Checkbox/ ()V +MD: net/minecraft/client/gui/components/Checkbox/ (IIIILnet/minecraft/network/chat/Component;ZZ)V net/minecraft/client/gui/components/Checkbox/ (IIIILnet/minecraft/network/chat/Component;ZZ)V +MD: net/minecraft/client/gui/components/Checkbox/ (IIIILnet/minecraft/network/chat/Component;Z)V net/minecraft/client/gui/components/Checkbox/ (IIIILnet/minecraft/network/chat/Component;Z)V +MD: net/minecraft/client/gui/components/Checkbox/m_168797_ (Lnet/minecraft/client/gui/narration/NarrationElementOutput;)V net/minecraft/client/gui/components/Checkbox/updateWidgetNarration (Lnet/minecraft/client/gui/narration/NarrationElementOutput;)V +MD: net/minecraft/client/gui/components/Checkbox/m_5691_ ()V net/minecraft/client/gui/components/Checkbox/onPress ()V +MD: net/minecraft/client/gui/components/Checkbox/m_87963_ (Lnet/minecraft/client/gui/GuiGraphics;IIF)V net/minecraft/client/gui/components/Checkbox/renderWidget (Lnet/minecraft/client/gui/GuiGraphics;IIF)V +MD: net/minecraft/client/gui/components/Checkbox/m_93840_ ()Z net/minecraft/client/gui/components/Checkbox/selected ()Z +MD: net/minecraft/client/gui/components/CommandSuggestions/ ()V net/minecraft/client/gui/components/CommandSuggestions/ ()V +MD: net/minecraft/client/gui/components/CommandSuggestions/ (Lnet/minecraft/client/Minecraft;Lnet/minecraft/client/gui/screens/Screen;Lnet/minecraft/client/gui/components/EditBox;Lnet/minecraft/client/gui/Font;ZZIIZI)V net/minecraft/client/gui/components/CommandSuggestions/ (Lnet/minecraft/client/Minecraft;Lnet/minecraft/client/gui/screens/Screen;Lnet/minecraft/client/gui/components/EditBox;Lnet/minecraft/client/gui/Font;ZZIIZI)V +MD: net/minecraft/client/gui/components/CommandSuggestions/m_241889_ ()V net/minecraft/client/gui/components/CommandSuggestions/hide ()V +MD: net/minecraft/client/gui/components/CommandSuggestions/m_272218_ ()Lnet/minecraft/network/chat/Component; net/minecraft/client/gui/components/CommandSuggestions/getNarrationMessage ()Lnet/minecraft/network/chat/Component; +MD: net/minecraft/client/gui/components/CommandSuggestions/m_280123_ (Lnet/minecraft/client/gui/GuiGraphics;)V net/minecraft/client/gui/components/CommandSuggestions/renderUsage (Lnet/minecraft/client/gui/GuiGraphics;)V +MD: net/minecraft/client/gui/components/CommandSuggestions/m_280467_ (Lnet/minecraft/client/gui/GuiGraphics;II)Z net/minecraft/client/gui/components/CommandSuggestions/renderSuggestions (Lnet/minecraft/client/gui/GuiGraphics;II)Z +MD: net/minecraft/client/gui/components/CommandSuggestions/m_280540_ (Lnet/minecraft/client/gui/GuiGraphics;II)V net/minecraft/client/gui/components/CommandSuggestions/render (Lnet/minecraft/client/gui/GuiGraphics;II)V +MD: net/minecraft/client/gui/components/CommandSuggestions/m_93881_ ()V net/minecraft/client/gui/components/CommandSuggestions/updateCommandInfo ()V +MD: net/minecraft/client/gui/components/CommandSuggestions/m_93882_ (D)Z net/minecraft/client/gui/components/CommandSuggestions/mouseScrolled (D)Z +MD: net/minecraft/client/gui/components/CommandSuggestions/m_93884_ (DDI)Z net/minecraft/client/gui/components/CommandSuggestions/mouseClicked (DDI)Z +MD: net/minecraft/client/gui/components/CommandSuggestions/m_93888_ (III)Z net/minecraft/client/gui/components/CommandSuggestions/keyPressed (III)Z +MD: net/minecraft/client/gui/components/CommandSuggestions/m_93892_ (Lcom/mojang/brigadier/ParseResults;Ljava/lang/String;I)Lnet/minecraft/util/FormattedCharSequence; net/minecraft/client/gui/components/CommandSuggestions/formatText (Lcom/mojang/brigadier/ParseResults;Ljava/lang/String;I)Lnet/minecraft/util/FormattedCharSequence; +MD: net/minecraft/client/gui/components/CommandSuggestions/m_93896_ (Lcom/mojang/brigadier/exceptions/CommandSyntaxException;)Lnet/minecraft/util/FormattedCharSequence; net/minecraft/client/gui/components/CommandSuggestions/getExceptionMessage (Lcom/mojang/brigadier/exceptions/CommandSyntaxException;)Lnet/minecraft/util/FormattedCharSequence; +MD: net/minecraft/client/gui/components/CommandSuggestions/m_93898_ (Lcom/mojang/brigadier/suggestion/Suggestions;)Ljava/util/List; net/minecraft/client/gui/components/CommandSuggestions/sortSuggestions (Lcom/mojang/brigadier/suggestion/Suggestions;)Ljava/util/List; +MD: net/minecraft/client/gui/components/CommandSuggestions/m_93912_ (Ljava/lang/String;)I net/minecraft/client/gui/components/CommandSuggestions/getLastWordIndex (Ljava/lang/String;)I +MD: net/minecraft/client/gui/components/CommandSuggestions/m_93914_ (Ljava/lang/String;I)Lnet/minecraft/util/FormattedCharSequence; net/minecraft/client/gui/components/CommandSuggestions/formatChat (Ljava/lang/String;I)Lnet/minecraft/util/FormattedCharSequence; +MD: net/minecraft/client/gui/components/CommandSuggestions/m_93920_ (Lnet/minecraft/ChatFormatting;)Z net/minecraft/client/gui/components/CommandSuggestions/fillNodeUsage (Lnet/minecraft/ChatFormatting;)Z +MD: net/minecraft/client/gui/components/CommandSuggestions/m_93922_ (Z)V net/minecraft/client/gui/components/CommandSuggestions/setAllowSuggestions (Z)V +MD: net/minecraft/client/gui/components/CommandSuggestions/m_93927_ (Ljava/lang/String;Ljava/lang/String;)Ljava/lang/String; net/minecraft/client/gui/components/CommandSuggestions/calculateSuggestionSuffix (Ljava/lang/String;Ljava/lang/String;)Ljava/lang/String; +MD: net/minecraft/client/gui/components/CommandSuggestions/m_93930_ (Z)V net/minecraft/client/gui/components/CommandSuggestions/showSuggestions (Z)V +MD: net/minecraft/client/gui/components/CommandSuggestions/m_93932_ ()V net/minecraft/client/gui/components/CommandSuggestions/updateUsageInfo ()V +MD: net/minecraft/client/gui/components/CommandSuggestions/m_93935_ ()V net/minecraft/client/gui/components/CommandSuggestions/lambda$updateCommandInfo$0 ()V +MD: net/minecraft/client/gui/components/CommandSuggestions$SuggestionsList/ (Lnet/minecraft/client/gui/components/CommandSuggestions;IIILjava/util/List;Z)V net/minecraft/client/gui/components/CommandSuggestions$SuggestionsList/ (Lnet/minecraft/client/gui/components/CommandSuggestions;IIILjava/util/List;Z)V +MD: net/minecraft/client/gui/components/CommandSuggestions$SuggestionsList/m_168847_ ()Lnet/minecraft/network/chat/Component; net/minecraft/client/gui/components/CommandSuggestions$SuggestionsList/getNarrationMessage ()Lnet/minecraft/network/chat/Component; +MD: net/minecraft/client/gui/components/CommandSuggestions$SuggestionsList/m_280328_ (Lnet/minecraft/client/gui/GuiGraphics;II)V net/minecraft/client/gui/components/CommandSuggestions$SuggestionsList/render (Lnet/minecraft/client/gui/GuiGraphics;II)V +MD: net/minecraft/client/gui/components/CommandSuggestions$SuggestionsList/m_93970_ ()V net/minecraft/client/gui/components/CommandSuggestions$SuggestionsList/useSuggestion ()V +MD: net/minecraft/client/gui/components/CommandSuggestions$SuggestionsList/m_93971_ (D)Z net/minecraft/client/gui/components/CommandSuggestions$SuggestionsList/mouseScrolled (D)Z +MD: net/minecraft/client/gui/components/CommandSuggestions$SuggestionsList/m_93973_ (I)V net/minecraft/client/gui/components/CommandSuggestions$SuggestionsList/cycle (I)V +MD: net/minecraft/client/gui/components/CommandSuggestions$SuggestionsList/m_93975_ (III)Z net/minecraft/client/gui/components/CommandSuggestions$SuggestionsList/mouseClicked (III)Z +MD: net/minecraft/client/gui/components/CommandSuggestions$SuggestionsList/m_93986_ (I)V net/minecraft/client/gui/components/CommandSuggestions$SuggestionsList/select (I)V +MD: net/minecraft/client/gui/components/CommandSuggestions$SuggestionsList/m_93988_ (III)Z net/minecraft/client/gui/components/CommandSuggestions$SuggestionsList/keyPressed (III)Z +MD: net/minecraft/client/gui/components/CommonButtons/ ()V net/minecraft/client/gui/components/CommonButtons/ ()V +MD: net/minecraft/client/gui/components/CommonButtons/m_271983_ (Lnet/minecraft/client/gui/components/Button$OnPress;)Lnet/minecraft/client/gui/components/TextAndImageButton; net/minecraft/client/gui/components/CommonButtons/languageTextAndImage (Lnet/minecraft/client/gui/components/Button$OnPress;)Lnet/minecraft/client/gui/components/TextAndImageButton; +MD: net/minecraft/client/gui/components/CommonButtons/m_272052_ (Lnet/minecraft/client/gui/components/Button$OnPress;)Lnet/minecraft/client/gui/components/TextAndImageButton; net/minecraft/client/gui/components/CommonButtons/accessibilityTextAndImage (Lnet/minecraft/client/gui/components/Button$OnPress;)Lnet/minecraft/client/gui/components/TextAndImageButton; +MD: net/minecraft/client/gui/components/ComponentRenderUtils/ ()V net/minecraft/client/gui/components/ComponentRenderUtils/ ()V +MD: net/minecraft/client/gui/components/ComponentRenderUtils/ ()V net/minecraft/client/gui/components/ComponentRenderUtils/ ()V +MD: net/minecraft/client/gui/components/ComponentRenderUtils/m_93995_ (Lnet/minecraft/client/ComponentCollector;Lnet/minecraft/network/chat/Style;Ljava/lang/String;)Ljava/util/Optional; net/minecraft/client/gui/components/ComponentRenderUtils/lambda$wrapComponents$0 (Lnet/minecraft/client/ComponentCollector;Lnet/minecraft/network/chat/Style;Ljava/lang/String;)Ljava/util/Optional; +MD: net/minecraft/client/gui/components/ComponentRenderUtils/m_93999_ (Ljava/lang/String;)Ljava/lang/String; net/minecraft/client/gui/components/ComponentRenderUtils/stripColor (Ljava/lang/String;)Ljava/lang/String; +MD: net/minecraft/client/gui/components/ComponentRenderUtils/m_94001_ (Ljava/util/List;Lnet/minecraft/network/chat/FormattedText;Ljava/lang/Boolean;)V net/minecraft/client/gui/components/ComponentRenderUtils/lambda$wrapComponents$1 (Ljava/util/List;Lnet/minecraft/network/chat/FormattedText;Ljava/lang/Boolean;)V +MD: net/minecraft/client/gui/components/ComponentRenderUtils/m_94005_ (Lnet/minecraft/network/chat/FormattedText;ILnet/minecraft/client/gui/Font;)Ljava/util/List; net/minecraft/client/gui/components/ComponentRenderUtils/wrapComponents (Lnet/minecraft/network/chat/FormattedText;ILnet/minecraft/client/gui/Font;)Ljava/util/List; +MD: net/minecraft/client/gui/components/ContainerObjectSelectionList/ (Lnet/minecraft/client/Minecraft;IIIII)V net/minecraft/client/gui/components/ContainerObjectSelectionList/ (Lnet/minecraft/client/Minecraft;IIIII)V +MD: net/minecraft/client/gui/components/ContainerObjectSelectionList/m_142291_ (Lnet/minecraft/client/gui/narration/NarrationElementOutput;)V net/minecraft/client/gui/components/ContainerObjectSelectionList/updateNarration (Lnet/minecraft/client/gui/narration/NarrationElementOutput;)V +MD: net/minecraft/client/gui/components/ContainerObjectSelectionList/m_142684_ ()Lnet/minecraft/client/gui/narration/NarratableEntry$NarrationPriority; net/minecraft/client/gui/components/ContainerObjectSelectionList/narrationPriority ()Lnet/minecraft/client/gui/narration/NarratableEntry$NarrationPriority; +MD: net/minecraft/client/gui/components/ContainerObjectSelectionList/m_264057_ (Lnet/minecraft/client/gui/components/ContainerObjectSelectionList$Entry;)Z net/minecraft/client/gui/components/ContainerObjectSelectionList/lambda$nextFocusPath$0 (Lnet/minecraft/client/gui/components/ContainerObjectSelectionList$Entry;)Z +MD: net/minecraft/client/gui/components/ContainerObjectSelectionList/m_264064_ (Lnet/minecraft/client/gui/navigation/FocusNavigationEvent;)Lnet/minecraft/client/gui/ComponentPath; net/minecraft/client/gui/components/ContainerObjectSelectionList/nextFocusPath (Lnet/minecraft/client/gui/navigation/FocusNavigationEvent;)Lnet/minecraft/client/gui/ComponentPath; +MD: net/minecraft/client/gui/components/ContainerObjectSelectionList/m_7522_ (Lnet/minecraft/client/gui/components/events/GuiEventListener;)V net/minecraft/client/gui/components/ContainerObjectSelectionList/setFocused (Lnet/minecraft/client/gui/components/events/GuiEventListener;)V +MD: net/minecraft/client/gui/components/ContainerObjectSelectionList/m_7987_ (I)Z net/minecraft/client/gui/components/ContainerObjectSelectionList/isSelectedItem (I)Z +MD: net/minecraft/client/gui/components/ContainerObjectSelectionList$1/ ()V net/minecraft/client/gui/components/ContainerObjectSelectionList$1/ ()V +MD: net/minecraft/client/gui/components/ContainerObjectSelectionList$Entry/ ()V net/minecraft/client/gui/components/ContainerObjectSelectionList$Entry/ ()V +MD: net/minecraft/client/gui/components/ContainerObjectSelectionList$Entry/m_142437_ ()Ljava/util/List; net/minecraft/client/gui/components/ContainerObjectSelectionList$Entry/narratables ()Ljava/util/List; +MD: net/minecraft/client/gui/components/ContainerObjectSelectionList$Entry/m_168854_ (Lnet/minecraft/client/gui/narration/NarrationElementOutput;)V net/minecraft/client/gui/components/ContainerObjectSelectionList$Entry/updateNarration (Lnet/minecraft/client/gui/narration/NarrationElementOutput;)V +MD: net/minecraft/client/gui/components/ContainerObjectSelectionList$Entry/m_264064_ (Lnet/minecraft/client/gui/navigation/FocusNavigationEvent;)Lnet/minecraft/client/gui/ComponentPath; net/minecraft/client/gui/components/ContainerObjectSelectionList$Entry/nextFocusPath (Lnet/minecraft/client/gui/navigation/FocusNavigationEvent;)Lnet/minecraft/client/gui/ComponentPath; +MD: net/minecraft/client/gui/components/ContainerObjectSelectionList$Entry/m_264176_ (Lnet/minecraft/client/gui/navigation/FocusNavigationEvent;I)Lnet/minecraft/client/gui/ComponentPath; net/minecraft/client/gui/components/ContainerObjectSelectionList$Entry/focusPathAtIndex (Lnet/minecraft/client/gui/navigation/FocusNavigationEvent;I)Lnet/minecraft/client/gui/ComponentPath; +MD: net/minecraft/client/gui/components/ContainerObjectSelectionList$Entry/m_274437_ (Lnet/minecraft/client/gui/GuiGraphics;IIIIIIIZF)V net/minecraft/client/gui/components/ContainerObjectSelectionList$Entry/renderBack (Lnet/minecraft/client/gui/GuiGraphics;IIIIIIIZF)V +MD: net/minecraft/client/gui/components/ContainerObjectSelectionList$Entry/m_5953_ (DD)Z net/minecraft/client/gui/components/ContainerObjectSelectionList$Entry/isMouseOver (DD)Z +MD: net/minecraft/client/gui/components/ContainerObjectSelectionList$Entry/m_6375_ (DDI)Z net/minecraft/client/gui/components/ContainerObjectSelectionList$Entry/mouseClicked (DDI)Z +MD: net/minecraft/client/gui/components/ContainerObjectSelectionList$Entry/m_7222_ ()Lnet/minecraft/client/gui/components/events/GuiEventListener; net/minecraft/client/gui/components/ContainerObjectSelectionList$Entry/getFocused ()Lnet/minecraft/client/gui/components/events/GuiEventListener; +MD: net/minecraft/client/gui/components/ContainerObjectSelectionList$Entry/m_7282_ ()Z net/minecraft/client/gui/components/ContainerObjectSelectionList$Entry/isDragging ()Z +MD: net/minecraft/client/gui/components/ContainerObjectSelectionList$Entry/m_7522_ (Lnet/minecraft/client/gui/components/events/GuiEventListener;)V net/minecraft/client/gui/components/ContainerObjectSelectionList$Entry/setFocused (Lnet/minecraft/client/gui/components/events/GuiEventListener;)V +MD: net/minecraft/client/gui/components/ContainerObjectSelectionList$Entry/m_7897_ (Z)V net/minecraft/client/gui/components/ContainerObjectSelectionList$Entry/setDragging (Z)V +MD: net/minecraft/client/gui/components/ContainerObjectSelectionList$Entry/m_93692_ (Z)V net/minecraft/client/gui/components/ContainerObjectSelectionList$Entry/setFocused (Z)V +MD: net/minecraft/client/gui/components/ContainerObjectSelectionList$Entry/m_93696_ ()Z net/minecraft/client/gui/components/ContainerObjectSelectionList$Entry/isFocused ()Z +MD: net/minecraft/client/gui/components/CycleButton/ ()V net/minecraft/client/gui/components/CycleButton/ ()V +MD: net/minecraft/client/gui/components/CycleButton/ (IIIILnet/minecraft/network/chat/Component;Lnet/minecraft/network/chat/Component;ILjava/lang/Object;Lnet/minecraft/client/gui/components/CycleButton$ValueListSupplier;Ljava/util/function/Function;Ljava/util/function/Function;Lnet/minecraft/client/gui/components/CycleButton$OnValueChange;Lnet/minecraft/client/OptionInstance$TooltipSupplier;Z)V net/minecraft/client/gui/components/CycleButton/ (IIIILnet/minecraft/network/chat/Component;Lnet/minecraft/network/chat/Component;ILjava/lang/Object;Lnet/minecraft/client/gui/components/CycleButton$ValueListSupplier;Ljava/util/function/Function;Ljava/util/function/Function;Lnet/minecraft/client/gui/components/CycleButton$OnValueChange;Lnet/minecraft/client/OptionInstance$TooltipSupplier;Z)V +MD: net/minecraft/client/gui/components/CycleButton/m_168797_ (Lnet/minecraft/client/gui/narration/NarrationElementOutput;)V net/minecraft/client/gui/components/CycleButton/updateWidgetNarration (Lnet/minecraft/client/gui/narration/NarrationElementOutput;)V +MD: net/minecraft/client/gui/components/CycleButton/m_168883_ ()Ljava/lang/Object; net/minecraft/client/gui/components/CycleButton/getValue ()Ljava/lang/Object; +MD: net/minecraft/client/gui/components/CycleButton/m_168890_ (Ljava/lang/Boolean;)Lnet/minecraft/network/chat/Component; net/minecraft/client/gui/components/CycleButton/lambda$onOffBuilder$1 (Ljava/lang/Boolean;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/client/gui/components/CycleButton/m_168892_ (Ljava/lang/Object;)V net/minecraft/client/gui/components/CycleButton/setValue (Ljava/lang/Object;)V +MD: net/minecraft/client/gui/components/CycleButton/m_168894_ (Ljava/util/function/Function;)Lnet/minecraft/client/gui/components/CycleButton$Builder; net/minecraft/client/gui/components/CycleButton/builder (Ljava/util/function/Function;)Lnet/minecraft/client/gui/components/CycleButton$Builder; +MD: net/minecraft/client/gui/components/CycleButton/m_168896_ (Lnet/minecraft/network/chat/Component;Lnet/minecraft/network/chat/Component;)Lnet/minecraft/client/gui/components/CycleButton$Builder; net/minecraft/client/gui/components/CycleButton/booleanBuilder (Lnet/minecraft/network/chat/Component;Lnet/minecraft/network/chat/Component;)Lnet/minecraft/client/gui/components/CycleButton$Builder; +MD: net/minecraft/client/gui/components/CycleButton/m_168899_ (Lnet/minecraft/network/chat/Component;Lnet/minecraft/network/chat/Component;Ljava/lang/Boolean;)Lnet/minecraft/network/chat/Component; net/minecraft/client/gui/components/CycleButton/lambda$booleanBuilder$0 (Lnet/minecraft/network/chat/Component;Lnet/minecraft/network/chat/Component;Ljava/lang/Boolean;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/client/gui/components/CycleButton/m_168904_ ()Lnet/minecraft/network/chat/MutableComponent; net/minecraft/client/gui/components/CycleButton/createDefaultNarrationMessage ()Lnet/minecraft/network/chat/MutableComponent; +MD: net/minecraft/client/gui/components/CycleButton/m_168905_ (Ljava/lang/Object;)V net/minecraft/client/gui/components/CycleButton/updateValue (Ljava/lang/Object;)V +MD: net/minecraft/client/gui/components/CycleButton/m_168908_ (I)V net/minecraft/client/gui/components/CycleButton/cycleValue (I)V +MD: net/minecraft/client/gui/components/CycleButton/m_168910_ (Ljava/lang/Object;)Lnet/minecraft/network/chat/Component; net/minecraft/client/gui/components/CycleButton/createLabelForValue (Ljava/lang/Object;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/client/gui/components/CycleButton/m_168912_ (Ljava/lang/Object;)Lnet/minecraft/network/chat/MutableComponent; net/minecraft/client/gui/components/CycleButton/createFullName (Ljava/lang/Object;)Lnet/minecraft/network/chat/MutableComponent; +MD: net/minecraft/client/gui/components/CycleButton/m_168914_ (I)Ljava/lang/Object; net/minecraft/client/gui/components/CycleButton/getCycledValue (I)Ljava/lang/Object; +MD: net/minecraft/client/gui/components/CycleButton/m_168916_ (Z)Lnet/minecraft/client/gui/components/CycleButton$Builder; net/minecraft/client/gui/components/CycleButton/onOffBuilder (Z)Lnet/minecraft/client/gui/components/CycleButton$Builder; +MD: net/minecraft/client/gui/components/CycleButton/m_168919_ ()Lnet/minecraft/client/gui/components/CycleButton$Builder; net/minecraft/client/gui/components/CycleButton/onOffBuilder ()Lnet/minecraft/client/gui/components/CycleButton$Builder; +MD: net/minecraft/client/gui/components/CycleButton/m_257795_ ()V net/minecraft/client/gui/components/CycleButton/updateTooltip ()V +MD: net/minecraft/client/gui/components/CycleButton/m_5646_ ()Lnet/minecraft/network/chat/MutableComponent; net/minecraft/client/gui/components/CycleButton/createNarrationMessage ()Lnet/minecraft/network/chat/MutableComponent; +MD: net/minecraft/client/gui/components/CycleButton/m_5691_ ()V net/minecraft/client/gui/components/CycleButton/onPress ()V +MD: net/minecraft/client/gui/components/CycleButton/m_6050_ (DDD)Z net/minecraft/client/gui/components/CycleButton/mouseScrolled (DDD)Z +MD: net/minecraft/client/gui/components/CycleButton$Builder/ (Ljava/util/function/Function;)V net/minecraft/client/gui/components/CycleButton$Builder/ (Ljava/util/function/Function;)V +MD: net/minecraft/client/gui/components/CycleButton$Builder/m_168929_ ()Lnet/minecraft/client/gui/components/CycleButton$Builder; net/minecraft/client/gui/components/CycleButton$Builder/displayOnlyValue ()Lnet/minecraft/client/gui/components/CycleButton$Builder; +MD: net/minecraft/client/gui/components/CycleButton$Builder/m_168930_ (IIIILnet/minecraft/network/chat/Component;)Lnet/minecraft/client/gui/components/CycleButton; net/minecraft/client/gui/components/CycleButton$Builder/create (IIIILnet/minecraft/network/chat/Component;)Lnet/minecraft/client/gui/components/CycleButton; +MD: net/minecraft/client/gui/components/CycleButton$Builder/m_168936_ (IIIILnet/minecraft/network/chat/Component;Lnet/minecraft/client/gui/components/CycleButton$OnValueChange;)Lnet/minecraft/client/gui/components/CycleButton; net/minecraft/client/gui/components/CycleButton$Builder/create (IIIILnet/minecraft/network/chat/Component;Lnet/minecraft/client/gui/components/CycleButton$OnValueChange;)Lnet/minecraft/client/gui/components/CycleButton; +MD: net/minecraft/client/gui/components/CycleButton$Builder/m_168945_ (Lnet/minecraft/client/gui/components/CycleButton;Ljava/lang/Object;)V net/minecraft/client/gui/components/CycleButton$Builder/lambda$create$1 (Lnet/minecraft/client/gui/components/CycleButton;Ljava/lang/Object;)V +MD: net/minecraft/client/gui/components/CycleButton$Builder/m_168948_ (Ljava/lang/Object;)Lnet/minecraft/client/gui/components/CycleButton$Builder; net/minecraft/client/gui/components/CycleButton$Builder/withInitialValue (Ljava/lang/Object;)Lnet/minecraft/client/gui/components/CycleButton$Builder; +MD: net/minecraft/client/gui/components/CycleButton$Builder/m_168952_ (Ljava/util/List;Ljava/util/List;)Lnet/minecraft/client/gui/components/CycleButton$Builder; net/minecraft/client/gui/components/CycleButton$Builder/withValues (Ljava/util/List;Ljava/util/List;)Lnet/minecraft/client/gui/components/CycleButton$Builder; +MD: net/minecraft/client/gui/components/CycleButton$Builder/m_168955_ (Ljava/util/function/BooleanSupplier;Ljava/util/List;Ljava/util/List;)Lnet/minecraft/client/gui/components/CycleButton$Builder; net/minecraft/client/gui/components/CycleButton$Builder/withValues (Ljava/util/function/BooleanSupplier;Ljava/util/List;Ljava/util/List;)Lnet/minecraft/client/gui/components/CycleButton$Builder; +MD: net/minecraft/client/gui/components/CycleButton$Builder/m_168959_ (Ljava/util/function/Function;)Lnet/minecraft/client/gui/components/CycleButton$Builder; net/minecraft/client/gui/components/CycleButton$Builder/withCustomNarration (Ljava/util/function/Function;)Lnet/minecraft/client/gui/components/CycleButton$Builder; +MD: net/minecraft/client/gui/components/CycleButton$Builder/m_168961_ ([Ljava/lang/Object;)Lnet/minecraft/client/gui/components/CycleButton$Builder; net/minecraft/client/gui/components/CycleButton$Builder/withValues ([Ljava/lang/Object;)Lnet/minecraft/client/gui/components/CycleButton$Builder; +MD: net/minecraft/client/gui/components/CycleButton$Builder/m_232498_ (Lnet/minecraft/client/OptionInstance$TooltipSupplier;)Lnet/minecraft/client/gui/components/CycleButton$Builder; net/minecraft/client/gui/components/CycleButton$Builder/withTooltip (Lnet/minecraft/client/OptionInstance$TooltipSupplier;)Lnet/minecraft/client/gui/components/CycleButton$Builder; +MD: net/minecraft/client/gui/components/CycleButton$Builder/m_232500_ (Lnet/minecraft/client/gui/components/CycleButton$ValueListSupplier;)Lnet/minecraft/client/gui/components/CycleButton$Builder; net/minecraft/client/gui/components/CycleButton$Builder/withValues (Lnet/minecraft/client/gui/components/CycleButton$ValueListSupplier;)Lnet/minecraft/client/gui/components/CycleButton$Builder; +MD: net/minecraft/client/gui/components/CycleButton$Builder/m_232502_ (Ljava/util/Collection;)Lnet/minecraft/client/gui/components/CycleButton$Builder; net/minecraft/client/gui/components/CycleButton$Builder/withValues (Ljava/util/Collection;)Lnet/minecraft/client/gui/components/CycleButton$Builder; +MD: net/minecraft/client/gui/components/CycleButton$Builder/m_257070_ (Ljava/lang/Object;)Lnet/minecraft/client/gui/components/Tooltip; net/minecraft/client/gui/components/CycleButton$Builder/lambda$new$0 (Ljava/lang/Object;)Lnet/minecraft/client/gui/components/Tooltip; +MD: net/minecraft/client/gui/components/CycleButton$OnValueChange/m_168965_ (Lnet/minecraft/client/gui/components/CycleButton;Ljava/lang/Object;)V net/minecraft/client/gui/components/CycleButton$OnValueChange/onValueChange (Lnet/minecraft/client/gui/components/CycleButton;Ljava/lang/Object;)V +MD: net/minecraft/client/gui/components/CycleButton$ValueListSupplier/m_142477_ ()Ljava/util/List; net/minecraft/client/gui/components/CycleButton$ValueListSupplier/getSelectedList ()Ljava/util/List; +MD: net/minecraft/client/gui/components/CycleButton$ValueListSupplier/m_142478_ ()Ljava/util/List; net/minecraft/client/gui/components/CycleButton$ValueListSupplier/getDefaultList ()Ljava/util/List; +MD: net/minecraft/client/gui/components/CycleButton$ValueListSupplier/m_168970_ (Ljava/util/function/BooleanSupplier;Ljava/util/List;Ljava/util/List;)Lnet/minecraft/client/gui/components/CycleButton$ValueListSupplier; net/minecraft/client/gui/components/CycleButton$ValueListSupplier/create (Ljava/util/function/BooleanSupplier;Ljava/util/List;Ljava/util/List;)Lnet/minecraft/client/gui/components/CycleButton$ValueListSupplier; +MD: net/minecraft/client/gui/components/CycleButton$ValueListSupplier/m_232504_ (Ljava/util/Collection;)Lnet/minecraft/client/gui/components/CycleButton$ValueListSupplier; net/minecraft/client/gui/components/CycleButton$ValueListSupplier/create (Ljava/util/Collection;)Lnet/minecraft/client/gui/components/CycleButton$ValueListSupplier; +MD: net/minecraft/client/gui/components/CycleButton$ValueListSupplier$1/ (Ljava/util/List;)V net/minecraft/client/gui/components/CycleButton$ValueListSupplier$1/ (Ljava/util/List;)V +MD: net/minecraft/client/gui/components/CycleButton$ValueListSupplier$1/m_142477_ ()Ljava/util/List; net/minecraft/client/gui/components/CycleButton$ValueListSupplier$1/getSelectedList ()Ljava/util/List; +MD: net/minecraft/client/gui/components/CycleButton$ValueListSupplier$1/m_142478_ ()Ljava/util/List; net/minecraft/client/gui/components/CycleButton$ValueListSupplier$1/getDefaultList ()Ljava/util/List; +MD: net/minecraft/client/gui/components/CycleButton$ValueListSupplier$2/ (Ljava/util/function/BooleanSupplier;Ljava/util/List;Ljava/util/List;)V net/minecraft/client/gui/components/CycleButton$ValueListSupplier$2/ (Ljava/util/function/BooleanSupplier;Ljava/util/List;Ljava/util/List;)V +MD: net/minecraft/client/gui/components/CycleButton$ValueListSupplier$2/m_142477_ ()Ljava/util/List; net/minecraft/client/gui/components/CycleButton$ValueListSupplier$2/getSelectedList ()Ljava/util/List; +MD: net/minecraft/client/gui/components/CycleButton$ValueListSupplier$2/m_142478_ ()Ljava/util/List; net/minecraft/client/gui/components/CycleButton$ValueListSupplier$2/getDefaultList ()Ljava/util/List; +MD: net/minecraft/client/gui/components/DebugScreenOverlay/ ()V net/minecraft/client/gui/components/DebugScreenOverlay/ ()V +MD: net/minecraft/client/gui/components/DebugScreenOverlay/ (Lnet/minecraft/client/Minecraft;)V net/minecraft/client/gui/components/DebugScreenOverlay/ (Lnet/minecraft/client/Minecraft;)V +MD: net/minecraft/client/gui/components/DebugScreenOverlay/m_205362_ (Lnet/minecraft/server/level/ChunkHolder$ChunkLoadingFailure;)Lnet/minecraft/world/level/chunk/LevelChunk; net/minecraft/client/gui/components/DebugScreenOverlay/lambda$getServerChunk$7 (Lnet/minecraft/server/level/ChunkHolder$ChunkLoadingFailure;)Lnet/minecraft/world/level/chunk/LevelChunk; +MD: net/minecraft/client/gui/components/DebugScreenOverlay/m_205364_ (Lnet/minecraft/tags/TagKey;)Ljava/lang/String; net/minecraft/client/gui/components/DebugScreenOverlay/lambda$getSystemInformation$9 (Lnet/minecraft/tags/TagKey;)Ljava/lang/String; +MD: net/minecraft/client/gui/components/DebugScreenOverlay/m_205366_ (Lnet/minecraft/world/level/biome/Biome;)Ljava/lang/String; net/minecraft/client/gui/components/DebugScreenOverlay/lambda$printBiome$4 (Lnet/minecraft/world/level/biome/Biome;)Ljava/lang/String; +MD: net/minecraft/client/gui/components/DebugScreenOverlay/m_205368_ (Lcom/mojang/datafixers/util/Either;)Lnet/minecraft/world/level/chunk/LevelChunk; net/minecraft/client/gui/components/DebugScreenOverlay/lambda$getServerChunk$8 (Lcom/mojang/datafixers/util/Either;)Lnet/minecraft/world/level/chunk/LevelChunk; +MD: net/minecraft/client/gui/components/DebugScreenOverlay/m_205370_ (Lnet/minecraft/world/level/chunk/ChunkAccess;)Lnet/minecraft/world/level/chunk/LevelChunk; net/minecraft/client/gui/components/DebugScreenOverlay/lambda$getServerChunk$6 (Lnet/minecraft/world/level/chunk/ChunkAccess;)Lnet/minecraft/world/level/chunk/LevelChunk; +MD: net/minecraft/client/gui/components/DebugScreenOverlay/m_205374_ (Lnet/minecraft/core/Holder;)Ljava/lang/String; net/minecraft/client/gui/components/DebugScreenOverlay/printBiome (Lnet/minecraft/core/Holder;)Ljava/lang/String; +MD: net/minecraft/client/gui/components/DebugScreenOverlay/m_205376_ (Lnet/minecraft/resources/ResourceKey;)Ljava/lang/String; net/minecraft/client/gui/components/DebugScreenOverlay/lambda$printBiome$3 (Lnet/minecraft/resources/ResourceKey;)Ljava/lang/String; +MD: net/minecraft/client/gui/components/DebugScreenOverlay/m_205378_ (Lnet/minecraft/tags/TagKey;)Ljava/lang/String; net/minecraft/client/gui/components/DebugScreenOverlay/lambda$getSystemInformation$10 (Lnet/minecraft/tags/TagKey;)Ljava/lang/String; +MD: net/minecraft/client/gui/components/DebugScreenOverlay/m_280186_ (Lnet/minecraft/client/gui/GuiGraphics;)V net/minecraft/client/gui/components/DebugScreenOverlay/drawGameInformation (Lnet/minecraft/client/gui/GuiGraphics;)V +MD: net/minecraft/client/gui/components/DebugScreenOverlay/m_280532_ (Lnet/minecraft/client/gui/GuiGraphics;)V net/minecraft/client/gui/components/DebugScreenOverlay/drawSystemInformation (Lnet/minecraft/client/gui/GuiGraphics;)V +MD: net/minecraft/client/gui/components/DebugScreenOverlay/m_280604_ (Lnet/minecraft/client/gui/GuiGraphics;Lnet/minecraft/util/FrameTimer;IIZ)V net/minecraft/client/gui/components/DebugScreenOverlay/drawChart (Lnet/minecraft/client/gui/GuiGraphics;Lnet/minecraft/util/FrameTimer;IIZ)V +MD: net/minecraft/client/gui/components/DebugScreenOverlay/m_285668_ (Lnet/minecraft/client/gui/GuiGraphics;)V net/minecraft/client/gui/components/DebugScreenOverlay/lambda$render$1 (Lnet/minecraft/client/gui/GuiGraphics;)V +MD: net/minecraft/client/gui/components/DebugScreenOverlay/m_286013_ (Lnet/minecraft/client/gui/GuiGraphics;Ljava/util/List;Z)V net/minecraft/client/gui/components/DebugScreenOverlay/renderLines (Lnet/minecraft/client/gui/GuiGraphics;Ljava/util/List;Z)V +MD: net/minecraft/client/gui/components/DebugScreenOverlay/m_287797_ (Lnet/minecraft/client/server/IntegratedServer;)Ljava/util/Optional; net/minecraft/client/gui/components/DebugScreenOverlay/lambda$getLevel$5 (Lnet/minecraft/client/server/IntegratedServer;)Ljava/util/Optional; +MD: net/minecraft/client/gui/components/DebugScreenOverlay/m_94040_ ()V net/minecraft/client/gui/components/DebugScreenOverlay/clearChunkCache ()V +MD: net/minecraft/client/gui/components/DebugScreenOverlay/m_94041_ (IIF)I net/minecraft/client/gui/components/DebugScreenOverlay/colorLerp (IIF)I +MD: net/minecraft/client/gui/components/DebugScreenOverlay/m_94045_ (IIII)I net/minecraft/client/gui/components/DebugScreenOverlay/getSampleColor (IIII)I +MD: net/minecraft/client/gui/components/DebugScreenOverlay/m_94050_ (J)J net/minecraft/client/gui/components/DebugScreenOverlay/bytesToMegabytes (J)J +MD: net/minecraft/client/gui/components/DebugScreenOverlay/m_94056_ (Lnet/minecraft/client/gui/GuiGraphics;)V net/minecraft/client/gui/components/DebugScreenOverlay/render (Lnet/minecraft/client/gui/GuiGraphics;)V +MD: net/minecraft/client/gui/components/DebugScreenOverlay/m_94066_ (Lit/unimi/dsi/fastutil/objects/Object2IntMap;Lnet/minecraft/world/entity/MobCategory;)Ljava/lang/String; net/minecraft/client/gui/components/DebugScreenOverlay/lambda$getGameInformation$2 (Lit/unimi/dsi/fastutil/objects/Object2IntMap;Lnet/minecraft/world/entity/MobCategory;)Ljava/lang/String; +MD: net/minecraft/client/gui/components/DebugScreenOverlay/m_94069_ (Ljava/util/EnumMap;)V net/minecraft/client/gui/components/DebugScreenOverlay/lambda$static$0 (Ljava/util/EnumMap;)V +MD: net/minecraft/client/gui/components/DebugScreenOverlay/m_94071_ (Ljava/util/Map$Entry;)Ljava/lang/String; net/minecraft/client/gui/components/DebugScreenOverlay/getPropertyValueString (Ljava/util/Map$Entry;)Ljava/lang/String; +MD: net/minecraft/client/gui/components/DebugScreenOverlay/m_94075_ ()Ljava/util/List; net/minecraft/client/gui/components/DebugScreenOverlay/getGameInformation ()Ljava/util/List; +MD: net/minecraft/client/gui/components/DebugScreenOverlay/m_94078_ ()Ljava/util/List; net/minecraft/client/gui/components/DebugScreenOverlay/getSystemInformation ()Ljava/util/List; +MD: net/minecraft/client/gui/components/DebugScreenOverlay/m_94081_ ()Lnet/minecraft/server/level/ServerLevel; net/minecraft/client/gui/components/DebugScreenOverlay/getServerLevel ()Lnet/minecraft/server/level/ServerLevel; +MD: net/minecraft/client/gui/components/DebugScreenOverlay/m_94082_ ()Ljava/lang/String; net/minecraft/client/gui/components/DebugScreenOverlay/getServerChunkStats ()Ljava/lang/String; +MD: net/minecraft/client/gui/components/DebugScreenOverlay/m_94083_ ()Lnet/minecraft/world/level/Level; net/minecraft/client/gui/components/DebugScreenOverlay/getLevel ()Lnet/minecraft/world/level/Level; +MD: net/minecraft/client/gui/components/DebugScreenOverlay/m_94084_ ()Lnet/minecraft/world/level/chunk/LevelChunk; net/minecraft/client/gui/components/DebugScreenOverlay/getServerChunk ()Lnet/minecraft/world/level/chunk/LevelChunk; +MD: net/minecraft/client/gui/components/DebugScreenOverlay/m_94085_ ()Lnet/minecraft/world/level/chunk/LevelChunk; net/minecraft/client/gui/components/DebugScreenOverlay/getClientChunk ()Lnet/minecraft/world/level/chunk/LevelChunk; +MD: net/minecraft/client/gui/components/DebugScreenOverlay$1/ ()V net/minecraft/client/gui/components/DebugScreenOverlay$1/ ()V +MD: net/minecraft/client/gui/components/DebugScreenOverlay$AllocationRateCalculator/ ()V net/minecraft/client/gui/components/DebugScreenOverlay$AllocationRateCalculator/ ()V +MD: net/minecraft/client/gui/components/DebugScreenOverlay$AllocationRateCalculator/ ()V net/minecraft/client/gui/components/DebugScreenOverlay$AllocationRateCalculator/ ()V +MD: net/minecraft/client/gui/components/DebugScreenOverlay$AllocationRateCalculator/m_232515_ ()J net/minecraft/client/gui/components/DebugScreenOverlay$AllocationRateCalculator/gcCounts ()J +MD: net/minecraft/client/gui/components/DebugScreenOverlay$AllocationRateCalculator/m_232516_ (J)J net/minecraft/client/gui/components/DebugScreenOverlay$AllocationRateCalculator/bytesAllocatedPerSecond (J)J +MD: net/minecraft/client/gui/components/EditBox/ (Lnet/minecraft/client/gui/Font;IIIILnet/minecraft/network/chat/Component;)V net/minecraft/client/gui/components/EditBox/ (Lnet/minecraft/client/gui/Font;IIIILnet/minecraft/network/chat/Component;)V +MD: net/minecraft/client/gui/components/EditBox/ (Lnet/minecraft/client/gui/Font;IIIILnet/minecraft/client/gui/components/EditBox;Lnet/minecraft/network/chat/Component;)V net/minecraft/client/gui/components/EditBox/ (Lnet/minecraft/client/gui/Font;IIIILnet/minecraft/client/gui/components/EditBox;Lnet/minecraft/network/chat/Component;)V +MD: net/minecraft/client/gui/components/EditBox/m_168797_ (Lnet/minecraft/client/gui/narration/NarrationElementOutput;)V net/minecraft/client/gui/components/EditBox/updateWidgetNarration (Lnet/minecraft/client/gui/narration/NarrationElementOutput;)V +MD: net/minecraft/client/gui/components/EditBox/m_257771_ (Lnet/minecraft/network/chat/Component;)V net/minecraft/client/gui/components/EditBox/setHint (Lnet/minecraft/network/chat/Component;)V +MD: net/minecraft/client/gui/components/EditBox/m_264064_ (Lnet/minecraft/client/gui/navigation/FocusNavigationEvent;)Lnet/minecraft/client/gui/ComponentPath; net/minecraft/client/gui/components/EditBox/nextFocusPath (Lnet/minecraft/client/gui/navigation/FocusNavigationEvent;)Lnet/minecraft/client/gui/ComponentPath; +MD: net/minecraft/client/gui/components/EditBox/m_264315_ (Lnet/minecraft/client/gui/GuiGraphics;IIII)V net/minecraft/client/gui/components/EditBox/renderHighlight (Lnet/minecraft/client/gui/GuiGraphics;IIII)V +MD: net/minecraft/client/gui/components/EditBox/m_5534_ (CI)Z net/minecraft/client/gui/components/EditBox/charTyped (CI)Z +MD: net/minecraft/client/gui/components/EditBox/m_5646_ ()Lnet/minecraft/network/chat/MutableComponent; net/minecraft/client/gui/components/EditBox/createNarrationMessage ()Lnet/minecraft/network/chat/MutableComponent; +MD: net/minecraft/client/gui/components/EditBox/m_5716_ (DD)V net/minecraft/client/gui/components/EditBox/onClick (DD)V +MD: net/minecraft/client/gui/components/EditBox/m_5953_ (DD)Z net/minecraft/client/gui/components/EditBox/isMouseOver (DD)Z +MD: net/minecraft/client/gui/components/EditBox/m_7435_ (Lnet/minecraft/client/sounds/SoundManager;)V net/minecraft/client/gui/components/EditBox/playDownSound (Lnet/minecraft/client/sounds/SoundManager;)V +MD: net/minecraft/client/gui/components/EditBox/m_7933_ (III)Z net/minecraft/client/gui/components/EditBox/keyPressed (III)Z +MD: net/minecraft/client/gui/components/EditBox/m_87963_ (Lnet/minecraft/client/gui/GuiGraphics;IIF)V net/minecraft/client/gui/components/EditBox/renderWidget (Lnet/minecraft/client/gui/GuiGraphics;IIF)V +MD: net/minecraft/client/gui/components/EditBox/m_93692_ (Z)V net/minecraft/client/gui/components/EditBox/setFocused (Z)V +MD: net/minecraft/client/gui/components/EditBox/m_94120_ ()V net/minecraft/client/gui/components/EditBox/tick ()V +MD: net/minecraft/client/gui/components/EditBox/m_94128_ (II)I net/minecraft/client/gui/components/EditBox/getWordPosition (II)I +MD: net/minecraft/client/gui/components/EditBox/m_94140_ (IIZ)I net/minecraft/client/gui/components/EditBox/getWordPosition (IIZ)I +MD: net/minecraft/client/gui/components/EditBox/m_94144_ (Ljava/lang/String;)V net/minecraft/client/gui/components/EditBox/setValue (Ljava/lang/String;)V +MD: net/minecraft/client/gui/components/EditBox/m_94146_ (Ljava/lang/String;Ljava/lang/Integer;)Lnet/minecraft/util/FormattedCharSequence; net/minecraft/client/gui/components/EditBox/lambda$new$0 (Ljava/lang/String;Ljava/lang/Integer;)Lnet/minecraft/util/FormattedCharSequence; +MD: net/minecraft/client/gui/components/EditBox/m_94149_ (Ljava/util/function/BiFunction;)V net/minecraft/client/gui/components/EditBox/setFormatter (Ljava/util/function/BiFunction;)V +MD: net/minecraft/client/gui/components/EditBox/m_94151_ (Ljava/util/function/Consumer;)V net/minecraft/client/gui/components/EditBox/setResponder (Ljava/util/function/Consumer;)V +MD: net/minecraft/client/gui/components/EditBox/m_94153_ (Ljava/util/function/Predicate;)V net/minecraft/client/gui/components/EditBox/setFilter (Ljava/util/function/Predicate;)V +MD: net/minecraft/client/gui/components/EditBox/m_94155_ ()Ljava/lang/String; net/minecraft/client/gui/components/EditBox/getValue ()Ljava/lang/String; +MD: net/minecraft/client/gui/components/EditBox/m_94164_ (Ljava/lang/String;)V net/minecraft/client/gui/components/EditBox/insertText (Ljava/lang/String;)V +MD: net/minecraft/client/gui/components/EditBox/m_94167_ (Ljava/lang/String;)V net/minecraft/client/gui/components/EditBox/setSuggestion (Ljava/lang/String;)V +MD: net/minecraft/client/gui/components/EditBox/m_94173_ ()Ljava/lang/String; net/minecraft/client/gui/components/EditBox/getHighlighted ()Ljava/lang/String; +MD: net/minecraft/client/gui/components/EditBox/m_94174_ (Ljava/lang/String;)V net/minecraft/client/gui/components/EditBox/onValueChange (Ljava/lang/String;)V +MD: net/minecraft/client/gui/components/EditBox/m_94176_ (I)V net/minecraft/client/gui/components/EditBox/deleteWords (I)V +MD: net/minecraft/client/gui/components/EditBox/m_94180_ (I)V net/minecraft/client/gui/components/EditBox/deleteChars (I)V +MD: net/minecraft/client/gui/components/EditBox/m_94182_ (Z)V net/minecraft/client/gui/components/EditBox/setBordered (Z)V +MD: net/minecraft/client/gui/components/EditBox/m_94184_ (I)I net/minecraft/client/gui/components/EditBox/getWordPosition (I)I +MD: net/minecraft/client/gui/components/EditBox/m_94186_ (Z)V net/minecraft/client/gui/components/EditBox/setEditable (Z)V +MD: net/minecraft/client/gui/components/EditBox/m_94188_ (I)V net/minecraft/client/gui/components/EditBox/moveCursor (I)V +MD: net/minecraft/client/gui/components/EditBox/m_94190_ (Z)V net/minecraft/client/gui/components/EditBox/setCanLoseFocus (Z)V +MD: net/minecraft/client/gui/components/EditBox/m_94192_ (I)V net/minecraft/client/gui/components/EditBox/moveCursorTo (I)V +MD: net/minecraft/client/gui/components/EditBox/m_94194_ (Z)V net/minecraft/client/gui/components/EditBox/setVisible (Z)V +MD: net/minecraft/client/gui/components/EditBox/m_94196_ (I)V net/minecraft/client/gui/components/EditBox/setCursorPosition (I)V +MD: net/minecraft/client/gui/components/EditBox/m_94198_ ()V net/minecraft/client/gui/components/EditBox/moveCursorToStart ()V +MD: net/minecraft/client/gui/components/EditBox/m_94199_ (I)V net/minecraft/client/gui/components/EditBox/setMaxLength (I)V +MD: net/minecraft/client/gui/components/EditBox/m_94201_ ()V net/minecraft/client/gui/components/EditBox/moveCursorToEnd ()V +MD: net/minecraft/client/gui/components/EditBox/m_94202_ (I)V net/minecraft/client/gui/components/EditBox/setTextColor (I)V +MD: net/minecraft/client/gui/components/EditBox/m_94204_ ()Z net/minecraft/client/gui/components/EditBox/canConsumeInput ()Z +MD: net/minecraft/client/gui/components/EditBox/m_94205_ (I)V net/minecraft/client/gui/components/EditBox/setTextColorUneditable (I)V +MD: net/minecraft/client/gui/components/EditBox/m_94207_ ()I net/minecraft/client/gui/components/EditBox/getCursorPosition ()I +MD: net/minecraft/client/gui/components/EditBox/m_94208_ (I)V net/minecraft/client/gui/components/EditBox/setHighlightPos (I)V +MD: net/minecraft/client/gui/components/EditBox/m_94210_ ()I net/minecraft/client/gui/components/EditBox/getInnerWidth ()I +MD: net/minecraft/client/gui/components/EditBox/m_94211_ (I)I net/minecraft/client/gui/components/EditBox/getScreenX (I)I +MD: net/minecraft/client/gui/components/EditBox/m_94213_ ()Z net/minecraft/client/gui/components/EditBox/isVisible ()Z +MD: net/minecraft/client/gui/components/EditBox/m_94216_ ()I net/minecraft/client/gui/components/EditBox/getMaxLength ()I +MD: net/minecraft/client/gui/components/EditBox/m_94217_ (I)V net/minecraft/client/gui/components/EditBox/deleteText (I)V +MD: net/minecraft/client/gui/components/EditBox/m_94219_ ()Z net/minecraft/client/gui/components/EditBox/isBordered ()Z +MD: net/minecraft/client/gui/components/EditBox/m_94220_ (I)I net/minecraft/client/gui/components/EditBox/getCursorPos (I)I +MD: net/minecraft/client/gui/components/EditBox/m_94222_ ()Z net/minecraft/client/gui/components/EditBox/isEditable ()Z +MD: net/minecraft/client/gui/components/FittingMultiLineTextWidget/ (IIIILnet/minecraft/network/chat/Component;Lnet/minecraft/client/gui/Font;)V net/minecraft/client/gui/components/FittingMultiLineTextWidget/ (IIIILnet/minecraft/network/chat/Component;Lnet/minecraft/client/gui/Font;)V +MD: net/minecraft/client/gui/components/FittingMultiLineTextWidget/m_168797_ (Lnet/minecraft/client/gui/narration/NarrationElementOutput;)V net/minecraft/client/gui/components/FittingMultiLineTextWidget/updateWidgetNarration (Lnet/minecraft/client/gui/narration/NarrationElementOutput;)V +MD: net/minecraft/client/gui/components/FittingMultiLineTextWidget/m_239019_ ()I net/minecraft/client/gui/components/FittingMultiLineTextWidget/getInnerHeight ()I +MD: net/minecraft/client/gui/components/FittingMultiLineTextWidget/m_239197_ (Lnet/minecraft/client/gui/GuiGraphics;IIF)V net/minecraft/client/gui/components/FittingMultiLineTextWidget/renderContents (Lnet/minecraft/client/gui/GuiGraphics;IIF)V +MD: net/minecraft/client/gui/components/FittingMultiLineTextWidget/m_239725_ ()D net/minecraft/client/gui/components/FittingMultiLineTextWidget/scrollRate ()D +MD: net/minecraft/client/gui/components/FittingMultiLineTextWidget/m_240048_ (Lnet/minecraft/client/gui/GuiGraphics;)V net/minecraft/client/gui/components/FittingMultiLineTextWidget/renderBackground (Lnet/minecraft/client/gui/GuiGraphics;)V +MD: net/minecraft/client/gui/components/FittingMultiLineTextWidget/m_289737_ (I)Lnet/minecraft/client/gui/components/FittingMultiLineTextWidget; net/minecraft/client/gui/components/FittingMultiLineTextWidget/setColor (I)Lnet/minecraft/client/gui/components/FittingMultiLineTextWidget; +MD: net/minecraft/client/gui/components/FittingMultiLineTextWidget/m_87963_ (Lnet/minecraft/client/gui/GuiGraphics;IIF)V net/minecraft/client/gui/components/FittingMultiLineTextWidget/renderWidget (Lnet/minecraft/client/gui/GuiGraphics;IIF)V +MD: net/minecraft/client/gui/components/FittingMultiLineTextWidget/m_93674_ (I)V net/minecraft/client/gui/components/FittingMultiLineTextWidget/setWidth (I)V +MD: net/minecraft/client/gui/components/ImageButton/ (IIIIIILnet/minecraft/resources/ResourceLocation;Lnet/minecraft/client/gui/components/Button$OnPress;)V net/minecraft/client/gui/components/ImageButton/ (IIIIIILnet/minecraft/resources/ResourceLocation;Lnet/minecraft/client/gui/components/Button$OnPress;)V +MD: net/minecraft/client/gui/components/ImageButton/ (IIIIIIILnet/minecraft/resources/ResourceLocation;IILnet/minecraft/client/gui/components/Button$OnPress;)V net/minecraft/client/gui/components/ImageButton/ (IIIIIIILnet/minecraft/resources/ResourceLocation;IILnet/minecraft/client/gui/components/Button$OnPress;)V +MD: net/minecraft/client/gui/components/ImageButton/ (IIIIIIILnet/minecraft/resources/ResourceLocation;IILnet/minecraft/client/gui/components/Button$OnPress;Lnet/minecraft/network/chat/Component;)V net/minecraft/client/gui/components/ImageButton/ (IIIIIIILnet/minecraft/resources/ResourceLocation;IILnet/minecraft/client/gui/components/Button$OnPress;Lnet/minecraft/network/chat/Component;)V +MD: net/minecraft/client/gui/components/ImageButton/ (IIIIIIILnet/minecraft/resources/ResourceLocation;Lnet/minecraft/client/gui/components/Button$OnPress;)V net/minecraft/client/gui/components/ImageButton/ (IIIIIIILnet/minecraft/resources/ResourceLocation;Lnet/minecraft/client/gui/components/Button$OnPress;)V +MD: net/minecraft/client/gui/components/ImageButton/m_87963_ (Lnet/minecraft/client/gui/GuiGraphics;IIF)V net/minecraft/client/gui/components/ImageButton/renderWidget (Lnet/minecraft/client/gui/GuiGraphics;IIF)V +MD: net/minecraft/client/gui/components/ImageWidget/ (IILnet/minecraft/resources/ResourceLocation;)V net/minecraft/client/gui/components/ImageWidget/ (IILnet/minecraft/resources/ResourceLocation;)V +MD: net/minecraft/client/gui/components/ImageWidget/ (IIIILnet/minecraft/resources/ResourceLocation;)V net/minecraft/client/gui/components/ImageWidget/ (IIIILnet/minecraft/resources/ResourceLocation;)V +MD: net/minecraft/client/gui/components/ImageWidget/m_168797_ (Lnet/minecraft/client/gui/narration/NarrationElementOutput;)V net/minecraft/client/gui/components/ImageWidget/updateWidgetNarration (Lnet/minecraft/client/gui/narration/NarrationElementOutput;)V +MD: net/minecraft/client/gui/components/ImageWidget/m_87963_ (Lnet/minecraft/client/gui/GuiGraphics;IIF)V net/minecraft/client/gui/components/ImageWidget/renderWidget (Lnet/minecraft/client/gui/GuiGraphics;IIF)V +MD: net/minecraft/client/gui/components/LerpingBossEvent/ (Ljava/util/UUID;Lnet/minecraft/network/chat/Component;FLnet/minecraft/world/BossEvent$BossBarColor;Lnet/minecraft/world/BossEvent$BossBarOverlay;ZZZ)V net/minecraft/client/gui/components/LerpingBossEvent/ (Ljava/util/UUID;Lnet/minecraft/network/chat/Component;FLnet/minecraft/world/BossEvent$BossBarColor;Lnet/minecraft/world/BossEvent$BossBarOverlay;ZZZ)V +MD: net/minecraft/client/gui/components/LerpingBossEvent/m_142711_ (F)V net/minecraft/client/gui/components/LerpingBossEvent/setProgress (F)V +MD: net/minecraft/client/gui/components/LerpingBossEvent/m_142717_ ()F net/minecraft/client/gui/components/LerpingBossEvent/getProgress ()F +MD: net/minecraft/client/gui/components/LockIconButton/ (IILnet/minecraft/client/gui/components/Button$OnPress;)V net/minecraft/client/gui/components/LockIconButton/ (IILnet/minecraft/client/gui/components/Button$OnPress;)V +MD: net/minecraft/client/gui/components/LockIconButton/m_5646_ ()Lnet/minecraft/network/chat/MutableComponent; net/minecraft/client/gui/components/LockIconButton/createNarrationMessage ()Lnet/minecraft/network/chat/MutableComponent; +MD: net/minecraft/client/gui/components/LockIconButton/m_87963_ (Lnet/minecraft/client/gui/GuiGraphics;IIF)V net/minecraft/client/gui/components/LockIconButton/renderWidget (Lnet/minecraft/client/gui/GuiGraphics;IIF)V +MD: net/minecraft/client/gui/components/LockIconButton/m_94302_ ()Z net/minecraft/client/gui/components/LockIconButton/isLocked ()Z +MD: net/minecraft/client/gui/components/LockIconButton/m_94309_ (Z)V net/minecraft/client/gui/components/LockIconButton/setLocked (Z)V +MD: net/minecraft/client/gui/components/LockIconButton$Icon/ ()V net/minecraft/client/gui/components/LockIconButton$Icon/ ()V +MD: net/minecraft/client/gui/components/LockIconButton$Icon/ (Ljava/lang/String;III)V net/minecraft/client/gui/components/LockIconButton$Icon/ (Ljava/lang/String;III)V +MD: net/minecraft/client/gui/components/LockIconButton$Icon/m_169032_ ()[Lnet/minecraft/client/gui/components/LockIconButton$Icon; net/minecraft/client/gui/components/LockIconButton$Icon/$values ()[Lnet/minecraft/client/gui/components/LockIconButton$Icon; +MD: net/minecraft/client/gui/components/LockIconButton$Icon/m_94326_ ()I net/minecraft/client/gui/components/LockIconButton$Icon/getX ()I +MD: net/minecraft/client/gui/components/LockIconButton$Icon/m_94327_ ()I net/minecraft/client/gui/components/LockIconButton$Icon/getY ()I +MD: net/minecraft/client/gui/components/LockIconButton$Icon/valueOf (Ljava/lang/String;)Lnet/minecraft/client/gui/components/LockIconButton$Icon; net/minecraft/client/gui/components/LockIconButton$Icon/valueOf (Ljava/lang/String;)Lnet/minecraft/client/gui/components/LockIconButton$Icon; +MD: net/minecraft/client/gui/components/LockIconButton$Icon/values ()[Lnet/minecraft/client/gui/components/LockIconButton$Icon; net/minecraft/client/gui/components/LockIconButton$Icon/values ()[Lnet/minecraft/client/gui/components/LockIconButton$Icon; +MD: net/minecraft/client/gui/components/LogoRenderer/ ()V net/minecraft/client/gui/components/LogoRenderer/ ()V +MD: net/minecraft/client/gui/components/LogoRenderer/ (Z)V net/minecraft/client/gui/components/LogoRenderer/ (Z)V +MD: net/minecraft/client/gui/components/LogoRenderer/m_280037_ (Lnet/minecraft/client/gui/GuiGraphics;IF)V net/minecraft/client/gui/components/LogoRenderer/renderLogo (Lnet/minecraft/client/gui/GuiGraphics;IF)V +MD: net/minecraft/client/gui/components/LogoRenderer/m_280118_ (Lnet/minecraft/client/gui/GuiGraphics;IFI)V net/minecraft/client/gui/components/LogoRenderer/renderLogo (Lnet/minecraft/client/gui/GuiGraphics;IFI)V +MD: net/minecraft/client/gui/components/MultiLineEditBox/ (Lnet/minecraft/client/gui/Font;IIIILnet/minecraft/network/chat/Component;Lnet/minecraft/network/chat/Component;)V net/minecraft/client/gui/components/MultiLineEditBox/ (Lnet/minecraft/client/gui/Font;IIIILnet/minecraft/network/chat/Component;Lnet/minecraft/network/chat/Component;)V +MD: net/minecraft/client/gui/components/MultiLineEditBox/m_168797_ (Lnet/minecraft/client/gui/narration/NarrationElementOutput;)V net/minecraft/client/gui/components/MultiLineEditBox/updateWidgetNarration (Lnet/minecraft/client/gui/narration/NarrationElementOutput;)V +MD: net/minecraft/client/gui/components/MultiLineEditBox/m_239019_ ()I net/minecraft/client/gui/components/MultiLineEditBox/getInnerHeight ()I +MD: net/minecraft/client/gui/components/MultiLineEditBox/m_239197_ (Lnet/minecraft/client/gui/GuiGraphics;IIF)V net/minecraft/client/gui/components/MultiLineEditBox/renderContents (Lnet/minecraft/client/gui/GuiGraphics;IIF)V +MD: net/minecraft/client/gui/components/MultiLineEditBox/m_239213_ ()V net/minecraft/client/gui/components/MultiLineEditBox/tick ()V +MD: net/minecraft/client/gui/components/MultiLineEditBox/m_239249_ ()Ljava/lang/String; net/minecraft/client/gui/components/MultiLineEditBox/getValue ()Ljava/lang/String; +MD: net/minecraft/client/gui/components/MultiLineEditBox/m_239273_ (Ljava/util/function/Consumer;)V net/minecraft/client/gui/components/MultiLineEditBox/setValueListener (Ljava/util/function/Consumer;)V +MD: net/minecraft/client/gui/components/MultiLineEditBox/m_239275_ (DD)V net/minecraft/client/gui/components/MultiLineEditBox/seekCursorScreen (DD)V +MD: net/minecraft/client/gui/components/MultiLineEditBox/m_239313_ (I)V net/minecraft/client/gui/components/MultiLineEditBox/setCharacterLimit (I)V +MD: net/minecraft/client/gui/components/MultiLineEditBox/m_239516_ (Lnet/minecraft/client/gui/GuiGraphics;)V net/minecraft/client/gui/components/MultiLineEditBox/renderDecorations (Lnet/minecraft/client/gui/GuiGraphics;)V +MD: net/minecraft/client/gui/components/MultiLineEditBox/m_239656_ ()Z net/minecraft/client/gui/components/MultiLineEditBox/scrollbarVisible ()Z +MD: net/minecraft/client/gui/components/MultiLineEditBox/m_239725_ ()D net/minecraft/client/gui/components/MultiLineEditBox/scrollRate ()D +MD: net/minecraft/client/gui/components/MultiLineEditBox/m_239745_ ()D net/minecraft/client/gui/components/MultiLineEditBox/getDisplayableLineCount ()D +MD: net/minecraft/client/gui/components/MultiLineEditBox/m_239911_ ()V net/minecraft/client/gui/components/MultiLineEditBox/scrollToCursor ()V +MD: net/minecraft/client/gui/components/MultiLineEditBox/m_240159_ (Ljava/lang/String;)V net/minecraft/client/gui/components/MultiLineEditBox/setValue (Ljava/lang/String;)V +MD: net/minecraft/client/gui/components/MultiLineEditBox/m_280065_ (Lnet/minecraft/client/gui/GuiGraphics;IIII)V net/minecraft/client/gui/components/MultiLineEditBox/renderHighlight (Lnet/minecraft/client/gui/GuiGraphics;IIII)V +MD: net/minecraft/client/gui/components/MultiLineEditBox/m_5534_ (CI)Z net/minecraft/client/gui/components/MultiLineEditBox/charTyped (CI)Z +MD: net/minecraft/client/gui/components/MultiLineEditBox/m_6375_ (DDI)Z net/minecraft/client/gui/components/MultiLineEditBox/mouseClicked (DDI)Z +MD: net/minecraft/client/gui/components/MultiLineEditBox/m_7933_ (III)Z net/minecraft/client/gui/components/MultiLineEditBox/keyPressed (III)Z +MD: net/minecraft/client/gui/components/MultiLineEditBox/m_7979_ (DDIDD)Z net/minecraft/client/gui/components/MultiLineEditBox/mouseDragged (DDIDD)Z +MD: net/minecraft/client/gui/components/MultiLineLabel/ ()V net/minecraft/client/gui/components/MultiLineLabel/ ()V +MD: net/minecraft/client/gui/components/MultiLineLabel/m_169033_ (Lnet/minecraft/client/gui/Font;Lnet/minecraft/util/FormattedCharSequence;)Lnet/minecraft/client/gui/components/MultiLineLabel$TextWithWidth; net/minecraft/client/gui/components/MultiLineLabel/lambda$create$3 (Lnet/minecraft/client/gui/Font;Lnet/minecraft/util/FormattedCharSequence;)Lnet/minecraft/client/gui/components/MultiLineLabel$TextWithWidth; +MD: net/minecraft/client/gui/components/MultiLineLabel/m_169036_ (Lnet/minecraft/client/gui/Font;Ljava/util/List;)Lnet/minecraft/client/gui/components/MultiLineLabel; net/minecraft/client/gui/components/MultiLineLabel/create (Lnet/minecraft/client/gui/Font;Ljava/util/List;)Lnet/minecraft/client/gui/components/MultiLineLabel; +MD: net/minecraft/client/gui/components/MultiLineLabel/m_207298_ (Lnet/minecraft/client/gui/GuiGraphics;IIIII)V net/minecraft/client/gui/components/MultiLineLabel/renderBackgroundCentered (Lnet/minecraft/client/gui/GuiGraphics;IIIII)V +MD: net/minecraft/client/gui/components/MultiLineLabel/m_214161_ ()I net/minecraft/client/gui/components/MultiLineLabel/getWidth ()I +MD: net/minecraft/client/gui/components/MultiLineLabel/m_5770_ ()I net/minecraft/client/gui/components/MultiLineLabel/getLineCount ()I +MD: net/minecraft/client/gui/components/MultiLineLabel/m_6276_ (Lnet/minecraft/client/gui/GuiGraphics;II)I net/minecraft/client/gui/components/MultiLineLabel/renderCentered (Lnet/minecraft/client/gui/GuiGraphics;II)I +MD: net/minecraft/client/gui/components/MultiLineLabel/m_6508_ (Lnet/minecraft/client/gui/GuiGraphics;IIII)I net/minecraft/client/gui/components/MultiLineLabel/renderLeftAligned (Lnet/minecraft/client/gui/GuiGraphics;IIII)I +MD: net/minecraft/client/gui/components/MultiLineLabel/m_6514_ (Lnet/minecraft/client/gui/GuiGraphics;IIII)I net/minecraft/client/gui/components/MultiLineLabel/renderCentered (Lnet/minecraft/client/gui/GuiGraphics;IIII)I +MD: net/minecraft/client/gui/components/MultiLineLabel/m_6516_ (Lnet/minecraft/client/gui/GuiGraphics;IIII)I net/minecraft/client/gui/components/MultiLineLabel/renderLeftAlignedNoShadow (Lnet/minecraft/client/gui/GuiGraphics;IIII)I +MD: net/minecraft/client/gui/components/MultiLineLabel/m_94341_ (Lnet/minecraft/client/gui/Font;Lnet/minecraft/network/chat/FormattedText;I)Lnet/minecraft/client/gui/components/MultiLineLabel; net/minecraft/client/gui/components/MultiLineLabel/create (Lnet/minecraft/client/gui/Font;Lnet/minecraft/network/chat/FormattedText;I)Lnet/minecraft/client/gui/components/MultiLineLabel; +MD: net/minecraft/client/gui/components/MultiLineLabel/m_94345_ (Lnet/minecraft/client/gui/Font;Lnet/minecraft/network/chat/FormattedText;II)Lnet/minecraft/client/gui/components/MultiLineLabel; net/minecraft/client/gui/components/MultiLineLabel/create (Lnet/minecraft/client/gui/Font;Lnet/minecraft/network/chat/FormattedText;II)Lnet/minecraft/client/gui/components/MultiLineLabel; +MD: net/minecraft/client/gui/components/MultiLineLabel/m_94350_ (Lnet/minecraft/client/gui/Font;[Lnet/minecraft/network/chat/Component;)Lnet/minecraft/client/gui/components/MultiLineLabel; net/minecraft/client/gui/components/MultiLineLabel/create (Lnet/minecraft/client/gui/Font;[Lnet/minecraft/network/chat/Component;)Lnet/minecraft/client/gui/components/MultiLineLabel; +MD: net/minecraft/client/gui/components/MultiLineLabel/m_94358_ (Lnet/minecraft/client/gui/Font;Lnet/minecraft/util/FormattedCharSequence;)Lnet/minecraft/client/gui/components/MultiLineLabel$TextWithWidth; net/minecraft/client/gui/components/MultiLineLabel/lambda$create$2 (Lnet/minecraft/client/gui/Font;Lnet/minecraft/util/FormattedCharSequence;)Lnet/minecraft/client/gui/components/MultiLineLabel$TextWithWidth; +MD: net/minecraft/client/gui/components/MultiLineLabel/m_94361_ (Lnet/minecraft/client/gui/Font;Ljava/util/List;)Lnet/minecraft/client/gui/components/MultiLineLabel; net/minecraft/client/gui/components/MultiLineLabel/createFixed (Lnet/minecraft/client/gui/Font;Ljava/util/List;)Lnet/minecraft/client/gui/components/MultiLineLabel; +MD: net/minecraft/client/gui/components/MultiLineLabel/m_94369_ (Lnet/minecraft/client/gui/Font;Lnet/minecraft/util/FormattedCharSequence;)Lnet/minecraft/client/gui/components/MultiLineLabel$TextWithWidth; net/minecraft/client/gui/components/MultiLineLabel/lambda$create$1 (Lnet/minecraft/client/gui/Font;Lnet/minecraft/util/FormattedCharSequence;)Lnet/minecraft/client/gui/components/MultiLineLabel$TextWithWidth; +MD: net/minecraft/client/gui/components/MultiLineLabel/m_94372_ (Lnet/minecraft/client/gui/Font;Lnet/minecraft/util/FormattedCharSequence;)Lnet/minecraft/client/gui/components/MultiLineLabel$TextWithWidth; net/minecraft/client/gui/components/MultiLineLabel/lambda$create$0 (Lnet/minecraft/client/gui/Font;Lnet/minecraft/util/FormattedCharSequence;)Lnet/minecraft/client/gui/components/MultiLineLabel$TextWithWidth; +MD: net/minecraft/client/gui/components/MultiLineLabel$1/ ()V net/minecraft/client/gui/components/MultiLineLabel$1/ ()V +MD: net/minecraft/client/gui/components/MultiLineLabel$1/m_207298_ (Lnet/minecraft/client/gui/GuiGraphics;IIIII)V net/minecraft/client/gui/components/MultiLineLabel$1/renderBackgroundCentered (Lnet/minecraft/client/gui/GuiGraphics;IIIII)V +MD: net/minecraft/client/gui/components/MultiLineLabel$1/m_214161_ ()I net/minecraft/client/gui/components/MultiLineLabel$1/getWidth ()I +MD: net/minecraft/client/gui/components/MultiLineLabel$1/m_5770_ ()I net/minecraft/client/gui/components/MultiLineLabel$1/getLineCount ()I +MD: net/minecraft/client/gui/components/MultiLineLabel$1/m_6276_ (Lnet/minecraft/client/gui/GuiGraphics;II)I net/minecraft/client/gui/components/MultiLineLabel$1/renderCentered (Lnet/minecraft/client/gui/GuiGraphics;II)I +MD: net/minecraft/client/gui/components/MultiLineLabel$1/m_6508_ (Lnet/minecraft/client/gui/GuiGraphics;IIII)I net/minecraft/client/gui/components/MultiLineLabel$1/renderLeftAligned (Lnet/minecraft/client/gui/GuiGraphics;IIII)I +MD: net/minecraft/client/gui/components/MultiLineLabel$1/m_6514_ (Lnet/minecraft/client/gui/GuiGraphics;IIII)I net/minecraft/client/gui/components/MultiLineLabel$1/renderCentered (Lnet/minecraft/client/gui/GuiGraphics;IIII)I +MD: net/minecraft/client/gui/components/MultiLineLabel$1/m_6516_ (Lnet/minecraft/client/gui/GuiGraphics;IIII)I net/minecraft/client/gui/components/MultiLineLabel$1/renderLeftAlignedNoShadow (Lnet/minecraft/client/gui/GuiGraphics;IIII)I +MD: net/minecraft/client/gui/components/MultiLineLabel$2/ (Ljava/util/List;Lnet/minecraft/client/gui/Font;)V net/minecraft/client/gui/components/MultiLineLabel$2/ (Ljava/util/List;Lnet/minecraft/client/gui/Font;)V +MD: net/minecraft/client/gui/components/MultiLineLabel$2/m_207298_ (Lnet/minecraft/client/gui/GuiGraphics;IIIII)V net/minecraft/client/gui/components/MultiLineLabel$2/renderBackgroundCentered (Lnet/minecraft/client/gui/GuiGraphics;IIIII)V +MD: net/minecraft/client/gui/components/MultiLineLabel$2/m_214161_ ()I net/minecraft/client/gui/components/MultiLineLabel$2/getWidth ()I +MD: net/minecraft/client/gui/components/MultiLineLabel$2/m_232523_ (Lnet/minecraft/client/gui/components/MultiLineLabel$TextWithWidth;)I net/minecraft/client/gui/components/MultiLineLabel$2/lambda$renderBackgroundCentered$1 (Lnet/minecraft/client/gui/components/MultiLineLabel$TextWithWidth;)I +MD: net/minecraft/client/gui/components/MultiLineLabel$2/m_232526_ (Lnet/minecraft/client/gui/components/MultiLineLabel$TextWithWidth;)I net/minecraft/client/gui/components/MultiLineLabel$2/lambda$$0 (Lnet/minecraft/client/gui/components/MultiLineLabel$TextWithWidth;)I +MD: net/minecraft/client/gui/components/MultiLineLabel$2/m_5770_ ()I net/minecraft/client/gui/components/MultiLineLabel$2/getLineCount ()I +MD: net/minecraft/client/gui/components/MultiLineLabel$2/m_6276_ (Lnet/minecraft/client/gui/GuiGraphics;II)I net/minecraft/client/gui/components/MultiLineLabel$2/renderCentered (Lnet/minecraft/client/gui/GuiGraphics;II)I +MD: net/minecraft/client/gui/components/MultiLineLabel$2/m_6508_ (Lnet/minecraft/client/gui/GuiGraphics;IIII)I net/minecraft/client/gui/components/MultiLineLabel$2/renderLeftAligned (Lnet/minecraft/client/gui/GuiGraphics;IIII)I +MD: net/minecraft/client/gui/components/MultiLineLabel$2/m_6514_ (Lnet/minecraft/client/gui/GuiGraphics;IIII)I net/minecraft/client/gui/components/MultiLineLabel$2/renderCentered (Lnet/minecraft/client/gui/GuiGraphics;IIII)I +MD: net/minecraft/client/gui/components/MultiLineLabel$2/m_6516_ (Lnet/minecraft/client/gui/GuiGraphics;IIII)I net/minecraft/client/gui/components/MultiLineLabel$2/renderLeftAlignedNoShadow (Lnet/minecraft/client/gui/GuiGraphics;IIII)I +MD: net/minecraft/client/gui/components/MultiLineLabel$TextWithWidth/ (Lnet/minecraft/util/FormattedCharSequence;I)V net/minecraft/client/gui/components/MultiLineLabel$TextWithWidth/ (Lnet/minecraft/util/FormattedCharSequence;I)V +MD: net/minecraft/client/gui/components/MultiLineTextWidget/ (IILnet/minecraft/network/chat/Component;Lnet/minecraft/client/gui/Font;)V net/minecraft/client/gui/components/MultiLineTextWidget/ (IILnet/minecraft/network/chat/Component;Lnet/minecraft/client/gui/Font;)V +MD: net/minecraft/client/gui/components/MultiLineTextWidget/ (Lnet/minecraft/network/chat/Component;Lnet/minecraft/client/gui/Font;)V net/minecraft/client/gui/components/MultiLineTextWidget/ (Lnet/minecraft/network/chat/Component;Lnet/minecraft/client/gui/Font;)V +MD: net/minecraft/client/gui/components/MultiLineTextWidget/m_269033_ (I)Lnet/minecraft/client/gui/components/MultiLineTextWidget; net/minecraft/client/gui/components/MultiLineTextWidget/setColor (I)Lnet/minecraft/client/gui/components/MultiLineTextWidget; +MD: net/minecraft/client/gui/components/MultiLineTextWidget/m_269033_ (I)Lnet/minecraft/client/gui/components/AbstractStringWidget; net/minecraft/client/gui/components/MultiLineTextWidget/setColor (I)Lnet/minecraft/client/gui/components/AbstractStringWidget; +MD: net/minecraft/client/gui/components/MultiLineTextWidget/m_269098_ (I)Lnet/minecraft/client/gui/components/MultiLineTextWidget; net/minecraft/client/gui/components/MultiLineTextWidget/setMaxWidth (I)Lnet/minecraft/client/gui/components/MultiLineTextWidget; +MD: net/minecraft/client/gui/components/MultiLineTextWidget/m_269328_ (I)Lnet/minecraft/client/gui/components/MultiLineTextWidget; net/minecraft/client/gui/components/MultiLineTextWidget/setMaxRows (I)Lnet/minecraft/client/gui/components/MultiLineTextWidget; +MD: net/minecraft/client/gui/components/MultiLineTextWidget/m_269393_ ()Lnet/minecraft/client/gui/components/MultiLineTextWidget$CacheKey; net/minecraft/client/gui/components/MultiLineTextWidget/getFreshCacheKey ()Lnet/minecraft/client/gui/components/MultiLineTextWidget$CacheKey; +MD: net/minecraft/client/gui/components/MultiLineTextWidget/m_269442_ (Lnet/minecraft/client/gui/Font;Lnet/minecraft/client/gui/components/MultiLineTextWidget$CacheKey;)Lnet/minecraft/client/gui/components/MultiLineLabel; net/minecraft/client/gui/components/MultiLineTextWidget/lambda$new$0 (Lnet/minecraft/client/gui/Font;Lnet/minecraft/client/gui/components/MultiLineTextWidget$CacheKey;)Lnet/minecraft/client/gui/components/MultiLineLabel; +MD: net/minecraft/client/gui/components/MultiLineTextWidget/m_269484_ (Z)Lnet/minecraft/client/gui/components/MultiLineTextWidget; net/minecraft/client/gui/components/MultiLineTextWidget/setCentered (Z)Lnet/minecraft/client/gui/components/MultiLineTextWidget; +MD: net/minecraft/client/gui/components/MultiLineTextWidget/m_5711_ ()I net/minecraft/client/gui/components/MultiLineTextWidget/getWidth ()I +MD: net/minecraft/client/gui/components/MultiLineTextWidget/m_87963_ (Lnet/minecraft/client/gui/GuiGraphics;IIF)V net/minecraft/client/gui/components/MultiLineTextWidget/renderWidget (Lnet/minecraft/client/gui/GuiGraphics;IIF)V +MD: net/minecraft/client/gui/components/MultiLineTextWidget/m_93694_ ()I net/minecraft/client/gui/components/MultiLineTextWidget/getHeight ()I +MD: net/minecraft/client/gui/components/MultiLineTextWidget$CacheKey/ (Lnet/minecraft/network/chat/Component;ILjava/util/OptionalInt;)V net/minecraft/client/gui/components/MultiLineTextWidget$CacheKey/ (Lnet/minecraft/network/chat/Component;ILjava/util/OptionalInt;)V +MD: net/minecraft/client/gui/components/MultiLineTextWidget$CacheKey/equals (Ljava/lang/Object;)Z net/minecraft/client/gui/components/MultiLineTextWidget$CacheKey/equals (Ljava/lang/Object;)Z +MD: net/minecraft/client/gui/components/MultiLineTextWidget$CacheKey/f_268550_ ()Ljava/util/OptionalInt; net/minecraft/client/gui/components/MultiLineTextWidget$CacheKey/maxRows ()Ljava/util/OptionalInt; +MD: net/minecraft/client/gui/components/MultiLineTextWidget$CacheKey/f_268646_ ()I net/minecraft/client/gui/components/MultiLineTextWidget$CacheKey/maxWidth ()I +MD: net/minecraft/client/gui/components/MultiLineTextWidget$CacheKey/f_268701_ ()Lnet/minecraft/network/chat/Component; net/minecraft/client/gui/components/MultiLineTextWidget$CacheKey/message ()Lnet/minecraft/network/chat/Component; +MD: net/minecraft/client/gui/components/MultiLineTextWidget$CacheKey/hashCode ()I net/minecraft/client/gui/components/MultiLineTextWidget$CacheKey/hashCode ()I +MD: net/minecraft/client/gui/components/MultiLineTextWidget$CacheKey/toString ()Ljava/lang/String; net/minecraft/client/gui/components/MultiLineTextWidget$CacheKey/toString ()Ljava/lang/String; +MD: net/minecraft/client/gui/components/MultilineTextField/ (Lnet/minecraft/client/gui/Font;I)V net/minecraft/client/gui/components/MultilineTextField/ (Lnet/minecraft/client/gui/Font;I)V +MD: net/minecraft/client/gui/components/MultilineTextField/m_239144_ (I)Lnet/minecraft/client/gui/components/MultilineTextField$StringView; net/minecraft/client/gui/components/MultilineTextField/getLineView (I)Lnet/minecraft/client/gui/components/MultilineTextField$StringView; +MD: net/minecraft/client/gui/components/MultilineTextField/m_239234_ (Ljava/lang/String;)V net/minecraft/client/gui/components/MultilineTextField/lambda$new$0 (Ljava/lang/String;)V +MD: net/minecraft/client/gui/components/MultilineTextField/m_239257_ (Ljava/lang/Runnable;)V net/minecraft/client/gui/components/MultilineTextField/setCursorListener (Ljava/lang/Runnable;)V +MD: net/minecraft/client/gui/components/MultilineTextField/m_239268_ ()I net/minecraft/client/gui/components/MultilineTextField/getLineAtCursor ()I +MD: net/minecraft/client/gui/components/MultilineTextField/m_239290_ ()Ljava/lang/Iterable; net/minecraft/client/gui/components/MultilineTextField/iterateLines ()Ljava/lang/Iterable; +MD: net/minecraft/client/gui/components/MultilineTextField/m_239340_ ()I net/minecraft/client/gui/components/MultilineTextField/getLineCount ()I +MD: net/minecraft/client/gui/components/MultilineTextField/m_239344_ ()Z net/minecraft/client/gui/components/MultilineTextField/hasSelection ()Z +MD: net/minecraft/client/gui/components/MultilineTextField/m_239361_ ()Lnet/minecraft/client/gui/components/MultilineTextField$StringView; net/minecraft/client/gui/components/MultilineTextField/getNextWord ()Lnet/minecraft/client/gui/components/MultilineTextField$StringView; +MD: net/minecraft/client/gui/components/MultilineTextField/m_239390_ ()I net/minecraft/client/gui/components/MultilineTextField/characterLimit ()I +MD: net/minecraft/client/gui/components/MultilineTextField/m_239393_ (I)V net/minecraft/client/gui/components/MultilineTextField/seekCursorLine (I)V +MD: net/minecraft/client/gui/components/MultilineTextField/m_239417_ (Ljava/lang/String;)Ljava/lang/String; net/minecraft/client/gui/components/MultilineTextField/truncateInsertionText (Ljava/lang/String;)Ljava/lang/String; +MD: net/minecraft/client/gui/components/MultilineTextField/m_239456_ ()I net/minecraft/client/gui/components/MultilineTextField/cursor ()I +MD: net/minecraft/client/gui/components/MultilineTextField/m_239474_ (I)V net/minecraft/client/gui/components/MultilineTextField/deleteText (I)V +MD: net/minecraft/client/gui/components/MultilineTextField/m_239578_ (DD)V net/minecraft/client/gui/components/MultilineTextField/seekCursorToPoint (DD)V +MD: net/minecraft/client/gui/components/MultilineTextField/m_239618_ ()Ljava/lang/String; net/minecraft/client/gui/components/MultilineTextField/value ()Ljava/lang/String; +MD: net/minecraft/client/gui/components/MultilineTextField/m_239629_ ()Z net/minecraft/client/gui/components/MultilineTextField/hasCharacterLimit ()Z +MD: net/minecraft/client/gui/components/MultilineTextField/m_239637_ ()Lnet/minecraft/client/gui/components/MultilineTextField$StringView; net/minecraft/client/gui/components/MultilineTextField/getPreviousWord ()Lnet/minecraft/client/gui/components/MultilineTextField$StringView; +MD: net/minecraft/client/gui/components/MultilineTextField/m_239677_ (Ljava/lang/String;)V net/minecraft/client/gui/components/MultilineTextField/setValue (Ljava/lang/String;)V +MD: net/minecraft/client/gui/components/MultilineTextField/m_239711_ (I)Z net/minecraft/client/gui/components/MultilineTextField/keyPressed (I)Z +MD: net/minecraft/client/gui/components/MultilineTextField/m_239743_ ()V net/minecraft/client/gui/components/MultilineTextField/onValueChange ()V +MD: net/minecraft/client/gui/components/MultilineTextField/m_239744_ ()V net/minecraft/client/gui/components/MultilineTextField/lambda$new$1 ()V +MD: net/minecraft/client/gui/components/MultilineTextField/m_239797_ (Lnet/minecraft/client/gui/components/Whence;I)V net/minecraft/client/gui/components/MultilineTextField/seekCursor (Lnet/minecraft/client/gui/components/Whence;I)V +MD: net/minecraft/client/gui/components/MultilineTextField/m_239842_ (Ljava/lang/String;)Ljava/lang/String; net/minecraft/client/gui/components/MultilineTextField/truncateFullText (Ljava/lang/String;)Ljava/lang/String; +MD: net/minecraft/client/gui/components/MultilineTextField/m_239845_ (Lnet/minecraft/network/chat/Style;II)V net/minecraft/client/gui/components/MultilineTextField/lambda$reflowDisplayLines$2 (Lnet/minecraft/network/chat/Style;II)V +MD: net/minecraft/client/gui/components/MultilineTextField/m_239854_ (I)Lnet/minecraft/client/gui/components/MultilineTextField$StringView; net/minecraft/client/gui/components/MultilineTextField/getCursorLineView (I)Lnet/minecraft/client/gui/components/MultilineTextField$StringView; +MD: net/minecraft/client/gui/components/MultilineTextField/m_239915_ ()V net/minecraft/client/gui/components/MultilineTextField/reflowDisplayLines ()V +MD: net/minecraft/client/gui/components/MultilineTextField/m_239919_ (Ljava/util/function/Consumer;)V net/minecraft/client/gui/components/MultilineTextField/setValueListener (Ljava/util/function/Consumer;)V +MD: net/minecraft/client/gui/components/MultilineTextField/m_239950_ (Z)V net/minecraft/client/gui/components/MultilineTextField/setSelecting (Z)V +MD: net/minecraft/client/gui/components/MultilineTextField/m_239982_ ()Lnet/minecraft/client/gui/components/MultilineTextField$StringView; net/minecraft/client/gui/components/MultilineTextField/getSelected ()Lnet/minecraft/client/gui/components/MultilineTextField$StringView; +MD: net/minecraft/client/gui/components/MultilineTextField/m_240015_ (Ljava/lang/String;)V net/minecraft/client/gui/components/MultilineTextField/insertText (Ljava/lang/String;)V +MD: net/minecraft/client/gui/components/MultilineTextField/m_240043_ ()Lnet/minecraft/client/gui/components/MultilineTextField$StringView; net/minecraft/client/gui/components/MultilineTextField/getCursorLineView ()Lnet/minecraft/client/gui/components/MultilineTextField$StringView; +MD: net/minecraft/client/gui/components/MultilineTextField/m_240059_ ()Ljava/lang/String; net/minecraft/client/gui/components/MultilineTextField/getSelectedText ()Ljava/lang/String; +MD: net/minecraft/client/gui/components/MultilineTextField/m_240092_ (I)I net/minecraft/client/gui/components/MultilineTextField/getWordEndPosition (I)I +MD: net/minecraft/client/gui/components/MultilineTextField/m_240162_ (I)V net/minecraft/client/gui/components/MultilineTextField/setCharacterLimit (I)V +MD: net/minecraft/client/gui/components/MultilineTextField$1/ ()V net/minecraft/client/gui/components/MultilineTextField$1/ ()V +MD: net/minecraft/client/gui/components/MultilineTextField$StringView/ ()V net/minecraft/client/gui/components/MultilineTextField$StringView/ ()V +MD: net/minecraft/client/gui/components/MultilineTextField$StringView/ (II)V net/minecraft/client/gui/components/MultilineTextField$StringView/ (II)V +MD: net/minecraft/client/gui/components/MultilineTextField$StringView/equals (Ljava/lang/Object;)Z net/minecraft/client/gui/components/MultilineTextField$StringView/equals (Ljava/lang/Object;)Z +MD: net/minecraft/client/gui/components/MultilineTextField$StringView/f_238590_ ()I net/minecraft/client/gui/components/MultilineTextField$StringView/beginIndex ()I +MD: net/minecraft/client/gui/components/MultilineTextField$StringView/f_238654_ ()I net/minecraft/client/gui/components/MultilineTextField$StringView/endIndex ()I +MD: net/minecraft/client/gui/components/MultilineTextField$StringView/hashCode ()I net/minecraft/client/gui/components/MultilineTextField$StringView/hashCode ()I +MD: net/minecraft/client/gui/components/MultilineTextField$StringView/toString ()Ljava/lang/String; net/minecraft/client/gui/components/MultilineTextField$StringView/toString ()Ljava/lang/String; +MD: net/minecraft/client/gui/components/ObjectSelectionList/ ()V net/minecraft/client/gui/components/ObjectSelectionList/ ()V +MD: net/minecraft/client/gui/components/ObjectSelectionList/ (Lnet/minecraft/client/Minecraft;IIIII)V net/minecraft/client/gui/components/ObjectSelectionList/ (Lnet/minecraft/client/Minecraft;IIIII)V +MD: net/minecraft/client/gui/components/ObjectSelectionList/m_142291_ (Lnet/minecraft/client/gui/narration/NarrationElementOutput;)V net/minecraft/client/gui/components/ObjectSelectionList/updateNarration (Lnet/minecraft/client/gui/narration/NarrationElementOutput;)V +MD: net/minecraft/client/gui/components/ObjectSelectionList/m_264064_ (Lnet/minecraft/client/gui/navigation/FocusNavigationEvent;)Lnet/minecraft/client/gui/ComponentPath; net/minecraft/client/gui/components/ObjectSelectionList/nextFocusPath (Lnet/minecraft/client/gui/navigation/FocusNavigationEvent;)Lnet/minecraft/client/gui/ComponentPath; +MD: net/minecraft/client/gui/components/ObjectSelectionList$Entry/ ()V net/minecraft/client/gui/components/ObjectSelectionList$Entry/ ()V +MD: net/minecraft/client/gui/components/ObjectSelectionList$Entry/m_142172_ ()Lnet/minecraft/network/chat/Component; net/minecraft/client/gui/components/ObjectSelectionList$Entry/getNarration ()Lnet/minecraft/network/chat/Component; +MD: net/minecraft/client/gui/components/ObjectSelectionList$Entry/m_142291_ (Lnet/minecraft/client/gui/narration/NarrationElementOutput;)V net/minecraft/client/gui/components/ObjectSelectionList$Entry/updateNarration (Lnet/minecraft/client/gui/narration/NarrationElementOutput;)V +MD: net/minecraft/client/gui/components/ObjectSelectionList$Entry/m_274437_ (Lnet/minecraft/client/gui/GuiGraphics;IIIIIIIZF)V net/minecraft/client/gui/components/ObjectSelectionList$Entry/renderBack (Lnet/minecraft/client/gui/GuiGraphics;IIIIIIIZF)V +MD: net/minecraft/client/gui/components/ObjectSelectionList$Entry/m_5953_ (DD)Z net/minecraft/client/gui/components/ObjectSelectionList$Entry/isMouseOver (DD)Z +MD: net/minecraft/client/gui/components/ObjectSelectionList$Entry/m_93692_ (Z)V net/minecraft/client/gui/components/ObjectSelectionList$Entry/setFocused (Z)V +MD: net/minecraft/client/gui/components/ObjectSelectionList$Entry/m_93696_ ()Z net/minecraft/client/gui/components/ObjectSelectionList$Entry/isFocused ()Z +MD: net/minecraft/client/gui/components/OptionsList/ (Lnet/minecraft/client/Minecraft;IIIII)V net/minecraft/client/gui/components/OptionsList/ (Lnet/minecraft/client/Minecraft;IIIII)V +MD: net/minecraft/client/gui/components/OptionsList/m_232528_ (Lnet/minecraft/client/OptionInstance;)I net/minecraft/client/gui/components/OptionsList/addBig (Lnet/minecraft/client/OptionInstance;)I +MD: net/minecraft/client/gui/components/OptionsList/m_232530_ (Lnet/minecraft/client/OptionInstance;Lnet/minecraft/client/OptionInstance;)V net/minecraft/client/gui/components/OptionsList/addSmall (Lnet/minecraft/client/OptionInstance;Lnet/minecraft/client/OptionInstance;)V +MD: net/minecraft/client/gui/components/OptionsList/m_232533_ ([Lnet/minecraft/client/OptionInstance;)V net/minecraft/client/gui/components/OptionsList/addSmall ([Lnet/minecraft/client/OptionInstance;)V +MD: net/minecraft/client/gui/components/OptionsList/m_232535_ (Lnet/minecraft/client/OptionInstance;)Lnet/minecraft/client/gui/components/AbstractWidget; net/minecraft/client/gui/components/OptionsList/findOption (Lnet/minecraft/client/OptionInstance;)Lnet/minecraft/client/gui/components/AbstractWidget; +MD: net/minecraft/client/gui/components/OptionsList/m_5756_ ()I net/minecraft/client/gui/components/OptionsList/getScrollbarPosition ()I +MD: net/minecraft/client/gui/components/OptionsList/m_5759_ ()I net/minecraft/client/gui/components/OptionsList/getRowWidth ()I +MD: net/minecraft/client/gui/components/OptionsList/m_94480_ (DD)Ljava/util/Optional; net/minecraft/client/gui/components/OptionsList/getMouseOver (DD)Ljava/util/Optional; +MD: net/minecraft/client/gui/components/OptionsList$Entry/ (Ljava/util/Map;)V net/minecraft/client/gui/components/OptionsList$Entry/ (Ljava/util/Map;)V +MD: net/minecraft/client/gui/components/OptionsList$Entry/m_142437_ ()Ljava/util/List; net/minecraft/client/gui/components/OptionsList$Entry/narratables ()Ljava/util/List; +MD: net/minecraft/client/gui/components/OptionsList$Entry/m_232537_ (Lnet/minecraft/client/Options;ILnet/minecraft/client/OptionInstance;)Lnet/minecraft/client/gui/components/OptionsList$Entry; net/minecraft/client/gui/components/OptionsList$Entry/big (Lnet/minecraft/client/Options;ILnet/minecraft/client/OptionInstance;)Lnet/minecraft/client/gui/components/OptionsList$Entry; +MD: net/minecraft/client/gui/components/OptionsList$Entry/m_232541_ (Lnet/minecraft/client/Options;ILnet/minecraft/client/OptionInstance;Lnet/minecraft/client/OptionInstance;)Lnet/minecraft/client/gui/components/OptionsList$Entry; net/minecraft/client/gui/components/OptionsList$Entry/small (Lnet/minecraft/client/Options;ILnet/minecraft/client/OptionInstance;Lnet/minecraft/client/OptionInstance;)Lnet/minecraft/client/gui/components/OptionsList$Entry; +MD: net/minecraft/client/gui/components/OptionsList$Entry/m_279743_ (ILnet/minecraft/client/gui/GuiGraphics;IIFLnet/minecraft/client/gui/components/AbstractWidget;)V net/minecraft/client/gui/components/OptionsList$Entry/lambda$render$0 (ILnet/minecraft/client/gui/GuiGraphics;IIFLnet/minecraft/client/gui/components/AbstractWidget;)V +MD: net/minecraft/client/gui/components/OptionsList$Entry/m_6311_ (Lnet/minecraft/client/gui/GuiGraphics;IIIIIIIZF)V net/minecraft/client/gui/components/OptionsList$Entry/render (Lnet/minecraft/client/gui/GuiGraphics;IIIIIIIZF)V +MD: net/minecraft/client/gui/components/OptionsList$Entry/m_6702_ ()Ljava/util/List; net/minecraft/client/gui/components/OptionsList$Entry/children ()Ljava/util/List; +MD: net/minecraft/client/gui/components/PlainTextButton/ (IIIILnet/minecraft/network/chat/Component;Lnet/minecraft/client/gui/components/Button$OnPress;Lnet/minecraft/client/gui/Font;)V net/minecraft/client/gui/components/PlainTextButton/ (IIIILnet/minecraft/network/chat/Component;Lnet/minecraft/client/gui/components/Button$OnPress;Lnet/minecraft/client/gui/Font;)V +MD: net/minecraft/client/gui/components/PlainTextButton/m_87963_ (Lnet/minecraft/client/gui/GuiGraphics;IIF)V net/minecraft/client/gui/components/PlainTextButton/renderWidget (Lnet/minecraft/client/gui/GuiGraphics;IIF)V +MD: net/minecraft/client/gui/components/PlayerFaceRenderer/ ()V net/minecraft/client/gui/components/PlayerFaceRenderer/ ()V +MD: net/minecraft/client/gui/components/PlayerFaceRenderer/m_280029_ (Lnet/minecraft/client/gui/GuiGraphics;Lnet/minecraft/resources/ResourceLocation;IIIZZ)V net/minecraft/client/gui/components/PlayerFaceRenderer/draw (Lnet/minecraft/client/gui/GuiGraphics;Lnet/minecraft/resources/ResourceLocation;IIIZZ)V +MD: net/minecraft/client/gui/components/PlayerFaceRenderer/m_280078_ (Lnet/minecraft/client/gui/GuiGraphics;Lnet/minecraft/resources/ResourceLocation;IIIZ)V net/minecraft/client/gui/components/PlayerFaceRenderer/drawHat (Lnet/minecraft/client/gui/GuiGraphics;Lnet/minecraft/resources/ResourceLocation;IIIZ)V +MD: net/minecraft/client/gui/components/PlayerFaceRenderer/m_280354_ (Lnet/minecraft/client/gui/GuiGraphics;Lnet/minecraft/resources/ResourceLocation;III)V net/minecraft/client/gui/components/PlayerFaceRenderer/draw (Lnet/minecraft/client/gui/GuiGraphics;Lnet/minecraft/resources/ResourceLocation;III)V +MD: net/minecraft/client/gui/components/PlayerTabOverlay/ ()V net/minecraft/client/gui/components/PlayerTabOverlay/ ()V +MD: net/minecraft/client/gui/components/PlayerTabOverlay/ (Lnet/minecraft/client/Minecraft;Lnet/minecraft/client/gui/Gui;)V net/minecraft/client/gui/components/PlayerTabOverlay/ (Lnet/minecraft/client/Minecraft;Lnet/minecraft/client/gui/Gui;)V +MD: net/minecraft/client/gui/components/PlayerTabOverlay/m_245935_ (Lnet/minecraft/client/multiplayer/PlayerInfo;)Ljava/util/UUID; net/minecraft/client/gui/components/PlayerTabOverlay/lambda$render$3 (Lnet/minecraft/client/multiplayer/PlayerInfo;)Ljava/util/UUID; +MD: net/minecraft/client/gui/components/PlayerTabOverlay/m_246165_ (Ljava/util/Set;Ljava/util/UUID;)Z net/minecraft/client/gui/components/PlayerTabOverlay/lambda$render$4 (Ljava/util/Set;Ljava/util/UUID;)Z +MD: net/minecraft/client/gui/components/PlayerTabOverlay/m_246766_ (ILjava/util/UUID;)Lnet/minecraft/client/gui/components/PlayerTabOverlay$HealthState; net/minecraft/client/gui/components/PlayerTabOverlay/lambda$renderTablistHearts$5 (ILjava/util/UUID;)Lnet/minecraft/client/gui/components/PlayerTabOverlay$HealthState; +MD: net/minecraft/client/gui/components/PlayerTabOverlay/m_252560_ (Lnet/minecraft/client/multiplayer/PlayerInfo;)Ljava/lang/String; net/minecraft/client/gui/components/PlayerTabOverlay/lambda$static$2 (Lnet/minecraft/client/multiplayer/PlayerInfo;)Ljava/lang/String; +MD: net/minecraft/client/gui/components/PlayerTabOverlay/m_252561_ (Lnet/minecraft/client/multiplayer/PlayerInfo;)I net/minecraft/client/gui/components/PlayerTabOverlay/lambda$static$0 (Lnet/minecraft/client/multiplayer/PlayerInfo;)I +MD: net/minecraft/client/gui/components/PlayerTabOverlay/m_264246_ ()Ljava/util/List; net/minecraft/client/gui/components/PlayerTabOverlay/getPlayerInfos ()Ljava/util/List; +MD: net/minecraft/client/gui/components/PlayerTabOverlay/m_268767_ (Lnet/minecraft/client/multiplayer/PlayerInfo;)Ljava/lang/String; net/minecraft/client/gui/components/PlayerTabOverlay/lambda$static$1 (Lnet/minecraft/client/multiplayer/PlayerInfo;)Ljava/lang/String; +MD: net/minecraft/client/gui/components/PlayerTabOverlay/m_280020_ (Lnet/minecraft/client/gui/GuiGraphics;IIILnet/minecraft/client/multiplayer/PlayerInfo;)V net/minecraft/client/gui/components/PlayerTabOverlay/renderPingIcon (Lnet/minecraft/client/gui/GuiGraphics;IIILnet/minecraft/client/multiplayer/PlayerInfo;)V +MD: net/minecraft/client/gui/components/PlayerTabOverlay/m_280237_ (IIILjava/util/UUID;Lnet/minecraft/client/gui/GuiGraphics;I)V net/minecraft/client/gui/components/PlayerTabOverlay/renderTablistHearts (IIILjava/util/UUID;Lnet/minecraft/client/gui/GuiGraphics;I)V +MD: net/minecraft/client/gui/components/PlayerTabOverlay/m_280406_ (Lnet/minecraft/client/gui/GuiGraphics;ILnet/minecraft/world/scores/Scoreboard;Lnet/minecraft/world/scores/Objective;)V net/minecraft/client/gui/components/PlayerTabOverlay/render (Lnet/minecraft/client/gui/GuiGraphics;ILnet/minecraft/world/scores/Scoreboard;Lnet/minecraft/world/scores/Objective;)V +MD: net/minecraft/client/gui/components/PlayerTabOverlay/m_280582_ (Lnet/minecraft/world/scores/Objective;ILjava/lang/String;IILjava/util/UUID;Lnet/minecraft/client/gui/GuiGraphics;)V net/minecraft/client/gui/components/PlayerTabOverlay/renderTablistScore (Lnet/minecraft/world/scores/Objective;ILjava/lang/String;IILjava/util/UUID;Lnet/minecraft/client/gui/GuiGraphics;)V +MD: net/minecraft/client/gui/components/PlayerTabOverlay/m_94529_ ()V net/minecraft/client/gui/components/PlayerTabOverlay/reset ()V +MD: net/minecraft/client/gui/components/PlayerTabOverlay/m_94549_ (Lnet/minecraft/client/multiplayer/PlayerInfo;)Lnet/minecraft/network/chat/Component; net/minecraft/client/gui/components/PlayerTabOverlay/getNameForDisplay (Lnet/minecraft/client/multiplayer/PlayerInfo;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/client/gui/components/PlayerTabOverlay/m_94551_ (Lnet/minecraft/client/multiplayer/PlayerInfo;Lnet/minecraft/network/chat/MutableComponent;)Lnet/minecraft/network/chat/Component; net/minecraft/client/gui/components/PlayerTabOverlay/decorateName (Lnet/minecraft/client/multiplayer/PlayerInfo;Lnet/minecraft/network/chat/MutableComponent;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/client/gui/components/PlayerTabOverlay/m_94554_ (Lnet/minecraft/network/chat/Component;)V net/minecraft/client/gui/components/PlayerTabOverlay/setFooter (Lnet/minecraft/network/chat/Component;)V +MD: net/minecraft/client/gui/components/PlayerTabOverlay/m_94556_ (Z)V net/minecraft/client/gui/components/PlayerTabOverlay/setVisible (Z)V +MD: net/minecraft/client/gui/components/PlayerTabOverlay/m_94558_ (Lnet/minecraft/network/chat/Component;)V net/minecraft/client/gui/components/PlayerTabOverlay/setHeader (Lnet/minecraft/network/chat/Component;)V +MD: net/minecraft/client/gui/components/PlayerTabOverlay$HealthState/ (I)V net/minecraft/client/gui/components/PlayerTabOverlay$HealthState/ (I)V +MD: net/minecraft/client/gui/components/PlayerTabOverlay$HealthState/m_245265_ (IJ)V net/minecraft/client/gui/components/PlayerTabOverlay$HealthState/update (IJ)V +MD: net/minecraft/client/gui/components/PlayerTabOverlay$HealthState/m_246447_ (J)Z net/minecraft/client/gui/components/PlayerTabOverlay$HealthState/isBlinking (J)Z +MD: net/minecraft/client/gui/components/PlayerTabOverlay$HealthState/m_247739_ ()I net/minecraft/client/gui/components/PlayerTabOverlay$HealthState/displayedValue ()I +MD: net/minecraft/client/gui/components/Renderable/m_88315_ (Lnet/minecraft/client/gui/GuiGraphics;IIF)V net/minecraft/client/gui/components/Renderable/render (Lnet/minecraft/client/gui/GuiGraphics;IIF)V +MD: net/minecraft/client/gui/components/SplashRenderer/ ()V net/minecraft/client/gui/components/SplashRenderer/ ()V +MD: net/minecraft/client/gui/components/SplashRenderer/ (Ljava/lang/String;)V net/minecraft/client/gui/components/SplashRenderer/ (Ljava/lang/String;)V +MD: net/minecraft/client/gui/components/SplashRenderer/m_280672_ (Lnet/minecraft/client/gui/GuiGraphics;ILnet/minecraft/client/gui/Font;I)V net/minecraft/client/gui/components/SplashRenderer/render (Lnet/minecraft/client/gui/GuiGraphics;ILnet/minecraft/client/gui/Font;I)V +MD: net/minecraft/client/gui/components/StateSwitchingButton/ (IIIIZ)V net/minecraft/client/gui/components/StateSwitchingButton/ (IIIIZ)V +MD: net/minecraft/client/gui/components/StateSwitchingButton/m_168797_ (Lnet/minecraft/client/gui/narration/NarrationElementOutput;)V net/minecraft/client/gui/components/StateSwitchingButton/updateWidgetNarration (Lnet/minecraft/client/gui/narration/NarrationElementOutput;)V +MD: net/minecraft/client/gui/components/StateSwitchingButton/m_87963_ (Lnet/minecraft/client/gui/GuiGraphics;IIF)V net/minecraft/client/gui/components/StateSwitchingButton/renderWidget (Lnet/minecraft/client/gui/GuiGraphics;IIF)V +MD: net/minecraft/client/gui/components/StateSwitchingButton/m_94620_ ()Z net/minecraft/client/gui/components/StateSwitchingButton/isStateTriggered ()Z +MD: net/minecraft/client/gui/components/StateSwitchingButton/m_94624_ (IIIILnet/minecraft/resources/ResourceLocation;)V net/minecraft/client/gui/components/StateSwitchingButton/initTextureValues (IIIILnet/minecraft/resources/ResourceLocation;)V +MD: net/minecraft/client/gui/components/StateSwitchingButton/m_94635_ (Z)V net/minecraft/client/gui/components/StateSwitchingButton/setStateTriggered (Z)V +MD: net/minecraft/client/gui/components/StringWidget/ (IIIILnet/minecraft/network/chat/Component;Lnet/minecraft/client/gui/Font;)V net/minecraft/client/gui/components/StringWidget/ (IIIILnet/minecraft/network/chat/Component;Lnet/minecraft/client/gui/Font;)V +MD: net/minecraft/client/gui/components/StringWidget/ (IILnet/minecraft/network/chat/Component;Lnet/minecraft/client/gui/Font;)V net/minecraft/client/gui/components/StringWidget/ (IILnet/minecraft/network/chat/Component;Lnet/minecraft/client/gui/Font;)V +MD: net/minecraft/client/gui/components/StringWidget/ (Lnet/minecraft/network/chat/Component;Lnet/minecraft/client/gui/Font;)V net/minecraft/client/gui/components/StringWidget/ (Lnet/minecraft/network/chat/Component;Lnet/minecraft/client/gui/Font;)V +MD: net/minecraft/client/gui/components/StringWidget/m_267568_ (F)Lnet/minecraft/client/gui/components/StringWidget; net/minecraft/client/gui/components/StringWidget/horizontalAlignment (F)Lnet/minecraft/client/gui/components/StringWidget; +MD: net/minecraft/client/gui/components/StringWidget/m_267574_ ()Lnet/minecraft/client/gui/components/StringWidget; net/minecraft/client/gui/components/StringWidget/alignRight ()Lnet/minecraft/client/gui/components/StringWidget; +MD: net/minecraft/client/gui/components/StringWidget/m_267729_ ()Lnet/minecraft/client/gui/components/StringWidget; net/minecraft/client/gui/components/StringWidget/alignCenter ()Lnet/minecraft/client/gui/components/StringWidget; +MD: net/minecraft/client/gui/components/StringWidget/m_267769_ ()Lnet/minecraft/client/gui/components/StringWidget; net/minecraft/client/gui/components/StringWidget/alignLeft ()Lnet/minecraft/client/gui/components/StringWidget; +MD: net/minecraft/client/gui/components/StringWidget/m_269033_ (I)Lnet/minecraft/client/gui/components/StringWidget; net/minecraft/client/gui/components/StringWidget/setColor (I)Lnet/minecraft/client/gui/components/StringWidget; +MD: net/minecraft/client/gui/components/StringWidget/m_269033_ (I)Lnet/minecraft/client/gui/components/AbstractStringWidget; net/minecraft/client/gui/components/StringWidget/setColor (I)Lnet/minecraft/client/gui/components/AbstractStringWidget; +MD: net/minecraft/client/gui/components/StringWidget/m_87963_ (Lnet/minecraft/client/gui/GuiGraphics;IIF)V net/minecraft/client/gui/components/StringWidget/renderWidget (Lnet/minecraft/client/gui/GuiGraphics;IIF)V +MD: net/minecraft/client/gui/components/SubtitleOverlay/ (Lnet/minecraft/client/Minecraft;)V net/minecraft/client/gui/components/SubtitleOverlay/ (Lnet/minecraft/client/Minecraft;)V +MD: net/minecraft/client/gui/components/SubtitleOverlay/m_280227_ (Lnet/minecraft/client/gui/GuiGraphics;)V net/minecraft/client/gui/components/SubtitleOverlay/render (Lnet/minecraft/client/gui/GuiGraphics;)V +MD: net/minecraft/client/gui/components/SubtitleOverlay/m_6985_ (Lnet/minecraft/client/resources/sounds/SoundInstance;Lnet/minecraft/client/sounds/WeighedSoundEvents;)V net/minecraft/client/gui/components/SubtitleOverlay/onPlaySound (Lnet/minecraft/client/resources/sounds/SoundInstance;Lnet/minecraft/client/sounds/WeighedSoundEvents;)V +MD: net/minecraft/client/gui/components/SubtitleOverlay$Subtitle/ (Lnet/minecraft/network/chat/Component;Lnet/minecraft/world/phys/Vec3;)V net/minecraft/client/gui/components/SubtitleOverlay$Subtitle/ (Lnet/minecraft/network/chat/Component;Lnet/minecraft/world/phys/Vec3;)V +MD: net/minecraft/client/gui/components/SubtitleOverlay$Subtitle/m_94655_ ()Lnet/minecraft/network/chat/Component; net/minecraft/client/gui/components/SubtitleOverlay$Subtitle/getText ()Lnet/minecraft/network/chat/Component; +MD: net/minecraft/client/gui/components/SubtitleOverlay$Subtitle/m_94656_ (Lnet/minecraft/world/phys/Vec3;)V net/minecraft/client/gui/components/SubtitleOverlay$Subtitle/refresh (Lnet/minecraft/world/phys/Vec3;)V +MD: net/minecraft/client/gui/components/SubtitleOverlay$Subtitle/m_94658_ ()J net/minecraft/client/gui/components/SubtitleOverlay$Subtitle/getTime ()J +MD: net/minecraft/client/gui/components/SubtitleOverlay$Subtitle/m_94659_ ()Lnet/minecraft/world/phys/Vec3; net/minecraft/client/gui/components/SubtitleOverlay$Subtitle/getLocation ()Lnet/minecraft/world/phys/Vec3; +MD: net/minecraft/client/gui/components/TabButton/ ()V net/minecraft/client/gui/components/TabButton/ ()V +MD: net/minecraft/client/gui/components/TabButton/ (Lnet/minecraft/client/gui/components/tabs/TabManager;Lnet/minecraft/client/gui/components/tabs/Tab;II)V net/minecraft/client/gui/components/TabButton/ (Lnet/minecraft/client/gui/components/tabs/TabManager;Lnet/minecraft/client/gui/components/tabs/Tab;II)V +MD: net/minecraft/client/gui/components/TabButton/m_168797_ (Lnet/minecraft/client/gui/narration/NarrationElementOutput;)V net/minecraft/client/gui/components/TabButton/updateWidgetNarration (Lnet/minecraft/client/gui/narration/NarrationElementOutput;)V +MD: net/minecraft/client/gui/components/TabButton/m_274319_ ()Z net/minecraft/client/gui/components/TabButton/isSelected ()Z +MD: net/minecraft/client/gui/components/TabButton/m_274356_ ()Lnet/minecraft/client/gui/components/tabs/Tab; net/minecraft/client/gui/components/TabButton/tab ()Lnet/minecraft/client/gui/components/tabs/Tab; +MD: net/minecraft/client/gui/components/TabButton/m_274365_ (Lnet/minecraft/client/gui/GuiGraphics;Lnet/minecraft/client/gui/Font;I)V net/minecraft/client/gui/components/TabButton/renderFocusUnderline (Lnet/minecraft/client/gui/GuiGraphics;Lnet/minecraft/client/gui/Font;I)V +MD: net/minecraft/client/gui/components/TabButton/m_274488_ (Lnet/minecraft/client/gui/GuiGraphics;Lnet/minecraft/client/gui/Font;I)V net/minecraft/client/gui/components/TabButton/renderString (Lnet/minecraft/client/gui/GuiGraphics;Lnet/minecraft/client/gui/Font;I)V +MD: net/minecraft/client/gui/components/TabButton/m_274514_ ()I net/minecraft/client/gui/components/TabButton/getTextureY ()I +MD: net/minecraft/client/gui/components/TabButton/m_7435_ (Lnet/minecraft/client/sounds/SoundManager;)V net/minecraft/client/gui/components/TabButton/playDownSound (Lnet/minecraft/client/sounds/SoundManager;)V +MD: net/minecraft/client/gui/components/TabButton/m_87963_ (Lnet/minecraft/client/gui/GuiGraphics;IIF)V net/minecraft/client/gui/components/TabButton/renderWidget (Lnet/minecraft/client/gui/GuiGraphics;IIF)V +MD: net/minecraft/client/gui/components/TabOrderedElement/m_267579_ ()I net/minecraft/client/gui/components/TabOrderedElement/getTabOrderGroup ()I +MD: net/minecraft/client/gui/components/TextAndImageButton/ (Lnet/minecraft/network/chat/Component;IIIIIIIIILnet/minecraft/resources/ResourceLocation;Lnet/minecraft/client/gui/components/Button$OnPress;)V net/minecraft/client/gui/components/TextAndImageButton/ (Lnet/minecraft/network/chat/Component;IIIIIIIIILnet/minecraft/resources/ResourceLocation;Lnet/minecraft/client/gui/components/Button$OnPress;)V +MD: net/minecraft/client/gui/components/TextAndImageButton/m_267702_ ()I net/minecraft/client/gui/components/TextAndImageButton/getXOffset ()I +MD: net/minecraft/client/gui/components/TextAndImageButton/m_267772_ (Lnet/minecraft/network/chat/Component;Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/client/gui/components/Button$OnPress;)Lnet/minecraft/client/gui/components/TextAndImageButton$Builder; net/minecraft/client/gui/components/TextAndImageButton/builder (Lnet/minecraft/network/chat/Component;Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/client/gui/components/Button$OnPress;)Lnet/minecraft/client/gui/components/TextAndImageButton$Builder; +MD: net/minecraft/client/gui/components/TextAndImageButton/m_267831_ ()I net/minecraft/client/gui/components/TextAndImageButton/getYOffset ()I +MD: net/minecraft/client/gui/components/TextAndImageButton/m_280139_ (Lnet/minecraft/client/gui/GuiGraphics;Lnet/minecraft/client/gui/Font;I)V net/minecraft/client/gui/components/TextAndImageButton/renderString (Lnet/minecraft/client/gui/GuiGraphics;Lnet/minecraft/client/gui/Font;I)V +MD: net/minecraft/client/gui/components/TextAndImageButton/m_87963_ (Lnet/minecraft/client/gui/GuiGraphics;IIF)V net/minecraft/client/gui/components/TextAndImageButton/renderWidget (Lnet/minecraft/client/gui/GuiGraphics;IIF)V +MD: net/minecraft/client/gui/components/TextAndImageButton$Builder/ (Lnet/minecraft/network/chat/Component;Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/client/gui/components/Button$OnPress;)V net/minecraft/client/gui/components/TextAndImageButton$Builder/ (Lnet/minecraft/network/chat/Component;Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/client/gui/components/Button$OnPress;)V +MD: net/minecraft/client/gui/components/TextAndImageButton$Builder/m_267570_ (II)Lnet/minecraft/client/gui/components/TextAndImageButton$Builder; net/minecraft/client/gui/components/TextAndImageButton$Builder/offset (II)Lnet/minecraft/client/gui/components/TextAndImageButton$Builder; +MD: net/minecraft/client/gui/components/TextAndImageButton$Builder/m_267643_ (II)Lnet/minecraft/client/gui/components/TextAndImageButton$Builder; net/minecraft/client/gui/components/TextAndImageButton$Builder/textureSize (II)Lnet/minecraft/client/gui/components/TextAndImageButton$Builder; +MD: net/minecraft/client/gui/components/TextAndImageButton$Builder/m_267752_ (II)Lnet/minecraft/client/gui/components/TextAndImageButton$Builder; net/minecraft/client/gui/components/TextAndImageButton$Builder/texStart (II)Lnet/minecraft/client/gui/components/TextAndImageButton$Builder; +MD: net/minecraft/client/gui/components/TextAndImageButton$Builder/m_267765_ (II)Lnet/minecraft/client/gui/components/TextAndImageButton$Builder; net/minecraft/client/gui/components/TextAndImageButton$Builder/usedTextureSize (II)Lnet/minecraft/client/gui/components/TextAndImageButton$Builder; +MD: net/minecraft/client/gui/components/TextAndImageButton$Builder/m_267775_ ()Lnet/minecraft/client/gui/components/TextAndImageButton; net/minecraft/client/gui/components/TextAndImageButton$Builder/build ()Lnet/minecraft/client/gui/components/TextAndImageButton; +MD: net/minecraft/client/gui/components/TextAndImageButton$Builder/m_267809_ (I)Lnet/minecraft/client/gui/components/TextAndImageButton$Builder; net/minecraft/client/gui/components/TextAndImageButton$Builder/yDiffTex (I)Lnet/minecraft/client/gui/components/TextAndImageButton$Builder; +MD: net/minecraft/client/gui/components/Tooltip/ (Lnet/minecraft/network/chat/Component;Lnet/minecraft/network/chat/Component;)V net/minecraft/client/gui/components/Tooltip/ (Lnet/minecraft/network/chat/Component;Lnet/minecraft/network/chat/Component;)V +MD: net/minecraft/client/gui/components/Tooltip/m_142291_ (Lnet/minecraft/client/gui/narration/NarrationElementOutput;)V net/minecraft/client/gui/components/Tooltip/updateNarration (Lnet/minecraft/client/gui/narration/NarrationElementOutput;)V +MD: net/minecraft/client/gui/components/Tooltip/m_257408_ (Lnet/minecraft/client/Minecraft;)Ljava/util/List; net/minecraft/client/gui/components/Tooltip/toCharSequence (Lnet/minecraft/client/Minecraft;)Ljava/util/List; +MD: net/minecraft/client/gui/components/Tooltip/m_257550_ (Lnet/minecraft/network/chat/Component;)Lnet/minecraft/client/gui/components/Tooltip; net/minecraft/client/gui/components/Tooltip/create (Lnet/minecraft/network/chat/Component;)Lnet/minecraft/client/gui/components/Tooltip; +MD: net/minecraft/client/gui/components/Tooltip/m_257563_ (Lnet/minecraft/network/chat/Component;Lnet/minecraft/network/chat/Component;)Lnet/minecraft/client/gui/components/Tooltip; net/minecraft/client/gui/components/Tooltip/create (Lnet/minecraft/network/chat/Component;Lnet/minecraft/network/chat/Component;)Lnet/minecraft/client/gui/components/Tooltip; +MD: net/minecraft/client/gui/components/Tooltip/m_257868_ (Lnet/minecraft/client/Minecraft;Lnet/minecraft/network/chat/Component;)Ljava/util/List; net/minecraft/client/gui/components/Tooltip/splitTooltip (Lnet/minecraft/client/Minecraft;Lnet/minecraft/network/chat/Component;)Ljava/util/List; +MD: net/minecraft/client/gui/components/Whence/ ()V net/minecraft/client/gui/components/Whence/ ()V +MD: net/minecraft/client/gui/components/Whence/ (Ljava/lang/String;I)V net/minecraft/client/gui/components/Whence/ (Ljava/lang/String;I)V +MD: net/minecraft/client/gui/components/Whence/m_239202_ ()[Lnet/minecraft/client/gui/components/Whence; net/minecraft/client/gui/components/Whence/$values ()[Lnet/minecraft/client/gui/components/Whence; +MD: net/minecraft/client/gui/components/Whence/valueOf (Ljava/lang/String;)Lnet/minecraft/client/gui/components/Whence; net/minecraft/client/gui/components/Whence/valueOf (Ljava/lang/String;)Lnet/minecraft/client/gui/components/Whence; +MD: net/minecraft/client/gui/components/Whence/values ()[Lnet/minecraft/client/gui/components/Whence; net/minecraft/client/gui/components/Whence/values ()[Lnet/minecraft/client/gui/components/Whence; +MD: net/minecraft/client/gui/components/events/AbstractContainerEventHandler/ ()V net/minecraft/client/gui/components/events/AbstractContainerEventHandler/ ()V +MD: net/minecraft/client/gui/components/events/AbstractContainerEventHandler/m_7222_ ()Lnet/minecraft/client/gui/components/events/GuiEventListener; net/minecraft/client/gui/components/events/AbstractContainerEventHandler/getFocused ()Lnet/minecraft/client/gui/components/events/GuiEventListener; +MD: net/minecraft/client/gui/components/events/AbstractContainerEventHandler/m_7282_ ()Z net/minecraft/client/gui/components/events/AbstractContainerEventHandler/isDragging ()Z +MD: net/minecraft/client/gui/components/events/AbstractContainerEventHandler/m_7522_ (Lnet/minecraft/client/gui/components/events/GuiEventListener;)V net/minecraft/client/gui/components/events/AbstractContainerEventHandler/setFocused (Lnet/minecraft/client/gui/components/events/GuiEventListener;)V +MD: net/minecraft/client/gui/components/events/AbstractContainerEventHandler/m_7897_ (Z)V net/minecraft/client/gui/components/events/AbstractContainerEventHandler/setDragging (Z)V +MD: net/minecraft/client/gui/components/events/ContainerEventHandler/m_263864_ (Lnet/minecraft/client/gui/navigation/ScreenDirection;Lnet/minecraft/client/gui/components/events/GuiEventListener;)Ljava/lang/Integer; net/minecraft/client/gui/components/events/ContainerEventHandler/lambda$nextFocusPathInDirection$3 (Lnet/minecraft/client/gui/navigation/ScreenDirection;Lnet/minecraft/client/gui/components/events/GuiEventListener;)Ljava/lang/Integer; +MD: net/minecraft/client/gui/components/events/ContainerEventHandler/m_263865_ (Lnet/minecraft/client/gui/navigation/ScreenDirection;Lnet/minecraft/client/gui/components/events/GuiEventListener;)Ljava/lang/Integer; net/minecraft/client/gui/components/events/ContainerEventHandler/lambda$nextFocusPathInDirection$4 (Lnet/minecraft/client/gui/navigation/ScreenDirection;Lnet/minecraft/client/gui/components/events/GuiEventListener;)Ljava/lang/Integer; +MD: net/minecraft/client/gui/components/events/ContainerEventHandler/m_264064_ (Lnet/minecraft/client/gui/navigation/FocusNavigationEvent;)Lnet/minecraft/client/gui/ComponentPath; net/minecraft/client/gui/components/events/ContainerEventHandler/nextFocusPath (Lnet/minecraft/client/gui/navigation/FocusNavigationEvent;)Lnet/minecraft/client/gui/ComponentPath; +MD: net/minecraft/client/gui/components/events/ContainerEventHandler/m_264187_ (Lnet/minecraft/client/gui/navigation/FocusNavigationEvent$ArrowNavigation;)Lnet/minecraft/client/gui/ComponentPath; net/minecraft/client/gui/components/events/ContainerEventHandler/handleArrowNavigation (Lnet/minecraft/client/gui/navigation/FocusNavigationEvent$ArrowNavigation;)Lnet/minecraft/client/gui/ComponentPath; +MD: net/minecraft/client/gui/components/events/ContainerEventHandler/m_264435_ ()Lnet/minecraft/client/gui/ComponentPath; net/minecraft/client/gui/components/events/ContainerEventHandler/getCurrentFocusPath ()Lnet/minecraft/client/gui/ComponentPath; +MD: net/minecraft/client/gui/components/events/ContainerEventHandler/m_264458_ (Lnet/minecraft/client/gui/navigation/ScreenRectangle;Lnet/minecraft/client/gui/navigation/ScreenDirection;Lnet/minecraft/client/gui/components/events/GuiEventListener;Lnet/minecraft/client/gui/navigation/FocusNavigationEvent;)Lnet/minecraft/client/gui/ComponentPath; net/minecraft/client/gui/components/events/ContainerEventHandler/nextFocusPathInDirection (Lnet/minecraft/client/gui/navigation/ScreenRectangle;Lnet/minecraft/client/gui/navigation/ScreenDirection;Lnet/minecraft/client/gui/components/events/GuiEventListener;Lnet/minecraft/client/gui/navigation/FocusNavigationEvent;)Lnet/minecraft/client/gui/ComponentPath; +MD: net/minecraft/client/gui/components/events/ContainerEventHandler/m_264486_ (Lnet/minecraft/client/gui/navigation/ScreenRectangle;Lnet/minecraft/client/gui/navigation/ScreenDirection;Lnet/minecraft/client/gui/components/events/GuiEventListener;Lnet/minecraft/client/gui/navigation/FocusNavigationEvent;)Lnet/minecraft/client/gui/ComponentPath; net/minecraft/client/gui/components/events/ContainerEventHandler/nextFocusPathVaguelyInDirection (Lnet/minecraft/client/gui/navigation/ScreenRectangle;Lnet/minecraft/client/gui/navigation/ScreenDirection;Lnet/minecraft/client/gui/components/events/GuiEventListener;Lnet/minecraft/client/gui/navigation/FocusNavigationEvent;)Lnet/minecraft/client/gui/ComponentPath; +MD: net/minecraft/client/gui/components/events/ContainerEventHandler/m_264559_ (Lnet/minecraft/client/gui/navigation/FocusNavigationEvent$TabNavigation;)Lnet/minecraft/client/gui/ComponentPath; net/minecraft/client/gui/components/events/ContainerEventHandler/handleTabNavigation (Lnet/minecraft/client/gui/navigation/FocusNavigationEvent$TabNavigation;)Lnet/minecraft/client/gui/ComponentPath; +MD: net/minecraft/client/gui/components/events/ContainerEventHandler/m_289585_ (Lnet/minecraft/client/gui/components/events/GuiEventListener;)I net/minecraft/client/gui/components/events/ContainerEventHandler/lambda$handleTabNavigation$2 (Lnet/minecraft/client/gui/components/events/GuiEventListener;)I +MD: net/minecraft/client/gui/components/events/ContainerEventHandler/m_5534_ (CI)Z net/minecraft/client/gui/components/events/ContainerEventHandler/charTyped (CI)Z +MD: net/minecraft/client/gui/components/events/ContainerEventHandler/m_6050_ (DDD)Z net/minecraft/client/gui/components/events/ContainerEventHandler/mouseScrolled (DDD)Z +MD: net/minecraft/client/gui/components/events/ContainerEventHandler/m_6348_ (DDI)Z net/minecraft/client/gui/components/events/ContainerEventHandler/mouseReleased (DDI)Z +MD: net/minecraft/client/gui/components/events/ContainerEventHandler/m_6375_ (DDI)Z net/minecraft/client/gui/components/events/ContainerEventHandler/mouseClicked (DDI)Z +MD: net/minecraft/client/gui/components/events/ContainerEventHandler/m_6702_ ()Ljava/util/List; net/minecraft/client/gui/components/events/ContainerEventHandler/children ()Ljava/util/List; +MD: net/minecraft/client/gui/components/events/ContainerEventHandler/m_7222_ ()Lnet/minecraft/client/gui/components/events/GuiEventListener; net/minecraft/client/gui/components/events/ContainerEventHandler/getFocused ()Lnet/minecraft/client/gui/components/events/GuiEventListener; +MD: net/minecraft/client/gui/components/events/ContainerEventHandler/m_7282_ ()Z net/minecraft/client/gui/components/events/ContainerEventHandler/isDragging ()Z +MD: net/minecraft/client/gui/components/events/ContainerEventHandler/m_7522_ (Lnet/minecraft/client/gui/components/events/GuiEventListener;)V net/minecraft/client/gui/components/events/ContainerEventHandler/setFocused (Lnet/minecraft/client/gui/components/events/GuiEventListener;)V +MD: net/minecraft/client/gui/components/events/ContainerEventHandler/m_7897_ (Z)V net/minecraft/client/gui/components/events/ContainerEventHandler/setDragging (Z)V +MD: net/minecraft/client/gui/components/events/ContainerEventHandler/m_7920_ (III)Z net/minecraft/client/gui/components/events/ContainerEventHandler/keyReleased (III)Z +MD: net/minecraft/client/gui/components/events/ContainerEventHandler/m_7933_ (III)Z net/minecraft/client/gui/components/events/ContainerEventHandler/keyPressed (III)Z +MD: net/minecraft/client/gui/components/events/ContainerEventHandler/m_7979_ (DDIDD)Z net/minecraft/client/gui/components/events/ContainerEventHandler/mouseDragged (DDIDD)Z +MD: net/minecraft/client/gui/components/events/ContainerEventHandler/m_93692_ (Z)V net/minecraft/client/gui/components/events/ContainerEventHandler/setFocused (Z)V +MD: net/minecraft/client/gui/components/events/ContainerEventHandler/m_93696_ ()Z net/minecraft/client/gui/components/events/ContainerEventHandler/isFocused ()Z +MD: net/minecraft/client/gui/components/events/ContainerEventHandler/m_94689_ (DDDLnet/minecraft/client/gui/components/events/GuiEventListener;)Z net/minecraft/client/gui/components/events/ContainerEventHandler/lambda$mouseScrolled$1 (DDDLnet/minecraft/client/gui/components/events/GuiEventListener;)Z +MD: net/minecraft/client/gui/components/events/ContainerEventHandler/m_94704_ (DDILnet/minecraft/client/gui/components/events/GuiEventListener;)Z net/minecraft/client/gui/components/events/ContainerEventHandler/lambda$mouseReleased$0 (DDILnet/minecraft/client/gui/components/events/GuiEventListener;)Z +MD: net/minecraft/client/gui/components/events/ContainerEventHandler/m_94725_ (Lnet/minecraft/client/gui/components/events/GuiEventListener;)V net/minecraft/client/gui/components/events/ContainerEventHandler/magicalSpecialHackyFocus (Lnet/minecraft/client/gui/components/events/GuiEventListener;)V +MD: net/minecraft/client/gui/components/events/ContainerEventHandler/m_94729_ (DD)Ljava/util/Optional; net/minecraft/client/gui/components/events/ContainerEventHandler/getChildAt (DD)Ljava/util/Optional; +MD: net/minecraft/client/gui/components/events/GuiEventListener/m_264064_ (Lnet/minecraft/client/gui/navigation/FocusNavigationEvent;)Lnet/minecraft/client/gui/ComponentPath; net/minecraft/client/gui/components/events/GuiEventListener/nextFocusPath (Lnet/minecraft/client/gui/navigation/FocusNavigationEvent;)Lnet/minecraft/client/gui/ComponentPath; +MD: net/minecraft/client/gui/components/events/GuiEventListener/m_264198_ ()Lnet/minecraft/client/gui/navigation/ScreenRectangle; net/minecraft/client/gui/components/events/GuiEventListener/getRectangle ()Lnet/minecraft/client/gui/navigation/ScreenRectangle; +MD: net/minecraft/client/gui/components/events/GuiEventListener/m_264435_ ()Lnet/minecraft/client/gui/ComponentPath; net/minecraft/client/gui/components/events/GuiEventListener/getCurrentFocusPath ()Lnet/minecraft/client/gui/ComponentPath; +MD: net/minecraft/client/gui/components/events/GuiEventListener/m_5534_ (CI)Z net/minecraft/client/gui/components/events/GuiEventListener/charTyped (CI)Z +MD: net/minecraft/client/gui/components/events/GuiEventListener/m_5953_ (DD)Z net/minecraft/client/gui/components/events/GuiEventListener/isMouseOver (DD)Z +MD: net/minecraft/client/gui/components/events/GuiEventListener/m_6050_ (DDD)Z net/minecraft/client/gui/components/events/GuiEventListener/mouseScrolled (DDD)Z +MD: net/minecraft/client/gui/components/events/GuiEventListener/m_6348_ (DDI)Z net/minecraft/client/gui/components/events/GuiEventListener/mouseReleased (DDI)Z +MD: net/minecraft/client/gui/components/events/GuiEventListener/m_6375_ (DDI)Z net/minecraft/client/gui/components/events/GuiEventListener/mouseClicked (DDI)Z +MD: net/minecraft/client/gui/components/events/GuiEventListener/m_7920_ (III)Z net/minecraft/client/gui/components/events/GuiEventListener/keyReleased (III)Z +MD: net/minecraft/client/gui/components/events/GuiEventListener/m_7933_ (III)Z net/minecraft/client/gui/components/events/GuiEventListener/keyPressed (III)Z +MD: net/minecraft/client/gui/components/events/GuiEventListener/m_7979_ (DDIDD)Z net/minecraft/client/gui/components/events/GuiEventListener/mouseDragged (DDIDD)Z +MD: net/minecraft/client/gui/components/events/GuiEventListener/m_93692_ (Z)V net/minecraft/client/gui/components/events/GuiEventListener/setFocused (Z)V +MD: net/minecraft/client/gui/components/events/GuiEventListener/m_93696_ ()Z net/minecraft/client/gui/components/events/GuiEventListener/isFocused ()Z +MD: net/minecraft/client/gui/components/events/GuiEventListener/m_94757_ (DD)V net/minecraft/client/gui/components/events/GuiEventListener/mouseMoved (DD)V +MD: net/minecraft/client/gui/components/spectator/SpectatorGui/ ()V net/minecraft/client/gui/components/spectator/SpectatorGui/ ()V +MD: net/minecraft/client/gui/components/spectator/SpectatorGui/ (Lnet/minecraft/client/Minecraft;)V net/minecraft/client/gui/components/spectator/SpectatorGui/ (Lnet/minecraft/client/Minecraft;)V +MD: net/minecraft/client/gui/components/spectator/SpectatorGui/m_205380_ (I)V net/minecraft/client/gui/components/spectator/SpectatorGui/onMouseScrolled (I)V +MD: net/minecraft/client/gui/components/spectator/SpectatorGui/m_280016_ (Lnet/minecraft/client/gui/GuiGraphics;FIILnet/minecraft/client/gui/spectator/categories/SpectatorPage;)V net/minecraft/client/gui/components/spectator/SpectatorGui/renderPage (Lnet/minecraft/client/gui/GuiGraphics;FIILnet/minecraft/client/gui/spectator/categories/SpectatorPage;)V +MD: net/minecraft/client/gui/components/spectator/SpectatorGui/m_280365_ (Lnet/minecraft/client/gui/GuiGraphics;)V net/minecraft/client/gui/components/spectator/SpectatorGui/renderTooltip (Lnet/minecraft/client/gui/GuiGraphics;)V +MD: net/minecraft/client/gui/components/spectator/SpectatorGui/m_280623_ (Lnet/minecraft/client/gui/GuiGraphics;)V net/minecraft/client/gui/components/spectator/SpectatorGui/renderHotbar (Lnet/minecraft/client/gui/GuiGraphics;)V +MD: net/minecraft/client/gui/components/spectator/SpectatorGui/m_280643_ (Lnet/minecraft/client/gui/GuiGraphics;IIFFLnet/minecraft/client/gui/spectator/SpectatorMenuItem;)V net/minecraft/client/gui/components/spectator/SpectatorGui/renderSlot (Lnet/minecraft/client/gui/GuiGraphics;IIFFLnet/minecraft/client/gui/spectator/SpectatorMenuItem;)V +MD: net/minecraft/client/gui/components/spectator/SpectatorGui/m_7613_ (Lnet/minecraft/client/gui/spectator/SpectatorMenu;)V net/minecraft/client/gui/components/spectator/SpectatorGui/onSpectatorMenuClosed (Lnet/minecraft/client/gui/spectator/SpectatorMenu;)V +MD: net/minecraft/client/gui/components/spectator/SpectatorGui/m_94768_ ()Z net/minecraft/client/gui/components/spectator/SpectatorGui/isMenuActive ()Z +MD: net/minecraft/client/gui/components/spectator/SpectatorGui/m_94771_ (I)V net/minecraft/client/gui/components/spectator/SpectatorGui/onHotbarSelected (I)V +MD: net/minecraft/client/gui/components/spectator/SpectatorGui/m_94793_ ()V net/minecraft/client/gui/components/spectator/SpectatorGui/onMouseMiddleClick ()V +MD: net/minecraft/client/gui/components/spectator/SpectatorGui/m_94794_ ()F net/minecraft/client/gui/components/spectator/SpectatorGui/getHotbarAlpha ()F +MD: net/minecraft/client/gui/components/tabs/GridLayoutTab/ (Lnet/minecraft/network/chat/Component;)V net/minecraft/client/gui/components/tabs/GridLayoutTab/ (Lnet/minecraft/network/chat/Component;)V +MD: net/minecraft/client/gui/components/tabs/GridLayoutTab/m_267600_ ()Lnet/minecraft/network/chat/Component; net/minecraft/client/gui/components/tabs/GridLayoutTab/getTabTitle ()Lnet/minecraft/network/chat/Component; +MD: net/minecraft/client/gui/components/tabs/GridLayoutTab/m_267609_ (Ljava/util/function/Consumer;)V net/minecraft/client/gui/components/tabs/GridLayoutTab/visitChildren (Ljava/util/function/Consumer;)V +MD: net/minecraft/client/gui/components/tabs/GridLayoutTab/m_267697_ (Lnet/minecraft/client/gui/navigation/ScreenRectangle;)V net/minecraft/client/gui/components/tabs/GridLayoutTab/doLayout (Lnet/minecraft/client/gui/navigation/ScreenRectangle;)V +MD: net/minecraft/client/gui/components/tabs/Tab/m_267600_ ()Lnet/minecraft/network/chat/Component; net/minecraft/client/gui/components/tabs/Tab/getTabTitle ()Lnet/minecraft/network/chat/Component; +MD: net/minecraft/client/gui/components/tabs/Tab/m_267609_ (Ljava/util/function/Consumer;)V net/minecraft/client/gui/components/tabs/Tab/visitChildren (Ljava/util/function/Consumer;)V +MD: net/minecraft/client/gui/components/tabs/Tab/m_267681_ ()V net/minecraft/client/gui/components/tabs/Tab/tick ()V +MD: net/minecraft/client/gui/components/tabs/Tab/m_267697_ (Lnet/minecraft/client/gui/navigation/ScreenRectangle;)V net/minecraft/client/gui/components/tabs/Tab/doLayout (Lnet/minecraft/client/gui/navigation/ScreenRectangle;)V +MD: net/minecraft/client/gui/components/tabs/TabManager/ (Ljava/util/function/Consumer;Ljava/util/function/Consumer;)V net/minecraft/client/gui/components/tabs/TabManager/ (Ljava/util/function/Consumer;Ljava/util/function/Consumer;)V +MD: net/minecraft/client/gui/components/tabs/TabManager/m_267621_ ()V net/minecraft/client/gui/components/tabs/TabManager/tickCurrent ()V +MD: net/minecraft/client/gui/components/tabs/TabManager/m_267695_ ()Lnet/minecraft/client/gui/components/tabs/Tab; net/minecraft/client/gui/components/tabs/TabManager/getCurrentTab ()Lnet/minecraft/client/gui/components/tabs/Tab; +MD: net/minecraft/client/gui/components/tabs/TabManager/m_267817_ (Lnet/minecraft/client/gui/navigation/ScreenRectangle;)V net/minecraft/client/gui/components/tabs/TabManager/setTabArea (Lnet/minecraft/client/gui/navigation/ScreenRectangle;)V +MD: net/minecraft/client/gui/components/tabs/TabManager/m_276088_ (Lnet/minecraft/client/gui/components/tabs/Tab;Z)V net/minecraft/client/gui/components/tabs/TabManager/setCurrentTab (Lnet/minecraft/client/gui/components/tabs/Tab;Z)V +MD: net/minecraft/client/gui/components/tabs/TabNavigationBar/ ()V net/minecraft/client/gui/components/tabs/TabNavigationBar/ ()V +MD: net/minecraft/client/gui/components/tabs/TabNavigationBar/ (ILnet/minecraft/client/gui/components/tabs/TabManager;Ljava/lang/Iterable;)V net/minecraft/client/gui/components/tabs/TabNavigationBar/ (ILnet/minecraft/client/gui/components/tabs/TabManager;Ljava/lang/Iterable;)V +MD: net/minecraft/client/gui/components/tabs/TabNavigationBar/m_142291_ (Lnet/minecraft/client/gui/narration/NarrationElementOutput;)V net/minecraft/client/gui/components/tabs/TabNavigationBar/updateNarration (Lnet/minecraft/client/gui/narration/NarrationElementOutput;)V +MD: net/minecraft/client/gui/components/tabs/TabNavigationBar/m_142684_ ()Lnet/minecraft/client/gui/narration/NarratableEntry$NarrationPriority; net/minecraft/client/gui/components/tabs/TabNavigationBar/narrationPriority ()Lnet/minecraft/client/gui/narration/NarratableEntry$NarrationPriority; +MD: net/minecraft/client/gui/components/tabs/TabNavigationBar/m_264064_ (Lnet/minecraft/client/gui/navigation/FocusNavigationEvent;)Lnet/minecraft/client/gui/ComponentPath; net/minecraft/client/gui/components/tabs/TabNavigationBar/nextFocusPath (Lnet/minecraft/client/gui/navigation/FocusNavigationEvent;)Lnet/minecraft/client/gui/ComponentPath; +MD: net/minecraft/client/gui/components/tabs/TabNavigationBar/m_264198_ ()Lnet/minecraft/client/gui/navigation/ScreenRectangle; net/minecraft/client/gui/components/tabs/TabNavigationBar/getRectangle ()Lnet/minecraft/client/gui/navigation/ScreenRectangle; +MD: net/minecraft/client/gui/components/tabs/TabNavigationBar/m_267604_ (I)V net/minecraft/client/gui/components/tabs/TabNavigationBar/setWidth (I)V +MD: net/minecraft/client/gui/components/tabs/TabNavigationBar/m_267630_ (Lnet/minecraft/client/gui/components/tabs/TabManager;I)Lnet/minecraft/client/gui/components/tabs/TabNavigationBar$Builder; net/minecraft/client/gui/components/tabs/TabNavigationBar/builder (Lnet/minecraft/client/gui/components/tabs/TabManager;I)Lnet/minecraft/client/gui/components/tabs/TabNavigationBar$Builder; +MD: net/minecraft/client/gui/components/tabs/TabNavigationBar/m_267766_ ()V net/minecraft/client/gui/components/tabs/TabNavigationBar/arrangeElements ()V +MD: net/minecraft/client/gui/components/tabs/TabNavigationBar/m_269025_ ()I net/minecraft/client/gui/components/tabs/TabNavigationBar/currentTabIndex ()I +MD: net/minecraft/client/gui/components/tabs/TabNavigationBar/m_269123_ (I)I net/minecraft/client/gui/components/tabs/TabNavigationBar/getNextTabIndex (I)I +MD: net/minecraft/client/gui/components/tabs/TabNavigationBar/m_269419_ (I)Z net/minecraft/client/gui/components/tabs/TabNavigationBar/keyPressed (I)Z +MD: net/minecraft/client/gui/components/tabs/TabNavigationBar/m_273975_ ()Ljava/util/Optional; net/minecraft/client/gui/components/tabs/TabNavigationBar/lambda$updateNarration$0 ()Ljava/util/Optional; +MD: net/minecraft/client/gui/components/tabs/TabNavigationBar/m_273976_ (Lnet/minecraft/client/gui/narration/NarrationElementOutput;Lnet/minecraft/client/gui/components/TabButton;)V net/minecraft/client/gui/components/tabs/TabNavigationBar/lambda$updateNarration$1 (Lnet/minecraft/client/gui/narration/NarrationElementOutput;Lnet/minecraft/client/gui/components/TabButton;)V +MD: net/minecraft/client/gui/components/tabs/TabNavigationBar/m_274517_ ()Lnet/minecraft/client/gui/components/TabButton; net/minecraft/client/gui/components/tabs/TabNavigationBar/currentTabButton ()Lnet/minecraft/client/gui/components/TabButton; +MD: net/minecraft/client/gui/components/tabs/TabNavigationBar/m_274560_ (Lnet/minecraft/client/gui/narration/NarrationElementOutput;Lnet/minecraft/client/gui/components/TabButton;)V net/minecraft/client/gui/components/tabs/TabNavigationBar/narrateListElementPosition (Lnet/minecraft/client/gui/narration/NarrationElementOutput;Lnet/minecraft/client/gui/components/TabButton;)V +MD: net/minecraft/client/gui/components/tabs/TabNavigationBar/m_276089_ (IZ)V net/minecraft/client/gui/components/tabs/TabNavigationBar/selectTab (IZ)V +MD: net/minecraft/client/gui/components/tabs/TabNavigationBar/m_6702_ ()Ljava/util/List; net/minecraft/client/gui/components/tabs/TabNavigationBar/children ()Ljava/util/List; +MD: net/minecraft/client/gui/components/tabs/TabNavigationBar/m_7522_ (Lnet/minecraft/client/gui/components/events/GuiEventListener;)V net/minecraft/client/gui/components/tabs/TabNavigationBar/setFocused (Lnet/minecraft/client/gui/components/events/GuiEventListener;)V +MD: net/minecraft/client/gui/components/tabs/TabNavigationBar/m_88315_ (Lnet/minecraft/client/gui/GuiGraphics;IIF)V net/minecraft/client/gui/components/tabs/TabNavigationBar/render (Lnet/minecraft/client/gui/GuiGraphics;IIF)V +MD: net/minecraft/client/gui/components/tabs/TabNavigationBar/m_93692_ (Z)V net/minecraft/client/gui/components/tabs/TabNavigationBar/setFocused (Z)V +MD: net/minecraft/client/gui/components/tabs/TabNavigationBar$Builder/ (Lnet/minecraft/client/gui/components/tabs/TabManager;I)V net/minecraft/client/gui/components/tabs/TabNavigationBar$Builder/ (Lnet/minecraft/client/gui/components/tabs/TabManager;I)V +MD: net/minecraft/client/gui/components/tabs/TabNavigationBar$Builder/m_267625_ ()Lnet/minecraft/client/gui/components/tabs/TabNavigationBar; net/minecraft/client/gui/components/tabs/TabNavigationBar$Builder/build ()Lnet/minecraft/client/gui/components/tabs/TabNavigationBar; +MD: net/minecraft/client/gui/components/tabs/TabNavigationBar$Builder/m_267824_ ([Lnet/minecraft/client/gui/components/tabs/Tab;)Lnet/minecraft/client/gui/components/tabs/TabNavigationBar$Builder; net/minecraft/client/gui/components/tabs/TabNavigationBar$Builder/addTabs ([Lnet/minecraft/client/gui/components/tabs/Tab;)Lnet/minecraft/client/gui/components/tabs/TabNavigationBar$Builder; +MD: net/minecraft/client/gui/components/toasts/AdvancementToast/ (Lnet/minecraft/advancements/Advancement;)V net/minecraft/client/gui/components/toasts/AdvancementToast/ (Lnet/minecraft/advancements/Advancement;)V +MD: net/minecraft/client/gui/components/toasts/AdvancementToast/m_7172_ (Lnet/minecraft/client/gui/GuiGraphics;Lnet/minecraft/client/gui/components/toasts/ToastComponent;J)Lnet/minecraft/client/gui/components/toasts/Toast$Visibility; net/minecraft/client/gui/components/toasts/AdvancementToast/render (Lnet/minecraft/client/gui/GuiGraphics;Lnet/minecraft/client/gui/components/toasts/ToastComponent;J)Lnet/minecraft/client/gui/components/toasts/Toast$Visibility; +MD: net/minecraft/client/gui/components/toasts/RecipeToast/ ()V net/minecraft/client/gui/components/toasts/RecipeToast/ ()V +MD: net/minecraft/client/gui/components/toasts/RecipeToast/ (Lnet/minecraft/world/item/crafting/Recipe;)V net/minecraft/client/gui/components/toasts/RecipeToast/ (Lnet/minecraft/world/item/crafting/Recipe;)V +MD: net/minecraft/client/gui/components/toasts/RecipeToast/m_7172_ (Lnet/minecraft/client/gui/GuiGraphics;Lnet/minecraft/client/gui/components/toasts/ToastComponent;J)Lnet/minecraft/client/gui/components/toasts/Toast$Visibility; net/minecraft/client/gui/components/toasts/RecipeToast/render (Lnet/minecraft/client/gui/GuiGraphics;Lnet/minecraft/client/gui/components/toasts/ToastComponent;J)Lnet/minecraft/client/gui/components/toasts/Toast$Visibility; +MD: net/minecraft/client/gui/components/toasts/RecipeToast/m_94811_ (Lnet/minecraft/world/item/crafting/Recipe;)V net/minecraft/client/gui/components/toasts/RecipeToast/addItem (Lnet/minecraft/world/item/crafting/Recipe;)V +MD: net/minecraft/client/gui/components/toasts/RecipeToast/m_94817_ (Lnet/minecraft/client/gui/components/toasts/ToastComponent;Lnet/minecraft/world/item/crafting/Recipe;)V net/minecraft/client/gui/components/toasts/RecipeToast/addOrUpdate (Lnet/minecraft/client/gui/components/toasts/ToastComponent;Lnet/minecraft/world/item/crafting/Recipe;)V +MD: net/minecraft/client/gui/components/toasts/SystemToast/ (Lnet/minecraft/client/gui/components/toasts/SystemToast$SystemToastIds;Lnet/minecraft/network/chat/Component;Lnet/minecraft/network/chat/Component;)V net/minecraft/client/gui/components/toasts/SystemToast/ (Lnet/minecraft/client/gui/components/toasts/SystemToast$SystemToastIds;Lnet/minecraft/network/chat/Component;Lnet/minecraft/network/chat/Component;)V +MD: net/minecraft/client/gui/components/toasts/SystemToast/ (Lnet/minecraft/client/gui/components/toasts/SystemToast$SystemToastIds;Lnet/minecraft/network/chat/Component;Ljava/util/List;I)V net/minecraft/client/gui/components/toasts/SystemToast/ (Lnet/minecraft/client/gui/components/toasts/SystemToast$SystemToastIds;Lnet/minecraft/network/chat/Component;Ljava/util/List;I)V +MD: net/minecraft/client/gui/components/toasts/SystemToast/m_280654_ (Lnet/minecraft/client/gui/GuiGraphics;Lnet/minecraft/client/gui/components/toasts/ToastComponent;IIII)V net/minecraft/client/gui/components/toasts/SystemToast/renderBackgroundRow (Lnet/minecraft/client/gui/GuiGraphics;Lnet/minecraft/client/gui/components/toasts/ToastComponent;IIII)V +MD: net/minecraft/client/gui/components/toasts/SystemToast/m_7172_ (Lnet/minecraft/client/gui/GuiGraphics;Lnet/minecraft/client/gui/components/toasts/ToastComponent;J)Lnet/minecraft/client/gui/components/toasts/Toast$Visibility; net/minecraft/client/gui/components/toasts/SystemToast/render (Lnet/minecraft/client/gui/GuiGraphics;Lnet/minecraft/client/gui/components/toasts/ToastComponent;J)Lnet/minecraft/client/gui/components/toasts/Toast$Visibility; +MD: net/minecraft/client/gui/components/toasts/SystemToast/m_7283_ ()Ljava/lang/Object; net/minecraft/client/gui/components/toasts/SystemToast/getToken ()Ljava/lang/Object; +MD: net/minecraft/client/gui/components/toasts/SystemToast/m_7283_ ()Lnet/minecraft/client/gui/components/toasts/SystemToast$SystemToastIds; net/minecraft/client/gui/components/toasts/SystemToast/getToken ()Lnet/minecraft/client/gui/components/toasts/SystemToast$SystemToastIds; +MD: net/minecraft/client/gui/components/toasts/SystemToast/m_7828_ ()I net/minecraft/client/gui/components/toasts/SystemToast/width ()I +MD: net/minecraft/client/gui/components/toasts/SystemToast/m_94847_ (Lnet/minecraft/client/Minecraft;Lnet/minecraft/client/gui/components/toasts/SystemToast$SystemToastIds;Lnet/minecraft/network/chat/Component;Lnet/minecraft/network/chat/Component;)Lnet/minecraft/client/gui/components/toasts/SystemToast; net/minecraft/client/gui/components/toasts/SystemToast/multiline (Lnet/minecraft/client/Minecraft;Lnet/minecraft/client/gui/components/toasts/SystemToast$SystemToastIds;Lnet/minecraft/network/chat/Component;Lnet/minecraft/network/chat/Component;)Lnet/minecraft/client/gui/components/toasts/SystemToast; +MD: net/minecraft/client/gui/components/toasts/SystemToast/m_94852_ (Lnet/minecraft/client/Minecraft;Ljava/lang/String;)V net/minecraft/client/gui/components/toasts/SystemToast/onWorldAccessFailure (Lnet/minecraft/client/Minecraft;Ljava/lang/String;)V +MD: net/minecraft/client/gui/components/toasts/SystemToast/m_94855_ (Lnet/minecraft/client/gui/components/toasts/ToastComponent;Lnet/minecraft/client/gui/components/toasts/SystemToast$SystemToastIds;Lnet/minecraft/network/chat/Component;Lnet/minecraft/network/chat/Component;)V net/minecraft/client/gui/components/toasts/SystemToast/add (Lnet/minecraft/client/gui/components/toasts/ToastComponent;Lnet/minecraft/client/gui/components/toasts/SystemToast$SystemToastIds;Lnet/minecraft/network/chat/Component;Lnet/minecraft/network/chat/Component;)V +MD: net/minecraft/client/gui/components/toasts/SystemToast/m_94860_ (Lnet/minecraft/network/chat/Component;)Lcom/google/common/collect/ImmutableList; net/minecraft/client/gui/components/toasts/SystemToast/nullToEmpty (Lnet/minecraft/network/chat/Component;)Lcom/google/common/collect/ImmutableList; +MD: net/minecraft/client/gui/components/toasts/SystemToast/m_94862_ (Lnet/minecraft/network/chat/Component;Lnet/minecraft/network/chat/Component;)V net/minecraft/client/gui/components/toasts/SystemToast/reset (Lnet/minecraft/network/chat/Component;Lnet/minecraft/network/chat/Component;)V +MD: net/minecraft/client/gui/components/toasts/SystemToast/m_94866_ (Lnet/minecraft/client/Minecraft;Ljava/lang/String;)V net/minecraft/client/gui/components/toasts/SystemToast/onWorldDeleteFailure (Lnet/minecraft/client/Minecraft;Ljava/lang/String;)V +MD: net/minecraft/client/gui/components/toasts/SystemToast/m_94869_ (Lnet/minecraft/client/gui/components/toasts/ToastComponent;Lnet/minecraft/client/gui/components/toasts/SystemToast$SystemToastIds;Lnet/minecraft/network/chat/Component;Lnet/minecraft/network/chat/Component;)V net/minecraft/client/gui/components/toasts/SystemToast/addOrUpdate (Lnet/minecraft/client/gui/components/toasts/ToastComponent;Lnet/minecraft/client/gui/components/toasts/SystemToast$SystemToastIds;Lnet/minecraft/network/chat/Component;Lnet/minecraft/network/chat/Component;)V +MD: net/minecraft/client/gui/components/toasts/SystemToast/m_94875_ (Lnet/minecraft/client/Minecraft;Ljava/lang/String;)V net/minecraft/client/gui/components/toasts/SystemToast/onPackCopyFailure (Lnet/minecraft/client/Minecraft;Ljava/lang/String;)V +MD: net/minecraft/client/gui/components/toasts/SystemToast/m_94899_ ()I net/minecraft/client/gui/components/toasts/SystemToast/height ()I +MD: net/minecraft/client/gui/components/toasts/SystemToast$SystemToastIds/ ()V net/minecraft/client/gui/components/toasts/SystemToast$SystemToastIds/ ()V +MD: net/minecraft/client/gui/components/toasts/SystemToast$SystemToastIds/ (Ljava/lang/String;IJ)V net/minecraft/client/gui/components/toasts/SystemToast$SystemToastIds/ (Ljava/lang/String;IJ)V +MD: net/minecraft/client/gui/components/toasts/SystemToast$SystemToastIds/ (Ljava/lang/String;I)V net/minecraft/client/gui/components/toasts/SystemToast$SystemToastIds/ (Ljava/lang/String;I)V +MD: net/minecraft/client/gui/components/toasts/SystemToast$SystemToastIds/m_169079_ ()[Lnet/minecraft/client/gui/components/toasts/SystemToast$SystemToastIds; net/minecraft/client/gui/components/toasts/SystemToast$SystemToastIds/$values ()[Lnet/minecraft/client/gui/components/toasts/SystemToast$SystemToastIds; +MD: net/minecraft/client/gui/components/toasts/SystemToast$SystemToastIds/valueOf (Ljava/lang/String;)Lnet/minecraft/client/gui/components/toasts/SystemToast$SystemToastIds; net/minecraft/client/gui/components/toasts/SystemToast$SystemToastIds/valueOf (Ljava/lang/String;)Lnet/minecraft/client/gui/components/toasts/SystemToast$SystemToastIds; +MD: net/minecraft/client/gui/components/toasts/SystemToast$SystemToastIds/values ()[Lnet/minecraft/client/gui/components/toasts/SystemToast$SystemToastIds; net/minecraft/client/gui/components/toasts/SystemToast$SystemToastIds/values ()[Lnet/minecraft/client/gui/components/toasts/SystemToast$SystemToastIds; +MD: net/minecraft/client/gui/components/toasts/Toast/ ()V net/minecraft/client/gui/components/toasts/Toast/ ()V +MD: net/minecraft/client/gui/components/toasts/Toast/m_243110_ ()I net/minecraft/client/gui/components/toasts/Toast/slotCount ()I +MD: net/minecraft/client/gui/components/toasts/Toast/m_7172_ (Lnet/minecraft/client/gui/GuiGraphics;Lnet/minecraft/client/gui/components/toasts/ToastComponent;J)Lnet/minecraft/client/gui/components/toasts/Toast$Visibility; net/minecraft/client/gui/components/toasts/Toast/render (Lnet/minecraft/client/gui/GuiGraphics;Lnet/minecraft/client/gui/components/toasts/ToastComponent;J)Lnet/minecraft/client/gui/components/toasts/Toast$Visibility; +MD: net/minecraft/client/gui/components/toasts/Toast/m_7283_ ()Ljava/lang/Object; net/minecraft/client/gui/components/toasts/Toast/getToken ()Ljava/lang/Object; +MD: net/minecraft/client/gui/components/toasts/Toast/m_7828_ ()I net/minecraft/client/gui/components/toasts/Toast/width ()I +MD: net/minecraft/client/gui/components/toasts/Toast/m_94899_ ()I net/minecraft/client/gui/components/toasts/Toast/height ()I +MD: net/minecraft/client/gui/components/toasts/Toast$Visibility/ ()V net/minecraft/client/gui/components/toasts/Toast$Visibility/ ()V +MD: net/minecraft/client/gui/components/toasts/Toast$Visibility/ (Ljava/lang/String;ILnet/minecraft/sounds/SoundEvent;)V net/minecraft/client/gui/components/toasts/Toast$Visibility/ (Ljava/lang/String;ILnet/minecraft/sounds/SoundEvent;)V +MD: net/minecraft/client/gui/components/toasts/Toast$Visibility/m_169080_ ()[Lnet/minecraft/client/gui/components/toasts/Toast$Visibility; net/minecraft/client/gui/components/toasts/Toast$Visibility/$values ()[Lnet/minecraft/client/gui/components/toasts/Toast$Visibility; +MD: net/minecraft/client/gui/components/toasts/Toast$Visibility/m_94909_ (Lnet/minecraft/client/sounds/SoundManager;)V net/minecraft/client/gui/components/toasts/Toast$Visibility/playSound (Lnet/minecraft/client/sounds/SoundManager;)V +MD: net/minecraft/client/gui/components/toasts/Toast$Visibility/valueOf (Ljava/lang/String;)Lnet/minecraft/client/gui/components/toasts/Toast$Visibility; net/minecraft/client/gui/components/toasts/Toast$Visibility/valueOf (Ljava/lang/String;)Lnet/minecraft/client/gui/components/toasts/Toast$Visibility; +MD: net/minecraft/client/gui/components/toasts/Toast$Visibility/values ()[Lnet/minecraft/client/gui/components/toasts/Toast$Visibility; net/minecraft/client/gui/components/toasts/Toast$Visibility/values ()[Lnet/minecraft/client/gui/components/toasts/Toast$Visibility; +MD: net/minecraft/client/gui/components/toasts/ToastComponent/ (Lnet/minecraft/client/Minecraft;)V net/minecraft/client/gui/components/toasts/ToastComponent/ (Lnet/minecraft/client/Minecraft;)V +MD: net/minecraft/client/gui/components/toasts/ToastComponent/m_243085_ (Lnet/minecraft/client/gui/components/toasts/Toast;)Z net/minecraft/client/gui/components/toasts/ToastComponent/lambda$render$1 (Lnet/minecraft/client/gui/components/toasts/Toast;)Z +MD: net/minecraft/client/gui/components/toasts/ToastComponent/m_243097_ ()I net/minecraft/client/gui/components/toasts/ToastComponent/freeSlots ()I +MD: net/minecraft/client/gui/components/toasts/ToastComponent/m_243100_ (I)I net/minecraft/client/gui/components/toasts/ToastComponent/findFreeIndex (I)I +MD: net/minecraft/client/gui/components/toasts/ToastComponent/m_264542_ ()D net/minecraft/client/gui/components/toasts/ToastComponent/getNotificationDisplayTimeMultiplier ()D +MD: net/minecraft/client/gui/components/toasts/ToastComponent/m_279745_ (ILnet/minecraft/client/gui/GuiGraphics;Lnet/minecraft/client/gui/components/toasts/ToastComponent$ToastInstance;)Z net/minecraft/client/gui/components/toasts/ToastComponent/lambda$render$0 (ILnet/minecraft/client/gui/GuiGraphics;Lnet/minecraft/client/gui/components/toasts/ToastComponent$ToastInstance;)Z +MD: net/minecraft/client/gui/components/toasts/ToastComponent/m_94919_ ()V net/minecraft/client/gui/components/toasts/ToastComponent/clear ()V +MD: net/minecraft/client/gui/components/toasts/ToastComponent/m_94920_ (Lnet/minecraft/client/gui/GuiGraphics;)V net/minecraft/client/gui/components/toasts/ToastComponent/render (Lnet/minecraft/client/gui/GuiGraphics;)V +MD: net/minecraft/client/gui/components/toasts/ToastComponent/m_94922_ (Lnet/minecraft/client/gui/components/toasts/Toast;)V net/minecraft/client/gui/components/toasts/ToastComponent/addToast (Lnet/minecraft/client/gui/components/toasts/Toast;)V +MD: net/minecraft/client/gui/components/toasts/ToastComponent/m_94926_ (Ljava/lang/Class;Ljava/lang/Object;)Lnet/minecraft/client/gui/components/toasts/Toast; net/minecraft/client/gui/components/toasts/ToastComponent/getToast (Ljava/lang/Class;Ljava/lang/Object;)Lnet/minecraft/client/gui/components/toasts/Toast; +MD: net/minecraft/client/gui/components/toasts/ToastComponent/m_94929_ ()Lnet/minecraft/client/Minecraft; net/minecraft/client/gui/components/toasts/ToastComponent/getMinecraft ()Lnet/minecraft/client/Minecraft; +MD: net/minecraft/client/gui/components/toasts/ToastComponent$ToastInstance/ (Lnet/minecraft/client/gui/components/toasts/ToastComponent;Lnet/minecraft/client/gui/components/toasts/Toast;II)V net/minecraft/client/gui/components/toasts/ToastComponent$ToastInstance/ (Lnet/minecraft/client/gui/components/toasts/ToastComponent;Lnet/minecraft/client/gui/components/toasts/Toast;II)V +MD: net/minecraft/client/gui/components/toasts/ToastComponent$ToastInstance/m_280442_ (ILnet/minecraft/client/gui/GuiGraphics;)Z net/minecraft/client/gui/components/toasts/ToastComponent$ToastInstance/render (ILnet/minecraft/client/gui/GuiGraphics;)Z +MD: net/minecraft/client/gui/components/toasts/ToastComponent$ToastInstance/m_94942_ ()Lnet/minecraft/client/gui/components/toasts/Toast; net/minecraft/client/gui/components/toasts/ToastComponent$ToastInstance/getToast ()Lnet/minecraft/client/gui/components/toasts/Toast; +MD: net/minecraft/client/gui/components/toasts/ToastComponent$ToastInstance/m_94947_ (J)F net/minecraft/client/gui/components/toasts/ToastComponent$ToastInstance/getVisibility (J)F +MD: net/minecraft/client/gui/components/toasts/TutorialToast/ (Lnet/minecraft/client/gui/components/toasts/TutorialToast$Icons;Lnet/minecraft/network/chat/Component;Lnet/minecraft/network/chat/Component;Z)V net/minecraft/client/gui/components/toasts/TutorialToast/ (Lnet/minecraft/client/gui/components/toasts/TutorialToast$Icons;Lnet/minecraft/network/chat/Component;Lnet/minecraft/network/chat/Component;Z)V +MD: net/minecraft/client/gui/components/toasts/TutorialToast/m_7172_ (Lnet/minecraft/client/gui/GuiGraphics;Lnet/minecraft/client/gui/components/toasts/ToastComponent;J)Lnet/minecraft/client/gui/components/toasts/Toast$Visibility; net/minecraft/client/gui/components/toasts/TutorialToast/render (Lnet/minecraft/client/gui/GuiGraphics;Lnet/minecraft/client/gui/components/toasts/ToastComponent;J)Lnet/minecraft/client/gui/components/toasts/Toast$Visibility; +MD: net/minecraft/client/gui/components/toasts/TutorialToast/m_94962_ (F)V net/minecraft/client/gui/components/toasts/TutorialToast/updateProgress (F)V +MD: net/minecraft/client/gui/components/toasts/TutorialToast/m_94968_ ()V net/minecraft/client/gui/components/toasts/TutorialToast/hide ()V +MD: net/minecraft/client/gui/components/toasts/TutorialToast$Icons/ ()V net/minecraft/client/gui/components/toasts/TutorialToast$Icons/ ()V +MD: net/minecraft/client/gui/components/toasts/TutorialToast$Icons/ (Ljava/lang/String;III)V net/minecraft/client/gui/components/toasts/TutorialToast$Icons/ (Ljava/lang/String;III)V +MD: net/minecraft/client/gui/components/toasts/TutorialToast$Icons/m_169088_ ()[Lnet/minecraft/client/gui/components/toasts/TutorialToast$Icons; net/minecraft/client/gui/components/toasts/TutorialToast$Icons/$values ()[Lnet/minecraft/client/gui/components/toasts/TutorialToast$Icons; +MD: net/minecraft/client/gui/components/toasts/TutorialToast$Icons/m_280006_ (Lnet/minecraft/client/gui/GuiGraphics;II)V net/minecraft/client/gui/components/toasts/TutorialToast$Icons/render (Lnet/minecraft/client/gui/GuiGraphics;II)V +MD: net/minecraft/client/gui/components/toasts/TutorialToast$Icons/valueOf (Ljava/lang/String;)Lnet/minecraft/client/gui/components/toasts/TutorialToast$Icons; net/minecraft/client/gui/components/toasts/TutorialToast$Icons/valueOf (Ljava/lang/String;)Lnet/minecraft/client/gui/components/toasts/TutorialToast$Icons; +MD: net/minecraft/client/gui/components/toasts/TutorialToast$Icons/values ()[Lnet/minecraft/client/gui/components/toasts/TutorialToast$Icons; net/minecraft/client/gui/components/toasts/TutorialToast$Icons/values ()[Lnet/minecraft/client/gui/components/toasts/TutorialToast$Icons; +MD: net/minecraft/client/gui/font/AllMissingGlyphProvider/ ()V net/minecraft/client/gui/font/AllMissingGlyphProvider/ ()V +MD: net/minecraft/client/gui/font/AllMissingGlyphProvider/m_214022_ (I)Lcom/mojang/blaze3d/font/GlyphInfo; net/minecraft/client/gui/font/AllMissingGlyphProvider/getGlyph (I)Lcom/mojang/blaze3d/font/GlyphInfo; +MD: net/minecraft/client/gui/font/AllMissingGlyphProvider/m_6990_ ()Lit/unimi/dsi/fastutil/ints/IntSet; net/minecraft/client/gui/font/AllMissingGlyphProvider/getSupportedGlyphs ()Lit/unimi/dsi/fastutil/ints/IntSet; +MD: net/minecraft/client/gui/font/CodepointMap/ (Ljava/util/function/IntFunction;Ljava/util/function/IntFunction;)V net/minecraft/client/gui/font/CodepointMap/ (Ljava/util/function/IntFunction;Ljava/util/function/IntFunction;)V +MD: net/minecraft/client/gui/font/CodepointMap/m_284150_ (Lnet/minecraft/client/gui/font/CodepointMap$Output;)V net/minecraft/client/gui/font/CodepointMap/forEach (Lnet/minecraft/client/gui/font/CodepointMap$Output;)V +MD: net/minecraft/client/gui/font/CodepointMap/m_284192_ ()V net/minecraft/client/gui/font/CodepointMap/clear ()V +MD: net/minecraft/client/gui/font/CodepointMap/m_284320_ (I)Ljava/lang/Object; net/minecraft/client/gui/font/CodepointMap/remove (I)Ljava/lang/Object; +MD: net/minecraft/client/gui/font/CodepointMap/m_284412_ (I)Ljava/lang/Object; net/minecraft/client/gui/font/CodepointMap/get (I)Ljava/lang/Object; +MD: net/minecraft/client/gui/font/CodepointMap/m_284450_ (ILjava/util/function/IntFunction;)Ljava/lang/Object; net/minecraft/client/gui/font/CodepointMap/computeIfAbsent (ILjava/util/function/IntFunction;)Ljava/lang/Object; +MD: net/minecraft/client/gui/font/CodepointMap/m_284498_ ()Lit/unimi/dsi/fastutil/ints/IntSet; net/minecraft/client/gui/font/CodepointMap/keySet ()Lit/unimi/dsi/fastutil/ints/IntSet; +MD: net/minecraft/client/gui/font/CodepointMap/m_284506_ (ILjava/lang/Object;)Ljava/lang/Object; net/minecraft/client/gui/font/CodepointMap/put (ILjava/lang/Object;)Ljava/lang/Object; +MD: net/minecraft/client/gui/font/CodepointMap/m_284551_ (Lit/unimi/dsi/fastutil/ints/IntOpenHashSet;ILjava/lang/Object;)V net/minecraft/client/gui/font/CodepointMap/lambda$keySet$0 (Lit/unimi/dsi/fastutil/ints/IntOpenHashSet;ILjava/lang/Object;)V +MD: net/minecraft/client/gui/font/CodepointMap$Output/m_284511_ (ILjava/lang/Object;)V net/minecraft/client/gui/font/CodepointMap$Output/accept (ILjava/lang/Object;)V +MD: net/minecraft/client/gui/font/FontManager/ ()V net/minecraft/client/gui/font/FontManager/ ()V +MD: net/minecraft/client/gui/font/FontManager/ (Lnet/minecraft/client/renderer/texture/TextureManager;)V net/minecraft/client/gui/font/FontManager/ (Lnet/minecraft/client/renderer/texture/TextureManager;)V +MD: net/minecraft/client/gui/font/FontManager/close ()V net/minecraft/client/gui/font/FontManager/close ()V +MD: net/minecraft/client/gui/font/FontManager/m_243082_ ()Lnet/minecraft/client/gui/Font; net/minecraft/client/gui/font/FontManager/createFontFilterFishy ()Lnet/minecraft/client/gui/Font; +MD: net/minecraft/client/gui/font/FontManager/m_283954_ (Lcom/mojang/blaze3d/font/GlyphProvider;Ljava/util/concurrent/Executor;Ljava/util/List;)Ljava/util/concurrent/CompletableFuture; net/minecraft/client/gui/font/FontManager/lambda$prepare$6 (Lcom/mojang/blaze3d/font/GlyphProvider;Ljava/util/concurrent/Executor;Ljava/util/List;)Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/client/gui/font/FontManager/m_283955_ (Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/client/gui/font/FontSet; net/minecraft/client/gui/font/FontManager/lambda$createFont$17 (Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/client/gui/font/FontSet; +MD: net/minecraft/client/gui/font/FontManager/m_283956_ (I)[Ljava/util/concurrent/CompletableFuture; net/minecraft/client/gui/font/FontManager/lambda$prepare$7 (I)[Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/client/gui/font/FontManager/m_283957_ (Ljava/util/Map;Lnet/minecraft/resources/ResourceLocation;Ljava/util/List;)V net/minecraft/client/gui/font/FontManager/lambda$resolveProviders$13 (Ljava/util/Map;Lnet/minecraft/resources/ResourceLocation;Ljava/util/List;)V +MD: net/minecraft/client/gui/font/FontManager/m_283958_ (Ljava/util/concurrent/Executor;Ljava/util/List;)Ljava/util/concurrent/CompletionStage; net/minecraft/client/gui/font/FontManager/lambda$prepare$10 (Ljava/util/concurrent/Executor;Ljava/util/List;)Ljava/util/concurrent/CompletionStage; +MD: net/minecraft/client/gui/font/FontManager/m_283959_ (Ljava/util/List;Ljava/util/Map;Ljava/lang/Void;)Lnet/minecraft/client/gui/font/FontManager$Preparation; net/minecraft/client/gui/font/FontManager/lambda$prepare$8 (Ljava/util/List;Ljava/util/Map;Ljava/lang/Void;)Lnet/minecraft/client/gui/font/FontManager$Preparation; +MD: net/minecraft/client/gui/font/FontManager/m_283960_ (Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/client/gui/font/FontSet; net/minecraft/client/gui/font/FontManager/lambda$createFontFilterFishy$18 (Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/client/gui/font/FontSet; +MD: net/minecraft/client/gui/font/FontManager/m_283961_ (Ljava/util/List;Lcom/mojang/blaze3d/font/GlyphProvider;)V net/minecraft/client/gui/font/FontManager/lambda$prepare$5 (Ljava/util/List;Lcom/mojang/blaze3d/font/GlyphProvider;)V +MD: net/minecraft/client/gui/font/FontManager/m_283963_ (Ljava/util/Map$Entry;Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/server/packs/resources/ResourceManager;Ljava/util/concurrent/Executor;)Lnet/minecraft/client/gui/font/FontManager$UnresolvedBuilderBundle; net/minecraft/client/gui/font/FontManager/lambda$prepare$4 (Ljava/util/Map$Entry;Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/server/packs/resources/ResourceManager;Ljava/util/concurrent/Executor;)Lnet/minecraft/client/gui/font/FontManager$UnresolvedBuilderBundle; +MD: net/minecraft/client/gui/font/FontManager/m_283964_ (Lnet/minecraft/util/profiling/ProfilerFiller;Lnet/minecraft/client/gui/font/FontManager$Preparation;)V net/minecraft/client/gui/font/FontManager/lambda$reload$1 (Lnet/minecraft/util/profiling/ProfilerFiller;Lnet/minecraft/client/gui/font/FontManager$Preparation;)V +MD: net/minecraft/client/gui/font/FontManager/m_283966_ (Ljava/util/List;I)V net/minecraft/client/gui/font/FontManager/lambda$finalizeProviderLoading$15 (Ljava/util/List;I)V +MD: net/minecraft/client/gui/font/FontManager/m_283967_ (Ljava/util/List;Lcom/mojang/blaze3d/font/GlyphProvider;Ljava/util/concurrent/Executor;Ljava/util/List;)Ljava/util/concurrent/CompletionStage; net/minecraft/client/gui/font/FontManager/lambda$prepare$9 (Ljava/util/List;Lcom/mojang/blaze3d/font/GlyphProvider;Ljava/util/concurrent/Executor;Ljava/util/List;)Ljava/util/concurrent/CompletionStage; +MD: net/minecraft/client/gui/font/FontManager/m_283968_ (Ljava/util/Map;Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/client/gui/font/FontManager$UnresolvedBuilderBundle;)V net/minecraft/client/gui/font/FontManager/lambda$resolveProviders$14 (Ljava/util/Map;Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/client/gui/font/FontManager$UnresolvedBuilderBundle;)V +MD: net/minecraft/client/gui/font/FontManager/m_283970_ (Lnet/minecraft/util/DependencySorter;Lnet/minecraft/client/gui/font/FontManager$UnresolvedBuilderBundle;)V net/minecraft/client/gui/font/FontManager/lambda$resolveProviders$12 (Lnet/minecraft/util/DependencySorter;Lnet/minecraft/client/gui/font/FontManager$UnresolvedBuilderBundle;)V +MD: net/minecraft/client/gui/font/FontManager/m_283971_ (Lnet/minecraft/resources/ResourceLocation;Ljava/util/List;)V net/minecraft/client/gui/font/FontManager/lambda$apply$16 (Lnet/minecraft/resources/ResourceLocation;Ljava/util/List;)V +MD: net/minecraft/client/gui/font/FontManager/m_284164_ (Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/client/gui/font/FontManager/getActualId (Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/client/gui/font/FontManager/m_284270_ (Ljava/util/List;Lnet/minecraft/resources/ResourceLocation;)Ljava/util/List; net/minecraft/client/gui/font/FontManager/loadResourceStack (Ljava/util/List;Lnet/minecraft/resources/ResourceLocation;)Ljava/util/List; +MD: net/minecraft/client/gui/font/FontManager/m_284357_ (Lnet/minecraft/client/gui/font/FontManager$BuilderId;Lnet/minecraft/client/gui/font/providers/GlyphProviderDefinition$Loader;Lnet/minecraft/server/packs/resources/ResourceManager;Ljava/util/concurrent/Executor;)Ljava/util/concurrent/CompletableFuture; net/minecraft/client/gui/font/FontManager/safeLoad (Lnet/minecraft/client/gui/font/FontManager$BuilderId;Lnet/minecraft/client/gui/font/providers/GlyphProviderDefinition$Loader;Lnet/minecraft/server/packs/resources/ResourceManager;Ljava/util/concurrent/Executor;)Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/client/gui/font/FontManager/m_284410_ (Lnet/minecraft/server/packs/resources/ResourceManager;Ljava/util/concurrent/Executor;)Ljava/util/concurrent/CompletableFuture; net/minecraft/client/gui/font/FontManager/prepare (Lnet/minecraft/server/packs/resources/ResourceManager;Ljava/util/concurrent/Executor;)Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/client/gui/font/FontManager/m_284460_ (Lnet/minecraft/client/gui/font/FontManager$Preparation;Lnet/minecraft/util/profiling/ProfilerFiller;)V net/minecraft/client/gui/font/FontManager/apply (Lnet/minecraft/client/gui/font/FontManager$Preparation;Lnet/minecraft/util/profiling/ProfilerFiller;)V +MD: net/minecraft/client/gui/font/FontManager/m_284489_ (Ljava/util/List;Lcom/mojang/blaze3d/font/GlyphProvider;)V net/minecraft/client/gui/font/FontManager/finalizeProviderLoading (Ljava/util/List;Lcom/mojang/blaze3d/font/GlyphProvider;)V +MD: net/minecraft/client/gui/font/FontManager/m_284517_ (Ljava/util/List;)Ljava/util/Map; net/minecraft/client/gui/font/FontManager/resolveProviders (Ljava/util/List;)Ljava/util/Map; +MD: net/minecraft/client/gui/font/FontManager/m_285669_ (Lnet/minecraft/client/gui/font/FontManager$BuilderId;Lnet/minecraft/server/packs/resources/ResourceManager;Ljava/util/concurrent/Executor;Lnet/minecraft/client/gui/font/FontManager$UnresolvedBuilderBundle;Lnet/minecraft/client/gui/font/providers/GlyphProviderDefinition$Loader;)V net/minecraft/client/gui/font/FontManager/lambda$prepare$2 (Lnet/minecraft/client/gui/font/FontManager$BuilderId;Lnet/minecraft/server/packs/resources/ResourceManager;Ljava/util/concurrent/Executor;Lnet/minecraft/client/gui/font/FontManager$UnresolvedBuilderBundle;Lnet/minecraft/client/gui/font/providers/GlyphProviderDefinition$Loader;)V +MD: net/minecraft/client/gui/font/FontManager/m_285670_ (Lnet/minecraft/client/gui/font/FontManager$UnresolvedBuilderBundle;Lnet/minecraft/client/gui/font/FontManager$BuilderId;Lnet/minecraft/client/gui/font/providers/GlyphProviderDefinition$Reference;)V net/minecraft/client/gui/font/FontManager/lambda$prepare$3 (Lnet/minecraft/client/gui/font/FontManager$UnresolvedBuilderBundle;Lnet/minecraft/client/gui/font/FontManager$BuilderId;Lnet/minecraft/client/gui/font/providers/GlyphProviderDefinition$Reference;)V +MD: net/minecraft/client/gui/font/FontManager/m_285671_ (Lnet/minecraft/client/gui/font/providers/GlyphProviderDefinition$Loader;Lnet/minecraft/server/packs/resources/ResourceManager;Lnet/minecraft/client/gui/font/FontManager$BuilderId;)Ljava/util/Optional; net/minecraft/client/gui/font/FontManager/lambda$safeLoad$11 (Lnet/minecraft/client/gui/font/providers/GlyphProviderDefinition$Loader;Lnet/minecraft/server/packs/resources/ResourceManager;Lnet/minecraft/client/gui/font/FontManager$BuilderId;)Ljava/util/Optional; +MD: net/minecraft/client/gui/font/FontManager/m_5540_ (Lnet/minecraft/server/packs/resources/PreparableReloadListener$PreparationBarrier;Lnet/minecraft/server/packs/resources/ResourceManager;Lnet/minecraft/util/profiling/ProfilerFiller;Lnet/minecraft/util/profiling/ProfilerFiller;Ljava/util/concurrent/Executor;Ljava/util/concurrent/Executor;)Ljava/util/concurrent/CompletableFuture; net/minecraft/client/gui/font/FontManager/reload (Lnet/minecraft/server/packs/resources/PreparableReloadListener$PreparationBarrier;Lnet/minecraft/server/packs/resources/ResourceManager;Lnet/minecraft/util/profiling/ProfilerFiller;Lnet/minecraft/util/profiling/ProfilerFiller;Ljava/util/concurrent/Executor;Ljava/util/concurrent/Executor;)Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/client/gui/font/FontManager/m_95006_ ()Lnet/minecraft/client/gui/Font; net/minecraft/client/gui/font/FontManager/createFont ()Lnet/minecraft/client/gui/Font; +MD: net/minecraft/client/gui/font/FontManager/m_95009_ (Lnet/minecraft/client/gui/font/FontSet;)V net/minecraft/client/gui/font/FontManager/lambda$new$0 (Lnet/minecraft/client/gui/font/FontSet;)V +MD: net/minecraft/client/gui/font/FontManager/m_95011_ (Ljava/util/Map;)V net/minecraft/client/gui/font/FontManager/setRenames (Ljava/util/Map;)V +MD: net/minecraft/client/gui/font/FontManager$BuilderId/ (Lnet/minecraft/resources/ResourceLocation;Ljava/lang/String;I)V net/minecraft/client/gui/font/FontManager$BuilderId/ (Lnet/minecraft/resources/ResourceLocation;Ljava/lang/String;I)V +MD: net/minecraft/client/gui/font/FontManager$BuilderId/equals (Ljava/lang/Object;)Z net/minecraft/client/gui/font/FontManager$BuilderId/equals (Ljava/lang/Object;)Z +MD: net/minecraft/client/gui/font/FontManager$BuilderId/f_283782_ ()Lnet/minecraft/resources/ResourceLocation; net/minecraft/client/gui/font/FontManager$BuilderId/fontId ()Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/client/gui/font/FontManager$BuilderId/f_283885_ ()Ljava/lang/String; net/minecraft/client/gui/font/FontManager$BuilderId/pack ()Ljava/lang/String; +MD: net/minecraft/client/gui/font/FontManager$BuilderId/f_283900_ ()I net/minecraft/client/gui/font/FontManager$BuilderId/index ()I +MD: net/minecraft/client/gui/font/FontManager$BuilderId/hashCode ()I net/minecraft/client/gui/font/FontManager$BuilderId/hashCode ()I +MD: net/minecraft/client/gui/font/FontManager$BuilderId/toString ()Ljava/lang/String; net/minecraft/client/gui/font/FontManager$BuilderId/toString ()Ljava/lang/String; +MD: net/minecraft/client/gui/font/FontManager$BuilderResult/ (Lnet/minecraft/client/gui/font/FontManager$BuilderId;Lcom/mojang/datafixers/util/Either;)V net/minecraft/client/gui/font/FontManager$BuilderResult/ (Lnet/minecraft/client/gui/font/FontManager$BuilderId;Lcom/mojang/datafixers/util/Either;)V +MD: net/minecraft/client/gui/font/FontManager$BuilderResult/equals (Ljava/lang/Object;)Z net/minecraft/client/gui/font/FontManager$BuilderResult/equals (Ljava/lang/Object;)Z +MD: net/minecraft/client/gui/font/FontManager$BuilderResult/f_283838_ ()Lnet/minecraft/client/gui/font/FontManager$BuilderId; net/minecraft/client/gui/font/FontManager$BuilderResult/id ()Lnet/minecraft/client/gui/font/FontManager$BuilderId; +MD: net/minecraft/client/gui/font/FontManager$BuilderResult/f_283894_ ()Lcom/mojang/datafixers/util/Either; net/minecraft/client/gui/font/FontManager$BuilderResult/result ()Lcom/mojang/datafixers/util/Either; +MD: net/minecraft/client/gui/font/FontManager$BuilderResult/hashCode ()I net/minecraft/client/gui/font/FontManager$BuilderResult/hashCode ()I +MD: net/minecraft/client/gui/font/FontManager$BuilderResult/m_284205_ (Ljava/util/function/Function;Lnet/minecraft/resources/ResourceLocation;)Ljava/util/Optional; net/minecraft/client/gui/font/FontManager$BuilderResult/lambda$resolve$1 (Ljava/util/function/Function;Lnet/minecraft/resources/ResourceLocation;)Ljava/util/Optional; +MD: net/minecraft/client/gui/font/FontManager$BuilderResult/m_284215_ (Ljava/util/function/Function;)Ljava/util/Optional; net/minecraft/client/gui/font/FontManager$BuilderResult/resolve (Ljava/util/function/Function;)Ljava/util/Optional; +MD: net/minecraft/client/gui/font/FontManager$BuilderResult/m_284229_ (Ljava/util/concurrent/CompletableFuture;)Ljava/util/Optional; net/minecraft/client/gui/font/FontManager$BuilderResult/lambda$resolve$0 (Ljava/util/concurrent/CompletableFuture;)Ljava/util/Optional; +MD: net/minecraft/client/gui/font/FontManager$BuilderResult/toString ()Ljava/lang/String; net/minecraft/client/gui/font/FontManager$BuilderResult/toString ()Ljava/lang/String; +MD: net/minecraft/client/gui/font/FontManager$FontDefinitionFile/ ()V net/minecraft/client/gui/font/FontManager$FontDefinitionFile/ ()V +MD: net/minecraft/client/gui/font/FontManager$FontDefinitionFile/ (Ljava/util/List;)V net/minecraft/client/gui/font/FontManager$FontDefinitionFile/ (Ljava/util/List;)V +MD: net/minecraft/client/gui/font/FontManager$FontDefinitionFile/equals (Ljava/lang/Object;)Z net/minecraft/client/gui/font/FontManager$FontDefinitionFile/equals (Ljava/lang/Object;)Z +MD: net/minecraft/client/gui/font/FontManager$FontDefinitionFile/f_285612_ ()Ljava/util/List; net/minecraft/client/gui/font/FontManager$FontDefinitionFile/providers ()Ljava/util/List; +MD: net/minecraft/client/gui/font/FontManager$FontDefinitionFile/hashCode ()I net/minecraft/client/gui/font/FontManager$FontDefinitionFile/hashCode ()I +MD: net/minecraft/client/gui/font/FontManager$FontDefinitionFile/m_285893_ (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/client/gui/font/FontManager$FontDefinitionFile/lambda$static$0 (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/client/gui/font/FontManager$FontDefinitionFile/toString ()Ljava/lang/String; net/minecraft/client/gui/font/FontManager$FontDefinitionFile/toString ()Ljava/lang/String; +MD: net/minecraft/client/gui/font/FontManager$Preparation/ (Ljava/util/Map;Ljava/util/List;)V net/minecraft/client/gui/font/FontManager$Preparation/ (Ljava/util/Map;Ljava/util/List;)V +MD: net/minecraft/client/gui/font/FontManager$Preparation/equals (Ljava/lang/Object;)Z net/minecraft/client/gui/font/FontManager$Preparation/equals (Ljava/lang/Object;)Z +MD: net/minecraft/client/gui/font/FontManager$Preparation/f_283866_ ()Ljava/util/List; net/minecraft/client/gui/font/FontManager$Preparation/allProviders ()Ljava/util/List; +MD: net/minecraft/client/gui/font/FontManager$Preparation/f_283921_ ()Ljava/util/Map; net/minecraft/client/gui/font/FontManager$Preparation/providers ()Ljava/util/Map; +MD: net/minecraft/client/gui/font/FontManager$Preparation/hashCode ()I net/minecraft/client/gui/font/FontManager$Preparation/hashCode ()I +MD: net/minecraft/client/gui/font/FontManager$Preparation/toString ()Ljava/lang/String; net/minecraft/client/gui/font/FontManager$Preparation/toString ()Ljava/lang/String; +MD: net/minecraft/client/gui/font/FontManager$UnresolvedBuilderBundle/ (Lnet/minecraft/resources/ResourceLocation;Ljava/util/List;Ljava/util/Set;)V net/minecraft/client/gui/font/FontManager$UnresolvedBuilderBundle/ (Lnet/minecraft/resources/ResourceLocation;Ljava/util/List;Ljava/util/Set;)V +MD: net/minecraft/client/gui/font/FontManager$UnresolvedBuilderBundle/ (Lnet/minecraft/resources/ResourceLocation;)V net/minecraft/client/gui/font/FontManager$UnresolvedBuilderBundle/ (Lnet/minecraft/resources/ResourceLocation;)V +MD: net/minecraft/client/gui/font/FontManager$UnresolvedBuilderBundle/equals (Ljava/lang/Object;)Z net/minecraft/client/gui/font/FontManager$UnresolvedBuilderBundle/equals (Ljava/lang/Object;)Z +MD: net/minecraft/client/gui/font/FontManager$UnresolvedBuilderBundle/f_283760_ ()Lnet/minecraft/resources/ResourceLocation; net/minecraft/client/gui/font/FontManager$UnresolvedBuilderBundle/fontId ()Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/client/gui/font/FontManager$UnresolvedBuilderBundle/f_283826_ ()Ljava/util/List; net/minecraft/client/gui/font/FontManager$UnresolvedBuilderBundle/builders ()Ljava/util/List; +MD: net/minecraft/client/gui/font/FontManager$UnresolvedBuilderBundle/f_283897_ ()Ljava/util/Set; net/minecraft/client/gui/font/FontManager$UnresolvedBuilderBundle/dependencies ()Ljava/util/Set; +MD: net/minecraft/client/gui/font/FontManager$UnresolvedBuilderBundle/hashCode ()I net/minecraft/client/gui/font/FontManager$UnresolvedBuilderBundle/hashCode ()I +MD: net/minecraft/client/gui/font/FontManager$UnresolvedBuilderBundle/m_284148_ ()Ljava/util/stream/Stream; net/minecraft/client/gui/font/FontManager$UnresolvedBuilderBundle/listBuilders ()Ljava/util/stream/Stream; +MD: net/minecraft/client/gui/font/FontManager$UnresolvedBuilderBundle/m_284213_ (Ljava/util/function/Consumer;)V net/minecraft/client/gui/font/FontManager$UnresolvedBuilderBundle/visitRequiredDependencies (Ljava/util/function/Consumer;)V +MD: net/minecraft/client/gui/font/FontManager$UnresolvedBuilderBundle/m_284241_ (Ljava/util/function/Function;)Ljava/util/Optional; net/minecraft/client/gui/font/FontManager$UnresolvedBuilderBundle/resolve (Ljava/util/function/Function;)Ljava/util/Optional; +MD: net/minecraft/client/gui/font/FontManager$UnresolvedBuilderBundle/m_284288_ (Lnet/minecraft/client/gui/font/FontManager$BuilderId;Ljava/util/concurrent/CompletableFuture;)V net/minecraft/client/gui/font/FontManager$UnresolvedBuilderBundle/add (Lnet/minecraft/client/gui/font/FontManager$BuilderId;Ljava/util/concurrent/CompletableFuture;)V +MD: net/minecraft/client/gui/font/FontManager$UnresolvedBuilderBundle/m_284307_ (Lnet/minecraft/client/gui/font/FontManager$BuilderResult;)Ljava/util/stream/Stream; net/minecraft/client/gui/font/FontManager$UnresolvedBuilderBundle/lambda$listBuilders$0 (Lnet/minecraft/client/gui/font/FontManager$BuilderResult;)Ljava/util/stream/Stream; +MD: net/minecraft/client/gui/font/FontManager$UnresolvedBuilderBundle/m_284346_ (Ljava/util/function/Consumer;)V net/minecraft/client/gui/font/FontManager$UnresolvedBuilderBundle/visitOptionalDependencies (Ljava/util/function/Consumer;)V +MD: net/minecraft/client/gui/font/FontManager$UnresolvedBuilderBundle/m_286066_ (Lnet/minecraft/client/gui/font/FontManager$BuilderId;Lnet/minecraft/client/gui/font/providers/GlyphProviderDefinition$Reference;)V net/minecraft/client/gui/font/FontManager$UnresolvedBuilderBundle/add (Lnet/minecraft/client/gui/font/FontManager$BuilderId;Lnet/minecraft/client/gui/font/providers/GlyphProviderDefinition$Reference;)V +MD: net/minecraft/client/gui/font/FontManager$UnresolvedBuilderBundle/toString ()Ljava/lang/String; net/minecraft/client/gui/font/FontManager$UnresolvedBuilderBundle/toString ()Ljava/lang/String; +MD: net/minecraft/client/gui/font/FontSet/ ()V net/minecraft/client/gui/font/FontSet/ ()V +MD: net/minecraft/client/gui/font/FontSet/ (Lnet/minecraft/client/renderer/texture/TextureManager;Lnet/minecraft/resources/ResourceLocation;)V net/minecraft/client/gui/font/FontSet/ (Lnet/minecraft/client/renderer/texture/TextureManager;Lnet/minecraft/resources/ResourceLocation;)V +MD: net/minecraft/client/gui/font/FontSet/close ()V net/minecraft/client/gui/font/FontSet/close ()V +MD: net/minecraft/client/gui/font/FontSet/m_232556_ (Lcom/mojang/blaze3d/font/SheetGlyphInfo;)Lnet/minecraft/client/gui/font/glyphs/BakedGlyph; net/minecraft/client/gui/font/FontSet/stitch (Lcom/mojang/blaze3d/font/SheetGlyphInfo;)Lnet/minecraft/client/gui/font/glyphs/BakedGlyph; +MD: net/minecraft/client/gui/font/FontSet/m_232558_ (Ljava/util/List;Ljava/util/Set;I)V net/minecraft/client/gui/font/FontSet/lambda$reload$5 (Ljava/util/List;Ljava/util/Set;I)V +MD: net/minecraft/client/gui/font/FontSet/m_232564_ (I)Lnet/minecraft/client/gui/font/glyphs/BakedGlyph; net/minecraft/client/gui/font/FontSet/computeBakedGlyph (I)Lnet/minecraft/client/gui/font/glyphs/BakedGlyph; +MD: net/minecraft/client/gui/font/FontSet/m_232566_ (I)Lit/unimi/dsi/fastutil/ints/IntList; net/minecraft/client/gui/font/FontSet/lambda$reload$4 (I)Lit/unimi/dsi/fastutil/ints/IntList; +MD: net/minecraft/client/gui/font/FontSet/m_243068_ (Lcom/mojang/blaze3d/font/GlyphInfo;)Z net/minecraft/client/gui/font/FontSet/hasFishyAdvance (Lcom/mojang/blaze3d/font/GlyphInfo;)Z +MD: net/minecraft/client/gui/font/FontSet/m_243121_ (I)Lnet/minecraft/client/gui/font/FontSet$GlyphInfoFilter; net/minecraft/client/gui/font/FontSet/computeGlyphInfo (I)Lnet/minecraft/client/gui/font/FontSet$GlyphInfoFilter; +MD: net/minecraft/client/gui/font/FontSet/m_243128_ (IZ)Lcom/mojang/blaze3d/font/GlyphInfo; net/minecraft/client/gui/font/FontSet/getGlyphInfo (IZ)Lcom/mojang/blaze3d/font/GlyphInfo; +MD: net/minecraft/client/gui/font/FontSet/m_283972_ (I)[[Lnet/minecraft/client/gui/font/glyphs/BakedGlyph; net/minecraft/client/gui/font/FontSet/lambda$new$1 (I)[[Lnet/minecraft/client/gui/font/glyphs/BakedGlyph; +MD: net/minecraft/client/gui/font/FontSet/m_283973_ (I)[Lnet/minecraft/client/gui/font/glyphs/BakedGlyph; net/minecraft/client/gui/font/FontSet/lambda$new$0 (I)[Lnet/minecraft/client/gui/font/glyphs/BakedGlyph; +MD: net/minecraft/client/gui/font/FontSet/m_283974_ (I)[Lnet/minecraft/client/gui/font/FontSet$GlyphInfoFilter; net/minecraft/client/gui/font/FontSet/lambda$new$2 (I)[Lnet/minecraft/client/gui/font/FontSet$GlyphInfoFilter; +MD: net/minecraft/client/gui/font/FontSet/m_283975_ (I)[[Lnet/minecraft/client/gui/font/FontSet$GlyphInfoFilter; net/minecraft/client/gui/font/FontSet/lambda$new$3 (I)[[Lnet/minecraft/client/gui/font/FontSet$GlyphInfoFilter; +MD: net/minecraft/client/gui/font/FontSet/m_95064_ ()Lnet/minecraft/client/gui/font/glyphs/BakedGlyph; net/minecraft/client/gui/font/FontSet/whiteGlyph ()Lnet/minecraft/client/gui/font/glyphs/BakedGlyph; +MD: net/minecraft/client/gui/font/FontSet/m_95067_ (Lcom/mojang/blaze3d/font/GlyphInfo;)Lnet/minecraft/client/gui/font/glyphs/BakedGlyph; net/minecraft/client/gui/font/FontSet/getRandomGlyph (Lcom/mojang/blaze3d/font/GlyphInfo;)Lnet/minecraft/client/gui/font/glyphs/BakedGlyph; +MD: net/minecraft/client/gui/font/FontSet/m_95071_ (Ljava/util/List;)V net/minecraft/client/gui/font/FontSet/reload (Ljava/util/List;)V +MD: net/minecraft/client/gui/font/FontSet/m_95077_ ()V net/minecraft/client/gui/font/FontSet/closeProviders ()V +MD: net/minecraft/client/gui/font/FontSet/m_95078_ (I)Lnet/minecraft/client/gui/font/glyphs/BakedGlyph; net/minecraft/client/gui/font/FontSet/getGlyph (I)Lnet/minecraft/client/gui/font/glyphs/BakedGlyph; +MD: net/minecraft/client/gui/font/FontSet/m_95080_ ()V net/minecraft/client/gui/font/FontSet/closeTextures ()V +MD: net/minecraft/client/gui/font/FontSet$GlyphInfoFilter/ ()V net/minecraft/client/gui/font/FontSet$GlyphInfoFilter/ ()V +MD: net/minecraft/client/gui/font/FontSet$GlyphInfoFilter/ (Lcom/mojang/blaze3d/font/GlyphInfo;Lcom/mojang/blaze3d/font/GlyphInfo;)V net/minecraft/client/gui/font/FontSet$GlyphInfoFilter/ (Lcom/mojang/blaze3d/font/GlyphInfo;Lcom/mojang/blaze3d/font/GlyphInfo;)V +MD: net/minecraft/client/gui/font/FontSet$GlyphInfoFilter/equals (Ljava/lang/Object;)Z net/minecraft/client/gui/font/FontSet$GlyphInfoFilter/equals (Ljava/lang/Object;)Z +MD: net/minecraft/client/gui/font/FontSet$GlyphInfoFilter/f_243006_ ()Lcom/mojang/blaze3d/font/GlyphInfo; net/minecraft/client/gui/font/FontSet$GlyphInfoFilter/glyphInfoNotFishy ()Lcom/mojang/blaze3d/font/GlyphInfo; +MD: net/minecraft/client/gui/font/FontSet$GlyphInfoFilter/f_243013_ ()Lcom/mojang/blaze3d/font/GlyphInfo; net/minecraft/client/gui/font/FontSet$GlyphInfoFilter/glyphInfo ()Lcom/mojang/blaze3d/font/GlyphInfo; +MD: net/minecraft/client/gui/font/FontSet$GlyphInfoFilter/hashCode ()I net/minecraft/client/gui/font/FontSet$GlyphInfoFilter/hashCode ()I +MD: net/minecraft/client/gui/font/FontSet$GlyphInfoFilter/m_243099_ (Z)Lcom/mojang/blaze3d/font/GlyphInfo; net/minecraft/client/gui/font/FontSet$GlyphInfoFilter/select (Z)Lcom/mojang/blaze3d/font/GlyphInfo; +MD: net/minecraft/client/gui/font/FontSet$GlyphInfoFilter/toString ()Ljava/lang/String; net/minecraft/client/gui/font/FontSet$GlyphInfoFilter/toString ()Ljava/lang/String; +MD: net/minecraft/client/gui/font/FontTexture/ (Lnet/minecraft/client/gui/font/GlyphRenderTypes;Z)V net/minecraft/client/gui/font/FontTexture/ (Lnet/minecraft/client/gui/font/GlyphRenderTypes;Z)V +MD: net/minecraft/client/gui/font/FontTexture/close ()V net/minecraft/client/gui/font/FontTexture/close ()V +MD: net/minecraft/client/gui/font/FontTexture/m_232568_ (Lcom/mojang/blaze3d/font/SheetGlyphInfo;)Lnet/minecraft/client/gui/font/glyphs/BakedGlyph; net/minecraft/client/gui/font/FontTexture/add (Lcom/mojang/blaze3d/font/SheetGlyphInfo;)Lnet/minecraft/client/gui/font/glyphs/BakedGlyph; +MD: net/minecraft/client/gui/font/FontTexture/m_276079_ (Lnet/minecraft/resources/ResourceLocation;Ljava/nio/file/Path;)V net/minecraft/client/gui/font/FontTexture/dumpContents (Lnet/minecraft/resources/ResourceLocation;Ljava/nio/file/Path;)V +MD: net/minecraft/client/gui/font/FontTexture/m_284333_ (I)I net/minecraft/client/gui/font/FontTexture/lambda$dumpContents$0 (I)I +MD: net/minecraft/client/gui/font/FontTexture/m_6704_ (Lnet/minecraft/server/packs/resources/ResourceManager;)V net/minecraft/client/gui/font/FontTexture/load (Lnet/minecraft/server/packs/resources/ResourceManager;)V +MD: net/minecraft/client/gui/font/FontTexture$Node/ (IIII)V net/minecraft/client/gui/font/FontTexture$Node/ (IIII)V +MD: net/minecraft/client/gui/font/FontTexture$Node/m_232570_ (Lcom/mojang/blaze3d/font/SheetGlyphInfo;)Lnet/minecraft/client/gui/font/FontTexture$Node; net/minecraft/client/gui/font/FontTexture$Node/insert (Lcom/mojang/blaze3d/font/SheetGlyphInfo;)Lnet/minecraft/client/gui/font/FontTexture$Node; +MD: net/minecraft/client/gui/font/GlyphRenderTypes/ (Lnet/minecraft/client/renderer/RenderType;Lnet/minecraft/client/renderer/RenderType;Lnet/minecraft/client/renderer/RenderType;)V net/minecraft/client/gui/font/GlyphRenderTypes/ (Lnet/minecraft/client/renderer/RenderType;Lnet/minecraft/client/renderer/RenderType;Lnet/minecraft/client/renderer/RenderType;)V +MD: net/minecraft/client/gui/font/GlyphRenderTypes/equals (Ljava/lang/Object;)Z net/minecraft/client/gui/font/GlyphRenderTypes/equals (Ljava/lang/Object;)Z +MD: net/minecraft/client/gui/font/GlyphRenderTypes/f_283751_ ()Lnet/minecraft/client/renderer/RenderType; net/minecraft/client/gui/font/GlyphRenderTypes/polygonOffset ()Lnet/minecraft/client/renderer/RenderType; +MD: net/minecraft/client/gui/font/GlyphRenderTypes/f_283780_ ()Lnet/minecraft/client/renderer/RenderType; net/minecraft/client/gui/font/GlyphRenderTypes/normal ()Lnet/minecraft/client/renderer/RenderType; +MD: net/minecraft/client/gui/font/GlyphRenderTypes/f_283831_ ()Lnet/minecraft/client/renderer/RenderType; net/minecraft/client/gui/font/GlyphRenderTypes/seeThrough ()Lnet/minecraft/client/renderer/RenderType; +MD: net/minecraft/client/gui/font/GlyphRenderTypes/hashCode ()I net/minecraft/client/gui/font/GlyphRenderTypes/hashCode ()I +MD: net/minecraft/client/gui/font/GlyphRenderTypes/m_284354_ (Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/client/gui/font/GlyphRenderTypes; net/minecraft/client/gui/font/GlyphRenderTypes/createForColorTexture (Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/client/gui/font/GlyphRenderTypes; +MD: net/minecraft/client/gui/font/GlyphRenderTypes/m_284370_ (Lnet/minecraft/client/gui/Font$DisplayMode;)Lnet/minecraft/client/renderer/RenderType; net/minecraft/client/gui/font/GlyphRenderTypes/select (Lnet/minecraft/client/gui/Font$DisplayMode;)Lnet/minecraft/client/renderer/RenderType; +MD: net/minecraft/client/gui/font/GlyphRenderTypes/m_284520_ (Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/client/gui/font/GlyphRenderTypes; net/minecraft/client/gui/font/GlyphRenderTypes/createForIntensityTexture (Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/client/gui/font/GlyphRenderTypes; +MD: net/minecraft/client/gui/font/GlyphRenderTypes/toString ()Ljava/lang/String; net/minecraft/client/gui/font/GlyphRenderTypes/toString ()Ljava/lang/String; +MD: net/minecraft/client/gui/font/GlyphRenderTypes$1/ ()V net/minecraft/client/gui/font/GlyphRenderTypes$1/ ()V +MD: net/minecraft/client/gui/font/TextFieldHelper/ (Ljava/util/function/Supplier;Ljava/util/function/Consumer;Ljava/util/function/Supplier;Ljava/util/function/Consumer;Ljava/util/function/Predicate;)V net/minecraft/client/gui/font/TextFieldHelper/ (Ljava/util/function/Supplier;Ljava/util/function/Consumer;Ljava/util/function/Supplier;Ljava/util/function/Consumer;Ljava/util/function/Predicate;)V +MD: net/minecraft/client/gui/font/TextFieldHelper/m_169093_ (I)V net/minecraft/client/gui/font/TextFieldHelper/moveByChars (I)V +MD: net/minecraft/client/gui/font/TextFieldHelper/m_169095_ (I)V net/minecraft/client/gui/font/TextFieldHelper/moveByWords (I)V +MD: net/minecraft/client/gui/font/TextFieldHelper/m_169097_ ()V net/minecraft/client/gui/font/TextFieldHelper/setCursorToStart ()V +MD: net/minecraft/client/gui/font/TextFieldHelper/m_169098_ (I)V net/minecraft/client/gui/font/TextFieldHelper/setCursorPos (I)V +MD: net/minecraft/client/gui/font/TextFieldHelper/m_169100_ (I)V net/minecraft/client/gui/font/TextFieldHelper/setSelectionPos (I)V +MD: net/minecraft/client/gui/font/TextFieldHelper/m_232572_ (ILnet/minecraft/client/gui/font/TextFieldHelper$CursorStep;)V net/minecraft/client/gui/font/TextFieldHelper/removeFromCursor (ILnet/minecraft/client/gui/font/TextFieldHelper$CursorStep;)V +MD: net/minecraft/client/gui/font/TextFieldHelper/m_232575_ (IZLnet/minecraft/client/gui/font/TextFieldHelper$CursorStep;)V net/minecraft/client/gui/font/TextFieldHelper/moveBy (IZLnet/minecraft/client/gui/font/TextFieldHelper$CursorStep;)V +MD: net/minecraft/client/gui/font/TextFieldHelper/m_232579_ (I)V net/minecraft/client/gui/font/TextFieldHelper/removeWordsFromCursor (I)V +MD: net/minecraft/client/gui/font/TextFieldHelper/m_95142_ ()V net/minecraft/client/gui/font/TextFieldHelper/cut ()V +MD: net/minecraft/client/gui/font/TextFieldHelper/m_95143_ (C)Z net/minecraft/client/gui/font/TextFieldHelper/charTyped (C)Z +MD: net/minecraft/client/gui/font/TextFieldHelper/m_95145_ (I)Z net/minecraft/client/gui/font/TextFieldHelper/keyPressed (I)Z +MD: net/minecraft/client/gui/font/TextFieldHelper/m_95147_ (II)V net/minecraft/client/gui/font/TextFieldHelper/setSelectionRange (II)V +MD: net/minecraft/client/gui/font/TextFieldHelper/m_95150_ (IZ)V net/minecraft/client/gui/font/TextFieldHelper/moveByChars (IZ)V +MD: net/minecraft/client/gui/font/TextFieldHelper/m_95153_ (Lnet/minecraft/client/Minecraft;)Ljava/util/function/Supplier; net/minecraft/client/gui/font/TextFieldHelper/createClipboardGetter (Lnet/minecraft/client/Minecraft;)Ljava/util/function/Supplier; +MD: net/minecraft/client/gui/font/TextFieldHelper/m_95155_ (Lnet/minecraft/client/Minecraft;Ljava/lang/String;)V net/minecraft/client/gui/font/TextFieldHelper/setClipboardContents (Lnet/minecraft/client/Minecraft;Ljava/lang/String;)V +MD: net/minecraft/client/gui/font/TextFieldHelper/m_95158_ (Ljava/lang/String;)V net/minecraft/client/gui/font/TextFieldHelper/insertText (Ljava/lang/String;)V +MD: net/minecraft/client/gui/font/TextFieldHelper/m_95160_ (Ljava/lang/String;Ljava/lang/String;)V net/minecraft/client/gui/font/TextFieldHelper/insertText (Ljava/lang/String;Ljava/lang/String;)V +MD: net/minecraft/client/gui/font/TextFieldHelper/m_95163_ (Z)V net/minecraft/client/gui/font/TextFieldHelper/resetSelectionIfNeeded (Z)V +MD: net/minecraft/client/gui/font/TextFieldHelper/m_95165_ ()V net/minecraft/client/gui/font/TextFieldHelper/paste ()V +MD: net/minecraft/client/gui/font/TextFieldHelper/m_95166_ (IZ)V net/minecraft/client/gui/font/TextFieldHelper/moveByWords (IZ)V +MD: net/minecraft/client/gui/font/TextFieldHelper/m_95169_ (Lnet/minecraft/client/Minecraft;)Ljava/lang/String; net/minecraft/client/gui/font/TextFieldHelper/getClipboardContents (Lnet/minecraft/client/Minecraft;)Ljava/lang/String; +MD: net/minecraft/client/gui/font/TextFieldHelper/m_95171_ (Lnet/minecraft/client/Minecraft;Ljava/lang/String;)V net/minecraft/client/gui/font/TextFieldHelper/lambda$createClipboardSetter$1 (Lnet/minecraft/client/Minecraft;Ljava/lang/String;)V +MD: net/minecraft/client/gui/font/TextFieldHelper/m_95174_ (Ljava/lang/String;)Ljava/lang/String; net/minecraft/client/gui/font/TextFieldHelper/getSelected (Ljava/lang/String;)Ljava/lang/String; +MD: net/minecraft/client/gui/font/TextFieldHelper/m_95176_ (Z)V net/minecraft/client/gui/font/TextFieldHelper/setCursorToStart (Z)V +MD: net/minecraft/client/gui/font/TextFieldHelper/m_95178_ ()V net/minecraft/client/gui/font/TextFieldHelper/copy ()V +MD: net/minecraft/client/gui/font/TextFieldHelper/m_95179_ (IZ)V net/minecraft/client/gui/font/TextFieldHelper/setCursorPos (IZ)V +MD: net/minecraft/client/gui/font/TextFieldHelper/m_95182_ (Lnet/minecraft/client/Minecraft;)Ljava/util/function/Consumer; net/minecraft/client/gui/font/TextFieldHelper/createClipboardSetter (Lnet/minecraft/client/Minecraft;)Ljava/util/function/Consumer; +MD: net/minecraft/client/gui/font/TextFieldHelper/m_95184_ (Ljava/lang/String;)Ljava/lang/String; net/minecraft/client/gui/font/TextFieldHelper/deleteSelection (Ljava/lang/String;)Ljava/lang/String; +MD: net/minecraft/client/gui/font/TextFieldHelper/m_95186_ (Z)V net/minecraft/client/gui/font/TextFieldHelper/setCursorToEnd (Z)V +MD: net/minecraft/client/gui/font/TextFieldHelper/m_95188_ ()V net/minecraft/client/gui/font/TextFieldHelper/selectAll ()V +MD: net/minecraft/client/gui/font/TextFieldHelper/m_95189_ (I)V net/minecraft/client/gui/font/TextFieldHelper/removeCharsFromCursor (I)V +MD: net/minecraft/client/gui/font/TextFieldHelper/m_95191_ (Lnet/minecraft/client/Minecraft;)Ljava/lang/String; net/minecraft/client/gui/font/TextFieldHelper/lambda$createClipboardGetter$0 (Lnet/minecraft/client/Minecraft;)Ljava/lang/String; +MD: net/minecraft/client/gui/font/TextFieldHelper/m_95193_ ()V net/minecraft/client/gui/font/TextFieldHelper/setCursorToEnd ()V +MD: net/minecraft/client/gui/font/TextFieldHelper/m_95194_ ()I net/minecraft/client/gui/font/TextFieldHelper/getCursorPos ()I +MD: net/minecraft/client/gui/font/TextFieldHelper/m_95195_ (I)I net/minecraft/client/gui/font/TextFieldHelper/clampToMsgLength (I)I +MD: net/minecraft/client/gui/font/TextFieldHelper/m_95197_ ()I net/minecraft/client/gui/font/TextFieldHelper/getSelectionPos ()I +MD: net/minecraft/client/gui/font/TextFieldHelper/m_95198_ ()Z net/minecraft/client/gui/font/TextFieldHelper/isSelecting ()Z +MD: net/minecraft/client/gui/font/TextFieldHelper$1/ ()V net/minecraft/client/gui/font/TextFieldHelper$1/ ()V +MD: net/minecraft/client/gui/font/TextFieldHelper$CursorStep/ ()V net/minecraft/client/gui/font/TextFieldHelper$CursorStep/ ()V +MD: net/minecraft/client/gui/font/TextFieldHelper$CursorStep/ (Ljava/lang/String;I)V net/minecraft/client/gui/font/TextFieldHelper$CursorStep/ (Ljava/lang/String;I)V +MD: net/minecraft/client/gui/font/TextFieldHelper$CursorStep/m_232590_ ()[Lnet/minecraft/client/gui/font/TextFieldHelper$CursorStep; net/minecraft/client/gui/font/TextFieldHelper$CursorStep/$values ()[Lnet/minecraft/client/gui/font/TextFieldHelper$CursorStep; +MD: net/minecraft/client/gui/font/TextFieldHelper$CursorStep/valueOf (Ljava/lang/String;)Lnet/minecraft/client/gui/font/TextFieldHelper$CursorStep; net/minecraft/client/gui/font/TextFieldHelper$CursorStep/valueOf (Ljava/lang/String;)Lnet/minecraft/client/gui/font/TextFieldHelper$CursorStep; +MD: net/minecraft/client/gui/font/TextFieldHelper$CursorStep/values ()[Lnet/minecraft/client/gui/font/TextFieldHelper$CursorStep; net/minecraft/client/gui/font/TextFieldHelper$CursorStep/values ()[Lnet/minecraft/client/gui/font/TextFieldHelper$CursorStep; +MD: net/minecraft/client/gui/font/glyphs/BakedGlyph/ (Lnet/minecraft/client/gui/font/GlyphRenderTypes;FFFFFFFF)V net/minecraft/client/gui/font/glyphs/BakedGlyph/ (Lnet/minecraft/client/gui/font/GlyphRenderTypes;FFFFFFFF)V +MD: net/minecraft/client/gui/font/glyphs/BakedGlyph/m_181387_ (Lnet/minecraft/client/gui/Font$DisplayMode;)Lnet/minecraft/client/renderer/RenderType; net/minecraft/client/gui/font/glyphs/BakedGlyph/renderType (Lnet/minecraft/client/gui/Font$DisplayMode;)Lnet/minecraft/client/renderer/RenderType; +MD: net/minecraft/client/gui/font/glyphs/BakedGlyph/m_5626_ (ZFFLorg/joml/Matrix4f;Lcom/mojang/blaze3d/vertex/VertexConsumer;FFFFI)V net/minecraft/client/gui/font/glyphs/BakedGlyph/render (ZFFLorg/joml/Matrix4f;Lcom/mojang/blaze3d/vertex/VertexConsumer;FFFFI)V +MD: net/minecraft/client/gui/font/glyphs/BakedGlyph/m_95220_ (Lnet/minecraft/client/gui/font/glyphs/BakedGlyph$Effect;Lorg/joml/Matrix4f;Lcom/mojang/blaze3d/vertex/VertexConsumer;I)V net/minecraft/client/gui/font/glyphs/BakedGlyph/renderEffect (Lnet/minecraft/client/gui/font/glyphs/BakedGlyph$Effect;Lorg/joml/Matrix4f;Lcom/mojang/blaze3d/vertex/VertexConsumer;I)V +MD: net/minecraft/client/gui/font/glyphs/BakedGlyph$Effect/ (FFFFFFFFF)V net/minecraft/client/gui/font/glyphs/BakedGlyph$Effect/ (FFFFFFFFF)V +MD: net/minecraft/client/gui/font/glyphs/EmptyGlyph/ ()V net/minecraft/client/gui/font/glyphs/EmptyGlyph/ ()V +MD: net/minecraft/client/gui/font/glyphs/EmptyGlyph/ ()V net/minecraft/client/gui/font/glyphs/EmptyGlyph/ ()V +MD: net/minecraft/client/gui/font/glyphs/EmptyGlyph/m_5626_ (ZFFLorg/joml/Matrix4f;Lcom/mojang/blaze3d/vertex/VertexConsumer;FFFFI)V net/minecraft/client/gui/font/glyphs/EmptyGlyph/render (ZFFLorg/joml/Matrix4f;Lcom/mojang/blaze3d/vertex/VertexConsumer;FFFFI)V +MD: net/minecraft/client/gui/font/glyphs/SpecialGlyphs/ ()V net/minecraft/client/gui/font/glyphs/SpecialGlyphs/ ()V +MD: net/minecraft/client/gui/font/glyphs/SpecialGlyphs/ (Ljava/lang/String;ILjava/util/function/Supplier;)V net/minecraft/client/gui/font/glyphs/SpecialGlyphs/ (Ljava/lang/String;ILjava/util/function/Supplier;)V +MD: net/minecraft/client/gui/font/glyphs/SpecialGlyphs/m_213604_ (Ljava/util/function/Function;)Lnet/minecraft/client/gui/font/glyphs/BakedGlyph; net/minecraft/client/gui/font/glyphs/SpecialGlyphs/bake (Ljava/util/function/Function;)Lnet/minecraft/client/gui/font/glyphs/BakedGlyph; +MD: net/minecraft/client/gui/font/glyphs/SpecialGlyphs/m_232605_ (II)I net/minecraft/client/gui/font/glyphs/SpecialGlyphs/lambda$static$2 (II)I +MD: net/minecraft/client/gui/font/glyphs/SpecialGlyphs/m_232608_ (IILnet/minecraft/client/gui/font/glyphs/SpecialGlyphs$PixelProvider;)Lcom/mojang/blaze3d/platform/NativeImage; net/minecraft/client/gui/font/glyphs/SpecialGlyphs/generate (IILnet/minecraft/client/gui/font/glyphs/SpecialGlyphs$PixelProvider;)Lcom/mojang/blaze3d/platform/NativeImage; +MD: net/minecraft/client/gui/font/glyphs/SpecialGlyphs/m_232612_ (II)I net/minecraft/client/gui/font/glyphs/SpecialGlyphs/lambda$static$0 (II)I +MD: net/minecraft/client/gui/font/glyphs/SpecialGlyphs/m_232617_ ()Lcom/mojang/blaze3d/platform/NativeImage; net/minecraft/client/gui/font/glyphs/SpecialGlyphs/lambda$static$3 ()Lcom/mojang/blaze3d/platform/NativeImage; +MD: net/minecraft/client/gui/font/glyphs/SpecialGlyphs/m_232618_ ()Lcom/mojang/blaze3d/platform/NativeImage; net/minecraft/client/gui/font/glyphs/SpecialGlyphs/lambda$static$1 ()Lcom/mojang/blaze3d/platform/NativeImage; +MD: net/minecraft/client/gui/font/glyphs/SpecialGlyphs/m_232619_ ()[Lnet/minecraft/client/gui/font/glyphs/SpecialGlyphs; net/minecraft/client/gui/font/glyphs/SpecialGlyphs/$values ()[Lnet/minecraft/client/gui/font/glyphs/SpecialGlyphs; +MD: net/minecraft/client/gui/font/glyphs/SpecialGlyphs/m_7403_ ()F net/minecraft/client/gui/font/glyphs/SpecialGlyphs/getAdvance ()F +MD: net/minecraft/client/gui/font/glyphs/SpecialGlyphs/valueOf (Ljava/lang/String;)Lnet/minecraft/client/gui/font/glyphs/SpecialGlyphs; net/minecraft/client/gui/font/glyphs/SpecialGlyphs/valueOf (Ljava/lang/String;)Lnet/minecraft/client/gui/font/glyphs/SpecialGlyphs; +MD: net/minecraft/client/gui/font/glyphs/SpecialGlyphs/values ()[Lnet/minecraft/client/gui/font/glyphs/SpecialGlyphs; net/minecraft/client/gui/font/glyphs/SpecialGlyphs/values ()[Lnet/minecraft/client/gui/font/glyphs/SpecialGlyphs; +MD: net/minecraft/client/gui/font/glyphs/SpecialGlyphs$1/ (Lnet/minecraft/client/gui/font/glyphs/SpecialGlyphs;)V net/minecraft/client/gui/font/glyphs/SpecialGlyphs$1/ (Lnet/minecraft/client/gui/font/glyphs/SpecialGlyphs;)V +MD: net/minecraft/client/gui/font/glyphs/SpecialGlyphs$1/m_213958_ (II)V net/minecraft/client/gui/font/glyphs/SpecialGlyphs$1/upload (II)V +MD: net/minecraft/client/gui/font/glyphs/SpecialGlyphs$1/m_213961_ ()I net/minecraft/client/gui/font/glyphs/SpecialGlyphs$1/getPixelHeight ()I +MD: net/minecraft/client/gui/font/glyphs/SpecialGlyphs$1/m_213962_ ()I net/minecraft/client/gui/font/glyphs/SpecialGlyphs$1/getPixelWidth ()I +MD: net/minecraft/client/gui/font/glyphs/SpecialGlyphs$1/m_213963_ ()F net/minecraft/client/gui/font/glyphs/SpecialGlyphs$1/getOversample ()F +MD: net/minecraft/client/gui/font/glyphs/SpecialGlyphs$1/m_213965_ ()Z net/minecraft/client/gui/font/glyphs/SpecialGlyphs$1/isColored ()Z +MD: net/minecraft/client/gui/font/glyphs/SpecialGlyphs$PixelProvider/m_232634_ (II)I net/minecraft/client/gui/font/glyphs/SpecialGlyphs$PixelProvider/getColor (II)I +MD: net/minecraft/client/gui/font/providers/BitmapProvider/ ()V net/minecraft/client/gui/font/providers/BitmapProvider/ ()V +MD: net/minecraft/client/gui/font/providers/BitmapProvider/ (Lcom/mojang/blaze3d/platform/NativeImage;Lnet/minecraft/client/gui/font/CodepointMap;)V net/minecraft/client/gui/font/providers/BitmapProvider/ (Lcom/mojang/blaze3d/platform/NativeImage;Lnet/minecraft/client/gui/font/CodepointMap;)V +MD: net/minecraft/client/gui/font/providers/BitmapProvider/close ()V net/minecraft/client/gui/font/providers/BitmapProvider/close ()V +MD: net/minecraft/client/gui/font/providers/BitmapProvider/m_214022_ (I)Lcom/mojang/blaze3d/font/GlyphInfo; net/minecraft/client/gui/font/providers/BitmapProvider/getGlyph (I)Lcom/mojang/blaze3d/font/GlyphInfo; +MD: net/minecraft/client/gui/font/providers/BitmapProvider/m_6990_ ()Lit/unimi/dsi/fastutil/ints/IntSet; net/minecraft/client/gui/font/providers/BitmapProvider/getSupportedGlyphs ()Lit/unimi/dsi/fastutil/ints/IntSet; +MD: net/minecraft/client/gui/font/providers/BitmapProvider$Definition/ ()V net/minecraft/client/gui/font/providers/BitmapProvider$Definition/ ()V +MD: net/minecraft/client/gui/font/providers/BitmapProvider$Definition/ (Lnet/minecraft/resources/ResourceLocation;II[[I)V net/minecraft/client/gui/font/providers/BitmapProvider$Definition/ (Lnet/minecraft/resources/ResourceLocation;II[[I)V +MD: net/minecraft/client/gui/font/providers/BitmapProvider$Definition/equals (Ljava/lang/Object;)Z net/minecraft/client/gui/font/providers/BitmapProvider$Definition/equals (Ljava/lang/Object;)Z +MD: net/minecraft/client/gui/font/providers/BitmapProvider$Definition/f_285577_ ()I net/minecraft/client/gui/font/providers/BitmapProvider$Definition/ascent ()I +MD: net/minecraft/client/gui/font/providers/BitmapProvider$Definition/f_285611_ ()[[I net/minecraft/client/gui/font/providers/BitmapProvider$Definition/codepointGrid ()[[I +MD: net/minecraft/client/gui/font/providers/BitmapProvider$Definition/f_285631_ ()Lnet/minecraft/resources/ResourceLocation; net/minecraft/client/gui/font/providers/BitmapProvider$Definition/file ()Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/client/gui/font/providers/BitmapProvider$Definition/f_285660_ ()I net/minecraft/client/gui/font/providers/BitmapProvider$Definition/height ()I +MD: net/minecraft/client/gui/font/providers/BitmapProvider$Definition/hashCode ()I net/minecraft/client/gui/font/providers/BitmapProvider$Definition/hashCode ()I +MD: net/minecraft/client/gui/font/providers/BitmapProvider$Definition/m_285746_ (Lnet/minecraft/client/gui/font/providers/BitmapProvider$Definition;)Lcom/mojang/serialization/DataResult; net/minecraft/client/gui/font/providers/BitmapProvider$Definition/validate (Lnet/minecraft/client/gui/font/providers/BitmapProvider$Definition;)Lcom/mojang/serialization/DataResult; +MD: net/minecraft/client/gui/font/providers/BitmapProvider$Definition/m_285761_ ([II)Ljava/lang/String; net/minecraft/client/gui/font/providers/BitmapProvider$Definition/lambda$validateDimensions$4 ([II)Ljava/lang/String; +MD: net/minecraft/client/gui/font/providers/BitmapProvider$Definition/m_285782_ ()Lcom/mojang/datafixers/util/Either; net/minecraft/client/gui/font/providers/BitmapProvider$Definition/unpack ()Lcom/mojang/datafixers/util/Either; +MD: net/minecraft/client/gui/font/providers/BitmapProvider$Definition/m_285843_ ()Lnet/minecraft/client/gui/font/providers/GlyphProviderType; net/minecraft/client/gui/font/providers/BitmapProvider$Definition/type ()Lnet/minecraft/client/gui/font/providers/GlyphProviderType; +MD: net/minecraft/client/gui/font/providers/BitmapProvider$Definition/m_285860_ ([[I)Lcom/mojang/serialization/DataResult; net/minecraft/client/gui/font/providers/BitmapProvider$Definition/validateDimensions ([[I)Lcom/mojang/serialization/DataResult; +MD: net/minecraft/client/gui/font/providers/BitmapProvider$Definition/m_285912_ ()Ljava/lang/String; net/minecraft/client/gui/font/providers/BitmapProvider$Definition/lambda$validateDimensions$2 ()Ljava/lang/String; +MD: net/minecraft/client/gui/font/providers/BitmapProvider$Definition/m_285930_ (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/client/gui/font/providers/BitmapProvider$Definition/lambda$static$5 (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/client/gui/font/providers/BitmapProvider$Definition/m_285954_ (I)[[Lnet/minecraft/client/gui/font/providers/BitmapProvider$Glyph; net/minecraft/client/gui/font/providers/BitmapProvider$Definition/lambda$load$8 (I)[[Lnet/minecraft/client/gui/font/providers/BitmapProvider$Glyph; +MD: net/minecraft/client/gui/font/providers/BitmapProvider$Definition/m_285979_ (Lcom/mojang/blaze3d/platform/NativeImage;IIII)I net/minecraft/client/gui/font/providers/BitmapProvider$Definition/getActualGlyphWidth (Lcom/mojang/blaze3d/platform/NativeImage;IIII)I +MD: net/minecraft/client/gui/font/providers/BitmapProvider$Definition/m_285986_ (Ljava/util/List;)[[I net/minecraft/client/gui/font/providers/BitmapProvider$Definition/lambda$static$0 (Ljava/util/List;)[[I +MD: net/minecraft/client/gui/font/providers/BitmapProvider$Definition/m_285989_ (Lnet/minecraft/client/gui/font/providers/BitmapProvider$Definition;)Ljava/lang/String; net/minecraft/client/gui/font/providers/BitmapProvider$Definition/lambda$validate$6 (Lnet/minecraft/client/gui/font/providers/BitmapProvider$Definition;)Ljava/lang/String; +MD: net/minecraft/client/gui/font/providers/BitmapProvider$Definition/m_285991_ (I)[Lnet/minecraft/client/gui/font/providers/BitmapProvider$Glyph; net/minecraft/client/gui/font/providers/BitmapProvider$Definition/lambda$load$7 (I)[Lnet/minecraft/client/gui/font/providers/BitmapProvider$Glyph; +MD: net/minecraft/client/gui/font/providers/BitmapProvider$Definition/m_286048_ (Lnet/minecraft/server/packs/resources/ResourceManager;)Lcom/mojang/blaze3d/font/GlyphProvider; net/minecraft/client/gui/font/providers/BitmapProvider$Definition/load (Lnet/minecraft/server/packs/resources/ResourceManager;)Lcom/mojang/blaze3d/font/GlyphProvider; +MD: net/minecraft/client/gui/font/providers/BitmapProvider$Definition/m_286085_ ()Ljava/lang/String; net/minecraft/client/gui/font/providers/BitmapProvider$Definition/lambda$validateDimensions$3 ()Ljava/lang/String; +MD: net/minecraft/client/gui/font/providers/BitmapProvider$Definition/m_286109_ ([[I)Ljava/util/List; net/minecraft/client/gui/font/providers/BitmapProvider$Definition/lambda$static$1 ([[I)Ljava/util/List; +MD: net/minecraft/client/gui/font/providers/BitmapProvider$Definition/toString ()Ljava/lang/String; net/minecraft/client/gui/font/providers/BitmapProvider$Definition/toString ()Ljava/lang/String; +MD: net/minecraft/client/gui/font/providers/BitmapProvider$Glyph/ (FLcom/mojang/blaze3d/platform/NativeImage;IIIIII)V net/minecraft/client/gui/font/providers/BitmapProvider$Glyph/ (FLcom/mojang/blaze3d/platform/NativeImage;IIIIII)V +MD: net/minecraft/client/gui/font/providers/BitmapProvider$Glyph/equals (Ljava/lang/Object;)Z net/minecraft/client/gui/font/providers/BitmapProvider$Glyph/equals (Ljava/lang/Object;)Z +MD: net/minecraft/client/gui/font/providers/BitmapProvider$Glyph/f_95363_ ()F net/minecraft/client/gui/font/providers/BitmapProvider$Glyph/scale ()F +MD: net/minecraft/client/gui/font/providers/BitmapProvider$Glyph/f_95364_ ()Lcom/mojang/blaze3d/platform/NativeImage; net/minecraft/client/gui/font/providers/BitmapProvider$Glyph/image ()Lcom/mojang/blaze3d/platform/NativeImage; +MD: net/minecraft/client/gui/font/providers/BitmapProvider$Glyph/f_95365_ ()I net/minecraft/client/gui/font/providers/BitmapProvider$Glyph/offsetX ()I +MD: net/minecraft/client/gui/font/providers/BitmapProvider$Glyph/f_95366_ ()I net/minecraft/client/gui/font/providers/BitmapProvider$Glyph/offsetY ()I +MD: net/minecraft/client/gui/font/providers/BitmapProvider$Glyph/f_95367_ ()I net/minecraft/client/gui/font/providers/BitmapProvider$Glyph/width ()I +MD: net/minecraft/client/gui/font/providers/BitmapProvider$Glyph/f_95368_ ()I net/minecraft/client/gui/font/providers/BitmapProvider$Glyph/height ()I +MD: net/minecraft/client/gui/font/providers/BitmapProvider$Glyph/f_95369_ ()I net/minecraft/client/gui/font/providers/BitmapProvider$Glyph/advance ()I +MD: net/minecraft/client/gui/font/providers/BitmapProvider$Glyph/f_95370_ ()I net/minecraft/client/gui/font/providers/BitmapProvider$Glyph/ascent ()I +MD: net/minecraft/client/gui/font/providers/BitmapProvider$Glyph/hashCode ()I net/minecraft/client/gui/font/providers/BitmapProvider$Glyph/hashCode ()I +MD: net/minecraft/client/gui/font/providers/BitmapProvider$Glyph/m_213604_ (Ljava/util/function/Function;)Lnet/minecraft/client/gui/font/glyphs/BakedGlyph; net/minecraft/client/gui/font/providers/BitmapProvider$Glyph/bake (Ljava/util/function/Function;)Lnet/minecraft/client/gui/font/glyphs/BakedGlyph; +MD: net/minecraft/client/gui/font/providers/BitmapProvider$Glyph/m_7403_ ()F net/minecraft/client/gui/font/providers/BitmapProvider$Glyph/getAdvance ()F +MD: net/minecraft/client/gui/font/providers/BitmapProvider$Glyph/toString ()Ljava/lang/String; net/minecraft/client/gui/font/providers/BitmapProvider$Glyph/toString ()Ljava/lang/String; +MD: net/minecraft/client/gui/font/providers/BitmapProvider$Glyph$1/ (Lnet/minecraft/client/gui/font/providers/BitmapProvider$Glyph;)V net/minecraft/client/gui/font/providers/BitmapProvider$Glyph$1/ (Lnet/minecraft/client/gui/font/providers/BitmapProvider$Glyph;)V +MD: net/minecraft/client/gui/font/providers/BitmapProvider$Glyph$1/m_213958_ (II)V net/minecraft/client/gui/font/providers/BitmapProvider$Glyph$1/upload (II)V +MD: net/minecraft/client/gui/font/providers/BitmapProvider$Glyph$1/m_213961_ ()I net/minecraft/client/gui/font/providers/BitmapProvider$Glyph$1/getPixelHeight ()I +MD: net/minecraft/client/gui/font/providers/BitmapProvider$Glyph$1/m_213962_ ()I net/minecraft/client/gui/font/providers/BitmapProvider$Glyph$1/getPixelWidth ()I +MD: net/minecraft/client/gui/font/providers/BitmapProvider$Glyph$1/m_213963_ ()F net/minecraft/client/gui/font/providers/BitmapProvider$Glyph$1/getOversample ()F +MD: net/minecraft/client/gui/font/providers/BitmapProvider$Glyph$1/m_213964_ ()F net/minecraft/client/gui/font/providers/BitmapProvider$Glyph$1/getBearingY ()F +MD: net/minecraft/client/gui/font/providers/BitmapProvider$Glyph$1/m_213965_ ()Z net/minecraft/client/gui/font/providers/BitmapProvider$Glyph$1/isColored ()Z +MD: net/minecraft/client/gui/font/providers/GlyphProviderDefinition/ ()V net/minecraft/client/gui/font/providers/GlyphProviderDefinition/ ()V +MD: net/minecraft/client/gui/font/providers/GlyphProviderDefinition/m_285782_ ()Lcom/mojang/datafixers/util/Either; net/minecraft/client/gui/font/providers/GlyphProviderDefinition/unpack ()Lcom/mojang/datafixers/util/Either; +MD: net/minecraft/client/gui/font/providers/GlyphProviderDefinition/m_285843_ ()Lnet/minecraft/client/gui/font/providers/GlyphProviderType; net/minecraft/client/gui/font/providers/GlyphProviderDefinition/type ()Lnet/minecraft/client/gui/font/providers/GlyphProviderType; +MD: net/minecraft/client/gui/font/providers/GlyphProviderDefinition/m_286025_ (Lnet/minecraft/client/gui/font/providers/GlyphProviderType;)Lcom/mojang/serialization/Codec; net/minecraft/client/gui/font/providers/GlyphProviderDefinition/lambda$static$0 (Lnet/minecraft/client/gui/font/providers/GlyphProviderType;)Lcom/mojang/serialization/Codec; +MD: net/minecraft/client/gui/font/providers/GlyphProviderDefinition$Loader/m_285964_ (Lnet/minecraft/server/packs/resources/ResourceManager;)Lcom/mojang/blaze3d/font/GlyphProvider; net/minecraft/client/gui/font/providers/GlyphProviderDefinition$Loader/load (Lnet/minecraft/server/packs/resources/ResourceManager;)Lcom/mojang/blaze3d/font/GlyphProvider; +MD: net/minecraft/client/gui/font/providers/GlyphProviderDefinition$Reference/ (Lnet/minecraft/resources/ResourceLocation;)V net/minecraft/client/gui/font/providers/GlyphProviderDefinition$Reference/ (Lnet/minecraft/resources/ResourceLocation;)V +MD: net/minecraft/client/gui/font/providers/GlyphProviderDefinition$Reference/equals (Ljava/lang/Object;)Z net/minecraft/client/gui/font/providers/GlyphProviderDefinition$Reference/equals (Ljava/lang/Object;)Z +MD: net/minecraft/client/gui/font/providers/GlyphProviderDefinition$Reference/f_285563_ ()Lnet/minecraft/resources/ResourceLocation; net/minecraft/client/gui/font/providers/GlyphProviderDefinition$Reference/id ()Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/client/gui/font/providers/GlyphProviderDefinition$Reference/hashCode ()I net/minecraft/client/gui/font/providers/GlyphProviderDefinition$Reference/hashCode ()I +MD: net/minecraft/client/gui/font/providers/GlyphProviderDefinition$Reference/toString ()Ljava/lang/String; net/minecraft/client/gui/font/providers/GlyphProviderDefinition$Reference/toString ()Ljava/lang/String; +MD: net/minecraft/client/gui/font/providers/GlyphProviderType/ ()V net/minecraft/client/gui/font/providers/GlyphProviderType/ ()V +MD: net/minecraft/client/gui/font/providers/GlyphProviderType/ (Ljava/lang/String;ILjava/lang/String;Lcom/mojang/serialization/MapCodec;)V net/minecraft/client/gui/font/providers/GlyphProviderType/ (Ljava/lang/String;ILjava/lang/String;Lcom/mojang/serialization/MapCodec;)V +MD: net/minecraft/client/gui/font/providers/GlyphProviderType/m_285822_ ()Lcom/mojang/serialization/MapCodec; net/minecraft/client/gui/font/providers/GlyphProviderType/mapCodec ()Lcom/mojang/serialization/MapCodec; +MD: net/minecraft/client/gui/font/providers/GlyphProviderType/m_285865_ ()[Lnet/minecraft/client/gui/font/providers/GlyphProviderType; net/minecraft/client/gui/font/providers/GlyphProviderType/$values ()[Lnet/minecraft/client/gui/font/providers/GlyphProviderType; +MD: net/minecraft/client/gui/font/providers/GlyphProviderType/m_7912_ ()Ljava/lang/String; net/minecraft/client/gui/font/providers/GlyphProviderType/getSerializedName ()Ljava/lang/String; +MD: net/minecraft/client/gui/font/providers/GlyphProviderType/valueOf (Ljava/lang/String;)Lnet/minecraft/client/gui/font/providers/GlyphProviderType; net/minecraft/client/gui/font/providers/GlyphProviderType/valueOf (Ljava/lang/String;)Lnet/minecraft/client/gui/font/providers/GlyphProviderType; +MD: net/minecraft/client/gui/font/providers/GlyphProviderType/values ()[Lnet/minecraft/client/gui/font/providers/GlyphProviderType; net/minecraft/client/gui/font/providers/GlyphProviderType/values ()[Lnet/minecraft/client/gui/font/providers/GlyphProviderType; +MD: net/minecraft/client/gui/font/providers/ProviderReferenceDefinition/ ()V net/minecraft/client/gui/font/providers/ProviderReferenceDefinition/ ()V +MD: net/minecraft/client/gui/font/providers/ProviderReferenceDefinition/ (Lnet/minecraft/resources/ResourceLocation;)V net/minecraft/client/gui/font/providers/ProviderReferenceDefinition/ (Lnet/minecraft/resources/ResourceLocation;)V +MD: net/minecraft/client/gui/font/providers/ProviderReferenceDefinition/equals (Ljava/lang/Object;)Z net/minecraft/client/gui/font/providers/ProviderReferenceDefinition/equals (Ljava/lang/Object;)Z +MD: net/minecraft/client/gui/font/providers/ProviderReferenceDefinition/f_285571_ ()Lnet/minecraft/resources/ResourceLocation; net/minecraft/client/gui/font/providers/ProviderReferenceDefinition/id ()Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/client/gui/font/providers/ProviderReferenceDefinition/hashCode ()I net/minecraft/client/gui/font/providers/ProviderReferenceDefinition/hashCode ()I +MD: net/minecraft/client/gui/font/providers/ProviderReferenceDefinition/m_285782_ ()Lcom/mojang/datafixers/util/Either; net/minecraft/client/gui/font/providers/ProviderReferenceDefinition/unpack ()Lcom/mojang/datafixers/util/Either; +MD: net/minecraft/client/gui/font/providers/ProviderReferenceDefinition/m_285843_ ()Lnet/minecraft/client/gui/font/providers/GlyphProviderType; net/minecraft/client/gui/font/providers/ProviderReferenceDefinition/type ()Lnet/minecraft/client/gui/font/providers/GlyphProviderType; +MD: net/minecraft/client/gui/font/providers/ProviderReferenceDefinition/m_286001_ (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/client/gui/font/providers/ProviderReferenceDefinition/lambda$static$0 (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/client/gui/font/providers/ProviderReferenceDefinition/toString ()Ljava/lang/String; net/minecraft/client/gui/font/providers/ProviderReferenceDefinition/toString ()Ljava/lang/String; +MD: net/minecraft/client/gui/font/providers/TrueTypeGlyphProviderDefinition/ ()V net/minecraft/client/gui/font/providers/TrueTypeGlyphProviderDefinition/ ()V +MD: net/minecraft/client/gui/font/providers/TrueTypeGlyphProviderDefinition/ (Lnet/minecraft/resources/ResourceLocation;FFLnet/minecraft/client/gui/font/providers/TrueTypeGlyphProviderDefinition$Shift;Ljava/lang/String;)V net/minecraft/client/gui/font/providers/TrueTypeGlyphProviderDefinition/ (Lnet/minecraft/resources/ResourceLocation;FFLnet/minecraft/client/gui/font/providers/TrueTypeGlyphProviderDefinition$Shift;Ljava/lang/String;)V +MD: net/minecraft/client/gui/font/providers/TrueTypeGlyphProviderDefinition/equals (Ljava/lang/Object;)Z net/minecraft/client/gui/font/providers/TrueTypeGlyphProviderDefinition/equals (Ljava/lang/Object;)Z +MD: net/minecraft/client/gui/font/providers/TrueTypeGlyphProviderDefinition/f_285564_ ()Lnet/minecraft/resources/ResourceLocation; net/minecraft/client/gui/font/providers/TrueTypeGlyphProviderDefinition/location ()Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/client/gui/font/providers/TrueTypeGlyphProviderDefinition/f_285576_ ()F net/minecraft/client/gui/font/providers/TrueTypeGlyphProviderDefinition/oversample ()F +MD: net/minecraft/client/gui/font/providers/TrueTypeGlyphProviderDefinition/f_285584_ ()Lnet/minecraft/client/gui/font/providers/TrueTypeGlyphProviderDefinition$Shift; net/minecraft/client/gui/font/providers/TrueTypeGlyphProviderDefinition/shift ()Lnet/minecraft/client/gui/font/providers/TrueTypeGlyphProviderDefinition$Shift; +MD: net/minecraft/client/gui/font/providers/TrueTypeGlyphProviderDefinition/f_285590_ ()F net/minecraft/client/gui/font/providers/TrueTypeGlyphProviderDefinition/size ()F +MD: net/minecraft/client/gui/font/providers/TrueTypeGlyphProviderDefinition/f_285657_ ()Ljava/lang/String; net/minecraft/client/gui/font/providers/TrueTypeGlyphProviderDefinition/skip ()Ljava/lang/String; +MD: net/minecraft/client/gui/font/providers/TrueTypeGlyphProviderDefinition/hashCode ()I net/minecraft/client/gui/font/providers/TrueTypeGlyphProviderDefinition/hashCode ()I +MD: net/minecraft/client/gui/font/providers/TrueTypeGlyphProviderDefinition/m_285764_ (Lnet/minecraft/server/packs/resources/ResourceManager;)Lcom/mojang/blaze3d/font/GlyphProvider; net/minecraft/client/gui/font/providers/TrueTypeGlyphProviderDefinition/load (Lnet/minecraft/server/packs/resources/ResourceManager;)Lcom/mojang/blaze3d/font/GlyphProvider; +MD: net/minecraft/client/gui/font/providers/TrueTypeGlyphProviderDefinition/m_285782_ ()Lcom/mojang/datafixers/util/Either; net/minecraft/client/gui/font/providers/TrueTypeGlyphProviderDefinition/unpack ()Lcom/mojang/datafixers/util/Either; +MD: net/minecraft/client/gui/font/providers/TrueTypeGlyphProviderDefinition/m_285839_ (Lcom/mojang/datafixers/util/Either;)Ljava/lang/String; net/minecraft/client/gui/font/providers/TrueTypeGlyphProviderDefinition/lambda$static$2 (Lcom/mojang/datafixers/util/Either;)Ljava/lang/String; +MD: net/minecraft/client/gui/font/providers/TrueTypeGlyphProviderDefinition/m_285843_ ()Lnet/minecraft/client/gui/font/providers/GlyphProviderType; net/minecraft/client/gui/font/providers/TrueTypeGlyphProviderDefinition/type ()Lnet/minecraft/client/gui/font/providers/GlyphProviderType; +MD: net/minecraft/client/gui/font/providers/TrueTypeGlyphProviderDefinition/m_285849_ (Ljava/util/List;)Ljava/lang/String; net/minecraft/client/gui/font/providers/TrueTypeGlyphProviderDefinition/lambda$static$1 (Ljava/util/List;)Ljava/lang/String; +MD: net/minecraft/client/gui/font/providers/TrueTypeGlyphProviderDefinition/m_286057_ (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/client/gui/font/providers/TrueTypeGlyphProviderDefinition/lambda$static$3 (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/client/gui/font/providers/TrueTypeGlyphProviderDefinition/m_286082_ (Ljava/lang/String;)Ljava/lang/String; net/minecraft/client/gui/font/providers/TrueTypeGlyphProviderDefinition/lambda$static$0 (Ljava/lang/String;)Ljava/lang/String; +MD: net/minecraft/client/gui/font/providers/TrueTypeGlyphProviderDefinition/toString ()Ljava/lang/String; net/minecraft/client/gui/font/providers/TrueTypeGlyphProviderDefinition/toString ()Ljava/lang/String; +MD: net/minecraft/client/gui/font/providers/TrueTypeGlyphProviderDefinition$Shift/ ()V net/minecraft/client/gui/font/providers/TrueTypeGlyphProviderDefinition$Shift/ ()V +MD: net/minecraft/client/gui/font/providers/TrueTypeGlyphProviderDefinition$Shift/ (FF)V net/minecraft/client/gui/font/providers/TrueTypeGlyphProviderDefinition$Shift/ (FF)V +MD: net/minecraft/client/gui/font/providers/TrueTypeGlyphProviderDefinition$Shift/equals (Ljava/lang/Object;)Z net/minecraft/client/gui/font/providers/TrueTypeGlyphProviderDefinition$Shift/equals (Ljava/lang/Object;)Z +MD: net/minecraft/client/gui/font/providers/TrueTypeGlyphProviderDefinition$Shift/f_285596_ ()F net/minecraft/client/gui/font/providers/TrueTypeGlyphProviderDefinition$Shift/x ()F +MD: net/minecraft/client/gui/font/providers/TrueTypeGlyphProviderDefinition$Shift/f_285597_ ()F net/minecraft/client/gui/font/providers/TrueTypeGlyphProviderDefinition$Shift/y ()F +MD: net/minecraft/client/gui/font/providers/TrueTypeGlyphProviderDefinition$Shift/hashCode ()I net/minecraft/client/gui/font/providers/TrueTypeGlyphProviderDefinition$Shift/hashCode ()I +MD: net/minecraft/client/gui/font/providers/TrueTypeGlyphProviderDefinition$Shift/m_285852_ (Lnet/minecraft/client/gui/font/providers/TrueTypeGlyphProviderDefinition$Shift;)Ljava/util/List; net/minecraft/client/gui/font/providers/TrueTypeGlyphProviderDefinition$Shift/lambda$static$2 (Lnet/minecraft/client/gui/font/providers/TrueTypeGlyphProviderDefinition$Shift;)Ljava/util/List; +MD: net/minecraft/client/gui/font/providers/TrueTypeGlyphProviderDefinition$Shift/m_285877_ (Ljava/util/List;)Lcom/mojang/serialization/DataResult; net/minecraft/client/gui/font/providers/TrueTypeGlyphProviderDefinition$Shift/lambda$static$1 (Ljava/util/List;)Lcom/mojang/serialization/DataResult; +MD: net/minecraft/client/gui/font/providers/TrueTypeGlyphProviderDefinition$Shift/m_285960_ (Ljava/util/List;)Lnet/minecraft/client/gui/font/providers/TrueTypeGlyphProviderDefinition$Shift; net/minecraft/client/gui/font/providers/TrueTypeGlyphProviderDefinition$Shift/lambda$static$0 (Ljava/util/List;)Lnet/minecraft/client/gui/font/providers/TrueTypeGlyphProviderDefinition$Shift; +MD: net/minecraft/client/gui/font/providers/TrueTypeGlyphProviderDefinition$Shift/toString ()Ljava/lang/String; net/minecraft/client/gui/font/providers/TrueTypeGlyphProviderDefinition$Shift/toString ()Ljava/lang/String; +MD: net/minecraft/client/gui/font/providers/UnihexProvider/ ()V net/minecraft/client/gui/font/providers/UnihexProvider/ ()V +MD: net/minecraft/client/gui/font/providers/UnihexProvider/ (Lnet/minecraft/client/gui/font/CodepointMap;)V net/minecraft/client/gui/font/providers/UnihexProvider/ (Lnet/minecraft/client/gui/font/CodepointMap;)V +MD: net/minecraft/client/gui/font/providers/UnihexProvider/m_214022_ (I)Lcom/mojang/blaze3d/font/GlyphInfo; net/minecraft/client/gui/font/providers/UnihexProvider/getGlyph (I)Lcom/mojang/blaze3d/font/GlyphInfo; +MD: net/minecraft/client/gui/font/providers/UnihexProvider/m_284179_ (Ljava/io/InputStream;Lit/unimi/dsi/fastutil/bytes/ByteList;I)Z net/minecraft/client/gui/font/providers/UnihexProvider/copyUntil (Ljava/io/InputStream;Lit/unimi/dsi/fastutil/bytes/ByteList;I)Z +MD: net/minecraft/client/gui/font/providers/UnihexProvider/m_284323_ (ILit/unimi/dsi/fastutil/bytes/ByteList;I)I net/minecraft/client/gui/font/providers/UnihexProvider/decodeHex (ILit/unimi/dsi/fastutil/bytes/ByteList;I)I +MD: net/minecraft/client/gui/font/providers/UnihexProvider/m_284420_ (Ljava/nio/IntBuffer;III)V net/minecraft/client/gui/font/providers/UnihexProvider/unpackBitsToBytes (Ljava/nio/IntBuffer;III)V +MD: net/minecraft/client/gui/font/providers/UnihexProvider/m_284448_ (Ljava/nio/IntBuffer;Lnet/minecraft/client/gui/font/providers/UnihexProvider$LineData;II)V net/minecraft/client/gui/font/providers/UnihexProvider/unpackBitsToBytes (Ljava/nio/IntBuffer;Lnet/minecraft/client/gui/font/providers/UnihexProvider$LineData;II)V +MD: net/minecraft/client/gui/font/providers/UnihexProvider/m_284537_ (Ljava/io/InputStream;Lnet/minecraft/client/gui/font/providers/UnihexProvider$ReaderOutput;)V net/minecraft/client/gui/font/providers/UnihexProvider/readFromStream (Ljava/io/InputStream;Lnet/minecraft/client/gui/font/providers/UnihexProvider$ReaderOutput;)V +MD: net/minecraft/client/gui/font/providers/UnihexProvider/m_284556_ (IB)I net/minecraft/client/gui/font/providers/UnihexProvider/decodeHex (IB)I +MD: net/minecraft/client/gui/font/providers/UnihexProvider/m_6990_ ()Lit/unimi/dsi/fastutil/ints/IntSet; net/minecraft/client/gui/font/providers/UnihexProvider/getSupportedGlyphs ()Lit/unimi/dsi/fastutil/ints/IntSet; +MD: net/minecraft/client/gui/font/providers/UnihexProvider$ByteContents/ ([B)V net/minecraft/client/gui/font/providers/UnihexProvider$ByteContents/ ([B)V +MD: net/minecraft/client/gui/font/providers/UnihexProvider$ByteContents/equals (Ljava/lang/Object;)Z net/minecraft/client/gui/font/providers/UnihexProvider$ByteContents/equals (Ljava/lang/Object;)Z +MD: net/minecraft/client/gui/font/providers/UnihexProvider$ByteContents/f_283836_ ()[B net/minecraft/client/gui/font/providers/UnihexProvider$ByteContents/contents ()[B +MD: net/minecraft/client/gui/font/providers/UnihexProvider$ByteContents/hashCode ()I net/minecraft/client/gui/font/providers/UnihexProvider$ByteContents/hashCode ()I +MD: net/minecraft/client/gui/font/providers/UnihexProvider$ByteContents/m_284144_ (I)I net/minecraft/client/gui/font/providers/UnihexProvider$ByteContents/line (I)I +MD: net/minecraft/client/gui/font/providers/UnihexProvider$ByteContents/m_284266_ ()I net/minecraft/client/gui/font/providers/UnihexProvider$ByteContents/bitWidth ()I +MD: net/minecraft/client/gui/font/providers/UnihexProvider$ByteContents/m_284446_ (ILit/unimi/dsi/fastutil/bytes/ByteList;)Lnet/minecraft/client/gui/font/providers/UnihexProvider$LineData; net/minecraft/client/gui/font/providers/UnihexProvider$ByteContents/read (ILit/unimi/dsi/fastutil/bytes/ByteList;)Lnet/minecraft/client/gui/font/providers/UnihexProvider$LineData; +MD: net/minecraft/client/gui/font/providers/UnihexProvider$ByteContents/toString ()Ljava/lang/String; net/minecraft/client/gui/font/providers/UnihexProvider$ByteContents/toString ()Ljava/lang/String; +MD: net/minecraft/client/gui/font/providers/UnihexProvider$Definition/ ()V net/minecraft/client/gui/font/providers/UnihexProvider$Definition/ ()V +MD: net/minecraft/client/gui/font/providers/UnihexProvider$Definition/ (Lnet/minecraft/resources/ResourceLocation;Ljava/util/List;)V net/minecraft/client/gui/font/providers/UnihexProvider$Definition/ (Lnet/minecraft/resources/ResourceLocation;Ljava/util/List;)V +MD: net/minecraft/client/gui/font/providers/UnihexProvider$Definition/m_285782_ ()Lcom/mojang/datafixers/util/Either; net/minecraft/client/gui/font/providers/UnihexProvider$Definition/unpack ()Lcom/mojang/datafixers/util/Either; +MD: net/minecraft/client/gui/font/providers/UnihexProvider$Definition/m_285801_ (Lnet/minecraft/client/gui/font/providers/UnihexProvider$Definition;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/client/gui/font/providers/UnihexProvider$Definition/lambda$static$0 (Lnet/minecraft/client/gui/font/providers/UnihexProvider$Definition;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/client/gui/font/providers/UnihexProvider$Definition/m_285832_ (Ljava/io/InputStream;)Lnet/minecraft/client/gui/font/providers/UnihexProvider; net/minecraft/client/gui/font/providers/UnihexProvider$Definition/loadData (Ljava/io/InputStream;)Lnet/minecraft/client/gui/font/providers/UnihexProvider; +MD: net/minecraft/client/gui/font/providers/UnihexProvider$Definition/m_285843_ ()Lnet/minecraft/client/gui/font/providers/GlyphProviderType; net/minecraft/client/gui/font/providers/UnihexProvider$Definition/type ()Lnet/minecraft/client/gui/font/providers/GlyphProviderType; +MD: net/minecraft/client/gui/font/providers/UnihexProvider$Definition/m_285853_ (Lnet/minecraft/client/gui/font/CodepointMap;ILnet/minecraft/client/gui/font/providers/UnihexProvider$LineData;)V net/minecraft/client/gui/font/providers/UnihexProvider$Definition/lambda$loadData$7 (Lnet/minecraft/client/gui/font/CodepointMap;ILnet/minecraft/client/gui/font/providers/UnihexProvider$LineData;)V +MD: net/minecraft/client/gui/font/providers/UnihexProvider$Definition/m_285863_ (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/client/gui/font/providers/UnihexProvider$Definition/lambda$static$2 (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/client/gui/font/providers/UnihexProvider$Definition/m_285894_ (I)[Lnet/minecraft/client/gui/font/providers/UnihexProvider$LineData; net/minecraft/client/gui/font/providers/UnihexProvider$Definition/lambda$loadData$3 (I)[Lnet/minecraft/client/gui/font/providers/UnihexProvider$LineData; +MD: net/minecraft/client/gui/font/providers/UnihexProvider$Definition/m_285914_ (I)[[Lnet/minecraft/client/gui/font/providers/UnihexProvider$Glyph; net/minecraft/client/gui/font/providers/UnihexProvider$Definition/lambda$loadData$6 (I)[[Lnet/minecraft/client/gui/font/providers/UnihexProvider$Glyph; +MD: net/minecraft/client/gui/font/providers/UnihexProvider$Definition/m_285918_ (I)[Lnet/minecraft/client/gui/font/providers/UnihexProvider$Glyph; net/minecraft/client/gui/font/providers/UnihexProvider$Definition/lambda$loadData$5 (I)[Lnet/minecraft/client/gui/font/providers/UnihexProvider$Glyph; +MD: net/minecraft/client/gui/font/providers/UnihexProvider$Definition/m_285976_ (Lnet/minecraft/server/packs/resources/ResourceManager;)Lcom/mojang/blaze3d/font/GlyphProvider; net/minecraft/client/gui/font/providers/UnihexProvider$Definition/load (Lnet/minecraft/server/packs/resources/ResourceManager;)Lcom/mojang/blaze3d/font/GlyphProvider; +MD: net/minecraft/client/gui/font/providers/UnihexProvider$Definition/m_286098_ (I)[[Lnet/minecraft/client/gui/font/providers/UnihexProvider$LineData; net/minecraft/client/gui/font/providers/UnihexProvider$Definition/lambda$loadData$4 (I)[[Lnet/minecraft/client/gui/font/providers/UnihexProvider$LineData; +MD: net/minecraft/client/gui/font/providers/UnihexProvider$Definition/m_286103_ (Lnet/minecraft/client/gui/font/providers/UnihexProvider$Definition;)Ljava/util/List; net/minecraft/client/gui/font/providers/UnihexProvider$Definition/lambda$static$1 (Lnet/minecraft/client/gui/font/providers/UnihexProvider$Definition;)Ljava/util/List; +MD: net/minecraft/client/gui/font/providers/UnihexProvider$Dimensions/ ()V net/minecraft/client/gui/font/providers/UnihexProvider$Dimensions/ ()V +MD: net/minecraft/client/gui/font/providers/UnihexProvider$Dimensions/ (II)V net/minecraft/client/gui/font/providers/UnihexProvider$Dimensions/ (II)V +MD: net/minecraft/client/gui/font/providers/UnihexProvider$Dimensions/equals (Ljava/lang/Object;)Z net/minecraft/client/gui/font/providers/UnihexProvider$Dimensions/equals (Ljava/lang/Object;)Z +MD: net/minecraft/client/gui/font/providers/UnihexProvider$Dimensions/f_283768_ ()I net/minecraft/client/gui/font/providers/UnihexProvider$Dimensions/left ()I +MD: net/minecraft/client/gui/font/providers/UnihexProvider$Dimensions/f_283776_ ()I net/minecraft/client/gui/font/providers/UnihexProvider$Dimensions/right ()I +MD: net/minecraft/client/gui/font/providers/UnihexProvider$Dimensions/hashCode ()I net/minecraft/client/gui/font/providers/UnihexProvider$Dimensions/hashCode ()I +MD: net/minecraft/client/gui/font/providers/UnihexProvider$Dimensions/m_284152_ (I)I net/minecraft/client/gui/font/providers/UnihexProvider$Dimensions/left (I)I +MD: net/minecraft/client/gui/font/providers/UnihexProvider$Dimensions/m_284209_ (II)I net/minecraft/client/gui/font/providers/UnihexProvider$Dimensions/pack (II)I +MD: net/minecraft/client/gui/font/providers/UnihexProvider$Dimensions/m_284253_ (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/client/gui/font/providers/UnihexProvider$Dimensions/lambda$static$0 (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/client/gui/font/providers/UnihexProvider$Dimensions/m_284305_ (I)I net/minecraft/client/gui/font/providers/UnihexProvider$Dimensions/right (I)I +MD: net/minecraft/client/gui/font/providers/UnihexProvider$Dimensions/m_284373_ ()I net/minecraft/client/gui/font/providers/UnihexProvider$Dimensions/pack ()I +MD: net/minecraft/client/gui/font/providers/UnihexProvider$Dimensions/toString ()Ljava/lang/String; net/minecraft/client/gui/font/providers/UnihexProvider$Dimensions/toString ()Ljava/lang/String; +MD: net/minecraft/client/gui/font/providers/UnihexProvider$Glyph/ (Lnet/minecraft/client/gui/font/providers/UnihexProvider$LineData;II)V net/minecraft/client/gui/font/providers/UnihexProvider$Glyph/ (Lnet/minecraft/client/gui/font/providers/UnihexProvider$LineData;II)V +MD: net/minecraft/client/gui/font/providers/UnihexProvider$Glyph/equals (Ljava/lang/Object;)Z net/minecraft/client/gui/font/providers/UnihexProvider$Glyph/equals (Ljava/lang/Object;)Z +MD: net/minecraft/client/gui/font/providers/UnihexProvider$Glyph/f_283848_ ()I net/minecraft/client/gui/font/providers/UnihexProvider$Glyph/right ()I +MD: net/minecraft/client/gui/font/providers/UnihexProvider$Glyph/f_283857_ ()Lnet/minecraft/client/gui/font/providers/UnihexProvider$LineData; net/minecraft/client/gui/font/providers/UnihexProvider$Glyph/contents ()Lnet/minecraft/client/gui/font/providers/UnihexProvider$LineData; +MD: net/minecraft/client/gui/font/providers/UnihexProvider$Glyph/f_283887_ ()I net/minecraft/client/gui/font/providers/UnihexProvider$Glyph/left ()I +MD: net/minecraft/client/gui/font/providers/UnihexProvider$Glyph/hashCode ()I net/minecraft/client/gui/font/providers/UnihexProvider$Glyph/hashCode ()I +MD: net/minecraft/client/gui/font/providers/UnihexProvider$Glyph/m_213604_ (Ljava/util/function/Function;)Lnet/minecraft/client/gui/font/glyphs/BakedGlyph; net/minecraft/client/gui/font/providers/UnihexProvider$Glyph/bake (Ljava/util/function/Function;)Lnet/minecraft/client/gui/font/glyphs/BakedGlyph; +MD: net/minecraft/client/gui/font/providers/UnihexProvider$Glyph/m_284480_ ()I net/minecraft/client/gui/font/providers/UnihexProvider$Glyph/width ()I +MD: net/minecraft/client/gui/font/providers/UnihexProvider$Glyph/m_5619_ ()F net/minecraft/client/gui/font/providers/UnihexProvider$Glyph/getBoldOffset ()F +MD: net/minecraft/client/gui/font/providers/UnihexProvider$Glyph/m_5645_ ()F net/minecraft/client/gui/font/providers/UnihexProvider$Glyph/getShadowOffset ()F +MD: net/minecraft/client/gui/font/providers/UnihexProvider$Glyph/m_7403_ ()F net/minecraft/client/gui/font/providers/UnihexProvider$Glyph/getAdvance ()F +MD: net/minecraft/client/gui/font/providers/UnihexProvider$Glyph/toString ()Ljava/lang/String; net/minecraft/client/gui/font/providers/UnihexProvider$Glyph/toString ()Ljava/lang/String; +MD: net/minecraft/client/gui/font/providers/UnihexProvider$Glyph$1/ (Lnet/minecraft/client/gui/font/providers/UnihexProvider$Glyph;)V net/minecraft/client/gui/font/providers/UnihexProvider$Glyph$1/ (Lnet/minecraft/client/gui/font/providers/UnihexProvider$Glyph;)V +MD: net/minecraft/client/gui/font/providers/UnihexProvider$Glyph$1/m_213958_ (II)V net/minecraft/client/gui/font/providers/UnihexProvider$Glyph$1/upload (II)V +MD: net/minecraft/client/gui/font/providers/UnihexProvider$Glyph$1/m_213961_ ()I net/minecraft/client/gui/font/providers/UnihexProvider$Glyph$1/getPixelHeight ()I +MD: net/minecraft/client/gui/font/providers/UnihexProvider$Glyph$1/m_213962_ ()I net/minecraft/client/gui/font/providers/UnihexProvider$Glyph$1/getPixelWidth ()I +MD: net/minecraft/client/gui/font/providers/UnihexProvider$Glyph$1/m_213963_ ()F net/minecraft/client/gui/font/providers/UnihexProvider$Glyph$1/getOversample ()F +MD: net/minecraft/client/gui/font/providers/UnihexProvider$Glyph$1/m_213965_ ()Z net/minecraft/client/gui/font/providers/UnihexProvider$Glyph$1/isColored ()Z +MD: net/minecraft/client/gui/font/providers/UnihexProvider$IntContents/ ([II)V net/minecraft/client/gui/font/providers/UnihexProvider$IntContents/ ([II)V +MD: net/minecraft/client/gui/font/providers/UnihexProvider$IntContents/equals (Ljava/lang/Object;)Z net/minecraft/client/gui/font/providers/UnihexProvider$IntContents/equals (Ljava/lang/Object;)Z +MD: net/minecraft/client/gui/font/providers/UnihexProvider$IntContents/f_283738_ ()[I net/minecraft/client/gui/font/providers/UnihexProvider$IntContents/contents ()[I +MD: net/minecraft/client/gui/font/providers/UnihexProvider$IntContents/hashCode ()I net/minecraft/client/gui/font/providers/UnihexProvider$IntContents/hashCode ()I +MD: net/minecraft/client/gui/font/providers/UnihexProvider$IntContents/m_284144_ (I)I net/minecraft/client/gui/font/providers/UnihexProvider$IntContents/line (I)I +MD: net/minecraft/client/gui/font/providers/UnihexProvider$IntContents/m_284266_ ()I net/minecraft/client/gui/font/providers/UnihexProvider$IntContents/bitWidth ()I +MD: net/minecraft/client/gui/font/providers/UnihexProvider$IntContents/m_284350_ (ILit/unimi/dsi/fastutil/bytes/ByteList;)Lnet/minecraft/client/gui/font/providers/UnihexProvider$LineData; net/minecraft/client/gui/font/providers/UnihexProvider$IntContents/read24 (ILit/unimi/dsi/fastutil/bytes/ByteList;)Lnet/minecraft/client/gui/font/providers/UnihexProvider$LineData; +MD: net/minecraft/client/gui/font/providers/UnihexProvider$IntContents/m_284358_ (ILit/unimi/dsi/fastutil/bytes/ByteList;)Lnet/minecraft/client/gui/font/providers/UnihexProvider$LineData; net/minecraft/client/gui/font/providers/UnihexProvider$IntContents/read32 (ILit/unimi/dsi/fastutil/bytes/ByteList;)Lnet/minecraft/client/gui/font/providers/UnihexProvider$LineData; +MD: net/minecraft/client/gui/font/providers/UnihexProvider$IntContents/toString ()Ljava/lang/String; net/minecraft/client/gui/font/providers/UnihexProvider$IntContents/toString ()Ljava/lang/String; +MD: net/minecraft/client/gui/font/providers/UnihexProvider$LineData/m_284144_ (I)I net/minecraft/client/gui/font/providers/UnihexProvider$LineData/line (I)I +MD: net/minecraft/client/gui/font/providers/UnihexProvider$LineData/m_284261_ ()I net/minecraft/client/gui/font/providers/UnihexProvider$LineData/calculateWidth ()I +MD: net/minecraft/client/gui/font/providers/UnihexProvider$LineData/m_284266_ ()I net/minecraft/client/gui/font/providers/UnihexProvider$LineData/bitWidth ()I +MD: net/minecraft/client/gui/font/providers/UnihexProvider$LineData/m_284440_ ()I net/minecraft/client/gui/font/providers/UnihexProvider$LineData/mask ()I +MD: net/minecraft/client/gui/font/providers/UnihexProvider$OverrideRange/ ()V net/minecraft/client/gui/font/providers/UnihexProvider$OverrideRange/ ()V +MD: net/minecraft/client/gui/font/providers/UnihexProvider$OverrideRange/ (IILnet/minecraft/client/gui/font/providers/UnihexProvider$Dimensions;)V net/minecraft/client/gui/font/providers/UnihexProvider$OverrideRange/ (IILnet/minecraft/client/gui/font/providers/UnihexProvider$Dimensions;)V +MD: net/minecraft/client/gui/font/providers/UnihexProvider$OverrideRange/equals (Ljava/lang/Object;)Z net/minecraft/client/gui/font/providers/UnihexProvider$OverrideRange/equals (Ljava/lang/Object;)Z +MD: net/minecraft/client/gui/font/providers/UnihexProvider$OverrideRange/f_283797_ ()I net/minecraft/client/gui/font/providers/UnihexProvider$OverrideRange/from ()I +MD: net/minecraft/client/gui/font/providers/UnihexProvider$OverrideRange/f_283851_ ()I net/minecraft/client/gui/font/providers/UnihexProvider$OverrideRange/to ()I +MD: net/minecraft/client/gui/font/providers/UnihexProvider$OverrideRange/f_283891_ ()Lnet/minecraft/client/gui/font/providers/UnihexProvider$Dimensions; net/minecraft/client/gui/font/providers/UnihexProvider$OverrideRange/dimensions ()Lnet/minecraft/client/gui/font/providers/UnihexProvider$Dimensions; +MD: net/minecraft/client/gui/font/providers/UnihexProvider$OverrideRange/hashCode ()I net/minecraft/client/gui/font/providers/UnihexProvider$OverrideRange/hashCode ()I +MD: net/minecraft/client/gui/font/providers/UnihexProvider$OverrideRange/m_284139_ (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/client/gui/font/providers/UnihexProvider$OverrideRange/lambda$static$0 (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/client/gui/font/providers/UnihexProvider$OverrideRange/m_284184_ (Lnet/minecraft/client/gui/font/providers/UnihexProvider$OverrideRange;)Lcom/mojang/serialization/DataResult; net/minecraft/client/gui/font/providers/UnihexProvider$OverrideRange/lambda$static$2 (Lnet/minecraft/client/gui/font/providers/UnihexProvider$OverrideRange;)Lcom/mojang/serialization/DataResult; +MD: net/minecraft/client/gui/font/providers/UnihexProvider$OverrideRange/m_284308_ (Lnet/minecraft/client/gui/font/providers/UnihexProvider$OverrideRange;)Ljava/lang/String; net/minecraft/client/gui/font/providers/UnihexProvider$OverrideRange/lambda$static$1 (Lnet/minecraft/client/gui/font/providers/UnihexProvider$OverrideRange;)Ljava/lang/String; +MD: net/minecraft/client/gui/font/providers/UnihexProvider$OverrideRange/toString ()Ljava/lang/String; net/minecraft/client/gui/font/providers/UnihexProvider$OverrideRange/toString ()Ljava/lang/String; +MD: net/minecraft/client/gui/font/providers/UnihexProvider$ReaderOutput/m_284281_ (ILnet/minecraft/client/gui/font/providers/UnihexProvider$LineData;)V net/minecraft/client/gui/font/providers/UnihexProvider$ReaderOutput/accept (ILnet/minecraft/client/gui/font/providers/UnihexProvider$LineData;)V +MD: net/minecraft/client/gui/font/providers/UnihexProvider$ShortContents/ ([S)V net/minecraft/client/gui/font/providers/UnihexProvider$ShortContents/ ([S)V +MD: net/minecraft/client/gui/font/providers/UnihexProvider$ShortContents/equals (Ljava/lang/Object;)Z net/minecraft/client/gui/font/providers/UnihexProvider$ShortContents/equals (Ljava/lang/Object;)Z +MD: net/minecraft/client/gui/font/providers/UnihexProvider$ShortContents/f_283874_ ()[S net/minecraft/client/gui/font/providers/UnihexProvider$ShortContents/contents ()[S +MD: net/minecraft/client/gui/font/providers/UnihexProvider$ShortContents/hashCode ()I net/minecraft/client/gui/font/providers/UnihexProvider$ShortContents/hashCode ()I +MD: net/minecraft/client/gui/font/providers/UnihexProvider$ShortContents/m_284144_ (I)I net/minecraft/client/gui/font/providers/UnihexProvider$ShortContents/line (I)I +MD: net/minecraft/client/gui/font/providers/UnihexProvider$ShortContents/m_284266_ ()I net/minecraft/client/gui/font/providers/UnihexProvider$ShortContents/bitWidth ()I +MD: net/minecraft/client/gui/font/providers/UnihexProvider$ShortContents/m_284334_ (ILit/unimi/dsi/fastutil/bytes/ByteList;)Lnet/minecraft/client/gui/font/providers/UnihexProvider$LineData; net/minecraft/client/gui/font/providers/UnihexProvider$ShortContents/read (ILit/unimi/dsi/fastutil/bytes/ByteList;)Lnet/minecraft/client/gui/font/providers/UnihexProvider$LineData; +MD: net/minecraft/client/gui/font/providers/UnihexProvider$ShortContents/toString ()Ljava/lang/String; net/minecraft/client/gui/font/providers/UnihexProvider$ShortContents/toString ()Ljava/lang/String; +MD: net/minecraft/client/gui/layouts/AbstractLayout/ (IIII)V net/minecraft/client/gui/layouts/AbstractLayout/ (IIII)V +MD: net/minecraft/client/gui/layouts/AbstractLayout/m_252754_ ()I net/minecraft/client/gui/layouts/AbstractLayout/getX ()I +MD: net/minecraft/client/gui/layouts/AbstractLayout/m_252865_ (I)V net/minecraft/client/gui/layouts/AbstractLayout/setX (I)V +MD: net/minecraft/client/gui/layouts/AbstractLayout/m_252907_ ()I net/minecraft/client/gui/layouts/AbstractLayout/getY ()I +MD: net/minecraft/client/gui/layouts/AbstractLayout/m_253211_ (I)V net/minecraft/client/gui/layouts/AbstractLayout/setY (I)V +MD: net/minecraft/client/gui/layouts/AbstractLayout/m_264178_ (ILnet/minecraft/client/gui/layouts/LayoutElement;)V net/minecraft/client/gui/layouts/AbstractLayout/lambda$setX$0 (ILnet/minecraft/client/gui/layouts/LayoutElement;)V +MD: net/minecraft/client/gui/layouts/AbstractLayout/m_264378_ (ILnet/minecraft/client/gui/layouts/LayoutElement;)V net/minecraft/client/gui/layouts/AbstractLayout/lambda$setY$1 (ILnet/minecraft/client/gui/layouts/LayoutElement;)V +MD: net/minecraft/client/gui/layouts/AbstractLayout/m_5711_ ()I net/minecraft/client/gui/layouts/AbstractLayout/getWidth ()I +MD: net/minecraft/client/gui/layouts/AbstractLayout/m_93694_ ()I net/minecraft/client/gui/layouts/AbstractLayout/getHeight ()I +MD: net/minecraft/client/gui/layouts/AbstractLayout$AbstractChildWrapper/ (Lnet/minecraft/client/gui/layouts/LayoutElement;Lnet/minecraft/client/gui/layouts/LayoutSettings;)V net/minecraft/client/gui/layouts/AbstractLayout$AbstractChildWrapper/ (Lnet/minecraft/client/gui/layouts/LayoutElement;Lnet/minecraft/client/gui/layouts/LayoutSettings;)V +MD: net/minecraft/client/gui/layouts/AbstractLayout$AbstractChildWrapper/m_264032_ (II)V net/minecraft/client/gui/layouts/AbstractLayout$AbstractChildWrapper/setX (II)V +MD: net/minecraft/client/gui/layouts/AbstractLayout$AbstractChildWrapper/m_264477_ ()I net/minecraft/client/gui/layouts/AbstractLayout$AbstractChildWrapper/getWidth ()I +MD: net/minecraft/client/gui/layouts/AbstractLayout$AbstractChildWrapper/m_264572_ (II)V net/minecraft/client/gui/layouts/AbstractLayout$AbstractChildWrapper/setY (II)V +MD: net/minecraft/client/gui/layouts/AbstractLayout$AbstractChildWrapper/m_264608_ ()I net/minecraft/client/gui/layouts/AbstractLayout$AbstractChildWrapper/getHeight ()I +MD: net/minecraft/client/gui/layouts/FrameLayout/ (IIII)V net/minecraft/client/gui/layouts/FrameLayout/ (IIII)V +MD: net/minecraft/client/gui/layouts/FrameLayout/ (II)V net/minecraft/client/gui/layouts/FrameLayout/ (II)V +MD: net/minecraft/client/gui/layouts/FrameLayout/ ()V net/minecraft/client/gui/layouts/FrameLayout/ ()V +MD: net/minecraft/client/gui/layouts/FrameLayout/m_264036_ ()V net/minecraft/client/gui/layouts/FrameLayout/arrangeElements ()V +MD: net/minecraft/client/gui/layouts/FrameLayout/m_264088_ ()Lnet/minecraft/client/gui/layouts/LayoutSettings; net/minecraft/client/gui/layouts/FrameLayout/defaultChildLayoutSetting ()Lnet/minecraft/client/gui/layouts/LayoutSettings; +MD: net/minecraft/client/gui/layouts/FrameLayout/m_264090_ (Ljava/util/function/Consumer;)V net/minecraft/client/gui/layouts/FrameLayout/visitChildren (Ljava/util/function/Consumer;)V +MD: net/minecraft/client/gui/layouts/FrameLayout/m_264122_ (Ljava/util/function/Consumer;Lnet/minecraft/client/gui/layouts/FrameLayout$ChildContainer;)V net/minecraft/client/gui/layouts/FrameLayout/lambda$visitChildren$0 (Ljava/util/function/Consumer;Lnet/minecraft/client/gui/layouts/FrameLayout$ChildContainer;)V +MD: net/minecraft/client/gui/layouts/FrameLayout/m_264159_ (Lnet/minecraft/client/gui/layouts/LayoutElement;IIII)V net/minecraft/client/gui/layouts/FrameLayout/centerInRectangle (Lnet/minecraft/client/gui/layouts/LayoutElement;IIII)V +MD: net/minecraft/client/gui/layouts/FrameLayout/m_264232_ (II)Lnet/minecraft/client/gui/layouts/FrameLayout; net/minecraft/client/gui/layouts/FrameLayout/setMinDimensions (II)Lnet/minecraft/client/gui/layouts/FrameLayout; +MD: net/minecraft/client/gui/layouts/FrameLayout/m_264240_ (I)Lnet/minecraft/client/gui/layouts/FrameLayout; net/minecraft/client/gui/layouts/FrameLayout/setMinHeight (I)Lnet/minecraft/client/gui/layouts/FrameLayout; +MD: net/minecraft/client/gui/layouts/FrameLayout/m_264274_ (IIILjava/util/function/Consumer;F)V net/minecraft/client/gui/layouts/FrameLayout/alignInDimension (IIILjava/util/function/Consumer;F)V +MD: net/minecraft/client/gui/layouts/FrameLayout/m_264364_ ()Lnet/minecraft/client/gui/layouts/LayoutSettings; net/minecraft/client/gui/layouts/FrameLayout/newChildLayoutSettings ()Lnet/minecraft/client/gui/layouts/LayoutSettings; +MD: net/minecraft/client/gui/layouts/FrameLayout/m_264444_ (I)Lnet/minecraft/client/gui/layouts/FrameLayout; net/minecraft/client/gui/layouts/FrameLayout/setMinWidth (I)Lnet/minecraft/client/gui/layouts/FrameLayout; +MD: net/minecraft/client/gui/layouts/FrameLayout/m_264460_ (Lnet/minecraft/client/gui/layouts/LayoutElement;IIIIFF)V net/minecraft/client/gui/layouts/FrameLayout/alignInRectangle (Lnet/minecraft/client/gui/layouts/LayoutElement;IIIIFF)V +MD: net/minecraft/client/gui/layouts/FrameLayout/m_264557_ (Lnet/minecraft/client/gui/layouts/LayoutElement;)Lnet/minecraft/client/gui/layouts/LayoutElement; net/minecraft/client/gui/layouts/FrameLayout/addChild (Lnet/minecraft/client/gui/layouts/LayoutElement;)Lnet/minecraft/client/gui/layouts/LayoutElement; +MD: net/minecraft/client/gui/layouts/FrameLayout/m_264564_ (Lnet/minecraft/client/gui/layouts/LayoutElement;Lnet/minecraft/client/gui/layouts/LayoutSettings;)Lnet/minecraft/client/gui/layouts/LayoutElement; net/minecraft/client/gui/layouts/FrameLayout/addChild (Lnet/minecraft/client/gui/layouts/LayoutElement;Lnet/minecraft/client/gui/layouts/LayoutSettings;)Lnet/minecraft/client/gui/layouts/LayoutElement; +MD: net/minecraft/client/gui/layouts/FrameLayout/m_267781_ (Lnet/minecraft/client/gui/layouts/LayoutElement;Lnet/minecraft/client/gui/navigation/ScreenRectangle;)V net/minecraft/client/gui/layouts/FrameLayout/centerInRectangle (Lnet/minecraft/client/gui/layouts/LayoutElement;Lnet/minecraft/client/gui/navigation/ScreenRectangle;)V +MD: net/minecraft/client/gui/layouts/FrameLayout/m_274605_ (Lnet/minecraft/client/gui/layouts/LayoutElement;Lnet/minecraft/client/gui/navigation/ScreenRectangle;FF)V net/minecraft/client/gui/layouts/FrameLayout/alignInRectangle (Lnet/minecraft/client/gui/layouts/LayoutElement;Lnet/minecraft/client/gui/navigation/ScreenRectangle;FF)V +MD: net/minecraft/client/gui/layouts/FrameLayout$ChildContainer/ (Lnet/minecraft/client/gui/layouts/LayoutElement;Lnet/minecraft/client/gui/layouts/LayoutSettings;)V net/minecraft/client/gui/layouts/FrameLayout$ChildContainer/ (Lnet/minecraft/client/gui/layouts/LayoutElement;Lnet/minecraft/client/gui/layouts/LayoutSettings;)V +MD: net/minecraft/client/gui/layouts/GridLayout/ (II)V net/minecraft/client/gui/layouts/GridLayout/ (II)V +MD: net/minecraft/client/gui/layouts/GridLayout/ ()V net/minecraft/client/gui/layouts/GridLayout/ ()V +MD: net/minecraft/client/gui/layouts/GridLayout/m_264036_ ()V net/minecraft/client/gui/layouts/GridLayout/arrangeElements ()V +MD: net/minecraft/client/gui/layouts/GridLayout/m_264075_ (Lnet/minecraft/client/gui/layouts/LayoutElement;IILnet/minecraft/client/gui/layouts/LayoutSettings;)Lnet/minecraft/client/gui/layouts/LayoutElement; net/minecraft/client/gui/layouts/GridLayout/addChild (Lnet/minecraft/client/gui/layouts/LayoutElement;IILnet/minecraft/client/gui/layouts/LayoutSettings;)Lnet/minecraft/client/gui/layouts/LayoutElement; +MD: net/minecraft/client/gui/layouts/GridLayout/m_264090_ (Ljava/util/function/Consumer;)V net/minecraft/client/gui/layouts/GridLayout/visitChildren (Ljava/util/function/Consumer;)V +MD: net/minecraft/client/gui/layouts/GridLayout/m_264167_ (Lnet/minecraft/client/gui/layouts/LayoutElement;IIIILnet/minecraft/client/gui/layouts/LayoutSettings;)Lnet/minecraft/client/gui/layouts/LayoutElement; net/minecraft/client/gui/layouts/GridLayout/addChild (Lnet/minecraft/client/gui/layouts/LayoutElement;IIIILnet/minecraft/client/gui/layouts/LayoutSettings;)Lnet/minecraft/client/gui/layouts/LayoutElement; +MD: net/minecraft/client/gui/layouts/GridLayout/m_264188_ (Lnet/minecraft/client/gui/layouts/LayoutElement;IIII)Lnet/minecraft/client/gui/layouts/LayoutElement; net/minecraft/client/gui/layouts/GridLayout/addChild (Lnet/minecraft/client/gui/layouts/LayoutElement;IIII)Lnet/minecraft/client/gui/layouts/LayoutElement; +MD: net/minecraft/client/gui/layouts/GridLayout/m_264211_ ()Lnet/minecraft/client/gui/layouts/LayoutSettings; net/minecraft/client/gui/layouts/GridLayout/defaultCellSetting ()Lnet/minecraft/client/gui/layouts/LayoutSettings; +MD: net/minecraft/client/gui/layouts/GridLayout/m_264379_ (Lnet/minecraft/client/gui/layouts/LayoutElement;II)Lnet/minecraft/client/gui/layouts/LayoutElement; net/minecraft/client/gui/layouts/GridLayout/addChild (Lnet/minecraft/client/gui/layouts/LayoutElement;II)Lnet/minecraft/client/gui/layouts/LayoutElement; +MD: net/minecraft/client/gui/layouts/GridLayout/m_264606_ (I)Lnet/minecraft/client/gui/layouts/GridLayout$RowHelper; net/minecraft/client/gui/layouts/GridLayout/createRowHelper (I)Lnet/minecraft/client/gui/layouts/GridLayout$RowHelper; +MD: net/minecraft/client/gui/layouts/GridLayout/m_264626_ ()Lnet/minecraft/client/gui/layouts/LayoutSettings; net/minecraft/client/gui/layouts/GridLayout/newCellSettings ()Lnet/minecraft/client/gui/layouts/LayoutSettings; +MD: net/minecraft/client/gui/layouts/GridLayout/m_267612_ (I)Lnet/minecraft/client/gui/layouts/GridLayout; net/minecraft/client/gui/layouts/GridLayout/spacing (I)Lnet/minecraft/client/gui/layouts/GridLayout; +MD: net/minecraft/client/gui/layouts/GridLayout/m_267749_ (I)Lnet/minecraft/client/gui/layouts/GridLayout; net/minecraft/client/gui/layouts/GridLayout/columnSpacing (I)Lnet/minecraft/client/gui/layouts/GridLayout; +MD: net/minecraft/client/gui/layouts/GridLayout/m_267750_ (I)Lnet/minecraft/client/gui/layouts/GridLayout; net/minecraft/client/gui/layouts/GridLayout/rowSpacing (I)Lnet/minecraft/client/gui/layouts/GridLayout; +MD: net/minecraft/client/gui/layouts/GridLayout$CellInhabitant/ (Lnet/minecraft/client/gui/layouts/LayoutElement;IIIILnet/minecraft/client/gui/layouts/LayoutSettings;)V net/minecraft/client/gui/layouts/GridLayout$CellInhabitant/ (Lnet/minecraft/client/gui/layouts/LayoutElement;IIIILnet/minecraft/client/gui/layouts/LayoutSettings;)V +MD: net/minecraft/client/gui/layouts/GridLayout$CellInhabitant/m_264085_ ()I net/minecraft/client/gui/layouts/GridLayout$CellInhabitant/getLastOccupiedColumn ()I +MD: net/minecraft/client/gui/layouts/GridLayout$CellInhabitant/m_264275_ ()I net/minecraft/client/gui/layouts/GridLayout$CellInhabitant/getLastOccupiedRow ()I +MD: net/minecraft/client/gui/layouts/GridLayout$RowHelper/ (Lnet/minecraft/client/gui/layouts/GridLayout;I)V net/minecraft/client/gui/layouts/GridLayout$RowHelper/ (Lnet/minecraft/client/gui/layouts/GridLayout;I)V +MD: net/minecraft/client/gui/layouts/GridLayout$RowHelper/m_264108_ (Lnet/minecraft/client/gui/layouts/LayoutElement;I)Lnet/minecraft/client/gui/layouts/LayoutElement; net/minecraft/client/gui/layouts/GridLayout$RowHelper/addChild (Lnet/minecraft/client/gui/layouts/LayoutElement;I)Lnet/minecraft/client/gui/layouts/LayoutElement; +MD: net/minecraft/client/gui/layouts/GridLayout$RowHelper/m_264139_ (Lnet/minecraft/client/gui/layouts/LayoutElement;)Lnet/minecraft/client/gui/layouts/LayoutElement; net/minecraft/client/gui/layouts/GridLayout$RowHelper/addChild (Lnet/minecraft/client/gui/layouts/LayoutElement;)Lnet/minecraft/client/gui/layouts/LayoutElement; +MD: net/minecraft/client/gui/layouts/GridLayout$RowHelper/m_264206_ (Lnet/minecraft/client/gui/layouts/LayoutElement;Lnet/minecraft/client/gui/layouts/LayoutSettings;)Lnet/minecraft/client/gui/layouts/LayoutElement; net/minecraft/client/gui/layouts/GridLayout$RowHelper/addChild (Lnet/minecraft/client/gui/layouts/LayoutElement;Lnet/minecraft/client/gui/layouts/LayoutSettings;)Lnet/minecraft/client/gui/layouts/LayoutElement; +MD: net/minecraft/client/gui/layouts/GridLayout$RowHelper/m_264276_ (Lnet/minecraft/client/gui/layouts/LayoutElement;ILnet/minecraft/client/gui/layouts/LayoutSettings;)Lnet/minecraft/client/gui/layouts/LayoutElement; net/minecraft/client/gui/layouts/GridLayout$RowHelper/addChild (Lnet/minecraft/client/gui/layouts/LayoutElement;ILnet/minecraft/client/gui/layouts/LayoutSettings;)Lnet/minecraft/client/gui/layouts/LayoutElement; +MD: net/minecraft/client/gui/layouts/GridLayout$RowHelper/m_264502_ ()Lnet/minecraft/client/gui/layouts/LayoutSettings; net/minecraft/client/gui/layouts/GridLayout$RowHelper/defaultCellSetting ()Lnet/minecraft/client/gui/layouts/LayoutSettings; +MD: net/minecraft/client/gui/layouts/GridLayout$RowHelper/m_264551_ ()Lnet/minecraft/client/gui/layouts/LayoutSettings; net/minecraft/client/gui/layouts/GridLayout$RowHelper/newCellSettings ()Lnet/minecraft/client/gui/layouts/LayoutSettings; +MD: net/minecraft/client/gui/layouts/GridLayout$RowHelper/m_267613_ ()Lnet/minecraft/client/gui/layouts/GridLayout; net/minecraft/client/gui/layouts/GridLayout$RowHelper/getGrid ()Lnet/minecraft/client/gui/layouts/GridLayout; +MD: net/minecraft/client/gui/layouts/HeaderAndFooterLayout/ (Lnet/minecraft/client/gui/screens/Screen;I)V net/minecraft/client/gui/layouts/HeaderAndFooterLayout/ (Lnet/minecraft/client/gui/screens/Screen;I)V +MD: net/minecraft/client/gui/layouts/HeaderAndFooterLayout/ (Lnet/minecraft/client/gui/screens/Screen;)V net/minecraft/client/gui/layouts/HeaderAndFooterLayout/ (Lnet/minecraft/client/gui/screens/Screen;)V +MD: net/minecraft/client/gui/layouts/HeaderAndFooterLayout/ (Lnet/minecraft/client/gui/screens/Screen;II)V net/minecraft/client/gui/layouts/HeaderAndFooterLayout/ (Lnet/minecraft/client/gui/screens/Screen;II)V +MD: net/minecraft/client/gui/layouts/HeaderAndFooterLayout/m_252754_ ()I net/minecraft/client/gui/layouts/HeaderAndFooterLayout/getX ()I +MD: net/minecraft/client/gui/layouts/HeaderAndFooterLayout/m_252865_ (I)V net/minecraft/client/gui/layouts/HeaderAndFooterLayout/setX (I)V +MD: net/minecraft/client/gui/layouts/HeaderAndFooterLayout/m_252907_ ()I net/minecraft/client/gui/layouts/HeaderAndFooterLayout/getY ()I +MD: net/minecraft/client/gui/layouts/HeaderAndFooterLayout/m_253211_ (I)V net/minecraft/client/gui/layouts/HeaderAndFooterLayout/setY (I)V +MD: net/minecraft/client/gui/layouts/HeaderAndFooterLayout/m_264036_ ()V net/minecraft/client/gui/layouts/HeaderAndFooterLayout/arrangeElements ()V +MD: net/minecraft/client/gui/layouts/HeaderAndFooterLayout/m_264090_ (Ljava/util/function/Consumer;)V net/minecraft/client/gui/layouts/HeaderAndFooterLayout/visitChildren (Ljava/util/function/Consumer;)V +MD: net/minecraft/client/gui/layouts/HeaderAndFooterLayout/m_268999_ (Lnet/minecraft/client/gui/layouts/LayoutElement;)Lnet/minecraft/client/gui/layouts/LayoutElement; net/minecraft/client/gui/layouts/HeaderAndFooterLayout/addToContents (Lnet/minecraft/client/gui/layouts/LayoutElement;)Lnet/minecraft/client/gui/layouts/LayoutElement; +MD: net/minecraft/client/gui/layouts/HeaderAndFooterLayout/m_269040_ ()I net/minecraft/client/gui/layouts/HeaderAndFooterLayout/getFooterHeight ()I +MD: net/minecraft/client/gui/layouts/HeaderAndFooterLayout/m_269068_ ()Lnet/minecraft/client/gui/layouts/LayoutSettings; net/minecraft/client/gui/layouts/HeaderAndFooterLayout/newHeaderLayoutSettings ()Lnet/minecraft/client/gui/layouts/LayoutSettings; +MD: net/minecraft/client/gui/layouts/HeaderAndFooterLayout/m_269281_ (Lnet/minecraft/client/gui/layouts/LayoutElement;)Lnet/minecraft/client/gui/layouts/LayoutElement; net/minecraft/client/gui/layouts/HeaderAndFooterLayout/addToFooter (Lnet/minecraft/client/gui/layouts/LayoutElement;)Lnet/minecraft/client/gui/layouts/LayoutElement; +MD: net/minecraft/client/gui/layouts/HeaderAndFooterLayout/m_269340_ (Lnet/minecraft/client/gui/layouts/LayoutElement;Lnet/minecraft/client/gui/layouts/LayoutSettings;)Lnet/minecraft/client/gui/layouts/LayoutElement; net/minecraft/client/gui/layouts/HeaderAndFooterLayout/addToContents (Lnet/minecraft/client/gui/layouts/LayoutElement;Lnet/minecraft/client/gui/layouts/LayoutSettings;)Lnet/minecraft/client/gui/layouts/LayoutElement; +MD: net/minecraft/client/gui/layouts/HeaderAndFooterLayout/m_269342_ (Lnet/minecraft/client/gui/layouts/LayoutElement;Lnet/minecraft/client/gui/layouts/LayoutSettings;)Lnet/minecraft/client/gui/layouts/LayoutElement; net/minecraft/client/gui/layouts/HeaderAndFooterLayout/addToHeader (Lnet/minecraft/client/gui/layouts/LayoutElement;Lnet/minecraft/client/gui/layouts/LayoutSettings;)Lnet/minecraft/client/gui/layouts/LayoutElement; +MD: net/minecraft/client/gui/layouts/HeaderAndFooterLayout/m_269355_ ()I net/minecraft/client/gui/layouts/HeaderAndFooterLayout/getHeaderHeight ()I +MD: net/minecraft/client/gui/layouts/HeaderAndFooterLayout/m_269376_ (I)V net/minecraft/client/gui/layouts/HeaderAndFooterLayout/setHeaderHeight (I)V +MD: net/minecraft/client/gui/layouts/HeaderAndFooterLayout/m_269403_ ()Lnet/minecraft/client/gui/layouts/LayoutSettings; net/minecraft/client/gui/layouts/HeaderAndFooterLayout/newContentLayoutSettings ()Lnet/minecraft/client/gui/layouts/LayoutSettings; +MD: net/minecraft/client/gui/layouts/HeaderAndFooterLayout/m_269413_ (I)V net/minecraft/client/gui/layouts/HeaderAndFooterLayout/setFooterHeight (I)V +MD: net/minecraft/client/gui/layouts/HeaderAndFooterLayout/m_269450_ (Lnet/minecraft/client/gui/layouts/LayoutElement;Lnet/minecraft/client/gui/layouts/LayoutSettings;)Lnet/minecraft/client/gui/layouts/LayoutElement; net/minecraft/client/gui/layouts/HeaderAndFooterLayout/addToFooter (Lnet/minecraft/client/gui/layouts/LayoutElement;Lnet/minecraft/client/gui/layouts/LayoutSettings;)Lnet/minecraft/client/gui/layouts/LayoutElement; +MD: net/minecraft/client/gui/layouts/HeaderAndFooterLayout/m_269471_ (Lnet/minecraft/client/gui/layouts/LayoutElement;)Lnet/minecraft/client/gui/layouts/LayoutElement; net/minecraft/client/gui/layouts/HeaderAndFooterLayout/addToHeader (Lnet/minecraft/client/gui/layouts/LayoutElement;)Lnet/minecraft/client/gui/layouts/LayoutElement; +MD: net/minecraft/client/gui/layouts/HeaderAndFooterLayout/m_269493_ ()Lnet/minecraft/client/gui/layouts/LayoutSettings; net/minecraft/client/gui/layouts/HeaderAndFooterLayout/newFooterLayoutSettings ()Lnet/minecraft/client/gui/layouts/LayoutSettings; +MD: net/minecraft/client/gui/layouts/HeaderAndFooterLayout/m_5711_ ()I net/minecraft/client/gui/layouts/HeaderAndFooterLayout/getWidth ()I +MD: net/minecraft/client/gui/layouts/HeaderAndFooterLayout/m_93694_ ()I net/minecraft/client/gui/layouts/HeaderAndFooterLayout/getHeight ()I +MD: net/minecraft/client/gui/layouts/Layout/m_264036_ ()V net/minecraft/client/gui/layouts/Layout/arrangeElements ()V +MD: net/minecraft/client/gui/layouts/Layout/m_264090_ (Ljava/util/function/Consumer;)V net/minecraft/client/gui/layouts/Layout/visitChildren (Ljava/util/function/Consumer;)V +MD: net/minecraft/client/gui/layouts/Layout/m_264134_ (Ljava/util/function/Consumer;)V net/minecraft/client/gui/layouts/Layout/visitWidgets (Ljava/util/function/Consumer;)V +MD: net/minecraft/client/gui/layouts/Layout/m_269147_ (Ljava/util/function/Consumer;Lnet/minecraft/client/gui/layouts/LayoutElement;)V net/minecraft/client/gui/layouts/Layout/lambda$visitWidgets$0 (Ljava/util/function/Consumer;Lnet/minecraft/client/gui/layouts/LayoutElement;)V +MD: net/minecraft/client/gui/layouts/Layout/m_269338_ (Lnet/minecraft/client/gui/layouts/LayoutElement;)V net/minecraft/client/gui/layouts/Layout/lambda$arrangeElements$1 (Lnet/minecraft/client/gui/layouts/LayoutElement;)V +MD: net/minecraft/client/gui/layouts/LayoutElement/m_252754_ ()I net/minecraft/client/gui/layouts/LayoutElement/getX ()I +MD: net/minecraft/client/gui/layouts/LayoutElement/m_252865_ (I)V net/minecraft/client/gui/layouts/LayoutElement/setX (I)V +MD: net/minecraft/client/gui/layouts/LayoutElement/m_252907_ ()I net/minecraft/client/gui/layouts/LayoutElement/getY ()I +MD: net/minecraft/client/gui/layouts/LayoutElement/m_253211_ (I)V net/minecraft/client/gui/layouts/LayoutElement/setY (I)V +MD: net/minecraft/client/gui/layouts/LayoutElement/m_264134_ (Ljava/util/function/Consumer;)V net/minecraft/client/gui/layouts/LayoutElement/visitWidgets (Ljava/util/function/Consumer;)V +MD: net/minecraft/client/gui/layouts/LayoutElement/m_264152_ (II)V net/minecraft/client/gui/layouts/LayoutElement/setPosition (II)V +MD: net/minecraft/client/gui/layouts/LayoutElement/m_264198_ ()Lnet/minecraft/client/gui/navigation/ScreenRectangle; net/minecraft/client/gui/layouts/LayoutElement/getRectangle ()Lnet/minecraft/client/gui/navigation/ScreenRectangle; +MD: net/minecraft/client/gui/layouts/LayoutElement/m_5711_ ()I net/minecraft/client/gui/layouts/LayoutElement/getWidth ()I +MD: net/minecraft/client/gui/layouts/LayoutElement/m_93694_ ()I net/minecraft/client/gui/layouts/LayoutElement/getHeight ()I +MD: net/minecraft/client/gui/layouts/LayoutSettings/m_264040_ ()Lnet/minecraft/client/gui/layouts/LayoutSettings; net/minecraft/client/gui/layouts/LayoutSettings/copy ()Lnet/minecraft/client/gui/layouts/LayoutSettings; +MD: net/minecraft/client/gui/layouts/LayoutSettings/m_264070_ ()Lnet/minecraft/client/gui/layouts/LayoutSettings; net/minecraft/client/gui/layouts/LayoutSettings/alignVerticallyTop ()Lnet/minecraft/client/gui/layouts/LayoutSettings; +MD: net/minecraft/client/gui/layouts/LayoutSettings/m_264129_ (IIII)Lnet/minecraft/client/gui/layouts/LayoutSettings; net/minecraft/client/gui/layouts/LayoutSettings/padding (IIII)Lnet/minecraft/client/gui/layouts/LayoutSettings; +MD: net/minecraft/client/gui/layouts/LayoutSettings/m_264154_ (I)Lnet/minecraft/client/gui/layouts/LayoutSettings; net/minecraft/client/gui/layouts/LayoutSettings/paddingBottom (I)Lnet/minecraft/client/gui/layouts/LayoutSettings; +MD: net/minecraft/client/gui/layouts/LayoutSettings/m_264174_ (I)Lnet/minecraft/client/gui/layouts/LayoutSettings; net/minecraft/client/gui/layouts/LayoutSettings/padding (I)Lnet/minecraft/client/gui/layouts/LayoutSettings; +MD: net/minecraft/client/gui/layouts/LayoutSettings/m_264184_ (I)Lnet/minecraft/client/gui/layouts/LayoutSettings; net/minecraft/client/gui/layouts/LayoutSettings/paddingVertical (I)Lnet/minecraft/client/gui/layouts/LayoutSettings; +MD: net/minecraft/client/gui/layouts/LayoutSettings/m_264214_ ()Lnet/minecraft/client/gui/layouts/LayoutSettings; net/minecraft/client/gui/layouts/LayoutSettings/defaults ()Lnet/minecraft/client/gui/layouts/LayoutSettings; +MD: net/minecraft/client/gui/layouts/LayoutSettings/m_264215_ (I)Lnet/minecraft/client/gui/layouts/LayoutSettings; net/minecraft/client/gui/layouts/LayoutSettings/paddingHorizontal (I)Lnet/minecraft/client/gui/layouts/LayoutSettings; +MD: net/minecraft/client/gui/layouts/LayoutSettings/m_264221_ (F)Lnet/minecraft/client/gui/layouts/LayoutSettings; net/minecraft/client/gui/layouts/LayoutSettings/alignVertically (F)Lnet/minecraft/client/gui/layouts/LayoutSettings; +MD: net/minecraft/client/gui/layouts/LayoutSettings/m_264311_ (I)Lnet/minecraft/client/gui/layouts/LayoutSettings; net/minecraft/client/gui/layouts/LayoutSettings/paddingTop (I)Lnet/minecraft/client/gui/layouts/LayoutSettings; +MD: net/minecraft/client/gui/layouts/LayoutSettings/m_264356_ ()Lnet/minecraft/client/gui/layouts/LayoutSettings; net/minecraft/client/gui/layouts/LayoutSettings/alignHorizontallyCenter ()Lnet/minecraft/client/gui/layouts/LayoutSettings; +MD: net/minecraft/client/gui/layouts/LayoutSettings/m_264398_ (I)Lnet/minecraft/client/gui/layouts/LayoutSettings; net/minecraft/client/gui/layouts/LayoutSettings/paddingRight (I)Lnet/minecraft/client/gui/layouts/LayoutSettings; +MD: net/minecraft/client/gui/layouts/LayoutSettings/m_264400_ (I)Lnet/minecraft/client/gui/layouts/LayoutSettings; net/minecraft/client/gui/layouts/LayoutSettings/paddingLeft (I)Lnet/minecraft/client/gui/layouts/LayoutSettings; +MD: net/minecraft/client/gui/layouts/LayoutSettings/m_264414_ (II)Lnet/minecraft/client/gui/layouts/LayoutSettings; net/minecraft/client/gui/layouts/LayoutSettings/padding (II)Lnet/minecraft/client/gui/layouts/LayoutSettings; +MD: net/minecraft/client/gui/layouts/LayoutSettings/m_264426_ ()Lnet/minecraft/client/gui/layouts/LayoutSettings$LayoutSettingsImpl; net/minecraft/client/gui/layouts/LayoutSettings/getExposed ()Lnet/minecraft/client/gui/layouts/LayoutSettings$LayoutSettingsImpl; +MD: net/minecraft/client/gui/layouts/LayoutSettings/m_264443_ ()Lnet/minecraft/client/gui/layouts/LayoutSettings; net/minecraft/client/gui/layouts/LayoutSettings/alignHorizontallyRight ()Lnet/minecraft/client/gui/layouts/LayoutSettings; +MD: net/minecraft/client/gui/layouts/LayoutSettings/m_264463_ ()Lnet/minecraft/client/gui/layouts/LayoutSettings; net/minecraft/client/gui/layouts/LayoutSettings/alignHorizontallyLeft ()Lnet/minecraft/client/gui/layouts/LayoutSettings; +MD: net/minecraft/client/gui/layouts/LayoutSettings/m_264498_ (F)Lnet/minecraft/client/gui/layouts/LayoutSettings; net/minecraft/client/gui/layouts/LayoutSettings/alignHorizontally (F)Lnet/minecraft/client/gui/layouts/LayoutSettings; +MD: net/minecraft/client/gui/layouts/LayoutSettings/m_264510_ (FF)Lnet/minecraft/client/gui/layouts/LayoutSettings; net/minecraft/client/gui/layouts/LayoutSettings/align (FF)Lnet/minecraft/client/gui/layouts/LayoutSettings; +MD: net/minecraft/client/gui/layouts/LayoutSettings/m_264524_ ()Lnet/minecraft/client/gui/layouts/LayoutSettings; net/minecraft/client/gui/layouts/LayoutSettings/alignVerticallyBottom ()Lnet/minecraft/client/gui/layouts/LayoutSettings; +MD: net/minecraft/client/gui/layouts/LayoutSettings/m_264623_ ()Lnet/minecraft/client/gui/layouts/LayoutSettings; net/minecraft/client/gui/layouts/LayoutSettings/alignVerticallyMiddle ()Lnet/minecraft/client/gui/layouts/LayoutSettings; +MD: net/minecraft/client/gui/layouts/LayoutSettings$LayoutSettingsImpl/ (Lnet/minecraft/client/gui/layouts/LayoutSettings$LayoutSettingsImpl;)V net/minecraft/client/gui/layouts/LayoutSettings$LayoutSettingsImpl/ (Lnet/minecraft/client/gui/layouts/LayoutSettings$LayoutSettingsImpl;)V +MD: net/minecraft/client/gui/layouts/LayoutSettings$LayoutSettingsImpl/ ()V net/minecraft/client/gui/layouts/LayoutSettings$LayoutSettingsImpl/ ()V +MD: net/minecraft/client/gui/layouts/LayoutSettings$LayoutSettingsImpl/m_264040_ ()Lnet/minecraft/client/gui/layouts/LayoutSettings$LayoutSettingsImpl; net/minecraft/client/gui/layouts/LayoutSettings$LayoutSettingsImpl/copy ()Lnet/minecraft/client/gui/layouts/LayoutSettings$LayoutSettingsImpl; +MD: net/minecraft/client/gui/layouts/LayoutSettings$LayoutSettingsImpl/m_264040_ ()Lnet/minecraft/client/gui/layouts/LayoutSettings; net/minecraft/client/gui/layouts/LayoutSettings$LayoutSettingsImpl/copy ()Lnet/minecraft/client/gui/layouts/LayoutSettings; +MD: net/minecraft/client/gui/layouts/LayoutSettings$LayoutSettingsImpl/m_264129_ (IIII)Lnet/minecraft/client/gui/layouts/LayoutSettings; net/minecraft/client/gui/layouts/LayoutSettings$LayoutSettingsImpl/padding (IIII)Lnet/minecraft/client/gui/layouts/LayoutSettings; +MD: net/minecraft/client/gui/layouts/LayoutSettings$LayoutSettingsImpl/m_264129_ (IIII)Lnet/minecraft/client/gui/layouts/LayoutSettings$LayoutSettingsImpl; net/minecraft/client/gui/layouts/LayoutSettings$LayoutSettingsImpl/padding (IIII)Lnet/minecraft/client/gui/layouts/LayoutSettings$LayoutSettingsImpl; +MD: net/minecraft/client/gui/layouts/LayoutSettings$LayoutSettingsImpl/m_264154_ (I)Lnet/minecraft/client/gui/layouts/LayoutSettings$LayoutSettingsImpl; net/minecraft/client/gui/layouts/LayoutSettings$LayoutSettingsImpl/paddingBottom (I)Lnet/minecraft/client/gui/layouts/LayoutSettings$LayoutSettingsImpl; +MD: net/minecraft/client/gui/layouts/LayoutSettings$LayoutSettingsImpl/m_264154_ (I)Lnet/minecraft/client/gui/layouts/LayoutSettings; net/minecraft/client/gui/layouts/LayoutSettings$LayoutSettingsImpl/paddingBottom (I)Lnet/minecraft/client/gui/layouts/LayoutSettings; +MD: net/minecraft/client/gui/layouts/LayoutSettings$LayoutSettingsImpl/m_264174_ (I)Lnet/minecraft/client/gui/layouts/LayoutSettings; net/minecraft/client/gui/layouts/LayoutSettings$LayoutSettingsImpl/padding (I)Lnet/minecraft/client/gui/layouts/LayoutSettings; +MD: net/minecraft/client/gui/layouts/LayoutSettings$LayoutSettingsImpl/m_264174_ (I)Lnet/minecraft/client/gui/layouts/LayoutSettings$LayoutSettingsImpl; net/minecraft/client/gui/layouts/LayoutSettings$LayoutSettingsImpl/padding (I)Lnet/minecraft/client/gui/layouts/LayoutSettings$LayoutSettingsImpl; +MD: net/minecraft/client/gui/layouts/LayoutSettings$LayoutSettingsImpl/m_264184_ (I)Lnet/minecraft/client/gui/layouts/LayoutSettings$LayoutSettingsImpl; net/minecraft/client/gui/layouts/LayoutSettings$LayoutSettingsImpl/paddingVertical (I)Lnet/minecraft/client/gui/layouts/LayoutSettings$LayoutSettingsImpl; +MD: net/minecraft/client/gui/layouts/LayoutSettings$LayoutSettingsImpl/m_264184_ (I)Lnet/minecraft/client/gui/layouts/LayoutSettings; net/minecraft/client/gui/layouts/LayoutSettings$LayoutSettingsImpl/paddingVertical (I)Lnet/minecraft/client/gui/layouts/LayoutSettings; +MD: net/minecraft/client/gui/layouts/LayoutSettings$LayoutSettingsImpl/m_264215_ (I)Lnet/minecraft/client/gui/layouts/LayoutSettings; net/minecraft/client/gui/layouts/LayoutSettings$LayoutSettingsImpl/paddingHorizontal (I)Lnet/minecraft/client/gui/layouts/LayoutSettings; +MD: net/minecraft/client/gui/layouts/LayoutSettings$LayoutSettingsImpl/m_264215_ (I)Lnet/minecraft/client/gui/layouts/LayoutSettings$LayoutSettingsImpl; net/minecraft/client/gui/layouts/LayoutSettings$LayoutSettingsImpl/paddingHorizontal (I)Lnet/minecraft/client/gui/layouts/LayoutSettings$LayoutSettingsImpl; +MD: net/minecraft/client/gui/layouts/LayoutSettings$LayoutSettingsImpl/m_264221_ (F)Lnet/minecraft/client/gui/layouts/LayoutSettings$LayoutSettingsImpl; net/minecraft/client/gui/layouts/LayoutSettings$LayoutSettingsImpl/alignVertically (F)Lnet/minecraft/client/gui/layouts/LayoutSettings$LayoutSettingsImpl; +MD: net/minecraft/client/gui/layouts/LayoutSettings$LayoutSettingsImpl/m_264221_ (F)Lnet/minecraft/client/gui/layouts/LayoutSettings; net/minecraft/client/gui/layouts/LayoutSettings$LayoutSettingsImpl/alignVertically (F)Lnet/minecraft/client/gui/layouts/LayoutSettings; +MD: net/minecraft/client/gui/layouts/LayoutSettings$LayoutSettingsImpl/m_264311_ (I)Lnet/minecraft/client/gui/layouts/LayoutSettings; net/minecraft/client/gui/layouts/LayoutSettings$LayoutSettingsImpl/paddingTop (I)Lnet/minecraft/client/gui/layouts/LayoutSettings; +MD: net/minecraft/client/gui/layouts/LayoutSettings$LayoutSettingsImpl/m_264311_ (I)Lnet/minecraft/client/gui/layouts/LayoutSettings$LayoutSettingsImpl; net/minecraft/client/gui/layouts/LayoutSettings$LayoutSettingsImpl/paddingTop (I)Lnet/minecraft/client/gui/layouts/LayoutSettings$LayoutSettingsImpl; +MD: net/minecraft/client/gui/layouts/LayoutSettings$LayoutSettingsImpl/m_264398_ (I)Lnet/minecraft/client/gui/layouts/LayoutSettings; net/minecraft/client/gui/layouts/LayoutSettings$LayoutSettingsImpl/paddingRight (I)Lnet/minecraft/client/gui/layouts/LayoutSettings; +MD: net/minecraft/client/gui/layouts/LayoutSettings$LayoutSettingsImpl/m_264398_ (I)Lnet/minecraft/client/gui/layouts/LayoutSettings$LayoutSettingsImpl; net/minecraft/client/gui/layouts/LayoutSettings$LayoutSettingsImpl/paddingRight (I)Lnet/minecraft/client/gui/layouts/LayoutSettings$LayoutSettingsImpl; +MD: net/minecraft/client/gui/layouts/LayoutSettings$LayoutSettingsImpl/m_264400_ (I)Lnet/minecraft/client/gui/layouts/LayoutSettings; net/minecraft/client/gui/layouts/LayoutSettings$LayoutSettingsImpl/paddingLeft (I)Lnet/minecraft/client/gui/layouts/LayoutSettings; +MD: net/minecraft/client/gui/layouts/LayoutSettings$LayoutSettingsImpl/m_264400_ (I)Lnet/minecraft/client/gui/layouts/LayoutSettings$LayoutSettingsImpl; net/minecraft/client/gui/layouts/LayoutSettings$LayoutSettingsImpl/paddingLeft (I)Lnet/minecraft/client/gui/layouts/LayoutSettings$LayoutSettingsImpl; +MD: net/minecraft/client/gui/layouts/LayoutSettings$LayoutSettingsImpl/m_264414_ (II)Lnet/minecraft/client/gui/layouts/LayoutSettings; net/minecraft/client/gui/layouts/LayoutSettings$LayoutSettingsImpl/padding (II)Lnet/minecraft/client/gui/layouts/LayoutSettings; +MD: net/minecraft/client/gui/layouts/LayoutSettings$LayoutSettingsImpl/m_264414_ (II)Lnet/minecraft/client/gui/layouts/LayoutSettings$LayoutSettingsImpl; net/minecraft/client/gui/layouts/LayoutSettings$LayoutSettingsImpl/padding (II)Lnet/minecraft/client/gui/layouts/LayoutSettings$LayoutSettingsImpl; +MD: net/minecraft/client/gui/layouts/LayoutSettings$LayoutSettingsImpl/m_264426_ ()Lnet/minecraft/client/gui/layouts/LayoutSettings$LayoutSettingsImpl; net/minecraft/client/gui/layouts/LayoutSettings$LayoutSettingsImpl/getExposed ()Lnet/minecraft/client/gui/layouts/LayoutSettings$LayoutSettingsImpl; +MD: net/minecraft/client/gui/layouts/LayoutSettings$LayoutSettingsImpl/m_264498_ (F)Lnet/minecraft/client/gui/layouts/LayoutSettings; net/minecraft/client/gui/layouts/LayoutSettings$LayoutSettingsImpl/alignHorizontally (F)Lnet/minecraft/client/gui/layouts/LayoutSettings; +MD: net/minecraft/client/gui/layouts/LayoutSettings$LayoutSettingsImpl/m_264498_ (F)Lnet/minecraft/client/gui/layouts/LayoutSettings$LayoutSettingsImpl; net/minecraft/client/gui/layouts/LayoutSettings$LayoutSettingsImpl/alignHorizontally (F)Lnet/minecraft/client/gui/layouts/LayoutSettings$LayoutSettingsImpl; +MD: net/minecraft/client/gui/layouts/LayoutSettings$LayoutSettingsImpl/m_264510_ (FF)Lnet/minecraft/client/gui/layouts/LayoutSettings$LayoutSettingsImpl; net/minecraft/client/gui/layouts/LayoutSettings$LayoutSettingsImpl/align (FF)Lnet/minecraft/client/gui/layouts/LayoutSettings$LayoutSettingsImpl; +MD: net/minecraft/client/gui/layouts/LayoutSettings$LayoutSettingsImpl/m_264510_ (FF)Lnet/minecraft/client/gui/layouts/LayoutSettings; net/minecraft/client/gui/layouts/LayoutSettings$LayoutSettingsImpl/align (FF)Lnet/minecraft/client/gui/layouts/LayoutSettings; +MD: net/minecraft/client/gui/layouts/LinearLayout/ (IILnet/minecraft/client/gui/layouts/LinearLayout$Orientation;)V net/minecraft/client/gui/layouts/LinearLayout/ (IILnet/minecraft/client/gui/layouts/LinearLayout$Orientation;)V +MD: net/minecraft/client/gui/layouts/LinearLayout/ (IIIILnet/minecraft/client/gui/layouts/LinearLayout$Orientation;)V net/minecraft/client/gui/layouts/LinearLayout/ (IIIILnet/minecraft/client/gui/layouts/LinearLayout$Orientation;)V +MD: net/minecraft/client/gui/layouts/LinearLayout/m_264036_ ()V net/minecraft/client/gui/layouts/LinearLayout/arrangeElements ()V +MD: net/minecraft/client/gui/layouts/LinearLayout/m_264090_ (Ljava/util/function/Consumer;)V net/minecraft/client/gui/layouts/LinearLayout/visitChildren (Ljava/util/function/Consumer;)V +MD: net/minecraft/client/gui/layouts/LinearLayout/m_264223_ (Ljava/util/function/Consumer;Lnet/minecraft/client/gui/layouts/LinearLayout$ChildContainer;)V net/minecraft/client/gui/layouts/LinearLayout/lambda$visitChildren$0 (Ljava/util/function/Consumer;Lnet/minecraft/client/gui/layouts/LinearLayout$ChildContainer;)V +MD: net/minecraft/client/gui/layouts/LinearLayout/m_264286_ ()Lnet/minecraft/client/gui/layouts/LayoutSettings; net/minecraft/client/gui/layouts/LinearLayout/defaultChildLayoutSetting ()Lnet/minecraft/client/gui/layouts/LayoutSettings; +MD: net/minecraft/client/gui/layouts/LinearLayout/m_264406_ (Lnet/minecraft/client/gui/layouts/LayoutElement;)Lnet/minecraft/client/gui/layouts/LayoutElement; net/minecraft/client/gui/layouts/LinearLayout/addChild (Lnet/minecraft/client/gui/layouts/LayoutElement;)Lnet/minecraft/client/gui/layouts/LayoutElement; +MD: net/minecraft/client/gui/layouts/LinearLayout/m_264453_ ()Lnet/minecraft/client/gui/layouts/LayoutSettings; net/minecraft/client/gui/layouts/LinearLayout/newChildLayoutSettings ()Lnet/minecraft/client/gui/layouts/LayoutSettings; +MD: net/minecraft/client/gui/layouts/LinearLayout/m_264512_ (Lnet/minecraft/client/gui/layouts/LayoutElement;Lnet/minecraft/client/gui/layouts/LayoutSettings;)Lnet/minecraft/client/gui/layouts/LayoutElement; net/minecraft/client/gui/layouts/LinearLayout/addChild (Lnet/minecraft/client/gui/layouts/LayoutElement;Lnet/minecraft/client/gui/layouts/LayoutSettings;)Lnet/minecraft/client/gui/layouts/LayoutElement; +MD: net/minecraft/client/gui/layouts/LinearLayout$1/ ()V net/minecraft/client/gui/layouts/LinearLayout$1/ ()V +MD: net/minecraft/client/gui/layouts/LinearLayout$ChildContainer/ (Lnet/minecraft/client/gui/layouts/LayoutElement;Lnet/minecraft/client/gui/layouts/LayoutSettings;)V net/minecraft/client/gui/layouts/LinearLayout$ChildContainer/ (Lnet/minecraft/client/gui/layouts/LayoutElement;Lnet/minecraft/client/gui/layouts/LayoutSettings;)V +MD: net/minecraft/client/gui/layouts/LinearLayout$Orientation/ ()V net/minecraft/client/gui/layouts/LinearLayout$Orientation/ ()V +MD: net/minecraft/client/gui/layouts/LinearLayout$Orientation/ (Ljava/lang/String;I)V net/minecraft/client/gui/layouts/LinearLayout$Orientation/ (Ljava/lang/String;I)V +MD: net/minecraft/client/gui/layouts/LinearLayout$Orientation/m_264056_ (Lnet/minecraft/client/gui/layouts/LayoutElement;)I net/minecraft/client/gui/layouts/LinearLayout$Orientation/getPrimaryLength (Lnet/minecraft/client/gui/layouts/LayoutElement;)I +MD: net/minecraft/client/gui/layouts/LinearLayout$Orientation/m_264117_ (Lnet/minecraft/client/gui/layouts/LayoutElement;)I net/minecraft/client/gui/layouts/LinearLayout$Orientation/getSecondaryPosition (Lnet/minecraft/client/gui/layouts/LayoutElement;)I +MD: net/minecraft/client/gui/layouts/LinearLayout$Orientation/m_264137_ (Lnet/minecraft/client/gui/layouts/LayoutElement;)I net/minecraft/client/gui/layouts/LinearLayout$Orientation/getSecondaryLength (Lnet/minecraft/client/gui/layouts/LayoutElement;)I +MD: net/minecraft/client/gui/layouts/LinearLayout$Orientation/m_264173_ (Lnet/minecraft/client/gui/layouts/LinearLayout$ChildContainer;)I net/minecraft/client/gui/layouts/LinearLayout$Orientation/getPrimaryLength (Lnet/minecraft/client/gui/layouts/LinearLayout$ChildContainer;)I +MD: net/minecraft/client/gui/layouts/LinearLayout$Orientation/m_264407_ (Lnet/minecraft/client/gui/layouts/LayoutElement;)I net/minecraft/client/gui/layouts/LinearLayout$Orientation/getPrimaryPosition (Lnet/minecraft/client/gui/layouts/LayoutElement;)I +MD: net/minecraft/client/gui/layouts/LinearLayout$Orientation/m_264503_ (Lnet/minecraft/client/gui/layouts/LinearLayout$ChildContainer;)I net/minecraft/client/gui/layouts/LinearLayout$Orientation/getSecondaryLength (Lnet/minecraft/client/gui/layouts/LinearLayout$ChildContainer;)I +MD: net/minecraft/client/gui/layouts/LinearLayout$Orientation/m_264587_ (Lnet/minecraft/client/gui/layouts/LinearLayout$ChildContainer;I)V net/minecraft/client/gui/layouts/LinearLayout$Orientation/setPrimaryPosition (Lnet/minecraft/client/gui/layouts/LinearLayout$ChildContainer;I)V +MD: net/minecraft/client/gui/layouts/LinearLayout$Orientation/m_264596_ ()[Lnet/minecraft/client/gui/layouts/LinearLayout$Orientation; net/minecraft/client/gui/layouts/LinearLayout$Orientation/$values ()[Lnet/minecraft/client/gui/layouts/LinearLayout$Orientation; +MD: net/minecraft/client/gui/layouts/LinearLayout$Orientation/m_264630_ (Lnet/minecraft/client/gui/layouts/LinearLayout$ChildContainer;II)V net/minecraft/client/gui/layouts/LinearLayout$Orientation/setSecondaryPosition (Lnet/minecraft/client/gui/layouts/LinearLayout$ChildContainer;II)V +MD: net/minecraft/client/gui/layouts/LinearLayout$Orientation/valueOf (Ljava/lang/String;)Lnet/minecraft/client/gui/layouts/LinearLayout$Orientation; net/minecraft/client/gui/layouts/LinearLayout$Orientation/valueOf (Ljava/lang/String;)Lnet/minecraft/client/gui/layouts/LinearLayout$Orientation; +MD: net/minecraft/client/gui/layouts/LinearLayout$Orientation/values ()[Lnet/minecraft/client/gui/layouts/LinearLayout$Orientation; net/minecraft/client/gui/layouts/LinearLayout$Orientation/values ()[Lnet/minecraft/client/gui/layouts/LinearLayout$Orientation; +MD: net/minecraft/client/gui/layouts/SpacerElement/ (IIII)V net/minecraft/client/gui/layouts/SpacerElement/ (IIII)V +MD: net/minecraft/client/gui/layouts/SpacerElement/ (II)V net/minecraft/client/gui/layouts/SpacerElement/ (II)V +MD: net/minecraft/client/gui/layouts/SpacerElement/m_252754_ ()I net/minecraft/client/gui/layouts/SpacerElement/getX ()I +MD: net/minecraft/client/gui/layouts/SpacerElement/m_252865_ (I)V net/minecraft/client/gui/layouts/SpacerElement/setX (I)V +MD: net/minecraft/client/gui/layouts/SpacerElement/m_252907_ ()I net/minecraft/client/gui/layouts/SpacerElement/getY ()I +MD: net/minecraft/client/gui/layouts/SpacerElement/m_253211_ (I)V net/minecraft/client/gui/layouts/SpacerElement/setY (I)V +MD: net/minecraft/client/gui/layouts/SpacerElement/m_264134_ (Ljava/util/function/Consumer;)V net/minecraft/client/gui/layouts/SpacerElement/visitWidgets (Ljava/util/function/Consumer;)V +MD: net/minecraft/client/gui/layouts/SpacerElement/m_264252_ (I)Lnet/minecraft/client/gui/layouts/SpacerElement; net/minecraft/client/gui/layouts/SpacerElement/height (I)Lnet/minecraft/client/gui/layouts/SpacerElement; +MD: net/minecraft/client/gui/layouts/SpacerElement/m_264527_ (I)Lnet/minecraft/client/gui/layouts/SpacerElement; net/minecraft/client/gui/layouts/SpacerElement/width (I)Lnet/minecraft/client/gui/layouts/SpacerElement; +MD: net/minecraft/client/gui/layouts/SpacerElement/m_5711_ ()I net/minecraft/client/gui/layouts/SpacerElement/getWidth ()I +MD: net/minecraft/client/gui/layouts/SpacerElement/m_93694_ ()I net/minecraft/client/gui/layouts/SpacerElement/getHeight ()I +MD: net/minecraft/client/gui/narration/NarratableEntry/m_142518_ ()Z net/minecraft/client/gui/narration/NarratableEntry/isActive ()Z +MD: net/minecraft/client/gui/narration/NarratableEntry/m_142684_ ()Lnet/minecraft/client/gui/narration/NarratableEntry$NarrationPriority; net/minecraft/client/gui/narration/NarratableEntry/narrationPriority ()Lnet/minecraft/client/gui/narration/NarratableEntry$NarrationPriority; +MD: net/minecraft/client/gui/narration/NarratableEntry$NarrationPriority/ ()V net/minecraft/client/gui/narration/NarratableEntry$NarrationPriority/ ()V +MD: net/minecraft/client/gui/narration/NarratableEntry$NarrationPriority/ (Ljava/lang/String;I)V net/minecraft/client/gui/narration/NarratableEntry$NarrationPriority/ (Ljava/lang/String;I)V +MD: net/minecraft/client/gui/narration/NarratableEntry$NarrationPriority/m_169123_ ()Z net/minecraft/client/gui/narration/NarratableEntry$NarrationPriority/isTerminal ()Z +MD: net/minecraft/client/gui/narration/NarratableEntry$NarrationPriority/m_169124_ ()[Lnet/minecraft/client/gui/narration/NarratableEntry$NarrationPriority; net/minecraft/client/gui/narration/NarratableEntry$NarrationPriority/$values ()[Lnet/minecraft/client/gui/narration/NarratableEntry$NarrationPriority; +MD: net/minecraft/client/gui/narration/NarratableEntry$NarrationPriority/valueOf (Ljava/lang/String;)Lnet/minecraft/client/gui/narration/NarratableEntry$NarrationPriority; net/minecraft/client/gui/narration/NarratableEntry$NarrationPriority/valueOf (Ljava/lang/String;)Lnet/minecraft/client/gui/narration/NarratableEntry$NarrationPriority; +MD: net/minecraft/client/gui/narration/NarratableEntry$NarrationPriority/values ()[Lnet/minecraft/client/gui/narration/NarratableEntry$NarrationPriority; net/minecraft/client/gui/narration/NarratableEntry$NarrationPriority/values ()[Lnet/minecraft/client/gui/narration/NarratableEntry$NarrationPriority; +MD: net/minecraft/client/gui/narration/NarratedElementType/ ()V net/minecraft/client/gui/narration/NarratedElementType/ ()V +MD: net/minecraft/client/gui/narration/NarratedElementType/ (Ljava/lang/String;I)V net/minecraft/client/gui/narration/NarratedElementType/ (Ljava/lang/String;I)V +MD: net/minecraft/client/gui/narration/NarratedElementType/m_169137_ ()[Lnet/minecraft/client/gui/narration/NarratedElementType; net/minecraft/client/gui/narration/NarratedElementType/$values ()[Lnet/minecraft/client/gui/narration/NarratedElementType; +MD: net/minecraft/client/gui/narration/NarratedElementType/valueOf (Ljava/lang/String;)Lnet/minecraft/client/gui/narration/NarratedElementType; net/minecraft/client/gui/narration/NarratedElementType/valueOf (Ljava/lang/String;)Lnet/minecraft/client/gui/narration/NarratedElementType; +MD: net/minecraft/client/gui/narration/NarratedElementType/values ()[Lnet/minecraft/client/gui/narration/NarratedElementType; net/minecraft/client/gui/narration/NarratedElementType/values ()[Lnet/minecraft/client/gui/narration/NarratedElementType; +MD: net/minecraft/client/gui/narration/NarrationElementOutput/m_142047_ ()Lnet/minecraft/client/gui/narration/NarrationElementOutput; net/minecraft/client/gui/narration/NarrationElementOutput/nest ()Lnet/minecraft/client/gui/narration/NarrationElementOutput; +MD: net/minecraft/client/gui/narration/NarrationElementOutput/m_142549_ (Lnet/minecraft/client/gui/narration/NarratedElementType;Lnet/minecraft/client/gui/narration/NarrationThunk;)V net/minecraft/client/gui/narration/NarrationElementOutput/add (Lnet/minecraft/client/gui/narration/NarratedElementType;Lnet/minecraft/client/gui/narration/NarrationThunk;)V +MD: net/minecraft/client/gui/narration/NarrationElementOutput/m_169143_ (Lnet/minecraft/client/gui/narration/NarratedElementType;Ljava/lang/String;)V net/minecraft/client/gui/narration/NarrationElementOutput/add (Lnet/minecraft/client/gui/narration/NarratedElementType;Ljava/lang/String;)V +MD: net/minecraft/client/gui/narration/NarrationElementOutput/m_169146_ (Lnet/minecraft/client/gui/narration/NarratedElementType;Lnet/minecraft/network/chat/Component;)V net/minecraft/client/gui/narration/NarrationElementOutput/add (Lnet/minecraft/client/gui/narration/NarratedElementType;Lnet/minecraft/network/chat/Component;)V +MD: net/minecraft/client/gui/narration/NarrationElementOutput/m_169149_ (Lnet/minecraft/client/gui/narration/NarratedElementType;[Lnet/minecraft/network/chat/Component;)V net/minecraft/client/gui/narration/NarrationElementOutput/add (Lnet/minecraft/client/gui/narration/NarratedElementType;[Lnet/minecraft/network/chat/Component;)V +MD: net/minecraft/client/gui/narration/NarrationSupplier/m_142291_ (Lnet/minecraft/client/gui/narration/NarrationElementOutput;)V net/minecraft/client/gui/narration/NarrationSupplier/updateNarration (Lnet/minecraft/client/gui/narration/NarrationElementOutput;)V +MD: net/minecraft/client/gui/narration/NarrationThunk/ ()V net/minecraft/client/gui/narration/NarrationThunk/ ()V +MD: net/minecraft/client/gui/narration/NarrationThunk/ (Ljava/lang/Object;Ljava/util/function/BiConsumer;)V net/minecraft/client/gui/narration/NarrationThunk/ (Ljava/lang/Object;Ljava/util/function/BiConsumer;)V +MD: net/minecraft/client/gui/narration/NarrationThunk/equals (Ljava/lang/Object;)Z net/minecraft/client/gui/narration/NarrationThunk/equals (Ljava/lang/Object;)Z +MD: net/minecraft/client/gui/narration/NarrationThunk/hashCode ()I net/minecraft/client/gui/narration/NarrationThunk/hashCode ()I +MD: net/minecraft/client/gui/narration/NarrationThunk/m_169160_ (Ljava/lang/String;)Lnet/minecraft/client/gui/narration/NarrationThunk; net/minecraft/client/gui/narration/NarrationThunk/from (Ljava/lang/String;)Lnet/minecraft/client/gui/narration/NarrationThunk; +MD: net/minecraft/client/gui/narration/NarrationThunk/m_169162_ (Ljava/util/List;)Lnet/minecraft/client/gui/narration/NarrationThunk; net/minecraft/client/gui/narration/NarrationThunk/from (Ljava/util/List;)Lnet/minecraft/client/gui/narration/NarrationThunk; +MD: net/minecraft/client/gui/narration/NarrationThunk/m_169164_ (Ljava/util/List;Ljava/util/function/Consumer;Ljava/util/List;)V net/minecraft/client/gui/narration/NarrationThunk/lambda$from$2 (Ljava/util/List;Ljava/util/function/Consumer;Ljava/util/List;)V +MD: net/minecraft/client/gui/narration/NarrationThunk/m_169168_ (Ljava/util/function/Consumer;)V net/minecraft/client/gui/narration/NarrationThunk/getText (Ljava/util/function/Consumer;)V +MD: net/minecraft/client/gui/narration/NarrationThunk/m_169170_ (Ljava/util/function/Consumer;Lnet/minecraft/util/Unit;)V net/minecraft/client/gui/narration/NarrationThunk/lambda$static$0 (Ljava/util/function/Consumer;Lnet/minecraft/util/Unit;)V +MD: net/minecraft/client/gui/narration/NarrationThunk/m_169173_ (Ljava/util/function/Consumer;Lnet/minecraft/network/chat/Component;)V net/minecraft/client/gui/narration/NarrationThunk/lambda$from$1 (Ljava/util/function/Consumer;Lnet/minecraft/network/chat/Component;)V +MD: net/minecraft/client/gui/narration/NarrationThunk/m_169176_ (Lnet/minecraft/network/chat/Component;)Lnet/minecraft/client/gui/narration/NarrationThunk; net/minecraft/client/gui/narration/NarrationThunk/from (Lnet/minecraft/network/chat/Component;)Lnet/minecraft/client/gui/narration/NarrationThunk; +MD: net/minecraft/client/gui/narration/ScreenNarrationCollector/ ()V net/minecraft/client/gui/narration/ScreenNarrationCollector/ ()V +MD: net/minecraft/client/gui/narration/ScreenNarrationCollector/m_169184_ (Lnet/minecraft/client/gui/narration/ScreenNarrationCollector$EntryKey;)Ljava/lang/Integer; net/minecraft/client/gui/narration/ScreenNarrationCollector/lambda$new$1 (Lnet/minecraft/client/gui/narration/ScreenNarrationCollector$EntryKey;)Ljava/lang/Integer; +MD: net/minecraft/client/gui/narration/ScreenNarrationCollector/m_169186_ (Ljava/util/function/Consumer;)V net/minecraft/client/gui/narration/ScreenNarrationCollector/update (Ljava/util/function/Consumer;)V +MD: net/minecraft/client/gui/narration/ScreenNarrationCollector/m_169188_ (Z)Ljava/lang/String; net/minecraft/client/gui/narration/ScreenNarrationCollector/collectNarrationText (Z)Ljava/lang/String; +MD: net/minecraft/client/gui/narration/ScreenNarrationCollector/m_169190_ (ZLjava/util/function/Consumer;Lnet/minecraft/client/gui/narration/ScreenNarrationCollector$EntryKey;Lnet/minecraft/client/gui/narration/ScreenNarrationCollector$NarrationEntry;)V net/minecraft/client/gui/narration/ScreenNarrationCollector/lambda$collectNarrationText$2 (ZLjava/util/function/Consumer;Lnet/minecraft/client/gui/narration/ScreenNarrationCollector$EntryKey;Lnet/minecraft/client/gui/narration/ScreenNarrationCollector$NarrationEntry;)V +MD: net/minecraft/client/gui/narration/ScreenNarrationCollector/m_169195_ (Lnet/minecraft/client/gui/narration/ScreenNarrationCollector$EntryKey;)Lnet/minecraft/client/gui/narration/NarratedElementType; net/minecraft/client/gui/narration/ScreenNarrationCollector/lambda$new$0 (Lnet/minecraft/client/gui/narration/ScreenNarrationCollector$EntryKey;)Lnet/minecraft/client/gui/narration/NarratedElementType; +MD: net/minecraft/client/gui/narration/ScreenNarrationCollector$1/ (Lnet/minecraft/client/gui/narration/ScreenNarrationCollector;Ljava/lang/StringBuilder;)V net/minecraft/client/gui/narration/ScreenNarrationCollector$1/ (Lnet/minecraft/client/gui/narration/ScreenNarrationCollector;Ljava/lang/StringBuilder;)V +MD: net/minecraft/client/gui/narration/ScreenNarrationCollector$1/accept (Ljava/lang/Object;)V net/minecraft/client/gui/narration/ScreenNarrationCollector$1/accept (Ljava/lang/Object;)V +MD: net/minecraft/client/gui/narration/ScreenNarrationCollector$1/accept (Ljava/lang/String;)V net/minecraft/client/gui/narration/ScreenNarrationCollector$1/accept (Ljava/lang/String;)V +MD: net/minecraft/client/gui/narration/ScreenNarrationCollector$EntryKey/ (Lnet/minecraft/client/gui/narration/NarratedElementType;I)V net/minecraft/client/gui/narration/ScreenNarrationCollector$EntryKey/ (Lnet/minecraft/client/gui/narration/NarratedElementType;I)V +MD: net/minecraft/client/gui/narration/ScreenNarrationCollector$NarrationEntry/ ()V net/minecraft/client/gui/narration/ScreenNarrationCollector$NarrationEntry/ ()V +MD: net/minecraft/client/gui/narration/ScreenNarrationCollector$NarrationEntry/m_169216_ (ILnet/minecraft/client/gui/narration/NarrationThunk;)Lnet/minecraft/client/gui/narration/ScreenNarrationCollector$NarrationEntry; net/minecraft/client/gui/narration/ScreenNarrationCollector$NarrationEntry/update (ILnet/minecraft/client/gui/narration/NarrationThunk;)Lnet/minecraft/client/gui/narration/ScreenNarrationCollector$NarrationEntry; +MD: net/minecraft/client/gui/narration/ScreenNarrationCollector$Output/ (Lnet/minecraft/client/gui/narration/ScreenNarrationCollector;I)V net/minecraft/client/gui/narration/ScreenNarrationCollector$Output/ (Lnet/minecraft/client/gui/narration/ScreenNarrationCollector;I)V +MD: net/minecraft/client/gui/narration/ScreenNarrationCollector$Output/m_142047_ ()Lnet/minecraft/client/gui/narration/NarrationElementOutput; net/minecraft/client/gui/narration/ScreenNarrationCollector$Output/nest ()Lnet/minecraft/client/gui/narration/NarrationElementOutput; +MD: net/minecraft/client/gui/narration/ScreenNarrationCollector$Output/m_142549_ (Lnet/minecraft/client/gui/narration/NarratedElementType;Lnet/minecraft/client/gui/narration/NarrationThunk;)V net/minecraft/client/gui/narration/ScreenNarrationCollector$Output/add (Lnet/minecraft/client/gui/narration/NarratedElementType;Lnet/minecraft/client/gui/narration/NarrationThunk;)V +MD: net/minecraft/client/gui/narration/ScreenNarrationCollector$Output/m_169228_ (Lnet/minecraft/client/gui/narration/ScreenNarrationCollector$EntryKey;)Lnet/minecraft/client/gui/narration/ScreenNarrationCollector$NarrationEntry; net/minecraft/client/gui/narration/ScreenNarrationCollector$Output/lambda$add$0 (Lnet/minecraft/client/gui/narration/ScreenNarrationCollector$EntryKey;)Lnet/minecraft/client/gui/narration/ScreenNarrationCollector$NarrationEntry; +MD: net/minecraft/client/gui/navigation/CommonInputs/ ()V net/minecraft/client/gui/navigation/CommonInputs/ ()V +MD: net/minecraft/client/gui/navigation/CommonInputs/m_278691_ (I)Z net/minecraft/client/gui/navigation/CommonInputs/selected (I)Z +MD: net/minecraft/client/gui/navigation/FocusNavigationEvent/m_264101_ ()Lnet/minecraft/client/gui/navigation/ScreenDirection; net/minecraft/client/gui/navigation/FocusNavigationEvent/getVerticalDirectionForInitialFocus ()Lnet/minecraft/client/gui/navigation/ScreenDirection; +MD: net/minecraft/client/gui/navigation/FocusNavigationEvent$ArrowNavigation/ (Lnet/minecraft/client/gui/navigation/ScreenDirection;)V net/minecraft/client/gui/navigation/FocusNavigationEvent$ArrowNavigation/ (Lnet/minecraft/client/gui/navigation/ScreenDirection;)V +MD: net/minecraft/client/gui/navigation/FocusNavigationEvent$ArrowNavigation/equals (Ljava/lang/Object;)Z net/minecraft/client/gui/navigation/FocusNavigationEvent$ArrowNavigation/equals (Ljava/lang/Object;)Z +MD: net/minecraft/client/gui/navigation/FocusNavigationEvent$ArrowNavigation/f_263812_ ()Lnet/minecraft/client/gui/navigation/ScreenDirection; net/minecraft/client/gui/navigation/FocusNavigationEvent$ArrowNavigation/direction ()Lnet/minecraft/client/gui/navigation/ScreenDirection; +MD: net/minecraft/client/gui/navigation/FocusNavigationEvent$ArrowNavigation/hashCode ()I net/minecraft/client/gui/navigation/FocusNavigationEvent$ArrowNavigation/hashCode ()I +MD: net/minecraft/client/gui/navigation/FocusNavigationEvent$ArrowNavigation/m_264101_ ()Lnet/minecraft/client/gui/navigation/ScreenDirection; net/minecraft/client/gui/navigation/FocusNavigationEvent$ArrowNavigation/getVerticalDirectionForInitialFocus ()Lnet/minecraft/client/gui/navigation/ScreenDirection; +MD: net/minecraft/client/gui/navigation/FocusNavigationEvent$ArrowNavigation/toString ()Ljava/lang/String; net/minecraft/client/gui/navigation/FocusNavigationEvent$ArrowNavigation/toString ()Ljava/lang/String; +MD: net/minecraft/client/gui/navigation/FocusNavigationEvent$InitialFocus/ ()V net/minecraft/client/gui/navigation/FocusNavigationEvent$InitialFocus/ ()V +MD: net/minecraft/client/gui/navigation/FocusNavigationEvent$InitialFocus/m_264101_ ()Lnet/minecraft/client/gui/navigation/ScreenDirection; net/minecraft/client/gui/navigation/FocusNavigationEvent$InitialFocus/getVerticalDirectionForInitialFocus ()Lnet/minecraft/client/gui/navigation/ScreenDirection; +MD: net/minecraft/client/gui/navigation/FocusNavigationEvent$TabNavigation/ (Z)V net/minecraft/client/gui/navigation/FocusNavigationEvent$TabNavigation/ (Z)V +MD: net/minecraft/client/gui/navigation/FocusNavigationEvent$TabNavigation/equals (Ljava/lang/Object;)Z net/minecraft/client/gui/navigation/FocusNavigationEvent$TabNavigation/equals (Ljava/lang/Object;)Z +MD: net/minecraft/client/gui/navigation/FocusNavigationEvent$TabNavigation/f_263782_ ()Z net/minecraft/client/gui/navigation/FocusNavigationEvent$TabNavigation/forward ()Z +MD: net/minecraft/client/gui/navigation/FocusNavigationEvent$TabNavigation/hashCode ()I net/minecraft/client/gui/navigation/FocusNavigationEvent$TabNavigation/hashCode ()I +MD: net/minecraft/client/gui/navigation/FocusNavigationEvent$TabNavigation/m_264101_ ()Lnet/minecraft/client/gui/navigation/ScreenDirection; net/minecraft/client/gui/navigation/FocusNavigationEvent$TabNavigation/getVerticalDirectionForInitialFocus ()Lnet/minecraft/client/gui/navigation/ScreenDirection; +MD: net/minecraft/client/gui/navigation/FocusNavigationEvent$TabNavigation/toString ()Ljava/lang/String; net/minecraft/client/gui/navigation/FocusNavigationEvent$TabNavigation/toString ()Ljava/lang/String; +MD: net/minecraft/client/gui/navigation/ScreenAxis/ ()V net/minecraft/client/gui/navigation/ScreenAxis/ ()V +MD: net/minecraft/client/gui/navigation/ScreenAxis/ (Ljava/lang/String;I)V net/minecraft/client/gui/navigation/ScreenAxis/ (Ljava/lang/String;I)V +MD: net/minecraft/client/gui/navigation/ScreenAxis/m_264217_ (Z)Lnet/minecraft/client/gui/navigation/ScreenDirection; net/minecraft/client/gui/navigation/ScreenAxis/getDirection (Z)Lnet/minecraft/client/gui/navigation/ScreenDirection; +MD: net/minecraft/client/gui/navigation/ScreenAxis/m_264292_ ()Lnet/minecraft/client/gui/navigation/ScreenDirection; net/minecraft/client/gui/navigation/ScreenAxis/getPositive ()Lnet/minecraft/client/gui/navigation/ScreenDirection; +MD: net/minecraft/client/gui/navigation/ScreenAxis/m_264385_ ()Lnet/minecraft/client/gui/navigation/ScreenAxis; net/minecraft/client/gui/navigation/ScreenAxis/orthogonal ()Lnet/minecraft/client/gui/navigation/ScreenAxis; +MD: net/minecraft/client/gui/navigation/ScreenAxis/m_264488_ ()[Lnet/minecraft/client/gui/navigation/ScreenAxis; net/minecraft/client/gui/navigation/ScreenAxis/$values ()[Lnet/minecraft/client/gui/navigation/ScreenAxis; +MD: net/minecraft/client/gui/navigation/ScreenAxis/m_264569_ ()Lnet/minecraft/client/gui/navigation/ScreenDirection; net/minecraft/client/gui/navigation/ScreenAxis/getNegative ()Lnet/minecraft/client/gui/navigation/ScreenDirection; +MD: net/minecraft/client/gui/navigation/ScreenAxis/valueOf (Ljava/lang/String;)Lnet/minecraft/client/gui/navigation/ScreenAxis; net/minecraft/client/gui/navigation/ScreenAxis/valueOf (Ljava/lang/String;)Lnet/minecraft/client/gui/navigation/ScreenAxis; +MD: net/minecraft/client/gui/navigation/ScreenAxis/values ()[Lnet/minecraft/client/gui/navigation/ScreenAxis; net/minecraft/client/gui/navigation/ScreenAxis/values ()[Lnet/minecraft/client/gui/navigation/ScreenAxis; +MD: net/minecraft/client/gui/navigation/ScreenAxis$1/ ()V net/minecraft/client/gui/navigation/ScreenAxis$1/ ()V +MD: net/minecraft/client/gui/navigation/ScreenDirection/ ()V net/minecraft/client/gui/navigation/ScreenDirection/ ()V +MD: net/minecraft/client/gui/navigation/ScreenDirection/ (Ljava/lang/String;I)V net/minecraft/client/gui/navigation/ScreenDirection/ (Ljava/lang/String;I)V +MD: net/minecraft/client/gui/navigation/ScreenDirection/m_264089_ ()Lnet/minecraft/client/gui/navigation/ScreenDirection; net/minecraft/client/gui/navigation/ScreenDirection/getOpposite ()Lnet/minecraft/client/gui/navigation/ScreenDirection; +MD: net/minecraft/client/gui/navigation/ScreenDirection/m_264093_ ()Lnet/minecraft/client/gui/navigation/ScreenAxis; net/minecraft/client/gui/navigation/ScreenDirection/getAxis ()Lnet/minecraft/client/gui/navigation/ScreenAxis; +MD: net/minecraft/client/gui/navigation/ScreenDirection/m_264119_ ()Z net/minecraft/client/gui/navigation/ScreenDirection/isPositive ()Z +MD: net/minecraft/client/gui/navigation/ScreenDirection/m_264227_ ()[Lnet/minecraft/client/gui/navigation/ScreenDirection; net/minecraft/client/gui/navigation/ScreenDirection/$values ()[Lnet/minecraft/client/gui/navigation/ScreenDirection; +MD: net/minecraft/client/gui/navigation/ScreenDirection/m_264228_ (II)I net/minecraft/client/gui/navigation/ScreenDirection/lambda$new$0 (II)I +MD: net/minecraft/client/gui/navigation/ScreenDirection/m_264394_ ()Lit/unimi/dsi/fastutil/ints/IntComparator; net/minecraft/client/gui/navigation/ScreenDirection/coordinateValueComparator ()Lit/unimi/dsi/fastutil/ints/IntComparator; +MD: net/minecraft/client/gui/navigation/ScreenDirection/m_264526_ (II)Z net/minecraft/client/gui/navigation/ScreenDirection/isAfter (II)Z +MD: net/minecraft/client/gui/navigation/ScreenDirection/m_264627_ (II)Z net/minecraft/client/gui/navigation/ScreenDirection/isBefore (II)Z +MD: net/minecraft/client/gui/navigation/ScreenDirection/valueOf (Ljava/lang/String;)Lnet/minecraft/client/gui/navigation/ScreenDirection; net/minecraft/client/gui/navigation/ScreenDirection/valueOf (Ljava/lang/String;)Lnet/minecraft/client/gui/navigation/ScreenDirection; +MD: net/minecraft/client/gui/navigation/ScreenDirection/values ()[Lnet/minecraft/client/gui/navigation/ScreenDirection; net/minecraft/client/gui/navigation/ScreenDirection/values ()[Lnet/minecraft/client/gui/navigation/ScreenDirection; +MD: net/minecraft/client/gui/navigation/ScreenDirection$1/ ()V net/minecraft/client/gui/navigation/ScreenDirection$1/ ()V +MD: net/minecraft/client/gui/navigation/ScreenPosition/ (II)V net/minecraft/client/gui/navigation/ScreenPosition/ (II)V +MD: net/minecraft/client/gui/navigation/ScreenPosition/equals (Ljava/lang/Object;)Z net/minecraft/client/gui/navigation/ScreenPosition/equals (Ljava/lang/Object;)Z +MD: net/minecraft/client/gui/navigation/ScreenPosition/f_263694_ ()I net/minecraft/client/gui/navigation/ScreenPosition/y ()I +MD: net/minecraft/client/gui/navigation/ScreenPosition/f_263719_ ()I net/minecraft/client/gui/navigation/ScreenPosition/x ()I +MD: net/minecraft/client/gui/navigation/ScreenPosition/hashCode ()I net/minecraft/client/gui/navigation/ScreenPosition/hashCode ()I +MD: net/minecraft/client/gui/navigation/ScreenPosition/m_264196_ (Lnet/minecraft/client/gui/navigation/ScreenAxis;)I net/minecraft/client/gui/navigation/ScreenPosition/getCoordinate (Lnet/minecraft/client/gui/navigation/ScreenAxis;)I +MD: net/minecraft/client/gui/navigation/ScreenPosition/m_264208_ (Lnet/minecraft/client/gui/navigation/ScreenAxis;II)Lnet/minecraft/client/gui/navigation/ScreenPosition; net/minecraft/client/gui/navigation/ScreenPosition/of (Lnet/minecraft/client/gui/navigation/ScreenAxis;II)Lnet/minecraft/client/gui/navigation/ScreenPosition; +MD: net/minecraft/client/gui/navigation/ScreenPosition/m_264438_ (Lnet/minecraft/client/gui/navigation/ScreenDirection;)Lnet/minecraft/client/gui/navigation/ScreenPosition; net/minecraft/client/gui/navigation/ScreenPosition/step (Lnet/minecraft/client/gui/navigation/ScreenDirection;)Lnet/minecraft/client/gui/navigation/ScreenPosition; +MD: net/minecraft/client/gui/navigation/ScreenPosition/toString ()Ljava/lang/String; net/minecraft/client/gui/navigation/ScreenPosition/toString ()Ljava/lang/String; +MD: net/minecraft/client/gui/navigation/ScreenPosition$1/ ()V net/minecraft/client/gui/navigation/ScreenPosition$1/ ()V +MD: net/minecraft/client/gui/navigation/ScreenRectangle/ ()V net/minecraft/client/gui/navigation/ScreenRectangle/ ()V +MD: net/minecraft/client/gui/navigation/ScreenRectangle/ (Lnet/minecraft/client/gui/navigation/ScreenPosition;II)V net/minecraft/client/gui/navigation/ScreenRectangle/ (Lnet/minecraft/client/gui/navigation/ScreenPosition;II)V +MD: net/minecraft/client/gui/navigation/ScreenRectangle/ (IIII)V net/minecraft/client/gui/navigation/ScreenRectangle/ (IIII)V +MD: net/minecraft/client/gui/navigation/ScreenRectangle/equals (Ljava/lang/Object;)Z net/minecraft/client/gui/navigation/ScreenRectangle/equals (Ljava/lang/Object;)Z +MD: net/minecraft/client/gui/navigation/ScreenRectangle/f_263770_ ()I net/minecraft/client/gui/navigation/ScreenRectangle/width ()I +MD: net/minecraft/client/gui/navigation/ScreenRectangle/f_263800_ ()I net/minecraft/client/gui/navigation/ScreenRectangle/height ()I +MD: net/minecraft/client/gui/navigation/ScreenRectangle/f_263846_ ()Lnet/minecraft/client/gui/navigation/ScreenPosition; net/minecraft/client/gui/navigation/ScreenRectangle/position ()Lnet/minecraft/client/gui/navigation/ScreenPosition; +MD: net/minecraft/client/gui/navigation/ScreenRectangle/hashCode ()I net/minecraft/client/gui/navigation/ScreenRectangle/hashCode ()I +MD: net/minecraft/client/gui/navigation/ScreenRectangle/m_264037_ (Lnet/minecraft/client/gui/navigation/ScreenAxis;)I net/minecraft/client/gui/navigation/ScreenRectangle/getCenterInAxis (Lnet/minecraft/client/gui/navigation/ScreenAxis;)I +MD: net/minecraft/client/gui/navigation/ScreenRectangle/m_264049_ (Lnet/minecraft/client/gui/navigation/ScreenDirection;)Lnet/minecraft/client/gui/navigation/ScreenRectangle; net/minecraft/client/gui/navigation/ScreenRectangle/step (Lnet/minecraft/client/gui/navigation/ScreenDirection;)Lnet/minecraft/client/gui/navigation/ScreenRectangle; +MD: net/minecraft/client/gui/navigation/ScreenRectangle/m_264095_ (Lnet/minecraft/client/gui/navigation/ScreenDirection;)I net/minecraft/client/gui/navigation/ScreenRectangle/getBoundInDirection (Lnet/minecraft/client/gui/navigation/ScreenDirection;)I +MD: net/minecraft/client/gui/navigation/ScreenRectangle/m_264109_ (Lnet/minecraft/client/gui/navigation/ScreenAxis;IIII)Lnet/minecraft/client/gui/navigation/ScreenRectangle; net/minecraft/client/gui/navigation/ScreenRectangle/of (Lnet/minecraft/client/gui/navigation/ScreenAxis;IIII)Lnet/minecraft/client/gui/navigation/ScreenRectangle; +MD: net/minecraft/client/gui/navigation/ScreenRectangle/m_264295_ (Lnet/minecraft/client/gui/navigation/ScreenRectangle;)Z net/minecraft/client/gui/navigation/ScreenRectangle/overlaps (Lnet/minecraft/client/gui/navigation/ScreenRectangle;)Z +MD: net/minecraft/client/gui/navigation/ScreenRectangle/m_264323_ (Lnet/minecraft/client/gui/navigation/ScreenAxis;)I net/minecraft/client/gui/navigation/ScreenRectangle/getLength (Lnet/minecraft/client/gui/navigation/ScreenAxis;)I +MD: net/minecraft/client/gui/navigation/ScreenRectangle/m_264427_ ()Lnet/minecraft/client/gui/navigation/ScreenRectangle; net/minecraft/client/gui/navigation/ScreenRectangle/empty ()Lnet/minecraft/client/gui/navigation/ScreenRectangle; +MD: net/minecraft/client/gui/navigation/ScreenRectangle/m_264525_ (Lnet/minecraft/client/gui/navigation/ScreenDirection;)Lnet/minecraft/client/gui/navigation/ScreenRectangle; net/minecraft/client/gui/navigation/ScreenRectangle/getBorder (Lnet/minecraft/client/gui/navigation/ScreenDirection;)Lnet/minecraft/client/gui/navigation/ScreenRectangle; +MD: net/minecraft/client/gui/navigation/ScreenRectangle/m_264632_ (Lnet/minecraft/client/gui/navigation/ScreenRectangle;Lnet/minecraft/client/gui/navigation/ScreenAxis;)Z net/minecraft/client/gui/navigation/ScreenRectangle/overlapsInAxis (Lnet/minecraft/client/gui/navigation/ScreenRectangle;Lnet/minecraft/client/gui/navigation/ScreenAxis;)Z +MD: net/minecraft/client/gui/navigation/ScreenRectangle/m_274349_ ()I net/minecraft/client/gui/navigation/ScreenRectangle/bottom ()I +MD: net/minecraft/client/gui/navigation/ScreenRectangle/m_274445_ ()I net/minecraft/client/gui/navigation/ScreenRectangle/right ()I +MD: net/minecraft/client/gui/navigation/ScreenRectangle/m_274449_ ()I net/minecraft/client/gui/navigation/ScreenRectangle/top ()I +MD: net/minecraft/client/gui/navigation/ScreenRectangle/m_274563_ ()I net/minecraft/client/gui/navigation/ScreenRectangle/left ()I +MD: net/minecraft/client/gui/navigation/ScreenRectangle/m_275842_ (Lnet/minecraft/client/gui/navigation/ScreenRectangle;)Lnet/minecraft/client/gui/navigation/ScreenRectangle; net/minecraft/client/gui/navigation/ScreenRectangle/intersection (Lnet/minecraft/client/gui/navigation/ScreenRectangle;)Lnet/minecraft/client/gui/navigation/ScreenRectangle; +MD: net/minecraft/client/gui/navigation/ScreenRectangle/toString ()Ljava/lang/String; net/minecraft/client/gui/navigation/ScreenRectangle/toString ()Ljava/lang/String; +MD: net/minecraft/client/gui/navigation/ScreenRectangle$1/ ()V net/minecraft/client/gui/navigation/ScreenRectangle$1/ ()V +MD: net/minecraft/client/gui/screens/AccessibilityOnboardingScreen/ ()V net/minecraft/client/gui/screens/AccessibilityOnboardingScreen/ ()V +MD: net/minecraft/client/gui/screens/AccessibilityOnboardingScreen/ (Lnet/minecraft/client/Options;)V net/minecraft/client/gui/screens/AccessibilityOnboardingScreen/ (Lnet/minecraft/client/Options;)V +MD: net/minecraft/client/gui/screens/AccessibilityOnboardingScreen/m_264189_ ()I net/minecraft/client/gui/screens/AccessibilityOnboardingScreen/initTitleYPos ()I +MD: net/minecraft/client/gui/screens/AccessibilityOnboardingScreen/m_264570_ ()V net/minecraft/client/gui/screens/AccessibilityOnboardingScreen/handleInitialNarrationDelay ()V +MD: net/minecraft/client/gui/screens/AccessibilityOnboardingScreen/m_267504_ (Lnet/minecraft/client/gui/components/Button;)V net/minecraft/client/gui/screens/AccessibilityOnboardingScreen/lambda$init$2 (Lnet/minecraft/client/gui/components/Button;)V +MD: net/minecraft/client/gui/screens/AccessibilityOnboardingScreen/m_272081_ (Lnet/minecraft/client/gui/screens/Screen;)V net/minecraft/client/gui/screens/AccessibilityOnboardingScreen/closeAndSetScreen (Lnet/minecraft/client/gui/screens/Screen;)V +MD: net/minecraft/client/gui/screens/AccessibilityOnboardingScreen/m_279746_ (Lnet/minecraft/client/gui/components/Button;)V net/minecraft/client/gui/screens/AccessibilityOnboardingScreen/lambda$init$1 (Lnet/minecraft/client/gui/components/Button;)V +MD: net/minecraft/client/gui/screens/AccessibilityOnboardingScreen/m_279747_ (Lnet/minecraft/client/gui/components/Button;)V net/minecraft/client/gui/screens/AccessibilityOnboardingScreen/lambda$init$0 (Lnet/minecraft/client/gui/components/Button;)V +MD: net/minecraft/client/gui/screens/AccessibilityOnboardingScreen/m_7379_ ()V net/minecraft/client/gui/screens/AccessibilityOnboardingScreen/onClose ()V +MD: net/minecraft/client/gui/screens/AccessibilityOnboardingScreen/m_7856_ ()V net/minecraft/client/gui/screens/AccessibilityOnboardingScreen/init ()V +MD: net/minecraft/client/gui/screens/AccessibilityOnboardingScreen/m_88315_ (Lnet/minecraft/client/gui/GuiGraphics;IIF)V net/minecraft/client/gui/screens/AccessibilityOnboardingScreen/render (Lnet/minecraft/client/gui/GuiGraphics;IIF)V +MD: net/minecraft/client/gui/screens/AccessibilityOptionsScreen/ (Lnet/minecraft/client/gui/screens/Screen;Lnet/minecraft/client/Options;)V net/minecraft/client/gui/screens/AccessibilityOptionsScreen/ (Lnet/minecraft/client/gui/screens/Screen;Lnet/minecraft/client/Options;)V +MD: net/minecraft/client/gui/screens/AccessibilityOptionsScreen/m_232690_ (Lnet/minecraft/client/Options;)[Lnet/minecraft/client/OptionInstance; net/minecraft/client/gui/screens/AccessibilityOptionsScreen/options (Lnet/minecraft/client/Options;)[Lnet/minecraft/client/OptionInstance; +MD: net/minecraft/client/gui/screens/AccessibilityOptionsScreen/m_279748_ (Z)V net/minecraft/client/gui/screens/AccessibilityOptionsScreen/lambda$createFooter$0 (Z)V +MD: net/minecraft/client/gui/screens/AccessibilityOptionsScreen/m_279749_ (Lnet/minecraft/client/gui/components/Button;)V net/minecraft/client/gui/screens/AccessibilityOptionsScreen/lambda$createFooter$1 (Lnet/minecraft/client/gui/components/Button;)V +MD: net/minecraft/client/gui/screens/AccessibilityOptionsScreen/m_279750_ (Lnet/minecraft/client/gui/components/Button;)V net/minecraft/client/gui/screens/AccessibilityOptionsScreen/lambda$createFooter$2 (Lnet/minecraft/client/gui/components/Button;)V +MD: net/minecraft/client/gui/screens/AccessibilityOptionsScreen/m_7853_ ()V net/minecraft/client/gui/screens/AccessibilityOptionsScreen/createFooter ()V +MD: net/minecraft/client/gui/screens/AccessibilityOptionsScreen/m_7856_ ()V net/minecraft/client/gui/screens/AccessibilityOptionsScreen/init ()V +MD: net/minecraft/client/gui/screens/AlertScreen/ (Ljava/lang/Runnable;Lnet/minecraft/network/chat/Component;Lnet/minecraft/network/chat/Component;Lnet/minecraft/network/chat/Component;Z)V net/minecraft/client/gui/screens/AlertScreen/ (Ljava/lang/Runnable;Lnet/minecraft/network/chat/Component;Lnet/minecraft/network/chat/Component;Lnet/minecraft/network/chat/Component;Z)V +MD: net/minecraft/client/gui/screens/AlertScreen/ (Ljava/lang/Runnable;Lnet/minecraft/network/chat/Component;Lnet/minecraft/network/chat/Component;)V net/minecraft/client/gui/screens/AlertScreen/ (Ljava/lang/Runnable;Lnet/minecraft/network/chat/Component;Lnet/minecraft/network/chat/Component;)V +MD: net/minecraft/client/gui/screens/AlertScreen/m_142562_ ()Lnet/minecraft/network/chat/Component; net/minecraft/client/gui/screens/AlertScreen/getNarrationMessage ()Lnet/minecraft/network/chat/Component; +MD: net/minecraft/client/gui/screens/AlertScreen/m_6913_ ()Z net/minecraft/client/gui/screens/AlertScreen/shouldCloseOnEsc ()Z +MD: net/minecraft/client/gui/screens/AlertScreen/m_7856_ ()V net/minecraft/client/gui/screens/AlertScreen/init ()V +MD: net/minecraft/client/gui/screens/AlertScreen/m_88315_ (Lnet/minecraft/client/gui/GuiGraphics;IIF)V net/minecraft/client/gui/screens/AlertScreen/render (Lnet/minecraft/client/gui/GuiGraphics;IIF)V +MD: net/minecraft/client/gui/screens/AlertScreen/m_95532_ (Lnet/minecraft/client/gui/components/Button;)V net/minecraft/client/gui/screens/AlertScreen/lambda$init$0 (Lnet/minecraft/client/gui/components/Button;)V +MD: net/minecraft/client/gui/screens/BackupConfirmScreen/ (Lnet/minecraft/client/gui/screens/Screen;Lnet/minecraft/client/gui/screens/BackupConfirmScreen$Listener;Lnet/minecraft/network/chat/Component;Lnet/minecraft/network/chat/Component;Z)V net/minecraft/client/gui/screens/BackupConfirmScreen/ (Lnet/minecraft/client/gui/screens/Screen;Lnet/minecraft/client/gui/screens/BackupConfirmScreen$Listener;Lnet/minecraft/network/chat/Component;Lnet/minecraft/network/chat/Component;Z)V +MD: net/minecraft/client/gui/screens/BackupConfirmScreen/m_279751_ (Lnet/minecraft/client/gui/components/Button;)V net/minecraft/client/gui/screens/BackupConfirmScreen/lambda$init$2 (Lnet/minecraft/client/gui/components/Button;)V +MD: net/minecraft/client/gui/screens/BackupConfirmScreen/m_6913_ ()Z net/minecraft/client/gui/screens/BackupConfirmScreen/shouldCloseOnEsc ()Z +MD: net/minecraft/client/gui/screens/BackupConfirmScreen/m_7856_ ()V net/minecraft/client/gui/screens/BackupConfirmScreen/init ()V +MD: net/minecraft/client/gui/screens/BackupConfirmScreen/m_7933_ (III)Z net/minecraft/client/gui/screens/BackupConfirmScreen/keyPressed (III)Z +MD: net/minecraft/client/gui/screens/BackupConfirmScreen/m_88315_ (Lnet/minecraft/client/gui/GuiGraphics;IIF)V net/minecraft/client/gui/screens/BackupConfirmScreen/render (Lnet/minecraft/client/gui/GuiGraphics;IIF)V +MD: net/minecraft/client/gui/screens/BackupConfirmScreen/m_95561_ (Lnet/minecraft/client/gui/components/Button;)V net/minecraft/client/gui/screens/BackupConfirmScreen/lambda$init$1 (Lnet/minecraft/client/gui/components/Button;)V +MD: net/minecraft/client/gui/screens/BackupConfirmScreen/m_95563_ (Lnet/minecraft/client/gui/components/Button;)V net/minecraft/client/gui/screens/BackupConfirmScreen/lambda$init$0 (Lnet/minecraft/client/gui/components/Button;)V +MD: net/minecraft/client/gui/screens/BackupConfirmScreen$Listener/m_95565_ (ZZ)V net/minecraft/client/gui/screens/BackupConfirmScreen$Listener/proceed (ZZ)V +MD: net/minecraft/client/gui/screens/BanNoticeScreen/ ()V net/minecraft/client/gui/screens/BanNoticeScreen/ ()V +MD: net/minecraft/client/gui/screens/BanNoticeScreen/ ()V net/minecraft/client/gui/screens/BanNoticeScreen/ ()V +MD: net/minecraft/client/gui/screens/BanNoticeScreen/m_239137_ (Lcom/mojang/authlib/minecraft/BanDetails;)Lnet/minecraft/network/chat/Component; net/minecraft/client/gui/screens/BanNoticeScreen/getBannedScreenText (Lcom/mojang/authlib/minecraft/BanDetails;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/client/gui/screens/BanNoticeScreen/m_239318_ (Lcom/mojang/authlib/minecraft/BanDetails;)Lnet/minecraft/network/chat/Component; net/minecraft/client/gui/screens/BanNoticeScreen/getBanStatusText (Lcom/mojang/authlib/minecraft/BanDetails;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/client/gui/screens/BanNoticeScreen/m_239500_ (Lcom/mojang/authlib/minecraft/BanDetails;)Z net/minecraft/client/gui/screens/BanNoticeScreen/isTemporaryBan (Lcom/mojang/authlib/minecraft/BanDetails;)Z +MD: net/minecraft/client/gui/screens/BanNoticeScreen/m_239533_ (Lcom/mojang/authlib/minecraft/BanDetails;)Lnet/minecraft/network/chat/Component; net/minecraft/client/gui/screens/BanNoticeScreen/getBanReasonText (Lcom/mojang/authlib/minecraft/BanDetails;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/client/gui/screens/BanNoticeScreen/m_239879_ (Lcom/mojang/authlib/minecraft/BanDetails;)Lnet/minecraft/network/chat/Component; net/minecraft/client/gui/screens/BanNoticeScreen/getBanDurationText (Lcom/mojang/authlib/minecraft/BanDetails;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/client/gui/screens/BanNoticeScreen/m_239952_ (Lcom/mojang/authlib/minecraft/BanDetails;)Lnet/minecraft/network/chat/Component; net/minecraft/client/gui/screens/BanNoticeScreen/getBannedTitle (Lcom/mojang/authlib/minecraft/BanDetails;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/client/gui/screens/BanNoticeScreen/m_239967_ (Lit/unimi/dsi/fastutil/booleans/BooleanConsumer;Lcom/mojang/authlib/minecraft/BanDetails;)Lnet/minecraft/client/gui/screens/ConfirmLinkScreen; net/minecraft/client/gui/screens/BanNoticeScreen/create (Lit/unimi/dsi/fastutil/booleans/BooleanConsumer;Lcom/mojang/authlib/minecraft/BanDetails;)Lnet/minecraft/client/gui/screens/ConfirmLinkScreen; +MD: net/minecraft/client/gui/screens/ChatOptionsScreen/ (Lnet/minecraft/client/gui/screens/Screen;Lnet/minecraft/client/Options;)V net/minecraft/client/gui/screens/ChatOptionsScreen/ (Lnet/minecraft/client/gui/screens/Screen;Lnet/minecraft/client/Options;)V +MD: net/minecraft/client/gui/screens/ChatScreen/ ()V net/minecraft/client/gui/screens/ChatScreen/ ()V +MD: net/minecraft/client/gui/screens/ChatScreen/ (Ljava/lang/String;)V net/minecraft/client/gui/screens/ChatScreen/ (Ljava/lang/String;)V +MD: net/minecraft/client/gui/screens/ChatScreen/m_142228_ (Lnet/minecraft/client/gui/narration/NarrationElementOutput;)V net/minecraft/client/gui/screens/ChatScreen/updateNarrationState (Lnet/minecraft/client/gui/narration/NarrationElementOutput;)V +MD: net/minecraft/client/gui/screens/ChatScreen/m_232701_ (DD)Lnet/minecraft/network/chat/Style; net/minecraft/client/gui/screens/ChatScreen/getComponentStyleAt (DD)Lnet/minecraft/network/chat/Style; +MD: net/minecraft/client/gui/screens/ChatScreen/m_232706_ (Ljava/lang/String;)Ljava/lang/String; net/minecraft/client/gui/screens/ChatScreen/normalizeChatMessage (Ljava/lang/String;)Ljava/lang/String; +MD: net/minecraft/client/gui/screens/ChatScreen/m_241797_ (Ljava/lang/String;Z)Z net/minecraft/client/gui/screens/ChatScreen/handleChatInput (Ljava/lang/String;Z)Z +MD: net/minecraft/client/gui/screens/ChatScreen/m_6050_ (DDD)Z net/minecraft/client/gui/screens/ChatScreen/mouseScrolled (DDD)Z +MD: net/minecraft/client/gui/screens/ChatScreen/m_6375_ (DDI)Z net/minecraft/client/gui/screens/ChatScreen/mouseClicked (DDI)Z +MD: net/minecraft/client/gui/screens/ChatScreen/m_6574_ (Lnet/minecraft/client/Minecraft;II)V net/minecraft/client/gui/screens/ChatScreen/resize (Lnet/minecraft/client/Minecraft;II)V +MD: net/minecraft/client/gui/screens/ChatScreen/m_6697_ (Ljava/lang/String;Z)V net/minecraft/client/gui/screens/ChatScreen/insertText (Ljava/lang/String;Z)V +MD: net/minecraft/client/gui/screens/ChatScreen/m_7043_ ()Z net/minecraft/client/gui/screens/ChatScreen/isPauseScreen ()Z +MD: net/minecraft/client/gui/screens/ChatScreen/m_7856_ ()V net/minecraft/client/gui/screens/ChatScreen/init ()V +MD: net/minecraft/client/gui/screens/ChatScreen/m_7861_ ()V net/minecraft/client/gui/screens/ChatScreen/removed ()V +MD: net/minecraft/client/gui/screens/ChatScreen/m_7933_ (III)Z net/minecraft/client/gui/screens/ChatScreen/keyPressed (III)Z +MD: net/minecraft/client/gui/screens/ChatScreen/m_86600_ ()V net/minecraft/client/gui/screens/ChatScreen/tick ()V +MD: net/minecraft/client/gui/screens/ChatScreen/m_88315_ (Lnet/minecraft/client/gui/GuiGraphics;IIF)V net/minecraft/client/gui/screens/ChatScreen/render (Lnet/minecraft/client/gui/GuiGraphics;IIF)V +MD: net/minecraft/client/gui/screens/ChatScreen/m_95588_ (I)V net/minecraft/client/gui/screens/ChatScreen/moveInHistory (I)V +MD: net/minecraft/client/gui/screens/ChatScreen/m_95610_ (Ljava/lang/String;)V net/minecraft/client/gui/screens/ChatScreen/onEdited (Ljava/lang/String;)V +MD: net/minecraft/client/gui/screens/ChatScreen/m_95612_ (Ljava/lang/String;)V net/minecraft/client/gui/screens/ChatScreen/setChatLine (Ljava/lang/String;)V +MD: net/minecraft/client/gui/screens/ChatScreen$1/ (Lnet/minecraft/client/gui/screens/ChatScreen;Lnet/minecraft/client/gui/Font;IIIILnet/minecraft/network/chat/Component;)V net/minecraft/client/gui/screens/ChatScreen$1/ (Lnet/minecraft/client/gui/screens/ChatScreen;Lnet/minecraft/client/gui/Font;IIIILnet/minecraft/network/chat/Component;)V +MD: net/minecraft/client/gui/screens/ChatScreen$1/m_5646_ ()Lnet/minecraft/network/chat/MutableComponent; net/minecraft/client/gui/screens/ChatScreen$1/createNarrationMessage ()Lnet/minecraft/network/chat/MutableComponent; +MD: net/minecraft/client/gui/screens/ConfirmLinkScreen/ ()V net/minecraft/client/gui/screens/ConfirmLinkScreen/ ()V +MD: net/minecraft/client/gui/screens/ConfirmLinkScreen/ (Lit/unimi/dsi/fastutil/booleans/BooleanConsumer;Ljava/lang/String;Z)V net/minecraft/client/gui/screens/ConfirmLinkScreen/ (Lit/unimi/dsi/fastutil/booleans/BooleanConsumer;Ljava/lang/String;Z)V +MD: net/minecraft/client/gui/screens/ConfirmLinkScreen/ (Lit/unimi/dsi/fastutil/booleans/BooleanConsumer;Lnet/minecraft/network/chat/Component;Ljava/lang/String;Z)V net/minecraft/client/gui/screens/ConfirmLinkScreen/ (Lit/unimi/dsi/fastutil/booleans/BooleanConsumer;Lnet/minecraft/network/chat/Component;Ljava/lang/String;Z)V +MD: net/minecraft/client/gui/screens/ConfirmLinkScreen/ (Lit/unimi/dsi/fastutil/booleans/BooleanConsumer;Lnet/minecraft/network/chat/Component;Lnet/minecraft/network/chat/Component;Ljava/lang/String;Lnet/minecraft/network/chat/Component;Z)V net/minecraft/client/gui/screens/ConfirmLinkScreen/ (Lit/unimi/dsi/fastutil/booleans/BooleanConsumer;Lnet/minecraft/network/chat/Component;Lnet/minecraft/network/chat/Component;Ljava/lang/String;Lnet/minecraft/network/chat/Component;Z)V +MD: net/minecraft/client/gui/screens/ConfirmLinkScreen/ (Lit/unimi/dsi/fastutil/booleans/BooleanConsumer;Lnet/minecraft/network/chat/Component;Ljava/lang/String;Lnet/minecraft/network/chat/Component;Z)V net/minecraft/client/gui/screens/ConfirmLinkScreen/ (Lit/unimi/dsi/fastutil/booleans/BooleanConsumer;Lnet/minecraft/network/chat/Component;Ljava/lang/String;Lnet/minecraft/network/chat/Component;Z)V +MD: net/minecraft/client/gui/screens/ConfirmLinkScreen/m_141972_ (I)V net/minecraft/client/gui/screens/ConfirmLinkScreen/addButtons (I)V +MD: net/minecraft/client/gui/screens/ConfirmLinkScreen/m_169244_ (Lnet/minecraft/client/gui/components/Button;)V net/minecraft/client/gui/screens/ConfirmLinkScreen/lambda$addButtons$2 (Lnet/minecraft/client/gui/components/Button;)V +MD: net/minecraft/client/gui/screens/ConfirmLinkScreen/m_169246_ (Lnet/minecraft/client/gui/components/Button;)V net/minecraft/client/gui/screens/ConfirmLinkScreen/lambda$addButtons$1 (Lnet/minecraft/client/gui/components/Button;)V +MD: net/minecraft/client/gui/screens/ConfirmLinkScreen/m_169248_ (Lnet/minecraft/client/gui/components/Button;)V net/minecraft/client/gui/screens/ConfirmLinkScreen/lambda$addButtons$0 (Lnet/minecraft/client/gui/components/Button;)V +MD: net/minecraft/client/gui/screens/ConfirmLinkScreen/m_239179_ (ZLjava/lang/String;)Lnet/minecraft/network/chat/MutableComponent; net/minecraft/client/gui/screens/ConfirmLinkScreen/confirmMessage (ZLjava/lang/String;)Lnet/minecraft/network/chat/MutableComponent; +MD: net/minecraft/client/gui/screens/ConfirmLinkScreen/m_240013_ (Z)Lnet/minecraft/network/chat/MutableComponent; net/minecraft/client/gui/screens/ConfirmLinkScreen/confirmMessage (Z)Lnet/minecraft/network/chat/MutableComponent; +MD: net/minecraft/client/gui/screens/ConfirmLinkScreen/m_273977_ (Ljava/lang/String;Lnet/minecraft/client/gui/screens/Screen;ZLnet/minecraft/client/gui/components/Button;)V net/minecraft/client/gui/screens/ConfirmLinkScreen/lambda$confirmLink$4 (Ljava/lang/String;Lnet/minecraft/client/gui/screens/Screen;ZLnet/minecraft/client/gui/components/Button;)V +MD: net/minecraft/client/gui/screens/ConfirmLinkScreen/m_273978_ (Ljava/lang/String;Lnet/minecraft/client/Minecraft;Lnet/minecraft/client/gui/screens/Screen;Z)V net/minecraft/client/gui/screens/ConfirmLinkScreen/lambda$confirmLinkNow$3 (Ljava/lang/String;Lnet/minecraft/client/Minecraft;Lnet/minecraft/client/gui/screens/Screen;Z)V +MD: net/minecraft/client/gui/screens/ConfirmLinkScreen/m_274480_ (Ljava/lang/String;Lnet/minecraft/client/gui/screens/Screen;Z)V net/minecraft/client/gui/screens/ConfirmLinkScreen/confirmLinkNow (Ljava/lang/String;Lnet/minecraft/client/gui/screens/Screen;Z)V +MD: net/minecraft/client/gui/screens/ConfirmLinkScreen/m_274609_ (Ljava/lang/String;Lnet/minecraft/client/gui/screens/Screen;Z)Lnet/minecraft/client/gui/components/Button$OnPress; net/minecraft/client/gui/screens/ConfirmLinkScreen/confirmLink (Ljava/lang/String;Lnet/minecraft/client/gui/screens/Screen;Z)Lnet/minecraft/client/gui/components/Button$OnPress; +MD: net/minecraft/client/gui/screens/ConfirmLinkScreen/m_88315_ (Lnet/minecraft/client/gui/GuiGraphics;IIF)V net/minecraft/client/gui/screens/ConfirmLinkScreen/render (Lnet/minecraft/client/gui/GuiGraphics;IIF)V +MD: net/minecraft/client/gui/screens/ConfirmLinkScreen/m_95646_ ()V net/minecraft/client/gui/screens/ConfirmLinkScreen/copyToClipboard ()V +MD: net/minecraft/client/gui/screens/ConfirmScreen/ (Lit/unimi/dsi/fastutil/booleans/BooleanConsumer;Lnet/minecraft/network/chat/Component;Lnet/minecraft/network/chat/Component;)V net/minecraft/client/gui/screens/ConfirmScreen/ (Lit/unimi/dsi/fastutil/booleans/BooleanConsumer;Lnet/minecraft/network/chat/Component;Lnet/minecraft/network/chat/Component;)V +MD: net/minecraft/client/gui/screens/ConfirmScreen/ (Lit/unimi/dsi/fastutil/booleans/BooleanConsumer;Lnet/minecraft/network/chat/Component;Lnet/minecraft/network/chat/Component;Lnet/minecraft/network/chat/Component;Lnet/minecraft/network/chat/Component;)V net/minecraft/client/gui/screens/ConfirmScreen/ (Lit/unimi/dsi/fastutil/booleans/BooleanConsumer;Lnet/minecraft/network/chat/Component;Lnet/minecraft/network/chat/Component;Lnet/minecraft/network/chat/Component;Lnet/minecraft/network/chat/Component;)V +MD: net/minecraft/client/gui/screens/ConfirmScreen/m_141972_ (I)V net/minecraft/client/gui/screens/ConfirmScreen/addButtons (I)V +MD: net/minecraft/client/gui/screens/ConfirmScreen/m_142562_ ()Lnet/minecraft/network/chat/Component; net/minecraft/client/gui/screens/ConfirmScreen/getNarrationMessage ()Lnet/minecraft/network/chat/Component; +MD: net/minecraft/client/gui/screens/ConfirmScreen/m_169253_ (Lnet/minecraft/client/gui/components/Button;)V net/minecraft/client/gui/screens/ConfirmScreen/addExitButton (Lnet/minecraft/client/gui/components/Button;)V +MD: net/minecraft/client/gui/screens/ConfirmScreen/m_169256_ (Lnet/minecraft/client/gui/components/Button;)V net/minecraft/client/gui/screens/ConfirmScreen/lambda$addButtons$1 (Lnet/minecraft/client/gui/components/Button;)V +MD: net/minecraft/client/gui/screens/ConfirmScreen/m_169258_ (Lnet/minecraft/client/gui/components/Button;)V net/minecraft/client/gui/screens/ConfirmScreen/lambda$addButtons$0 (Lnet/minecraft/client/gui/components/Button;)V +MD: net/minecraft/client/gui/screens/ConfirmScreen/m_239018_ ()I net/minecraft/client/gui/screens/ConfirmScreen/messageTop ()I +MD: net/minecraft/client/gui/screens/ConfirmScreen/m_239348_ ()I net/minecraft/client/gui/screens/ConfirmScreen/messageHeight ()I +MD: net/minecraft/client/gui/screens/ConfirmScreen/m_239963_ ()I net/minecraft/client/gui/screens/ConfirmScreen/titleTop ()I +MD: net/minecraft/client/gui/screens/ConfirmScreen/m_6913_ ()Z net/minecraft/client/gui/screens/ConfirmScreen/shouldCloseOnEsc ()Z +MD: net/minecraft/client/gui/screens/ConfirmScreen/m_7856_ ()V net/minecraft/client/gui/screens/ConfirmScreen/init ()V +MD: net/minecraft/client/gui/screens/ConfirmScreen/m_7933_ (III)Z net/minecraft/client/gui/screens/ConfirmScreen/keyPressed (III)Z +MD: net/minecraft/client/gui/screens/ConfirmScreen/m_86600_ ()V net/minecraft/client/gui/screens/ConfirmScreen/tick ()V +MD: net/minecraft/client/gui/screens/ConfirmScreen/m_88315_ (Lnet/minecraft/client/gui/GuiGraphics;IIF)V net/minecraft/client/gui/screens/ConfirmScreen/render (Lnet/minecraft/client/gui/GuiGraphics;IIF)V +MD: net/minecraft/client/gui/screens/ConfirmScreen/m_95663_ (I)V net/minecraft/client/gui/screens/ConfirmScreen/setDelay (I)V +MD: net/minecraft/client/gui/screens/ConnectScreen/ ()V net/minecraft/client/gui/screens/ConnectScreen/ ()V +MD: net/minecraft/client/gui/screens/ConnectScreen/ (Lnet/minecraft/client/gui/screens/Screen;Lnet/minecraft/network/chat/Component;)V net/minecraft/client/gui/screens/ConnectScreen/ (Lnet/minecraft/client/gui/screens/Screen;Lnet/minecraft/network/chat/Component;)V +MD: net/minecraft/client/gui/screens/ConnectScreen/m_247688_ (Lnet/minecraft/client/Minecraft;Lnet/minecraft/client/multiplayer/resolver/ServerAddress;Lnet/minecraft/client/multiplayer/ServerData;)V net/minecraft/client/gui/screens/ConnectScreen/connect (Lnet/minecraft/client/Minecraft;Lnet/minecraft/client/multiplayer/resolver/ServerAddress;Lnet/minecraft/client/multiplayer/ServerData;)V +MD: net/minecraft/client/gui/screens/ConnectScreen/m_278792_ (Lnet/minecraft/client/gui/screens/Screen;Lnet/minecraft/client/Minecraft;Lnet/minecraft/client/multiplayer/resolver/ServerAddress;Lnet/minecraft/client/multiplayer/ServerData;Z)V net/minecraft/client/gui/screens/ConnectScreen/startConnecting (Lnet/minecraft/client/gui/screens/Screen;Lnet/minecraft/client/Minecraft;Lnet/minecraft/client/multiplayer/resolver/ServerAddress;Lnet/minecraft/client/multiplayer/ServerData;Z)V +MD: net/minecraft/client/gui/screens/ConnectScreen/m_290022_ (Lnet/minecraft/client/gui/components/Button;)V net/minecraft/client/gui/screens/ConnectScreen/lambda$init$0 (Lnet/minecraft/client/gui/components/Button;)V +MD: net/minecraft/client/gui/screens/ConnectScreen/m_6913_ ()Z net/minecraft/client/gui/screens/ConnectScreen/shouldCloseOnEsc ()Z +MD: net/minecraft/client/gui/screens/ConnectScreen/m_7856_ ()V net/minecraft/client/gui/screens/ConnectScreen/init ()V +MD: net/minecraft/client/gui/screens/ConnectScreen/m_86600_ ()V net/minecraft/client/gui/screens/ConnectScreen/tick ()V +MD: net/minecraft/client/gui/screens/ConnectScreen/m_88315_ (Lnet/minecraft/client/gui/GuiGraphics;IIF)V net/minecraft/client/gui/screens/ConnectScreen/render (Lnet/minecraft/client/gui/GuiGraphics;IIF)V +MD: net/minecraft/client/gui/screens/ConnectScreen/m_95717_ (Lnet/minecraft/network/chat/Component;)V net/minecraft/client/gui/screens/ConnectScreen/updateStatus (Lnet/minecraft/network/chat/Component;)V +MD: net/minecraft/client/gui/screens/ConnectScreen$1/ (Lnet/minecraft/client/gui/screens/ConnectScreen;Ljava/lang/String;Lnet/minecraft/client/multiplayer/resolver/ServerAddress;Lnet/minecraft/client/Minecraft;Lnet/minecraft/client/multiplayer/ServerData;)V net/minecraft/client/gui/screens/ConnectScreen$1/ (Lnet/minecraft/client/gui/screens/ConnectScreen;Ljava/lang/String;Lnet/minecraft/client/multiplayer/resolver/ServerAddress;Lnet/minecraft/client/Minecraft;Lnet/minecraft/client/multiplayer/ServerData;)V +MD: net/minecraft/client/gui/screens/ConnectScreen$1/m_278521_ (Lnet/minecraft/client/Minecraft;Ljava/lang/String;)V net/minecraft/client/gui/screens/ConnectScreen$1/lambda$run$1 (Lnet/minecraft/client/Minecraft;Ljava/lang/String;)V +MD: net/minecraft/client/gui/screens/ConnectScreen$1/m_278522_ (Lnet/minecraft/client/Minecraft;)V net/minecraft/client/gui/screens/ConnectScreen$1/lambda$run$0 (Lnet/minecraft/client/Minecraft;)V +MD: net/minecraft/client/gui/screens/ConnectScreen$1/run ()V net/minecraft/client/gui/screens/ConnectScreen$1/run ()V +MD: net/minecraft/client/gui/screens/CreateBuffetWorldScreen/ ()V net/minecraft/client/gui/screens/CreateBuffetWorldScreen/ ()V +MD: net/minecraft/client/gui/screens/CreateBuffetWorldScreen/ (Lnet/minecraft/client/gui/screens/Screen;Lnet/minecraft/client/gui/screens/worldselection/WorldCreationContext;Ljava/util/function/Consumer;)V net/minecraft/client/gui/screens/CreateBuffetWorldScreen/ (Lnet/minecraft/client/gui/screens/Screen;Lnet/minecraft/client/gui/screens/worldselection/WorldCreationContext;Ljava/util/function/Consumer;)V +MD: net/minecraft/client/gui/screens/CreateBuffetWorldScreen/m_232737_ (Lnet/minecraft/client/gui/screens/CreateBuffetWorldScreen$BiomeList$Entry;)Z net/minecraft/client/gui/screens/CreateBuffetWorldScreen/lambda$init$3 (Lnet/minecraft/client/gui/screens/CreateBuffetWorldScreen$BiomeList$Entry;)Z +MD: net/minecraft/client/gui/screens/CreateBuffetWorldScreen/m_257071_ ()Ljava/util/Optional; net/minecraft/client/gui/screens/CreateBuffetWorldScreen/lambda$new$0 ()Ljava/util/Optional; +MD: net/minecraft/client/gui/screens/CreateBuffetWorldScreen/m_279753_ (Lnet/minecraft/client/gui/components/Button;)V net/minecraft/client/gui/screens/CreateBuffetWorldScreen/lambda$init$1 (Lnet/minecraft/client/gui/components/Button;)V +MD: net/minecraft/client/gui/screens/CreateBuffetWorldScreen/m_279754_ (Lnet/minecraft/client/gui/components/Button;)V net/minecraft/client/gui/screens/CreateBuffetWorldScreen/lambda$init$2 (Lnet/minecraft/client/gui/components/Button;)V +MD: net/minecraft/client/gui/screens/CreateBuffetWorldScreen/m_7379_ ()V net/minecraft/client/gui/screens/CreateBuffetWorldScreen/onClose ()V +MD: net/minecraft/client/gui/screens/CreateBuffetWorldScreen/m_7856_ ()V net/minecraft/client/gui/screens/CreateBuffetWorldScreen/init ()V +MD: net/minecraft/client/gui/screens/CreateBuffetWorldScreen/m_88315_ (Lnet/minecraft/client/gui/GuiGraphics;IIF)V net/minecraft/client/gui/screens/CreateBuffetWorldScreen/render (Lnet/minecraft/client/gui/GuiGraphics;IIF)V +MD: net/minecraft/client/gui/screens/CreateBuffetWorldScreen/m_95775_ ()V net/minecraft/client/gui/screens/CreateBuffetWorldScreen/updateButtonValidity ()V +MD: net/minecraft/client/gui/screens/CreateBuffetWorldScreen$BiomeList/ (Lnet/minecraft/client/gui/screens/CreateBuffetWorldScreen;)V net/minecraft/client/gui/screens/CreateBuffetWorldScreen$BiomeList/ (Lnet/minecraft/client/gui/screens/CreateBuffetWorldScreen;)V +MD: net/minecraft/client/gui/screens/CreateBuffetWorldScreen$BiomeList/m_203136_ (Lnet/minecraft/client/gui/screens/CreateBuffetWorldScreen$BiomeList;Lnet/minecraft/client/gui/components/AbstractSelectionList$Entry;)V net/minecraft/client/gui/screens/CreateBuffetWorldScreen$BiomeList/lambda$new$2 (Lnet/minecraft/client/gui/screens/CreateBuffetWorldScreen$BiomeList;Lnet/minecraft/client/gui/components/AbstractSelectionList$Entry;)V +MD: net/minecraft/client/gui/screens/CreateBuffetWorldScreen$BiomeList/m_203141_ (Lnet/minecraft/client/gui/screens/CreateBuffetWorldScreen$BiomeList$Entry;)Ljava/lang/String; net/minecraft/client/gui/screens/CreateBuffetWorldScreen$BiomeList/lambda$new$1 (Lnet/minecraft/client/gui/screens/CreateBuffetWorldScreen$BiomeList$Entry;)Ljava/lang/String; +MD: net/minecraft/client/gui/screens/CreateBuffetWorldScreen$BiomeList/m_205388_ (Lnet/minecraft/core/Holder$Reference;)Lnet/minecraft/client/gui/screens/CreateBuffetWorldScreen$BiomeList$Entry; net/minecraft/client/gui/screens/CreateBuffetWorldScreen$BiomeList/lambda$new$0 (Lnet/minecraft/core/Holder$Reference;)Lnet/minecraft/client/gui/screens/CreateBuffetWorldScreen$BiomeList$Entry; +MD: net/minecraft/client/gui/screens/CreateBuffetWorldScreen$BiomeList/m_6987_ (Lnet/minecraft/client/gui/screens/CreateBuffetWorldScreen$BiomeList$Entry;)V net/minecraft/client/gui/screens/CreateBuffetWorldScreen$BiomeList/setSelected (Lnet/minecraft/client/gui/screens/CreateBuffetWorldScreen$BiomeList$Entry;)V +MD: net/minecraft/client/gui/screens/CreateBuffetWorldScreen$BiomeList/m_6987_ (Lnet/minecraft/client/gui/components/AbstractSelectionList$Entry;)V net/minecraft/client/gui/screens/CreateBuffetWorldScreen$BiomeList/setSelected (Lnet/minecraft/client/gui/components/AbstractSelectionList$Entry;)V +MD: net/minecraft/client/gui/screens/CreateBuffetWorldScreen$BiomeList$Entry/ (Lnet/minecraft/client/gui/screens/CreateBuffetWorldScreen$BiomeList;Lnet/minecraft/core/Holder$Reference;)V net/minecraft/client/gui/screens/CreateBuffetWorldScreen$BiomeList$Entry/ (Lnet/minecraft/client/gui/screens/CreateBuffetWorldScreen$BiomeList;Lnet/minecraft/core/Holder$Reference;)V +MD: net/minecraft/client/gui/screens/CreateBuffetWorldScreen$BiomeList$Entry/m_142172_ ()Lnet/minecraft/network/chat/Component; net/minecraft/client/gui/screens/CreateBuffetWorldScreen$BiomeList$Entry/getNarration ()Lnet/minecraft/network/chat/Component; +MD: net/minecraft/client/gui/screens/CreateBuffetWorldScreen$BiomeList$Entry/m_6311_ (Lnet/minecraft/client/gui/GuiGraphics;IIIIIIIZF)V net/minecraft/client/gui/screens/CreateBuffetWorldScreen$BiomeList$Entry/render (Lnet/minecraft/client/gui/GuiGraphics;IIIIIIIZF)V +MD: net/minecraft/client/gui/screens/CreateBuffetWorldScreen$BiomeList$Entry/m_6375_ (DDI)Z net/minecraft/client/gui/screens/CreateBuffetWorldScreen$BiomeList$Entry/mouseClicked (DDI)Z +MD: net/minecraft/client/gui/screens/CreateFlatWorldScreen/ (Lnet/minecraft/client/gui/screens/worldselection/CreateWorldScreen;Ljava/util/function/Consumer;Lnet/minecraft/world/level/levelgen/flat/FlatLevelGeneratorSettings;)V net/minecraft/client/gui/screens/CreateFlatWorldScreen/ (Lnet/minecraft/client/gui/screens/worldselection/CreateWorldScreen;Ljava/util/function/Consumer;Lnet/minecraft/world/level/levelgen/flat/FlatLevelGeneratorSettings;)V +MD: net/minecraft/client/gui/screens/CreateFlatWorldScreen/m_279755_ (Lnet/minecraft/client/gui/components/Button;)V net/minecraft/client/gui/screens/CreateFlatWorldScreen/lambda$init$1 (Lnet/minecraft/client/gui/components/Button;)V +MD: net/minecraft/client/gui/screens/CreateFlatWorldScreen/m_279756_ (Lnet/minecraft/client/gui/components/Button;)V net/minecraft/client/gui/screens/CreateFlatWorldScreen/lambda$init$2 (Lnet/minecraft/client/gui/components/Button;)V +MD: net/minecraft/client/gui/screens/CreateFlatWorldScreen/m_279757_ (Lnet/minecraft/client/gui/components/Button;)V net/minecraft/client/gui/screens/CreateFlatWorldScreen/lambda$init$3 (Lnet/minecraft/client/gui/components/Button;)V +MD: net/minecraft/client/gui/screens/CreateFlatWorldScreen/m_7379_ ()V net/minecraft/client/gui/screens/CreateFlatWorldScreen/onClose ()V +MD: net/minecraft/client/gui/screens/CreateFlatWorldScreen/m_7856_ ()V net/minecraft/client/gui/screens/CreateFlatWorldScreen/init ()V +MD: net/minecraft/client/gui/screens/CreateFlatWorldScreen/m_88315_ (Lnet/minecraft/client/gui/GuiGraphics;IIF)V net/minecraft/client/gui/screens/CreateFlatWorldScreen/render (Lnet/minecraft/client/gui/GuiGraphics;IIF)V +MD: net/minecraft/client/gui/screens/CreateFlatWorldScreen/m_95825_ (Lnet/minecraft/world/level/levelgen/flat/FlatLevelGeneratorSettings;)V net/minecraft/client/gui/screens/CreateFlatWorldScreen/setConfig (Lnet/minecraft/world/level/levelgen/flat/FlatLevelGeneratorSettings;)V +MD: net/minecraft/client/gui/screens/CreateFlatWorldScreen/m_95844_ (Lnet/minecraft/client/gui/components/Button;)V net/minecraft/client/gui/screens/CreateFlatWorldScreen/lambda$init$0 (Lnet/minecraft/client/gui/components/Button;)V +MD: net/minecraft/client/gui/screens/CreateFlatWorldScreen/m_95846_ ()Lnet/minecraft/world/level/levelgen/flat/FlatLevelGeneratorSettings; net/minecraft/client/gui/screens/CreateFlatWorldScreen/settings ()Lnet/minecraft/world/level/levelgen/flat/FlatLevelGeneratorSettings; +MD: net/minecraft/client/gui/screens/CreateFlatWorldScreen/m_95847_ ()V net/minecraft/client/gui/screens/CreateFlatWorldScreen/updateButtonValidity ()V +MD: net/minecraft/client/gui/screens/CreateFlatWorldScreen/m_95848_ ()Z net/minecraft/client/gui/screens/CreateFlatWorldScreen/hasValidSelection ()Z +MD: net/minecraft/client/gui/screens/CreateFlatWorldScreen$DetailsList/ ()V net/minecraft/client/gui/screens/CreateFlatWorldScreen$DetailsList/ ()V +MD: net/minecraft/client/gui/screens/CreateFlatWorldScreen$DetailsList/ (Lnet/minecraft/client/gui/screens/CreateFlatWorldScreen;)V net/minecraft/client/gui/screens/CreateFlatWorldScreen$DetailsList/ (Lnet/minecraft/client/gui/screens/CreateFlatWorldScreen;)V +MD: net/minecraft/client/gui/screens/CreateFlatWorldScreen$DetailsList/m_5756_ ()I net/minecraft/client/gui/screens/CreateFlatWorldScreen$DetailsList/getScrollbarPosition ()I +MD: net/minecraft/client/gui/screens/CreateFlatWorldScreen$DetailsList/m_6987_ (Lnet/minecraft/client/gui/screens/CreateFlatWorldScreen$DetailsList$Entry;)V net/minecraft/client/gui/screens/CreateFlatWorldScreen$DetailsList/setSelected (Lnet/minecraft/client/gui/screens/CreateFlatWorldScreen$DetailsList$Entry;)V +MD: net/minecraft/client/gui/screens/CreateFlatWorldScreen$DetailsList/m_6987_ (Lnet/minecraft/client/gui/components/AbstractSelectionList$Entry;)V net/minecraft/client/gui/screens/CreateFlatWorldScreen$DetailsList/setSelected (Lnet/minecraft/client/gui/components/AbstractSelectionList$Entry;)V +MD: net/minecraft/client/gui/screens/CreateFlatWorldScreen$DetailsList/m_95860_ ()V net/minecraft/client/gui/screens/CreateFlatWorldScreen$DetailsList/resetRows ()V +MD: net/minecraft/client/gui/screens/CreateFlatWorldScreen$DetailsList$Entry/ (Lnet/minecraft/client/gui/screens/CreateFlatWorldScreen$DetailsList;)V net/minecraft/client/gui/screens/CreateFlatWorldScreen$DetailsList$Entry/ (Lnet/minecraft/client/gui/screens/CreateFlatWorldScreen$DetailsList;)V +MD: net/minecraft/client/gui/screens/CreateFlatWorldScreen$DetailsList$Entry/m_142172_ ()Lnet/minecraft/network/chat/Component; net/minecraft/client/gui/screens/CreateFlatWorldScreen$DetailsList$Entry/getNarration ()Lnet/minecraft/network/chat/Component; +MD: net/minecraft/client/gui/screens/CreateFlatWorldScreen$DetailsList$Entry/m_169293_ (Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/item/ItemStack; net/minecraft/client/gui/screens/CreateFlatWorldScreen$DetailsList$Entry/getDisplayItem (Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/client/gui/screens/CreateFlatWorldScreen$DetailsList$Entry/m_280140_ (Lnet/minecraft/client/gui/GuiGraphics;II)V net/minecraft/client/gui/screens/CreateFlatWorldScreen$DetailsList$Entry/blitSlotBg (Lnet/minecraft/client/gui/GuiGraphics;II)V +MD: net/minecraft/client/gui/screens/CreateFlatWorldScreen$DetailsList$Entry/m_280326_ (Lnet/minecraft/client/gui/GuiGraphics;IILnet/minecraft/world/item/ItemStack;)V net/minecraft/client/gui/screens/CreateFlatWorldScreen$DetailsList$Entry/blitSlot (Lnet/minecraft/client/gui/GuiGraphics;IILnet/minecraft/world/item/ItemStack;)V +MD: net/minecraft/client/gui/screens/CreateFlatWorldScreen$DetailsList$Entry/m_6311_ (Lnet/minecraft/client/gui/GuiGraphics;IIIIIIIZF)V net/minecraft/client/gui/screens/CreateFlatWorldScreen$DetailsList$Entry/render (Lnet/minecraft/client/gui/GuiGraphics;IIIIIIIZF)V +MD: net/minecraft/client/gui/screens/CreateFlatWorldScreen$DetailsList$Entry/m_6375_ (DDI)Z net/minecraft/client/gui/screens/CreateFlatWorldScreen$DetailsList$Entry/mouseClicked (DDI)Z +MD: net/minecraft/client/gui/screens/CreditsAndAttributionScreen/ ()V net/minecraft/client/gui/screens/CreditsAndAttributionScreen/ ()V +MD: net/minecraft/client/gui/screens/CreditsAndAttributionScreen/ (Lnet/minecraft/client/gui/screens/Screen;)V net/minecraft/client/gui/screens/CreditsAndAttributionScreen/ (Lnet/minecraft/client/gui/screens/Screen;)V +MD: net/minecraft/client/gui/screens/CreditsAndAttributionScreen/m_267719_ ()V net/minecraft/client/gui/screens/CreditsAndAttributionScreen/repositionElements ()V +MD: net/minecraft/client/gui/screens/CreditsAndAttributionScreen/m_276184_ ()V net/minecraft/client/gui/screens/CreditsAndAttributionScreen/openCreditsScreen ()V +MD: net/minecraft/client/gui/screens/CreditsAndAttributionScreen/m_276208_ (Lnet/minecraft/client/gui/components/Button;)V net/minecraft/client/gui/screens/CreditsAndAttributionScreen/lambda$init$0 (Lnet/minecraft/client/gui/components/Button;)V +MD: net/minecraft/client/gui/screens/CreditsAndAttributionScreen/m_276223_ (Lnet/minecraft/client/gui/components/Button;)V net/minecraft/client/gui/screens/CreditsAndAttributionScreen/lambda$init$1 (Lnet/minecraft/client/gui/components/Button;)V +MD: net/minecraft/client/gui/screens/CreditsAndAttributionScreen/m_279758_ ()V net/minecraft/client/gui/screens/CreditsAndAttributionScreen/lambda$openCreditsScreen$2 ()V +MD: net/minecraft/client/gui/screens/CreditsAndAttributionScreen/m_7379_ ()V net/minecraft/client/gui/screens/CreditsAndAttributionScreen/onClose ()V +MD: net/minecraft/client/gui/screens/CreditsAndAttributionScreen/m_7856_ ()V net/minecraft/client/gui/screens/CreditsAndAttributionScreen/init ()V +MD: net/minecraft/client/gui/screens/CreditsAndAttributionScreen/m_88315_ (Lnet/minecraft/client/gui/GuiGraphics;IIF)V net/minecraft/client/gui/screens/CreditsAndAttributionScreen/render (Lnet/minecraft/client/gui/GuiGraphics;IIF)V +MD: net/minecraft/client/gui/screens/DatapackLoadFailureScreen/ (Ljava/lang/Runnable;)V net/minecraft/client/gui/screens/DatapackLoadFailureScreen/ (Ljava/lang/Runnable;)V +MD: net/minecraft/client/gui/screens/DatapackLoadFailureScreen/m_279759_ (Lnet/minecraft/client/gui/components/Button;)V net/minecraft/client/gui/screens/DatapackLoadFailureScreen/lambda$init$1 (Lnet/minecraft/client/gui/components/Button;)V +MD: net/minecraft/client/gui/screens/DatapackLoadFailureScreen/m_6913_ ()Z net/minecraft/client/gui/screens/DatapackLoadFailureScreen/shouldCloseOnEsc ()Z +MD: net/minecraft/client/gui/screens/DatapackLoadFailureScreen/m_7856_ ()V net/minecraft/client/gui/screens/DatapackLoadFailureScreen/init ()V +MD: net/minecraft/client/gui/screens/DatapackLoadFailureScreen/m_88315_ (Lnet/minecraft/client/gui/GuiGraphics;IIF)V net/minecraft/client/gui/screens/DatapackLoadFailureScreen/render (Lnet/minecraft/client/gui/GuiGraphics;IIF)V +MD: net/minecraft/client/gui/screens/DatapackLoadFailureScreen/m_95904_ (Lnet/minecraft/client/gui/components/Button;)V net/minecraft/client/gui/screens/DatapackLoadFailureScreen/lambda$init$0 (Lnet/minecraft/client/gui/components/Button;)V +MD: net/minecraft/client/gui/screens/DeathScreen/ (Lnet/minecraft/network/chat/Component;Z)V net/minecraft/client/gui/screens/DeathScreen/ (Lnet/minecraft/network/chat/Component;Z)V +MD: net/minecraft/client/gui/screens/DeathScreen/m_262825_ ()V net/minecraft/client/gui/screens/DeathScreen/handleExitToTitleScreen ()V +MD: net/minecraft/client/gui/screens/DeathScreen/m_272014_ (Z)V net/minecraft/client/gui/screens/DeathScreen/setButtonsActive (Z)V +MD: net/minecraft/client/gui/screens/DeathScreen/m_279760_ (Lnet/minecraft/client/gui/components/Button;)V net/minecraft/client/gui/screens/DeathScreen/lambda$init$0 (Lnet/minecraft/client/gui/components/Button;)V +MD: net/minecraft/client/gui/screens/DeathScreen/m_279761_ (Z)V net/minecraft/client/gui/screens/DeathScreen/lambda$handleExitToTitleScreen$2 (Z)V +MD: net/minecraft/client/gui/screens/DeathScreen/m_279762_ (Lnet/minecraft/client/gui/components/Button;)V net/minecraft/client/gui/screens/DeathScreen/lambda$init$1 (Lnet/minecraft/client/gui/components/Button;)V +MD: net/minecraft/client/gui/screens/DeathScreen/m_6375_ (DDI)Z net/minecraft/client/gui/screens/DeathScreen/mouseClicked (DDI)Z +MD: net/minecraft/client/gui/screens/DeathScreen/m_6913_ ()Z net/minecraft/client/gui/screens/DeathScreen/shouldCloseOnEsc ()Z +MD: net/minecraft/client/gui/screens/DeathScreen/m_7043_ ()Z net/minecraft/client/gui/screens/DeathScreen/isPauseScreen ()Z +MD: net/minecraft/client/gui/screens/DeathScreen/m_7856_ ()V net/minecraft/client/gui/screens/DeathScreen/init ()V +MD: net/minecraft/client/gui/screens/DeathScreen/m_86600_ ()V net/minecraft/client/gui/screens/DeathScreen/tick ()V +MD: net/minecraft/client/gui/screens/DeathScreen/m_88315_ (Lnet/minecraft/client/gui/GuiGraphics;IIF)V net/minecraft/client/gui/screens/DeathScreen/render (Lnet/minecraft/client/gui/GuiGraphics;IIF)V +MD: net/minecraft/client/gui/screens/DeathScreen/m_95917_ (I)Lnet/minecraft/network/chat/Style; net/minecraft/client/gui/screens/DeathScreen/getClickedComponentStyleAt (I)Lnet/minecraft/network/chat/Style; +MD: net/minecraft/client/gui/screens/DeathScreen/m_95934_ ()V net/minecraft/client/gui/screens/DeathScreen/exitToTitleScreen ()V +MD: net/minecraft/client/gui/screens/DeathScreen$TitleConfirmScreen/ (Lit/unimi/dsi/fastutil/booleans/BooleanConsumer;Lnet/minecraft/network/chat/Component;Lnet/minecraft/network/chat/Component;Lnet/minecraft/network/chat/Component;Lnet/minecraft/network/chat/Component;)V net/minecraft/client/gui/screens/DeathScreen$TitleConfirmScreen/ (Lit/unimi/dsi/fastutil/booleans/BooleanConsumer;Lnet/minecraft/network/chat/Component;Lnet/minecraft/network/chat/Component;Lnet/minecraft/network/chat/Component;Lnet/minecraft/network/chat/Component;)V +MD: net/minecraft/client/gui/screens/DemoIntroScreen/ ()V net/minecraft/client/gui/screens/DemoIntroScreen/ ()V +MD: net/minecraft/client/gui/screens/DemoIntroScreen/ ()V net/minecraft/client/gui/screens/DemoIntroScreen/ ()V +MD: net/minecraft/client/gui/screens/DemoIntroScreen/m_279763_ (Lnet/minecraft/client/gui/components/Button;)V net/minecraft/client/gui/screens/DemoIntroScreen/lambda$init$0 (Lnet/minecraft/client/gui/components/Button;)V +MD: net/minecraft/client/gui/screens/DemoIntroScreen/m_279764_ (Lnet/minecraft/client/gui/components/Button;)V net/minecraft/client/gui/screens/DemoIntroScreen/lambda$init$1 (Lnet/minecraft/client/gui/components/Button;)V +MD: net/minecraft/client/gui/screens/DemoIntroScreen/m_280273_ (Lnet/minecraft/client/gui/GuiGraphics;)V net/minecraft/client/gui/screens/DemoIntroScreen/renderBackground (Lnet/minecraft/client/gui/GuiGraphics;)V +MD: net/minecraft/client/gui/screens/DemoIntroScreen/m_7856_ ()V net/minecraft/client/gui/screens/DemoIntroScreen/init ()V +MD: net/minecraft/client/gui/screens/DemoIntroScreen/m_88315_ (Lnet/minecraft/client/gui/GuiGraphics;IIF)V net/minecraft/client/gui/screens/DemoIntroScreen/render (Lnet/minecraft/client/gui/GuiGraphics;IIF)V +MD: net/minecraft/client/gui/screens/DirectJoinServerScreen/ ()V net/minecraft/client/gui/screens/DirectJoinServerScreen/ ()V +MD: net/minecraft/client/gui/screens/DirectJoinServerScreen/ (Lnet/minecraft/client/gui/screens/Screen;Lit/unimi/dsi/fastutil/booleans/BooleanConsumer;Lnet/minecraft/client/multiplayer/ServerData;)V net/minecraft/client/gui/screens/DirectJoinServerScreen/ (Lnet/minecraft/client/gui/screens/Screen;Lit/unimi/dsi/fastutil/booleans/BooleanConsumer;Lnet/minecraft/client/multiplayer/ServerData;)V +MD: net/minecraft/client/gui/screens/DirectJoinServerScreen/m_6574_ (Lnet/minecraft/client/Minecraft;II)V net/minecraft/client/gui/screens/DirectJoinServerScreen/resize (Lnet/minecraft/client/Minecraft;II)V +MD: net/minecraft/client/gui/screens/DirectJoinServerScreen/m_7379_ ()V net/minecraft/client/gui/screens/DirectJoinServerScreen/onClose ()V +MD: net/minecraft/client/gui/screens/DirectJoinServerScreen/m_7856_ ()V net/minecraft/client/gui/screens/DirectJoinServerScreen/init ()V +MD: net/minecraft/client/gui/screens/DirectJoinServerScreen/m_7861_ ()V net/minecraft/client/gui/screens/DirectJoinServerScreen/removed ()V +MD: net/minecraft/client/gui/screens/DirectJoinServerScreen/m_7933_ (III)Z net/minecraft/client/gui/screens/DirectJoinServerScreen/keyPressed (III)Z +MD: net/minecraft/client/gui/screens/DirectJoinServerScreen/m_86600_ ()V net/minecraft/client/gui/screens/DirectJoinServerScreen/tick ()V +MD: net/minecraft/client/gui/screens/DirectJoinServerScreen/m_88315_ (Lnet/minecraft/client/gui/GuiGraphics;IIF)V net/minecraft/client/gui/screens/DirectJoinServerScreen/render (Lnet/minecraft/client/gui/GuiGraphics;IIF)V +MD: net/minecraft/client/gui/screens/DirectJoinServerScreen/m_95976_ (Lnet/minecraft/client/gui/components/Button;)V net/minecraft/client/gui/screens/DirectJoinServerScreen/lambda$init$2 (Lnet/minecraft/client/gui/components/Button;)V +MD: net/minecraft/client/gui/screens/DirectJoinServerScreen/m_95980_ (Lnet/minecraft/client/gui/components/Button;)V net/minecraft/client/gui/screens/DirectJoinServerScreen/lambda$init$1 (Lnet/minecraft/client/gui/components/Button;)V +MD: net/minecraft/client/gui/screens/DirectJoinServerScreen/m_95982_ (Ljava/lang/String;)V net/minecraft/client/gui/screens/DirectJoinServerScreen/lambda$init$0 (Ljava/lang/String;)V +MD: net/minecraft/client/gui/screens/DirectJoinServerScreen/m_95986_ ()V net/minecraft/client/gui/screens/DirectJoinServerScreen/onSelect ()V +MD: net/minecraft/client/gui/screens/DirectJoinServerScreen/m_95987_ ()V net/minecraft/client/gui/screens/DirectJoinServerScreen/updateSelectButtonStatus ()V +MD: net/minecraft/client/gui/screens/DisconnectedScreen/ ()V net/minecraft/client/gui/screens/DisconnectedScreen/ ()V +MD: net/minecraft/client/gui/screens/DisconnectedScreen/ (Lnet/minecraft/client/gui/screens/Screen;Lnet/minecraft/network/chat/Component;Lnet/minecraft/network/chat/Component;)V net/minecraft/client/gui/screens/DisconnectedScreen/ (Lnet/minecraft/client/gui/screens/Screen;Lnet/minecraft/network/chat/Component;Lnet/minecraft/network/chat/Component;)V +MD: net/minecraft/client/gui/screens/DisconnectedScreen/ (Lnet/minecraft/client/gui/screens/Screen;Lnet/minecraft/network/chat/Component;Lnet/minecraft/network/chat/Component;Lnet/minecraft/network/chat/Component;)V net/minecraft/client/gui/screens/DisconnectedScreen/ (Lnet/minecraft/client/gui/screens/Screen;Lnet/minecraft/network/chat/Component;Lnet/minecraft/network/chat/Component;Lnet/minecraft/network/chat/Component;)V +MD: net/minecraft/client/gui/screens/DisconnectedScreen/m_142562_ ()Lnet/minecraft/network/chat/Component; net/minecraft/client/gui/screens/DisconnectedScreen/getNarrationMessage ()Lnet/minecraft/network/chat/Component; +MD: net/minecraft/client/gui/screens/DisconnectedScreen/m_267719_ ()V net/minecraft/client/gui/screens/DisconnectedScreen/repositionElements ()V +MD: net/minecraft/client/gui/screens/DisconnectedScreen/m_279765_ (Lnet/minecraft/client/gui/components/Button;)V net/minecraft/client/gui/screens/DisconnectedScreen/lambda$init$0 (Lnet/minecraft/client/gui/components/Button;)V +MD: net/minecraft/client/gui/screens/DisconnectedScreen/m_279766_ (Lnet/minecraft/client/gui/components/Button;)V net/minecraft/client/gui/screens/DisconnectedScreen/lambda$init$1 (Lnet/minecraft/client/gui/components/Button;)V +MD: net/minecraft/client/gui/screens/DisconnectedScreen/m_6913_ ()Z net/minecraft/client/gui/screens/DisconnectedScreen/shouldCloseOnEsc ()Z +MD: net/minecraft/client/gui/screens/DisconnectedScreen/m_7856_ ()V net/minecraft/client/gui/screens/DisconnectedScreen/init ()V +MD: net/minecraft/client/gui/screens/DisconnectedScreen/m_88315_ (Lnet/minecraft/client/gui/GuiGraphics;IIF)V net/minecraft/client/gui/screens/DisconnectedScreen/render (Lnet/minecraft/client/gui/GuiGraphics;IIF)V +MD: net/minecraft/client/gui/screens/EditServerScreen/ ()V net/minecraft/client/gui/screens/EditServerScreen/ ()V +MD: net/minecraft/client/gui/screens/EditServerScreen/ (Lnet/minecraft/client/gui/screens/Screen;Lit/unimi/dsi/fastutil/booleans/BooleanConsumer;Lnet/minecraft/client/multiplayer/ServerData;)V net/minecraft/client/gui/screens/EditServerScreen/ (Lnet/minecraft/client/gui/screens/Screen;Lit/unimi/dsi/fastutil/booleans/BooleanConsumer;Lnet/minecraft/client/multiplayer/ServerData;)V +MD: net/minecraft/client/gui/screens/EditServerScreen/m_169296_ (Lnet/minecraft/client/gui/components/Button;)V net/minecraft/client/gui/screens/EditServerScreen/lambda$init$4 (Lnet/minecraft/client/gui/components/Button;)V +MD: net/minecraft/client/gui/screens/EditServerScreen/m_169298_ (Lnet/minecraft/client/gui/components/CycleButton;Lnet/minecraft/client/multiplayer/ServerData$ServerPackStatus;)V net/minecraft/client/gui/screens/EditServerScreen/lambda$init$2 (Lnet/minecraft/client/gui/components/CycleButton;Lnet/minecraft/client/multiplayer/ServerData$ServerPackStatus;)V +MD: net/minecraft/client/gui/screens/EditServerScreen/m_169301_ (Ljava/lang/String;)V net/minecraft/client/gui/screens/EditServerScreen/lambda$init$1 (Ljava/lang/String;)V +MD: net/minecraft/client/gui/screens/EditServerScreen/m_169303_ (Ljava/lang/String;)V net/minecraft/client/gui/screens/EditServerScreen/lambda$init$0 (Ljava/lang/String;)V +MD: net/minecraft/client/gui/screens/EditServerScreen/m_169305_ ()V net/minecraft/client/gui/screens/EditServerScreen/updateAddButtonStatus ()V +MD: net/minecraft/client/gui/screens/EditServerScreen/m_6574_ (Lnet/minecraft/client/Minecraft;II)V net/minecraft/client/gui/screens/EditServerScreen/resize (Lnet/minecraft/client/Minecraft;II)V +MD: net/minecraft/client/gui/screens/EditServerScreen/m_7379_ ()V net/minecraft/client/gui/screens/EditServerScreen/onClose ()V +MD: net/minecraft/client/gui/screens/EditServerScreen/m_7856_ ()V net/minecraft/client/gui/screens/EditServerScreen/init ()V +MD: net/minecraft/client/gui/screens/EditServerScreen/m_86600_ ()V net/minecraft/client/gui/screens/EditServerScreen/tick ()V +MD: net/minecraft/client/gui/screens/EditServerScreen/m_88315_ (Lnet/minecraft/client/gui/GuiGraphics;IIF)V net/minecraft/client/gui/screens/EditServerScreen/render (Lnet/minecraft/client/gui/GuiGraphics;IIF)V +MD: net/minecraft/client/gui/screens/EditServerScreen/m_96029_ (Lnet/minecraft/client/gui/components/Button;)V net/minecraft/client/gui/screens/EditServerScreen/lambda$init$3 (Lnet/minecraft/client/gui/components/Button;)V +MD: net/minecraft/client/gui/screens/EditServerScreen/m_96045_ ()V net/minecraft/client/gui/screens/EditServerScreen/onAdd ()V +MD: net/minecraft/client/gui/screens/ErrorScreen/ (Lnet/minecraft/network/chat/Component;Lnet/minecraft/network/chat/Component;)V net/minecraft/client/gui/screens/ErrorScreen/ (Lnet/minecraft/network/chat/Component;Lnet/minecraft/network/chat/Component;)V +MD: net/minecraft/client/gui/screens/ErrorScreen/m_279767_ (Lnet/minecraft/client/gui/components/Button;)V net/minecraft/client/gui/screens/ErrorScreen/lambda$init$0 (Lnet/minecraft/client/gui/components/Button;)V +MD: net/minecraft/client/gui/screens/ErrorScreen/m_6913_ ()Z net/minecraft/client/gui/screens/ErrorScreen/shouldCloseOnEsc ()Z +MD: net/minecraft/client/gui/screens/ErrorScreen/m_7856_ ()V net/minecraft/client/gui/screens/ErrorScreen/init ()V +MD: net/minecraft/client/gui/screens/ErrorScreen/m_88315_ (Lnet/minecraft/client/gui/GuiGraphics;IIF)V net/minecraft/client/gui/screens/ErrorScreen/render (Lnet/minecraft/client/gui/GuiGraphics;IIF)V +MD: net/minecraft/client/gui/screens/FaviconTexture/ ()V net/minecraft/client/gui/screens/FaviconTexture/ ()V +MD: net/minecraft/client/gui/screens/FaviconTexture/ (Lnet/minecraft/client/renderer/texture/TextureManager;Lnet/minecraft/resources/ResourceLocation;)V net/minecraft/client/gui/screens/FaviconTexture/ (Lnet/minecraft/client/renderer/texture/TextureManager;Lnet/minecraft/resources/ResourceLocation;)V +MD: net/minecraft/client/gui/screens/FaviconTexture/close ()V net/minecraft/client/gui/screens/FaviconTexture/close ()V +MD: net/minecraft/client/gui/screens/FaviconTexture/m_289187_ (Lnet/minecraft/client/renderer/texture/TextureManager;Ljava/lang/String;)Lnet/minecraft/client/gui/screens/FaviconTexture; net/minecraft/client/gui/screens/FaviconTexture/forServer (Lnet/minecraft/client/renderer/texture/TextureManager;Ljava/lang/String;)Lnet/minecraft/client/gui/screens/FaviconTexture; +MD: net/minecraft/client/gui/screens/FaviconTexture/m_289196_ ()Lnet/minecraft/resources/ResourceLocation; net/minecraft/client/gui/screens/FaviconTexture/textureLocation ()Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/client/gui/screens/FaviconTexture/m_289201_ (Lcom/mojang/blaze3d/platform/NativeImage;)V net/minecraft/client/gui/screens/FaviconTexture/upload (Lcom/mojang/blaze3d/platform/NativeImage;)V +MD: net/minecraft/client/gui/screens/FaviconTexture/m_289210_ (Lnet/minecraft/client/renderer/texture/TextureManager;Ljava/lang/String;)Lnet/minecraft/client/gui/screens/FaviconTexture; net/minecraft/client/gui/screens/FaviconTexture/forWorld (Lnet/minecraft/client/renderer/texture/TextureManager;Ljava/lang/String;)Lnet/minecraft/client/gui/screens/FaviconTexture; +MD: net/minecraft/client/gui/screens/FaviconTexture/m_289218_ ()V net/minecraft/client/gui/screens/FaviconTexture/clear ()V +MD: net/minecraft/client/gui/screens/FaviconTexture/m_289229_ ()V net/minecraft/client/gui/screens/FaviconTexture/checkOpen ()V +MD: net/minecraft/client/gui/screens/GenericDirtMessageScreen/ (Lnet/minecraft/network/chat/Component;)V net/minecraft/client/gui/screens/GenericDirtMessageScreen/ (Lnet/minecraft/network/chat/Component;)V +MD: net/minecraft/client/gui/screens/GenericDirtMessageScreen/m_6913_ ()Z net/minecraft/client/gui/screens/GenericDirtMessageScreen/shouldCloseOnEsc ()Z +MD: net/minecraft/client/gui/screens/GenericDirtMessageScreen/m_88315_ (Lnet/minecraft/client/gui/GuiGraphics;IIF)V net/minecraft/client/gui/screens/GenericDirtMessageScreen/render (Lnet/minecraft/client/gui/GuiGraphics;IIF)V +MD: net/minecraft/client/gui/screens/GenericWaitingScreen/ (Lnet/minecraft/network/chat/Component;Lnet/minecraft/network/chat/Component;Lnet/minecraft/network/chat/Component;Ljava/lang/Runnable;I)V net/minecraft/client/gui/screens/GenericWaitingScreen/ (Lnet/minecraft/network/chat/Component;Lnet/minecraft/network/chat/Component;Lnet/minecraft/network/chat/Component;Ljava/lang/Runnable;I)V +MD: net/minecraft/client/gui/screens/GenericWaitingScreen/m_142562_ ()Lnet/minecraft/network/chat/Component; net/minecraft/client/gui/screens/GenericWaitingScreen/getNarrationMessage ()Lnet/minecraft/network/chat/Component; +MD: net/minecraft/client/gui/screens/GenericWaitingScreen/m_239907_ (Lnet/minecraft/client/gui/components/Button;)V net/minecraft/client/gui/screens/GenericWaitingScreen/lambda$init$0 (Lnet/minecraft/client/gui/components/Button;)V +MD: net/minecraft/client/gui/screens/GenericWaitingScreen/m_240290_ (Lnet/minecraft/network/chat/Component;Lnet/minecraft/network/chat/Component;Lnet/minecraft/network/chat/Component;Ljava/lang/Runnable;)Lnet/minecraft/client/gui/screens/GenericWaitingScreen; net/minecraft/client/gui/screens/GenericWaitingScreen/createCompleted (Lnet/minecraft/network/chat/Component;Lnet/minecraft/network/chat/Component;Lnet/minecraft/network/chat/Component;Ljava/lang/Runnable;)Lnet/minecraft/client/gui/screens/GenericWaitingScreen; +MD: net/minecraft/client/gui/screens/GenericWaitingScreen/m_240309_ (Lnet/minecraft/network/chat/Component;Lnet/minecraft/network/chat/Component;Ljava/lang/Runnable;)Lnet/minecraft/client/gui/screens/GenericWaitingScreen; net/minecraft/client/gui/screens/GenericWaitingScreen/createWaiting (Lnet/minecraft/network/chat/Component;Lnet/minecraft/network/chat/Component;Ljava/lang/Runnable;)Lnet/minecraft/client/gui/screens/GenericWaitingScreen; +MD: net/minecraft/client/gui/screens/GenericWaitingScreen/m_6913_ ()Z net/minecraft/client/gui/screens/GenericWaitingScreen/shouldCloseOnEsc ()Z +MD: net/minecraft/client/gui/screens/GenericWaitingScreen/m_7379_ ()V net/minecraft/client/gui/screens/GenericWaitingScreen/onClose ()V +MD: net/minecraft/client/gui/screens/GenericWaitingScreen/m_7856_ ()V net/minecraft/client/gui/screens/GenericWaitingScreen/init ()V +MD: net/minecraft/client/gui/screens/GenericWaitingScreen/m_86600_ ()V net/minecraft/client/gui/screens/GenericWaitingScreen/tick ()V +MD: net/minecraft/client/gui/screens/GenericWaitingScreen/m_88315_ (Lnet/minecraft/client/gui/GuiGraphics;IIF)V net/minecraft/client/gui/screens/GenericWaitingScreen/render (Lnet/minecraft/client/gui/GuiGraphics;IIF)V +MD: net/minecraft/client/gui/screens/InBedChatScreen/ ()V net/minecraft/client/gui/screens/InBedChatScreen/ ()V +MD: net/minecraft/client/gui/screens/InBedChatScreen/m_193839_ ()V net/minecraft/client/gui/screens/InBedChatScreen/onPlayerWokeUp ()V +MD: net/minecraft/client/gui/screens/InBedChatScreen/m_5534_ (CI)Z net/minecraft/client/gui/screens/InBedChatScreen/charTyped (CI)Z +MD: net/minecraft/client/gui/screens/InBedChatScreen/m_7379_ ()V net/minecraft/client/gui/screens/InBedChatScreen/onClose ()V +MD: net/minecraft/client/gui/screens/InBedChatScreen/m_7856_ ()V net/minecraft/client/gui/screens/InBedChatScreen/init ()V +MD: net/minecraft/client/gui/screens/InBedChatScreen/m_7933_ (III)Z net/minecraft/client/gui/screens/InBedChatScreen/keyPressed (III)Z +MD: net/minecraft/client/gui/screens/InBedChatScreen/m_88315_ (Lnet/minecraft/client/gui/GuiGraphics;IIF)V net/minecraft/client/gui/screens/InBedChatScreen/render (Lnet/minecraft/client/gui/GuiGraphics;IIF)V +MD: net/minecraft/client/gui/screens/InBedChatScreen/m_96073_ (Lnet/minecraft/client/gui/components/Button;)V net/minecraft/client/gui/screens/InBedChatScreen/lambda$init$0 (Lnet/minecraft/client/gui/components/Button;)V +MD: net/minecraft/client/gui/screens/InBedChatScreen/m_96077_ ()V net/minecraft/client/gui/screens/InBedChatScreen/sendWakeUp ()V +MD: net/minecraft/client/gui/screens/LanguageSelectScreen/ ()V net/minecraft/client/gui/screens/LanguageSelectScreen/ ()V +MD: net/minecraft/client/gui/screens/LanguageSelectScreen/ (Lnet/minecraft/client/gui/screens/Screen;Lnet/minecraft/client/Options;Lnet/minecraft/client/resources/language/LanguageManager;)V net/minecraft/client/gui/screens/LanguageSelectScreen/ (Lnet/minecraft/client/gui/screens/Screen;Lnet/minecraft/client/Options;Lnet/minecraft/client/resources/language/LanguageManager;)V +MD: net/minecraft/client/gui/screens/LanguageSelectScreen/m_287798_ (Lnet/minecraft/client/gui/components/Button;)V net/minecraft/client/gui/screens/LanguageSelectScreen/lambda$init$0 (Lnet/minecraft/client/gui/components/Button;)V +MD: net/minecraft/client/gui/screens/LanguageSelectScreen/m_288190_ ()V net/minecraft/client/gui/screens/LanguageSelectScreen/onDone ()V +MD: net/minecraft/client/gui/screens/LanguageSelectScreen/m_7856_ ()V net/minecraft/client/gui/screens/LanguageSelectScreen/init ()V +MD: net/minecraft/client/gui/screens/LanguageSelectScreen/m_7933_ (III)Z net/minecraft/client/gui/screens/LanguageSelectScreen/keyPressed (III)Z +MD: net/minecraft/client/gui/screens/LanguageSelectScreen/m_88315_ (Lnet/minecraft/client/gui/GuiGraphics;IIF)V net/minecraft/client/gui/screens/LanguageSelectScreen/render (Lnet/minecraft/client/gui/GuiGraphics;IIF)V +MD: net/minecraft/client/gui/screens/LanguageSelectScreen$LanguageSelectionList/ (Lnet/minecraft/client/gui/screens/LanguageSelectScreen;Lnet/minecraft/client/Minecraft;)V net/minecraft/client/gui/screens/LanguageSelectScreen$LanguageSelectionList/ (Lnet/minecraft/client/gui/screens/LanguageSelectScreen;Lnet/minecraft/client/Minecraft;)V +MD: net/minecraft/client/gui/screens/LanguageSelectScreen$LanguageSelectionList/m_169306_ (Lnet/minecraft/client/gui/screens/LanguageSelectScreen$LanguageSelectionList;)I net/minecraft/client/gui/screens/LanguageSelectScreen$LanguageSelectionList/access$000 (Lnet/minecraft/client/gui/screens/LanguageSelectScreen$LanguageSelectionList;)I +MD: net/minecraft/client/gui/screens/LanguageSelectScreen$LanguageSelectionList/m_264519_ (Ljava/lang/String;Ljava/lang/String;Lnet/minecraft/client/resources/language/LanguageInfo;)V net/minecraft/client/gui/screens/LanguageSelectScreen$LanguageSelectionList/lambda$new$0 (Ljava/lang/String;Ljava/lang/String;Lnet/minecraft/client/resources/language/LanguageInfo;)V +MD: net/minecraft/client/gui/screens/LanguageSelectScreen$LanguageSelectionList/m_5756_ ()I net/minecraft/client/gui/screens/LanguageSelectScreen$LanguageSelectionList/getScrollbarPosition ()I +MD: net/minecraft/client/gui/screens/LanguageSelectScreen$LanguageSelectionList/m_5759_ ()I net/minecraft/client/gui/screens/LanguageSelectScreen$LanguageSelectionList/getRowWidth ()I +MD: net/minecraft/client/gui/screens/LanguageSelectScreen$LanguageSelectionList/m_7733_ (Lnet/minecraft/client/gui/GuiGraphics;)V net/minecraft/client/gui/screens/LanguageSelectScreen$LanguageSelectionList/renderBackground (Lnet/minecraft/client/gui/GuiGraphics;)V +MD: net/minecraft/client/gui/screens/LanguageSelectScreen$LanguageSelectionList$Entry/ (Lnet/minecraft/client/gui/screens/LanguageSelectScreen$LanguageSelectionList;Ljava/lang/String;Lnet/minecraft/client/resources/language/LanguageInfo;)V net/minecraft/client/gui/screens/LanguageSelectScreen$LanguageSelectionList$Entry/ (Lnet/minecraft/client/gui/screens/LanguageSelectScreen$LanguageSelectionList;Ljava/lang/String;Lnet/minecraft/client/resources/language/LanguageInfo;)V +MD: net/minecraft/client/gui/screens/LanguageSelectScreen$LanguageSelectionList$Entry/m_142172_ ()Lnet/minecraft/network/chat/Component; net/minecraft/client/gui/screens/LanguageSelectScreen$LanguageSelectionList$Entry/getNarration ()Lnet/minecraft/network/chat/Component; +MD: net/minecraft/client/gui/screens/LanguageSelectScreen$LanguageSelectionList$Entry/m_6311_ (Lnet/minecraft/client/gui/GuiGraphics;IIIIIIIZF)V net/minecraft/client/gui/screens/LanguageSelectScreen$LanguageSelectionList$Entry/render (Lnet/minecraft/client/gui/GuiGraphics;IIIIIIIZF)V +MD: net/minecraft/client/gui/screens/LanguageSelectScreen$LanguageSelectionList$Entry/m_6375_ (DDI)Z net/minecraft/client/gui/screens/LanguageSelectScreen$LanguageSelectionList$Entry/mouseClicked (DDI)Z +MD: net/minecraft/client/gui/screens/LanguageSelectScreen$LanguageSelectionList$Entry/m_96120_ ()V net/minecraft/client/gui/screens/LanguageSelectScreen$LanguageSelectionList$Entry/select ()V +MD: net/minecraft/client/gui/screens/LevelLoadingScreen/ ()V net/minecraft/client/gui/screens/LevelLoadingScreen/ ()V +MD: net/minecraft/client/gui/screens/LevelLoadingScreen/ (Lnet/minecraft/server/level/progress/StoringChunkProgressListener;)V net/minecraft/client/gui/screens/LevelLoadingScreen/ (Lnet/minecraft/server/level/progress/StoringChunkProgressListener;)V +MD: net/minecraft/client/gui/screens/LevelLoadingScreen/m_142227_ (Lnet/minecraft/client/gui/narration/NarrationElementOutput;)V net/minecraft/client/gui/screens/LevelLoadingScreen/updateNarratedWidget (Lnet/minecraft/client/gui/narration/NarrationElementOutput;)V +MD: net/minecraft/client/gui/screens/LevelLoadingScreen/m_169313_ ()Ljava/lang/String; net/minecraft/client/gui/screens/LevelLoadingScreen/getFormattedProgress ()Ljava/lang/String; +MD: net/minecraft/client/gui/screens/LevelLoadingScreen/m_264396_ ()Z net/minecraft/client/gui/screens/LevelLoadingScreen/shouldNarrateNavigation ()Z +MD: net/minecraft/client/gui/screens/LevelLoadingScreen/m_279769_ (Lit/unimi/dsi/fastutil/objects/Object2IntOpenHashMap;)V net/minecraft/client/gui/screens/LevelLoadingScreen/lambda$static$1 (Lit/unimi/dsi/fastutil/objects/Object2IntOpenHashMap;)V +MD: net/minecraft/client/gui/screens/LevelLoadingScreen/m_285672_ (ILnet/minecraft/client/gui/GuiGraphics;IIIIILnet/minecraft/server/level/progress/StoringChunkProgressListener;III)V net/minecraft/client/gui/screens/LevelLoadingScreen/lambda$renderChunks$0 (ILnet/minecraft/client/gui/GuiGraphics;IIIIILnet/minecraft/server/level/progress/StoringChunkProgressListener;III)V +MD: net/minecraft/client/gui/screens/LevelLoadingScreen/m_6913_ ()Z net/minecraft/client/gui/screens/LevelLoadingScreen/shouldCloseOnEsc ()Z +MD: net/minecraft/client/gui/screens/LevelLoadingScreen/m_7861_ ()V net/minecraft/client/gui/screens/LevelLoadingScreen/removed ()V +MD: net/minecraft/client/gui/screens/LevelLoadingScreen/m_88315_ (Lnet/minecraft/client/gui/GuiGraphics;IIF)V net/minecraft/client/gui/screens/LevelLoadingScreen/render (Lnet/minecraft/client/gui/GuiGraphics;IIF)V +MD: net/minecraft/client/gui/screens/LevelLoadingScreen/m_96149_ (Lnet/minecraft/client/gui/GuiGraphics;Lnet/minecraft/server/level/progress/StoringChunkProgressListener;IIII)V net/minecraft/client/gui/screens/LevelLoadingScreen/renderChunks (Lnet/minecraft/client/gui/GuiGraphics;Lnet/minecraft/server/level/progress/StoringChunkProgressListener;IIII)V +MD: net/minecraft/client/gui/screens/LoadingDotsText/ ()V net/minecraft/client/gui/screens/LoadingDotsText/ ()V +MD: net/minecraft/client/gui/screens/LoadingDotsText/ ()V net/minecraft/client/gui/screens/LoadingDotsText/ ()V +MD: net/minecraft/client/gui/screens/LoadingDotsText/m_232744_ (J)Ljava/lang/String; net/minecraft/client/gui/screens/LoadingDotsText/get (J)Ljava/lang/String; +MD: net/minecraft/client/gui/screens/LoadingOverlay/ ()V net/minecraft/client/gui/screens/LoadingOverlay/ ()V +MD: net/minecraft/client/gui/screens/LoadingOverlay/ (Lnet/minecraft/client/Minecraft;Lnet/minecraft/server/packs/resources/ReloadInstance;Ljava/util/function/Consumer;Z)V net/minecraft/client/gui/screens/LoadingOverlay/ (Lnet/minecraft/client/Minecraft;Lnet/minecraft/server/packs/resources/ReloadInstance;Ljava/util/function/Consumer;Z)V +MD: net/minecraft/client/gui/screens/LoadingOverlay/m_169324_ (II)I net/minecraft/client/gui/screens/LoadingOverlay/replaceAlpha (II)I +MD: net/minecraft/client/gui/screens/LoadingOverlay/m_169327_ ()I net/minecraft/client/gui/screens/LoadingOverlay/lambda$static$0 ()I +MD: net/minecraft/client/gui/screens/LoadingOverlay/m_7859_ ()Z net/minecraft/client/gui/screens/LoadingOverlay/isPauseScreen ()Z +MD: net/minecraft/client/gui/screens/LoadingOverlay/m_88315_ (Lnet/minecraft/client/gui/GuiGraphics;IIF)V net/minecraft/client/gui/screens/LoadingOverlay/render (Lnet/minecraft/client/gui/GuiGraphics;IIF)V +MD: net/minecraft/client/gui/screens/LoadingOverlay/m_96182_ (Lnet/minecraft/client/gui/GuiGraphics;IIIIF)V net/minecraft/client/gui/screens/LoadingOverlay/drawProgressBar (Lnet/minecraft/client/gui/GuiGraphics;IIIIF)V +MD: net/minecraft/client/gui/screens/LoadingOverlay/m_96189_ (Lnet/minecraft/client/Minecraft;)V net/minecraft/client/gui/screens/LoadingOverlay/registerTextures (Lnet/minecraft/client/Minecraft;)V +MD: net/minecraft/client/gui/screens/LoadingOverlay$LogoTexture/ ()V net/minecraft/client/gui/screens/LoadingOverlay$LogoTexture/ ()V +MD: net/minecraft/client/gui/screens/LoadingOverlay$LogoTexture/m_6335_ (Lnet/minecraft/server/packs/resources/ResourceManager;)Lnet/minecraft/client/renderer/texture/SimpleTexture$TextureImage; net/minecraft/client/gui/screens/LoadingOverlay$LogoTexture/getTextureImage (Lnet/minecraft/server/packs/resources/ResourceManager;)Lnet/minecraft/client/renderer/texture/SimpleTexture$TextureImage; +MD: net/minecraft/client/gui/screens/MenuScreens/ ()V net/minecraft/client/gui/screens/MenuScreens/ ()V +MD: net/minecraft/client/gui/screens/MenuScreens/ ()V net/minecraft/client/gui/screens/MenuScreens/ ()V +MD: net/minecraft/client/gui/screens/MenuScreens/m_96198_ ()Z net/minecraft/client/gui/screens/MenuScreens/selfTest ()Z +MD: net/minecraft/client/gui/screens/MenuScreens/m_96199_ (Lnet/minecraft/world/inventory/MenuType;)Lnet/minecraft/client/gui/screens/MenuScreens$ScreenConstructor; net/minecraft/client/gui/screens/MenuScreens/getConstructor (Lnet/minecraft/world/inventory/MenuType;)Lnet/minecraft/client/gui/screens/MenuScreens$ScreenConstructor; +MD: net/minecraft/client/gui/screens/MenuScreens/m_96201_ (Lnet/minecraft/world/inventory/MenuType;Lnet/minecraft/client/Minecraft;ILnet/minecraft/network/chat/Component;)V net/minecraft/client/gui/screens/MenuScreens/create (Lnet/minecraft/world/inventory/MenuType;Lnet/minecraft/client/Minecraft;ILnet/minecraft/network/chat/Component;)V +MD: net/minecraft/client/gui/screens/MenuScreens/m_96206_ (Lnet/minecraft/world/inventory/MenuType;Lnet/minecraft/client/gui/screens/MenuScreens$ScreenConstructor;)V net/minecraft/client/gui/screens/MenuScreens/register (Lnet/minecraft/world/inventory/MenuType;Lnet/minecraft/client/gui/screens/MenuScreens$ScreenConstructor;)V +MD: net/minecraft/client/gui/screens/MenuScreens$ScreenConstructor/m_96209_ (Lnet/minecraft/network/chat/Component;Lnet/minecraft/world/inventory/MenuType;Lnet/minecraft/client/Minecraft;I)V net/minecraft/client/gui/screens/MenuScreens$ScreenConstructor/fromPacket (Lnet/minecraft/network/chat/Component;Lnet/minecraft/world/inventory/MenuType;Lnet/minecraft/client/Minecraft;I)V +MD: net/minecraft/client/gui/screens/MenuScreens$ScreenConstructor/m_96214_ (Lnet/minecraft/world/inventory/AbstractContainerMenu;Lnet/minecraft/world/entity/player/Inventory;Lnet/minecraft/network/chat/Component;)Lnet/minecraft/client/gui/screens/Screen; net/minecraft/client/gui/screens/MenuScreens$ScreenConstructor/create (Lnet/minecraft/world/inventory/AbstractContainerMenu;Lnet/minecraft/world/entity/player/Inventory;Lnet/minecraft/network/chat/Component;)Lnet/minecraft/client/gui/screens/Screen; +MD: net/minecraft/client/gui/screens/MouseSettingsScreen/ (Lnet/minecraft/client/gui/screens/Screen;Lnet/minecraft/client/Options;)V net/minecraft/client/gui/screens/MouseSettingsScreen/ (Lnet/minecraft/client/gui/screens/Screen;Lnet/minecraft/client/Options;)V +MD: net/minecraft/client/gui/screens/MouseSettingsScreen/m_232746_ (I)[Lnet/minecraft/client/OptionInstance; net/minecraft/client/gui/screens/MouseSettingsScreen/lambda$init$0 (I)[Lnet/minecraft/client/OptionInstance; +MD: net/minecraft/client/gui/screens/MouseSettingsScreen/m_232748_ (Lnet/minecraft/client/Options;)[Lnet/minecraft/client/OptionInstance; net/minecraft/client/gui/screens/MouseSettingsScreen/options (Lnet/minecraft/client/Options;)[Lnet/minecraft/client/OptionInstance; +MD: net/minecraft/client/gui/screens/MouseSettingsScreen/m_279770_ (Lnet/minecraft/client/gui/components/Button;)V net/minecraft/client/gui/screens/MouseSettingsScreen/lambda$init$1 (Lnet/minecraft/client/gui/components/Button;)V +MD: net/minecraft/client/gui/screens/MouseSettingsScreen/m_7856_ ()V net/minecraft/client/gui/screens/MouseSettingsScreen/init ()V +MD: net/minecraft/client/gui/screens/MouseSettingsScreen/m_88315_ (Lnet/minecraft/client/gui/GuiGraphics;IIF)V net/minecraft/client/gui/screens/MouseSettingsScreen/render (Lnet/minecraft/client/gui/GuiGraphics;IIF)V +MD: net/minecraft/client/gui/screens/OnlineOptionsScreen/ (Lnet/minecraft/client/gui/screens/Screen;Lnet/minecraft/client/Options;[Lnet/minecraft/client/OptionInstance;Lnet/minecraft/client/OptionInstance;)V net/minecraft/client/gui/screens/OnlineOptionsScreen/ (Lnet/minecraft/client/gui/screens/Screen;Lnet/minecraft/client/Options;[Lnet/minecraft/client/OptionInstance;Lnet/minecraft/client/OptionInstance;)V +MD: net/minecraft/client/gui/screens/OnlineOptionsScreen/m_260895_ (Lnet/minecraft/world/Difficulty;Lnet/minecraft/network/chat/Component;Lcom/mojang/datafixers/util/Unit;)Lnet/minecraft/network/chat/Component; net/minecraft/client/gui/screens/OnlineOptionsScreen/lambda$createOnlineOptionsScreen$0 (Lnet/minecraft/world/Difficulty;Lnet/minecraft/network/chat/Component;Lcom/mojang/datafixers/util/Unit;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/client/gui/screens/OnlineOptionsScreen/m_260896_ (Lnet/minecraft/client/Minecraft;Lnet/minecraft/client/gui/screens/Screen;Lnet/minecraft/client/Options;)Lnet/minecraft/client/gui/screens/OnlineOptionsScreen; net/minecraft/client/gui/screens/OnlineOptionsScreen/createOnlineOptionsScreen (Lnet/minecraft/client/Minecraft;Lnet/minecraft/client/gui/screens/Screen;Lnet/minecraft/client/Options;)Lnet/minecraft/client/gui/screens/OnlineOptionsScreen; +MD: net/minecraft/client/gui/screens/OnlineOptionsScreen/m_261325_ (Lcom/mojang/datafixers/util/Unit;)V net/minecraft/client/gui/screens/OnlineOptionsScreen/lambda$createOnlineOptionsScreen$1 (Lcom/mojang/datafixers/util/Unit;)V +MD: net/minecraft/client/gui/screens/OnlineOptionsScreen/m_287799_ (Lnet/minecraft/client/multiplayer/ClientLevel;)Lnet/minecraft/client/OptionInstance; net/minecraft/client/gui/screens/OnlineOptionsScreen/lambda$createOnlineOptionsScreen$2 (Lnet/minecraft/client/multiplayer/ClientLevel;)Lnet/minecraft/client/OptionInstance; +MD: net/minecraft/client/gui/screens/OnlineOptionsScreen/m_7856_ ()V net/minecraft/client/gui/screens/OnlineOptionsScreen/init ()V +MD: net/minecraft/client/gui/screens/OptionsScreen/ ()V net/minecraft/client/gui/screens/OptionsScreen/ ()V +MD: net/minecraft/client/gui/screens/OptionsScreen/ (Lnet/minecraft/client/gui/screens/Screen;Lnet/minecraft/client/Options;)V net/minecraft/client/gui/screens/OptionsScreen/ (Lnet/minecraft/client/gui/screens/Screen;Lnet/minecraft/client/Options;)V +MD: net/minecraft/client/gui/screens/OptionsScreen/m_193852_ (Lnet/minecraft/client/Minecraft;Lnet/minecraft/client/gui/components/CycleButton;Lnet/minecraft/world/Difficulty;)V net/minecraft/client/gui/screens/OptionsScreen/lambda$createDifficultyButton$13 (Lnet/minecraft/client/Minecraft;Lnet/minecraft/client/gui/components/CycleButton;Lnet/minecraft/world/Difficulty;)V +MD: net/minecraft/client/gui/screens/OptionsScreen/m_260745_ ()Lnet/minecraft/client/gui/screens/Screen; net/minecraft/client/gui/screens/OptionsScreen/lambda$init$1 ()Lnet/minecraft/client/gui/screens/Screen; +MD: net/minecraft/client/gui/screens/OptionsScreen/m_260746_ ()Lnet/minecraft/client/gui/screens/Screen; net/minecraft/client/gui/screens/OptionsScreen/lambda$init$5 ()Lnet/minecraft/client/gui/screens/Screen; +MD: net/minecraft/client/gui/screens/OptionsScreen/m_260747_ ()Lnet/minecraft/client/gui/screens/Screen; net/minecraft/client/gui/screens/OptionsScreen/lambda$init$7 ()Lnet/minecraft/client/gui/screens/Screen; +MD: net/minecraft/client/gui/screens/OptionsScreen/m_260751_ ()Lnet/minecraft/client/gui/screens/Screen; net/minecraft/client/gui/screens/OptionsScreen/lambda$init$0 ()Lnet/minecraft/client/gui/screens/Screen; +MD: net/minecraft/client/gui/screens/OptionsScreen/m_260752_ ()Lnet/minecraft/client/gui/screens/Screen; net/minecraft/client/gui/screens/OptionsScreen/lambda$init$3 ()Lnet/minecraft/client/gui/screens/Screen; +MD: net/minecraft/client/gui/screens/OptionsScreen/m_260753_ ()Lnet/minecraft/client/gui/screens/Screen; net/minecraft/client/gui/screens/OptionsScreen/lambda$init$2 ()Lnet/minecraft/client/gui/screens/Screen; +MD: net/minecraft/client/gui/screens/OptionsScreen/m_260755_ ()Lnet/minecraft/client/gui/screens/Screen; net/minecraft/client/gui/screens/OptionsScreen/lambda$init$8 ()Lnet/minecraft/client/gui/screens/Screen; +MD: net/minecraft/client/gui/screens/OptionsScreen/m_260961_ (IILjava/lang/String;Lnet/minecraft/client/Minecraft;)Lnet/minecraft/client/gui/components/CycleButton; net/minecraft/client/gui/screens/OptionsScreen/createDifficultyButton (IILjava/lang/String;Lnet/minecraft/client/Minecraft;)Lnet/minecraft/client/gui/components/CycleButton; +MD: net/minecraft/client/gui/screens/OptionsScreen/m_260993_ (Lnet/minecraft/network/chat/Component;Ljava/util/function/Supplier;)Lnet/minecraft/client/gui/components/Button; net/minecraft/client/gui/screens/OptionsScreen/openScreenButton (Lnet/minecraft/network/chat/Component;Ljava/util/function/Supplier;)Lnet/minecraft/client/gui/components/Button; +MD: net/minecraft/client/gui/screens/OptionsScreen/m_264034_ ()Lnet/minecraft/client/gui/layouts/LayoutElement; net/minecraft/client/gui/screens/OptionsScreen/createOnlineButton ()Lnet/minecraft/client/gui/layouts/LayoutElement; +MD: net/minecraft/client/gui/screens/OptionsScreen/m_274373_ (Lnet/minecraft/server/packs/repository/PackRepository;)V net/minecraft/client/gui/screens/OptionsScreen/applyPacks (Lnet/minecraft/server/packs/repository/PackRepository;)V +MD: net/minecraft/client/gui/screens/OptionsScreen/m_276173_ ()Lnet/minecraft/client/gui/screens/Screen; net/minecraft/client/gui/screens/OptionsScreen/lambda$init$9 ()Lnet/minecraft/client/gui/screens/Screen; +MD: net/minecraft/client/gui/screens/OptionsScreen/m_279771_ (Lnet/minecraft/client/gui/components/Button;)V net/minecraft/client/gui/screens/OptionsScreen/lambda$createOnlineButton$12 (Lnet/minecraft/client/gui/components/Button;)V +MD: net/minecraft/client/gui/screens/OptionsScreen/m_279772_ (Lnet/minecraft/client/gui/components/Button;)V net/minecraft/client/gui/screens/OptionsScreen/lambda$createOnlineButton$11 (Lnet/minecraft/client/gui/components/Button;)V +MD: net/minecraft/client/gui/screens/OptionsScreen/m_279773_ ()Lnet/minecraft/client/gui/screens/Screen; net/minecraft/client/gui/screens/OptionsScreen/lambda$init$6 ()Lnet/minecraft/client/gui/screens/Screen; +MD: net/minecraft/client/gui/screens/OptionsScreen/m_279774_ (Ljava/util/function/Supplier;Lnet/minecraft/client/gui/components/Button;)V net/minecraft/client/gui/screens/OptionsScreen/lambda$openScreenButton$14 (Ljava/util/function/Supplier;Lnet/minecraft/client/gui/components/Button;)V +MD: net/minecraft/client/gui/screens/OptionsScreen/m_279775_ (Lnet/minecraft/client/gui/components/Button;)V net/minecraft/client/gui/screens/OptionsScreen/lambda$init$10 (Lnet/minecraft/client/gui/components/Button;)V +MD: net/minecraft/client/gui/screens/OptionsScreen/m_279776_ ()Lnet/minecraft/client/gui/screens/Screen; net/minecraft/client/gui/screens/OptionsScreen/lambda$init$4 ()Lnet/minecraft/client/gui/screens/Screen; +MD: net/minecraft/client/gui/screens/OptionsScreen/m_7856_ ()V net/minecraft/client/gui/screens/OptionsScreen/init ()V +MD: net/minecraft/client/gui/screens/OptionsScreen/m_7861_ ()V net/minecraft/client/gui/screens/OptionsScreen/removed ()V +MD: net/minecraft/client/gui/screens/OptionsScreen/m_88315_ (Lnet/minecraft/client/gui/GuiGraphics;IIF)V net/minecraft/client/gui/screens/OptionsScreen/render (Lnet/minecraft/client/gui/GuiGraphics;IIF)V +MD: net/minecraft/client/gui/screens/OptionsScreen/m_96260_ (Z)V net/minecraft/client/gui/screens/OptionsScreen/lockCallback (Z)V +MD: net/minecraft/client/gui/screens/OptionsSubScreen/ (Lnet/minecraft/client/gui/screens/Screen;Lnet/minecraft/client/Options;Lnet/minecraft/network/chat/Component;)V net/minecraft/client/gui/screens/OptionsSubScreen/ (Lnet/minecraft/client/gui/screens/Screen;Lnet/minecraft/client/Options;Lnet/minecraft/network/chat/Component;)V +MD: net/minecraft/client/gui/screens/OptionsSubScreen/m_280419_ (Lnet/minecraft/client/gui/GuiGraphics;Lnet/minecraft/client/gui/components/OptionsList;IIF)V net/minecraft/client/gui/screens/OptionsSubScreen/basicListRender (Lnet/minecraft/client/gui/GuiGraphics;Lnet/minecraft/client/gui/components/OptionsList;IIF)V +MD: net/minecraft/client/gui/screens/OptionsSubScreen/m_7379_ ()V net/minecraft/client/gui/screens/OptionsSubScreen/onClose ()V +MD: net/minecraft/client/gui/screens/OptionsSubScreen/m_7861_ ()V net/minecraft/client/gui/screens/OptionsSubScreen/removed ()V +MD: net/minecraft/client/gui/screens/OutOfMemoryScreen/ ()V net/minecraft/client/gui/screens/OutOfMemoryScreen/ ()V +MD: net/minecraft/client/gui/screens/OutOfMemoryScreen/m_279777_ (Lnet/minecraft/client/gui/components/Button;)V net/minecraft/client/gui/screens/OutOfMemoryScreen/lambda$init$0 (Lnet/minecraft/client/gui/components/Button;)V +MD: net/minecraft/client/gui/screens/OutOfMemoryScreen/m_279778_ (Lnet/minecraft/client/gui/components/Button;)V net/minecraft/client/gui/screens/OutOfMemoryScreen/lambda$init$1 (Lnet/minecraft/client/gui/components/Button;)V +MD: net/minecraft/client/gui/screens/OutOfMemoryScreen/m_6913_ ()Z net/minecraft/client/gui/screens/OutOfMemoryScreen/shouldCloseOnEsc ()Z +MD: net/minecraft/client/gui/screens/OutOfMemoryScreen/m_7856_ ()V net/minecraft/client/gui/screens/OutOfMemoryScreen/init ()V +MD: net/minecraft/client/gui/screens/OutOfMemoryScreen/m_88315_ (Lnet/minecraft/client/gui/GuiGraphics;IIF)V net/minecraft/client/gui/screens/OutOfMemoryScreen/render (Lnet/minecraft/client/gui/GuiGraphics;IIF)V +MD: net/minecraft/client/gui/screens/Overlay/ ()V net/minecraft/client/gui/screens/Overlay/ ()V +MD: net/minecraft/client/gui/screens/Overlay/m_7859_ ()Z net/minecraft/client/gui/screens/Overlay/isPauseScreen ()Z +MD: net/minecraft/client/gui/screens/PauseScreen/ ()V net/minecraft/client/gui/screens/PauseScreen/ ()V +MD: net/minecraft/client/gui/screens/PauseScreen/ (Z)V net/minecraft/client/gui/screens/PauseScreen/ (Z)V +MD: net/minecraft/client/gui/screens/PauseScreen/m_261092_ ()V net/minecraft/client/gui/screens/PauseScreen/onDisconnect ()V +MD: net/minecraft/client/gui/screens/PauseScreen/m_262340_ ()Lnet/minecraft/client/gui/screens/Screen; net/minecraft/client/gui/screens/PauseScreen/lambda$createPauseMenu$4 ()Lnet/minecraft/client/gui/screens/Screen; +MD: net/minecraft/client/gui/screens/PauseScreen/m_262341_ (Ljava/lang/String;)Lnet/minecraft/client/gui/screens/Screen; net/minecraft/client/gui/screens/PauseScreen/lambda$openLinkButton$8 (Ljava/lang/String;)Lnet/minecraft/client/gui/screens/Screen; +MD: net/minecraft/client/gui/screens/PauseScreen/m_262456_ (Lnet/minecraft/network/chat/Component;Ljava/util/function/Supplier;)Lnet/minecraft/client/gui/components/Button; net/minecraft/client/gui/screens/PauseScreen/openScreenButton (Lnet/minecraft/network/chat/Component;Ljava/util/function/Supplier;)Lnet/minecraft/client/gui/components/Button; +MD: net/minecraft/client/gui/screens/PauseScreen/m_262461_ (Lnet/minecraft/network/chat/Component;Ljava/lang/String;)Lnet/minecraft/client/gui/components/Button; net/minecraft/client/gui/screens/PauseScreen/openLinkButton (Lnet/minecraft/network/chat/Component;Ljava/lang/String;)Lnet/minecraft/client/gui/components/Button; +MD: net/minecraft/client/gui/screens/PauseScreen/m_279779_ (Ljava/lang/String;Z)V net/minecraft/client/gui/screens/PauseScreen/lambda$openLinkButton$7 (Ljava/lang/String;Z)V +MD: net/minecraft/client/gui/screens/PauseScreen/m_279780_ (Lnet/minecraft/client/gui/components/Button;)V net/minecraft/client/gui/screens/PauseScreen/lambda$createPauseMenu$0 (Lnet/minecraft/client/gui/components/Button;)V +MD: net/minecraft/client/gui/screens/PauseScreen/m_279781_ (Lnet/minecraft/client/gui/components/Button;)V net/minecraft/client/gui/screens/PauseScreen/lambda$createPauseMenu$5 (Lnet/minecraft/client/gui/components/Button;)V +MD: net/minecraft/client/gui/screens/PauseScreen/m_279782_ ()Lnet/minecraft/client/gui/screens/Screen; net/minecraft/client/gui/screens/PauseScreen/lambda$createPauseMenu$2 ()Lnet/minecraft/client/gui/screens/Screen; +MD: net/minecraft/client/gui/screens/PauseScreen/m_279783_ ()Lnet/minecraft/client/gui/screens/Screen; net/minecraft/client/gui/screens/PauseScreen/lambda$createPauseMenu$3 ()Lnet/minecraft/client/gui/screens/Screen; +MD: net/minecraft/client/gui/screens/PauseScreen/m_279784_ (Ljava/util/function/Supplier;Lnet/minecraft/client/gui/components/Button;)V net/minecraft/client/gui/screens/PauseScreen/lambda$openScreenButton$6 (Ljava/util/function/Supplier;Lnet/minecraft/client/gui/components/Button;)V +MD: net/minecraft/client/gui/screens/PauseScreen/m_279785_ ()Lnet/minecraft/client/gui/screens/Screen; net/minecraft/client/gui/screens/PauseScreen/lambda$createPauseMenu$1 ()Lnet/minecraft/client/gui/screens/Screen; +MD: net/minecraft/client/gui/screens/PauseScreen/m_7856_ ()V net/minecraft/client/gui/screens/PauseScreen/init ()V +MD: net/minecraft/client/gui/screens/PauseScreen/m_86600_ ()V net/minecraft/client/gui/screens/PauseScreen/tick ()V +MD: net/minecraft/client/gui/screens/PauseScreen/m_88315_ (Lnet/minecraft/client/gui/GuiGraphics;IIF)V net/minecraft/client/gui/screens/PauseScreen/render (Lnet/minecraft/client/gui/GuiGraphics;IIF)V +MD: net/minecraft/client/gui/screens/PauseScreen/m_96338_ ()V net/minecraft/client/gui/screens/PauseScreen/createPauseMenu ()V +MD: net/minecraft/client/gui/screens/PopupScreen/ (Lnet/minecraft/network/chat/Component;Ljava/util/List;Lcom/google/common/collect/ImmutableList;)V net/minecraft/client/gui/screens/PopupScreen/ (Lnet/minecraft/network/chat/Component;Ljava/util/List;Lcom/google/common/collect/ImmutableList;)V +MD: net/minecraft/client/gui/screens/PopupScreen/m_142562_ ()Lnet/minecraft/network/chat/Component; net/minecraft/client/gui/screens/PopupScreen/getNarrationMessage ()Lnet/minecraft/network/chat/Component; +MD: net/minecraft/client/gui/screens/PopupScreen/m_6913_ ()Z net/minecraft/client/gui/screens/PopupScreen/shouldCloseOnEsc ()Z +MD: net/minecraft/client/gui/screens/PopupScreen/m_7856_ ()V net/minecraft/client/gui/screens/PopupScreen/init ()V +MD: net/minecraft/client/gui/screens/PopupScreen/m_88315_ (Lnet/minecraft/client/gui/GuiGraphics;IIF)V net/minecraft/client/gui/screens/PopupScreen/render (Lnet/minecraft/client/gui/GuiGraphics;IIF)V +MD: net/minecraft/client/gui/screens/PopupScreen$ButtonOption/ (Lnet/minecraft/network/chat/Component;Lnet/minecraft/client/gui/components/Button$OnPress;)V net/minecraft/client/gui/screens/PopupScreen$ButtonOption/ (Lnet/minecraft/network/chat/Component;Lnet/minecraft/client/gui/components/Button$OnPress;)V +MD: net/minecraft/client/gui/screens/PresetFlatWorldScreen/ ()V net/minecraft/client/gui/screens/PresetFlatWorldScreen/ ()V +MD: net/minecraft/client/gui/screens/PresetFlatWorldScreen/ (Lnet/minecraft/client/gui/screens/CreateFlatWorldScreen;)V net/minecraft/client/gui/screens/PresetFlatWorldScreen/ (Lnet/minecraft/client/gui/screens/CreateFlatWorldScreen;)V +MD: net/minecraft/client/gui/screens/PresetFlatWorldScreen/m_205393_ (Lnet/minecraft/world/level/levelgen/flat/FlatLevelGeneratorSettings;)Ljava/lang/String; net/minecraft/client/gui/screens/PresetFlatWorldScreen/save (Lnet/minecraft/world/level/levelgen/flat/FlatLevelGeneratorSettings;)Ljava/lang/String; +MD: net/minecraft/client/gui/screens/PresetFlatWorldScreen/m_205403_ ()Ljava/lang/IllegalStateException; net/minecraft/client/gui/screens/PresetFlatWorldScreen/lambda$save$2 ()Ljava/lang/IllegalStateException; +MD: net/minecraft/client/gui/screens/PresetFlatWorldScreen/m_254756_ (Ljava/lang/String;Lnet/minecraft/core/Holder$Reference;)Lnet/minecraft/core/Holder$Reference; net/minecraft/client/gui/screens/PresetFlatWorldScreen/lambda$fromString$1 (Ljava/lang/String;Lnet/minecraft/core/Holder$Reference;)Lnet/minecraft/core/Holder$Reference; +MD: net/minecraft/client/gui/screens/PresetFlatWorldScreen/m_257073_ (Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/resources/ResourceKey; net/minecraft/client/gui/screens/PresetFlatWorldScreen/lambda$fromString$0 (Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/resources/ResourceKey; +MD: net/minecraft/client/gui/screens/PresetFlatWorldScreen/m_257717_ (Lnet/minecraft/core/HolderGetter;Lnet/minecraft/core/HolderGetter;Lnet/minecraft/core/HolderGetter;Lnet/minecraft/core/HolderGetter;Ljava/lang/String;Lnet/minecraft/world/level/levelgen/flat/FlatLevelGeneratorSettings;)Lnet/minecraft/world/level/levelgen/flat/FlatLevelGeneratorSettings; net/minecraft/client/gui/screens/PresetFlatWorldScreen/fromString (Lnet/minecraft/core/HolderGetter;Lnet/minecraft/core/HolderGetter;Lnet/minecraft/core/HolderGetter;Lnet/minecraft/core/HolderGetter;Ljava/lang/String;Lnet/minecraft/world/level/levelgen/flat/FlatLevelGeneratorSettings;)Lnet/minecraft/world/level/levelgen/flat/FlatLevelGeneratorSettings; +MD: net/minecraft/client/gui/screens/PresetFlatWorldScreen/m_257841_ (Lnet/minecraft/core/HolderGetter;Ljava/lang/String;)Ljava/util/List; net/minecraft/client/gui/screens/PresetFlatWorldScreen/getLayersInfoFromString (Lnet/minecraft/core/HolderGetter;Ljava/lang/String;)Ljava/util/List; +MD: net/minecraft/client/gui/screens/PresetFlatWorldScreen/m_257877_ (Lnet/minecraft/core/HolderGetter;Ljava/lang/String;I)Lnet/minecraft/world/level/levelgen/flat/FlatLayerInfo; net/minecraft/client/gui/screens/PresetFlatWorldScreen/getLayerInfoFromString (Lnet/minecraft/core/HolderGetter;Ljava/lang/String;I)Lnet/minecraft/world/level/levelgen/flat/FlatLayerInfo; +MD: net/minecraft/client/gui/screens/PresetFlatWorldScreen/m_279786_ (Lnet/minecraft/core/HolderGetter;Lnet/minecraft/core/HolderGetter;Lnet/minecraft/core/HolderGetter;Lnet/minecraft/core/HolderGetter;Lnet/minecraft/client/gui/components/Button;)V net/minecraft/client/gui/screens/PresetFlatWorldScreen/lambda$init$3 (Lnet/minecraft/core/HolderGetter;Lnet/minecraft/core/HolderGetter;Lnet/minecraft/core/HolderGetter;Lnet/minecraft/core/HolderGetter;Lnet/minecraft/client/gui/components/Button;)V +MD: net/minecraft/client/gui/screens/PresetFlatWorldScreen/m_279787_ (Lnet/minecraft/client/gui/components/Button;)V net/minecraft/client/gui/screens/PresetFlatWorldScreen/lambda$init$4 (Lnet/minecraft/client/gui/components/Button;)V +MD: net/minecraft/client/gui/screens/PresetFlatWorldScreen/m_6050_ (DDD)Z net/minecraft/client/gui/screens/PresetFlatWorldScreen/mouseScrolled (DDD)Z +MD: net/minecraft/client/gui/screens/PresetFlatWorldScreen/m_6574_ (Lnet/minecraft/client/Minecraft;II)V net/minecraft/client/gui/screens/PresetFlatWorldScreen/resize (Lnet/minecraft/client/Minecraft;II)V +MD: net/minecraft/client/gui/screens/PresetFlatWorldScreen/m_7379_ ()V net/minecraft/client/gui/screens/PresetFlatWorldScreen/onClose ()V +MD: net/minecraft/client/gui/screens/PresetFlatWorldScreen/m_7856_ ()V net/minecraft/client/gui/screens/PresetFlatWorldScreen/init ()V +MD: net/minecraft/client/gui/screens/PresetFlatWorldScreen/m_86600_ ()V net/minecraft/client/gui/screens/PresetFlatWorldScreen/tick ()V +MD: net/minecraft/client/gui/screens/PresetFlatWorldScreen/m_88315_ (Lnet/minecraft/client/gui/GuiGraphics;IIF)V net/minecraft/client/gui/screens/PresetFlatWorldScreen/render (Lnet/minecraft/client/gui/GuiGraphics;IIF)V +MD: net/minecraft/client/gui/screens/PresetFlatWorldScreen/m_96449_ (Z)V net/minecraft/client/gui/screens/PresetFlatWorldScreen/updateButtonValidity (Z)V +MD: net/minecraft/client/gui/screens/PresetFlatWorldScreen$PresetsList/ (Lnet/minecraft/client/gui/screens/PresetFlatWorldScreen;Lnet/minecraft/core/RegistryAccess;Lnet/minecraft/world/flag/FeatureFlagSet;)V net/minecraft/client/gui/screens/PresetFlatWorldScreen$PresetsList/ (Lnet/minecraft/client/gui/screens/PresetFlatWorldScreen;Lnet/minecraft/core/RegistryAccess;Lnet/minecraft/world/flag/FeatureFlagSet;)V +MD: net/minecraft/client/gui/screens/PresetFlatWorldScreen$PresetsList/m_257490_ (Lnet/minecraft/resources/ResourceKey;)Ljava/lang/String; net/minecraft/client/gui/screens/PresetFlatWorldScreen$PresetsList/lambda$new$2 (Lnet/minecraft/resources/ResourceKey;)Ljava/lang/String; +MD: net/minecraft/client/gui/screens/PresetFlatWorldScreen$PresetsList/m_257800_ (Lnet/minecraft/world/flag/FeatureFlagSet;Lnet/minecraft/world/level/block/Block;)Z net/minecraft/client/gui/screens/PresetFlatWorldScreen$PresetsList/lambda$new$1 (Lnet/minecraft/world/flag/FeatureFlagSet;Lnet/minecraft/world/level/block/Block;)Z +MD: net/minecraft/client/gui/screens/PresetFlatWorldScreen$PresetsList/m_258055_ (Lnet/minecraft/world/level/levelgen/flat/FlatLayerInfo;)Lnet/minecraft/world/level/block/Block; net/minecraft/client/gui/screens/PresetFlatWorldScreen$PresetsList/lambda$new$0 (Lnet/minecraft/world/level/levelgen/flat/FlatLayerInfo;)Lnet/minecraft/world/level/block/Block; +MD: net/minecraft/client/gui/screens/PresetFlatWorldScreen$PresetsList/m_6987_ (Lnet/minecraft/client/gui/screens/PresetFlatWorldScreen$PresetsList$Entry;)V net/minecraft/client/gui/screens/PresetFlatWorldScreen$PresetsList/setSelected (Lnet/minecraft/client/gui/screens/PresetFlatWorldScreen$PresetsList$Entry;)V +MD: net/minecraft/client/gui/screens/PresetFlatWorldScreen$PresetsList/m_6987_ (Lnet/minecraft/client/gui/components/AbstractSelectionList$Entry;)V net/minecraft/client/gui/screens/PresetFlatWorldScreen$PresetsList/setSelected (Lnet/minecraft/client/gui/components/AbstractSelectionList$Entry;)V +MD: net/minecraft/client/gui/screens/PresetFlatWorldScreen$PresetsList/m_7933_ (III)Z net/minecraft/client/gui/screens/PresetFlatWorldScreen$PresetsList/keyPressed (III)Z +MD: net/minecraft/client/gui/screens/PresetFlatWorldScreen$PresetsList$Entry/ ()V net/minecraft/client/gui/screens/PresetFlatWorldScreen$PresetsList$Entry/ ()V +MD: net/minecraft/client/gui/screens/PresetFlatWorldScreen$PresetsList$Entry/ (Lnet/minecraft/client/gui/screens/PresetFlatWorldScreen$PresetsList;Lnet/minecraft/core/Holder;)V net/minecraft/client/gui/screens/PresetFlatWorldScreen$PresetsList$Entry/ (Lnet/minecraft/client/gui/screens/PresetFlatWorldScreen$PresetsList;Lnet/minecraft/core/Holder;)V +MD: net/minecraft/client/gui/screens/PresetFlatWorldScreen$PresetsList$Entry/m_142172_ ()Lnet/minecraft/network/chat/Component; net/minecraft/client/gui/screens/PresetFlatWorldScreen$PresetsList$Entry/getNarration ()Lnet/minecraft/network/chat/Component; +MD: net/minecraft/client/gui/screens/PresetFlatWorldScreen$PresetsList$Entry/m_232759_ (Lnet/minecraft/resources/ResourceKey;)Lnet/minecraft/network/chat/Component; net/minecraft/client/gui/screens/PresetFlatWorldScreen$PresetsList$Entry/lambda$new$0 (Lnet/minecraft/resources/ResourceKey;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/client/gui/screens/PresetFlatWorldScreen$PresetsList$Entry/m_280169_ (Lnet/minecraft/client/gui/GuiGraphics;II)V net/minecraft/client/gui/screens/PresetFlatWorldScreen$PresetsList$Entry/blitSlotBg (Lnet/minecraft/client/gui/GuiGraphics;II)V +MD: net/minecraft/client/gui/screens/PresetFlatWorldScreen$PresetsList$Entry/m_280449_ (Lnet/minecraft/client/gui/GuiGraphics;IILnet/minecraft/world/item/Item;)V net/minecraft/client/gui/screens/PresetFlatWorldScreen$PresetsList$Entry/blitSlot (Lnet/minecraft/client/gui/GuiGraphics;IILnet/minecraft/world/item/Item;)V +MD: net/minecraft/client/gui/screens/PresetFlatWorldScreen$PresetsList$Entry/m_6311_ (Lnet/minecraft/client/gui/GuiGraphics;IIIIIIIZF)V net/minecraft/client/gui/screens/PresetFlatWorldScreen$PresetsList$Entry/render (Lnet/minecraft/client/gui/GuiGraphics;IIIIIIIZF)V +MD: net/minecraft/client/gui/screens/PresetFlatWorldScreen$PresetsList$Entry/m_6375_ (DDI)Z net/minecraft/client/gui/screens/PresetFlatWorldScreen$PresetsList$Entry/mouseClicked (DDI)Z +MD: net/minecraft/client/gui/screens/PresetFlatWorldScreen$PresetsList$Entry/m_96479_ ()V net/minecraft/client/gui/screens/PresetFlatWorldScreen$PresetsList$Entry/select ()V +MD: net/minecraft/client/gui/screens/ProgressScreen/ (Z)V net/minecraft/client/gui/screens/ProgressScreen/ (Z)V +MD: net/minecraft/client/gui/screens/ProgressScreen/m_264396_ ()Z net/minecraft/client/gui/screens/ProgressScreen/shouldNarrateNavigation ()Z +MD: net/minecraft/client/gui/screens/ProgressScreen/m_6307_ (Lnet/minecraft/network/chat/Component;)V net/minecraft/client/gui/screens/ProgressScreen/progressStage (Lnet/minecraft/network/chat/Component;)V +MD: net/minecraft/client/gui/screens/ProgressScreen/m_6308_ (Lnet/minecraft/network/chat/Component;)V net/minecraft/client/gui/screens/ProgressScreen/progressStart (Lnet/minecraft/network/chat/Component;)V +MD: net/minecraft/client/gui/screens/ProgressScreen/m_6309_ (Lnet/minecraft/network/chat/Component;)V net/minecraft/client/gui/screens/ProgressScreen/progressStartNoAbort (Lnet/minecraft/network/chat/Component;)V +MD: net/minecraft/client/gui/screens/ProgressScreen/m_6913_ ()Z net/minecraft/client/gui/screens/ProgressScreen/shouldCloseOnEsc ()Z +MD: net/minecraft/client/gui/screens/ProgressScreen/m_6952_ (I)V net/minecraft/client/gui/screens/ProgressScreen/progressStagePercentage (I)V +MD: net/minecraft/client/gui/screens/ProgressScreen/m_7730_ ()V net/minecraft/client/gui/screens/ProgressScreen/stop ()V +MD: net/minecraft/client/gui/screens/ProgressScreen/m_88315_ (Lnet/minecraft/client/gui/GuiGraphics;IIF)V net/minecraft/client/gui/screens/ProgressScreen/render (Lnet/minecraft/client/gui/GuiGraphics;IIF)V +MD: net/minecraft/client/gui/screens/ReceivingLevelScreen/ ()V net/minecraft/client/gui/screens/ReceivingLevelScreen/ ()V +MD: net/minecraft/client/gui/screens/ReceivingLevelScreen/ ()V net/minecraft/client/gui/screens/ReceivingLevelScreen/ ()V +MD: net/minecraft/client/gui/screens/ReceivingLevelScreen/m_202375_ ()V net/minecraft/client/gui/screens/ReceivingLevelScreen/loadingPacketsReceived ()V +MD: net/minecraft/client/gui/screens/ReceivingLevelScreen/m_264396_ ()Z net/minecraft/client/gui/screens/ReceivingLevelScreen/shouldNarrateNavigation ()Z +MD: net/minecraft/client/gui/screens/ReceivingLevelScreen/m_6913_ ()Z net/minecraft/client/gui/screens/ReceivingLevelScreen/shouldCloseOnEsc ()Z +MD: net/minecraft/client/gui/screens/ReceivingLevelScreen/m_7043_ ()Z net/minecraft/client/gui/screens/ReceivingLevelScreen/isPauseScreen ()Z +MD: net/minecraft/client/gui/screens/ReceivingLevelScreen/m_7379_ ()V net/minecraft/client/gui/screens/ReceivingLevelScreen/onClose ()V +MD: net/minecraft/client/gui/screens/ReceivingLevelScreen/m_86600_ ()V net/minecraft/client/gui/screens/ReceivingLevelScreen/tick ()V +MD: net/minecraft/client/gui/screens/ReceivingLevelScreen/m_88315_ (Lnet/minecraft/client/gui/GuiGraphics;IIF)V net/minecraft/client/gui/screens/ReceivingLevelScreen/render (Lnet/minecraft/client/gui/GuiGraphics;IIF)V +MD: net/minecraft/client/gui/screens/Screen/ ()V net/minecraft/client/gui/screens/Screen/ ()V +MD: net/minecraft/client/gui/screens/Screen/ (Lnet/minecraft/network/chat/Component;)V net/minecraft/client/gui/screens/Screen/ (Lnet/minecraft/network/chat/Component;)V +MD: net/minecraft/client/gui/screens/Screen/m_142227_ (Lnet/minecraft/client/gui/narration/NarrationElementOutput;)V net/minecraft/client/gui/screens/Screen/updateNarratedWidget (Lnet/minecraft/client/gui/narration/NarrationElementOutput;)V +MD: net/minecraft/client/gui/screens/Screen/m_142228_ (Lnet/minecraft/client/gui/narration/NarrationElementOutput;)V net/minecraft/client/gui/screens/Screen/updateNarrationState (Lnet/minecraft/client/gui/narration/NarrationElementOutput;)V +MD: net/minecraft/client/gui/screens/Screen/m_142416_ (Lnet/minecraft/client/gui/components/events/GuiEventListener;)Lnet/minecraft/client/gui/components/events/GuiEventListener; net/minecraft/client/gui/screens/Screen/addRenderableWidget (Lnet/minecraft/client/gui/components/events/GuiEventListener;)Lnet/minecraft/client/gui/components/events/GuiEventListener; +MD: net/minecraft/client/gui/screens/Screen/m_142562_ ()Lnet/minecraft/network/chat/Component; net/minecraft/client/gui/screens/Screen/getNarrationMessage ()Lnet/minecraft/network/chat/Component; +MD: net/minecraft/client/gui/screens/Screen/m_169378_ (J)V net/minecraft/client/gui/screens/Screen/suppressNarration (J)V +MD: net/minecraft/client/gui/screens/Screen/m_169380_ (JZ)V net/minecraft/client/gui/screens/Screen/scheduleNarration (JZ)V +MD: net/minecraft/client/gui/screens/Screen/m_169394_ (Lnet/minecraft/client/gui/components/Renderable;)Lnet/minecraft/client/gui/components/Renderable; net/minecraft/client/gui/screens/Screen/addRenderableOnly (Lnet/minecraft/client/gui/components/Renderable;)Lnet/minecraft/client/gui/components/Renderable; +MD: net/minecraft/client/gui/screens/Screen/m_169400_ (Ljava/util/List;Lnet/minecraft/client/gui/narration/NarratableEntry;)Lnet/minecraft/client/gui/screens/Screen$NarratableSearchResult; net/minecraft/client/gui/screens/Screen/findNarratableWidget (Ljava/util/List;Lnet/minecraft/client/gui/narration/NarratableEntry;)Lnet/minecraft/client/gui/screens/Screen$NarratableSearchResult; +MD: net/minecraft/client/gui/screens/Screen/m_169404_ (Ljava/lang/String;)Ljava/lang/String; net/minecraft/client/gui/screens/Screen/lambda$wrapScreenError$2 (Ljava/lang/String;)Ljava/lang/String; +MD: net/minecraft/client/gui/screens/Screen/m_169407_ (Z)V net/minecraft/client/gui/screens/Screen/triggerImmediateNarration (Z)V +MD: net/minecraft/client/gui/screens/Screen/m_169409_ (Z)V net/minecraft/client/gui/screens/Screen/runNarration (Z)V +MD: net/minecraft/client/gui/screens/Screen/m_169411_ (Lnet/minecraft/client/gui/components/events/GuiEventListener;)V net/minecraft/client/gui/screens/Screen/removeWidget (Lnet/minecraft/client/gui/components/events/GuiEventListener;)V +MD: net/minecraft/client/gui/screens/Screen/m_169413_ ()V net/minecraft/client/gui/screens/Screen/clearWidgets ()V +MD: net/minecraft/client/gui/screens/Screen/m_169414_ ()V net/minecraft/client/gui/screens/Screen/afterMouseMove ()V +MD: net/minecraft/client/gui/screens/Screen/m_169415_ ()V net/minecraft/client/gui/screens/Screen/afterMouseAction ()V +MD: net/minecraft/client/gui/screens/Screen/m_169416_ ()V net/minecraft/client/gui/screens/Screen/afterKeyboardAction ()V +MD: net/minecraft/client/gui/screens/Screen/m_169417_ ()V net/minecraft/client/gui/screens/Screen/handleDelayedNarration ()V +MD: net/minecraft/client/gui/screens/Screen/m_169418_ ()V net/minecraft/client/gui/screens/Screen/narrationEnabled ()V +MD: net/minecraft/client/gui/screens/Screen/m_169419_ ()Z net/minecraft/client/gui/screens/Screen/shouldRunNarration ()Z +MD: net/minecraft/client/gui/screens/Screen/m_202376_ ([Lnet/minecraft/client/gui/components/AbstractWidget;)V net/minecraft/client/gui/screens/Screen/hideWidgets ([Lnet/minecraft/client/gui/components/AbstractWidget;)V +MD: net/minecraft/client/gui/screens/Screen/m_232761_ ()V net/minecraft/client/gui/screens/Screen/rebuildWidgets ()V +MD: net/minecraft/client/gui/screens/Screen/m_257404_ (Lnet/minecraft/network/chat/Component;)V net/minecraft/client/gui/screens/Screen/setTooltipForNextRenderPass (Lnet/minecraft/network/chat/Component;)V +MD: net/minecraft/client/gui/screens/Screen/m_257959_ (Ljava/util/List;)V net/minecraft/client/gui/screens/Screen/setTooltipForNextRenderPass (Ljava/util/List;)V +MD: net/minecraft/client/gui/screens/Screen/m_262791_ (Lnet/minecraft/client/gui/components/Tooltip;Lnet/minecraft/client/gui/screens/inventory/tooltip/ClientTooltipPositioner;Z)V net/minecraft/client/gui/screens/Screen/setTooltipForNextRenderPass (Lnet/minecraft/client/gui/components/Tooltip;Lnet/minecraft/client/gui/screens/inventory/tooltip/ClientTooltipPositioner;Z)V +MD: net/minecraft/client/gui/screens/Screen/m_262861_ (Ljava/util/List;Lnet/minecraft/client/gui/screens/inventory/tooltip/ClientTooltipPositioner;Z)V net/minecraft/client/gui/screens/Screen/setTooltipForNextRenderPass (Ljava/util/List;Lnet/minecraft/client/gui/screens/inventory/tooltip/ClientTooltipPositioner;Z)V +MD: net/minecraft/client/gui/screens/Screen/m_264131_ ()V net/minecraft/client/gui/screens/Screen/clearFocus ()V +MD: net/minecraft/client/gui/screens/Screen/m_264158_ (Lnet/minecraft/client/gui/ComponentPath;)V net/minecraft/client/gui/screens/Screen/changeFocus (Lnet/minecraft/client/gui/ComponentPath;)V +MD: net/minecraft/client/gui/screens/Screen/m_264198_ ()Lnet/minecraft/client/gui/navigation/ScreenRectangle; net/minecraft/client/gui/screens/Screen/getRectangle ()Lnet/minecraft/client/gui/navigation/ScreenRectangle; +MD: net/minecraft/client/gui/screens/Screen/m_264313_ (Lnet/minecraft/client/gui/components/events/GuiEventListener;)V net/minecraft/client/gui/screens/Screen/setInitialFocus (Lnet/minecraft/client/gui/components/events/GuiEventListener;)V +MD: net/minecraft/client/gui/screens/Screen/m_264396_ ()Z net/minecraft/client/gui/screens/Screen/shouldNarrateNavigation ()Z +MD: net/minecraft/client/gui/screens/Screen/m_264409_ (Lnet/minecraft/client/gui/navigation/ScreenDirection;)Lnet/minecraft/client/gui/navigation/FocusNavigationEvent$ArrowNavigation; net/minecraft/client/gui/screens/Screen/createArrowEvent (Lnet/minecraft/client/gui/navigation/ScreenDirection;)Lnet/minecraft/client/gui/navigation/FocusNavigationEvent$ArrowNavigation; +MD: net/minecraft/client/gui/screens/Screen/m_264442_ ()Lnet/minecraft/client/gui/navigation/FocusNavigationEvent$TabNavigation; net/minecraft/client/gui/screens/Screen/createTabEvent ()Lnet/minecraft/client/gui/navigation/FocusNavigationEvent$TabNavigation; +MD: net/minecraft/client/gui/screens/Screen/m_267719_ ()V net/minecraft/client/gui/screens/Screen/repositionElements ()V +MD: net/minecraft/client/gui/screens/Screen/m_274333_ ()V net/minecraft/client/gui/screens/Screen/added ()V +MD: net/minecraft/client/gui/screens/Screen/m_278176_ ()Lnet/minecraft/sounds/Music; net/minecraft/client/gui/screens/Screen/getBackgroundMusic ()Lnet/minecraft/sounds/Music; +MD: net/minecraft/client/gui/screens/Screen/m_280039_ (Lnet/minecraft/client/gui/GuiGraphics;)V net/minecraft/client/gui/screens/Screen/renderDirtBackground (Lnet/minecraft/client/gui/GuiGraphics;)V +MD: net/minecraft/client/gui/screens/Screen/m_280152_ (Lnet/minecraft/client/Minecraft;Lnet/minecraft/world/item/ItemStack;)Ljava/util/List; net/minecraft/client/gui/screens/Screen/getTooltipFromItem (Lnet/minecraft/client/Minecraft;Lnet/minecraft/world/item/ItemStack;)Ljava/util/List; +MD: net/minecraft/client/gui/screens/Screen/m_280264_ (Lnet/minecraft/client/gui/GuiGraphics;IIF)V net/minecraft/client/gui/screens/Screen/renderWithTooltip (Lnet/minecraft/client/gui/GuiGraphics;IIF)V +MD: net/minecraft/client/gui/screens/Screen/m_280273_ (Lnet/minecraft/client/gui/GuiGraphics;)V net/minecraft/client/gui/screens/Screen/renderBackground (Lnet/minecraft/client/gui/GuiGraphics;)V +MD: net/minecraft/client/gui/screens/Screen/m_289587_ (Ljava/lang/Runnable;)V net/minecraft/client/gui/screens/Screen/lambda$new$0 (Ljava/lang/Runnable;)V +MD: net/minecraft/client/gui/screens/Screen/m_289588_ (Ljava/lang/Runnable;)V net/minecraft/client/gui/screens/Screen/lambda$new$1 (Ljava/lang/Runnable;)V +MD: net/minecraft/client/gui/screens/Screen/m_5561_ (Lnet/minecraft/network/chat/Style;)Z net/minecraft/client/gui/screens/Screen/handleComponentClicked (Lnet/minecraft/network/chat/Style;)Z +MD: net/minecraft/client/gui/screens/Screen/m_5953_ (DD)Z net/minecraft/client/gui/screens/Screen/isMouseOver (DD)Z +MD: net/minecraft/client/gui/screens/Screen/m_6574_ (Lnet/minecraft/client/Minecraft;II)V net/minecraft/client/gui/screens/Screen/resize (Lnet/minecraft/client/Minecraft;II)V +MD: net/minecraft/client/gui/screens/Screen/m_6575_ (Lnet/minecraft/client/Minecraft;II)V net/minecraft/client/gui/screens/Screen/init (Lnet/minecraft/client/Minecraft;II)V +MD: net/minecraft/client/gui/screens/Screen/m_6697_ (Ljava/lang/String;Z)V net/minecraft/client/gui/screens/Screen/insertText (Ljava/lang/String;Z)V +MD: net/minecraft/client/gui/screens/Screen/m_6702_ ()Ljava/util/List; net/minecraft/client/gui/screens/Screen/children ()Ljava/util/List; +MD: net/minecraft/client/gui/screens/Screen/m_6913_ ()Z net/minecraft/client/gui/screens/Screen/shouldCloseOnEsc ()Z +MD: net/minecraft/client/gui/screens/Screen/m_7043_ ()Z net/minecraft/client/gui/screens/Screen/isPauseScreen ()Z +MD: net/minecraft/client/gui/screens/Screen/m_7379_ ()V net/minecraft/client/gui/screens/Screen/onClose ()V +MD: net/minecraft/client/gui/screens/Screen/m_7400_ (Ljava/util/List;)V net/minecraft/client/gui/screens/Screen/onFilesDrop (Ljava/util/List;)V +MD: net/minecraft/client/gui/screens/Screen/m_7787_ (Lnet/minecraft/client/gui/components/events/GuiEventListener;)Lnet/minecraft/client/gui/components/events/GuiEventListener; net/minecraft/client/gui/screens/Screen/addWidget (Lnet/minecraft/client/gui/components/events/GuiEventListener;)Lnet/minecraft/client/gui/components/events/GuiEventListener; +MD: net/minecraft/client/gui/screens/Screen/m_7856_ ()V net/minecraft/client/gui/screens/Screen/init ()V +MD: net/minecraft/client/gui/screens/Screen/m_7861_ ()V net/minecraft/client/gui/screens/Screen/removed ()V +MD: net/minecraft/client/gui/screens/Screen/m_7933_ (III)Z net/minecraft/client/gui/screens/Screen/keyPressed (III)Z +MD: net/minecraft/client/gui/screens/Screen/m_86600_ ()V net/minecraft/client/gui/screens/Screen/tick ()V +MD: net/minecraft/client/gui/screens/Screen/m_88315_ (Lnet/minecraft/client/gui/GuiGraphics;IIF)V net/minecraft/client/gui/screens/Screen/render (Lnet/minecraft/client/gui/GuiGraphics;IIF)V +MD: net/minecraft/client/gui/screens/Screen/m_96579_ (Ljava/lang/Runnable;Ljava/lang/String;Ljava/lang/String;)V net/minecraft/client/gui/screens/Screen/wrapScreenError (Ljava/lang/Runnable;Ljava/lang/String;Ljava/lang/String;)V +MD: net/minecraft/client/gui/screens/Screen/m_96583_ (Ljava/lang/String;CI)Z net/minecraft/client/gui/screens/Screen/isValidCharacterForName (Ljava/lang/String;CI)Z +MD: net/minecraft/client/gui/screens/Screen/m_96589_ (Ljava/net/URI;)V net/minecraft/client/gui/screens/Screen/openLink (Ljava/net/URI;)V +MD: net/minecraft/client/gui/screens/Screen/m_96622_ (Z)V net/minecraft/client/gui/screens/Screen/confirmLink (Z)V +MD: net/minecraft/client/gui/screens/Screen/m_96628_ (I)Z net/minecraft/client/gui/screens/Screen/isCut (I)Z +MD: net/minecraft/client/gui/screens/Screen/m_96630_ (I)Z net/minecraft/client/gui/screens/Screen/isPaste (I)Z +MD: net/minecraft/client/gui/screens/Screen/m_96632_ (I)Z net/minecraft/client/gui/screens/Screen/isCopy (I)Z +MD: net/minecraft/client/gui/screens/Screen/m_96634_ (I)Z net/minecraft/client/gui/screens/Screen/isSelectAll (I)Z +MD: net/minecraft/client/gui/screens/Screen/m_96636_ ()Lnet/minecraft/network/chat/Component; net/minecraft/client/gui/screens/Screen/getTitle ()Lnet/minecraft/network/chat/Component; +MD: net/minecraft/client/gui/screens/Screen/m_96637_ ()Z net/minecraft/client/gui/screens/Screen/hasControlDown ()Z +MD: net/minecraft/client/gui/screens/Screen/m_96638_ ()Z net/minecraft/client/gui/screens/Screen/hasShiftDown ()Z +MD: net/minecraft/client/gui/screens/Screen/m_96639_ ()Z net/minecraft/client/gui/screens/Screen/hasAltDown ()Z +MD: net/minecraft/client/gui/screens/Screen$DeferredTooltipRendering/ (Ljava/util/List;Lnet/minecraft/client/gui/screens/inventory/tooltip/ClientTooltipPositioner;)V net/minecraft/client/gui/screens/Screen$DeferredTooltipRendering/ (Ljava/util/List;Lnet/minecraft/client/gui/screens/inventory/tooltip/ClientTooltipPositioner;)V +MD: net/minecraft/client/gui/screens/Screen$DeferredTooltipRendering/equals (Ljava/lang/Object;)Z net/minecraft/client/gui/screens/Screen$DeferredTooltipRendering/equals (Ljava/lang/Object;)Z +MD: net/minecraft/client/gui/screens/Screen$DeferredTooltipRendering/f_262736_ ()Ljava/util/List; net/minecraft/client/gui/screens/Screen$DeferredTooltipRendering/tooltip ()Ljava/util/List; +MD: net/minecraft/client/gui/screens/Screen$DeferredTooltipRendering/f_262758_ ()Lnet/minecraft/client/gui/screens/inventory/tooltip/ClientTooltipPositioner; net/minecraft/client/gui/screens/Screen$DeferredTooltipRendering/positioner ()Lnet/minecraft/client/gui/screens/inventory/tooltip/ClientTooltipPositioner; +MD: net/minecraft/client/gui/screens/Screen$DeferredTooltipRendering/hashCode ()I net/minecraft/client/gui/screens/Screen$DeferredTooltipRendering/hashCode ()I +MD: net/minecraft/client/gui/screens/Screen$DeferredTooltipRendering/toString ()Ljava/lang/String; net/minecraft/client/gui/screens/Screen$DeferredTooltipRendering/toString ()Ljava/lang/String; +MD: net/minecraft/client/gui/screens/Screen$NarratableSearchResult/ (Lnet/minecraft/client/gui/narration/NarratableEntry;ILnet/minecraft/client/gui/narration/NarratableEntry$NarrationPriority;)V net/minecraft/client/gui/screens/Screen$NarratableSearchResult/ (Lnet/minecraft/client/gui/narration/NarratableEntry;ILnet/minecraft/client/gui/narration/NarratableEntry$NarrationPriority;)V +MD: net/minecraft/client/gui/screens/ShareToLanScreen/ ()V net/minecraft/client/gui/screens/ShareToLanScreen/ ()V +MD: net/minecraft/client/gui/screens/ShareToLanScreen/ (Lnet/minecraft/client/gui/screens/Screen;)V net/minecraft/client/gui/screens/ShareToLanScreen/ (Lnet/minecraft/client/gui/screens/Screen;)V +MD: net/minecraft/client/gui/screens/ShareToLanScreen/m_169428_ (Lnet/minecraft/client/gui/components/CycleButton;Lnet/minecraft/world/level/GameType;)V net/minecraft/client/gui/screens/ShareToLanScreen/lambda$init$0 (Lnet/minecraft/client/gui/components/CycleButton;Lnet/minecraft/world/level/GameType;)V +MD: net/minecraft/client/gui/screens/ShareToLanScreen/m_169431_ (Lnet/minecraft/client/gui/components/CycleButton;Ljava/lang/Boolean;)V net/minecraft/client/gui/screens/ShareToLanScreen/lambda$init$1 (Lnet/minecraft/client/gui/components/CycleButton;Ljava/lang/Boolean;)V +MD: net/minecraft/client/gui/screens/ShareToLanScreen/m_257075_ (Lnet/minecraft/client/gui/components/Button;Ljava/lang/String;)V net/minecraft/client/gui/screens/ShareToLanScreen/lambda$init$3 (Lnet/minecraft/client/gui/components/Button;Ljava/lang/String;)V +MD: net/minecraft/client/gui/screens/ShareToLanScreen/m_257854_ (Ljava/lang/String;)Lnet/minecraft/network/chat/Component; net/minecraft/client/gui/screens/ShareToLanScreen/tryParsePort (Ljava/lang/String;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/client/gui/screens/ShareToLanScreen/m_279788_ (Lnet/minecraft/client/gui/components/Button;)V net/minecraft/client/gui/screens/ShareToLanScreen/lambda$init$4 (Lnet/minecraft/client/gui/components/Button;)V +MD: net/minecraft/client/gui/screens/ShareToLanScreen/m_279789_ (Lnet/minecraft/client/server/IntegratedServer;Lnet/minecraft/client/gui/components/Button;)V net/minecraft/client/gui/screens/ShareToLanScreen/lambda$init$2 (Lnet/minecraft/client/server/IntegratedServer;Lnet/minecraft/client/gui/components/Button;)V +MD: net/minecraft/client/gui/screens/ShareToLanScreen/m_7856_ ()V net/minecraft/client/gui/screens/ShareToLanScreen/init ()V +MD: net/minecraft/client/gui/screens/ShareToLanScreen/m_86600_ ()V net/minecraft/client/gui/screens/ShareToLanScreen/tick ()V +MD: net/minecraft/client/gui/screens/ShareToLanScreen/m_88315_ (Lnet/minecraft/client/gui/GuiGraphics;IIF)V net/minecraft/client/gui/screens/ShareToLanScreen/render (Lnet/minecraft/client/gui/GuiGraphics;IIF)V +MD: net/minecraft/client/gui/screens/SimpleOptionsSubScreen/ (Lnet/minecraft/client/gui/screens/Screen;Lnet/minecraft/client/Options;Lnet/minecraft/network/chat/Component;[Lnet/minecraft/client/OptionInstance;)V net/minecraft/client/gui/screens/SimpleOptionsSubScreen/ (Lnet/minecraft/client/gui/screens/Screen;Lnet/minecraft/client/Options;Lnet/minecraft/network/chat/Component;[Lnet/minecraft/client/OptionInstance;)V +MD: net/minecraft/client/gui/screens/SimpleOptionsSubScreen/m_279790_ (Lnet/minecraft/client/gui/components/Button;)V net/minecraft/client/gui/screens/SimpleOptionsSubScreen/lambda$createFooter$0 (Lnet/minecraft/client/gui/components/Button;)V +MD: net/minecraft/client/gui/screens/SimpleOptionsSubScreen/m_7853_ ()V net/minecraft/client/gui/screens/SimpleOptionsSubScreen/createFooter ()V +MD: net/minecraft/client/gui/screens/SimpleOptionsSubScreen/m_7856_ ()V net/minecraft/client/gui/screens/SimpleOptionsSubScreen/init ()V +MD: net/minecraft/client/gui/screens/SimpleOptionsSubScreen/m_88315_ (Lnet/minecraft/client/gui/GuiGraphics;IIF)V net/minecraft/client/gui/screens/SimpleOptionsSubScreen/render (Lnet/minecraft/client/gui/GuiGraphics;IIF)V +MD: net/minecraft/client/gui/screens/SimpleOptionsSubScreen/m_96682_ ()V net/minecraft/client/gui/screens/SimpleOptionsSubScreen/updateNarratorButton ()V +MD: net/minecraft/client/gui/screens/SkinCustomizationScreen/ (Lnet/minecraft/client/gui/screens/Screen;Lnet/minecraft/client/Options;)V net/minecraft/client/gui/screens/SkinCustomizationScreen/ (Lnet/minecraft/client/gui/screens/Screen;Lnet/minecraft/client/Options;)V +MD: net/minecraft/client/gui/screens/SkinCustomizationScreen/m_169434_ (Lnet/minecraft/world/entity/player/PlayerModelPart;Lnet/minecraft/client/gui/components/CycleButton;Ljava/lang/Boolean;)V net/minecraft/client/gui/screens/SkinCustomizationScreen/lambda$init$0 (Lnet/minecraft/world/entity/player/PlayerModelPart;Lnet/minecraft/client/gui/components/CycleButton;Ljava/lang/Boolean;)V +MD: net/minecraft/client/gui/screens/SkinCustomizationScreen/m_279791_ (Lnet/minecraft/client/gui/components/Button;)V net/minecraft/client/gui/screens/SkinCustomizationScreen/lambda$init$1 (Lnet/minecraft/client/gui/components/Button;)V +MD: net/minecraft/client/gui/screens/SkinCustomizationScreen/m_7856_ ()V net/minecraft/client/gui/screens/SkinCustomizationScreen/init ()V +MD: net/minecraft/client/gui/screens/SkinCustomizationScreen/m_88315_ (Lnet/minecraft/client/gui/GuiGraphics;IIF)V net/minecraft/client/gui/screens/SkinCustomizationScreen/render (Lnet/minecraft/client/gui/GuiGraphics;IIF)V +MD: net/minecraft/client/gui/screens/SoundOptionsScreen/ (Lnet/minecraft/client/gui/screens/Screen;Lnet/minecraft/client/Options;)V net/minecraft/client/gui/screens/SoundOptionsScreen/ (Lnet/minecraft/client/gui/screens/Screen;Lnet/minecraft/client/Options;)V +MD: net/minecraft/client/gui/screens/SoundOptionsScreen/m_244663_ (I)[Lnet/minecraft/client/OptionInstance; net/minecraft/client/gui/screens/SoundOptionsScreen/lambda$getAllSoundOptionsExceptMaster$3 (I)[Lnet/minecraft/client/OptionInstance; +MD: net/minecraft/client/gui/screens/SoundOptionsScreen/m_244664_ (Lnet/minecraft/sounds/SoundSource;)Lnet/minecraft/client/OptionInstance; net/minecraft/client/gui/screens/SoundOptionsScreen/lambda$getAllSoundOptionsExceptMaster$2 (Lnet/minecraft/sounds/SoundSource;)Lnet/minecraft/client/OptionInstance; +MD: net/minecraft/client/gui/screens/SoundOptionsScreen/m_244665_ (Lnet/minecraft/sounds/SoundSource;)Z net/minecraft/client/gui/screens/SoundOptionsScreen/lambda$getAllSoundOptionsExceptMaster$1 (Lnet/minecraft/sounds/SoundSource;)Z +MD: net/minecraft/client/gui/screens/SoundOptionsScreen/m_245969_ (Lnet/minecraft/client/Options;)[Lnet/minecraft/client/OptionInstance; net/minecraft/client/gui/screens/SoundOptionsScreen/buttonOptions (Lnet/minecraft/client/Options;)[Lnet/minecraft/client/OptionInstance; +MD: net/minecraft/client/gui/screens/SoundOptionsScreen/m_246998_ ()[Lnet/minecraft/client/OptionInstance; net/minecraft/client/gui/screens/SoundOptionsScreen/getAllSoundOptionsExceptMaster ()[Lnet/minecraft/client/OptionInstance; +MD: net/minecraft/client/gui/screens/SoundOptionsScreen/m_279792_ (Lnet/minecraft/client/gui/components/Button;)V net/minecraft/client/gui/screens/SoundOptionsScreen/lambda$init$0 (Lnet/minecraft/client/gui/components/Button;)V +MD: net/minecraft/client/gui/screens/SoundOptionsScreen/m_7856_ ()V net/minecraft/client/gui/screens/SoundOptionsScreen/init ()V +MD: net/minecraft/client/gui/screens/SoundOptionsScreen/m_88315_ (Lnet/minecraft/client/gui/GuiGraphics;IIF)V net/minecraft/client/gui/screens/SoundOptionsScreen/render (Lnet/minecraft/client/gui/GuiGraphics;IIF)V +MD: net/minecraft/client/gui/screens/SymlinkWarningScreen/ ()V net/minecraft/client/gui/screens/SymlinkWarningScreen/ ()V +MD: net/minecraft/client/gui/screens/SymlinkWarningScreen/ (Lnet/minecraft/client/gui/screens/Screen;)V net/minecraft/client/gui/screens/SymlinkWarningScreen/ (Lnet/minecraft/client/gui/screens/Screen;)V +MD: net/minecraft/client/gui/screens/SymlinkWarningScreen/m_142562_ ()Lnet/minecraft/network/chat/Component; net/minecraft/client/gui/screens/SymlinkWarningScreen/getNarrationMessage ()Lnet/minecraft/network/chat/Component; +MD: net/minecraft/client/gui/screens/SymlinkWarningScreen/m_267719_ ()V net/minecraft/client/gui/screens/SymlinkWarningScreen/repositionElements ()V +MD: net/minecraft/client/gui/screens/SymlinkWarningScreen/m_289873_ (Lnet/minecraft/client/gui/components/Button;)V net/minecraft/client/gui/screens/SymlinkWarningScreen/lambda$init$2 (Lnet/minecraft/client/gui/components/Button;)V +MD: net/minecraft/client/gui/screens/SymlinkWarningScreen/m_289880_ (Lnet/minecraft/client/gui/components/Button;)V net/minecraft/client/gui/screens/SymlinkWarningScreen/lambda$init$1 (Lnet/minecraft/client/gui/components/Button;)V +MD: net/minecraft/client/gui/screens/SymlinkWarningScreen/m_289887_ (Lnet/minecraft/client/gui/components/Button;)V net/minecraft/client/gui/screens/SymlinkWarningScreen/lambda$init$0 (Lnet/minecraft/client/gui/components/Button;)V +MD: net/minecraft/client/gui/screens/SymlinkWarningScreen/m_7379_ ()V net/minecraft/client/gui/screens/SymlinkWarningScreen/onClose ()V +MD: net/minecraft/client/gui/screens/SymlinkWarningScreen/m_7856_ ()V net/minecraft/client/gui/screens/SymlinkWarningScreen/init ()V +MD: net/minecraft/client/gui/screens/SymlinkWarningScreen/m_88315_ (Lnet/minecraft/client/gui/GuiGraphics;IIF)V net/minecraft/client/gui/screens/SymlinkWarningScreen/render (Lnet/minecraft/client/gui/GuiGraphics;IIF)V +MD: net/minecraft/client/gui/screens/TitleScreen/ ()V net/minecraft/client/gui/screens/TitleScreen/ ()V +MD: net/minecraft/client/gui/screens/TitleScreen/ (Z)V net/minecraft/client/gui/screens/TitleScreen/ (Z)V +MD: net/minecraft/client/gui/screens/TitleScreen/ (ZLnet/minecraft/client/gui/components/LogoRenderer;)V net/minecraft/client/gui/screens/TitleScreen/ (ZLnet/minecraft/client/gui/components/LogoRenderer;)V +MD: net/minecraft/client/gui/screens/TitleScreen/ ()V net/minecraft/client/gui/screens/TitleScreen/ ()V +MD: net/minecraft/client/gui/screens/TitleScreen/m_210871_ (Lnet/minecraft/client/gui/components/Button;)V net/minecraft/client/gui/screens/TitleScreen/lambda$createNormalMenuOptions$8 (Lnet/minecraft/client/gui/components/Button;)V +MD: net/minecraft/client/gui/screens/TitleScreen/m_232769_ (Lnet/minecraft/client/gui/components/Button;)V net/minecraft/client/gui/screens/TitleScreen/lambda$createDemoMenuOptions$10 (Lnet/minecraft/client/gui/components/Button;)V +MD: net/minecraft/client/gui/screens/TitleScreen/m_240255_ ()Lnet/minecraft/network/chat/Component; net/minecraft/client/gui/screens/TitleScreen/getMultiplayerDisabledReason ()Lnet/minecraft/network/chat/Component; +MD: net/minecraft/client/gui/screens/TitleScreen/m_263871_ ()Lnet/minecraft/client/gui/components/LogoRenderer; net/minecraft/client/gui/screens/TitleScreen/lambda$new$0 ()Lnet/minecraft/client/gui/components/LogoRenderer; +MD: net/minecraft/client/gui/screens/TitleScreen/m_274333_ ()V net/minecraft/client/gui/screens/TitleScreen/added ()V +MD: net/minecraft/client/gui/screens/TitleScreen/m_279793_ (Lnet/minecraft/client/gui/components/Button;)V net/minecraft/client/gui/screens/TitleScreen/lambda$init$1 (Lnet/minecraft/client/gui/components/Button;)V +MD: net/minecraft/client/gui/screens/TitleScreen/m_279794_ (Lnet/minecraft/client/gui/components/Button;)V net/minecraft/client/gui/screens/TitleScreen/lambda$init$3 (Lnet/minecraft/client/gui/components/Button;)V +MD: net/minecraft/client/gui/screens/TitleScreen/m_279795_ (Lnet/minecraft/client/gui/components/Button;)V net/minecraft/client/gui/screens/TitleScreen/lambda$createNormalMenuOptions$6 (Lnet/minecraft/client/gui/components/Button;)V +MD: net/minecraft/client/gui/screens/TitleScreen/m_279796_ (Lnet/minecraft/client/gui/components/Button;)V net/minecraft/client/gui/screens/TitleScreen/lambda$createNormalMenuOptions$7 (Lnet/minecraft/client/gui/components/Button;)V +MD: net/minecraft/client/gui/screens/TitleScreen/m_279797_ (Lnet/minecraft/client/gui/components/Button;)V net/minecraft/client/gui/screens/TitleScreen/lambda$init$5 (Lnet/minecraft/client/gui/components/Button;)V +MD: net/minecraft/client/gui/screens/TitleScreen/m_279798_ (Lnet/minecraft/client/gui/components/Button;)V net/minecraft/client/gui/screens/TitleScreen/lambda$init$4 (Lnet/minecraft/client/gui/components/Button;)V +MD: net/minecraft/client/gui/screens/TitleScreen/m_279799_ (ZLnet/minecraft/client/gui/components/Button;)V net/minecraft/client/gui/screens/TitleScreen/lambda$createDemoMenuOptions$9 (ZLnet/minecraft/client/gui/components/Button;)V +MD: net/minecraft/client/gui/screens/TitleScreen/m_279800_ (Lnet/minecraft/client/gui/components/Button;)V net/minecraft/client/gui/screens/TitleScreen/lambda$init$2 (Lnet/minecraft/client/gui/components/Button;)V +MD: net/minecraft/client/gui/screens/TitleScreen/m_6375_ (DDI)Z net/minecraft/client/gui/screens/TitleScreen/mouseClicked (DDI)Z +MD: net/minecraft/client/gui/screens/TitleScreen/m_6913_ ()Z net/minecraft/client/gui/screens/TitleScreen/shouldCloseOnEsc ()Z +MD: net/minecraft/client/gui/screens/TitleScreen/m_7043_ ()Z net/minecraft/client/gui/screens/TitleScreen/isPauseScreen ()Z +MD: net/minecraft/client/gui/screens/TitleScreen/m_7856_ ()V net/minecraft/client/gui/screens/TitleScreen/init ()V +MD: net/minecraft/client/gui/screens/TitleScreen/m_7861_ ()V net/minecraft/client/gui/screens/TitleScreen/removed ()V +MD: net/minecraft/client/gui/screens/TitleScreen/m_86600_ ()V net/minecraft/client/gui/screens/TitleScreen/tick ()V +MD: net/minecraft/client/gui/screens/TitleScreen/m_88315_ (Lnet/minecraft/client/gui/GuiGraphics;IIF)V net/minecraft/client/gui/screens/TitleScreen/render (Lnet/minecraft/client/gui/GuiGraphics;IIF)V +MD: net/minecraft/client/gui/screens/TitleScreen/m_96754_ (Lnet/minecraft/client/renderer/texture/TextureManager;Ljava/util/concurrent/Executor;)Ljava/util/concurrent/CompletableFuture; net/minecraft/client/gui/screens/TitleScreen/preloadResources (Lnet/minecraft/client/renderer/texture/TextureManager;Ljava/util/concurrent/Executor;)Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/client/gui/screens/TitleScreen/m_96763_ (II)V net/minecraft/client/gui/screens/TitleScreen/createNormalMenuOptions (II)V +MD: net/minecraft/client/gui/screens/TitleScreen/m_96772_ (II)V net/minecraft/client/gui/screens/TitleScreen/createDemoMenuOptions (II)V +MD: net/minecraft/client/gui/screens/TitleScreen/m_96777_ (Z)V net/minecraft/client/gui/screens/TitleScreen/confirmDemo (Z)V +MD: net/minecraft/client/gui/screens/TitleScreen/m_96789_ ()Z net/minecraft/client/gui/screens/TitleScreen/realmsNotificationsEnabled ()Z +MD: net/minecraft/client/gui/screens/TitleScreen/m_96792_ ()Z net/minecraft/client/gui/screens/TitleScreen/checkDemoWorldPresence ()Z +MD: net/minecraft/client/gui/screens/TitleScreen/m_96793_ ()V net/minecraft/client/gui/screens/TitleScreen/realmsButtonClicked ()V +MD: net/minecraft/client/gui/screens/TitleScreen$WarningLabel/ (Lnet/minecraft/client/gui/Font;Lnet/minecraft/client/gui/components/MultiLineLabel;II)V net/minecraft/client/gui/screens/TitleScreen$WarningLabel/ (Lnet/minecraft/client/gui/Font;Lnet/minecraft/client/gui/components/MultiLineLabel;II)V +MD: net/minecraft/client/gui/screens/TitleScreen$WarningLabel/equals (Ljava/lang/Object;)Z net/minecraft/client/gui/screens/TitleScreen$WarningLabel/equals (Ljava/lang/Object;)Z +MD: net/minecraft/client/gui/screens/TitleScreen$WarningLabel/f_232780_ ()Lnet/minecraft/client/gui/Font; net/minecraft/client/gui/screens/TitleScreen$WarningLabel/font ()Lnet/minecraft/client/gui/Font; +MD: net/minecraft/client/gui/screens/TitleScreen$WarningLabel/f_232781_ ()Lnet/minecraft/client/gui/components/MultiLineLabel; net/minecraft/client/gui/screens/TitleScreen$WarningLabel/label ()Lnet/minecraft/client/gui/components/MultiLineLabel; +MD: net/minecraft/client/gui/screens/TitleScreen$WarningLabel/f_232782_ ()I net/minecraft/client/gui/screens/TitleScreen$WarningLabel/x ()I +MD: net/minecraft/client/gui/screens/TitleScreen$WarningLabel/f_232783_ ()I net/minecraft/client/gui/screens/TitleScreen$WarningLabel/y ()I +MD: net/minecraft/client/gui/screens/TitleScreen$WarningLabel/hashCode ()I net/minecraft/client/gui/screens/TitleScreen$WarningLabel/hashCode ()I +MD: net/minecraft/client/gui/screens/TitleScreen$WarningLabel/m_280409_ (Lnet/minecraft/client/gui/GuiGraphics;I)V net/minecraft/client/gui/screens/TitleScreen$WarningLabel/render (Lnet/minecraft/client/gui/GuiGraphics;I)V +MD: net/minecraft/client/gui/screens/TitleScreen$WarningLabel/toString ()Ljava/lang/String; net/minecraft/client/gui/screens/TitleScreen$WarningLabel/toString ()Ljava/lang/String; +MD: net/minecraft/client/gui/screens/VideoSettingsScreen/ ()V net/minecraft/client/gui/screens/VideoSettingsScreen/ ()V +MD: net/minecraft/client/gui/screens/VideoSettingsScreen/ (Lnet/minecraft/client/gui/screens/Screen;Lnet/minecraft/client/Options;)V net/minecraft/client/gui/screens/VideoSettingsScreen/ (Lnet/minecraft/client/gui/screens/Screen;Lnet/minecraft/client/Options;)V +MD: net/minecraft/client/gui/screens/VideoSettingsScreen/m_232800_ (Lcom/mojang/blaze3d/platform/Monitor;Lcom/mojang/blaze3d/platform/Window;Ljava/lang/Integer;)V net/minecraft/client/gui/screens/VideoSettingsScreen/lambda$init$1 (Lcom/mojang/blaze3d/platform/Monitor;Lcom/mojang/blaze3d/platform/Window;Ljava/lang/Integer;)V +MD: net/minecraft/client/gui/screens/VideoSettingsScreen/m_232804_ (Lcom/mojang/blaze3d/platform/Monitor;Lnet/minecraft/network/chat/Component;Ljava/lang/Integer;)Lnet/minecraft/network/chat/Component; net/minecraft/client/gui/screens/VideoSettingsScreen/lambda$init$0 (Lcom/mojang/blaze3d/platform/Monitor;Lnet/minecraft/network/chat/Component;Ljava/lang/Integer;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/client/gui/screens/VideoSettingsScreen/m_232811_ (Lnet/minecraft/client/Options;)[Lnet/minecraft/client/OptionInstance; net/minecraft/client/gui/screens/VideoSettingsScreen/options (Lnet/minecraft/client/Options;)[Lnet/minecraft/client/OptionInstance; +MD: net/minecraft/client/gui/screens/VideoSettingsScreen/m_279801_ (Lnet/minecraft/client/gui/components/Button;)V net/minecraft/client/gui/screens/VideoSettingsScreen/lambda$mouseClicked$3 (Lnet/minecraft/client/gui/components/Button;)V +MD: net/minecraft/client/gui/screens/VideoSettingsScreen/m_279802_ (Lnet/minecraft/client/gui/components/Button;)V net/minecraft/client/gui/screens/VideoSettingsScreen/lambda$mouseClicked$4 (Lnet/minecraft/client/gui/components/Button;)V +MD: net/minecraft/client/gui/screens/VideoSettingsScreen/m_279803_ (Lcom/mojang/blaze3d/platform/Window;Lnet/minecraft/client/gui/components/Button;)V net/minecraft/client/gui/screens/VideoSettingsScreen/lambda$init$2 (Lcom/mojang/blaze3d/platform/Window;Lnet/minecraft/client/gui/components/Button;)V +MD: net/minecraft/client/gui/screens/VideoSettingsScreen/m_6050_ (DDD)Z net/minecraft/client/gui/screens/VideoSettingsScreen/mouseScrolled (DDD)Z +MD: net/minecraft/client/gui/screens/VideoSettingsScreen/m_6375_ (DDI)Z net/minecraft/client/gui/screens/VideoSettingsScreen/mouseClicked (DDI)Z +MD: net/minecraft/client/gui/screens/VideoSettingsScreen/m_7856_ ()V net/minecraft/client/gui/screens/VideoSettingsScreen/init ()V +MD: net/minecraft/client/gui/screens/VideoSettingsScreen/m_7861_ ()V net/minecraft/client/gui/screens/VideoSettingsScreen/removed ()V +MD: net/minecraft/client/gui/screens/VideoSettingsScreen/m_88315_ (Lnet/minecraft/client/gui/GuiGraphics;IIF)V net/minecraft/client/gui/screens/VideoSettingsScreen/render (Lnet/minecraft/client/gui/GuiGraphics;IIF)V +MD: net/minecraft/client/gui/screens/WinScreen/ ()V net/minecraft/client/gui/screens/WinScreen/ ()V +MD: net/minecraft/client/gui/screens/WinScreen/ (ZLjava/lang/Runnable;)V net/minecraft/client/gui/screens/WinScreen/ (ZLjava/lang/Runnable;)V +MD: net/minecraft/client/gui/screens/WinScreen/m_169472_ (Lnet/minecraft/network/chat/Component;Z)V net/minecraft/client/gui/screens/WinScreen/addCreditsLine (Lnet/minecraft/network/chat/Component;Z)V +MD: net/minecraft/client/gui/screens/WinScreen/m_169482_ ()V net/minecraft/client/gui/screens/WinScreen/addEmptyLine ()V +MD: net/minecraft/client/gui/screens/WinScreen/m_181397_ (Ljava/lang/String;)V net/minecraft/client/gui/screens/WinScreen/addPoemLines (Ljava/lang/String;)V +MD: net/minecraft/client/gui/screens/WinScreen/m_181399_ ()F net/minecraft/client/gui/screens/WinScreen/calculateScrollSpeed ()F +MD: net/minecraft/client/gui/screens/WinScreen/m_197398_ (Ljava/lang/String;Lnet/minecraft/client/gui/screens/WinScreen$CreditsReader;)V net/minecraft/client/gui/screens/WinScreen/wrapCreditsIO (Ljava/lang/String;Lnet/minecraft/client/gui/screens/WinScreen$CreditsReader;)V +MD: net/minecraft/client/gui/screens/WinScreen/m_232817_ (Ljava/io/Reader;)V net/minecraft/client/gui/screens/WinScreen/addPoemFile (Ljava/io/Reader;)V +MD: net/minecraft/client/gui/screens/WinScreen/m_232819_ (Ljava/io/Reader;)V net/minecraft/client/gui/screens/WinScreen/addCreditsFile (Ljava/io/Reader;)V +MD: net/minecraft/client/gui/screens/WinScreen/m_278176_ ()Lnet/minecraft/sounds/Music; net/minecraft/client/gui/screens/WinScreen/getBackgroundMusic ()Lnet/minecraft/sounds/Music; +MD: net/minecraft/client/gui/screens/WinScreen/m_280337_ (Lnet/minecraft/client/gui/GuiGraphics;)V net/minecraft/client/gui/screens/WinScreen/renderBg (Lnet/minecraft/client/gui/GuiGraphics;)V +MD: net/minecraft/client/gui/screens/WinScreen/m_7379_ ()V net/minecraft/client/gui/screens/WinScreen/onClose ()V +MD: net/minecraft/client/gui/screens/WinScreen/m_7856_ ()V net/minecraft/client/gui/screens/WinScreen/init ()V +MD: net/minecraft/client/gui/screens/WinScreen/m_7861_ ()V net/minecraft/client/gui/screens/WinScreen/removed ()V +MD: net/minecraft/client/gui/screens/WinScreen/m_7920_ (III)Z net/minecraft/client/gui/screens/WinScreen/keyReleased (III)Z +MD: net/minecraft/client/gui/screens/WinScreen/m_7933_ (III)Z net/minecraft/client/gui/screens/WinScreen/keyPressed (III)Z +MD: net/minecraft/client/gui/screens/WinScreen/m_86600_ ()V net/minecraft/client/gui/screens/WinScreen/tick ()V +MD: net/minecraft/client/gui/screens/WinScreen/m_88315_ (Lnet/minecraft/client/gui/GuiGraphics;IIF)V net/minecraft/client/gui/screens/WinScreen/render (Lnet/minecraft/client/gui/GuiGraphics;IIF)V +MD: net/minecraft/client/gui/screens/WinScreen/m_96895_ ()V net/minecraft/client/gui/screens/WinScreen/respawn ()V +MD: net/minecraft/client/gui/screens/WinScreen$CreditsReader/m_232821_ (Ljava/io/Reader;)V net/minecraft/client/gui/screens/WinScreen$CreditsReader/read (Ljava/io/Reader;)V +MD: net/minecraft/client/gui/screens/achievement/StatsScreen/ ()V net/minecraft/client/gui/screens/achievement/StatsScreen/ ()V +MD: net/minecraft/client/gui/screens/achievement/StatsScreen/ (Lnet/minecraft/client/gui/screens/Screen;Lnet/minecraft/stats/StatsCounter;)V net/minecraft/client/gui/screens/achievement/StatsScreen/ (Lnet/minecraft/client/gui/screens/Screen;Lnet/minecraft/stats/StatsCounter;)V +MD: net/minecraft/client/gui/screens/achievement/StatsScreen/m_169496_ (Lnet/minecraft/client/gui/screens/achievement/StatsScreen;)Lnet/minecraft/client/gui/Font; net/minecraft/client/gui/screens/achievement/StatsScreen/access$000 (Lnet/minecraft/client/gui/screens/achievement/StatsScreen;)Lnet/minecraft/client/gui/Font; +MD: net/minecraft/client/gui/screens/achievement/StatsScreen/m_169498_ (Lnet/minecraft/client/gui/screens/achievement/StatsScreen;)Lnet/minecraft/client/gui/Font; net/minecraft/client/gui/screens/achievement/StatsScreen/access$100 (Lnet/minecraft/client/gui/screens/achievement/StatsScreen;)Lnet/minecraft/client/gui/Font; +MD: net/minecraft/client/gui/screens/achievement/StatsScreen/m_169500_ (Lnet/minecraft/client/gui/screens/achievement/StatsScreen;)Lnet/minecraft/client/gui/Font; net/minecraft/client/gui/screens/achievement/StatsScreen/access$300 (Lnet/minecraft/client/gui/screens/achievement/StatsScreen;)Lnet/minecraft/client/gui/Font; +MD: net/minecraft/client/gui/screens/achievement/StatsScreen/m_169502_ (Lnet/minecraft/client/gui/screens/achievement/StatsScreen;)Lnet/minecraft/client/gui/Font; net/minecraft/client/gui/screens/achievement/StatsScreen/access$600 (Lnet/minecraft/client/gui/screens/achievement/StatsScreen;)Lnet/minecraft/client/gui/Font; +MD: net/minecraft/client/gui/screens/achievement/StatsScreen/m_169504_ (Lnet/minecraft/client/gui/screens/achievement/StatsScreen;)Lnet/minecraft/client/gui/Font; net/minecraft/client/gui/screens/achievement/StatsScreen/access$700 (Lnet/minecraft/client/gui/screens/achievement/StatsScreen;)Lnet/minecraft/client/gui/Font; +MD: net/minecraft/client/gui/screens/achievement/StatsScreen/m_169506_ (Lnet/minecraft/client/gui/screens/achievement/StatsScreen;)Lnet/minecraft/client/gui/Font; net/minecraft/client/gui/screens/achievement/StatsScreen/access$800 (Lnet/minecraft/client/gui/screens/achievement/StatsScreen;)Lnet/minecraft/client/gui/Font; +MD: net/minecraft/client/gui/screens/achievement/StatsScreen/m_169508_ (Lnet/minecraft/client/gui/screens/achievement/StatsScreen;)Lnet/minecraft/client/gui/Font; net/minecraft/client/gui/screens/achievement/StatsScreen/access$900 (Lnet/minecraft/client/gui/screens/achievement/StatsScreen;)Lnet/minecraft/client/gui/Font; +MD: net/minecraft/client/gui/screens/achievement/StatsScreen/m_169510_ (Lnet/minecraft/client/gui/screens/achievement/StatsScreen;)Lnet/minecraft/client/gui/Font; net/minecraft/client/gui/screens/achievement/StatsScreen/access$1200 (Lnet/minecraft/client/gui/screens/achievement/StatsScreen;)Lnet/minecraft/client/gui/Font; +MD: net/minecraft/client/gui/screens/achievement/StatsScreen/m_279804_ (Lnet/minecraft/client/gui/components/Button;)V net/minecraft/client/gui/screens/achievement/StatsScreen/lambda$initButtons$3 (Lnet/minecraft/client/gui/components/Button;)V +MD: net/minecraft/client/gui/screens/achievement/StatsScreen/m_280288_ (Lnet/minecraft/client/gui/GuiGraphics;IIII)V net/minecraft/client/gui/screens/achievement/StatsScreen/blitSlotIcon (Lnet/minecraft/client/gui/GuiGraphics;IIII)V +MD: net/minecraft/client/gui/screens/achievement/StatsScreen/m_280600_ (Lnet/minecraft/client/gui/GuiGraphics;IILnet/minecraft/world/item/Item;)V net/minecraft/client/gui/screens/achievement/StatsScreen/blitSlot (Lnet/minecraft/client/gui/GuiGraphics;IILnet/minecraft/world/item/Item;)V +MD: net/minecraft/client/gui/screens/achievement/StatsScreen/m_7043_ ()Z net/minecraft/client/gui/screens/achievement/StatsScreen/isPauseScreen ()Z +MD: net/minecraft/client/gui/screens/achievement/StatsScreen/m_7819_ ()V net/minecraft/client/gui/screens/achievement/StatsScreen/onStatsUpdated ()V +MD: net/minecraft/client/gui/screens/achievement/StatsScreen/m_7856_ ()V net/minecraft/client/gui/screens/achievement/StatsScreen/init ()V +MD: net/minecraft/client/gui/screens/achievement/StatsScreen/m_88315_ (Lnet/minecraft/client/gui/GuiGraphics;IIF)V net/minecraft/client/gui/screens/achievement/StatsScreen/render (Lnet/minecraft/client/gui/GuiGraphics;IIF)V +MD: net/minecraft/client/gui/screens/achievement/StatsScreen/m_96908_ (I)I net/minecraft/client/gui/screens/achievement/StatsScreen/getColumnX (I)I +MD: net/minecraft/client/gui/screens/achievement/StatsScreen/m_96924_ (Lnet/minecraft/client/gui/components/ObjectSelectionList;)V net/minecraft/client/gui/screens/achievement/StatsScreen/setActiveList (Lnet/minecraft/client/gui/components/ObjectSelectionList;)V +MD: net/minecraft/client/gui/screens/achievement/StatsScreen/m_96926_ (Lnet/minecraft/client/gui/screens/achievement/StatsScreen;)Lnet/minecraft/client/gui/Font; net/minecraft/client/gui/screens/achievement/StatsScreen/access$200 (Lnet/minecraft/client/gui/screens/achievement/StatsScreen;)Lnet/minecraft/client/gui/Font; +MD: net/minecraft/client/gui/screens/achievement/StatsScreen/m_96946_ (Lnet/minecraft/stats/Stat;)Ljava/lang/String; net/minecraft/client/gui/screens/achievement/StatsScreen/getTranslationKey (Lnet/minecraft/stats/Stat;)Ljava/lang/String; +MD: net/minecraft/client/gui/screens/achievement/StatsScreen/m_96948_ (Lnet/minecraft/client/gui/components/Button;)V net/minecraft/client/gui/screens/achievement/StatsScreen/lambda$initButtons$2 (Lnet/minecraft/client/gui/components/Button;)V +MD: net/minecraft/client/gui/screens/achievement/StatsScreen/m_96958_ (Lnet/minecraft/client/gui/components/Button;)V net/minecraft/client/gui/screens/achievement/StatsScreen/lambda$initButtons$1 (Lnet/minecraft/client/gui/components/Button;)V +MD: net/minecraft/client/gui/screens/achievement/StatsScreen/m_96960_ (Lnet/minecraft/client/gui/screens/achievement/StatsScreen;)Lnet/minecraft/client/gui/Font; net/minecraft/client/gui/screens/achievement/StatsScreen/access$400 (Lnet/minecraft/client/gui/screens/achievement/StatsScreen;)Lnet/minecraft/client/gui/Font; +MD: net/minecraft/client/gui/screens/achievement/StatsScreen/m_96962_ (Lnet/minecraft/client/gui/components/Button;)V net/minecraft/client/gui/screens/achievement/StatsScreen/lambda$initButtons$0 (Lnet/minecraft/client/gui/components/Button;)V +MD: net/minecraft/client/gui/screens/achievement/StatsScreen/m_96964_ (Lnet/minecraft/client/gui/screens/achievement/StatsScreen;)Lnet/minecraft/client/gui/Font; net/minecraft/client/gui/screens/achievement/StatsScreen/access$500 (Lnet/minecraft/client/gui/screens/achievement/StatsScreen;)Lnet/minecraft/client/gui/Font; +MD: net/minecraft/client/gui/screens/achievement/StatsScreen/m_96966_ (Lnet/minecraft/client/gui/screens/achievement/StatsScreen;)Lnet/minecraft/client/gui/Font; net/minecraft/client/gui/screens/achievement/StatsScreen/access$1000 (Lnet/minecraft/client/gui/screens/achievement/StatsScreen;)Lnet/minecraft/client/gui/Font; +MD: net/minecraft/client/gui/screens/achievement/StatsScreen/m_96968_ (Lnet/minecraft/client/gui/screens/achievement/StatsScreen;)Lnet/minecraft/client/gui/Font; net/minecraft/client/gui/screens/achievement/StatsScreen/access$1100 (Lnet/minecraft/client/gui/screens/achievement/StatsScreen;)Lnet/minecraft/client/gui/Font; +MD: net/minecraft/client/gui/screens/achievement/StatsScreen/m_96972_ ()V net/minecraft/client/gui/screens/achievement/StatsScreen/initLists ()V +MD: net/minecraft/client/gui/screens/achievement/StatsScreen/m_96975_ ()V net/minecraft/client/gui/screens/achievement/StatsScreen/initButtons ()V +MD: net/minecraft/client/gui/screens/achievement/StatsScreen/m_96983_ ()Lnet/minecraft/client/gui/components/ObjectSelectionList; net/minecraft/client/gui/screens/achievement/StatsScreen/getActiveList ()Lnet/minecraft/client/gui/components/ObjectSelectionList; +MD: net/minecraft/client/gui/screens/achievement/StatsScreen$GeneralStatisticsList/ (Lnet/minecraft/client/gui/screens/achievement/StatsScreen;Lnet/minecraft/client/Minecraft;)V net/minecraft/client/gui/screens/achievement/StatsScreen$GeneralStatisticsList/ (Lnet/minecraft/client/gui/screens/achievement/StatsScreen;Lnet/minecraft/client/Minecraft;)V +MD: net/minecraft/client/gui/screens/achievement/StatsScreen$GeneralStatisticsList/m_7733_ (Lnet/minecraft/client/gui/GuiGraphics;)V net/minecraft/client/gui/screens/achievement/StatsScreen$GeneralStatisticsList/renderBackground (Lnet/minecraft/client/gui/GuiGraphics;)V +MD: net/minecraft/client/gui/screens/achievement/StatsScreen$GeneralStatisticsList/m_96996_ (Lnet/minecraft/stats/Stat;)Ljava/lang/String; net/minecraft/client/gui/screens/achievement/StatsScreen$GeneralStatisticsList/lambda$new$0 (Lnet/minecraft/stats/Stat;)Ljava/lang/String; +MD: net/minecraft/client/gui/screens/achievement/StatsScreen$GeneralStatisticsList$Entry/ (Lnet/minecraft/client/gui/screens/achievement/StatsScreen$GeneralStatisticsList;Lnet/minecraft/stats/Stat;)V net/minecraft/client/gui/screens/achievement/StatsScreen$GeneralStatisticsList$Entry/ (Lnet/minecraft/client/gui/screens/achievement/StatsScreen$GeneralStatisticsList;Lnet/minecraft/stats/Stat;)V +MD: net/minecraft/client/gui/screens/achievement/StatsScreen$GeneralStatisticsList$Entry/m_142172_ ()Lnet/minecraft/network/chat/Component; net/minecraft/client/gui/screens/achievement/StatsScreen$GeneralStatisticsList$Entry/getNarration ()Lnet/minecraft/network/chat/Component; +MD: net/minecraft/client/gui/screens/achievement/StatsScreen$GeneralStatisticsList$Entry/m_169513_ ()Ljava/lang/String; net/minecraft/client/gui/screens/achievement/StatsScreen$GeneralStatisticsList$Entry/getValueText ()Ljava/lang/String; +MD: net/minecraft/client/gui/screens/achievement/StatsScreen$GeneralStatisticsList$Entry/m_6311_ (Lnet/minecraft/client/gui/GuiGraphics;IIIIIIIZF)V net/minecraft/client/gui/screens/achievement/StatsScreen$GeneralStatisticsList$Entry/render (Lnet/minecraft/client/gui/GuiGraphics;IIIIIIIZF)V +MD: net/minecraft/client/gui/screens/achievement/StatsScreen$ItemStatisticsList/ (Lnet/minecraft/client/gui/screens/achievement/StatsScreen;Lnet/minecraft/client/Minecraft;)V net/minecraft/client/gui/screens/achievement/StatsScreen$ItemStatisticsList/ (Lnet/minecraft/client/gui/screens/achievement/StatsScreen;Lnet/minecraft/client/Minecraft;)V +MD: net/minecraft/client/gui/screens/achievement/StatsScreen$ItemStatisticsList/m_280389_ (Lnet/minecraft/client/gui/GuiGraphics;Lnet/minecraft/network/chat/Component;II)V net/minecraft/client/gui/screens/achievement/StatsScreen$ItemStatisticsList/renderMousehoverTooltip (Lnet/minecraft/client/gui/GuiGraphics;Lnet/minecraft/network/chat/Component;II)V +MD: net/minecraft/client/gui/screens/achievement/StatsScreen$ItemStatisticsList/m_5756_ ()I net/minecraft/client/gui/screens/achievement/StatsScreen$ItemStatisticsList/getScrollbarPosition ()I +MD: net/minecraft/client/gui/screens/achievement/StatsScreen$ItemStatisticsList/m_5759_ ()I net/minecraft/client/gui/screens/achievement/StatsScreen$ItemStatisticsList/getRowWidth ()I +MD: net/minecraft/client/gui/screens/achievement/StatsScreen$ItemStatisticsList/m_6205_ (II)V net/minecraft/client/gui/screens/achievement/StatsScreen$ItemStatisticsList/clickedHeader (II)V +MD: net/minecraft/client/gui/screens/achievement/StatsScreen$ItemStatisticsList/m_7154_ (Lnet/minecraft/client/gui/GuiGraphics;II)V net/minecraft/client/gui/screens/achievement/StatsScreen$ItemStatisticsList/renderDecorations (Lnet/minecraft/client/gui/GuiGraphics;II)V +MD: net/minecraft/client/gui/screens/achievement/StatsScreen$ItemStatisticsList/m_7415_ (Lnet/minecraft/client/gui/GuiGraphics;II)V net/minecraft/client/gui/screens/achievement/StatsScreen$ItemStatisticsList/renderHeader (Lnet/minecraft/client/gui/GuiGraphics;II)V +MD: net/minecraft/client/gui/screens/achievement/StatsScreen$ItemStatisticsList/m_7733_ (Lnet/minecraft/client/gui/GuiGraphics;)V net/minecraft/client/gui/screens/achievement/StatsScreen$ItemStatisticsList/renderBackground (Lnet/minecraft/client/gui/GuiGraphics;)V +MD: net/minecraft/client/gui/screens/achievement/StatsScreen$ItemStatisticsList/m_97033_ (I)Lnet/minecraft/stats/StatType; net/minecraft/client/gui/screens/achievement/StatsScreen$ItemStatisticsList/getColumn (I)Lnet/minecraft/stats/StatType; +MD: net/minecraft/client/gui/screens/achievement/StatsScreen$ItemStatisticsList/m_97038_ (Lnet/minecraft/stats/StatType;)V net/minecraft/client/gui/screens/achievement/StatsScreen$ItemStatisticsList/sortByColumn (Lnet/minecraft/stats/StatType;)V +MD: net/minecraft/client/gui/screens/achievement/StatsScreen$ItemStatisticsList/m_97040_ (Lnet/minecraft/world/item/Item;)Lnet/minecraft/network/chat/Component; net/minecraft/client/gui/screens/achievement/StatsScreen$ItemStatisticsList/getString (Lnet/minecraft/world/item/Item;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/client/gui/screens/achievement/StatsScreen$ItemStatisticsList/m_97058_ (Lnet/minecraft/stats/StatType;)I net/minecraft/client/gui/screens/achievement/StatsScreen$ItemStatisticsList/getColumnIndex (Lnet/minecraft/stats/StatType;)I +MD: net/minecraft/client/gui/screens/achievement/StatsScreen$ItemStatisticsList$ItemRow/ (Lnet/minecraft/client/gui/screens/achievement/StatsScreen$ItemStatisticsList;Lnet/minecraft/world/item/Item;)V net/minecraft/client/gui/screens/achievement/StatsScreen$ItemStatisticsList$ItemRow/ (Lnet/minecraft/client/gui/screens/achievement/StatsScreen$ItemStatisticsList;Lnet/minecraft/world/item/Item;)V +MD: net/minecraft/client/gui/screens/achievement/StatsScreen$ItemStatisticsList$ItemRow/m_142172_ ()Lnet/minecraft/network/chat/Component; net/minecraft/client/gui/screens/achievement/StatsScreen$ItemStatisticsList$ItemRow/getNarration ()Lnet/minecraft/network/chat/Component; +MD: net/minecraft/client/gui/screens/achievement/StatsScreen$ItemStatisticsList$ItemRow/m_169519_ ()Lnet/minecraft/world/item/Item; net/minecraft/client/gui/screens/achievement/StatsScreen$ItemStatisticsList$ItemRow/getItem ()Lnet/minecraft/world/item/Item; +MD: net/minecraft/client/gui/screens/achievement/StatsScreen$ItemStatisticsList$ItemRow/m_6311_ (Lnet/minecraft/client/gui/GuiGraphics;IIIIIIIZF)V net/minecraft/client/gui/screens/achievement/StatsScreen$ItemStatisticsList$ItemRow/render (Lnet/minecraft/client/gui/GuiGraphics;IIIIIIIZF)V +MD: net/minecraft/client/gui/screens/achievement/StatsScreen$ItemStatisticsList$ItemRow/m_97091_ (Lnet/minecraft/client/gui/GuiGraphics;Lnet/minecraft/stats/Stat;IIZ)V net/minecraft/client/gui/screens/achievement/StatsScreen$ItemStatisticsList$ItemRow/renderStat (Lnet/minecraft/client/gui/GuiGraphics;Lnet/minecraft/stats/Stat;IIZ)V +MD: net/minecraft/client/gui/screens/achievement/StatsScreen$ItemStatisticsList$ItemRowComparator/ (Lnet/minecraft/client/gui/screens/achievement/StatsScreen$ItemStatisticsList;)V net/minecraft/client/gui/screens/achievement/StatsScreen$ItemStatisticsList$ItemRowComparator/ (Lnet/minecraft/client/gui/screens/achievement/StatsScreen$ItemStatisticsList;)V +MD: net/minecraft/client/gui/screens/achievement/StatsScreen$ItemStatisticsList$ItemRowComparator/compare (Lnet/minecraft/client/gui/screens/achievement/StatsScreen$ItemStatisticsList$ItemRow;Lnet/minecraft/client/gui/screens/achievement/StatsScreen$ItemStatisticsList$ItemRow;)I net/minecraft/client/gui/screens/achievement/StatsScreen$ItemStatisticsList$ItemRowComparator/compare (Lnet/minecraft/client/gui/screens/achievement/StatsScreen$ItemStatisticsList$ItemRow;Lnet/minecraft/client/gui/screens/achievement/StatsScreen$ItemStatisticsList$ItemRow;)I +MD: net/minecraft/client/gui/screens/achievement/StatsScreen$ItemStatisticsList$ItemRowComparator/compare (Ljava/lang/Object;Ljava/lang/Object;)I net/minecraft/client/gui/screens/achievement/StatsScreen$ItemStatisticsList$ItemRowComparator/compare (Ljava/lang/Object;Ljava/lang/Object;)I +MD: net/minecraft/client/gui/screens/achievement/StatsScreen$MobsStatisticsList/ (Lnet/minecraft/client/gui/screens/achievement/StatsScreen;Lnet/minecraft/client/Minecraft;)V net/minecraft/client/gui/screens/achievement/StatsScreen$MobsStatisticsList/ (Lnet/minecraft/client/gui/screens/achievement/StatsScreen;Lnet/minecraft/client/Minecraft;)V +MD: net/minecraft/client/gui/screens/achievement/StatsScreen$MobsStatisticsList/m_7733_ (Lnet/minecraft/client/gui/GuiGraphics;)V net/minecraft/client/gui/screens/achievement/StatsScreen$MobsStatisticsList/renderBackground (Lnet/minecraft/client/gui/GuiGraphics;)V +MD: net/minecraft/client/gui/screens/achievement/StatsScreen$MobsStatisticsList$MobRow/ (Lnet/minecraft/client/gui/screens/achievement/StatsScreen$MobsStatisticsList;Lnet/minecraft/world/entity/EntityType;)V net/minecraft/client/gui/screens/achievement/StatsScreen$MobsStatisticsList$MobRow/ (Lnet/minecraft/client/gui/screens/achievement/StatsScreen$MobsStatisticsList;Lnet/minecraft/world/entity/EntityType;)V +MD: net/minecraft/client/gui/screens/achievement/StatsScreen$MobsStatisticsList$MobRow/m_142172_ ()Lnet/minecraft/network/chat/Component; net/minecraft/client/gui/screens/achievement/StatsScreen$MobsStatisticsList$MobRow/getNarration ()Lnet/minecraft/network/chat/Component; +MD: net/minecraft/client/gui/screens/achievement/StatsScreen$MobsStatisticsList$MobRow/m_6311_ (Lnet/minecraft/client/gui/GuiGraphics;IIIIIIIZF)V net/minecraft/client/gui/screens/achievement/StatsScreen$MobsStatisticsList$MobRow/render (Lnet/minecraft/client/gui/GuiGraphics;IIIIIIIZF)V +MD: net/minecraft/client/gui/screens/achievement/StatsUpdateListener/ ()V net/minecraft/client/gui/screens/achievement/StatsUpdateListener/ ()V +MD: net/minecraft/client/gui/screens/achievement/StatsUpdateListener/m_7819_ ()V net/minecraft/client/gui/screens/achievement/StatsUpdateListener/onStatsUpdated ()V +MD: net/minecraft/client/gui/screens/advancements/AdvancementTab/ (Lnet/minecraft/client/Minecraft;Lnet/minecraft/client/gui/screens/advancements/AdvancementsScreen;Lnet/minecraft/client/gui/screens/advancements/AdvancementTabType;ILnet/minecraft/advancements/Advancement;Lnet/minecraft/advancements/DisplayInfo;)V net/minecraft/client/gui/screens/advancements/AdvancementTab/ (Lnet/minecraft/client/Minecraft;Lnet/minecraft/client/gui/screens/advancements/AdvancementsScreen;Lnet/minecraft/client/gui/screens/advancements/AdvancementTabType;ILnet/minecraft/advancements/Advancement;Lnet/minecraft/advancements/DisplayInfo;)V +MD: net/minecraft/client/gui/screens/advancements/AdvancementTab/m_169538_ ()Lnet/minecraft/client/gui/screens/advancements/AdvancementTabType; net/minecraft/client/gui/screens/advancements/AdvancementTab/getType ()Lnet/minecraft/client/gui/screens/advancements/AdvancementTabType; +MD: net/minecraft/client/gui/screens/advancements/AdvancementTab/m_169539_ ()I net/minecraft/client/gui/screens/advancements/AdvancementTab/getIndex ()I +MD: net/minecraft/client/gui/screens/advancements/AdvancementTab/m_169540_ ()Lnet/minecraft/advancements/DisplayInfo; net/minecraft/client/gui/screens/advancements/AdvancementTab/getDisplay ()Lnet/minecraft/advancements/DisplayInfo; +MD: net/minecraft/client/gui/screens/advancements/AdvancementTab/m_280047_ (Lnet/minecraft/client/gui/GuiGraphics;II)V net/minecraft/client/gui/screens/advancements/AdvancementTab/drawContents (Lnet/minecraft/client/gui/GuiGraphics;II)V +MD: net/minecraft/client/gui/screens/advancements/AdvancementTab/m_280105_ (Lnet/minecraft/client/gui/GuiGraphics;IIZ)V net/minecraft/client/gui/screens/advancements/AdvancementTab/drawTab (Lnet/minecraft/client/gui/GuiGraphics;IIZ)V +MD: net/minecraft/client/gui/screens/advancements/AdvancementTab/m_280485_ (Lnet/minecraft/client/gui/GuiGraphics;II)V net/minecraft/client/gui/screens/advancements/AdvancementTab/drawIcon (Lnet/minecraft/client/gui/GuiGraphics;II)V +MD: net/minecraft/client/gui/screens/advancements/AdvancementTab/m_280571_ (Lnet/minecraft/client/gui/GuiGraphics;IIII)V net/minecraft/client/gui/screens/advancements/AdvancementTab/drawTooltips (Lnet/minecraft/client/gui/GuiGraphics;IIII)V +MD: net/minecraft/client/gui/screens/advancements/AdvancementTab/m_97151_ (DD)V net/minecraft/client/gui/screens/advancements/AdvancementTab/scroll (DD)V +MD: net/minecraft/client/gui/screens/advancements/AdvancementTab/m_97154_ (IIDD)Z net/minecraft/client/gui/screens/advancements/AdvancementTab/isMouseOver (IIDD)Z +MD: net/minecraft/client/gui/screens/advancements/AdvancementTab/m_97170_ (Lnet/minecraft/client/Minecraft;Lnet/minecraft/client/gui/screens/advancements/AdvancementsScreen;ILnet/minecraft/advancements/Advancement;)Lnet/minecraft/client/gui/screens/advancements/AdvancementTab; net/minecraft/client/gui/screens/advancements/AdvancementTab/create (Lnet/minecraft/client/Minecraft;Lnet/minecraft/client/gui/screens/advancements/AdvancementsScreen;ILnet/minecraft/advancements/Advancement;)Lnet/minecraft/client/gui/screens/advancements/AdvancementTab; +MD: net/minecraft/client/gui/screens/advancements/AdvancementTab/m_97175_ (Lnet/minecraft/client/gui/screens/advancements/AdvancementWidget;Lnet/minecraft/advancements/Advancement;)V net/minecraft/client/gui/screens/advancements/AdvancementTab/addWidget (Lnet/minecraft/client/gui/screens/advancements/AdvancementWidget;Lnet/minecraft/advancements/Advancement;)V +MD: net/minecraft/client/gui/screens/advancements/AdvancementTab/m_97178_ (Lnet/minecraft/advancements/Advancement;)V net/minecraft/client/gui/screens/advancements/AdvancementTab/addAdvancement (Lnet/minecraft/advancements/Advancement;)V +MD: net/minecraft/client/gui/screens/advancements/AdvancementTab/m_97180_ (Lnet/minecraft/advancements/Advancement;)Lnet/minecraft/client/gui/screens/advancements/AdvancementWidget; net/minecraft/client/gui/screens/advancements/AdvancementTab/getWidget (Lnet/minecraft/advancements/Advancement;)Lnet/minecraft/client/gui/screens/advancements/AdvancementWidget; +MD: net/minecraft/client/gui/screens/advancements/AdvancementTab/m_97182_ ()Lnet/minecraft/advancements/Advancement; net/minecraft/client/gui/screens/advancements/AdvancementTab/getAdvancement ()Lnet/minecraft/advancements/Advancement; +MD: net/minecraft/client/gui/screens/advancements/AdvancementTab/m_97189_ ()Lnet/minecraft/network/chat/Component; net/minecraft/client/gui/screens/advancements/AdvancementTab/getTitle ()Lnet/minecraft/network/chat/Component; +MD: net/minecraft/client/gui/screens/advancements/AdvancementTab/m_97190_ ()Lnet/minecraft/client/gui/screens/advancements/AdvancementsScreen; net/minecraft/client/gui/screens/advancements/AdvancementTab/getScreen ()Lnet/minecraft/client/gui/screens/advancements/AdvancementsScreen; +MD: net/minecraft/client/gui/screens/advancements/AdvancementTabType/ ()V net/minecraft/client/gui/screens/advancements/AdvancementTabType/ ()V +MD: net/minecraft/client/gui/screens/advancements/AdvancementTabType/ (Ljava/lang/String;IIIIII)V net/minecraft/client/gui/screens/advancements/AdvancementTabType/ (Ljava/lang/String;IIIIII)V +MD: net/minecraft/client/gui/screens/advancements/AdvancementTabType/m_169541_ ()[Lnet/minecraft/client/gui/screens/advancements/AdvancementTabType; net/minecraft/client/gui/screens/advancements/AdvancementTabType/$values ()[Lnet/minecraft/client/gui/screens/advancements/AdvancementTabType; +MD: net/minecraft/client/gui/screens/advancements/AdvancementTabType/m_280111_ (Lnet/minecraft/client/gui/GuiGraphics;IIZI)V net/minecraft/client/gui/screens/advancements/AdvancementTabType/draw (Lnet/minecraft/client/gui/GuiGraphics;IIZI)V +MD: net/minecraft/client/gui/screens/advancements/AdvancementTabType/m_280639_ (Lnet/minecraft/client/gui/GuiGraphics;IIILnet/minecraft/world/item/ItemStack;)V net/minecraft/client/gui/screens/advancements/AdvancementTabType/drawIcon (Lnet/minecraft/client/gui/GuiGraphics;IIILnet/minecraft/world/item/ItemStack;)V +MD: net/minecraft/client/gui/screens/advancements/AdvancementTabType/m_97210_ ()I net/minecraft/client/gui/screens/advancements/AdvancementTabType/getMax ()I +MD: net/minecraft/client/gui/screens/advancements/AdvancementTabType/m_97211_ (I)I net/minecraft/client/gui/screens/advancements/AdvancementTabType/getX (I)I +MD: net/minecraft/client/gui/screens/advancements/AdvancementTabType/m_97213_ (IIIDD)Z net/minecraft/client/gui/screens/advancements/AdvancementTabType/isMouseOver (IIIDD)Z +MD: net/minecraft/client/gui/screens/advancements/AdvancementTabType/m_97232_ (I)I net/minecraft/client/gui/screens/advancements/AdvancementTabType/getY (I)I +MD: net/minecraft/client/gui/screens/advancements/AdvancementTabType/valueOf (Ljava/lang/String;)Lnet/minecraft/client/gui/screens/advancements/AdvancementTabType; net/minecraft/client/gui/screens/advancements/AdvancementTabType/valueOf (Ljava/lang/String;)Lnet/minecraft/client/gui/screens/advancements/AdvancementTabType; +MD: net/minecraft/client/gui/screens/advancements/AdvancementTabType/values ()[Lnet/minecraft/client/gui/screens/advancements/AdvancementTabType; net/minecraft/client/gui/screens/advancements/AdvancementTabType/values ()[Lnet/minecraft/client/gui/screens/advancements/AdvancementTabType; +MD: net/minecraft/client/gui/screens/advancements/AdvancementTabType$1/ ()V net/minecraft/client/gui/screens/advancements/AdvancementTabType$1/ ()V +MD: net/minecraft/client/gui/screens/advancements/AdvancementWidget/ ()V net/minecraft/client/gui/screens/advancements/AdvancementWidget/ ()V +MD: net/minecraft/client/gui/screens/advancements/AdvancementWidget/ (Lnet/minecraft/client/gui/screens/advancements/AdvancementTab;Lnet/minecraft/client/Minecraft;Lnet/minecraft/advancements/Advancement;Lnet/minecraft/advancements/DisplayInfo;)V net/minecraft/client/gui/screens/advancements/AdvancementWidget/ (Lnet/minecraft/client/gui/screens/advancements/AdvancementTab;Lnet/minecraft/client/Minecraft;Lnet/minecraft/advancements/Advancement;Lnet/minecraft/advancements/DisplayInfo;)V +MD: net/minecraft/client/gui/screens/advancements/AdvancementWidget/m_169554_ ()I net/minecraft/client/gui/screens/advancements/AdvancementWidget/getWidth ()I +MD: net/minecraft/client/gui/screens/advancements/AdvancementWidget/m_280229_ (Lnet/minecraft/client/gui/GuiGraphics;II)V net/minecraft/client/gui/screens/advancements/AdvancementWidget/draw (Lnet/minecraft/client/gui/GuiGraphics;II)V +MD: net/minecraft/client/gui/screens/advancements/AdvancementWidget/m_280255_ (Lnet/minecraft/client/gui/GuiGraphics;IIFII)V net/minecraft/client/gui/screens/advancements/AdvancementWidget/drawHover (Lnet/minecraft/client/gui/GuiGraphics;IIFII)V +MD: net/minecraft/client/gui/screens/advancements/AdvancementWidget/m_97259_ (IIII)Z net/minecraft/client/gui/screens/advancements/AdvancementWidget/isMouseOver (IIII)Z +MD: net/minecraft/client/gui/screens/advancements/AdvancementWidget/m_97264_ (Lnet/minecraft/advancements/AdvancementProgress;)V net/minecraft/client/gui/screens/advancements/AdvancementWidget/setProgress (Lnet/minecraft/advancements/AdvancementProgress;)V +MD: net/minecraft/client/gui/screens/advancements/AdvancementWidget/m_97298_ (Lnet/minecraft/client/gui/GuiGraphics;IIZ)V net/minecraft/client/gui/screens/advancements/AdvancementWidget/drawConnectivity (Lnet/minecraft/client/gui/GuiGraphics;IIZ)V +MD: net/minecraft/client/gui/screens/advancements/AdvancementWidget/m_97303_ (Lnet/minecraft/client/StringSplitter;Ljava/util/List;)F net/minecraft/client/gui/screens/advancements/AdvancementWidget/getMaxWidth (Lnet/minecraft/client/StringSplitter;Ljava/util/List;)F +MD: net/minecraft/client/gui/screens/advancements/AdvancementWidget/m_97306_ (Lnet/minecraft/client/gui/screens/advancements/AdvancementWidget;)V net/minecraft/client/gui/screens/advancements/AdvancementWidget/addChild (Lnet/minecraft/client/gui/screens/advancements/AdvancementWidget;)V +MD: net/minecraft/client/gui/screens/advancements/AdvancementWidget/m_97308_ (Lnet/minecraft/network/chat/Component;I)Ljava/util/List; net/minecraft/client/gui/screens/advancements/AdvancementWidget/findOptimalLines (Lnet/minecraft/network/chat/Component;I)Ljava/util/List; +MD: net/minecraft/client/gui/screens/advancements/AdvancementWidget/m_97311_ (Lnet/minecraft/advancements/Advancement;)Lnet/minecraft/client/gui/screens/advancements/AdvancementWidget; net/minecraft/client/gui/screens/advancements/AdvancementWidget/getFirstVisibleParent (Lnet/minecraft/advancements/Advancement;)Lnet/minecraft/client/gui/screens/advancements/AdvancementWidget; +MD: net/minecraft/client/gui/screens/advancements/AdvancementWidget/m_97313_ ()V net/minecraft/client/gui/screens/advancements/AdvancementWidget/attachToParent ()V +MD: net/minecraft/client/gui/screens/advancements/AdvancementWidget/m_97314_ ()I net/minecraft/client/gui/screens/advancements/AdvancementWidget/getY ()I +MD: net/minecraft/client/gui/screens/advancements/AdvancementWidget/m_97315_ ()I net/minecraft/client/gui/screens/advancements/AdvancementWidget/getX ()I +MD: net/minecraft/client/gui/screens/advancements/AdvancementWidgetType/ ()V net/minecraft/client/gui/screens/advancements/AdvancementWidgetType/ ()V +MD: net/minecraft/client/gui/screens/advancements/AdvancementWidgetType/ (Ljava/lang/String;II)V net/minecraft/client/gui/screens/advancements/AdvancementWidgetType/ (Ljava/lang/String;II)V +MD: net/minecraft/client/gui/screens/advancements/AdvancementWidgetType/m_169555_ ()[Lnet/minecraft/client/gui/screens/advancements/AdvancementWidgetType; net/minecraft/client/gui/screens/advancements/AdvancementWidgetType/$values ()[Lnet/minecraft/client/gui/screens/advancements/AdvancementWidgetType; +MD: net/minecraft/client/gui/screens/advancements/AdvancementWidgetType/m_97325_ ()I net/minecraft/client/gui/screens/advancements/AdvancementWidgetType/getIndex ()I +MD: net/minecraft/client/gui/screens/advancements/AdvancementWidgetType/valueOf (Ljava/lang/String;)Lnet/minecraft/client/gui/screens/advancements/AdvancementWidgetType; net/minecraft/client/gui/screens/advancements/AdvancementWidgetType/valueOf (Ljava/lang/String;)Lnet/minecraft/client/gui/screens/advancements/AdvancementWidgetType; +MD: net/minecraft/client/gui/screens/advancements/AdvancementWidgetType/values ()[Lnet/minecraft/client/gui/screens/advancements/AdvancementWidgetType; net/minecraft/client/gui/screens/advancements/AdvancementWidgetType/values ()[Lnet/minecraft/client/gui/screens/advancements/AdvancementWidgetType; +MD: net/minecraft/client/gui/screens/advancements/AdvancementsScreen/ ()V net/minecraft/client/gui/screens/advancements/AdvancementsScreen/ ()V +MD: net/minecraft/client/gui/screens/advancements/AdvancementsScreen/ (Lnet/minecraft/client/multiplayer/ClientAdvancements;)V net/minecraft/client/gui/screens/advancements/AdvancementsScreen/ (Lnet/minecraft/client/multiplayer/ClientAdvancements;)V +MD: net/minecraft/client/gui/screens/advancements/AdvancementsScreen/m_280088_ (Lnet/minecraft/client/gui/GuiGraphics;II)V net/minecraft/client/gui/screens/advancements/AdvancementsScreen/renderWindow (Lnet/minecraft/client/gui/GuiGraphics;II)V +MD: net/minecraft/client/gui/screens/advancements/AdvancementsScreen/m_280355_ (Lnet/minecraft/client/gui/GuiGraphics;IIII)V net/minecraft/client/gui/screens/advancements/AdvancementsScreen/renderTooltips (Lnet/minecraft/client/gui/GuiGraphics;IIII)V +MD: net/minecraft/client/gui/screens/advancements/AdvancementsScreen/m_5504_ (Lnet/minecraft/advancements/Advancement;)V net/minecraft/client/gui/screens/advancements/AdvancementsScreen/onRemoveAdvancementRoot (Lnet/minecraft/advancements/Advancement;)V +MD: net/minecraft/client/gui/screens/advancements/AdvancementsScreen/m_5505_ (Lnet/minecraft/advancements/Advancement;)V net/minecraft/client/gui/screens/advancements/AdvancementsScreen/onAddAdvancementTask (Lnet/minecraft/advancements/Advancement;)V +MD: net/minecraft/client/gui/screens/advancements/AdvancementsScreen/m_5513_ (Lnet/minecraft/advancements/Advancement;)V net/minecraft/client/gui/screens/advancements/AdvancementsScreen/onAddAdvancementRoot (Lnet/minecraft/advancements/Advancement;)V +MD: net/minecraft/client/gui/screens/advancements/AdvancementsScreen/m_5516_ (Lnet/minecraft/advancements/Advancement;)V net/minecraft/client/gui/screens/advancements/AdvancementsScreen/onRemoveAdvancementTask (Lnet/minecraft/advancements/Advancement;)V +MD: net/minecraft/client/gui/screens/advancements/AdvancementsScreen/m_6375_ (DDI)Z net/minecraft/client/gui/screens/advancements/AdvancementsScreen/mouseClicked (DDI)Z +MD: net/minecraft/client/gui/screens/advancements/AdvancementsScreen/m_6896_ (Lnet/minecraft/advancements/Advancement;)V net/minecraft/client/gui/screens/advancements/AdvancementsScreen/onSelectedTabChanged (Lnet/minecraft/advancements/Advancement;)V +MD: net/minecraft/client/gui/screens/advancements/AdvancementsScreen/m_7204_ ()V net/minecraft/client/gui/screens/advancements/AdvancementsScreen/onAdvancementsCleared ()V +MD: net/minecraft/client/gui/screens/advancements/AdvancementsScreen/m_7856_ ()V net/minecraft/client/gui/screens/advancements/AdvancementsScreen/init ()V +MD: net/minecraft/client/gui/screens/advancements/AdvancementsScreen/m_7861_ ()V net/minecraft/client/gui/screens/advancements/AdvancementsScreen/removed ()V +MD: net/minecraft/client/gui/screens/advancements/AdvancementsScreen/m_7922_ (Lnet/minecraft/advancements/Advancement;Lnet/minecraft/advancements/AdvancementProgress;)V net/minecraft/client/gui/screens/advancements/AdvancementsScreen/onUpdateAdvancementProgress (Lnet/minecraft/advancements/Advancement;Lnet/minecraft/advancements/AdvancementProgress;)V +MD: net/minecraft/client/gui/screens/advancements/AdvancementsScreen/m_7933_ (III)Z net/minecraft/client/gui/screens/advancements/AdvancementsScreen/keyPressed (III)Z +MD: net/minecraft/client/gui/screens/advancements/AdvancementsScreen/m_7979_ (DDIDD)Z net/minecraft/client/gui/screens/advancements/AdvancementsScreen/mouseDragged (DDIDD)Z +MD: net/minecraft/client/gui/screens/advancements/AdvancementsScreen/m_88315_ (Lnet/minecraft/client/gui/GuiGraphics;IIF)V net/minecraft/client/gui/screens/advancements/AdvancementsScreen/render (Lnet/minecraft/client/gui/GuiGraphics;IIF)V +MD: net/minecraft/client/gui/screens/advancements/AdvancementsScreen/m_97373_ (Lnet/minecraft/client/gui/GuiGraphics;IIII)V net/minecraft/client/gui/screens/advancements/AdvancementsScreen/renderInside (Lnet/minecraft/client/gui/GuiGraphics;IIII)V +MD: net/minecraft/client/gui/screens/advancements/AdvancementsScreen/m_97392_ (Lnet/minecraft/advancements/Advancement;)Lnet/minecraft/client/gui/screens/advancements/AdvancementWidget; net/minecraft/client/gui/screens/advancements/AdvancementsScreen/getAdvancementWidget (Lnet/minecraft/advancements/Advancement;)Lnet/minecraft/client/gui/screens/advancements/AdvancementWidget; +MD: net/minecraft/client/gui/screens/advancements/AdvancementsScreen/m_97394_ (Lnet/minecraft/advancements/Advancement;)Lnet/minecraft/client/gui/screens/advancements/AdvancementTab; net/minecraft/client/gui/screens/advancements/AdvancementsScreen/getTab (Lnet/minecraft/advancements/Advancement;)Lnet/minecraft/client/gui/screens/advancements/AdvancementTab; +MD: net/minecraft/client/gui/screens/controls/ControlsScreen/ (Lnet/minecraft/client/gui/screens/Screen;Lnet/minecraft/client/Options;)V net/minecraft/client/gui/screens/controls/ControlsScreen/ (Lnet/minecraft/client/gui/screens/Screen;Lnet/minecraft/client/Options;)V +MD: net/minecraft/client/gui/screens/controls/ControlsScreen/m_279805_ (Lnet/minecraft/client/gui/components/Button;)V net/minecraft/client/gui/screens/controls/ControlsScreen/lambda$init$1 (Lnet/minecraft/client/gui/components/Button;)V +MD: net/minecraft/client/gui/screens/controls/ControlsScreen/m_279806_ (Lnet/minecraft/client/gui/components/Button;)V net/minecraft/client/gui/screens/controls/ControlsScreen/lambda$init$2 (Lnet/minecraft/client/gui/components/Button;)V +MD: net/minecraft/client/gui/screens/controls/ControlsScreen/m_279807_ (Lnet/minecraft/client/gui/components/Button;)V net/minecraft/client/gui/screens/controls/ControlsScreen/lambda$init$0 (Lnet/minecraft/client/gui/components/Button;)V +MD: net/minecraft/client/gui/screens/controls/ControlsScreen/m_7856_ ()V net/minecraft/client/gui/screens/controls/ControlsScreen/init ()V +MD: net/minecraft/client/gui/screens/controls/ControlsScreen/m_88315_ (Lnet/minecraft/client/gui/GuiGraphics;IIF)V net/minecraft/client/gui/screens/controls/ControlsScreen/render (Lnet/minecraft/client/gui/GuiGraphics;IIF)V +MD: net/minecraft/client/gui/screens/controls/KeyBindsList/ (Lnet/minecraft/client/gui/screens/controls/KeyBindsScreen;Lnet/minecraft/client/Minecraft;)V net/minecraft/client/gui/screens/controls/KeyBindsList/ (Lnet/minecraft/client/gui/screens/controls/KeyBindsScreen;Lnet/minecraft/client/Minecraft;)V +MD: net/minecraft/client/gui/screens/controls/KeyBindsList/m_193863_ (Lnet/minecraft/client/gui/screens/controls/KeyBindsList;)Lnet/minecraft/client/Minecraft; net/minecraft/client/gui/screens/controls/KeyBindsList/access$000 (Lnet/minecraft/client/gui/screens/controls/KeyBindsList;)Lnet/minecraft/client/Minecraft; +MD: net/minecraft/client/gui/screens/controls/KeyBindsList/m_193865_ (Lnet/minecraft/client/gui/screens/controls/KeyBindsList;)Lnet/minecraft/client/Minecraft; net/minecraft/client/gui/screens/controls/KeyBindsList/access$100 (Lnet/minecraft/client/gui/screens/controls/KeyBindsList;)Lnet/minecraft/client/Minecraft; +MD: net/minecraft/client/gui/screens/controls/KeyBindsList/m_193868_ (Lnet/minecraft/client/gui/screens/controls/KeyBindsList;)Lnet/minecraft/client/Minecraft; net/minecraft/client/gui/screens/controls/KeyBindsList/access$200 (Lnet/minecraft/client/gui/screens/controls/KeyBindsList;)Lnet/minecraft/client/Minecraft; +MD: net/minecraft/client/gui/screens/controls/KeyBindsList/m_193871_ (Lnet/minecraft/client/gui/screens/controls/KeyBindsList;)Lnet/minecraft/client/Minecraft; net/minecraft/client/gui/screens/controls/KeyBindsList/access$300 (Lnet/minecraft/client/gui/screens/controls/KeyBindsList;)Lnet/minecraft/client/Minecraft; +MD: net/minecraft/client/gui/screens/controls/KeyBindsList/m_193873_ (Lnet/minecraft/client/gui/screens/controls/KeyBindsList;)Lnet/minecraft/client/Minecraft; net/minecraft/client/gui/screens/controls/KeyBindsList/access$400 (Lnet/minecraft/client/gui/screens/controls/KeyBindsList;)Lnet/minecraft/client/Minecraft; +MD: net/minecraft/client/gui/screens/controls/KeyBindsList/m_193875_ (Lnet/minecraft/client/gui/screens/controls/KeyBindsList;)Lnet/minecraft/client/Minecraft; net/minecraft/client/gui/screens/controls/KeyBindsList/access$500 (Lnet/minecraft/client/gui/screens/controls/KeyBindsList;)Lnet/minecraft/client/Minecraft; +MD: net/minecraft/client/gui/screens/controls/KeyBindsList/m_193877_ (Lnet/minecraft/client/gui/screens/controls/KeyBindsList;)Lnet/minecraft/client/Minecraft; net/minecraft/client/gui/screens/controls/KeyBindsList/access$600 (Lnet/minecraft/client/gui/screens/controls/KeyBindsList;)Lnet/minecraft/client/Minecraft; +MD: net/minecraft/client/gui/screens/controls/KeyBindsList/m_193879_ (Lnet/minecraft/client/gui/screens/controls/KeyBindsList;)Lnet/minecraft/client/Minecraft; net/minecraft/client/gui/screens/controls/KeyBindsList/access$700 (Lnet/minecraft/client/gui/screens/controls/KeyBindsList;)Lnet/minecraft/client/Minecraft; +MD: net/minecraft/client/gui/screens/controls/KeyBindsList/m_269130_ ()V net/minecraft/client/gui/screens/controls/KeyBindsList/resetMappingAndUpdateButtons ()V +MD: net/minecraft/client/gui/screens/controls/KeyBindsList/m_269365_ ()V net/minecraft/client/gui/screens/controls/KeyBindsList/refreshEntries ()V +MD: net/minecraft/client/gui/screens/controls/KeyBindsList/m_5756_ ()I net/minecraft/client/gui/screens/controls/KeyBindsList/getScrollbarPosition ()I +MD: net/minecraft/client/gui/screens/controls/KeyBindsList/m_5759_ ()I net/minecraft/client/gui/screens/controls/KeyBindsList/getRowWidth ()I +MD: net/minecraft/client/gui/screens/controls/KeyBindsList$CategoryEntry/ (Lnet/minecraft/client/gui/screens/controls/KeyBindsList;Lnet/minecraft/network/chat/Component;)V net/minecraft/client/gui/screens/controls/KeyBindsList$CategoryEntry/ (Lnet/minecraft/client/gui/screens/controls/KeyBindsList;Lnet/minecraft/network/chat/Component;)V +MD: net/minecraft/client/gui/screens/controls/KeyBindsList$CategoryEntry/m_142437_ ()Ljava/util/List; net/minecraft/client/gui/screens/controls/KeyBindsList$CategoryEntry/narratables ()Ljava/util/List; +MD: net/minecraft/client/gui/screens/controls/KeyBindsList$CategoryEntry/m_264064_ (Lnet/minecraft/client/gui/navigation/FocusNavigationEvent;)Lnet/minecraft/client/gui/ComponentPath; net/minecraft/client/gui/screens/controls/KeyBindsList$CategoryEntry/nextFocusPath (Lnet/minecraft/client/gui/navigation/FocusNavigationEvent;)Lnet/minecraft/client/gui/ComponentPath; +MD: net/minecraft/client/gui/screens/controls/KeyBindsList$CategoryEntry/m_264257_ ()V net/minecraft/client/gui/screens/controls/KeyBindsList$CategoryEntry/refreshEntry ()V +MD: net/minecraft/client/gui/screens/controls/KeyBindsList$CategoryEntry/m_6311_ (Lnet/minecraft/client/gui/GuiGraphics;IIIIIIIZF)V net/minecraft/client/gui/screens/controls/KeyBindsList$CategoryEntry/render (Lnet/minecraft/client/gui/GuiGraphics;IIIIIIIZF)V +MD: net/minecraft/client/gui/screens/controls/KeyBindsList$CategoryEntry/m_6702_ ()Ljava/util/List; net/minecraft/client/gui/screens/controls/KeyBindsList$CategoryEntry/children ()Ljava/util/List; +MD: net/minecraft/client/gui/screens/controls/KeyBindsList$CategoryEntry$1/ (Lnet/minecraft/client/gui/screens/controls/KeyBindsList$CategoryEntry;)V net/minecraft/client/gui/screens/controls/KeyBindsList$CategoryEntry$1/ (Lnet/minecraft/client/gui/screens/controls/KeyBindsList$CategoryEntry;)V +MD: net/minecraft/client/gui/screens/controls/KeyBindsList$CategoryEntry$1/m_142291_ (Lnet/minecraft/client/gui/narration/NarrationElementOutput;)V net/minecraft/client/gui/screens/controls/KeyBindsList$CategoryEntry$1/updateNarration (Lnet/minecraft/client/gui/narration/NarrationElementOutput;)V +MD: net/minecraft/client/gui/screens/controls/KeyBindsList$CategoryEntry$1/m_142684_ ()Lnet/minecraft/client/gui/narration/NarratableEntry$NarrationPriority; net/minecraft/client/gui/screens/controls/KeyBindsList$CategoryEntry$1/narrationPriority ()Lnet/minecraft/client/gui/narration/NarratableEntry$NarrationPriority; +MD: net/minecraft/client/gui/screens/controls/KeyBindsList$Entry/ ()V net/minecraft/client/gui/screens/controls/KeyBindsList$Entry/ ()V +MD: net/minecraft/client/gui/screens/controls/KeyBindsList$Entry/m_264257_ ()V net/minecraft/client/gui/screens/controls/KeyBindsList$Entry/refreshEntry ()V +MD: net/minecraft/client/gui/screens/controls/KeyBindsList$KeyEntry/ (Lnet/minecraft/client/gui/screens/controls/KeyBindsList;Lnet/minecraft/client/KeyMapping;Lnet/minecraft/network/chat/Component;)V net/minecraft/client/gui/screens/controls/KeyBindsList$KeyEntry/ (Lnet/minecraft/client/gui/screens/controls/KeyBindsList;Lnet/minecraft/client/KeyMapping;Lnet/minecraft/network/chat/Component;)V +MD: net/minecraft/client/gui/screens/controls/KeyBindsList$KeyEntry/m_142437_ ()Ljava/util/List; net/minecraft/client/gui/screens/controls/KeyBindsList$KeyEntry/narratables ()Ljava/util/List; +MD: net/minecraft/client/gui/screens/controls/KeyBindsList$KeyEntry/m_252564_ (Lnet/minecraft/client/KeyMapping;Lnet/minecraft/network/chat/Component;Ljava/util/function/Supplier;)Lnet/minecraft/network/chat/MutableComponent; net/minecraft/client/gui/screens/controls/KeyBindsList$KeyEntry/lambda$new$1 (Lnet/minecraft/client/KeyMapping;Lnet/minecraft/network/chat/Component;Ljava/util/function/Supplier;)Lnet/minecraft/network/chat/MutableComponent; +MD: net/minecraft/client/gui/screens/controls/KeyBindsList$KeyEntry/m_252565_ (Lnet/minecraft/network/chat/Component;Ljava/util/function/Supplier;)Lnet/minecraft/network/chat/MutableComponent; net/minecraft/client/gui/screens/controls/KeyBindsList$KeyEntry/lambda$new$3 (Lnet/minecraft/network/chat/Component;Ljava/util/function/Supplier;)Lnet/minecraft/network/chat/MutableComponent; +MD: net/minecraft/client/gui/screens/controls/KeyBindsList$KeyEntry/m_264257_ ()V net/minecraft/client/gui/screens/controls/KeyBindsList$KeyEntry/refreshEntry ()V +MD: net/minecraft/client/gui/screens/controls/KeyBindsList$KeyEntry/m_268769_ (Lnet/minecraft/client/KeyMapping;Lnet/minecraft/client/gui/components/Button;)V net/minecraft/client/gui/screens/controls/KeyBindsList$KeyEntry/lambda$new$2 (Lnet/minecraft/client/KeyMapping;Lnet/minecraft/client/gui/components/Button;)V +MD: net/minecraft/client/gui/screens/controls/KeyBindsList$KeyEntry/m_268770_ (Lnet/minecraft/client/KeyMapping;Lnet/minecraft/client/gui/components/Button;)V net/minecraft/client/gui/screens/controls/KeyBindsList$KeyEntry/lambda$new$0 (Lnet/minecraft/client/KeyMapping;Lnet/minecraft/client/gui/components/Button;)V +MD: net/minecraft/client/gui/screens/controls/KeyBindsList$KeyEntry/m_6311_ (Lnet/minecraft/client/gui/GuiGraphics;IIIIIIIZF)V net/minecraft/client/gui/screens/controls/KeyBindsList$KeyEntry/render (Lnet/minecraft/client/gui/GuiGraphics;IIIIIIIZF)V +MD: net/minecraft/client/gui/screens/controls/KeyBindsList$KeyEntry/m_6702_ ()Ljava/util/List; net/minecraft/client/gui/screens/controls/KeyBindsList$KeyEntry/children ()Ljava/util/List; +MD: net/minecraft/client/gui/screens/controls/KeyBindsScreen/ (Lnet/minecraft/client/gui/screens/Screen;Lnet/minecraft/client/Options;)V net/minecraft/client/gui/screens/controls/KeyBindsScreen/ (Lnet/minecraft/client/gui/screens/Screen;Lnet/minecraft/client/Options;)V +MD: net/minecraft/client/gui/screens/controls/KeyBindsScreen/m_268771_ (Lnet/minecraft/client/gui/components/Button;)V net/minecraft/client/gui/screens/controls/KeyBindsScreen/lambda$init$0 (Lnet/minecraft/client/gui/components/Button;)V +MD: net/minecraft/client/gui/screens/controls/KeyBindsScreen/m_279808_ (Lnet/minecraft/client/gui/components/Button;)V net/minecraft/client/gui/screens/controls/KeyBindsScreen/lambda$init$1 (Lnet/minecraft/client/gui/components/Button;)V +MD: net/minecraft/client/gui/screens/controls/KeyBindsScreen/m_6375_ (DDI)Z net/minecraft/client/gui/screens/controls/KeyBindsScreen/mouseClicked (DDI)Z +MD: net/minecraft/client/gui/screens/controls/KeyBindsScreen/m_7856_ ()V net/minecraft/client/gui/screens/controls/KeyBindsScreen/init ()V +MD: net/minecraft/client/gui/screens/controls/KeyBindsScreen/m_7933_ (III)Z net/minecraft/client/gui/screens/controls/KeyBindsScreen/keyPressed (III)Z +MD: net/minecraft/client/gui/screens/controls/KeyBindsScreen/m_88315_ (Lnet/minecraft/client/gui/GuiGraphics;IIF)V net/minecraft/client/gui/screens/controls/KeyBindsScreen/render (Lnet/minecraft/client/gui/GuiGraphics;IIF)V +MD: net/minecraft/client/gui/screens/debug/GameModeSwitcherScreen/ ()V net/minecraft/client/gui/screens/debug/GameModeSwitcherScreen/ ()V +MD: net/minecraft/client/gui/screens/debug/GameModeSwitcherScreen/ ()V net/minecraft/client/gui/screens/debug/GameModeSwitcherScreen/ ()V +MD: net/minecraft/client/gui/screens/debug/GameModeSwitcherScreen/m_280040_ (Lnet/minecraft/client/Minecraft;Lnet/minecraft/client/gui/screens/debug/GameModeSwitcherScreen$GameModeIcon;)V net/minecraft/client/gui/screens/debug/GameModeSwitcherScreen/switchToHoveredGameMode (Lnet/minecraft/client/Minecraft;Lnet/minecraft/client/gui/screens/debug/GameModeSwitcherScreen$GameModeIcon;)V +MD: net/minecraft/client/gui/screens/debug/GameModeSwitcherScreen/m_7043_ ()Z net/minecraft/client/gui/screens/debug/GameModeSwitcherScreen/isPauseScreen ()Z +MD: net/minecraft/client/gui/screens/debug/GameModeSwitcherScreen/m_7856_ ()V net/minecraft/client/gui/screens/debug/GameModeSwitcherScreen/init ()V +MD: net/minecraft/client/gui/screens/debug/GameModeSwitcherScreen/m_7933_ (III)Z net/minecraft/client/gui/screens/debug/GameModeSwitcherScreen/keyPressed (III)Z +MD: net/minecraft/client/gui/screens/debug/GameModeSwitcherScreen/m_88315_ (Lnet/minecraft/client/gui/GuiGraphics;IIF)V net/minecraft/client/gui/screens/debug/GameModeSwitcherScreen/render (Lnet/minecraft/client/gui/GuiGraphics;IIF)V +MD: net/minecraft/client/gui/screens/debug/GameModeSwitcherScreen/m_97575_ ()Lnet/minecraft/world/level/GameType; net/minecraft/client/gui/screens/debug/GameModeSwitcherScreen/getDefaultSelected ()Lnet/minecraft/world/level/GameType; +MD: net/minecraft/client/gui/screens/debug/GameModeSwitcherScreen/m_97576_ ()V net/minecraft/client/gui/screens/debug/GameModeSwitcherScreen/switchToHoveredGameMode ()V +MD: net/minecraft/client/gui/screens/debug/GameModeSwitcherScreen/m_97577_ ()Z net/minecraft/client/gui/screens/debug/GameModeSwitcherScreen/checkToClose ()Z +MD: net/minecraft/client/gui/screens/debug/GameModeSwitcherScreen$1/ ()V net/minecraft/client/gui/screens/debug/GameModeSwitcherScreen$1/ ()V +MD: net/minecraft/client/gui/screens/debug/GameModeSwitcherScreen$GameModeIcon/ ()V net/minecraft/client/gui/screens/debug/GameModeSwitcherScreen$GameModeIcon/ ()V +MD: net/minecraft/client/gui/screens/debug/GameModeSwitcherScreen$GameModeIcon/ (Ljava/lang/String;ILnet/minecraft/network/chat/Component;Ljava/lang/String;Lnet/minecraft/world/item/ItemStack;)V net/minecraft/client/gui/screens/debug/GameModeSwitcherScreen$GameModeIcon/ (Ljava/lang/String;ILnet/minecraft/network/chat/Component;Ljava/lang/String;Lnet/minecraft/world/item/ItemStack;)V +MD: net/minecraft/client/gui/screens/debug/GameModeSwitcherScreen$GameModeIcon/m_169592_ ()[Lnet/minecraft/client/gui/screens/debug/GameModeSwitcherScreen$GameModeIcon; net/minecraft/client/gui/screens/debug/GameModeSwitcherScreen$GameModeIcon/$values ()[Lnet/minecraft/client/gui/screens/debug/GameModeSwitcherScreen$GameModeIcon; +MD: net/minecraft/client/gui/screens/debug/GameModeSwitcherScreen$GameModeIcon/m_280074_ (Lnet/minecraft/world/level/GameType;)Lnet/minecraft/client/gui/screens/debug/GameModeSwitcherScreen$GameModeIcon; net/minecraft/client/gui/screens/debug/GameModeSwitcherScreen$GameModeIcon/getFromGameType (Lnet/minecraft/world/level/GameType;)Lnet/minecraft/client/gui/screens/debug/GameModeSwitcherScreen$GameModeIcon; +MD: net/minecraft/client/gui/screens/debug/GameModeSwitcherScreen$GameModeIcon/m_280357_ (Lnet/minecraft/client/gui/GuiGraphics;II)V net/minecraft/client/gui/screens/debug/GameModeSwitcherScreen$GameModeIcon/drawIcon (Lnet/minecraft/client/gui/GuiGraphics;II)V +MD: net/minecraft/client/gui/screens/debug/GameModeSwitcherScreen$GameModeIcon/m_280506_ ()Lnet/minecraft/client/gui/screens/debug/GameModeSwitcherScreen$GameModeIcon; net/minecraft/client/gui/screens/debug/GameModeSwitcherScreen$GameModeIcon/getNext ()Lnet/minecraft/client/gui/screens/debug/GameModeSwitcherScreen$GameModeIcon; +MD: net/minecraft/client/gui/screens/debug/GameModeSwitcherScreen$GameModeIcon/m_97597_ ()Lnet/minecraft/network/chat/Component; net/minecraft/client/gui/screens/debug/GameModeSwitcherScreen$GameModeIcon/getName ()Lnet/minecraft/network/chat/Component; +MD: net/minecraft/client/gui/screens/debug/GameModeSwitcherScreen$GameModeIcon/m_97611_ ()Ljava/lang/String; net/minecraft/client/gui/screens/debug/GameModeSwitcherScreen$GameModeIcon/getCommand ()Ljava/lang/String; +MD: net/minecraft/client/gui/screens/debug/GameModeSwitcherScreen$GameModeIcon/valueOf (Ljava/lang/String;)Lnet/minecraft/client/gui/screens/debug/GameModeSwitcherScreen$GameModeIcon; net/minecraft/client/gui/screens/debug/GameModeSwitcherScreen$GameModeIcon/valueOf (Ljava/lang/String;)Lnet/minecraft/client/gui/screens/debug/GameModeSwitcherScreen$GameModeIcon; +MD: net/minecraft/client/gui/screens/debug/GameModeSwitcherScreen$GameModeIcon/values ()[Lnet/minecraft/client/gui/screens/debug/GameModeSwitcherScreen$GameModeIcon; net/minecraft/client/gui/screens/debug/GameModeSwitcherScreen$GameModeIcon/values ()[Lnet/minecraft/client/gui/screens/debug/GameModeSwitcherScreen$GameModeIcon; +MD: net/minecraft/client/gui/screens/debug/GameModeSwitcherScreen$GameModeSlot/ (Lnet/minecraft/client/gui/screens/debug/GameModeSwitcherScreen;Lnet/minecraft/client/gui/screens/debug/GameModeSwitcherScreen$GameModeIcon;II)V net/minecraft/client/gui/screens/debug/GameModeSwitcherScreen$GameModeSlot/ (Lnet/minecraft/client/gui/screens/debug/GameModeSwitcherScreen;Lnet/minecraft/client/gui/screens/debug/GameModeSwitcherScreen$GameModeIcon;II)V +MD: net/minecraft/client/gui/screens/debug/GameModeSwitcherScreen$GameModeSlot/m_168797_ (Lnet/minecraft/client/gui/narration/NarrationElementOutput;)V net/minecraft/client/gui/screens/debug/GameModeSwitcherScreen$GameModeSlot/updateWidgetNarration (Lnet/minecraft/client/gui/narration/NarrationElementOutput;)V +MD: net/minecraft/client/gui/screens/debug/GameModeSwitcherScreen$GameModeSlot/m_198029_ ()Z net/minecraft/client/gui/screens/debug/GameModeSwitcherScreen$GameModeSlot/isHoveredOrFocused ()Z +MD: net/minecraft/client/gui/screens/debug/GameModeSwitcherScreen$GameModeSlot/m_280023_ (Lnet/minecraft/client/gui/GuiGraphics;)V net/minecraft/client/gui/screens/debug/GameModeSwitcherScreen$GameModeSlot/drawSlot (Lnet/minecraft/client/gui/GuiGraphics;)V +MD: net/minecraft/client/gui/screens/debug/GameModeSwitcherScreen$GameModeSlot/m_280608_ (Lnet/minecraft/client/gui/GuiGraphics;)V net/minecraft/client/gui/screens/debug/GameModeSwitcherScreen$GameModeSlot/drawSelection (Lnet/minecraft/client/gui/GuiGraphics;)V +MD: net/minecraft/client/gui/screens/debug/GameModeSwitcherScreen$GameModeSlot/m_87963_ (Lnet/minecraft/client/gui/GuiGraphics;IIF)V net/minecraft/client/gui/screens/debug/GameModeSwitcherScreen$GameModeSlot/renderWidget (Lnet/minecraft/client/gui/GuiGraphics;IIF)V +MD: net/minecraft/client/gui/screens/debug/GameModeSwitcherScreen$GameModeSlot/m_97643_ (Z)V net/minecraft/client/gui/screens/debug/GameModeSwitcherScreen$GameModeSlot/setSelected (Z)V +MD: net/minecraft/client/gui/screens/inventory/AbstractCommandBlockEditScreen/ ()V net/minecraft/client/gui/screens/inventory/AbstractCommandBlockEditScreen/ ()V +MD: net/minecraft/client/gui/screens/inventory/AbstractCommandBlockEditScreen/ ()V net/minecraft/client/gui/screens/inventory/AbstractCommandBlockEditScreen/ ()V +MD: net/minecraft/client/gui/screens/inventory/AbstractCommandBlockEditScreen/m_169595_ (Lnet/minecraft/client/gui/components/CycleButton;Ljava/lang/Boolean;)V net/minecraft/client/gui/screens/inventory/AbstractCommandBlockEditScreen/lambda$init$2 (Lnet/minecraft/client/gui/components/CycleButton;Ljava/lang/Boolean;)V +MD: net/minecraft/client/gui/screens/inventory/AbstractCommandBlockEditScreen/m_169598_ (Z)V net/minecraft/client/gui/screens/inventory/AbstractCommandBlockEditScreen/updatePreviousOutput (Z)V +MD: net/minecraft/client/gui/screens/inventory/AbstractCommandBlockEditScreen/m_289589_ (Lnet/minecraft/client/gui/components/Button;)V net/minecraft/client/gui/screens/inventory/AbstractCommandBlockEditScreen/lambda$init$1 (Lnet/minecraft/client/gui/components/Button;)V +MD: net/minecraft/client/gui/screens/inventory/AbstractCommandBlockEditScreen/m_6050_ (DDD)Z net/minecraft/client/gui/screens/inventory/AbstractCommandBlockEditScreen/mouseScrolled (DDD)Z +MD: net/minecraft/client/gui/screens/inventory/AbstractCommandBlockEditScreen/m_6372_ (Lnet/minecraft/world/level/BaseCommandBlock;)V net/minecraft/client/gui/screens/inventory/AbstractCommandBlockEditScreen/populateAndSendPacket (Lnet/minecraft/world/level/BaseCommandBlock;)V +MD: net/minecraft/client/gui/screens/inventory/AbstractCommandBlockEditScreen/m_6375_ (DDI)Z net/minecraft/client/gui/screens/inventory/AbstractCommandBlockEditScreen/mouseClicked (DDI)Z +MD: net/minecraft/client/gui/screens/inventory/AbstractCommandBlockEditScreen/m_6556_ ()Lnet/minecraft/world/level/BaseCommandBlock; net/minecraft/client/gui/screens/inventory/AbstractCommandBlockEditScreen/getCommandBlock ()Lnet/minecraft/world/level/BaseCommandBlock; +MD: net/minecraft/client/gui/screens/inventory/AbstractCommandBlockEditScreen/m_6574_ (Lnet/minecraft/client/Minecraft;II)V net/minecraft/client/gui/screens/inventory/AbstractCommandBlockEditScreen/resize (Lnet/minecraft/client/Minecraft;II)V +MD: net/minecraft/client/gui/screens/inventory/AbstractCommandBlockEditScreen/m_7821_ ()I net/minecraft/client/gui/screens/inventory/AbstractCommandBlockEditScreen/getPreviousY ()I +MD: net/minecraft/client/gui/screens/inventory/AbstractCommandBlockEditScreen/m_7856_ ()V net/minecraft/client/gui/screens/inventory/AbstractCommandBlockEditScreen/init ()V +MD: net/minecraft/client/gui/screens/inventory/AbstractCommandBlockEditScreen/m_7933_ (III)Z net/minecraft/client/gui/screens/inventory/AbstractCommandBlockEditScreen/keyPressed (III)Z +MD: net/minecraft/client/gui/screens/inventory/AbstractCommandBlockEditScreen/m_86600_ ()V net/minecraft/client/gui/screens/inventory/AbstractCommandBlockEditScreen/tick ()V +MD: net/minecraft/client/gui/screens/inventory/AbstractCommandBlockEditScreen/m_88315_ (Lnet/minecraft/client/gui/GuiGraphics;IIF)V net/minecraft/client/gui/screens/inventory/AbstractCommandBlockEditScreen/render (Lnet/minecraft/client/gui/GuiGraphics;IIF)V +MD: net/minecraft/client/gui/screens/inventory/AbstractCommandBlockEditScreen/m_97688_ (Ljava/lang/String;)V net/minecraft/client/gui/screens/inventory/AbstractCommandBlockEditScreen/onEdited (Ljava/lang/String;)V +MD: net/minecraft/client/gui/screens/inventory/AbstractCommandBlockEditScreen/m_97690_ (Lnet/minecraft/client/gui/components/Button;)V net/minecraft/client/gui/screens/inventory/AbstractCommandBlockEditScreen/lambda$init$0 (Lnet/minecraft/client/gui/components/Button;)V +MD: net/minecraft/client/gui/screens/inventory/AbstractCommandBlockEditScreen/m_97695_ ()V net/minecraft/client/gui/screens/inventory/AbstractCommandBlockEditScreen/onDone ()V +MD: net/minecraft/client/gui/screens/inventory/AbstractCommandBlockEditScreen$1/ (Lnet/minecraft/client/gui/screens/inventory/AbstractCommandBlockEditScreen;Lnet/minecraft/client/gui/Font;IIIILnet/minecraft/network/chat/Component;)V net/minecraft/client/gui/screens/inventory/AbstractCommandBlockEditScreen$1/ (Lnet/minecraft/client/gui/screens/inventory/AbstractCommandBlockEditScreen;Lnet/minecraft/client/gui/Font;IIIILnet/minecraft/network/chat/Component;)V +MD: net/minecraft/client/gui/screens/inventory/AbstractCommandBlockEditScreen$1/m_5646_ ()Lnet/minecraft/network/chat/MutableComponent; net/minecraft/client/gui/screens/inventory/AbstractCommandBlockEditScreen$1/createNarrationMessage ()Lnet/minecraft/network/chat/MutableComponent; +MD: net/minecraft/client/gui/screens/inventory/AbstractContainerScreen/ ()V net/minecraft/client/gui/screens/inventory/AbstractContainerScreen/ ()V +MD: net/minecraft/client/gui/screens/inventory/AbstractContainerScreen/ (Lnet/minecraft/world/inventory/AbstractContainerMenu;Lnet/minecraft/world/entity/player/Inventory;Lnet/minecraft/network/chat/Component;)V net/minecraft/client/gui/screens/inventory/AbstractContainerScreen/ (Lnet/minecraft/world/inventory/AbstractContainerMenu;Lnet/minecraft/world/entity/player/Inventory;Lnet/minecraft/network/chat/Component;)V +MD: net/minecraft/client/gui/screens/inventory/AbstractContainerScreen/m_181908_ ()V net/minecraft/client/gui/screens/inventory/AbstractContainerScreen/containerTick ()V +MD: net/minecraft/client/gui/screens/inventory/AbstractContainerScreen/m_238391_ ()V net/minecraft/client/gui/screens/inventory/AbstractContainerScreen/clearDraggingState ()V +MD: net/minecraft/client/gui/screens/inventory/AbstractContainerScreen/m_280003_ (Lnet/minecraft/client/gui/GuiGraphics;II)V net/minecraft/client/gui/screens/inventory/AbstractContainerScreen/renderLabels (Lnet/minecraft/client/gui/GuiGraphics;II)V +MD: net/minecraft/client/gui/screens/inventory/AbstractContainerScreen/m_280072_ (Lnet/minecraft/client/gui/GuiGraphics;II)V net/minecraft/client/gui/screens/inventory/AbstractContainerScreen/renderTooltip (Lnet/minecraft/client/gui/GuiGraphics;II)V +MD: net/minecraft/client/gui/screens/inventory/AbstractContainerScreen/m_280092_ (Lnet/minecraft/client/gui/GuiGraphics;Lnet/minecraft/world/inventory/Slot;)V net/minecraft/client/gui/screens/inventory/AbstractContainerScreen/renderSlot (Lnet/minecraft/client/gui/GuiGraphics;Lnet/minecraft/world/inventory/Slot;)V +MD: net/minecraft/client/gui/screens/inventory/AbstractContainerScreen/m_280211_ (Lnet/minecraft/client/gui/GuiGraphics;Lnet/minecraft/world/item/ItemStack;IILjava/lang/String;)V net/minecraft/client/gui/screens/inventory/AbstractContainerScreen/renderFloatingItem (Lnet/minecraft/client/gui/GuiGraphics;Lnet/minecraft/world/item/ItemStack;IILjava/lang/String;)V +MD: net/minecraft/client/gui/screens/inventory/AbstractContainerScreen/m_280359_ (Lnet/minecraft/client/gui/GuiGraphics;III)V net/minecraft/client/gui/screens/inventory/AbstractContainerScreen/renderSlotHighlight (Lnet/minecraft/client/gui/GuiGraphics;III)V +MD: net/minecraft/client/gui/screens/inventory/AbstractContainerScreen/m_280553_ (Lnet/minecraft/world/item/ItemStack;)Ljava/util/List; net/minecraft/client/gui/screens/inventory/AbstractContainerScreen/getTooltipFromContainerItem (Lnet/minecraft/world/item/ItemStack;)Ljava/util/List; +MD: net/minecraft/client/gui/screens/inventory/AbstractContainerScreen/m_6262_ ()Lnet/minecraft/world/inventory/AbstractContainerMenu; net/minecraft/client/gui/screens/inventory/AbstractContainerScreen/getMenu ()Lnet/minecraft/world/inventory/AbstractContainerMenu; +MD: net/minecraft/client/gui/screens/inventory/AbstractContainerScreen/m_6348_ (DDI)Z net/minecraft/client/gui/screens/inventory/AbstractContainerScreen/mouseReleased (DDI)Z +MD: net/minecraft/client/gui/screens/inventory/AbstractContainerScreen/m_6375_ (DDI)Z net/minecraft/client/gui/screens/inventory/AbstractContainerScreen/mouseClicked (DDI)Z +MD: net/minecraft/client/gui/screens/inventory/AbstractContainerScreen/m_6597_ (Lnet/minecraft/world/inventory/Slot;IILnet/minecraft/world/inventory/ClickType;)V net/minecraft/client/gui/screens/inventory/AbstractContainerScreen/slotClicked (Lnet/minecraft/world/inventory/Slot;IILnet/minecraft/world/inventory/ClickType;)V +MD: net/minecraft/client/gui/screens/inventory/AbstractContainerScreen/m_6774_ (IIIIDD)Z net/minecraft/client/gui/screens/inventory/AbstractContainerScreen/isHovering (IIIIDD)Z +MD: net/minecraft/client/gui/screens/inventory/AbstractContainerScreen/m_7043_ ()Z net/minecraft/client/gui/screens/inventory/AbstractContainerScreen/isPauseScreen ()Z +MD: net/minecraft/client/gui/screens/inventory/AbstractContainerScreen/m_7286_ (Lnet/minecraft/client/gui/GuiGraphics;FII)V net/minecraft/client/gui/screens/inventory/AbstractContainerScreen/renderBg (Lnet/minecraft/client/gui/GuiGraphics;FII)V +MD: net/minecraft/client/gui/screens/inventory/AbstractContainerScreen/m_7379_ ()V net/minecraft/client/gui/screens/inventory/AbstractContainerScreen/onClose ()V +MD: net/minecraft/client/gui/screens/inventory/AbstractContainerScreen/m_7467_ (DDIII)Z net/minecraft/client/gui/screens/inventory/AbstractContainerScreen/hasClickedOutside (DDIII)Z +MD: net/minecraft/client/gui/screens/inventory/AbstractContainerScreen/m_7856_ ()V net/minecraft/client/gui/screens/inventory/AbstractContainerScreen/init ()V +MD: net/minecraft/client/gui/screens/inventory/AbstractContainerScreen/m_7861_ ()V net/minecraft/client/gui/screens/inventory/AbstractContainerScreen/removed ()V +MD: net/minecraft/client/gui/screens/inventory/AbstractContainerScreen/m_7933_ (III)Z net/minecraft/client/gui/screens/inventory/AbstractContainerScreen/keyPressed (III)Z +MD: net/minecraft/client/gui/screens/inventory/AbstractContainerScreen/m_7979_ (DDIDD)Z net/minecraft/client/gui/screens/inventory/AbstractContainerScreen/mouseDragged (DDIDD)Z +MD: net/minecraft/client/gui/screens/inventory/AbstractContainerScreen/m_86600_ ()V net/minecraft/client/gui/screens/inventory/AbstractContainerScreen/tick ()V +MD: net/minecraft/client/gui/screens/inventory/AbstractContainerScreen/m_88315_ (Lnet/minecraft/client/gui/GuiGraphics;IIF)V net/minecraft/client/gui/screens/inventory/AbstractContainerScreen/render (Lnet/minecraft/client/gui/GuiGraphics;IIF)V +MD: net/minecraft/client/gui/screens/inventory/AbstractContainerScreen/m_97744_ (DD)Lnet/minecraft/world/inventory/Slot; net/minecraft/client/gui/screens/inventory/AbstractContainerScreen/findSlot (DD)Lnet/minecraft/world/inventory/Slot; +MD: net/minecraft/client/gui/screens/inventory/AbstractContainerScreen/m_97762_ (I)V net/minecraft/client/gui/screens/inventory/AbstractContainerScreen/checkHotbarMouseClicked (I)V +MD: net/minecraft/client/gui/screens/inventory/AbstractContainerScreen/m_97774_ (Lnet/minecraft/world/inventory/Slot;DD)Z net/minecraft/client/gui/screens/inventory/AbstractContainerScreen/isHovering (Lnet/minecraft/world/inventory/Slot;DD)Z +MD: net/minecraft/client/gui/screens/inventory/AbstractContainerScreen/m_97805_ (II)Z net/minecraft/client/gui/screens/inventory/AbstractContainerScreen/checkHotbarKeyPressed (II)Z +MD: net/minecraft/client/gui/screens/inventory/AbstractContainerScreen/m_97818_ ()V net/minecraft/client/gui/screens/inventory/AbstractContainerScreen/recalculateQuickCraftRemaining ()V +MD: net/minecraft/client/gui/screens/inventory/AbstractFurnaceScreen/ ()V net/minecraft/client/gui/screens/inventory/AbstractFurnaceScreen/ ()V +MD: net/minecraft/client/gui/screens/inventory/AbstractFurnaceScreen/ (Lnet/minecraft/world/inventory/AbstractFurnaceMenu;Lnet/minecraft/client/gui/screens/recipebook/AbstractFurnaceRecipeBookComponent;Lnet/minecraft/world/entity/player/Inventory;Lnet/minecraft/network/chat/Component;Lnet/minecraft/resources/ResourceLocation;)V net/minecraft/client/gui/screens/inventory/AbstractFurnaceScreen/ (Lnet/minecraft/world/inventory/AbstractFurnaceMenu;Lnet/minecraft/client/gui/screens/recipebook/AbstractFurnaceRecipeBookComponent;Lnet/minecraft/world/entity/player/Inventory;Lnet/minecraft/network/chat/Component;Lnet/minecraft/resources/ResourceLocation;)V +MD: net/minecraft/client/gui/screens/inventory/AbstractFurnaceScreen/m_181908_ ()V net/minecraft/client/gui/screens/inventory/AbstractFurnaceScreen/containerTick ()V +MD: net/minecraft/client/gui/screens/inventory/AbstractFurnaceScreen/m_289590_ (Lnet/minecraft/client/gui/components/Button;)V net/minecraft/client/gui/screens/inventory/AbstractFurnaceScreen/lambda$init$0 (Lnet/minecraft/client/gui/components/Button;)V +MD: net/minecraft/client/gui/screens/inventory/AbstractFurnaceScreen/m_5534_ (CI)Z net/minecraft/client/gui/screens/inventory/AbstractFurnaceScreen/charTyped (CI)Z +MD: net/minecraft/client/gui/screens/inventory/AbstractFurnaceScreen/m_5564_ ()Lnet/minecraft/client/gui/screens/recipebook/RecipeBookComponent; net/minecraft/client/gui/screens/inventory/AbstractFurnaceScreen/getRecipeBookComponent ()Lnet/minecraft/client/gui/screens/recipebook/RecipeBookComponent; +MD: net/minecraft/client/gui/screens/inventory/AbstractFurnaceScreen/m_6375_ (DDI)Z net/minecraft/client/gui/screens/inventory/AbstractFurnaceScreen/mouseClicked (DDI)Z +MD: net/minecraft/client/gui/screens/inventory/AbstractFurnaceScreen/m_6597_ (Lnet/minecraft/world/inventory/Slot;IILnet/minecraft/world/inventory/ClickType;)V net/minecraft/client/gui/screens/inventory/AbstractFurnaceScreen/slotClicked (Lnet/minecraft/world/inventory/Slot;IILnet/minecraft/world/inventory/ClickType;)V +MD: net/minecraft/client/gui/screens/inventory/AbstractFurnaceScreen/m_6916_ ()V net/minecraft/client/gui/screens/inventory/AbstractFurnaceScreen/recipesUpdated ()V +MD: net/minecraft/client/gui/screens/inventory/AbstractFurnaceScreen/m_7286_ (Lnet/minecraft/client/gui/GuiGraphics;FII)V net/minecraft/client/gui/screens/inventory/AbstractFurnaceScreen/renderBg (Lnet/minecraft/client/gui/GuiGraphics;FII)V +MD: net/minecraft/client/gui/screens/inventory/AbstractFurnaceScreen/m_7467_ (DDIII)Z net/minecraft/client/gui/screens/inventory/AbstractFurnaceScreen/hasClickedOutside (DDIII)Z +MD: net/minecraft/client/gui/screens/inventory/AbstractFurnaceScreen/m_7856_ ()V net/minecraft/client/gui/screens/inventory/AbstractFurnaceScreen/init ()V +MD: net/minecraft/client/gui/screens/inventory/AbstractFurnaceScreen/m_7933_ (III)Z net/minecraft/client/gui/screens/inventory/AbstractFurnaceScreen/keyPressed (III)Z +MD: net/minecraft/client/gui/screens/inventory/AbstractFurnaceScreen/m_88315_ (Lnet/minecraft/client/gui/GuiGraphics;IIF)V net/minecraft/client/gui/screens/inventory/AbstractFurnaceScreen/render (Lnet/minecraft/client/gui/GuiGraphics;IIF)V +MD: net/minecraft/client/gui/screens/inventory/AbstractSignEditScreen/ (Lnet/minecraft/world/level/block/entity/SignBlockEntity;ZZ)V net/minecraft/client/gui/screens/inventory/AbstractSignEditScreen/ (Lnet/minecraft/world/level/block/entity/SignBlockEntity;ZZ)V +MD: net/minecraft/client/gui/screens/inventory/AbstractSignEditScreen/ (Lnet/minecraft/world/level/block/entity/SignBlockEntity;ZZLnet/minecraft/network/chat/Component;)V net/minecraft/client/gui/screens/inventory/AbstractSignEditScreen/ (Lnet/minecraft/world/level/block/entity/SignBlockEntity;ZZLnet/minecraft/network/chat/Component;)V +MD: net/minecraft/client/gui/screens/inventory/AbstractSignEditScreen/m_245038_ ()Lorg/joml/Vector3f; net/minecraft/client/gui/screens/inventory/AbstractSignEditScreen/getSignTextScale ()Lorg/joml/Vector3f; +MD: net/minecraft/client/gui/screens/inventory/AbstractSignEditScreen/m_245490_ (Lnet/minecraft/client/gui/GuiGraphics;Lnet/minecraft/world/level/block/state/BlockState;)V net/minecraft/client/gui/screens/inventory/AbstractSignEditScreen/renderSignBackground (Lnet/minecraft/client/gui/GuiGraphics;Lnet/minecraft/world/level/block/state/BlockState;)V +MD: net/minecraft/client/gui/screens/inventory/AbstractSignEditScreen/m_245491_ (I)[Ljava/lang/String; net/minecraft/client/gui/screens/inventory/AbstractSignEditScreen/lambda$new$1 (I)[Ljava/lang/String; +MD: net/minecraft/client/gui/screens/inventory/AbstractSignEditScreen/m_245712_ ()V net/minecraft/client/gui/screens/inventory/AbstractSignEditScreen/onDone ()V +MD: net/minecraft/client/gui/screens/inventory/AbstractSignEditScreen/m_246292_ ()Ljava/lang/String; net/minecraft/client/gui/screens/inventory/AbstractSignEditScreen/lambda$init$3 ()Ljava/lang/String; +MD: net/minecraft/client/gui/screens/inventory/AbstractSignEditScreen/m_247127_ (Lnet/minecraft/client/gui/components/Button;)V net/minecraft/client/gui/screens/inventory/AbstractSignEditScreen/lambda$init$2 (Lnet/minecraft/client/gui/components/Button;)V +MD: net/minecraft/client/gui/screens/inventory/AbstractSignEditScreen/m_276701_ (ZI)Lnet/minecraft/network/chat/Component; net/minecraft/client/gui/screens/inventory/AbstractSignEditScreen/lambda$new$0 (ZI)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/client/gui/screens/inventory/AbstractSignEditScreen/m_276846_ ()Z net/minecraft/client/gui/screens/inventory/AbstractSignEditScreen/isValid ()Z +MD: net/minecraft/client/gui/screens/inventory/AbstractSignEditScreen/m_276998_ (Ljava/lang/String;)V net/minecraft/client/gui/screens/inventory/AbstractSignEditScreen/setMessage (Ljava/lang/String;)V +MD: net/minecraft/client/gui/screens/inventory/AbstractSignEditScreen/m_279811_ (Ljava/lang/String;)Z net/minecraft/client/gui/screens/inventory/AbstractSignEditScreen/lambda$init$4 (Ljava/lang/String;)Z +MD: net/minecraft/client/gui/screens/inventory/AbstractSignEditScreen/m_280050_ (Lnet/minecraft/client/gui/GuiGraphics;Lnet/minecraft/world/level/block/state/BlockState;)V net/minecraft/client/gui/screens/inventory/AbstractSignEditScreen/offsetSign (Lnet/minecraft/client/gui/GuiGraphics;Lnet/minecraft/world/level/block/state/BlockState;)V +MD: net/minecraft/client/gui/screens/inventory/AbstractSignEditScreen/m_280079_ (Lnet/minecraft/client/gui/GuiGraphics;)V net/minecraft/client/gui/screens/inventory/AbstractSignEditScreen/renderSignText (Lnet/minecraft/client/gui/GuiGraphics;)V +MD: net/minecraft/client/gui/screens/inventory/AbstractSignEditScreen/m_280362_ (Lnet/minecraft/client/gui/GuiGraphics;)V net/minecraft/client/gui/screens/inventory/AbstractSignEditScreen/renderSign (Lnet/minecraft/client/gui/GuiGraphics;)V +MD: net/minecraft/client/gui/screens/inventory/AbstractSignEditScreen/m_5534_ (CI)Z net/minecraft/client/gui/screens/inventory/AbstractSignEditScreen/charTyped (CI)Z +MD: net/minecraft/client/gui/screens/inventory/AbstractSignEditScreen/m_7043_ ()Z net/minecraft/client/gui/screens/inventory/AbstractSignEditScreen/isPauseScreen ()Z +MD: net/minecraft/client/gui/screens/inventory/AbstractSignEditScreen/m_7379_ ()V net/minecraft/client/gui/screens/inventory/AbstractSignEditScreen/onClose ()V +MD: net/minecraft/client/gui/screens/inventory/AbstractSignEditScreen/m_7856_ ()V net/minecraft/client/gui/screens/inventory/AbstractSignEditScreen/init ()V +MD: net/minecraft/client/gui/screens/inventory/AbstractSignEditScreen/m_7861_ ()V net/minecraft/client/gui/screens/inventory/AbstractSignEditScreen/removed ()V +MD: net/minecraft/client/gui/screens/inventory/AbstractSignEditScreen/m_7933_ (III)Z net/minecraft/client/gui/screens/inventory/AbstractSignEditScreen/keyPressed (III)Z +MD: net/minecraft/client/gui/screens/inventory/AbstractSignEditScreen/m_86600_ ()V net/minecraft/client/gui/screens/inventory/AbstractSignEditScreen/tick ()V +MD: net/minecraft/client/gui/screens/inventory/AbstractSignEditScreen/m_88315_ (Lnet/minecraft/client/gui/GuiGraphics;IIF)V net/minecraft/client/gui/screens/inventory/AbstractSignEditScreen/render (Lnet/minecraft/client/gui/GuiGraphics;IIF)V +MD: net/minecraft/client/gui/screens/inventory/AnvilScreen/ ()V net/minecraft/client/gui/screens/inventory/AnvilScreen/ ()V +MD: net/minecraft/client/gui/screens/inventory/AnvilScreen/ (Lnet/minecraft/world/inventory/AnvilMenu;Lnet/minecraft/world/entity/player/Inventory;Lnet/minecraft/network/chat/Component;)V net/minecraft/client/gui/screens/inventory/AnvilScreen/ (Lnet/minecraft/world/inventory/AnvilMenu;Lnet/minecraft/world/entity/player/Inventory;Lnet/minecraft/network/chat/Component;)V +MD: net/minecraft/client/gui/screens/inventory/AnvilScreen/m_181908_ ()V net/minecraft/client/gui/screens/inventory/AnvilScreen/containerTick ()V +MD: net/minecraft/client/gui/screens/inventory/AnvilScreen/m_266390_ (Lnet/minecraft/client/gui/GuiGraphics;II)V net/minecraft/client/gui/screens/inventory/AnvilScreen/renderErrorIcon (Lnet/minecraft/client/gui/GuiGraphics;II)V +MD: net/minecraft/client/gui/screens/inventory/AnvilScreen/m_280003_ (Lnet/minecraft/client/gui/GuiGraphics;II)V net/minecraft/client/gui/screens/inventory/AnvilScreen/renderLabels (Lnet/minecraft/client/gui/GuiGraphics;II)V +MD: net/minecraft/client/gui/screens/inventory/AnvilScreen/m_5653_ ()V net/minecraft/client/gui/screens/inventory/AnvilScreen/subInit ()V +MD: net/minecraft/client/gui/screens/inventory/AnvilScreen/m_6574_ (Lnet/minecraft/client/Minecraft;II)V net/minecraft/client/gui/screens/inventory/AnvilScreen/resize (Lnet/minecraft/client/Minecraft;II)V +MD: net/minecraft/client/gui/screens/inventory/AnvilScreen/m_6691_ (Lnet/minecraft/client/gui/GuiGraphics;IIF)V net/minecraft/client/gui/screens/inventory/AnvilScreen/renderFg (Lnet/minecraft/client/gui/GuiGraphics;IIF)V +MD: net/minecraft/client/gui/screens/inventory/AnvilScreen/m_7286_ (Lnet/minecraft/client/gui/GuiGraphics;FII)V net/minecraft/client/gui/screens/inventory/AnvilScreen/renderBg (Lnet/minecraft/client/gui/GuiGraphics;FII)V +MD: net/minecraft/client/gui/screens/inventory/AnvilScreen/m_7933_ (III)Z net/minecraft/client/gui/screens/inventory/AnvilScreen/keyPressed (III)Z +MD: net/minecraft/client/gui/screens/inventory/AnvilScreen/m_7934_ (Lnet/minecraft/world/inventory/AbstractContainerMenu;ILnet/minecraft/world/item/ItemStack;)V net/minecraft/client/gui/screens/inventory/AnvilScreen/slotChanged (Lnet/minecraft/world/inventory/AbstractContainerMenu;ILnet/minecraft/world/item/ItemStack;)V +MD: net/minecraft/client/gui/screens/inventory/AnvilScreen/m_97898_ (Ljava/lang/String;)V net/minecraft/client/gui/screens/inventory/AnvilScreen/onNameChanged (Ljava/lang/String;)V +MD: net/minecraft/client/gui/screens/inventory/BeaconScreen/ ()V net/minecraft/client/gui/screens/inventory/BeaconScreen/ ()V +MD: net/minecraft/client/gui/screens/inventory/BeaconScreen/ (Lnet/minecraft/world/inventory/BeaconMenu;Lnet/minecraft/world/entity/player/Inventory;Lnet/minecraft/network/chat/Component;)V net/minecraft/client/gui/screens/inventory/BeaconScreen/ (Lnet/minecraft/world/inventory/BeaconMenu;Lnet/minecraft/world/entity/player/Inventory;Lnet/minecraft/network/chat/Component;)V +MD: net/minecraft/client/gui/screens/inventory/BeaconScreen/m_169613_ (ILnet/minecraft/client/gui/screens/inventory/BeaconScreen$BeaconButton;)V net/minecraft/client/gui/screens/inventory/BeaconScreen/lambda$updateButtons$0 (ILnet/minecraft/client/gui/screens/inventory/BeaconScreen$BeaconButton;)V +MD: net/minecraft/client/gui/screens/inventory/BeaconScreen/m_169616_ (Lnet/minecraft/client/gui/components/AbstractWidget;)V net/minecraft/client/gui/screens/inventory/BeaconScreen/addBeaconButton (Lnet/minecraft/client/gui/components/AbstractWidget;)V +MD: net/minecraft/client/gui/screens/inventory/BeaconScreen/m_169620_ (Lnet/minecraft/client/gui/screens/inventory/BeaconScreen;)Lnet/minecraft/client/Minecraft; net/minecraft/client/gui/screens/inventory/BeaconScreen/access$100 (Lnet/minecraft/client/gui/screens/inventory/BeaconScreen;)Lnet/minecraft/client/Minecraft; +MD: net/minecraft/client/gui/screens/inventory/BeaconScreen/m_169622_ (Lnet/minecraft/client/gui/screens/inventory/BeaconScreen;)Lnet/minecraft/client/Minecraft; net/minecraft/client/gui/screens/inventory/BeaconScreen/access$200 (Lnet/minecraft/client/gui/screens/inventory/BeaconScreen;)Lnet/minecraft/client/Minecraft; +MD: net/minecraft/client/gui/screens/inventory/BeaconScreen/m_169624_ (Lnet/minecraft/client/gui/screens/inventory/BeaconScreen;)Lnet/minecraft/client/Minecraft; net/minecraft/client/gui/screens/inventory/BeaconScreen/access$000 (Lnet/minecraft/client/gui/screens/inventory/BeaconScreen;)Lnet/minecraft/client/Minecraft; +MD: net/minecraft/client/gui/screens/inventory/BeaconScreen/m_169626_ ()V net/minecraft/client/gui/screens/inventory/BeaconScreen/updateButtons ()V +MD: net/minecraft/client/gui/screens/inventory/BeaconScreen/m_181908_ ()V net/minecraft/client/gui/screens/inventory/BeaconScreen/containerTick ()V +MD: net/minecraft/client/gui/screens/inventory/BeaconScreen/m_280003_ (Lnet/minecraft/client/gui/GuiGraphics;II)V net/minecraft/client/gui/screens/inventory/BeaconScreen/renderLabels (Lnet/minecraft/client/gui/GuiGraphics;II)V +MD: net/minecraft/client/gui/screens/inventory/BeaconScreen/m_7286_ (Lnet/minecraft/client/gui/GuiGraphics;FII)V net/minecraft/client/gui/screens/inventory/BeaconScreen/renderBg (Lnet/minecraft/client/gui/GuiGraphics;FII)V +MD: net/minecraft/client/gui/screens/inventory/BeaconScreen/m_7856_ ()V net/minecraft/client/gui/screens/inventory/BeaconScreen/init ()V +MD: net/minecraft/client/gui/screens/inventory/BeaconScreen/m_88315_ (Lnet/minecraft/client/gui/GuiGraphics;IIF)V net/minecraft/client/gui/screens/inventory/BeaconScreen/render (Lnet/minecraft/client/gui/GuiGraphics;IIF)V +MD: net/minecraft/client/gui/screens/inventory/BeaconScreen$1/ (Lnet/minecraft/client/gui/screens/inventory/BeaconScreen;Lnet/minecraft/world/inventory/BeaconMenu;)V net/minecraft/client/gui/screens/inventory/BeaconScreen$1/ (Lnet/minecraft/client/gui/screens/inventory/BeaconScreen;Lnet/minecraft/world/inventory/BeaconMenu;)V +MD: net/minecraft/client/gui/screens/inventory/BeaconScreen$1/m_142153_ (Lnet/minecraft/world/inventory/AbstractContainerMenu;II)V net/minecraft/client/gui/screens/inventory/BeaconScreen$1/dataChanged (Lnet/minecraft/world/inventory/AbstractContainerMenu;II)V +MD: net/minecraft/client/gui/screens/inventory/BeaconScreen$1/m_7934_ (Lnet/minecraft/world/inventory/AbstractContainerMenu;ILnet/minecraft/world/item/ItemStack;)V net/minecraft/client/gui/screens/inventory/BeaconScreen$1/slotChanged (Lnet/minecraft/world/inventory/AbstractContainerMenu;ILnet/minecraft/world/item/ItemStack;)V +MD: net/minecraft/client/gui/screens/inventory/BeaconScreen$BeaconButton/m_142400_ (I)V net/minecraft/client/gui/screens/inventory/BeaconScreen$BeaconButton/updateStatus (I)V +MD: net/minecraft/client/gui/screens/inventory/BeaconScreen$BeaconCancelButton/ (Lnet/minecraft/client/gui/screens/inventory/BeaconScreen;II)V net/minecraft/client/gui/screens/inventory/BeaconScreen$BeaconCancelButton/ (Lnet/minecraft/client/gui/screens/inventory/BeaconScreen;II)V +MD: net/minecraft/client/gui/screens/inventory/BeaconScreen$BeaconCancelButton/m_142400_ (I)V net/minecraft/client/gui/screens/inventory/BeaconScreen$BeaconCancelButton/updateStatus (I)V +MD: net/minecraft/client/gui/screens/inventory/BeaconScreen$BeaconCancelButton/m_5691_ ()V net/minecraft/client/gui/screens/inventory/BeaconScreen$BeaconCancelButton/onPress ()V +MD: net/minecraft/client/gui/screens/inventory/BeaconScreen$BeaconConfirmButton/ (Lnet/minecraft/client/gui/screens/inventory/BeaconScreen;II)V net/minecraft/client/gui/screens/inventory/BeaconScreen$BeaconConfirmButton/ (Lnet/minecraft/client/gui/screens/inventory/BeaconScreen;II)V +MD: net/minecraft/client/gui/screens/inventory/BeaconScreen$BeaconConfirmButton/m_142400_ (I)V net/minecraft/client/gui/screens/inventory/BeaconScreen$BeaconConfirmButton/updateStatus (I)V +MD: net/minecraft/client/gui/screens/inventory/BeaconScreen$BeaconConfirmButton/m_5691_ ()V net/minecraft/client/gui/screens/inventory/BeaconScreen$BeaconConfirmButton/onPress ()V +MD: net/minecraft/client/gui/screens/inventory/BeaconScreen$BeaconPowerButton/ (Lnet/minecraft/client/gui/screens/inventory/BeaconScreen;IILnet/minecraft/world/effect/MobEffect;ZI)V net/minecraft/client/gui/screens/inventory/BeaconScreen$BeaconPowerButton/ (Lnet/minecraft/client/gui/screens/inventory/BeaconScreen;IILnet/minecraft/world/effect/MobEffect;ZI)V +MD: net/minecraft/client/gui/screens/inventory/BeaconScreen$BeaconPowerButton/m_141934_ (Lnet/minecraft/world/effect/MobEffect;)Lnet/minecraft/network/chat/MutableComponent; net/minecraft/client/gui/screens/inventory/BeaconScreen$BeaconPowerButton/createEffectDescription (Lnet/minecraft/world/effect/MobEffect;)Lnet/minecraft/network/chat/MutableComponent; +MD: net/minecraft/client/gui/screens/inventory/BeaconScreen$BeaconPowerButton/m_142400_ (I)V net/minecraft/client/gui/screens/inventory/BeaconScreen$BeaconPowerButton/updateStatus (I)V +MD: net/minecraft/client/gui/screens/inventory/BeaconScreen$BeaconPowerButton/m_169649_ (Lnet/minecraft/world/effect/MobEffect;)V net/minecraft/client/gui/screens/inventory/BeaconScreen$BeaconPowerButton/setEffect (Lnet/minecraft/world/effect/MobEffect;)V +MD: net/minecraft/client/gui/screens/inventory/BeaconScreen$BeaconPowerButton/m_5646_ ()Lnet/minecraft/network/chat/MutableComponent; net/minecraft/client/gui/screens/inventory/BeaconScreen$BeaconPowerButton/createNarrationMessage ()Lnet/minecraft/network/chat/MutableComponent; +MD: net/minecraft/client/gui/screens/inventory/BeaconScreen$BeaconPowerButton/m_5691_ ()V net/minecraft/client/gui/screens/inventory/BeaconScreen$BeaconPowerButton/onPress ()V +MD: net/minecraft/client/gui/screens/inventory/BeaconScreen$BeaconPowerButton/m_6805_ (Lnet/minecraft/client/gui/GuiGraphics;)V net/minecraft/client/gui/screens/inventory/BeaconScreen$BeaconPowerButton/renderIcon (Lnet/minecraft/client/gui/GuiGraphics;)V +MD: net/minecraft/client/gui/screens/inventory/BeaconScreen$BeaconScreenButton/ (II)V net/minecraft/client/gui/screens/inventory/BeaconScreen$BeaconScreenButton/ (II)V +MD: net/minecraft/client/gui/screens/inventory/BeaconScreen$BeaconScreenButton/ (IILnet/minecraft/network/chat/Component;)V net/minecraft/client/gui/screens/inventory/BeaconScreen$BeaconScreenButton/ (IILnet/minecraft/network/chat/Component;)V +MD: net/minecraft/client/gui/screens/inventory/BeaconScreen$BeaconScreenButton/m_168797_ (Lnet/minecraft/client/gui/narration/NarrationElementOutput;)V net/minecraft/client/gui/screens/inventory/BeaconScreen$BeaconScreenButton/updateWidgetNarration (Lnet/minecraft/client/gui/narration/NarrationElementOutput;)V +MD: net/minecraft/client/gui/screens/inventory/BeaconScreen$BeaconScreenButton/m_6805_ (Lnet/minecraft/client/gui/GuiGraphics;)V net/minecraft/client/gui/screens/inventory/BeaconScreen$BeaconScreenButton/renderIcon (Lnet/minecraft/client/gui/GuiGraphics;)V +MD: net/minecraft/client/gui/screens/inventory/BeaconScreen$BeaconScreenButton/m_87963_ (Lnet/minecraft/client/gui/GuiGraphics;IIF)V net/minecraft/client/gui/screens/inventory/BeaconScreen$BeaconScreenButton/renderWidget (Lnet/minecraft/client/gui/GuiGraphics;IIF)V +MD: net/minecraft/client/gui/screens/inventory/BeaconScreen$BeaconScreenButton/m_98024_ ()Z net/minecraft/client/gui/screens/inventory/BeaconScreen$BeaconScreenButton/isSelected ()Z +MD: net/minecraft/client/gui/screens/inventory/BeaconScreen$BeaconScreenButton/m_98031_ (Z)V net/minecraft/client/gui/screens/inventory/BeaconScreen$BeaconScreenButton/setSelected (Z)V +MD: net/minecraft/client/gui/screens/inventory/BeaconScreen$BeaconSpriteScreenButton/ (IIIILnet/minecraft/network/chat/Component;)V net/minecraft/client/gui/screens/inventory/BeaconScreen$BeaconSpriteScreenButton/ (IIIILnet/minecraft/network/chat/Component;)V +MD: net/minecraft/client/gui/screens/inventory/BeaconScreen$BeaconSpriteScreenButton/m_6805_ (Lnet/minecraft/client/gui/GuiGraphics;)V net/minecraft/client/gui/screens/inventory/BeaconScreen$BeaconSpriteScreenButton/renderIcon (Lnet/minecraft/client/gui/GuiGraphics;)V +MD: net/minecraft/client/gui/screens/inventory/BeaconScreen$BeaconUpgradePowerButton/ (Lnet/minecraft/client/gui/screens/inventory/BeaconScreen;IILnet/minecraft/world/effect/MobEffect;)V net/minecraft/client/gui/screens/inventory/BeaconScreen$BeaconUpgradePowerButton/ (Lnet/minecraft/client/gui/screens/inventory/BeaconScreen;IILnet/minecraft/world/effect/MobEffect;)V +MD: net/minecraft/client/gui/screens/inventory/BeaconScreen$BeaconUpgradePowerButton/m_141934_ (Lnet/minecraft/world/effect/MobEffect;)Lnet/minecraft/network/chat/MutableComponent; net/minecraft/client/gui/screens/inventory/BeaconScreen$BeaconUpgradePowerButton/createEffectDescription (Lnet/minecraft/world/effect/MobEffect;)Lnet/minecraft/network/chat/MutableComponent; +MD: net/minecraft/client/gui/screens/inventory/BeaconScreen$BeaconUpgradePowerButton/m_142400_ (I)V net/minecraft/client/gui/screens/inventory/BeaconScreen$BeaconUpgradePowerButton/updateStatus (I)V +MD: net/minecraft/client/gui/screens/inventory/BlastFurnaceScreen/ ()V net/minecraft/client/gui/screens/inventory/BlastFurnaceScreen/ ()V +MD: net/minecraft/client/gui/screens/inventory/BlastFurnaceScreen/ (Lnet/minecraft/world/inventory/BlastFurnaceMenu;Lnet/minecraft/world/entity/player/Inventory;Lnet/minecraft/network/chat/Component;)V net/minecraft/client/gui/screens/inventory/BlastFurnaceScreen/ (Lnet/minecraft/world/inventory/BlastFurnaceMenu;Lnet/minecraft/world/entity/player/Inventory;Lnet/minecraft/network/chat/Component;)V +MD: net/minecraft/client/gui/screens/inventory/BookEditScreen/ ()V net/minecraft/client/gui/screens/inventory/BookEditScreen/ ()V +MD: net/minecraft/client/gui/screens/inventory/BookEditScreen/ (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/InteractionHand;)V net/minecraft/client/gui/screens/inventory/BookEditScreen/ (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/InteractionHand;)V +MD: net/minecraft/client/gui/screens/inventory/BookEditScreen/m_182574_ (Z)V net/minecraft/client/gui/screens/inventory/BookEditScreen/updateLocalCopy (Z)V +MD: net/minecraft/client/gui/screens/inventory/BookEditScreen/m_264248_ (Lnet/minecraft/client/gui/GuiGraphics;[Lnet/minecraft/client/renderer/Rect2i;)V net/minecraft/client/gui/screens/inventory/BookEditScreen/renderHighlight (Lnet/minecraft/client/gui/GuiGraphics;[Lnet/minecraft/client/renderer/Rect2i;)V +MD: net/minecraft/client/gui/screens/inventory/BookEditScreen/m_279812_ (Lnet/minecraft/client/gui/components/Button;)V net/minecraft/client/gui/screens/inventory/BookEditScreen/lambda$init$5 (Lnet/minecraft/client/gui/components/Button;)V +MD: net/minecraft/client/gui/screens/inventory/BookEditScreen/m_279813_ (Lnet/minecraft/client/gui/components/Button;)V net/minecraft/client/gui/screens/inventory/BookEditScreen/lambda$init$6 (Lnet/minecraft/client/gui/components/Button;)V +MD: net/minecraft/client/gui/screens/inventory/BookEditScreen/m_279814_ (Ljava/lang/String;)Z net/minecraft/client/gui/screens/inventory/BookEditScreen/lambda$new$0 (Ljava/lang/String;)Z +MD: net/minecraft/client/gui/screens/inventory/BookEditScreen/m_280220_ (Lnet/minecraft/client/gui/GuiGraphics;Lnet/minecraft/client/gui/screens/inventory/BookEditScreen$Pos2i;Z)V net/minecraft/client/gui/screens/inventory/BookEditScreen/renderCursor (Lnet/minecraft/client/gui/GuiGraphics;Lnet/minecraft/client/gui/screens/inventory/BookEditScreen$Pos2i;Z)V +MD: net/minecraft/client/gui/screens/inventory/BookEditScreen/m_5534_ (CI)Z net/minecraft/client/gui/screens/inventory/BookEditScreen/charTyped (CI)Z +MD: net/minecraft/client/gui/screens/inventory/BookEditScreen/m_6375_ (DDI)Z net/minecraft/client/gui/screens/inventory/BookEditScreen/mouseClicked (DDI)Z +MD: net/minecraft/client/gui/screens/inventory/BookEditScreen/m_7856_ ()V net/minecraft/client/gui/screens/inventory/BookEditScreen/init ()V +MD: net/minecraft/client/gui/screens/inventory/BookEditScreen/m_7933_ (III)Z net/minecraft/client/gui/screens/inventory/BookEditScreen/keyPressed (III)Z +MD: net/minecraft/client/gui/screens/inventory/BookEditScreen/m_7979_ (DDIDD)Z net/minecraft/client/gui/screens/inventory/BookEditScreen/mouseDragged (DDIDD)Z +MD: net/minecraft/client/gui/screens/inventory/BookEditScreen/m_86600_ ()V net/minecraft/client/gui/screens/inventory/BookEditScreen/tick ()V +MD: net/minecraft/client/gui/screens/inventory/BookEditScreen/m_88315_ (Lnet/minecraft/client/gui/GuiGraphics;IIF)V net/minecraft/client/gui/screens/inventory/BookEditScreen/render (Lnet/minecraft/client/gui/GuiGraphics;IIF)V +MD: net/minecraft/client/gui/screens/inventory/BookEditScreen/m_98079_ ()Lnet/minecraft/client/gui/screens/inventory/BookEditScreen$DisplayCache; net/minecraft/client/gui/screens/inventory/BookEditScreen/getDisplayCache ()Lnet/minecraft/client/gui/screens/inventory/BookEditScreen$DisplayCache; +MD: net/minecraft/client/gui/screens/inventory/BookEditScreen/m_98080_ ()V net/minecraft/client/gui/screens/inventory/BookEditScreen/clearDisplayCache ()V +MD: net/minecraft/client/gui/screens/inventory/BookEditScreen/m_98081_ ()V net/minecraft/client/gui/screens/inventory/BookEditScreen/clearDisplayCacheAfterPageChange ()V +MD: net/minecraft/client/gui/screens/inventory/BookEditScreen/m_98082_ ()Lnet/minecraft/client/gui/screens/inventory/BookEditScreen$DisplayCache; net/minecraft/client/gui/screens/inventory/BookEditScreen/rebuildDisplayCache ()Lnet/minecraft/client/gui/screens/inventory/BookEditScreen$DisplayCache; +MD: net/minecraft/client/gui/screens/inventory/BookEditScreen/m_98083_ ()Ljava/lang/String; net/minecraft/client/gui/screens/inventory/BookEditScreen/lambda$new$1 ()Ljava/lang/String; +MD: net/minecraft/client/gui/screens/inventory/BookEditScreen/m_98097_ (I)V net/minecraft/client/gui/screens/inventory/BookEditScreen/changeLine (I)V +MD: net/minecraft/client/gui/screens/inventory/BookEditScreen/m_98112_ (Lnet/minecraft/client/gui/components/Button;)V net/minecraft/client/gui/screens/inventory/BookEditScreen/lambda$init$9 (Lnet/minecraft/client/gui/components/Button;)V +MD: net/minecraft/client/gui/screens/inventory/BookEditScreen/m_98114_ (Lnet/minecraft/client/gui/screens/inventory/BookEditScreen$Pos2i;)Lnet/minecraft/client/gui/screens/inventory/BookEditScreen$Pos2i; net/minecraft/client/gui/screens/inventory/BookEditScreen/convertScreenToLocal (Lnet/minecraft/client/gui/screens/inventory/BookEditScreen$Pos2i;)Lnet/minecraft/client/gui/screens/inventory/BookEditScreen$Pos2i; +MD: net/minecraft/client/gui/screens/inventory/BookEditScreen/m_98116_ (Lnet/minecraft/client/gui/screens/inventory/BookEditScreen$Pos2i;Lnet/minecraft/client/gui/screens/inventory/BookEditScreen$Pos2i;)Lnet/minecraft/client/renderer/Rect2i; net/minecraft/client/gui/screens/inventory/BookEditScreen/createSelection (Lnet/minecraft/client/gui/screens/inventory/BookEditScreen$Pos2i;Lnet/minecraft/client/gui/screens/inventory/BookEditScreen$Pos2i;)Lnet/minecraft/client/renderer/Rect2i; +MD: net/minecraft/client/gui/screens/inventory/BookEditScreen/m_98119_ (Ljava/lang/String;Lnet/minecraft/client/StringSplitter;IIII)Lnet/minecraft/client/renderer/Rect2i; net/minecraft/client/gui/screens/inventory/BookEditScreen/createPartialLineSelection (Ljava/lang/String;Lnet/minecraft/client/StringSplitter;IIII)Lnet/minecraft/client/renderer/Rect2i; +MD: net/minecraft/client/gui/screens/inventory/BookEditScreen/m_98126_ (Lorg/apache/commons/lang3/mutable/MutableInt;Ljava/lang/String;Lorg/apache/commons/lang3/mutable/MutableBoolean;Lit/unimi/dsi/fastutil/ints/IntList;Ljava/util/List;Lnet/minecraft/network/chat/Style;II)V net/minecraft/client/gui/screens/inventory/BookEditScreen/lambda$rebuildDisplayCache$10 (Lorg/apache/commons/lang3/mutable/MutableInt;Ljava/lang/String;Lorg/apache/commons/lang3/mutable/MutableBoolean;Lit/unimi/dsi/fastutil/ints/IntList;Ljava/util/List;Lnet/minecraft/network/chat/Style;II)V +MD: net/minecraft/client/gui/screens/inventory/BookEditScreen/m_98141_ (I)V net/minecraft/client/gui/screens/inventory/BookEditScreen/selectWord (I)V +MD: net/minecraft/client/gui/screens/inventory/BookEditScreen/m_98143_ (Lnet/minecraft/client/gui/components/Button;)V net/minecraft/client/gui/screens/inventory/BookEditScreen/lambda$init$8 (Lnet/minecraft/client/gui/components/Button;)V +MD: net/minecraft/client/gui/screens/inventory/BookEditScreen/m_98145_ (Lnet/minecraft/client/gui/screens/inventory/BookEditScreen$Pos2i;)Lnet/minecraft/client/gui/screens/inventory/BookEditScreen$Pos2i; net/minecraft/client/gui/screens/inventory/BookEditScreen/convertLocalToScreen (Lnet/minecraft/client/gui/screens/inventory/BookEditScreen$Pos2i;)Lnet/minecraft/client/gui/screens/inventory/BookEditScreen$Pos2i; +MD: net/minecraft/client/gui/screens/inventory/BookEditScreen/m_98147_ (Ljava/lang/String;)V net/minecraft/client/gui/screens/inventory/BookEditScreen/setClipboard (Ljava/lang/String;)V +MD: net/minecraft/client/gui/screens/inventory/BookEditScreen/m_98149_ ([II)I net/minecraft/client/gui/screens/inventory/BookEditScreen/findLineFromPos ([II)I +MD: net/minecraft/client/gui/screens/inventory/BookEditScreen/m_98152_ (III)Z net/minecraft/client/gui/screens/inventory/BookEditScreen/bookKeyPressed (III)Z +MD: net/minecraft/client/gui/screens/inventory/BookEditScreen/m_98156_ (Lnet/minecraft/client/gui/components/Button;)V net/minecraft/client/gui/screens/inventory/BookEditScreen/lambda$init$7 (Lnet/minecraft/client/gui/components/Button;)V +MD: net/minecraft/client/gui/screens/inventory/BookEditScreen/m_98158_ (Ljava/lang/String;)V net/minecraft/client/gui/screens/inventory/BookEditScreen/setCurrentPageText (Ljava/lang/String;)V +MD: net/minecraft/client/gui/screens/inventory/BookEditScreen/m_98160_ (Z)V net/minecraft/client/gui/screens/inventory/BookEditScreen/saveChanges (Z)V +MD: net/minecraft/client/gui/screens/inventory/BookEditScreen/m_98163_ (III)Z net/minecraft/client/gui/screens/inventory/BookEditScreen/titleKeyPressed (III)Z +MD: net/minecraft/client/gui/screens/inventory/BookEditScreen/m_98169_ (Ljava/lang/String;)Z net/minecraft/client/gui/screens/inventory/BookEditScreen/lambda$new$3 (Ljava/lang/String;)Z +MD: net/minecraft/client/gui/screens/inventory/BookEditScreen/m_98174_ (Ljava/lang/String;)V net/minecraft/client/gui/screens/inventory/BookEditScreen/lambda$new$2 (Ljava/lang/String;)V +MD: net/minecraft/client/gui/screens/inventory/BookEditScreen/m_98176_ (Lnet/minecraft/client/gui/components/Button;)V net/minecraft/client/gui/screens/inventory/BookEditScreen/lambda$init$4 (Lnet/minecraft/client/gui/components/Button;)V +MD: net/minecraft/client/gui/screens/inventory/BookEditScreen/m_98180_ ()Ljava/lang/String; net/minecraft/client/gui/screens/inventory/BookEditScreen/getClipboard ()Ljava/lang/String; +MD: net/minecraft/client/gui/screens/inventory/BookEditScreen/m_98181_ ()I net/minecraft/client/gui/screens/inventory/BookEditScreen/getNumPages ()I +MD: net/minecraft/client/gui/screens/inventory/BookEditScreen/m_98182_ ()V net/minecraft/client/gui/screens/inventory/BookEditScreen/pageBack ()V +MD: net/minecraft/client/gui/screens/inventory/BookEditScreen/m_98183_ ()V net/minecraft/client/gui/screens/inventory/BookEditScreen/pageForward ()V +MD: net/minecraft/client/gui/screens/inventory/BookEditScreen/m_98184_ ()V net/minecraft/client/gui/screens/inventory/BookEditScreen/updateButtonVisibility ()V +MD: net/minecraft/client/gui/screens/inventory/BookEditScreen/m_98185_ ()V net/minecraft/client/gui/screens/inventory/BookEditScreen/eraseEmptyTrailingPages ()V +MD: net/minecraft/client/gui/screens/inventory/BookEditScreen/m_98186_ ()V net/minecraft/client/gui/screens/inventory/BookEditScreen/appendPageToBook ()V +MD: net/minecraft/client/gui/screens/inventory/BookEditScreen/m_98187_ ()V net/minecraft/client/gui/screens/inventory/BookEditScreen/keyUp ()V +MD: net/minecraft/client/gui/screens/inventory/BookEditScreen/m_98188_ ()V net/minecraft/client/gui/screens/inventory/BookEditScreen/keyDown ()V +MD: net/minecraft/client/gui/screens/inventory/BookEditScreen/m_98189_ ()V net/minecraft/client/gui/screens/inventory/BookEditScreen/keyHome ()V +MD: net/minecraft/client/gui/screens/inventory/BookEditScreen/m_98190_ ()V net/minecraft/client/gui/screens/inventory/BookEditScreen/keyEnd ()V +MD: net/minecraft/client/gui/screens/inventory/BookEditScreen/m_98191_ ()Ljava/lang/String; net/minecraft/client/gui/screens/inventory/BookEditScreen/getCurrentPageText ()Ljava/lang/String; +MD: net/minecraft/client/gui/screens/inventory/BookEditScreen$DisplayCache/ ()V net/minecraft/client/gui/screens/inventory/BookEditScreen$DisplayCache/ ()V +MD: net/minecraft/client/gui/screens/inventory/BookEditScreen$DisplayCache/ (Ljava/lang/String;Lnet/minecraft/client/gui/screens/inventory/BookEditScreen$Pos2i;Z[I[Lnet/minecraft/client/gui/screens/inventory/BookEditScreen$LineInfo;[Lnet/minecraft/client/renderer/Rect2i;)V net/minecraft/client/gui/screens/inventory/BookEditScreen$DisplayCache/ (Ljava/lang/String;Lnet/minecraft/client/gui/screens/inventory/BookEditScreen$Pos2i;Z[I[Lnet/minecraft/client/gui/screens/inventory/BookEditScreen$LineInfo;[Lnet/minecraft/client/renderer/Rect2i;)V +MD: net/minecraft/client/gui/screens/inventory/BookEditScreen$DisplayCache/m_98208_ (I)I net/minecraft/client/gui/screens/inventory/BookEditScreen$DisplayCache/findLineStart (I)I +MD: net/minecraft/client/gui/screens/inventory/BookEditScreen$DisplayCache/m_98210_ (II)I net/minecraft/client/gui/screens/inventory/BookEditScreen$DisplayCache/changeLine (II)I +MD: net/minecraft/client/gui/screens/inventory/BookEditScreen$DisplayCache/m_98213_ (Lnet/minecraft/client/gui/Font;Lnet/minecraft/client/gui/screens/inventory/BookEditScreen$Pos2i;)I net/minecraft/client/gui/screens/inventory/BookEditScreen$DisplayCache/getIndexAtPosition (Lnet/minecraft/client/gui/Font;Lnet/minecraft/client/gui/screens/inventory/BookEditScreen$Pos2i;)I +MD: net/minecraft/client/gui/screens/inventory/BookEditScreen$DisplayCache/m_98218_ (I)I net/minecraft/client/gui/screens/inventory/BookEditScreen$DisplayCache/findLineEnd (I)I +MD: net/minecraft/client/gui/screens/inventory/BookEditScreen$LineInfo/ (Lnet/minecraft/network/chat/Style;Ljava/lang/String;II)V net/minecraft/client/gui/screens/inventory/BookEditScreen$LineInfo/ (Lnet/minecraft/network/chat/Style;Ljava/lang/String;II)V +MD: net/minecraft/client/gui/screens/inventory/BookEditScreen$Pos2i/ (II)V net/minecraft/client/gui/screens/inventory/BookEditScreen$Pos2i/ (II)V +MD: net/minecraft/client/gui/screens/inventory/BookViewScreen/ ()V net/minecraft/client/gui/screens/inventory/BookViewScreen/ ()V +MD: net/minecraft/client/gui/screens/inventory/BookViewScreen/ (Lnet/minecraft/client/gui/screens/inventory/BookViewScreen$BookAccess;Z)V net/minecraft/client/gui/screens/inventory/BookViewScreen/ (Lnet/minecraft/client/gui/screens/inventory/BookViewScreen$BookAccess;Z)V +MD: net/minecraft/client/gui/screens/inventory/BookViewScreen/ ()V net/minecraft/client/gui/screens/inventory/BookViewScreen/ ()V +MD: net/minecraft/client/gui/screens/inventory/BookViewScreen/ (Lnet/minecraft/client/gui/screens/inventory/BookViewScreen$BookAccess;)V net/minecraft/client/gui/screens/inventory/BookViewScreen/ (Lnet/minecraft/client/gui/screens/inventory/BookViewScreen$BookAccess;)V +MD: net/minecraft/client/gui/screens/inventory/BookViewScreen/m_141919_ ()V net/minecraft/client/gui/screens/inventory/BookViewScreen/closeScreen ()V +MD: net/minecraft/client/gui/screens/inventory/BookViewScreen/m_169694_ (Lnet/minecraft/nbt/CompoundTag;)Ljava/util/List; net/minecraft/client/gui/screens/inventory/BookViewScreen/loadPages (Lnet/minecraft/nbt/CompoundTag;)Ljava/util/List; +MD: net/minecraft/client/gui/screens/inventory/BookViewScreen/m_169696_ (Lnet/minecraft/nbt/CompoundTag;Ljava/util/function/Consumer;)V net/minecraft/client/gui/screens/inventory/BookViewScreen/loadPages (Lnet/minecraft/nbt/CompoundTag;Ljava/util/function/Consumer;)V +MD: net/minecraft/client/gui/screens/inventory/BookViewScreen/m_169699_ (Lnet/minecraft/nbt/CompoundTag;Lnet/minecraft/nbt/ListTag;I)Ljava/lang/String; net/minecraft/client/gui/screens/inventory/BookViewScreen/lambda$loadPages$3 (Lnet/minecraft/nbt/CompoundTag;Lnet/minecraft/nbt/ListTag;I)Ljava/lang/String; +MD: net/minecraft/client/gui/screens/inventory/BookViewScreen/m_289591_ (Lnet/minecraft/client/gui/components/Button;)V net/minecraft/client/gui/screens/inventory/BookViewScreen/lambda$createMenuControls$0 (Lnet/minecraft/client/gui/components/Button;)V +MD: net/minecraft/client/gui/screens/inventory/BookViewScreen/m_5561_ (Lnet/minecraft/network/chat/Style;)Z net/minecraft/client/gui/screens/inventory/BookViewScreen/handleComponentClicked (Lnet/minecraft/network/chat/Style;)Z +MD: net/minecraft/client/gui/screens/inventory/BookViewScreen/m_6375_ (DDI)Z net/minecraft/client/gui/screens/inventory/BookViewScreen/mouseClicked (DDI)Z +MD: net/minecraft/client/gui/screens/inventory/BookViewScreen/m_7735_ (I)Z net/minecraft/client/gui/screens/inventory/BookViewScreen/forcePage (I)Z +MD: net/minecraft/client/gui/screens/inventory/BookViewScreen/m_7811_ ()V net/minecraft/client/gui/screens/inventory/BookViewScreen/pageBack ()V +MD: net/minecraft/client/gui/screens/inventory/BookViewScreen/m_7815_ ()V net/minecraft/client/gui/screens/inventory/BookViewScreen/pageForward ()V +MD: net/minecraft/client/gui/screens/inventory/BookViewScreen/m_7829_ ()V net/minecraft/client/gui/screens/inventory/BookViewScreen/createMenuControls ()V +MD: net/minecraft/client/gui/screens/inventory/BookViewScreen/m_7856_ ()V net/minecraft/client/gui/screens/inventory/BookViewScreen/init ()V +MD: net/minecraft/client/gui/screens/inventory/BookViewScreen/m_7933_ (III)Z net/minecraft/client/gui/screens/inventory/BookViewScreen/keyPressed (III)Z +MD: net/minecraft/client/gui/screens/inventory/BookViewScreen/m_88315_ (Lnet/minecraft/client/gui/GuiGraphics;IIF)V net/minecraft/client/gui/screens/inventory/BookViewScreen/render (Lnet/minecraft/client/gui/GuiGraphics;IIF)V +MD: net/minecraft/client/gui/screens/inventory/BookViewScreen/m_98268_ (DD)Lnet/minecraft/network/chat/Style; net/minecraft/client/gui/screens/inventory/BookViewScreen/getClickedComponentStyleAt (DD)Lnet/minecraft/network/chat/Style; +MD: net/minecraft/client/gui/screens/inventory/BookViewScreen/m_98275_ (I)Z net/minecraft/client/gui/screens/inventory/BookViewScreen/setPage (I)Z +MD: net/minecraft/client/gui/screens/inventory/BookViewScreen/m_98286_ (Lnet/minecraft/client/gui/components/Button;)V net/minecraft/client/gui/screens/inventory/BookViewScreen/lambda$createPageControlButtons$2 (Lnet/minecraft/client/gui/components/Button;)V +MD: net/minecraft/client/gui/screens/inventory/BookViewScreen/m_98288_ (Lnet/minecraft/client/gui/screens/inventory/BookViewScreen$BookAccess;)V net/minecraft/client/gui/screens/inventory/BookViewScreen/setBookAccess (Lnet/minecraft/client/gui/screens/inventory/BookViewScreen$BookAccess;)V +MD: net/minecraft/client/gui/screens/inventory/BookViewScreen/m_98296_ (Lnet/minecraft/client/gui/components/Button;)V net/minecraft/client/gui/screens/inventory/BookViewScreen/lambda$createPageControlButtons$1 (Lnet/minecraft/client/gui/components/Button;)V +MD: net/minecraft/client/gui/screens/inventory/BookViewScreen/m_98300_ ()I net/minecraft/client/gui/screens/inventory/BookViewScreen/getNumPages ()I +MD: net/minecraft/client/gui/screens/inventory/BookViewScreen/m_98301_ ()V net/minecraft/client/gui/screens/inventory/BookViewScreen/createPageControlButtons ()V +MD: net/minecraft/client/gui/screens/inventory/BookViewScreen/m_98302_ ()V net/minecraft/client/gui/screens/inventory/BookViewScreen/updateButtonVisibility ()V +MD: net/minecraft/client/gui/screens/inventory/BookViewScreen$1/ ()V net/minecraft/client/gui/screens/inventory/BookViewScreen$1/ ()V +MD: net/minecraft/client/gui/screens/inventory/BookViewScreen$1/m_5732_ ()I net/minecraft/client/gui/screens/inventory/BookViewScreen$1/getPageCount ()I +MD: net/minecraft/client/gui/screens/inventory/BookViewScreen$1/m_7303_ (I)Lnet/minecraft/network/chat/FormattedText; net/minecraft/client/gui/screens/inventory/BookViewScreen$1/getPageRaw (I)Lnet/minecraft/network/chat/FormattedText; +MD: net/minecraft/client/gui/screens/inventory/BookViewScreen$BookAccess/m_5732_ ()I net/minecraft/client/gui/screens/inventory/BookViewScreen$BookAccess/getPageCount ()I +MD: net/minecraft/client/gui/screens/inventory/BookViewScreen$BookAccess/m_7303_ (I)Lnet/minecraft/network/chat/FormattedText; net/minecraft/client/gui/screens/inventory/BookViewScreen$BookAccess/getPageRaw (I)Lnet/minecraft/network/chat/FormattedText; +MD: net/minecraft/client/gui/screens/inventory/BookViewScreen$BookAccess/m_98308_ (Lnet/minecraft/world/item/ItemStack;)Lnet/minecraft/client/gui/screens/inventory/BookViewScreen$BookAccess; net/minecraft/client/gui/screens/inventory/BookViewScreen$BookAccess/fromItem (Lnet/minecraft/world/item/ItemStack;)Lnet/minecraft/client/gui/screens/inventory/BookViewScreen$BookAccess; +MD: net/minecraft/client/gui/screens/inventory/BookViewScreen$BookAccess/m_98310_ (I)Lnet/minecraft/network/chat/FormattedText; net/minecraft/client/gui/screens/inventory/BookViewScreen$BookAccess/getPage (I)Lnet/minecraft/network/chat/FormattedText; +MD: net/minecraft/client/gui/screens/inventory/BookViewScreen$WritableBookAccess/ (Lnet/minecraft/world/item/ItemStack;)V net/minecraft/client/gui/screens/inventory/BookViewScreen$WritableBookAccess/ (Lnet/minecraft/world/item/ItemStack;)V +MD: net/minecraft/client/gui/screens/inventory/BookViewScreen$WritableBookAccess/m_5732_ ()I net/minecraft/client/gui/screens/inventory/BookViewScreen$WritableBookAccess/getPageCount ()I +MD: net/minecraft/client/gui/screens/inventory/BookViewScreen$WritableBookAccess/m_7303_ (I)Lnet/minecraft/network/chat/FormattedText; net/minecraft/client/gui/screens/inventory/BookViewScreen$WritableBookAccess/getPageRaw (I)Lnet/minecraft/network/chat/FormattedText; +MD: net/minecraft/client/gui/screens/inventory/BookViewScreen$WritableBookAccess/m_98318_ (Lnet/minecraft/world/item/ItemStack;)Ljava/util/List; net/minecraft/client/gui/screens/inventory/BookViewScreen$WritableBookAccess/readPages (Lnet/minecraft/world/item/ItemStack;)Ljava/util/List; +MD: net/minecraft/client/gui/screens/inventory/BookViewScreen$WrittenBookAccess/ (Lnet/minecraft/world/item/ItemStack;)V net/minecraft/client/gui/screens/inventory/BookViewScreen$WrittenBookAccess/ (Lnet/minecraft/world/item/ItemStack;)V +MD: net/minecraft/client/gui/screens/inventory/BookViewScreen$WrittenBookAccess/m_5732_ ()I net/minecraft/client/gui/screens/inventory/BookViewScreen$WrittenBookAccess/getPageCount ()I +MD: net/minecraft/client/gui/screens/inventory/BookViewScreen$WrittenBookAccess/m_7303_ (I)Lnet/minecraft/network/chat/FormattedText; net/minecraft/client/gui/screens/inventory/BookViewScreen$WrittenBookAccess/getPageRaw (I)Lnet/minecraft/network/chat/FormattedText; +MD: net/minecraft/client/gui/screens/inventory/BookViewScreen$WrittenBookAccess/m_98326_ (Lnet/minecraft/world/item/ItemStack;)Ljava/util/List; net/minecraft/client/gui/screens/inventory/BookViewScreen$WrittenBookAccess/readPages (Lnet/minecraft/world/item/ItemStack;)Ljava/util/List; +MD: net/minecraft/client/gui/screens/inventory/BrewingStandScreen/ ()V net/minecraft/client/gui/screens/inventory/BrewingStandScreen/ ()V +MD: net/minecraft/client/gui/screens/inventory/BrewingStandScreen/ (Lnet/minecraft/world/inventory/BrewingStandMenu;Lnet/minecraft/world/entity/player/Inventory;Lnet/minecraft/network/chat/Component;)V net/minecraft/client/gui/screens/inventory/BrewingStandScreen/ (Lnet/minecraft/world/inventory/BrewingStandMenu;Lnet/minecraft/world/entity/player/Inventory;Lnet/minecraft/network/chat/Component;)V +MD: net/minecraft/client/gui/screens/inventory/BrewingStandScreen/m_7286_ (Lnet/minecraft/client/gui/GuiGraphics;FII)V net/minecraft/client/gui/screens/inventory/BrewingStandScreen/renderBg (Lnet/minecraft/client/gui/GuiGraphics;FII)V +MD: net/minecraft/client/gui/screens/inventory/BrewingStandScreen/m_7856_ ()V net/minecraft/client/gui/screens/inventory/BrewingStandScreen/init ()V +MD: net/minecraft/client/gui/screens/inventory/BrewingStandScreen/m_88315_ (Lnet/minecraft/client/gui/GuiGraphics;IIF)V net/minecraft/client/gui/screens/inventory/BrewingStandScreen/render (Lnet/minecraft/client/gui/GuiGraphics;IIF)V +MD: net/minecraft/client/gui/screens/inventory/CartographyTableScreen/ ()V net/minecraft/client/gui/screens/inventory/CartographyTableScreen/ ()V +MD: net/minecraft/client/gui/screens/inventory/CartographyTableScreen/ (Lnet/minecraft/world/inventory/CartographyTableMenu;Lnet/minecraft/world/entity/player/Inventory;Lnet/minecraft/network/chat/Component;)V net/minecraft/client/gui/screens/inventory/CartographyTableScreen/ (Lnet/minecraft/world/inventory/CartographyTableMenu;Lnet/minecraft/world/entity/player/Inventory;Lnet/minecraft/network/chat/Component;)V +MD: net/minecraft/client/gui/screens/inventory/CartographyTableScreen/m_280090_ (Lnet/minecraft/client/gui/GuiGraphics;Ljava/lang/Integer;Lnet/minecraft/world/level/saveddata/maps/MapItemSavedData;IIF)V net/minecraft/client/gui/screens/inventory/CartographyTableScreen/renderMap (Lnet/minecraft/client/gui/GuiGraphics;Ljava/lang/Integer;Lnet/minecraft/world/level/saveddata/maps/MapItemSavedData;IIF)V +MD: net/minecraft/client/gui/screens/inventory/CartographyTableScreen/m_280549_ (Lnet/minecraft/client/gui/GuiGraphics;Ljava/lang/Integer;Lnet/minecraft/world/level/saveddata/maps/MapItemSavedData;ZZZZ)V net/minecraft/client/gui/screens/inventory/CartographyTableScreen/renderResultingMap (Lnet/minecraft/client/gui/GuiGraphics;Ljava/lang/Integer;Lnet/minecraft/world/level/saveddata/maps/MapItemSavedData;ZZZZ)V +MD: net/minecraft/client/gui/screens/inventory/CartographyTableScreen/m_7286_ (Lnet/minecraft/client/gui/GuiGraphics;FII)V net/minecraft/client/gui/screens/inventory/CartographyTableScreen/renderBg (Lnet/minecraft/client/gui/GuiGraphics;FII)V +MD: net/minecraft/client/gui/screens/inventory/CartographyTableScreen/m_88315_ (Lnet/minecraft/client/gui/GuiGraphics;IIF)V net/minecraft/client/gui/screens/inventory/CartographyTableScreen/render (Lnet/minecraft/client/gui/GuiGraphics;IIF)V +MD: net/minecraft/client/gui/screens/inventory/CommandBlockEditScreen/ (Lnet/minecraft/world/level/block/entity/CommandBlockEntity;)V net/minecraft/client/gui/screens/inventory/CommandBlockEditScreen/ (Lnet/minecraft/world/level/block/entity/CommandBlockEntity;)V +MD: net/minecraft/client/gui/screens/inventory/CommandBlockEditScreen/m_169720_ (Lnet/minecraft/client/gui/components/CycleButton;Lnet/minecraft/world/level/block/entity/CommandBlockEntity$Mode;)V net/minecraft/client/gui/screens/inventory/CommandBlockEditScreen/lambda$init$1 (Lnet/minecraft/client/gui/components/CycleButton;Lnet/minecraft/world/level/block/entity/CommandBlockEntity$Mode;)V +MD: net/minecraft/client/gui/screens/inventory/CommandBlockEditScreen/m_169723_ (Lnet/minecraft/client/gui/components/CycleButton;Ljava/lang/Boolean;)V net/minecraft/client/gui/screens/inventory/CommandBlockEditScreen/lambda$init$3 (Lnet/minecraft/client/gui/components/CycleButton;Ljava/lang/Boolean;)V +MD: net/minecraft/client/gui/screens/inventory/CommandBlockEditScreen/m_169726_ (Lnet/minecraft/client/gui/components/CycleButton;Ljava/lang/Boolean;)V net/minecraft/client/gui/screens/inventory/CommandBlockEditScreen/lambda$init$2 (Lnet/minecraft/client/gui/components/CycleButton;Ljava/lang/Boolean;)V +MD: net/minecraft/client/gui/screens/inventory/CommandBlockEditScreen/m_169729_ (Z)V net/minecraft/client/gui/screens/inventory/CommandBlockEditScreen/enableControls (Z)V +MD: net/minecraft/client/gui/screens/inventory/CommandBlockEditScreen/m_287018_ (Lnet/minecraft/world/level/block/entity/CommandBlockEntity$Mode;)Lnet/minecraft/network/chat/Component; net/minecraft/client/gui/screens/inventory/CommandBlockEditScreen/lambda$init$0 (Lnet/minecraft/world/level/block/entity/CommandBlockEntity$Mode;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/client/gui/screens/inventory/CommandBlockEditScreen/m_6372_ (Lnet/minecraft/world/level/BaseCommandBlock;)V net/minecraft/client/gui/screens/inventory/CommandBlockEditScreen/populateAndSendPacket (Lnet/minecraft/world/level/BaseCommandBlock;)V +MD: net/minecraft/client/gui/screens/inventory/CommandBlockEditScreen/m_6556_ ()Lnet/minecraft/world/level/BaseCommandBlock; net/minecraft/client/gui/screens/inventory/CommandBlockEditScreen/getCommandBlock ()Lnet/minecraft/world/level/BaseCommandBlock; +MD: net/minecraft/client/gui/screens/inventory/CommandBlockEditScreen/m_6574_ (Lnet/minecraft/client/Minecraft;II)V net/minecraft/client/gui/screens/inventory/CommandBlockEditScreen/resize (Lnet/minecraft/client/Minecraft;II)V +MD: net/minecraft/client/gui/screens/inventory/CommandBlockEditScreen/m_7821_ ()I net/minecraft/client/gui/screens/inventory/CommandBlockEditScreen/getPreviousY ()I +MD: net/minecraft/client/gui/screens/inventory/CommandBlockEditScreen/m_7856_ ()V net/minecraft/client/gui/screens/inventory/CommandBlockEditScreen/init ()V +MD: net/minecraft/client/gui/screens/inventory/CommandBlockEditScreen/m_98398_ ()V net/minecraft/client/gui/screens/inventory/CommandBlockEditScreen/updateGui ()V +MD: net/minecraft/client/gui/screens/inventory/CommandBlockEditScreen$1/ ()V net/minecraft/client/gui/screens/inventory/CommandBlockEditScreen$1/ ()V +MD: net/minecraft/client/gui/screens/inventory/ContainerScreen/ ()V net/minecraft/client/gui/screens/inventory/ContainerScreen/ ()V +MD: net/minecraft/client/gui/screens/inventory/ContainerScreen/ (Lnet/minecraft/world/inventory/ChestMenu;Lnet/minecraft/world/entity/player/Inventory;Lnet/minecraft/network/chat/Component;)V net/minecraft/client/gui/screens/inventory/ContainerScreen/ (Lnet/minecraft/world/inventory/ChestMenu;Lnet/minecraft/world/entity/player/Inventory;Lnet/minecraft/network/chat/Component;)V +MD: net/minecraft/client/gui/screens/inventory/ContainerScreen/m_7286_ (Lnet/minecraft/client/gui/GuiGraphics;FII)V net/minecraft/client/gui/screens/inventory/ContainerScreen/renderBg (Lnet/minecraft/client/gui/GuiGraphics;FII)V +MD: net/minecraft/client/gui/screens/inventory/ContainerScreen/m_88315_ (Lnet/minecraft/client/gui/GuiGraphics;IIF)V net/minecraft/client/gui/screens/inventory/ContainerScreen/render (Lnet/minecraft/client/gui/GuiGraphics;IIF)V +MD: net/minecraft/client/gui/screens/inventory/CraftingScreen/ ()V net/minecraft/client/gui/screens/inventory/CraftingScreen/ ()V +MD: net/minecraft/client/gui/screens/inventory/CraftingScreen/ (Lnet/minecraft/world/inventory/CraftingMenu;Lnet/minecraft/world/entity/player/Inventory;Lnet/minecraft/network/chat/Component;)V net/minecraft/client/gui/screens/inventory/CraftingScreen/ (Lnet/minecraft/world/inventory/CraftingMenu;Lnet/minecraft/world/entity/player/Inventory;Lnet/minecraft/network/chat/Component;)V +MD: net/minecraft/client/gui/screens/inventory/CraftingScreen/m_181908_ ()V net/minecraft/client/gui/screens/inventory/CraftingScreen/containerTick ()V +MD: net/minecraft/client/gui/screens/inventory/CraftingScreen/m_289592_ (Lnet/minecraft/client/gui/components/Button;)V net/minecraft/client/gui/screens/inventory/CraftingScreen/lambda$init$0 (Lnet/minecraft/client/gui/components/Button;)V +MD: net/minecraft/client/gui/screens/inventory/CraftingScreen/m_5564_ ()Lnet/minecraft/client/gui/screens/recipebook/RecipeBookComponent; net/minecraft/client/gui/screens/inventory/CraftingScreen/getRecipeBookComponent ()Lnet/minecraft/client/gui/screens/recipebook/RecipeBookComponent; +MD: net/minecraft/client/gui/screens/inventory/CraftingScreen/m_6375_ (DDI)Z net/minecraft/client/gui/screens/inventory/CraftingScreen/mouseClicked (DDI)Z +MD: net/minecraft/client/gui/screens/inventory/CraftingScreen/m_6597_ (Lnet/minecraft/world/inventory/Slot;IILnet/minecraft/world/inventory/ClickType;)V net/minecraft/client/gui/screens/inventory/CraftingScreen/slotClicked (Lnet/minecraft/world/inventory/Slot;IILnet/minecraft/world/inventory/ClickType;)V +MD: net/minecraft/client/gui/screens/inventory/CraftingScreen/m_6774_ (IIIIDD)Z net/minecraft/client/gui/screens/inventory/CraftingScreen/isHovering (IIIIDD)Z +MD: net/minecraft/client/gui/screens/inventory/CraftingScreen/m_6916_ ()V net/minecraft/client/gui/screens/inventory/CraftingScreen/recipesUpdated ()V +MD: net/minecraft/client/gui/screens/inventory/CraftingScreen/m_7286_ (Lnet/minecraft/client/gui/GuiGraphics;FII)V net/minecraft/client/gui/screens/inventory/CraftingScreen/renderBg (Lnet/minecraft/client/gui/GuiGraphics;FII)V +MD: net/minecraft/client/gui/screens/inventory/CraftingScreen/m_7467_ (DDIII)Z net/minecraft/client/gui/screens/inventory/CraftingScreen/hasClickedOutside (DDIII)Z +MD: net/minecraft/client/gui/screens/inventory/CraftingScreen/m_7856_ ()V net/minecraft/client/gui/screens/inventory/CraftingScreen/init ()V +MD: net/minecraft/client/gui/screens/inventory/CraftingScreen/m_88315_ (Lnet/minecraft/client/gui/GuiGraphics;IIF)V net/minecraft/client/gui/screens/inventory/CraftingScreen/render (Lnet/minecraft/client/gui/GuiGraphics;IIF)V +MD: net/minecraft/client/gui/screens/inventory/CreativeInventoryListener/ (Lnet/minecraft/client/Minecraft;)V net/minecraft/client/gui/screens/inventory/CreativeInventoryListener/ (Lnet/minecraft/client/Minecraft;)V +MD: net/minecraft/client/gui/screens/inventory/CreativeInventoryListener/m_142153_ (Lnet/minecraft/world/inventory/AbstractContainerMenu;II)V net/minecraft/client/gui/screens/inventory/CreativeInventoryListener/dataChanged (Lnet/minecraft/world/inventory/AbstractContainerMenu;II)V +MD: net/minecraft/client/gui/screens/inventory/CreativeInventoryListener/m_7934_ (Lnet/minecraft/world/inventory/AbstractContainerMenu;ILnet/minecraft/world/item/ItemStack;)V net/minecraft/client/gui/screens/inventory/CreativeInventoryListener/slotChanged (Lnet/minecraft/world/inventory/AbstractContainerMenu;ILnet/minecraft/world/item/ItemStack;)V +MD: net/minecraft/client/gui/screens/inventory/CreativeModeInventoryScreen/ ()V net/minecraft/client/gui/screens/inventory/CreativeModeInventoryScreen/ ()V +MD: net/minecraft/client/gui/screens/inventory/CreativeModeInventoryScreen/ (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/flag/FeatureFlagSet;Z)V net/minecraft/client/gui/screens/inventory/CreativeModeInventoryScreen/ (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/flag/FeatureFlagSet;Z)V +MD: net/minecraft/client/gui/screens/inventory/CreativeModeInventoryScreen/m_181908_ ()V net/minecraft/client/gui/screens/inventory/CreativeModeInventoryScreen/containerTick ()V +MD: net/minecraft/client/gui/screens/inventory/CreativeModeInventoryScreen/m_205404_ (Lnet/minecraft/world/item/ItemStack;Ljava/util/List;Lnet/minecraft/tags/TagKey;)V net/minecraft/client/gui/screens/inventory/CreativeModeInventoryScreen/lambda$getTooltipFromContainerItem$3 (Lnet/minecraft/world/item/ItemStack;Ljava/util/List;Lnet/minecraft/tags/TagKey;)V +MD: net/minecraft/client/gui/screens/inventory/CreativeModeInventoryScreen/m_205408_ (Ljava/util/function/Predicate;Lnet/minecraft/tags/TagKey;)Z net/minecraft/client/gui/screens/inventory/CreativeModeInventoryScreen/lambda$updateVisibleTags$2 (Ljava/util/function/Predicate;Lnet/minecraft/tags/TagKey;)Z +MD: net/minecraft/client/gui/screens/inventory/CreativeModeInventoryScreen/m_257687_ (Ljava/util/Collection;)V net/minecraft/client/gui/screens/inventory/CreativeModeInventoryScreen/refreshCurrentTabContents (Ljava/util/Collection;)V +MD: net/minecraft/client/gui/screens/inventory/CreativeModeInventoryScreen/m_257869_ (Lnet/minecraft/world/entity/player/Player;)Z net/minecraft/client/gui/screens/inventory/CreativeModeInventoryScreen/hasPermissions (Lnet/minecraft/world/entity/player/Player;)Z +MD: net/minecraft/client/gui/screens/inventory/CreativeModeInventoryScreen/m_257967_ (Lnet/minecraft/world/flag/FeatureFlagSet;ZLnet/minecraft/core/HolderLookup$Provider;)V net/minecraft/client/gui/screens/inventory/CreativeModeInventoryScreen/tryRefreshInvalidatedTabs (Lnet/minecraft/world/flag/FeatureFlagSet;ZLnet/minecraft/core/HolderLookup$Provider;)V +MD: net/minecraft/client/gui/screens/inventory/CreativeModeInventoryScreen/m_257995_ (Lnet/minecraft/world/item/CreativeModeTab;)I net/minecraft/client/gui/screens/inventory/CreativeModeInventoryScreen/getTabY (Lnet/minecraft/world/item/CreativeModeTab;)I +MD: net/minecraft/client/gui/screens/inventory/CreativeModeInventoryScreen/m_258017_ ()Z net/minecraft/client/gui/screens/inventory/CreativeModeInventoryScreen/isInventoryOpen ()Z +MD: net/minecraft/client/gui/screens/inventory/CreativeModeInventoryScreen/m_258094_ (Lnet/minecraft/world/item/CreativeModeTab;)I net/minecraft/client/gui/screens/inventory/CreativeModeInventoryScreen/getTabX (Lnet/minecraft/world/item/CreativeModeTab;)I +MD: net/minecraft/client/gui/screens/inventory/CreativeModeInventoryScreen/m_280003_ (Lnet/minecraft/client/gui/GuiGraphics;II)V net/minecraft/client/gui/screens/inventory/CreativeModeInventoryScreen/renderLabels (Lnet/minecraft/client/gui/GuiGraphics;II)V +MD: net/minecraft/client/gui/screens/inventory/CreativeModeInventoryScreen/m_280537_ (Lnet/minecraft/client/gui/GuiGraphics;Lnet/minecraft/world/item/CreativeModeTab;II)Z net/minecraft/client/gui/screens/inventory/CreativeModeInventoryScreen/checkTabHovering (Lnet/minecraft/client/gui/GuiGraphics;Lnet/minecraft/world/item/CreativeModeTab;II)Z +MD: net/minecraft/client/gui/screens/inventory/CreativeModeInventoryScreen/m_280553_ (Lnet/minecraft/world/item/ItemStack;)Ljava/util/List; net/minecraft/client/gui/screens/inventory/CreativeModeInventoryScreen/getTooltipFromContainerItem (Lnet/minecraft/world/item/ItemStack;)Ljava/util/List; +MD: net/minecraft/client/gui/screens/inventory/CreativeModeInventoryScreen/m_280560_ (Lnet/minecraft/client/gui/GuiGraphics;Lnet/minecraft/world/item/CreativeModeTab;)V net/minecraft/client/gui/screens/inventory/CreativeModeInventoryScreen/renderTabButton (Lnet/minecraft/client/gui/GuiGraphics;Lnet/minecraft/world/item/CreativeModeTab;)V +MD: net/minecraft/client/gui/screens/inventory/CreativeModeInventoryScreen/m_5534_ (CI)Z net/minecraft/client/gui/screens/inventory/CreativeModeInventoryScreen/charTyped (CI)Z +MD: net/minecraft/client/gui/screens/inventory/CreativeModeInventoryScreen/m_6050_ (DDD)Z net/minecraft/client/gui/screens/inventory/CreativeModeInventoryScreen/mouseScrolled (DDD)Z +MD: net/minecraft/client/gui/screens/inventory/CreativeModeInventoryScreen/m_6348_ (DDI)Z net/minecraft/client/gui/screens/inventory/CreativeModeInventoryScreen/mouseReleased (DDI)Z +MD: net/minecraft/client/gui/screens/inventory/CreativeModeInventoryScreen/m_6375_ (DDI)Z net/minecraft/client/gui/screens/inventory/CreativeModeInventoryScreen/mouseClicked (DDI)Z +MD: net/minecraft/client/gui/screens/inventory/CreativeModeInventoryScreen/m_6574_ (Lnet/minecraft/client/Minecraft;II)V net/minecraft/client/gui/screens/inventory/CreativeModeInventoryScreen/resize (Lnet/minecraft/client/Minecraft;II)V +MD: net/minecraft/client/gui/screens/inventory/CreativeModeInventoryScreen/m_6597_ (Lnet/minecraft/world/inventory/Slot;IILnet/minecraft/world/inventory/ClickType;)V net/minecraft/client/gui/screens/inventory/CreativeModeInventoryScreen/slotClicked (Lnet/minecraft/world/inventory/Slot;IILnet/minecraft/world/inventory/ClickType;)V +MD: net/minecraft/client/gui/screens/inventory/CreativeModeInventoryScreen/m_7286_ (Lnet/minecraft/client/gui/GuiGraphics;FII)V net/minecraft/client/gui/screens/inventory/CreativeModeInventoryScreen/renderBg (Lnet/minecraft/client/gui/GuiGraphics;FII)V +MD: net/minecraft/client/gui/screens/inventory/CreativeModeInventoryScreen/m_7467_ (DDIII)Z net/minecraft/client/gui/screens/inventory/CreativeModeInventoryScreen/hasClickedOutside (DDIII)Z +MD: net/minecraft/client/gui/screens/inventory/CreativeModeInventoryScreen/m_7856_ ()V net/minecraft/client/gui/screens/inventory/CreativeModeInventoryScreen/init ()V +MD: net/minecraft/client/gui/screens/inventory/CreativeModeInventoryScreen/m_7861_ ()V net/minecraft/client/gui/screens/inventory/CreativeModeInventoryScreen/removed ()V +MD: net/minecraft/client/gui/screens/inventory/CreativeModeInventoryScreen/m_7920_ (III)Z net/minecraft/client/gui/screens/inventory/CreativeModeInventoryScreen/keyReleased (III)Z +MD: net/minecraft/client/gui/screens/inventory/CreativeModeInventoryScreen/m_7933_ (III)Z net/minecraft/client/gui/screens/inventory/CreativeModeInventoryScreen/keyPressed (III)Z +MD: net/minecraft/client/gui/screens/inventory/CreativeModeInventoryScreen/m_7979_ (DDIDD)Z net/minecraft/client/gui/screens/inventory/CreativeModeInventoryScreen/mouseDragged (DDIDD)Z +MD: net/minecraft/client/gui/screens/inventory/CreativeModeInventoryScreen/m_88315_ (Lnet/minecraft/client/gui/GuiGraphics;IIF)V net/minecraft/client/gui/screens/inventory/CreativeModeInventoryScreen/render (Lnet/minecraft/client/gui/GuiGraphics;IIF)V +MD: net/minecraft/client/gui/screens/inventory/CreativeModeInventoryScreen/m_98523_ (DD)Z net/minecraft/client/gui/screens/inventory/CreativeModeInventoryScreen/insideScrollbar (DD)Z +MD: net/minecraft/client/gui/screens/inventory/CreativeModeInventoryScreen/m_98553_ (Lnet/minecraft/world/inventory/Slot;)Z net/minecraft/client/gui/screens/inventory/CreativeModeInventoryScreen/isCreativeSlot (Lnet/minecraft/world/inventory/Slot;)Z +MD: net/minecraft/client/gui/screens/inventory/CreativeModeInventoryScreen/m_98560_ (Lnet/minecraft/world/item/CreativeModeTab;)V net/minecraft/client/gui/screens/inventory/CreativeModeInventoryScreen/selectTab (Lnet/minecraft/world/item/CreativeModeTab;)V +MD: net/minecraft/client/gui/screens/inventory/CreativeModeInventoryScreen/m_98562_ (Lnet/minecraft/world/item/CreativeModeTab;DD)Z net/minecraft/client/gui/screens/inventory/CreativeModeInventoryScreen/checkTabClicked (Lnet/minecraft/world/item/CreativeModeTab;DD)Z +MD: net/minecraft/client/gui/screens/inventory/CreativeModeInventoryScreen/m_98598_ (Lnet/minecraft/client/Minecraft;IZZ)V net/minecraft/client/gui/screens/inventory/CreativeModeInventoryScreen/handleHotbarLoadOrSave (Lnet/minecraft/client/Minecraft;IZZ)V +MD: net/minecraft/client/gui/screens/inventory/CreativeModeInventoryScreen/m_98603_ (Ljava/lang/String;Ljava/lang/String;Lnet/minecraft/resources/ResourceLocation;)Z net/minecraft/client/gui/screens/inventory/CreativeModeInventoryScreen/lambda$updateVisibleTags$1 (Ljava/lang/String;Ljava/lang/String;Lnet/minecraft/resources/ResourceLocation;)Z +MD: net/minecraft/client/gui/screens/inventory/CreativeModeInventoryScreen/m_98607_ (Ljava/lang/String;Lnet/minecraft/resources/ResourceLocation;)Z net/minecraft/client/gui/screens/inventory/CreativeModeInventoryScreen/lambda$updateVisibleTags$0 (Ljava/lang/String;Lnet/minecraft/resources/ResourceLocation;)Z +MD: net/minecraft/client/gui/screens/inventory/CreativeModeInventoryScreen/m_98619_ (Ljava/lang/String;)V net/minecraft/client/gui/screens/inventory/CreativeModeInventoryScreen/updateVisibleTags (Ljava/lang/String;)V +MD: net/minecraft/client/gui/screens/inventory/CreativeModeInventoryScreen/m_98630_ ()V net/minecraft/client/gui/screens/inventory/CreativeModeInventoryScreen/refreshSearchResults ()V +MD: net/minecraft/client/gui/screens/inventory/CreativeModeInventoryScreen/m_98631_ ()Z net/minecraft/client/gui/screens/inventory/CreativeModeInventoryScreen/canScroll ()Z +MD: net/minecraft/client/gui/screens/inventory/CreativeModeInventoryScreen$CustomCreativeSlot/ (Lnet/minecraft/world/Container;III)V net/minecraft/client/gui/screens/inventory/CreativeModeInventoryScreen$CustomCreativeSlot/ (Lnet/minecraft/world/Container;III)V +MD: net/minecraft/client/gui/screens/inventory/CreativeModeInventoryScreen$CustomCreativeSlot/m_8010_ (Lnet/minecraft/world/entity/player/Player;)Z net/minecraft/client/gui/screens/inventory/CreativeModeInventoryScreen$CustomCreativeSlot/mayPickup (Lnet/minecraft/world/entity/player/Player;)Z +MD: net/minecraft/client/gui/screens/inventory/CreativeModeInventoryScreen$ItemPickerMenu/ (Lnet/minecraft/world/entity/player/Player;)V net/minecraft/client/gui/screens/inventory/CreativeModeInventoryScreen$ItemPickerMenu/ (Lnet/minecraft/world/entity/player/Player;)V +MD: net/minecraft/client/gui/screens/inventory/CreativeModeInventoryScreen$ItemPickerMenu/m_142503_ (Lnet/minecraft/world/item/ItemStack;)V net/minecraft/client/gui/screens/inventory/CreativeModeInventoryScreen$ItemPickerMenu/setCarried (Lnet/minecraft/world/item/ItemStack;)V +MD: net/minecraft/client/gui/screens/inventory/CreativeModeInventoryScreen$ItemPickerMenu/m_142621_ ()Lnet/minecraft/world/item/ItemStack; net/minecraft/client/gui/screens/inventory/CreativeModeInventoryScreen$ItemPickerMenu/getCarried ()Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/client/gui/screens/inventory/CreativeModeInventoryScreen$ItemPickerMenu/m_257485_ (F)I net/minecraft/client/gui/screens/inventory/CreativeModeInventoryScreen$ItemPickerMenu/getRowIndexForScroll (F)I +MD: net/minecraft/client/gui/screens/inventory/CreativeModeInventoryScreen$ItemPickerMenu/m_257538_ (I)F net/minecraft/client/gui/screens/inventory/CreativeModeInventoryScreen$ItemPickerMenu/getScrollForRowIndex (I)F +MD: net/minecraft/client/gui/screens/inventory/CreativeModeInventoryScreen$ItemPickerMenu/m_257935_ ()I net/minecraft/client/gui/screens/inventory/CreativeModeInventoryScreen$ItemPickerMenu/calculateRowCount ()I +MD: net/minecraft/client/gui/screens/inventory/CreativeModeInventoryScreen$ItemPickerMenu/m_258092_ (FD)F net/minecraft/client/gui/screens/inventory/CreativeModeInventoryScreen$ItemPickerMenu/subtractInputFromScroll (FD)F +MD: net/minecraft/client/gui/screens/inventory/CreativeModeInventoryScreen$ItemPickerMenu/m_5622_ (Lnet/minecraft/world/inventory/Slot;)Z net/minecraft/client/gui/screens/inventory/CreativeModeInventoryScreen$ItemPickerMenu/canDragTo (Lnet/minecraft/world/inventory/Slot;)Z +MD: net/minecraft/client/gui/screens/inventory/CreativeModeInventoryScreen$ItemPickerMenu/m_5882_ (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/inventory/Slot;)Z net/minecraft/client/gui/screens/inventory/CreativeModeInventoryScreen$ItemPickerMenu/canTakeItemForPickAll (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/inventory/Slot;)Z +MD: net/minecraft/client/gui/screens/inventory/CreativeModeInventoryScreen$ItemPickerMenu/m_6875_ (Lnet/minecraft/world/entity/player/Player;)Z net/minecraft/client/gui/screens/inventory/CreativeModeInventoryScreen$ItemPickerMenu/stillValid (Lnet/minecraft/world/entity/player/Player;)Z +MD: net/minecraft/client/gui/screens/inventory/CreativeModeInventoryScreen$ItemPickerMenu/m_7648_ (Lnet/minecraft/world/entity/player/Player;I)Lnet/minecraft/world/item/ItemStack; net/minecraft/client/gui/screens/inventory/CreativeModeInventoryScreen$ItemPickerMenu/quickMoveStack (Lnet/minecraft/world/entity/player/Player;I)Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/client/gui/screens/inventory/CreativeModeInventoryScreen$ItemPickerMenu/m_98642_ (F)V net/minecraft/client/gui/screens/inventory/CreativeModeInventoryScreen$ItemPickerMenu/scrollTo (F)V +MD: net/minecraft/client/gui/screens/inventory/CreativeModeInventoryScreen$ItemPickerMenu/m_98654_ ()Z net/minecraft/client/gui/screens/inventory/CreativeModeInventoryScreen$ItemPickerMenu/canScroll ()Z +MD: net/minecraft/client/gui/screens/inventory/CreativeModeInventoryScreen$SlotWrapper/ (Lnet/minecraft/world/inventory/Slot;III)V net/minecraft/client/gui/screens/inventory/CreativeModeInventoryScreen$SlotWrapper/ (Lnet/minecraft/world/inventory/Slot;III)V +MD: net/minecraft/client/gui/screens/inventory/CreativeModeInventoryScreen$SlotWrapper/m_142406_ (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/item/ItemStack;)V net/minecraft/client/gui/screens/inventory/CreativeModeInventoryScreen$SlotWrapper/onTake (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/item/ItemStack;)V +MD: net/minecraft/client/gui/screens/inventory/CreativeModeInventoryScreen$SlotWrapper/m_269060_ (Lnet/minecraft/world/item/ItemStack;)V net/minecraft/client/gui/screens/inventory/CreativeModeInventoryScreen$SlotWrapper/setByPlayer (Lnet/minecraft/world/item/ItemStack;)V +MD: net/minecraft/client/gui/screens/inventory/CreativeModeInventoryScreen$SlotWrapper/m_5852_ (Lnet/minecraft/world/item/ItemStack;)V net/minecraft/client/gui/screens/inventory/CreativeModeInventoryScreen$SlotWrapper/set (Lnet/minecraft/world/item/ItemStack;)V +MD: net/minecraft/client/gui/screens/inventory/CreativeModeInventoryScreen$SlotWrapper/m_5857_ (Lnet/minecraft/world/item/ItemStack;)Z net/minecraft/client/gui/screens/inventory/CreativeModeInventoryScreen$SlotWrapper/mayPlace (Lnet/minecraft/world/item/ItemStack;)Z +MD: net/minecraft/client/gui/screens/inventory/CreativeModeInventoryScreen$SlotWrapper/m_5866_ (Lnet/minecraft/world/item/ItemStack;)I net/minecraft/client/gui/screens/inventory/CreativeModeInventoryScreen$SlotWrapper/getMaxStackSize (Lnet/minecraft/world/item/ItemStack;)I +MD: net/minecraft/client/gui/screens/inventory/CreativeModeInventoryScreen$SlotWrapper/m_6201_ (I)Lnet/minecraft/world/item/ItemStack; net/minecraft/client/gui/screens/inventory/CreativeModeInventoryScreen$SlotWrapper/remove (I)Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/client/gui/screens/inventory/CreativeModeInventoryScreen$SlotWrapper/m_6641_ ()I net/minecraft/client/gui/screens/inventory/CreativeModeInventoryScreen$SlotWrapper/getMaxStackSize ()I +MD: net/minecraft/client/gui/screens/inventory/CreativeModeInventoryScreen$SlotWrapper/m_6654_ ()V net/minecraft/client/gui/screens/inventory/CreativeModeInventoryScreen$SlotWrapper/setChanged ()V +MD: net/minecraft/client/gui/screens/inventory/CreativeModeInventoryScreen$SlotWrapper/m_6657_ ()Z net/minecraft/client/gui/screens/inventory/CreativeModeInventoryScreen$SlotWrapper/hasItem ()Z +MD: net/minecraft/client/gui/screens/inventory/CreativeModeInventoryScreen$SlotWrapper/m_6659_ ()Z net/minecraft/client/gui/screens/inventory/CreativeModeInventoryScreen$SlotWrapper/isActive ()Z +MD: net/minecraft/client/gui/screens/inventory/CreativeModeInventoryScreen$SlotWrapper/m_7543_ ()Lcom/mojang/datafixers/util/Pair; net/minecraft/client/gui/screens/inventory/CreativeModeInventoryScreen$SlotWrapper/getNoItemIcon ()Lcom/mojang/datafixers/util/Pair; +MD: net/minecraft/client/gui/screens/inventory/CreativeModeInventoryScreen$SlotWrapper/m_7993_ ()Lnet/minecraft/world/item/ItemStack; net/minecraft/client/gui/screens/inventory/CreativeModeInventoryScreen$SlotWrapper/getItem ()Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/client/gui/screens/inventory/CreativeModeInventoryScreen$SlotWrapper/m_8010_ (Lnet/minecraft/world/entity/player/Player;)Z net/minecraft/client/gui/screens/inventory/CreativeModeInventoryScreen$SlotWrapper/mayPickup (Lnet/minecraft/world/entity/player/Player;)Z +MD: net/minecraft/client/gui/screens/inventory/CyclingSlotBackground/ (I)V net/minecraft/client/gui/screens/inventory/CyclingSlotBackground/ (I)V +MD: net/minecraft/client/gui/screens/inventory/CyclingSlotBackground/m_266270_ (Lnet/minecraft/world/inventory/AbstractContainerMenu;Lnet/minecraft/client/gui/GuiGraphics;FII)V net/minecraft/client/gui/screens/inventory/CyclingSlotBackground/render (Lnet/minecraft/world/inventory/AbstractContainerMenu;Lnet/minecraft/client/gui/GuiGraphics;FII)V +MD: net/minecraft/client/gui/screens/inventory/CyclingSlotBackground/m_266271_ (F)F net/minecraft/client/gui/screens/inventory/CyclingSlotBackground/getIconTransitionTransparency (F)F +MD: net/minecraft/client/gui/screens/inventory/CyclingSlotBackground/m_266287_ (Ljava/util/List;)V net/minecraft/client/gui/screens/inventory/CyclingSlotBackground/tick (Ljava/util/List;)V +MD: net/minecraft/client/gui/screens/inventory/CyclingSlotBackground/m_280347_ (Lnet/minecraft/world/inventory/Slot;Lnet/minecraft/resources/ResourceLocation;FLnet/minecraft/client/gui/GuiGraphics;II)V net/minecraft/client/gui/screens/inventory/CyclingSlotBackground/renderIcon (Lnet/minecraft/world/inventory/Slot;Lnet/minecraft/resources/ResourceLocation;FLnet/minecraft/client/gui/GuiGraphics;II)V +MD: net/minecraft/client/gui/screens/inventory/DispenserScreen/ ()V net/minecraft/client/gui/screens/inventory/DispenserScreen/ ()V +MD: net/minecraft/client/gui/screens/inventory/DispenserScreen/ (Lnet/minecraft/world/inventory/DispenserMenu;Lnet/minecraft/world/entity/player/Inventory;Lnet/minecraft/network/chat/Component;)V net/minecraft/client/gui/screens/inventory/DispenserScreen/ (Lnet/minecraft/world/inventory/DispenserMenu;Lnet/minecraft/world/entity/player/Inventory;Lnet/minecraft/network/chat/Component;)V +MD: net/minecraft/client/gui/screens/inventory/DispenserScreen/m_7286_ (Lnet/minecraft/client/gui/GuiGraphics;FII)V net/minecraft/client/gui/screens/inventory/DispenserScreen/renderBg (Lnet/minecraft/client/gui/GuiGraphics;FII)V +MD: net/minecraft/client/gui/screens/inventory/DispenserScreen/m_7856_ ()V net/minecraft/client/gui/screens/inventory/DispenserScreen/init ()V +MD: net/minecraft/client/gui/screens/inventory/DispenserScreen/m_88315_ (Lnet/minecraft/client/gui/GuiGraphics;IIF)V net/minecraft/client/gui/screens/inventory/DispenserScreen/render (Lnet/minecraft/client/gui/GuiGraphics;IIF)V +MD: net/minecraft/client/gui/screens/inventory/EffectRenderingInventoryScreen/ (Lnet/minecraft/world/inventory/AbstractContainerMenu;Lnet/minecraft/world/entity/player/Inventory;Lnet/minecraft/network/chat/Component;)V net/minecraft/client/gui/screens/inventory/EffectRenderingInventoryScreen/ (Lnet/minecraft/world/inventory/AbstractContainerMenu;Lnet/minecraft/world/entity/player/Inventory;Lnet/minecraft/network/chat/Component;)V +MD: net/minecraft/client/gui/screens/inventory/EffectRenderingInventoryScreen/m_194000_ (Lnet/minecraft/world/effect/MobEffectInstance;)Lnet/minecraft/network/chat/Component; net/minecraft/client/gui/screens/inventory/EffectRenderingInventoryScreen/getEffectName (Lnet/minecraft/world/effect/MobEffectInstance;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/client/gui/screens/inventory/EffectRenderingInventoryScreen/m_194018_ ()Z net/minecraft/client/gui/screens/inventory/EffectRenderingInventoryScreen/canSeeEffects ()Z +MD: net/minecraft/client/gui/screens/inventory/EffectRenderingInventoryScreen/m_280113_ (Lnet/minecraft/client/gui/GuiGraphics;II)V net/minecraft/client/gui/screens/inventory/EffectRenderingInventoryScreen/renderEffects (Lnet/minecraft/client/gui/GuiGraphics;II)V +MD: net/minecraft/client/gui/screens/inventory/EffectRenderingInventoryScreen/m_280172_ (Lnet/minecraft/client/gui/GuiGraphics;IILjava/lang/Iterable;Z)V net/minecraft/client/gui/screens/inventory/EffectRenderingInventoryScreen/renderBackgrounds (Lnet/minecraft/client/gui/GuiGraphics;IILjava/lang/Iterable;Z)V +MD: net/minecraft/client/gui/screens/inventory/EffectRenderingInventoryScreen/m_280301_ (Lnet/minecraft/client/gui/GuiGraphics;IILjava/lang/Iterable;Z)V net/minecraft/client/gui/screens/inventory/EffectRenderingInventoryScreen/renderIcons (Lnet/minecraft/client/gui/GuiGraphics;IILjava/lang/Iterable;Z)V +MD: net/minecraft/client/gui/screens/inventory/EffectRenderingInventoryScreen/m_280417_ (Lnet/minecraft/client/gui/GuiGraphics;IILjava/lang/Iterable;)V net/minecraft/client/gui/screens/inventory/EffectRenderingInventoryScreen/renderLabels (Lnet/minecraft/client/gui/GuiGraphics;IILjava/lang/Iterable;)V +MD: net/minecraft/client/gui/screens/inventory/EffectRenderingInventoryScreen/m_88315_ (Lnet/minecraft/client/gui/GuiGraphics;IIF)V net/minecraft/client/gui/screens/inventory/EffectRenderingInventoryScreen/render (Lnet/minecraft/client/gui/GuiGraphics;IIF)V +MD: net/minecraft/client/gui/screens/inventory/EnchantmentNames/ ()V net/minecraft/client/gui/screens/inventory/EnchantmentNames/ ()V +MD: net/minecraft/client/gui/screens/inventory/EnchantmentNames/ ()V net/minecraft/client/gui/screens/inventory/EnchantmentNames/ ()V +MD: net/minecraft/client/gui/screens/inventory/EnchantmentNames/m_98734_ ()Lnet/minecraft/client/gui/screens/inventory/EnchantmentNames; net/minecraft/client/gui/screens/inventory/EnchantmentNames/getInstance ()Lnet/minecraft/client/gui/screens/inventory/EnchantmentNames; +MD: net/minecraft/client/gui/screens/inventory/EnchantmentNames/m_98735_ (J)V net/minecraft/client/gui/screens/inventory/EnchantmentNames/initSeed (J)V +MD: net/minecraft/client/gui/screens/inventory/EnchantmentNames/m_98737_ (Lnet/minecraft/client/gui/Font;I)Lnet/minecraft/network/chat/FormattedText; net/minecraft/client/gui/screens/inventory/EnchantmentNames/getRandomName (Lnet/minecraft/client/gui/Font;I)Lnet/minecraft/network/chat/FormattedText; +MD: net/minecraft/client/gui/screens/inventory/EnchantmentScreen/ ()V net/minecraft/client/gui/screens/inventory/EnchantmentScreen/ ()V +MD: net/minecraft/client/gui/screens/inventory/EnchantmentScreen/ (Lnet/minecraft/world/inventory/EnchantmentMenu;Lnet/minecraft/world/entity/player/Inventory;Lnet/minecraft/network/chat/Component;)V net/minecraft/client/gui/screens/inventory/EnchantmentScreen/ (Lnet/minecraft/world/inventory/EnchantmentMenu;Lnet/minecraft/world/entity/player/Inventory;Lnet/minecraft/network/chat/Component;)V +MD: net/minecraft/client/gui/screens/inventory/EnchantmentScreen/m_181908_ ()V net/minecraft/client/gui/screens/inventory/EnchantmentScreen/containerTick ()V +MD: net/minecraft/client/gui/screens/inventory/EnchantmentScreen/m_289602_ (Lnet/minecraft/client/gui/GuiGraphics;IIF)V net/minecraft/client/gui/screens/inventory/EnchantmentScreen/renderBook (Lnet/minecraft/client/gui/GuiGraphics;IIF)V +MD: net/minecraft/client/gui/screens/inventory/EnchantmentScreen/m_6375_ (DDI)Z net/minecraft/client/gui/screens/inventory/EnchantmentScreen/mouseClicked (DDI)Z +MD: net/minecraft/client/gui/screens/inventory/EnchantmentScreen/m_7286_ (Lnet/minecraft/client/gui/GuiGraphics;FII)V net/minecraft/client/gui/screens/inventory/EnchantmentScreen/renderBg (Lnet/minecraft/client/gui/GuiGraphics;FII)V +MD: net/minecraft/client/gui/screens/inventory/EnchantmentScreen/m_7856_ ()V net/minecraft/client/gui/screens/inventory/EnchantmentScreen/init ()V +MD: net/minecraft/client/gui/screens/inventory/EnchantmentScreen/m_88315_ (Lnet/minecraft/client/gui/GuiGraphics;IIF)V net/minecraft/client/gui/screens/inventory/EnchantmentScreen/render (Lnet/minecraft/client/gui/GuiGraphics;IIF)V +MD: net/minecraft/client/gui/screens/inventory/EnchantmentScreen/m_98772_ ()V net/minecraft/client/gui/screens/inventory/EnchantmentScreen/tickBook ()V +MD: net/minecraft/client/gui/screens/inventory/FurnaceScreen/ ()V net/minecraft/client/gui/screens/inventory/FurnaceScreen/ ()V +MD: net/minecraft/client/gui/screens/inventory/FurnaceScreen/ (Lnet/minecraft/world/inventory/FurnaceMenu;Lnet/minecraft/world/entity/player/Inventory;Lnet/minecraft/network/chat/Component;)V net/minecraft/client/gui/screens/inventory/FurnaceScreen/ (Lnet/minecraft/world/inventory/FurnaceMenu;Lnet/minecraft/world/entity/player/Inventory;Lnet/minecraft/network/chat/Component;)V +MD: net/minecraft/client/gui/screens/inventory/GrindstoneScreen/ ()V net/minecraft/client/gui/screens/inventory/GrindstoneScreen/ ()V +MD: net/minecraft/client/gui/screens/inventory/GrindstoneScreen/ (Lnet/minecraft/world/inventory/GrindstoneMenu;Lnet/minecraft/world/entity/player/Inventory;Lnet/minecraft/network/chat/Component;)V net/minecraft/client/gui/screens/inventory/GrindstoneScreen/ (Lnet/minecraft/world/inventory/GrindstoneMenu;Lnet/minecraft/world/entity/player/Inventory;Lnet/minecraft/network/chat/Component;)V +MD: net/minecraft/client/gui/screens/inventory/GrindstoneScreen/m_7286_ (Lnet/minecraft/client/gui/GuiGraphics;FII)V net/minecraft/client/gui/screens/inventory/GrindstoneScreen/renderBg (Lnet/minecraft/client/gui/GuiGraphics;FII)V +MD: net/minecraft/client/gui/screens/inventory/GrindstoneScreen/m_88315_ (Lnet/minecraft/client/gui/GuiGraphics;IIF)V net/minecraft/client/gui/screens/inventory/GrindstoneScreen/render (Lnet/minecraft/client/gui/GuiGraphics;IIF)V +MD: net/minecraft/client/gui/screens/inventory/HangingSignEditScreen/ ()V net/minecraft/client/gui/screens/inventory/HangingSignEditScreen/ ()V +MD: net/minecraft/client/gui/screens/inventory/HangingSignEditScreen/ (Lnet/minecraft/world/level/block/entity/SignBlockEntity;ZZ)V net/minecraft/client/gui/screens/inventory/HangingSignEditScreen/ (Lnet/minecraft/world/level/block/entity/SignBlockEntity;ZZ)V +MD: net/minecraft/client/gui/screens/inventory/HangingSignEditScreen/m_245038_ ()Lorg/joml/Vector3f; net/minecraft/client/gui/screens/inventory/HangingSignEditScreen/getSignTextScale ()Lorg/joml/Vector3f; +MD: net/minecraft/client/gui/screens/inventory/HangingSignEditScreen/m_245490_ (Lnet/minecraft/client/gui/GuiGraphics;Lnet/minecraft/world/level/block/state/BlockState;)V net/minecraft/client/gui/screens/inventory/HangingSignEditScreen/renderSignBackground (Lnet/minecraft/client/gui/GuiGraphics;Lnet/minecraft/world/level/block/state/BlockState;)V +MD: net/minecraft/client/gui/screens/inventory/HangingSignEditScreen/m_280050_ (Lnet/minecraft/client/gui/GuiGraphics;Lnet/minecraft/world/level/block/state/BlockState;)V net/minecraft/client/gui/screens/inventory/HangingSignEditScreen/offsetSign (Lnet/minecraft/client/gui/GuiGraphics;Lnet/minecraft/world/level/block/state/BlockState;)V +MD: net/minecraft/client/gui/screens/inventory/HopperScreen/ ()V net/minecraft/client/gui/screens/inventory/HopperScreen/ ()V +MD: net/minecraft/client/gui/screens/inventory/HopperScreen/ (Lnet/minecraft/world/inventory/HopperMenu;Lnet/minecraft/world/entity/player/Inventory;Lnet/minecraft/network/chat/Component;)V net/minecraft/client/gui/screens/inventory/HopperScreen/ (Lnet/minecraft/world/inventory/HopperMenu;Lnet/minecraft/world/entity/player/Inventory;Lnet/minecraft/network/chat/Component;)V +MD: net/minecraft/client/gui/screens/inventory/HopperScreen/m_7286_ (Lnet/minecraft/client/gui/GuiGraphics;FII)V net/minecraft/client/gui/screens/inventory/HopperScreen/renderBg (Lnet/minecraft/client/gui/GuiGraphics;FII)V +MD: net/minecraft/client/gui/screens/inventory/HopperScreen/m_88315_ (Lnet/minecraft/client/gui/GuiGraphics;IIF)V net/minecraft/client/gui/screens/inventory/HopperScreen/render (Lnet/minecraft/client/gui/GuiGraphics;IIF)V +MD: net/minecraft/client/gui/screens/inventory/HorseInventoryScreen/ ()V net/minecraft/client/gui/screens/inventory/HorseInventoryScreen/ ()V +MD: net/minecraft/client/gui/screens/inventory/HorseInventoryScreen/ (Lnet/minecraft/world/inventory/HorseInventoryMenu;Lnet/minecraft/world/entity/player/Inventory;Lnet/minecraft/world/entity/animal/horse/AbstractHorse;)V net/minecraft/client/gui/screens/inventory/HorseInventoryScreen/ (Lnet/minecraft/world/inventory/HorseInventoryMenu;Lnet/minecraft/world/entity/player/Inventory;Lnet/minecraft/world/entity/animal/horse/AbstractHorse;)V +MD: net/minecraft/client/gui/screens/inventory/HorseInventoryScreen/m_7286_ (Lnet/minecraft/client/gui/GuiGraphics;FII)V net/minecraft/client/gui/screens/inventory/HorseInventoryScreen/renderBg (Lnet/minecraft/client/gui/GuiGraphics;FII)V +MD: net/minecraft/client/gui/screens/inventory/HorseInventoryScreen/m_88315_ (Lnet/minecraft/client/gui/GuiGraphics;IIF)V net/minecraft/client/gui/screens/inventory/HorseInventoryScreen/render (Lnet/minecraft/client/gui/GuiGraphics;IIF)V +MD: net/minecraft/client/gui/screens/inventory/InventoryScreen/ ()V net/minecraft/client/gui/screens/inventory/InventoryScreen/ ()V +MD: net/minecraft/client/gui/screens/inventory/InventoryScreen/ (Lnet/minecraft/world/entity/player/Player;)V net/minecraft/client/gui/screens/inventory/InventoryScreen/ (Lnet/minecraft/world/entity/player/Player;)V +MD: net/minecraft/client/gui/screens/inventory/InventoryScreen/m_181908_ ()V net/minecraft/client/gui/screens/inventory/InventoryScreen/containerTick ()V +MD: net/minecraft/client/gui/screens/inventory/InventoryScreen/m_274545_ (Lnet/minecraft/client/gui/GuiGraphics;IIIFFLnet/minecraft/world/entity/LivingEntity;)V net/minecraft/client/gui/screens/inventory/InventoryScreen/renderEntityInInventoryFollowsMouse (Lnet/minecraft/client/gui/GuiGraphics;IIIFFLnet/minecraft/world/entity/LivingEntity;)V +MD: net/minecraft/client/gui/screens/inventory/InventoryScreen/m_279817_ (Lnet/minecraft/client/renderer/entity/EntityRenderDispatcher;Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/client/gui/GuiGraphics;)V net/minecraft/client/gui/screens/inventory/InventoryScreen/lambda$renderEntityInInventory$1 (Lnet/minecraft/client/renderer/entity/EntityRenderDispatcher;Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/client/gui/GuiGraphics;)V +MD: net/minecraft/client/gui/screens/inventory/InventoryScreen/m_280003_ (Lnet/minecraft/client/gui/GuiGraphics;II)V net/minecraft/client/gui/screens/inventory/InventoryScreen/renderLabels (Lnet/minecraft/client/gui/GuiGraphics;II)V +MD: net/minecraft/client/gui/screens/inventory/InventoryScreen/m_280432_ (Lnet/minecraft/client/gui/GuiGraphics;IIILorg/joml/Quaternionf;Lorg/joml/Quaternionf;Lnet/minecraft/world/entity/LivingEntity;)V net/minecraft/client/gui/screens/inventory/InventoryScreen/renderEntityInInventory (Lnet/minecraft/client/gui/GuiGraphics;IIILorg/joml/Quaternionf;Lorg/joml/Quaternionf;Lnet/minecraft/world/entity/LivingEntity;)V +MD: net/minecraft/client/gui/screens/inventory/InventoryScreen/m_289593_ (Lnet/minecraft/client/gui/components/Button;)V net/minecraft/client/gui/screens/inventory/InventoryScreen/lambda$init$0 (Lnet/minecraft/client/gui/components/Button;)V +MD: net/minecraft/client/gui/screens/inventory/InventoryScreen/m_5564_ ()Lnet/minecraft/client/gui/screens/recipebook/RecipeBookComponent; net/minecraft/client/gui/screens/inventory/InventoryScreen/getRecipeBookComponent ()Lnet/minecraft/client/gui/screens/recipebook/RecipeBookComponent; +MD: net/minecraft/client/gui/screens/inventory/InventoryScreen/m_6348_ (DDI)Z net/minecraft/client/gui/screens/inventory/InventoryScreen/mouseReleased (DDI)Z +MD: net/minecraft/client/gui/screens/inventory/InventoryScreen/m_6375_ (DDI)Z net/minecraft/client/gui/screens/inventory/InventoryScreen/mouseClicked (DDI)Z +MD: net/minecraft/client/gui/screens/inventory/InventoryScreen/m_6597_ (Lnet/minecraft/world/inventory/Slot;IILnet/minecraft/world/inventory/ClickType;)V net/minecraft/client/gui/screens/inventory/InventoryScreen/slotClicked (Lnet/minecraft/world/inventory/Slot;IILnet/minecraft/world/inventory/ClickType;)V +MD: net/minecraft/client/gui/screens/inventory/InventoryScreen/m_6774_ (IIIIDD)Z net/minecraft/client/gui/screens/inventory/InventoryScreen/isHovering (IIIIDD)Z +MD: net/minecraft/client/gui/screens/inventory/InventoryScreen/m_6916_ ()V net/minecraft/client/gui/screens/inventory/InventoryScreen/recipesUpdated ()V +MD: net/minecraft/client/gui/screens/inventory/InventoryScreen/m_7286_ (Lnet/minecraft/client/gui/GuiGraphics;FII)V net/minecraft/client/gui/screens/inventory/InventoryScreen/renderBg (Lnet/minecraft/client/gui/GuiGraphics;FII)V +MD: net/minecraft/client/gui/screens/inventory/InventoryScreen/m_7467_ (DDIII)Z net/minecraft/client/gui/screens/inventory/InventoryScreen/hasClickedOutside (DDIII)Z +MD: net/minecraft/client/gui/screens/inventory/InventoryScreen/m_7856_ ()V net/minecraft/client/gui/screens/inventory/InventoryScreen/init ()V +MD: net/minecraft/client/gui/screens/inventory/InventoryScreen/m_88315_ (Lnet/minecraft/client/gui/GuiGraphics;IIF)V net/minecraft/client/gui/screens/inventory/InventoryScreen/render (Lnet/minecraft/client/gui/GuiGraphics;IIF)V +MD: net/minecraft/client/gui/screens/inventory/ItemCombinerScreen/ (Lnet/minecraft/world/inventory/ItemCombinerMenu;Lnet/minecraft/world/entity/player/Inventory;Lnet/minecraft/network/chat/Component;Lnet/minecraft/resources/ResourceLocation;)V net/minecraft/client/gui/screens/inventory/ItemCombinerScreen/ (Lnet/minecraft/world/inventory/ItemCombinerMenu;Lnet/minecraft/world/entity/player/Inventory;Lnet/minecraft/network/chat/Component;Lnet/minecraft/resources/ResourceLocation;)V +MD: net/minecraft/client/gui/screens/inventory/ItemCombinerScreen/m_142153_ (Lnet/minecraft/world/inventory/AbstractContainerMenu;II)V net/minecraft/client/gui/screens/inventory/ItemCombinerScreen/dataChanged (Lnet/minecraft/world/inventory/AbstractContainerMenu;II)V +MD: net/minecraft/client/gui/screens/inventory/ItemCombinerScreen/m_266390_ (Lnet/minecraft/client/gui/GuiGraphics;II)V net/minecraft/client/gui/screens/inventory/ItemCombinerScreen/renderErrorIcon (Lnet/minecraft/client/gui/GuiGraphics;II)V +MD: net/minecraft/client/gui/screens/inventory/ItemCombinerScreen/m_5653_ ()V net/minecraft/client/gui/screens/inventory/ItemCombinerScreen/subInit ()V +MD: net/minecraft/client/gui/screens/inventory/ItemCombinerScreen/m_6691_ (Lnet/minecraft/client/gui/GuiGraphics;IIF)V net/minecraft/client/gui/screens/inventory/ItemCombinerScreen/renderFg (Lnet/minecraft/client/gui/GuiGraphics;IIF)V +MD: net/minecraft/client/gui/screens/inventory/ItemCombinerScreen/m_7286_ (Lnet/minecraft/client/gui/GuiGraphics;FII)V net/minecraft/client/gui/screens/inventory/ItemCombinerScreen/renderBg (Lnet/minecraft/client/gui/GuiGraphics;FII)V +MD: net/minecraft/client/gui/screens/inventory/ItemCombinerScreen/m_7856_ ()V net/minecraft/client/gui/screens/inventory/ItemCombinerScreen/init ()V +MD: net/minecraft/client/gui/screens/inventory/ItemCombinerScreen/m_7861_ ()V net/minecraft/client/gui/screens/inventory/ItemCombinerScreen/removed ()V +MD: net/minecraft/client/gui/screens/inventory/ItemCombinerScreen/m_7934_ (Lnet/minecraft/world/inventory/AbstractContainerMenu;ILnet/minecraft/world/item/ItemStack;)V net/minecraft/client/gui/screens/inventory/ItemCombinerScreen/slotChanged (Lnet/minecraft/world/inventory/AbstractContainerMenu;ILnet/minecraft/world/item/ItemStack;)V +MD: net/minecraft/client/gui/screens/inventory/ItemCombinerScreen/m_88315_ (Lnet/minecraft/client/gui/GuiGraphics;IIF)V net/minecraft/client/gui/screens/inventory/ItemCombinerScreen/render (Lnet/minecraft/client/gui/GuiGraphics;IIF)V +MD: net/minecraft/client/gui/screens/inventory/JigsawBlockEditScreen/ ()V net/minecraft/client/gui/screens/inventory/JigsawBlockEditScreen/ ()V +MD: net/minecraft/client/gui/screens/inventory/JigsawBlockEditScreen/ (Lnet/minecraft/world/level/block/entity/JigsawBlockEntity;)V net/minecraft/client/gui/screens/inventory/JigsawBlockEditScreen/ (Lnet/minecraft/world/level/block/entity/JigsawBlockEntity;)V +MD: net/minecraft/client/gui/screens/inventory/JigsawBlockEditScreen/m_169764_ (Lnet/minecraft/client/gui/components/CycleButton;Lnet/minecraft/world/level/block/entity/JigsawBlockEntity$JointType;)V net/minecraft/client/gui/screens/inventory/JigsawBlockEditScreen/lambda$init$3 (Lnet/minecraft/client/gui/components/CycleButton;Lnet/minecraft/world/level/block/entity/JigsawBlockEntity$JointType;)V +MD: net/minecraft/client/gui/screens/inventory/JigsawBlockEditScreen/m_169767_ (Lnet/minecraft/client/gui/components/CycleButton;Ljava/lang/Boolean;)V net/minecraft/client/gui/screens/inventory/JigsawBlockEditScreen/lambda$init$4 (Lnet/minecraft/client/gui/components/CycleButton;Ljava/lang/Boolean;)V +MD: net/minecraft/client/gui/screens/inventory/JigsawBlockEditScreen/m_6574_ (Lnet/minecraft/client/Minecraft;II)V net/minecraft/client/gui/screens/inventory/JigsawBlockEditScreen/resize (Lnet/minecraft/client/Minecraft;II)V +MD: net/minecraft/client/gui/screens/inventory/JigsawBlockEditScreen/m_7379_ ()V net/minecraft/client/gui/screens/inventory/JigsawBlockEditScreen/onClose ()V +MD: net/minecraft/client/gui/screens/inventory/JigsawBlockEditScreen/m_7856_ ()V net/minecraft/client/gui/screens/inventory/JigsawBlockEditScreen/init ()V +MD: net/minecraft/client/gui/screens/inventory/JigsawBlockEditScreen/m_7933_ (III)Z net/minecraft/client/gui/screens/inventory/JigsawBlockEditScreen/keyPressed (III)Z +MD: net/minecraft/client/gui/screens/inventory/JigsawBlockEditScreen/m_86600_ ()V net/minecraft/client/gui/screens/inventory/JigsawBlockEditScreen/tick ()V +MD: net/minecraft/client/gui/screens/inventory/JigsawBlockEditScreen/m_88315_ (Lnet/minecraft/client/gui/GuiGraphics;IIF)V net/minecraft/client/gui/screens/inventory/JigsawBlockEditScreen/render (Lnet/minecraft/client/gui/GuiGraphics;IIF)V +MD: net/minecraft/client/gui/screens/inventory/JigsawBlockEditScreen/m_98963_ (Lnet/minecraft/client/gui/components/Button;)V net/minecraft/client/gui/screens/inventory/JigsawBlockEditScreen/lambda$init$7 (Lnet/minecraft/client/gui/components/Button;)V +MD: net/minecraft/client/gui/screens/inventory/JigsawBlockEditScreen/m_98972_ (Lnet/minecraft/client/gui/components/Button;)V net/minecraft/client/gui/screens/inventory/JigsawBlockEditScreen/lambda$init$6 (Lnet/minecraft/client/gui/components/Button;)V +MD: net/minecraft/client/gui/screens/inventory/JigsawBlockEditScreen/m_98976_ (Ljava/lang/String;)V net/minecraft/client/gui/screens/inventory/JigsawBlockEditScreen/lambda$init$2 (Ljava/lang/String;)V +MD: net/minecraft/client/gui/screens/inventory/JigsawBlockEditScreen/m_98978_ (Lnet/minecraft/client/gui/components/Button;)V net/minecraft/client/gui/screens/inventory/JigsawBlockEditScreen/lambda$init$5 (Lnet/minecraft/client/gui/components/Button;)V +MD: net/minecraft/client/gui/screens/inventory/JigsawBlockEditScreen/m_98980_ (Ljava/lang/String;)V net/minecraft/client/gui/screens/inventory/JigsawBlockEditScreen/lambda$init$1 (Ljava/lang/String;)V +MD: net/minecraft/client/gui/screens/inventory/JigsawBlockEditScreen/m_98985_ (Ljava/lang/String;)V net/minecraft/client/gui/screens/inventory/JigsawBlockEditScreen/lambda$init$0 (Ljava/lang/String;)V +MD: net/minecraft/client/gui/screens/inventory/JigsawBlockEditScreen/m_98990_ ()V net/minecraft/client/gui/screens/inventory/JigsawBlockEditScreen/onDone ()V +MD: net/minecraft/client/gui/screens/inventory/JigsawBlockEditScreen/m_98991_ ()V net/minecraft/client/gui/screens/inventory/JigsawBlockEditScreen/onCancel ()V +MD: net/minecraft/client/gui/screens/inventory/JigsawBlockEditScreen/m_98992_ ()V net/minecraft/client/gui/screens/inventory/JigsawBlockEditScreen/sendToServer ()V +MD: net/minecraft/client/gui/screens/inventory/JigsawBlockEditScreen/m_98993_ ()V net/minecraft/client/gui/screens/inventory/JigsawBlockEditScreen/sendGenerate ()V +MD: net/minecraft/client/gui/screens/inventory/JigsawBlockEditScreen/m_98994_ ()V net/minecraft/client/gui/screens/inventory/JigsawBlockEditScreen/updateValidity ()V +MD: net/minecraft/client/gui/screens/inventory/JigsawBlockEditScreen$1/ (Lnet/minecraft/client/gui/screens/inventory/JigsawBlockEditScreen;IIIILnet/minecraft/network/chat/Component;D)V net/minecraft/client/gui/screens/inventory/JigsawBlockEditScreen$1/ (Lnet/minecraft/client/gui/screens/inventory/JigsawBlockEditScreen;IIIILnet/minecraft/network/chat/Component;D)V +MD: net/minecraft/client/gui/screens/inventory/JigsawBlockEditScreen$1/m_5695_ ()V net/minecraft/client/gui/screens/inventory/JigsawBlockEditScreen$1/updateMessage ()V +MD: net/minecraft/client/gui/screens/inventory/JigsawBlockEditScreen$1/m_5697_ ()V net/minecraft/client/gui/screens/inventory/JigsawBlockEditScreen$1/applyValue ()V +MD: net/minecraft/client/gui/screens/inventory/LecternScreen/ (Lnet/minecraft/world/inventory/LecternMenu;Lnet/minecraft/world/entity/player/Inventory;Lnet/minecraft/network/chat/Component;)V net/minecraft/client/gui/screens/inventory/LecternScreen/ (Lnet/minecraft/world/inventory/LecternMenu;Lnet/minecraft/world/entity/player/Inventory;Lnet/minecraft/network/chat/Component;)V +MD: net/minecraft/client/gui/screens/inventory/LecternScreen/m_141919_ ()V net/minecraft/client/gui/screens/inventory/LecternScreen/closeScreen ()V +MD: net/minecraft/client/gui/screens/inventory/LecternScreen/m_6262_ ()Lnet/minecraft/world/inventory/LecternMenu; net/minecraft/client/gui/screens/inventory/LecternScreen/getMenu ()Lnet/minecraft/world/inventory/LecternMenu; +MD: net/minecraft/client/gui/screens/inventory/LecternScreen/m_6262_ ()Lnet/minecraft/world/inventory/AbstractContainerMenu; net/minecraft/client/gui/screens/inventory/LecternScreen/getMenu ()Lnet/minecraft/world/inventory/AbstractContainerMenu; +MD: net/minecraft/client/gui/screens/inventory/LecternScreen/m_7043_ ()Z net/minecraft/client/gui/screens/inventory/LecternScreen/isPauseScreen ()Z +MD: net/minecraft/client/gui/screens/inventory/LecternScreen/m_7379_ ()V net/minecraft/client/gui/screens/inventory/LecternScreen/onClose ()V +MD: net/minecraft/client/gui/screens/inventory/LecternScreen/m_7735_ (I)Z net/minecraft/client/gui/screens/inventory/LecternScreen/forcePage (I)Z +MD: net/minecraft/client/gui/screens/inventory/LecternScreen/m_7811_ ()V net/minecraft/client/gui/screens/inventory/LecternScreen/pageBack ()V +MD: net/minecraft/client/gui/screens/inventory/LecternScreen/m_7815_ ()V net/minecraft/client/gui/screens/inventory/LecternScreen/pageForward ()V +MD: net/minecraft/client/gui/screens/inventory/LecternScreen/m_7829_ ()V net/minecraft/client/gui/screens/inventory/LecternScreen/createMenuControls ()V +MD: net/minecraft/client/gui/screens/inventory/LecternScreen/m_7856_ ()V net/minecraft/client/gui/screens/inventory/LecternScreen/init ()V +MD: net/minecraft/client/gui/screens/inventory/LecternScreen/m_7861_ ()V net/minecraft/client/gui/screens/inventory/LecternScreen/removed ()V +MD: net/minecraft/client/gui/screens/inventory/LecternScreen/m_99023_ (Lnet/minecraft/client/gui/components/Button;)V net/minecraft/client/gui/screens/inventory/LecternScreen/lambda$createMenuControls$1 (Lnet/minecraft/client/gui/components/Button;)V +MD: net/minecraft/client/gui/screens/inventory/LecternScreen/m_99032_ (Lnet/minecraft/client/gui/components/Button;)V net/minecraft/client/gui/screens/inventory/LecternScreen/lambda$createMenuControls$0 (Lnet/minecraft/client/gui/components/Button;)V +MD: net/minecraft/client/gui/screens/inventory/LecternScreen/m_99036_ (I)V net/minecraft/client/gui/screens/inventory/LecternScreen/sendButtonClick (I)V +MD: net/minecraft/client/gui/screens/inventory/LecternScreen/m_99044_ ()V net/minecraft/client/gui/screens/inventory/LecternScreen/bookChanged ()V +MD: net/minecraft/client/gui/screens/inventory/LecternScreen/m_99045_ ()V net/minecraft/client/gui/screens/inventory/LecternScreen/pageChanged ()V +MD: net/minecraft/client/gui/screens/inventory/LecternScreen$1/ (Lnet/minecraft/client/gui/screens/inventory/LecternScreen;)V net/minecraft/client/gui/screens/inventory/LecternScreen$1/ (Lnet/minecraft/client/gui/screens/inventory/LecternScreen;)V +MD: net/minecraft/client/gui/screens/inventory/LecternScreen$1/m_142153_ (Lnet/minecraft/world/inventory/AbstractContainerMenu;II)V net/minecraft/client/gui/screens/inventory/LecternScreen$1/dataChanged (Lnet/minecraft/world/inventory/AbstractContainerMenu;II)V +MD: net/minecraft/client/gui/screens/inventory/LecternScreen$1/m_7934_ (Lnet/minecraft/world/inventory/AbstractContainerMenu;ILnet/minecraft/world/item/ItemStack;)V net/minecraft/client/gui/screens/inventory/LecternScreen$1/slotChanged (Lnet/minecraft/world/inventory/AbstractContainerMenu;ILnet/minecraft/world/item/ItemStack;)V +MD: net/minecraft/client/gui/screens/inventory/LoomScreen/ ()V net/minecraft/client/gui/screens/inventory/LoomScreen/ ()V +MD: net/minecraft/client/gui/screens/inventory/LoomScreen/ (Lnet/minecraft/world/inventory/LoomMenu;Lnet/minecraft/world/entity/player/Inventory;Lnet/minecraft/network/chat/Component;)V net/minecraft/client/gui/screens/inventory/LoomScreen/ (Lnet/minecraft/world/inventory/LoomMenu;Lnet/minecraft/world/entity/player/Inventory;Lnet/minecraft/network/chat/Component;)V +MD: net/minecraft/client/gui/screens/inventory/LoomScreen/m_232828_ ()I net/minecraft/client/gui/screens/inventory/LoomScreen/totalRowCount ()I +MD: net/minecraft/client/gui/screens/inventory/LoomScreen/m_280599_ (Lnet/minecraft/client/gui/GuiGraphics;Lnet/minecraft/core/Holder;II)V net/minecraft/client/gui/screens/inventory/LoomScreen/renderPattern (Lnet/minecraft/client/gui/GuiGraphics;Lnet/minecraft/core/Holder;II)V +MD: net/minecraft/client/gui/screens/inventory/LoomScreen/m_6050_ (DDD)Z net/minecraft/client/gui/screens/inventory/LoomScreen/mouseScrolled (DDD)Z +MD: net/minecraft/client/gui/screens/inventory/LoomScreen/m_6375_ (DDI)Z net/minecraft/client/gui/screens/inventory/LoomScreen/mouseClicked (DDI)Z +MD: net/minecraft/client/gui/screens/inventory/LoomScreen/m_7286_ (Lnet/minecraft/client/gui/GuiGraphics;FII)V net/minecraft/client/gui/screens/inventory/LoomScreen/renderBg (Lnet/minecraft/client/gui/GuiGraphics;FII)V +MD: net/minecraft/client/gui/screens/inventory/LoomScreen/m_7467_ (DDIII)Z net/minecraft/client/gui/screens/inventory/LoomScreen/hasClickedOutside (DDIII)Z +MD: net/minecraft/client/gui/screens/inventory/LoomScreen/m_7856_ ()V net/minecraft/client/gui/screens/inventory/LoomScreen/init ()V +MD: net/minecraft/client/gui/screens/inventory/LoomScreen/m_7979_ (DDIDD)Z net/minecraft/client/gui/screens/inventory/LoomScreen/mouseDragged (DDIDD)Z +MD: net/minecraft/client/gui/screens/inventory/LoomScreen/m_88315_ (Lnet/minecraft/client/gui/GuiGraphics;IIF)V net/minecraft/client/gui/screens/inventory/LoomScreen/render (Lnet/minecraft/client/gui/GuiGraphics;IIF)V +MD: net/minecraft/client/gui/screens/inventory/LoomScreen/m_99112_ ()V net/minecraft/client/gui/screens/inventory/LoomScreen/containerChanged ()V +MD: net/minecraft/client/gui/screens/inventory/MenuAccess/m_6262_ ()Lnet/minecraft/world/inventory/AbstractContainerMenu; net/minecraft/client/gui/screens/inventory/MenuAccess/getMenu ()Lnet/minecraft/world/inventory/AbstractContainerMenu; +MD: net/minecraft/client/gui/screens/inventory/MerchantScreen/ ()V net/minecraft/client/gui/screens/inventory/MerchantScreen/ ()V +MD: net/minecraft/client/gui/screens/inventory/MerchantScreen/ (Lnet/minecraft/world/inventory/MerchantMenu;Lnet/minecraft/world/entity/player/Inventory;Lnet/minecraft/network/chat/Component;)V net/minecraft/client/gui/screens/inventory/MerchantScreen/ (Lnet/minecraft/world/inventory/MerchantMenu;Lnet/minecraft/world/entity/player/Inventory;Lnet/minecraft/network/chat/Component;)V +MD: net/minecraft/client/gui/screens/inventory/MerchantScreen/m_280003_ (Lnet/minecraft/client/gui/GuiGraphics;II)V net/minecraft/client/gui/screens/inventory/MerchantScreen/renderLabels (Lnet/minecraft/client/gui/GuiGraphics;II)V +MD: net/minecraft/client/gui/screens/inventory/MerchantScreen/m_280104_ (Lnet/minecraft/client/gui/screens/inventory/MerchantScreen;)Lnet/minecraft/client/gui/Font; net/minecraft/client/gui/screens/inventory/MerchantScreen/access$000 (Lnet/minecraft/client/gui/screens/inventory/MerchantScreen;)Lnet/minecraft/client/gui/Font; +MD: net/minecraft/client/gui/screens/inventory/MerchantScreen/m_280127_ (Lnet/minecraft/client/gui/GuiGraphics;Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/item/ItemStack;II)V net/minecraft/client/gui/screens/inventory/MerchantScreen/renderAndDecorateCostA (Lnet/minecraft/client/gui/GuiGraphics;Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/item/ItemStack;II)V +MD: net/minecraft/client/gui/screens/inventory/MerchantScreen/m_280189_ (Lnet/minecraft/client/gui/screens/inventory/MerchantScreen;)Lnet/minecraft/client/gui/Font; net/minecraft/client/gui/screens/inventory/MerchantScreen/access$200 (Lnet/minecraft/client/gui/screens/inventory/MerchantScreen;)Lnet/minecraft/client/gui/Font; +MD: net/minecraft/client/gui/screens/inventory/MerchantScreen/m_280219_ (Lnet/minecraft/client/gui/GuiGraphics;IILnet/minecraft/world/item/trading/MerchantOffers;)V net/minecraft/client/gui/screens/inventory/MerchantScreen/renderScroller (Lnet/minecraft/client/gui/GuiGraphics;IILnet/minecraft/world/item/trading/MerchantOffers;)V +MD: net/minecraft/client/gui/screens/inventory/MerchantScreen/m_280298_ (Lnet/minecraft/client/gui/GuiGraphics;IILnet/minecraft/world/item/trading/MerchantOffer;)V net/minecraft/client/gui/screens/inventory/MerchantScreen/renderProgressBar (Lnet/minecraft/client/gui/GuiGraphics;IILnet/minecraft/world/item/trading/MerchantOffer;)V +MD: net/minecraft/client/gui/screens/inventory/MerchantScreen/m_280526_ (Lnet/minecraft/client/gui/GuiGraphics;Lnet/minecraft/world/item/trading/MerchantOffer;II)V net/minecraft/client/gui/screens/inventory/MerchantScreen/renderButtonArrows (Lnet/minecraft/client/gui/GuiGraphics;Lnet/minecraft/world/item/trading/MerchantOffer;II)V +MD: net/minecraft/client/gui/screens/inventory/MerchantScreen/m_280591_ (Lnet/minecraft/client/gui/screens/inventory/MerchantScreen;)Lnet/minecraft/client/gui/Font; net/minecraft/client/gui/screens/inventory/MerchantScreen/access$100 (Lnet/minecraft/client/gui/screens/inventory/MerchantScreen;)Lnet/minecraft/client/gui/Font; +MD: net/minecraft/client/gui/screens/inventory/MerchantScreen/m_6050_ (DDD)Z net/minecraft/client/gui/screens/inventory/MerchantScreen/mouseScrolled (DDD)Z +MD: net/minecraft/client/gui/screens/inventory/MerchantScreen/m_6375_ (DDI)Z net/minecraft/client/gui/screens/inventory/MerchantScreen/mouseClicked (DDI)Z +MD: net/minecraft/client/gui/screens/inventory/MerchantScreen/m_7286_ (Lnet/minecraft/client/gui/GuiGraphics;FII)V net/minecraft/client/gui/screens/inventory/MerchantScreen/renderBg (Lnet/minecraft/client/gui/GuiGraphics;FII)V +MD: net/minecraft/client/gui/screens/inventory/MerchantScreen/m_7856_ ()V net/minecraft/client/gui/screens/inventory/MerchantScreen/init ()V +MD: net/minecraft/client/gui/screens/inventory/MerchantScreen/m_7979_ (DDIDD)Z net/minecraft/client/gui/screens/inventory/MerchantScreen/mouseDragged (DDIDD)Z +MD: net/minecraft/client/gui/screens/inventory/MerchantScreen/m_88315_ (Lnet/minecraft/client/gui/GuiGraphics;IIF)V net/minecraft/client/gui/screens/inventory/MerchantScreen/render (Lnet/minecraft/client/gui/GuiGraphics;IIF)V +MD: net/minecraft/client/gui/screens/inventory/MerchantScreen/m_99140_ (I)Z net/minecraft/client/gui/screens/inventory/MerchantScreen/canScroll (I)Z +MD: net/minecraft/client/gui/screens/inventory/MerchantScreen/m_99173_ (Lnet/minecraft/client/gui/components/Button;)V net/minecraft/client/gui/screens/inventory/MerchantScreen/lambda$init$0 (Lnet/minecraft/client/gui/components/Button;)V +MD: net/minecraft/client/gui/screens/inventory/MerchantScreen/m_99200_ ()V net/minecraft/client/gui/screens/inventory/MerchantScreen/postButtonClick ()V +MD: net/minecraft/client/gui/screens/inventory/MerchantScreen$TradeOfferButton/ (Lnet/minecraft/client/gui/screens/inventory/MerchantScreen;IIILnet/minecraft/client/gui/components/Button$OnPress;)V net/minecraft/client/gui/screens/inventory/MerchantScreen$TradeOfferButton/ (Lnet/minecraft/client/gui/screens/inventory/MerchantScreen;IIILnet/minecraft/client/gui/components/Button$OnPress;)V +MD: net/minecraft/client/gui/screens/inventory/MerchantScreen$TradeOfferButton/m_280089_ (Lnet/minecraft/client/gui/GuiGraphics;II)V net/minecraft/client/gui/screens/inventory/MerchantScreen$TradeOfferButton/renderToolTip (Lnet/minecraft/client/gui/GuiGraphics;II)V +MD: net/minecraft/client/gui/screens/inventory/MerchantScreen$TradeOfferButton/m_99209_ ()I net/minecraft/client/gui/screens/inventory/MerchantScreen$TradeOfferButton/getIndex ()I +MD: net/minecraft/client/gui/screens/inventory/MinecartCommandBlockEditScreen/ (Lnet/minecraft/world/level/BaseCommandBlock;)V net/minecraft/client/gui/screens/inventory/MinecartCommandBlockEditScreen/ (Lnet/minecraft/world/level/BaseCommandBlock;)V +MD: net/minecraft/client/gui/screens/inventory/MinecartCommandBlockEditScreen/m_6372_ (Lnet/minecraft/world/level/BaseCommandBlock;)V net/minecraft/client/gui/screens/inventory/MinecartCommandBlockEditScreen/populateAndSendPacket (Lnet/minecraft/world/level/BaseCommandBlock;)V +MD: net/minecraft/client/gui/screens/inventory/MinecartCommandBlockEditScreen/m_6556_ ()Lnet/minecraft/world/level/BaseCommandBlock; net/minecraft/client/gui/screens/inventory/MinecartCommandBlockEditScreen/getCommandBlock ()Lnet/minecraft/world/level/BaseCommandBlock; +MD: net/minecraft/client/gui/screens/inventory/MinecartCommandBlockEditScreen/m_7821_ ()I net/minecraft/client/gui/screens/inventory/MinecartCommandBlockEditScreen/getPreviousY ()I +MD: net/minecraft/client/gui/screens/inventory/MinecartCommandBlockEditScreen/m_7856_ ()V net/minecraft/client/gui/screens/inventory/MinecartCommandBlockEditScreen/init ()V +MD: net/minecraft/client/gui/screens/inventory/PageButton/ (IIZLnet/minecraft/client/gui/components/Button$OnPress;Z)V net/minecraft/client/gui/screens/inventory/PageButton/ (IIZLnet/minecraft/client/gui/components/Button$OnPress;Z)V +MD: net/minecraft/client/gui/screens/inventory/PageButton/m_7435_ (Lnet/minecraft/client/sounds/SoundManager;)V net/minecraft/client/gui/screens/inventory/PageButton/playDownSound (Lnet/minecraft/client/sounds/SoundManager;)V +MD: net/minecraft/client/gui/screens/inventory/PageButton/m_87963_ (Lnet/minecraft/client/gui/GuiGraphics;IIF)V net/minecraft/client/gui/screens/inventory/PageButton/renderWidget (Lnet/minecraft/client/gui/GuiGraphics;IIF)V +MD: net/minecraft/client/gui/screens/inventory/ShulkerBoxScreen/ ()V net/minecraft/client/gui/screens/inventory/ShulkerBoxScreen/ ()V +MD: net/minecraft/client/gui/screens/inventory/ShulkerBoxScreen/ (Lnet/minecraft/world/inventory/ShulkerBoxMenu;Lnet/minecraft/world/entity/player/Inventory;Lnet/minecraft/network/chat/Component;)V net/minecraft/client/gui/screens/inventory/ShulkerBoxScreen/ (Lnet/minecraft/world/inventory/ShulkerBoxMenu;Lnet/minecraft/world/entity/player/Inventory;Lnet/minecraft/network/chat/Component;)V +MD: net/minecraft/client/gui/screens/inventory/ShulkerBoxScreen/m_7286_ (Lnet/minecraft/client/gui/GuiGraphics;FII)V net/minecraft/client/gui/screens/inventory/ShulkerBoxScreen/renderBg (Lnet/minecraft/client/gui/GuiGraphics;FII)V +MD: net/minecraft/client/gui/screens/inventory/ShulkerBoxScreen/m_88315_ (Lnet/minecraft/client/gui/GuiGraphics;IIF)V net/minecraft/client/gui/screens/inventory/ShulkerBoxScreen/render (Lnet/minecraft/client/gui/GuiGraphics;IIF)V +MD: net/minecraft/client/gui/screens/inventory/SignEditScreen/ ()V net/minecraft/client/gui/screens/inventory/SignEditScreen/ ()V +MD: net/minecraft/client/gui/screens/inventory/SignEditScreen/ (Lnet/minecraft/world/level/block/entity/SignBlockEntity;ZZ)V net/minecraft/client/gui/screens/inventory/SignEditScreen/ (Lnet/minecraft/world/level/block/entity/SignBlockEntity;ZZ)V +MD: net/minecraft/client/gui/screens/inventory/SignEditScreen/m_245038_ ()Lorg/joml/Vector3f; net/minecraft/client/gui/screens/inventory/SignEditScreen/getSignTextScale ()Lorg/joml/Vector3f; +MD: net/minecraft/client/gui/screens/inventory/SignEditScreen/m_245490_ (Lnet/minecraft/client/gui/GuiGraphics;Lnet/minecraft/world/level/block/state/BlockState;)V net/minecraft/client/gui/screens/inventory/SignEditScreen/renderSignBackground (Lnet/minecraft/client/gui/GuiGraphics;Lnet/minecraft/world/level/block/state/BlockState;)V +MD: net/minecraft/client/gui/screens/inventory/SignEditScreen/m_280050_ (Lnet/minecraft/client/gui/GuiGraphics;Lnet/minecraft/world/level/block/state/BlockState;)V net/minecraft/client/gui/screens/inventory/SignEditScreen/offsetSign (Lnet/minecraft/client/gui/GuiGraphics;Lnet/minecraft/world/level/block/state/BlockState;)V +MD: net/minecraft/client/gui/screens/inventory/SignEditScreen/m_7856_ ()V net/minecraft/client/gui/screens/inventory/SignEditScreen/init ()V +MD: net/minecraft/client/gui/screens/inventory/SmithingScreen/ ()V net/minecraft/client/gui/screens/inventory/SmithingScreen/ ()V +MD: net/minecraft/client/gui/screens/inventory/SmithingScreen/ (Lnet/minecraft/world/inventory/SmithingMenu;Lnet/minecraft/world/entity/player/Inventory;Lnet/minecraft/network/chat/Component;)V net/minecraft/client/gui/screens/inventory/SmithingScreen/ (Lnet/minecraft/world/inventory/SmithingMenu;Lnet/minecraft/world/entity/player/Inventory;Lnet/minecraft/network/chat/Component;)V +MD: net/minecraft/client/gui/screens/inventory/SmithingScreen/m_181908_ ()V net/minecraft/client/gui/screens/inventory/SmithingScreen/containerTick ()V +MD: net/minecraft/client/gui/screens/inventory/SmithingScreen/m_266259_ ()Ljava/util/Optional; net/minecraft/client/gui/screens/inventory/SmithingScreen/getTemplateItem ()Ljava/util/Optional; +MD: net/minecraft/client/gui/screens/inventory/SmithingScreen/m_266311_ (Lnet/minecraft/client/gui/GuiGraphics;II)V net/minecraft/client/gui/screens/inventory/SmithingScreen/renderOnboardingTooltips (Lnet/minecraft/client/gui/GuiGraphics;II)V +MD: net/minecraft/client/gui/screens/inventory/SmithingScreen/m_266329_ ()Z net/minecraft/client/gui/screens/inventory/SmithingScreen/hasRecipeError ()Z +MD: net/minecraft/client/gui/screens/inventory/SmithingScreen/m_266390_ (Lnet/minecraft/client/gui/GuiGraphics;II)V net/minecraft/client/gui/screens/inventory/SmithingScreen/renderErrorIcon (Lnet/minecraft/client/gui/GuiGraphics;II)V +MD: net/minecraft/client/gui/screens/inventory/SmithingScreen/m_267709_ (Lnet/minecraft/world/item/ItemStack;)V net/minecraft/client/gui/screens/inventory/SmithingScreen/updateArmorStandPreview (Lnet/minecraft/world/item/ItemStack;)V +MD: net/minecraft/client/gui/screens/inventory/SmithingScreen/m_279819_ (Lnet/minecraft/client/gui/GuiGraphics;IILnet/minecraft/network/chat/Component;)V net/minecraft/client/gui/screens/inventory/SmithingScreen/lambda$renderOnboardingTooltips$0 (Lnet/minecraft/client/gui/GuiGraphics;IILnet/minecraft/network/chat/Component;)V +MD: net/minecraft/client/gui/screens/inventory/SmithingScreen/m_5653_ ()V net/minecraft/client/gui/screens/inventory/SmithingScreen/subInit ()V +MD: net/minecraft/client/gui/screens/inventory/SmithingScreen/m_7286_ (Lnet/minecraft/client/gui/GuiGraphics;FII)V net/minecraft/client/gui/screens/inventory/SmithingScreen/renderBg (Lnet/minecraft/client/gui/GuiGraphics;FII)V +MD: net/minecraft/client/gui/screens/inventory/SmithingScreen/m_7934_ (Lnet/minecraft/world/inventory/AbstractContainerMenu;ILnet/minecraft/world/item/ItemStack;)V net/minecraft/client/gui/screens/inventory/SmithingScreen/slotChanged (Lnet/minecraft/world/inventory/AbstractContainerMenu;ILnet/minecraft/world/item/ItemStack;)V +MD: net/minecraft/client/gui/screens/inventory/SmithingScreen/m_88315_ (Lnet/minecraft/client/gui/GuiGraphics;IIF)V net/minecraft/client/gui/screens/inventory/SmithingScreen/render (Lnet/minecraft/client/gui/GuiGraphics;IIF)V +MD: net/minecraft/client/gui/screens/inventory/SmokerScreen/ ()V net/minecraft/client/gui/screens/inventory/SmokerScreen/ ()V +MD: net/minecraft/client/gui/screens/inventory/SmokerScreen/ (Lnet/minecraft/world/inventory/SmokerMenu;Lnet/minecraft/world/entity/player/Inventory;Lnet/minecraft/network/chat/Component;)V net/minecraft/client/gui/screens/inventory/SmokerScreen/ (Lnet/minecraft/world/inventory/SmokerMenu;Lnet/minecraft/world/entity/player/Inventory;Lnet/minecraft/network/chat/Component;)V +MD: net/minecraft/client/gui/screens/inventory/StonecutterScreen/ ()V net/minecraft/client/gui/screens/inventory/StonecutterScreen/ ()V +MD: net/minecraft/client/gui/screens/inventory/StonecutterScreen/ (Lnet/minecraft/world/inventory/StonecutterMenu;Lnet/minecraft/world/entity/player/Inventory;Lnet/minecraft/network/chat/Component;)V net/minecraft/client/gui/screens/inventory/StonecutterScreen/ (Lnet/minecraft/world/inventory/StonecutterMenu;Lnet/minecraft/world/entity/player/Inventory;Lnet/minecraft/network/chat/Component;)V +MD: net/minecraft/client/gui/screens/inventory/StonecutterScreen/m_280072_ (Lnet/minecraft/client/gui/GuiGraphics;II)V net/minecraft/client/gui/screens/inventory/StonecutterScreen/renderTooltip (Lnet/minecraft/client/gui/GuiGraphics;II)V +MD: net/minecraft/client/gui/screens/inventory/StonecutterScreen/m_280299_ (Lnet/minecraft/client/gui/GuiGraphics;IIIII)V net/minecraft/client/gui/screens/inventory/StonecutterScreen/renderButtons (Lnet/minecraft/client/gui/GuiGraphics;IIIII)V +MD: net/minecraft/client/gui/screens/inventory/StonecutterScreen/m_280605_ (Lnet/minecraft/client/gui/GuiGraphics;III)V net/minecraft/client/gui/screens/inventory/StonecutterScreen/renderRecipes (Lnet/minecraft/client/gui/GuiGraphics;III)V +MD: net/minecraft/client/gui/screens/inventory/StonecutterScreen/m_6050_ (DDD)Z net/minecraft/client/gui/screens/inventory/StonecutterScreen/mouseScrolled (DDD)Z +MD: net/minecraft/client/gui/screens/inventory/StonecutterScreen/m_6375_ (DDI)Z net/minecraft/client/gui/screens/inventory/StonecutterScreen/mouseClicked (DDI)Z +MD: net/minecraft/client/gui/screens/inventory/StonecutterScreen/m_7286_ (Lnet/minecraft/client/gui/GuiGraphics;FII)V net/minecraft/client/gui/screens/inventory/StonecutterScreen/renderBg (Lnet/minecraft/client/gui/GuiGraphics;FII)V +MD: net/minecraft/client/gui/screens/inventory/StonecutterScreen/m_7979_ (DDIDD)Z net/minecraft/client/gui/screens/inventory/StonecutterScreen/mouseDragged (DDIDD)Z +MD: net/minecraft/client/gui/screens/inventory/StonecutterScreen/m_88315_ (Lnet/minecraft/client/gui/GuiGraphics;IIF)V net/minecraft/client/gui/screens/inventory/StonecutterScreen/render (Lnet/minecraft/client/gui/GuiGraphics;IIF)V +MD: net/minecraft/client/gui/screens/inventory/StonecutterScreen/m_99352_ ()I net/minecraft/client/gui/screens/inventory/StonecutterScreen/getOffscreenRows ()I +MD: net/minecraft/client/gui/screens/inventory/StonecutterScreen/m_99353_ ()Z net/minecraft/client/gui/screens/inventory/StonecutterScreen/isScrollBarActive ()Z +MD: net/minecraft/client/gui/screens/inventory/StonecutterScreen/m_99354_ ()V net/minecraft/client/gui/screens/inventory/StonecutterScreen/containerChanged ()V +MD: net/minecraft/client/gui/screens/inventory/StructureBlockEditScreen/ ()V net/minecraft/client/gui/screens/inventory/StructureBlockEditScreen/ ()V +MD: net/minecraft/client/gui/screens/inventory/StructureBlockEditScreen/ (Lnet/minecraft/world/level/block/entity/StructureBlockEntity;)V net/minecraft/client/gui/screens/inventory/StructureBlockEditScreen/ (Lnet/minecraft/world/level/block/entity/StructureBlockEntity;)V +MD: net/minecraft/client/gui/screens/inventory/StructureBlockEditScreen/m_169838_ (Lnet/minecraft/world/level/block/state/properties/StructureMode;)V net/minecraft/client/gui/screens/inventory/StructureBlockEditScreen/updateMode (Lnet/minecraft/world/level/block/state/properties/StructureMode;)V +MD: net/minecraft/client/gui/screens/inventory/StructureBlockEditScreen/m_169840_ (Lnet/minecraft/client/gui/components/Button;)V net/minecraft/client/gui/screens/inventory/StructureBlockEditScreen/lambda$init$15 (Lnet/minecraft/client/gui/components/Button;)V +MD: net/minecraft/client/gui/screens/inventory/StructureBlockEditScreen/m_169842_ (Lnet/minecraft/client/gui/components/CycleButton;Lnet/minecraft/world/level/block/Mirror;)V net/minecraft/client/gui/screens/inventory/StructureBlockEditScreen/lambda$init$9 (Lnet/minecraft/client/gui/components/CycleButton;Lnet/minecraft/world/level/block/Mirror;)V +MD: net/minecraft/client/gui/screens/inventory/StructureBlockEditScreen/m_169845_ (Lnet/minecraft/client/gui/components/CycleButton;Lnet/minecraft/world/level/block/state/properties/StructureMode;)V net/minecraft/client/gui/screens/inventory/StructureBlockEditScreen/lambda$init$6 (Lnet/minecraft/client/gui/components/CycleButton;Lnet/minecraft/world/level/block/state/properties/StructureMode;)V +MD: net/minecraft/client/gui/screens/inventory/StructureBlockEditScreen/m_169848_ (Lnet/minecraft/client/gui/components/CycleButton;Ljava/lang/Boolean;)V net/minecraft/client/gui/screens/inventory/StructureBlockEditScreen/lambda$init$11 (Lnet/minecraft/client/gui/components/CycleButton;Ljava/lang/Boolean;)V +MD: net/minecraft/client/gui/screens/inventory/StructureBlockEditScreen/m_169851_ (Lnet/minecraft/world/level/block/state/properties/StructureMode;)Lnet/minecraft/network/chat/Component; net/minecraft/client/gui/screens/inventory/StructureBlockEditScreen/lambda$init$5 (Lnet/minecraft/world/level/block/state/properties/StructureMode;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/client/gui/screens/inventory/StructureBlockEditScreen/m_169853_ (Lnet/minecraft/client/gui/components/Button;)V net/minecraft/client/gui/screens/inventory/StructureBlockEditScreen/lambda$init$14 (Lnet/minecraft/client/gui/components/Button;)V +MD: net/minecraft/client/gui/screens/inventory/StructureBlockEditScreen/m_169855_ (Lnet/minecraft/client/gui/components/CycleButton;Ljava/lang/Boolean;)V net/minecraft/client/gui/screens/inventory/StructureBlockEditScreen/lambda$init$10 (Lnet/minecraft/client/gui/components/CycleButton;Ljava/lang/Boolean;)V +MD: net/minecraft/client/gui/screens/inventory/StructureBlockEditScreen/m_169858_ (Lnet/minecraft/world/level/block/state/properties/StructureMode;)Z net/minecraft/client/gui/screens/inventory/StructureBlockEditScreen/lambda$static$0 (Lnet/minecraft/world/level/block/state/properties/StructureMode;)Z +MD: net/minecraft/client/gui/screens/inventory/StructureBlockEditScreen/m_169860_ (Lnet/minecraft/client/gui/components/CycleButton;Ljava/lang/Boolean;)V net/minecraft/client/gui/screens/inventory/StructureBlockEditScreen/lambda$init$8 (Lnet/minecraft/client/gui/components/CycleButton;Ljava/lang/Boolean;)V +MD: net/minecraft/client/gui/screens/inventory/StructureBlockEditScreen/m_279820_ (Lnet/minecraft/client/gui/components/Button;)V net/minecraft/client/gui/screens/inventory/StructureBlockEditScreen/lambda$init$4 (Lnet/minecraft/client/gui/components/Button;)V +MD: net/minecraft/client/gui/screens/inventory/StructureBlockEditScreen/m_279821_ (Lnet/minecraft/client/gui/components/Button;)V net/minecraft/client/gui/screens/inventory/StructureBlockEditScreen/lambda$init$7 (Lnet/minecraft/client/gui/components/Button;)V +MD: net/minecraft/client/gui/screens/inventory/StructureBlockEditScreen/m_279822_ (Lnet/minecraft/client/gui/components/Button;)V net/minecraft/client/gui/screens/inventory/StructureBlockEditScreen/lambda$init$3 (Lnet/minecraft/client/gui/components/Button;)V +MD: net/minecraft/client/gui/screens/inventory/StructureBlockEditScreen/m_6574_ (Lnet/minecraft/client/Minecraft;II)V net/minecraft/client/gui/screens/inventory/StructureBlockEditScreen/resize (Lnet/minecraft/client/Minecraft;II)V +MD: net/minecraft/client/gui/screens/inventory/StructureBlockEditScreen/m_7043_ ()Z net/minecraft/client/gui/screens/inventory/StructureBlockEditScreen/isPauseScreen ()Z +MD: net/minecraft/client/gui/screens/inventory/StructureBlockEditScreen/m_7379_ ()V net/minecraft/client/gui/screens/inventory/StructureBlockEditScreen/onClose ()V +MD: net/minecraft/client/gui/screens/inventory/StructureBlockEditScreen/m_7856_ ()V net/minecraft/client/gui/screens/inventory/StructureBlockEditScreen/init ()V +MD: net/minecraft/client/gui/screens/inventory/StructureBlockEditScreen/m_7933_ (III)Z net/minecraft/client/gui/screens/inventory/StructureBlockEditScreen/keyPressed (III)Z +MD: net/minecraft/client/gui/screens/inventory/StructureBlockEditScreen/m_86600_ ()V net/minecraft/client/gui/screens/inventory/StructureBlockEditScreen/tick ()V +MD: net/minecraft/client/gui/screens/inventory/StructureBlockEditScreen/m_88315_ (Lnet/minecraft/client/gui/GuiGraphics;IIF)V net/minecraft/client/gui/screens/inventory/StructureBlockEditScreen/render (Lnet/minecraft/client/gui/GuiGraphics;IIF)V +MD: net/minecraft/client/gui/screens/inventory/StructureBlockEditScreen/m_99403_ (Lnet/minecraft/world/level/block/entity/StructureBlockEntity$UpdateType;)Z net/minecraft/client/gui/screens/inventory/StructureBlockEditScreen/sendToServer (Lnet/minecraft/world/level/block/entity/StructureBlockEntity$UpdateType;)Z +MD: net/minecraft/client/gui/screens/inventory/StructureBlockEditScreen/m_99414_ (Lnet/minecraft/client/gui/components/Button;)V net/minecraft/client/gui/screens/inventory/StructureBlockEditScreen/lambda$init$13 (Lnet/minecraft/client/gui/components/Button;)V +MD: net/minecraft/client/gui/screens/inventory/StructureBlockEditScreen/m_99416_ (Lnet/minecraft/client/gui/screens/inventory/StructureBlockEditScreen;Ljava/lang/String;CI)Z net/minecraft/client/gui/screens/inventory/StructureBlockEditScreen/access$000 (Lnet/minecraft/client/gui/screens/inventory/StructureBlockEditScreen;Ljava/lang/String;CI)Z +MD: net/minecraft/client/gui/screens/inventory/StructureBlockEditScreen/m_99424_ (Lnet/minecraft/client/gui/components/Button;)V net/minecraft/client/gui/screens/inventory/StructureBlockEditScreen/lambda$init$12 (Lnet/minecraft/client/gui/components/Button;)V +MD: net/minecraft/client/gui/screens/inventory/StructureBlockEditScreen/m_99426_ (Ljava/lang/String;)J net/minecraft/client/gui/screens/inventory/StructureBlockEditScreen/parseSeed (Ljava/lang/String;)J +MD: net/minecraft/client/gui/screens/inventory/StructureBlockEditScreen/m_99430_ (Ljava/lang/String;)F net/minecraft/client/gui/screens/inventory/StructureBlockEditScreen/parseIntegrity (Ljava/lang/String;)F +MD: net/minecraft/client/gui/screens/inventory/StructureBlockEditScreen/m_99435_ (Ljava/lang/String;)I net/minecraft/client/gui/screens/inventory/StructureBlockEditScreen/parseCoordinate (Ljava/lang/String;)I +MD: net/minecraft/client/gui/screens/inventory/StructureBlockEditScreen/m_99444_ ()V net/minecraft/client/gui/screens/inventory/StructureBlockEditScreen/onDone ()V +MD: net/minecraft/client/gui/screens/inventory/StructureBlockEditScreen/m_99447_ ()V net/minecraft/client/gui/screens/inventory/StructureBlockEditScreen/onCancel ()V +MD: net/minecraft/client/gui/screens/inventory/StructureBlockEditScreen/m_99456_ (Lnet/minecraft/client/gui/components/Button;)V net/minecraft/client/gui/screens/inventory/StructureBlockEditScreen/lambda$init$2 (Lnet/minecraft/client/gui/components/Button;)V +MD: net/minecraft/client/gui/screens/inventory/StructureBlockEditScreen/m_99459_ (Lnet/minecraft/client/gui/components/Button;)V net/minecraft/client/gui/screens/inventory/StructureBlockEditScreen/lambda$init$1 (Lnet/minecraft/client/gui/components/Button;)V +MD: net/minecraft/client/gui/screens/inventory/StructureBlockEditScreen/m_99464_ ()V net/minecraft/client/gui/screens/inventory/StructureBlockEditScreen/updateDirectionButtons ()V +MD: net/minecraft/client/gui/screens/inventory/StructureBlockEditScreen$1/ (Lnet/minecraft/client/gui/screens/inventory/StructureBlockEditScreen;Lnet/minecraft/client/gui/Font;IIIILnet/minecraft/network/chat/Component;)V net/minecraft/client/gui/screens/inventory/StructureBlockEditScreen$1/ (Lnet/minecraft/client/gui/screens/inventory/StructureBlockEditScreen;Lnet/minecraft/client/gui/Font;IIIILnet/minecraft/network/chat/Component;)V +MD: net/minecraft/client/gui/screens/inventory/StructureBlockEditScreen$1/m_5534_ (CI)Z net/minecraft/client/gui/screens/inventory/StructureBlockEditScreen$1/charTyped (CI)Z +MD: net/minecraft/client/gui/screens/inventory/StructureBlockEditScreen$2/ ()V net/minecraft/client/gui/screens/inventory/StructureBlockEditScreen$2/ ()V +MD: net/minecraft/client/gui/screens/inventory/tooltip/BelowOrAboveWidgetTooltipPositioner/ (Lnet/minecraft/client/gui/components/AbstractWidget;)V net/minecraft/client/gui/screens/inventory/tooltip/BelowOrAboveWidgetTooltipPositioner/ (Lnet/minecraft/client/gui/components/AbstractWidget;)V +MD: net/minecraft/client/gui/screens/inventory/tooltip/BelowOrAboveWidgetTooltipPositioner/m_262814_ (IIIIII)Lorg/joml/Vector2ic; net/minecraft/client/gui/screens/inventory/tooltip/BelowOrAboveWidgetTooltipPositioner/positionTooltip (IIIIII)Lorg/joml/Vector2ic; +MD: net/minecraft/client/gui/screens/inventory/tooltip/ClientBundleTooltip/ ()V net/minecraft/client/gui/screens/inventory/tooltip/ClientBundleTooltip/ ()V +MD: net/minecraft/client/gui/screens/inventory/tooltip/ClientBundleTooltip/ (Lnet/minecraft/world/inventory/tooltip/BundleTooltip;)V net/minecraft/client/gui/screens/inventory/tooltip/ClientBundleTooltip/ (Lnet/minecraft/world/inventory/tooltip/BundleTooltip;)V +MD: net/minecraft/client/gui/screens/inventory/tooltip/ClientBundleTooltip/m_142069_ (Lnet/minecraft/client/gui/Font;)I net/minecraft/client/gui/screens/inventory/tooltip/ClientBundleTooltip/getWidth (Lnet/minecraft/client/gui/Font;)I +MD: net/minecraft/client/gui/screens/inventory/tooltip/ClientBundleTooltip/m_142103_ ()I net/minecraft/client/gui/screens/inventory/tooltip/ClientBundleTooltip/getHeight ()I +MD: net/minecraft/client/gui/screens/inventory/tooltip/ClientBundleTooltip/m_169910_ ()I net/minecraft/client/gui/screens/inventory/tooltip/ClientBundleTooltip/gridSizeX ()I +MD: net/minecraft/client/gui/screens/inventory/tooltip/ClientBundleTooltip/m_169911_ ()I net/minecraft/client/gui/screens/inventory/tooltip/ClientBundleTooltip/gridSizeY ()I +MD: net/minecraft/client/gui/screens/inventory/tooltip/ClientBundleTooltip/m_183452_ (Lnet/minecraft/client/gui/Font;IILnet/minecraft/client/gui/GuiGraphics;)V net/minecraft/client/gui/screens/inventory/tooltip/ClientBundleTooltip/renderImage (Lnet/minecraft/client/gui/Font;IILnet/minecraft/client/gui/GuiGraphics;)V +MD: net/minecraft/client/gui/screens/inventory/tooltip/ClientBundleTooltip/m_275840_ (IIIILnet/minecraft/client/gui/GuiGraphics;)V net/minecraft/client/gui/screens/inventory/tooltip/ClientBundleTooltip/drawBorder (IIIILnet/minecraft/client/gui/GuiGraphics;)V +MD: net/minecraft/client/gui/screens/inventory/tooltip/ClientBundleTooltip/m_280004_ (Lnet/minecraft/client/gui/GuiGraphics;IILnet/minecraft/client/gui/screens/inventory/tooltip/ClientBundleTooltip$Texture;)V net/minecraft/client/gui/screens/inventory/tooltip/ClientBundleTooltip/blit (Lnet/minecraft/client/gui/GuiGraphics;IILnet/minecraft/client/gui/screens/inventory/tooltip/ClientBundleTooltip$Texture;)V +MD: net/minecraft/client/gui/screens/inventory/tooltip/ClientBundleTooltip/m_280665_ (IIIZLnet/minecraft/client/gui/GuiGraphics;Lnet/minecraft/client/gui/Font;)V net/minecraft/client/gui/screens/inventory/tooltip/ClientBundleTooltip/renderSlot (IIIZLnet/minecraft/client/gui/GuiGraphics;Lnet/minecraft/client/gui/Font;)V +MD: net/minecraft/client/gui/screens/inventory/tooltip/ClientBundleTooltip$Texture/ ()V net/minecraft/client/gui/screens/inventory/tooltip/ClientBundleTooltip$Texture/ ()V +MD: net/minecraft/client/gui/screens/inventory/tooltip/ClientBundleTooltip$Texture/ (Ljava/lang/String;IIIII)V net/minecraft/client/gui/screens/inventory/tooltip/ClientBundleTooltip$Texture/ (Ljava/lang/String;IIIII)V +MD: net/minecraft/client/gui/screens/inventory/tooltip/ClientBundleTooltip$Texture/m_169932_ ()[Lnet/minecraft/client/gui/screens/inventory/tooltip/ClientBundleTooltip$Texture; net/minecraft/client/gui/screens/inventory/tooltip/ClientBundleTooltip$Texture/$values ()[Lnet/minecraft/client/gui/screens/inventory/tooltip/ClientBundleTooltip$Texture; +MD: net/minecraft/client/gui/screens/inventory/tooltip/ClientBundleTooltip$Texture/valueOf (Ljava/lang/String;)Lnet/minecraft/client/gui/screens/inventory/tooltip/ClientBundleTooltip$Texture; net/minecraft/client/gui/screens/inventory/tooltip/ClientBundleTooltip$Texture/valueOf (Ljava/lang/String;)Lnet/minecraft/client/gui/screens/inventory/tooltip/ClientBundleTooltip$Texture; +MD: net/minecraft/client/gui/screens/inventory/tooltip/ClientBundleTooltip$Texture/values ()[Lnet/minecraft/client/gui/screens/inventory/tooltip/ClientBundleTooltip$Texture; net/minecraft/client/gui/screens/inventory/tooltip/ClientBundleTooltip$Texture/values ()[Lnet/minecraft/client/gui/screens/inventory/tooltip/ClientBundleTooltip$Texture; +MD: net/minecraft/client/gui/screens/inventory/tooltip/ClientTextTooltip/ (Lnet/minecraft/util/FormattedCharSequence;)V net/minecraft/client/gui/screens/inventory/tooltip/ClientTextTooltip/ (Lnet/minecraft/util/FormattedCharSequence;)V +MD: net/minecraft/client/gui/screens/inventory/tooltip/ClientTextTooltip/m_142069_ (Lnet/minecraft/client/gui/Font;)I net/minecraft/client/gui/screens/inventory/tooltip/ClientTextTooltip/getWidth (Lnet/minecraft/client/gui/Font;)I +MD: net/minecraft/client/gui/screens/inventory/tooltip/ClientTextTooltip/m_142103_ ()I net/minecraft/client/gui/screens/inventory/tooltip/ClientTextTooltip/getHeight ()I +MD: net/minecraft/client/gui/screens/inventory/tooltip/ClientTextTooltip/m_142440_ (Lnet/minecraft/client/gui/Font;IILorg/joml/Matrix4f;Lnet/minecraft/client/renderer/MultiBufferSource$BufferSource;)V net/minecraft/client/gui/screens/inventory/tooltip/ClientTextTooltip/renderText (Lnet/minecraft/client/gui/Font;IILorg/joml/Matrix4f;Lnet/minecraft/client/renderer/MultiBufferSource$BufferSource;)V +MD: net/minecraft/client/gui/screens/inventory/tooltip/ClientTooltipComponent/m_142069_ (Lnet/minecraft/client/gui/Font;)I net/minecraft/client/gui/screens/inventory/tooltip/ClientTooltipComponent/getWidth (Lnet/minecraft/client/gui/Font;)I +MD: net/minecraft/client/gui/screens/inventory/tooltip/ClientTooltipComponent/m_142103_ ()I net/minecraft/client/gui/screens/inventory/tooltip/ClientTooltipComponent/getHeight ()I +MD: net/minecraft/client/gui/screens/inventory/tooltip/ClientTooltipComponent/m_142440_ (Lnet/minecraft/client/gui/Font;IILorg/joml/Matrix4f;Lnet/minecraft/client/renderer/MultiBufferSource$BufferSource;)V net/minecraft/client/gui/screens/inventory/tooltip/ClientTooltipComponent/renderText (Lnet/minecraft/client/gui/Font;IILorg/joml/Matrix4f;Lnet/minecraft/client/renderer/MultiBufferSource$BufferSource;)V +MD: net/minecraft/client/gui/screens/inventory/tooltip/ClientTooltipComponent/m_169948_ (Lnet/minecraft/util/FormattedCharSequence;)Lnet/minecraft/client/gui/screens/inventory/tooltip/ClientTooltipComponent; net/minecraft/client/gui/screens/inventory/tooltip/ClientTooltipComponent/create (Lnet/minecraft/util/FormattedCharSequence;)Lnet/minecraft/client/gui/screens/inventory/tooltip/ClientTooltipComponent; +MD: net/minecraft/client/gui/screens/inventory/tooltip/ClientTooltipComponent/m_169950_ (Lnet/minecraft/world/inventory/tooltip/TooltipComponent;)Lnet/minecraft/client/gui/screens/inventory/tooltip/ClientTooltipComponent; net/minecraft/client/gui/screens/inventory/tooltip/ClientTooltipComponent/create (Lnet/minecraft/world/inventory/tooltip/TooltipComponent;)Lnet/minecraft/client/gui/screens/inventory/tooltip/ClientTooltipComponent; +MD: net/minecraft/client/gui/screens/inventory/tooltip/ClientTooltipComponent/m_183452_ (Lnet/minecraft/client/gui/Font;IILnet/minecraft/client/gui/GuiGraphics;)V net/minecraft/client/gui/screens/inventory/tooltip/ClientTooltipComponent/renderImage (Lnet/minecraft/client/gui/Font;IILnet/minecraft/client/gui/GuiGraphics;)V +MD: net/minecraft/client/gui/screens/inventory/tooltip/ClientTooltipPositioner/m_262814_ (IIIIII)Lorg/joml/Vector2ic; net/minecraft/client/gui/screens/inventory/tooltip/ClientTooltipPositioner/positionTooltip (IIIIII)Lorg/joml/Vector2ic; +MD: net/minecraft/client/gui/screens/inventory/tooltip/DefaultTooltipPositioner/ ()V net/minecraft/client/gui/screens/inventory/tooltip/DefaultTooltipPositioner/ ()V +MD: net/minecraft/client/gui/screens/inventory/tooltip/DefaultTooltipPositioner/ ()V net/minecraft/client/gui/screens/inventory/tooltip/DefaultTooltipPositioner/ ()V +MD: net/minecraft/client/gui/screens/inventory/tooltip/DefaultTooltipPositioner/m_262814_ (IIIIII)Lorg/joml/Vector2ic; net/minecraft/client/gui/screens/inventory/tooltip/DefaultTooltipPositioner/positionTooltip (IIIIII)Lorg/joml/Vector2ic; +MD: net/minecraft/client/gui/screens/inventory/tooltip/DefaultTooltipPositioner/m_280500_ (IILorg/joml/Vector2i;II)V net/minecraft/client/gui/screens/inventory/tooltip/DefaultTooltipPositioner/positionTooltip (IILorg/joml/Vector2i;II)V +MD: net/minecraft/client/gui/screens/inventory/tooltip/MenuTooltipPositioner/ (Lnet/minecraft/client/gui/components/AbstractWidget;)V net/minecraft/client/gui/screens/inventory/tooltip/MenuTooltipPositioner/ (Lnet/minecraft/client/gui/components/AbstractWidget;)V +MD: net/minecraft/client/gui/screens/inventory/tooltip/MenuTooltipPositioner/m_262814_ (IIIIII)Lorg/joml/Vector2ic; net/minecraft/client/gui/screens/inventory/tooltip/MenuTooltipPositioner/positionTooltip (IIIIII)Lorg/joml/Vector2ic; +MD: net/minecraft/client/gui/screens/inventory/tooltip/MenuTooltipPositioner/m_267810_ (III)I net/minecraft/client/gui/screens/inventory/tooltip/MenuTooltipPositioner/getOffset (III)I +MD: net/minecraft/client/gui/screens/inventory/tooltip/TooltipRenderUtil/ ()V net/minecraft/client/gui/screens/inventory/tooltip/TooltipRenderUtil/ ()V +MD: net/minecraft/client/gui/screens/inventory/tooltip/TooltipRenderUtil/m_280115_ (Lnet/minecraft/client/gui/GuiGraphics;IIIIIII)V net/minecraft/client/gui/screens/inventory/tooltip/TooltipRenderUtil/renderFrameGradient (Lnet/minecraft/client/gui/GuiGraphics;IIIIIII)V +MD: net/minecraft/client/gui/screens/inventory/tooltip/TooltipRenderUtil/m_280205_ (Lnet/minecraft/client/gui/GuiGraphics;IIIII)V net/minecraft/client/gui/screens/inventory/tooltip/TooltipRenderUtil/renderTooltipBackground (Lnet/minecraft/client/gui/GuiGraphics;IIIII)V +MD: net/minecraft/client/gui/screens/inventory/tooltip/TooltipRenderUtil/m_280217_ (Lnet/minecraft/client/gui/GuiGraphics;IIIII)V net/minecraft/client/gui/screens/inventory/tooltip/TooltipRenderUtil/renderHorizontalLine (Lnet/minecraft/client/gui/GuiGraphics;IIIII)V +MD: net/minecraft/client/gui/screens/inventory/tooltip/TooltipRenderUtil/m_280387_ (Lnet/minecraft/client/gui/GuiGraphics;IIIII)V net/minecraft/client/gui/screens/inventory/tooltip/TooltipRenderUtil/renderVerticalLine (Lnet/minecraft/client/gui/GuiGraphics;IIIII)V +MD: net/minecraft/client/gui/screens/inventory/tooltip/TooltipRenderUtil/m_280538_ (Lnet/minecraft/client/gui/GuiGraphics;IIIIII)V net/minecraft/client/gui/screens/inventory/tooltip/TooltipRenderUtil/renderRectangle (Lnet/minecraft/client/gui/GuiGraphics;IIIIII)V +MD: net/minecraft/client/gui/screens/inventory/tooltip/TooltipRenderUtil/m_280556_ (Lnet/minecraft/client/gui/GuiGraphics;IIIIII)V net/minecraft/client/gui/screens/inventory/tooltip/TooltipRenderUtil/renderVerticalLineGradient (Lnet/minecraft/client/gui/GuiGraphics;IIIIII)V +MD: net/minecraft/client/gui/screens/multiplayer/JoinMultiplayerScreen/ ()V net/minecraft/client/gui/screens/multiplayer/JoinMultiplayerScreen/ ()V +MD: net/minecraft/client/gui/screens/multiplayer/JoinMultiplayerScreen/ (Lnet/minecraft/client/gui/screens/Screen;)V net/minecraft/client/gui/screens/multiplayer/JoinMultiplayerScreen/ (Lnet/minecraft/client/gui/screens/Screen;)V +MD: net/minecraft/client/gui/screens/multiplayer/JoinMultiplayerScreen/m_279823_ (Lnet/minecraft/client/gui/components/Button;)V net/minecraft/client/gui/screens/multiplayer/JoinMultiplayerScreen/lambda$init$6 (Lnet/minecraft/client/gui/components/Button;)V +MD: net/minecraft/client/gui/screens/multiplayer/JoinMultiplayerScreen/m_279824_ (Lnet/minecraft/client/gui/components/Button;)V net/minecraft/client/gui/screens/multiplayer/JoinMultiplayerScreen/lambda$init$1 (Lnet/minecraft/client/gui/components/Button;)V +MD: net/minecraft/client/gui/screens/multiplayer/JoinMultiplayerScreen/m_279825_ (Lnet/minecraft/client/gui/components/Button;)V net/minecraft/client/gui/screens/multiplayer/JoinMultiplayerScreen/lambda$init$2 (Lnet/minecraft/client/gui/components/Button;)V +MD: net/minecraft/client/gui/screens/multiplayer/JoinMultiplayerScreen/m_7856_ ()V net/minecraft/client/gui/screens/multiplayer/JoinMultiplayerScreen/init ()V +MD: net/minecraft/client/gui/screens/multiplayer/JoinMultiplayerScreen/m_7861_ ()V net/minecraft/client/gui/screens/multiplayer/JoinMultiplayerScreen/removed ()V +MD: net/minecraft/client/gui/screens/multiplayer/JoinMultiplayerScreen/m_7933_ (III)Z net/minecraft/client/gui/screens/multiplayer/JoinMultiplayerScreen/keyPressed (III)Z +MD: net/minecraft/client/gui/screens/multiplayer/JoinMultiplayerScreen/m_86600_ ()V net/minecraft/client/gui/screens/multiplayer/JoinMultiplayerScreen/tick ()V +MD: net/minecraft/client/gui/screens/multiplayer/JoinMultiplayerScreen/m_88315_ (Lnet/minecraft/client/gui/GuiGraphics;IIF)V net/minecraft/client/gui/screens/multiplayer/JoinMultiplayerScreen/render (Lnet/minecraft/client/gui/GuiGraphics;IIF)V +MD: net/minecraft/client/gui/screens/multiplayer/JoinMultiplayerScreen/m_99700_ (Lnet/minecraft/client/gui/screens/multiplayer/ServerSelectionList$Entry;)V net/minecraft/client/gui/screens/multiplayer/JoinMultiplayerScreen/setSelected (Lnet/minecraft/client/gui/screens/multiplayer/ServerSelectionList$Entry;)V +MD: net/minecraft/client/gui/screens/multiplayer/JoinMultiplayerScreen/m_99702_ (Lnet/minecraft/client/multiplayer/ServerData;)V net/minecraft/client/gui/screens/multiplayer/JoinMultiplayerScreen/join (Lnet/minecraft/client/multiplayer/ServerData;)V +MD: net/minecraft/client/gui/screens/multiplayer/JoinMultiplayerScreen/m_99705_ (Lnet/minecraft/client/gui/components/Button;)V net/minecraft/client/gui/screens/multiplayer/JoinMultiplayerScreen/lambda$init$5 (Lnet/minecraft/client/gui/components/Button;)V +MD: net/minecraft/client/gui/screens/multiplayer/JoinMultiplayerScreen/m_99707_ (Ljava/util/List;)V net/minecraft/client/gui/screens/multiplayer/JoinMultiplayerScreen/setToolTip (Ljava/util/List;)V +MD: net/minecraft/client/gui/screens/multiplayer/JoinMultiplayerScreen/m_99709_ (Lnet/minecraft/client/gui/components/Button;)V net/minecraft/client/gui/screens/multiplayer/JoinMultiplayerScreen/lambda$init$4 (Lnet/minecraft/client/gui/components/Button;)V +MD: net/minecraft/client/gui/screens/multiplayer/JoinMultiplayerScreen/m_99711_ (Z)V net/minecraft/client/gui/screens/multiplayer/JoinMultiplayerScreen/deleteCallback (Z)V +MD: net/minecraft/client/gui/screens/multiplayer/JoinMultiplayerScreen/m_99714_ (Lnet/minecraft/client/gui/components/Button;)V net/minecraft/client/gui/screens/multiplayer/JoinMultiplayerScreen/lambda$init$3 (Lnet/minecraft/client/gui/components/Button;)V +MD: net/minecraft/client/gui/screens/multiplayer/JoinMultiplayerScreen/m_99716_ (Z)V net/minecraft/client/gui/screens/multiplayer/JoinMultiplayerScreen/editServerCallback (Z)V +MD: net/minecraft/client/gui/screens/multiplayer/JoinMultiplayerScreen/m_99721_ (Z)V net/minecraft/client/gui/screens/multiplayer/JoinMultiplayerScreen/addServerCallback (Z)V +MD: net/minecraft/client/gui/screens/multiplayer/JoinMultiplayerScreen/m_99725_ (Z)V net/minecraft/client/gui/screens/multiplayer/JoinMultiplayerScreen/directJoinCallback (Z)V +MD: net/minecraft/client/gui/screens/multiplayer/JoinMultiplayerScreen/m_99727_ (Lnet/minecraft/client/gui/components/Button;)V net/minecraft/client/gui/screens/multiplayer/JoinMultiplayerScreen/lambda$init$0 (Lnet/minecraft/client/gui/components/Button;)V +MD: net/minecraft/client/gui/screens/multiplayer/JoinMultiplayerScreen/m_99729_ ()V net/minecraft/client/gui/screens/multiplayer/JoinMultiplayerScreen/joinSelectedServer ()V +MD: net/minecraft/client/gui/screens/multiplayer/JoinMultiplayerScreen/m_99730_ ()V net/minecraft/client/gui/screens/multiplayer/JoinMultiplayerScreen/onSelectedChange ()V +MD: net/minecraft/client/gui/screens/multiplayer/JoinMultiplayerScreen/m_99731_ ()Lnet/minecraft/client/multiplayer/ServerStatusPinger; net/minecraft/client/gui/screens/multiplayer/JoinMultiplayerScreen/getPinger ()Lnet/minecraft/client/multiplayer/ServerStatusPinger; +MD: net/minecraft/client/gui/screens/multiplayer/JoinMultiplayerScreen/m_99732_ ()Lnet/minecraft/client/multiplayer/ServerList; net/minecraft/client/gui/screens/multiplayer/JoinMultiplayerScreen/getServers ()Lnet/minecraft/client/multiplayer/ServerList; +MD: net/minecraft/client/gui/screens/multiplayer/JoinMultiplayerScreen/m_99733_ ()V net/minecraft/client/gui/screens/multiplayer/JoinMultiplayerScreen/refreshServerList ()V +MD: net/minecraft/client/gui/screens/multiplayer/Realms32bitWarningScreen/ ()V net/minecraft/client/gui/screens/multiplayer/Realms32bitWarningScreen/ ()V +MD: net/minecraft/client/gui/screens/multiplayer/Realms32bitWarningScreen/ (Lnet/minecraft/client/gui/screens/Screen;)V net/minecraft/client/gui/screens/multiplayer/Realms32bitWarningScreen/ (Lnet/minecraft/client/gui/screens/Screen;)V +MD: net/minecraft/client/gui/screens/multiplayer/Realms32bitWarningScreen/m_207212_ (I)V net/minecraft/client/gui/screens/multiplayer/Realms32bitWarningScreen/initButtons (I)V +MD: net/minecraft/client/gui/screens/multiplayer/Realms32bitWarningScreen/m_279826_ (Lnet/minecraft/client/gui/components/Button;)V net/minecraft/client/gui/screens/multiplayer/Realms32bitWarningScreen/lambda$initButtons$0 (Lnet/minecraft/client/gui/components/Button;)V +MD: net/minecraft/client/gui/screens/multiplayer/SafetyScreen/ ()V net/minecraft/client/gui/screens/multiplayer/SafetyScreen/ ()V +MD: net/minecraft/client/gui/screens/multiplayer/SafetyScreen/ (Lnet/minecraft/client/gui/screens/Screen;)V net/minecraft/client/gui/screens/multiplayer/SafetyScreen/ (Lnet/minecraft/client/gui/screens/Screen;)V +MD: net/minecraft/client/gui/screens/multiplayer/SafetyScreen/m_207212_ (I)V net/minecraft/client/gui/screens/multiplayer/SafetyScreen/initButtons (I)V +MD: net/minecraft/client/gui/screens/multiplayer/SafetyScreen/m_279827_ (Lnet/minecraft/client/gui/components/Button;)V net/minecraft/client/gui/screens/multiplayer/SafetyScreen/lambda$initButtons$1 (Lnet/minecraft/client/gui/components/Button;)V +MD: net/minecraft/client/gui/screens/multiplayer/SafetyScreen/m_279828_ (Lnet/minecraft/client/gui/components/Button;)V net/minecraft/client/gui/screens/multiplayer/SafetyScreen/lambda$initButtons$0 (Lnet/minecraft/client/gui/components/Button;)V +MD: net/minecraft/client/gui/screens/multiplayer/ServerSelectionList/ ()V net/minecraft/client/gui/screens/multiplayer/ServerSelectionList/ ()V +MD: net/minecraft/client/gui/screens/multiplayer/ServerSelectionList/ (Lnet/minecraft/client/gui/screens/multiplayer/JoinMultiplayerScreen;Lnet/minecraft/client/Minecraft;IIIII)V net/minecraft/client/gui/screens/multiplayer/ServerSelectionList/ (Lnet/minecraft/client/gui/screens/multiplayer/JoinMultiplayerScreen;Lnet/minecraft/client/Minecraft;IIIII)V +MD: net/minecraft/client/gui/screens/multiplayer/ServerSelectionList/m_169966_ (Lnet/minecraft/client/gui/screens/multiplayer/ServerSelectionList;I)I net/minecraft/client/gui/screens/multiplayer/ServerSelectionList/access$100 (Lnet/minecraft/client/gui/screens/multiplayer/ServerSelectionList;I)I +MD: net/minecraft/client/gui/screens/multiplayer/ServerSelectionList/m_169969_ (Lnet/minecraft/client/gui/screens/multiplayer/ServerSelectionList;Lnet/minecraft/client/gui/components/AbstractSelectionList$Entry;)V net/minecraft/client/gui/screens/multiplayer/ServerSelectionList/access$000 (Lnet/minecraft/client/gui/screens/multiplayer/ServerSelectionList;Lnet/minecraft/client/gui/components/AbstractSelectionList$Entry;)V +MD: net/minecraft/client/gui/screens/multiplayer/ServerSelectionList/m_169974_ (Lnet/minecraft/client/gui/screens/multiplayer/ServerSelectionList;Lnet/minecraft/client/gui/components/AbstractSelectionList$Entry;)V net/minecraft/client/gui/screens/multiplayer/ServerSelectionList/lambda$refreshEntries$3 (Lnet/minecraft/client/gui/screens/multiplayer/ServerSelectionList;Lnet/minecraft/client/gui/components/AbstractSelectionList$Entry;)V +MD: net/minecraft/client/gui/screens/multiplayer/ServerSelectionList/m_169977_ (Lnet/minecraft/client/gui/screens/multiplayer/ServerSelectionList;Lnet/minecraft/client/gui/components/AbstractSelectionList$Entry;)V net/minecraft/client/gui/screens/multiplayer/ServerSelectionList/lambda$refreshEntries$2 (Lnet/minecraft/client/gui/screens/multiplayer/ServerSelectionList;Lnet/minecraft/client/gui/components/AbstractSelectionList$Entry;)V +MD: net/minecraft/client/gui/screens/multiplayer/ServerSelectionList/m_263877_ (Lnet/minecraft/network/chat/Style;)Lnet/minecraft/network/chat/Style; net/minecraft/client/gui/screens/multiplayer/ServerSelectionList/lambda$static$1 (Lnet/minecraft/network/chat/Style;)Lnet/minecraft/network/chat/Style; +MD: net/minecraft/client/gui/screens/multiplayer/ServerSelectionList/m_263878_ (Lnet/minecraft/network/chat/Style;)Lnet/minecraft/network/chat/Style; net/minecraft/client/gui/screens/multiplayer/ServerSelectionList/lambda$static$0 (Lnet/minecraft/network/chat/Style;)Lnet/minecraft/network/chat/Style; +MD: net/minecraft/client/gui/screens/multiplayer/ServerSelectionList/m_289224_ ()V net/minecraft/client/gui/screens/multiplayer/ServerSelectionList/removed ()V +MD: net/minecraft/client/gui/screens/multiplayer/ServerSelectionList/m_5756_ ()I net/minecraft/client/gui/screens/multiplayer/ServerSelectionList/getScrollbarPosition ()I +MD: net/minecraft/client/gui/screens/multiplayer/ServerSelectionList/m_5759_ ()I net/minecraft/client/gui/screens/multiplayer/ServerSelectionList/getRowWidth ()I +MD: net/minecraft/client/gui/screens/multiplayer/ServerSelectionList/m_6987_ (Lnet/minecraft/client/gui/screens/multiplayer/ServerSelectionList$Entry;)V net/minecraft/client/gui/screens/multiplayer/ServerSelectionList/setSelected (Lnet/minecraft/client/gui/screens/multiplayer/ServerSelectionList$Entry;)V +MD: net/minecraft/client/gui/screens/multiplayer/ServerSelectionList/m_6987_ (Lnet/minecraft/client/gui/components/AbstractSelectionList$Entry;)V net/minecraft/client/gui/screens/multiplayer/ServerSelectionList/setSelected (Lnet/minecraft/client/gui/components/AbstractSelectionList$Entry;)V +MD: net/minecraft/client/gui/screens/multiplayer/ServerSelectionList/m_7933_ (III)Z net/minecraft/client/gui/screens/multiplayer/ServerSelectionList/keyPressed (III)Z +MD: net/minecraft/client/gui/screens/multiplayer/ServerSelectionList/m_99780_ ()V net/minecraft/client/gui/screens/multiplayer/ServerSelectionList/refreshEntries ()V +MD: net/minecraft/client/gui/screens/multiplayer/ServerSelectionList/m_99797_ (Lnet/minecraft/client/multiplayer/ServerList;)V net/minecraft/client/gui/screens/multiplayer/ServerSelectionList/updateOnlineServers (Lnet/minecraft/client/multiplayer/ServerList;)V +MD: net/minecraft/client/gui/screens/multiplayer/ServerSelectionList/m_99799_ (Ljava/util/List;)V net/minecraft/client/gui/screens/multiplayer/ServerSelectionList/updateNetworkServers (Ljava/util/List;)V +MD: net/minecraft/client/gui/screens/multiplayer/ServerSelectionList$Entry/ ()V net/minecraft/client/gui/screens/multiplayer/ServerSelectionList$Entry/ ()V +MD: net/minecraft/client/gui/screens/multiplayer/ServerSelectionList$Entry/close ()V net/minecraft/client/gui/screens/multiplayer/ServerSelectionList$Entry/close ()V +MD: net/minecraft/client/gui/screens/multiplayer/ServerSelectionList$LANHeader/ ()V net/minecraft/client/gui/screens/multiplayer/ServerSelectionList$LANHeader/ ()V +MD: net/minecraft/client/gui/screens/multiplayer/ServerSelectionList$LANHeader/m_142172_ ()Lnet/minecraft/network/chat/Component; net/minecraft/client/gui/screens/multiplayer/ServerSelectionList$LANHeader/getNarration ()Lnet/minecraft/network/chat/Component; +MD: net/minecraft/client/gui/screens/multiplayer/ServerSelectionList$LANHeader/m_6311_ (Lnet/minecraft/client/gui/GuiGraphics;IIIIIIIZF)V net/minecraft/client/gui/screens/multiplayer/ServerSelectionList$LANHeader/render (Lnet/minecraft/client/gui/GuiGraphics;IIIIIIIZF)V +MD: net/minecraft/client/gui/screens/multiplayer/ServerSelectionList$NetworkServerEntry/ ()V net/minecraft/client/gui/screens/multiplayer/ServerSelectionList$NetworkServerEntry/ ()V +MD: net/minecraft/client/gui/screens/multiplayer/ServerSelectionList$NetworkServerEntry/ (Lnet/minecraft/client/gui/screens/multiplayer/JoinMultiplayerScreen;Lnet/minecraft/client/server/LanServer;)V net/minecraft/client/gui/screens/multiplayer/ServerSelectionList$NetworkServerEntry/ (Lnet/minecraft/client/gui/screens/multiplayer/JoinMultiplayerScreen;Lnet/minecraft/client/server/LanServer;)V +MD: net/minecraft/client/gui/screens/multiplayer/ServerSelectionList$NetworkServerEntry/m_142172_ ()Lnet/minecraft/network/chat/Component; net/minecraft/client/gui/screens/multiplayer/ServerSelectionList$NetworkServerEntry/getNarration ()Lnet/minecraft/network/chat/Component; +MD: net/minecraft/client/gui/screens/multiplayer/ServerSelectionList$NetworkServerEntry/m_264484_ ()Lnet/minecraft/network/chat/Component; net/minecraft/client/gui/screens/multiplayer/ServerSelectionList$NetworkServerEntry/getServerNarration ()Lnet/minecraft/network/chat/Component; +MD: net/minecraft/client/gui/screens/multiplayer/ServerSelectionList$NetworkServerEntry/m_6311_ (Lnet/minecraft/client/gui/GuiGraphics;IIIIIIIZF)V net/minecraft/client/gui/screens/multiplayer/ServerSelectionList$NetworkServerEntry/render (Lnet/minecraft/client/gui/GuiGraphics;IIIIIIIZF)V +MD: net/minecraft/client/gui/screens/multiplayer/ServerSelectionList$NetworkServerEntry/m_6375_ (DDI)Z net/minecraft/client/gui/screens/multiplayer/ServerSelectionList$NetworkServerEntry/mouseClicked (DDI)Z +MD: net/minecraft/client/gui/screens/multiplayer/ServerSelectionList$NetworkServerEntry/m_99838_ ()Lnet/minecraft/client/server/LanServer; net/minecraft/client/gui/screens/multiplayer/ServerSelectionList$NetworkServerEntry/getServerData ()Lnet/minecraft/client/server/LanServer; +MD: net/minecraft/client/gui/screens/multiplayer/ServerSelectionList$OnlineServerEntry/ (Lnet/minecraft/client/gui/screens/multiplayer/ServerSelectionList;Lnet/minecraft/client/gui/screens/multiplayer/JoinMultiplayerScreen;Lnet/minecraft/client/multiplayer/ServerData;)V net/minecraft/client/gui/screens/multiplayer/ServerSelectionList$OnlineServerEntry/ (Lnet/minecraft/client/gui/screens/multiplayer/ServerSelectionList;Lnet/minecraft/client/gui/screens/multiplayer/JoinMultiplayerScreen;Lnet/minecraft/client/multiplayer/ServerData;)V +MD: net/minecraft/client/gui/screens/multiplayer/ServerSelectionList$OnlineServerEntry/close ()V net/minecraft/client/gui/screens/multiplayer/ServerSelectionList$OnlineServerEntry/close ()V +MD: net/minecraft/client/gui/screens/multiplayer/ServerSelectionList$OnlineServerEntry/m_142172_ ()Lnet/minecraft/network/chat/Component; net/minecraft/client/gui/screens/multiplayer/ServerSelectionList$OnlineServerEntry/getNarration ()Lnet/minecraft/network/chat/Component; +MD: net/minecraft/client/gui/screens/multiplayer/ServerSelectionList$OnlineServerEntry/m_169992_ ()V net/minecraft/client/gui/screens/multiplayer/ServerSelectionList$OnlineServerEntry/lambda$render$0 ()V +MD: net/minecraft/client/gui/screens/multiplayer/ServerSelectionList$OnlineServerEntry/m_264063_ ()Z net/minecraft/client/gui/screens/multiplayer/ServerSelectionList$OnlineServerEntry/pingCompleted ()Z +MD: net/minecraft/client/gui/screens/multiplayer/ServerSelectionList$OnlineServerEntry/m_264399_ ()Z net/minecraft/client/gui/screens/multiplayer/ServerSelectionList$OnlineServerEntry/isCompatible ()Z +MD: net/minecraft/client/gui/screens/multiplayer/ServerSelectionList$OnlineServerEntry/m_280396_ (Lnet/minecraft/client/gui/GuiGraphics;IILnet/minecraft/resources/ResourceLocation;)V net/minecraft/client/gui/screens/multiplayer/ServerSelectionList$OnlineServerEntry/drawIcon (Lnet/minecraft/client/gui/GuiGraphics;IILnet/minecraft/resources/ResourceLocation;)V +MD: net/minecraft/client/gui/screens/multiplayer/ServerSelectionList$OnlineServerEntry/m_6311_ (Lnet/minecraft/client/gui/GuiGraphics;IIIIIIIZF)V net/minecraft/client/gui/screens/multiplayer/ServerSelectionList$OnlineServerEntry/render (Lnet/minecraft/client/gui/GuiGraphics;IIIIIIIZF)V +MD: net/minecraft/client/gui/screens/multiplayer/ServerSelectionList$OnlineServerEntry/m_6375_ (DDI)Z net/minecraft/client/gui/screens/multiplayer/ServerSelectionList$OnlineServerEntry/mouseClicked (DDI)Z +MD: net/minecraft/client/gui/screens/multiplayer/ServerSelectionList$OnlineServerEntry/m_7933_ (III)Z net/minecraft/client/gui/screens/multiplayer/ServerSelectionList$OnlineServerEntry/keyPressed (III)Z +MD: net/minecraft/client/gui/screens/multiplayer/ServerSelectionList$OnlineServerEntry/m_99866_ ()V net/minecraft/client/gui/screens/multiplayer/ServerSelectionList$OnlineServerEntry/updateServerList ()V +MD: net/minecraft/client/gui/screens/multiplayer/ServerSelectionList$OnlineServerEntry/m_99871_ (II)V net/minecraft/client/gui/screens/multiplayer/ServerSelectionList$OnlineServerEntry/swap (II)V +MD: net/minecraft/client/gui/screens/multiplayer/ServerSelectionList$OnlineServerEntry/m_99896_ ([B)Z net/minecraft/client/gui/screens/multiplayer/ServerSelectionList$OnlineServerEntry/uploadServerIcon ([B)Z +MD: net/minecraft/client/gui/screens/multiplayer/ServerSelectionList$OnlineServerEntry/m_99898_ ()Lnet/minecraft/client/multiplayer/ServerData; net/minecraft/client/gui/screens/multiplayer/ServerSelectionList$OnlineServerEntry/getServerData ()Lnet/minecraft/client/multiplayer/ServerData; +MD: net/minecraft/client/gui/screens/multiplayer/ServerSelectionList$OnlineServerEntry/m_99899_ ()Z net/minecraft/client/gui/screens/multiplayer/ServerSelectionList$OnlineServerEntry/canJoin ()Z +MD: net/minecraft/client/gui/screens/multiplayer/ServerSelectionList$OnlineServerEntry/m_99900_ ()V net/minecraft/client/gui/screens/multiplayer/ServerSelectionList$OnlineServerEntry/lambda$render$1 ()V +MD: net/minecraft/client/gui/screens/multiplayer/WarningScreen/ (Lnet/minecraft/network/chat/Component;Lnet/minecraft/network/chat/Component;Lnet/minecraft/network/chat/Component;Lnet/minecraft/network/chat/Component;)V net/minecraft/client/gui/screens/multiplayer/WarningScreen/ (Lnet/minecraft/network/chat/Component;Lnet/minecraft/network/chat/Component;Lnet/minecraft/network/chat/Component;Lnet/minecraft/network/chat/Component;)V +MD: net/minecraft/client/gui/screens/multiplayer/WarningScreen/ (Lnet/minecraft/network/chat/Component;Lnet/minecraft/network/chat/Component;Lnet/minecraft/network/chat/Component;)V net/minecraft/client/gui/screens/multiplayer/WarningScreen/ (Lnet/minecraft/network/chat/Component;Lnet/minecraft/network/chat/Component;Lnet/minecraft/network/chat/Component;)V +MD: net/minecraft/client/gui/screens/multiplayer/WarningScreen/m_142562_ ()Lnet/minecraft/network/chat/Component; net/minecraft/client/gui/screens/multiplayer/WarningScreen/getNarrationMessage ()Lnet/minecraft/network/chat/Component; +MD: net/minecraft/client/gui/screens/multiplayer/WarningScreen/m_207212_ (I)V net/minecraft/client/gui/screens/multiplayer/WarningScreen/initButtons (I)V +MD: net/minecraft/client/gui/screens/multiplayer/WarningScreen/m_214169_ ()I net/minecraft/client/gui/screens/multiplayer/WarningScreen/getLineHeight ()I +MD: net/minecraft/client/gui/screens/multiplayer/WarningScreen/m_280550_ (Lnet/minecraft/client/gui/GuiGraphics;)V net/minecraft/client/gui/screens/multiplayer/WarningScreen/renderTitle (Lnet/minecraft/client/gui/GuiGraphics;)V +MD: net/minecraft/client/gui/screens/multiplayer/WarningScreen/m_7856_ ()V net/minecraft/client/gui/screens/multiplayer/WarningScreen/init ()V +MD: net/minecraft/client/gui/screens/multiplayer/WarningScreen/m_88315_ (Lnet/minecraft/client/gui/GuiGraphics;IIF)V net/minecraft/client/gui/screens/multiplayer/WarningScreen/render (Lnet/minecraft/client/gui/GuiGraphics;IIF)V +MD: net/minecraft/client/gui/screens/packs/PackSelectionModel/ (Ljava/lang/Runnable;Ljava/util/function/Function;Lnet/minecraft/server/packs/repository/PackRepository;Ljava/util/function/Consumer;)V net/minecraft/client/gui/screens/packs/PackSelectionModel/ (Ljava/lang/Runnable;Ljava/util/function/Function;Lnet/minecraft/server/packs/repository/PackRepository;Ljava/util/function/Consumer;)V +MD: net/minecraft/client/gui/screens/packs/PackSelectionModel/m_274342_ ()V net/minecraft/client/gui/screens/packs/PackSelectionModel/updateRepoSelectedList ()V +MD: net/minecraft/client/gui/screens/packs/PackSelectionModel/m_99913_ ()Ljava/util/stream/Stream; net/minecraft/client/gui/screens/packs/PackSelectionModel/getUnselected ()Ljava/util/stream/Stream; +MD: net/minecraft/client/gui/screens/packs/PackSelectionModel/m_99914_ (Lnet/minecraft/server/packs/repository/Pack;)Lnet/minecraft/client/gui/screens/packs/PackSelectionModel$Entry; net/minecraft/client/gui/screens/packs/PackSelectionModel/lambda$getSelected$1 (Lnet/minecraft/server/packs/repository/Pack;)Lnet/minecraft/client/gui/screens/packs/PackSelectionModel$Entry; +MD: net/minecraft/client/gui/screens/packs/PackSelectionModel/m_99918_ ()Ljava/util/stream/Stream; net/minecraft/client/gui/screens/packs/PackSelectionModel/getSelected ()Ljava/util/stream/Stream; +MD: net/minecraft/client/gui/screens/packs/PackSelectionModel/m_99919_ (Lnet/minecraft/server/packs/repository/Pack;)Lnet/minecraft/client/gui/screens/packs/PackSelectionModel$Entry; net/minecraft/client/gui/screens/packs/PackSelectionModel/lambda$getUnselected$0 (Lnet/minecraft/server/packs/repository/Pack;)Lnet/minecraft/client/gui/screens/packs/PackSelectionModel$Entry; +MD: net/minecraft/client/gui/screens/packs/PackSelectionModel/m_99923_ ()V net/minecraft/client/gui/screens/packs/PackSelectionModel/commit ()V +MD: net/minecraft/client/gui/screens/packs/PackSelectionModel/m_99926_ ()V net/minecraft/client/gui/screens/packs/PackSelectionModel/findNewPacks ()V +MD: net/minecraft/client/gui/screens/packs/PackSelectionModel$Entry/m_264249_ ()Ljava/lang/String; net/minecraft/client/gui/screens/packs/PackSelectionModel$Entry/getId ()Ljava/lang/String; +MD: net/minecraft/client/gui/screens/packs/PackSelectionModel$Entry/m_6876_ ()Lnet/minecraft/resources/ResourceLocation; net/minecraft/client/gui/screens/packs/PackSelectionModel$Entry/getIconTexture ()Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/client/gui/screens/packs/PackSelectionModel$Entry/m_7356_ ()Lnet/minecraft/network/chat/Component; net/minecraft/client/gui/screens/packs/PackSelectionModel$Entry/getTitle ()Lnet/minecraft/network/chat/Component; +MD: net/minecraft/client/gui/screens/packs/PackSelectionModel$Entry/m_7359_ ()Lnet/minecraft/network/chat/Component; net/minecraft/client/gui/screens/packs/PackSelectionModel$Entry/getDescription ()Lnet/minecraft/network/chat/Component; +MD: net/minecraft/client/gui/screens/packs/PackSelectionModel$Entry/m_7485_ ()Lnet/minecraft/server/packs/repository/PackSource; net/minecraft/client/gui/screens/packs/PackSelectionModel$Entry/getPackSource ()Lnet/minecraft/server/packs/repository/PackSource; +MD: net/minecraft/client/gui/screens/packs/PackSelectionModel$Entry/m_7709_ ()Lnet/minecraft/server/packs/repository/PackCompatibility; net/minecraft/client/gui/screens/packs/PackSelectionModel$Entry/getCompatibility ()Lnet/minecraft/server/packs/repository/PackCompatibility; +MD: net/minecraft/client/gui/screens/packs/PackSelectionModel$Entry/m_7802_ ()Z net/minecraft/client/gui/screens/packs/PackSelectionModel$Entry/canMoveUp ()Z +MD: net/minecraft/client/gui/screens/packs/PackSelectionModel$Entry/m_7803_ ()Z net/minecraft/client/gui/screens/packs/PackSelectionModel$Entry/canMoveDown ()Z +MD: net/minecraft/client/gui/screens/packs/PackSelectionModel$Entry/m_7844_ ()Z net/minecraft/client/gui/screens/packs/PackSelectionModel$Entry/isRequired ()Z +MD: net/minecraft/client/gui/screens/packs/PackSelectionModel$Entry/m_7845_ ()V net/minecraft/client/gui/screens/packs/PackSelectionModel$Entry/moveDown ()V +MD: net/minecraft/client/gui/screens/packs/PackSelectionModel$Entry/m_7849_ ()V net/minecraft/client/gui/screens/packs/PackSelectionModel$Entry/select ()V +MD: net/minecraft/client/gui/screens/packs/PackSelectionModel$Entry/m_7850_ ()V net/minecraft/client/gui/screens/packs/PackSelectionModel$Entry/unselect ()V +MD: net/minecraft/client/gui/screens/packs/PackSelectionModel$Entry/m_7852_ ()V net/minecraft/client/gui/screens/packs/PackSelectionModel$Entry/moveUp ()V +MD: net/minecraft/client/gui/screens/packs/PackSelectionModel$Entry/m_7857_ ()Z net/minecraft/client/gui/screens/packs/PackSelectionModel$Entry/isSelected ()Z +MD: net/minecraft/client/gui/screens/packs/PackSelectionModel$Entry/m_7867_ ()Z net/minecraft/client/gui/screens/packs/PackSelectionModel$Entry/isFixedPosition ()Z +MD: net/minecraft/client/gui/screens/packs/PackSelectionModel$Entry/m_99929_ ()Lnet/minecraft/network/chat/Component; net/minecraft/client/gui/screens/packs/PackSelectionModel$Entry/getExtendedDescription ()Lnet/minecraft/network/chat/Component; +MD: net/minecraft/client/gui/screens/packs/PackSelectionModel$Entry/m_99930_ ()Z net/minecraft/client/gui/screens/packs/PackSelectionModel$Entry/canSelect ()Z +MD: net/minecraft/client/gui/screens/packs/PackSelectionModel$Entry/m_99931_ ()Z net/minecraft/client/gui/screens/packs/PackSelectionModel$Entry/canUnselect ()Z +MD: net/minecraft/client/gui/screens/packs/PackSelectionModel$EntryBase/ (Lnet/minecraft/client/gui/screens/packs/PackSelectionModel;Lnet/minecraft/server/packs/repository/Pack;)V net/minecraft/client/gui/screens/packs/PackSelectionModel$EntryBase/ (Lnet/minecraft/client/gui/screens/packs/PackSelectionModel;Lnet/minecraft/server/packs/repository/Pack;)V +MD: net/minecraft/client/gui/screens/packs/PackSelectionModel$EntryBase/m_264249_ ()Ljava/lang/String; net/minecraft/client/gui/screens/packs/PackSelectionModel$EntryBase/getId ()Ljava/lang/String; +MD: net/minecraft/client/gui/screens/packs/PackSelectionModel$EntryBase/m_274458_ ()V net/minecraft/client/gui/screens/packs/PackSelectionModel$EntryBase/updateHighContrastOptionInstance ()V +MD: net/minecraft/client/gui/screens/packs/PackSelectionModel$EntryBase/m_6876_ ()Lnet/minecraft/resources/ResourceLocation; net/minecraft/client/gui/screens/packs/PackSelectionModel$EntryBase/getIconTexture ()Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/client/gui/screens/packs/PackSelectionModel$EntryBase/m_6956_ ()Ljava/util/List; net/minecraft/client/gui/screens/packs/PackSelectionModel$EntryBase/getSelfList ()Ljava/util/List; +MD: net/minecraft/client/gui/screens/packs/PackSelectionModel$EntryBase/m_6958_ ()Ljava/util/List; net/minecraft/client/gui/screens/packs/PackSelectionModel$EntryBase/getOtherList ()Ljava/util/List; +MD: net/minecraft/client/gui/screens/packs/PackSelectionModel$EntryBase/m_7356_ ()Lnet/minecraft/network/chat/Component; net/minecraft/client/gui/screens/packs/PackSelectionModel$EntryBase/getTitle ()Lnet/minecraft/network/chat/Component; +MD: net/minecraft/client/gui/screens/packs/PackSelectionModel$EntryBase/m_7359_ ()Lnet/minecraft/network/chat/Component; net/minecraft/client/gui/screens/packs/PackSelectionModel$EntryBase/getDescription ()Lnet/minecraft/network/chat/Component; +MD: net/minecraft/client/gui/screens/packs/PackSelectionModel$EntryBase/m_7485_ ()Lnet/minecraft/server/packs/repository/PackSource; net/minecraft/client/gui/screens/packs/PackSelectionModel$EntryBase/getPackSource ()Lnet/minecraft/server/packs/repository/PackSource; +MD: net/minecraft/client/gui/screens/packs/PackSelectionModel$EntryBase/m_7709_ ()Lnet/minecraft/server/packs/repository/PackCompatibility; net/minecraft/client/gui/screens/packs/PackSelectionModel$EntryBase/getCompatibility ()Lnet/minecraft/server/packs/repository/PackCompatibility; +MD: net/minecraft/client/gui/screens/packs/PackSelectionModel$EntryBase/m_7802_ ()Z net/minecraft/client/gui/screens/packs/PackSelectionModel$EntryBase/canMoveUp ()Z +MD: net/minecraft/client/gui/screens/packs/PackSelectionModel$EntryBase/m_7803_ ()Z net/minecraft/client/gui/screens/packs/PackSelectionModel$EntryBase/canMoveDown ()Z +MD: net/minecraft/client/gui/screens/packs/PackSelectionModel$EntryBase/m_7844_ ()Z net/minecraft/client/gui/screens/packs/PackSelectionModel$EntryBase/isRequired ()Z +MD: net/minecraft/client/gui/screens/packs/PackSelectionModel$EntryBase/m_7845_ ()V net/minecraft/client/gui/screens/packs/PackSelectionModel$EntryBase/moveDown ()V +MD: net/minecraft/client/gui/screens/packs/PackSelectionModel$EntryBase/m_7852_ ()V net/minecraft/client/gui/screens/packs/PackSelectionModel$EntryBase/moveUp ()V +MD: net/minecraft/client/gui/screens/packs/PackSelectionModel$EntryBase/m_7867_ ()Z net/minecraft/client/gui/screens/packs/PackSelectionModel$EntryBase/isFixedPosition ()Z +MD: net/minecraft/client/gui/screens/packs/PackSelectionModel$EntryBase/m_99938_ (I)V net/minecraft/client/gui/screens/packs/PackSelectionModel$EntryBase/move (I)V +MD: net/minecraft/client/gui/screens/packs/PackSelectionModel$EntryBase/m_99950_ ()V net/minecraft/client/gui/screens/packs/PackSelectionModel$EntryBase/toggleSelection ()V +MD: net/minecraft/client/gui/screens/packs/PackSelectionModel$SelectedPackEntry/ (Lnet/minecraft/client/gui/screens/packs/PackSelectionModel;Lnet/minecraft/server/packs/repository/Pack;)V net/minecraft/client/gui/screens/packs/PackSelectionModel$SelectedPackEntry/ (Lnet/minecraft/client/gui/screens/packs/PackSelectionModel;Lnet/minecraft/server/packs/repository/Pack;)V +MD: net/minecraft/client/gui/screens/packs/PackSelectionModel$SelectedPackEntry/m_6956_ ()Ljava/util/List; net/minecraft/client/gui/screens/packs/PackSelectionModel$SelectedPackEntry/getSelfList ()Ljava/util/List; +MD: net/minecraft/client/gui/screens/packs/PackSelectionModel$SelectedPackEntry/m_6958_ ()Ljava/util/List; net/minecraft/client/gui/screens/packs/PackSelectionModel$SelectedPackEntry/getOtherList ()Ljava/util/List; +MD: net/minecraft/client/gui/screens/packs/PackSelectionModel$SelectedPackEntry/m_7849_ ()V net/minecraft/client/gui/screens/packs/PackSelectionModel$SelectedPackEntry/select ()V +MD: net/minecraft/client/gui/screens/packs/PackSelectionModel$SelectedPackEntry/m_7850_ ()V net/minecraft/client/gui/screens/packs/PackSelectionModel$SelectedPackEntry/unselect ()V +MD: net/minecraft/client/gui/screens/packs/PackSelectionModel$SelectedPackEntry/m_7857_ ()Z net/minecraft/client/gui/screens/packs/PackSelectionModel$SelectedPackEntry/isSelected ()Z +MD: net/minecraft/client/gui/screens/packs/PackSelectionModel$UnselectedPackEntry/ (Lnet/minecraft/client/gui/screens/packs/PackSelectionModel;Lnet/minecraft/server/packs/repository/Pack;)V net/minecraft/client/gui/screens/packs/PackSelectionModel$UnselectedPackEntry/ (Lnet/minecraft/client/gui/screens/packs/PackSelectionModel;Lnet/minecraft/server/packs/repository/Pack;)V +MD: net/minecraft/client/gui/screens/packs/PackSelectionModel$UnselectedPackEntry/m_6956_ ()Ljava/util/List; net/minecraft/client/gui/screens/packs/PackSelectionModel$UnselectedPackEntry/getSelfList ()Ljava/util/List; +MD: net/minecraft/client/gui/screens/packs/PackSelectionModel$UnselectedPackEntry/m_6958_ ()Ljava/util/List; net/minecraft/client/gui/screens/packs/PackSelectionModel$UnselectedPackEntry/getOtherList ()Ljava/util/List; +MD: net/minecraft/client/gui/screens/packs/PackSelectionModel$UnselectedPackEntry/m_7849_ ()V net/minecraft/client/gui/screens/packs/PackSelectionModel$UnselectedPackEntry/select ()V +MD: net/minecraft/client/gui/screens/packs/PackSelectionModel$UnselectedPackEntry/m_7850_ ()V net/minecraft/client/gui/screens/packs/PackSelectionModel$UnselectedPackEntry/unselect ()V +MD: net/minecraft/client/gui/screens/packs/PackSelectionModel$UnselectedPackEntry/m_7857_ ()Z net/minecraft/client/gui/screens/packs/PackSelectionModel$UnselectedPackEntry/isSelected ()Z +MD: net/minecraft/client/gui/screens/packs/PackSelectionScreen/ ()V net/minecraft/client/gui/screens/packs/PackSelectionScreen/ ()V +MD: net/minecraft/client/gui/screens/packs/PackSelectionScreen/ (Lnet/minecraft/server/packs/repository/PackRepository;Ljava/util/function/Consumer;Ljava/nio/file/Path;Lnet/minecraft/network/chat/Component;)V net/minecraft/client/gui/screens/packs/PackSelectionScreen/ (Lnet/minecraft/server/packs/repository/PackRepository;Ljava/util/function/Consumer;Ljava/nio/file/Path;Lnet/minecraft/network/chat/Component;)V +MD: net/minecraft/client/gui/screens/packs/PackSelectionScreen/m_100013_ (Lnet/minecraft/client/gui/screens/packs/TransferableSelectionList;Ljava/util/stream/Stream;)V net/minecraft/client/gui/screens/packs/PackSelectionScreen/updateList (Lnet/minecraft/client/gui/screens/packs/TransferableSelectionList;Ljava/util/stream/Stream;)V +MD: net/minecraft/client/gui/screens/packs/PackSelectionScreen/m_100016_ (Lnet/minecraft/client/renderer/texture/TextureManager;Lnet/minecraft/server/packs/repository/Pack;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/client/gui/screens/packs/PackSelectionScreen/loadPackIcon (Lnet/minecraft/client/renderer/texture/TextureManager;Lnet/minecraft/server/packs/repository/Pack;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/client/gui/screens/packs/PackSelectionScreen/m_100035_ (Lnet/minecraft/client/gui/components/Button;)V net/minecraft/client/gui/screens/packs/PackSelectionScreen/lambda$init$1 (Lnet/minecraft/client/gui/components/Button;)V +MD: net/minecraft/client/gui/screens/packs/PackSelectionScreen/m_100039_ ()V net/minecraft/client/gui/screens/packs/PackSelectionScreen/closeWatcher ()V +MD: net/minecraft/client/gui/screens/packs/PackSelectionScreen/m_100040_ ()V net/minecraft/client/gui/screens/packs/PackSelectionScreen/populateLists ()V +MD: net/minecraft/client/gui/screens/packs/PackSelectionScreen/m_100041_ ()V net/minecraft/client/gui/screens/packs/PackSelectionScreen/reload ()V +MD: net/minecraft/client/gui/screens/packs/PackSelectionScreen/m_170001_ (Ljava/nio/file/Path;Ljava/nio/file/Path;Lorg/apache/commons/lang3/mutable/MutableBoolean;Ljava/nio/file/Path;)V net/minecraft/client/gui/screens/packs/PackSelectionScreen/lambda$copyPacks$3 (Ljava/nio/file/Path;Ljava/nio/file/Path;Lorg/apache/commons/lang3/mutable/MutableBoolean;Ljava/nio/file/Path;)V +MD: net/minecraft/client/gui/screens/packs/PackSelectionScreen/m_170006_ (Ljava/nio/file/Path;Lorg/apache/commons/lang3/mutable/MutableBoolean;Ljava/nio/file/Path;)V net/minecraft/client/gui/screens/packs/PackSelectionScreen/lambda$copyPacks$4 (Ljava/nio/file/Path;Lorg/apache/commons/lang3/mutable/MutableBoolean;Ljava/nio/file/Path;)V +MD: net/minecraft/client/gui/screens/packs/PackSelectionScreen/m_244670_ (Lnet/minecraft/client/gui/components/Button;)V net/minecraft/client/gui/screens/packs/PackSelectionScreen/lambda$init$0 (Lnet/minecraft/client/gui/components/Button;)V +MD: net/minecraft/client/gui/screens/packs/PackSelectionScreen/m_264285_ (Lnet/minecraft/client/gui/screens/packs/TransferableSelectionList;)V net/minecraft/client/gui/screens/packs/PackSelectionScreen/updateFocus (Lnet/minecraft/client/gui/screens/packs/TransferableSelectionList;)V +MD: net/minecraft/client/gui/screens/packs/PackSelectionScreen/m_264462_ ()V net/minecraft/client/gui/screens/packs/PackSelectionScreen/clearSelected ()V +MD: net/minecraft/client/gui/screens/packs/PackSelectionScreen/m_279829_ (Lnet/minecraft/client/gui/screens/packs/TransferableSelectionList;Ljava/lang/String;Lnet/minecraft/client/gui/screens/packs/PackSelectionModel$Entry;)V net/minecraft/client/gui/screens/packs/PackSelectionScreen/lambda$updateList$2 (Lnet/minecraft/client/gui/screens/packs/TransferableSelectionList;Ljava/lang/String;Lnet/minecraft/client/gui/screens/packs/PackSelectionModel$Entry;)V +MD: net/minecraft/client/gui/screens/packs/PackSelectionScreen/m_279830_ (Ljava/util/List;Z)V net/minecraft/client/gui/screens/packs/PackSelectionScreen/lambda$onFilesDrop$5 (Ljava/util/List;Z)V +MD: net/minecraft/client/gui/screens/packs/PackSelectionScreen/m_279831_ (Lnet/minecraft/server/packs/repository/Pack;Ljava/lang/String;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/client/gui/screens/packs/PackSelectionScreen/lambda$getPackIcon$6 (Lnet/minecraft/server/packs/repository/Pack;Ljava/lang/String;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/client/gui/screens/packs/PackSelectionScreen/m_7379_ ()V net/minecraft/client/gui/screens/packs/PackSelectionScreen/onClose ()V +MD: net/minecraft/client/gui/screens/packs/PackSelectionScreen/m_7400_ (Ljava/util/List;)V net/minecraft/client/gui/screens/packs/PackSelectionScreen/onFilesDrop (Ljava/util/List;)V +MD: net/minecraft/client/gui/screens/packs/PackSelectionScreen/m_7856_ ()V net/minecraft/client/gui/screens/packs/PackSelectionScreen/init ()V +MD: net/minecraft/client/gui/screens/packs/PackSelectionScreen/m_86600_ ()V net/minecraft/client/gui/screens/packs/PackSelectionScreen/tick ()V +MD: net/minecraft/client/gui/screens/packs/PackSelectionScreen/m_88315_ (Lnet/minecraft/client/gui/GuiGraphics;IIF)V net/minecraft/client/gui/screens/packs/PackSelectionScreen/render (Lnet/minecraft/client/gui/GuiGraphics;IIF)V +MD: net/minecraft/client/gui/screens/packs/PackSelectionScreen/m_99989_ (Lnet/minecraft/server/packs/repository/Pack;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/client/gui/screens/packs/PackSelectionScreen/getPackIcon (Lnet/minecraft/server/packs/repository/Pack;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/client/gui/screens/packs/PackSelectionScreen/m_99999_ (Lnet/minecraft/client/Minecraft;Ljava/util/List;Ljava/nio/file/Path;)V net/minecraft/client/gui/screens/packs/PackSelectionScreen/copyPacks (Lnet/minecraft/client/Minecraft;Ljava/util/List;Ljava/nio/file/Path;)V +MD: net/minecraft/client/gui/screens/packs/PackSelectionScreen$Watcher/ (Ljava/nio/file/Path;)V net/minecraft/client/gui/screens/packs/PackSelectionScreen$Watcher/ (Ljava/nio/file/Path;)V +MD: net/minecraft/client/gui/screens/packs/PackSelectionScreen$Watcher/close ()V net/minecraft/client/gui/screens/packs/PackSelectionScreen$Watcher/close ()V +MD: net/minecraft/client/gui/screens/packs/PackSelectionScreen$Watcher/m_100046_ ()Z net/minecraft/client/gui/screens/packs/PackSelectionScreen$Watcher/pollForChanges ()Z +MD: net/minecraft/client/gui/screens/packs/PackSelectionScreen$Watcher/m_100049_ (Ljava/nio/file/Path;)V net/minecraft/client/gui/screens/packs/PackSelectionScreen$Watcher/watchDir (Ljava/nio/file/Path;)V +MD: net/minecraft/client/gui/screens/packs/PackSelectionScreen$Watcher/m_245748_ (Ljava/nio/file/Path;)Lnet/minecraft/client/gui/screens/packs/PackSelectionScreen$Watcher; net/minecraft/client/gui/screens/packs/PackSelectionScreen$Watcher/create (Ljava/nio/file/Path;)Lnet/minecraft/client/gui/screens/packs/PackSelectionScreen$Watcher; +MD: net/minecraft/client/gui/screens/packs/TransferableSelectionList/ ()V net/minecraft/client/gui/screens/packs/TransferableSelectionList/ ()V +MD: net/minecraft/client/gui/screens/packs/TransferableSelectionList/ (Lnet/minecraft/client/Minecraft;Lnet/minecraft/client/gui/screens/packs/PackSelectionScreen;IILnet/minecraft/network/chat/Component;)V net/minecraft/client/gui/screens/packs/TransferableSelectionList/ (Lnet/minecraft/client/Minecraft;Lnet/minecraft/client/gui/screens/packs/PackSelectionScreen;IILnet/minecraft/network/chat/Component;)V +MD: net/minecraft/client/gui/screens/packs/TransferableSelectionList/m_170023_ (Lnet/minecraft/client/gui/screens/packs/TransferableSelectionList;I)I net/minecraft/client/gui/screens/packs/TransferableSelectionList/access$000 (Lnet/minecraft/client/gui/screens/packs/TransferableSelectionList;I)I +MD: net/minecraft/client/gui/screens/packs/TransferableSelectionList/m_5756_ ()I net/minecraft/client/gui/screens/packs/TransferableSelectionList/getScrollbarPosition ()I +MD: net/minecraft/client/gui/screens/packs/TransferableSelectionList/m_5759_ ()I net/minecraft/client/gui/screens/packs/TransferableSelectionList/getRowWidth ()I +MD: net/minecraft/client/gui/screens/packs/TransferableSelectionList/m_7415_ (Lnet/minecraft/client/gui/GuiGraphics;II)V net/minecraft/client/gui/screens/packs/TransferableSelectionList/renderHeader (Lnet/minecraft/client/gui/GuiGraphics;II)V +MD: net/minecraft/client/gui/screens/packs/TransferableSelectionList/m_7933_ (III)Z net/minecraft/client/gui/screens/packs/TransferableSelectionList/keyPressed (III)Z +MD: net/minecraft/client/gui/screens/packs/TransferableSelectionList$PackEntry/ (Lnet/minecraft/client/Minecraft;Lnet/minecraft/client/gui/screens/packs/TransferableSelectionList;Lnet/minecraft/client/gui/screens/packs/PackSelectionModel$Entry;)V net/minecraft/client/gui/screens/packs/TransferableSelectionList$PackEntry/ (Lnet/minecraft/client/Minecraft;Lnet/minecraft/client/gui/screens/packs/TransferableSelectionList;Lnet/minecraft/client/gui/screens/packs/PackSelectionModel$Entry;)V +MD: net/minecraft/client/gui/screens/packs/TransferableSelectionList$PackEntry/m_100088_ ()Z net/minecraft/client/gui/screens/packs/TransferableSelectionList$PackEntry/showHoverOverlay ()Z +MD: net/minecraft/client/gui/screens/packs/TransferableSelectionList$PackEntry/m_100104_ (Lnet/minecraft/client/Minecraft;Lnet/minecraft/network/chat/Component;)Lnet/minecraft/util/FormattedCharSequence; net/minecraft/client/gui/screens/packs/TransferableSelectionList$PackEntry/cacheName (Lnet/minecraft/client/Minecraft;Lnet/minecraft/network/chat/Component;)Lnet/minecraft/util/FormattedCharSequence; +MD: net/minecraft/client/gui/screens/packs/TransferableSelectionList$PackEntry/m_100109_ (Lnet/minecraft/client/Minecraft;Lnet/minecraft/network/chat/Component;)Lnet/minecraft/client/gui/components/MultiLineLabel; net/minecraft/client/gui/screens/packs/TransferableSelectionList$PackEntry/cacheDescription (Lnet/minecraft/client/Minecraft;Lnet/minecraft/network/chat/Component;)Lnet/minecraft/client/gui/components/MultiLineLabel; +MD: net/minecraft/client/gui/screens/packs/TransferableSelectionList$PackEntry/m_142172_ ()Lnet/minecraft/network/chat/Component; net/minecraft/client/gui/screens/packs/TransferableSelectionList$PackEntry/getNarration ()Lnet/minecraft/network/chat/Component; +MD: net/minecraft/client/gui/screens/packs/TransferableSelectionList$PackEntry/m_263880_ (Z)V net/minecraft/client/gui/screens/packs/TransferableSelectionList$PackEntry/lambda$handlePackSelection$0 (Z)V +MD: net/minecraft/client/gui/screens/packs/TransferableSelectionList$PackEntry/m_264048_ ()V net/minecraft/client/gui/screens/packs/TransferableSelectionList$PackEntry/keyboardMoveUp ()V +MD: net/minecraft/client/gui/screens/packs/TransferableSelectionList$PackEntry/m_264233_ ()V net/minecraft/client/gui/screens/packs/TransferableSelectionList$PackEntry/keyboardSelection ()V +MD: net/minecraft/client/gui/screens/packs/TransferableSelectionList$PackEntry/m_264411_ ()Ljava/lang/String; net/minecraft/client/gui/screens/packs/TransferableSelectionList$PackEntry/getPackId ()Ljava/lang/String; +MD: net/minecraft/client/gui/screens/packs/TransferableSelectionList$PackEntry/m_264565_ ()V net/minecraft/client/gui/screens/packs/TransferableSelectionList$PackEntry/keyboardMoveDown ()V +MD: net/minecraft/client/gui/screens/packs/TransferableSelectionList$PackEntry/m_266298_ ()Z net/minecraft/client/gui/screens/packs/TransferableSelectionList$PackEntry/handlePackSelection ()Z +MD: net/minecraft/client/gui/screens/packs/TransferableSelectionList$PackEntry/m_6311_ (Lnet/minecraft/client/gui/GuiGraphics;IIIIIIIZF)V net/minecraft/client/gui/screens/packs/TransferableSelectionList$PackEntry/render (Lnet/minecraft/client/gui/GuiGraphics;IIIIIIIZF)V +MD: net/minecraft/client/gui/screens/packs/TransferableSelectionList$PackEntry/m_6375_ (DDI)Z net/minecraft/client/gui/screens/packs/TransferableSelectionList$PackEntry/mouseClicked (DDI)Z +MD: net/minecraft/client/gui/screens/recipebook/AbstractFurnaceRecipeBookComponent/ ()V net/minecraft/client/gui/screens/recipebook/AbstractFurnaceRecipeBookComponent/ ()V +MD: net/minecraft/client/gui/screens/recipebook/AbstractFurnaceRecipeBookComponent/m_279832_ (Lnet/minecraft/world/item/Item;)Z net/minecraft/client/gui/screens/recipebook/AbstractFurnaceRecipeBookComponent/lambda$setupGhostRecipe$0 (Lnet/minecraft/world/item/Item;)Z +MD: net/minecraft/client/gui/screens/recipebook/AbstractFurnaceRecipeBookComponent/m_5674_ ()V net/minecraft/client/gui/screens/recipebook/AbstractFurnaceRecipeBookComponent/initFilterButtonTextures ()V +MD: net/minecraft/client/gui/screens/recipebook/AbstractFurnaceRecipeBookComponent/m_6904_ (Lnet/minecraft/world/inventory/Slot;)V net/minecraft/client/gui/screens/recipebook/AbstractFurnaceRecipeBookComponent/slotClicked (Lnet/minecraft/world/inventory/Slot;)V +MD: net/minecraft/client/gui/screens/recipebook/AbstractFurnaceRecipeBookComponent/m_7173_ (Lnet/minecraft/world/item/crafting/Recipe;Ljava/util/List;)V net/minecraft/client/gui/screens/recipebook/AbstractFurnaceRecipeBookComponent/setupGhostRecipe (Lnet/minecraft/world/item/crafting/Recipe;Ljava/util/List;)V +MD: net/minecraft/client/gui/screens/recipebook/AbstractFurnaceRecipeBookComponent/m_7690_ ()Ljava/util/Set; net/minecraft/client/gui/screens/recipebook/AbstractFurnaceRecipeBookComponent/getFuelItems ()Ljava/util/Set; +MD: net/minecraft/client/gui/screens/recipebook/BlastingRecipeBookComponent/ ()V net/minecraft/client/gui/screens/recipebook/BlastingRecipeBookComponent/ ()V +MD: net/minecraft/client/gui/screens/recipebook/BlastingRecipeBookComponent/ ()V net/minecraft/client/gui/screens/recipebook/BlastingRecipeBookComponent/ ()V +MD: net/minecraft/client/gui/screens/recipebook/BlastingRecipeBookComponent/m_5815_ ()Lnet/minecraft/network/chat/Component; net/minecraft/client/gui/screens/recipebook/BlastingRecipeBookComponent/getRecipeFilterName ()Lnet/minecraft/network/chat/Component; +MD: net/minecraft/client/gui/screens/recipebook/BlastingRecipeBookComponent/m_7690_ ()Ljava/util/Set; net/minecraft/client/gui/screens/recipebook/BlastingRecipeBookComponent/getFuelItems ()Ljava/util/Set; +MD: net/minecraft/client/gui/screens/recipebook/GhostRecipe/ ()V net/minecraft/client/gui/screens/recipebook/GhostRecipe/ ()V +MD: net/minecraft/client/gui/screens/recipebook/GhostRecipe/m_100140_ ()V net/minecraft/client/gui/screens/recipebook/GhostRecipe/clear ()V +MD: net/minecraft/client/gui/screens/recipebook/GhostRecipe/m_100141_ (I)Lnet/minecraft/client/gui/screens/recipebook/GhostRecipe$GhostIngredient; net/minecraft/client/gui/screens/recipebook/GhostRecipe/get (I)Lnet/minecraft/client/gui/screens/recipebook/GhostRecipe$GhostIngredient; +MD: net/minecraft/client/gui/screens/recipebook/GhostRecipe/m_100143_ (Lnet/minecraft/world/item/crafting/Ingredient;II)V net/minecraft/client/gui/screens/recipebook/GhostRecipe/addIngredient (Lnet/minecraft/world/item/crafting/Ingredient;II)V +MD: net/minecraft/client/gui/screens/recipebook/GhostRecipe/m_100147_ (Lnet/minecraft/world/item/crafting/Recipe;)V net/minecraft/client/gui/screens/recipebook/GhostRecipe/setRecipe (Lnet/minecraft/world/item/crafting/Recipe;)V +MD: net/minecraft/client/gui/screens/recipebook/GhostRecipe/m_100158_ ()I net/minecraft/client/gui/screens/recipebook/GhostRecipe/size ()I +MD: net/minecraft/client/gui/screens/recipebook/GhostRecipe/m_100159_ ()Lnet/minecraft/world/item/crafting/Recipe; net/minecraft/client/gui/screens/recipebook/GhostRecipe/getRecipe ()Lnet/minecraft/world/item/crafting/Recipe; +MD: net/minecraft/client/gui/screens/recipebook/GhostRecipe/m_280269_ (Lnet/minecraft/client/gui/GuiGraphics;Lnet/minecraft/client/Minecraft;IIZF)V net/minecraft/client/gui/screens/recipebook/GhostRecipe/render (Lnet/minecraft/client/gui/GuiGraphics;Lnet/minecraft/client/Minecraft;IIZF)V +MD: net/minecraft/client/gui/screens/recipebook/GhostRecipe$GhostIngredient/ (Lnet/minecraft/client/gui/screens/recipebook/GhostRecipe;Lnet/minecraft/world/item/crafting/Ingredient;II)V net/minecraft/client/gui/screens/recipebook/GhostRecipe$GhostIngredient/ (Lnet/minecraft/client/gui/screens/recipebook/GhostRecipe;Lnet/minecraft/world/item/crafting/Ingredient;II)V +MD: net/minecraft/client/gui/screens/recipebook/GhostRecipe$GhostIngredient/m_100169_ ()I net/minecraft/client/gui/screens/recipebook/GhostRecipe$GhostIngredient/getX ()I +MD: net/minecraft/client/gui/screens/recipebook/GhostRecipe$GhostIngredient/m_100170_ ()I net/minecraft/client/gui/screens/recipebook/GhostRecipe$GhostIngredient/getY ()I +MD: net/minecraft/client/gui/screens/recipebook/GhostRecipe$GhostIngredient/m_100171_ ()Lnet/minecraft/world/item/ItemStack; net/minecraft/client/gui/screens/recipebook/GhostRecipe$GhostIngredient/getItem ()Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/client/gui/screens/recipebook/OverlayRecipeComponent/ ()V net/minecraft/client/gui/screens/recipebook/OverlayRecipeComponent/ ()V +MD: net/minecraft/client/gui/screens/recipebook/OverlayRecipeComponent/ ()V net/minecraft/client/gui/screens/recipebook/OverlayRecipeComponent/ ()V +MD: net/minecraft/client/gui/screens/recipebook/OverlayRecipeComponent/m_100184_ ()Lnet/minecraft/client/gui/screens/recipebook/RecipeCollection; net/minecraft/client/gui/screens/recipebook/OverlayRecipeComponent/getRecipeCollection ()Lnet/minecraft/client/gui/screens/recipebook/RecipeCollection; +MD: net/minecraft/client/gui/screens/recipebook/OverlayRecipeComponent/m_100194_ (Lnet/minecraft/client/Minecraft;Lnet/minecraft/client/gui/screens/recipebook/RecipeCollection;IIIIF)V net/minecraft/client/gui/screens/recipebook/OverlayRecipeComponent/init (Lnet/minecraft/client/Minecraft;Lnet/minecraft/client/gui/screens/recipebook/RecipeCollection;IIIIF)V +MD: net/minecraft/client/gui/screens/recipebook/OverlayRecipeComponent/m_100204_ (Z)V net/minecraft/client/gui/screens/recipebook/OverlayRecipeComponent/setVisible (Z)V +MD: net/minecraft/client/gui/screens/recipebook/OverlayRecipeComponent/m_100206_ ()Lnet/minecraft/world/item/crafting/Recipe; net/minecraft/client/gui/screens/recipebook/OverlayRecipeComponent/getLastRecipeClicked ()Lnet/minecraft/world/item/crafting/Recipe; +MD: net/minecraft/client/gui/screens/recipebook/OverlayRecipeComponent/m_100212_ ()Z net/minecraft/client/gui/screens/recipebook/OverlayRecipeComponent/isVisible ()Z +MD: net/minecraft/client/gui/screens/recipebook/OverlayRecipeComponent/m_5953_ (DD)Z net/minecraft/client/gui/screens/recipebook/OverlayRecipeComponent/isMouseOver (DD)Z +MD: net/minecraft/client/gui/screens/recipebook/OverlayRecipeComponent/m_6375_ (DDI)Z net/minecraft/client/gui/screens/recipebook/OverlayRecipeComponent/mouseClicked (DDI)Z +MD: net/minecraft/client/gui/screens/recipebook/OverlayRecipeComponent/m_88315_ (Lnet/minecraft/client/gui/GuiGraphics;IIF)V net/minecraft/client/gui/screens/recipebook/OverlayRecipeComponent/render (Lnet/minecraft/client/gui/GuiGraphics;IIF)V +MD: net/minecraft/client/gui/screens/recipebook/OverlayRecipeComponent/m_93692_ (Z)V net/minecraft/client/gui/screens/recipebook/OverlayRecipeComponent/setFocused (Z)V +MD: net/minecraft/client/gui/screens/recipebook/OverlayRecipeComponent/m_93696_ ()Z net/minecraft/client/gui/screens/recipebook/OverlayRecipeComponent/isFocused ()Z +MD: net/minecraft/client/gui/screens/recipebook/OverlayRecipeComponent$OverlayRecipeButton/ (Lnet/minecraft/client/gui/screens/recipebook/OverlayRecipeComponent;IILnet/minecraft/world/item/crafting/Recipe;Z)V net/minecraft/client/gui/screens/recipebook/OverlayRecipeComponent$OverlayRecipeButton/ (Lnet/minecraft/client/gui/screens/recipebook/OverlayRecipeComponent;IILnet/minecraft/world/item/crafting/Recipe;Z)V +MD: net/minecraft/client/gui/screens/recipebook/OverlayRecipeComponent$OverlayRecipeButton/m_168797_ (Lnet/minecraft/client/gui/narration/NarrationElementOutput;)V net/minecraft/client/gui/screens/recipebook/OverlayRecipeComponent$OverlayRecipeButton/updateWidgetNarration (Lnet/minecraft/client/gui/narration/NarrationElementOutput;)V +MD: net/minecraft/client/gui/screens/recipebook/OverlayRecipeComponent$OverlayRecipeButton/m_5817_ (Ljava/util/Iterator;IIII)V net/minecraft/client/gui/screens/recipebook/OverlayRecipeComponent$OverlayRecipeButton/addItemToSlot (Ljava/util/Iterator;IIII)V +MD: net/minecraft/client/gui/screens/recipebook/OverlayRecipeComponent$OverlayRecipeButton/m_6222_ (Lnet/minecraft/world/item/crafting/Recipe;)V net/minecraft/client/gui/screens/recipebook/OverlayRecipeComponent$OverlayRecipeButton/calculateIngredientsPositions (Lnet/minecraft/world/item/crafting/Recipe;)V +MD: net/minecraft/client/gui/screens/recipebook/OverlayRecipeComponent$OverlayRecipeButton/m_87963_ (Lnet/minecraft/client/gui/GuiGraphics;IIF)V net/minecraft/client/gui/screens/recipebook/OverlayRecipeComponent$OverlayRecipeButton/renderWidget (Lnet/minecraft/client/gui/GuiGraphics;IIF)V +MD: net/minecraft/client/gui/screens/recipebook/OverlayRecipeComponent$OverlayRecipeButton$Pos/ (Lnet/minecraft/client/gui/screens/recipebook/OverlayRecipeComponent$OverlayRecipeButton;II[Lnet/minecraft/world/item/ItemStack;)V net/minecraft/client/gui/screens/recipebook/OverlayRecipeComponent$OverlayRecipeButton$Pos/ (Lnet/minecraft/client/gui/screens/recipebook/OverlayRecipeComponent$OverlayRecipeButton;II[Lnet/minecraft/world/item/ItemStack;)V +MD: net/minecraft/client/gui/screens/recipebook/OverlayRecipeComponent$OverlaySmeltingRecipeButton/ (Lnet/minecraft/client/gui/screens/recipebook/OverlayRecipeComponent;IILnet/minecraft/world/item/crafting/Recipe;Z)V net/minecraft/client/gui/screens/recipebook/OverlayRecipeComponent$OverlaySmeltingRecipeButton/ (Lnet/minecraft/client/gui/screens/recipebook/OverlayRecipeComponent;IILnet/minecraft/world/item/crafting/Recipe;Z)V +MD: net/minecraft/client/gui/screens/recipebook/OverlayRecipeComponent$OverlaySmeltingRecipeButton/m_6222_ (Lnet/minecraft/world/item/crafting/Recipe;)V net/minecraft/client/gui/screens/recipebook/OverlayRecipeComponent$OverlaySmeltingRecipeButton/calculateIngredientsPositions (Lnet/minecraft/world/item/crafting/Recipe;)V +MD: net/minecraft/client/gui/screens/recipebook/RecipeBookComponent/ ()V net/minecraft/client/gui/screens/recipebook/RecipeBookComponent/ ()V +MD: net/minecraft/client/gui/screens/recipebook/RecipeBookComponent/ ()V net/minecraft/client/gui/screens/recipebook/RecipeBookComponent/ ()V +MD: net/minecraft/client/gui/screens/recipebook/RecipeBookComponent/m_100297_ (DDIIIII)Z net/minecraft/client/gui/screens/recipebook/RecipeBookComponent/hasClickedOutside (DDIIIII)Z +MD: net/minecraft/client/gui/screens/recipebook/RecipeBookComponent/m_100309_ (IILnet/minecraft/client/Minecraft;ZLnet/minecraft/world/inventory/RecipeBookMenu;)V net/minecraft/client/gui/screens/recipebook/RecipeBookComponent/init (IILnet/minecraft/client/Minecraft;ZLnet/minecraft/world/inventory/RecipeBookMenu;)V +MD: net/minecraft/client/gui/screens/recipebook/RecipeBookComponent/m_100328_ (Lnet/minecraft/client/gui/screens/recipebook/RecipeBookTabButton;)Z net/minecraft/client/gui/screens/recipebook/RecipeBookComponent/lambda$initVisuals$0 (Lnet/minecraft/client/gui/screens/recipebook/RecipeBookTabButton;)Z +MD: net/minecraft/client/gui/screens/recipebook/RecipeBookComponent/m_100330_ (Lnet/minecraft/client/gui/screens/recipebook/RecipeCollection;)Z net/minecraft/client/gui/screens/recipebook/RecipeBookComponent/lambda$updateCollections$5 (Lnet/minecraft/client/gui/screens/recipebook/RecipeCollection;)Z +MD: net/minecraft/client/gui/screens/recipebook/RecipeBookComponent/m_100332_ (Lit/unimi/dsi/fastutil/objects/ObjectSet;Lnet/minecraft/client/gui/screens/recipebook/RecipeCollection;)Z net/minecraft/client/gui/screens/recipebook/RecipeBookComponent/lambda$updateCollections$4 (Lit/unimi/dsi/fastutil/objects/ObjectSet;Lnet/minecraft/client/gui/screens/recipebook/RecipeCollection;)Z +MD: net/minecraft/client/gui/screens/recipebook/RecipeBookComponent/m_100335_ (Ljava/lang/String;)V net/minecraft/client/gui/screens/recipebook/RecipeBookComponent/pirateSpeechForThePeople (Ljava/lang/String;)V +MD: net/minecraft/client/gui/screens/recipebook/RecipeBookComponent/m_100351_ ()V net/minecraft/client/gui/screens/recipebook/RecipeBookComponent/updateTabs ()V +MD: net/minecraft/client/gui/screens/recipebook/RecipeBookComponent/m_100359_ (Lnet/minecraft/client/gui/screens/recipebook/RecipeCollection;)Z net/minecraft/client/gui/screens/recipebook/RecipeBookComponent/lambda$updateCollections$3 (Lnet/minecraft/client/gui/screens/recipebook/RecipeCollection;)Z +MD: net/minecraft/client/gui/screens/recipebook/RecipeBookComponent/m_100367_ (Lnet/minecraft/client/gui/screens/recipebook/RecipeCollection;)Z net/minecraft/client/gui/screens/recipebook/RecipeBookComponent/lambda$updateCollections$2 (Lnet/minecraft/client/gui/screens/recipebook/RecipeCollection;)Z +MD: net/minecraft/client/gui/screens/recipebook/RecipeBookComponent/m_100369_ (Z)V net/minecraft/client/gui/screens/recipebook/RecipeBookComponent/setVisible (Z)V +MD: net/minecraft/client/gui/screens/recipebook/RecipeBookComponent/m_100380_ (Lnet/minecraft/client/gui/screens/recipebook/RecipeCollection;)V net/minecraft/client/gui/screens/recipebook/RecipeBookComponent/lambda$updateCollections$1 (Lnet/minecraft/client/gui/screens/recipebook/RecipeCollection;)V +MD: net/minecraft/client/gui/screens/recipebook/RecipeBookComponent/m_100382_ (Z)V net/minecraft/client/gui/screens/recipebook/RecipeBookComponent/updateCollections (Z)V +MD: net/minecraft/client/gui/screens/recipebook/RecipeBookComponent/m_100384_ ()V net/minecraft/client/gui/screens/recipebook/RecipeBookComponent/toggleVisibility ()V +MD: net/minecraft/client/gui/screens/recipebook/RecipeBookComponent/m_100385_ ()Z net/minecraft/client/gui/screens/recipebook/RecipeBookComponent/isVisible ()Z +MD: net/minecraft/client/gui/screens/recipebook/RecipeBookComponent/m_100386_ ()V net/minecraft/client/gui/screens/recipebook/RecipeBookComponent/tick ()V +MD: net/minecraft/client/gui/screens/recipebook/RecipeBookComponent/m_100387_ ()V net/minecraft/client/gui/screens/recipebook/RecipeBookComponent/recipesUpdated ()V +MD: net/minecraft/client/gui/screens/recipebook/RecipeBookComponent/m_100388_ ()V net/minecraft/client/gui/screens/recipebook/RecipeBookComponent/sendUpdateSettings ()V +MD: net/minecraft/client/gui/screens/recipebook/RecipeBookComponent/m_100389_ ()V net/minecraft/client/gui/screens/recipebook/RecipeBookComponent/updateStackedContents ()V +MD: net/minecraft/client/gui/screens/recipebook/RecipeBookComponent/m_100391_ ()Z net/minecraft/client/gui/screens/recipebook/RecipeBookComponent/toggleFiltering ()Z +MD: net/minecraft/client/gui/screens/recipebook/RecipeBookComponent/m_100392_ ()V net/minecraft/client/gui/screens/recipebook/RecipeBookComponent/checkSearchStringUpdate ()V +MD: net/minecraft/client/gui/screens/recipebook/RecipeBookComponent/m_100393_ ()Z net/minecraft/client/gui/screens/recipebook/RecipeBookComponent/isOffsetNextToMainGUI ()Z +MD: net/minecraft/client/gui/screens/recipebook/RecipeBookComponent/m_142291_ (Lnet/minecraft/client/gui/narration/NarrationElementOutput;)V net/minecraft/client/gui/screens/recipebook/RecipeBookComponent/updateNarration (Lnet/minecraft/client/gui/narration/NarrationElementOutput;)V +MD: net/minecraft/client/gui/screens/recipebook/RecipeBookComponent/m_142684_ ()Lnet/minecraft/client/gui/narration/NarratableEntry$NarrationPriority; net/minecraft/client/gui/screens/recipebook/RecipeBookComponent/narrationPriority ()Lnet/minecraft/client/gui/narration/NarratableEntry$NarrationPriority; +MD: net/minecraft/client/gui/screens/recipebook/RecipeBookComponent/m_170047_ (Ljava/util/List;Lnet/minecraft/client/gui/components/AbstractWidget;)V net/minecraft/client/gui/screens/recipebook/RecipeBookComponent/lambda$updateNarration$6 (Ljava/util/List;Lnet/minecraft/client/gui/components/AbstractWidget;)V +MD: net/minecraft/client/gui/screens/recipebook/RecipeBookComponent/m_170050_ ()Z net/minecraft/client/gui/screens/recipebook/RecipeBookComponent/isVisibleAccordingToBookData ()Z +MD: net/minecraft/client/gui/screens/recipebook/RecipeBookComponent/m_181401_ (II)I net/minecraft/client/gui/screens/recipebook/RecipeBookComponent/updateScreenPosition (II)I +MD: net/minecraft/client/gui/screens/recipebook/RecipeBookComponent/m_181404_ ()V net/minecraft/client/gui/screens/recipebook/RecipeBookComponent/initVisuals ()V +MD: net/minecraft/client/gui/screens/recipebook/RecipeBookComponent/m_257619_ ()V net/minecraft/client/gui/screens/recipebook/RecipeBookComponent/updateFilterButtonTooltip ()V +MD: net/minecraft/client/gui/screens/recipebook/RecipeBookComponent/m_280128_ (Lnet/minecraft/client/gui/GuiGraphics;IIZF)V net/minecraft/client/gui/screens/recipebook/RecipeBookComponent/renderGhostRecipe (Lnet/minecraft/client/gui/GuiGraphics;IIZF)V +MD: net/minecraft/client/gui/screens/recipebook/RecipeBookComponent/m_280545_ (Lnet/minecraft/client/gui/GuiGraphics;IIII)V net/minecraft/client/gui/screens/recipebook/RecipeBookComponent/renderTooltip (Lnet/minecraft/client/gui/GuiGraphics;IIII)V +MD: net/minecraft/client/gui/screens/recipebook/RecipeBookComponent/m_280622_ (Lnet/minecraft/client/gui/GuiGraphics;IIII)V net/minecraft/client/gui/screens/recipebook/RecipeBookComponent/renderGhostRecipeTooltip (Lnet/minecraft/client/gui/GuiGraphics;IIII)V +MD: net/minecraft/client/gui/screens/recipebook/RecipeBookComponent/m_5534_ (CI)Z net/minecraft/client/gui/screens/recipebook/RecipeBookComponent/charTyped (CI)Z +MD: net/minecraft/client/gui/screens/recipebook/RecipeBookComponent/m_5674_ ()V net/minecraft/client/gui/screens/recipebook/RecipeBookComponent/initFilterButtonTextures ()V +MD: net/minecraft/client/gui/screens/recipebook/RecipeBookComponent/m_5815_ ()Lnet/minecraft/network/chat/Component; net/minecraft/client/gui/screens/recipebook/RecipeBookComponent/getRecipeFilterName ()Lnet/minecraft/network/chat/Component; +MD: net/minecraft/client/gui/screens/recipebook/RecipeBookComponent/m_5817_ (Ljava/util/Iterator;IIII)V net/minecraft/client/gui/screens/recipebook/RecipeBookComponent/addItemToSlot (Ljava/util/Iterator;IIII)V +MD: net/minecraft/client/gui/screens/recipebook/RecipeBookComponent/m_5953_ (DD)Z net/minecraft/client/gui/screens/recipebook/RecipeBookComponent/isMouseOver (DD)Z +MD: net/minecraft/client/gui/screens/recipebook/RecipeBookComponent/m_6375_ (DDI)Z net/minecraft/client/gui/screens/recipebook/RecipeBookComponent/mouseClicked (DDI)Z +MD: net/minecraft/client/gui/screens/recipebook/RecipeBookComponent/m_6904_ (Lnet/minecraft/world/inventory/Slot;)V net/minecraft/client/gui/screens/recipebook/RecipeBookComponent/slotClicked (Lnet/minecraft/world/inventory/Slot;)V +MD: net/minecraft/client/gui/screens/recipebook/RecipeBookComponent/m_7173_ (Lnet/minecraft/world/item/crafting/Recipe;Ljava/util/List;)V net/minecraft/client/gui/screens/recipebook/RecipeBookComponent/setupGhostRecipe (Lnet/minecraft/world/item/crafting/Recipe;Ljava/util/List;)V +MD: net/minecraft/client/gui/screens/recipebook/RecipeBookComponent/m_7262_ (Ljava/util/List;)V net/minecraft/client/gui/screens/recipebook/RecipeBookComponent/recipesShown (Ljava/util/List;)V +MD: net/minecraft/client/gui/screens/recipebook/RecipeBookComponent/m_7920_ (III)Z net/minecraft/client/gui/screens/recipebook/RecipeBookComponent/keyReleased (III)Z +MD: net/minecraft/client/gui/screens/recipebook/RecipeBookComponent/m_7933_ (III)Z net/minecraft/client/gui/screens/recipebook/RecipeBookComponent/keyPressed (III)Z +MD: net/minecraft/client/gui/screens/recipebook/RecipeBookComponent/m_88315_ (Lnet/minecraft/client/gui/GuiGraphics;IIF)V net/minecraft/client/gui/screens/recipebook/RecipeBookComponent/render (Lnet/minecraft/client/gui/GuiGraphics;IIF)V +MD: net/minecraft/client/gui/screens/recipebook/RecipeBookComponent/m_93692_ (Z)V net/minecraft/client/gui/screens/recipebook/RecipeBookComponent/setFocused (Z)V +MD: net/minecraft/client/gui/screens/recipebook/RecipeBookComponent/m_93696_ ()Z net/minecraft/client/gui/screens/recipebook/RecipeBookComponent/isFocused ()Z +MD: net/minecraft/client/gui/screens/recipebook/RecipeBookPage/ ()V net/minecraft/client/gui/screens/recipebook/RecipeBookPage/ ()V +MD: net/minecraft/client/gui/screens/recipebook/RecipeBookPage/m_100408_ ()Lnet/minecraft/world/item/crafting/Recipe; net/minecraft/client/gui/screens/recipebook/RecipeBookPage/getLastClickedRecipe ()Lnet/minecraft/world/item/crafting/Recipe; +MD: net/minecraft/client/gui/screens/recipebook/RecipeBookPage/m_100409_ (DDIIIII)Z net/minecraft/client/gui/screens/recipebook/RecipeBookPage/mouseClicked (DDIIIII)Z +MD: net/minecraft/client/gui/screens/recipebook/RecipeBookPage/m_100428_ (Lnet/minecraft/client/Minecraft;II)V net/minecraft/client/gui/screens/recipebook/RecipeBookPage/init (Lnet/minecraft/client/Minecraft;II)V +MD: net/minecraft/client/gui/screens/recipebook/RecipeBookPage/m_100432_ (Lnet/minecraft/client/gui/screens/recipebook/RecipeBookComponent;)V net/minecraft/client/gui/screens/recipebook/RecipeBookPage/addListener (Lnet/minecraft/client/gui/screens/recipebook/RecipeBookComponent;)V +MD: net/minecraft/client/gui/screens/recipebook/RecipeBookPage/m_100434_ (Ljava/util/List;)V net/minecraft/client/gui/screens/recipebook/RecipeBookPage/recipesShown (Ljava/util/List;)V +MD: net/minecraft/client/gui/screens/recipebook/RecipeBookPage/m_100436_ (Ljava/util/List;Z)V net/minecraft/client/gui/screens/recipebook/RecipeBookPage/updateCollections (Ljava/util/List;Z)V +MD: net/minecraft/client/gui/screens/recipebook/RecipeBookPage/m_100439_ ()Lnet/minecraft/client/gui/screens/recipebook/RecipeCollection; net/minecraft/client/gui/screens/recipebook/RecipeBookPage/getLastClickedRecipeCollection ()Lnet/minecraft/client/gui/screens/recipebook/RecipeCollection; +MD: net/minecraft/client/gui/screens/recipebook/RecipeBookPage/m_100440_ ()V net/minecraft/client/gui/screens/recipebook/RecipeBookPage/setInvisible ()V +MD: net/minecraft/client/gui/screens/recipebook/RecipeBookPage/m_100441_ ()Lnet/minecraft/client/Minecraft; net/minecraft/client/gui/screens/recipebook/RecipeBookPage/getMinecraft ()Lnet/minecraft/client/Minecraft; +MD: net/minecraft/client/gui/screens/recipebook/RecipeBookPage/m_100442_ ()Lnet/minecraft/stats/RecipeBook; net/minecraft/client/gui/screens/recipebook/RecipeBookPage/getRecipeBook ()Lnet/minecraft/stats/RecipeBook; +MD: net/minecraft/client/gui/screens/recipebook/RecipeBookPage/m_100443_ ()V net/minecraft/client/gui/screens/recipebook/RecipeBookPage/updateButtonsForPage ()V +MD: net/minecraft/client/gui/screens/recipebook/RecipeBookPage/m_100444_ ()V net/minecraft/client/gui/screens/recipebook/RecipeBookPage/updateArrowButtons ()V +MD: net/minecraft/client/gui/screens/recipebook/RecipeBookPage/m_170053_ (Ljava/util/function/Consumer;)V net/minecraft/client/gui/screens/recipebook/RecipeBookPage/listButtons (Ljava/util/function/Consumer;)V +MD: net/minecraft/client/gui/screens/recipebook/RecipeBookPage/m_280282_ (Lnet/minecraft/client/gui/GuiGraphics;IIIIF)V net/minecraft/client/gui/screens/recipebook/RecipeBookPage/render (Lnet/minecraft/client/gui/GuiGraphics;IIIIF)V +MD: net/minecraft/client/gui/screens/recipebook/RecipeBookPage/m_280625_ (Lnet/minecraft/client/gui/GuiGraphics;II)V net/minecraft/client/gui/screens/recipebook/RecipeBookPage/renderTooltip (Lnet/minecraft/client/gui/GuiGraphics;II)V +MD: net/minecraft/client/gui/screens/recipebook/RecipeBookTabButton/ (Lnet/minecraft/client/RecipeBookCategories;)V net/minecraft/client/gui/screens/recipebook/RecipeBookTabButton/ (Lnet/minecraft/client/RecipeBookCategories;)V +MD: net/minecraft/client/gui/screens/recipebook/RecipeBookTabButton/m_100449_ (Lnet/minecraft/client/ClientRecipeBook;)Z net/minecraft/client/gui/screens/recipebook/RecipeBookTabButton/updateVisibility (Lnet/minecraft/client/ClientRecipeBook;)Z +MD: net/minecraft/client/gui/screens/recipebook/RecipeBookTabButton/m_100451_ (Lnet/minecraft/client/Minecraft;)V net/minecraft/client/gui/screens/recipebook/RecipeBookTabButton/startAnimation (Lnet/minecraft/client/Minecraft;)V +MD: net/minecraft/client/gui/screens/recipebook/RecipeBookTabButton/m_100455_ ()Lnet/minecraft/client/RecipeBookCategories; net/minecraft/client/gui/screens/recipebook/RecipeBookTabButton/getCategory ()Lnet/minecraft/client/RecipeBookCategories; +MD: net/minecraft/client/gui/screens/recipebook/RecipeBookTabButton/m_280194_ (Lnet/minecraft/client/gui/GuiGraphics;Lnet/minecraft/client/renderer/entity/ItemRenderer;)V net/minecraft/client/gui/screens/recipebook/RecipeBookTabButton/renderIcon (Lnet/minecraft/client/gui/GuiGraphics;Lnet/minecraft/client/renderer/entity/ItemRenderer;)V +MD: net/minecraft/client/gui/screens/recipebook/RecipeBookTabButton/m_87963_ (Lnet/minecraft/client/gui/GuiGraphics;IIF)V net/minecraft/client/gui/screens/recipebook/RecipeBookTabButton/renderWidget (Lnet/minecraft/client/gui/GuiGraphics;IIF)V +MD: net/minecraft/client/gui/screens/recipebook/RecipeButton/ ()V net/minecraft/client/gui/screens/recipebook/RecipeButton/ ()V +MD: net/minecraft/client/gui/screens/recipebook/RecipeButton/ ()V net/minecraft/client/gui/screens/recipebook/RecipeButton/ ()V +MD: net/minecraft/client/gui/screens/recipebook/RecipeButton/m_100471_ ()Lnet/minecraft/client/gui/screens/recipebook/RecipeCollection; net/minecraft/client/gui/screens/recipebook/RecipeButton/getCollection ()Lnet/minecraft/client/gui/screens/recipebook/RecipeCollection; +MD: net/minecraft/client/gui/screens/recipebook/RecipeButton/m_100479_ (Lnet/minecraft/client/gui/screens/recipebook/RecipeCollection;Lnet/minecraft/client/gui/screens/recipebook/RecipeBookPage;)V net/minecraft/client/gui/screens/recipebook/RecipeButton/init (Lnet/minecraft/client/gui/screens/recipebook/RecipeCollection;Lnet/minecraft/client/gui/screens/recipebook/RecipeBookPage;)V +MD: net/minecraft/client/gui/screens/recipebook/RecipeButton/m_100482_ ()Z net/minecraft/client/gui/screens/recipebook/RecipeButton/isOnlyOption ()Z +MD: net/minecraft/client/gui/screens/recipebook/RecipeButton/m_100488_ ()Lnet/minecraft/world/item/crafting/Recipe; net/minecraft/client/gui/screens/recipebook/RecipeButton/getRecipe ()Lnet/minecraft/world/item/crafting/Recipe; +MD: net/minecraft/client/gui/screens/recipebook/RecipeButton/m_100490_ ()Ljava/util/List; net/minecraft/client/gui/screens/recipebook/RecipeButton/getOrderedRecipes ()Ljava/util/List; +MD: net/minecraft/client/gui/screens/recipebook/RecipeButton/m_168797_ (Lnet/minecraft/client/gui/narration/NarrationElementOutput;)V net/minecraft/client/gui/screens/recipebook/RecipeButton/updateWidgetNarration (Lnet/minecraft/client/gui/narration/NarrationElementOutput;)V +MD: net/minecraft/client/gui/screens/recipebook/RecipeButton/m_280187_ ()Ljava/util/List; net/minecraft/client/gui/screens/recipebook/RecipeButton/getTooltipText ()Ljava/util/List; +MD: net/minecraft/client/gui/screens/recipebook/RecipeButton/m_5711_ ()I net/minecraft/client/gui/screens/recipebook/RecipeButton/getWidth ()I +MD: net/minecraft/client/gui/screens/recipebook/RecipeButton/m_7972_ (I)Z net/minecraft/client/gui/screens/recipebook/RecipeButton/isValidClickButton (I)Z +MD: net/minecraft/client/gui/screens/recipebook/RecipeButton/m_87963_ (Lnet/minecraft/client/gui/GuiGraphics;IIF)V net/minecraft/client/gui/screens/recipebook/RecipeButton/renderWidget (Lnet/minecraft/client/gui/GuiGraphics;IIF)V +MD: net/minecraft/client/gui/screens/recipebook/RecipeCollection/ (Lnet/minecraft/core/RegistryAccess;Ljava/util/List;)V net/minecraft/client/gui/screens/recipebook/RecipeCollection/ (Lnet/minecraft/core/RegistryAccess;Ljava/util/List;)V +MD: net/minecraft/client/gui/screens/recipebook/RecipeCollection/m_100498_ ()Z net/minecraft/client/gui/screens/recipebook/RecipeCollection/hasKnownRecipes ()Z +MD: net/minecraft/client/gui/screens/recipebook/RecipeCollection/m_100499_ (Lnet/minecraft/stats/RecipeBook;)V net/minecraft/client/gui/screens/recipebook/RecipeCollection/updateKnownRecipes (Lnet/minecraft/stats/RecipeBook;)V +MD: net/minecraft/client/gui/screens/recipebook/RecipeCollection/m_100501_ (Lnet/minecraft/world/entity/player/StackedContents;IILnet/minecraft/stats/RecipeBook;)V net/minecraft/client/gui/screens/recipebook/RecipeCollection/canCraft (Lnet/minecraft/world/entity/player/StackedContents;IILnet/minecraft/stats/RecipeBook;)V +MD: net/minecraft/client/gui/screens/recipebook/RecipeCollection/m_100506_ (Lnet/minecraft/world/item/crafting/Recipe;)Z net/minecraft/client/gui/screens/recipebook/RecipeCollection/isCraftable (Lnet/minecraft/world/item/crafting/Recipe;)Z +MD: net/minecraft/client/gui/screens/recipebook/RecipeCollection/m_100508_ (Lnet/minecraft/core/RegistryAccess;Ljava/util/List;)Z net/minecraft/client/gui/screens/recipebook/RecipeCollection/allRecipesHaveSameResult (Lnet/minecraft/core/RegistryAccess;Ljava/util/List;)Z +MD: net/minecraft/client/gui/screens/recipebook/RecipeCollection/m_100510_ (Z)Ljava/util/List; net/minecraft/client/gui/screens/recipebook/RecipeCollection/getRecipes (Z)Ljava/util/List; +MD: net/minecraft/client/gui/screens/recipebook/RecipeCollection/m_100512_ ()Z net/minecraft/client/gui/screens/recipebook/RecipeCollection/hasCraftable ()Z +MD: net/minecraft/client/gui/screens/recipebook/RecipeCollection/m_100513_ (Z)Ljava/util/List; net/minecraft/client/gui/screens/recipebook/RecipeCollection/getDisplayRecipes (Z)Ljava/util/List; +MD: net/minecraft/client/gui/screens/recipebook/RecipeCollection/m_100515_ ()Z net/minecraft/client/gui/screens/recipebook/RecipeCollection/hasFitting ()Z +MD: net/minecraft/client/gui/screens/recipebook/RecipeCollection/m_100516_ ()Ljava/util/List; net/minecraft/client/gui/screens/recipebook/RecipeCollection/getRecipes ()Ljava/util/List; +MD: net/minecraft/client/gui/screens/recipebook/RecipeCollection/m_100517_ ()Z net/minecraft/client/gui/screens/recipebook/RecipeCollection/hasSingleResultItem ()Z +MD: net/minecraft/client/gui/screens/recipebook/RecipeCollection/m_266543_ ()Lnet/minecraft/core/RegistryAccess; net/minecraft/client/gui/screens/recipebook/RecipeCollection/registryAccess ()Lnet/minecraft/core/RegistryAccess; +MD: net/minecraft/client/gui/screens/recipebook/RecipeShownListener/m_7262_ (Ljava/util/List;)V net/minecraft/client/gui/screens/recipebook/RecipeShownListener/recipesShown (Ljava/util/List;)V +MD: net/minecraft/client/gui/screens/recipebook/RecipeUpdateListener/m_5564_ ()Lnet/minecraft/client/gui/screens/recipebook/RecipeBookComponent; net/minecraft/client/gui/screens/recipebook/RecipeUpdateListener/getRecipeBookComponent ()Lnet/minecraft/client/gui/screens/recipebook/RecipeBookComponent; +MD: net/minecraft/client/gui/screens/recipebook/RecipeUpdateListener/m_6916_ ()V net/minecraft/client/gui/screens/recipebook/RecipeUpdateListener/recipesUpdated ()V +MD: net/minecraft/client/gui/screens/recipebook/SmeltingRecipeBookComponent/ ()V net/minecraft/client/gui/screens/recipebook/SmeltingRecipeBookComponent/ ()V +MD: net/minecraft/client/gui/screens/recipebook/SmeltingRecipeBookComponent/ ()V net/minecraft/client/gui/screens/recipebook/SmeltingRecipeBookComponent/ ()V +MD: net/minecraft/client/gui/screens/recipebook/SmeltingRecipeBookComponent/m_5815_ ()Lnet/minecraft/network/chat/Component; net/minecraft/client/gui/screens/recipebook/SmeltingRecipeBookComponent/getRecipeFilterName ()Lnet/minecraft/network/chat/Component; +MD: net/minecraft/client/gui/screens/recipebook/SmeltingRecipeBookComponent/m_7690_ ()Ljava/util/Set; net/minecraft/client/gui/screens/recipebook/SmeltingRecipeBookComponent/getFuelItems ()Ljava/util/Set; +MD: net/minecraft/client/gui/screens/recipebook/SmokingRecipeBookComponent/ ()V net/minecraft/client/gui/screens/recipebook/SmokingRecipeBookComponent/ ()V +MD: net/minecraft/client/gui/screens/recipebook/SmokingRecipeBookComponent/ ()V net/minecraft/client/gui/screens/recipebook/SmokingRecipeBookComponent/ ()V +MD: net/minecraft/client/gui/screens/recipebook/SmokingRecipeBookComponent/m_5815_ ()Lnet/minecraft/network/chat/Component; net/minecraft/client/gui/screens/recipebook/SmokingRecipeBookComponent/getRecipeFilterName ()Lnet/minecraft/network/chat/Component; +MD: net/minecraft/client/gui/screens/recipebook/SmokingRecipeBookComponent/m_7690_ ()Ljava/util/Set; net/minecraft/client/gui/screens/recipebook/SmokingRecipeBookComponent/getFuelItems ()Ljava/util/Set; +MD: net/minecraft/client/gui/screens/reporting/ChatReportScreen/ ()V net/minecraft/client/gui/screens/reporting/ChatReportScreen/ ()V +MD: net/minecraft/client/gui/screens/reporting/ChatReportScreen/ (Lnet/minecraft/client/gui/screens/Screen;Lnet/minecraft/client/multiplayer/chat/report/ReportingContext;Ljava/util/UUID;)V net/minecraft/client/gui/screens/reporting/ChatReportScreen/ (Lnet/minecraft/client/gui/screens/Screen;Lnet/minecraft/client/multiplayer/chat/report/ReportingContext;Ljava/util/UUID;)V +MD: net/minecraft/client/gui/screens/reporting/ChatReportScreen/ (Lnet/minecraft/client/gui/screens/Screen;Lnet/minecraft/client/multiplayer/chat/report/ReportingContext;Lnet/minecraft/client/multiplayer/chat/report/ChatReportBuilder;)V net/minecraft/client/gui/screens/reporting/ChatReportScreen/ (Lnet/minecraft/client/gui/screens/Screen;Lnet/minecraft/client/multiplayer/chat/report/ReportingContext;Lnet/minecraft/client/multiplayer/chat/report/ChatReportBuilder;)V +MD: net/minecraft/client/gui/screens/reporting/ChatReportScreen/ (Lnet/minecraft/client/gui/screens/Screen;Lnet/minecraft/client/multiplayer/chat/report/ReportingContext;Lnet/minecraft/client/multiplayer/chat/report/ChatReportBuilder$ChatReport;)V net/minecraft/client/gui/screens/reporting/ChatReportScreen/ (Lnet/minecraft/client/gui/screens/Screen;Lnet/minecraft/client/multiplayer/chat/report/ReportingContext;Lnet/minecraft/client/multiplayer/chat/report/ChatReportBuilder$ChatReport;)V +MD: net/minecraft/client/gui/screens/reporting/ChatReportScreen/m_239033_ ()I net/minecraft/client/gui/screens/reporting/ChatReportScreen/contentBottom ()I +MD: net/minecraft/client/gui/screens/reporting/ChatReportScreen/m_239041_ ()V net/minecraft/client/gui/screens/reporting/ChatReportScreen/onReportChanged ()V +MD: net/minecraft/client/gui/screens/reporting/ChatReportScreen/m_239099_ ()I net/minecraft/client/gui/screens/reporting/ChatReportScreen/selectInfoTop ()I +MD: net/minecraft/client/gui/screens/reporting/ChatReportScreen/m_239146_ ()I net/minecraft/client/gui/screens/reporting/ChatReportScreen/contentRight ()I +MD: net/minecraft/client/gui/screens/reporting/ChatReportScreen/m_239320_ ()I net/minecraft/client/gui/screens/reporting/ChatReportScreen/selectChatTop ()I +MD: net/minecraft/client/gui/screens/reporting/ChatReportScreen/m_239333_ ()I net/minecraft/client/gui/screens/reporting/ChatReportScreen/completeButtonTop ()I +MD: net/minecraft/client/gui/screens/reporting/ChatReportScreen/m_239357_ ()I net/minecraft/client/gui/screens/reporting/ChatReportScreen/contentLeft ()I +MD: net/minecraft/client/gui/screens/reporting/ChatReportScreen/m_239485_ ()I net/minecraft/client/gui/screens/reporting/ChatReportScreen/commentBoxBottom ()I +MD: net/minecraft/client/gui/screens/reporting/ChatReportScreen/m_239741_ (Lnet/minecraft/client/gui/components/Button;)V net/minecraft/client/gui/screens/reporting/ChatReportScreen/lambda$init$6 (Lnet/minecraft/client/gui/components/Button;)V +MD: net/minecraft/client/gui/screens/reporting/ChatReportScreen/m_239871_ ()I net/minecraft/client/gui/screens/reporting/ChatReportScreen/contentTop ()I +MD: net/minecraft/client/gui/screens/reporting/ChatReportScreen/m_239881_ (Ljava/lang/Object;Ljava/lang/Throwable;)Ljava/lang/Object; net/minecraft/client/gui/screens/reporting/ChatReportScreen/lambda$sendReport$9 (Ljava/lang/Object;Ljava/lang/Throwable;)Ljava/lang/Object; +MD: net/minecraft/client/gui/screens/reporting/ChatReportScreen/m_239970_ (Lnet/minecraft/client/gui/components/Button;)V net/minecraft/client/gui/screens/reporting/ChatReportScreen/lambda$init$5 (Lnet/minecraft/client/gui/components/Button;)V +MD: net/minecraft/client/gui/screens/reporting/ChatReportScreen/m_240000_ ()V net/minecraft/client/gui/screens/reporting/ChatReportScreen/sendReport ()V +MD: net/minecraft/client/gui/screens/reporting/ChatReportScreen/m_240099_ ()I net/minecraft/client/gui/screens/reporting/ChatReportScreen/commentBoxTop ()I +MD: net/minecraft/client/gui/screens/reporting/ChatReportScreen/m_240265_ ()V net/minecraft/client/gui/screens/reporting/ChatReportScreen/onReportSendSuccess ()V +MD: net/minecraft/client/gui/screens/reporting/ChatReportScreen/m_240313_ (Ljava/lang/Throwable;)V net/minecraft/client/gui/screens/reporting/ChatReportScreen/onReportSendError (Ljava/lang/Throwable;)V +MD: net/minecraft/client/gui/screens/reporting/ChatReportScreen/m_242956_ (Lnet/minecraft/client/multiplayer/chat/report/ChatReportBuilder$CannotBuildReason;)V net/minecraft/client/gui/screens/reporting/ChatReportScreen/lambda$sendReport$11 (Lnet/minecraft/client/multiplayer/chat/report/ChatReportBuilder$CannotBuildReason;)V +MD: net/minecraft/client/gui/screens/reporting/ChatReportScreen/m_242964_ (Lnet/minecraft/network/chat/Component;)V net/minecraft/client/gui/screens/reporting/ChatReportScreen/displayReportSendError (Lnet/minecraft/network/chat/Component;)V +MD: net/minecraft/client/gui/screens/reporting/ChatReportScreen/m_252567_ (Lnet/minecraft/client/multiplayer/chat/report/ReportReason;)V net/minecraft/client/gui/screens/reporting/ChatReportScreen/lambda$init$2 (Lnet/minecraft/client/multiplayer/chat/report/ReportReason;)V +MD: net/minecraft/client/gui/screens/reporting/ChatReportScreen/m_252569_ (Ljava/lang/String;)V net/minecraft/client/gui/screens/reporting/ChatReportScreen/lambda$init$4 (Ljava/lang/String;)V +MD: net/minecraft/client/gui/screens/reporting/ChatReportScreen/m_252570_ (Lnet/minecraft/client/multiplayer/chat/report/ChatReportBuilder;)V net/minecraft/client/gui/screens/reporting/ChatReportScreen/lambda$init$0 (Lnet/minecraft/client/multiplayer/chat/report/ChatReportBuilder;)V +MD: net/minecraft/client/gui/screens/reporting/ChatReportScreen/m_252889_ ()V net/minecraft/client/gui/screens/reporting/ChatReportScreen/saveDraft ()V +MD: net/minecraft/client/gui/screens/reporting/ChatReportScreen/m_253119_ ()V net/minecraft/client/gui/screens/reporting/ChatReportScreen/clearDraft ()V +MD: net/minecraft/client/gui/screens/reporting/ChatReportScreen/m_257078_ (Lnet/minecraft/client/multiplayer/chat/report/ChatReportBuilder$CannotBuildReason;)Lnet/minecraft/client/gui/components/Tooltip; net/minecraft/client/gui/screens/reporting/ChatReportScreen/lambda$onReportChanged$7 (Lnet/minecraft/client/multiplayer/chat/report/ChatReportBuilder$CannotBuildReason;)Lnet/minecraft/client/gui/components/Tooltip; +MD: net/minecraft/client/gui/screens/reporting/ChatReportScreen/m_279833_ (Lnet/minecraft/client/gui/components/Button;)V net/minecraft/client/gui/screens/reporting/ChatReportScreen/lambda$init$3 (Lnet/minecraft/client/gui/components/Button;)V +MD: net/minecraft/client/gui/screens/reporting/ChatReportScreen/m_279834_ ()V net/minecraft/client/gui/screens/reporting/ChatReportScreen/lambda$onReportSendSuccess$12 ()V +MD: net/minecraft/client/gui/screens/reporting/ChatReportScreen/m_279835_ ()V net/minecraft/client/gui/screens/reporting/ChatReportScreen/lambda$displayReportSendError$13 ()V +MD: net/minecraft/client/gui/screens/reporting/ChatReportScreen/m_279836_ (Lnet/minecraft/client/gui/components/Button;)V net/minecraft/client/gui/screens/reporting/ChatReportScreen/lambda$init$1 (Lnet/minecraft/client/gui/components/Button;)V +MD: net/minecraft/client/gui/screens/reporting/ChatReportScreen/m_279837_ (Lnet/minecraft/client/multiplayer/chat/report/ChatReportBuilder$Result;)V net/minecraft/client/gui/screens/reporting/ChatReportScreen/lambda$sendReport$10 (Lnet/minecraft/client/multiplayer/chat/report/ChatReportBuilder$Result;)V +MD: net/minecraft/client/gui/screens/reporting/ChatReportScreen/m_279838_ (Ljava/util/concurrent/CompletableFuture;)V net/minecraft/client/gui/screens/reporting/ChatReportScreen/lambda$sendReport$8 (Ljava/util/concurrent/CompletableFuture;)V +MD: net/minecraft/client/gui/screens/reporting/ChatReportScreen/m_6348_ (DDI)Z net/minecraft/client/gui/screens/reporting/ChatReportScreen/mouseReleased (DDI)Z +MD: net/minecraft/client/gui/screens/reporting/ChatReportScreen/m_7379_ ()V net/minecraft/client/gui/screens/reporting/ChatReportScreen/onClose ()V +MD: net/minecraft/client/gui/screens/reporting/ChatReportScreen/m_7856_ ()V net/minecraft/client/gui/screens/reporting/ChatReportScreen/init ()V +MD: net/minecraft/client/gui/screens/reporting/ChatReportScreen/m_7861_ ()V net/minecraft/client/gui/screens/reporting/ChatReportScreen/removed ()V +MD: net/minecraft/client/gui/screens/reporting/ChatReportScreen/m_86600_ ()V net/minecraft/client/gui/screens/reporting/ChatReportScreen/tick ()V +MD: net/minecraft/client/gui/screens/reporting/ChatReportScreen/m_88315_ (Lnet/minecraft/client/gui/GuiGraphics;IIF)V net/minecraft/client/gui/screens/reporting/ChatReportScreen/render (Lnet/minecraft/client/gui/GuiGraphics;IIF)V +MD: net/minecraft/client/gui/screens/reporting/ChatReportScreen$DiscardReportWarningScreen/ ()V net/minecraft/client/gui/screens/reporting/ChatReportScreen$DiscardReportWarningScreen/ ()V +MD: net/minecraft/client/gui/screens/reporting/ChatReportScreen$DiscardReportWarningScreen/ (Lnet/minecraft/client/gui/screens/reporting/ChatReportScreen;)V net/minecraft/client/gui/screens/reporting/ChatReportScreen$DiscardReportWarningScreen/ (Lnet/minecraft/client/gui/screens/reporting/ChatReportScreen;)V +MD: net/minecraft/client/gui/screens/reporting/ChatReportScreen$DiscardReportWarningScreen/m_207212_ (I)V net/minecraft/client/gui/screens/reporting/ChatReportScreen$DiscardReportWarningScreen/initButtons (I)V +MD: net/minecraft/client/gui/screens/reporting/ChatReportScreen$DiscardReportWarningScreen/m_239524_ (Lnet/minecraft/client/gui/components/Button;)V net/minecraft/client/gui/screens/reporting/ChatReportScreen$DiscardReportWarningScreen/lambda$initButtons$0 (Lnet/minecraft/client/gui/components/Button;)V +MD: net/minecraft/client/gui/screens/reporting/ChatReportScreen$DiscardReportWarningScreen/m_279839_ (Lnet/minecraft/client/gui/components/Button;)V net/minecraft/client/gui/screens/reporting/ChatReportScreen$DiscardReportWarningScreen/lambda$initButtons$1 (Lnet/minecraft/client/gui/components/Button;)V +MD: net/minecraft/client/gui/screens/reporting/ChatReportScreen$DiscardReportWarningScreen/m_279840_ (Lnet/minecraft/client/gui/components/Button;)V net/minecraft/client/gui/screens/reporting/ChatReportScreen$DiscardReportWarningScreen/lambda$initButtons$2 (Lnet/minecraft/client/gui/components/Button;)V +MD: net/minecraft/client/gui/screens/reporting/ChatReportScreen$DiscardReportWarningScreen/m_280550_ (Lnet/minecraft/client/gui/GuiGraphics;)V net/minecraft/client/gui/screens/reporting/ChatReportScreen$DiscardReportWarningScreen/renderTitle (Lnet/minecraft/client/gui/GuiGraphics;)V +MD: net/minecraft/client/gui/screens/reporting/ChatReportScreen$DiscardReportWarningScreen/m_6913_ ()Z net/minecraft/client/gui/screens/reporting/ChatReportScreen$DiscardReportWarningScreen/shouldCloseOnEsc ()Z +MD: net/minecraft/client/gui/screens/reporting/ChatReportScreen$DiscardReportWarningScreen/m_7379_ ()V net/minecraft/client/gui/screens/reporting/ChatReportScreen$DiscardReportWarningScreen/onClose ()V +MD: net/minecraft/client/gui/screens/reporting/ChatSelectionLogFiller/ (Lnet/minecraft/client/multiplayer/chat/report/ReportingContext;Ljava/util/function/Predicate;)V net/minecraft/client/gui/screens/reporting/ChatSelectionLogFiller/ (Lnet/minecraft/client/multiplayer/chat/report/ReportingContext;Ljava/util/function/Predicate;)V +MD: net/minecraft/client/gui/screens/reporting/ChatSelectionLogFiller/m_239015_ (ILnet/minecraft/client/gui/screens/reporting/ChatSelectionLogFiller$Output;)V net/minecraft/client/gui/screens/reporting/ChatSelectionLogFiller/fillNextPage (ILnet/minecraft/client/gui/screens/reporting/ChatSelectionLogFiller$Output;)V +MD: net/minecraft/client/gui/screens/reporting/ChatSelectionLogFiller/m_253069_ (Lnet/minecraft/client/gui/screens/reporting/ChatSelectionLogFiller$Output;Lnet/minecraft/client/multiplayer/chat/LoggedChatMessage$Player;)Z net/minecraft/client/gui/screens/reporting/ChatSelectionLogFiller/acceptMessage (Lnet/minecraft/client/gui/screens/reporting/ChatSelectionLogFiller$Output;Lnet/minecraft/client/multiplayer/chat/LoggedChatMessage$Player;)Z +MD: net/minecraft/client/gui/screens/reporting/ChatSelectionLogFiller$Output/m_239556_ (Lnet/minecraft/network/chat/Component;)V net/minecraft/client/gui/screens/reporting/ChatSelectionLogFiller$Output/acceptDivider (Lnet/minecraft/network/chat/Component;)V +MD: net/minecraft/client/gui/screens/reporting/ChatSelectionLogFiller$Output/m_239761_ (ILnet/minecraft/client/multiplayer/chat/LoggedChatMessage$Player;)V net/minecraft/client/gui/screens/reporting/ChatSelectionLogFiller$Output/acceptMessage (ILnet/minecraft/client/multiplayer/chat/LoggedChatMessage$Player;)V +MD: net/minecraft/client/gui/screens/reporting/ChatSelectionScreen/ ()V net/minecraft/client/gui/screens/reporting/ChatSelectionScreen/ ()V +MD: net/minecraft/client/gui/screens/reporting/ChatSelectionScreen/ (Lnet/minecraft/client/gui/screens/Screen;Lnet/minecraft/client/multiplayer/chat/report/ReportingContext;Lnet/minecraft/client/multiplayer/chat/report/ChatReportBuilder;Ljava/util/function/Consumer;)V net/minecraft/client/gui/screens/reporting/ChatSelectionScreen/ (Lnet/minecraft/client/gui/screens/Screen;Lnet/minecraft/client/multiplayer/chat/report/ReportingContext;Lnet/minecraft/client/multiplayer/chat/report/ChatReportBuilder;Ljava/util/function/Consumer;)V +MD: net/minecraft/client/gui/screens/reporting/ChatSelectionScreen/m_142562_ ()Lnet/minecraft/network/chat/Component; net/minecraft/client/gui/screens/reporting/ChatSelectionScreen/getNarrationMessage ()Lnet/minecraft/network/chat/Component; +MD: net/minecraft/client/gui/screens/reporting/ChatSelectionScreen/m_238942_ (Lnet/minecraft/client/gui/screens/reporting/ChatSelectionScreen;)Lnet/minecraft/client/gui/Font; net/minecraft/client/gui/screens/reporting/ChatSelectionScreen/access$300 (Lnet/minecraft/client/gui/screens/reporting/ChatSelectionScreen;)Lnet/minecraft/client/gui/Font; +MD: net/minecraft/client/gui/screens/reporting/ChatSelectionScreen/m_239043_ ()V net/minecraft/client/gui/screens/reporting/ChatSelectionScreen/onReachedScrollTop ()V +MD: net/minecraft/client/gui/screens/reporting/ChatSelectionScreen/m_239184_ (Lnet/minecraft/client/gui/screens/reporting/ChatSelectionScreen;)Lnet/minecraft/client/gui/Font; net/minecraft/client/gui/screens/reporting/ChatSelectionScreen/access$700 (Lnet/minecraft/client/gui/screens/reporting/ChatSelectionScreen;)Lnet/minecraft/client/gui/Font; +MD: net/minecraft/client/gui/screens/reporting/ChatSelectionScreen/m_239237_ (Lnet/minecraft/client/gui/screens/reporting/ChatSelectionScreen;)Lnet/minecraft/client/gui/Font; net/minecraft/client/gui/screens/reporting/ChatSelectionScreen/access$000 (Lnet/minecraft/client/gui/screens/reporting/ChatSelectionScreen;)Lnet/minecraft/client/gui/Font; +MD: net/minecraft/client/gui/screens/reporting/ChatSelectionScreen/m_239465_ (Lnet/minecraft/client/gui/screens/reporting/ChatSelectionScreen;)Lnet/minecraft/client/gui/Font; net/minecraft/client/gui/screens/reporting/ChatSelectionScreen/access$200 (Lnet/minecraft/client/gui/screens/reporting/ChatSelectionScreen;)Lnet/minecraft/client/gui/Font; +MD: net/minecraft/client/gui/screens/reporting/ChatSelectionScreen/m_239478_ ()V net/minecraft/client/gui/screens/reporting/ChatSelectionScreen/extendLog ()V +MD: net/minecraft/client/gui/screens/reporting/ChatSelectionScreen/m_239506_ (Lnet/minecraft/client/gui/screens/reporting/ChatSelectionScreen;)Lnet/minecraft/client/gui/Font; net/minecraft/client/gui/screens/reporting/ChatSelectionScreen/access$900 (Lnet/minecraft/client/gui/screens/reporting/ChatSelectionScreen;)Lnet/minecraft/client/gui/Font; +MD: net/minecraft/client/gui/screens/reporting/ChatSelectionScreen/m_239590_ (Lnet/minecraft/client/gui/components/Button;)V net/minecraft/client/gui/screens/reporting/ChatSelectionScreen/lambda$init$1 (Lnet/minecraft/client/gui/components/Button;)V +MD: net/minecraft/client/gui/screens/reporting/ChatSelectionScreen/m_239634_ ()V net/minecraft/client/gui/screens/reporting/ChatSelectionScreen/updateConfirmSelectedButton ()V +MD: net/minecraft/client/gui/screens/reporting/ChatSelectionScreen/m_239654_ (Lnet/minecraft/client/gui/screens/reporting/ChatSelectionScreen;)Lnet/minecraft/client/gui/Font; net/minecraft/client/gui/screens/reporting/ChatSelectionScreen/access$1300 (Lnet/minecraft/client/gui/screens/reporting/ChatSelectionScreen;)Lnet/minecraft/client/gui/Font; +MD: net/minecraft/client/gui/screens/reporting/ChatSelectionScreen/m_239859_ (Lnet/minecraft/client/gui/components/Button;)V net/minecraft/client/gui/screens/reporting/ChatSelectionScreen/lambda$init$0 (Lnet/minecraft/client/gui/components/Button;)V +MD: net/minecraft/client/gui/screens/reporting/ChatSelectionScreen/m_239862_ (Lnet/minecraft/client/gui/screens/reporting/ChatSelectionScreen;)Lnet/minecraft/client/gui/Font; net/minecraft/client/gui/screens/reporting/ChatSelectionScreen/access$400 (Lnet/minecraft/client/gui/screens/reporting/ChatSelectionScreen;)Lnet/minecraft/client/gui/Font; +MD: net/minecraft/client/gui/screens/reporting/ChatSelectionScreen/m_239965_ (Lnet/minecraft/client/gui/screens/reporting/ChatSelectionScreen;)Lnet/minecraft/client/gui/Font; net/minecraft/client/gui/screens/reporting/ChatSelectionScreen/access$1000 (Lnet/minecraft/client/gui/screens/reporting/ChatSelectionScreen;)Lnet/minecraft/client/gui/Font; +MD: net/minecraft/client/gui/screens/reporting/ChatSelectionScreen/m_240004_ (Lnet/minecraft/client/gui/screens/reporting/ChatSelectionScreen;)Lnet/minecraft/client/gui/Font; net/minecraft/client/gui/screens/reporting/ChatSelectionScreen/access$500 (Lnet/minecraft/client/gui/screens/reporting/ChatSelectionScreen;)Lnet/minecraft/client/gui/Font; +MD: net/minecraft/client/gui/screens/reporting/ChatSelectionScreen/m_240165_ (Lnet/minecraft/client/gui/screens/reporting/ChatSelectionScreen;)Lnet/minecraft/client/gui/Font; net/minecraft/client/gui/screens/reporting/ChatSelectionScreen/access$100 (Lnet/minecraft/client/gui/screens/reporting/ChatSelectionScreen;)Lnet/minecraft/client/gui/Font; +MD: net/minecraft/client/gui/screens/reporting/ChatSelectionScreen/m_240197_ (Lnet/minecraft/client/gui/screens/reporting/ChatSelectionScreen;)Lnet/minecraft/client/gui/Font; net/minecraft/client/gui/screens/reporting/ChatSelectionScreen/access$1100 (Lnet/minecraft/client/gui/screens/reporting/ChatSelectionScreen;)Lnet/minecraft/client/gui/Font; +MD: net/minecraft/client/gui/screens/reporting/ChatSelectionScreen/m_240419_ (Lnet/minecraft/client/gui/screens/reporting/ChatSelectionScreen;)Lnet/minecraft/client/gui/Font; net/minecraft/client/gui/screens/reporting/ChatSelectionScreen/access$600 (Lnet/minecraft/client/gui/screens/reporting/ChatSelectionScreen;)Lnet/minecraft/client/gui/Font; +MD: net/minecraft/client/gui/screens/reporting/ChatSelectionScreen/m_240425_ (Lnet/minecraft/client/gui/screens/reporting/ChatSelectionScreen;)Lnet/minecraft/client/gui/Font; net/minecraft/client/gui/screens/reporting/ChatSelectionScreen/access$1200 (Lnet/minecraft/client/gui/screens/reporting/ChatSelectionScreen;)Lnet/minecraft/client/gui/Font; +MD: net/minecraft/client/gui/screens/reporting/ChatSelectionScreen/m_241847_ (Lnet/minecraft/client/multiplayer/chat/LoggedChatMessage;)Z net/minecraft/client/gui/screens/reporting/ChatSelectionScreen/canReport (Lnet/minecraft/client/multiplayer/chat/LoggedChatMessage;)Z +MD: net/minecraft/client/gui/screens/reporting/ChatSelectionScreen/m_7379_ ()V net/minecraft/client/gui/screens/reporting/ChatSelectionScreen/onClose ()V +MD: net/minecraft/client/gui/screens/reporting/ChatSelectionScreen/m_7856_ ()V net/minecraft/client/gui/screens/reporting/ChatSelectionScreen/init ()V +MD: net/minecraft/client/gui/screens/reporting/ChatSelectionScreen/m_88315_ (Lnet/minecraft/client/gui/GuiGraphics;IIF)V net/minecraft/client/gui/screens/reporting/ChatSelectionScreen/render (Lnet/minecraft/client/gui/GuiGraphics;IIF)V +MD: net/minecraft/client/gui/screens/reporting/ChatSelectionScreen$ChatSelectionList/ (Lnet/minecraft/client/gui/screens/reporting/ChatSelectionScreen;Lnet/minecraft/client/Minecraft;I)V net/minecraft/client/gui/screens/reporting/ChatSelectionScreen$ChatSelectionList/ (Lnet/minecraft/client/gui/screens/reporting/ChatSelectionScreen;Lnet/minecraft/client/Minecraft;I)V +MD: net/minecraft/client/gui/screens/reporting/ChatSelectionScreen$ChatSelectionList/m_238964_ (Lnet/minecraft/client/gui/GuiGraphics;IIFIIIII)V net/minecraft/client/gui/screens/reporting/ChatSelectionScreen$ChatSelectionList/renderItem (Lnet/minecraft/client/gui/GuiGraphics;IIFIIIII)V +MD: net/minecraft/client/gui/screens/reporting/ChatSelectionScreen$ChatSelectionList/m_239341_ ()I net/minecraft/client/gui/screens/reporting/ChatSelectionScreen$ChatSelectionList/getFooterTop ()I +MD: net/minecraft/client/gui/screens/reporting/ChatSelectionScreen$ChatSelectionList/m_239556_ (Lnet/minecraft/network/chat/Component;)V net/minecraft/client/gui/screens/reporting/ChatSelectionScreen$ChatSelectionList/acceptDivider (Lnet/minecraft/network/chat/Component;)V +MD: net/minecraft/client/gui/screens/reporting/ChatSelectionScreen$ChatSelectionList/m_239761_ (ILnet/minecraft/client/multiplayer/chat/LoggedChatMessage$Player;)V net/minecraft/client/gui/screens/reporting/ChatSelectionScreen$ChatSelectionList/acceptMessage (ILnet/minecraft/client/multiplayer/chat/LoggedChatMessage$Player;)V +MD: net/minecraft/client/gui/screens/reporting/ChatSelectionScreen$ChatSelectionList/m_239954_ ()I net/minecraft/client/gui/screens/reporting/ChatSelectionScreen$ChatSelectionList/getMaxVisibleEntries ()I +MD: net/minecraft/client/gui/screens/reporting/ChatSelectionScreen$ChatSelectionList/m_240017_ (Lnet/minecraft/client/multiplayer/chat/LoggedChatMessage$Player;Z)V net/minecraft/client/gui/screens/reporting/ChatSelectionScreen$ChatSelectionList/updateHeading (Lnet/minecraft/client/multiplayer/chat/LoggedChatMessage$Player;Z)V +MD: net/minecraft/client/gui/screens/reporting/ChatSelectionScreen$ChatSelectionList/m_240268_ (Lnet/minecraft/client/gui/screens/reporting/ChatSelectionScreen$ChatSelectionList;)Lnet/minecraft/client/Minecraft; net/minecraft/client/gui/screens/reporting/ChatSelectionScreen$ChatSelectionList/access$800 (Lnet/minecraft/client/gui/screens/reporting/ChatSelectionScreen$ChatSelectionList;)Lnet/minecraft/client/Minecraft; +MD: net/minecraft/client/gui/screens/reporting/ChatSelectionScreen$ChatSelectionList/m_240326_ (Lnet/minecraft/client/gui/screens/reporting/ChatSelectionScreen$ChatSelectionList$Entry;)Z net/minecraft/client/gui/screens/reporting/ChatSelectionScreen$ChatSelectionList/shouldHighlightEntry (Lnet/minecraft/client/gui/screens/reporting/ChatSelectionScreen$ChatSelectionList$Entry;)Z +MD: net/minecraft/client/gui/screens/reporting/ChatSelectionScreen$ChatSelectionList/m_264254_ (Lnet/minecraft/client/gui/navigation/ScreenDirection;)Lnet/minecraft/client/gui/screens/reporting/ChatSelectionScreen$ChatSelectionList$Entry; net/minecraft/client/gui/screens/reporting/ChatSelectionScreen$ChatSelectionList/nextEntry (Lnet/minecraft/client/gui/navigation/ScreenDirection;)Lnet/minecraft/client/gui/screens/reporting/ChatSelectionScreen$ChatSelectionList$Entry; +MD: net/minecraft/client/gui/screens/reporting/ChatSelectionScreen$ChatSelectionList/m_264254_ (Lnet/minecraft/client/gui/navigation/ScreenDirection;)Lnet/minecraft/client/gui/components/AbstractSelectionList$Entry; net/minecraft/client/gui/screens/reporting/ChatSelectionScreen$ChatSelectionList/nextEntry (Lnet/minecraft/client/gui/navigation/ScreenDirection;)Lnet/minecraft/client/gui/components/AbstractSelectionList$Entry; +MD: net/minecraft/client/gui/screens/reporting/ChatSelectionScreen$ChatSelectionList/m_5756_ ()I net/minecraft/client/gui/screens/reporting/ChatSelectionScreen$ChatSelectionList/getScrollbarPosition ()I +MD: net/minecraft/client/gui/screens/reporting/ChatSelectionScreen$ChatSelectionList/m_5759_ ()I net/minecraft/client/gui/screens/reporting/ChatSelectionScreen$ChatSelectionList/getRowWidth ()I +MD: net/minecraft/client/gui/screens/reporting/ChatSelectionScreen$ChatSelectionList/m_6987_ (Lnet/minecraft/client/gui/components/AbstractSelectionList$Entry;)V net/minecraft/client/gui/screens/reporting/ChatSelectionScreen$ChatSelectionList/setSelected (Lnet/minecraft/client/gui/components/AbstractSelectionList$Entry;)V +MD: net/minecraft/client/gui/screens/reporting/ChatSelectionScreen$ChatSelectionList/m_6987_ (Lnet/minecraft/client/gui/screens/reporting/ChatSelectionScreen$ChatSelectionList$Entry;)V net/minecraft/client/gui/screens/reporting/ChatSelectionScreen$ChatSelectionList/setSelected (Lnet/minecraft/client/gui/screens/reporting/ChatSelectionScreen$ChatSelectionList$Entry;)V +MD: net/minecraft/client/gui/screens/reporting/ChatSelectionScreen$ChatSelectionList/m_7933_ (III)Z net/minecraft/client/gui/screens/reporting/ChatSelectionScreen$ChatSelectionList/keyPressed (III)Z +MD: net/minecraft/client/gui/screens/reporting/ChatSelectionScreen$ChatSelectionList/m_93410_ (D)V net/minecraft/client/gui/screens/reporting/ChatSelectionScreen$ChatSelectionList/setScrollAmount (D)V +MD: net/minecraft/client/gui/screens/reporting/ChatSelectionScreen$ChatSelectionList$DividerEntry/ (Lnet/minecraft/client/gui/screens/reporting/ChatSelectionScreen$ChatSelectionList;Lnet/minecraft/network/chat/Component;)V net/minecraft/client/gui/screens/reporting/ChatSelectionScreen$ChatSelectionList$DividerEntry/ (Lnet/minecraft/client/gui/screens/reporting/ChatSelectionScreen$ChatSelectionList;Lnet/minecraft/network/chat/Component;)V +MD: net/minecraft/client/gui/screens/reporting/ChatSelectionScreen$ChatSelectionList$DividerEntry/m_142172_ ()Lnet/minecraft/network/chat/Component; net/minecraft/client/gui/screens/reporting/ChatSelectionScreen$ChatSelectionList$DividerEntry/getNarration ()Lnet/minecraft/network/chat/Component; +MD: net/minecraft/client/gui/screens/reporting/ChatSelectionScreen$ChatSelectionList$DividerEntry/m_6311_ (Lnet/minecraft/client/gui/GuiGraphics;IIIIIIIZF)V net/minecraft/client/gui/screens/reporting/ChatSelectionScreen$ChatSelectionList$DividerEntry/render (Lnet/minecraft/client/gui/GuiGraphics;IIIIIIIZF)V +MD: net/minecraft/client/gui/screens/reporting/ChatSelectionScreen$ChatSelectionList$Entry/ (Lnet/minecraft/client/gui/screens/reporting/ChatSelectionScreen$ChatSelectionList;)V net/minecraft/client/gui/screens/reporting/ChatSelectionScreen$ChatSelectionList$Entry/ (Lnet/minecraft/client/gui/screens/reporting/ChatSelectionScreen$ChatSelectionList;)V +MD: net/minecraft/client/gui/screens/reporting/ChatSelectionScreen$ChatSelectionList$Entry/m_142172_ ()Lnet/minecraft/network/chat/Component; net/minecraft/client/gui/screens/reporting/ChatSelectionScreen$ChatSelectionList$Entry/getNarration ()Lnet/minecraft/network/chat/Component; +MD: net/minecraft/client/gui/screens/reporting/ChatSelectionScreen$ChatSelectionList$Entry/m_238989_ ()Z net/minecraft/client/gui/screens/reporting/ChatSelectionScreen$ChatSelectionList$Entry/canSelect ()Z +MD: net/minecraft/client/gui/screens/reporting/ChatSelectionScreen$ChatSelectionList$Entry/m_239825_ ()Z net/minecraft/client/gui/screens/reporting/ChatSelectionScreen$ChatSelectionList$Entry/isSelected ()Z +MD: net/minecraft/client/gui/screens/reporting/ChatSelectionScreen$ChatSelectionList$Entry/m_240270_ ()Z net/minecraft/client/gui/screens/reporting/ChatSelectionScreen$ChatSelectionList$Entry/canReport ()Z +MD: net/minecraft/client/gui/screens/reporting/ChatSelectionScreen$ChatSelectionList$Heading/ (Ljava/util/UUID;Lnet/minecraft/client/gui/screens/reporting/ChatSelectionScreen$ChatSelectionList$Entry;)V net/minecraft/client/gui/screens/reporting/ChatSelectionScreen$ChatSelectionList$Heading/ (Ljava/util/UUID;Lnet/minecraft/client/gui/screens/reporting/ChatSelectionScreen$ChatSelectionList$Entry;)V +MD: net/minecraft/client/gui/screens/reporting/ChatSelectionScreen$ChatSelectionList$Heading/equals (Ljava/lang/Object;)Z net/minecraft/client/gui/screens/reporting/ChatSelectionScreen$ChatSelectionList$Heading/equals (Ljava/lang/Object;)Z +MD: net/minecraft/client/gui/screens/reporting/ChatSelectionScreen$ChatSelectionList$Heading/f_238587_ ()Ljava/util/UUID; net/minecraft/client/gui/screens/reporting/ChatSelectionScreen$ChatSelectionList$Heading/sender ()Ljava/util/UUID; +MD: net/minecraft/client/gui/screens/reporting/ChatSelectionScreen$ChatSelectionList$Heading/f_238665_ ()Lnet/minecraft/client/gui/screens/reporting/ChatSelectionScreen$ChatSelectionList$Entry; net/minecraft/client/gui/screens/reporting/ChatSelectionScreen$ChatSelectionList$Heading/entry ()Lnet/minecraft/client/gui/screens/reporting/ChatSelectionScreen$ChatSelectionList$Entry; +MD: net/minecraft/client/gui/screens/reporting/ChatSelectionScreen$ChatSelectionList$Heading/hashCode ()I net/minecraft/client/gui/screens/reporting/ChatSelectionScreen$ChatSelectionList$Heading/hashCode ()I +MD: net/minecraft/client/gui/screens/reporting/ChatSelectionScreen$ChatSelectionList$Heading/m_239747_ (Lnet/minecraft/client/gui/screens/reporting/ChatSelectionScreen$ChatSelectionList$Heading;)Z net/minecraft/client/gui/screens/reporting/ChatSelectionScreen$ChatSelectionList$Heading/canCombine (Lnet/minecraft/client/gui/screens/reporting/ChatSelectionScreen$ChatSelectionList$Heading;)Z +MD: net/minecraft/client/gui/screens/reporting/ChatSelectionScreen$ChatSelectionList$Heading/toString ()Ljava/lang/String; net/minecraft/client/gui/screens/reporting/ChatSelectionScreen$ChatSelectionList$Heading/toString ()Ljava/lang/String; +MD: net/minecraft/client/gui/screens/reporting/ChatSelectionScreen$ChatSelectionList$MessageEntry/ ()V net/minecraft/client/gui/screens/reporting/ChatSelectionScreen$ChatSelectionList$MessageEntry/ ()V +MD: net/minecraft/client/gui/screens/reporting/ChatSelectionScreen$ChatSelectionList$MessageEntry/ (Lnet/minecraft/client/gui/screens/reporting/ChatSelectionScreen$ChatSelectionList;ILnet/minecraft/network/chat/Component;Lnet/minecraft/network/chat/Component;Lnet/minecraft/client/GuiMessageTag;ZZ)V net/minecraft/client/gui/screens/reporting/ChatSelectionScreen$ChatSelectionList$MessageEntry/ (Lnet/minecraft/client/gui/screens/reporting/ChatSelectionScreen$ChatSelectionList;ILnet/minecraft/network/chat/Component;Lnet/minecraft/network/chat/Component;Lnet/minecraft/client/GuiMessageTag;ZZ)V +MD: net/minecraft/client/gui/screens/reporting/ChatSelectionScreen$ChatSelectionList$MessageEntry/m_142172_ ()Lnet/minecraft/network/chat/Component; net/minecraft/client/gui/screens/reporting/ChatSelectionScreen$ChatSelectionList$MessageEntry/getNarration ()Lnet/minecraft/network/chat/Component; +MD: net/minecraft/client/gui/screens/reporting/ChatSelectionScreen$ChatSelectionList$MessageEntry/m_238989_ ()Z net/minecraft/client/gui/screens/reporting/ChatSelectionScreen$ChatSelectionList$MessageEntry/canSelect ()Z +MD: net/minecraft/client/gui/screens/reporting/ChatSelectionScreen$ChatSelectionList$MessageEntry/m_239492_ ()I net/minecraft/client/gui/screens/reporting/ChatSelectionScreen$ChatSelectionList$MessageEntry/getTextIndent ()I +MD: net/minecraft/client/gui/screens/reporting/ChatSelectionScreen$ChatSelectionList$MessageEntry/m_239825_ ()Z net/minecraft/client/gui/screens/reporting/ChatSelectionScreen$ChatSelectionList$MessageEntry/isSelected ()Z +MD: net/minecraft/client/gui/screens/reporting/ChatSelectionScreen$ChatSelectionList$MessageEntry/m_239870_ ()I net/minecraft/client/gui/screens/reporting/ChatSelectionScreen$ChatSelectionList$MessageEntry/getMaximumTextWidth ()I +MD: net/minecraft/client/gui/screens/reporting/ChatSelectionScreen$ChatSelectionList$MessageEntry/m_240066_ ()Z net/minecraft/client/gui/screens/reporting/ChatSelectionScreen$ChatSelectionList$MessageEntry/toggleReport ()Z +MD: net/minecraft/client/gui/screens/reporting/ChatSelectionScreen$ChatSelectionList$MessageEntry/m_240270_ ()Z net/minecraft/client/gui/screens/reporting/ChatSelectionScreen$ChatSelectionList$MessageEntry/canReport ()Z +MD: net/minecraft/client/gui/screens/reporting/ChatSelectionScreen$ChatSelectionList$MessageEntry/m_240479_ (Lnet/minecraft/client/gui/GuiGraphics;IIIII)V net/minecraft/client/gui/screens/reporting/ChatSelectionScreen$ChatSelectionList$MessageEntry/renderTag (Lnet/minecraft/client/gui/GuiGraphics;IIIII)V +MD: net/minecraft/client/gui/screens/reporting/ChatSelectionScreen$ChatSelectionList$MessageEntry/m_280452_ (Lnet/minecraft/client/gui/GuiGraphics;III)V net/minecraft/client/gui/screens/reporting/ChatSelectionScreen$ChatSelectionList$MessageEntry/renderSelectedCheckmark (Lnet/minecraft/client/gui/GuiGraphics;III)V +MD: net/minecraft/client/gui/screens/reporting/ChatSelectionScreen$ChatSelectionList$MessageEntry/m_6311_ (Lnet/minecraft/client/gui/GuiGraphics;IIIIIIIZF)V net/minecraft/client/gui/screens/reporting/ChatSelectionScreen$ChatSelectionList$MessageEntry/render (Lnet/minecraft/client/gui/GuiGraphics;IIIIIIIZF)V +MD: net/minecraft/client/gui/screens/reporting/ChatSelectionScreen$ChatSelectionList$MessageEntry/m_6375_ (DDI)Z net/minecraft/client/gui/screens/reporting/ChatSelectionScreen$ChatSelectionList$MessageEntry/mouseClicked (DDI)Z +MD: net/minecraft/client/gui/screens/reporting/ChatSelectionScreen$ChatSelectionList$MessageEntry/m_7933_ (III)Z net/minecraft/client/gui/screens/reporting/ChatSelectionScreen$ChatSelectionList$MessageEntry/keyPressed (III)Z +MD: net/minecraft/client/gui/screens/reporting/ChatSelectionScreen$ChatSelectionList$MessageHeadingEntry/ (Lnet/minecraft/client/gui/screens/reporting/ChatSelectionScreen$ChatSelectionList;Lcom/mojang/authlib/GameProfile;Lnet/minecraft/network/chat/Component;Z)V net/minecraft/client/gui/screens/reporting/ChatSelectionScreen$ChatSelectionList$MessageHeadingEntry/ (Lnet/minecraft/client/gui/screens/reporting/ChatSelectionScreen$ChatSelectionList;Lcom/mojang/authlib/GameProfile;Lnet/minecraft/network/chat/Component;Z)V +MD: net/minecraft/client/gui/screens/reporting/ChatSelectionScreen$ChatSelectionList$MessageHeadingEntry/m_6311_ (Lnet/minecraft/client/gui/GuiGraphics;IIIIIIIZF)V net/minecraft/client/gui/screens/reporting/ChatSelectionScreen$ChatSelectionList$MessageHeadingEntry/render (Lnet/minecraft/client/gui/GuiGraphics;IIIIIIIZF)V +MD: net/minecraft/client/gui/screens/reporting/ChatSelectionScreen$ChatSelectionList$PaddingEntry/ (Lnet/minecraft/client/gui/screens/reporting/ChatSelectionScreen$ChatSelectionList;)V net/minecraft/client/gui/screens/reporting/ChatSelectionScreen$ChatSelectionList$PaddingEntry/ (Lnet/minecraft/client/gui/screens/reporting/ChatSelectionScreen$ChatSelectionList;)V +MD: net/minecraft/client/gui/screens/reporting/ChatSelectionScreen$ChatSelectionList$PaddingEntry/m_6311_ (Lnet/minecraft/client/gui/GuiGraphics;IIIIIIIZF)V net/minecraft/client/gui/screens/reporting/ChatSelectionScreen$ChatSelectionList$PaddingEntry/render (Lnet/minecraft/client/gui/GuiGraphics;IIIIIIIZF)V +MD: net/minecraft/client/gui/screens/reporting/ReportReasonSelectionScreen/ ()V net/minecraft/client/gui/screens/reporting/ReportReasonSelectionScreen/ ()V +MD: net/minecraft/client/gui/screens/reporting/ReportReasonSelectionScreen/ (Lnet/minecraft/client/gui/screens/Screen;Lnet/minecraft/client/multiplayer/chat/report/ReportReason;Ljava/util/function/Consumer;)V net/minecraft/client/gui/screens/reporting/ReportReasonSelectionScreen/ (Lnet/minecraft/client/gui/screens/Screen;Lnet/minecraft/client/multiplayer/chat/report/ReportReason;Ljava/util/function/Consumer;)V +MD: net/minecraft/client/gui/screens/reporting/ReportReasonSelectionScreen/m_239216_ (Lnet/minecraft/client/gui/screens/reporting/ReportReasonSelectionScreen;)Lnet/minecraft/client/gui/Font; net/minecraft/client/gui/screens/reporting/ReportReasonSelectionScreen/access$000 (Lnet/minecraft/client/gui/screens/reporting/ReportReasonSelectionScreen;)Lnet/minecraft/client/gui/Font; +MD: net/minecraft/client/gui/screens/reporting/ReportReasonSelectionScreen/m_239592_ ()I net/minecraft/client/gui/screens/reporting/ReportReasonSelectionScreen/descriptionBottom ()I +MD: net/minecraft/client/gui/screens/reporting/ReportReasonSelectionScreen/m_239650_ ()I net/minecraft/client/gui/screens/reporting/ReportReasonSelectionScreen/contentRight ()I +MD: net/minecraft/client/gui/screens/reporting/ReportReasonSelectionScreen/m_239698_ (Lnet/minecraft/client/gui/screens/reporting/ReportReasonSelectionScreen;)Lnet/minecraft/client/gui/Font; net/minecraft/client/gui/screens/reporting/ReportReasonSelectionScreen/access$100 (Lnet/minecraft/client/gui/screens/reporting/ReportReasonSelectionScreen;)Lnet/minecraft/client/gui/Font; +MD: net/minecraft/client/gui/screens/reporting/ReportReasonSelectionScreen/m_239885_ ()I net/minecraft/client/gui/screens/reporting/ReportReasonSelectionScreen/contentLeft ()I +MD: net/minecraft/client/gui/screens/reporting/ReportReasonSelectionScreen/m_239996_ ()I net/minecraft/client/gui/screens/reporting/ReportReasonSelectionScreen/descriptionTop ()I +MD: net/minecraft/client/gui/screens/reporting/ReportReasonSelectionScreen/m_240065_ ()I net/minecraft/client/gui/screens/reporting/ReportReasonSelectionScreen/buttonTop ()I +MD: net/minecraft/client/gui/screens/reporting/ReportReasonSelectionScreen/m_279841_ (Lnet/minecraft/client/gui/components/Button;)V net/minecraft/client/gui/screens/reporting/ReportReasonSelectionScreen/lambda$init$1 (Lnet/minecraft/client/gui/components/Button;)V +MD: net/minecraft/client/gui/screens/reporting/ReportReasonSelectionScreen/m_279842_ (Z)V net/minecraft/client/gui/screens/reporting/ReportReasonSelectionScreen/lambda$init$0 (Z)V +MD: net/minecraft/client/gui/screens/reporting/ReportReasonSelectionScreen/m_279843_ (Lnet/minecraft/client/gui/components/Button;)V net/minecraft/client/gui/screens/reporting/ReportReasonSelectionScreen/lambda$init$2 (Lnet/minecraft/client/gui/components/Button;)V +MD: net/minecraft/client/gui/screens/reporting/ReportReasonSelectionScreen/m_7379_ ()V net/minecraft/client/gui/screens/reporting/ReportReasonSelectionScreen/onClose ()V +MD: net/minecraft/client/gui/screens/reporting/ReportReasonSelectionScreen/m_7856_ ()V net/minecraft/client/gui/screens/reporting/ReportReasonSelectionScreen/init ()V +MD: net/minecraft/client/gui/screens/reporting/ReportReasonSelectionScreen/m_88315_ (Lnet/minecraft/client/gui/GuiGraphics;IIF)V net/minecraft/client/gui/screens/reporting/ReportReasonSelectionScreen/render (Lnet/minecraft/client/gui/GuiGraphics;IIF)V +MD: net/minecraft/client/gui/screens/reporting/ReportReasonSelectionScreen$ReasonSelectionList/ (Lnet/minecraft/client/gui/screens/reporting/ReportReasonSelectionScreen;Lnet/minecraft/client/Minecraft;)V net/minecraft/client/gui/screens/reporting/ReportReasonSelectionScreen$ReasonSelectionList/ (Lnet/minecraft/client/gui/screens/reporting/ReportReasonSelectionScreen;Lnet/minecraft/client/Minecraft;)V +MD: net/minecraft/client/gui/screens/reporting/ReportReasonSelectionScreen$ReasonSelectionList/m_239167_ (Lnet/minecraft/client/multiplayer/chat/report/ReportReason;)Lnet/minecraft/client/gui/screens/reporting/ReportReasonSelectionScreen$ReasonSelectionList$Entry; net/minecraft/client/gui/screens/reporting/ReportReasonSelectionScreen$ReasonSelectionList/findEntry (Lnet/minecraft/client/multiplayer/chat/report/ReportReason;)Lnet/minecraft/client/gui/screens/reporting/ReportReasonSelectionScreen$ReasonSelectionList$Entry; +MD: net/minecraft/client/gui/screens/reporting/ReportReasonSelectionScreen$ReasonSelectionList/m_239291_ (Lnet/minecraft/client/multiplayer/chat/report/ReportReason;Lnet/minecraft/client/gui/screens/reporting/ReportReasonSelectionScreen$ReasonSelectionList$Entry;)Z net/minecraft/client/gui/screens/reporting/ReportReasonSelectionScreen$ReasonSelectionList/lambda$findEntry$0 (Lnet/minecraft/client/multiplayer/chat/report/ReportReason;Lnet/minecraft/client/gui/screens/reporting/ReportReasonSelectionScreen$ReasonSelectionList$Entry;)Z +MD: net/minecraft/client/gui/screens/reporting/ReportReasonSelectionScreen$ReasonSelectionList/m_5756_ ()I net/minecraft/client/gui/screens/reporting/ReportReasonSelectionScreen$ReasonSelectionList/getScrollbarPosition ()I +MD: net/minecraft/client/gui/screens/reporting/ReportReasonSelectionScreen$ReasonSelectionList/m_5759_ ()I net/minecraft/client/gui/screens/reporting/ReportReasonSelectionScreen$ReasonSelectionList/getRowWidth ()I +MD: net/minecraft/client/gui/screens/reporting/ReportReasonSelectionScreen$ReasonSelectionList/m_6987_ (Lnet/minecraft/client/gui/screens/reporting/ReportReasonSelectionScreen$ReasonSelectionList$Entry;)V net/minecraft/client/gui/screens/reporting/ReportReasonSelectionScreen$ReasonSelectionList/setSelected (Lnet/minecraft/client/gui/screens/reporting/ReportReasonSelectionScreen$ReasonSelectionList$Entry;)V +MD: net/minecraft/client/gui/screens/reporting/ReportReasonSelectionScreen$ReasonSelectionList/m_6987_ (Lnet/minecraft/client/gui/components/AbstractSelectionList$Entry;)V net/minecraft/client/gui/screens/reporting/ReportReasonSelectionScreen$ReasonSelectionList/setSelected (Lnet/minecraft/client/gui/components/AbstractSelectionList$Entry;)V +MD: net/minecraft/client/gui/screens/reporting/ReportReasonSelectionScreen$ReasonSelectionList$Entry/ (Lnet/minecraft/client/gui/screens/reporting/ReportReasonSelectionScreen$ReasonSelectionList;Lnet/minecraft/client/multiplayer/chat/report/ReportReason;)V net/minecraft/client/gui/screens/reporting/ReportReasonSelectionScreen$ReasonSelectionList$Entry/ (Lnet/minecraft/client/gui/screens/reporting/ReportReasonSelectionScreen$ReasonSelectionList;Lnet/minecraft/client/multiplayer/chat/report/ReportReason;)V +MD: net/minecraft/client/gui/screens/reporting/ReportReasonSelectionScreen$ReasonSelectionList$Entry/m_142172_ ()Lnet/minecraft/network/chat/Component; net/minecraft/client/gui/screens/reporting/ReportReasonSelectionScreen$ReasonSelectionList$Entry/getNarration ()Lnet/minecraft/network/chat/Component; +MD: net/minecraft/client/gui/screens/reporting/ReportReasonSelectionScreen$ReasonSelectionList$Entry/m_239824_ ()Lnet/minecraft/client/multiplayer/chat/report/ReportReason; net/minecraft/client/gui/screens/reporting/ReportReasonSelectionScreen$ReasonSelectionList$Entry/getReason ()Lnet/minecraft/client/multiplayer/chat/report/ReportReason; +MD: net/minecraft/client/gui/screens/reporting/ReportReasonSelectionScreen$ReasonSelectionList$Entry/m_6311_ (Lnet/minecraft/client/gui/GuiGraphics;IIIIIIIZF)V net/minecraft/client/gui/screens/reporting/ReportReasonSelectionScreen$ReasonSelectionList$Entry/render (Lnet/minecraft/client/gui/GuiGraphics;IIIIIIIZF)V +MD: net/minecraft/client/gui/screens/reporting/ReportReasonSelectionScreen$ReasonSelectionList$Entry/m_6375_ (DDI)Z net/minecraft/client/gui/screens/reporting/ReportReasonSelectionScreen$ReasonSelectionList$Entry/mouseClicked (DDI)Z +MD: net/minecraft/client/gui/screens/social/PlayerEntry/ ()V net/minecraft/client/gui/screens/social/PlayerEntry/ ()V +MD: net/minecraft/client/gui/screens/social/PlayerEntry/ (Lnet/minecraft/client/Minecraft;Lnet/minecraft/client/gui/screens/social/SocialInteractionsScreen;Ljava/util/UUID;Ljava/lang/String;Ljava/util/function/Supplier;Z)V net/minecraft/client/gui/screens/social/PlayerEntry/ (Lnet/minecraft/client/Minecraft;Lnet/minecraft/client/gui/screens/social/SocialInteractionsScreen;Ljava/util/UUID;Ljava/lang/String;Ljava/util/function/Supplier;Z)V +MD: net/minecraft/client/gui/screens/social/PlayerEntry/m_100594_ (Lnet/minecraft/network/chat/MutableComponent;)Lnet/minecraft/network/chat/MutableComponent; net/minecraft/client/gui/screens/social/PlayerEntry/getEntryNarationMessage (Lnet/minecraft/network/chat/MutableComponent;)Lnet/minecraft/network/chat/MutableComponent; +MD: net/minecraft/client/gui/screens/social/PlayerEntry/m_100596_ (ZLnet/minecraft/network/chat/Component;)V net/minecraft/client/gui/screens/social/PlayerEntry/onHiddenOrShown (ZLnet/minecraft/network/chat/Component;)V +MD: net/minecraft/client/gui/screens/social/PlayerEntry/m_100600_ ()Ljava/lang/String; net/minecraft/client/gui/screens/social/PlayerEntry/getPlayerName ()Ljava/lang/String; +MD: net/minecraft/client/gui/screens/social/PlayerEntry/m_100608_ (Lnet/minecraft/client/gui/screens/social/PlayerSocialManager;Ljava/util/UUID;Ljava/lang/String;Lnet/minecraft/client/gui/components/Button;)V net/minecraft/client/gui/screens/social/PlayerEntry/lambda$new$2 (Lnet/minecraft/client/gui/screens/social/PlayerSocialManager;Ljava/util/UUID;Ljava/lang/String;Lnet/minecraft/client/gui/components/Button;)V +MD: net/minecraft/client/gui/screens/social/PlayerEntry/m_100618_ ()Ljava/util/UUID; net/minecraft/client/gui/screens/social/PlayerEntry/getPlayerId ()Ljava/util/UUID; +MD: net/minecraft/client/gui/screens/social/PlayerEntry/m_100619_ (Z)V net/minecraft/client/gui/screens/social/PlayerEntry/setRemoved (Z)V +MD: net/minecraft/client/gui/screens/social/PlayerEntry/m_100621_ ()Lnet/minecraft/network/chat/Component; net/minecraft/client/gui/screens/social/PlayerEntry/getStatusComponent ()Lnet/minecraft/network/chat/Component; +MD: net/minecraft/client/gui/screens/social/PlayerEntry/m_142437_ ()Ljava/util/List; net/minecraft/client/gui/screens/social/PlayerEntry/narratables ()Ljava/util/List; +MD: net/minecraft/client/gui/screens/social/PlayerEntry/m_170070_ (Lnet/minecraft/client/gui/screens/social/PlayerSocialManager;Ljava/util/UUID;Ljava/lang/String;Lnet/minecraft/client/gui/components/Button;)V net/minecraft/client/gui/screens/social/PlayerEntry/lambda$new$3 (Lnet/minecraft/client/gui/screens/social/PlayerSocialManager;Ljava/util/UUID;Ljava/lang/String;Lnet/minecraft/client/gui/components/Button;)V +MD: net/minecraft/client/gui/screens/social/PlayerEntry/m_240694_ ()Z net/minecraft/client/gui/screens/social/PlayerEntry/hasRecentMessages ()Z +MD: net/minecraft/client/gui/screens/social/PlayerEntry/m_240725_ ()Z net/minecraft/client/gui/screens/social/PlayerEntry/isRemoved ()Z +MD: net/minecraft/client/gui/screens/social/PlayerEntry/m_240730_ (Z)V net/minecraft/client/gui/screens/social/PlayerEntry/setHasRecentMessages (Z)V +MD: net/minecraft/client/gui/screens/social/PlayerEntry/m_260758_ (Lnet/minecraft/client/Minecraft;Lnet/minecraft/client/gui/screens/social/SocialInteractionsScreen;Lnet/minecraft/client/multiplayer/chat/report/ReportingContext;Ljava/util/UUID;)V net/minecraft/client/gui/screens/social/PlayerEntry/lambda$new$0 (Lnet/minecraft/client/Minecraft;Lnet/minecraft/client/gui/screens/social/SocialInteractionsScreen;Lnet/minecraft/client/multiplayer/chat/report/ReportingContext;Ljava/util/UUID;)V +MD: net/minecraft/client/gui/screens/social/PlayerEntry/m_260759_ (Lnet/minecraft/client/multiplayer/chat/report/ReportingContext;Lnet/minecraft/client/Minecraft;Lnet/minecraft/client/gui/screens/social/SocialInteractionsScreen;Ljava/util/UUID;Lnet/minecraft/client/gui/components/Button;)V net/minecraft/client/gui/screens/social/PlayerEntry/lambda$new$1 (Lnet/minecraft/client/multiplayer/chat/report/ReportingContext;Lnet/minecraft/client/Minecraft;Lnet/minecraft/client/gui/screens/social/SocialInteractionsScreen;Ljava/util/UUID;Lnet/minecraft/client/gui/components/Button;)V +MD: net/minecraft/client/gui/screens/social/PlayerEntry/m_260909_ ()Lnet/minecraft/client/gui/components/Tooltip; net/minecraft/client/gui/screens/social/PlayerEntry/createReportButtonTooltip ()Lnet/minecraft/client/gui/components/Tooltip; +MD: net/minecraft/client/gui/screens/social/PlayerEntry/m_262454_ (Z)V net/minecraft/client/gui/screens/social/PlayerEntry/updateHideAndShowButton (Z)V +MD: net/minecraft/client/gui/screens/social/PlayerEntry/m_6311_ (Lnet/minecraft/client/gui/GuiGraphics;IIIIIIIZF)V net/minecraft/client/gui/screens/social/PlayerEntry/render (Lnet/minecraft/client/gui/GuiGraphics;IIIIIIIZF)V +MD: net/minecraft/client/gui/screens/social/PlayerEntry/m_6702_ ()Ljava/util/List; net/minecraft/client/gui/screens/social/PlayerEntry/children ()Ljava/util/List; +MD: net/minecraft/client/gui/screens/social/PlayerEntry$1/ (Lnet/minecraft/client/gui/screens/social/PlayerEntry;IIIIIIILnet/minecraft/resources/ResourceLocation;IILnet/minecraft/client/gui/components/Button$OnPress;Lnet/minecraft/network/chat/Component;)V net/minecraft/client/gui/screens/social/PlayerEntry$1/ (Lnet/minecraft/client/gui/screens/social/PlayerEntry;IIIIIIILnet/minecraft/resources/ResourceLocation;IILnet/minecraft/client/gui/components/Button$OnPress;Lnet/minecraft/network/chat/Component;)V +MD: net/minecraft/client/gui/screens/social/PlayerEntry$1/m_5646_ ()Lnet/minecraft/network/chat/MutableComponent; net/minecraft/client/gui/screens/social/PlayerEntry$1/createNarrationMessage ()Lnet/minecraft/network/chat/MutableComponent; +MD: net/minecraft/client/gui/screens/social/PlayerEntry$2/ (Lnet/minecraft/client/gui/screens/social/PlayerEntry;IIIIIIILnet/minecraft/resources/ResourceLocation;IILnet/minecraft/client/gui/components/Button$OnPress;Lnet/minecraft/network/chat/Component;)V net/minecraft/client/gui/screens/social/PlayerEntry$2/ (Lnet/minecraft/client/gui/screens/social/PlayerEntry;IIIIIIILnet/minecraft/resources/ResourceLocation;IILnet/minecraft/client/gui/components/Button$OnPress;Lnet/minecraft/network/chat/Component;)V +MD: net/minecraft/client/gui/screens/social/PlayerEntry$2/m_5646_ ()Lnet/minecraft/network/chat/MutableComponent; net/minecraft/client/gui/screens/social/PlayerEntry$2/createNarrationMessage ()Lnet/minecraft/network/chat/MutableComponent; +MD: net/minecraft/client/gui/screens/social/PlayerEntry$3/ (Lnet/minecraft/client/gui/screens/social/PlayerEntry;IIIIIIILnet/minecraft/resources/ResourceLocation;IILnet/minecraft/client/gui/components/Button$OnPress;Lnet/minecraft/network/chat/Component;)V net/minecraft/client/gui/screens/social/PlayerEntry$3/ (Lnet/minecraft/client/gui/screens/social/PlayerEntry;IIIIIIILnet/minecraft/resources/ResourceLocation;IILnet/minecraft/client/gui/components/Button$OnPress;Lnet/minecraft/network/chat/Component;)V +MD: net/minecraft/client/gui/screens/social/PlayerEntry$3/m_5646_ ()Lnet/minecraft/network/chat/MutableComponent; net/minecraft/client/gui/screens/social/PlayerEntry$3/createNarrationMessage ()Lnet/minecraft/network/chat/MutableComponent; +MD: net/minecraft/client/gui/screens/social/PlayerSocialManager/ (Lnet/minecraft/client/Minecraft;Lcom/mojang/authlib/minecraft/UserApiService;)V net/minecraft/client/gui/screens/social/PlayerSocialManager/ (Lnet/minecraft/client/Minecraft;Lcom/mojang/authlib/minecraft/UserApiService;)V +MD: net/minecraft/client/gui/screens/social/PlayerSocialManager/m_100675_ ()Ljava/util/Set; net/minecraft/client/gui/screens/social/PlayerSocialManager/getHiddenPlayers ()Ljava/util/Set; +MD: net/minecraft/client/gui/screens/social/PlayerSocialManager/m_100676_ (Lnet/minecraft/client/multiplayer/PlayerInfo;)V net/minecraft/client/gui/screens/social/PlayerSocialManager/addPlayer (Lnet/minecraft/client/multiplayer/PlayerInfo;)V +MD: net/minecraft/client/gui/screens/social/PlayerSocialManager/m_100678_ (Ljava/lang/String;)Ljava/util/UUID; net/minecraft/client/gui/screens/social/PlayerSocialManager/getDiscoveredUUID (Ljava/lang/String;)Ljava/util/UUID; +MD: net/minecraft/client/gui/screens/social/PlayerSocialManager/m_100680_ (Ljava/util/UUID;)V net/minecraft/client/gui/screens/social/PlayerSocialManager/hidePlayer (Ljava/util/UUID;)V +MD: net/minecraft/client/gui/screens/social/PlayerSocialManager/m_100682_ (Ljava/util/UUID;)V net/minecraft/client/gui/screens/social/PlayerSocialManager/showPlayer (Ljava/util/UUID;)V +MD: net/minecraft/client/gui/screens/social/PlayerSocialManager/m_100684_ (Ljava/util/UUID;)Z net/minecraft/client/gui/screens/social/PlayerSocialManager/shouldHideMessageFrom (Ljava/util/UUID;)Z +MD: net/minecraft/client/gui/screens/social/PlayerSocialManager/m_100686_ (Ljava/util/UUID;)Z net/minecraft/client/gui/screens/social/PlayerSocialManager/isHidden (Ljava/util/UUID;)Z +MD: net/minecraft/client/gui/screens/social/PlayerSocialManager/m_100688_ (Ljava/util/UUID;)Z net/minecraft/client/gui/screens/social/PlayerSocialManager/isBlocked (Ljava/util/UUID;)Z +MD: net/minecraft/client/gui/screens/social/PlayerSocialManager/m_100690_ (Ljava/util/UUID;)V net/minecraft/client/gui/screens/social/PlayerSocialManager/removePlayer (Ljava/util/UUID;)V +MD: net/minecraft/client/gui/screens/social/PlayerSocialManager/m_194059_ ()V net/minecraft/client/gui/screens/social/PlayerSocialManager/startOnlineMode ()V +MD: net/minecraft/client/gui/screens/social/PlayerSocialManager/m_194060_ ()V net/minecraft/client/gui/screens/social/PlayerSocialManager/stopOnlineMode ()V +MD: net/minecraft/client/gui/screens/social/SocialInteractionsPlayerList/ (Lnet/minecraft/client/gui/screens/social/SocialInteractionsScreen;Lnet/minecraft/client/Minecraft;IIIII)V net/minecraft/client/gui/screens/social/SocialInteractionsPlayerList/ (Lnet/minecraft/client/gui/screens/social/SocialInteractionsScreen;Lnet/minecraft/client/Minecraft;IIIII)V +MD: net/minecraft/client/gui/screens/social/SocialInteractionsPlayerList/m_100709_ (Lcom/mojang/authlib/GameProfile;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/client/gui/screens/social/SocialInteractionsPlayerList/lambda$updatePlayersFromChatLog$0 (Lcom/mojang/authlib/GameProfile;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/client/gui/screens/social/SocialInteractionsPlayerList/m_100714_ (Lnet/minecraft/client/multiplayer/PlayerInfo;Lnet/minecraft/client/gui/screens/social/SocialInteractionsScreen$Page;)V net/minecraft/client/gui/screens/social/SocialInteractionsPlayerList/addPlayer (Lnet/minecraft/client/multiplayer/PlayerInfo;Lnet/minecraft/client/gui/screens/social/SocialInteractionsScreen$Page;)V +MD: net/minecraft/client/gui/screens/social/SocialInteractionsPlayerList/m_100717_ (Ljava/lang/String;)V net/minecraft/client/gui/screens/social/SocialInteractionsPlayerList/setFilter (Ljava/lang/String;)V +MD: net/minecraft/client/gui/screens/social/SocialInteractionsPlayerList/m_100722_ (Ljava/util/UUID;)V net/minecraft/client/gui/screens/social/SocialInteractionsPlayerList/removePlayer (Ljava/util/UUID;)V +MD: net/minecraft/client/gui/screens/social/SocialInteractionsPlayerList/m_100724_ ()Z net/minecraft/client/gui/screens/social/SocialInteractionsPlayerList/isEmpty ()Z +MD: net/minecraft/client/gui/screens/social/SocialInteractionsPlayerList/m_100725_ ()V net/minecraft/client/gui/screens/social/SocialInteractionsPlayerList/updateFilteredPlayers ()V +MD: net/minecraft/client/gui/screens/social/SocialInteractionsPlayerList/m_240241_ (Lnet/minecraft/client/gui/screens/social/PlayerEntry;)Z net/minecraft/client/gui/screens/social/SocialInteractionsPlayerList/lambda$updateFilteredPlayers$4 (Lnet/minecraft/client/gui/screens/social/PlayerEntry;)Z +MD: net/minecraft/client/gui/screens/social/SocialInteractionsPlayerList/m_240702_ (Ljava/util/Collection;DZ)V net/minecraft/client/gui/screens/social/SocialInteractionsPlayerList/updatePlayerList (Ljava/util/Collection;DZ)V +MD: net/minecraft/client/gui/screens/social/SocialInteractionsPlayerList/m_240704_ ()V net/minecraft/client/gui/screens/social/SocialInteractionsPlayerList/sortPlayerEntries ()V +MD: net/minecraft/client/gui/screens/social/SocialInteractionsPlayerList/m_240705_ (Ljava/util/Collection;D)V net/minecraft/client/gui/screens/social/SocialInteractionsPlayerList/updateFiltersAndScroll (Ljava/util/Collection;D)V +MD: net/minecraft/client/gui/screens/social/SocialInteractionsPlayerList/m_240708_ (Ljava/util/Map;Z)V net/minecraft/client/gui/screens/social/SocialInteractionsPlayerList/updatePlayersFromChatLog (Ljava/util/Map;Z)V +MD: net/minecraft/client/gui/screens/social/SocialInteractionsPlayerList/m_240718_ (Ljava/util/Collection;Ljava/util/Map;)V net/minecraft/client/gui/screens/social/SocialInteractionsPlayerList/addOnlinePlayers (Ljava/util/Collection;Ljava/util/Map;)V +MD: net/minecraft/client/gui/screens/social/SocialInteractionsPlayerList/m_243027_ (Lcom/mojang/authlib/GameProfile;Ljava/util/UUID;)Lnet/minecraft/client/gui/screens/social/PlayerEntry; net/minecraft/client/gui/screens/social/SocialInteractionsPlayerList/lambda$updatePlayersFromChatLog$1 (Lcom/mojang/authlib/GameProfile;Ljava/util/UUID;)Lnet/minecraft/client/gui/screens/social/PlayerEntry; +MD: net/minecraft/client/gui/screens/social/SocialInteractionsPlayerList/m_243352_ (Lnet/minecraft/client/gui/screens/social/PlayerEntry;)Ljava/lang/Integer; net/minecraft/client/gui/screens/social/SocialInteractionsPlayerList/lambda$sortPlayerEntries$2 (Lnet/minecraft/client/gui/screens/social/PlayerEntry;)Ljava/lang/Integer; +MD: net/minecraft/client/gui/screens/social/SocialInteractionsPlayerList/m_246121_ (Lnet/minecraft/client/multiplayer/chat/ChatLog;)Ljava/util/Collection; net/minecraft/client/gui/screens/social/SocialInteractionsPlayerList/collectProfilesFromChatLog (Lnet/minecraft/client/multiplayer/chat/ChatLog;)Ljava/util/Collection; +MD: net/minecraft/client/gui/screens/social/SocialInteractionsPlayerList/m_252575_ (Lnet/minecraft/client/gui/screens/social/PlayerEntry;)Ljava/lang/Integer; net/minecraft/client/gui/screens/social/SocialInteractionsPlayerList/lambda$sortPlayerEntries$3 (Lnet/minecraft/client/gui/screens/social/PlayerEntry;)Ljava/lang/Integer; +MD: net/minecraft/client/gui/screens/social/SocialInteractionsPlayerList/m_280310_ (Lnet/minecraft/client/gui/GuiGraphics;)V net/minecraft/client/gui/screens/social/SocialInteractionsPlayerList/enableScissor (Lnet/minecraft/client/gui/GuiGraphics;)V +MD: net/minecraft/client/gui/screens/social/SocialInteractionsScreen/ ()V net/minecraft/client/gui/screens/social/SocialInteractionsScreen/ ()V +MD: net/minecraft/client/gui/screens/social/SocialInteractionsScreen/ ()V net/minecraft/client/gui/screens/social/SocialInteractionsScreen/ ()V +MD: net/minecraft/client/gui/screens/social/SocialInteractionsScreen/m_100767_ (Lnet/minecraft/client/Minecraft;)V net/minecraft/client/gui/screens/social/SocialInteractionsScreen/updateServerLabel (Lnet/minecraft/client/Minecraft;)V +MD: net/minecraft/client/gui/screens/social/SocialInteractionsScreen/m_100771_ (Lnet/minecraft/client/gui/screens/social/SocialInteractionsScreen$Page;)V net/minecraft/client/gui/screens/social/SocialInteractionsScreen/showPage (Lnet/minecraft/client/gui/screens/social/SocialInteractionsScreen$Page;)V +MD: net/minecraft/client/gui/screens/social/SocialInteractionsScreen/m_100775_ (Lnet/minecraft/client/multiplayer/PlayerInfo;)V net/minecraft/client/gui/screens/social/SocialInteractionsScreen/onAddPlayer (Lnet/minecraft/client/multiplayer/PlayerInfo;)V +MD: net/minecraft/client/gui/screens/social/SocialInteractionsScreen/m_100779_ (Ljava/util/UUID;)V net/minecraft/client/gui/screens/social/SocialInteractionsScreen/onRemovePlayer (Ljava/util/UUID;)V +MD: net/minecraft/client/gui/screens/social/SocialInteractionsScreen/m_100784_ (Lnet/minecraft/client/gui/components/Button;)V net/minecraft/client/gui/screens/social/SocialInteractionsScreen/lambda$init$2 (Lnet/minecraft/client/gui/components/Button;)V +MD: net/minecraft/client/gui/screens/social/SocialInteractionsScreen/m_100788_ (Ljava/lang/String;)V net/minecraft/client/gui/screens/social/SocialInteractionsScreen/checkSearchStringUpdate (Ljava/lang/String;)V +MD: net/minecraft/client/gui/screens/social/SocialInteractionsScreen/m_100790_ (Lnet/minecraft/client/gui/components/Button;)V net/minecraft/client/gui/screens/social/SocialInteractionsScreen/lambda$init$1 (Lnet/minecraft/client/gui/components/Button;)V +MD: net/minecraft/client/gui/screens/social/SocialInteractionsScreen/m_100795_ (Lnet/minecraft/client/gui/components/Button;)V net/minecraft/client/gui/screens/social/SocialInteractionsScreen/lambda$init$0 (Lnet/minecraft/client/gui/components/Button;)V +MD: net/minecraft/client/gui/screens/social/SocialInteractionsScreen/m_100799_ ()I net/minecraft/client/gui/screens/social/SocialInteractionsScreen/windowHeight ()I +MD: net/minecraft/client/gui/screens/social/SocialInteractionsScreen/m_100801_ ()I net/minecraft/client/gui/screens/social/SocialInteractionsScreen/listEnd ()I +MD: net/minecraft/client/gui/screens/social/SocialInteractionsScreen/m_100802_ ()I net/minecraft/client/gui/screens/social/SocialInteractionsScreen/marginX ()I +MD: net/minecraft/client/gui/screens/social/SocialInteractionsScreen/m_142562_ ()Lnet/minecraft/network/chat/Component; net/minecraft/client/gui/screens/social/SocialInteractionsScreen/getNarrationMessage ()Lnet/minecraft/network/chat/Component; +MD: net/minecraft/client/gui/screens/social/SocialInteractionsScreen/m_279844_ (Lnet/minecraft/client/gui/components/Button;)V net/minecraft/client/gui/screens/social/SocialInteractionsScreen/lambda$init$4 (Lnet/minecraft/client/gui/components/Button;)V +MD: net/minecraft/client/gui/screens/social/SocialInteractionsScreen/m_279845_ (Z)V net/minecraft/client/gui/screens/social/SocialInteractionsScreen/lambda$init$3 (Z)V +MD: net/minecraft/client/gui/screens/social/SocialInteractionsScreen/m_280273_ (Lnet/minecraft/client/gui/GuiGraphics;)V net/minecraft/client/gui/screens/social/SocialInteractionsScreen/renderBackground (Lnet/minecraft/client/gui/GuiGraphics;)V +MD: net/minecraft/client/gui/screens/social/SocialInteractionsScreen/m_7043_ ()Z net/minecraft/client/gui/screens/social/SocialInteractionsScreen/isPauseScreen ()Z +MD: net/minecraft/client/gui/screens/social/SocialInteractionsScreen/m_7856_ ()V net/minecraft/client/gui/screens/social/SocialInteractionsScreen/init ()V +MD: net/minecraft/client/gui/screens/social/SocialInteractionsScreen/m_7933_ (III)Z net/minecraft/client/gui/screens/social/SocialInteractionsScreen/keyPressed (III)Z +MD: net/minecraft/client/gui/screens/social/SocialInteractionsScreen/m_86600_ ()V net/minecraft/client/gui/screens/social/SocialInteractionsScreen/tick ()V +MD: net/minecraft/client/gui/screens/social/SocialInteractionsScreen/m_88315_ (Lnet/minecraft/client/gui/GuiGraphics;IIF)V net/minecraft/client/gui/screens/social/SocialInteractionsScreen/render (Lnet/minecraft/client/gui/GuiGraphics;IIF)V +MD: net/minecraft/client/gui/screens/social/SocialInteractionsScreen$1/ (Lnet/minecraft/client/gui/screens/social/SocialInteractionsScreen;Lnet/minecraft/client/gui/Font;IIIILnet/minecraft/network/chat/Component;)V net/minecraft/client/gui/screens/social/SocialInteractionsScreen$1/ (Lnet/minecraft/client/gui/screens/social/SocialInteractionsScreen;Lnet/minecraft/client/gui/Font;IIIILnet/minecraft/network/chat/Component;)V +MD: net/minecraft/client/gui/screens/social/SocialInteractionsScreen$1/m_5646_ ()Lnet/minecraft/network/chat/MutableComponent; net/minecraft/client/gui/screens/social/SocialInteractionsScreen$1/createNarrationMessage ()Lnet/minecraft/network/chat/MutableComponent; +MD: net/minecraft/client/gui/screens/social/SocialInteractionsScreen$2/ ()V net/minecraft/client/gui/screens/social/SocialInteractionsScreen$2/ ()V +MD: net/minecraft/client/gui/screens/social/SocialInteractionsScreen$Page/ ()V net/minecraft/client/gui/screens/social/SocialInteractionsScreen$Page/ ()V +MD: net/minecraft/client/gui/screens/social/SocialInteractionsScreen$Page/ (Ljava/lang/String;I)V net/minecraft/client/gui/screens/social/SocialInteractionsScreen$Page/ (Ljava/lang/String;I)V +MD: net/minecraft/client/gui/screens/social/SocialInteractionsScreen$Page/m_170144_ ()[Lnet/minecraft/client/gui/screens/social/SocialInteractionsScreen$Page; net/minecraft/client/gui/screens/social/SocialInteractionsScreen$Page/$values ()[Lnet/minecraft/client/gui/screens/social/SocialInteractionsScreen$Page; +MD: net/minecraft/client/gui/screens/social/SocialInteractionsScreen$Page/valueOf (Ljava/lang/String;)Lnet/minecraft/client/gui/screens/social/SocialInteractionsScreen$Page; net/minecraft/client/gui/screens/social/SocialInteractionsScreen$Page/valueOf (Ljava/lang/String;)Lnet/minecraft/client/gui/screens/social/SocialInteractionsScreen$Page; +MD: net/minecraft/client/gui/screens/social/SocialInteractionsScreen$Page/values ()[Lnet/minecraft/client/gui/screens/social/SocialInteractionsScreen$Page; net/minecraft/client/gui/screens/social/SocialInteractionsScreen$Page/values ()[Lnet/minecraft/client/gui/screens/social/SocialInteractionsScreen$Page; +MD: net/minecraft/client/gui/screens/telemetry/TelemetryEventWidget/ ()V net/minecraft/client/gui/screens/telemetry/TelemetryEventWidget/ ()V +MD: net/minecraft/client/gui/screens/telemetry/TelemetryEventWidget/ (IIIILnet/minecraft/client/gui/Font;)V net/minecraft/client/gui/screens/telemetry/TelemetryEventWidget/ (IIIILnet/minecraft/client/gui/Font;)V +MD: net/minecraft/client/gui/screens/telemetry/TelemetryEventWidget/m_168797_ (Lnet/minecraft/client/gui/narration/NarrationElementOutput;)V net/minecraft/client/gui/screens/telemetry/TelemetryEventWidget/updateWidgetNarration (Lnet/minecraft/client/gui/narration/NarrationElementOutput;)V +MD: net/minecraft/client/gui/screens/telemetry/TelemetryEventWidget/m_239019_ ()I net/minecraft/client/gui/screens/telemetry/TelemetryEventWidget/getInnerHeight ()I +MD: net/minecraft/client/gui/screens/telemetry/TelemetryEventWidget/m_239197_ (Lnet/minecraft/client/gui/GuiGraphics;IIF)V net/minecraft/client/gui/screens/telemetry/TelemetryEventWidget/renderContents (Lnet/minecraft/client/gui/GuiGraphics;IIF)V +MD: net/minecraft/client/gui/screens/telemetry/TelemetryEventWidget/m_239725_ ()D net/minecraft/client/gui/screens/telemetry/TelemetryEventWidget/scrollRate ()D +MD: net/minecraft/client/gui/screens/telemetry/TelemetryEventWidget/m_240206_ (D)V net/minecraft/client/gui/screens/telemetry/TelemetryEventWidget/setScrollAmount (D)V +MD: net/minecraft/client/gui/screens/telemetry/TelemetryEventWidget/m_260944_ (Lnet/minecraft/client/telemetry/TelemetryEventType;Lnet/minecraft/client/gui/screens/telemetry/TelemetryEventWidget$ContentBuilder;)V net/minecraft/client/gui/screens/telemetry/TelemetryEventWidget/addEventTypeProperties (Lnet/minecraft/client/telemetry/TelemetryEventType;Lnet/minecraft/client/gui/screens/telemetry/TelemetryEventWidget$ContentBuilder;)V +MD: net/minecraft/client/gui/screens/telemetry/TelemetryEventWidget/m_261018_ (Z)V net/minecraft/client/gui/screens/telemetry/TelemetryEventWidget/onOptInChanged (Z)V +MD: net/minecraft/client/gui/screens/telemetry/TelemetryEventWidget/m_261118_ (Ljava/util/function/DoubleConsumer;)V net/minecraft/client/gui/screens/telemetry/TelemetryEventWidget/setOnScrolledListener (Ljava/util/function/DoubleConsumer;)V +MD: net/minecraft/client/gui/screens/telemetry/TelemetryEventWidget/m_261199_ (Lnet/minecraft/client/gui/screens/telemetry/TelemetryEventWidget$ContentBuilder;Lnet/minecraft/client/telemetry/TelemetryEventType;)V net/minecraft/client/gui/screens/telemetry/TelemetryEventWidget/addEventType (Lnet/minecraft/client/gui/screens/telemetry/TelemetryEventWidget$ContentBuilder;Lnet/minecraft/client/telemetry/TelemetryEventType;)V +MD: net/minecraft/client/gui/screens/telemetry/TelemetryEventWidget/m_261270_ (Z)Lnet/minecraft/client/gui/screens/telemetry/TelemetryEventWidget$Content; net/minecraft/client/gui/screens/telemetry/TelemetryEventWidget/buildContent (Z)Lnet/minecraft/client/gui/screens/telemetry/TelemetryEventWidget$Content; +MD: net/minecraft/client/gui/screens/telemetry/TelemetryEventWidget/m_261310_ ()I net/minecraft/client/gui/screens/telemetry/TelemetryEventWidget/containerWidth ()I +MD: net/minecraft/client/gui/screens/telemetry/TelemetryEventWidget/m_279846_ (Lnet/minecraft/client/gui/GuiGraphics;IIFLnet/minecraft/client/gui/components/AbstractWidget;)V net/minecraft/client/gui/screens/telemetry/TelemetryEventWidget/lambda$renderContents$0 (Lnet/minecraft/client/gui/GuiGraphics;IIFLnet/minecraft/client/gui/components/AbstractWidget;)V +MD: net/minecraft/client/gui/screens/telemetry/TelemetryEventWidget$Content/ (Lnet/minecraft/client/gui/layouts/GridLayout;Lnet/minecraft/network/chat/Component;)V net/minecraft/client/gui/screens/telemetry/TelemetryEventWidget$Content/ (Lnet/minecraft/client/gui/layouts/GridLayout;Lnet/minecraft/network/chat/Component;)V +MD: net/minecraft/client/gui/screens/telemetry/TelemetryEventWidget$Content/equals (Ljava/lang/Object;)Z net/minecraft/client/gui/screens/telemetry/TelemetryEventWidget$Content/equals (Ljava/lang/Object;)Z +MD: net/minecraft/client/gui/screens/telemetry/TelemetryEventWidget$Content/f_260488_ ()Lnet/minecraft/network/chat/Component; net/minecraft/client/gui/screens/telemetry/TelemetryEventWidget$Content/narration ()Lnet/minecraft/network/chat/Component; +MD: net/minecraft/client/gui/screens/telemetry/TelemetryEventWidget$Content/f_260717_ ()Lnet/minecraft/client/gui/layouts/GridLayout; net/minecraft/client/gui/screens/telemetry/TelemetryEventWidget$Content/container ()Lnet/minecraft/client/gui/layouts/GridLayout; +MD: net/minecraft/client/gui/screens/telemetry/TelemetryEventWidget$Content/hashCode ()I net/minecraft/client/gui/screens/telemetry/TelemetryEventWidget$Content/hashCode ()I +MD: net/minecraft/client/gui/screens/telemetry/TelemetryEventWidget$Content/toString ()Ljava/lang/String; net/minecraft/client/gui/screens/telemetry/TelemetryEventWidget$Content/toString ()Ljava/lang/String; +MD: net/minecraft/client/gui/screens/telemetry/TelemetryEventWidget$ContentBuilder/ (I)V net/minecraft/client/gui/screens/telemetry/TelemetryEventWidget$ContentBuilder/ (I)V +MD: net/minecraft/client/gui/screens/telemetry/TelemetryEventWidget$ContentBuilder/m_260899_ (I)V net/minecraft/client/gui/screens/telemetry/TelemetryEventWidget$ContentBuilder/addSpacer (I)V +MD: net/minecraft/client/gui/screens/telemetry/TelemetryEventWidget$ContentBuilder/m_260980_ (Lnet/minecraft/client/gui/Font;Lnet/minecraft/network/chat/Component;)V net/minecraft/client/gui/screens/telemetry/TelemetryEventWidget$ContentBuilder/addLine (Lnet/minecraft/client/gui/Font;Lnet/minecraft/network/chat/Component;)V +MD: net/minecraft/client/gui/screens/telemetry/TelemetryEventWidget$ContentBuilder/m_261135_ ()Lnet/minecraft/client/gui/screens/telemetry/TelemetryEventWidget$Content; net/minecraft/client/gui/screens/telemetry/TelemetryEventWidget$ContentBuilder/build ()Lnet/minecraft/client/gui/screens/telemetry/TelemetryEventWidget$Content; +MD: net/minecraft/client/gui/screens/telemetry/TelemetryEventWidget$ContentBuilder/m_261152_ (Lnet/minecraft/client/gui/Font;Lnet/minecraft/network/chat/Component;I)V net/minecraft/client/gui/screens/telemetry/TelemetryEventWidget$ContentBuilder/addLine (Lnet/minecraft/client/gui/Font;Lnet/minecraft/network/chat/Component;I)V +MD: net/minecraft/client/gui/screens/telemetry/TelemetryEventWidget$ContentBuilder/m_261236_ (Lnet/minecraft/client/gui/Font;Lnet/minecraft/network/chat/Component;)V net/minecraft/client/gui/screens/telemetry/TelemetryEventWidget$ContentBuilder/addHeader (Lnet/minecraft/client/gui/Font;Lnet/minecraft/network/chat/Component;)V +MD: net/minecraft/client/gui/screens/telemetry/TelemetryInfoScreen/ ()V net/minecraft/client/gui/screens/telemetry/TelemetryInfoScreen/ ()V +MD: net/minecraft/client/gui/screens/telemetry/TelemetryInfoScreen/ (Lnet/minecraft/client/gui/screens/Screen;Lnet/minecraft/client/Options;)V net/minecraft/client/gui/screens/telemetry/TelemetryInfoScreen/ (Lnet/minecraft/client/gui/screens/Screen;Lnet/minecraft/client/Options;)V +MD: net/minecraft/client/gui/screens/telemetry/TelemetryInfoScreen/m_142562_ ()Lnet/minecraft/network/chat/Component; net/minecraft/client/gui/screens/telemetry/TelemetryInfoScreen/getNarrationMessage ()Lnet/minecraft/network/chat/Component; +MD: net/minecraft/client/gui/screens/telemetry/TelemetryInfoScreen/m_260814_ (Lnet/minecraft/client/gui/components/Button;)V net/minecraft/client/gui/screens/telemetry/TelemetryInfoScreen/openLastScreen (Lnet/minecraft/client/gui/components/Button;)V +MD: net/minecraft/client/gui/screens/telemetry/TelemetryInfoScreen/m_260900_ (Lnet/minecraft/client/gui/components/Button;)V net/minecraft/client/gui/screens/telemetry/TelemetryInfoScreen/openFeedbackLink (Lnet/minecraft/client/gui/components/Button;)V +MD: net/minecraft/client/gui/screens/telemetry/TelemetryInfoScreen/m_260955_ ()Lnet/minecraft/client/gui/components/AbstractWidget; net/minecraft/client/gui/screens/telemetry/TelemetryInfoScreen/createTelemetryButton ()Lnet/minecraft/client/gui/components/AbstractWidget; +MD: net/minecraft/client/gui/screens/telemetry/TelemetryInfoScreen/m_260998_ (D)V net/minecraft/client/gui/screens/telemetry/TelemetryInfoScreen/lambda$init$0 (D)V +MD: net/minecraft/client/gui/screens/telemetry/TelemetryInfoScreen/m_261011_ (Ljava/lang/Boolean;)V net/minecraft/client/gui/screens/telemetry/TelemetryInfoScreen/lambda$createTelemetryButton$2 (Ljava/lang/Boolean;)V +MD: net/minecraft/client/gui/screens/telemetry/TelemetryInfoScreen/m_261269_ (Lnet/minecraft/client/gui/components/Button;)V net/minecraft/client/gui/screens/telemetry/TelemetryInfoScreen/openDataFolder (Lnet/minecraft/client/gui/components/Button;)V +MD: net/minecraft/client/gui/screens/telemetry/TelemetryInfoScreen/m_263882_ (Lnet/minecraft/client/gui/screens/telemetry/TelemetryInfoScreen;Lnet/minecraft/client/gui/components/events/GuiEventListener;)V net/minecraft/client/gui/screens/telemetry/TelemetryInfoScreen/lambda$init$1 (Lnet/minecraft/client/gui/screens/telemetry/TelemetryInfoScreen;Lnet/minecraft/client/gui/components/events/GuiEventListener;)V +MD: net/minecraft/client/gui/screens/telemetry/TelemetryInfoScreen/m_264243_ (Lnet/minecraft/client/gui/components/AbstractWidget;Lnet/minecraft/client/gui/components/AbstractWidget;)Lnet/minecraft/client/gui/layouts/GridLayout; net/minecraft/client/gui/screens/telemetry/TelemetryInfoScreen/twoButtonContainer (Lnet/minecraft/client/gui/components/AbstractWidget;Lnet/minecraft/client/gui/components/AbstractWidget;)Lnet/minecraft/client/gui/layouts/GridLayout; +MD: net/minecraft/client/gui/screens/telemetry/TelemetryInfoScreen/m_279847_ (Z)V net/minecraft/client/gui/screens/telemetry/TelemetryInfoScreen/lambda$openFeedbackLink$3 (Z)V +MD: net/minecraft/client/gui/screens/telemetry/TelemetryInfoScreen/m_7379_ ()V net/minecraft/client/gui/screens/telemetry/TelemetryInfoScreen/onClose ()V +MD: net/minecraft/client/gui/screens/telemetry/TelemetryInfoScreen/m_7856_ ()V net/minecraft/client/gui/screens/telemetry/TelemetryInfoScreen/init ()V +MD: net/minecraft/client/gui/screens/telemetry/TelemetryInfoScreen/m_88315_ (Lnet/minecraft/client/gui/GuiGraphics;IIF)V net/minecraft/client/gui/screens/telemetry/TelemetryInfoScreen/render (Lnet/minecraft/client/gui/GuiGraphics;IIF)V +MD: net/minecraft/client/gui/screens/worldselection/ConfirmExperimentalFeaturesScreen/ ()V net/minecraft/client/gui/screens/worldselection/ConfirmExperimentalFeaturesScreen/ ()V +MD: net/minecraft/client/gui/screens/worldselection/ConfirmExperimentalFeaturesScreen/ (Ljava/util/Collection;Lit/unimi/dsi/fastutil/booleans/BooleanConsumer;)V net/minecraft/client/gui/screens/worldselection/ConfirmExperimentalFeaturesScreen/ (Ljava/util/Collection;Lit/unimi/dsi/fastutil/booleans/BooleanConsumer;)V +MD: net/minecraft/client/gui/screens/worldselection/ConfirmExperimentalFeaturesScreen/m_142562_ ()Lnet/minecraft/network/chat/Component; net/minecraft/client/gui/screens/worldselection/ConfirmExperimentalFeaturesScreen/getNarrationMessage ()Lnet/minecraft/network/chat/Component; +MD: net/minecraft/client/gui/screens/worldselection/ConfirmExperimentalFeaturesScreen/m_245513_ (Lnet/minecraft/client/gui/components/Button;)V net/minecraft/client/gui/screens/worldselection/ConfirmExperimentalFeaturesScreen/lambda$init$1 (Lnet/minecraft/client/gui/components/Button;)V +MD: net/minecraft/client/gui/screens/worldselection/ConfirmExperimentalFeaturesScreen/m_245914_ (Lnet/minecraft/client/gui/components/Button;)V net/minecraft/client/gui/screens/worldselection/ConfirmExperimentalFeaturesScreen/lambda$init$2 (Lnet/minecraft/client/gui/components/Button;)V +MD: net/minecraft/client/gui/screens/worldselection/ConfirmExperimentalFeaturesScreen/m_267719_ ()V net/minecraft/client/gui/screens/worldselection/ConfirmExperimentalFeaturesScreen/repositionElements ()V +MD: net/minecraft/client/gui/screens/worldselection/ConfirmExperimentalFeaturesScreen/m_268776_ (Lnet/minecraft/client/gui/screens/worldselection/ConfirmExperimentalFeaturesScreen;Lnet/minecraft/client/gui/components/events/GuiEventListener;)V net/minecraft/client/gui/screens/worldselection/ConfirmExperimentalFeaturesScreen/lambda$init$3 (Lnet/minecraft/client/gui/screens/worldselection/ConfirmExperimentalFeaturesScreen;Lnet/minecraft/client/gui/components/events/GuiEventListener;)V +MD: net/minecraft/client/gui/screens/worldselection/ConfirmExperimentalFeaturesScreen/m_279848_ (Lnet/minecraft/client/gui/components/Button;)V net/minecraft/client/gui/screens/worldselection/ConfirmExperimentalFeaturesScreen/lambda$init$0 (Lnet/minecraft/client/gui/components/Button;)V +MD: net/minecraft/client/gui/screens/worldselection/ConfirmExperimentalFeaturesScreen/m_7379_ ()V net/minecraft/client/gui/screens/worldselection/ConfirmExperimentalFeaturesScreen/onClose ()V +MD: net/minecraft/client/gui/screens/worldselection/ConfirmExperimentalFeaturesScreen/m_7856_ ()V net/minecraft/client/gui/screens/worldselection/ConfirmExperimentalFeaturesScreen/init ()V +MD: net/minecraft/client/gui/screens/worldselection/ConfirmExperimentalFeaturesScreen/m_88315_ (Lnet/minecraft/client/gui/GuiGraphics;IIF)V net/minecraft/client/gui/screens/worldselection/ConfirmExperimentalFeaturesScreen/render (Lnet/minecraft/client/gui/GuiGraphics;IIF)V +MD: net/minecraft/client/gui/screens/worldselection/ConfirmExperimentalFeaturesScreen$DetailsScreen/ (Lnet/minecraft/client/gui/screens/worldselection/ConfirmExperimentalFeaturesScreen;)V net/minecraft/client/gui/screens/worldselection/ConfirmExperimentalFeaturesScreen$DetailsScreen/ (Lnet/minecraft/client/gui/screens/worldselection/ConfirmExperimentalFeaturesScreen;)V +MD: net/minecraft/client/gui/screens/worldselection/ConfirmExperimentalFeaturesScreen$DetailsScreen/m_245404_ (Lnet/minecraft/client/gui/screens/worldselection/ConfirmExperimentalFeaturesScreen$DetailsScreen;)Lnet/minecraft/client/Minecraft; net/minecraft/client/gui/screens/worldselection/ConfirmExperimentalFeaturesScreen$DetailsScreen/access$100 (Lnet/minecraft/client/gui/screens/worldselection/ConfirmExperimentalFeaturesScreen$DetailsScreen;)Lnet/minecraft/client/Minecraft; +MD: net/minecraft/client/gui/screens/worldselection/ConfirmExperimentalFeaturesScreen$DetailsScreen/m_245549_ (Lnet/minecraft/client/gui/screens/worldselection/ConfirmExperimentalFeaturesScreen$DetailsScreen;)Lnet/minecraft/client/gui/Font; net/minecraft/client/gui/screens/worldselection/ConfirmExperimentalFeaturesScreen$DetailsScreen/access$200 (Lnet/minecraft/client/gui/screens/worldselection/ConfirmExperimentalFeaturesScreen$DetailsScreen;)Lnet/minecraft/client/gui/Font; +MD: net/minecraft/client/gui/screens/worldselection/ConfirmExperimentalFeaturesScreen$DetailsScreen/m_245813_ (Lnet/minecraft/client/gui/components/Button;)V net/minecraft/client/gui/screens/worldselection/ConfirmExperimentalFeaturesScreen$DetailsScreen/lambda$init$0 (Lnet/minecraft/client/gui/components/Button;)V +MD: net/minecraft/client/gui/screens/worldselection/ConfirmExperimentalFeaturesScreen$DetailsScreen/m_247094_ (Lnet/minecraft/client/gui/screens/worldselection/ConfirmExperimentalFeaturesScreen$DetailsScreen;)Lnet/minecraft/client/gui/Font; net/minecraft/client/gui/screens/worldselection/ConfirmExperimentalFeaturesScreen$DetailsScreen/access$000 (Lnet/minecraft/client/gui/screens/worldselection/ConfirmExperimentalFeaturesScreen$DetailsScreen;)Lnet/minecraft/client/gui/Font; +MD: net/minecraft/client/gui/screens/worldselection/ConfirmExperimentalFeaturesScreen$DetailsScreen/m_7379_ ()V net/minecraft/client/gui/screens/worldselection/ConfirmExperimentalFeaturesScreen$DetailsScreen/onClose ()V +MD: net/minecraft/client/gui/screens/worldselection/ConfirmExperimentalFeaturesScreen$DetailsScreen/m_7856_ ()V net/minecraft/client/gui/screens/worldselection/ConfirmExperimentalFeaturesScreen$DetailsScreen/init ()V +MD: net/minecraft/client/gui/screens/worldselection/ConfirmExperimentalFeaturesScreen$DetailsScreen/m_88315_ (Lnet/minecraft/client/gui/GuiGraphics;IIF)V net/minecraft/client/gui/screens/worldselection/ConfirmExperimentalFeaturesScreen$DetailsScreen/render (Lnet/minecraft/client/gui/GuiGraphics;IIF)V +MD: net/minecraft/client/gui/screens/worldselection/ConfirmExperimentalFeaturesScreen$DetailsScreen$PackList/ (Lnet/minecraft/client/gui/screens/worldselection/ConfirmExperimentalFeaturesScreen$DetailsScreen;Lnet/minecraft/client/Minecraft;Ljava/util/Collection;)V net/minecraft/client/gui/screens/worldselection/ConfirmExperimentalFeaturesScreen$DetailsScreen$PackList/ (Lnet/minecraft/client/gui/screens/worldselection/ConfirmExperimentalFeaturesScreen$DetailsScreen;Lnet/minecraft/client/Minecraft;Ljava/util/Collection;)V +MD: net/minecraft/client/gui/screens/worldselection/ConfirmExperimentalFeaturesScreen$DetailsScreen$PackList/m_5759_ ()I net/minecraft/client/gui/screens/worldselection/ConfirmExperimentalFeaturesScreen$DetailsScreen$PackList/getRowWidth ()I +MD: net/minecraft/client/gui/screens/worldselection/ConfirmExperimentalFeaturesScreen$DetailsScreen$PackListEntry/ (Lnet/minecraft/client/gui/screens/worldselection/ConfirmExperimentalFeaturesScreen$DetailsScreen;Lnet/minecraft/network/chat/Component;Lnet/minecraft/network/chat/Component;Lnet/minecraft/client/gui/components/MultiLineLabel;)V net/minecraft/client/gui/screens/worldselection/ConfirmExperimentalFeaturesScreen$DetailsScreen$PackListEntry/ (Lnet/minecraft/client/gui/screens/worldselection/ConfirmExperimentalFeaturesScreen$DetailsScreen;Lnet/minecraft/network/chat/Component;Lnet/minecraft/network/chat/Component;Lnet/minecraft/client/gui/components/MultiLineLabel;)V +MD: net/minecraft/client/gui/screens/worldselection/ConfirmExperimentalFeaturesScreen$DetailsScreen$PackListEntry/m_142172_ ()Lnet/minecraft/network/chat/Component; net/minecraft/client/gui/screens/worldselection/ConfirmExperimentalFeaturesScreen$DetailsScreen$PackListEntry/getNarration ()Lnet/minecraft/network/chat/Component; +MD: net/minecraft/client/gui/screens/worldselection/ConfirmExperimentalFeaturesScreen$DetailsScreen$PackListEntry/m_6311_ (Lnet/minecraft/client/gui/GuiGraphics;IIIIIIIZF)V net/minecraft/client/gui/screens/worldselection/ConfirmExperimentalFeaturesScreen$DetailsScreen$PackListEntry/render (Lnet/minecraft/client/gui/GuiGraphics;IIIIIIIZF)V +MD: net/minecraft/client/gui/screens/worldselection/CreateWorldScreen/ ()V net/minecraft/client/gui/screens/worldselection/CreateWorldScreen/ ()V +MD: net/minecraft/client/gui/screens/worldselection/CreateWorldScreen/ (Lnet/minecraft/client/Minecraft;Lnet/minecraft/client/gui/screens/Screen;Lnet/minecraft/client/gui/screens/worldselection/WorldCreationContext;Ljava/util/Optional;Ljava/util/OptionalLong;)V net/minecraft/client/gui/screens/worldselection/CreateWorldScreen/ (Lnet/minecraft/client/Minecraft;Lnet/minecraft/client/gui/screens/Screen;Lnet/minecraft/client/gui/screens/worldselection/WorldCreationContext;Ljava/util/Optional;Ljava/util/OptionalLong;)V +MD: net/minecraft/client/gui/screens/worldselection/CreateWorldScreen/m_100906_ (Ljava/nio/file/Path;Lnet/minecraft/client/Minecraft;)Ljava/nio/file/Path; net/minecraft/client/gui/screens/worldselection/CreateWorldScreen/createTempDataPackDirFromExistingWorld (Ljava/nio/file/Path;Lnet/minecraft/client/Minecraft;)Ljava/nio/file/Path; +MD: net/minecraft/client/gui/screens/worldselection/CreateWorldScreen/m_100912_ (Ljava/nio/file/Path;Ljava/nio/file/Path;Ljava/nio/file/Path;)V net/minecraft/client/gui/screens/worldselection/CreateWorldScreen/copyBetweenDirs (Ljava/nio/file/Path;Ljava/nio/file/Path;Ljava/nio/file/Path;)V +MD: net/minecraft/client/gui/screens/worldselection/CreateWorldScreen/m_100967_ ()V net/minecraft/client/gui/screens/worldselection/CreateWorldScreen/popScreen ()V +MD: net/minecraft/client/gui/screens/worldselection/CreateWorldScreen/m_100968_ ()Ljava/nio/file/Path; net/minecraft/client/gui/screens/worldselection/CreateWorldScreen/getTempDataPackDir ()Ljava/nio/file/Path; +MD: net/minecraft/client/gui/screens/worldselection/CreateWorldScreen/m_100972_ ()V net/minecraft/client/gui/screens/worldselection/CreateWorldScreen/onCreate ()V +MD: net/minecraft/client/gui/screens/worldselection/CreateWorldScreen/m_100976_ ()V net/minecraft/client/gui/screens/worldselection/CreateWorldScreen/removeTempDataPackDir ()V +MD: net/minecraft/client/gui/screens/worldselection/CreateWorldScreen/m_142416_ (Lnet/minecraft/client/gui/components/events/GuiEventListener;)Lnet/minecraft/client/gui/components/events/GuiEventListener; net/minecraft/client/gui/screens/worldselection/CreateWorldScreen/addRenderableWidget (Lnet/minecraft/client/gui/components/events/GuiEventListener;)Lnet/minecraft/client/gui/components/events/GuiEventListener; +MD: net/minecraft/client/gui/screens/worldselection/CreateWorldScreen/m_205447_ (Z)Lnet/minecraft/world/level/LevelSettings; net/minecraft/client/gui/screens/worldselection/CreateWorldScreen/createLevelSettings (Z)Lnet/minecraft/world/level/LevelSettings; +MD: net/minecraft/client/gui/screens/worldselection/CreateWorldScreen/m_232868_ ()Ljava/util/Optional; net/minecraft/client/gui/screens/worldselection/CreateWorldScreen/createNewWorldDirectory ()Ljava/util/Optional; +MD: net/minecraft/client/gui/screens/worldselection/CreateWorldScreen/m_232893_ (Lcom/mojang/serialization/DynamicOps;Lcom/google/gson/JsonElement;)Lcom/mojang/serialization/DataResult; net/minecraft/client/gui/screens/worldselection/CreateWorldScreen/lambda$applyNewPackConfig$11 (Lcom/mojang/serialization/DynamicOps;Lcom/google/gson/JsonElement;)Lcom/mojang/serialization/DataResult; +MD: net/minecraft/client/gui/screens/worldselection/CreateWorldScreen/m_232896_ (Lnet/minecraft/client/Minecraft;Lnet/minecraft/client/gui/screens/Screen;)V net/minecraft/client/gui/screens/worldselection/CreateWorldScreen/openFresh (Lnet/minecraft/client/Minecraft;Lnet/minecraft/client/gui/screens/Screen;)V +MD: net/minecraft/client/gui/screens/worldselection/CreateWorldScreen/m_232899_ (Lnet/minecraft/client/Minecraft;Lnet/minecraft/network/chat/Component;)V net/minecraft/client/gui/screens/worldselection/CreateWorldScreen/queueLoadScreen (Lnet/minecraft/client/Minecraft;Lnet/minecraft/network/chat/Component;)V +MD: net/minecraft/client/gui/screens/worldselection/CreateWorldScreen/m_232902_ (Lnet/minecraft/client/gui/components/Button;)V net/minecraft/client/gui/screens/worldselection/CreateWorldScreen/lambda$init$4 (Lnet/minecraft/client/gui/components/Button;)V +MD: net/minecraft/client/gui/screens/worldselection/CreateWorldScreen/m_232920_ (Ljava/nio/file/Path;)Z net/minecraft/client/gui/screens/worldselection/CreateWorldScreen/lambda$createNewWorldDirectory$17 (Ljava/nio/file/Path;)Z +MD: net/minecraft/client/gui/screens/worldselection/CreateWorldScreen/m_232922_ (Ljava/nio/file/Path;Ljava/nio/file/Path;)Z net/minecraft/client/gui/screens/worldselection/CreateWorldScreen/lambda$createTempDataPackDirFromExistingWorld$19 (Ljava/nio/file/Path;Ljava/nio/file/Path;)Z +MD: net/minecraft/client/gui/screens/worldselection/CreateWorldScreen/m_232925_ (Ljava/util/List;Ljava/lang/String;)Z net/minecraft/client/gui/screens/worldselection/CreateWorldScreen/lambda$tryApplyNewDataPacks$9 (Ljava/util/List;Ljava/lang/String;)Z +MD: net/minecraft/client/gui/screens/worldselection/CreateWorldScreen/m_232930_ (Lorg/apache/commons/lang3/mutable/MutableObject;Ljava/nio/file/Path;Ljava/nio/file/Path;)V net/minecraft/client/gui/screens/worldselection/CreateWorldScreen/lambda$createTempDataPackDirFromExistingWorld$20 (Lorg/apache/commons/lang3/mutable/MutableObject;Ljava/nio/file/Path;Ljava/nio/file/Path;)V +MD: net/minecraft/client/gui/screens/worldselection/CreateWorldScreen/m_232937_ (Lnet/minecraft/client/gui/components/Button;)V net/minecraft/client/gui/screens/worldselection/CreateWorldScreen/lambda$init$3 (Lnet/minecraft/client/gui/components/Button;)V +MD: net/minecraft/client/gui/screens/worldselection/CreateWorldScreen/m_232941_ (Ljava/nio/file/Path;)V net/minecraft/client/gui/screens/worldselection/CreateWorldScreen/lambda$removeTempDataPackDir$16 (Ljava/nio/file/Path;)V +MD: net/minecraft/client/gui/screens/worldselection/CreateWorldScreen/m_232943_ (Ljava/nio/file/Path;Ljava/nio/file/Path;)V net/minecraft/client/gui/screens/worldselection/CreateWorldScreen/lambda$createNewWorldDirectory$18 (Ljava/nio/file/Path;Ljava/nio/file/Path;)V +MD: net/minecraft/client/gui/screens/worldselection/CreateWorldScreen/m_244671_ (Lnet/minecraft/server/packs/resources/CloseableResourceManager;Lnet/minecraft/server/ReloadableServerResources;Lnet/minecraft/core/LayeredRegistryAccess;Lnet/minecraft/client/gui/screens/worldselection/CreateWorldScreen$DataPackReloadCookie;)Lnet/minecraft/client/gui/screens/worldselection/WorldCreationContext; net/minecraft/client/gui/screens/worldselection/CreateWorldScreen/lambda$applyNewPackConfig$13 (Lnet/minecraft/server/packs/resources/CloseableResourceManager;Lnet/minecraft/server/ReloadableServerResources;Lnet/minecraft/core/LayeredRegistryAccess;Lnet/minecraft/client/gui/screens/worldselection/CreateWorldScreen$DataPackReloadCookie;)Lnet/minecraft/client/gui/screens/worldselection/WorldCreationContext; +MD: net/minecraft/client/gui/screens/worldselection/CreateWorldScreen/m_244672_ (Lnet/minecraft/server/WorldLoader$DataLoadContext;)Lnet/minecraft/server/WorldLoader$DataLoadOutput; net/minecraft/client/gui/screens/worldselection/CreateWorldScreen/lambda$openFresh$1 (Lnet/minecraft/server/WorldLoader$DataLoadContext;)Lnet/minecraft/server/WorldLoader$DataLoadOutput; +MD: net/minecraft/client/gui/screens/worldselection/CreateWorldScreen/m_244673_ (Lnet/minecraft/server/WorldLoader$DataLoadContext;)Lnet/minecraft/server/WorldLoader$DataLoadOutput; net/minecraft/client/gui/screens/worldselection/CreateWorldScreen/lambda$applyNewPackConfig$12 (Lnet/minecraft/server/WorldLoader$DataLoadContext;)Lnet/minecraft/server/WorldLoader$DataLoadOutput; +MD: net/minecraft/client/gui/screens/worldselection/CreateWorldScreen/m_244676_ (Lnet/minecraft/server/packs/resources/CloseableResourceManager;Lnet/minecraft/server/ReloadableServerResources;Lnet/minecraft/core/LayeredRegistryAccess;Lnet/minecraft/client/gui/screens/worldselection/CreateWorldScreen$DataPackReloadCookie;)Lnet/minecraft/client/gui/screens/worldselection/WorldCreationContext; net/minecraft/client/gui/screens/worldselection/CreateWorldScreen/lambda$openFresh$2 (Lnet/minecraft/server/packs/resources/CloseableResourceManager;Lnet/minecraft/server/ReloadableServerResources;Lnet/minecraft/core/LayeredRegistryAccess;Lnet/minecraft/client/gui/screens/worldselection/CreateWorldScreen$DataPackReloadCookie;)Lnet/minecraft/client/gui/screens/worldselection/WorldCreationContext; +MD: net/minecraft/client/gui/screens/worldselection/CreateWorldScreen/m_244678_ (Lnet/minecraft/world/level/levelgen/WorldDimensions$Complete;Lnet/minecraft/core/LayeredRegistryAccess;Lcom/mojang/serialization/Lifecycle;)V net/minecraft/client/gui/screens/worldselection/CreateWorldScreen/lambda$onCreate$6 (Lnet/minecraft/world/level/levelgen/WorldDimensions$Complete;Lnet/minecraft/core/LayeredRegistryAccess;Lcom/mojang/serialization/Lifecycle;)V +MD: net/minecraft/client/gui/screens/worldselection/CreateWorldScreen/m_245184_ (Lnet/minecraft/world/level/storage/PrimaryLevelData$SpecialWorldProperty;Lnet/minecraft/core/LayeredRegistryAccess;Lcom/mojang/serialization/Lifecycle;)V net/minecraft/client/gui/screens/worldselection/CreateWorldScreen/createNewWorld (Lnet/minecraft/world/level/storage/PrimaryLevelData$SpecialWorldProperty;Lnet/minecraft/core/LayeredRegistryAccess;Lcom/mojang/serialization/Lifecycle;)V +MD: net/minecraft/client/gui/screens/worldselection/CreateWorldScreen/m_245574_ (Lnet/minecraft/server/packs/repository/PackRepository;Lnet/minecraft/world/level/WorldDataConfiguration;)Lnet/minecraft/server/WorldLoader$InitConfig; net/minecraft/client/gui/screens/worldselection/CreateWorldScreen/createDefaultLoadConfig (Lnet/minecraft/server/packs/repository/PackRepository;Lnet/minecraft/world/level/WorldDataConfiguration;)Lnet/minecraft/server/WorldLoader$InitConfig; +MD: net/minecraft/client/gui/screens/worldselection/CreateWorldScreen/m_267511_ (Lnet/minecraft/client/gui/components/AbstractWidget;)V net/minecraft/client/gui/screens/worldselection/CreateWorldScreen/lambda$init$5 (Lnet/minecraft/client/gui/components/AbstractWidget;)V +MD: net/minecraft/client/gui/screens/worldselection/CreateWorldScreen/m_267512_ (Lnet/minecraft/client/gui/screens/worldselection/CreateWorldScreen;Lnet/minecraft/client/gui/components/events/GuiEventListener;)V net/minecraft/client/gui/screens/worldselection/CreateWorldScreen/lambda$new$0 (Lnet/minecraft/client/gui/screens/worldselection/CreateWorldScreen;Lnet/minecraft/client/gui/components/events/GuiEventListener;)V +MD: net/minecraft/client/gui/screens/worldselection/CreateWorldScreen/m_267581_ (Lnet/minecraft/client/gui/screens/worldselection/CreateWorldScreen;)Lnet/minecraft/client/gui/Font; net/minecraft/client/gui/screens/worldselection/CreateWorldScreen/access$300 (Lnet/minecraft/client/gui/screens/worldselection/CreateWorldScreen;)Lnet/minecraft/client/gui/Font; +MD: net/minecraft/client/gui/screens/worldselection/CreateWorldScreen/m_267602_ (Lnet/minecraft/client/gui/screens/worldselection/CreateWorldScreen;)Lnet/minecraft/client/Minecraft; net/minecraft/client/gui/screens/worldselection/CreateWorldScreen/access$500 (Lnet/minecraft/client/gui/screens/worldselection/CreateWorldScreen;)Lnet/minecraft/client/Minecraft; +MD: net/minecraft/client/gui/screens/worldselection/CreateWorldScreen/m_267637_ (Lnet/minecraft/world/level/WorldDataConfiguration;)Lcom/mojang/datafixers/util/Pair; net/minecraft/client/gui/screens/worldselection/CreateWorldScreen/getDataPackSelectionSettings (Lnet/minecraft/world/level/WorldDataConfiguration;)Lcom/mojang/datafixers/util/Pair; +MD: net/minecraft/client/gui/screens/worldselection/CreateWorldScreen/m_267682_ (Lnet/minecraft/client/gui/screens/worldselection/CreateWorldScreen;)Lnet/minecraft/client/gui/Font; net/minecraft/client/gui/screens/worldselection/CreateWorldScreen/access$400 (Lnet/minecraft/client/gui/screens/worldselection/CreateWorldScreen;)Lnet/minecraft/client/gui/Font; +MD: net/minecraft/client/gui/screens/worldselection/CreateWorldScreen/m_267719_ ()V net/minecraft/client/gui/screens/worldselection/CreateWorldScreen/repositionElements ()V +MD: net/minecraft/client/gui/screens/worldselection/CreateWorldScreen/m_267734_ (Lnet/minecraft/world/level/WorldDataConfiguration;)V net/minecraft/client/gui/screens/worldselection/CreateWorldScreen/openDataPackSelectionScreen (Lnet/minecraft/world/level/WorldDataConfiguration;)V +MD: net/minecraft/client/gui/screens/worldselection/CreateWorldScreen/m_267746_ (Lnet/minecraft/client/gui/screens/worldselection/CreateWorldScreen;)Lnet/minecraft/client/Minecraft; net/minecraft/client/gui/screens/worldselection/CreateWorldScreen/access$700 (Lnet/minecraft/client/gui/screens/worldselection/CreateWorldScreen;)Lnet/minecraft/client/Minecraft; +MD: net/minecraft/client/gui/screens/worldselection/CreateWorldScreen/m_267748_ ()Lnet/minecraft/client/gui/screens/worldselection/WorldCreationUiState; net/minecraft/client/gui/screens/worldselection/CreateWorldScreen/getUiState ()Lnet/minecraft/client/gui/screens/worldselection/WorldCreationUiState; +MD: net/minecraft/client/gui/screens/worldselection/CreateWorldScreen/m_267763_ (Lnet/minecraft/client/gui/screens/worldselection/CreateWorldScreen;)Lnet/minecraft/client/Minecraft; net/minecraft/client/gui/screens/worldselection/CreateWorldScreen/access$600 (Lnet/minecraft/client/gui/screens/worldselection/CreateWorldScreen;)Lnet/minecraft/client/Minecraft; +MD: net/minecraft/client/gui/screens/worldselection/CreateWorldScreen/m_267793_ (Lnet/minecraft/client/gui/screens/worldselection/CreateWorldScreen;)Lnet/minecraft/client/gui/Font; net/minecraft/client/gui/screens/worldselection/CreateWorldScreen/access$100 (Lnet/minecraft/client/gui/screens/worldselection/CreateWorldScreen;)Lnet/minecraft/client/gui/Font; +MD: net/minecraft/client/gui/screens/worldselection/CreateWorldScreen/m_267796_ (Lnet/minecraft/client/gui/screens/worldselection/CreateWorldScreen;)Lnet/minecraft/client/Minecraft; net/minecraft/client/gui/screens/worldselection/CreateWorldScreen/access$000 (Lnet/minecraft/client/gui/screens/worldselection/CreateWorldScreen;)Lnet/minecraft/client/Minecraft; +MD: net/minecraft/client/gui/screens/worldselection/CreateWorldScreen/m_267821_ (Lnet/minecraft/client/gui/screens/worldselection/CreateWorldScreen;Lnet/minecraft/client/gui/components/events/GuiEventListener;)V net/minecraft/client/gui/screens/worldselection/CreateWorldScreen/access$200 (Lnet/minecraft/client/gui/screens/worldselection/CreateWorldScreen;Lnet/minecraft/client/gui/components/events/GuiEventListener;)V +MD: net/minecraft/client/gui/screens/worldselection/CreateWorldScreen/m_268777_ (Ljava/util/function/Consumer;Z)V net/minecraft/client/gui/screens/worldselection/CreateWorldScreen/lambda$applyNewPackConfig$14 (Ljava/util/function/Consumer;Z)V +MD: net/minecraft/client/gui/screens/worldselection/CreateWorldScreen/m_268780_ (Lnet/minecraft/server/packs/repository/PackRepository;Lnet/minecraft/world/level/WorldDataConfiguration;Ljava/util/function/Consumer;Z)V net/minecraft/client/gui/screens/worldselection/CreateWorldScreen/lambda$tryApplyNewDataPacks$10 (Lnet/minecraft/server/packs/repository/PackRepository;Lnet/minecraft/world/level/WorldDataConfiguration;Ljava/util/function/Consumer;Z)V +MD: net/minecraft/client/gui/screens/worldselection/CreateWorldScreen/m_268781_ (Lnet/minecraft/server/packs/repository/PackRepository;)V net/minecraft/client/gui/screens/worldselection/CreateWorldScreen/lambda$openExperimentsScreen$7 (Lnet/minecraft/server/packs/repository/PackRepository;)V +MD: net/minecraft/client/gui/screens/worldselection/CreateWorldScreen/m_268782_ (Lnet/minecraft/server/packs/repository/PackRepository;)V net/minecraft/client/gui/screens/worldselection/CreateWorldScreen/lambda$openDataPackSelectionScreen$8 (Lnet/minecraft/server/packs/repository/PackRepository;)V +MD: net/minecraft/client/gui/screens/worldselection/CreateWorldScreen/m_269431_ (Lnet/minecraft/server/packs/repository/PackRepository;Lnet/minecraft/world/level/WorldDataConfiguration;Ljava/util/function/Consumer;)V net/minecraft/client/gui/screens/worldselection/CreateWorldScreen/applyNewPackConfig (Lnet/minecraft/server/packs/repository/PackRepository;Lnet/minecraft/world/level/WorldDataConfiguration;Ljava/util/function/Consumer;)V +MD: net/minecraft/client/gui/screens/worldselection/CreateWorldScreen/m_269443_ (Lnet/minecraft/server/packs/repository/PackRepository;ZLjava/util/function/Consumer;)V net/minecraft/client/gui/screens/worldselection/CreateWorldScreen/tryApplyNewDataPacks (Lnet/minecraft/server/packs/repository/PackRepository;ZLjava/util/function/Consumer;)V +MD: net/minecraft/client/gui/screens/worldselection/CreateWorldScreen/m_269545_ (Lnet/minecraft/world/level/WorldDataConfiguration;)V net/minecraft/client/gui/screens/worldselection/CreateWorldScreen/openExperimentsScreen (Lnet/minecraft/world/level/WorldDataConfiguration;)V +MD: net/minecraft/client/gui/screens/worldselection/CreateWorldScreen/m_275847_ (Lnet/minecraft/client/Minecraft;Lnet/minecraft/client/gui/screens/Screen;Lnet/minecraft/world/level/LevelSettings;Lnet/minecraft/client/gui/screens/worldselection/WorldCreationContext;Ljava/nio/file/Path;)Lnet/minecraft/client/gui/screens/worldselection/CreateWorldScreen; net/minecraft/client/gui/screens/worldselection/CreateWorldScreen/createFromExisting (Lnet/minecraft/client/Minecraft;Lnet/minecraft/client/gui/screens/Screen;Lnet/minecraft/world/level/LevelSettings;Lnet/minecraft/client/gui/screens/worldselection/WorldCreationContext;Ljava/nio/file/Path;)Lnet/minecraft/client/gui/screens/worldselection/CreateWorldScreen; +MD: net/minecraft/client/gui/screens/worldselection/CreateWorldScreen/m_279849_ (Ljava/util/function/Consumer;Ljava/lang/Void;Ljava/lang/Throwable;)Ljava/lang/Object; net/minecraft/client/gui/screens/worldselection/CreateWorldScreen/lambda$applyNewPackConfig$15 (Ljava/util/function/Consumer;Ljava/lang/Void;Ljava/lang/Throwable;)Ljava/lang/Object; +MD: net/minecraft/client/gui/screens/worldselection/CreateWorldScreen/m_280039_ (Lnet/minecraft/client/gui/GuiGraphics;)V net/minecraft/client/gui/screens/worldselection/CreateWorldScreen/renderDirtBackground (Lnet/minecraft/client/gui/GuiGraphics;)V +MD: net/minecraft/client/gui/screens/worldselection/CreateWorldScreen/m_7379_ ()V net/minecraft/client/gui/screens/worldselection/CreateWorldScreen/onClose ()V +MD: net/minecraft/client/gui/screens/worldselection/CreateWorldScreen/m_7787_ (Lnet/minecraft/client/gui/components/events/GuiEventListener;)Lnet/minecraft/client/gui/components/events/GuiEventListener; net/minecraft/client/gui/screens/worldselection/CreateWorldScreen/addWidget (Lnet/minecraft/client/gui/components/events/GuiEventListener;)Lnet/minecraft/client/gui/components/events/GuiEventListener; +MD: net/minecraft/client/gui/screens/worldselection/CreateWorldScreen/m_7856_ ()V net/minecraft/client/gui/screens/worldselection/CreateWorldScreen/init ()V +MD: net/minecraft/client/gui/screens/worldselection/CreateWorldScreen/m_7933_ (III)Z net/minecraft/client/gui/screens/worldselection/CreateWorldScreen/keyPressed (III)Z +MD: net/minecraft/client/gui/screens/worldselection/CreateWorldScreen/m_86600_ ()V net/minecraft/client/gui/screens/worldselection/CreateWorldScreen/tick ()V +MD: net/minecraft/client/gui/screens/worldselection/CreateWorldScreen/m_88315_ (Lnet/minecraft/client/gui/GuiGraphics;IIF)V net/minecraft/client/gui/screens/worldselection/CreateWorldScreen/render (Lnet/minecraft/client/gui/GuiGraphics;IIF)V +MD: net/minecraft/client/gui/screens/worldselection/CreateWorldScreen$DataPackReloadCookie/ (Lnet/minecraft/world/level/levelgen/WorldGenSettings;Lnet/minecraft/world/level/WorldDataConfiguration;)V net/minecraft/client/gui/screens/worldselection/CreateWorldScreen$DataPackReloadCookie/ (Lnet/minecraft/world/level/levelgen/WorldGenSettings;Lnet/minecraft/world/level/WorldDataConfiguration;)V +MD: net/minecraft/client/gui/screens/worldselection/CreateWorldScreen$DataPackReloadCookie/equals (Ljava/lang/Object;)Z net/minecraft/client/gui/screens/worldselection/CreateWorldScreen$DataPackReloadCookie/equals (Ljava/lang/Object;)Z +MD: net/minecraft/client/gui/screens/worldselection/CreateWorldScreen$DataPackReloadCookie/f_243966_ ()Lnet/minecraft/world/level/levelgen/WorldGenSettings; net/minecraft/client/gui/screens/worldselection/CreateWorldScreen$DataPackReloadCookie/worldGenSettings ()Lnet/minecraft/world/level/levelgen/WorldGenSettings; +MD: net/minecraft/client/gui/screens/worldselection/CreateWorldScreen$DataPackReloadCookie/f_243979_ ()Lnet/minecraft/world/level/WorldDataConfiguration; net/minecraft/client/gui/screens/worldselection/CreateWorldScreen$DataPackReloadCookie/dataConfiguration ()Lnet/minecraft/world/level/WorldDataConfiguration; +MD: net/minecraft/client/gui/screens/worldselection/CreateWorldScreen$DataPackReloadCookie/hashCode ()I net/minecraft/client/gui/screens/worldselection/CreateWorldScreen$DataPackReloadCookie/hashCode ()I +MD: net/minecraft/client/gui/screens/worldselection/CreateWorldScreen$DataPackReloadCookie/toString ()Ljava/lang/String; net/minecraft/client/gui/screens/worldselection/CreateWorldScreen$DataPackReloadCookie/toString ()Ljava/lang/String; +MD: net/minecraft/client/gui/screens/worldselection/CreateWorldScreen$GameTab/ ()V net/minecraft/client/gui/screens/worldselection/CreateWorldScreen$GameTab/ ()V +MD: net/minecraft/client/gui/screens/worldselection/CreateWorldScreen$GameTab/ (Lnet/minecraft/client/gui/screens/worldselection/CreateWorldScreen;)V net/minecraft/client/gui/screens/worldselection/CreateWorldScreen$GameTab/ (Lnet/minecraft/client/gui/screens/worldselection/CreateWorldScreen;)V +MD: net/minecraft/client/gui/screens/worldselection/CreateWorldScreen$GameTab/m_267565_ (Lnet/minecraft/client/gui/components/CycleButton;Lnet/minecraft/world/Difficulty;)V net/minecraft/client/gui/screens/worldselection/CreateWorldScreen$GameTab/lambda$new$4 (Lnet/minecraft/client/gui/components/CycleButton;Lnet/minecraft/world/Difficulty;)V +MD: net/minecraft/client/gui/screens/worldselection/CreateWorldScreen$GameTab/m_267575_ (Lnet/minecraft/client/gui/components/CycleButton;Ljava/lang/Boolean;)V net/minecraft/client/gui/screens/worldselection/CreateWorldScreen$GameTab/lambda$new$7 (Lnet/minecraft/client/gui/components/CycleButton;Ljava/lang/Boolean;)V +MD: net/minecraft/client/gui/screens/worldselection/CreateWorldScreen$GameTab/m_267596_ (Ljava/lang/Boolean;)Lnet/minecraft/client/gui/components/Tooltip; net/minecraft/client/gui/screens/worldselection/CreateWorldScreen$GameTab/lambda$new$6 (Ljava/lang/Boolean;)Lnet/minecraft/client/gui/components/Tooltip; +MD: net/minecraft/client/gui/screens/worldselection/CreateWorldScreen$GameTab/m_267645_ (Lnet/minecraft/client/gui/screens/worldselection/WorldCreationUiState$SelectedGameMode;)Lnet/minecraft/network/chat/Component; net/minecraft/client/gui/screens/worldselection/CreateWorldScreen$GameTab/lambda$new$1 (Lnet/minecraft/client/gui/screens/worldselection/WorldCreationUiState$SelectedGameMode;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/client/gui/screens/worldselection/CreateWorldScreen$GameTab/m_267681_ ()V net/minecraft/client/gui/screens/worldselection/CreateWorldScreen$GameTab/tick ()V +MD: net/minecraft/client/gui/screens/worldselection/CreateWorldScreen$GameTab/m_267685_ (Lnet/minecraft/client/gui/components/CycleButton;Lnet/minecraft/client/gui/screens/worldselection/WorldCreationUiState$SelectedGameMode;)V net/minecraft/client/gui/screens/worldselection/CreateWorldScreen$GameTab/lambda$new$2 (Lnet/minecraft/client/gui/components/CycleButton;Lnet/minecraft/client/gui/screens/worldselection/WorldCreationUiState$SelectedGameMode;)V +MD: net/minecraft/client/gui/screens/worldselection/CreateWorldScreen$GameTab/m_268784_ (Lnet/minecraft/client/gui/components/Button;)V net/minecraft/client/gui/screens/worldselection/CreateWorldScreen$GameTab/lambda$new$9 (Lnet/minecraft/client/gui/components/Button;)V +MD: net/minecraft/client/gui/screens/worldselection/CreateWorldScreen$GameTab/m_275774_ (Lnet/minecraft/client/gui/screens/worldselection/WorldCreationUiState;)V net/minecraft/client/gui/screens/worldselection/CreateWorldScreen$GameTab/lambda$new$0 (Lnet/minecraft/client/gui/screens/worldselection/WorldCreationUiState;)V +MD: net/minecraft/client/gui/screens/worldselection/CreateWorldScreen$GameTab/m_279850_ (Lnet/minecraft/client/gui/components/CycleButton;Lnet/minecraft/client/gui/screens/worldselection/WorldCreationUiState;)V net/minecraft/client/gui/screens/worldselection/CreateWorldScreen$GameTab/lambda$new$8 (Lnet/minecraft/client/gui/components/CycleButton;Lnet/minecraft/client/gui/screens/worldselection/WorldCreationUiState;)V +MD: net/minecraft/client/gui/screens/worldselection/CreateWorldScreen$GameTab/m_279851_ (Lnet/minecraft/client/gui/components/CycleButton;Lnet/minecraft/client/gui/screens/worldselection/WorldCreationUiState;)V net/minecraft/client/gui/screens/worldselection/CreateWorldScreen$GameTab/lambda$new$5 (Lnet/minecraft/client/gui/components/CycleButton;Lnet/minecraft/client/gui/screens/worldselection/WorldCreationUiState;)V +MD: net/minecraft/client/gui/screens/worldselection/CreateWorldScreen$GameTab/m_279852_ (Lnet/minecraft/client/gui/components/CycleButton;Lnet/minecraft/client/gui/screens/worldselection/WorldCreationUiState;)V net/minecraft/client/gui/screens/worldselection/CreateWorldScreen$GameTab/lambda$new$3 (Lnet/minecraft/client/gui/components/CycleButton;Lnet/minecraft/client/gui/screens/worldselection/WorldCreationUiState;)V +MD: net/minecraft/client/gui/screens/worldselection/CreateWorldScreen$MoreTab/ ()V net/minecraft/client/gui/screens/worldselection/CreateWorldScreen$MoreTab/ ()V +MD: net/minecraft/client/gui/screens/worldselection/CreateWorldScreen$MoreTab/ (Lnet/minecraft/client/gui/screens/worldselection/CreateWorldScreen;)V net/minecraft/client/gui/screens/worldselection/CreateWorldScreen$MoreTab/ (Lnet/minecraft/client/gui/screens/worldselection/CreateWorldScreen;)V +MD: net/minecraft/client/gui/screens/worldselection/CreateWorldScreen$MoreTab/m_267578_ (Lnet/minecraft/client/gui/components/Button;)V net/minecraft/client/gui/screens/worldselection/CreateWorldScreen$MoreTab/lambda$new$2 (Lnet/minecraft/client/gui/components/Button;)V +MD: net/minecraft/client/gui/screens/worldselection/CreateWorldScreen$MoreTab/m_267650_ ()V net/minecraft/client/gui/screens/worldselection/CreateWorldScreen$MoreTab/openGameRulesScreen ()V +MD: net/minecraft/client/gui/screens/worldselection/CreateWorldScreen$MoreTab/m_267671_ (Ljava/util/Optional;)V net/minecraft/client/gui/screens/worldselection/CreateWorldScreen$MoreTab/lambda$openGameRulesScreen$3 (Ljava/util/Optional;)V +MD: net/minecraft/client/gui/screens/worldselection/CreateWorldScreen$MoreTab/m_267801_ (Lnet/minecraft/client/gui/components/Button;)V net/minecraft/client/gui/screens/worldselection/CreateWorldScreen$MoreTab/lambda$new$0 (Lnet/minecraft/client/gui/components/Button;)V +MD: net/minecraft/client/gui/screens/worldselection/CreateWorldScreen$MoreTab/m_268785_ (Lnet/minecraft/client/gui/components/Button;)V net/minecraft/client/gui/screens/worldselection/CreateWorldScreen$MoreTab/lambda$new$1 (Lnet/minecraft/client/gui/components/Button;)V +MD: net/minecraft/client/gui/screens/worldselection/CreateWorldScreen$WorldTab/ ()V net/minecraft/client/gui/screens/worldselection/CreateWorldScreen$WorldTab/ ()V +MD: net/minecraft/client/gui/screens/worldselection/CreateWorldScreen$WorldTab/ (Lnet/minecraft/client/gui/screens/worldselection/CreateWorldScreen;)V net/minecraft/client/gui/screens/worldselection/CreateWorldScreen$WorldTab/ (Lnet/minecraft/client/gui/screens/worldselection/CreateWorldScreen;)V +MD: net/minecraft/client/gui/screens/worldselection/CreateWorldScreen$WorldTab/m_267567_ (Ljava/lang/String;)V net/minecraft/client/gui/screens/worldselection/CreateWorldScreen$WorldTab/lambda$new$4 (Ljava/lang/String;)V +MD: net/minecraft/client/gui/screens/worldselection/CreateWorldScreen$WorldTab/m_267586_ (Lnet/minecraft/client/gui/components/Button;)V net/minecraft/client/gui/screens/worldselection/CreateWorldScreen$WorldTab/lambda$new$2 (Lnet/minecraft/client/gui/components/Button;)V +MD: net/minecraft/client/gui/screens/worldselection/CreateWorldScreen$WorldTab/m_267591_ (Lnet/minecraft/client/gui/components/CycleButton;)Lnet/minecraft/network/chat/MutableComponent; net/minecraft/client/gui/screens/worldselection/CreateWorldScreen$WorldTab/createTypeButtonNarration (Lnet/minecraft/client/gui/components/CycleButton;)Lnet/minecraft/network/chat/MutableComponent; +MD: net/minecraft/client/gui/screens/worldselection/CreateWorldScreen$WorldTab/m_267636_ ()Z net/minecraft/client/gui/screens/worldselection/CreateWorldScreen$WorldTab/lambda$new$5 ()Z +MD: net/minecraft/client/gui/screens/worldselection/CreateWorldScreen$WorldTab/m_267652_ ()V net/minecraft/client/gui/screens/worldselection/CreateWorldScreen$WorldTab/openPresetEditor ()V +MD: net/minecraft/client/gui/screens/worldselection/CreateWorldScreen$WorldTab/m_267668_ (Lnet/minecraft/client/gui/components/CycleButton;Lnet/minecraft/client/gui/screens/worldselection/WorldCreationUiState$WorldTypeEntry;)V net/minecraft/client/gui/screens/worldselection/CreateWorldScreen$WorldTab/lambda$new$0 (Lnet/minecraft/client/gui/components/CycleButton;Lnet/minecraft/client/gui/screens/worldselection/WorldCreationUiState$WorldTypeEntry;)V +MD: net/minecraft/client/gui/screens/worldselection/CreateWorldScreen$WorldTab/m_267681_ ()V net/minecraft/client/gui/screens/worldselection/CreateWorldScreen$WorldTab/tick ()V +MD: net/minecraft/client/gui/screens/worldselection/CreateWorldScreen$WorldTab/m_267705_ (Lnet/minecraft/client/gui/screens/worldselection/SwitchGrid;Lnet/minecraft/client/gui/screens/worldselection/WorldCreationUiState;)V net/minecraft/client/gui/screens/worldselection/CreateWorldScreen$WorldTab/lambda$new$8 (Lnet/minecraft/client/gui/screens/worldselection/SwitchGrid;Lnet/minecraft/client/gui/screens/worldselection/WorldCreationUiState;)V +MD: net/minecraft/client/gui/screens/worldselection/CreateWorldScreen$WorldTab/m_267785_ ()Z net/minecraft/client/gui/screens/worldselection/CreateWorldScreen$WorldTab/lambda$new$6 ()Z +MD: net/minecraft/client/gui/screens/worldselection/CreateWorldScreen$WorldTab/m_267806_ ()Lnet/minecraft/client/gui/components/CycleButton$ValueListSupplier; net/minecraft/client/gui/screens/worldselection/CreateWorldScreen$WorldTab/createWorldTypeValueSupplier ()Lnet/minecraft/client/gui/components/CycleButton$ValueListSupplier; +MD: net/minecraft/client/gui/screens/worldselection/CreateWorldScreen$WorldTab/m_267830_ (Lnet/minecraft/client/gui/layouts/GridLayout$RowHelper;Lnet/minecraft/client/gui/layouts/LayoutElement;)V net/minecraft/client/gui/screens/worldselection/CreateWorldScreen$WorldTab/lambda$new$7 (Lnet/minecraft/client/gui/layouts/GridLayout$RowHelper;Lnet/minecraft/client/gui/layouts/LayoutElement;)V +MD: net/minecraft/client/gui/screens/worldselection/CreateWorldScreen$WorldTab/m_279853_ (Lnet/minecraft/client/gui/components/CycleButton;Lnet/minecraft/client/gui/screens/worldselection/WorldCreationUiState;)V net/minecraft/client/gui/screens/worldselection/CreateWorldScreen$WorldTab/lambda$new$1 (Lnet/minecraft/client/gui/components/CycleButton;Lnet/minecraft/client/gui/screens/worldselection/WorldCreationUiState;)V +MD: net/minecraft/client/gui/screens/worldselection/CreateWorldScreen$WorldTab/m_279854_ (Lnet/minecraft/client/gui/screens/worldselection/WorldCreationUiState;)V net/minecraft/client/gui/screens/worldselection/CreateWorldScreen$WorldTab/lambda$new$3 (Lnet/minecraft/client/gui/screens/worldselection/WorldCreationUiState;)V +MD: net/minecraft/client/gui/screens/worldselection/CreateWorldScreen$WorldTab$1/ (Lnet/minecraft/client/gui/screens/worldselection/CreateWorldScreen$WorldTab;Lnet/minecraft/client/gui/Font;IIIILnet/minecraft/network/chat/Component;Lnet/minecraft/client/gui/screens/worldselection/CreateWorldScreen;)V net/minecraft/client/gui/screens/worldselection/CreateWorldScreen$WorldTab$1/ (Lnet/minecraft/client/gui/screens/worldselection/CreateWorldScreen$WorldTab;Lnet/minecraft/client/gui/Font;IIIILnet/minecraft/network/chat/Component;Lnet/minecraft/client/gui/screens/worldselection/CreateWorldScreen;)V +MD: net/minecraft/client/gui/screens/worldselection/CreateWorldScreen$WorldTab$1/m_5646_ ()Lnet/minecraft/network/chat/MutableComponent; net/minecraft/client/gui/screens/worldselection/CreateWorldScreen$WorldTab$1/createNarrationMessage ()Lnet/minecraft/network/chat/MutableComponent; +MD: net/minecraft/client/gui/screens/worldselection/CreateWorldScreen$WorldTab$2/ (Lnet/minecraft/client/gui/screens/worldselection/CreateWorldScreen$WorldTab;)V net/minecraft/client/gui/screens/worldselection/CreateWorldScreen$WorldTab$2/ (Lnet/minecraft/client/gui/screens/worldselection/CreateWorldScreen$WorldTab;)V +MD: net/minecraft/client/gui/screens/worldselection/CreateWorldScreen$WorldTab$2/m_142477_ ()Ljava/util/List; net/minecraft/client/gui/screens/worldselection/CreateWorldScreen$WorldTab$2/getSelectedList ()Ljava/util/List; +MD: net/minecraft/client/gui/screens/worldselection/CreateWorldScreen$WorldTab$2/m_142478_ ()Ljava/util/List; net/minecraft/client/gui/screens/worldselection/CreateWorldScreen$WorldTab$2/getDefaultList ()Ljava/util/List; +MD: net/minecraft/client/gui/screens/worldselection/EditGameRulesScreen/ (Lnet/minecraft/world/level/GameRules;Ljava/util/function/Consumer;)V net/minecraft/client/gui/screens/worldselection/EditGameRulesScreen/ (Lnet/minecraft/world/level/GameRules;Ljava/util/function/Consumer;)V +MD: net/minecraft/client/gui/screens/worldselection/EditGameRulesScreen/m_101058_ (Lnet/minecraft/client/gui/components/Button;)V net/minecraft/client/gui/screens/worldselection/EditGameRulesScreen/lambda$init$0 (Lnet/minecraft/client/gui/components/Button;)V +MD: net/minecraft/client/gui/screens/worldselection/EditGameRulesScreen/m_101060_ (Lnet/minecraft/client/gui/screens/worldselection/EditGameRulesScreen$RuleEntry;)V net/minecraft/client/gui/screens/worldselection/EditGameRulesScreen/markInvalid (Lnet/minecraft/client/gui/screens/worldselection/EditGameRulesScreen$RuleEntry;)V +MD: net/minecraft/client/gui/screens/worldselection/EditGameRulesScreen/m_101062_ (Lnet/minecraft/client/gui/screens/worldselection/EditGameRulesScreen;)Lnet/minecraft/client/Minecraft; net/minecraft/client/gui/screens/worldselection/EditGameRulesScreen/access$000 (Lnet/minecraft/client/gui/screens/worldselection/EditGameRulesScreen;)Lnet/minecraft/client/Minecraft; +MD: net/minecraft/client/gui/screens/worldselection/EditGameRulesScreen/m_101072_ (Lnet/minecraft/client/gui/components/Button;)V net/minecraft/client/gui/screens/worldselection/EditGameRulesScreen/lambda$init$1 (Lnet/minecraft/client/gui/components/Button;)V +MD: net/minecraft/client/gui/screens/worldselection/EditGameRulesScreen/m_101074_ (Lnet/minecraft/client/gui/screens/worldselection/EditGameRulesScreen$RuleEntry;)V net/minecraft/client/gui/screens/worldselection/EditGameRulesScreen/clearInvalid (Lnet/minecraft/client/gui/screens/worldselection/EditGameRulesScreen$RuleEntry;)V +MD: net/minecraft/client/gui/screens/worldselection/EditGameRulesScreen/m_101076_ (Lnet/minecraft/client/gui/screens/worldselection/EditGameRulesScreen;)Lnet/minecraft/client/Minecraft; net/minecraft/client/gui/screens/worldselection/EditGameRulesScreen/access$100 (Lnet/minecraft/client/gui/screens/worldselection/EditGameRulesScreen;)Lnet/minecraft/client/Minecraft; +MD: net/minecraft/client/gui/screens/worldselection/EditGameRulesScreen/m_101083_ (Lnet/minecraft/client/gui/screens/worldselection/EditGameRulesScreen;)Lnet/minecraft/client/Minecraft; net/minecraft/client/gui/screens/worldselection/EditGameRulesScreen/access$200 (Lnet/minecraft/client/gui/screens/worldselection/EditGameRulesScreen;)Lnet/minecraft/client/Minecraft; +MD: net/minecraft/client/gui/screens/worldselection/EditGameRulesScreen/m_101085_ (Lnet/minecraft/client/gui/screens/worldselection/EditGameRulesScreen;)Lnet/minecraft/client/Minecraft; net/minecraft/client/gui/screens/worldselection/EditGameRulesScreen/access$300 (Lnet/minecraft/client/gui/screens/worldselection/EditGameRulesScreen;)Lnet/minecraft/client/Minecraft; +MD: net/minecraft/client/gui/screens/worldselection/EditGameRulesScreen/m_101088_ (Lnet/minecraft/client/gui/screens/worldselection/EditGameRulesScreen;)Lnet/minecraft/client/Minecraft; net/minecraft/client/gui/screens/worldselection/EditGameRulesScreen/access$400 (Lnet/minecraft/client/gui/screens/worldselection/EditGameRulesScreen;)Lnet/minecraft/client/Minecraft; +MD: net/minecraft/client/gui/screens/worldselection/EditGameRulesScreen/m_101090_ (Lnet/minecraft/client/gui/screens/worldselection/EditGameRulesScreen;)Lnet/minecraft/client/Minecraft; net/minecraft/client/gui/screens/worldselection/EditGameRulesScreen/access$500 (Lnet/minecraft/client/gui/screens/worldselection/EditGameRulesScreen;)Lnet/minecraft/client/Minecraft; +MD: net/minecraft/client/gui/screens/worldselection/EditGameRulesScreen/m_101094_ ()V net/minecraft/client/gui/screens/worldselection/EditGameRulesScreen/updateDoneButton ()V +MD: net/minecraft/client/gui/screens/worldselection/EditGameRulesScreen/m_170209_ (Lnet/minecraft/client/gui/screens/worldselection/EditGameRulesScreen;)Lnet/minecraft/client/Minecraft; net/minecraft/client/gui/screens/worldselection/EditGameRulesScreen/access$600 (Lnet/minecraft/client/gui/screens/worldselection/EditGameRulesScreen;)Lnet/minecraft/client/Minecraft; +MD: net/minecraft/client/gui/screens/worldselection/EditGameRulesScreen/m_170211_ (Lnet/minecraft/client/gui/screens/worldselection/EditGameRulesScreen;)Lnet/minecraft/client/gui/Font; net/minecraft/client/gui/screens/worldselection/EditGameRulesScreen/access$700 (Lnet/minecraft/client/gui/screens/worldselection/EditGameRulesScreen;)Lnet/minecraft/client/gui/Font; +MD: net/minecraft/client/gui/screens/worldselection/EditGameRulesScreen/m_267513_ (Lnet/minecraft/client/gui/screens/worldselection/EditGameRulesScreen;Lnet/minecraft/client/gui/components/events/GuiEventListener;)V net/minecraft/client/gui/screens/worldselection/EditGameRulesScreen/lambda$init$2 (Lnet/minecraft/client/gui/screens/worldselection/EditGameRulesScreen;Lnet/minecraft/client/gui/components/events/GuiEventListener;)V +MD: net/minecraft/client/gui/screens/worldselection/EditGameRulesScreen/m_7379_ ()V net/minecraft/client/gui/screens/worldselection/EditGameRulesScreen/onClose ()V +MD: net/minecraft/client/gui/screens/worldselection/EditGameRulesScreen/m_7856_ ()V net/minecraft/client/gui/screens/worldselection/EditGameRulesScreen/init ()V +MD: net/minecraft/client/gui/screens/worldselection/EditGameRulesScreen/m_88315_ (Lnet/minecraft/client/gui/GuiGraphics;IIF)V net/minecraft/client/gui/screens/worldselection/EditGameRulesScreen/render (Lnet/minecraft/client/gui/GuiGraphics;IIF)V +MD: net/minecraft/client/gui/screens/worldselection/EditGameRulesScreen$BooleanRuleEntry/ (Lnet/minecraft/client/gui/screens/worldselection/EditGameRulesScreen;Lnet/minecraft/network/chat/Component;Ljava/util/List;Ljava/lang/String;Lnet/minecraft/world/level/GameRules$BooleanValue;)V net/minecraft/client/gui/screens/worldselection/EditGameRulesScreen$BooleanRuleEntry/ (Lnet/minecraft/client/gui/screens/worldselection/EditGameRulesScreen;Lnet/minecraft/network/chat/Component;Ljava/util/List;Ljava/lang/String;Lnet/minecraft/world/level/GameRules$BooleanValue;)V +MD: net/minecraft/client/gui/screens/worldselection/EditGameRulesScreen$BooleanRuleEntry/m_170213_ (Lnet/minecraft/world/level/GameRules$BooleanValue;Lnet/minecraft/client/gui/components/CycleButton;Ljava/lang/Boolean;)V net/minecraft/client/gui/screens/worldselection/EditGameRulesScreen$BooleanRuleEntry/lambda$new$1 (Lnet/minecraft/world/level/GameRules$BooleanValue;Lnet/minecraft/client/gui/components/CycleButton;Ljava/lang/Boolean;)V +MD: net/minecraft/client/gui/screens/worldselection/EditGameRulesScreen$BooleanRuleEntry/m_170217_ (Ljava/lang/String;Lnet/minecraft/client/gui/components/CycleButton;)Lnet/minecraft/network/chat/MutableComponent; net/minecraft/client/gui/screens/worldselection/EditGameRulesScreen$BooleanRuleEntry/lambda$new$0 (Ljava/lang/String;Lnet/minecraft/client/gui/components/CycleButton;)Lnet/minecraft/network/chat/MutableComponent; +MD: net/minecraft/client/gui/screens/worldselection/EditGameRulesScreen$BooleanRuleEntry/m_6311_ (Lnet/minecraft/client/gui/GuiGraphics;IIIIIIIZF)V net/minecraft/client/gui/screens/worldselection/EditGameRulesScreen$BooleanRuleEntry/render (Lnet/minecraft/client/gui/GuiGraphics;IIIIIIIZF)V +MD: net/minecraft/client/gui/screens/worldselection/EditGameRulesScreen$CategoryRuleEntry/ (Lnet/minecraft/client/gui/screens/worldselection/EditGameRulesScreen;Lnet/minecraft/network/chat/Component;)V net/minecraft/client/gui/screens/worldselection/EditGameRulesScreen$CategoryRuleEntry/ (Lnet/minecraft/client/gui/screens/worldselection/EditGameRulesScreen;Lnet/minecraft/network/chat/Component;)V +MD: net/minecraft/client/gui/screens/worldselection/EditGameRulesScreen$CategoryRuleEntry/m_142437_ ()Ljava/util/List; net/minecraft/client/gui/screens/worldselection/EditGameRulesScreen$CategoryRuleEntry/narratables ()Ljava/util/List; +MD: net/minecraft/client/gui/screens/worldselection/EditGameRulesScreen$CategoryRuleEntry/m_6311_ (Lnet/minecraft/client/gui/GuiGraphics;IIIIIIIZF)V net/minecraft/client/gui/screens/worldselection/EditGameRulesScreen$CategoryRuleEntry/render (Lnet/minecraft/client/gui/GuiGraphics;IIIIIIIZF)V +MD: net/minecraft/client/gui/screens/worldselection/EditGameRulesScreen$CategoryRuleEntry/m_6702_ ()Ljava/util/List; net/minecraft/client/gui/screens/worldselection/EditGameRulesScreen$CategoryRuleEntry/children ()Ljava/util/List; +MD: net/minecraft/client/gui/screens/worldselection/EditGameRulesScreen$CategoryRuleEntry$1/ (Lnet/minecraft/client/gui/screens/worldselection/EditGameRulesScreen$CategoryRuleEntry;)V net/minecraft/client/gui/screens/worldselection/EditGameRulesScreen$CategoryRuleEntry$1/ (Lnet/minecraft/client/gui/screens/worldselection/EditGameRulesScreen$CategoryRuleEntry;)V +MD: net/minecraft/client/gui/screens/worldselection/EditGameRulesScreen$CategoryRuleEntry$1/m_142291_ (Lnet/minecraft/client/gui/narration/NarrationElementOutput;)V net/minecraft/client/gui/screens/worldselection/EditGameRulesScreen$CategoryRuleEntry$1/updateNarration (Lnet/minecraft/client/gui/narration/NarrationElementOutput;)V +MD: net/minecraft/client/gui/screens/worldselection/EditGameRulesScreen$CategoryRuleEntry$1/m_142684_ ()Lnet/minecraft/client/gui/narration/NarratableEntry$NarrationPriority; net/minecraft/client/gui/screens/worldselection/EditGameRulesScreen$CategoryRuleEntry$1/narrationPriority ()Lnet/minecraft/client/gui/narration/NarratableEntry$NarrationPriority; +MD: net/minecraft/client/gui/screens/worldselection/EditGameRulesScreen$EntryFactory/m_101154_ (Lnet/minecraft/network/chat/Component;Ljava/util/List;Ljava/lang/String;Lnet/minecraft/world/level/GameRules$Value;)Lnet/minecraft/client/gui/screens/worldselection/EditGameRulesScreen$RuleEntry; net/minecraft/client/gui/screens/worldselection/EditGameRulesScreen$EntryFactory/create (Lnet/minecraft/network/chat/Component;Ljava/util/List;Ljava/lang/String;Lnet/minecraft/world/level/GameRules$Value;)Lnet/minecraft/client/gui/screens/worldselection/EditGameRulesScreen$RuleEntry; +MD: net/minecraft/client/gui/screens/worldselection/EditGameRulesScreen$GameRuleEntry/ (Lnet/minecraft/client/gui/screens/worldselection/EditGameRulesScreen;Ljava/util/List;Lnet/minecraft/network/chat/Component;)V net/minecraft/client/gui/screens/worldselection/EditGameRulesScreen$GameRuleEntry/ (Lnet/minecraft/client/gui/screens/worldselection/EditGameRulesScreen;Ljava/util/List;Lnet/minecraft/network/chat/Component;)V +MD: net/minecraft/client/gui/screens/worldselection/EditGameRulesScreen$GameRuleEntry/m_142437_ ()Ljava/util/List; net/minecraft/client/gui/screens/worldselection/EditGameRulesScreen$GameRuleEntry/narratables ()Ljava/util/List; +MD: net/minecraft/client/gui/screens/worldselection/EditGameRulesScreen$GameRuleEntry/m_280223_ (Lnet/minecraft/client/gui/GuiGraphics;II)V net/minecraft/client/gui/screens/worldselection/EditGameRulesScreen$GameRuleEntry/renderLabel (Lnet/minecraft/client/gui/GuiGraphics;II)V +MD: net/minecraft/client/gui/screens/worldselection/EditGameRulesScreen$GameRuleEntry/m_6702_ ()Ljava/util/List; net/minecraft/client/gui/screens/worldselection/EditGameRulesScreen$GameRuleEntry/children ()Ljava/util/List; +MD: net/minecraft/client/gui/screens/worldselection/EditGameRulesScreen$IntegerRuleEntry/ (Lnet/minecraft/client/gui/screens/worldselection/EditGameRulesScreen;Lnet/minecraft/network/chat/Component;Ljava/util/List;Ljava/lang/String;Lnet/minecraft/world/level/GameRules$IntegerValue;)V net/minecraft/client/gui/screens/worldselection/EditGameRulesScreen$IntegerRuleEntry/ (Lnet/minecraft/client/gui/screens/worldselection/EditGameRulesScreen;Lnet/minecraft/network/chat/Component;Ljava/util/List;Ljava/lang/String;Lnet/minecraft/world/level/GameRules$IntegerValue;)V +MD: net/minecraft/client/gui/screens/worldselection/EditGameRulesScreen$IntegerRuleEntry/m_101179_ (Lnet/minecraft/world/level/GameRules$IntegerValue;Ljava/lang/String;)V net/minecraft/client/gui/screens/worldselection/EditGameRulesScreen$IntegerRuleEntry/lambda$new$0 (Lnet/minecraft/world/level/GameRules$IntegerValue;Ljava/lang/String;)V +MD: net/minecraft/client/gui/screens/worldselection/EditGameRulesScreen$IntegerRuleEntry/m_6311_ (Lnet/minecraft/client/gui/GuiGraphics;IIIIIIIZF)V net/minecraft/client/gui/screens/worldselection/EditGameRulesScreen$IntegerRuleEntry/render (Lnet/minecraft/client/gui/GuiGraphics;IIIIIIIZF)V +MD: net/minecraft/client/gui/screens/worldselection/EditGameRulesScreen$RuleEntry/ (Ljava/util/List;)V net/minecraft/client/gui/screens/worldselection/EditGameRulesScreen$RuleEntry/ (Ljava/util/List;)V +MD: net/minecraft/client/gui/screens/worldselection/EditGameRulesScreen$RuleList/ (Lnet/minecraft/client/gui/screens/worldselection/EditGameRulesScreen;Lnet/minecraft/world/level/GameRules;)V net/minecraft/client/gui/screens/worldselection/EditGameRulesScreen$RuleList/ (Lnet/minecraft/client/gui/screens/worldselection/EditGameRulesScreen;Lnet/minecraft/world/level/GameRules;)V +MD: net/minecraft/client/gui/screens/worldselection/EditGameRulesScreen$RuleList/m_101209_ (Ljava/util/Map$Entry;)V net/minecraft/client/gui/screens/worldselection/EditGameRulesScreen$RuleList/lambda$new$1 (Ljava/util/Map$Entry;)V +MD: net/minecraft/client/gui/screens/worldselection/EditGameRulesScreen$RuleList/m_170228_ (Ljava/util/Map$Entry;)V net/minecraft/client/gui/screens/worldselection/EditGameRulesScreen$RuleList/lambda$new$0 (Ljava/util/Map$Entry;)V +MD: net/minecraft/client/gui/screens/worldselection/EditGameRulesScreen$RuleList/m_88315_ (Lnet/minecraft/client/gui/GuiGraphics;IIF)V net/minecraft/client/gui/screens/worldselection/EditGameRulesScreen$RuleList/render (Lnet/minecraft/client/gui/GuiGraphics;IIF)V +MD: net/minecraft/client/gui/screens/worldselection/EditGameRulesScreen$RuleList$1/ (Lnet/minecraft/client/gui/screens/worldselection/EditGameRulesScreen$RuleList;Lnet/minecraft/client/gui/screens/worldselection/EditGameRulesScreen;Lnet/minecraft/world/level/GameRules;Ljava/util/Map;)V net/minecraft/client/gui/screens/worldselection/EditGameRulesScreen$RuleList$1/ (Lnet/minecraft/client/gui/screens/worldselection/EditGameRulesScreen$RuleList;Lnet/minecraft/client/gui/screens/worldselection/EditGameRulesScreen;Lnet/minecraft/world/level/GameRules;Ljava/util/Map;)V +MD: net/minecraft/client/gui/screens/worldselection/EditGameRulesScreen$RuleList$1/m_101222_ (Lnet/minecraft/world/level/GameRules$Category;)Ljava/util/Map; net/minecraft/client/gui/screens/worldselection/EditGameRulesScreen$RuleList$1/lambda$addEntry$2 (Lnet/minecraft/world/level/GameRules$Category;)Ljava/util/Map; +MD: net/minecraft/client/gui/screens/worldselection/EditGameRulesScreen$RuleList$1/m_101224_ (Lnet/minecraft/world/level/GameRules$Key;Lnet/minecraft/client/gui/screens/worldselection/EditGameRulesScreen$EntryFactory;)V net/minecraft/client/gui/screens/worldselection/EditGameRulesScreen$RuleList$1/addEntry (Lnet/minecraft/world/level/GameRules$Key;Lnet/minecraft/client/gui/screens/worldselection/EditGameRulesScreen$EntryFactory;)V +MD: net/minecraft/client/gui/screens/worldselection/EditGameRulesScreen$RuleList$1/m_101227_ (Lnet/minecraft/network/chat/Component;Ljava/util/List;Ljava/lang/String;Lnet/minecraft/world/level/GameRules$BooleanValue;)Lnet/minecraft/client/gui/screens/worldselection/EditGameRulesScreen$RuleEntry; net/minecraft/client/gui/screens/worldselection/EditGameRulesScreen$RuleList$1/lambda$visitBoolean$0 (Lnet/minecraft/network/chat/Component;Ljava/util/List;Ljava/lang/String;Lnet/minecraft/world/level/GameRules$BooleanValue;)Lnet/minecraft/client/gui/screens/worldselection/EditGameRulesScreen$RuleEntry; +MD: net/minecraft/client/gui/screens/worldselection/EditGameRulesScreen$RuleList$1/m_101232_ (Lnet/minecraft/network/chat/Component;Ljava/util/List;Ljava/lang/String;Lnet/minecraft/world/level/GameRules$IntegerValue;)Lnet/minecraft/client/gui/screens/worldselection/EditGameRulesScreen$RuleEntry; net/minecraft/client/gui/screens/worldselection/EditGameRulesScreen$RuleList$1/lambda$visitInteger$1 (Lnet/minecraft/network/chat/Component;Ljava/util/List;Ljava/lang/String;Lnet/minecraft/world/level/GameRules$IntegerValue;)Lnet/minecraft/client/gui/screens/worldselection/EditGameRulesScreen$RuleEntry; +MD: net/minecraft/client/gui/screens/worldselection/EditGameRulesScreen$RuleList$1/m_6891_ (Lnet/minecraft/world/level/GameRules$Key;Lnet/minecraft/world/level/GameRules$Type;)V net/minecraft/client/gui/screens/worldselection/EditGameRulesScreen$RuleList$1/visitBoolean (Lnet/minecraft/world/level/GameRules$Key;Lnet/minecraft/world/level/GameRules$Type;)V +MD: net/minecraft/client/gui/screens/worldselection/EditGameRulesScreen$RuleList$1/m_6894_ (Lnet/minecraft/world/level/GameRules$Key;Lnet/minecraft/world/level/GameRules$Type;)V net/minecraft/client/gui/screens/worldselection/EditGameRulesScreen$RuleList$1/visitInteger (Lnet/minecraft/world/level/GameRules$Key;Lnet/minecraft/world/level/GameRules$Type;)V +MD: net/minecraft/client/gui/screens/worldselection/EditWorldScreen/ ()V net/minecraft/client/gui/screens/worldselection/EditWorldScreen/ ()V +MD: net/minecraft/client/gui/screens/worldselection/EditWorldScreen/ (Lit/unimi/dsi/fastutil/booleans/BooleanConsumer;Lnet/minecraft/world/level/storage/LevelStorageSource$LevelStorageAccess;)V net/minecraft/client/gui/screens/worldselection/EditWorldScreen/ (Lit/unimi/dsi/fastutil/booleans/BooleanConsumer;Lnet/minecraft/world/level/storage/LevelStorageSource$LevelStorageAccess;)V +MD: net/minecraft/client/gui/screens/worldselection/EditWorldScreen/m_101258_ (Lnet/minecraft/world/level/storage/LevelStorageSource$LevelStorageAccess;)Z net/minecraft/client/gui/screens/worldselection/EditWorldScreen/makeBackupAndShowToast (Lnet/minecraft/world/level/storage/LevelStorageSource$LevelStorageAccess;)Z +MD: net/minecraft/client/gui/screens/worldselection/EditWorldScreen/m_101260_ (Lnet/minecraft/world/level/storage/LevelStorageSource;Ljava/lang/String;)V net/minecraft/client/gui/screens/worldselection/EditWorldScreen/makeBackupAndShowToast (Lnet/minecraft/world/level/storage/LevelStorageSource;Ljava/lang/String;)V +MD: net/minecraft/client/gui/screens/worldselection/EditWorldScreen/m_101272_ (Lnet/minecraft/client/gui/components/Button;)V net/minecraft/client/gui/screens/worldselection/EditWorldScreen/lambda$init$9 (Lnet/minecraft/client/gui/components/Button;)V +MD: net/minecraft/client/gui/screens/worldselection/EditWorldScreen/m_101279_ (Lnet/minecraft/client/gui/components/Button;)V net/minecraft/client/gui/screens/worldselection/EditWorldScreen/lambda$init$0 (Lnet/minecraft/client/gui/components/Button;)V +MD: net/minecraft/client/gui/screens/worldselection/EditWorldScreen/m_101291_ (Lnet/minecraft/client/gui/components/Button;)V net/minecraft/client/gui/screens/worldselection/EditWorldScreen/lambda$init$5 (Lnet/minecraft/client/gui/components/Button;)V +MD: net/minecraft/client/gui/screens/worldselection/EditWorldScreen/m_101293_ (Lnet/minecraft/client/gui/components/Button;)V net/minecraft/client/gui/screens/worldselection/EditWorldScreen/lambda$init$4 (Lnet/minecraft/client/gui/components/Button;)V +MD: net/minecraft/client/gui/screens/worldselection/EditWorldScreen/m_101295_ ()V net/minecraft/client/gui/screens/worldselection/EditWorldScreen/onRename ()V +MD: net/minecraft/client/gui/screens/worldselection/EditWorldScreen/m_182586_ (Ljava/nio/file/Path;)Z net/minecraft/client/gui/screens/worldselection/EditWorldScreen/lambda$init$10 (Ljava/nio/file/Path;)Z +MD: net/minecraft/client/gui/screens/worldselection/EditWorldScreen/m_182593_ (Ljava/nio/file/Path;)V net/minecraft/client/gui/screens/worldselection/EditWorldScreen/lambda$init$2 (Ljava/nio/file/Path;)V +MD: net/minecraft/client/gui/screens/worldselection/EditWorldScreen/m_279855_ (ZZ)V net/minecraft/client/gui/screens/worldselection/EditWorldScreen/lambda$init$7 (ZZ)V +MD: net/minecraft/client/gui/screens/worldselection/EditWorldScreen/m_279856_ (Lnet/minecraft/client/gui/components/Button;)V net/minecraft/client/gui/screens/worldselection/EditWorldScreen/lambda$init$8 (Lnet/minecraft/client/gui/components/Button;)V +MD: net/minecraft/client/gui/screens/worldselection/EditWorldScreen/m_279857_ (Ljava/lang/String;)V net/minecraft/client/gui/screens/worldselection/EditWorldScreen/lambda$init$1 (Ljava/lang/String;)V +MD: net/minecraft/client/gui/screens/worldselection/EditWorldScreen/m_279858_ (Lnet/minecraft/client/gui/components/Button;)V net/minecraft/client/gui/screens/worldselection/EditWorldScreen/lambda$init$6 (Lnet/minecraft/client/gui/components/Button;)V +MD: net/minecraft/client/gui/screens/worldselection/EditWorldScreen/m_279859_ (Lnet/minecraft/client/gui/components/Button;)V net/minecraft/client/gui/screens/worldselection/EditWorldScreen/lambda$init$3 (Lnet/minecraft/client/gui/components/Button;)V +MD: net/minecraft/client/gui/screens/worldselection/EditWorldScreen/m_6574_ (Lnet/minecraft/client/Minecraft;II)V net/minecraft/client/gui/screens/worldselection/EditWorldScreen/resize (Lnet/minecraft/client/Minecraft;II)V +MD: net/minecraft/client/gui/screens/worldselection/EditWorldScreen/m_7379_ ()V net/minecraft/client/gui/screens/worldselection/EditWorldScreen/onClose ()V +MD: net/minecraft/client/gui/screens/worldselection/EditWorldScreen/m_7856_ ()V net/minecraft/client/gui/screens/worldselection/EditWorldScreen/init ()V +MD: net/minecraft/client/gui/screens/worldselection/EditWorldScreen/m_86600_ ()V net/minecraft/client/gui/screens/worldselection/EditWorldScreen/tick ()V +MD: net/minecraft/client/gui/screens/worldselection/EditWorldScreen/m_88315_ (Lnet/minecraft/client/gui/GuiGraphics;IIF)V net/minecraft/client/gui/screens/worldselection/EditWorldScreen/render (Lnet/minecraft/client/gui/GuiGraphics;IIF)V +MD: net/minecraft/client/gui/screens/worldselection/ExperimentsScreen/ (Lnet/minecraft/client/gui/screens/Screen;Lnet/minecraft/server/packs/repository/PackRepository;Ljava/util/function/Consumer;)V net/minecraft/client/gui/screens/worldselection/ExperimentsScreen/ (Lnet/minecraft/client/gui/screens/Screen;Lnet/minecraft/server/packs/repository/PackRepository;Ljava/util/function/Consumer;)V +MD: net/minecraft/client/gui/screens/worldselection/ExperimentsScreen/m_267719_ ()V net/minecraft/client/gui/screens/worldselection/ExperimentsScreen/repositionElements ()V +MD: net/minecraft/client/gui/screens/worldselection/ExperimentsScreen/m_269049_ (Lnet/minecraft/server/packs/repository/Pack;)Lnet/minecraft/network/chat/Component; net/minecraft/client/gui/screens/worldselection/ExperimentsScreen/getHumanReadableTitle (Lnet/minecraft/server/packs/repository/Pack;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/client/gui/screens/worldselection/ExperimentsScreen/m_269086_ (Ljava/util/List;Ljava/util/List;Lnet/minecraft/server/packs/repository/Pack;Ljava/lang/Boolean;)V net/minecraft/client/gui/screens/worldselection/ExperimentsScreen/lambda$onDone$6 (Ljava/util/List;Ljava/util/List;Lnet/minecraft/server/packs/repository/Pack;Ljava/lang/Boolean;)V +MD: net/minecraft/client/gui/screens/worldselection/ExperimentsScreen/m_269193_ (Lnet/minecraft/client/gui/screens/worldselection/ExperimentsScreen;Lnet/minecraft/client/gui/components/events/GuiEventListener;)V net/minecraft/client/gui/screens/worldselection/ExperimentsScreen/lambda$init$5 (Lnet/minecraft/client/gui/screens/worldselection/ExperimentsScreen;Lnet/minecraft/client/gui/components/events/GuiEventListener;)V +MD: net/minecraft/client/gui/screens/worldselection/ExperimentsScreen/m_269201_ (Lnet/minecraft/server/packs/repository/Pack;Ljava/lang/Boolean;)V net/minecraft/client/gui/screens/worldselection/ExperimentsScreen/lambda$init$1 (Lnet/minecraft/server/packs/repository/Pack;Ljava/lang/Boolean;)V +MD: net/minecraft/client/gui/screens/worldselection/ExperimentsScreen/m_269286_ (Lnet/minecraft/server/packs/repository/Pack;)Z net/minecraft/client/gui/screens/worldselection/ExperimentsScreen/lambda$init$0 (Lnet/minecraft/server/packs/repository/Pack;)Z +MD: net/minecraft/client/gui/screens/worldselection/ExperimentsScreen/m_269497_ (Lnet/minecraft/client/gui/components/Button;)V net/minecraft/client/gui/screens/worldselection/ExperimentsScreen/lambda$init$3 (Lnet/minecraft/client/gui/components/Button;)V +MD: net/minecraft/client/gui/screens/worldselection/ExperimentsScreen/m_269499_ (Lnet/minecraft/client/gui/screens/worldselection/SwitchGrid$Builder;Lnet/minecraft/server/packs/repository/Pack;Ljava/lang/Boolean;)V net/minecraft/client/gui/screens/worldselection/ExperimentsScreen/lambda$init$2 (Lnet/minecraft/client/gui/screens/worldselection/SwitchGrid$Builder;Lnet/minecraft/server/packs/repository/Pack;Ljava/lang/Boolean;)V +MD: net/minecraft/client/gui/screens/worldselection/ExperimentsScreen/m_269544_ ()V net/minecraft/client/gui/screens/worldselection/ExperimentsScreen/onDone ()V +MD: net/minecraft/client/gui/screens/worldselection/ExperimentsScreen/m_273999_ (Lnet/minecraft/client/gui/components/Button;)V net/minecraft/client/gui/screens/worldselection/ExperimentsScreen/lambda$init$4 (Lnet/minecraft/client/gui/components/Button;)V +MD: net/minecraft/client/gui/screens/worldselection/ExperimentsScreen/m_7379_ ()V net/minecraft/client/gui/screens/worldselection/ExperimentsScreen/onClose ()V +MD: net/minecraft/client/gui/screens/worldselection/ExperimentsScreen/m_7856_ ()V net/minecraft/client/gui/screens/worldselection/ExperimentsScreen/init ()V +MD: net/minecraft/client/gui/screens/worldselection/ExperimentsScreen/m_88315_ (Lnet/minecraft/client/gui/GuiGraphics;IIF)V net/minecraft/client/gui/screens/worldselection/ExperimentsScreen/render (Lnet/minecraft/client/gui/GuiGraphics;IIF)V +MD: net/minecraft/client/gui/screens/worldselection/OptimizeWorldScreen/ ()V net/minecraft/client/gui/screens/worldselection/OptimizeWorldScreen/ ()V +MD: net/minecraft/client/gui/screens/worldselection/OptimizeWorldScreen/ (Lit/unimi/dsi/fastutil/booleans/BooleanConsumer;Lcom/mojang/datafixers/DataFixer;Lnet/minecraft/world/level/storage/LevelStorageSource$LevelStorageAccess;Lnet/minecraft/world/level/LevelSettings;ZLnet/minecraft/core/Registry;)V net/minecraft/client/gui/screens/worldselection/OptimizeWorldScreen/ (Lit/unimi/dsi/fastutil/booleans/BooleanConsumer;Lcom/mojang/datafixers/DataFixer;Lnet/minecraft/world/level/storage/LevelStorageSource$LevelStorageAccess;Lnet/minecraft/world/level/LevelSettings;ZLnet/minecraft/core/Registry;)V +MD: net/minecraft/client/gui/screens/worldselection/OptimizeWorldScreen/m_101315_ (Lnet/minecraft/client/Minecraft;Lit/unimi/dsi/fastutil/booleans/BooleanConsumer;Lcom/mojang/datafixers/DataFixer;Lnet/minecraft/world/level/storage/LevelStorageSource$LevelStorageAccess;Z)Lnet/minecraft/client/gui/screens/worldselection/OptimizeWorldScreen; net/minecraft/client/gui/screens/worldselection/OptimizeWorldScreen/create (Lnet/minecraft/client/Minecraft;Lit/unimi/dsi/fastutil/booleans/BooleanConsumer;Lcom/mojang/datafixers/DataFixer;Lnet/minecraft/world/level/storage/LevelStorageSource$LevelStorageAccess;Z)Lnet/minecraft/client/gui/screens/worldselection/OptimizeWorldScreen; +MD: net/minecraft/client/gui/screens/worldselection/OptimizeWorldScreen/m_101321_ (Lnet/minecraft/client/gui/components/Button;)V net/minecraft/client/gui/screens/worldselection/OptimizeWorldScreen/lambda$init$1 (Lnet/minecraft/client/gui/components/Button;)V +MD: net/minecraft/client/gui/screens/worldselection/OptimizeWorldScreen/m_101323_ (Lit/unimi/dsi/fastutil/objects/Object2IntOpenCustomHashMap;)V net/minecraft/client/gui/screens/worldselection/OptimizeWorldScreen/lambda$static$0 (Lit/unimi/dsi/fastutil/objects/Object2IntOpenCustomHashMap;)V +MD: net/minecraft/client/gui/screens/worldselection/OptimizeWorldScreen/m_7379_ ()V net/minecraft/client/gui/screens/worldselection/OptimizeWorldScreen/onClose ()V +MD: net/minecraft/client/gui/screens/worldselection/OptimizeWorldScreen/m_7856_ ()V net/minecraft/client/gui/screens/worldselection/OptimizeWorldScreen/init ()V +MD: net/minecraft/client/gui/screens/worldselection/OptimizeWorldScreen/m_7861_ ()V net/minecraft/client/gui/screens/worldselection/OptimizeWorldScreen/removed ()V +MD: net/minecraft/client/gui/screens/worldselection/OptimizeWorldScreen/m_86600_ ()V net/minecraft/client/gui/screens/worldselection/OptimizeWorldScreen/tick ()V +MD: net/minecraft/client/gui/screens/worldselection/OptimizeWorldScreen/m_88315_ (Lnet/minecraft/client/gui/GuiGraphics;IIF)V net/minecraft/client/gui/screens/worldselection/OptimizeWorldScreen/render (Lnet/minecraft/client/gui/GuiGraphics;IIF)V +MD: net/minecraft/client/gui/screens/worldselection/PresetEditor/ ()V net/minecraft/client/gui/screens/worldselection/PresetEditor/ ()V +MD: net/minecraft/client/gui/screens/worldselection/PresetEditor/m_232952_ (Lnet/minecraft/core/Holder;)Lnet/minecraft/client/gui/screens/worldselection/WorldCreationContext$DimensionsUpdater; net/minecraft/client/gui/screens/worldselection/PresetEditor/fixedBiomeConfigurator (Lnet/minecraft/core/Holder;)Lnet/minecraft/client/gui/screens/worldselection/WorldCreationContext$DimensionsUpdater; +MD: net/minecraft/client/gui/screens/worldselection/PresetEditor/m_232961_ (Lnet/minecraft/client/gui/screens/worldselection/CreateWorldScreen;Lnet/minecraft/client/gui/screens/worldselection/WorldCreationContext;)Lnet/minecraft/client/gui/screens/Screen; net/minecraft/client/gui/screens/worldselection/PresetEditor/lambda$static$3 (Lnet/minecraft/client/gui/screens/worldselection/CreateWorldScreen;Lnet/minecraft/client/gui/screens/worldselection/WorldCreationContext;)Lnet/minecraft/client/gui/screens/Screen; +MD: net/minecraft/client/gui/screens/worldselection/PresetEditor/m_232967_ (Lnet/minecraft/world/level/levelgen/flat/FlatLevelGeneratorSettings;)Lnet/minecraft/client/gui/screens/worldselection/WorldCreationContext$DimensionsUpdater; net/minecraft/client/gui/screens/worldselection/PresetEditor/flatWorldConfigurator (Lnet/minecraft/world/level/levelgen/flat/FlatLevelGeneratorSettings;)Lnet/minecraft/client/gui/screens/worldselection/WorldCreationContext$DimensionsUpdater; +MD: net/minecraft/client/gui/screens/worldselection/PresetEditor/m_232976_ (Lnet/minecraft/client/gui/screens/worldselection/CreateWorldScreen;Lnet/minecraft/client/gui/screens/worldselection/WorldCreationContext;)Lnet/minecraft/client/gui/screens/Screen; net/minecraft/client/gui/screens/worldselection/PresetEditor/createEditScreen (Lnet/minecraft/client/gui/screens/worldselection/CreateWorldScreen;Lnet/minecraft/client/gui/screens/worldselection/WorldCreationContext;)Lnet/minecraft/client/gui/screens/Screen; +MD: net/minecraft/client/gui/screens/worldselection/PresetEditor/m_254760_ (Lnet/minecraft/client/gui/screens/worldselection/CreateWorldScreen;Lnet/minecraft/client/gui/screens/worldselection/WorldCreationContext;)Lnet/minecraft/client/gui/screens/Screen; net/minecraft/client/gui/screens/worldselection/PresetEditor/lambda$static$1 (Lnet/minecraft/client/gui/screens/worldselection/CreateWorldScreen;Lnet/minecraft/client/gui/screens/worldselection/WorldCreationContext;)Lnet/minecraft/client/gui/screens/Screen; +MD: net/minecraft/client/gui/screens/worldselection/PresetEditor/m_254761_ (Lnet/minecraft/world/level/levelgen/flat/FlatLevelGeneratorSettings;Lnet/minecraft/core/RegistryAccess$Frozen;Lnet/minecraft/world/level/levelgen/WorldDimensions;)Lnet/minecraft/world/level/levelgen/WorldDimensions; net/minecraft/client/gui/screens/worldselection/PresetEditor/lambda$flatWorldConfigurator$4 (Lnet/minecraft/world/level/levelgen/flat/FlatLevelGeneratorSettings;Lnet/minecraft/core/RegistryAccess$Frozen;Lnet/minecraft/world/level/levelgen/WorldDimensions;)Lnet/minecraft/world/level/levelgen/WorldDimensions; +MD: net/minecraft/client/gui/screens/worldselection/PresetEditor/m_257080_ (Lnet/minecraft/core/Holder;Lnet/minecraft/core/RegistryAccess$Frozen;Lnet/minecraft/world/level/levelgen/WorldDimensions;)Lnet/minecraft/world/level/levelgen/WorldDimensions; net/minecraft/client/gui/screens/worldselection/PresetEditor/lambda$fixedBiomeConfigurator$5 (Lnet/minecraft/core/Holder;Lnet/minecraft/core/RegistryAccess$Frozen;Lnet/minecraft/world/level/levelgen/WorldDimensions;)Lnet/minecraft/world/level/levelgen/WorldDimensions; +MD: net/minecraft/client/gui/screens/worldselection/PresetEditor/m_267516_ (Lnet/minecraft/client/gui/screens/worldselection/CreateWorldScreen;Lnet/minecraft/world/level/levelgen/flat/FlatLevelGeneratorSettings;)V net/minecraft/client/gui/screens/worldselection/PresetEditor/lambda$static$0 (Lnet/minecraft/client/gui/screens/worldselection/CreateWorldScreen;Lnet/minecraft/world/level/levelgen/flat/FlatLevelGeneratorSettings;)V +MD: net/minecraft/client/gui/screens/worldselection/PresetEditor/m_267517_ (Lnet/minecraft/client/gui/screens/worldselection/CreateWorldScreen;Lnet/minecraft/core/Holder;)V net/minecraft/client/gui/screens/worldselection/PresetEditor/lambda$static$2 (Lnet/minecraft/client/gui/screens/worldselection/CreateWorldScreen;Lnet/minecraft/core/Holder;)V +MD: net/minecraft/client/gui/screens/worldselection/SelectWorldScreen/ ()V net/minecraft/client/gui/screens/worldselection/SelectWorldScreen/ ()V +MD: net/minecraft/client/gui/screens/worldselection/SelectWorldScreen/ (Lnet/minecraft/client/gui/screens/Screen;)V net/minecraft/client/gui/screens/worldselection/SelectWorldScreen/ (Lnet/minecraft/client/gui/screens/Screen;)V +MD: net/minecraft/client/gui/screens/worldselection/SelectWorldScreen/m_101375_ (Lnet/minecraft/client/gui/components/Button;)V net/minecraft/client/gui/screens/worldselection/SelectWorldScreen/lambda$init$5 (Lnet/minecraft/client/gui/components/Button;)V +MD: net/minecraft/client/gui/screens/worldselection/SelectWorldScreen/m_101377_ (Lnet/minecraft/client/gui/components/Button;)V net/minecraft/client/gui/screens/worldselection/SelectWorldScreen/lambda$init$4 (Lnet/minecraft/client/gui/components/Button;)V +MD: net/minecraft/client/gui/screens/worldselection/SelectWorldScreen/m_232979_ (Lnet/minecraft/client/gui/components/Button;)V net/minecraft/client/gui/screens/worldselection/SelectWorldScreen/lambda$init$1 (Lnet/minecraft/client/gui/components/Button;)V +MD: net/minecraft/client/gui/screens/worldselection/SelectWorldScreen/m_232981_ (Lnet/minecraft/client/gui/components/Button;)V net/minecraft/client/gui/screens/worldselection/SelectWorldScreen/lambda$init$3 (Lnet/minecraft/client/gui/components/Button;)V +MD: net/minecraft/client/gui/screens/worldselection/SelectWorldScreen/m_232986_ (Ljava/lang/String;)V net/minecraft/client/gui/screens/worldselection/SelectWorldScreen/lambda$init$0 (Ljava/lang/String;)V +MD: net/minecraft/client/gui/screens/worldselection/SelectWorldScreen/m_244686_ (Lnet/minecraft/client/gui/components/Button;)V net/minecraft/client/gui/screens/worldselection/SelectWorldScreen/lambda$init$7 (Lnet/minecraft/client/gui/components/Button;)V +MD: net/minecraft/client/gui/screens/worldselection/SelectWorldScreen/m_276090_ (ZZ)V net/minecraft/client/gui/screens/worldselection/SelectWorldScreen/updateButtonStatus (ZZ)V +MD: net/minecraft/client/gui/screens/worldselection/SelectWorldScreen/m_279860_ (Lnet/minecraft/client/gui/components/Button;)V net/minecraft/client/gui/screens/worldselection/SelectWorldScreen/lambda$init$6 (Lnet/minecraft/client/gui/components/Button;)V +MD: net/minecraft/client/gui/screens/worldselection/SelectWorldScreen/m_279861_ (Lnet/minecraft/client/gui/components/Button;)V net/minecraft/client/gui/screens/worldselection/SelectWorldScreen/lambda$init$2 (Lnet/minecraft/client/gui/components/Button;)V +MD: net/minecraft/client/gui/screens/worldselection/SelectWorldScreen/m_5534_ (CI)Z net/minecraft/client/gui/screens/worldselection/SelectWorldScreen/charTyped (CI)Z +MD: net/minecraft/client/gui/screens/worldselection/SelectWorldScreen/m_7379_ ()V net/minecraft/client/gui/screens/worldselection/SelectWorldScreen/onClose ()V +MD: net/minecraft/client/gui/screens/worldselection/SelectWorldScreen/m_7856_ ()V net/minecraft/client/gui/screens/worldselection/SelectWorldScreen/init ()V +MD: net/minecraft/client/gui/screens/worldselection/SelectWorldScreen/m_7861_ ()V net/minecraft/client/gui/screens/worldselection/SelectWorldScreen/removed ()V +MD: net/minecraft/client/gui/screens/worldselection/SelectWorldScreen/m_7933_ (III)Z net/minecraft/client/gui/screens/worldselection/SelectWorldScreen/keyPressed (III)Z +MD: net/minecraft/client/gui/screens/worldselection/SelectWorldScreen/m_86600_ ()V net/minecraft/client/gui/screens/worldselection/SelectWorldScreen/tick ()V +MD: net/minecraft/client/gui/screens/worldselection/SelectWorldScreen/m_88315_ (Lnet/minecraft/client/gui/GuiGraphics;IIF)V net/minecraft/client/gui/screens/worldselection/SelectWorldScreen/render (Lnet/minecraft/client/gui/GuiGraphics;IIF)V +MD: net/minecraft/client/gui/screens/worldselection/SwitchGrid/ (Ljava/util/List;)V net/minecraft/client/gui/screens/worldselection/SwitchGrid/ (Ljava/util/List;)V +MD: net/minecraft/client/gui/screens/worldselection/SwitchGrid/m_267742_ (I)Lnet/minecraft/client/gui/screens/worldselection/SwitchGrid$Builder; net/minecraft/client/gui/screens/worldselection/SwitchGrid/builder (I)Lnet/minecraft/client/gui/screens/worldselection/SwitchGrid$Builder; +MD: net/minecraft/client/gui/screens/worldselection/SwitchGrid/m_267819_ ()V net/minecraft/client/gui/screens/worldselection/SwitchGrid/refreshStates ()V +MD: net/minecraft/client/gui/screens/worldselection/SwitchGrid$Builder/ (I)V net/minecraft/client/gui/screens/worldselection/SwitchGrid$Builder/ (I)V +MD: net/minecraft/client/gui/screens/worldselection/SwitchGrid$Builder/m_267583_ (Lnet/minecraft/network/chat/Component;Ljava/util/function/BooleanSupplier;Ljava/util/function/Consumer;)Lnet/minecraft/client/gui/screens/worldselection/SwitchGrid$SwitchBuilder; net/minecraft/client/gui/screens/worldselection/SwitchGrid$Builder/addSwitch (Lnet/minecraft/network/chat/Component;Ljava/util/function/BooleanSupplier;Ljava/util/function/Consumer;)Lnet/minecraft/client/gui/screens/worldselection/SwitchGrid$SwitchBuilder; +MD: net/minecraft/client/gui/screens/worldselection/SwitchGrid$Builder/m_267588_ (Ljava/util/function/Consumer;)Lnet/minecraft/client/gui/screens/worldselection/SwitchGrid; net/minecraft/client/gui/screens/worldselection/SwitchGrid$Builder/build (Ljava/util/function/Consumer;)Lnet/minecraft/client/gui/screens/worldselection/SwitchGrid; +MD: net/minecraft/client/gui/screens/worldselection/SwitchGrid$Builder/m_267620_ (I)Lnet/minecraft/client/gui/screens/worldselection/SwitchGrid$Builder; net/minecraft/client/gui/screens/worldselection/SwitchGrid$Builder/withPaddingLeft (I)Lnet/minecraft/client/gui/screens/worldselection/SwitchGrid$Builder; +MD: net/minecraft/client/gui/screens/worldselection/SwitchGrid$Builder/m_269089_ ()V net/minecraft/client/gui/screens/worldselection/SwitchGrid$Builder/increaseRow ()V +MD: net/minecraft/client/gui/screens/worldselection/SwitchGrid$Builder/m_269119_ (I)Lnet/minecraft/client/gui/screens/worldselection/SwitchGrid$Builder; net/minecraft/client/gui/screens/worldselection/SwitchGrid$Builder/withRowSpacing (I)Lnet/minecraft/client/gui/screens/worldselection/SwitchGrid$Builder; +MD: net/minecraft/client/gui/screens/worldselection/SwitchGrid$Builder/m_269141_ (IZ)Lnet/minecraft/client/gui/screens/worldselection/SwitchGrid$Builder; net/minecraft/client/gui/screens/worldselection/SwitchGrid$Builder/withInfoUnderneath (IZ)Lnet/minecraft/client/gui/screens/worldselection/SwitchGrid$Builder; +MD: net/minecraft/client/gui/screens/worldselection/SwitchGrid$InfoUnderneathSettings/ (IZ)V net/minecraft/client/gui/screens/worldselection/SwitchGrid$InfoUnderneathSettings/ (IZ)V +MD: net/minecraft/client/gui/screens/worldselection/SwitchGrid$InfoUnderneathSettings/equals (Ljava/lang/Object;)Z net/minecraft/client/gui/screens/worldselection/SwitchGrid$InfoUnderneathSettings/equals (Ljava/lang/Object;)Z +MD: net/minecraft/client/gui/screens/worldselection/SwitchGrid$InfoUnderneathSettings/f_268439_ ()I net/minecraft/client/gui/screens/worldselection/SwitchGrid$InfoUnderneathSettings/maxInfoRows ()I +MD: net/minecraft/client/gui/screens/worldselection/SwitchGrid$InfoUnderneathSettings/f_268690_ ()Z net/minecraft/client/gui/screens/worldselection/SwitchGrid$InfoUnderneathSettings/alwaysMaxHeight ()Z +MD: net/minecraft/client/gui/screens/worldselection/SwitchGrid$InfoUnderneathSettings/hashCode ()I net/minecraft/client/gui/screens/worldselection/SwitchGrid$InfoUnderneathSettings/hashCode ()I +MD: net/minecraft/client/gui/screens/worldselection/SwitchGrid$InfoUnderneathSettings/toString ()Ljava/lang/String; net/minecraft/client/gui/screens/worldselection/SwitchGrid$InfoUnderneathSettings/toString ()Ljava/lang/String; +MD: net/minecraft/client/gui/screens/worldselection/SwitchGrid$LabeledSwitch/ (Lnet/minecraft/client/gui/components/CycleButton;Ljava/util/function/BooleanSupplier;Ljava/util/function/BooleanSupplier;)V net/minecraft/client/gui/screens/worldselection/SwitchGrid$LabeledSwitch/ (Lnet/minecraft/client/gui/components/CycleButton;Ljava/util/function/BooleanSupplier;Ljava/util/function/BooleanSupplier;)V +MD: net/minecraft/client/gui/screens/worldselection/SwitchGrid$LabeledSwitch/equals (Ljava/lang/Object;)Z net/minecraft/client/gui/screens/worldselection/SwitchGrid$LabeledSwitch/equals (Ljava/lang/Object;)Z +MD: net/minecraft/client/gui/screens/worldselection/SwitchGrid$LabeledSwitch/f_267403_ ()Ljava/util/function/BooleanSupplier; net/minecraft/client/gui/screens/worldselection/SwitchGrid$LabeledSwitch/stateSupplier ()Ljava/util/function/BooleanSupplier; +MD: net/minecraft/client/gui/screens/worldselection/SwitchGrid$LabeledSwitch/f_267423_ ()Lnet/minecraft/client/gui/components/CycleButton; net/minecraft/client/gui/screens/worldselection/SwitchGrid$LabeledSwitch/button ()Lnet/minecraft/client/gui/components/CycleButton; +MD: net/minecraft/client/gui/screens/worldselection/SwitchGrid$LabeledSwitch/f_267483_ ()Ljava/util/function/BooleanSupplier; net/minecraft/client/gui/screens/worldselection/SwitchGrid$LabeledSwitch/isActiveCondition ()Ljava/util/function/BooleanSupplier; +MD: net/minecraft/client/gui/screens/worldselection/SwitchGrid$LabeledSwitch/hashCode ()I net/minecraft/client/gui/screens/worldselection/SwitchGrid$LabeledSwitch/hashCode ()I +MD: net/minecraft/client/gui/screens/worldselection/SwitchGrid$LabeledSwitch/m_267626_ ()V net/minecraft/client/gui/screens/worldselection/SwitchGrid$LabeledSwitch/refreshState ()V +MD: net/minecraft/client/gui/screens/worldselection/SwitchGrid$LabeledSwitch/toString ()Ljava/lang/String; net/minecraft/client/gui/screens/worldselection/SwitchGrid$LabeledSwitch/toString ()Ljava/lang/String; +MD: net/minecraft/client/gui/screens/worldselection/SwitchGrid$SwitchBuilder/ (Lnet/minecraft/network/chat/Component;Ljava/util/function/BooleanSupplier;Ljava/util/function/Consumer;I)V net/minecraft/client/gui/screens/worldselection/SwitchGrid$SwitchBuilder/ (Lnet/minecraft/network/chat/Component;Ljava/util/function/BooleanSupplier;Ljava/util/function/Consumer;I)V +MD: net/minecraft/client/gui/screens/worldselection/SwitchGrid$SwitchBuilder/m_267664_ (Lnet/minecraft/network/chat/Component;)Lnet/minecraft/client/gui/screens/worldselection/SwitchGrid$SwitchBuilder; net/minecraft/client/gui/screens/worldselection/SwitchGrid$SwitchBuilder/withInfo (Lnet/minecraft/network/chat/Component;)Lnet/minecraft/client/gui/screens/worldselection/SwitchGrid$SwitchBuilder; +MD: net/minecraft/client/gui/screens/worldselection/SwitchGrid$SwitchBuilder/m_267723_ (Lnet/minecraft/client/gui/components/CycleButton;)Lnet/minecraft/network/chat/MutableComponent; net/minecraft/client/gui/screens/worldselection/SwitchGrid$SwitchBuilder/lambda$build$2 (Lnet/minecraft/client/gui/components/CycleButton;)Lnet/minecraft/network/chat/MutableComponent; +MD: net/minecraft/client/gui/screens/worldselection/SwitchGrid$SwitchBuilder/m_267757_ (Ljava/util/function/BooleanSupplier;)Lnet/minecraft/client/gui/screens/worldselection/SwitchGrid$SwitchBuilder; net/minecraft/client/gui/screens/worldselection/SwitchGrid$SwitchBuilder/withIsActiveCondition (Ljava/util/function/BooleanSupplier;)Lnet/minecraft/client/gui/screens/worldselection/SwitchGrid$SwitchBuilder; +MD: net/minecraft/client/gui/screens/worldselection/SwitchGrid$SwitchBuilder/m_267807_ (Lnet/minecraft/client/gui/components/CycleButton;Ljava/lang/Boolean;)V net/minecraft/client/gui/screens/worldselection/SwitchGrid$SwitchBuilder/lambda$build$3 (Lnet/minecraft/client/gui/components/CycleButton;Ljava/lang/Boolean;)V +MD: net/minecraft/client/gui/screens/worldselection/SwitchGrid$SwitchBuilder/m_268786_ (Lnet/minecraft/client/gui/components/Tooltip;Ljava/lang/Boolean;)Lnet/minecraft/client/gui/components/Tooltip; net/minecraft/client/gui/screens/worldselection/SwitchGrid$SwitchBuilder/lambda$build$0 (Lnet/minecraft/client/gui/components/Tooltip;Ljava/lang/Boolean;)Lnet/minecraft/client/gui/components/Tooltip; +MD: net/minecraft/client/gui/screens/worldselection/SwitchGrid$SwitchBuilder/m_268787_ (Lnet/minecraft/client/gui/components/CycleButton;)Lnet/minecraft/network/chat/MutableComponent; net/minecraft/client/gui/screens/worldselection/SwitchGrid$SwitchBuilder/lambda$build$1 (Lnet/minecraft/client/gui/components/CycleButton;)Lnet/minecraft/network/chat/MutableComponent; +MD: net/minecraft/client/gui/screens/worldselection/SwitchGrid$SwitchBuilder/m_268788_ (Lnet/minecraft/client/gui/screens/worldselection/SwitchGrid$Builder;Lnet/minecraft/client/gui/layouts/GridLayout;ILnet/minecraft/client/gui/screens/worldselection/SwitchGrid$InfoUnderneathSettings;)V net/minecraft/client/gui/screens/worldselection/SwitchGrid$SwitchBuilder/lambda$build$4 (Lnet/minecraft/client/gui/screens/worldselection/SwitchGrid$Builder;Lnet/minecraft/client/gui/layouts/GridLayout;ILnet/minecraft/client/gui/screens/worldselection/SwitchGrid$InfoUnderneathSettings;)V +MD: net/minecraft/client/gui/screens/worldselection/SwitchGrid$SwitchBuilder/m_269062_ (Lnet/minecraft/client/gui/screens/worldselection/SwitchGrid$Builder;Lnet/minecraft/client/gui/layouts/GridLayout;I)Lnet/minecraft/client/gui/screens/worldselection/SwitchGrid$LabeledSwitch; net/minecraft/client/gui/screens/worldselection/SwitchGrid$SwitchBuilder/build (Lnet/minecraft/client/gui/screens/worldselection/SwitchGrid$Builder;Lnet/minecraft/client/gui/layouts/GridLayout;I)Lnet/minecraft/client/gui/screens/worldselection/SwitchGrid$LabeledSwitch; +MD: net/minecraft/client/gui/screens/worldselection/WorldCreationContext/ (Lnet/minecraft/world/level/levelgen/WorldGenSettings;Lnet/minecraft/core/LayeredRegistryAccess;Lnet/minecraft/server/ReloadableServerResources;Lnet/minecraft/world/level/WorldDataConfiguration;)V net/minecraft/client/gui/screens/worldselection/WorldCreationContext/ (Lnet/minecraft/world/level/levelgen/WorldGenSettings;Lnet/minecraft/core/LayeredRegistryAccess;Lnet/minecraft/server/ReloadableServerResources;Lnet/minecraft/world/level/WorldDataConfiguration;)V +MD: net/minecraft/client/gui/screens/worldselection/WorldCreationContext/ (Lnet/minecraft/world/level/levelgen/WorldOptions;Lnet/minecraft/core/Registry;Lnet/minecraft/world/level/levelgen/WorldDimensions;Lnet/minecraft/core/LayeredRegistryAccess;Lnet/minecraft/server/ReloadableServerResources;Lnet/minecraft/world/level/WorldDataConfiguration;)V net/minecraft/client/gui/screens/worldselection/WorldCreationContext/ (Lnet/minecraft/world/level/levelgen/WorldOptions;Lnet/minecraft/core/Registry;Lnet/minecraft/world/level/levelgen/WorldDimensions;Lnet/minecraft/core/LayeredRegistryAccess;Lnet/minecraft/server/ReloadableServerResources;Lnet/minecraft/world/level/WorldDataConfiguration;)V +MD: net/minecraft/client/gui/screens/worldselection/WorldCreationContext/ (Lnet/minecraft/world/level/levelgen/WorldOptions;Lnet/minecraft/world/level/levelgen/WorldDimensions;Lnet/minecraft/core/LayeredRegistryAccess;Lnet/minecraft/server/ReloadableServerResources;Lnet/minecraft/world/level/WorldDataConfiguration;)V net/minecraft/client/gui/screens/worldselection/WorldCreationContext/ (Lnet/minecraft/world/level/levelgen/WorldOptions;Lnet/minecraft/world/level/levelgen/WorldDimensions;Lnet/minecraft/core/LayeredRegistryAccess;Lnet/minecraft/server/ReloadableServerResources;Lnet/minecraft/world/level/WorldDataConfiguration;)V +MD: net/minecraft/client/gui/screens/worldselection/WorldCreationContext/equals (Ljava/lang/Object;)Z net/minecraft/client/gui/screens/worldselection/WorldCreationContext/equals (Ljava/lang/Object;)Z +MD: net/minecraft/client/gui/screens/worldselection/WorldCreationContext/f_232990_ ()Lnet/minecraft/server/ReloadableServerResources; net/minecraft/client/gui/screens/worldselection/WorldCreationContext/dataPackResources ()Lnet/minecraft/server/ReloadableServerResources; +MD: net/minecraft/client/gui/screens/worldselection/WorldCreationContext/f_243708_ ()Lnet/minecraft/core/LayeredRegistryAccess; net/minecraft/client/gui/screens/worldselection/WorldCreationContext/worldgenRegistries ()Lnet/minecraft/core/LayeredRegistryAccess; +MD: net/minecraft/client/gui/screens/worldselection/WorldCreationContext/f_243796_ ()Lnet/minecraft/world/level/levelgen/WorldDimensions; net/minecraft/client/gui/screens/worldselection/WorldCreationContext/selectedDimensions ()Lnet/minecraft/world/level/levelgen/WorldDimensions; +MD: net/minecraft/client/gui/screens/worldselection/WorldCreationContext/f_243842_ ()Lnet/minecraft/world/level/WorldDataConfiguration; net/minecraft/client/gui/screens/worldselection/WorldCreationContext/dataConfiguration ()Lnet/minecraft/world/level/WorldDataConfiguration; +MD: net/minecraft/client/gui/screens/worldselection/WorldCreationContext/f_244272_ ()Lnet/minecraft/world/level/levelgen/WorldOptions; net/minecraft/client/gui/screens/worldselection/WorldCreationContext/options ()Lnet/minecraft/world/level/levelgen/WorldOptions; +MD: net/minecraft/client/gui/screens/worldselection/WorldCreationContext/f_244375_ ()Lnet/minecraft/core/Registry; net/minecraft/client/gui/screens/worldselection/WorldCreationContext/datapackDimensions ()Lnet/minecraft/core/Registry; +MD: net/minecraft/client/gui/screens/worldselection/WorldCreationContext/hashCode ()I net/minecraft/client/gui/screens/worldselection/WorldCreationContext/hashCode ()I +MD: net/minecraft/client/gui/screens/worldselection/WorldCreationContext/m_245713_ (Lnet/minecraft/client/gui/screens/worldselection/WorldCreationContext$DimensionsUpdater;)Lnet/minecraft/client/gui/screens/worldselection/WorldCreationContext; net/minecraft/client/gui/screens/worldselection/WorldCreationContext/withDimensions (Lnet/minecraft/client/gui/screens/worldselection/WorldCreationContext$DimensionsUpdater;)Lnet/minecraft/client/gui/screens/worldselection/WorldCreationContext; +MD: net/minecraft/client/gui/screens/worldselection/WorldCreationContext/m_245725_ (Lnet/minecraft/world/level/levelgen/WorldOptions;Lnet/minecraft/world/level/levelgen/WorldDimensions;)Lnet/minecraft/client/gui/screens/worldselection/WorldCreationContext; net/minecraft/client/gui/screens/worldselection/WorldCreationContext/withSettings (Lnet/minecraft/world/level/levelgen/WorldOptions;Lnet/minecraft/world/level/levelgen/WorldDimensions;)Lnet/minecraft/client/gui/screens/worldselection/WorldCreationContext; +MD: net/minecraft/client/gui/screens/worldselection/WorldCreationContext/m_246480_ ()Lnet/minecraft/core/RegistryAccess$Frozen; net/minecraft/client/gui/screens/worldselection/WorldCreationContext/worldgenLoadContext ()Lnet/minecraft/core/RegistryAccess$Frozen; +MD: net/minecraft/client/gui/screens/worldselection/WorldCreationContext/m_246527_ (Lnet/minecraft/client/gui/screens/worldselection/WorldCreationContext$OptionsModifier;)Lnet/minecraft/client/gui/screens/worldselection/WorldCreationContext; net/minecraft/client/gui/screens/worldselection/WorldCreationContext/withOptions (Lnet/minecraft/client/gui/screens/worldselection/WorldCreationContext$OptionsModifier;)Lnet/minecraft/client/gui/screens/worldselection/WorldCreationContext; +MD: net/minecraft/client/gui/screens/worldselection/WorldCreationContext/toString ()Ljava/lang/String; net/minecraft/client/gui/screens/worldselection/WorldCreationContext/toString ()Ljava/lang/String; +MD: net/minecraft/client/gui/screens/worldselection/WorldCreationUiState/ ()V net/minecraft/client/gui/screens/worldselection/WorldCreationUiState/ ()V +MD: net/minecraft/client/gui/screens/worldselection/WorldCreationUiState/ (Ljava/nio/file/Path;Lnet/minecraft/client/gui/screens/worldselection/WorldCreationContext;Ljava/util/Optional;Ljava/util/OptionalLong;)V net/minecraft/client/gui/screens/worldselection/WorldCreationUiState/ (Ljava/nio/file/Path;Lnet/minecraft/client/gui/screens/worldselection/WorldCreationContext;Ljava/util/Optional;Ljava/util/OptionalLong;)V +MD: net/minecraft/client/gui/screens/worldselection/WorldCreationUiState/m_267573_ ()Lnet/minecraft/client/gui/screens/worldselection/WorldCreationContext; net/minecraft/client/gui/screens/worldselection/WorldCreationUiState/getSettings ()Lnet/minecraft/client/gui/screens/worldselection/WorldCreationContext; +MD: net/minecraft/client/gui/screens/worldselection/WorldCreationUiState/m_267576_ (Lnet/minecraft/client/gui/screens/worldselection/WorldCreationUiState$WorldTypeEntry;)V net/minecraft/client/gui/screens/worldselection/WorldCreationUiState/setWorldType (Lnet/minecraft/client/gui/screens/worldselection/WorldCreationUiState$WorldTypeEntry;)V +MD: net/minecraft/client/gui/screens/worldselection/WorldCreationUiState/m_267593_ ()Z net/minecraft/client/gui/screens/worldselection/WorldCreationUiState/isBonusChest ()Z +MD: net/minecraft/client/gui/screens/worldselection/WorldCreationUiState/m_267597_ ()Ljava/lang/String; net/minecraft/client/gui/screens/worldselection/WorldCreationUiState/getName ()Ljava/lang/String; +MD: net/minecraft/client/gui/screens/worldselection/WorldCreationUiState/m_267601_ (Z)V net/minecraft/client/gui/screens/worldselection/WorldCreationUiState/setAllowCheats (Z)V +MD: net/minecraft/client/gui/screens/worldselection/WorldCreationUiState/m_267608_ ()V net/minecraft/client/gui/screens/worldselection/WorldCreationUiState/updatePresetLists ()V +MD: net/minecraft/client/gui/screens/worldselection/WorldCreationUiState/m_267615_ ()Z net/minecraft/client/gui/screens/worldselection/WorldCreationUiState/isGenerateStructures ()Z +MD: net/minecraft/client/gui/screens/worldselection/WorldCreationUiState/m_267616_ (Lnet/minecraft/client/gui/screens/worldselection/WorldCreationUiState$SelectedGameMode;)V net/minecraft/client/gui/screens/worldselection/WorldCreationUiState/setGameMode (Lnet/minecraft/client/gui/screens/worldselection/WorldCreationUiState$SelectedGameMode;)V +MD: net/minecraft/client/gui/screens/worldselection/WorldCreationUiState/m_267627_ (Lnet/minecraft/core/HolderSet$Named;)Ljava/util/List; net/minecraft/client/gui/screens/worldselection/WorldCreationUiState/lambda$getNonEmptyList$6 (Lnet/minecraft/core/HolderSet$Named;)Ljava/util/List; +MD: net/minecraft/client/gui/screens/worldselection/WorldCreationUiState/m_267649_ (Ljava/lang/String;)V net/minecraft/client/gui/screens/worldselection/WorldCreationUiState/setName (Ljava/lang/String;)V +MD: net/minecraft/client/gui/screens/worldselection/WorldCreationUiState/m_267656_ (Lnet/minecraft/world/level/GameRules;)V net/minecraft/client/gui/screens/worldselection/WorldCreationUiState/setGameRules (Lnet/minecraft/world/level/GameRules;)V +MD: net/minecraft/client/gui/screens/worldselection/WorldCreationUiState/m_267658_ (Lnet/minecraft/core/Registry;)Ljava/util/List; net/minecraft/client/gui/screens/worldselection/WorldCreationUiState/lambda$updatePresetLists$4 (Lnet/minecraft/core/Registry;)Ljava/util/List; +MD: net/minecraft/client/gui/screens/worldselection/WorldCreationUiState/m_267666_ (Z)V net/minecraft/client/gui/screens/worldselection/WorldCreationUiState/setBonusChest (Z)V +MD: net/minecraft/client/gui/screens/worldselection/WorldCreationUiState/m_267674_ ()Ljava/util/List; net/minecraft/client/gui/screens/worldselection/WorldCreationUiState/getAltPresetList ()Ljava/util/List; +MD: net/minecraft/client/gui/screens/worldselection/WorldCreationUiState/m_267677_ (Lnet/minecraft/world/level/levelgen/WorldOptions;)Lnet/minecraft/world/level/levelgen/WorldOptions; net/minecraft/client/gui/screens/worldselection/WorldCreationUiState/lambda$setSeed$2 (Lnet/minecraft/world/level/levelgen/WorldOptions;)Lnet/minecraft/world/level/levelgen/WorldOptions; +MD: net/minecraft/client/gui/screens/worldselection/WorldCreationUiState/m_267692_ (Lnet/minecraft/client/gui/screens/worldselection/WorldCreationContext;)V net/minecraft/client/gui/screens/worldselection/WorldCreationUiState/setSettings (Lnet/minecraft/client/gui/screens/worldselection/WorldCreationContext;)V +MD: net/minecraft/client/gui/screens/worldselection/WorldCreationUiState/m_267707_ ()Ljava/lang/String; net/minecraft/client/gui/screens/worldselection/WorldCreationUiState/getSeed ()Ljava/lang/String; +MD: net/minecraft/client/gui/screens/worldselection/WorldCreationUiState/m_267710_ (Lnet/minecraft/world/level/WorldDataConfiguration;)Z net/minecraft/client/gui/screens/worldselection/WorldCreationUiState/tryUpdateDataConfiguration (Lnet/minecraft/world/level/WorldDataConfiguration;)Z +MD: net/minecraft/client/gui/screens/worldselection/WorldCreationUiState/m_267717_ (Lnet/minecraft/client/gui/screens/worldselection/WorldCreationContext$DimensionsUpdater;)V net/minecraft/client/gui/screens/worldselection/WorldCreationUiState/updateDimensions (Lnet/minecraft/client/gui/screens/worldselection/WorldCreationContext$DimensionsUpdater;)V +MD: net/minecraft/client/gui/screens/worldselection/WorldCreationUiState/m_267720_ (ZLnet/minecraft/world/level/levelgen/WorldOptions;)Lnet/minecraft/world/level/levelgen/WorldOptions; net/minecraft/client/gui/screens/worldselection/WorldCreationUiState/lambda$onChanged$1 (ZLnet/minecraft/world/level/levelgen/WorldOptions;)Lnet/minecraft/world/level/levelgen/WorldOptions; +MD: net/minecraft/client/gui/screens/worldselection/WorldCreationUiState/m_267721_ ()Lnet/minecraft/world/level/GameRules; net/minecraft/client/gui/screens/worldselection/WorldCreationUiState/getGameRules ()Lnet/minecraft/world/level/GameRules; +MD: net/minecraft/client/gui/screens/worldselection/WorldCreationUiState/m_267735_ ()Z net/minecraft/client/gui/screens/worldselection/WorldCreationUiState/isDebug ()Z +MD: net/minecraft/client/gui/screens/worldselection/WorldCreationUiState/m_267744_ ()Lnet/minecraft/client/gui/screens/worldselection/PresetEditor; net/minecraft/client/gui/screens/worldselection/WorldCreationUiState/getPresetEditor ()Lnet/minecraft/client/gui/screens/worldselection/PresetEditor; +MD: net/minecraft/client/gui/screens/worldselection/WorldCreationUiState/m_267754_ (Lnet/minecraft/world/Difficulty;)V net/minecraft/client/gui/screens/worldselection/WorldCreationUiState/setDifficulty (Lnet/minecraft/world/Difficulty;)V +MD: net/minecraft/client/gui/screens/worldselection/WorldCreationUiState/m_267755_ (Ljava/util/function/Consumer;)V net/minecraft/client/gui/screens/worldselection/WorldCreationUiState/addListener (Ljava/util/function/Consumer;)V +MD: net/minecraft/client/gui/screens/worldselection/WorldCreationUiState/m_267758_ ()V net/minecraft/client/gui/screens/worldselection/WorldCreationUiState/onChanged ()V +MD: net/minecraft/client/gui/screens/worldselection/WorldCreationUiState/m_267759_ (Ljava/lang/String;)V net/minecraft/client/gui/screens/worldselection/WorldCreationUiState/setSeed (Ljava/lang/String;)V +MD: net/minecraft/client/gui/screens/worldselection/WorldCreationUiState/m_267761_ ()Lnet/minecraft/client/gui/screens/worldselection/WorldCreationUiState$SelectedGameMode; net/minecraft/client/gui/screens/worldselection/WorldCreationUiState/getGameMode ()Lnet/minecraft/client/gui/screens/worldselection/WorldCreationUiState$SelectedGameMode; +MD: net/minecraft/client/gui/screens/worldselection/WorldCreationUiState/m_267770_ (Z)V net/minecraft/client/gui/screens/worldselection/WorldCreationUiState/setGenerateStructures (Z)V +MD: net/minecraft/client/gui/screens/worldselection/WorldCreationUiState/m_267777_ (Lnet/minecraft/client/gui/screens/worldselection/WorldCreationContext;Ljava/util/Optional;)Ljava/util/Optional; net/minecraft/client/gui/screens/worldselection/WorldCreationUiState/findPreset (Lnet/minecraft/client/gui/screens/worldselection/WorldCreationContext;Ljava/util/Optional;)Ljava/util/Optional; +MD: net/minecraft/client/gui/screens/worldselection/WorldCreationUiState/m_267788_ (Lnet/minecraft/client/gui/screens/worldselection/WorldCreationContext;Lnet/minecraft/resources/ResourceKey;)Ljava/util/Optional; net/minecraft/client/gui/screens/worldselection/WorldCreationUiState/lambda$findPreset$5 (Lnet/minecraft/client/gui/screens/worldselection/WorldCreationContext;Lnet/minecraft/resources/ResourceKey;)Ljava/util/Optional; +MD: net/minecraft/client/gui/screens/worldselection/WorldCreationUiState/m_267790_ ()Z net/minecraft/client/gui/screens/worldselection/WorldCreationUiState/isHardcore ()Z +MD: net/minecraft/client/gui/screens/worldselection/WorldCreationUiState/m_267798_ (Lnet/minecraft/core/Holder;Lnet/minecraft/core/RegistryAccess$Frozen;Lnet/minecraft/world/level/levelgen/WorldDimensions;)Lnet/minecraft/world/level/levelgen/WorldDimensions; net/minecraft/client/gui/screens/worldselection/WorldCreationUiState/lambda$setWorldType$3 (Lnet/minecraft/core/Holder;Lnet/minecraft/core/RegistryAccess$Frozen;Lnet/minecraft/world/level/levelgen/WorldDimensions;)Lnet/minecraft/world/level/levelgen/WorldDimensions; +MD: net/minecraft/client/gui/screens/worldselection/WorldCreationUiState/m_267811_ (Lnet/minecraft/core/Registry;Lnet/minecraft/tags/TagKey;)Ljava/util/Optional; net/minecraft/client/gui/screens/worldselection/WorldCreationUiState/getNonEmptyList (Lnet/minecraft/core/Registry;Lnet/minecraft/tags/TagKey;)Ljava/util/Optional; +MD: net/minecraft/client/gui/screens/worldselection/WorldCreationUiState/m_267813_ (Ljava/util/List;)Z net/minecraft/client/gui/screens/worldselection/WorldCreationUiState/lambda$getNonEmptyList$7 (Ljava/util/List;)Z +MD: net/minecraft/client/gui/screens/worldselection/WorldCreationUiState/m_267815_ ()Ljava/util/List; net/minecraft/client/gui/screens/worldselection/WorldCreationUiState/getNormalPresetList ()Ljava/util/List; +MD: net/minecraft/client/gui/screens/worldselection/WorldCreationUiState/m_267816_ ()Lnet/minecraft/world/Difficulty; net/minecraft/client/gui/screens/worldselection/WorldCreationUiState/getDifficulty ()Lnet/minecraft/world/Difficulty; +MD: net/minecraft/client/gui/screens/worldselection/WorldCreationUiState/m_267822_ (ZLnet/minecraft/world/level/levelgen/WorldOptions;)Lnet/minecraft/world/level/levelgen/WorldOptions; net/minecraft/client/gui/screens/worldselection/WorldCreationUiState/lambda$onChanged$0 (ZLnet/minecraft/world/level/levelgen/WorldOptions;)Lnet/minecraft/world/level/levelgen/WorldOptions; +MD: net/minecraft/client/gui/screens/worldselection/WorldCreationUiState/m_267823_ ()Z net/minecraft/client/gui/screens/worldselection/WorldCreationUiState/isAllowCheats ()Z +MD: net/minecraft/client/gui/screens/worldselection/WorldCreationUiState/m_267828_ ()Lnet/minecraft/client/gui/screens/worldselection/WorldCreationUiState$WorldTypeEntry; net/minecraft/client/gui/screens/worldselection/WorldCreationUiState/getWorldType ()Lnet/minecraft/client/gui/screens/worldselection/WorldCreationUiState$WorldTypeEntry; +MD: net/minecraft/client/gui/screens/worldselection/WorldCreationUiState/m_275837_ ()Ljava/lang/String; net/minecraft/client/gui/screens/worldselection/WorldCreationUiState/getTargetFolder ()Ljava/lang/String; +MD: net/minecraft/client/gui/screens/worldselection/WorldCreationUiState/m_275848_ (Ljava/lang/String;)Ljava/lang/String; net/minecraft/client/gui/screens/worldselection/WorldCreationUiState/findResultFolder (Ljava/lang/String;)Ljava/lang/String; +MD: net/minecraft/client/gui/screens/worldselection/WorldCreationUiState$SelectedGameMode/ ()V net/minecraft/client/gui/screens/worldselection/WorldCreationUiState$SelectedGameMode/ ()V +MD: net/minecraft/client/gui/screens/worldselection/WorldCreationUiState$SelectedGameMode/ (Ljava/lang/String;ILjava/lang/String;Lnet/minecraft/world/level/GameType;)V net/minecraft/client/gui/screens/worldselection/WorldCreationUiState$SelectedGameMode/ (Ljava/lang/String;ILjava/lang/String;Lnet/minecraft/world/level/GameType;)V +MD: net/minecraft/client/gui/screens/worldselection/WorldCreationUiState$SelectedGameMode/m_267564_ ()Lnet/minecraft/network/chat/Component; net/minecraft/client/gui/screens/worldselection/WorldCreationUiState$SelectedGameMode/getInfo ()Lnet/minecraft/network/chat/Component; +MD: net/minecraft/client/gui/screens/worldselection/WorldCreationUiState$SelectedGameMode/m_267789_ ()[Lnet/minecraft/client/gui/screens/worldselection/WorldCreationUiState$SelectedGameMode; net/minecraft/client/gui/screens/worldselection/WorldCreationUiState$SelectedGameMode/$values ()[Lnet/minecraft/client/gui/screens/worldselection/WorldCreationUiState$SelectedGameMode; +MD: net/minecraft/client/gui/screens/worldselection/WorldCreationUiState$SelectedGameMode/valueOf (Ljava/lang/String;)Lnet/minecraft/client/gui/screens/worldselection/WorldCreationUiState$SelectedGameMode; net/minecraft/client/gui/screens/worldselection/WorldCreationUiState$SelectedGameMode/valueOf (Ljava/lang/String;)Lnet/minecraft/client/gui/screens/worldselection/WorldCreationUiState$SelectedGameMode; +MD: net/minecraft/client/gui/screens/worldselection/WorldCreationUiState$SelectedGameMode/values ()[Lnet/minecraft/client/gui/screens/worldselection/WorldCreationUiState$SelectedGameMode; net/minecraft/client/gui/screens/worldselection/WorldCreationUiState$SelectedGameMode/values ()[Lnet/minecraft/client/gui/screens/worldselection/WorldCreationUiState$SelectedGameMode; +MD: net/minecraft/client/gui/screens/worldselection/WorldCreationUiState$WorldTypeEntry/ ()V net/minecraft/client/gui/screens/worldselection/WorldCreationUiState$WorldTypeEntry/ ()V +MD: net/minecraft/client/gui/screens/worldselection/WorldCreationUiState$WorldTypeEntry/ (Lnet/minecraft/core/Holder;)V net/minecraft/client/gui/screens/worldselection/WorldCreationUiState$WorldTypeEntry/ (Lnet/minecraft/core/Holder;)V +MD: net/minecraft/client/gui/screens/worldselection/WorldCreationUiState$WorldTypeEntry/equals (Ljava/lang/Object;)Z net/minecraft/client/gui/screens/worldselection/WorldCreationUiState$WorldTypeEntry/equals (Ljava/lang/Object;)Z +MD: net/minecraft/client/gui/screens/worldselection/WorldCreationUiState$WorldTypeEntry/f_267398_ ()Lnet/minecraft/core/Holder; net/minecraft/client/gui/screens/worldselection/WorldCreationUiState$WorldTypeEntry/preset ()Lnet/minecraft/core/Holder; +MD: net/minecraft/client/gui/screens/worldselection/WorldCreationUiState$WorldTypeEntry/hashCode ()I net/minecraft/client/gui/screens/worldselection/WorldCreationUiState$WorldTypeEntry/hashCode ()I +MD: net/minecraft/client/gui/screens/worldselection/WorldCreationUiState$WorldTypeEntry/m_267572_ ()Lnet/minecraft/network/chat/Component; net/minecraft/client/gui/screens/worldselection/WorldCreationUiState$WorldTypeEntry/describePreset ()Lnet/minecraft/network/chat/Component; +MD: net/minecraft/client/gui/screens/worldselection/WorldCreationUiState$WorldTypeEntry/m_267580_ (Lnet/minecraft/resources/ResourceKey;)Lnet/minecraft/network/chat/Component; net/minecraft/client/gui/screens/worldselection/WorldCreationUiState$WorldTypeEntry/lambda$describePreset$0 (Lnet/minecraft/resources/ResourceKey;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/client/gui/screens/worldselection/WorldCreationUiState$WorldTypeEntry/m_267589_ ()Z net/minecraft/client/gui/screens/worldselection/WorldCreationUiState$WorldTypeEntry/isAmplified ()Z +MD: net/minecraft/client/gui/screens/worldselection/WorldCreationUiState$WorldTypeEntry/m_267678_ (Lnet/minecraft/resources/ResourceKey;)Z net/minecraft/client/gui/screens/worldselection/WorldCreationUiState$WorldTypeEntry/lambda$isAmplified$1 (Lnet/minecraft/resources/ResourceKey;)Z +MD: net/minecraft/client/gui/screens/worldselection/WorldCreationUiState$WorldTypeEntry/toString ()Ljava/lang/String; net/minecraft/client/gui/screens/worldselection/WorldCreationUiState$WorldTypeEntry/toString ()Ljava/lang/String; +MD: net/minecraft/client/gui/screens/worldselection/WorldOpenFlows/ ()V net/minecraft/client/gui/screens/worldselection/WorldOpenFlows/ ()V +MD: net/minecraft/client/gui/screens/worldselection/WorldOpenFlows/ (Lnet/minecraft/client/Minecraft;Lnet/minecraft/world/level/storage/LevelStorageSource;)V net/minecraft/client/gui/screens/worldselection/WorldOpenFlows/ (Lnet/minecraft/client/Minecraft;Lnet/minecraft/world/level/storage/LevelStorageSource;)V +MD: net/minecraft/client/gui/screens/worldselection/WorldOpenFlows/m_233095_ ()Ljava/util/concurrent/CompletableFuture; net/minecraft/client/gui/screens/worldselection/WorldOpenFlows/promptBundledPackLoadFailure ()Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/client/gui/screens/worldselection/WorldOpenFlows/m_233116_ (Lnet/minecraft/world/level/storage/LevelStorageSource$LevelStorageAccess;Ljava/lang/String;)V net/minecraft/client/gui/screens/worldselection/WorldOpenFlows/safeCloseAccess (Lnet/minecraft/world/level/storage/LevelStorageSource$LevelStorageAccess;Ljava/lang/String;)V +MD: net/minecraft/client/gui/screens/worldselection/WorldOpenFlows/m_233119_ (Lnet/minecraft/world/level/storage/LevelStorageSource$LevelStorageAccess;Z)Lnet/minecraft/server/WorldStem; net/minecraft/client/gui/screens/worldselection/WorldOpenFlows/loadWorldStem (Lnet/minecraft/world/level/storage/LevelStorageSource$LevelStorageAccess;Z)Lnet/minecraft/server/WorldStem; +MD: net/minecraft/client/gui/screens/worldselection/WorldOpenFlows/m_233122_ (Lnet/minecraft/world/level/storage/LevelStorageSource$LevelStorageAccess;ZLnet/minecraft/server/packs/repository/PackRepository;)Lnet/minecraft/server/WorldStem; net/minecraft/client/gui/screens/worldselection/WorldOpenFlows/loadWorldStem (Lnet/minecraft/world/level/storage/LevelStorageSource$LevelStorageAccess;ZLnet/minecraft/server/packs/repository/PackRepository;)Lnet/minecraft/server/WorldStem; +MD: net/minecraft/client/gui/screens/worldselection/WorldOpenFlows/m_233131_ (Lnet/minecraft/client/gui/screens/Screen;)V net/minecraft/client/gui/screens/worldselection/WorldOpenFlows/lambda$doLoadLevel$9 (Lnet/minecraft/client/gui/screens/Screen;)V +MD: net/minecraft/client/gui/screens/worldselection/WorldOpenFlows/m_233133_ (Lnet/minecraft/client/gui/screens/Screen;Ljava/lang/String;)V net/minecraft/client/gui/screens/worldselection/WorldOpenFlows/loadLevel (Lnet/minecraft/client/gui/screens/Screen;Ljava/lang/String;)V +MD: net/minecraft/client/gui/screens/worldselection/WorldOpenFlows/m_233136_ (Lnet/minecraft/client/gui/screens/Screen;Ljava/lang/String;Z)V net/minecraft/client/gui/screens/worldselection/WorldOpenFlows/lambda$doLoadLevel$6 (Lnet/minecraft/client/gui/screens/Screen;Ljava/lang/String;Z)V +MD: net/minecraft/client/gui/screens/worldselection/WorldOpenFlows/m_233140_ (Lnet/minecraft/client/gui/screens/Screen;Ljava/lang/String;ZLjava/lang/Runnable;)V net/minecraft/client/gui/screens/worldselection/WorldOpenFlows/askForBackup (Lnet/minecraft/client/gui/screens/Screen;Ljava/lang/String;ZLjava/lang/Runnable;)V +MD: net/minecraft/client/gui/screens/worldselection/WorldOpenFlows/m_233145_ (Lnet/minecraft/client/gui/screens/Screen;Ljava/lang/String;ZZ)V net/minecraft/client/gui/screens/worldselection/WorldOpenFlows/doLoadLevel (Lnet/minecraft/client/gui/screens/Screen;Ljava/lang/String;ZZ)V +MD: net/minecraft/client/gui/screens/worldselection/WorldOpenFlows/m_233150_ (Ljava/lang/Runnable;Lnet/minecraft/client/Minecraft;Lnet/minecraft/client/gui/screens/worldselection/CreateWorldScreen;Z)V net/minecraft/client/gui/screens/worldselection/WorldOpenFlows/lambda$confirmWorldCreation$13 (Ljava/lang/Runnable;Lnet/minecraft/client/Minecraft;Lnet/minecraft/client/gui/screens/worldselection/CreateWorldScreen;Z)V +MD: net/minecraft/client/gui/screens/worldselection/WorldOpenFlows/m_233155_ (Ljava/lang/String;)Lnet/minecraft/world/level/storage/LevelStorageSource$LevelStorageAccess; net/minecraft/client/gui/screens/worldselection/WorldOpenFlows/createWorldAccess (Ljava/lang/String;)Lnet/minecraft/world/level/storage/LevelStorageSource$LevelStorageAccess; +MD: net/minecraft/client/gui/screens/worldselection/WorldOpenFlows/m_233157_ (Ljava/lang/String;Lnet/minecraft/world/level/LevelSettings;Lnet/minecraft/world/level/levelgen/WorldOptions;Ljava/util/function/Function;)V net/minecraft/client/gui/screens/worldselection/WorldOpenFlows/createFreshLevel (Ljava/lang/String;Lnet/minecraft/world/level/LevelSettings;Lnet/minecraft/world/level/levelgen/WorldOptions;Ljava/util/function/Function;)V +MD: net/minecraft/client/gui/screens/worldselection/WorldOpenFlows/m_233169_ (Ljava/lang/String;Ljava/lang/Runnable;ZZ)V net/minecraft/client/gui/screens/worldselection/WorldOpenFlows/lambda$askForBackup$12 (Ljava/lang/String;Ljava/lang/Runnable;ZZ)V +MD: net/minecraft/client/gui/screens/worldselection/WorldOpenFlows/m_233174_ (Ljava/lang/Throwable;)Ljava/lang/Void; net/minecraft/client/gui/screens/worldselection/WorldOpenFlows/lambda$doLoadLevel$11 (Ljava/lang/Throwable;)Ljava/lang/Void; +MD: net/minecraft/client/gui/screens/worldselection/WorldOpenFlows/m_233176_ (Ljava/lang/Void;)Ljava/lang/Boolean; net/minecraft/client/gui/screens/worldselection/WorldOpenFlows/lambda$doLoadLevel$7 (Ljava/lang/Void;)Ljava/lang/Boolean; +MD: net/minecraft/client/gui/screens/worldselection/WorldOpenFlows/m_233178_ (Lnet/minecraft/client/gui/screens/Screen;Ljava/lang/String;Z)V net/minecraft/client/gui/screens/worldselection/WorldOpenFlows/lambda$doLoadLevel$4 (Lnet/minecraft/client/gui/screens/Screen;Ljava/lang/String;Z)V +MD: net/minecraft/client/gui/screens/worldselection/WorldOpenFlows/m_233182_ (Ljava/lang/Throwable;)Ljava/util/concurrent/CompletionStage; net/minecraft/client/gui/screens/worldselection/WorldOpenFlows/lambda$doLoadLevel$8 (Ljava/lang/Throwable;)Ljava/util/concurrent/CompletionStage; +MD: net/minecraft/client/gui/screens/worldselection/WorldOpenFlows/m_244696_ (Lnet/minecraft/server/packs/resources/CloseableResourceManager;Lnet/minecraft/server/ReloadableServerResources;Lnet/minecraft/core/LayeredRegistryAccess;Lnet/minecraft/client/gui/screens/worldselection/WorldOpenFlows$1Data;)Lcom/mojang/datafixers/util/Pair; net/minecraft/client/gui/screens/worldselection/WorldOpenFlows/lambda$recreateWorldData$3 (Lnet/minecraft/server/packs/resources/CloseableResourceManager;Lnet/minecraft/server/ReloadableServerResources;Lnet/minecraft/core/LayeredRegistryAccess;Lnet/minecraft/client/gui/screens/worldselection/WorldOpenFlows$1Data;)Lcom/mojang/datafixers/util/Pair; +MD: net/minecraft/client/gui/screens/worldselection/WorldOpenFlows/m_244698_ (Lnet/minecraft/world/level/storage/LevelStorageSource$LevelStorageAccess;Lnet/minecraft/server/WorldLoader$DataLoadContext;)Lnet/minecraft/server/WorldLoader$DataLoadOutput; net/minecraft/client/gui/screens/worldselection/WorldOpenFlows/lambda$loadWorldStem$1 (Lnet/minecraft/world/level/storage/LevelStorageSource$LevelStorageAccess;Lnet/minecraft/server/WorldLoader$DataLoadContext;)Lnet/minecraft/server/WorldLoader$DataLoadOutput; +MD: net/minecraft/client/gui/screens/worldselection/WorldOpenFlows/m_244700_ (Lnet/minecraft/world/level/storage/LevelStorageSource$LevelStorageAccess;Lnet/minecraft/server/WorldLoader$DataLoadContext;)Lnet/minecraft/server/WorldLoader$DataLoadOutput; net/minecraft/client/gui/screens/worldselection/WorldOpenFlows/lambda$recreateWorldData$2 (Lnet/minecraft/world/level/storage/LevelStorageSource$LevelStorageAccess;Lnet/minecraft/server/WorldLoader$DataLoadContext;)Lnet/minecraft/server/WorldLoader$DataLoadOutput; +MD: net/minecraft/client/gui/screens/worldselection/WorldOpenFlows/m_245064_ (Lnet/minecraft/world/level/storage/LevelStorageSource$LevelStorageAccess;Lnet/minecraft/server/ReloadableServerResources;Lnet/minecraft/core/LayeredRegistryAccess;Lnet/minecraft/world/level/storage/WorldData;)V net/minecraft/client/gui/screens/worldselection/WorldOpenFlows/createLevelFromExistingSettings (Lnet/minecraft/world/level/storage/LevelStorageSource$LevelStorageAccess;Lnet/minecraft/server/ReloadableServerResources;Lnet/minecraft/core/LayeredRegistryAccess;Lnet/minecraft/world/level/storage/WorldData;)V +MD: net/minecraft/client/gui/screens/worldselection/WorldOpenFlows/m_246225_ (Lnet/minecraft/world/level/storage/LevelStorageSource$LevelStorageAccess;)Lcom/mojang/datafixers/util/Pair; net/minecraft/client/gui/screens/worldselection/WorldOpenFlows/recreateWorldData (Lnet/minecraft/world/level/storage/LevelStorageSource$LevelStorageAccess;)Lcom/mojang/datafixers/util/Pair; +MD: net/minecraft/client/gui/screens/worldselection/WorldOpenFlows/m_246486_ (Lnet/minecraft/server/WorldLoader$PackConfig;Lnet/minecraft/server/WorldLoader$WorldDataSupplier;Lnet/minecraft/server/WorldLoader$ResultFactory;)Ljava/lang/Object; net/minecraft/client/gui/screens/worldselection/WorldOpenFlows/loadWorldDataBlocking (Lnet/minecraft/server/WorldLoader$PackConfig;Lnet/minecraft/server/WorldLoader$WorldDataSupplier;Lnet/minecraft/server/WorldLoader$ResultFactory;)Ljava/lang/Object; +MD: net/minecraft/client/gui/screens/worldselection/WorldOpenFlows/m_247188_ (Lnet/minecraft/world/level/storage/LevelStorageSource$LevelStorageAccess;ZLnet/minecraft/server/packs/repository/PackRepository;)Lnet/minecraft/server/WorldLoader$PackConfig; net/minecraft/client/gui/screens/worldselection/WorldOpenFlows/getPackConfigFromLevelData (Lnet/minecraft/world/level/storage/LevelStorageSource$LevelStorageAccess;ZLnet/minecraft/server/packs/repository/PackRepository;)Lnet/minecraft/server/WorldLoader$PackConfig; +MD: net/minecraft/client/gui/screens/worldselection/WorldOpenFlows/m_257083_ (Ljava/util/function/Function;Lnet/minecraft/world/level/LevelSettings;Lnet/minecraft/world/level/levelgen/WorldOptions;Lnet/minecraft/server/WorldLoader$DataLoadContext;)Lnet/minecraft/server/WorldLoader$DataLoadOutput; net/minecraft/client/gui/screens/worldselection/WorldOpenFlows/lambda$createFreshLevel$0 (Ljava/util/function/Function;Lnet/minecraft/world/level/LevelSettings;Lnet/minecraft/world/level/levelgen/WorldOptions;Lnet/minecraft/server/WorldLoader$DataLoadContext;)Lnet/minecraft/server/WorldLoader$DataLoadOutput; +MD: net/minecraft/client/gui/screens/worldselection/WorldOpenFlows/m_260762_ (Ljava/lang/String;Lnet/minecraft/world/level/storage/LevelStorageSource$LevelStorageAccess;Lnet/minecraft/server/packs/repository/PackRepository;Lnet/minecraft/server/WorldStem;Lnet/minecraft/client/gui/screens/Screen;Ljava/lang/Boolean;)V net/minecraft/client/gui/screens/worldselection/WorldOpenFlows/lambda$doLoadLevel$10 (Ljava/lang/String;Lnet/minecraft/world/level/storage/LevelStorageSource$LevelStorageAccess;Lnet/minecraft/server/packs/repository/PackRepository;Lnet/minecraft/server/WorldStem;Lnet/minecraft/client/gui/screens/Screen;Ljava/lang/Boolean;)V +MD: net/minecraft/client/gui/screens/worldselection/WorldOpenFlows/m_269260_ (Lnet/minecraft/client/Minecraft;Lnet/minecraft/client/gui/screens/worldselection/CreateWorldScreen;Lcom/mojang/serialization/Lifecycle;Ljava/lang/Runnable;Z)V net/minecraft/client/gui/screens/worldselection/WorldOpenFlows/confirmWorldCreation (Lnet/minecraft/client/Minecraft;Lnet/minecraft/client/gui/screens/worldselection/CreateWorldScreen;Lcom/mojang/serialization/Lifecycle;Ljava/lang/Runnable;Z)V +MD: net/minecraft/client/gui/screens/worldselection/WorldOpenFlows/m_275780_ ()V net/minecraft/client/gui/screens/worldselection/WorldOpenFlows/lambda$doLoadLevel$5 ()V +MD: net/minecraft/client/gui/screens/worldselection/WorldOpenFlows$1Data/ (Lnet/minecraft/world/level/LevelSettings;Lnet/minecraft/world/level/levelgen/WorldOptions;Lnet/minecraft/core/Registry;)V net/minecraft/client/gui/screens/worldselection/WorldOpenFlows$1Data/ (Lnet/minecraft/world/level/LevelSettings;Lnet/minecraft/world/level/levelgen/WorldOptions;Lnet/minecraft/core/Registry;)V +MD: net/minecraft/client/gui/screens/worldselection/WorldOpenFlows$1Data/equals (Ljava/lang/Object;)Z net/minecraft/client/gui/screens/worldselection/WorldOpenFlows$1Data/equals (Ljava/lang/Object;)Z +MD: net/minecraft/client/gui/screens/worldselection/WorldOpenFlows$1Data/f_244151_ ()Lnet/minecraft/core/Registry; net/minecraft/client/gui/screens/worldselection/WorldOpenFlows$1Data/existingDimensions ()Lnet/minecraft/core/Registry; +MD: net/minecraft/client/gui/screens/worldselection/WorldOpenFlows$1Data/f_244166_ ()Lnet/minecraft/world/level/LevelSettings; net/minecraft/client/gui/screens/worldselection/WorldOpenFlows$1Data/levelSettings ()Lnet/minecraft/world/level/LevelSettings; +MD: net/minecraft/client/gui/screens/worldselection/WorldOpenFlows$1Data/f_244534_ ()Lnet/minecraft/world/level/levelgen/WorldOptions; net/minecraft/client/gui/screens/worldselection/WorldOpenFlows$1Data/options ()Lnet/minecraft/world/level/levelgen/WorldOptions; +MD: net/minecraft/client/gui/screens/worldselection/WorldOpenFlows$1Data/hashCode ()I net/minecraft/client/gui/screens/worldselection/WorldOpenFlows$1Data/hashCode ()I +MD: net/minecraft/client/gui/screens/worldselection/WorldOpenFlows$1Data/toString ()Ljava/lang/String; net/minecraft/client/gui/screens/worldselection/WorldOpenFlows$1Data/toString ()Ljava/lang/String; +MD: net/minecraft/client/gui/screens/worldselection/WorldSelectionList/ ()V net/minecraft/client/gui/screens/worldselection/WorldSelectionList/ ()V +MD: net/minecraft/client/gui/screens/worldselection/WorldSelectionList/ (Lnet/minecraft/client/gui/screens/worldselection/SelectWorldScreen;Lnet/minecraft/client/Minecraft;IIIIILjava/lang/String;Lnet/minecraft/client/gui/screens/worldselection/WorldSelectionList;)V net/minecraft/client/gui/screens/worldselection/WorldSelectionList/ (Lnet/minecraft/client/gui/screens/worldselection/SelectWorldScreen;Lnet/minecraft/client/Minecraft;IIIIILjava/lang/String;Lnet/minecraft/client/gui/screens/worldselection/WorldSelectionList;)V +MD: net/minecraft/client/gui/screens/worldselection/WorldSelectionList/m_101684_ ()Ljava/util/Optional; net/minecraft/client/gui/screens/worldselection/WorldSelectionList/getSelectedOpt ()Ljava/util/Optional; +MD: net/minecraft/client/gui/screens/worldselection/WorldSelectionList/m_101685_ ()Lnet/minecraft/client/gui/screens/worldselection/SelectWorldScreen; net/minecraft/client/gui/screens/worldselection/WorldSelectionList/getScreen ()Lnet/minecraft/client/gui/screens/worldselection/SelectWorldScreen; +MD: net/minecraft/client/gui/screens/worldselection/WorldSelectionList/m_142291_ (Lnet/minecraft/client/gui/narration/NarrationElementOutput;)V net/minecraft/client/gui/screens/worldselection/WorldSelectionList/updateNarration (Lnet/minecraft/client/gui/narration/NarrationElementOutput;)V +MD: net/minecraft/client/gui/screens/worldselection/WorldSelectionList/m_233191_ (Lnet/minecraft/client/gui/screens/worldselection/WorldSelectionList;)Lnet/minecraft/client/Minecraft; net/minecraft/client/gui/screens/worldselection/WorldSelectionList/access$000 (Lnet/minecraft/client/gui/screens/worldselection/WorldSelectionList;)Lnet/minecraft/client/Minecraft; +MD: net/minecraft/client/gui/screens/worldselection/WorldSelectionList/m_233195_ (Ljava/lang/String;Lnet/minecraft/world/level/storage/LevelSummary;)Z net/minecraft/client/gui/screens/worldselection/WorldSelectionList/filterAccepts (Ljava/lang/String;Lnet/minecraft/world/level/storage/LevelSummary;)Z +MD: net/minecraft/client/gui/screens/worldselection/WorldSelectionList/m_233198_ (Ljava/lang/String;Ljava/util/List;)V net/minecraft/client/gui/screens/worldselection/WorldSelectionList/fillLevels (Ljava/lang/String;Ljava/util/List;)V +MD: net/minecraft/client/gui/screens/worldselection/WorldSelectionList/m_233201_ (Ljava/lang/Throwable;)Ljava/util/List; net/minecraft/client/gui/screens/worldselection/WorldSelectionList/lambda$loadLevels$0 (Ljava/lang/Throwable;)Ljava/util/List; +MD: net/minecraft/client/gui/screens/worldselection/WorldSelectionList/m_233206_ ()V net/minecraft/client/gui/screens/worldselection/WorldSelectionList/reloadWorldList ()V +MD: net/minecraft/client/gui/screens/worldselection/WorldSelectionList/m_233211_ (Lnet/minecraft/network/chat/Component;)V net/minecraft/client/gui/screens/worldselection/WorldSelectionList/handleLevelLoadFailure (Lnet/minecraft/network/chat/Component;)V +MD: net/minecraft/client/gui/screens/worldselection/WorldSelectionList/m_233213_ ()Ljava/util/concurrent/CompletableFuture; net/minecraft/client/gui/screens/worldselection/WorldSelectionList/loadLevels ()Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/client/gui/screens/worldselection/WorldSelectionList/m_233214_ ()V net/minecraft/client/gui/screens/worldselection/WorldSelectionList/fillLoadingLevels ()V +MD: net/minecraft/client/gui/screens/worldselection/WorldSelectionList/m_233215_ ()V net/minecraft/client/gui/screens/worldselection/WorldSelectionList/notifyListUpdated ()V +MD: net/minecraft/client/gui/screens/worldselection/WorldSelectionList/m_239664_ (Ljava/util/List;)V net/minecraft/client/gui/screens/worldselection/WorldSelectionList/handleNewLevels (Ljava/util/List;)V +MD: net/minecraft/client/gui/screens/worldselection/WorldSelectionList/m_239900_ (Ljava/lang/String;)V net/minecraft/client/gui/screens/worldselection/WorldSelectionList/updateFilter (Ljava/lang/String;)V +MD: net/minecraft/client/gui/screens/worldselection/WorldSelectionList/m_239987_ ()Ljava/util/List; net/minecraft/client/gui/screens/worldselection/WorldSelectionList/pollLevelsIgnoreErrors ()Ljava/util/List; +MD: net/minecraft/client/gui/screens/worldselection/WorldSelectionList/m_5756_ ()I net/minecraft/client/gui/screens/worldselection/WorldSelectionList/getScrollbarPosition ()I +MD: net/minecraft/client/gui/screens/worldselection/WorldSelectionList/m_5759_ ()I net/minecraft/client/gui/screens/worldselection/WorldSelectionList/getRowWidth ()I +MD: net/minecraft/client/gui/screens/worldselection/WorldSelectionList/m_6987_ (Lnet/minecraft/client/gui/components/AbstractSelectionList$Entry;)V net/minecraft/client/gui/screens/worldselection/WorldSelectionList/setSelected (Lnet/minecraft/client/gui/components/AbstractSelectionList$Entry;)V +MD: net/minecraft/client/gui/screens/worldselection/WorldSelectionList/m_6987_ (Lnet/minecraft/client/gui/screens/worldselection/WorldSelectionList$Entry;)V net/minecraft/client/gui/screens/worldselection/WorldSelectionList/setSelected (Lnet/minecraft/client/gui/screens/worldselection/WorldSelectionList$Entry;)V +MD: net/minecraft/client/gui/screens/worldselection/WorldSelectionList/m_7933_ (III)Z net/minecraft/client/gui/screens/worldselection/WorldSelectionList/keyPressed (III)Z +MD: net/minecraft/client/gui/screens/worldselection/WorldSelectionList/m_88315_ (Lnet/minecraft/client/gui/GuiGraphics;IIF)V net/minecraft/client/gui/screens/worldselection/WorldSelectionList/render (Lnet/minecraft/client/gui/GuiGraphics;IIF)V +MD: net/minecraft/client/gui/screens/worldselection/WorldSelectionList/m_93516_ ()V net/minecraft/client/gui/screens/worldselection/WorldSelectionList/clearEntries ()V +MD: net/minecraft/client/gui/screens/worldselection/WorldSelectionList$Entry/ ()V net/minecraft/client/gui/screens/worldselection/WorldSelectionList$Entry/ ()V +MD: net/minecraft/client/gui/screens/worldselection/WorldSelectionList$Entry/close ()V net/minecraft/client/gui/screens/worldselection/WorldSelectionList$Entry/close ()V +MD: net/minecraft/client/gui/screens/worldselection/WorldSelectionList$Entry/m_214209_ ()Z net/minecraft/client/gui/screens/worldselection/WorldSelectionList$Entry/isSelectable ()Z +MD: net/minecraft/client/gui/screens/worldselection/WorldSelectionList$LoadingHeader/ ()V net/minecraft/client/gui/screens/worldselection/WorldSelectionList$LoadingHeader/ ()V +MD: net/minecraft/client/gui/screens/worldselection/WorldSelectionList$LoadingHeader/ (Lnet/minecraft/client/Minecraft;)V net/minecraft/client/gui/screens/worldselection/WorldSelectionList$LoadingHeader/ (Lnet/minecraft/client/Minecraft;)V +MD: net/minecraft/client/gui/screens/worldselection/WorldSelectionList$LoadingHeader/m_142172_ ()Lnet/minecraft/network/chat/Component; net/minecraft/client/gui/screens/worldselection/WorldSelectionList$LoadingHeader/getNarration ()Lnet/minecraft/network/chat/Component; +MD: net/minecraft/client/gui/screens/worldselection/WorldSelectionList$LoadingHeader/m_214209_ ()Z net/minecraft/client/gui/screens/worldselection/WorldSelectionList$LoadingHeader/isSelectable ()Z +MD: net/minecraft/client/gui/screens/worldselection/WorldSelectionList$LoadingHeader/m_6311_ (Lnet/minecraft/client/gui/GuiGraphics;IIIIIIIZF)V net/minecraft/client/gui/screens/worldselection/WorldSelectionList$LoadingHeader/render (Lnet/minecraft/client/gui/GuiGraphics;IIIIIIIZF)V +MD: net/minecraft/client/gui/screens/worldselection/WorldSelectionList$WorldListEntry/ (Lnet/minecraft/client/gui/screens/worldselection/WorldSelectionList;Lnet/minecraft/client/gui/screens/worldselection/WorldSelectionList;Lnet/minecraft/world/level/storage/LevelSummary;)V net/minecraft/client/gui/screens/worldselection/WorldSelectionList$WorldListEntry/ (Lnet/minecraft/client/gui/screens/worldselection/WorldSelectionList;Lnet/minecraft/client/gui/screens/worldselection/WorldSelectionList;Lnet/minecraft/world/level/storage/LevelSummary;)V +MD: net/minecraft/client/gui/screens/worldselection/WorldSelectionList$WorldListEntry/close ()V net/minecraft/client/gui/screens/worldselection/WorldSelectionList$WorldListEntry/close ()V +MD: net/minecraft/client/gui/screens/worldselection/WorldSelectionList$WorldListEntry/m_101704_ ()V net/minecraft/client/gui/screens/worldselection/WorldSelectionList$WorldListEntry/joinWorld ()V +MD: net/minecraft/client/gui/screens/worldselection/WorldSelectionList$WorldListEntry/m_101738_ ()V net/minecraft/client/gui/screens/worldselection/WorldSelectionList$WorldListEntry/deleteWorld ()V +MD: net/minecraft/client/gui/screens/worldselection/WorldSelectionList$WorldListEntry/m_101739_ ()V net/minecraft/client/gui/screens/worldselection/WorldSelectionList$WorldListEntry/editWorld ()V +MD: net/minecraft/client/gui/screens/worldselection/WorldSelectionList$WorldListEntry/m_101740_ (Z)V net/minecraft/client/gui/screens/worldselection/WorldSelectionList$WorldListEntry/lambda$joinWorld$2 (Z)V +MD: net/minecraft/client/gui/screens/worldselection/WorldSelectionList$WorldListEntry/m_101743_ ()V net/minecraft/client/gui/screens/worldselection/WorldSelectionList$WorldListEntry/recreateWorld ()V +MD: net/minecraft/client/gui/screens/worldselection/WorldSelectionList$WorldListEntry/m_101744_ ()V net/minecraft/client/gui/screens/worldselection/WorldSelectionList$WorldListEntry/loadWorld ()V +MD: net/minecraft/client/gui/screens/worldselection/WorldSelectionList$WorldListEntry/m_101745_ ()V net/minecraft/client/gui/screens/worldselection/WorldSelectionList$WorldListEntry/queueLoadScreen ()V +MD: net/minecraft/client/gui/screens/worldselection/WorldSelectionList$WorldListEntry/m_101746_ ()V net/minecraft/client/gui/screens/worldselection/WorldSelectionList$WorldListEntry/loadIcon ()V +MD: net/minecraft/client/gui/screens/worldselection/WorldSelectionList$WorldListEntry/m_142172_ ()Lnet/minecraft/network/chat/Component; net/minecraft/client/gui/screens/worldselection/WorldSelectionList$WorldListEntry/getNarration ()Lnet/minecraft/network/chat/Component; +MD: net/minecraft/client/gui/screens/worldselection/WorldSelectionList$WorldListEntry/m_170321_ (Z)V net/minecraft/client/gui/screens/worldselection/WorldSelectionList$WorldListEntry/lambda$deleteWorld$3 (Z)V +MD: net/minecraft/client/gui/screens/worldselection/WorldSelectionList$WorldListEntry/m_170323_ ()V net/minecraft/client/gui/screens/worldselection/WorldSelectionList$WorldListEntry/doDeleteWorld ()V +MD: net/minecraft/client/gui/screens/worldselection/WorldSelectionList$WorldListEntry/m_170324_ ()Ljava/lang/String; net/minecraft/client/gui/screens/worldselection/WorldSelectionList$WorldListEntry/getLevelName ()Ljava/lang/String; +MD: net/minecraft/client/gui/screens/worldselection/WorldSelectionList$WorldListEntry/m_170327_ ()V net/minecraft/client/gui/screens/worldselection/WorldSelectionList$WorldListEntry/lambda$joinWorld$1 ()V +MD: net/minecraft/client/gui/screens/worldselection/WorldSelectionList$WorldListEntry/m_214209_ ()Z net/minecraft/client/gui/screens/worldselection/WorldSelectionList$WorldListEntry/isSelectable ()Z +MD: net/minecraft/client/gui/screens/worldselection/WorldSelectionList$WorldListEntry/m_233241_ (Lnet/minecraft/world/level/storage/LevelStorageSource$LevelStorageAccess;Ljava/lang/String;Z)V net/minecraft/client/gui/screens/worldselection/WorldSelectionList$WorldListEntry/lambda$editWorld$4 (Lnet/minecraft/world/level/storage/LevelStorageSource$LevelStorageAccess;Ljava/lang/String;Z)V +MD: net/minecraft/client/gui/screens/worldselection/WorldSelectionList$WorldListEntry/m_233245_ ()V net/minecraft/client/gui/screens/worldselection/WorldSelectionList$WorldListEntry/lambda$recreateWorld$6 ()V +MD: net/minecraft/client/gui/screens/worldselection/WorldSelectionList$WorldListEntry/m_275781_ (Lnet/minecraft/world/level/LevelSettings;Lnet/minecraft/client/gui/screens/worldselection/WorldCreationContext;Ljava/nio/file/Path;Z)V net/minecraft/client/gui/screens/worldselection/WorldSelectionList$WorldListEntry/lambda$recreateWorld$5 (Lnet/minecraft/world/level/LevelSettings;Lnet/minecraft/client/gui/screens/worldselection/WorldCreationContext;Ljava/nio/file/Path;Z)V +MD: net/minecraft/client/gui/screens/worldselection/WorldSelectionList$WorldListEntry/m_289841_ (ZZ)V net/minecraft/client/gui/screens/worldselection/WorldSelectionList$WorldListEntry/lambda$joinWorld$0 (ZZ)V +MD: net/minecraft/client/gui/screens/worldselection/WorldSelectionList$WorldListEntry/m_289856_ ()V net/minecraft/client/gui/screens/worldselection/WorldSelectionList$WorldListEntry/validateIconFile ()V +MD: net/minecraft/client/gui/screens/worldselection/WorldSelectionList$WorldListEntry/m_6311_ (Lnet/minecraft/client/gui/GuiGraphics;IIIIIIIZF)V net/minecraft/client/gui/screens/worldselection/WorldSelectionList$WorldListEntry/render (Lnet/minecraft/client/gui/GuiGraphics;IIIIIIIZF)V +MD: net/minecraft/client/gui/screens/worldselection/WorldSelectionList$WorldListEntry/m_6375_ (DDI)Z net/minecraft/client/gui/screens/worldselection/WorldSelectionList$WorldListEntry/mouseClicked (DDI)Z +MD: net/minecraft/client/gui/spectator/PlayerMenuItem/ (Lcom/mojang/authlib/GameProfile;)V net/minecraft/client/gui/spectator/PlayerMenuItem/ (Lcom/mojang/authlib/GameProfile;)V +MD: net/minecraft/client/gui/spectator/PlayerMenuItem/m_6252_ (Lnet/minecraft/client/gui/GuiGraphics;FI)V net/minecraft/client/gui/spectator/PlayerMenuItem/renderIcon (Lnet/minecraft/client/gui/GuiGraphics;FI)V +MD: net/minecraft/client/gui/spectator/PlayerMenuItem/m_7304_ ()Z net/minecraft/client/gui/spectator/PlayerMenuItem/isEnabled ()Z +MD: net/minecraft/client/gui/spectator/PlayerMenuItem/m_7608_ (Lnet/minecraft/client/gui/spectator/SpectatorMenu;)V net/minecraft/client/gui/spectator/PlayerMenuItem/selectItem (Lnet/minecraft/client/gui/spectator/SpectatorMenu;)V +MD: net/minecraft/client/gui/spectator/PlayerMenuItem/m_7869_ ()Lnet/minecraft/network/chat/Component; net/minecraft/client/gui/spectator/PlayerMenuItem/getName ()Lnet/minecraft/network/chat/Component; +MD: net/minecraft/client/gui/spectator/RootSpectatorMenuCategory/ ()V net/minecraft/client/gui/spectator/RootSpectatorMenuCategory/ ()V +MD: net/minecraft/client/gui/spectator/RootSpectatorMenuCategory/ ()V net/minecraft/client/gui/spectator/RootSpectatorMenuCategory/ ()V +MD: net/minecraft/client/gui/spectator/RootSpectatorMenuCategory/m_5878_ ()Lnet/minecraft/network/chat/Component; net/minecraft/client/gui/spectator/RootSpectatorMenuCategory/getPrompt ()Lnet/minecraft/network/chat/Component; +MD: net/minecraft/client/gui/spectator/RootSpectatorMenuCategory/m_5919_ ()Ljava/util/List; net/minecraft/client/gui/spectator/RootSpectatorMenuCategory/getItems ()Ljava/util/List; +MD: net/minecraft/client/gui/spectator/SpectatorMenu/ ()V net/minecraft/client/gui/spectator/SpectatorMenu/ ()V +MD: net/minecraft/client/gui/spectator/SpectatorMenu/ (Lnet/minecraft/client/gui/spectator/SpectatorMenuListener;)V net/minecraft/client/gui/spectator/SpectatorMenu/ (Lnet/minecraft/client/gui/spectator/SpectatorMenuListener;)V +MD: net/minecraft/client/gui/spectator/SpectatorMenu/m_101786_ ()Ljava/util/List; net/minecraft/client/gui/spectator/SpectatorMenu/getItems ()Ljava/util/List; +MD: net/minecraft/client/gui/spectator/SpectatorMenu/m_101787_ (I)Lnet/minecraft/client/gui/spectator/SpectatorMenuItem; net/minecraft/client/gui/spectator/SpectatorMenu/getItem (I)Lnet/minecraft/client/gui/spectator/SpectatorMenuItem; +MD: net/minecraft/client/gui/spectator/SpectatorMenu/m_101794_ (Lnet/minecraft/client/gui/spectator/SpectatorMenuCategory;)V net/minecraft/client/gui/spectator/SpectatorMenu/selectCategory (Lnet/minecraft/client/gui/spectator/SpectatorMenuCategory;)V +MD: net/minecraft/client/gui/spectator/SpectatorMenu/m_101796_ ()Lnet/minecraft/client/gui/spectator/SpectatorMenuItem; net/minecraft/client/gui/spectator/SpectatorMenu/getSelectedItem ()Lnet/minecraft/client/gui/spectator/SpectatorMenuItem; +MD: net/minecraft/client/gui/spectator/SpectatorMenu/m_101797_ (I)V net/minecraft/client/gui/spectator/SpectatorMenu/selectSlot (I)V +MD: net/minecraft/client/gui/spectator/SpectatorMenu/m_101799_ ()Lnet/minecraft/client/gui/spectator/SpectatorMenuCategory; net/minecraft/client/gui/spectator/SpectatorMenu/getSelectedCategory ()Lnet/minecraft/client/gui/spectator/SpectatorMenuCategory; +MD: net/minecraft/client/gui/spectator/SpectatorMenu/m_101800_ ()V net/minecraft/client/gui/spectator/SpectatorMenu/exit ()V +MD: net/minecraft/client/gui/spectator/SpectatorMenu/m_101801_ ()I net/minecraft/client/gui/spectator/SpectatorMenu/getSelectedSlot ()I +MD: net/minecraft/client/gui/spectator/SpectatorMenu/m_101802_ ()Lnet/minecraft/client/gui/spectator/categories/SpectatorPage; net/minecraft/client/gui/spectator/SpectatorMenu/getCurrentPage ()Lnet/minecraft/client/gui/spectator/categories/SpectatorPage; +MD: net/minecraft/client/gui/spectator/SpectatorMenu$1/ ()V net/minecraft/client/gui/spectator/SpectatorMenu$1/ ()V +MD: net/minecraft/client/gui/spectator/SpectatorMenu$1/m_6252_ (Lnet/minecraft/client/gui/GuiGraphics;FI)V net/minecraft/client/gui/spectator/SpectatorMenu$1/renderIcon (Lnet/minecraft/client/gui/GuiGraphics;FI)V +MD: net/minecraft/client/gui/spectator/SpectatorMenu$1/m_7304_ ()Z net/minecraft/client/gui/spectator/SpectatorMenu$1/isEnabled ()Z +MD: net/minecraft/client/gui/spectator/SpectatorMenu$1/m_7608_ (Lnet/minecraft/client/gui/spectator/SpectatorMenu;)V net/minecraft/client/gui/spectator/SpectatorMenu$1/selectItem (Lnet/minecraft/client/gui/spectator/SpectatorMenu;)V +MD: net/minecraft/client/gui/spectator/SpectatorMenu$1/m_7869_ ()Lnet/minecraft/network/chat/Component; net/minecraft/client/gui/spectator/SpectatorMenu$1/getName ()Lnet/minecraft/network/chat/Component; +MD: net/minecraft/client/gui/spectator/SpectatorMenu$CloseSpectatorItem/ ()V net/minecraft/client/gui/spectator/SpectatorMenu$CloseSpectatorItem/ ()V +MD: net/minecraft/client/gui/spectator/SpectatorMenu$CloseSpectatorItem/m_6252_ (Lnet/minecraft/client/gui/GuiGraphics;FI)V net/minecraft/client/gui/spectator/SpectatorMenu$CloseSpectatorItem/renderIcon (Lnet/minecraft/client/gui/GuiGraphics;FI)V +MD: net/minecraft/client/gui/spectator/SpectatorMenu$CloseSpectatorItem/m_7304_ ()Z net/minecraft/client/gui/spectator/SpectatorMenu$CloseSpectatorItem/isEnabled ()Z +MD: net/minecraft/client/gui/spectator/SpectatorMenu$CloseSpectatorItem/m_7608_ (Lnet/minecraft/client/gui/spectator/SpectatorMenu;)V net/minecraft/client/gui/spectator/SpectatorMenu$CloseSpectatorItem/selectItem (Lnet/minecraft/client/gui/spectator/SpectatorMenu;)V +MD: net/minecraft/client/gui/spectator/SpectatorMenu$CloseSpectatorItem/m_7869_ ()Lnet/minecraft/network/chat/Component; net/minecraft/client/gui/spectator/SpectatorMenu$CloseSpectatorItem/getName ()Lnet/minecraft/network/chat/Component; +MD: net/minecraft/client/gui/spectator/SpectatorMenu$ScrollMenuItem/ (IZ)V net/minecraft/client/gui/spectator/SpectatorMenu$ScrollMenuItem/ (IZ)V +MD: net/minecraft/client/gui/spectator/SpectatorMenu$ScrollMenuItem/m_6252_ (Lnet/minecraft/client/gui/GuiGraphics;FI)V net/minecraft/client/gui/spectator/SpectatorMenu$ScrollMenuItem/renderIcon (Lnet/minecraft/client/gui/GuiGraphics;FI)V +MD: net/minecraft/client/gui/spectator/SpectatorMenu$ScrollMenuItem/m_7304_ ()Z net/minecraft/client/gui/spectator/SpectatorMenu$ScrollMenuItem/isEnabled ()Z +MD: net/minecraft/client/gui/spectator/SpectatorMenu$ScrollMenuItem/m_7608_ (Lnet/minecraft/client/gui/spectator/SpectatorMenu;)V net/minecraft/client/gui/spectator/SpectatorMenu$ScrollMenuItem/selectItem (Lnet/minecraft/client/gui/spectator/SpectatorMenu;)V +MD: net/minecraft/client/gui/spectator/SpectatorMenu$ScrollMenuItem/m_7869_ ()Lnet/minecraft/network/chat/Component; net/minecraft/client/gui/spectator/SpectatorMenu$ScrollMenuItem/getName ()Lnet/minecraft/network/chat/Component; +MD: net/minecraft/client/gui/spectator/SpectatorMenuCategory/m_5878_ ()Lnet/minecraft/network/chat/Component; net/minecraft/client/gui/spectator/SpectatorMenuCategory/getPrompt ()Lnet/minecraft/network/chat/Component; +MD: net/minecraft/client/gui/spectator/SpectatorMenuCategory/m_5919_ ()Ljava/util/List; net/minecraft/client/gui/spectator/SpectatorMenuCategory/getItems ()Ljava/util/List; +MD: net/minecraft/client/gui/spectator/SpectatorMenuItem/m_6252_ (Lnet/minecraft/client/gui/GuiGraphics;FI)V net/minecraft/client/gui/spectator/SpectatorMenuItem/renderIcon (Lnet/minecraft/client/gui/GuiGraphics;FI)V +MD: net/minecraft/client/gui/spectator/SpectatorMenuItem/m_7304_ ()Z net/minecraft/client/gui/spectator/SpectatorMenuItem/isEnabled ()Z +MD: net/minecraft/client/gui/spectator/SpectatorMenuItem/m_7608_ (Lnet/minecraft/client/gui/spectator/SpectatorMenu;)V net/minecraft/client/gui/spectator/SpectatorMenuItem/selectItem (Lnet/minecraft/client/gui/spectator/SpectatorMenu;)V +MD: net/minecraft/client/gui/spectator/SpectatorMenuItem/m_7869_ ()Lnet/minecraft/network/chat/Component; net/minecraft/client/gui/spectator/SpectatorMenuItem/getName ()Lnet/minecraft/network/chat/Component; +MD: net/minecraft/client/gui/spectator/SpectatorMenuListener/m_7613_ (Lnet/minecraft/client/gui/spectator/SpectatorMenu;)V net/minecraft/client/gui/spectator/SpectatorMenuListener/onSpectatorMenuClosed (Lnet/minecraft/client/gui/spectator/SpectatorMenu;)V +MD: net/minecraft/client/gui/spectator/categories/SpectatorPage/ (Ljava/util/List;I)V net/minecraft/client/gui/spectator/categories/SpectatorPage/ (Ljava/util/List;I)V +MD: net/minecraft/client/gui/spectator/categories/SpectatorPage/m_101851_ (I)Lnet/minecraft/client/gui/spectator/SpectatorMenuItem; net/minecraft/client/gui/spectator/categories/SpectatorPage/getItem (I)Lnet/minecraft/client/gui/spectator/SpectatorMenuItem; +MD: net/minecraft/client/gui/spectator/categories/SpectatorPage/m_101853_ ()I net/minecraft/client/gui/spectator/categories/SpectatorPage/getSelectedSlot ()I +MD: net/minecraft/client/gui/spectator/categories/TeleportToPlayerMenuCategory/ ()V net/minecraft/client/gui/spectator/categories/TeleportToPlayerMenuCategory/ ()V +MD: net/minecraft/client/gui/spectator/categories/TeleportToPlayerMenuCategory/ (Ljava/util/Collection;)V net/minecraft/client/gui/spectator/categories/TeleportToPlayerMenuCategory/ (Ljava/util/Collection;)V +MD: net/minecraft/client/gui/spectator/categories/TeleportToPlayerMenuCategory/ ()V net/minecraft/client/gui/spectator/categories/TeleportToPlayerMenuCategory/ ()V +MD: net/minecraft/client/gui/spectator/categories/TeleportToPlayerMenuCategory/m_252581_ (Lnet/minecraft/client/multiplayer/PlayerInfo;)Lnet/minecraft/client/gui/spectator/SpectatorMenuItem; net/minecraft/client/gui/spectator/categories/TeleportToPlayerMenuCategory/lambda$new$2 (Lnet/minecraft/client/multiplayer/PlayerInfo;)Lnet/minecraft/client/gui/spectator/SpectatorMenuItem; +MD: net/minecraft/client/gui/spectator/categories/TeleportToPlayerMenuCategory/m_252582_ (Lnet/minecraft/client/multiplayer/PlayerInfo;)Ljava/util/UUID; net/minecraft/client/gui/spectator/categories/TeleportToPlayerMenuCategory/lambda$static$0 (Lnet/minecraft/client/multiplayer/PlayerInfo;)Ljava/util/UUID; +MD: net/minecraft/client/gui/spectator/categories/TeleportToPlayerMenuCategory/m_252583_ (Lnet/minecraft/client/multiplayer/PlayerInfo;)Z net/minecraft/client/gui/spectator/categories/TeleportToPlayerMenuCategory/lambda$new$1 (Lnet/minecraft/client/multiplayer/PlayerInfo;)Z +MD: net/minecraft/client/gui/spectator/categories/TeleportToPlayerMenuCategory/m_5878_ ()Lnet/minecraft/network/chat/Component; net/minecraft/client/gui/spectator/categories/TeleportToPlayerMenuCategory/getPrompt ()Lnet/minecraft/network/chat/Component; +MD: net/minecraft/client/gui/spectator/categories/TeleportToPlayerMenuCategory/m_5919_ ()Ljava/util/List; net/minecraft/client/gui/spectator/categories/TeleportToPlayerMenuCategory/getItems ()Ljava/util/List; +MD: net/minecraft/client/gui/spectator/categories/TeleportToPlayerMenuCategory/m_6252_ (Lnet/minecraft/client/gui/GuiGraphics;FI)V net/minecraft/client/gui/spectator/categories/TeleportToPlayerMenuCategory/renderIcon (Lnet/minecraft/client/gui/GuiGraphics;FI)V +MD: net/minecraft/client/gui/spectator/categories/TeleportToPlayerMenuCategory/m_7304_ ()Z net/minecraft/client/gui/spectator/categories/TeleportToPlayerMenuCategory/isEnabled ()Z +MD: net/minecraft/client/gui/spectator/categories/TeleportToPlayerMenuCategory/m_7608_ (Lnet/minecraft/client/gui/spectator/SpectatorMenu;)V net/minecraft/client/gui/spectator/categories/TeleportToPlayerMenuCategory/selectItem (Lnet/minecraft/client/gui/spectator/SpectatorMenu;)V +MD: net/minecraft/client/gui/spectator/categories/TeleportToPlayerMenuCategory/m_7869_ ()Lnet/minecraft/network/chat/Component; net/minecraft/client/gui/spectator/categories/TeleportToPlayerMenuCategory/getName ()Lnet/minecraft/network/chat/Component; +MD: net/minecraft/client/gui/spectator/categories/TeleportToTeamMenuCategory/ ()V net/minecraft/client/gui/spectator/categories/TeleportToTeamMenuCategory/ ()V +MD: net/minecraft/client/gui/spectator/categories/TeleportToTeamMenuCategory/ ()V net/minecraft/client/gui/spectator/categories/TeleportToTeamMenuCategory/ ()V +MD: net/minecraft/client/gui/spectator/categories/TeleportToTeamMenuCategory/m_257827_ (Lnet/minecraft/client/Minecraft;Lnet/minecraft/world/scores/PlayerTeam;)Ljava/util/stream/Stream; net/minecraft/client/gui/spectator/categories/TeleportToTeamMenuCategory/lambda$createTeamEntries$0 (Lnet/minecraft/client/Minecraft;Lnet/minecraft/world/scores/PlayerTeam;)Ljava/util/stream/Stream; +MD: net/minecraft/client/gui/spectator/categories/TeleportToTeamMenuCategory/m_257833_ (Lnet/minecraft/client/Minecraft;Lnet/minecraft/world/scores/Scoreboard;)Ljava/util/List; net/minecraft/client/gui/spectator/categories/TeleportToTeamMenuCategory/createTeamEntries (Lnet/minecraft/client/Minecraft;Lnet/minecraft/world/scores/Scoreboard;)Ljava/util/List; +MD: net/minecraft/client/gui/spectator/categories/TeleportToTeamMenuCategory/m_5878_ ()Lnet/minecraft/network/chat/Component; net/minecraft/client/gui/spectator/categories/TeleportToTeamMenuCategory/getPrompt ()Lnet/minecraft/network/chat/Component; +MD: net/minecraft/client/gui/spectator/categories/TeleportToTeamMenuCategory/m_5919_ ()Ljava/util/List; net/minecraft/client/gui/spectator/categories/TeleportToTeamMenuCategory/getItems ()Ljava/util/List; +MD: net/minecraft/client/gui/spectator/categories/TeleportToTeamMenuCategory/m_6252_ (Lnet/minecraft/client/gui/GuiGraphics;FI)V net/minecraft/client/gui/spectator/categories/TeleportToTeamMenuCategory/renderIcon (Lnet/minecraft/client/gui/GuiGraphics;FI)V +MD: net/minecraft/client/gui/spectator/categories/TeleportToTeamMenuCategory/m_7304_ ()Z net/minecraft/client/gui/spectator/categories/TeleportToTeamMenuCategory/isEnabled ()Z +MD: net/minecraft/client/gui/spectator/categories/TeleportToTeamMenuCategory/m_7608_ (Lnet/minecraft/client/gui/spectator/SpectatorMenu;)V net/minecraft/client/gui/spectator/categories/TeleportToTeamMenuCategory/selectItem (Lnet/minecraft/client/gui/spectator/SpectatorMenu;)V +MD: net/minecraft/client/gui/spectator/categories/TeleportToTeamMenuCategory/m_7869_ ()Lnet/minecraft/network/chat/Component; net/minecraft/client/gui/spectator/categories/TeleportToTeamMenuCategory/getName ()Lnet/minecraft/network/chat/Component; +MD: net/minecraft/client/gui/spectator/categories/TeleportToTeamMenuCategory$TeamSelectionItem/ (Lnet/minecraft/world/scores/PlayerTeam;Ljava/util/List;Lnet/minecraft/resources/ResourceLocation;)V net/minecraft/client/gui/spectator/categories/TeleportToTeamMenuCategory$TeamSelectionItem/ (Lnet/minecraft/world/scores/PlayerTeam;Ljava/util/List;Lnet/minecraft/resources/ResourceLocation;)V +MD: net/minecraft/client/gui/spectator/categories/TeleportToTeamMenuCategory$TeamSelectionItem/m_257760_ (Lnet/minecraft/client/Minecraft;Lnet/minecraft/world/scores/PlayerTeam;)Ljava/util/Optional; net/minecraft/client/gui/spectator/categories/TeleportToTeamMenuCategory$TeamSelectionItem/create (Lnet/minecraft/client/Minecraft;Lnet/minecraft/world/scores/PlayerTeam;)Ljava/util/Optional; +MD: net/minecraft/client/gui/spectator/categories/TeleportToTeamMenuCategory$TeamSelectionItem/m_6252_ (Lnet/minecraft/client/gui/GuiGraphics;FI)V net/minecraft/client/gui/spectator/categories/TeleportToTeamMenuCategory$TeamSelectionItem/renderIcon (Lnet/minecraft/client/gui/GuiGraphics;FI)V +MD: net/minecraft/client/gui/spectator/categories/TeleportToTeamMenuCategory$TeamSelectionItem/m_7304_ ()Z net/minecraft/client/gui/spectator/categories/TeleportToTeamMenuCategory$TeamSelectionItem/isEnabled ()Z +MD: net/minecraft/client/gui/spectator/categories/TeleportToTeamMenuCategory$TeamSelectionItem/m_7608_ (Lnet/minecraft/client/gui/spectator/SpectatorMenu;)V net/minecraft/client/gui/spectator/categories/TeleportToTeamMenuCategory$TeamSelectionItem/selectItem (Lnet/minecraft/client/gui/spectator/SpectatorMenu;)V +MD: net/minecraft/client/gui/spectator/categories/TeleportToTeamMenuCategory$TeamSelectionItem/m_7869_ ()Lnet/minecraft/network/chat/Component; net/minecraft/client/gui/spectator/categories/TeleportToTeamMenuCategory$TeamSelectionItem/getName ()Lnet/minecraft/network/chat/Component; +MD: net/minecraft/client/main/GameConfig/ (Lnet/minecraft/client/main/GameConfig$UserData;Lcom/mojang/blaze3d/platform/DisplayData;Lnet/minecraft/client/main/GameConfig$FolderData;Lnet/minecraft/client/main/GameConfig$GameData;Lnet/minecraft/client/main/GameConfig$QuickPlayData;)V net/minecraft/client/main/GameConfig/ (Lnet/minecraft/client/main/GameConfig$UserData;Lcom/mojang/blaze3d/platform/DisplayData;Lnet/minecraft/client/main/GameConfig$FolderData;Lnet/minecraft/client/main/GameConfig$GameData;Lnet/minecraft/client/main/GameConfig$QuickPlayData;)V +MD: net/minecraft/client/main/GameConfig$FolderData/ (Ljava/io/File;Ljava/io/File;Ljava/io/File;Ljava/lang/String;)V net/minecraft/client/main/GameConfig$FolderData/ (Ljava/io/File;Ljava/io/File;Ljava/io/File;Ljava/lang/String;)V +MD: net/minecraft/client/main/GameConfig$FolderData/m_246261_ ()Ljava/nio/file/Path; net/minecraft/client/main/GameConfig$FolderData/getExternalAssetSource ()Ljava/nio/file/Path; +MD: net/minecraft/client/main/GameConfig$GameData/ (ZLjava/lang/String;Ljava/lang/String;ZZ)V net/minecraft/client/main/GameConfig$GameData/ (ZLjava/lang/String;Ljava/lang/String;ZZ)V +MD: net/minecraft/client/main/GameConfig$QuickPlayData/ (Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;)V net/minecraft/client/main/GameConfig$QuickPlayData/ (Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;)V +MD: net/minecraft/client/main/GameConfig$QuickPlayData/equals (Ljava/lang/Object;)Z net/minecraft/client/main/GameConfig$QuickPlayData/equals (Ljava/lang/Object;)Z +MD: net/minecraft/client/main/GameConfig$QuickPlayData/f_278402_ ()Ljava/lang/String; net/minecraft/client/main/GameConfig$QuickPlayData/realms ()Ljava/lang/String; +MD: net/minecraft/client/main/GameConfig$QuickPlayData/f_278424_ ()Ljava/lang/String; net/minecraft/client/main/GameConfig$QuickPlayData/multiplayer ()Ljava/lang/String; +MD: net/minecraft/client/main/GameConfig$QuickPlayData/f_278449_ ()Ljava/lang/String; net/minecraft/client/main/GameConfig$QuickPlayData/singleplayer ()Ljava/lang/String; +MD: net/minecraft/client/main/GameConfig$QuickPlayData/f_278493_ ()Ljava/lang/String; net/minecraft/client/main/GameConfig$QuickPlayData/path ()Ljava/lang/String; +MD: net/minecraft/client/main/GameConfig$QuickPlayData/hashCode ()I net/minecraft/client/main/GameConfig$QuickPlayData/hashCode ()I +MD: net/minecraft/client/main/GameConfig$QuickPlayData/m_278736_ ()Z net/minecraft/client/main/GameConfig$QuickPlayData/isEnabled ()Z +MD: net/minecraft/client/main/GameConfig$QuickPlayData/toString ()Ljava/lang/String; net/minecraft/client/main/GameConfig$QuickPlayData/toString ()Ljava/lang/String; +MD: net/minecraft/client/main/GameConfig$UserData/ (Lnet/minecraft/client/User;Lcom/mojang/authlib/properties/PropertyMap;Lcom/mojang/authlib/properties/PropertyMap;Ljava/net/Proxy;)V net/minecraft/client/main/GameConfig$UserData/ (Lnet/minecraft/client/User;Lcom/mojang/authlib/properties/PropertyMap;Lcom/mojang/authlib/properties/PropertyMap;Ljava/net/Proxy;)V +MD: net/minecraft/client/main/Main/ ()V net/minecraft/client/main/Main/ ()V +MD: net/minecraft/client/main/Main/ ()V net/minecraft/client/main/Main/ ()V +MD: net/minecraft/client/main/Main/m_129634_ (Ljava/lang/Integer;)Ljava/util/OptionalInt; net/minecraft/client/main/Main/ofNullable (Ljava/lang/Integer;)Ljava/util/OptionalInt; +MD: net/minecraft/client/main/Main/m_129636_ (Ljava/lang/String;)Z net/minecraft/client/main/Main/stringHasValue (Ljava/lang/String;)Z +MD: net/minecraft/client/main/Main/m_129638_ (Ljoptsimple/OptionSet;Ljoptsimple/OptionSpec;)Ljava/lang/Object; net/minecraft/client/main/Main/parseArgument (Ljoptsimple/OptionSet;Ljoptsimple/OptionSpec;)Ljava/lang/Object; +MD: net/minecraft/client/main/Main/m_195486_ (Ljava/lang/String;)Ljava/util/Optional; net/minecraft/client/main/Main/emptyStringToEmptyOptional (Ljava/lang/String;)Ljava/util/Optional; +MD: net/minecraft/client/main/Main/main ([Ljava/lang/String;)V net/minecraft/client/main/Main/main ([Ljava/lang/String;)V +MD: net/minecraft/client/main/Main$1/ (Ljava/lang/String;Ljava/lang/String;)V net/minecraft/client/main/Main$1/ (Ljava/lang/String;Ljava/lang/String;)V +MD: net/minecraft/client/main/Main$1/getPasswordAuthentication ()Ljava/net/PasswordAuthentication; net/minecraft/client/main/Main$1/getPasswordAuthentication ()Ljava/net/PasswordAuthentication; +MD: net/minecraft/client/main/Main$2/ (Ljava/lang/String;)V net/minecraft/client/main/Main$2/ (Ljava/lang/String;)V +MD: net/minecraft/client/main/Main$2/run ()V net/minecraft/client/main/Main$2/run ()V +MD: net/minecraft/client/main/Main$3/ (Ljava/lang/String;Lnet/minecraft/client/Minecraft;)V net/minecraft/client/main/Main$3/ (Ljava/lang/String;Lnet/minecraft/client/Minecraft;)V +MD: net/minecraft/client/main/Main$3/run ()V net/minecraft/client/main/Main$3/run ()V +MD: net/minecraft/client/main/SilentInitException/ (Ljava/lang/String;)V net/minecraft/client/main/SilentInitException/ (Ljava/lang/String;)V +MD: net/minecraft/client/main/SilentInitException/ (Ljava/lang/String;Ljava/lang/Throwable;)V net/minecraft/client/main/SilentInitException/ (Ljava/lang/String;Ljava/lang/Throwable;)V +MD: net/minecraft/client/model/AbstractZombieModel/ (Lnet/minecraft/client/model/geom/ModelPart;)V net/minecraft/client/model/AbstractZombieModel/ (Lnet/minecraft/client/model/geom/ModelPart;)V +MD: net/minecraft/client/model/AbstractZombieModel/m_6973_ (Lnet/minecraft/world/entity/Entity;FFFFF)V net/minecraft/client/model/AbstractZombieModel/setupAnim (Lnet/minecraft/world/entity/Entity;FFFFF)V +MD: net/minecraft/client/model/AbstractZombieModel/m_6973_ (Lnet/minecraft/world/entity/LivingEntity;FFFFF)V net/minecraft/client/model/AbstractZombieModel/setupAnim (Lnet/minecraft/world/entity/LivingEntity;FFFFF)V +MD: net/minecraft/client/model/AbstractZombieModel/m_6973_ (Lnet/minecraft/world/entity/monster/Monster;FFFFF)V net/minecraft/client/model/AbstractZombieModel/setupAnim (Lnet/minecraft/world/entity/monster/Monster;FFFFF)V +MD: net/minecraft/client/model/AbstractZombieModel/m_7134_ (Lnet/minecraft/world/entity/monster/Monster;)Z net/minecraft/client/model/AbstractZombieModel/isAggressive (Lnet/minecraft/world/entity/monster/Monster;)Z +MD: net/minecraft/client/model/AgeableHierarchicalModel/ (FF)V net/minecraft/client/model/AgeableHierarchicalModel/ (FF)V +MD: net/minecraft/client/model/AgeableHierarchicalModel/ (FFLjava/util/function/Function;)V net/minecraft/client/model/AgeableHierarchicalModel/ (FFLjava/util/function/Function;)V +MD: net/minecraft/client/model/AgeableHierarchicalModel/m_7695_ (Lcom/mojang/blaze3d/vertex/PoseStack;Lcom/mojang/blaze3d/vertex/VertexConsumer;IIFFFF)V net/minecraft/client/model/AgeableHierarchicalModel/renderToBuffer (Lcom/mojang/blaze3d/vertex/PoseStack;Lcom/mojang/blaze3d/vertex/VertexConsumer;IIFFFF)V +MD: net/minecraft/client/model/AgeableListModel/ (ZFF)V net/minecraft/client/model/AgeableListModel/ (ZFF)V +MD: net/minecraft/client/model/AgeableListModel/ (Ljava/util/function/Function;ZFFFFF)V net/minecraft/client/model/AgeableListModel/ (Ljava/util/function/Function;ZFFFFF)V +MD: net/minecraft/client/model/AgeableListModel/ (ZFFFFF)V net/minecraft/client/model/AgeableListModel/ (ZFFFFF)V +MD: net/minecraft/client/model/AgeableListModel/ ()V net/minecraft/client/model/AgeableListModel/ ()V +MD: net/minecraft/client/model/AgeableListModel/m_102042_ (Lcom/mojang/blaze3d/vertex/PoseStack;Lcom/mojang/blaze3d/vertex/VertexConsumer;IIFFFFLnet/minecraft/client/model/geom/ModelPart;)V net/minecraft/client/model/AgeableListModel/lambda$renderToBuffer$3 (Lcom/mojang/blaze3d/vertex/PoseStack;Lcom/mojang/blaze3d/vertex/VertexConsumer;IIFFFFLnet/minecraft/client/model/geom/ModelPart;)V +MD: net/minecraft/client/model/AgeableListModel/m_102052_ (Lcom/mojang/blaze3d/vertex/PoseStack;Lcom/mojang/blaze3d/vertex/VertexConsumer;IIFFFFLnet/minecraft/client/model/geom/ModelPart;)V net/minecraft/client/model/AgeableListModel/lambda$renderToBuffer$2 (Lcom/mojang/blaze3d/vertex/PoseStack;Lcom/mojang/blaze3d/vertex/VertexConsumer;IIFFFFLnet/minecraft/client/model/geom/ModelPart;)V +MD: net/minecraft/client/model/AgeableListModel/m_102062_ (Lcom/mojang/blaze3d/vertex/PoseStack;Lcom/mojang/blaze3d/vertex/VertexConsumer;IIFFFFLnet/minecraft/client/model/geom/ModelPart;)V net/minecraft/client/model/AgeableListModel/lambda$renderToBuffer$1 (Lcom/mojang/blaze3d/vertex/PoseStack;Lcom/mojang/blaze3d/vertex/VertexConsumer;IIFFFFLnet/minecraft/client/model/geom/ModelPart;)V +MD: net/minecraft/client/model/AgeableListModel/m_102072_ (Lcom/mojang/blaze3d/vertex/PoseStack;Lcom/mojang/blaze3d/vertex/VertexConsumer;IIFFFFLnet/minecraft/client/model/geom/ModelPart;)V net/minecraft/client/model/AgeableListModel/lambda$renderToBuffer$0 (Lcom/mojang/blaze3d/vertex/PoseStack;Lcom/mojang/blaze3d/vertex/VertexConsumer;IIFFFFLnet/minecraft/client/model/geom/ModelPart;)V +MD: net/minecraft/client/model/AgeableListModel/m_5607_ ()Ljava/lang/Iterable; net/minecraft/client/model/AgeableListModel/headParts ()Ljava/lang/Iterable; +MD: net/minecraft/client/model/AgeableListModel/m_5608_ ()Ljava/lang/Iterable; net/minecraft/client/model/AgeableListModel/bodyParts ()Ljava/lang/Iterable; +MD: net/minecraft/client/model/AgeableListModel/m_7695_ (Lcom/mojang/blaze3d/vertex/PoseStack;Lcom/mojang/blaze3d/vertex/VertexConsumer;IIFFFF)V net/minecraft/client/model/AgeableListModel/renderToBuffer (Lcom/mojang/blaze3d/vertex/PoseStack;Lcom/mojang/blaze3d/vertex/VertexConsumer;IIFFFF)V +MD: net/minecraft/client/model/AllayModel/ (Lnet/minecraft/client/model/geom/ModelPart;)V net/minecraft/client/model/AllayModel/ (Lnet/minecraft/client/model/geom/ModelPart;)V +MD: net/minecraft/client/model/AllayModel/m_142109_ ()Lnet/minecraft/client/model/geom/ModelPart; net/minecraft/client/model/AllayModel/root ()Lnet/minecraft/client/model/geom/ModelPart; +MD: net/minecraft/client/model/AllayModel/m_233340_ ()Lnet/minecraft/client/model/geom/builders/LayerDefinition; net/minecraft/client/model/AllayModel/createBodyLayer ()Lnet/minecraft/client/model/geom/builders/LayerDefinition; +MD: net/minecraft/client/model/AllayModel/m_6002_ (Lnet/minecraft/world/entity/HumanoidArm;Lcom/mojang/blaze3d/vertex/PoseStack;)V net/minecraft/client/model/AllayModel/translateToHand (Lnet/minecraft/world/entity/HumanoidArm;Lcom/mojang/blaze3d/vertex/PoseStack;)V +MD: net/minecraft/client/model/AllayModel/m_6973_ (Lnet/minecraft/world/entity/animal/allay/Allay;FFFFF)V net/minecraft/client/model/AllayModel/setupAnim (Lnet/minecraft/world/entity/animal/allay/Allay;FFFFF)V +MD: net/minecraft/client/model/AllayModel/m_6973_ (Lnet/minecraft/world/entity/Entity;FFFFF)V net/minecraft/client/model/AllayModel/setupAnim (Lnet/minecraft/world/entity/Entity;FFFFF)V +MD: net/minecraft/client/model/AnimationUtils/ ()V net/minecraft/client/model/AnimationUtils/ ()V +MD: net/minecraft/client/model/AnimationUtils/m_102082_ (Lnet/minecraft/client/model/geom/ModelPart;Lnet/minecraft/client/model/geom/ModelPart;F)V net/minecraft/client/model/AnimationUtils/bobArms (Lnet/minecraft/client/model/geom/ModelPart;Lnet/minecraft/client/model/geom/ModelPart;F)V +MD: net/minecraft/client/model/AnimationUtils/m_102086_ (Lnet/minecraft/client/model/geom/ModelPart;Lnet/minecraft/client/model/geom/ModelPart;Lnet/minecraft/world/entity/LivingEntity;Z)V net/minecraft/client/model/AnimationUtils/animateCrossbowCharge (Lnet/minecraft/client/model/geom/ModelPart;Lnet/minecraft/client/model/geom/ModelPart;Lnet/minecraft/world/entity/LivingEntity;Z)V +MD: net/minecraft/client/model/AnimationUtils/m_102091_ (Lnet/minecraft/client/model/geom/ModelPart;Lnet/minecraft/client/model/geom/ModelPart;Lnet/minecraft/world/entity/Mob;FF)V net/minecraft/client/model/AnimationUtils/swingWeaponDown (Lnet/minecraft/client/model/geom/ModelPart;Lnet/minecraft/client/model/geom/ModelPart;Lnet/minecraft/world/entity/Mob;FF)V +MD: net/minecraft/client/model/AnimationUtils/m_102097_ (Lnet/minecraft/client/model/geom/ModelPart;Lnet/minecraft/client/model/geom/ModelPart;Lnet/minecraft/client/model/geom/ModelPart;Z)V net/minecraft/client/model/AnimationUtils/animateCrossbowHold (Lnet/minecraft/client/model/geom/ModelPart;Lnet/minecraft/client/model/geom/ModelPart;Lnet/minecraft/client/model/geom/ModelPart;Z)V +MD: net/minecraft/client/model/AnimationUtils/m_102102_ (Lnet/minecraft/client/model/geom/ModelPart;Lnet/minecraft/client/model/geom/ModelPart;ZFF)V net/minecraft/client/model/AnimationUtils/animateZombieArms (Lnet/minecraft/client/model/geom/ModelPart;Lnet/minecraft/client/model/geom/ModelPart;ZFF)V +MD: net/minecraft/client/model/AnimationUtils/m_170341_ (Lnet/minecraft/client/model/geom/ModelPart;FF)V net/minecraft/client/model/AnimationUtils/bobModelPart (Lnet/minecraft/client/model/geom/ModelPart;FF)V +MD: net/minecraft/client/model/ArmedModel/m_6002_ (Lnet/minecraft/world/entity/HumanoidArm;Lcom/mojang/blaze3d/vertex/PoseStack;)V net/minecraft/client/model/ArmedModel/translateToHand (Lnet/minecraft/world/entity/HumanoidArm;Lcom/mojang/blaze3d/vertex/PoseStack;)V +MD: net/minecraft/client/model/ArmorStandArmorModel/ (Lnet/minecraft/client/model/geom/ModelPart;)V net/minecraft/client/model/ArmorStandArmorModel/ (Lnet/minecraft/client/model/geom/ModelPart;)V +MD: net/minecraft/client/model/ArmorStandArmorModel/m_170347_ (Lnet/minecraft/client/model/geom/builders/CubeDeformation;)Lnet/minecraft/client/model/geom/builders/LayerDefinition; net/minecraft/client/model/ArmorStandArmorModel/createBodyLayer (Lnet/minecraft/client/model/geom/builders/CubeDeformation;)Lnet/minecraft/client/model/geom/builders/LayerDefinition; +MD: net/minecraft/client/model/ArmorStandArmorModel/m_6973_ (Lnet/minecraft/world/entity/decoration/ArmorStand;FFFFF)V net/minecraft/client/model/ArmorStandArmorModel/setupAnim (Lnet/minecraft/world/entity/decoration/ArmorStand;FFFFF)V +MD: net/minecraft/client/model/ArmorStandArmorModel/m_6973_ (Lnet/minecraft/world/entity/Entity;FFFFF)V net/minecraft/client/model/ArmorStandArmorModel/setupAnim (Lnet/minecraft/world/entity/Entity;FFFFF)V +MD: net/minecraft/client/model/ArmorStandArmorModel/m_6973_ (Lnet/minecraft/world/entity/LivingEntity;FFFFF)V net/minecraft/client/model/ArmorStandArmorModel/setupAnim (Lnet/minecraft/world/entity/LivingEntity;FFFFF)V +MD: net/minecraft/client/model/ArmorStandModel/ (Lnet/minecraft/client/model/geom/ModelPart;)V net/minecraft/client/model/ArmorStandModel/ (Lnet/minecraft/client/model/geom/ModelPart;)V +MD: net/minecraft/client/model/ArmorStandModel/m_170357_ ()Lnet/minecraft/client/model/geom/builders/LayerDefinition; net/minecraft/client/model/ArmorStandModel/createBodyLayer ()Lnet/minecraft/client/model/geom/builders/LayerDefinition; +MD: net/minecraft/client/model/ArmorStandModel/m_5608_ ()Ljava/lang/Iterable; net/minecraft/client/model/ArmorStandModel/bodyParts ()Ljava/lang/Iterable; +MD: net/minecraft/client/model/ArmorStandModel/m_6002_ (Lnet/minecraft/world/entity/HumanoidArm;Lcom/mojang/blaze3d/vertex/PoseStack;)V net/minecraft/client/model/ArmorStandModel/translateToHand (Lnet/minecraft/world/entity/HumanoidArm;Lcom/mojang/blaze3d/vertex/PoseStack;)V +MD: net/minecraft/client/model/ArmorStandModel/m_6839_ (Lnet/minecraft/world/entity/Entity;FFF)V net/minecraft/client/model/ArmorStandModel/prepareMobModel (Lnet/minecraft/world/entity/Entity;FFF)V +MD: net/minecraft/client/model/ArmorStandModel/m_6839_ (Lnet/minecraft/world/entity/decoration/ArmorStand;FFF)V net/minecraft/client/model/ArmorStandModel/prepareMobModel (Lnet/minecraft/world/entity/decoration/ArmorStand;FFF)V +MD: net/minecraft/client/model/ArmorStandModel/m_6839_ (Lnet/minecraft/world/entity/LivingEntity;FFF)V net/minecraft/client/model/ArmorStandModel/prepareMobModel (Lnet/minecraft/world/entity/LivingEntity;FFF)V +MD: net/minecraft/client/model/ArmorStandModel/m_6973_ (Lnet/minecraft/world/entity/decoration/ArmorStand;FFFFF)V net/minecraft/client/model/ArmorStandModel/setupAnim (Lnet/minecraft/world/entity/decoration/ArmorStand;FFFFF)V +MD: net/minecraft/client/model/ArmorStandModel/m_6973_ (Lnet/minecraft/world/entity/Entity;FFFFF)V net/minecraft/client/model/ArmorStandModel/setupAnim (Lnet/minecraft/world/entity/Entity;FFFFF)V +MD: net/minecraft/client/model/ArmorStandModel/m_6973_ (Lnet/minecraft/world/entity/LivingEntity;FFFFF)V net/minecraft/client/model/ArmorStandModel/setupAnim (Lnet/minecraft/world/entity/LivingEntity;FFFFF)V +MD: net/minecraft/client/model/AxolotlModel/ (Lnet/minecraft/client/model/geom/ModelPart;)V net/minecraft/client/model/AxolotlModel/ (Lnet/minecraft/client/model/geom/ModelPart;)V +MD: net/minecraft/client/model/AxolotlModel/m_170372_ (F)V net/minecraft/client/model/AxolotlModel/setupWaterHoveringAnimation (F)V +MD: net/minecraft/client/model/AxolotlModel/m_170374_ (FF)F net/minecraft/client/model/AxolotlModel/lerpTo (FF)F +MD: net/minecraft/client/model/AxolotlModel/m_170377_ (FFF)F net/minecraft/client/model/AxolotlModel/lerpTo (FFF)F +MD: net/minecraft/client/model/AxolotlModel/m_170388_ (Lnet/minecraft/world/entity/animal/axolotl/Axolotl;)V net/minecraft/client/model/AxolotlModel/saveAnimationValues (Lnet/minecraft/world/entity/animal/axolotl/Axolotl;)V +MD: net/minecraft/client/model/AxolotlModel/m_170390_ (Lnet/minecraft/world/entity/animal/axolotl/Axolotl;FF)V net/minecraft/client/model/AxolotlModel/setupInitialAnimationValues (Lnet/minecraft/world/entity/animal/axolotl/Axolotl;FF)V +MD: net/minecraft/client/model/AxolotlModel/m_170403_ (Lnet/minecraft/client/model/geom/ModelPart;FFF)V net/minecraft/client/model/AxolotlModel/lerpPart (Lnet/minecraft/client/model/geom/ModelPart;FFF)V +MD: net/minecraft/client/model/AxolotlModel/m_170412_ (F)V net/minecraft/client/model/AxolotlModel/setupPlayDeadAnimation (F)V +MD: net/minecraft/client/model/AxolotlModel/m_170414_ (FF)V net/minecraft/client/model/AxolotlModel/setupLayStillOnGroundAnimation (FF)V +MD: net/minecraft/client/model/AxolotlModel/m_170417_ ()Lnet/minecraft/client/model/geom/builders/LayerDefinition; net/minecraft/client/model/AxolotlModel/createBodyLayer ()Lnet/minecraft/client/model/geom/builders/LayerDefinition; +MD: net/minecraft/client/model/AxolotlModel/m_170418_ (FF)V net/minecraft/client/model/AxolotlModel/setupGroundCrawlingAnimation (FF)V +MD: net/minecraft/client/model/AxolotlModel/m_170421_ ()V net/minecraft/client/model/AxolotlModel/applyMirrorLegRotations ()V +MD: net/minecraft/client/model/AxolotlModel/m_170422_ (FF)V net/minecraft/client/model/AxolotlModel/setupSwimmingAnimation (FF)V +MD: net/minecraft/client/model/AxolotlModel/m_252862_ (Lnet/minecraft/client/model/geom/ModelPart;Lorg/joml/Vector3f;)V net/minecraft/client/model/AxolotlModel/setRotationFromVector (Lnet/minecraft/client/model/geom/ModelPart;Lorg/joml/Vector3f;)V +MD: net/minecraft/client/model/AxolotlModel/m_253263_ (Lnet/minecraft/client/model/geom/ModelPart;)Lorg/joml/Vector3f; net/minecraft/client/model/AxolotlModel/getRotationVector (Lnet/minecraft/client/model/geom/ModelPart;)Lorg/joml/Vector3f; +MD: net/minecraft/client/model/AxolotlModel/m_5607_ ()Ljava/lang/Iterable; net/minecraft/client/model/AxolotlModel/headParts ()Ljava/lang/Iterable; +MD: net/minecraft/client/model/AxolotlModel/m_5608_ ()Ljava/lang/Iterable; net/minecraft/client/model/AxolotlModel/bodyParts ()Ljava/lang/Iterable; +MD: net/minecraft/client/model/AxolotlModel/m_6973_ (Lnet/minecraft/world/entity/Entity;FFFFF)V net/minecraft/client/model/AxolotlModel/setupAnim (Lnet/minecraft/world/entity/Entity;FFFFF)V +MD: net/minecraft/client/model/AxolotlModel/m_6973_ (Lnet/minecraft/world/entity/animal/axolotl/Axolotl;FFFFF)V net/minecraft/client/model/AxolotlModel/setupAnim (Lnet/minecraft/world/entity/animal/axolotl/Axolotl;FFFFF)V +MD: net/minecraft/client/model/BatModel/ (Lnet/minecraft/client/model/geom/ModelPart;)V net/minecraft/client/model/BatModel/ (Lnet/minecraft/client/model/geom/ModelPart;)V +MD: net/minecraft/client/model/BatModel/m_142109_ ()Lnet/minecraft/client/model/geom/ModelPart; net/minecraft/client/model/BatModel/root ()Lnet/minecraft/client/model/geom/ModelPart; +MD: net/minecraft/client/model/BatModel/m_170428_ ()Lnet/minecraft/client/model/geom/builders/LayerDefinition; net/minecraft/client/model/BatModel/createBodyLayer ()Lnet/minecraft/client/model/geom/builders/LayerDefinition; +MD: net/minecraft/client/model/BatModel/m_6973_ (Lnet/minecraft/world/entity/Entity;FFFFF)V net/minecraft/client/model/BatModel/setupAnim (Lnet/minecraft/world/entity/Entity;FFFFF)V +MD: net/minecraft/client/model/BatModel/m_6973_ (Lnet/minecraft/world/entity/ambient/Bat;FFFFF)V net/minecraft/client/model/BatModel/setupAnim (Lnet/minecraft/world/entity/ambient/Bat;FFFFF)V +MD: net/minecraft/client/model/BeeModel/ (Lnet/minecraft/client/model/geom/ModelPart;)V net/minecraft/client/model/BeeModel/ (Lnet/minecraft/client/model/geom/ModelPart;)V +MD: net/minecraft/client/model/BeeModel/m_170440_ ()Lnet/minecraft/client/model/geom/builders/LayerDefinition; net/minecraft/client/model/BeeModel/createBodyLayer ()Lnet/minecraft/client/model/geom/builders/LayerDefinition; +MD: net/minecraft/client/model/BeeModel/m_5607_ ()Ljava/lang/Iterable; net/minecraft/client/model/BeeModel/headParts ()Ljava/lang/Iterable; +MD: net/minecraft/client/model/BeeModel/m_5608_ ()Ljava/lang/Iterable; net/minecraft/client/model/BeeModel/bodyParts ()Ljava/lang/Iterable; +MD: net/minecraft/client/model/BeeModel/m_6839_ (Lnet/minecraft/world/entity/Entity;FFF)V net/minecraft/client/model/BeeModel/prepareMobModel (Lnet/minecraft/world/entity/Entity;FFF)V +MD: net/minecraft/client/model/BeeModel/m_6839_ (Lnet/minecraft/world/entity/animal/Bee;FFF)V net/minecraft/client/model/BeeModel/prepareMobModel (Lnet/minecraft/world/entity/animal/Bee;FFF)V +MD: net/minecraft/client/model/BeeModel/m_6973_ (Lnet/minecraft/world/entity/animal/Bee;FFFFF)V net/minecraft/client/model/BeeModel/setupAnim (Lnet/minecraft/world/entity/animal/Bee;FFFFF)V +MD: net/minecraft/client/model/BeeModel/m_6973_ (Lnet/minecraft/world/entity/Entity;FFFFF)V net/minecraft/client/model/BeeModel/setupAnim (Lnet/minecraft/world/entity/Entity;FFFFF)V +MD: net/minecraft/client/model/BlazeModel/ (Lnet/minecraft/client/model/geom/ModelPart;)V net/minecraft/client/model/BlazeModel/ (Lnet/minecraft/client/model/geom/ModelPart;)V +MD: net/minecraft/client/model/BlazeModel/m_142109_ ()Lnet/minecraft/client/model/geom/ModelPart; net/minecraft/client/model/BlazeModel/root ()Lnet/minecraft/client/model/geom/ModelPart; +MD: net/minecraft/client/model/BlazeModel/m_170444_ ()Lnet/minecraft/client/model/geom/builders/LayerDefinition; net/minecraft/client/model/BlazeModel/createBodyLayer ()Lnet/minecraft/client/model/geom/builders/LayerDefinition; +MD: net/minecraft/client/model/BlazeModel/m_170445_ (I)Ljava/lang/String; net/minecraft/client/model/BlazeModel/getPartName (I)Ljava/lang/String; +MD: net/minecraft/client/model/BlazeModel/m_170447_ (Lnet/minecraft/client/model/geom/ModelPart;I)Lnet/minecraft/client/model/geom/ModelPart; net/minecraft/client/model/BlazeModel/lambda$new$0 (Lnet/minecraft/client/model/geom/ModelPart;I)Lnet/minecraft/client/model/geom/ModelPart; +MD: net/minecraft/client/model/BlazeModel/m_6973_ (Lnet/minecraft/world/entity/Entity;FFFFF)V net/minecraft/client/model/BlazeModel/setupAnim (Lnet/minecraft/world/entity/Entity;FFFFF)V +MD: net/minecraft/client/model/BoatModel/ (Lnet/minecraft/client/model/geom/ModelPart;)V net/minecraft/client/model/BoatModel/ (Lnet/minecraft/client/model/geom/ModelPart;)V +MD: net/minecraft/client/model/BoatModel/m_102282_ ()Lnet/minecraft/client/model/geom/ModelPart; net/minecraft/client/model/BoatModel/waterPatch ()Lnet/minecraft/client/model/geom/ModelPart; +MD: net/minecraft/client/model/BoatModel/m_170464_ (Lnet/minecraft/world/entity/vehicle/Boat;ILnet/minecraft/client/model/geom/ModelPart;F)V net/minecraft/client/model/BoatModel/animatePaddle (Lnet/minecraft/world/entity/vehicle/Boat;ILnet/minecraft/client/model/geom/ModelPart;F)V +MD: net/minecraft/client/model/BoatModel/m_245539_ (Lnet/minecraft/client/model/geom/ModelPart;)Lcom/google/common/collect/ImmutableList$Builder; net/minecraft/client/model/BoatModel/createPartsBuilder (Lnet/minecraft/client/model/geom/ModelPart;)Lcom/google/common/collect/ImmutableList$Builder; +MD: net/minecraft/client/model/BoatModel/m_246203_ (Lnet/minecraft/client/model/geom/builders/PartDefinition;)V net/minecraft/client/model/BoatModel/createChildren (Lnet/minecraft/client/model/geom/builders/PartDefinition;)V +MD: net/minecraft/client/model/BoatModel/m_246613_ ()Lnet/minecraft/client/model/geom/builders/LayerDefinition; net/minecraft/client/model/BoatModel/createBodyModel ()Lnet/minecraft/client/model/geom/builders/LayerDefinition; +MD: net/minecraft/client/model/BoatModel/m_6195_ ()Lcom/google/common/collect/ImmutableList; net/minecraft/client/model/BoatModel/parts ()Lcom/google/common/collect/ImmutableList; +MD: net/minecraft/client/model/BoatModel/m_6195_ ()Ljava/lang/Iterable; net/minecraft/client/model/BoatModel/parts ()Ljava/lang/Iterable; +MD: net/minecraft/client/model/BoatModel/m_6973_ (Lnet/minecraft/world/entity/Entity;FFFFF)V net/minecraft/client/model/BoatModel/setupAnim (Lnet/minecraft/world/entity/Entity;FFFFF)V +MD: net/minecraft/client/model/BoatModel/m_6973_ (Lnet/minecraft/world/entity/vehicle/Boat;FFFFF)V net/minecraft/client/model/BoatModel/setupAnim (Lnet/minecraft/world/entity/vehicle/Boat;FFFFF)V +MD: net/minecraft/client/model/BookModel/ (Lnet/minecraft/client/model/geom/ModelPart;)V net/minecraft/client/model/BookModel/ (Lnet/minecraft/client/model/geom/ModelPart;)V +MD: net/minecraft/client/model/BookModel/m_102292_ (FFFF)V net/minecraft/client/model/BookModel/setupAnim (FFFF)V +MD: net/minecraft/client/model/BookModel/m_102316_ (Lcom/mojang/blaze3d/vertex/PoseStack;Lcom/mojang/blaze3d/vertex/VertexConsumer;IIFFFF)V net/minecraft/client/model/BookModel/render (Lcom/mojang/blaze3d/vertex/PoseStack;Lcom/mojang/blaze3d/vertex/VertexConsumer;IIFFFF)V +MD: net/minecraft/client/model/BookModel/m_170476_ ()Lnet/minecraft/client/model/geom/builders/LayerDefinition; net/minecraft/client/model/BookModel/createBodyLayer ()Lnet/minecraft/client/model/geom/builders/LayerDefinition; +MD: net/minecraft/client/model/BookModel/m_7695_ (Lcom/mojang/blaze3d/vertex/PoseStack;Lcom/mojang/blaze3d/vertex/VertexConsumer;IIFFFF)V net/minecraft/client/model/BookModel/renderToBuffer (Lcom/mojang/blaze3d/vertex/PoseStack;Lcom/mojang/blaze3d/vertex/VertexConsumer;IIFFFF)V +MD: net/minecraft/client/model/CamelModel/ (Lnet/minecraft/client/model/geom/ModelPart;)V net/minecraft/client/model/CamelModel/ (Lnet/minecraft/client/model/geom/ModelPart;)V +MD: net/minecraft/client/model/CamelModel/m_142109_ ()Lnet/minecraft/client/model/geom/ModelPart; net/minecraft/client/model/CamelModel/root ()Lnet/minecraft/client/model/geom/ModelPart; +MD: net/minecraft/client/model/CamelModel/m_245580_ ()Lnet/minecraft/client/model/geom/builders/LayerDefinition; net/minecraft/client/model/CamelModel/createBodyLayer ()Lnet/minecraft/client/model/geom/builders/LayerDefinition; +MD: net/minecraft/client/model/CamelModel/m_245891_ (Lnet/minecraft/world/entity/animal/camel/Camel;FFF)V net/minecraft/client/model/CamelModel/applyHeadRotation (Lnet/minecraft/world/entity/animal/camel/Camel;FFF)V +MD: net/minecraft/client/model/CamelModel/m_246444_ (Lnet/minecraft/world/entity/animal/camel/Camel;)V net/minecraft/client/model/CamelModel/toggleInvisibleParts (Lnet/minecraft/world/entity/animal/camel/Camel;)V +MD: net/minecraft/client/model/CamelModel/m_6973_ (Lnet/minecraft/world/entity/Entity;FFFFF)V net/minecraft/client/model/CamelModel/setupAnim (Lnet/minecraft/world/entity/Entity;FFFFF)V +MD: net/minecraft/client/model/CamelModel/m_6973_ (Lnet/minecraft/world/entity/animal/camel/Camel;FFFFF)V net/minecraft/client/model/CamelModel/setupAnim (Lnet/minecraft/world/entity/animal/camel/Camel;FFFFF)V +MD: net/minecraft/client/model/CamelModel/m_7695_ (Lcom/mojang/blaze3d/vertex/PoseStack;Lcom/mojang/blaze3d/vertex/VertexConsumer;IIFFFF)V net/minecraft/client/model/CamelModel/renderToBuffer (Lcom/mojang/blaze3d/vertex/PoseStack;Lcom/mojang/blaze3d/vertex/VertexConsumer;IIFFFF)V +MD: net/minecraft/client/model/CatModel/ (Lnet/minecraft/client/model/geom/ModelPart;)V net/minecraft/client/model/CatModel/ (Lnet/minecraft/client/model/geom/ModelPart;)V +MD: net/minecraft/client/model/CatModel/m_6839_ (Lnet/minecraft/world/entity/Entity;FFF)V net/minecraft/client/model/CatModel/prepareMobModel (Lnet/minecraft/world/entity/Entity;FFF)V +MD: net/minecraft/client/model/CatModel/m_6839_ (Lnet/minecraft/world/entity/animal/Cat;FFF)V net/minecraft/client/model/CatModel/prepareMobModel (Lnet/minecraft/world/entity/animal/Cat;FFF)V +MD: net/minecraft/client/model/CatModel/m_6973_ (Lnet/minecraft/world/entity/Entity;FFFFF)V net/minecraft/client/model/CatModel/setupAnim (Lnet/minecraft/world/entity/Entity;FFFFF)V +MD: net/minecraft/client/model/CatModel/m_6973_ (Lnet/minecraft/world/entity/animal/Cat;FFFFF)V net/minecraft/client/model/CatModel/setupAnim (Lnet/minecraft/world/entity/animal/Cat;FFFFF)V +MD: net/minecraft/client/model/ChestBoatModel/ (Lnet/minecraft/client/model/geom/ModelPart;)V net/minecraft/client/model/ChestBoatModel/ (Lnet/minecraft/client/model/geom/ModelPart;)V +MD: net/minecraft/client/model/ChestBoatModel/m_245539_ (Lnet/minecraft/client/model/geom/ModelPart;)Lcom/google/common/collect/ImmutableList$Builder; net/minecraft/client/model/ChestBoatModel/createPartsBuilder (Lnet/minecraft/client/model/geom/ModelPart;)Lcom/google/common/collect/ImmutableList$Builder; +MD: net/minecraft/client/model/ChestBoatModel/m_247175_ ()Lnet/minecraft/client/model/geom/builders/LayerDefinition; net/minecraft/client/model/ChestBoatModel/createBodyModel ()Lnet/minecraft/client/model/geom/builders/LayerDefinition; +MD: net/minecraft/client/model/ChestRaftModel/ (Lnet/minecraft/client/model/geom/ModelPart;)V net/minecraft/client/model/ChestRaftModel/ (Lnet/minecraft/client/model/geom/ModelPart;)V +MD: net/minecraft/client/model/ChestRaftModel/m_245164_ (Lnet/minecraft/client/model/geom/ModelPart;)Lcom/google/common/collect/ImmutableList$Builder; net/minecraft/client/model/ChestRaftModel/createPartsBuilder (Lnet/minecraft/client/model/geom/ModelPart;)Lcom/google/common/collect/ImmutableList$Builder; +MD: net/minecraft/client/model/ChestRaftModel/m_246875_ ()Lnet/minecraft/client/model/geom/builders/LayerDefinition; net/minecraft/client/model/ChestRaftModel/createBodyModel ()Lnet/minecraft/client/model/geom/builders/LayerDefinition; +MD: net/minecraft/client/model/ChestedHorseModel/ (Lnet/minecraft/client/model/geom/ModelPart;)V net/minecraft/client/model/ChestedHorseModel/ (Lnet/minecraft/client/model/geom/ModelPart;)V +MD: net/minecraft/client/model/ChestedHorseModel/m_170483_ ()Lnet/minecraft/client/model/geom/builders/LayerDefinition; net/minecraft/client/model/ChestedHorseModel/createBodyLayer ()Lnet/minecraft/client/model/geom/builders/LayerDefinition; +MD: net/minecraft/client/model/ChestedHorseModel/m_6973_ (Lnet/minecraft/world/entity/Entity;FFFFF)V net/minecraft/client/model/ChestedHorseModel/setupAnim (Lnet/minecraft/world/entity/Entity;FFFFF)V +MD: net/minecraft/client/model/ChestedHorseModel/m_6973_ (Lnet/minecraft/world/entity/animal/horse/AbstractHorse;FFFFF)V net/minecraft/client/model/ChestedHorseModel/setupAnim (Lnet/minecraft/world/entity/animal/horse/AbstractHorse;FFFFF)V +MD: net/minecraft/client/model/ChestedHorseModel/m_6973_ (Lnet/minecraft/world/entity/animal/horse/AbstractChestedHorse;FFFFF)V net/minecraft/client/model/ChestedHorseModel/setupAnim (Lnet/minecraft/world/entity/animal/horse/AbstractChestedHorse;FFFFF)V +MD: net/minecraft/client/model/ChickenModel/ (Lnet/minecraft/client/model/geom/ModelPart;)V net/minecraft/client/model/ChickenModel/ (Lnet/minecraft/client/model/geom/ModelPart;)V +MD: net/minecraft/client/model/ChickenModel/m_170491_ ()Lnet/minecraft/client/model/geom/builders/LayerDefinition; net/minecraft/client/model/ChickenModel/createBodyLayer ()Lnet/minecraft/client/model/geom/builders/LayerDefinition; +MD: net/minecraft/client/model/ChickenModel/m_5607_ ()Ljava/lang/Iterable; net/minecraft/client/model/ChickenModel/headParts ()Ljava/lang/Iterable; +MD: net/minecraft/client/model/ChickenModel/m_5608_ ()Ljava/lang/Iterable; net/minecraft/client/model/ChickenModel/bodyParts ()Ljava/lang/Iterable; +MD: net/minecraft/client/model/ChickenModel/m_6973_ (Lnet/minecraft/world/entity/Entity;FFFFF)V net/minecraft/client/model/ChickenModel/setupAnim (Lnet/minecraft/world/entity/Entity;FFFFF)V +MD: net/minecraft/client/model/CodModel/ (Lnet/minecraft/client/model/geom/ModelPart;)V net/minecraft/client/model/CodModel/ (Lnet/minecraft/client/model/geom/ModelPart;)V +MD: net/minecraft/client/model/CodModel/m_142109_ ()Lnet/minecraft/client/model/geom/ModelPart; net/minecraft/client/model/CodModel/root ()Lnet/minecraft/client/model/geom/ModelPart; +MD: net/minecraft/client/model/CodModel/m_170495_ ()Lnet/minecraft/client/model/geom/builders/LayerDefinition; net/minecraft/client/model/CodModel/createBodyLayer ()Lnet/minecraft/client/model/geom/builders/LayerDefinition; +MD: net/minecraft/client/model/CodModel/m_6973_ (Lnet/minecraft/world/entity/Entity;FFFFF)V net/minecraft/client/model/CodModel/setupAnim (Lnet/minecraft/world/entity/Entity;FFFFF)V +MD: net/minecraft/client/model/ColorableAgeableListModel/ ()V net/minecraft/client/model/ColorableAgeableListModel/ ()V +MD: net/minecraft/client/model/ColorableAgeableListModel/m_102419_ (FFF)V net/minecraft/client/model/ColorableAgeableListModel/setColor (FFF)V +MD: net/minecraft/client/model/ColorableAgeableListModel/m_7695_ (Lcom/mojang/blaze3d/vertex/PoseStack;Lcom/mojang/blaze3d/vertex/VertexConsumer;IIFFFF)V net/minecraft/client/model/ColorableAgeableListModel/renderToBuffer (Lcom/mojang/blaze3d/vertex/PoseStack;Lcom/mojang/blaze3d/vertex/VertexConsumer;IIFFFF)V +MD: net/minecraft/client/model/ColorableHierarchicalModel/ ()V net/minecraft/client/model/ColorableHierarchicalModel/ ()V +MD: net/minecraft/client/model/ColorableHierarchicalModel/m_170501_ (FFF)V net/minecraft/client/model/ColorableHierarchicalModel/setColor (FFF)V +MD: net/minecraft/client/model/ColorableHierarchicalModel/m_7695_ (Lcom/mojang/blaze3d/vertex/PoseStack;Lcom/mojang/blaze3d/vertex/VertexConsumer;IIFFFF)V net/minecraft/client/model/ColorableHierarchicalModel/renderToBuffer (Lcom/mojang/blaze3d/vertex/PoseStack;Lcom/mojang/blaze3d/vertex/VertexConsumer;IIFFFF)V +MD: net/minecraft/client/model/CowModel/ (Lnet/minecraft/client/model/geom/ModelPart;)V net/minecraft/client/model/CowModel/ (Lnet/minecraft/client/model/geom/ModelPart;)V +MD: net/minecraft/client/model/CowModel/m_102450_ ()Lnet/minecraft/client/model/geom/ModelPart; net/minecraft/client/model/CowModel/getHead ()Lnet/minecraft/client/model/geom/ModelPart; +MD: net/minecraft/client/model/CowModel/m_170516_ ()Lnet/minecraft/client/model/geom/builders/LayerDefinition; net/minecraft/client/model/CowModel/createBodyLayer ()Lnet/minecraft/client/model/geom/builders/LayerDefinition; +MD: net/minecraft/client/model/CreeperModel/ (Lnet/minecraft/client/model/geom/ModelPart;)V net/minecraft/client/model/CreeperModel/ (Lnet/minecraft/client/model/geom/ModelPart;)V +MD: net/minecraft/client/model/CreeperModel/m_142109_ ()Lnet/minecraft/client/model/geom/ModelPart; net/minecraft/client/model/CreeperModel/root ()Lnet/minecraft/client/model/geom/ModelPart; +MD: net/minecraft/client/model/CreeperModel/m_170525_ (Lnet/minecraft/client/model/geom/builders/CubeDeformation;)Lnet/minecraft/client/model/geom/builders/LayerDefinition; net/minecraft/client/model/CreeperModel/createBodyLayer (Lnet/minecraft/client/model/geom/builders/CubeDeformation;)Lnet/minecraft/client/model/geom/builders/LayerDefinition; +MD: net/minecraft/client/model/CreeperModel/m_6973_ (Lnet/minecraft/world/entity/Entity;FFFFF)V net/minecraft/client/model/CreeperModel/setupAnim (Lnet/minecraft/world/entity/Entity;FFFFF)V +MD: net/minecraft/client/model/DolphinModel/ (Lnet/minecraft/client/model/geom/ModelPart;)V net/minecraft/client/model/DolphinModel/ (Lnet/minecraft/client/model/geom/ModelPart;)V +MD: net/minecraft/client/model/DolphinModel/m_142109_ ()Lnet/minecraft/client/model/geom/ModelPart; net/minecraft/client/model/DolphinModel/root ()Lnet/minecraft/client/model/geom/ModelPart; +MD: net/minecraft/client/model/DolphinModel/m_170531_ ()Lnet/minecraft/client/model/geom/builders/LayerDefinition; net/minecraft/client/model/DolphinModel/createBodyLayer ()Lnet/minecraft/client/model/geom/builders/LayerDefinition; +MD: net/minecraft/client/model/DolphinModel/m_6973_ (Lnet/minecraft/world/entity/Entity;FFFFF)V net/minecraft/client/model/DolphinModel/setupAnim (Lnet/minecraft/world/entity/Entity;FFFFF)V +MD: net/minecraft/client/model/DrownedModel/ (Lnet/minecraft/client/model/geom/ModelPart;)V net/minecraft/client/model/DrownedModel/ (Lnet/minecraft/client/model/geom/ModelPart;)V +MD: net/minecraft/client/model/DrownedModel/m_170535_ (Lnet/minecraft/client/model/geom/builders/CubeDeformation;)Lnet/minecraft/client/model/geom/builders/LayerDefinition; net/minecraft/client/model/DrownedModel/createBodyLayer (Lnet/minecraft/client/model/geom/builders/CubeDeformation;)Lnet/minecraft/client/model/geom/builders/LayerDefinition; +MD: net/minecraft/client/model/DrownedModel/m_6839_ (Lnet/minecraft/world/entity/Entity;FFF)V net/minecraft/client/model/DrownedModel/prepareMobModel (Lnet/minecraft/world/entity/Entity;FFF)V +MD: net/minecraft/client/model/DrownedModel/m_6839_ (Lnet/minecraft/world/entity/monster/Zombie;FFF)V net/minecraft/client/model/DrownedModel/prepareMobModel (Lnet/minecraft/world/entity/monster/Zombie;FFF)V +MD: net/minecraft/client/model/DrownedModel/m_6839_ (Lnet/minecraft/world/entity/LivingEntity;FFF)V net/minecraft/client/model/DrownedModel/prepareMobModel (Lnet/minecraft/world/entity/LivingEntity;FFF)V +MD: net/minecraft/client/model/DrownedModel/m_6973_ (Lnet/minecraft/world/entity/Entity;FFFFF)V net/minecraft/client/model/DrownedModel/setupAnim (Lnet/minecraft/world/entity/Entity;FFFFF)V +MD: net/minecraft/client/model/DrownedModel/m_6973_ (Lnet/minecraft/world/entity/monster/Zombie;FFFFF)V net/minecraft/client/model/DrownedModel/setupAnim (Lnet/minecraft/world/entity/monster/Zombie;FFFFF)V +MD: net/minecraft/client/model/DrownedModel/m_6973_ (Lnet/minecraft/world/entity/LivingEntity;FFFFF)V net/minecraft/client/model/DrownedModel/setupAnim (Lnet/minecraft/world/entity/LivingEntity;FFFFF)V +MD: net/minecraft/client/model/DrownedModel/m_6973_ (Lnet/minecraft/world/entity/monster/Monster;FFFFF)V net/minecraft/client/model/DrownedModel/setupAnim (Lnet/minecraft/world/entity/monster/Monster;FFFFF)V +MD: net/minecraft/client/model/ElytraModel/ (Lnet/minecraft/client/model/geom/ModelPart;)V net/minecraft/client/model/ElytraModel/ (Lnet/minecraft/client/model/geom/ModelPart;)V +MD: net/minecraft/client/model/ElytraModel/m_170539_ ()Lnet/minecraft/client/model/geom/builders/LayerDefinition; net/minecraft/client/model/ElytraModel/createLayer ()Lnet/minecraft/client/model/geom/builders/LayerDefinition; +MD: net/minecraft/client/model/ElytraModel/m_5607_ ()Ljava/lang/Iterable; net/minecraft/client/model/ElytraModel/headParts ()Ljava/lang/Iterable; +MD: net/minecraft/client/model/ElytraModel/m_5608_ ()Ljava/lang/Iterable; net/minecraft/client/model/ElytraModel/bodyParts ()Ljava/lang/Iterable; +MD: net/minecraft/client/model/ElytraModel/m_6973_ (Lnet/minecraft/world/entity/Entity;FFFFF)V net/minecraft/client/model/ElytraModel/setupAnim (Lnet/minecraft/world/entity/Entity;FFFFF)V +MD: net/minecraft/client/model/ElytraModel/m_6973_ (Lnet/minecraft/world/entity/LivingEntity;FFFFF)V net/minecraft/client/model/ElytraModel/setupAnim (Lnet/minecraft/world/entity/LivingEntity;FFFFF)V +MD: net/minecraft/client/model/EndermanModel/ (Lnet/minecraft/client/model/geom/ModelPart;)V net/minecraft/client/model/EndermanModel/ (Lnet/minecraft/client/model/geom/ModelPart;)V +MD: net/minecraft/client/model/EndermanModel/m_170542_ ()Lnet/minecraft/client/model/geom/builders/LayerDefinition; net/minecraft/client/model/EndermanModel/createBodyLayer ()Lnet/minecraft/client/model/geom/builders/LayerDefinition; +MD: net/minecraft/client/model/EndermanModel/m_6973_ (Lnet/minecraft/world/entity/Entity;FFFFF)V net/minecraft/client/model/EndermanModel/setupAnim (Lnet/minecraft/world/entity/Entity;FFFFF)V +MD: net/minecraft/client/model/EndermanModel/m_6973_ (Lnet/minecraft/world/entity/LivingEntity;FFFFF)V net/minecraft/client/model/EndermanModel/setupAnim (Lnet/minecraft/world/entity/LivingEntity;FFFFF)V +MD: net/minecraft/client/model/EndermiteModel/ ()V net/minecraft/client/model/EndermiteModel/ ()V +MD: net/minecraft/client/model/EndermiteModel/ (Lnet/minecraft/client/model/geom/ModelPart;)V net/minecraft/client/model/EndermiteModel/ (Lnet/minecraft/client/model/geom/ModelPart;)V +MD: net/minecraft/client/model/EndermiteModel/m_142109_ ()Lnet/minecraft/client/model/geom/ModelPart; net/minecraft/client/model/EndermiteModel/root ()Lnet/minecraft/client/model/geom/ModelPart; +MD: net/minecraft/client/model/EndermiteModel/m_170546_ ()Lnet/minecraft/client/model/geom/builders/LayerDefinition; net/minecraft/client/model/EndermiteModel/createBodyLayer ()Lnet/minecraft/client/model/geom/builders/LayerDefinition; +MD: net/minecraft/client/model/EndermiteModel/m_170547_ (I)Ljava/lang/String; net/minecraft/client/model/EndermiteModel/createSegmentName (I)Ljava/lang/String; +MD: net/minecraft/client/model/EndermiteModel/m_6973_ (Lnet/minecraft/world/entity/Entity;FFFFF)V net/minecraft/client/model/EndermiteModel/setupAnim (Lnet/minecraft/world/entity/Entity;FFFFF)V +MD: net/minecraft/client/model/EntityModel/ ()V net/minecraft/client/model/EntityModel/ ()V +MD: net/minecraft/client/model/EntityModel/ (Ljava/util/function/Function;)V net/minecraft/client/model/EntityModel/ (Ljava/util/function/Function;)V +MD: net/minecraft/client/model/EntityModel/m_102624_ (Lnet/minecraft/client/model/EntityModel;)V net/minecraft/client/model/EntityModel/copyPropertiesTo (Lnet/minecraft/client/model/EntityModel;)V +MD: net/minecraft/client/model/EntityModel/m_6839_ (Lnet/minecraft/world/entity/Entity;FFF)V net/minecraft/client/model/EntityModel/prepareMobModel (Lnet/minecraft/world/entity/Entity;FFF)V +MD: net/minecraft/client/model/EntityModel/m_6973_ (Lnet/minecraft/world/entity/Entity;FFFFF)V net/minecraft/client/model/EntityModel/setupAnim (Lnet/minecraft/world/entity/Entity;FFFFF)V +MD: net/minecraft/client/model/EvokerFangsModel/ (Lnet/minecraft/client/model/geom/ModelPart;)V net/minecraft/client/model/EvokerFangsModel/ (Lnet/minecraft/client/model/geom/ModelPart;)V +MD: net/minecraft/client/model/EvokerFangsModel/m_142109_ ()Lnet/minecraft/client/model/geom/ModelPart; net/minecraft/client/model/EvokerFangsModel/root ()Lnet/minecraft/client/model/geom/ModelPart; +MD: net/minecraft/client/model/EvokerFangsModel/m_170556_ ()Lnet/minecraft/client/model/geom/builders/LayerDefinition; net/minecraft/client/model/EvokerFangsModel/createBodyLayer ()Lnet/minecraft/client/model/geom/builders/LayerDefinition; +MD: net/minecraft/client/model/EvokerFangsModel/m_6973_ (Lnet/minecraft/world/entity/Entity;FFFFF)V net/minecraft/client/model/EvokerFangsModel/setupAnim (Lnet/minecraft/world/entity/Entity;FFFFF)V +MD: net/minecraft/client/model/FoxModel/ (Lnet/minecraft/client/model/geom/ModelPart;)V net/minecraft/client/model/FoxModel/ (Lnet/minecraft/client/model/geom/ModelPart;)V +MD: net/minecraft/client/model/FoxModel/m_170567_ ()Lnet/minecraft/client/model/geom/builders/LayerDefinition; net/minecraft/client/model/FoxModel/createBodyLayer ()Lnet/minecraft/client/model/geom/builders/LayerDefinition; +MD: net/minecraft/client/model/FoxModel/m_5607_ ()Ljava/lang/Iterable; net/minecraft/client/model/FoxModel/headParts ()Ljava/lang/Iterable; +MD: net/minecraft/client/model/FoxModel/m_5608_ ()Ljava/lang/Iterable; net/minecraft/client/model/FoxModel/bodyParts ()Ljava/lang/Iterable; +MD: net/minecraft/client/model/FoxModel/m_6839_ (Lnet/minecraft/world/entity/Entity;FFF)V net/minecraft/client/model/FoxModel/prepareMobModel (Lnet/minecraft/world/entity/Entity;FFF)V +MD: net/minecraft/client/model/FoxModel/m_6839_ (Lnet/minecraft/world/entity/animal/Fox;FFF)V net/minecraft/client/model/FoxModel/prepareMobModel (Lnet/minecraft/world/entity/animal/Fox;FFF)V +MD: net/minecraft/client/model/FoxModel/m_6973_ (Lnet/minecraft/world/entity/Entity;FFFFF)V net/minecraft/client/model/FoxModel/setupAnim (Lnet/minecraft/world/entity/Entity;FFFFF)V +MD: net/minecraft/client/model/FoxModel/m_6973_ (Lnet/minecraft/world/entity/animal/Fox;FFFFF)V net/minecraft/client/model/FoxModel/setupAnim (Lnet/minecraft/world/entity/animal/Fox;FFFFF)V +MD: net/minecraft/client/model/FrogModel/ (Lnet/minecraft/client/model/geom/ModelPart;)V net/minecraft/client/model/FrogModel/ (Lnet/minecraft/client/model/geom/ModelPart;)V +MD: net/minecraft/client/model/FrogModel/m_142109_ ()Lnet/minecraft/client/model/geom/ModelPart; net/minecraft/client/model/FrogModel/root ()Lnet/minecraft/client/model/geom/ModelPart; +MD: net/minecraft/client/model/FrogModel/m_233378_ ()Lnet/minecraft/client/model/geom/builders/LayerDefinition; net/minecraft/client/model/FrogModel/createBodyLayer ()Lnet/minecraft/client/model/geom/builders/LayerDefinition; +MD: net/minecraft/client/model/FrogModel/m_6973_ (Lnet/minecraft/world/entity/Entity;FFFFF)V net/minecraft/client/model/FrogModel/setupAnim (Lnet/minecraft/world/entity/Entity;FFFFF)V +MD: net/minecraft/client/model/FrogModel/m_6973_ (Lnet/minecraft/world/entity/animal/frog/Frog;FFFFF)V net/minecraft/client/model/FrogModel/setupAnim (Lnet/minecraft/world/entity/animal/frog/Frog;FFFFF)V +MD: net/minecraft/client/model/GhastModel/ (Lnet/minecraft/client/model/geom/ModelPart;)V net/minecraft/client/model/GhastModel/ (Lnet/minecraft/client/model/geom/ModelPart;)V +MD: net/minecraft/client/model/GhastModel/m_142109_ ()Lnet/minecraft/client/model/geom/ModelPart; net/minecraft/client/model/GhastModel/root ()Lnet/minecraft/client/model/geom/ModelPart; +MD: net/minecraft/client/model/GhastModel/m_170571_ ()Lnet/minecraft/client/model/geom/builders/LayerDefinition; net/minecraft/client/model/GhastModel/createBodyLayer ()Lnet/minecraft/client/model/geom/builders/LayerDefinition; +MD: net/minecraft/client/model/GhastModel/m_170572_ (I)Ljava/lang/String; net/minecraft/client/model/GhastModel/createTentacleName (I)Ljava/lang/String; +MD: net/minecraft/client/model/GhastModel/m_6973_ (Lnet/minecraft/world/entity/Entity;FFFFF)V net/minecraft/client/model/GhastModel/setupAnim (Lnet/minecraft/world/entity/Entity;FFFFF)V +MD: net/minecraft/client/model/GiantZombieModel/ (Lnet/minecraft/client/model/geom/ModelPart;)V net/minecraft/client/model/GiantZombieModel/ (Lnet/minecraft/client/model/geom/ModelPart;)V +MD: net/minecraft/client/model/GiantZombieModel/m_7134_ (Lnet/minecraft/world/entity/monster/Monster;)Z net/minecraft/client/model/GiantZombieModel/isAggressive (Lnet/minecraft/world/entity/monster/Monster;)Z +MD: net/minecraft/client/model/GiantZombieModel/m_7134_ (Lnet/minecraft/world/entity/monster/Giant;)Z net/minecraft/client/model/GiantZombieModel/isAggressive (Lnet/minecraft/world/entity/monster/Giant;)Z +MD: net/minecraft/client/model/GoatModel/ (Lnet/minecraft/client/model/geom/ModelPart;)V net/minecraft/client/model/GoatModel/ (Lnet/minecraft/client/model/geom/ModelPart;)V +MD: net/minecraft/client/model/GoatModel/m_170593_ ()Lnet/minecraft/client/model/geom/builders/LayerDefinition; net/minecraft/client/model/GoatModel/createBodyLayer ()Lnet/minecraft/client/model/geom/builders/LayerDefinition; +MD: net/minecraft/client/model/GoatModel/m_6973_ (Lnet/minecraft/world/entity/Entity;FFFFF)V net/minecraft/client/model/GoatModel/setupAnim (Lnet/minecraft/world/entity/Entity;FFFFF)V +MD: net/minecraft/client/model/GoatModel/m_6973_ (Lnet/minecraft/world/entity/animal/goat/Goat;FFFFF)V net/minecraft/client/model/GoatModel/setupAnim (Lnet/minecraft/world/entity/animal/goat/Goat;FFFFF)V +MD: net/minecraft/client/model/GuardianModel/ ()V net/minecraft/client/model/GuardianModel/ ()V +MD: net/minecraft/client/model/GuardianModel/ (Lnet/minecraft/client/model/geom/ModelPart;)V net/minecraft/client/model/GuardianModel/ (Lnet/minecraft/client/model/geom/ModelPart;)V +MD: net/minecraft/client/model/GuardianModel/m_102708_ (FF)V net/minecraft/client/model/GuardianModel/setupSpikes (FF)V +MD: net/minecraft/client/model/GuardianModel/m_142109_ ()Lnet/minecraft/client/model/geom/ModelPart; net/minecraft/client/model/GuardianModel/root ()Lnet/minecraft/client/model/geom/ModelPart; +MD: net/minecraft/client/model/GuardianModel/m_170601_ ()Lnet/minecraft/client/model/geom/builders/LayerDefinition; net/minecraft/client/model/GuardianModel/createBodyLayer ()Lnet/minecraft/client/model/geom/builders/LayerDefinition; +MD: net/minecraft/client/model/GuardianModel/m_170602_ (I)Ljava/lang/String; net/minecraft/client/model/GuardianModel/createSpikeName (I)Ljava/lang/String; +MD: net/minecraft/client/model/GuardianModel/m_170604_ (IFF)F net/minecraft/client/model/GuardianModel/getSpikeOffset (IFF)F +MD: net/minecraft/client/model/GuardianModel/m_170609_ (IFF)F net/minecraft/client/model/GuardianModel/getSpikeX (IFF)F +MD: net/minecraft/client/model/GuardianModel/m_170613_ (IFF)F net/minecraft/client/model/GuardianModel/getSpikeY (IFF)F +MD: net/minecraft/client/model/GuardianModel/m_170617_ (IFF)F net/minecraft/client/model/GuardianModel/getSpikeZ (IFF)F +MD: net/minecraft/client/model/GuardianModel/m_6973_ (Lnet/minecraft/world/entity/monster/Guardian;FFFFF)V net/minecraft/client/model/GuardianModel/setupAnim (Lnet/minecraft/world/entity/monster/Guardian;FFFFF)V +MD: net/minecraft/client/model/GuardianModel/m_6973_ (Lnet/minecraft/world/entity/Entity;FFFFF)V net/minecraft/client/model/GuardianModel/setupAnim (Lnet/minecraft/world/entity/Entity;FFFFF)V +MD: net/minecraft/client/model/HeadedModel/m_5585_ ()Lnet/minecraft/client/model/geom/ModelPart; net/minecraft/client/model/HeadedModel/getHead ()Lnet/minecraft/client/model/geom/ModelPart; +MD: net/minecraft/client/model/HierarchicalModel/ ()V net/minecraft/client/model/HierarchicalModel/ ()V +MD: net/minecraft/client/model/HierarchicalModel/ ()V net/minecraft/client/model/HierarchicalModel/ ()V +MD: net/minecraft/client/model/HierarchicalModel/ (Ljava/util/function/Function;)V net/minecraft/client/model/HierarchicalModel/ (Ljava/util/function/Function;)V +MD: net/minecraft/client/model/HierarchicalModel/m_142109_ ()Lnet/minecraft/client/model/geom/ModelPart; net/minecraft/client/model/HierarchicalModel/root ()Lnet/minecraft/client/model/geom/ModelPart; +MD: net/minecraft/client/model/HierarchicalModel/m_233381_ (Lnet/minecraft/world/entity/AnimationState;Lnet/minecraft/client/animation/AnimationDefinition;F)V net/minecraft/client/model/HierarchicalModel/animate (Lnet/minecraft/world/entity/AnimationState;Lnet/minecraft/client/animation/AnimationDefinition;F)V +MD: net/minecraft/client/model/HierarchicalModel/m_233385_ (Lnet/minecraft/world/entity/AnimationState;Lnet/minecraft/client/animation/AnimationDefinition;FF)V net/minecraft/client/model/HierarchicalModel/animate (Lnet/minecraft/world/entity/AnimationState;Lnet/minecraft/client/animation/AnimationDefinition;FF)V +MD: net/minecraft/client/model/HierarchicalModel/m_233393_ (Ljava/lang/String;)Ljava/util/Optional; net/minecraft/client/model/HierarchicalModel/getAnyDescendantWithName (Ljava/lang/String;)Ljava/util/Optional; +MD: net/minecraft/client/model/HierarchicalModel/m_233395_ (Ljava/lang/String;Lnet/minecraft/client/model/geom/ModelPart;)Lnet/minecraft/client/model/geom/ModelPart; net/minecraft/client/model/HierarchicalModel/lambda$getAnyDescendantWithName$1 (Ljava/lang/String;Lnet/minecraft/client/model/geom/ModelPart;)Lnet/minecraft/client/model/geom/ModelPart; +MD: net/minecraft/client/model/HierarchicalModel/m_233398_ (Ljava/lang/String;Lnet/minecraft/client/model/geom/ModelPart;)Z net/minecraft/client/model/HierarchicalModel/lambda$getAnyDescendantWithName$0 (Ljava/lang/String;Lnet/minecraft/client/model/geom/ModelPart;)Z +MD: net/minecraft/client/model/HierarchicalModel/m_252584_ (Lnet/minecraft/client/animation/AnimationDefinition;Lnet/minecraft/world/entity/AnimationState;)V net/minecraft/client/model/HierarchicalModel/lambda$animate$2 (Lnet/minecraft/client/animation/AnimationDefinition;Lnet/minecraft/world/entity/AnimationState;)V +MD: net/minecraft/client/model/HierarchicalModel/m_267799_ (Lnet/minecraft/client/animation/AnimationDefinition;FFFF)V net/minecraft/client/model/HierarchicalModel/animateWalk (Lnet/minecraft/client/animation/AnimationDefinition;FFFF)V +MD: net/minecraft/client/model/HierarchicalModel/m_288214_ (Lnet/minecraft/client/animation/AnimationDefinition;)V net/minecraft/client/model/HierarchicalModel/applyStatic (Lnet/minecraft/client/animation/AnimationDefinition;)V +MD: net/minecraft/client/model/HierarchicalModel/m_7695_ (Lcom/mojang/blaze3d/vertex/PoseStack;Lcom/mojang/blaze3d/vertex/VertexConsumer;IIFFFF)V net/minecraft/client/model/HierarchicalModel/renderToBuffer (Lcom/mojang/blaze3d/vertex/PoseStack;Lcom/mojang/blaze3d/vertex/VertexConsumer;IIFFFF)V +MD: net/minecraft/client/model/HoglinModel/ (Lnet/minecraft/client/model/geom/ModelPart;)V net/minecraft/client/model/HoglinModel/ (Lnet/minecraft/client/model/geom/ModelPart;)V +MD: net/minecraft/client/model/HoglinModel/m_170641_ ()Lnet/minecraft/client/model/geom/builders/LayerDefinition; net/minecraft/client/model/HoglinModel/createBodyLayer ()Lnet/minecraft/client/model/geom/builders/LayerDefinition; +MD: net/minecraft/client/model/HoglinModel/m_5607_ ()Ljava/lang/Iterable; net/minecraft/client/model/HoglinModel/headParts ()Ljava/lang/Iterable; +MD: net/minecraft/client/model/HoglinModel/m_5608_ ()Ljava/lang/Iterable; net/minecraft/client/model/HoglinModel/bodyParts ()Ljava/lang/Iterable; +MD: net/minecraft/client/model/HoglinModel/m_6973_ (Lnet/minecraft/world/entity/Entity;FFFFF)V net/minecraft/client/model/HoglinModel/setupAnim (Lnet/minecraft/world/entity/Entity;FFFFF)V +MD: net/minecraft/client/model/HoglinModel/m_6973_ (Lnet/minecraft/world/entity/Mob;FFFFF)V net/minecraft/client/model/HoglinModel/setupAnim (Lnet/minecraft/world/entity/Mob;FFFFF)V +MD: net/minecraft/client/model/HorseModel/ (Lnet/minecraft/client/model/geom/ModelPart;)V net/minecraft/client/model/HorseModel/ (Lnet/minecraft/client/model/geom/ModelPart;)V +MD: net/minecraft/client/model/HorseModel/m_170669_ (Lnet/minecraft/client/model/geom/builders/CubeDeformation;)Lnet/minecraft/client/model/geom/builders/MeshDefinition; net/minecraft/client/model/HorseModel/createBodyMesh (Lnet/minecraft/client/model/geom/builders/CubeDeformation;)Lnet/minecraft/client/model/geom/builders/MeshDefinition; +MD: net/minecraft/client/model/HorseModel/m_5607_ ()Ljava/lang/Iterable; net/minecraft/client/model/HorseModel/headParts ()Ljava/lang/Iterable; +MD: net/minecraft/client/model/HorseModel/m_5608_ ()Ljava/lang/Iterable; net/minecraft/client/model/HorseModel/bodyParts ()Ljava/lang/Iterable; +MD: net/minecraft/client/model/HorseModel/m_6839_ (Lnet/minecraft/world/entity/Entity;FFF)V net/minecraft/client/model/HorseModel/prepareMobModel (Lnet/minecraft/world/entity/Entity;FFF)V +MD: net/minecraft/client/model/HorseModel/m_6839_ (Lnet/minecraft/world/entity/animal/horse/AbstractHorse;FFF)V net/minecraft/client/model/HorseModel/prepareMobModel (Lnet/minecraft/world/entity/animal/horse/AbstractHorse;FFF)V +MD: net/minecraft/client/model/HorseModel/m_6973_ (Lnet/minecraft/world/entity/Entity;FFFFF)V net/minecraft/client/model/HorseModel/setupAnim (Lnet/minecraft/world/entity/Entity;FFFFF)V +MD: net/minecraft/client/model/HorseModel/m_6973_ (Lnet/minecraft/world/entity/animal/horse/AbstractHorse;FFFFF)V net/minecraft/client/model/HorseModel/setupAnim (Lnet/minecraft/world/entity/animal/horse/AbstractHorse;FFFFF)V +MD: net/minecraft/client/model/HumanoidArmorModel/ (Lnet/minecraft/client/model/geom/ModelPart;)V net/minecraft/client/model/HumanoidArmorModel/ (Lnet/minecraft/client/model/geom/ModelPart;)V +MD: net/minecraft/client/model/HumanoidArmorModel/m_269566_ (Lnet/minecraft/client/model/geom/builders/CubeDeformation;)Lnet/minecraft/client/model/geom/builders/MeshDefinition; net/minecraft/client/model/HumanoidArmorModel/createBodyLayer (Lnet/minecraft/client/model/geom/builders/CubeDeformation;)Lnet/minecraft/client/model/geom/builders/MeshDefinition; +MD: net/minecraft/client/model/HumanoidModel/ (Lnet/minecraft/client/model/geom/ModelPart;)V net/minecraft/client/model/HumanoidModel/ (Lnet/minecraft/client/model/geom/ModelPart;)V +MD: net/minecraft/client/model/HumanoidModel/ (Lnet/minecraft/client/model/geom/ModelPart;Ljava/util/function/Function;)V net/minecraft/client/model/HumanoidModel/ (Lnet/minecraft/client/model/geom/ModelPart;Ljava/util/function/Function;)V +MD: net/minecraft/client/model/HumanoidModel/m_102833_ (F)F net/minecraft/client/model/HumanoidModel/quadraticArmUpdate (F)F +MD: net/minecraft/client/model/HumanoidModel/m_102835_ (FFF)F net/minecraft/client/model/HumanoidModel/rotlerpRad (FFF)F +MD: net/minecraft/client/model/HumanoidModel/m_102851_ (Lnet/minecraft/world/entity/HumanoidArm;)Lnet/minecraft/client/model/geom/ModelPart; net/minecraft/client/model/HumanoidModel/getArm (Lnet/minecraft/world/entity/HumanoidArm;)Lnet/minecraft/client/model/geom/ModelPart; +MD: net/minecraft/client/model/HumanoidModel/m_102856_ (Lnet/minecraft/world/entity/LivingEntity;)Lnet/minecraft/world/entity/HumanoidArm; net/minecraft/client/model/HumanoidModel/getAttackArm (Lnet/minecraft/world/entity/LivingEntity;)Lnet/minecraft/world/entity/HumanoidArm; +MD: net/minecraft/client/model/HumanoidModel/m_102872_ (Lnet/minecraft/client/model/HumanoidModel;)V net/minecraft/client/model/HumanoidModel/copyPropertiesTo (Lnet/minecraft/client/model/HumanoidModel;)V +MD: net/minecraft/client/model/HumanoidModel/m_102875_ (Lnet/minecraft/world/entity/LivingEntity;)V net/minecraft/client/model/HumanoidModel/poseRightArm (Lnet/minecraft/world/entity/LivingEntity;)V +MD: net/minecraft/client/model/HumanoidModel/m_102878_ (Lnet/minecraft/world/entity/LivingEntity;)V net/minecraft/client/model/HumanoidModel/poseLeftArm (Lnet/minecraft/world/entity/LivingEntity;)V +MD: net/minecraft/client/model/HumanoidModel/m_170681_ (Lnet/minecraft/client/model/geom/builders/CubeDeformation;F)Lnet/minecraft/client/model/geom/builders/MeshDefinition; net/minecraft/client/model/HumanoidModel/createMesh (Lnet/minecraft/client/model/geom/builders/CubeDeformation;F)Lnet/minecraft/client/model/geom/builders/MeshDefinition; +MD: net/minecraft/client/model/HumanoidModel/m_5585_ ()Lnet/minecraft/client/model/geom/ModelPart; net/minecraft/client/model/HumanoidModel/getHead ()Lnet/minecraft/client/model/geom/ModelPart; +MD: net/minecraft/client/model/HumanoidModel/m_5607_ ()Ljava/lang/Iterable; net/minecraft/client/model/HumanoidModel/headParts ()Ljava/lang/Iterable; +MD: net/minecraft/client/model/HumanoidModel/m_5608_ ()Ljava/lang/Iterable; net/minecraft/client/model/HumanoidModel/bodyParts ()Ljava/lang/Iterable; +MD: net/minecraft/client/model/HumanoidModel/m_6002_ (Lnet/minecraft/world/entity/HumanoidArm;Lcom/mojang/blaze3d/vertex/PoseStack;)V net/minecraft/client/model/HumanoidModel/translateToHand (Lnet/minecraft/world/entity/HumanoidArm;Lcom/mojang/blaze3d/vertex/PoseStack;)V +MD: net/minecraft/client/model/HumanoidModel/m_6839_ (Lnet/minecraft/world/entity/Entity;FFF)V net/minecraft/client/model/HumanoidModel/prepareMobModel (Lnet/minecraft/world/entity/Entity;FFF)V +MD: net/minecraft/client/model/HumanoidModel/m_6839_ (Lnet/minecraft/world/entity/LivingEntity;FFF)V net/minecraft/client/model/HumanoidModel/prepareMobModel (Lnet/minecraft/world/entity/LivingEntity;FFF)V +MD: net/minecraft/client/model/HumanoidModel/m_6973_ (Lnet/minecraft/world/entity/Entity;FFFFF)V net/minecraft/client/model/HumanoidModel/setupAnim (Lnet/minecraft/world/entity/Entity;FFFFF)V +MD: net/minecraft/client/model/HumanoidModel/m_6973_ (Lnet/minecraft/world/entity/LivingEntity;FFFFF)V net/minecraft/client/model/HumanoidModel/setupAnim (Lnet/minecraft/world/entity/LivingEntity;FFFFF)V +MD: net/minecraft/client/model/HumanoidModel/m_7884_ (Lnet/minecraft/world/entity/LivingEntity;F)V net/minecraft/client/model/HumanoidModel/setupAttackAnimation (Lnet/minecraft/world/entity/LivingEntity;F)V +MD: net/minecraft/client/model/HumanoidModel/m_8009_ (Z)V net/minecraft/client/model/HumanoidModel/setAllVisible (Z)V +MD: net/minecraft/client/model/HumanoidModel$1/ ()V net/minecraft/client/model/HumanoidModel$1/ ()V +MD: net/minecraft/client/model/HumanoidModel$ArmPose/ ()V net/minecraft/client/model/HumanoidModel$ArmPose/ ()V +MD: net/minecraft/client/model/HumanoidModel$ArmPose/ (Ljava/lang/String;IZ)V net/minecraft/client/model/HumanoidModel$ArmPose/ (Ljava/lang/String;IZ)V +MD: net/minecraft/client/model/HumanoidModel$ArmPose/m_102897_ ()Z net/minecraft/client/model/HumanoidModel$ArmPose/isTwoHanded ()Z +MD: net/minecraft/client/model/HumanoidModel$ArmPose/m_170685_ ()[Lnet/minecraft/client/model/HumanoidModel$ArmPose; net/minecraft/client/model/HumanoidModel$ArmPose/$values ()[Lnet/minecraft/client/model/HumanoidModel$ArmPose; +MD: net/minecraft/client/model/HumanoidModel$ArmPose/valueOf (Ljava/lang/String;)Lnet/minecraft/client/model/HumanoidModel$ArmPose; net/minecraft/client/model/HumanoidModel$ArmPose/valueOf (Ljava/lang/String;)Lnet/minecraft/client/model/HumanoidModel$ArmPose; +MD: net/minecraft/client/model/HumanoidModel$ArmPose/values ()[Lnet/minecraft/client/model/HumanoidModel$ArmPose; net/minecraft/client/model/HumanoidModel$ArmPose/values ()[Lnet/minecraft/client/model/HumanoidModel$ArmPose; +MD: net/minecraft/client/model/IllagerModel/ (Lnet/minecraft/client/model/geom/ModelPart;)V net/minecraft/client/model/IllagerModel/ (Lnet/minecraft/client/model/geom/ModelPart;)V +MD: net/minecraft/client/model/IllagerModel/m_102922_ (Lnet/minecraft/world/entity/HumanoidArm;)Lnet/minecraft/client/model/geom/ModelPart; net/minecraft/client/model/IllagerModel/getArm (Lnet/minecraft/world/entity/HumanoidArm;)Lnet/minecraft/client/model/geom/ModelPart; +MD: net/minecraft/client/model/IllagerModel/m_102934_ ()Lnet/minecraft/client/model/geom/ModelPart; net/minecraft/client/model/IllagerModel/getHat ()Lnet/minecraft/client/model/geom/ModelPart; +MD: net/minecraft/client/model/IllagerModel/m_142109_ ()Lnet/minecraft/client/model/geom/ModelPart; net/minecraft/client/model/IllagerModel/root ()Lnet/minecraft/client/model/geom/ModelPart; +MD: net/minecraft/client/model/IllagerModel/m_170689_ ()Lnet/minecraft/client/model/geom/builders/LayerDefinition; net/minecraft/client/model/IllagerModel/createBodyLayer ()Lnet/minecraft/client/model/geom/builders/LayerDefinition; +MD: net/minecraft/client/model/IllagerModel/m_5585_ ()Lnet/minecraft/client/model/geom/ModelPart; net/minecraft/client/model/IllagerModel/getHead ()Lnet/minecraft/client/model/geom/ModelPart; +MD: net/minecraft/client/model/IllagerModel/m_6002_ (Lnet/minecraft/world/entity/HumanoidArm;Lcom/mojang/blaze3d/vertex/PoseStack;)V net/minecraft/client/model/IllagerModel/translateToHand (Lnet/minecraft/world/entity/HumanoidArm;Lcom/mojang/blaze3d/vertex/PoseStack;)V +MD: net/minecraft/client/model/IllagerModel/m_6973_ (Lnet/minecraft/world/entity/Entity;FFFFF)V net/minecraft/client/model/IllagerModel/setupAnim (Lnet/minecraft/world/entity/Entity;FFFFF)V +MD: net/minecraft/client/model/IllagerModel/m_6973_ (Lnet/minecraft/world/entity/monster/AbstractIllager;FFFFF)V net/minecraft/client/model/IllagerModel/setupAnim (Lnet/minecraft/world/entity/monster/AbstractIllager;FFFFF)V +MD: net/minecraft/client/model/IronGolemModel/ (Lnet/minecraft/client/model/geom/ModelPart;)V net/minecraft/client/model/IronGolemModel/ (Lnet/minecraft/client/model/geom/ModelPart;)V +MD: net/minecraft/client/model/IronGolemModel/m_102968_ ()Lnet/minecraft/client/model/geom/ModelPart; net/minecraft/client/model/IronGolemModel/getFlowerHoldingArm ()Lnet/minecraft/client/model/geom/ModelPart; +MD: net/minecraft/client/model/IronGolemModel/m_142109_ ()Lnet/minecraft/client/model/geom/ModelPart; net/minecraft/client/model/IronGolemModel/root ()Lnet/minecraft/client/model/geom/ModelPart; +MD: net/minecraft/client/model/IronGolemModel/m_170698_ ()Lnet/minecraft/client/model/geom/builders/LayerDefinition; net/minecraft/client/model/IronGolemModel/createBodyLayer ()Lnet/minecraft/client/model/geom/builders/LayerDefinition; +MD: net/minecraft/client/model/IronGolemModel/m_6839_ (Lnet/minecraft/world/entity/Entity;FFF)V net/minecraft/client/model/IronGolemModel/prepareMobModel (Lnet/minecraft/world/entity/Entity;FFF)V +MD: net/minecraft/client/model/IronGolemModel/m_6839_ (Lnet/minecraft/world/entity/animal/IronGolem;FFF)V net/minecraft/client/model/IronGolemModel/prepareMobModel (Lnet/minecraft/world/entity/animal/IronGolem;FFF)V +MD: net/minecraft/client/model/IronGolemModel/m_6973_ (Lnet/minecraft/world/entity/Entity;FFFFF)V net/minecraft/client/model/IronGolemModel/setupAnim (Lnet/minecraft/world/entity/Entity;FFFFF)V +MD: net/minecraft/client/model/IronGolemModel/m_6973_ (Lnet/minecraft/world/entity/animal/IronGolem;FFFFF)V net/minecraft/client/model/IronGolemModel/setupAnim (Lnet/minecraft/world/entity/animal/IronGolem;FFFFF)V +MD: net/minecraft/client/model/LavaSlimeModel/ (Lnet/minecraft/client/model/geom/ModelPart;)V net/minecraft/client/model/LavaSlimeModel/ (Lnet/minecraft/client/model/geom/ModelPart;)V +MD: net/minecraft/client/model/LavaSlimeModel/m_142109_ ()Lnet/minecraft/client/model/geom/ModelPart; net/minecraft/client/model/LavaSlimeModel/root ()Lnet/minecraft/client/model/geom/ModelPart; +MD: net/minecraft/client/model/LavaSlimeModel/m_170704_ ()Lnet/minecraft/client/model/geom/builders/LayerDefinition; net/minecraft/client/model/LavaSlimeModel/createBodyLayer ()Lnet/minecraft/client/model/geom/builders/LayerDefinition; +MD: net/minecraft/client/model/LavaSlimeModel/m_170705_ (I)Ljava/lang/String; net/minecraft/client/model/LavaSlimeModel/getSegmentName (I)Ljava/lang/String; +MD: net/minecraft/client/model/LavaSlimeModel/m_170707_ (Lnet/minecraft/client/model/geom/ModelPart;I)Lnet/minecraft/client/model/geom/ModelPart; net/minecraft/client/model/LavaSlimeModel/lambda$new$0 (Lnet/minecraft/client/model/geom/ModelPart;I)Lnet/minecraft/client/model/geom/ModelPart; +MD: net/minecraft/client/model/LavaSlimeModel/m_6839_ (Lnet/minecraft/world/entity/Entity;FFF)V net/minecraft/client/model/LavaSlimeModel/prepareMobModel (Lnet/minecraft/world/entity/Entity;FFF)V +MD: net/minecraft/client/model/LavaSlimeModel/m_6839_ (Lnet/minecraft/world/entity/monster/Slime;FFF)V net/minecraft/client/model/LavaSlimeModel/prepareMobModel (Lnet/minecraft/world/entity/monster/Slime;FFF)V +MD: net/minecraft/client/model/LavaSlimeModel/m_6973_ (Lnet/minecraft/world/entity/monster/Slime;FFFFF)V net/minecraft/client/model/LavaSlimeModel/setupAnim (Lnet/minecraft/world/entity/monster/Slime;FFFFF)V +MD: net/minecraft/client/model/LavaSlimeModel/m_6973_ (Lnet/minecraft/world/entity/Entity;FFFFF)V net/minecraft/client/model/LavaSlimeModel/setupAnim (Lnet/minecraft/world/entity/Entity;FFFFF)V +MD: net/minecraft/client/model/LeashKnotModel/ (Lnet/minecraft/client/model/geom/ModelPart;)V net/minecraft/client/model/LeashKnotModel/ (Lnet/minecraft/client/model/geom/ModelPart;)V +MD: net/minecraft/client/model/LeashKnotModel/m_142109_ ()Lnet/minecraft/client/model/geom/ModelPart; net/minecraft/client/model/LeashKnotModel/root ()Lnet/minecraft/client/model/geom/ModelPart; +MD: net/minecraft/client/model/LeashKnotModel/m_170715_ ()Lnet/minecraft/client/model/geom/builders/LayerDefinition; net/minecraft/client/model/LeashKnotModel/createBodyLayer ()Lnet/minecraft/client/model/geom/builders/LayerDefinition; +MD: net/minecraft/client/model/LeashKnotModel/m_6973_ (Lnet/minecraft/world/entity/Entity;FFFFF)V net/minecraft/client/model/LeashKnotModel/setupAnim (Lnet/minecraft/world/entity/Entity;FFFFF)V +MD: net/minecraft/client/model/ListModel/ ()V net/minecraft/client/model/ListModel/ ()V +MD: net/minecraft/client/model/ListModel/ (Ljava/util/function/Function;)V net/minecraft/client/model/ListModel/ (Ljava/util/function/Function;)V +MD: net/minecraft/client/model/ListModel/m_103021_ (Lcom/mojang/blaze3d/vertex/PoseStack;Lcom/mojang/blaze3d/vertex/VertexConsumer;IIFFFFLnet/minecraft/client/model/geom/ModelPart;)V net/minecraft/client/model/ListModel/lambda$renderToBuffer$0 (Lcom/mojang/blaze3d/vertex/PoseStack;Lcom/mojang/blaze3d/vertex/VertexConsumer;IIFFFFLnet/minecraft/client/model/geom/ModelPart;)V +MD: net/minecraft/client/model/ListModel/m_6195_ ()Ljava/lang/Iterable; net/minecraft/client/model/ListModel/parts ()Ljava/lang/Iterable; +MD: net/minecraft/client/model/ListModel/m_7695_ (Lcom/mojang/blaze3d/vertex/PoseStack;Lcom/mojang/blaze3d/vertex/VertexConsumer;IIFFFF)V net/minecraft/client/model/ListModel/renderToBuffer (Lcom/mojang/blaze3d/vertex/PoseStack;Lcom/mojang/blaze3d/vertex/VertexConsumer;IIFFFF)V +MD: net/minecraft/client/model/LlamaModel/ (Lnet/minecraft/client/model/geom/ModelPart;)V net/minecraft/client/model/LlamaModel/ (Lnet/minecraft/client/model/geom/ModelPart;)V +MD: net/minecraft/client/model/LlamaModel/m_103064_ (Lcom/mojang/blaze3d/vertex/PoseStack;Lcom/mojang/blaze3d/vertex/VertexConsumer;IIFFFFLnet/minecraft/client/model/geom/ModelPart;)V net/minecraft/client/model/LlamaModel/lambda$renderToBuffer$1 (Lcom/mojang/blaze3d/vertex/PoseStack;Lcom/mojang/blaze3d/vertex/VertexConsumer;IIFFFFLnet/minecraft/client/model/geom/ModelPart;)V +MD: net/minecraft/client/model/LlamaModel/m_103074_ (Lcom/mojang/blaze3d/vertex/PoseStack;Lcom/mojang/blaze3d/vertex/VertexConsumer;IIFFFFLnet/minecraft/client/model/geom/ModelPart;)V net/minecraft/client/model/LlamaModel/lambda$renderToBuffer$0 (Lcom/mojang/blaze3d/vertex/PoseStack;Lcom/mojang/blaze3d/vertex/VertexConsumer;IIFFFFLnet/minecraft/client/model/geom/ModelPart;)V +MD: net/minecraft/client/model/LlamaModel/m_170725_ (Lnet/minecraft/client/model/geom/builders/CubeDeformation;)Lnet/minecraft/client/model/geom/builders/LayerDefinition; net/minecraft/client/model/LlamaModel/createBodyLayer (Lnet/minecraft/client/model/geom/builders/CubeDeformation;)Lnet/minecraft/client/model/geom/builders/LayerDefinition; +MD: net/minecraft/client/model/LlamaModel/m_6973_ (Lnet/minecraft/world/entity/Entity;FFFFF)V net/minecraft/client/model/LlamaModel/setupAnim (Lnet/minecraft/world/entity/Entity;FFFFF)V +MD: net/minecraft/client/model/LlamaModel/m_6973_ (Lnet/minecraft/world/entity/animal/horse/AbstractChestedHorse;FFFFF)V net/minecraft/client/model/LlamaModel/setupAnim (Lnet/minecraft/world/entity/animal/horse/AbstractChestedHorse;FFFFF)V +MD: net/minecraft/client/model/LlamaModel/m_7695_ (Lcom/mojang/blaze3d/vertex/PoseStack;Lcom/mojang/blaze3d/vertex/VertexConsumer;IIFFFF)V net/minecraft/client/model/LlamaModel/renderToBuffer (Lcom/mojang/blaze3d/vertex/PoseStack;Lcom/mojang/blaze3d/vertex/VertexConsumer;IIFFFF)V +MD: net/minecraft/client/model/LlamaSpitModel/ (Lnet/minecraft/client/model/geom/ModelPart;)V net/minecraft/client/model/LlamaSpitModel/ (Lnet/minecraft/client/model/geom/ModelPart;)V +MD: net/minecraft/client/model/LlamaSpitModel/m_142109_ ()Lnet/minecraft/client/model/geom/ModelPart; net/minecraft/client/model/LlamaSpitModel/root ()Lnet/minecraft/client/model/geom/ModelPart; +MD: net/minecraft/client/model/LlamaSpitModel/m_170731_ ()Lnet/minecraft/client/model/geom/builders/LayerDefinition; net/minecraft/client/model/LlamaSpitModel/createBodyLayer ()Lnet/minecraft/client/model/geom/builders/LayerDefinition; +MD: net/minecraft/client/model/LlamaSpitModel/m_6973_ (Lnet/minecraft/world/entity/Entity;FFFFF)V net/minecraft/client/model/LlamaSpitModel/setupAnim (Lnet/minecraft/world/entity/Entity;FFFFF)V +MD: net/minecraft/client/model/MinecartModel/ (Lnet/minecraft/client/model/geom/ModelPart;)V net/minecraft/client/model/MinecartModel/ (Lnet/minecraft/client/model/geom/ModelPart;)V +MD: net/minecraft/client/model/MinecartModel/m_142109_ ()Lnet/minecraft/client/model/geom/ModelPart; net/minecraft/client/model/MinecartModel/root ()Lnet/minecraft/client/model/geom/ModelPart; +MD: net/minecraft/client/model/MinecartModel/m_170738_ ()Lnet/minecraft/client/model/geom/builders/LayerDefinition; net/minecraft/client/model/MinecartModel/createBodyLayer ()Lnet/minecraft/client/model/geom/builders/LayerDefinition; +MD: net/minecraft/client/model/MinecartModel/m_6973_ (Lnet/minecraft/world/entity/Entity;FFFFF)V net/minecraft/client/model/MinecartModel/setupAnim (Lnet/minecraft/world/entity/Entity;FFFFF)V +MD: net/minecraft/client/model/Model/ (Ljava/util/function/Function;)V net/minecraft/client/model/Model/ (Ljava/util/function/Function;)V +MD: net/minecraft/client/model/Model/m_103119_ (Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/client/renderer/RenderType; net/minecraft/client/model/Model/renderType (Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/client/renderer/RenderType; +MD: net/minecraft/client/model/Model/m_7695_ (Lcom/mojang/blaze3d/vertex/PoseStack;Lcom/mojang/blaze3d/vertex/VertexConsumer;IIFFFF)V net/minecraft/client/model/Model/renderToBuffer (Lcom/mojang/blaze3d/vertex/PoseStack;Lcom/mojang/blaze3d/vertex/VertexConsumer;IIFFFF)V +MD: net/minecraft/client/model/ModelUtils/ ()V net/minecraft/client/model/ModelUtils/ ()V +MD: net/minecraft/client/model/ModelUtils/m_103125_ (FFF)F net/minecraft/client/model/ModelUtils/rotlerpRad (FFF)F +MD: net/minecraft/client/model/OcelotModel/ (Lnet/minecraft/client/model/geom/ModelPart;)V net/minecraft/client/model/OcelotModel/ (Lnet/minecraft/client/model/geom/ModelPart;)V +MD: net/minecraft/client/model/OcelotModel/m_170768_ (Lnet/minecraft/client/model/geom/builders/CubeDeformation;)Lnet/minecraft/client/model/geom/builders/MeshDefinition; net/minecraft/client/model/OcelotModel/createBodyMesh (Lnet/minecraft/client/model/geom/builders/CubeDeformation;)Lnet/minecraft/client/model/geom/builders/MeshDefinition; +MD: net/minecraft/client/model/OcelotModel/m_5607_ ()Ljava/lang/Iterable; net/minecraft/client/model/OcelotModel/headParts ()Ljava/lang/Iterable; +MD: net/minecraft/client/model/OcelotModel/m_5608_ ()Ljava/lang/Iterable; net/minecraft/client/model/OcelotModel/bodyParts ()Ljava/lang/Iterable; +MD: net/minecraft/client/model/OcelotModel/m_6839_ (Lnet/minecraft/world/entity/Entity;FFF)V net/minecraft/client/model/OcelotModel/prepareMobModel (Lnet/minecraft/world/entity/Entity;FFF)V +MD: net/minecraft/client/model/OcelotModel/m_6973_ (Lnet/minecraft/world/entity/Entity;FFFFF)V net/minecraft/client/model/OcelotModel/setupAnim (Lnet/minecraft/world/entity/Entity;FFFFF)V +MD: net/minecraft/client/model/PandaModel/ (Lnet/minecraft/client/model/geom/ModelPart;)V net/minecraft/client/model/PandaModel/ (Lnet/minecraft/client/model/geom/ModelPart;)V +MD: net/minecraft/client/model/PandaModel/m_170772_ ()Lnet/minecraft/client/model/geom/builders/LayerDefinition; net/minecraft/client/model/PandaModel/createBodyLayer ()Lnet/minecraft/client/model/geom/builders/LayerDefinition; +MD: net/minecraft/client/model/PandaModel/m_6839_ (Lnet/minecraft/world/entity/Entity;FFF)V net/minecraft/client/model/PandaModel/prepareMobModel (Lnet/minecraft/world/entity/Entity;FFF)V +MD: net/minecraft/client/model/PandaModel/m_6839_ (Lnet/minecraft/world/entity/animal/Panda;FFF)V net/minecraft/client/model/PandaModel/prepareMobModel (Lnet/minecraft/world/entity/animal/Panda;FFF)V +MD: net/minecraft/client/model/PandaModel/m_6973_ (Lnet/minecraft/world/entity/Entity;FFFFF)V net/minecraft/client/model/PandaModel/setupAnim (Lnet/minecraft/world/entity/Entity;FFFFF)V +MD: net/minecraft/client/model/PandaModel/m_6973_ (Lnet/minecraft/world/entity/animal/Panda;FFFFF)V net/minecraft/client/model/PandaModel/setupAnim (Lnet/minecraft/world/entity/animal/Panda;FFFFF)V +MD: net/minecraft/client/model/ParrotModel/ (Lnet/minecraft/client/model/geom/ModelPart;)V net/minecraft/client/model/ParrotModel/ (Lnet/minecraft/client/model/geom/ModelPart;)V +MD: net/minecraft/client/model/ParrotModel/m_103209_ (Lnet/minecraft/world/entity/animal/Parrot;)Lnet/minecraft/client/model/ParrotModel$State; net/minecraft/client/model/ParrotModel/getState (Lnet/minecraft/world/entity/animal/Parrot;)Lnet/minecraft/client/model/ParrotModel$State; +MD: net/minecraft/client/model/ParrotModel/m_103223_ (Lcom/mojang/blaze3d/vertex/PoseStack;Lcom/mojang/blaze3d/vertex/VertexConsumer;IIFFFFI)V net/minecraft/client/model/ParrotModel/renderOnShoulder (Lcom/mojang/blaze3d/vertex/PoseStack;Lcom/mojang/blaze3d/vertex/VertexConsumer;IIFFFFI)V +MD: net/minecraft/client/model/ParrotModel/m_103239_ (Lnet/minecraft/client/model/ParrotModel$State;)V net/minecraft/client/model/ParrotModel/prepare (Lnet/minecraft/client/model/ParrotModel$State;)V +MD: net/minecraft/client/model/ParrotModel/m_103241_ (Lnet/minecraft/client/model/ParrotModel$State;IFFFFF)V net/minecraft/client/model/ParrotModel/setupAnim (Lnet/minecraft/client/model/ParrotModel$State;IFFFFF)V +MD: net/minecraft/client/model/ParrotModel/m_142109_ ()Lnet/minecraft/client/model/geom/ModelPart; net/minecraft/client/model/ParrotModel/root ()Lnet/minecraft/client/model/geom/ModelPart; +MD: net/minecraft/client/model/ParrotModel/m_170781_ ()Lnet/minecraft/client/model/geom/builders/LayerDefinition; net/minecraft/client/model/ParrotModel/createBodyLayer ()Lnet/minecraft/client/model/geom/builders/LayerDefinition; +MD: net/minecraft/client/model/ParrotModel/m_6839_ (Lnet/minecraft/world/entity/Entity;FFF)V net/minecraft/client/model/ParrotModel/prepareMobModel (Lnet/minecraft/world/entity/Entity;FFF)V +MD: net/minecraft/client/model/ParrotModel/m_6839_ (Lnet/minecraft/world/entity/animal/Parrot;FFF)V net/minecraft/client/model/ParrotModel/prepareMobModel (Lnet/minecraft/world/entity/animal/Parrot;FFF)V +MD: net/minecraft/client/model/ParrotModel/m_6973_ (Lnet/minecraft/world/entity/Entity;FFFFF)V net/minecraft/client/model/ParrotModel/setupAnim (Lnet/minecraft/world/entity/Entity;FFFFF)V +MD: net/minecraft/client/model/ParrotModel/m_6973_ (Lnet/minecraft/world/entity/animal/Parrot;FFFFF)V net/minecraft/client/model/ParrotModel/setupAnim (Lnet/minecraft/world/entity/animal/Parrot;FFFFF)V +MD: net/minecraft/client/model/ParrotModel$1/ ()V net/minecraft/client/model/ParrotModel$1/ ()V +MD: net/minecraft/client/model/ParrotModel$State/ ()V net/minecraft/client/model/ParrotModel$State/ ()V +MD: net/minecraft/client/model/ParrotModel$State/ (Ljava/lang/String;I)V net/minecraft/client/model/ParrotModel$State/ (Ljava/lang/String;I)V +MD: net/minecraft/client/model/ParrotModel$State/m_170783_ ()[Lnet/minecraft/client/model/ParrotModel$State; net/minecraft/client/model/ParrotModel$State/$values ()[Lnet/minecraft/client/model/ParrotModel$State; +MD: net/minecraft/client/model/ParrotModel$State/valueOf (Ljava/lang/String;)Lnet/minecraft/client/model/ParrotModel$State; net/minecraft/client/model/ParrotModel$State/valueOf (Ljava/lang/String;)Lnet/minecraft/client/model/ParrotModel$State; +MD: net/minecraft/client/model/ParrotModel$State/values ()[Lnet/minecraft/client/model/ParrotModel$State; net/minecraft/client/model/ParrotModel$State/values ()[Lnet/minecraft/client/model/ParrotModel$State; +MD: net/minecraft/client/model/PhantomModel/ (Lnet/minecraft/client/model/geom/ModelPart;)V net/minecraft/client/model/PhantomModel/ (Lnet/minecraft/client/model/geom/ModelPart;)V +MD: net/minecraft/client/model/PhantomModel/m_142109_ ()Lnet/minecraft/client/model/geom/ModelPart; net/minecraft/client/model/PhantomModel/root ()Lnet/minecraft/client/model/geom/ModelPart; +MD: net/minecraft/client/model/PhantomModel/m_170789_ ()Lnet/minecraft/client/model/geom/builders/LayerDefinition; net/minecraft/client/model/PhantomModel/createBodyLayer ()Lnet/minecraft/client/model/geom/builders/LayerDefinition; +MD: net/minecraft/client/model/PhantomModel/m_6973_ (Lnet/minecraft/world/entity/monster/Phantom;FFFFF)V net/minecraft/client/model/PhantomModel/setupAnim (Lnet/minecraft/world/entity/monster/Phantom;FFFFF)V +MD: net/minecraft/client/model/PhantomModel/m_6973_ (Lnet/minecraft/world/entity/Entity;FFFFF)V net/minecraft/client/model/PhantomModel/setupAnim (Lnet/minecraft/world/entity/Entity;FFFFF)V +MD: net/minecraft/client/model/PigModel/ (Lnet/minecraft/client/model/geom/ModelPart;)V net/minecraft/client/model/PigModel/ (Lnet/minecraft/client/model/geom/ModelPart;)V +MD: net/minecraft/client/model/PigModel/m_170800_ (Lnet/minecraft/client/model/geom/builders/CubeDeformation;)Lnet/minecraft/client/model/geom/builders/LayerDefinition; net/minecraft/client/model/PigModel/createBodyLayer (Lnet/minecraft/client/model/geom/builders/CubeDeformation;)Lnet/minecraft/client/model/geom/builders/LayerDefinition; +MD: net/minecraft/client/model/PiglinHeadModel/ (Lnet/minecraft/client/model/geom/ModelPart;)V net/minecraft/client/model/PiglinHeadModel/ (Lnet/minecraft/client/model/geom/ModelPart;)V +MD: net/minecraft/client/model/PiglinHeadModel/m_261259_ ()Lnet/minecraft/client/model/geom/builders/MeshDefinition; net/minecraft/client/model/PiglinHeadModel/createHeadModel ()Lnet/minecraft/client/model/geom/builders/MeshDefinition; +MD: net/minecraft/client/model/PiglinHeadModel/m_6251_ (FFF)V net/minecraft/client/model/PiglinHeadModel/setupAnim (FFF)V +MD: net/minecraft/client/model/PiglinHeadModel/m_7695_ (Lcom/mojang/blaze3d/vertex/PoseStack;Lcom/mojang/blaze3d/vertex/VertexConsumer;IIFFFF)V net/minecraft/client/model/PiglinHeadModel/renderToBuffer (Lcom/mojang/blaze3d/vertex/PoseStack;Lcom/mojang/blaze3d/vertex/VertexConsumer;IIFFFF)V +MD: net/minecraft/client/model/PiglinModel/ (Lnet/minecraft/client/model/geom/ModelPart;)V net/minecraft/client/model/PiglinModel/ (Lnet/minecraft/client/model/geom/ModelPart;)V +MD: net/minecraft/client/model/PiglinModel/m_103360_ (Lnet/minecraft/world/entity/Mob;)V net/minecraft/client/model/PiglinModel/holdWeaponHigh (Lnet/minecraft/world/entity/Mob;)V +MD: net/minecraft/client/model/PiglinModel/m_170811_ (Lnet/minecraft/client/model/geom/builders/CubeDeformation;)Lnet/minecraft/client/model/geom/builders/MeshDefinition; net/minecraft/client/model/PiglinModel/createMesh (Lnet/minecraft/client/model/geom/builders/CubeDeformation;)Lnet/minecraft/client/model/geom/builders/MeshDefinition; +MD: net/minecraft/client/model/PiglinModel/m_260936_ (Lnet/minecraft/client/model/geom/builders/CubeDeformation;Lnet/minecraft/client/model/geom/builders/MeshDefinition;)V net/minecraft/client/model/PiglinModel/addHead (Lnet/minecraft/client/model/geom/builders/CubeDeformation;Lnet/minecraft/client/model/geom/builders/MeshDefinition;)V +MD: net/minecraft/client/model/PiglinModel/m_6973_ (Lnet/minecraft/world/entity/Entity;FFFFF)V net/minecraft/client/model/PiglinModel/setupAnim (Lnet/minecraft/world/entity/Entity;FFFFF)V +MD: net/minecraft/client/model/PiglinModel/m_6973_ (Lnet/minecraft/world/entity/LivingEntity;FFFFF)V net/minecraft/client/model/PiglinModel/setupAnim (Lnet/minecraft/world/entity/LivingEntity;FFFFF)V +MD: net/minecraft/client/model/PiglinModel/m_6973_ (Lnet/minecraft/world/entity/Mob;FFFFF)V net/minecraft/client/model/PiglinModel/setupAnim (Lnet/minecraft/world/entity/Mob;FFFFF)V +MD: net/minecraft/client/model/PiglinModel/m_7884_ (Lnet/minecraft/world/entity/Mob;F)V net/minecraft/client/model/PiglinModel/setupAttackAnimation (Lnet/minecraft/world/entity/Mob;F)V +MD: net/minecraft/client/model/PiglinModel/m_7884_ (Lnet/minecraft/world/entity/LivingEntity;F)V net/minecraft/client/model/PiglinModel/setupAttackAnimation (Lnet/minecraft/world/entity/LivingEntity;F)V +MD: net/minecraft/client/model/PlayerModel/ (Lnet/minecraft/client/model/geom/ModelPart;Z)V net/minecraft/client/model/PlayerModel/ (Lnet/minecraft/client/model/geom/ModelPart;Z)V +MD: net/minecraft/client/model/PlayerModel/m_103401_ (Lcom/mojang/blaze3d/vertex/PoseStack;Lcom/mojang/blaze3d/vertex/VertexConsumer;II)V net/minecraft/client/model/PlayerModel/renderEars (Lcom/mojang/blaze3d/vertex/PoseStack;Lcom/mojang/blaze3d/vertex/VertexConsumer;II)V +MD: net/minecraft/client/model/PlayerModel/m_103411_ (Lcom/mojang/blaze3d/vertex/PoseStack;Lcom/mojang/blaze3d/vertex/VertexConsumer;II)V net/minecraft/client/model/PlayerModel/renderCloak (Lcom/mojang/blaze3d/vertex/PoseStack;Lcom/mojang/blaze3d/vertex/VertexConsumer;II)V +MD: net/minecraft/client/model/PlayerModel/m_170823_ (Lnet/minecraft/client/model/geom/ModelPart;)Z net/minecraft/client/model/PlayerModel/lambda$new$0 (Lnet/minecraft/client/model/geom/ModelPart;)Z +MD: net/minecraft/client/model/PlayerModel/m_170825_ (Lnet/minecraft/client/model/geom/builders/CubeDeformation;Z)Lnet/minecraft/client/model/geom/builders/MeshDefinition; net/minecraft/client/model/PlayerModel/createMesh (Lnet/minecraft/client/model/geom/builders/CubeDeformation;Z)Lnet/minecraft/client/model/geom/builders/MeshDefinition; +MD: net/minecraft/client/model/PlayerModel/m_233438_ (Lnet/minecraft/util/RandomSource;)Lnet/minecraft/client/model/geom/ModelPart; net/minecraft/client/model/PlayerModel/getRandomModelPart (Lnet/minecraft/util/RandomSource;)Lnet/minecraft/client/model/geom/ModelPart; +MD: net/minecraft/client/model/PlayerModel/m_5608_ ()Ljava/lang/Iterable; net/minecraft/client/model/PlayerModel/bodyParts ()Ljava/lang/Iterable; +MD: net/minecraft/client/model/PlayerModel/m_6002_ (Lnet/minecraft/world/entity/HumanoidArm;Lcom/mojang/blaze3d/vertex/PoseStack;)V net/minecraft/client/model/PlayerModel/translateToHand (Lnet/minecraft/world/entity/HumanoidArm;Lcom/mojang/blaze3d/vertex/PoseStack;)V +MD: net/minecraft/client/model/PlayerModel/m_6973_ (Lnet/minecraft/world/entity/Entity;FFFFF)V net/minecraft/client/model/PlayerModel/setupAnim (Lnet/minecraft/world/entity/Entity;FFFFF)V +MD: net/minecraft/client/model/PlayerModel/m_6973_ (Lnet/minecraft/world/entity/LivingEntity;FFFFF)V net/minecraft/client/model/PlayerModel/setupAnim (Lnet/minecraft/world/entity/LivingEntity;FFFFF)V +MD: net/minecraft/client/model/PlayerModel/m_8009_ (Z)V net/minecraft/client/model/PlayerModel/setAllVisible (Z)V +MD: net/minecraft/client/model/PolarBearModel/ (Lnet/minecraft/client/model/geom/ModelPart;)V net/minecraft/client/model/PolarBearModel/ (Lnet/minecraft/client/model/geom/ModelPart;)V +MD: net/minecraft/client/model/PolarBearModel/m_170830_ ()Lnet/minecraft/client/model/geom/builders/LayerDefinition; net/minecraft/client/model/PolarBearModel/createBodyLayer ()Lnet/minecraft/client/model/geom/builders/LayerDefinition; +MD: net/minecraft/client/model/PolarBearModel/m_6973_ (Lnet/minecraft/world/entity/Entity;FFFFF)V net/minecraft/client/model/PolarBearModel/setupAnim (Lnet/minecraft/world/entity/Entity;FFFFF)V +MD: net/minecraft/client/model/PolarBearModel/m_6973_ (Lnet/minecraft/world/entity/animal/PolarBear;FFFFF)V net/minecraft/client/model/PolarBearModel/setupAnim (Lnet/minecraft/world/entity/animal/PolarBear;FFFFF)V +MD: net/minecraft/client/model/PufferfishBigModel/ (Lnet/minecraft/client/model/geom/ModelPart;)V net/minecraft/client/model/PufferfishBigModel/ (Lnet/minecraft/client/model/geom/ModelPart;)V +MD: net/minecraft/client/model/PufferfishBigModel/m_142109_ ()Lnet/minecraft/client/model/geom/ModelPart; net/minecraft/client/model/PufferfishBigModel/root ()Lnet/minecraft/client/model/geom/ModelPart; +MD: net/minecraft/client/model/PufferfishBigModel/m_170836_ ()Lnet/minecraft/client/model/geom/builders/LayerDefinition; net/minecraft/client/model/PufferfishBigModel/createBodyLayer ()Lnet/minecraft/client/model/geom/builders/LayerDefinition; +MD: net/minecraft/client/model/PufferfishBigModel/m_6973_ (Lnet/minecraft/world/entity/Entity;FFFFF)V net/minecraft/client/model/PufferfishBigModel/setupAnim (Lnet/minecraft/world/entity/Entity;FFFFF)V +MD: net/minecraft/client/model/PufferfishMidModel/ (Lnet/minecraft/client/model/geom/ModelPart;)V net/minecraft/client/model/PufferfishMidModel/ (Lnet/minecraft/client/model/geom/ModelPart;)V +MD: net/minecraft/client/model/PufferfishMidModel/m_142109_ ()Lnet/minecraft/client/model/geom/ModelPart; net/minecraft/client/model/PufferfishMidModel/root ()Lnet/minecraft/client/model/geom/ModelPart; +MD: net/minecraft/client/model/PufferfishMidModel/m_170843_ ()Lnet/minecraft/client/model/geom/builders/LayerDefinition; net/minecraft/client/model/PufferfishMidModel/createBodyLayer ()Lnet/minecraft/client/model/geom/builders/LayerDefinition; +MD: net/minecraft/client/model/PufferfishMidModel/m_6973_ (Lnet/minecraft/world/entity/Entity;FFFFF)V net/minecraft/client/model/PufferfishMidModel/setupAnim (Lnet/minecraft/world/entity/Entity;FFFFF)V +MD: net/minecraft/client/model/PufferfishSmallModel/ (Lnet/minecraft/client/model/geom/ModelPart;)V net/minecraft/client/model/PufferfishSmallModel/ (Lnet/minecraft/client/model/geom/ModelPart;)V +MD: net/minecraft/client/model/PufferfishSmallModel/m_142109_ ()Lnet/minecraft/client/model/geom/ModelPart; net/minecraft/client/model/PufferfishSmallModel/root ()Lnet/minecraft/client/model/geom/ModelPart; +MD: net/minecraft/client/model/PufferfishSmallModel/m_170850_ ()Lnet/minecraft/client/model/geom/builders/LayerDefinition; net/minecraft/client/model/PufferfishSmallModel/createBodyLayer ()Lnet/minecraft/client/model/geom/builders/LayerDefinition; +MD: net/minecraft/client/model/PufferfishSmallModel/m_6973_ (Lnet/minecraft/world/entity/Entity;FFFFF)V net/minecraft/client/model/PufferfishSmallModel/setupAnim (Lnet/minecraft/world/entity/Entity;FFFFF)V +MD: net/minecraft/client/model/QuadrupedModel/ (Lnet/minecraft/client/model/geom/ModelPart;ZFFFFI)V net/minecraft/client/model/QuadrupedModel/ (Lnet/minecraft/client/model/geom/ModelPart;ZFFFFI)V +MD: net/minecraft/client/model/QuadrupedModel/m_170864_ (ILnet/minecraft/client/model/geom/builders/CubeDeformation;)Lnet/minecraft/client/model/geom/builders/MeshDefinition; net/minecraft/client/model/QuadrupedModel/createBodyMesh (ILnet/minecraft/client/model/geom/builders/CubeDeformation;)Lnet/minecraft/client/model/geom/builders/MeshDefinition; +MD: net/minecraft/client/model/QuadrupedModel/m_5607_ ()Ljava/lang/Iterable; net/minecraft/client/model/QuadrupedModel/headParts ()Ljava/lang/Iterable; +MD: net/minecraft/client/model/QuadrupedModel/m_5608_ ()Ljava/lang/Iterable; net/minecraft/client/model/QuadrupedModel/bodyParts ()Ljava/lang/Iterable; +MD: net/minecraft/client/model/QuadrupedModel/m_6973_ (Lnet/minecraft/world/entity/Entity;FFFFF)V net/minecraft/client/model/QuadrupedModel/setupAnim (Lnet/minecraft/world/entity/Entity;FFFFF)V +MD: net/minecraft/client/model/RabbitModel/ (Lnet/minecraft/client/model/geom/ModelPart;)V net/minecraft/client/model/RabbitModel/ (Lnet/minecraft/client/model/geom/ModelPart;)V +MD: net/minecraft/client/model/RabbitModel/m_103563_ (Lcom/mojang/blaze3d/vertex/PoseStack;Lcom/mojang/blaze3d/vertex/VertexConsumer;IIFFFFLnet/minecraft/client/model/geom/ModelPart;)V net/minecraft/client/model/RabbitModel/lambda$renderToBuffer$2 (Lcom/mojang/blaze3d/vertex/PoseStack;Lcom/mojang/blaze3d/vertex/VertexConsumer;IIFFFFLnet/minecraft/client/model/geom/ModelPart;)V +MD: net/minecraft/client/model/RabbitModel/m_103578_ (Lcom/mojang/blaze3d/vertex/PoseStack;Lcom/mojang/blaze3d/vertex/VertexConsumer;IIFFFFLnet/minecraft/client/model/geom/ModelPart;)V net/minecraft/client/model/RabbitModel/lambda$renderToBuffer$1 (Lcom/mojang/blaze3d/vertex/PoseStack;Lcom/mojang/blaze3d/vertex/VertexConsumer;IIFFFFLnet/minecraft/client/model/geom/ModelPart;)V +MD: net/minecraft/client/model/RabbitModel/m_103588_ (Lcom/mojang/blaze3d/vertex/PoseStack;Lcom/mojang/blaze3d/vertex/VertexConsumer;IIFFFFLnet/minecraft/client/model/geom/ModelPart;)V net/minecraft/client/model/RabbitModel/lambda$renderToBuffer$0 (Lcom/mojang/blaze3d/vertex/PoseStack;Lcom/mojang/blaze3d/vertex/VertexConsumer;IIFFFFLnet/minecraft/client/model/geom/ModelPart;)V +MD: net/minecraft/client/model/RabbitModel/m_170882_ ()Lnet/minecraft/client/model/geom/builders/LayerDefinition; net/minecraft/client/model/RabbitModel/createBodyLayer ()Lnet/minecraft/client/model/geom/builders/LayerDefinition; +MD: net/minecraft/client/model/RabbitModel/m_6839_ (Lnet/minecraft/world/entity/animal/Rabbit;FFF)V net/minecraft/client/model/RabbitModel/prepareMobModel (Lnet/minecraft/world/entity/animal/Rabbit;FFF)V +MD: net/minecraft/client/model/RabbitModel/m_6839_ (Lnet/minecraft/world/entity/Entity;FFF)V net/minecraft/client/model/RabbitModel/prepareMobModel (Lnet/minecraft/world/entity/Entity;FFF)V +MD: net/minecraft/client/model/RabbitModel/m_6973_ (Lnet/minecraft/world/entity/Entity;FFFFF)V net/minecraft/client/model/RabbitModel/setupAnim (Lnet/minecraft/world/entity/Entity;FFFFF)V +MD: net/minecraft/client/model/RabbitModel/m_6973_ (Lnet/minecraft/world/entity/animal/Rabbit;FFFFF)V net/minecraft/client/model/RabbitModel/setupAnim (Lnet/minecraft/world/entity/animal/Rabbit;FFFFF)V +MD: net/minecraft/client/model/RabbitModel/m_7695_ (Lcom/mojang/blaze3d/vertex/PoseStack;Lcom/mojang/blaze3d/vertex/VertexConsumer;IIFFFF)V net/minecraft/client/model/RabbitModel/renderToBuffer (Lcom/mojang/blaze3d/vertex/PoseStack;Lcom/mojang/blaze3d/vertex/VertexConsumer;IIFFFF)V +MD: net/minecraft/client/model/RaftModel/ (Lnet/minecraft/client/model/geom/ModelPart;)V net/minecraft/client/model/RaftModel/ (Lnet/minecraft/client/model/geom/ModelPart;)V +MD: net/minecraft/client/model/RaftModel/m_245164_ (Lnet/minecraft/client/model/geom/ModelPart;)Lcom/google/common/collect/ImmutableList$Builder; net/minecraft/client/model/RaftModel/createPartsBuilder (Lnet/minecraft/client/model/geom/ModelPart;)Lcom/google/common/collect/ImmutableList$Builder; +MD: net/minecraft/client/model/RaftModel/m_246042_ (Lnet/minecraft/client/model/geom/builders/PartDefinition;)V net/minecraft/client/model/RaftModel/createChildren (Lnet/minecraft/client/model/geom/builders/PartDefinition;)V +MD: net/minecraft/client/model/RaftModel/m_247198_ (Lnet/minecraft/world/entity/vehicle/Boat;ILnet/minecraft/client/model/geom/ModelPart;F)V net/minecraft/client/model/RaftModel/animatePaddle (Lnet/minecraft/world/entity/vehicle/Boat;ILnet/minecraft/client/model/geom/ModelPart;F)V +MD: net/minecraft/client/model/RaftModel/m_247376_ ()Lnet/minecraft/client/model/geom/builders/LayerDefinition; net/minecraft/client/model/RaftModel/createBodyModel ()Lnet/minecraft/client/model/geom/builders/LayerDefinition; +MD: net/minecraft/client/model/RaftModel/m_6195_ ()Lcom/google/common/collect/ImmutableList; net/minecraft/client/model/RaftModel/parts ()Lcom/google/common/collect/ImmutableList; +MD: net/minecraft/client/model/RaftModel/m_6195_ ()Ljava/lang/Iterable; net/minecraft/client/model/RaftModel/parts ()Ljava/lang/Iterable; +MD: net/minecraft/client/model/RaftModel/m_6973_ (Lnet/minecraft/world/entity/Entity;FFFFF)V net/minecraft/client/model/RaftModel/setupAnim (Lnet/minecraft/world/entity/Entity;FFFFF)V +MD: net/minecraft/client/model/RaftModel/m_6973_ (Lnet/minecraft/world/entity/vehicle/Boat;FFFFF)V net/minecraft/client/model/RaftModel/setupAnim (Lnet/minecraft/world/entity/vehicle/Boat;FFFFF)V +MD: net/minecraft/client/model/RavagerModel/ (Lnet/minecraft/client/model/geom/ModelPart;)V net/minecraft/client/model/RavagerModel/ (Lnet/minecraft/client/model/geom/ModelPart;)V +MD: net/minecraft/client/model/RavagerModel/m_142109_ ()Lnet/minecraft/client/model/geom/ModelPart; net/minecraft/client/model/RavagerModel/root ()Lnet/minecraft/client/model/geom/ModelPart; +MD: net/minecraft/client/model/RavagerModel/m_170890_ ()Lnet/minecraft/client/model/geom/builders/LayerDefinition; net/minecraft/client/model/RavagerModel/createBodyLayer ()Lnet/minecraft/client/model/geom/builders/LayerDefinition; +MD: net/minecraft/client/model/RavagerModel/m_6839_ (Lnet/minecraft/world/entity/Entity;FFF)V net/minecraft/client/model/RavagerModel/prepareMobModel (Lnet/minecraft/world/entity/Entity;FFF)V +MD: net/minecraft/client/model/RavagerModel/m_6839_ (Lnet/minecraft/world/entity/monster/Ravager;FFF)V net/minecraft/client/model/RavagerModel/prepareMobModel (Lnet/minecraft/world/entity/monster/Ravager;FFF)V +MD: net/minecraft/client/model/RavagerModel/m_6973_ (Lnet/minecraft/world/entity/Entity;FFFFF)V net/minecraft/client/model/RavagerModel/setupAnim (Lnet/minecraft/world/entity/Entity;FFFFF)V +MD: net/minecraft/client/model/RavagerModel/m_6973_ (Lnet/minecraft/world/entity/monster/Ravager;FFFFF)V net/minecraft/client/model/RavagerModel/setupAnim (Lnet/minecraft/world/entity/monster/Ravager;FFFFF)V +MD: net/minecraft/client/model/SalmonModel/ (Lnet/minecraft/client/model/geom/ModelPart;)V net/minecraft/client/model/SalmonModel/ (Lnet/minecraft/client/model/geom/ModelPart;)V +MD: net/minecraft/client/model/SalmonModel/m_142109_ ()Lnet/minecraft/client/model/geom/ModelPart; net/minecraft/client/model/SalmonModel/root ()Lnet/minecraft/client/model/geom/ModelPart; +MD: net/minecraft/client/model/SalmonModel/m_170897_ ()Lnet/minecraft/client/model/geom/builders/LayerDefinition; net/minecraft/client/model/SalmonModel/createBodyLayer ()Lnet/minecraft/client/model/geom/builders/LayerDefinition; +MD: net/minecraft/client/model/SalmonModel/m_6973_ (Lnet/minecraft/world/entity/Entity;FFFFF)V net/minecraft/client/model/SalmonModel/setupAnim (Lnet/minecraft/world/entity/Entity;FFFFF)V +MD: net/minecraft/client/model/SheepFurModel/ (Lnet/minecraft/client/model/geom/ModelPart;)V net/minecraft/client/model/SheepFurModel/ (Lnet/minecraft/client/model/geom/ModelPart;)V +MD: net/minecraft/client/model/SheepFurModel/m_170901_ ()Lnet/minecraft/client/model/geom/builders/LayerDefinition; net/minecraft/client/model/SheepFurModel/createFurLayer ()Lnet/minecraft/client/model/geom/builders/LayerDefinition; +MD: net/minecraft/client/model/SheepFurModel/m_6839_ (Lnet/minecraft/world/entity/Entity;FFF)V net/minecraft/client/model/SheepFurModel/prepareMobModel (Lnet/minecraft/world/entity/Entity;FFF)V +MD: net/minecraft/client/model/SheepFurModel/m_6839_ (Lnet/minecraft/world/entity/animal/Sheep;FFF)V net/minecraft/client/model/SheepFurModel/prepareMobModel (Lnet/minecraft/world/entity/animal/Sheep;FFF)V +MD: net/minecraft/client/model/SheepFurModel/m_6973_ (Lnet/minecraft/world/entity/Entity;FFFFF)V net/minecraft/client/model/SheepFurModel/setupAnim (Lnet/minecraft/world/entity/Entity;FFFFF)V +MD: net/minecraft/client/model/SheepFurModel/m_6973_ (Lnet/minecraft/world/entity/animal/Sheep;FFFFF)V net/minecraft/client/model/SheepFurModel/setupAnim (Lnet/minecraft/world/entity/animal/Sheep;FFFFF)V +MD: net/minecraft/client/model/SheepModel/ (Lnet/minecraft/client/model/geom/ModelPart;)V net/minecraft/client/model/SheepModel/ (Lnet/minecraft/client/model/geom/ModelPart;)V +MD: net/minecraft/client/model/SheepModel/m_170904_ ()Lnet/minecraft/client/model/geom/builders/LayerDefinition; net/minecraft/client/model/SheepModel/createBodyLayer ()Lnet/minecraft/client/model/geom/builders/LayerDefinition; +MD: net/minecraft/client/model/SheepModel/m_6839_ (Lnet/minecraft/world/entity/Entity;FFF)V net/minecraft/client/model/SheepModel/prepareMobModel (Lnet/minecraft/world/entity/Entity;FFF)V +MD: net/minecraft/client/model/SheepModel/m_6839_ (Lnet/minecraft/world/entity/animal/Sheep;FFF)V net/minecraft/client/model/SheepModel/prepareMobModel (Lnet/minecraft/world/entity/animal/Sheep;FFF)V +MD: net/minecraft/client/model/SheepModel/m_6973_ (Lnet/minecraft/world/entity/Entity;FFFFF)V net/minecraft/client/model/SheepModel/setupAnim (Lnet/minecraft/world/entity/Entity;FFFFF)V +MD: net/minecraft/client/model/SheepModel/m_6973_ (Lnet/minecraft/world/entity/animal/Sheep;FFFFF)V net/minecraft/client/model/SheepModel/setupAnim (Lnet/minecraft/world/entity/animal/Sheep;FFFFF)V +MD: net/minecraft/client/model/ShieldModel/ (Lnet/minecraft/client/model/geom/ModelPart;)V net/minecraft/client/model/ShieldModel/ (Lnet/minecraft/client/model/geom/ModelPart;)V +MD: net/minecraft/client/model/ShieldModel/m_103701_ ()Lnet/minecraft/client/model/geom/ModelPart; net/minecraft/client/model/ShieldModel/plate ()Lnet/minecraft/client/model/geom/ModelPart; +MD: net/minecraft/client/model/ShieldModel/m_103711_ ()Lnet/minecraft/client/model/geom/ModelPart; net/minecraft/client/model/ShieldModel/handle ()Lnet/minecraft/client/model/geom/ModelPart; +MD: net/minecraft/client/model/ShieldModel/m_170912_ ()Lnet/minecraft/client/model/geom/builders/LayerDefinition; net/minecraft/client/model/ShieldModel/createLayer ()Lnet/minecraft/client/model/geom/builders/LayerDefinition; +MD: net/minecraft/client/model/ShieldModel/m_7695_ (Lcom/mojang/blaze3d/vertex/PoseStack;Lcom/mojang/blaze3d/vertex/VertexConsumer;IIFFFF)V net/minecraft/client/model/ShieldModel/renderToBuffer (Lcom/mojang/blaze3d/vertex/PoseStack;Lcom/mojang/blaze3d/vertex/VertexConsumer;IIFFFF)V +MD: net/minecraft/client/model/ShulkerBulletModel/ (Lnet/minecraft/client/model/geom/ModelPart;)V net/minecraft/client/model/ShulkerBulletModel/ (Lnet/minecraft/client/model/geom/ModelPart;)V +MD: net/minecraft/client/model/ShulkerBulletModel/m_142109_ ()Lnet/minecraft/client/model/geom/ModelPart; net/minecraft/client/model/ShulkerBulletModel/root ()Lnet/minecraft/client/model/geom/ModelPart; +MD: net/minecraft/client/model/ShulkerBulletModel/m_170917_ ()Lnet/minecraft/client/model/geom/builders/LayerDefinition; net/minecraft/client/model/ShulkerBulletModel/createBodyLayer ()Lnet/minecraft/client/model/geom/builders/LayerDefinition; +MD: net/minecraft/client/model/ShulkerBulletModel/m_6973_ (Lnet/minecraft/world/entity/Entity;FFFFF)V net/minecraft/client/model/ShulkerBulletModel/setupAnim (Lnet/minecraft/world/entity/Entity;FFFFF)V +MD: net/minecraft/client/model/ShulkerModel/ (Lnet/minecraft/client/model/geom/ModelPart;)V net/minecraft/client/model/ShulkerModel/ (Lnet/minecraft/client/model/geom/ModelPart;)V +MD: net/minecraft/client/model/ShulkerModel/m_103742_ ()Lnet/minecraft/client/model/geom/ModelPart; net/minecraft/client/model/ShulkerModel/getLid ()Lnet/minecraft/client/model/geom/ModelPart; +MD: net/minecraft/client/model/ShulkerModel/m_103743_ ()Lnet/minecraft/client/model/geom/ModelPart; net/minecraft/client/model/ShulkerModel/getHead ()Lnet/minecraft/client/model/geom/ModelPart; +MD: net/minecraft/client/model/ShulkerModel/m_170923_ ()Lnet/minecraft/client/model/geom/builders/LayerDefinition; net/minecraft/client/model/ShulkerModel/createBodyLayer ()Lnet/minecraft/client/model/geom/builders/LayerDefinition; +MD: net/minecraft/client/model/ShulkerModel/m_6195_ ()Ljava/lang/Iterable; net/minecraft/client/model/ShulkerModel/parts ()Ljava/lang/Iterable; +MD: net/minecraft/client/model/ShulkerModel/m_6973_ (Lnet/minecraft/world/entity/Entity;FFFFF)V net/minecraft/client/model/ShulkerModel/setupAnim (Lnet/minecraft/world/entity/Entity;FFFFF)V +MD: net/minecraft/client/model/ShulkerModel/m_6973_ (Lnet/minecraft/world/entity/monster/Shulker;FFFFF)V net/minecraft/client/model/ShulkerModel/setupAnim (Lnet/minecraft/world/entity/monster/Shulker;FFFFF)V +MD: net/minecraft/client/model/SilverfishModel/ ()V net/minecraft/client/model/SilverfishModel/ ()V +MD: net/minecraft/client/model/SilverfishModel/ (Lnet/minecraft/client/model/geom/ModelPart;)V net/minecraft/client/model/SilverfishModel/ (Lnet/minecraft/client/model/geom/ModelPart;)V +MD: net/minecraft/client/model/SilverfishModel/m_142109_ ()Lnet/minecraft/client/model/geom/ModelPart; net/minecraft/client/model/SilverfishModel/root ()Lnet/minecraft/client/model/geom/ModelPart; +MD: net/minecraft/client/model/SilverfishModel/m_170928_ ()Lnet/minecraft/client/model/geom/builders/LayerDefinition; net/minecraft/client/model/SilverfishModel/createBodyLayer ()Lnet/minecraft/client/model/geom/builders/LayerDefinition; +MD: net/minecraft/client/model/SilverfishModel/m_170929_ (I)Ljava/lang/String; net/minecraft/client/model/SilverfishModel/getLayerName (I)Ljava/lang/String; +MD: net/minecraft/client/model/SilverfishModel/m_170931_ (Lnet/minecraft/client/model/geom/ModelPart;I)Lnet/minecraft/client/model/geom/ModelPart; net/minecraft/client/model/SilverfishModel/lambda$new$1 (Lnet/minecraft/client/model/geom/ModelPart;I)Lnet/minecraft/client/model/geom/ModelPart; +MD: net/minecraft/client/model/SilverfishModel/m_170935_ (I)Ljava/lang/String; net/minecraft/client/model/SilverfishModel/getSegmentName (I)Ljava/lang/String; +MD: net/minecraft/client/model/SilverfishModel/m_170937_ (Lnet/minecraft/client/model/geom/ModelPart;I)Lnet/minecraft/client/model/geom/ModelPart; net/minecraft/client/model/SilverfishModel/lambda$new$0 (Lnet/minecraft/client/model/geom/ModelPart;I)Lnet/minecraft/client/model/geom/ModelPart; +MD: net/minecraft/client/model/SilverfishModel/m_6973_ (Lnet/minecraft/world/entity/Entity;FFFFF)V net/minecraft/client/model/SilverfishModel/setupAnim (Lnet/minecraft/world/entity/Entity;FFFFF)V +MD: net/minecraft/client/model/SkeletonModel/ (Lnet/minecraft/client/model/geom/ModelPart;)V net/minecraft/client/model/SkeletonModel/ (Lnet/minecraft/client/model/geom/ModelPart;)V +MD: net/minecraft/client/model/SkeletonModel/m_170942_ ()Lnet/minecraft/client/model/geom/builders/LayerDefinition; net/minecraft/client/model/SkeletonModel/createBodyLayer ()Lnet/minecraft/client/model/geom/builders/LayerDefinition; +MD: net/minecraft/client/model/SkeletonModel/m_6002_ (Lnet/minecraft/world/entity/HumanoidArm;Lcom/mojang/blaze3d/vertex/PoseStack;)V net/minecraft/client/model/SkeletonModel/translateToHand (Lnet/minecraft/world/entity/HumanoidArm;Lcom/mojang/blaze3d/vertex/PoseStack;)V +MD: net/minecraft/client/model/SkeletonModel/m_6839_ (Lnet/minecraft/world/entity/Entity;FFF)V net/minecraft/client/model/SkeletonModel/prepareMobModel (Lnet/minecraft/world/entity/Entity;FFF)V +MD: net/minecraft/client/model/SkeletonModel/m_6839_ (Lnet/minecraft/world/entity/Mob;FFF)V net/minecraft/client/model/SkeletonModel/prepareMobModel (Lnet/minecraft/world/entity/Mob;FFF)V +MD: net/minecraft/client/model/SkeletonModel/m_6839_ (Lnet/minecraft/world/entity/LivingEntity;FFF)V net/minecraft/client/model/SkeletonModel/prepareMobModel (Lnet/minecraft/world/entity/LivingEntity;FFF)V +MD: net/minecraft/client/model/SkeletonModel/m_6973_ (Lnet/minecraft/world/entity/Entity;FFFFF)V net/minecraft/client/model/SkeletonModel/setupAnim (Lnet/minecraft/world/entity/Entity;FFFFF)V +MD: net/minecraft/client/model/SkeletonModel/m_6973_ (Lnet/minecraft/world/entity/LivingEntity;FFFFF)V net/minecraft/client/model/SkeletonModel/setupAnim (Lnet/minecraft/world/entity/LivingEntity;FFFFF)V +MD: net/minecraft/client/model/SkeletonModel/m_6973_ (Lnet/minecraft/world/entity/Mob;FFFFF)V net/minecraft/client/model/SkeletonModel/setupAnim (Lnet/minecraft/world/entity/Mob;FFFFF)V +MD: net/minecraft/client/model/SkullModel/ (Lnet/minecraft/client/model/geom/ModelPart;)V net/minecraft/client/model/SkullModel/ (Lnet/minecraft/client/model/geom/ModelPart;)V +MD: net/minecraft/client/model/SkullModel/m_170946_ ()Lnet/minecraft/client/model/geom/builders/MeshDefinition; net/minecraft/client/model/SkullModel/createHeadModel ()Lnet/minecraft/client/model/geom/builders/MeshDefinition; +MD: net/minecraft/client/model/SkullModel/m_170947_ ()Lnet/minecraft/client/model/geom/builders/LayerDefinition; net/minecraft/client/model/SkullModel/createHumanoidHeadLayer ()Lnet/minecraft/client/model/geom/builders/LayerDefinition; +MD: net/minecraft/client/model/SkullModel/m_170948_ ()Lnet/minecraft/client/model/geom/builders/LayerDefinition; net/minecraft/client/model/SkullModel/createMobHeadLayer ()Lnet/minecraft/client/model/geom/builders/LayerDefinition; +MD: net/minecraft/client/model/SkullModel/m_6251_ (FFF)V net/minecraft/client/model/SkullModel/setupAnim (FFF)V +MD: net/minecraft/client/model/SkullModel/m_7695_ (Lcom/mojang/blaze3d/vertex/PoseStack;Lcom/mojang/blaze3d/vertex/VertexConsumer;IIFFFF)V net/minecraft/client/model/SkullModel/renderToBuffer (Lcom/mojang/blaze3d/vertex/PoseStack;Lcom/mojang/blaze3d/vertex/VertexConsumer;IIFFFF)V +MD: net/minecraft/client/model/SkullModelBase/ ()V net/minecraft/client/model/SkullModelBase/ ()V +MD: net/minecraft/client/model/SkullModelBase/m_6251_ (FFF)V net/minecraft/client/model/SkullModelBase/setupAnim (FFF)V +MD: net/minecraft/client/model/SlimeModel/ (Lnet/minecraft/client/model/geom/ModelPart;)V net/minecraft/client/model/SlimeModel/ (Lnet/minecraft/client/model/geom/ModelPart;)V +MD: net/minecraft/client/model/SlimeModel/m_142109_ ()Lnet/minecraft/client/model/geom/ModelPart; net/minecraft/client/model/SlimeModel/root ()Lnet/minecraft/client/model/geom/ModelPart; +MD: net/minecraft/client/model/SlimeModel/m_170956_ ()Lnet/minecraft/client/model/geom/builders/LayerDefinition; net/minecraft/client/model/SlimeModel/createOuterBodyLayer ()Lnet/minecraft/client/model/geom/builders/LayerDefinition; +MD: net/minecraft/client/model/SlimeModel/m_170958_ ()Lnet/minecraft/client/model/geom/builders/LayerDefinition; net/minecraft/client/model/SlimeModel/createInnerBodyLayer ()Lnet/minecraft/client/model/geom/builders/LayerDefinition; +MD: net/minecraft/client/model/SlimeModel/m_6973_ (Lnet/minecraft/world/entity/Entity;FFFFF)V net/minecraft/client/model/SlimeModel/setupAnim (Lnet/minecraft/world/entity/Entity;FFFFF)V +MD: net/minecraft/client/model/SnifferModel/ (Lnet/minecraft/client/model/geom/ModelPart;)V net/minecraft/client/model/SnifferModel/ (Lnet/minecraft/client/model/geom/ModelPart;)V +MD: net/minecraft/client/model/SnifferModel/m_142109_ ()Lnet/minecraft/client/model/geom/ModelPart; net/minecraft/client/model/SnifferModel/root ()Lnet/minecraft/client/model/geom/ModelPart; +MD: net/minecraft/client/model/SnifferModel/m_271896_ ()Lnet/minecraft/client/model/geom/builders/LayerDefinition; net/minecraft/client/model/SnifferModel/createBodyLayer ()Lnet/minecraft/client/model/geom/builders/LayerDefinition; +MD: net/minecraft/client/model/SnifferModel/m_6973_ (Lnet/minecraft/world/entity/animal/sniffer/Sniffer;FFFFF)V net/minecraft/client/model/SnifferModel/setupAnim (Lnet/minecraft/world/entity/animal/sniffer/Sniffer;FFFFF)V +MD: net/minecraft/client/model/SnifferModel/m_6973_ (Lnet/minecraft/world/entity/Entity;FFFFF)V net/minecraft/client/model/SnifferModel/setupAnim (Lnet/minecraft/world/entity/Entity;FFFFF)V +MD: net/minecraft/client/model/SnowGolemModel/ (Lnet/minecraft/client/model/geom/ModelPart;)V net/minecraft/client/model/SnowGolemModel/ (Lnet/minecraft/client/model/geom/ModelPart;)V +MD: net/minecraft/client/model/SnowGolemModel/m_103851_ ()Lnet/minecraft/client/model/geom/ModelPart; net/minecraft/client/model/SnowGolemModel/getHead ()Lnet/minecraft/client/model/geom/ModelPart; +MD: net/minecraft/client/model/SnowGolemModel/m_142109_ ()Lnet/minecraft/client/model/geom/ModelPart; net/minecraft/client/model/SnowGolemModel/root ()Lnet/minecraft/client/model/geom/ModelPart; +MD: net/minecraft/client/model/SnowGolemModel/m_170966_ ()Lnet/minecraft/client/model/geom/builders/LayerDefinition; net/minecraft/client/model/SnowGolemModel/createBodyLayer ()Lnet/minecraft/client/model/geom/builders/LayerDefinition; +MD: net/minecraft/client/model/SnowGolemModel/m_6973_ (Lnet/minecraft/world/entity/Entity;FFFFF)V net/minecraft/client/model/SnowGolemModel/setupAnim (Lnet/minecraft/world/entity/Entity;FFFFF)V +MD: net/minecraft/client/model/SpiderModel/ (Lnet/minecraft/client/model/geom/ModelPart;)V net/minecraft/client/model/SpiderModel/ (Lnet/minecraft/client/model/geom/ModelPart;)V +MD: net/minecraft/client/model/SpiderModel/m_142109_ ()Lnet/minecraft/client/model/geom/ModelPart; net/minecraft/client/model/SpiderModel/root ()Lnet/minecraft/client/model/geom/ModelPart; +MD: net/minecraft/client/model/SpiderModel/m_170985_ ()Lnet/minecraft/client/model/geom/builders/LayerDefinition; net/minecraft/client/model/SpiderModel/createSpiderBodyLayer ()Lnet/minecraft/client/model/geom/builders/LayerDefinition; +MD: net/minecraft/client/model/SpiderModel/m_6973_ (Lnet/minecraft/world/entity/Entity;FFFFF)V net/minecraft/client/model/SpiderModel/setupAnim (Lnet/minecraft/world/entity/Entity;FFFFF)V +MD: net/minecraft/client/model/SquidModel/ (Lnet/minecraft/client/model/geom/ModelPart;)V net/minecraft/client/model/SquidModel/ (Lnet/minecraft/client/model/geom/ModelPart;)V +MD: net/minecraft/client/model/SquidModel/m_142109_ ()Lnet/minecraft/client/model/geom/ModelPart; net/minecraft/client/model/SquidModel/root ()Lnet/minecraft/client/model/geom/ModelPart; +MD: net/minecraft/client/model/SquidModel/m_170990_ ()Lnet/minecraft/client/model/geom/builders/LayerDefinition; net/minecraft/client/model/SquidModel/createBodyLayer ()Lnet/minecraft/client/model/geom/builders/LayerDefinition; +MD: net/minecraft/client/model/SquidModel/m_170991_ (I)Ljava/lang/String; net/minecraft/client/model/SquidModel/createTentacleName (I)Ljava/lang/String; +MD: net/minecraft/client/model/SquidModel/m_170993_ (Lnet/minecraft/client/model/geom/ModelPart;I)Lnet/minecraft/client/model/geom/ModelPart; net/minecraft/client/model/SquidModel/lambda$new$0 (Lnet/minecraft/client/model/geom/ModelPart;I)Lnet/minecraft/client/model/geom/ModelPart; +MD: net/minecraft/client/model/SquidModel/m_6973_ (Lnet/minecraft/world/entity/Entity;FFFFF)V net/minecraft/client/model/SquidModel/setupAnim (Lnet/minecraft/world/entity/Entity;FFFFF)V +MD: net/minecraft/client/model/StriderModel/ (Lnet/minecraft/client/model/geom/ModelPart;)V net/minecraft/client/model/StriderModel/ (Lnet/minecraft/client/model/geom/ModelPart;)V +MD: net/minecraft/client/model/StriderModel/m_142109_ ()Lnet/minecraft/client/model/geom/ModelPart; net/minecraft/client/model/StriderModel/root ()Lnet/minecraft/client/model/geom/ModelPart; +MD: net/minecraft/client/model/StriderModel/m_171012_ ()Lnet/minecraft/client/model/geom/builders/LayerDefinition; net/minecraft/client/model/StriderModel/createBodyLayer ()Lnet/minecraft/client/model/geom/builders/LayerDefinition; +MD: net/minecraft/client/model/StriderModel/m_6973_ (Lnet/minecraft/world/entity/Entity;FFFFF)V net/minecraft/client/model/StriderModel/setupAnim (Lnet/minecraft/world/entity/Entity;FFFFF)V +MD: net/minecraft/client/model/StriderModel/m_6973_ (Lnet/minecraft/world/entity/monster/Strider;FFFFF)V net/minecraft/client/model/StriderModel/setupAnim (Lnet/minecraft/world/entity/monster/Strider;FFFFF)V +MD: net/minecraft/client/model/TadpoleModel/ (Lnet/minecraft/client/model/geom/ModelPart;)V net/minecraft/client/model/TadpoleModel/ (Lnet/minecraft/client/model/geom/ModelPart;)V +MD: net/minecraft/client/model/TadpoleModel/m_233460_ ()Lnet/minecraft/client/model/geom/builders/LayerDefinition; net/minecraft/client/model/TadpoleModel/createBodyLayer ()Lnet/minecraft/client/model/geom/builders/LayerDefinition; +MD: net/minecraft/client/model/TadpoleModel/m_5607_ ()Ljava/lang/Iterable; net/minecraft/client/model/TadpoleModel/headParts ()Ljava/lang/Iterable; +MD: net/minecraft/client/model/TadpoleModel/m_5608_ ()Ljava/lang/Iterable; net/minecraft/client/model/TadpoleModel/bodyParts ()Ljava/lang/Iterable; +MD: net/minecraft/client/model/TadpoleModel/m_6973_ (Lnet/minecraft/world/entity/animal/frog/Tadpole;FFFFF)V net/minecraft/client/model/TadpoleModel/setupAnim (Lnet/minecraft/world/entity/animal/frog/Tadpole;FFFFF)V +MD: net/minecraft/client/model/TadpoleModel/m_6973_ (Lnet/minecraft/world/entity/Entity;FFFFF)V net/minecraft/client/model/TadpoleModel/setupAnim (Lnet/minecraft/world/entity/Entity;FFFFF)V +MD: net/minecraft/client/model/TridentModel/ ()V net/minecraft/client/model/TridentModel/ ()V +MD: net/minecraft/client/model/TridentModel/ (Lnet/minecraft/client/model/geom/ModelPart;)V net/minecraft/client/model/TridentModel/ (Lnet/minecraft/client/model/geom/ModelPart;)V +MD: net/minecraft/client/model/TridentModel/m_171017_ ()Lnet/minecraft/client/model/geom/builders/LayerDefinition; net/minecraft/client/model/TridentModel/createLayer ()Lnet/minecraft/client/model/geom/builders/LayerDefinition; +MD: net/minecraft/client/model/TridentModel/m_7695_ (Lcom/mojang/blaze3d/vertex/PoseStack;Lcom/mojang/blaze3d/vertex/VertexConsumer;IIFFFF)V net/minecraft/client/model/TridentModel/renderToBuffer (Lcom/mojang/blaze3d/vertex/PoseStack;Lcom/mojang/blaze3d/vertex/VertexConsumer;IIFFFF)V +MD: net/minecraft/client/model/TropicalFishModelA/ (Lnet/minecraft/client/model/geom/ModelPart;)V net/minecraft/client/model/TropicalFishModelA/ (Lnet/minecraft/client/model/geom/ModelPart;)V +MD: net/minecraft/client/model/TropicalFishModelA/m_142109_ ()Lnet/minecraft/client/model/geom/ModelPart; net/minecraft/client/model/TropicalFishModelA/root ()Lnet/minecraft/client/model/geom/ModelPart; +MD: net/minecraft/client/model/TropicalFishModelA/m_171021_ (Lnet/minecraft/client/model/geom/builders/CubeDeformation;)Lnet/minecraft/client/model/geom/builders/LayerDefinition; net/minecraft/client/model/TropicalFishModelA/createBodyLayer (Lnet/minecraft/client/model/geom/builders/CubeDeformation;)Lnet/minecraft/client/model/geom/builders/LayerDefinition; +MD: net/minecraft/client/model/TropicalFishModelA/m_6973_ (Lnet/minecraft/world/entity/Entity;FFFFF)V net/minecraft/client/model/TropicalFishModelA/setupAnim (Lnet/minecraft/world/entity/Entity;FFFFF)V +MD: net/minecraft/client/model/TropicalFishModelB/ (Lnet/minecraft/client/model/geom/ModelPart;)V net/minecraft/client/model/TropicalFishModelB/ (Lnet/minecraft/client/model/geom/ModelPart;)V +MD: net/minecraft/client/model/TropicalFishModelB/m_142109_ ()Lnet/minecraft/client/model/geom/ModelPart; net/minecraft/client/model/TropicalFishModelB/root ()Lnet/minecraft/client/model/geom/ModelPart; +MD: net/minecraft/client/model/TropicalFishModelB/m_171037_ (Lnet/minecraft/client/model/geom/builders/CubeDeformation;)Lnet/minecraft/client/model/geom/builders/LayerDefinition; net/minecraft/client/model/TropicalFishModelB/createBodyLayer (Lnet/minecraft/client/model/geom/builders/CubeDeformation;)Lnet/minecraft/client/model/geom/builders/LayerDefinition; +MD: net/minecraft/client/model/TropicalFishModelB/m_6973_ (Lnet/minecraft/world/entity/Entity;FFFFF)V net/minecraft/client/model/TropicalFishModelB/setupAnim (Lnet/minecraft/world/entity/Entity;FFFFF)V +MD: net/minecraft/client/model/TurtleModel/ (Lnet/minecraft/client/model/geom/ModelPart;)V net/minecraft/client/model/TurtleModel/ (Lnet/minecraft/client/model/geom/ModelPart;)V +MD: net/minecraft/client/model/TurtleModel/m_171043_ ()Lnet/minecraft/client/model/geom/builders/LayerDefinition; net/minecraft/client/model/TurtleModel/createBodyLayer ()Lnet/minecraft/client/model/geom/builders/LayerDefinition; +MD: net/minecraft/client/model/TurtleModel/m_5608_ ()Ljava/lang/Iterable; net/minecraft/client/model/TurtleModel/bodyParts ()Ljava/lang/Iterable; +MD: net/minecraft/client/model/TurtleModel/m_6973_ (Lnet/minecraft/world/entity/Entity;FFFFF)V net/minecraft/client/model/TurtleModel/setupAnim (Lnet/minecraft/world/entity/Entity;FFFFF)V +MD: net/minecraft/client/model/TurtleModel/m_6973_ (Lnet/minecraft/world/entity/animal/Turtle;FFFFF)V net/minecraft/client/model/TurtleModel/setupAnim (Lnet/minecraft/world/entity/animal/Turtle;FFFFF)V +MD: net/minecraft/client/model/TurtleModel/m_7695_ (Lcom/mojang/blaze3d/vertex/PoseStack;Lcom/mojang/blaze3d/vertex/VertexConsumer;IIFFFF)V net/minecraft/client/model/TurtleModel/renderToBuffer (Lcom/mojang/blaze3d/vertex/PoseStack;Lcom/mojang/blaze3d/vertex/VertexConsumer;IIFFFF)V +MD: net/minecraft/client/model/VexModel/ (Lnet/minecraft/client/model/geom/ModelPart;)V net/minecraft/client/model/VexModel/ (Lnet/minecraft/client/model/geom/ModelPart;)V +MD: net/minecraft/client/model/VexModel/m_142109_ ()Lnet/minecraft/client/model/geom/ModelPart; net/minecraft/client/model/VexModel/root ()Lnet/minecraft/client/model/geom/ModelPart; +MD: net/minecraft/client/model/VexModel/m_171046_ ()Lnet/minecraft/client/model/geom/builders/LayerDefinition; net/minecraft/client/model/VexModel/createBodyLayer ()Lnet/minecraft/client/model/geom/builders/LayerDefinition; +MD: net/minecraft/client/model/VexModel/m_263220_ (Lcom/mojang/blaze3d/vertex/PoseStack;Z)V net/minecraft/client/model/VexModel/offsetStackPosition (Lcom/mojang/blaze3d/vertex/PoseStack;Z)V +MD: net/minecraft/client/model/VexModel/m_264076_ (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/item/ItemStack;F)V net/minecraft/client/model/VexModel/setArmsCharging (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/item/ItemStack;F)V +MD: net/minecraft/client/model/VexModel/m_6002_ (Lnet/minecraft/world/entity/HumanoidArm;Lcom/mojang/blaze3d/vertex/PoseStack;)V net/minecraft/client/model/VexModel/translateToHand (Lnet/minecraft/world/entity/HumanoidArm;Lcom/mojang/blaze3d/vertex/PoseStack;)V +MD: net/minecraft/client/model/VexModel/m_6973_ (Lnet/minecraft/world/entity/Entity;FFFFF)V net/minecraft/client/model/VexModel/setupAnim (Lnet/minecraft/world/entity/Entity;FFFFF)V +MD: net/minecraft/client/model/VexModel/m_6973_ (Lnet/minecraft/world/entity/monster/Vex;FFFFF)V net/minecraft/client/model/VexModel/setupAnim (Lnet/minecraft/world/entity/monster/Vex;FFFFF)V +MD: net/minecraft/client/model/VillagerHeadModel/m_7491_ (Z)V net/minecraft/client/model/VillagerHeadModel/hatVisible (Z)V +MD: net/minecraft/client/model/VillagerModel/ (Lnet/minecraft/client/model/geom/ModelPart;)V net/minecraft/client/model/VillagerModel/ (Lnet/minecraft/client/model/geom/ModelPart;)V +MD: net/minecraft/client/model/VillagerModel/m_142109_ ()Lnet/minecraft/client/model/geom/ModelPart; net/minecraft/client/model/VillagerModel/root ()Lnet/minecraft/client/model/geom/ModelPart; +MD: net/minecraft/client/model/VillagerModel/m_171052_ ()Lnet/minecraft/client/model/geom/builders/MeshDefinition; net/minecraft/client/model/VillagerModel/createBodyModel ()Lnet/minecraft/client/model/geom/builders/MeshDefinition; +MD: net/minecraft/client/model/VillagerModel/m_5585_ ()Lnet/minecraft/client/model/geom/ModelPart; net/minecraft/client/model/VillagerModel/getHead ()Lnet/minecraft/client/model/geom/ModelPart; +MD: net/minecraft/client/model/VillagerModel/m_6973_ (Lnet/minecraft/world/entity/Entity;FFFFF)V net/minecraft/client/model/VillagerModel/setupAnim (Lnet/minecraft/world/entity/Entity;FFFFF)V +MD: net/minecraft/client/model/VillagerModel/m_7491_ (Z)V net/minecraft/client/model/VillagerModel/hatVisible (Z)V +MD: net/minecraft/client/model/WardenModel/ (Lnet/minecraft/client/model/geom/ModelPart;)V net/minecraft/client/model/WardenModel/ (Lnet/minecraft/client/model/geom/ModelPart;)V +MD: net/minecraft/client/model/WardenModel/m_142109_ ()Lnet/minecraft/client/model/geom/ModelPart; net/minecraft/client/model/WardenModel/root ()Lnet/minecraft/client/model/geom/ModelPart; +MD: net/minecraft/client/model/WardenModel/m_233514_ (F)V net/minecraft/client/model/WardenModel/animateIdlePose (F)V +MD: net/minecraft/client/model/WardenModel/m_233516_ (FF)V net/minecraft/client/model/WardenModel/animateHeadLookTarget (FF)V +MD: net/minecraft/client/model/WardenModel/m_233526_ (Lnet/minecraft/world/entity/monster/warden/Warden;FF)V net/minecraft/client/model/WardenModel/animateTendrils (Lnet/minecraft/world/entity/monster/warden/Warden;FF)V +MD: net/minecraft/client/model/WardenModel/m_233537_ ()Lnet/minecraft/client/model/geom/builders/LayerDefinition; net/minecraft/client/model/WardenModel/createBodyLayer ()Lnet/minecraft/client/model/geom/builders/LayerDefinition; +MD: net/minecraft/client/model/WardenModel/m_233538_ (FF)V net/minecraft/client/model/WardenModel/animateWalk (FF)V +MD: net/minecraft/client/model/WardenModel/m_233541_ ()Ljava/util/List; net/minecraft/client/model/WardenModel/getTendrilsLayerModelParts ()Ljava/util/List; +MD: net/minecraft/client/model/WardenModel/m_233542_ ()Ljava/util/List; net/minecraft/client/model/WardenModel/getHeartLayerModelParts ()Ljava/util/List; +MD: net/minecraft/client/model/WardenModel/m_233543_ ()Ljava/util/List; net/minecraft/client/model/WardenModel/getBioluminescentLayerModelParts ()Ljava/util/List; +MD: net/minecraft/client/model/WardenModel/m_233544_ ()Ljava/util/List; net/minecraft/client/model/WardenModel/getPulsatingSpotsLayerModelParts ()Ljava/util/List; +MD: net/minecraft/client/model/WardenModel/m_233545_ ()V net/minecraft/client/model/WardenModel/resetArmPoses ()V +MD: net/minecraft/client/model/WardenModel/m_6973_ (Lnet/minecraft/world/entity/Entity;FFFFF)V net/minecraft/client/model/WardenModel/setupAnim (Lnet/minecraft/world/entity/Entity;FFFFF)V +MD: net/minecraft/client/model/WardenModel/m_6973_ (Lnet/minecraft/world/entity/monster/warden/Warden;FFFFF)V net/minecraft/client/model/WardenModel/setupAnim (Lnet/minecraft/world/entity/monster/warden/Warden;FFFFF)V +MD: net/minecraft/client/model/WaterPatchModel/m_102282_ ()Lnet/minecraft/client/model/geom/ModelPart; net/minecraft/client/model/WaterPatchModel/waterPatch ()Lnet/minecraft/client/model/geom/ModelPart; +MD: net/minecraft/client/model/WitchModel/ (Lnet/minecraft/client/model/geom/ModelPart;)V net/minecraft/client/model/WitchModel/ (Lnet/minecraft/client/model/geom/ModelPart;)V +MD: net/minecraft/client/model/WitchModel/m_104073_ ()Lnet/minecraft/client/model/geom/ModelPart; net/minecraft/client/model/WitchModel/getNose ()Lnet/minecraft/client/model/geom/ModelPart; +MD: net/minecraft/client/model/WitchModel/m_104074_ (Z)V net/minecraft/client/model/WitchModel/setHoldingItem (Z)V +MD: net/minecraft/client/model/WitchModel/m_171056_ ()Lnet/minecraft/client/model/geom/builders/LayerDefinition; net/minecraft/client/model/WitchModel/createBodyLayer ()Lnet/minecraft/client/model/geom/builders/LayerDefinition; +MD: net/minecraft/client/model/WitchModel/m_6973_ (Lnet/minecraft/world/entity/Entity;FFFFF)V net/minecraft/client/model/WitchModel/setupAnim (Lnet/minecraft/world/entity/Entity;FFFFF)V +MD: net/minecraft/client/model/WitherBossModel/ (Lnet/minecraft/client/model/geom/ModelPart;)V net/minecraft/client/model/WitherBossModel/ (Lnet/minecraft/client/model/geom/ModelPart;)V +MD: net/minecraft/client/model/WitherBossModel/m_142109_ ()Lnet/minecraft/client/model/geom/ModelPart; net/minecraft/client/model/WitherBossModel/root ()Lnet/minecraft/client/model/geom/ModelPart; +MD: net/minecraft/client/model/WitherBossModel/m_171071_ (Lnet/minecraft/world/entity/boss/wither/WitherBoss;Lnet/minecraft/client/model/geom/ModelPart;I)V net/minecraft/client/model/WitherBossModel/setupHeadRotation (Lnet/minecraft/world/entity/boss/wither/WitherBoss;Lnet/minecraft/client/model/geom/ModelPart;I)V +MD: net/minecraft/client/model/WitherBossModel/m_171075_ (Lnet/minecraft/client/model/geom/builders/CubeDeformation;)Lnet/minecraft/client/model/geom/builders/LayerDefinition; net/minecraft/client/model/WitherBossModel/createBodyLayer (Lnet/minecraft/client/model/geom/builders/CubeDeformation;)Lnet/minecraft/client/model/geom/builders/LayerDefinition; +MD: net/minecraft/client/model/WitherBossModel/m_6839_ (Lnet/minecraft/world/entity/Entity;FFF)V net/minecraft/client/model/WitherBossModel/prepareMobModel (Lnet/minecraft/world/entity/Entity;FFF)V +MD: net/minecraft/client/model/WitherBossModel/m_6839_ (Lnet/minecraft/world/entity/boss/wither/WitherBoss;FFF)V net/minecraft/client/model/WitherBossModel/prepareMobModel (Lnet/minecraft/world/entity/boss/wither/WitherBoss;FFF)V +MD: net/minecraft/client/model/WitherBossModel/m_6973_ (Lnet/minecraft/world/entity/Entity;FFFFF)V net/minecraft/client/model/WitherBossModel/setupAnim (Lnet/minecraft/world/entity/Entity;FFFFF)V +MD: net/minecraft/client/model/WitherBossModel/m_6973_ (Lnet/minecraft/world/entity/boss/wither/WitherBoss;FFFFF)V net/minecraft/client/model/WitherBossModel/setupAnim (Lnet/minecraft/world/entity/boss/wither/WitherBoss;FFFFF)V +MD: net/minecraft/client/model/WolfModel/ (Lnet/minecraft/client/model/geom/ModelPart;)V net/minecraft/client/model/WolfModel/ (Lnet/minecraft/client/model/geom/ModelPart;)V +MD: net/minecraft/client/model/WolfModel/m_171088_ ()Lnet/minecraft/client/model/geom/builders/LayerDefinition; net/minecraft/client/model/WolfModel/createBodyLayer ()Lnet/minecraft/client/model/geom/builders/LayerDefinition; +MD: net/minecraft/client/model/WolfModel/m_5607_ ()Ljava/lang/Iterable; net/minecraft/client/model/WolfModel/headParts ()Ljava/lang/Iterable; +MD: net/minecraft/client/model/WolfModel/m_5608_ ()Ljava/lang/Iterable; net/minecraft/client/model/WolfModel/bodyParts ()Ljava/lang/Iterable; +MD: net/minecraft/client/model/WolfModel/m_6839_ (Lnet/minecraft/world/entity/Entity;FFF)V net/minecraft/client/model/WolfModel/prepareMobModel (Lnet/minecraft/world/entity/Entity;FFF)V +MD: net/minecraft/client/model/WolfModel/m_6839_ (Lnet/minecraft/world/entity/animal/Wolf;FFF)V net/minecraft/client/model/WolfModel/prepareMobModel (Lnet/minecraft/world/entity/animal/Wolf;FFF)V +MD: net/minecraft/client/model/WolfModel/m_6973_ (Lnet/minecraft/world/entity/Entity;FFFFF)V net/minecraft/client/model/WolfModel/setupAnim (Lnet/minecraft/world/entity/Entity;FFFFF)V +MD: net/minecraft/client/model/WolfModel/m_6973_ (Lnet/minecraft/world/entity/animal/Wolf;FFFFF)V net/minecraft/client/model/WolfModel/setupAnim (Lnet/minecraft/world/entity/animal/Wolf;FFFFF)V +MD: net/minecraft/client/model/ZombieModel/ (Lnet/minecraft/client/model/geom/ModelPart;)V net/minecraft/client/model/ZombieModel/ (Lnet/minecraft/client/model/geom/ModelPart;)V +MD: net/minecraft/client/model/ZombieModel/m_7134_ (Lnet/minecraft/world/entity/monster/Monster;)Z net/minecraft/client/model/ZombieModel/isAggressive (Lnet/minecraft/world/entity/monster/Monster;)Z +MD: net/minecraft/client/model/ZombieModel/m_7134_ (Lnet/minecraft/world/entity/monster/Zombie;)Z net/minecraft/client/model/ZombieModel/isAggressive (Lnet/minecraft/world/entity/monster/Zombie;)Z +MD: net/minecraft/client/model/ZombieVillagerModel/ (Lnet/minecraft/client/model/geom/ModelPart;)V net/minecraft/client/model/ZombieVillagerModel/ (Lnet/minecraft/client/model/geom/ModelPart;)V +MD: net/minecraft/client/model/ZombieVillagerModel/m_171093_ (Lnet/minecraft/client/model/geom/builders/CubeDeformation;)Lnet/minecraft/client/model/geom/builders/LayerDefinition; net/minecraft/client/model/ZombieVillagerModel/createArmorLayer (Lnet/minecraft/client/model/geom/builders/CubeDeformation;)Lnet/minecraft/client/model/geom/builders/LayerDefinition; +MD: net/minecraft/client/model/ZombieVillagerModel/m_171095_ ()Lnet/minecraft/client/model/geom/builders/LayerDefinition; net/minecraft/client/model/ZombieVillagerModel/createBodyLayer ()Lnet/minecraft/client/model/geom/builders/LayerDefinition; +MD: net/minecraft/client/model/ZombieVillagerModel/m_6973_ (Lnet/minecraft/world/entity/Entity;FFFFF)V net/minecraft/client/model/ZombieVillagerModel/setupAnim (Lnet/minecraft/world/entity/Entity;FFFFF)V +MD: net/minecraft/client/model/ZombieVillagerModel/m_6973_ (Lnet/minecraft/world/entity/monster/Zombie;FFFFF)V net/minecraft/client/model/ZombieVillagerModel/setupAnim (Lnet/minecraft/world/entity/monster/Zombie;FFFFF)V +MD: net/minecraft/client/model/ZombieVillagerModel/m_6973_ (Lnet/minecraft/world/entity/LivingEntity;FFFFF)V net/minecraft/client/model/ZombieVillagerModel/setupAnim (Lnet/minecraft/world/entity/LivingEntity;FFFFF)V +MD: net/minecraft/client/model/ZombieVillagerModel/m_7491_ (Z)V net/minecraft/client/model/ZombieVillagerModel/hatVisible (Z)V +MD: net/minecraft/client/model/dragon/DragonHeadModel/ (Lnet/minecraft/client/model/geom/ModelPart;)V net/minecraft/client/model/dragon/DragonHeadModel/ (Lnet/minecraft/client/model/geom/ModelPart;)V +MD: net/minecraft/client/model/dragon/DragonHeadModel/m_171098_ ()Lnet/minecraft/client/model/geom/builders/LayerDefinition; net/minecraft/client/model/dragon/DragonHeadModel/createHeadLayer ()Lnet/minecraft/client/model/geom/builders/LayerDefinition; +MD: net/minecraft/client/model/dragon/DragonHeadModel/m_6251_ (FFF)V net/minecraft/client/model/dragon/DragonHeadModel/setupAnim (FFF)V +MD: net/minecraft/client/model/dragon/DragonHeadModel/m_7695_ (Lcom/mojang/blaze3d/vertex/PoseStack;Lcom/mojang/blaze3d/vertex/VertexConsumer;IIFFFF)V net/minecraft/client/model/dragon/DragonHeadModel/renderToBuffer (Lcom/mojang/blaze3d/vertex/PoseStack;Lcom/mojang/blaze3d/vertex/VertexConsumer;IIFFFF)V +MD: net/minecraft/client/model/geom/EntityModelSet/ ()V net/minecraft/client/model/geom/EntityModelSet/ ()V +MD: net/minecraft/client/model/geom/EntityModelSet/m_171103_ (Lnet/minecraft/client/model/geom/ModelLayerLocation;)Lnet/minecraft/client/model/geom/ModelPart; net/minecraft/client/model/geom/EntityModelSet/bakeLayer (Lnet/minecraft/client/model/geom/ModelLayerLocation;)Lnet/minecraft/client/model/geom/ModelPart; +MD: net/minecraft/client/model/geom/EntityModelSet/m_6213_ (Lnet/minecraft/server/packs/resources/ResourceManager;)V net/minecraft/client/model/geom/EntityModelSet/onResourceManagerReload (Lnet/minecraft/server/packs/resources/ResourceManager;)V +MD: net/minecraft/client/model/geom/LayerDefinitions/ ()V net/minecraft/client/model/geom/LayerDefinitions/ ()V +MD: net/minecraft/client/model/geom/LayerDefinitions/ ()V net/minecraft/client/model/geom/LayerDefinitions/ ()V +MD: net/minecraft/client/model/geom/LayerDefinitions/m_171110_ ()Ljava/util/Map; net/minecraft/client/model/geom/LayerDefinitions/createRoots ()Ljava/util/Map; +MD: net/minecraft/client/model/geom/LayerDefinitions/m_171111_ (Lcom/google/common/collect/ImmutableMap$Builder;Lnet/minecraft/client/model/geom/builders/LayerDefinition;Lnet/minecraft/world/level/block/state/properties/WoodType;)V net/minecraft/client/model/geom/LayerDefinitions/lambda$createRoots$0 (Lcom/google/common/collect/ImmutableMap$Builder;Lnet/minecraft/client/model/geom/builders/LayerDefinition;Lnet/minecraft/world/level/block/state/properties/WoodType;)V +MD: net/minecraft/client/model/geom/LayerDefinitions/m_171115_ (Lcom/google/common/collect/ImmutableMap;Lnet/minecraft/client/model/geom/ModelLayerLocation;)Z net/minecraft/client/model/geom/LayerDefinitions/lambda$createRoots$2 (Lcom/google/common/collect/ImmutableMap;Lnet/minecraft/client/model/geom/ModelLayerLocation;)Z +MD: net/minecraft/client/model/geom/LayerDefinitions/m_244702_ (Lcom/google/common/collect/ImmutableMap$Builder;Lnet/minecraft/client/model/geom/builders/LayerDefinition;Lnet/minecraft/world/level/block/state/properties/WoodType;)V net/minecraft/client/model/geom/LayerDefinitions/lambda$createRoots$1 (Lcom/google/common/collect/ImmutableMap$Builder;Lnet/minecraft/client/model/geom/builders/LayerDefinition;Lnet/minecraft/world/level/block/state/properties/WoodType;)V +MD: net/minecraft/client/model/geom/ModelLayerLocation/ (Lnet/minecraft/resources/ResourceLocation;Ljava/lang/String;)V net/minecraft/client/model/geom/ModelLayerLocation/ (Lnet/minecraft/resources/ResourceLocation;Ljava/lang/String;)V +MD: net/minecraft/client/model/geom/ModelLayerLocation/equals (Ljava/lang/Object;)Z net/minecraft/client/model/geom/ModelLayerLocation/equals (Ljava/lang/Object;)Z +MD: net/minecraft/client/model/geom/ModelLayerLocation/hashCode ()I net/minecraft/client/model/geom/ModelLayerLocation/hashCode ()I +MD: net/minecraft/client/model/geom/ModelLayerLocation/m_171123_ ()Lnet/minecraft/resources/ResourceLocation; net/minecraft/client/model/geom/ModelLayerLocation/getModel ()Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/client/model/geom/ModelLayerLocation/m_171124_ ()Ljava/lang/String; net/minecraft/client/model/geom/ModelLayerLocation/getLayer ()Ljava/lang/String; +MD: net/minecraft/client/model/geom/ModelLayerLocation/toString ()Ljava/lang/String; net/minecraft/client/model/geom/ModelLayerLocation/toString ()Ljava/lang/String; +MD: net/minecraft/client/model/geom/ModelLayers/ ()V net/minecraft/client/model/geom/ModelLayers/ ()V +MD: net/minecraft/client/model/geom/ModelLayers/ ()V net/minecraft/client/model/geom/ModelLayers/ ()V +MD: net/minecraft/client/model/geom/ModelLayers/m_171288_ ()Ljava/util/stream/Stream; net/minecraft/client/model/geom/ModelLayers/getKnownLocations ()Ljava/util/stream/Stream; +MD: net/minecraft/client/model/geom/ModelLayers/m_171289_ (Lnet/minecraft/world/entity/vehicle/Boat$Type;)Lnet/minecraft/client/model/geom/ModelLayerLocation; net/minecraft/client/model/geom/ModelLayers/createBoatModelName (Lnet/minecraft/world/entity/vehicle/Boat$Type;)Lnet/minecraft/client/model/geom/ModelLayerLocation; +MD: net/minecraft/client/model/geom/ModelLayers/m_171291_ (Lnet/minecraft/world/level/block/state/properties/WoodType;)Lnet/minecraft/client/model/geom/ModelLayerLocation; net/minecraft/client/model/geom/ModelLayers/createSignModelName (Lnet/minecraft/world/level/block/state/properties/WoodType;)Lnet/minecraft/client/model/geom/ModelLayerLocation; +MD: net/minecraft/client/model/geom/ModelLayers/m_171293_ (Ljava/lang/String;)Lnet/minecraft/client/model/geom/ModelLayerLocation; net/minecraft/client/model/geom/ModelLayers/register (Ljava/lang/String;)Lnet/minecraft/client/model/geom/ModelLayerLocation; +MD: net/minecraft/client/model/geom/ModelLayers/m_171295_ (Ljava/lang/String;Ljava/lang/String;)Lnet/minecraft/client/model/geom/ModelLayerLocation; net/minecraft/client/model/geom/ModelLayers/register (Ljava/lang/String;Ljava/lang/String;)Lnet/minecraft/client/model/geom/ModelLayerLocation; +MD: net/minecraft/client/model/geom/ModelLayers/m_171298_ (Ljava/lang/String;)Lnet/minecraft/client/model/geom/ModelLayerLocation; net/minecraft/client/model/geom/ModelLayers/registerInnerArmor (Ljava/lang/String;)Lnet/minecraft/client/model/geom/ModelLayerLocation; +MD: net/minecraft/client/model/geom/ModelLayers/m_171300_ (Ljava/lang/String;Ljava/lang/String;)Lnet/minecraft/client/model/geom/ModelLayerLocation; net/minecraft/client/model/geom/ModelLayers/createLocation (Ljava/lang/String;Ljava/lang/String;)Lnet/minecraft/client/model/geom/ModelLayerLocation; +MD: net/minecraft/client/model/geom/ModelLayers/m_171303_ (Ljava/lang/String;)Lnet/minecraft/client/model/geom/ModelLayerLocation; net/minecraft/client/model/geom/ModelLayers/registerOuterArmor (Ljava/lang/String;)Lnet/minecraft/client/model/geom/ModelLayerLocation; +MD: net/minecraft/client/model/geom/ModelLayers/m_233550_ (Lnet/minecraft/world/entity/vehicle/Boat$Type;)Lnet/minecraft/client/model/geom/ModelLayerLocation; net/minecraft/client/model/geom/ModelLayers/createChestBoatModelName (Lnet/minecraft/world/entity/vehicle/Boat$Type;)Lnet/minecraft/client/model/geom/ModelLayerLocation; +MD: net/minecraft/client/model/geom/ModelLayers/m_246069_ (Lnet/minecraft/world/entity/vehicle/Boat$Type;)Lnet/minecraft/client/model/geom/ModelLayerLocation; net/minecraft/client/model/geom/ModelLayers/createChestRaftModelName (Lnet/minecraft/world/entity/vehicle/Boat$Type;)Lnet/minecraft/client/model/geom/ModelLayerLocation; +MD: net/minecraft/client/model/geom/ModelLayers/m_246688_ (Lnet/minecraft/world/entity/vehicle/Boat$Type;)Lnet/minecraft/client/model/geom/ModelLayerLocation; net/minecraft/client/model/geom/ModelLayers/createRaftModelName (Lnet/minecraft/world/entity/vehicle/Boat$Type;)Lnet/minecraft/client/model/geom/ModelLayerLocation; +MD: net/minecraft/client/model/geom/ModelLayers/m_247439_ (Lnet/minecraft/world/level/block/state/properties/WoodType;)Lnet/minecraft/client/model/geom/ModelLayerLocation; net/minecraft/client/model/geom/ModelLayers/createHangingSignModelName (Lnet/minecraft/world/level/block/state/properties/WoodType;)Lnet/minecraft/client/model/geom/ModelLayerLocation; +MD: net/minecraft/client/model/geom/ModelPart/ (Ljava/util/List;Ljava/util/Map;)V net/minecraft/client/model/geom/ModelPart/ (Ljava/util/List;Ljava/util/Map;)V +MD: net/minecraft/client/model/geom/ModelPart/m_104227_ (FFF)V net/minecraft/client/model/geom/ModelPart/setPos (FFF)V +MD: net/minecraft/client/model/geom/ModelPart/m_104290_ (Lcom/mojang/blaze3d/vertex/PoseStack$Pose;Lcom/mojang/blaze3d/vertex/VertexConsumer;IIFFFF)V net/minecraft/client/model/geom/ModelPart/compile (Lcom/mojang/blaze3d/vertex/PoseStack$Pose;Lcom/mojang/blaze3d/vertex/VertexConsumer;IIFFFF)V +MD: net/minecraft/client/model/geom/ModelPart/m_104299_ (Lcom/mojang/blaze3d/vertex/PoseStack;)V net/minecraft/client/model/geom/ModelPart/translateAndRotate (Lcom/mojang/blaze3d/vertex/PoseStack;)V +MD: net/minecraft/client/model/geom/ModelPart/m_104301_ (Lcom/mojang/blaze3d/vertex/PoseStack;Lcom/mojang/blaze3d/vertex/VertexConsumer;II)V net/minecraft/client/model/geom/ModelPart/render (Lcom/mojang/blaze3d/vertex/PoseStack;Lcom/mojang/blaze3d/vertex/VertexConsumer;II)V +MD: net/minecraft/client/model/geom/ModelPart/m_104306_ (Lcom/mojang/blaze3d/vertex/PoseStack;Lcom/mojang/blaze3d/vertex/VertexConsumer;IIFFFF)V net/minecraft/client/model/geom/ModelPart/render (Lcom/mojang/blaze3d/vertex/PoseStack;Lcom/mojang/blaze3d/vertex/VertexConsumer;IIFFFF)V +MD: net/minecraft/client/model/geom/ModelPart/m_104315_ (Lnet/minecraft/client/model/geom/ModelPart;)V net/minecraft/client/model/geom/ModelPart/copyFrom (Lnet/minecraft/client/model/geom/ModelPart;)V +MD: net/minecraft/client/model/geom/ModelPart/m_171308_ ()Lnet/minecraft/client/model/geom/PartPose; net/minecraft/client/model/geom/ModelPart/storePose ()Lnet/minecraft/client/model/geom/PartPose; +MD: net/minecraft/client/model/geom/ModelPart/m_171309_ (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/model/geom/ModelPart$Visitor;)V net/minecraft/client/model/geom/ModelPart/visit (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/model/geom/ModelPart$Visitor;)V +MD: net/minecraft/client/model/geom/ModelPart/m_171312_ (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/model/geom/ModelPart$Visitor;Ljava/lang/String;)V net/minecraft/client/model/geom/ModelPart/visit (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/model/geom/ModelPart$Visitor;Ljava/lang/String;)V +MD: net/minecraft/client/model/geom/ModelPart/m_171316_ (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/model/geom/ModelPart$Visitor;Ljava/lang/String;Ljava/lang/String;Lnet/minecraft/client/model/geom/ModelPart;)V net/minecraft/client/model/geom/ModelPart/lambda$visit$0 (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/model/geom/ModelPart$Visitor;Ljava/lang/String;Ljava/lang/String;Lnet/minecraft/client/model/geom/ModelPart;)V +MD: net/minecraft/client/model/geom/ModelPart/m_171322_ (Lnet/minecraft/client/model/geom/PartPose;)V net/minecraft/client/model/geom/ModelPart/loadPose (Lnet/minecraft/client/model/geom/PartPose;)V +MD: net/minecraft/client/model/geom/ModelPart/m_171324_ (Ljava/lang/String;)Lnet/minecraft/client/model/geom/ModelPart; net/minecraft/client/model/geom/ModelPart/getChild (Ljava/lang/String;)Lnet/minecraft/client/model/geom/ModelPart; +MD: net/minecraft/client/model/geom/ModelPart/m_171326_ ()Z net/minecraft/client/model/geom/ModelPart/isEmpty ()Z +MD: net/minecraft/client/model/geom/ModelPart/m_171327_ (FFF)V net/minecraft/client/model/geom/ModelPart/setRotation (FFF)V +MD: net/minecraft/client/model/geom/ModelPart/m_171331_ ()Ljava/util/stream/Stream; net/minecraft/client/model/geom/ModelPart/getAllParts ()Ljava/util/stream/Stream; +MD: net/minecraft/client/model/geom/ModelPart/m_233558_ (Lnet/minecraft/util/RandomSource;)Lnet/minecraft/client/model/geom/ModelPart$Cube; net/minecraft/client/model/geom/ModelPart/getRandomCube (Lnet/minecraft/util/RandomSource;)Lnet/minecraft/client/model/geom/ModelPart$Cube; +MD: net/minecraft/client/model/geom/ModelPart/m_233560_ (Lnet/minecraft/client/model/geom/PartPose;)V net/minecraft/client/model/geom/ModelPart/setInitialPose (Lnet/minecraft/client/model/geom/PartPose;)V +MD: net/minecraft/client/model/geom/ModelPart/m_233562_ (Ljava/lang/String;)Z net/minecraft/client/model/geom/ModelPart/hasChild (Ljava/lang/String;)Z +MD: net/minecraft/client/model/geom/ModelPart/m_233566_ ()Lnet/minecraft/client/model/geom/PartPose; net/minecraft/client/model/geom/ModelPart/getInitialPose ()Lnet/minecraft/client/model/geom/PartPose; +MD: net/minecraft/client/model/geom/ModelPart/m_233569_ ()V net/minecraft/client/model/geom/ModelPart/resetPose ()V +MD: net/minecraft/client/model/geom/ModelPart/m_252854_ (Lorg/joml/Vector3f;)V net/minecraft/client/model/geom/ModelPart/offsetPos (Lorg/joml/Vector3f;)V +MD: net/minecraft/client/model/geom/ModelPart/m_252899_ (Lorg/joml/Vector3f;)V net/minecraft/client/model/geom/ModelPart/offsetRotation (Lorg/joml/Vector3f;)V +MD: net/minecraft/client/model/geom/ModelPart/m_253072_ (Lorg/joml/Vector3f;)V net/minecraft/client/model/geom/ModelPart/offsetScale (Lorg/joml/Vector3f;)V +MD: net/minecraft/client/model/geom/ModelPart$Cube/ (IIFFFFFFFFFZFFLjava/util/Set;)V net/minecraft/client/model/geom/ModelPart$Cube/ (IIFFFFFFFFFZFFLjava/util/Set;)V +MD: net/minecraft/client/model/geom/ModelPart$Cube/m_171332_ (Lcom/mojang/blaze3d/vertex/PoseStack$Pose;Lcom/mojang/blaze3d/vertex/VertexConsumer;IIFFFF)V net/minecraft/client/model/geom/ModelPart$Cube/compile (Lcom/mojang/blaze3d/vertex/PoseStack$Pose;Lcom/mojang/blaze3d/vertex/VertexConsumer;IIFFFF)V +MD: net/minecraft/client/model/geom/ModelPart$Polygon/ ([Lnet/minecraft/client/model/geom/ModelPart$Vertex;FFFFFFZLnet/minecraft/core/Direction;)V net/minecraft/client/model/geom/ModelPart$Polygon/ ([Lnet/minecraft/client/model/geom/ModelPart$Vertex;FFFFFFZLnet/minecraft/core/Direction;)V +MD: net/minecraft/client/model/geom/ModelPart$Vertex/ (FFFFF)V net/minecraft/client/model/geom/ModelPart$Vertex/ (FFFFF)V +MD: net/minecraft/client/model/geom/ModelPart$Vertex/ (Lorg/joml/Vector3f;FF)V net/minecraft/client/model/geom/ModelPart$Vertex/ (Lorg/joml/Vector3f;FF)V +MD: net/minecraft/client/model/geom/ModelPart$Vertex/m_104384_ (FF)Lnet/minecraft/client/model/geom/ModelPart$Vertex; net/minecraft/client/model/geom/ModelPart$Vertex/remap (FF)Lnet/minecraft/client/model/geom/ModelPart$Vertex; +MD: net/minecraft/client/model/geom/ModelPart$Visitor/m_171341_ (Lcom/mojang/blaze3d/vertex/PoseStack$Pose;Ljava/lang/String;ILnet/minecraft/client/model/geom/ModelPart$Cube;)V net/minecraft/client/model/geom/ModelPart$Visitor/visit (Lcom/mojang/blaze3d/vertex/PoseStack$Pose;Ljava/lang/String;ILnet/minecraft/client/model/geom/ModelPart$Cube;)V +MD: net/minecraft/client/model/geom/PartNames/ ()V net/minecraft/client/model/geom/PartNames/ ()V +MD: net/minecraft/client/model/geom/PartPose/ ()V net/minecraft/client/model/geom/PartPose/ ()V +MD: net/minecraft/client/model/geom/PartPose/ (FFFFFF)V net/minecraft/client/model/geom/PartPose/ (FFFFFF)V +MD: net/minecraft/client/model/geom/PartPose/m_171419_ (FFF)Lnet/minecraft/client/model/geom/PartPose; net/minecraft/client/model/geom/PartPose/offset (FFF)Lnet/minecraft/client/model/geom/PartPose; +MD: net/minecraft/client/model/geom/PartPose/m_171423_ (FFFFFF)Lnet/minecraft/client/model/geom/PartPose; net/minecraft/client/model/geom/PartPose/offsetAndRotation (FFFFFF)Lnet/minecraft/client/model/geom/PartPose; +MD: net/minecraft/client/model/geom/PartPose/m_171430_ (FFF)Lnet/minecraft/client/model/geom/PartPose; net/minecraft/client/model/geom/PartPose/rotation (FFF)Lnet/minecraft/client/model/geom/PartPose; +MD: net/minecraft/client/model/geom/builders/CubeDefinition/ (Ljava/lang/String;FFFFFFFFLnet/minecraft/client/model/geom/builders/CubeDeformation;ZFFLjava/util/Set;)V net/minecraft/client/model/geom/builders/CubeDefinition/ (Ljava/lang/String;FFFFFFFFLnet/minecraft/client/model/geom/builders/CubeDeformation;ZFFLjava/util/Set;)V +MD: net/minecraft/client/model/geom/builders/CubeDefinition/m_171455_ (II)Lnet/minecraft/client/model/geom/ModelPart$Cube; net/minecraft/client/model/geom/builders/CubeDefinition/bake (II)Lnet/minecraft/client/model/geom/ModelPart$Cube; +MD: net/minecraft/client/model/geom/builders/CubeDeformation/ ()V net/minecraft/client/model/geom/builders/CubeDeformation/ ()V +MD: net/minecraft/client/model/geom/builders/CubeDeformation/ (FFF)V net/minecraft/client/model/geom/builders/CubeDeformation/ (FFF)V +MD: net/minecraft/client/model/geom/builders/CubeDeformation/ (F)V net/minecraft/client/model/geom/builders/CubeDeformation/ (F)V +MD: net/minecraft/client/model/geom/builders/CubeDeformation/m_171469_ (F)Lnet/minecraft/client/model/geom/builders/CubeDeformation; net/minecraft/client/model/geom/builders/CubeDeformation/extend (F)Lnet/minecraft/client/model/geom/builders/CubeDeformation; +MD: net/minecraft/client/model/geom/builders/CubeDeformation/m_171471_ (FFF)Lnet/minecraft/client/model/geom/builders/CubeDeformation; net/minecraft/client/model/geom/builders/CubeDeformation/extend (FFF)Lnet/minecraft/client/model/geom/builders/CubeDeformation; +MD: net/minecraft/client/model/geom/builders/CubeListBuilder/ ()V net/minecraft/client/model/geom/builders/CubeListBuilder/ ()V +MD: net/minecraft/client/model/geom/builders/CubeListBuilder/ ()V net/minecraft/client/model/geom/builders/CubeListBuilder/ ()V +MD: net/minecraft/client/model/geom/builders/CubeListBuilder/m_171480_ ()Lnet/minecraft/client/model/geom/builders/CubeListBuilder; net/minecraft/client/model/geom/builders/CubeListBuilder/mirror ()Lnet/minecraft/client/model/geom/builders/CubeListBuilder; +MD: net/minecraft/client/model/geom/builders/CubeListBuilder/m_171481_ (FFFFFF)Lnet/minecraft/client/model/geom/builders/CubeListBuilder; net/minecraft/client/model/geom/builders/CubeListBuilder/addBox (FFFFFF)Lnet/minecraft/client/model/geom/builders/CubeListBuilder; +MD: net/minecraft/client/model/geom/builders/CubeListBuilder/m_171488_ (FFFFFFLnet/minecraft/client/model/geom/builders/CubeDeformation;)Lnet/minecraft/client/model/geom/builders/CubeListBuilder; net/minecraft/client/model/geom/builders/CubeListBuilder/addBox (FFFFFFLnet/minecraft/client/model/geom/builders/CubeDeformation;)Lnet/minecraft/client/model/geom/builders/CubeListBuilder; +MD: net/minecraft/client/model/geom/builders/CubeListBuilder/m_171496_ (FFFFFFLnet/minecraft/client/model/geom/builders/CubeDeformation;FF)Lnet/minecraft/client/model/geom/builders/CubeListBuilder; net/minecraft/client/model/geom/builders/CubeListBuilder/addBox (FFFFFFLnet/minecraft/client/model/geom/builders/CubeDeformation;FF)Lnet/minecraft/client/model/geom/builders/CubeListBuilder; +MD: net/minecraft/client/model/geom/builders/CubeListBuilder/m_171506_ (FFFFFFZ)Lnet/minecraft/client/model/geom/builders/CubeListBuilder; net/minecraft/client/model/geom/builders/CubeListBuilder/addBox (FFFFFFZ)Lnet/minecraft/client/model/geom/builders/CubeListBuilder; +MD: net/minecraft/client/model/geom/builders/CubeListBuilder/m_171514_ (II)Lnet/minecraft/client/model/geom/builders/CubeListBuilder; net/minecraft/client/model/geom/builders/CubeListBuilder/texOffs (II)Lnet/minecraft/client/model/geom/builders/CubeListBuilder; +MD: net/minecraft/client/model/geom/builders/CubeListBuilder/m_171517_ (Ljava/lang/String;FFFFFF)Lnet/minecraft/client/model/geom/builders/CubeListBuilder; net/minecraft/client/model/geom/builders/CubeListBuilder/addBox (Ljava/lang/String;FFFFFF)Lnet/minecraft/client/model/geom/builders/CubeListBuilder; +MD: net/minecraft/client/model/geom/builders/CubeListBuilder/m_171525_ (Ljava/lang/String;FFFFFFLnet/minecraft/client/model/geom/builders/CubeDeformation;)Lnet/minecraft/client/model/geom/builders/CubeListBuilder; net/minecraft/client/model/geom/builders/CubeListBuilder/addBox (Ljava/lang/String;FFFFFFLnet/minecraft/client/model/geom/builders/CubeDeformation;)Lnet/minecraft/client/model/geom/builders/CubeListBuilder; +MD: net/minecraft/client/model/geom/builders/CubeListBuilder/m_171534_ (Ljava/lang/String;FFFIIIII)Lnet/minecraft/client/model/geom/builders/CubeListBuilder; net/minecraft/client/model/geom/builders/CubeListBuilder/addBox (Ljava/lang/String;FFFIIIII)Lnet/minecraft/client/model/geom/builders/CubeListBuilder; +MD: net/minecraft/client/model/geom/builders/CubeListBuilder/m_171544_ (Ljava/lang/String;FFFIIILnet/minecraft/client/model/geom/builders/CubeDeformation;II)Lnet/minecraft/client/model/geom/builders/CubeListBuilder; net/minecraft/client/model/geom/builders/CubeListBuilder/addBox (Ljava/lang/String;FFFIIILnet/minecraft/client/model/geom/builders/CubeDeformation;II)Lnet/minecraft/client/model/geom/builders/CubeListBuilder; +MD: net/minecraft/client/model/geom/builders/CubeListBuilder/m_171555_ (Z)Lnet/minecraft/client/model/geom/builders/CubeListBuilder; net/minecraft/client/model/geom/builders/CubeListBuilder/mirror (Z)Lnet/minecraft/client/model/geom/builders/CubeListBuilder; +MD: net/minecraft/client/model/geom/builders/CubeListBuilder/m_171557_ ()Ljava/util/List; net/minecraft/client/model/geom/builders/CubeListBuilder/getCubes ()Ljava/util/List; +MD: net/minecraft/client/model/geom/builders/CubeListBuilder/m_171558_ ()Lnet/minecraft/client/model/geom/builders/CubeListBuilder; net/minecraft/client/model/geom/builders/CubeListBuilder/create ()Lnet/minecraft/client/model/geom/builders/CubeListBuilder; +MD: net/minecraft/client/model/geom/builders/CubeListBuilder/m_271786_ (FFFFFFLjava/util/Set;)Lnet/minecraft/client/model/geom/builders/CubeListBuilder; net/minecraft/client/model/geom/builders/CubeListBuilder/addBox (FFFFFFLjava/util/Set;)Lnet/minecraft/client/model/geom/builders/CubeListBuilder; +MD: net/minecraft/client/model/geom/builders/LayerDefinition/ (Lnet/minecraft/client/model/geom/builders/MeshDefinition;Lnet/minecraft/client/model/geom/builders/MaterialDefinition;)V net/minecraft/client/model/geom/builders/LayerDefinition/ (Lnet/minecraft/client/model/geom/builders/MeshDefinition;Lnet/minecraft/client/model/geom/builders/MaterialDefinition;)V +MD: net/minecraft/client/model/geom/builders/LayerDefinition/m_171564_ ()Lnet/minecraft/client/model/geom/ModelPart; net/minecraft/client/model/geom/builders/LayerDefinition/bakeRoot ()Lnet/minecraft/client/model/geom/ModelPart; +MD: net/minecraft/client/model/geom/builders/LayerDefinition/m_171565_ (Lnet/minecraft/client/model/geom/builders/MeshDefinition;II)Lnet/minecraft/client/model/geom/builders/LayerDefinition; net/minecraft/client/model/geom/builders/LayerDefinition/create (Lnet/minecraft/client/model/geom/builders/MeshDefinition;II)Lnet/minecraft/client/model/geom/builders/LayerDefinition; +MD: net/minecraft/client/model/geom/builders/MaterialDefinition/ (II)V net/minecraft/client/model/geom/builders/MaterialDefinition/ (II)V +MD: net/minecraft/client/model/geom/builders/MeshDefinition/ ()V net/minecraft/client/model/geom/builders/MeshDefinition/ ()V +MD: net/minecraft/client/model/geom/builders/MeshDefinition/m_171576_ ()Lnet/minecraft/client/model/geom/builders/PartDefinition; net/minecraft/client/model/geom/builders/MeshDefinition/getRoot ()Lnet/minecraft/client/model/geom/builders/PartDefinition; +MD: net/minecraft/client/model/geom/builders/PartDefinition/ (Ljava/util/List;Lnet/minecraft/client/model/geom/PartPose;)V net/minecraft/client/model/geom/builders/PartDefinition/ (Ljava/util/List;Lnet/minecraft/client/model/geom/PartPose;)V +MD: net/minecraft/client/model/geom/builders/PartDefinition/m_171583_ (II)Lnet/minecraft/client/model/geom/ModelPart; net/minecraft/client/model/geom/builders/PartDefinition/bake (II)Lnet/minecraft/client/model/geom/ModelPart; +MD: net/minecraft/client/model/geom/builders/PartDefinition/m_171586_ (IILnet/minecraft/client/model/geom/builders/CubeDefinition;)Lnet/minecraft/client/model/geom/ModelPart$Cube; net/minecraft/client/model/geom/builders/PartDefinition/lambda$bake$2 (IILnet/minecraft/client/model/geom/builders/CubeDefinition;)Lnet/minecraft/client/model/geom/ModelPart$Cube; +MD: net/minecraft/client/model/geom/builders/PartDefinition/m_171590_ (IILjava/util/Map$Entry;)Lnet/minecraft/client/model/geom/ModelPart; net/minecraft/client/model/geom/builders/PartDefinition/lambda$bake$0 (IILjava/util/Map$Entry;)Lnet/minecraft/client/model/geom/ModelPart; +MD: net/minecraft/client/model/geom/builders/PartDefinition/m_171594_ (Lnet/minecraft/client/model/geom/ModelPart;Lnet/minecraft/client/model/geom/ModelPart;)Lnet/minecraft/client/model/geom/ModelPart; net/minecraft/client/model/geom/builders/PartDefinition/lambda$bake$1 (Lnet/minecraft/client/model/geom/ModelPart;Lnet/minecraft/client/model/geom/ModelPart;)Lnet/minecraft/client/model/geom/ModelPart; +MD: net/minecraft/client/model/geom/builders/PartDefinition/m_171597_ (Ljava/lang/String;)Lnet/minecraft/client/model/geom/builders/PartDefinition; net/minecraft/client/model/geom/builders/PartDefinition/getChild (Ljava/lang/String;)Lnet/minecraft/client/model/geom/builders/PartDefinition; +MD: net/minecraft/client/model/geom/builders/PartDefinition/m_171599_ (Ljava/lang/String;Lnet/minecraft/client/model/geom/builders/CubeListBuilder;Lnet/minecraft/client/model/geom/PartPose;)Lnet/minecraft/client/model/geom/builders/PartDefinition; net/minecraft/client/model/geom/builders/PartDefinition/addOrReplaceChild (Ljava/lang/String;Lnet/minecraft/client/model/geom/builders/CubeListBuilder;Lnet/minecraft/client/model/geom/PartPose;)Lnet/minecraft/client/model/geom/builders/PartDefinition; +MD: net/minecraft/client/model/geom/builders/UVPair/ (FF)V net/minecraft/client/model/geom/builders/UVPair/ (FF)V +MD: net/minecraft/client/model/geom/builders/UVPair/m_171612_ ()F net/minecraft/client/model/geom/builders/UVPair/u ()F +MD: net/minecraft/client/model/geom/builders/UVPair/m_171613_ ()F net/minecraft/client/model/geom/builders/UVPair/v ()F +MD: net/minecraft/client/model/geom/builders/UVPair/toString ()Ljava/lang/String; net/minecraft/client/model/geom/builders/UVPair/toString ()Ljava/lang/String; +MD: net/minecraft/client/multiplayer/AccountProfileKeyPairManager/ ()V net/minecraft/client/multiplayer/AccountProfileKeyPairManager/ ()V +MD: net/minecraft/client/multiplayer/AccountProfileKeyPairManager/ (Lcom/mojang/authlib/minecraft/UserApiService;Ljava/util/UUID;Ljava/nio/file/Path;)V net/minecraft/client/multiplayer/AccountProfileKeyPairManager/ (Lcom/mojang/authlib/minecraft/UserApiService;Ljava/util/UUID;Ljava/nio/file/Path;)V +MD: net/minecraft/client/multiplayer/AccountProfileKeyPairManager/m_252791_ (Lnet/minecraft/world/entity/player/ProfileKeyPair;)Z net/minecraft/client/multiplayer/AccountProfileKeyPairManager/lambda$new$0 (Lnet/minecraft/world/entity/player/ProfileKeyPair;)Z +MD: net/minecraft/client/multiplayer/AccountProfileKeyPairManager/m_252827_ ()Ljava/util/Optional; net/minecraft/client/multiplayer/AccountProfileKeyPairManager/readProfileKeyPair ()Ljava/util/Optional; +MD: net/minecraft/client/multiplayer/AccountProfileKeyPairManager/m_252828_ (Ljava/util/Optional;)Ljava/util/Optional; net/minecraft/client/multiplayer/AccountProfileKeyPairManager/lambda$readOrFetchProfileKeyPair$2 (Ljava/util/Optional;)Ljava/util/Optional; +MD: net/minecraft/client/multiplayer/AccountProfileKeyPairManager/m_252881_ (Lcom/google/gson/JsonElement;)V net/minecraft/client/multiplayer/AccountProfileKeyPairManager/lambda$writeProfileKeyPair$3 (Lcom/google/gson/JsonElement;)V +MD: net/minecraft/client/multiplayer/AccountProfileKeyPairManager/m_252904_ ()Ljava/util/concurrent/CompletableFuture; net/minecraft/client/multiplayer/AccountProfileKeyPairManager/prepareKeyPair ()Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/client/multiplayer/AccountProfileKeyPairManager/m_253041_ (Ljava/util/Optional;)Ljava/util/concurrent/CompletableFuture; net/minecraft/client/multiplayer/AccountProfileKeyPairManager/readOrFetchProfileKeyPair (Ljava/util/Optional;)Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/client/multiplayer/AccountProfileKeyPairManager/m_253130_ ()Z net/minecraft/client/multiplayer/AccountProfileKeyPairManager/shouldRefreshKeyPair ()Z +MD: net/minecraft/client/multiplayer/AccountProfileKeyPairManager/m_253196_ (Lcom/mojang/authlib/yggdrasil/response/KeyPairResponse;)Lnet/minecraft/world/entity/player/ProfilePublicKey$Data; net/minecraft/client/multiplayer/AccountProfileKeyPairManager/parsePublicKey (Lcom/mojang/authlib/yggdrasil/response/KeyPairResponse;)Lnet/minecraft/world/entity/player/ProfilePublicKey$Data; +MD: net/minecraft/client/multiplayer/AccountProfileKeyPairManager/m_253216_ (Lnet/minecraft/world/entity/player/ProfileKeyPair;)V net/minecraft/client/multiplayer/AccountProfileKeyPairManager/writeProfileKeyPair (Lnet/minecraft/world/entity/player/ProfileKeyPair;)V +MD: net/minecraft/client/multiplayer/AccountProfileKeyPairManager/m_253252_ (Lcom/mojang/authlib/minecraft/UserApiService;)Lnet/minecraft/world/entity/player/ProfileKeyPair; net/minecraft/client/multiplayer/AccountProfileKeyPairManager/fetchProfileKeyPair (Lcom/mojang/authlib/minecraft/UserApiService;)Lnet/minecraft/world/entity/player/ProfileKeyPair; +MD: net/minecraft/client/multiplayer/AccountProfileKeyPairManager/m_253254_ ()Ljava/util/Optional; net/minecraft/client/multiplayer/AccountProfileKeyPairManager/lambda$new$1 ()Ljava/util/Optional; +MD: net/minecraft/client/multiplayer/ClientAdvancements/ ()V net/minecraft/client/multiplayer/ClientAdvancements/ ()V +MD: net/minecraft/client/multiplayer/ClientAdvancements/ (Lnet/minecraft/client/Minecraft;Lnet/minecraft/client/telemetry/WorldSessionTelemetryManager;)V net/minecraft/client/multiplayer/ClientAdvancements/ (Lnet/minecraft/client/Minecraft;Lnet/minecraft/client/telemetry/WorldSessionTelemetryManager;)V +MD: net/minecraft/client/multiplayer/ClientAdvancements/m_104396_ ()Lnet/minecraft/advancements/AdvancementList; net/minecraft/client/multiplayer/ClientAdvancements/getAdvancements ()Lnet/minecraft/advancements/AdvancementList; +MD: net/minecraft/client/multiplayer/ClientAdvancements/m_104397_ (Lnet/minecraft/client/multiplayer/ClientAdvancements$Listener;)V net/minecraft/client/multiplayer/ClientAdvancements/setListener (Lnet/minecraft/client/multiplayer/ClientAdvancements$Listener;)V +MD: net/minecraft/client/multiplayer/ClientAdvancements/m_104399_ (Lnet/minecraft/network/protocol/game/ClientboundUpdateAdvancementsPacket;)V net/minecraft/client/multiplayer/ClientAdvancements/update (Lnet/minecraft/network/protocol/game/ClientboundUpdateAdvancementsPacket;)V +MD: net/minecraft/client/multiplayer/ClientAdvancements/m_104401_ (Lnet/minecraft/advancements/Advancement;Z)V net/minecraft/client/multiplayer/ClientAdvancements/setSelectedTab (Lnet/minecraft/advancements/Advancement;Z)V +MD: net/minecraft/client/multiplayer/ClientAdvancements$Listener/m_6896_ (Lnet/minecraft/advancements/Advancement;)V net/minecraft/client/multiplayer/ClientAdvancements$Listener/onSelectedTabChanged (Lnet/minecraft/advancements/Advancement;)V +MD: net/minecraft/client/multiplayer/ClientAdvancements$Listener/m_7922_ (Lnet/minecraft/advancements/Advancement;Lnet/minecraft/advancements/AdvancementProgress;)V net/minecraft/client/multiplayer/ClientAdvancements$Listener/onUpdateAdvancementProgress (Lnet/minecraft/advancements/Advancement;Lnet/minecraft/advancements/AdvancementProgress;)V +MD: net/minecraft/client/multiplayer/ClientChunkCache/ ()V net/minecraft/client/multiplayer/ClientChunkCache/ ()V +MD: net/minecraft/client/multiplayer/ClientChunkCache/ (Lnet/minecraft/client/multiplayer/ClientLevel;I)V net/minecraft/client/multiplayer/ClientChunkCache/ (Lnet/minecraft/client/multiplayer/ClientLevel;I)V +MD: net/minecraft/client/multiplayer/ClientChunkCache/m_104416_ (I)V net/minecraft/client/multiplayer/ClientChunkCache/updateViewRadius (I)V +MD: net/minecraft/client/multiplayer/ClientChunkCache/m_104438_ (Lnet/minecraft/world/level/chunk/LevelChunk;II)Z net/minecraft/client/multiplayer/ClientChunkCache/isValidChunk (Lnet/minecraft/world/level/chunk/LevelChunk;II)Z +MD: net/minecraft/client/multiplayer/ClientChunkCache/m_104448_ (I)I net/minecraft/client/multiplayer/ClientChunkCache/calculateStorageRange (I)I +MD: net/minecraft/client/multiplayer/ClientChunkCache/m_104455_ (II)V net/minecraft/client/multiplayer/ClientChunkCache/drop (II)V +MD: net/minecraft/client/multiplayer/ClientChunkCache/m_104459_ (II)V net/minecraft/client/multiplayer/ClientChunkCache/updateViewCenter (II)V +MD: net/minecraft/client/multiplayer/ClientChunkCache/m_194116_ (IILnet/minecraft/network/FriendlyByteBuf;Lnet/minecraft/nbt/CompoundTag;Ljava/util/function/Consumer;)Lnet/minecraft/world/level/chunk/LevelChunk; net/minecraft/client/multiplayer/ClientChunkCache/replaceWithPacketData (IILnet/minecraft/network/FriendlyByteBuf;Lnet/minecraft/nbt/CompoundTag;Ljava/util/function/Consumer;)Lnet/minecraft/world/level/chunk/LevelChunk; +MD: net/minecraft/client/multiplayer/ClientChunkCache/m_201698_ (Ljava/util/function/BooleanSupplier;Z)V net/minecraft/client/multiplayer/ClientChunkCache/tick (Ljava/util/function/BooleanSupplier;Z)V +MD: net/minecraft/client/multiplayer/ClientChunkCache/m_274444_ (IILnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/client/multiplayer/ClientChunkCache/replaceBiomes (IILnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/client/multiplayer/ClientChunkCache/m_6506_ (Lnet/minecraft/world/level/LightLayer;Lnet/minecraft/core/SectionPos;)V net/minecraft/client/multiplayer/ClientChunkCache/onLightUpdate (Lnet/minecraft/world/level/LightLayer;Lnet/minecraft/core/SectionPos;)V +MD: net/minecraft/client/multiplayer/ClientChunkCache/m_6754_ ()Ljava/lang/String; net/minecraft/client/multiplayer/ClientChunkCache/gatherStats ()Ljava/lang/String; +MD: net/minecraft/client/multiplayer/ClientChunkCache/m_7587_ (IILnet/minecraft/world/level/chunk/ChunkStatus;Z)Lnet/minecraft/world/level/chunk/LevelChunk; net/minecraft/client/multiplayer/ClientChunkCache/getChunk (IILnet/minecraft/world/level/chunk/ChunkStatus;Z)Lnet/minecraft/world/level/chunk/LevelChunk; +MD: net/minecraft/client/multiplayer/ClientChunkCache/m_7587_ (IILnet/minecraft/world/level/chunk/ChunkStatus;Z)Lnet/minecraft/world/level/chunk/ChunkAccess; net/minecraft/client/multiplayer/ClientChunkCache/getChunk (IILnet/minecraft/world/level/chunk/ChunkStatus;Z)Lnet/minecraft/world/level/chunk/ChunkAccess; +MD: net/minecraft/client/multiplayer/ClientChunkCache/m_7653_ ()Lnet/minecraft/world/level/BlockGetter; net/minecraft/client/multiplayer/ClientChunkCache/getLevel ()Lnet/minecraft/world/level/BlockGetter; +MD: net/minecraft/client/multiplayer/ClientChunkCache/m_7827_ ()Lnet/minecraft/world/level/lighting/LevelLightEngine; net/minecraft/client/multiplayer/ClientChunkCache/getLightEngine ()Lnet/minecraft/world/level/lighting/LevelLightEngine; +MD: net/minecraft/client/multiplayer/ClientChunkCache/m_8482_ ()I net/minecraft/client/multiplayer/ClientChunkCache/getLoadedChunksCount ()I +MD: net/minecraft/client/multiplayer/ClientChunkCache$Storage/ (Lnet/minecraft/client/multiplayer/ClientChunkCache;I)V net/minecraft/client/multiplayer/ClientChunkCache$Storage/ (Lnet/minecraft/client/multiplayer/ClientChunkCache;I)V +MD: net/minecraft/client/multiplayer/ClientChunkCache$Storage/m_104479_ (I)Lnet/minecraft/world/level/chunk/LevelChunk; net/minecraft/client/multiplayer/ClientChunkCache$Storage/getChunk (I)Lnet/minecraft/world/level/chunk/LevelChunk; +MD: net/minecraft/client/multiplayer/ClientChunkCache$Storage/m_104481_ (II)I net/minecraft/client/multiplayer/ClientChunkCache$Storage/getIndex (II)I +MD: net/minecraft/client/multiplayer/ClientChunkCache$Storage/m_104484_ (ILnet/minecraft/world/level/chunk/LevelChunk;)V net/minecraft/client/multiplayer/ClientChunkCache$Storage/replace (ILnet/minecraft/world/level/chunk/LevelChunk;)V +MD: net/minecraft/client/multiplayer/ClientChunkCache$Storage/m_104487_ (ILnet/minecraft/world/level/chunk/LevelChunk;Lnet/minecraft/world/level/chunk/LevelChunk;)Lnet/minecraft/world/level/chunk/LevelChunk; net/minecraft/client/multiplayer/ClientChunkCache$Storage/replace (ILnet/minecraft/world/level/chunk/LevelChunk;Lnet/minecraft/world/level/chunk/LevelChunk;)Lnet/minecraft/world/level/chunk/LevelChunk; +MD: net/minecraft/client/multiplayer/ClientChunkCache$Storage/m_104500_ (II)Z net/minecraft/client/multiplayer/ClientChunkCache$Storage/inRange (II)Z +MD: net/minecraft/client/multiplayer/ClientChunkCache$Storage/m_171622_ (Ljava/lang/String;)V net/minecraft/client/multiplayer/ClientChunkCache$Storage/dumpChunks (Ljava/lang/String;)V +MD: net/minecraft/client/multiplayer/ClientHandshakePacketListenerImpl/ ()V net/minecraft/client/multiplayer/ClientHandshakePacketListenerImpl/ ()V +MD: net/minecraft/client/multiplayer/ClientHandshakePacketListenerImpl/ (Lnet/minecraft/network/Connection;Lnet/minecraft/client/Minecraft;Lnet/minecraft/client/multiplayer/ServerData;Lnet/minecraft/client/gui/screens/Screen;ZLjava/time/Duration;Ljava/util/function/Consumer;)V net/minecraft/client/multiplayer/ClientHandshakePacketListenerImpl/ (Lnet/minecraft/network/Connection;Lnet/minecraft/client/Minecraft;Lnet/minecraft/client/multiplayer/ServerData;Lnet/minecraft/client/gui/screens/Screen;ZLjava/time/Duration;Ljava/util/function/Consumer;)V +MD: net/minecraft/client/multiplayer/ClientHandshakePacketListenerImpl/m_104531_ (Ljava/lang/String;)Lnet/minecraft/network/chat/Component; net/minecraft/client/multiplayer/ClientHandshakePacketListenerImpl/authenticateServer (Ljava/lang/String;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/client/multiplayer/ClientHandshakePacketListenerImpl/m_104554_ ()Lcom/mojang/authlib/minecraft/MinecraftSessionService; net/minecraft/client/multiplayer/ClientHandshakePacketListenerImpl/getMinecraftSessionService ()Lcom/mojang/authlib/minecraft/MinecraftSessionService; +MD: net/minecraft/client/multiplayer/ClientHandshakePacketListenerImpl/m_233586_ (Ljava/lang/String;Lnet/minecraft/network/protocol/login/ServerboundKeyPacket;Ljavax/crypto/Cipher;Ljavax/crypto/Cipher;)V net/minecraft/client/multiplayer/ClientHandshakePacketListenerImpl/lambda$handleHello$1 (Ljava/lang/String;Lnet/minecraft/network/protocol/login/ServerboundKeyPacket;Ljavax/crypto/Cipher;Ljavax/crypto/Cipher;)V +MD: net/minecraft/client/multiplayer/ClientHandshakePacketListenerImpl/m_233591_ (Ljavax/crypto/Cipher;Ljavax/crypto/Cipher;)V net/minecraft/client/multiplayer/ClientHandshakePacketListenerImpl/lambda$handleHello$0 (Ljavax/crypto/Cipher;Ljavax/crypto/Cipher;)V +MD: net/minecraft/client/multiplayer/ClientHandshakePacketListenerImpl/m_285854_ (Ljava/lang/String;)V net/minecraft/client/multiplayer/ClientHandshakePacketListenerImpl/setMinigameName (Ljava/lang/String;)V +MD: net/minecraft/client/multiplayer/ClientHandshakePacketListenerImpl/m_5693_ (Lnet/minecraft/network/protocol/login/ClientboundLoginCompressionPacket;)V net/minecraft/client/multiplayer/ClientHandshakePacketListenerImpl/handleCompression (Lnet/minecraft/network/protocol/login/ClientboundLoginCompressionPacket;)V +MD: net/minecraft/client/multiplayer/ClientHandshakePacketListenerImpl/m_5800_ (Lnet/minecraft/network/protocol/login/ClientboundLoginDisconnectPacket;)V net/minecraft/client/multiplayer/ClientHandshakePacketListenerImpl/handleDisconnect (Lnet/minecraft/network/protocol/login/ClientboundLoginDisconnectPacket;)V +MD: net/minecraft/client/multiplayer/ClientHandshakePacketListenerImpl/m_6198_ ()Z net/minecraft/client/multiplayer/ClientHandshakePacketListenerImpl/isAcceptingMessages ()Z +MD: net/minecraft/client/multiplayer/ClientHandshakePacketListenerImpl/m_7026_ (Lnet/minecraft/network/chat/Component;)V net/minecraft/client/multiplayer/ClientHandshakePacketListenerImpl/onDisconnect (Lnet/minecraft/network/chat/Component;)V +MD: net/minecraft/client/multiplayer/ClientHandshakePacketListenerImpl/m_7056_ (Lnet/minecraft/network/protocol/login/ClientboundGameProfilePacket;)V net/minecraft/client/multiplayer/ClientHandshakePacketListenerImpl/handleGameProfile (Lnet/minecraft/network/protocol/login/ClientboundGameProfilePacket;)V +MD: net/minecraft/client/multiplayer/ClientHandshakePacketListenerImpl/m_7254_ (Lnet/minecraft/network/protocol/login/ClientboundCustomQueryPacket;)V net/minecraft/client/multiplayer/ClientHandshakePacketListenerImpl/handleCustomQuery (Lnet/minecraft/network/protocol/login/ClientboundCustomQueryPacket;)V +MD: net/minecraft/client/multiplayer/ClientHandshakePacketListenerImpl/m_7318_ (Lnet/minecraft/network/protocol/login/ClientboundHelloPacket;)V net/minecraft/client/multiplayer/ClientHandshakePacketListenerImpl/handleHello (Lnet/minecraft/network/protocol/login/ClientboundHelloPacket;)V +MD: net/minecraft/client/multiplayer/ClientLevel/ ()V net/minecraft/client/multiplayer/ClientLevel/ ()V +MD: net/minecraft/client/multiplayer/ClientLevel/ (Lnet/minecraft/client/multiplayer/ClientPacketListener;Lnet/minecraft/client/multiplayer/ClientLevel$ClientLevelData;Lnet/minecraft/resources/ResourceKey;Lnet/minecraft/core/Holder;IILjava/util/function/Supplier;Lnet/minecraft/client/renderer/LevelRenderer;ZJ)V net/minecraft/client/multiplayer/ClientLevel/ (Lnet/minecraft/client/multiplayer/ClientPacketListener;Lnet/minecraft/client/multiplayer/ClientLevel$ClientLevelData;Lnet/minecraft/resources/ResourceKey;Lnet/minecraft/core/Holder;IILjava/util/function/Supplier;Lnet/minecraft/client/renderer/LevelRenderer;ZJ)V +MD: net/minecraft/client/multiplayer/ClientLevel/m_104583_ ()Lnet/minecraft/client/renderer/DimensionSpecialEffects; net/minecraft/client/multiplayer/ClientLevel/effects ()Lnet/minecraft/client/renderer/DimensionSpecialEffects; +MD: net/minecraft/client/multiplayer/ClientLevel/m_104592_ (DDDDDLnet/minecraft/core/particles/ParticleOptions;)V net/minecraft/client/multiplayer/ClientLevel/spawnFluidParticle (DDDDDLnet/minecraft/core/particles/ParticleOptions;)V +MD: net/minecraft/client/multiplayer/ClientLevel/m_104627_ (ILnet/minecraft/world/entity/Entity;)V net/minecraft/client/multiplayer/ClientLevel/putNonPlayerEntity (ILnet/minecraft/world/entity/Entity;)V +MD: net/minecraft/client/multiplayer/ClientLevel/m_104630_ (ILnet/minecraft/client/player/AbstractClientPlayer;)V net/minecraft/client/multiplayer/ClientLevel/addPlayer (ILnet/minecraft/client/player/AbstractClientPlayer;)V +MD: net/minecraft/client/multiplayer/ClientLevel/m_104637_ (J)V net/minecraft/client/multiplayer/ClientLevel/setGameTime (J)V +MD: net/minecraft/client/multiplayer/ClientLevel/m_104639_ (Lnet/minecraft/world/entity/Entity;)V net/minecraft/client/multiplayer/ClientLevel/tickNonPassenger (Lnet/minecraft/world/entity/Entity;)V +MD: net/minecraft/client/multiplayer/ClientLevel/m_104641_ (Lnet/minecraft/world/entity/Entity;Lnet/minecraft/world/entity/Entity;)V net/minecraft/client/multiplayer/ClientLevel/tickPassenger (Lnet/minecraft/world/entity/Entity;Lnet/minecraft/world/entity/Entity;)V +MD: net/minecraft/client/multiplayer/ClientLevel/m_104665_ (Lnet/minecraft/world/level/chunk/LevelChunk;)V net/minecraft/client/multiplayer/ClientLevel/unload (Lnet/minecraft/world/level/chunk/LevelChunk;)V +MD: net/minecraft/client/multiplayer/ClientLevel/m_104669_ (Lnet/minecraft/world/scores/Scoreboard;)V net/minecraft/client/multiplayer/ClientLevel/setScoreboard (Lnet/minecraft/world/scores/Scoreboard;)V +MD: net/minecraft/client/multiplayer/ClientLevel/m_104689_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/particles/ParticleOptions;Z)V net/minecraft/client/multiplayer/ClientLevel/trySpawnDripParticles (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/particles/ParticleOptions;Z)V +MD: net/minecraft/client/multiplayer/ClientLevel/m_104694_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/particles/ParticleOptions;Lnet/minecraft/world/phys/shapes/VoxelShape;D)V net/minecraft/client/multiplayer/ClientLevel/spawnParticle (Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/particles/ParticleOptions;Lnet/minecraft/world/phys/shapes/VoxelShape;D)V +MD: net/minecraft/client/multiplayer/ClientLevel/m_104726_ (Ljava/util/function/BooleanSupplier;)V net/minecraft/client/multiplayer/ClientLevel/tick (Ljava/util/function/BooleanSupplier;)V +MD: net/minecraft/client/multiplayer/ClientLevel/m_104735_ ()Ljava/lang/Iterable; net/minecraft/client/multiplayer/ClientLevel/entitiesForRendering ()Ljava/lang/Iterable; +MD: net/minecraft/client/multiplayer/ClientLevel/m_104739_ (ILnet/minecraft/world/entity/Entity;)V net/minecraft/client/multiplayer/ClientLevel/addEntity (ILnet/minecraft/world/entity/Entity;)V +MD: net/minecraft/client/multiplayer/ClientLevel/m_104746_ (J)V net/minecraft/client/multiplayer/ClientLevel/setDayTime (J)V +MD: net/minecraft/client/multiplayer/ClientLevel/m_104752_ (Lnet/minecraft/core/BlockPos;F)V net/minecraft/client/multiplayer/ClientLevel/setDefaultSpawnPos (Lnet/minecraft/core/BlockPos;F)V +MD: net/minecraft/client/multiplayer/ClientLevel/m_104762_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/ColorResolver;)I net/minecraft/client/multiplayer/ClientLevel/calculateBlockTint (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/ColorResolver;)I +MD: net/minecraft/client/multiplayer/ClientLevel/m_104784_ (III)V net/minecraft/client/multiplayer/ClientLevel/animateTick (III)V +MD: net/minecraft/client/multiplayer/ClientLevel/m_104793_ (III)V net/minecraft/client/multiplayer/ClientLevel/setSectionDirtyWithNeighbors (III)V +MD: net/minecraft/client/multiplayer/ClientLevel/m_104804_ ()V net/minecraft/client/multiplayer/ClientLevel/tickEntities ()V +MD: net/minecraft/client/multiplayer/ClientLevel/m_104805_ (F)F net/minecraft/client/multiplayer/ClientLevel/getSkyDarken (F)F +MD: net/minecraft/client/multiplayer/ClientLevel/m_104808_ (F)Lnet/minecraft/world/phys/Vec3; net/minecraft/client/multiplayer/ClientLevel/getCloudColor (F)Lnet/minecraft/world/phys/Vec3; +MD: net/minecraft/client/multiplayer/ClientLevel/m_104810_ ()V net/minecraft/client/multiplayer/ClientLevel/clearTintCaches ()V +MD: net/minecraft/client/multiplayer/ClientLevel/m_104811_ (F)F net/minecraft/client/multiplayer/ClientLevel/getStarBrightness (F)F +MD: net/minecraft/client/multiplayer/ClientLevel/m_104813_ ()I net/minecraft/client/multiplayer/ClientLevel/getEntityCount ()I +MD: net/minecraft/client/multiplayer/ClientLevel/m_104819_ ()I net/minecraft/client/multiplayer/ClientLevel/getSkyFlashTime ()I +MD: net/minecraft/client/multiplayer/ClientLevel/m_104826_ ()V net/minecraft/client/multiplayer/ClientLevel/tickTime ()V +MD: net/minecraft/client/multiplayer/ClientLevel/m_142052_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V net/minecraft/client/multiplayer/ClientLevel/addDestroyBlockEffect (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V +MD: net/minecraft/client/multiplayer/ClientLevel/m_142325_ (Ljava/lang/String;Lnet/minecraft/world/level/saveddata/maps/MapItemSavedData;)V net/minecraft/client/multiplayer/ClientLevel/setMapData (Ljava/lang/String;Lnet/minecraft/world/level/saveddata/maps/MapItemSavedData;)V +MD: net/minecraft/client/multiplayer/ClientLevel/m_142646_ ()Lnet/minecraft/world/level/entity/LevelEntityGetter; net/minecraft/client/multiplayer/ClientLevel/getEntities ()Lnet/minecraft/world/level/entity/LevelEntityGetter; +MD: net/minecraft/client/multiplayer/ClientLevel/m_171642_ (ILnet/minecraft/world/entity/Entity$RemovalReason;)V net/minecraft/client/multiplayer/ClientLevel/removeEntity (ILnet/minecraft/world/entity/Entity$RemovalReason;)V +MD: net/minecraft/client/multiplayer/ClientLevel/m_171649_ (Lnet/minecraft/world/level/ChunkPos;)V net/minecraft/client/multiplayer/ClientLevel/onChunkLoaded (Lnet/minecraft/world/level/ChunkPos;)V +MD: net/minecraft/client/multiplayer/ClientLevel/m_171660_ (Lnet/minecraft/world/phys/Vec3;F)Lnet/minecraft/world/phys/Vec3; net/minecraft/client/multiplayer/ClientLevel/getSkyColor (Lnet/minecraft/world/phys/Vec3;F)Lnet/minecraft/world/phys/Vec3; +MD: net/minecraft/client/multiplayer/ClientLevel/m_171672_ (Ljava/util/Map;)V net/minecraft/client/multiplayer/ClientLevel/addMapData (Ljava/util/Map;)V +MD: net/minecraft/client/multiplayer/ClientLevel/m_171684_ ()Ljava/util/Map; net/minecraft/client/multiplayer/ClientLevel/getAllMapData ()Ljava/util/Map; +MD: net/minecraft/client/multiplayer/ClientLevel/m_183324_ ()Lnet/minecraft/world/ticks/LevelTickAccess; net/minecraft/client/multiplayer/ClientLevel/getFluidTicks ()Lnet/minecraft/world/ticks/LevelTickAccess; +MD: net/minecraft/client/multiplayer/ClientLevel/m_183326_ ()Lnet/minecraft/world/ticks/LevelTickAccess; net/minecraft/client/multiplayer/ClientLevel/getBlockTicks ()Lnet/minecraft/world/ticks/LevelTickAccess; +MD: net/minecraft/client/multiplayer/ClientLevel/m_183599_ (Lnet/minecraft/world/entity/Entity;)Z net/minecraft/client/multiplayer/ClientLevel/shouldTickDeath (Lnet/minecraft/world/entity/Entity;)Z +MD: net/minecraft/client/multiplayer/ClientLevel/m_194141_ ()V net/minecraft/client/multiplayer/ClientLevel/pollLightUpdates ()V +MD: net/minecraft/client/multiplayer/ClientLevel/m_194152_ (Lnet/minecraft/world/level/ChunkPos;Lnet/minecraft/world/level/ColorResolver;Lnet/minecraft/client/color/block/BlockTintCache;)V net/minecraft/client/multiplayer/ClientLevel/lambda$onChunkLoaded$6 (Lnet/minecraft/world/level/ChunkPos;Lnet/minecraft/world/level/ColorResolver;Lnet/minecraft/client/color/block/BlockTintCache;)V +MD: net/minecraft/client/multiplayer/ClientLevel/m_194156_ (Lnet/minecraft/world/level/ColorResolver;Lnet/minecraft/client/color/block/BlockTintCache;)V net/minecraft/client/multiplayer/ClientLevel/lambda$clearTintCaches$7 (Lnet/minecraft/world/level/ColorResolver;Lnet/minecraft/client/color/block/BlockTintCache;)V +MD: net/minecraft/client/multiplayer/ClientLevel/m_194159_ (Lnet/minecraft/world/level/biome/BiomeManager;III)Lnet/minecraft/world/phys/Vec3; net/minecraft/client/multiplayer/ClientLevel/lambda$getSkyColor$11 (Lnet/minecraft/world/level/biome/BiomeManager;III)Lnet/minecraft/world/phys/Vec3; +MD: net/minecraft/client/multiplayer/ClientLevel/m_194167_ (Lnet/minecraft/core/BlockPos;)I net/minecraft/client/multiplayer/ClientLevel/lambda$new$2 (Lnet/minecraft/core/BlockPos;)I +MD: net/minecraft/client/multiplayer/ClientLevel/m_194169_ (Lit/unimi/dsi/fastutil/objects/Object2ObjectArrayMap;)V net/minecraft/client/multiplayer/ClientLevel/lambda$new$3 (Lit/unimi/dsi/fastutil/objects/Object2ObjectArrayMap;)V +MD: net/minecraft/client/multiplayer/ClientLevel/m_194171_ (Ljava/lang/Runnable;)V net/minecraft/client/multiplayer/ClientLevel/queueLightUpdate (Ljava/lang/Runnable;)V +MD: net/minecraft/client/multiplayer/ClientLevel/m_194173_ ()Z net/minecraft/client/multiplayer/ClientLevel/isLightUpdateQueueEmpty ()Z +MD: net/minecraft/client/multiplayer/ClientLevel/m_194174_ (I)V net/minecraft/client/multiplayer/ClientLevel/setServerSimulationDistance (I)V +MD: net/minecraft/client/multiplayer/ClientLevel/m_194176_ (Lnet/minecraft/core/BlockPos;)I net/minecraft/client/multiplayer/ClientLevel/lambda$new$1 (Lnet/minecraft/core/BlockPos;)I +MD: net/minecraft/client/multiplayer/ClientLevel/m_194180_ (Lnet/minecraft/core/BlockPos;)I net/minecraft/client/multiplayer/ClientLevel/lambda$new$0 (Lnet/minecraft/core/BlockPos;)I +MD: net/minecraft/client/multiplayer/ClientLevel/m_194182_ (Lnet/minecraft/world/entity/Entity;)V net/minecraft/client/multiplayer/ClientLevel/lambda$tickEntities$4 (Lnet/minecraft/world/entity/Entity;)V +MD: net/minecraft/client/multiplayer/ClientLevel/m_194186_ ()I net/minecraft/client/multiplayer/ClientLevel/getServerSimulationDistance ()I +MD: net/minecraft/client/multiplayer/ClientLevel/m_194187_ ()Lnet/minecraft/world/level/block/Block; net/minecraft/client/multiplayer/ClientLevel/getMarkerParticleTarget ()Lnet/minecraft/world/level/block/Block; +MD: net/minecraft/client/multiplayer/ClientLevel/m_194188_ ()Ljava/lang/String; net/minecraft/client/multiplayer/ClientLevel/lambda$fillReportDetails$10 ()Ljava/lang/String; +MD: net/minecraft/client/multiplayer/ClientLevel/m_194189_ ()Ljava/lang/String; net/minecraft/client/multiplayer/ClientLevel/lambda$fillReportDetails$9 ()Ljava/lang/String; +MD: net/minecraft/client/multiplayer/ClientLevel/m_203675_ (III)Lnet/minecraft/core/Holder; net/minecraft/client/multiplayer/ClientLevel/getUncachedNoiseBiome (III)Lnet/minecraft/core/Holder; +MD: net/minecraft/client/multiplayer/ClientLevel/m_213890_ (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/entity/Entity;Lnet/minecraft/core/Holder;Lnet/minecraft/sounds/SoundSource;FFJ)V net/minecraft/client/multiplayer/ClientLevel/playSeededSound (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/entity/Entity;Lnet/minecraft/core/Holder;Lnet/minecraft/sounds/SoundSource;FFJ)V +MD: net/minecraft/client/multiplayer/ClientLevel/m_214171_ (Lnet/minecraft/world/level/gameevent/GameEvent;Lnet/minecraft/world/phys/Vec3;Lnet/minecraft/world/level/gameevent/GameEvent$Context;)V net/minecraft/client/multiplayer/ClientLevel/gameEvent (Lnet/minecraft/world/level/gameevent/GameEvent;Lnet/minecraft/world/phys/Vec3;Lnet/minecraft/world/level/gameevent/GameEvent$Context;)V +MD: net/minecraft/client/multiplayer/ClientLevel/m_233601_ ()Lnet/minecraft/client/multiplayer/prediction/BlockStatePredictionHandler; net/minecraft/client/multiplayer/ClientLevel/getBlockStatePredictionHandler ()Lnet/minecraft/client/multiplayer/prediction/BlockStatePredictionHandler; +MD: net/minecraft/client/multiplayer/ClientLevel/m_233602_ (DDDLnet/minecraft/sounds/SoundEvent;Lnet/minecraft/sounds/SoundSource;FFZJ)V net/minecraft/client/multiplayer/ClientLevel/playSound (DDDLnet/minecraft/sounds/SoundEvent;Lnet/minecraft/sounds/SoundSource;FFZJ)V +MD: net/minecraft/client/multiplayer/ClientLevel/m_233612_ (IIIILnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/block/Block;Lnet/minecraft/core/BlockPos$MutableBlockPos;)V net/minecraft/client/multiplayer/ClientLevel/doAnimateTick (IIIILnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/block/Block;Lnet/minecraft/core/BlockPos$MutableBlockPos;)V +MD: net/minecraft/client/multiplayer/ClientLevel/m_233647_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/phys/Vec3;)V net/minecraft/client/multiplayer/ClientLevel/syncBlockState (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/phys/Vec3;)V +MD: net/minecraft/client/multiplayer/ClientLevel/m_233651_ (I)V net/minecraft/client/multiplayer/ClientLevel/handleBlockChangedAck (I)V +MD: net/minecraft/client/multiplayer/ClientLevel/m_233653_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;I)V net/minecraft/client/multiplayer/ClientLevel/setServerVerifiedBlockState (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;I)V +MD: net/minecraft/client/multiplayer/ClientLevel/m_246046_ ()Lnet/minecraft/world/flag/FeatureFlagSet; net/minecraft/client/multiplayer/ClientLevel/enabledFeatures ()Lnet/minecraft/world/flag/FeatureFlagSet; +MD: net/minecraft/client/multiplayer/ClientLevel/m_257084_ (Lnet/minecraft/world/entity/Entity;)Ljava/lang/String; net/minecraft/client/multiplayer/ClientLevel/lambda$tickNonPassenger$5 (Lnet/minecraft/world/entity/Entity;)Ljava/lang/String; +MD: net/minecraft/client/multiplayer/ClientLevel/m_257583_ (Ljava/lang/String;Lnet/minecraft/world/level/saveddata/maps/MapItemSavedData;)V net/minecraft/client/multiplayer/ClientLevel/overrideMapData (Ljava/lang/String;Lnet/minecraft/world/level/saveddata/maps/MapItemSavedData;)V +MD: net/minecraft/client/multiplayer/ClientLevel/m_262808_ (Lnet/minecraft/world/entity/player/Player;DDDLnet/minecraft/core/Holder;Lnet/minecraft/sounds/SoundSource;FFJ)V net/minecraft/client/multiplayer/ClientLevel/playSeededSound (Lnet/minecraft/world/entity/player/Player;DDDLnet/minecraft/core/Holder;Lnet/minecraft/sounds/SoundSource;FFJ)V +MD: net/minecraft/client/multiplayer/ClientLevel/m_263888_ (Lnet/minecraft/core/BlockPos$MutableBlockPos;Lnet/minecraft/world/level/biome/AmbientParticleSettings;)V net/minecraft/client/multiplayer/ClientLevel/lambda$doAnimateTick$8 (Lnet/minecraft/core/BlockPos$MutableBlockPos;Lnet/minecraft/world/level/biome/AmbientParticleSettings;)V +MD: net/minecraft/client/multiplayer/ClientLevel/m_46464_ ()Ljava/lang/String; net/minecraft/client/multiplayer/ClientLevel/gatherChunkSourceStats ()Ljava/lang/String; +MD: net/minecraft/client/multiplayer/ClientLevel/m_5503_ (Lnet/minecraft/network/protocol/Packet;)V net/minecraft/client/multiplayer/ClientLevel/sendPacketToServer (Lnet/minecraft/network/protocol/Packet;)V +MD: net/minecraft/client/multiplayer/ClientLevel/m_5898_ (Lnet/minecraft/world/entity/player/Player;ILnet/minecraft/core/BlockPos;I)V net/minecraft/client/multiplayer/ClientLevel/levelEvent (Lnet/minecraft/world/entity/player/Player;ILnet/minecraft/core/BlockPos;I)V +MD: net/minecraft/client/multiplayer/ClientLevel/m_6026_ (Lnet/minecraft/CrashReport;)Lnet/minecraft/CrashReportCategory; net/minecraft/client/multiplayer/ClientLevel/fillReportDetails (Lnet/minecraft/CrashReport;)Lnet/minecraft/CrashReportCategory; +MD: net/minecraft/client/multiplayer/ClientLevel/m_6106_ ()Lnet/minecraft/client/multiplayer/ClientLevel$ClientLevelData; net/minecraft/client/multiplayer/ClientLevel/getLevelData ()Lnet/minecraft/client/multiplayer/ClientLevel$ClientLevelData; +MD: net/minecraft/client/multiplayer/ClientLevel/m_6106_ ()Lnet/minecraft/world/level/storage/LevelData; net/minecraft/client/multiplayer/ClientLevel/getLevelData ()Lnet/minecraft/world/level/storage/LevelData; +MD: net/minecraft/client/multiplayer/ClientLevel/m_6171_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/ColorResolver;)I net/minecraft/client/multiplayer/ClientLevel/getBlockTint (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/ColorResolver;)I +MD: net/minecraft/client/multiplayer/ClientLevel/m_6188_ ()Lnet/minecraft/world/scores/Scoreboard; net/minecraft/client/multiplayer/ClientLevel/getScoreboard ()Lnet/minecraft/world/scores/Scoreboard; +MD: net/minecraft/client/multiplayer/ClientLevel/m_6485_ (Lnet/minecraft/core/particles/ParticleOptions;ZDDDDDD)V net/minecraft/client/multiplayer/ClientLevel/addAlwaysVisibleParticle (Lnet/minecraft/core/particles/ParticleOptions;ZDDDDDD)V +MD: net/minecraft/client/multiplayer/ClientLevel/m_6493_ (Lnet/minecraft/core/particles/ParticleOptions;ZDDDDDD)V net/minecraft/client/multiplayer/ClientLevel/addParticle (Lnet/minecraft/core/particles/ParticleOptions;ZDDDDDD)V +MD: net/minecraft/client/multiplayer/ClientLevel/m_6550_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/state/BlockState;)V net/minecraft/client/multiplayer/ClientLevel/setBlocksDirty (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/state/BlockState;)V +MD: net/minecraft/client/multiplayer/ClientLevel/m_6580_ (I)V net/minecraft/client/multiplayer/ClientLevel/setSkyFlashTime (I)V +MD: net/minecraft/client/multiplayer/ClientLevel/m_6798_ (ILnet/minecraft/core/BlockPos;I)V net/minecraft/client/multiplayer/ClientLevel/globalLevelEvent (ILnet/minecraft/core/BlockPos;I)V +MD: net/minecraft/client/multiplayer/ClientLevel/m_6801_ (ILnet/minecraft/core/BlockPos;I)V net/minecraft/client/multiplayer/ClientLevel/destroyBlockProgress (ILnet/minecraft/core/BlockPos;I)V +MD: net/minecraft/client/multiplayer/ClientLevel/m_6815_ (I)Lnet/minecraft/world/entity/Entity; net/minecraft/client/multiplayer/ClientLevel/getEntity (I)Lnet/minecraft/world/entity/Entity; +MD: net/minecraft/client/multiplayer/ClientLevel/m_6907_ ()Ljava/util/List; net/minecraft/client/multiplayer/ClientLevel/players ()Ljava/util/List; +MD: net/minecraft/client/multiplayer/ClientLevel/m_6933_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;II)Z net/minecraft/client/multiplayer/ClientLevel/setBlock (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;II)Z +MD: net/minecraft/client/multiplayer/ClientLevel/m_7106_ (Lnet/minecraft/core/particles/ParticleOptions;DDDDDD)V net/minecraft/client/multiplayer/ClientLevel/addParticle (Lnet/minecraft/core/particles/ParticleOptions;DDDDDD)V +MD: net/minecraft/client/multiplayer/ClientLevel/m_7107_ (Lnet/minecraft/core/particles/ParticleOptions;DDDDDD)V net/minecraft/client/multiplayer/ClientLevel/addAlwaysVisibleParticle (Lnet/minecraft/core/particles/ParticleOptions;DDDDDD)V +MD: net/minecraft/client/multiplayer/ClientLevel/m_7228_ (DDDDDDLnet/minecraft/nbt/CompoundTag;)V net/minecraft/client/multiplayer/ClientLevel/createFireworks (DDDDDDLnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/client/multiplayer/ClientLevel/m_7232_ (II)Z net/minecraft/client/multiplayer/ClientLevel/hasChunk (II)Z +MD: net/minecraft/client/multiplayer/ClientLevel/m_7260_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/state/BlockState;I)V net/minecraft/client/multiplayer/ClientLevel/sendBlockUpdated (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/state/BlockState;I)V +MD: net/minecraft/client/multiplayer/ClientLevel/m_7354_ ()I net/minecraft/client/multiplayer/ClientLevel/getFreeMapId ()I +MD: net/minecraft/client/multiplayer/ClientLevel/m_7462_ ()V net/minecraft/client/multiplayer/ClientLevel/disconnect ()V +MD: net/minecraft/client/multiplayer/ClientLevel/m_7465_ ()Lnet/minecraft/world/item/crafting/RecipeManager; net/minecraft/client/multiplayer/ClientLevel/getRecipeManager ()Lnet/minecraft/world/item/crafting/RecipeManager; +MD: net/minecraft/client/multiplayer/ClientLevel/m_7489_ (Ljava/lang/String;)Lnet/minecraft/world/level/saveddata/maps/MapItemSavedData; net/minecraft/client/multiplayer/ClientLevel/getMapData (Ljava/lang/String;)Lnet/minecraft/world/level/saveddata/maps/MapItemSavedData; +MD: net/minecraft/client/multiplayer/ClientLevel/m_7717_ (Lnet/minecraft/core/Direction;Z)F net/minecraft/client/multiplayer/ClientLevel/getShade (Lnet/minecraft/core/Direction;Z)F +MD: net/minecraft/client/multiplayer/ClientLevel/m_7726_ ()Lnet/minecraft/world/level/chunk/ChunkSource; net/minecraft/client/multiplayer/ClientLevel/getChunkSource ()Lnet/minecraft/world/level/chunk/ChunkSource; +MD: net/minecraft/client/multiplayer/ClientLevel/m_7726_ ()Lnet/minecraft/client/multiplayer/ClientChunkCache; net/minecraft/client/multiplayer/ClientLevel/getChunkSource ()Lnet/minecraft/client/multiplayer/ClientChunkCache; +MD: net/minecraft/client/multiplayer/ClientLevel/m_7785_ (DDDLnet/minecraft/sounds/SoundEvent;Lnet/minecraft/sounds/SoundSource;FFZ)V net/minecraft/client/multiplayer/ClientLevel/playLocalSound (DDDLnet/minecraft/sounds/SoundEvent;Lnet/minecraft/sounds/SoundSource;FFZ)V +MD: net/minecraft/client/multiplayer/ClientLevel/toString ()Ljava/lang/String; net/minecraft/client/multiplayer/ClientLevel/toString ()Ljava/lang/String; +MD: net/minecraft/client/multiplayer/ClientLevel$1/ ()V net/minecraft/client/multiplayer/ClientLevel$1/ ()V +MD: net/minecraft/client/multiplayer/ClientLevel$ClientLevelData/ (Lnet/minecraft/world/Difficulty;ZZ)V net/minecraft/client/multiplayer/ClientLevel$ClientLevelData/ (Lnet/minecraft/world/Difficulty;ZZ)V +MD: net/minecraft/client/multiplayer/ClientLevel$ClientLevelData/m_104849_ (J)V net/minecraft/client/multiplayer/ClientLevel$ClientLevelData/setGameTime (J)V +MD: net/minecraft/client/multiplayer/ClientLevel$ClientLevelData/m_104851_ (Lnet/minecraft/world/Difficulty;)V net/minecraft/client/multiplayer/ClientLevel$ClientLevelData/setDifficulty (Lnet/minecraft/world/Difficulty;)V +MD: net/minecraft/client/multiplayer/ClientLevel$ClientLevelData/m_104858_ (Z)V net/minecraft/client/multiplayer/ClientLevel$ClientLevelData/setDifficultyLocked (Z)V +MD: net/minecraft/client/multiplayer/ClientLevel$ClientLevelData/m_104863_ (J)V net/minecraft/client/multiplayer/ClientLevel$ClientLevelData/setDayTime (J)V +MD: net/minecraft/client/multiplayer/ClientLevel$ClientLevelData/m_142471_ (Lnet/minecraft/CrashReportCategory;Lnet/minecraft/world/level/LevelHeightAccessor;)V net/minecraft/client/multiplayer/ClientLevel$ClientLevelData/fillCrashReportCategory (Lnet/minecraft/CrashReportCategory;Lnet/minecraft/world/level/LevelHeightAccessor;)V +MD: net/minecraft/client/multiplayer/ClientLevel$ClientLevelData/m_171687_ (Lnet/minecraft/world/level/LevelHeightAccessor;)D net/minecraft/client/multiplayer/ClientLevel$ClientLevelData/getHorizonHeight (Lnet/minecraft/world/level/LevelHeightAccessor;)D +MD: net/minecraft/client/multiplayer/ClientLevel$ClientLevelData/m_205519_ ()F net/minecraft/client/multiplayer/ClientLevel$ClientLevelData/getClearColorScale ()F +MD: net/minecraft/client/multiplayer/ClientLevel$ClientLevelData/m_5466_ ()Z net/minecraft/client/multiplayer/ClientLevel$ClientLevelData/isHardcore ()Z +MD: net/minecraft/client/multiplayer/ClientLevel$ClientLevelData/m_5470_ ()Lnet/minecraft/world/level/GameRules; net/minecraft/client/multiplayer/ClientLevel$ClientLevelData/getGameRules ()Lnet/minecraft/world/level/GameRules; +MD: net/minecraft/client/multiplayer/ClientLevel$ClientLevelData/m_5472_ ()Lnet/minecraft/world/Difficulty; net/minecraft/client/multiplayer/ClientLevel$ClientLevelData/getDifficulty ()Lnet/minecraft/world/Difficulty; +MD: net/minecraft/client/multiplayer/ClientLevel$ClientLevelData/m_5474_ ()Z net/minecraft/client/multiplayer/ClientLevel$ClientLevelData/isDifficultyLocked ()Z +MD: net/minecraft/client/multiplayer/ClientLevel$ClientLevelData/m_5565_ (Z)V net/minecraft/client/multiplayer/ClientLevel$ClientLevelData/setRaining (Z)V +MD: net/minecraft/client/multiplayer/ClientLevel$ClientLevelData/m_6395_ (I)V net/minecraft/client/multiplayer/ClientLevel$ClientLevelData/setXSpawn (I)V +MD: net/minecraft/client/multiplayer/ClientLevel$ClientLevelData/m_6397_ (I)V net/minecraft/client/multiplayer/ClientLevel$ClientLevelData/setYSpawn (I)V +MD: net/minecraft/client/multiplayer/ClientLevel$ClientLevelData/m_6400_ (I)V net/minecraft/client/multiplayer/ClientLevel$ClientLevelData/setZSpawn (I)V +MD: net/minecraft/client/multiplayer/ClientLevel$ClientLevelData/m_6526_ ()I net/minecraft/client/multiplayer/ClientLevel$ClientLevelData/getZSpawn ()I +MD: net/minecraft/client/multiplayer/ClientLevel$ClientLevelData/m_6527_ ()I net/minecraft/client/multiplayer/ClientLevel$ClientLevelData/getYSpawn ()I +MD: net/minecraft/client/multiplayer/ClientLevel$ClientLevelData/m_6533_ ()Z net/minecraft/client/multiplayer/ClientLevel$ClientLevelData/isRaining ()Z +MD: net/minecraft/client/multiplayer/ClientLevel$ClientLevelData/m_6534_ ()Z net/minecraft/client/multiplayer/ClientLevel$ClientLevelData/isThundering ()Z +MD: net/minecraft/client/multiplayer/ClientLevel$ClientLevelData/m_6789_ ()I net/minecraft/client/multiplayer/ClientLevel$ClientLevelData/getXSpawn ()I +MD: net/minecraft/client/multiplayer/ClientLevel$ClientLevelData/m_6790_ ()F net/minecraft/client/multiplayer/ClientLevel$ClientLevelData/getSpawnAngle ()F +MD: net/minecraft/client/multiplayer/ClientLevel$ClientLevelData/m_6792_ ()J net/minecraft/client/multiplayer/ClientLevel$ClientLevelData/getDayTime ()J +MD: net/minecraft/client/multiplayer/ClientLevel$ClientLevelData/m_6793_ ()J net/minecraft/client/multiplayer/ClientLevel$ClientLevelData/getGameTime ()J +MD: net/minecraft/client/multiplayer/ClientLevel$ClientLevelData/m_7113_ (F)V net/minecraft/client/multiplayer/ClientLevel$ClientLevelData/setSpawnAngle (F)V +MD: net/minecraft/client/multiplayer/ClientLevel$ClientLevelData/m_7250_ (Lnet/minecraft/core/BlockPos;F)V net/minecraft/client/multiplayer/ClientLevel$ClientLevelData/setSpawn (Lnet/minecraft/core/BlockPos;F)V +MD: net/minecraft/client/multiplayer/ClientLevel$EntityCallbacks/ (Lnet/minecraft/client/multiplayer/ClientLevel;)V net/minecraft/client/multiplayer/ClientLevel$EntityCallbacks/ (Lnet/minecraft/client/multiplayer/ClientLevel;)V +MD: net/minecraft/client/multiplayer/ClientLevel$EntityCallbacks/m_141981_ (Ljava/lang/Object;)V net/minecraft/client/multiplayer/ClientLevel$EntityCallbacks/onTrackingEnd (Ljava/lang/Object;)V +MD: net/minecraft/client/multiplayer/ClientLevel$EntityCallbacks/m_141981_ (Lnet/minecraft/world/entity/Entity;)V net/minecraft/client/multiplayer/ClientLevel$EntityCallbacks/onTrackingEnd (Lnet/minecraft/world/entity/Entity;)V +MD: net/minecraft/client/multiplayer/ClientLevel$EntityCallbacks/m_141983_ (Ljava/lang/Object;)V net/minecraft/client/multiplayer/ClientLevel$EntityCallbacks/onTickingEnd (Ljava/lang/Object;)V +MD: net/minecraft/client/multiplayer/ClientLevel$EntityCallbacks/m_141983_ (Lnet/minecraft/world/entity/Entity;)V net/minecraft/client/multiplayer/ClientLevel$EntityCallbacks/onTickingEnd (Lnet/minecraft/world/entity/Entity;)V +MD: net/minecraft/client/multiplayer/ClientLevel$EntityCallbacks/m_141985_ (Ljava/lang/Object;)V net/minecraft/client/multiplayer/ClientLevel$EntityCallbacks/onTrackingStart (Ljava/lang/Object;)V +MD: net/minecraft/client/multiplayer/ClientLevel$EntityCallbacks/m_141985_ (Lnet/minecraft/world/entity/Entity;)V net/minecraft/client/multiplayer/ClientLevel$EntityCallbacks/onTrackingStart (Lnet/minecraft/world/entity/Entity;)V +MD: net/minecraft/client/multiplayer/ClientLevel$EntityCallbacks/m_141986_ (Lnet/minecraft/world/entity/Entity;)V net/minecraft/client/multiplayer/ClientLevel$EntityCallbacks/onDestroyed (Lnet/minecraft/world/entity/Entity;)V +MD: net/minecraft/client/multiplayer/ClientLevel$EntityCallbacks/m_141986_ (Ljava/lang/Object;)V net/minecraft/client/multiplayer/ClientLevel$EntityCallbacks/onDestroyed (Ljava/lang/Object;)V +MD: net/minecraft/client/multiplayer/ClientLevel$EntityCallbacks/m_141987_ (Lnet/minecraft/world/entity/Entity;)V net/minecraft/client/multiplayer/ClientLevel$EntityCallbacks/onTickingStart (Lnet/minecraft/world/entity/Entity;)V +MD: net/minecraft/client/multiplayer/ClientLevel$EntityCallbacks/m_141987_ (Ljava/lang/Object;)V net/minecraft/client/multiplayer/ClientLevel$EntityCallbacks/onTickingStart (Ljava/lang/Object;)V +MD: net/minecraft/client/multiplayer/ClientLevel$EntityCallbacks/m_141989_ (Ljava/lang/Object;)V net/minecraft/client/multiplayer/ClientLevel$EntityCallbacks/onCreated (Ljava/lang/Object;)V +MD: net/minecraft/client/multiplayer/ClientLevel$EntityCallbacks/m_141989_ (Lnet/minecraft/world/entity/Entity;)V net/minecraft/client/multiplayer/ClientLevel$EntityCallbacks/onCreated (Lnet/minecraft/world/entity/Entity;)V +MD: net/minecraft/client/multiplayer/ClientLevel$EntityCallbacks/m_214006_ (Ljava/lang/Object;)V net/minecraft/client/multiplayer/ClientLevel$EntityCallbacks/onSectionChange (Ljava/lang/Object;)V +MD: net/minecraft/client/multiplayer/ClientLevel$EntityCallbacks/m_214006_ (Lnet/minecraft/world/entity/Entity;)V net/minecraft/client/multiplayer/ClientLevel$EntityCallbacks/onSectionChange (Lnet/minecraft/world/entity/Entity;)V +MD: net/minecraft/client/multiplayer/ClientPacketListener/ ()V net/minecraft/client/multiplayer/ClientPacketListener/ ()V +MD: net/minecraft/client/multiplayer/ClientPacketListener/ (Lnet/minecraft/client/Minecraft;Lnet/minecraft/client/gui/screens/Screen;Lnet/minecraft/network/Connection;Lnet/minecraft/client/multiplayer/ServerData;Lcom/mojang/authlib/GameProfile;Lnet/minecraft/client/telemetry/WorldSessionTelemetryManager;)V net/minecraft/client/multiplayer/ClientPacketListener/ (Lnet/minecraft/client/Minecraft;Lnet/minecraft/client/gui/screens/Screen;Lnet/minecraft/network/Connection;Lnet/minecraft/client/multiplayer/ServerData;Lcom/mojang/authlib/GameProfile;Lnet/minecraft/client/telemetry/WorldSessionTelemetryManager;)V +MD: net/minecraft/client/multiplayer/ClientPacketListener/m_104910_ ()Lnet/minecraft/network/Connection; net/minecraft/client/multiplayer/ClientPacketListener/getConnection ()Lnet/minecraft/network/Connection; +MD: net/minecraft/client/multiplayer/ClientPacketListener/m_104927_ (Lnet/minecraft/world/entity/player/Player;)Lnet/minecraft/world/item/ItemStack; net/minecraft/client/multiplayer/ClientPacketListener/findTotem (Lnet/minecraft/world/entity/player/Player;)Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/client/multiplayer/ClientPacketListener/m_104938_ (Ljava/lang/String;)Lnet/minecraft/client/multiplayer/PlayerInfo; net/minecraft/client/multiplayer/ClientPacketListener/getPlayerInfo (Ljava/lang/String;)Lnet/minecraft/client/multiplayer/PlayerInfo; +MD: net/minecraft/client/multiplayer/ClientPacketListener/m_104949_ (Ljava/util/UUID;)Lnet/minecraft/client/multiplayer/PlayerInfo; net/minecraft/client/multiplayer/ClientPacketListener/getPlayerInfo (Ljava/util/UUID;)Lnet/minecraft/client/multiplayer/PlayerInfo; +MD: net/minecraft/client/multiplayer/ClientPacketListener/m_104951_ (Ljava/util/concurrent/CompletableFuture;)V net/minecraft/client/multiplayer/ClientPacketListener/downloadCallback (Ljava/util/concurrent/CompletableFuture;)V +MD: net/minecraft/client/multiplayer/ClientPacketListener/m_104955_ (Lnet/minecraft/network/protocol/Packet;)V net/minecraft/client/multiplayer/ClientPacketListener/send (Lnet/minecraft/network/protocol/Packet;)V +MD: net/minecraft/client/multiplayer/ClientPacketListener/m_105135_ (Lnet/minecraft/network/protocol/game/ServerboundResourcePackPacket$Action;)V net/minecraft/client/multiplayer/ClientPacketListener/send (Lnet/minecraft/network/protocol/game/ServerboundResourcePackPacket$Action;)V +MD: net/minecraft/client/multiplayer/ClientPacketListener/m_105137_ ()Lnet/minecraft/client/multiplayer/ClientSuggestionProvider; net/minecraft/client/multiplayer/ClientPacketListener/getSuggestionsProvider ()Lnet/minecraft/client/multiplayer/ClientSuggestionProvider; +MD: net/minecraft/client/multiplayer/ClientPacketListener/m_105141_ ()Lnet/minecraft/world/item/crafting/RecipeManager; net/minecraft/client/multiplayer/ClientPacketListener/getRecipeManager ()Lnet/minecraft/world/item/crafting/RecipeManager; +MD: net/minecraft/client/multiplayer/ClientPacketListener/m_105142_ ()Ljava/util/Collection; net/minecraft/client/multiplayer/ClientPacketListener/getOnlinePlayers ()Ljava/util/Collection; +MD: net/minecraft/client/multiplayer/ClientPacketListener/m_105143_ ()Ljava/util/Collection; net/minecraft/client/multiplayer/ClientPacketListener/getOnlinePlayerIds ()Ljava/util/Collection; +MD: net/minecraft/client/multiplayer/ClientPacketListener/m_105144_ ()Lcom/mojang/authlib/GameProfile; net/minecraft/client/multiplayer/ClientPacketListener/getLocalGameProfile ()Lcom/mojang/authlib/GameProfile; +MD: net/minecraft/client/multiplayer/ClientPacketListener/m_105145_ ()Lnet/minecraft/client/multiplayer/ClientAdvancements; net/minecraft/client/multiplayer/ClientPacketListener/getAdvancements ()Lnet/minecraft/client/multiplayer/ClientAdvancements; +MD: net/minecraft/client/multiplayer/ClientPacketListener/m_105146_ ()Lcom/mojang/brigadier/CommandDispatcher; net/minecraft/client/multiplayer/ClientPacketListener/getCommands ()Lcom/mojang/brigadier/CommandDispatcher; +MD: net/minecraft/client/multiplayer/ClientPacketListener/m_105147_ ()Lnet/minecraft/client/multiplayer/ClientLevel; net/minecraft/client/multiplayer/ClientPacketListener/getLevel ()Lnet/minecraft/client/multiplayer/ClientLevel; +MD: net/minecraft/client/multiplayer/ClientPacketListener/m_105149_ ()Lnet/minecraft/client/DebugQueryHandler; net/minecraft/client/multiplayer/ClientPacketListener/getDebugQueryHandler ()Lnet/minecraft/client/DebugQueryHandler; +MD: net/minecraft/client/multiplayer/ClientPacketListener/m_105150_ ()Ljava/util/UUID; net/minecraft/client/multiplayer/ClientPacketListener/getId ()Ljava/util/UUID; +MD: net/minecraft/client/multiplayer/ClientPacketListener/m_105151_ ()Ljava/util/Set; net/minecraft/client/multiplayer/ClientPacketListener/levels ()Ljava/util/Set; +MD: net/minecraft/client/multiplayer/ClientPacketListener/m_105152_ ()Lnet/minecraft/core/RegistryAccess; net/minecraft/client/multiplayer/ClientPacketListener/registryAccess ()Lnet/minecraft/core/RegistryAccess; +MD: net/minecraft/client/multiplayer/ClientPacketListener/m_141913_ (Lnet/minecraft/network/protocol/game/ClientboundSetSubtitleTextPacket;)V net/minecraft/client/multiplayer/ClientPacketListener/setSubtitleText (Lnet/minecraft/network/protocol/game/ClientboundSetSubtitleTextPacket;)V +MD: net/minecraft/client/multiplayer/ClientPacketListener/m_141955_ (Lnet/minecraft/network/protocol/game/ClientboundPingPacket;)V net/minecraft/client/multiplayer/ClientPacketListener/handlePing (Lnet/minecraft/network/protocol/game/ClientboundPingPacket;)V +MD: net/minecraft/client/multiplayer/ClientPacketListener/m_142056_ (Lnet/minecraft/network/protocol/game/ClientboundSetBorderWarningDelayPacket;)V net/minecraft/client/multiplayer/ClientPacketListener/handleSetBorderWarningDelay (Lnet/minecraft/network/protocol/game/ClientboundSetBorderWarningDelayPacket;)V +MD: net/minecraft/client/multiplayer/ClientPacketListener/m_142058_ (Lnet/minecraft/network/protocol/game/ClientboundPlayerCombatEnterPacket;)V net/minecraft/client/multiplayer/ClientPacketListener/handlePlayerCombatEnter (Lnet/minecraft/network/protocol/game/ClientboundPlayerCombatEnterPacket;)V +MD: net/minecraft/client/multiplayer/ClientPacketListener/m_142185_ (Lnet/minecraft/network/protocol/game/ClientboundSetTitlesAnimationPacket;)V net/minecraft/client/multiplayer/ClientPacketListener/setTitlesAnimation (Lnet/minecraft/network/protocol/game/ClientboundSetTitlesAnimationPacket;)V +MD: net/minecraft/client/multiplayer/ClientPacketListener/m_142234_ (Lnet/minecraft/network/protocol/game/ClientboundPlayerCombatEndPacket;)V net/minecraft/client/multiplayer/ClientPacketListener/handlePlayerCombatEnd (Lnet/minecraft/network/protocol/game/ClientboundPlayerCombatEndPacket;)V +MD: net/minecraft/client/multiplayer/ClientPacketListener/m_142237_ (Lnet/minecraft/network/protocol/game/ClientboundInitializeBorderPacket;)V net/minecraft/client/multiplayer/ClientPacketListener/handleInitializeBorder (Lnet/minecraft/network/protocol/game/ClientboundInitializeBorderPacket;)V +MD: net/minecraft/client/multiplayer/ClientPacketListener/m_142238_ (Lnet/minecraft/network/protocol/game/ClientboundSetBorderSizePacket;)V net/minecraft/client/multiplayer/ClientPacketListener/handleSetBorderSize (Lnet/minecraft/network/protocol/game/ClientboundSetBorderSizePacket;)V +MD: net/minecraft/client/multiplayer/ClientPacketListener/m_142442_ (Lnet/minecraft/network/protocol/game/ClientboundSetTitleTextPacket;)V net/minecraft/client/multiplayer/ClientPacketListener/setTitleText (Lnet/minecraft/network/protocol/game/ClientboundSetTitleTextPacket;)V +MD: net/minecraft/client/multiplayer/ClientPacketListener/m_142456_ (Lnet/minecraft/network/protocol/game/ClientboundSetActionBarTextPacket;)V net/minecraft/client/multiplayer/ClientPacketListener/setActionBarText (Lnet/minecraft/network/protocol/game/ClientboundSetActionBarTextPacket;)V +MD: net/minecraft/client/multiplayer/ClientPacketListener/m_142612_ (Lnet/minecraft/network/protocol/game/ClientboundSetBorderCenterPacket;)V net/minecraft/client/multiplayer/ClientPacketListener/handleSetBorderCenter (Lnet/minecraft/network/protocol/game/ClientboundSetBorderCenterPacket;)V +MD: net/minecraft/client/multiplayer/ClientPacketListener/m_142686_ (Lnet/minecraft/network/protocol/game/ClientboundSetBorderLerpSizePacket;)V net/minecraft/client/multiplayer/ClientPacketListener/handleSetBorderLerpSize (Lnet/minecraft/network/protocol/game/ClientboundSetBorderLerpSizePacket;)V +MD: net/minecraft/client/multiplayer/ClientPacketListener/m_142696_ (Lnet/minecraft/network/protocol/game/ClientboundSetBorderWarningDistancePacket;)V net/minecraft/client/multiplayer/ClientPacketListener/handleSetBorderWarningDistance (Lnet/minecraft/network/protocol/game/ClientboundSetBorderWarningDistancePacket;)V +MD: net/minecraft/client/multiplayer/ClientPacketListener/m_142747_ (Lnet/minecraft/network/protocol/game/ClientboundPlayerCombatKillPacket;)V net/minecraft/client/multiplayer/ClientPacketListener/handlePlayerCombatKill (Lnet/minecraft/network/protocol/game/ClientboundPlayerCombatKillPacket;)V +MD: net/minecraft/client/multiplayer/ClientPacketListener/m_142766_ (Lnet/minecraft/network/protocol/game/ClientboundClearTitlesPacket;)V net/minecraft/client/multiplayer/ClientPacketListener/handleTitlesClear (Lnet/minecraft/network/protocol/game/ClientboundClearTitlesPacket;)V +MD: net/minecraft/client/multiplayer/ClientPacketListener/m_171734_ (IILnet/minecraft/world/level/lighting/LevelLightEngine;Lnet/minecraft/world/level/LightLayer;Ljava/util/BitSet;Ljava/util/BitSet;Ljava/util/Iterator;)V net/minecraft/client/multiplayer/ClientPacketListener/readSectionList (IILnet/minecraft/world/level/lighting/LevelLightEngine;Lnet/minecraft/world/level/LightLayer;Ljava/util/BitSet;Ljava/util/BitSet;Ljava/util/Iterator;)V +MD: net/minecraft/client/multiplayer/ClientPacketListener/m_171759_ (Lnet/minecraft/network/chat/Component;Lnet/minecraft/network/chat/Component;)Lnet/minecraft/network/chat/Component; net/minecraft/client/multiplayer/ClientPacketListener/preparePackPrompt (Lnet/minecraft/network/chat/Component;Lnet/minecraft/network/chat/Component;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/client/multiplayer/ClientPacketListener/m_182047_ (Lnet/minecraft/network/protocol/game/ClientboundRemoveEntitiesPacket;)V net/minecraft/client/multiplayer/ClientPacketListener/handleRemoveEntities (Lnet/minecraft/network/protocol/game/ClientboundRemoveEntitiesPacket;)V +MD: net/minecraft/client/multiplayer/ClientPacketListener/m_183388_ (Lnet/minecraft/network/protocol/game/ClientboundLevelChunkWithLightPacket;)V net/minecraft/client/multiplayer/ClientPacketListener/handleLevelChunkWithLight (Lnet/minecraft/network/protocol/game/ClientboundLevelChunkWithLightPacket;)V +MD: net/minecraft/client/multiplayer/ClientPacketListener/m_183514_ (Lnet/minecraft/network/protocol/game/ClientboundLightUpdatePacket;)V net/minecraft/client/multiplayer/ClientPacketListener/handleLightUpdatePacket (Lnet/minecraft/network/protocol/game/ClientboundLightUpdatePacket;)V +MD: net/minecraft/client/multiplayer/ClientPacketListener/m_183623_ (Lnet/minecraft/network/protocol/game/ClientboundSetSimulationDistancePacket;)V net/minecraft/client/multiplayer/ClientPacketListener/handleSetSimulationDistance (Lnet/minecraft/network/protocol/game/ClientboundSetSimulationDistancePacket;)V +MD: net/minecraft/client/multiplayer/ClientPacketListener/m_194198_ (IILnet/minecraft/network/protocol/game/ClientboundLevelChunkPacketData;)V net/minecraft/client/multiplayer/ClientPacketListener/updateLevelChunk (IILnet/minecraft/network/protocol/game/ClientboundLevelChunkPacketData;)V +MD: net/minecraft/client/multiplayer/ClientPacketListener/m_194212_ (Lnet/minecraft/world/level/chunk/LevelChunk;II)V net/minecraft/client/multiplayer/ClientPacketListener/enableChunkLight (Lnet/minecraft/world/level/chunk/LevelChunk;II)V +MD: net/minecraft/client/multiplayer/ClientPacketListener/m_194248_ (IILnet/minecraft/network/protocol/game/ClientboundLightUpdatePacketData;)V net/minecraft/client/multiplayer/ClientPacketListener/applyLightData (IILnet/minecraft/network/protocol/game/ClientboundLightUpdatePacketData;)V +MD: net/minecraft/client/multiplayer/ClientPacketListener/m_194252_ (Lnet/minecraft/network/protocol/game/ClientboundForgetLevelChunkPacket;)V net/minecraft/client/multiplayer/ClientPacketListener/queueLightRemoval (Lnet/minecraft/network/protocol/game/ClientboundForgetLevelChunkPacket;)V +MD: net/minecraft/client/multiplayer/ClientPacketListener/m_205520_ (I)V net/minecraft/client/multiplayer/ClientPacketListener/lambda$handleRemoveEntities$2 (I)V +MD: net/minecraft/client/multiplayer/ClientPacketListener/m_205526_ (Lnet/minecraft/world/entity/Entity;Lcom/mojang/datafixers/util/Pair;)V net/minecraft/client/multiplayer/ClientPacketListener/lambda$handleSetEquipment$7 (Lnet/minecraft/world/entity/Entity;Lcom/mojang/datafixers/util/Pair;)V +MD: net/minecraft/client/multiplayer/ClientPacketListener/m_205538_ (Lnet/minecraft/client/ClientRecipeBook;Lnet/minecraft/client/gui/screens/recipebook/RecipeCollection;)V net/minecraft/client/multiplayer/ClientPacketListener/lambda$handleAddOrRemoveRecipes$10 (Lnet/minecraft/client/ClientRecipeBook;Lnet/minecraft/client/gui/screens/recipebook/RecipeCollection;)V +MD: net/minecraft/client/multiplayer/ClientPacketListener/m_205555_ (Lnet/minecraft/network/protocol/game/ClientboundBlockEntityDataPacket;Lnet/minecraft/world/level/block/entity/BlockEntity;)V net/minecraft/client/multiplayer/ClientPacketListener/lambda$handleBlockEntityData$6 (Lnet/minecraft/network/protocol/game/ClientboundBlockEntityDataPacket;Lnet/minecraft/world/level/block/entity/BlockEntity;)V +MD: net/minecraft/client/multiplayer/ClientPacketListener/m_205558_ (Lnet/minecraft/resources/ResourceKey;)Ljava/lang/IllegalStateException; net/minecraft/client/multiplayer/ClientPacketListener/lambda$updateTagsForRegistry$11 (Lnet/minecraft/resources/ResourceKey;)Ljava/lang/IllegalStateException; +MD: net/minecraft/client/multiplayer/ClientPacketListener/m_205560_ (Lnet/minecraft/resources/ResourceKey;Lnet/minecraft/tags/TagNetworkSerialization$NetworkPayload;)V net/minecraft/client/multiplayer/ClientPacketListener/updateTagsForRegistry (Lnet/minecraft/resources/ResourceKey;Lnet/minecraft/tags/TagNetworkSerialization$NetworkPayload;)V +MD: net/minecraft/client/multiplayer/ClientPacketListener/m_205571_ (IILnet/minecraft/network/protocol/game/ClientboundLightUpdatePacketData;)V net/minecraft/client/multiplayer/ClientPacketListener/lambda$handleLevelChunkWithLight$4 (IILnet/minecraft/network/protocol/game/ClientboundLightUpdatePacketData;)V +MD: net/minecraft/client/multiplayer/ClientPacketListener/m_213565_ (Lnet/minecraft/network/protocol/game/ClientboundPlayerInfoRemovePacket;)V net/minecraft/client/multiplayer/ClientPacketListener/handlePlayerInfoRemove (Lnet/minecraft/network/protocol/game/ClientboundPlayerInfoRemovePacket;)V +MD: net/minecraft/client/multiplayer/ClientPacketListener/m_213629_ (Lnet/minecraft/network/protocol/game/ClientboundPlayerChatPacket;)V net/minecraft/client/multiplayer/ClientPacketListener/handlePlayerChat (Lnet/minecraft/network/protocol/game/ClientboundPlayerChatPacket;)V +MD: net/minecraft/client/multiplayer/ClientPacketListener/m_213672_ (Lnet/minecraft/network/protocol/game/ClientboundServerDataPacket;)V net/minecraft/client/multiplayer/ClientPacketListener/handleServerData (Lnet/minecraft/network/protocol/game/ClientboundServerDataPacket;)V +MD: net/minecraft/client/multiplayer/ClientPacketListener/m_213990_ (Lnet/minecraft/network/protocol/game/ClientboundSystemChatPacket;)V net/minecraft/client/multiplayer/ClientPacketListener/handleSystemChat (Lnet/minecraft/network/protocol/game/ClientboundSystemChatPacket;)V +MD: net/minecraft/client/multiplayer/ClientPacketListener/m_214045_ (Lnet/minecraft/network/protocol/game/ClientboundPlayerInfoUpdatePacket;)V net/minecraft/client/multiplayer/ClientPacketListener/handlePlayerInfoUpdate (Lnet/minecraft/network/protocol/game/ClientboundPlayerInfoUpdatePacket;)V +MD: net/minecraft/client/multiplayer/ClientPacketListener/m_214108_ (Lnet/minecraft/network/protocol/game/ClientboundBlockChangedAckPacket;)V net/minecraft/client/multiplayer/ClientPacketListener/handleBlockChangedAck (Lnet/minecraft/network/protocol/game/ClientboundBlockChangedAckPacket;)V +MD: net/minecraft/client/multiplayer/ClientPacketListener/m_233661_ (Lnet/minecraft/resources/ResourceLocation;)Ljava/lang/IllegalArgumentException; net/minecraft/client/multiplayer/ClientPacketListener/lambda$handleCustomPayload$17 (Lnet/minecraft/resources/ResourceLocation;)Ljava/lang/IllegalArgumentException; +MD: net/minecraft/client/multiplayer/ClientPacketListener/m_233663_ (Lnet/minecraft/world/entity/Entity;)V net/minecraft/client/multiplayer/ClientPacketListener/postAddEntitySoundInstance (Lnet/minecraft/world/entity/Entity;)V +MD: net/minecraft/client/multiplayer/ClientPacketListener/m_233665_ (Lnet/minecraft/world/inventory/AbstractContainerMenu;Lnet/minecraft/world/item/crafting/Recipe;)V net/minecraft/client/multiplayer/ClientPacketListener/lambda$handlePlaceRecipe$19 (Lnet/minecraft/world/inventory/AbstractContainerMenu;Lnet/minecraft/world/item/crafting/Recipe;)V +MD: net/minecraft/client/multiplayer/ClientPacketListener/m_233668_ (Lnet/minecraft/world/scores/PlayerTeam;Lnet/minecraft/network/protocol/game/ClientboundSetPlayerTeamPacket$Parameters;)V net/minecraft/client/multiplayer/ClientPacketListener/lambda$handleSetPlayerTeamPacket$18 (Lnet/minecraft/world/scores/PlayerTeam;Lnet/minecraft/network/protocol/game/ClientboundSetPlayerTeamPacket$Parameters;)V +MD: net/minecraft/client/multiplayer/ClientPacketListener/m_233679_ (Ljava/lang/Throwable;)Ljava/lang/Void; net/minecraft/client/multiplayer/ClientPacketListener/lambda$downloadCallback$16 (Ljava/lang/Throwable;)Ljava/lang/Void; +MD: net/minecraft/client/multiplayer/ClientPacketListener/m_233681_ (Ljava/net/URL;Ljava/lang/String;ZLnet/minecraft/network/protocol/game/ClientboundResourcePackPacket;)V net/minecraft/client/multiplayer/ClientPacketListener/lambda$handleResourcePack$14 (Ljava/net/URL;Ljava/lang/String;ZLnet/minecraft/network/protocol/game/ClientboundResourcePackPacket;)V +MD: net/minecraft/client/multiplayer/ClientPacketListener/m_233709_ (Ljava/lang/String;)Ljava/net/URL; net/minecraft/client/multiplayer/ClientPacketListener/parseResourcePackUrl (Ljava/lang/String;)Ljava/net/URL; +MD: net/minecraft/client/multiplayer/ClientPacketListener/m_233711_ (IILnet/minecraft/network/protocol/game/ClientboundLightUpdatePacketData;)V net/minecraft/client/multiplayer/ClientPacketListener/lambda$handleLightUpdatePacket$20 (IILnet/minecraft/network/protocol/game/ClientboundLightUpdatePacketData;)V +MD: net/minecraft/client/multiplayer/ClientPacketListener/m_233715_ ()V net/minecraft/client/multiplayer/ClientPacketListener/lambda$downloadCallback$15 ()V +MD: net/minecraft/client/multiplayer/ClientPacketListener/m_240695_ (Lnet/minecraft/network/protocol/game/ClientboundCustomChatCompletionsPacket;)V net/minecraft/client/multiplayer/ClientPacketListener/handleCustomChatCompletions (Lnet/minecraft/network/protocol/game/ClientboundCustomChatCompletionsPacket;)V +MD: net/minecraft/client/multiplayer/ClientPacketListener/m_241037_ (Lnet/minecraft/network/protocol/game/ClientboundDeleteChatPacket;)V net/minecraft/client/multiplayer/ClientPacketListener/handleDeleteChat (Lnet/minecraft/network/protocol/game/ClientboundDeleteChatPacket;)V +MD: net/minecraft/client/multiplayer/ClientPacketListener/m_241155_ (Lnet/minecraft/network/protocol/game/ClientboundUpdateEnabledFeaturesPacket;)V net/minecraft/client/multiplayer/ClientPacketListener/handleEnabledFeatures (Lnet/minecraft/network/protocol/game/ClientboundUpdateEnabledFeaturesPacket;)V +MD: net/minecraft/client/multiplayer/ClientPacketListener/m_242011_ (Lnet/minecraft/network/chat/PlayerChatMessage;Z)V net/minecraft/client/multiplayer/ClientPacketListener/markMessageAsProcessed (Lnet/minecraft/network/chat/PlayerChatMessage;Z)V +MD: net/minecraft/client/multiplayer/ClientPacketListener/m_244704_ (Ljava/net/URL;Ljava/lang/String;ZZ)V net/minecraft/client/multiplayer/ClientPacketListener/lambda$handleResourcePack$13 (Ljava/net/URL;Ljava/lang/String;ZZ)V +MD: net/minecraft/client/multiplayer/ClientPacketListener/m_244707_ (Ljava/time/Instant;JLnet/minecraft/network/chat/LastSeenMessagesTracker$Update;Ljava/lang/String;)Lnet/minecraft/network/chat/MessageSignature; net/minecraft/client/multiplayer/ClientPacketListener/lambda$sendCommand$21 (Ljava/time/Instant;JLnet/minecraft/network/chat/LastSeenMessagesTracker$Update;Ljava/lang/String;)Lnet/minecraft/network/chat/MessageSignature; +MD: net/minecraft/client/multiplayer/ClientPacketListener/m_245186_ (Ljava/lang/String;)Lcom/mojang/brigadier/ParseResults; net/minecraft/client/multiplayer/ClientPacketListener/parseCommand (Ljava/lang/String;)Lcom/mojang/brigadier/ParseResults; +MD: net/minecraft/client/multiplayer/ClientPacketListener/m_245416_ ()Lnet/minecraft/client/multiplayer/ServerData; net/minecraft/client/multiplayer/ClientPacketListener/getServerData ()Lnet/minecraft/client/multiplayer/ServerData; +MD: net/minecraft/client/multiplayer/ClientPacketListener/m_245842_ (Lnet/minecraft/network/protocol/game/ClientboundPlayerInfoUpdatePacket$Entry;Lnet/minecraft/client/multiplayer/PlayerInfo;)V net/minecraft/client/multiplayer/ClientPacketListener/initializeChatSession (Lnet/minecraft/network/protocol/game/ClientboundPlayerInfoUpdatePacket$Entry;Lnet/minecraft/client/multiplayer/PlayerInfo;)V +MD: net/minecraft/client/multiplayer/ClientPacketListener/m_246170_ ()Ljava/util/Collection; net/minecraft/client/multiplayer/ClientPacketListener/getListedOnlinePlayers ()Ljava/util/Collection; +MD: net/minecraft/client/multiplayer/ClientPacketListener/m_246175_ (Ljava/lang/String;)V net/minecraft/client/multiplayer/ClientPacketListener/sendChat (Ljava/lang/String;)V +MD: net/minecraft/client/multiplayer/ClientPacketListener/m_246351_ (Lnet/minecraft/world/flag/FeatureFlagSet;)Z net/minecraft/client/multiplayer/ClientPacketListener/isFeatureEnabled (Lnet/minecraft/world/flag/FeatureFlagSet;)Z +MD: net/minecraft/client/multiplayer/ClientPacketListener/m_246623_ (Ljava/lang/String;)V net/minecraft/client/multiplayer/ClientPacketListener/sendCommand (Ljava/lang/String;)V +MD: net/minecraft/client/multiplayer/ClientPacketListener/m_246979_ (Ljava/lang/String;)Z net/minecraft/client/multiplayer/ClientPacketListener/sendUnsignedCommand (Ljava/lang/String;)Z +MD: net/minecraft/client/multiplayer/ClientPacketListener/m_247016_ ()Lnet/minecraft/world/flag/FeatureFlagSet; net/minecraft/client/multiplayer/ClientPacketListener/enabledFeatures ()Lnet/minecraft/world/flag/FeatureFlagSet; +MD: net/minecraft/client/multiplayer/ClientPacketListener/m_247639_ (Lnet/minecraft/network/protocol/game/ClientboundPlayerInfoUpdatePacket$Action;Lnet/minecraft/network/protocol/game/ClientboundPlayerInfoUpdatePacket$Entry;Lnet/minecraft/client/multiplayer/PlayerInfo;)V net/minecraft/client/multiplayer/ClientPacketListener/applyPlayerInfoUpdate (Lnet/minecraft/network/protocol/game/ClientboundPlayerInfoUpdatePacket$Action;Lnet/minecraft/network/protocol/game/ClientboundPlayerInfoUpdatePacket$Entry;Lnet/minecraft/client/multiplayer/PlayerInfo;)V +MD: net/minecraft/client/multiplayer/ClientPacketListener/m_247711_ ()V net/minecraft/client/multiplayer/ClientPacketListener/sendChatAcknowledgement ()V +MD: net/minecraft/client/multiplayer/ClientPacketListener/m_252585_ (Ljava/util/Optional;)V net/minecraft/client/multiplayer/ClientPacketListener/lambda$tick$22 (Ljava/util/Optional;)V +MD: net/minecraft/client/multiplayer/ClientPacketListener/m_252587_ (Ljava/util/Optional;)V net/minecraft/client/multiplayer/ClientPacketListener/lambda$handleLogin$1 (Ljava/util/Optional;)V +MD: net/minecraft/client/multiplayer/ClientPacketListener/m_253150_ ()Z net/minecraft/client/multiplayer/ClientPacketListener/enforcesSecureChat ()Z +MD: net/minecraft/client/multiplayer/ClientPacketListener/m_257085_ (Lnet/minecraft/core/RegistryAccess$RegistryEntry;)V net/minecraft/client/multiplayer/ClientPacketListener/lambda$handleLogin$0 (Lnet/minecraft/core/RegistryAccess$RegistryEntry;)V +MD: net/minecraft/client/multiplayer/ClientPacketListener/m_260951_ (Lnet/minecraft/world/entity/player/ProfileKeyPair;)V net/minecraft/client/multiplayer/ClientPacketListener/setKeyPair (Lnet/minecraft/world/entity/player/ProfileKeyPair;)V +MD: net/minecraft/client/multiplayer/ClientPacketListener/m_261044_ ()V net/minecraft/client/multiplayer/ClientPacketListener/close ()V +MD: net/minecraft/client/multiplayer/ClientPacketListener/m_264143_ (Lnet/minecraft/network/protocol/game/ClientboundHurtAnimationPacket;)V net/minecraft/client/multiplayer/ClientPacketListener/handleHurtAnimation (Lnet/minecraft/network/protocol/game/ClientboundHurtAnimationPacket;)V +MD: net/minecraft/client/multiplayer/ClientPacketListener/m_264308_ (Lnet/minecraft/network/protocol/game/ClientboundBundlePacket;)V net/minecraft/client/multiplayer/ClientPacketListener/handleBundlePacket (Lnet/minecraft/network/protocol/game/ClientboundBundlePacket;)V +MD: net/minecraft/client/multiplayer/ClientPacketListener/m_268789_ ()Z net/minecraft/client/multiplayer/ClientPacketListener/lambda$handleKeepAlive$12 ()Z +MD: net/minecraft/client/multiplayer/ClientPacketListener/m_269082_ (Lnet/minecraft/network/protocol/game/ClientboundDamageEventPacket;)V net/minecraft/client/multiplayer/ClientPacketListener/handleDamageEvent (Lnet/minecraft/network/protocol/game/ClientboundDamageEventPacket;)V +MD: net/minecraft/client/multiplayer/ClientPacketListener/m_269212_ ()V net/minecraft/client/multiplayer/ClientPacketListener/sendDeferredPackets ()V +MD: net/minecraft/client/multiplayer/ClientPacketListener/m_269234_ (Lnet/minecraft/network/protocol/Packet;Ljava/util/function/BooleanSupplier;Ljava/time/Duration;)V net/minecraft/client/multiplayer/ClientPacketListener/sendWhen (Lnet/minecraft/network/protocol/Packet;Ljava/util/function/BooleanSupplier;Ljava/time/Duration;)V +MD: net/minecraft/client/multiplayer/ClientPacketListener/m_271558_ (Lnet/minecraft/client/ClientRecipeBook;Lnet/minecraft/world/item/crafting/Recipe;)V net/minecraft/client/multiplayer/ClientPacketListener/lambda$handleAddOrRemoveRecipes$9 (Lnet/minecraft/client/ClientRecipeBook;Lnet/minecraft/world/item/crafting/Recipe;)V +MD: net/minecraft/client/multiplayer/ClientPacketListener/m_274374_ (Lnet/minecraft/network/protocol/game/ClientboundChunksBiomesPacket;)V net/minecraft/client/multiplayer/ClientPacketListener/handleChunksBiomes (Lnet/minecraft/network/protocol/game/ClientboundChunksBiomesPacket;)V +MD: net/minecraft/client/multiplayer/ClientPacketListener/m_276175_ ()V net/minecraft/client/multiplayer/ClientPacketListener/lambda$handleGameEvent$8 ()V +MD: net/minecraft/client/multiplayer/ClientPacketListener/m_283976_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V net/minecraft/client/multiplayer/ClientPacketListener/lambda$handleChunkBlocksUpdate$3 (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V +MD: net/minecraft/client/multiplayer/ClientPacketListener/m_285673_ (Lnet/minecraft/world/level/ChunkPos;)V net/minecraft/client/multiplayer/ClientPacketListener/lambda$queueLightRemoval$5 (Lnet/minecraft/world/level/ChunkPos;)V +MD: net/minecraft/client/multiplayer/ClientPacketListener/m_5498_ (Lnet/minecraft/network/protocol/game/ClientboundUpdateAdvancementsPacket;)V net/minecraft/client/multiplayer/ClientPacketListener/handleUpdateAdvancementsPacket (Lnet/minecraft/network/protocol/game/ClientboundUpdateAdvancementsPacket;)V +MD: net/minecraft/client/multiplayer/ClientPacketListener/m_5547_ (Lnet/minecraft/network/protocol/game/ClientboundSetHealthPacket;)V net/minecraft/client/multiplayer/ClientPacketListener/handleSetHealth (Lnet/minecraft/network/protocol/game/ClientboundSetHealthPacket;)V +MD: net/minecraft/client/multiplayer/ClientPacketListener/m_5556_ (Lnet/minecraft/network/protocol/game/ClientboundSetDisplayObjectivePacket;)V net/minecraft/client/multiplayer/ClientPacketListener/handleSetDisplayObjective (Lnet/minecraft/network/protocol/game/ClientboundSetDisplayObjectivePacket;)V +MD: net/minecraft/client/multiplayer/ClientPacketListener/m_5582_ (Lnet/minecraft/network/protocol/game/ClientboundSetPlayerTeamPacket;)V net/minecraft/client/multiplayer/ClientPacketListener/handleSetPlayerTeamPacket (Lnet/minecraft/network/protocol/game/ClientboundSetPlayerTeamPacket;)V +MD: net/minecraft/client/multiplayer/ClientPacketListener/m_5587_ (Lnet/minecraft/network/protocol/game/ClientboundResourcePackPacket;)V net/minecraft/client/multiplayer/ClientPacketListener/handleResourcePack (Lnet/minecraft/network/protocol/game/ClientboundResourcePackPacket;)V +MD: net/minecraft/client/multiplayer/ClientPacketListener/m_5599_ (Lnet/minecraft/network/protocol/game/ClientboundSetEntityLinkPacket;)V net/minecraft/client/multiplayer/ClientPacketListener/handleEntityLinkPacket (Lnet/minecraft/network/protocol/game/ClientboundSetEntityLinkPacket;)V +MD: net/minecraft/client/multiplayer/ClientPacketListener/m_5612_ (Lnet/minecraft/network/protocol/game/ClientboundSetCarriedItemPacket;)V net/minecraft/client/multiplayer/ClientPacketListener/handleSetCarriedItem (Lnet/minecraft/network/protocol/game/ClientboundSetCarriedItemPacket;)V +MD: net/minecraft/client/multiplayer/ClientPacketListener/m_5682_ (Lnet/minecraft/network/protocol/game/ClientboundPlayerPositionPacket;)V net/minecraft/client/multiplayer/ClientPacketListener/handleMovePlayer (Lnet/minecraft/network/protocol/game/ClientboundPlayerPositionPacket;)V +MD: net/minecraft/client/multiplayer/ClientPacketListener/m_5729_ (Lnet/minecraft/network/protocol/game/ClientboundForgetLevelChunkPacket;)V net/minecraft/client/multiplayer/ClientPacketListener/handleForgetLevelChunk (Lnet/minecraft/network/protocol/game/ClientboundForgetLevelChunkPacket;)V +MD: net/minecraft/client/multiplayer/ClientPacketListener/m_5735_ (Lnet/minecraft/network/protocol/game/ClientboundContainerSetSlotPacket;)V net/minecraft/client/multiplayer/ClientPacketListener/handleContainerSetSlot (Lnet/minecraft/network/protocol/game/ClientboundContainerSetSlotPacket;)V +MD: net/minecraft/client/multiplayer/ClientPacketListener/m_5767_ (Lnet/minecraft/network/protocol/game/ClientboundPlayerAbilitiesPacket;)V net/minecraft/client/multiplayer/ClientPacketListener/handlePlayerAbilities (Lnet/minecraft/network/protocol/game/ClientboundPlayerAbilitiesPacket;)V +MD: net/minecraft/client/multiplayer/ClientPacketListener/m_5771_ (Lnet/minecraft/network/protocol/game/ClientboundSectionBlocksUpdatePacket;)V net/minecraft/client/multiplayer/ClientPacketListener/handleChunkBlocksUpdate (Lnet/minecraft/network/protocol/game/ClientboundSectionBlocksUpdatePacket;)V +MD: net/minecraft/client/multiplayer/ClientPacketListener/m_5859_ (Lnet/minecraft/network/protocol/game/ClientboundUpdateTagsPacket;)V net/minecraft/client/multiplayer/ClientPacketListener/handleUpdateTags (Lnet/minecraft/network/protocol/game/ClientboundUpdateTagsPacket;)V +MD: net/minecraft/client/multiplayer/ClientPacketListener/m_5863_ (Lnet/minecraft/network/protocol/game/ClientboundSoundEntityPacket;)V net/minecraft/client/multiplayer/ClientPacketListener/handleSoundEntityEvent (Lnet/minecraft/network/protocol/game/ClientboundSoundEntityPacket;)V +MD: net/minecraft/client/multiplayer/ClientPacketListener/m_5943_ (Lnet/minecraft/network/protocol/game/ClientboundBlockDestructionPacket;)V net/minecraft/client/multiplayer/ClientPacketListener/handleBlockDestruction (Lnet/minecraft/network/protocol/game/ClientboundBlockDestructionPacket;)V +MD: net/minecraft/client/multiplayer/ClientPacketListener/m_5980_ (Lnet/minecraft/network/protocol/game/ClientboundOpenScreenPacket;)V net/minecraft/client/multiplayer/ClientPacketListener/handleOpenScreen (Lnet/minecraft/network/protocol/game/ClientboundOpenScreenPacket;)V +MD: net/minecraft/client/multiplayer/ClientPacketListener/m_5998_ (Lnet/minecraft/network/protocol/game/ClientboundLoginPacket;)V net/minecraft/client/multiplayer/ClientPacketListener/handleLogin (Lnet/minecraft/network/protocol/game/ClientboundLoginPacket;)V +MD: net/minecraft/client/multiplayer/ClientPacketListener/m_6008_ (Lnet/minecraft/network/protocol/game/ClientboundDisconnectPacket;)V net/minecraft/client/multiplayer/ClientPacketListener/handleDisconnect (Lnet/minecraft/network/protocol/game/ClientboundDisconnectPacket;)V +MD: net/minecraft/client/multiplayer/ClientPacketListener/m_6148_ (Lnet/minecraft/network/protocol/game/ClientboundTagQueryPacket;)V net/minecraft/client/multiplayer/ClientPacketListener/handleTagQueryPacket (Lnet/minecraft/network/protocol/game/ClientboundTagQueryPacket;)V +MD: net/minecraft/client/multiplayer/ClientPacketListener/m_6176_ (Lnet/minecraft/network/protocol/game/ClientboundRotateHeadPacket;)V net/minecraft/client/multiplayer/ClientPacketListener/handleRotateMob (Lnet/minecraft/network/protocol/game/ClientboundRotateHeadPacket;)V +MD: net/minecraft/client/multiplayer/ClientPacketListener/m_6198_ ()Z net/minecraft/client/multiplayer/ClientPacketListener/isAcceptingMessages ()Z +MD: net/minecraft/client/multiplayer/ClientPacketListener/m_6235_ (Lnet/minecraft/network/protocol/game/ClientboundTabListPacket;)V net/minecraft/client/multiplayer/ClientPacketListener/handleTabListCustomisation (Lnet/minecraft/network/protocol/game/ClientboundTabListPacket;)V +MD: net/minecraft/client/multiplayer/ClientPacketListener/m_6327_ (Lnet/minecraft/network/protocol/game/ClientboundUpdateRecipesPacket;)V net/minecraft/client/multiplayer/ClientPacketListener/handleUpdateRecipes (Lnet/minecraft/network/protocol/game/ClientboundUpdateRecipesPacket;)V +MD: net/minecraft/client/multiplayer/ClientPacketListener/m_6403_ (Lnet/minecraft/network/protocol/game/ClientboundSetPassengersPacket;)V net/minecraft/client/multiplayer/ClientPacketListener/handleSetEntityPassengersPacket (Lnet/minecraft/network/protocol/game/ClientboundSetPassengersPacket;)V +MD: net/minecraft/client/multiplayer/ClientPacketListener/m_6435_ (Lnet/minecraft/network/protocol/game/ClientboundTeleportEntityPacket;)V net/minecraft/client/multiplayer/ClientPacketListener/handleTeleportEntity (Lnet/minecraft/network/protocol/game/ClientboundTeleportEntityPacket;)V +MD: net/minecraft/client/multiplayer/ClientPacketListener/m_6447_ (Lnet/minecraft/network/protocol/game/ClientboundSetCameraPacket;)V net/minecraft/client/multiplayer/ClientPacketListener/handleSetCamera (Lnet/minecraft/network/protocol/game/ClientboundSetCameraPacket;)V +MD: net/minecraft/client/multiplayer/ClientPacketListener/m_6455_ (Lnet/minecraft/network/protocol/game/ClientboundSetEntityDataPacket;)V net/minecraft/client/multiplayer/ClientPacketListener/handleSetEntityData (Lnet/minecraft/network/protocol/game/ClientboundSetEntityDataPacket;)V +MD: net/minecraft/client/multiplayer/ClientPacketListener/m_6476_ (Lnet/minecraft/network/protocol/game/ClientboundRemoveMobEffectPacket;)V net/minecraft/client/multiplayer/ClientPacketListener/handleRemoveMobEffect (Lnet/minecraft/network/protocol/game/ClientboundRemoveMobEffectPacket;)V +MD: net/minecraft/client/multiplayer/ClientPacketListener/m_6482_ (Lnet/minecraft/network/protocol/game/ClientboundAddPlayerPacket;)V net/minecraft/client/multiplayer/ClientPacketListener/handleAddPlayer (Lnet/minecraft/network/protocol/game/ClientboundAddPlayerPacket;)V +MD: net/minecraft/client/multiplayer/ClientPacketListener/m_6503_ (Lnet/minecraft/network/protocol/game/ClientboundOpenBookPacket;)V net/minecraft/client/multiplayer/ClientPacketListener/handleOpenBook (Lnet/minecraft/network/protocol/game/ClientboundOpenBookPacket;)V +MD: net/minecraft/client/multiplayer/ClientPacketListener/m_6571_ (Lnet/minecraft/network/protocol/game/ClientboundSetDefaultSpawnPositionPacket;)V net/minecraft/client/multiplayer/ClientPacketListener/handleSetSpawn (Lnet/minecraft/network/protocol/game/ClientboundSetDefaultSpawnPositionPacket;)V +MD: net/minecraft/client/multiplayer/ClientPacketListener/m_6664_ (Lnet/minecraft/network/protocol/game/ClientboundChangeDifficultyPacket;)V net/minecraft/client/multiplayer/ClientPacketListener/handleChangeDifficulty (Lnet/minecraft/network/protocol/game/ClientboundChangeDifficultyPacket;)V +MD: net/minecraft/client/multiplayer/ClientPacketListener/m_6747_ (Lnet/minecraft/network/protocol/game/ClientboundSetExperiencePacket;)V net/minecraft/client/multiplayer/ClientPacketListener/handleSetExperience (Lnet/minecraft/network/protocol/game/ClientboundSetExperiencePacket;)V +MD: net/minecraft/client/multiplayer/ClientPacketListener/m_6771_ (Lnet/minecraft/network/protocol/game/ClientboundAddEntityPacket;)V net/minecraft/client/multiplayer/ClientPacketListener/handleAddEntity (Lnet/minecraft/network/protocol/game/ClientboundAddEntityPacket;)V +MD: net/minecraft/client/multiplayer/ClientPacketListener/m_6773_ (Lnet/minecraft/network/protocol/game/ClientboundBlockUpdatePacket;)V net/minecraft/client/multiplayer/ClientPacketListener/handleBlockUpdate (Lnet/minecraft/network/protocol/game/ClientboundBlockUpdatePacket;)V +MD: net/minecraft/client/multiplayer/ClientPacketListener/m_6837_ (Lnet/minecraft/network/protocol/game/ClientboundContainerSetContentPacket;)V net/minecraft/client/multiplayer/ClientPacketListener/handleContainerContent (Lnet/minecraft/network/protocol/game/ClientboundContainerSetContentPacket;)V +MD: net/minecraft/client/multiplayer/ClientPacketListener/m_6905_ (Lnet/minecraft/network/protocol/game/ClientboundHorseScreenOpenPacket;)V net/minecraft/client/multiplayer/ClientPacketListener/handleHorseScreenOpen (Lnet/minecraft/network/protocol/game/ClientboundHorseScreenOpenPacket;)V +MD: net/minecraft/client/multiplayer/ClientPacketListener/m_7026_ (Lnet/minecraft/network/chat/Component;)V net/minecraft/client/multiplayer/ClientPacketListener/onDisconnect (Lnet/minecraft/network/chat/Component;)V +MD: net/minecraft/client/multiplayer/ClientPacketListener/m_7039_ (Lnet/minecraft/network/protocol/game/ClientboundDisguisedChatPacket;)V net/minecraft/client/multiplayer/ClientPacketListener/handleDisguisedChat (Lnet/minecraft/network/protocol/game/ClientboundDisguisedChatPacket;)V +MD: net/minecraft/client/multiplayer/ClientPacketListener/m_7183_ (Lnet/minecraft/network/protocol/game/ClientboundStopSoundPacket;)V net/minecraft/client/multiplayer/ClientPacketListener/handleStopSoundEvent (Lnet/minecraft/network/protocol/game/ClientboundStopSoundPacket;)V +MD: net/minecraft/client/multiplayer/ClientPacketListener/m_7231_ (Lnet/minecraft/network/protocol/game/ClientboundKeepAlivePacket;)V net/minecraft/client/multiplayer/ClientPacketListener/handleKeepAlive (Lnet/minecraft/network/protocol/game/ClientboundKeepAlivePacket;)V +MD: net/minecraft/client/multiplayer/ClientPacketListener/m_7244_ (Lnet/minecraft/network/protocol/game/ClientboundPlayerLookAtPacket;)V net/minecraft/client/multiplayer/ClientPacketListener/handleLookAt (Lnet/minecraft/network/protocol/game/ClientboundPlayerLookAtPacket;)V +MD: net/minecraft/client/multiplayer/ClientPacketListener/m_7257_ (Lnet/minecraft/network/protocol/game/ClientboundContainerSetDataPacket;)V net/minecraft/client/multiplayer/ClientPacketListener/handleContainerSetData (Lnet/minecraft/network/protocol/game/ClientboundContainerSetDataPacket;)V +MD: net/minecraft/client/multiplayer/ClientPacketListener/m_7271_ (Lnet/minecraft/network/protocol/game/ClientboundAwardStatsPacket;)V net/minecraft/client/multiplayer/ClientPacketListener/handleAwardStats (Lnet/minecraft/network/protocol/game/ClientboundAwardStatsPacket;)V +MD: net/minecraft/client/multiplayer/ClientPacketListener/m_7277_ (Lnet/minecraft/network/protocol/game/ClientboundSetEquipmentPacket;)V net/minecraft/client/multiplayer/ClientPacketListener/handleSetEquipment (Lnet/minecraft/network/protocol/game/ClientboundSetEquipmentPacket;)V +MD: net/minecraft/client/multiplayer/ClientPacketListener/m_7299_ (Lnet/minecraft/network/protocol/game/ClientboundSetChunkCacheRadiusPacket;)V net/minecraft/client/multiplayer/ClientPacketListener/handleSetChunkCacheRadius (Lnet/minecraft/network/protocol/game/ClientboundSetChunkCacheRadiusPacket;)V +MD: net/minecraft/client/multiplayer/ClientPacketListener/m_7330_ (Lnet/minecraft/network/protocol/game/ClientboundMerchantOffersPacket;)V net/minecraft/client/multiplayer/ClientPacketListener/handleMerchantOffers (Lnet/minecraft/network/protocol/game/ClientboundMerchantOffersPacket;)V +MD: net/minecraft/client/multiplayer/ClientPacketListener/m_7339_ (Lnet/minecraft/network/protocol/game/ClientboundPlaceGhostRecipePacket;)V net/minecraft/client/multiplayer/ClientPacketListener/handlePlaceRecipe (Lnet/minecraft/network/protocol/game/ClientboundPlaceGhostRecipePacket;)V +MD: net/minecraft/client/multiplayer/ClientPacketListener/m_7345_ (Lnet/minecraft/network/protocol/game/ClientboundExplodePacket;)V net/minecraft/client/multiplayer/ClientPacketListener/handleExplosion (Lnet/minecraft/network/protocol/game/ClientboundExplodePacket;)V +MD: net/minecraft/client/multiplayer/ClientPacketListener/m_7364_ (Lnet/minecraft/network/protocol/game/ClientboundBlockEventPacket;)V net/minecraft/client/multiplayer/ClientPacketListener/handleBlockEvent (Lnet/minecraft/network/protocol/game/ClientboundBlockEventPacket;)V +MD: net/minecraft/client/multiplayer/ClientPacketListener/m_7406_ (Lnet/minecraft/network/protocol/game/ClientboundLevelParticlesPacket;)V net/minecraft/client/multiplayer/ClientPacketListener/handleParticleEvent (Lnet/minecraft/network/protocol/game/ClientboundLevelParticlesPacket;)V +MD: net/minecraft/client/multiplayer/ClientPacketListener/m_7410_ (Lnet/minecraft/network/protocol/game/ClientboundMoveVehiclePacket;)V net/minecraft/client/multiplayer/ClientPacketListener/handleMoveVehicle (Lnet/minecraft/network/protocol/game/ClientboundMoveVehiclePacket;)V +MD: net/minecraft/client/multiplayer/ClientPacketListener/m_7413_ (Lnet/minecraft/network/protocol/game/ClientboundCustomPayloadPacket;)V net/minecraft/client/multiplayer/ClientPacketListener/handleCustomPayload (Lnet/minecraft/network/protocol/game/ClientboundCustomPayloadPacket;)V +MD: net/minecraft/client/multiplayer/ClientPacketListener/m_7443_ (Lnet/minecraft/network/protocol/game/ClientboundCommandsPacket;)V net/minecraft/client/multiplayer/ClientPacketListener/handleCommands (Lnet/minecraft/network/protocol/game/ClientboundCommandsPacket;)V +MD: net/minecraft/client/multiplayer/ClientPacketListener/m_7519_ (Lnet/minecraft/network/protocol/game/ClientboundSetScorePacket;)V net/minecraft/client/multiplayer/ClientPacketListener/handleSetScore (Lnet/minecraft/network/protocol/game/ClientboundSetScorePacket;)V +MD: net/minecraft/client/multiplayer/ClientPacketListener/m_7545_ (Lnet/minecraft/network/protocol/game/ClientboundBlockEntityDataPacket;)V net/minecraft/client/multiplayer/ClientPacketListener/handleBlockEntityData (Lnet/minecraft/network/protocol/game/ClientboundBlockEntityDataPacket;)V +MD: net/minecraft/client/multiplayer/ClientPacketListener/m_7553_ (Lnet/minecraft/network/protocol/game/ClientboundSelectAdvancementsTabPacket;)V net/minecraft/client/multiplayer/ClientPacketListener/handleSelectAdvancementsTab (Lnet/minecraft/network/protocol/game/ClientboundSelectAdvancementsTabPacket;)V +MD: net/minecraft/client/multiplayer/ClientPacketListener/m_7589_ (Lnet/minecraft/network/protocol/game/ClientboundCommandSuggestionsPacket;)V net/minecraft/client/multiplayer/ClientPacketListener/handleCommandSuggestions (Lnet/minecraft/network/protocol/game/ClientboundCommandSuggestionsPacket;)V +MD: net/minecraft/client/multiplayer/ClientPacketListener/m_7616_ (Lnet/minecraft/network/protocol/game/ClientboundGameEventPacket;)V net/minecraft/client/multiplayer/ClientPacketListener/handleGameEvent (Lnet/minecraft/network/protocol/game/ClientboundGameEventPacket;)V +MD: net/minecraft/client/multiplayer/ClientPacketListener/m_7628_ (Lnet/minecraft/network/protocol/game/ClientboundEntityEventPacket;)V net/minecraft/client/multiplayer/ClientPacketListener/handleEntityEvent (Lnet/minecraft/network/protocol/game/ClientboundEntityEventPacket;)V +MD: net/minecraft/client/multiplayer/ClientPacketListener/m_7633_ (Lnet/minecraft/network/protocol/game/ClientboundMapItemDataPacket;)V net/minecraft/client/multiplayer/ClientPacketListener/handleMapItemData (Lnet/minecraft/network/protocol/game/ClientboundMapItemDataPacket;)V +MD: net/minecraft/client/multiplayer/ClientPacketListener/m_7685_ (Lnet/minecraft/network/protocol/game/ClientboundBossEventPacket;)V net/minecraft/client/multiplayer/ClientPacketListener/handleBossUpdate (Lnet/minecraft/network/protocol/game/ClientboundBossEventPacket;)V +MD: net/minecraft/client/multiplayer/ClientPacketListener/m_7701_ (Lnet/minecraft/network/protocol/game/ClientboundCooldownPacket;)V net/minecraft/client/multiplayer/ClientPacketListener/handleItemCooldown (Lnet/minecraft/network/protocol/game/ClientboundCooldownPacket;)V +MD: net/minecraft/client/multiplayer/ClientPacketListener/m_7704_ (Lnet/minecraft/network/protocol/game/ClientboundLevelEventPacket;)V net/minecraft/client/multiplayer/ClientPacketListener/handleLevelEvent (Lnet/minecraft/network/protocol/game/ClientboundLevelEventPacket;)V +MD: net/minecraft/client/multiplayer/ClientPacketListener/m_7708_ (Lnet/minecraft/network/protocol/game/ClientboundAddExperienceOrbPacket;)V net/minecraft/client/multiplayer/ClientPacketListener/handleAddExperienceOrb (Lnet/minecraft/network/protocol/game/ClientboundAddExperienceOrbPacket;)V +MD: net/minecraft/client/multiplayer/ClientPacketListener/m_7710_ (Lnet/minecraft/network/protocol/game/ClientboundUpdateAttributesPacket;)V net/minecraft/client/multiplayer/ClientPacketListener/handleUpdateAttributes (Lnet/minecraft/network/protocol/game/ClientboundUpdateAttributesPacket;)V +MD: net/minecraft/client/multiplayer/ClientPacketListener/m_7776_ (Lnet/minecraft/network/protocol/game/ClientboundContainerClosePacket;)V net/minecraft/client/multiplayer/ClientPacketListener/handleContainerClose (Lnet/minecraft/network/protocol/game/ClientboundContainerClosePacket;)V +MD: net/minecraft/client/multiplayer/ClientPacketListener/m_7791_ (Lnet/minecraft/network/protocol/game/ClientboundAnimatePacket;)V net/minecraft/client/multiplayer/ClientPacketListener/handleAnimate (Lnet/minecraft/network/protocol/game/ClientboundAnimatePacket;)V +MD: net/minecraft/client/multiplayer/ClientPacketListener/m_7865_ (Lnet/minecraft/network/protocol/game/ClientboundMoveEntityPacket;)V net/minecraft/client/multiplayer/ClientPacketListener/handleMoveEntity (Lnet/minecraft/network/protocol/game/ClientboundMoveEntityPacket;)V +MD: net/minecraft/client/multiplayer/ClientPacketListener/m_7885_ (Lnet/minecraft/network/protocol/game/ClientboundSetTimePacket;)V net/minecraft/client/multiplayer/ClientPacketListener/handleSetTime (Lnet/minecraft/network/protocol/game/ClientboundSetTimePacket;)V +MD: net/minecraft/client/multiplayer/ClientPacketListener/m_7915_ (Lnet/minecraft/network/protocol/game/ClientboundUpdateMobEffectPacket;)V net/minecraft/client/multiplayer/ClientPacketListener/handleUpdateMobEffect (Lnet/minecraft/network/protocol/game/ClientboundUpdateMobEffectPacket;)V +MD: net/minecraft/client/multiplayer/ClientPacketListener/m_7957_ (Lnet/minecraft/network/protocol/game/ClientboundSetObjectivePacket;)V net/minecraft/client/multiplayer/ClientPacketListener/handleAddObjective (Lnet/minecraft/network/protocol/game/ClientboundSetObjectivePacket;)V +MD: net/minecraft/client/multiplayer/ClientPacketListener/m_7992_ (Lnet/minecraft/network/protocol/game/ClientboundRespawnPacket;)V net/minecraft/client/multiplayer/ClientPacketListener/handleRespawn (Lnet/minecraft/network/protocol/game/ClientboundRespawnPacket;)V +MD: net/minecraft/client/multiplayer/ClientPacketListener/m_8001_ (Lnet/minecraft/network/protocol/game/ClientboundTakeItemEntityPacket;)V net/minecraft/client/multiplayer/ClientPacketListener/handleTakeItemEntity (Lnet/minecraft/network/protocol/game/ClientboundTakeItemEntityPacket;)V +MD: net/minecraft/client/multiplayer/ClientPacketListener/m_8047_ (Lnet/minecraft/network/protocol/game/ClientboundOpenSignEditorPacket;)V net/minecraft/client/multiplayer/ClientPacketListener/handleOpenSignEditor (Lnet/minecraft/network/protocol/game/ClientboundOpenSignEditorPacket;)V +MD: net/minecraft/client/multiplayer/ClientPacketListener/m_8048_ (Lnet/minecraft/network/protocol/game/ClientboundSetEntityMotionPacket;)V net/minecraft/client/multiplayer/ClientPacketListener/handleSetEntityMotion (Lnet/minecraft/network/protocol/game/ClientboundSetEntityMotionPacket;)V +MD: net/minecraft/client/multiplayer/ClientPacketListener/m_8065_ (Lnet/minecraft/network/protocol/game/ClientboundSetChunkCacheCenterPacket;)V net/minecraft/client/multiplayer/ClientPacketListener/handleSetChunkCacheCenter (Lnet/minecraft/network/protocol/game/ClientboundSetChunkCacheCenterPacket;)V +MD: net/minecraft/client/multiplayer/ClientPacketListener/m_8068_ (Lnet/minecraft/network/protocol/game/ClientboundSoundPacket;)V net/minecraft/client/multiplayer/ClientPacketListener/handleSoundEvent (Lnet/minecraft/network/protocol/game/ClientboundSoundPacket;)V +MD: net/minecraft/client/multiplayer/ClientPacketListener/m_8076_ (Lnet/minecraft/network/protocol/game/ClientboundRecipePacket;)V net/minecraft/client/multiplayer/ClientPacketListener/handleAddOrRemoveRecipes (Lnet/minecraft/network/protocol/game/ClientboundRecipePacket;)V +MD: net/minecraft/client/multiplayer/ClientPacketListener/m_9933_ ()V net/minecraft/client/multiplayer/ClientPacketListener/tick ()V +MD: net/minecraft/client/multiplayer/ClientPacketListener$1/ ()V net/minecraft/client/multiplayer/ClientPacketListener$1/ ()V +MD: net/minecraft/client/multiplayer/ClientPacketListener$DeferredPacket/ (Lnet/minecraft/network/protocol/Packet;Ljava/util/function/BooleanSupplier;J)V net/minecraft/client/multiplayer/ClientPacketListener$DeferredPacket/ (Lnet/minecraft/network/protocol/Packet;Ljava/util/function/BooleanSupplier;J)V +MD: net/minecraft/client/multiplayer/ClientPacketListener$DeferredPacket/equals (Ljava/lang/Object;)Z net/minecraft/client/multiplayer/ClientPacketListener$DeferredPacket/equals (Ljava/lang/Object;)Z +MD: net/minecraft/client/multiplayer/ClientPacketListener$DeferredPacket/f_268477_ ()Ljava/util/function/BooleanSupplier; net/minecraft/client/multiplayer/ClientPacketListener$DeferredPacket/sendCondition ()Ljava/util/function/BooleanSupplier; +MD: net/minecraft/client/multiplayer/ClientPacketListener$DeferredPacket/f_268574_ ()Lnet/minecraft/network/protocol/Packet; net/minecraft/client/multiplayer/ClientPacketListener$DeferredPacket/packet ()Lnet/minecraft/network/protocol/Packet; +MD: net/minecraft/client/multiplayer/ClientPacketListener$DeferredPacket/f_268654_ ()J net/minecraft/client/multiplayer/ClientPacketListener$DeferredPacket/expirationTime ()J +MD: net/minecraft/client/multiplayer/ClientPacketListener$DeferredPacket/hashCode ()I net/minecraft/client/multiplayer/ClientPacketListener$DeferredPacket/hashCode ()I +MD: net/minecraft/client/multiplayer/ClientPacketListener$DeferredPacket/toString ()Ljava/lang/String; net/minecraft/client/multiplayer/ClientPacketListener$DeferredPacket/toString ()Ljava/lang/String; +MD: net/minecraft/client/multiplayer/ClientRegistryLayer/ ()V net/minecraft/client/multiplayer/ClientRegistryLayer/ ()V +MD: net/minecraft/client/multiplayer/ClientRegistryLayer/ (Ljava/lang/String;I)V net/minecraft/client/multiplayer/ClientRegistryLayer/ (Ljava/lang/String;I)V +MD: net/minecraft/client/multiplayer/ClientRegistryLayer/m_245874_ ()Lnet/minecraft/core/LayeredRegistryAccess; net/minecraft/client/multiplayer/ClientRegistryLayer/createRegistryAccess ()Lnet/minecraft/core/LayeredRegistryAccess; +MD: net/minecraft/client/multiplayer/ClientRegistryLayer/m_247567_ ()[Lnet/minecraft/client/multiplayer/ClientRegistryLayer; net/minecraft/client/multiplayer/ClientRegistryLayer/$values ()[Lnet/minecraft/client/multiplayer/ClientRegistryLayer; +MD: net/minecraft/client/multiplayer/ClientRegistryLayer/valueOf (Ljava/lang/String;)Lnet/minecraft/client/multiplayer/ClientRegistryLayer; net/minecraft/client/multiplayer/ClientRegistryLayer/valueOf (Ljava/lang/String;)Lnet/minecraft/client/multiplayer/ClientRegistryLayer; +MD: net/minecraft/client/multiplayer/ClientRegistryLayer/values ()[Lnet/minecraft/client/multiplayer/ClientRegistryLayer; net/minecraft/client/multiplayer/ClientRegistryLayer/values ()[Lnet/minecraft/client/multiplayer/ClientRegistryLayer; +MD: net/minecraft/client/multiplayer/ClientSuggestionProvider/ (Lnet/minecraft/client/multiplayer/ClientPacketListener;Lnet/minecraft/client/Minecraft;)V net/minecraft/client/multiplayer/ClientSuggestionProvider/ (Lnet/minecraft/client/multiplayer/ClientPacketListener;Lnet/minecraft/client/Minecraft;)V +MD: net/minecraft/client/multiplayer/ClientSuggestionProvider/m_105167_ (D)Ljava/lang/String; net/minecraft/client/multiplayer/ClientSuggestionProvider/prettyPrint (D)Ljava/lang/String; +MD: net/minecraft/client/multiplayer/ClientSuggestionProvider/m_105169_ (I)Ljava/lang/String; net/minecraft/client/multiplayer/ClientSuggestionProvider/prettyPrint (I)Ljava/lang/String; +MD: net/minecraft/client/multiplayer/ClientSuggestionProvider/m_105171_ (ILcom/mojang/brigadier/suggestion/Suggestions;)V net/minecraft/client/multiplayer/ClientSuggestionProvider/completeCustomSuggestions (ILcom/mojang/brigadier/suggestion/Suggestions;)V +MD: net/minecraft/client/multiplayer/ClientSuggestionProvider/m_212095_ (Lnet/minecraft/resources/ResourceKey;Lnet/minecraft/commands/SharedSuggestionProvider$ElementSuggestionType;Lcom/mojang/brigadier/suggestion/SuggestionsBuilder;Lcom/mojang/brigadier/context/CommandContext;)Ljava/util/concurrent/CompletableFuture; net/minecraft/client/multiplayer/ClientSuggestionProvider/suggestRegistryElements (Lnet/minecraft/resources/ResourceKey;Lnet/minecraft/commands/SharedSuggestionProvider$ElementSuggestionType;Lcom/mojang/brigadier/suggestion/SuggestionsBuilder;Lcom/mojang/brigadier/context/CommandContext;)Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/client/multiplayer/ClientSuggestionProvider/m_212155_ (Lcom/mojang/brigadier/context/CommandContext;)Ljava/util/concurrent/CompletableFuture; net/minecraft/client/multiplayer/ClientSuggestionProvider/customSuggestion (Lcom/mojang/brigadier/context/CommandContext;)Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/client/multiplayer/ClientSuggestionProvider/m_212424_ (Lnet/minecraft/commands/SharedSuggestionProvider$ElementSuggestionType;Lcom/mojang/brigadier/suggestion/SuggestionsBuilder;Lnet/minecraft/core/Registry;)Ljava/util/concurrent/CompletableFuture; net/minecraft/client/multiplayer/ClientSuggestionProvider/lambda$suggestRegistryElements$0 (Lnet/minecraft/commands/SharedSuggestionProvider$ElementSuggestionType;Lcom/mojang/brigadier/suggestion/SuggestionsBuilder;Lnet/minecraft/core/Registry;)Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/client/multiplayer/ClientSuggestionProvider/m_212433_ (Lcom/mojang/brigadier/context/CommandContext;)Ljava/util/concurrent/CompletableFuture; net/minecraft/client/multiplayer/ClientSuggestionProvider/lambda$suggestRegistryElements$1 (Lcom/mojang/brigadier/context/CommandContext;)Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/client/multiplayer/ClientSuggestionProvider/m_240700_ ()Ljava/util/Collection; net/minecraft/client/multiplayer/ClientSuggestionProvider/getCustomTabSugggestions ()Ljava/util/Collection; +MD: net/minecraft/client/multiplayer/ClientSuggestionProvider/m_240713_ (Lnet/minecraft/network/protocol/game/ClientboundCustomChatCompletionsPacket$Action;Ljava/util/List;)V net/minecraft/client/multiplayer/ClientSuggestionProvider/modifyCustomCompletions (Lnet/minecraft/network/protocol/game/ClientboundCustomChatCompletionsPacket$Action;Ljava/util/List;)V +MD: net/minecraft/client/multiplayer/ClientSuggestionProvider/m_245239_ ()Lnet/minecraft/world/flag/FeatureFlagSet; net/minecraft/client/multiplayer/ClientSuggestionProvider/enabledFeatures ()Lnet/minecraft/world/flag/FeatureFlagSet; +MD: net/minecraft/client/multiplayer/ClientSuggestionProvider/m_5894_ ()Lnet/minecraft/core/RegistryAccess; net/minecraft/client/multiplayer/ClientSuggestionProvider/registryAccess ()Lnet/minecraft/core/RegistryAccess; +MD: net/minecraft/client/multiplayer/ClientSuggestionProvider/m_5982_ ()Ljava/util/Collection; net/minecraft/client/multiplayer/ClientSuggestionProvider/getOnlinePlayerNames ()Ljava/util/Collection; +MD: net/minecraft/client/multiplayer/ClientSuggestionProvider/m_5983_ ()Ljava/util/Collection; net/minecraft/client/multiplayer/ClientSuggestionProvider/getAllTeams ()Ljava/util/Collection; +MD: net/minecraft/client/multiplayer/ClientSuggestionProvider/m_5984_ ()Ljava/util/stream/Stream; net/minecraft/client/multiplayer/ClientSuggestionProvider/getAvailableSounds ()Ljava/util/stream/Stream; +MD: net/minecraft/client/multiplayer/ClientSuggestionProvider/m_6264_ ()Ljava/util/Collection; net/minecraft/client/multiplayer/ClientSuggestionProvider/getSelectedEntities ()Ljava/util/Collection; +MD: net/minecraft/client/multiplayer/ClientSuggestionProvider/m_6265_ ()Ljava/util/Collection; net/minecraft/client/multiplayer/ClientSuggestionProvider/getRelevantCoordinates ()Ljava/util/Collection; +MD: net/minecraft/client/multiplayer/ClientSuggestionProvider/m_6284_ ()Ljava/util/Collection; net/minecraft/client/multiplayer/ClientSuggestionProvider/getAbsoluteCoordinates ()Ljava/util/Collection; +MD: net/minecraft/client/multiplayer/ClientSuggestionProvider/m_6553_ ()Ljava/util/Set; net/minecraft/client/multiplayer/ClientSuggestionProvider/levels ()Ljava/util/Set; +MD: net/minecraft/client/multiplayer/ClientSuggestionProvider/m_6761_ (I)Z net/minecraft/client/multiplayer/ClientSuggestionProvider/hasPermission (I)Z +MD: net/minecraft/client/multiplayer/ClientSuggestionProvider/m_6860_ ()Ljava/util/stream/Stream; net/minecraft/client/multiplayer/ClientSuggestionProvider/getRecipeNames ()Ljava/util/stream/Stream; +MD: net/minecraft/client/multiplayer/ClientSuggestionProvider$1/ ()V net/minecraft/client/multiplayer/ClientSuggestionProvider$1/ ()V +MD: net/minecraft/client/multiplayer/MultiPlayerGameMode/ ()V net/minecraft/client/multiplayer/MultiPlayerGameMode/ ()V +MD: net/minecraft/client/multiplayer/MultiPlayerGameMode/ (Lnet/minecraft/client/Minecraft;Lnet/minecraft/client/multiplayer/ClientPacketListener;)V net/minecraft/client/multiplayer/MultiPlayerGameMode/ (Lnet/minecraft/client/Minecraft;Lnet/minecraft/client/multiplayer/ClientPacketListener;)V +MD: net/minecraft/client/multiplayer/MultiPlayerGameMode/m_105205_ ()Z net/minecraft/client/multiplayer/MultiPlayerGameMode/canHurtPlayer ()Z +MD: net/minecraft/client/multiplayer/MultiPlayerGameMode/m_105206_ (I)V net/minecraft/client/multiplayer/MultiPlayerGameMode/handlePickItem (I)V +MD: net/minecraft/client/multiplayer/MultiPlayerGameMode/m_105208_ (II)V net/minecraft/client/multiplayer/MultiPlayerGameMode/handleInventoryButtonClick (II)V +MD: net/minecraft/client/multiplayer/MultiPlayerGameMode/m_105217_ (ILnet/minecraft/world/item/crafting/Recipe;Z)V net/minecraft/client/multiplayer/MultiPlayerGameMode/handlePlaceRecipe (ILnet/minecraft/world/item/crafting/Recipe;Z)V +MD: net/minecraft/client/multiplayer/MultiPlayerGameMode/m_105221_ (Lnet/minecraft/world/entity/player/Player;)V net/minecraft/client/multiplayer/MultiPlayerGameMode/adjustPlayer (Lnet/minecraft/world/entity/player/Player;)V +MD: net/minecraft/client/multiplayer/MultiPlayerGameMode/m_105223_ (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/entity/Entity;)V net/minecraft/client/multiplayer/MultiPlayerGameMode/attack (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/entity/Entity;)V +MD: net/minecraft/client/multiplayer/MultiPlayerGameMode/m_105226_ (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/entity/Entity;Lnet/minecraft/world/InteractionHand;)Lnet/minecraft/world/InteractionResult; net/minecraft/client/multiplayer/MultiPlayerGameMode/interact (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/entity/Entity;Lnet/minecraft/world/InteractionHand;)Lnet/minecraft/world/InteractionResult; +MD: net/minecraft/client/multiplayer/MultiPlayerGameMode/m_105230_ (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/entity/Entity;Lnet/minecraft/world/phys/EntityHitResult;Lnet/minecraft/world/InteractionHand;)Lnet/minecraft/world/InteractionResult; net/minecraft/client/multiplayer/MultiPlayerGameMode/interactAt (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/entity/Entity;Lnet/minecraft/world/phys/EntityHitResult;Lnet/minecraft/world/InteractionHand;)Lnet/minecraft/world/InteractionResult; +MD: net/minecraft/client/multiplayer/MultiPlayerGameMode/m_105239_ (Lnet/minecraft/world/item/ItemStack;)V net/minecraft/client/multiplayer/MultiPlayerGameMode/handleCreativeModeItemDrop (Lnet/minecraft/world/item/ItemStack;)V +MD: net/minecraft/client/multiplayer/MultiPlayerGameMode/m_105241_ (Lnet/minecraft/world/item/ItemStack;I)V net/minecraft/client/multiplayer/MultiPlayerGameMode/handleCreativeModeItemAdd (Lnet/minecraft/world/item/ItemStack;I)V +MD: net/minecraft/client/multiplayer/MultiPlayerGameMode/m_105246_ (Lnet/minecraft/client/multiplayer/ClientLevel;Lnet/minecraft/stats/StatsCounter;Lnet/minecraft/client/ClientRecipeBook;)Lnet/minecraft/client/player/LocalPlayer; net/minecraft/client/multiplayer/MultiPlayerGameMode/createPlayer (Lnet/minecraft/client/multiplayer/ClientLevel;Lnet/minecraft/stats/StatsCounter;Lnet/minecraft/client/ClientRecipeBook;)Lnet/minecraft/client/player/LocalPlayer; +MD: net/minecraft/client/multiplayer/MultiPlayerGameMode/m_105250_ (Lnet/minecraft/client/multiplayer/ClientLevel;Lnet/minecraft/stats/StatsCounter;Lnet/minecraft/client/ClientRecipeBook;ZZ)Lnet/minecraft/client/player/LocalPlayer; net/minecraft/client/multiplayer/MultiPlayerGameMode/createPlayer (Lnet/minecraft/client/multiplayer/ClientLevel;Lnet/minecraft/stats/StatsCounter;Lnet/minecraft/client/ClientRecipeBook;ZZ)Lnet/minecraft/client/player/LocalPlayer; +MD: net/minecraft/client/multiplayer/MultiPlayerGameMode/m_105267_ (Lnet/minecraft/core/BlockPos;)Z net/minecraft/client/multiplayer/MultiPlayerGameMode/destroyBlock (Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/client/multiplayer/MultiPlayerGameMode/m_105269_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Direction;)Z net/minecraft/client/multiplayer/MultiPlayerGameMode/startDestroyBlock (Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Direction;)Z +MD: net/minecraft/client/multiplayer/MultiPlayerGameMode/m_105276_ ()V net/minecraft/client/multiplayer/MultiPlayerGameMode/stopDestroyBlock ()V +MD: net/minecraft/client/multiplayer/MultiPlayerGameMode/m_105277_ (Lnet/minecraft/world/entity/player/Player;)V net/minecraft/client/multiplayer/MultiPlayerGameMode/releaseUsingItem (Lnet/minecraft/world/entity/player/Player;)V +MD: net/minecraft/client/multiplayer/MultiPlayerGameMode/m_105279_ (Lnet/minecraft/world/level/GameType;)V net/minecraft/client/multiplayer/MultiPlayerGameMode/setLocalMode (Lnet/minecraft/world/level/GameType;)V +MD: net/minecraft/client/multiplayer/MultiPlayerGameMode/m_105281_ (Lnet/minecraft/core/BlockPos;)Z net/minecraft/client/multiplayer/MultiPlayerGameMode/sameDestroyTarget (Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/client/multiplayer/MultiPlayerGameMode/m_105283_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Direction;)Z net/minecraft/client/multiplayer/MultiPlayerGameMode/continueDestroyBlock (Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Direction;)Z +MD: net/minecraft/client/multiplayer/MultiPlayerGameMode/m_105286_ ()F net/minecraft/client/multiplayer/MultiPlayerGameMode/getPickRange ()F +MD: net/minecraft/client/multiplayer/MultiPlayerGameMode/m_105287_ ()V net/minecraft/client/multiplayer/MultiPlayerGameMode/tick ()V +MD: net/minecraft/client/multiplayer/MultiPlayerGameMode/m_105288_ ()Z net/minecraft/client/multiplayer/MultiPlayerGameMode/hasExperience ()Z +MD: net/minecraft/client/multiplayer/MultiPlayerGameMode/m_105289_ ()Z net/minecraft/client/multiplayer/MultiPlayerGameMode/hasMissTime ()Z +MD: net/minecraft/client/multiplayer/MultiPlayerGameMode/m_105290_ ()Z net/minecraft/client/multiplayer/MultiPlayerGameMode/hasInfiniteItems ()Z +MD: net/minecraft/client/multiplayer/MultiPlayerGameMode/m_105291_ ()Z net/minecraft/client/multiplayer/MultiPlayerGameMode/hasFarPickRange ()Z +MD: net/minecraft/client/multiplayer/MultiPlayerGameMode/m_105292_ ()Z net/minecraft/client/multiplayer/MultiPlayerGameMode/isServerControlledInventory ()Z +MD: net/minecraft/client/multiplayer/MultiPlayerGameMode/m_105293_ ()Z net/minecraft/client/multiplayer/MultiPlayerGameMode/isAlwaysFlying ()Z +MD: net/minecraft/client/multiplayer/MultiPlayerGameMode/m_105294_ ()Lnet/minecraft/world/level/GameType; net/minecraft/client/multiplayer/MultiPlayerGameMode/getPreviousPlayerMode ()Lnet/minecraft/world/level/GameType; +MD: net/minecraft/client/multiplayer/MultiPlayerGameMode/m_105295_ ()Lnet/minecraft/world/level/GameType; net/minecraft/client/multiplayer/MultiPlayerGameMode/getPlayerMode ()Lnet/minecraft/world/level/GameType; +MD: net/minecraft/client/multiplayer/MultiPlayerGameMode/m_105296_ ()Z net/minecraft/client/multiplayer/MultiPlayerGameMode/isDestroying ()Z +MD: net/minecraft/client/multiplayer/MultiPlayerGameMode/m_105297_ ()V net/minecraft/client/multiplayer/MultiPlayerGameMode/ensureHasSentCarriedItem ()V +MD: net/minecraft/client/multiplayer/MultiPlayerGameMode/m_171799_ (IIILnet/minecraft/world/inventory/ClickType;Lnet/minecraft/world/entity/player/Player;)V net/minecraft/client/multiplayer/MultiPlayerGameMode/handleInventoryMouseClick (IIILnet/minecraft/world/inventory/ClickType;Lnet/minecraft/world/entity/player/Player;)V +MD: net/minecraft/client/multiplayer/MultiPlayerGameMode/m_171805_ (Lnet/minecraft/world/level/GameType;Lnet/minecraft/world/level/GameType;)V net/minecraft/client/multiplayer/MultiPlayerGameMode/setLocalMode (Lnet/minecraft/world/level/GameType;Lnet/minecraft/world/level/GameType;)V +MD: net/minecraft/client/multiplayer/MultiPlayerGameMode/m_233716_ (Lnet/minecraft/world/InteractionHand;Lnet/minecraft/world/entity/player/Player;Lorg/apache/commons/lang3/mutable/MutableObject;I)Lnet/minecraft/network/protocol/Packet; net/minecraft/client/multiplayer/MultiPlayerGameMode/lambda$useItem$5 (Lnet/minecraft/world/InteractionHand;Lnet/minecraft/world/entity/player/Player;Lorg/apache/commons/lang3/mutable/MutableObject;I)Lnet/minecraft/network/protocol/Packet; +MD: net/minecraft/client/multiplayer/MultiPlayerGameMode/m_233721_ (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;)Lnet/minecraft/world/InteractionResult; net/minecraft/client/multiplayer/MultiPlayerGameMode/useItem (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;)Lnet/minecraft/world/InteractionResult; +MD: net/minecraft/client/multiplayer/MultiPlayerGameMode/m_233724_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Direction;I)Lnet/minecraft/network/protocol/Packet; net/minecraft/client/multiplayer/MultiPlayerGameMode/lambda$startDestroyBlock$1 (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Direction;I)Lnet/minecraft/network/protocol/Packet; +MD: net/minecraft/client/multiplayer/MultiPlayerGameMode/m_233729_ (Lnet/minecraft/client/multiplayer/ClientLevel;Lnet/minecraft/client/multiplayer/prediction/PredictiveAction;)V net/minecraft/client/multiplayer/MultiPlayerGameMode/startPrediction (Lnet/minecraft/client/multiplayer/ClientLevel;Lnet/minecraft/client/multiplayer/prediction/PredictiveAction;)V +MD: net/minecraft/client/multiplayer/MultiPlayerGameMode/m_233732_ (Lnet/minecraft/client/player/LocalPlayer;Lnet/minecraft/world/InteractionHand;Lnet/minecraft/world/phys/BlockHitResult;)Lnet/minecraft/world/InteractionResult; net/minecraft/client/multiplayer/MultiPlayerGameMode/useItemOn (Lnet/minecraft/client/player/LocalPlayer;Lnet/minecraft/world/InteractionHand;Lnet/minecraft/world/phys/BlockHitResult;)Lnet/minecraft/world/InteractionResult; +MD: net/minecraft/client/multiplayer/MultiPlayerGameMode/m_233736_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Direction;I)Lnet/minecraft/network/protocol/Packet; net/minecraft/client/multiplayer/MultiPlayerGameMode/lambda$continueDestroyBlock$3 (Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Direction;I)Lnet/minecraft/network/protocol/Packet; +MD: net/minecraft/client/multiplayer/MultiPlayerGameMode/m_233740_ (Lorg/apache/commons/lang3/mutable/MutableObject;Lnet/minecraft/client/player/LocalPlayer;Lnet/minecraft/world/InteractionHand;Lnet/minecraft/world/phys/BlockHitResult;I)Lnet/minecraft/network/protocol/Packet; net/minecraft/client/multiplayer/MultiPlayerGameMode/lambda$useItemOn$4 (Lorg/apache/commons/lang3/mutable/MutableObject;Lnet/minecraft/client/player/LocalPlayer;Lnet/minecraft/world/InteractionHand;Lnet/minecraft/world/phys/BlockHitResult;I)Lnet/minecraft/network/protocol/Packet; +MD: net/minecraft/client/multiplayer/MultiPlayerGameMode/m_233746_ (Lnet/minecraft/client/player/LocalPlayer;Lnet/minecraft/world/InteractionHand;Lnet/minecraft/world/phys/BlockHitResult;)Lnet/minecraft/world/InteractionResult; net/minecraft/client/multiplayer/MultiPlayerGameMode/performUseItemOn (Lnet/minecraft/client/player/LocalPlayer;Lnet/minecraft/world/InteractionHand;Lnet/minecraft/world/phys/BlockHitResult;)Lnet/minecraft/world/InteractionResult; +MD: net/minecraft/client/multiplayer/MultiPlayerGameMode/m_233750_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Direction;I)Lnet/minecraft/network/protocol/Packet; net/minecraft/client/multiplayer/MultiPlayerGameMode/lambda$continueDestroyBlock$2 (Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Direction;I)Lnet/minecraft/network/protocol/Packet; +MD: net/minecraft/client/multiplayer/MultiPlayerGameMode/m_233754_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Direction;I)Lnet/minecraft/network/protocol/Packet; net/minecraft/client/multiplayer/MultiPlayerGameMode/lambda$startDestroyBlock$0 (Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Direction;I)Lnet/minecraft/network/protocol/Packet; +MD: net/minecraft/client/multiplayer/MultiPlayerGameMode/m_287167_ ()I net/minecraft/client/multiplayer/MultiPlayerGameMode/getDestroyStage ()I +MD: net/minecraft/client/multiplayer/PlayerInfo/ (Lcom/mojang/authlib/GameProfile;Z)V net/minecraft/client/multiplayer/PlayerInfo/ (Lcom/mojang/authlib/GameProfile;Z)V +MD: net/minecraft/client/multiplayer/PlayerInfo/m_105312_ ()Lcom/mojang/authlib/GameProfile; net/minecraft/client/multiplayer/PlayerInfo/getProfile ()Lcom/mojang/authlib/GameProfile; +MD: net/minecraft/client/multiplayer/PlayerInfo/m_105313_ (I)V net/minecraft/client/multiplayer/PlayerInfo/setLatency (I)V +MD: net/minecraft/client/multiplayer/PlayerInfo/m_105317_ (Lnet/minecraft/world/level/GameType;)V net/minecraft/client/multiplayer/PlayerInfo/setGameMode (Lnet/minecraft/world/level/GameType;)V +MD: net/minecraft/client/multiplayer/PlayerInfo/m_105319_ (Lcom/mojang/authlib/minecraft/MinecraftProfileTexture$Type;Lnet/minecraft/resources/ResourceLocation;Lcom/mojang/authlib/minecraft/MinecraftProfileTexture;)V net/minecraft/client/multiplayer/PlayerInfo/lambda$registerTextures$0 (Lcom/mojang/authlib/minecraft/MinecraftProfileTexture$Type;Lnet/minecraft/resources/ResourceLocation;Lcom/mojang/authlib/minecraft/MinecraftProfileTexture;)V +MD: net/minecraft/client/multiplayer/PlayerInfo/m_105323_ (Lnet/minecraft/network/chat/Component;)V net/minecraft/client/multiplayer/PlayerInfo/setTabListDisplayName (Lnet/minecraft/network/chat/Component;)V +MD: net/minecraft/client/multiplayer/PlayerInfo/m_105325_ ()Lnet/minecraft/world/level/GameType; net/minecraft/client/multiplayer/PlayerInfo/getGameMode ()Lnet/minecraft/world/level/GameType; +MD: net/minecraft/client/multiplayer/PlayerInfo/m_105330_ ()I net/minecraft/client/multiplayer/PlayerInfo/getLatency ()I +MD: net/minecraft/client/multiplayer/PlayerInfo/m_105335_ ()Z net/minecraft/client/multiplayer/PlayerInfo/isSkinLoaded ()Z +MD: net/minecraft/client/multiplayer/PlayerInfo/m_105336_ ()Ljava/lang/String; net/minecraft/client/multiplayer/PlayerInfo/getModelName ()Ljava/lang/String; +MD: net/minecraft/client/multiplayer/PlayerInfo/m_105337_ ()Lnet/minecraft/resources/ResourceLocation; net/minecraft/client/multiplayer/PlayerInfo/getSkinLocation ()Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/client/multiplayer/PlayerInfo/m_105338_ ()Lnet/minecraft/resources/ResourceLocation; net/minecraft/client/multiplayer/PlayerInfo/getCapeLocation ()Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/client/multiplayer/PlayerInfo/m_105339_ ()Lnet/minecraft/resources/ResourceLocation; net/minecraft/client/multiplayer/PlayerInfo/getElytraLocation ()Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/client/multiplayer/PlayerInfo/m_105340_ ()Lnet/minecraft/world/scores/PlayerTeam; net/minecraft/client/multiplayer/PlayerInfo/getTeam ()Lnet/minecraft/world/scores/PlayerTeam; +MD: net/minecraft/client/multiplayer/PlayerInfo/m_105341_ ()V net/minecraft/client/multiplayer/PlayerInfo/registerTextures ()V +MD: net/minecraft/client/multiplayer/PlayerInfo/m_105342_ ()Lnet/minecraft/network/chat/Component; net/minecraft/client/multiplayer/PlayerInfo/getTabListDisplayName ()Lnet/minecraft/network/chat/Component; +MD: net/minecraft/client/multiplayer/PlayerInfo/m_171808_ ()Z net/minecraft/client/multiplayer/PlayerInfo/isCapeLoaded ()Z +MD: net/minecraft/client/multiplayer/PlayerInfo/m_241043_ ()Lnet/minecraft/network/chat/SignedMessageValidator; net/minecraft/client/multiplayer/PlayerInfo/getMessageValidator ()Lnet/minecraft/network/chat/SignedMessageValidator; +MD: net/minecraft/client/multiplayer/PlayerInfo/m_246479_ (Lnet/minecraft/network/chat/RemoteChatSession;)V net/minecraft/client/multiplayer/PlayerInfo/setChatSession (Lnet/minecraft/network/chat/RemoteChatSession;)V +MD: net/minecraft/client/multiplayer/PlayerInfo/m_247101_ ()Z net/minecraft/client/multiplayer/PlayerInfo/hasVerifiableChat ()Z +MD: net/minecraft/client/multiplayer/PlayerInfo/m_247593_ ()Lnet/minecraft/network/chat/RemoteChatSession; net/minecraft/client/multiplayer/PlayerInfo/getChatSession ()Lnet/minecraft/network/chat/RemoteChatSession; +MD: net/minecraft/client/multiplayer/PlayerInfo/m_253000_ (Z)Lnet/minecraft/network/chat/SignedMessageValidator; net/minecraft/client/multiplayer/PlayerInfo/fallbackMessageValidator (Z)Lnet/minecraft/network/chat/SignedMessageValidator; +MD: net/minecraft/client/multiplayer/PlayerInfo/m_253204_ (Z)V net/minecraft/client/multiplayer/PlayerInfo/clearChatSession (Z)V +MD: net/minecraft/client/multiplayer/ProfileKeyPairManager/ ()V net/minecraft/client/multiplayer/ProfileKeyPairManager/ ()V +MD: net/minecraft/client/multiplayer/ProfileKeyPairManager/m_252904_ ()Ljava/util/concurrent/CompletableFuture; net/minecraft/client/multiplayer/ProfileKeyPairManager/prepareKeyPair ()Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/client/multiplayer/ProfileKeyPairManager/m_252915_ (Lcom/mojang/authlib/minecraft/UserApiService;Lnet/minecraft/client/User;Ljava/nio/file/Path;)Lnet/minecraft/client/multiplayer/ProfileKeyPairManager; net/minecraft/client/multiplayer/ProfileKeyPairManager/create (Lcom/mojang/authlib/minecraft/UserApiService;Lnet/minecraft/client/User;Ljava/nio/file/Path;)Lnet/minecraft/client/multiplayer/ProfileKeyPairManager; +MD: net/minecraft/client/multiplayer/ProfileKeyPairManager/m_253130_ ()Z net/minecraft/client/multiplayer/ProfileKeyPairManager/shouldRefreshKeyPair ()Z +MD: net/minecraft/client/multiplayer/ProfileKeyPairManager$1/ ()V net/minecraft/client/multiplayer/ProfileKeyPairManager$1/ ()V +MD: net/minecraft/client/multiplayer/ProfileKeyPairManager$1/m_252904_ ()Ljava/util/concurrent/CompletableFuture; net/minecraft/client/multiplayer/ProfileKeyPairManager$1/prepareKeyPair ()Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/client/multiplayer/ProfileKeyPairManager$1/m_253130_ ()Z net/minecraft/client/multiplayer/ProfileKeyPairManager$1/shouldRefreshKeyPair ()Z +MD: net/minecraft/client/multiplayer/ServerData/ ()V net/minecraft/client/multiplayer/ServerData/ ()V +MD: net/minecraft/client/multiplayer/ServerData/ (Ljava/lang/String;Ljava/lang/String;Z)V net/minecraft/client/multiplayer/ServerData/ (Ljava/lang/String;Ljava/lang/String;Z)V +MD: net/minecraft/client/multiplayer/ServerData/m_105378_ ()Lnet/minecraft/nbt/CompoundTag; net/minecraft/client/multiplayer/ServerData/write ()Lnet/minecraft/nbt/CompoundTag; +MD: net/minecraft/client/multiplayer/ServerData/m_105379_ (Lnet/minecraft/client/multiplayer/ServerData$ServerPackStatus;)V net/minecraft/client/multiplayer/ServerData/setResourcePackStatus (Lnet/minecraft/client/multiplayer/ServerData$ServerPackStatus;)V +MD: net/minecraft/client/multiplayer/ServerData/m_105381_ (Lnet/minecraft/client/multiplayer/ServerData;)V net/minecraft/client/multiplayer/ServerData/copyFrom (Lnet/minecraft/client/multiplayer/ServerData;)V +MD: net/minecraft/client/multiplayer/ServerData/m_105385_ (Lnet/minecraft/nbt/CompoundTag;)Lnet/minecraft/client/multiplayer/ServerData; net/minecraft/client/multiplayer/ServerData/read (Lnet/minecraft/nbt/CompoundTag;)Lnet/minecraft/client/multiplayer/ServerData; +MD: net/minecraft/client/multiplayer/ServerData/m_105387_ ()Lnet/minecraft/client/multiplayer/ServerData$ServerPackStatus; net/minecraft/client/multiplayer/ServerData/getResourcePackStatus ()Lnet/minecraft/client/multiplayer/ServerData$ServerPackStatus; +MD: net/minecraft/client/multiplayer/ServerData/m_105389_ ()Z net/minecraft/client/multiplayer/ServerData/isLan ()Z +MD: net/minecraft/client/multiplayer/ServerData/m_233803_ (Lnet/minecraft/client/multiplayer/ServerData;)V net/minecraft/client/multiplayer/ServerData/copyNameIconFrom (Lnet/minecraft/client/multiplayer/ServerData;)V +MD: net/minecraft/client/multiplayer/ServerData/m_242962_ ()Z net/minecraft/client/multiplayer/ServerData/enforcesSecureChat ()Z +MD: net/minecraft/client/multiplayer/ServerData/m_242965_ (Z)V net/minecraft/client/multiplayer/ServerData/setEnforcesSecureChat (Z)V +MD: net/minecraft/client/multiplayer/ServerData/m_271813_ ([B)V net/minecraft/client/multiplayer/ServerData/setIconBytes ([B)V +MD: net/minecraft/client/multiplayer/ServerData/m_271916_ ()[B net/minecraft/client/multiplayer/ServerData/getIconBytes ()[B +MD: net/minecraft/client/multiplayer/ServerData$ServerPackStatus/ ()V net/minecraft/client/multiplayer/ServerData$ServerPackStatus/ ()V +MD: net/minecraft/client/multiplayer/ServerData$ServerPackStatus/ (Ljava/lang/String;ILjava/lang/String;)V net/minecraft/client/multiplayer/ServerData$ServerPackStatus/ (Ljava/lang/String;ILjava/lang/String;)V +MD: net/minecraft/client/multiplayer/ServerData$ServerPackStatus/m_105400_ ()Lnet/minecraft/network/chat/Component; net/minecraft/client/multiplayer/ServerData$ServerPackStatus/getName ()Lnet/minecraft/network/chat/Component; +MD: net/minecraft/client/multiplayer/ServerData$ServerPackStatus/m_171809_ ()[Lnet/minecraft/client/multiplayer/ServerData$ServerPackStatus; net/minecraft/client/multiplayer/ServerData$ServerPackStatus/$values ()[Lnet/minecraft/client/multiplayer/ServerData$ServerPackStatus; +MD: net/minecraft/client/multiplayer/ServerData$ServerPackStatus/valueOf (Ljava/lang/String;)Lnet/minecraft/client/multiplayer/ServerData$ServerPackStatus; net/minecraft/client/multiplayer/ServerData$ServerPackStatus/valueOf (Ljava/lang/String;)Lnet/minecraft/client/multiplayer/ServerData$ServerPackStatus; +MD: net/minecraft/client/multiplayer/ServerData$ServerPackStatus/values ()[Lnet/minecraft/client/multiplayer/ServerData$ServerPackStatus; net/minecraft/client/multiplayer/ServerData$ServerPackStatus/values ()[Lnet/minecraft/client/multiplayer/ServerData$ServerPackStatus; +MD: net/minecraft/client/multiplayer/ServerList/ ()V net/minecraft/client/multiplayer/ServerList/ ()V +MD: net/minecraft/client/multiplayer/ServerList/ (Lnet/minecraft/client/Minecraft;)V net/minecraft/client/multiplayer/ServerList/ (Lnet/minecraft/client/Minecraft;)V +MD: net/minecraft/client/multiplayer/ServerList/m_105431_ ()V net/minecraft/client/multiplayer/ServerList/load ()V +MD: net/minecraft/client/multiplayer/ServerList/m_105432_ (I)Lnet/minecraft/client/multiplayer/ServerData; net/minecraft/client/multiplayer/ServerList/get (I)Lnet/minecraft/client/multiplayer/ServerData; +MD: net/minecraft/client/multiplayer/ServerList/m_105434_ (II)V net/minecraft/client/multiplayer/ServerList/swap (II)V +MD: net/minecraft/client/multiplayer/ServerList/m_105437_ (ILnet/minecraft/client/multiplayer/ServerData;)V net/minecraft/client/multiplayer/ServerList/replace (ILnet/minecraft/client/multiplayer/ServerData;)V +MD: net/minecraft/client/multiplayer/ServerList/m_105440_ (Lnet/minecraft/client/multiplayer/ServerData;)V net/minecraft/client/multiplayer/ServerList/remove (Lnet/minecraft/client/multiplayer/ServerData;)V +MD: net/minecraft/client/multiplayer/ServerList/m_105442_ ()V net/minecraft/client/multiplayer/ServerList/save ()V +MD: net/minecraft/client/multiplayer/ServerList/m_105445_ ()I net/minecraft/client/multiplayer/ServerList/size ()I +MD: net/minecraft/client/multiplayer/ServerList/m_105446_ (Lnet/minecraft/client/multiplayer/ServerData;)V net/minecraft/client/multiplayer/ServerList/saveSingleServer (Lnet/minecraft/client/multiplayer/ServerData;)V +MD: net/minecraft/client/multiplayer/ServerList/m_233839_ (Lnet/minecraft/client/multiplayer/ServerData;Ljava/util/List;)Z net/minecraft/client/multiplayer/ServerList/set (Lnet/minecraft/client/multiplayer/ServerData;Ljava/util/List;)Z +MD: net/minecraft/client/multiplayer/ServerList/m_233842_ (Lnet/minecraft/client/multiplayer/ServerData;Z)V net/minecraft/client/multiplayer/ServerList/add (Lnet/minecraft/client/multiplayer/ServerData;Z)V +MD: net/minecraft/client/multiplayer/ServerList/m_233845_ (Ljava/lang/String;)Lnet/minecraft/client/multiplayer/ServerData; net/minecraft/client/multiplayer/ServerList/get (Ljava/lang/String;)Lnet/minecraft/client/multiplayer/ServerData; +MD: net/minecraft/client/multiplayer/ServerList/m_233847_ (Ljava/lang/String;)Lnet/minecraft/client/multiplayer/ServerData; net/minecraft/client/multiplayer/ServerList/unhide (Ljava/lang/String;)Lnet/minecraft/client/multiplayer/ServerData; +MD: net/minecraft/client/multiplayer/ServerList/m_233849_ (Lnet/minecraft/client/multiplayer/ServerData;)V net/minecraft/client/multiplayer/ServerList/lambda$saveSingleServer$0 (Lnet/minecraft/client/multiplayer/ServerData;)V +MD: net/minecraft/client/multiplayer/ServerStatusPinger/ ()V net/minecraft/client/multiplayer/ServerStatusPinger/ ()V +MD: net/minecraft/client/multiplayer/ServerStatusPinger/ ()V net/minecraft/client/multiplayer/ServerStatusPinger/ ()V +MD: net/minecraft/client/multiplayer/ServerStatusPinger/m_105453_ ()V net/minecraft/client/multiplayer/ServerStatusPinger/tick ()V +MD: net/minecraft/client/multiplayer/ServerStatusPinger/m_105459_ (Lnet/minecraft/client/multiplayer/ServerData;Ljava/lang/Runnable;)V net/minecraft/client/multiplayer/ServerStatusPinger/pingServer (Lnet/minecraft/client/multiplayer/ServerData;Ljava/lang/Runnable;)V +MD: net/minecraft/client/multiplayer/ServerStatusPinger/m_105465_ ()V net/minecraft/client/multiplayer/ServerStatusPinger/removeAll ()V +MD: net/minecraft/client/multiplayer/ServerStatusPinger/m_105466_ (II)Lnet/minecraft/network/chat/Component; net/minecraft/client/multiplayer/ServerStatusPinger/formatPlayerCount (II)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/client/multiplayer/ServerStatusPinger/m_171811_ (Ljava/net/InetSocketAddress;Lnet/minecraft/client/multiplayer/ServerData;)V net/minecraft/client/multiplayer/ServerStatusPinger/pingLegacyServer (Ljava/net/InetSocketAddress;Lnet/minecraft/client/multiplayer/ServerData;)V +MD: net/minecraft/client/multiplayer/ServerStatusPinger/m_171814_ (Lnet/minecraft/network/chat/Component;Lnet/minecraft/client/multiplayer/ServerData;)V net/minecraft/client/multiplayer/ServerStatusPinger/onPingFailed (Lnet/minecraft/network/chat/Component;Lnet/minecraft/client/multiplayer/ServerData;)V +MD: net/minecraft/client/multiplayer/ServerStatusPinger/m_264509_ (Lnet/minecraft/network/chat/Style;)Lnet/minecraft/network/chat/Style; net/minecraft/client/multiplayer/ServerStatusPinger/lambda$static$0 (Lnet/minecraft/network/chat/Style;)Lnet/minecraft/network/chat/Style; +MD: net/minecraft/client/multiplayer/ServerStatusPinger$1/ (Lnet/minecraft/client/multiplayer/ServerStatusPinger;Lnet/minecraft/network/Connection;Lnet/minecraft/client/multiplayer/ServerData;Ljava/lang/Runnable;Ljava/net/InetSocketAddress;)V net/minecraft/client/multiplayer/ServerStatusPinger$1/ (Lnet/minecraft/client/multiplayer/ServerStatusPinger;Lnet/minecraft/network/Connection;Lnet/minecraft/client/multiplayer/ServerData;Ljava/lang/Runnable;Ljava/net/InetSocketAddress;)V +MD: net/minecraft/client/multiplayer/ServerStatusPinger$1/m_271709_ (Lnet/minecraft/client/multiplayer/ServerData;Ljava/lang/Runnable;Lnet/minecraft/network/protocol/status/ServerStatus$Favicon;)V net/minecraft/client/multiplayer/ServerStatusPinger$1/lambda$handleStatusResponse$4 (Lnet/minecraft/client/multiplayer/ServerData;Ljava/lang/Runnable;Lnet/minecraft/network/protocol/status/ServerStatus$Favicon;)V +MD: net/minecraft/client/multiplayer/ServerStatusPinger$1/m_271999_ (Lnet/minecraft/client/multiplayer/ServerData;Lnet/minecraft/network/protocol/status/ServerStatus$Players;)V net/minecraft/client/multiplayer/ServerStatusPinger$1/lambda$handleStatusResponse$2 (Lnet/minecraft/client/multiplayer/ServerData;Lnet/minecraft/network/protocol/status/ServerStatus$Players;)V +MD: net/minecraft/client/multiplayer/ServerStatusPinger$1/m_272044_ (Lnet/minecraft/client/multiplayer/ServerData;)V net/minecraft/client/multiplayer/ServerStatusPinger$1/lambda$handleStatusResponse$3 (Lnet/minecraft/client/multiplayer/ServerData;)V +MD: net/minecraft/client/multiplayer/ServerStatusPinger$1/m_272230_ (Lnet/minecraft/client/multiplayer/ServerData;)V net/minecraft/client/multiplayer/ServerStatusPinger$1/lambda$handleStatusResponse$1 (Lnet/minecraft/client/multiplayer/ServerData;)V +MD: net/minecraft/client/multiplayer/ServerStatusPinger$1/m_272281_ (Lnet/minecraft/client/multiplayer/ServerData;Lnet/minecraft/network/protocol/status/ServerStatus$Version;)V net/minecraft/client/multiplayer/ServerStatusPinger$1/lambda$handleStatusResponse$0 (Lnet/minecraft/client/multiplayer/ServerData;Lnet/minecraft/network/protocol/status/ServerStatus$Version;)V +MD: net/minecraft/client/multiplayer/ServerStatusPinger$1/m_6198_ ()Z net/minecraft/client/multiplayer/ServerStatusPinger$1/isAcceptingMessages ()Z +MD: net/minecraft/client/multiplayer/ServerStatusPinger$1/m_6440_ (Lnet/minecraft/network/protocol/status/ClientboundStatusResponsePacket;)V net/minecraft/client/multiplayer/ServerStatusPinger$1/handleStatusResponse (Lnet/minecraft/network/protocol/status/ClientboundStatusResponsePacket;)V +MD: net/minecraft/client/multiplayer/ServerStatusPinger$1/m_7017_ (Lnet/minecraft/network/protocol/status/ClientboundPongResponsePacket;)V net/minecraft/client/multiplayer/ServerStatusPinger$1/handlePongResponse (Lnet/minecraft/network/protocol/status/ClientboundPongResponsePacket;)V +MD: net/minecraft/client/multiplayer/ServerStatusPinger$1/m_7026_ (Lnet/minecraft/network/chat/Component;)V net/minecraft/client/multiplayer/ServerStatusPinger$1/onDisconnect (Lnet/minecraft/network/chat/Component;)V +MD: net/minecraft/client/multiplayer/ServerStatusPinger$2/ (Lnet/minecraft/client/multiplayer/ServerStatusPinger;Ljava/net/InetSocketAddress;Lnet/minecraft/client/multiplayer/ServerData;)V net/minecraft/client/multiplayer/ServerStatusPinger$2/ (Lnet/minecraft/client/multiplayer/ServerStatusPinger;Ljava/net/InetSocketAddress;Lnet/minecraft/client/multiplayer/ServerData;)V +MD: net/minecraft/client/multiplayer/ServerStatusPinger$2/initChannel (Lio/netty/channel/Channel;)V net/minecraft/client/multiplayer/ServerStatusPinger$2/initChannel (Lio/netty/channel/Channel;)V +MD: net/minecraft/client/multiplayer/ServerStatusPinger$2$1/ (Lnet/minecraft/client/multiplayer/ServerStatusPinger$2;)V net/minecraft/client/multiplayer/ServerStatusPinger$2$1/ (Lnet/minecraft/client/multiplayer/ServerStatusPinger$2;)V +MD: net/minecraft/client/multiplayer/ServerStatusPinger$2$1/channelActive (Lio/netty/channel/ChannelHandlerContext;)V net/minecraft/client/multiplayer/ServerStatusPinger$2$1/channelActive (Lio/netty/channel/ChannelHandlerContext;)V +MD: net/minecraft/client/multiplayer/ServerStatusPinger$2$1/channelRead0 (Lio/netty/channel/ChannelHandlerContext;Ljava/lang/Object;)V net/minecraft/client/multiplayer/ServerStatusPinger$2$1/channelRead0 (Lio/netty/channel/ChannelHandlerContext;Ljava/lang/Object;)V +MD: net/minecraft/client/multiplayer/ServerStatusPinger$2$1/channelRead0 (Lio/netty/channel/ChannelHandlerContext;Lio/netty/buffer/ByteBuf;)V net/minecraft/client/multiplayer/ServerStatusPinger$2$1/channelRead0 (Lio/netty/channel/ChannelHandlerContext;Lio/netty/buffer/ByteBuf;)V +MD: net/minecraft/client/multiplayer/ServerStatusPinger$2$1/exceptionCaught (Lio/netty/channel/ChannelHandlerContext;Ljava/lang/Throwable;)V net/minecraft/client/multiplayer/ServerStatusPinger$2$1/exceptionCaught (Lio/netty/channel/ChannelHandlerContext;Ljava/lang/Throwable;)V +MD: net/minecraft/client/multiplayer/chat/ChatListener/ (Lnet/minecraft/client/Minecraft;)V net/minecraft/client/multiplayer/chat/ChatListener/ (Lnet/minecraft/client/Minecraft;)V +MD: net/minecraft/client/multiplayer/chat/ChatListener/m_240473_ (Lnet/minecraft/network/chat/Component;)Ljava/util/UUID; net/minecraft/client/multiplayer/chat/ChatListener/guessChatUUID (Lnet/minecraft/network/chat/Component;)Ljava/util/UUID; +MD: net/minecraft/client/multiplayer/chat/ChatListener/m_240494_ (Lnet/minecraft/network/chat/Component;Z)V net/minecraft/client/multiplayer/chat/ChatListener/handleSystemMessage (Lnet/minecraft/network/chat/Component;Z)V +MD: net/minecraft/client/multiplayer/chat/ChatListener/m_240498_ (Lnet/minecraft/network/chat/Component;Ljava/time/Instant;)V net/minecraft/client/multiplayer/chat/ChatListener/logSystemMessage (Lnet/minecraft/network/chat/Component;Ljava/time/Instant;)V +MD: net/minecraft/client/multiplayer/chat/ChatListener/m_240688_ ()V net/minecraft/client/multiplayer/chat/ChatListener/tick ()V +MD: net/minecraft/client/multiplayer/chat/ChatListener/m_240692_ (D)V net/minecraft/client/multiplayer/chat/ChatListener/setMessageDelay (D)V +MD: net/minecraft/client/multiplayer/chat/ChatListener/m_240706_ ()Z net/minecraft/client/multiplayer/chat/ChatListener/willDelayMessages ()Z +MD: net/minecraft/client/multiplayer/chat/ChatListener/m_240711_ ()V net/minecraft/client/multiplayer/chat/ChatListener/acceptNextDelayedMessage ()V +MD: net/minecraft/client/multiplayer/chat/ChatListener/m_240956_ (Lnet/minecraft/network/chat/MessageSignature;)Z net/minecraft/client/multiplayer/chat/ChatListener/removeFromDelayedMessageQueue (Lnet/minecraft/network/chat/MessageSignature;)Z +MD: net/minecraft/client/multiplayer/chat/ChatListener/m_240963_ (Ljava/util/UUID;)Z net/minecraft/client/multiplayer/chat/ChatListener/isSenderLocalPlayer (Ljava/util/UUID;)Z +MD: net/minecraft/client/multiplayer/chat/ChatListener/m_241119_ (Lnet/minecraft/network/chat/ChatType$Bound;Lnet/minecraft/network/chat/Component;)V net/minecraft/client/multiplayer/chat/ChatListener/narrateChatMessage (Lnet/minecraft/network/chat/ChatType$Bound;Lnet/minecraft/network/chat/Component;)V +MD: net/minecraft/client/multiplayer/chat/ChatListener/m_241954_ ()V net/minecraft/client/multiplayer/chat/ChatListener/clearQueue ()V +MD: net/minecraft/client/multiplayer/chat/ChatListener/m_242024_ ()J net/minecraft/client/multiplayer/chat/ChatListener/queueSize ()J +MD: net/minecraft/client/multiplayer/chat/ChatListener/m_244709_ (Lnet/minecraft/network/chat/ChatType$Bound;Lnet/minecraft/network/chat/Component;Ljava/time/Instant;)Z net/minecraft/client/multiplayer/chat/ChatListener/lambda$handleDisguisedChatMessage$2 (Lnet/minecraft/network/chat/ChatType$Bound;Lnet/minecraft/network/chat/Component;Ljava/time/Instant;)Z +MD: net/minecraft/client/multiplayer/chat/ChatListener/m_244710_ (Lnet/minecraft/network/chat/ChatType$Bound;Lnet/minecraft/network/chat/PlayerChatMessage;Lnet/minecraft/network/chat/Component;Lcom/mojang/authlib/GameProfile;ZLjava/time/Instant;)Z net/minecraft/client/multiplayer/chat/ChatListener/lambda$handlePlayerChatMessage$1 (Lnet/minecraft/network/chat/ChatType$Bound;Lnet/minecraft/network/chat/PlayerChatMessage;Lnet/minecraft/network/chat/Component;Lcom/mojang/authlib/GameProfile;ZLjava/time/Instant;)Z +MD: net/minecraft/client/multiplayer/chat/ChatListener/m_244711_ (Lnet/minecraft/network/chat/MessageSignature;Lnet/minecraft/client/multiplayer/chat/ChatListener$Message;)Z net/minecraft/client/multiplayer/chat/ChatListener/lambda$removeFromDelayedMessageQueue$0 (Lnet/minecraft/network/chat/MessageSignature;Lnet/minecraft/client/multiplayer/chat/ChatListener$Message;)Z +MD: net/minecraft/client/multiplayer/chat/ChatListener/m_245141_ (Lnet/minecraft/network/chat/Component;Lnet/minecraft/network/chat/ChatType$Bound;)V net/minecraft/client/multiplayer/chat/ChatListener/handleDisguisedChatMessage (Lnet/minecraft/network/chat/Component;Lnet/minecraft/network/chat/ChatType$Bound;)V +MD: net/minecraft/client/multiplayer/chat/ChatListener/m_245326_ (Lnet/minecraft/network/chat/PlayerChatMessage;Lnet/minecraft/network/chat/ChatType$Bound;Lcom/mojang/authlib/GameProfile;Lnet/minecraft/client/multiplayer/chat/ChatTrustLevel;)V net/minecraft/client/multiplayer/chat/ChatListener/logPlayerMessage (Lnet/minecraft/network/chat/PlayerChatMessage;Lnet/minecraft/network/chat/ChatType$Bound;Lcom/mojang/authlib/GameProfile;Lnet/minecraft/client/multiplayer/chat/ChatTrustLevel;)V +MD: net/minecraft/client/multiplayer/chat/ChatListener/m_245744_ (Lnet/minecraft/network/chat/PlayerChatMessage;Lnet/minecraft/network/chat/Component;Ljava/time/Instant;)Lnet/minecraft/client/multiplayer/chat/ChatTrustLevel; net/minecraft/client/multiplayer/chat/ChatListener/evaluateTrustLevel (Lnet/minecraft/network/chat/PlayerChatMessage;Lnet/minecraft/network/chat/Component;Ljava/time/Instant;)Lnet/minecraft/client/multiplayer/chat/ChatTrustLevel; +MD: net/minecraft/client/multiplayer/chat/ChatListener/m_246163_ (Lnet/minecraft/network/chat/MessageSignature;Ljava/util/function/BooleanSupplier;)V net/minecraft/client/multiplayer/chat/ChatListener/handleMessage (Lnet/minecraft/network/chat/MessageSignature;Ljava/util/function/BooleanSupplier;)V +MD: net/minecraft/client/multiplayer/chat/ChatListener/m_246494_ (Lnet/minecraft/network/chat/ChatType$Bound;Lnet/minecraft/network/chat/PlayerChatMessage;Lnet/minecraft/network/chat/Component;Lcom/mojang/authlib/GameProfile;ZLjava/time/Instant;)Z net/minecraft/client/multiplayer/chat/ChatListener/showMessageToPlayer (Lnet/minecraft/network/chat/ChatType$Bound;Lnet/minecraft/network/chat/PlayerChatMessage;Lnet/minecraft/network/chat/Component;Lcom/mojang/authlib/GameProfile;ZLjava/time/Instant;)Z +MD: net/minecraft/client/multiplayer/chat/ChatListener/m_247425_ (Lnet/minecraft/network/chat/PlayerChatMessage;Lcom/mojang/authlib/GameProfile;Lnet/minecraft/network/chat/ChatType$Bound;)V net/minecraft/client/multiplayer/chat/ChatListener/handlePlayerChatMessage (Lnet/minecraft/network/chat/PlayerChatMessage;Lcom/mojang/authlib/GameProfile;Lnet/minecraft/network/chat/ChatType$Bound;)V +MD: net/minecraft/client/multiplayer/chat/ChatListener$Message/ (Lnet/minecraft/network/chat/MessageSignature;Ljava/util/function/BooleanSupplier;)V net/minecraft/client/multiplayer/chat/ChatListener$Message/ (Lnet/minecraft/network/chat/MessageSignature;Ljava/util/function/BooleanSupplier;)V +MD: net/minecraft/client/multiplayer/chat/ChatListener$Message/equals (Ljava/lang/Object;)Z net/minecraft/client/multiplayer/chat/ChatListener$Message/equals (Ljava/lang/Object;)Z +MD: net/minecraft/client/multiplayer/chat/ChatListener$Message/f_244088_ ()Ljava/util/function/BooleanSupplier; net/minecraft/client/multiplayer/chat/ChatListener$Message/handler ()Ljava/util/function/BooleanSupplier; +MD: net/minecraft/client/multiplayer/chat/ChatListener$Message/f_244535_ ()Lnet/minecraft/network/chat/MessageSignature; net/minecraft/client/multiplayer/chat/ChatListener$Message/signature ()Lnet/minecraft/network/chat/MessageSignature; +MD: net/minecraft/client/multiplayer/chat/ChatListener$Message/hashCode ()I net/minecraft/client/multiplayer/chat/ChatListener$Message/hashCode ()I +MD: net/minecraft/client/multiplayer/chat/ChatListener$Message/m_240698_ ()Z net/minecraft/client/multiplayer/chat/ChatListener$Message/accept ()Z +MD: net/minecraft/client/multiplayer/chat/ChatListener$Message/toString ()Ljava/lang/String; net/minecraft/client/multiplayer/chat/ChatListener$Message/toString ()Ljava/lang/String; +MD: net/minecraft/client/multiplayer/chat/ChatLog/ (I)V net/minecraft/client/multiplayer/chat/ChatLog/ (I)V +MD: net/minecraft/client/multiplayer/chat/ChatLog/ (ILjava/util/List;)V net/minecraft/client/multiplayer/chat/ChatLog/ (ILjava/util/List;)V +MD: net/minecraft/client/multiplayer/chat/ChatLog/m_239049_ (I)Lnet/minecraft/client/multiplayer/chat/LoggedChatEvent; net/minecraft/client/multiplayer/chat/ChatLog/lookup (I)Lnet/minecraft/client/multiplayer/chat/LoggedChatEvent; +MD: net/minecraft/client/multiplayer/chat/ChatLog/m_239651_ (Lnet/minecraft/client/multiplayer/chat/LoggedChatEvent;)V net/minecraft/client/multiplayer/chat/ChatLog/push (Lnet/minecraft/client/multiplayer/chat/LoggedChatEvent;)V +MD: net/minecraft/client/multiplayer/chat/ChatLog/m_245303_ (I)I net/minecraft/client/multiplayer/chat/ChatLog/index (I)I +MD: net/minecraft/client/multiplayer/chat/ChatLog/m_245950_ ()I net/minecraft/client/multiplayer/chat/ChatLog/end ()I +MD: net/minecraft/client/multiplayer/chat/ChatLog/m_246004_ ()I net/minecraft/client/multiplayer/chat/ChatLog/start ()I +MD: net/minecraft/client/multiplayer/chat/ChatLog/m_252737_ (I)Lcom/mojang/serialization/Codec; net/minecraft/client/multiplayer/chat/ChatLog/codec (I)Lcom/mojang/serialization/Codec; +MD: net/minecraft/client/multiplayer/chat/ChatLog/m_252894_ (II)[Lnet/minecraft/client/multiplayer/chat/LoggedChatEvent; net/minecraft/client/multiplayer/chat/ChatLog/lambda$new$2 (II)[Lnet/minecraft/client/multiplayer/chat/LoggedChatEvent; +MD: net/minecraft/client/multiplayer/chat/ChatLog/m_252924_ ()Ljava/util/List; net/minecraft/client/multiplayer/chat/ChatLog/loggedChatEvents ()Ljava/util/List; +MD: net/minecraft/client/multiplayer/chat/ChatLog/m_253001_ ()I net/minecraft/client/multiplayer/chat/ChatLog/size ()I +MD: net/minecraft/client/multiplayer/chat/ChatLog/m_274000_ (ILjava/util/List;)Lcom/mojang/serialization/DataResult; net/minecraft/client/multiplayer/chat/ChatLog/lambda$codec$1 (ILjava/util/List;)Lcom/mojang/serialization/DataResult; +MD: net/minecraft/client/multiplayer/chat/ChatLog/m_274001_ (II)Ljava/lang/String; net/minecraft/client/multiplayer/chat/ChatLog/lambda$codec$0 (II)Ljava/lang/String; +MD: net/minecraft/client/multiplayer/chat/ChatTrustLevel/ ()V net/minecraft/client/multiplayer/chat/ChatTrustLevel/ ()V +MD: net/minecraft/client/multiplayer/chat/ChatTrustLevel/ (Ljava/lang/String;ILjava/lang/String;)V net/minecraft/client/multiplayer/chat/ChatTrustLevel/ (Ljava/lang/String;ILjava/lang/String;)V +MD: net/minecraft/client/multiplayer/chat/ChatTrustLevel/m_240405_ (Lnet/minecraft/network/chat/PlayerChatMessage;)Lnet/minecraft/client/GuiMessageTag; net/minecraft/client/multiplayer/chat/ChatTrustLevel/createTag (Lnet/minecraft/network/chat/PlayerChatMessage;)Lnet/minecraft/client/GuiMessageTag; +MD: net/minecraft/client/multiplayer/chat/ChatTrustLevel/m_240444_ ()[Lnet/minecraft/client/multiplayer/chat/ChatTrustLevel; net/minecraft/client/multiplayer/chat/ChatTrustLevel/$values ()[Lnet/minecraft/client/multiplayer/chat/ChatTrustLevel; +MD: net/minecraft/client/multiplayer/chat/ChatTrustLevel/m_240450_ ()Z net/minecraft/client/multiplayer/chat/ChatTrustLevel/isNotSecure ()Z +MD: net/minecraft/client/multiplayer/chat/ChatTrustLevel/m_245358_ (Lnet/minecraft/network/chat/PlayerChatMessage;Lnet/minecraft/network/chat/Component;Ljava/time/Instant;)Lnet/minecraft/client/multiplayer/chat/ChatTrustLevel; net/minecraft/client/multiplayer/chat/ChatTrustLevel/evaluate (Lnet/minecraft/network/chat/PlayerChatMessage;Lnet/minecraft/network/chat/Component;Ljava/time/Instant;)Lnet/minecraft/client/multiplayer/chat/ChatTrustLevel; +MD: net/minecraft/client/multiplayer/chat/ChatTrustLevel/m_246526_ (Lnet/minecraft/network/chat/Component;)Z net/minecraft/client/multiplayer/chat/ChatTrustLevel/containsModifiedStyle (Lnet/minecraft/network/chat/Component;)Z +MD: net/minecraft/client/multiplayer/chat/ChatTrustLevel/m_246638_ (Lnet/minecraft/network/chat/Style;)Z net/minecraft/client/multiplayer/chat/ChatTrustLevel/isModifiedStyle (Lnet/minecraft/network/chat/Style;)Z +MD: net/minecraft/client/multiplayer/chat/ChatTrustLevel/m_247462_ (Lnet/minecraft/network/chat/Style;Ljava/lang/String;)Ljava/util/Optional; net/minecraft/client/multiplayer/chat/ChatTrustLevel/lambda$containsModifiedStyle$0 (Lnet/minecraft/network/chat/Style;Ljava/lang/String;)Ljava/util/Optional; +MD: net/minecraft/client/multiplayer/chat/ChatTrustLevel/m_247746_ (Lnet/minecraft/network/chat/PlayerChatMessage;Lnet/minecraft/network/chat/Component;)Z net/minecraft/client/multiplayer/chat/ChatTrustLevel/isModified (Lnet/minecraft/network/chat/PlayerChatMessage;Lnet/minecraft/network/chat/Component;)Z +MD: net/minecraft/client/multiplayer/chat/ChatTrustLevel/m_7912_ ()Ljava/lang/String; net/minecraft/client/multiplayer/chat/ChatTrustLevel/getSerializedName ()Ljava/lang/String; +MD: net/minecraft/client/multiplayer/chat/ChatTrustLevel/valueOf (Ljava/lang/String;)Lnet/minecraft/client/multiplayer/chat/ChatTrustLevel; net/minecraft/client/multiplayer/chat/ChatTrustLevel/valueOf (Ljava/lang/String;)Lnet/minecraft/client/multiplayer/chat/ChatTrustLevel; +MD: net/minecraft/client/multiplayer/chat/ChatTrustLevel/values ()[Lnet/minecraft/client/multiplayer/chat/ChatTrustLevel; net/minecraft/client/multiplayer/chat/ChatTrustLevel/values ()[Lnet/minecraft/client/multiplayer/chat/ChatTrustLevel; +MD: net/minecraft/client/multiplayer/chat/ChatTrustLevel$1/ ()V net/minecraft/client/multiplayer/chat/ChatTrustLevel$1/ ()V +MD: net/minecraft/client/multiplayer/chat/LoggedChatEvent/ ()V net/minecraft/client/multiplayer/chat/LoggedChatEvent/ ()V +MD: net/minecraft/client/multiplayer/chat/LoggedChatEvent/m_252883_ ()Lnet/minecraft/client/multiplayer/chat/LoggedChatEvent$Type; net/minecraft/client/multiplayer/chat/LoggedChatEvent/type ()Lnet/minecraft/client/multiplayer/chat/LoggedChatEvent$Type; +MD: net/minecraft/client/multiplayer/chat/LoggedChatEvent$Type/ ()V net/minecraft/client/multiplayer/chat/LoggedChatEvent$Type/ ()V +MD: net/minecraft/client/multiplayer/chat/LoggedChatEvent$Type/ (Ljava/lang/String;ILjava/lang/String;Ljava/util/function/Supplier;)V net/minecraft/client/multiplayer/chat/LoggedChatEvent$Type/ (Ljava/lang/String;ILjava/lang/String;Ljava/util/function/Supplier;)V +MD: net/minecraft/client/multiplayer/chat/LoggedChatEvent$Type/m_252746_ ()Lcom/mojang/serialization/Codec; net/minecraft/client/multiplayer/chat/LoggedChatEvent$Type/lambda$static$0 ()Lcom/mojang/serialization/Codec; +MD: net/minecraft/client/multiplayer/chat/LoggedChatEvent$Type/m_252861_ ()Lcom/mojang/serialization/Codec; net/minecraft/client/multiplayer/chat/LoggedChatEvent$Type/codec ()Lcom/mojang/serialization/Codec; +MD: net/minecraft/client/multiplayer/chat/LoggedChatEvent$Type/m_252918_ ()[Lnet/minecraft/client/multiplayer/chat/LoggedChatEvent$Type; net/minecraft/client/multiplayer/chat/LoggedChatEvent$Type/$values ()[Lnet/minecraft/client/multiplayer/chat/LoggedChatEvent$Type; +MD: net/minecraft/client/multiplayer/chat/LoggedChatEvent$Type/m_253152_ ()Lcom/mojang/serialization/Codec; net/minecraft/client/multiplayer/chat/LoggedChatEvent$Type/lambda$static$1 ()Lcom/mojang/serialization/Codec; +MD: net/minecraft/client/multiplayer/chat/LoggedChatEvent$Type/m_7912_ ()Ljava/lang/String; net/minecraft/client/multiplayer/chat/LoggedChatEvent$Type/getSerializedName ()Ljava/lang/String; +MD: net/minecraft/client/multiplayer/chat/LoggedChatEvent$Type/valueOf (Ljava/lang/String;)Lnet/minecraft/client/multiplayer/chat/LoggedChatEvent$Type; net/minecraft/client/multiplayer/chat/LoggedChatEvent$Type/valueOf (Ljava/lang/String;)Lnet/minecraft/client/multiplayer/chat/LoggedChatEvent$Type; +MD: net/minecraft/client/multiplayer/chat/LoggedChatEvent$Type/values ()[Lnet/minecraft/client/multiplayer/chat/LoggedChatEvent$Type; net/minecraft/client/multiplayer/chat/LoggedChatEvent$Type/values ()[Lnet/minecraft/client/multiplayer/chat/LoggedChatEvent$Type; +MD: net/minecraft/client/multiplayer/chat/LoggedChatMessage/m_241813_ ()Lnet/minecraft/network/chat/Component; net/minecraft/client/multiplayer/chat/LoggedChatMessage/toNarrationComponent ()Lnet/minecraft/network/chat/Component; +MD: net/minecraft/client/multiplayer/chat/LoggedChatMessage/m_241821_ (Lnet/minecraft/network/chat/Component;Ljava/time/Instant;)Lnet/minecraft/client/multiplayer/chat/LoggedChatMessage$System; net/minecraft/client/multiplayer/chat/LoggedChatMessage/system (Lnet/minecraft/network/chat/Component;Ljava/time/Instant;)Lnet/minecraft/client/multiplayer/chat/LoggedChatMessage$System; +MD: net/minecraft/client/multiplayer/chat/LoggedChatMessage/m_241831_ ()Lnet/minecraft/network/chat/Component; net/minecraft/client/multiplayer/chat/LoggedChatMessage/toContentComponent ()Lnet/minecraft/network/chat/Component; +MD: net/minecraft/client/multiplayer/chat/LoggedChatMessage/m_241866_ (Ljava/util/UUID;)Z net/minecraft/client/multiplayer/chat/LoggedChatMessage/canReport (Ljava/util/UUID;)Z +MD: net/minecraft/client/multiplayer/chat/LoggedChatMessage/m_261049_ (Lcom/mojang/authlib/GameProfile;Lnet/minecraft/network/chat/PlayerChatMessage;Lnet/minecraft/client/multiplayer/chat/ChatTrustLevel;)Lnet/minecraft/client/multiplayer/chat/LoggedChatMessage$Player; net/minecraft/client/multiplayer/chat/LoggedChatMessage/player (Lcom/mojang/authlib/GameProfile;Lnet/minecraft/network/chat/PlayerChatMessage;Lnet/minecraft/client/multiplayer/chat/ChatTrustLevel;)Lnet/minecraft/client/multiplayer/chat/LoggedChatMessage$Player; +MD: net/minecraft/client/multiplayer/chat/LoggedChatMessage$Player/ ()V net/minecraft/client/multiplayer/chat/LoggedChatMessage$Player/ ()V +MD: net/minecraft/client/multiplayer/chat/LoggedChatMessage$Player/ (Lcom/mojang/authlib/GameProfile;Lnet/minecraft/network/chat/PlayerChatMessage;Lnet/minecraft/client/multiplayer/chat/ChatTrustLevel;)V net/minecraft/client/multiplayer/chat/LoggedChatMessage$Player/ (Lcom/mojang/authlib/GameProfile;Lnet/minecraft/network/chat/PlayerChatMessage;Lnet/minecraft/client/multiplayer/chat/ChatTrustLevel;)V +MD: net/minecraft/client/multiplayer/chat/LoggedChatMessage$Player/equals (Ljava/lang/Object;)Z net/minecraft/client/multiplayer/chat/LoggedChatMessage$Player/equals (Ljava/lang/Object;)Z +MD: net/minecraft/client/multiplayer/chat/LoggedChatMessage$Player/f_241609_ ()Lnet/minecraft/client/multiplayer/chat/ChatTrustLevel; net/minecraft/client/multiplayer/chat/LoggedChatMessage$Player/trustLevel ()Lnet/minecraft/client/multiplayer/chat/ChatTrustLevel; +MD: net/minecraft/client/multiplayer/chat/LoggedChatMessage$Player/f_241668_ ()Lcom/mojang/authlib/GameProfile; net/minecraft/client/multiplayer/chat/LoggedChatMessage$Player/profile ()Lcom/mojang/authlib/GameProfile; +MD: net/minecraft/client/multiplayer/chat/LoggedChatMessage$Player/f_241690_ ()Lnet/minecraft/network/chat/PlayerChatMessage; net/minecraft/client/multiplayer/chat/LoggedChatMessage$Player/message ()Lnet/minecraft/network/chat/PlayerChatMessage; +MD: net/minecraft/client/multiplayer/chat/LoggedChatMessage$Player/hashCode ()I net/minecraft/client/multiplayer/chat/LoggedChatMessage$Player/hashCode ()I +MD: net/minecraft/client/multiplayer/chat/LoggedChatMessage$Player/m_241803_ ()Ljava/util/UUID; net/minecraft/client/multiplayer/chat/LoggedChatMessage$Player/profileId ()Ljava/util/UUID; +MD: net/minecraft/client/multiplayer/chat/LoggedChatMessage$Player/m_241813_ ()Lnet/minecraft/network/chat/Component; net/minecraft/client/multiplayer/chat/LoggedChatMessage$Player/toNarrationComponent ()Lnet/minecraft/network/chat/Component; +MD: net/minecraft/client/multiplayer/chat/LoggedChatMessage$Player/m_241827_ ()Lnet/minecraft/network/chat/Component; net/minecraft/client/multiplayer/chat/LoggedChatMessage$Player/getTimeComponent ()Lnet/minecraft/network/chat/Component; +MD: net/minecraft/client/multiplayer/chat/LoggedChatMessage$Player/m_241831_ ()Lnet/minecraft/network/chat/Component; net/minecraft/client/multiplayer/chat/LoggedChatMessage$Player/toContentComponent ()Lnet/minecraft/network/chat/Component; +MD: net/minecraft/client/multiplayer/chat/LoggedChatMessage$Player/m_241865_ ()Lnet/minecraft/network/chat/Component; net/minecraft/client/multiplayer/chat/LoggedChatMessage$Player/toHeadingComponent ()Lnet/minecraft/network/chat/Component; +MD: net/minecraft/client/multiplayer/chat/LoggedChatMessage$Player/m_241866_ (Ljava/util/UUID;)Z net/minecraft/client/multiplayer/chat/LoggedChatMessage$Player/canReport (Ljava/util/UUID;)Z +MD: net/minecraft/client/multiplayer/chat/LoggedChatMessage$Player/m_252883_ ()Lnet/minecraft/client/multiplayer/chat/LoggedChatEvent$Type; net/minecraft/client/multiplayer/chat/LoggedChatMessage$Player/type ()Lnet/minecraft/client/multiplayer/chat/LoggedChatEvent$Type; +MD: net/minecraft/client/multiplayer/chat/LoggedChatMessage$Player/m_260763_ (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/client/multiplayer/chat/LoggedChatMessage$Player/lambda$static$0 (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/client/multiplayer/chat/LoggedChatMessage$Player/toString ()Ljava/lang/String; net/minecraft/client/multiplayer/chat/LoggedChatMessage$Player/toString ()Ljava/lang/String; +MD: net/minecraft/client/multiplayer/chat/LoggedChatMessage$System/ ()V net/minecraft/client/multiplayer/chat/LoggedChatMessage$System/ ()V +MD: net/minecraft/client/multiplayer/chat/LoggedChatMessage$System/ (Lnet/minecraft/network/chat/Component;Ljava/time/Instant;)V net/minecraft/client/multiplayer/chat/LoggedChatMessage$System/ (Lnet/minecraft/network/chat/Component;Ljava/time/Instant;)V +MD: net/minecraft/client/multiplayer/chat/LoggedChatMessage$System/equals (Ljava/lang/Object;)Z net/minecraft/client/multiplayer/chat/LoggedChatMessage$System/equals (Ljava/lang/Object;)Z +MD: net/minecraft/client/multiplayer/chat/LoggedChatMessage$System/f_241622_ ()Ljava/time/Instant; net/minecraft/client/multiplayer/chat/LoggedChatMessage$System/timeStamp ()Ljava/time/Instant; +MD: net/minecraft/client/multiplayer/chat/LoggedChatMessage$System/f_241673_ ()Lnet/minecraft/network/chat/Component; net/minecraft/client/multiplayer/chat/LoggedChatMessage$System/message ()Lnet/minecraft/network/chat/Component; +MD: net/minecraft/client/multiplayer/chat/LoggedChatMessage$System/hashCode ()I net/minecraft/client/multiplayer/chat/LoggedChatMessage$System/hashCode ()I +MD: net/minecraft/client/multiplayer/chat/LoggedChatMessage$System/m_241831_ ()Lnet/minecraft/network/chat/Component; net/minecraft/client/multiplayer/chat/LoggedChatMessage$System/toContentComponent ()Lnet/minecraft/network/chat/Component; +MD: net/minecraft/client/multiplayer/chat/LoggedChatMessage$System/m_241866_ (Ljava/util/UUID;)Z net/minecraft/client/multiplayer/chat/LoggedChatMessage$System/canReport (Ljava/util/UUID;)Z +MD: net/minecraft/client/multiplayer/chat/LoggedChatMessage$System/m_252883_ ()Lnet/minecraft/client/multiplayer/chat/LoggedChatEvent$Type; net/minecraft/client/multiplayer/chat/LoggedChatMessage$System/type ()Lnet/minecraft/client/multiplayer/chat/LoggedChatEvent$Type; +MD: net/minecraft/client/multiplayer/chat/LoggedChatMessage$System/m_253117_ (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/client/multiplayer/chat/LoggedChatMessage$System/lambda$static$0 (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/client/multiplayer/chat/LoggedChatMessage$System/toString ()Ljava/lang/String; net/minecraft/client/multiplayer/chat/LoggedChatMessage$System/toString ()Ljava/lang/String; +MD: net/minecraft/client/multiplayer/chat/report/AbuseReportSender/m_238990_ ()Z net/minecraft/client/multiplayer/chat/report/AbuseReportSender/isEnabled ()Z +MD: net/minecraft/client/multiplayer/chat/report/AbuseReportSender/m_239469_ (Ljava/util/UUID;Lcom/mojang/authlib/minecraft/report/AbuseReport;)Ljava/util/concurrent/CompletableFuture; net/minecraft/client/multiplayer/chat/report/AbuseReportSender/send (Ljava/util/UUID;Lcom/mojang/authlib/minecraft/report/AbuseReport;)Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/client/multiplayer/chat/report/AbuseReportSender/m_239479_ ()Lcom/mojang/authlib/minecraft/report/AbuseReportLimits; net/minecraft/client/multiplayer/chat/report/AbuseReportSender/reportLimits ()Lcom/mojang/authlib/minecraft/report/AbuseReportLimits; +MD: net/minecraft/client/multiplayer/chat/report/AbuseReportSender/m_239535_ (Lnet/minecraft/client/multiplayer/chat/report/ReportEnvironment;Lcom/mojang/authlib/minecraft/UserApiService;)Lnet/minecraft/client/multiplayer/chat/report/AbuseReportSender; net/minecraft/client/multiplayer/chat/report/AbuseReportSender/create (Lnet/minecraft/client/multiplayer/chat/report/ReportEnvironment;Lcom/mojang/authlib/minecraft/UserApiService;)Lnet/minecraft/client/multiplayer/chat/report/AbuseReportSender; +MD: net/minecraft/client/multiplayer/chat/report/AbuseReportSender$1/ ()V net/minecraft/client/multiplayer/chat/report/AbuseReportSender$1/ ()V +MD: net/minecraft/client/multiplayer/chat/report/AbuseReportSender$SendException/ (Lnet/minecraft/network/chat/Component;Ljava/lang/Throwable;)V net/minecraft/client/multiplayer/chat/report/AbuseReportSender$SendException/ (Lnet/minecraft/network/chat/Component;Ljava/lang/Throwable;)V +MD: net/minecraft/client/multiplayer/chat/report/AbuseReportSender$Services/ ()V net/minecraft/client/multiplayer/chat/report/AbuseReportSender$Services/ ()V +MD: net/minecraft/client/multiplayer/chat/report/AbuseReportSender$Services/ (Lnet/minecraft/client/multiplayer/chat/report/ReportEnvironment;Lcom/mojang/authlib/minecraft/UserApiService;)V net/minecraft/client/multiplayer/chat/report/AbuseReportSender$Services/ (Lnet/minecraft/client/multiplayer/chat/report/ReportEnvironment;Lcom/mojang/authlib/minecraft/UserApiService;)V +MD: net/minecraft/client/multiplayer/chat/report/AbuseReportSender$Services/equals (Ljava/lang/Object;)Z net/minecraft/client/multiplayer/chat/report/AbuseReportSender$Services/equals (Ljava/lang/Object;)Z +MD: net/minecraft/client/multiplayer/chat/report/AbuseReportSender$Services/f_238677_ ()Lcom/mojang/authlib/minecraft/UserApiService; net/minecraft/client/multiplayer/chat/report/AbuseReportSender$Services/userApiService ()Lcom/mojang/authlib/minecraft/UserApiService; +MD: net/minecraft/client/multiplayer/chat/report/AbuseReportSender$Services/f_238713_ ()Lnet/minecraft/client/multiplayer/chat/report/ReportEnvironment; net/minecraft/client/multiplayer/chat/report/AbuseReportSender$Services/environment ()Lnet/minecraft/client/multiplayer/chat/report/ReportEnvironment; +MD: net/minecraft/client/multiplayer/chat/report/AbuseReportSender$Services/hashCode ()I net/minecraft/client/multiplayer/chat/report/AbuseReportSender$Services/hashCode ()I +MD: net/minecraft/client/multiplayer/chat/report/AbuseReportSender$Services/m_238990_ ()Z net/minecraft/client/multiplayer/chat/report/AbuseReportSender$Services/isEnabled ()Z +MD: net/minecraft/client/multiplayer/chat/report/AbuseReportSender$Services/m_239469_ (Ljava/util/UUID;Lcom/mojang/authlib/minecraft/report/AbuseReport;)Ljava/util/concurrent/CompletableFuture; net/minecraft/client/multiplayer/chat/report/AbuseReportSender$Services/send (Ljava/util/UUID;Lcom/mojang/authlib/minecraft/report/AbuseReport;)Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/client/multiplayer/chat/report/AbuseReportSender$Services/m_239479_ ()Lcom/mojang/authlib/minecraft/report/AbuseReportLimits; net/minecraft/client/multiplayer/chat/report/AbuseReportSender$Services/reportLimits ()Lcom/mojang/authlib/minecraft/report/AbuseReportLimits; +MD: net/minecraft/client/multiplayer/chat/report/AbuseReportSender$Services/m_239704_ (Lcom/mojang/authlib/exceptions/MinecraftClientHttpException;)Lnet/minecraft/network/chat/Component; net/minecraft/client/multiplayer/chat/report/AbuseReportSender$Services/getHttpErrorDescription (Lcom/mojang/authlib/exceptions/MinecraftClientHttpException;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/client/multiplayer/chat/report/AbuseReportSender$Services/m_240067_ (Lcom/mojang/authlib/exceptions/MinecraftClientException;)Lnet/minecraft/network/chat/Component; net/minecraft/client/multiplayer/chat/report/AbuseReportSender$Services/getErrorDescription (Lcom/mojang/authlib/exceptions/MinecraftClientException;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/client/multiplayer/chat/report/AbuseReportSender$Services/m_244712_ (Ljava/util/UUID;Lcom/mojang/authlib/minecraft/report/AbuseReport;)Lcom/mojang/datafixers/util/Unit; net/minecraft/client/multiplayer/chat/report/AbuseReportSender$Services/lambda$send$0 (Ljava/util/UUID;Lcom/mojang/authlib/minecraft/report/AbuseReport;)Lcom/mojang/datafixers/util/Unit; +MD: net/minecraft/client/multiplayer/chat/report/AbuseReportSender$Services/toString ()Ljava/lang/String; net/minecraft/client/multiplayer/chat/report/AbuseReportSender$Services/toString ()Ljava/lang/String; +MD: net/minecraft/client/multiplayer/chat/report/BanReason/ ()V net/minecraft/client/multiplayer/chat/report/BanReason/ ()V +MD: net/minecraft/client/multiplayer/chat/report/BanReason/ (Ljava/lang/String;ILjava/lang/String;)V net/minecraft/client/multiplayer/chat/report/BanReason/ (Ljava/lang/String;ILjava/lang/String;)V +MD: net/minecraft/client/multiplayer/chat/report/BanReason/m_271684_ (I)Lnet/minecraft/client/multiplayer/chat/report/BanReason; net/minecraft/client/multiplayer/chat/report/BanReason/byId (I)Lnet/minecraft/client/multiplayer/chat/report/BanReason; +MD: net/minecraft/client/multiplayer/chat/report/BanReason/m_271764_ ()[Lnet/minecraft/client/multiplayer/chat/report/BanReason; net/minecraft/client/multiplayer/chat/report/BanReason/$values ()[Lnet/minecraft/client/multiplayer/chat/report/BanReason; +MD: net/minecraft/client/multiplayer/chat/report/BanReason/m_271811_ ()Lnet/minecraft/network/chat/Component; net/minecraft/client/multiplayer/chat/report/BanReason/title ()Lnet/minecraft/network/chat/Component; +MD: net/minecraft/client/multiplayer/chat/report/BanReason/valueOf (Ljava/lang/String;)Lnet/minecraft/client/multiplayer/chat/report/BanReason; net/minecraft/client/multiplayer/chat/report/BanReason/valueOf (Ljava/lang/String;)Lnet/minecraft/client/multiplayer/chat/report/BanReason; +MD: net/minecraft/client/multiplayer/chat/report/BanReason/values ()[Lnet/minecraft/client/multiplayer/chat/report/BanReason; net/minecraft/client/multiplayer/chat/report/BanReason/values ()[Lnet/minecraft/client/multiplayer/chat/report/BanReason; +MD: net/minecraft/client/multiplayer/chat/report/ChatReportBuilder/ (Lnet/minecraft/client/multiplayer/chat/report/ChatReportBuilder$ChatReport;Lcom/mojang/authlib/minecraft/report/AbuseReportLimits;)V net/minecraft/client/multiplayer/chat/report/ChatReportBuilder/ (Lnet/minecraft/client/multiplayer/chat/report/ChatReportBuilder$ChatReport;Lcom/mojang/authlib/minecraft/report/AbuseReportLimits;)V +MD: net/minecraft/client/multiplayer/chat/report/ChatReportBuilder/ (Ljava/util/UUID;Lcom/mojang/authlib/minecraft/report/AbuseReportLimits;)V net/minecraft/client/multiplayer/chat/report/ChatReportBuilder/ (Ljava/util/UUID;Lcom/mojang/authlib/minecraft/report/AbuseReportLimits;)V +MD: net/minecraft/client/multiplayer/chat/report/ChatReportBuilder/m_238976_ ()Ljava/lang/String; net/minecraft/client/multiplayer/chat/report/ChatReportBuilder/comments ()Ljava/lang/String; +MD: net/minecraft/client/multiplayer/chat/report/ChatReportBuilder/m_239051_ (I)V net/minecraft/client/multiplayer/chat/report/ChatReportBuilder/toggleReported (I)V +MD: net/minecraft/client/multiplayer/chat/report/ChatReportBuilder/m_239079_ (Ljava/lang/String;)V net/minecraft/client/multiplayer/chat/report/ChatReportBuilder/setComments (Ljava/lang/String;)V +MD: net/minecraft/client/multiplayer/chat/report/ChatReportBuilder/m_239097_ (Lnet/minecraft/client/multiplayer/chat/report/ReportReason;)V net/minecraft/client/multiplayer/chat/report/ChatReportBuilder/setReason (Lnet/minecraft/client/multiplayer/chat/report/ReportReason;)V +MD: net/minecraft/client/multiplayer/chat/report/ChatReportBuilder/m_239182_ (Lnet/minecraft/client/multiplayer/chat/ChatLog;)Lcom/mojang/authlib/minecraft/report/ReportEvidence; net/minecraft/client/multiplayer/chat/report/ChatReportBuilder/buildEvidence (Lnet/minecraft/client/multiplayer/chat/ChatLog;)Lcom/mojang/authlib/minecraft/report/ReportEvidence; +MD: net/minecraft/client/multiplayer/chat/report/ChatReportBuilder/m_239332_ ()Lnet/minecraft/client/multiplayer/chat/report/ChatReportBuilder$CannotBuildReason; net/minecraft/client/multiplayer/chat/report/ChatReportBuilder/checkBuildable ()Lnet/minecraft/client/multiplayer/chat/report/ChatReportBuilder$CannotBuildReason; +MD: net/minecraft/client/multiplayer/chat/report/ChatReportBuilder/m_239339_ ()Lnet/minecraft/client/multiplayer/chat/report/ReportReason; net/minecraft/client/multiplayer/chat/report/ChatReportBuilder/reason ()Lnet/minecraft/client/multiplayer/chat/report/ReportReason; +MD: net/minecraft/client/multiplayer/chat/report/ChatReportBuilder/m_239436_ ()Ljava/util/UUID; net/minecraft/client/multiplayer/chat/report/ChatReportBuilder/reportedProfileId ()Ljava/util/UUID; +MD: net/minecraft/client/multiplayer/chat/report/ChatReportBuilder/m_239582_ ()Lnet/minecraft/client/multiplayer/chat/report/ChatReportBuilder; net/minecraft/client/multiplayer/chat/report/ChatReportBuilder/copy ()Lnet/minecraft/client/multiplayer/chat/report/ChatReportBuilder; +MD: net/minecraft/client/multiplayer/chat/report/ChatReportBuilder/m_239716_ ()Lit/unimi/dsi/fastutil/ints/IntSet; net/minecraft/client/multiplayer/chat/report/ChatReportBuilder/reportedMessages ()Lit/unimi/dsi/fastutil/ints/IntSet; +MD: net/minecraft/client/multiplayer/chat/report/ChatReportBuilder/m_240128_ (Lnet/minecraft/client/multiplayer/chat/report/ReportingContext;)Lcom/mojang/datafixers/util/Either; net/minecraft/client/multiplayer/chat/report/ChatReportBuilder/build (Lnet/minecraft/client/multiplayer/chat/report/ReportingContext;)Lcom/mojang/datafixers/util/Either; +MD: net/minecraft/client/multiplayer/chat/report/ChatReportBuilder/m_240221_ (I)Z net/minecraft/client/multiplayer/chat/report/ChatReportBuilder/isReported (I)Z +MD: net/minecraft/client/multiplayer/chat/report/ChatReportBuilder/m_244713_ (Ljava/util/List;ILnet/minecraft/client/multiplayer/chat/LoggedChatMessage$Player;)V net/minecraft/client/multiplayer/chat/report/ChatReportBuilder/lambda$buildEvidence$0 (Ljava/util/List;ILnet/minecraft/client/multiplayer/chat/LoggedChatMessage$Player;)V +MD: net/minecraft/client/multiplayer/chat/report/ChatReportBuilder/m_246289_ (Lnet/minecraft/client/multiplayer/chat/LoggedChatMessage$Player;Z)Lcom/mojang/authlib/minecraft/report/ReportChatMessage; net/minecraft/client/multiplayer/chat/report/ChatReportBuilder/buildReportedChatMessage (Lnet/minecraft/client/multiplayer/chat/LoggedChatMessage$Player;Z)Lcom/mojang/authlib/minecraft/report/ReportChatMessage; +MD: net/minecraft/client/multiplayer/chat/report/ChatReportBuilder/m_252870_ ()Z net/minecraft/client/multiplayer/chat/report/ChatReportBuilder/hasContent ()Z +MD: net/minecraft/client/multiplayer/chat/report/ChatReportBuilder/m_253002_ ()Lnet/minecraft/client/multiplayer/chat/report/ChatReportBuilder$ChatReport; net/minecraft/client/multiplayer/chat/report/ChatReportBuilder/report ()Lnet/minecraft/client/multiplayer/chat/report/ChatReportBuilder$ChatReport; +MD: net/minecraft/client/multiplayer/chat/report/ChatReportBuilder$CannotBuildReason/ ()V net/minecraft/client/multiplayer/chat/report/ChatReportBuilder$CannotBuildReason/ ()V +MD: net/minecraft/client/multiplayer/chat/report/ChatReportBuilder$CannotBuildReason/ (Lnet/minecraft/network/chat/Component;)V net/minecraft/client/multiplayer/chat/report/ChatReportBuilder$CannotBuildReason/ (Lnet/minecraft/network/chat/Component;)V +MD: net/minecraft/client/multiplayer/chat/report/ChatReportBuilder$CannotBuildReason/equals (Ljava/lang/Object;)Z net/minecraft/client/multiplayer/chat/report/ChatReportBuilder$CannotBuildReason/equals (Ljava/lang/Object;)Z +MD: net/minecraft/client/multiplayer/chat/report/ChatReportBuilder$CannotBuildReason/f_238631_ ()Lnet/minecraft/network/chat/Component; net/minecraft/client/multiplayer/chat/report/ChatReportBuilder$CannotBuildReason/message ()Lnet/minecraft/network/chat/Component; +MD: net/minecraft/client/multiplayer/chat/report/ChatReportBuilder$CannotBuildReason/hashCode ()I net/minecraft/client/multiplayer/chat/report/ChatReportBuilder$CannotBuildReason/hashCode ()I +MD: net/minecraft/client/multiplayer/chat/report/ChatReportBuilder$CannotBuildReason/toString ()Ljava/lang/String; net/minecraft/client/multiplayer/chat/report/ChatReportBuilder$CannotBuildReason/toString ()Ljava/lang/String; +MD: net/minecraft/client/multiplayer/chat/report/ChatReportBuilder$ChatReport/ (Lnet/minecraft/client/multiplayer/chat/report/ChatReportBuilder;Ljava/util/UUID;Ljava/time/Instant;Ljava/util/UUID;)V net/minecraft/client/multiplayer/chat/report/ChatReportBuilder$ChatReport/ (Lnet/minecraft/client/multiplayer/chat/report/ChatReportBuilder;Ljava/util/UUID;Ljava/time/Instant;Ljava/util/UUID;)V +MD: net/minecraft/client/multiplayer/chat/report/ChatReportBuilder$ChatReport/m_252761_ (ILcom/mojang/authlib/minecraft/report/AbuseReportLimits;)V net/minecraft/client/multiplayer/chat/report/ChatReportBuilder$ChatReport/toggleReported (ILcom/mojang/authlib/minecraft/report/AbuseReportLimits;)V +MD: net/minecraft/client/multiplayer/chat/report/ChatReportBuilder$ChatReport/m_252787_ (Ljava/util/UUID;)Z net/minecraft/client/multiplayer/chat/report/ChatReportBuilder$ChatReport/isReportedPlayer (Ljava/util/UUID;)Z +MD: net/minecraft/client/multiplayer/chat/report/ChatReportBuilder$ChatReport/m_252798_ ()Lnet/minecraft/client/multiplayer/chat/report/ChatReportBuilder$ChatReport; net/minecraft/client/multiplayer/chat/report/ChatReportBuilder$ChatReport/copy ()Lnet/minecraft/client/multiplayer/chat/report/ChatReportBuilder$ChatReport; +MD: net/minecraft/client/multiplayer/chat/report/ChatReportBuilder$Result/ (Ljava/util/UUID;Lcom/mojang/authlib/minecraft/report/AbuseReport;)V net/minecraft/client/multiplayer/chat/report/ChatReportBuilder$Result/ (Ljava/util/UUID;Lcom/mojang/authlib/minecraft/report/AbuseReport;)V +MD: net/minecraft/client/multiplayer/chat/report/ChatReportBuilder$Result/equals (Ljava/lang/Object;)Z net/minecraft/client/multiplayer/chat/report/ChatReportBuilder$Result/equals (Ljava/lang/Object;)Z +MD: net/minecraft/client/multiplayer/chat/report/ChatReportBuilder$Result/f_238727_ ()Lcom/mojang/authlib/minecraft/report/AbuseReport; net/minecraft/client/multiplayer/chat/report/ChatReportBuilder$Result/report ()Lcom/mojang/authlib/minecraft/report/AbuseReport; +MD: net/minecraft/client/multiplayer/chat/report/ChatReportBuilder$Result/f_238815_ ()Ljava/util/UUID; net/minecraft/client/multiplayer/chat/report/ChatReportBuilder$Result/id ()Ljava/util/UUID; +MD: net/minecraft/client/multiplayer/chat/report/ChatReportBuilder$Result/hashCode ()I net/minecraft/client/multiplayer/chat/report/ChatReportBuilder$Result/hashCode ()I +MD: net/minecraft/client/multiplayer/chat/report/ChatReportBuilder$Result/toString ()Ljava/lang/String; net/minecraft/client/multiplayer/chat/report/ChatReportBuilder$Result/toString ()Ljava/lang/String; +MD: net/minecraft/client/multiplayer/chat/report/ChatReportContextBuilder/ (I)V net/minecraft/client/multiplayer/chat/report/ChatReportContextBuilder/ (I)V +MD: net/minecraft/client/multiplayer/chat/report/ChatReportContextBuilder/m_246365_ (Lnet/minecraft/network/chat/PlayerChatMessage;)V net/minecraft/client/multiplayer/chat/report/ChatReportContextBuilder/trackContext (Lnet/minecraft/network/chat/PlayerChatMessage;)V +MD: net/minecraft/client/multiplayer/chat/report/ChatReportContextBuilder/m_246644_ (Lnet/minecraft/client/multiplayer/chat/ChatLog;Lit/unimi/dsi/fastutil/ints/IntCollection;Lnet/minecraft/client/multiplayer/chat/report/ChatReportContextBuilder$Handler;)V net/minecraft/client/multiplayer/chat/report/ChatReportContextBuilder/collectAllContext (Lnet/minecraft/client/multiplayer/chat/ChatLog;Lit/unimi/dsi/fastutil/ints/IntCollection;Lnet/minecraft/client/multiplayer/chat/report/ChatReportContextBuilder$Handler;)V +MD: net/minecraft/client/multiplayer/chat/report/ChatReportContextBuilder/m_246673_ (Lnet/minecraft/network/chat/PlayerChatMessage;)Z net/minecraft/client/multiplayer/chat/report/ChatReportContextBuilder/acceptContext (Lnet/minecraft/network/chat/PlayerChatMessage;)Z +MD: net/minecraft/client/multiplayer/chat/report/ChatReportContextBuilder/m_247717_ ()Z net/minecraft/client/multiplayer/chat/report/ChatReportContextBuilder/isActive ()Z +MD: net/minecraft/client/multiplayer/chat/report/ChatReportContextBuilder$Collector/ (Lnet/minecraft/client/multiplayer/chat/report/ChatReportContextBuilder;Lnet/minecraft/network/chat/PlayerChatMessage;)V net/minecraft/client/multiplayer/chat/report/ChatReportContextBuilder$Collector/ (Lnet/minecraft/client/multiplayer/chat/report/ChatReportContextBuilder;Lnet/minecraft/network/chat/PlayerChatMessage;)V +MD: net/minecraft/client/multiplayer/chat/report/ChatReportContextBuilder$Collector/m_245354_ (Lnet/minecraft/network/chat/PlayerChatMessage;)Z net/minecraft/client/multiplayer/chat/report/ChatReportContextBuilder$Collector/accept (Lnet/minecraft/network/chat/PlayerChatMessage;)Z +MD: net/minecraft/client/multiplayer/chat/report/ChatReportContextBuilder$Collector/m_246153_ ()Z net/minecraft/client/multiplayer/chat/report/ChatReportContextBuilder$Collector/isComplete ()Z +MD: net/minecraft/client/multiplayer/chat/report/ChatReportContextBuilder$Handler/m_247017_ (ILnet/minecraft/client/multiplayer/chat/LoggedChatMessage$Player;)V net/minecraft/client/multiplayer/chat/report/ChatReportContextBuilder$Handler/accept (ILnet/minecraft/client/multiplayer/chat/LoggedChatMessage$Player;)V +MD: net/minecraft/client/multiplayer/chat/report/ReportEnvironment/ (Ljava/lang/String;Lnet/minecraft/client/multiplayer/chat/report/ReportEnvironment$Server;)V net/minecraft/client/multiplayer/chat/report/ReportEnvironment/ (Ljava/lang/String;Lnet/minecraft/client/multiplayer/chat/report/ReportEnvironment$Server;)V +MD: net/minecraft/client/multiplayer/chat/report/ReportEnvironment/equals (Ljava/lang/Object;)Z net/minecraft/client/multiplayer/chat/report/ReportEnvironment/equals (Ljava/lang/Object;)Z +MD: net/minecraft/client/multiplayer/chat/report/ReportEnvironment/f_238655_ ()Lnet/minecraft/client/multiplayer/chat/report/ReportEnvironment$Server; net/minecraft/client/multiplayer/chat/report/ReportEnvironment/server ()Lnet/minecraft/client/multiplayer/chat/report/ReportEnvironment$Server; +MD: net/minecraft/client/multiplayer/chat/report/ReportEnvironment/f_238774_ ()Ljava/lang/String; net/minecraft/client/multiplayer/chat/report/ReportEnvironment/clientVersion ()Ljava/lang/String; +MD: net/minecraft/client/multiplayer/chat/report/ReportEnvironment/hashCode ()I net/minecraft/client/multiplayer/chat/report/ReportEnvironment/hashCode ()I +MD: net/minecraft/client/multiplayer/chat/report/ReportEnvironment/m_238998_ (Ljava/lang/String;)Lnet/minecraft/client/multiplayer/chat/report/ReportEnvironment; net/minecraft/client/multiplayer/chat/report/ReportEnvironment/thirdParty (Ljava/lang/String;)Lnet/minecraft/client/multiplayer/chat/report/ReportEnvironment; +MD: net/minecraft/client/multiplayer/chat/report/ReportEnvironment/m_239120_ ()Lcom/mojang/authlib/yggdrasil/request/AbuseReportRequest$ClientInfo; net/minecraft/client/multiplayer/chat/report/ReportEnvironment/clientInfo ()Lcom/mojang/authlib/yggdrasil/request/AbuseReportRequest$ClientInfo; +MD: net/minecraft/client/multiplayer/chat/report/ReportEnvironment/m_239166_ ()Lcom/mojang/authlib/yggdrasil/request/AbuseReportRequest$ThirdPartyServerInfo; net/minecraft/client/multiplayer/chat/report/ReportEnvironment/thirdPartyServerInfo ()Lcom/mojang/authlib/yggdrasil/request/AbuseReportRequest$ThirdPartyServerInfo; +MD: net/minecraft/client/multiplayer/chat/report/ReportEnvironment/m_239334_ ()Ljava/lang/String; net/minecraft/client/multiplayer/chat/report/ReportEnvironment/getClientVersion ()Ljava/lang/String; +MD: net/minecraft/client/multiplayer/chat/report/ReportEnvironment/m_239764_ (Lcom/mojang/realmsclient/dto/RealmsServer;)Lnet/minecraft/client/multiplayer/chat/report/ReportEnvironment; net/minecraft/client/multiplayer/chat/report/ReportEnvironment/realm (Lcom/mojang/realmsclient/dto/RealmsServer;)Lnet/minecraft/client/multiplayer/chat/report/ReportEnvironment; +MD: net/minecraft/client/multiplayer/chat/report/ReportEnvironment/m_239898_ ()Lnet/minecraft/client/multiplayer/chat/report/ReportEnvironment; net/minecraft/client/multiplayer/chat/report/ReportEnvironment/local ()Lnet/minecraft/client/multiplayer/chat/report/ReportEnvironment; +MD: net/minecraft/client/multiplayer/chat/report/ReportEnvironment/m_239906_ ()Lcom/mojang/authlib/yggdrasil/request/AbuseReportRequest$RealmInfo; net/minecraft/client/multiplayer/chat/report/ReportEnvironment/realmInfo ()Lcom/mojang/authlib/yggdrasil/request/AbuseReportRequest$RealmInfo; +MD: net/minecraft/client/multiplayer/chat/report/ReportEnvironment/m_239955_ (Lnet/minecraft/client/multiplayer/chat/report/ReportEnvironment$Server;)Lnet/minecraft/client/multiplayer/chat/report/ReportEnvironment; net/minecraft/client/multiplayer/chat/report/ReportEnvironment/create (Lnet/minecraft/client/multiplayer/chat/report/ReportEnvironment$Server;)Lnet/minecraft/client/multiplayer/chat/report/ReportEnvironment; +MD: net/minecraft/client/multiplayer/chat/report/ReportEnvironment/toString ()Ljava/lang/String; net/minecraft/client/multiplayer/chat/report/ReportEnvironment/toString ()Ljava/lang/String; +MD: net/minecraft/client/multiplayer/chat/report/ReportEnvironment$Server$Realm/ (JI)V net/minecraft/client/multiplayer/chat/report/ReportEnvironment$Server$Realm/ (JI)V +MD: net/minecraft/client/multiplayer/chat/report/ReportEnvironment$Server$Realm/ (Lcom/mojang/realmsclient/dto/RealmsServer;)V net/minecraft/client/multiplayer/chat/report/ReportEnvironment$Server$Realm/ (Lcom/mojang/realmsclient/dto/RealmsServer;)V +MD: net/minecraft/client/multiplayer/chat/report/ReportEnvironment$Server$Realm/equals (Ljava/lang/Object;)Z net/minecraft/client/multiplayer/chat/report/ReportEnvironment$Server$Realm/equals (Ljava/lang/Object;)Z +MD: net/minecraft/client/multiplayer/chat/report/ReportEnvironment$Server$Realm/f_238670_ ()I net/minecraft/client/multiplayer/chat/report/ReportEnvironment$Server$Realm/slotId ()I +MD: net/minecraft/client/multiplayer/chat/report/ReportEnvironment$Server$Realm/f_238769_ ()J net/minecraft/client/multiplayer/chat/report/ReportEnvironment$Server$Realm/realmId ()J +MD: net/minecraft/client/multiplayer/chat/report/ReportEnvironment$Server$Realm/hashCode ()I net/minecraft/client/multiplayer/chat/report/ReportEnvironment$Server$Realm/hashCode ()I +MD: net/minecraft/client/multiplayer/chat/report/ReportEnvironment$Server$Realm/toString ()Ljava/lang/String; net/minecraft/client/multiplayer/chat/report/ReportEnvironment$Server$Realm/toString ()Ljava/lang/String; +MD: net/minecraft/client/multiplayer/chat/report/ReportEnvironment$Server$ThirdParty/ (Ljava/lang/String;)V net/minecraft/client/multiplayer/chat/report/ReportEnvironment$Server$ThirdParty/ (Ljava/lang/String;)V +MD: net/minecraft/client/multiplayer/chat/report/ReportEnvironment$Server$ThirdParty/equals (Ljava/lang/Object;)Z net/minecraft/client/multiplayer/chat/report/ReportEnvironment$Server$ThirdParty/equals (Ljava/lang/Object;)Z +MD: net/minecraft/client/multiplayer/chat/report/ReportEnvironment$Server$ThirdParty/f_238648_ ()Ljava/lang/String; net/minecraft/client/multiplayer/chat/report/ReportEnvironment$Server$ThirdParty/ip ()Ljava/lang/String; +MD: net/minecraft/client/multiplayer/chat/report/ReportEnvironment$Server$ThirdParty/hashCode ()I net/minecraft/client/multiplayer/chat/report/ReportEnvironment$Server$ThirdParty/hashCode ()I +MD: net/minecraft/client/multiplayer/chat/report/ReportEnvironment$Server$ThirdParty/toString ()Ljava/lang/String; net/minecraft/client/multiplayer/chat/report/ReportEnvironment$Server$ThirdParty/toString ()Ljava/lang/String; +MD: net/minecraft/client/multiplayer/chat/report/ReportReason/ ()V net/minecraft/client/multiplayer/chat/report/ReportReason/ ()V +MD: net/minecraft/client/multiplayer/chat/report/ReportReason/ (Ljava/lang/String;ILjava/lang/String;)V net/minecraft/client/multiplayer/chat/report/ReportReason/ (Ljava/lang/String;ILjava/lang/String;)V +MD: net/minecraft/client/multiplayer/chat/report/ReportReason/m_239342_ ()Lnet/minecraft/network/chat/Component; net/minecraft/client/multiplayer/chat/report/ReportReason/title ()Lnet/minecraft/network/chat/Component; +MD: net/minecraft/client/multiplayer/chat/report/ReportReason/m_239892_ ()Ljava/lang/String; net/minecraft/client/multiplayer/chat/report/ReportReason/backendName ()Ljava/lang/String; +MD: net/minecraft/client/multiplayer/chat/report/ReportReason/m_240151_ ()Lnet/minecraft/network/chat/Component; net/minecraft/client/multiplayer/chat/report/ReportReason/description ()Lnet/minecraft/network/chat/Component; +MD: net/minecraft/client/multiplayer/chat/report/ReportReason/m_240189_ ()[Lnet/minecraft/client/multiplayer/chat/report/ReportReason; net/minecraft/client/multiplayer/chat/report/ReportReason/$values ()[Lnet/minecraft/client/multiplayer/chat/report/ReportReason; +MD: net/minecraft/client/multiplayer/chat/report/ReportReason/valueOf (Ljava/lang/String;)Lnet/minecraft/client/multiplayer/chat/report/ReportReason; net/minecraft/client/multiplayer/chat/report/ReportReason/valueOf (Ljava/lang/String;)Lnet/minecraft/client/multiplayer/chat/report/ReportReason; +MD: net/minecraft/client/multiplayer/chat/report/ReportReason/values ()[Lnet/minecraft/client/multiplayer/chat/report/ReportReason; net/minecraft/client/multiplayer/chat/report/ReportReason/values ()[Lnet/minecraft/client/multiplayer/chat/report/ReportReason; +MD: net/minecraft/client/multiplayer/chat/report/ReportingContext/ (Lnet/minecraft/client/multiplayer/chat/report/AbuseReportSender;Lnet/minecraft/client/multiplayer/chat/report/ReportEnvironment;Lnet/minecraft/client/multiplayer/chat/ChatLog;)V net/minecraft/client/multiplayer/chat/report/ReportingContext/ (Lnet/minecraft/client/multiplayer/chat/report/AbuseReportSender;Lnet/minecraft/client/multiplayer/chat/report/ReportEnvironment;Lnet/minecraft/client/multiplayer/chat/ChatLog;)V +MD: net/minecraft/client/multiplayer/chat/report/ReportingContext/m_239685_ (Lnet/minecraft/client/multiplayer/chat/report/ReportEnvironment;Lcom/mojang/authlib/minecraft/UserApiService;)Lnet/minecraft/client/multiplayer/chat/report/ReportingContext; net/minecraft/client/multiplayer/chat/report/ReportingContext/create (Lnet/minecraft/client/multiplayer/chat/report/ReportEnvironment;Lcom/mojang/authlib/minecraft/UserApiService;)Lnet/minecraft/client/multiplayer/chat/report/ReportingContext; +MD: net/minecraft/client/multiplayer/chat/report/ReportingContext/m_239733_ (Lnet/minecraft/client/multiplayer/chat/report/ReportEnvironment;)Z net/minecraft/client/multiplayer/chat/report/ReportingContext/matches (Lnet/minecraft/client/multiplayer/chat/report/ReportEnvironment;)Z +MD: net/minecraft/client/multiplayer/chat/report/ReportingContext/m_239899_ ()Lnet/minecraft/client/multiplayer/chat/ChatLog; net/minecraft/client/multiplayer/chat/report/ReportingContext/chatLog ()Lnet/minecraft/client/multiplayer/chat/ChatLog; +MD: net/minecraft/client/multiplayer/chat/report/ReportingContext/m_240161_ ()Lnet/minecraft/client/multiplayer/chat/report/AbuseReportSender; net/minecraft/client/multiplayer/chat/report/ReportingContext/sender ()Lnet/minecraft/client/multiplayer/chat/report/AbuseReportSender; +MD: net/minecraft/client/multiplayer/chat/report/ReportingContext/m_253037_ (Lnet/minecraft/client/multiplayer/chat/report/ChatReportBuilder$ChatReport;)V net/minecraft/client/multiplayer/chat/report/ReportingContext/setChatReportDraft (Lnet/minecraft/client/multiplayer/chat/report/ChatReportBuilder$ChatReport;)V +MD: net/minecraft/client/multiplayer/chat/report/ReportingContext/m_253142_ ()Z net/minecraft/client/multiplayer/chat/report/ReportingContext/hasDraftReport ()Z +MD: net/minecraft/client/multiplayer/chat/report/ReportingContext/m_253247_ (Ljava/util/UUID;)Z net/minecraft/client/multiplayer/chat/report/ReportingContext/hasDraftReportFor (Ljava/util/UUID;)Z +MD: net/minecraft/client/multiplayer/chat/report/ReportingContext/m_260764_ (Lnet/minecraft/client/Minecraft;Lnet/minecraft/client/gui/screens/Screen;Lnet/minecraft/client/multiplayer/chat/report/ChatReportBuilder$ChatReport;Ljava/lang/Runnable;Z)V net/minecraft/client/multiplayer/chat/report/ReportingContext/lambda$draftReportHandled$0 (Lnet/minecraft/client/Minecraft;Lnet/minecraft/client/gui/screens/Screen;Lnet/minecraft/client/multiplayer/chat/report/ChatReportBuilder$ChatReport;Ljava/lang/Runnable;Z)V +MD: net/minecraft/client/multiplayer/chat/report/ReportingContext/m_261157_ (Lnet/minecraft/client/Minecraft;Lnet/minecraft/client/gui/screens/Screen;Ljava/lang/Runnable;Z)V net/minecraft/client/multiplayer/chat/report/ReportingContext/draftReportHandled (Lnet/minecraft/client/Minecraft;Lnet/minecraft/client/gui/screens/Screen;Ljava/lang/Runnable;Z)V +MD: net/minecraft/client/multiplayer/prediction/BlockStatePredictionHandler/ ()V net/minecraft/client/multiplayer/prediction/BlockStatePredictionHandler/ ()V +MD: net/minecraft/client/multiplayer/prediction/BlockStatePredictionHandler/close ()V net/minecraft/client/multiplayer/prediction/BlockStatePredictionHandler/close ()V +MD: net/minecraft/client/multiplayer/prediction/BlockStatePredictionHandler/m_233855_ ()Lnet/minecraft/client/multiplayer/prediction/BlockStatePredictionHandler; net/minecraft/client/multiplayer/prediction/BlockStatePredictionHandler/startPredicting ()Lnet/minecraft/client/multiplayer/prediction/BlockStatePredictionHandler; +MD: net/minecraft/client/multiplayer/prediction/BlockStatePredictionHandler/m_233856_ (ILnet/minecraft/client/multiplayer/ClientLevel;)V net/minecraft/client/multiplayer/prediction/BlockStatePredictionHandler/endPredictionsUpTo (ILnet/minecraft/client/multiplayer/ClientLevel;)V +MD: net/minecraft/client/multiplayer/prediction/BlockStatePredictionHandler/m_233864_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/client/multiplayer/prediction/BlockStatePredictionHandler/updateKnownServerState (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/client/multiplayer/prediction/BlockStatePredictionHandler/m_233867_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/client/player/LocalPlayer;)V net/minecraft/client/multiplayer/prediction/BlockStatePredictionHandler/retainKnownServerState (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/client/player/LocalPlayer;)V +MD: net/minecraft/client/multiplayer/prediction/BlockStatePredictionHandler/m_233871_ ()I net/minecraft/client/multiplayer/prediction/BlockStatePredictionHandler/currentSequence ()I +MD: net/minecraft/client/multiplayer/prediction/BlockStatePredictionHandler/m_233872_ ()Z net/minecraft/client/multiplayer/prediction/BlockStatePredictionHandler/isPredicting ()Z +MD: net/minecraft/client/multiplayer/prediction/BlockStatePredictionHandler/m_289052_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/client/player/LocalPlayer;Ljava/lang/Long;Lnet/minecraft/client/multiplayer/prediction/BlockStatePredictionHandler$ServerVerifiedState;)Lnet/minecraft/client/multiplayer/prediction/BlockStatePredictionHandler$ServerVerifiedState; net/minecraft/client/multiplayer/prediction/BlockStatePredictionHandler/lambda$retainKnownServerState$0 (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/client/player/LocalPlayer;Ljava/lang/Long;Lnet/minecraft/client/multiplayer/prediction/BlockStatePredictionHandler$ServerVerifiedState;)Lnet/minecraft/client/multiplayer/prediction/BlockStatePredictionHandler$ServerVerifiedState; +MD: net/minecraft/client/multiplayer/prediction/BlockStatePredictionHandler$ServerVerifiedState/ (ILnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/phys/Vec3;)V net/minecraft/client/multiplayer/prediction/BlockStatePredictionHandler$ServerVerifiedState/ (ILnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/phys/Vec3;)V +MD: net/minecraft/client/multiplayer/prediction/BlockStatePredictionHandler$ServerVerifiedState/m_233881_ (I)Lnet/minecraft/client/multiplayer/prediction/BlockStatePredictionHandler$ServerVerifiedState; net/minecraft/client/multiplayer/prediction/BlockStatePredictionHandler$ServerVerifiedState/setSequence (I)Lnet/minecraft/client/multiplayer/prediction/BlockStatePredictionHandler$ServerVerifiedState; +MD: net/minecraft/client/multiplayer/prediction/BlockStatePredictionHandler$ServerVerifiedState/m_233883_ (Lnet/minecraft/world/level/block/state/BlockState;)V net/minecraft/client/multiplayer/prediction/BlockStatePredictionHandler$ServerVerifiedState/setBlockState (Lnet/minecraft/world/level/block/state/BlockState;)V +MD: net/minecraft/client/multiplayer/prediction/PredictiveAction/m_233885_ (I)Lnet/minecraft/network/protocol/Packet; net/minecraft/client/multiplayer/prediction/PredictiveAction/predict (I)Lnet/minecraft/network/protocol/Packet; +MD: net/minecraft/client/multiplayer/resolver/AddressCheck/m_142408_ (Lnet/minecraft/client/multiplayer/resolver/ServerAddress;)Z net/minecraft/client/multiplayer/resolver/AddressCheck/isAllowed (Lnet/minecraft/client/multiplayer/resolver/ServerAddress;)Z +MD: net/minecraft/client/multiplayer/resolver/AddressCheck/m_142649_ (Lnet/minecraft/client/multiplayer/resolver/ResolvedServerAddress;)Z net/minecraft/client/multiplayer/resolver/AddressCheck/isAllowed (Lnet/minecraft/client/multiplayer/resolver/ResolvedServerAddress;)Z +MD: net/minecraft/client/multiplayer/resolver/AddressCheck/m_171828_ ()Lnet/minecraft/client/multiplayer/resolver/AddressCheck; net/minecraft/client/multiplayer/resolver/AddressCheck/createFromService ()Lnet/minecraft/client/multiplayer/resolver/AddressCheck; +MD: net/minecraft/client/multiplayer/resolver/AddressCheck$1/ (Lcom/google/common/collect/ImmutableList;)V net/minecraft/client/multiplayer/resolver/AddressCheck$1/ (Lcom/google/common/collect/ImmutableList;)V +MD: net/minecraft/client/multiplayer/resolver/AddressCheck$1/m_142408_ (Lnet/minecraft/client/multiplayer/resolver/ServerAddress;)Z net/minecraft/client/multiplayer/resolver/AddressCheck$1/isAllowed (Lnet/minecraft/client/multiplayer/resolver/ServerAddress;)Z +MD: net/minecraft/client/multiplayer/resolver/AddressCheck$1/m_142649_ (Lnet/minecraft/client/multiplayer/resolver/ResolvedServerAddress;)Z net/minecraft/client/multiplayer/resolver/AddressCheck$1/isAllowed (Lnet/minecraft/client/multiplayer/resolver/ResolvedServerAddress;)Z +MD: net/minecraft/client/multiplayer/resolver/AddressCheck$1/m_171838_ (Ljava/lang/String;Ljava/lang/String;Ljava/util/function/Predicate;)Z net/minecraft/client/multiplayer/resolver/AddressCheck$1/lambda$isAllowed$0 (Ljava/lang/String;Ljava/lang/String;Ljava/util/function/Predicate;)Z +MD: net/minecraft/client/multiplayer/resolver/AddressCheck$1/m_171842_ (Ljava/lang/String;Ljava/util/function/Predicate;)Z net/minecraft/client/multiplayer/resolver/AddressCheck$1/lambda$isAllowed$1 (Ljava/lang/String;Ljava/util/function/Predicate;)Z +MD: net/minecraft/client/multiplayer/resolver/ResolvedServerAddress/m_142599_ ()I net/minecraft/client/multiplayer/resolver/ResolvedServerAddress/getPort ()I +MD: net/minecraft/client/multiplayer/resolver/ResolvedServerAddress/m_142641_ ()Ljava/net/InetSocketAddress; net/minecraft/client/multiplayer/resolver/ResolvedServerAddress/asInetSocketAddress ()Ljava/net/InetSocketAddress; +MD: net/minecraft/client/multiplayer/resolver/ResolvedServerAddress/m_142727_ ()Ljava/lang/String; net/minecraft/client/multiplayer/resolver/ResolvedServerAddress/getHostName ()Ljava/lang/String; +MD: net/minecraft/client/multiplayer/resolver/ResolvedServerAddress/m_142728_ ()Ljava/lang/String; net/minecraft/client/multiplayer/resolver/ResolvedServerAddress/getHostIp ()Ljava/lang/String; +MD: net/minecraft/client/multiplayer/resolver/ResolvedServerAddress/m_171845_ (Ljava/net/InetSocketAddress;)Lnet/minecraft/client/multiplayer/resolver/ResolvedServerAddress; net/minecraft/client/multiplayer/resolver/ResolvedServerAddress/from (Ljava/net/InetSocketAddress;)Lnet/minecraft/client/multiplayer/resolver/ResolvedServerAddress; +MD: net/minecraft/client/multiplayer/resolver/ResolvedServerAddress$1/ (Ljava/net/InetSocketAddress;)V net/minecraft/client/multiplayer/resolver/ResolvedServerAddress$1/ (Ljava/net/InetSocketAddress;)V +MD: net/minecraft/client/multiplayer/resolver/ResolvedServerAddress$1/m_142599_ ()I net/minecraft/client/multiplayer/resolver/ResolvedServerAddress$1/getPort ()I +MD: net/minecraft/client/multiplayer/resolver/ResolvedServerAddress$1/m_142641_ ()Ljava/net/InetSocketAddress; net/minecraft/client/multiplayer/resolver/ResolvedServerAddress$1/asInetSocketAddress ()Ljava/net/InetSocketAddress; +MD: net/minecraft/client/multiplayer/resolver/ResolvedServerAddress$1/m_142727_ ()Ljava/lang/String; net/minecraft/client/multiplayer/resolver/ResolvedServerAddress$1/getHostName ()Ljava/lang/String; +MD: net/minecraft/client/multiplayer/resolver/ResolvedServerAddress$1/m_142728_ ()Ljava/lang/String; net/minecraft/client/multiplayer/resolver/ResolvedServerAddress$1/getHostIp ()Ljava/lang/String; +MD: net/minecraft/client/multiplayer/resolver/ServerAddress/ ()V net/minecraft/client/multiplayer/resolver/ServerAddress/ ()V +MD: net/minecraft/client/multiplayer/resolver/ServerAddress/ (Lcom/google/common/net/HostAndPort;)V net/minecraft/client/multiplayer/resolver/ServerAddress/ (Lcom/google/common/net/HostAndPort;)V +MD: net/minecraft/client/multiplayer/resolver/ServerAddress/ (Ljava/lang/String;I)V net/minecraft/client/multiplayer/resolver/ServerAddress/ (Ljava/lang/String;I)V +MD: net/minecraft/client/multiplayer/resolver/ServerAddress/equals (Ljava/lang/Object;)Z net/minecraft/client/multiplayer/resolver/ServerAddress/equals (Ljava/lang/Object;)Z +MD: net/minecraft/client/multiplayer/resolver/ServerAddress/hashCode ()I net/minecraft/client/multiplayer/resolver/ServerAddress/hashCode ()I +MD: net/minecraft/client/multiplayer/resolver/ServerAddress/m_171863_ ()Ljava/lang/String; net/minecraft/client/multiplayer/resolver/ServerAddress/getHost ()Ljava/lang/String; +MD: net/minecraft/client/multiplayer/resolver/ServerAddress/m_171864_ (Ljava/lang/String;)Lnet/minecraft/client/multiplayer/resolver/ServerAddress; net/minecraft/client/multiplayer/resolver/ServerAddress/parseString (Ljava/lang/String;)Lnet/minecraft/client/multiplayer/resolver/ServerAddress; +MD: net/minecraft/client/multiplayer/resolver/ServerAddress/m_171866_ ()I net/minecraft/client/multiplayer/resolver/ServerAddress/getPort ()I +MD: net/minecraft/client/multiplayer/resolver/ServerAddress/m_171867_ (Ljava/lang/String;)Z net/minecraft/client/multiplayer/resolver/ServerAddress/isValidAddress (Ljava/lang/String;)Z +MD: net/minecraft/client/multiplayer/resolver/ServerAddress/m_171869_ (Ljava/lang/String;)I net/minecraft/client/multiplayer/resolver/ServerAddress/parsePort (Ljava/lang/String;)I +MD: net/minecraft/client/multiplayer/resolver/ServerAddress/toString ()Ljava/lang/String; net/minecraft/client/multiplayer/resolver/ServerAddress/toString ()Ljava/lang/String; +MD: net/minecraft/client/multiplayer/resolver/ServerAddressResolver/ ()V net/minecraft/client/multiplayer/resolver/ServerAddressResolver/ ()V +MD: net/minecraft/client/multiplayer/resolver/ServerAddressResolver/m_171877_ (Lnet/minecraft/client/multiplayer/resolver/ServerAddress;)Ljava/util/Optional; net/minecraft/client/multiplayer/resolver/ServerAddressResolver/lambda$static$0 (Lnet/minecraft/client/multiplayer/resolver/ServerAddress;)Ljava/util/Optional; +MD: net/minecraft/client/multiplayer/resolver/ServerAddressResolver/m_171879_ (Lnet/minecraft/client/multiplayer/resolver/ServerAddress;)Ljava/util/Optional; net/minecraft/client/multiplayer/resolver/ServerAddressResolver/resolve (Lnet/minecraft/client/multiplayer/resolver/ServerAddress;)Ljava/util/Optional; +MD: net/minecraft/client/multiplayer/resolver/ServerNameResolver/ ()V net/minecraft/client/multiplayer/resolver/ServerNameResolver/ ()V +MD: net/minecraft/client/multiplayer/resolver/ServerNameResolver/ (Lnet/minecraft/client/multiplayer/resolver/ServerAddressResolver;Lnet/minecraft/client/multiplayer/resolver/ServerRedirectHandler;Lnet/minecraft/client/multiplayer/resolver/AddressCheck;)V net/minecraft/client/multiplayer/resolver/ServerNameResolver/ (Lnet/minecraft/client/multiplayer/resolver/ServerAddressResolver;Lnet/minecraft/client/multiplayer/resolver/ServerRedirectHandler;Lnet/minecraft/client/multiplayer/resolver/AddressCheck;)V +MD: net/minecraft/client/multiplayer/resolver/ServerNameResolver/m_171890_ (Lnet/minecraft/client/multiplayer/resolver/ServerAddress;)Ljava/util/Optional; net/minecraft/client/multiplayer/resolver/ServerNameResolver/resolveAddress (Lnet/minecraft/client/multiplayer/resolver/ServerAddress;)Ljava/util/Optional; +MD: net/minecraft/client/multiplayer/resolver/ServerRedirectHandler/ ()V net/minecraft/client/multiplayer/resolver/ServerRedirectHandler/ ()V +MD: net/minecraft/client/multiplayer/resolver/ServerRedirectHandler/m_171895_ ()Lnet/minecraft/client/multiplayer/resolver/ServerRedirectHandler; net/minecraft/client/multiplayer/resolver/ServerRedirectHandler/createDnsSrvRedirectHandler ()Lnet/minecraft/client/multiplayer/resolver/ServerRedirectHandler; +MD: net/minecraft/client/multiplayer/resolver/ServerRedirectHandler/m_171896_ (Lnet/minecraft/client/multiplayer/resolver/ServerAddress;)Ljava/util/Optional; net/minecraft/client/multiplayer/resolver/ServerRedirectHandler/lambda$static$0 (Lnet/minecraft/client/multiplayer/resolver/ServerAddress;)Ljava/util/Optional; +MD: net/minecraft/client/multiplayer/resolver/ServerRedirectHandler/m_171898_ (Ljavax/naming/directory/DirContext;Lnet/minecraft/client/multiplayer/resolver/ServerAddress;)Ljava/util/Optional; net/minecraft/client/multiplayer/resolver/ServerRedirectHandler/lambda$createDnsSrvRedirectHandler$1 (Ljavax/naming/directory/DirContext;Lnet/minecraft/client/multiplayer/resolver/ServerAddress;)Ljava/util/Optional; +MD: net/minecraft/client/multiplayer/resolver/ServerRedirectHandler/m_171901_ (Lnet/minecraft/client/multiplayer/resolver/ServerAddress;)Ljava/util/Optional; net/minecraft/client/multiplayer/resolver/ServerRedirectHandler/lookupRedirect (Lnet/minecraft/client/multiplayer/resolver/ServerAddress;)Ljava/util/Optional; +MD: net/minecraft/client/particle/AshParticle/ (Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDDFLnet/minecraft/client/particle/SpriteSet;)V net/minecraft/client/particle/AshParticle/ (Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDDFLnet/minecraft/client/particle/SpriteSet;)V +MD: net/minecraft/client/particle/AshParticle$Provider/ (Lnet/minecraft/client/particle/SpriteSet;)V net/minecraft/client/particle/AshParticle$Provider/ (Lnet/minecraft/client/particle/SpriteSet;)V +MD: net/minecraft/client/particle/AshParticle$Provider/m_6966_ (Lnet/minecraft/core/particles/ParticleOptions;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; net/minecraft/client/particle/AshParticle$Provider/createParticle (Lnet/minecraft/core/particles/ParticleOptions;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; +MD: net/minecraft/client/particle/AshParticle$Provider/m_6966_ (Lnet/minecraft/core/particles/SimpleParticleType;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; net/minecraft/client/particle/AshParticle$Provider/createParticle (Lnet/minecraft/core/particles/SimpleParticleType;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; +MD: net/minecraft/client/particle/AttackSweepParticle/ (Lnet/minecraft/client/multiplayer/ClientLevel;DDDDLnet/minecraft/client/particle/SpriteSet;)V net/minecraft/client/particle/AttackSweepParticle/ (Lnet/minecraft/client/multiplayer/ClientLevel;DDDDLnet/minecraft/client/particle/SpriteSet;)V +MD: net/minecraft/client/particle/AttackSweepParticle/m_5989_ ()V net/minecraft/client/particle/AttackSweepParticle/tick ()V +MD: net/minecraft/client/particle/AttackSweepParticle/m_6355_ (F)I net/minecraft/client/particle/AttackSweepParticle/getLightColor (F)I +MD: net/minecraft/client/particle/AttackSweepParticle/m_7556_ ()Lnet/minecraft/client/particle/ParticleRenderType; net/minecraft/client/particle/AttackSweepParticle/getRenderType ()Lnet/minecraft/client/particle/ParticleRenderType; +MD: net/minecraft/client/particle/AttackSweepParticle$Provider/ (Lnet/minecraft/client/particle/SpriteSet;)V net/minecraft/client/particle/AttackSweepParticle$Provider/ (Lnet/minecraft/client/particle/SpriteSet;)V +MD: net/minecraft/client/particle/AttackSweepParticle$Provider/m_6966_ (Lnet/minecraft/core/particles/ParticleOptions;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; net/minecraft/client/particle/AttackSweepParticle$Provider/createParticle (Lnet/minecraft/core/particles/ParticleOptions;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; +MD: net/minecraft/client/particle/AttackSweepParticle$Provider/m_6966_ (Lnet/minecraft/core/particles/SimpleParticleType;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; net/minecraft/client/particle/AttackSweepParticle$Provider/createParticle (Lnet/minecraft/core/particles/SimpleParticleType;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; +MD: net/minecraft/client/particle/BaseAshSmokeParticle/ (Lnet/minecraft/client/multiplayer/ClientLevel;DDDFFFDDDFLnet/minecraft/client/particle/SpriteSet;FIFZ)V net/minecraft/client/particle/BaseAshSmokeParticle/ (Lnet/minecraft/client/multiplayer/ClientLevel;DDDFFFDDDFLnet/minecraft/client/particle/SpriteSet;FIFZ)V +MD: net/minecraft/client/particle/BaseAshSmokeParticle/m_5902_ (F)F net/minecraft/client/particle/BaseAshSmokeParticle/getQuadSize (F)F +MD: net/minecraft/client/particle/BaseAshSmokeParticle/m_5989_ ()V net/minecraft/client/particle/BaseAshSmokeParticle/tick ()V +MD: net/minecraft/client/particle/BaseAshSmokeParticle/m_7556_ ()Lnet/minecraft/client/particle/ParticleRenderType; net/minecraft/client/particle/BaseAshSmokeParticle/getRenderType ()Lnet/minecraft/client/particle/ParticleRenderType; +MD: net/minecraft/client/particle/BlockMarker/ (Lnet/minecraft/client/multiplayer/ClientLevel;DDDLnet/minecraft/world/level/block/state/BlockState;)V net/minecraft/client/particle/BlockMarker/ (Lnet/minecraft/client/multiplayer/ClientLevel;DDDLnet/minecraft/world/level/block/state/BlockState;)V +MD: net/minecraft/client/particle/BlockMarker/m_5902_ (F)F net/minecraft/client/particle/BlockMarker/getQuadSize (F)F +MD: net/minecraft/client/particle/BlockMarker/m_7556_ ()Lnet/minecraft/client/particle/ParticleRenderType; net/minecraft/client/particle/BlockMarker/getRenderType ()Lnet/minecraft/client/particle/ParticleRenderType; +MD: net/minecraft/client/particle/BlockMarker$Provider/ ()V net/minecraft/client/particle/BlockMarker$Provider/ ()V +MD: net/minecraft/client/particle/BlockMarker$Provider/m_6966_ (Lnet/minecraft/core/particles/BlockParticleOption;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; net/minecraft/client/particle/BlockMarker$Provider/createParticle (Lnet/minecraft/core/particles/BlockParticleOption;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; +MD: net/minecraft/client/particle/BlockMarker$Provider/m_6966_ (Lnet/minecraft/core/particles/ParticleOptions;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; net/minecraft/client/particle/BlockMarker$Provider/createParticle (Lnet/minecraft/core/particles/ParticleOptions;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; +MD: net/minecraft/client/particle/BreakingItemParticle/ (Lnet/minecraft/client/multiplayer/ClientLevel;DDDLnet/minecraft/world/item/ItemStack;)V net/minecraft/client/particle/BreakingItemParticle/ (Lnet/minecraft/client/multiplayer/ClientLevel;DDDLnet/minecraft/world/item/ItemStack;)V +MD: net/minecraft/client/particle/BreakingItemParticle/ (Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDDLnet/minecraft/world/item/ItemStack;)V net/minecraft/client/particle/BreakingItemParticle/ (Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDDLnet/minecraft/world/item/ItemStack;)V +MD: net/minecraft/client/particle/BreakingItemParticle/m_5950_ ()F net/minecraft/client/particle/BreakingItemParticle/getV1 ()F +MD: net/minecraft/client/particle/BreakingItemParticle/m_5951_ ()F net/minecraft/client/particle/BreakingItemParticle/getV0 ()F +MD: net/minecraft/client/particle/BreakingItemParticle/m_5952_ ()F net/minecraft/client/particle/BreakingItemParticle/getU1 ()F +MD: net/minecraft/client/particle/BreakingItemParticle/m_5970_ ()F net/minecraft/client/particle/BreakingItemParticle/getU0 ()F +MD: net/minecraft/client/particle/BreakingItemParticle/m_7556_ ()Lnet/minecraft/client/particle/ParticleRenderType; net/minecraft/client/particle/BreakingItemParticle/getRenderType ()Lnet/minecraft/client/particle/ParticleRenderType; +MD: net/minecraft/client/particle/BreakingItemParticle$Provider/ ()V net/minecraft/client/particle/BreakingItemParticle$Provider/ ()V +MD: net/minecraft/client/particle/BreakingItemParticle$Provider/m_6966_ (Lnet/minecraft/core/particles/ItemParticleOption;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; net/minecraft/client/particle/BreakingItemParticle$Provider/createParticle (Lnet/minecraft/core/particles/ItemParticleOption;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; +MD: net/minecraft/client/particle/BreakingItemParticle$Provider/m_6966_ (Lnet/minecraft/core/particles/ParticleOptions;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; net/minecraft/client/particle/BreakingItemParticle$Provider/createParticle (Lnet/minecraft/core/particles/ParticleOptions;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; +MD: net/minecraft/client/particle/BreakingItemParticle$SlimeProvider/ ()V net/minecraft/client/particle/BreakingItemParticle$SlimeProvider/ ()V +MD: net/minecraft/client/particle/BreakingItemParticle$SlimeProvider/m_6966_ (Lnet/minecraft/core/particles/ParticleOptions;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; net/minecraft/client/particle/BreakingItemParticle$SlimeProvider/createParticle (Lnet/minecraft/core/particles/ParticleOptions;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; +MD: net/minecraft/client/particle/BreakingItemParticle$SlimeProvider/m_6966_ (Lnet/minecraft/core/particles/SimpleParticleType;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; net/minecraft/client/particle/BreakingItemParticle$SlimeProvider/createParticle (Lnet/minecraft/core/particles/SimpleParticleType;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; +MD: net/minecraft/client/particle/BreakingItemParticle$SnowballProvider/ ()V net/minecraft/client/particle/BreakingItemParticle$SnowballProvider/ ()V +MD: net/minecraft/client/particle/BreakingItemParticle$SnowballProvider/m_6966_ (Lnet/minecraft/core/particles/ParticleOptions;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; net/minecraft/client/particle/BreakingItemParticle$SnowballProvider/createParticle (Lnet/minecraft/core/particles/ParticleOptions;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; +MD: net/minecraft/client/particle/BreakingItemParticle$SnowballProvider/m_6966_ (Lnet/minecraft/core/particles/SimpleParticleType;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; net/minecraft/client/particle/BreakingItemParticle$SnowballProvider/createParticle (Lnet/minecraft/core/particles/SimpleParticleType;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; +MD: net/minecraft/client/particle/BubbleColumnUpParticle/ (Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)V net/minecraft/client/particle/BubbleColumnUpParticle/ (Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)V +MD: net/minecraft/client/particle/BubbleColumnUpParticle/m_5989_ ()V net/minecraft/client/particle/BubbleColumnUpParticle/tick ()V +MD: net/minecraft/client/particle/BubbleColumnUpParticle/m_7556_ ()Lnet/minecraft/client/particle/ParticleRenderType; net/minecraft/client/particle/BubbleColumnUpParticle/getRenderType ()Lnet/minecraft/client/particle/ParticleRenderType; +MD: net/minecraft/client/particle/BubbleColumnUpParticle$Provider/ (Lnet/minecraft/client/particle/SpriteSet;)V net/minecraft/client/particle/BubbleColumnUpParticle$Provider/ (Lnet/minecraft/client/particle/SpriteSet;)V +MD: net/minecraft/client/particle/BubbleColumnUpParticle$Provider/m_6966_ (Lnet/minecraft/core/particles/ParticleOptions;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; net/minecraft/client/particle/BubbleColumnUpParticle$Provider/createParticle (Lnet/minecraft/core/particles/ParticleOptions;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; +MD: net/minecraft/client/particle/BubbleColumnUpParticle$Provider/m_6966_ (Lnet/minecraft/core/particles/SimpleParticleType;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; net/minecraft/client/particle/BubbleColumnUpParticle$Provider/createParticle (Lnet/minecraft/core/particles/SimpleParticleType;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; +MD: net/minecraft/client/particle/BubbleParticle/ (Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)V net/minecraft/client/particle/BubbleParticle/ (Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)V +MD: net/minecraft/client/particle/BubbleParticle/m_5989_ ()V net/minecraft/client/particle/BubbleParticle/tick ()V +MD: net/minecraft/client/particle/BubbleParticle/m_7556_ ()Lnet/minecraft/client/particle/ParticleRenderType; net/minecraft/client/particle/BubbleParticle/getRenderType ()Lnet/minecraft/client/particle/ParticleRenderType; +MD: net/minecraft/client/particle/BubbleParticle$Provider/ (Lnet/minecraft/client/particle/SpriteSet;)V net/minecraft/client/particle/BubbleParticle$Provider/ (Lnet/minecraft/client/particle/SpriteSet;)V +MD: net/minecraft/client/particle/BubbleParticle$Provider/m_6966_ (Lnet/minecraft/core/particles/ParticleOptions;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; net/minecraft/client/particle/BubbleParticle$Provider/createParticle (Lnet/minecraft/core/particles/ParticleOptions;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; +MD: net/minecraft/client/particle/BubbleParticle$Provider/m_6966_ (Lnet/minecraft/core/particles/SimpleParticleType;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; net/minecraft/client/particle/BubbleParticle$Provider/createParticle (Lnet/minecraft/core/particles/SimpleParticleType;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; +MD: net/minecraft/client/particle/BubblePopParticle/ (Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDDLnet/minecraft/client/particle/SpriteSet;)V net/minecraft/client/particle/BubblePopParticle/ (Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDDLnet/minecraft/client/particle/SpriteSet;)V +MD: net/minecraft/client/particle/BubblePopParticle/m_5989_ ()V net/minecraft/client/particle/BubblePopParticle/tick ()V +MD: net/minecraft/client/particle/BubblePopParticle/m_7556_ ()Lnet/minecraft/client/particle/ParticleRenderType; net/minecraft/client/particle/BubblePopParticle/getRenderType ()Lnet/minecraft/client/particle/ParticleRenderType; +MD: net/minecraft/client/particle/BubblePopParticle$Provider/ (Lnet/minecraft/client/particle/SpriteSet;)V net/minecraft/client/particle/BubblePopParticle$Provider/ (Lnet/minecraft/client/particle/SpriteSet;)V +MD: net/minecraft/client/particle/BubblePopParticle$Provider/m_6966_ (Lnet/minecraft/core/particles/ParticleOptions;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; net/minecraft/client/particle/BubblePopParticle$Provider/createParticle (Lnet/minecraft/core/particles/ParticleOptions;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; +MD: net/minecraft/client/particle/BubblePopParticle$Provider/m_6966_ (Lnet/minecraft/core/particles/SimpleParticleType;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; net/minecraft/client/particle/BubblePopParticle$Provider/createParticle (Lnet/minecraft/core/particles/SimpleParticleType;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; +MD: net/minecraft/client/particle/CampfireSmokeParticle/ (Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDDZ)V net/minecraft/client/particle/CampfireSmokeParticle/ (Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDDZ)V +MD: net/minecraft/client/particle/CampfireSmokeParticle/m_5989_ ()V net/minecraft/client/particle/CampfireSmokeParticle/tick ()V +MD: net/minecraft/client/particle/CampfireSmokeParticle/m_7556_ ()Lnet/minecraft/client/particle/ParticleRenderType; net/minecraft/client/particle/CampfireSmokeParticle/getRenderType ()Lnet/minecraft/client/particle/ParticleRenderType; +MD: net/minecraft/client/particle/CampfireSmokeParticle$CosyProvider/ (Lnet/minecraft/client/particle/SpriteSet;)V net/minecraft/client/particle/CampfireSmokeParticle$CosyProvider/ (Lnet/minecraft/client/particle/SpriteSet;)V +MD: net/minecraft/client/particle/CampfireSmokeParticle$CosyProvider/m_6966_ (Lnet/minecraft/core/particles/ParticleOptions;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; net/minecraft/client/particle/CampfireSmokeParticle$CosyProvider/createParticle (Lnet/minecraft/core/particles/ParticleOptions;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; +MD: net/minecraft/client/particle/CampfireSmokeParticle$CosyProvider/m_6966_ (Lnet/minecraft/core/particles/SimpleParticleType;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; net/minecraft/client/particle/CampfireSmokeParticle$CosyProvider/createParticle (Lnet/minecraft/core/particles/SimpleParticleType;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; +MD: net/minecraft/client/particle/CampfireSmokeParticle$SignalProvider/ (Lnet/minecraft/client/particle/SpriteSet;)V net/minecraft/client/particle/CampfireSmokeParticle$SignalProvider/ (Lnet/minecraft/client/particle/SpriteSet;)V +MD: net/minecraft/client/particle/CampfireSmokeParticle$SignalProvider/m_6966_ (Lnet/minecraft/core/particles/ParticleOptions;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; net/minecraft/client/particle/CampfireSmokeParticle$SignalProvider/createParticle (Lnet/minecraft/core/particles/ParticleOptions;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; +MD: net/minecraft/client/particle/CampfireSmokeParticle$SignalProvider/m_6966_ (Lnet/minecraft/core/particles/SimpleParticleType;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; net/minecraft/client/particle/CampfireSmokeParticle$SignalProvider/createParticle (Lnet/minecraft/core/particles/SimpleParticleType;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; +MD: net/minecraft/client/particle/CherryParticle/ (Lnet/minecraft/client/multiplayer/ClientLevel;DDDLnet/minecraft/client/particle/SpriteSet;)V net/minecraft/client/particle/CherryParticle/ (Lnet/minecraft/client/multiplayer/ClientLevel;DDDLnet/minecraft/client/particle/SpriteSet;)V +MD: net/minecraft/client/particle/CherryParticle/m_5989_ ()V net/minecraft/client/particle/CherryParticle/tick ()V +MD: net/minecraft/client/particle/CherryParticle/m_7556_ ()Lnet/minecraft/client/particle/ParticleRenderType; net/minecraft/client/particle/CherryParticle/getRenderType ()Lnet/minecraft/client/particle/ParticleRenderType; +MD: net/minecraft/client/particle/CritParticle/ (Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)V net/minecraft/client/particle/CritParticle/ (Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)V +MD: net/minecraft/client/particle/CritParticle/m_5902_ (F)F net/minecraft/client/particle/CritParticle/getQuadSize (F)F +MD: net/minecraft/client/particle/CritParticle/m_5989_ ()V net/minecraft/client/particle/CritParticle/tick ()V +MD: net/minecraft/client/particle/CritParticle/m_7556_ ()Lnet/minecraft/client/particle/ParticleRenderType; net/minecraft/client/particle/CritParticle/getRenderType ()Lnet/minecraft/client/particle/ParticleRenderType; +MD: net/minecraft/client/particle/CritParticle$DamageIndicatorProvider/ (Lnet/minecraft/client/particle/SpriteSet;)V net/minecraft/client/particle/CritParticle$DamageIndicatorProvider/ (Lnet/minecraft/client/particle/SpriteSet;)V +MD: net/minecraft/client/particle/CritParticle$DamageIndicatorProvider/m_6966_ (Lnet/minecraft/core/particles/ParticleOptions;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; net/minecraft/client/particle/CritParticle$DamageIndicatorProvider/createParticle (Lnet/minecraft/core/particles/ParticleOptions;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; +MD: net/minecraft/client/particle/CritParticle$DamageIndicatorProvider/m_6966_ (Lnet/minecraft/core/particles/SimpleParticleType;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; net/minecraft/client/particle/CritParticle$DamageIndicatorProvider/createParticle (Lnet/minecraft/core/particles/SimpleParticleType;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; +MD: net/minecraft/client/particle/CritParticle$MagicProvider/ (Lnet/minecraft/client/particle/SpriteSet;)V net/minecraft/client/particle/CritParticle$MagicProvider/ (Lnet/minecraft/client/particle/SpriteSet;)V +MD: net/minecraft/client/particle/CritParticle$MagicProvider/m_6966_ (Lnet/minecraft/core/particles/ParticleOptions;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; net/minecraft/client/particle/CritParticle$MagicProvider/createParticle (Lnet/minecraft/core/particles/ParticleOptions;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; +MD: net/minecraft/client/particle/CritParticle$MagicProvider/m_6966_ (Lnet/minecraft/core/particles/SimpleParticleType;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; net/minecraft/client/particle/CritParticle$MagicProvider/createParticle (Lnet/minecraft/core/particles/SimpleParticleType;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; +MD: net/minecraft/client/particle/CritParticle$Provider/ (Lnet/minecraft/client/particle/SpriteSet;)V net/minecraft/client/particle/CritParticle$Provider/ (Lnet/minecraft/client/particle/SpriteSet;)V +MD: net/minecraft/client/particle/CritParticle$Provider/m_6966_ (Lnet/minecraft/core/particles/ParticleOptions;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; net/minecraft/client/particle/CritParticle$Provider/createParticle (Lnet/minecraft/core/particles/ParticleOptions;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; +MD: net/minecraft/client/particle/CritParticle$Provider/m_6966_ (Lnet/minecraft/core/particles/SimpleParticleType;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; net/minecraft/client/particle/CritParticle$Provider/createParticle (Lnet/minecraft/core/particles/SimpleParticleType;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; +MD: net/minecraft/client/particle/DragonBreathParticle/ (Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDDLnet/minecraft/client/particle/SpriteSet;)V net/minecraft/client/particle/DragonBreathParticle/ (Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDDLnet/minecraft/client/particle/SpriteSet;)V +MD: net/minecraft/client/particle/DragonBreathParticle/m_5902_ (F)F net/minecraft/client/particle/DragonBreathParticle/getQuadSize (F)F +MD: net/minecraft/client/particle/DragonBreathParticle/m_5989_ ()V net/minecraft/client/particle/DragonBreathParticle/tick ()V +MD: net/minecraft/client/particle/DragonBreathParticle/m_7556_ ()Lnet/minecraft/client/particle/ParticleRenderType; net/minecraft/client/particle/DragonBreathParticle/getRenderType ()Lnet/minecraft/client/particle/ParticleRenderType; +MD: net/minecraft/client/particle/DragonBreathParticle$Provider/ (Lnet/minecraft/client/particle/SpriteSet;)V net/minecraft/client/particle/DragonBreathParticle$Provider/ (Lnet/minecraft/client/particle/SpriteSet;)V +MD: net/minecraft/client/particle/DragonBreathParticle$Provider/m_6966_ (Lnet/minecraft/core/particles/ParticleOptions;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; net/minecraft/client/particle/DragonBreathParticle$Provider/createParticle (Lnet/minecraft/core/particles/ParticleOptions;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; +MD: net/minecraft/client/particle/DragonBreathParticle$Provider/m_6966_ (Lnet/minecraft/core/particles/SimpleParticleType;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; net/minecraft/client/particle/DragonBreathParticle$Provider/createParticle (Lnet/minecraft/core/particles/SimpleParticleType;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; +MD: net/minecraft/client/particle/DripParticle/ (Lnet/minecraft/client/multiplayer/ClientLevel;DDDLnet/minecraft/world/level/material/Fluid;)V net/minecraft/client/particle/DripParticle/ (Lnet/minecraft/client/multiplayer/ClientLevel;DDDLnet/minecraft/world/level/material/Fluid;)V +MD: net/minecraft/client/particle/DripParticle/m_171928_ ()Lnet/minecraft/world/level/material/Fluid; net/minecraft/client/particle/DripParticle/getType ()Lnet/minecraft/world/level/material/Fluid; +MD: net/minecraft/client/particle/DripParticle/m_271744_ (Lnet/minecraft/core/particles/SimpleParticleType;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/TextureSheetParticle; net/minecraft/client/particle/DripParticle/createHoneyLandParticle (Lnet/minecraft/core/particles/SimpleParticleType;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/TextureSheetParticle; +MD: net/minecraft/client/particle/DripParticle/m_271760_ (Lnet/minecraft/core/particles/SimpleParticleType;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/TextureSheetParticle; net/minecraft/client/particle/DripParticle/createDripstoneLavaFallParticle (Lnet/minecraft/core/particles/SimpleParticleType;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/TextureSheetParticle; +MD: net/minecraft/client/particle/DripParticle/m_271789_ (Lnet/minecraft/core/particles/SimpleParticleType;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/TextureSheetParticle; net/minecraft/client/particle/DripParticle/createDripstoneLavaHangParticle (Lnet/minecraft/core/particles/SimpleParticleType;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/TextureSheetParticle; +MD: net/minecraft/client/particle/DripParticle/m_271885_ (Lnet/minecraft/core/particles/SimpleParticleType;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/TextureSheetParticle; net/minecraft/client/particle/DripParticle/createLavaLandParticle (Lnet/minecraft/core/particles/SimpleParticleType;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/TextureSheetParticle; +MD: net/minecraft/client/particle/DripParticle/m_271915_ (Lnet/minecraft/core/particles/SimpleParticleType;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/TextureSheetParticle; net/minecraft/client/particle/DripParticle/createWaterFallParticle (Lnet/minecraft/core/particles/SimpleParticleType;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/TextureSheetParticle; +MD: net/minecraft/client/particle/DripParticle/m_271935_ (Lnet/minecraft/core/particles/SimpleParticleType;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/TextureSheetParticle; net/minecraft/client/particle/DripParticle/createObsidianTearHangParticle (Lnet/minecraft/core/particles/SimpleParticleType;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/TextureSheetParticle; +MD: net/minecraft/client/particle/DripParticle/m_271941_ (Lnet/minecraft/core/particles/SimpleParticleType;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/TextureSheetParticle; net/minecraft/client/particle/DripParticle/createObsidianTearFallParticle (Lnet/minecraft/core/particles/SimpleParticleType;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/TextureSheetParticle; +MD: net/minecraft/client/particle/DripParticle/m_271993_ (Lnet/minecraft/core/particles/SimpleParticleType;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/TextureSheetParticle; net/minecraft/client/particle/DripParticle/createDripstoneWaterFallParticle (Lnet/minecraft/core/particles/SimpleParticleType;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/TextureSheetParticle; +MD: net/minecraft/client/particle/DripParticle/m_272002_ (Lnet/minecraft/core/particles/SimpleParticleType;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/TextureSheetParticle; net/minecraft/client/particle/DripParticle/createDripstoneWaterHangParticle (Lnet/minecraft/core/particles/SimpleParticleType;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/TextureSheetParticle; +MD: net/minecraft/client/particle/DripParticle/m_272020_ (Lnet/minecraft/core/particles/SimpleParticleType;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/TextureSheetParticle; net/minecraft/client/particle/DripParticle/createWaterHangParticle (Lnet/minecraft/core/particles/SimpleParticleType;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/TextureSheetParticle; +MD: net/minecraft/client/particle/DripParticle/m_272026_ (Lnet/minecraft/core/particles/SimpleParticleType;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/TextureSheetParticle; net/minecraft/client/particle/DripParticle/createLavaFallParticle (Lnet/minecraft/core/particles/SimpleParticleType;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/TextureSheetParticle; +MD: net/minecraft/client/particle/DripParticle/m_272030_ (Lnet/minecraft/core/particles/SimpleParticleType;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/TextureSheetParticle; net/minecraft/client/particle/DripParticle/createHoneyFallParticle (Lnet/minecraft/core/particles/SimpleParticleType;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/TextureSheetParticle; +MD: net/minecraft/client/particle/DripParticle/m_272107_ (Lnet/minecraft/core/particles/SimpleParticleType;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/TextureSheetParticle; net/minecraft/client/particle/DripParticle/createHoneyHangParticle (Lnet/minecraft/core/particles/SimpleParticleType;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/TextureSheetParticle; +MD: net/minecraft/client/particle/DripParticle/m_272109_ (Lnet/minecraft/core/particles/SimpleParticleType;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/TextureSheetParticle; net/minecraft/client/particle/DripParticle/createLavaHangParticle (Lnet/minecraft/core/particles/SimpleParticleType;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/TextureSheetParticle; +MD: net/minecraft/client/particle/DripParticle/m_272129_ (Lnet/minecraft/core/particles/SimpleParticleType;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/TextureSheetParticle; net/minecraft/client/particle/DripParticle/createNectarFallParticle (Lnet/minecraft/core/particles/SimpleParticleType;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/TextureSheetParticle; +MD: net/minecraft/client/particle/DripParticle/m_272251_ (Lnet/minecraft/core/particles/SimpleParticleType;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/TextureSheetParticle; net/minecraft/client/particle/DripParticle/createObsidianTearLandParticle (Lnet/minecraft/core/particles/SimpleParticleType;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/TextureSheetParticle; +MD: net/minecraft/client/particle/DripParticle/m_272261_ (Lnet/minecraft/core/particles/SimpleParticleType;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/TextureSheetParticle; net/minecraft/client/particle/DripParticle/createSporeBlossomFallParticle (Lnet/minecraft/core/particles/SimpleParticleType;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/TextureSheetParticle; +MD: net/minecraft/client/particle/DripParticle/m_5949_ ()V net/minecraft/client/particle/DripParticle/postMoveUpdate ()V +MD: net/minecraft/client/particle/DripParticle/m_5956_ ()V net/minecraft/client/particle/DripParticle/preMoveUpdate ()V +MD: net/minecraft/client/particle/DripParticle/m_5989_ ()V net/minecraft/client/particle/DripParticle/tick ()V +MD: net/minecraft/client/particle/DripParticle/m_6355_ (F)I net/minecraft/client/particle/DripParticle/getLightColor (F)I +MD: net/minecraft/client/particle/DripParticle/m_7556_ ()Lnet/minecraft/client/particle/ParticleRenderType; net/minecraft/client/particle/DripParticle/getRenderType ()Lnet/minecraft/client/particle/ParticleRenderType; +MD: net/minecraft/client/particle/DripParticle$CoolingDripHangParticle/ (Lnet/minecraft/client/multiplayer/ClientLevel;DDDLnet/minecraft/world/level/material/Fluid;Lnet/minecraft/core/particles/ParticleOptions;)V net/minecraft/client/particle/DripParticle$CoolingDripHangParticle/ (Lnet/minecraft/client/multiplayer/ClientLevel;DDDLnet/minecraft/world/level/material/Fluid;Lnet/minecraft/core/particles/ParticleOptions;)V +MD: net/minecraft/client/particle/DripParticle$CoolingDripHangParticle/m_5956_ ()V net/minecraft/client/particle/DripParticle$CoolingDripHangParticle/preMoveUpdate ()V +MD: net/minecraft/client/particle/DripParticle$DripHangParticle/ (Lnet/minecraft/client/multiplayer/ClientLevel;DDDLnet/minecraft/world/level/material/Fluid;Lnet/minecraft/core/particles/ParticleOptions;)V net/minecraft/client/particle/DripParticle$DripHangParticle/ (Lnet/minecraft/client/multiplayer/ClientLevel;DDDLnet/minecraft/world/level/material/Fluid;Lnet/minecraft/core/particles/ParticleOptions;)V +MD: net/minecraft/client/particle/DripParticle$DripHangParticle/m_5949_ ()V net/minecraft/client/particle/DripParticle$DripHangParticle/postMoveUpdate ()V +MD: net/minecraft/client/particle/DripParticle$DripHangParticle/m_5956_ ()V net/minecraft/client/particle/DripParticle$DripHangParticle/preMoveUpdate ()V +MD: net/minecraft/client/particle/DripParticle$DripLandParticle/ (Lnet/minecraft/client/multiplayer/ClientLevel;DDDLnet/minecraft/world/level/material/Fluid;)V net/minecraft/client/particle/DripParticle$DripLandParticle/ (Lnet/minecraft/client/multiplayer/ClientLevel;DDDLnet/minecraft/world/level/material/Fluid;)V +MD: net/minecraft/client/particle/DripParticle$DripstoneFallAndLandParticle/ (Lnet/minecraft/client/multiplayer/ClientLevel;DDDLnet/minecraft/world/level/material/Fluid;Lnet/minecraft/core/particles/ParticleOptions;)V net/minecraft/client/particle/DripParticle$DripstoneFallAndLandParticle/ (Lnet/minecraft/client/multiplayer/ClientLevel;DDDLnet/minecraft/world/level/material/Fluid;Lnet/minecraft/core/particles/ParticleOptions;)V +MD: net/minecraft/client/particle/DripParticle$DripstoneFallAndLandParticle/m_5949_ ()V net/minecraft/client/particle/DripParticle$DripstoneFallAndLandParticle/postMoveUpdate ()V +MD: net/minecraft/client/particle/DripParticle$FallAndLandParticle/ (Lnet/minecraft/client/multiplayer/ClientLevel;DDDLnet/minecraft/world/level/material/Fluid;Lnet/minecraft/core/particles/ParticleOptions;)V net/minecraft/client/particle/DripParticle$FallAndLandParticle/ (Lnet/minecraft/client/multiplayer/ClientLevel;DDDLnet/minecraft/world/level/material/Fluid;Lnet/minecraft/core/particles/ParticleOptions;)V +MD: net/minecraft/client/particle/DripParticle$FallAndLandParticle/m_5949_ ()V net/minecraft/client/particle/DripParticle$FallAndLandParticle/postMoveUpdate ()V +MD: net/minecraft/client/particle/DripParticle$FallingParticle/ (Lnet/minecraft/client/multiplayer/ClientLevel;DDDLnet/minecraft/world/level/material/Fluid;I)V net/minecraft/client/particle/DripParticle$FallingParticle/ (Lnet/minecraft/client/multiplayer/ClientLevel;DDDLnet/minecraft/world/level/material/Fluid;I)V +MD: net/minecraft/client/particle/DripParticle$FallingParticle/ (Lnet/minecraft/client/multiplayer/ClientLevel;DDDLnet/minecraft/world/level/material/Fluid;)V net/minecraft/client/particle/DripParticle$FallingParticle/ (Lnet/minecraft/client/multiplayer/ClientLevel;DDDLnet/minecraft/world/level/material/Fluid;)V +MD: net/minecraft/client/particle/DripParticle$FallingParticle/m_5949_ ()V net/minecraft/client/particle/DripParticle$FallingParticle/postMoveUpdate ()V +MD: net/minecraft/client/particle/DripParticle$HoneyFallAndLandParticle/ (Lnet/minecraft/client/multiplayer/ClientLevel;DDDLnet/minecraft/world/level/material/Fluid;Lnet/minecraft/core/particles/ParticleOptions;)V net/minecraft/client/particle/DripParticle$HoneyFallAndLandParticle/ (Lnet/minecraft/client/multiplayer/ClientLevel;DDDLnet/minecraft/world/level/material/Fluid;Lnet/minecraft/core/particles/ParticleOptions;)V +MD: net/minecraft/client/particle/DripParticle$HoneyFallAndLandParticle/m_5949_ ()V net/minecraft/client/particle/DripParticle$HoneyFallAndLandParticle/postMoveUpdate ()V +MD: net/minecraft/client/particle/DustColorTransitionParticle/ (Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDDLnet/minecraft/core/particles/DustColorTransitionOptions;Lnet/minecraft/client/particle/SpriteSet;)V net/minecraft/client/particle/DustColorTransitionParticle/ (Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDDLnet/minecraft/core/particles/DustColorTransitionOptions;Lnet/minecraft/client/particle/SpriteSet;)V +MD: net/minecraft/client/particle/DustColorTransitionParticle/m_172069_ (F)V net/minecraft/client/particle/DustColorTransitionParticle/lerpColors (F)V +MD: net/minecraft/client/particle/DustColorTransitionParticle/m_252968_ (Lorg/joml/Vector3f;F)Lorg/joml/Vector3f; net/minecraft/client/particle/DustColorTransitionParticle/randomizeColor (Lorg/joml/Vector3f;F)Lorg/joml/Vector3f; +MD: net/minecraft/client/particle/DustColorTransitionParticle/m_5744_ (Lcom/mojang/blaze3d/vertex/VertexConsumer;Lnet/minecraft/client/Camera;F)V net/minecraft/client/particle/DustColorTransitionParticle/render (Lcom/mojang/blaze3d/vertex/VertexConsumer;Lnet/minecraft/client/Camera;F)V +MD: net/minecraft/client/particle/DustColorTransitionParticle$Provider/ (Lnet/minecraft/client/particle/SpriteSet;)V net/minecraft/client/particle/DustColorTransitionParticle$Provider/ (Lnet/minecraft/client/particle/SpriteSet;)V +MD: net/minecraft/client/particle/DustColorTransitionParticle$Provider/m_6966_ (Lnet/minecraft/core/particles/DustColorTransitionOptions;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; net/minecraft/client/particle/DustColorTransitionParticle$Provider/createParticle (Lnet/minecraft/core/particles/DustColorTransitionOptions;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; +MD: net/minecraft/client/particle/DustColorTransitionParticle$Provider/m_6966_ (Lnet/minecraft/core/particles/ParticleOptions;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; net/minecraft/client/particle/DustColorTransitionParticle$Provider/createParticle (Lnet/minecraft/core/particles/ParticleOptions;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; +MD: net/minecraft/client/particle/DustParticle/ (Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDDLnet/minecraft/core/particles/DustParticleOptions;Lnet/minecraft/client/particle/SpriteSet;)V net/minecraft/client/particle/DustParticle/ (Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDDLnet/minecraft/core/particles/DustParticleOptions;Lnet/minecraft/client/particle/SpriteSet;)V +MD: net/minecraft/client/particle/DustParticle$Provider/ (Lnet/minecraft/client/particle/SpriteSet;)V net/minecraft/client/particle/DustParticle$Provider/ (Lnet/minecraft/client/particle/SpriteSet;)V +MD: net/minecraft/client/particle/DustParticle$Provider/m_6966_ (Lnet/minecraft/core/particles/DustParticleOptions;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; net/minecraft/client/particle/DustParticle$Provider/createParticle (Lnet/minecraft/core/particles/DustParticleOptions;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; +MD: net/minecraft/client/particle/DustParticle$Provider/m_6966_ (Lnet/minecraft/core/particles/ParticleOptions;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; net/minecraft/client/particle/DustParticle$Provider/createParticle (Lnet/minecraft/core/particles/ParticleOptions;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; +MD: net/minecraft/client/particle/DustParticleBase/ (Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDDLnet/minecraft/core/particles/DustParticleOptionsBase;Lnet/minecraft/client/particle/SpriteSet;)V net/minecraft/client/particle/DustParticleBase/ (Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDDLnet/minecraft/core/particles/DustParticleOptionsBase;Lnet/minecraft/client/particle/SpriteSet;)V +MD: net/minecraft/client/particle/DustParticleBase/m_172104_ (FF)F net/minecraft/client/particle/DustParticleBase/randomizeColor (FF)F +MD: net/minecraft/client/particle/DustParticleBase/m_5902_ (F)F net/minecraft/client/particle/DustParticleBase/getQuadSize (F)F +MD: net/minecraft/client/particle/DustParticleBase/m_5989_ ()V net/minecraft/client/particle/DustParticleBase/tick ()V +MD: net/minecraft/client/particle/DustParticleBase/m_7556_ ()Lnet/minecraft/client/particle/ParticleRenderType; net/minecraft/client/particle/DustParticleBase/getRenderType ()Lnet/minecraft/client/particle/ParticleRenderType; +MD: net/minecraft/client/particle/EnchantmentTableParticle/ (Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)V net/minecraft/client/particle/EnchantmentTableParticle/ (Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)V +MD: net/minecraft/client/particle/EnchantmentTableParticle/m_5989_ ()V net/minecraft/client/particle/EnchantmentTableParticle/tick ()V +MD: net/minecraft/client/particle/EnchantmentTableParticle/m_6257_ (DDD)V net/minecraft/client/particle/EnchantmentTableParticle/move (DDD)V +MD: net/minecraft/client/particle/EnchantmentTableParticle/m_6355_ (F)I net/minecraft/client/particle/EnchantmentTableParticle/getLightColor (F)I +MD: net/minecraft/client/particle/EnchantmentTableParticle/m_7556_ ()Lnet/minecraft/client/particle/ParticleRenderType; net/minecraft/client/particle/EnchantmentTableParticle/getRenderType ()Lnet/minecraft/client/particle/ParticleRenderType; +MD: net/minecraft/client/particle/EnchantmentTableParticle$NautilusProvider/ (Lnet/minecraft/client/particle/SpriteSet;)V net/minecraft/client/particle/EnchantmentTableParticle$NautilusProvider/ (Lnet/minecraft/client/particle/SpriteSet;)V +MD: net/minecraft/client/particle/EnchantmentTableParticle$NautilusProvider/m_6966_ (Lnet/minecraft/core/particles/ParticleOptions;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; net/minecraft/client/particle/EnchantmentTableParticle$NautilusProvider/createParticle (Lnet/minecraft/core/particles/ParticleOptions;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; +MD: net/minecraft/client/particle/EnchantmentTableParticle$NautilusProvider/m_6966_ (Lnet/minecraft/core/particles/SimpleParticleType;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; net/minecraft/client/particle/EnchantmentTableParticle$NautilusProvider/createParticle (Lnet/minecraft/core/particles/SimpleParticleType;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; +MD: net/minecraft/client/particle/EnchantmentTableParticle$Provider/ (Lnet/minecraft/client/particle/SpriteSet;)V net/minecraft/client/particle/EnchantmentTableParticle$Provider/ (Lnet/minecraft/client/particle/SpriteSet;)V +MD: net/minecraft/client/particle/EnchantmentTableParticle$Provider/m_6966_ (Lnet/minecraft/core/particles/ParticleOptions;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; net/minecraft/client/particle/EnchantmentTableParticle$Provider/createParticle (Lnet/minecraft/core/particles/ParticleOptions;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; +MD: net/minecraft/client/particle/EnchantmentTableParticle$Provider/m_6966_ (Lnet/minecraft/core/particles/SimpleParticleType;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; net/minecraft/client/particle/EnchantmentTableParticle$Provider/createParticle (Lnet/minecraft/core/particles/SimpleParticleType;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; +MD: net/minecraft/client/particle/EndRodParticle/ (Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDDLnet/minecraft/client/particle/SpriteSet;)V net/minecraft/client/particle/EndRodParticle/ (Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDDLnet/minecraft/client/particle/SpriteSet;)V +MD: net/minecraft/client/particle/EndRodParticle/m_6257_ (DDD)V net/minecraft/client/particle/EndRodParticle/move (DDD)V +MD: net/minecraft/client/particle/EndRodParticle$Provider/ (Lnet/minecraft/client/particle/SpriteSet;)V net/minecraft/client/particle/EndRodParticle$Provider/ (Lnet/minecraft/client/particle/SpriteSet;)V +MD: net/minecraft/client/particle/EndRodParticle$Provider/m_6966_ (Lnet/minecraft/core/particles/ParticleOptions;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; net/minecraft/client/particle/EndRodParticle$Provider/createParticle (Lnet/minecraft/core/particles/ParticleOptions;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; +MD: net/minecraft/client/particle/EndRodParticle$Provider/m_6966_ (Lnet/minecraft/core/particles/SimpleParticleType;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; net/minecraft/client/particle/EndRodParticle$Provider/createParticle (Lnet/minecraft/core/particles/SimpleParticleType;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; +MD: net/minecraft/client/particle/ExplodeParticle/ (Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDDLnet/minecraft/client/particle/SpriteSet;)V net/minecraft/client/particle/ExplodeParticle/ (Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDDLnet/minecraft/client/particle/SpriteSet;)V +MD: net/minecraft/client/particle/ExplodeParticle/m_5989_ ()V net/minecraft/client/particle/ExplodeParticle/tick ()V +MD: net/minecraft/client/particle/ExplodeParticle/m_7556_ ()Lnet/minecraft/client/particle/ParticleRenderType; net/minecraft/client/particle/ExplodeParticle/getRenderType ()Lnet/minecraft/client/particle/ParticleRenderType; +MD: net/minecraft/client/particle/ExplodeParticle$Provider/ (Lnet/minecraft/client/particle/SpriteSet;)V net/minecraft/client/particle/ExplodeParticle$Provider/ (Lnet/minecraft/client/particle/SpriteSet;)V +MD: net/minecraft/client/particle/ExplodeParticle$Provider/m_6966_ (Lnet/minecraft/core/particles/ParticleOptions;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; net/minecraft/client/particle/ExplodeParticle$Provider/createParticle (Lnet/minecraft/core/particles/ParticleOptions;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; +MD: net/minecraft/client/particle/ExplodeParticle$Provider/m_6966_ (Lnet/minecraft/core/particles/SimpleParticleType;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; net/minecraft/client/particle/ExplodeParticle$Provider/createParticle (Lnet/minecraft/core/particles/SimpleParticleType;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; +MD: net/minecraft/client/particle/FallingDustParticle/ (Lnet/minecraft/client/multiplayer/ClientLevel;DDDFFFLnet/minecraft/client/particle/SpriteSet;)V net/minecraft/client/particle/FallingDustParticle/ (Lnet/minecraft/client/multiplayer/ClientLevel;DDDFFFLnet/minecraft/client/particle/SpriteSet;)V +MD: net/minecraft/client/particle/FallingDustParticle/m_5902_ (F)F net/minecraft/client/particle/FallingDustParticle/getQuadSize (F)F +MD: net/minecraft/client/particle/FallingDustParticle/m_5989_ ()V net/minecraft/client/particle/FallingDustParticle/tick ()V +MD: net/minecraft/client/particle/FallingDustParticle/m_7556_ ()Lnet/minecraft/client/particle/ParticleRenderType; net/minecraft/client/particle/FallingDustParticle/getRenderType ()Lnet/minecraft/client/particle/ParticleRenderType; +MD: net/minecraft/client/particle/FallingDustParticle$Provider/ (Lnet/minecraft/client/particle/SpriteSet;)V net/minecraft/client/particle/FallingDustParticle$Provider/ (Lnet/minecraft/client/particle/SpriteSet;)V +MD: net/minecraft/client/particle/FallingDustParticle$Provider/m_6966_ (Lnet/minecraft/core/particles/BlockParticleOption;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; net/minecraft/client/particle/FallingDustParticle$Provider/createParticle (Lnet/minecraft/core/particles/BlockParticleOption;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; +MD: net/minecraft/client/particle/FallingDustParticle$Provider/m_6966_ (Lnet/minecraft/core/particles/ParticleOptions;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; net/minecraft/client/particle/FallingDustParticle$Provider/createParticle (Lnet/minecraft/core/particles/ParticleOptions;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; +MD: net/minecraft/client/particle/FireworkParticles/ ()V net/minecraft/client/particle/FireworkParticles/ ()V +MD: net/minecraft/client/particle/FireworkParticles$1/ ()V net/minecraft/client/particle/FireworkParticles$1/ ()V +MD: net/minecraft/client/particle/FireworkParticles$FlashProvider/ (Lnet/minecraft/client/particle/SpriteSet;)V net/minecraft/client/particle/FireworkParticles$FlashProvider/ (Lnet/minecraft/client/particle/SpriteSet;)V +MD: net/minecraft/client/particle/FireworkParticles$FlashProvider/m_6966_ (Lnet/minecraft/core/particles/ParticleOptions;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; net/minecraft/client/particle/FireworkParticles$FlashProvider/createParticle (Lnet/minecraft/core/particles/ParticleOptions;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; +MD: net/minecraft/client/particle/FireworkParticles$FlashProvider/m_6966_ (Lnet/minecraft/core/particles/SimpleParticleType;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; net/minecraft/client/particle/FireworkParticles$FlashProvider/createParticle (Lnet/minecraft/core/particles/SimpleParticleType;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; +MD: net/minecraft/client/particle/FireworkParticles$OverlayParticle/ (Lnet/minecraft/client/multiplayer/ClientLevel;DDD)V net/minecraft/client/particle/FireworkParticles$OverlayParticle/ (Lnet/minecraft/client/multiplayer/ClientLevel;DDD)V +MD: net/minecraft/client/particle/FireworkParticles$OverlayParticle/m_5744_ (Lcom/mojang/blaze3d/vertex/VertexConsumer;Lnet/minecraft/client/Camera;F)V net/minecraft/client/particle/FireworkParticles$OverlayParticle/render (Lcom/mojang/blaze3d/vertex/VertexConsumer;Lnet/minecraft/client/Camera;F)V +MD: net/minecraft/client/particle/FireworkParticles$OverlayParticle/m_5902_ (F)F net/minecraft/client/particle/FireworkParticles$OverlayParticle/getQuadSize (F)F +MD: net/minecraft/client/particle/FireworkParticles$OverlayParticle/m_7556_ ()Lnet/minecraft/client/particle/ParticleRenderType; net/minecraft/client/particle/FireworkParticles$OverlayParticle/getRenderType ()Lnet/minecraft/client/particle/ParticleRenderType; +MD: net/minecraft/client/particle/FireworkParticles$SparkParticle/ (Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDDLnet/minecraft/client/particle/ParticleEngine;Lnet/minecraft/client/particle/SpriteSet;)V net/minecraft/client/particle/FireworkParticles$SparkParticle/ (Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDDLnet/minecraft/client/particle/ParticleEngine;Lnet/minecraft/client/particle/SpriteSet;)V +MD: net/minecraft/client/particle/FireworkParticles$SparkParticle/m_106727_ (Z)V net/minecraft/client/particle/FireworkParticles$SparkParticle/setTrail (Z)V +MD: net/minecraft/client/particle/FireworkParticles$SparkParticle/m_106729_ (Z)V net/minecraft/client/particle/FireworkParticles$SparkParticle/setFlicker (Z)V +MD: net/minecraft/client/particle/FireworkParticles$SparkParticle/m_5744_ (Lcom/mojang/blaze3d/vertex/VertexConsumer;Lnet/minecraft/client/Camera;F)V net/minecraft/client/particle/FireworkParticles$SparkParticle/render (Lcom/mojang/blaze3d/vertex/VertexConsumer;Lnet/minecraft/client/Camera;F)V +MD: net/minecraft/client/particle/FireworkParticles$SparkParticle/m_5989_ ()V net/minecraft/client/particle/FireworkParticles$SparkParticle/tick ()V +MD: net/minecraft/client/particle/FireworkParticles$SparkProvider/ (Lnet/minecraft/client/particle/SpriteSet;)V net/minecraft/client/particle/FireworkParticles$SparkProvider/ (Lnet/minecraft/client/particle/SpriteSet;)V +MD: net/minecraft/client/particle/FireworkParticles$SparkProvider/m_6966_ (Lnet/minecraft/core/particles/ParticleOptions;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; net/minecraft/client/particle/FireworkParticles$SparkProvider/createParticle (Lnet/minecraft/core/particles/ParticleOptions;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; +MD: net/minecraft/client/particle/FireworkParticles$SparkProvider/m_6966_ (Lnet/minecraft/core/particles/SimpleParticleType;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; net/minecraft/client/particle/FireworkParticles$SparkProvider/createParticle (Lnet/minecraft/core/particles/SimpleParticleType;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; +MD: net/minecraft/client/particle/FireworkParticles$Starter/ (Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDDLnet/minecraft/client/particle/ParticleEngine;Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/client/particle/FireworkParticles$Starter/ (Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDDLnet/minecraft/client/particle/ParticleEngine;Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/client/particle/FireworkParticles$Starter/m_106767_ (DDDDDD[I[IZZ)V net/minecraft/client/particle/FireworkParticles$Starter/createParticle (DDDDDD[I[IZZ)V +MD: net/minecraft/client/particle/FireworkParticles$Starter/m_106778_ (DI[I[IZZ)V net/minecraft/client/particle/FireworkParticles$Starter/createParticleBall (DI[I[IZZ)V +MD: net/minecraft/client/particle/FireworkParticles$Starter/m_106785_ (D[[D[I[IZZZ)V net/minecraft/client/particle/FireworkParticles$Starter/createParticleShape (D[[D[I[IZZZ)V +MD: net/minecraft/client/particle/FireworkParticles$Starter/m_106793_ ([I[IZZ)V net/minecraft/client/particle/FireworkParticles$Starter/createParticleBurst ([I[IZZ)V +MD: net/minecraft/client/particle/FireworkParticles$Starter/m_106798_ ()Z net/minecraft/client/particle/FireworkParticles$Starter/isFarAwayFromCamera ()Z +MD: net/minecraft/client/particle/FireworkParticles$Starter/m_5989_ ()V net/minecraft/client/particle/FireworkParticles$Starter/tick ()V +MD: net/minecraft/client/particle/FlameParticle/ (Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)V net/minecraft/client/particle/FlameParticle/ (Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)V +MD: net/minecraft/client/particle/FlameParticle/m_5902_ (F)F net/minecraft/client/particle/FlameParticle/getQuadSize (F)F +MD: net/minecraft/client/particle/FlameParticle/m_6257_ (DDD)V net/minecraft/client/particle/FlameParticle/move (DDD)V +MD: net/minecraft/client/particle/FlameParticle/m_6355_ (F)I net/minecraft/client/particle/FlameParticle/getLightColor (F)I +MD: net/minecraft/client/particle/FlameParticle/m_7556_ ()Lnet/minecraft/client/particle/ParticleRenderType; net/minecraft/client/particle/FlameParticle/getRenderType ()Lnet/minecraft/client/particle/ParticleRenderType; +MD: net/minecraft/client/particle/FlameParticle$Provider/ (Lnet/minecraft/client/particle/SpriteSet;)V net/minecraft/client/particle/FlameParticle$Provider/ (Lnet/minecraft/client/particle/SpriteSet;)V +MD: net/minecraft/client/particle/FlameParticle$Provider/m_6966_ (Lnet/minecraft/core/particles/ParticleOptions;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; net/minecraft/client/particle/FlameParticle$Provider/createParticle (Lnet/minecraft/core/particles/ParticleOptions;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; +MD: net/minecraft/client/particle/FlameParticle$Provider/m_6966_ (Lnet/minecraft/core/particles/SimpleParticleType;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; net/minecraft/client/particle/FlameParticle$Provider/createParticle (Lnet/minecraft/core/particles/SimpleParticleType;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; +MD: net/minecraft/client/particle/FlameParticle$SmallFlameProvider/ (Lnet/minecraft/client/particle/SpriteSet;)V net/minecraft/client/particle/FlameParticle$SmallFlameProvider/ (Lnet/minecraft/client/particle/SpriteSet;)V +MD: net/minecraft/client/particle/FlameParticle$SmallFlameProvider/m_6966_ (Lnet/minecraft/core/particles/ParticleOptions;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; net/minecraft/client/particle/FlameParticle$SmallFlameProvider/createParticle (Lnet/minecraft/core/particles/ParticleOptions;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; +MD: net/minecraft/client/particle/FlameParticle$SmallFlameProvider/m_6966_ (Lnet/minecraft/core/particles/SimpleParticleType;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; net/minecraft/client/particle/FlameParticle$SmallFlameProvider/createParticle (Lnet/minecraft/core/particles/SimpleParticleType;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; +MD: net/minecraft/client/particle/GlowParticle/ ()V net/minecraft/client/particle/GlowParticle/ ()V +MD: net/minecraft/client/particle/GlowParticle/ (Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDDLnet/minecraft/client/particle/SpriteSet;)V net/minecraft/client/particle/GlowParticle/ (Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDDLnet/minecraft/client/particle/SpriteSet;)V +MD: net/minecraft/client/particle/GlowParticle/m_5989_ ()V net/minecraft/client/particle/GlowParticle/tick ()V +MD: net/minecraft/client/particle/GlowParticle/m_6355_ (F)I net/minecraft/client/particle/GlowParticle/getLightColor (F)I +MD: net/minecraft/client/particle/GlowParticle/m_7556_ ()Lnet/minecraft/client/particle/ParticleRenderType; net/minecraft/client/particle/GlowParticle/getRenderType ()Lnet/minecraft/client/particle/ParticleRenderType; +MD: net/minecraft/client/particle/GlowParticle$ElectricSparkProvider/ (Lnet/minecraft/client/particle/SpriteSet;)V net/minecraft/client/particle/GlowParticle$ElectricSparkProvider/ (Lnet/minecraft/client/particle/SpriteSet;)V +MD: net/minecraft/client/particle/GlowParticle$ElectricSparkProvider/m_6966_ (Lnet/minecraft/core/particles/ParticleOptions;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; net/minecraft/client/particle/GlowParticle$ElectricSparkProvider/createParticle (Lnet/minecraft/core/particles/ParticleOptions;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; +MD: net/minecraft/client/particle/GlowParticle$ElectricSparkProvider/m_6966_ (Lnet/minecraft/core/particles/SimpleParticleType;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; net/minecraft/client/particle/GlowParticle$ElectricSparkProvider/createParticle (Lnet/minecraft/core/particles/SimpleParticleType;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; +MD: net/minecraft/client/particle/GlowParticle$GlowSquidProvider/ (Lnet/minecraft/client/particle/SpriteSet;)V net/minecraft/client/particle/GlowParticle$GlowSquidProvider/ (Lnet/minecraft/client/particle/SpriteSet;)V +MD: net/minecraft/client/particle/GlowParticle$GlowSquidProvider/m_6966_ (Lnet/minecraft/core/particles/ParticleOptions;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; net/minecraft/client/particle/GlowParticle$GlowSquidProvider/createParticle (Lnet/minecraft/core/particles/ParticleOptions;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; +MD: net/minecraft/client/particle/GlowParticle$GlowSquidProvider/m_6966_ (Lnet/minecraft/core/particles/SimpleParticleType;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; net/minecraft/client/particle/GlowParticle$GlowSquidProvider/createParticle (Lnet/minecraft/core/particles/SimpleParticleType;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; +MD: net/minecraft/client/particle/GlowParticle$ScrapeProvider/ (Lnet/minecraft/client/particle/SpriteSet;)V net/minecraft/client/particle/GlowParticle$ScrapeProvider/ (Lnet/minecraft/client/particle/SpriteSet;)V +MD: net/minecraft/client/particle/GlowParticle$ScrapeProvider/m_6966_ (Lnet/minecraft/core/particles/ParticleOptions;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; net/minecraft/client/particle/GlowParticle$ScrapeProvider/createParticle (Lnet/minecraft/core/particles/ParticleOptions;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; +MD: net/minecraft/client/particle/GlowParticle$ScrapeProvider/m_6966_ (Lnet/minecraft/core/particles/SimpleParticleType;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; net/minecraft/client/particle/GlowParticle$ScrapeProvider/createParticle (Lnet/minecraft/core/particles/SimpleParticleType;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; +MD: net/minecraft/client/particle/GlowParticle$WaxOffProvider/ (Lnet/minecraft/client/particle/SpriteSet;)V net/minecraft/client/particle/GlowParticle$WaxOffProvider/ (Lnet/minecraft/client/particle/SpriteSet;)V +MD: net/minecraft/client/particle/GlowParticle$WaxOffProvider/m_6966_ (Lnet/minecraft/core/particles/ParticleOptions;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; net/minecraft/client/particle/GlowParticle$WaxOffProvider/createParticle (Lnet/minecraft/core/particles/ParticleOptions;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; +MD: net/minecraft/client/particle/GlowParticle$WaxOffProvider/m_6966_ (Lnet/minecraft/core/particles/SimpleParticleType;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; net/minecraft/client/particle/GlowParticle$WaxOffProvider/createParticle (Lnet/minecraft/core/particles/SimpleParticleType;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; +MD: net/minecraft/client/particle/GlowParticle$WaxOnProvider/ (Lnet/minecraft/client/particle/SpriteSet;)V net/minecraft/client/particle/GlowParticle$WaxOnProvider/ (Lnet/minecraft/client/particle/SpriteSet;)V +MD: net/minecraft/client/particle/GlowParticle$WaxOnProvider/m_6966_ (Lnet/minecraft/core/particles/ParticleOptions;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; net/minecraft/client/particle/GlowParticle$WaxOnProvider/createParticle (Lnet/minecraft/core/particles/ParticleOptions;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; +MD: net/minecraft/client/particle/GlowParticle$WaxOnProvider/m_6966_ (Lnet/minecraft/core/particles/SimpleParticleType;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; net/minecraft/client/particle/GlowParticle$WaxOnProvider/createParticle (Lnet/minecraft/core/particles/SimpleParticleType;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; +MD: net/minecraft/client/particle/HeartParticle/ (Lnet/minecraft/client/multiplayer/ClientLevel;DDD)V net/minecraft/client/particle/HeartParticle/ (Lnet/minecraft/client/multiplayer/ClientLevel;DDD)V +MD: net/minecraft/client/particle/HeartParticle/m_5902_ (F)F net/minecraft/client/particle/HeartParticle/getQuadSize (F)F +MD: net/minecraft/client/particle/HeartParticle/m_7556_ ()Lnet/minecraft/client/particle/ParticleRenderType; net/minecraft/client/particle/HeartParticle/getRenderType ()Lnet/minecraft/client/particle/ParticleRenderType; +MD: net/minecraft/client/particle/HeartParticle$AngryVillagerProvider/ (Lnet/minecraft/client/particle/SpriteSet;)V net/minecraft/client/particle/HeartParticle$AngryVillagerProvider/ (Lnet/minecraft/client/particle/SpriteSet;)V +MD: net/minecraft/client/particle/HeartParticle$AngryVillagerProvider/m_6966_ (Lnet/minecraft/core/particles/ParticleOptions;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; net/minecraft/client/particle/HeartParticle$AngryVillagerProvider/createParticle (Lnet/minecraft/core/particles/ParticleOptions;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; +MD: net/minecraft/client/particle/HeartParticle$AngryVillagerProvider/m_6966_ (Lnet/minecraft/core/particles/SimpleParticleType;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; net/minecraft/client/particle/HeartParticle$AngryVillagerProvider/createParticle (Lnet/minecraft/core/particles/SimpleParticleType;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; +MD: net/minecraft/client/particle/HeartParticle$Provider/ (Lnet/minecraft/client/particle/SpriteSet;)V net/minecraft/client/particle/HeartParticle$Provider/ (Lnet/minecraft/client/particle/SpriteSet;)V +MD: net/minecraft/client/particle/HeartParticle$Provider/m_6966_ (Lnet/minecraft/core/particles/ParticleOptions;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; net/minecraft/client/particle/HeartParticle$Provider/createParticle (Lnet/minecraft/core/particles/ParticleOptions;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; +MD: net/minecraft/client/particle/HeartParticle$Provider/m_6966_ (Lnet/minecraft/core/particles/SimpleParticleType;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; net/minecraft/client/particle/HeartParticle$Provider/createParticle (Lnet/minecraft/core/particles/SimpleParticleType;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; +MD: net/minecraft/client/particle/HugeExplosionParticle/ (Lnet/minecraft/client/multiplayer/ClientLevel;DDDDLnet/minecraft/client/particle/SpriteSet;)V net/minecraft/client/particle/HugeExplosionParticle/ (Lnet/minecraft/client/multiplayer/ClientLevel;DDDDLnet/minecraft/client/particle/SpriteSet;)V +MD: net/minecraft/client/particle/HugeExplosionParticle/m_5989_ ()V net/minecraft/client/particle/HugeExplosionParticle/tick ()V +MD: net/minecraft/client/particle/HugeExplosionParticle/m_6355_ (F)I net/minecraft/client/particle/HugeExplosionParticle/getLightColor (F)I +MD: net/minecraft/client/particle/HugeExplosionParticle/m_7556_ ()Lnet/minecraft/client/particle/ParticleRenderType; net/minecraft/client/particle/HugeExplosionParticle/getRenderType ()Lnet/minecraft/client/particle/ParticleRenderType; +MD: net/minecraft/client/particle/HugeExplosionParticle$Provider/ (Lnet/minecraft/client/particle/SpriteSet;)V net/minecraft/client/particle/HugeExplosionParticle$Provider/ (Lnet/minecraft/client/particle/SpriteSet;)V +MD: net/minecraft/client/particle/HugeExplosionParticle$Provider/m_6966_ (Lnet/minecraft/core/particles/ParticleOptions;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; net/minecraft/client/particle/HugeExplosionParticle$Provider/createParticle (Lnet/minecraft/core/particles/ParticleOptions;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; +MD: net/minecraft/client/particle/HugeExplosionParticle$Provider/m_6966_ (Lnet/minecraft/core/particles/SimpleParticleType;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; net/minecraft/client/particle/HugeExplosionParticle$Provider/createParticle (Lnet/minecraft/core/particles/SimpleParticleType;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; +MD: net/minecraft/client/particle/HugeExplosionSeedParticle/ (Lnet/minecraft/client/multiplayer/ClientLevel;DDD)V net/minecraft/client/particle/HugeExplosionSeedParticle/ (Lnet/minecraft/client/multiplayer/ClientLevel;DDD)V +MD: net/minecraft/client/particle/HugeExplosionSeedParticle/m_5989_ ()V net/minecraft/client/particle/HugeExplosionSeedParticle/tick ()V +MD: net/minecraft/client/particle/HugeExplosionSeedParticle$Provider/ ()V net/minecraft/client/particle/HugeExplosionSeedParticle$Provider/ ()V +MD: net/minecraft/client/particle/HugeExplosionSeedParticle$Provider/m_6966_ (Lnet/minecraft/core/particles/ParticleOptions;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; net/minecraft/client/particle/HugeExplosionSeedParticle$Provider/createParticle (Lnet/minecraft/core/particles/ParticleOptions;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; +MD: net/minecraft/client/particle/HugeExplosionSeedParticle$Provider/m_6966_ (Lnet/minecraft/core/particles/SimpleParticleType;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; net/minecraft/client/particle/HugeExplosionSeedParticle$Provider/createParticle (Lnet/minecraft/core/particles/SimpleParticleType;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; +MD: net/minecraft/client/particle/ItemPickupParticle/ (Lnet/minecraft/client/renderer/entity/EntityRenderDispatcher;Lnet/minecraft/client/renderer/RenderBuffers;Lnet/minecraft/client/multiplayer/ClientLevel;Lnet/minecraft/world/entity/Entity;Lnet/minecraft/world/entity/Entity;Lnet/minecraft/world/phys/Vec3;)V net/minecraft/client/particle/ItemPickupParticle/ (Lnet/minecraft/client/renderer/entity/EntityRenderDispatcher;Lnet/minecraft/client/renderer/RenderBuffers;Lnet/minecraft/client/multiplayer/ClientLevel;Lnet/minecraft/world/entity/Entity;Lnet/minecraft/world/entity/Entity;Lnet/minecraft/world/phys/Vec3;)V +MD: net/minecraft/client/particle/ItemPickupParticle/ (Lnet/minecraft/client/renderer/entity/EntityRenderDispatcher;Lnet/minecraft/client/renderer/RenderBuffers;Lnet/minecraft/client/multiplayer/ClientLevel;Lnet/minecraft/world/entity/Entity;Lnet/minecraft/world/entity/Entity;)V net/minecraft/client/particle/ItemPickupParticle/ (Lnet/minecraft/client/renderer/entity/EntityRenderDispatcher;Lnet/minecraft/client/renderer/RenderBuffers;Lnet/minecraft/client/multiplayer/ClientLevel;Lnet/minecraft/world/entity/Entity;Lnet/minecraft/world/entity/Entity;)V +MD: net/minecraft/client/particle/ItemPickupParticle/m_107036_ (Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/world/entity/Entity; net/minecraft/client/particle/ItemPickupParticle/getSafeCopy (Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/world/entity/Entity; +MD: net/minecraft/client/particle/ItemPickupParticle/m_5744_ (Lcom/mojang/blaze3d/vertex/VertexConsumer;Lnet/minecraft/client/Camera;F)V net/minecraft/client/particle/ItemPickupParticle/render (Lcom/mojang/blaze3d/vertex/VertexConsumer;Lnet/minecraft/client/Camera;F)V +MD: net/minecraft/client/particle/ItemPickupParticle/m_5989_ ()V net/minecraft/client/particle/ItemPickupParticle/tick ()V +MD: net/minecraft/client/particle/ItemPickupParticle/m_7556_ ()Lnet/minecraft/client/particle/ParticleRenderType; net/minecraft/client/particle/ItemPickupParticle/getRenderType ()Lnet/minecraft/client/particle/ParticleRenderType; +MD: net/minecraft/client/particle/LargeSmokeParticle/ (Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDDLnet/minecraft/client/particle/SpriteSet;)V net/minecraft/client/particle/LargeSmokeParticle/ (Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDDLnet/minecraft/client/particle/SpriteSet;)V +MD: net/minecraft/client/particle/LargeSmokeParticle$Provider/ (Lnet/minecraft/client/particle/SpriteSet;)V net/minecraft/client/particle/LargeSmokeParticle$Provider/ (Lnet/minecraft/client/particle/SpriteSet;)V +MD: net/minecraft/client/particle/LargeSmokeParticle$Provider/m_6966_ (Lnet/minecraft/core/particles/ParticleOptions;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; net/minecraft/client/particle/LargeSmokeParticle$Provider/createParticle (Lnet/minecraft/core/particles/ParticleOptions;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; +MD: net/minecraft/client/particle/LargeSmokeParticle$Provider/m_6966_ (Lnet/minecraft/core/particles/SimpleParticleType;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; net/minecraft/client/particle/LargeSmokeParticle$Provider/createParticle (Lnet/minecraft/core/particles/SimpleParticleType;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; +MD: net/minecraft/client/particle/LavaParticle/ (Lnet/minecraft/client/multiplayer/ClientLevel;DDD)V net/minecraft/client/particle/LavaParticle/ (Lnet/minecraft/client/multiplayer/ClientLevel;DDD)V +MD: net/minecraft/client/particle/LavaParticle/m_5902_ (F)F net/minecraft/client/particle/LavaParticle/getQuadSize (F)F +MD: net/minecraft/client/particle/LavaParticle/m_5989_ ()V net/minecraft/client/particle/LavaParticle/tick ()V +MD: net/minecraft/client/particle/LavaParticle/m_6355_ (F)I net/minecraft/client/particle/LavaParticle/getLightColor (F)I +MD: net/minecraft/client/particle/LavaParticle/m_7556_ ()Lnet/minecraft/client/particle/ParticleRenderType; net/minecraft/client/particle/LavaParticle/getRenderType ()Lnet/minecraft/client/particle/ParticleRenderType; +MD: net/minecraft/client/particle/LavaParticle$Provider/ (Lnet/minecraft/client/particle/SpriteSet;)V net/minecraft/client/particle/LavaParticle$Provider/ (Lnet/minecraft/client/particle/SpriteSet;)V +MD: net/minecraft/client/particle/LavaParticle$Provider/m_6966_ (Lnet/minecraft/core/particles/ParticleOptions;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; net/minecraft/client/particle/LavaParticle$Provider/createParticle (Lnet/minecraft/core/particles/ParticleOptions;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; +MD: net/minecraft/client/particle/LavaParticle$Provider/m_6966_ (Lnet/minecraft/core/particles/SimpleParticleType;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; net/minecraft/client/particle/LavaParticle$Provider/createParticle (Lnet/minecraft/core/particles/SimpleParticleType;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; +MD: net/minecraft/client/particle/MobAppearanceParticle/ (Lnet/minecraft/client/multiplayer/ClientLevel;DDD)V net/minecraft/client/particle/MobAppearanceParticle/ (Lnet/minecraft/client/multiplayer/ClientLevel;DDD)V +MD: net/minecraft/client/particle/MobAppearanceParticle/m_5744_ (Lcom/mojang/blaze3d/vertex/VertexConsumer;Lnet/minecraft/client/Camera;F)V net/minecraft/client/particle/MobAppearanceParticle/render (Lcom/mojang/blaze3d/vertex/VertexConsumer;Lnet/minecraft/client/Camera;F)V +MD: net/minecraft/client/particle/MobAppearanceParticle/m_7556_ ()Lnet/minecraft/client/particle/ParticleRenderType; net/minecraft/client/particle/MobAppearanceParticle/getRenderType ()Lnet/minecraft/client/particle/ParticleRenderType; +MD: net/minecraft/client/particle/MobAppearanceParticle$Provider/ ()V net/minecraft/client/particle/MobAppearanceParticle$Provider/ ()V +MD: net/minecraft/client/particle/MobAppearanceParticle$Provider/m_6966_ (Lnet/minecraft/core/particles/ParticleOptions;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; net/minecraft/client/particle/MobAppearanceParticle$Provider/createParticle (Lnet/minecraft/core/particles/ParticleOptions;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; +MD: net/minecraft/client/particle/MobAppearanceParticle$Provider/m_6966_ (Lnet/minecraft/core/particles/SimpleParticleType;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; net/minecraft/client/particle/MobAppearanceParticle$Provider/createParticle (Lnet/minecraft/core/particles/SimpleParticleType;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; +MD: net/minecraft/client/particle/NoRenderParticle/ (Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)V net/minecraft/client/particle/NoRenderParticle/ (Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)V +MD: net/minecraft/client/particle/NoRenderParticle/ (Lnet/minecraft/client/multiplayer/ClientLevel;DDD)V net/minecraft/client/particle/NoRenderParticle/ (Lnet/minecraft/client/multiplayer/ClientLevel;DDD)V +MD: net/minecraft/client/particle/NoRenderParticle/m_5744_ (Lcom/mojang/blaze3d/vertex/VertexConsumer;Lnet/minecraft/client/Camera;F)V net/minecraft/client/particle/NoRenderParticle/render (Lcom/mojang/blaze3d/vertex/VertexConsumer;Lnet/minecraft/client/Camera;F)V +MD: net/minecraft/client/particle/NoRenderParticle/m_7556_ ()Lnet/minecraft/client/particle/ParticleRenderType; net/minecraft/client/particle/NoRenderParticle/getRenderType ()Lnet/minecraft/client/particle/ParticleRenderType; +MD: net/minecraft/client/particle/NoteParticle/ (Lnet/minecraft/client/multiplayer/ClientLevel;DDDD)V net/minecraft/client/particle/NoteParticle/ (Lnet/minecraft/client/multiplayer/ClientLevel;DDDD)V +MD: net/minecraft/client/particle/NoteParticle/m_5902_ (F)F net/minecraft/client/particle/NoteParticle/getQuadSize (F)F +MD: net/minecraft/client/particle/NoteParticle/m_7556_ ()Lnet/minecraft/client/particle/ParticleRenderType; net/minecraft/client/particle/NoteParticle/getRenderType ()Lnet/minecraft/client/particle/ParticleRenderType; +MD: net/minecraft/client/particle/NoteParticle$Provider/ (Lnet/minecraft/client/particle/SpriteSet;)V net/minecraft/client/particle/NoteParticle$Provider/ (Lnet/minecraft/client/particle/SpriteSet;)V +MD: net/minecraft/client/particle/NoteParticle$Provider/m_6966_ (Lnet/minecraft/core/particles/ParticleOptions;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; net/minecraft/client/particle/NoteParticle$Provider/createParticle (Lnet/minecraft/core/particles/ParticleOptions;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; +MD: net/minecraft/client/particle/NoteParticle$Provider/m_6966_ (Lnet/minecraft/core/particles/SimpleParticleType;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; net/minecraft/client/particle/NoteParticle$Provider/createParticle (Lnet/minecraft/core/particles/SimpleParticleType;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; +MD: net/minecraft/client/particle/Particle/ ()V net/minecraft/client/particle/Particle/ ()V +MD: net/minecraft/client/particle/Particle/ (Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)V net/minecraft/client/particle/Particle/ (Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)V +MD: net/minecraft/client/particle/Particle/ (Lnet/minecraft/client/multiplayer/ClientLevel;DDD)V net/minecraft/client/particle/Particle/ (Lnet/minecraft/client/multiplayer/ClientLevel;DDD)V +MD: net/minecraft/client/particle/Particle/m_107250_ (FF)V net/minecraft/client/particle/Particle/setSize (FF)V +MD: net/minecraft/client/particle/Particle/m_107253_ (FFF)V net/minecraft/client/particle/Particle/setColor (FFF)V +MD: net/minecraft/client/particle/Particle/m_107257_ (I)V net/minecraft/client/particle/Particle/setLifetime (I)V +MD: net/minecraft/client/particle/Particle/m_107259_ (Lnet/minecraft/world/phys/AABB;)V net/minecraft/client/particle/Particle/setBoundingBox (Lnet/minecraft/world/phys/AABB;)V +MD: net/minecraft/client/particle/Particle/m_107264_ (DDD)V net/minecraft/client/particle/Particle/setPos (DDD)V +MD: net/minecraft/client/particle/Particle/m_107268_ (F)Lnet/minecraft/client/particle/Particle; net/minecraft/client/particle/Particle/setPower (F)Lnet/minecraft/client/particle/Particle; +MD: net/minecraft/client/particle/Particle/m_107271_ (F)V net/minecraft/client/particle/Particle/setAlpha (F)V +MD: net/minecraft/client/particle/Particle/m_107273_ ()I net/minecraft/client/particle/Particle/getLifetime ()I +MD: net/minecraft/client/particle/Particle/m_107274_ ()V net/minecraft/client/particle/Particle/remove ()V +MD: net/minecraft/client/particle/Particle/m_107275_ ()V net/minecraft/client/particle/Particle/setLocationFromBoundingbox ()V +MD: net/minecraft/client/particle/Particle/m_107276_ ()Z net/minecraft/client/particle/Particle/isAlive ()Z +MD: net/minecraft/client/particle/Particle/m_107277_ ()Lnet/minecraft/world/phys/AABB; net/minecraft/client/particle/Particle/getBoundingBox ()Lnet/minecraft/world/phys/AABB; +MD: net/minecraft/client/particle/Particle/m_142654_ ()Ljava/util/Optional; net/minecraft/client/particle/Particle/getParticleGroup ()Ljava/util/Optional; +MD: net/minecraft/client/particle/Particle/m_172260_ (DDD)V net/minecraft/client/particle/Particle/setParticleSpeed (DDD)V +MD: net/minecraft/client/particle/Particle/m_5744_ (Lcom/mojang/blaze3d/vertex/VertexConsumer;Lnet/minecraft/client/Camera;F)V net/minecraft/client/particle/Particle/render (Lcom/mojang/blaze3d/vertex/VertexConsumer;Lnet/minecraft/client/Camera;F)V +MD: net/minecraft/client/particle/Particle/m_5989_ ()V net/minecraft/client/particle/Particle/tick ()V +MD: net/minecraft/client/particle/Particle/m_6257_ (DDD)V net/minecraft/client/particle/Particle/move (DDD)V +MD: net/minecraft/client/particle/Particle/m_6355_ (F)I net/minecraft/client/particle/Particle/getLightColor (F)I +MD: net/minecraft/client/particle/Particle/m_6569_ (F)Lnet/minecraft/client/particle/Particle; net/minecraft/client/particle/Particle/scale (F)Lnet/minecraft/client/particle/Particle; +MD: net/minecraft/client/particle/Particle/m_7556_ ()Lnet/minecraft/client/particle/ParticleRenderType; net/minecraft/client/particle/Particle/getRenderType ()Lnet/minecraft/client/particle/ParticleRenderType; +MD: net/minecraft/client/particle/Particle/toString ()Ljava/lang/String; net/minecraft/client/particle/Particle/toString ()Ljava/lang/String; +MD: net/minecraft/client/particle/ParticleDescription/ (Ljava/util/List;)V net/minecraft/client/particle/ParticleDescription/ (Ljava/util/List;)V +MD: net/minecraft/client/particle/ParticleDescription/m_107282_ ()Ljava/util/List; net/minecraft/client/particle/ParticleDescription/getTextures ()Ljava/util/List; +MD: net/minecraft/client/particle/ParticleDescription/m_107283_ (Lcom/google/gson/JsonElement;)Ljava/lang/String; net/minecraft/client/particle/ParticleDescription/lambda$fromJson$0 (Lcom/google/gson/JsonElement;)Ljava/lang/String; +MD: net/minecraft/client/particle/ParticleDescription/m_107285_ (Lcom/google/gson/JsonObject;)Lnet/minecraft/client/particle/ParticleDescription; net/minecraft/client/particle/ParticleDescription/fromJson (Lcom/google/gson/JsonObject;)Lnet/minecraft/client/particle/ParticleDescription; +MD: net/minecraft/client/particle/ParticleEngine/ ()V net/minecraft/client/particle/ParticleEngine/ ()V +MD: net/minecraft/client/particle/ParticleEngine/ (Lnet/minecraft/client/multiplayer/ClientLevel;Lnet/minecraft/client/renderer/texture/TextureManager;)V net/minecraft/client/particle/ParticleEngine/ (Lnet/minecraft/client/multiplayer/ClientLevel;Lnet/minecraft/client/renderer/texture/TextureManager;)V +MD: net/minecraft/client/particle/ParticleEngine/m_107301_ ()V net/minecraft/client/particle/ParticleEngine/close ()V +MD: net/minecraft/client/particle/ParticleEngine/m_107329_ (Lnet/minecraft/world/entity/Entity;Lnet/minecraft/core/particles/ParticleOptions;)V net/minecraft/client/particle/ParticleEngine/createTrackingEmitter (Lnet/minecraft/world/entity/Entity;Lnet/minecraft/core/particles/ParticleOptions;)V +MD: net/minecraft/client/particle/ParticleEngine/m_107332_ (Lnet/minecraft/world/entity/Entity;Lnet/minecraft/core/particles/ParticleOptions;I)V net/minecraft/client/particle/ParticleEngine/createTrackingEmitter (Lnet/minecraft/world/entity/Entity;Lnet/minecraft/core/particles/ParticleOptions;I)V +MD: net/minecraft/client/particle/ParticleEngine/m_107336_ (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource$BufferSource;Lnet/minecraft/client/renderer/LightTexture;Lnet/minecraft/client/Camera;F)V net/minecraft/client/particle/ParticleEngine/render (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource$BufferSource;Lnet/minecraft/client/renderer/LightTexture;Lnet/minecraft/client/Camera;F)V +MD: net/minecraft/client/particle/ParticleEngine/m_107342_ (Lnet/minecraft/client/multiplayer/ClientLevel;)V net/minecraft/client/particle/ParticleEngine/setLevel (Lnet/minecraft/client/multiplayer/ClientLevel;)V +MD: net/minecraft/client/particle/ParticleEngine/m_107344_ (Lnet/minecraft/client/particle/Particle;)V net/minecraft/client/particle/ParticleEngine/add (Lnet/minecraft/client/particle/Particle;)V +MD: net/minecraft/client/particle/ParticleEngine/m_107346_ (Lnet/minecraft/client/particle/ParticleRenderType;)Ljava/util/Queue; net/minecraft/client/particle/ParticleEngine/lambda$tick$11 (Lnet/minecraft/client/particle/ParticleRenderType;)Ljava/util/Queue; +MD: net/minecraft/client/particle/ParticleEngine/m_107355_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V net/minecraft/client/particle/ParticleEngine/destroy (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V +MD: net/minecraft/client/particle/ParticleEngine/m_107367_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Direction;)V net/minecraft/client/particle/ParticleEngine/crack (Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Direction;)V +MD: net/minecraft/client/particle/ParticleEngine/m_107370_ (Lnet/minecraft/core/particles/ParticleOptions;DDDDDD)Lnet/minecraft/client/particle/Particle; net/minecraft/client/particle/ParticleEngine/createParticle (Lnet/minecraft/core/particles/ParticleOptions;DDDDDD)Lnet/minecraft/client/particle/Particle; +MD: net/minecraft/client/particle/ParticleEngine/m_107378_ (Lnet/minecraft/core/particles/ParticleType;Lnet/minecraft/client/particle/ParticleEngine$SpriteParticleRegistration;)V net/minecraft/client/particle/ParticleEngine/register (Lnet/minecraft/core/particles/ParticleType;Lnet/minecraft/client/particle/ParticleEngine$SpriteParticleRegistration;)V +MD: net/minecraft/client/particle/ParticleEngine/m_107381_ (Lnet/minecraft/core/particles/ParticleType;Lnet/minecraft/client/particle/ParticleProvider;)V net/minecraft/client/particle/ParticleEngine/register (Lnet/minecraft/core/particles/ParticleType;Lnet/minecraft/client/particle/ParticleProvider;)V +MD: net/minecraft/client/particle/ParticleEngine/m_107384_ (Ljava/util/Collection;)V net/minecraft/client/particle/ParticleEngine/tickParticleList (Ljava/util/Collection;)V +MD: net/minecraft/client/particle/ParticleEngine/m_107388_ ()V net/minecraft/client/particle/ParticleEngine/tick ()V +MD: net/minecraft/client/particle/ParticleEngine/m_107393_ (Lnet/minecraft/client/particle/Particle;)V net/minecraft/client/particle/ParticleEngine/tickParticle (Lnet/minecraft/client/particle/Particle;)V +MD: net/minecraft/client/particle/ParticleEngine/m_107395_ (Lnet/minecraft/core/particles/ParticleOptions;DDDDDD)Lnet/minecraft/client/particle/Particle; net/minecraft/client/particle/ParticleEngine/makeParticle (Lnet/minecraft/core/particles/ParticleOptions;DDDDDD)Lnet/minecraft/client/particle/Particle; +MD: net/minecraft/client/particle/ParticleEngine/m_107403_ ()Ljava/lang/String; net/minecraft/client/particle/ParticleEngine/countParticles ()Ljava/lang/String; +MD: net/minecraft/client/particle/ParticleEngine/m_107404_ ()V net/minecraft/client/particle/ParticleEngine/registerProviders ()V +MD: net/minecraft/client/particle/ParticleEngine/m_172270_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;DDDDDD)V net/minecraft/client/particle/ParticleEngine/lambda$destroy$13 (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;DDDDDD)V +MD: net/minecraft/client/particle/ParticleEngine/m_172279_ (Lnet/minecraft/core/particles/ParticleGroup;)Z net/minecraft/client/particle/ParticleEngine/hasSpaceInParticleLimit (Lnet/minecraft/core/particles/ParticleGroup;)Z +MD: net/minecraft/client/particle/ParticleEngine/m_172281_ (Lnet/minecraft/core/particles/ParticleGroup;I)V net/minecraft/client/particle/ParticleEngine/updateCount (Lnet/minecraft/core/particles/ParticleGroup;I)V +MD: net/minecraft/client/particle/ParticleEngine/m_172288_ (Lnet/minecraft/core/particles/ParticleGroup;)V net/minecraft/client/particle/ParticleEngine/lambda$tickParticleList$12 (Lnet/minecraft/core/particles/ParticleGroup;)V +MD: net/minecraft/client/particle/ParticleEngine/m_244715_ (Lnet/minecraft/util/profiling/ProfilerFiller;Ljava/util/concurrent/CompletableFuture;Ljava/util/concurrent/CompletableFuture;Ljava/lang/Void;)V net/minecraft/client/particle/ParticleEngine/lambda$reload$9 (Lnet/minecraft/util/profiling/ProfilerFiller;Ljava/util/concurrent/CompletableFuture;Ljava/util/concurrent/CompletableFuture;Ljava/lang/Void;)V +MD: net/minecraft/client/particle/ParticleEngine/m_244716_ (Ljava/util/List;Ljava/util/concurrent/Executor;Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/server/packs/resources/Resource;)V net/minecraft/client/particle/ParticleEngine/lambda$reload$6 (Ljava/util/List;Ljava/util/concurrent/Executor;Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/server/packs/resources/Resource;)V +MD: net/minecraft/client/particle/ParticleEngine/m_244717_ (Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/server/packs/resources/Resource;)Lnet/minecraft/client/particle/ParticleEngine$1ParticleDefinition; net/minecraft/client/particle/ParticleEngine/lambda$reload$5 (Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/server/packs/resources/Resource;)Lnet/minecraft/client/particle/ParticleEngine$1ParticleDefinition; +MD: net/minecraft/client/particle/ParticleEngine/m_244719_ (Lnet/minecraft/client/renderer/texture/SpriteLoader$Preparations;Ljava/util/Set;Lnet/minecraft/client/renderer/texture/TextureAtlasSprite;Lnet/minecraft/client/particle/ParticleEngine$1ParticleDefinition;)V net/minecraft/client/particle/ParticleEngine/lambda$reload$8 (Lnet/minecraft/client/renderer/texture/SpriteLoader$Preparations;Ljava/util/Set;Lnet/minecraft/client/renderer/texture/TextureAtlasSprite;Lnet/minecraft/client/particle/ParticleEngine$1ParticleDefinition;)V +MD: net/minecraft/client/particle/ParticleEngine/m_244721_ (Ljava/util/concurrent/Executor;Ljava/util/Map;)Ljava/util/concurrent/CompletionStage; net/minecraft/client/particle/ParticleEngine/lambda$reload$7 (Ljava/util/concurrent/Executor;Ljava/util/Map;)Ljava/util/concurrent/CompletionStage; +MD: net/minecraft/client/particle/ParticleEngine/m_244722_ (Lnet/minecraft/server/packs/resources/ResourceManager;)Ljava/util/Map; net/minecraft/client/particle/ParticleEngine/lambda$reload$4 (Lnet/minecraft/server/packs/resources/ResourceManager;)Ljava/util/Map; +MD: net/minecraft/client/particle/ParticleEngine/m_245118_ (Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/server/packs/resources/Resource;)Ljava/util/Optional; net/minecraft/client/particle/ParticleEngine/loadParticleDescription (Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/server/packs/resources/Resource;)Ljava/util/Optional; +MD: net/minecraft/client/particle/ParticleEngine/m_263560_ ()V net/minecraft/client/particle/ParticleEngine/clearParticles ()V +MD: net/minecraft/client/particle/ParticleEngine/m_271560_ (Lnet/minecraft/client/particle/ParticleProvider$Sprite;Lnet/minecraft/client/particle/SpriteSet;)Lnet/minecraft/client/particle/ParticleProvider; net/minecraft/client/particle/ParticleEngine/lambda$register$3 (Lnet/minecraft/client/particle/ParticleProvider$Sprite;Lnet/minecraft/client/particle/SpriteSet;)Lnet/minecraft/client/particle/ParticleProvider; +MD: net/minecraft/client/particle/ParticleEngine/m_271561_ (Lnet/minecraft/client/particle/ParticleProvider$Sprite;Lnet/minecraft/client/particle/SpriteSet;Lnet/minecraft/core/particles/ParticleOptions;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; net/minecraft/client/particle/ParticleEngine/lambda$register$2 (Lnet/minecraft/client/particle/ParticleProvider$Sprite;Lnet/minecraft/client/particle/SpriteSet;Lnet/minecraft/core/particles/ParticleOptions;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; +MD: net/minecraft/client/particle/ParticleEngine/m_272137_ (Lnet/minecraft/core/particles/ParticleType;Lnet/minecraft/client/particle/ParticleProvider$Sprite;)V net/minecraft/client/particle/ParticleEngine/register (Lnet/minecraft/core/particles/ParticleType;Lnet/minecraft/client/particle/ParticleProvider$Sprite;)V +MD: net/minecraft/client/particle/ParticleEngine/m_276702_ (Lnet/minecraft/client/particle/SpriteSet;)Lnet/minecraft/client/particle/ParticleProvider; net/minecraft/client/particle/ParticleEngine/lambda$registerProviders$1 (Lnet/minecraft/client/particle/SpriteSet;)Lnet/minecraft/client/particle/ParticleProvider; +MD: net/minecraft/client/particle/ParticleEngine/m_276703_ (Lnet/minecraft/client/particle/SpriteSet;Lnet/minecraft/core/particles/SimpleParticleType;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; net/minecraft/client/particle/ParticleEngine/lambda$registerProviders$0 (Lnet/minecraft/client/particle/SpriteSet;Lnet/minecraft/core/particles/SimpleParticleType;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; +MD: net/minecraft/client/particle/ParticleEngine/m_287801_ (Lnet/minecraft/client/particle/ParticleRenderType;Ljava/util/Queue;)V net/minecraft/client/particle/ParticleEngine/lambda$tick$10 (Lnet/minecraft/client/particle/ParticleRenderType;Ljava/util/Queue;)V +MD: net/minecraft/client/particle/ParticleEngine/m_5540_ (Lnet/minecraft/server/packs/resources/PreparableReloadListener$PreparationBarrier;Lnet/minecraft/server/packs/resources/ResourceManager;Lnet/minecraft/util/profiling/ProfilerFiller;Lnet/minecraft/util/profiling/ProfilerFiller;Ljava/util/concurrent/Executor;Ljava/util/concurrent/Executor;)Ljava/util/concurrent/CompletableFuture; net/minecraft/client/particle/ParticleEngine/reload (Lnet/minecraft/server/packs/resources/PreparableReloadListener$PreparationBarrier;Lnet/minecraft/server/packs/resources/ResourceManager;Lnet/minecraft/util/profiling/ProfilerFiller;Lnet/minecraft/util/profiling/ProfilerFiller;Ljava/util/concurrent/Executor;Ljava/util/concurrent/Executor;)Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/client/particle/ParticleEngine$1ParticleDefinition/ (Lnet/minecraft/resources/ResourceLocation;Ljava/util/Optional;)V net/minecraft/client/particle/ParticleEngine$1ParticleDefinition/ (Lnet/minecraft/resources/ResourceLocation;Ljava/util/Optional;)V +MD: net/minecraft/client/particle/ParticleEngine$1ParticleDefinition/equals (Ljava/lang/Object;)Z net/minecraft/client/particle/ParticleEngine$1ParticleDefinition/equals (Ljava/lang/Object;)Z +MD: net/minecraft/client/particle/ParticleEngine$1ParticleDefinition/f_243741_ ()Ljava/util/Optional; net/minecraft/client/particle/ParticleEngine$1ParticleDefinition/sprites ()Ljava/util/Optional; +MD: net/minecraft/client/particle/ParticleEngine$1ParticleDefinition/f_244103_ ()Lnet/minecraft/resources/ResourceLocation; net/minecraft/client/particle/ParticleEngine$1ParticleDefinition/id ()Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/client/particle/ParticleEngine$1ParticleDefinition/hashCode ()I net/minecraft/client/particle/ParticleEngine$1ParticleDefinition/hashCode ()I +MD: net/minecraft/client/particle/ParticleEngine$1ParticleDefinition/toString ()Ljava/lang/String; net/minecraft/client/particle/ParticleEngine$1ParticleDefinition/toString ()Ljava/lang/String; +MD: net/minecraft/client/particle/ParticleEngine$MutableSpriteSet/ ()V net/minecraft/client/particle/ParticleEngine$MutableSpriteSet/ ()V +MD: net/minecraft/client/particle/ParticleEngine$MutableSpriteSet/m_107415_ (Ljava/util/List;)V net/minecraft/client/particle/ParticleEngine$MutableSpriteSet/rebind (Ljava/util/List;)V +MD: net/minecraft/client/particle/ParticleEngine$MutableSpriteSet/m_213979_ (Lnet/minecraft/util/RandomSource;)Lnet/minecraft/client/renderer/texture/TextureAtlasSprite; net/minecraft/client/particle/ParticleEngine$MutableSpriteSet/get (Lnet/minecraft/util/RandomSource;)Lnet/minecraft/client/renderer/texture/TextureAtlasSprite; +MD: net/minecraft/client/particle/ParticleEngine$MutableSpriteSet/m_5819_ (II)Lnet/minecraft/client/renderer/texture/TextureAtlasSprite; net/minecraft/client/particle/ParticleEngine$MutableSpriteSet/get (II)Lnet/minecraft/client/renderer/texture/TextureAtlasSprite; +MD: net/minecraft/client/particle/ParticleEngine$SpriteParticleRegistration/m_107419_ (Lnet/minecraft/client/particle/SpriteSet;)Lnet/minecraft/client/particle/ParticleProvider; net/minecraft/client/particle/ParticleEngine$SpriteParticleRegistration/create (Lnet/minecraft/client/particle/SpriteSet;)Lnet/minecraft/client/particle/ParticleProvider; +MD: net/minecraft/client/particle/ParticleProvider/m_6966_ (Lnet/minecraft/core/particles/ParticleOptions;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; net/minecraft/client/particle/ParticleProvider/createParticle (Lnet/minecraft/core/particles/ParticleOptions;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; +MD: net/minecraft/client/particle/ParticleProvider$Sprite/m_272232_ (Lnet/minecraft/core/particles/ParticleOptions;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/TextureSheetParticle; net/minecraft/client/particle/ParticleProvider$Sprite/createParticle (Lnet/minecraft/core/particles/ParticleOptions;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/TextureSheetParticle; +MD: net/minecraft/client/particle/ParticleRenderType/ ()V net/minecraft/client/particle/ParticleRenderType/ ()V +MD: net/minecraft/client/particle/ParticleRenderType/m_6294_ (Lcom/mojang/blaze3d/vertex/Tesselator;)V net/minecraft/client/particle/ParticleRenderType/end (Lcom/mojang/blaze3d/vertex/Tesselator;)V +MD: net/minecraft/client/particle/ParticleRenderType/m_6505_ (Lcom/mojang/blaze3d/vertex/BufferBuilder;Lnet/minecraft/client/renderer/texture/TextureManager;)V net/minecraft/client/particle/ParticleRenderType/begin (Lcom/mojang/blaze3d/vertex/BufferBuilder;Lnet/minecraft/client/renderer/texture/TextureManager;)V +MD: net/minecraft/client/particle/ParticleRenderType$1/ ()V net/minecraft/client/particle/ParticleRenderType$1/ ()V +MD: net/minecraft/client/particle/ParticleRenderType$1/m_6294_ (Lcom/mojang/blaze3d/vertex/Tesselator;)V net/minecraft/client/particle/ParticleRenderType$1/end (Lcom/mojang/blaze3d/vertex/Tesselator;)V +MD: net/minecraft/client/particle/ParticleRenderType$1/m_6505_ (Lcom/mojang/blaze3d/vertex/BufferBuilder;Lnet/minecraft/client/renderer/texture/TextureManager;)V net/minecraft/client/particle/ParticleRenderType$1/begin (Lcom/mojang/blaze3d/vertex/BufferBuilder;Lnet/minecraft/client/renderer/texture/TextureManager;)V +MD: net/minecraft/client/particle/ParticleRenderType$1/toString ()Ljava/lang/String; net/minecraft/client/particle/ParticleRenderType$1/toString ()Ljava/lang/String; +MD: net/minecraft/client/particle/ParticleRenderType$2/ ()V net/minecraft/client/particle/ParticleRenderType$2/ ()V +MD: net/minecraft/client/particle/ParticleRenderType$2/m_6294_ (Lcom/mojang/blaze3d/vertex/Tesselator;)V net/minecraft/client/particle/ParticleRenderType$2/end (Lcom/mojang/blaze3d/vertex/Tesselator;)V +MD: net/minecraft/client/particle/ParticleRenderType$2/m_6505_ (Lcom/mojang/blaze3d/vertex/BufferBuilder;Lnet/minecraft/client/renderer/texture/TextureManager;)V net/minecraft/client/particle/ParticleRenderType$2/begin (Lcom/mojang/blaze3d/vertex/BufferBuilder;Lnet/minecraft/client/renderer/texture/TextureManager;)V +MD: net/minecraft/client/particle/ParticleRenderType$2/toString ()Ljava/lang/String; net/minecraft/client/particle/ParticleRenderType$2/toString ()Ljava/lang/String; +MD: net/minecraft/client/particle/ParticleRenderType$3/ ()V net/minecraft/client/particle/ParticleRenderType$3/ ()V +MD: net/minecraft/client/particle/ParticleRenderType$3/m_6294_ (Lcom/mojang/blaze3d/vertex/Tesselator;)V net/minecraft/client/particle/ParticleRenderType$3/end (Lcom/mojang/blaze3d/vertex/Tesselator;)V +MD: net/minecraft/client/particle/ParticleRenderType$3/m_6505_ (Lcom/mojang/blaze3d/vertex/BufferBuilder;Lnet/minecraft/client/renderer/texture/TextureManager;)V net/minecraft/client/particle/ParticleRenderType$3/begin (Lcom/mojang/blaze3d/vertex/BufferBuilder;Lnet/minecraft/client/renderer/texture/TextureManager;)V +MD: net/minecraft/client/particle/ParticleRenderType$3/toString ()Ljava/lang/String; net/minecraft/client/particle/ParticleRenderType$3/toString ()Ljava/lang/String; +MD: net/minecraft/client/particle/ParticleRenderType$4/ ()V net/minecraft/client/particle/ParticleRenderType$4/ ()V +MD: net/minecraft/client/particle/ParticleRenderType$4/m_6294_ (Lcom/mojang/blaze3d/vertex/Tesselator;)V net/minecraft/client/particle/ParticleRenderType$4/end (Lcom/mojang/blaze3d/vertex/Tesselator;)V +MD: net/minecraft/client/particle/ParticleRenderType$4/m_6505_ (Lcom/mojang/blaze3d/vertex/BufferBuilder;Lnet/minecraft/client/renderer/texture/TextureManager;)V net/minecraft/client/particle/ParticleRenderType$4/begin (Lcom/mojang/blaze3d/vertex/BufferBuilder;Lnet/minecraft/client/renderer/texture/TextureManager;)V +MD: net/minecraft/client/particle/ParticleRenderType$4/toString ()Ljava/lang/String; net/minecraft/client/particle/ParticleRenderType$4/toString ()Ljava/lang/String; +MD: net/minecraft/client/particle/ParticleRenderType$5/ ()V net/minecraft/client/particle/ParticleRenderType$5/ ()V +MD: net/minecraft/client/particle/ParticleRenderType$5/m_6294_ (Lcom/mojang/blaze3d/vertex/Tesselator;)V net/minecraft/client/particle/ParticleRenderType$5/end (Lcom/mojang/blaze3d/vertex/Tesselator;)V +MD: net/minecraft/client/particle/ParticleRenderType$5/m_6505_ (Lcom/mojang/blaze3d/vertex/BufferBuilder;Lnet/minecraft/client/renderer/texture/TextureManager;)V net/minecraft/client/particle/ParticleRenderType$5/begin (Lcom/mojang/blaze3d/vertex/BufferBuilder;Lnet/minecraft/client/renderer/texture/TextureManager;)V +MD: net/minecraft/client/particle/ParticleRenderType$5/toString ()Ljava/lang/String; net/minecraft/client/particle/ParticleRenderType$5/toString ()Ljava/lang/String; +MD: net/minecraft/client/particle/ParticleRenderType$6/ ()V net/minecraft/client/particle/ParticleRenderType$6/ ()V +MD: net/minecraft/client/particle/ParticleRenderType$6/m_6294_ (Lcom/mojang/blaze3d/vertex/Tesselator;)V net/minecraft/client/particle/ParticleRenderType$6/end (Lcom/mojang/blaze3d/vertex/Tesselator;)V +MD: net/minecraft/client/particle/ParticleRenderType$6/m_6505_ (Lcom/mojang/blaze3d/vertex/BufferBuilder;Lnet/minecraft/client/renderer/texture/TextureManager;)V net/minecraft/client/particle/ParticleRenderType$6/begin (Lcom/mojang/blaze3d/vertex/BufferBuilder;Lnet/minecraft/client/renderer/texture/TextureManager;)V +MD: net/minecraft/client/particle/ParticleRenderType$6/toString ()Ljava/lang/String; net/minecraft/client/particle/ParticleRenderType$6/toString ()Ljava/lang/String; +MD: net/minecraft/client/particle/PlayerCloudParticle/ (Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDDLnet/minecraft/client/particle/SpriteSet;)V net/minecraft/client/particle/PlayerCloudParticle/ (Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDDLnet/minecraft/client/particle/SpriteSet;)V +MD: net/minecraft/client/particle/PlayerCloudParticle/m_5902_ (F)F net/minecraft/client/particle/PlayerCloudParticle/getQuadSize (F)F +MD: net/minecraft/client/particle/PlayerCloudParticle/m_5989_ ()V net/minecraft/client/particle/PlayerCloudParticle/tick ()V +MD: net/minecraft/client/particle/PlayerCloudParticle/m_7556_ ()Lnet/minecraft/client/particle/ParticleRenderType; net/minecraft/client/particle/PlayerCloudParticle/getRenderType ()Lnet/minecraft/client/particle/ParticleRenderType; +MD: net/minecraft/client/particle/PlayerCloudParticle$Provider/ (Lnet/minecraft/client/particle/SpriteSet;)V net/minecraft/client/particle/PlayerCloudParticle$Provider/ (Lnet/minecraft/client/particle/SpriteSet;)V +MD: net/minecraft/client/particle/PlayerCloudParticle$Provider/m_6966_ (Lnet/minecraft/core/particles/ParticleOptions;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; net/minecraft/client/particle/PlayerCloudParticle$Provider/createParticle (Lnet/minecraft/core/particles/ParticleOptions;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; +MD: net/minecraft/client/particle/PlayerCloudParticle$Provider/m_6966_ (Lnet/minecraft/core/particles/SimpleParticleType;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; net/minecraft/client/particle/PlayerCloudParticle$Provider/createParticle (Lnet/minecraft/core/particles/SimpleParticleType;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; +MD: net/minecraft/client/particle/PlayerCloudParticle$SneezeProvider/ (Lnet/minecraft/client/particle/SpriteSet;)V net/minecraft/client/particle/PlayerCloudParticle$SneezeProvider/ (Lnet/minecraft/client/particle/SpriteSet;)V +MD: net/minecraft/client/particle/PlayerCloudParticle$SneezeProvider/m_6966_ (Lnet/minecraft/core/particles/ParticleOptions;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; net/minecraft/client/particle/PlayerCloudParticle$SneezeProvider/createParticle (Lnet/minecraft/core/particles/ParticleOptions;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; +MD: net/minecraft/client/particle/PlayerCloudParticle$SneezeProvider/m_6966_ (Lnet/minecraft/core/particles/SimpleParticleType;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; net/minecraft/client/particle/PlayerCloudParticle$SneezeProvider/createParticle (Lnet/minecraft/core/particles/SimpleParticleType;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; +MD: net/minecraft/client/particle/PortalParticle/ (Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)V net/minecraft/client/particle/PortalParticle/ (Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)V +MD: net/minecraft/client/particle/PortalParticle/m_5902_ (F)F net/minecraft/client/particle/PortalParticle/getQuadSize (F)F +MD: net/minecraft/client/particle/PortalParticle/m_5989_ ()V net/minecraft/client/particle/PortalParticle/tick ()V +MD: net/minecraft/client/particle/PortalParticle/m_6257_ (DDD)V net/minecraft/client/particle/PortalParticle/move (DDD)V +MD: net/minecraft/client/particle/PortalParticle/m_6355_ (F)I net/minecraft/client/particle/PortalParticle/getLightColor (F)I +MD: net/minecraft/client/particle/PortalParticle/m_7556_ ()Lnet/minecraft/client/particle/ParticleRenderType; net/minecraft/client/particle/PortalParticle/getRenderType ()Lnet/minecraft/client/particle/ParticleRenderType; +MD: net/minecraft/client/particle/PortalParticle$Provider/ (Lnet/minecraft/client/particle/SpriteSet;)V net/minecraft/client/particle/PortalParticle$Provider/ (Lnet/minecraft/client/particle/SpriteSet;)V +MD: net/minecraft/client/particle/PortalParticle$Provider/m_6966_ (Lnet/minecraft/core/particles/ParticleOptions;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; net/minecraft/client/particle/PortalParticle$Provider/createParticle (Lnet/minecraft/core/particles/ParticleOptions;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; +MD: net/minecraft/client/particle/PortalParticle$Provider/m_6966_ (Lnet/minecraft/core/particles/SimpleParticleType;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; net/minecraft/client/particle/PortalParticle$Provider/createParticle (Lnet/minecraft/core/particles/SimpleParticleType;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; +MD: net/minecraft/client/particle/ReversePortalParticle/ (Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)V net/minecraft/client/particle/ReversePortalParticle/ (Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)V +MD: net/minecraft/client/particle/ReversePortalParticle/m_5902_ (F)F net/minecraft/client/particle/ReversePortalParticle/getQuadSize (F)F +MD: net/minecraft/client/particle/ReversePortalParticle/m_5989_ ()V net/minecraft/client/particle/ReversePortalParticle/tick ()V +MD: net/minecraft/client/particle/ReversePortalParticle$ReversePortalProvider/ (Lnet/minecraft/client/particle/SpriteSet;)V net/minecraft/client/particle/ReversePortalParticle$ReversePortalProvider/ (Lnet/minecraft/client/particle/SpriteSet;)V +MD: net/minecraft/client/particle/ReversePortalParticle$ReversePortalProvider/m_6966_ (Lnet/minecraft/core/particles/ParticleOptions;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; net/minecraft/client/particle/ReversePortalParticle$ReversePortalProvider/createParticle (Lnet/minecraft/core/particles/ParticleOptions;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; +MD: net/minecraft/client/particle/ReversePortalParticle$ReversePortalProvider/m_6966_ (Lnet/minecraft/core/particles/SimpleParticleType;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; net/minecraft/client/particle/ReversePortalParticle$ReversePortalProvider/createParticle (Lnet/minecraft/core/particles/SimpleParticleType;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; +MD: net/minecraft/client/particle/RisingParticle/ (Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)V net/minecraft/client/particle/RisingParticle/ (Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)V +MD: net/minecraft/client/particle/SculkChargeParticle/ (Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDDLnet/minecraft/client/particle/SpriteSet;)V net/minecraft/client/particle/SculkChargeParticle/ (Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDDLnet/minecraft/client/particle/SpriteSet;)V +MD: net/minecraft/client/particle/SculkChargeParticle/m_5989_ ()V net/minecraft/client/particle/SculkChargeParticle/tick ()V +MD: net/minecraft/client/particle/SculkChargeParticle/m_6355_ (F)I net/minecraft/client/particle/SculkChargeParticle/getLightColor (F)I +MD: net/minecraft/client/particle/SculkChargeParticle/m_7556_ ()Lnet/minecraft/client/particle/ParticleRenderType; net/minecraft/client/particle/SculkChargeParticle/getRenderType ()Lnet/minecraft/client/particle/ParticleRenderType; +MD: net/minecraft/client/particle/SculkChargeParticle$Provider/ (Lnet/minecraft/client/particle/SpriteSet;)V net/minecraft/client/particle/SculkChargeParticle$Provider/ (Lnet/minecraft/client/particle/SpriteSet;)V +MD: net/minecraft/client/particle/SculkChargeParticle$Provider/equals (Ljava/lang/Object;)Z net/minecraft/client/particle/SculkChargeParticle$Provider/equals (Ljava/lang/Object;)Z +MD: net/minecraft/client/particle/SculkChargeParticle$Provider/f_233904_ ()Lnet/minecraft/client/particle/SpriteSet; net/minecraft/client/particle/SculkChargeParticle$Provider/sprite ()Lnet/minecraft/client/particle/SpriteSet; +MD: net/minecraft/client/particle/SculkChargeParticle$Provider/hashCode ()I net/minecraft/client/particle/SculkChargeParticle$Provider/hashCode ()I +MD: net/minecraft/client/particle/SculkChargeParticle$Provider/m_6966_ (Lnet/minecraft/core/particles/SculkChargeParticleOptions;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; net/minecraft/client/particle/SculkChargeParticle$Provider/createParticle (Lnet/minecraft/core/particles/SculkChargeParticleOptions;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; +MD: net/minecraft/client/particle/SculkChargeParticle$Provider/m_6966_ (Lnet/minecraft/core/particles/ParticleOptions;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; net/minecraft/client/particle/SculkChargeParticle$Provider/createParticle (Lnet/minecraft/core/particles/ParticleOptions;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; +MD: net/minecraft/client/particle/SculkChargeParticle$Provider/toString ()Ljava/lang/String; net/minecraft/client/particle/SculkChargeParticle$Provider/toString ()Ljava/lang/String; +MD: net/minecraft/client/particle/SculkChargePopParticle/ (Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDDLnet/minecraft/client/particle/SpriteSet;)V net/minecraft/client/particle/SculkChargePopParticle/ (Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDDLnet/minecraft/client/particle/SpriteSet;)V +MD: net/minecraft/client/particle/SculkChargePopParticle/m_5989_ ()V net/minecraft/client/particle/SculkChargePopParticle/tick ()V +MD: net/minecraft/client/particle/SculkChargePopParticle/m_6355_ (F)I net/minecraft/client/particle/SculkChargePopParticle/getLightColor (F)I +MD: net/minecraft/client/particle/SculkChargePopParticle/m_7556_ ()Lnet/minecraft/client/particle/ParticleRenderType; net/minecraft/client/particle/SculkChargePopParticle/getRenderType ()Lnet/minecraft/client/particle/ParticleRenderType; +MD: net/minecraft/client/particle/SculkChargePopParticle$Provider/ (Lnet/minecraft/client/particle/SpriteSet;)V net/minecraft/client/particle/SculkChargePopParticle$Provider/ (Lnet/minecraft/client/particle/SpriteSet;)V +MD: net/minecraft/client/particle/SculkChargePopParticle$Provider/equals (Ljava/lang/Object;)Z net/minecraft/client/particle/SculkChargePopParticle$Provider/equals (Ljava/lang/Object;)Z +MD: net/minecraft/client/particle/SculkChargePopParticle$Provider/f_233944_ ()Lnet/minecraft/client/particle/SpriteSet; net/minecraft/client/particle/SculkChargePopParticle$Provider/sprite ()Lnet/minecraft/client/particle/SpriteSet; +MD: net/minecraft/client/particle/SculkChargePopParticle$Provider/hashCode ()I net/minecraft/client/particle/SculkChargePopParticle$Provider/hashCode ()I +MD: net/minecraft/client/particle/SculkChargePopParticle$Provider/m_6966_ (Lnet/minecraft/core/particles/ParticleOptions;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; net/minecraft/client/particle/SculkChargePopParticle$Provider/createParticle (Lnet/minecraft/core/particles/ParticleOptions;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; +MD: net/minecraft/client/particle/SculkChargePopParticle$Provider/m_6966_ (Lnet/minecraft/core/particles/SimpleParticleType;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; net/minecraft/client/particle/SculkChargePopParticle$Provider/createParticle (Lnet/minecraft/core/particles/SimpleParticleType;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; +MD: net/minecraft/client/particle/SculkChargePopParticle$Provider/toString ()Ljava/lang/String; net/minecraft/client/particle/SculkChargePopParticle$Provider/toString ()Ljava/lang/String; +MD: net/minecraft/client/particle/ShriekParticle/ ()V net/minecraft/client/particle/ShriekParticle/ ()V +MD: net/minecraft/client/particle/ShriekParticle/ (Lnet/minecraft/client/multiplayer/ClientLevel;DDDI)V net/minecraft/client/particle/ShriekParticle/ (Lnet/minecraft/client/multiplayer/ClientLevel;DDDI)V +MD: net/minecraft/client/particle/ShriekParticle/m_233988_ (Lcom/mojang/blaze3d/vertex/VertexConsumer;Lnet/minecraft/client/Camera;FLjava/util/function/Consumer;)V net/minecraft/client/particle/ShriekParticle/renderRotatedParticle (Lcom/mojang/blaze3d/vertex/VertexConsumer;Lnet/minecraft/client/Camera;FLjava/util/function/Consumer;)V +MD: net/minecraft/client/particle/ShriekParticle/m_252589_ (Lorg/joml/Quaternionf;)V net/minecraft/client/particle/ShriekParticle/lambda$render$1 (Lorg/joml/Quaternionf;)V +MD: net/minecraft/client/particle/ShriekParticle/m_252590_ (Lorg/joml/Quaternionf;)V net/minecraft/client/particle/ShriekParticle/lambda$render$0 (Lorg/joml/Quaternionf;)V +MD: net/minecraft/client/particle/ShriekParticle/m_252793_ (Lcom/mojang/blaze3d/vertex/VertexConsumer;Lorg/joml/Vector3f;FFI)V net/minecraft/client/particle/ShriekParticle/makeCornerVertex (Lcom/mojang/blaze3d/vertex/VertexConsumer;Lorg/joml/Vector3f;FFI)V +MD: net/minecraft/client/particle/ShriekParticle/m_5744_ (Lcom/mojang/blaze3d/vertex/VertexConsumer;Lnet/minecraft/client/Camera;F)V net/minecraft/client/particle/ShriekParticle/render (Lcom/mojang/blaze3d/vertex/VertexConsumer;Lnet/minecraft/client/Camera;F)V +MD: net/minecraft/client/particle/ShriekParticle/m_5902_ (F)F net/minecraft/client/particle/ShriekParticle/getQuadSize (F)F +MD: net/minecraft/client/particle/ShriekParticle/m_5989_ ()V net/minecraft/client/particle/ShriekParticle/tick ()V +MD: net/minecraft/client/particle/ShriekParticle/m_6355_ (F)I net/minecraft/client/particle/ShriekParticle/getLightColor (F)I +MD: net/minecraft/client/particle/ShriekParticle/m_7556_ ()Lnet/minecraft/client/particle/ParticleRenderType; net/minecraft/client/particle/ShriekParticle/getRenderType ()Lnet/minecraft/client/particle/ParticleRenderType; +MD: net/minecraft/client/particle/ShriekParticle$Provider/ (Lnet/minecraft/client/particle/SpriteSet;)V net/minecraft/client/particle/ShriekParticle$Provider/ (Lnet/minecraft/client/particle/SpriteSet;)V +MD: net/minecraft/client/particle/ShriekParticle$Provider/m_6966_ (Lnet/minecraft/core/particles/ShriekParticleOption;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; net/minecraft/client/particle/ShriekParticle$Provider/createParticle (Lnet/minecraft/core/particles/ShriekParticleOption;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; +MD: net/minecraft/client/particle/ShriekParticle$Provider/m_6966_ (Lnet/minecraft/core/particles/ParticleOptions;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; net/minecraft/client/particle/ShriekParticle$Provider/createParticle (Lnet/minecraft/core/particles/ParticleOptions;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; +MD: net/minecraft/client/particle/SimpleAnimatedParticle/ (Lnet/minecraft/client/multiplayer/ClientLevel;DDDLnet/minecraft/client/particle/SpriteSet;F)V net/minecraft/client/particle/SimpleAnimatedParticle/ (Lnet/minecraft/client/multiplayer/ClientLevel;DDDLnet/minecraft/client/particle/SpriteSet;F)V +MD: net/minecraft/client/particle/SimpleAnimatedParticle/m_107657_ (I)V net/minecraft/client/particle/SimpleAnimatedParticle/setColor (I)V +MD: net/minecraft/client/particle/SimpleAnimatedParticle/m_107659_ (I)V net/minecraft/client/particle/SimpleAnimatedParticle/setFadeColor (I)V +MD: net/minecraft/client/particle/SimpleAnimatedParticle/m_5989_ ()V net/minecraft/client/particle/SimpleAnimatedParticle/tick ()V +MD: net/minecraft/client/particle/SimpleAnimatedParticle/m_6355_ (F)I net/minecraft/client/particle/SimpleAnimatedParticle/getLightColor (F)I +MD: net/minecraft/client/particle/SimpleAnimatedParticle/m_7556_ ()Lnet/minecraft/client/particle/ParticleRenderType; net/minecraft/client/particle/SimpleAnimatedParticle/getRenderType ()Lnet/minecraft/client/particle/ParticleRenderType; +MD: net/minecraft/client/particle/SingleQuadParticle/ (Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)V net/minecraft/client/particle/SingleQuadParticle/ (Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)V +MD: net/minecraft/client/particle/SingleQuadParticle/ (Lnet/minecraft/client/multiplayer/ClientLevel;DDD)V net/minecraft/client/particle/SingleQuadParticle/ (Lnet/minecraft/client/multiplayer/ClientLevel;DDD)V +MD: net/minecraft/client/particle/SingleQuadParticle/m_5744_ (Lcom/mojang/blaze3d/vertex/VertexConsumer;Lnet/minecraft/client/Camera;F)V net/minecraft/client/particle/SingleQuadParticle/render (Lcom/mojang/blaze3d/vertex/VertexConsumer;Lnet/minecraft/client/Camera;F)V +MD: net/minecraft/client/particle/SingleQuadParticle/m_5902_ (F)F net/minecraft/client/particle/SingleQuadParticle/getQuadSize (F)F +MD: net/minecraft/client/particle/SingleQuadParticle/m_5950_ ()F net/minecraft/client/particle/SingleQuadParticle/getV1 ()F +MD: net/minecraft/client/particle/SingleQuadParticle/m_5951_ ()F net/minecraft/client/particle/SingleQuadParticle/getV0 ()F +MD: net/minecraft/client/particle/SingleQuadParticle/m_5952_ ()F net/minecraft/client/particle/SingleQuadParticle/getU1 ()F +MD: net/minecraft/client/particle/SingleQuadParticle/m_5970_ ()F net/minecraft/client/particle/SingleQuadParticle/getU0 ()F +MD: net/minecraft/client/particle/SingleQuadParticle/m_6569_ (F)Lnet/minecraft/client/particle/Particle; net/minecraft/client/particle/SingleQuadParticle/scale (F)Lnet/minecraft/client/particle/Particle; +MD: net/minecraft/client/particle/SmokeParticle/ (Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDDFLnet/minecraft/client/particle/SpriteSet;)V net/minecraft/client/particle/SmokeParticle/ (Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDDFLnet/minecraft/client/particle/SpriteSet;)V +MD: net/minecraft/client/particle/SmokeParticle$Provider/ (Lnet/minecraft/client/particle/SpriteSet;)V net/minecraft/client/particle/SmokeParticle$Provider/ (Lnet/minecraft/client/particle/SpriteSet;)V +MD: net/minecraft/client/particle/SmokeParticle$Provider/m_6966_ (Lnet/minecraft/core/particles/ParticleOptions;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; net/minecraft/client/particle/SmokeParticle$Provider/createParticle (Lnet/minecraft/core/particles/ParticleOptions;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; +MD: net/minecraft/client/particle/SmokeParticle$Provider/m_6966_ (Lnet/minecraft/core/particles/SimpleParticleType;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; net/minecraft/client/particle/SmokeParticle$Provider/createParticle (Lnet/minecraft/core/particles/SimpleParticleType;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; +MD: net/minecraft/client/particle/SnowflakeParticle/ (Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDDLnet/minecraft/client/particle/SpriteSet;)V net/minecraft/client/particle/SnowflakeParticle/ (Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDDLnet/minecraft/client/particle/SpriteSet;)V +MD: net/minecraft/client/particle/SnowflakeParticle/m_5989_ ()V net/minecraft/client/particle/SnowflakeParticle/tick ()V +MD: net/minecraft/client/particle/SnowflakeParticle/m_7556_ ()Lnet/minecraft/client/particle/ParticleRenderType; net/minecraft/client/particle/SnowflakeParticle/getRenderType ()Lnet/minecraft/client/particle/ParticleRenderType; +MD: net/minecraft/client/particle/SnowflakeParticle$Provider/ (Lnet/minecraft/client/particle/SpriteSet;)V net/minecraft/client/particle/SnowflakeParticle$Provider/ (Lnet/minecraft/client/particle/SpriteSet;)V +MD: net/minecraft/client/particle/SnowflakeParticle$Provider/m_6966_ (Lnet/minecraft/core/particles/ParticleOptions;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; net/minecraft/client/particle/SnowflakeParticle$Provider/createParticle (Lnet/minecraft/core/particles/ParticleOptions;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; +MD: net/minecraft/client/particle/SnowflakeParticle$Provider/m_6966_ (Lnet/minecraft/core/particles/SimpleParticleType;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; net/minecraft/client/particle/SnowflakeParticle$Provider/createParticle (Lnet/minecraft/core/particles/SimpleParticleType;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; +MD: net/minecraft/client/particle/SonicBoomParticle/ (Lnet/minecraft/client/multiplayer/ClientLevel;DDDDLnet/minecraft/client/particle/SpriteSet;)V net/minecraft/client/particle/SonicBoomParticle/ (Lnet/minecraft/client/multiplayer/ClientLevel;DDDDLnet/minecraft/client/particle/SpriteSet;)V +MD: net/minecraft/client/particle/SonicBoomParticle$Provider/ (Lnet/minecraft/client/particle/SpriteSet;)V net/minecraft/client/particle/SonicBoomParticle$Provider/ (Lnet/minecraft/client/particle/SpriteSet;)V +MD: net/minecraft/client/particle/SonicBoomParticle$Provider/m_6966_ (Lnet/minecraft/core/particles/ParticleOptions;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; net/minecraft/client/particle/SonicBoomParticle$Provider/createParticle (Lnet/minecraft/core/particles/ParticleOptions;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; +MD: net/minecraft/client/particle/SonicBoomParticle$Provider/m_6966_ (Lnet/minecraft/core/particles/SimpleParticleType;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; net/minecraft/client/particle/SonicBoomParticle$Provider/createParticle (Lnet/minecraft/core/particles/SimpleParticleType;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; +MD: net/minecraft/client/particle/SoulParticle/ (Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDDLnet/minecraft/client/particle/SpriteSet;)V net/minecraft/client/particle/SoulParticle/ (Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDDLnet/minecraft/client/particle/SpriteSet;)V +MD: net/minecraft/client/particle/SoulParticle/m_5989_ ()V net/minecraft/client/particle/SoulParticle/tick ()V +MD: net/minecraft/client/particle/SoulParticle/m_6355_ (F)I net/minecraft/client/particle/SoulParticle/getLightColor (F)I +MD: net/minecraft/client/particle/SoulParticle/m_7556_ ()Lnet/minecraft/client/particle/ParticleRenderType; net/minecraft/client/particle/SoulParticle/getRenderType ()Lnet/minecraft/client/particle/ParticleRenderType; +MD: net/minecraft/client/particle/SoulParticle$EmissiveProvider/ (Lnet/minecraft/client/particle/SpriteSet;)V net/minecraft/client/particle/SoulParticle$EmissiveProvider/ (Lnet/minecraft/client/particle/SpriteSet;)V +MD: net/minecraft/client/particle/SoulParticle$EmissiveProvider/m_6966_ (Lnet/minecraft/core/particles/ParticleOptions;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; net/minecraft/client/particle/SoulParticle$EmissiveProvider/createParticle (Lnet/minecraft/core/particles/ParticleOptions;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; +MD: net/minecraft/client/particle/SoulParticle$EmissiveProvider/m_6966_ (Lnet/minecraft/core/particles/SimpleParticleType;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; net/minecraft/client/particle/SoulParticle$EmissiveProvider/createParticle (Lnet/minecraft/core/particles/SimpleParticleType;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; +MD: net/minecraft/client/particle/SoulParticle$Provider/ (Lnet/minecraft/client/particle/SpriteSet;)V net/minecraft/client/particle/SoulParticle$Provider/ (Lnet/minecraft/client/particle/SpriteSet;)V +MD: net/minecraft/client/particle/SoulParticle$Provider/m_6966_ (Lnet/minecraft/core/particles/ParticleOptions;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; net/minecraft/client/particle/SoulParticle$Provider/createParticle (Lnet/minecraft/core/particles/ParticleOptions;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; +MD: net/minecraft/client/particle/SoulParticle$Provider/m_6966_ (Lnet/minecraft/core/particles/SimpleParticleType;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; net/minecraft/client/particle/SoulParticle$Provider/createParticle (Lnet/minecraft/core/particles/SimpleParticleType;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; +MD: net/minecraft/client/particle/SpellParticle/ ()V net/minecraft/client/particle/SpellParticle/ ()V +MD: net/minecraft/client/particle/SpellParticle/ (Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDDLnet/minecraft/client/particle/SpriteSet;)V net/minecraft/client/particle/SpellParticle/ (Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDDLnet/minecraft/client/particle/SpriteSet;)V +MD: net/minecraft/client/particle/SpellParticle/m_172323_ ()Z net/minecraft/client/particle/SpellParticle/isCloseToScopingPlayer ()Z +MD: net/minecraft/client/particle/SpellParticle/m_5989_ ()V net/minecraft/client/particle/SpellParticle/tick ()V +MD: net/minecraft/client/particle/SpellParticle/m_7556_ ()Lnet/minecraft/client/particle/ParticleRenderType; net/minecraft/client/particle/SpellParticle/getRenderType ()Lnet/minecraft/client/particle/ParticleRenderType; +MD: net/minecraft/client/particle/SpellParticle$AmbientMobProvider/ (Lnet/minecraft/client/particle/SpriteSet;)V net/minecraft/client/particle/SpellParticle$AmbientMobProvider/ (Lnet/minecraft/client/particle/SpriteSet;)V +MD: net/minecraft/client/particle/SpellParticle$AmbientMobProvider/m_6966_ (Lnet/minecraft/core/particles/ParticleOptions;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; net/minecraft/client/particle/SpellParticle$AmbientMobProvider/createParticle (Lnet/minecraft/core/particles/ParticleOptions;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; +MD: net/minecraft/client/particle/SpellParticle$AmbientMobProvider/m_6966_ (Lnet/minecraft/core/particles/SimpleParticleType;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; net/minecraft/client/particle/SpellParticle$AmbientMobProvider/createParticle (Lnet/minecraft/core/particles/SimpleParticleType;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; +MD: net/minecraft/client/particle/SpellParticle$InstantProvider/ (Lnet/minecraft/client/particle/SpriteSet;)V net/minecraft/client/particle/SpellParticle$InstantProvider/ (Lnet/minecraft/client/particle/SpriteSet;)V +MD: net/minecraft/client/particle/SpellParticle$InstantProvider/m_6966_ (Lnet/minecraft/core/particles/ParticleOptions;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; net/minecraft/client/particle/SpellParticle$InstantProvider/createParticle (Lnet/minecraft/core/particles/ParticleOptions;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; +MD: net/minecraft/client/particle/SpellParticle$InstantProvider/m_6966_ (Lnet/minecraft/core/particles/SimpleParticleType;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; net/minecraft/client/particle/SpellParticle$InstantProvider/createParticle (Lnet/minecraft/core/particles/SimpleParticleType;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; +MD: net/minecraft/client/particle/SpellParticle$MobProvider/ (Lnet/minecraft/client/particle/SpriteSet;)V net/minecraft/client/particle/SpellParticle$MobProvider/ (Lnet/minecraft/client/particle/SpriteSet;)V +MD: net/minecraft/client/particle/SpellParticle$MobProvider/m_6966_ (Lnet/minecraft/core/particles/ParticleOptions;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; net/minecraft/client/particle/SpellParticle$MobProvider/createParticle (Lnet/minecraft/core/particles/ParticleOptions;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; +MD: net/minecraft/client/particle/SpellParticle$MobProvider/m_6966_ (Lnet/minecraft/core/particles/SimpleParticleType;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; net/minecraft/client/particle/SpellParticle$MobProvider/createParticle (Lnet/minecraft/core/particles/SimpleParticleType;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; +MD: net/minecraft/client/particle/SpellParticle$Provider/ (Lnet/minecraft/client/particle/SpriteSet;)V net/minecraft/client/particle/SpellParticle$Provider/ (Lnet/minecraft/client/particle/SpriteSet;)V +MD: net/minecraft/client/particle/SpellParticle$Provider/m_6966_ (Lnet/minecraft/core/particles/ParticleOptions;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; net/minecraft/client/particle/SpellParticle$Provider/createParticle (Lnet/minecraft/core/particles/ParticleOptions;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; +MD: net/minecraft/client/particle/SpellParticle$Provider/m_6966_ (Lnet/minecraft/core/particles/SimpleParticleType;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; net/minecraft/client/particle/SpellParticle$Provider/createParticle (Lnet/minecraft/core/particles/SimpleParticleType;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; +MD: net/minecraft/client/particle/SpellParticle$WitchProvider/ (Lnet/minecraft/client/particle/SpriteSet;)V net/minecraft/client/particle/SpellParticle$WitchProvider/ (Lnet/minecraft/client/particle/SpriteSet;)V +MD: net/minecraft/client/particle/SpellParticle$WitchProvider/m_6966_ (Lnet/minecraft/core/particles/ParticleOptions;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; net/minecraft/client/particle/SpellParticle$WitchProvider/createParticle (Lnet/minecraft/core/particles/ParticleOptions;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; +MD: net/minecraft/client/particle/SpellParticle$WitchProvider/m_6966_ (Lnet/minecraft/core/particles/SimpleParticleType;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; net/minecraft/client/particle/SpellParticle$WitchProvider/createParticle (Lnet/minecraft/core/particles/SimpleParticleType;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; +MD: net/minecraft/client/particle/SpitParticle/ (Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDDLnet/minecraft/client/particle/SpriteSet;)V net/minecraft/client/particle/SpitParticle/ (Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDDLnet/minecraft/client/particle/SpriteSet;)V +MD: net/minecraft/client/particle/SpitParticle$Provider/ (Lnet/minecraft/client/particle/SpriteSet;)V net/minecraft/client/particle/SpitParticle$Provider/ (Lnet/minecraft/client/particle/SpriteSet;)V +MD: net/minecraft/client/particle/SpitParticle$Provider/m_6966_ (Lnet/minecraft/core/particles/ParticleOptions;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; net/minecraft/client/particle/SpitParticle$Provider/createParticle (Lnet/minecraft/core/particles/ParticleOptions;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; +MD: net/minecraft/client/particle/SpitParticle$Provider/m_6966_ (Lnet/minecraft/core/particles/SimpleParticleType;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; net/minecraft/client/particle/SpitParticle$Provider/createParticle (Lnet/minecraft/core/particles/SimpleParticleType;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; +MD: net/minecraft/client/particle/SplashParticle/ (Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)V net/minecraft/client/particle/SplashParticle/ (Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)V +MD: net/minecraft/client/particle/SplashParticle$Provider/ (Lnet/minecraft/client/particle/SpriteSet;)V net/minecraft/client/particle/SplashParticle$Provider/ (Lnet/minecraft/client/particle/SpriteSet;)V +MD: net/minecraft/client/particle/SplashParticle$Provider/m_6966_ (Lnet/minecraft/core/particles/ParticleOptions;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; net/minecraft/client/particle/SplashParticle$Provider/createParticle (Lnet/minecraft/core/particles/ParticleOptions;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; +MD: net/minecraft/client/particle/SplashParticle$Provider/m_6966_ (Lnet/minecraft/core/particles/SimpleParticleType;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; net/minecraft/client/particle/SplashParticle$Provider/createParticle (Lnet/minecraft/core/particles/SimpleParticleType;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; +MD: net/minecraft/client/particle/SpriteSet/m_213979_ (Lnet/minecraft/util/RandomSource;)Lnet/minecraft/client/renderer/texture/TextureAtlasSprite; net/minecraft/client/particle/SpriteSet/get (Lnet/minecraft/util/RandomSource;)Lnet/minecraft/client/renderer/texture/TextureAtlasSprite; +MD: net/minecraft/client/particle/SpriteSet/m_5819_ (II)Lnet/minecraft/client/renderer/texture/TextureAtlasSprite; net/minecraft/client/particle/SpriteSet/get (II)Lnet/minecraft/client/renderer/texture/TextureAtlasSprite; +MD: net/minecraft/client/particle/SquidInkParticle/ (Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDDILnet/minecraft/client/particle/SpriteSet;)V net/minecraft/client/particle/SquidInkParticle/ (Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDDILnet/minecraft/client/particle/SpriteSet;)V +MD: net/minecraft/client/particle/SquidInkParticle/m_5989_ ()V net/minecraft/client/particle/SquidInkParticle/tick ()V +MD: net/minecraft/client/particle/SquidInkParticle$GlowInkProvider/ (Lnet/minecraft/client/particle/SpriteSet;)V net/minecraft/client/particle/SquidInkParticle$GlowInkProvider/ (Lnet/minecraft/client/particle/SpriteSet;)V +MD: net/minecraft/client/particle/SquidInkParticle$GlowInkProvider/m_6966_ (Lnet/minecraft/core/particles/ParticleOptions;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; net/minecraft/client/particle/SquidInkParticle$GlowInkProvider/createParticle (Lnet/minecraft/core/particles/ParticleOptions;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; +MD: net/minecraft/client/particle/SquidInkParticle$GlowInkProvider/m_6966_ (Lnet/minecraft/core/particles/SimpleParticleType;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; net/minecraft/client/particle/SquidInkParticle$GlowInkProvider/createParticle (Lnet/minecraft/core/particles/SimpleParticleType;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; +MD: net/minecraft/client/particle/SquidInkParticle$Provider/ (Lnet/minecraft/client/particle/SpriteSet;)V net/minecraft/client/particle/SquidInkParticle$Provider/ (Lnet/minecraft/client/particle/SpriteSet;)V +MD: net/minecraft/client/particle/SquidInkParticle$Provider/m_6966_ (Lnet/minecraft/core/particles/ParticleOptions;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; net/minecraft/client/particle/SquidInkParticle$Provider/createParticle (Lnet/minecraft/core/particles/ParticleOptions;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; +MD: net/minecraft/client/particle/SquidInkParticle$Provider/m_6966_ (Lnet/minecraft/core/particles/SimpleParticleType;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; net/minecraft/client/particle/SquidInkParticle$Provider/createParticle (Lnet/minecraft/core/particles/SimpleParticleType;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; +MD: net/minecraft/client/particle/SuspendedParticle/ (Lnet/minecraft/client/multiplayer/ClientLevel;Lnet/minecraft/client/particle/SpriteSet;DDDDDD)V net/minecraft/client/particle/SuspendedParticle/ (Lnet/minecraft/client/multiplayer/ClientLevel;Lnet/minecraft/client/particle/SpriteSet;DDDDDD)V +MD: net/minecraft/client/particle/SuspendedParticle/ (Lnet/minecraft/client/multiplayer/ClientLevel;Lnet/minecraft/client/particle/SpriteSet;DDD)V net/minecraft/client/particle/SuspendedParticle/ (Lnet/minecraft/client/multiplayer/ClientLevel;Lnet/minecraft/client/particle/SpriteSet;DDD)V +MD: net/minecraft/client/particle/SuspendedParticle/m_7556_ ()Lnet/minecraft/client/particle/ParticleRenderType; net/minecraft/client/particle/SuspendedParticle/getRenderType ()Lnet/minecraft/client/particle/ParticleRenderType; +MD: net/minecraft/client/particle/SuspendedParticle$CrimsonSporeProvider/ (Lnet/minecraft/client/particle/SpriteSet;)V net/minecraft/client/particle/SuspendedParticle$CrimsonSporeProvider/ (Lnet/minecraft/client/particle/SpriteSet;)V +MD: net/minecraft/client/particle/SuspendedParticle$CrimsonSporeProvider/m_6966_ (Lnet/minecraft/core/particles/ParticleOptions;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; net/minecraft/client/particle/SuspendedParticle$CrimsonSporeProvider/createParticle (Lnet/minecraft/core/particles/ParticleOptions;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; +MD: net/minecraft/client/particle/SuspendedParticle$CrimsonSporeProvider/m_6966_ (Lnet/minecraft/core/particles/SimpleParticleType;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; net/minecraft/client/particle/SuspendedParticle$CrimsonSporeProvider/createParticle (Lnet/minecraft/core/particles/SimpleParticleType;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; +MD: net/minecraft/client/particle/SuspendedParticle$SporeBlossomAirProvider/ (Lnet/minecraft/client/particle/SpriteSet;)V net/minecraft/client/particle/SuspendedParticle$SporeBlossomAirProvider/ (Lnet/minecraft/client/particle/SpriteSet;)V +MD: net/minecraft/client/particle/SuspendedParticle$SporeBlossomAirProvider/m_6966_ (Lnet/minecraft/core/particles/ParticleOptions;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; net/minecraft/client/particle/SuspendedParticle$SporeBlossomAirProvider/createParticle (Lnet/minecraft/core/particles/ParticleOptions;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; +MD: net/minecraft/client/particle/SuspendedParticle$SporeBlossomAirProvider/m_6966_ (Lnet/minecraft/core/particles/SimpleParticleType;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; net/minecraft/client/particle/SuspendedParticle$SporeBlossomAirProvider/createParticle (Lnet/minecraft/core/particles/SimpleParticleType;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; +MD: net/minecraft/client/particle/SuspendedParticle$SporeBlossomAirProvider$1/ (Lnet/minecraft/client/particle/SuspendedParticle$SporeBlossomAirProvider;Lnet/minecraft/client/multiplayer/ClientLevel;Lnet/minecraft/client/particle/SpriteSet;DDDDDD)V net/minecraft/client/particle/SuspendedParticle$SporeBlossomAirProvider$1/ (Lnet/minecraft/client/particle/SuspendedParticle$SporeBlossomAirProvider;Lnet/minecraft/client/multiplayer/ClientLevel;Lnet/minecraft/client/particle/SpriteSet;DDDDDD)V +MD: net/minecraft/client/particle/SuspendedParticle$SporeBlossomAirProvider$1/m_142654_ ()Ljava/util/Optional; net/minecraft/client/particle/SuspendedParticle$SporeBlossomAirProvider$1/getParticleGroup ()Ljava/util/Optional; +MD: net/minecraft/client/particle/SuspendedParticle$UnderwaterProvider/ (Lnet/minecraft/client/particle/SpriteSet;)V net/minecraft/client/particle/SuspendedParticle$UnderwaterProvider/ (Lnet/minecraft/client/particle/SpriteSet;)V +MD: net/minecraft/client/particle/SuspendedParticle$UnderwaterProvider/m_6966_ (Lnet/minecraft/core/particles/ParticleOptions;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; net/minecraft/client/particle/SuspendedParticle$UnderwaterProvider/createParticle (Lnet/minecraft/core/particles/ParticleOptions;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; +MD: net/minecraft/client/particle/SuspendedParticle$UnderwaterProvider/m_6966_ (Lnet/minecraft/core/particles/SimpleParticleType;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; net/minecraft/client/particle/SuspendedParticle$UnderwaterProvider/createParticle (Lnet/minecraft/core/particles/SimpleParticleType;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; +MD: net/minecraft/client/particle/SuspendedParticle$WarpedSporeProvider/ (Lnet/minecraft/client/particle/SpriteSet;)V net/minecraft/client/particle/SuspendedParticle$WarpedSporeProvider/ (Lnet/minecraft/client/particle/SpriteSet;)V +MD: net/minecraft/client/particle/SuspendedParticle$WarpedSporeProvider/m_6966_ (Lnet/minecraft/core/particles/ParticleOptions;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; net/minecraft/client/particle/SuspendedParticle$WarpedSporeProvider/createParticle (Lnet/minecraft/core/particles/ParticleOptions;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; +MD: net/minecraft/client/particle/SuspendedParticle$WarpedSporeProvider/m_6966_ (Lnet/minecraft/core/particles/SimpleParticleType;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; net/minecraft/client/particle/SuspendedParticle$WarpedSporeProvider/createParticle (Lnet/minecraft/core/particles/SimpleParticleType;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; +MD: net/minecraft/client/particle/SuspendedTownParticle/ (Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)V net/minecraft/client/particle/SuspendedTownParticle/ (Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)V +MD: net/minecraft/client/particle/SuspendedTownParticle/m_5989_ ()V net/minecraft/client/particle/SuspendedTownParticle/tick ()V +MD: net/minecraft/client/particle/SuspendedTownParticle/m_6257_ (DDD)V net/minecraft/client/particle/SuspendedTownParticle/move (DDD)V +MD: net/minecraft/client/particle/SuspendedTownParticle/m_7556_ ()Lnet/minecraft/client/particle/ParticleRenderType; net/minecraft/client/particle/SuspendedTownParticle/getRenderType ()Lnet/minecraft/client/particle/ParticleRenderType; +MD: net/minecraft/client/particle/SuspendedTownParticle$ComposterFillProvider/ (Lnet/minecraft/client/particle/SpriteSet;)V net/minecraft/client/particle/SuspendedTownParticle$ComposterFillProvider/ (Lnet/minecraft/client/particle/SpriteSet;)V +MD: net/minecraft/client/particle/SuspendedTownParticle$ComposterFillProvider/m_6966_ (Lnet/minecraft/core/particles/ParticleOptions;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; net/minecraft/client/particle/SuspendedTownParticle$ComposterFillProvider/createParticle (Lnet/minecraft/core/particles/ParticleOptions;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; +MD: net/minecraft/client/particle/SuspendedTownParticle$ComposterFillProvider/m_6966_ (Lnet/minecraft/core/particles/SimpleParticleType;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; net/minecraft/client/particle/SuspendedTownParticle$ComposterFillProvider/createParticle (Lnet/minecraft/core/particles/SimpleParticleType;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; +MD: net/minecraft/client/particle/SuspendedTownParticle$DolphinSpeedProvider/ (Lnet/minecraft/client/particle/SpriteSet;)V net/minecraft/client/particle/SuspendedTownParticle$DolphinSpeedProvider/ (Lnet/minecraft/client/particle/SpriteSet;)V +MD: net/minecraft/client/particle/SuspendedTownParticle$DolphinSpeedProvider/m_6966_ (Lnet/minecraft/core/particles/ParticleOptions;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; net/minecraft/client/particle/SuspendedTownParticle$DolphinSpeedProvider/createParticle (Lnet/minecraft/core/particles/ParticleOptions;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; +MD: net/minecraft/client/particle/SuspendedTownParticle$DolphinSpeedProvider/m_6966_ (Lnet/minecraft/core/particles/SimpleParticleType;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; net/minecraft/client/particle/SuspendedTownParticle$DolphinSpeedProvider/createParticle (Lnet/minecraft/core/particles/SimpleParticleType;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; +MD: net/minecraft/client/particle/SuspendedTownParticle$EggCrackProvider/ (Lnet/minecraft/client/particle/SpriteSet;)V net/minecraft/client/particle/SuspendedTownParticle$EggCrackProvider/ (Lnet/minecraft/client/particle/SpriteSet;)V +MD: net/minecraft/client/particle/SuspendedTownParticle$EggCrackProvider/m_6966_ (Lnet/minecraft/core/particles/ParticleOptions;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; net/minecraft/client/particle/SuspendedTownParticle$EggCrackProvider/createParticle (Lnet/minecraft/core/particles/ParticleOptions;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; +MD: net/minecraft/client/particle/SuspendedTownParticle$EggCrackProvider/m_6966_ (Lnet/minecraft/core/particles/SimpleParticleType;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; net/minecraft/client/particle/SuspendedTownParticle$EggCrackProvider/createParticle (Lnet/minecraft/core/particles/SimpleParticleType;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; +MD: net/minecraft/client/particle/SuspendedTownParticle$HappyVillagerProvider/ (Lnet/minecraft/client/particle/SpriteSet;)V net/minecraft/client/particle/SuspendedTownParticle$HappyVillagerProvider/ (Lnet/minecraft/client/particle/SpriteSet;)V +MD: net/minecraft/client/particle/SuspendedTownParticle$HappyVillagerProvider/m_6966_ (Lnet/minecraft/core/particles/ParticleOptions;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; net/minecraft/client/particle/SuspendedTownParticle$HappyVillagerProvider/createParticle (Lnet/minecraft/core/particles/ParticleOptions;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; +MD: net/minecraft/client/particle/SuspendedTownParticle$HappyVillagerProvider/m_6966_ (Lnet/minecraft/core/particles/SimpleParticleType;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; net/minecraft/client/particle/SuspendedTownParticle$HappyVillagerProvider/createParticle (Lnet/minecraft/core/particles/SimpleParticleType;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; +MD: net/minecraft/client/particle/SuspendedTownParticle$Provider/ (Lnet/minecraft/client/particle/SpriteSet;)V net/minecraft/client/particle/SuspendedTownParticle$Provider/ (Lnet/minecraft/client/particle/SpriteSet;)V +MD: net/minecraft/client/particle/SuspendedTownParticle$Provider/m_6966_ (Lnet/minecraft/core/particles/ParticleOptions;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; net/minecraft/client/particle/SuspendedTownParticle$Provider/createParticle (Lnet/minecraft/core/particles/ParticleOptions;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; +MD: net/minecraft/client/particle/SuspendedTownParticle$Provider/m_6966_ (Lnet/minecraft/core/particles/SimpleParticleType;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; net/minecraft/client/particle/SuspendedTownParticle$Provider/createParticle (Lnet/minecraft/core/particles/SimpleParticleType;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; +MD: net/minecraft/client/particle/TerrainParticle/ (Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDDLnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/BlockPos;)V net/minecraft/client/particle/TerrainParticle/ (Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDDLnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/client/particle/TerrainParticle/ (Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDDLnet/minecraft/world/level/block/state/BlockState;)V net/minecraft/client/particle/TerrainParticle/ (Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDDLnet/minecraft/world/level/block/state/BlockState;)V +MD: net/minecraft/client/particle/TerrainParticle/m_5950_ ()F net/minecraft/client/particle/TerrainParticle/getV1 ()F +MD: net/minecraft/client/particle/TerrainParticle/m_5951_ ()F net/minecraft/client/particle/TerrainParticle/getV0 ()F +MD: net/minecraft/client/particle/TerrainParticle/m_5952_ ()F net/minecraft/client/particle/TerrainParticle/getU1 ()F +MD: net/minecraft/client/particle/TerrainParticle/m_5970_ ()F net/minecraft/client/particle/TerrainParticle/getU0 ()F +MD: net/minecraft/client/particle/TerrainParticle/m_6355_ (F)I net/minecraft/client/particle/TerrainParticle/getLightColor (F)I +MD: net/minecraft/client/particle/TerrainParticle/m_7556_ ()Lnet/minecraft/client/particle/ParticleRenderType; net/minecraft/client/particle/TerrainParticle/getRenderType ()Lnet/minecraft/client/particle/ParticleRenderType; +MD: net/minecraft/client/particle/TerrainParticle$Provider/ ()V net/minecraft/client/particle/TerrainParticle$Provider/ ()V +MD: net/minecraft/client/particle/TerrainParticle$Provider/m_6966_ (Lnet/minecraft/core/particles/BlockParticleOption;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; net/minecraft/client/particle/TerrainParticle$Provider/createParticle (Lnet/minecraft/core/particles/BlockParticleOption;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; +MD: net/minecraft/client/particle/TerrainParticle$Provider/m_6966_ (Lnet/minecraft/core/particles/ParticleOptions;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; net/minecraft/client/particle/TerrainParticle$Provider/createParticle (Lnet/minecraft/core/particles/ParticleOptions;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; +MD: net/minecraft/client/particle/TextureSheetParticle/ (Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)V net/minecraft/client/particle/TextureSheetParticle/ (Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)V +MD: net/minecraft/client/particle/TextureSheetParticle/ (Lnet/minecraft/client/multiplayer/ClientLevel;DDD)V net/minecraft/client/particle/TextureSheetParticle/ (Lnet/minecraft/client/multiplayer/ClientLevel;DDD)V +MD: net/minecraft/client/particle/TextureSheetParticle/m_108335_ (Lnet/minecraft/client/particle/SpriteSet;)V net/minecraft/client/particle/TextureSheetParticle/pickSprite (Lnet/minecraft/client/particle/SpriteSet;)V +MD: net/minecraft/client/particle/TextureSheetParticle/m_108337_ (Lnet/minecraft/client/renderer/texture/TextureAtlasSprite;)V net/minecraft/client/particle/TextureSheetParticle/setSprite (Lnet/minecraft/client/renderer/texture/TextureAtlasSprite;)V +MD: net/minecraft/client/particle/TextureSheetParticle/m_108339_ (Lnet/minecraft/client/particle/SpriteSet;)V net/minecraft/client/particle/TextureSheetParticle/setSpriteFromAge (Lnet/minecraft/client/particle/SpriteSet;)V +MD: net/minecraft/client/particle/TextureSheetParticle/m_5950_ ()F net/minecraft/client/particle/TextureSheetParticle/getV1 ()F +MD: net/minecraft/client/particle/TextureSheetParticle/m_5951_ ()F net/minecraft/client/particle/TextureSheetParticle/getV0 ()F +MD: net/minecraft/client/particle/TextureSheetParticle/m_5952_ ()F net/minecraft/client/particle/TextureSheetParticle/getU1 ()F +MD: net/minecraft/client/particle/TextureSheetParticle/m_5970_ ()F net/minecraft/client/particle/TextureSheetParticle/getU0 ()F +MD: net/minecraft/client/particle/TotemParticle/ (Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDDLnet/minecraft/client/particle/SpriteSet;)V net/minecraft/client/particle/TotemParticle/ (Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDDLnet/minecraft/client/particle/SpriteSet;)V +MD: net/minecraft/client/particle/TotemParticle$Provider/ (Lnet/minecraft/client/particle/SpriteSet;)V net/minecraft/client/particle/TotemParticle$Provider/ (Lnet/minecraft/client/particle/SpriteSet;)V +MD: net/minecraft/client/particle/TotemParticle$Provider/m_6966_ (Lnet/minecraft/core/particles/ParticleOptions;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; net/minecraft/client/particle/TotemParticle$Provider/createParticle (Lnet/minecraft/core/particles/ParticleOptions;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; +MD: net/minecraft/client/particle/TotemParticle$Provider/m_6966_ (Lnet/minecraft/core/particles/SimpleParticleType;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; net/minecraft/client/particle/TotemParticle$Provider/createParticle (Lnet/minecraft/core/particles/SimpleParticleType;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; +MD: net/minecraft/client/particle/TrackingEmitter/ (Lnet/minecraft/client/multiplayer/ClientLevel;Lnet/minecraft/world/entity/Entity;Lnet/minecraft/core/particles/ParticleOptions;)V net/minecraft/client/particle/TrackingEmitter/ (Lnet/minecraft/client/multiplayer/ClientLevel;Lnet/minecraft/world/entity/Entity;Lnet/minecraft/core/particles/ParticleOptions;)V +MD: net/minecraft/client/particle/TrackingEmitter/ (Lnet/minecraft/client/multiplayer/ClientLevel;Lnet/minecraft/world/entity/Entity;Lnet/minecraft/core/particles/ParticleOptions;I)V net/minecraft/client/particle/TrackingEmitter/ (Lnet/minecraft/client/multiplayer/ClientLevel;Lnet/minecraft/world/entity/Entity;Lnet/minecraft/core/particles/ParticleOptions;I)V +MD: net/minecraft/client/particle/TrackingEmitter/ (Lnet/minecraft/client/multiplayer/ClientLevel;Lnet/minecraft/world/entity/Entity;Lnet/minecraft/core/particles/ParticleOptions;ILnet/minecraft/world/phys/Vec3;)V net/minecraft/client/particle/TrackingEmitter/ (Lnet/minecraft/client/multiplayer/ClientLevel;Lnet/minecraft/world/entity/Entity;Lnet/minecraft/core/particles/ParticleOptions;ILnet/minecraft/world/phys/Vec3;)V +MD: net/minecraft/client/particle/TrackingEmitter/m_5989_ ()V net/minecraft/client/particle/TrackingEmitter/tick ()V +MD: net/minecraft/client/particle/VibrationSignalParticle/ (Lnet/minecraft/client/multiplayer/ClientLevel;DDDLnet/minecraft/world/level/gameevent/PositionSource;I)V net/minecraft/client/particle/VibrationSignalParticle/ (Lnet/minecraft/client/multiplayer/ClientLevel;DDDLnet/minecraft/world/level/gameevent/PositionSource;I)V +MD: net/minecraft/client/particle/VibrationSignalParticle/m_172478_ (Lcom/mojang/blaze3d/vertex/VertexConsumer;Lnet/minecraft/client/Camera;FLjava/util/function/Consumer;)V net/minecraft/client/particle/VibrationSignalParticle/renderSignal (Lcom/mojang/blaze3d/vertex/VertexConsumer;Lnet/minecraft/client/Camera;FLjava/util/function/Consumer;)V +MD: net/minecraft/client/particle/VibrationSignalParticle/m_252591_ (FFFLorg/joml/Quaternionf;)V net/minecraft/client/particle/VibrationSignalParticle/lambda$render$1 (FFFLorg/joml/Quaternionf;)V +MD: net/minecraft/client/particle/VibrationSignalParticle/m_252592_ (FFFLorg/joml/Quaternionf;)V net/minecraft/client/particle/VibrationSignalParticle/lambda$render$0 (FFFLorg/joml/Quaternionf;)V +MD: net/minecraft/client/particle/VibrationSignalParticle/m_5744_ (Lcom/mojang/blaze3d/vertex/VertexConsumer;Lnet/minecraft/client/Camera;F)V net/minecraft/client/particle/VibrationSignalParticle/render (Lcom/mojang/blaze3d/vertex/VertexConsumer;Lnet/minecraft/client/Camera;F)V +MD: net/minecraft/client/particle/VibrationSignalParticle/m_5989_ ()V net/minecraft/client/particle/VibrationSignalParticle/tick ()V +MD: net/minecraft/client/particle/VibrationSignalParticle/m_6355_ (F)I net/minecraft/client/particle/VibrationSignalParticle/getLightColor (F)I +MD: net/minecraft/client/particle/VibrationSignalParticle/m_7556_ ()Lnet/minecraft/client/particle/ParticleRenderType; net/minecraft/client/particle/VibrationSignalParticle/getRenderType ()Lnet/minecraft/client/particle/ParticleRenderType; +MD: net/minecraft/client/particle/VibrationSignalParticle$Provider/ (Lnet/minecraft/client/particle/SpriteSet;)V net/minecraft/client/particle/VibrationSignalParticle$Provider/ (Lnet/minecraft/client/particle/SpriteSet;)V +MD: net/minecraft/client/particle/VibrationSignalParticle$Provider/m_6966_ (Lnet/minecraft/core/particles/VibrationParticleOption;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; net/minecraft/client/particle/VibrationSignalParticle$Provider/createParticle (Lnet/minecraft/core/particles/VibrationParticleOption;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; +MD: net/minecraft/client/particle/VibrationSignalParticle$Provider/m_6966_ (Lnet/minecraft/core/particles/ParticleOptions;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; net/minecraft/client/particle/VibrationSignalParticle$Provider/createParticle (Lnet/minecraft/core/particles/ParticleOptions;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; +MD: net/minecraft/client/particle/WakeParticle/ (Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDDLnet/minecraft/client/particle/SpriteSet;)V net/minecraft/client/particle/WakeParticle/ (Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDDLnet/minecraft/client/particle/SpriteSet;)V +MD: net/minecraft/client/particle/WakeParticle/m_5989_ ()V net/minecraft/client/particle/WakeParticle/tick ()V +MD: net/minecraft/client/particle/WakeParticle/m_7556_ ()Lnet/minecraft/client/particle/ParticleRenderType; net/minecraft/client/particle/WakeParticle/getRenderType ()Lnet/minecraft/client/particle/ParticleRenderType; +MD: net/minecraft/client/particle/WakeParticle$Provider/ (Lnet/minecraft/client/particle/SpriteSet;)V net/minecraft/client/particle/WakeParticle$Provider/ (Lnet/minecraft/client/particle/SpriteSet;)V +MD: net/minecraft/client/particle/WakeParticle$Provider/m_6966_ (Lnet/minecraft/core/particles/ParticleOptions;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; net/minecraft/client/particle/WakeParticle$Provider/createParticle (Lnet/minecraft/core/particles/ParticleOptions;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; +MD: net/minecraft/client/particle/WakeParticle$Provider/m_6966_ (Lnet/minecraft/core/particles/SimpleParticleType;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; net/minecraft/client/particle/WakeParticle$Provider/createParticle (Lnet/minecraft/core/particles/SimpleParticleType;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; +MD: net/minecraft/client/particle/WaterCurrentDownParticle/ (Lnet/minecraft/client/multiplayer/ClientLevel;DDD)V net/minecraft/client/particle/WaterCurrentDownParticle/ (Lnet/minecraft/client/multiplayer/ClientLevel;DDD)V +MD: net/minecraft/client/particle/WaterCurrentDownParticle/m_5989_ ()V net/minecraft/client/particle/WaterCurrentDownParticle/tick ()V +MD: net/minecraft/client/particle/WaterCurrentDownParticle/m_7556_ ()Lnet/minecraft/client/particle/ParticleRenderType; net/minecraft/client/particle/WaterCurrentDownParticle/getRenderType ()Lnet/minecraft/client/particle/ParticleRenderType; +MD: net/minecraft/client/particle/WaterCurrentDownParticle$Provider/ (Lnet/minecraft/client/particle/SpriteSet;)V net/minecraft/client/particle/WaterCurrentDownParticle$Provider/ (Lnet/minecraft/client/particle/SpriteSet;)V +MD: net/minecraft/client/particle/WaterCurrentDownParticle$Provider/m_6966_ (Lnet/minecraft/core/particles/ParticleOptions;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; net/minecraft/client/particle/WaterCurrentDownParticle$Provider/createParticle (Lnet/minecraft/core/particles/ParticleOptions;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; +MD: net/minecraft/client/particle/WaterCurrentDownParticle$Provider/m_6966_ (Lnet/minecraft/core/particles/SimpleParticleType;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; net/minecraft/client/particle/WaterCurrentDownParticle$Provider/createParticle (Lnet/minecraft/core/particles/SimpleParticleType;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; +MD: net/minecraft/client/particle/WaterDropParticle/ (Lnet/minecraft/client/multiplayer/ClientLevel;DDD)V net/minecraft/client/particle/WaterDropParticle/ (Lnet/minecraft/client/multiplayer/ClientLevel;DDD)V +MD: net/minecraft/client/particle/WaterDropParticle/m_5989_ ()V net/minecraft/client/particle/WaterDropParticle/tick ()V +MD: net/minecraft/client/particle/WaterDropParticle/m_7556_ ()Lnet/minecraft/client/particle/ParticleRenderType; net/minecraft/client/particle/WaterDropParticle/getRenderType ()Lnet/minecraft/client/particle/ParticleRenderType; +MD: net/minecraft/client/particle/WaterDropParticle$Provider/ (Lnet/minecraft/client/particle/SpriteSet;)V net/minecraft/client/particle/WaterDropParticle$Provider/ (Lnet/minecraft/client/particle/SpriteSet;)V +MD: net/minecraft/client/particle/WaterDropParticle$Provider/m_6966_ (Lnet/minecraft/core/particles/ParticleOptions;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; net/minecraft/client/particle/WaterDropParticle$Provider/createParticle (Lnet/minecraft/core/particles/ParticleOptions;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; +MD: net/minecraft/client/particle/WaterDropParticle$Provider/m_6966_ (Lnet/minecraft/core/particles/SimpleParticleType;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; net/minecraft/client/particle/WaterDropParticle$Provider/createParticle (Lnet/minecraft/core/particles/SimpleParticleType;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; +MD: net/minecraft/client/particle/WhiteAshParticle/ (Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDDFLnet/minecraft/client/particle/SpriteSet;)V net/minecraft/client/particle/WhiteAshParticle/ (Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDDFLnet/minecraft/client/particle/SpriteSet;)V +MD: net/minecraft/client/particle/WhiteAshParticle$Provider/ (Lnet/minecraft/client/particle/SpriteSet;)V net/minecraft/client/particle/WhiteAshParticle$Provider/ (Lnet/minecraft/client/particle/SpriteSet;)V +MD: net/minecraft/client/particle/WhiteAshParticle$Provider/m_6966_ (Lnet/minecraft/core/particles/ParticleOptions;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; net/minecraft/client/particle/WhiteAshParticle$Provider/createParticle (Lnet/minecraft/core/particles/ParticleOptions;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; +MD: net/minecraft/client/particle/WhiteAshParticle$Provider/m_6966_ (Lnet/minecraft/core/particles/SimpleParticleType;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; net/minecraft/client/particle/WhiteAshParticle$Provider/createParticle (Lnet/minecraft/core/particles/SimpleParticleType;Lnet/minecraft/client/multiplayer/ClientLevel;DDDDDD)Lnet/minecraft/client/particle/Particle; +MD: net/minecraft/client/player/AbstractClientPlayer/ (Lnet/minecraft/client/multiplayer/ClientLevel;Lcom/mojang/authlib/GameProfile;)V net/minecraft/client/player/AbstractClientPlayer/ (Lnet/minecraft/client/multiplayer/ClientLevel;Lcom/mojang/authlib/GameProfile;)V +MD: net/minecraft/client/player/AbstractClientPlayer/m_108555_ ()Z net/minecraft/client/player/AbstractClientPlayer/isCapeLoaded ()Z +MD: net/minecraft/client/player/AbstractClientPlayer/m_108556_ (Ljava/lang/String;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/client/player/AbstractClientPlayer/getSkinLocation (Ljava/lang/String;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/client/player/AbstractClientPlayer/m_108558_ ()Lnet/minecraft/client/multiplayer/PlayerInfo; net/minecraft/client/player/AbstractClientPlayer/getPlayerInfo ()Lnet/minecraft/client/multiplayer/PlayerInfo; +MD: net/minecraft/client/player/AbstractClientPlayer/m_108559_ ()Z net/minecraft/client/player/AbstractClientPlayer/isSkinLoaded ()Z +MD: net/minecraft/client/player/AbstractClientPlayer/m_108560_ ()Lnet/minecraft/resources/ResourceLocation; net/minecraft/client/player/AbstractClientPlayer/getSkinTextureLocation ()Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/client/player/AbstractClientPlayer/m_108561_ ()Lnet/minecraft/resources/ResourceLocation; net/minecraft/client/player/AbstractClientPlayer/getCloakTextureLocation ()Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/client/player/AbstractClientPlayer/m_108562_ ()Z net/minecraft/client/player/AbstractClientPlayer/isElytraLoaded ()Z +MD: net/minecraft/client/player/AbstractClientPlayer/m_108563_ ()Lnet/minecraft/resources/ResourceLocation; net/minecraft/client/player/AbstractClientPlayer/getElytraTextureLocation ()Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/client/player/AbstractClientPlayer/m_108564_ ()Ljava/lang/String; net/minecraft/client/player/AbstractClientPlayer/getModelName ()Ljava/lang/String; +MD: net/minecraft/client/player/AbstractClientPlayer/m_108565_ ()F net/minecraft/client/player/AbstractClientPlayer/getFieldOfViewModifier ()F +MD: net/minecraft/client/player/AbstractClientPlayer/m_172521_ (Lnet/minecraft/resources/ResourceLocation;Ljava/lang/String;)V net/minecraft/client/player/AbstractClientPlayer/registerSkinTexture (Lnet/minecraft/resources/ResourceLocation;Ljava/lang/String;)V +MD: net/minecraft/client/player/AbstractClientPlayer/m_272267_ (F)Lnet/minecraft/world/phys/Vec3; net/minecraft/client/player/AbstractClientPlayer/getDeltaMovementLerped (F)Lnet/minecraft/world/phys/Vec3; +MD: net/minecraft/client/player/AbstractClientPlayer/m_5833_ ()Z net/minecraft/client/player/AbstractClientPlayer/isSpectator ()Z +MD: net/minecraft/client/player/AbstractClientPlayer/m_7500_ ()Z net/minecraft/client/player/AbstractClientPlayer/isCreative ()Z +MD: net/minecraft/client/player/AbstractClientPlayer/m_8119_ ()V net/minecraft/client/player/AbstractClientPlayer/tick ()V +MD: net/minecraft/client/player/Input/ ()V net/minecraft/client/player/Input/ ()V +MD: net/minecraft/client/player/Input/m_108575_ ()Lnet/minecraft/world/phys/Vec2; net/minecraft/client/player/Input/getMoveVector ()Lnet/minecraft/world/phys/Vec2; +MD: net/minecraft/client/player/Input/m_108577_ ()Z net/minecraft/client/player/Input/hasForwardImpulse ()Z +MD: net/minecraft/client/player/Input/m_214106_ (ZF)V net/minecraft/client/player/Input/tick (ZF)V +MD: net/minecraft/client/player/KeyboardInput/ (Lnet/minecraft/client/Options;)V net/minecraft/client/player/KeyboardInput/ (Lnet/minecraft/client/Options;)V +MD: net/minecraft/client/player/KeyboardInput/m_205577_ (ZZ)F net/minecraft/client/player/KeyboardInput/calculateImpulse (ZZ)F +MD: net/minecraft/client/player/KeyboardInput/m_214106_ (ZF)V net/minecraft/client/player/KeyboardInput/tick (ZF)V +MD: net/minecraft/client/player/LocalPlayer/ ()V net/minecraft/client/player/LocalPlayer/ ()V +MD: net/minecraft/client/player/LocalPlayer/ (Lnet/minecraft/client/Minecraft;Lnet/minecraft/client/multiplayer/ClientLevel;Lnet/minecraft/client/multiplayer/ClientPacketListener;Lnet/minecraft/stats/StatsCounter;Lnet/minecraft/client/ClientRecipeBook;ZZ)V net/minecraft/client/player/LocalPlayer/ (Lnet/minecraft/client/Minecraft;Lnet/minecraft/client/multiplayer/ClientLevel;Lnet/minecraft/client/multiplayer/ClientPacketListener;Lnet/minecraft/stats/StatsCounter;Lnet/minecraft/client/ClientRecipeBook;ZZ)V +MD: net/minecraft/client/player/LocalPlayer/m_108628_ ()V net/minecraft/client/player/LocalPlayer/sendOpenInventory ()V +MD: net/minecraft/client/player/LocalPlayer/m_108629_ ()Ljava/lang/String; net/minecraft/client/player/LocalPlayer/getServerBrand ()Ljava/lang/String; +MD: net/minecraft/client/player/LocalPlayer/m_108630_ ()Lnet/minecraft/stats/StatsCounter; net/minecraft/client/player/LocalPlayer/getStats ()Lnet/minecraft/stats/StatsCounter; +MD: net/minecraft/client/player/LocalPlayer/m_108631_ ()Lnet/minecraft/client/ClientRecipeBook; net/minecraft/client/player/LocalPlayer/getRecipeBook ()Lnet/minecraft/client/ClientRecipeBook; +MD: net/minecraft/client/player/LocalPlayer/m_108632_ ()Z net/minecraft/client/player/LocalPlayer/shouldShowDeathScreen ()Z +MD: net/minecraft/client/player/LocalPlayer/m_108634_ ()F net/minecraft/client/player/LocalPlayer/getJumpRidingScale ()F +MD: net/minecraft/client/player/LocalPlayer/m_108635_ ()Z net/minecraft/client/player/LocalPlayer/isMovingSlowly ()Z +MD: net/minecraft/client/player/LocalPlayer/m_108636_ ()Z net/minecraft/client/player/LocalPlayer/isControlledCamera ()Z +MD: net/minecraft/client/player/LocalPlayer/m_108637_ ()Z net/minecraft/client/player/LocalPlayer/isHandsBusy ()Z +MD: net/minecraft/client/player/LocalPlayer/m_108638_ ()Z net/minecraft/client/player/LocalPlayer/isAutoJumpEnabled ()Z +MD: net/minecraft/client/player/LocalPlayer/m_108639_ ()F net/minecraft/client/player/LocalPlayer/getWaterVision ()F +MD: net/minecraft/client/player/LocalPlayer/m_108640_ ()V net/minecraft/client/player/LocalPlayer/sendPosition ()V +MD: net/minecraft/client/player/LocalPlayer/m_108641_ ()V net/minecraft/client/player/LocalPlayer/handleNetherPortalClient ()V +MD: net/minecraft/client/player/LocalPlayer/m_108644_ (FII)V net/minecraft/client/player/LocalPlayer/setExperienceValues (FII)V +MD: net/minecraft/client/player/LocalPlayer/m_108648_ (I)V net/minecraft/client/player/LocalPlayer/setPermissionLevel (I)V +MD: net/minecraft/client/player/LocalPlayer/m_108675_ (Lnet/minecraft/world/item/crafting/Recipe;)V net/minecraft/client/player/LocalPlayer/removeRecipeHighlight (Lnet/minecraft/world/item/crafting/Recipe;)V +MD: net/minecraft/client/player/LocalPlayer/m_108700_ (Z)Z net/minecraft/client/player/LocalPlayer/drop (Z)Z +MD: net/minecraft/client/player/LocalPlayer/m_108704_ (DD)V net/minecraft/client/player/LocalPlayer/moveTowardsClosestSpace (DD)V +MD: net/minecraft/client/player/LocalPlayer/m_108711_ (Z)V net/minecraft/client/player/LocalPlayer/setShowDeathScreen (Z)V +MD: net/minecraft/client/player/LocalPlayer/m_108731_ ()Z net/minecraft/client/player/LocalPlayer/canAutoJump ()Z +MD: net/minecraft/client/player/LocalPlayer/m_108732_ ()Z net/minecraft/client/player/LocalPlayer/isMoving ()Z +MD: net/minecraft/client/player/LocalPlayer/m_108733_ ()Z net/minecraft/client/player/LocalPlayer/hasEnoughImpulseToStartSprinting ()Z +MD: net/minecraft/client/player/LocalPlayer/m_108743_ (FF)V net/minecraft/client/player/LocalPlayer/updateAutoJump (FF)V +MD: net/minecraft/client/player/LocalPlayer/m_108746_ (Lnet/minecraft/core/BlockPos;)Z net/minecraft/client/player/LocalPlayer/suffocatesAt (Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/client/player/LocalPlayer/m_108748_ (Ljava/lang/String;)V net/minecraft/client/player/LocalPlayer/setServerBrand (Ljava/lang/String;)V +MD: net/minecraft/client/player/LocalPlayer/m_108760_ (F)V net/minecraft/client/player/LocalPlayer/hurtTo (F)V +MD: net/minecraft/client/player/LocalPlayer/m_108762_ ()F net/minecraft/client/player/LocalPlayer/getCurrentMood ()F +MD: net/minecraft/client/player/LocalPlayer/m_108763_ ()V net/minecraft/client/player/LocalPlayer/clientSideCloseContainer ()V +MD: net/minecraft/client/player/LocalPlayer/m_108765_ ()V net/minecraft/client/player/LocalPlayer/sendRidingJump ()V +MD: net/minecraft/client/player/LocalPlayer/m_141945_ (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/inventory/ClickAction;)V net/minecraft/client/player/LocalPlayer/updateTutorialInventoryAction (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/inventory/ClickAction;)V +MD: net/minecraft/client/player/LocalPlayer/m_143387_ ()Z net/minecraft/client/player/LocalPlayer/isTextFilteringEnabled ()Z +MD: net/minecraft/client/player/LocalPlayer/m_172530_ ()V net/minecraft/client/player/LocalPlayer/resetPos ()V +MD: net/minecraft/client/player/LocalPlayer/m_196406_ (Lnet/minecraft/world/phys/Vec3;)Z net/minecraft/client/player/LocalPlayer/isHorizontalCollisionMinor (Lnet/minecraft/world/phys/Vec3;)Z +MD: net/minecraft/client/player/LocalPlayer/m_213816_ ()F net/minecraft/client/player/LocalPlayer/getVisualRotationYInDegrees ()F +MD: net/minecraft/client/player/LocalPlayer/m_213846_ (Lnet/minecraft/network/chat/Component;)V net/minecraft/client/player/LocalPlayer/sendSystemMessage (Lnet/minecraft/network/chat/Component;)V +MD: net/minecraft/client/player/LocalPlayer/m_21515_ ()Z net/minecraft/client/player/LocalPlayer/isEffectiveAi ()Z +MD: net/minecraft/client/player/LocalPlayer/m_238886_ (Lnet/minecraft/world/phys/shapes/VoxelShape;)Ljava/util/stream/Stream; net/minecraft/client/player/LocalPlayer/lambda$updateAutoJump$0 (Lnet/minecraft/world/phys/shapes/VoxelShape;)Ljava/util/stream/Stream; +MD: net/minecraft/client/player/LocalPlayer/m_245714_ ()Lnet/minecraft/world/entity/PlayerRideableJumping; net/minecraft/client/player/LocalPlayer/jumpableVehicle ()Lnet/minecraft/world/entity/PlayerRideableJumping; +MD: net/minecraft/client/player/LocalPlayer/m_254869_ ()V net/minecraft/client/player/LocalPlayer/sendIsSprintingIfNeeded ()V +MD: net/minecraft/client/player/LocalPlayer/m_255269_ ()Z net/minecraft/client/player/LocalPlayer/hasEnoughFoodToStartSprinting ()Z +MD: net/minecraft/client/player/LocalPlayer/m_264082_ ()Z net/minecraft/client/player/LocalPlayer/canStartSprinting ()Z +MD: net/minecraft/client/player/LocalPlayer/m_264231_ (Lnet/minecraft/world/entity/Entity;)Z net/minecraft/client/player/LocalPlayer/vehicleCanSprint (Lnet/minecraft/world/entity/Entity;)Z +MD: net/minecraft/client/player/LocalPlayer/m_287171_ (Lnet/minecraft/world/level/GameType;)V net/minecraft/client/player/LocalPlayer/onGameModeChanged (Lnet/minecraft/world/level/GameType;)V +MD: net/minecraft/client/player/LocalPlayer/m_5496_ (Lnet/minecraft/sounds/SoundEvent;FF)V net/minecraft/client/player/LocalPlayer/playSound (Lnet/minecraft/sounds/SoundEvent;FF)V +MD: net/minecraft/client/player/LocalPlayer/m_5634_ (F)V net/minecraft/client/player/LocalPlayer/heal (F)V +MD: net/minecraft/client/player/LocalPlayer/m_5661_ (Lnet/minecraft/network/chat/Component;Z)V net/minecraft/client/player/LocalPlayer/displayClientMessage (Lnet/minecraft/network/chat/Component;Z)V +MD: net/minecraft/client/player/LocalPlayer/m_5675_ (F)F net/minecraft/client/player/LocalPlayer/getViewYRot (F)F +MD: net/minecraft/client/player/LocalPlayer/m_5686_ (F)F net/minecraft/client/player/LocalPlayer/getViewXRot (F)F +MD: net/minecraft/client/player/LocalPlayer/m_5700_ (Lnet/minecraft/world/entity/Entity;)V net/minecraft/client/player/LocalPlayer/magicCrit (Lnet/minecraft/world/entity/Entity;)V +MD: net/minecraft/client/player/LocalPlayer/m_5704_ (Lnet/minecraft/world/entity/Entity;)V net/minecraft/client/player/LocalPlayer/crit (Lnet/minecraft/world/entity/Entity;)V +MD: net/minecraft/client/player/LocalPlayer/m_5791_ ()Z net/minecraft/client/player/LocalPlayer/isSuppressingSlidingDownLadder ()Z +MD: net/minecraft/client/player/LocalPlayer/m_5810_ ()V net/minecraft/client/player/LocalPlayer/stopUsingItem ()V +MD: net/minecraft/client/player/LocalPlayer/m_5842_ ()Z net/minecraft/client/player/LocalPlayer/isUnderWater ()Z +MD: net/minecraft/client/player/LocalPlayer/m_5843_ ()Z net/minecraft/client/player/LocalPlayer/canSpawnSprintParticle ()Z +MD: net/minecraft/client/player/LocalPlayer/m_5966_ (Lnet/minecraft/world/level/block/entity/StructureBlockEntity;)V net/minecraft/client/player/LocalPlayer/openStructureBlock (Lnet/minecraft/world/level/block/entity/StructureBlockEntity;)V +MD: net/minecraft/client/player/LocalPlayer/m_6038_ ()V net/minecraft/client/player/LocalPlayer/removeVehicle ()V +MD: net/minecraft/client/player/LocalPlayer/m_6039_ ()Z net/minecraft/client/player/LocalPlayer/canSpawnSoulSpeedParticle ()Z +MD: net/minecraft/client/player/LocalPlayer/m_6047_ ()Z net/minecraft/client/player/LocalPlayer/isCrouching ()Z +MD: net/minecraft/client/player/LocalPlayer/m_6083_ ()V net/minecraft/client/player/LocalPlayer/rideTick ()V +MD: net/minecraft/client/player/LocalPlayer/m_6117_ ()Z net/minecraft/client/player/LocalPlayer/isUsingItem ()Z +MD: net/minecraft/client/player/LocalPlayer/m_6140_ ()V net/minecraft/client/player/LocalPlayer/serverAiStep ()V +MD: net/minecraft/client/player/LocalPlayer/m_6144_ ()Z net/minecraft/client/player/LocalPlayer/isShiftKeyDown ()Z +MD: net/minecraft/client/player/LocalPlayer/m_6153_ ()V net/minecraft/client/player/LocalPlayer/tickDeath ()V +MD: net/minecraft/client/player/LocalPlayer/m_6234_ (Lnet/minecraft/world/effect/MobEffect;)Lnet/minecraft/world/effect/MobEffectInstance; net/minecraft/client/player/LocalPlayer/removeEffectNoUpdate (Lnet/minecraft/world/effect/MobEffect;)Lnet/minecraft/world/effect/MobEffectInstance; +MD: net/minecraft/client/player/LocalPlayer/m_6330_ (Lnet/minecraft/sounds/SoundEvent;Lnet/minecraft/sounds/SoundSource;FF)V net/minecraft/client/player/LocalPlayer/playNotifySound (Lnet/minecraft/sounds/SoundEvent;Lnet/minecraft/sounds/SoundSource;FF)V +MD: net/minecraft/client/player/LocalPlayer/m_6469_ (Lnet/minecraft/world/damagesource/DamageSource;F)Z net/minecraft/client/player/LocalPlayer/hurt (Lnet/minecraft/world/damagesource/DamageSource;F)Z +MD: net/minecraft/client/player/LocalPlayer/m_6475_ (Lnet/minecraft/world/damagesource/DamageSource;F)V net/minecraft/client/player/LocalPlayer/actuallyHurt (Lnet/minecraft/world/damagesource/DamageSource;F)V +MD: net/minecraft/client/player/LocalPlayer/m_6478_ (Lnet/minecraft/world/entity/MoverType;Lnet/minecraft/world/phys/Vec3;)V net/minecraft/client/player/LocalPlayer/move (Lnet/minecraft/world/entity/MoverType;Lnet/minecraft/world/phys/Vec3;)V +MD: net/minecraft/client/player/LocalPlayer/m_6672_ (Lnet/minecraft/world/InteractionHand;)V net/minecraft/client/player/LocalPlayer/startUsingItem (Lnet/minecraft/world/InteractionHand;)V +MD: net/minecraft/client/player/LocalPlayer/m_6674_ (Lnet/minecraft/world/InteractionHand;)V net/minecraft/client/player/LocalPlayer/swing (Lnet/minecraft/world/InteractionHand;)V +MD: net/minecraft/client/player/LocalPlayer/m_6885_ ()V net/minecraft/client/player/LocalPlayer/onUpdateAbilities ()V +MD: net/minecraft/client/player/LocalPlayer/m_6915_ ()V net/minecraft/client/player/LocalPlayer/closeContainer ()V +MD: net/minecraft/client/player/LocalPlayer/m_6986_ (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/InteractionHand;)V net/minecraft/client/player/LocalPlayer/openItemGui (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/InteractionHand;)V +MD: net/minecraft/client/player/LocalPlayer/m_7350_ (Lnet/minecraft/network/syncher/EntityDataAccessor;)V net/minecraft/client/player/LocalPlayer/onSyncedDataUpdated (Lnet/minecraft/network/syncher/EntityDataAccessor;)V +MD: net/minecraft/client/player/LocalPlayer/m_7398_ (F)Lnet/minecraft/world/phys/Vec3; net/minecraft/client/player/LocalPlayer/getRopeHoldPosition (F)Lnet/minecraft/world/phys/Vec3; +MD: net/minecraft/client/player/LocalPlayer/m_7569_ (Lnet/minecraft/world/level/block/entity/JigsawBlockEntity;)V net/minecraft/client/player/LocalPlayer/openJigsawBlock (Lnet/minecraft/world/level/block/entity/JigsawBlockEntity;)V +MD: net/minecraft/client/player/LocalPlayer/m_7578_ ()Z net/minecraft/client/player/LocalPlayer/isLocalPlayer ()Z +MD: net/minecraft/client/player/LocalPlayer/m_7583_ ()V net/minecraft/client/player/LocalPlayer/respawn ()V +MD: net/minecraft/client/player/LocalPlayer/m_7602_ ()Z net/minecraft/client/player/LocalPlayer/updateIsUnderwater ()Z +MD: net/minecraft/client/player/LocalPlayer/m_7655_ ()Lnet/minecraft/world/InteractionHand; net/minecraft/client/player/LocalPlayer/getUsedItemHand ()Lnet/minecraft/world/InteractionHand; +MD: net/minecraft/client/player/LocalPlayer/m_7698_ (Lnet/minecraft/world/level/block/entity/CommandBlockEntity;)V net/minecraft/client/player/LocalPlayer/openCommandBlock (Lnet/minecraft/world/level/block/entity/CommandBlockEntity;)V +MD: net/minecraft/client/player/LocalPlayer/m_7739_ (Lnet/minecraft/world/level/block/entity/SignBlockEntity;Z)V net/minecraft/client/player/LocalPlayer/openTextEdit (Lnet/minecraft/world/level/block/entity/SignBlockEntity;Z)V +MD: net/minecraft/client/player/LocalPlayer/m_7822_ (B)V net/minecraft/client/player/LocalPlayer/handleEntityEvent (B)V +MD: net/minecraft/client/player/LocalPlayer/m_7907_ (Lnet/minecraft/world/level/BaseCommandBlock;)V net/minecraft/client/player/LocalPlayer/openMinecartCommandBlock (Lnet/minecraft/world/level/BaseCommandBlock;)V +MD: net/minecraft/client/player/LocalPlayer/m_7998_ (Lnet/minecraft/world/entity/Entity;Z)Z net/minecraft/client/player/LocalPlayer/startRiding (Lnet/minecraft/world/entity/Entity;Z)Z +MD: net/minecraft/client/player/LocalPlayer/m_8088_ ()I net/minecraft/client/player/LocalPlayer/getPermissionLevel ()I +MD: net/minecraft/client/player/LocalPlayer/m_8107_ ()V net/minecraft/client/player/LocalPlayer/aiStep ()V +MD: net/minecraft/client/player/LocalPlayer/m_8119_ ()V net/minecraft/client/player/LocalPlayer/tick ()V +MD: net/minecraft/client/player/RemotePlayer/ (Lnet/minecraft/client/multiplayer/ClientLevel;Lcom/mojang/authlib/GameProfile;)V net/minecraft/client/player/RemotePlayer/ (Lnet/minecraft/client/multiplayer/ClientLevel;Lcom/mojang/authlib/GameProfile;)V +MD: net/minecraft/client/player/RemotePlayer/m_213846_ (Lnet/minecraft/network/chat/Component;)V net/minecraft/client/player/RemotePlayer/sendSystemMessage (Lnet/minecraft/network/chat/Component;)V +MD: net/minecraft/client/player/RemotePlayer/m_6001_ (DDD)V net/minecraft/client/player/RemotePlayer/lerpMotion (DDD)V +MD: net/minecraft/client/player/RemotePlayer/m_6469_ (Lnet/minecraft/world/damagesource/DamageSource;F)Z net/minecraft/client/player/RemotePlayer/hurt (Lnet/minecraft/world/damagesource/DamageSource;F)Z +MD: net/minecraft/client/player/RemotePlayer/m_6783_ (D)Z net/minecraft/client/player/RemotePlayer/shouldRenderAtSqrDistance (D)Z +MD: net/minecraft/client/player/RemotePlayer/m_7594_ ()V net/minecraft/client/player/RemotePlayer/updatePlayerPose ()V +MD: net/minecraft/client/player/RemotePlayer/m_8107_ ()V net/minecraft/client/player/RemotePlayer/aiStep ()V +MD: net/minecraft/client/player/RemotePlayer/m_8119_ ()V net/minecraft/client/player/RemotePlayer/tick ()V +MD: net/minecraft/client/player/inventory/Hotbar/ ()V net/minecraft/client/player/inventory/Hotbar/ ()V +MD: net/minecraft/client/player/inventory/Hotbar/delegate ()Ljava/util/List; net/minecraft/client/player/inventory/Hotbar/delegate ()Ljava/util/List; +MD: net/minecraft/client/player/inventory/Hotbar/delegate ()Ljava/util/Collection; net/minecraft/client/player/inventory/Hotbar/delegate ()Ljava/util/Collection; +MD: net/minecraft/client/player/inventory/Hotbar/delegate ()Ljava/lang/Object; net/minecraft/client/player/inventory/Hotbar/delegate ()Ljava/lang/Object; +MD: net/minecraft/client/player/inventory/Hotbar/isEmpty ()Z net/minecraft/client/player/inventory/Hotbar/isEmpty ()Z +MD: net/minecraft/client/player/inventory/Hotbar/m_108782_ ()Lnet/minecraft/nbt/ListTag; net/minecraft/client/player/inventory/Hotbar/createTag ()Lnet/minecraft/nbt/ListTag; +MD: net/minecraft/client/player/inventory/Hotbar/m_108783_ (Lnet/minecraft/nbt/ListTag;)V net/minecraft/client/player/inventory/Hotbar/fromTag (Lnet/minecraft/nbt/ListTag;)V +MD: net/minecraft/client/profiling/ClientMetricsSamplersProvider/ (Ljava/util/function/LongSupplier;Lnet/minecraft/client/renderer/LevelRenderer;)V net/minecraft/client/profiling/ClientMetricsSamplersProvider/ (Ljava/util/function/LongSupplier;Lnet/minecraft/client/renderer/LevelRenderer;)V +MD: net/minecraft/client/profiling/ClientMetricsSamplersProvider/m_142531_ (Ljava/util/function/Supplier;)Ljava/util/Set; net/minecraft/client/profiling/ClientMetricsSamplersProvider/samplers (Ljava/util/function/Supplier;)Ljava/util/Set; +MD: net/minecraft/client/profiling/ClientMetricsSamplersProvider/m_172542_ ()V net/minecraft/client/profiling/ClientMetricsSamplersProvider/registerStaticSamplers ()V +MD: net/minecraft/client/quickplay/QuickPlay/ ()V net/minecraft/client/quickplay/QuickPlay/ ()V +MD: net/minecraft/client/quickplay/QuickPlay/ ()V net/minecraft/client/quickplay/QuickPlay/ ()V +MD: net/minecraft/client/quickplay/QuickPlay/m_278613_ (Lnet/minecraft/client/Minecraft;Lnet/minecraft/client/main/GameConfig$QuickPlayData;Lnet/minecraft/server/packs/resources/ReloadInstance;Lcom/mojang/realmsclient/client/RealmsClient;)V net/minecraft/client/quickplay/QuickPlay/connect (Lnet/minecraft/client/Minecraft;Lnet/minecraft/client/main/GameConfig$QuickPlayData;Lnet/minecraft/server/packs/resources/ReloadInstance;Lcom/mojang/realmsclient/client/RealmsClient;)V +MD: net/minecraft/client/quickplay/QuickPlay/m_278767_ (Lnet/minecraft/client/Minecraft;Ljava/lang/String;)V net/minecraft/client/quickplay/QuickPlay/joinMultiplayerWorld (Lnet/minecraft/client/Minecraft;Ljava/lang/String;)V +MD: net/minecraft/client/quickplay/QuickPlay/m_278782_ (Lnet/minecraft/client/Minecraft;Ljava/lang/String;)V net/minecraft/client/quickplay/QuickPlay/joinSingleplayerWorld (Lnet/minecraft/client/Minecraft;Ljava/lang/String;)V +MD: net/minecraft/client/quickplay/QuickPlay/m_278783_ (JLcom/mojang/realmsclient/dto/RealmsServer;)Z net/minecraft/client/quickplay/QuickPlay/lambda$joinRealmsWorld$1 (JLcom/mojang/realmsclient/dto/RealmsServer;)Z +MD: net/minecraft/client/quickplay/QuickPlay/m_278851_ (Lnet/minecraft/client/Minecraft;Lcom/mojang/realmsclient/client/RealmsClient;Ljava/lang/String;)V net/minecraft/client/quickplay/QuickPlay/joinRealmsWorld (Lnet/minecraft/client/Minecraft;Lcom/mojang/realmsclient/client/RealmsClient;Ljava/lang/String;)V +MD: net/minecraft/client/quickplay/QuickPlay/m_287802_ (Ljava/lang/String;Lnet/minecraft/client/Minecraft;Ljava/lang/String;Ljava/lang/String;Lcom/mojang/realmsclient/client/RealmsClient;)V net/minecraft/client/quickplay/QuickPlay/lambda$connect$0 (Ljava/lang/String;Lnet/minecraft/client/Minecraft;Ljava/lang/String;Ljava/lang/String;Lcom/mojang/realmsclient/client/RealmsClient;)V +MD: net/minecraft/client/quickplay/QuickPlayLog/ ()V net/minecraft/client/quickplay/QuickPlayLog/ ()V +MD: net/minecraft/client/quickplay/QuickPlayLog/ (Ljava/lang/String;)V net/minecraft/client/quickplay/QuickPlayLog/ (Ljava/lang/String;)V +MD: net/minecraft/client/quickplay/QuickPlayLog/m_278642_ (Lnet/minecraft/client/quickplay/QuickPlayLog$Type;Ljava/lang/String;Ljava/lang/String;)V net/minecraft/client/quickplay/QuickPlayLog/setWorldData (Lnet/minecraft/client/quickplay/QuickPlayLog$Type;Ljava/lang/String;Ljava/lang/String;)V +MD: net/minecraft/client/quickplay/QuickPlayLog/m_278648_ (Ljava/lang/String;)Lnet/minecraft/client/quickplay/QuickPlayLog; net/minecraft/client/quickplay/QuickPlayLog/of (Ljava/lang/String;)Lnet/minecraft/client/quickplay/QuickPlayLog; +MD: net/minecraft/client/quickplay/QuickPlayLog/m_278666_ (Lnet/minecraft/client/Minecraft;)V net/minecraft/client/quickplay/QuickPlayLog/lambda$log$1 (Lnet/minecraft/client/Minecraft;)V +MD: net/minecraft/client/quickplay/QuickPlayLog/m_278671_ (Lcom/google/gson/JsonElement;)V net/minecraft/client/quickplay/QuickPlayLog/lambda$log$0 (Lcom/google/gson/JsonElement;)V +MD: net/minecraft/client/quickplay/QuickPlayLog/m_278768_ (Lnet/minecraft/client/Minecraft;)V net/minecraft/client/quickplay/QuickPlayLog/log (Lnet/minecraft/client/Minecraft;)V +MD: net/minecraft/client/quickplay/QuickPlayLog$1/ (Ljava/lang/String;)V net/minecraft/client/quickplay/QuickPlayLog$1/ (Ljava/lang/String;)V +MD: net/minecraft/client/quickplay/QuickPlayLog$1/m_278642_ (Lnet/minecraft/client/quickplay/QuickPlayLog$Type;Ljava/lang/String;Ljava/lang/String;)V net/minecraft/client/quickplay/QuickPlayLog$1/setWorldData (Lnet/minecraft/client/quickplay/QuickPlayLog$Type;Ljava/lang/String;Ljava/lang/String;)V +MD: net/minecraft/client/quickplay/QuickPlayLog$1/m_278768_ (Lnet/minecraft/client/Minecraft;)V net/minecraft/client/quickplay/QuickPlayLog$1/log (Lnet/minecraft/client/Minecraft;)V +MD: net/minecraft/client/quickplay/QuickPlayLog$QuickPlayEntry/ ()V net/minecraft/client/quickplay/QuickPlayLog$QuickPlayEntry/ ()V +MD: net/minecraft/client/quickplay/QuickPlayLog$QuickPlayEntry/ (Lnet/minecraft/client/quickplay/QuickPlayLog$QuickPlayWorld;Ljava/time/Instant;Lnet/minecraft/world/level/GameType;)V net/minecraft/client/quickplay/QuickPlayLog$QuickPlayEntry/ (Lnet/minecraft/client/quickplay/QuickPlayLog$QuickPlayWorld;Ljava/time/Instant;Lnet/minecraft/world/level/GameType;)V +MD: net/minecraft/client/quickplay/QuickPlayLog$QuickPlayEntry/equals (Ljava/lang/Object;)Z net/minecraft/client/quickplay/QuickPlayLog$QuickPlayEntry/equals (Ljava/lang/Object;)Z +MD: net/minecraft/client/quickplay/QuickPlayLog$QuickPlayEntry/f_278426_ ()Lnet/minecraft/client/quickplay/QuickPlayLog$QuickPlayWorld; net/minecraft/client/quickplay/QuickPlayLog$QuickPlayEntry/quickPlayWorld ()Lnet/minecraft/client/quickplay/QuickPlayLog$QuickPlayWorld; +MD: net/minecraft/client/quickplay/QuickPlayLog$QuickPlayEntry/f_278456_ ()Lnet/minecraft/world/level/GameType; net/minecraft/client/quickplay/QuickPlayLog$QuickPlayEntry/gamemode ()Lnet/minecraft/world/level/GameType; +MD: net/minecraft/client/quickplay/QuickPlayLog$QuickPlayEntry/f_278512_ ()Ljava/time/Instant; net/minecraft/client/quickplay/QuickPlayLog$QuickPlayEntry/lastPlayedTime ()Ljava/time/Instant; +MD: net/minecraft/client/quickplay/QuickPlayLog$QuickPlayEntry/hashCode ()I net/minecraft/client/quickplay/QuickPlayLog$QuickPlayEntry/hashCode ()I +MD: net/minecraft/client/quickplay/QuickPlayLog$QuickPlayEntry/m_278695_ (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/client/quickplay/QuickPlayLog$QuickPlayEntry/lambda$static$0 (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/client/quickplay/QuickPlayLog$QuickPlayEntry/toString ()Ljava/lang/String; net/minecraft/client/quickplay/QuickPlayLog$QuickPlayEntry/toString ()Ljava/lang/String; +MD: net/minecraft/client/quickplay/QuickPlayLog$QuickPlayWorld/ ()V net/minecraft/client/quickplay/QuickPlayLog$QuickPlayWorld/ ()V +MD: net/minecraft/client/quickplay/QuickPlayLog$QuickPlayWorld/ (Lnet/minecraft/client/quickplay/QuickPlayLog$Type;Ljava/lang/String;Ljava/lang/String;)V net/minecraft/client/quickplay/QuickPlayLog$QuickPlayWorld/ (Lnet/minecraft/client/quickplay/QuickPlayLog$Type;Ljava/lang/String;Ljava/lang/String;)V +MD: net/minecraft/client/quickplay/QuickPlayLog$QuickPlayWorld/equals (Ljava/lang/Object;)Z net/minecraft/client/quickplay/QuickPlayLog$QuickPlayWorld/equals (Ljava/lang/Object;)Z +MD: net/minecraft/client/quickplay/QuickPlayLog$QuickPlayWorld/f_278460_ ()Ljava/lang/String; net/minecraft/client/quickplay/QuickPlayLog$QuickPlayWorld/id ()Ljava/lang/String; +MD: net/minecraft/client/quickplay/QuickPlayLog$QuickPlayWorld/f_278464_ ()Lnet/minecraft/client/quickplay/QuickPlayLog$Type; net/minecraft/client/quickplay/QuickPlayLog$QuickPlayWorld/type ()Lnet/minecraft/client/quickplay/QuickPlayLog$Type; +MD: net/minecraft/client/quickplay/QuickPlayLog$QuickPlayWorld/f_278469_ ()Ljava/lang/String; net/minecraft/client/quickplay/QuickPlayLog$QuickPlayWorld/name ()Ljava/lang/String; +MD: net/minecraft/client/quickplay/QuickPlayLog$QuickPlayWorld/hashCode ()I net/minecraft/client/quickplay/QuickPlayLog$QuickPlayWorld/hashCode ()I +MD: net/minecraft/client/quickplay/QuickPlayLog$QuickPlayWorld/m_278843_ (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/client/quickplay/QuickPlayLog$QuickPlayWorld/lambda$static$0 (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/client/quickplay/QuickPlayLog$QuickPlayWorld/toString ()Ljava/lang/String; net/minecraft/client/quickplay/QuickPlayLog$QuickPlayWorld/toString ()Ljava/lang/String; +MD: net/minecraft/client/quickplay/QuickPlayLog$Type/ ()V net/minecraft/client/quickplay/QuickPlayLog$Type/ ()V +MD: net/minecraft/client/quickplay/QuickPlayLog$Type/ (Ljava/lang/String;ILjava/lang/String;)V net/minecraft/client/quickplay/QuickPlayLog$Type/ (Ljava/lang/String;ILjava/lang/String;)V +MD: net/minecraft/client/quickplay/QuickPlayLog$Type/m_278856_ ()[Lnet/minecraft/client/quickplay/QuickPlayLog$Type; net/minecraft/client/quickplay/QuickPlayLog$Type/$values ()[Lnet/minecraft/client/quickplay/QuickPlayLog$Type; +MD: net/minecraft/client/quickplay/QuickPlayLog$Type/m_7912_ ()Ljava/lang/String; net/minecraft/client/quickplay/QuickPlayLog$Type/getSerializedName ()Ljava/lang/String; +MD: net/minecraft/client/quickplay/QuickPlayLog$Type/valueOf (Ljava/lang/String;)Lnet/minecraft/client/quickplay/QuickPlayLog$Type; net/minecraft/client/quickplay/QuickPlayLog$Type/valueOf (Ljava/lang/String;)Lnet/minecraft/client/quickplay/QuickPlayLog$Type; +MD: net/minecraft/client/quickplay/QuickPlayLog$Type/values ()[Lnet/minecraft/client/quickplay/QuickPlayLog$Type; net/minecraft/client/quickplay/QuickPlayLog$Type/values ()[Lnet/minecraft/client/quickplay/QuickPlayLog$Type; +MD: net/minecraft/client/renderer/BiomeColors/ ()V net/minecraft/client/renderer/BiomeColors/ ()V +MD: net/minecraft/client/renderer/BiomeColors/ ()V net/minecraft/client/renderer/BiomeColors/ ()V +MD: net/minecraft/client/renderer/BiomeColors/m_108793_ (Lnet/minecraft/world/level/BlockAndTintGetter;Lnet/minecraft/core/BlockPos;)I net/minecraft/client/renderer/BiomeColors/getAverageGrassColor (Lnet/minecraft/world/level/BlockAndTintGetter;Lnet/minecraft/core/BlockPos;)I +MD: net/minecraft/client/renderer/BiomeColors/m_108796_ (Lnet/minecraft/world/level/BlockAndTintGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/ColorResolver;)I net/minecraft/client/renderer/BiomeColors/getAverageColor (Lnet/minecraft/world/level/BlockAndTintGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/ColorResolver;)I +MD: net/minecraft/client/renderer/BiomeColors/m_108800_ (Lnet/minecraft/world/level/biome/Biome;DD)I net/minecraft/client/renderer/BiomeColors/lambda$static$1 (Lnet/minecraft/world/level/biome/Biome;DD)I +MD: net/minecraft/client/renderer/BiomeColors/m_108804_ (Lnet/minecraft/world/level/BlockAndTintGetter;Lnet/minecraft/core/BlockPos;)I net/minecraft/client/renderer/BiomeColors/getAverageFoliageColor (Lnet/minecraft/world/level/BlockAndTintGetter;Lnet/minecraft/core/BlockPos;)I +MD: net/minecraft/client/renderer/BiomeColors/m_108807_ (Lnet/minecraft/world/level/biome/Biome;DD)I net/minecraft/client/renderer/BiomeColors/lambda$static$0 (Lnet/minecraft/world/level/biome/Biome;DD)I +MD: net/minecraft/client/renderer/BiomeColors/m_108811_ (Lnet/minecraft/world/level/BlockAndTintGetter;Lnet/minecraft/core/BlockPos;)I net/minecraft/client/renderer/BiomeColors/getAverageWaterColor (Lnet/minecraft/world/level/BlockAndTintGetter;Lnet/minecraft/core/BlockPos;)I +MD: net/minecraft/client/renderer/BlockEntityWithoutLevelRenderer/ ()V net/minecraft/client/renderer/BlockEntityWithoutLevelRenderer/ ()V +MD: net/minecraft/client/renderer/BlockEntityWithoutLevelRenderer/ (Lnet/minecraft/client/renderer/blockentity/BlockEntityRenderDispatcher;Lnet/minecraft/client/model/geom/EntityModelSet;)V net/minecraft/client/renderer/BlockEntityWithoutLevelRenderer/ (Lnet/minecraft/client/renderer/blockentity/BlockEntityRenderDispatcher;Lnet/minecraft/client/model/geom/EntityModelSet;)V +MD: net/minecraft/client/renderer/BlockEntityWithoutLevelRenderer/m_108829_ (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/item/ItemDisplayContext;Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;II)V net/minecraft/client/renderer/BlockEntityWithoutLevelRenderer/renderByItem (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/item/ItemDisplayContext;Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;II)V +MD: net/minecraft/client/renderer/BlockEntityWithoutLevelRenderer/m_172552_ (I)[Lnet/minecraft/world/level/block/entity/ShulkerBoxBlockEntity; net/minecraft/client/renderer/BlockEntityWithoutLevelRenderer/lambda$static$1 (I)[Lnet/minecraft/world/level/block/entity/ShulkerBoxBlockEntity; +MD: net/minecraft/client/renderer/BlockEntityWithoutLevelRenderer/m_172556_ (Lnet/minecraft/world/item/DyeColor;)Lnet/minecraft/world/level/block/entity/ShulkerBoxBlockEntity; net/minecraft/client/renderer/BlockEntityWithoutLevelRenderer/lambda$static$0 (Lnet/minecraft/world/item/DyeColor;)Lnet/minecraft/world/level/block/entity/ShulkerBoxBlockEntity; +MD: net/minecraft/client/renderer/BlockEntityWithoutLevelRenderer/m_172558_ (Lnet/minecraft/nbt/CompoundTag;Lcom/mojang/authlib/GameProfile;)V net/minecraft/client/renderer/BlockEntityWithoutLevelRenderer/lambda$renderByItem$2 (Lnet/minecraft/nbt/CompoundTag;Lcom/mojang/authlib/GameProfile;)V +MD: net/minecraft/client/renderer/BlockEntityWithoutLevelRenderer/m_6213_ (Lnet/minecraft/server/packs/resources/ResourceManager;)V net/minecraft/client/renderer/BlockEntityWithoutLevelRenderer/onResourceManagerReload (Lnet/minecraft/server/packs/resources/ResourceManager;)V +MD: net/minecraft/client/renderer/ChunkBufferBuilderPack/ ()V net/minecraft/client/renderer/ChunkBufferBuilderPack/ ()V +MD: net/minecraft/client/renderer/ChunkBufferBuilderPack/m_108838_ ()V net/minecraft/client/renderer/ChunkBufferBuilderPack/clearAll ()V +MD: net/minecraft/client/renderer/ChunkBufferBuilderPack/m_108839_ (Lnet/minecraft/client/renderer/RenderType;)Lcom/mojang/blaze3d/vertex/BufferBuilder; net/minecraft/client/renderer/ChunkBufferBuilderPack/builder (Lnet/minecraft/client/renderer/RenderType;)Lcom/mojang/blaze3d/vertex/BufferBuilder; +MD: net/minecraft/client/renderer/ChunkBufferBuilderPack/m_108841_ ()V net/minecraft/client/renderer/ChunkBufferBuilderPack/discardAll ()V +MD: net/minecraft/client/renderer/ChunkBufferBuilderPack/m_108842_ (Lnet/minecraft/client/renderer/RenderType;)Lcom/mojang/blaze3d/vertex/BufferBuilder; net/minecraft/client/renderer/ChunkBufferBuilderPack/lambda$new$1 (Lnet/minecraft/client/renderer/RenderType;)Lcom/mojang/blaze3d/vertex/BufferBuilder; +MD: net/minecraft/client/renderer/ChunkBufferBuilderPack/m_108844_ (Lnet/minecraft/client/renderer/RenderType;)Lnet/minecraft/client/renderer/RenderType; net/minecraft/client/renderer/ChunkBufferBuilderPack/lambda$new$0 (Lnet/minecraft/client/renderer/RenderType;)Lnet/minecraft/client/renderer/RenderType; +MD: net/minecraft/client/renderer/CubeMap/ (Lnet/minecraft/resources/ResourceLocation;)V net/minecraft/client/renderer/CubeMap/ (Lnet/minecraft/resources/ResourceLocation;)V +MD: net/minecraft/client/renderer/CubeMap/m_108849_ (Lnet/minecraft/client/Minecraft;FFF)V net/minecraft/client/renderer/CubeMap/render (Lnet/minecraft/client/Minecraft;FFF)V +MD: net/minecraft/client/renderer/CubeMap/m_108854_ (Lnet/minecraft/client/renderer/texture/TextureManager;Ljava/util/concurrent/Executor;)Ljava/util/concurrent/CompletableFuture; net/minecraft/client/renderer/CubeMap/preload (Lnet/minecraft/client/renderer/texture/TextureManager;Ljava/util/concurrent/Executor;)Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/client/renderer/DimensionSpecialEffects/ ()V net/minecraft/client/renderer/DimensionSpecialEffects/ ()V +MD: net/minecraft/client/renderer/DimensionSpecialEffects/ (FZLnet/minecraft/client/renderer/DimensionSpecialEffects$SkyType;ZZ)V net/minecraft/client/renderer/DimensionSpecialEffects/ (FZLnet/minecraft/client/renderer/DimensionSpecialEffects$SkyType;ZZ)V +MD: net/minecraft/client/renderer/DimensionSpecialEffects/m_108871_ ()F net/minecraft/client/renderer/DimensionSpecialEffects/getCloudHeight ()F +MD: net/minecraft/client/renderer/DimensionSpecialEffects/m_108876_ (Lnet/minecraft/world/level/dimension/DimensionType;)Lnet/minecraft/client/renderer/DimensionSpecialEffects; net/minecraft/client/renderer/DimensionSpecialEffects/forType (Lnet/minecraft/world/level/dimension/DimensionType;)Lnet/minecraft/client/renderer/DimensionSpecialEffects; +MD: net/minecraft/client/renderer/DimensionSpecialEffects/m_108880_ (Lit/unimi/dsi/fastutil/objects/Object2ObjectArrayMap;)V net/minecraft/client/renderer/DimensionSpecialEffects/lambda$static$0 (Lit/unimi/dsi/fastutil/objects/Object2ObjectArrayMap;)V +MD: net/minecraft/client/renderer/DimensionSpecialEffects/m_108882_ ()Z net/minecraft/client/renderer/DimensionSpecialEffects/hasGround ()Z +MD: net/minecraft/client/renderer/DimensionSpecialEffects/m_108883_ ()Lnet/minecraft/client/renderer/DimensionSpecialEffects$SkyType; net/minecraft/client/renderer/DimensionSpecialEffects/skyType ()Lnet/minecraft/client/renderer/DimensionSpecialEffects$SkyType; +MD: net/minecraft/client/renderer/DimensionSpecialEffects/m_108884_ ()Z net/minecraft/client/renderer/DimensionSpecialEffects/forceBrightLightmap ()Z +MD: net/minecraft/client/renderer/DimensionSpecialEffects/m_108885_ ()Z net/minecraft/client/renderer/DimensionSpecialEffects/constantAmbientLight ()Z +MD: net/minecraft/client/renderer/DimensionSpecialEffects/m_5781_ (II)Z net/minecraft/client/renderer/DimensionSpecialEffects/isFoggyAt (II)Z +MD: net/minecraft/client/renderer/DimensionSpecialEffects/m_5927_ (Lnet/minecraft/world/phys/Vec3;F)Lnet/minecraft/world/phys/Vec3; net/minecraft/client/renderer/DimensionSpecialEffects/getBrightnessDependentFogColor (Lnet/minecraft/world/phys/Vec3;F)Lnet/minecraft/world/phys/Vec3; +MD: net/minecraft/client/renderer/DimensionSpecialEffects/m_7518_ (FF)[F net/minecraft/client/renderer/DimensionSpecialEffects/getSunriseColor (FF)[F +MD: net/minecraft/client/renderer/DimensionSpecialEffects$EndEffects/ ()V net/minecraft/client/renderer/DimensionSpecialEffects$EndEffects/ ()V +MD: net/minecraft/client/renderer/DimensionSpecialEffects$EndEffects/m_5781_ (II)Z net/minecraft/client/renderer/DimensionSpecialEffects$EndEffects/isFoggyAt (II)Z +MD: net/minecraft/client/renderer/DimensionSpecialEffects$EndEffects/m_5927_ (Lnet/minecraft/world/phys/Vec3;F)Lnet/minecraft/world/phys/Vec3; net/minecraft/client/renderer/DimensionSpecialEffects$EndEffects/getBrightnessDependentFogColor (Lnet/minecraft/world/phys/Vec3;F)Lnet/minecraft/world/phys/Vec3; +MD: net/minecraft/client/renderer/DimensionSpecialEffects$EndEffects/m_7518_ (FF)[F net/minecraft/client/renderer/DimensionSpecialEffects$EndEffects/getSunriseColor (FF)[F +MD: net/minecraft/client/renderer/DimensionSpecialEffects$NetherEffects/ ()V net/minecraft/client/renderer/DimensionSpecialEffects$NetherEffects/ ()V +MD: net/minecraft/client/renderer/DimensionSpecialEffects$NetherEffects/m_5781_ (II)Z net/minecraft/client/renderer/DimensionSpecialEffects$NetherEffects/isFoggyAt (II)Z +MD: net/minecraft/client/renderer/DimensionSpecialEffects$NetherEffects/m_5927_ (Lnet/minecraft/world/phys/Vec3;F)Lnet/minecraft/world/phys/Vec3; net/minecraft/client/renderer/DimensionSpecialEffects$NetherEffects/getBrightnessDependentFogColor (Lnet/minecraft/world/phys/Vec3;F)Lnet/minecraft/world/phys/Vec3; +MD: net/minecraft/client/renderer/DimensionSpecialEffects$OverworldEffects/ ()V net/minecraft/client/renderer/DimensionSpecialEffects$OverworldEffects/ ()V +MD: net/minecraft/client/renderer/DimensionSpecialEffects$OverworldEffects/m_5781_ (II)Z net/minecraft/client/renderer/DimensionSpecialEffects$OverworldEffects/isFoggyAt (II)Z +MD: net/minecraft/client/renderer/DimensionSpecialEffects$OverworldEffects/m_5927_ (Lnet/minecraft/world/phys/Vec3;F)Lnet/minecraft/world/phys/Vec3; net/minecraft/client/renderer/DimensionSpecialEffects$OverworldEffects/getBrightnessDependentFogColor (Lnet/minecraft/world/phys/Vec3;F)Lnet/minecraft/world/phys/Vec3; +MD: net/minecraft/client/renderer/DimensionSpecialEffects$SkyType/ ()V net/minecraft/client/renderer/DimensionSpecialEffects$SkyType/ ()V +MD: net/minecraft/client/renderer/DimensionSpecialEffects$SkyType/ (Ljava/lang/String;I)V net/minecraft/client/renderer/DimensionSpecialEffects$SkyType/ (Ljava/lang/String;I)V +MD: net/minecraft/client/renderer/DimensionSpecialEffects$SkyType/m_172563_ ()[Lnet/minecraft/client/renderer/DimensionSpecialEffects$SkyType; net/minecraft/client/renderer/DimensionSpecialEffects$SkyType/$values ()[Lnet/minecraft/client/renderer/DimensionSpecialEffects$SkyType; +MD: net/minecraft/client/renderer/DimensionSpecialEffects$SkyType/valueOf (Ljava/lang/String;)Lnet/minecraft/client/renderer/DimensionSpecialEffects$SkyType; net/minecraft/client/renderer/DimensionSpecialEffects$SkyType/valueOf (Ljava/lang/String;)Lnet/minecraft/client/renderer/DimensionSpecialEffects$SkyType; +MD: net/minecraft/client/renderer/DimensionSpecialEffects$SkyType/values ()[Lnet/minecraft/client/renderer/DimensionSpecialEffects$SkyType; net/minecraft/client/renderer/DimensionSpecialEffects$SkyType/values ()[Lnet/minecraft/client/renderer/DimensionSpecialEffects$SkyType; +MD: net/minecraft/client/renderer/EffectInstance/ ()V net/minecraft/client/renderer/EffectInstance/ ()V +MD: net/minecraft/client/renderer/EffectInstance/ (Lnet/minecraft/server/packs/resources/ResourceManager;Ljava/lang/String;)V net/minecraft/client/renderer/EffectInstance/ (Lnet/minecraft/server/packs/resources/ResourceManager;Ljava/lang/String;)V +MD: net/minecraft/client/renderer/EffectInstance/close ()V net/minecraft/client/renderer/EffectInstance/close ()V +MD: net/minecraft/client/renderer/EffectInstance/m_108943_ ()I net/minecraft/client/renderer/EffectInstance/getId ()I +MD: net/minecraft/client/renderer/EffectInstance/m_108948_ (Lcom/google/gson/JsonElement;)V net/minecraft/client/renderer/EffectInstance/parseSamplerNode (Lcom/google/gson/JsonElement;)V +MD: net/minecraft/client/renderer/EffectInstance/m_108950_ (Lcom/google/gson/JsonObject;)Lcom/mojang/blaze3d/shaders/BlendMode; net/minecraft/client/renderer/EffectInstance/parseBlendNode (Lcom/google/gson/JsonObject;)Lcom/mojang/blaze3d/shaders/BlendMode; +MD: net/minecraft/client/renderer/EffectInstance/m_108952_ (Ljava/lang/String;)Lcom/mojang/blaze3d/shaders/Uniform; net/minecraft/client/renderer/EffectInstance/getUniform (Ljava/lang/String;)Lcom/mojang/blaze3d/shaders/Uniform; +MD: net/minecraft/client/renderer/EffectInstance/m_108954_ (Ljava/lang/String;Ljava/util/function/IntSupplier;)V net/minecraft/client/renderer/EffectInstance/setSampler (Ljava/lang/String;Ljava/util/function/IntSupplier;)V +MD: net/minecraft/client/renderer/EffectInstance/m_108957_ ()V net/minecraft/client/renderer/EffectInstance/markDirty ()V +MD: net/minecraft/client/renderer/EffectInstance/m_108958_ (Lcom/google/gson/JsonElement;)V net/minecraft/client/renderer/EffectInstance/parseUniformNode (Lcom/google/gson/JsonElement;)V +MD: net/minecraft/client/renderer/EffectInstance/m_108960_ (Ljava/lang/String;)Lcom/mojang/blaze3d/shaders/AbstractUniform; net/minecraft/client/renderer/EffectInstance/safeGetUniform (Ljava/lang/String;)Lcom/mojang/blaze3d/shaders/AbstractUniform; +MD: net/minecraft/client/renderer/EffectInstance/m_108962_ ()Lcom/mojang/blaze3d/shaders/Program; net/minecraft/client/renderer/EffectInstance/getVertexProgram ()Lcom/mojang/blaze3d/shaders/Program; +MD: net/minecraft/client/renderer/EffectInstance/m_108964_ ()Lcom/mojang/blaze3d/shaders/Program; net/minecraft/client/renderer/EffectInstance/getFragmentProgram ()Lcom/mojang/blaze3d/shaders/Program; +MD: net/minecraft/client/renderer/EffectInstance/m_108965_ ()V net/minecraft/client/renderer/EffectInstance/clear ()V +MD: net/minecraft/client/renderer/EffectInstance/m_108966_ ()V net/minecraft/client/renderer/EffectInstance/apply ()V +MD: net/minecraft/client/renderer/EffectInstance/m_108967_ ()V net/minecraft/client/renderer/EffectInstance/updateLocations ()V +MD: net/minecraft/client/renderer/EffectInstance/m_142662_ ()V net/minecraft/client/renderer/EffectInstance/attachToProgram ()V +MD: net/minecraft/client/renderer/EffectInstance/m_172566_ (Lnet/minecraft/server/packs/resources/ResourceManager;Lcom/mojang/blaze3d/shaders/Program$Type;Ljava/lang/String;)Lcom/mojang/blaze3d/shaders/EffectProgram; net/minecraft/client/renderer/EffectInstance/getOrCreate (Lnet/minecraft/server/packs/resources/ResourceManager;Lcom/mojang/blaze3d/shaders/Program$Type;Ljava/lang/String;)Lcom/mojang/blaze3d/shaders/EffectProgram; +MD: net/minecraft/client/renderer/EffectInstance/m_172571_ ()Ljava/lang/String; net/minecraft/client/renderer/EffectInstance/getName ()Ljava/lang/String; +MD: net/minecraft/client/renderer/FaceInfo/ ()V net/minecraft/client/renderer/FaceInfo/ ()V +MD: net/minecraft/client/renderer/FaceInfo/ (Ljava/lang/String;I[Lnet/minecraft/client/renderer/FaceInfo$VertexInfo;)V net/minecraft/client/renderer/FaceInfo/ (Ljava/lang/String;I[Lnet/minecraft/client/renderer/FaceInfo$VertexInfo;)V +MD: net/minecraft/client/renderer/FaceInfo/m_108982_ (I)Lnet/minecraft/client/renderer/FaceInfo$VertexInfo; net/minecraft/client/renderer/FaceInfo/getVertexInfo (I)Lnet/minecraft/client/renderer/FaceInfo$VertexInfo; +MD: net/minecraft/client/renderer/FaceInfo/m_108984_ (Lnet/minecraft/core/Direction;)Lnet/minecraft/client/renderer/FaceInfo; net/minecraft/client/renderer/FaceInfo/fromFacing (Lnet/minecraft/core/Direction;)Lnet/minecraft/client/renderer/FaceInfo; +MD: net/minecraft/client/renderer/FaceInfo/m_108986_ ([Lnet/minecraft/client/renderer/FaceInfo;)V net/minecraft/client/renderer/FaceInfo/lambda$static$0 ([Lnet/minecraft/client/renderer/FaceInfo;)V +MD: net/minecraft/client/renderer/FaceInfo/m_172572_ ()[Lnet/minecraft/client/renderer/FaceInfo; net/minecraft/client/renderer/FaceInfo/$values ()[Lnet/minecraft/client/renderer/FaceInfo; +MD: net/minecraft/client/renderer/FaceInfo/valueOf (Ljava/lang/String;)Lnet/minecraft/client/renderer/FaceInfo; net/minecraft/client/renderer/FaceInfo/valueOf (Ljava/lang/String;)Lnet/minecraft/client/renderer/FaceInfo; +MD: net/minecraft/client/renderer/FaceInfo/values ()[Lnet/minecraft/client/renderer/FaceInfo; net/minecraft/client/renderer/FaceInfo/values ()[Lnet/minecraft/client/renderer/FaceInfo; +MD: net/minecraft/client/renderer/FaceInfo$Constants/ ()V net/minecraft/client/renderer/FaceInfo$Constants/ ()V +MD: net/minecraft/client/renderer/FaceInfo$Constants/ ()V net/minecraft/client/renderer/FaceInfo$Constants/ ()V +MD: net/minecraft/client/renderer/FaceInfo$VertexInfo/ (III)V net/minecraft/client/renderer/FaceInfo$VertexInfo/ (III)V +MD: net/minecraft/client/renderer/FogRenderer/ ()V net/minecraft/client/renderer/FogRenderer/ ()V +MD: net/minecraft/client/renderer/FogRenderer/ ()V net/minecraft/client/renderer/FogRenderer/ ()V +MD: net/minecraft/client/renderer/FogRenderer/m_109017_ ()V net/minecraft/client/renderer/FogRenderer/setupNoFog ()V +MD: net/minecraft/client/renderer/FogRenderer/m_109018_ (Lnet/minecraft/client/Camera;FLnet/minecraft/client/multiplayer/ClientLevel;IF)V net/minecraft/client/renderer/FogRenderer/setupColor (Lnet/minecraft/client/Camera;FLnet/minecraft/client/multiplayer/ClientLevel;IF)V +MD: net/minecraft/client/renderer/FogRenderer/m_109029_ (Lnet/minecraft/client/multiplayer/ClientLevel;Lnet/minecraft/world/level/biome/BiomeManager;FIII)Lnet/minecraft/world/phys/Vec3; net/minecraft/client/renderer/FogRenderer/lambda$setupColor$0 (Lnet/minecraft/client/multiplayer/ClientLevel;Lnet/minecraft/world/level/biome/BiomeManager;FIII)Lnet/minecraft/world/phys/Vec3; +MD: net/minecraft/client/renderer/FogRenderer/m_109036_ ()V net/minecraft/client/renderer/FogRenderer/levelFogColor ()V +MD: net/minecraft/client/renderer/FogRenderer/m_234165_ (Lnet/minecraft/world/entity/Entity;F)Lnet/minecraft/client/renderer/FogRenderer$MobEffectFogFunction; net/minecraft/client/renderer/FogRenderer/getPriorityFogFunction (Lnet/minecraft/world/entity/Entity;F)Lnet/minecraft/client/renderer/FogRenderer$MobEffectFogFunction; +MD: net/minecraft/client/renderer/FogRenderer/m_234168_ (Lnet/minecraft/world/entity/LivingEntity;FLnet/minecraft/client/renderer/FogRenderer$MobEffectFogFunction;)Z net/minecraft/client/renderer/FogRenderer/lambda$getPriorityFogFunction$1 (Lnet/minecraft/world/entity/LivingEntity;FLnet/minecraft/client/renderer/FogRenderer$MobEffectFogFunction;)Z +MD: net/minecraft/client/renderer/FogRenderer/m_234172_ (Lnet/minecraft/client/Camera;Lnet/minecraft/client/renderer/FogRenderer$FogMode;FZF)V net/minecraft/client/renderer/FogRenderer/setupFog (Lnet/minecraft/client/Camera;Lnet/minecraft/client/renderer/FogRenderer$FogMode;FZF)V +MD: net/minecraft/client/renderer/FogRenderer$BlindnessFogFunction/ ()V net/minecraft/client/renderer/FogRenderer$BlindnessFogFunction/ ()V +MD: net/minecraft/client/renderer/FogRenderer$BlindnessFogFunction/m_213725_ (Lnet/minecraft/client/renderer/FogRenderer$FogData;Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/effect/MobEffectInstance;FF)V net/minecraft/client/renderer/FogRenderer$BlindnessFogFunction/setupFog (Lnet/minecraft/client/renderer/FogRenderer$FogData;Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/effect/MobEffectInstance;FF)V +MD: net/minecraft/client/renderer/FogRenderer$BlindnessFogFunction/m_213948_ ()Lnet/minecraft/world/effect/MobEffect; net/minecraft/client/renderer/FogRenderer$BlindnessFogFunction/getMobEffect ()Lnet/minecraft/world/effect/MobEffect; +MD: net/minecraft/client/renderer/FogRenderer$DarknessFogFunction/ ()V net/minecraft/client/renderer/FogRenderer$DarknessFogFunction/ ()V +MD: net/minecraft/client/renderer/FogRenderer$DarknessFogFunction/m_213725_ (Lnet/minecraft/client/renderer/FogRenderer$FogData;Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/effect/MobEffectInstance;FF)V net/minecraft/client/renderer/FogRenderer$DarknessFogFunction/setupFog (Lnet/minecraft/client/renderer/FogRenderer$FogData;Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/effect/MobEffectInstance;FF)V +MD: net/minecraft/client/renderer/FogRenderer$DarknessFogFunction/m_213936_ (Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/effect/MobEffectInstance;FF)F net/minecraft/client/renderer/FogRenderer$DarknessFogFunction/getModifiedVoidDarkness (Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/effect/MobEffectInstance;FF)F +MD: net/minecraft/client/renderer/FogRenderer$DarknessFogFunction/m_213948_ ()Lnet/minecraft/world/effect/MobEffect; net/minecraft/client/renderer/FogRenderer$DarknessFogFunction/getMobEffect ()Lnet/minecraft/world/effect/MobEffect; +MD: net/minecraft/client/renderer/FogRenderer$FogData/ (Lnet/minecraft/client/renderer/FogRenderer$FogMode;)V net/minecraft/client/renderer/FogRenderer$FogData/ (Lnet/minecraft/client/renderer/FogRenderer$FogMode;)V +MD: net/minecraft/client/renderer/FogRenderer$FogMode/ ()V net/minecraft/client/renderer/FogRenderer$FogMode/ ()V +MD: net/minecraft/client/renderer/FogRenderer$FogMode/ (Ljava/lang/String;I)V net/minecraft/client/renderer/FogRenderer$FogMode/ (Ljava/lang/String;I)V +MD: net/minecraft/client/renderer/FogRenderer$FogMode/m_172577_ ()[Lnet/minecraft/client/renderer/FogRenderer$FogMode; net/minecraft/client/renderer/FogRenderer$FogMode/$values ()[Lnet/minecraft/client/renderer/FogRenderer$FogMode; +MD: net/minecraft/client/renderer/FogRenderer$FogMode/valueOf (Ljava/lang/String;)Lnet/minecraft/client/renderer/FogRenderer$FogMode; net/minecraft/client/renderer/FogRenderer$FogMode/valueOf (Ljava/lang/String;)Lnet/minecraft/client/renderer/FogRenderer$FogMode; +MD: net/minecraft/client/renderer/FogRenderer$FogMode/values ()[Lnet/minecraft/client/renderer/FogRenderer$FogMode; net/minecraft/client/renderer/FogRenderer$FogMode/values ()[Lnet/minecraft/client/renderer/FogRenderer$FogMode; +MD: net/minecraft/client/renderer/FogRenderer$MobEffectFogFunction/m_213725_ (Lnet/minecraft/client/renderer/FogRenderer$FogData;Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/effect/MobEffectInstance;FF)V net/minecraft/client/renderer/FogRenderer$MobEffectFogFunction/setupFog (Lnet/minecraft/client/renderer/FogRenderer$FogData;Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/effect/MobEffectInstance;FF)V +MD: net/minecraft/client/renderer/FogRenderer$MobEffectFogFunction/m_213936_ (Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/effect/MobEffectInstance;FF)F net/minecraft/client/renderer/FogRenderer$MobEffectFogFunction/getModifiedVoidDarkness (Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/effect/MobEffectInstance;FF)F +MD: net/minecraft/client/renderer/FogRenderer$MobEffectFogFunction/m_213948_ ()Lnet/minecraft/world/effect/MobEffect; net/minecraft/client/renderer/FogRenderer$MobEffectFogFunction/getMobEffect ()Lnet/minecraft/world/effect/MobEffect; +MD: net/minecraft/client/renderer/FogRenderer$MobEffectFogFunction/m_234205_ (Lnet/minecraft/world/entity/LivingEntity;F)Z net/minecraft/client/renderer/FogRenderer$MobEffectFogFunction/isEnabled (Lnet/minecraft/world/entity/LivingEntity;F)Z +MD: net/minecraft/client/renderer/GameRenderer/ ()V net/minecraft/client/renderer/GameRenderer/ ()V +MD: net/minecraft/client/renderer/GameRenderer/ (Lnet/minecraft/client/Minecraft;Lnet/minecraft/client/renderer/ItemInHandRenderer;Lnet/minecraft/server/packs/resources/ResourceManager;Lnet/minecraft/client/renderer/RenderBuffers;)V net/minecraft/client/renderer/GameRenderer/ (Lnet/minecraft/client/Minecraft;Lnet/minecraft/client/renderer/ItemInHandRenderer;Lnet/minecraft/server/packs/resources/ResourceManager;Lnet/minecraft/client/renderer/RenderBuffers;)V +MD: net/minecraft/client/renderer/GameRenderer/close ()V net/minecraft/client/renderer/GameRenderer/close ()V +MD: net/minecraft/client/renderer/GameRenderer/m_109086_ ()V net/minecraft/client/renderer/GameRenderer/shutdownEffect ()V +MD: net/minecraft/client/renderer/GameRenderer/m_109087_ (F)V net/minecraft/client/renderer/GameRenderer/pick (F)V +MD: net/minecraft/client/renderer/GameRenderer/m_109089_ (FJLcom/mojang/blaze3d/vertex/PoseStack;)V net/minecraft/client/renderer/GameRenderer/renderLevel (FJLcom/mojang/blaze3d/vertex/PoseStack;)V +MD: net/minecraft/client/renderer/GameRenderer/m_109093_ (FJZ)V net/minecraft/client/renderer/GameRenderer/render (FJZ)V +MD: net/minecraft/client/renderer/GameRenderer/m_109097_ (II)V net/minecraft/client/renderer/GameRenderer/resize (II)V +MD: net/minecraft/client/renderer/GameRenderer/m_109100_ (IIF)V net/minecraft/client/renderer/GameRenderer/renderItemActivationAnimation (IIF)V +MD: net/minecraft/client/renderer/GameRenderer/m_109106_ (Lnet/minecraft/world/entity/Entity;)V net/minecraft/client/renderer/GameRenderer/checkEntityPostEffect (Lnet/minecraft/world/entity/Entity;)V +MD: net/minecraft/client/renderer/GameRenderer/m_109108_ (Lnet/minecraft/world/entity/LivingEntity;F)F net/minecraft/client/renderer/GameRenderer/getNightVisionScale (Lnet/minecraft/world/entity/LivingEntity;F)F +MD: net/minecraft/client/renderer/GameRenderer/m_109113_ (Lnet/minecraft/world/item/ItemStack;)V net/minecraft/client/renderer/GameRenderer/displayItemActivation (Lnet/minecraft/world/item/ItemStack;)V +MD: net/minecraft/client/renderer/GameRenderer/m_109117_ (Lcom/mojang/blaze3d/vertex/PoseStack;F)V net/minecraft/client/renderer/GameRenderer/bobHurt (Lcom/mojang/blaze3d/vertex/PoseStack;F)V +MD: net/minecraft/client/renderer/GameRenderer/m_109120_ (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/Camera;F)V net/minecraft/client/renderer/GameRenderer/renderItemInHand (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/Camera;F)V +MD: net/minecraft/client/renderer/GameRenderer/m_109128_ (Lnet/minecraft/resources/ResourceLocation;)V net/minecraft/client/renderer/GameRenderer/loadEffect (Lnet/minecraft/resources/ResourceLocation;)V +MD: net/minecraft/client/renderer/GameRenderer/m_109130_ ()V net/minecraft/client/renderer/GameRenderer/togglePostEffect ()V +MD: net/minecraft/client/renderer/GameRenderer/m_109131_ (F)F net/minecraft/client/renderer/GameRenderer/getDarkenWorldAmount (F)F +MD: net/minecraft/client/renderer/GameRenderer/m_109138_ (Lcom/mojang/blaze3d/vertex/PoseStack;F)V net/minecraft/client/renderer/GameRenderer/bobView (Lcom/mojang/blaze3d/vertex/PoseStack;F)V +MD: net/minecraft/client/renderer/GameRenderer/m_109141_ (Lnet/minecraft/client/Camera;FZ)D net/minecraft/client/renderer/GameRenderer/getFov (Lnet/minecraft/client/Camera;FZ)D +MD: net/minecraft/client/renderer/GameRenderer/m_109148_ ()V net/minecraft/client/renderer/GameRenderer/tick ()V +MD: net/minecraft/client/renderer/GameRenderer/m_109149_ ()Lnet/minecraft/client/renderer/PostChain; net/minecraft/client/renderer/GameRenderer/currentEffect ()Lnet/minecraft/client/renderer/PostChain; +MD: net/minecraft/client/renderer/GameRenderer/m_109150_ ()V net/minecraft/client/renderer/GameRenderer/resetData ()V +MD: net/minecraft/client/renderer/GameRenderer/m_109151_ ()Lnet/minecraft/client/gui/MapRenderer; net/minecraft/client/renderer/GameRenderer/getMapRenderer ()Lnet/minecraft/client/gui/MapRenderer; +MD: net/minecraft/client/renderer/GameRenderer/m_109152_ ()F net/minecraft/client/renderer/GameRenderer/getRenderDistance ()F +MD: net/minecraft/client/renderer/GameRenderer/m_109153_ ()Lnet/minecraft/client/Camera; net/minecraft/client/renderer/GameRenderer/getMainCamera ()Lnet/minecraft/client/Camera; +MD: net/minecraft/client/renderer/GameRenderer/m_109154_ ()Lnet/minecraft/client/renderer/LightTexture; net/minecraft/client/renderer/GameRenderer/lightTexture ()Lnet/minecraft/client/renderer/LightTexture; +MD: net/minecraft/client/renderer/GameRenderer/m_109155_ ()Lnet/minecraft/client/renderer/texture/OverlayTexture; net/minecraft/client/renderer/GameRenderer/overlayTexture ()Lnet/minecraft/client/renderer/texture/OverlayTexture; +MD: net/minecraft/client/renderer/GameRenderer/m_109156_ ()V net/minecraft/client/renderer/GameRenderer/tickFov ()V +MD: net/minecraft/client/renderer/GameRenderer/m_109158_ ()Z net/minecraft/client/renderer/GameRenderer/shouldRenderBlockOutline ()Z +MD: net/minecraft/client/renderer/GameRenderer/m_172637_ ()Lnet/minecraft/client/renderer/ShaderInstance; net/minecraft/client/renderer/GameRenderer/getPositionTexLightmapColorShader ()Lnet/minecraft/client/renderer/ShaderInstance; +MD: net/minecraft/client/renderer/GameRenderer/m_172638_ (Lnet/minecraft/client/renderer/ShaderInstance;)V net/minecraft/client/renderer/GameRenderer/lambda$reloadShaders$25 (Lnet/minecraft/client/renderer/ShaderInstance;)V +MD: net/minecraft/client/renderer/GameRenderer/m_172640_ ()Lnet/minecraft/client/renderer/ShaderInstance; net/minecraft/client/renderer/GameRenderer/getRendertypeSolidShader ()Lnet/minecraft/client/renderer/ShaderInstance; +MD: net/minecraft/client/renderer/GameRenderer/m_172641_ (Lnet/minecraft/client/renderer/ShaderInstance;)V net/minecraft/client/renderer/GameRenderer/lambda$reloadShaders$24 (Lnet/minecraft/client/renderer/ShaderInstance;)V +MD: net/minecraft/client/renderer/GameRenderer/m_172643_ ()Lnet/minecraft/client/renderer/ShaderInstance; net/minecraft/client/renderer/GameRenderer/getRendertypeCutoutMippedShader ()Lnet/minecraft/client/renderer/ShaderInstance; +MD: net/minecraft/client/renderer/GameRenderer/m_172644_ (Lnet/minecraft/client/renderer/ShaderInstance;)V net/minecraft/client/renderer/GameRenderer/lambda$reloadShaders$23 (Lnet/minecraft/client/renderer/ShaderInstance;)V +MD: net/minecraft/client/renderer/GameRenderer/m_172646_ ()Lnet/minecraft/client/renderer/ShaderInstance; net/minecraft/client/renderer/GameRenderer/getRendertypeCutoutShader ()Lnet/minecraft/client/renderer/ShaderInstance; +MD: net/minecraft/client/renderer/GameRenderer/m_172647_ (Lnet/minecraft/client/renderer/ShaderInstance;)V net/minecraft/client/renderer/GameRenderer/lambda$reloadShaders$22 (Lnet/minecraft/client/renderer/ShaderInstance;)V +MD: net/minecraft/client/renderer/GameRenderer/m_172649_ ()Lnet/minecraft/client/renderer/ShaderInstance; net/minecraft/client/renderer/GameRenderer/getRendertypeTranslucentShader ()Lnet/minecraft/client/renderer/ShaderInstance; +MD: net/minecraft/client/renderer/GameRenderer/m_172650_ (Lnet/minecraft/client/renderer/ShaderInstance;)V net/minecraft/client/renderer/GameRenderer/lambda$reloadShaders$21 (Lnet/minecraft/client/renderer/ShaderInstance;)V +MD: net/minecraft/client/renderer/GameRenderer/m_172652_ ()Lnet/minecraft/client/renderer/ShaderInstance; net/minecraft/client/renderer/GameRenderer/getRendertypeTranslucentMovingBlockShader ()Lnet/minecraft/client/renderer/ShaderInstance; +MD: net/minecraft/client/renderer/GameRenderer/m_172653_ (Lnet/minecraft/client/renderer/ShaderInstance;)V net/minecraft/client/renderer/GameRenderer/lambda$reloadShaders$20 (Lnet/minecraft/client/renderer/ShaderInstance;)V +MD: net/minecraft/client/renderer/GameRenderer/m_172655_ ()Lnet/minecraft/client/renderer/ShaderInstance; net/minecraft/client/renderer/GameRenderer/getRendertypeTranslucentNoCrumblingShader ()Lnet/minecraft/client/renderer/ShaderInstance; +MD: net/minecraft/client/renderer/GameRenderer/m_172656_ (Lnet/minecraft/client/renderer/ShaderInstance;)V net/minecraft/client/renderer/GameRenderer/lambda$reloadShaders$19 (Lnet/minecraft/client/renderer/ShaderInstance;)V +MD: net/minecraft/client/renderer/GameRenderer/m_172658_ ()Lnet/minecraft/client/renderer/ShaderInstance; net/minecraft/client/renderer/GameRenderer/getRendertypeArmorCutoutNoCullShader ()Lnet/minecraft/client/renderer/ShaderInstance; +MD: net/minecraft/client/renderer/GameRenderer/m_172659_ (Lnet/minecraft/client/renderer/ShaderInstance;)V net/minecraft/client/renderer/GameRenderer/lambda$reloadShaders$18 (Lnet/minecraft/client/renderer/ShaderInstance;)V +MD: net/minecraft/client/renderer/GameRenderer/m_172661_ ()Lnet/minecraft/client/renderer/ShaderInstance; net/minecraft/client/renderer/GameRenderer/getRendertypeEntitySolidShader ()Lnet/minecraft/client/renderer/ShaderInstance; +MD: net/minecraft/client/renderer/GameRenderer/m_172662_ (Lnet/minecraft/client/renderer/ShaderInstance;)V net/minecraft/client/renderer/GameRenderer/lambda$reloadShaders$17 (Lnet/minecraft/client/renderer/ShaderInstance;)V +MD: net/minecraft/client/renderer/GameRenderer/m_172664_ ()Lnet/minecraft/client/renderer/ShaderInstance; net/minecraft/client/renderer/GameRenderer/getRendertypeEntityCutoutShader ()Lnet/minecraft/client/renderer/ShaderInstance; +MD: net/minecraft/client/renderer/GameRenderer/m_172665_ (Lnet/minecraft/client/renderer/ShaderInstance;)V net/minecraft/client/renderer/GameRenderer/lambda$reloadShaders$16 (Lnet/minecraft/client/renderer/ShaderInstance;)V +MD: net/minecraft/client/renderer/GameRenderer/m_172667_ ()Lnet/minecraft/client/renderer/ShaderInstance; net/minecraft/client/renderer/GameRenderer/getRendertypeEntityCutoutNoCullShader ()Lnet/minecraft/client/renderer/ShaderInstance; +MD: net/minecraft/client/renderer/GameRenderer/m_172668_ (Lnet/minecraft/client/renderer/ShaderInstance;)V net/minecraft/client/renderer/GameRenderer/lambda$reloadShaders$15 (Lnet/minecraft/client/renderer/ShaderInstance;)V +MD: net/minecraft/client/renderer/GameRenderer/m_172670_ ()Lnet/minecraft/client/renderer/ShaderInstance; net/minecraft/client/renderer/GameRenderer/getRendertypeEntityCutoutNoCullZOffsetShader ()Lnet/minecraft/client/renderer/ShaderInstance; +MD: net/minecraft/client/renderer/GameRenderer/m_172671_ (Lnet/minecraft/client/renderer/ShaderInstance;)V net/minecraft/client/renderer/GameRenderer/lambda$reloadShaders$14 (Lnet/minecraft/client/renderer/ShaderInstance;)V +MD: net/minecraft/client/renderer/GameRenderer/m_172673_ ()Lnet/minecraft/client/renderer/ShaderInstance; net/minecraft/client/renderer/GameRenderer/getRendertypeItemEntityTranslucentCullShader ()Lnet/minecraft/client/renderer/ShaderInstance; +MD: net/minecraft/client/renderer/GameRenderer/m_172674_ (Lnet/minecraft/client/renderer/ShaderInstance;)V net/minecraft/client/renderer/GameRenderer/lambda$reloadShaders$13 (Lnet/minecraft/client/renderer/ShaderInstance;)V +MD: net/minecraft/client/renderer/GameRenderer/m_172676_ ()Lnet/minecraft/client/renderer/ShaderInstance; net/minecraft/client/renderer/GameRenderer/getRendertypeEntityTranslucentCullShader ()Lnet/minecraft/client/renderer/ShaderInstance; +MD: net/minecraft/client/renderer/GameRenderer/m_172677_ (Lnet/minecraft/client/renderer/ShaderInstance;)V net/minecraft/client/renderer/GameRenderer/lambda$reloadShaders$12 (Lnet/minecraft/client/renderer/ShaderInstance;)V +MD: net/minecraft/client/renderer/GameRenderer/m_172679_ ()Lnet/minecraft/client/renderer/ShaderInstance; net/minecraft/client/renderer/GameRenderer/getRendertypeEntityTranslucentShader ()Lnet/minecraft/client/renderer/ShaderInstance; +MD: net/minecraft/client/renderer/GameRenderer/m_172680_ (Lnet/minecraft/client/renderer/ShaderInstance;)V net/minecraft/client/renderer/GameRenderer/lambda$reloadShaders$11 (Lnet/minecraft/client/renderer/ShaderInstance;)V +MD: net/minecraft/client/renderer/GameRenderer/m_172682_ ()Lnet/minecraft/client/renderer/ShaderInstance; net/minecraft/client/renderer/GameRenderer/getRendertypeEntitySmoothCutoutShader ()Lnet/minecraft/client/renderer/ShaderInstance; +MD: net/minecraft/client/renderer/GameRenderer/m_172683_ (Lnet/minecraft/client/renderer/ShaderInstance;)V net/minecraft/client/renderer/GameRenderer/lambda$reloadShaders$10 (Lnet/minecraft/client/renderer/ShaderInstance;)V +MD: net/minecraft/client/renderer/GameRenderer/m_172685_ ()Lnet/minecraft/client/renderer/ShaderInstance; net/minecraft/client/renderer/GameRenderer/getRendertypeBeaconBeamShader ()Lnet/minecraft/client/renderer/ShaderInstance; +MD: net/minecraft/client/renderer/GameRenderer/m_172686_ (Lnet/minecraft/client/renderer/ShaderInstance;)V net/minecraft/client/renderer/GameRenderer/lambda$reloadShaders$9 (Lnet/minecraft/client/renderer/ShaderInstance;)V +MD: net/minecraft/client/renderer/GameRenderer/m_172688_ ()Lnet/minecraft/client/renderer/ShaderInstance; net/minecraft/client/renderer/GameRenderer/getRendertypeEntityDecalShader ()Lnet/minecraft/client/renderer/ShaderInstance; +MD: net/minecraft/client/renderer/GameRenderer/m_172689_ (Lnet/minecraft/client/renderer/ShaderInstance;)V net/minecraft/client/renderer/GameRenderer/lambda$reloadShaders$8 (Lnet/minecraft/client/renderer/ShaderInstance;)V +MD: net/minecraft/client/renderer/GameRenderer/m_172691_ ()Lnet/minecraft/client/renderer/ShaderInstance; net/minecraft/client/renderer/GameRenderer/getRendertypeEntityNoOutlineShader ()Lnet/minecraft/client/renderer/ShaderInstance; +MD: net/minecraft/client/renderer/GameRenderer/m_172692_ (Lnet/minecraft/client/renderer/ShaderInstance;)V net/minecraft/client/renderer/GameRenderer/lambda$reloadShaders$7 (Lnet/minecraft/client/renderer/ShaderInstance;)V +MD: net/minecraft/client/renderer/GameRenderer/m_172694_ ()Lnet/minecraft/client/renderer/ShaderInstance; net/minecraft/client/renderer/GameRenderer/getRendertypeEntityShadowShader ()Lnet/minecraft/client/renderer/ShaderInstance; +MD: net/minecraft/client/renderer/GameRenderer/m_172695_ (Lnet/minecraft/client/renderer/ShaderInstance;)V net/minecraft/client/renderer/GameRenderer/lambda$reloadShaders$6 (Lnet/minecraft/client/renderer/ShaderInstance;)V +MD: net/minecraft/client/renderer/GameRenderer/m_172697_ ()Lnet/minecraft/client/renderer/ShaderInstance; net/minecraft/client/renderer/GameRenderer/getRendertypeEntityAlphaShader ()Lnet/minecraft/client/renderer/ShaderInstance; +MD: net/minecraft/client/renderer/GameRenderer/m_172698_ (Lnet/minecraft/client/renderer/ShaderInstance;)V net/minecraft/client/renderer/GameRenderer/lambda$reloadShaders$5 (Lnet/minecraft/client/renderer/ShaderInstance;)V +MD: net/minecraft/client/renderer/GameRenderer/m_172700_ ()Lnet/minecraft/client/renderer/ShaderInstance; net/minecraft/client/renderer/GameRenderer/getRendertypeEyesShader ()Lnet/minecraft/client/renderer/ShaderInstance; +MD: net/minecraft/client/renderer/GameRenderer/m_172701_ (Lnet/minecraft/client/renderer/ShaderInstance;)V net/minecraft/client/renderer/GameRenderer/lambda$reloadShaders$4 (Lnet/minecraft/client/renderer/ShaderInstance;)V +MD: net/minecraft/client/renderer/GameRenderer/m_172703_ ()Lnet/minecraft/client/renderer/ShaderInstance; net/minecraft/client/renderer/GameRenderer/getRendertypeEnergySwirlShader ()Lnet/minecraft/client/renderer/ShaderInstance; +MD: net/minecraft/client/renderer/GameRenderer/m_172704_ (Lnet/minecraft/client/renderer/ShaderInstance;)V net/minecraft/client/renderer/GameRenderer/lambda$reloadShaders$3 (Lnet/minecraft/client/renderer/ShaderInstance;)V +MD: net/minecraft/client/renderer/GameRenderer/m_172706_ ()Lnet/minecraft/client/renderer/ShaderInstance; net/minecraft/client/renderer/GameRenderer/getRendertypeLeashShader ()Lnet/minecraft/client/renderer/ShaderInstance; +MD: net/minecraft/client/renderer/GameRenderer/m_172707_ (Lnet/minecraft/client/renderer/ShaderInstance;)V net/minecraft/client/renderer/GameRenderer/lambda$reloadShaders$2 (Lnet/minecraft/client/renderer/ShaderInstance;)V +MD: net/minecraft/client/renderer/GameRenderer/m_172709_ ()Lnet/minecraft/client/renderer/ShaderInstance; net/minecraft/client/renderer/GameRenderer/getRendertypeWaterMaskShader ()Lnet/minecraft/client/renderer/ShaderInstance; +MD: net/minecraft/client/renderer/GameRenderer/m_172710_ (Lnet/minecraft/client/renderer/ShaderInstance;)V net/minecraft/client/renderer/GameRenderer/lambda$reloadShaders$1 (Lnet/minecraft/client/renderer/ShaderInstance;)V +MD: net/minecraft/client/renderer/GameRenderer/m_172712_ ()Lnet/minecraft/client/renderer/ShaderInstance; net/minecraft/client/renderer/GameRenderer/getRendertypeOutlineShader ()Lnet/minecraft/client/renderer/ShaderInstance; +MD: net/minecraft/client/renderer/GameRenderer/m_172713_ (Lnet/minecraft/client/renderer/ShaderInstance;)V net/minecraft/client/renderer/GameRenderer/lambda$reloadShaders$0 (Lnet/minecraft/client/renderer/ShaderInstance;)V +MD: net/minecraft/client/renderer/GameRenderer/m_172715_ ()Z net/minecraft/client/renderer/GameRenderer/isPanoramicMode ()Z +MD: net/minecraft/client/renderer/GameRenderer/m_172718_ (FFF)V net/minecraft/client/renderer/GameRenderer/renderZoomed (FFF)V +MD: net/minecraft/client/renderer/GameRenderer/m_172722_ (Lnet/minecraft/server/packs/resources/ResourceProvider;)V net/minecraft/client/renderer/GameRenderer/preloadUiShader (Lnet/minecraft/server/packs/resources/ResourceProvider;)V +MD: net/minecraft/client/renderer/GameRenderer/m_172724_ (Lnet/minecraft/server/packs/resources/ResourceProvider;Ljava/lang/String;Lcom/mojang/blaze3d/vertex/VertexFormat;)Lnet/minecraft/client/renderer/ShaderInstance; net/minecraft/client/renderer/GameRenderer/preloadShader (Lnet/minecraft/server/packs/resources/ResourceProvider;Ljava/lang/String;Lcom/mojang/blaze3d/vertex/VertexFormat;)Lnet/minecraft/client/renderer/ShaderInstance; +MD: net/minecraft/client/renderer/GameRenderer/m_172728_ (Lcom/mojang/datafixers/util/Pair;)V net/minecraft/client/renderer/GameRenderer/lambda$reloadShaders$59 (Lcom/mojang/datafixers/util/Pair;)V +MD: net/minecraft/client/renderer/GameRenderer/m_172732_ (Lnet/minecraft/client/renderer/ShaderInstance;)V net/minecraft/client/renderer/GameRenderer/lambda$reloadShaders$53 (Lnet/minecraft/client/renderer/ShaderInstance;)V +MD: net/minecraft/client/renderer/GameRenderer/m_172734_ (Ljava/lang/String;)Lnet/minecraft/client/renderer/ShaderInstance; net/minecraft/client/renderer/GameRenderer/getShader (Ljava/lang/String;)Lnet/minecraft/client/renderer/ShaderInstance; +MD: net/minecraft/client/renderer/GameRenderer/m_172736_ (Z)V net/minecraft/client/renderer/GameRenderer/setRenderHand (Z)V +MD: net/minecraft/client/renderer/GameRenderer/m_172738_ ()Lnet/minecraft/client/renderer/ShaderInstance; net/minecraft/client/renderer/GameRenderer/getRendertypeArmorGlintShader ()Lnet/minecraft/client/renderer/ShaderInstance; +MD: net/minecraft/client/renderer/GameRenderer/m_172741_ ()Lnet/minecraft/client/renderer/ShaderInstance; net/minecraft/client/renderer/GameRenderer/getRendertypeArmorEntityGlintShader ()Lnet/minecraft/client/renderer/ShaderInstance; +MD: net/minecraft/client/renderer/GameRenderer/m_172744_ ()Lnet/minecraft/client/renderer/ShaderInstance; net/minecraft/client/renderer/GameRenderer/getRendertypeGlintTranslucentShader ()Lnet/minecraft/client/renderer/ShaderInstance; +MD: net/minecraft/client/renderer/GameRenderer/m_172745_ ()Lnet/minecraft/client/renderer/ShaderInstance; net/minecraft/client/renderer/GameRenderer/getRendertypeGlintShader ()Lnet/minecraft/client/renderer/ShaderInstance; +MD: net/minecraft/client/renderer/GameRenderer/m_172746_ ()Lnet/minecraft/client/renderer/ShaderInstance; net/minecraft/client/renderer/GameRenderer/getRendertypeGlintDirectShader ()Lnet/minecraft/client/renderer/ShaderInstance; +MD: net/minecraft/client/renderer/GameRenderer/m_172747_ ()Lnet/minecraft/client/renderer/ShaderInstance; net/minecraft/client/renderer/GameRenderer/getRendertypeEntityGlintShader ()Lnet/minecraft/client/renderer/ShaderInstance; +MD: net/minecraft/client/renderer/GameRenderer/m_172748_ ()Lnet/minecraft/client/renderer/ShaderInstance; net/minecraft/client/renderer/GameRenderer/getRendertypeEntityGlintDirectShader ()Lnet/minecraft/client/renderer/ShaderInstance; +MD: net/minecraft/client/renderer/GameRenderer/m_172749_ ()Lnet/minecraft/client/renderer/ShaderInstance; net/minecraft/client/renderer/GameRenderer/getRendertypeTextShader ()Lnet/minecraft/client/renderer/ShaderInstance; +MD: net/minecraft/client/renderer/GameRenderer/m_172750_ ()Lnet/minecraft/client/renderer/ShaderInstance; net/minecraft/client/renderer/GameRenderer/getRendertypeTextIntensityShader ()Lnet/minecraft/client/renderer/ShaderInstance; +MD: net/minecraft/client/renderer/GameRenderer/m_172751_ ()Lnet/minecraft/client/renderer/ShaderInstance; net/minecraft/client/renderer/GameRenderer/getRendertypeTextSeeThroughShader ()Lnet/minecraft/client/renderer/ShaderInstance; +MD: net/minecraft/client/renderer/GameRenderer/m_172752_ ()Lnet/minecraft/client/renderer/ShaderInstance; net/minecraft/client/renderer/GameRenderer/getRendertypeTextIntensitySeeThroughShader ()Lnet/minecraft/client/renderer/ShaderInstance; +MD: net/minecraft/client/renderer/GameRenderer/m_172753_ ()Lnet/minecraft/client/renderer/ShaderInstance; net/minecraft/client/renderer/GameRenderer/getRendertypeLightningShader ()Lnet/minecraft/client/renderer/ShaderInstance; +MD: net/minecraft/client/renderer/GameRenderer/m_172754_ ()Lnet/minecraft/client/renderer/ShaderInstance; net/minecraft/client/renderer/GameRenderer/getRendertypeTripwireShader ()Lnet/minecraft/client/renderer/ShaderInstance; +MD: net/minecraft/client/renderer/GameRenderer/m_172755_ ()Lnet/minecraft/client/renderer/ShaderInstance; net/minecraft/client/renderer/GameRenderer/getRendertypeEndPortalShader ()Lnet/minecraft/client/renderer/ShaderInstance; +MD: net/minecraft/client/renderer/GameRenderer/m_172756_ ()Lnet/minecraft/client/renderer/ShaderInstance; net/minecraft/client/renderer/GameRenderer/getRendertypeEndGatewayShader ()Lnet/minecraft/client/renderer/ShaderInstance; +MD: net/minecraft/client/renderer/GameRenderer/m_172757_ ()Lnet/minecraft/client/renderer/ShaderInstance; net/minecraft/client/renderer/GameRenderer/getRendertypeLinesShader ()Lnet/minecraft/client/renderer/ShaderInstance; +MD: net/minecraft/client/renderer/GameRenderer/m_172758_ ()Lnet/minecraft/client/renderer/ShaderInstance; net/minecraft/client/renderer/GameRenderer/getRendertypeCrumblingShader ()Lnet/minecraft/client/renderer/ShaderInstance; +MD: net/minecraft/client/renderer/GameRenderer/m_172759_ ()V net/minecraft/client/renderer/GameRenderer/shutdownShaders ()V +MD: net/minecraft/client/renderer/GameRenderer/m_172760_ ()Ljava/lang/String; net/minecraft/client/renderer/GameRenderer/lambda$render$65 ()Ljava/lang/String; +MD: net/minecraft/client/renderer/GameRenderer/m_172762_ ()Ljava/lang/String; net/minecraft/client/renderer/GameRenderer/lambda$render$62 ()Ljava/lang/String; +MD: net/minecraft/client/renderer/GameRenderer/m_172767_ (Lnet/minecraft/server/packs/resources/ResourceProvider;)V net/minecraft/client/renderer/GameRenderer/reloadShaders (Lnet/minecraft/server/packs/resources/ResourceProvider;)V +MD: net/minecraft/client/renderer/GameRenderer/m_172773_ (Lnet/minecraft/client/renderer/ShaderInstance;)V net/minecraft/client/renderer/GameRenderer/lambda$reloadShaders$52 (Lnet/minecraft/client/renderer/ShaderInstance;)V +MD: net/minecraft/client/renderer/GameRenderer/m_172775_ (Z)V net/minecraft/client/renderer/GameRenderer/setRenderBlockOutline (Z)V +MD: net/minecraft/client/renderer/GameRenderer/m_172777_ (Lnet/minecraft/client/renderer/ShaderInstance;)V net/minecraft/client/renderer/GameRenderer/lambda$reloadShaders$51 (Lnet/minecraft/client/renderer/ShaderInstance;)V +MD: net/minecraft/client/renderer/GameRenderer/m_172779_ (Z)V net/minecraft/client/renderer/GameRenderer/setPanoramicMode (Z)V +MD: net/minecraft/client/renderer/GameRenderer/m_172781_ (Lnet/minecraft/client/renderer/ShaderInstance;)V net/minecraft/client/renderer/GameRenderer/lambda$reloadShaders$50 (Lnet/minecraft/client/renderer/ShaderInstance;)V +MD: net/minecraft/client/renderer/GameRenderer/m_172783_ ()V net/minecraft/client/renderer/GameRenderer/cycleEffect ()V +MD: net/minecraft/client/renderer/GameRenderer/m_172784_ (Lnet/minecraft/client/renderer/ShaderInstance;)V net/minecraft/client/renderer/GameRenderer/lambda$reloadShaders$49 (Lnet/minecraft/client/renderer/ShaderInstance;)V +MD: net/minecraft/client/renderer/GameRenderer/m_172786_ (Lnet/minecraft/client/renderer/ShaderInstance;)V net/minecraft/client/renderer/GameRenderer/lambda$reloadShaders$48 (Lnet/minecraft/client/renderer/ShaderInstance;)V +MD: net/minecraft/client/renderer/GameRenderer/m_172788_ (Lnet/minecraft/client/renderer/ShaderInstance;)V net/minecraft/client/renderer/GameRenderer/lambda$reloadShaders$46 (Lnet/minecraft/client/renderer/ShaderInstance;)V +MD: net/minecraft/client/renderer/GameRenderer/m_172790_ ()F net/minecraft/client/renderer/GameRenderer/getDepthFar ()F +MD: net/minecraft/client/renderer/GameRenderer/m_172791_ (Lnet/minecraft/client/renderer/ShaderInstance;)V net/minecraft/client/renderer/GameRenderer/lambda$reloadShaders$45 (Lnet/minecraft/client/renderer/ShaderInstance;)V +MD: net/minecraft/client/renderer/GameRenderer/m_172793_ (Lnet/minecraft/client/renderer/ShaderInstance;)V net/minecraft/client/renderer/GameRenderer/lambda$reloadShaders$43 (Lnet/minecraft/client/renderer/ShaderInstance;)V +MD: net/minecraft/client/renderer/GameRenderer/m_172795_ (Lnet/minecraft/client/renderer/ShaderInstance;)V net/minecraft/client/renderer/GameRenderer/lambda$reloadShaders$42 (Lnet/minecraft/client/renderer/ShaderInstance;)V +MD: net/minecraft/client/renderer/GameRenderer/m_172797_ ()Lnet/minecraft/client/Minecraft; net/minecraft/client/renderer/GameRenderer/getMinecraft ()Lnet/minecraft/client/Minecraft; +MD: net/minecraft/client/renderer/GameRenderer/m_172798_ (Lnet/minecraft/client/renderer/ShaderInstance;)V net/minecraft/client/renderer/GameRenderer/lambda$reloadShaders$41 (Lnet/minecraft/client/renderer/ShaderInstance;)V +MD: net/minecraft/client/renderer/GameRenderer/m_172800_ (Lnet/minecraft/client/renderer/ShaderInstance;)V net/minecraft/client/renderer/GameRenderer/lambda$reloadShaders$40 (Lnet/minecraft/client/renderer/ShaderInstance;)V +MD: net/minecraft/client/renderer/GameRenderer/m_172802_ (Lnet/minecraft/client/renderer/ShaderInstance;)V net/minecraft/client/renderer/GameRenderer/lambda$reloadShaders$39 (Lnet/minecraft/client/renderer/ShaderInstance;)V +MD: net/minecraft/client/renderer/GameRenderer/m_172804_ (Lnet/minecraft/client/renderer/ShaderInstance;)V net/minecraft/client/renderer/GameRenderer/lambda$reloadShaders$38 (Lnet/minecraft/client/renderer/ShaderInstance;)V +MD: net/minecraft/client/renderer/GameRenderer/m_172806_ (Lnet/minecraft/client/renderer/ShaderInstance;)V net/minecraft/client/renderer/GameRenderer/lambda$reloadShaders$37 (Lnet/minecraft/client/renderer/ShaderInstance;)V +MD: net/minecraft/client/renderer/GameRenderer/m_172808_ ()Lnet/minecraft/client/renderer/ShaderInstance; net/minecraft/client/renderer/GameRenderer/getPositionShader ()Lnet/minecraft/client/renderer/ShaderInstance; +MD: net/minecraft/client/renderer/GameRenderer/m_172809_ (Lnet/minecraft/client/renderer/ShaderInstance;)V net/minecraft/client/renderer/GameRenderer/lambda$reloadShaders$36 (Lnet/minecraft/client/renderer/ShaderInstance;)V +MD: net/minecraft/client/renderer/GameRenderer/m_172811_ ()Lnet/minecraft/client/renderer/ShaderInstance; net/minecraft/client/renderer/GameRenderer/getPositionColorShader ()Lnet/minecraft/client/renderer/ShaderInstance; +MD: net/minecraft/client/renderer/GameRenderer/m_172812_ (Lnet/minecraft/client/renderer/ShaderInstance;)V net/minecraft/client/renderer/GameRenderer/lambda$reloadShaders$35 (Lnet/minecraft/client/renderer/ShaderInstance;)V +MD: net/minecraft/client/renderer/GameRenderer/m_172814_ ()Lnet/minecraft/client/renderer/ShaderInstance; net/minecraft/client/renderer/GameRenderer/getPositionColorTexShader ()Lnet/minecraft/client/renderer/ShaderInstance; +MD: net/minecraft/client/renderer/GameRenderer/m_172815_ (Lnet/minecraft/client/renderer/ShaderInstance;)V net/minecraft/client/renderer/GameRenderer/lambda$reloadShaders$34 (Lnet/minecraft/client/renderer/ShaderInstance;)V +MD: net/minecraft/client/renderer/GameRenderer/m_172817_ ()Lnet/minecraft/client/renderer/ShaderInstance; net/minecraft/client/renderer/GameRenderer/getPositionTexShader ()Lnet/minecraft/client/renderer/ShaderInstance; +MD: net/minecraft/client/renderer/GameRenderer/m_172818_ (Lnet/minecraft/client/renderer/ShaderInstance;)V net/minecraft/client/renderer/GameRenderer/lambda$reloadShaders$33 (Lnet/minecraft/client/renderer/ShaderInstance;)V +MD: net/minecraft/client/renderer/GameRenderer/m_172820_ ()Lnet/minecraft/client/renderer/ShaderInstance; net/minecraft/client/renderer/GameRenderer/getPositionTexColorShader ()Lnet/minecraft/client/renderer/ShaderInstance; +MD: net/minecraft/client/renderer/GameRenderer/m_172821_ (Lnet/minecraft/client/renderer/ShaderInstance;)V net/minecraft/client/renderer/GameRenderer/lambda$reloadShaders$32 (Lnet/minecraft/client/renderer/ShaderInstance;)V +MD: net/minecraft/client/renderer/GameRenderer/m_172824_ (Lnet/minecraft/client/renderer/ShaderInstance;)V net/minecraft/client/renderer/GameRenderer/lambda$reloadShaders$31 (Lnet/minecraft/client/renderer/ShaderInstance;)V +MD: net/minecraft/client/renderer/GameRenderer/m_172827_ (Lnet/minecraft/client/renderer/ShaderInstance;)V net/minecraft/client/renderer/GameRenderer/lambda$reloadShaders$30 (Lnet/minecraft/client/renderer/ShaderInstance;)V +MD: net/minecraft/client/renderer/GameRenderer/m_172829_ ()Lnet/minecraft/client/renderer/ShaderInstance; net/minecraft/client/renderer/GameRenderer/getParticleShader ()Lnet/minecraft/client/renderer/ShaderInstance; +MD: net/minecraft/client/renderer/GameRenderer/m_172830_ (Lnet/minecraft/client/renderer/ShaderInstance;)V net/minecraft/client/renderer/GameRenderer/lambda$reloadShaders$29 (Lnet/minecraft/client/renderer/ShaderInstance;)V +MD: net/minecraft/client/renderer/GameRenderer/m_172832_ ()Lnet/minecraft/client/renderer/ShaderInstance; net/minecraft/client/renderer/GameRenderer/getPositionColorLightmapShader ()Lnet/minecraft/client/renderer/ShaderInstance; +MD: net/minecraft/client/renderer/GameRenderer/m_172833_ (Lnet/minecraft/client/renderer/ShaderInstance;)V net/minecraft/client/renderer/GameRenderer/lambda$reloadShaders$28 (Lnet/minecraft/client/renderer/ShaderInstance;)V +MD: net/minecraft/client/renderer/GameRenderer/m_172835_ ()Lnet/minecraft/client/renderer/ShaderInstance; net/minecraft/client/renderer/GameRenderer/getPositionColorTexLightmapShader ()Lnet/minecraft/client/renderer/ShaderInstance; +MD: net/minecraft/client/renderer/GameRenderer/m_172836_ (Lnet/minecraft/client/renderer/ShaderInstance;)V net/minecraft/client/renderer/GameRenderer/lambda$reloadShaders$27 (Lnet/minecraft/client/renderer/ShaderInstance;)V +MD: net/minecraft/client/renderer/GameRenderer/m_172838_ ()Lnet/minecraft/client/renderer/ShaderInstance; net/minecraft/client/renderer/GameRenderer/getPositionTexColorNormalShader ()Lnet/minecraft/client/renderer/ShaderInstance; +MD: net/minecraft/client/renderer/GameRenderer/m_172839_ (Lnet/minecraft/client/renderer/ShaderInstance;)V net/minecraft/client/renderer/GameRenderer/lambda$reloadShaders$26 (Lnet/minecraft/client/renderer/ShaderInstance;)V +MD: net/minecraft/client/renderer/GameRenderer/m_182642_ (Ljava/nio/file/Path;)V net/minecraft/client/renderer/GameRenderer/takeAutoScreenshot (Ljava/nio/file/Path;)V +MD: net/minecraft/client/renderer/GameRenderer/m_182644_ ()V net/minecraft/client/renderer/GameRenderer/tryTakeScreenshotIfNeeded ()V +MD: net/minecraft/client/renderer/GameRenderer/m_234223_ ()Lnet/minecraft/client/renderer/ShaderInstance; net/minecraft/client/renderer/GameRenderer/getRendertypeEntityTranslucentEmissiveShader ()Lnet/minecraft/client/renderer/ShaderInstance; +MD: net/minecraft/client/renderer/GameRenderer/m_234224_ (Lcom/mojang/datafixers/util/Pair;)V net/minecraft/client/renderer/GameRenderer/lambda$reloadShaders$60 (Lcom/mojang/datafixers/util/Pair;)V +MD: net/minecraft/client/renderer/GameRenderer/m_234226_ (Lcom/mojang/blaze3d/platform/NativeImage;Ljava/nio/file/Path;)V net/minecraft/client/renderer/GameRenderer/lambda$takeAutoScreenshot$68 (Lcom/mojang/blaze3d/platform/NativeImage;Ljava/nio/file/Path;)V +MD: net/minecraft/client/renderer/GameRenderer/m_234229_ (Lnet/minecraft/client/renderer/ShaderInstance;)V net/minecraft/client/renderer/GameRenderer/lambda$reloadShaders$54 (Lnet/minecraft/client/renderer/ShaderInstance;)V +MD: net/minecraft/client/renderer/GameRenderer/m_234231_ ()Ljava/lang/String; net/minecraft/client/renderer/GameRenderer/lambda$render$66 ()Ljava/lang/String; +MD: net/minecraft/client/renderer/GameRenderer/m_234232_ ()Ljava/lang/String; net/minecraft/client/renderer/GameRenderer/lambda$render$63 ()Ljava/lang/String; +MD: net/minecraft/client/renderer/GameRenderer/m_234233_ (II)Ljava/lang/String; net/minecraft/client/renderer/GameRenderer/lambda$render$64 (II)Ljava/lang/String; +MD: net/minecraft/client/renderer/GameRenderer/m_234236_ (Lnet/minecraft/world/entity/Entity;)Z net/minecraft/client/renderer/GameRenderer/lambda$pick$61 (Lnet/minecraft/world/entity/Entity;)Z +MD: net/minecraft/client/renderer/GameRenderer/m_234238_ (Ljava/nio/file/Path;)V net/minecraft/client/renderer/GameRenderer/lambda$tryTakeScreenshotIfNeeded$67 (Ljava/nio/file/Path;)V +MD: net/minecraft/client/renderer/GameRenderer/m_247116_ ()Lnet/minecraft/server/packs/resources/PreparableReloadListener; net/minecraft/client/renderer/GameRenderer/createReloadListener ()Lnet/minecraft/server/packs/resources/PreparableReloadListener; +MD: net/minecraft/client/renderer/GameRenderer/m_252879_ (Lorg/joml/Matrix4f;)V net/minecraft/client/renderer/GameRenderer/resetProjectionMatrix (Lorg/joml/Matrix4f;)V +MD: net/minecraft/client/renderer/GameRenderer/m_253088_ (D)Lorg/joml/Matrix4f; net/minecraft/client/renderer/GameRenderer/getProjectionMatrix (D)Lorg/joml/Matrix4f; +MD: net/minecraft/client/renderer/GameRenderer/m_268792_ (Lnet/minecraft/client/renderer/ShaderInstance;)V net/minecraft/client/renderer/GameRenderer/lambda$reloadShaders$47 (Lnet/minecraft/client/renderer/ShaderInstance;)V +MD: net/minecraft/client/renderer/GameRenderer/m_268793_ (Lnet/minecraft/client/renderer/ShaderInstance;)V net/minecraft/client/renderer/GameRenderer/lambda$reloadShaders$44 (Lnet/minecraft/client/renderer/ShaderInstance;)V +MD: net/minecraft/client/renderer/GameRenderer/m_269511_ ()Lnet/minecraft/client/renderer/ShaderInstance; net/minecraft/client/renderer/GameRenderer/getRendertypeTextBackgroundSeeThroughShader ()Lnet/minecraft/client/renderer/ShaderInstance; +MD: net/minecraft/client/renderer/GameRenderer/m_269563_ ()Lnet/minecraft/client/renderer/ShaderInstance; net/minecraft/client/renderer/GameRenderer/getRendertypeTextBackgroundShader ()Lnet/minecraft/client/renderer/ShaderInstance; +MD: net/minecraft/client/renderer/GameRenderer/m_280083_ (Lnet/minecraft/client/gui/GuiGraphics;F)V net/minecraft/client/renderer/GameRenderer/renderConfusionOverlay (Lnet/minecraft/client/gui/GuiGraphics;F)V +MD: net/minecraft/client/renderer/GameRenderer/m_285674_ (Lnet/minecraft/client/renderer/ShaderInstance;)V net/minecraft/client/renderer/GameRenderer/lambda$reloadShaders$57 (Lnet/minecraft/client/renderer/ShaderInstance;)V +MD: net/minecraft/client/renderer/GameRenderer/m_285675_ (Lnet/minecraft/client/renderer/ShaderInstance;)V net/minecraft/client/renderer/GameRenderer/lambda$reloadShaders$56 (Lnet/minecraft/client/renderer/ShaderInstance;)V +MD: net/minecraft/client/renderer/GameRenderer/m_285676_ (Lnet/minecraft/client/renderer/ShaderInstance;)V net/minecraft/client/renderer/GameRenderer/lambda$reloadShaders$58 (Lnet/minecraft/client/renderer/ShaderInstance;)V +MD: net/minecraft/client/renderer/GameRenderer/m_285677_ (Lnet/minecraft/client/renderer/ShaderInstance;)V net/minecraft/client/renderer/GameRenderer/lambda$reloadShaders$55 (Lnet/minecraft/client/renderer/ShaderInstance;)V +MD: net/minecraft/client/renderer/GameRenderer/m_285738_ ()Lnet/minecraft/client/renderer/ShaderInstance; net/minecraft/client/renderer/GameRenderer/getRendertypeGuiTextHighlightShader ()Lnet/minecraft/client/renderer/ShaderInstance; +MD: net/minecraft/client/renderer/GameRenderer/m_285858_ ()Lnet/minecraft/client/renderer/ShaderInstance; net/minecraft/client/renderer/GameRenderer/getRendertypeGuiShader ()Lnet/minecraft/client/renderer/ShaderInstance; +MD: net/minecraft/client/renderer/GameRenderer/m_285862_ ()Lnet/minecraft/client/renderer/ShaderInstance; net/minecraft/client/renderer/GameRenderer/getRendertypeGuiGhostRecipeOverlayShader ()Lnet/minecraft/client/renderer/ShaderInstance; +MD: net/minecraft/client/renderer/GameRenderer/m_285975_ ()Lnet/minecraft/client/renderer/ShaderInstance; net/minecraft/client/renderer/GameRenderer/getRendertypeGuiOverlayShader ()Lnet/minecraft/client/renderer/ShaderInstance; +MD: net/minecraft/client/renderer/GameRenderer$1/ (Lnet/minecraft/client/renderer/GameRenderer;)V net/minecraft/client/renderer/GameRenderer$1/ (Lnet/minecraft/client/renderer/GameRenderer;)V +MD: net/minecraft/client/renderer/GameRenderer$1/m_245944_ (Ljava/util/Map;Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/server/packs/resources/Resource;)V net/minecraft/client/renderer/GameRenderer$1/lambda$prepare$2 (Ljava/util/Map;Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/server/packs/resources/Resource;)V +MD: net/minecraft/client/renderer/GameRenderer$1/m_246544_ (Lnet/minecraft/resources/ResourceLocation;)Z net/minecraft/client/renderer/GameRenderer$1/lambda$prepare$0 (Lnet/minecraft/resources/ResourceLocation;)Z +MD: net/minecraft/client/renderer/GameRenderer$1/m_246929_ ([B)Ljava/io/InputStream; net/minecraft/client/renderer/GameRenderer$1/lambda$prepare$1 ([B)Ljava/io/InputStream; +MD: net/minecraft/client/renderer/GameRenderer$1/m_5787_ (Lnet/minecraft/client/renderer/GameRenderer$ResourceCache;Lnet/minecraft/server/packs/resources/ResourceManager;Lnet/minecraft/util/profiling/ProfilerFiller;)V net/minecraft/client/renderer/GameRenderer$1/apply (Lnet/minecraft/client/renderer/GameRenderer$ResourceCache;Lnet/minecraft/server/packs/resources/ResourceManager;Lnet/minecraft/util/profiling/ProfilerFiller;)V +MD: net/minecraft/client/renderer/GameRenderer$1/m_5787_ (Ljava/lang/Object;Lnet/minecraft/server/packs/resources/ResourceManager;Lnet/minecraft/util/profiling/ProfilerFiller;)V net/minecraft/client/renderer/GameRenderer$1/apply (Ljava/lang/Object;Lnet/minecraft/server/packs/resources/ResourceManager;Lnet/minecraft/util/profiling/ProfilerFiller;)V +MD: net/minecraft/client/renderer/GameRenderer$1/m_5944_ (Lnet/minecraft/server/packs/resources/ResourceManager;Lnet/minecraft/util/profiling/ProfilerFiller;)Ljava/lang/Object; net/minecraft/client/renderer/GameRenderer$1/prepare (Lnet/minecraft/server/packs/resources/ResourceManager;Lnet/minecraft/util/profiling/ProfilerFiller;)Ljava/lang/Object; +MD: net/minecraft/client/renderer/GameRenderer$1/m_5944_ (Lnet/minecraft/server/packs/resources/ResourceManager;Lnet/minecraft/util/profiling/ProfilerFiller;)Lnet/minecraft/client/renderer/GameRenderer$ResourceCache; net/minecraft/client/renderer/GameRenderer$1/prepare (Lnet/minecraft/server/packs/resources/ResourceManager;Lnet/minecraft/util/profiling/ProfilerFiller;)Lnet/minecraft/client/renderer/GameRenderer$ResourceCache; +MD: net/minecraft/client/renderer/GameRenderer$1/m_7812_ ()Ljava/lang/String; net/minecraft/client/renderer/GameRenderer$1/getName ()Ljava/lang/String; +MD: net/minecraft/client/renderer/GameRenderer$ResourceCache/ (Lnet/minecraft/server/packs/resources/ResourceProvider;Ljava/util/Map;)V net/minecraft/client/renderer/GameRenderer$ResourceCache/ (Lnet/minecraft/server/packs/resources/ResourceProvider;Ljava/util/Map;)V +MD: net/minecraft/client/renderer/GameRenderer$ResourceCache/equals (Ljava/lang/Object;)Z net/minecraft/client/renderer/GameRenderer$ResourceCache/equals (Ljava/lang/Object;)Z +MD: net/minecraft/client/renderer/GameRenderer$ResourceCache/f_243825_ ()Ljava/util/Map; net/minecraft/client/renderer/GameRenderer$ResourceCache/cache ()Ljava/util/Map; +MD: net/minecraft/client/renderer/GameRenderer$ResourceCache/f_244315_ ()Lnet/minecraft/server/packs/resources/ResourceProvider; net/minecraft/client/renderer/GameRenderer$ResourceCache/original ()Lnet/minecraft/server/packs/resources/ResourceProvider; +MD: net/minecraft/client/renderer/GameRenderer$ResourceCache/hashCode ()I net/minecraft/client/renderer/GameRenderer$ResourceCache/hashCode ()I +MD: net/minecraft/client/renderer/GameRenderer$ResourceCache/m_213713_ (Lnet/minecraft/resources/ResourceLocation;)Ljava/util/Optional; net/minecraft/client/renderer/GameRenderer$ResourceCache/getResource (Lnet/minecraft/resources/ResourceLocation;)Ljava/util/Optional; +MD: net/minecraft/client/renderer/GameRenderer$ResourceCache/toString ()Ljava/lang/String; net/minecraft/client/renderer/GameRenderer$ResourceCache/toString ()Ljava/lang/String; +MD: net/minecraft/client/renderer/GpuWarnlistManager/ ()V net/minecraft/client/renderer/GpuWarnlistManager/ ()V +MD: net/minecraft/client/renderer/GpuWarnlistManager/ ()V net/minecraft/client/renderer/GpuWarnlistManager/ ()V +MD: net/minecraft/client/renderer/GpuWarnlistManager/m_109218_ ()Z net/minecraft/client/renderer/GpuWarnlistManager/hasWarnings ()Z +MD: net/minecraft/client/renderer/GpuWarnlistManager/m_109222_ (Lcom/google/gson/JsonArray;Ljava/util/List;)V net/minecraft/client/renderer/GpuWarnlistManager/compilePatterns (Lcom/google/gson/JsonArray;Ljava/util/List;)V +MD: net/minecraft/client/renderer/GpuWarnlistManager/m_109233_ (Ljava/lang/StringBuilder;Ljava/lang/String;Ljava/lang/String;)V net/minecraft/client/renderer/GpuWarnlistManager/lambda$getAllWarnings$0 (Ljava/lang/StringBuilder;Ljava/lang/String;Ljava/lang/String;)V +MD: net/minecraft/client/renderer/GpuWarnlistManager/m_109237_ (Ljava/util/List;Lcom/google/gson/JsonElement;)V net/minecraft/client/renderer/GpuWarnlistManager/lambda$compilePatterns$1 (Ljava/util/List;Lcom/google/gson/JsonElement;)V +MD: net/minecraft/client/renderer/GpuWarnlistManager/m_109240_ ()Z net/minecraft/client/renderer/GpuWarnlistManager/willShowWarning ()Z +MD: net/minecraft/client/renderer/GpuWarnlistManager/m_109244_ (Lnet/minecraft/server/packs/resources/ResourceManager;Lnet/minecraft/util/profiling/ProfilerFiller;)Lcom/google/gson/JsonObject; net/minecraft/client/renderer/GpuWarnlistManager/parseJson (Lnet/minecraft/server/packs/resources/ResourceManager;Lnet/minecraft/util/profiling/ProfilerFiller;)Lcom/google/gson/JsonObject; +MD: net/minecraft/client/renderer/GpuWarnlistManager/m_109247_ ()V net/minecraft/client/renderer/GpuWarnlistManager/showWarning ()V +MD: net/minecraft/client/renderer/GpuWarnlistManager/m_109248_ ()V net/minecraft/client/renderer/GpuWarnlistManager/dismissWarning ()V +MD: net/minecraft/client/renderer/GpuWarnlistManager/m_109249_ ()V net/minecraft/client/renderer/GpuWarnlistManager/dismissWarningAndSkipFabulous ()V +MD: net/minecraft/client/renderer/GpuWarnlistManager/m_109250_ ()Z net/minecraft/client/renderer/GpuWarnlistManager/isShowingWarning ()Z +MD: net/minecraft/client/renderer/GpuWarnlistManager/m_109251_ ()Z net/minecraft/client/renderer/GpuWarnlistManager/isSkippingFabulous ()Z +MD: net/minecraft/client/renderer/GpuWarnlistManager/m_109252_ ()V net/minecraft/client/renderer/GpuWarnlistManager/resetWarnings ()V +MD: net/minecraft/client/renderer/GpuWarnlistManager/m_109253_ ()Ljava/lang/String; net/minecraft/client/renderer/GpuWarnlistManager/getRendererWarnings ()Ljava/lang/String; +MD: net/minecraft/client/renderer/GpuWarnlistManager/m_109254_ ()Ljava/lang/String; net/minecraft/client/renderer/GpuWarnlistManager/getVersionWarnings ()Ljava/lang/String; +MD: net/minecraft/client/renderer/GpuWarnlistManager/m_109255_ ()Ljava/lang/String; net/minecraft/client/renderer/GpuWarnlistManager/getVendorWarnings ()Ljava/lang/String; +MD: net/minecraft/client/renderer/GpuWarnlistManager/m_109256_ ()Ljava/lang/String; net/minecraft/client/renderer/GpuWarnlistManager/getAllWarnings ()Ljava/lang/String; +MD: net/minecraft/client/renderer/GpuWarnlistManager/m_5787_ (Ljava/lang/Object;Lnet/minecraft/server/packs/resources/ResourceManager;Lnet/minecraft/util/profiling/ProfilerFiller;)V net/minecraft/client/renderer/GpuWarnlistManager/apply (Ljava/lang/Object;Lnet/minecraft/server/packs/resources/ResourceManager;Lnet/minecraft/util/profiling/ProfilerFiller;)V +MD: net/minecraft/client/renderer/GpuWarnlistManager/m_5787_ (Lnet/minecraft/client/renderer/GpuWarnlistManager$Preparations;Lnet/minecraft/server/packs/resources/ResourceManager;Lnet/minecraft/util/profiling/ProfilerFiller;)V net/minecraft/client/renderer/GpuWarnlistManager/apply (Lnet/minecraft/client/renderer/GpuWarnlistManager$Preparations;Lnet/minecraft/server/packs/resources/ResourceManager;Lnet/minecraft/util/profiling/ProfilerFiller;)V +MD: net/minecraft/client/renderer/GpuWarnlistManager/m_5944_ (Lnet/minecraft/server/packs/resources/ResourceManager;Lnet/minecraft/util/profiling/ProfilerFiller;)Lnet/minecraft/client/renderer/GpuWarnlistManager$Preparations; net/minecraft/client/renderer/GpuWarnlistManager/prepare (Lnet/minecraft/server/packs/resources/ResourceManager;Lnet/minecraft/util/profiling/ProfilerFiller;)Lnet/minecraft/client/renderer/GpuWarnlistManager$Preparations; +MD: net/minecraft/client/renderer/GpuWarnlistManager/m_5944_ (Lnet/minecraft/server/packs/resources/ResourceManager;Lnet/minecraft/util/profiling/ProfilerFiller;)Ljava/lang/Object; net/minecraft/client/renderer/GpuWarnlistManager/prepare (Lnet/minecraft/server/packs/resources/ResourceManager;Lnet/minecraft/util/profiling/ProfilerFiller;)Ljava/lang/Object; +MD: net/minecraft/client/renderer/GpuWarnlistManager$Preparations/ (Ljava/util/List;Ljava/util/List;Ljava/util/List;)V net/minecraft/client/renderer/GpuWarnlistManager$Preparations/ (Ljava/util/List;Ljava/util/List;Ljava/util/List;)V +MD: net/minecraft/client/renderer/GpuWarnlistManager$Preparations/m_109269_ ()Lcom/google/common/collect/ImmutableMap; net/minecraft/client/renderer/GpuWarnlistManager$Preparations/apply ()Lcom/google/common/collect/ImmutableMap; +MD: net/minecraft/client/renderer/GpuWarnlistManager$Preparations/m_109272_ (Ljava/util/List;Ljava/lang/String;)Ljava/lang/String; net/minecraft/client/renderer/GpuWarnlistManager$Preparations/matchAny (Ljava/util/List;Ljava/lang/String;)Ljava/lang/String; +MD: net/minecraft/client/renderer/ItemBlockRenderTypes/ ()V net/minecraft/client/renderer/ItemBlockRenderTypes/ ()V +MD: net/minecraft/client/renderer/ItemBlockRenderTypes/ ()V net/minecraft/client/renderer/ItemBlockRenderTypes/ ()V +MD: net/minecraft/client/renderer/ItemBlockRenderTypes/m_109279_ (Lnet/minecraft/world/item/ItemStack;Z)Lnet/minecraft/client/renderer/RenderType; net/minecraft/client/renderer/ItemBlockRenderTypes/getRenderType (Lnet/minecraft/world/item/ItemStack;Z)Lnet/minecraft/client/renderer/RenderType; +MD: net/minecraft/client/renderer/ItemBlockRenderTypes/m_109282_ (Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/client/renderer/RenderType; net/minecraft/client/renderer/ItemBlockRenderTypes/getChunkRenderType (Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/client/renderer/RenderType; +MD: net/minecraft/client/renderer/ItemBlockRenderTypes/m_109284_ (Lnet/minecraft/world/level/block/state/BlockState;Z)Lnet/minecraft/client/renderer/RenderType; net/minecraft/client/renderer/ItemBlockRenderTypes/getRenderType (Lnet/minecraft/world/level/block/state/BlockState;Z)Lnet/minecraft/client/renderer/RenderType; +MD: net/minecraft/client/renderer/ItemBlockRenderTypes/m_109287_ (Lnet/minecraft/world/level/material/FluidState;)Lnet/minecraft/client/renderer/RenderType; net/minecraft/client/renderer/ItemBlockRenderTypes/getRenderLayer (Lnet/minecraft/world/level/material/FluidState;)Lnet/minecraft/client/renderer/RenderType; +MD: net/minecraft/client/renderer/ItemBlockRenderTypes/m_109289_ (Ljava/util/HashMap;)V net/minecraft/client/renderer/ItemBlockRenderTypes/lambda$static$1 (Ljava/util/HashMap;)V +MD: net/minecraft/client/renderer/ItemBlockRenderTypes/m_109291_ (Z)V net/minecraft/client/renderer/ItemBlockRenderTypes/setFancy (Z)V +MD: net/minecraft/client/renderer/ItemBlockRenderTypes/m_109293_ (Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/client/renderer/RenderType; net/minecraft/client/renderer/ItemBlockRenderTypes/getMovingBlockRenderType (Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/client/renderer/RenderType; +MD: net/minecraft/client/renderer/ItemBlockRenderTypes/m_276704_ (Ljava/util/HashMap;)V net/minecraft/client/renderer/ItemBlockRenderTypes/lambda$static$0 (Ljava/util/HashMap;)V +MD: net/minecraft/client/renderer/ItemInHandRenderer/ ()V net/minecraft/client/renderer/ItemInHandRenderer/ ()V +MD: net/minecraft/client/renderer/ItemInHandRenderer/ (Lnet/minecraft/client/Minecraft;Lnet/minecraft/client/renderer/entity/EntityRenderDispatcher;Lnet/minecraft/client/renderer/entity/ItemRenderer;)V net/minecraft/client/renderer/ItemInHandRenderer/ (Lnet/minecraft/client/Minecraft;Lnet/minecraft/client/renderer/entity/EntityRenderDispatcher;Lnet/minecraft/client/renderer/entity/ItemRenderer;)V +MD: net/minecraft/client/renderer/ItemInHandRenderer/m_109311_ ()V net/minecraft/client/renderer/ItemInHandRenderer/tick ()V +MD: net/minecraft/client/renderer/ItemInHandRenderer/m_109312_ (F)F net/minecraft/client/renderer/ItemInHandRenderer/calculateMapTilt (F)F +MD: net/minecraft/client/renderer/ItemInHandRenderer/m_109314_ (FLcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource$BufferSource;Lnet/minecraft/client/player/LocalPlayer;I)V net/minecraft/client/renderer/ItemInHandRenderer/renderHandsWithItems (FLcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource$BufferSource;Lnet/minecraft/client/player/LocalPlayer;I)V +MD: net/minecraft/client/renderer/ItemInHandRenderer/m_109320_ (Lnet/minecraft/world/InteractionHand;)V net/minecraft/client/renderer/ItemInHandRenderer/itemUsed (Lnet/minecraft/world/InteractionHand;)V +MD: net/minecraft/client/renderer/ItemInHandRenderer/m_109330_ (Lcom/mojang/blaze3d/vertex/PoseStack;FLnet/minecraft/world/entity/HumanoidArm;Lnet/minecraft/world/item/ItemStack;)V net/minecraft/client/renderer/ItemInHandRenderer/applyEatTransform (Lcom/mojang/blaze3d/vertex/PoseStack;FLnet/minecraft/world/entity/HumanoidArm;Lnet/minecraft/world/item/ItemStack;)V +MD: net/minecraft/client/renderer/ItemInHandRenderer/m_109335_ (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/world/entity/HumanoidArm;F)V net/minecraft/client/renderer/ItemInHandRenderer/applyItemArmAttackTransform (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/world/entity/HumanoidArm;F)V +MD: net/minecraft/client/renderer/ItemInHandRenderer/m_109339_ (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;IFFF)V net/minecraft/client/renderer/ItemInHandRenderer/renderTwoHandedMap (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;IFFF)V +MD: net/minecraft/client/renderer/ItemInHandRenderer/m_109346_ (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;IFFLnet/minecraft/world/entity/HumanoidArm;)V net/minecraft/client/renderer/ItemInHandRenderer/renderPlayerArm (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;IFFLnet/minecraft/world/entity/HumanoidArm;)V +MD: net/minecraft/client/renderer/ItemInHandRenderer/m_109353_ (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;IFLnet/minecraft/world/entity/HumanoidArm;FLnet/minecraft/world/item/ItemStack;)V net/minecraft/client/renderer/ItemInHandRenderer/renderOneHandedMap (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;IFLnet/minecraft/world/entity/HumanoidArm;FLnet/minecraft/world/item/ItemStack;)V +MD: net/minecraft/client/renderer/ItemInHandRenderer/m_109361_ (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;ILnet/minecraft/world/entity/HumanoidArm;)V net/minecraft/client/renderer/ItemInHandRenderer/renderMapHand (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;ILnet/minecraft/world/entity/HumanoidArm;)V +MD: net/minecraft/client/renderer/ItemInHandRenderer/m_109366_ (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;ILnet/minecraft/world/item/ItemStack;)V net/minecraft/client/renderer/ItemInHandRenderer/renderMap (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;ILnet/minecraft/world/item/ItemStack;)V +MD: net/minecraft/client/renderer/ItemInHandRenderer/m_109371_ (Lnet/minecraft/client/player/AbstractClientPlayer;FFLnet/minecraft/world/InteractionHand;FLnet/minecraft/world/item/ItemStack;FLcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;I)V net/minecraft/client/renderer/ItemInHandRenderer/renderArmWithItem (Lnet/minecraft/client/player/AbstractClientPlayer;FFLnet/minecraft/world/InteractionHand;FLnet/minecraft/world/item/ItemStack;FLcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;I)V +MD: net/minecraft/client/renderer/ItemInHandRenderer/m_109382_ (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/world/entity/HumanoidArm;F)V net/minecraft/client/renderer/ItemInHandRenderer/applyItemArmTransform (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/world/entity/HumanoidArm;F)V +MD: net/minecraft/client/renderer/ItemInHandRenderer/m_172912_ (Lnet/minecraft/world/item/ItemStack;)Z net/minecraft/client/renderer/ItemInHandRenderer/isChargedCrossbow (Lnet/minecraft/world/item/ItemStack;)Z +MD: net/minecraft/client/renderer/ItemInHandRenderer/m_172914_ (Lnet/minecraft/client/player/LocalPlayer;)Lnet/minecraft/client/renderer/ItemInHandRenderer$HandRenderSelection; net/minecraft/client/renderer/ItemInHandRenderer/evaluateWhichHandsToRender (Lnet/minecraft/client/player/LocalPlayer;)Lnet/minecraft/client/renderer/ItemInHandRenderer$HandRenderSelection; +MD: net/minecraft/client/renderer/ItemInHandRenderer/m_172916_ (Lnet/minecraft/client/player/LocalPlayer;)Lnet/minecraft/client/renderer/ItemInHandRenderer$HandRenderSelection; net/minecraft/client/renderer/ItemInHandRenderer/selectionUsingItemWhileHoldingBowLike (Lnet/minecraft/client/player/LocalPlayer;)Lnet/minecraft/client/renderer/ItemInHandRenderer$HandRenderSelection; +MD: net/minecraft/client/renderer/ItemInHandRenderer/m_269530_ (Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/item/ItemDisplayContext;ZLcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;I)V net/minecraft/client/renderer/ItemInHandRenderer/renderItem (Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/item/ItemDisplayContext;ZLcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;I)V +MD: net/minecraft/client/renderer/ItemInHandRenderer/m_271982_ (Lcom/mojang/blaze3d/vertex/PoseStack;FLnet/minecraft/world/entity/HumanoidArm;Lnet/minecraft/world/item/ItemStack;F)V net/minecraft/client/renderer/ItemInHandRenderer/applyBrushTransform (Lcom/mojang/blaze3d/vertex/PoseStack;FLnet/minecraft/world/entity/HumanoidArm;Lnet/minecraft/world/item/ItemStack;F)V +MD: net/minecraft/client/renderer/ItemInHandRenderer$1/ ()V net/minecraft/client/renderer/ItemInHandRenderer$1/ ()V +MD: net/minecraft/client/renderer/ItemInHandRenderer$HandRenderSelection/ ()V net/minecraft/client/renderer/ItemInHandRenderer$HandRenderSelection/ ()V +MD: net/minecraft/client/renderer/ItemInHandRenderer$HandRenderSelection/ (Ljava/lang/String;IZZ)V net/minecraft/client/renderer/ItemInHandRenderer$HandRenderSelection/ (Ljava/lang/String;IZZ)V +MD: net/minecraft/client/renderer/ItemInHandRenderer$HandRenderSelection/m_172930_ ()[Lnet/minecraft/client/renderer/ItemInHandRenderer$HandRenderSelection; net/minecraft/client/renderer/ItemInHandRenderer$HandRenderSelection/$values ()[Lnet/minecraft/client/renderer/ItemInHandRenderer$HandRenderSelection; +MD: net/minecraft/client/renderer/ItemInHandRenderer$HandRenderSelection/m_172931_ (Lnet/minecraft/world/InteractionHand;)Lnet/minecraft/client/renderer/ItemInHandRenderer$HandRenderSelection; net/minecraft/client/renderer/ItemInHandRenderer$HandRenderSelection/onlyForHand (Lnet/minecraft/world/InteractionHand;)Lnet/minecraft/client/renderer/ItemInHandRenderer$HandRenderSelection; +MD: net/minecraft/client/renderer/ItemInHandRenderer$HandRenderSelection/valueOf (Ljava/lang/String;)Lnet/minecraft/client/renderer/ItemInHandRenderer$HandRenderSelection; net/minecraft/client/renderer/ItemInHandRenderer$HandRenderSelection/valueOf (Ljava/lang/String;)Lnet/minecraft/client/renderer/ItemInHandRenderer$HandRenderSelection; +MD: net/minecraft/client/renderer/ItemInHandRenderer$HandRenderSelection/values ()[Lnet/minecraft/client/renderer/ItemInHandRenderer$HandRenderSelection; net/minecraft/client/renderer/ItemInHandRenderer$HandRenderSelection/values ()[Lnet/minecraft/client/renderer/ItemInHandRenderer$HandRenderSelection; +MD: net/minecraft/client/renderer/ItemModelShaper/ (Lnet/minecraft/client/resources/model/ModelManager;)V net/minecraft/client/renderer/ItemModelShaper/ (Lnet/minecraft/client/resources/model/ModelManager;)V +MD: net/minecraft/client/renderer/ItemModelShaper/m_109393_ ()Lnet/minecraft/client/resources/model/ModelManager; net/minecraft/client/renderer/ItemModelShaper/getModelManager ()Lnet/minecraft/client/resources/model/ModelManager; +MD: net/minecraft/client/renderer/ItemModelShaper/m_109394_ (Lnet/minecraft/world/item/Item;)Lnet/minecraft/client/resources/model/BakedModel; net/minecraft/client/renderer/ItemModelShaper/getItemModel (Lnet/minecraft/world/item/Item;)Lnet/minecraft/client/resources/model/BakedModel; +MD: net/minecraft/client/renderer/ItemModelShaper/m_109396_ (Lnet/minecraft/world/item/Item;Lnet/minecraft/client/resources/model/ModelResourceLocation;)V net/minecraft/client/renderer/ItemModelShaper/register (Lnet/minecraft/world/item/Item;Lnet/minecraft/client/resources/model/ModelResourceLocation;)V +MD: net/minecraft/client/renderer/ItemModelShaper/m_109403_ ()V net/minecraft/client/renderer/ItemModelShaper/rebuildCache ()V +MD: net/minecraft/client/renderer/ItemModelShaper/m_109404_ (Lnet/minecraft/world/item/Item;)I net/minecraft/client/renderer/ItemModelShaper/getIndex (Lnet/minecraft/world/item/Item;)I +MD: net/minecraft/client/renderer/ItemModelShaper/m_109406_ (Lnet/minecraft/world/item/ItemStack;)Lnet/minecraft/client/resources/model/BakedModel; net/minecraft/client/renderer/ItemModelShaper/getItemModel (Lnet/minecraft/world/item/ItemStack;)Lnet/minecraft/client/resources/model/BakedModel; +MD: net/minecraft/client/renderer/LevelRenderer/ ()V net/minecraft/client/renderer/LevelRenderer/ ()V +MD: net/minecraft/client/renderer/LevelRenderer/ (Lnet/minecraft/client/Minecraft;Lnet/minecraft/client/renderer/entity/EntityRenderDispatcher;Lnet/minecraft/client/renderer/blockentity/BlockEntityRenderDispatcher;Lnet/minecraft/client/renderer/RenderBuffers;)V net/minecraft/client/renderer/LevelRenderer/ (Lnet/minecraft/client/Minecraft;Lnet/minecraft/client/renderer/entity/EntityRenderDispatcher;Lnet/minecraft/client/renderer/blockentity/BlockEntityRenderDispatcher;Lnet/minecraft/client/renderer/RenderBuffers;)V +MD: net/minecraft/client/renderer/LevelRenderer/close ()V net/minecraft/client/renderer/LevelRenderer/close ()V +MD: net/minecraft/client/renderer/LevelRenderer/m_109482_ ()V net/minecraft/client/renderer/LevelRenderer/initOutline ()V +MD: net/minecraft/client/renderer/LevelRenderer/m_109487_ (II)V net/minecraft/client/renderer/LevelRenderer/resize (II)V +MD: net/minecraft/client/renderer/LevelRenderer/m_109490_ (III)V net/minecraft/client/renderer/LevelRenderer/setSectionDirtyWithNeighbors (III)V +MD: net/minecraft/client/renderer/LevelRenderer/m_109494_ (IIIIII)V net/minecraft/client/renderer/LevelRenderer/setBlocksDirty (IIIIII)V +MD: net/minecraft/client/renderer/LevelRenderer/m_109501_ (IIIZ)V net/minecraft/client/renderer/LevelRenderer/setSectionDirty (IIIZ)V +MD: net/minecraft/client/renderer/LevelRenderer/m_109506_ (ILnet/minecraft/core/BlockPos;I)V net/minecraft/client/renderer/LevelRenderer/globalLevelEvent (ILnet/minecraft/core/BlockPos;I)V +MD: net/minecraft/client/renderer/LevelRenderer/m_109514_ (Lnet/minecraft/sounds/SoundEvent;Lnet/minecraft/core/BlockPos;)V net/minecraft/client/renderer/LevelRenderer/playStreamingMusic (Lnet/minecraft/sounds/SoundEvent;Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/client/renderer/LevelRenderer/m_109517_ (Lnet/minecraft/world/entity/Entity;DDDFLcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;)V net/minecraft/client/renderer/LevelRenderer/renderEntity (Lnet/minecraft/world/entity/Entity;DDDFLcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;)V +MD: net/minecraft/client/renderer/LevelRenderer/m_109537_ (Lnet/minecraft/world/level/BlockAndTintGetter;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/BlockPos;)I net/minecraft/client/renderer/LevelRenderer/getLightColor (Lnet/minecraft/world/level/BlockAndTintGetter;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/BlockPos;)I +MD: net/minecraft/client/renderer/LevelRenderer/m_109541_ (Lnet/minecraft/world/level/BlockAndTintGetter;Lnet/minecraft/core/BlockPos;)I net/minecraft/client/renderer/LevelRenderer/getLightColor (Lnet/minecraft/world/level/BlockAndTintGetter;Lnet/minecraft/core/BlockPos;)I +MD: net/minecraft/client/renderer/LevelRenderer/m_109544_ (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/state/BlockState;I)V net/minecraft/client/renderer/LevelRenderer/blockChanged (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/state/BlockState;I)V +MD: net/minecraft/client/renderer/LevelRenderer/m_109550_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Z)V net/minecraft/client/renderer/LevelRenderer/notifyNearbyEntities (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Z)V +MD: net/minecraft/client/renderer/LevelRenderer/m_109588_ (Lcom/mojang/blaze3d/vertex/PoseStack;)V net/minecraft/client/renderer/LevelRenderer/checkPoseStack (Lcom/mojang/blaze3d/vertex/PoseStack;)V +MD: net/minecraft/client/renderer/LevelRenderer/m_109599_ (Lcom/mojang/blaze3d/vertex/PoseStack;FJZLnet/minecraft/client/Camera;Lnet/minecraft/client/renderer/GameRenderer;Lnet/minecraft/client/renderer/LightTexture;Lorg/joml/Matrix4f;)V net/minecraft/client/renderer/LevelRenderer/renderLevel (Lcom/mojang/blaze3d/vertex/PoseStack;FJZLnet/minecraft/client/Camera;Lnet/minecraft/client/renderer/GameRenderer;Lnet/minecraft/client/renderer/LightTexture;Lorg/joml/Matrix4f;)V +MD: net/minecraft/client/renderer/LevelRenderer/m_109608_ (Lcom/mojang/blaze3d/vertex/PoseStack;Lcom/mojang/blaze3d/vertex/VertexConsumer;DDDDDDFFFF)V net/minecraft/client/renderer/LevelRenderer/renderLineBox (Lcom/mojang/blaze3d/vertex/PoseStack;Lcom/mojang/blaze3d/vertex/VertexConsumer;DDDDDDFFFF)V +MD: net/minecraft/client/renderer/LevelRenderer/m_109621_ (Lcom/mojang/blaze3d/vertex/PoseStack;Lcom/mojang/blaze3d/vertex/VertexConsumer;DDDDDDFFFFFFF)V net/minecraft/client/renderer/LevelRenderer/renderLineBox (Lcom/mojang/blaze3d/vertex/PoseStack;Lcom/mojang/blaze3d/vertex/VertexConsumer;DDDDDDFFFFFFF)V +MD: net/minecraft/client/renderer/LevelRenderer/m_109637_ (Lcom/mojang/blaze3d/vertex/PoseStack;Lcom/mojang/blaze3d/vertex/VertexConsumer;Lnet/minecraft/world/entity/Entity;DDDLnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V net/minecraft/client/renderer/LevelRenderer/renderHitOutline (Lcom/mojang/blaze3d/vertex/PoseStack;Lcom/mojang/blaze3d/vertex/VertexConsumer;Lnet/minecraft/world/entity/Entity;DDDLnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V +MD: net/minecraft/client/renderer/LevelRenderer/m_109646_ (Lcom/mojang/blaze3d/vertex/PoseStack;Lcom/mojang/blaze3d/vertex/VertexConsumer;Lnet/minecraft/world/phys/AABB;FFFF)V net/minecraft/client/renderer/LevelRenderer/renderLineBox (Lcom/mojang/blaze3d/vertex/PoseStack;Lcom/mojang/blaze3d/vertex/VertexConsumer;Lnet/minecraft/world/phys/AABB;FFFF)V +MD: net/minecraft/client/renderer/LevelRenderer/m_109693_ (Lnet/minecraft/client/Camera;)V net/minecraft/client/renderer/LevelRenderer/tickRain (Lnet/minecraft/client/Camera;)V +MD: net/minecraft/client/renderer/LevelRenderer/m_109701_ (Lnet/minecraft/client/multiplayer/ClientLevel;)V net/minecraft/client/renderer/LevelRenderer/setLevel (Lnet/minecraft/client/multiplayer/ClientLevel;)V +MD: net/minecraft/client/renderer/LevelRenderer/m_109703_ (Lnet/minecraft/client/renderer/LightTexture;FDDD)V net/minecraft/client/renderer/LevelRenderer/renderSnowAndRain (Lnet/minecraft/client/renderer/LightTexture;FDDD)V +MD: net/minecraft/client/renderer/LevelRenderer/m_109721_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/state/BlockState;)V net/minecraft/client/renderer/LevelRenderer/setBlockDirty (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/state/BlockState;)V +MD: net/minecraft/client/renderer/LevelRenderer/m_109728_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/client/renderer/chunk/ChunkRenderDispatcher$RenderChunk;Lnet/minecraft/core/Direction;)Lnet/minecraft/client/renderer/chunk/ChunkRenderDispatcher$RenderChunk; net/minecraft/client/renderer/LevelRenderer/getRelativeFrom (Lnet/minecraft/core/BlockPos;Lnet/minecraft/client/renderer/chunk/ChunkRenderDispatcher$RenderChunk;Lnet/minecraft/core/Direction;)Lnet/minecraft/client/renderer/chunk/ChunkRenderDispatcher$RenderChunk; +MD: net/minecraft/client/renderer/LevelRenderer/m_109732_ (Lnet/minecraft/core/BlockPos;Z)V net/minecraft/client/renderer/LevelRenderer/setBlockDirty (Lnet/minecraft/core/BlockPos;Z)V +MD: net/minecraft/client/renderer/LevelRenderer/m_109735_ (Lnet/minecraft/core/particles/ParticleOptions;DDDDDD)V net/minecraft/client/renderer/LevelRenderer/addParticle (Lnet/minecraft/core/particles/ParticleOptions;DDDDDD)V +MD: net/minecraft/client/renderer/LevelRenderer/m_109743_ (Lnet/minecraft/core/particles/ParticleOptions;ZDDDDDD)V net/minecraft/client/renderer/LevelRenderer/addParticle (Lnet/minecraft/core/particles/ParticleOptions;ZDDDDDD)V +MD: net/minecraft/client/renderer/LevelRenderer/m_109752_ (Lnet/minecraft/core/particles/ParticleOptions;ZZDDDDDD)V net/minecraft/client/renderer/LevelRenderer/addParticle (Lnet/minecraft/core/particles/ParticleOptions;ZZDDDDDD)V +MD: net/minecraft/client/renderer/LevelRenderer/m_109762_ (Ljava/util/Collection;Ljava/util/Collection;)V net/minecraft/client/renderer/LevelRenderer/updateGlobalBlockEntities (Ljava/util/Collection;Ljava/util/Collection;)V +MD: net/minecraft/client/renderer/LevelRenderer/m_109765_ (Lnet/minecraft/server/level/BlockDestructionProgress;)V net/minecraft/client/renderer/LevelRenderer/removeProgress (Lnet/minecraft/server/level/BlockDestructionProgress;)V +MD: net/minecraft/client/renderer/LevelRenderer/m_109767_ (Z)Lnet/minecraft/client/ParticleStatus; net/minecraft/client/renderer/LevelRenderer/calculateParticleLevel (Z)Lnet/minecraft/client/ParticleStatus; +MD: net/minecraft/client/renderer/LevelRenderer/m_109769_ ()V net/minecraft/client/renderer/LevelRenderer/doEntityOutline ()V +MD: net/minecraft/client/renderer/LevelRenderer/m_109770_ (III)V net/minecraft/client/renderer/LevelRenderer/setSectionDirty (III)V +MD: net/minecraft/client/renderer/LevelRenderer/m_109774_ (ILnet/minecraft/core/BlockPos;I)V net/minecraft/client/renderer/LevelRenderer/destroyBlockProgress (ILnet/minecraft/core/BlockPos;I)V +MD: net/minecraft/client/renderer/LevelRenderer/m_109780_ (Lcom/mojang/blaze3d/vertex/PoseStack;)V net/minecraft/client/renderer/LevelRenderer/renderEndSky (Lcom/mojang/blaze3d/vertex/PoseStack;)V +MD: net/minecraft/client/renderer/LevelRenderer/m_109782_ (Lcom/mojang/blaze3d/vertex/PoseStack;Lcom/mojang/blaze3d/vertex/VertexConsumer;Lnet/minecraft/world/phys/shapes/VoxelShape;DDDFFFF)V net/minecraft/client/renderer/LevelRenderer/renderShape (Lcom/mojang/blaze3d/vertex/PoseStack;Lcom/mojang/blaze3d/vertex/VertexConsumer;Lnet/minecraft/world/phys/shapes/VoxelShape;DDDFFFF)V +MD: net/minecraft/client/renderer/LevelRenderer/m_109795_ (Lnet/minecraft/core/particles/ParticleOptions;ZDDDDDD)Lnet/minecraft/client/particle/Particle; net/minecraft/client/renderer/LevelRenderer/addParticleInternal (Lnet/minecraft/core/particles/ParticleOptions;ZDDDDDD)Lnet/minecraft/client/particle/Particle; +MD: net/minecraft/client/renderer/LevelRenderer/m_109804_ (Lnet/minecraft/core/particles/ParticleOptions;ZZDDDDDD)Lnet/minecraft/client/particle/Particle; net/minecraft/client/renderer/LevelRenderer/addParticleInternal (Lnet/minecraft/core/particles/ParticleOptions;ZZDDDDDD)Lnet/minecraft/client/particle/Particle; +MD: net/minecraft/client/renderer/LevelRenderer/m_109817_ ()Z net/minecraft/client/renderer/LevelRenderer/shouldShowEntityOutlines ()Z +MD: net/minecraft/client/renderer/LevelRenderer/m_109818_ ()V net/minecraft/client/renderer/LevelRenderer/allChanged ()V +MD: net/minecraft/client/renderer/LevelRenderer/m_109820_ ()Ljava/lang/String; net/minecraft/client/renderer/LevelRenderer/getChunkStatistics ()Ljava/lang/String; +MD: net/minecraft/client/renderer/LevelRenderer/m_109821_ ()I net/minecraft/client/renderer/LevelRenderer/countRenderedChunks ()I +MD: net/minecraft/client/renderer/LevelRenderer/m_109822_ ()Ljava/lang/String; net/minecraft/client/renderer/LevelRenderer/getEntityStatistics ()Ljava/lang/String; +MD: net/minecraft/client/renderer/LevelRenderer/m_109823_ ()V net/minecraft/client/renderer/LevelRenderer/tick ()V +MD: net/minecraft/client/renderer/LevelRenderer/m_109824_ ()V net/minecraft/client/renderer/LevelRenderer/clear ()V +MD: net/minecraft/client/renderer/LevelRenderer/m_109825_ ()Z net/minecraft/client/renderer/LevelRenderer/hasRenderedAllChunks ()Z +MD: net/minecraft/client/renderer/LevelRenderer/m_109826_ ()V net/minecraft/client/renderer/LevelRenderer/needsUpdate ()V +MD: net/minecraft/client/renderer/LevelRenderer/m_109827_ ()Lcom/mojang/blaze3d/pipeline/RenderTarget; net/minecraft/client/renderer/LevelRenderer/entityTarget ()Lcom/mojang/blaze3d/pipeline/RenderTarget; +MD: net/minecraft/client/renderer/LevelRenderer/m_109828_ ()Lcom/mojang/blaze3d/pipeline/RenderTarget; net/minecraft/client/renderer/LevelRenderer/getTranslucentTarget ()Lcom/mojang/blaze3d/pipeline/RenderTarget; +MD: net/minecraft/client/renderer/LevelRenderer/m_109829_ ()Lcom/mojang/blaze3d/pipeline/RenderTarget; net/minecraft/client/renderer/LevelRenderer/getItemEntityTarget ()Lcom/mojang/blaze3d/pipeline/RenderTarget; +MD: net/minecraft/client/renderer/LevelRenderer/m_109830_ ()Lcom/mojang/blaze3d/pipeline/RenderTarget; net/minecraft/client/renderer/LevelRenderer/getParticlesTarget ()Lcom/mojang/blaze3d/pipeline/RenderTarget; +MD: net/minecraft/client/renderer/LevelRenderer/m_109831_ ()Lcom/mojang/blaze3d/pipeline/RenderTarget; net/minecraft/client/renderer/LevelRenderer/getWeatherTarget ()Lcom/mojang/blaze3d/pipeline/RenderTarget; +MD: net/minecraft/client/renderer/LevelRenderer/m_109832_ ()Lcom/mojang/blaze3d/pipeline/RenderTarget; net/minecraft/client/renderer/LevelRenderer/getCloudsTarget ()Lcom/mojang/blaze3d/pipeline/RenderTarget; +MD: net/minecraft/client/renderer/LevelRenderer/m_109833_ ()V net/minecraft/client/renderer/LevelRenderer/initTransparency ()V +MD: net/minecraft/client/renderer/LevelRenderer/m_109834_ ()V net/minecraft/client/renderer/LevelRenderer/deinitTransparency ()V +MD: net/minecraft/client/renderer/LevelRenderer/m_109835_ ()V net/minecraft/client/renderer/LevelRenderer/createDarkSky ()V +MD: net/minecraft/client/renderer/LevelRenderer/m_109836_ ()V net/minecraft/client/renderer/LevelRenderer/createLightSky ()V +MD: net/minecraft/client/renderer/LevelRenderer/m_109837_ ()V net/minecraft/client/renderer/LevelRenderer/createStars ()V +MD: net/minecraft/client/renderer/LevelRenderer/m_172965_ (Lcom/mojang/blaze3d/vertex/VertexConsumer;DDDDDDFFFF)V net/minecraft/client/renderer/LevelRenderer/renderLineBox (Lcom/mojang/blaze3d/vertex/VertexConsumer;DDDDDDFFFF)V +MD: net/minecraft/client/renderer/LevelRenderer/m_172993_ (Lnet/minecraft/client/renderer/RenderType;Lcom/mojang/blaze3d/vertex/PoseStack;DDDLorg/joml/Matrix4f;)V net/minecraft/client/renderer/LevelRenderer/renderChunkLayer (Lnet/minecraft/client/renderer/RenderType;Lcom/mojang/blaze3d/vertex/PoseStack;DDDLorg/joml/Matrix4f;)V +MD: net/minecraft/client/renderer/LevelRenderer/m_173012_ (Lnet/minecraft/client/Camera;)V net/minecraft/client/renderer/LevelRenderer/renderWorldBorder (Lnet/minecraft/client/Camera;)V +MD: net/minecraft/client/renderer/LevelRenderer/m_173014_ ()V net/minecraft/client/renderer/LevelRenderer/graphicsChanged ()V +MD: net/minecraft/client/renderer/LevelRenderer/m_173015_ ()Lnet/minecraft/client/renderer/chunk/ChunkRenderDispatcher; net/minecraft/client/renderer/LevelRenderer/getChunkRenderDispatcher ()Lnet/minecraft/client/renderer/chunk/ChunkRenderDispatcher; +MD: net/minecraft/client/renderer/LevelRenderer/m_173016_ ()D net/minecraft/client/renderer/LevelRenderer/getTotalChunks ()D +MD: net/minecraft/client/renderer/LevelRenderer/m_173017_ ()D net/minecraft/client/renderer/LevelRenderer/getLastViewDistance ()D +MD: net/minecraft/client/renderer/LevelRenderer/m_173018_ ()V net/minecraft/client/renderer/LevelRenderer/captureFrustum ()V +MD: net/minecraft/client/renderer/LevelRenderer/m_173019_ ()V net/minecraft/client/renderer/LevelRenderer/killFrustum ()V +MD: net/minecraft/client/renderer/LevelRenderer/m_194338_ (Lnet/minecraft/client/Camera;Lnet/minecraft/client/renderer/culling/Frustum;ZZ)V net/minecraft/client/renderer/LevelRenderer/setupRender (Lnet/minecraft/client/Camera;Lnet/minecraft/client/renderer/culling/Frustum;ZZ)V +MD: net/minecraft/client/renderer/LevelRenderer/m_194343_ (Lnet/minecraft/client/Camera;Ljava/util/Queue;)V net/minecraft/client/renderer/LevelRenderer/initializeQueueForFullUpdate (Lnet/minecraft/client/Camera;Ljava/util/Queue;)V +MD: net/minecraft/client/renderer/LevelRenderer/m_194352_ (Lnet/minecraft/client/renderer/chunk/ChunkRenderDispatcher$RenderChunk;)V net/minecraft/client/renderer/LevelRenderer/addRecentlyCompiledChunk (Lnet/minecraft/client/renderer/chunk/ChunkRenderDispatcher$RenderChunk;)V +MD: net/minecraft/client/renderer/LevelRenderer/m_194354_ (Lnet/minecraft/client/renderer/culling/Frustum;)V net/minecraft/client/renderer/LevelRenderer/applyFrustum (Lnet/minecraft/client/renderer/culling/Frustum;)V +MD: net/minecraft/client/renderer/LevelRenderer/m_194359_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/client/renderer/chunk/ChunkRenderDispatcher$RenderChunk;)Z net/minecraft/client/renderer/LevelRenderer/closeToBorder (Lnet/minecraft/core/BlockPos;Lnet/minecraft/client/renderer/chunk/ChunkRenderDispatcher$RenderChunk;)Z +MD: net/minecraft/client/renderer/LevelRenderer/m_194362_ (Ljava/util/LinkedHashSet;Lnet/minecraft/client/renderer/LevelRenderer$RenderInfoMap;Lnet/minecraft/world/phys/Vec3;Ljava/util/Queue;Z)V net/minecraft/client/renderer/LevelRenderer/updateRenderChunks (Ljava/util/LinkedHashSet;Lnet/minecraft/client/renderer/LevelRenderer$RenderInfoMap;Lnet/minecraft/world/phys/Vec3;Ljava/util/Queue;Z)V +MD: net/minecraft/client/renderer/LevelRenderer/m_194370_ (Lnet/minecraft/client/Camera;)V net/minecraft/client/renderer/LevelRenderer/compileChunks (Lnet/minecraft/client/Camera;)V +MD: net/minecraft/client/renderer/LevelRenderer/m_202423_ (Lcom/mojang/blaze3d/vertex/PoseStack;Lorg/joml/Matrix4f;FLnet/minecraft/client/Camera;ZLjava/lang/Runnable;)V net/minecraft/client/renderer/LevelRenderer/renderSky (Lcom/mojang/blaze3d/vertex/PoseStack;Lorg/joml/Matrix4f;FLnet/minecraft/client/Camera;ZLjava/lang/Runnable;)V +MD: net/minecraft/client/renderer/LevelRenderer/m_202430_ (Lnet/minecraft/core/BlockPos;)Z net/minecraft/client/renderer/LevelRenderer/isChunkCompiled (Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/client/renderer/LevelRenderer/m_234249_ (DDD)Ljava/lang/String; net/minecraft/client/renderer/LevelRenderer/lambda$addParticle$8 (DDD)Ljava/lang/String; +MD: net/minecraft/client/renderer/LevelRenderer/m_234253_ (J)Ljava/util/SortedSet; net/minecraft/client/renderer/LevelRenderer/lambda$destroyBlockProgress$10 (J)Ljava/util/SortedSet; +MD: net/minecraft/client/renderer/LevelRenderer/m_234257_ (Lnet/minecraft/util/RandomSource;)Lnet/minecraft/world/phys/Vec3; net/minecraft/client/renderer/LevelRenderer/lambda$levelEvent$9 (Lnet/minecraft/util/RandomSource;)Lnet/minecraft/world/phys/Vec3; +MD: net/minecraft/client/renderer/LevelRenderer/m_234259_ (Lcom/mojang/blaze3d/vertex/BufferBuilder;)Lcom/mojang/blaze3d/vertex/BufferBuilder$RenderedBuffer; net/minecraft/client/renderer/LevelRenderer/drawStars (Lcom/mojang/blaze3d/vertex/BufferBuilder;)Lcom/mojang/blaze3d/vertex/BufferBuilder$RenderedBuffer; +MD: net/minecraft/client/renderer/LevelRenderer/m_234261_ (Lcom/mojang/blaze3d/vertex/BufferBuilder;DDDLnet/minecraft/world/phys/Vec3;)Lcom/mojang/blaze3d/vertex/BufferBuilder$RenderedBuffer; net/minecraft/client/renderer/LevelRenderer/buildClouds (Lcom/mojang/blaze3d/vertex/BufferBuilder;DDDLnet/minecraft/world/phys/Vec3;)Lcom/mojang/blaze3d/vertex/BufferBuilder$RenderedBuffer; +MD: net/minecraft/client/renderer/LevelRenderer/m_234267_ (Lcom/mojang/blaze3d/vertex/BufferBuilder;F)Lcom/mojang/blaze3d/vertex/BufferBuilder$RenderedBuffer; net/minecraft/client/renderer/LevelRenderer/buildSkyDisc (Lcom/mojang/blaze3d/vertex/BufferBuilder;F)Lcom/mojang/blaze3d/vertex/BufferBuilder$RenderedBuffer; +MD: net/minecraft/client/renderer/LevelRenderer/m_234270_ (Lcom/mojang/blaze3d/vertex/VertexConsumer;Lcom/mojang/blaze3d/vertex/PoseStack$Pose;DDDFFFFDDDDDD)V net/minecraft/client/renderer/LevelRenderer/lambda$renderShape$7 (Lcom/mojang/blaze3d/vertex/VertexConsumer;Lcom/mojang/blaze3d/vertex/PoseStack$Pose;DDDFFFFDDDDDD)V +MD: net/minecraft/client/renderer/LevelRenderer/m_234286_ (Lnet/minecraft/client/Camera;FZF)V net/minecraft/client/renderer/LevelRenderer/lambda$renderLevel$4 (Lnet/minecraft/client/Camera;FZF)V +MD: net/minecraft/client/renderer/LevelRenderer/m_234291_ (Lnet/minecraft/client/Camera;Lnet/minecraft/world/phys/Vec3;Z)V net/minecraft/client/renderer/LevelRenderer/lambda$setupRender$2 (Lnet/minecraft/client/Camera;Lnet/minecraft/world/phys/Vec3;Z)V +MD: net/minecraft/client/renderer/LevelRenderer/m_234295_ (Lnet/minecraft/client/renderer/MultiBufferSource$BufferSource;Lcom/mojang/blaze3d/vertex/VertexConsumer;Lnet/minecraft/client/renderer/RenderType;)Lcom/mojang/blaze3d/vertex/VertexConsumer; net/minecraft/client/renderer/LevelRenderer/lambda$renderLevel$5 (Lnet/minecraft/client/renderer/MultiBufferSource$BufferSource;Lcom/mojang/blaze3d/vertex/VertexConsumer;Lnet/minecraft/client/renderer/RenderType;)Lcom/mojang/blaze3d/vertex/VertexConsumer; +MD: net/minecraft/client/renderer/LevelRenderer/m_234299_ (Lnet/minecraft/client/renderer/RenderType;)Ljava/lang/String; net/minecraft/client/renderer/LevelRenderer/lambda$renderChunkLayer$6 (Lnet/minecraft/client/renderer/RenderType;)Ljava/lang/String; +MD: net/minecraft/client/renderer/LevelRenderer/m_234301_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/client/renderer/LevelRenderer$RenderChunkInfo;)D net/minecraft/client/renderer/LevelRenderer/lambda$initializeQueueForFullUpdate$3 (Lnet/minecraft/core/BlockPos;Lnet/minecraft/client/renderer/LevelRenderer$RenderChunkInfo;)D +MD: net/minecraft/client/renderer/LevelRenderer/m_234304_ (ILnet/minecraft/core/BlockPos;I)V net/minecraft/client/renderer/LevelRenderer/levelEvent (ILnet/minecraft/core/BlockPos;I)V +MD: net/minecraft/client/renderer/LevelRenderer/m_234308_ (J)J net/minecraft/client/renderer/LevelRenderer/lambda$setupRender$1 (J)J +MD: net/minecraft/client/renderer/LevelRenderer/m_234310_ (Lnet/minecraft/client/Camera;)Z net/minecraft/client/renderer/LevelRenderer/doesMobEffectBlockSky (Lnet/minecraft/client/Camera;)Z +MD: net/minecraft/client/renderer/LevelRenderer/m_244728_ (Lnet/minecraft/server/packs/PackResources;)Lnet/minecraft/network/chat/MutableComponent; net/minecraft/client/renderer/LevelRenderer/lambda$initTransparency$0 (Lnet/minecraft/server/packs/PackResources;)Lnet/minecraft/network/chat/MutableComponent; +MD: net/minecraft/client/renderer/LevelRenderer/m_252964_ (Lorg/joml/Matrix4f;Lorg/joml/Matrix4f;DDDLnet/minecraft/client/renderer/culling/Frustum;)V net/minecraft/client/renderer/LevelRenderer/captureFrustum (Lorg/joml/Matrix4f;Lorg/joml/Matrix4f;DDDLnet/minecraft/client/renderer/culling/Frustum;)V +MD: net/minecraft/client/renderer/LevelRenderer/m_253054_ (Lcom/mojang/blaze3d/vertex/PoseStack;Lorg/joml/Matrix4f;FDDD)V net/minecraft/client/renderer/LevelRenderer/renderClouds (Lcom/mojang/blaze3d/vertex/PoseStack;Lorg/joml/Matrix4f;FDDD)V +MD: net/minecraft/client/renderer/LevelRenderer/m_253210_ (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/world/phys/Vec3;Lorg/joml/Matrix4f;)V net/minecraft/client/renderer/LevelRenderer/prepareCullFrustum (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/world/phys/Vec3;Lorg/joml/Matrix4f;)V +MD: net/minecraft/client/renderer/LevelRenderer/m_269092_ (Lcom/mojang/blaze3d/vertex/VertexConsumer;Lorg/joml/Matrix4f;IIIIIII)V net/minecraft/client/renderer/LevelRenderer/addFrustumQuad (Lcom/mojang/blaze3d/vertex/VertexConsumer;Lorg/joml/Matrix4f;IIIIIII)V +MD: net/minecraft/client/renderer/LevelRenderer/m_269208_ (Lcom/mojang/blaze3d/vertex/PoseStack;Lcom/mojang/blaze3d/vertex/VertexConsumer;DDDDDDFFFF)V net/minecraft/client/renderer/LevelRenderer/addChainedFilledBoxVertices (Lcom/mojang/blaze3d/vertex/PoseStack;Lcom/mojang/blaze3d/vertex/VertexConsumer;DDDDDDFFFF)V +MD: net/minecraft/client/renderer/LevelRenderer/m_269236_ (Lcom/mojang/blaze3d/vertex/VertexConsumer;Lorg/joml/Matrix4f;I)V net/minecraft/client/renderer/LevelRenderer/addFrustumVertex (Lcom/mojang/blaze3d/vertex/VertexConsumer;Lorg/joml/Matrix4f;I)V +MD: net/minecraft/client/renderer/LevelRenderer/m_269240_ (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;Lnet/minecraft/client/Camera;)V net/minecraft/client/renderer/LevelRenderer/renderDebug (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;Lnet/minecraft/client/Camera;)V +MD: net/minecraft/client/renderer/LevelRenderer/m_269282_ (Lcom/mojang/blaze3d/vertex/PoseStack;Lcom/mojang/blaze3d/vertex/VertexConsumer;FFFFFFFFFF)V net/minecraft/client/renderer/LevelRenderer/addChainedFilledBoxVertices (Lcom/mojang/blaze3d/vertex/PoseStack;Lcom/mojang/blaze3d/vertex/VertexConsumer;FFFFFFFFFF)V +MD: net/minecraft/client/renderer/LevelRenderer/m_285739_ (FFFF)Lnet/minecraft/world/phys/Vec3; net/minecraft/client/renderer/LevelRenderer/shiftHue (FFFF)Lnet/minecraft/world/phys/Vec3; +MD: net/minecraft/client/renderer/LevelRenderer/m_285900_ (Lcom/mojang/blaze3d/vertex/PoseStack;Lcom/mojang/blaze3d/vertex/VertexConsumer;Lnet/minecraft/world/phys/shapes/VoxelShape;DDDFFFFZ)V net/minecraft/client/renderer/LevelRenderer/renderVoxelShape (Lcom/mojang/blaze3d/vertex/PoseStack;Lcom/mojang/blaze3d/vertex/VertexConsumer;Lnet/minecraft/world/phys/shapes/VoxelShape;DDDFFFFZ)V +MD: net/minecraft/client/renderer/LevelRenderer/m_285956_ (F)Lnet/minecraft/world/phys/Vec3; net/minecraft/client/renderer/LevelRenderer/mixColor (F)Lnet/minecraft/world/phys/Vec3; +MD: net/minecraft/client/renderer/LevelRenderer/m_6213_ (Lnet/minecraft/server/packs/resources/ResourceManager;)V net/minecraft/client/renderer/LevelRenderer/onResourceManagerReload (Lnet/minecraft/server/packs/resources/ResourceManager;)V +MD: net/minecraft/client/renderer/LevelRenderer$RenderChunkInfo/ (Lnet/minecraft/client/renderer/chunk/ChunkRenderDispatcher$RenderChunk;Lnet/minecraft/core/Direction;I)V net/minecraft/client/renderer/LevelRenderer$RenderChunkInfo/ (Lnet/minecraft/client/renderer/chunk/ChunkRenderDispatcher$RenderChunk;Lnet/minecraft/core/Direction;I)V +MD: net/minecraft/client/renderer/LevelRenderer$RenderChunkInfo/equals (Ljava/lang/Object;)Z net/minecraft/client/renderer/LevelRenderer$RenderChunkInfo/equals (Ljava/lang/Object;)Z +MD: net/minecraft/client/renderer/LevelRenderer$RenderChunkInfo/hashCode ()I net/minecraft/client/renderer/LevelRenderer$RenderChunkInfo/hashCode ()I +MD: net/minecraft/client/renderer/LevelRenderer$RenderChunkInfo/m_109854_ (BLnet/minecraft/core/Direction;)V net/minecraft/client/renderer/LevelRenderer$RenderChunkInfo/setDirections (BLnet/minecraft/core/Direction;)V +MD: net/minecraft/client/renderer/LevelRenderer$RenderChunkInfo/m_109859_ (Lnet/minecraft/core/Direction;)Z net/minecraft/client/renderer/LevelRenderer$RenderChunkInfo/hasDirection (Lnet/minecraft/core/Direction;)Z +MD: net/minecraft/client/renderer/LevelRenderer$RenderChunkInfo/m_173025_ ()Z net/minecraft/client/renderer/LevelRenderer$RenderChunkInfo/hasSourceDirections ()Z +MD: net/minecraft/client/renderer/LevelRenderer$RenderChunkInfo/m_173026_ (I)Z net/minecraft/client/renderer/LevelRenderer$RenderChunkInfo/hasSourceDirection (I)Z +MD: net/minecraft/client/renderer/LevelRenderer$RenderChunkInfo/m_173028_ (Lnet/minecraft/core/Direction;)V net/minecraft/client/renderer/LevelRenderer$RenderChunkInfo/addSourceDirection (Lnet/minecraft/core/Direction;)V +MD: net/minecraft/client/renderer/LevelRenderer$RenderChunkInfo/m_274540_ (III)Z net/minecraft/client/renderer/LevelRenderer$RenderChunkInfo/isAxisAlignedWith (III)Z +MD: net/minecraft/client/renderer/LevelRenderer$RenderChunkStorage/ (I)V net/minecraft/client/renderer/LevelRenderer$RenderChunkStorage/ (I)V +MD: net/minecraft/client/renderer/LevelRenderer$RenderInfoMap/ (I)V net/minecraft/client/renderer/LevelRenderer$RenderInfoMap/ (I)V +MD: net/minecraft/client/renderer/LevelRenderer$RenderInfoMap/m_173035_ (Lnet/minecraft/client/renderer/chunk/ChunkRenderDispatcher$RenderChunk;)Lnet/minecraft/client/renderer/LevelRenderer$RenderChunkInfo; net/minecraft/client/renderer/LevelRenderer$RenderInfoMap/get (Lnet/minecraft/client/renderer/chunk/ChunkRenderDispatcher$RenderChunk;)Lnet/minecraft/client/renderer/LevelRenderer$RenderChunkInfo; +MD: net/minecraft/client/renderer/LevelRenderer$RenderInfoMap/m_173037_ (Lnet/minecraft/client/renderer/chunk/ChunkRenderDispatcher$RenderChunk;Lnet/minecraft/client/renderer/LevelRenderer$RenderChunkInfo;)V net/minecraft/client/renderer/LevelRenderer$RenderInfoMap/put (Lnet/minecraft/client/renderer/chunk/ChunkRenderDispatcher$RenderChunk;Lnet/minecraft/client/renderer/LevelRenderer$RenderChunkInfo;)V +MD: net/minecraft/client/renderer/LevelRenderer$TransparencyShaderException/ (Ljava/lang/String;Ljava/lang/Throwable;)V net/minecraft/client/renderer/LevelRenderer$TransparencyShaderException/ (Ljava/lang/String;Ljava/lang/Throwable;)V +MD: net/minecraft/client/renderer/LightTexture/ (Lnet/minecraft/client/renderer/GameRenderer;Lnet/minecraft/client/Minecraft;)V net/minecraft/client/renderer/LightTexture/ (Lnet/minecraft/client/renderer/GameRenderer;Lnet/minecraft/client/Minecraft;)V +MD: net/minecraft/client/renderer/LightTexture/close ()V net/minecraft/client/renderer/LightTexture/close ()V +MD: net/minecraft/client/renderer/LightTexture/m_109880_ ()V net/minecraft/client/renderer/LightTexture/tick ()V +MD: net/minecraft/client/renderer/LightTexture/m_109881_ (F)V net/minecraft/client/renderer/LightTexture/updateLightTexture (F)V +MD: net/minecraft/client/renderer/LightTexture/m_109883_ (I)I net/minecraft/client/renderer/LightTexture/block (I)I +MD: net/minecraft/client/renderer/LightTexture/m_109885_ (II)I net/minecraft/client/renderer/LightTexture/pack (II)I +MD: net/minecraft/client/renderer/LightTexture/m_109891_ ()V net/minecraft/client/renderer/LightTexture/turnOffLightLayer ()V +MD: net/minecraft/client/renderer/LightTexture/m_109892_ (F)F net/minecraft/client/renderer/LightTexture/notGamma (F)F +MD: net/minecraft/client/renderer/LightTexture/m_109894_ (I)I net/minecraft/client/renderer/LightTexture/sky (I)I +MD: net/minecraft/client/renderer/LightTexture/m_109896_ ()V net/minecraft/client/renderer/LightTexture/turnOnLightLayer ()V +MD: net/minecraft/client/renderer/LightTexture/m_234312_ (Lnet/minecraft/world/entity/LivingEntity;FF)F net/minecraft/client/renderer/LightTexture/calculateDarknessScale (Lnet/minecraft/world/entity/LivingEntity;FF)F +MD: net/minecraft/client/renderer/LightTexture/m_234316_ (Lnet/minecraft/world/level/dimension/DimensionType;I)F net/minecraft/client/renderer/LightTexture/getBrightness (Lnet/minecraft/world/level/dimension/DimensionType;I)F +MD: net/minecraft/client/renderer/LightTexture/m_234319_ (F)F net/minecraft/client/renderer/LightTexture/getDarknessGamma (F)F +MD: net/minecraft/client/renderer/LightTexture/m_252983_ (Lorg/joml/Vector3f;)V net/minecraft/client/renderer/LightTexture/clampColor (Lorg/joml/Vector3f;)V +MD: net/minecraft/client/renderer/MultiBufferSource/m_109898_ (Lcom/mojang/blaze3d/vertex/BufferBuilder;)Lnet/minecraft/client/renderer/MultiBufferSource$BufferSource; net/minecraft/client/renderer/MultiBufferSource/immediate (Lcom/mojang/blaze3d/vertex/BufferBuilder;)Lnet/minecraft/client/renderer/MultiBufferSource$BufferSource; +MD: net/minecraft/client/renderer/MultiBufferSource/m_109900_ (Ljava/util/Map;Lcom/mojang/blaze3d/vertex/BufferBuilder;)Lnet/minecraft/client/renderer/MultiBufferSource$BufferSource; net/minecraft/client/renderer/MultiBufferSource/immediateWithBuffers (Ljava/util/Map;Lcom/mojang/blaze3d/vertex/BufferBuilder;)Lnet/minecraft/client/renderer/MultiBufferSource$BufferSource; +MD: net/minecraft/client/renderer/MultiBufferSource/m_6299_ (Lnet/minecraft/client/renderer/RenderType;)Lcom/mojang/blaze3d/vertex/VertexConsumer; net/minecraft/client/renderer/MultiBufferSource/getBuffer (Lnet/minecraft/client/renderer/RenderType;)Lcom/mojang/blaze3d/vertex/VertexConsumer; +MD: net/minecraft/client/renderer/MultiBufferSource$BufferSource/ (Lcom/mojang/blaze3d/vertex/BufferBuilder;Ljava/util/Map;)V net/minecraft/client/renderer/MultiBufferSource$BufferSource/ (Lcom/mojang/blaze3d/vertex/BufferBuilder;Ljava/util/Map;)V +MD: net/minecraft/client/renderer/MultiBufferSource$BufferSource/m_109911_ ()V net/minecraft/client/renderer/MultiBufferSource$BufferSource/endBatch ()V +MD: net/minecraft/client/renderer/MultiBufferSource$BufferSource/m_109912_ (Lnet/minecraft/client/renderer/RenderType;)V net/minecraft/client/renderer/MultiBufferSource$BufferSource/endBatch (Lnet/minecraft/client/renderer/RenderType;)V +MD: net/minecraft/client/renderer/MultiBufferSource$BufferSource/m_109914_ (Lnet/minecraft/client/renderer/RenderType;)Lcom/mojang/blaze3d/vertex/BufferBuilder; net/minecraft/client/renderer/MultiBufferSource$BufferSource/getBuilderRaw (Lnet/minecraft/client/renderer/RenderType;)Lcom/mojang/blaze3d/vertex/BufferBuilder; +MD: net/minecraft/client/renderer/MultiBufferSource$BufferSource/m_109916_ (Lnet/minecraft/client/renderer/RenderType;)V net/minecraft/client/renderer/MultiBufferSource$BufferSource/lambda$endBatch$0 (Lnet/minecraft/client/renderer/RenderType;)V +MD: net/minecraft/client/renderer/MultiBufferSource$BufferSource/m_173043_ ()V net/minecraft/client/renderer/MultiBufferSource$BufferSource/endLastBatch ()V +MD: net/minecraft/client/renderer/MultiBufferSource$BufferSource/m_6299_ (Lnet/minecraft/client/renderer/RenderType;)Lcom/mojang/blaze3d/vertex/VertexConsumer; net/minecraft/client/renderer/MultiBufferSource$BufferSource/getBuffer (Lnet/minecraft/client/renderer/RenderType;)Lcom/mojang/blaze3d/vertex/VertexConsumer; +MD: net/minecraft/client/renderer/OutlineBufferSource/ (Lnet/minecraft/client/renderer/MultiBufferSource$BufferSource;)V net/minecraft/client/renderer/OutlineBufferSource/ (Lnet/minecraft/client/renderer/MultiBufferSource$BufferSource;)V +MD: net/minecraft/client/renderer/OutlineBufferSource/m_109928_ ()V net/minecraft/client/renderer/OutlineBufferSource/endOutlineBatch ()V +MD: net/minecraft/client/renderer/OutlineBufferSource/m_109929_ (IIII)V net/minecraft/client/renderer/OutlineBufferSource/setColor (IIII)V +MD: net/minecraft/client/renderer/OutlineBufferSource/m_6299_ (Lnet/minecraft/client/renderer/RenderType;)Lcom/mojang/blaze3d/vertex/VertexConsumer; net/minecraft/client/renderer/OutlineBufferSource/getBuffer (Lnet/minecraft/client/renderer/RenderType;)Lcom/mojang/blaze3d/vertex/VertexConsumer; +MD: net/minecraft/client/renderer/OutlineBufferSource$EntityOutlineGenerator/ (Lcom/mojang/blaze3d/vertex/VertexConsumer;IIII)V net/minecraft/client/renderer/OutlineBufferSource$EntityOutlineGenerator/ (Lcom/mojang/blaze3d/vertex/VertexConsumer;IIII)V +MD: net/minecraft/client/renderer/OutlineBufferSource$EntityOutlineGenerator/m_141991_ ()V net/minecraft/client/renderer/OutlineBufferSource$EntityOutlineGenerator/unsetDefaultColor ()V +MD: net/minecraft/client/renderer/OutlineBufferSource$EntityOutlineGenerator/m_5483_ (DDD)Lcom/mojang/blaze3d/vertex/VertexConsumer; net/minecraft/client/renderer/OutlineBufferSource$EntityOutlineGenerator/vertex (DDD)Lcom/mojang/blaze3d/vertex/VertexConsumer; +MD: net/minecraft/client/renderer/OutlineBufferSource$EntityOutlineGenerator/m_5601_ (FFF)Lcom/mojang/blaze3d/vertex/VertexConsumer; net/minecraft/client/renderer/OutlineBufferSource$EntityOutlineGenerator/normal (FFF)Lcom/mojang/blaze3d/vertex/VertexConsumer; +MD: net/minecraft/client/renderer/OutlineBufferSource$EntityOutlineGenerator/m_5752_ ()V net/minecraft/client/renderer/OutlineBufferSource$EntityOutlineGenerator/endVertex ()V +MD: net/minecraft/client/renderer/OutlineBufferSource$EntityOutlineGenerator/m_5954_ (FFFFFFFFFIIFFF)V net/minecraft/client/renderer/OutlineBufferSource$EntityOutlineGenerator/vertex (FFFFFFFFFIIFFF)V +MD: net/minecraft/client/renderer/OutlineBufferSource$EntityOutlineGenerator/m_6122_ (IIII)Lcom/mojang/blaze3d/vertex/VertexConsumer; net/minecraft/client/renderer/OutlineBufferSource$EntityOutlineGenerator/color (IIII)Lcom/mojang/blaze3d/vertex/VertexConsumer; +MD: net/minecraft/client/renderer/OutlineBufferSource$EntityOutlineGenerator/m_7120_ (II)Lcom/mojang/blaze3d/vertex/VertexConsumer; net/minecraft/client/renderer/OutlineBufferSource$EntityOutlineGenerator/uv2 (II)Lcom/mojang/blaze3d/vertex/VertexConsumer; +MD: net/minecraft/client/renderer/OutlineBufferSource$EntityOutlineGenerator/m_7122_ (II)Lcom/mojang/blaze3d/vertex/VertexConsumer; net/minecraft/client/renderer/OutlineBufferSource$EntityOutlineGenerator/overlayCoords (II)Lcom/mojang/blaze3d/vertex/VertexConsumer; +MD: net/minecraft/client/renderer/OutlineBufferSource$EntityOutlineGenerator/m_7404_ (IIII)V net/minecraft/client/renderer/OutlineBufferSource$EntityOutlineGenerator/defaultColor (IIII)V +MD: net/minecraft/client/renderer/OutlineBufferSource$EntityOutlineGenerator/m_7421_ (FF)Lcom/mojang/blaze3d/vertex/VertexConsumer; net/minecraft/client/renderer/OutlineBufferSource$EntityOutlineGenerator/uv (FF)Lcom/mojang/blaze3d/vertex/VertexConsumer; +MD: net/minecraft/client/renderer/PanoramaRenderer/ (Lnet/minecraft/client/renderer/CubeMap;)V net/minecraft/client/renderer/PanoramaRenderer/ (Lnet/minecraft/client/renderer/CubeMap;)V +MD: net/minecraft/client/renderer/PanoramaRenderer/m_110003_ (FF)V net/minecraft/client/renderer/PanoramaRenderer/render (FF)V +MD: net/minecraft/client/renderer/PanoramaRenderer/m_246245_ (FF)F net/minecraft/client/renderer/PanoramaRenderer/wrap (FF)F +MD: net/minecraft/client/renderer/PostChain/ (Lnet/minecraft/client/renderer/texture/TextureManager;Lnet/minecraft/server/packs/resources/ResourceManager;Lcom/mojang/blaze3d/pipeline/RenderTarget;Lnet/minecraft/resources/ResourceLocation;)V net/minecraft/client/renderer/PostChain/ (Lnet/minecraft/client/renderer/texture/TextureManager;Lnet/minecraft/server/packs/resources/ResourceManager;Lcom/mojang/blaze3d/pipeline/RenderTarget;Lnet/minecraft/resources/ResourceLocation;)V +MD: net/minecraft/client/renderer/PostChain/close ()V net/minecraft/client/renderer/PostChain/close ()V +MD: net/minecraft/client/renderer/PostChain/m_110022_ ()Ljava/lang/String; net/minecraft/client/renderer/PostChain/getName ()Ljava/lang/String; +MD: net/minecraft/client/renderer/PostChain/m_110023_ (F)V net/minecraft/client/renderer/PostChain/process (F)V +MD: net/minecraft/client/renderer/PostChain/m_110025_ (II)V net/minecraft/client/renderer/PostChain/resize (II)V +MD: net/minecraft/client/renderer/PostChain/m_110028_ (Lcom/google/gson/JsonElement;)V net/minecraft/client/renderer/PostChain/parseTargetNode (Lcom/google/gson/JsonElement;)V +MD: net/minecraft/client/renderer/PostChain/m_110030_ (Lnet/minecraft/client/renderer/texture/TextureManager;Lcom/google/gson/JsonElement;)V net/minecraft/client/renderer/PostChain/parsePassNode (Lnet/minecraft/client/renderer/texture/TextureManager;Lcom/google/gson/JsonElement;)V +MD: net/minecraft/client/renderer/PostChain/m_110033_ (Lnet/minecraft/client/renderer/texture/TextureManager;Lnet/minecraft/resources/ResourceLocation;)V net/minecraft/client/renderer/PostChain/load (Lnet/minecraft/client/renderer/texture/TextureManager;Lnet/minecraft/resources/ResourceLocation;)V +MD: net/minecraft/client/renderer/PostChain/m_110036_ (Ljava/lang/String;)Lcom/mojang/blaze3d/pipeline/RenderTarget; net/minecraft/client/renderer/PostChain/getTempTarget (Ljava/lang/String;)Lcom/mojang/blaze3d/pipeline/RenderTarget; +MD: net/minecraft/client/renderer/PostChain/m_110038_ (Ljava/lang/String;II)V net/minecraft/client/renderer/PostChain/addTempTarget (Ljava/lang/String;II)V +MD: net/minecraft/client/renderer/PostChain/m_110042_ (Ljava/lang/String;Lcom/mojang/blaze3d/pipeline/RenderTarget;Lcom/mojang/blaze3d/pipeline/RenderTarget;)Lnet/minecraft/client/renderer/PostPass; net/minecraft/client/renderer/PostChain/addPass (Ljava/lang/String;Lcom/mojang/blaze3d/pipeline/RenderTarget;Lcom/mojang/blaze3d/pipeline/RenderTarget;)Lnet/minecraft/client/renderer/PostPass; +MD: net/minecraft/client/renderer/PostChain/m_110046_ ()V net/minecraft/client/renderer/PostChain/updateOrthoMatrix ()V +MD: net/minecraft/client/renderer/PostChain/m_110047_ (Lcom/google/gson/JsonElement;)V net/minecraft/client/renderer/PostChain/parseUniformNode (Lcom/google/gson/JsonElement;)V +MD: net/minecraft/client/renderer/PostChain/m_110049_ (Ljava/lang/String;)Lcom/mojang/blaze3d/pipeline/RenderTarget; net/minecraft/client/renderer/PostChain/getRenderTarget (Ljava/lang/String;)Lcom/mojang/blaze3d/pipeline/RenderTarget; +MD: net/minecraft/client/renderer/PostChain/m_234321_ (Ljava/lang/String;)Lnet/minecraft/server/ChainedJsonException; net/minecraft/client/renderer/PostChain/lambda$parsePassNode$0 (Ljava/lang/String;)Lnet/minecraft/server/ChainedJsonException; +MD: net/minecraft/client/renderer/PostPass/ (Lnet/minecraft/server/packs/resources/ResourceManager;Ljava/lang/String;Lcom/mojang/blaze3d/pipeline/RenderTarget;Lcom/mojang/blaze3d/pipeline/RenderTarget;)V net/minecraft/client/renderer/PostPass/ (Lnet/minecraft/server/packs/resources/ResourceManager;Ljava/lang/String;Lcom/mojang/blaze3d/pipeline/RenderTarget;Lcom/mojang/blaze3d/pipeline/RenderTarget;)V +MD: net/minecraft/client/renderer/PostPass/close ()V net/minecraft/client/renderer/PostPass/close ()V +MD: net/minecraft/client/renderer/PostPass/m_110065_ (F)V net/minecraft/client/renderer/PostPass/process (F)V +MD: net/minecraft/client/renderer/PostPass/m_110069_ (Ljava/lang/String;Ljava/util/function/IntSupplier;II)V net/minecraft/client/renderer/PostPass/addAuxAsset (Ljava/lang/String;Ljava/util/function/IntSupplier;II)V +MD: net/minecraft/client/renderer/PostPass/m_110074_ ()Lnet/minecraft/client/renderer/EffectInstance; net/minecraft/client/renderer/PostPass/getEffect ()Lnet/minecraft/client/renderer/EffectInstance; +MD: net/minecraft/client/renderer/PostPass/m_173046_ ()Ljava/lang/String; net/minecraft/client/renderer/PostPass/getName ()Ljava/lang/String; +MD: net/minecraft/client/renderer/PostPass/m_253214_ (Lorg/joml/Matrix4f;)V net/minecraft/client/renderer/PostPass/setOrthoMatrix (Lorg/joml/Matrix4f;)V +MD: net/minecraft/client/renderer/Rect2i/ (IIII)V net/minecraft/client/renderer/Rect2i/ (IIII)V +MD: net/minecraft/client/renderer/Rect2i/m_110085_ ()I net/minecraft/client/renderer/Rect2i/getX ()I +MD: net/minecraft/client/renderer/Rect2i/m_110086_ ()I net/minecraft/client/renderer/Rect2i/getY ()I +MD: net/minecraft/client/renderer/Rect2i/m_110087_ (II)Z net/minecraft/client/renderer/Rect2i/contains (II)Z +MD: net/minecraft/client/renderer/Rect2i/m_110090_ ()I net/minecraft/client/renderer/Rect2i/getWidth ()I +MD: net/minecraft/client/renderer/Rect2i/m_110091_ ()I net/minecraft/client/renderer/Rect2i/getHeight ()I +MD: net/minecraft/client/renderer/Rect2i/m_173047_ (I)V net/minecraft/client/renderer/Rect2i/setX (I)V +MD: net/minecraft/client/renderer/Rect2i/m_173049_ (II)V net/minecraft/client/renderer/Rect2i/setPosition (II)V +MD: net/minecraft/client/renderer/Rect2i/m_173052_ (Lnet/minecraft/client/renderer/Rect2i;)Lnet/minecraft/client/renderer/Rect2i; net/minecraft/client/renderer/Rect2i/intersect (Lnet/minecraft/client/renderer/Rect2i;)Lnet/minecraft/client/renderer/Rect2i; +MD: net/minecraft/client/renderer/Rect2i/m_173054_ (I)V net/minecraft/client/renderer/Rect2i/setY (I)V +MD: net/minecraft/client/renderer/Rect2i/m_173056_ (I)V net/minecraft/client/renderer/Rect2i/setWidth (I)V +MD: net/minecraft/client/renderer/Rect2i/m_173058_ (I)V net/minecraft/client/renderer/Rect2i/setHeight (I)V +MD: net/minecraft/client/renderer/RenderBuffers/ ()V net/minecraft/client/renderer/RenderBuffers/ ()V +MD: net/minecraft/client/renderer/RenderBuffers/m_110098_ ()Lnet/minecraft/client/renderer/ChunkBufferBuilderPack; net/minecraft/client/renderer/RenderBuffers/fixedBufferPack ()Lnet/minecraft/client/renderer/ChunkBufferBuilderPack; +MD: net/minecraft/client/renderer/RenderBuffers/m_110101_ (Lit/unimi/dsi/fastutil/objects/Object2ObjectLinkedOpenHashMap;Lnet/minecraft/client/renderer/RenderType;)V net/minecraft/client/renderer/RenderBuffers/put (Lit/unimi/dsi/fastutil/objects/Object2ObjectLinkedOpenHashMap;Lnet/minecraft/client/renderer/RenderType;)V +MD: net/minecraft/client/renderer/RenderBuffers/m_110104_ ()Lnet/minecraft/client/renderer/MultiBufferSource$BufferSource; net/minecraft/client/renderer/RenderBuffers/bufferSource ()Lnet/minecraft/client/renderer/MultiBufferSource$BufferSource; +MD: net/minecraft/client/renderer/RenderBuffers/m_110108_ ()Lnet/minecraft/client/renderer/MultiBufferSource$BufferSource; net/minecraft/client/renderer/RenderBuffers/crumblingBufferSource ()Lnet/minecraft/client/renderer/MultiBufferSource$BufferSource; +MD: net/minecraft/client/renderer/RenderBuffers/m_110109_ ()Lnet/minecraft/client/renderer/OutlineBufferSource; net/minecraft/client/renderer/RenderBuffers/outlineBufferSource ()Lnet/minecraft/client/renderer/OutlineBufferSource; +MD: net/minecraft/client/renderer/RenderBuffers/m_173060_ (Lit/unimi/dsi/fastutil/objects/Object2ObjectLinkedOpenHashMap;Lnet/minecraft/client/renderer/RenderType;)V net/minecraft/client/renderer/RenderBuffers/lambda$new$0 (Lit/unimi/dsi/fastutil/objects/Object2ObjectLinkedOpenHashMap;Lnet/minecraft/client/renderer/RenderType;)V +MD: net/minecraft/client/renderer/RenderBuffers/m_268794_ (Lit/unimi/dsi/fastutil/objects/Object2ObjectLinkedOpenHashMap;)V net/minecraft/client/renderer/RenderBuffers/lambda$new$1 (Lit/unimi/dsi/fastutil/objects/Object2ObjectLinkedOpenHashMap;)V +MD: net/minecraft/client/renderer/RenderStateShard/ ()V net/minecraft/client/renderer/RenderStateShard/ ()V +MD: net/minecraft/client/renderer/RenderStateShard/ (Ljava/lang/String;Ljava/lang/Runnable;Ljava/lang/Runnable;)V net/minecraft/client/renderer/RenderStateShard/ (Ljava/lang/String;Ljava/lang/Runnable;Ljava/lang/Runnable;)V +MD: net/minecraft/client/renderer/RenderStateShard/m_110164_ ()V net/minecraft/client/renderer/RenderStateShard/lambda$static$20 ()V +MD: net/minecraft/client/renderer/RenderStateShard/m_110165_ ()V net/minecraft/client/renderer/RenderStateShard/lambda$static$19 ()V +MD: net/minecraft/client/renderer/RenderStateShard/m_110166_ ()V net/minecraft/client/renderer/RenderStateShard/lambda$static$18 ()V +MD: net/minecraft/client/renderer/RenderStateShard/m_110167_ ()V net/minecraft/client/renderer/RenderStateShard/lambda$static$17 ()V +MD: net/minecraft/client/renderer/RenderStateShard/m_110168_ ()V net/minecraft/client/renderer/RenderStateShard/lambda$static$16 ()V +MD: net/minecraft/client/renderer/RenderStateShard/m_110169_ ()V net/minecraft/client/renderer/RenderStateShard/lambda$static$15 ()V +MD: net/minecraft/client/renderer/RenderStateShard/m_110170_ ()V net/minecraft/client/renderer/RenderStateShard/lambda$static$14 ()V +MD: net/minecraft/client/renderer/RenderStateShard/m_110171_ ()V net/minecraft/client/renderer/RenderStateShard/lambda$static$13 ()V +MD: net/minecraft/client/renderer/RenderStateShard/m_110172_ ()V net/minecraft/client/renderer/RenderStateShard/lambda$static$12 ()V +MD: net/minecraft/client/renderer/RenderStateShard/m_110173_ ()V net/minecraft/client/renderer/RenderStateShard/lambda$static$11 ()V +MD: net/minecraft/client/renderer/RenderStateShard/m_110174_ ()V net/minecraft/client/renderer/RenderStateShard/lambda$static$10 ()V +MD: net/minecraft/client/renderer/RenderStateShard/m_110175_ ()V net/minecraft/client/renderer/RenderStateShard/lambda$static$9 ()V +MD: net/minecraft/client/renderer/RenderStateShard/m_110176_ ()V net/minecraft/client/renderer/RenderStateShard/lambda$static$8 ()V +MD: net/minecraft/client/renderer/RenderStateShard/m_110177_ ()V net/minecraft/client/renderer/RenderStateShard/lambda$static$7 ()V +MD: net/minecraft/client/renderer/RenderStateShard/m_110178_ ()V net/minecraft/client/renderer/RenderStateShard/lambda$static$6 ()V +MD: net/minecraft/client/renderer/RenderStateShard/m_110179_ ()V net/minecraft/client/renderer/RenderStateShard/lambda$static$5 ()V +MD: net/minecraft/client/renderer/RenderStateShard/m_110180_ ()V net/minecraft/client/renderer/RenderStateShard/lambda$static$4 ()V +MD: net/minecraft/client/renderer/RenderStateShard/m_110181_ ()V net/minecraft/client/renderer/RenderStateShard/lambda$static$3 ()V +MD: net/minecraft/client/renderer/RenderStateShard/m_110182_ ()V net/minecraft/client/renderer/RenderStateShard/lambda$static$2 ()V +MD: net/minecraft/client/renderer/RenderStateShard/m_110183_ ()V net/minecraft/client/renderer/RenderStateShard/lambda$static$1 ()V +MD: net/minecraft/client/renderer/RenderStateShard/m_110184_ ()V net/minecraft/client/renderer/RenderStateShard/lambda$static$0 ()V +MD: net/minecraft/client/renderer/RenderStateShard/m_110185_ ()V net/minecraft/client/renderer/RenderStateShard/setupRenderState ()V +MD: net/minecraft/client/renderer/RenderStateShard/m_110186_ (F)V net/minecraft/client/renderer/RenderStateShard/setupGlintTexturing (F)V +MD: net/minecraft/client/renderer/RenderStateShard/m_110188_ ()V net/minecraft/client/renderer/RenderStateShard/clearRenderState ()V +MD: net/minecraft/client/renderer/RenderStateShard/m_110199_ ()V net/minecraft/client/renderer/RenderStateShard/lambda$static$37 ()V +MD: net/minecraft/client/renderer/RenderStateShard/m_110200_ ()V net/minecraft/client/renderer/RenderStateShard/lambda$static$36 ()V +MD: net/minecraft/client/renderer/RenderStateShard/m_110201_ ()V net/minecraft/client/renderer/RenderStateShard/lambda$static$35 ()V +MD: net/minecraft/client/renderer/RenderStateShard/m_110202_ ()V net/minecraft/client/renderer/RenderStateShard/lambda$static$34 ()V +MD: net/minecraft/client/renderer/RenderStateShard/m_110203_ ()V net/minecraft/client/renderer/RenderStateShard/lambda$static$33 ()V +MD: net/minecraft/client/renderer/RenderStateShard/m_110204_ ()V net/minecraft/client/renderer/RenderStateShard/lambda$static$32 ()V +MD: net/minecraft/client/renderer/RenderStateShard/m_110205_ ()V net/minecraft/client/renderer/RenderStateShard/lambda$static$31 ()V +MD: net/minecraft/client/renderer/RenderStateShard/m_110206_ ()V net/minecraft/client/renderer/RenderStateShard/lambda$static$30 ()V +MD: net/minecraft/client/renderer/RenderStateShard/m_110207_ ()V net/minecraft/client/renderer/RenderStateShard/lambda$static$29 ()V +MD: net/minecraft/client/renderer/RenderStateShard/m_110208_ ()V net/minecraft/client/renderer/RenderStateShard/lambda$static$28 ()V +MD: net/minecraft/client/renderer/RenderStateShard/m_110209_ ()V net/minecraft/client/renderer/RenderStateShard/lambda$static$27 ()V +MD: net/minecraft/client/renderer/RenderStateShard/m_110211_ ()V net/minecraft/client/renderer/RenderStateShard/lambda$static$26 ()V +MD: net/minecraft/client/renderer/RenderStateShard/m_110212_ ()V net/minecraft/client/renderer/RenderStateShard/lambda$static$25 ()V +MD: net/minecraft/client/renderer/RenderStateShard/m_110213_ ()V net/minecraft/client/renderer/RenderStateShard/lambda$static$24 ()V +MD: net/minecraft/client/renderer/RenderStateShard/m_110214_ ()V net/minecraft/client/renderer/RenderStateShard/lambda$static$23 ()V +MD: net/minecraft/client/renderer/RenderStateShard/m_110215_ ()V net/minecraft/client/renderer/RenderStateShard/lambda$static$22 ()V +MD: net/minecraft/client/renderer/RenderStateShard/m_110216_ ()V net/minecraft/client/renderer/RenderStateShard/lambda$static$21 ()V +MD: net/minecraft/client/renderer/RenderStateShard/m_285678_ ()V net/minecraft/client/renderer/RenderStateShard/lambda$static$41 ()V +MD: net/minecraft/client/renderer/RenderStateShard/m_285679_ ()V net/minecraft/client/renderer/RenderStateShard/lambda$static$40 ()V +MD: net/minecraft/client/renderer/RenderStateShard/m_285680_ ()V net/minecraft/client/renderer/RenderStateShard/lambda$static$38 ()V +MD: net/minecraft/client/renderer/RenderStateShard/m_285681_ ()V net/minecraft/client/renderer/RenderStateShard/lambda$static$39 ()V +MD: net/minecraft/client/renderer/RenderStateShard/toString ()Ljava/lang/String; net/minecraft/client/renderer/RenderStateShard/toString ()Ljava/lang/String; +MD: net/minecraft/client/renderer/RenderStateShard$BooleanStateShard/ (Ljava/lang/String;Ljava/lang/Runnable;Ljava/lang/Runnable;Z)V net/minecraft/client/renderer/RenderStateShard$BooleanStateShard/ (Ljava/lang/String;Ljava/lang/Runnable;Ljava/lang/Runnable;Z)V +MD: net/minecraft/client/renderer/RenderStateShard$BooleanStateShard/toString ()Ljava/lang/String; net/minecraft/client/renderer/RenderStateShard$BooleanStateShard/toString ()Ljava/lang/String; +MD: net/minecraft/client/renderer/RenderStateShard$ColorLogicStateShard/ (Ljava/lang/String;Ljava/lang/Runnable;Ljava/lang/Runnable;)V net/minecraft/client/renderer/RenderStateShard$ColorLogicStateShard/ (Ljava/lang/String;Ljava/lang/Runnable;Ljava/lang/Runnable;)V +MD: net/minecraft/client/renderer/RenderStateShard$CullStateShard/ (Z)V net/minecraft/client/renderer/RenderStateShard$CullStateShard/ (Z)V +MD: net/minecraft/client/renderer/RenderStateShard$CullStateShard/m_110239_ (Z)V net/minecraft/client/renderer/RenderStateShard$CullStateShard/lambda$new$1 (Z)V +MD: net/minecraft/client/renderer/RenderStateShard$CullStateShard/m_110241_ (Z)V net/minecraft/client/renderer/RenderStateShard$CullStateShard/lambda$new$0 (Z)V +MD: net/minecraft/client/renderer/RenderStateShard$DepthTestStateShard/ (Ljava/lang/String;I)V net/minecraft/client/renderer/RenderStateShard$DepthTestStateShard/ (Ljava/lang/String;I)V +MD: net/minecraft/client/renderer/RenderStateShard$DepthTestStateShard/m_110248_ (I)V net/minecraft/client/renderer/RenderStateShard$DepthTestStateShard/lambda$new$1 (I)V +MD: net/minecraft/client/renderer/RenderStateShard$DepthTestStateShard/m_110250_ (I)V net/minecraft/client/renderer/RenderStateShard$DepthTestStateShard/lambda$new$0 (I)V +MD: net/minecraft/client/renderer/RenderStateShard$DepthTestStateShard/toString ()Ljava/lang/String; net/minecraft/client/renderer/RenderStateShard$DepthTestStateShard/toString ()Ljava/lang/String; +MD: net/minecraft/client/renderer/RenderStateShard$EmptyTextureStateShard/ (Ljava/lang/Runnable;Ljava/lang/Runnable;)V net/minecraft/client/renderer/RenderStateShard$EmptyTextureStateShard/ (Ljava/lang/Runnable;Ljava/lang/Runnable;)V +MD: net/minecraft/client/renderer/RenderStateShard$EmptyTextureStateShard/ ()V net/minecraft/client/renderer/RenderStateShard$EmptyTextureStateShard/ ()V +MD: net/minecraft/client/renderer/RenderStateShard$EmptyTextureStateShard/m_142706_ ()Ljava/util/Optional; net/minecraft/client/renderer/RenderStateShard$EmptyTextureStateShard/cutoutTexture ()Ljava/util/Optional; +MD: net/minecraft/client/renderer/RenderStateShard$EmptyTextureStateShard/m_173119_ ()V net/minecraft/client/renderer/RenderStateShard$EmptyTextureStateShard/lambda$new$1 ()V +MD: net/minecraft/client/renderer/RenderStateShard$EmptyTextureStateShard/m_173120_ ()V net/minecraft/client/renderer/RenderStateShard$EmptyTextureStateShard/lambda$new$0 ()V +MD: net/minecraft/client/renderer/RenderStateShard$LayeringStateShard/ (Ljava/lang/String;Ljava/lang/Runnable;Ljava/lang/Runnable;)V net/minecraft/client/renderer/RenderStateShard$LayeringStateShard/ (Ljava/lang/String;Ljava/lang/Runnable;Ljava/lang/Runnable;)V +MD: net/minecraft/client/renderer/RenderStateShard$LightmapStateShard/ (Z)V net/minecraft/client/renderer/RenderStateShard$LightmapStateShard/ (Z)V +MD: net/minecraft/client/renderer/RenderStateShard$LightmapStateShard/m_110272_ (Z)V net/minecraft/client/renderer/RenderStateShard$LightmapStateShard/lambda$new$1 (Z)V +MD: net/minecraft/client/renderer/RenderStateShard$LightmapStateShard/m_110274_ (Z)V net/minecraft/client/renderer/RenderStateShard$LightmapStateShard/lambda$new$0 (Z)V +MD: net/minecraft/client/renderer/RenderStateShard$LineStateShard/ (Ljava/util/OptionalDouble;)V net/minecraft/client/renderer/RenderStateShard$LineStateShard/ (Ljava/util/OptionalDouble;)V +MD: net/minecraft/client/renderer/RenderStateShard$LineStateShard/m_110279_ (Ljava/util/OptionalDouble;)V net/minecraft/client/renderer/RenderStateShard$LineStateShard/lambda$new$1 (Ljava/util/OptionalDouble;)V +MD: net/minecraft/client/renderer/RenderStateShard$LineStateShard/m_110281_ (Ljava/util/OptionalDouble;)V net/minecraft/client/renderer/RenderStateShard$LineStateShard/lambda$new$0 (Ljava/util/OptionalDouble;)V +MD: net/minecraft/client/renderer/RenderStateShard$LineStateShard/toString ()Ljava/lang/String; net/minecraft/client/renderer/RenderStateShard$LineStateShard/toString ()Ljava/lang/String; +MD: net/minecraft/client/renderer/RenderStateShard$MultiTextureStateShard/ (Lcom/google/common/collect/ImmutableList;)V net/minecraft/client/renderer/RenderStateShard$MultiTextureStateShard/ (Lcom/google/common/collect/ImmutableList;)V +MD: net/minecraft/client/renderer/RenderStateShard$MultiTextureStateShard/m_142706_ ()Ljava/util/Optional; net/minecraft/client/renderer/RenderStateShard$MultiTextureStateShard/cutoutTexture ()Ljava/util/Optional; +MD: net/minecraft/client/renderer/RenderStateShard$MultiTextureStateShard/m_173124_ (Lcom/google/common/collect/ImmutableList;)V net/minecraft/client/renderer/RenderStateShard$MultiTextureStateShard/lambda$new$0 (Lcom/google/common/collect/ImmutableList;)V +MD: net/minecraft/client/renderer/RenderStateShard$MultiTextureStateShard/m_173127_ ()Lnet/minecraft/client/renderer/RenderStateShard$MultiTextureStateShard$Builder; net/minecraft/client/renderer/RenderStateShard$MultiTextureStateShard/builder ()Lnet/minecraft/client/renderer/RenderStateShard$MultiTextureStateShard$Builder; +MD: net/minecraft/client/renderer/RenderStateShard$MultiTextureStateShard/m_173128_ ()V net/minecraft/client/renderer/RenderStateShard$MultiTextureStateShard/lambda$new$1 ()V +MD: net/minecraft/client/renderer/RenderStateShard$MultiTextureStateShard$Builder/ ()V net/minecraft/client/renderer/RenderStateShard$MultiTextureStateShard$Builder/ ()V +MD: net/minecraft/client/renderer/RenderStateShard$MultiTextureStateShard$Builder/m_173131_ ()Lnet/minecraft/client/renderer/RenderStateShard$MultiTextureStateShard; net/minecraft/client/renderer/RenderStateShard$MultiTextureStateShard$Builder/build ()Lnet/minecraft/client/renderer/RenderStateShard$MultiTextureStateShard; +MD: net/minecraft/client/renderer/RenderStateShard$MultiTextureStateShard$Builder/m_173132_ (Lnet/minecraft/resources/ResourceLocation;ZZ)Lnet/minecraft/client/renderer/RenderStateShard$MultiTextureStateShard$Builder; net/minecraft/client/renderer/RenderStateShard$MultiTextureStateShard$Builder/add (Lnet/minecraft/resources/ResourceLocation;ZZ)Lnet/minecraft/client/renderer/RenderStateShard$MultiTextureStateShard$Builder; +MD: net/minecraft/client/renderer/RenderStateShard$OffsetTexturingStateShard/ (FF)V net/minecraft/client/renderer/RenderStateShard$OffsetTexturingStateShard/ (FF)V +MD: net/minecraft/client/renderer/RenderStateShard$OffsetTexturingStateShard/m_110295_ ()V net/minecraft/client/renderer/RenderStateShard$OffsetTexturingStateShard/lambda$new$1 ()V +MD: net/minecraft/client/renderer/RenderStateShard$OffsetTexturingStateShard/m_252593_ (FF)V net/minecraft/client/renderer/RenderStateShard$OffsetTexturingStateShard/lambda$new$0 (FF)V +MD: net/minecraft/client/renderer/RenderStateShard$OutputStateShard/ (Ljava/lang/String;Ljava/lang/Runnable;Ljava/lang/Runnable;)V net/minecraft/client/renderer/RenderStateShard$OutputStateShard/ (Ljava/lang/String;Ljava/lang/Runnable;Ljava/lang/Runnable;)V +MD: net/minecraft/client/renderer/RenderStateShard$OverlayStateShard/ (Z)V net/minecraft/client/renderer/RenderStateShard$OverlayStateShard/ (Z)V +MD: net/minecraft/client/renderer/RenderStateShard$OverlayStateShard/m_110305_ (Z)V net/minecraft/client/renderer/RenderStateShard$OverlayStateShard/lambda$new$1 (Z)V +MD: net/minecraft/client/renderer/RenderStateShard$OverlayStateShard/m_110307_ (Z)V net/minecraft/client/renderer/RenderStateShard$OverlayStateShard/lambda$new$0 (Z)V +MD: net/minecraft/client/renderer/RenderStateShard$ShaderStateShard/ (Ljava/util/function/Supplier;)V net/minecraft/client/renderer/RenderStateShard$ShaderStateShard/ (Ljava/util/function/Supplier;)V +MD: net/minecraft/client/renderer/RenderStateShard$ShaderStateShard/ ()V net/minecraft/client/renderer/RenderStateShard$ShaderStateShard/ ()V +MD: net/minecraft/client/renderer/RenderStateShard$ShaderStateShard/m_173140_ (Ljava/util/function/Supplier;)V net/minecraft/client/renderer/RenderStateShard$ShaderStateShard/lambda$new$0 (Ljava/util/function/Supplier;)V +MD: net/minecraft/client/renderer/RenderStateShard$ShaderStateShard/m_173142_ ()V net/minecraft/client/renderer/RenderStateShard$ShaderStateShard/lambda$new$4 ()V +MD: net/minecraft/client/renderer/RenderStateShard$ShaderStateShard/m_173143_ ()V net/minecraft/client/renderer/RenderStateShard$ShaderStateShard/lambda$new$3 ()V +MD: net/minecraft/client/renderer/RenderStateShard$ShaderStateShard/m_173144_ ()Lnet/minecraft/client/renderer/ShaderInstance; net/minecraft/client/renderer/RenderStateShard$ShaderStateShard/lambda$new$2 ()Lnet/minecraft/client/renderer/ShaderInstance; +MD: net/minecraft/client/renderer/RenderStateShard$ShaderStateShard/m_173145_ ()V net/minecraft/client/renderer/RenderStateShard$ShaderStateShard/lambda$new$1 ()V +MD: net/minecraft/client/renderer/RenderStateShard$ShaderStateShard/toString ()Ljava/lang/String; net/minecraft/client/renderer/RenderStateShard$ShaderStateShard/toString ()Ljava/lang/String; +MD: net/minecraft/client/renderer/RenderStateShard$TextureStateShard/ (Lnet/minecraft/resources/ResourceLocation;ZZ)V net/minecraft/client/renderer/RenderStateShard$TextureStateShard/ (Lnet/minecraft/resources/ResourceLocation;ZZ)V +MD: net/minecraft/client/renderer/RenderStateShard$TextureStateShard/m_110345_ ()V net/minecraft/client/renderer/RenderStateShard$TextureStateShard/lambda$new$1 ()V +MD: net/minecraft/client/renderer/RenderStateShard$TextureStateShard/m_142706_ ()Ljava/util/Optional; net/minecraft/client/renderer/RenderStateShard$TextureStateShard/cutoutTexture ()Ljava/util/Optional; +MD: net/minecraft/client/renderer/RenderStateShard$TextureStateShard/m_263890_ (Lnet/minecraft/resources/ResourceLocation;ZZ)V net/minecraft/client/renderer/RenderStateShard$TextureStateShard/lambda$new$0 (Lnet/minecraft/resources/ResourceLocation;ZZ)V +MD: net/minecraft/client/renderer/RenderStateShard$TextureStateShard/toString ()Ljava/lang/String; net/minecraft/client/renderer/RenderStateShard$TextureStateShard/toString ()Ljava/lang/String; +MD: net/minecraft/client/renderer/RenderStateShard$TexturingStateShard/ (Ljava/lang/String;Ljava/lang/Runnable;Ljava/lang/Runnable;)V net/minecraft/client/renderer/RenderStateShard$TexturingStateShard/ (Ljava/lang/String;Ljava/lang/Runnable;Ljava/lang/Runnable;)V +MD: net/minecraft/client/renderer/RenderStateShard$TransparencyStateShard/ (Ljava/lang/String;Ljava/lang/Runnable;Ljava/lang/Runnable;)V net/minecraft/client/renderer/RenderStateShard$TransparencyStateShard/ (Ljava/lang/String;Ljava/lang/Runnable;Ljava/lang/Runnable;)V +MD: net/minecraft/client/renderer/RenderStateShard$WriteMaskStateShard/ (ZZ)V net/minecraft/client/renderer/RenderStateShard$WriteMaskStateShard/ (ZZ)V +MD: net/minecraft/client/renderer/RenderStateShard$WriteMaskStateShard/m_110361_ (ZZ)V net/minecraft/client/renderer/RenderStateShard$WriteMaskStateShard/lambda$new$1 (ZZ)V +MD: net/minecraft/client/renderer/RenderStateShard$WriteMaskStateShard/m_110364_ (ZZ)V net/minecraft/client/renderer/RenderStateShard$WriteMaskStateShard/lambda$new$0 (ZZ)V +MD: net/minecraft/client/renderer/RenderStateShard$WriteMaskStateShard/toString ()Ljava/lang/String; net/minecraft/client/renderer/RenderStateShard$WriteMaskStateShard/toString ()Ljava/lang/String; +MD: net/minecraft/client/renderer/RenderType/ ()V net/minecraft/client/renderer/RenderType/ ()V +MD: net/minecraft/client/renderer/RenderType/ (Ljava/lang/String;Lcom/mojang/blaze3d/vertex/VertexFormat;Lcom/mojang/blaze3d/vertex/VertexFormat$Mode;IZZLjava/lang/Runnable;Ljava/lang/Runnable;)V net/minecraft/client/renderer/RenderType/ (Ljava/lang/String;Lcom/mojang/blaze3d/vertex/VertexFormat;Lcom/mojang/blaze3d/vertex/VertexFormat$Mode;IZZLjava/lang/Runnable;Ljava/lang/Runnable;)V +MD: net/minecraft/client/renderer/RenderType/m_110405_ ()Z net/minecraft/client/renderer/RenderType/affectsCrumbling ()Z +MD: net/minecraft/client/renderer/RenderType/m_110406_ ()Ljava/util/Optional; net/minecraft/client/renderer/RenderType/asOptional ()Ljava/util/Optional; +MD: net/minecraft/client/renderer/RenderType/m_110408_ ()Lnet/minecraft/client/renderer/RenderType$CompositeState; net/minecraft/client/renderer/RenderType/translucentMovingBlockState ()Lnet/minecraft/client/renderer/RenderType$CompositeState; +MD: net/minecraft/client/renderer/RenderType/m_110409_ ()Lnet/minecraft/client/renderer/RenderType$CompositeState; net/minecraft/client/renderer/RenderType/tripwireState ()Lnet/minecraft/client/renderer/RenderType$CompositeState; +MD: net/minecraft/client/renderer/RenderType/m_110431_ (Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/client/renderer/RenderType; net/minecraft/client/renderer/RenderType/armorCutoutNoCull (Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/client/renderer/RenderType; +MD: net/minecraft/client/renderer/RenderType/m_110436_ (Lnet/minecraft/resources/ResourceLocation;FF)Lnet/minecraft/client/renderer/RenderType; net/minecraft/client/renderer/RenderType/energySwirl (Lnet/minecraft/resources/ResourceLocation;FF)Lnet/minecraft/client/renderer/RenderType; +MD: net/minecraft/client/renderer/RenderType/m_110443_ (Lnet/minecraft/resources/ResourceLocation;Z)Lnet/minecraft/client/renderer/RenderType; net/minecraft/client/renderer/RenderType/entityCutoutNoCull (Lnet/minecraft/resources/ResourceLocation;Z)Lnet/minecraft/client/renderer/RenderType; +MD: net/minecraft/client/renderer/RenderType/m_110446_ (Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/client/renderer/RenderType; net/minecraft/client/renderer/RenderType/entitySolid (Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/client/renderer/RenderType; +MD: net/minecraft/client/renderer/RenderType/m_110448_ (Lnet/minecraft/resources/ResourceLocation;Z)Lnet/minecraft/client/renderer/RenderType; net/minecraft/client/renderer/RenderType/entityCutoutNoCullZOffset (Lnet/minecraft/resources/ResourceLocation;Z)Lnet/minecraft/client/renderer/RenderType; +MD: net/minecraft/client/renderer/RenderType/m_110451_ ()Lnet/minecraft/client/renderer/RenderType; net/minecraft/client/renderer/RenderType/solid ()Lnet/minecraft/client/renderer/RenderType; +MD: net/minecraft/client/renderer/RenderType/m_110452_ (Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/client/renderer/RenderType; net/minecraft/client/renderer/RenderType/entityCutout (Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/client/renderer/RenderType; +MD: net/minecraft/client/renderer/RenderType/m_110454_ (Lnet/minecraft/resources/ResourceLocation;Z)Lnet/minecraft/client/renderer/RenderType; net/minecraft/client/renderer/RenderType/entityTranslucent (Lnet/minecraft/resources/ResourceLocation;Z)Lnet/minecraft/client/renderer/RenderType; +MD: net/minecraft/client/renderer/RenderType/m_110457_ ()Lnet/minecraft/client/renderer/RenderType; net/minecraft/client/renderer/RenderType/cutoutMipped ()Lnet/minecraft/client/renderer/RenderType; +MD: net/minecraft/client/renderer/RenderType/m_110458_ (Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/client/renderer/RenderType; net/minecraft/client/renderer/RenderType/entityCutoutNoCull (Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/client/renderer/RenderType; +MD: net/minecraft/client/renderer/RenderType/m_110460_ (Lnet/minecraft/resources/ResourceLocation;Z)Lnet/minecraft/client/renderer/RenderType; net/minecraft/client/renderer/RenderType/beaconBeam (Lnet/minecraft/resources/ResourceLocation;Z)Lnet/minecraft/client/renderer/RenderType; +MD: net/minecraft/client/renderer/RenderType/m_110463_ ()Lnet/minecraft/client/renderer/RenderType; net/minecraft/client/renderer/RenderType/cutout ()Lnet/minecraft/client/renderer/RenderType; +MD: net/minecraft/client/renderer/RenderType/m_110464_ (Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/client/renderer/RenderType; net/minecraft/client/renderer/RenderType/entityCutoutNoCullZOffset (Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/client/renderer/RenderType; +MD: net/minecraft/client/renderer/RenderType/m_110466_ ()Lnet/minecraft/client/renderer/RenderType; net/minecraft/client/renderer/RenderType/translucent ()Lnet/minecraft/client/renderer/RenderType; +MD: net/minecraft/client/renderer/RenderType/m_110467_ (Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/client/renderer/RenderType; net/minecraft/client/renderer/RenderType/itemEntityTranslucentCull (Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/client/renderer/RenderType; +MD: net/minecraft/client/renderer/RenderType/m_110469_ ()Lnet/minecraft/client/renderer/RenderType; net/minecraft/client/renderer/RenderType/translucentMovingBlock ()Lnet/minecraft/client/renderer/RenderType; +MD: net/minecraft/client/renderer/RenderType/m_110470_ (Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/client/renderer/RenderType; net/minecraft/client/renderer/RenderType/entityTranslucentCull (Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/client/renderer/RenderType; +MD: net/minecraft/client/renderer/RenderType/m_110472_ ()Lnet/minecraft/client/renderer/RenderType; net/minecraft/client/renderer/RenderType/translucentNoCrumbling ()Lnet/minecraft/client/renderer/RenderType; +MD: net/minecraft/client/renderer/RenderType/m_110473_ (Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/client/renderer/RenderType; net/minecraft/client/renderer/RenderType/entityTranslucent (Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/client/renderer/RenderType; +MD: net/minecraft/client/renderer/RenderType/m_110475_ ()Lnet/minecraft/client/renderer/RenderType; net/minecraft/client/renderer/RenderType/leash ()Lnet/minecraft/client/renderer/RenderType; +MD: net/minecraft/client/renderer/RenderType/m_110476_ (Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/client/renderer/RenderType; net/minecraft/client/renderer/RenderType/entitySmoothCutout (Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/client/renderer/RenderType; +MD: net/minecraft/client/renderer/RenderType/m_110478_ ()Lnet/minecraft/client/renderer/RenderType; net/minecraft/client/renderer/RenderType/waterMask ()Lnet/minecraft/client/renderer/RenderType; +MD: net/minecraft/client/renderer/RenderType/m_110479_ (Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/client/renderer/RenderType; net/minecraft/client/renderer/RenderType/entityDecal (Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/client/renderer/RenderType; +MD: net/minecraft/client/renderer/RenderType/m_110481_ ()Lnet/minecraft/client/renderer/RenderType; net/minecraft/client/renderer/RenderType/armorGlint ()Lnet/minecraft/client/renderer/RenderType; +MD: net/minecraft/client/renderer/RenderType/m_110482_ (Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/client/renderer/RenderType; net/minecraft/client/renderer/RenderType/entityNoOutline (Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/client/renderer/RenderType; +MD: net/minecraft/client/renderer/RenderType/m_110484_ ()Lnet/minecraft/client/renderer/RenderType; net/minecraft/client/renderer/RenderType/armorEntityGlint ()Lnet/minecraft/client/renderer/RenderType; +MD: net/minecraft/client/renderer/RenderType/m_110485_ (Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/client/renderer/RenderType; net/minecraft/client/renderer/RenderType/entityShadow (Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/client/renderer/RenderType; +MD: net/minecraft/client/renderer/RenderType/m_110487_ ()Lnet/minecraft/client/renderer/RenderType; net/minecraft/client/renderer/RenderType/glintTranslucent ()Lnet/minecraft/client/renderer/RenderType; +MD: net/minecraft/client/renderer/RenderType/m_110488_ (Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/client/renderer/RenderType; net/minecraft/client/renderer/RenderType/eyes (Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/client/renderer/RenderType; +MD: net/minecraft/client/renderer/RenderType/m_110490_ ()Lnet/minecraft/client/renderer/RenderType; net/minecraft/client/renderer/RenderType/glint ()Lnet/minecraft/client/renderer/RenderType; +MD: net/minecraft/client/renderer/RenderType/m_110491_ (Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/client/renderer/RenderType; net/minecraft/client/renderer/RenderType/outline (Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/client/renderer/RenderType; +MD: net/minecraft/client/renderer/RenderType/m_110493_ ()Lnet/minecraft/client/renderer/RenderType; net/minecraft/client/renderer/RenderType/glintDirect ()Lnet/minecraft/client/renderer/RenderType; +MD: net/minecraft/client/renderer/RenderType/m_110494_ (Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/client/renderer/RenderType; net/minecraft/client/renderer/RenderType/crumbling (Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/client/renderer/RenderType; +MD: net/minecraft/client/renderer/RenderType/m_110496_ ()Lnet/minecraft/client/renderer/RenderType; net/minecraft/client/renderer/RenderType/entityGlint ()Lnet/minecraft/client/renderer/RenderType; +MD: net/minecraft/client/renderer/RenderType/m_110497_ (Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/client/renderer/RenderType; net/minecraft/client/renderer/RenderType/text (Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/client/renderer/RenderType; +MD: net/minecraft/client/renderer/RenderType/m_110499_ ()Lnet/minecraft/client/renderer/RenderType; net/minecraft/client/renderer/RenderType/entityGlintDirect ()Lnet/minecraft/client/renderer/RenderType; +MD: net/minecraft/client/renderer/RenderType/m_110500_ (Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/client/renderer/RenderType; net/minecraft/client/renderer/RenderType/textSeeThrough (Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/client/renderer/RenderType; +MD: net/minecraft/client/renderer/RenderType/m_110502_ ()Lnet/minecraft/client/renderer/RenderType; net/minecraft/client/renderer/RenderType/lightning ()Lnet/minecraft/client/renderer/RenderType; +MD: net/minecraft/client/renderer/RenderType/m_110503_ ()Lnet/minecraft/client/renderer/RenderType; net/minecraft/client/renderer/RenderType/tripwire ()Lnet/minecraft/client/renderer/RenderType; +MD: net/minecraft/client/renderer/RenderType/m_110504_ ()Lnet/minecraft/client/renderer/RenderType; net/minecraft/client/renderer/RenderType/lines ()Lnet/minecraft/client/renderer/RenderType; +MD: net/minecraft/client/renderer/RenderType/m_110506_ ()Ljava/util/List; net/minecraft/client/renderer/RenderType/chunkBufferLayers ()Ljava/util/List; +MD: net/minecraft/client/renderer/RenderType/m_110507_ ()I net/minecraft/client/renderer/RenderType/bufferSize ()I +MD: net/minecraft/client/renderer/RenderType/m_110508_ ()Lcom/mojang/blaze3d/vertex/VertexFormat; net/minecraft/client/renderer/RenderType/format ()Lcom/mojang/blaze3d/vertex/VertexFormat; +MD: net/minecraft/client/renderer/RenderType/m_173186_ ()Lcom/mojang/blaze3d/vertex/VertexFormat$Mode; net/minecraft/client/renderer/RenderType/mode ()Lcom/mojang/blaze3d/vertex/VertexFormat$Mode; +MD: net/minecraft/client/renderer/RenderType/m_173207_ (Lnet/minecraft/client/renderer/RenderStateShard$ShaderStateShard;)Lnet/minecraft/client/renderer/RenderType$CompositeState; net/minecraft/client/renderer/RenderType/translucentState (Lnet/minecraft/client/renderer/RenderStateShard$ShaderStateShard;)Lnet/minecraft/client/renderer/RenderType$CompositeState; +MD: net/minecraft/client/renderer/RenderType/m_173209_ (Ljava/lang/String;Lcom/mojang/blaze3d/vertex/VertexFormat;Lcom/mojang/blaze3d/vertex/VertexFormat$Mode;ILnet/minecraft/client/renderer/RenderType$CompositeState;)Lnet/minecraft/client/renderer/RenderType$CompositeRenderType; net/minecraft/client/renderer/RenderType/create (Ljava/lang/String;Lcom/mojang/blaze3d/vertex/VertexFormat;Lcom/mojang/blaze3d/vertex/VertexFormat$Mode;ILnet/minecraft/client/renderer/RenderType$CompositeState;)Lnet/minecraft/client/renderer/RenderType$CompositeRenderType; +MD: net/minecraft/client/renderer/RenderType/m_173215_ (Ljava/lang/String;Lcom/mojang/blaze3d/vertex/VertexFormat;Lcom/mojang/blaze3d/vertex/VertexFormat$Mode;IZZLnet/minecraft/client/renderer/RenderType$CompositeState;)Lnet/minecraft/client/renderer/RenderType$CompositeRenderType; net/minecraft/client/renderer/RenderType/create (Ljava/lang/String;Lcom/mojang/blaze3d/vertex/VertexFormat;Lcom/mojang/blaze3d/vertex/VertexFormat$Mode;IZZLnet/minecraft/client/renderer/RenderType$CompositeState;)Lnet/minecraft/client/renderer/RenderType$CompositeRenderType; +MD: net/minecraft/client/renderer/RenderType/m_173235_ (Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/client/renderer/RenderType; net/minecraft/client/renderer/RenderType/dragonExplosionAlpha (Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/client/renderer/RenderType; +MD: net/minecraft/client/renderer/RenderType/m_173237_ (Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/client/renderer/RenderType; net/minecraft/client/renderer/RenderType/textIntensity (Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/client/renderer/RenderType; +MD: net/minecraft/client/renderer/RenderType/m_173239_ ()Lnet/minecraft/client/renderer/RenderType; net/minecraft/client/renderer/RenderType/endPortal ()Lnet/minecraft/client/renderer/RenderType; +MD: net/minecraft/client/renderer/RenderType/m_173240_ (Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/client/renderer/RenderType; net/minecraft/client/renderer/RenderType/textIntensitySeeThrough (Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/client/renderer/RenderType; +MD: net/minecraft/client/renderer/RenderType/m_173242_ ()Lnet/minecraft/client/renderer/RenderType; net/minecraft/client/renderer/RenderType/endGateway ()Lnet/minecraft/client/renderer/RenderType; +MD: net/minecraft/client/renderer/RenderType/m_173247_ ()Lnet/minecraft/client/renderer/RenderType; net/minecraft/client/renderer/RenderType/lineStrip ()Lnet/minecraft/client/renderer/RenderType; +MD: net/minecraft/client/renderer/RenderType/m_181444_ (Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/client/renderer/RenderType; net/minecraft/client/renderer/RenderType/textPolygonOffset (Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/client/renderer/RenderType; +MD: net/minecraft/client/renderer/RenderType/m_181446_ (Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/client/renderer/RenderType; net/minecraft/client/renderer/RenderType/textIntensityPolygonOffset (Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/client/renderer/RenderType; +MD: net/minecraft/client/renderer/RenderType/m_234326_ ()Z net/minecraft/client/renderer/RenderType/canConsolidateConsecutiveGeometry ()Z +MD: net/minecraft/client/renderer/RenderType/m_234329_ (Lnet/minecraft/resources/ResourceLocation;Ljava/lang/Boolean;)Lnet/minecraft/client/renderer/RenderType; net/minecraft/client/renderer/RenderType/lambda$static$10 (Lnet/minecraft/resources/ResourceLocation;Ljava/lang/Boolean;)Lnet/minecraft/client/renderer/RenderType; +MD: net/minecraft/client/renderer/RenderType/m_234335_ (Lnet/minecraft/resources/ResourceLocation;Z)Lnet/minecraft/client/renderer/RenderType; net/minecraft/client/renderer/RenderType/entityTranslucentEmissive (Lnet/minecraft/resources/ResourceLocation;Z)Lnet/minecraft/client/renderer/RenderType; +MD: net/minecraft/client/renderer/RenderType/m_234338_ (Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/client/renderer/RenderType; net/minecraft/client/renderer/RenderType/entityTranslucentEmissive (Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/client/renderer/RenderType; +MD: net/minecraft/client/renderer/RenderType/m_269058_ ()Lnet/minecraft/client/renderer/RenderType; net/minecraft/client/renderer/RenderType/textBackground ()Lnet/minecraft/client/renderer/RenderType; +MD: net/minecraft/client/renderer/RenderType/m_269166_ ()Lnet/minecraft/client/renderer/RenderType; net/minecraft/client/renderer/RenderType/debugQuads ()Lnet/minecraft/client/renderer/RenderType; +MD: net/minecraft/client/renderer/RenderType/m_269313_ ()Lnet/minecraft/client/renderer/RenderType; net/minecraft/client/renderer/RenderType/debugFilledBox ()Lnet/minecraft/client/renderer/RenderType; +MD: net/minecraft/client/renderer/RenderType/m_269399_ (D)Lnet/minecraft/client/renderer/RenderType; net/minecraft/client/renderer/RenderType/debugLineStrip (D)Lnet/minecraft/client/renderer/RenderType; +MD: net/minecraft/client/renderer/RenderType/m_269508_ ()Lnet/minecraft/client/renderer/RenderType; net/minecraft/client/renderer/RenderType/textBackgroundSeeThrough ()Lnet/minecraft/client/renderer/RenderType; +MD: net/minecraft/client/renderer/RenderType/m_276775_ (Lcom/mojang/blaze3d/vertex/BufferBuilder;Lcom/mojang/blaze3d/vertex/VertexSorting;)V net/minecraft/client/renderer/RenderType/end (Lcom/mojang/blaze3d/vertex/BufferBuilder;Lcom/mojang/blaze3d/vertex/VertexSorting;)V +MD: net/minecraft/client/renderer/RenderType/m_280070_ ()Lnet/minecraft/client/renderer/RenderType; net/minecraft/client/renderer/RenderType/debugSectionQuads ()Lnet/minecraft/client/renderer/RenderType; +MD: net/minecraft/client/renderer/RenderType/m_285682_ (Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/client/renderer/RenderType; net/minecraft/client/renderer/RenderType/lambda$static$0 (Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/client/renderer/RenderType; +MD: net/minecraft/client/renderer/RenderType/m_285683_ (Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/client/renderer/RenderType; net/minecraft/client/renderer/RenderType/lambda$static$14 (Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/client/renderer/RenderType; +MD: net/minecraft/client/renderer/RenderType/m_285684_ (Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/client/renderer/RenderType; net/minecraft/client/renderer/RenderType/lambda$static$13 (Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/client/renderer/RenderType; +MD: net/minecraft/client/renderer/RenderType/m_285685_ (Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/client/renderer/RenderType; net/minecraft/client/renderer/RenderType/lambda$static$19 (Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/client/renderer/RenderType; +MD: net/minecraft/client/renderer/RenderType/m_285686_ (Lnet/minecraft/resources/ResourceLocation;Ljava/lang/Boolean;)Lnet/minecraft/client/renderer/RenderType; net/minecraft/client/renderer/RenderType/lambda$static$4 (Lnet/minecraft/resources/ResourceLocation;Ljava/lang/Boolean;)Lnet/minecraft/client/renderer/RenderType; +MD: net/minecraft/client/renderer/RenderType/m_285687_ (Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/client/renderer/RenderType; net/minecraft/client/renderer/RenderType/lambda$static$5 (Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/client/renderer/RenderType; +MD: net/minecraft/client/renderer/RenderType/m_285688_ (Lnet/minecraft/resources/ResourceLocation;Ljava/lang/Boolean;)Lnet/minecraft/client/renderer/RenderType; net/minecraft/client/renderer/RenderType/lambda$static$7 (Lnet/minecraft/resources/ResourceLocation;Ljava/lang/Boolean;)Lnet/minecraft/client/renderer/RenderType; +MD: net/minecraft/client/renderer/RenderType/m_285689_ (Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/client/renderer/RenderType; net/minecraft/client/renderer/RenderType/lambda$static$21 (Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/client/renderer/RenderType; +MD: net/minecraft/client/renderer/RenderType/m_285690_ (Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/client/renderer/RenderType; net/minecraft/client/renderer/RenderType/lambda$static$1 (Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/client/renderer/RenderType; +MD: net/minecraft/client/renderer/RenderType/m_285691_ (Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/client/renderer/RenderType; net/minecraft/client/renderer/RenderType/lambda$static$12 (Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/client/renderer/RenderType; +MD: net/minecraft/client/renderer/RenderType/m_285692_ (Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/client/renderer/RenderType; net/minecraft/client/renderer/RenderType/lambda$static$17 (Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/client/renderer/RenderType; +MD: net/minecraft/client/renderer/RenderType/m_285693_ (Ljava/lang/Double;)Lnet/minecraft/client/renderer/RenderType$CompositeRenderType; net/minecraft/client/renderer/RenderType/lambda$static$23 (Ljava/lang/Double;)Lnet/minecraft/client/renderer/RenderType$CompositeRenderType; +MD: net/minecraft/client/renderer/RenderType/m_285694_ (Lnet/minecraft/resources/ResourceLocation;Ljava/lang/Boolean;)Lnet/minecraft/client/renderer/RenderType; net/minecraft/client/renderer/RenderType/lambda$static$8 (Lnet/minecraft/resources/ResourceLocation;Ljava/lang/Boolean;)Lnet/minecraft/client/renderer/RenderType; +MD: net/minecraft/client/renderer/RenderType/m_285695_ (Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/client/renderer/RenderType; net/minecraft/client/renderer/RenderType/lambda$static$6 (Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/client/renderer/RenderType; +MD: net/minecraft/client/renderer/RenderType/m_285696_ (Lnet/minecraft/resources/ResourceLocation;Ljava/lang/Boolean;)Lnet/minecraft/client/renderer/RenderType; net/minecraft/client/renderer/RenderType/lambda$static$3 (Lnet/minecraft/resources/ResourceLocation;Ljava/lang/Boolean;)Lnet/minecraft/client/renderer/RenderType; +MD: net/minecraft/client/renderer/RenderType/m_285697_ (Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/client/renderer/RenderType; net/minecraft/client/renderer/RenderType/lambda$static$22 (Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/client/renderer/RenderType; +MD: net/minecraft/client/renderer/RenderType/m_285698_ (Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/client/renderer/RenderType; net/minecraft/client/renderer/RenderType/lambda$static$9 (Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/client/renderer/RenderType; +MD: net/minecraft/client/renderer/RenderType/m_285699_ (Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/client/renderer/RenderType; net/minecraft/client/renderer/RenderType/lambda$static$15 (Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/client/renderer/RenderType; +MD: net/minecraft/client/renderer/RenderType/m_285700_ (Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/client/renderer/RenderType; net/minecraft/client/renderer/RenderType/lambda$static$11 (Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/client/renderer/RenderType; +MD: net/minecraft/client/renderer/RenderType/m_285701_ (Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/client/renderer/RenderType; net/minecraft/client/renderer/RenderType/lambda$static$18 (Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/client/renderer/RenderType; +MD: net/minecraft/client/renderer/RenderType/m_285702_ (Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/client/renderer/RenderType; net/minecraft/client/renderer/RenderType/lambda$static$2 (Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/client/renderer/RenderType; +MD: net/minecraft/client/renderer/RenderType/m_285703_ (Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/client/renderer/RenderType; net/minecraft/client/renderer/RenderType/lambda$static$16 (Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/client/renderer/RenderType; +MD: net/minecraft/client/renderer/RenderType/m_285704_ (Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/client/renderer/RenderType; net/minecraft/client/renderer/RenderType/lambda$static$20 (Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/client/renderer/RenderType; +MD: net/minecraft/client/renderer/RenderType/m_285783_ ()Lnet/minecraft/client/renderer/RenderType; net/minecraft/client/renderer/RenderType/guiTextHighlight ()Lnet/minecraft/client/renderer/RenderType; +MD: net/minecraft/client/renderer/RenderType/m_285811_ ()Lnet/minecraft/client/renderer/RenderType; net/minecraft/client/renderer/RenderType/guiGhostRecipeOverlay ()Lnet/minecraft/client/renderer/RenderType; +MD: net/minecraft/client/renderer/RenderType/m_285907_ ()Lnet/minecraft/client/renderer/RenderType; net/minecraft/client/renderer/RenderType/gui ()Lnet/minecraft/client/renderer/RenderType; +MD: net/minecraft/client/renderer/RenderType/m_286086_ ()Lnet/minecraft/client/renderer/RenderType; net/minecraft/client/renderer/RenderType/guiOverlay ()Lnet/minecraft/client/renderer/RenderType; +MD: net/minecraft/client/renderer/RenderType/m_5492_ ()Z net/minecraft/client/renderer/RenderType/isOutline ()Z +MD: net/minecraft/client/renderer/RenderType/m_7280_ ()Ljava/util/Optional; net/minecraft/client/renderer/RenderType/outline ()Ljava/util/Optional; +MD: net/minecraft/client/renderer/RenderType/toString ()Ljava/lang/String; net/minecraft/client/renderer/RenderType/toString ()Ljava/lang/String; +MD: net/minecraft/client/renderer/RenderType$CompositeRenderType/ ()V net/minecraft/client/renderer/RenderType$CompositeRenderType/ ()V +MD: net/minecraft/client/renderer/RenderType$CompositeRenderType/ (Ljava/lang/String;Lcom/mojang/blaze3d/vertex/VertexFormat;Lcom/mojang/blaze3d/vertex/VertexFormat$Mode;IZZLnet/minecraft/client/renderer/RenderType$CompositeState;)V net/minecraft/client/renderer/RenderType$CompositeRenderType/ (Ljava/lang/String;Lcom/mojang/blaze3d/vertex/VertexFormat;Lcom/mojang/blaze3d/vertex/VertexFormat$Mode;IZZLnet/minecraft/client/renderer/RenderType$CompositeState;)V +MD: net/minecraft/client/renderer/RenderType$CompositeRenderType/m_110526_ (Lnet/minecraft/client/renderer/RenderType$CompositeState;)V net/minecraft/client/renderer/RenderType$CompositeRenderType/lambda$new$1 (Lnet/minecraft/client/renderer/RenderType$CompositeState;)V +MD: net/minecraft/client/renderer/RenderType$CompositeRenderType/m_173265_ ()Lnet/minecraft/client/renderer/RenderType$CompositeState; net/minecraft/client/renderer/RenderType$CompositeRenderType/state ()Lnet/minecraft/client/renderer/RenderType$CompositeState; +MD: net/minecraft/client/renderer/RenderType$CompositeRenderType/m_173266_ (Lnet/minecraft/client/renderer/RenderType$CompositeState;)V net/minecraft/client/renderer/RenderType$CompositeRenderType/lambda$new$2 (Lnet/minecraft/client/renderer/RenderType$CompositeState;)V +MD: net/minecraft/client/renderer/RenderType$CompositeRenderType/m_173268_ (Lnet/minecraft/client/renderer/RenderType$CompositeState;Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/client/renderer/RenderType; net/minecraft/client/renderer/RenderType$CompositeRenderType/lambda$new$3 (Lnet/minecraft/client/renderer/RenderType$CompositeState;Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/client/renderer/RenderType; +MD: net/minecraft/client/renderer/RenderType$CompositeRenderType/m_285705_ (Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/client/renderer/RenderStateShard$CullStateShard;)Lnet/minecraft/client/renderer/RenderType; net/minecraft/client/renderer/RenderType$CompositeRenderType/lambda$static$0 (Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/client/renderer/RenderStateShard$CullStateShard;)Lnet/minecraft/client/renderer/RenderType; +MD: net/minecraft/client/renderer/RenderType$CompositeRenderType/m_5492_ ()Z net/minecraft/client/renderer/RenderType$CompositeRenderType/isOutline ()Z +MD: net/minecraft/client/renderer/RenderType$CompositeRenderType/m_7280_ ()Ljava/util/Optional; net/minecraft/client/renderer/RenderType$CompositeRenderType/outline ()Ljava/util/Optional; +MD: net/minecraft/client/renderer/RenderType$CompositeRenderType/toString ()Ljava/lang/String; net/minecraft/client/renderer/RenderType$CompositeRenderType/toString ()Ljava/lang/String; +MD: net/minecraft/client/renderer/RenderType$CompositeState/ (Lnet/minecraft/client/renderer/RenderStateShard$EmptyTextureStateShard;Lnet/minecraft/client/renderer/RenderStateShard$ShaderStateShard;Lnet/minecraft/client/renderer/RenderStateShard$TransparencyStateShard;Lnet/minecraft/client/renderer/RenderStateShard$DepthTestStateShard;Lnet/minecraft/client/renderer/RenderStateShard$CullStateShard;Lnet/minecraft/client/renderer/RenderStateShard$LightmapStateShard;Lnet/minecraft/client/renderer/RenderStateShard$OverlayStateShard;Lnet/minecraft/client/renderer/RenderStateShard$LayeringStateShard;Lnet/minecraft/client/renderer/RenderStateShard$OutputStateShard;Lnet/minecraft/client/renderer/RenderStateShard$TexturingStateShard;Lnet/minecraft/client/renderer/RenderStateShard$WriteMaskStateShard;Lnet/minecraft/client/renderer/RenderStateShard$LineStateShard;Lnet/minecraft/client/renderer/RenderStateShard$ColorLogicStateShard;Lnet/minecraft/client/renderer/RenderType$OutlineProperty;)V net/minecraft/client/renderer/RenderType$CompositeState/ (Lnet/minecraft/client/renderer/RenderStateShard$EmptyTextureStateShard;Lnet/minecraft/client/renderer/RenderStateShard$ShaderStateShard;Lnet/minecraft/client/renderer/RenderStateShard$TransparencyStateShard;Lnet/minecraft/client/renderer/RenderStateShard$DepthTestStateShard;Lnet/minecraft/client/renderer/RenderStateShard$CullStateShard;Lnet/minecraft/client/renderer/RenderStateShard$LightmapStateShard;Lnet/minecraft/client/renderer/RenderStateShard$OverlayStateShard;Lnet/minecraft/client/renderer/RenderStateShard$LayeringStateShard;Lnet/minecraft/client/renderer/RenderStateShard$OutputStateShard;Lnet/minecraft/client/renderer/RenderStateShard$TexturingStateShard;Lnet/minecraft/client/renderer/RenderStateShard$WriteMaskStateShard;Lnet/minecraft/client/renderer/RenderStateShard$LineStateShard;Lnet/minecraft/client/renderer/RenderStateShard$ColorLogicStateShard;Lnet/minecraft/client/renderer/RenderType$OutlineProperty;)V +MD: net/minecraft/client/renderer/RenderType$CompositeState/m_110628_ ()Lnet/minecraft/client/renderer/RenderType$CompositeState$CompositeStateBuilder; net/minecraft/client/renderer/RenderType$CompositeState/builder ()Lnet/minecraft/client/renderer/RenderType$CompositeState$CompositeStateBuilder; +MD: net/minecraft/client/renderer/RenderType$CompositeState/toString ()Ljava/lang/String; net/minecraft/client/renderer/RenderType$CompositeState/toString ()Ljava/lang/String; +MD: net/minecraft/client/renderer/RenderType$CompositeState$CompositeStateBuilder/ ()V net/minecraft/client/renderer/RenderType$CompositeState$CompositeStateBuilder/ ()V +MD: net/minecraft/client/renderer/RenderType$CompositeState$CompositeStateBuilder/m_110661_ (Lnet/minecraft/client/renderer/RenderStateShard$CullStateShard;)Lnet/minecraft/client/renderer/RenderType$CompositeState$CompositeStateBuilder; net/minecraft/client/renderer/RenderType$CompositeState$CompositeStateBuilder/setCullState (Lnet/minecraft/client/renderer/RenderStateShard$CullStateShard;)Lnet/minecraft/client/renderer/RenderType$CompositeState$CompositeStateBuilder; +MD: net/minecraft/client/renderer/RenderType$CompositeState$CompositeStateBuilder/m_110663_ (Lnet/minecraft/client/renderer/RenderStateShard$DepthTestStateShard;)Lnet/minecraft/client/renderer/RenderType$CompositeState$CompositeStateBuilder; net/minecraft/client/renderer/RenderType$CompositeState$CompositeStateBuilder/setDepthTestState (Lnet/minecraft/client/renderer/RenderStateShard$DepthTestStateShard;)Lnet/minecraft/client/renderer/RenderType$CompositeState$CompositeStateBuilder; +MD: net/minecraft/client/renderer/RenderType$CompositeState$CompositeStateBuilder/m_110669_ (Lnet/minecraft/client/renderer/RenderStateShard$LayeringStateShard;)Lnet/minecraft/client/renderer/RenderType$CompositeState$CompositeStateBuilder; net/minecraft/client/renderer/RenderType$CompositeState$CompositeStateBuilder/setLayeringState (Lnet/minecraft/client/renderer/RenderStateShard$LayeringStateShard;)Lnet/minecraft/client/renderer/RenderType$CompositeState$CompositeStateBuilder; +MD: net/minecraft/client/renderer/RenderType$CompositeState$CompositeStateBuilder/m_110671_ (Lnet/minecraft/client/renderer/RenderStateShard$LightmapStateShard;)Lnet/minecraft/client/renderer/RenderType$CompositeState$CompositeStateBuilder; net/minecraft/client/renderer/RenderType$CompositeState$CompositeStateBuilder/setLightmapState (Lnet/minecraft/client/renderer/RenderStateShard$LightmapStateShard;)Lnet/minecraft/client/renderer/RenderType$CompositeState$CompositeStateBuilder; +MD: net/minecraft/client/renderer/RenderType$CompositeState$CompositeStateBuilder/m_110673_ (Lnet/minecraft/client/renderer/RenderStateShard$LineStateShard;)Lnet/minecraft/client/renderer/RenderType$CompositeState$CompositeStateBuilder; net/minecraft/client/renderer/RenderType$CompositeState$CompositeStateBuilder/setLineState (Lnet/minecraft/client/renderer/RenderStateShard$LineStateShard;)Lnet/minecraft/client/renderer/RenderType$CompositeState$CompositeStateBuilder; +MD: net/minecraft/client/renderer/RenderType$CompositeState$CompositeStateBuilder/m_110675_ (Lnet/minecraft/client/renderer/RenderStateShard$OutputStateShard;)Lnet/minecraft/client/renderer/RenderType$CompositeState$CompositeStateBuilder; net/minecraft/client/renderer/RenderType$CompositeState$CompositeStateBuilder/setOutputState (Lnet/minecraft/client/renderer/RenderStateShard$OutputStateShard;)Lnet/minecraft/client/renderer/RenderType$CompositeState$CompositeStateBuilder; +MD: net/minecraft/client/renderer/RenderType$CompositeState$CompositeStateBuilder/m_110677_ (Lnet/minecraft/client/renderer/RenderStateShard$OverlayStateShard;)Lnet/minecraft/client/renderer/RenderType$CompositeState$CompositeStateBuilder; net/minecraft/client/renderer/RenderType$CompositeState$CompositeStateBuilder/setOverlayState (Lnet/minecraft/client/renderer/RenderStateShard$OverlayStateShard;)Lnet/minecraft/client/renderer/RenderType$CompositeState$CompositeStateBuilder; +MD: net/minecraft/client/renderer/RenderType$CompositeState$CompositeStateBuilder/m_110683_ (Lnet/minecraft/client/renderer/RenderStateShard$TexturingStateShard;)Lnet/minecraft/client/renderer/RenderType$CompositeState$CompositeStateBuilder; net/minecraft/client/renderer/RenderType$CompositeState$CompositeStateBuilder/setTexturingState (Lnet/minecraft/client/renderer/RenderStateShard$TexturingStateShard;)Lnet/minecraft/client/renderer/RenderType$CompositeState$CompositeStateBuilder; +MD: net/minecraft/client/renderer/RenderType$CompositeState$CompositeStateBuilder/m_110685_ (Lnet/minecraft/client/renderer/RenderStateShard$TransparencyStateShard;)Lnet/minecraft/client/renderer/RenderType$CompositeState$CompositeStateBuilder; net/minecraft/client/renderer/RenderType$CompositeState$CompositeStateBuilder/setTransparencyState (Lnet/minecraft/client/renderer/RenderStateShard$TransparencyStateShard;)Lnet/minecraft/client/renderer/RenderType$CompositeState$CompositeStateBuilder; +MD: net/minecraft/client/renderer/RenderType$CompositeState$CompositeStateBuilder/m_110687_ (Lnet/minecraft/client/renderer/RenderStateShard$WriteMaskStateShard;)Lnet/minecraft/client/renderer/RenderType$CompositeState$CompositeStateBuilder; net/minecraft/client/renderer/RenderType$CompositeState$CompositeStateBuilder/setWriteMaskState (Lnet/minecraft/client/renderer/RenderStateShard$WriteMaskStateShard;)Lnet/minecraft/client/renderer/RenderType$CompositeState$CompositeStateBuilder; +MD: net/minecraft/client/renderer/RenderType$CompositeState$CompositeStateBuilder/m_110689_ (Lnet/minecraft/client/renderer/RenderType$OutlineProperty;)Lnet/minecraft/client/renderer/RenderType$CompositeState; net/minecraft/client/renderer/RenderType$CompositeState$CompositeStateBuilder/createCompositeState (Lnet/minecraft/client/renderer/RenderType$OutlineProperty;)Lnet/minecraft/client/renderer/RenderType$CompositeState; +MD: net/minecraft/client/renderer/RenderType$CompositeState$CompositeStateBuilder/m_110691_ (Z)Lnet/minecraft/client/renderer/RenderType$CompositeState; net/minecraft/client/renderer/RenderType$CompositeState$CompositeStateBuilder/createCompositeState (Z)Lnet/minecraft/client/renderer/RenderType$CompositeState; +MD: net/minecraft/client/renderer/RenderType$CompositeState$CompositeStateBuilder/m_173290_ (Lnet/minecraft/client/renderer/RenderStateShard$EmptyTextureStateShard;)Lnet/minecraft/client/renderer/RenderType$CompositeState$CompositeStateBuilder; net/minecraft/client/renderer/RenderType$CompositeState$CompositeStateBuilder/setTextureState (Lnet/minecraft/client/renderer/RenderStateShard$EmptyTextureStateShard;)Lnet/minecraft/client/renderer/RenderType$CompositeState$CompositeStateBuilder; +MD: net/minecraft/client/renderer/RenderType$CompositeState$CompositeStateBuilder/m_173292_ (Lnet/minecraft/client/renderer/RenderStateShard$ShaderStateShard;)Lnet/minecraft/client/renderer/RenderType$CompositeState$CompositeStateBuilder; net/minecraft/client/renderer/RenderType$CompositeState$CompositeStateBuilder/setShaderState (Lnet/minecraft/client/renderer/RenderStateShard$ShaderStateShard;)Lnet/minecraft/client/renderer/RenderType$CompositeState$CompositeStateBuilder; +MD: net/minecraft/client/renderer/RenderType$CompositeState$CompositeStateBuilder/m_286027_ (Lnet/minecraft/client/renderer/RenderStateShard$ColorLogicStateShard;)Lnet/minecraft/client/renderer/RenderType$CompositeState$CompositeStateBuilder; net/minecraft/client/renderer/RenderType$CompositeState$CompositeStateBuilder/setColorLogicState (Lnet/minecraft/client/renderer/RenderStateShard$ColorLogicStateShard;)Lnet/minecraft/client/renderer/RenderType$CompositeState$CompositeStateBuilder; +MD: net/minecraft/client/renderer/RenderType$OutlineProperty/ ()V net/minecraft/client/renderer/RenderType$OutlineProperty/ ()V +MD: net/minecraft/client/renderer/RenderType$OutlineProperty/ (Ljava/lang/String;ILjava/lang/String;)V net/minecraft/client/renderer/RenderType$OutlineProperty/ (Ljava/lang/String;ILjava/lang/String;)V +MD: net/minecraft/client/renderer/RenderType$OutlineProperty/m_173294_ ()[Lnet/minecraft/client/renderer/RenderType$OutlineProperty; net/minecraft/client/renderer/RenderType$OutlineProperty/$values ()[Lnet/minecraft/client/renderer/RenderType$OutlineProperty; +MD: net/minecraft/client/renderer/RenderType$OutlineProperty/toString ()Ljava/lang/String; net/minecraft/client/renderer/RenderType$OutlineProperty/toString ()Ljava/lang/String; +MD: net/minecraft/client/renderer/RenderType$OutlineProperty/valueOf (Ljava/lang/String;)Lnet/minecraft/client/renderer/RenderType$OutlineProperty; net/minecraft/client/renderer/RenderType$OutlineProperty/valueOf (Ljava/lang/String;)Lnet/minecraft/client/renderer/RenderType$OutlineProperty; +MD: net/minecraft/client/renderer/RenderType$OutlineProperty/values ()[Lnet/minecraft/client/renderer/RenderType$OutlineProperty; net/minecraft/client/renderer/RenderType$OutlineProperty/values ()[Lnet/minecraft/client/renderer/RenderType$OutlineProperty; +MD: net/minecraft/client/renderer/RunningTrimmedMean/ (I)V net/minecraft/client/renderer/RunningTrimmedMean/ (I)V +MD: net/minecraft/client/renderer/RunningTrimmedMean/m_110712_ (J)J net/minecraft/client/renderer/RunningTrimmedMean/registerValueAndGetMean (J)J +MD: net/minecraft/client/renderer/ScreenEffectRenderer/ ()V net/minecraft/client/renderer/ScreenEffectRenderer/ ()V +MD: net/minecraft/client/renderer/ScreenEffectRenderer/ ()V net/minecraft/client/renderer/ScreenEffectRenderer/ ()V +MD: net/minecraft/client/renderer/ScreenEffectRenderer/m_110716_ (Lnet/minecraft/world/entity/player/Player;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/client/renderer/ScreenEffectRenderer/getViewBlockingState (Lnet/minecraft/world/entity/player/Player;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/client/renderer/ScreenEffectRenderer/m_110718_ (Lnet/minecraft/client/Minecraft;Lcom/mojang/blaze3d/vertex/PoseStack;)V net/minecraft/client/renderer/ScreenEffectRenderer/renderScreenEffect (Lnet/minecraft/client/Minecraft;Lcom/mojang/blaze3d/vertex/PoseStack;)V +MD: net/minecraft/client/renderer/ScreenEffectRenderer/m_110725_ (Lnet/minecraft/client/Minecraft;Lcom/mojang/blaze3d/vertex/PoseStack;)V net/minecraft/client/renderer/ScreenEffectRenderer/renderWater (Lnet/minecraft/client/Minecraft;Lcom/mojang/blaze3d/vertex/PoseStack;)V +MD: net/minecraft/client/renderer/ScreenEffectRenderer/m_110728_ (Lnet/minecraft/client/Minecraft;Lcom/mojang/blaze3d/vertex/PoseStack;)V net/minecraft/client/renderer/ScreenEffectRenderer/renderFire (Lnet/minecraft/client/Minecraft;Lcom/mojang/blaze3d/vertex/PoseStack;)V +MD: net/minecraft/client/renderer/ScreenEffectRenderer/m_173296_ (Lnet/minecraft/client/renderer/texture/TextureAtlasSprite;Lcom/mojang/blaze3d/vertex/PoseStack;)V net/minecraft/client/renderer/ScreenEffectRenderer/renderTex (Lnet/minecraft/client/renderer/texture/TextureAtlasSprite;Lcom/mojang/blaze3d/vertex/PoseStack;)V +MD: net/minecraft/client/renderer/ShaderInstance/ ()V net/minecraft/client/renderer/ShaderInstance/ ()V +MD: net/minecraft/client/renderer/ShaderInstance/ (Lnet/minecraft/server/packs/resources/ResourceProvider;Ljava/lang/String;Lcom/mojang/blaze3d/vertex/VertexFormat;)V net/minecraft/client/renderer/ShaderInstance/ (Lnet/minecraft/server/packs/resources/ResourceProvider;Ljava/lang/String;Lcom/mojang/blaze3d/vertex/VertexFormat;)V +MD: net/minecraft/client/renderer/ShaderInstance/close ()V net/minecraft/client/renderer/ShaderInstance/close ()V +MD: net/minecraft/client/renderer/ShaderInstance/m_108943_ ()I net/minecraft/client/renderer/ShaderInstance/getId ()I +MD: net/minecraft/client/renderer/ShaderInstance/m_108957_ ()V net/minecraft/client/renderer/ShaderInstance/markDirty ()V +MD: net/minecraft/client/renderer/ShaderInstance/m_108962_ ()Lcom/mojang/blaze3d/shaders/Program; net/minecraft/client/renderer/ShaderInstance/getVertexProgram ()Lcom/mojang/blaze3d/shaders/Program; +MD: net/minecraft/client/renderer/ShaderInstance/m_108964_ ()Lcom/mojang/blaze3d/shaders/Program; net/minecraft/client/renderer/ShaderInstance/getFragmentProgram ()Lcom/mojang/blaze3d/shaders/Program; +MD: net/minecraft/client/renderer/ShaderInstance/m_142662_ ()V net/minecraft/client/renderer/ShaderInstance/attachToProgram ()V +MD: net/minecraft/client/renderer/ShaderInstance/m_173340_ (Lnet/minecraft/server/packs/resources/ResourceProvider;Lcom/mojang/blaze3d/shaders/Program$Type;Ljava/lang/String;)Lcom/mojang/blaze3d/shaders/Program; net/minecraft/client/renderer/ShaderInstance/getOrCreate (Lnet/minecraft/server/packs/resources/ResourceProvider;Lcom/mojang/blaze3d/shaders/Program$Type;Ljava/lang/String;)Lcom/mojang/blaze3d/shaders/Program; +MD: net/minecraft/client/renderer/ShaderInstance/m_173344_ (Lcom/google/gson/JsonElement;)V net/minecraft/client/renderer/ShaderInstance/parseSamplerNode (Lcom/google/gson/JsonElement;)V +MD: net/minecraft/client/renderer/ShaderInstance/m_173346_ (Lcom/google/gson/JsonObject;)Lcom/mojang/blaze3d/shaders/BlendMode; net/minecraft/client/renderer/ShaderInstance/parseBlendNode (Lcom/google/gson/JsonObject;)Lcom/mojang/blaze3d/shaders/BlendMode; +MD: net/minecraft/client/renderer/ShaderInstance/m_173348_ (Ljava/lang/String;)Lcom/mojang/blaze3d/shaders/Uniform; net/minecraft/client/renderer/ShaderInstance/getUniform (Ljava/lang/String;)Lcom/mojang/blaze3d/shaders/Uniform; +MD: net/minecraft/client/renderer/ShaderInstance/m_173350_ (Ljava/lang/String;Ljava/lang/Object;)V net/minecraft/client/renderer/ShaderInstance/setSampler (Ljava/lang/String;Ljava/lang/Object;)V +MD: net/minecraft/client/renderer/ShaderInstance/m_173354_ (Lcom/google/gson/JsonElement;)V net/minecraft/client/renderer/ShaderInstance/parseUniformNode (Lcom/google/gson/JsonElement;)V +MD: net/minecraft/client/renderer/ShaderInstance/m_173356_ (Ljava/lang/String;)Lcom/mojang/blaze3d/shaders/AbstractUniform; net/minecraft/client/renderer/ShaderInstance/safeGetUniform (Ljava/lang/String;)Lcom/mojang/blaze3d/shaders/AbstractUniform; +MD: net/minecraft/client/renderer/ShaderInstance/m_173362_ ()V net/minecraft/client/renderer/ShaderInstance/clear ()V +MD: net/minecraft/client/renderer/ShaderInstance/m_173363_ ()V net/minecraft/client/renderer/ShaderInstance/apply ()V +MD: net/minecraft/client/renderer/ShaderInstance/m_173364_ ()Lcom/mojang/blaze3d/vertex/VertexFormat; net/minecraft/client/renderer/ShaderInstance/getVertexFormat ()Lcom/mojang/blaze3d/vertex/VertexFormat; +MD: net/minecraft/client/renderer/ShaderInstance/m_173365_ ()Ljava/lang/String; net/minecraft/client/renderer/ShaderInstance/getName ()Ljava/lang/String; +MD: net/minecraft/client/renderer/ShaderInstance/m_173366_ ()V net/minecraft/client/renderer/ShaderInstance/updateLocations ()V +MD: net/minecraft/client/renderer/ShaderInstance$1/ (Ljava/lang/String;Lnet/minecraft/server/packs/resources/ResourceProvider;)V net/minecraft/client/renderer/ShaderInstance$1/ (Ljava/lang/String;Lnet/minecraft/server/packs/resources/ResourceProvider;)V +MD: net/minecraft/client/renderer/ShaderInstance$1/m_142138_ (ZLjava/lang/String;)Ljava/lang/String; net/minecraft/client/renderer/ShaderInstance$1/applyImport (ZLjava/lang/String;)Ljava/lang/String; +MD: net/minecraft/client/renderer/Sheets/ ()V net/minecraft/client/renderer/Sheets/ ()V +MD: net/minecraft/client/renderer/Sheets/ ()V net/minecraft/client/renderer/Sheets/ ()V +MD: net/minecraft/client/renderer/Sheets/m_110762_ ()Lnet/minecraft/client/renderer/RenderType; net/minecraft/client/renderer/Sheets/bannerSheet ()Lnet/minecraft/client/renderer/RenderType; +MD: net/minecraft/client/renderer/Sheets/m_110763_ (I)[Lnet/minecraft/client/resources/model/Material; net/minecraft/client/renderer/Sheets/lambda$static$2 (I)[Lnet/minecraft/client/resources/model/Material; +MD: net/minecraft/client/renderer/Sheets/m_110765_ (Lnet/minecraft/world/item/DyeColor;)Lnet/minecraft/client/resources/model/Material; net/minecraft/client/renderer/Sheets/lambda$static$1 (Lnet/minecraft/world/item/DyeColor;)Lnet/minecraft/client/resources/model/Material; +MD: net/minecraft/client/renderer/Sheets/m_110767_ (Lnet/minecraft/world/level/block/entity/BlockEntity;Lnet/minecraft/world/level/block/state/properties/ChestType;Z)Lnet/minecraft/client/resources/model/Material; net/minecraft/client/renderer/Sheets/chooseMaterial (Lnet/minecraft/world/level/block/entity/BlockEntity;Lnet/minecraft/world/level/block/state/properties/ChestType;Z)Lnet/minecraft/client/resources/model/Material; +MD: net/minecraft/client/renderer/Sheets/m_110771_ (Lnet/minecraft/world/level/block/state/properties/ChestType;Lnet/minecraft/client/resources/model/Material;Lnet/minecraft/client/resources/model/Material;Lnet/minecraft/client/resources/model/Material;)Lnet/minecraft/client/resources/model/Material; net/minecraft/client/renderer/Sheets/chooseMaterial (Lnet/minecraft/world/level/block/state/properties/ChestType;Lnet/minecraft/client/resources/model/Material;Lnet/minecraft/client/resources/model/Material;Lnet/minecraft/client/resources/model/Material;)Lnet/minecraft/client/resources/model/Material; +MD: net/minecraft/client/renderer/Sheets/m_110778_ (Ljava/lang/String;)Lnet/minecraft/client/resources/model/Material; net/minecraft/client/renderer/Sheets/chestMaterial (Ljava/lang/String;)Lnet/minecraft/client/resources/model/Material; +MD: net/minecraft/client/renderer/Sheets/m_110780_ (Ljava/util/function/Consumer;)V net/minecraft/client/renderer/Sheets/getAllMaterials (Ljava/util/function/Consumer;)V +MD: net/minecraft/client/renderer/Sheets/m_110782_ ()Lnet/minecraft/client/renderer/RenderType; net/minecraft/client/renderer/Sheets/shieldSheet ()Lnet/minecraft/client/renderer/RenderType; +MD: net/minecraft/client/renderer/Sheets/m_110783_ (Ljava/lang/String;)Lnet/minecraft/client/resources/model/Material; net/minecraft/client/renderer/Sheets/lambda$static$0 (Ljava/lang/String;)Lnet/minecraft/client/resources/model/Material; +MD: net/minecraft/client/renderer/Sheets/m_110785_ ()Lnet/minecraft/client/renderer/RenderType; net/minecraft/client/renderer/Sheets/bedSheet ()Lnet/minecraft/client/renderer/RenderType; +MD: net/minecraft/client/renderer/Sheets/m_110786_ ()Lnet/minecraft/client/renderer/RenderType; net/minecraft/client/renderer/Sheets/shulkerBoxSheet ()Lnet/minecraft/client/renderer/RenderType; +MD: net/minecraft/client/renderer/Sheets/m_110787_ ()Lnet/minecraft/client/renderer/RenderType; net/minecraft/client/renderer/Sheets/signSheet ()Lnet/minecraft/client/renderer/RenderType; +MD: net/minecraft/client/renderer/Sheets/m_110788_ ()Lnet/minecraft/client/renderer/RenderType; net/minecraft/client/renderer/Sheets/chestSheet ()Lnet/minecraft/client/renderer/RenderType; +MD: net/minecraft/client/renderer/Sheets/m_110789_ ()Lnet/minecraft/client/renderer/RenderType; net/minecraft/client/renderer/Sheets/solidBlockSheet ()Lnet/minecraft/client/renderer/RenderType; +MD: net/minecraft/client/renderer/Sheets/m_110790_ ()Lnet/minecraft/client/renderer/RenderType; net/minecraft/client/renderer/Sheets/cutoutBlockSheet ()Lnet/minecraft/client/renderer/RenderType; +MD: net/minecraft/client/renderer/Sheets/m_110791_ ()Lnet/minecraft/client/renderer/RenderType; net/minecraft/client/renderer/Sheets/translucentItemSheet ()Lnet/minecraft/client/renderer/RenderType; +MD: net/minecraft/client/renderer/Sheets/m_110792_ ()Lnet/minecraft/client/renderer/RenderType; net/minecraft/client/renderer/Sheets/translucentCullBlockSheet ()Lnet/minecraft/client/renderer/RenderType; +MD: net/minecraft/client/renderer/Sheets/m_173381_ (Lnet/minecraft/world/level/block/state/properties/WoodType;)Lnet/minecraft/client/resources/model/Material; net/minecraft/client/renderer/Sheets/getSignMaterial (Lnet/minecraft/world/level/block/state/properties/WoodType;)Lnet/minecraft/client/resources/model/Material; +MD: net/minecraft/client/renderer/Sheets/m_173385_ (Lnet/minecraft/world/level/block/state/properties/WoodType;)Lnet/minecraft/client/resources/model/Material; net/minecraft/client/renderer/Sheets/createSignMaterial (Lnet/minecraft/world/level/block/state/properties/WoodType;)Lnet/minecraft/client/resources/model/Material; +MD: net/minecraft/client/renderer/Sheets/m_234347_ (Lnet/minecraft/resources/ResourceKey;)Lnet/minecraft/client/resources/model/Material; net/minecraft/client/renderer/Sheets/getBannerMaterial (Lnet/minecraft/resources/ResourceKey;)Lnet/minecraft/client/resources/model/Material; +MD: net/minecraft/client/renderer/Sheets/m_234349_ (Lnet/minecraft/resources/ResourceKey;)Lnet/minecraft/client/resources/model/Material; net/minecraft/client/renderer/Sheets/getShieldMaterial (Lnet/minecraft/resources/ResourceKey;)Lnet/minecraft/client/resources/model/Material; +MD: net/minecraft/client/renderer/Sheets/m_234351_ (Lnet/minecraft/resources/ResourceKey;)Lnet/minecraft/client/resources/model/Material; net/minecraft/client/renderer/Sheets/createBannerMaterial (Lnet/minecraft/resources/ResourceKey;)Lnet/minecraft/client/resources/model/Material; +MD: net/minecraft/client/renderer/Sheets/m_234353_ (Lnet/minecraft/resources/ResourceKey;)Lnet/minecraft/client/resources/model/Material; net/minecraft/client/renderer/Sheets/createShieldMaterial (Lnet/minecraft/resources/ResourceKey;)Lnet/minecraft/client/resources/model/Material; +MD: net/minecraft/client/renderer/Sheets/m_245275_ (Lnet/minecraft/world/level/block/state/properties/WoodType;)Lnet/minecraft/client/resources/model/Material; net/minecraft/client/renderer/Sheets/createHangingSignMaterial (Lnet/minecraft/world/level/block/state/properties/WoodType;)Lnet/minecraft/client/resources/model/Material; +MD: net/minecraft/client/renderer/Sheets/m_246640_ ()Lnet/minecraft/client/renderer/RenderType; net/minecraft/client/renderer/Sheets/hangingSignSheet ()Lnet/minecraft/client/renderer/RenderType; +MD: net/minecraft/client/renderer/Sheets/m_246984_ (Lnet/minecraft/world/level/block/state/properties/WoodType;)Lnet/minecraft/client/resources/model/Material; net/minecraft/client/renderer/Sheets/getHangingSignMaterial (Lnet/minecraft/world/level/block/state/properties/WoodType;)Lnet/minecraft/client/resources/model/Material; +MD: net/minecraft/client/renderer/Sheets/m_266442_ ()Lnet/minecraft/client/renderer/RenderType; net/minecraft/client/renderer/Sheets/armorTrimsSheet ()Lnet/minecraft/client/renderer/RenderType; +MD: net/minecraft/client/renderer/Sheets/m_272215_ (Lnet/minecraft/resources/ResourceKey;)Lnet/minecraft/client/resources/model/Material; net/minecraft/client/renderer/Sheets/createDecoratedPotMaterial (Lnet/minecraft/resources/ResourceKey;)Lnet/minecraft/client/resources/model/Material; +MD: net/minecraft/client/renderer/Sheets/m_272280_ (Lnet/minecraft/resources/ResourceKey;)Lnet/minecraft/client/resources/model/Material; net/minecraft/client/renderer/Sheets/getDecoratedPotMaterial (Lnet/minecraft/resources/ResourceKey;)Lnet/minecraft/client/resources/model/Material; +MD: net/minecraft/client/renderer/Sheets$1/ ()V net/minecraft/client/renderer/Sheets$1/ ()V +MD: net/minecraft/client/renderer/SpriteCoordinateExpander/ (Lcom/mojang/blaze3d/vertex/VertexConsumer;Lnet/minecraft/client/renderer/texture/TextureAtlasSprite;)V net/minecraft/client/renderer/SpriteCoordinateExpander/ (Lcom/mojang/blaze3d/vertex/VertexConsumer;Lnet/minecraft/client/renderer/texture/TextureAtlasSprite;)V +MD: net/minecraft/client/renderer/SpriteCoordinateExpander/m_141991_ ()V net/minecraft/client/renderer/SpriteCoordinateExpander/unsetDefaultColor ()V +MD: net/minecraft/client/renderer/SpriteCoordinateExpander/m_5483_ (DDD)Lcom/mojang/blaze3d/vertex/VertexConsumer; net/minecraft/client/renderer/SpriteCoordinateExpander/vertex (DDD)Lcom/mojang/blaze3d/vertex/VertexConsumer; +MD: net/minecraft/client/renderer/SpriteCoordinateExpander/m_5601_ (FFF)Lcom/mojang/blaze3d/vertex/VertexConsumer; net/minecraft/client/renderer/SpriteCoordinateExpander/normal (FFF)Lcom/mojang/blaze3d/vertex/VertexConsumer; +MD: net/minecraft/client/renderer/SpriteCoordinateExpander/m_5752_ ()V net/minecraft/client/renderer/SpriteCoordinateExpander/endVertex ()V +MD: net/minecraft/client/renderer/SpriteCoordinateExpander/m_5954_ (FFFFFFFFFIIFFF)V net/minecraft/client/renderer/SpriteCoordinateExpander/vertex (FFFFFFFFFIIFFF)V +MD: net/minecraft/client/renderer/SpriteCoordinateExpander/m_6122_ (IIII)Lcom/mojang/blaze3d/vertex/VertexConsumer; net/minecraft/client/renderer/SpriteCoordinateExpander/color (IIII)Lcom/mojang/blaze3d/vertex/VertexConsumer; +MD: net/minecraft/client/renderer/SpriteCoordinateExpander/m_7120_ (II)Lcom/mojang/blaze3d/vertex/VertexConsumer; net/minecraft/client/renderer/SpriteCoordinateExpander/uv2 (II)Lcom/mojang/blaze3d/vertex/VertexConsumer; +MD: net/minecraft/client/renderer/SpriteCoordinateExpander/m_7122_ (II)Lcom/mojang/blaze3d/vertex/VertexConsumer; net/minecraft/client/renderer/SpriteCoordinateExpander/overlayCoords (II)Lcom/mojang/blaze3d/vertex/VertexConsumer; +MD: net/minecraft/client/renderer/SpriteCoordinateExpander/m_7404_ (IIII)V net/minecraft/client/renderer/SpriteCoordinateExpander/defaultColor (IIII)V +MD: net/minecraft/client/renderer/SpriteCoordinateExpander/m_7421_ (FF)Lcom/mojang/blaze3d/vertex/VertexConsumer; net/minecraft/client/renderer/SpriteCoordinateExpander/uv (FF)Lcom/mojang/blaze3d/vertex/VertexConsumer; +MD: net/minecraft/client/renderer/ViewArea/ (Lnet/minecraft/client/renderer/chunk/ChunkRenderDispatcher;Lnet/minecraft/world/level/Level;ILnet/minecraft/client/renderer/LevelRenderer;)V net/minecraft/client/renderer/ViewArea/ (Lnet/minecraft/client/renderer/chunk/ChunkRenderDispatcher;Lnet/minecraft/world/level/Level;ILnet/minecraft/client/renderer/LevelRenderer;)V +MD: net/minecraft/client/renderer/ViewArea/m_110849_ ()V net/minecraft/client/renderer/ViewArea/releaseAllBuffers ()V +MD: net/minecraft/client/renderer/ViewArea/m_110850_ (DD)V net/minecraft/client/renderer/ViewArea/repositionCamera (DD)V +MD: net/minecraft/client/renderer/ViewArea/m_110853_ (I)V net/minecraft/client/renderer/ViewArea/setViewDistance (I)V +MD: net/minecraft/client/renderer/ViewArea/m_110855_ (III)I net/minecraft/client/renderer/ViewArea/getChunkIndex (III)I +MD: net/minecraft/client/renderer/ViewArea/m_110859_ (IIIZ)V net/minecraft/client/renderer/ViewArea/setDirty (IIIZ)V +MD: net/minecraft/client/renderer/ViewArea/m_110864_ (Lnet/minecraft/client/renderer/chunk/ChunkRenderDispatcher;)V net/minecraft/client/renderer/ViewArea/createChunks (Lnet/minecraft/client/renderer/chunk/ChunkRenderDispatcher;)V +MD: net/minecraft/client/renderer/ViewArea/m_110866_ (Lnet/minecraft/core/BlockPos;)Lnet/minecraft/client/renderer/chunk/ChunkRenderDispatcher$RenderChunk; net/minecraft/client/renderer/ViewArea/getRenderChunkAt (Lnet/minecraft/core/BlockPos;)Lnet/minecraft/client/renderer/chunk/ChunkRenderDispatcher$RenderChunk; +MD: net/minecraft/client/renderer/VirtualScreen/ (Lnet/minecraft/client/Minecraft;)V net/minecraft/client/renderer/VirtualScreen/ (Lnet/minecraft/client/Minecraft;)V +MD: net/minecraft/client/renderer/VirtualScreen/close ()V net/minecraft/client/renderer/VirtualScreen/close ()V +MD: net/minecraft/client/renderer/VirtualScreen/m_110872_ (Lcom/mojang/blaze3d/platform/DisplayData;Ljava/lang/String;Ljava/lang/String;)Lcom/mojang/blaze3d/platform/Window; net/minecraft/client/renderer/VirtualScreen/newWindow (Lcom/mojang/blaze3d/platform/DisplayData;Ljava/lang/String;Ljava/lang/String;)Lcom/mojang/blaze3d/platform/Window; +MD: net/minecraft/client/renderer/block/BlockModelShaper/ (Lnet/minecraft/client/resources/model/ModelManager;)V net/minecraft/client/renderer/block/BlockModelShaper/ (Lnet/minecraft/client/resources/model/ModelManager;)V +MD: net/minecraft/client/renderer/block/BlockModelShaper/m_110881_ ()Lnet/minecraft/client/resources/model/ModelManager; net/minecraft/client/renderer/block/BlockModelShaper/getModelManager ()Lnet/minecraft/client/resources/model/ModelManager; +MD: net/minecraft/client/renderer/block/BlockModelShaper/m_110882_ (Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/client/renderer/texture/TextureAtlasSprite; net/minecraft/client/renderer/block/BlockModelShaper/getParticleIcon (Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/client/renderer/texture/TextureAtlasSprite; +MD: net/minecraft/client/renderer/block/BlockModelShaper/m_110884_ (Lnet/minecraft/world/level/block/state/properties/Property;Ljava/lang/Comparable;)Ljava/lang/String; net/minecraft/client/renderer/block/BlockModelShaper/getValue (Lnet/minecraft/world/level/block/state/properties/Property;Ljava/lang/Comparable;)Ljava/lang/String; +MD: net/minecraft/client/renderer/block/BlockModelShaper/m_110887_ (Ljava/util/Map;)Ljava/lang/String; net/minecraft/client/renderer/block/BlockModelShaper/statePropertiesToString (Ljava/util/Map;)Ljava/lang/String; +MD: net/minecraft/client/renderer/block/BlockModelShaper/m_110889_ (Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/client/resources/model/ModelResourceLocation; net/minecraft/client/renderer/block/BlockModelShaper/stateToModelLocation (Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/client/resources/model/ModelResourceLocation; +MD: net/minecraft/client/renderer/block/BlockModelShaper/m_110893_ (Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/client/resources/model/BakedModel; net/minecraft/client/renderer/block/BlockModelShaper/getBlockModel (Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/client/resources/model/BakedModel; +MD: net/minecraft/client/renderer/block/BlockModelShaper/m_110895_ (Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/client/resources/model/ModelResourceLocation; net/minecraft/client/renderer/block/BlockModelShaper/stateToModelLocation (Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/client/resources/model/ModelResourceLocation; +MD: net/minecraft/client/renderer/block/BlockModelShaper/m_245515_ (Ljava/util/Map;)V net/minecraft/client/renderer/block/BlockModelShaper/replaceCache (Ljava/util/Map;)V +MD: net/minecraft/client/renderer/block/BlockRenderDispatcher/ (Lnet/minecraft/client/renderer/block/BlockModelShaper;Lnet/minecraft/client/renderer/BlockEntityWithoutLevelRenderer;Lnet/minecraft/client/color/block/BlockColors;)V net/minecraft/client/renderer/block/BlockRenderDispatcher/ (Lnet/minecraft/client/renderer/block/BlockModelShaper;Lnet/minecraft/client/renderer/BlockEntityWithoutLevelRenderer;Lnet/minecraft/client/color/block/BlockColors;)V +MD: net/minecraft/client/renderer/block/BlockRenderDispatcher/m_110907_ ()Lnet/minecraft/client/renderer/block/BlockModelShaper; net/minecraft/client/renderer/block/BlockRenderDispatcher/getBlockModelShaper ()Lnet/minecraft/client/renderer/block/BlockModelShaper; +MD: net/minecraft/client/renderer/block/BlockRenderDispatcher/m_110910_ (Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/client/resources/model/BakedModel; net/minecraft/client/renderer/block/BlockRenderDispatcher/getBlockModel (Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/client/resources/model/BakedModel; +MD: net/minecraft/client/renderer/block/BlockRenderDispatcher/m_110912_ (Lnet/minecraft/world/level/block/state/BlockState;Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;II)V net/minecraft/client/renderer/block/BlockRenderDispatcher/renderSingleBlock (Lnet/minecraft/world/level/block/state/BlockState;Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;II)V +MD: net/minecraft/client/renderer/block/BlockRenderDispatcher/m_110918_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/BlockAndTintGetter;Lcom/mojang/blaze3d/vertex/PoseStack;Lcom/mojang/blaze3d/vertex/VertexConsumer;)V net/minecraft/client/renderer/block/BlockRenderDispatcher/renderBreakingTexture (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/BlockAndTintGetter;Lcom/mojang/blaze3d/vertex/PoseStack;Lcom/mojang/blaze3d/vertex/VertexConsumer;)V +MD: net/minecraft/client/renderer/block/BlockRenderDispatcher/m_110937_ ()Lnet/minecraft/client/renderer/block/ModelBlockRenderer; net/minecraft/client/renderer/block/BlockRenderDispatcher/getModelRenderer ()Lnet/minecraft/client/renderer/block/ModelBlockRenderer; +MD: net/minecraft/client/renderer/block/BlockRenderDispatcher/m_234355_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/BlockAndTintGetter;Lcom/mojang/blaze3d/vertex/PoseStack;Lcom/mojang/blaze3d/vertex/VertexConsumer;ZLnet/minecraft/util/RandomSource;)V net/minecraft/client/renderer/block/BlockRenderDispatcher/renderBatched (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/BlockAndTintGetter;Lcom/mojang/blaze3d/vertex/PoseStack;Lcom/mojang/blaze3d/vertex/VertexConsumer;ZLnet/minecraft/util/RandomSource;)V +MD: net/minecraft/client/renderer/block/BlockRenderDispatcher/m_234363_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/BlockAndTintGetter;Lcom/mojang/blaze3d/vertex/VertexConsumer;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/material/FluidState;)V net/minecraft/client/renderer/block/BlockRenderDispatcher/renderLiquid (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/BlockAndTintGetter;Lcom/mojang/blaze3d/vertex/VertexConsumer;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/material/FluidState;)V +MD: net/minecraft/client/renderer/block/BlockRenderDispatcher/m_6213_ (Lnet/minecraft/server/packs/resources/ResourceManager;)V net/minecraft/client/renderer/block/BlockRenderDispatcher/onResourceManagerReload (Lnet/minecraft/server/packs/resources/ResourceManager;)V +MD: net/minecraft/client/renderer/block/BlockRenderDispatcher$1/ ()V net/minecraft/client/renderer/block/BlockRenderDispatcher$1/ ()V +MD: net/minecraft/client/renderer/block/LiquidBlockRenderer/ ()V net/minecraft/client/renderer/block/LiquidBlockRenderer/ ()V +MD: net/minecraft/client/renderer/block/LiquidBlockRenderer/m_110944_ ()V net/minecraft/client/renderer/block/LiquidBlockRenderer/setupSprites ()V +MD: net/minecraft/client/renderer/block/LiquidBlockRenderer/m_110945_ (Lnet/minecraft/world/level/BlockAndTintGetter;Lnet/minecraft/core/BlockPos;)I net/minecraft/client/renderer/block/LiquidBlockRenderer/getLightColor (Lnet/minecraft/world/level/BlockAndTintGetter;Lnet/minecraft/core/BlockPos;)I +MD: net/minecraft/client/renderer/block/LiquidBlockRenderer/m_110959_ (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/Direction;)Z net/minecraft/client/renderer/block/LiquidBlockRenderer/isFaceOccludedBySelf (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/Direction;)Z +MD: net/minecraft/client/renderer/block/LiquidBlockRenderer/m_110978_ (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/Direction;FLnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/client/renderer/block/LiquidBlockRenderer/isFaceOccludedByState (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/Direction;FLnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/client/renderer/block/LiquidBlockRenderer/m_110984_ (Lcom/mojang/blaze3d/vertex/VertexConsumer;DDDFFFFFI)V net/minecraft/client/renderer/block/LiquidBlockRenderer/vertex (Lcom/mojang/blaze3d/vertex/VertexConsumer;DDDFFFFFI)V +MD: net/minecraft/client/renderer/block/LiquidBlockRenderer/m_203149_ (Lnet/minecraft/world/level/BlockAndTintGetter;Lnet/minecraft/world/level/material/Fluid;FFFLnet/minecraft/core/BlockPos;)F net/minecraft/client/renderer/block/LiquidBlockRenderer/calculateAverageHeight (Lnet/minecraft/world/level/BlockAndTintGetter;Lnet/minecraft/world/level/material/Fluid;FFFLnet/minecraft/core/BlockPos;)F +MD: net/minecraft/client/renderer/block/LiquidBlockRenderer/m_203156_ (Lnet/minecraft/world/level/BlockAndTintGetter;Lnet/minecraft/world/level/material/Fluid;Lnet/minecraft/core/BlockPos;)F net/minecraft/client/renderer/block/LiquidBlockRenderer/getHeight (Lnet/minecraft/world/level/BlockAndTintGetter;Lnet/minecraft/world/level/material/Fluid;Lnet/minecraft/core/BlockPos;)F +MD: net/minecraft/client/renderer/block/LiquidBlockRenderer/m_203160_ (Lnet/minecraft/world/level/BlockAndTintGetter;Lnet/minecraft/world/level/material/Fluid;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/material/FluidState;)F net/minecraft/client/renderer/block/LiquidBlockRenderer/getHeight (Lnet/minecraft/world/level/BlockAndTintGetter;Lnet/minecraft/world/level/material/Fluid;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/material/FluidState;)F +MD: net/minecraft/client/renderer/block/LiquidBlockRenderer/m_203166_ (Lnet/minecraft/world/level/BlockAndTintGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/material/FluidState;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/material/FluidState;)Z net/minecraft/client/renderer/block/LiquidBlockRenderer/shouldRenderFace (Lnet/minecraft/world/level/BlockAndTintGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/material/FluidState;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/material/FluidState;)Z +MD: net/minecraft/client/renderer/block/LiquidBlockRenderer/m_203179_ (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Direction;FLnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/client/renderer/block/LiquidBlockRenderer/isFaceOccludedByNeighbor (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Direction;FLnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/client/renderer/block/LiquidBlockRenderer/m_203185_ (Lnet/minecraft/world/level/material/FluidState;Lnet/minecraft/world/level/material/FluidState;)Z net/minecraft/client/renderer/block/LiquidBlockRenderer/isNeighborSameFluid (Lnet/minecraft/world/level/material/FluidState;Lnet/minecraft/world/level/material/FluidState;)Z +MD: net/minecraft/client/renderer/block/LiquidBlockRenderer/m_203188_ ([FF)V net/minecraft/client/renderer/block/LiquidBlockRenderer/addWeightedHeight ([FF)V +MD: net/minecraft/client/renderer/block/LiquidBlockRenderer/m_234369_ (Lnet/minecraft/world/level/BlockAndTintGetter;Lnet/minecraft/core/BlockPos;Lcom/mojang/blaze3d/vertex/VertexConsumer;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/material/FluidState;)V net/minecraft/client/renderer/block/LiquidBlockRenderer/tesselate (Lnet/minecraft/world/level/BlockAndTintGetter;Lnet/minecraft/core/BlockPos;Lcom/mojang/blaze3d/vertex/VertexConsumer;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/material/FluidState;)V +MD: net/minecraft/client/renderer/block/LiquidBlockRenderer$1/ ()V net/minecraft/client/renderer/block/LiquidBlockRenderer$1/ ()V +MD: net/minecraft/client/renderer/block/ModelBlockRenderer/ ()V net/minecraft/client/renderer/block/ModelBlockRenderer/ ()V +MD: net/minecraft/client/renderer/block/ModelBlockRenderer/ (Lnet/minecraft/client/color/block/BlockColors;)V net/minecraft/client/renderer/block/ModelBlockRenderer/ (Lnet/minecraft/client/color/block/BlockColors;)V +MD: net/minecraft/client/renderer/block/ModelBlockRenderer/m_111000_ ()V net/minecraft/client/renderer/block/ModelBlockRenderer/enableCaching ()V +MD: net/minecraft/client/renderer/block/ModelBlockRenderer/m_111001_ (Lnet/minecraft/world/level/BlockAndTintGetter;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/BlockPos;IIZLcom/mojang/blaze3d/vertex/PoseStack;Lcom/mojang/blaze3d/vertex/VertexConsumer;Ljava/util/List;Ljava/util/BitSet;)V net/minecraft/client/renderer/block/ModelBlockRenderer/renderModelFaceFlat (Lnet/minecraft/world/level/BlockAndTintGetter;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/BlockPos;IIZLcom/mojang/blaze3d/vertex/PoseStack;Lcom/mojang/blaze3d/vertex/VertexConsumer;Ljava/util/List;Ljava/util/BitSet;)V +MD: net/minecraft/client/renderer/block/ModelBlockRenderer/m_111012_ (Lnet/minecraft/world/level/BlockAndTintGetter;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/BlockPos;Lcom/mojang/blaze3d/vertex/PoseStack;Lcom/mojang/blaze3d/vertex/VertexConsumer;Ljava/util/List;[FLjava/util/BitSet;Lnet/minecraft/client/renderer/block/ModelBlockRenderer$AmbientOcclusionFace;I)V net/minecraft/client/renderer/block/ModelBlockRenderer/renderModelFaceAO (Lnet/minecraft/world/level/BlockAndTintGetter;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/BlockPos;Lcom/mojang/blaze3d/vertex/PoseStack;Lcom/mojang/blaze3d/vertex/VertexConsumer;Ljava/util/List;[FLjava/util/BitSet;Lnet/minecraft/client/renderer/block/ModelBlockRenderer$AmbientOcclusionFace;I)V +MD: net/minecraft/client/renderer/block/ModelBlockRenderer/m_111023_ (Lnet/minecraft/world/level/BlockAndTintGetter;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/BlockPos;Lcom/mojang/blaze3d/vertex/VertexConsumer;Lcom/mojang/blaze3d/vertex/PoseStack$Pose;Lnet/minecraft/client/renderer/block/model/BakedQuad;FFFFIIIII)V net/minecraft/client/renderer/block/ModelBlockRenderer/putQuadData (Lnet/minecraft/world/level/BlockAndTintGetter;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/BlockPos;Lcom/mojang/blaze3d/vertex/VertexConsumer;Lcom/mojang/blaze3d/vertex/PoseStack$Pose;Lnet/minecraft/client/renderer/block/model/BakedQuad;FFFFIIIII)V +MD: net/minecraft/client/renderer/block/ModelBlockRenderer/m_111039_ (Lnet/minecraft/world/level/BlockAndTintGetter;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/BlockPos;[ILnet/minecraft/core/Direction;[FLjava/util/BitSet;)V net/minecraft/client/renderer/block/ModelBlockRenderer/calculateShape (Lnet/minecraft/world/level/BlockAndTintGetter;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/BlockPos;[ILnet/minecraft/core/Direction;[FLjava/util/BitSet;)V +MD: net/minecraft/client/renderer/block/ModelBlockRenderer/m_111058_ (Lcom/mojang/blaze3d/vertex/PoseStack$Pose;Lcom/mojang/blaze3d/vertex/VertexConsumer;FFFLjava/util/List;II)V net/minecraft/client/renderer/block/ModelBlockRenderer/renderQuadList (Lcom/mojang/blaze3d/vertex/PoseStack$Pose;Lcom/mojang/blaze3d/vertex/VertexConsumer;FFFLjava/util/List;II)V +MD: net/minecraft/client/renderer/block/ModelBlockRenderer/m_111067_ (Lcom/mojang/blaze3d/vertex/PoseStack$Pose;Lcom/mojang/blaze3d/vertex/VertexConsumer;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/client/resources/model/BakedModel;FFFII)V net/minecraft/client/renderer/block/ModelBlockRenderer/renderModel (Lcom/mojang/blaze3d/vertex/PoseStack$Pose;Lcom/mojang/blaze3d/vertex/VertexConsumer;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/client/resources/model/BakedModel;FFFII)V +MD: net/minecraft/client/renderer/block/ModelBlockRenderer/m_111077_ ()V net/minecraft/client/renderer/block/ModelBlockRenderer/clearCache ()V +MD: net/minecraft/client/renderer/block/ModelBlockRenderer/m_234379_ (Lnet/minecraft/world/level/BlockAndTintGetter;Lnet/minecraft/client/resources/model/BakedModel;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/BlockPos;Lcom/mojang/blaze3d/vertex/PoseStack;Lcom/mojang/blaze3d/vertex/VertexConsumer;ZLnet/minecraft/util/RandomSource;JI)V net/minecraft/client/renderer/block/ModelBlockRenderer/tesselateBlock (Lnet/minecraft/world/level/BlockAndTintGetter;Lnet/minecraft/client/resources/model/BakedModel;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/BlockPos;Lcom/mojang/blaze3d/vertex/PoseStack;Lcom/mojang/blaze3d/vertex/VertexConsumer;ZLnet/minecraft/util/RandomSource;JI)V +MD: net/minecraft/client/renderer/block/ModelBlockRenderer/m_234390_ (Lnet/minecraft/world/level/BlockAndTintGetter;Lnet/minecraft/client/resources/model/BakedModel;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/BlockPos;Lcom/mojang/blaze3d/vertex/PoseStack;Lcom/mojang/blaze3d/vertex/VertexConsumer;ZLnet/minecraft/util/RandomSource;JI)V net/minecraft/client/renderer/block/ModelBlockRenderer/tesselateWithAO (Lnet/minecraft/world/level/BlockAndTintGetter;Lnet/minecraft/client/resources/model/BakedModel;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/BlockPos;Lcom/mojang/blaze3d/vertex/PoseStack;Lcom/mojang/blaze3d/vertex/VertexConsumer;ZLnet/minecraft/util/RandomSource;JI)V +MD: net/minecraft/client/renderer/block/ModelBlockRenderer/m_234401_ (Lnet/minecraft/world/level/BlockAndTintGetter;Lnet/minecraft/client/resources/model/BakedModel;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/BlockPos;Lcom/mojang/blaze3d/vertex/PoseStack;Lcom/mojang/blaze3d/vertex/VertexConsumer;ZLnet/minecraft/util/RandomSource;JI)V net/minecraft/client/renderer/block/ModelBlockRenderer/tesselateWithoutAO (Lnet/minecraft/world/level/BlockAndTintGetter;Lnet/minecraft/client/resources/model/BakedModel;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/BlockPos;Lcom/mojang/blaze3d/vertex/PoseStack;Lcom/mojang/blaze3d/vertex/VertexConsumer;ZLnet/minecraft/util/RandomSource;JI)V +MD: net/minecraft/client/renderer/block/ModelBlockRenderer$1/ ()V net/minecraft/client/renderer/block/ModelBlockRenderer$1/ ()V +MD: net/minecraft/client/renderer/block/ModelBlockRenderer$AdjacencyInfo/ ()V net/minecraft/client/renderer/block/ModelBlockRenderer$AdjacencyInfo/ ()V +MD: net/minecraft/client/renderer/block/ModelBlockRenderer$AdjacencyInfo/ (Ljava/lang/String;I[Lnet/minecraft/core/Direction;FZ[Lnet/minecraft/client/renderer/block/ModelBlockRenderer$SizeInfo;[Lnet/minecraft/client/renderer/block/ModelBlockRenderer$SizeInfo;[Lnet/minecraft/client/renderer/block/ModelBlockRenderer$SizeInfo;[Lnet/minecraft/client/renderer/block/ModelBlockRenderer$SizeInfo;)V net/minecraft/client/renderer/block/ModelBlockRenderer$AdjacencyInfo/ (Ljava/lang/String;I[Lnet/minecraft/core/Direction;FZ[Lnet/minecraft/client/renderer/block/ModelBlockRenderer$SizeInfo;[Lnet/minecraft/client/renderer/block/ModelBlockRenderer$SizeInfo;[Lnet/minecraft/client/renderer/block/ModelBlockRenderer$SizeInfo;[Lnet/minecraft/client/renderer/block/ModelBlockRenderer$SizeInfo;)V +MD: net/minecraft/client/renderer/block/ModelBlockRenderer$AdjacencyInfo/m_111131_ (Lnet/minecraft/core/Direction;)Lnet/minecraft/client/renderer/block/ModelBlockRenderer$AdjacencyInfo; net/minecraft/client/renderer/block/ModelBlockRenderer$AdjacencyInfo/fromFacing (Lnet/minecraft/core/Direction;)Lnet/minecraft/client/renderer/block/ModelBlockRenderer$AdjacencyInfo; +MD: net/minecraft/client/renderer/block/ModelBlockRenderer$AdjacencyInfo/m_111133_ ([Lnet/minecraft/client/renderer/block/ModelBlockRenderer$AdjacencyInfo;)V net/minecraft/client/renderer/block/ModelBlockRenderer$AdjacencyInfo/lambda$static$0 ([Lnet/minecraft/client/renderer/block/ModelBlockRenderer$AdjacencyInfo;)V +MD: net/minecraft/client/renderer/block/ModelBlockRenderer$AdjacencyInfo/m_173407_ ()[Lnet/minecraft/client/renderer/block/ModelBlockRenderer$AdjacencyInfo; net/minecraft/client/renderer/block/ModelBlockRenderer$AdjacencyInfo/$values ()[Lnet/minecraft/client/renderer/block/ModelBlockRenderer$AdjacencyInfo; +MD: net/minecraft/client/renderer/block/ModelBlockRenderer$AdjacencyInfo/valueOf (Ljava/lang/String;)Lnet/minecraft/client/renderer/block/ModelBlockRenderer$AdjacencyInfo; net/minecraft/client/renderer/block/ModelBlockRenderer$AdjacencyInfo/valueOf (Ljava/lang/String;)Lnet/minecraft/client/renderer/block/ModelBlockRenderer$AdjacencyInfo; +MD: net/minecraft/client/renderer/block/ModelBlockRenderer$AdjacencyInfo/values ()[Lnet/minecraft/client/renderer/block/ModelBlockRenderer$AdjacencyInfo; net/minecraft/client/renderer/block/ModelBlockRenderer$AdjacencyInfo/values ()[Lnet/minecraft/client/renderer/block/ModelBlockRenderer$AdjacencyInfo; +MD: net/minecraft/client/renderer/block/ModelBlockRenderer$AmbientOcclusionFace/ ()V net/minecraft/client/renderer/block/ModelBlockRenderer$AmbientOcclusionFace/ ()V +MD: net/minecraft/client/renderer/block/ModelBlockRenderer$AmbientOcclusionFace/m_111153_ (IIII)I net/minecraft/client/renderer/block/ModelBlockRenderer$AmbientOcclusionFace/blend (IIII)I +MD: net/minecraft/client/renderer/block/ModelBlockRenderer$AmbientOcclusionFace/m_111158_ (IIIIFFFF)I net/minecraft/client/renderer/block/ModelBlockRenderer$AmbientOcclusionFace/blend (IIIIFFFF)I +MD: net/minecraft/client/renderer/block/ModelBlockRenderer$AmbientOcclusionFace/m_111167_ (Lnet/minecraft/world/level/BlockAndTintGetter;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Direction;[FLjava/util/BitSet;Z)V net/minecraft/client/renderer/block/ModelBlockRenderer$AmbientOcclusionFace/calculate (Lnet/minecraft/world/level/BlockAndTintGetter;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Direction;[FLjava/util/BitSet;Z)V +MD: net/minecraft/client/renderer/block/ModelBlockRenderer$AmbientVertexRemap/ ()V net/minecraft/client/renderer/block/ModelBlockRenderer$AmbientVertexRemap/ ()V +MD: net/minecraft/client/renderer/block/ModelBlockRenderer$AmbientVertexRemap/ (Ljava/lang/String;IIIII)V net/minecraft/client/renderer/block/ModelBlockRenderer$AmbientVertexRemap/ (Ljava/lang/String;IIIII)V +MD: net/minecraft/client/renderer/block/ModelBlockRenderer$AmbientVertexRemap/m_111201_ (Lnet/minecraft/core/Direction;)Lnet/minecraft/client/renderer/block/ModelBlockRenderer$AmbientVertexRemap; net/minecraft/client/renderer/block/ModelBlockRenderer$AmbientVertexRemap/fromFacing (Lnet/minecraft/core/Direction;)Lnet/minecraft/client/renderer/block/ModelBlockRenderer$AmbientVertexRemap; +MD: net/minecraft/client/renderer/block/ModelBlockRenderer$AmbientVertexRemap/m_111203_ ([Lnet/minecraft/client/renderer/block/ModelBlockRenderer$AmbientVertexRemap;)V net/minecraft/client/renderer/block/ModelBlockRenderer$AmbientVertexRemap/lambda$static$0 ([Lnet/minecraft/client/renderer/block/ModelBlockRenderer$AmbientVertexRemap;)V +MD: net/minecraft/client/renderer/block/ModelBlockRenderer$AmbientVertexRemap/m_173408_ ()[Lnet/minecraft/client/renderer/block/ModelBlockRenderer$AmbientVertexRemap; net/minecraft/client/renderer/block/ModelBlockRenderer$AmbientVertexRemap/$values ()[Lnet/minecraft/client/renderer/block/ModelBlockRenderer$AmbientVertexRemap; +MD: net/minecraft/client/renderer/block/ModelBlockRenderer$AmbientVertexRemap/valueOf (Ljava/lang/String;)Lnet/minecraft/client/renderer/block/ModelBlockRenderer$AmbientVertexRemap; net/minecraft/client/renderer/block/ModelBlockRenderer$AmbientVertexRemap/valueOf (Ljava/lang/String;)Lnet/minecraft/client/renderer/block/ModelBlockRenderer$AmbientVertexRemap; +MD: net/minecraft/client/renderer/block/ModelBlockRenderer$AmbientVertexRemap/values ()[Lnet/minecraft/client/renderer/block/ModelBlockRenderer$AmbientVertexRemap; net/minecraft/client/renderer/block/ModelBlockRenderer$AmbientVertexRemap/values ()[Lnet/minecraft/client/renderer/block/ModelBlockRenderer$AmbientVertexRemap; +MD: net/minecraft/client/renderer/block/ModelBlockRenderer$Cache/ ()V net/minecraft/client/renderer/block/ModelBlockRenderer$Cache/ ()V +MD: net/minecraft/client/renderer/block/ModelBlockRenderer$Cache/m_111220_ ()V net/minecraft/client/renderer/block/ModelBlockRenderer$Cache/enable ()V +MD: net/minecraft/client/renderer/block/ModelBlockRenderer$Cache/m_111221_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockAndTintGetter;Lnet/minecraft/core/BlockPos;)I net/minecraft/client/renderer/block/ModelBlockRenderer$Cache/getLightColor (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockAndTintGetter;Lnet/minecraft/core/BlockPos;)I +MD: net/minecraft/client/renderer/block/ModelBlockRenderer$Cache/m_111225_ ()V net/minecraft/client/renderer/block/ModelBlockRenderer$Cache/disable ()V +MD: net/minecraft/client/renderer/block/ModelBlockRenderer$Cache/m_111226_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockAndTintGetter;Lnet/minecraft/core/BlockPos;)F net/minecraft/client/renderer/block/ModelBlockRenderer$Cache/getShadeBrightness (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockAndTintGetter;Lnet/minecraft/core/BlockPos;)F +MD: net/minecraft/client/renderer/block/ModelBlockRenderer$Cache/m_111230_ ()Lit/unimi/dsi/fastutil/longs/Long2FloatLinkedOpenHashMap; net/minecraft/client/renderer/block/ModelBlockRenderer$Cache/lambda$new$1 ()Lit/unimi/dsi/fastutil/longs/Long2FloatLinkedOpenHashMap; +MD: net/minecraft/client/renderer/block/ModelBlockRenderer$Cache/m_111231_ ()Lit/unimi/dsi/fastutil/longs/Long2IntLinkedOpenHashMap; net/minecraft/client/renderer/block/ModelBlockRenderer$Cache/lambda$new$0 ()Lit/unimi/dsi/fastutil/longs/Long2IntLinkedOpenHashMap; +MD: net/minecraft/client/renderer/block/ModelBlockRenderer$Cache$1/ (Lnet/minecraft/client/renderer/block/ModelBlockRenderer$Cache;IF)V net/minecraft/client/renderer/block/ModelBlockRenderer$Cache$1/ (Lnet/minecraft/client/renderer/block/ModelBlockRenderer$Cache;IF)V +MD: net/minecraft/client/renderer/block/ModelBlockRenderer$Cache$1/rehash (I)V net/minecraft/client/renderer/block/ModelBlockRenderer$Cache$1/rehash (I)V +MD: net/minecraft/client/renderer/block/ModelBlockRenderer$Cache$2/ (Lnet/minecraft/client/renderer/block/ModelBlockRenderer$Cache;IF)V net/minecraft/client/renderer/block/ModelBlockRenderer$Cache$2/ (Lnet/minecraft/client/renderer/block/ModelBlockRenderer$Cache;IF)V +MD: net/minecraft/client/renderer/block/ModelBlockRenderer$Cache$2/rehash (I)V net/minecraft/client/renderer/block/ModelBlockRenderer$Cache$2/rehash (I)V +MD: net/minecraft/client/renderer/block/ModelBlockRenderer$SizeInfo/ ()V net/minecraft/client/renderer/block/ModelBlockRenderer$SizeInfo/ ()V +MD: net/minecraft/client/renderer/block/ModelBlockRenderer$SizeInfo/ (Ljava/lang/String;ILnet/minecraft/core/Direction;Z)V net/minecraft/client/renderer/block/ModelBlockRenderer$SizeInfo/ (Ljava/lang/String;ILnet/minecraft/core/Direction;Z)V +MD: net/minecraft/client/renderer/block/ModelBlockRenderer$SizeInfo/m_173409_ ()[Lnet/minecraft/client/renderer/block/ModelBlockRenderer$SizeInfo; net/minecraft/client/renderer/block/ModelBlockRenderer$SizeInfo/$values ()[Lnet/minecraft/client/renderer/block/ModelBlockRenderer$SizeInfo; +MD: net/minecraft/client/renderer/block/ModelBlockRenderer$SizeInfo/valueOf (Ljava/lang/String;)Lnet/minecraft/client/renderer/block/ModelBlockRenderer$SizeInfo; net/minecraft/client/renderer/block/ModelBlockRenderer$SizeInfo/valueOf (Ljava/lang/String;)Lnet/minecraft/client/renderer/block/ModelBlockRenderer$SizeInfo; +MD: net/minecraft/client/renderer/block/ModelBlockRenderer$SizeInfo/values ()[Lnet/minecraft/client/renderer/block/ModelBlockRenderer$SizeInfo; net/minecraft/client/renderer/block/ModelBlockRenderer$SizeInfo/values ()[Lnet/minecraft/client/renderer/block/ModelBlockRenderer$SizeInfo; +MD: net/minecraft/client/renderer/block/model/BakedQuad/ ([IILnet/minecraft/core/Direction;Lnet/minecraft/client/renderer/texture/TextureAtlasSprite;Z)V net/minecraft/client/renderer/block/model/BakedQuad/ ([IILnet/minecraft/core/Direction;Lnet/minecraft/client/renderer/texture/TextureAtlasSprite;Z)V +MD: net/minecraft/client/renderer/block/model/BakedQuad/m_111303_ ()[I net/minecraft/client/renderer/block/model/BakedQuad/getVertices ()[I +MD: net/minecraft/client/renderer/block/model/BakedQuad/m_111304_ ()Z net/minecraft/client/renderer/block/model/BakedQuad/isTinted ()Z +MD: net/minecraft/client/renderer/block/model/BakedQuad/m_111305_ ()I net/minecraft/client/renderer/block/model/BakedQuad/getTintIndex ()I +MD: net/minecraft/client/renderer/block/model/BakedQuad/m_111306_ ()Lnet/minecraft/core/Direction; net/minecraft/client/renderer/block/model/BakedQuad/getDirection ()Lnet/minecraft/core/Direction; +MD: net/minecraft/client/renderer/block/model/BakedQuad/m_111307_ ()Z net/minecraft/client/renderer/block/model/BakedQuad/isShade ()Z +MD: net/minecraft/client/renderer/block/model/BakedQuad/m_173410_ ()Lnet/minecraft/client/renderer/texture/TextureAtlasSprite; net/minecraft/client/renderer/block/model/BakedQuad/getSprite ()Lnet/minecraft/client/renderer/texture/TextureAtlasSprite; +MD: net/minecraft/client/renderer/block/model/BlockElement/ (Lorg/joml/Vector3f;Lorg/joml/Vector3f;Ljava/util/Map;Lnet/minecraft/client/renderer/block/model/BlockElementRotation;Z)V net/minecraft/client/renderer/block/model/BlockElement/ (Lorg/joml/Vector3f;Lorg/joml/Vector3f;Ljava/util/Map;Lnet/minecraft/client/renderer/block/model/BlockElementRotation;Z)V +MD: net/minecraft/client/renderer/block/model/BlockElement/m_111319_ ()V net/minecraft/client/renderer/block/model/BlockElement/fillUvs ()V +MD: net/minecraft/client/renderer/block/model/BlockElement/m_111320_ (Lnet/minecraft/core/Direction;)[F net/minecraft/client/renderer/block/model/BlockElement/uvsByFace (Lnet/minecraft/core/Direction;)[F +MD: net/minecraft/client/renderer/block/model/BlockElement$1/ ()V net/minecraft/client/renderer/block/model/BlockElement$1/ ()V +MD: net/minecraft/client/renderer/block/model/BlockElement$Deserializer/ ()V net/minecraft/client/renderer/block/model/BlockElement$Deserializer/ ()V +MD: net/minecraft/client/renderer/block/model/BlockElement$Deserializer/deserialize (Lcom/google/gson/JsonElement;Ljava/lang/reflect/Type;Lcom/google/gson/JsonDeserializationContext;)Lnet/minecraft/client/renderer/block/model/BlockElement; net/minecraft/client/renderer/block/model/BlockElement$Deserializer/deserialize (Lcom/google/gson/JsonElement;Ljava/lang/reflect/Type;Lcom/google/gson/JsonDeserializationContext;)Lnet/minecraft/client/renderer/block/model/BlockElement; +MD: net/minecraft/client/renderer/block/model/BlockElement$Deserializer/deserialize (Lcom/google/gson/JsonElement;Ljava/lang/reflect/Type;Lcom/google/gson/JsonDeserializationContext;)Ljava/lang/Object; net/minecraft/client/renderer/block/model/BlockElement$Deserializer/deserialize (Lcom/google/gson/JsonElement;Ljava/lang/reflect/Type;Lcom/google/gson/JsonDeserializationContext;)Ljava/lang/Object; +MD: net/minecraft/client/renderer/block/model/BlockElement$Deserializer/m_111325_ (Lcom/google/gson/JsonDeserializationContext;Lcom/google/gson/JsonObject;)Ljava/util/Map; net/minecraft/client/renderer/block/model/BlockElement$Deserializer/getFaces (Lcom/google/gson/JsonDeserializationContext;Lcom/google/gson/JsonObject;)Ljava/util/Map; +MD: net/minecraft/client/renderer/block/model/BlockElement$Deserializer/m_111332_ (Lcom/google/gson/JsonObject;)Lnet/minecraft/client/renderer/block/model/BlockElementRotation; net/minecraft/client/renderer/block/model/BlockElement$Deserializer/getRotation (Lcom/google/gson/JsonObject;)Lnet/minecraft/client/renderer/block/model/BlockElementRotation; +MD: net/minecraft/client/renderer/block/model/BlockElement$Deserializer/m_111334_ (Lcom/google/gson/JsonObject;Ljava/lang/String;)Lorg/joml/Vector3f; net/minecraft/client/renderer/block/model/BlockElement$Deserializer/getVector3f (Lcom/google/gson/JsonObject;Ljava/lang/String;)Lorg/joml/Vector3f; +MD: net/minecraft/client/renderer/block/model/BlockElement$Deserializer/m_111337_ (Ljava/lang/String;)Lnet/minecraft/core/Direction; net/minecraft/client/renderer/block/model/BlockElement$Deserializer/getFacing (Ljava/lang/String;)Lnet/minecraft/core/Direction; +MD: net/minecraft/client/renderer/block/model/BlockElement$Deserializer/m_111339_ (Lcom/google/gson/JsonDeserializationContext;Lcom/google/gson/JsonObject;)Ljava/util/Map; net/minecraft/client/renderer/block/model/BlockElement$Deserializer/filterNullFromFaces (Lcom/google/gson/JsonDeserializationContext;Lcom/google/gson/JsonObject;)Ljava/util/Map; +MD: net/minecraft/client/renderer/block/model/BlockElement$Deserializer/m_111342_ (Lcom/google/gson/JsonObject;)F net/minecraft/client/renderer/block/model/BlockElement$Deserializer/getAngle (Lcom/google/gson/JsonObject;)F +MD: net/minecraft/client/renderer/block/model/BlockElement$Deserializer/m_111344_ (Lcom/google/gson/JsonObject;)Lnet/minecraft/core/Direction$Axis; net/minecraft/client/renderer/block/model/BlockElement$Deserializer/getAxis (Lcom/google/gson/JsonObject;)Lnet/minecraft/core/Direction$Axis; +MD: net/minecraft/client/renderer/block/model/BlockElement$Deserializer/m_111346_ (Lcom/google/gson/JsonObject;)Lorg/joml/Vector3f; net/minecraft/client/renderer/block/model/BlockElement$Deserializer/getFrom (Lcom/google/gson/JsonObject;)Lorg/joml/Vector3f; +MD: net/minecraft/client/renderer/block/model/BlockElement$Deserializer/m_111352_ (Lcom/google/gson/JsonObject;)Lorg/joml/Vector3f; net/minecraft/client/renderer/block/model/BlockElement$Deserializer/getTo (Lcom/google/gson/JsonObject;)Lorg/joml/Vector3f; +MD: net/minecraft/client/renderer/block/model/BlockElementFace/ (Lnet/minecraft/core/Direction;ILjava/lang/String;Lnet/minecraft/client/renderer/block/model/BlockFaceUV;)V net/minecraft/client/renderer/block/model/BlockElementFace/ (Lnet/minecraft/core/Direction;ILjava/lang/String;Lnet/minecraft/client/renderer/block/model/BlockFaceUV;)V +MD: net/minecraft/client/renderer/block/model/BlockElementFace$Deserializer/ ()V net/minecraft/client/renderer/block/model/BlockElementFace$Deserializer/ ()V +MD: net/minecraft/client/renderer/block/model/BlockElementFace$Deserializer/deserialize (Lcom/google/gson/JsonElement;Ljava/lang/reflect/Type;Lcom/google/gson/JsonDeserializationContext;)Ljava/lang/Object; net/minecraft/client/renderer/block/model/BlockElementFace$Deserializer/deserialize (Lcom/google/gson/JsonElement;Ljava/lang/reflect/Type;Lcom/google/gson/JsonDeserializationContext;)Ljava/lang/Object; +MD: net/minecraft/client/renderer/block/model/BlockElementFace$Deserializer/deserialize (Lcom/google/gson/JsonElement;Ljava/lang/reflect/Type;Lcom/google/gson/JsonDeserializationContext;)Lnet/minecraft/client/renderer/block/model/BlockElementFace; net/minecraft/client/renderer/block/model/BlockElementFace$Deserializer/deserialize (Lcom/google/gson/JsonElement;Ljava/lang/reflect/Type;Lcom/google/gson/JsonDeserializationContext;)Lnet/minecraft/client/renderer/block/model/BlockElementFace; +MD: net/minecraft/client/renderer/block/model/BlockElementFace$Deserializer/m_111368_ (Lcom/google/gson/JsonObject;)I net/minecraft/client/renderer/block/model/BlockElementFace$Deserializer/getTintIndex (Lcom/google/gson/JsonObject;)I +MD: net/minecraft/client/renderer/block/model/BlockElementFace$Deserializer/m_111370_ (Lcom/google/gson/JsonObject;)Ljava/lang/String; net/minecraft/client/renderer/block/model/BlockElementFace$Deserializer/getTexture (Lcom/google/gson/JsonObject;)Ljava/lang/String; +MD: net/minecraft/client/renderer/block/model/BlockElementFace$Deserializer/m_111372_ (Lcom/google/gson/JsonObject;)Lnet/minecraft/core/Direction; net/minecraft/client/renderer/block/model/BlockElementFace$Deserializer/getCullFacing (Lcom/google/gson/JsonObject;)Lnet/minecraft/core/Direction; +MD: net/minecraft/client/renderer/block/model/BlockElementRotation/ (Lorg/joml/Vector3f;Lnet/minecraft/core/Direction$Axis;FZ)V net/minecraft/client/renderer/block/model/BlockElementRotation/ (Lorg/joml/Vector3f;Lnet/minecraft/core/Direction$Axis;FZ)V +MD: net/minecraft/client/renderer/block/model/BlockElementRotation/equals (Ljava/lang/Object;)Z net/minecraft/client/renderer/block/model/BlockElementRotation/equals (Ljava/lang/Object;)Z +MD: net/minecraft/client/renderer/block/model/BlockElementRotation/f_111378_ ()Lorg/joml/Vector3f; net/minecraft/client/renderer/block/model/BlockElementRotation/origin ()Lorg/joml/Vector3f; +MD: net/minecraft/client/renderer/block/model/BlockElementRotation/f_111379_ ()Lnet/minecraft/core/Direction$Axis; net/minecraft/client/renderer/block/model/BlockElementRotation/axis ()Lnet/minecraft/core/Direction$Axis; +MD: net/minecraft/client/renderer/block/model/BlockElementRotation/f_111380_ ()F net/minecraft/client/renderer/block/model/BlockElementRotation/angle ()F +MD: net/minecraft/client/renderer/block/model/BlockElementRotation/f_111381_ ()Z net/minecraft/client/renderer/block/model/BlockElementRotation/rescale ()Z +MD: net/minecraft/client/renderer/block/model/BlockElementRotation/hashCode ()I net/minecraft/client/renderer/block/model/BlockElementRotation/hashCode ()I +MD: net/minecraft/client/renderer/block/model/BlockElementRotation/toString ()Ljava/lang/String; net/minecraft/client/renderer/block/model/BlockElementRotation/toString ()Ljava/lang/String; +MD: net/minecraft/client/renderer/block/model/BlockFaceUV/ ([FI)V net/minecraft/client/renderer/block/model/BlockFaceUV/ ([FI)V +MD: net/minecraft/client/renderer/block/model/BlockFaceUV/m_111392_ (I)F net/minecraft/client/renderer/block/model/BlockFaceUV/getU (I)F +MD: net/minecraft/client/renderer/block/model/BlockFaceUV/m_111394_ ([F)V net/minecraft/client/renderer/block/model/BlockFaceUV/setMissingUv ([F)V +MD: net/minecraft/client/renderer/block/model/BlockFaceUV/m_111396_ (I)F net/minecraft/client/renderer/block/model/BlockFaceUV/getV (I)F +MD: net/minecraft/client/renderer/block/model/BlockFaceUV/m_111398_ (I)I net/minecraft/client/renderer/block/model/BlockFaceUV/getReverseIndex (I)I +MD: net/minecraft/client/renderer/block/model/BlockFaceUV/m_111400_ (I)I net/minecraft/client/renderer/block/model/BlockFaceUV/getShiftedIndex (I)I +MD: net/minecraft/client/renderer/block/model/BlockFaceUV$Deserializer/ ()V net/minecraft/client/renderer/block/model/BlockFaceUV$Deserializer/ ()V +MD: net/minecraft/client/renderer/block/model/BlockFaceUV$Deserializer/deserialize (Lcom/google/gson/JsonElement;Ljava/lang/reflect/Type;Lcom/google/gson/JsonDeserializationContext;)Ljava/lang/Object; net/minecraft/client/renderer/block/model/BlockFaceUV$Deserializer/deserialize (Lcom/google/gson/JsonElement;Ljava/lang/reflect/Type;Lcom/google/gson/JsonDeserializationContext;)Ljava/lang/Object; +MD: net/minecraft/client/renderer/block/model/BlockFaceUV$Deserializer/deserialize (Lcom/google/gson/JsonElement;Ljava/lang/reflect/Type;Lcom/google/gson/JsonDeserializationContext;)Lnet/minecraft/client/renderer/block/model/BlockFaceUV; net/minecraft/client/renderer/block/model/BlockFaceUV$Deserializer/deserialize (Lcom/google/gson/JsonElement;Ljava/lang/reflect/Type;Lcom/google/gson/JsonDeserializationContext;)Lnet/minecraft/client/renderer/block/model/BlockFaceUV; +MD: net/minecraft/client/renderer/block/model/BlockFaceUV$Deserializer/m_111407_ (Lcom/google/gson/JsonObject;)I net/minecraft/client/renderer/block/model/BlockFaceUV$Deserializer/getRotation (Lcom/google/gson/JsonObject;)I +MD: net/minecraft/client/renderer/block/model/BlockFaceUV$Deserializer/m_111409_ (Lcom/google/gson/JsonObject;)[F net/minecraft/client/renderer/block/model/BlockFaceUV$Deserializer/getUVs (Lcom/google/gson/JsonObject;)[F +MD: net/minecraft/client/renderer/block/model/BlockModel/ ()V net/minecraft/client/renderer/block/model/BlockModel/ ()V +MD: net/minecraft/client/renderer/block/model/BlockModel/ (Lnet/minecraft/resources/ResourceLocation;Ljava/util/List;Ljava/util/Map;Ljava/lang/Boolean;Lnet/minecraft/client/renderer/block/model/BlockModel$GuiLight;Lnet/minecraft/client/renderer/block/model/ItemTransforms;Ljava/util/List;)V net/minecraft/client/renderer/block/model/BlockModel/ (Lnet/minecraft/resources/ResourceLocation;Ljava/util/List;Ljava/util/Map;Ljava/lang/Boolean;Lnet/minecraft/client/renderer/block/model/BlockModel$GuiLight;Lnet/minecraft/client/renderer/block/model/ItemTransforms;Ljava/util/List;)V +MD: net/minecraft/client/renderer/block/model/BlockModel/m_111436_ ()Ljava/util/List; net/minecraft/client/renderer/block/model/BlockModel/getElements ()Ljava/util/List; +MD: net/minecraft/client/renderer/block/model/BlockModel/m_111437_ (Lnet/minecraft/client/renderer/block/model/BlockElement;Lnet/minecraft/client/renderer/block/model/BlockElementFace;Lnet/minecraft/client/renderer/texture/TextureAtlasSprite;Lnet/minecraft/core/Direction;Lnet/minecraft/client/resources/model/ModelState;Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/client/renderer/block/model/BakedQuad; net/minecraft/client/renderer/block/model/BlockModel/bakeFace (Lnet/minecraft/client/renderer/block/model/BlockElement;Lnet/minecraft/client/renderer/block/model/BlockElementFace;Lnet/minecraft/client/renderer/texture/TextureAtlasSprite;Lnet/minecraft/core/Direction;Lnet/minecraft/client/resources/model/ModelState;Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/client/renderer/block/model/BakedQuad; +MD: net/minecraft/client/renderer/block/model/BlockModel/m_111449_ (Lnet/minecraft/client/resources/model/ModelBaker;Lnet/minecraft/client/renderer/block/model/BlockModel;Ljava/util/function/Function;Lnet/minecraft/client/resources/model/ModelState;Lnet/minecraft/resources/ResourceLocation;Z)Lnet/minecraft/client/resources/model/BakedModel; net/minecraft/client/renderer/block/model/BlockModel/bake (Lnet/minecraft/client/resources/model/ModelBaker;Lnet/minecraft/client/renderer/block/model/BlockModel;Ljava/util/function/Function;Lnet/minecraft/client/resources/model/ModelState;Lnet/minecraft/resources/ResourceLocation;Z)Lnet/minecraft/client/resources/model/BakedModel; +MD: net/minecraft/client/renderer/block/model/BlockModel/m_111461_ (Ljava/io/Reader;)Lnet/minecraft/client/renderer/block/model/BlockModel; net/minecraft/client/renderer/block/model/BlockModel/fromStream (Ljava/io/Reader;)Lnet/minecraft/client/renderer/block/model/BlockModel; +MD: net/minecraft/client/renderer/block/model/BlockModel/m_111463_ (Ljava/lang/String;)Lnet/minecraft/client/renderer/block/model/BlockModel; net/minecraft/client/renderer/block/model/BlockModel/fromString (Ljava/lang/String;)Lnet/minecraft/client/renderer/block/model/BlockModel; +MD: net/minecraft/client/renderer/block/model/BlockModel/m_111476_ ()Z net/minecraft/client/renderer/block/model/BlockModel/hasAmbientOcclusion ()Z +MD: net/minecraft/client/renderer/block/model/BlockModel/m_111477_ (Ljava/lang/String;)Z net/minecraft/client/renderer/block/model/BlockModel/hasTexture (Ljava/lang/String;)Z +MD: net/minecraft/client/renderer/block/model/BlockModel/m_111479_ ()Lnet/minecraft/client/renderer/block/model/BlockModel$GuiLight; net/minecraft/client/renderer/block/model/BlockModel/getGuiLight ()Lnet/minecraft/client/renderer/block/model/BlockModel$GuiLight; +MD: net/minecraft/client/renderer/block/model/BlockModel/m_111480_ (Ljava/lang/String;)Lnet/minecraft/client/resources/model/Material; net/minecraft/client/renderer/block/model/BlockModel/getMaterial (Ljava/lang/String;)Lnet/minecraft/client/resources/model/Material; +MD: net/minecraft/client/renderer/block/model/BlockModel/m_111484_ ()Ljava/util/List; net/minecraft/client/renderer/block/model/BlockModel/getOverrides ()Ljava/util/List; +MD: net/minecraft/client/renderer/block/model/BlockModel/m_111485_ (Ljava/lang/String;)Lcom/mojang/datafixers/util/Either; net/minecraft/client/renderer/block/model/BlockModel/findTextureEntry (Ljava/lang/String;)Lcom/mojang/datafixers/util/Either; +MD: net/minecraft/client/renderer/block/model/BlockModel/m_111488_ (Ljava/lang/String;)Z net/minecraft/client/renderer/block/model/BlockModel/isTextureReference (Ljava/lang/String;)Z +MD: net/minecraft/client/renderer/block/model/BlockModel/m_111490_ ()Lnet/minecraft/client/renderer/block/model/BlockModel; net/minecraft/client/renderer/block/model/BlockModel/getRootModel ()Lnet/minecraft/client/renderer/block/model/BlockModel; +MD: net/minecraft/client/renderer/block/model/BlockModel/m_111491_ ()Lnet/minecraft/client/renderer/block/model/ItemTransforms; net/minecraft/client/renderer/block/model/BlockModel/getTransforms ()Lnet/minecraft/client/renderer/block/model/ItemTransforms; +MD: net/minecraft/client/renderer/block/model/BlockModel/m_173420_ ()Z net/minecraft/client/renderer/block/model/BlockModel/isResolved ()Z +MD: net/minecraft/client/renderer/block/model/BlockModel/m_244730_ (Ljava/util/function/Function;Lnet/minecraft/client/renderer/block/model/ItemOverride;)V net/minecraft/client/renderer/block/model/BlockModel/lambda$resolveParents$0 (Ljava/util/function/Function;Lnet/minecraft/client/renderer/block/model/ItemOverride;)V +MD: net/minecraft/client/renderer/block/model/BlockModel/m_246736_ (Lnet/minecraft/client/resources/model/ModelBaker;Lnet/minecraft/client/renderer/block/model/BlockModel;)Lnet/minecraft/client/renderer/block/model/ItemOverrides; net/minecraft/client/renderer/block/model/BlockModel/getItemOverrides (Lnet/minecraft/client/resources/model/ModelBaker;Lnet/minecraft/client/renderer/block/model/BlockModel;)Lnet/minecraft/client/renderer/block/model/ItemOverrides; +MD: net/minecraft/client/renderer/block/model/BlockModel/m_269178_ (Lnet/minecraft/world/item/ItemDisplayContext;)Lnet/minecraft/client/renderer/block/model/ItemTransform; net/minecraft/client/renderer/block/model/BlockModel/getTransform (Lnet/minecraft/world/item/ItemDisplayContext;)Lnet/minecraft/client/renderer/block/model/ItemTransform; +MD: net/minecraft/client/renderer/block/model/BlockModel/m_5500_ (Ljava/util/function/Function;)V net/minecraft/client/renderer/block/model/BlockModel/resolveParents (Ljava/util/function/Function;)V +MD: net/minecraft/client/renderer/block/model/BlockModel/m_7611_ (Lnet/minecraft/client/resources/model/ModelBaker;Ljava/util/function/Function;Lnet/minecraft/client/resources/model/ModelState;Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/client/resources/model/BakedModel; net/minecraft/client/renderer/block/model/BlockModel/bake (Lnet/minecraft/client/resources/model/ModelBaker;Ljava/util/function/Function;Lnet/minecraft/client/resources/model/ModelState;Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/client/resources/model/BakedModel; +MD: net/minecraft/client/renderer/block/model/BlockModel/m_7970_ ()Ljava/util/Collection; net/minecraft/client/renderer/block/model/BlockModel/getDependencies ()Ljava/util/Collection; +MD: net/minecraft/client/renderer/block/model/BlockModel/toString ()Ljava/lang/String; net/minecraft/client/renderer/block/model/BlockModel/toString ()Ljava/lang/String; +MD: net/minecraft/client/renderer/block/model/BlockModel$Deserializer/ ()V net/minecraft/client/renderer/block/model/BlockModel$Deserializer/ ()V +MD: net/minecraft/client/renderer/block/model/BlockModel$Deserializer/deserialize (Lcom/google/gson/JsonElement;Ljava/lang/reflect/Type;Lcom/google/gson/JsonDeserializationContext;)Ljava/lang/Object; net/minecraft/client/renderer/block/model/BlockModel$Deserializer/deserialize (Lcom/google/gson/JsonElement;Ljava/lang/reflect/Type;Lcom/google/gson/JsonDeserializationContext;)Ljava/lang/Object; +MD: net/minecraft/client/renderer/block/model/BlockModel$Deserializer/deserialize (Lcom/google/gson/JsonElement;Ljava/lang/reflect/Type;Lcom/google/gson/JsonDeserializationContext;)Lnet/minecraft/client/renderer/block/model/BlockModel; net/minecraft/client/renderer/block/model/BlockModel$Deserializer/deserialize (Lcom/google/gson/JsonElement;Ljava/lang/reflect/Type;Lcom/google/gson/JsonDeserializationContext;)Lnet/minecraft/client/renderer/block/model/BlockModel; +MD: net/minecraft/client/renderer/block/model/BlockModel$Deserializer/m_111494_ (Lcom/google/gson/JsonDeserializationContext;Lcom/google/gson/JsonObject;)Ljava/util/List; net/minecraft/client/renderer/block/model/BlockModel$Deserializer/getOverrides (Lcom/google/gson/JsonDeserializationContext;Lcom/google/gson/JsonObject;)Ljava/util/List; +MD: net/minecraft/client/renderer/block/model/BlockModel$Deserializer/m_111503_ (Lnet/minecraft/resources/ResourceLocation;Ljava/lang/String;)Lcom/mojang/datafixers/util/Either; net/minecraft/client/renderer/block/model/BlockModel$Deserializer/parseTextureLocationOrReference (Lnet/minecraft/resources/ResourceLocation;Ljava/lang/String;)Lcom/mojang/datafixers/util/Either; +MD: net/minecraft/client/renderer/block/model/BlockModel$Deserializer/m_111506_ (Lcom/google/gson/JsonDeserializationContext;Lcom/google/gson/JsonObject;)Ljava/util/List; net/minecraft/client/renderer/block/model/BlockModel$Deserializer/getElements (Lcom/google/gson/JsonDeserializationContext;Lcom/google/gson/JsonObject;)Ljava/util/List; +MD: net/minecraft/client/renderer/block/model/BlockModel$Deserializer/m_111509_ (Lcom/google/gson/JsonObject;)Ljava/util/Map; net/minecraft/client/renderer/block/model/BlockModel$Deserializer/getTextureMap (Lcom/google/gson/JsonObject;)Ljava/util/Map; +MD: net/minecraft/client/renderer/block/model/BlockModel$Deserializer/m_111511_ (Lcom/google/gson/JsonObject;)Ljava/lang/String; net/minecraft/client/renderer/block/model/BlockModel$Deserializer/getParentName (Lcom/google/gson/JsonObject;)Ljava/lang/String; +MD: net/minecraft/client/renderer/block/model/BlockModel$Deserializer/m_271865_ (Lcom/google/gson/JsonObject;)Ljava/lang/Boolean; net/minecraft/client/renderer/block/model/BlockModel$Deserializer/getAmbientOcclusion (Lcom/google/gson/JsonObject;)Ljava/lang/Boolean; +MD: net/minecraft/client/renderer/block/model/BlockModel$GuiLight/ ()V net/minecraft/client/renderer/block/model/BlockModel$GuiLight/ ()V +MD: net/minecraft/client/renderer/block/model/BlockModel$GuiLight/ (Ljava/lang/String;ILjava/lang/String;)V net/minecraft/client/renderer/block/model/BlockModel$GuiLight/ (Ljava/lang/String;ILjava/lang/String;)V +MD: net/minecraft/client/renderer/block/model/BlockModel$GuiLight/m_111526_ ()Z net/minecraft/client/renderer/block/model/BlockModel$GuiLight/lightLikeBlock ()Z +MD: net/minecraft/client/renderer/block/model/BlockModel$GuiLight/m_111527_ (Ljava/lang/String;)Lnet/minecraft/client/renderer/block/model/BlockModel$GuiLight; net/minecraft/client/renderer/block/model/BlockModel$GuiLight/getByName (Ljava/lang/String;)Lnet/minecraft/client/renderer/block/model/BlockModel$GuiLight; +MD: net/minecraft/client/renderer/block/model/BlockModel$GuiLight/m_173422_ ()[Lnet/minecraft/client/renderer/block/model/BlockModel$GuiLight; net/minecraft/client/renderer/block/model/BlockModel$GuiLight/$values ()[Lnet/minecraft/client/renderer/block/model/BlockModel$GuiLight; +MD: net/minecraft/client/renderer/block/model/BlockModel$GuiLight/valueOf (Ljava/lang/String;)Lnet/minecraft/client/renderer/block/model/BlockModel$GuiLight; net/minecraft/client/renderer/block/model/BlockModel$GuiLight/valueOf (Ljava/lang/String;)Lnet/minecraft/client/renderer/block/model/BlockModel$GuiLight; +MD: net/minecraft/client/renderer/block/model/BlockModel$GuiLight/values ()[Lnet/minecraft/client/renderer/block/model/BlockModel$GuiLight; net/minecraft/client/renderer/block/model/BlockModel$GuiLight/values ()[Lnet/minecraft/client/renderer/block/model/BlockModel$GuiLight; +MD: net/minecraft/client/renderer/block/model/BlockModel$LoopException/ (Ljava/lang/String;)V net/minecraft/client/renderer/block/model/BlockModel$LoopException/ (Ljava/lang/String;)V +MD: net/minecraft/client/renderer/block/model/BlockModelDefinition/ (Ljava/util/Map;Lnet/minecraft/client/renderer/block/model/multipart/MultiPart;)V net/minecraft/client/renderer/block/model/BlockModelDefinition/ (Ljava/util/Map;Lnet/minecraft/client/renderer/block/model/multipart/MultiPart;)V +MD: net/minecraft/client/renderer/block/model/BlockModelDefinition/ (Ljava/util/List;)V net/minecraft/client/renderer/block/model/BlockModelDefinition/ (Ljava/util/List;)V +MD: net/minecraft/client/renderer/block/model/BlockModelDefinition/equals (Ljava/lang/Object;)Z net/minecraft/client/renderer/block/model/BlockModelDefinition/equals (Ljava/lang/Object;)Z +MD: net/minecraft/client/renderer/block/model/BlockModelDefinition/hashCode ()I net/minecraft/client/renderer/block/model/BlockModelDefinition/hashCode ()I +MD: net/minecraft/client/renderer/block/model/BlockModelDefinition/m_111539_ ()Ljava/util/Map; net/minecraft/client/renderer/block/model/BlockModelDefinition/getVariants ()Ljava/util/Map; +MD: net/minecraft/client/renderer/block/model/BlockModelDefinition/m_111540_ (Lnet/minecraft/client/renderer/block/model/BlockModelDefinition$Context;Ljava/io/Reader;)Lnet/minecraft/client/renderer/block/model/BlockModelDefinition; net/minecraft/client/renderer/block/model/BlockModelDefinition/fromStream (Lnet/minecraft/client/renderer/block/model/BlockModelDefinition$Context;Ljava/io/Reader;)Lnet/minecraft/client/renderer/block/model/BlockModelDefinition; +MD: net/minecraft/client/renderer/block/model/BlockModelDefinition/m_111543_ ()Z net/minecraft/client/renderer/block/model/BlockModelDefinition/isMultiPart ()Z +MD: net/minecraft/client/renderer/block/model/BlockModelDefinition/m_111544_ ()Lnet/minecraft/client/renderer/block/model/multipart/MultiPart; net/minecraft/client/renderer/block/model/BlockModelDefinition/getMultiPart ()Lnet/minecraft/client/renderer/block/model/multipart/MultiPart; +MD: net/minecraft/client/renderer/block/model/BlockModelDefinition/m_173425_ (Ljava/lang/String;)Z net/minecraft/client/renderer/block/model/BlockModelDefinition/hasVariant (Ljava/lang/String;)Z +MD: net/minecraft/client/renderer/block/model/BlockModelDefinition/m_173427_ ()Ljava/util/Set; net/minecraft/client/renderer/block/model/BlockModelDefinition/getMultiVariants ()Ljava/util/Set; +MD: net/minecraft/client/renderer/block/model/BlockModelDefinition/m_173428_ (Ljava/lang/String;)Lnet/minecraft/client/renderer/block/model/MultiVariant; net/minecraft/client/renderer/block/model/BlockModelDefinition/getVariant (Ljava/lang/String;)Lnet/minecraft/client/renderer/block/model/MultiVariant; +MD: net/minecraft/client/renderer/block/model/BlockModelDefinition/m_247114_ (Lnet/minecraft/client/renderer/block/model/BlockModelDefinition$Context;Lcom/google/gson/JsonElement;)Lnet/minecraft/client/renderer/block/model/BlockModelDefinition; net/minecraft/client/renderer/block/model/BlockModelDefinition/fromJsonElement (Lnet/minecraft/client/renderer/block/model/BlockModelDefinition$Context;Lcom/google/gson/JsonElement;)Lnet/minecraft/client/renderer/block/model/BlockModelDefinition; +MD: net/minecraft/client/renderer/block/model/BlockModelDefinition$Context/ ()V net/minecraft/client/renderer/block/model/BlockModelDefinition$Context/ ()V +MD: net/minecraft/client/renderer/block/model/BlockModelDefinition$Context/m_111551_ ()Lnet/minecraft/world/level/block/state/StateDefinition; net/minecraft/client/renderer/block/model/BlockModelDefinition$Context/getDefinition ()Lnet/minecraft/world/level/block/state/StateDefinition; +MD: net/minecraft/client/renderer/block/model/BlockModelDefinition$Context/m_111552_ (Lnet/minecraft/world/level/block/state/StateDefinition;)V net/minecraft/client/renderer/block/model/BlockModelDefinition$Context/setDefinition (Lnet/minecraft/world/level/block/state/StateDefinition;)V +MD: net/minecraft/client/renderer/block/model/BlockModelDefinition$Deserializer/ ()V net/minecraft/client/renderer/block/model/BlockModelDefinition$Deserializer/ ()V +MD: net/minecraft/client/renderer/block/model/BlockModelDefinition$Deserializer/deserialize (Lcom/google/gson/JsonElement;Ljava/lang/reflect/Type;Lcom/google/gson/JsonDeserializationContext;)Lnet/minecraft/client/renderer/block/model/BlockModelDefinition; net/minecraft/client/renderer/block/model/BlockModelDefinition$Deserializer/deserialize (Lcom/google/gson/JsonElement;Ljava/lang/reflect/Type;Lcom/google/gson/JsonDeserializationContext;)Lnet/minecraft/client/renderer/block/model/BlockModelDefinition; +MD: net/minecraft/client/renderer/block/model/BlockModelDefinition$Deserializer/deserialize (Lcom/google/gson/JsonElement;Ljava/lang/reflect/Type;Lcom/google/gson/JsonDeserializationContext;)Ljava/lang/Object; net/minecraft/client/renderer/block/model/BlockModelDefinition$Deserializer/deserialize (Lcom/google/gson/JsonElement;Ljava/lang/reflect/Type;Lcom/google/gson/JsonDeserializationContext;)Ljava/lang/Object; +MD: net/minecraft/client/renderer/block/model/BlockModelDefinition$Deserializer/m_111555_ (Lcom/google/gson/JsonDeserializationContext;Lcom/google/gson/JsonObject;)Ljava/util/Map; net/minecraft/client/renderer/block/model/BlockModelDefinition$Deserializer/getVariants (Lcom/google/gson/JsonDeserializationContext;Lcom/google/gson/JsonObject;)Ljava/util/Map; +MD: net/minecraft/client/renderer/block/model/BlockModelDefinition$Deserializer/m_111562_ (Lcom/google/gson/JsonDeserializationContext;Lcom/google/gson/JsonObject;)Lnet/minecraft/client/renderer/block/model/multipart/MultiPart; net/minecraft/client/renderer/block/model/BlockModelDefinition$Deserializer/getMultiPart (Lcom/google/gson/JsonDeserializationContext;Lcom/google/gson/JsonObject;)Lnet/minecraft/client/renderer/block/model/multipart/MultiPart; +MD: net/minecraft/client/renderer/block/model/BlockModelDefinition$MissingVariantException/ (Lnet/minecraft/client/renderer/block/model/BlockModelDefinition;)V net/minecraft/client/renderer/block/model/BlockModelDefinition$MissingVariantException/ (Lnet/minecraft/client/renderer/block/model/BlockModelDefinition;)V +MD: net/minecraft/client/renderer/block/model/FaceBakery/ ()V net/minecraft/client/renderer/block/model/FaceBakery/ ()V +MD: net/minecraft/client/renderer/block/model/FaceBakery/ ()V net/minecraft/client/renderer/block/model/FaceBakery/ ()V +MD: net/minecraft/client/renderer/block/model/FaceBakery/m_111573_ (Lnet/minecraft/client/renderer/block/model/BlockFaceUV;Lnet/minecraft/client/renderer/texture/TextureAtlasSprite;Lnet/minecraft/core/Direction;[FLcom/mojang/math/Transformation;Lnet/minecraft/client/renderer/block/model/BlockElementRotation;Z)[I net/minecraft/client/renderer/block/model/FaceBakery/makeVertices (Lnet/minecraft/client/renderer/block/model/BlockFaceUV;Lnet/minecraft/client/renderer/texture/TextureAtlasSprite;Lnet/minecraft/core/Direction;[FLcom/mojang/math/Transformation;Lnet/minecraft/client/renderer/block/model/BlockElementRotation;Z)[I +MD: net/minecraft/client/renderer/block/model/FaceBakery/m_111581_ (Lnet/minecraft/client/renderer/block/model/BlockFaceUV;Lnet/minecraft/core/Direction;Lcom/mojang/math/Transformation;Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/client/renderer/block/model/BlockFaceUV; net/minecraft/client/renderer/block/model/FaceBakery/recomputeUVs (Lnet/minecraft/client/renderer/block/model/BlockFaceUV;Lnet/minecraft/core/Direction;Lcom/mojang/math/Transformation;Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/client/renderer/block/model/BlockFaceUV; +MD: net/minecraft/client/renderer/block/model/FaceBakery/m_111592_ (Lorg/joml/Vector3f;Lorg/joml/Vector3f;)[F net/minecraft/client/renderer/block/model/FaceBakery/setupShape (Lorg/joml/Vector3f;Lorg/joml/Vector3f;)[F +MD: net/minecraft/client/renderer/block/model/FaceBakery/m_111600_ (Lorg/joml/Vector3f;Lorg/joml/Vector3f;Lnet/minecraft/client/renderer/block/model/BlockElementFace;Lnet/minecraft/client/renderer/texture/TextureAtlasSprite;Lnet/minecraft/core/Direction;Lnet/minecraft/client/resources/model/ModelState;Lnet/minecraft/client/renderer/block/model/BlockElementRotation;ZLnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/client/renderer/block/model/BakedQuad; net/minecraft/client/renderer/block/model/FaceBakery/bakeQuad (Lorg/joml/Vector3f;Lorg/joml/Vector3f;Lnet/minecraft/client/renderer/block/model/BlockElementFace;Lnet/minecraft/client/renderer/texture/TextureAtlasSprite;Lnet/minecraft/core/Direction;Lnet/minecraft/client/resources/model/ModelState;Lnet/minecraft/client/renderer/block/model/BlockElementRotation;ZLnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/client/renderer/block/model/BakedQuad; +MD: net/minecraft/client/renderer/block/model/FaceBakery/m_111610_ (Lnet/minecraft/resources/ResourceLocation;)Ljava/lang/String; net/minecraft/client/renderer/block/model/FaceBakery/lambda$recomputeUVs$0 (Lnet/minecraft/resources/ResourceLocation;)Ljava/lang/String; +MD: net/minecraft/client/renderer/block/model/FaceBakery/m_111612_ ([I)Lnet/minecraft/core/Direction; net/minecraft/client/renderer/block/model/FaceBakery/calculateFacing ([I)Lnet/minecraft/core/Direction; +MD: net/minecraft/client/renderer/block/model/FaceBakery/m_111614_ ([IILorg/joml/Vector3f;Lnet/minecraft/client/renderer/texture/TextureAtlasSprite;Lnet/minecraft/client/renderer/block/model/BlockFaceUV;)V net/minecraft/client/renderer/block/model/FaceBakery/fillVertex ([IILorg/joml/Vector3f;Lnet/minecraft/client/renderer/texture/TextureAtlasSprite;Lnet/minecraft/client/renderer/block/model/BlockFaceUV;)V +MD: net/minecraft/client/renderer/block/model/FaceBakery/m_111620_ ([IILnet/minecraft/core/Direction;Lnet/minecraft/client/renderer/block/model/BlockFaceUV;[FLnet/minecraft/client/renderer/texture/TextureAtlasSprite;Lcom/mojang/math/Transformation;Lnet/minecraft/client/renderer/block/model/BlockElementRotation;Z)V net/minecraft/client/renderer/block/model/FaceBakery/bakeVertex ([IILnet/minecraft/core/Direction;Lnet/minecraft/client/renderer/block/model/BlockFaceUV;[FLnet/minecraft/client/renderer/texture/TextureAtlasSprite;Lcom/mojang/math/Transformation;Lnet/minecraft/client/renderer/block/model/BlockElementRotation;Z)V +MD: net/minecraft/client/renderer/block/model/FaceBakery/m_111630_ ([ILnet/minecraft/core/Direction;)V net/minecraft/client/renderer/block/model/FaceBakery/recalculateWinding ([ILnet/minecraft/core/Direction;)V +MD: net/minecraft/client/renderer/block/model/FaceBakery/m_252821_ (Lorg/joml/Vector3f;Lorg/joml/Vector3f;Lorg/joml/Matrix4f;Lorg/joml/Vector3f;)V net/minecraft/client/renderer/block/model/FaceBakery/rotateVertexBy (Lorg/joml/Vector3f;Lorg/joml/Vector3f;Lorg/joml/Matrix4f;Lorg/joml/Vector3f;)V +MD: net/minecraft/client/renderer/block/model/FaceBakery/m_252985_ (Lorg/joml/Vector3f;Lnet/minecraft/client/renderer/block/model/BlockElementRotation;)V net/minecraft/client/renderer/block/model/FaceBakery/applyElementRotation (Lorg/joml/Vector3f;Lnet/minecraft/client/renderer/block/model/BlockElementRotation;)V +MD: net/minecraft/client/renderer/block/model/FaceBakery/m_253132_ (Lorg/joml/Vector3f;Lcom/mojang/math/Transformation;)V net/minecraft/client/renderer/block/model/FaceBakery/applyModelRotation (Lorg/joml/Vector3f;Lcom/mojang/math/Transformation;)V +MD: net/minecraft/client/renderer/block/model/FaceBakery$1/ ()V net/minecraft/client/renderer/block/model/FaceBakery$1/ ()V +MD: net/minecraft/client/renderer/block/model/ItemModelGenerator/ ()V net/minecraft/client/renderer/block/model/ItemModelGenerator/ ()V +MD: net/minecraft/client/renderer/block/model/ItemModelGenerator/ ()V net/minecraft/client/renderer/block/model/ItemModelGenerator/ ()V +MD: net/minecraft/client/renderer/block/model/ItemModelGenerator/m_111638_ (ILjava/lang/String;Lnet/minecraft/client/renderer/texture/SpriteContents;)Ljava/util/List; net/minecraft/client/renderer/block/model/ItemModelGenerator/processFrames (ILjava/lang/String;Lnet/minecraft/client/renderer/texture/SpriteContents;)Ljava/util/List; +MD: net/minecraft/client/renderer/block/model/ItemModelGenerator/m_111661_ (Lnet/minecraft/client/renderer/texture/SpriteContents;Ljava/lang/String;I)Ljava/util/List; net/minecraft/client/renderer/block/model/ItemModelGenerator/createSideElements (Lnet/minecraft/client/renderer/texture/SpriteContents;Ljava/lang/String;I)Ljava/util/List; +MD: net/minecraft/client/renderer/block/model/ItemModelGenerator/m_111665_ (Ljava/util/List;Lnet/minecraft/client/renderer/block/model/ItemModelGenerator$SpanFacing;II)V net/minecraft/client/renderer/block/model/ItemModelGenerator/createOrExpandSpan (Ljava/util/List;Lnet/minecraft/client/renderer/block/model/ItemModelGenerator$SpanFacing;II)V +MD: net/minecraft/client/renderer/block/model/ItemModelGenerator/m_111670_ (Ljava/util/function/Function;Lnet/minecraft/client/renderer/block/model/BlockModel;)Lnet/minecraft/client/renderer/block/model/BlockModel; net/minecraft/client/renderer/block/model/ItemModelGenerator/generateBlockModel (Ljava/util/function/Function;Lnet/minecraft/client/renderer/block/model/BlockModel;)Lnet/minecraft/client/renderer/block/model/BlockModel; +MD: net/minecraft/client/renderer/block/model/ItemModelGenerator/m_173439_ (IILnet/minecraft/client/renderer/texture/SpriteContents;Ljava/util/List;I)V net/minecraft/client/renderer/block/model/ItemModelGenerator/lambda$getSpans$0 (IILnet/minecraft/client/renderer/texture/SpriteContents;Ljava/util/List;I)V +MD: net/minecraft/client/renderer/block/model/ItemModelGenerator/m_245924_ (Lnet/minecraft/client/renderer/texture/SpriteContents;IIIII)Z net/minecraft/client/renderer/block/model/ItemModelGenerator/isTransparent (Lnet/minecraft/client/renderer/texture/SpriteContents;IIIII)Z +MD: net/minecraft/client/renderer/block/model/ItemModelGenerator/m_246249_ (Lnet/minecraft/client/renderer/block/model/ItemModelGenerator$SpanFacing;Ljava/util/List;Lnet/minecraft/client/renderer/texture/SpriteContents;IIIIIZ)V net/minecraft/client/renderer/block/model/ItemModelGenerator/checkTransition (Lnet/minecraft/client/renderer/block/model/ItemModelGenerator$SpanFacing;Ljava/util/List;Lnet/minecraft/client/renderer/texture/SpriteContents;IIIIIZ)V +MD: net/minecraft/client/renderer/block/model/ItemModelGenerator/m_247383_ (Lnet/minecraft/client/renderer/texture/SpriteContents;)Ljava/util/List; net/minecraft/client/renderer/block/model/ItemModelGenerator/getSpans (Lnet/minecraft/client/renderer/texture/SpriteContents;)Ljava/util/List; +MD: net/minecraft/client/renderer/block/model/ItemModelGenerator$1/ ()V net/minecraft/client/renderer/block/model/ItemModelGenerator$1/ ()V +MD: net/minecraft/client/renderer/block/model/ItemModelGenerator$Span/ (Lnet/minecraft/client/renderer/block/model/ItemModelGenerator$SpanFacing;II)V net/minecraft/client/renderer/block/model/ItemModelGenerator$Span/ (Lnet/minecraft/client/renderer/block/model/ItemModelGenerator$SpanFacing;II)V +MD: net/minecraft/client/renderer/block/model/ItemModelGenerator$Span/m_111683_ ()Lnet/minecraft/client/renderer/block/model/ItemModelGenerator$SpanFacing; net/minecraft/client/renderer/block/model/ItemModelGenerator$Span/getFacing ()Lnet/minecraft/client/renderer/block/model/ItemModelGenerator$SpanFacing; +MD: net/minecraft/client/renderer/block/model/ItemModelGenerator$Span/m_111684_ (I)V net/minecraft/client/renderer/block/model/ItemModelGenerator$Span/expand (I)V +MD: net/minecraft/client/renderer/block/model/ItemModelGenerator$Span/m_111686_ ()I net/minecraft/client/renderer/block/model/ItemModelGenerator$Span/getMin ()I +MD: net/minecraft/client/renderer/block/model/ItemModelGenerator$Span/m_111687_ ()I net/minecraft/client/renderer/block/model/ItemModelGenerator$Span/getMax ()I +MD: net/minecraft/client/renderer/block/model/ItemModelGenerator$Span/m_111688_ ()I net/minecraft/client/renderer/block/model/ItemModelGenerator$Span/getAnchor ()I +MD: net/minecraft/client/renderer/block/model/ItemModelGenerator$SpanFacing/ ()V net/minecraft/client/renderer/block/model/ItemModelGenerator$SpanFacing/ ()V +MD: net/minecraft/client/renderer/block/model/ItemModelGenerator$SpanFacing/ (Ljava/lang/String;ILnet/minecraft/core/Direction;II)V net/minecraft/client/renderer/block/model/ItemModelGenerator$SpanFacing/ (Ljava/lang/String;ILnet/minecraft/core/Direction;II)V +MD: net/minecraft/client/renderer/block/model/ItemModelGenerator$SpanFacing/m_111704_ ()Lnet/minecraft/core/Direction; net/minecraft/client/renderer/block/model/ItemModelGenerator$SpanFacing/getDirection ()Lnet/minecraft/core/Direction; +MD: net/minecraft/client/renderer/block/model/ItemModelGenerator$SpanFacing/m_111707_ ()I net/minecraft/client/renderer/block/model/ItemModelGenerator$SpanFacing/getXOffset ()I +MD: net/minecraft/client/renderer/block/model/ItemModelGenerator$SpanFacing/m_111708_ ()I net/minecraft/client/renderer/block/model/ItemModelGenerator$SpanFacing/getYOffset ()I +MD: net/minecraft/client/renderer/block/model/ItemModelGenerator$SpanFacing/m_111709_ ()Z net/minecraft/client/renderer/block/model/ItemModelGenerator$SpanFacing/isHorizontal ()Z +MD: net/minecraft/client/renderer/block/model/ItemModelGenerator$SpanFacing/m_173445_ ()[Lnet/minecraft/client/renderer/block/model/ItemModelGenerator$SpanFacing; net/minecraft/client/renderer/block/model/ItemModelGenerator$SpanFacing/$values ()[Lnet/minecraft/client/renderer/block/model/ItemModelGenerator$SpanFacing; +MD: net/minecraft/client/renderer/block/model/ItemModelGenerator$SpanFacing/valueOf (Ljava/lang/String;)Lnet/minecraft/client/renderer/block/model/ItemModelGenerator$SpanFacing; net/minecraft/client/renderer/block/model/ItemModelGenerator$SpanFacing/valueOf (Ljava/lang/String;)Lnet/minecraft/client/renderer/block/model/ItemModelGenerator$SpanFacing; +MD: net/minecraft/client/renderer/block/model/ItemModelGenerator$SpanFacing/values ()[Lnet/minecraft/client/renderer/block/model/ItemModelGenerator$SpanFacing; net/minecraft/client/renderer/block/model/ItemModelGenerator$SpanFacing/values ()[Lnet/minecraft/client/renderer/block/model/ItemModelGenerator$SpanFacing; +MD: net/minecraft/client/renderer/block/model/ItemOverride/ (Lnet/minecraft/resources/ResourceLocation;Ljava/util/List;)V net/minecraft/client/renderer/block/model/ItemOverride/ (Lnet/minecraft/resources/ResourceLocation;Ljava/util/List;)V +MD: net/minecraft/client/renderer/block/model/ItemOverride/m_111718_ ()Lnet/minecraft/resources/ResourceLocation; net/minecraft/client/renderer/block/model/ItemOverride/getModel ()Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/client/renderer/block/model/ItemOverride/m_173449_ ()Ljava/util/stream/Stream; net/minecraft/client/renderer/block/model/ItemOverride/getPredicates ()Ljava/util/stream/Stream; +MD: net/minecraft/client/renderer/block/model/ItemOverride$Deserializer/ ()V net/minecraft/client/renderer/block/model/ItemOverride$Deserializer/ ()V +MD: net/minecraft/client/renderer/block/model/ItemOverride$Deserializer/deserialize (Lcom/google/gson/JsonElement;Ljava/lang/reflect/Type;Lcom/google/gson/JsonDeserializationContext;)Ljava/lang/Object; net/minecraft/client/renderer/block/model/ItemOverride$Deserializer/deserialize (Lcom/google/gson/JsonElement;Ljava/lang/reflect/Type;Lcom/google/gson/JsonDeserializationContext;)Ljava/lang/Object; +MD: net/minecraft/client/renderer/block/model/ItemOverride$Deserializer/deserialize (Lcom/google/gson/JsonElement;Ljava/lang/reflect/Type;Lcom/google/gson/JsonDeserializationContext;)Lnet/minecraft/client/renderer/block/model/ItemOverride; net/minecraft/client/renderer/block/model/ItemOverride$Deserializer/deserialize (Lcom/google/gson/JsonElement;Ljava/lang/reflect/Type;Lcom/google/gson/JsonDeserializationContext;)Lnet/minecraft/client/renderer/block/model/ItemOverride; +MD: net/minecraft/client/renderer/block/model/ItemOverride$Deserializer/m_173450_ (Lcom/google/gson/JsonObject;)Ljava/util/List; net/minecraft/client/renderer/block/model/ItemOverride$Deserializer/getPredicates (Lcom/google/gson/JsonObject;)Ljava/util/List; +MD: net/minecraft/client/renderer/block/model/ItemOverride$Deserializer/m_173452_ (Ljava/util/Map$Entry;)Lnet/minecraft/client/renderer/block/model/ItemOverride$Predicate; net/minecraft/client/renderer/block/model/ItemOverride$Deserializer/lambda$getPredicates$0 (Ljava/util/Map$Entry;)Lnet/minecraft/client/renderer/block/model/ItemOverride$Predicate; +MD: net/minecraft/client/renderer/block/model/ItemOverride$Predicate/ (Lnet/minecraft/resources/ResourceLocation;F)V net/minecraft/client/renderer/block/model/ItemOverride$Predicate/ (Lnet/minecraft/resources/ResourceLocation;F)V +MD: net/minecraft/client/renderer/block/model/ItemOverride$Predicate/m_173459_ ()Lnet/minecraft/resources/ResourceLocation; net/minecraft/client/renderer/block/model/ItemOverride$Predicate/getProperty ()Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/client/renderer/block/model/ItemOverride$Predicate/m_173460_ ()F net/minecraft/client/renderer/block/model/ItemOverride$Predicate/getValue ()F +MD: net/minecraft/client/renderer/block/model/ItemOverrides/ ()V net/minecraft/client/renderer/block/model/ItemOverrides/ ()V +MD: net/minecraft/client/renderer/block/model/ItemOverrides/ (Lnet/minecraft/client/resources/model/ModelBaker;Lnet/minecraft/client/renderer/block/model/BlockModel;Ljava/util/List;)V net/minecraft/client/renderer/block/model/ItemOverrides/ (Lnet/minecraft/client/resources/model/ModelBaker;Lnet/minecraft/client/renderer/block/model/BlockModel;Ljava/util/List;)V +MD: net/minecraft/client/renderer/block/model/ItemOverrides/ ()V net/minecraft/client/renderer/block/model/ItemOverrides/ ()V +MD: net/minecraft/client/renderer/block/model/ItemOverrides/m_173462_ (I)[Lnet/minecraft/client/renderer/block/model/ItemOverrides$PropertyMatcher; net/minecraft/client/renderer/block/model/ItemOverrides/lambda$new$2 (I)[Lnet/minecraft/client/renderer/block/model/ItemOverrides$PropertyMatcher; +MD: net/minecraft/client/renderer/block/model/ItemOverrides/m_173464_ (Lnet/minecraft/client/resources/model/BakedModel;Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/client/multiplayer/ClientLevel;Lnet/minecraft/world/entity/LivingEntity;I)Lnet/minecraft/client/resources/model/BakedModel; net/minecraft/client/renderer/block/model/ItemOverrides/resolve (Lnet/minecraft/client/resources/model/BakedModel;Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/client/multiplayer/ClientLevel;Lnet/minecraft/world/entity/LivingEntity;I)Lnet/minecraft/client/resources/model/BakedModel; +MD: net/minecraft/client/renderer/block/model/ItemOverrides/m_173475_ (Lit/unimi/dsi/fastutil/objects/Object2IntMap;Lnet/minecraft/client/renderer/block/model/ItemOverride$Predicate;)Lnet/minecraft/client/renderer/block/model/ItemOverrides$PropertyMatcher; net/minecraft/client/renderer/block/model/ItemOverrides/lambda$new$1 (Lit/unimi/dsi/fastutil/objects/Object2IntMap;Lnet/minecraft/client/renderer/block/model/ItemOverride$Predicate;)Lnet/minecraft/client/renderer/block/model/ItemOverrides$PropertyMatcher; +MD: net/minecraft/client/renderer/block/model/ItemOverrides/m_173478_ (I)[Lnet/minecraft/resources/ResourceLocation; net/minecraft/client/renderer/block/model/ItemOverrides/lambda$new$0 (I)[Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/client/renderer/block/model/ItemOverrides/m_246989_ (Lnet/minecraft/client/resources/model/ModelBaker;Lnet/minecraft/client/renderer/block/model/BlockModel;Lnet/minecraft/client/renderer/block/model/ItemOverride;)Lnet/minecraft/client/resources/model/BakedModel; net/minecraft/client/renderer/block/model/ItemOverrides/bakeModel (Lnet/minecraft/client/resources/model/ModelBaker;Lnet/minecraft/client/renderer/block/model/BlockModel;Lnet/minecraft/client/renderer/block/model/ItemOverride;)Lnet/minecraft/client/resources/model/BakedModel; +MD: net/minecraft/client/renderer/block/model/ItemOverrides$BakedOverride/ ([Lnet/minecraft/client/renderer/block/model/ItemOverrides$PropertyMatcher;Lnet/minecraft/client/resources/model/BakedModel;)V net/minecraft/client/renderer/block/model/ItemOverrides$BakedOverride/ ([Lnet/minecraft/client/renderer/block/model/ItemOverrides$PropertyMatcher;Lnet/minecraft/client/resources/model/BakedModel;)V +MD: net/minecraft/client/renderer/block/model/ItemOverrides$BakedOverride/m_173485_ ([F)Z net/minecraft/client/renderer/block/model/ItemOverrides$BakedOverride/test ([F)Z +MD: net/minecraft/client/renderer/block/model/ItemOverrides$PropertyMatcher/ (IF)V net/minecraft/client/renderer/block/model/ItemOverrides$PropertyMatcher/ (IF)V +MD: net/minecraft/client/renderer/block/model/ItemTransform/ ()V net/minecraft/client/renderer/block/model/ItemTransform/ ()V +MD: net/minecraft/client/renderer/block/model/ItemTransform/ (Lorg/joml/Vector3f;Lorg/joml/Vector3f;Lorg/joml/Vector3f;)V net/minecraft/client/renderer/block/model/ItemTransform/ (Lorg/joml/Vector3f;Lorg/joml/Vector3f;Lorg/joml/Vector3f;)V +MD: net/minecraft/client/renderer/block/model/ItemTransform/equals (Ljava/lang/Object;)Z net/minecraft/client/renderer/block/model/ItemTransform/equals (Ljava/lang/Object;)Z +MD: net/minecraft/client/renderer/block/model/ItemTransform/hashCode ()I net/minecraft/client/renderer/block/model/ItemTransform/hashCode ()I +MD: net/minecraft/client/renderer/block/model/ItemTransform/m_111763_ (ZLcom/mojang/blaze3d/vertex/PoseStack;)V net/minecraft/client/renderer/block/model/ItemTransform/apply (ZLcom/mojang/blaze3d/vertex/PoseStack;)V +MD: net/minecraft/client/renderer/block/model/ItemTransform$Deserializer/ ()V net/minecraft/client/renderer/block/model/ItemTransform$Deserializer/ ()V +MD: net/minecraft/client/renderer/block/model/ItemTransform$Deserializer/ ()V net/minecraft/client/renderer/block/model/ItemTransform$Deserializer/ ()V +MD: net/minecraft/client/renderer/block/model/ItemTransform$Deserializer/deserialize (Lcom/google/gson/JsonElement;Ljava/lang/reflect/Type;Lcom/google/gson/JsonDeserializationContext;)Ljava/lang/Object; net/minecraft/client/renderer/block/model/ItemTransform$Deserializer/deserialize (Lcom/google/gson/JsonElement;Ljava/lang/reflect/Type;Lcom/google/gson/JsonDeserializationContext;)Ljava/lang/Object; +MD: net/minecraft/client/renderer/block/model/ItemTransform$Deserializer/deserialize (Lcom/google/gson/JsonElement;Ljava/lang/reflect/Type;Lcom/google/gson/JsonDeserializationContext;)Lnet/minecraft/client/renderer/block/model/ItemTransform; net/minecraft/client/renderer/block/model/ItemTransform$Deserializer/deserialize (Lcom/google/gson/JsonElement;Ljava/lang/reflect/Type;Lcom/google/gson/JsonDeserializationContext;)Lnet/minecraft/client/renderer/block/model/ItemTransform; +MD: net/minecraft/client/renderer/block/model/ItemTransform$Deserializer/m_111778_ (Lcom/google/gson/JsonObject;Ljava/lang/String;Lorg/joml/Vector3f;)Lorg/joml/Vector3f; net/minecraft/client/renderer/block/model/ItemTransform$Deserializer/getVector3f (Lcom/google/gson/JsonObject;Ljava/lang/String;Lorg/joml/Vector3f;)Lorg/joml/Vector3f; +MD: net/minecraft/client/renderer/block/model/ItemTransforms/ ()V net/minecraft/client/renderer/block/model/ItemTransforms/ ()V +MD: net/minecraft/client/renderer/block/model/ItemTransforms/ (Lnet/minecraft/client/renderer/block/model/ItemTransforms;)V net/minecraft/client/renderer/block/model/ItemTransforms/ (Lnet/minecraft/client/renderer/block/model/ItemTransforms;)V +MD: net/minecraft/client/renderer/block/model/ItemTransforms/ (Lnet/minecraft/client/renderer/block/model/ItemTransform;Lnet/minecraft/client/renderer/block/model/ItemTransform;Lnet/minecraft/client/renderer/block/model/ItemTransform;Lnet/minecraft/client/renderer/block/model/ItemTransform;Lnet/minecraft/client/renderer/block/model/ItemTransform;Lnet/minecraft/client/renderer/block/model/ItemTransform;Lnet/minecraft/client/renderer/block/model/ItemTransform;Lnet/minecraft/client/renderer/block/model/ItemTransform;)V net/minecraft/client/renderer/block/model/ItemTransforms/ (Lnet/minecraft/client/renderer/block/model/ItemTransform;Lnet/minecraft/client/renderer/block/model/ItemTransform;Lnet/minecraft/client/renderer/block/model/ItemTransform;Lnet/minecraft/client/renderer/block/model/ItemTransform;Lnet/minecraft/client/renderer/block/model/ItemTransform;Lnet/minecraft/client/renderer/block/model/ItemTransform;Lnet/minecraft/client/renderer/block/model/ItemTransform;Lnet/minecraft/client/renderer/block/model/ItemTransform;)V +MD: net/minecraft/client/renderer/block/model/ItemTransforms/ ()V net/minecraft/client/renderer/block/model/ItemTransforms/ ()V +MD: net/minecraft/client/renderer/block/model/ItemTransforms/m_269404_ (Lnet/minecraft/world/item/ItemDisplayContext;)Lnet/minecraft/client/renderer/block/model/ItemTransform; net/minecraft/client/renderer/block/model/ItemTransforms/getTransform (Lnet/minecraft/world/item/ItemDisplayContext;)Lnet/minecraft/client/renderer/block/model/ItemTransform; +MD: net/minecraft/client/renderer/block/model/ItemTransforms/m_269504_ (Lnet/minecraft/world/item/ItemDisplayContext;)Z net/minecraft/client/renderer/block/model/ItemTransforms/hasTransform (Lnet/minecraft/world/item/ItemDisplayContext;)Z +MD: net/minecraft/client/renderer/block/model/ItemTransforms$1/ ()V net/minecraft/client/renderer/block/model/ItemTransforms$1/ ()V +MD: net/minecraft/client/renderer/block/model/ItemTransforms$Deserializer/ ()V net/minecraft/client/renderer/block/model/ItemTransforms$Deserializer/ ()V +MD: net/minecraft/client/renderer/block/model/ItemTransforms$Deserializer/deserialize (Lcom/google/gson/JsonElement;Ljava/lang/reflect/Type;Lcom/google/gson/JsonDeserializationContext;)Ljava/lang/Object; net/minecraft/client/renderer/block/model/ItemTransforms$Deserializer/deserialize (Lcom/google/gson/JsonElement;Ljava/lang/reflect/Type;Lcom/google/gson/JsonDeserializationContext;)Ljava/lang/Object; +MD: net/minecraft/client/renderer/block/model/ItemTransforms$Deserializer/deserialize (Lcom/google/gson/JsonElement;Ljava/lang/reflect/Type;Lcom/google/gson/JsonDeserializationContext;)Lnet/minecraft/client/renderer/block/model/ItemTransforms; net/minecraft/client/renderer/block/model/ItemTransforms$Deserializer/deserialize (Lcom/google/gson/JsonElement;Ljava/lang/reflect/Type;Lcom/google/gson/JsonDeserializationContext;)Lnet/minecraft/client/renderer/block/model/ItemTransforms; +MD: net/minecraft/client/renderer/block/model/ItemTransforms$Deserializer/m_269518_ (Lcom/google/gson/JsonDeserializationContext;Lcom/google/gson/JsonObject;Lnet/minecraft/world/item/ItemDisplayContext;)Lnet/minecraft/client/renderer/block/model/ItemTransform; net/minecraft/client/renderer/block/model/ItemTransforms$Deserializer/getTransform (Lcom/google/gson/JsonDeserializationContext;Lcom/google/gson/JsonObject;Lnet/minecraft/world/item/ItemDisplayContext;)Lnet/minecraft/client/renderer/block/model/ItemTransform; +MD: net/minecraft/client/renderer/block/model/MultiVariant/ (Ljava/util/List;)V net/minecraft/client/renderer/block/model/MultiVariant/ (Ljava/util/List;)V +MD: net/minecraft/client/renderer/block/model/MultiVariant/equals (Ljava/lang/Object;)Z net/minecraft/client/renderer/block/model/MultiVariant/equals (Ljava/lang/Object;)Z +MD: net/minecraft/client/renderer/block/model/MultiVariant/hashCode ()I net/minecraft/client/renderer/block/model/MultiVariant/hashCode ()I +MD: net/minecraft/client/renderer/block/model/MultiVariant/m_111848_ ()Ljava/util/List; net/minecraft/client/renderer/block/model/MultiVariant/getVariants ()Ljava/util/List; +MD: net/minecraft/client/renderer/block/model/MultiVariant/m_244731_ (Ljava/util/function/Function;Lnet/minecraft/resources/ResourceLocation;)V net/minecraft/client/renderer/block/model/MultiVariant/lambda$resolveParents$0 (Ljava/util/function/Function;Lnet/minecraft/resources/ResourceLocation;)V +MD: net/minecraft/client/renderer/block/model/MultiVariant/m_5500_ (Ljava/util/function/Function;)V net/minecraft/client/renderer/block/model/MultiVariant/resolveParents (Ljava/util/function/Function;)V +MD: net/minecraft/client/renderer/block/model/MultiVariant/m_7611_ (Lnet/minecraft/client/resources/model/ModelBaker;Ljava/util/function/Function;Lnet/minecraft/client/resources/model/ModelState;Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/client/resources/model/BakedModel; net/minecraft/client/renderer/block/model/MultiVariant/bake (Lnet/minecraft/client/resources/model/ModelBaker;Ljava/util/function/Function;Lnet/minecraft/client/resources/model/ModelState;Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/client/resources/model/BakedModel; +MD: net/minecraft/client/renderer/block/model/MultiVariant/m_7970_ ()Ljava/util/Collection; net/minecraft/client/renderer/block/model/MultiVariant/getDependencies ()Ljava/util/Collection; +MD: net/minecraft/client/renderer/block/model/MultiVariant$Deserializer/ ()V net/minecraft/client/renderer/block/model/MultiVariant$Deserializer/ ()V +MD: net/minecraft/client/renderer/block/model/MultiVariant$Deserializer/deserialize (Lcom/google/gson/JsonElement;Ljava/lang/reflect/Type;Lcom/google/gson/JsonDeserializationContext;)Ljava/lang/Object; net/minecraft/client/renderer/block/model/MultiVariant$Deserializer/deserialize (Lcom/google/gson/JsonElement;Ljava/lang/reflect/Type;Lcom/google/gson/JsonDeserializationContext;)Ljava/lang/Object; +MD: net/minecraft/client/renderer/block/model/MultiVariant$Deserializer/deserialize (Lcom/google/gson/JsonElement;Ljava/lang/reflect/Type;Lcom/google/gson/JsonDeserializationContext;)Lnet/minecraft/client/renderer/block/model/MultiVariant; net/minecraft/client/renderer/block/model/MultiVariant$Deserializer/deserialize (Lcom/google/gson/JsonElement;Ljava/lang/reflect/Type;Lcom/google/gson/JsonDeserializationContext;)Lnet/minecraft/client/renderer/block/model/MultiVariant; +MD: net/minecraft/client/renderer/block/model/Variant/ (Lnet/minecraft/resources/ResourceLocation;Lcom/mojang/math/Transformation;ZI)V net/minecraft/client/renderer/block/model/Variant/ (Lnet/minecraft/resources/ResourceLocation;Lcom/mojang/math/Transformation;ZI)V +MD: net/minecraft/client/renderer/block/model/Variant/equals (Ljava/lang/Object;)Z net/minecraft/client/renderer/block/model/Variant/equals (Ljava/lang/Object;)Z +MD: net/minecraft/client/renderer/block/model/Variant/hashCode ()I net/minecraft/client/renderer/block/model/Variant/hashCode ()I +MD: net/minecraft/client/renderer/block/model/Variant/m_111883_ ()Lnet/minecraft/resources/ResourceLocation; net/minecraft/client/renderer/block/model/Variant/getModelLocation ()Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/client/renderer/block/model/Variant/m_111886_ ()I net/minecraft/client/renderer/block/model/Variant/getWeight ()I +MD: net/minecraft/client/renderer/block/model/Variant/m_6189_ ()Lcom/mojang/math/Transformation; net/minecraft/client/renderer/block/model/Variant/getRotation ()Lcom/mojang/math/Transformation; +MD: net/minecraft/client/renderer/block/model/Variant/m_7538_ ()Z net/minecraft/client/renderer/block/model/Variant/isUvLocked ()Z +MD: net/minecraft/client/renderer/block/model/Variant/toString ()Ljava/lang/String; net/minecraft/client/renderer/block/model/Variant/toString ()Ljava/lang/String; +MD: net/minecraft/client/renderer/block/model/Variant$Deserializer/ ()V net/minecraft/client/renderer/block/model/Variant$Deserializer/ ()V +MD: net/minecraft/client/renderer/block/model/Variant$Deserializer/deserialize (Lcom/google/gson/JsonElement;Ljava/lang/reflect/Type;Lcom/google/gson/JsonDeserializationContext;)Ljava/lang/Object; net/minecraft/client/renderer/block/model/Variant$Deserializer/deserialize (Lcom/google/gson/JsonElement;Ljava/lang/reflect/Type;Lcom/google/gson/JsonDeserializationContext;)Ljava/lang/Object; +MD: net/minecraft/client/renderer/block/model/Variant$Deserializer/deserialize (Lcom/google/gson/JsonElement;Ljava/lang/reflect/Type;Lcom/google/gson/JsonDeserializationContext;)Lnet/minecraft/client/renderer/block/model/Variant; net/minecraft/client/renderer/block/model/Variant$Deserializer/deserialize (Lcom/google/gson/JsonElement;Ljava/lang/reflect/Type;Lcom/google/gson/JsonDeserializationContext;)Lnet/minecraft/client/renderer/block/model/Variant; +MD: net/minecraft/client/renderer/block/model/Variant$Deserializer/m_111896_ (Lcom/google/gson/JsonObject;)Lnet/minecraft/client/resources/model/BlockModelRotation; net/minecraft/client/renderer/block/model/Variant$Deserializer/getBlockRotation (Lcom/google/gson/JsonObject;)Lnet/minecraft/client/resources/model/BlockModelRotation; +MD: net/minecraft/client/renderer/block/model/Variant$Deserializer/m_111898_ (Lcom/google/gson/JsonObject;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/client/renderer/block/model/Variant$Deserializer/getModel (Lcom/google/gson/JsonObject;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/client/renderer/block/model/Variant$Deserializer/m_111900_ (Lcom/google/gson/JsonObject;)I net/minecraft/client/renderer/block/model/Variant$Deserializer/getWeight (Lcom/google/gson/JsonObject;)I +MD: net/minecraft/client/renderer/block/model/Variant$Deserializer/m_111902_ (Lcom/google/gson/JsonObject;)Z net/minecraft/client/renderer/block/model/Variant$Deserializer/getUvLock (Lcom/google/gson/JsonObject;)Z +MD: net/minecraft/client/renderer/block/model/multipart/AndCondition/ (Ljava/lang/Iterable;)V net/minecraft/client/renderer/block/model/multipart/AndCondition/ (Ljava/lang/Iterable;)V +MD: net/minecraft/client/renderer/block/model/multipart/AndCondition/m_111914_ (Lnet/minecraft/world/level/block/state/StateDefinition;Lnet/minecraft/client/renderer/block/model/multipart/Condition;)Ljava/util/function/Predicate; net/minecraft/client/renderer/block/model/multipart/AndCondition/lambda$getPredicate$0 (Lnet/minecraft/world/level/block/state/StateDefinition;Lnet/minecraft/client/renderer/block/model/multipart/Condition;)Ljava/util/function/Predicate; +MD: net/minecraft/client/renderer/block/model/multipart/AndCondition/m_111917_ (Ljava/util/List;Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/client/renderer/block/model/multipart/AndCondition/lambda$getPredicate$2 (Ljava/util/List;Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/client/renderer/block/model/multipart/AndCondition/m_173500_ (Lnet/minecraft/world/level/block/state/BlockState;Ljava/util/function/Predicate;)Z net/minecraft/client/renderer/block/model/multipart/AndCondition/lambda$getPredicate$1 (Lnet/minecraft/world/level/block/state/BlockState;Ljava/util/function/Predicate;)Z +MD: net/minecraft/client/renderer/block/model/multipart/AndCondition/m_7289_ (Lnet/minecraft/world/level/block/state/StateDefinition;)Ljava/util/function/Predicate; net/minecraft/client/renderer/block/model/multipart/AndCondition/getPredicate (Lnet/minecraft/world/level/block/state/StateDefinition;)Ljava/util/function/Predicate; +MD: net/minecraft/client/renderer/block/model/multipart/Condition/ ()V net/minecraft/client/renderer/block/model/multipart/Condition/ ()V +MD: net/minecraft/client/renderer/block/model/multipart/Condition/m_111927_ (Lnet/minecraft/world/level/block/state/StateDefinition;)Ljava/util/function/Predicate; net/minecraft/client/renderer/block/model/multipart/Condition/lambda$static$3 (Lnet/minecraft/world/level/block/state/StateDefinition;)Ljava/util/function/Predicate; +MD: net/minecraft/client/renderer/block/model/multipart/Condition/m_111931_ (Lnet/minecraft/world/level/block/state/StateDefinition;)Ljava/util/function/Predicate; net/minecraft/client/renderer/block/model/multipart/Condition/lambda$static$1 (Lnet/minecraft/world/level/block/state/StateDefinition;)Ljava/util/function/Predicate; +MD: net/minecraft/client/renderer/block/model/multipart/Condition/m_173503_ (Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/client/renderer/block/model/multipart/Condition/lambda$static$2 (Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/client/renderer/block/model/multipart/Condition/m_173505_ (Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/client/renderer/block/model/multipart/Condition/lambda$static$0 (Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/client/renderer/block/model/multipart/Condition/m_7289_ (Lnet/minecraft/world/level/block/state/StateDefinition;)Ljava/util/function/Predicate; net/minecraft/client/renderer/block/model/multipart/Condition/getPredicate (Lnet/minecraft/world/level/block/state/StateDefinition;)Ljava/util/function/Predicate; +MD: net/minecraft/client/renderer/block/model/multipart/KeyValueCondition/ ()V net/minecraft/client/renderer/block/model/multipart/KeyValueCondition/ ()V +MD: net/minecraft/client/renderer/block/model/multipart/KeyValueCondition/ (Ljava/lang/String;Ljava/lang/String;)V net/minecraft/client/renderer/block/model/multipart/KeyValueCondition/ (Ljava/lang/String;Ljava/lang/String;)V +MD: net/minecraft/client/renderer/block/model/multipart/KeyValueCondition/m_111944_ (Lnet/minecraft/world/level/block/state/StateDefinition;Lnet/minecraft/world/level/block/state/properties/Property;Ljava/lang/String;)Ljava/util/function/Predicate; net/minecraft/client/renderer/block/model/multipart/KeyValueCondition/getBlockStatePredicate (Lnet/minecraft/world/level/block/state/StateDefinition;Lnet/minecraft/world/level/block/state/properties/Property;Ljava/lang/String;)Ljava/util/function/Predicate; +MD: net/minecraft/client/renderer/block/model/multipart/KeyValueCondition/m_111948_ (Lnet/minecraft/world/level/block/state/properties/Property;Ljava/util/Optional;Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/client/renderer/block/model/multipart/KeyValueCondition/lambda$getBlockStatePredicate$3 (Lnet/minecraft/world/level/block/state/properties/Property;Ljava/util/Optional;Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/client/renderer/block/model/multipart/KeyValueCondition/m_111952_ (Ljava/util/List;Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/client/renderer/block/model/multipart/KeyValueCondition/lambda$getPredicate$2 (Ljava/util/List;Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/client/renderer/block/model/multipart/KeyValueCondition/m_111955_ (Lnet/minecraft/world/level/block/state/StateDefinition;Lnet/minecraft/world/level/block/state/properties/Property;Ljava/lang/String;)Ljava/util/function/Predicate; net/minecraft/client/renderer/block/model/multipart/KeyValueCondition/lambda$getPredicate$0 (Lnet/minecraft/world/level/block/state/StateDefinition;Lnet/minecraft/world/level/block/state/properties/Property;Ljava/lang/String;)Ljava/util/function/Predicate; +MD: net/minecraft/client/renderer/block/model/multipart/KeyValueCondition/m_173507_ (Lnet/minecraft/world/level/block/state/BlockState;Ljava/util/function/Predicate;)Z net/minecraft/client/renderer/block/model/multipart/KeyValueCondition/lambda$getPredicate$1 (Lnet/minecraft/world/level/block/state/BlockState;Ljava/util/function/Predicate;)Z +MD: net/minecraft/client/renderer/block/model/multipart/KeyValueCondition/m_7289_ (Lnet/minecraft/world/level/block/state/StateDefinition;)Ljava/util/function/Predicate; net/minecraft/client/renderer/block/model/multipart/KeyValueCondition/getPredicate (Lnet/minecraft/world/level/block/state/StateDefinition;)Ljava/util/function/Predicate; +MD: net/minecraft/client/renderer/block/model/multipart/KeyValueCondition/toString ()Ljava/lang/String; net/minecraft/client/renderer/block/model/multipart/KeyValueCondition/toString ()Ljava/lang/String; +MD: net/minecraft/client/renderer/block/model/multipart/MultiPart/ (Lnet/minecraft/world/level/block/state/StateDefinition;Ljava/util/List;)V net/minecraft/client/renderer/block/model/multipart/MultiPart/ (Lnet/minecraft/world/level/block/state/StateDefinition;Ljava/util/List;)V +MD: net/minecraft/client/renderer/block/model/multipart/MultiPart/equals (Ljava/lang/Object;)Z net/minecraft/client/renderer/block/model/multipart/MultiPart/equals (Ljava/lang/Object;)Z +MD: net/minecraft/client/renderer/block/model/multipart/MultiPart/hashCode ()I net/minecraft/client/renderer/block/model/multipart/MultiPart/hashCode ()I +MD: net/minecraft/client/renderer/block/model/multipart/MultiPart/m_111967_ ()Ljava/util/List; net/minecraft/client/renderer/block/model/multipart/MultiPart/getSelectors ()Ljava/util/List; +MD: net/minecraft/client/renderer/block/model/multipart/MultiPart/m_111968_ (Lnet/minecraft/client/renderer/block/model/multipart/Selector;)Ljava/util/stream/Stream; net/minecraft/client/renderer/block/model/multipart/MultiPart/lambda$getDependencies$0 (Lnet/minecraft/client/renderer/block/model/multipart/Selector;)Ljava/util/stream/Stream; +MD: net/minecraft/client/renderer/block/model/multipart/MultiPart/m_111982_ ()Ljava/util/Set; net/minecraft/client/renderer/block/model/multipart/MultiPart/getMultiVariants ()Ljava/util/Set; +MD: net/minecraft/client/renderer/block/model/multipart/MultiPart/m_244732_ (Ljava/util/function/Function;Lnet/minecraft/client/renderer/block/model/multipart/Selector;)V net/minecraft/client/renderer/block/model/multipart/MultiPart/lambda$resolveParents$1 (Ljava/util/function/Function;Lnet/minecraft/client/renderer/block/model/multipart/Selector;)V +MD: net/minecraft/client/renderer/block/model/multipart/MultiPart/m_5500_ (Ljava/util/function/Function;)V net/minecraft/client/renderer/block/model/multipart/MultiPart/resolveParents (Ljava/util/function/Function;)V +MD: net/minecraft/client/renderer/block/model/multipart/MultiPart/m_7611_ (Lnet/minecraft/client/resources/model/ModelBaker;Ljava/util/function/Function;Lnet/minecraft/client/resources/model/ModelState;Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/client/resources/model/BakedModel; net/minecraft/client/renderer/block/model/multipart/MultiPart/bake (Lnet/minecraft/client/resources/model/ModelBaker;Ljava/util/function/Function;Lnet/minecraft/client/resources/model/ModelState;Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/client/resources/model/BakedModel; +MD: net/minecraft/client/renderer/block/model/multipart/MultiPart/m_7970_ ()Ljava/util/Collection; net/minecraft/client/renderer/block/model/multipart/MultiPart/getDependencies ()Ljava/util/Collection; +MD: net/minecraft/client/renderer/block/model/multipart/MultiPart$Deserializer/ (Lnet/minecraft/client/renderer/block/model/BlockModelDefinition$Context;)V net/minecraft/client/renderer/block/model/multipart/MultiPart$Deserializer/ (Lnet/minecraft/client/renderer/block/model/BlockModelDefinition$Context;)V +MD: net/minecraft/client/renderer/block/model/multipart/MultiPart$Deserializer/deserialize (Lcom/google/gson/JsonElement;Ljava/lang/reflect/Type;Lcom/google/gson/JsonDeserializationContext;)Lnet/minecraft/client/renderer/block/model/multipart/MultiPart; net/minecraft/client/renderer/block/model/multipart/MultiPart$Deserializer/deserialize (Lcom/google/gson/JsonElement;Ljava/lang/reflect/Type;Lcom/google/gson/JsonDeserializationContext;)Lnet/minecraft/client/renderer/block/model/multipart/MultiPart; +MD: net/minecraft/client/renderer/block/model/multipart/MultiPart$Deserializer/deserialize (Lcom/google/gson/JsonElement;Ljava/lang/reflect/Type;Lcom/google/gson/JsonDeserializationContext;)Ljava/lang/Object; net/minecraft/client/renderer/block/model/multipart/MultiPart$Deserializer/deserialize (Lcom/google/gson/JsonElement;Ljava/lang/reflect/Type;Lcom/google/gson/JsonDeserializationContext;)Ljava/lang/Object; +MD: net/minecraft/client/renderer/block/model/multipart/MultiPart$Deserializer/m_111990_ (Lcom/google/gson/JsonDeserializationContext;Lcom/google/gson/JsonArray;)Ljava/util/List; net/minecraft/client/renderer/block/model/multipart/MultiPart$Deserializer/getSelectors (Lcom/google/gson/JsonDeserializationContext;Lcom/google/gson/JsonArray;)Ljava/util/List; +MD: net/minecraft/client/renderer/block/model/multipart/OrCondition/ (Ljava/lang/Iterable;)V net/minecraft/client/renderer/block/model/multipart/OrCondition/ (Ljava/lang/Iterable;)V +MD: net/minecraft/client/renderer/block/model/multipart/OrCondition/m_112007_ (Lnet/minecraft/world/level/block/state/StateDefinition;Lnet/minecraft/client/renderer/block/model/multipart/Condition;)Ljava/util/function/Predicate; net/minecraft/client/renderer/block/model/multipart/OrCondition/lambda$getPredicate$0 (Lnet/minecraft/world/level/block/state/StateDefinition;Lnet/minecraft/client/renderer/block/model/multipart/Condition;)Ljava/util/function/Predicate; +MD: net/minecraft/client/renderer/block/model/multipart/OrCondition/m_112010_ (Ljava/util/List;Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/client/renderer/block/model/multipart/OrCondition/lambda$getPredicate$2 (Ljava/util/List;Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/client/renderer/block/model/multipart/OrCondition/m_173511_ (Lnet/minecraft/world/level/block/state/BlockState;Ljava/util/function/Predicate;)Z net/minecraft/client/renderer/block/model/multipart/OrCondition/lambda$getPredicate$1 (Lnet/minecraft/world/level/block/state/BlockState;Ljava/util/function/Predicate;)Z +MD: net/minecraft/client/renderer/block/model/multipart/OrCondition/m_7289_ (Lnet/minecraft/world/level/block/state/StateDefinition;)Ljava/util/function/Predicate; net/minecraft/client/renderer/block/model/multipart/OrCondition/getPredicate (Lnet/minecraft/world/level/block/state/StateDefinition;)Ljava/util/function/Predicate; +MD: net/minecraft/client/renderer/block/model/multipart/Selector/ (Lnet/minecraft/client/renderer/block/model/multipart/Condition;Lnet/minecraft/client/renderer/block/model/MultiVariant;)V net/minecraft/client/renderer/block/model/multipart/Selector/ (Lnet/minecraft/client/renderer/block/model/multipart/Condition;Lnet/minecraft/client/renderer/block/model/MultiVariant;)V +MD: net/minecraft/client/renderer/block/model/multipart/Selector/equals (Ljava/lang/Object;)Z net/minecraft/client/renderer/block/model/multipart/Selector/equals (Ljava/lang/Object;)Z +MD: net/minecraft/client/renderer/block/model/multipart/Selector/hashCode ()I net/minecraft/client/renderer/block/model/multipart/Selector/hashCode ()I +MD: net/minecraft/client/renderer/block/model/multipart/Selector/m_112020_ ()Lnet/minecraft/client/renderer/block/model/MultiVariant; net/minecraft/client/renderer/block/model/multipart/Selector/getVariant ()Lnet/minecraft/client/renderer/block/model/MultiVariant; +MD: net/minecraft/client/renderer/block/model/multipart/Selector/m_112021_ (Lnet/minecraft/world/level/block/state/StateDefinition;)Ljava/util/function/Predicate; net/minecraft/client/renderer/block/model/multipart/Selector/getPredicate (Lnet/minecraft/world/level/block/state/StateDefinition;)Ljava/util/function/Predicate; +MD: net/minecraft/client/renderer/block/model/multipart/Selector$Deserializer/ ()V net/minecraft/client/renderer/block/model/multipart/Selector$Deserializer/ ()V +MD: net/minecraft/client/renderer/block/model/multipart/Selector$Deserializer/deserialize (Lcom/google/gson/JsonElement;Ljava/lang/reflect/Type;Lcom/google/gson/JsonDeserializationContext;)Ljava/lang/Object; net/minecraft/client/renderer/block/model/multipart/Selector$Deserializer/deserialize (Lcom/google/gson/JsonElement;Ljava/lang/reflect/Type;Lcom/google/gson/JsonDeserializationContext;)Ljava/lang/Object; +MD: net/minecraft/client/renderer/block/model/multipart/Selector$Deserializer/deserialize (Lcom/google/gson/JsonElement;Ljava/lang/reflect/Type;Lcom/google/gson/JsonDeserializationContext;)Lnet/minecraft/client/renderer/block/model/multipart/Selector; net/minecraft/client/renderer/block/model/multipart/Selector$Deserializer/deserialize (Lcom/google/gson/JsonElement;Ljava/lang/reflect/Type;Lcom/google/gson/JsonDeserializationContext;)Lnet/minecraft/client/renderer/block/model/multipart/Selector; +MD: net/minecraft/client/renderer/block/model/multipart/Selector$Deserializer/m_112027_ (Lcom/google/gson/JsonElement;)Lnet/minecraft/client/renderer/block/model/multipart/Condition; net/minecraft/client/renderer/block/model/multipart/Selector$Deserializer/lambda$getCondition$1 (Lcom/google/gson/JsonElement;)Lnet/minecraft/client/renderer/block/model/multipart/Condition; +MD: net/minecraft/client/renderer/block/model/multipart/Selector$Deserializer/m_112033_ (Lcom/google/gson/JsonObject;)Lnet/minecraft/client/renderer/block/model/multipart/Condition; net/minecraft/client/renderer/block/model/multipart/Selector$Deserializer/getCondition (Lcom/google/gson/JsonObject;)Lnet/minecraft/client/renderer/block/model/multipart/Condition; +MD: net/minecraft/client/renderer/block/model/multipart/Selector$Deserializer/m_112035_ (Ljava/util/Map$Entry;)Lnet/minecraft/client/renderer/block/model/multipart/Condition; net/minecraft/client/renderer/block/model/multipart/Selector$Deserializer/getKeyValueCondition (Ljava/util/Map$Entry;)Lnet/minecraft/client/renderer/block/model/multipart/Condition; +MD: net/minecraft/client/renderer/block/model/multipart/Selector$Deserializer/m_112037_ (Lcom/google/gson/JsonElement;)Lnet/minecraft/client/renderer/block/model/multipart/Condition; net/minecraft/client/renderer/block/model/multipart/Selector$Deserializer/lambda$getCondition$0 (Lcom/google/gson/JsonElement;)Lnet/minecraft/client/renderer/block/model/multipart/Condition; +MD: net/minecraft/client/renderer/block/model/multipart/Selector$Deserializer/m_112039_ (Lcom/google/gson/JsonObject;)Lnet/minecraft/client/renderer/block/model/multipart/Condition; net/minecraft/client/renderer/block/model/multipart/Selector$Deserializer/getSelector (Lcom/google/gson/JsonObject;)Lnet/minecraft/client/renderer/block/model/multipart/Condition; +MD: net/minecraft/client/renderer/blockentity/BannerRenderer/ (Lnet/minecraft/client/renderer/blockentity/BlockEntityRendererProvider$Context;)V net/minecraft/client/renderer/blockentity/BannerRenderer/ (Lnet/minecraft/client/renderer/blockentity/BlockEntityRendererProvider$Context;)V +MD: net/minecraft/client/renderer/blockentity/BannerRenderer/m_112065_ (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;IILnet/minecraft/client/model/geom/ModelPart;Lnet/minecraft/client/resources/model/Material;ZLjava/util/List;)V net/minecraft/client/renderer/blockentity/BannerRenderer/renderPatterns (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;IILnet/minecraft/client/model/geom/ModelPart;Lnet/minecraft/client/resources/model/Material;ZLjava/util/List;)V +MD: net/minecraft/client/renderer/blockentity/BannerRenderer/m_112074_ (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;IILnet/minecraft/client/model/geom/ModelPart;Lnet/minecraft/client/resources/model/Material;ZLjava/util/List;Z)V net/minecraft/client/renderer/blockentity/BannerRenderer/renderPatterns (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;IILnet/minecraft/client/model/geom/ModelPart;Lnet/minecraft/client/resources/model/Material;ZLjava/util/List;Z)V +MD: net/minecraft/client/renderer/blockentity/BannerRenderer/m_173522_ ()Lnet/minecraft/client/model/geom/builders/LayerDefinition; net/minecraft/client/renderer/blockentity/BannerRenderer/createBodyLayer ()Lnet/minecraft/client/model/geom/builders/LayerDefinition; +MD: net/minecraft/client/renderer/blockentity/BannerRenderer/m_234418_ (Lnet/minecraft/client/model/geom/ModelPart;Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;II[FLnet/minecraft/client/resources/model/Material;)V net/minecraft/client/renderer/blockentity/BannerRenderer/lambda$renderPatterns$1 (Lnet/minecraft/client/model/geom/ModelPart;Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;II[FLnet/minecraft/client/resources/model/Material;)V +MD: net/minecraft/client/renderer/blockentity/BannerRenderer/m_234426_ (ZLnet/minecraft/resources/ResourceKey;)Lnet/minecraft/client/resources/model/Material; net/minecraft/client/renderer/blockentity/BannerRenderer/lambda$renderPatterns$0 (ZLnet/minecraft/resources/ResourceKey;)Lnet/minecraft/client/resources/model/Material; +MD: net/minecraft/client/renderer/blockentity/BannerRenderer/m_6922_ (Lnet/minecraft/world/level/block/entity/BannerBlockEntity;FLcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;II)V net/minecraft/client/renderer/blockentity/BannerRenderer/render (Lnet/minecraft/world/level/block/entity/BannerBlockEntity;FLcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;II)V +MD: net/minecraft/client/renderer/blockentity/BannerRenderer/m_6922_ (Lnet/minecraft/world/level/block/entity/BlockEntity;FLcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;II)V net/minecraft/client/renderer/blockentity/BannerRenderer/render (Lnet/minecraft/world/level/block/entity/BlockEntity;FLcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;II)V +MD: net/minecraft/client/renderer/blockentity/BeaconRenderer/ ()V net/minecraft/client/renderer/blockentity/BeaconRenderer/ ()V +MD: net/minecraft/client/renderer/blockentity/BeaconRenderer/ (Lnet/minecraft/client/renderer/blockentity/BlockEntityRendererProvider$Context;)V net/minecraft/client/renderer/blockentity/BeaconRenderer/ (Lnet/minecraft/client/renderer/blockentity/BlockEntityRendererProvider$Context;)V +MD: net/minecraft/client/renderer/blockentity/BeaconRenderer/m_112119_ (Lorg/joml/Matrix4f;Lorg/joml/Matrix3f;Lcom/mojang/blaze3d/vertex/VertexConsumer;FFFFIIFFFFFFFF)V net/minecraft/client/renderer/blockentity/BeaconRenderer/renderQuad (Lorg/joml/Matrix4f;Lorg/joml/Matrix3f;Lcom/mojang/blaze3d/vertex/VertexConsumer;FFFFIIFFFFFFFF)V +MD: net/minecraft/client/renderer/blockentity/BeaconRenderer/m_112155_ (Lcom/mojang/blaze3d/vertex/PoseStack;Lcom/mojang/blaze3d/vertex/VertexConsumer;FFFFIIFFFFFFFFFFFF)V net/minecraft/client/renderer/blockentity/BeaconRenderer/renderPart (Lcom/mojang/blaze3d/vertex/PoseStack;Lcom/mojang/blaze3d/vertex/VertexConsumer;FFFFIIFFFFFFFFFFFF)V +MD: net/minecraft/client/renderer/blockentity/BeaconRenderer/m_112176_ (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;FJII[F)V net/minecraft/client/renderer/blockentity/BeaconRenderer/renderBeaconBeam (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;FJII[F)V +MD: net/minecraft/client/renderer/blockentity/BeaconRenderer/m_112184_ (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;Lnet/minecraft/resources/ResourceLocation;FFJII[FFF)V net/minecraft/client/renderer/blockentity/BeaconRenderer/renderBeaconBeam (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;Lnet/minecraft/resources/ResourceLocation;FFJII[FFF)V +MD: net/minecraft/client/renderer/blockentity/BeaconRenderer/m_142163_ ()I net/minecraft/client/renderer/blockentity/BeaconRenderer/getViewDistance ()I +MD: net/minecraft/client/renderer/blockentity/BeaconRenderer/m_142756_ (Lnet/minecraft/world/level/block/entity/BlockEntity;Lnet/minecraft/world/phys/Vec3;)Z net/minecraft/client/renderer/blockentity/BeaconRenderer/shouldRender (Lnet/minecraft/world/level/block/entity/BlockEntity;Lnet/minecraft/world/phys/Vec3;)Z +MD: net/minecraft/client/renderer/blockentity/BeaconRenderer/m_142756_ (Lnet/minecraft/world/level/block/entity/BeaconBlockEntity;Lnet/minecraft/world/phys/Vec3;)Z net/minecraft/client/renderer/blockentity/BeaconRenderer/shouldRender (Lnet/minecraft/world/level/block/entity/BeaconBlockEntity;Lnet/minecraft/world/phys/Vec3;)Z +MD: net/minecraft/client/renderer/blockentity/BeaconRenderer/m_253258_ (Lorg/joml/Matrix4f;Lorg/joml/Matrix3f;Lcom/mojang/blaze3d/vertex/VertexConsumer;FFFFIFFFF)V net/minecraft/client/renderer/blockentity/BeaconRenderer/addVertex (Lorg/joml/Matrix4f;Lorg/joml/Matrix3f;Lcom/mojang/blaze3d/vertex/VertexConsumer;FFFFIFFFF)V +MD: net/minecraft/client/renderer/blockentity/BeaconRenderer/m_5932_ (Lnet/minecraft/world/level/block/entity/BlockEntity;)Z net/minecraft/client/renderer/blockentity/BeaconRenderer/shouldRenderOffScreen (Lnet/minecraft/world/level/block/entity/BlockEntity;)Z +MD: net/minecraft/client/renderer/blockentity/BeaconRenderer/m_5932_ (Lnet/minecraft/world/level/block/entity/BeaconBlockEntity;)Z net/minecraft/client/renderer/blockentity/BeaconRenderer/shouldRenderOffScreen (Lnet/minecraft/world/level/block/entity/BeaconBlockEntity;)Z +MD: net/minecraft/client/renderer/blockentity/BeaconRenderer/m_6922_ (Lnet/minecraft/world/level/block/entity/BeaconBlockEntity;FLcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;II)V net/minecraft/client/renderer/blockentity/BeaconRenderer/render (Lnet/minecraft/world/level/block/entity/BeaconBlockEntity;FLcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;II)V +MD: net/minecraft/client/renderer/blockentity/BeaconRenderer/m_6922_ (Lnet/minecraft/world/level/block/entity/BlockEntity;FLcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;II)V net/minecraft/client/renderer/blockentity/BeaconRenderer/render (Lnet/minecraft/world/level/block/entity/BlockEntity;FLcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;II)V +MD: net/minecraft/client/renderer/blockentity/BedRenderer/ (Lnet/minecraft/client/renderer/blockentity/BlockEntityRendererProvider$Context;)V net/minecraft/client/renderer/blockentity/BedRenderer/ (Lnet/minecraft/client/renderer/blockentity/BlockEntityRendererProvider$Context;)V +MD: net/minecraft/client/renderer/blockentity/BedRenderer/m_112201_ (Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;)Z net/minecraft/client/renderer/blockentity/BedRenderer/lambda$render$0 (Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/client/renderer/blockentity/BedRenderer/m_173541_ (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;Lnet/minecraft/client/model/geom/ModelPart;Lnet/minecraft/core/Direction;Lnet/minecraft/client/resources/model/Material;IIZ)V net/minecraft/client/renderer/blockentity/BedRenderer/renderPiece (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;Lnet/minecraft/client/model/geom/ModelPart;Lnet/minecraft/core/Direction;Lnet/minecraft/client/resources/model/Material;IIZ)V +MD: net/minecraft/client/renderer/blockentity/BedRenderer/m_173550_ ()Lnet/minecraft/client/model/geom/builders/LayerDefinition; net/minecraft/client/renderer/blockentity/BedRenderer/createHeadLayer ()Lnet/minecraft/client/model/geom/builders/LayerDefinition; +MD: net/minecraft/client/renderer/blockentity/BedRenderer/m_173551_ ()Lnet/minecraft/client/model/geom/builders/LayerDefinition; net/minecraft/client/renderer/blockentity/BedRenderer/createFootLayer ()Lnet/minecraft/client/model/geom/builders/LayerDefinition; +MD: net/minecraft/client/renderer/blockentity/BedRenderer/m_6922_ (Lnet/minecraft/world/level/block/entity/BedBlockEntity;FLcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;II)V net/minecraft/client/renderer/blockentity/BedRenderer/render (Lnet/minecraft/world/level/block/entity/BedBlockEntity;FLcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;II)V +MD: net/minecraft/client/renderer/blockentity/BedRenderer/m_6922_ (Lnet/minecraft/world/level/block/entity/BlockEntity;FLcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;II)V net/minecraft/client/renderer/blockentity/BedRenderer/render (Lnet/minecraft/world/level/block/entity/BlockEntity;FLcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;II)V +MD: net/minecraft/client/renderer/blockentity/BellRenderer/ ()V net/minecraft/client/renderer/blockentity/BellRenderer/ ()V +MD: net/minecraft/client/renderer/blockentity/BellRenderer/ (Lnet/minecraft/client/renderer/blockentity/BlockEntityRendererProvider$Context;)V net/minecraft/client/renderer/blockentity/BellRenderer/ (Lnet/minecraft/client/renderer/blockentity/BlockEntityRendererProvider$Context;)V +MD: net/minecraft/client/renderer/blockentity/BellRenderer/m_173555_ ()Lnet/minecraft/client/model/geom/builders/LayerDefinition; net/minecraft/client/renderer/blockentity/BellRenderer/createBodyLayer ()Lnet/minecraft/client/model/geom/builders/LayerDefinition; +MD: net/minecraft/client/renderer/blockentity/BellRenderer/m_6922_ (Lnet/minecraft/world/level/block/entity/BellBlockEntity;FLcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;II)V net/minecraft/client/renderer/blockentity/BellRenderer/render (Lnet/minecraft/world/level/block/entity/BellBlockEntity;FLcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;II)V +MD: net/minecraft/client/renderer/blockentity/BellRenderer/m_6922_ (Lnet/minecraft/world/level/block/entity/BlockEntity;FLcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;II)V net/minecraft/client/renderer/blockentity/BellRenderer/render (Lnet/minecraft/world/level/block/entity/BlockEntity;FLcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;II)V +MD: net/minecraft/client/renderer/blockentity/BlockEntityRenderDispatcher/ (Lnet/minecraft/client/gui/Font;Lnet/minecraft/client/model/geom/EntityModelSet;Ljava/util/function/Supplier;Ljava/util/function/Supplier;Ljava/util/function/Supplier;)V net/minecraft/client/renderer/blockentity/BlockEntityRenderDispatcher/ (Lnet/minecraft/client/gui/Font;Lnet/minecraft/client/model/geom/EntityModelSet;Ljava/util/function/Supplier;Ljava/util/function/Supplier;Ljava/util/function/Supplier;)V +MD: net/minecraft/client/renderer/blockentity/BlockEntityRenderDispatcher/m_112257_ (Lnet/minecraft/world/level/Level;)V net/minecraft/client/renderer/blockentity/BlockEntityRenderDispatcher/setLevel (Lnet/minecraft/world/level/Level;)V +MD: net/minecraft/client/renderer/blockentity/BlockEntityRenderDispatcher/m_112265_ (Lnet/minecraft/world/level/block/entity/BlockEntity;)Lnet/minecraft/client/renderer/blockentity/BlockEntityRenderer; net/minecraft/client/renderer/blockentity/BlockEntityRenderDispatcher/getRenderer (Lnet/minecraft/world/level/block/entity/BlockEntity;)Lnet/minecraft/client/renderer/blockentity/BlockEntityRenderer; +MD: net/minecraft/client/renderer/blockentity/BlockEntityRenderDispatcher/m_112267_ (Lnet/minecraft/world/level/block/entity/BlockEntity;FLcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;)V net/minecraft/client/renderer/blockentity/BlockEntityRenderDispatcher/render (Lnet/minecraft/world/level/block/entity/BlockEntity;FLcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;)V +MD: net/minecraft/client/renderer/blockentity/BlockEntityRenderDispatcher/m_112272_ (Lnet/minecraft/world/level/block/entity/BlockEntity;Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;II)Z net/minecraft/client/renderer/blockentity/BlockEntityRenderDispatcher/renderItem (Lnet/minecraft/world/level/block/entity/BlockEntity;Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;II)Z +MD: net/minecraft/client/renderer/blockentity/BlockEntityRenderDispatcher/m_112278_ (Lnet/minecraft/world/level/block/entity/BlockEntity;Ljava/lang/Runnable;)V net/minecraft/client/renderer/blockentity/BlockEntityRenderDispatcher/tryRender (Lnet/minecraft/world/level/block/entity/BlockEntity;Ljava/lang/Runnable;)V +MD: net/minecraft/client/renderer/blockentity/BlockEntityRenderDispatcher/m_112284_ (Lnet/minecraft/client/renderer/blockentity/BlockEntityRenderer;Lnet/minecraft/world/level/block/entity/BlockEntity;FLcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;)V net/minecraft/client/renderer/blockentity/BlockEntityRenderDispatcher/setupAndRender (Lnet/minecraft/client/renderer/blockentity/BlockEntityRenderer;Lnet/minecraft/world/level/block/entity/BlockEntity;FLcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;)V +MD: net/minecraft/client/renderer/blockentity/BlockEntityRenderDispatcher/m_112290_ (Lnet/minecraft/client/renderer/blockentity/BlockEntityRenderer;Lnet/minecraft/world/level/block/entity/BlockEntity;Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;II)V net/minecraft/client/renderer/blockentity/BlockEntityRenderDispatcher/lambda$renderItem$1 (Lnet/minecraft/client/renderer/blockentity/BlockEntityRenderer;Lnet/minecraft/world/level/block/entity/BlockEntity;Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;II)V +MD: net/minecraft/client/renderer/blockentity/BlockEntityRenderDispatcher/m_112297_ (Lnet/minecraft/client/renderer/blockentity/BlockEntityRenderer;Lnet/minecraft/world/level/block/entity/BlockEntity;FLcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;)V net/minecraft/client/renderer/blockentity/BlockEntityRenderDispatcher/lambda$render$0 (Lnet/minecraft/client/renderer/blockentity/BlockEntityRenderer;Lnet/minecraft/world/level/block/entity/BlockEntity;FLcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;)V +MD: net/minecraft/client/renderer/blockentity/BlockEntityRenderDispatcher/m_173564_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/client/Camera;Lnet/minecraft/world/phys/HitResult;)V net/minecraft/client/renderer/blockentity/BlockEntityRenderDispatcher/prepare (Lnet/minecraft/world/level/Level;Lnet/minecraft/client/Camera;Lnet/minecraft/world/phys/HitResult;)V +MD: net/minecraft/client/renderer/blockentity/BlockEntityRenderDispatcher/m_6213_ (Lnet/minecraft/server/packs/resources/ResourceManager;)V net/minecraft/client/renderer/blockentity/BlockEntityRenderDispatcher/onResourceManagerReload (Lnet/minecraft/server/packs/resources/ResourceManager;)V +MD: net/minecraft/client/renderer/blockentity/BlockEntityRenderer/m_142163_ ()I net/minecraft/client/renderer/blockentity/BlockEntityRenderer/getViewDistance ()I +MD: net/minecraft/client/renderer/blockentity/BlockEntityRenderer/m_142756_ (Lnet/minecraft/world/level/block/entity/BlockEntity;Lnet/minecraft/world/phys/Vec3;)Z net/minecraft/client/renderer/blockentity/BlockEntityRenderer/shouldRender (Lnet/minecraft/world/level/block/entity/BlockEntity;Lnet/minecraft/world/phys/Vec3;)Z +MD: net/minecraft/client/renderer/blockentity/BlockEntityRenderer/m_5932_ (Lnet/minecraft/world/level/block/entity/BlockEntity;)Z net/minecraft/client/renderer/blockentity/BlockEntityRenderer/shouldRenderOffScreen (Lnet/minecraft/world/level/block/entity/BlockEntity;)Z +MD: net/minecraft/client/renderer/blockentity/BlockEntityRenderer/m_6922_ (Lnet/minecraft/world/level/block/entity/BlockEntity;FLcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;II)V net/minecraft/client/renderer/blockentity/BlockEntityRenderer/render (Lnet/minecraft/world/level/block/entity/BlockEntity;FLcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;II)V +MD: net/minecraft/client/renderer/blockentity/BlockEntityRendererProvider/m_173570_ (Lnet/minecraft/client/renderer/blockentity/BlockEntityRendererProvider$Context;)Lnet/minecraft/client/renderer/blockentity/BlockEntityRenderer; net/minecraft/client/renderer/blockentity/BlockEntityRendererProvider/create (Lnet/minecraft/client/renderer/blockentity/BlockEntityRendererProvider$Context;)Lnet/minecraft/client/renderer/blockentity/BlockEntityRenderer; +MD: net/minecraft/client/renderer/blockentity/BlockEntityRendererProvider$Context/ (Lnet/minecraft/client/renderer/blockentity/BlockEntityRenderDispatcher;Lnet/minecraft/client/renderer/block/BlockRenderDispatcher;Lnet/minecraft/client/renderer/entity/ItemRenderer;Lnet/minecraft/client/renderer/entity/EntityRenderDispatcher;Lnet/minecraft/client/model/geom/EntityModelSet;Lnet/minecraft/client/gui/Font;)V net/minecraft/client/renderer/blockentity/BlockEntityRendererProvider$Context/ (Lnet/minecraft/client/renderer/blockentity/BlockEntityRenderDispatcher;Lnet/minecraft/client/renderer/block/BlockRenderDispatcher;Lnet/minecraft/client/renderer/entity/ItemRenderer;Lnet/minecraft/client/renderer/entity/EntityRenderDispatcher;Lnet/minecraft/client/model/geom/EntityModelSet;Lnet/minecraft/client/gui/Font;)V +MD: net/minecraft/client/renderer/blockentity/BlockEntityRendererProvider$Context/m_173581_ ()Lnet/minecraft/client/renderer/blockentity/BlockEntityRenderDispatcher; net/minecraft/client/renderer/blockentity/BlockEntityRendererProvider$Context/getBlockEntityRenderDispatcher ()Lnet/minecraft/client/renderer/blockentity/BlockEntityRenderDispatcher; +MD: net/minecraft/client/renderer/blockentity/BlockEntityRendererProvider$Context/m_173582_ (Lnet/minecraft/client/model/geom/ModelLayerLocation;)Lnet/minecraft/client/model/geom/ModelPart; net/minecraft/client/renderer/blockentity/BlockEntityRendererProvider$Context/bakeLayer (Lnet/minecraft/client/model/geom/ModelLayerLocation;)Lnet/minecraft/client/model/geom/ModelPart; +MD: net/minecraft/client/renderer/blockentity/BlockEntityRendererProvider$Context/m_173584_ ()Lnet/minecraft/client/renderer/block/BlockRenderDispatcher; net/minecraft/client/renderer/blockentity/BlockEntityRendererProvider$Context/getBlockRenderDispatcher ()Lnet/minecraft/client/renderer/block/BlockRenderDispatcher; +MD: net/minecraft/client/renderer/blockentity/BlockEntityRendererProvider$Context/m_173585_ ()Lnet/minecraft/client/model/geom/EntityModelSet; net/minecraft/client/renderer/blockentity/BlockEntityRendererProvider$Context/getModelSet ()Lnet/minecraft/client/model/geom/EntityModelSet; +MD: net/minecraft/client/renderer/blockentity/BlockEntityRendererProvider$Context/m_173586_ ()Lnet/minecraft/client/gui/Font; net/minecraft/client/renderer/blockentity/BlockEntityRendererProvider$Context/getFont ()Lnet/minecraft/client/gui/Font; +MD: net/minecraft/client/renderer/blockentity/BlockEntityRendererProvider$Context/m_234446_ ()Lnet/minecraft/client/renderer/entity/EntityRenderDispatcher; net/minecraft/client/renderer/blockentity/BlockEntityRendererProvider$Context/getEntityRenderer ()Lnet/minecraft/client/renderer/entity/EntityRenderDispatcher; +MD: net/minecraft/client/renderer/blockentity/BlockEntityRendererProvider$Context/m_234447_ ()Lnet/minecraft/client/renderer/entity/ItemRenderer; net/minecraft/client/renderer/blockentity/BlockEntityRendererProvider$Context/getItemRenderer ()Lnet/minecraft/client/renderer/entity/ItemRenderer; +MD: net/minecraft/client/renderer/blockentity/BlockEntityRenderers/ ()V net/minecraft/client/renderer/blockentity/BlockEntityRenderers/ ()V +MD: net/minecraft/client/renderer/blockentity/BlockEntityRenderers/ ()V net/minecraft/client/renderer/blockentity/BlockEntityRenderers/ ()V +MD: net/minecraft/client/renderer/blockentity/BlockEntityRenderers/m_173590_ (Lnet/minecraft/world/level/block/entity/BlockEntityType;Lnet/minecraft/client/renderer/blockentity/BlockEntityRendererProvider;)V net/minecraft/client/renderer/blockentity/BlockEntityRenderers/register (Lnet/minecraft/world/level/block/entity/BlockEntityType;Lnet/minecraft/client/renderer/blockentity/BlockEntityRendererProvider;)V +MD: net/minecraft/client/renderer/blockentity/BlockEntityRenderers/m_173598_ (Lnet/minecraft/client/renderer/blockentity/BlockEntityRendererProvider$Context;)Ljava/util/Map; net/minecraft/client/renderer/blockentity/BlockEntityRenderers/createEntityRenderers (Lnet/minecraft/client/renderer/blockentity/BlockEntityRendererProvider$Context;)Ljava/util/Map; +MD: net/minecraft/client/renderer/blockentity/BlockEntityRenderers/m_257086_ (Lcom/google/common/collect/ImmutableMap$Builder;Lnet/minecraft/client/renderer/blockentity/BlockEntityRendererProvider$Context;Lnet/minecraft/world/level/block/entity/BlockEntityType;Lnet/minecraft/client/renderer/blockentity/BlockEntityRendererProvider;)V net/minecraft/client/renderer/blockentity/BlockEntityRenderers/lambda$createEntityRenderers$0 (Lcom/google/common/collect/ImmutableMap$Builder;Lnet/minecraft/client/renderer/blockentity/BlockEntityRendererProvider$Context;Lnet/minecraft/world/level/block/entity/BlockEntityType;Lnet/minecraft/client/renderer/blockentity/BlockEntityRendererProvider;)V +MD: net/minecraft/client/renderer/blockentity/BrightnessCombiner/ ()V net/minecraft/client/renderer/blockentity/BrightnessCombiner/ ()V +MD: net/minecraft/client/renderer/blockentity/BrightnessCombiner/m_112315_ (I)I net/minecraft/client/renderer/blockentity/BrightnessCombiner/lambda$acceptNone$2 (I)I +MD: net/minecraft/client/renderer/blockentity/BrightnessCombiner/m_112322_ (Lnet/minecraft/world/level/block/entity/BlockEntity;Lnet/minecraft/world/level/block/entity/BlockEntity;I)I net/minecraft/client/renderer/blockentity/BrightnessCombiner/lambda$acceptDouble$0 (Lnet/minecraft/world/level/block/entity/BlockEntity;Lnet/minecraft/world/level/block/entity/BlockEntity;I)I +MD: net/minecraft/client/renderer/blockentity/BrightnessCombiner/m_112332_ (I)I net/minecraft/client/renderer/blockentity/BrightnessCombiner/lambda$acceptSingle$1 (I)I +MD: net/minecraft/client/renderer/blockentity/BrightnessCombiner/m_6502_ ()Lit/unimi/dsi/fastutil/ints/Int2IntFunction; net/minecraft/client/renderer/blockentity/BrightnessCombiner/acceptNone ()Lit/unimi/dsi/fastutil/ints/Int2IntFunction; +MD: net/minecraft/client/renderer/blockentity/BrightnessCombiner/m_6502_ ()Ljava/lang/Object; net/minecraft/client/renderer/blockentity/BrightnessCombiner/acceptNone ()Ljava/lang/Object; +MD: net/minecraft/client/renderer/blockentity/BrightnessCombiner/m_6959_ (Lnet/minecraft/world/level/block/entity/BlockEntity;Lnet/minecraft/world/level/block/entity/BlockEntity;)Lit/unimi/dsi/fastutil/ints/Int2IntFunction; net/minecraft/client/renderer/blockentity/BrightnessCombiner/acceptDouble (Lnet/minecraft/world/level/block/entity/BlockEntity;Lnet/minecraft/world/level/block/entity/BlockEntity;)Lit/unimi/dsi/fastutil/ints/Int2IntFunction; +MD: net/minecraft/client/renderer/blockentity/BrightnessCombiner/m_6959_ (Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object; net/minecraft/client/renderer/blockentity/BrightnessCombiner/acceptDouble (Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object; +MD: net/minecraft/client/renderer/blockentity/BrightnessCombiner/m_7693_ (Ljava/lang/Object;)Ljava/lang/Object; net/minecraft/client/renderer/blockentity/BrightnessCombiner/acceptSingle (Ljava/lang/Object;)Ljava/lang/Object; +MD: net/minecraft/client/renderer/blockentity/BrightnessCombiner/m_7693_ (Lnet/minecraft/world/level/block/entity/BlockEntity;)Lit/unimi/dsi/fastutil/ints/Int2IntFunction; net/minecraft/client/renderer/blockentity/BrightnessCombiner/acceptSingle (Lnet/minecraft/world/level/block/entity/BlockEntity;)Lit/unimi/dsi/fastutil/ints/Int2IntFunction; +MD: net/minecraft/client/renderer/blockentity/BrushableBlockRenderer/ (Lnet/minecraft/client/renderer/blockentity/BlockEntityRendererProvider$Context;)V net/minecraft/client/renderer/blockentity/BrushableBlockRenderer/ (Lnet/minecraft/client/renderer/blockentity/BlockEntityRendererProvider$Context;)V +MD: net/minecraft/client/renderer/blockentity/BrushableBlockRenderer/m_277029_ (Lnet/minecraft/core/Direction;I)[F net/minecraft/client/renderer/blockentity/BrushableBlockRenderer/translations (Lnet/minecraft/core/Direction;I)[F +MD: net/minecraft/client/renderer/blockentity/BrushableBlockRenderer/m_6922_ (Lnet/minecraft/world/level/block/entity/BrushableBlockEntity;FLcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;II)V net/minecraft/client/renderer/blockentity/BrushableBlockRenderer/render (Lnet/minecraft/world/level/block/entity/BrushableBlockEntity;FLcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;II)V +MD: net/minecraft/client/renderer/blockentity/BrushableBlockRenderer/m_6922_ (Lnet/minecraft/world/level/block/entity/BlockEntity;FLcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;II)V net/minecraft/client/renderer/blockentity/BrushableBlockRenderer/render (Lnet/minecraft/world/level/block/entity/BlockEntity;FLcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;II)V +MD: net/minecraft/client/renderer/blockentity/BrushableBlockRenderer$1/ ()V net/minecraft/client/renderer/blockentity/BrushableBlockRenderer$1/ ()V +MD: net/minecraft/client/renderer/blockentity/CampfireRenderer/ (Lnet/minecraft/client/renderer/blockentity/BlockEntityRendererProvider$Context;)V net/minecraft/client/renderer/blockentity/CampfireRenderer/ (Lnet/minecraft/client/renderer/blockentity/BlockEntityRendererProvider$Context;)V +MD: net/minecraft/client/renderer/blockentity/CampfireRenderer/m_6922_ (Lnet/minecraft/world/level/block/entity/CampfireBlockEntity;FLcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;II)V net/minecraft/client/renderer/blockentity/CampfireRenderer/render (Lnet/minecraft/world/level/block/entity/CampfireBlockEntity;FLcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;II)V +MD: net/minecraft/client/renderer/blockentity/CampfireRenderer/m_6922_ (Lnet/minecraft/world/level/block/entity/BlockEntity;FLcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;II)V net/minecraft/client/renderer/blockentity/CampfireRenderer/render (Lnet/minecraft/world/level/block/entity/BlockEntity;FLcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;II)V +MD: net/minecraft/client/renderer/blockentity/ChestRenderer/ (Lnet/minecraft/client/renderer/blockentity/BlockEntityRendererProvider$Context;)V net/minecraft/client/renderer/blockentity/ChestRenderer/ (Lnet/minecraft/client/renderer/blockentity/BlockEntityRendererProvider$Context;)V +MD: net/minecraft/client/renderer/blockentity/ChestRenderer/m_112369_ (Lcom/mojang/blaze3d/vertex/PoseStack;Lcom/mojang/blaze3d/vertex/VertexConsumer;Lnet/minecraft/client/model/geom/ModelPart;Lnet/minecraft/client/model/geom/ModelPart;Lnet/minecraft/client/model/geom/ModelPart;FII)V net/minecraft/client/renderer/blockentity/ChestRenderer/render (Lcom/mojang/blaze3d/vertex/PoseStack;Lcom/mojang/blaze3d/vertex/VertexConsumer;Lnet/minecraft/client/model/geom/ModelPart;Lnet/minecraft/client/model/geom/ModelPart;Lnet/minecraft/client/model/geom/ModelPart;FII)V +MD: net/minecraft/client/renderer/blockentity/ChestRenderer/m_173608_ ()Lnet/minecraft/client/model/geom/builders/LayerDefinition; net/minecraft/client/renderer/blockentity/ChestRenderer/createSingleBodyLayer ()Lnet/minecraft/client/model/geom/builders/LayerDefinition; +MD: net/minecraft/client/renderer/blockentity/ChestRenderer/m_173609_ ()Lnet/minecraft/client/model/geom/builders/LayerDefinition; net/minecraft/client/renderer/blockentity/ChestRenderer/createDoubleBodyRightLayer ()Lnet/minecraft/client/model/geom/builders/LayerDefinition; +MD: net/minecraft/client/renderer/blockentity/ChestRenderer/m_173610_ ()Lnet/minecraft/client/model/geom/builders/LayerDefinition; net/minecraft/client/renderer/blockentity/ChestRenderer/createDoubleBodyLeftLayer ()Lnet/minecraft/client/model/geom/builders/LayerDefinition; +MD: net/minecraft/client/renderer/blockentity/ChestRenderer/m_6922_ (Lnet/minecraft/world/level/block/entity/BlockEntity;FLcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;II)V net/minecraft/client/renderer/blockentity/ChestRenderer/render (Lnet/minecraft/world/level/block/entity/BlockEntity;FLcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;II)V +MD: net/minecraft/client/renderer/blockentity/ConduitRenderer/ ()V net/minecraft/client/renderer/blockentity/ConduitRenderer/ ()V +MD: net/minecraft/client/renderer/blockentity/ConduitRenderer/ (Lnet/minecraft/client/renderer/blockentity/BlockEntityRendererProvider$Context;)V net/minecraft/client/renderer/blockentity/ConduitRenderer/ (Lnet/minecraft/client/renderer/blockentity/BlockEntityRendererProvider$Context;)V +MD: net/minecraft/client/renderer/blockentity/ConduitRenderer/m_173614_ ()Lnet/minecraft/client/model/geom/builders/LayerDefinition; net/minecraft/client/renderer/blockentity/ConduitRenderer/createEyeLayer ()Lnet/minecraft/client/model/geom/builders/LayerDefinition; +MD: net/minecraft/client/renderer/blockentity/ConduitRenderer/m_173615_ ()Lnet/minecraft/client/model/geom/builders/LayerDefinition; net/minecraft/client/renderer/blockentity/ConduitRenderer/createWindLayer ()Lnet/minecraft/client/model/geom/builders/LayerDefinition; +MD: net/minecraft/client/renderer/blockentity/ConduitRenderer/m_173616_ ()Lnet/minecraft/client/model/geom/builders/LayerDefinition; net/minecraft/client/renderer/blockentity/ConduitRenderer/createShellLayer ()Lnet/minecraft/client/model/geom/builders/LayerDefinition; +MD: net/minecraft/client/renderer/blockentity/ConduitRenderer/m_173617_ ()Lnet/minecraft/client/model/geom/builders/LayerDefinition; net/minecraft/client/renderer/blockentity/ConduitRenderer/createCageLayer ()Lnet/minecraft/client/model/geom/builders/LayerDefinition; +MD: net/minecraft/client/renderer/blockentity/ConduitRenderer/m_6922_ (Lnet/minecraft/world/level/block/entity/BlockEntity;FLcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;II)V net/minecraft/client/renderer/blockentity/ConduitRenderer/render (Lnet/minecraft/world/level/block/entity/BlockEntity;FLcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;II)V +MD: net/minecraft/client/renderer/blockentity/ConduitRenderer/m_6922_ (Lnet/minecraft/world/level/block/entity/ConduitBlockEntity;FLcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;II)V net/minecraft/client/renderer/blockentity/ConduitRenderer/render (Lnet/minecraft/world/level/block/entity/ConduitBlockEntity;FLcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;II)V +MD: net/minecraft/client/renderer/blockentity/DecoratedPotRenderer/ (Lnet/minecraft/client/renderer/blockentity/BlockEntityRendererProvider$Context;)V net/minecraft/client/renderer/blockentity/DecoratedPotRenderer/ (Lnet/minecraft/client/renderer/blockentity/BlockEntityRendererProvider$Context;)V +MD: net/minecraft/client/renderer/blockentity/DecoratedPotRenderer/m_271834_ (Lnet/minecraft/world/item/Item;)Lnet/minecraft/client/resources/model/Material; net/minecraft/client/renderer/blockentity/DecoratedPotRenderer/getMaterial (Lnet/minecraft/world/item/Item;)Lnet/minecraft/client/resources/model/Material; +MD: net/minecraft/client/renderer/blockentity/DecoratedPotRenderer/m_271954_ (Lnet/minecraft/client/model/geom/ModelPart;Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;IILnet/minecraft/client/resources/model/Material;)V net/minecraft/client/renderer/blockentity/DecoratedPotRenderer/renderSide (Lnet/minecraft/client/model/geom/ModelPart;Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;IILnet/minecraft/client/resources/model/Material;)V +MD: net/minecraft/client/renderer/blockentity/DecoratedPotRenderer/m_272062_ ()Lnet/minecraft/client/model/geom/builders/LayerDefinition; net/minecraft/client/renderer/blockentity/DecoratedPotRenderer/createSidesLayer ()Lnet/minecraft/client/model/geom/builders/LayerDefinition; +MD: net/minecraft/client/renderer/blockentity/DecoratedPotRenderer/m_272233_ ()Lnet/minecraft/client/model/geom/builders/LayerDefinition; net/minecraft/client/renderer/blockentity/DecoratedPotRenderer/createBaseLayer ()Lnet/minecraft/client/model/geom/builders/LayerDefinition; +MD: net/minecraft/client/renderer/blockentity/DecoratedPotRenderer/m_6922_ (Lnet/minecraft/world/level/block/entity/DecoratedPotBlockEntity;FLcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;II)V net/minecraft/client/renderer/blockentity/DecoratedPotRenderer/render (Lnet/minecraft/world/level/block/entity/DecoratedPotBlockEntity;FLcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;II)V +MD: net/minecraft/client/renderer/blockentity/DecoratedPotRenderer/m_6922_ (Lnet/minecraft/world/level/block/entity/BlockEntity;FLcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;II)V net/minecraft/client/renderer/blockentity/DecoratedPotRenderer/render (Lnet/minecraft/world/level/block/entity/BlockEntity;FLcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;II)V +MD: net/minecraft/client/renderer/blockentity/EnchantTableRenderer/ ()V net/minecraft/client/renderer/blockentity/EnchantTableRenderer/ ()V +MD: net/minecraft/client/renderer/blockentity/EnchantTableRenderer/ (Lnet/minecraft/client/renderer/blockentity/BlockEntityRendererProvider$Context;)V net/minecraft/client/renderer/blockentity/EnchantTableRenderer/ (Lnet/minecraft/client/renderer/blockentity/BlockEntityRendererProvider$Context;)V +MD: net/minecraft/client/renderer/blockentity/EnchantTableRenderer/m_6922_ (Lnet/minecraft/world/level/block/entity/EnchantmentTableBlockEntity;FLcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;II)V net/minecraft/client/renderer/blockentity/EnchantTableRenderer/render (Lnet/minecraft/world/level/block/entity/EnchantmentTableBlockEntity;FLcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;II)V +MD: net/minecraft/client/renderer/blockentity/EnchantTableRenderer/m_6922_ (Lnet/minecraft/world/level/block/entity/BlockEntity;FLcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;II)V net/minecraft/client/renderer/blockentity/EnchantTableRenderer/render (Lnet/minecraft/world/level/block/entity/BlockEntity;FLcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;II)V +MD: net/minecraft/client/renderer/blockentity/HangingSignRenderer/ ()V net/minecraft/client/renderer/blockentity/HangingSignRenderer/ ()V +MD: net/minecraft/client/renderer/blockentity/HangingSignRenderer/ (Lnet/minecraft/client/renderer/blockentity/BlockEntityRendererProvider$Context;)V net/minecraft/client/renderer/blockentity/HangingSignRenderer/ (Lnet/minecraft/client/renderer/blockentity/BlockEntityRendererProvider$Context;)V +MD: net/minecraft/client/renderer/blockentity/HangingSignRenderer/m_245629_ (Lnet/minecraft/world/level/block/state/properties/WoodType;)Lnet/minecraft/client/resources/model/Material; net/minecraft/client/renderer/blockentity/HangingSignRenderer/getSignMaterial (Lnet/minecraft/world/level/block/state/properties/WoodType;)Lnet/minecraft/client/resources/model/Material; +MD: net/minecraft/client/renderer/blockentity/HangingSignRenderer/m_245648_ (Lnet/minecraft/client/renderer/blockentity/BlockEntityRendererProvider$Context;Lnet/minecraft/world/level/block/state/properties/WoodType;)Lnet/minecraft/client/renderer/blockentity/HangingSignRenderer$HangingSignModel; net/minecraft/client/renderer/blockentity/HangingSignRenderer/lambda$new$1 (Lnet/minecraft/client/renderer/blockentity/BlockEntityRendererProvider$Context;Lnet/minecraft/world/level/block/state/properties/WoodType;)Lnet/minecraft/client/renderer/blockentity/HangingSignRenderer$HangingSignModel; +MD: net/minecraft/client/renderer/blockentity/HangingSignRenderer/m_245885_ (Lcom/mojang/blaze3d/vertex/PoseStack;IILnet/minecraft/client/model/Model;Lcom/mojang/blaze3d/vertex/VertexConsumer;)V net/minecraft/client/renderer/blockentity/HangingSignRenderer/renderSignModel (Lcom/mojang/blaze3d/vertex/PoseStack;IILnet/minecraft/client/model/Model;Lcom/mojang/blaze3d/vertex/VertexConsumer;)V +MD: net/minecraft/client/renderer/blockentity/HangingSignRenderer/m_246656_ (Lnet/minecraft/world/level/block/state/properties/WoodType;)Lnet/minecraft/world/level/block/state/properties/WoodType; net/minecraft/client/renderer/blockentity/HangingSignRenderer/lambda$new$0 (Lnet/minecraft/world/level/block/state/properties/WoodType;)Lnet/minecraft/world/level/block/state/properties/WoodType; +MD: net/minecraft/client/renderer/blockentity/HangingSignRenderer/m_247112_ ()Lnet/minecraft/client/model/geom/builders/LayerDefinition; net/minecraft/client/renderer/blockentity/HangingSignRenderer/createHangingSignLayer ()Lnet/minecraft/client/model/geom/builders/LayerDefinition; +MD: net/minecraft/client/renderer/blockentity/HangingSignRenderer/m_276777_ (Lcom/mojang/blaze3d/vertex/PoseStack;FLnet/minecraft/world/level/block/state/BlockState;)V net/minecraft/client/renderer/blockentity/HangingSignRenderer/translateSign (Lcom/mojang/blaze3d/vertex/PoseStack;FLnet/minecraft/world/level/block/state/BlockState;)V +MD: net/minecraft/client/renderer/blockentity/HangingSignRenderer/m_278631_ ()F net/minecraft/client/renderer/blockentity/HangingSignRenderer/getSignTextRenderScale ()F +MD: net/minecraft/client/renderer/blockentity/HangingSignRenderer/m_278725_ ()Lnet/minecraft/world/phys/Vec3; net/minecraft/client/renderer/blockentity/HangingSignRenderer/getTextOffset ()Lnet/minecraft/world/phys/Vec3; +MD: net/minecraft/client/renderer/blockentity/HangingSignRenderer/m_278770_ ()F net/minecraft/client/renderer/blockentity/HangingSignRenderer/getSignModelRenderScale ()F +MD: net/minecraft/client/renderer/blockentity/HangingSignRenderer/m_6922_ (Lnet/minecraft/world/level/block/entity/SignBlockEntity;FLcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;II)V net/minecraft/client/renderer/blockentity/HangingSignRenderer/render (Lnet/minecraft/world/level/block/entity/SignBlockEntity;FLcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;II)V +MD: net/minecraft/client/renderer/blockentity/HangingSignRenderer/m_6922_ (Lnet/minecraft/world/level/block/entity/BlockEntity;FLcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;II)V net/minecraft/client/renderer/blockentity/HangingSignRenderer/render (Lnet/minecraft/world/level/block/entity/BlockEntity;FLcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;II)V +MD: net/minecraft/client/renderer/blockentity/HangingSignRenderer$HangingSignModel/ (Lnet/minecraft/client/model/geom/ModelPart;)V net/minecraft/client/renderer/blockentity/HangingSignRenderer$HangingSignModel/ (Lnet/minecraft/client/model/geom/ModelPart;)V +MD: net/minecraft/client/renderer/blockentity/HangingSignRenderer$HangingSignModel/m_246561_ (Lnet/minecraft/world/level/block/state/BlockState;)V net/minecraft/client/renderer/blockentity/HangingSignRenderer$HangingSignModel/evaluateVisibleParts (Lnet/minecraft/world/level/block/state/BlockState;)V +MD: net/minecraft/client/renderer/blockentity/HangingSignRenderer$HangingSignModel/m_7695_ (Lcom/mojang/blaze3d/vertex/PoseStack;Lcom/mojang/blaze3d/vertex/VertexConsumer;IIFFFF)V net/minecraft/client/renderer/blockentity/HangingSignRenderer$HangingSignModel/renderToBuffer (Lcom/mojang/blaze3d/vertex/PoseStack;Lcom/mojang/blaze3d/vertex/VertexConsumer;IIFFFF)V +MD: net/minecraft/client/renderer/blockentity/LecternRenderer/ (Lnet/minecraft/client/renderer/blockentity/BlockEntityRendererProvider$Context;)V net/minecraft/client/renderer/blockentity/LecternRenderer/ (Lnet/minecraft/client/renderer/blockentity/BlockEntityRendererProvider$Context;)V +MD: net/minecraft/client/renderer/blockentity/LecternRenderer/m_6922_ (Lnet/minecraft/world/level/block/entity/LecternBlockEntity;FLcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;II)V net/minecraft/client/renderer/blockentity/LecternRenderer/render (Lnet/minecraft/world/level/block/entity/LecternBlockEntity;FLcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;II)V +MD: net/minecraft/client/renderer/blockentity/LecternRenderer/m_6922_ (Lnet/minecraft/world/level/block/entity/BlockEntity;FLcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;II)V net/minecraft/client/renderer/blockentity/LecternRenderer/render (Lnet/minecraft/world/level/block/entity/BlockEntity;FLcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;II)V +MD: net/minecraft/client/renderer/blockentity/PistonHeadRenderer/ (Lnet/minecraft/client/renderer/blockentity/BlockEntityRendererProvider$Context;)V net/minecraft/client/renderer/blockentity/PistonHeadRenderer/ (Lnet/minecraft/client/renderer/blockentity/BlockEntityRendererProvider$Context;)V +MD: net/minecraft/client/renderer/blockentity/PistonHeadRenderer/m_112458_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;Lnet/minecraft/world/level/Level;ZI)V net/minecraft/client/renderer/blockentity/PistonHeadRenderer/renderBlock (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;Lnet/minecraft/world/level/Level;ZI)V +MD: net/minecraft/client/renderer/blockentity/PistonHeadRenderer/m_142163_ ()I net/minecraft/client/renderer/blockentity/PistonHeadRenderer/getViewDistance ()I +MD: net/minecraft/client/renderer/blockentity/PistonHeadRenderer/m_6922_ (Lnet/minecraft/world/level/block/piston/PistonMovingBlockEntity;FLcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;II)V net/minecraft/client/renderer/blockentity/PistonHeadRenderer/render (Lnet/minecraft/world/level/block/piston/PistonMovingBlockEntity;FLcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;II)V +MD: net/minecraft/client/renderer/blockentity/PistonHeadRenderer/m_6922_ (Lnet/minecraft/world/level/block/entity/BlockEntity;FLcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;II)V net/minecraft/client/renderer/blockentity/PistonHeadRenderer/render (Lnet/minecraft/world/level/block/entity/BlockEntity;FLcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;II)V +MD: net/minecraft/client/renderer/blockentity/ShulkerBoxRenderer/ (Lnet/minecraft/client/renderer/blockentity/BlockEntityRendererProvider$Context;)V net/minecraft/client/renderer/blockentity/ShulkerBoxRenderer/ (Lnet/minecraft/client/renderer/blockentity/BlockEntityRendererProvider$Context;)V +MD: net/minecraft/client/renderer/blockentity/ShulkerBoxRenderer/m_6922_ (Lnet/minecraft/world/level/block/entity/BlockEntity;FLcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;II)V net/minecraft/client/renderer/blockentity/ShulkerBoxRenderer/render (Lnet/minecraft/world/level/block/entity/BlockEntity;FLcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;II)V +MD: net/minecraft/client/renderer/blockentity/ShulkerBoxRenderer/m_6922_ (Lnet/minecraft/world/level/block/entity/ShulkerBoxBlockEntity;FLcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;II)V net/minecraft/client/renderer/blockentity/ShulkerBoxRenderer/render (Lnet/minecraft/world/level/block/entity/ShulkerBoxBlockEntity;FLcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;II)V +MD: net/minecraft/client/renderer/blockentity/SignRenderer/ ()V net/minecraft/client/renderer/blockentity/SignRenderer/ ()V +MD: net/minecraft/client/renderer/blockentity/SignRenderer/ (Lnet/minecraft/client/renderer/blockentity/BlockEntityRendererProvider$Context;)V net/minecraft/client/renderer/blockentity/SignRenderer/ (Lnet/minecraft/client/renderer/blockentity/BlockEntityRendererProvider$Context;)V +MD: net/minecraft/client/renderer/blockentity/SignRenderer/m_173639_ (Lnet/minecraft/world/level/block/entity/SignText;)I net/minecraft/client/renderer/blockentity/SignRenderer/getDarkColor (Lnet/minecraft/world/level/block/entity/SignText;)I +MD: net/minecraft/client/renderer/blockentity/SignRenderer/m_173644_ (Lnet/minecraft/world/level/block/state/properties/WoodType;)Lnet/minecraft/world/level/block/state/properties/WoodType; net/minecraft/client/renderer/blockentity/SignRenderer/lambda$new$0 (Lnet/minecraft/world/level/block/state/properties/WoodType;)Lnet/minecraft/world/level/block/state/properties/WoodType; +MD: net/minecraft/client/renderer/blockentity/SignRenderer/m_173646_ (Lnet/minecraft/client/model/geom/EntityModelSet;Lnet/minecraft/world/level/block/state/properties/WoodType;)Lnet/minecraft/client/renderer/blockentity/SignRenderer$SignModel; net/minecraft/client/renderer/blockentity/SignRenderer/createSignModel (Lnet/minecraft/client/model/geom/EntityModelSet;Lnet/minecraft/world/level/block/state/properties/WoodType;)Lnet/minecraft/client/renderer/blockentity/SignRenderer$SignModel; +MD: net/minecraft/client/renderer/blockentity/SignRenderer/m_173649_ (Lnet/minecraft/client/renderer/blockentity/BlockEntityRendererProvider$Context;Lnet/minecraft/world/level/block/state/properties/WoodType;)Lnet/minecraft/client/renderer/blockentity/SignRenderer$SignModel; net/minecraft/client/renderer/blockentity/SignRenderer/lambda$new$1 (Lnet/minecraft/client/renderer/blockentity/BlockEntityRendererProvider$Context;Lnet/minecraft/world/level/block/state/properties/WoodType;)Lnet/minecraft/client/renderer/blockentity/SignRenderer$SignModel; +MD: net/minecraft/client/renderer/blockentity/SignRenderer/m_173654_ ()Lnet/minecraft/client/model/geom/builders/LayerDefinition; net/minecraft/client/renderer/blockentity/SignRenderer/createSignLayer ()Lnet/minecraft/client/model/geom/builders/LayerDefinition; +MD: net/minecraft/client/renderer/blockentity/SignRenderer/m_245629_ (Lnet/minecraft/world/level/block/state/properties/WoodType;)Lnet/minecraft/client/resources/model/Material; net/minecraft/client/renderer/blockentity/SignRenderer/getSignMaterial (Lnet/minecraft/world/level/block/state/properties/WoodType;)Lnet/minecraft/client/resources/model/Material; +MD: net/minecraft/client/renderer/blockentity/SignRenderer/m_245885_ (Lcom/mojang/blaze3d/vertex/PoseStack;IILnet/minecraft/client/model/Model;Lcom/mojang/blaze3d/vertex/VertexConsumer;)V net/minecraft/client/renderer/blockentity/SignRenderer/renderSignModel (Lcom/mojang/blaze3d/vertex/PoseStack;IILnet/minecraft/client/model/Model;Lcom/mojang/blaze3d/vertex/VertexConsumer;)V +MD: net/minecraft/client/renderer/blockentity/SignRenderer/m_276705_ (ILnet/minecraft/network/chat/Component;)Lnet/minecraft/util/FormattedCharSequence; net/minecraft/client/renderer/blockentity/SignRenderer/lambda$renderSignText$2 (ILnet/minecraft/network/chat/Component;)Lnet/minecraft/util/FormattedCharSequence; +MD: net/minecraft/client/renderer/blockentity/SignRenderer/m_276777_ (Lcom/mojang/blaze3d/vertex/PoseStack;FLnet/minecraft/world/level/block/state/BlockState;)V net/minecraft/client/renderer/blockentity/SignRenderer/translateSign (Lcom/mojang/blaze3d/vertex/PoseStack;FLnet/minecraft/world/level/block/state/BlockState;)V +MD: net/minecraft/client/renderer/blockentity/SignRenderer/m_277119_ (Lnet/minecraft/core/BlockPos;I)Z net/minecraft/client/renderer/blockentity/SignRenderer/isOutlineVisible (Lnet/minecraft/core/BlockPos;I)Z +MD: net/minecraft/client/renderer/blockentity/SignRenderer/m_278631_ ()F net/minecraft/client/renderer/blockentity/SignRenderer/getSignTextRenderScale ()F +MD: net/minecraft/client/renderer/blockentity/SignRenderer/m_278725_ ()Lnet/minecraft/world/phys/Vec3; net/minecraft/client/renderer/blockentity/SignRenderer/getTextOffset ()Lnet/minecraft/world/phys/Vec3; +MD: net/minecraft/client/renderer/blockentity/SignRenderer/m_278756_ (Lnet/minecraft/world/level/block/entity/SignBlockEntity;Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;IILnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/SignBlock;Lnet/minecraft/world/level/block/state/properties/WoodType;Lnet/minecraft/client/model/Model;)V net/minecraft/client/renderer/blockentity/SignRenderer/renderSignWithText (Lnet/minecraft/world/level/block/entity/SignBlockEntity;Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;IILnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/SignBlock;Lnet/minecraft/world/level/block/state/properties/WoodType;Lnet/minecraft/client/model/Model;)V +MD: net/minecraft/client/renderer/blockentity/SignRenderer/m_278770_ ()F net/minecraft/client/renderer/blockentity/SignRenderer/getSignModelRenderScale ()F +MD: net/minecraft/client/renderer/blockentity/SignRenderer/m_278784_ (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;IILnet/minecraft/world/level/block/state/properties/WoodType;Lnet/minecraft/client/model/Model;)V net/minecraft/client/renderer/blockentity/SignRenderer/renderSign (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;IILnet/minecraft/world/level/block/state/properties/WoodType;Lnet/minecraft/client/model/Model;)V +MD: net/minecraft/client/renderer/blockentity/SignRenderer/m_278823_ (Lcom/mojang/blaze3d/vertex/PoseStack;ZLnet/minecraft/world/phys/Vec3;)V net/minecraft/client/renderer/blockentity/SignRenderer/translateSignText (Lcom/mojang/blaze3d/vertex/PoseStack;ZLnet/minecraft/world/phys/Vec3;)V +MD: net/minecraft/client/renderer/blockentity/SignRenderer/m_278841_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/entity/SignText;Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;IIIZ)V net/minecraft/client/renderer/blockentity/SignRenderer/renderSignText (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/entity/SignText;Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;IIIZ)V +MD: net/minecraft/client/renderer/blockentity/SignRenderer/m_6922_ (Lnet/minecraft/world/level/block/entity/SignBlockEntity;FLcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;II)V net/minecraft/client/renderer/blockentity/SignRenderer/render (Lnet/minecraft/world/level/block/entity/SignBlockEntity;FLcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;II)V +MD: net/minecraft/client/renderer/blockentity/SignRenderer/m_6922_ (Lnet/minecraft/world/level/block/entity/BlockEntity;FLcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;II)V net/minecraft/client/renderer/blockentity/SignRenderer/render (Lnet/minecraft/world/level/block/entity/BlockEntity;FLcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;II)V +MD: net/minecraft/client/renderer/blockentity/SignRenderer$SignModel/ (Lnet/minecraft/client/model/geom/ModelPart;)V net/minecraft/client/renderer/blockentity/SignRenderer$SignModel/ (Lnet/minecraft/client/model/geom/ModelPart;)V +MD: net/minecraft/client/renderer/blockentity/SignRenderer$SignModel/m_7695_ (Lcom/mojang/blaze3d/vertex/PoseStack;Lcom/mojang/blaze3d/vertex/VertexConsumer;IIFFFF)V net/minecraft/client/renderer/blockentity/SignRenderer$SignModel/renderToBuffer (Lcom/mojang/blaze3d/vertex/PoseStack;Lcom/mojang/blaze3d/vertex/VertexConsumer;IIFFFF)V +MD: net/minecraft/client/renderer/blockentity/SkullBlockRenderer/ ()V net/minecraft/client/renderer/blockentity/SkullBlockRenderer/ ()V +MD: net/minecraft/client/renderer/blockentity/SkullBlockRenderer/ (Lnet/minecraft/client/renderer/blockentity/BlockEntityRendererProvider$Context;)V net/minecraft/client/renderer/blockentity/SkullBlockRenderer/ (Lnet/minecraft/client/renderer/blockentity/BlockEntityRendererProvider$Context;)V +MD: net/minecraft/client/renderer/blockentity/SkullBlockRenderer/m_112523_ (Lnet/minecraft/world/level/block/SkullBlock$Type;Lcom/mojang/authlib/GameProfile;)Lnet/minecraft/client/renderer/RenderType; net/minecraft/client/renderer/blockentity/SkullBlockRenderer/getRenderType (Lnet/minecraft/world/level/block/SkullBlock$Type;Lcom/mojang/authlib/GameProfile;)Lnet/minecraft/client/renderer/RenderType; +MD: net/minecraft/client/renderer/blockentity/SkullBlockRenderer/m_173661_ (Lnet/minecraft/client/model/geom/EntityModelSet;)Ljava/util/Map; net/minecraft/client/renderer/blockentity/SkullBlockRenderer/createSkullRenderers (Lnet/minecraft/client/model/geom/EntityModelSet;)Ljava/util/Map; +MD: net/minecraft/client/renderer/blockentity/SkullBlockRenderer/m_173663_ (Lnet/minecraft/core/Direction;FFLcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;ILnet/minecraft/client/model/SkullModelBase;Lnet/minecraft/client/renderer/RenderType;)V net/minecraft/client/renderer/blockentity/SkullBlockRenderer/renderSkull (Lnet/minecraft/core/Direction;FFLcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;ILnet/minecraft/client/model/SkullModelBase;Lnet/minecraft/client/renderer/RenderType;)V +MD: net/minecraft/client/renderer/blockentity/SkullBlockRenderer/m_260765_ (Ljava/util/HashMap;)V net/minecraft/client/renderer/blockentity/SkullBlockRenderer/lambda$static$0 (Ljava/util/HashMap;)V +MD: net/minecraft/client/renderer/blockentity/SkullBlockRenderer/m_6922_ (Lnet/minecraft/world/level/block/entity/SkullBlockEntity;FLcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;II)V net/minecraft/client/renderer/blockentity/SkullBlockRenderer/render (Lnet/minecraft/world/level/block/entity/SkullBlockEntity;FLcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;II)V +MD: net/minecraft/client/renderer/blockentity/SkullBlockRenderer/m_6922_ (Lnet/minecraft/world/level/block/entity/BlockEntity;FLcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;II)V net/minecraft/client/renderer/blockentity/SkullBlockRenderer/render (Lnet/minecraft/world/level/block/entity/BlockEntity;FLcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;II)V +MD: net/minecraft/client/renderer/blockentity/SpawnerRenderer/ (Lnet/minecraft/client/renderer/blockentity/BlockEntityRendererProvider$Context;)V net/minecraft/client/renderer/blockentity/SpawnerRenderer/ (Lnet/minecraft/client/renderer/blockentity/BlockEntityRendererProvider$Context;)V +MD: net/minecraft/client/renderer/blockentity/SpawnerRenderer/m_6922_ (Lnet/minecraft/world/level/block/entity/BlockEntity;FLcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;II)V net/minecraft/client/renderer/blockentity/SpawnerRenderer/render (Lnet/minecraft/world/level/block/entity/BlockEntity;FLcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;II)V +MD: net/minecraft/client/renderer/blockentity/SpawnerRenderer/m_6922_ (Lnet/minecraft/world/level/block/entity/SpawnerBlockEntity;FLcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;II)V net/minecraft/client/renderer/blockentity/SpawnerRenderer/render (Lnet/minecraft/world/level/block/entity/SpawnerBlockEntity;FLcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;II)V +MD: net/minecraft/client/renderer/blockentity/StructureBlockRenderer/ (Lnet/minecraft/client/renderer/blockentity/BlockEntityRendererProvider$Context;)V net/minecraft/client/renderer/blockentity/StructureBlockRenderer/ (Lnet/minecraft/client/renderer/blockentity/BlockEntityRendererProvider$Context;)V +MD: net/minecraft/client/renderer/blockentity/StructureBlockRenderer/m_142163_ ()I net/minecraft/client/renderer/blockentity/StructureBlockRenderer/getViewDistance ()I +MD: net/minecraft/client/renderer/blockentity/StructureBlockRenderer/m_173676_ (Lnet/minecraft/world/level/block/entity/StructureBlockEntity;Lcom/mojang/blaze3d/vertex/VertexConsumer;Lnet/minecraft/core/BlockPos;Lcom/mojang/blaze3d/vertex/PoseStack;)V net/minecraft/client/renderer/blockentity/StructureBlockRenderer/renderInvisibleBlocks (Lnet/minecraft/world/level/block/entity/StructureBlockEntity;Lcom/mojang/blaze3d/vertex/VertexConsumer;Lnet/minecraft/core/BlockPos;Lcom/mojang/blaze3d/vertex/PoseStack;)V +MD: net/minecraft/client/renderer/blockentity/StructureBlockRenderer/m_5932_ (Lnet/minecraft/world/level/block/entity/StructureBlockEntity;)Z net/minecraft/client/renderer/blockentity/StructureBlockRenderer/shouldRenderOffScreen (Lnet/minecraft/world/level/block/entity/StructureBlockEntity;)Z +MD: net/minecraft/client/renderer/blockentity/StructureBlockRenderer/m_5932_ (Lnet/minecraft/world/level/block/entity/BlockEntity;)Z net/minecraft/client/renderer/blockentity/StructureBlockRenderer/shouldRenderOffScreen (Lnet/minecraft/world/level/block/entity/BlockEntity;)Z +MD: net/minecraft/client/renderer/blockentity/StructureBlockRenderer/m_6922_ (Lnet/minecraft/world/level/block/entity/BlockEntity;FLcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;II)V net/minecraft/client/renderer/blockentity/StructureBlockRenderer/render (Lnet/minecraft/world/level/block/entity/BlockEntity;FLcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;II)V +MD: net/minecraft/client/renderer/blockentity/StructureBlockRenderer/m_6922_ (Lnet/minecraft/world/level/block/entity/StructureBlockEntity;FLcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;II)V net/minecraft/client/renderer/blockentity/StructureBlockRenderer/render (Lnet/minecraft/world/level/block/entity/StructureBlockEntity;FLcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;II)V +MD: net/minecraft/client/renderer/blockentity/StructureBlockRenderer$1/ ()V net/minecraft/client/renderer/blockentity/StructureBlockRenderer$1/ ()V +MD: net/minecraft/client/renderer/blockentity/TheEndGatewayRenderer/ ()V net/minecraft/client/renderer/blockentity/TheEndGatewayRenderer/ ()V +MD: net/minecraft/client/renderer/blockentity/TheEndGatewayRenderer/ (Lnet/minecraft/client/renderer/blockentity/BlockEntityRendererProvider$Context;)V net/minecraft/client/renderer/blockentity/TheEndGatewayRenderer/ (Lnet/minecraft/client/renderer/blockentity/BlockEntityRendererProvider$Context;)V +MD: net/minecraft/client/renderer/blockentity/TheEndGatewayRenderer/m_142163_ ()I net/minecraft/client/renderer/blockentity/TheEndGatewayRenderer/getViewDistance ()I +MD: net/minecraft/client/renderer/blockentity/TheEndGatewayRenderer/m_142330_ ()Lnet/minecraft/client/renderer/RenderType; net/minecraft/client/renderer/blockentity/TheEndGatewayRenderer/renderType ()Lnet/minecraft/client/renderer/RenderType; +MD: net/minecraft/client/renderer/blockentity/TheEndGatewayRenderer/m_142489_ ()F net/minecraft/client/renderer/blockentity/TheEndGatewayRenderer/getOffsetDown ()F +MD: net/minecraft/client/renderer/blockentity/TheEndGatewayRenderer/m_142491_ ()F net/minecraft/client/renderer/blockentity/TheEndGatewayRenderer/getOffsetUp ()F +MD: net/minecraft/client/renderer/blockentity/TheEndGatewayRenderer/m_6922_ (Lnet/minecraft/world/level/block/entity/BlockEntity;FLcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;II)V net/minecraft/client/renderer/blockentity/TheEndGatewayRenderer/render (Lnet/minecraft/world/level/block/entity/BlockEntity;FLcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;II)V +MD: net/minecraft/client/renderer/blockentity/TheEndGatewayRenderer/m_6922_ (Lnet/minecraft/world/level/block/entity/TheEndGatewayBlockEntity;FLcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;II)V net/minecraft/client/renderer/blockentity/TheEndGatewayRenderer/render (Lnet/minecraft/world/level/block/entity/TheEndGatewayBlockEntity;FLcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;II)V +MD: net/minecraft/client/renderer/blockentity/TheEndGatewayRenderer/m_6922_ (Lnet/minecraft/world/level/block/entity/TheEndPortalBlockEntity;FLcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;II)V net/minecraft/client/renderer/blockentity/TheEndGatewayRenderer/render (Lnet/minecraft/world/level/block/entity/TheEndPortalBlockEntity;FLcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;II)V +MD: net/minecraft/client/renderer/blockentity/TheEndPortalRenderer/ ()V net/minecraft/client/renderer/blockentity/TheEndPortalRenderer/ ()V +MD: net/minecraft/client/renderer/blockentity/TheEndPortalRenderer/ (Lnet/minecraft/client/renderer/blockentity/BlockEntityRendererProvider$Context;)V net/minecraft/client/renderer/blockentity/TheEndPortalRenderer/ (Lnet/minecraft/client/renderer/blockentity/BlockEntityRendererProvider$Context;)V +MD: net/minecraft/client/renderer/blockentity/TheEndPortalRenderer/m_142330_ ()Lnet/minecraft/client/renderer/RenderType; net/minecraft/client/renderer/blockentity/TheEndPortalRenderer/renderType ()Lnet/minecraft/client/renderer/RenderType; +MD: net/minecraft/client/renderer/blockentity/TheEndPortalRenderer/m_142489_ ()F net/minecraft/client/renderer/blockentity/TheEndPortalRenderer/getOffsetDown ()F +MD: net/minecraft/client/renderer/blockentity/TheEndPortalRenderer/m_142491_ ()F net/minecraft/client/renderer/blockentity/TheEndPortalRenderer/getOffsetUp ()F +MD: net/minecraft/client/renderer/blockentity/TheEndPortalRenderer/m_173690_ (Lnet/minecraft/world/level/block/entity/TheEndPortalBlockEntity;Lorg/joml/Matrix4f;Lcom/mojang/blaze3d/vertex/VertexConsumer;)V net/minecraft/client/renderer/blockentity/TheEndPortalRenderer/renderCube (Lnet/minecraft/world/level/block/entity/TheEndPortalBlockEntity;Lorg/joml/Matrix4f;Lcom/mojang/blaze3d/vertex/VertexConsumer;)V +MD: net/minecraft/client/renderer/blockentity/TheEndPortalRenderer/m_252771_ (Lnet/minecraft/world/level/block/entity/TheEndPortalBlockEntity;Lorg/joml/Matrix4f;Lcom/mojang/blaze3d/vertex/VertexConsumer;FFFFFFFFLnet/minecraft/core/Direction;)V net/minecraft/client/renderer/blockentity/TheEndPortalRenderer/renderFace (Lnet/minecraft/world/level/block/entity/TheEndPortalBlockEntity;Lorg/joml/Matrix4f;Lcom/mojang/blaze3d/vertex/VertexConsumer;FFFFFFFFLnet/minecraft/core/Direction;)V +MD: net/minecraft/client/renderer/blockentity/TheEndPortalRenderer/m_6922_ (Lnet/minecraft/world/level/block/entity/BlockEntity;FLcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;II)V net/minecraft/client/renderer/blockentity/TheEndPortalRenderer/render (Lnet/minecraft/world/level/block/entity/BlockEntity;FLcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;II)V +MD: net/minecraft/client/renderer/blockentity/TheEndPortalRenderer/m_6922_ (Lnet/minecraft/world/level/block/entity/TheEndPortalBlockEntity;FLcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;II)V net/minecraft/client/renderer/blockentity/TheEndPortalRenderer/render (Lnet/minecraft/world/level/block/entity/TheEndPortalBlockEntity;FLcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;II)V +MD: net/minecraft/client/renderer/chunk/ChunkRenderDispatcher/ ()V net/minecraft/client/renderer/chunk/ChunkRenderDispatcher/ ()V +MD: net/minecraft/client/renderer/chunk/ChunkRenderDispatcher/ (Lnet/minecraft/client/multiplayer/ClientLevel;Lnet/minecraft/client/renderer/LevelRenderer;Ljava/util/concurrent/Executor;ZLnet/minecraft/client/renderer/ChunkBufferBuilderPack;)V net/minecraft/client/renderer/chunk/ChunkRenderDispatcher/ (Lnet/minecraft/client/multiplayer/ClientLevel;Lnet/minecraft/client/renderer/LevelRenderer;Ljava/util/concurrent/Executor;ZLnet/minecraft/client/renderer/ChunkBufferBuilderPack;)V +MD: net/minecraft/client/renderer/chunk/ChunkRenderDispatcher/m_112693_ (Lnet/minecraft/world/phys/Vec3;)V net/minecraft/client/renderer/chunk/ChunkRenderDispatcher/setCamera (Lnet/minecraft/world/phys/Vec3;)V +MD: net/minecraft/client/renderer/chunk/ChunkRenderDispatcher/m_112709_ (Lnet/minecraft/client/renderer/chunk/ChunkRenderDispatcher$RenderChunk$ChunkCompileTask;)V net/minecraft/client/renderer/chunk/ChunkRenderDispatcher/schedule (Lnet/minecraft/client/renderer/chunk/ChunkRenderDispatcher$RenderChunk$ChunkCompileTask;)V +MD: net/minecraft/client/renderer/chunk/ChunkRenderDispatcher/m_112719_ ()Ljava/lang/String; net/minecraft/client/renderer/chunk/ChunkRenderDispatcher/getStats ()Ljava/lang/String; +MD: net/minecraft/client/renderer/chunk/ChunkRenderDispatcher/m_112727_ ()Lnet/minecraft/world/phys/Vec3; net/minecraft/client/renderer/chunk/ChunkRenderDispatcher/getCameraPosition ()Lnet/minecraft/world/phys/Vec3; +MD: net/minecraft/client/renderer/chunk/ChunkRenderDispatcher/m_112731_ ()V net/minecraft/client/renderer/chunk/ChunkRenderDispatcher/blockUntilClear ()V +MD: net/minecraft/client/renderer/chunk/ChunkRenderDispatcher/m_112732_ ()Z net/minecraft/client/renderer/chunk/ChunkRenderDispatcher/isQueueEmpty ()Z +MD: net/minecraft/client/renderer/chunk/ChunkRenderDispatcher/m_112733_ ()V net/minecraft/client/renderer/chunk/ChunkRenderDispatcher/dispose ()V +MD: net/minecraft/client/renderer/chunk/ChunkRenderDispatcher/m_112734_ ()V net/minecraft/client/renderer/chunk/ChunkRenderDispatcher/runTask ()V +MD: net/minecraft/client/renderer/chunk/ChunkRenderDispatcher/m_112735_ ()V net/minecraft/client/renderer/chunk/ChunkRenderDispatcher/clearBatchQueue ()V +MD: net/minecraft/client/renderer/chunk/ChunkRenderDispatcher/m_173712_ ()I net/minecraft/client/renderer/chunk/ChunkRenderDispatcher/getToBatchCount ()I +MD: net/minecraft/client/renderer/chunk/ChunkRenderDispatcher/m_173713_ ()I net/minecraft/client/renderer/chunk/ChunkRenderDispatcher/getToUpload ()I +MD: net/minecraft/client/renderer/chunk/ChunkRenderDispatcher/m_173714_ ()I net/minecraft/client/renderer/chunk/ChunkRenderDispatcher/getFreeBufferCount ()I +MD: net/minecraft/client/renderer/chunk/ChunkRenderDispatcher/m_194410_ (Lnet/minecraft/client/multiplayer/ClientLevel;)V net/minecraft/client/renderer/chunk/ChunkRenderDispatcher/setLevel (Lnet/minecraft/client/multiplayer/ClientLevel;)V +MD: net/minecraft/client/renderer/chunk/ChunkRenderDispatcher/m_194412_ (Lnet/minecraft/client/renderer/chunk/ChunkRenderDispatcher$RenderChunk$ChunkCompileTask;Lnet/minecraft/client/renderer/ChunkBufferBuilderPack;)Ljava/util/concurrent/CompletableFuture; net/minecraft/client/renderer/chunk/ChunkRenderDispatcher/lambda$runTask$0 (Lnet/minecraft/client/renderer/chunk/ChunkRenderDispatcher$RenderChunk$ChunkCompileTask;Lnet/minecraft/client/renderer/ChunkBufferBuilderPack;)Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/client/renderer/chunk/ChunkRenderDispatcher/m_194415_ (Ljava/util/concurrent/CompletableFuture;)Ljava/util/concurrent/CompletionStage; net/minecraft/client/renderer/chunk/ChunkRenderDispatcher/lambda$runTask$1 (Ljava/util/concurrent/CompletableFuture;)Ljava/util/concurrent/CompletionStage; +MD: net/minecraft/client/renderer/chunk/ChunkRenderDispatcher/m_194417_ ()V net/minecraft/client/renderer/chunk/ChunkRenderDispatcher/uploadAllPendingUploads ()V +MD: net/minecraft/client/renderer/chunk/ChunkRenderDispatcher/m_194418_ ()Lnet/minecraft/client/renderer/chunk/ChunkRenderDispatcher$RenderChunk$ChunkCompileTask; net/minecraft/client/renderer/chunk/ChunkRenderDispatcher/pollTask ()Lnet/minecraft/client/renderer/chunk/ChunkRenderDispatcher$RenderChunk$ChunkCompileTask; +MD: net/minecraft/client/renderer/chunk/ChunkRenderDispatcher/m_200431_ (Lnet/minecraft/client/renderer/chunk/ChunkRenderDispatcher$RenderChunk;Lnet/minecraft/client/renderer/chunk/RenderRegionCache;)V net/minecraft/client/renderer/chunk/ChunkRenderDispatcher/rebuildChunkSync (Lnet/minecraft/client/renderer/chunk/ChunkRenderDispatcher$RenderChunk;Lnet/minecraft/client/renderer/chunk/RenderRegionCache;)V +MD: net/minecraft/client/renderer/chunk/ChunkRenderDispatcher/m_234450_ (Lcom/mojang/blaze3d/vertex/BufferBuilder$RenderedBuffer;Lcom/mojang/blaze3d/vertex/VertexBuffer;)Ljava/util/concurrent/CompletableFuture; net/minecraft/client/renderer/chunk/ChunkRenderDispatcher/uploadChunkLayer (Lcom/mojang/blaze3d/vertex/BufferBuilder$RenderedBuffer;Lcom/mojang/blaze3d/vertex/VertexBuffer;)Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/client/renderer/chunk/ChunkRenderDispatcher/m_234453_ (Lcom/mojang/blaze3d/vertex/VertexBuffer;Lcom/mojang/blaze3d/vertex/BufferBuilder$RenderedBuffer;)V net/minecraft/client/renderer/chunk/ChunkRenderDispatcher/lambda$uploadChunkLayer$5 (Lcom/mojang/blaze3d/vertex/VertexBuffer;Lcom/mojang/blaze3d/vertex/BufferBuilder$RenderedBuffer;)V +MD: net/minecraft/client/renderer/chunk/ChunkRenderDispatcher/m_234456_ (Lnet/minecraft/client/renderer/ChunkBufferBuilderPack;Lnet/minecraft/client/renderer/chunk/ChunkRenderDispatcher$ChunkTaskResult;Ljava/lang/Throwable;)V net/minecraft/client/renderer/chunk/ChunkRenderDispatcher/lambda$runTask$3 (Lnet/minecraft/client/renderer/ChunkBufferBuilderPack;Lnet/minecraft/client/renderer/chunk/ChunkRenderDispatcher$ChunkTaskResult;Ljava/lang/Throwable;)V +MD: net/minecraft/client/renderer/chunk/ChunkRenderDispatcher/m_234460_ (Lnet/minecraft/client/renderer/chunk/ChunkRenderDispatcher$ChunkTaskResult;Lnet/minecraft/client/renderer/ChunkBufferBuilderPack;)V net/minecraft/client/renderer/chunk/ChunkRenderDispatcher/lambda$runTask$2 (Lnet/minecraft/client/renderer/chunk/ChunkRenderDispatcher$ChunkTaskResult;Lnet/minecraft/client/renderer/ChunkBufferBuilderPack;)V +MD: net/minecraft/client/renderer/chunk/ChunkRenderDispatcher/m_234463_ (Lnet/minecraft/client/renderer/chunk/ChunkRenderDispatcher$RenderChunk$ChunkCompileTask;)V net/minecraft/client/renderer/chunk/ChunkRenderDispatcher/lambda$schedule$4 (Lnet/minecraft/client/renderer/chunk/ChunkRenderDispatcher$RenderChunk$ChunkCompileTask;)V +MD: net/minecraft/client/renderer/chunk/ChunkRenderDispatcher$ChunkTaskResult/ ()V net/minecraft/client/renderer/chunk/ChunkRenderDispatcher$ChunkTaskResult/ ()V +MD: net/minecraft/client/renderer/chunk/ChunkRenderDispatcher$ChunkTaskResult/ (Ljava/lang/String;I)V net/minecraft/client/renderer/chunk/ChunkRenderDispatcher$ChunkTaskResult/ (Ljava/lang/String;I)V +MD: net/minecraft/client/renderer/chunk/ChunkRenderDispatcher$ChunkTaskResult/m_173715_ ()[Lnet/minecraft/client/renderer/chunk/ChunkRenderDispatcher$ChunkTaskResult; net/minecraft/client/renderer/chunk/ChunkRenderDispatcher$ChunkTaskResult/$values ()[Lnet/minecraft/client/renderer/chunk/ChunkRenderDispatcher$ChunkTaskResult; +MD: net/minecraft/client/renderer/chunk/ChunkRenderDispatcher$ChunkTaskResult/valueOf (Ljava/lang/String;)Lnet/minecraft/client/renderer/chunk/ChunkRenderDispatcher$ChunkTaskResult; net/minecraft/client/renderer/chunk/ChunkRenderDispatcher$ChunkTaskResult/valueOf (Ljava/lang/String;)Lnet/minecraft/client/renderer/chunk/ChunkRenderDispatcher$ChunkTaskResult; +MD: net/minecraft/client/renderer/chunk/ChunkRenderDispatcher$ChunkTaskResult/values ()[Lnet/minecraft/client/renderer/chunk/ChunkRenderDispatcher$ChunkTaskResult; net/minecraft/client/renderer/chunk/ChunkRenderDispatcher$ChunkTaskResult/values ()[Lnet/minecraft/client/renderer/chunk/ChunkRenderDispatcher$ChunkTaskResult; +MD: net/minecraft/client/renderer/chunk/ChunkRenderDispatcher$CompiledChunk/ ()V net/minecraft/client/renderer/chunk/ChunkRenderDispatcher$CompiledChunk/ ()V +MD: net/minecraft/client/renderer/chunk/ChunkRenderDispatcher$CompiledChunk/ ()V net/minecraft/client/renderer/chunk/ChunkRenderDispatcher$CompiledChunk/ ()V +MD: net/minecraft/client/renderer/chunk/ChunkRenderDispatcher$CompiledChunk/m_112757_ ()Z net/minecraft/client/renderer/chunk/ChunkRenderDispatcher$CompiledChunk/hasNoRenderableLayers ()Z +MD: net/minecraft/client/renderer/chunk/ChunkRenderDispatcher$CompiledChunk/m_112758_ (Lnet/minecraft/client/renderer/RenderType;)Z net/minecraft/client/renderer/chunk/ChunkRenderDispatcher$CompiledChunk/isEmpty (Lnet/minecraft/client/renderer/RenderType;)Z +MD: net/minecraft/client/renderer/chunk/ChunkRenderDispatcher$CompiledChunk/m_112773_ ()Ljava/util/List; net/minecraft/client/renderer/chunk/ChunkRenderDispatcher$CompiledChunk/getRenderableBlockEntities ()Ljava/util/List; +MD: net/minecraft/client/renderer/chunk/ChunkRenderDispatcher$CompiledChunk/m_7259_ (Lnet/minecraft/core/Direction;Lnet/minecraft/core/Direction;)Z net/minecraft/client/renderer/chunk/ChunkRenderDispatcher$CompiledChunk/facesCanSeeEachother (Lnet/minecraft/core/Direction;Lnet/minecraft/core/Direction;)Z +MD: net/minecraft/client/renderer/chunk/ChunkRenderDispatcher$CompiledChunk$1/ ()V net/minecraft/client/renderer/chunk/ChunkRenderDispatcher$CompiledChunk$1/ ()V +MD: net/minecraft/client/renderer/chunk/ChunkRenderDispatcher$CompiledChunk$1/m_7259_ (Lnet/minecraft/core/Direction;Lnet/minecraft/core/Direction;)Z net/minecraft/client/renderer/chunk/ChunkRenderDispatcher$CompiledChunk$1/facesCanSeeEachother (Lnet/minecraft/core/Direction;Lnet/minecraft/core/Direction;)Z +MD: net/minecraft/client/renderer/chunk/ChunkRenderDispatcher$RenderChunk/ (Lnet/minecraft/client/renderer/chunk/ChunkRenderDispatcher;IIII)V net/minecraft/client/renderer/chunk/ChunkRenderDispatcher$RenderChunk/ (Lnet/minecraft/client/renderer/chunk/ChunkRenderDispatcher;IIII)V +MD: net/minecraft/client/renderer/chunk/ChunkRenderDispatcher$RenderChunk/m_112798_ ()Z net/minecraft/client/renderer/chunk/ChunkRenderDispatcher$RenderChunk/hasAllNeighbors ()Z +MD: net/minecraft/client/renderer/chunk/ChunkRenderDispatcher$RenderChunk/m_112801_ (III)V net/minecraft/client/renderer/chunk/ChunkRenderDispatcher$RenderChunk/setOrigin (III)V +MD: net/minecraft/client/renderer/chunk/ChunkRenderDispatcher$RenderChunk/m_112805_ (Lcom/mojang/blaze3d/vertex/BufferBuilder;)V net/minecraft/client/renderer/chunk/ChunkRenderDispatcher$RenderChunk/beginLayer (Lcom/mojang/blaze3d/vertex/BufferBuilder;)V +MD: net/minecraft/client/renderer/chunk/ChunkRenderDispatcher$RenderChunk/m_112807_ (Lnet/minecraft/client/renderer/RenderType;)Lcom/mojang/blaze3d/vertex/VertexBuffer; net/minecraft/client/renderer/chunk/ChunkRenderDispatcher$RenderChunk/getBuffer (Lnet/minecraft/client/renderer/RenderType;)Lcom/mojang/blaze3d/vertex/VertexBuffer; +MD: net/minecraft/client/renderer/chunk/ChunkRenderDispatcher$RenderChunk/m_112809_ (Lnet/minecraft/client/renderer/RenderType;Lnet/minecraft/client/renderer/chunk/ChunkRenderDispatcher;)Z net/minecraft/client/renderer/chunk/ChunkRenderDispatcher$RenderChunk/resortTransparency (Lnet/minecraft/client/renderer/RenderType;Lnet/minecraft/client/renderer/chunk/ChunkRenderDispatcher;)Z +MD: net/minecraft/client/renderer/chunk/ChunkRenderDispatcher$RenderChunk/m_112822_ (Lnet/minecraft/core/BlockPos;)Z net/minecraft/client/renderer/chunk/ChunkRenderDispatcher$RenderChunk/doesChunkExistAt (Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/client/renderer/chunk/ChunkRenderDispatcher$RenderChunk/m_112824_ (Lnet/minecraft/core/Direction;)Lnet/minecraft/core/BlockPos; net/minecraft/client/renderer/chunk/ChunkRenderDispatcher$RenderChunk/getRelativeOrigin (Lnet/minecraft/core/Direction;)Lnet/minecraft/core/BlockPos; +MD: net/minecraft/client/renderer/chunk/ChunkRenderDispatcher$RenderChunk/m_112828_ (Z)V net/minecraft/client/renderer/chunk/ChunkRenderDispatcher$RenderChunk/setDirty (Z)V +MD: net/minecraft/client/renderer/chunk/ChunkRenderDispatcher$RenderChunk/m_112830_ ([Lnet/minecraft/core/BlockPos$MutableBlockPos;)V net/minecraft/client/renderer/chunk/ChunkRenderDispatcher$RenderChunk/lambda$new$2 ([Lnet/minecraft/core/BlockPos$MutableBlockPos;)V +MD: net/minecraft/client/renderer/chunk/ChunkRenderDispatcher$RenderChunk/m_112832_ ()D net/minecraft/client/renderer/chunk/ChunkRenderDispatcher$RenderChunk/getDistToPlayerSqr ()D +MD: net/minecraft/client/renderer/chunk/ChunkRenderDispatcher$RenderChunk/m_112835_ ()Lnet/minecraft/client/renderer/chunk/ChunkRenderDispatcher$CompiledChunk; net/minecraft/client/renderer/chunk/ChunkRenderDispatcher$RenderChunk/getCompiledChunk ()Lnet/minecraft/client/renderer/chunk/ChunkRenderDispatcher$CompiledChunk; +MD: net/minecraft/client/renderer/chunk/ChunkRenderDispatcher$RenderChunk/m_112836_ (Lnet/minecraft/client/renderer/RenderType;)Lnet/minecraft/client/renderer/RenderType; net/minecraft/client/renderer/chunk/ChunkRenderDispatcher$RenderChunk/lambda$new$0 (Lnet/minecraft/client/renderer/RenderType;)Lnet/minecraft/client/renderer/RenderType; +MD: net/minecraft/client/renderer/chunk/ChunkRenderDispatcher$RenderChunk/m_112838_ ()V net/minecraft/client/renderer/chunk/ChunkRenderDispatcher$RenderChunk/releaseBuffers ()V +MD: net/minecraft/client/renderer/chunk/ChunkRenderDispatcher$RenderChunk/m_112839_ ()Lnet/minecraft/core/BlockPos; net/minecraft/client/renderer/chunk/ChunkRenderDispatcher$RenderChunk/getOrigin ()Lnet/minecraft/core/BlockPos; +MD: net/minecraft/client/renderer/chunk/ChunkRenderDispatcher$RenderChunk/m_112840_ ()V net/minecraft/client/renderer/chunk/ChunkRenderDispatcher$RenderChunk/setNotDirty ()V +MD: net/minecraft/client/renderer/chunk/ChunkRenderDispatcher$RenderChunk/m_112841_ ()Z net/minecraft/client/renderer/chunk/ChunkRenderDispatcher$RenderChunk/isDirty ()Z +MD: net/minecraft/client/renderer/chunk/ChunkRenderDispatcher$RenderChunk/m_112842_ ()Z net/minecraft/client/renderer/chunk/ChunkRenderDispatcher$RenderChunk/isDirtyFromPlayer ()Z +MD: net/minecraft/client/renderer/chunk/ChunkRenderDispatcher$RenderChunk/m_112846_ ()V net/minecraft/client/renderer/chunk/ChunkRenderDispatcher$RenderChunk/reset ()V +MD: net/minecraft/client/renderer/chunk/ChunkRenderDispatcher$RenderChunk/m_194419_ ()Z net/minecraft/client/renderer/chunk/ChunkRenderDispatcher$RenderChunk/cancelTasks ()Z +MD: net/minecraft/client/renderer/chunk/ChunkRenderDispatcher$RenderChunk/m_200434_ (Lnet/minecraft/client/renderer/chunk/ChunkRenderDispatcher;Lnet/minecraft/client/renderer/chunk/RenderRegionCache;)V net/minecraft/client/renderer/chunk/ChunkRenderDispatcher$RenderChunk/rebuildChunkAsync (Lnet/minecraft/client/renderer/chunk/ChunkRenderDispatcher;Lnet/minecraft/client/renderer/chunk/RenderRegionCache;)V +MD: net/minecraft/client/renderer/chunk/ChunkRenderDispatcher$RenderChunk/m_200437_ (Lnet/minecraft/client/renderer/chunk/RenderRegionCache;)Lnet/minecraft/client/renderer/chunk/ChunkRenderDispatcher$RenderChunk$ChunkCompileTask; net/minecraft/client/renderer/chunk/ChunkRenderDispatcher$RenderChunk/createCompileTask (Lnet/minecraft/client/renderer/chunk/RenderRegionCache;)Lnet/minecraft/client/renderer/chunk/ChunkRenderDispatcher$RenderChunk$ChunkCompileTask; +MD: net/minecraft/client/renderer/chunk/ChunkRenderDispatcher$RenderChunk/m_200439_ (Lnet/minecraft/client/renderer/chunk/RenderRegionCache;)V net/minecraft/client/renderer/chunk/ChunkRenderDispatcher$RenderChunk/compileSync (Lnet/minecraft/client/renderer/chunk/RenderRegionCache;)V +MD: net/minecraft/client/renderer/chunk/ChunkRenderDispatcher$RenderChunk/m_202440_ ()Lnet/minecraft/world/phys/AABB; net/minecraft/client/renderer/chunk/ChunkRenderDispatcher$RenderChunk/getBoundingBox ()Lnet/minecraft/world/phys/AABB; +MD: net/minecraft/client/renderer/chunk/ChunkRenderDispatcher$RenderChunk/m_234465_ (Ljava/util/Collection;)V net/minecraft/client/renderer/chunk/ChunkRenderDispatcher$RenderChunk/updateGlobalBlockEntities (Ljava/util/Collection;)V +MD: net/minecraft/client/renderer/chunk/ChunkRenderDispatcher$RenderChunk/m_285706_ (Lnet/minecraft/client/renderer/RenderType;)Lcom/mojang/blaze3d/vertex/VertexBuffer; net/minecraft/client/renderer/chunk/ChunkRenderDispatcher$RenderChunk/lambda$new$1 (Lnet/minecraft/client/renderer/RenderType;)Lcom/mojang/blaze3d/vertex/VertexBuffer; +MD: net/minecraft/client/renderer/chunk/ChunkRenderDispatcher$RenderChunk$ChunkCompileTask/ (Lnet/minecraft/client/renderer/chunk/ChunkRenderDispatcher$RenderChunk;DZ)V net/minecraft/client/renderer/chunk/ChunkRenderDispatcher$RenderChunk$ChunkCompileTask/ (Lnet/minecraft/client/renderer/chunk/ChunkRenderDispatcher$RenderChunk;DZ)V +MD: net/minecraft/client/renderer/chunk/ChunkRenderDispatcher$RenderChunk$ChunkCompileTask/compareTo (Ljava/lang/Object;)I net/minecraft/client/renderer/chunk/ChunkRenderDispatcher$RenderChunk$ChunkCompileTask/compareTo (Ljava/lang/Object;)I +MD: net/minecraft/client/renderer/chunk/ChunkRenderDispatcher$RenderChunk$ChunkCompileTask/compareTo (Lnet/minecraft/client/renderer/chunk/ChunkRenderDispatcher$RenderChunk$ChunkCompileTask;)I net/minecraft/client/renderer/chunk/ChunkRenderDispatcher$RenderChunk$ChunkCompileTask/compareTo (Lnet/minecraft/client/renderer/chunk/ChunkRenderDispatcher$RenderChunk$ChunkCompileTask;)I +MD: net/minecraft/client/renderer/chunk/ChunkRenderDispatcher$RenderChunk$ChunkCompileTask/m_183497_ ()Ljava/lang/String; net/minecraft/client/renderer/chunk/ChunkRenderDispatcher$RenderChunk$ChunkCompileTask/name ()Ljava/lang/String; +MD: net/minecraft/client/renderer/chunk/ChunkRenderDispatcher$RenderChunk$ChunkCompileTask/m_5869_ (Lnet/minecraft/client/renderer/ChunkBufferBuilderPack;)Ljava/util/concurrent/CompletableFuture; net/minecraft/client/renderer/chunk/ChunkRenderDispatcher$RenderChunk$ChunkCompileTask/doTask (Lnet/minecraft/client/renderer/ChunkBufferBuilderPack;)Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/client/renderer/chunk/ChunkRenderDispatcher$RenderChunk$ChunkCompileTask/m_6204_ ()V net/minecraft/client/renderer/chunk/ChunkRenderDispatcher$RenderChunk$ChunkCompileTask/cancel ()V +MD: net/minecraft/client/renderer/chunk/ChunkRenderDispatcher$RenderChunk$RebuildTask/ (Lnet/minecraft/client/renderer/chunk/ChunkRenderDispatcher$RenderChunk;DLnet/minecraft/client/renderer/chunk/RenderChunkRegion;Z)V net/minecraft/client/renderer/chunk/ChunkRenderDispatcher$RenderChunk$RebuildTask/ (Lnet/minecraft/client/renderer/chunk/ChunkRenderDispatcher$RenderChunk;DLnet/minecraft/client/renderer/chunk/RenderChunkRegion;Z)V +MD: net/minecraft/client/renderer/chunk/ChunkRenderDispatcher$RenderChunk$RebuildTask/m_183497_ ()Ljava/lang/String; net/minecraft/client/renderer/chunk/ChunkRenderDispatcher$RenderChunk$RebuildTask/name ()Ljava/lang/String; +MD: net/minecraft/client/renderer/chunk/ChunkRenderDispatcher$RenderChunk$RebuildTask/m_234467_ (FFFLnet/minecraft/client/renderer/ChunkBufferBuilderPack;)Lnet/minecraft/client/renderer/chunk/ChunkRenderDispatcher$RenderChunk$RebuildTask$CompileResults; net/minecraft/client/renderer/chunk/ChunkRenderDispatcher$RenderChunk$RebuildTask/compile (FFFLnet/minecraft/client/renderer/ChunkBufferBuilderPack;)Lnet/minecraft/client/renderer/chunk/ChunkRenderDispatcher$RenderChunk$RebuildTask$CompileResults; +MD: net/minecraft/client/renderer/chunk/ChunkRenderDispatcher$RenderChunk$RebuildTask/m_234472_ (Lnet/minecraft/client/renderer/chunk/ChunkRenderDispatcher$CompiledChunk;Ljava/util/List;Ljava/lang/Throwable;)Lnet/minecraft/client/renderer/chunk/ChunkRenderDispatcher$ChunkTaskResult; net/minecraft/client/renderer/chunk/ChunkRenderDispatcher$RenderChunk$RebuildTask/lambda$doTask$1 (Lnet/minecraft/client/renderer/chunk/ChunkRenderDispatcher$CompiledChunk;Ljava/util/List;Ljava/lang/Throwable;)Lnet/minecraft/client/renderer/chunk/ChunkRenderDispatcher$ChunkTaskResult; +MD: net/minecraft/client/renderer/chunk/ChunkRenderDispatcher$RenderChunk$RebuildTask/m_234476_ (Lnet/minecraft/client/renderer/chunk/ChunkRenderDispatcher$RenderChunk$RebuildTask$CompileResults;Lnet/minecraft/world/level/block/entity/BlockEntity;)V net/minecraft/client/renderer/chunk/ChunkRenderDispatcher$RenderChunk$RebuildTask/handleBlockEntity (Lnet/minecraft/client/renderer/chunk/ChunkRenderDispatcher$RenderChunk$RebuildTask$CompileResults;Lnet/minecraft/world/level/block/entity/BlockEntity;)V +MD: net/minecraft/client/renderer/chunk/ChunkRenderDispatcher$RenderChunk$RebuildTask/m_234479_ (Ljava/util/List;Lnet/minecraft/client/renderer/chunk/ChunkRenderDispatcher$CompiledChunk;Lnet/minecraft/client/renderer/RenderType;Lcom/mojang/blaze3d/vertex/BufferBuilder$RenderedBuffer;)V net/minecraft/client/renderer/chunk/ChunkRenderDispatcher$RenderChunk$RebuildTask/lambda$doTask$0 (Ljava/util/List;Lnet/minecraft/client/renderer/chunk/ChunkRenderDispatcher$CompiledChunk;Lnet/minecraft/client/renderer/RenderType;Lcom/mojang/blaze3d/vertex/BufferBuilder$RenderedBuffer;)V +MD: net/minecraft/client/renderer/chunk/ChunkRenderDispatcher$RenderChunk$RebuildTask/m_5869_ (Lnet/minecraft/client/renderer/ChunkBufferBuilderPack;)Ljava/util/concurrent/CompletableFuture; net/minecraft/client/renderer/chunk/ChunkRenderDispatcher$RenderChunk$RebuildTask/doTask (Lnet/minecraft/client/renderer/ChunkBufferBuilderPack;)Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/client/renderer/chunk/ChunkRenderDispatcher$RenderChunk$RebuildTask/m_6204_ ()V net/minecraft/client/renderer/chunk/ChunkRenderDispatcher$RenderChunk$RebuildTask/cancel ()V +MD: net/minecraft/client/renderer/chunk/ChunkRenderDispatcher$RenderChunk$RebuildTask$CompileResults/ ()V net/minecraft/client/renderer/chunk/ChunkRenderDispatcher$RenderChunk$RebuildTask$CompileResults/ ()V +MD: net/minecraft/client/renderer/chunk/ChunkRenderDispatcher$RenderChunk$ResortTransparencyTask/ (Lnet/minecraft/client/renderer/chunk/ChunkRenderDispatcher$RenderChunk;DLnet/minecraft/client/renderer/chunk/ChunkRenderDispatcher$CompiledChunk;)V net/minecraft/client/renderer/chunk/ChunkRenderDispatcher$RenderChunk$ResortTransparencyTask/ (Lnet/minecraft/client/renderer/chunk/ChunkRenderDispatcher$RenderChunk;DLnet/minecraft/client/renderer/chunk/ChunkRenderDispatcher$CompiledChunk;)V +MD: net/minecraft/client/renderer/chunk/ChunkRenderDispatcher$RenderChunk$ResortTransparencyTask/m_112897_ (Ljava/lang/Void;)Lnet/minecraft/client/renderer/chunk/ChunkRenderDispatcher$ChunkTaskResult; net/minecraft/client/renderer/chunk/ChunkRenderDispatcher$RenderChunk$ResortTransparencyTask/lambda$doTask$0 (Ljava/lang/Void;)Lnet/minecraft/client/renderer/chunk/ChunkRenderDispatcher$ChunkTaskResult; +MD: net/minecraft/client/renderer/chunk/ChunkRenderDispatcher$RenderChunk$ResortTransparencyTask/m_183497_ ()Ljava/lang/String; net/minecraft/client/renderer/chunk/ChunkRenderDispatcher$RenderChunk$ResortTransparencyTask/name ()Ljava/lang/String; +MD: net/minecraft/client/renderer/chunk/ChunkRenderDispatcher$RenderChunk$ResortTransparencyTask/m_234490_ (Lnet/minecraft/client/renderer/chunk/ChunkRenderDispatcher$ChunkTaskResult;Ljava/lang/Throwable;)Lnet/minecraft/client/renderer/chunk/ChunkRenderDispatcher$ChunkTaskResult; net/minecraft/client/renderer/chunk/ChunkRenderDispatcher$RenderChunk$ResortTransparencyTask/lambda$doTask$1 (Lnet/minecraft/client/renderer/chunk/ChunkRenderDispatcher$ChunkTaskResult;Ljava/lang/Throwable;)Lnet/minecraft/client/renderer/chunk/ChunkRenderDispatcher$ChunkTaskResult; +MD: net/minecraft/client/renderer/chunk/ChunkRenderDispatcher$RenderChunk$ResortTransparencyTask/m_5869_ (Lnet/minecraft/client/renderer/ChunkBufferBuilderPack;)Ljava/util/concurrent/CompletableFuture; net/minecraft/client/renderer/chunk/ChunkRenderDispatcher$RenderChunk$ResortTransparencyTask/doTask (Lnet/minecraft/client/renderer/ChunkBufferBuilderPack;)Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/client/renderer/chunk/ChunkRenderDispatcher$RenderChunk$ResortTransparencyTask/m_6204_ ()V net/minecraft/client/renderer/chunk/ChunkRenderDispatcher$RenderChunk$ResortTransparencyTask/cancel ()V +MD: net/minecraft/client/renderer/chunk/RenderChunk/ (Lnet/minecraft/world/level/chunk/LevelChunk;)V net/minecraft/client/renderer/chunk/RenderChunk/ (Lnet/minecraft/world/level/chunk/LevelChunk;)V +MD: net/minecraft/client/renderer/chunk/RenderChunk/m_200447_ (III)Ljava/lang/String; net/minecraft/client/renderer/chunk/RenderChunk/lambda$getBlockState$0 (III)Ljava/lang/String; +MD: net/minecraft/client/renderer/chunk/RenderChunk/m_200451_ (Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/entity/BlockEntity; net/minecraft/client/renderer/chunk/RenderChunk/getBlockEntity (Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/entity/BlockEntity; +MD: net/minecraft/client/renderer/chunk/RenderChunk/m_200453_ (Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/client/renderer/chunk/RenderChunk/getBlockState (Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/client/renderer/chunk/RenderChunkRegion/ (Lnet/minecraft/world/level/Level;II[[Lnet/minecraft/client/renderer/chunk/RenderChunk;)V net/minecraft/client/renderer/chunk/RenderChunkRegion/ (Lnet/minecraft/world/level/Level;II[[Lnet/minecraft/client/renderer/chunk/RenderChunk;)V +MD: net/minecraft/client/renderer/chunk/RenderChunkRegion/m_141928_ ()I net/minecraft/client/renderer/chunk/RenderChunkRegion/getHeight ()I +MD: net/minecraft/client/renderer/chunk/RenderChunkRegion/m_141937_ ()I net/minecraft/client/renderer/chunk/RenderChunkRegion/getMinBuildHeight ()I +MD: net/minecraft/client/renderer/chunk/RenderChunkRegion/m_5518_ ()Lnet/minecraft/world/level/lighting/LevelLightEngine; net/minecraft/client/renderer/chunk/RenderChunkRegion/getLightEngine ()Lnet/minecraft/world/level/lighting/LevelLightEngine; +MD: net/minecraft/client/renderer/chunk/RenderChunkRegion/m_6171_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/ColorResolver;)I net/minecraft/client/renderer/chunk/RenderChunkRegion/getBlockTint (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/ColorResolver;)I +MD: net/minecraft/client/renderer/chunk/RenderChunkRegion/m_6425_ (Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/material/FluidState; net/minecraft/client/renderer/chunk/RenderChunkRegion/getFluidState (Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/material/FluidState; +MD: net/minecraft/client/renderer/chunk/RenderChunkRegion/m_7702_ (Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/entity/BlockEntity; net/minecraft/client/renderer/chunk/RenderChunkRegion/getBlockEntity (Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/entity/BlockEntity; +MD: net/minecraft/client/renderer/chunk/RenderChunkRegion/m_7717_ (Lnet/minecraft/core/Direction;Z)F net/minecraft/client/renderer/chunk/RenderChunkRegion/getShade (Lnet/minecraft/core/Direction;Z)F +MD: net/minecraft/client/renderer/chunk/RenderChunkRegion/m_8055_ (Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/client/renderer/chunk/RenderChunkRegion/getBlockState (Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/client/renderer/chunk/RenderRegionCache/ ()V net/minecraft/client/renderer/chunk/RenderRegionCache/ ()V +MD: net/minecraft/client/renderer/chunk/RenderRegionCache/m_200462_ (Lnet/minecraft/world/level/Level;J)Lnet/minecraft/client/renderer/chunk/RenderRegionCache$ChunkInfo; net/minecraft/client/renderer/chunk/RenderRegionCache/lambda$createRegion$0 (Lnet/minecraft/world/level/Level;J)Lnet/minecraft/client/renderer/chunk/RenderRegionCache$ChunkInfo; +MD: net/minecraft/client/renderer/chunk/RenderRegionCache/m_200465_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;I)Lnet/minecraft/client/renderer/chunk/RenderChunkRegion; net/minecraft/client/renderer/chunk/RenderRegionCache/createRegion (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;I)Lnet/minecraft/client/renderer/chunk/RenderChunkRegion; +MD: net/minecraft/client/renderer/chunk/RenderRegionCache/m_200470_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;II[[Lnet/minecraft/client/renderer/chunk/RenderRegionCache$ChunkInfo;)Z net/minecraft/client/renderer/chunk/RenderRegionCache/isAllEmpty (Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;II[[Lnet/minecraft/client/renderer/chunk/RenderRegionCache$ChunkInfo;)Z +MD: net/minecraft/client/renderer/chunk/RenderRegionCache$ChunkInfo/ (Lnet/minecraft/world/level/chunk/LevelChunk;)V net/minecraft/client/renderer/chunk/RenderRegionCache$ChunkInfo/ (Lnet/minecraft/world/level/chunk/LevelChunk;)V +MD: net/minecraft/client/renderer/chunk/RenderRegionCache$ChunkInfo/m_200480_ ()Lnet/minecraft/world/level/chunk/LevelChunk; net/minecraft/client/renderer/chunk/RenderRegionCache$ChunkInfo/chunk ()Lnet/minecraft/world/level/chunk/LevelChunk; +MD: net/minecraft/client/renderer/chunk/RenderRegionCache$ChunkInfo/m_200481_ ()Lnet/minecraft/client/renderer/chunk/RenderChunk; net/minecraft/client/renderer/chunk/RenderRegionCache$ChunkInfo/renderChunk ()Lnet/minecraft/client/renderer/chunk/RenderChunk; +MD: net/minecraft/client/renderer/chunk/VisGraph/ ()V net/minecraft/client/renderer/chunk/VisGraph/ ()V +MD: net/minecraft/client/renderer/chunk/VisGraph/ ()V net/minecraft/client/renderer/chunk/VisGraph/ ()V +MD: net/minecraft/client/renderer/chunk/VisGraph/m_112958_ ()Lnet/minecraft/client/renderer/chunk/VisibilitySet; net/minecraft/client/renderer/chunk/VisGraph/resolve ()Lnet/minecraft/client/renderer/chunk/VisibilitySet; +MD: net/minecraft/client/renderer/chunk/VisGraph/m_112959_ (I)Ljava/util/Set; net/minecraft/client/renderer/chunk/VisGraph/floodFill (I)Ljava/util/Set; +MD: net/minecraft/client/renderer/chunk/VisGraph/m_112961_ (III)I net/minecraft/client/renderer/chunk/VisGraph/getIndex (III)I +MD: net/minecraft/client/renderer/chunk/VisGraph/m_112965_ (ILnet/minecraft/core/Direction;)I net/minecraft/client/renderer/chunk/VisGraph/getNeighborIndexAtFace (ILnet/minecraft/core/Direction;)I +MD: net/minecraft/client/renderer/chunk/VisGraph/m_112968_ (ILjava/util/Set;)V net/minecraft/client/renderer/chunk/VisGraph/addEdges (ILjava/util/Set;)V +MD: net/minecraft/client/renderer/chunk/VisGraph/m_112971_ (Lnet/minecraft/core/BlockPos;)V net/minecraft/client/renderer/chunk/VisGraph/setOpaque (Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/client/renderer/chunk/VisGraph/m_112973_ ([I)V net/minecraft/client/renderer/chunk/VisGraph/lambda$static$0 ([I)V +MD: net/minecraft/client/renderer/chunk/VisGraph/m_112975_ (Lnet/minecraft/core/BlockPos;)I net/minecraft/client/renderer/chunk/VisGraph/getIndex (Lnet/minecraft/core/BlockPos;)I +MD: net/minecraft/client/renderer/chunk/VisGraph$1/ ()V net/minecraft/client/renderer/chunk/VisGraph$1/ ()V +MD: net/minecraft/client/renderer/chunk/VisibilitySet/ ()V net/minecraft/client/renderer/chunk/VisibilitySet/ ()V +MD: net/minecraft/client/renderer/chunk/VisibilitySet/ ()V net/minecraft/client/renderer/chunk/VisibilitySet/ ()V +MD: net/minecraft/client/renderer/chunk/VisibilitySet/m_112983_ (Lnet/minecraft/core/Direction;Lnet/minecraft/core/Direction;)Z net/minecraft/client/renderer/chunk/VisibilitySet/visibilityBetween (Lnet/minecraft/core/Direction;Lnet/minecraft/core/Direction;)Z +MD: net/minecraft/client/renderer/chunk/VisibilitySet/m_112986_ (Lnet/minecraft/core/Direction;Lnet/minecraft/core/Direction;Z)V net/minecraft/client/renderer/chunk/VisibilitySet/set (Lnet/minecraft/core/Direction;Lnet/minecraft/core/Direction;Z)V +MD: net/minecraft/client/renderer/chunk/VisibilitySet/m_112990_ (Ljava/util/Set;)V net/minecraft/client/renderer/chunk/VisibilitySet/add (Ljava/util/Set;)V +MD: net/minecraft/client/renderer/chunk/VisibilitySet/m_112992_ (Z)V net/minecraft/client/renderer/chunk/VisibilitySet/setAll (Z)V +MD: net/minecraft/client/renderer/chunk/VisibilitySet/toString ()Ljava/lang/String; net/minecraft/client/renderer/chunk/VisibilitySet/toString ()Ljava/lang/String; +MD: net/minecraft/client/renderer/culling/Frustum/ (Lorg/joml/Matrix4f;Lorg/joml/Matrix4f;)V net/minecraft/client/renderer/culling/Frustum/ (Lorg/joml/Matrix4f;Lorg/joml/Matrix4f;)V +MD: net/minecraft/client/renderer/culling/Frustum/ (Lnet/minecraft/client/renderer/culling/Frustum;)V net/minecraft/client/renderer/culling/Frustum/ (Lnet/minecraft/client/renderer/culling/Frustum;)V +MD: net/minecraft/client/renderer/culling/Frustum/m_113002_ (DDD)V net/minecraft/client/renderer/culling/Frustum/prepare (DDD)V +MD: net/minecraft/client/renderer/culling/Frustum/m_113006_ (DDDDDD)Z net/minecraft/client/renderer/culling/Frustum/cubeInFrustum (DDDDDD)Z +MD: net/minecraft/client/renderer/culling/Frustum/m_113029_ (Lnet/minecraft/world/phys/AABB;)Z net/minecraft/client/renderer/culling/Frustum/isVisible (Lnet/minecraft/world/phys/AABB;)Z +MD: net/minecraft/client/renderer/culling/Frustum/m_194441_ (I)Lnet/minecraft/client/renderer/culling/Frustum; net/minecraft/client/renderer/culling/Frustum/offsetToFullyIncludeCameraCube (I)Lnet/minecraft/client/renderer/culling/Frustum; +MD: net/minecraft/client/renderer/culling/Frustum/m_253155_ (Lorg/joml/Matrix4f;Lorg/joml/Matrix4f;)V net/minecraft/client/renderer/culling/Frustum/calculateFrustum (Lorg/joml/Matrix4f;Lorg/joml/Matrix4f;)V +MD: net/minecraft/client/renderer/debug/BeeDebugRenderer/ (Lnet/minecraft/client/Minecraft;)V net/minecraft/client/renderer/debug/BeeDebugRenderer/ (Lnet/minecraft/client/Minecraft;)V +MD: net/minecraft/client/renderer/debug/BeeDebugRenderer/m_113055_ (JLjava/util/Map$Entry;)Z net/minecraft/client/renderer/debug/BeeDebugRenderer/lambda$clearRemovedHives$2 (JLjava/util/Map$Entry;)Z +MD: net/minecraft/client/renderer/debug/BeeDebugRenderer/m_113058_ (Lnet/minecraft/world/entity/Entity;)V net/minecraft/client/renderer/debug/BeeDebugRenderer/lambda$updateLastLookedAtUuid$14 (Lnet/minecraft/world/entity/Entity;)V +MD: net/minecraft/client/renderer/debug/BeeDebugRenderer/m_113066_ (Lnet/minecraft/client/renderer/debug/BeeDebugRenderer$BeeInfo;)V net/minecraft/client/renderer/debug/BeeDebugRenderer/addOrUpdateBeeInfo (Lnet/minecraft/client/renderer/debug/BeeDebugRenderer$BeeInfo;)V +MD: net/minecraft/client/renderer/debug/BeeDebugRenderer/m_113068_ (Lnet/minecraft/client/renderer/debug/BeeDebugRenderer$BeeInfo;Lnet/minecraft/core/BlockPos;)Ljava/lang/String; net/minecraft/client/renderer/debug/BeeDebugRenderer/getPosDescription (Lnet/minecraft/client/renderer/debug/BeeDebugRenderer$BeeInfo;Lnet/minecraft/core/BlockPos;)Ljava/lang/String; +MD: net/minecraft/client/renderer/debug/BeeDebugRenderer/m_113071_ (Lnet/minecraft/client/renderer/debug/BeeDebugRenderer$HiveInfo;)V net/minecraft/client/renderer/debug/BeeDebugRenderer/addOrUpdateHiveInfo (Lnet/minecraft/client/renderer/debug/BeeDebugRenderer$HiveInfo;)V +MD: net/minecraft/client/renderer/debug/BeeDebugRenderer/m_113085_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/client/renderer/debug/BeeDebugRenderer$BeeInfo;)Z net/minecraft/client/renderer/debug/BeeDebugRenderer/lambda$getHiveMembers$12 (Lnet/minecraft/core/BlockPos;Lnet/minecraft/client/renderer/debug/BeeDebugRenderer$BeeInfo;)Z +MD: net/minecraft/client/renderer/debug/BeeDebugRenderer/m_113115_ (Ljava/util/Collection;)Ljava/lang/String; net/minecraft/client/renderer/debug/BeeDebugRenderer/getBeeUuidsAsString (Ljava/util/Collection;)Ljava/lang/String; +MD: net/minecraft/client/renderer/debug/BeeDebugRenderer/m_113119_ (Ljava/util/Map;Lnet/minecraft/client/renderer/debug/BeeDebugRenderer$BeeInfo;)V net/minecraft/client/renderer/debug/BeeDebugRenderer/lambda$renderFlowerInfos$10 (Ljava/util/Map;Lnet/minecraft/client/renderer/debug/BeeDebugRenderer$BeeInfo;)V +MD: net/minecraft/client/renderer/debug/BeeDebugRenderer/m_113126_ ()V net/minecraft/client/renderer/debug/BeeDebugRenderer/clearRemovedBees ()V +MD: net/minecraft/client/renderer/debug/BeeDebugRenderer/m_113129_ (Lnet/minecraft/core/BlockPos;)Ljava/util/Collection; net/minecraft/client/renderer/debug/BeeDebugRenderer/getHiveMembers (Lnet/minecraft/core/BlockPos;)Ljava/util/Collection; +MD: net/minecraft/client/renderer/debug/BeeDebugRenderer/m_113131_ (Ljava/util/Map$Entry;)Z net/minecraft/client/renderer/debug/BeeDebugRenderer/lambda$clearRemovedBees$1 (Ljava/util/Map$Entry;)Z +MD: net/minecraft/client/renderer/debug/BeeDebugRenderer/m_113133_ (Ljava/util/Map;Lnet/minecraft/client/renderer/debug/BeeDebugRenderer$BeeInfo;)V net/minecraft/client/renderer/debug/BeeDebugRenderer/lambda$createHiveBlacklistMap$8 (Ljava/util/Map;Lnet/minecraft/client/renderer/debug/BeeDebugRenderer$BeeInfo;)V +MD: net/minecraft/client/renderer/debug/BeeDebugRenderer/m_113136_ ()V net/minecraft/client/renderer/debug/BeeDebugRenderer/clearRemovedHives ()V +MD: net/minecraft/client/renderer/debug/BeeDebugRenderer/m_113139_ (Lnet/minecraft/core/BlockPos;)Ljava/util/List; net/minecraft/client/renderer/debug/BeeDebugRenderer/lambda$getGhostHives$13 (Lnet/minecraft/core/BlockPos;)Ljava/util/List; +MD: net/minecraft/client/renderer/debug/BeeDebugRenderer/m_113142_ (Lnet/minecraft/client/renderer/debug/BeeDebugRenderer$BeeInfo;)Z net/minecraft/client/renderer/debug/BeeDebugRenderer/isBeeSelected (Lnet/minecraft/client/renderer/debug/BeeDebugRenderer$BeeInfo;)Z +MD: net/minecraft/client/renderer/debug/BeeDebugRenderer/m_113146_ ()Ljava/util/Map; net/minecraft/client/renderer/debug/BeeDebugRenderer/createHiveBlacklistMap ()Ljava/util/Map; +MD: net/minecraft/client/renderer/debug/BeeDebugRenderer/m_113147_ (Lnet/minecraft/client/renderer/debug/BeeDebugRenderer$BeeInfo;)Z net/minecraft/client/renderer/debug/BeeDebugRenderer/isPlayerCloseEnoughToMob (Lnet/minecraft/client/renderer/debug/BeeDebugRenderer$BeeInfo;)Z +MD: net/minecraft/client/renderer/debug/BeeDebugRenderer/m_113154_ ()Lnet/minecraft/client/Camera; net/minecraft/client/renderer/debug/BeeDebugRenderer/getCamera ()Lnet/minecraft/client/Camera; +MD: net/minecraft/client/renderer/debug/BeeDebugRenderer/m_113155_ ()Ljava/util/Map; net/minecraft/client/renderer/debug/BeeDebugRenderer/getGhostHives ()Ljava/util/Map; +MD: net/minecraft/client/renderer/debug/BeeDebugRenderer/m_113156_ ()V net/minecraft/client/renderer/debug/BeeDebugRenderer/updateLastLookedAtUuid ()V +MD: net/minecraft/client/renderer/debug/BeeDebugRenderer/m_173763_ (I)V net/minecraft/client/renderer/debug/BeeDebugRenderer/removeBeeInfo (I)V +MD: net/minecraft/client/renderer/debug/BeeDebugRenderer/m_173765_ (ILnet/minecraft/client/renderer/debug/BeeDebugRenderer$BeeInfo;)Z net/minecraft/client/renderer/debug/BeeDebugRenderer/lambda$removeBeeInfo$0 (ILnet/minecraft/client/renderer/debug/BeeDebugRenderer$BeeInfo;)Z +MD: net/minecraft/client/renderer/debug/BeeDebugRenderer/m_173768_ (Ljava/util/Map;Lnet/minecraft/client/renderer/debug/BeeDebugRenderer$BeeInfo;Lnet/minecraft/core/BlockPos;)V net/minecraft/client/renderer/debug/BeeDebugRenderer/lambda$createHiveBlacklistMap$7 (Ljava/util/Map;Lnet/minecraft/client/renderer/debug/BeeDebugRenderer$BeeInfo;Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/client/renderer/debug/BeeDebugRenderer/m_173772_ (Lnet/minecraft/client/renderer/debug/BeeDebugRenderer$HiveInfo;)Ljava/util/Set; net/minecraft/client/renderer/debug/BeeDebugRenderer/getHiveMemberNames (Lnet/minecraft/client/renderer/debug/BeeDebugRenderer$HiveInfo;)Ljava/util/Set; +MD: net/minecraft/client/renderer/debug/BeeDebugRenderer/m_173774_ (Lnet/minecraft/core/BlockPos;)Ljava/util/Set; net/minecraft/client/renderer/debug/BeeDebugRenderer/lambda$renderFlowerInfos$9 (Lnet/minecraft/core/BlockPos;)Ljava/util/Set; +MD: net/minecraft/client/renderer/debug/BeeDebugRenderer/m_173776_ (Lnet/minecraft/core/BlockPos;)Ljava/util/Set; net/minecraft/client/renderer/debug/BeeDebugRenderer/lambda$createHiveBlacklistMap$6 (Lnet/minecraft/core/BlockPos;)Ljava/util/Set; +MD: net/minecraft/client/renderer/debug/BeeDebugRenderer/m_268819_ (Lnet/minecraft/core/BlockPos;Ljava/util/Map;Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;Lnet/minecraft/client/renderer/debug/BeeDebugRenderer$HiveInfo;)V net/minecraft/client/renderer/debug/BeeDebugRenderer/lambda$doRender$4 (Lnet/minecraft/core/BlockPos;Ljava/util/Map;Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;Lnet/minecraft/client/renderer/debug/BeeDebugRenderer$HiveInfo;)V +MD: net/minecraft/client/renderer/debug/BeeDebugRenderer/m_268820_ (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;Ljava/util/Map$Entry;)V net/minecraft/client/renderer/debug/BeeDebugRenderer/lambda$renderFlowerInfos$11 (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;Ljava/util/Map$Entry;)V +MD: net/minecraft/client/renderer/debug/BeeDebugRenderer/m_268821_ (Lnet/minecraft/core/BlockPos;Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;Lnet/minecraft/core/BlockPos;Ljava/util/List;)V net/minecraft/client/renderer/debug/BeeDebugRenderer/lambda$doRender$5 (Lnet/minecraft/core/BlockPos;Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;Lnet/minecraft/core/BlockPos;Ljava/util/List;)V +MD: net/minecraft/client/renderer/debug/BeeDebugRenderer/m_268822_ (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;Lnet/minecraft/client/renderer/debug/BeeDebugRenderer$BeeInfo;)V net/minecraft/client/renderer/debug/BeeDebugRenderer/lambda$doRender$3 (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;Lnet/minecraft/client/renderer/debug/BeeDebugRenderer$BeeInfo;)V +MD: net/minecraft/client/renderer/debug/BeeDebugRenderer/m_269015_ (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;Lnet/minecraft/core/Position;ILjava/lang/String;IF)V net/minecraft/client/renderer/debug/BeeDebugRenderer/renderTextOverMob (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;Lnet/minecraft/core/Position;ILjava/lang/String;IF)V +MD: net/minecraft/client/renderer/debug/BeeDebugRenderer/m_269057_ (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;Ljava/lang/String;Lnet/minecraft/client/renderer/debug/BeeDebugRenderer$HiveInfo;II)V net/minecraft/client/renderer/debug/BeeDebugRenderer/renderTextOverHive (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;Ljava/lang/String;Lnet/minecraft/client/renderer/debug/BeeDebugRenderer$HiveInfo;II)V +MD: net/minecraft/client/renderer/debug/BeeDebugRenderer/m_269169_ (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;Lnet/minecraft/client/renderer/debug/BeeDebugRenderer$HiveInfo;Ljava/util/Collection;)V net/minecraft/client/renderer/debug/BeeDebugRenderer/renderHiveInfo (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;Lnet/minecraft/client/renderer/debug/BeeDebugRenderer$HiveInfo;Ljava/util/Collection;)V +MD: net/minecraft/client/renderer/debug/BeeDebugRenderer/m_269172_ (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;Lnet/minecraft/core/BlockPos;)V net/minecraft/client/renderer/debug/BeeDebugRenderer/highlightHive (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/client/renderer/debug/BeeDebugRenderer/m_269283_ (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;)V net/minecraft/client/renderer/debug/BeeDebugRenderer/doRender (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;)V +MD: net/minecraft/client/renderer/debug/BeeDebugRenderer/m_269284_ (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;Lnet/minecraft/client/renderer/debug/BeeDebugRenderer$BeeInfo;)V net/minecraft/client/renderer/debug/BeeDebugRenderer/renderBeeInfo (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;Lnet/minecraft/client/renderer/debug/BeeDebugRenderer$BeeInfo;)V +MD: net/minecraft/client/renderer/debug/BeeDebugRenderer/m_269380_ (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;Ljava/lang/String;Lnet/minecraft/core/BlockPos;II)V net/minecraft/client/renderer/debug/BeeDebugRenderer/renderTextOverPos (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;Ljava/lang/String;Lnet/minecraft/core/BlockPos;II)V +MD: net/minecraft/client/renderer/debug/BeeDebugRenderer/m_269467_ (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;Lnet/minecraft/client/renderer/debug/BeeDebugRenderer$BeeInfo;)V net/minecraft/client/renderer/debug/BeeDebugRenderer/renderPath (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;Lnet/minecraft/client/renderer/debug/BeeDebugRenderer$BeeInfo;)V +MD: net/minecraft/client/renderer/debug/BeeDebugRenderer/m_269561_ (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;)V net/minecraft/client/renderer/debug/BeeDebugRenderer/renderFlowerInfos (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;)V +MD: net/minecraft/client/renderer/debug/BeeDebugRenderer/m_269584_ (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;Lnet/minecraft/core/BlockPos;Ljava/util/List;)V net/minecraft/client/renderer/debug/BeeDebugRenderer/renderGhostHive (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;Lnet/minecraft/core/BlockPos;Ljava/util/List;)V +MD: net/minecraft/client/renderer/debug/BeeDebugRenderer/m_5630_ ()V net/minecraft/client/renderer/debug/BeeDebugRenderer/clear ()V +MD: net/minecraft/client/renderer/debug/BeeDebugRenderer/m_7790_ (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;DDD)V net/minecraft/client/renderer/debug/BeeDebugRenderer/render (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;DDD)V +MD: net/minecraft/client/renderer/debug/BeeDebugRenderer$BeeInfo/ (Ljava/util/UUID;ILnet/minecraft/core/Position;Lnet/minecraft/world/level/pathfinder/Path;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;I)V net/minecraft/client/renderer/debug/BeeDebugRenderer$BeeInfo/ (Ljava/util/UUID;ILnet/minecraft/core/Position;Lnet/minecraft/world/level/pathfinder/Path;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;I)V +MD: net/minecraft/client/renderer/debug/BeeDebugRenderer$BeeInfo/m_113174_ ()Ljava/util/UUID; net/minecraft/client/renderer/debug/BeeDebugRenderer$BeeInfo/getUuid ()Ljava/util/UUID; +MD: net/minecraft/client/renderer/debug/BeeDebugRenderer$BeeInfo/m_113175_ (Lnet/minecraft/core/BlockPos;)Z net/minecraft/client/renderer/debug/BeeDebugRenderer$BeeInfo/hasHive (Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/client/renderer/debug/BeeDebugRenderer$BeeInfo/m_113177_ ()Ljava/lang/String; net/minecraft/client/renderer/debug/BeeDebugRenderer$BeeInfo/getName ()Ljava/lang/String; +MD: net/minecraft/client/renderer/debug/BeeDebugRenderer$BeeInfo/m_113178_ ()Z net/minecraft/client/renderer/debug/BeeDebugRenderer$BeeInfo/hasFlower ()Z +MD: net/minecraft/client/renderer/debug/BeeDebugRenderer$BeeInfo/toString ()Ljava/lang/String; net/minecraft/client/renderer/debug/BeeDebugRenderer$BeeInfo/toString ()Ljava/lang/String; +MD: net/minecraft/client/renderer/debug/BeeDebugRenderer$HiveInfo/ (Lnet/minecraft/core/BlockPos;Ljava/lang/String;IIZJ)V net/minecraft/client/renderer/debug/BeeDebugRenderer$HiveInfo/ (Lnet/minecraft/core/BlockPos;Ljava/lang/String;IIZJ)V +MD: net/minecraft/client/renderer/debug/BrainDebugRenderer/ ()V net/minecraft/client/renderer/debug/BrainDebugRenderer/ ()V +MD: net/minecraft/client/renderer/debug/BrainDebugRenderer/ (Lnet/minecraft/client/Minecraft;)V net/minecraft/client/renderer/debug/BrainDebugRenderer/ (Lnet/minecraft/client/Minecraft;)V +MD: net/minecraft/client/renderer/debug/BrainDebugRenderer/m_113211_ (Lnet/minecraft/world/entity/Entity;)V net/minecraft/client/renderer/debug/BrainDebugRenderer/lambda$updateLastLookedAtUuid$8 (Lnet/minecraft/world/entity/Entity;)V +MD: net/minecraft/client/renderer/debug/BrainDebugRenderer/m_113219_ (Lnet/minecraft/client/renderer/debug/BrainDebugRenderer$BrainDump;)V net/minecraft/client/renderer/debug/BrainDebugRenderer/addOrUpdateBrainDump (Lnet/minecraft/client/renderer/debug/BrainDebugRenderer$BrainDump;)V +MD: net/minecraft/client/renderer/debug/BrainDebugRenderer/m_113226_ (Lnet/minecraft/client/renderer/debug/BrainDebugRenderer$PoiInfo;)V net/minecraft/client/renderer/debug/BrainDebugRenderer/addPoi (Lnet/minecraft/client/renderer/debug/BrainDebugRenderer$PoiInfo;)V +MD: net/minecraft/client/renderer/debug/BrainDebugRenderer/m_113228_ (Lnet/minecraft/core/BlockPos;)V net/minecraft/client/renderer/debug/BrainDebugRenderer/removePoi (Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/client/renderer/debug/BrainDebugRenderer/m_113230_ (Lnet/minecraft/core/BlockPos;I)V net/minecraft/client/renderer/debug/BrainDebugRenderer/setFreeTicketCount (Lnet/minecraft/core/BlockPos;I)V +MD: net/minecraft/client/renderer/debug/BrainDebugRenderer/m_113233_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/client/renderer/debug/BrainDebugRenderer$BrainDump;)Z net/minecraft/client/renderer/debug/BrainDebugRenderer/lambda$getPotentialTicketHolders$6 (Lnet/minecraft/core/BlockPos;Lnet/minecraft/client/renderer/debug/BrainDebugRenderer$BrainDump;)Z +MD: net/minecraft/client/renderer/debug/BrainDebugRenderer/m_113262_ (Ljava/util/Map$Entry;)Z net/minecraft/client/renderer/debug/BrainDebugRenderer/lambda$clearRemovedEntities$1 (Ljava/util/Map$Entry;)Z +MD: net/minecraft/client/renderer/debug/BrainDebugRenderer/m_113264_ ()V net/minecraft/client/renderer/debug/BrainDebugRenderer/clearRemovedEntities ()V +MD: net/minecraft/client/renderer/debug/BrainDebugRenderer/m_113265_ (Lnet/minecraft/client/renderer/debug/BrainDebugRenderer$BrainDump;)Z net/minecraft/client/renderer/debug/BrainDebugRenderer/isMobSelected (Lnet/minecraft/client/renderer/debug/BrainDebugRenderer$BrainDump;)Z +MD: net/minecraft/client/renderer/debug/BrainDebugRenderer/m_113276_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/client/renderer/debug/BrainDebugRenderer$BrainDump;)Z net/minecraft/client/renderer/debug/BrainDebugRenderer/lambda$getTicketHolders$5 (Lnet/minecraft/core/BlockPos;Lnet/minecraft/client/renderer/debug/BrainDebugRenderer$BrainDump;)Z +MD: net/minecraft/client/renderer/debug/BrainDebugRenderer/m_113279_ ()Ljava/util/Map; net/minecraft/client/renderer/debug/BrainDebugRenderer/getGhostPois ()Ljava/util/Map; +MD: net/minecraft/client/renderer/debug/BrainDebugRenderer/m_113280_ (Lnet/minecraft/client/renderer/debug/BrainDebugRenderer$BrainDump;)Z net/minecraft/client/renderer/debug/BrainDebugRenderer/isPlayerCloseEnoughToMob (Lnet/minecraft/client/renderer/debug/BrainDebugRenderer$BrainDump;)Z +MD: net/minecraft/client/renderer/debug/BrainDebugRenderer/m_113282_ (Lnet/minecraft/client/renderer/debug/BrainDebugRenderer$PoiInfo;)Ljava/util/Set; net/minecraft/client/renderer/debug/BrainDebugRenderer/getTicketHolderNames (Lnet/minecraft/client/renderer/debug/BrainDebugRenderer$PoiInfo;)Ljava/util/Set; +MD: net/minecraft/client/renderer/debug/BrainDebugRenderer/m_113284_ (Lnet/minecraft/core/BlockPos;)Ljava/util/Collection; net/minecraft/client/renderer/debug/BrainDebugRenderer/getTicketHolders (Lnet/minecraft/core/BlockPos;)Ljava/util/Collection; +MD: net/minecraft/client/renderer/debug/BrainDebugRenderer/m_113286_ ()V net/minecraft/client/renderer/debug/BrainDebugRenderer/updateLastLookedAtUuid ()V +MD: net/minecraft/client/renderer/debug/BrainDebugRenderer/m_113287_ (Lnet/minecraft/client/renderer/debug/BrainDebugRenderer$PoiInfo;)Ljava/util/Set; net/minecraft/client/renderer/debug/BrainDebugRenderer/getPotentialTicketHolderNames (Lnet/minecraft/client/renderer/debug/BrainDebugRenderer$PoiInfo;)Ljava/util/Set; +MD: net/minecraft/client/renderer/debug/BrainDebugRenderer/m_113289_ (Lnet/minecraft/core/BlockPos;)Ljava/util/Collection; net/minecraft/client/renderer/debug/BrainDebugRenderer/getPotentialTicketHolders (Lnet/minecraft/core/BlockPos;)Ljava/util/Collection; +MD: net/minecraft/client/renderer/debug/BrainDebugRenderer/m_113291_ (Lnet/minecraft/core/BlockPos;)Ljava/util/List; net/minecraft/client/renderer/debug/BrainDebugRenderer/lambda$getGhostPois$7 (Lnet/minecraft/core/BlockPos;)Ljava/util/List; +MD: net/minecraft/client/renderer/debug/BrainDebugRenderer/m_173810_ (I)V net/minecraft/client/renderer/debug/BrainDebugRenderer/removeBrainDump (I)V +MD: net/minecraft/client/renderer/debug/BrainDebugRenderer/m_173812_ (ILnet/minecraft/client/renderer/debug/BrainDebugRenderer$BrainDump;)Z net/minecraft/client/renderer/debug/BrainDebugRenderer/lambda$removeBrainDump$0 (ILnet/minecraft/client/renderer/debug/BrainDebugRenderer$BrainDump;)Z +MD: net/minecraft/client/renderer/debug/BrainDebugRenderer/m_268823_ (Lnet/minecraft/core/BlockPos;Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;Lnet/minecraft/core/BlockPos;Ljava/util/List;)V net/minecraft/client/renderer/debug/BrainDebugRenderer/lambda$doRender$4 (Lnet/minecraft/core/BlockPos;Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;Lnet/minecraft/core/BlockPos;Ljava/util/List;)V +MD: net/minecraft/client/renderer/debug/BrainDebugRenderer/m_268824_ (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;DDDLnet/minecraft/client/renderer/debug/BrainDebugRenderer$BrainDump;)V net/minecraft/client/renderer/debug/BrainDebugRenderer/lambda$doRender$2 (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;DDDLnet/minecraft/client/renderer/debug/BrainDebugRenderer$BrainDump;)V +MD: net/minecraft/client/renderer/debug/BrainDebugRenderer/m_268825_ (Lnet/minecraft/core/BlockPos;Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;Lnet/minecraft/client/renderer/debug/BrainDebugRenderer$PoiInfo;)V net/minecraft/client/renderer/debug/BrainDebugRenderer/lambda$doRender$3 (Lnet/minecraft/core/BlockPos;Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;Lnet/minecraft/client/renderer/debug/BrainDebugRenderer$PoiInfo;)V +MD: net/minecraft/client/renderer/debug/BrainDebugRenderer/m_269077_ (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;DDD)V net/minecraft/client/renderer/debug/BrainDebugRenderer/doRender (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;DDD)V +MD: net/minecraft/client/renderer/debug/BrainDebugRenderer/m_269122_ (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;Lnet/minecraft/client/renderer/debug/BrainDebugRenderer$PoiInfo;)V net/minecraft/client/renderer/debug/BrainDebugRenderer/renderPoiInfo (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;Lnet/minecraft/client/renderer/debug/BrainDebugRenderer$PoiInfo;)V +MD: net/minecraft/client/renderer/debug/BrainDebugRenderer/m_269312_ (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;Lnet/minecraft/client/renderer/debug/BrainDebugRenderer$BrainDump;DDD)V net/minecraft/client/renderer/debug/BrainDebugRenderer/renderBrainInfo (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;Lnet/minecraft/client/renderer/debug/BrainDebugRenderer$BrainDump;DDD)V +MD: net/minecraft/client/renderer/debug/BrainDebugRenderer/m_269385_ (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;Ljava/lang/String;Lnet/minecraft/core/BlockPos;II)V net/minecraft/client/renderer/debug/BrainDebugRenderer/renderTextOverPos (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;Ljava/lang/String;Lnet/minecraft/core/BlockPos;II)V +MD: net/minecraft/client/renderer/debug/BrainDebugRenderer/m_269424_ (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;Lnet/minecraft/client/renderer/debug/BrainDebugRenderer$BrainDump;DDD)V net/minecraft/client/renderer/debug/BrainDebugRenderer/renderPath (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;Lnet/minecraft/client/renderer/debug/BrainDebugRenderer$BrainDump;DDD)V +MD: net/minecraft/client/renderer/debug/BrainDebugRenderer/m_269464_ (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;Lnet/minecraft/core/BlockPos;)V net/minecraft/client/renderer/debug/BrainDebugRenderer/highlightPoi (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/client/renderer/debug/BrainDebugRenderer/m_269502_ (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;Lnet/minecraft/core/Position;ILjava/lang/String;IF)V net/minecraft/client/renderer/debug/BrainDebugRenderer/renderTextOverMob (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;Lnet/minecraft/core/Position;ILjava/lang/String;IF)V +MD: net/minecraft/client/renderer/debug/BrainDebugRenderer/m_269509_ (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;Lnet/minecraft/core/BlockPos;Ljava/util/List;)V net/minecraft/client/renderer/debug/BrainDebugRenderer/renderGhostPoi (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;Lnet/minecraft/core/BlockPos;Ljava/util/List;)V +MD: net/minecraft/client/renderer/debug/BrainDebugRenderer/m_269588_ (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;Ljava/lang/String;Lnet/minecraft/client/renderer/debug/BrainDebugRenderer$PoiInfo;II)V net/minecraft/client/renderer/debug/BrainDebugRenderer/renderTextOverPoi (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;Ljava/lang/String;Lnet/minecraft/client/renderer/debug/BrainDebugRenderer$PoiInfo;II)V +MD: net/minecraft/client/renderer/debug/BrainDebugRenderer/m_5630_ ()V net/minecraft/client/renderer/debug/BrainDebugRenderer/clear ()V +MD: net/minecraft/client/renderer/debug/BrainDebugRenderer/m_7790_ (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;DDD)V net/minecraft/client/renderer/debug/BrainDebugRenderer/render (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;DDD)V +MD: net/minecraft/client/renderer/debug/BrainDebugRenderer$BrainDump/ (Ljava/util/UUID;ILjava/lang/String;Ljava/lang/String;IFFLnet/minecraft/core/Position;Ljava/lang/String;Lnet/minecraft/world/level/pathfinder/Path;ZI)V net/minecraft/client/renderer/debug/BrainDebugRenderer$BrainDump/ (Ljava/util/UUID;ILjava/lang/String;Ljava/lang/String;IFFLnet/minecraft/core/Position;Ljava/lang/String;Lnet/minecraft/world/level/pathfinder/Path;ZI)V +MD: net/minecraft/client/renderer/debug/BrainDebugRenderer$BrainDump/m_113322_ ()Ljava/util/UUID; net/minecraft/client/renderer/debug/BrainDebugRenderer$BrainDump/getUuid ()Ljava/util/UUID; +MD: net/minecraft/client/renderer/debug/BrainDebugRenderer$BrainDump/m_113326_ (Lnet/minecraft/core/BlockPos;)Z net/minecraft/client/renderer/debug/BrainDebugRenderer$BrainDump/hasPoi (Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/client/renderer/debug/BrainDebugRenderer$BrainDump/m_113331_ (Lnet/minecraft/core/BlockPos;)Z net/minecraft/client/renderer/debug/BrainDebugRenderer$BrainDump/hasPotentialPoi (Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/client/renderer/debug/BrainDebugRenderer$PoiInfo/ (Lnet/minecraft/core/BlockPos;Ljava/lang/String;I)V net/minecraft/client/renderer/debug/BrainDebugRenderer$PoiInfo/ (Lnet/minecraft/core/BlockPos;Ljava/lang/String;I)V +MD: net/minecraft/client/renderer/debug/ChunkBorderRenderer/ ()V net/minecraft/client/renderer/debug/ChunkBorderRenderer/ ()V +MD: net/minecraft/client/renderer/debug/ChunkBorderRenderer/ (Lnet/minecraft/client/Minecraft;)V net/minecraft/client/renderer/debug/ChunkBorderRenderer/ (Lnet/minecraft/client/Minecraft;)V +MD: net/minecraft/client/renderer/debug/ChunkBorderRenderer/m_7790_ (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;DDD)V net/minecraft/client/renderer/debug/ChunkBorderRenderer/render (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;DDD)V +MD: net/minecraft/client/renderer/debug/ChunkDebugRenderer/ (Lnet/minecraft/client/Minecraft;)V net/minecraft/client/renderer/debug/ChunkDebugRenderer/ (Lnet/minecraft/client/Minecraft;)V +MD: net/minecraft/client/renderer/debug/ChunkDebugRenderer/m_7790_ (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;DDD)V net/minecraft/client/renderer/debug/ChunkDebugRenderer/render (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;DDD)V +MD: net/minecraft/client/renderer/debug/ChunkDebugRenderer$ChunkData/ (Lnet/minecraft/client/renderer/debug/ChunkDebugRenderer;Lnet/minecraft/client/server/IntegratedServer;DD)V net/minecraft/client/renderer/debug/ChunkDebugRenderer$ChunkData/ (Lnet/minecraft/client/renderer/debug/ChunkDebugRenderer;Lnet/minecraft/client/server/IntegratedServer;DD)V +MD: net/minecraft/client/renderer/debug/ChunkDebugRenderer$ChunkData/m_113393_ (Lnet/minecraft/client/server/IntegratedServer;Lnet/minecraft/resources/ResourceKey;II)Ljava/util/Map; net/minecraft/client/renderer/debug/ChunkDebugRenderer$ChunkData/lambda$new$0 (Lnet/minecraft/client/server/IntegratedServer;Lnet/minecraft/resources/ResourceKey;II)Ljava/util/Map; +MD: net/minecraft/client/renderer/debug/CollisionBoxRenderer/ (Lnet/minecraft/client/Minecraft;)V net/minecraft/client/renderer/debug/CollisionBoxRenderer/ (Lnet/minecraft/client/Minecraft;)V +MD: net/minecraft/client/renderer/debug/CollisionBoxRenderer/m_7790_ (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;DDD)V net/minecraft/client/renderer/debug/CollisionBoxRenderer/render (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;DDD)V +MD: net/minecraft/client/renderer/debug/DebugRenderer/ (Lnet/minecraft/client/Minecraft;)V net/minecraft/client/renderer/debug/DebugRenderer/ (Lnet/minecraft/client/Minecraft;)V +MD: net/minecraft/client/renderer/debug/DebugRenderer/m_113434_ ()V net/minecraft/client/renderer/debug/DebugRenderer/clear ()V +MD: net/minecraft/client/renderer/debug/DebugRenderer/m_113446_ (Lnet/minecraft/world/entity/Entity;)Z net/minecraft/client/renderer/debug/DebugRenderer/lambda$getTargetedEntity$0 (Lnet/minecraft/world/entity/Entity;)Z +MD: net/minecraft/client/renderer/debug/DebugRenderer/m_113448_ (Lnet/minecraft/world/entity/Entity;I)Ljava/util/Optional; net/minecraft/client/renderer/debug/DebugRenderer/getTargetedEntity (Lnet/minecraft/world/entity/Entity;I)Ljava/util/Optional; +MD: net/minecraft/client/renderer/debug/DebugRenderer/m_113457_ (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource$BufferSource;DDD)V net/minecraft/client/renderer/debug/DebugRenderer/render (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource$BufferSource;DDD)V +MD: net/minecraft/client/renderer/debug/DebugRenderer/m_113506_ ()Z net/minecraft/client/renderer/debug/DebugRenderer/switchRenderChunkborder ()Z +MD: net/minecraft/client/renderer/debug/DebugRenderer/m_269008_ (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;DDDDDDFFFF)V net/minecraft/client/renderer/debug/DebugRenderer/renderFilledBox (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;DDDDDDFFFF)V +MD: net/minecraft/client/renderer/debug/DebugRenderer/m_269055_ (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;Ljava/lang/String;IIII)V net/minecraft/client/renderer/debug/DebugRenderer/renderFloatingText (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;Ljava/lang/String;IIII)V +MD: net/minecraft/client/renderer/debug/DebugRenderer/m_269271_ (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;Ljava/lang/String;DDDI)V net/minecraft/client/renderer/debug/DebugRenderer/renderFloatingText (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;Ljava/lang/String;DDDI)V +MD: net/minecraft/client/renderer/debug/DebugRenderer/m_269311_ (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;Lnet/minecraft/world/phys/AABB;FFFF)V net/minecraft/client/renderer/debug/DebugRenderer/renderFilledBox (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;Lnet/minecraft/world/phys/AABB;FFFF)V +MD: net/minecraft/client/renderer/debug/DebugRenderer/m_269371_ (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;Lnet/minecraft/core/BlockPos;FFFFF)V net/minecraft/client/renderer/debug/DebugRenderer/renderFilledBox (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;Lnet/minecraft/core/BlockPos;FFFFF)V +MD: net/minecraft/client/renderer/debug/DebugRenderer/m_269439_ (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;Ljava/lang/String;DDDIFZFZ)V net/minecraft/client/renderer/debug/DebugRenderer/renderFloatingText (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;Ljava/lang/String;DDDIFZFZ)V +MD: net/minecraft/client/renderer/debug/DebugRenderer/m_269451_ (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;FFFF)V net/minecraft/client/renderer/debug/DebugRenderer/renderFilledBox (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;FFFF)V +MD: net/minecraft/client/renderer/debug/DebugRenderer/m_269569_ (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;Ljava/lang/String;DDDIF)V net/minecraft/client/renderer/debug/DebugRenderer/renderFloatingText (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;Ljava/lang/String;DDDIF)V +MD: net/minecraft/client/renderer/debug/DebugRenderer$SimpleDebugRenderer/m_5630_ ()V net/minecraft/client/renderer/debug/DebugRenderer$SimpleDebugRenderer/clear ()V +MD: net/minecraft/client/renderer/debug/DebugRenderer$SimpleDebugRenderer/m_7790_ (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;DDD)V net/minecraft/client/renderer/debug/DebugRenderer$SimpleDebugRenderer/render (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;DDD)V +MD: net/minecraft/client/renderer/debug/GameEventListenerRenderer/ (Lnet/minecraft/client/Minecraft;)V net/minecraft/client/renderer/debug/GameEventListenerRenderer/ (Lnet/minecraft/client/Minecraft;)V +MD: net/minecraft/client/renderer/debug/GameEventListenerRenderer/m_173830_ (Lnet/minecraft/world/level/gameevent/PositionSource;I)V net/minecraft/client/renderer/debug/GameEventListenerRenderer/trackListener (Lnet/minecraft/world/level/gameevent/PositionSource;I)V +MD: net/minecraft/client/renderer/debug/GameEventListenerRenderer/m_234509_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/phys/Vec3;Lnet/minecraft/client/renderer/debug/GameEventListenerRenderer$TrackedListener;)Z net/minecraft/client/renderer/debug/GameEventListenerRenderer/lambda$render$0 (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/phys/Vec3;Lnet/minecraft/client/renderer/debug/GameEventListenerRenderer$TrackedListener;)Z +MD: net/minecraft/client/renderer/debug/GameEventListenerRenderer/m_234513_ (Lnet/minecraft/world/level/gameevent/GameEvent;Lnet/minecraft/world/phys/Vec3;)V net/minecraft/client/renderer/debug/GameEventListenerRenderer/trackGameEvent (Lnet/minecraft/world/level/gameevent/GameEvent;Lnet/minecraft/world/phys/Vec3;)V +MD: net/minecraft/client/renderer/debug/GameEventListenerRenderer/m_268826_ (Lcom/mojang/blaze3d/vertex/PoseStack;Lcom/mojang/blaze3d/vertex/VertexConsumer;DDDLnet/minecraft/world/phys/Vec3;)V net/minecraft/client/renderer/debug/GameEventListenerRenderer/lambda$render$2 (Lcom/mojang/blaze3d/vertex/PoseStack;Lcom/mojang/blaze3d/vertex/VertexConsumer;DDDLnet/minecraft/world/phys/Vec3;)V +MD: net/minecraft/client/renderer/debug/GameEventListenerRenderer/m_268827_ (Lnet/minecraft/client/renderer/debug/GameEventListenerRenderer$TrackedListener;Lcom/mojang/blaze3d/vertex/PoseStack;Lcom/mojang/blaze3d/vertex/VertexConsumer;DDDLnet/minecraft/world/phys/Vec3;)V net/minecraft/client/renderer/debug/GameEventListenerRenderer/lambda$render$1 (Lnet/minecraft/client/renderer/debug/GameEventListenerRenderer$TrackedListener;Lcom/mojang/blaze3d/vertex/PoseStack;Lcom/mojang/blaze3d/vertex/VertexConsumer;DDDLnet/minecraft/world/phys/Vec3;)V +MD: net/minecraft/client/renderer/debug/GameEventListenerRenderer/m_269429_ (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;Lnet/minecraft/world/phys/AABB;FFFF)V net/minecraft/client/renderer/debug/GameEventListenerRenderer/renderFilledBox (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;Lnet/minecraft/world/phys/AABB;FFFF)V +MD: net/minecraft/client/renderer/debug/GameEventListenerRenderer/m_274003_ (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;Lnet/minecraft/world/phys/Vec3;)V net/minecraft/client/renderer/debug/GameEventListenerRenderer/lambda$render$3 (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;Lnet/minecraft/world/phys/Vec3;)V +MD: net/minecraft/client/renderer/debug/GameEventListenerRenderer/m_7790_ (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;DDD)V net/minecraft/client/renderer/debug/GameEventListenerRenderer/render (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;DDD)V +MD: net/minecraft/client/renderer/debug/GameEventListenerRenderer$TrackedGameEvent/ (JLnet/minecraft/world/level/gameevent/GameEvent;Lnet/minecraft/world/phys/Vec3;)V net/minecraft/client/renderer/debug/GameEventListenerRenderer$TrackedGameEvent/ (JLnet/minecraft/world/level/gameevent/GameEvent;Lnet/minecraft/world/phys/Vec3;)V +MD: net/minecraft/client/renderer/debug/GameEventListenerRenderer$TrackedGameEvent/equals (Ljava/lang/Object;)Z net/minecraft/client/renderer/debug/GameEventListenerRenderer$TrackedGameEvent/equals (Ljava/lang/Object;)Z +MD: net/minecraft/client/renderer/debug/GameEventListenerRenderer$TrackedGameEvent/f_173861_ ()J net/minecraft/client/renderer/debug/GameEventListenerRenderer$TrackedGameEvent/timeStamp ()J +MD: net/minecraft/client/renderer/debug/GameEventListenerRenderer$TrackedGameEvent/f_173862_ ()Lnet/minecraft/world/level/gameevent/GameEvent; net/minecraft/client/renderer/debug/GameEventListenerRenderer$TrackedGameEvent/gameEvent ()Lnet/minecraft/world/level/gameevent/GameEvent; +MD: net/minecraft/client/renderer/debug/GameEventListenerRenderer$TrackedGameEvent/f_173863_ ()Lnet/minecraft/world/phys/Vec3; net/minecraft/client/renderer/debug/GameEventListenerRenderer$TrackedGameEvent/position ()Lnet/minecraft/world/phys/Vec3; +MD: net/minecraft/client/renderer/debug/GameEventListenerRenderer$TrackedGameEvent/hashCode ()I net/minecraft/client/renderer/debug/GameEventListenerRenderer$TrackedGameEvent/hashCode ()I +MD: net/minecraft/client/renderer/debug/GameEventListenerRenderer$TrackedGameEvent/m_173868_ ()Z net/minecraft/client/renderer/debug/GameEventListenerRenderer$TrackedGameEvent/isExpired ()Z +MD: net/minecraft/client/renderer/debug/GameEventListenerRenderer$TrackedGameEvent/toString ()Ljava/lang/String; net/minecraft/client/renderer/debug/GameEventListenerRenderer$TrackedGameEvent/toString ()Ljava/lang/String; +MD: net/minecraft/client/renderer/debug/GameEventListenerRenderer$TrackedListener/ (Lnet/minecraft/world/level/gameevent/PositionSource;I)V net/minecraft/client/renderer/debug/GameEventListenerRenderer$TrackedListener/ (Lnet/minecraft/world/level/gameevent/PositionSource;I)V +MD: net/minecraft/client/renderer/debug/GameEventListenerRenderer$TrackedListener/m_142078_ ()I net/minecraft/client/renderer/debug/GameEventListenerRenderer$TrackedListener/getListenerRadius ()I +MD: net/minecraft/client/renderer/debug/GameEventListenerRenderer$TrackedListener/m_142460_ ()Lnet/minecraft/world/level/gameevent/PositionSource; net/minecraft/client/renderer/debug/GameEventListenerRenderer$TrackedListener/getListenerSource ()Lnet/minecraft/world/level/gameevent/PositionSource; +MD: net/minecraft/client/renderer/debug/GameEventListenerRenderer$TrackedListener/m_173875_ (Lnet/minecraft/world/level/Level;)Ljava/util/Optional; net/minecraft/client/renderer/debug/GameEventListenerRenderer$TrackedListener/getPosition (Lnet/minecraft/world/level/Level;)Ljava/util/Optional; +MD: net/minecraft/client/renderer/debug/GameEventListenerRenderer$TrackedListener/m_214068_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/level/gameevent/GameEvent;Lnet/minecraft/world/level/gameevent/GameEvent$Context;Lnet/minecraft/world/phys/Vec3;)Z net/minecraft/client/renderer/debug/GameEventListenerRenderer$TrackedListener/handleGameEvent (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/level/gameevent/GameEvent;Lnet/minecraft/world/level/gameevent/GameEvent$Context;Lnet/minecraft/world/phys/Vec3;)Z +MD: net/minecraft/client/renderer/debug/GameEventListenerRenderer$TrackedListener/m_234542_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/phys/Vec3;)Z net/minecraft/client/renderer/debug/GameEventListenerRenderer$TrackedListener/isExpired (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/phys/Vec3;)Z +MD: net/minecraft/client/renderer/debug/GameEventListenerRenderer$TrackedListener/m_234545_ (Lnet/minecraft/world/phys/Vec3;Lnet/minecraft/world/phys/Vec3;)Z net/minecraft/client/renderer/debug/GameEventListenerRenderer$TrackedListener/lambda$isExpired$0 (Lnet/minecraft/world/phys/Vec3;Lnet/minecraft/world/phys/Vec3;)Z +MD: net/minecraft/client/renderer/debug/GameTestDebugRenderer/ ()V net/minecraft/client/renderer/debug/GameTestDebugRenderer/ ()V +MD: net/minecraft/client/renderer/debug/GameTestDebugRenderer/m_113515_ (JLjava/util/Map$Entry;)Z net/minecraft/client/renderer/debug/GameTestDebugRenderer/lambda$render$0 (JLjava/util/Map$Entry;)Z +MD: net/minecraft/client/renderer/debug/GameTestDebugRenderer/m_113524_ (Lnet/minecraft/core/BlockPos;ILjava/lang/String;I)V net/minecraft/client/renderer/debug/GameTestDebugRenderer/addMarker (Lnet/minecraft/core/BlockPos;ILjava/lang/String;I)V +MD: net/minecraft/client/renderer/debug/GameTestDebugRenderer/m_268829_ (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;Lnet/minecraft/core/BlockPos;Lnet/minecraft/client/renderer/debug/GameTestDebugRenderer$Marker;)V net/minecraft/client/renderer/debug/GameTestDebugRenderer/lambda$render$1 (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;Lnet/minecraft/core/BlockPos;Lnet/minecraft/client/renderer/debug/GameTestDebugRenderer$Marker;)V +MD: net/minecraft/client/renderer/debug/GameTestDebugRenderer/m_269452_ (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;Lnet/minecraft/core/BlockPos;Lnet/minecraft/client/renderer/debug/GameTestDebugRenderer$Marker;)V net/minecraft/client/renderer/debug/GameTestDebugRenderer/renderMarker (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;Lnet/minecraft/core/BlockPos;Lnet/minecraft/client/renderer/debug/GameTestDebugRenderer$Marker;)V +MD: net/minecraft/client/renderer/debug/GameTestDebugRenderer/m_5630_ ()V net/minecraft/client/renderer/debug/GameTestDebugRenderer/clear ()V +MD: net/minecraft/client/renderer/debug/GameTestDebugRenderer/m_7790_ (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;DDD)V net/minecraft/client/renderer/debug/GameTestDebugRenderer/render (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;DDD)V +MD: net/minecraft/client/renderer/debug/GameTestDebugRenderer$Marker/ (ILjava/lang/String;J)V net/minecraft/client/renderer/debug/GameTestDebugRenderer$Marker/ (ILjava/lang/String;J)V +MD: net/minecraft/client/renderer/debug/GameTestDebugRenderer$Marker/m_113539_ ()F net/minecraft/client/renderer/debug/GameTestDebugRenderer$Marker/getR ()F +MD: net/minecraft/client/renderer/debug/GameTestDebugRenderer$Marker/m_113540_ ()F net/minecraft/client/renderer/debug/GameTestDebugRenderer$Marker/getG ()F +MD: net/minecraft/client/renderer/debug/GameTestDebugRenderer$Marker/m_113541_ ()F net/minecraft/client/renderer/debug/GameTestDebugRenderer$Marker/getB ()F +MD: net/minecraft/client/renderer/debug/GameTestDebugRenderer$Marker/m_113542_ ()F net/minecraft/client/renderer/debug/GameTestDebugRenderer$Marker/getA ()F +MD: net/minecraft/client/renderer/debug/GoalSelectorDebugRenderer/ (Lnet/minecraft/client/Minecraft;)V net/minecraft/client/renderer/debug/GoalSelectorDebugRenderer/ (Lnet/minecraft/client/Minecraft;)V +MD: net/minecraft/client/renderer/debug/GoalSelectorDebugRenderer/m_113548_ (ILjava/util/List;)V net/minecraft/client/renderer/debug/GoalSelectorDebugRenderer/addGoalSelector (ILjava/util/List;)V +MD: net/minecraft/client/renderer/debug/GoalSelectorDebugRenderer/m_173888_ (I)V net/minecraft/client/renderer/debug/GoalSelectorDebugRenderer/removeGoalSelector (I)V +MD: net/minecraft/client/renderer/debug/GoalSelectorDebugRenderer/m_268830_ (Lnet/minecraft/core/BlockPos;Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;Ljava/lang/Integer;Ljava/util/List;)V net/minecraft/client/renderer/debug/GoalSelectorDebugRenderer/lambda$render$0 (Lnet/minecraft/core/BlockPos;Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;Ljava/lang/Integer;Ljava/util/List;)V +MD: net/minecraft/client/renderer/debug/GoalSelectorDebugRenderer/m_5630_ ()V net/minecraft/client/renderer/debug/GoalSelectorDebugRenderer/clear ()V +MD: net/minecraft/client/renderer/debug/GoalSelectorDebugRenderer/m_7790_ (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;DDD)V net/minecraft/client/renderer/debug/GoalSelectorDebugRenderer/render (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;DDD)V +MD: net/minecraft/client/renderer/debug/GoalSelectorDebugRenderer$DebugGoal/ (Lnet/minecraft/core/BlockPos;ILjava/lang/String;Z)V net/minecraft/client/renderer/debug/GoalSelectorDebugRenderer$DebugGoal/ (Lnet/minecraft/core/BlockPos;ILjava/lang/String;Z)V +MD: net/minecraft/client/renderer/debug/HeightMapRenderer/ (Lnet/minecraft/client/Minecraft;)V net/minecraft/client/renderer/debug/HeightMapRenderer/ (Lnet/minecraft/client/Minecraft;)V +MD: net/minecraft/client/renderer/debug/HeightMapRenderer/m_113573_ (Lnet/minecraft/world/level/levelgen/Heightmap$Types;)Lorg/joml/Vector3f; net/minecraft/client/renderer/debug/HeightMapRenderer/getColor (Lnet/minecraft/world/level/levelgen/Heightmap$Types;)Lorg/joml/Vector3f; +MD: net/minecraft/client/renderer/debug/HeightMapRenderer/m_7790_ (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;DDD)V net/minecraft/client/renderer/debug/HeightMapRenderer/render (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;DDD)V +MD: net/minecraft/client/renderer/debug/HeightMapRenderer$1/ ()V net/minecraft/client/renderer/debug/HeightMapRenderer$1/ ()V +MD: net/minecraft/client/renderer/debug/LightDebugRenderer/ (Lnet/minecraft/client/Minecraft;)V net/minecraft/client/renderer/debug/LightDebugRenderer/ (Lnet/minecraft/client/Minecraft;)V +MD: net/minecraft/client/renderer/debug/LightDebugRenderer/m_7790_ (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;DDD)V net/minecraft/client/renderer/debug/LightDebugRenderer/render (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;DDD)V +MD: net/minecraft/client/renderer/debug/LightSectionDebugRenderer/ ()V net/minecraft/client/renderer/debug/LightSectionDebugRenderer/ ()V +MD: net/minecraft/client/renderer/debug/LightSectionDebugRenderer/ (Lnet/minecraft/client/Minecraft;Lnet/minecraft/world/level/LightLayer;)V net/minecraft/client/renderer/debug/LightSectionDebugRenderer/ (Lnet/minecraft/client/Minecraft;Lnet/minecraft/world/level/LightLayer;)V +MD: net/minecraft/client/renderer/debug/LightSectionDebugRenderer/m_280041_ (Lnet/minecraft/core/SectionPos;Lcom/mojang/blaze3d/vertex/PoseStack;Lcom/mojang/blaze3d/vertex/VertexConsumer;DDDLorg/joml/Vector4f;Lnet/minecraft/core/Direction;III)V net/minecraft/client/renderer/debug/LightSectionDebugRenderer/lambda$renderFaces$0 (Lnet/minecraft/core/SectionPos;Lcom/mojang/blaze3d/vertex/PoseStack;Lcom/mojang/blaze3d/vertex/VertexConsumer;DDDLorg/joml/Vector4f;Lnet/minecraft/core/Direction;III)V +MD: net/minecraft/client/renderer/debug/LightSectionDebugRenderer/m_280110_ (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/world/phys/shapes/DiscreteVoxelShape;Lnet/minecraft/core/SectionPos;Lnet/minecraft/client/renderer/MultiBufferSource;DDDLorg/joml/Vector4f;)V net/minecraft/client/renderer/debug/LightSectionDebugRenderer/renderEdges (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/world/phys/shapes/DiscreteVoxelShape;Lnet/minecraft/core/SectionPos;Lnet/minecraft/client/renderer/MultiBufferSource;DDDLorg/joml/Vector4f;)V +MD: net/minecraft/client/renderer/debug/LightSectionDebugRenderer/m_280135_ (Lcom/mojang/blaze3d/vertex/PoseStack;Lcom/mojang/blaze3d/vertex/VertexConsumer;DDDIIIIIILorg/joml/Vector4f;)V net/minecraft/client/renderer/debug/LightSectionDebugRenderer/renderEdge (Lcom/mojang/blaze3d/vertex/PoseStack;Lcom/mojang/blaze3d/vertex/VertexConsumer;DDDIIIIIILorg/joml/Vector4f;)V +MD: net/minecraft/client/renderer/debug/LightSectionDebugRenderer/m_280142_ (Lcom/mojang/blaze3d/vertex/PoseStack;Lcom/mojang/blaze3d/vertex/VertexConsumer;Lnet/minecraft/core/Direction;DDDIIILorg/joml/Vector4f;)V net/minecraft/client/renderer/debug/LightSectionDebugRenderer/renderFace (Lcom/mojang/blaze3d/vertex/PoseStack;Lcom/mojang/blaze3d/vertex/VertexConsumer;Lnet/minecraft/core/Direction;DDDIIILorg/joml/Vector4f;)V +MD: net/minecraft/client/renderer/debug/LightSectionDebugRenderer/m_280198_ (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/world/phys/shapes/DiscreteVoxelShape;Lnet/minecraft/core/SectionPos;Lcom/mojang/blaze3d/vertex/VertexConsumer;DDDLorg/joml/Vector4f;)V net/minecraft/client/renderer/debug/LightSectionDebugRenderer/renderFaces (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/world/phys/shapes/DiscreteVoxelShape;Lnet/minecraft/core/SectionPos;Lcom/mojang/blaze3d/vertex/VertexConsumer;DDDLorg/joml/Vector4f;)V +MD: net/minecraft/client/renderer/debug/LightSectionDebugRenderer/m_280371_ (Lnet/minecraft/core/SectionPos;Lnet/minecraft/client/renderer/MultiBufferSource;Lcom/mojang/blaze3d/vertex/PoseStack;DDDLorg/joml/Vector4f;IIIIII)V net/minecraft/client/renderer/debug/LightSectionDebugRenderer/lambda$renderEdges$1 (Lnet/minecraft/core/SectionPos;Lnet/minecraft/client/renderer/MultiBufferSource;Lcom/mojang/blaze3d/vertex/PoseStack;DDDLorg/joml/Vector4f;IIIIII)V +MD: net/minecraft/client/renderer/debug/LightSectionDebugRenderer/m_7790_ (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;DDD)V net/minecraft/client/renderer/debug/LightSectionDebugRenderer/render (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;DDD)V +MD: net/minecraft/client/renderer/debug/LightSectionDebugRenderer$1/ ()V net/minecraft/client/renderer/debug/LightSectionDebugRenderer$1/ ()V +MD: net/minecraft/client/renderer/debug/LightSectionDebugRenderer$SectionData/ (Lnet/minecraft/world/level/lighting/LevelLightEngine;Lnet/minecraft/core/SectionPos;ILnet/minecraft/world/level/LightLayer;)V net/minecraft/client/renderer/debug/LightSectionDebugRenderer$SectionData/ (Lnet/minecraft/world/level/lighting/LevelLightEngine;Lnet/minecraft/core/SectionPos;ILnet/minecraft/world/level/LightLayer;)V +MD: net/minecraft/client/renderer/debug/NeighborsUpdateRenderer/ (Lnet/minecraft/client/Minecraft;)V net/minecraft/client/renderer/debug/NeighborsUpdateRenderer/ (Lnet/minecraft/client/Minecraft;)V +MD: net/minecraft/client/renderer/debug/NeighborsUpdateRenderer/m_113596_ (JLnet/minecraft/core/BlockPos;)V net/minecraft/client/renderer/debug/NeighborsUpdateRenderer/addUpdate (JLnet/minecraft/core/BlockPos;)V +MD: net/minecraft/client/renderer/debug/NeighborsUpdateRenderer/m_113605_ (Ljava/lang/Long;)Ljava/util/Map; net/minecraft/client/renderer/debug/NeighborsUpdateRenderer/lambda$addUpdate$0 (Ljava/lang/Long;)Ljava/util/Map; +MD: net/minecraft/client/renderer/debug/NeighborsUpdateRenderer/m_7790_ (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;DDD)V net/minecraft/client/renderer/debug/NeighborsUpdateRenderer/render (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;DDD)V +MD: net/minecraft/client/renderer/debug/PathfindingRenderer/ ()V net/minecraft/client/renderer/debug/PathfindingRenderer/ ()V +MD: net/minecraft/client/renderer/debug/PathfindingRenderer/m_113611_ (ILnet/minecraft/world/level/pathfinder/Path;F)V net/minecraft/client/renderer/debug/PathfindingRenderer/addPath (ILnet/minecraft/world/level/pathfinder/Path;F)V +MD: net/minecraft/client/renderer/debug/PathfindingRenderer/m_113634_ (Lnet/minecraft/core/BlockPos;DDD)F net/minecraft/client/renderer/debug/PathfindingRenderer/distanceToCamera (Lnet/minecraft/core/BlockPos;DDD)F +MD: net/minecraft/client/renderer/debug/PathfindingRenderer/m_269027_ (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;Lnet/minecraft/world/level/pathfinder/Path;FZZDDD)V net/minecraft/client/renderer/debug/PathfindingRenderer/renderPath (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;Lnet/minecraft/world/level/pathfinder/Path;FZZDDD)V +MD: net/minecraft/client/renderer/debug/PathfindingRenderer/m_269170_ (Lcom/mojang/blaze3d/vertex/PoseStack;Lcom/mojang/blaze3d/vertex/VertexConsumer;Lnet/minecraft/world/level/pathfinder/Path;DDD)V net/minecraft/client/renderer/debug/PathfindingRenderer/renderPathLine (Lcom/mojang/blaze3d/vertex/PoseStack;Lcom/mojang/blaze3d/vertex/VertexConsumer;Lnet/minecraft/world/level/pathfinder/Path;DDD)V +MD: net/minecraft/client/renderer/debug/PathfindingRenderer/m_7790_ (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;DDD)V net/minecraft/client/renderer/debug/PathfindingRenderer/render (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;DDD)V +MD: net/minecraft/client/renderer/debug/RaidDebugRenderer/ (Lnet/minecraft/client/Minecraft;)V net/minecraft/client/renderer/debug/RaidDebugRenderer/ (Lnet/minecraft/client/Minecraft;)V +MD: net/minecraft/client/renderer/debug/RaidDebugRenderer/m_113663_ (Ljava/util/Collection;)V net/minecraft/client/renderer/debug/RaidDebugRenderer/setRaidCenters (Ljava/util/Collection;)V +MD: net/minecraft/client/renderer/debug/RaidDebugRenderer/m_113665_ ()Lnet/minecraft/client/Camera; net/minecraft/client/renderer/debug/RaidDebugRenderer/getCamera ()Lnet/minecraft/client/Camera; +MD: net/minecraft/client/renderer/debug/RaidDebugRenderer/m_269099_ (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;Lnet/minecraft/core/BlockPos;)V net/minecraft/client/renderer/debug/RaidDebugRenderer/highlightRaidCenter (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/client/renderer/debug/RaidDebugRenderer/m_269257_ (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;Ljava/lang/String;Lnet/minecraft/core/BlockPos;I)V net/minecraft/client/renderer/debug/RaidDebugRenderer/renderTextOverBlock (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;Ljava/lang/String;Lnet/minecraft/core/BlockPos;I)V +MD: net/minecraft/client/renderer/debug/RaidDebugRenderer/m_7790_ (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;DDD)V net/minecraft/client/renderer/debug/RaidDebugRenderer/render (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;DDD)V +MD: net/minecraft/client/renderer/debug/SolidFaceRenderer/ (Lnet/minecraft/client/Minecraft;)V net/minecraft/client/renderer/debug/SolidFaceRenderer/ (Lnet/minecraft/client/Minecraft;)V +MD: net/minecraft/client/renderer/debug/SolidFaceRenderer/m_7790_ (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;DDD)V net/minecraft/client/renderer/debug/SolidFaceRenderer/render (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;DDD)V +MD: net/minecraft/client/renderer/debug/StructureRenderer/ (Lnet/minecraft/client/Minecraft;)V net/minecraft/client/renderer/debug/StructureRenderer/ (Lnet/minecraft/client/Minecraft;)V +MD: net/minecraft/client/renderer/debug/StructureRenderer/m_113682_ (Lnet/minecraft/world/level/levelgen/structure/BoundingBox;Ljava/util/List;Ljava/util/List;Lnet/minecraft/world/level/dimension/DimensionType;)V net/minecraft/client/renderer/debug/StructureRenderer/addBoundingBox (Lnet/minecraft/world/level/levelgen/structure/BoundingBox;Ljava/util/List;Ljava/util/List;Lnet/minecraft/world/level/dimension/DimensionType;)V +MD: net/minecraft/client/renderer/debug/StructureRenderer/m_5630_ ()V net/minecraft/client/renderer/debug/StructureRenderer/clear ()V +MD: net/minecraft/client/renderer/debug/StructureRenderer/m_7790_ (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;DDD)V net/minecraft/client/renderer/debug/StructureRenderer/render (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;DDD)V +MD: net/minecraft/client/renderer/debug/SupportBlockRenderer/ (Lnet/minecraft/client/Minecraft;)V net/minecraft/client/renderer/debug/SupportBlockRenderer/ (Lnet/minecraft/client/Minecraft;)V +MD: net/minecraft/client/renderer/debug/SupportBlockRenderer/m_285734_ (Lnet/minecraft/world/entity/Entity;)D net/minecraft/client/renderer/debug/SupportBlockRenderer/getBias (Lnet/minecraft/world/entity/Entity;)D +MD: net/minecraft/client/renderer/debug/SupportBlockRenderer/m_285847_ (Lnet/minecraft/core/BlockPos;Lcom/mojang/blaze3d/vertex/PoseStack;DDDLnet/minecraft/client/renderer/MultiBufferSource;DFFF)V net/minecraft/client/renderer/debug/SupportBlockRenderer/highlightPosition (Lnet/minecraft/core/BlockPos;Lcom/mojang/blaze3d/vertex/PoseStack;DDDLnet/minecraft/client/renderer/MultiBufferSource;DFFF)V +MD: net/minecraft/client/renderer/debug/SupportBlockRenderer/m_285890_ (Ljava/util/function/DoubleSupplier;Lnet/minecraft/world/entity/Entity;Lcom/mojang/blaze3d/vertex/PoseStack;DDDLnet/minecraft/client/renderer/MultiBufferSource;FFFLnet/minecraft/core/BlockPos;)V net/minecraft/client/renderer/debug/SupportBlockRenderer/lambda$drawHighlights$2 (Ljava/util/function/DoubleSupplier;Lnet/minecraft/world/entity/Entity;Lcom/mojang/blaze3d/vertex/PoseStack;DDDLnet/minecraft/client/renderer/MultiBufferSource;FFFLnet/minecraft/core/BlockPos;)V +MD: net/minecraft/client/renderer/debug/SupportBlockRenderer/m_286040_ ()D net/minecraft/client/renderer/debug/SupportBlockRenderer/lambda$render$0 ()D +MD: net/minecraft/client/renderer/debug/SupportBlockRenderer/m_286095_ (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;DDDLnet/minecraft/world/entity/Entity;Ljava/util/function/DoubleSupplier;FFF)V net/minecraft/client/renderer/debug/SupportBlockRenderer/drawHighlights (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;DDDLnet/minecraft/world/entity/Entity;Ljava/util/function/DoubleSupplier;FFF)V +MD: net/minecraft/client/renderer/debug/SupportBlockRenderer/m_286110_ (Lnet/minecraft/world/entity/Entity;)D net/minecraft/client/renderer/debug/SupportBlockRenderer/lambda$render$1 (Lnet/minecraft/world/entity/Entity;)D +MD: net/minecraft/client/renderer/debug/SupportBlockRenderer/m_7790_ (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;DDD)V net/minecraft/client/renderer/debug/SupportBlockRenderer/render (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;DDD)V +MD: net/minecraft/client/renderer/debug/VillageSectionsDebugRenderer/ ()V net/minecraft/client/renderer/debug/VillageSectionsDebugRenderer/ ()V +MD: net/minecraft/client/renderer/debug/VillageSectionsDebugRenderer/m_113709_ (Lnet/minecraft/core/SectionPos;)V net/minecraft/client/renderer/debug/VillageSectionsDebugRenderer/setVillageSection (Lnet/minecraft/core/SectionPos;)V +MD: net/minecraft/client/renderer/debug/VillageSectionsDebugRenderer/m_113711_ (Lnet/minecraft/core/SectionPos;)V net/minecraft/client/renderer/debug/VillageSectionsDebugRenderer/setNotVillageSection (Lnet/minecraft/core/SectionPos;)V +MD: net/minecraft/client/renderer/debug/VillageSectionsDebugRenderer/m_268831_ (Lnet/minecraft/core/BlockPos;Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;Lnet/minecraft/core/SectionPos;)V net/minecraft/client/renderer/debug/VillageSectionsDebugRenderer/lambda$render$0 (Lnet/minecraft/core/BlockPos;Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;Lnet/minecraft/core/SectionPos;)V +MD: net/minecraft/client/renderer/debug/VillageSectionsDebugRenderer/m_269445_ (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;Lnet/minecraft/core/SectionPos;)V net/minecraft/client/renderer/debug/VillageSectionsDebugRenderer/highlightVillageSection (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;Lnet/minecraft/core/SectionPos;)V +MD: net/minecraft/client/renderer/debug/VillageSectionsDebugRenderer/m_5630_ ()V net/minecraft/client/renderer/debug/VillageSectionsDebugRenderer/clear ()V +MD: net/minecraft/client/renderer/debug/VillageSectionsDebugRenderer/m_7790_ (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;DDD)V net/minecraft/client/renderer/debug/VillageSectionsDebugRenderer/render (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;DDD)V +MD: net/minecraft/client/renderer/debug/WaterDebugRenderer/ (Lnet/minecraft/client/Minecraft;)V net/minecraft/client/renderer/debug/WaterDebugRenderer/ (Lnet/minecraft/client/Minecraft;)V +MD: net/minecraft/client/renderer/debug/WaterDebugRenderer/m_7790_ (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;DDD)V net/minecraft/client/renderer/debug/WaterDebugRenderer/render (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;DDD)V +MD: net/minecraft/client/renderer/debug/WorldGenAttemptRenderer/ ()V net/minecraft/client/renderer/debug/WorldGenAttemptRenderer/ ()V +MD: net/minecraft/client/renderer/debug/WorldGenAttemptRenderer/m_113737_ (Lnet/minecraft/core/BlockPos;FFFFF)V net/minecraft/client/renderer/debug/WorldGenAttemptRenderer/addPos (Lnet/minecraft/core/BlockPos;FFFFF)V +MD: net/minecraft/client/renderer/debug/WorldGenAttemptRenderer/m_7790_ (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;DDD)V net/minecraft/client/renderer/debug/WorldGenAttemptRenderer/render (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;DDD)V +MD: net/minecraft/client/renderer/entity/AbstractHorseRenderer/ (Lnet/minecraft/client/renderer/entity/EntityRendererProvider$Context;Lnet/minecraft/client/model/HorseModel;F)V net/minecraft/client/renderer/entity/AbstractHorseRenderer/ (Lnet/minecraft/client/renderer/entity/EntityRendererProvider$Context;Lnet/minecraft/client/model/HorseModel;F)V +MD: net/minecraft/client/renderer/entity/AbstractHorseRenderer/m_7546_ (Lnet/minecraft/world/entity/animal/horse/AbstractHorse;Lcom/mojang/blaze3d/vertex/PoseStack;F)V net/minecraft/client/renderer/entity/AbstractHorseRenderer/scale (Lnet/minecraft/world/entity/animal/horse/AbstractHorse;Lcom/mojang/blaze3d/vertex/PoseStack;F)V +MD: net/minecraft/client/renderer/entity/AbstractHorseRenderer/m_7546_ (Lnet/minecraft/world/entity/LivingEntity;Lcom/mojang/blaze3d/vertex/PoseStack;F)V net/minecraft/client/renderer/entity/AbstractHorseRenderer/scale (Lnet/minecraft/world/entity/LivingEntity;Lcom/mojang/blaze3d/vertex/PoseStack;F)V +MD: net/minecraft/client/renderer/entity/AbstractZombieRenderer/ ()V net/minecraft/client/renderer/entity/AbstractZombieRenderer/ ()V +MD: net/minecraft/client/renderer/entity/AbstractZombieRenderer/ (Lnet/minecraft/client/renderer/entity/EntityRendererProvider$Context;Lnet/minecraft/client/model/ZombieModel;Lnet/minecraft/client/model/ZombieModel;Lnet/minecraft/client/model/ZombieModel;)V net/minecraft/client/renderer/entity/AbstractZombieRenderer/ (Lnet/minecraft/client/renderer/entity/EntityRendererProvider$Context;Lnet/minecraft/client/model/ZombieModel;Lnet/minecraft/client/model/ZombieModel;Lnet/minecraft/client/model/ZombieModel;)V +MD: net/minecraft/client/renderer/entity/AbstractZombieRenderer/m_5478_ (Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/client/renderer/entity/AbstractZombieRenderer/getTextureLocation (Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/client/renderer/entity/AbstractZombieRenderer/m_5478_ (Lnet/minecraft/world/entity/monster/Zombie;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/client/renderer/entity/AbstractZombieRenderer/getTextureLocation (Lnet/minecraft/world/entity/monster/Zombie;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/client/renderer/entity/AbstractZombieRenderer/m_5936_ (Lnet/minecraft/world/entity/monster/Zombie;)Z net/minecraft/client/renderer/entity/AbstractZombieRenderer/isShaking (Lnet/minecraft/world/entity/monster/Zombie;)Z +MD: net/minecraft/client/renderer/entity/AbstractZombieRenderer/m_5936_ (Lnet/minecraft/world/entity/LivingEntity;)Z net/minecraft/client/renderer/entity/AbstractZombieRenderer/isShaking (Lnet/minecraft/world/entity/LivingEntity;)Z +MD: net/minecraft/client/renderer/entity/AllayRenderer/ ()V net/minecraft/client/renderer/entity/AllayRenderer/ ()V +MD: net/minecraft/client/renderer/entity/AllayRenderer/ (Lnet/minecraft/client/renderer/entity/EntityRendererProvider$Context;)V net/minecraft/client/renderer/entity/AllayRenderer/ (Lnet/minecraft/client/renderer/entity/EntityRendererProvider$Context;)V +MD: net/minecraft/client/renderer/entity/AllayRenderer/m_5478_ (Lnet/minecraft/world/entity/animal/allay/Allay;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/client/renderer/entity/AllayRenderer/getTextureLocation (Lnet/minecraft/world/entity/animal/allay/Allay;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/client/renderer/entity/AllayRenderer/m_5478_ (Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/client/renderer/entity/AllayRenderer/getTextureLocation (Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/client/renderer/entity/AllayRenderer/m_6086_ (Lnet/minecraft/world/entity/Entity;Lnet/minecraft/core/BlockPos;)I net/minecraft/client/renderer/entity/AllayRenderer/getBlockLightLevel (Lnet/minecraft/world/entity/Entity;Lnet/minecraft/core/BlockPos;)I +MD: net/minecraft/client/renderer/entity/AllayRenderer/m_6086_ (Lnet/minecraft/world/entity/animal/allay/Allay;Lnet/minecraft/core/BlockPos;)I net/minecraft/client/renderer/entity/AllayRenderer/getBlockLightLevel (Lnet/minecraft/world/entity/animal/allay/Allay;Lnet/minecraft/core/BlockPos;)I +MD: net/minecraft/client/renderer/entity/ArmorStandRenderer/ ()V net/minecraft/client/renderer/entity/ArmorStandRenderer/ ()V +MD: net/minecraft/client/renderer/entity/ArmorStandRenderer/ (Lnet/minecraft/client/renderer/entity/EntityRendererProvider$Context;)V net/minecraft/client/renderer/entity/ArmorStandRenderer/ (Lnet/minecraft/client/renderer/entity/EntityRendererProvider$Context;)V +MD: net/minecraft/client/renderer/entity/ArmorStandRenderer/m_5478_ (Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/client/renderer/entity/ArmorStandRenderer/getTextureLocation (Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/client/renderer/entity/ArmorStandRenderer/m_5478_ (Lnet/minecraft/world/entity/decoration/ArmorStand;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/client/renderer/entity/ArmorStandRenderer/getTextureLocation (Lnet/minecraft/world/entity/decoration/ArmorStand;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/client/renderer/entity/ArmorStandRenderer/m_6512_ (Lnet/minecraft/world/entity/decoration/ArmorStand;)Z net/minecraft/client/renderer/entity/ArmorStandRenderer/shouldShowName (Lnet/minecraft/world/entity/decoration/ArmorStand;)Z +MD: net/minecraft/client/renderer/entity/ArmorStandRenderer/m_6512_ (Lnet/minecraft/world/entity/Entity;)Z net/minecraft/client/renderer/entity/ArmorStandRenderer/shouldShowName (Lnet/minecraft/world/entity/Entity;)Z +MD: net/minecraft/client/renderer/entity/ArmorStandRenderer/m_6512_ (Lnet/minecraft/world/entity/LivingEntity;)Z net/minecraft/client/renderer/entity/ArmorStandRenderer/shouldShowName (Lnet/minecraft/world/entity/LivingEntity;)Z +MD: net/minecraft/client/renderer/entity/ArmorStandRenderer/m_7225_ (Lnet/minecraft/world/entity/LivingEntity;ZZZ)Lnet/minecraft/client/renderer/RenderType; net/minecraft/client/renderer/entity/ArmorStandRenderer/getRenderType (Lnet/minecraft/world/entity/LivingEntity;ZZZ)Lnet/minecraft/client/renderer/RenderType; +MD: net/minecraft/client/renderer/entity/ArmorStandRenderer/m_7225_ (Lnet/minecraft/world/entity/decoration/ArmorStand;ZZZ)Lnet/minecraft/client/renderer/RenderType; net/minecraft/client/renderer/entity/ArmorStandRenderer/getRenderType (Lnet/minecraft/world/entity/decoration/ArmorStand;ZZZ)Lnet/minecraft/client/renderer/RenderType; +MD: net/minecraft/client/renderer/entity/ArmorStandRenderer/m_7523_ (Lnet/minecraft/world/entity/LivingEntity;Lcom/mojang/blaze3d/vertex/PoseStack;FFF)V net/minecraft/client/renderer/entity/ArmorStandRenderer/setupRotations (Lnet/minecraft/world/entity/LivingEntity;Lcom/mojang/blaze3d/vertex/PoseStack;FFF)V +MD: net/minecraft/client/renderer/entity/ArmorStandRenderer/m_7523_ (Lnet/minecraft/world/entity/decoration/ArmorStand;Lcom/mojang/blaze3d/vertex/PoseStack;FFF)V net/minecraft/client/renderer/entity/ArmorStandRenderer/setupRotations (Lnet/minecraft/world/entity/decoration/ArmorStand;Lcom/mojang/blaze3d/vertex/PoseStack;FFF)V +MD: net/minecraft/client/renderer/entity/ArrowRenderer/ (Lnet/minecraft/client/renderer/entity/EntityRendererProvider$Context;)V net/minecraft/client/renderer/entity/ArrowRenderer/ (Lnet/minecraft/client/renderer/entity/EntityRendererProvider$Context;)V +MD: net/minecraft/client/renderer/entity/ArrowRenderer/m_253099_ (Lorg/joml/Matrix4f;Lorg/joml/Matrix3f;Lcom/mojang/blaze3d/vertex/VertexConsumer;IIIFFIIII)V net/minecraft/client/renderer/entity/ArrowRenderer/vertex (Lorg/joml/Matrix4f;Lorg/joml/Matrix3f;Lcom/mojang/blaze3d/vertex/VertexConsumer;IIIFFIIII)V +MD: net/minecraft/client/renderer/entity/ArrowRenderer/m_7392_ (Lnet/minecraft/world/entity/Entity;FFLcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;I)V net/minecraft/client/renderer/entity/ArrowRenderer/render (Lnet/minecraft/world/entity/Entity;FFLcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;I)V +MD: net/minecraft/client/renderer/entity/ArrowRenderer/m_7392_ (Lnet/minecraft/world/entity/projectile/AbstractArrow;FFLcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;I)V net/minecraft/client/renderer/entity/ArrowRenderer/render (Lnet/minecraft/world/entity/projectile/AbstractArrow;FFLcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;I)V +MD: net/minecraft/client/renderer/entity/AxolotlRenderer/ ()V net/minecraft/client/renderer/entity/AxolotlRenderer/ ()V +MD: net/minecraft/client/renderer/entity/AxolotlRenderer/ (Lnet/minecraft/client/renderer/entity/EntityRendererProvider$Context;)V net/minecraft/client/renderer/entity/AxolotlRenderer/ (Lnet/minecraft/client/renderer/entity/EntityRendererProvider$Context;)V +MD: net/minecraft/client/renderer/entity/AxolotlRenderer/m_262768_ (Ljava/util/HashMap;)V net/minecraft/client/renderer/entity/AxolotlRenderer/lambda$static$0 (Ljava/util/HashMap;)V +MD: net/minecraft/client/renderer/entity/AxolotlRenderer/m_5478_ (Lnet/minecraft/world/entity/animal/axolotl/Axolotl;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/client/renderer/entity/AxolotlRenderer/getTextureLocation (Lnet/minecraft/world/entity/animal/axolotl/Axolotl;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/client/renderer/entity/AxolotlRenderer/m_5478_ (Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/client/renderer/entity/AxolotlRenderer/getTextureLocation (Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/client/renderer/entity/BatRenderer/ ()V net/minecraft/client/renderer/entity/BatRenderer/ ()V +MD: net/minecraft/client/renderer/entity/BatRenderer/ (Lnet/minecraft/client/renderer/entity/EntityRendererProvider$Context;)V net/minecraft/client/renderer/entity/BatRenderer/ (Lnet/minecraft/client/renderer/entity/EntityRendererProvider$Context;)V +MD: net/minecraft/client/renderer/entity/BatRenderer/m_5478_ (Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/client/renderer/entity/BatRenderer/getTextureLocation (Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/client/renderer/entity/BatRenderer/m_5478_ (Lnet/minecraft/world/entity/ambient/Bat;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/client/renderer/entity/BatRenderer/getTextureLocation (Lnet/minecraft/world/entity/ambient/Bat;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/client/renderer/entity/BatRenderer/m_7523_ (Lnet/minecraft/world/entity/LivingEntity;Lcom/mojang/blaze3d/vertex/PoseStack;FFF)V net/minecraft/client/renderer/entity/BatRenderer/setupRotations (Lnet/minecraft/world/entity/LivingEntity;Lcom/mojang/blaze3d/vertex/PoseStack;FFF)V +MD: net/minecraft/client/renderer/entity/BatRenderer/m_7523_ (Lnet/minecraft/world/entity/ambient/Bat;Lcom/mojang/blaze3d/vertex/PoseStack;FFF)V net/minecraft/client/renderer/entity/BatRenderer/setupRotations (Lnet/minecraft/world/entity/ambient/Bat;Lcom/mojang/blaze3d/vertex/PoseStack;FFF)V +MD: net/minecraft/client/renderer/entity/BatRenderer/m_7546_ (Lnet/minecraft/world/entity/ambient/Bat;Lcom/mojang/blaze3d/vertex/PoseStack;F)V net/minecraft/client/renderer/entity/BatRenderer/scale (Lnet/minecraft/world/entity/ambient/Bat;Lcom/mojang/blaze3d/vertex/PoseStack;F)V +MD: net/minecraft/client/renderer/entity/BatRenderer/m_7546_ (Lnet/minecraft/world/entity/LivingEntity;Lcom/mojang/blaze3d/vertex/PoseStack;F)V net/minecraft/client/renderer/entity/BatRenderer/scale (Lnet/minecraft/world/entity/LivingEntity;Lcom/mojang/blaze3d/vertex/PoseStack;F)V +MD: net/minecraft/client/renderer/entity/BeeRenderer/ ()V net/minecraft/client/renderer/entity/BeeRenderer/ ()V +MD: net/minecraft/client/renderer/entity/BeeRenderer/ (Lnet/minecraft/client/renderer/entity/EntityRendererProvider$Context;)V net/minecraft/client/renderer/entity/BeeRenderer/ (Lnet/minecraft/client/renderer/entity/EntityRendererProvider$Context;)V +MD: net/minecraft/client/renderer/entity/BeeRenderer/m_5478_ (Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/client/renderer/entity/BeeRenderer/getTextureLocation (Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/client/renderer/entity/BeeRenderer/m_5478_ (Lnet/minecraft/world/entity/animal/Bee;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/client/renderer/entity/BeeRenderer/getTextureLocation (Lnet/minecraft/world/entity/animal/Bee;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/client/renderer/entity/BlazeRenderer/ ()V net/minecraft/client/renderer/entity/BlazeRenderer/ ()V +MD: net/minecraft/client/renderer/entity/BlazeRenderer/ (Lnet/minecraft/client/renderer/entity/EntityRendererProvider$Context;)V net/minecraft/client/renderer/entity/BlazeRenderer/ (Lnet/minecraft/client/renderer/entity/EntityRendererProvider$Context;)V +MD: net/minecraft/client/renderer/entity/BlazeRenderer/m_5478_ (Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/client/renderer/entity/BlazeRenderer/getTextureLocation (Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/client/renderer/entity/BlazeRenderer/m_5478_ (Lnet/minecraft/world/entity/monster/Blaze;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/client/renderer/entity/BlazeRenderer/getTextureLocation (Lnet/minecraft/world/entity/monster/Blaze;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/client/renderer/entity/BlazeRenderer/m_6086_ (Lnet/minecraft/world/entity/Entity;Lnet/minecraft/core/BlockPos;)I net/minecraft/client/renderer/entity/BlazeRenderer/getBlockLightLevel (Lnet/minecraft/world/entity/Entity;Lnet/minecraft/core/BlockPos;)I +MD: net/minecraft/client/renderer/entity/BlazeRenderer/m_6086_ (Lnet/minecraft/world/entity/monster/Blaze;Lnet/minecraft/core/BlockPos;)I net/minecraft/client/renderer/entity/BlazeRenderer/getBlockLightLevel (Lnet/minecraft/world/entity/monster/Blaze;Lnet/minecraft/core/BlockPos;)I +MD: net/minecraft/client/renderer/entity/BoatRenderer/ (Lnet/minecraft/client/renderer/entity/EntityRendererProvider$Context;Z)V net/minecraft/client/renderer/entity/BoatRenderer/ (Lnet/minecraft/client/renderer/entity/EntityRendererProvider$Context;Z)V +MD: net/minecraft/client/renderer/entity/BoatRenderer/m_173937_ (Lnet/minecraft/world/entity/vehicle/Boat$Type;)Lnet/minecraft/world/entity/vehicle/Boat$Type; net/minecraft/client/renderer/entity/BoatRenderer/lambda$new$0 (Lnet/minecraft/world/entity/vehicle/Boat$Type;)Lnet/minecraft/world/entity/vehicle/Boat$Type; +MD: net/minecraft/client/renderer/entity/BoatRenderer/m_234565_ (Lnet/minecraft/world/entity/vehicle/Boat$Type;Z)Ljava/lang/String; net/minecraft/client/renderer/entity/BoatRenderer/getTextureLocation (Lnet/minecraft/world/entity/vehicle/Boat$Type;Z)Ljava/lang/String; +MD: net/minecraft/client/renderer/entity/BoatRenderer/m_244734_ (ZLnet/minecraft/client/renderer/entity/EntityRendererProvider$Context;Lnet/minecraft/world/entity/vehicle/Boat$Type;)Lcom/mojang/datafixers/util/Pair; net/minecraft/client/renderer/entity/BoatRenderer/lambda$new$1 (ZLnet/minecraft/client/renderer/entity/EntityRendererProvider$Context;Lnet/minecraft/world/entity/vehicle/Boat$Type;)Lcom/mojang/datafixers/util/Pair; +MD: net/minecraft/client/renderer/entity/BoatRenderer/m_245348_ (Lnet/minecraft/client/renderer/entity/EntityRendererProvider$Context;Lnet/minecraft/world/entity/vehicle/Boat$Type;Z)Lnet/minecraft/client/model/ListModel; net/minecraft/client/renderer/entity/BoatRenderer/createBoatModel (Lnet/minecraft/client/renderer/entity/EntityRendererProvider$Context;Lnet/minecraft/world/entity/vehicle/Boat$Type;Z)Lnet/minecraft/client/model/ListModel; +MD: net/minecraft/client/renderer/entity/BoatRenderer/m_5478_ (Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/client/renderer/entity/BoatRenderer/getTextureLocation (Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/client/renderer/entity/BoatRenderer/m_5478_ (Lnet/minecraft/world/entity/vehicle/Boat;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/client/renderer/entity/BoatRenderer/getTextureLocation (Lnet/minecraft/world/entity/vehicle/Boat;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/client/renderer/entity/BoatRenderer/m_7392_ (Lnet/minecraft/world/entity/vehicle/Boat;FFLcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;I)V net/minecraft/client/renderer/entity/BoatRenderer/render (Lnet/minecraft/world/entity/vehicle/Boat;FFLcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;I)V +MD: net/minecraft/client/renderer/entity/BoatRenderer/m_7392_ (Lnet/minecraft/world/entity/Entity;FFLcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;I)V net/minecraft/client/renderer/entity/BoatRenderer/render (Lnet/minecraft/world/entity/Entity;FFLcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;I)V +MD: net/minecraft/client/renderer/entity/CamelRenderer/ ()V net/minecraft/client/renderer/entity/CamelRenderer/ ()V +MD: net/minecraft/client/renderer/entity/CamelRenderer/ (Lnet/minecraft/client/renderer/entity/EntityRendererProvider$Context;Lnet/minecraft/client/model/geom/ModelLayerLocation;)V net/minecraft/client/renderer/entity/CamelRenderer/ (Lnet/minecraft/client/renderer/entity/EntityRendererProvider$Context;Lnet/minecraft/client/model/geom/ModelLayerLocation;)V +MD: net/minecraft/client/renderer/entity/CamelRenderer/m_5478_ (Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/client/renderer/entity/CamelRenderer/getTextureLocation (Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/client/renderer/entity/CamelRenderer/m_5478_ (Lnet/minecraft/world/entity/animal/camel/Camel;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/client/renderer/entity/CamelRenderer/getTextureLocation (Lnet/minecraft/world/entity/animal/camel/Camel;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/client/renderer/entity/CatRenderer/ (Lnet/minecraft/client/renderer/entity/EntityRendererProvider$Context;)V net/minecraft/client/renderer/entity/CatRenderer/ (Lnet/minecraft/client/renderer/entity/EntityRendererProvider$Context;)V +MD: net/minecraft/client/renderer/entity/CatRenderer/m_5478_ (Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/client/renderer/entity/CatRenderer/getTextureLocation (Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/client/renderer/entity/CatRenderer/m_5478_ (Lnet/minecraft/world/entity/animal/Cat;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/client/renderer/entity/CatRenderer/getTextureLocation (Lnet/minecraft/world/entity/animal/Cat;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/client/renderer/entity/CatRenderer/m_7523_ (Lnet/minecraft/world/entity/LivingEntity;Lcom/mojang/blaze3d/vertex/PoseStack;FFF)V net/minecraft/client/renderer/entity/CatRenderer/setupRotations (Lnet/minecraft/world/entity/LivingEntity;Lcom/mojang/blaze3d/vertex/PoseStack;FFF)V +MD: net/minecraft/client/renderer/entity/CatRenderer/m_7523_ (Lnet/minecraft/world/entity/animal/Cat;Lcom/mojang/blaze3d/vertex/PoseStack;FFF)V net/minecraft/client/renderer/entity/CatRenderer/setupRotations (Lnet/minecraft/world/entity/animal/Cat;Lcom/mojang/blaze3d/vertex/PoseStack;FFF)V +MD: net/minecraft/client/renderer/entity/CatRenderer/m_7546_ (Lnet/minecraft/world/entity/LivingEntity;Lcom/mojang/blaze3d/vertex/PoseStack;F)V net/minecraft/client/renderer/entity/CatRenderer/scale (Lnet/minecraft/world/entity/LivingEntity;Lcom/mojang/blaze3d/vertex/PoseStack;F)V +MD: net/minecraft/client/renderer/entity/CatRenderer/m_7546_ (Lnet/minecraft/world/entity/animal/Cat;Lcom/mojang/blaze3d/vertex/PoseStack;F)V net/minecraft/client/renderer/entity/CatRenderer/scale (Lnet/minecraft/world/entity/animal/Cat;Lcom/mojang/blaze3d/vertex/PoseStack;F)V +MD: net/minecraft/client/renderer/entity/CaveSpiderRenderer/ ()V net/minecraft/client/renderer/entity/CaveSpiderRenderer/ ()V +MD: net/minecraft/client/renderer/entity/CaveSpiderRenderer/ (Lnet/minecraft/client/renderer/entity/EntityRendererProvider$Context;)V net/minecraft/client/renderer/entity/CaveSpiderRenderer/ (Lnet/minecraft/client/renderer/entity/EntityRendererProvider$Context;)V +MD: net/minecraft/client/renderer/entity/CaveSpiderRenderer/m_5478_ (Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/client/renderer/entity/CaveSpiderRenderer/getTextureLocation (Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/client/renderer/entity/CaveSpiderRenderer/m_5478_ (Lnet/minecraft/world/entity/monster/Spider;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/client/renderer/entity/CaveSpiderRenderer/getTextureLocation (Lnet/minecraft/world/entity/monster/Spider;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/client/renderer/entity/CaveSpiderRenderer/m_5478_ (Lnet/minecraft/world/entity/monster/CaveSpider;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/client/renderer/entity/CaveSpiderRenderer/getTextureLocation (Lnet/minecraft/world/entity/monster/CaveSpider;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/client/renderer/entity/CaveSpiderRenderer/m_7546_ (Lnet/minecraft/world/entity/monster/CaveSpider;Lcom/mojang/blaze3d/vertex/PoseStack;F)V net/minecraft/client/renderer/entity/CaveSpiderRenderer/scale (Lnet/minecraft/world/entity/monster/CaveSpider;Lcom/mojang/blaze3d/vertex/PoseStack;F)V +MD: net/minecraft/client/renderer/entity/CaveSpiderRenderer/m_7546_ (Lnet/minecraft/world/entity/LivingEntity;Lcom/mojang/blaze3d/vertex/PoseStack;F)V net/minecraft/client/renderer/entity/CaveSpiderRenderer/scale (Lnet/minecraft/world/entity/LivingEntity;Lcom/mojang/blaze3d/vertex/PoseStack;F)V +MD: net/minecraft/client/renderer/entity/ChestedHorseRenderer/ ()V net/minecraft/client/renderer/entity/ChestedHorseRenderer/ ()V +MD: net/minecraft/client/renderer/entity/ChestedHorseRenderer/ (Lnet/minecraft/client/renderer/entity/EntityRendererProvider$Context;FLnet/minecraft/client/model/geom/ModelLayerLocation;)V net/minecraft/client/renderer/entity/ChestedHorseRenderer/ (Lnet/minecraft/client/renderer/entity/EntityRendererProvider$Context;FLnet/minecraft/client/model/geom/ModelLayerLocation;)V +MD: net/minecraft/client/renderer/entity/ChestedHorseRenderer/m_5478_ (Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/client/renderer/entity/ChestedHorseRenderer/getTextureLocation (Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/client/renderer/entity/ChestedHorseRenderer/m_5478_ (Lnet/minecraft/world/entity/animal/horse/AbstractChestedHorse;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/client/renderer/entity/ChestedHorseRenderer/getTextureLocation (Lnet/minecraft/world/entity/animal/horse/AbstractChestedHorse;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/client/renderer/entity/ChickenRenderer/ ()V net/minecraft/client/renderer/entity/ChickenRenderer/ ()V +MD: net/minecraft/client/renderer/entity/ChickenRenderer/ (Lnet/minecraft/client/renderer/entity/EntityRendererProvider$Context;)V net/minecraft/client/renderer/entity/ChickenRenderer/ (Lnet/minecraft/client/renderer/entity/EntityRendererProvider$Context;)V +MD: net/minecraft/client/renderer/entity/ChickenRenderer/m_5478_ (Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/client/renderer/entity/ChickenRenderer/getTextureLocation (Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/client/renderer/entity/ChickenRenderer/m_5478_ (Lnet/minecraft/world/entity/animal/Chicken;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/client/renderer/entity/ChickenRenderer/getTextureLocation (Lnet/minecraft/world/entity/animal/Chicken;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/client/renderer/entity/ChickenRenderer/m_6930_ (Lnet/minecraft/world/entity/animal/Chicken;F)F net/minecraft/client/renderer/entity/ChickenRenderer/getBob (Lnet/minecraft/world/entity/animal/Chicken;F)F +MD: net/minecraft/client/renderer/entity/ChickenRenderer/m_6930_ (Lnet/minecraft/world/entity/LivingEntity;F)F net/minecraft/client/renderer/entity/ChickenRenderer/getBob (Lnet/minecraft/world/entity/LivingEntity;F)F +MD: net/minecraft/client/renderer/entity/CodRenderer/ ()V net/minecraft/client/renderer/entity/CodRenderer/ ()V +MD: net/minecraft/client/renderer/entity/CodRenderer/ (Lnet/minecraft/client/renderer/entity/EntityRendererProvider$Context;)V net/minecraft/client/renderer/entity/CodRenderer/ (Lnet/minecraft/client/renderer/entity/EntityRendererProvider$Context;)V +MD: net/minecraft/client/renderer/entity/CodRenderer/m_5478_ (Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/client/renderer/entity/CodRenderer/getTextureLocation (Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/client/renderer/entity/CodRenderer/m_5478_ (Lnet/minecraft/world/entity/animal/Cod;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/client/renderer/entity/CodRenderer/getTextureLocation (Lnet/minecraft/world/entity/animal/Cod;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/client/renderer/entity/CodRenderer/m_7523_ (Lnet/minecraft/world/entity/LivingEntity;Lcom/mojang/blaze3d/vertex/PoseStack;FFF)V net/minecraft/client/renderer/entity/CodRenderer/setupRotations (Lnet/minecraft/world/entity/LivingEntity;Lcom/mojang/blaze3d/vertex/PoseStack;FFF)V +MD: net/minecraft/client/renderer/entity/CodRenderer/m_7523_ (Lnet/minecraft/world/entity/animal/Cod;Lcom/mojang/blaze3d/vertex/PoseStack;FFF)V net/minecraft/client/renderer/entity/CodRenderer/setupRotations (Lnet/minecraft/world/entity/animal/Cod;Lcom/mojang/blaze3d/vertex/PoseStack;FFF)V +MD: net/minecraft/client/renderer/entity/CowRenderer/ ()V net/minecraft/client/renderer/entity/CowRenderer/ ()V +MD: net/minecraft/client/renderer/entity/CowRenderer/ (Lnet/minecraft/client/renderer/entity/EntityRendererProvider$Context;)V net/minecraft/client/renderer/entity/CowRenderer/ (Lnet/minecraft/client/renderer/entity/EntityRendererProvider$Context;)V +MD: net/minecraft/client/renderer/entity/CowRenderer/m_5478_ (Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/client/renderer/entity/CowRenderer/getTextureLocation (Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/client/renderer/entity/CowRenderer/m_5478_ (Lnet/minecraft/world/entity/animal/Cow;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/client/renderer/entity/CowRenderer/getTextureLocation (Lnet/minecraft/world/entity/animal/Cow;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/client/renderer/entity/CreeperRenderer/ ()V net/minecraft/client/renderer/entity/CreeperRenderer/ ()V +MD: net/minecraft/client/renderer/entity/CreeperRenderer/ (Lnet/minecraft/client/renderer/entity/EntityRendererProvider$Context;)V net/minecraft/client/renderer/entity/CreeperRenderer/ (Lnet/minecraft/client/renderer/entity/EntityRendererProvider$Context;)V +MD: net/minecraft/client/renderer/entity/CreeperRenderer/m_5478_ (Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/client/renderer/entity/CreeperRenderer/getTextureLocation (Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/client/renderer/entity/CreeperRenderer/m_5478_ (Lnet/minecraft/world/entity/monster/Creeper;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/client/renderer/entity/CreeperRenderer/getTextureLocation (Lnet/minecraft/world/entity/monster/Creeper;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/client/renderer/entity/CreeperRenderer/m_6931_ (Lnet/minecraft/world/entity/LivingEntity;F)F net/minecraft/client/renderer/entity/CreeperRenderer/getWhiteOverlayProgress (Lnet/minecraft/world/entity/LivingEntity;F)F +MD: net/minecraft/client/renderer/entity/CreeperRenderer/m_6931_ (Lnet/minecraft/world/entity/monster/Creeper;F)F net/minecraft/client/renderer/entity/CreeperRenderer/getWhiteOverlayProgress (Lnet/minecraft/world/entity/monster/Creeper;F)F +MD: net/minecraft/client/renderer/entity/CreeperRenderer/m_7546_ (Lnet/minecraft/world/entity/monster/Creeper;Lcom/mojang/blaze3d/vertex/PoseStack;F)V net/minecraft/client/renderer/entity/CreeperRenderer/scale (Lnet/minecraft/world/entity/monster/Creeper;Lcom/mojang/blaze3d/vertex/PoseStack;F)V +MD: net/minecraft/client/renderer/entity/CreeperRenderer/m_7546_ (Lnet/minecraft/world/entity/LivingEntity;Lcom/mojang/blaze3d/vertex/PoseStack;F)V net/minecraft/client/renderer/entity/CreeperRenderer/scale (Lnet/minecraft/world/entity/LivingEntity;Lcom/mojang/blaze3d/vertex/PoseStack;F)V +MD: net/minecraft/client/renderer/entity/DisplayRenderer/ (Lnet/minecraft/client/renderer/entity/EntityRendererProvider$Context;)V net/minecraft/client/renderer/entity/DisplayRenderer/ (Lnet/minecraft/client/renderer/entity/EntityRendererProvider$Context;)V +MD: net/minecraft/client/renderer/entity/DisplayRenderer/m_269580_ (Lnet/minecraft/world/entity/Display;)Ljava/lang/Object; net/minecraft/client/renderer/entity/DisplayRenderer/getSubState (Lnet/minecraft/world/entity/Display;)Ljava/lang/Object; +MD: net/minecraft/client/renderer/entity/DisplayRenderer/m_269592_ (Lnet/minecraft/world/entity/Display$RenderState;Lnet/minecraft/world/entity/Display;)Lorg/joml/Quaternionf; net/minecraft/client/renderer/entity/DisplayRenderer/calculateOrientation (Lnet/minecraft/world/entity/Display$RenderState;Lnet/minecraft/world/entity/Display;)Lorg/joml/Quaternionf; +MD: net/minecraft/client/renderer/entity/DisplayRenderer/m_276924_ (Lnet/minecraft/world/entity/Display;Ljava/lang/Object;Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;IF)V net/minecraft/client/renderer/entity/DisplayRenderer/renderInner (Lnet/minecraft/world/entity/Display;Ljava/lang/Object;Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;IF)V +MD: net/minecraft/client/renderer/entity/DisplayRenderer/m_5478_ (Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/client/renderer/entity/DisplayRenderer/getTextureLocation (Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/client/renderer/entity/DisplayRenderer/m_5478_ (Lnet/minecraft/world/entity/Display;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/client/renderer/entity/DisplayRenderer/getTextureLocation (Lnet/minecraft/world/entity/Display;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/client/renderer/entity/DisplayRenderer/m_7392_ (Lnet/minecraft/world/entity/Entity;FFLcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;I)V net/minecraft/client/renderer/entity/DisplayRenderer/render (Lnet/minecraft/world/entity/Entity;FFLcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;I)V +MD: net/minecraft/client/renderer/entity/DisplayRenderer/m_7392_ (Lnet/minecraft/world/entity/Display;FFLcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;I)V net/minecraft/client/renderer/entity/DisplayRenderer/render (Lnet/minecraft/world/entity/Display;FFLcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;I)V +MD: net/minecraft/client/renderer/entity/DisplayRenderer$1/ ()V net/minecraft/client/renderer/entity/DisplayRenderer$1/ ()V +MD: net/minecraft/client/renderer/entity/DisplayRenderer$BlockDisplayRenderer/ (Lnet/minecraft/client/renderer/entity/EntityRendererProvider$Context;)V net/minecraft/client/renderer/entity/DisplayRenderer$BlockDisplayRenderer/ (Lnet/minecraft/client/renderer/entity/EntityRendererProvider$Context;)V +MD: net/minecraft/client/renderer/entity/DisplayRenderer$BlockDisplayRenderer/m_269580_ (Lnet/minecraft/world/entity/Display$BlockDisplay;)Lnet/minecraft/world/entity/Display$BlockDisplay$BlockRenderState; net/minecraft/client/renderer/entity/DisplayRenderer$BlockDisplayRenderer/getSubState (Lnet/minecraft/world/entity/Display$BlockDisplay;)Lnet/minecraft/world/entity/Display$BlockDisplay$BlockRenderState; +MD: net/minecraft/client/renderer/entity/DisplayRenderer$BlockDisplayRenderer/m_269580_ (Lnet/minecraft/world/entity/Display;)Ljava/lang/Object; net/minecraft/client/renderer/entity/DisplayRenderer$BlockDisplayRenderer/getSubState (Lnet/minecraft/world/entity/Display;)Ljava/lang/Object; +MD: net/minecraft/client/renderer/entity/DisplayRenderer$BlockDisplayRenderer/m_276924_ (Lnet/minecraft/world/entity/Display;Ljava/lang/Object;Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;IF)V net/minecraft/client/renderer/entity/DisplayRenderer$BlockDisplayRenderer/renderInner (Lnet/minecraft/world/entity/Display;Ljava/lang/Object;Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;IF)V +MD: net/minecraft/client/renderer/entity/DisplayRenderer$BlockDisplayRenderer/m_276924_ (Lnet/minecraft/world/entity/Display$BlockDisplay;Lnet/minecraft/world/entity/Display$BlockDisplay$BlockRenderState;Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;IF)V net/minecraft/client/renderer/entity/DisplayRenderer$BlockDisplayRenderer/renderInner (Lnet/minecraft/world/entity/Display$BlockDisplay;Lnet/minecraft/world/entity/Display$BlockDisplay$BlockRenderState;Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;IF)V +MD: net/minecraft/client/renderer/entity/DisplayRenderer$BlockDisplayRenderer/m_5478_ (Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/client/renderer/entity/DisplayRenderer$BlockDisplayRenderer/getTextureLocation (Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/client/renderer/entity/DisplayRenderer$BlockDisplayRenderer/m_7392_ (Lnet/minecraft/world/entity/Entity;FFLcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;I)V net/minecraft/client/renderer/entity/DisplayRenderer$BlockDisplayRenderer/render (Lnet/minecraft/world/entity/Entity;FFLcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;I)V +MD: net/minecraft/client/renderer/entity/DisplayRenderer$ItemDisplayRenderer/ (Lnet/minecraft/client/renderer/entity/EntityRendererProvider$Context;)V net/minecraft/client/renderer/entity/DisplayRenderer$ItemDisplayRenderer/ (Lnet/minecraft/client/renderer/entity/EntityRendererProvider$Context;)V +MD: net/minecraft/client/renderer/entity/DisplayRenderer$ItemDisplayRenderer/m_269580_ (Lnet/minecraft/world/entity/Display$ItemDisplay;)Lnet/minecraft/world/entity/Display$ItemDisplay$ItemRenderState; net/minecraft/client/renderer/entity/DisplayRenderer$ItemDisplayRenderer/getSubState (Lnet/minecraft/world/entity/Display$ItemDisplay;)Lnet/minecraft/world/entity/Display$ItemDisplay$ItemRenderState; +MD: net/minecraft/client/renderer/entity/DisplayRenderer$ItemDisplayRenderer/m_269580_ (Lnet/minecraft/world/entity/Display;)Ljava/lang/Object; net/minecraft/client/renderer/entity/DisplayRenderer$ItemDisplayRenderer/getSubState (Lnet/minecraft/world/entity/Display;)Ljava/lang/Object; +MD: net/minecraft/client/renderer/entity/DisplayRenderer$ItemDisplayRenderer/m_276924_ (Lnet/minecraft/world/entity/Display;Ljava/lang/Object;Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;IF)V net/minecraft/client/renderer/entity/DisplayRenderer$ItemDisplayRenderer/renderInner (Lnet/minecraft/world/entity/Display;Ljava/lang/Object;Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;IF)V +MD: net/minecraft/client/renderer/entity/DisplayRenderer$ItemDisplayRenderer/m_276924_ (Lnet/minecraft/world/entity/Display$ItemDisplay;Lnet/minecraft/world/entity/Display$ItemDisplay$ItemRenderState;Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;IF)V net/minecraft/client/renderer/entity/DisplayRenderer$ItemDisplayRenderer/renderInner (Lnet/minecraft/world/entity/Display$ItemDisplay;Lnet/minecraft/world/entity/Display$ItemDisplay$ItemRenderState;Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;IF)V +MD: net/minecraft/client/renderer/entity/DisplayRenderer$ItemDisplayRenderer/m_5478_ (Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/client/renderer/entity/DisplayRenderer$ItemDisplayRenderer/getTextureLocation (Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/client/renderer/entity/DisplayRenderer$ItemDisplayRenderer/m_7392_ (Lnet/minecraft/world/entity/Entity;FFLcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;I)V net/minecraft/client/renderer/entity/DisplayRenderer$ItemDisplayRenderer/render (Lnet/minecraft/world/entity/Entity;FFLcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;I)V +MD: net/minecraft/client/renderer/entity/DisplayRenderer$TextDisplayRenderer/ (Lnet/minecraft/client/renderer/entity/EntityRendererProvider$Context;)V net/minecraft/client/renderer/entity/DisplayRenderer$TextDisplayRenderer/ (Lnet/minecraft/client/renderer/entity/EntityRendererProvider$Context;)V +MD: net/minecraft/client/renderer/entity/DisplayRenderer$TextDisplayRenderer/m_269268_ (Lnet/minecraft/network/chat/Component;I)Lnet/minecraft/world/entity/Display$TextDisplay$CachedInfo; net/minecraft/client/renderer/entity/DisplayRenderer$TextDisplayRenderer/splitLines (Lnet/minecraft/network/chat/Component;I)Lnet/minecraft/world/entity/Display$TextDisplay$CachedInfo; +MD: net/minecraft/client/renderer/entity/DisplayRenderer$TextDisplayRenderer/m_269580_ (Lnet/minecraft/world/entity/Display$TextDisplay;)Lnet/minecraft/world/entity/Display$TextDisplay$TextRenderState; net/minecraft/client/renderer/entity/DisplayRenderer$TextDisplayRenderer/getSubState (Lnet/minecraft/world/entity/Display$TextDisplay;)Lnet/minecraft/world/entity/Display$TextDisplay$TextRenderState; +MD: net/minecraft/client/renderer/entity/DisplayRenderer$TextDisplayRenderer/m_269580_ (Lnet/minecraft/world/entity/Display;)Ljava/lang/Object; net/minecraft/client/renderer/entity/DisplayRenderer$TextDisplayRenderer/getSubState (Lnet/minecraft/world/entity/Display;)Ljava/lang/Object; +MD: net/minecraft/client/renderer/entity/DisplayRenderer$TextDisplayRenderer/m_276924_ (Lnet/minecraft/world/entity/Display;Ljava/lang/Object;Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;IF)V net/minecraft/client/renderer/entity/DisplayRenderer$TextDisplayRenderer/renderInner (Lnet/minecraft/world/entity/Display;Ljava/lang/Object;Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;IF)V +MD: net/minecraft/client/renderer/entity/DisplayRenderer$TextDisplayRenderer/m_276924_ (Lnet/minecraft/world/entity/Display$TextDisplay;Lnet/minecraft/world/entity/Display$TextDisplay$TextRenderState;Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;IF)V net/minecraft/client/renderer/entity/DisplayRenderer$TextDisplayRenderer/renderInner (Lnet/minecraft/world/entity/Display$TextDisplay;Lnet/minecraft/world/entity/Display$TextDisplay$TextRenderState;Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;IF)V +MD: net/minecraft/client/renderer/entity/DisplayRenderer$TextDisplayRenderer/m_5478_ (Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/client/renderer/entity/DisplayRenderer$TextDisplayRenderer/getTextureLocation (Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/client/renderer/entity/DisplayRenderer$TextDisplayRenderer/m_7392_ (Lnet/minecraft/world/entity/Entity;FFLcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;I)V net/minecraft/client/renderer/entity/DisplayRenderer$TextDisplayRenderer/render (Lnet/minecraft/world/entity/Entity;FFLcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;I)V +MD: net/minecraft/client/renderer/entity/DolphinRenderer/ ()V net/minecraft/client/renderer/entity/DolphinRenderer/ ()V +MD: net/minecraft/client/renderer/entity/DolphinRenderer/ (Lnet/minecraft/client/renderer/entity/EntityRendererProvider$Context;)V net/minecraft/client/renderer/entity/DolphinRenderer/ (Lnet/minecraft/client/renderer/entity/EntityRendererProvider$Context;)V +MD: net/minecraft/client/renderer/entity/DolphinRenderer/m_5478_ (Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/client/renderer/entity/DolphinRenderer/getTextureLocation (Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/client/renderer/entity/DolphinRenderer/m_5478_ (Lnet/minecraft/world/entity/animal/Dolphin;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/client/renderer/entity/DolphinRenderer/getTextureLocation (Lnet/minecraft/world/entity/animal/Dolphin;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/client/renderer/entity/DragonFireballRenderer/ ()V net/minecraft/client/renderer/entity/DragonFireballRenderer/ ()V +MD: net/minecraft/client/renderer/entity/DragonFireballRenderer/ (Lnet/minecraft/client/renderer/entity/EntityRendererProvider$Context;)V net/minecraft/client/renderer/entity/DragonFireballRenderer/ (Lnet/minecraft/client/renderer/entity/EntityRendererProvider$Context;)V +MD: net/minecraft/client/renderer/entity/DragonFireballRenderer/m_253219_ (Lcom/mojang/blaze3d/vertex/VertexConsumer;Lorg/joml/Matrix4f;Lorg/joml/Matrix3f;IFIII)V net/minecraft/client/renderer/entity/DragonFireballRenderer/vertex (Lcom/mojang/blaze3d/vertex/VertexConsumer;Lorg/joml/Matrix4f;Lorg/joml/Matrix3f;IFIII)V +MD: net/minecraft/client/renderer/entity/DragonFireballRenderer/m_5478_ (Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/client/renderer/entity/DragonFireballRenderer/getTextureLocation (Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/client/renderer/entity/DragonFireballRenderer/m_5478_ (Lnet/minecraft/world/entity/projectile/DragonFireball;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/client/renderer/entity/DragonFireballRenderer/getTextureLocation (Lnet/minecraft/world/entity/projectile/DragonFireball;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/client/renderer/entity/DragonFireballRenderer/m_6086_ (Lnet/minecraft/world/entity/projectile/DragonFireball;Lnet/minecraft/core/BlockPos;)I net/minecraft/client/renderer/entity/DragonFireballRenderer/getBlockLightLevel (Lnet/minecraft/world/entity/projectile/DragonFireball;Lnet/minecraft/core/BlockPos;)I +MD: net/minecraft/client/renderer/entity/DragonFireballRenderer/m_6086_ (Lnet/minecraft/world/entity/Entity;Lnet/minecraft/core/BlockPos;)I net/minecraft/client/renderer/entity/DragonFireballRenderer/getBlockLightLevel (Lnet/minecraft/world/entity/Entity;Lnet/minecraft/core/BlockPos;)I +MD: net/minecraft/client/renderer/entity/DragonFireballRenderer/m_7392_ (Lnet/minecraft/world/entity/Entity;FFLcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;I)V net/minecraft/client/renderer/entity/DragonFireballRenderer/render (Lnet/minecraft/world/entity/Entity;FFLcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;I)V +MD: net/minecraft/client/renderer/entity/DragonFireballRenderer/m_7392_ (Lnet/minecraft/world/entity/projectile/DragonFireball;FFLcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;I)V net/minecraft/client/renderer/entity/DragonFireballRenderer/render (Lnet/minecraft/world/entity/projectile/DragonFireball;FFLcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;I)V +MD: net/minecraft/client/renderer/entity/DrownedRenderer/ ()V net/minecraft/client/renderer/entity/DrownedRenderer/ ()V +MD: net/minecraft/client/renderer/entity/DrownedRenderer/ (Lnet/minecraft/client/renderer/entity/EntityRendererProvider$Context;)V net/minecraft/client/renderer/entity/DrownedRenderer/ (Lnet/minecraft/client/renderer/entity/EntityRendererProvider$Context;)V +MD: net/minecraft/client/renderer/entity/DrownedRenderer/m_5478_ (Lnet/minecraft/world/entity/monster/Zombie;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/client/renderer/entity/DrownedRenderer/getTextureLocation (Lnet/minecraft/world/entity/monster/Zombie;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/client/renderer/entity/DrownedRenderer/m_7523_ (Lnet/minecraft/world/entity/LivingEntity;Lcom/mojang/blaze3d/vertex/PoseStack;FFF)V net/minecraft/client/renderer/entity/DrownedRenderer/setupRotations (Lnet/minecraft/world/entity/LivingEntity;Lcom/mojang/blaze3d/vertex/PoseStack;FFF)V +MD: net/minecraft/client/renderer/entity/DrownedRenderer/m_7523_ (Lnet/minecraft/world/entity/monster/Drowned;Lcom/mojang/blaze3d/vertex/PoseStack;FFF)V net/minecraft/client/renderer/entity/DrownedRenderer/setupRotations (Lnet/minecraft/world/entity/monster/Drowned;Lcom/mojang/blaze3d/vertex/PoseStack;FFF)V +MD: net/minecraft/client/renderer/entity/ElderGuardianRenderer/ ()V net/minecraft/client/renderer/entity/ElderGuardianRenderer/ ()V +MD: net/minecraft/client/renderer/entity/ElderGuardianRenderer/ (Lnet/minecraft/client/renderer/entity/EntityRendererProvider$Context;)V net/minecraft/client/renderer/entity/ElderGuardianRenderer/ (Lnet/minecraft/client/renderer/entity/EntityRendererProvider$Context;)V +MD: net/minecraft/client/renderer/entity/ElderGuardianRenderer/m_5478_ (Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/client/renderer/entity/ElderGuardianRenderer/getTextureLocation (Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/client/renderer/entity/ElderGuardianRenderer/m_5478_ (Lnet/minecraft/world/entity/monster/Guardian;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/client/renderer/entity/ElderGuardianRenderer/getTextureLocation (Lnet/minecraft/world/entity/monster/Guardian;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/client/renderer/entity/ElderGuardianRenderer/m_7546_ (Lnet/minecraft/world/entity/LivingEntity;Lcom/mojang/blaze3d/vertex/PoseStack;F)V net/minecraft/client/renderer/entity/ElderGuardianRenderer/scale (Lnet/minecraft/world/entity/LivingEntity;Lcom/mojang/blaze3d/vertex/PoseStack;F)V +MD: net/minecraft/client/renderer/entity/ElderGuardianRenderer/m_7546_ (Lnet/minecraft/world/entity/monster/Guardian;Lcom/mojang/blaze3d/vertex/PoseStack;F)V net/minecraft/client/renderer/entity/ElderGuardianRenderer/scale (Lnet/minecraft/world/entity/monster/Guardian;Lcom/mojang/blaze3d/vertex/PoseStack;F)V +MD: net/minecraft/client/renderer/entity/EndCrystalRenderer/ ()V net/minecraft/client/renderer/entity/EndCrystalRenderer/ ()V +MD: net/minecraft/client/renderer/entity/EndCrystalRenderer/ (Lnet/minecraft/client/renderer/entity/EntityRendererProvider$Context;)V net/minecraft/client/renderer/entity/EndCrystalRenderer/ (Lnet/minecraft/client/renderer/entity/EntityRendererProvider$Context;)V +MD: net/minecraft/client/renderer/entity/EndCrystalRenderer/m_114158_ (Lnet/minecraft/world/entity/boss/enderdragon/EndCrystal;F)F net/minecraft/client/renderer/entity/EndCrystalRenderer/getY (Lnet/minecraft/world/entity/boss/enderdragon/EndCrystal;F)F +MD: net/minecraft/client/renderer/entity/EndCrystalRenderer/m_173971_ ()Lnet/minecraft/client/model/geom/builders/LayerDefinition; net/minecraft/client/renderer/entity/EndCrystalRenderer/createBodyLayer ()Lnet/minecraft/client/model/geom/builders/LayerDefinition; +MD: net/minecraft/client/renderer/entity/EndCrystalRenderer/m_5478_ (Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/client/renderer/entity/EndCrystalRenderer/getTextureLocation (Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/client/renderer/entity/EndCrystalRenderer/m_5478_ (Lnet/minecraft/world/entity/boss/enderdragon/EndCrystal;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/client/renderer/entity/EndCrystalRenderer/getTextureLocation (Lnet/minecraft/world/entity/boss/enderdragon/EndCrystal;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/client/renderer/entity/EndCrystalRenderer/m_5523_ (Lnet/minecraft/world/entity/Entity;Lnet/minecraft/client/renderer/culling/Frustum;DDD)Z net/minecraft/client/renderer/entity/EndCrystalRenderer/shouldRender (Lnet/minecraft/world/entity/Entity;Lnet/minecraft/client/renderer/culling/Frustum;DDD)Z +MD: net/minecraft/client/renderer/entity/EndCrystalRenderer/m_5523_ (Lnet/minecraft/world/entity/boss/enderdragon/EndCrystal;Lnet/minecraft/client/renderer/culling/Frustum;DDD)Z net/minecraft/client/renderer/entity/EndCrystalRenderer/shouldRender (Lnet/minecraft/world/entity/boss/enderdragon/EndCrystal;Lnet/minecraft/client/renderer/culling/Frustum;DDD)Z +MD: net/minecraft/client/renderer/entity/EndCrystalRenderer/m_7392_ (Lnet/minecraft/world/entity/boss/enderdragon/EndCrystal;FFLcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;I)V net/minecraft/client/renderer/entity/EndCrystalRenderer/render (Lnet/minecraft/world/entity/boss/enderdragon/EndCrystal;FFLcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;I)V +MD: net/minecraft/client/renderer/entity/EndCrystalRenderer/m_7392_ (Lnet/minecraft/world/entity/Entity;FFLcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;I)V net/minecraft/client/renderer/entity/EndCrystalRenderer/render (Lnet/minecraft/world/entity/Entity;FFLcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;I)V +MD: net/minecraft/client/renderer/entity/EnderDragonRenderer/ ()V net/minecraft/client/renderer/entity/EnderDragonRenderer/ ()V +MD: net/minecraft/client/renderer/entity/EnderDragonRenderer/ (Lnet/minecraft/client/renderer/entity/EntityRendererProvider$Context;)V net/minecraft/client/renderer/entity/EnderDragonRenderer/ (Lnet/minecraft/client/renderer/entity/EntityRendererProvider$Context;)V +MD: net/minecraft/client/renderer/entity/EnderDragonRenderer/m_114187_ (FFFFILcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;I)V net/minecraft/client/renderer/entity/EnderDragonRenderer/renderCrystalBeams (FFFFILcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;I)V +MD: net/minecraft/client/renderer/entity/EnderDragonRenderer/m_173974_ ()Lnet/minecraft/client/model/geom/builders/LayerDefinition; net/minecraft/client/renderer/entity/EnderDragonRenderer/createBodyLayer ()Lnet/minecraft/client/model/geom/builders/LayerDefinition; +MD: net/minecraft/client/renderer/entity/EnderDragonRenderer/m_252736_ (Lcom/mojang/blaze3d/vertex/VertexConsumer;Lorg/joml/Matrix4f;FF)V net/minecraft/client/renderer/entity/EnderDragonRenderer/vertex4 (Lcom/mojang/blaze3d/vertex/VertexConsumer;Lorg/joml/Matrix4f;FF)V +MD: net/minecraft/client/renderer/entity/EnderDragonRenderer/m_252912_ (Lcom/mojang/blaze3d/vertex/VertexConsumer;Lorg/joml/Matrix4f;FF)V net/minecraft/client/renderer/entity/EnderDragonRenderer/vertex2 (Lcom/mojang/blaze3d/vertex/VertexConsumer;Lorg/joml/Matrix4f;FF)V +MD: net/minecraft/client/renderer/entity/EnderDragonRenderer/m_253012_ (Lcom/mojang/blaze3d/vertex/VertexConsumer;Lorg/joml/Matrix4f;FF)V net/minecraft/client/renderer/entity/EnderDragonRenderer/vertex3 (Lcom/mojang/blaze3d/vertex/VertexConsumer;Lorg/joml/Matrix4f;FF)V +MD: net/minecraft/client/renderer/entity/EnderDragonRenderer/m_253170_ (Lcom/mojang/blaze3d/vertex/VertexConsumer;Lorg/joml/Matrix4f;I)V net/minecraft/client/renderer/entity/EnderDragonRenderer/vertex01 (Lcom/mojang/blaze3d/vertex/VertexConsumer;Lorg/joml/Matrix4f;I)V +MD: net/minecraft/client/renderer/entity/EnderDragonRenderer/m_5478_ (Lnet/minecraft/world/entity/boss/enderdragon/EnderDragon;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/client/renderer/entity/EnderDragonRenderer/getTextureLocation (Lnet/minecraft/world/entity/boss/enderdragon/EnderDragon;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/client/renderer/entity/EnderDragonRenderer/m_5478_ (Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/client/renderer/entity/EnderDragonRenderer/getTextureLocation (Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/client/renderer/entity/EnderDragonRenderer/m_7392_ (Lnet/minecraft/world/entity/boss/enderdragon/EnderDragon;FFLcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;I)V net/minecraft/client/renderer/entity/EnderDragonRenderer/render (Lnet/minecraft/world/entity/boss/enderdragon/EnderDragon;FFLcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;I)V +MD: net/minecraft/client/renderer/entity/EnderDragonRenderer/m_7392_ (Lnet/minecraft/world/entity/Entity;FFLcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;I)V net/minecraft/client/renderer/entity/EnderDragonRenderer/render (Lnet/minecraft/world/entity/Entity;FFLcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;I)V +MD: net/minecraft/client/renderer/entity/EnderDragonRenderer$DragonModel/ (Lnet/minecraft/client/model/geom/ModelPart;)V net/minecraft/client/renderer/entity/EnderDragonRenderer$DragonModel/ (Lnet/minecraft/client/model/geom/ModelPart;)V +MD: net/minecraft/client/renderer/entity/EnderDragonRenderer$DragonModel/m_173977_ (Lcom/mojang/blaze3d/vertex/PoseStack;Lcom/mojang/blaze3d/vertex/VertexConsumer;IIFLnet/minecraft/client/model/geom/ModelPart;Lnet/minecraft/client/model/geom/ModelPart;Lnet/minecraft/client/model/geom/ModelPart;Lnet/minecraft/client/model/geom/ModelPart;Lnet/minecraft/client/model/geom/ModelPart;Lnet/minecraft/client/model/geom/ModelPart;Lnet/minecraft/client/model/geom/ModelPart;F)V net/minecraft/client/renderer/entity/EnderDragonRenderer$DragonModel/renderSide (Lcom/mojang/blaze3d/vertex/PoseStack;Lcom/mojang/blaze3d/vertex/VertexConsumer;IIFLnet/minecraft/client/model/geom/ModelPart;Lnet/minecraft/client/model/geom/ModelPart;Lnet/minecraft/client/model/geom/ModelPart;Lnet/minecraft/client/model/geom/ModelPart;Lnet/minecraft/client/model/geom/ModelPart;Lnet/minecraft/client/model/geom/ModelPart;Lnet/minecraft/client/model/geom/ModelPart;F)V +MD: net/minecraft/client/renderer/entity/EnderDragonRenderer$DragonModel/m_6839_ (Lnet/minecraft/world/entity/Entity;FFF)V net/minecraft/client/renderer/entity/EnderDragonRenderer$DragonModel/prepareMobModel (Lnet/minecraft/world/entity/Entity;FFF)V +MD: net/minecraft/client/renderer/entity/EnderDragonRenderer$DragonModel/m_6839_ (Lnet/minecraft/world/entity/boss/enderdragon/EnderDragon;FFF)V net/minecraft/client/renderer/entity/EnderDragonRenderer$DragonModel/prepareMobModel (Lnet/minecraft/world/entity/boss/enderdragon/EnderDragon;FFF)V +MD: net/minecraft/client/renderer/entity/EnderDragonRenderer$DragonModel/m_6973_ (Lnet/minecraft/world/entity/Entity;FFFFF)V net/minecraft/client/renderer/entity/EnderDragonRenderer$DragonModel/setupAnim (Lnet/minecraft/world/entity/Entity;FFFFF)V +MD: net/minecraft/client/renderer/entity/EnderDragonRenderer$DragonModel/m_6973_ (Lnet/minecraft/world/entity/boss/enderdragon/EnderDragon;FFFFF)V net/minecraft/client/renderer/entity/EnderDragonRenderer$DragonModel/setupAnim (Lnet/minecraft/world/entity/boss/enderdragon/EnderDragon;FFFFF)V +MD: net/minecraft/client/renderer/entity/EnderDragonRenderer$DragonModel/m_7695_ (Lcom/mojang/blaze3d/vertex/PoseStack;Lcom/mojang/blaze3d/vertex/VertexConsumer;IIFFFF)V net/minecraft/client/renderer/entity/EnderDragonRenderer$DragonModel/renderToBuffer (Lcom/mojang/blaze3d/vertex/PoseStack;Lcom/mojang/blaze3d/vertex/VertexConsumer;IIFFFF)V +MD: net/minecraft/client/renderer/entity/EndermanRenderer/ ()V net/minecraft/client/renderer/entity/EndermanRenderer/ ()V +MD: net/minecraft/client/renderer/entity/EndermanRenderer/ (Lnet/minecraft/client/renderer/entity/EntityRendererProvider$Context;)V net/minecraft/client/renderer/entity/EndermanRenderer/ (Lnet/minecraft/client/renderer/entity/EntityRendererProvider$Context;)V +MD: net/minecraft/client/renderer/entity/EndermanRenderer/m_5478_ (Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/client/renderer/entity/EndermanRenderer/getTextureLocation (Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/client/renderer/entity/EndermanRenderer/m_5478_ (Lnet/minecraft/world/entity/monster/EnderMan;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/client/renderer/entity/EndermanRenderer/getTextureLocation (Lnet/minecraft/world/entity/monster/EnderMan;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/client/renderer/entity/EndermanRenderer/m_7392_ (Lnet/minecraft/world/entity/monster/EnderMan;FFLcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;I)V net/minecraft/client/renderer/entity/EndermanRenderer/render (Lnet/minecraft/world/entity/monster/EnderMan;FFLcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;I)V +MD: net/minecraft/client/renderer/entity/EndermanRenderer/m_7392_ (Lnet/minecraft/world/entity/Mob;FFLcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;I)V net/minecraft/client/renderer/entity/EndermanRenderer/render (Lnet/minecraft/world/entity/Mob;FFLcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;I)V +MD: net/minecraft/client/renderer/entity/EndermanRenderer/m_7392_ (Lnet/minecraft/world/entity/Entity;FFLcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;I)V net/minecraft/client/renderer/entity/EndermanRenderer/render (Lnet/minecraft/world/entity/Entity;FFLcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;I)V +MD: net/minecraft/client/renderer/entity/EndermanRenderer/m_7392_ (Lnet/minecraft/world/entity/LivingEntity;FFLcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;I)V net/minecraft/client/renderer/entity/EndermanRenderer/render (Lnet/minecraft/world/entity/LivingEntity;FFLcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;I)V +MD: net/minecraft/client/renderer/entity/EndermanRenderer/m_7860_ (Lnet/minecraft/world/entity/monster/EnderMan;F)Lnet/minecraft/world/phys/Vec3; net/minecraft/client/renderer/entity/EndermanRenderer/getRenderOffset (Lnet/minecraft/world/entity/monster/EnderMan;F)Lnet/minecraft/world/phys/Vec3; +MD: net/minecraft/client/renderer/entity/EndermanRenderer/m_7860_ (Lnet/minecraft/world/entity/Entity;F)Lnet/minecraft/world/phys/Vec3; net/minecraft/client/renderer/entity/EndermanRenderer/getRenderOffset (Lnet/minecraft/world/entity/Entity;F)Lnet/minecraft/world/phys/Vec3; +MD: net/minecraft/client/renderer/entity/EndermiteRenderer/ ()V net/minecraft/client/renderer/entity/EndermiteRenderer/ ()V +MD: net/minecraft/client/renderer/entity/EndermiteRenderer/ (Lnet/minecraft/client/renderer/entity/EntityRendererProvider$Context;)V net/minecraft/client/renderer/entity/EndermiteRenderer/ (Lnet/minecraft/client/renderer/entity/EntityRendererProvider$Context;)V +MD: net/minecraft/client/renderer/entity/EndermiteRenderer/m_5478_ (Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/client/renderer/entity/EndermiteRenderer/getTextureLocation (Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/client/renderer/entity/EndermiteRenderer/m_5478_ (Lnet/minecraft/world/entity/monster/Endermite;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/client/renderer/entity/EndermiteRenderer/getTextureLocation (Lnet/minecraft/world/entity/monster/Endermite;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/client/renderer/entity/EndermiteRenderer/m_6441_ (Lnet/minecraft/world/entity/monster/Endermite;)F net/minecraft/client/renderer/entity/EndermiteRenderer/getFlipDegrees (Lnet/minecraft/world/entity/monster/Endermite;)F +MD: net/minecraft/client/renderer/entity/EndermiteRenderer/m_6441_ (Lnet/minecraft/world/entity/LivingEntity;)F net/minecraft/client/renderer/entity/EndermiteRenderer/getFlipDegrees (Lnet/minecraft/world/entity/LivingEntity;)F +MD: net/minecraft/client/renderer/entity/EntityRenderDispatcher/ ()V net/minecraft/client/renderer/entity/EntityRenderDispatcher/ ()V +MD: net/minecraft/client/renderer/entity/EntityRenderDispatcher/ (Lnet/minecraft/client/Minecraft;Lnet/minecraft/client/renderer/texture/TextureManager;Lnet/minecraft/client/renderer/entity/ItemRenderer;Lnet/minecraft/client/renderer/block/BlockRenderDispatcher;Lnet/minecraft/client/gui/Font;Lnet/minecraft/client/Options;Lnet/minecraft/client/model/geom/EntityModelSet;)V net/minecraft/client/renderer/entity/EntityRenderDispatcher/ (Lnet/minecraft/client/Minecraft;Lnet/minecraft/client/renderer/texture/TextureManager;Lnet/minecraft/client/renderer/entity/ItemRenderer;Lnet/minecraft/client/renderer/block/BlockRenderDispatcher;Lnet/minecraft/client/gui/Font;Lnet/minecraft/client/Options;Lnet/minecraft/client/model/geom/EntityModelSet;)V +MD: net/minecraft/client/renderer/entity/EntityRenderDispatcher/m_114377_ ()Z net/minecraft/client/renderer/entity/EntityRenderDispatcher/shouldRenderHitBoxes ()Z +MD: net/minecraft/client/renderer/entity/EntityRenderDispatcher/m_114378_ (DDD)D net/minecraft/client/renderer/entity/EntityRenderDispatcher/distanceToSqr (DDD)D +MD: net/minecraft/client/renderer/entity/EntityRenderDispatcher/m_114382_ (Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/client/renderer/entity/EntityRenderer; net/minecraft/client/renderer/entity/EntityRenderDispatcher/getRenderer (Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/client/renderer/entity/EntityRenderer; +MD: net/minecraft/client/renderer/entity/EntityRenderDispatcher/m_114384_ (Lnet/minecraft/world/entity/Entity;DDDFFLcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;I)V net/minecraft/client/renderer/entity/EntityRenderDispatcher/render (Lnet/minecraft/world/entity/Entity;DDDFFLcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;I)V +MD: net/minecraft/client/renderer/entity/EntityRenderDispatcher/m_114394_ (Lnet/minecraft/world/entity/Entity;F)I net/minecraft/client/renderer/entity/EntityRenderDispatcher/getPackedLightCoords (Lnet/minecraft/world/entity/Entity;F)I +MD: net/minecraft/client/renderer/entity/EntityRenderDispatcher/m_114397_ (Lnet/minecraft/world/entity/Entity;Lnet/minecraft/client/renderer/culling/Frustum;DDD)Z net/minecraft/client/renderer/entity/EntityRenderDispatcher/shouldRender (Lnet/minecraft/world/entity/Entity;Lnet/minecraft/client/renderer/culling/Frustum;DDD)Z +MD: net/minecraft/client/renderer/entity/EntityRenderDispatcher/m_114406_ (Lnet/minecraft/world/level/Level;)V net/minecraft/client/renderer/entity/EntityRenderDispatcher/setLevel (Lnet/minecraft/world/level/Level;)V +MD: net/minecraft/client/renderer/entity/EntityRenderDispatcher/m_114408_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/client/Camera;Lnet/minecraft/world/entity/Entity;)V net/minecraft/client/renderer/entity/EntityRenderDispatcher/prepare (Lnet/minecraft/world/level/Level;Lnet/minecraft/client/Camera;Lnet/minecraft/world/entity/Entity;)V +MD: net/minecraft/client/renderer/entity/EntityRenderDispatcher/m_114414_ (Lcom/mojang/blaze3d/vertex/PoseStack$Pose;Lcom/mojang/blaze3d/vertex/VertexConsumer;FFFFF)V net/minecraft/client/renderer/entity/EntityRenderDispatcher/fireVertex (Lcom/mojang/blaze3d/vertex/PoseStack$Pose;Lcom/mojang/blaze3d/vertex/VertexConsumer;FFFFF)V +MD: net/minecraft/client/renderer/entity/EntityRenderDispatcher/m_114422_ (Lcom/mojang/blaze3d/vertex/PoseStack$Pose;Lcom/mojang/blaze3d/vertex/VertexConsumer;FFFFFF)V net/minecraft/client/renderer/entity/EntityRenderDispatcher/shadowVertex (Lcom/mojang/blaze3d/vertex/PoseStack$Pose;Lcom/mojang/blaze3d/vertex/VertexConsumer;FFFFFF)V +MD: net/minecraft/client/renderer/entity/EntityRenderDispatcher/m_114441_ (Lcom/mojang/blaze3d/vertex/PoseStack;Lcom/mojang/blaze3d/vertex/VertexConsumer;Lnet/minecraft/world/entity/Entity;F)V net/minecraft/client/renderer/entity/EntityRenderDispatcher/renderHitbox (Lcom/mojang/blaze3d/vertex/PoseStack;Lcom/mojang/blaze3d/vertex/VertexConsumer;Lnet/minecraft/world/entity/Entity;F)V +MD: net/minecraft/client/renderer/entity/EntityRenderDispatcher/m_114453_ (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;Lnet/minecraft/world/entity/Entity;)V net/minecraft/client/renderer/entity/EntityRenderDispatcher/renderFlame (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;Lnet/minecraft/world/entity/Entity;)V +MD: net/minecraft/client/renderer/entity/EntityRenderDispatcher/m_114457_ (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;Lnet/minecraft/world/entity/Entity;FFLnet/minecraft/world/level/LevelReader;F)V net/minecraft/client/renderer/entity/EntityRenderDispatcher/renderShadow (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;Lnet/minecraft/world/entity/Entity;FFLnet/minecraft/world/level/LevelReader;F)V +MD: net/minecraft/client/renderer/entity/EntityRenderDispatcher/m_114468_ (Z)V net/minecraft/client/renderer/entity/EntityRenderDispatcher/setRenderShadow (Z)V +MD: net/minecraft/client/renderer/entity/EntityRenderDispatcher/m_114471_ (Lnet/minecraft/world/entity/Entity;)D net/minecraft/client/renderer/entity/EntityRenderDispatcher/distanceToSqr (Lnet/minecraft/world/entity/Entity;)D +MD: net/minecraft/client/renderer/entity/EntityRenderDispatcher/m_114473_ (Z)V net/minecraft/client/renderer/entity/EntityRenderDispatcher/setRenderHitBoxes (Z)V +MD: net/minecraft/client/renderer/entity/EntityRenderDispatcher/m_234586_ ()Lnet/minecraft/client/renderer/ItemInHandRenderer; net/minecraft/client/renderer/entity/EntityRenderDispatcher/getItemInHandRenderer ()Lnet/minecraft/client/renderer/ItemInHandRenderer; +MD: net/minecraft/client/renderer/entity/EntityRenderDispatcher/m_252923_ (Lorg/joml/Quaternionf;)V net/minecraft/client/renderer/entity/EntityRenderDispatcher/overrideCameraOrientation (Lorg/joml/Quaternionf;)V +MD: net/minecraft/client/renderer/entity/EntityRenderDispatcher/m_253208_ ()Lorg/joml/Quaternionf; net/minecraft/client/renderer/entity/EntityRenderDispatcher/cameraOrientation ()Lorg/joml/Quaternionf; +MD: net/minecraft/client/renderer/entity/EntityRenderDispatcher/m_277056_ (Lcom/mojang/blaze3d/vertex/PoseStack$Pose;Lcom/mojang/blaze3d/vertex/VertexConsumer;Lnet/minecraft/world/level/chunk/ChunkAccess;Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;DDDFF)V net/minecraft/client/renderer/entity/EntityRenderDispatcher/renderBlockShadow (Lcom/mojang/blaze3d/vertex/PoseStack$Pose;Lcom/mojang/blaze3d/vertex/VertexConsumer;Lnet/minecraft/world/level/chunk/ChunkAccess;Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;DDDFF)V +MD: net/minecraft/client/renderer/entity/EntityRenderDispatcher/m_6213_ (Lnet/minecraft/server/packs/resources/ResourceManager;)V net/minecraft/client/renderer/entity/EntityRenderDispatcher/onResourceManagerReload (Lnet/minecraft/server/packs/resources/ResourceManager;)V +MD: net/minecraft/client/renderer/entity/EntityRenderer/ (Lnet/minecraft/client/renderer/entity/EntityRendererProvider$Context;)V net/minecraft/client/renderer/entity/EntityRenderer/ (Lnet/minecraft/client/renderer/entity/EntityRendererProvider$Context;)V +MD: net/minecraft/client/renderer/entity/EntityRenderer/m_114481_ ()Lnet/minecraft/client/gui/Font; net/minecraft/client/renderer/entity/EntityRenderer/getFont ()Lnet/minecraft/client/gui/Font; +MD: net/minecraft/client/renderer/entity/EntityRenderer/m_114505_ (Lnet/minecraft/world/entity/Entity;F)I net/minecraft/client/renderer/entity/EntityRenderer/getPackedLightCoords (Lnet/minecraft/world/entity/Entity;F)I +MD: net/minecraft/client/renderer/entity/EntityRenderer/m_114508_ (Lnet/minecraft/world/entity/Entity;Lnet/minecraft/core/BlockPos;)I net/minecraft/client/renderer/entity/EntityRenderer/getSkyLightLevel (Lnet/minecraft/world/entity/Entity;Lnet/minecraft/core/BlockPos;)I +MD: net/minecraft/client/renderer/entity/EntityRenderer/m_5478_ (Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/client/renderer/entity/EntityRenderer/getTextureLocation (Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/client/renderer/entity/EntityRenderer/m_5523_ (Lnet/minecraft/world/entity/Entity;Lnet/minecraft/client/renderer/culling/Frustum;DDD)Z net/minecraft/client/renderer/entity/EntityRenderer/shouldRender (Lnet/minecraft/world/entity/Entity;Lnet/minecraft/client/renderer/culling/Frustum;DDD)Z +MD: net/minecraft/client/renderer/entity/EntityRenderer/m_6086_ (Lnet/minecraft/world/entity/Entity;Lnet/minecraft/core/BlockPos;)I net/minecraft/client/renderer/entity/EntityRenderer/getBlockLightLevel (Lnet/minecraft/world/entity/Entity;Lnet/minecraft/core/BlockPos;)I +MD: net/minecraft/client/renderer/entity/EntityRenderer/m_6512_ (Lnet/minecraft/world/entity/Entity;)Z net/minecraft/client/renderer/entity/EntityRenderer/shouldShowName (Lnet/minecraft/world/entity/Entity;)Z +MD: net/minecraft/client/renderer/entity/EntityRenderer/m_7392_ (Lnet/minecraft/world/entity/Entity;FFLcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;I)V net/minecraft/client/renderer/entity/EntityRenderer/render (Lnet/minecraft/world/entity/Entity;FFLcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;I)V +MD: net/minecraft/client/renderer/entity/EntityRenderer/m_7649_ (Lnet/minecraft/world/entity/Entity;Lnet/minecraft/network/chat/Component;Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;I)V net/minecraft/client/renderer/entity/EntityRenderer/renderNameTag (Lnet/minecraft/world/entity/Entity;Lnet/minecraft/network/chat/Component;Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;I)V +MD: net/minecraft/client/renderer/entity/EntityRenderer/m_7860_ (Lnet/minecraft/world/entity/Entity;F)Lnet/minecraft/world/phys/Vec3; net/minecraft/client/renderer/entity/EntityRenderer/getRenderOffset (Lnet/minecraft/world/entity/Entity;F)Lnet/minecraft/world/phys/Vec3; +MD: net/minecraft/client/renderer/entity/EntityRendererProvider/m_174009_ (Lnet/minecraft/client/renderer/entity/EntityRendererProvider$Context;)Lnet/minecraft/client/renderer/entity/EntityRenderer; net/minecraft/client/renderer/entity/EntityRendererProvider/create (Lnet/minecraft/client/renderer/entity/EntityRendererProvider$Context;)Lnet/minecraft/client/renderer/entity/EntityRenderer; +MD: net/minecraft/client/renderer/entity/EntityRendererProvider$Context/ (Lnet/minecraft/client/renderer/entity/EntityRenderDispatcher;Lnet/minecraft/client/renderer/entity/ItemRenderer;Lnet/minecraft/client/renderer/block/BlockRenderDispatcher;Lnet/minecraft/client/renderer/ItemInHandRenderer;Lnet/minecraft/server/packs/resources/ResourceManager;Lnet/minecraft/client/model/geom/EntityModelSet;Lnet/minecraft/client/gui/Font;)V net/minecraft/client/renderer/entity/EntityRendererProvider$Context/ (Lnet/minecraft/client/renderer/entity/EntityRenderDispatcher;Lnet/minecraft/client/renderer/entity/ItemRenderer;Lnet/minecraft/client/renderer/block/BlockRenderDispatcher;Lnet/minecraft/client/renderer/ItemInHandRenderer;Lnet/minecraft/server/packs/resources/ResourceManager;Lnet/minecraft/client/model/geom/EntityModelSet;Lnet/minecraft/client/gui/Font;)V +MD: net/minecraft/client/renderer/entity/EntityRendererProvider$Context/m_174022_ ()Lnet/minecraft/client/renderer/entity/EntityRenderDispatcher; net/minecraft/client/renderer/entity/EntityRendererProvider$Context/getEntityRenderDispatcher ()Lnet/minecraft/client/renderer/entity/EntityRenderDispatcher; +MD: net/minecraft/client/renderer/entity/EntityRendererProvider$Context/m_174023_ (Lnet/minecraft/client/model/geom/ModelLayerLocation;)Lnet/minecraft/client/model/geom/ModelPart; net/minecraft/client/renderer/entity/EntityRendererProvider$Context/bakeLayer (Lnet/minecraft/client/model/geom/ModelLayerLocation;)Lnet/minecraft/client/model/geom/ModelPart; +MD: net/minecraft/client/renderer/entity/EntityRendererProvider$Context/m_174025_ ()Lnet/minecraft/client/renderer/entity/ItemRenderer; net/minecraft/client/renderer/entity/EntityRendererProvider$Context/getItemRenderer ()Lnet/minecraft/client/renderer/entity/ItemRenderer; +MD: net/minecraft/client/renderer/entity/EntityRendererProvider$Context/m_174026_ ()Lnet/minecraft/server/packs/resources/ResourceManager; net/minecraft/client/renderer/entity/EntityRendererProvider$Context/getResourceManager ()Lnet/minecraft/server/packs/resources/ResourceManager; +MD: net/minecraft/client/renderer/entity/EntityRendererProvider$Context/m_174027_ ()Lnet/minecraft/client/model/geom/EntityModelSet; net/minecraft/client/renderer/entity/EntityRendererProvider$Context/getModelSet ()Lnet/minecraft/client/model/geom/EntityModelSet; +MD: net/minecraft/client/renderer/entity/EntityRendererProvider$Context/m_174028_ ()Lnet/minecraft/client/gui/Font; net/minecraft/client/renderer/entity/EntityRendererProvider$Context/getFont ()Lnet/minecraft/client/gui/Font; +MD: net/minecraft/client/renderer/entity/EntityRendererProvider$Context/m_234597_ ()Lnet/minecraft/client/renderer/block/BlockRenderDispatcher; net/minecraft/client/renderer/entity/EntityRendererProvider$Context/getBlockRenderDispatcher ()Lnet/minecraft/client/renderer/block/BlockRenderDispatcher; +MD: net/minecraft/client/renderer/entity/EntityRendererProvider$Context/m_234598_ ()Lnet/minecraft/client/renderer/ItemInHandRenderer; net/minecraft/client/renderer/entity/EntityRendererProvider$Context/getItemInHandRenderer ()Lnet/minecraft/client/renderer/ItemInHandRenderer; +MD: net/minecraft/client/renderer/entity/EntityRendererProvider$Context/m_266367_ ()Lnet/minecraft/client/resources/model/ModelManager; net/minecraft/client/renderer/entity/EntityRendererProvider$Context/getModelManager ()Lnet/minecraft/client/resources/model/ModelManager; +MD: net/minecraft/client/renderer/entity/EntityRenderers/ ()V net/minecraft/client/renderer/entity/EntityRenderers/ ()V +MD: net/minecraft/client/renderer/entity/EntityRenderers/ ()V net/minecraft/client/renderer/entity/EntityRenderers/ ()V +MD: net/minecraft/client/renderer/entity/EntityRenderers/m_174035_ ()Z net/minecraft/client/renderer/entity/EntityRenderers/validateRegistrations ()Z +MD: net/minecraft/client/renderer/entity/EntityRenderers/m_174036_ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/client/renderer/entity/EntityRendererProvider;)V net/minecraft/client/renderer/entity/EntityRenderers/register (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/client/renderer/entity/EntityRendererProvider;)V +MD: net/minecraft/client/renderer/entity/EntityRenderers/m_174049_ (Lnet/minecraft/client/renderer/entity/EntityRendererProvider$Context;)Ljava/util/Map; net/minecraft/client/renderer/entity/EntityRenderers/createEntityRenderers (Lnet/minecraft/client/renderer/entity/EntityRendererProvider$Context;)Ljava/util/Map; +MD: net/minecraft/client/renderer/entity/EntityRenderers/m_174051_ (Lnet/minecraft/client/renderer/entity/EntityRendererProvider$Context;)Ljava/util/Map; net/minecraft/client/renderer/entity/EntityRenderers/createPlayerRenderers (Lnet/minecraft/client/renderer/entity/EntityRendererProvider$Context;)Ljava/util/Map; +MD: net/minecraft/client/renderer/entity/EntityRenderers/m_174053_ (Lnet/minecraft/client/renderer/entity/EntityRendererProvider$Context;)Lnet/minecraft/client/renderer/entity/EntityRenderer; net/minecraft/client/renderer/entity/EntityRenderers/lambda$static$23 (Lnet/minecraft/client/renderer/entity/EntityRendererProvider$Context;)Lnet/minecraft/client/renderer/entity/EntityRenderer; +MD: net/minecraft/client/renderer/entity/EntityRenderers/m_174055_ (Lnet/minecraft/client/renderer/entity/EntityRendererProvider$Context;)Lnet/minecraft/client/renderer/entity/EntityRenderer; net/minecraft/client/renderer/entity/EntityRenderers/lambda$static$22 (Lnet/minecraft/client/renderer/entity/EntityRendererProvider$Context;)Lnet/minecraft/client/renderer/entity/EntityRenderer; +MD: net/minecraft/client/renderer/entity/EntityRenderers/m_174057_ (Lnet/minecraft/client/renderer/entity/EntityRendererProvider$Context;)Lnet/minecraft/client/renderer/entity/EntityRenderer; net/minecraft/client/renderer/entity/EntityRenderers/lambda$static$21 (Lnet/minecraft/client/renderer/entity/EntityRendererProvider$Context;)Lnet/minecraft/client/renderer/entity/EntityRenderer; +MD: net/minecraft/client/renderer/entity/EntityRenderers/m_174059_ (Lnet/minecraft/client/renderer/entity/EntityRendererProvider$Context;)Lnet/minecraft/client/renderer/entity/EntityRenderer; net/minecraft/client/renderer/entity/EntityRenderers/lambda$static$20 (Lnet/minecraft/client/renderer/entity/EntityRendererProvider$Context;)Lnet/minecraft/client/renderer/entity/EntityRenderer; +MD: net/minecraft/client/renderer/entity/EntityRenderers/m_174061_ (Lnet/minecraft/client/renderer/entity/EntityRendererProvider$Context;)Lnet/minecraft/client/renderer/entity/EntityRenderer; net/minecraft/client/renderer/entity/EntityRenderers/lambda$static$19 (Lnet/minecraft/client/renderer/entity/EntityRendererProvider$Context;)Lnet/minecraft/client/renderer/entity/EntityRenderer; +MD: net/minecraft/client/renderer/entity/EntityRenderers/m_174063_ (Lnet/minecraft/client/renderer/entity/EntityRendererProvider$Context;)Lnet/minecraft/client/renderer/entity/EntityRenderer; net/minecraft/client/renderer/entity/EntityRenderers/lambda$static$18 (Lnet/minecraft/client/renderer/entity/EntityRendererProvider$Context;)Lnet/minecraft/client/renderer/entity/EntityRenderer; +MD: net/minecraft/client/renderer/entity/EntityRenderers/m_174065_ (Lnet/minecraft/client/renderer/entity/EntityRendererProvider$Context;)Lnet/minecraft/client/renderer/entity/EntityRenderer; net/minecraft/client/renderer/entity/EntityRenderers/lambda$static$17 (Lnet/minecraft/client/renderer/entity/EntityRendererProvider$Context;)Lnet/minecraft/client/renderer/entity/EntityRenderer; +MD: net/minecraft/client/renderer/entity/EntityRenderers/m_174067_ (Lnet/minecraft/client/renderer/entity/EntityRendererProvider$Context;)Lnet/minecraft/client/renderer/entity/EntityRenderer; net/minecraft/client/renderer/entity/EntityRenderers/lambda$static$16 (Lnet/minecraft/client/renderer/entity/EntityRendererProvider$Context;)Lnet/minecraft/client/renderer/entity/EntityRenderer; +MD: net/minecraft/client/renderer/entity/EntityRenderers/m_174069_ (Lnet/minecraft/client/renderer/entity/EntityRendererProvider$Context;)Lnet/minecraft/client/renderer/entity/EntityRenderer; net/minecraft/client/renderer/entity/EntityRenderers/lambda$static$15 (Lnet/minecraft/client/renderer/entity/EntityRendererProvider$Context;)Lnet/minecraft/client/renderer/entity/EntityRenderer; +MD: net/minecraft/client/renderer/entity/EntityRenderers/m_174071_ (Lnet/minecraft/client/renderer/entity/EntityRendererProvider$Context;)Lnet/minecraft/client/renderer/entity/EntityRenderer; net/minecraft/client/renderer/entity/EntityRenderers/lambda$static$14 (Lnet/minecraft/client/renderer/entity/EntityRendererProvider$Context;)Lnet/minecraft/client/renderer/entity/EntityRenderer; +MD: net/minecraft/client/renderer/entity/EntityRenderers/m_174073_ (Lnet/minecraft/client/renderer/entity/EntityRendererProvider$Context;)Lnet/minecraft/client/renderer/entity/EntityRenderer; net/minecraft/client/renderer/entity/EntityRenderers/lambda$static$13 (Lnet/minecraft/client/renderer/entity/EntityRendererProvider$Context;)Lnet/minecraft/client/renderer/entity/EntityRenderer; +MD: net/minecraft/client/renderer/entity/EntityRenderers/m_174075_ (Lnet/minecraft/client/renderer/entity/EntityRendererProvider$Context;)Lnet/minecraft/client/renderer/entity/EntityRenderer; net/minecraft/client/renderer/entity/EntityRenderers/lambda$static$12 (Lnet/minecraft/client/renderer/entity/EntityRendererProvider$Context;)Lnet/minecraft/client/renderer/entity/EntityRenderer; +MD: net/minecraft/client/renderer/entity/EntityRenderers/m_174077_ (Lnet/minecraft/client/renderer/entity/EntityRendererProvider$Context;)Lnet/minecraft/client/renderer/entity/EntityRenderer; net/minecraft/client/renderer/entity/EntityRenderers/lambda$static$11 (Lnet/minecraft/client/renderer/entity/EntityRendererProvider$Context;)Lnet/minecraft/client/renderer/entity/EntityRenderer; +MD: net/minecraft/client/renderer/entity/EntityRenderers/m_174079_ (Lnet/minecraft/client/renderer/entity/EntityRendererProvider$Context;)Lnet/minecraft/client/renderer/entity/EntityRenderer; net/minecraft/client/renderer/entity/EntityRenderers/lambda$static$10 (Lnet/minecraft/client/renderer/entity/EntityRendererProvider$Context;)Lnet/minecraft/client/renderer/entity/EntityRenderer; +MD: net/minecraft/client/renderer/entity/EntityRenderers/m_174081_ (Lnet/minecraft/client/renderer/entity/EntityRendererProvider$Context;)Lnet/minecraft/client/renderer/entity/EntityRenderer; net/minecraft/client/renderer/entity/EntityRenderers/lambda$static$9 (Lnet/minecraft/client/renderer/entity/EntityRendererProvider$Context;)Lnet/minecraft/client/renderer/entity/EntityRenderer; +MD: net/minecraft/client/renderer/entity/EntityRenderers/m_174083_ (Lnet/minecraft/client/renderer/entity/EntityRendererProvider$Context;)Lnet/minecraft/client/renderer/entity/EntityRenderer; net/minecraft/client/renderer/entity/EntityRenderers/lambda$static$8 (Lnet/minecraft/client/renderer/entity/EntityRendererProvider$Context;)Lnet/minecraft/client/renderer/entity/EntityRenderer; +MD: net/minecraft/client/renderer/entity/EntityRenderers/m_174085_ (Lnet/minecraft/client/renderer/entity/EntityRendererProvider$Context;)Lnet/minecraft/client/renderer/entity/EntityRenderer; net/minecraft/client/renderer/entity/EntityRenderers/lambda$static$7 (Lnet/minecraft/client/renderer/entity/EntityRendererProvider$Context;)Lnet/minecraft/client/renderer/entity/EntityRenderer; +MD: net/minecraft/client/renderer/entity/EntityRenderers/m_174087_ (Lnet/minecraft/client/renderer/entity/EntityRendererProvider$Context;)Lnet/minecraft/client/renderer/entity/EntityRenderer; net/minecraft/client/renderer/entity/EntityRenderers/lambda$static$6 (Lnet/minecraft/client/renderer/entity/EntityRendererProvider$Context;)Lnet/minecraft/client/renderer/entity/EntityRenderer; +MD: net/minecraft/client/renderer/entity/EntityRenderers/m_174089_ (Lnet/minecraft/client/renderer/entity/EntityRendererProvider$Context;)Lnet/minecraft/client/renderer/entity/EntityRenderer; net/minecraft/client/renderer/entity/EntityRenderers/lambda$static$5 (Lnet/minecraft/client/renderer/entity/EntityRendererProvider$Context;)Lnet/minecraft/client/renderer/entity/EntityRenderer; +MD: net/minecraft/client/renderer/entity/EntityRenderers/m_174091_ (Lnet/minecraft/client/renderer/entity/EntityRendererProvider$Context;)Lnet/minecraft/client/renderer/entity/EntityRenderer; net/minecraft/client/renderer/entity/EntityRenderers/lambda$static$4 (Lnet/minecraft/client/renderer/entity/EntityRendererProvider$Context;)Lnet/minecraft/client/renderer/entity/EntityRenderer; +MD: net/minecraft/client/renderer/entity/EntityRenderers/m_174093_ (Lnet/minecraft/client/renderer/entity/EntityRendererProvider$Context;)Lnet/minecraft/client/renderer/entity/EntityRenderer; net/minecraft/client/renderer/entity/EntityRenderers/lambda$static$2 (Lnet/minecraft/client/renderer/entity/EntityRendererProvider$Context;)Lnet/minecraft/client/renderer/entity/EntityRenderer; +MD: net/minecraft/client/renderer/entity/EntityRenderers/m_174095_ (Lnet/minecraft/client/renderer/entity/EntityRendererProvider$Context;)Lnet/minecraft/client/renderer/entity/EntityRenderer; net/minecraft/client/renderer/entity/EntityRenderers/lambda$static$1 (Lnet/minecraft/client/renderer/entity/EntityRendererProvider$Context;)Lnet/minecraft/client/renderer/entity/EntityRenderer; +MD: net/minecraft/client/renderer/entity/EntityRenderers/m_174097_ (Lnet/minecraft/client/renderer/entity/EntityRendererProvider$Context;)Lnet/minecraft/client/renderer/entity/EntityRenderer; net/minecraft/client/renderer/entity/EntityRenderers/lambda$static$0 (Lnet/minecraft/client/renderer/entity/EntityRendererProvider$Context;)Lnet/minecraft/client/renderer/entity/EntityRenderer; +MD: net/minecraft/client/renderer/entity/EntityRenderers/m_234604_ (Lcom/google/common/collect/ImmutableMap$Builder;Lnet/minecraft/client/renderer/entity/EntityRendererProvider$Context;Ljava/lang/String;Lnet/minecraft/client/renderer/entity/EntityRendererProvider;)V net/minecraft/client/renderer/entity/EntityRenderers/lambda$createPlayerRenderers$27 (Lcom/google/common/collect/ImmutableMap$Builder;Lnet/minecraft/client/renderer/entity/EntityRendererProvider$Context;Ljava/lang/String;Lnet/minecraft/client/renderer/entity/EntityRendererProvider;)V +MD: net/minecraft/client/renderer/entity/EntityRenderers/m_234609_ (Lnet/minecraft/client/renderer/entity/EntityRendererProvider$Context;)Lnet/minecraft/client/renderer/entity/EntityRenderer; net/minecraft/client/renderer/entity/EntityRenderers/lambda$static$25 (Lnet/minecraft/client/renderer/entity/EntityRendererProvider$Context;)Lnet/minecraft/client/renderer/entity/EntityRenderer; +MD: net/minecraft/client/renderer/entity/EntityRenderers/m_234611_ (Lnet/minecraft/client/renderer/entity/EntityRendererProvider$Context;)Lnet/minecraft/client/renderer/entity/EntityRenderer; net/minecraft/client/renderer/entity/EntityRenderers/lambda$static$24 (Lnet/minecraft/client/renderer/entity/EntityRendererProvider$Context;)Lnet/minecraft/client/renderer/entity/EntityRenderer; +MD: net/minecraft/client/renderer/entity/EntityRenderers/m_244735_ (Lnet/minecraft/client/renderer/entity/EntityRendererProvider$Context;)Lnet/minecraft/client/renderer/entity/EntityRenderer; net/minecraft/client/renderer/entity/EntityRenderers/lambda$static$3 (Lnet/minecraft/client/renderer/entity/EntityRendererProvider$Context;)Lnet/minecraft/client/renderer/entity/EntityRenderer; +MD: net/minecraft/client/renderer/entity/EntityRenderers/m_257087_ (Lcom/google/common/collect/ImmutableMap$Builder;Lnet/minecraft/client/renderer/entity/EntityRendererProvider$Context;Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/client/renderer/entity/EntityRendererProvider;)V net/minecraft/client/renderer/entity/EntityRenderers/lambda$createEntityRenderers$26 (Lcom/google/common/collect/ImmutableMap$Builder;Lnet/minecraft/client/renderer/entity/EntityRendererProvider$Context;Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/client/renderer/entity/EntityRendererProvider;)V +MD: net/minecraft/client/renderer/entity/EvokerFangsRenderer/ ()V net/minecraft/client/renderer/entity/EvokerFangsRenderer/ ()V +MD: net/minecraft/client/renderer/entity/EvokerFangsRenderer/ (Lnet/minecraft/client/renderer/entity/EntityRendererProvider$Context;)V net/minecraft/client/renderer/entity/EvokerFangsRenderer/ (Lnet/minecraft/client/renderer/entity/EntityRendererProvider$Context;)V +MD: net/minecraft/client/renderer/entity/EvokerFangsRenderer/m_5478_ (Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/client/renderer/entity/EvokerFangsRenderer/getTextureLocation (Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/client/renderer/entity/EvokerFangsRenderer/m_5478_ (Lnet/minecraft/world/entity/projectile/EvokerFangs;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/client/renderer/entity/EvokerFangsRenderer/getTextureLocation (Lnet/minecraft/world/entity/projectile/EvokerFangs;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/client/renderer/entity/EvokerFangsRenderer/m_7392_ (Lnet/minecraft/world/entity/Entity;FFLcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;I)V net/minecraft/client/renderer/entity/EvokerFangsRenderer/render (Lnet/minecraft/world/entity/Entity;FFLcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;I)V +MD: net/minecraft/client/renderer/entity/EvokerFangsRenderer/m_7392_ (Lnet/minecraft/world/entity/projectile/EvokerFangs;FFLcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;I)V net/minecraft/client/renderer/entity/EvokerFangsRenderer/render (Lnet/minecraft/world/entity/projectile/EvokerFangs;FFLcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;I)V +MD: net/minecraft/client/renderer/entity/EvokerRenderer/ ()V net/minecraft/client/renderer/entity/EvokerRenderer/ ()V +MD: net/minecraft/client/renderer/entity/EvokerRenderer/ (Lnet/minecraft/client/renderer/entity/EntityRendererProvider$Context;)V net/minecraft/client/renderer/entity/EvokerRenderer/ (Lnet/minecraft/client/renderer/entity/EntityRendererProvider$Context;)V +MD: net/minecraft/client/renderer/entity/EvokerRenderer/m_5478_ (Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/client/renderer/entity/EvokerRenderer/getTextureLocation (Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/client/renderer/entity/EvokerRenderer/m_5478_ (Lnet/minecraft/world/entity/monster/SpellcasterIllager;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/client/renderer/entity/EvokerRenderer/getTextureLocation (Lnet/minecraft/world/entity/monster/SpellcasterIllager;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/client/renderer/entity/EvokerRenderer$1/ (Lnet/minecraft/client/renderer/entity/EvokerRenderer;Lnet/minecraft/client/renderer/entity/RenderLayerParent;Lnet/minecraft/client/renderer/ItemInHandRenderer;)V net/minecraft/client/renderer/entity/EvokerRenderer$1/ (Lnet/minecraft/client/renderer/entity/EvokerRenderer;Lnet/minecraft/client/renderer/entity/RenderLayerParent;Lnet/minecraft/client/renderer/ItemInHandRenderer;)V +MD: net/minecraft/client/renderer/entity/EvokerRenderer$1/m_6494_ (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;ILnet/minecraft/world/entity/Entity;FFFFFF)V net/minecraft/client/renderer/entity/EvokerRenderer$1/render (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;ILnet/minecraft/world/entity/Entity;FFFFFF)V +MD: net/minecraft/client/renderer/entity/EvokerRenderer$1/m_6494_ (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;ILnet/minecraft/world/entity/LivingEntity;FFFFFF)V net/minecraft/client/renderer/entity/EvokerRenderer$1/render (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;ILnet/minecraft/world/entity/LivingEntity;FFFFFF)V +MD: net/minecraft/client/renderer/entity/EvokerRenderer$1/m_6494_ (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;ILnet/minecraft/world/entity/monster/SpellcasterIllager;FFFFFF)V net/minecraft/client/renderer/entity/EvokerRenderer$1/render (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;ILnet/minecraft/world/entity/monster/SpellcasterIllager;FFFFFF)V +MD: net/minecraft/client/renderer/entity/ExperienceOrbRenderer/ ()V net/minecraft/client/renderer/entity/ExperienceOrbRenderer/ ()V +MD: net/minecraft/client/renderer/entity/ExperienceOrbRenderer/ (Lnet/minecraft/client/renderer/entity/EntityRendererProvider$Context;)V net/minecraft/client/renderer/entity/ExperienceOrbRenderer/ (Lnet/minecraft/client/renderer/entity/EntityRendererProvider$Context;)V +MD: net/minecraft/client/renderer/entity/ExperienceOrbRenderer/m_252863_ (Lcom/mojang/blaze3d/vertex/VertexConsumer;Lorg/joml/Matrix4f;Lorg/joml/Matrix3f;FFIIIFFI)V net/minecraft/client/renderer/entity/ExperienceOrbRenderer/vertex (Lcom/mojang/blaze3d/vertex/VertexConsumer;Lorg/joml/Matrix4f;Lorg/joml/Matrix3f;FFIIIFFI)V +MD: net/minecraft/client/renderer/entity/ExperienceOrbRenderer/m_5478_ (Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/client/renderer/entity/ExperienceOrbRenderer/getTextureLocation (Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/client/renderer/entity/ExperienceOrbRenderer/m_5478_ (Lnet/minecraft/world/entity/ExperienceOrb;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/client/renderer/entity/ExperienceOrbRenderer/getTextureLocation (Lnet/minecraft/world/entity/ExperienceOrb;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/client/renderer/entity/ExperienceOrbRenderer/m_6086_ (Lnet/minecraft/world/entity/Entity;Lnet/minecraft/core/BlockPos;)I net/minecraft/client/renderer/entity/ExperienceOrbRenderer/getBlockLightLevel (Lnet/minecraft/world/entity/Entity;Lnet/minecraft/core/BlockPos;)I +MD: net/minecraft/client/renderer/entity/ExperienceOrbRenderer/m_6086_ (Lnet/minecraft/world/entity/ExperienceOrb;Lnet/minecraft/core/BlockPos;)I net/minecraft/client/renderer/entity/ExperienceOrbRenderer/getBlockLightLevel (Lnet/minecraft/world/entity/ExperienceOrb;Lnet/minecraft/core/BlockPos;)I +MD: net/minecraft/client/renderer/entity/ExperienceOrbRenderer/m_7392_ (Lnet/minecraft/world/entity/ExperienceOrb;FFLcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;I)V net/minecraft/client/renderer/entity/ExperienceOrbRenderer/render (Lnet/minecraft/world/entity/ExperienceOrb;FFLcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;I)V +MD: net/minecraft/client/renderer/entity/ExperienceOrbRenderer/m_7392_ (Lnet/minecraft/world/entity/Entity;FFLcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;I)V net/minecraft/client/renderer/entity/ExperienceOrbRenderer/render (Lnet/minecraft/world/entity/Entity;FFLcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;I)V +MD: net/minecraft/client/renderer/entity/FallingBlockRenderer/ (Lnet/minecraft/client/renderer/entity/EntityRendererProvider$Context;)V net/minecraft/client/renderer/entity/FallingBlockRenderer/ (Lnet/minecraft/client/renderer/entity/EntityRendererProvider$Context;)V +MD: net/minecraft/client/renderer/entity/FallingBlockRenderer/m_5478_ (Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/client/renderer/entity/FallingBlockRenderer/getTextureLocation (Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/client/renderer/entity/FallingBlockRenderer/m_5478_ (Lnet/minecraft/world/entity/item/FallingBlockEntity;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/client/renderer/entity/FallingBlockRenderer/getTextureLocation (Lnet/minecraft/world/entity/item/FallingBlockEntity;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/client/renderer/entity/FallingBlockRenderer/m_7392_ (Lnet/minecraft/world/entity/Entity;FFLcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;I)V net/minecraft/client/renderer/entity/FallingBlockRenderer/render (Lnet/minecraft/world/entity/Entity;FFLcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;I)V +MD: net/minecraft/client/renderer/entity/FallingBlockRenderer/m_7392_ (Lnet/minecraft/world/entity/item/FallingBlockEntity;FFLcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;I)V net/minecraft/client/renderer/entity/FallingBlockRenderer/render (Lnet/minecraft/world/entity/item/FallingBlockEntity;FFLcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;I)V +MD: net/minecraft/client/renderer/entity/FireworkEntityRenderer/ (Lnet/minecraft/client/renderer/entity/EntityRendererProvider$Context;)V net/minecraft/client/renderer/entity/FireworkEntityRenderer/ (Lnet/minecraft/client/renderer/entity/EntityRendererProvider$Context;)V +MD: net/minecraft/client/renderer/entity/FireworkEntityRenderer/m_5478_ (Lnet/minecraft/world/entity/projectile/FireworkRocketEntity;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/client/renderer/entity/FireworkEntityRenderer/getTextureLocation (Lnet/minecraft/world/entity/projectile/FireworkRocketEntity;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/client/renderer/entity/FireworkEntityRenderer/m_5478_ (Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/client/renderer/entity/FireworkEntityRenderer/getTextureLocation (Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/client/renderer/entity/FireworkEntityRenderer/m_7392_ (Lnet/minecraft/world/entity/Entity;FFLcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;I)V net/minecraft/client/renderer/entity/FireworkEntityRenderer/render (Lnet/minecraft/world/entity/Entity;FFLcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;I)V +MD: net/minecraft/client/renderer/entity/FireworkEntityRenderer/m_7392_ (Lnet/minecraft/world/entity/projectile/FireworkRocketEntity;FFLcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;I)V net/minecraft/client/renderer/entity/FireworkEntityRenderer/render (Lnet/minecraft/world/entity/projectile/FireworkRocketEntity;FFLcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;I)V +MD: net/minecraft/client/renderer/entity/FishingHookRenderer/ ()V net/minecraft/client/renderer/entity/FishingHookRenderer/ ()V +MD: net/minecraft/client/renderer/entity/FishingHookRenderer/ (Lnet/minecraft/client/renderer/entity/EntityRendererProvider$Context;)V net/minecraft/client/renderer/entity/FishingHookRenderer/ (Lnet/minecraft/client/renderer/entity/EntityRendererProvider$Context;)V +MD: net/minecraft/client/renderer/entity/FishingHookRenderer/m_114690_ (II)F net/minecraft/client/renderer/entity/FishingHookRenderer/fraction (II)F +MD: net/minecraft/client/renderer/entity/FishingHookRenderer/m_174118_ (FFFLcom/mojang/blaze3d/vertex/VertexConsumer;Lcom/mojang/blaze3d/vertex/PoseStack$Pose;FF)V net/minecraft/client/renderer/entity/FishingHookRenderer/stringVertex (FFFLcom/mojang/blaze3d/vertex/VertexConsumer;Lcom/mojang/blaze3d/vertex/PoseStack$Pose;FF)V +MD: net/minecraft/client/renderer/entity/FishingHookRenderer/m_253251_ (Lcom/mojang/blaze3d/vertex/VertexConsumer;Lorg/joml/Matrix4f;Lorg/joml/Matrix3f;IFIII)V net/minecraft/client/renderer/entity/FishingHookRenderer/vertex (Lcom/mojang/blaze3d/vertex/VertexConsumer;Lorg/joml/Matrix4f;Lorg/joml/Matrix3f;IFIII)V +MD: net/minecraft/client/renderer/entity/FishingHookRenderer/m_5478_ (Lnet/minecraft/world/entity/projectile/FishingHook;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/client/renderer/entity/FishingHookRenderer/getTextureLocation (Lnet/minecraft/world/entity/projectile/FishingHook;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/client/renderer/entity/FishingHookRenderer/m_5478_ (Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/client/renderer/entity/FishingHookRenderer/getTextureLocation (Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/client/renderer/entity/FishingHookRenderer/m_7392_ (Lnet/minecraft/world/entity/Entity;FFLcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;I)V net/minecraft/client/renderer/entity/FishingHookRenderer/render (Lnet/minecraft/world/entity/Entity;FFLcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;I)V +MD: net/minecraft/client/renderer/entity/FishingHookRenderer/m_7392_ (Lnet/minecraft/world/entity/projectile/FishingHook;FFLcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;I)V net/minecraft/client/renderer/entity/FishingHookRenderer/render (Lnet/minecraft/world/entity/projectile/FishingHook;FFLcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;I)V +MD: net/minecraft/client/renderer/entity/FoxRenderer/ ()V net/minecraft/client/renderer/entity/FoxRenderer/ ()V +MD: net/minecraft/client/renderer/entity/FoxRenderer/ (Lnet/minecraft/client/renderer/entity/EntityRendererProvider$Context;)V net/minecraft/client/renderer/entity/FoxRenderer/ (Lnet/minecraft/client/renderer/entity/EntityRendererProvider$Context;)V +MD: net/minecraft/client/renderer/entity/FoxRenderer/m_5478_ (Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/client/renderer/entity/FoxRenderer/getTextureLocation (Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/client/renderer/entity/FoxRenderer/m_5478_ (Lnet/minecraft/world/entity/animal/Fox;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/client/renderer/entity/FoxRenderer/getTextureLocation (Lnet/minecraft/world/entity/animal/Fox;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/client/renderer/entity/FoxRenderer/m_7523_ (Lnet/minecraft/world/entity/LivingEntity;Lcom/mojang/blaze3d/vertex/PoseStack;FFF)V net/minecraft/client/renderer/entity/FoxRenderer/setupRotations (Lnet/minecraft/world/entity/LivingEntity;Lcom/mojang/blaze3d/vertex/PoseStack;FFF)V +MD: net/minecraft/client/renderer/entity/FoxRenderer/m_7523_ (Lnet/minecraft/world/entity/animal/Fox;Lcom/mojang/blaze3d/vertex/PoseStack;FFF)V net/minecraft/client/renderer/entity/FoxRenderer/setupRotations (Lnet/minecraft/world/entity/animal/Fox;Lcom/mojang/blaze3d/vertex/PoseStack;FFF)V +MD: net/minecraft/client/renderer/entity/FrogRenderer/ (Lnet/minecraft/client/renderer/entity/EntityRendererProvider$Context;)V net/minecraft/client/renderer/entity/FrogRenderer/ (Lnet/minecraft/client/renderer/entity/EntityRendererProvider$Context;)V +MD: net/minecraft/client/renderer/entity/FrogRenderer/m_5478_ (Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/client/renderer/entity/FrogRenderer/getTextureLocation (Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/client/renderer/entity/FrogRenderer/m_5478_ (Lnet/minecraft/world/entity/animal/frog/Frog;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/client/renderer/entity/FrogRenderer/getTextureLocation (Lnet/minecraft/world/entity/animal/frog/Frog;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/client/renderer/entity/GhastRenderer/ ()V net/minecraft/client/renderer/entity/GhastRenderer/ ()V +MD: net/minecraft/client/renderer/entity/GhastRenderer/ (Lnet/minecraft/client/renderer/entity/EntityRendererProvider$Context;)V net/minecraft/client/renderer/entity/GhastRenderer/ (Lnet/minecraft/client/renderer/entity/EntityRendererProvider$Context;)V +MD: net/minecraft/client/renderer/entity/GhastRenderer/m_5478_ (Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/client/renderer/entity/GhastRenderer/getTextureLocation (Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/client/renderer/entity/GhastRenderer/m_5478_ (Lnet/minecraft/world/entity/monster/Ghast;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/client/renderer/entity/GhastRenderer/getTextureLocation (Lnet/minecraft/world/entity/monster/Ghast;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/client/renderer/entity/GhastRenderer/m_7546_ (Lnet/minecraft/world/entity/monster/Ghast;Lcom/mojang/blaze3d/vertex/PoseStack;F)V net/minecraft/client/renderer/entity/GhastRenderer/scale (Lnet/minecraft/world/entity/monster/Ghast;Lcom/mojang/blaze3d/vertex/PoseStack;F)V +MD: net/minecraft/client/renderer/entity/GhastRenderer/m_7546_ (Lnet/minecraft/world/entity/LivingEntity;Lcom/mojang/blaze3d/vertex/PoseStack;F)V net/minecraft/client/renderer/entity/GhastRenderer/scale (Lnet/minecraft/world/entity/LivingEntity;Lcom/mojang/blaze3d/vertex/PoseStack;F)V +MD: net/minecraft/client/renderer/entity/GiantMobRenderer/ ()V net/minecraft/client/renderer/entity/GiantMobRenderer/ ()V +MD: net/minecraft/client/renderer/entity/GiantMobRenderer/ (Lnet/minecraft/client/renderer/entity/EntityRendererProvider$Context;F)V net/minecraft/client/renderer/entity/GiantMobRenderer/ (Lnet/minecraft/client/renderer/entity/EntityRendererProvider$Context;F)V +MD: net/minecraft/client/renderer/entity/GiantMobRenderer/m_5478_ (Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/client/renderer/entity/GiantMobRenderer/getTextureLocation (Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/client/renderer/entity/GiantMobRenderer/m_5478_ (Lnet/minecraft/world/entity/monster/Giant;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/client/renderer/entity/GiantMobRenderer/getTextureLocation (Lnet/minecraft/world/entity/monster/Giant;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/client/renderer/entity/GiantMobRenderer/m_7546_ (Lnet/minecraft/world/entity/monster/Giant;Lcom/mojang/blaze3d/vertex/PoseStack;F)V net/minecraft/client/renderer/entity/GiantMobRenderer/scale (Lnet/minecraft/world/entity/monster/Giant;Lcom/mojang/blaze3d/vertex/PoseStack;F)V +MD: net/minecraft/client/renderer/entity/GiantMobRenderer/m_7546_ (Lnet/minecraft/world/entity/LivingEntity;Lcom/mojang/blaze3d/vertex/PoseStack;F)V net/minecraft/client/renderer/entity/GiantMobRenderer/scale (Lnet/minecraft/world/entity/LivingEntity;Lcom/mojang/blaze3d/vertex/PoseStack;F)V +MD: net/minecraft/client/renderer/entity/GlowSquidRenderer/ ()V net/minecraft/client/renderer/entity/GlowSquidRenderer/ ()V +MD: net/minecraft/client/renderer/entity/GlowSquidRenderer/ (Lnet/minecraft/client/renderer/entity/EntityRendererProvider$Context;Lnet/minecraft/client/model/SquidModel;)V net/minecraft/client/renderer/entity/GlowSquidRenderer/ (Lnet/minecraft/client/renderer/entity/EntityRendererProvider$Context;Lnet/minecraft/client/model/SquidModel;)V +MD: net/minecraft/client/renderer/entity/GlowSquidRenderer/m_5478_ (Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/client/renderer/entity/GlowSquidRenderer/getTextureLocation (Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/client/renderer/entity/GlowSquidRenderer/m_5478_ (Lnet/minecraft/world/entity/GlowSquid;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/client/renderer/entity/GlowSquidRenderer/getTextureLocation (Lnet/minecraft/world/entity/GlowSquid;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/client/renderer/entity/GlowSquidRenderer/m_5478_ (Lnet/minecraft/world/entity/animal/Squid;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/client/renderer/entity/GlowSquidRenderer/getTextureLocation (Lnet/minecraft/world/entity/animal/Squid;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/client/renderer/entity/GlowSquidRenderer/m_6086_ (Lnet/minecraft/world/entity/Entity;Lnet/minecraft/core/BlockPos;)I net/minecraft/client/renderer/entity/GlowSquidRenderer/getBlockLightLevel (Lnet/minecraft/world/entity/Entity;Lnet/minecraft/core/BlockPos;)I +MD: net/minecraft/client/renderer/entity/GlowSquidRenderer/m_6086_ (Lnet/minecraft/world/entity/GlowSquid;Lnet/minecraft/core/BlockPos;)I net/minecraft/client/renderer/entity/GlowSquidRenderer/getBlockLightLevel (Lnet/minecraft/world/entity/GlowSquid;Lnet/minecraft/core/BlockPos;)I +MD: net/minecraft/client/renderer/entity/GoatRenderer/ ()V net/minecraft/client/renderer/entity/GoatRenderer/ ()V +MD: net/minecraft/client/renderer/entity/GoatRenderer/ (Lnet/minecraft/client/renderer/entity/EntityRendererProvider$Context;)V net/minecraft/client/renderer/entity/GoatRenderer/ (Lnet/minecraft/client/renderer/entity/EntityRendererProvider$Context;)V +MD: net/minecraft/client/renderer/entity/GoatRenderer/m_5478_ (Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/client/renderer/entity/GoatRenderer/getTextureLocation (Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/client/renderer/entity/GoatRenderer/m_5478_ (Lnet/minecraft/world/entity/animal/goat/Goat;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/client/renderer/entity/GoatRenderer/getTextureLocation (Lnet/minecraft/world/entity/animal/goat/Goat;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/client/renderer/entity/GuardianRenderer/ ()V net/minecraft/client/renderer/entity/GuardianRenderer/ ()V +MD: net/minecraft/client/renderer/entity/GuardianRenderer/ (Lnet/minecraft/client/renderer/entity/EntityRendererProvider$Context;FLnet/minecraft/client/model/geom/ModelLayerLocation;)V net/minecraft/client/renderer/entity/GuardianRenderer/ (Lnet/minecraft/client/renderer/entity/EntityRendererProvider$Context;FLnet/minecraft/client/model/geom/ModelLayerLocation;)V +MD: net/minecraft/client/renderer/entity/GuardianRenderer/ (Lnet/minecraft/client/renderer/entity/EntityRendererProvider$Context;)V net/minecraft/client/renderer/entity/GuardianRenderer/ (Lnet/minecraft/client/renderer/entity/EntityRendererProvider$Context;)V +MD: net/minecraft/client/renderer/entity/GuardianRenderer/m_114802_ (Lnet/minecraft/world/entity/LivingEntity;DF)Lnet/minecraft/world/phys/Vec3; net/minecraft/client/renderer/entity/GuardianRenderer/getPosition (Lnet/minecraft/world/entity/LivingEntity;DF)Lnet/minecraft/world/phys/Vec3; +MD: net/minecraft/client/renderer/entity/GuardianRenderer/m_252738_ (Lcom/mojang/blaze3d/vertex/VertexConsumer;Lorg/joml/Matrix4f;Lorg/joml/Matrix3f;FFFIIIFF)V net/minecraft/client/renderer/entity/GuardianRenderer/vertex (Lcom/mojang/blaze3d/vertex/VertexConsumer;Lorg/joml/Matrix4f;Lorg/joml/Matrix3f;FFFIIIFF)V +MD: net/minecraft/client/renderer/entity/GuardianRenderer/m_5478_ (Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/client/renderer/entity/GuardianRenderer/getTextureLocation (Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/client/renderer/entity/GuardianRenderer/m_5478_ (Lnet/minecraft/world/entity/monster/Guardian;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/client/renderer/entity/GuardianRenderer/getTextureLocation (Lnet/minecraft/world/entity/monster/Guardian;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/client/renderer/entity/GuardianRenderer/m_5523_ (Lnet/minecraft/world/entity/Mob;Lnet/minecraft/client/renderer/culling/Frustum;DDD)Z net/minecraft/client/renderer/entity/GuardianRenderer/shouldRender (Lnet/minecraft/world/entity/Mob;Lnet/minecraft/client/renderer/culling/Frustum;DDD)Z +MD: net/minecraft/client/renderer/entity/GuardianRenderer/m_5523_ (Lnet/minecraft/world/entity/monster/Guardian;Lnet/minecraft/client/renderer/culling/Frustum;DDD)Z net/minecraft/client/renderer/entity/GuardianRenderer/shouldRender (Lnet/minecraft/world/entity/monster/Guardian;Lnet/minecraft/client/renderer/culling/Frustum;DDD)Z +MD: net/minecraft/client/renderer/entity/GuardianRenderer/m_5523_ (Lnet/minecraft/world/entity/Entity;Lnet/minecraft/client/renderer/culling/Frustum;DDD)Z net/minecraft/client/renderer/entity/GuardianRenderer/shouldRender (Lnet/minecraft/world/entity/Entity;Lnet/minecraft/client/renderer/culling/Frustum;DDD)Z +MD: net/minecraft/client/renderer/entity/GuardianRenderer/m_7392_ (Lnet/minecraft/world/entity/Entity;FFLcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;I)V net/minecraft/client/renderer/entity/GuardianRenderer/render (Lnet/minecraft/world/entity/Entity;FFLcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;I)V +MD: net/minecraft/client/renderer/entity/GuardianRenderer/m_7392_ (Lnet/minecraft/world/entity/LivingEntity;FFLcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;I)V net/minecraft/client/renderer/entity/GuardianRenderer/render (Lnet/minecraft/world/entity/LivingEntity;FFLcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;I)V +MD: net/minecraft/client/renderer/entity/GuardianRenderer/m_7392_ (Lnet/minecraft/world/entity/Mob;FFLcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;I)V net/minecraft/client/renderer/entity/GuardianRenderer/render (Lnet/minecraft/world/entity/Mob;FFLcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;I)V +MD: net/minecraft/client/renderer/entity/GuardianRenderer/m_7392_ (Lnet/minecraft/world/entity/monster/Guardian;FFLcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;I)V net/minecraft/client/renderer/entity/GuardianRenderer/render (Lnet/minecraft/world/entity/monster/Guardian;FFLcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;I)V +MD: net/minecraft/client/renderer/entity/HoglinRenderer/ ()V net/minecraft/client/renderer/entity/HoglinRenderer/ ()V +MD: net/minecraft/client/renderer/entity/HoglinRenderer/ (Lnet/minecraft/client/renderer/entity/EntityRendererProvider$Context;)V net/minecraft/client/renderer/entity/HoglinRenderer/ (Lnet/minecraft/client/renderer/entity/EntityRendererProvider$Context;)V +MD: net/minecraft/client/renderer/entity/HoglinRenderer/m_5478_ (Lnet/minecraft/world/entity/monster/hoglin/Hoglin;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/client/renderer/entity/HoglinRenderer/getTextureLocation (Lnet/minecraft/world/entity/monster/hoglin/Hoglin;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/client/renderer/entity/HoglinRenderer/m_5478_ (Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/client/renderer/entity/HoglinRenderer/getTextureLocation (Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/client/renderer/entity/HoglinRenderer/m_5936_ (Lnet/minecraft/world/entity/monster/hoglin/Hoglin;)Z net/minecraft/client/renderer/entity/HoglinRenderer/isShaking (Lnet/minecraft/world/entity/monster/hoglin/Hoglin;)Z +MD: net/minecraft/client/renderer/entity/HoglinRenderer/m_5936_ (Lnet/minecraft/world/entity/LivingEntity;)Z net/minecraft/client/renderer/entity/HoglinRenderer/isShaking (Lnet/minecraft/world/entity/LivingEntity;)Z +MD: net/minecraft/client/renderer/entity/HorseRenderer/ ()V net/minecraft/client/renderer/entity/HorseRenderer/ ()V +MD: net/minecraft/client/renderer/entity/HorseRenderer/ (Lnet/minecraft/client/renderer/entity/EntityRendererProvider$Context;)V net/minecraft/client/renderer/entity/HorseRenderer/ (Lnet/minecraft/client/renderer/entity/EntityRendererProvider$Context;)V +MD: net/minecraft/client/renderer/entity/HorseRenderer/m_114873_ (Ljava/util/EnumMap;)V net/minecraft/client/renderer/entity/HorseRenderer/lambda$static$0 (Ljava/util/EnumMap;)V +MD: net/minecraft/client/renderer/entity/HorseRenderer/m_5478_ (Lnet/minecraft/world/entity/animal/horse/Horse;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/client/renderer/entity/HorseRenderer/getTextureLocation (Lnet/minecraft/world/entity/animal/horse/Horse;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/client/renderer/entity/HorseRenderer/m_5478_ (Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/client/renderer/entity/HorseRenderer/getTextureLocation (Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/client/renderer/entity/HumanoidMobRenderer/ (Lnet/minecraft/client/renderer/entity/EntityRendererProvider$Context;Lnet/minecraft/client/model/HumanoidModel;FFFF)V net/minecraft/client/renderer/entity/HumanoidMobRenderer/ (Lnet/minecraft/client/renderer/entity/EntityRendererProvider$Context;Lnet/minecraft/client/model/HumanoidModel;FFFF)V +MD: net/minecraft/client/renderer/entity/HumanoidMobRenderer/ (Lnet/minecraft/client/renderer/entity/EntityRendererProvider$Context;Lnet/minecraft/client/model/HumanoidModel;F)V net/minecraft/client/renderer/entity/HumanoidMobRenderer/ (Lnet/minecraft/client/renderer/entity/EntityRendererProvider$Context;Lnet/minecraft/client/model/HumanoidModel;F)V +MD: net/minecraft/client/renderer/entity/HuskRenderer/ ()V net/minecraft/client/renderer/entity/HuskRenderer/ ()V +MD: net/minecraft/client/renderer/entity/HuskRenderer/ (Lnet/minecraft/client/renderer/entity/EntityRendererProvider$Context;)V net/minecraft/client/renderer/entity/HuskRenderer/ (Lnet/minecraft/client/renderer/entity/EntityRendererProvider$Context;)V +MD: net/minecraft/client/renderer/entity/HuskRenderer/m_5478_ (Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/client/renderer/entity/HuskRenderer/getTextureLocation (Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/client/renderer/entity/HuskRenderer/m_5478_ (Lnet/minecraft/world/entity/monster/Zombie;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/client/renderer/entity/HuskRenderer/getTextureLocation (Lnet/minecraft/world/entity/monster/Zombie;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/client/renderer/entity/HuskRenderer/m_7546_ (Lnet/minecraft/world/entity/LivingEntity;Lcom/mojang/blaze3d/vertex/PoseStack;F)V net/minecraft/client/renderer/entity/HuskRenderer/scale (Lnet/minecraft/world/entity/LivingEntity;Lcom/mojang/blaze3d/vertex/PoseStack;F)V +MD: net/minecraft/client/renderer/entity/HuskRenderer/m_7546_ (Lnet/minecraft/world/entity/monster/Zombie;Lcom/mojang/blaze3d/vertex/PoseStack;F)V net/minecraft/client/renderer/entity/HuskRenderer/scale (Lnet/minecraft/world/entity/monster/Zombie;Lcom/mojang/blaze3d/vertex/PoseStack;F)V +MD: net/minecraft/client/renderer/entity/IllagerRenderer/ (Lnet/minecraft/client/renderer/entity/EntityRendererProvider$Context;Lnet/minecraft/client/model/IllagerModel;F)V net/minecraft/client/renderer/entity/IllagerRenderer/ (Lnet/minecraft/client/renderer/entity/EntityRendererProvider$Context;Lnet/minecraft/client/model/IllagerModel;F)V +MD: net/minecraft/client/renderer/entity/IllagerRenderer/m_7546_ (Lnet/minecraft/world/entity/LivingEntity;Lcom/mojang/blaze3d/vertex/PoseStack;F)V net/minecraft/client/renderer/entity/IllagerRenderer/scale (Lnet/minecraft/world/entity/LivingEntity;Lcom/mojang/blaze3d/vertex/PoseStack;F)V +MD: net/minecraft/client/renderer/entity/IllagerRenderer/m_7546_ (Lnet/minecraft/world/entity/monster/AbstractIllager;Lcom/mojang/blaze3d/vertex/PoseStack;F)V net/minecraft/client/renderer/entity/IllagerRenderer/scale (Lnet/minecraft/world/entity/monster/AbstractIllager;Lcom/mojang/blaze3d/vertex/PoseStack;F)V +MD: net/minecraft/client/renderer/entity/IllusionerRenderer/ ()V net/minecraft/client/renderer/entity/IllusionerRenderer/ ()V +MD: net/minecraft/client/renderer/entity/IllusionerRenderer/ (Lnet/minecraft/client/renderer/entity/EntityRendererProvider$Context;)V net/minecraft/client/renderer/entity/IllusionerRenderer/ (Lnet/minecraft/client/renderer/entity/EntityRendererProvider$Context;)V +MD: net/minecraft/client/renderer/entity/IllusionerRenderer/m_5478_ (Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/client/renderer/entity/IllusionerRenderer/getTextureLocation (Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/client/renderer/entity/IllusionerRenderer/m_5478_ (Lnet/minecraft/world/entity/monster/Illusioner;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/client/renderer/entity/IllusionerRenderer/getTextureLocation (Lnet/minecraft/world/entity/monster/Illusioner;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/client/renderer/entity/IllusionerRenderer/m_5933_ (Lnet/minecraft/world/entity/monster/Illusioner;)Z net/minecraft/client/renderer/entity/IllusionerRenderer/isBodyVisible (Lnet/minecraft/world/entity/monster/Illusioner;)Z +MD: net/minecraft/client/renderer/entity/IllusionerRenderer/m_5933_ (Lnet/minecraft/world/entity/LivingEntity;)Z net/minecraft/client/renderer/entity/IllusionerRenderer/isBodyVisible (Lnet/minecraft/world/entity/LivingEntity;)Z +MD: net/minecraft/client/renderer/entity/IllusionerRenderer/m_7392_ (Lnet/minecraft/world/entity/Mob;FFLcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;I)V net/minecraft/client/renderer/entity/IllusionerRenderer/render (Lnet/minecraft/world/entity/Mob;FFLcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;I)V +MD: net/minecraft/client/renderer/entity/IllusionerRenderer/m_7392_ (Lnet/minecraft/world/entity/Entity;FFLcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;I)V net/minecraft/client/renderer/entity/IllusionerRenderer/render (Lnet/minecraft/world/entity/Entity;FFLcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;I)V +MD: net/minecraft/client/renderer/entity/IllusionerRenderer/m_7392_ (Lnet/minecraft/world/entity/monster/Illusioner;FFLcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;I)V net/minecraft/client/renderer/entity/IllusionerRenderer/render (Lnet/minecraft/world/entity/monster/Illusioner;FFLcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;I)V +MD: net/minecraft/client/renderer/entity/IllusionerRenderer/m_7392_ (Lnet/minecraft/world/entity/LivingEntity;FFLcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;I)V net/minecraft/client/renderer/entity/IllusionerRenderer/render (Lnet/minecraft/world/entity/LivingEntity;FFLcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;I)V +MD: net/minecraft/client/renderer/entity/IllusionerRenderer$1/ (Lnet/minecraft/client/renderer/entity/IllusionerRenderer;Lnet/minecraft/client/renderer/entity/RenderLayerParent;Lnet/minecraft/client/renderer/ItemInHandRenderer;)V net/minecraft/client/renderer/entity/IllusionerRenderer$1/ (Lnet/minecraft/client/renderer/entity/IllusionerRenderer;Lnet/minecraft/client/renderer/entity/RenderLayerParent;Lnet/minecraft/client/renderer/ItemInHandRenderer;)V +MD: net/minecraft/client/renderer/entity/IllusionerRenderer$1/m_6494_ (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;ILnet/minecraft/world/entity/Entity;FFFFFF)V net/minecraft/client/renderer/entity/IllusionerRenderer$1/render (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;ILnet/minecraft/world/entity/Entity;FFFFFF)V +MD: net/minecraft/client/renderer/entity/IllusionerRenderer$1/m_6494_ (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;ILnet/minecraft/world/entity/monster/Illusioner;FFFFFF)V net/minecraft/client/renderer/entity/IllusionerRenderer$1/render (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;ILnet/minecraft/world/entity/monster/Illusioner;FFFFFF)V +MD: net/minecraft/client/renderer/entity/IllusionerRenderer$1/m_6494_ (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;ILnet/minecraft/world/entity/LivingEntity;FFFFFF)V net/minecraft/client/renderer/entity/IllusionerRenderer$1/render (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;ILnet/minecraft/world/entity/LivingEntity;FFFFFF)V +MD: net/minecraft/client/renderer/entity/IronGolemRenderer/ ()V net/minecraft/client/renderer/entity/IronGolemRenderer/ ()V +MD: net/minecraft/client/renderer/entity/IronGolemRenderer/ (Lnet/minecraft/client/renderer/entity/EntityRendererProvider$Context;)V net/minecraft/client/renderer/entity/IronGolemRenderer/ (Lnet/minecraft/client/renderer/entity/EntityRendererProvider$Context;)V +MD: net/minecraft/client/renderer/entity/IronGolemRenderer/m_5478_ (Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/client/renderer/entity/IronGolemRenderer/getTextureLocation (Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/client/renderer/entity/IronGolemRenderer/m_5478_ (Lnet/minecraft/world/entity/animal/IronGolem;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/client/renderer/entity/IronGolemRenderer/getTextureLocation (Lnet/minecraft/world/entity/animal/IronGolem;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/client/renderer/entity/IronGolemRenderer/m_7523_ (Lnet/minecraft/world/entity/LivingEntity;Lcom/mojang/blaze3d/vertex/PoseStack;FFF)V net/minecraft/client/renderer/entity/IronGolemRenderer/setupRotations (Lnet/minecraft/world/entity/LivingEntity;Lcom/mojang/blaze3d/vertex/PoseStack;FFF)V +MD: net/minecraft/client/renderer/entity/IronGolemRenderer/m_7523_ (Lnet/minecraft/world/entity/animal/IronGolem;Lcom/mojang/blaze3d/vertex/PoseStack;FFF)V net/minecraft/client/renderer/entity/IronGolemRenderer/setupRotations (Lnet/minecraft/world/entity/animal/IronGolem;Lcom/mojang/blaze3d/vertex/PoseStack;FFF)V +MD: net/minecraft/client/renderer/entity/ItemEntityRenderer/ (Lnet/minecraft/client/renderer/entity/EntityRendererProvider$Context;)V net/minecraft/client/renderer/entity/ItemEntityRenderer/ (Lnet/minecraft/client/renderer/entity/EntityRendererProvider$Context;)V +MD: net/minecraft/client/renderer/entity/ItemEntityRenderer/m_115042_ (Lnet/minecraft/world/item/ItemStack;)I net/minecraft/client/renderer/entity/ItemEntityRenderer/getRenderAmount (Lnet/minecraft/world/item/ItemStack;)I +MD: net/minecraft/client/renderer/entity/ItemEntityRenderer/m_5478_ (Lnet/minecraft/world/entity/item/ItemEntity;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/client/renderer/entity/ItemEntityRenderer/getTextureLocation (Lnet/minecraft/world/entity/item/ItemEntity;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/client/renderer/entity/ItemEntityRenderer/m_5478_ (Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/client/renderer/entity/ItemEntityRenderer/getTextureLocation (Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/client/renderer/entity/ItemEntityRenderer/m_7392_ (Lnet/minecraft/world/entity/Entity;FFLcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;I)V net/minecraft/client/renderer/entity/ItemEntityRenderer/render (Lnet/minecraft/world/entity/Entity;FFLcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;I)V +MD: net/minecraft/client/renderer/entity/ItemEntityRenderer/m_7392_ (Lnet/minecraft/world/entity/item/ItemEntity;FFLcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;I)V net/minecraft/client/renderer/entity/ItemEntityRenderer/render (Lnet/minecraft/world/entity/item/ItemEntity;FFLcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;I)V +MD: net/minecraft/client/renderer/entity/ItemFrameRenderer/ ()V net/minecraft/client/renderer/entity/ItemFrameRenderer/ ()V +MD: net/minecraft/client/renderer/entity/ItemFrameRenderer/ (Lnet/minecraft/client/renderer/entity/EntityRendererProvider$Context;)V net/minecraft/client/renderer/entity/ItemFrameRenderer/ (Lnet/minecraft/client/renderer/entity/EntityRendererProvider$Context;)V +MD: net/minecraft/client/renderer/entity/ItemFrameRenderer/m_174208_ (Lnet/minecraft/world/entity/decoration/ItemFrame;II)I net/minecraft/client/renderer/entity/ItemFrameRenderer/getLightVal (Lnet/minecraft/world/entity/decoration/ItemFrame;II)I +MD: net/minecraft/client/renderer/entity/ItemFrameRenderer/m_174212_ (Lnet/minecraft/world/entity/decoration/ItemFrame;Lnet/minecraft/world/item/ItemStack;)Lnet/minecraft/client/resources/model/ModelResourceLocation; net/minecraft/client/renderer/entity/ItemFrameRenderer/getFrameModelResourceLoc (Lnet/minecraft/world/entity/decoration/ItemFrame;Lnet/minecraft/world/item/ItemStack;)Lnet/minecraft/client/resources/model/ModelResourceLocation; +MD: net/minecraft/client/renderer/entity/ItemFrameRenderer/m_5478_ (Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/client/renderer/entity/ItemFrameRenderer/getTextureLocation (Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/client/renderer/entity/ItemFrameRenderer/m_5478_ (Lnet/minecraft/world/entity/decoration/ItemFrame;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/client/renderer/entity/ItemFrameRenderer/getTextureLocation (Lnet/minecraft/world/entity/decoration/ItemFrame;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/client/renderer/entity/ItemFrameRenderer/m_6086_ (Lnet/minecraft/world/entity/Entity;Lnet/minecraft/core/BlockPos;)I net/minecraft/client/renderer/entity/ItemFrameRenderer/getBlockLightLevel (Lnet/minecraft/world/entity/Entity;Lnet/minecraft/core/BlockPos;)I +MD: net/minecraft/client/renderer/entity/ItemFrameRenderer/m_6086_ (Lnet/minecraft/world/entity/decoration/ItemFrame;Lnet/minecraft/core/BlockPos;)I net/minecraft/client/renderer/entity/ItemFrameRenderer/getBlockLightLevel (Lnet/minecraft/world/entity/decoration/ItemFrame;Lnet/minecraft/core/BlockPos;)I +MD: net/minecraft/client/renderer/entity/ItemFrameRenderer/m_6512_ (Lnet/minecraft/world/entity/decoration/ItemFrame;)Z net/minecraft/client/renderer/entity/ItemFrameRenderer/shouldShowName (Lnet/minecraft/world/entity/decoration/ItemFrame;)Z +MD: net/minecraft/client/renderer/entity/ItemFrameRenderer/m_6512_ (Lnet/minecraft/world/entity/Entity;)Z net/minecraft/client/renderer/entity/ItemFrameRenderer/shouldShowName (Lnet/minecraft/world/entity/Entity;)Z +MD: net/minecraft/client/renderer/entity/ItemFrameRenderer/m_7392_ (Lnet/minecraft/world/entity/Entity;FFLcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;I)V net/minecraft/client/renderer/entity/ItemFrameRenderer/render (Lnet/minecraft/world/entity/Entity;FFLcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;I)V +MD: net/minecraft/client/renderer/entity/ItemFrameRenderer/m_7392_ (Lnet/minecraft/world/entity/decoration/ItemFrame;FFLcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;I)V net/minecraft/client/renderer/entity/ItemFrameRenderer/render (Lnet/minecraft/world/entity/decoration/ItemFrame;FFLcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;I)V +MD: net/minecraft/client/renderer/entity/ItemFrameRenderer/m_7649_ (Lnet/minecraft/world/entity/decoration/ItemFrame;Lnet/minecraft/network/chat/Component;Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;I)V net/minecraft/client/renderer/entity/ItemFrameRenderer/renderNameTag (Lnet/minecraft/world/entity/decoration/ItemFrame;Lnet/minecraft/network/chat/Component;Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;I)V +MD: net/minecraft/client/renderer/entity/ItemFrameRenderer/m_7649_ (Lnet/minecraft/world/entity/Entity;Lnet/minecraft/network/chat/Component;Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;I)V net/minecraft/client/renderer/entity/ItemFrameRenderer/renderNameTag (Lnet/minecraft/world/entity/Entity;Lnet/minecraft/network/chat/Component;Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;I)V +MD: net/minecraft/client/renderer/entity/ItemFrameRenderer/m_7860_ (Lnet/minecraft/world/entity/Entity;F)Lnet/minecraft/world/phys/Vec3; net/minecraft/client/renderer/entity/ItemFrameRenderer/getRenderOffset (Lnet/minecraft/world/entity/Entity;F)Lnet/minecraft/world/phys/Vec3; +MD: net/minecraft/client/renderer/entity/ItemFrameRenderer/m_7860_ (Lnet/minecraft/world/entity/decoration/ItemFrame;F)Lnet/minecraft/world/phys/Vec3; net/minecraft/client/renderer/entity/ItemFrameRenderer/getRenderOffset (Lnet/minecraft/world/entity/decoration/ItemFrame;F)Lnet/minecraft/world/phys/Vec3; +MD: net/minecraft/client/renderer/entity/ItemRenderer/ ()V net/minecraft/client/renderer/entity/ItemRenderer/ ()V +MD: net/minecraft/client/renderer/entity/ItemRenderer/ (Lnet/minecraft/client/Minecraft;Lnet/minecraft/client/renderer/texture/TextureManager;Lnet/minecraft/client/resources/model/ModelManager;Lnet/minecraft/client/color/item/ItemColors;Lnet/minecraft/client/renderer/BlockEntityWithoutLevelRenderer;)V net/minecraft/client/renderer/entity/ItemRenderer/ (Lnet/minecraft/client/Minecraft;Lnet/minecraft/client/renderer/texture/TextureManager;Lnet/minecraft/client/resources/model/ModelManager;Lnet/minecraft/client/color/item/ItemColors;Lnet/minecraft/client/renderer/BlockEntityWithoutLevelRenderer;)V +MD: net/minecraft/client/renderer/entity/ItemRenderer/m_115103_ ()Lnet/minecraft/client/renderer/ItemModelShaper; net/minecraft/client/renderer/entity/ItemRenderer/getItemModelShaper ()Lnet/minecraft/client/renderer/ItemModelShaper; +MD: net/minecraft/client/renderer/entity/ItemRenderer/m_115143_ (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/item/ItemDisplayContext;ZLcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;IILnet/minecraft/client/resources/model/BakedModel;)V net/minecraft/client/renderer/entity/ItemRenderer/render (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/item/ItemDisplayContext;ZLcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;IILnet/minecraft/client/resources/model/BakedModel;)V +MD: net/minecraft/client/renderer/entity/ItemRenderer/m_115162_ (Lcom/mojang/blaze3d/vertex/PoseStack;Lcom/mojang/blaze3d/vertex/VertexConsumer;Ljava/util/List;Lnet/minecraft/world/item/ItemStack;II)V net/minecraft/client/renderer/entity/ItemRenderer/renderQuadList (Lcom/mojang/blaze3d/vertex/PoseStack;Lcom/mojang/blaze3d/vertex/VertexConsumer;Ljava/util/List;Lnet/minecraft/world/item/ItemStack;II)V +MD: net/minecraft/client/renderer/entity/ItemRenderer/m_115180_ (Lnet/minecraft/client/renderer/MultiBufferSource;Lnet/minecraft/client/renderer/RenderType;Lcom/mojang/blaze3d/vertex/PoseStack$Pose;)Lcom/mojang/blaze3d/vertex/VertexConsumer; net/minecraft/client/renderer/entity/ItemRenderer/getCompassFoilBuffer (Lnet/minecraft/client/renderer/MultiBufferSource;Lnet/minecraft/client/renderer/RenderType;Lcom/mojang/blaze3d/vertex/PoseStack$Pose;)Lcom/mojang/blaze3d/vertex/VertexConsumer; +MD: net/minecraft/client/renderer/entity/ItemRenderer/m_115184_ (Lnet/minecraft/client/renderer/MultiBufferSource;Lnet/minecraft/client/renderer/RenderType;ZZ)Lcom/mojang/blaze3d/vertex/VertexConsumer; net/minecraft/client/renderer/entity/ItemRenderer/getArmorFoilBuffer (Lnet/minecraft/client/renderer/MultiBufferSource;Lnet/minecraft/client/renderer/RenderType;ZZ)Lcom/mojang/blaze3d/vertex/VertexConsumer; +MD: net/minecraft/client/renderer/entity/ItemRenderer/m_115189_ (Lnet/minecraft/client/resources/model/BakedModel;Lnet/minecraft/world/item/ItemStack;IILcom/mojang/blaze3d/vertex/PoseStack;Lcom/mojang/blaze3d/vertex/VertexConsumer;)V net/minecraft/client/renderer/entity/ItemRenderer/renderModelLists (Lnet/minecraft/client/resources/model/BakedModel;Lnet/minecraft/world/item/ItemStack;IILcom/mojang/blaze3d/vertex/PoseStack;Lcom/mojang/blaze3d/vertex/VertexConsumer;)V +MD: net/minecraft/client/renderer/entity/ItemRenderer/m_115207_ (Lnet/minecraft/client/renderer/MultiBufferSource;Lnet/minecraft/client/renderer/RenderType;Lcom/mojang/blaze3d/vertex/PoseStack$Pose;)Lcom/mojang/blaze3d/vertex/VertexConsumer; net/minecraft/client/renderer/entity/ItemRenderer/getCompassFoilBufferDirect (Lnet/minecraft/client/renderer/MultiBufferSource;Lnet/minecraft/client/renderer/RenderType;Lcom/mojang/blaze3d/vertex/PoseStack$Pose;)Lcom/mojang/blaze3d/vertex/VertexConsumer; +MD: net/minecraft/client/renderer/entity/ItemRenderer/m_115211_ (Lnet/minecraft/client/renderer/MultiBufferSource;Lnet/minecraft/client/renderer/RenderType;ZZ)Lcom/mojang/blaze3d/vertex/VertexConsumer; net/minecraft/client/renderer/entity/ItemRenderer/getFoilBuffer (Lnet/minecraft/client/renderer/MultiBufferSource;Lnet/minecraft/client/renderer/RenderType;ZZ)Lcom/mojang/blaze3d/vertex/VertexConsumer; +MD: net/minecraft/client/renderer/entity/ItemRenderer/m_115222_ (Lnet/minecraft/client/renderer/MultiBufferSource;Lnet/minecraft/client/renderer/RenderType;ZZ)Lcom/mojang/blaze3d/vertex/VertexConsumer; net/minecraft/client/renderer/entity/ItemRenderer/getFoilBufferDirect (Lnet/minecraft/client/renderer/MultiBufferSource;Lnet/minecraft/client/renderer/RenderType;ZZ)Lcom/mojang/blaze3d/vertex/VertexConsumer; +MD: net/minecraft/client/renderer/entity/ItemRenderer/m_174264_ (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/level/Level;Lnet/minecraft/world/entity/LivingEntity;I)Lnet/minecraft/client/resources/model/BakedModel; net/minecraft/client/renderer/entity/ItemRenderer/getModel (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/level/Level;Lnet/minecraft/world/entity/LivingEntity;I)Lnet/minecraft/client/resources/model/BakedModel; +MD: net/minecraft/client/renderer/entity/ItemRenderer/m_269128_ (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/item/ItemDisplayContext;IILcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;Lnet/minecraft/world/level/Level;I)V net/minecraft/client/renderer/entity/ItemRenderer/renderStatic (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/item/ItemDisplayContext;IILcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;Lnet/minecraft/world/level/Level;I)V +MD: net/minecraft/client/renderer/entity/ItemRenderer/m_269491_ (Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/item/ItemDisplayContext;ZLcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;Lnet/minecraft/world/level/Level;III)V net/minecraft/client/renderer/entity/ItemRenderer/renderStatic (Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/item/ItemDisplayContext;ZLcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;Lnet/minecraft/world/level/Level;III)V +MD: net/minecraft/client/renderer/entity/ItemRenderer/m_285827_ (Lnet/minecraft/world/item/ItemStack;)Z net/minecraft/client/renderer/entity/ItemRenderer/hasAnimatedTexture (Lnet/minecraft/world/item/ItemStack;)Z +MD: net/minecraft/client/renderer/entity/ItemRenderer/m_6213_ (Lnet/minecraft/server/packs/resources/ResourceManager;)V net/minecraft/client/renderer/entity/ItemRenderer/onResourceManagerReload (Lnet/minecraft/server/packs/resources/ResourceManager;)V +MD: net/minecraft/client/renderer/entity/LeashKnotRenderer/ ()V net/minecraft/client/renderer/entity/LeashKnotRenderer/ ()V +MD: net/minecraft/client/renderer/entity/LeashKnotRenderer/ (Lnet/minecraft/client/renderer/entity/EntityRendererProvider$Context;)V net/minecraft/client/renderer/entity/LeashKnotRenderer/ (Lnet/minecraft/client/renderer/entity/EntityRendererProvider$Context;)V +MD: net/minecraft/client/renderer/entity/LeashKnotRenderer/m_5478_ (Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/client/renderer/entity/LeashKnotRenderer/getTextureLocation (Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/client/renderer/entity/LeashKnotRenderer/m_5478_ (Lnet/minecraft/world/entity/decoration/LeashFenceKnotEntity;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/client/renderer/entity/LeashKnotRenderer/getTextureLocation (Lnet/minecraft/world/entity/decoration/LeashFenceKnotEntity;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/client/renderer/entity/LeashKnotRenderer/m_7392_ (Lnet/minecraft/world/entity/Entity;FFLcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;I)V net/minecraft/client/renderer/entity/LeashKnotRenderer/render (Lnet/minecraft/world/entity/Entity;FFLcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;I)V +MD: net/minecraft/client/renderer/entity/LeashKnotRenderer/m_7392_ (Lnet/minecraft/world/entity/decoration/LeashFenceKnotEntity;FFLcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;I)V net/minecraft/client/renderer/entity/LeashKnotRenderer/render (Lnet/minecraft/world/entity/decoration/LeashFenceKnotEntity;FFLcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;I)V +MD: net/minecraft/client/renderer/entity/LightningBoltRenderer/ (Lnet/minecraft/client/renderer/entity/EntityRendererProvider$Context;)V net/minecraft/client/renderer/entity/LightningBoltRenderer/ (Lnet/minecraft/client/renderer/entity/EntityRendererProvider$Context;)V +MD: net/minecraft/client/renderer/entity/LightningBoltRenderer/m_115272_ (Lorg/joml/Matrix4f;Lcom/mojang/blaze3d/vertex/VertexConsumer;FFIFFFFFFFZZZZ)V net/minecraft/client/renderer/entity/LightningBoltRenderer/quad (Lorg/joml/Matrix4f;Lcom/mojang/blaze3d/vertex/VertexConsumer;FFIFFFFFFFZZZZ)V +MD: net/minecraft/client/renderer/entity/LightningBoltRenderer/m_5478_ (Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/client/renderer/entity/LightningBoltRenderer/getTextureLocation (Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/client/renderer/entity/LightningBoltRenderer/m_5478_ (Lnet/minecraft/world/entity/LightningBolt;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/client/renderer/entity/LightningBoltRenderer/getTextureLocation (Lnet/minecraft/world/entity/LightningBolt;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/client/renderer/entity/LightningBoltRenderer/m_7392_ (Lnet/minecraft/world/entity/LightningBolt;FFLcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;I)V net/minecraft/client/renderer/entity/LightningBoltRenderer/render (Lnet/minecraft/world/entity/LightningBolt;FFLcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;I)V +MD: net/minecraft/client/renderer/entity/LightningBoltRenderer/m_7392_ (Lnet/minecraft/world/entity/Entity;FFLcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;I)V net/minecraft/client/renderer/entity/LightningBoltRenderer/render (Lnet/minecraft/world/entity/Entity;FFLcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;I)V +MD: net/minecraft/client/renderer/entity/LivingEntityRenderer/ ()V net/minecraft/client/renderer/entity/LivingEntityRenderer/ ()V +MD: net/minecraft/client/renderer/entity/LivingEntityRenderer/ (Lnet/minecraft/client/renderer/entity/EntityRendererProvider$Context;Lnet/minecraft/client/model/EntityModel;F)V net/minecraft/client/renderer/entity/LivingEntityRenderer/ (Lnet/minecraft/client/renderer/entity/EntityRendererProvider$Context;Lnet/minecraft/client/model/EntityModel;F)V +MD: net/minecraft/client/renderer/entity/LivingEntityRenderer/m_115326_ (Lnet/minecraft/client/renderer/entity/layers/RenderLayer;)Z net/minecraft/client/renderer/entity/LivingEntityRenderer/addLayer (Lnet/minecraft/client/renderer/entity/layers/RenderLayer;)Z +MD: net/minecraft/client/renderer/entity/LivingEntityRenderer/m_115328_ (Lnet/minecraft/core/Direction;)F net/minecraft/client/renderer/entity/LivingEntityRenderer/sleepDirectionToRotation (Lnet/minecraft/core/Direction;)F +MD: net/minecraft/client/renderer/entity/LivingEntityRenderer/m_115338_ (Lnet/minecraft/world/entity/LivingEntity;F)I net/minecraft/client/renderer/entity/LivingEntityRenderer/getOverlayCoords (Lnet/minecraft/world/entity/LivingEntity;F)I +MD: net/minecraft/client/renderer/entity/LivingEntityRenderer/m_115342_ (Lnet/minecraft/world/entity/LivingEntity;F)F net/minecraft/client/renderer/entity/LivingEntityRenderer/getAttackAnim (Lnet/minecraft/world/entity/LivingEntity;F)F +MD: net/minecraft/client/renderer/entity/LivingEntityRenderer/m_194453_ (Lnet/minecraft/world/entity/LivingEntity;)Z net/minecraft/client/renderer/entity/LivingEntityRenderer/isEntityUpsideDown (Lnet/minecraft/world/entity/LivingEntity;)Z +MD: net/minecraft/client/renderer/entity/LivingEntityRenderer/m_5933_ (Lnet/minecraft/world/entity/LivingEntity;)Z net/minecraft/client/renderer/entity/LivingEntityRenderer/isBodyVisible (Lnet/minecraft/world/entity/LivingEntity;)Z +MD: net/minecraft/client/renderer/entity/LivingEntityRenderer/m_5936_ (Lnet/minecraft/world/entity/LivingEntity;)Z net/minecraft/client/renderer/entity/LivingEntityRenderer/isShaking (Lnet/minecraft/world/entity/LivingEntity;)Z +MD: net/minecraft/client/renderer/entity/LivingEntityRenderer/m_6441_ (Lnet/minecraft/world/entity/LivingEntity;)F net/minecraft/client/renderer/entity/LivingEntityRenderer/getFlipDegrees (Lnet/minecraft/world/entity/LivingEntity;)F +MD: net/minecraft/client/renderer/entity/LivingEntityRenderer/m_6512_ (Lnet/minecraft/world/entity/Entity;)Z net/minecraft/client/renderer/entity/LivingEntityRenderer/shouldShowName (Lnet/minecraft/world/entity/Entity;)Z +MD: net/minecraft/client/renderer/entity/LivingEntityRenderer/m_6512_ (Lnet/minecraft/world/entity/LivingEntity;)Z net/minecraft/client/renderer/entity/LivingEntityRenderer/shouldShowName (Lnet/minecraft/world/entity/LivingEntity;)Z +MD: net/minecraft/client/renderer/entity/LivingEntityRenderer/m_6930_ (Lnet/minecraft/world/entity/LivingEntity;F)F net/minecraft/client/renderer/entity/LivingEntityRenderer/getBob (Lnet/minecraft/world/entity/LivingEntity;F)F +MD: net/minecraft/client/renderer/entity/LivingEntityRenderer/m_6931_ (Lnet/minecraft/world/entity/LivingEntity;F)F net/minecraft/client/renderer/entity/LivingEntityRenderer/getWhiteOverlayProgress (Lnet/minecraft/world/entity/LivingEntity;F)F +MD: net/minecraft/client/renderer/entity/LivingEntityRenderer/m_7200_ ()Lnet/minecraft/client/model/EntityModel; net/minecraft/client/renderer/entity/LivingEntityRenderer/getModel ()Lnet/minecraft/client/model/EntityModel; +MD: net/minecraft/client/renderer/entity/LivingEntityRenderer/m_7225_ (Lnet/minecraft/world/entity/LivingEntity;ZZZ)Lnet/minecraft/client/renderer/RenderType; net/minecraft/client/renderer/entity/LivingEntityRenderer/getRenderType (Lnet/minecraft/world/entity/LivingEntity;ZZZ)Lnet/minecraft/client/renderer/RenderType; +MD: net/minecraft/client/renderer/entity/LivingEntityRenderer/m_7392_ (Lnet/minecraft/world/entity/Entity;FFLcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;I)V net/minecraft/client/renderer/entity/LivingEntityRenderer/render (Lnet/minecraft/world/entity/Entity;FFLcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;I)V +MD: net/minecraft/client/renderer/entity/LivingEntityRenderer/m_7392_ (Lnet/minecraft/world/entity/LivingEntity;FFLcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;I)V net/minecraft/client/renderer/entity/LivingEntityRenderer/render (Lnet/minecraft/world/entity/LivingEntity;FFLcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;I)V +MD: net/minecraft/client/renderer/entity/LivingEntityRenderer/m_7523_ (Lnet/minecraft/world/entity/LivingEntity;Lcom/mojang/blaze3d/vertex/PoseStack;FFF)V net/minecraft/client/renderer/entity/LivingEntityRenderer/setupRotations (Lnet/minecraft/world/entity/LivingEntity;Lcom/mojang/blaze3d/vertex/PoseStack;FFF)V +MD: net/minecraft/client/renderer/entity/LivingEntityRenderer/m_7546_ (Lnet/minecraft/world/entity/LivingEntity;Lcom/mojang/blaze3d/vertex/PoseStack;F)V net/minecraft/client/renderer/entity/LivingEntityRenderer/scale (Lnet/minecraft/world/entity/LivingEntity;Lcom/mojang/blaze3d/vertex/PoseStack;F)V +MD: net/minecraft/client/renderer/entity/LivingEntityRenderer$1/ ()V net/minecraft/client/renderer/entity/LivingEntityRenderer$1/ ()V +MD: net/minecraft/client/renderer/entity/LlamaRenderer/ ()V net/minecraft/client/renderer/entity/LlamaRenderer/ ()V +MD: net/minecraft/client/renderer/entity/LlamaRenderer/ (Lnet/minecraft/client/renderer/entity/EntityRendererProvider$Context;Lnet/minecraft/client/model/geom/ModelLayerLocation;)V net/minecraft/client/renderer/entity/LlamaRenderer/ (Lnet/minecraft/client/renderer/entity/EntityRendererProvider$Context;Lnet/minecraft/client/model/geom/ModelLayerLocation;)V +MD: net/minecraft/client/renderer/entity/LlamaRenderer/m_5478_ (Lnet/minecraft/world/entity/animal/horse/Llama;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/client/renderer/entity/LlamaRenderer/getTextureLocation (Lnet/minecraft/world/entity/animal/horse/Llama;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/client/renderer/entity/LlamaRenderer/m_5478_ (Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/client/renderer/entity/LlamaRenderer/getTextureLocation (Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/client/renderer/entity/LlamaRenderer$1/ ()V net/minecraft/client/renderer/entity/LlamaRenderer$1/ ()V +MD: net/minecraft/client/renderer/entity/LlamaSpitRenderer/ ()V net/minecraft/client/renderer/entity/LlamaSpitRenderer/ ()V +MD: net/minecraft/client/renderer/entity/LlamaSpitRenderer/ (Lnet/minecraft/client/renderer/entity/EntityRendererProvider$Context;)V net/minecraft/client/renderer/entity/LlamaSpitRenderer/ (Lnet/minecraft/client/renderer/entity/EntityRendererProvider$Context;)V +MD: net/minecraft/client/renderer/entity/LlamaSpitRenderer/m_5478_ (Lnet/minecraft/world/entity/projectile/LlamaSpit;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/client/renderer/entity/LlamaSpitRenderer/getTextureLocation (Lnet/minecraft/world/entity/projectile/LlamaSpit;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/client/renderer/entity/LlamaSpitRenderer/m_5478_ (Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/client/renderer/entity/LlamaSpitRenderer/getTextureLocation (Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/client/renderer/entity/LlamaSpitRenderer/m_7392_ (Lnet/minecraft/world/entity/Entity;FFLcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;I)V net/minecraft/client/renderer/entity/LlamaSpitRenderer/render (Lnet/minecraft/world/entity/Entity;FFLcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;I)V +MD: net/minecraft/client/renderer/entity/LlamaSpitRenderer/m_7392_ (Lnet/minecraft/world/entity/projectile/LlamaSpit;FFLcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;I)V net/minecraft/client/renderer/entity/LlamaSpitRenderer/render (Lnet/minecraft/world/entity/projectile/LlamaSpit;FFLcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;I)V +MD: net/minecraft/client/renderer/entity/MagmaCubeRenderer/ ()V net/minecraft/client/renderer/entity/MagmaCubeRenderer/ ()V +MD: net/minecraft/client/renderer/entity/MagmaCubeRenderer/ (Lnet/minecraft/client/renderer/entity/EntityRendererProvider$Context;)V net/minecraft/client/renderer/entity/MagmaCubeRenderer/ (Lnet/minecraft/client/renderer/entity/EntityRendererProvider$Context;)V +MD: net/minecraft/client/renderer/entity/MagmaCubeRenderer/m_5478_ (Lnet/minecraft/world/entity/monster/MagmaCube;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/client/renderer/entity/MagmaCubeRenderer/getTextureLocation (Lnet/minecraft/world/entity/monster/MagmaCube;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/client/renderer/entity/MagmaCubeRenderer/m_5478_ (Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/client/renderer/entity/MagmaCubeRenderer/getTextureLocation (Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/client/renderer/entity/MagmaCubeRenderer/m_6086_ (Lnet/minecraft/world/entity/monster/MagmaCube;Lnet/minecraft/core/BlockPos;)I net/minecraft/client/renderer/entity/MagmaCubeRenderer/getBlockLightLevel (Lnet/minecraft/world/entity/monster/MagmaCube;Lnet/minecraft/core/BlockPos;)I +MD: net/minecraft/client/renderer/entity/MagmaCubeRenderer/m_6086_ (Lnet/minecraft/world/entity/Entity;Lnet/minecraft/core/BlockPos;)I net/minecraft/client/renderer/entity/MagmaCubeRenderer/getBlockLightLevel (Lnet/minecraft/world/entity/Entity;Lnet/minecraft/core/BlockPos;)I +MD: net/minecraft/client/renderer/entity/MagmaCubeRenderer/m_7392_ (Lnet/minecraft/world/entity/Mob;FFLcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;I)V net/minecraft/client/renderer/entity/MagmaCubeRenderer/render (Lnet/minecraft/world/entity/Mob;FFLcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;I)V +MD: net/minecraft/client/renderer/entity/MagmaCubeRenderer/m_7392_ (Lnet/minecraft/world/entity/Entity;FFLcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;I)V net/minecraft/client/renderer/entity/MagmaCubeRenderer/render (Lnet/minecraft/world/entity/Entity;FFLcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;I)V +MD: net/minecraft/client/renderer/entity/MagmaCubeRenderer/m_7392_ (Lnet/minecraft/world/entity/monster/MagmaCube;FFLcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;I)V net/minecraft/client/renderer/entity/MagmaCubeRenderer/render (Lnet/minecraft/world/entity/monster/MagmaCube;FFLcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;I)V +MD: net/minecraft/client/renderer/entity/MagmaCubeRenderer/m_7392_ (Lnet/minecraft/world/entity/LivingEntity;FFLcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;I)V net/minecraft/client/renderer/entity/MagmaCubeRenderer/render (Lnet/minecraft/world/entity/LivingEntity;FFLcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;I)V +MD: net/minecraft/client/renderer/entity/MagmaCubeRenderer/m_7546_ (Lnet/minecraft/world/entity/LivingEntity;Lcom/mojang/blaze3d/vertex/PoseStack;F)V net/minecraft/client/renderer/entity/MagmaCubeRenderer/scale (Lnet/minecraft/world/entity/LivingEntity;Lcom/mojang/blaze3d/vertex/PoseStack;F)V +MD: net/minecraft/client/renderer/entity/MagmaCubeRenderer/m_7546_ (Lnet/minecraft/world/entity/monster/MagmaCube;Lcom/mojang/blaze3d/vertex/PoseStack;F)V net/minecraft/client/renderer/entity/MagmaCubeRenderer/scale (Lnet/minecraft/world/entity/monster/MagmaCube;Lcom/mojang/blaze3d/vertex/PoseStack;F)V +MD: net/minecraft/client/renderer/entity/MinecartRenderer/ ()V net/minecraft/client/renderer/entity/MinecartRenderer/ ()V +MD: net/minecraft/client/renderer/entity/MinecartRenderer/ (Lnet/minecraft/client/renderer/entity/EntityRendererProvider$Context;Lnet/minecraft/client/model/geom/ModelLayerLocation;)V net/minecraft/client/renderer/entity/MinecartRenderer/ (Lnet/minecraft/client/renderer/entity/EntityRendererProvider$Context;Lnet/minecraft/client/model/geom/ModelLayerLocation;)V +MD: net/minecraft/client/renderer/entity/MinecartRenderer/m_5478_ (Lnet/minecraft/world/entity/vehicle/AbstractMinecart;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/client/renderer/entity/MinecartRenderer/getTextureLocation (Lnet/minecraft/world/entity/vehicle/AbstractMinecart;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/client/renderer/entity/MinecartRenderer/m_5478_ (Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/client/renderer/entity/MinecartRenderer/getTextureLocation (Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/client/renderer/entity/MinecartRenderer/m_7002_ (Lnet/minecraft/world/entity/vehicle/AbstractMinecart;FLnet/minecraft/world/level/block/state/BlockState;Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;I)V net/minecraft/client/renderer/entity/MinecartRenderer/renderMinecartContents (Lnet/minecraft/world/entity/vehicle/AbstractMinecart;FLnet/minecraft/world/level/block/state/BlockState;Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;I)V +MD: net/minecraft/client/renderer/entity/MinecartRenderer/m_7392_ (Lnet/minecraft/world/entity/vehicle/AbstractMinecart;FFLcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;I)V net/minecraft/client/renderer/entity/MinecartRenderer/render (Lnet/minecraft/world/entity/vehicle/AbstractMinecart;FFLcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;I)V +MD: net/minecraft/client/renderer/entity/MinecartRenderer/m_7392_ (Lnet/minecraft/world/entity/Entity;FFLcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;I)V net/minecraft/client/renderer/entity/MinecartRenderer/render (Lnet/minecraft/world/entity/Entity;FFLcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;I)V +MD: net/minecraft/client/renderer/entity/MobRenderer/ (Lnet/minecraft/client/renderer/entity/EntityRendererProvider$Context;Lnet/minecraft/client/model/EntityModel;F)V net/minecraft/client/renderer/entity/MobRenderer/ (Lnet/minecraft/client/renderer/entity/EntityRendererProvider$Context;Lnet/minecraft/client/model/EntityModel;F)V +MD: net/minecraft/client/renderer/entity/MobRenderer/m_115461_ (Lnet/minecraft/world/entity/Mob;FLcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;Lnet/minecraft/world/entity/Entity;)V net/minecraft/client/renderer/entity/MobRenderer/renderLeash (Lnet/minecraft/world/entity/Mob;FLcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;Lnet/minecraft/world/entity/Entity;)V +MD: net/minecraft/client/renderer/entity/MobRenderer/m_174307_ (Lcom/mojang/blaze3d/vertex/VertexConsumer;Lorg/joml/Matrix4f;FFFIIIIFFFFIZ)V net/minecraft/client/renderer/entity/MobRenderer/addVertexPair (Lcom/mojang/blaze3d/vertex/VertexConsumer;Lorg/joml/Matrix4f;FFFIIIIFFFFIZ)V +MD: net/minecraft/client/renderer/entity/MobRenderer/m_5523_ (Lnet/minecraft/world/entity/Mob;Lnet/minecraft/client/renderer/culling/Frustum;DDD)Z net/minecraft/client/renderer/entity/MobRenderer/shouldRender (Lnet/minecraft/world/entity/Mob;Lnet/minecraft/client/renderer/culling/Frustum;DDD)Z +MD: net/minecraft/client/renderer/entity/MobRenderer/m_5523_ (Lnet/minecraft/world/entity/Entity;Lnet/minecraft/client/renderer/culling/Frustum;DDD)Z net/minecraft/client/renderer/entity/MobRenderer/shouldRender (Lnet/minecraft/world/entity/Entity;Lnet/minecraft/client/renderer/culling/Frustum;DDD)Z +MD: net/minecraft/client/renderer/entity/MobRenderer/m_6512_ (Lnet/minecraft/world/entity/Mob;)Z net/minecraft/client/renderer/entity/MobRenderer/shouldShowName (Lnet/minecraft/world/entity/Mob;)Z +MD: net/minecraft/client/renderer/entity/MobRenderer/m_6512_ (Lnet/minecraft/world/entity/Entity;)Z net/minecraft/client/renderer/entity/MobRenderer/shouldShowName (Lnet/minecraft/world/entity/Entity;)Z +MD: net/minecraft/client/renderer/entity/MobRenderer/m_6512_ (Lnet/minecraft/world/entity/LivingEntity;)Z net/minecraft/client/renderer/entity/MobRenderer/shouldShowName (Lnet/minecraft/world/entity/LivingEntity;)Z +MD: net/minecraft/client/renderer/entity/MobRenderer/m_7392_ (Lnet/minecraft/world/entity/Mob;FFLcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;I)V net/minecraft/client/renderer/entity/MobRenderer/render (Lnet/minecraft/world/entity/Mob;FFLcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;I)V +MD: net/minecraft/client/renderer/entity/MobRenderer/m_7392_ (Lnet/minecraft/world/entity/Entity;FFLcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;I)V net/minecraft/client/renderer/entity/MobRenderer/render (Lnet/minecraft/world/entity/Entity;FFLcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;I)V +MD: net/minecraft/client/renderer/entity/MobRenderer/m_7392_ (Lnet/minecraft/world/entity/LivingEntity;FFLcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;I)V net/minecraft/client/renderer/entity/MobRenderer/render (Lnet/minecraft/world/entity/LivingEntity;FFLcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;I)V +MD: net/minecraft/client/renderer/entity/MushroomCowRenderer/ ()V net/minecraft/client/renderer/entity/MushroomCowRenderer/ ()V +MD: net/minecraft/client/renderer/entity/MushroomCowRenderer/ (Lnet/minecraft/client/renderer/entity/EntityRendererProvider$Context;)V net/minecraft/client/renderer/entity/MushroomCowRenderer/ (Lnet/minecraft/client/renderer/entity/EntityRendererProvider$Context;)V +MD: net/minecraft/client/renderer/entity/MushroomCowRenderer/m_115515_ (Ljava/util/HashMap;)V net/minecraft/client/renderer/entity/MushroomCowRenderer/lambda$static$0 (Ljava/util/HashMap;)V +MD: net/minecraft/client/renderer/entity/MushroomCowRenderer/m_5478_ (Lnet/minecraft/world/entity/animal/MushroomCow;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/client/renderer/entity/MushroomCowRenderer/getTextureLocation (Lnet/minecraft/world/entity/animal/MushroomCow;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/client/renderer/entity/MushroomCowRenderer/m_5478_ (Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/client/renderer/entity/MushroomCowRenderer/getTextureLocation (Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/client/renderer/entity/NoopRenderer/ (Lnet/minecraft/client/renderer/entity/EntityRendererProvider$Context;)V net/minecraft/client/renderer/entity/NoopRenderer/ (Lnet/minecraft/client/renderer/entity/EntityRendererProvider$Context;)V +MD: net/minecraft/client/renderer/entity/NoopRenderer/m_5478_ (Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/client/renderer/entity/NoopRenderer/getTextureLocation (Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/client/renderer/entity/OcelotRenderer/ ()V net/minecraft/client/renderer/entity/OcelotRenderer/ ()V +MD: net/minecraft/client/renderer/entity/OcelotRenderer/ (Lnet/minecraft/client/renderer/entity/EntityRendererProvider$Context;)V net/minecraft/client/renderer/entity/OcelotRenderer/ (Lnet/minecraft/client/renderer/entity/EntityRendererProvider$Context;)V +MD: net/minecraft/client/renderer/entity/OcelotRenderer/m_5478_ (Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/client/renderer/entity/OcelotRenderer/getTextureLocation (Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/client/renderer/entity/OcelotRenderer/m_5478_ (Lnet/minecraft/world/entity/animal/Ocelot;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/client/renderer/entity/OcelotRenderer/getTextureLocation (Lnet/minecraft/world/entity/animal/Ocelot;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/client/renderer/entity/PaintingRenderer/ (Lnet/minecraft/client/renderer/entity/EntityRendererProvider$Context;)V net/minecraft/client/renderer/entity/PaintingRenderer/ (Lnet/minecraft/client/renderer/entity/EntityRendererProvider$Context;)V +MD: net/minecraft/client/renderer/entity/PaintingRenderer/m_115558_ (Lcom/mojang/blaze3d/vertex/PoseStack;Lcom/mojang/blaze3d/vertex/VertexConsumer;Lnet/minecraft/world/entity/decoration/Painting;IILnet/minecraft/client/renderer/texture/TextureAtlasSprite;Lnet/minecraft/client/renderer/texture/TextureAtlasSprite;)V net/minecraft/client/renderer/entity/PaintingRenderer/renderPainting (Lcom/mojang/blaze3d/vertex/PoseStack;Lcom/mojang/blaze3d/vertex/VertexConsumer;Lnet/minecraft/world/entity/decoration/Painting;IILnet/minecraft/client/renderer/texture/TextureAtlasSprite;Lnet/minecraft/client/renderer/texture/TextureAtlasSprite;)V +MD: net/minecraft/client/renderer/entity/PaintingRenderer/m_253084_ (Lorg/joml/Matrix4f;Lorg/joml/Matrix3f;Lcom/mojang/blaze3d/vertex/VertexConsumer;FFFFFIIII)V net/minecraft/client/renderer/entity/PaintingRenderer/vertex (Lorg/joml/Matrix4f;Lorg/joml/Matrix3f;Lcom/mojang/blaze3d/vertex/VertexConsumer;FFFFFIIII)V +MD: net/minecraft/client/renderer/entity/PaintingRenderer/m_5478_ (Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/client/renderer/entity/PaintingRenderer/getTextureLocation (Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/client/renderer/entity/PaintingRenderer/m_5478_ (Lnet/minecraft/world/entity/decoration/Painting;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/client/renderer/entity/PaintingRenderer/getTextureLocation (Lnet/minecraft/world/entity/decoration/Painting;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/client/renderer/entity/PaintingRenderer/m_7392_ (Lnet/minecraft/world/entity/decoration/Painting;FFLcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;I)V net/minecraft/client/renderer/entity/PaintingRenderer/render (Lnet/minecraft/world/entity/decoration/Painting;FFLcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;I)V +MD: net/minecraft/client/renderer/entity/PaintingRenderer/m_7392_ (Lnet/minecraft/world/entity/Entity;FFLcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;I)V net/minecraft/client/renderer/entity/PaintingRenderer/render (Lnet/minecraft/world/entity/Entity;FFLcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;I)V +MD: net/minecraft/client/renderer/entity/PandaRenderer/ ()V net/minecraft/client/renderer/entity/PandaRenderer/ ()V +MD: net/minecraft/client/renderer/entity/PandaRenderer/ (Lnet/minecraft/client/renderer/entity/EntityRendererProvider$Context;)V net/minecraft/client/renderer/entity/PandaRenderer/ (Lnet/minecraft/client/renderer/entity/EntityRendererProvider$Context;)V +MD: net/minecraft/client/renderer/entity/PandaRenderer/m_115624_ (FFIFF)F net/minecraft/client/renderer/entity/PandaRenderer/getAngle (FFIFF)F +MD: net/minecraft/client/renderer/entity/PandaRenderer/m_115646_ (Ljava/util/EnumMap;)V net/minecraft/client/renderer/entity/PandaRenderer/lambda$static$0 (Ljava/util/EnumMap;)V +MD: net/minecraft/client/renderer/entity/PandaRenderer/m_5478_ (Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/client/renderer/entity/PandaRenderer/getTextureLocation (Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/client/renderer/entity/PandaRenderer/m_5478_ (Lnet/minecraft/world/entity/animal/Panda;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/client/renderer/entity/PandaRenderer/getTextureLocation (Lnet/minecraft/world/entity/animal/Panda;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/client/renderer/entity/PandaRenderer/m_7523_ (Lnet/minecraft/world/entity/LivingEntity;Lcom/mojang/blaze3d/vertex/PoseStack;FFF)V net/minecraft/client/renderer/entity/PandaRenderer/setupRotations (Lnet/minecraft/world/entity/LivingEntity;Lcom/mojang/blaze3d/vertex/PoseStack;FFF)V +MD: net/minecraft/client/renderer/entity/PandaRenderer/m_7523_ (Lnet/minecraft/world/entity/animal/Panda;Lcom/mojang/blaze3d/vertex/PoseStack;FFF)V net/minecraft/client/renderer/entity/PandaRenderer/setupRotations (Lnet/minecraft/world/entity/animal/Panda;Lcom/mojang/blaze3d/vertex/PoseStack;FFF)V +MD: net/minecraft/client/renderer/entity/ParrotRenderer/ ()V net/minecraft/client/renderer/entity/ParrotRenderer/ ()V +MD: net/minecraft/client/renderer/entity/ParrotRenderer/ (Lnet/minecraft/client/renderer/entity/EntityRendererProvider$Context;)V net/minecraft/client/renderer/entity/ParrotRenderer/ (Lnet/minecraft/client/renderer/entity/EntityRendererProvider$Context;)V +MD: net/minecraft/client/renderer/entity/ParrotRenderer/m_262360_ (Lnet/minecraft/world/entity/animal/Parrot$Variant;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/client/renderer/entity/ParrotRenderer/getVariantTexture (Lnet/minecraft/world/entity/animal/Parrot$Variant;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/client/renderer/entity/ParrotRenderer/m_5478_ (Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/client/renderer/entity/ParrotRenderer/getTextureLocation (Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/client/renderer/entity/ParrotRenderer/m_5478_ (Lnet/minecraft/world/entity/animal/Parrot;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/client/renderer/entity/ParrotRenderer/getTextureLocation (Lnet/minecraft/world/entity/animal/Parrot;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/client/renderer/entity/ParrotRenderer/m_6930_ (Lnet/minecraft/world/entity/animal/Parrot;F)F net/minecraft/client/renderer/entity/ParrotRenderer/getBob (Lnet/minecraft/world/entity/animal/Parrot;F)F +MD: net/minecraft/client/renderer/entity/ParrotRenderer/m_6930_ (Lnet/minecraft/world/entity/LivingEntity;F)F net/minecraft/client/renderer/entity/ParrotRenderer/getBob (Lnet/minecraft/world/entity/LivingEntity;F)F +MD: net/minecraft/client/renderer/entity/ParrotRenderer$1/ ()V net/minecraft/client/renderer/entity/ParrotRenderer$1/ ()V +MD: net/minecraft/client/renderer/entity/PhantomRenderer/ ()V net/minecraft/client/renderer/entity/PhantomRenderer/ ()V +MD: net/minecraft/client/renderer/entity/PhantomRenderer/ (Lnet/minecraft/client/renderer/entity/EntityRendererProvider$Context;)V net/minecraft/client/renderer/entity/PhantomRenderer/ (Lnet/minecraft/client/renderer/entity/EntityRendererProvider$Context;)V +MD: net/minecraft/client/renderer/entity/PhantomRenderer/m_5478_ (Lnet/minecraft/world/entity/monster/Phantom;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/client/renderer/entity/PhantomRenderer/getTextureLocation (Lnet/minecraft/world/entity/monster/Phantom;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/client/renderer/entity/PhantomRenderer/m_5478_ (Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/client/renderer/entity/PhantomRenderer/getTextureLocation (Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/client/renderer/entity/PhantomRenderer/m_7523_ (Lnet/minecraft/world/entity/LivingEntity;Lcom/mojang/blaze3d/vertex/PoseStack;FFF)V net/minecraft/client/renderer/entity/PhantomRenderer/setupRotations (Lnet/minecraft/world/entity/LivingEntity;Lcom/mojang/blaze3d/vertex/PoseStack;FFF)V +MD: net/minecraft/client/renderer/entity/PhantomRenderer/m_7523_ (Lnet/minecraft/world/entity/monster/Phantom;Lcom/mojang/blaze3d/vertex/PoseStack;FFF)V net/minecraft/client/renderer/entity/PhantomRenderer/setupRotations (Lnet/minecraft/world/entity/monster/Phantom;Lcom/mojang/blaze3d/vertex/PoseStack;FFF)V +MD: net/minecraft/client/renderer/entity/PhantomRenderer/m_7546_ (Lnet/minecraft/world/entity/LivingEntity;Lcom/mojang/blaze3d/vertex/PoseStack;F)V net/minecraft/client/renderer/entity/PhantomRenderer/scale (Lnet/minecraft/world/entity/LivingEntity;Lcom/mojang/blaze3d/vertex/PoseStack;F)V +MD: net/minecraft/client/renderer/entity/PhantomRenderer/m_7546_ (Lnet/minecraft/world/entity/monster/Phantom;Lcom/mojang/blaze3d/vertex/PoseStack;F)V net/minecraft/client/renderer/entity/PhantomRenderer/scale (Lnet/minecraft/world/entity/monster/Phantom;Lcom/mojang/blaze3d/vertex/PoseStack;F)V +MD: net/minecraft/client/renderer/entity/PigRenderer/ ()V net/minecraft/client/renderer/entity/PigRenderer/ ()V +MD: net/minecraft/client/renderer/entity/PigRenderer/ (Lnet/minecraft/client/renderer/entity/EntityRendererProvider$Context;)V net/minecraft/client/renderer/entity/PigRenderer/ (Lnet/minecraft/client/renderer/entity/EntityRendererProvider$Context;)V +MD: net/minecraft/client/renderer/entity/PigRenderer/m_5478_ (Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/client/renderer/entity/PigRenderer/getTextureLocation (Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/client/renderer/entity/PigRenderer/m_5478_ (Lnet/minecraft/world/entity/animal/Pig;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/client/renderer/entity/PigRenderer/getTextureLocation (Lnet/minecraft/world/entity/animal/Pig;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/client/renderer/entity/PiglinRenderer/ ()V net/minecraft/client/renderer/entity/PiglinRenderer/ ()V +MD: net/minecraft/client/renderer/entity/PiglinRenderer/ (Lnet/minecraft/client/renderer/entity/EntityRendererProvider$Context;Lnet/minecraft/client/model/geom/ModelLayerLocation;Lnet/minecraft/client/model/geom/ModelLayerLocation;Lnet/minecraft/client/model/geom/ModelLayerLocation;Z)V net/minecraft/client/renderer/entity/PiglinRenderer/ (Lnet/minecraft/client/renderer/entity/EntityRendererProvider$Context;Lnet/minecraft/client/model/geom/ModelLayerLocation;Lnet/minecraft/client/model/geom/ModelLayerLocation;Lnet/minecraft/client/model/geom/ModelLayerLocation;Z)V +MD: net/minecraft/client/renderer/entity/PiglinRenderer/m_174349_ (Lnet/minecraft/client/model/geom/EntityModelSet;Lnet/minecraft/client/model/geom/ModelLayerLocation;Z)Lnet/minecraft/client/model/PiglinModel; net/minecraft/client/renderer/entity/PiglinRenderer/createModel (Lnet/minecraft/client/model/geom/EntityModelSet;Lnet/minecraft/client/model/geom/ModelLayerLocation;Z)Lnet/minecraft/client/model/PiglinModel; +MD: net/minecraft/client/renderer/entity/PiglinRenderer/m_5478_ (Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/client/renderer/entity/PiglinRenderer/getTextureLocation (Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/client/renderer/entity/PiglinRenderer/m_5478_ (Lnet/minecraft/world/entity/Mob;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/client/renderer/entity/PiglinRenderer/getTextureLocation (Lnet/minecraft/world/entity/Mob;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/client/renderer/entity/PiglinRenderer/m_5936_ (Lnet/minecraft/world/entity/Mob;)Z net/minecraft/client/renderer/entity/PiglinRenderer/isShaking (Lnet/minecraft/world/entity/Mob;)Z +MD: net/minecraft/client/renderer/entity/PiglinRenderer/m_5936_ (Lnet/minecraft/world/entity/LivingEntity;)Z net/minecraft/client/renderer/entity/PiglinRenderer/isShaking (Lnet/minecraft/world/entity/LivingEntity;)Z +MD: net/minecraft/client/renderer/entity/PillagerRenderer/ ()V net/minecraft/client/renderer/entity/PillagerRenderer/ ()V +MD: net/minecraft/client/renderer/entity/PillagerRenderer/ (Lnet/minecraft/client/renderer/entity/EntityRendererProvider$Context;)V net/minecraft/client/renderer/entity/PillagerRenderer/ (Lnet/minecraft/client/renderer/entity/EntityRendererProvider$Context;)V +MD: net/minecraft/client/renderer/entity/PillagerRenderer/m_5478_ (Lnet/minecraft/world/entity/monster/Pillager;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/client/renderer/entity/PillagerRenderer/getTextureLocation (Lnet/minecraft/world/entity/monster/Pillager;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/client/renderer/entity/PillagerRenderer/m_5478_ (Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/client/renderer/entity/PillagerRenderer/getTextureLocation (Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/client/renderer/entity/PolarBearRenderer/ ()V net/minecraft/client/renderer/entity/PolarBearRenderer/ ()V +MD: net/minecraft/client/renderer/entity/PolarBearRenderer/ (Lnet/minecraft/client/renderer/entity/EntityRendererProvider$Context;)V net/minecraft/client/renderer/entity/PolarBearRenderer/ (Lnet/minecraft/client/renderer/entity/EntityRendererProvider$Context;)V +MD: net/minecraft/client/renderer/entity/PolarBearRenderer/m_5478_ (Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/client/renderer/entity/PolarBearRenderer/getTextureLocation (Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/client/renderer/entity/PolarBearRenderer/m_5478_ (Lnet/minecraft/world/entity/animal/PolarBear;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/client/renderer/entity/PolarBearRenderer/getTextureLocation (Lnet/minecraft/world/entity/animal/PolarBear;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/client/renderer/entity/PolarBearRenderer/m_7546_ (Lnet/minecraft/world/entity/animal/PolarBear;Lcom/mojang/blaze3d/vertex/PoseStack;F)V net/minecraft/client/renderer/entity/PolarBearRenderer/scale (Lnet/minecraft/world/entity/animal/PolarBear;Lcom/mojang/blaze3d/vertex/PoseStack;F)V +MD: net/minecraft/client/renderer/entity/PolarBearRenderer/m_7546_ (Lnet/minecraft/world/entity/LivingEntity;Lcom/mojang/blaze3d/vertex/PoseStack;F)V net/minecraft/client/renderer/entity/PolarBearRenderer/scale (Lnet/minecraft/world/entity/LivingEntity;Lcom/mojang/blaze3d/vertex/PoseStack;F)V +MD: net/minecraft/client/renderer/entity/PufferfishRenderer/ ()V net/minecraft/client/renderer/entity/PufferfishRenderer/ ()V +MD: net/minecraft/client/renderer/entity/PufferfishRenderer/ (Lnet/minecraft/client/renderer/entity/EntityRendererProvider$Context;)V net/minecraft/client/renderer/entity/PufferfishRenderer/ (Lnet/minecraft/client/renderer/entity/EntityRendererProvider$Context;)V +MD: net/minecraft/client/renderer/entity/PufferfishRenderer/m_5478_ (Lnet/minecraft/world/entity/animal/Pufferfish;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/client/renderer/entity/PufferfishRenderer/getTextureLocation (Lnet/minecraft/world/entity/animal/Pufferfish;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/client/renderer/entity/PufferfishRenderer/m_5478_ (Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/client/renderer/entity/PufferfishRenderer/getTextureLocation (Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/client/renderer/entity/PufferfishRenderer/m_7392_ (Lnet/minecraft/world/entity/Mob;FFLcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;I)V net/minecraft/client/renderer/entity/PufferfishRenderer/render (Lnet/minecraft/world/entity/Mob;FFLcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;I)V +MD: net/minecraft/client/renderer/entity/PufferfishRenderer/m_7392_ (Lnet/minecraft/world/entity/animal/Pufferfish;FFLcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;I)V net/minecraft/client/renderer/entity/PufferfishRenderer/render (Lnet/minecraft/world/entity/animal/Pufferfish;FFLcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;I)V +MD: net/minecraft/client/renderer/entity/PufferfishRenderer/m_7392_ (Lnet/minecraft/world/entity/Entity;FFLcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;I)V net/minecraft/client/renderer/entity/PufferfishRenderer/render (Lnet/minecraft/world/entity/Entity;FFLcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;I)V +MD: net/minecraft/client/renderer/entity/PufferfishRenderer/m_7392_ (Lnet/minecraft/world/entity/LivingEntity;FFLcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;I)V net/minecraft/client/renderer/entity/PufferfishRenderer/render (Lnet/minecraft/world/entity/LivingEntity;FFLcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;I)V +MD: net/minecraft/client/renderer/entity/PufferfishRenderer/m_7523_ (Lnet/minecraft/world/entity/LivingEntity;Lcom/mojang/blaze3d/vertex/PoseStack;FFF)V net/minecraft/client/renderer/entity/PufferfishRenderer/setupRotations (Lnet/minecraft/world/entity/LivingEntity;Lcom/mojang/blaze3d/vertex/PoseStack;FFF)V +MD: net/minecraft/client/renderer/entity/PufferfishRenderer/m_7523_ (Lnet/minecraft/world/entity/animal/Pufferfish;Lcom/mojang/blaze3d/vertex/PoseStack;FFF)V net/minecraft/client/renderer/entity/PufferfishRenderer/setupRotations (Lnet/minecraft/world/entity/animal/Pufferfish;Lcom/mojang/blaze3d/vertex/PoseStack;FFF)V +MD: net/minecraft/client/renderer/entity/RabbitRenderer/ ()V net/minecraft/client/renderer/entity/RabbitRenderer/ ()V +MD: net/minecraft/client/renderer/entity/RabbitRenderer/ (Lnet/minecraft/client/renderer/entity/EntityRendererProvider$Context;)V net/minecraft/client/renderer/entity/RabbitRenderer/ (Lnet/minecraft/client/renderer/entity/EntityRendererProvider$Context;)V +MD: net/minecraft/client/renderer/entity/RabbitRenderer/m_5478_ (Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/client/renderer/entity/RabbitRenderer/getTextureLocation (Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/client/renderer/entity/RabbitRenderer/m_5478_ (Lnet/minecraft/world/entity/animal/Rabbit;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/client/renderer/entity/RabbitRenderer/getTextureLocation (Lnet/minecraft/world/entity/animal/Rabbit;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/client/renderer/entity/RabbitRenderer$1/ ()V net/minecraft/client/renderer/entity/RabbitRenderer$1/ ()V +MD: net/minecraft/client/renderer/entity/RavagerRenderer/ ()V net/minecraft/client/renderer/entity/RavagerRenderer/ ()V +MD: net/minecraft/client/renderer/entity/RavagerRenderer/ (Lnet/minecraft/client/renderer/entity/EntityRendererProvider$Context;)V net/minecraft/client/renderer/entity/RavagerRenderer/ (Lnet/minecraft/client/renderer/entity/EntityRendererProvider$Context;)V +MD: net/minecraft/client/renderer/entity/RavagerRenderer/m_5478_ (Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/client/renderer/entity/RavagerRenderer/getTextureLocation (Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/client/renderer/entity/RavagerRenderer/m_5478_ (Lnet/minecraft/world/entity/monster/Ravager;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/client/renderer/entity/RavagerRenderer/getTextureLocation (Lnet/minecraft/world/entity/monster/Ravager;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/client/renderer/entity/RenderLayerParent/m_5478_ (Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/client/renderer/entity/RenderLayerParent/getTextureLocation (Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/client/renderer/entity/RenderLayerParent/m_7200_ ()Lnet/minecraft/client/model/EntityModel; net/minecraft/client/renderer/entity/RenderLayerParent/getModel ()Lnet/minecraft/client/model/EntityModel; +MD: net/minecraft/client/renderer/entity/SalmonRenderer/ ()V net/minecraft/client/renderer/entity/SalmonRenderer/ ()V +MD: net/minecraft/client/renderer/entity/SalmonRenderer/ (Lnet/minecraft/client/renderer/entity/EntityRendererProvider$Context;)V net/minecraft/client/renderer/entity/SalmonRenderer/ (Lnet/minecraft/client/renderer/entity/EntityRendererProvider$Context;)V +MD: net/minecraft/client/renderer/entity/SalmonRenderer/m_5478_ (Lnet/minecraft/world/entity/animal/Salmon;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/client/renderer/entity/SalmonRenderer/getTextureLocation (Lnet/minecraft/world/entity/animal/Salmon;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/client/renderer/entity/SalmonRenderer/m_5478_ (Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/client/renderer/entity/SalmonRenderer/getTextureLocation (Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/client/renderer/entity/SalmonRenderer/m_7523_ (Lnet/minecraft/world/entity/LivingEntity;Lcom/mojang/blaze3d/vertex/PoseStack;FFF)V net/minecraft/client/renderer/entity/SalmonRenderer/setupRotations (Lnet/minecraft/world/entity/LivingEntity;Lcom/mojang/blaze3d/vertex/PoseStack;FFF)V +MD: net/minecraft/client/renderer/entity/SalmonRenderer/m_7523_ (Lnet/minecraft/world/entity/animal/Salmon;Lcom/mojang/blaze3d/vertex/PoseStack;FFF)V net/minecraft/client/renderer/entity/SalmonRenderer/setupRotations (Lnet/minecraft/world/entity/animal/Salmon;Lcom/mojang/blaze3d/vertex/PoseStack;FFF)V +MD: net/minecraft/client/renderer/entity/SheepRenderer/ ()V net/minecraft/client/renderer/entity/SheepRenderer/ ()V +MD: net/minecraft/client/renderer/entity/SheepRenderer/ (Lnet/minecraft/client/renderer/entity/EntityRendererProvider$Context;)V net/minecraft/client/renderer/entity/SheepRenderer/ (Lnet/minecraft/client/renderer/entity/EntityRendererProvider$Context;)V +MD: net/minecraft/client/renderer/entity/SheepRenderer/m_5478_ (Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/client/renderer/entity/SheepRenderer/getTextureLocation (Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/client/renderer/entity/SheepRenderer/m_5478_ (Lnet/minecraft/world/entity/animal/Sheep;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/client/renderer/entity/SheepRenderer/getTextureLocation (Lnet/minecraft/world/entity/animal/Sheep;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/client/renderer/entity/ShulkerBulletRenderer/ ()V net/minecraft/client/renderer/entity/ShulkerBulletRenderer/ ()V +MD: net/minecraft/client/renderer/entity/ShulkerBulletRenderer/ (Lnet/minecraft/client/renderer/entity/EntityRendererProvider$Context;)V net/minecraft/client/renderer/entity/ShulkerBulletRenderer/ (Lnet/minecraft/client/renderer/entity/EntityRendererProvider$Context;)V +MD: net/minecraft/client/renderer/entity/ShulkerBulletRenderer/m_5478_ (Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/client/renderer/entity/ShulkerBulletRenderer/getTextureLocation (Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/client/renderer/entity/ShulkerBulletRenderer/m_5478_ (Lnet/minecraft/world/entity/projectile/ShulkerBullet;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/client/renderer/entity/ShulkerBulletRenderer/getTextureLocation (Lnet/minecraft/world/entity/projectile/ShulkerBullet;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/client/renderer/entity/ShulkerBulletRenderer/m_6086_ (Lnet/minecraft/world/entity/Entity;Lnet/minecraft/core/BlockPos;)I net/minecraft/client/renderer/entity/ShulkerBulletRenderer/getBlockLightLevel (Lnet/minecraft/world/entity/Entity;Lnet/minecraft/core/BlockPos;)I +MD: net/minecraft/client/renderer/entity/ShulkerBulletRenderer/m_6086_ (Lnet/minecraft/world/entity/projectile/ShulkerBullet;Lnet/minecraft/core/BlockPos;)I net/minecraft/client/renderer/entity/ShulkerBulletRenderer/getBlockLightLevel (Lnet/minecraft/world/entity/projectile/ShulkerBullet;Lnet/minecraft/core/BlockPos;)I +MD: net/minecraft/client/renderer/entity/ShulkerBulletRenderer/m_7392_ (Lnet/minecraft/world/entity/projectile/ShulkerBullet;FFLcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;I)V net/minecraft/client/renderer/entity/ShulkerBulletRenderer/render (Lnet/minecraft/world/entity/projectile/ShulkerBullet;FFLcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;I)V +MD: net/minecraft/client/renderer/entity/ShulkerBulletRenderer/m_7392_ (Lnet/minecraft/world/entity/Entity;FFLcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;I)V net/minecraft/client/renderer/entity/ShulkerBulletRenderer/render (Lnet/minecraft/world/entity/Entity;FFLcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;I)V +MD: net/minecraft/client/renderer/entity/ShulkerRenderer/ ()V net/minecraft/client/renderer/entity/ShulkerRenderer/ ()V +MD: net/minecraft/client/renderer/entity/ShulkerRenderer/ (Lnet/minecraft/client/renderer/entity/EntityRendererProvider$Context;)V net/minecraft/client/renderer/entity/ShulkerRenderer/ (Lnet/minecraft/client/renderer/entity/EntityRendererProvider$Context;)V +MD: net/minecraft/client/renderer/entity/ShulkerRenderer/m_115876_ (I)[Lnet/minecraft/resources/ResourceLocation; net/minecraft/client/renderer/entity/ShulkerRenderer/lambda$static$1 (I)[Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/client/renderer/entity/ShulkerRenderer/m_115918_ (Lnet/minecraft/client/resources/model/Material;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/client/renderer/entity/ShulkerRenderer/lambda$static$0 (Lnet/minecraft/client/resources/model/Material;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/client/renderer/entity/ShulkerRenderer/m_174371_ (Lnet/minecraft/world/entity/monster/Shulker;Lnet/minecraft/client/renderer/culling/Frustum;Lnet/minecraft/world/phys/Vec3;)Z net/minecraft/client/renderer/entity/ShulkerRenderer/lambda$shouldRender$2 (Lnet/minecraft/world/entity/monster/Shulker;Lnet/minecraft/client/renderer/culling/Frustum;Lnet/minecraft/world/phys/Vec3;)Z +MD: net/minecraft/client/renderer/entity/ShulkerRenderer/m_174375_ (Lnet/minecraft/world/item/DyeColor;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/client/renderer/entity/ShulkerRenderer/getTextureLocation (Lnet/minecraft/world/item/DyeColor;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/client/renderer/entity/ShulkerRenderer/m_5478_ (Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/client/renderer/entity/ShulkerRenderer/getTextureLocation (Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/client/renderer/entity/ShulkerRenderer/m_5478_ (Lnet/minecraft/world/entity/monster/Shulker;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/client/renderer/entity/ShulkerRenderer/getTextureLocation (Lnet/minecraft/world/entity/monster/Shulker;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/client/renderer/entity/ShulkerRenderer/m_5523_ (Lnet/minecraft/world/entity/Mob;Lnet/minecraft/client/renderer/culling/Frustum;DDD)Z net/minecraft/client/renderer/entity/ShulkerRenderer/shouldRender (Lnet/minecraft/world/entity/Mob;Lnet/minecraft/client/renderer/culling/Frustum;DDD)Z +MD: net/minecraft/client/renderer/entity/ShulkerRenderer/m_5523_ (Lnet/minecraft/world/entity/monster/Shulker;Lnet/minecraft/client/renderer/culling/Frustum;DDD)Z net/minecraft/client/renderer/entity/ShulkerRenderer/shouldRender (Lnet/minecraft/world/entity/monster/Shulker;Lnet/minecraft/client/renderer/culling/Frustum;DDD)Z +MD: net/minecraft/client/renderer/entity/ShulkerRenderer/m_5523_ (Lnet/minecraft/world/entity/Entity;Lnet/minecraft/client/renderer/culling/Frustum;DDD)Z net/minecraft/client/renderer/entity/ShulkerRenderer/shouldRender (Lnet/minecraft/world/entity/Entity;Lnet/minecraft/client/renderer/culling/Frustum;DDD)Z +MD: net/minecraft/client/renderer/entity/ShulkerRenderer/m_7523_ (Lnet/minecraft/world/entity/LivingEntity;Lcom/mojang/blaze3d/vertex/PoseStack;FFF)V net/minecraft/client/renderer/entity/ShulkerRenderer/setupRotations (Lnet/minecraft/world/entity/LivingEntity;Lcom/mojang/blaze3d/vertex/PoseStack;FFF)V +MD: net/minecraft/client/renderer/entity/ShulkerRenderer/m_7523_ (Lnet/minecraft/world/entity/monster/Shulker;Lcom/mojang/blaze3d/vertex/PoseStack;FFF)V net/minecraft/client/renderer/entity/ShulkerRenderer/setupRotations (Lnet/minecraft/world/entity/monster/Shulker;Lcom/mojang/blaze3d/vertex/PoseStack;FFF)V +MD: net/minecraft/client/renderer/entity/ShulkerRenderer/m_7860_ (Lnet/minecraft/world/entity/Entity;F)Lnet/minecraft/world/phys/Vec3; net/minecraft/client/renderer/entity/ShulkerRenderer/getRenderOffset (Lnet/minecraft/world/entity/Entity;F)Lnet/minecraft/world/phys/Vec3; +MD: net/minecraft/client/renderer/entity/ShulkerRenderer/m_7860_ (Lnet/minecraft/world/entity/monster/Shulker;F)Lnet/minecraft/world/phys/Vec3; net/minecraft/client/renderer/entity/ShulkerRenderer/getRenderOffset (Lnet/minecraft/world/entity/monster/Shulker;F)Lnet/minecraft/world/phys/Vec3; +MD: net/minecraft/client/renderer/entity/SilverfishRenderer/ ()V net/minecraft/client/renderer/entity/SilverfishRenderer/ ()V +MD: net/minecraft/client/renderer/entity/SilverfishRenderer/ (Lnet/minecraft/client/renderer/entity/EntityRendererProvider$Context;)V net/minecraft/client/renderer/entity/SilverfishRenderer/ (Lnet/minecraft/client/renderer/entity/EntityRendererProvider$Context;)V +MD: net/minecraft/client/renderer/entity/SilverfishRenderer/m_5478_ (Lnet/minecraft/world/entity/monster/Silverfish;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/client/renderer/entity/SilverfishRenderer/getTextureLocation (Lnet/minecraft/world/entity/monster/Silverfish;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/client/renderer/entity/SilverfishRenderer/m_5478_ (Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/client/renderer/entity/SilverfishRenderer/getTextureLocation (Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/client/renderer/entity/SilverfishRenderer/m_6441_ (Lnet/minecraft/world/entity/monster/Silverfish;)F net/minecraft/client/renderer/entity/SilverfishRenderer/getFlipDegrees (Lnet/minecraft/world/entity/monster/Silverfish;)F +MD: net/minecraft/client/renderer/entity/SilverfishRenderer/m_6441_ (Lnet/minecraft/world/entity/LivingEntity;)F net/minecraft/client/renderer/entity/SilverfishRenderer/getFlipDegrees (Lnet/minecraft/world/entity/LivingEntity;)F +MD: net/minecraft/client/renderer/entity/SkeletonRenderer/ ()V net/minecraft/client/renderer/entity/SkeletonRenderer/ ()V +MD: net/minecraft/client/renderer/entity/SkeletonRenderer/ (Lnet/minecraft/client/renderer/entity/EntityRendererProvider$Context;)V net/minecraft/client/renderer/entity/SkeletonRenderer/ (Lnet/minecraft/client/renderer/entity/EntityRendererProvider$Context;)V +MD: net/minecraft/client/renderer/entity/SkeletonRenderer/ (Lnet/minecraft/client/renderer/entity/EntityRendererProvider$Context;Lnet/minecraft/client/model/geom/ModelLayerLocation;Lnet/minecraft/client/model/geom/ModelLayerLocation;Lnet/minecraft/client/model/geom/ModelLayerLocation;)V net/minecraft/client/renderer/entity/SkeletonRenderer/ (Lnet/minecraft/client/renderer/entity/EntityRendererProvider$Context;Lnet/minecraft/client/model/geom/ModelLayerLocation;Lnet/minecraft/client/model/geom/ModelLayerLocation;Lnet/minecraft/client/model/geom/ModelLayerLocation;)V +MD: net/minecraft/client/renderer/entity/SkeletonRenderer/m_5478_ (Lnet/minecraft/world/entity/monster/AbstractSkeleton;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/client/renderer/entity/SkeletonRenderer/getTextureLocation (Lnet/minecraft/world/entity/monster/AbstractSkeleton;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/client/renderer/entity/SkeletonRenderer/m_5478_ (Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/client/renderer/entity/SkeletonRenderer/getTextureLocation (Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/client/renderer/entity/SkeletonRenderer/m_5936_ (Lnet/minecraft/world/entity/monster/AbstractSkeleton;)Z net/minecraft/client/renderer/entity/SkeletonRenderer/isShaking (Lnet/minecraft/world/entity/monster/AbstractSkeleton;)Z +MD: net/minecraft/client/renderer/entity/SkeletonRenderer/m_5936_ (Lnet/minecraft/world/entity/LivingEntity;)Z net/minecraft/client/renderer/entity/SkeletonRenderer/isShaking (Lnet/minecraft/world/entity/LivingEntity;)Z +MD: net/minecraft/client/renderer/entity/SlimeRenderer/ ()V net/minecraft/client/renderer/entity/SlimeRenderer/ ()V +MD: net/minecraft/client/renderer/entity/SlimeRenderer/ (Lnet/minecraft/client/renderer/entity/EntityRendererProvider$Context;)V net/minecraft/client/renderer/entity/SlimeRenderer/ (Lnet/minecraft/client/renderer/entity/EntityRendererProvider$Context;)V +MD: net/minecraft/client/renderer/entity/SlimeRenderer/m_5478_ (Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/client/renderer/entity/SlimeRenderer/getTextureLocation (Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/client/renderer/entity/SlimeRenderer/m_5478_ (Lnet/minecraft/world/entity/monster/Slime;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/client/renderer/entity/SlimeRenderer/getTextureLocation (Lnet/minecraft/world/entity/monster/Slime;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/client/renderer/entity/SlimeRenderer/m_7392_ (Lnet/minecraft/world/entity/Mob;FFLcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;I)V net/minecraft/client/renderer/entity/SlimeRenderer/render (Lnet/minecraft/world/entity/Mob;FFLcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;I)V +MD: net/minecraft/client/renderer/entity/SlimeRenderer/m_7392_ (Lnet/minecraft/world/entity/Entity;FFLcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;I)V net/minecraft/client/renderer/entity/SlimeRenderer/render (Lnet/minecraft/world/entity/Entity;FFLcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;I)V +MD: net/minecraft/client/renderer/entity/SlimeRenderer/m_7392_ (Lnet/minecraft/world/entity/monster/Slime;FFLcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;I)V net/minecraft/client/renderer/entity/SlimeRenderer/render (Lnet/minecraft/world/entity/monster/Slime;FFLcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;I)V +MD: net/minecraft/client/renderer/entity/SlimeRenderer/m_7392_ (Lnet/minecraft/world/entity/LivingEntity;FFLcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;I)V net/minecraft/client/renderer/entity/SlimeRenderer/render (Lnet/minecraft/world/entity/LivingEntity;FFLcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;I)V +MD: net/minecraft/client/renderer/entity/SlimeRenderer/m_7546_ (Lnet/minecraft/world/entity/LivingEntity;Lcom/mojang/blaze3d/vertex/PoseStack;F)V net/minecraft/client/renderer/entity/SlimeRenderer/scale (Lnet/minecraft/world/entity/LivingEntity;Lcom/mojang/blaze3d/vertex/PoseStack;F)V +MD: net/minecraft/client/renderer/entity/SlimeRenderer/m_7546_ (Lnet/minecraft/world/entity/monster/Slime;Lcom/mojang/blaze3d/vertex/PoseStack;F)V net/minecraft/client/renderer/entity/SlimeRenderer/scale (Lnet/minecraft/world/entity/monster/Slime;Lcom/mojang/blaze3d/vertex/PoseStack;F)V +MD: net/minecraft/client/renderer/entity/SnifferRenderer/ ()V net/minecraft/client/renderer/entity/SnifferRenderer/ ()V +MD: net/minecraft/client/renderer/entity/SnifferRenderer/ (Lnet/minecraft/client/renderer/entity/EntityRendererProvider$Context;)V net/minecraft/client/renderer/entity/SnifferRenderer/ (Lnet/minecraft/client/renderer/entity/EntityRendererProvider$Context;)V +MD: net/minecraft/client/renderer/entity/SnifferRenderer/m_5478_ (Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/client/renderer/entity/SnifferRenderer/getTextureLocation (Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/client/renderer/entity/SnifferRenderer/m_5478_ (Lnet/minecraft/world/entity/animal/sniffer/Sniffer;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/client/renderer/entity/SnifferRenderer/getTextureLocation (Lnet/minecraft/world/entity/animal/sniffer/Sniffer;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/client/renderer/entity/SnowGolemRenderer/ ()V net/minecraft/client/renderer/entity/SnowGolemRenderer/ ()V +MD: net/minecraft/client/renderer/entity/SnowGolemRenderer/ (Lnet/minecraft/client/renderer/entity/EntityRendererProvider$Context;)V net/minecraft/client/renderer/entity/SnowGolemRenderer/ (Lnet/minecraft/client/renderer/entity/EntityRendererProvider$Context;)V +MD: net/minecraft/client/renderer/entity/SnowGolemRenderer/m_5478_ (Lnet/minecraft/world/entity/animal/SnowGolem;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/client/renderer/entity/SnowGolemRenderer/getTextureLocation (Lnet/minecraft/world/entity/animal/SnowGolem;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/client/renderer/entity/SnowGolemRenderer/m_5478_ (Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/client/renderer/entity/SnowGolemRenderer/getTextureLocation (Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/client/renderer/entity/SpectralArrowRenderer/ ()V net/minecraft/client/renderer/entity/SpectralArrowRenderer/ ()V +MD: net/minecraft/client/renderer/entity/SpectralArrowRenderer/ (Lnet/minecraft/client/renderer/entity/EntityRendererProvider$Context;)V net/minecraft/client/renderer/entity/SpectralArrowRenderer/ (Lnet/minecraft/client/renderer/entity/EntityRendererProvider$Context;)V +MD: net/minecraft/client/renderer/entity/SpectralArrowRenderer/m_5478_ (Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/client/renderer/entity/SpectralArrowRenderer/getTextureLocation (Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/client/renderer/entity/SpectralArrowRenderer/m_5478_ (Lnet/minecraft/world/entity/projectile/SpectralArrow;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/client/renderer/entity/SpectralArrowRenderer/getTextureLocation (Lnet/minecraft/world/entity/projectile/SpectralArrow;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/client/renderer/entity/SpiderRenderer/ ()V net/minecraft/client/renderer/entity/SpiderRenderer/ ()V +MD: net/minecraft/client/renderer/entity/SpiderRenderer/ (Lnet/minecraft/client/renderer/entity/EntityRendererProvider$Context;)V net/minecraft/client/renderer/entity/SpiderRenderer/ (Lnet/minecraft/client/renderer/entity/EntityRendererProvider$Context;)V +MD: net/minecraft/client/renderer/entity/SpiderRenderer/ (Lnet/minecraft/client/renderer/entity/EntityRendererProvider$Context;Lnet/minecraft/client/model/geom/ModelLayerLocation;)V net/minecraft/client/renderer/entity/SpiderRenderer/ (Lnet/minecraft/client/renderer/entity/EntityRendererProvider$Context;Lnet/minecraft/client/model/geom/ModelLayerLocation;)V +MD: net/minecraft/client/renderer/entity/SpiderRenderer/m_5478_ (Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/client/renderer/entity/SpiderRenderer/getTextureLocation (Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/client/renderer/entity/SpiderRenderer/m_5478_ (Lnet/minecraft/world/entity/monster/Spider;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/client/renderer/entity/SpiderRenderer/getTextureLocation (Lnet/minecraft/world/entity/monster/Spider;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/client/renderer/entity/SpiderRenderer/m_6441_ (Lnet/minecraft/world/entity/monster/Spider;)F net/minecraft/client/renderer/entity/SpiderRenderer/getFlipDegrees (Lnet/minecraft/world/entity/monster/Spider;)F +MD: net/minecraft/client/renderer/entity/SpiderRenderer/m_6441_ (Lnet/minecraft/world/entity/LivingEntity;)F net/minecraft/client/renderer/entity/SpiderRenderer/getFlipDegrees (Lnet/minecraft/world/entity/LivingEntity;)F +MD: net/minecraft/client/renderer/entity/SquidRenderer/ ()V net/minecraft/client/renderer/entity/SquidRenderer/ ()V +MD: net/minecraft/client/renderer/entity/SquidRenderer/ (Lnet/minecraft/client/renderer/entity/EntityRendererProvider$Context;Lnet/minecraft/client/model/SquidModel;)V net/minecraft/client/renderer/entity/SquidRenderer/ (Lnet/minecraft/client/renderer/entity/EntityRendererProvider$Context;Lnet/minecraft/client/model/SquidModel;)V +MD: net/minecraft/client/renderer/entity/SquidRenderer/m_5478_ (Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/client/renderer/entity/SquidRenderer/getTextureLocation (Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/client/renderer/entity/SquidRenderer/m_5478_ (Lnet/minecraft/world/entity/animal/Squid;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/client/renderer/entity/SquidRenderer/getTextureLocation (Lnet/minecraft/world/entity/animal/Squid;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/client/renderer/entity/SquidRenderer/m_6930_ (Lnet/minecraft/world/entity/animal/Squid;F)F net/minecraft/client/renderer/entity/SquidRenderer/getBob (Lnet/minecraft/world/entity/animal/Squid;F)F +MD: net/minecraft/client/renderer/entity/SquidRenderer/m_6930_ (Lnet/minecraft/world/entity/LivingEntity;F)F net/minecraft/client/renderer/entity/SquidRenderer/getBob (Lnet/minecraft/world/entity/LivingEntity;F)F +MD: net/minecraft/client/renderer/entity/SquidRenderer/m_7523_ (Lnet/minecraft/world/entity/LivingEntity;Lcom/mojang/blaze3d/vertex/PoseStack;FFF)V net/minecraft/client/renderer/entity/SquidRenderer/setupRotations (Lnet/minecraft/world/entity/LivingEntity;Lcom/mojang/blaze3d/vertex/PoseStack;FFF)V +MD: net/minecraft/client/renderer/entity/SquidRenderer/m_7523_ (Lnet/minecraft/world/entity/animal/Squid;Lcom/mojang/blaze3d/vertex/PoseStack;FFF)V net/minecraft/client/renderer/entity/SquidRenderer/setupRotations (Lnet/minecraft/world/entity/animal/Squid;Lcom/mojang/blaze3d/vertex/PoseStack;FFF)V +MD: net/minecraft/client/renderer/entity/StrayRenderer/ ()V net/minecraft/client/renderer/entity/StrayRenderer/ ()V +MD: net/minecraft/client/renderer/entity/StrayRenderer/ (Lnet/minecraft/client/renderer/entity/EntityRendererProvider$Context;)V net/minecraft/client/renderer/entity/StrayRenderer/ (Lnet/minecraft/client/renderer/entity/EntityRendererProvider$Context;)V +MD: net/minecraft/client/renderer/entity/StrayRenderer/m_5478_ (Lnet/minecraft/world/entity/monster/AbstractSkeleton;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/client/renderer/entity/StrayRenderer/getTextureLocation (Lnet/minecraft/world/entity/monster/AbstractSkeleton;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/client/renderer/entity/StrayRenderer/m_5478_ (Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/client/renderer/entity/StrayRenderer/getTextureLocation (Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/client/renderer/entity/StriderRenderer/ ()V net/minecraft/client/renderer/entity/StriderRenderer/ ()V +MD: net/minecraft/client/renderer/entity/StriderRenderer/ (Lnet/minecraft/client/renderer/entity/EntityRendererProvider$Context;)V net/minecraft/client/renderer/entity/StriderRenderer/ (Lnet/minecraft/client/renderer/entity/EntityRendererProvider$Context;)V +MD: net/minecraft/client/renderer/entity/StriderRenderer/m_5478_ (Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/client/renderer/entity/StriderRenderer/getTextureLocation (Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/client/renderer/entity/StriderRenderer/m_5478_ (Lnet/minecraft/world/entity/monster/Strider;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/client/renderer/entity/StriderRenderer/getTextureLocation (Lnet/minecraft/world/entity/monster/Strider;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/client/renderer/entity/StriderRenderer/m_5936_ (Lnet/minecraft/world/entity/monster/Strider;)Z net/minecraft/client/renderer/entity/StriderRenderer/isShaking (Lnet/minecraft/world/entity/monster/Strider;)Z +MD: net/minecraft/client/renderer/entity/StriderRenderer/m_5936_ (Lnet/minecraft/world/entity/LivingEntity;)Z net/minecraft/client/renderer/entity/StriderRenderer/isShaking (Lnet/minecraft/world/entity/LivingEntity;)Z +MD: net/minecraft/client/renderer/entity/StriderRenderer/m_7546_ (Lnet/minecraft/world/entity/LivingEntity;Lcom/mojang/blaze3d/vertex/PoseStack;F)V net/minecraft/client/renderer/entity/StriderRenderer/scale (Lnet/minecraft/world/entity/LivingEntity;Lcom/mojang/blaze3d/vertex/PoseStack;F)V +MD: net/minecraft/client/renderer/entity/StriderRenderer/m_7546_ (Lnet/minecraft/world/entity/monster/Strider;Lcom/mojang/blaze3d/vertex/PoseStack;F)V net/minecraft/client/renderer/entity/StriderRenderer/scale (Lnet/minecraft/world/entity/monster/Strider;Lcom/mojang/blaze3d/vertex/PoseStack;F)V +MD: net/minecraft/client/renderer/entity/TadpoleRenderer/ ()V net/minecraft/client/renderer/entity/TadpoleRenderer/ ()V +MD: net/minecraft/client/renderer/entity/TadpoleRenderer/ (Lnet/minecraft/client/renderer/entity/EntityRendererProvider$Context;)V net/minecraft/client/renderer/entity/TadpoleRenderer/ (Lnet/minecraft/client/renderer/entity/EntityRendererProvider$Context;)V +MD: net/minecraft/client/renderer/entity/TadpoleRenderer/m_5478_ (Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/client/renderer/entity/TadpoleRenderer/getTextureLocation (Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/client/renderer/entity/TadpoleRenderer/m_5478_ (Lnet/minecraft/world/entity/animal/frog/Tadpole;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/client/renderer/entity/TadpoleRenderer/getTextureLocation (Lnet/minecraft/world/entity/animal/frog/Tadpole;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/client/renderer/entity/ThrownItemRenderer/ (Lnet/minecraft/client/renderer/entity/EntityRendererProvider$Context;)V net/minecraft/client/renderer/entity/ThrownItemRenderer/ (Lnet/minecraft/client/renderer/entity/EntityRendererProvider$Context;)V +MD: net/minecraft/client/renderer/entity/ThrownItemRenderer/ (Lnet/minecraft/client/renderer/entity/EntityRendererProvider$Context;FZ)V net/minecraft/client/renderer/entity/ThrownItemRenderer/ (Lnet/minecraft/client/renderer/entity/EntityRendererProvider$Context;FZ)V +MD: net/minecraft/client/renderer/entity/ThrownItemRenderer/m_5478_ (Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/client/renderer/entity/ThrownItemRenderer/getTextureLocation (Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/client/renderer/entity/ThrownItemRenderer/m_6086_ (Lnet/minecraft/world/entity/Entity;Lnet/minecraft/core/BlockPos;)I net/minecraft/client/renderer/entity/ThrownItemRenderer/getBlockLightLevel (Lnet/minecraft/world/entity/Entity;Lnet/minecraft/core/BlockPos;)I +MD: net/minecraft/client/renderer/entity/ThrownItemRenderer/m_7392_ (Lnet/minecraft/world/entity/Entity;FFLcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;I)V net/minecraft/client/renderer/entity/ThrownItemRenderer/render (Lnet/minecraft/world/entity/Entity;FFLcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;I)V +MD: net/minecraft/client/renderer/entity/ThrownTridentRenderer/ ()V net/minecraft/client/renderer/entity/ThrownTridentRenderer/ ()V +MD: net/minecraft/client/renderer/entity/ThrownTridentRenderer/ (Lnet/minecraft/client/renderer/entity/EntityRendererProvider$Context;)V net/minecraft/client/renderer/entity/ThrownTridentRenderer/ (Lnet/minecraft/client/renderer/entity/EntityRendererProvider$Context;)V +MD: net/minecraft/client/renderer/entity/ThrownTridentRenderer/m_5478_ (Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/client/renderer/entity/ThrownTridentRenderer/getTextureLocation (Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/client/renderer/entity/ThrownTridentRenderer/m_5478_ (Lnet/minecraft/world/entity/projectile/ThrownTrident;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/client/renderer/entity/ThrownTridentRenderer/getTextureLocation (Lnet/minecraft/world/entity/projectile/ThrownTrident;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/client/renderer/entity/ThrownTridentRenderer/m_7392_ (Lnet/minecraft/world/entity/projectile/ThrownTrident;FFLcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;I)V net/minecraft/client/renderer/entity/ThrownTridentRenderer/render (Lnet/minecraft/world/entity/projectile/ThrownTrident;FFLcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;I)V +MD: net/minecraft/client/renderer/entity/ThrownTridentRenderer/m_7392_ (Lnet/minecraft/world/entity/Entity;FFLcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;I)V net/minecraft/client/renderer/entity/ThrownTridentRenderer/render (Lnet/minecraft/world/entity/Entity;FFLcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;I)V +MD: net/minecraft/client/renderer/entity/TippableArrowRenderer/ ()V net/minecraft/client/renderer/entity/TippableArrowRenderer/ ()V +MD: net/minecraft/client/renderer/entity/TippableArrowRenderer/ (Lnet/minecraft/client/renderer/entity/EntityRendererProvider$Context;)V net/minecraft/client/renderer/entity/TippableArrowRenderer/ (Lnet/minecraft/client/renderer/entity/EntityRendererProvider$Context;)V +MD: net/minecraft/client/renderer/entity/TippableArrowRenderer/m_5478_ (Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/client/renderer/entity/TippableArrowRenderer/getTextureLocation (Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/client/renderer/entity/TippableArrowRenderer/m_5478_ (Lnet/minecraft/world/entity/projectile/Arrow;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/client/renderer/entity/TippableArrowRenderer/getTextureLocation (Lnet/minecraft/world/entity/projectile/Arrow;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/client/renderer/entity/TntMinecartRenderer/ (Lnet/minecraft/client/renderer/entity/EntityRendererProvider$Context;)V net/minecraft/client/renderer/entity/TntMinecartRenderer/ (Lnet/minecraft/client/renderer/entity/EntityRendererProvider$Context;)V +MD: net/minecraft/client/renderer/entity/TntMinecartRenderer/m_234661_ (Lnet/minecraft/client/renderer/block/BlockRenderDispatcher;Lnet/minecraft/world/level/block/state/BlockState;Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;IZ)V net/minecraft/client/renderer/entity/TntMinecartRenderer/renderWhiteSolidBlock (Lnet/minecraft/client/renderer/block/BlockRenderDispatcher;Lnet/minecraft/world/level/block/state/BlockState;Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;IZ)V +MD: net/minecraft/client/renderer/entity/TntMinecartRenderer/m_7002_ (Lnet/minecraft/world/entity/vehicle/MinecartTNT;FLnet/minecraft/world/level/block/state/BlockState;Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;I)V net/minecraft/client/renderer/entity/TntMinecartRenderer/renderMinecartContents (Lnet/minecraft/world/entity/vehicle/MinecartTNT;FLnet/minecraft/world/level/block/state/BlockState;Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;I)V +MD: net/minecraft/client/renderer/entity/TntMinecartRenderer/m_7002_ (Lnet/minecraft/world/entity/vehicle/AbstractMinecart;FLnet/minecraft/world/level/block/state/BlockState;Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;I)V net/minecraft/client/renderer/entity/TntMinecartRenderer/renderMinecartContents (Lnet/minecraft/world/entity/vehicle/AbstractMinecart;FLnet/minecraft/world/level/block/state/BlockState;Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;I)V +MD: net/minecraft/client/renderer/entity/TntRenderer/ (Lnet/minecraft/client/renderer/entity/EntityRendererProvider$Context;)V net/minecraft/client/renderer/entity/TntRenderer/ (Lnet/minecraft/client/renderer/entity/EntityRendererProvider$Context;)V +MD: net/minecraft/client/renderer/entity/TntRenderer/m_5478_ (Lnet/minecraft/world/entity/item/PrimedTnt;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/client/renderer/entity/TntRenderer/getTextureLocation (Lnet/minecraft/world/entity/item/PrimedTnt;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/client/renderer/entity/TntRenderer/m_5478_ (Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/client/renderer/entity/TntRenderer/getTextureLocation (Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/client/renderer/entity/TntRenderer/m_7392_ (Lnet/minecraft/world/entity/item/PrimedTnt;FFLcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;I)V net/minecraft/client/renderer/entity/TntRenderer/render (Lnet/minecraft/world/entity/item/PrimedTnt;FFLcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;I)V +MD: net/minecraft/client/renderer/entity/TntRenderer/m_7392_ (Lnet/minecraft/world/entity/Entity;FFLcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;I)V net/minecraft/client/renderer/entity/TntRenderer/render (Lnet/minecraft/world/entity/Entity;FFLcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;I)V +MD: net/minecraft/client/renderer/entity/TropicalFishRenderer/ ()V net/minecraft/client/renderer/entity/TropicalFishRenderer/ ()V +MD: net/minecraft/client/renderer/entity/TropicalFishRenderer/ (Lnet/minecraft/client/renderer/entity/EntityRendererProvider$Context;)V net/minecraft/client/renderer/entity/TropicalFishRenderer/ (Lnet/minecraft/client/renderer/entity/EntityRendererProvider$Context;)V +MD: net/minecraft/client/renderer/entity/TropicalFishRenderer/m_5478_ (Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/client/renderer/entity/TropicalFishRenderer/getTextureLocation (Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/client/renderer/entity/TropicalFishRenderer/m_5478_ (Lnet/minecraft/world/entity/animal/TropicalFish;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/client/renderer/entity/TropicalFishRenderer/getTextureLocation (Lnet/minecraft/world/entity/animal/TropicalFish;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/client/renderer/entity/TropicalFishRenderer/m_7392_ (Lnet/minecraft/world/entity/Mob;FFLcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;I)V net/minecraft/client/renderer/entity/TropicalFishRenderer/render (Lnet/minecraft/world/entity/Mob;FFLcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;I)V +MD: net/minecraft/client/renderer/entity/TropicalFishRenderer/m_7392_ (Lnet/minecraft/world/entity/Entity;FFLcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;I)V net/minecraft/client/renderer/entity/TropicalFishRenderer/render (Lnet/minecraft/world/entity/Entity;FFLcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;I)V +MD: net/minecraft/client/renderer/entity/TropicalFishRenderer/m_7392_ (Lnet/minecraft/world/entity/animal/TropicalFish;FFLcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;I)V net/minecraft/client/renderer/entity/TropicalFishRenderer/render (Lnet/minecraft/world/entity/animal/TropicalFish;FFLcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;I)V +MD: net/minecraft/client/renderer/entity/TropicalFishRenderer/m_7392_ (Lnet/minecraft/world/entity/LivingEntity;FFLcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;I)V net/minecraft/client/renderer/entity/TropicalFishRenderer/render (Lnet/minecraft/world/entity/LivingEntity;FFLcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;I)V +MD: net/minecraft/client/renderer/entity/TropicalFishRenderer/m_7523_ (Lnet/minecraft/world/entity/LivingEntity;Lcom/mojang/blaze3d/vertex/PoseStack;FFF)V net/minecraft/client/renderer/entity/TropicalFishRenderer/setupRotations (Lnet/minecraft/world/entity/LivingEntity;Lcom/mojang/blaze3d/vertex/PoseStack;FFF)V +MD: net/minecraft/client/renderer/entity/TropicalFishRenderer/m_7523_ (Lnet/minecraft/world/entity/animal/TropicalFish;Lcom/mojang/blaze3d/vertex/PoseStack;FFF)V net/minecraft/client/renderer/entity/TropicalFishRenderer/setupRotations (Lnet/minecraft/world/entity/animal/TropicalFish;Lcom/mojang/blaze3d/vertex/PoseStack;FFF)V +MD: net/minecraft/client/renderer/entity/TropicalFishRenderer$1/ ()V net/minecraft/client/renderer/entity/TropicalFishRenderer$1/ ()V +MD: net/minecraft/client/renderer/entity/TurtleRenderer/ ()V net/minecraft/client/renderer/entity/TurtleRenderer/ ()V +MD: net/minecraft/client/renderer/entity/TurtleRenderer/ (Lnet/minecraft/client/renderer/entity/EntityRendererProvider$Context;)V net/minecraft/client/renderer/entity/TurtleRenderer/ (Lnet/minecraft/client/renderer/entity/EntityRendererProvider$Context;)V +MD: net/minecraft/client/renderer/entity/TurtleRenderer/m_5478_ (Lnet/minecraft/world/entity/animal/Turtle;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/client/renderer/entity/TurtleRenderer/getTextureLocation (Lnet/minecraft/world/entity/animal/Turtle;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/client/renderer/entity/TurtleRenderer/m_5478_ (Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/client/renderer/entity/TurtleRenderer/getTextureLocation (Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/client/renderer/entity/TurtleRenderer/m_7392_ (Lnet/minecraft/world/entity/Mob;FFLcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;I)V net/minecraft/client/renderer/entity/TurtleRenderer/render (Lnet/minecraft/world/entity/Mob;FFLcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;I)V +MD: net/minecraft/client/renderer/entity/TurtleRenderer/m_7392_ (Lnet/minecraft/world/entity/Entity;FFLcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;I)V net/minecraft/client/renderer/entity/TurtleRenderer/render (Lnet/minecraft/world/entity/Entity;FFLcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;I)V +MD: net/minecraft/client/renderer/entity/TurtleRenderer/m_7392_ (Lnet/minecraft/world/entity/LivingEntity;FFLcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;I)V net/minecraft/client/renderer/entity/TurtleRenderer/render (Lnet/minecraft/world/entity/LivingEntity;FFLcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;I)V +MD: net/minecraft/client/renderer/entity/TurtleRenderer/m_7392_ (Lnet/minecraft/world/entity/animal/Turtle;FFLcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;I)V net/minecraft/client/renderer/entity/TurtleRenderer/render (Lnet/minecraft/world/entity/animal/Turtle;FFLcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;I)V +MD: net/minecraft/client/renderer/entity/UndeadHorseRenderer/ ()V net/minecraft/client/renderer/entity/UndeadHorseRenderer/ ()V +MD: net/minecraft/client/renderer/entity/UndeadHorseRenderer/ (Lnet/minecraft/client/renderer/entity/EntityRendererProvider$Context;Lnet/minecraft/client/model/geom/ModelLayerLocation;)V net/minecraft/client/renderer/entity/UndeadHorseRenderer/ (Lnet/minecraft/client/renderer/entity/EntityRendererProvider$Context;Lnet/minecraft/client/model/geom/ModelLayerLocation;)V +MD: net/minecraft/client/renderer/entity/UndeadHorseRenderer/m_5478_ (Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/client/renderer/entity/UndeadHorseRenderer/getTextureLocation (Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/client/renderer/entity/UndeadHorseRenderer/m_5478_ (Lnet/minecraft/world/entity/animal/horse/AbstractHorse;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/client/renderer/entity/UndeadHorseRenderer/getTextureLocation (Lnet/minecraft/world/entity/animal/horse/AbstractHorse;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/client/renderer/entity/VexRenderer/ ()V net/minecraft/client/renderer/entity/VexRenderer/ ()V +MD: net/minecraft/client/renderer/entity/VexRenderer/ (Lnet/minecraft/client/renderer/entity/EntityRendererProvider$Context;)V net/minecraft/client/renderer/entity/VexRenderer/ (Lnet/minecraft/client/renderer/entity/EntityRendererProvider$Context;)V +MD: net/minecraft/client/renderer/entity/VexRenderer/m_5478_ (Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/client/renderer/entity/VexRenderer/getTextureLocation (Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/client/renderer/entity/VexRenderer/m_5478_ (Lnet/minecraft/world/entity/monster/Vex;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/client/renderer/entity/VexRenderer/getTextureLocation (Lnet/minecraft/world/entity/monster/Vex;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/client/renderer/entity/VexRenderer/m_6086_ (Lnet/minecraft/world/entity/Entity;Lnet/minecraft/core/BlockPos;)I net/minecraft/client/renderer/entity/VexRenderer/getBlockLightLevel (Lnet/minecraft/world/entity/Entity;Lnet/minecraft/core/BlockPos;)I +MD: net/minecraft/client/renderer/entity/VexRenderer/m_6086_ (Lnet/minecraft/world/entity/monster/Vex;Lnet/minecraft/core/BlockPos;)I net/minecraft/client/renderer/entity/VexRenderer/getBlockLightLevel (Lnet/minecraft/world/entity/monster/Vex;Lnet/minecraft/core/BlockPos;)I +MD: net/minecraft/client/renderer/entity/VillagerRenderer/ ()V net/minecraft/client/renderer/entity/VillagerRenderer/ ()V +MD: net/minecraft/client/renderer/entity/VillagerRenderer/ (Lnet/minecraft/client/renderer/entity/EntityRendererProvider$Context;)V net/minecraft/client/renderer/entity/VillagerRenderer/ (Lnet/minecraft/client/renderer/entity/EntityRendererProvider$Context;)V +MD: net/minecraft/client/renderer/entity/VillagerRenderer/m_5478_ (Lnet/minecraft/world/entity/npc/Villager;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/client/renderer/entity/VillagerRenderer/getTextureLocation (Lnet/minecraft/world/entity/npc/Villager;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/client/renderer/entity/VillagerRenderer/m_5478_ (Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/client/renderer/entity/VillagerRenderer/getTextureLocation (Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/client/renderer/entity/VillagerRenderer/m_7546_ (Lnet/minecraft/world/entity/LivingEntity;Lcom/mojang/blaze3d/vertex/PoseStack;F)V net/minecraft/client/renderer/entity/VillagerRenderer/scale (Lnet/minecraft/world/entity/LivingEntity;Lcom/mojang/blaze3d/vertex/PoseStack;F)V +MD: net/minecraft/client/renderer/entity/VillagerRenderer/m_7546_ (Lnet/minecraft/world/entity/npc/Villager;Lcom/mojang/blaze3d/vertex/PoseStack;F)V net/minecraft/client/renderer/entity/VillagerRenderer/scale (Lnet/minecraft/world/entity/npc/Villager;Lcom/mojang/blaze3d/vertex/PoseStack;F)V +MD: net/minecraft/client/renderer/entity/VindicatorRenderer/ ()V net/minecraft/client/renderer/entity/VindicatorRenderer/ ()V +MD: net/minecraft/client/renderer/entity/VindicatorRenderer/ (Lnet/minecraft/client/renderer/entity/EntityRendererProvider$Context;)V net/minecraft/client/renderer/entity/VindicatorRenderer/ (Lnet/minecraft/client/renderer/entity/EntityRendererProvider$Context;)V +MD: net/minecraft/client/renderer/entity/VindicatorRenderer/m_5478_ (Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/client/renderer/entity/VindicatorRenderer/getTextureLocation (Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/client/renderer/entity/VindicatorRenderer/m_5478_ (Lnet/minecraft/world/entity/monster/Vindicator;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/client/renderer/entity/VindicatorRenderer/getTextureLocation (Lnet/minecraft/world/entity/monster/Vindicator;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/client/renderer/entity/VindicatorRenderer$1/ (Lnet/minecraft/client/renderer/entity/VindicatorRenderer;Lnet/minecraft/client/renderer/entity/RenderLayerParent;Lnet/minecraft/client/renderer/ItemInHandRenderer;)V net/minecraft/client/renderer/entity/VindicatorRenderer$1/ (Lnet/minecraft/client/renderer/entity/VindicatorRenderer;Lnet/minecraft/client/renderer/entity/RenderLayerParent;Lnet/minecraft/client/renderer/ItemInHandRenderer;)V +MD: net/minecraft/client/renderer/entity/VindicatorRenderer$1/m_6494_ (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;ILnet/minecraft/world/entity/Entity;FFFFFF)V net/minecraft/client/renderer/entity/VindicatorRenderer$1/render (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;ILnet/minecraft/world/entity/Entity;FFFFFF)V +MD: net/minecraft/client/renderer/entity/VindicatorRenderer$1/m_6494_ (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;ILnet/minecraft/world/entity/LivingEntity;FFFFFF)V net/minecraft/client/renderer/entity/VindicatorRenderer$1/render (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;ILnet/minecraft/world/entity/LivingEntity;FFFFFF)V +MD: net/minecraft/client/renderer/entity/VindicatorRenderer$1/m_6494_ (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;ILnet/minecraft/world/entity/monster/Vindicator;FFFFFF)V net/minecraft/client/renderer/entity/VindicatorRenderer$1/render (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;ILnet/minecraft/world/entity/monster/Vindicator;FFFFFF)V +MD: net/minecraft/client/renderer/entity/WanderingTraderRenderer/ ()V net/minecraft/client/renderer/entity/WanderingTraderRenderer/ ()V +MD: net/minecraft/client/renderer/entity/WanderingTraderRenderer/ (Lnet/minecraft/client/renderer/entity/EntityRendererProvider$Context;)V net/minecraft/client/renderer/entity/WanderingTraderRenderer/ (Lnet/minecraft/client/renderer/entity/EntityRendererProvider$Context;)V +MD: net/minecraft/client/renderer/entity/WanderingTraderRenderer/m_5478_ (Lnet/minecraft/world/entity/npc/WanderingTrader;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/client/renderer/entity/WanderingTraderRenderer/getTextureLocation (Lnet/minecraft/world/entity/npc/WanderingTrader;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/client/renderer/entity/WanderingTraderRenderer/m_5478_ (Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/client/renderer/entity/WanderingTraderRenderer/getTextureLocation (Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/client/renderer/entity/WanderingTraderRenderer/m_7546_ (Lnet/minecraft/world/entity/LivingEntity;Lcom/mojang/blaze3d/vertex/PoseStack;F)V net/minecraft/client/renderer/entity/WanderingTraderRenderer/scale (Lnet/minecraft/world/entity/LivingEntity;Lcom/mojang/blaze3d/vertex/PoseStack;F)V +MD: net/minecraft/client/renderer/entity/WanderingTraderRenderer/m_7546_ (Lnet/minecraft/world/entity/npc/WanderingTrader;Lcom/mojang/blaze3d/vertex/PoseStack;F)V net/minecraft/client/renderer/entity/WanderingTraderRenderer/scale (Lnet/minecraft/world/entity/npc/WanderingTrader;Lcom/mojang/blaze3d/vertex/PoseStack;F)V +MD: net/minecraft/client/renderer/entity/WardenRenderer/ ()V net/minecraft/client/renderer/entity/WardenRenderer/ ()V +MD: net/minecraft/client/renderer/entity/WardenRenderer/ (Lnet/minecraft/client/renderer/entity/EntityRendererProvider$Context;)V net/minecraft/client/renderer/entity/WardenRenderer/ (Lnet/minecraft/client/renderer/entity/EntityRendererProvider$Context;)V +MD: net/minecraft/client/renderer/entity/WardenRenderer/m_234792_ (Lnet/minecraft/world/entity/monster/warden/Warden;FF)F net/minecraft/client/renderer/entity/WardenRenderer/lambda$new$4 (Lnet/minecraft/world/entity/monster/warden/Warden;FF)F +MD: net/minecraft/client/renderer/entity/WardenRenderer/m_234796_ (Lnet/minecraft/world/entity/monster/warden/Warden;FF)F net/minecraft/client/renderer/entity/WardenRenderer/lambda$new$3 (Lnet/minecraft/world/entity/monster/warden/Warden;FF)F +MD: net/minecraft/client/renderer/entity/WardenRenderer/m_234800_ (Lnet/minecraft/world/entity/monster/warden/Warden;FF)F net/minecraft/client/renderer/entity/WardenRenderer/lambda$new$2 (Lnet/minecraft/world/entity/monster/warden/Warden;FF)F +MD: net/minecraft/client/renderer/entity/WardenRenderer/m_234804_ (Lnet/minecraft/world/entity/monster/warden/Warden;FF)F net/minecraft/client/renderer/entity/WardenRenderer/lambda$new$1 (Lnet/minecraft/world/entity/monster/warden/Warden;FF)F +MD: net/minecraft/client/renderer/entity/WardenRenderer/m_234808_ (Lnet/minecraft/world/entity/monster/warden/Warden;FF)F net/minecraft/client/renderer/entity/WardenRenderer/lambda$new$0 (Lnet/minecraft/world/entity/monster/warden/Warden;FF)F +MD: net/minecraft/client/renderer/entity/WardenRenderer/m_5478_ (Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/client/renderer/entity/WardenRenderer/getTextureLocation (Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/client/renderer/entity/WardenRenderer/m_5478_ (Lnet/minecraft/world/entity/monster/warden/Warden;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/client/renderer/entity/WardenRenderer/getTextureLocation (Lnet/minecraft/world/entity/monster/warden/Warden;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/client/renderer/entity/WitchRenderer/ ()V net/minecraft/client/renderer/entity/WitchRenderer/ ()V +MD: net/minecraft/client/renderer/entity/WitchRenderer/ (Lnet/minecraft/client/renderer/entity/EntityRendererProvider$Context;)V net/minecraft/client/renderer/entity/WitchRenderer/ (Lnet/minecraft/client/renderer/entity/EntityRendererProvider$Context;)V +MD: net/minecraft/client/renderer/entity/WitchRenderer/m_5478_ (Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/client/renderer/entity/WitchRenderer/getTextureLocation (Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/client/renderer/entity/WitchRenderer/m_5478_ (Lnet/minecraft/world/entity/monster/Witch;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/client/renderer/entity/WitchRenderer/getTextureLocation (Lnet/minecraft/world/entity/monster/Witch;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/client/renderer/entity/WitchRenderer/m_7392_ (Lnet/minecraft/world/entity/Mob;FFLcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;I)V net/minecraft/client/renderer/entity/WitchRenderer/render (Lnet/minecraft/world/entity/Mob;FFLcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;I)V +MD: net/minecraft/client/renderer/entity/WitchRenderer/m_7392_ (Lnet/minecraft/world/entity/Entity;FFLcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;I)V net/minecraft/client/renderer/entity/WitchRenderer/render (Lnet/minecraft/world/entity/Entity;FFLcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;I)V +MD: net/minecraft/client/renderer/entity/WitchRenderer/m_7392_ (Lnet/minecraft/world/entity/monster/Witch;FFLcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;I)V net/minecraft/client/renderer/entity/WitchRenderer/render (Lnet/minecraft/world/entity/monster/Witch;FFLcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;I)V +MD: net/minecraft/client/renderer/entity/WitchRenderer/m_7392_ (Lnet/minecraft/world/entity/LivingEntity;FFLcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;I)V net/minecraft/client/renderer/entity/WitchRenderer/render (Lnet/minecraft/world/entity/LivingEntity;FFLcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;I)V +MD: net/minecraft/client/renderer/entity/WitchRenderer/m_7546_ (Lnet/minecraft/world/entity/monster/Witch;Lcom/mojang/blaze3d/vertex/PoseStack;F)V net/minecraft/client/renderer/entity/WitchRenderer/scale (Lnet/minecraft/world/entity/monster/Witch;Lcom/mojang/blaze3d/vertex/PoseStack;F)V +MD: net/minecraft/client/renderer/entity/WitchRenderer/m_7546_ (Lnet/minecraft/world/entity/LivingEntity;Lcom/mojang/blaze3d/vertex/PoseStack;F)V net/minecraft/client/renderer/entity/WitchRenderer/scale (Lnet/minecraft/world/entity/LivingEntity;Lcom/mojang/blaze3d/vertex/PoseStack;F)V +MD: net/minecraft/client/renderer/entity/WitherBossRenderer/ ()V net/minecraft/client/renderer/entity/WitherBossRenderer/ ()V +MD: net/minecraft/client/renderer/entity/WitherBossRenderer/ (Lnet/minecraft/client/renderer/entity/EntityRendererProvider$Context;)V net/minecraft/client/renderer/entity/WitherBossRenderer/ (Lnet/minecraft/client/renderer/entity/EntityRendererProvider$Context;)V +MD: net/minecraft/client/renderer/entity/WitherBossRenderer/m_5478_ (Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/client/renderer/entity/WitherBossRenderer/getTextureLocation (Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/client/renderer/entity/WitherBossRenderer/m_5478_ (Lnet/minecraft/world/entity/boss/wither/WitherBoss;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/client/renderer/entity/WitherBossRenderer/getTextureLocation (Lnet/minecraft/world/entity/boss/wither/WitherBoss;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/client/renderer/entity/WitherBossRenderer/m_6086_ (Lnet/minecraft/world/entity/Entity;Lnet/minecraft/core/BlockPos;)I net/minecraft/client/renderer/entity/WitherBossRenderer/getBlockLightLevel (Lnet/minecraft/world/entity/Entity;Lnet/minecraft/core/BlockPos;)I +MD: net/minecraft/client/renderer/entity/WitherBossRenderer/m_6086_ (Lnet/minecraft/world/entity/boss/wither/WitherBoss;Lnet/minecraft/core/BlockPos;)I net/minecraft/client/renderer/entity/WitherBossRenderer/getBlockLightLevel (Lnet/minecraft/world/entity/boss/wither/WitherBoss;Lnet/minecraft/core/BlockPos;)I +MD: net/minecraft/client/renderer/entity/WitherBossRenderer/m_7546_ (Lnet/minecraft/world/entity/LivingEntity;Lcom/mojang/blaze3d/vertex/PoseStack;F)V net/minecraft/client/renderer/entity/WitherBossRenderer/scale (Lnet/minecraft/world/entity/LivingEntity;Lcom/mojang/blaze3d/vertex/PoseStack;F)V +MD: net/minecraft/client/renderer/entity/WitherBossRenderer/m_7546_ (Lnet/minecraft/world/entity/boss/wither/WitherBoss;Lcom/mojang/blaze3d/vertex/PoseStack;F)V net/minecraft/client/renderer/entity/WitherBossRenderer/scale (Lnet/minecraft/world/entity/boss/wither/WitherBoss;Lcom/mojang/blaze3d/vertex/PoseStack;F)V +MD: net/minecraft/client/renderer/entity/WitherSkeletonRenderer/ ()V net/minecraft/client/renderer/entity/WitherSkeletonRenderer/ ()V +MD: net/minecraft/client/renderer/entity/WitherSkeletonRenderer/ (Lnet/minecraft/client/renderer/entity/EntityRendererProvider$Context;)V net/minecraft/client/renderer/entity/WitherSkeletonRenderer/ (Lnet/minecraft/client/renderer/entity/EntityRendererProvider$Context;)V +MD: net/minecraft/client/renderer/entity/WitherSkeletonRenderer/m_5478_ (Lnet/minecraft/world/entity/monster/AbstractSkeleton;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/client/renderer/entity/WitherSkeletonRenderer/getTextureLocation (Lnet/minecraft/world/entity/monster/AbstractSkeleton;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/client/renderer/entity/WitherSkeletonRenderer/m_5478_ (Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/client/renderer/entity/WitherSkeletonRenderer/getTextureLocation (Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/client/renderer/entity/WitherSkeletonRenderer/m_7546_ (Lnet/minecraft/world/entity/monster/AbstractSkeleton;Lcom/mojang/blaze3d/vertex/PoseStack;F)V net/minecraft/client/renderer/entity/WitherSkeletonRenderer/scale (Lnet/minecraft/world/entity/monster/AbstractSkeleton;Lcom/mojang/blaze3d/vertex/PoseStack;F)V +MD: net/minecraft/client/renderer/entity/WitherSkeletonRenderer/m_7546_ (Lnet/minecraft/world/entity/LivingEntity;Lcom/mojang/blaze3d/vertex/PoseStack;F)V net/minecraft/client/renderer/entity/WitherSkeletonRenderer/scale (Lnet/minecraft/world/entity/LivingEntity;Lcom/mojang/blaze3d/vertex/PoseStack;F)V +MD: net/minecraft/client/renderer/entity/WitherSkullRenderer/ ()V net/minecraft/client/renderer/entity/WitherSkullRenderer/ ()V +MD: net/minecraft/client/renderer/entity/WitherSkullRenderer/ (Lnet/minecraft/client/renderer/entity/EntityRendererProvider$Context;)V net/minecraft/client/renderer/entity/WitherSkullRenderer/ (Lnet/minecraft/client/renderer/entity/EntityRendererProvider$Context;)V +MD: net/minecraft/client/renderer/entity/WitherSkullRenderer/m_174450_ ()Lnet/minecraft/client/model/geom/builders/LayerDefinition; net/minecraft/client/renderer/entity/WitherSkullRenderer/createSkullLayer ()Lnet/minecraft/client/model/geom/builders/LayerDefinition; +MD: net/minecraft/client/renderer/entity/WitherSkullRenderer/m_5478_ (Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/client/renderer/entity/WitherSkullRenderer/getTextureLocation (Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/client/renderer/entity/WitherSkullRenderer/m_5478_ (Lnet/minecraft/world/entity/projectile/WitherSkull;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/client/renderer/entity/WitherSkullRenderer/getTextureLocation (Lnet/minecraft/world/entity/projectile/WitherSkull;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/client/renderer/entity/WitherSkullRenderer/m_6086_ (Lnet/minecraft/world/entity/Entity;Lnet/minecraft/core/BlockPos;)I net/minecraft/client/renderer/entity/WitherSkullRenderer/getBlockLightLevel (Lnet/minecraft/world/entity/Entity;Lnet/minecraft/core/BlockPos;)I +MD: net/minecraft/client/renderer/entity/WitherSkullRenderer/m_6086_ (Lnet/minecraft/world/entity/projectile/WitherSkull;Lnet/minecraft/core/BlockPos;)I net/minecraft/client/renderer/entity/WitherSkullRenderer/getBlockLightLevel (Lnet/minecraft/world/entity/projectile/WitherSkull;Lnet/minecraft/core/BlockPos;)I +MD: net/minecraft/client/renderer/entity/WitherSkullRenderer/m_7392_ (Lnet/minecraft/world/entity/projectile/WitherSkull;FFLcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;I)V net/minecraft/client/renderer/entity/WitherSkullRenderer/render (Lnet/minecraft/world/entity/projectile/WitherSkull;FFLcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;I)V +MD: net/minecraft/client/renderer/entity/WitherSkullRenderer/m_7392_ (Lnet/minecraft/world/entity/Entity;FFLcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;I)V net/minecraft/client/renderer/entity/WitherSkullRenderer/render (Lnet/minecraft/world/entity/Entity;FFLcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;I)V +MD: net/minecraft/client/renderer/entity/WolfRenderer/ ()V net/minecraft/client/renderer/entity/WolfRenderer/ ()V +MD: net/minecraft/client/renderer/entity/WolfRenderer/ (Lnet/minecraft/client/renderer/entity/EntityRendererProvider$Context;)V net/minecraft/client/renderer/entity/WolfRenderer/ (Lnet/minecraft/client/renderer/entity/EntityRendererProvider$Context;)V +MD: net/minecraft/client/renderer/entity/WolfRenderer/m_5478_ (Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/client/renderer/entity/WolfRenderer/getTextureLocation (Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/client/renderer/entity/WolfRenderer/m_5478_ (Lnet/minecraft/world/entity/animal/Wolf;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/client/renderer/entity/WolfRenderer/getTextureLocation (Lnet/minecraft/world/entity/animal/Wolf;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/client/renderer/entity/WolfRenderer/m_6930_ (Lnet/minecraft/world/entity/animal/Wolf;F)F net/minecraft/client/renderer/entity/WolfRenderer/getBob (Lnet/minecraft/world/entity/animal/Wolf;F)F +MD: net/minecraft/client/renderer/entity/WolfRenderer/m_6930_ (Lnet/minecraft/world/entity/LivingEntity;F)F net/minecraft/client/renderer/entity/WolfRenderer/getBob (Lnet/minecraft/world/entity/LivingEntity;F)F +MD: net/minecraft/client/renderer/entity/WolfRenderer/m_7392_ (Lnet/minecraft/world/entity/Mob;FFLcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;I)V net/minecraft/client/renderer/entity/WolfRenderer/render (Lnet/minecraft/world/entity/Mob;FFLcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;I)V +MD: net/minecraft/client/renderer/entity/WolfRenderer/m_7392_ (Lnet/minecraft/world/entity/animal/Wolf;FFLcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;I)V net/minecraft/client/renderer/entity/WolfRenderer/render (Lnet/minecraft/world/entity/animal/Wolf;FFLcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;I)V +MD: net/minecraft/client/renderer/entity/WolfRenderer/m_7392_ (Lnet/minecraft/world/entity/Entity;FFLcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;I)V net/minecraft/client/renderer/entity/WolfRenderer/render (Lnet/minecraft/world/entity/Entity;FFLcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;I)V +MD: net/minecraft/client/renderer/entity/WolfRenderer/m_7392_ (Lnet/minecraft/world/entity/LivingEntity;FFLcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;I)V net/minecraft/client/renderer/entity/WolfRenderer/render (Lnet/minecraft/world/entity/LivingEntity;FFLcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;I)V +MD: net/minecraft/client/renderer/entity/ZoglinRenderer/ ()V net/minecraft/client/renderer/entity/ZoglinRenderer/ ()V +MD: net/minecraft/client/renderer/entity/ZoglinRenderer/ (Lnet/minecraft/client/renderer/entity/EntityRendererProvider$Context;)V net/minecraft/client/renderer/entity/ZoglinRenderer/ (Lnet/minecraft/client/renderer/entity/EntityRendererProvider$Context;)V +MD: net/minecraft/client/renderer/entity/ZoglinRenderer/m_5478_ (Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/client/renderer/entity/ZoglinRenderer/getTextureLocation (Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/client/renderer/entity/ZoglinRenderer/m_5478_ (Lnet/minecraft/world/entity/monster/Zoglin;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/client/renderer/entity/ZoglinRenderer/getTextureLocation (Lnet/minecraft/world/entity/monster/Zoglin;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/client/renderer/entity/ZombieRenderer/ (Lnet/minecraft/client/renderer/entity/EntityRendererProvider$Context;)V net/minecraft/client/renderer/entity/ZombieRenderer/ (Lnet/minecraft/client/renderer/entity/EntityRendererProvider$Context;)V +MD: net/minecraft/client/renderer/entity/ZombieRenderer/ (Lnet/minecraft/client/renderer/entity/EntityRendererProvider$Context;Lnet/minecraft/client/model/geom/ModelLayerLocation;Lnet/minecraft/client/model/geom/ModelLayerLocation;Lnet/minecraft/client/model/geom/ModelLayerLocation;)V net/minecraft/client/renderer/entity/ZombieRenderer/ (Lnet/minecraft/client/renderer/entity/EntityRendererProvider$Context;Lnet/minecraft/client/model/geom/ModelLayerLocation;Lnet/minecraft/client/model/geom/ModelLayerLocation;Lnet/minecraft/client/model/geom/ModelLayerLocation;)V +MD: net/minecraft/client/renderer/entity/ZombieVillagerRenderer/ ()V net/minecraft/client/renderer/entity/ZombieVillagerRenderer/ ()V +MD: net/minecraft/client/renderer/entity/ZombieVillagerRenderer/ (Lnet/minecraft/client/renderer/entity/EntityRendererProvider$Context;)V net/minecraft/client/renderer/entity/ZombieVillagerRenderer/ (Lnet/minecraft/client/renderer/entity/EntityRendererProvider$Context;)V +MD: net/minecraft/client/renderer/entity/ZombieVillagerRenderer/m_5478_ (Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/client/renderer/entity/ZombieVillagerRenderer/getTextureLocation (Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/client/renderer/entity/ZombieVillagerRenderer/m_5478_ (Lnet/minecraft/world/entity/monster/ZombieVillager;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/client/renderer/entity/ZombieVillagerRenderer/getTextureLocation (Lnet/minecraft/world/entity/monster/ZombieVillager;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/client/renderer/entity/ZombieVillagerRenderer/m_5936_ (Lnet/minecraft/world/entity/monster/ZombieVillager;)Z net/minecraft/client/renderer/entity/ZombieVillagerRenderer/isShaking (Lnet/minecraft/world/entity/monster/ZombieVillager;)Z +MD: net/minecraft/client/renderer/entity/ZombieVillagerRenderer/m_5936_ (Lnet/minecraft/world/entity/LivingEntity;)Z net/minecraft/client/renderer/entity/ZombieVillagerRenderer/isShaking (Lnet/minecraft/world/entity/LivingEntity;)Z +MD: net/minecraft/client/renderer/entity/layers/ArrowLayer/ (Lnet/minecraft/client/renderer/entity/EntityRendererProvider$Context;Lnet/minecraft/client/renderer/entity/LivingEntityRenderer;)V net/minecraft/client/renderer/entity/layers/ArrowLayer/ (Lnet/minecraft/client/renderer/entity/EntityRendererProvider$Context;Lnet/minecraft/client/renderer/entity/LivingEntityRenderer;)V +MD: net/minecraft/client/renderer/entity/layers/ArrowLayer/m_5558_ (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;ILnet/minecraft/world/entity/Entity;FFFF)V net/minecraft/client/renderer/entity/layers/ArrowLayer/renderStuckItem (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;ILnet/minecraft/world/entity/Entity;FFFF)V +MD: net/minecraft/client/renderer/entity/layers/ArrowLayer/m_7040_ (Lnet/minecraft/world/entity/LivingEntity;)I net/minecraft/client/renderer/entity/layers/ArrowLayer/numStuck (Lnet/minecraft/world/entity/LivingEntity;)I +MD: net/minecraft/client/renderer/entity/layers/BeeStingerLayer/ ()V net/minecraft/client/renderer/entity/layers/BeeStingerLayer/ ()V +MD: net/minecraft/client/renderer/entity/layers/BeeStingerLayer/ (Lnet/minecraft/client/renderer/entity/LivingEntityRenderer;)V net/minecraft/client/renderer/entity/layers/BeeStingerLayer/ (Lnet/minecraft/client/renderer/entity/LivingEntityRenderer;)V +MD: net/minecraft/client/renderer/entity/layers/BeeStingerLayer/m_253245_ (Lcom/mojang/blaze3d/vertex/VertexConsumer;Lorg/joml/Matrix4f;Lorg/joml/Matrix3f;FIFFI)V net/minecraft/client/renderer/entity/layers/BeeStingerLayer/vertex (Lcom/mojang/blaze3d/vertex/VertexConsumer;Lorg/joml/Matrix4f;Lorg/joml/Matrix3f;FIFFI)V +MD: net/minecraft/client/renderer/entity/layers/BeeStingerLayer/m_5558_ (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;ILnet/minecraft/world/entity/Entity;FFFF)V net/minecraft/client/renderer/entity/layers/BeeStingerLayer/renderStuckItem (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;ILnet/minecraft/world/entity/Entity;FFFF)V +MD: net/minecraft/client/renderer/entity/layers/BeeStingerLayer/m_7040_ (Lnet/minecraft/world/entity/LivingEntity;)I net/minecraft/client/renderer/entity/layers/BeeStingerLayer/numStuck (Lnet/minecraft/world/entity/LivingEntity;)I +MD: net/minecraft/client/renderer/entity/layers/CapeLayer/ (Lnet/minecraft/client/renderer/entity/RenderLayerParent;)V net/minecraft/client/renderer/entity/layers/CapeLayer/ (Lnet/minecraft/client/renderer/entity/RenderLayerParent;)V +MD: net/minecraft/client/renderer/entity/layers/CapeLayer/m_6494_ (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;ILnet/minecraft/world/entity/Entity;FFFFFF)V net/minecraft/client/renderer/entity/layers/CapeLayer/render (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;ILnet/minecraft/world/entity/Entity;FFFFFF)V +MD: net/minecraft/client/renderer/entity/layers/CapeLayer/m_6494_ (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;ILnet/minecraft/client/player/AbstractClientPlayer;FFFFFF)V net/minecraft/client/renderer/entity/layers/CapeLayer/render (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;ILnet/minecraft/client/player/AbstractClientPlayer;FFFFFF)V +MD: net/minecraft/client/renderer/entity/layers/CarriedBlockLayer/ (Lnet/minecraft/client/renderer/entity/RenderLayerParent;Lnet/minecraft/client/renderer/block/BlockRenderDispatcher;)V net/minecraft/client/renderer/entity/layers/CarriedBlockLayer/ (Lnet/minecraft/client/renderer/entity/RenderLayerParent;Lnet/minecraft/client/renderer/block/BlockRenderDispatcher;)V +MD: net/minecraft/client/renderer/entity/layers/CarriedBlockLayer/m_6494_ (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;ILnet/minecraft/world/entity/Entity;FFFFFF)V net/minecraft/client/renderer/entity/layers/CarriedBlockLayer/render (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;ILnet/minecraft/world/entity/Entity;FFFFFF)V +MD: net/minecraft/client/renderer/entity/layers/CarriedBlockLayer/m_6494_ (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;ILnet/minecraft/world/entity/monster/EnderMan;FFFFFF)V net/minecraft/client/renderer/entity/layers/CarriedBlockLayer/render (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;ILnet/minecraft/world/entity/monster/EnderMan;FFFFFF)V +MD: net/minecraft/client/renderer/entity/layers/CatCollarLayer/ ()V net/minecraft/client/renderer/entity/layers/CatCollarLayer/ ()V +MD: net/minecraft/client/renderer/entity/layers/CatCollarLayer/ (Lnet/minecraft/client/renderer/entity/RenderLayerParent;Lnet/minecraft/client/model/geom/EntityModelSet;)V net/minecraft/client/renderer/entity/layers/CatCollarLayer/ (Lnet/minecraft/client/renderer/entity/RenderLayerParent;Lnet/minecraft/client/model/geom/EntityModelSet;)V +MD: net/minecraft/client/renderer/entity/layers/CatCollarLayer/m_6494_ (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;ILnet/minecraft/world/entity/Entity;FFFFFF)V net/minecraft/client/renderer/entity/layers/CatCollarLayer/render (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;ILnet/minecraft/world/entity/Entity;FFFFFF)V +MD: net/minecraft/client/renderer/entity/layers/CatCollarLayer/m_6494_ (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;ILnet/minecraft/world/entity/animal/Cat;FFFFFF)V net/minecraft/client/renderer/entity/layers/CatCollarLayer/render (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;ILnet/minecraft/world/entity/animal/Cat;FFFFFF)V +MD: net/minecraft/client/renderer/entity/layers/CreeperPowerLayer/ ()V net/minecraft/client/renderer/entity/layers/CreeperPowerLayer/ ()V +MD: net/minecraft/client/renderer/entity/layers/CreeperPowerLayer/ (Lnet/minecraft/client/renderer/entity/RenderLayerParent;Lnet/minecraft/client/model/geom/EntityModelSet;)V net/minecraft/client/renderer/entity/layers/CreeperPowerLayer/ (Lnet/minecraft/client/renderer/entity/RenderLayerParent;Lnet/minecraft/client/model/geom/EntityModelSet;)V +MD: net/minecraft/client/renderer/entity/layers/CreeperPowerLayer/m_7029_ ()Lnet/minecraft/resources/ResourceLocation; net/minecraft/client/renderer/entity/layers/CreeperPowerLayer/getTextureLocation ()Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/client/renderer/entity/layers/CreeperPowerLayer/m_7193_ ()Lnet/minecraft/client/model/EntityModel; net/minecraft/client/renderer/entity/layers/CreeperPowerLayer/model ()Lnet/minecraft/client/model/EntityModel; +MD: net/minecraft/client/renderer/entity/layers/CreeperPowerLayer/m_7631_ (F)F net/minecraft/client/renderer/entity/layers/CreeperPowerLayer/xOffset (F)F +MD: net/minecraft/client/renderer/entity/layers/CrossedArmsItemLayer/ (Lnet/minecraft/client/renderer/entity/RenderLayerParent;Lnet/minecraft/client/renderer/ItemInHandRenderer;)V net/minecraft/client/renderer/entity/layers/CrossedArmsItemLayer/ (Lnet/minecraft/client/renderer/entity/RenderLayerParent;Lnet/minecraft/client/renderer/ItemInHandRenderer;)V +MD: net/minecraft/client/renderer/entity/layers/CrossedArmsItemLayer/m_6494_ (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;ILnet/minecraft/world/entity/Entity;FFFFFF)V net/minecraft/client/renderer/entity/layers/CrossedArmsItemLayer/render (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;ILnet/minecraft/world/entity/Entity;FFFFFF)V +MD: net/minecraft/client/renderer/entity/layers/CrossedArmsItemLayer/m_6494_ (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;ILnet/minecraft/world/entity/LivingEntity;FFFFFF)V net/minecraft/client/renderer/entity/layers/CrossedArmsItemLayer/render (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;ILnet/minecraft/world/entity/LivingEntity;FFFFFF)V +MD: net/minecraft/client/renderer/entity/layers/CustomHeadLayer/ (Lnet/minecraft/client/renderer/entity/RenderLayerParent;Lnet/minecraft/client/model/geom/EntityModelSet;FFFLnet/minecraft/client/renderer/ItemInHandRenderer;)V net/minecraft/client/renderer/entity/layers/CustomHeadLayer/ (Lnet/minecraft/client/renderer/entity/RenderLayerParent;Lnet/minecraft/client/model/geom/EntityModelSet;FFFLnet/minecraft/client/renderer/ItemInHandRenderer;)V +MD: net/minecraft/client/renderer/entity/layers/CustomHeadLayer/ (Lnet/minecraft/client/renderer/entity/RenderLayerParent;Lnet/minecraft/client/model/geom/EntityModelSet;Lnet/minecraft/client/renderer/ItemInHandRenderer;)V net/minecraft/client/renderer/entity/layers/CustomHeadLayer/ (Lnet/minecraft/client/renderer/entity/RenderLayerParent;Lnet/minecraft/client/model/geom/EntityModelSet;Lnet/minecraft/client/renderer/ItemInHandRenderer;)V +MD: net/minecraft/client/renderer/entity/layers/CustomHeadLayer/m_174483_ (Lcom/mojang/blaze3d/vertex/PoseStack;Z)V net/minecraft/client/renderer/entity/layers/CustomHeadLayer/translateToHead (Lcom/mojang/blaze3d/vertex/PoseStack;Z)V +MD: net/minecraft/client/renderer/entity/layers/CustomHeadLayer/m_6494_ (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;ILnet/minecraft/world/entity/Entity;FFFFFF)V net/minecraft/client/renderer/entity/layers/CustomHeadLayer/render (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;ILnet/minecraft/world/entity/Entity;FFFFFF)V +MD: net/minecraft/client/renderer/entity/layers/CustomHeadLayer/m_6494_ (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;ILnet/minecraft/world/entity/LivingEntity;FFFFFF)V net/minecraft/client/renderer/entity/layers/CustomHeadLayer/render (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;ILnet/minecraft/world/entity/LivingEntity;FFFFFF)V +MD: net/minecraft/client/renderer/entity/layers/Deadmau5EarsLayer/ (Lnet/minecraft/client/renderer/entity/RenderLayerParent;)V net/minecraft/client/renderer/entity/layers/Deadmau5EarsLayer/ (Lnet/minecraft/client/renderer/entity/RenderLayerParent;)V +MD: net/minecraft/client/renderer/entity/layers/Deadmau5EarsLayer/m_6494_ (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;ILnet/minecraft/world/entity/Entity;FFFFFF)V net/minecraft/client/renderer/entity/layers/Deadmau5EarsLayer/render (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;ILnet/minecraft/world/entity/Entity;FFFFFF)V +MD: net/minecraft/client/renderer/entity/layers/Deadmau5EarsLayer/m_6494_ (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;ILnet/minecraft/client/player/AbstractClientPlayer;FFFFFF)V net/minecraft/client/renderer/entity/layers/Deadmau5EarsLayer/render (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;ILnet/minecraft/client/player/AbstractClientPlayer;FFFFFF)V +MD: net/minecraft/client/renderer/entity/layers/DolphinCarryingItemLayer/ (Lnet/minecraft/client/renderer/entity/RenderLayerParent;Lnet/minecraft/client/renderer/ItemInHandRenderer;)V net/minecraft/client/renderer/entity/layers/DolphinCarryingItemLayer/ (Lnet/minecraft/client/renderer/entity/RenderLayerParent;Lnet/minecraft/client/renderer/ItemInHandRenderer;)V +MD: net/minecraft/client/renderer/entity/layers/DolphinCarryingItemLayer/m_6494_ (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;ILnet/minecraft/world/entity/Entity;FFFFFF)V net/minecraft/client/renderer/entity/layers/DolphinCarryingItemLayer/render (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;ILnet/minecraft/world/entity/Entity;FFFFFF)V +MD: net/minecraft/client/renderer/entity/layers/DolphinCarryingItemLayer/m_6494_ (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;ILnet/minecraft/world/entity/animal/Dolphin;FFFFFF)V net/minecraft/client/renderer/entity/layers/DolphinCarryingItemLayer/render (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;ILnet/minecraft/world/entity/animal/Dolphin;FFFFFF)V +MD: net/minecraft/client/renderer/entity/layers/DrownedOuterLayer/ ()V net/minecraft/client/renderer/entity/layers/DrownedOuterLayer/ ()V +MD: net/minecraft/client/renderer/entity/layers/DrownedOuterLayer/ (Lnet/minecraft/client/renderer/entity/RenderLayerParent;Lnet/minecraft/client/model/geom/EntityModelSet;)V net/minecraft/client/renderer/entity/layers/DrownedOuterLayer/ (Lnet/minecraft/client/renderer/entity/RenderLayerParent;Lnet/minecraft/client/model/geom/EntityModelSet;)V +MD: net/minecraft/client/renderer/entity/layers/DrownedOuterLayer/m_6494_ (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;ILnet/minecraft/world/entity/Entity;FFFFFF)V net/minecraft/client/renderer/entity/layers/DrownedOuterLayer/render (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;ILnet/minecraft/world/entity/Entity;FFFFFF)V +MD: net/minecraft/client/renderer/entity/layers/DrownedOuterLayer/m_6494_ (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;ILnet/minecraft/world/entity/monster/Drowned;FFFFFF)V net/minecraft/client/renderer/entity/layers/DrownedOuterLayer/render (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;ILnet/minecraft/world/entity/monster/Drowned;FFFFFF)V +MD: net/minecraft/client/renderer/entity/layers/ElytraLayer/ ()V net/minecraft/client/renderer/entity/layers/ElytraLayer/ ()V +MD: net/minecraft/client/renderer/entity/layers/ElytraLayer/ (Lnet/minecraft/client/renderer/entity/RenderLayerParent;Lnet/minecraft/client/model/geom/EntityModelSet;)V net/minecraft/client/renderer/entity/layers/ElytraLayer/ (Lnet/minecraft/client/renderer/entity/RenderLayerParent;Lnet/minecraft/client/model/geom/EntityModelSet;)V +MD: net/minecraft/client/renderer/entity/layers/ElytraLayer/m_6494_ (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;ILnet/minecraft/world/entity/Entity;FFFFFF)V net/minecraft/client/renderer/entity/layers/ElytraLayer/render (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;ILnet/minecraft/world/entity/Entity;FFFFFF)V +MD: net/minecraft/client/renderer/entity/layers/ElytraLayer/m_6494_ (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;ILnet/minecraft/world/entity/LivingEntity;FFFFFF)V net/minecraft/client/renderer/entity/layers/ElytraLayer/render (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;ILnet/minecraft/world/entity/LivingEntity;FFFFFF)V +MD: net/minecraft/client/renderer/entity/layers/EnderEyesLayer/ ()V net/minecraft/client/renderer/entity/layers/EnderEyesLayer/ ()V +MD: net/minecraft/client/renderer/entity/layers/EnderEyesLayer/ (Lnet/minecraft/client/renderer/entity/RenderLayerParent;)V net/minecraft/client/renderer/entity/layers/EnderEyesLayer/ (Lnet/minecraft/client/renderer/entity/RenderLayerParent;)V +MD: net/minecraft/client/renderer/entity/layers/EnderEyesLayer/m_5708_ ()Lnet/minecraft/client/renderer/RenderType; net/minecraft/client/renderer/entity/layers/EnderEyesLayer/renderType ()Lnet/minecraft/client/renderer/RenderType; +MD: net/minecraft/client/renderer/entity/layers/EnergySwirlLayer/ (Lnet/minecraft/client/renderer/entity/RenderLayerParent;)V net/minecraft/client/renderer/entity/layers/EnergySwirlLayer/ (Lnet/minecraft/client/renderer/entity/RenderLayerParent;)V +MD: net/minecraft/client/renderer/entity/layers/EnergySwirlLayer/m_6494_ (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;ILnet/minecraft/world/entity/Entity;FFFFFF)V net/minecraft/client/renderer/entity/layers/EnergySwirlLayer/render (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;ILnet/minecraft/world/entity/Entity;FFFFFF)V +MD: net/minecraft/client/renderer/entity/layers/EnergySwirlLayer/m_7029_ ()Lnet/minecraft/resources/ResourceLocation; net/minecraft/client/renderer/entity/layers/EnergySwirlLayer/getTextureLocation ()Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/client/renderer/entity/layers/EnergySwirlLayer/m_7193_ ()Lnet/minecraft/client/model/EntityModel; net/minecraft/client/renderer/entity/layers/EnergySwirlLayer/model ()Lnet/minecraft/client/model/EntityModel; +MD: net/minecraft/client/renderer/entity/layers/EnergySwirlLayer/m_7631_ (F)F net/minecraft/client/renderer/entity/layers/EnergySwirlLayer/xOffset (F)F +MD: net/minecraft/client/renderer/entity/layers/EyesLayer/ (Lnet/minecraft/client/renderer/entity/RenderLayerParent;)V net/minecraft/client/renderer/entity/layers/EyesLayer/ (Lnet/minecraft/client/renderer/entity/RenderLayerParent;)V +MD: net/minecraft/client/renderer/entity/layers/EyesLayer/m_5708_ ()Lnet/minecraft/client/renderer/RenderType; net/minecraft/client/renderer/entity/layers/EyesLayer/renderType ()Lnet/minecraft/client/renderer/RenderType; +MD: net/minecraft/client/renderer/entity/layers/EyesLayer/m_6494_ (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;ILnet/minecraft/world/entity/Entity;FFFFFF)V net/minecraft/client/renderer/entity/layers/EyesLayer/render (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;ILnet/minecraft/world/entity/Entity;FFFFFF)V +MD: net/minecraft/client/renderer/entity/layers/FoxHeldItemLayer/ (Lnet/minecraft/client/renderer/entity/RenderLayerParent;Lnet/minecraft/client/renderer/ItemInHandRenderer;)V net/minecraft/client/renderer/entity/layers/FoxHeldItemLayer/ (Lnet/minecraft/client/renderer/entity/RenderLayerParent;Lnet/minecraft/client/renderer/ItemInHandRenderer;)V +MD: net/minecraft/client/renderer/entity/layers/FoxHeldItemLayer/m_6494_ (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;ILnet/minecraft/world/entity/Entity;FFFFFF)V net/minecraft/client/renderer/entity/layers/FoxHeldItemLayer/render (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;ILnet/minecraft/world/entity/Entity;FFFFFF)V +MD: net/minecraft/client/renderer/entity/layers/FoxHeldItemLayer/m_6494_ (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;ILnet/minecraft/world/entity/animal/Fox;FFFFFF)V net/minecraft/client/renderer/entity/layers/FoxHeldItemLayer/render (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;ILnet/minecraft/world/entity/animal/Fox;FFFFFF)V +MD: net/minecraft/client/renderer/entity/layers/HorseArmorLayer/ (Lnet/minecraft/client/renderer/entity/RenderLayerParent;Lnet/minecraft/client/model/geom/EntityModelSet;)V net/minecraft/client/renderer/entity/layers/HorseArmorLayer/ (Lnet/minecraft/client/renderer/entity/RenderLayerParent;Lnet/minecraft/client/model/geom/EntityModelSet;)V +MD: net/minecraft/client/renderer/entity/layers/HorseArmorLayer/m_6494_ (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;ILnet/minecraft/world/entity/Entity;FFFFFF)V net/minecraft/client/renderer/entity/layers/HorseArmorLayer/render (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;ILnet/minecraft/world/entity/Entity;FFFFFF)V +MD: net/minecraft/client/renderer/entity/layers/HorseArmorLayer/m_6494_ (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;ILnet/minecraft/world/entity/animal/horse/Horse;FFFFFF)V net/minecraft/client/renderer/entity/layers/HorseArmorLayer/render (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;ILnet/minecraft/world/entity/animal/horse/Horse;FFFFFF)V +MD: net/minecraft/client/renderer/entity/layers/HorseMarkingLayer/ ()V net/minecraft/client/renderer/entity/layers/HorseMarkingLayer/ ()V +MD: net/minecraft/client/renderer/entity/layers/HorseMarkingLayer/ (Lnet/minecraft/client/renderer/entity/RenderLayerParent;)V net/minecraft/client/renderer/entity/layers/HorseMarkingLayer/ (Lnet/minecraft/client/renderer/entity/RenderLayerParent;)V +MD: net/minecraft/client/renderer/entity/layers/HorseMarkingLayer/m_117068_ (Ljava/util/EnumMap;)V net/minecraft/client/renderer/entity/layers/HorseMarkingLayer/lambda$static$0 (Ljava/util/EnumMap;)V +MD: net/minecraft/client/renderer/entity/layers/HorseMarkingLayer/m_6494_ (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;ILnet/minecraft/world/entity/Entity;FFFFFF)V net/minecraft/client/renderer/entity/layers/HorseMarkingLayer/render (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;ILnet/minecraft/world/entity/Entity;FFFFFF)V +MD: net/minecraft/client/renderer/entity/layers/HorseMarkingLayer/m_6494_ (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;ILnet/minecraft/world/entity/animal/horse/Horse;FFFFFF)V net/minecraft/client/renderer/entity/layers/HorseMarkingLayer/render (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;ILnet/minecraft/world/entity/animal/horse/Horse;FFFFFF)V +MD: net/minecraft/client/renderer/entity/layers/HumanoidArmorLayer/ ()V net/minecraft/client/renderer/entity/layers/HumanoidArmorLayer/ ()V +MD: net/minecraft/client/renderer/entity/layers/HumanoidArmorLayer/ (Lnet/minecraft/client/renderer/entity/RenderLayerParent;Lnet/minecraft/client/model/HumanoidModel;Lnet/minecraft/client/model/HumanoidModel;Lnet/minecraft/client/resources/model/ModelManager;)V net/minecraft/client/renderer/entity/layers/HumanoidArmorLayer/ (Lnet/minecraft/client/renderer/entity/RenderLayerParent;Lnet/minecraft/client/model/HumanoidModel;Lnet/minecraft/client/model/HumanoidModel;Lnet/minecraft/client/resources/model/ModelManager;)V +MD: net/minecraft/client/renderer/entity/layers/HumanoidArmorLayer/m_117078_ (Lnet/minecraft/world/entity/EquipmentSlot;)Lnet/minecraft/client/model/HumanoidModel; net/minecraft/client/renderer/entity/layers/HumanoidArmorLayer/getArmorModel (Lnet/minecraft/world/entity/EquipmentSlot;)Lnet/minecraft/client/model/HumanoidModel; +MD: net/minecraft/client/renderer/entity/layers/HumanoidArmorLayer/m_117080_ (Lnet/minecraft/world/item/ArmorItem;ZLjava/lang/String;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/client/renderer/entity/layers/HumanoidArmorLayer/getArmorLocation (Lnet/minecraft/world/item/ArmorItem;ZLjava/lang/String;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/client/renderer/entity/layers/HumanoidArmorLayer/m_117118_ (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/entity/EquipmentSlot;ILnet/minecraft/client/model/HumanoidModel;)V net/minecraft/client/renderer/entity/layers/HumanoidArmorLayer/renderArmorPiece (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/entity/EquipmentSlot;ILnet/minecraft/client/model/HumanoidModel;)V +MD: net/minecraft/client/renderer/entity/layers/HumanoidArmorLayer/m_117125_ (Lnet/minecraft/client/model/HumanoidModel;Lnet/minecraft/world/entity/EquipmentSlot;)V net/minecraft/client/renderer/entity/layers/HumanoidArmorLayer/setPartVisibility (Lnet/minecraft/client/model/HumanoidModel;Lnet/minecraft/world/entity/EquipmentSlot;)V +MD: net/minecraft/client/renderer/entity/layers/HumanoidArmorLayer/m_117128_ (Lnet/minecraft/world/entity/EquipmentSlot;)Z net/minecraft/client/renderer/entity/layers/HumanoidArmorLayer/usesInnerModel (Lnet/minecraft/world/entity/EquipmentSlot;)Z +MD: net/minecraft/client/renderer/entity/layers/HumanoidArmorLayer/m_289594_ (Lnet/minecraft/world/item/ArmorItem;Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;ILnet/minecraft/client/model/HumanoidModel;ZLnet/minecraft/world/item/armortrim/ArmorTrim;)V net/minecraft/client/renderer/entity/layers/HumanoidArmorLayer/lambda$renderArmorPiece$0 (Lnet/minecraft/world/item/ArmorItem;Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;ILnet/minecraft/client/model/HumanoidModel;ZLnet/minecraft/world/item/armortrim/ArmorTrim;)V +MD: net/minecraft/client/renderer/entity/layers/HumanoidArmorLayer/m_289597_ (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;ILnet/minecraft/client/model/HumanoidModel;)V net/minecraft/client/renderer/entity/layers/HumanoidArmorLayer/renderGlint (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;ILnet/minecraft/client/model/HumanoidModel;)V +MD: net/minecraft/client/renderer/entity/layers/HumanoidArmorLayer/m_289604_ (Lnet/minecraft/world/item/ArmorMaterial;Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;ILnet/minecraft/world/item/armortrim/ArmorTrim;Lnet/minecraft/client/model/HumanoidModel;Z)V net/minecraft/client/renderer/entity/layers/HumanoidArmorLayer/renderTrim (Lnet/minecraft/world/item/ArmorMaterial;Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;ILnet/minecraft/world/item/armortrim/ArmorTrim;Lnet/minecraft/client/model/HumanoidModel;Z)V +MD: net/minecraft/client/renderer/entity/layers/HumanoidArmorLayer/m_289609_ (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;ILnet/minecraft/world/item/ArmorItem;Lnet/minecraft/client/model/HumanoidModel;ZFFFLjava/lang/String;)V net/minecraft/client/renderer/entity/layers/HumanoidArmorLayer/renderModel (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;ILnet/minecraft/world/item/ArmorItem;Lnet/minecraft/client/model/HumanoidModel;ZFFFLjava/lang/String;)V +MD: net/minecraft/client/renderer/entity/layers/HumanoidArmorLayer/m_6494_ (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;ILnet/minecraft/world/entity/Entity;FFFFFF)V net/minecraft/client/renderer/entity/layers/HumanoidArmorLayer/render (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;ILnet/minecraft/world/entity/Entity;FFFFFF)V +MD: net/minecraft/client/renderer/entity/layers/HumanoidArmorLayer/m_6494_ (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;ILnet/minecraft/world/entity/LivingEntity;FFFFFF)V net/minecraft/client/renderer/entity/layers/HumanoidArmorLayer/render (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;ILnet/minecraft/world/entity/LivingEntity;FFFFFF)V +MD: net/minecraft/client/renderer/entity/layers/HumanoidArmorLayer$1/ ()V net/minecraft/client/renderer/entity/layers/HumanoidArmorLayer$1/ ()V +MD: net/minecraft/client/renderer/entity/layers/IronGolemCrackinessLayer/ ()V net/minecraft/client/renderer/entity/layers/IronGolemCrackinessLayer/ ()V +MD: net/minecraft/client/renderer/entity/layers/IronGolemCrackinessLayer/ (Lnet/minecraft/client/renderer/entity/RenderLayerParent;)V net/minecraft/client/renderer/entity/layers/IronGolemCrackinessLayer/ (Lnet/minecraft/client/renderer/entity/RenderLayerParent;)V +MD: net/minecraft/client/renderer/entity/layers/IronGolemCrackinessLayer/m_6494_ (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;ILnet/minecraft/world/entity/Entity;FFFFFF)V net/minecraft/client/renderer/entity/layers/IronGolemCrackinessLayer/render (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;ILnet/minecraft/world/entity/Entity;FFFFFF)V +MD: net/minecraft/client/renderer/entity/layers/IronGolemCrackinessLayer/m_6494_ (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;ILnet/minecraft/world/entity/animal/IronGolem;FFFFFF)V net/minecraft/client/renderer/entity/layers/IronGolemCrackinessLayer/render (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;ILnet/minecraft/world/entity/animal/IronGolem;FFFFFF)V +MD: net/minecraft/client/renderer/entity/layers/IronGolemFlowerLayer/ (Lnet/minecraft/client/renderer/entity/RenderLayerParent;Lnet/minecraft/client/renderer/block/BlockRenderDispatcher;)V net/minecraft/client/renderer/entity/layers/IronGolemFlowerLayer/ (Lnet/minecraft/client/renderer/entity/RenderLayerParent;Lnet/minecraft/client/renderer/block/BlockRenderDispatcher;)V +MD: net/minecraft/client/renderer/entity/layers/IronGolemFlowerLayer/m_6494_ (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;ILnet/minecraft/world/entity/Entity;FFFFFF)V net/minecraft/client/renderer/entity/layers/IronGolemFlowerLayer/render (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;ILnet/minecraft/world/entity/Entity;FFFFFF)V +MD: net/minecraft/client/renderer/entity/layers/IronGolemFlowerLayer/m_6494_ (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;ILnet/minecraft/world/entity/animal/IronGolem;FFFFFF)V net/minecraft/client/renderer/entity/layers/IronGolemFlowerLayer/render (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;ILnet/minecraft/world/entity/animal/IronGolem;FFFFFF)V +MD: net/minecraft/client/renderer/entity/layers/ItemInHandLayer/ (Lnet/minecraft/client/renderer/entity/RenderLayerParent;Lnet/minecraft/client/renderer/ItemInHandRenderer;)V net/minecraft/client/renderer/entity/layers/ItemInHandLayer/ (Lnet/minecraft/client/renderer/entity/RenderLayerParent;Lnet/minecraft/client/renderer/ItemInHandRenderer;)V +MD: net/minecraft/client/renderer/entity/layers/ItemInHandLayer/m_117184_ (Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/item/ItemDisplayContext;Lnet/minecraft/world/entity/HumanoidArm;Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;I)V net/minecraft/client/renderer/entity/layers/ItemInHandLayer/renderArmWithItem (Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/item/ItemDisplayContext;Lnet/minecraft/world/entity/HumanoidArm;Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;I)V +MD: net/minecraft/client/renderer/entity/layers/ItemInHandLayer/m_6494_ (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;ILnet/minecraft/world/entity/Entity;FFFFFF)V net/minecraft/client/renderer/entity/layers/ItemInHandLayer/render (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;ILnet/minecraft/world/entity/Entity;FFFFFF)V +MD: net/minecraft/client/renderer/entity/layers/ItemInHandLayer/m_6494_ (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;ILnet/minecraft/world/entity/LivingEntity;FFFFFF)V net/minecraft/client/renderer/entity/layers/ItemInHandLayer/render (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;ILnet/minecraft/world/entity/LivingEntity;FFFFFF)V +MD: net/minecraft/client/renderer/entity/layers/LlamaDecorLayer/ ()V net/minecraft/client/renderer/entity/layers/LlamaDecorLayer/ ()V +MD: net/minecraft/client/renderer/entity/layers/LlamaDecorLayer/ (Lnet/minecraft/client/renderer/entity/RenderLayerParent;Lnet/minecraft/client/model/geom/EntityModelSet;)V net/minecraft/client/renderer/entity/layers/LlamaDecorLayer/ (Lnet/minecraft/client/renderer/entity/RenderLayerParent;Lnet/minecraft/client/model/geom/EntityModelSet;)V +MD: net/minecraft/client/renderer/entity/layers/LlamaDecorLayer/m_6494_ (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;ILnet/minecraft/world/entity/Entity;FFFFFF)V net/minecraft/client/renderer/entity/layers/LlamaDecorLayer/render (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;ILnet/minecraft/world/entity/Entity;FFFFFF)V +MD: net/minecraft/client/renderer/entity/layers/LlamaDecorLayer/m_6494_ (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;ILnet/minecraft/world/entity/animal/horse/Llama;FFFFFF)V net/minecraft/client/renderer/entity/layers/LlamaDecorLayer/render (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;ILnet/minecraft/world/entity/animal/horse/Llama;FFFFFF)V +MD: net/minecraft/client/renderer/entity/layers/MushroomCowMushroomLayer/ (Lnet/minecraft/client/renderer/entity/RenderLayerParent;Lnet/minecraft/client/renderer/block/BlockRenderDispatcher;)V net/minecraft/client/renderer/entity/layers/MushroomCowMushroomLayer/ (Lnet/minecraft/client/renderer/entity/RenderLayerParent;Lnet/minecraft/client/renderer/block/BlockRenderDispatcher;)V +MD: net/minecraft/client/renderer/entity/layers/MushroomCowMushroomLayer/m_234852_ (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;IZLnet/minecraft/world/level/block/state/BlockState;ILnet/minecraft/client/resources/model/BakedModel;)V net/minecraft/client/renderer/entity/layers/MushroomCowMushroomLayer/renderMushroomBlock (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;IZLnet/minecraft/world/level/block/state/BlockState;ILnet/minecraft/client/resources/model/BakedModel;)V +MD: net/minecraft/client/renderer/entity/layers/MushroomCowMushroomLayer/m_6494_ (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;ILnet/minecraft/world/entity/Entity;FFFFFF)V net/minecraft/client/renderer/entity/layers/MushroomCowMushroomLayer/render (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;ILnet/minecraft/world/entity/Entity;FFFFFF)V +MD: net/minecraft/client/renderer/entity/layers/MushroomCowMushroomLayer/m_6494_ (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;ILnet/minecraft/world/entity/animal/MushroomCow;FFFFFF)V net/minecraft/client/renderer/entity/layers/MushroomCowMushroomLayer/render (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;ILnet/minecraft/world/entity/animal/MushroomCow;FFFFFF)V +MD: net/minecraft/client/renderer/entity/layers/PandaHoldsItemLayer/ (Lnet/minecraft/client/renderer/entity/RenderLayerParent;Lnet/minecraft/client/renderer/ItemInHandRenderer;)V net/minecraft/client/renderer/entity/layers/PandaHoldsItemLayer/ (Lnet/minecraft/client/renderer/entity/RenderLayerParent;Lnet/minecraft/client/renderer/ItemInHandRenderer;)V +MD: net/minecraft/client/renderer/entity/layers/PandaHoldsItemLayer/m_6494_ (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;ILnet/minecraft/world/entity/Entity;FFFFFF)V net/minecraft/client/renderer/entity/layers/PandaHoldsItemLayer/render (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;ILnet/minecraft/world/entity/Entity;FFFFFF)V +MD: net/minecraft/client/renderer/entity/layers/PandaHoldsItemLayer/m_6494_ (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;ILnet/minecraft/world/entity/animal/Panda;FFFFFF)V net/minecraft/client/renderer/entity/layers/PandaHoldsItemLayer/render (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;ILnet/minecraft/world/entity/animal/Panda;FFFFFF)V +MD: net/minecraft/client/renderer/entity/layers/ParrotOnShoulderLayer/ (Lnet/minecraft/client/renderer/entity/RenderLayerParent;Lnet/minecraft/client/model/geom/EntityModelSet;)V net/minecraft/client/renderer/entity/layers/ParrotOnShoulderLayer/ (Lnet/minecraft/client/renderer/entity/RenderLayerParent;Lnet/minecraft/client/model/geom/EntityModelSet;)V +MD: net/minecraft/client/renderer/entity/layers/ParrotOnShoulderLayer/m_117293_ (Lnet/minecraft/world/entity/EntityType;)Z net/minecraft/client/renderer/entity/layers/ParrotOnShoulderLayer/lambda$render$0 (Lnet/minecraft/world/entity/EntityType;)Z +MD: net/minecraft/client/renderer/entity/layers/ParrotOnShoulderLayer/m_117317_ (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;ILnet/minecraft/world/entity/player/Player;FFFFZ)V net/minecraft/client/renderer/entity/layers/ParrotOnShoulderLayer/render (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;ILnet/minecraft/world/entity/player/Player;FFFFZ)V +MD: net/minecraft/client/renderer/entity/layers/ParrotOnShoulderLayer/m_262347_ (Lcom/mojang/blaze3d/vertex/PoseStack;ZLnet/minecraft/world/entity/player/Player;Lnet/minecraft/nbt/CompoundTag;Lnet/minecraft/client/renderer/MultiBufferSource;IFFFFLnet/minecraft/world/entity/EntityType;)V net/minecraft/client/renderer/entity/layers/ParrotOnShoulderLayer/lambda$render$1 (Lcom/mojang/blaze3d/vertex/PoseStack;ZLnet/minecraft/world/entity/player/Player;Lnet/minecraft/nbt/CompoundTag;Lnet/minecraft/client/renderer/MultiBufferSource;IFFFFLnet/minecraft/world/entity/EntityType;)V +MD: net/minecraft/client/renderer/entity/layers/ParrotOnShoulderLayer/m_6494_ (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;ILnet/minecraft/world/entity/Entity;FFFFFF)V net/minecraft/client/renderer/entity/layers/ParrotOnShoulderLayer/render (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;ILnet/minecraft/world/entity/Entity;FFFFFF)V +MD: net/minecraft/client/renderer/entity/layers/ParrotOnShoulderLayer/m_6494_ (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;ILnet/minecraft/world/entity/player/Player;FFFFFF)V net/minecraft/client/renderer/entity/layers/ParrotOnShoulderLayer/render (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;ILnet/minecraft/world/entity/player/Player;FFFFFF)V +MD: net/minecraft/client/renderer/entity/layers/PhantomEyesLayer/ ()V net/minecraft/client/renderer/entity/layers/PhantomEyesLayer/ ()V +MD: net/minecraft/client/renderer/entity/layers/PhantomEyesLayer/ (Lnet/minecraft/client/renderer/entity/RenderLayerParent;)V net/minecraft/client/renderer/entity/layers/PhantomEyesLayer/ (Lnet/minecraft/client/renderer/entity/RenderLayerParent;)V +MD: net/minecraft/client/renderer/entity/layers/PhantomEyesLayer/m_5708_ ()Lnet/minecraft/client/renderer/RenderType; net/minecraft/client/renderer/entity/layers/PhantomEyesLayer/renderType ()Lnet/minecraft/client/renderer/RenderType; +MD: net/minecraft/client/renderer/entity/layers/PlayerItemInHandLayer/ (Lnet/minecraft/client/renderer/entity/RenderLayerParent;Lnet/minecraft/client/renderer/ItemInHandRenderer;)V net/minecraft/client/renderer/entity/layers/PlayerItemInHandLayer/ (Lnet/minecraft/client/renderer/entity/RenderLayerParent;Lnet/minecraft/client/renderer/ItemInHandRenderer;)V +MD: net/minecraft/client/renderer/entity/layers/PlayerItemInHandLayer/m_117184_ (Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/item/ItemDisplayContext;Lnet/minecraft/world/entity/HumanoidArm;Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;I)V net/minecraft/client/renderer/entity/layers/PlayerItemInHandLayer/renderArmWithItem (Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/item/ItemDisplayContext;Lnet/minecraft/world/entity/HumanoidArm;Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;I)V +MD: net/minecraft/client/renderer/entity/layers/PlayerItemInHandLayer/m_174517_ (Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/entity/HumanoidArm;Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;I)V net/minecraft/client/renderer/entity/layers/PlayerItemInHandLayer/renderArmWithSpyglass (Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/entity/HumanoidArm;Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;I)V +MD: net/minecraft/client/renderer/entity/layers/RenderLayer/ (Lnet/minecraft/client/renderer/entity/RenderLayerParent;)V net/minecraft/client/renderer/entity/layers/RenderLayer/ (Lnet/minecraft/client/renderer/entity/RenderLayerParent;)V +MD: net/minecraft/client/renderer/entity/layers/RenderLayer/m_117347_ (Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/client/renderer/entity/layers/RenderLayer/getTextureLocation (Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/client/renderer/entity/layers/RenderLayer/m_117359_ (Lnet/minecraft/client/model/EntityModel;Lnet/minecraft/client/model/EntityModel;Lnet/minecraft/resources/ResourceLocation;Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;ILnet/minecraft/world/entity/LivingEntity;FFFFFFFFF)V net/minecraft/client/renderer/entity/layers/RenderLayer/coloredCutoutModelCopyLayerRender (Lnet/minecraft/client/model/EntityModel;Lnet/minecraft/client/model/EntityModel;Lnet/minecraft/resources/ResourceLocation;Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;ILnet/minecraft/world/entity/LivingEntity;FFFFFFFFF)V +MD: net/minecraft/client/renderer/entity/layers/RenderLayer/m_117376_ (Lnet/minecraft/client/model/EntityModel;Lnet/minecraft/resources/ResourceLocation;Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;ILnet/minecraft/world/entity/LivingEntity;FFF)V net/minecraft/client/renderer/entity/layers/RenderLayer/renderColoredCutoutModel (Lnet/minecraft/client/model/EntityModel;Lnet/minecraft/resources/ResourceLocation;Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;ILnet/minecraft/world/entity/LivingEntity;FFF)V +MD: net/minecraft/client/renderer/entity/layers/RenderLayer/m_117386_ ()Lnet/minecraft/client/model/EntityModel; net/minecraft/client/renderer/entity/layers/RenderLayer/getParentModel ()Lnet/minecraft/client/model/EntityModel; +MD: net/minecraft/client/renderer/entity/layers/RenderLayer/m_6494_ (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;ILnet/minecraft/world/entity/Entity;FFFFFF)V net/minecraft/client/renderer/entity/layers/RenderLayer/render (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;ILnet/minecraft/world/entity/Entity;FFFFFF)V +MD: net/minecraft/client/renderer/entity/layers/SaddleLayer/ (Lnet/minecraft/client/renderer/entity/RenderLayerParent;Lnet/minecraft/client/model/EntityModel;Lnet/minecraft/resources/ResourceLocation;)V net/minecraft/client/renderer/entity/layers/SaddleLayer/ (Lnet/minecraft/client/renderer/entity/RenderLayerParent;Lnet/minecraft/client/model/EntityModel;Lnet/minecraft/resources/ResourceLocation;)V +MD: net/minecraft/client/renderer/entity/layers/SaddleLayer/m_6494_ (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;ILnet/minecraft/world/entity/Entity;FFFFFF)V net/minecraft/client/renderer/entity/layers/SaddleLayer/render (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;ILnet/minecraft/world/entity/Entity;FFFFFF)V +MD: net/minecraft/client/renderer/entity/layers/SheepFurLayer/ ()V net/minecraft/client/renderer/entity/layers/SheepFurLayer/ ()V +MD: net/minecraft/client/renderer/entity/layers/SheepFurLayer/ (Lnet/minecraft/client/renderer/entity/RenderLayerParent;Lnet/minecraft/client/model/geom/EntityModelSet;)V net/minecraft/client/renderer/entity/layers/SheepFurLayer/ (Lnet/minecraft/client/renderer/entity/RenderLayerParent;Lnet/minecraft/client/model/geom/EntityModelSet;)V +MD: net/minecraft/client/renderer/entity/layers/SheepFurLayer/m_6494_ (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;ILnet/minecraft/world/entity/Entity;FFFFFF)V net/minecraft/client/renderer/entity/layers/SheepFurLayer/render (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;ILnet/minecraft/world/entity/Entity;FFFFFF)V +MD: net/minecraft/client/renderer/entity/layers/SheepFurLayer/m_6494_ (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;ILnet/minecraft/world/entity/animal/Sheep;FFFFFF)V net/minecraft/client/renderer/entity/layers/SheepFurLayer/render (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;ILnet/minecraft/world/entity/animal/Sheep;FFFFFF)V +MD: net/minecraft/client/renderer/entity/layers/ShulkerHeadLayer/ (Lnet/minecraft/client/renderer/entity/RenderLayerParent;)V net/minecraft/client/renderer/entity/layers/ShulkerHeadLayer/ (Lnet/minecraft/client/renderer/entity/RenderLayerParent;)V +MD: net/minecraft/client/renderer/entity/layers/ShulkerHeadLayer/m_6494_ (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;ILnet/minecraft/world/entity/Entity;FFFFFF)V net/minecraft/client/renderer/entity/layers/ShulkerHeadLayer/render (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;ILnet/minecraft/world/entity/Entity;FFFFFF)V +MD: net/minecraft/client/renderer/entity/layers/ShulkerHeadLayer/m_6494_ (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;ILnet/minecraft/world/entity/monster/Shulker;FFFFFF)V net/minecraft/client/renderer/entity/layers/ShulkerHeadLayer/render (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;ILnet/minecraft/world/entity/monster/Shulker;FFFFFF)V +MD: net/minecraft/client/renderer/entity/layers/SlimeOuterLayer/ (Lnet/minecraft/client/renderer/entity/RenderLayerParent;Lnet/minecraft/client/model/geom/EntityModelSet;)V net/minecraft/client/renderer/entity/layers/SlimeOuterLayer/ (Lnet/minecraft/client/renderer/entity/RenderLayerParent;Lnet/minecraft/client/model/geom/EntityModelSet;)V +MD: net/minecraft/client/renderer/entity/layers/SlimeOuterLayer/m_6494_ (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;ILnet/minecraft/world/entity/Entity;FFFFFF)V net/minecraft/client/renderer/entity/layers/SlimeOuterLayer/render (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;ILnet/minecraft/world/entity/Entity;FFFFFF)V +MD: net/minecraft/client/renderer/entity/layers/SlimeOuterLayer/m_6494_ (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;ILnet/minecraft/world/entity/LivingEntity;FFFFFF)V net/minecraft/client/renderer/entity/layers/SlimeOuterLayer/render (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;ILnet/minecraft/world/entity/LivingEntity;FFFFFF)V +MD: net/minecraft/client/renderer/entity/layers/SnowGolemHeadLayer/ (Lnet/minecraft/client/renderer/entity/RenderLayerParent;Lnet/minecraft/client/renderer/block/BlockRenderDispatcher;Lnet/minecraft/client/renderer/entity/ItemRenderer;)V net/minecraft/client/renderer/entity/layers/SnowGolemHeadLayer/ (Lnet/minecraft/client/renderer/entity/RenderLayerParent;Lnet/minecraft/client/renderer/block/BlockRenderDispatcher;Lnet/minecraft/client/renderer/entity/ItemRenderer;)V +MD: net/minecraft/client/renderer/entity/layers/SnowGolemHeadLayer/m_6494_ (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;ILnet/minecraft/world/entity/Entity;FFFFFF)V net/minecraft/client/renderer/entity/layers/SnowGolemHeadLayer/render (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;ILnet/minecraft/world/entity/Entity;FFFFFF)V +MD: net/minecraft/client/renderer/entity/layers/SnowGolemHeadLayer/m_6494_ (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;ILnet/minecraft/world/entity/animal/SnowGolem;FFFFFF)V net/minecraft/client/renderer/entity/layers/SnowGolemHeadLayer/render (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;ILnet/minecraft/world/entity/animal/SnowGolem;FFFFFF)V +MD: net/minecraft/client/renderer/entity/layers/SpiderEyesLayer/ ()V net/minecraft/client/renderer/entity/layers/SpiderEyesLayer/ ()V +MD: net/minecraft/client/renderer/entity/layers/SpiderEyesLayer/ (Lnet/minecraft/client/renderer/entity/RenderLayerParent;)V net/minecraft/client/renderer/entity/layers/SpiderEyesLayer/ (Lnet/minecraft/client/renderer/entity/RenderLayerParent;)V +MD: net/minecraft/client/renderer/entity/layers/SpiderEyesLayer/m_5708_ ()Lnet/minecraft/client/renderer/RenderType; net/minecraft/client/renderer/entity/layers/SpiderEyesLayer/renderType ()Lnet/minecraft/client/renderer/RenderType; +MD: net/minecraft/client/renderer/entity/layers/SpinAttackEffectLayer/ ()V net/minecraft/client/renderer/entity/layers/SpinAttackEffectLayer/ ()V +MD: net/minecraft/client/renderer/entity/layers/SpinAttackEffectLayer/ (Lnet/minecraft/client/renderer/entity/RenderLayerParent;Lnet/minecraft/client/model/geom/EntityModelSet;)V net/minecraft/client/renderer/entity/layers/SpinAttackEffectLayer/ (Lnet/minecraft/client/renderer/entity/RenderLayerParent;Lnet/minecraft/client/model/geom/EntityModelSet;)V +MD: net/minecraft/client/renderer/entity/layers/SpinAttackEffectLayer/m_174542_ ()Lnet/minecraft/client/model/geom/builders/LayerDefinition; net/minecraft/client/renderer/entity/layers/SpinAttackEffectLayer/createLayer ()Lnet/minecraft/client/model/geom/builders/LayerDefinition; +MD: net/minecraft/client/renderer/entity/layers/SpinAttackEffectLayer/m_6494_ (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;ILnet/minecraft/world/entity/Entity;FFFFFF)V net/minecraft/client/renderer/entity/layers/SpinAttackEffectLayer/render (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;ILnet/minecraft/world/entity/Entity;FFFFFF)V +MD: net/minecraft/client/renderer/entity/layers/SpinAttackEffectLayer/m_6494_ (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;ILnet/minecraft/world/entity/LivingEntity;FFFFFF)V net/minecraft/client/renderer/entity/layers/SpinAttackEffectLayer/render (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;ILnet/minecraft/world/entity/LivingEntity;FFFFFF)V +MD: net/minecraft/client/renderer/entity/layers/StrayClothingLayer/ ()V net/minecraft/client/renderer/entity/layers/StrayClothingLayer/ ()V +MD: net/minecraft/client/renderer/entity/layers/StrayClothingLayer/ (Lnet/minecraft/client/renderer/entity/RenderLayerParent;Lnet/minecraft/client/model/geom/EntityModelSet;)V net/minecraft/client/renderer/entity/layers/StrayClothingLayer/ (Lnet/minecraft/client/renderer/entity/RenderLayerParent;Lnet/minecraft/client/model/geom/EntityModelSet;)V +MD: net/minecraft/client/renderer/entity/layers/StrayClothingLayer/m_6494_ (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;ILnet/minecraft/world/entity/Entity;FFFFFF)V net/minecraft/client/renderer/entity/layers/StrayClothingLayer/render (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;ILnet/minecraft/world/entity/Entity;FFFFFF)V +MD: net/minecraft/client/renderer/entity/layers/StrayClothingLayer/m_6494_ (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;ILnet/minecraft/world/entity/Mob;FFFFFF)V net/minecraft/client/renderer/entity/layers/StrayClothingLayer/render (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;ILnet/minecraft/world/entity/Mob;FFFFFF)V +MD: net/minecraft/client/renderer/entity/layers/StuckInBodyLayer/ (Lnet/minecraft/client/renderer/entity/LivingEntityRenderer;)V net/minecraft/client/renderer/entity/layers/StuckInBodyLayer/ (Lnet/minecraft/client/renderer/entity/LivingEntityRenderer;)V +MD: net/minecraft/client/renderer/entity/layers/StuckInBodyLayer/m_5558_ (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;ILnet/minecraft/world/entity/Entity;FFFF)V net/minecraft/client/renderer/entity/layers/StuckInBodyLayer/renderStuckItem (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;ILnet/minecraft/world/entity/Entity;FFFF)V +MD: net/minecraft/client/renderer/entity/layers/StuckInBodyLayer/m_6494_ (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;ILnet/minecraft/world/entity/Entity;FFFFFF)V net/minecraft/client/renderer/entity/layers/StuckInBodyLayer/render (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;ILnet/minecraft/world/entity/Entity;FFFFFF)V +MD: net/minecraft/client/renderer/entity/layers/StuckInBodyLayer/m_6494_ (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;ILnet/minecraft/world/entity/LivingEntity;FFFFFF)V net/minecraft/client/renderer/entity/layers/StuckInBodyLayer/render (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;ILnet/minecraft/world/entity/LivingEntity;FFFFFF)V +MD: net/minecraft/client/renderer/entity/layers/StuckInBodyLayer/m_7040_ (Lnet/minecraft/world/entity/LivingEntity;)I net/minecraft/client/renderer/entity/layers/StuckInBodyLayer/numStuck (Lnet/minecraft/world/entity/LivingEntity;)I +MD: net/minecraft/client/renderer/entity/layers/TropicalFishPatternLayer/ ()V net/minecraft/client/renderer/entity/layers/TropicalFishPatternLayer/ ()V +MD: net/minecraft/client/renderer/entity/layers/TropicalFishPatternLayer/ (Lnet/minecraft/client/renderer/entity/RenderLayerParent;Lnet/minecraft/client/model/geom/EntityModelSet;)V net/minecraft/client/renderer/entity/layers/TropicalFishPatternLayer/ (Lnet/minecraft/client/renderer/entity/RenderLayerParent;Lnet/minecraft/client/model/geom/EntityModelSet;)V +MD: net/minecraft/client/renderer/entity/layers/TropicalFishPatternLayer/m_6494_ (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;ILnet/minecraft/world/entity/Entity;FFFFFF)V net/minecraft/client/renderer/entity/layers/TropicalFishPatternLayer/render (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;ILnet/minecraft/world/entity/Entity;FFFFFF)V +MD: net/minecraft/client/renderer/entity/layers/TropicalFishPatternLayer/m_6494_ (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;ILnet/minecraft/world/entity/animal/TropicalFish;FFFFFF)V net/minecraft/client/renderer/entity/layers/TropicalFishPatternLayer/render (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;ILnet/minecraft/world/entity/animal/TropicalFish;FFFFFF)V +MD: net/minecraft/client/renderer/entity/layers/TropicalFishPatternLayer$1/ ()V net/minecraft/client/renderer/entity/layers/TropicalFishPatternLayer$1/ ()V +MD: net/minecraft/client/renderer/entity/layers/VillagerProfessionLayer/ ()V net/minecraft/client/renderer/entity/layers/VillagerProfessionLayer/ ()V +MD: net/minecraft/client/renderer/entity/layers/VillagerProfessionLayer/ (Lnet/minecraft/client/renderer/entity/RenderLayerParent;Lnet/minecraft/server/packs/resources/ResourceManager;Ljava/lang/String;)V net/minecraft/client/renderer/entity/layers/VillagerProfessionLayer/ (Lnet/minecraft/client/renderer/entity/RenderLayerParent;Lnet/minecraft/server/packs/resources/ResourceManager;Ljava/lang/String;)V +MD: net/minecraft/client/renderer/entity/layers/VillagerProfessionLayer/m_117656_ (Lit/unimi/dsi/fastutil/ints/Int2ObjectOpenHashMap;)V net/minecraft/client/renderer/entity/layers/VillagerProfessionLayer/lambda$static$0 (Lit/unimi/dsi/fastutil/ints/Int2ObjectOpenHashMap;)V +MD: net/minecraft/client/renderer/entity/layers/VillagerProfessionLayer/m_117658_ (Lit/unimi/dsi/fastutil/objects/Object2ObjectMap;Ljava/lang/String;Lnet/minecraft/core/DefaultedRegistry;Ljava/lang/Object;)Lnet/minecraft/client/resources/metadata/animation/VillagerMetaDataSection$Hat; net/minecraft/client/renderer/entity/layers/VillagerProfessionLayer/getHatData (Lit/unimi/dsi/fastutil/objects/Object2ObjectMap;Ljava/lang/String;Lnet/minecraft/core/DefaultedRegistry;Ljava/lang/Object;)Lnet/minecraft/client/resources/metadata/animation/VillagerMetaDataSection$Hat; +MD: net/minecraft/client/renderer/entity/layers/VillagerProfessionLayer/m_117668_ (Ljava/lang/String;Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/client/renderer/entity/layers/VillagerProfessionLayer/getResourceLocation (Ljava/lang/String;Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/client/renderer/entity/layers/VillagerProfessionLayer/m_234874_ (Lnet/minecraft/server/packs/resources/Resource;)Ljava/util/Optional; net/minecraft/client/renderer/entity/layers/VillagerProfessionLayer/lambda$getHatData$2 (Lnet/minecraft/server/packs/resources/Resource;)Ljava/util/Optional; +MD: net/minecraft/client/renderer/entity/layers/VillagerProfessionLayer/m_244736_ (Ljava/lang/String;Ljava/lang/String;)Ljava/lang/String; net/minecraft/client/renderer/entity/layers/VillagerProfessionLayer/lambda$getResourceLocation$1 (Ljava/lang/String;Ljava/lang/String;)Ljava/lang/String; +MD: net/minecraft/client/renderer/entity/layers/VillagerProfessionLayer/m_257088_ (Ljava/lang/String;Lnet/minecraft/core/DefaultedRegistry;Ljava/lang/Object;Ljava/lang/Object;)Lnet/minecraft/client/resources/metadata/animation/VillagerMetaDataSection$Hat; net/minecraft/client/renderer/entity/layers/VillagerProfessionLayer/lambda$getHatData$3 (Ljava/lang/String;Lnet/minecraft/core/DefaultedRegistry;Ljava/lang/Object;Ljava/lang/Object;)Lnet/minecraft/client/resources/metadata/animation/VillagerMetaDataSection$Hat; +MD: net/minecraft/client/renderer/entity/layers/VillagerProfessionLayer/m_6494_ (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;ILnet/minecraft/world/entity/Entity;FFFFFF)V net/minecraft/client/renderer/entity/layers/VillagerProfessionLayer/render (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;ILnet/minecraft/world/entity/Entity;FFFFFF)V +MD: net/minecraft/client/renderer/entity/layers/VillagerProfessionLayer/m_6494_ (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;ILnet/minecraft/world/entity/LivingEntity;FFFFFF)V net/minecraft/client/renderer/entity/layers/VillagerProfessionLayer/render (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;ILnet/minecraft/world/entity/LivingEntity;FFFFFF)V +MD: net/minecraft/client/renderer/entity/layers/WardenEmissiveLayer/ (Lnet/minecraft/client/renderer/entity/RenderLayerParent;Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/client/renderer/entity/layers/WardenEmissiveLayer$AlphaFunction;Lnet/minecraft/client/renderer/entity/layers/WardenEmissiveLayer$DrawSelector;)V net/minecraft/client/renderer/entity/layers/WardenEmissiveLayer/ (Lnet/minecraft/client/renderer/entity/RenderLayerParent;Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/client/renderer/entity/layers/WardenEmissiveLayer$AlphaFunction;Lnet/minecraft/client/renderer/entity/layers/WardenEmissiveLayer$DrawSelector;)V +MD: net/minecraft/client/renderer/entity/layers/WardenEmissiveLayer/m_234889_ ()V net/minecraft/client/renderer/entity/layers/WardenEmissiveLayer/onlyDrawSelectedParts ()V +MD: net/minecraft/client/renderer/entity/layers/WardenEmissiveLayer/m_234912_ (Lnet/minecraft/client/model/geom/ModelPart;)V net/minecraft/client/renderer/entity/layers/WardenEmissiveLayer/lambda$resetDrawForAllParts$2 (Lnet/minecraft/client/model/geom/ModelPart;)V +MD: net/minecraft/client/renderer/entity/layers/WardenEmissiveLayer/m_234914_ ()V net/minecraft/client/renderer/entity/layers/WardenEmissiveLayer/resetDrawForAllParts ()V +MD: net/minecraft/client/renderer/entity/layers/WardenEmissiveLayer/m_234915_ (Lnet/minecraft/client/model/geom/ModelPart;)V net/minecraft/client/renderer/entity/layers/WardenEmissiveLayer/lambda$onlyDrawSelectedParts$1 (Lnet/minecraft/client/model/geom/ModelPart;)V +MD: net/minecraft/client/renderer/entity/layers/WardenEmissiveLayer/m_234917_ (Lnet/minecraft/client/model/geom/ModelPart;)V net/minecraft/client/renderer/entity/layers/WardenEmissiveLayer/lambda$onlyDrawSelectedParts$0 (Lnet/minecraft/client/model/geom/ModelPart;)V +MD: net/minecraft/client/renderer/entity/layers/WardenEmissiveLayer/m_6494_ (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;ILnet/minecraft/world/entity/Entity;FFFFFF)V net/minecraft/client/renderer/entity/layers/WardenEmissiveLayer/render (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;ILnet/minecraft/world/entity/Entity;FFFFFF)V +MD: net/minecraft/client/renderer/entity/layers/WardenEmissiveLayer/m_6494_ (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;ILnet/minecraft/world/entity/monster/warden/Warden;FFFFFF)V net/minecraft/client/renderer/entity/layers/WardenEmissiveLayer/render (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;ILnet/minecraft/world/entity/monster/warden/Warden;FFFFFF)V +MD: net/minecraft/client/renderer/entity/layers/WardenEmissiveLayer$AlphaFunction/m_234919_ (Lnet/minecraft/world/entity/monster/warden/Warden;FF)F net/minecraft/client/renderer/entity/layers/WardenEmissiveLayer$AlphaFunction/apply (Lnet/minecraft/world/entity/monster/warden/Warden;FF)F +MD: net/minecraft/client/renderer/entity/layers/WardenEmissiveLayer$DrawSelector/m_234923_ (Lnet/minecraft/client/model/EntityModel;)Ljava/util/List; net/minecraft/client/renderer/entity/layers/WardenEmissiveLayer$DrawSelector/getPartsToDraw (Lnet/minecraft/client/model/EntityModel;)Ljava/util/List; +MD: net/minecraft/client/renderer/entity/layers/WitchItemLayer/ (Lnet/minecraft/client/renderer/entity/RenderLayerParent;Lnet/minecraft/client/renderer/ItemInHandRenderer;)V net/minecraft/client/renderer/entity/layers/WitchItemLayer/ (Lnet/minecraft/client/renderer/entity/RenderLayerParent;Lnet/minecraft/client/renderer/ItemInHandRenderer;)V +MD: net/minecraft/client/renderer/entity/layers/WitchItemLayer/m_6494_ (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;ILnet/minecraft/world/entity/Entity;FFFFFF)V net/minecraft/client/renderer/entity/layers/WitchItemLayer/render (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;ILnet/minecraft/world/entity/Entity;FFFFFF)V +MD: net/minecraft/client/renderer/entity/layers/WitchItemLayer/m_6494_ (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;ILnet/minecraft/world/entity/LivingEntity;FFFFFF)V net/minecraft/client/renderer/entity/layers/WitchItemLayer/render (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;ILnet/minecraft/world/entity/LivingEntity;FFFFFF)V +MD: net/minecraft/client/renderer/entity/layers/WitherArmorLayer/ ()V net/minecraft/client/renderer/entity/layers/WitherArmorLayer/ ()V +MD: net/minecraft/client/renderer/entity/layers/WitherArmorLayer/ (Lnet/minecraft/client/renderer/entity/RenderLayerParent;Lnet/minecraft/client/model/geom/EntityModelSet;)V net/minecraft/client/renderer/entity/layers/WitherArmorLayer/ (Lnet/minecraft/client/renderer/entity/RenderLayerParent;Lnet/minecraft/client/model/geom/EntityModelSet;)V +MD: net/minecraft/client/renderer/entity/layers/WitherArmorLayer/m_7029_ ()Lnet/minecraft/resources/ResourceLocation; net/minecraft/client/renderer/entity/layers/WitherArmorLayer/getTextureLocation ()Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/client/renderer/entity/layers/WitherArmorLayer/m_7193_ ()Lnet/minecraft/client/model/EntityModel; net/minecraft/client/renderer/entity/layers/WitherArmorLayer/model ()Lnet/minecraft/client/model/EntityModel; +MD: net/minecraft/client/renderer/entity/layers/WitherArmorLayer/m_7631_ (F)F net/minecraft/client/renderer/entity/layers/WitherArmorLayer/xOffset (F)F +MD: net/minecraft/client/renderer/entity/layers/WolfCollarLayer/ ()V net/minecraft/client/renderer/entity/layers/WolfCollarLayer/ ()V +MD: net/minecraft/client/renderer/entity/layers/WolfCollarLayer/ (Lnet/minecraft/client/renderer/entity/RenderLayerParent;)V net/minecraft/client/renderer/entity/layers/WolfCollarLayer/ (Lnet/minecraft/client/renderer/entity/RenderLayerParent;)V +MD: net/minecraft/client/renderer/entity/layers/WolfCollarLayer/m_6494_ (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;ILnet/minecraft/world/entity/Entity;FFFFFF)V net/minecraft/client/renderer/entity/layers/WolfCollarLayer/render (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;ILnet/minecraft/world/entity/Entity;FFFFFF)V +MD: net/minecraft/client/renderer/entity/layers/WolfCollarLayer/m_6494_ (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;ILnet/minecraft/world/entity/animal/Wolf;FFFFFF)V net/minecraft/client/renderer/entity/layers/WolfCollarLayer/render (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;ILnet/minecraft/world/entity/animal/Wolf;FFFFFF)V +MD: net/minecraft/client/renderer/entity/player/PlayerRenderer/ (Lnet/minecraft/client/renderer/entity/EntityRendererProvider$Context;Z)V net/minecraft/client/renderer/entity/player/PlayerRenderer/ (Lnet/minecraft/client/renderer/entity/EntityRendererProvider$Context;Z)V +MD: net/minecraft/client/renderer/entity/player/PlayerRenderer/m_117770_ (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;ILnet/minecraft/client/player/AbstractClientPlayer;)V net/minecraft/client/renderer/entity/player/PlayerRenderer/renderRightHand (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;ILnet/minecraft/client/player/AbstractClientPlayer;)V +MD: net/minecraft/client/renderer/entity/player/PlayerRenderer/m_117775_ (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;ILnet/minecraft/client/player/AbstractClientPlayer;Lnet/minecraft/client/model/geom/ModelPart;Lnet/minecraft/client/model/geom/ModelPart;)V net/minecraft/client/renderer/entity/player/PlayerRenderer/renderHand (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;ILnet/minecraft/client/player/AbstractClientPlayer;Lnet/minecraft/client/model/geom/ModelPart;Lnet/minecraft/client/model/geom/ModelPart;)V +MD: net/minecraft/client/renderer/entity/player/PlayerRenderer/m_117794_ (Lnet/minecraft/client/player/AbstractClientPlayer;Lnet/minecraft/world/InteractionHand;)Lnet/minecraft/client/model/HumanoidModel$ArmPose; net/minecraft/client/renderer/entity/player/PlayerRenderer/getArmPose (Lnet/minecraft/client/player/AbstractClientPlayer;Lnet/minecraft/world/InteractionHand;)Lnet/minecraft/client/model/HumanoidModel$ArmPose; +MD: net/minecraft/client/renderer/entity/player/PlayerRenderer/m_117813_ (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;ILnet/minecraft/client/player/AbstractClientPlayer;)V net/minecraft/client/renderer/entity/player/PlayerRenderer/renderLeftHand (Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;ILnet/minecraft/client/player/AbstractClientPlayer;)V +MD: net/minecraft/client/renderer/entity/player/PlayerRenderer/m_117818_ (Lnet/minecraft/client/player/AbstractClientPlayer;)V net/minecraft/client/renderer/entity/player/PlayerRenderer/setModelProperties (Lnet/minecraft/client/player/AbstractClientPlayer;)V +MD: net/minecraft/client/renderer/entity/player/PlayerRenderer/m_5478_ (Lnet/minecraft/client/player/AbstractClientPlayer;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/client/renderer/entity/player/PlayerRenderer/getTextureLocation (Lnet/minecraft/client/player/AbstractClientPlayer;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/client/renderer/entity/player/PlayerRenderer/m_5478_ (Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/client/renderer/entity/player/PlayerRenderer/getTextureLocation (Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/client/renderer/entity/player/PlayerRenderer/m_7392_ (Lnet/minecraft/world/entity/Entity;FFLcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;I)V net/minecraft/client/renderer/entity/player/PlayerRenderer/render (Lnet/minecraft/world/entity/Entity;FFLcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;I)V +MD: net/minecraft/client/renderer/entity/player/PlayerRenderer/m_7392_ (Lnet/minecraft/world/entity/LivingEntity;FFLcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;I)V net/minecraft/client/renderer/entity/player/PlayerRenderer/render (Lnet/minecraft/world/entity/LivingEntity;FFLcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;I)V +MD: net/minecraft/client/renderer/entity/player/PlayerRenderer/m_7392_ (Lnet/minecraft/client/player/AbstractClientPlayer;FFLcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;I)V net/minecraft/client/renderer/entity/player/PlayerRenderer/render (Lnet/minecraft/client/player/AbstractClientPlayer;FFLcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;I)V +MD: net/minecraft/client/renderer/entity/player/PlayerRenderer/m_7523_ (Lnet/minecraft/client/player/AbstractClientPlayer;Lcom/mojang/blaze3d/vertex/PoseStack;FFF)V net/minecraft/client/renderer/entity/player/PlayerRenderer/setupRotations (Lnet/minecraft/client/player/AbstractClientPlayer;Lcom/mojang/blaze3d/vertex/PoseStack;FFF)V +MD: net/minecraft/client/renderer/entity/player/PlayerRenderer/m_7523_ (Lnet/minecraft/world/entity/LivingEntity;Lcom/mojang/blaze3d/vertex/PoseStack;FFF)V net/minecraft/client/renderer/entity/player/PlayerRenderer/setupRotations (Lnet/minecraft/world/entity/LivingEntity;Lcom/mojang/blaze3d/vertex/PoseStack;FFF)V +MD: net/minecraft/client/renderer/entity/player/PlayerRenderer/m_7546_ (Lnet/minecraft/client/player/AbstractClientPlayer;Lcom/mojang/blaze3d/vertex/PoseStack;F)V net/minecraft/client/renderer/entity/player/PlayerRenderer/scale (Lnet/minecraft/client/player/AbstractClientPlayer;Lcom/mojang/blaze3d/vertex/PoseStack;F)V +MD: net/minecraft/client/renderer/entity/player/PlayerRenderer/m_7546_ (Lnet/minecraft/world/entity/LivingEntity;Lcom/mojang/blaze3d/vertex/PoseStack;F)V net/minecraft/client/renderer/entity/player/PlayerRenderer/scale (Lnet/minecraft/world/entity/LivingEntity;Lcom/mojang/blaze3d/vertex/PoseStack;F)V +MD: net/minecraft/client/renderer/entity/player/PlayerRenderer/m_7649_ (Lnet/minecraft/client/player/AbstractClientPlayer;Lnet/minecraft/network/chat/Component;Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;I)V net/minecraft/client/renderer/entity/player/PlayerRenderer/renderNameTag (Lnet/minecraft/client/player/AbstractClientPlayer;Lnet/minecraft/network/chat/Component;Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;I)V +MD: net/minecraft/client/renderer/entity/player/PlayerRenderer/m_7649_ (Lnet/minecraft/world/entity/Entity;Lnet/minecraft/network/chat/Component;Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;I)V net/minecraft/client/renderer/entity/player/PlayerRenderer/renderNameTag (Lnet/minecraft/world/entity/Entity;Lnet/minecraft/network/chat/Component;Lcom/mojang/blaze3d/vertex/PoseStack;Lnet/minecraft/client/renderer/MultiBufferSource;I)V +MD: net/minecraft/client/renderer/entity/player/PlayerRenderer/m_7860_ (Lnet/minecraft/world/entity/Entity;F)Lnet/minecraft/world/phys/Vec3; net/minecraft/client/renderer/entity/player/PlayerRenderer/getRenderOffset (Lnet/minecraft/world/entity/Entity;F)Lnet/minecraft/world/phys/Vec3; +MD: net/minecraft/client/renderer/entity/player/PlayerRenderer/m_7860_ (Lnet/minecraft/client/player/AbstractClientPlayer;F)Lnet/minecraft/world/phys/Vec3; net/minecraft/client/renderer/entity/player/PlayerRenderer/getRenderOffset (Lnet/minecraft/client/player/AbstractClientPlayer;F)Lnet/minecraft/world/phys/Vec3; +MD: net/minecraft/client/renderer/item/ClampedItemPropertyFunction/m_141951_ (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/client/multiplayer/ClientLevel;Lnet/minecraft/world/entity/LivingEntity;I)F net/minecraft/client/renderer/item/ClampedItemPropertyFunction/call (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/client/multiplayer/ClientLevel;Lnet/minecraft/world/entity/LivingEntity;I)F +MD: net/minecraft/client/renderer/item/ClampedItemPropertyFunction/m_142187_ (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/client/multiplayer/ClientLevel;Lnet/minecraft/world/entity/LivingEntity;I)F net/minecraft/client/renderer/item/ClampedItemPropertyFunction/unclampedCall (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/client/multiplayer/ClientLevel;Lnet/minecraft/world/entity/LivingEntity;I)F +MD: net/minecraft/client/renderer/item/CompassItemPropertyFunction/ (Lnet/minecraft/client/renderer/item/CompassItemPropertyFunction$CompassTarget;)V net/minecraft/client/renderer/item/CompassItemPropertyFunction/ (Lnet/minecraft/client/renderer/item/CompassItemPropertyFunction$CompassTarget;)V +MD: net/minecraft/client/renderer/item/CompassItemPropertyFunction/m_142187_ (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/client/multiplayer/ClientLevel;Lnet/minecraft/world/entity/LivingEntity;I)F net/minecraft/client/renderer/item/CompassItemPropertyFunction/unclampedCall (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/client/multiplayer/ClientLevel;Lnet/minecraft/world/entity/LivingEntity;I)F +MD: net/minecraft/client/renderer/item/CompassItemPropertyFunction/m_234934_ (I)I net/minecraft/client/renderer/item/CompassItemPropertyFunction/hash (I)I +MD: net/minecraft/client/renderer/item/CompassItemPropertyFunction/m_234936_ (IJ)F net/minecraft/client/renderer/item/CompassItemPropertyFunction/getRandomlySpinningRotation (IJ)F +MD: net/minecraft/client/renderer/item/CompassItemPropertyFunction/m_234939_ (Lnet/minecraft/world/entity/Entity;)D net/minecraft/client/renderer/item/CompassItemPropertyFunction/getWrappedVisualRotationY (Lnet/minecraft/world/entity/Entity;)D +MD: net/minecraft/client/renderer/item/CompassItemPropertyFunction/m_234941_ (Lnet/minecraft/world/entity/Entity;JLnet/minecraft/core/BlockPos;)F net/minecraft/client/renderer/item/CompassItemPropertyFunction/getRotationTowardsCompassTarget (Lnet/minecraft/world/entity/Entity;JLnet/minecraft/core/BlockPos;)F +MD: net/minecraft/client/renderer/item/CompassItemPropertyFunction/m_234945_ (Lnet/minecraft/world/entity/Entity;Lnet/minecraft/client/multiplayer/ClientLevel;)Lnet/minecraft/client/multiplayer/ClientLevel; net/minecraft/client/renderer/item/CompassItemPropertyFunction/tryFetchLevelIfMissing (Lnet/minecraft/world/entity/Entity;Lnet/minecraft/client/multiplayer/ClientLevel;)Lnet/minecraft/client/multiplayer/ClientLevel; +MD: net/minecraft/client/renderer/item/CompassItemPropertyFunction/m_234948_ (Lnet/minecraft/world/entity/Entity;Lnet/minecraft/core/BlockPos;)D net/minecraft/client/renderer/item/CompassItemPropertyFunction/getAngleFromEntityToPos (Lnet/minecraft/world/entity/Entity;Lnet/minecraft/core/BlockPos;)D +MD: net/minecraft/client/renderer/item/CompassItemPropertyFunction/m_234951_ (Lnet/minecraft/world/entity/Entity;Lnet/minecraft/core/GlobalPos;)Z net/minecraft/client/renderer/item/CompassItemPropertyFunction/isValidCompassTargetPos (Lnet/minecraft/world/entity/Entity;Lnet/minecraft/core/GlobalPos;)Z +MD: net/minecraft/client/renderer/item/CompassItemPropertyFunction/m_234954_ (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/client/multiplayer/ClientLevel;ILnet/minecraft/world/entity/Entity;)F net/minecraft/client/renderer/item/CompassItemPropertyFunction/getCompassRotation (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/client/multiplayer/ClientLevel;ILnet/minecraft/world/entity/Entity;)F +MD: net/minecraft/client/renderer/item/CompassItemPropertyFunction$CompassTarget/m_234964_ (Lnet/minecraft/client/multiplayer/ClientLevel;Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/core/GlobalPos; net/minecraft/client/renderer/item/CompassItemPropertyFunction$CompassTarget/getPos (Lnet/minecraft/client/multiplayer/ClientLevel;Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/core/GlobalPos; +MD: net/minecraft/client/renderer/item/CompassItemPropertyFunction$CompassWobble/ ()V net/minecraft/client/renderer/item/CompassItemPropertyFunction$CompassWobble/ ()V +MD: net/minecraft/client/renderer/item/CompassItemPropertyFunction$CompassWobble/m_234972_ (J)Z net/minecraft/client/renderer/item/CompassItemPropertyFunction$CompassWobble/shouldUpdate (J)Z +MD: net/minecraft/client/renderer/item/CompassItemPropertyFunction$CompassWobble/m_234974_ (JD)V net/minecraft/client/renderer/item/CompassItemPropertyFunction$CompassWobble/update (JD)V +MD: net/minecraft/client/renderer/item/ItemProperties/ ()V net/minecraft/client/renderer/item/ItemProperties/ ()V +MD: net/minecraft/client/renderer/item/ItemProperties/ ()V net/minecraft/client/renderer/item/ItemProperties/ ()V +MD: net/minecraft/client/renderer/item/ItemProperties/m_117827_ (Lnet/minecraft/world/item/Item;)Ljava/util/Map; net/minecraft/client/renderer/item/ItemProperties/lambda$register$2 (Lnet/minecraft/world/item/Item;)Ljava/util/Map; +MD: net/minecraft/client/renderer/item/ItemProperties/m_117829_ (Lnet/minecraft/world/item/Item;Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/client/renderer/item/ItemPropertyFunction; net/minecraft/client/renderer/item/ItemProperties/getProperty (Lnet/minecraft/world/item/Item;Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/client/renderer/item/ItemPropertyFunction; +MD: net/minecraft/client/renderer/item/ItemProperties/m_174570_ (Lnet/minecraft/world/item/Item;Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/client/renderer/item/ClampedItemPropertyFunction;)V net/minecraft/client/renderer/item/ItemProperties/register (Lnet/minecraft/world/item/Item;Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/client/renderer/item/ClampedItemPropertyFunction;)V +MD: net/minecraft/client/renderer/item/ItemProperties/m_174574_ (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/client/multiplayer/ClientLevel;Lnet/minecraft/world/entity/LivingEntity;I)F net/minecraft/client/renderer/item/ItemProperties/lambda$static$19 (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/client/multiplayer/ClientLevel;Lnet/minecraft/world/entity/LivingEntity;I)F +MD: net/minecraft/client/renderer/item/ItemProperties/m_174579_ (Lnet/minecraft/client/renderer/item/ItemPropertyFunction;)V net/minecraft/client/renderer/item/ItemProperties/registerCustomModelData (Lnet/minecraft/client/renderer/item/ItemPropertyFunction;)V +MD: net/minecraft/client/renderer/item/ItemProperties/m_174581_ (Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/client/renderer/item/ClampedItemPropertyFunction;)Lnet/minecraft/client/renderer/item/ClampedItemPropertyFunction; net/minecraft/client/renderer/item/ItemProperties/registerGeneric (Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/client/renderer/item/ClampedItemPropertyFunction;)Lnet/minecraft/client/renderer/item/ClampedItemPropertyFunction; +MD: net/minecraft/client/renderer/item/ItemProperties/m_174584_ (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/client/multiplayer/ClientLevel;Lnet/minecraft/world/entity/LivingEntity;I)F net/minecraft/client/renderer/item/ItemProperties/lambda$static$18 (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/client/multiplayer/ClientLevel;Lnet/minecraft/world/entity/LivingEntity;I)F +MD: net/minecraft/client/renderer/item/ItemProperties/m_174589_ (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/client/multiplayer/ClientLevel;Lnet/minecraft/world/entity/LivingEntity;I)F net/minecraft/client/renderer/item/ItemProperties/lambda$static$17 (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/client/multiplayer/ClientLevel;Lnet/minecraft/world/entity/LivingEntity;I)F +MD: net/minecraft/client/renderer/item/ItemProperties/m_174604_ (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/client/multiplayer/ClientLevel;Lnet/minecraft/world/entity/LivingEntity;I)F net/minecraft/client/renderer/item/ItemProperties/lambda$static$14 (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/client/multiplayer/ClientLevel;Lnet/minecraft/world/entity/LivingEntity;I)F +MD: net/minecraft/client/renderer/item/ItemProperties/m_174609_ (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/client/multiplayer/ClientLevel;Lnet/minecraft/world/entity/LivingEntity;I)F net/minecraft/client/renderer/item/ItemProperties/lambda$static$13 (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/client/multiplayer/ClientLevel;Lnet/minecraft/world/entity/LivingEntity;I)F +MD: net/minecraft/client/renderer/item/ItemProperties/m_174624_ (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/client/multiplayer/ClientLevel;Lnet/minecraft/world/entity/LivingEntity;I)F net/minecraft/client/renderer/item/ItemProperties/lambda$static$10 (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/client/multiplayer/ClientLevel;Lnet/minecraft/world/entity/LivingEntity;I)F +MD: net/minecraft/client/renderer/item/ItemProperties/m_174629_ (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/client/multiplayer/ClientLevel;Lnet/minecraft/world/entity/LivingEntity;I)F net/minecraft/client/renderer/item/ItemProperties/lambda$static$9 (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/client/multiplayer/ClientLevel;Lnet/minecraft/world/entity/LivingEntity;I)F +MD: net/minecraft/client/renderer/item/ItemProperties/m_174634_ (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/client/multiplayer/ClientLevel;Lnet/minecraft/world/entity/LivingEntity;I)F net/minecraft/client/renderer/item/ItemProperties/lambda$static$7 (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/client/multiplayer/ClientLevel;Lnet/minecraft/world/entity/LivingEntity;I)F +MD: net/minecraft/client/renderer/item/ItemProperties/m_174639_ (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/client/multiplayer/ClientLevel;Lnet/minecraft/world/entity/LivingEntity;I)F net/minecraft/client/renderer/item/ItemProperties/lambda$static$6 (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/client/multiplayer/ClientLevel;Lnet/minecraft/world/entity/LivingEntity;I)F +MD: net/minecraft/client/renderer/item/ItemProperties/m_174644_ (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/client/multiplayer/ClientLevel;Lnet/minecraft/world/entity/LivingEntity;I)F net/minecraft/client/renderer/item/ItemProperties/lambda$static$4 (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/client/multiplayer/ClientLevel;Lnet/minecraft/world/entity/LivingEntity;I)F +MD: net/minecraft/client/renderer/item/ItemProperties/m_174649_ (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/client/multiplayer/ClientLevel;Lnet/minecraft/world/entity/LivingEntity;I)F net/minecraft/client/renderer/item/ItemProperties/lambda$static$3 (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/client/multiplayer/ClientLevel;Lnet/minecraft/world/entity/LivingEntity;I)F +MD: net/minecraft/client/renderer/item/ItemProperties/m_174654_ (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/client/multiplayer/ClientLevel;Lnet/minecraft/world/entity/LivingEntity;I)F net/minecraft/client/renderer/item/ItemProperties/lambda$static$1 (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/client/multiplayer/ClientLevel;Lnet/minecraft/world/entity/LivingEntity;I)F +MD: net/minecraft/client/renderer/item/ItemProperties/m_174659_ (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/client/multiplayer/ClientLevel;Lnet/minecraft/world/entity/LivingEntity;I)F net/minecraft/client/renderer/item/ItemProperties/lambda$static$0 (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/client/multiplayer/ClientLevel;Lnet/minecraft/world/entity/LivingEntity;I)F +MD: net/minecraft/client/renderer/item/ItemProperties/m_234977_ (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/client/multiplayer/ClientLevel;Lnet/minecraft/world/entity/LivingEntity;I)F net/minecraft/client/renderer/item/ItemProperties/lambda$static$22 (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/client/multiplayer/ClientLevel;Lnet/minecraft/world/entity/LivingEntity;I)F +MD: net/minecraft/client/renderer/item/ItemProperties/m_234982_ (Lnet/minecraft/client/multiplayer/ClientLevel;Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/core/GlobalPos; net/minecraft/client/renderer/item/ItemProperties/lambda$static$12 (Lnet/minecraft/client/multiplayer/ClientLevel;Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/core/GlobalPos; +MD: net/minecraft/client/renderer/item/ItemProperties/m_234986_ (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/client/multiplayer/ClientLevel;Lnet/minecraft/world/entity/LivingEntity;I)F net/minecraft/client/renderer/item/ItemProperties/lambda$static$21 (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/client/multiplayer/ClientLevel;Lnet/minecraft/world/entity/LivingEntity;I)F +MD: net/minecraft/client/renderer/item/ItemProperties/m_234991_ (Lnet/minecraft/client/multiplayer/ClientLevel;Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/core/GlobalPos; net/minecraft/client/renderer/item/ItemProperties/lambda$static$11 (Lnet/minecraft/client/multiplayer/ClientLevel;Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/core/GlobalPos; +MD: net/minecraft/client/renderer/item/ItemProperties/m_234995_ (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/client/multiplayer/ClientLevel;Lnet/minecraft/world/entity/LivingEntity;I)F net/minecraft/client/renderer/item/ItemProperties/lambda$static$20 (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/client/multiplayer/ClientLevel;Lnet/minecraft/world/entity/LivingEntity;I)F +MD: net/minecraft/client/renderer/item/ItemProperties/m_271563_ (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/client/multiplayer/ClientLevel;Lnet/minecraft/world/entity/LivingEntity;I)F net/minecraft/client/renderer/item/ItemProperties/lambda$static$8 (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/client/multiplayer/ClientLevel;Lnet/minecraft/world/entity/LivingEntity;I)F +MD: net/minecraft/client/renderer/item/ItemProperties/m_275783_ (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/client/multiplayer/ClientLevel;Lnet/minecraft/world/entity/LivingEntity;I)F net/minecraft/client/renderer/item/ItemProperties/lambda$static$16 (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/client/multiplayer/ClientLevel;Lnet/minecraft/world/entity/LivingEntity;I)F +MD: net/minecraft/client/renderer/item/ItemProperties/m_275784_ (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/client/multiplayer/ClientLevel;Lnet/minecraft/world/entity/LivingEntity;I)F net/minecraft/client/renderer/item/ItemProperties/lambda$static$15 (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/client/multiplayer/ClientLevel;Lnet/minecraft/world/entity/LivingEntity;I)F +MD: net/minecraft/client/renderer/item/ItemProperties/m_289053_ (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/client/multiplayer/ClientLevel;Lnet/minecraft/world/entity/LivingEntity;I)F net/minecraft/client/renderer/item/ItemProperties/lambda$static$5 (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/client/multiplayer/ClientLevel;Lnet/minecraft/world/entity/LivingEntity;I)F +MD: net/minecraft/client/renderer/item/ItemProperties$1/ ()V net/minecraft/client/renderer/item/ItemProperties$1/ ()V +MD: net/minecraft/client/renderer/item/ItemProperties$1/m_117903_ (Lnet/minecraft/world/level/Level;D)D net/minecraft/client/renderer/item/ItemProperties$1/wobble (Lnet/minecraft/world/level/Level;D)D +MD: net/minecraft/client/renderer/item/ItemProperties$1/m_142187_ (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/client/multiplayer/ClientLevel;Lnet/minecraft/world/entity/LivingEntity;I)F net/minecraft/client/renderer/item/ItemProperties$1/unclampedCall (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/client/multiplayer/ClientLevel;Lnet/minecraft/world/entity/LivingEntity;I)F +MD: net/minecraft/client/renderer/item/ItemPropertyFunction/m_141951_ (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/client/multiplayer/ClientLevel;Lnet/minecraft/world/entity/LivingEntity;I)F net/minecraft/client/renderer/item/ItemPropertyFunction/call (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/client/multiplayer/ClientLevel;Lnet/minecraft/world/entity/LivingEntity;I)F +MD: net/minecraft/client/renderer/texture/AbstractTexture/ ()V net/minecraft/client/renderer/texture/AbstractTexture/ ()V +MD: net/minecraft/client/renderer/texture/AbstractTexture/close ()V net/minecraft/client/renderer/texture/AbstractTexture/close ()V +MD: net/minecraft/client/renderer/texture/AbstractTexture/m_117954_ ()V net/minecraft/client/renderer/texture/AbstractTexture/lambda$bind$1 ()V +MD: net/minecraft/client/renderer/texture/AbstractTexture/m_117960_ (ZZ)V net/minecraft/client/renderer/texture/AbstractTexture/setFilter (ZZ)V +MD: net/minecraft/client/renderer/texture/AbstractTexture/m_117963_ ()I net/minecraft/client/renderer/texture/AbstractTexture/getId ()I +MD: net/minecraft/client/renderer/texture/AbstractTexture/m_117964_ ()V net/minecraft/client/renderer/texture/AbstractTexture/releaseId ()V +MD: net/minecraft/client/renderer/texture/AbstractTexture/m_117966_ ()V net/minecraft/client/renderer/texture/AbstractTexture/bind ()V +MD: net/minecraft/client/renderer/texture/AbstractTexture/m_117967_ ()V net/minecraft/client/renderer/texture/AbstractTexture/lambda$releaseId$0 ()V +MD: net/minecraft/client/renderer/texture/AbstractTexture/m_6479_ (Lnet/minecraft/client/renderer/texture/TextureManager;Lnet/minecraft/server/packs/resources/ResourceManager;Lnet/minecraft/resources/ResourceLocation;Ljava/util/concurrent/Executor;)V net/minecraft/client/renderer/texture/AbstractTexture/reset (Lnet/minecraft/client/renderer/texture/TextureManager;Lnet/minecraft/server/packs/resources/ResourceManager;Lnet/minecraft/resources/ResourceLocation;Ljava/util/concurrent/Executor;)V +MD: net/minecraft/client/renderer/texture/AbstractTexture/m_6704_ (Lnet/minecraft/server/packs/resources/ResourceManager;)V net/minecraft/client/renderer/texture/AbstractTexture/load (Lnet/minecraft/server/packs/resources/ResourceManager;)V +MD: net/minecraft/client/renderer/texture/Dumpable/m_276079_ (Lnet/minecraft/resources/ResourceLocation;Ljava/nio/file/Path;)V net/minecraft/client/renderer/texture/Dumpable/dumpContents (Lnet/minecraft/resources/ResourceLocation;Ljava/nio/file/Path;)V +MD: net/minecraft/client/renderer/texture/DynamicTexture/ ()V net/minecraft/client/renderer/texture/DynamicTexture/ ()V +MD: net/minecraft/client/renderer/texture/DynamicTexture/ (IIZ)V net/minecraft/client/renderer/texture/DynamicTexture/ (IIZ)V +MD: net/minecraft/client/renderer/texture/DynamicTexture/ (Lcom/mojang/blaze3d/platform/NativeImage;)V net/minecraft/client/renderer/texture/DynamicTexture/ (Lcom/mojang/blaze3d/platform/NativeImage;)V +MD: net/minecraft/client/renderer/texture/DynamicTexture/close ()V net/minecraft/client/renderer/texture/DynamicTexture/close ()V +MD: net/minecraft/client/renderer/texture/DynamicTexture/m_117985_ ()V net/minecraft/client/renderer/texture/DynamicTexture/upload ()V +MD: net/minecraft/client/renderer/texture/DynamicTexture/m_117988_ (Lcom/mojang/blaze3d/platform/NativeImage;)V net/minecraft/client/renderer/texture/DynamicTexture/setPixels (Lcom/mojang/blaze3d/platform/NativeImage;)V +MD: net/minecraft/client/renderer/texture/DynamicTexture/m_117991_ ()Lcom/mojang/blaze3d/platform/NativeImage; net/minecraft/client/renderer/texture/DynamicTexture/getPixels ()Lcom/mojang/blaze3d/platform/NativeImage; +MD: net/minecraft/client/renderer/texture/DynamicTexture/m_276079_ (Lnet/minecraft/resources/ResourceLocation;Ljava/nio/file/Path;)V net/minecraft/client/renderer/texture/DynamicTexture/dumpContents (Lnet/minecraft/resources/ResourceLocation;Ljava/nio/file/Path;)V +MD: net/minecraft/client/renderer/texture/DynamicTexture/m_283979_ ()V net/minecraft/client/renderer/texture/DynamicTexture/lambda$new$0 ()V +MD: net/minecraft/client/renderer/texture/DynamicTexture/m_6704_ (Lnet/minecraft/server/packs/resources/ResourceManager;)V net/minecraft/client/renderer/texture/DynamicTexture/load (Lnet/minecraft/server/packs/resources/ResourceManager;)V +MD: net/minecraft/client/renderer/texture/HttpTexture/ ()V net/minecraft/client/renderer/texture/HttpTexture/ ()V +MD: net/minecraft/client/renderer/texture/HttpTexture/ (Ljava/io/File;Ljava/lang/String;Lnet/minecraft/resources/ResourceLocation;ZLjava/lang/Runnable;)V net/minecraft/client/renderer/texture/HttpTexture/ (Ljava/io/File;Ljava/lang/String;Lnet/minecraft/resources/ResourceLocation;ZLjava/lang/Runnable;)V +MD: net/minecraft/client/renderer/texture/HttpTexture/m_118007_ ()V net/minecraft/client/renderer/texture/HttpTexture/lambda$load$4 ()V +MD: net/minecraft/client/renderer/texture/HttpTexture/m_118010_ (Lcom/mojang/blaze3d/platform/NativeImage;)V net/minecraft/client/renderer/texture/HttpTexture/loadCallback (Lcom/mojang/blaze3d/platform/NativeImage;)V +MD: net/minecraft/client/renderer/texture/HttpTexture/m_118012_ (Lcom/mojang/blaze3d/platform/NativeImage;IIII)V net/minecraft/client/renderer/texture/HttpTexture/doNotchTransparencyHack (Lcom/mojang/blaze3d/platform/NativeImage;IIII)V +MD: net/minecraft/client/renderer/texture/HttpTexture/m_118018_ (Ljava/io/InputStream;)Lcom/mojang/blaze3d/platform/NativeImage; net/minecraft/client/renderer/texture/HttpTexture/load (Ljava/io/InputStream;)Lcom/mojang/blaze3d/platform/NativeImage; +MD: net/minecraft/client/renderer/texture/HttpTexture/m_118020_ (Lcom/mojang/blaze3d/platform/NativeImage;)V net/minecraft/client/renderer/texture/HttpTexture/upload (Lcom/mojang/blaze3d/platform/NativeImage;)V +MD: net/minecraft/client/renderer/texture/HttpTexture/m_118022_ (Lcom/mojang/blaze3d/platform/NativeImage;IIII)V net/minecraft/client/renderer/texture/HttpTexture/setNoAlpha (Lcom/mojang/blaze3d/platform/NativeImage;IIII)V +MD: net/minecraft/client/renderer/texture/HttpTexture/m_118030_ (Lnet/minecraft/server/packs/resources/ResourceManager;)V net/minecraft/client/renderer/texture/HttpTexture/lambda$load$2 (Lnet/minecraft/server/packs/resources/ResourceManager;)V +MD: net/minecraft/client/renderer/texture/HttpTexture/m_118032_ (Lcom/mojang/blaze3d/platform/NativeImage;)Lcom/mojang/blaze3d/platform/NativeImage; net/minecraft/client/renderer/texture/HttpTexture/processLegacySkin (Lcom/mojang/blaze3d/platform/NativeImage;)Lcom/mojang/blaze3d/platform/NativeImage; +MD: net/minecraft/client/renderer/texture/HttpTexture/m_118034_ (Lcom/mojang/blaze3d/platform/NativeImage;)V net/minecraft/client/renderer/texture/HttpTexture/lambda$loadCallback$1 (Lcom/mojang/blaze3d/platform/NativeImage;)V +MD: net/minecraft/client/renderer/texture/HttpTexture/m_174682_ (Ljava/io/InputStream;)V net/minecraft/client/renderer/texture/HttpTexture/lambda$load$3 (Ljava/io/InputStream;)V +MD: net/minecraft/client/renderer/texture/HttpTexture/m_174684_ (Lcom/mojang/blaze3d/platform/NativeImage;)V net/minecraft/client/renderer/texture/HttpTexture/lambda$loadCallback$0 (Lcom/mojang/blaze3d/platform/NativeImage;)V +MD: net/minecraft/client/renderer/texture/HttpTexture/m_6704_ (Lnet/minecraft/server/packs/resources/ResourceManager;)V net/minecraft/client/renderer/texture/HttpTexture/load (Lnet/minecraft/server/packs/resources/ResourceManager;)V +MD: net/minecraft/client/renderer/texture/MipmapGenerator/ ()V net/minecraft/client/renderer/texture/MipmapGenerator/ ()V +MD: net/minecraft/client/renderer/texture/MipmapGenerator/ ()V net/minecraft/client/renderer/texture/MipmapGenerator/ ()V +MD: net/minecraft/client/renderer/texture/MipmapGenerator/m_118040_ (I)F net/minecraft/client/renderer/texture/MipmapGenerator/getPow22 (I)F +MD: net/minecraft/client/renderer/texture/MipmapGenerator/m_118042_ (IIIII)I net/minecraft/client/renderer/texture/MipmapGenerator/gammaBlend (IIIII)I +MD: net/minecraft/client/renderer/texture/MipmapGenerator/m_118048_ (IIIIZ)I net/minecraft/client/renderer/texture/MipmapGenerator/alphaBlend (IIIIZ)I +MD: net/minecraft/client/renderer/texture/MipmapGenerator/m_118057_ ([F)V net/minecraft/client/renderer/texture/MipmapGenerator/lambda$static$0 ([F)V +MD: net/minecraft/client/renderer/texture/MipmapGenerator/m_246246_ ([Lcom/mojang/blaze3d/platform/NativeImage;I)[Lcom/mojang/blaze3d/platform/NativeImage; net/minecraft/client/renderer/texture/MipmapGenerator/generateMipLevels ([Lcom/mojang/blaze3d/platform/NativeImage;I)[Lcom/mojang/blaze3d/platform/NativeImage; +MD: net/minecraft/client/renderer/texture/MipmapGenerator/m_246464_ (Lcom/mojang/blaze3d/platform/NativeImage;)Z net/minecraft/client/renderer/texture/MipmapGenerator/hasTransparentPixel (Lcom/mojang/blaze3d/platform/NativeImage;)Z +MD: net/minecraft/client/renderer/texture/MissingTextureAtlasSprite/ ()V net/minecraft/client/renderer/texture/MissingTextureAtlasSprite/ ()V +MD: net/minecraft/client/renderer/texture/MissingTextureAtlasSprite/ ()V net/minecraft/client/renderer/texture/MissingTextureAtlasSprite/ ()V +MD: net/minecraft/client/renderer/texture/MissingTextureAtlasSprite/m_118071_ ()Lnet/minecraft/resources/ResourceLocation; net/minecraft/client/renderer/texture/MissingTextureAtlasSprite/getLocation ()Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/client/renderer/texture/MissingTextureAtlasSprite/m_118080_ ()Lnet/minecraft/client/renderer/texture/DynamicTexture; net/minecraft/client/renderer/texture/MissingTextureAtlasSprite/getTexture ()Lnet/minecraft/client/renderer/texture/DynamicTexture; +MD: net/minecraft/client/renderer/texture/MissingTextureAtlasSprite/m_245315_ (II)Lcom/mojang/blaze3d/platform/NativeImage; net/minecraft/client/renderer/texture/MissingTextureAtlasSprite/generateMissingImage (II)Lcom/mojang/blaze3d/platform/NativeImage; +MD: net/minecraft/client/renderer/texture/MissingTextureAtlasSprite/m_246104_ ()Lnet/minecraft/client/renderer/texture/SpriteContents; net/minecraft/client/renderer/texture/MissingTextureAtlasSprite/create ()Lnet/minecraft/client/renderer/texture/SpriteContents; +MD: net/minecraft/client/renderer/texture/OverlayTexture/ ()V net/minecraft/client/renderer/texture/OverlayTexture/ ()V +MD: net/minecraft/client/renderer/texture/OverlayTexture/ ()V net/minecraft/client/renderer/texture/OverlayTexture/ ()V +MD: net/minecraft/client/renderer/texture/OverlayTexture/close ()V net/minecraft/client/renderer/texture/OverlayTexture/close ()V +MD: net/minecraft/client/renderer/texture/OverlayTexture/m_118087_ ()V net/minecraft/client/renderer/texture/OverlayTexture/setupOverlayColor ()V +MD: net/minecraft/client/renderer/texture/OverlayTexture/m_118088_ (F)I net/minecraft/client/renderer/texture/OverlayTexture/u (F)I +MD: net/minecraft/client/renderer/texture/OverlayTexture/m_118090_ (FZ)I net/minecraft/client/renderer/texture/OverlayTexture/pack (FZ)I +MD: net/minecraft/client/renderer/texture/OverlayTexture/m_118093_ (II)I net/minecraft/client/renderer/texture/OverlayTexture/pack (II)I +MD: net/minecraft/client/renderer/texture/OverlayTexture/m_118096_ (Z)I net/minecraft/client/renderer/texture/OverlayTexture/v (Z)I +MD: net/minecraft/client/renderer/texture/OverlayTexture/m_118098_ ()V net/minecraft/client/renderer/texture/OverlayTexture/teardownOverlayColor ()V +MD: net/minecraft/client/renderer/texture/PreloadedTexture/ (Lnet/minecraft/server/packs/resources/ResourceManager;Lnet/minecraft/resources/ResourceLocation;Ljava/util/concurrent/Executor;)V net/minecraft/client/renderer/texture/PreloadedTexture/ (Lnet/minecraft/server/packs/resources/ResourceManager;Lnet/minecraft/resources/ResourceLocation;Ljava/util/concurrent/Executor;)V +MD: net/minecraft/client/renderer/texture/PreloadedTexture/m_118105_ ()Ljava/util/concurrent/CompletableFuture; net/minecraft/client/renderer/texture/PreloadedTexture/getFuture ()Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/client/renderer/texture/PreloadedTexture/m_118106_ (Lnet/minecraft/server/packs/resources/ResourceManager;Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/client/renderer/texture/SimpleTexture$TextureImage; net/minecraft/client/renderer/texture/PreloadedTexture/lambda$new$0 (Lnet/minecraft/server/packs/resources/ResourceManager;Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/client/renderer/texture/SimpleTexture$TextureImage; +MD: net/minecraft/client/renderer/texture/PreloadedTexture/m_118109_ (Lnet/minecraft/client/renderer/texture/SimpleTexture$TextureImage;)Ljava/lang/Void; net/minecraft/client/renderer/texture/PreloadedTexture/lambda$getFuture$1 (Lnet/minecraft/client/renderer/texture/SimpleTexture$TextureImage;)Ljava/lang/Void; +MD: net/minecraft/client/renderer/texture/PreloadedTexture/m_118111_ (Lnet/minecraft/client/renderer/texture/TextureManager;)V net/minecraft/client/renderer/texture/PreloadedTexture/lambda$reset$3 (Lnet/minecraft/client/renderer/texture/TextureManager;)V +MD: net/minecraft/client/renderer/texture/PreloadedTexture/m_118120_ (Ljava/util/concurrent/Executor;)Ljava/util/concurrent/Executor; net/minecraft/client/renderer/texture/PreloadedTexture/executor (Ljava/util/concurrent/Executor;)Ljava/util/concurrent/Executor; +MD: net/minecraft/client/renderer/texture/PreloadedTexture/m_118122_ (Ljava/util/concurrent/Executor;Ljava/lang/Runnable;)V net/minecraft/client/renderer/texture/PreloadedTexture/lambda$executor$5 (Ljava/util/concurrent/Executor;Ljava/lang/Runnable;)V +MD: net/minecraft/client/renderer/texture/PreloadedTexture/m_118127_ (Lnet/minecraft/server/packs/resources/ResourceManager;)Lnet/minecraft/client/renderer/texture/SimpleTexture$TextureImage; net/minecraft/client/renderer/texture/PreloadedTexture/lambda$reset$2 (Lnet/minecraft/server/packs/resources/ResourceManager;)Lnet/minecraft/client/renderer/texture/SimpleTexture$TextureImage; +MD: net/minecraft/client/renderer/texture/PreloadedTexture/m_174695_ (Ljava/lang/Runnable;)V net/minecraft/client/renderer/texture/PreloadedTexture/lambda$executor$4 (Ljava/lang/Runnable;)V +MD: net/minecraft/client/renderer/texture/PreloadedTexture/m_6335_ (Lnet/minecraft/server/packs/resources/ResourceManager;)Lnet/minecraft/client/renderer/texture/SimpleTexture$TextureImage; net/minecraft/client/renderer/texture/PreloadedTexture/getTextureImage (Lnet/minecraft/server/packs/resources/ResourceManager;)Lnet/minecraft/client/renderer/texture/SimpleTexture$TextureImage; +MD: net/minecraft/client/renderer/texture/PreloadedTexture/m_6479_ (Lnet/minecraft/client/renderer/texture/TextureManager;Lnet/minecraft/server/packs/resources/ResourceManager;Lnet/minecraft/resources/ResourceLocation;Ljava/util/concurrent/Executor;)V net/minecraft/client/renderer/texture/PreloadedTexture/reset (Lnet/minecraft/client/renderer/texture/TextureManager;Lnet/minecraft/server/packs/resources/ResourceManager;Lnet/minecraft/resources/ResourceLocation;Ljava/util/concurrent/Executor;)V +MD: net/minecraft/client/renderer/texture/SimpleTexture/ ()V net/minecraft/client/renderer/texture/SimpleTexture/ ()V +MD: net/minecraft/client/renderer/texture/SimpleTexture/ (Lnet/minecraft/resources/ResourceLocation;)V net/minecraft/client/renderer/texture/SimpleTexture/ (Lnet/minecraft/resources/ResourceLocation;)V +MD: net/minecraft/client/renderer/texture/SimpleTexture/m_118136_ (Lcom/mojang/blaze3d/platform/NativeImage;ZZ)V net/minecraft/client/renderer/texture/SimpleTexture/doLoad (Lcom/mojang/blaze3d/platform/NativeImage;ZZ)V +MD: net/minecraft/client/renderer/texture/SimpleTexture/m_118141_ (Lcom/mojang/blaze3d/platform/NativeImage;ZZ)V net/minecraft/client/renderer/texture/SimpleTexture/lambda$load$0 (Lcom/mojang/blaze3d/platform/NativeImage;ZZ)V +MD: net/minecraft/client/renderer/texture/SimpleTexture/m_6335_ (Lnet/minecraft/server/packs/resources/ResourceManager;)Lnet/minecraft/client/renderer/texture/SimpleTexture$TextureImage; net/minecraft/client/renderer/texture/SimpleTexture/getTextureImage (Lnet/minecraft/server/packs/resources/ResourceManager;)Lnet/minecraft/client/renderer/texture/SimpleTexture$TextureImage; +MD: net/minecraft/client/renderer/texture/SimpleTexture/m_6704_ (Lnet/minecraft/server/packs/resources/ResourceManager;)V net/minecraft/client/renderer/texture/SimpleTexture/load (Lnet/minecraft/server/packs/resources/ResourceManager;)V +MD: net/minecraft/client/renderer/texture/SimpleTexture$TextureImage/ (Ljava/io/IOException;)V net/minecraft/client/renderer/texture/SimpleTexture$TextureImage/ (Ljava/io/IOException;)V +MD: net/minecraft/client/renderer/texture/SimpleTexture$TextureImage/ (Lnet/minecraft/client/resources/metadata/texture/TextureMetadataSection;Lcom/mojang/blaze3d/platform/NativeImage;)V net/minecraft/client/renderer/texture/SimpleTexture$TextureImage/ (Lnet/minecraft/client/resources/metadata/texture/TextureMetadataSection;Lcom/mojang/blaze3d/platform/NativeImage;)V +MD: net/minecraft/client/renderer/texture/SimpleTexture$TextureImage/close ()V net/minecraft/client/renderer/texture/SimpleTexture$TextureImage/close ()V +MD: net/minecraft/client/renderer/texture/SimpleTexture$TextureImage/m_118154_ ()Lnet/minecraft/client/resources/metadata/texture/TextureMetadataSection; net/minecraft/client/renderer/texture/SimpleTexture$TextureImage/getTextureMetadata ()Lnet/minecraft/client/resources/metadata/texture/TextureMetadataSection; +MD: net/minecraft/client/renderer/texture/SimpleTexture$TextureImage/m_118155_ (Lnet/minecraft/server/packs/resources/ResourceManager;Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/client/renderer/texture/SimpleTexture$TextureImage; net/minecraft/client/renderer/texture/SimpleTexture$TextureImage/load (Lnet/minecraft/server/packs/resources/ResourceManager;Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/client/renderer/texture/SimpleTexture$TextureImage; +MD: net/minecraft/client/renderer/texture/SimpleTexture$TextureImage/m_118158_ ()Lcom/mojang/blaze3d/platform/NativeImage; net/minecraft/client/renderer/texture/SimpleTexture$TextureImage/getImage ()Lcom/mojang/blaze3d/platform/NativeImage; +MD: net/minecraft/client/renderer/texture/SimpleTexture$TextureImage/m_118159_ ()V net/minecraft/client/renderer/texture/SimpleTexture$TextureImage/throwIfError ()V +MD: net/minecraft/client/renderer/texture/SpriteContents/ ()V net/minecraft/client/renderer/texture/SpriteContents/ ()V +MD: net/minecraft/client/renderer/texture/SpriteContents/ (Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/client/resources/metadata/animation/FrameSize;Lcom/mojang/blaze3d/platform/NativeImage;Lnet/minecraft/client/resources/metadata/animation/AnimationMetadataSection;)V net/minecraft/client/renderer/texture/SpriteContents/ (Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/client/resources/metadata/animation/FrameSize;Lcom/mojang/blaze3d/platform/NativeImage;Lnet/minecraft/client/resources/metadata/animation/AnimationMetadataSection;)V +MD: net/minecraft/client/renderer/texture/SpriteContents/close ()V net/minecraft/client/renderer/texture/SpriteContents/close ()V +MD: net/minecraft/client/renderer/texture/SpriteContents/m_245088_ ()I net/minecraft/client/renderer/texture/SpriteContents/getFrameCount ()I +MD: net/minecraft/client/renderer/texture/SpriteContents/m_245330_ ()I net/minecraft/client/renderer/texture/SpriteContents/height ()I +MD: net/minecraft/client/renderer/texture/SpriteContents/m_245638_ ()Ljava/util/stream/IntStream; net/minecraft/client/renderer/texture/SpriteContents/getUniqueFrames ()Ljava/util/stream/IntStream; +MD: net/minecraft/client/renderer/texture/SpriteContents/m_245776_ ()Ljava/lang/String; net/minecraft/client/renderer/texture/SpriteContents/lambda$increaseMipLevel$0 ()Ljava/lang/String; +MD: net/minecraft/client/renderer/texture/SpriteContents/m_245953_ (Ljava/util/List;II)V net/minecraft/client/renderer/texture/SpriteContents/lambda$createAnimatedTexture$3 (Ljava/util/List;II)V +MD: net/minecraft/client/renderer/texture/SpriteContents/m_245970_ (III)Z net/minecraft/client/renderer/texture/SpriteContents/isTransparent (III)Z +MD: net/minecraft/client/renderer/texture/SpriteContents/m_246162_ ()Lnet/minecraft/resources/ResourceLocation; net/minecraft/client/renderer/texture/SpriteContents/name ()Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/client/renderer/texture/SpriteContents/m_246368_ (I)V net/minecraft/client/renderer/texture/SpriteContents/increaseMipLevel (I)V +MD: net/minecraft/client/renderer/texture/SpriteContents/m_246492_ ()I net/minecraft/client/renderer/texture/SpriteContents/width ()I +MD: net/minecraft/client/renderer/texture/SpriteContents/m_246599_ ()Ljava/lang/String; net/minecraft/client/renderer/texture/SpriteContents/lambda$increaseMipLevel$1 ()Ljava/lang/String; +MD: net/minecraft/client/renderer/texture/SpriteContents/m_246786_ ()Lnet/minecraft/client/renderer/texture/SpriteTicker; net/minecraft/client/renderer/texture/SpriteContents/createTicker ()Lnet/minecraft/client/renderer/texture/SpriteTicker; +MD: net/minecraft/client/renderer/texture/SpriteContents/m_246850_ (II)V net/minecraft/client/renderer/texture/SpriteContents/uploadFirstFrame (II)V +MD: net/minecraft/client/renderer/texture/SpriteContents/m_247381_ (IIII[Lcom/mojang/blaze3d/platform/NativeImage;)V net/minecraft/client/renderer/texture/SpriteContents/upload (IIII[Lcom/mojang/blaze3d/platform/NativeImage;)V +MD: net/minecraft/client/renderer/texture/SpriteContents/m_247391_ (Lnet/minecraft/client/resources/metadata/animation/FrameSize;IILnet/minecraft/client/resources/metadata/animation/AnimationMetadataSection;)Lnet/minecraft/client/renderer/texture/SpriteContents$AnimatedTexture; net/minecraft/client/renderer/texture/SpriteContents/createAnimatedTexture (Lnet/minecraft/client/resources/metadata/animation/FrameSize;IILnet/minecraft/client/resources/metadata/animation/AnimationMetadataSection;)Lnet/minecraft/client/renderer/texture/SpriteContents$AnimatedTexture; +MD: net/minecraft/client/renderer/texture/SpriteContents/m_247508_ (Lit/unimi/dsi/fastutil/ints/IntSet;I)Z net/minecraft/client/renderer/texture/SpriteContents/lambda$createAnimatedTexture$4 (Lit/unimi/dsi/fastutil/ints/IntSet;I)Z +MD: net/minecraft/client/renderer/texture/SpriteContents/m_247509_ ()Ljava/lang/String; net/minecraft/client/renderer/texture/SpriteContents/lambda$increaseMipLevel$2 ()Ljava/lang/String; +MD: net/minecraft/client/renderer/texture/SpriteContents/toString ()Ljava/lang/String; net/minecraft/client/renderer/texture/SpriteContents/toString ()Ljava/lang/String; +MD: net/minecraft/client/renderer/texture/SpriteContents$AnimatedTexture/ (Lnet/minecraft/client/renderer/texture/SpriteContents;Ljava/util/List;IZ)V net/minecraft/client/renderer/texture/SpriteContents$AnimatedTexture/ (Lnet/minecraft/client/renderer/texture/SpriteContents;Ljava/util/List;IZ)V +MD: net/minecraft/client/renderer/texture/SpriteContents$AnimatedTexture/m_245074_ (III)V net/minecraft/client/renderer/texture/SpriteContents$AnimatedTexture/uploadFrame (III)V +MD: net/minecraft/client/renderer/texture/SpriteContents$AnimatedTexture/m_245080_ (I)I net/minecraft/client/renderer/texture/SpriteContents$AnimatedTexture/getFrameX (I)I +MD: net/minecraft/client/renderer/texture/SpriteContents$AnimatedTexture/m_246130_ ()Ljava/util/stream/IntStream; net/minecraft/client/renderer/texture/SpriteContents$AnimatedTexture/getUniqueFrames ()Ljava/util/stream/IntStream; +MD: net/minecraft/client/renderer/texture/SpriteContents$AnimatedTexture/m_246436_ (I)I net/minecraft/client/renderer/texture/SpriteContents$AnimatedTexture/getFrameY (I)I +MD: net/minecraft/client/renderer/texture/SpriteContents$AnimatedTexture/m_246690_ ()Lnet/minecraft/client/renderer/texture/SpriteTicker; net/minecraft/client/renderer/texture/SpriteContents$AnimatedTexture/createTicker ()Lnet/minecraft/client/renderer/texture/SpriteTicker; +MD: net/minecraft/client/renderer/texture/SpriteContents$AnimatedTexture/m_247129_ (II)V net/minecraft/client/renderer/texture/SpriteContents$AnimatedTexture/uploadFirstFrame (II)V +MD: net/minecraft/client/renderer/texture/SpriteContents$AnimatedTexture/m_247333_ (Lnet/minecraft/client/renderer/texture/SpriteContents$FrameInfo;)I net/minecraft/client/renderer/texture/SpriteContents$AnimatedTexture/lambda$getUniqueFrames$0 (Lnet/minecraft/client/renderer/texture/SpriteContents$FrameInfo;)I +MD: net/minecraft/client/renderer/texture/SpriteContents$FrameInfo/ (II)V net/minecraft/client/renderer/texture/SpriteContents$FrameInfo/ (II)V +MD: net/minecraft/client/renderer/texture/SpriteContents$InterpolationData/ (Lnet/minecraft/client/renderer/texture/SpriteContents;)V net/minecraft/client/renderer/texture/SpriteContents$InterpolationData/ (Lnet/minecraft/client/renderer/texture/SpriteContents;)V +MD: net/minecraft/client/renderer/texture/SpriteContents$InterpolationData/close ()V net/minecraft/client/renderer/texture/SpriteContents$InterpolationData/close ()V +MD: net/minecraft/client/renderer/texture/SpriteContents$InterpolationData/m_245152_ (IILnet/minecraft/client/renderer/texture/SpriteContents$Ticker;)V net/minecraft/client/renderer/texture/SpriteContents$InterpolationData/uploadInterpolatedFrame (IILnet/minecraft/client/renderer/texture/SpriteContents$Ticker;)V +MD: net/minecraft/client/renderer/texture/SpriteContents$InterpolationData/m_246491_ (Lnet/minecraft/client/renderer/texture/SpriteContents$AnimatedTexture;IIII)I net/minecraft/client/renderer/texture/SpriteContents$InterpolationData/getPixel (Lnet/minecraft/client/renderer/texture/SpriteContents$AnimatedTexture;IIII)I +MD: net/minecraft/client/renderer/texture/SpriteContents$InterpolationData/m_247111_ (DII)I net/minecraft/client/renderer/texture/SpriteContents$InterpolationData/mix (DII)I +MD: net/minecraft/client/renderer/texture/SpriteContents$Ticker/ (Lnet/minecraft/client/renderer/texture/SpriteContents;Lnet/minecraft/client/renderer/texture/SpriteContents$AnimatedTexture;Lnet/minecraft/client/renderer/texture/SpriteContents$InterpolationData;)V net/minecraft/client/renderer/texture/SpriteContents$Ticker/ (Lnet/minecraft/client/renderer/texture/SpriteContents;Lnet/minecraft/client/renderer/texture/SpriteContents$AnimatedTexture;Lnet/minecraft/client/renderer/texture/SpriteContents$InterpolationData;)V +MD: net/minecraft/client/renderer/texture/SpriteContents$Ticker/close ()V net/minecraft/client/renderer/texture/SpriteContents$Ticker/close ()V +MD: net/minecraft/client/renderer/texture/SpriteContents$Ticker/m_247291_ (II)V net/minecraft/client/renderer/texture/SpriteContents$Ticker/lambda$tickAndUpload$0 (II)V +MD: net/minecraft/client/renderer/texture/SpriteContents$Ticker/m_247697_ (II)V net/minecraft/client/renderer/texture/SpriteContents$Ticker/tickAndUpload (II)V +MD: net/minecraft/client/renderer/texture/SpriteLoader/ ()V net/minecraft/client/renderer/texture/SpriteLoader/ ()V +MD: net/minecraft/client/renderer/texture/SpriteLoader/ (Lnet/minecraft/resources/ResourceLocation;III)V net/minecraft/client/renderer/texture/SpriteLoader/ (Lnet/minecraft/resources/ResourceLocation;III)V +MD: net/minecraft/client/renderer/texture/SpriteLoader/m_245083_ (Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/server/packs/resources/Resource;)Lnet/minecraft/client/renderer/texture/SpriteContents; net/minecraft/client/renderer/texture/SpriteLoader/loadSprite (Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/server/packs/resources/Resource;)Lnet/minecraft/client/renderer/texture/SpriteContents; +MD: net/minecraft/client/renderer/texture/SpriteLoader/m_245151_ (Lnet/minecraft/client/renderer/texture/Stitcher$Entry;)Ljava/lang/String; net/minecraft/client/renderer/texture/SpriteLoader/lambda$stitch$0 (Lnet/minecraft/client/renderer/texture/Stitcher$Entry;)Ljava/lang/String; +MD: net/minecraft/client/renderer/texture/SpriteLoader/m_245483_ (Lnet/minecraft/client/renderer/texture/TextureAtlas;)Lnet/minecraft/client/renderer/texture/SpriteLoader; net/minecraft/client/renderer/texture/SpriteLoader/create (Lnet/minecraft/client/renderer/texture/TextureAtlas;)Lnet/minecraft/client/renderer/texture/SpriteLoader; +MD: net/minecraft/client/renderer/texture/SpriteLoader/m_245562_ (ILnet/minecraft/client/renderer/texture/TextureAtlasSprite;)V net/minecraft/client/renderer/texture/SpriteLoader/lambda$stitch$1 (ILnet/minecraft/client/renderer/texture/TextureAtlasSprite;)V +MD: net/minecraft/client/renderer/texture/SpriteLoader/m_246118_ (Ljava/util/List;)Ljava/util/List; net/minecraft/client/renderer/texture/SpriteLoader/lambda$runSpriteSuppliers$4 (Ljava/util/List;)Ljava/util/List; +MD: net/minecraft/client/renderer/texture/SpriteLoader/m_246510_ (Ljava/util/Map;IILnet/minecraft/client/renderer/texture/SpriteContents;II)V net/minecraft/client/renderer/texture/SpriteLoader/lambda$getStitchedSprites$8 (Ljava/util/Map;IILnet/minecraft/client/renderer/texture/SpriteContents;II)V +MD: net/minecraft/client/renderer/texture/SpriteLoader/m_246625_ (Ljava/util/Map;I)V net/minecraft/client/renderer/texture/SpriteLoader/lambda$stitch$2 (Ljava/util/Map;I)V +MD: net/minecraft/client/renderer/texture/SpriteLoader/m_260766_ (Ljava/util/concurrent/Executor;Ljava/util/List;)Ljava/util/concurrent/CompletionStage; net/minecraft/client/renderer/texture/SpriteLoader/lambda$loadAndStitch$6 (Ljava/util/concurrent/Executor;Ljava/util/List;)Ljava/util/concurrent/CompletionStage; +MD: net/minecraft/client/renderer/texture/SpriteLoader/m_260767_ (ILjava/util/concurrent/Executor;Ljava/util/List;)Lnet/minecraft/client/renderer/texture/SpriteLoader$Preparations; net/minecraft/client/renderer/texture/SpriteLoader/lambda$loadAndStitch$7 (ILjava/util/concurrent/Executor;Ljava/util/List;)Lnet/minecraft/client/renderer/texture/SpriteLoader$Preparations; +MD: net/minecraft/client/renderer/texture/SpriteLoader/m_260768_ (Ljava/util/concurrent/Executor;Ljava/util/function/Supplier;)Ljava/util/concurrent/CompletableFuture; net/minecraft/client/renderer/texture/SpriteLoader/lambda$runSpriteSuppliers$3 (Ljava/util/concurrent/Executor;Ljava/util/function/Supplier;)Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/client/renderer/texture/SpriteLoader/m_260769_ (Lnet/minecraft/server/packs/resources/ResourceManager;Lnet/minecraft/resources/ResourceLocation;)Ljava/util/List; net/minecraft/client/renderer/texture/SpriteLoader/lambda$loadAndStitch$5 (Lnet/minecraft/server/packs/resources/ResourceManager;Lnet/minecraft/resources/ResourceLocation;)Ljava/util/List; +MD: net/minecraft/client/renderer/texture/SpriteLoader/m_260809_ (Ljava/util/List;Ljava/util/concurrent/Executor;)Ljava/util/concurrent/CompletableFuture; net/minecraft/client/renderer/texture/SpriteLoader/runSpriteSuppliers (Ljava/util/List;Ljava/util/concurrent/Executor;)Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/client/renderer/texture/SpriteLoader/m_260881_ (Lnet/minecraft/server/packs/resources/ResourceManager;Lnet/minecraft/resources/ResourceLocation;ILjava/util/concurrent/Executor;)Ljava/util/concurrent/CompletableFuture; net/minecraft/client/renderer/texture/SpriteLoader/loadAndStitch (Lnet/minecraft/server/packs/resources/ResourceManager;Lnet/minecraft/resources/ResourceLocation;ILjava/util/concurrent/Executor;)Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/client/renderer/texture/SpriteLoader/m_261295_ (Ljava/util/List;ILjava/util/concurrent/Executor;)Lnet/minecraft/client/renderer/texture/SpriteLoader$Preparations; net/minecraft/client/renderer/texture/SpriteLoader/stitch (Ljava/util/List;ILjava/util/concurrent/Executor;)Lnet/minecraft/client/renderer/texture/SpriteLoader$Preparations; +MD: net/minecraft/client/renderer/texture/SpriteLoader/m_276091_ (Lnet/minecraft/client/renderer/texture/Stitcher;II)Ljava/util/Map; net/minecraft/client/renderer/texture/SpriteLoader/getStitchedSprites (Lnet/minecraft/client/renderer/texture/Stitcher;II)Ljava/util/Map; +MD: net/minecraft/client/renderer/texture/SpriteLoader$Preparations/ (IIILnet/minecraft/client/renderer/texture/TextureAtlasSprite;Ljava/util/Map;Ljava/util/concurrent/CompletableFuture;)V net/minecraft/client/renderer/texture/SpriteLoader$Preparations/ (IIILnet/minecraft/client/renderer/texture/TextureAtlasSprite;Ljava/util/Map;Ljava/util/concurrent/CompletableFuture;)V +MD: net/minecraft/client/renderer/texture/SpriteLoader$Preparations/equals (Ljava/lang/Object;)Z net/minecraft/client/renderer/texture/SpriteLoader$Preparations/equals (Ljava/lang/Object;)Z +MD: net/minecraft/client/renderer/texture/SpriteLoader$Preparations/f_243669_ ()I net/minecraft/client/renderer/texture/SpriteLoader$Preparations/width ()I +MD: net/minecraft/client/renderer/texture/SpriteLoader$Preparations/f_243807_ ()Ljava/util/Map; net/minecraft/client/renderer/texture/SpriteLoader$Preparations/regions ()Ljava/util/Map; +MD: net/minecraft/client/renderer/texture/SpriteLoader$Preparations/f_243912_ ()Lnet/minecraft/client/renderer/texture/TextureAtlasSprite; net/minecraft/client/renderer/texture/SpriteLoader$Preparations/missing ()Lnet/minecraft/client/renderer/texture/TextureAtlasSprite; +MD: net/minecraft/client/renderer/texture/SpriteLoader$Preparations/f_244353_ ()I net/minecraft/client/renderer/texture/SpriteLoader$Preparations/mipLevel ()I +MD: net/minecraft/client/renderer/texture/SpriteLoader$Preparations/f_244415_ ()Ljava/util/concurrent/CompletableFuture; net/minecraft/client/renderer/texture/SpriteLoader$Preparations/readyForUpload ()Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/client/renderer/texture/SpriteLoader$Preparations/f_244632_ ()I net/minecraft/client/renderer/texture/SpriteLoader$Preparations/height ()I +MD: net/minecraft/client/renderer/texture/SpriteLoader$Preparations/hashCode ()I net/minecraft/client/renderer/texture/SpriteLoader$Preparations/hashCode ()I +MD: net/minecraft/client/renderer/texture/SpriteLoader$Preparations/m_245936_ (Ljava/lang/Void;)Lnet/minecraft/client/renderer/texture/SpriteLoader$Preparations; net/minecraft/client/renderer/texture/SpriteLoader$Preparations/lambda$waitForUpload$0 (Ljava/lang/Void;)Lnet/minecraft/client/renderer/texture/SpriteLoader$Preparations; +MD: net/minecraft/client/renderer/texture/SpriteLoader$Preparations/m_246429_ ()Ljava/util/concurrent/CompletableFuture; net/minecraft/client/renderer/texture/SpriteLoader$Preparations/waitForUpload ()Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/client/renderer/texture/SpriteLoader$Preparations/toString ()Ljava/lang/String; net/minecraft/client/renderer/texture/SpriteLoader$Preparations/toString ()Ljava/lang/String; +MD: net/minecraft/client/renderer/texture/SpriteTicker/close ()V net/minecraft/client/renderer/texture/SpriteTicker/close ()V +MD: net/minecraft/client/renderer/texture/SpriteTicker/m_247697_ (II)V net/minecraft/client/renderer/texture/SpriteTicker/tickAndUpload (II)V +MD: net/minecraft/client/renderer/texture/Stitcher/ ()V net/minecraft/client/renderer/texture/Stitcher/ ()V +MD: net/minecraft/client/renderer/texture/Stitcher/ (III)V net/minecraft/client/renderer/texture/Stitcher/ (III)V +MD: net/minecraft/client/renderer/texture/Stitcher/m_118174_ ()I net/minecraft/client/renderer/texture/Stitcher/getWidth ()I +MD: net/minecraft/client/renderer/texture/Stitcher/m_118178_ (Lnet/minecraft/client/renderer/texture/Stitcher$Holder;)Z net/minecraft/client/renderer/texture/Stitcher/addToStorage (Lnet/minecraft/client/renderer/texture/Stitcher$Holder;)Z +MD: net/minecraft/client/renderer/texture/Stitcher/m_118180_ (Lnet/minecraft/client/renderer/texture/Stitcher$SpriteLoader;)V net/minecraft/client/renderer/texture/Stitcher/gatherSprites (Lnet/minecraft/client/renderer/texture/Stitcher$SpriteLoader;)V +MD: net/minecraft/client/renderer/texture/Stitcher/m_118187_ ()I net/minecraft/client/renderer/texture/Stitcher/getHeight ()I +MD: net/minecraft/client/renderer/texture/Stitcher/m_118188_ (II)I net/minecraft/client/renderer/texture/Stitcher/smallestFittingMinTexel (II)I +MD: net/minecraft/client/renderer/texture/Stitcher/m_118191_ (Lnet/minecraft/client/renderer/texture/Stitcher$Holder;)Z net/minecraft/client/renderer/texture/Stitcher/expand (Lnet/minecraft/client/renderer/texture/Stitcher$Holder;)Z +MD: net/minecraft/client/renderer/texture/Stitcher/m_118193_ ()V net/minecraft/client/renderer/texture/Stitcher/stitch ()V +MD: net/minecraft/client/renderer/texture/Stitcher/m_118198_ (Lnet/minecraft/client/renderer/texture/Stitcher$Holder;)Ljava/lang/Integer; net/minecraft/client/renderer/texture/Stitcher/lambda$static$1 (Lnet/minecraft/client/renderer/texture/Stitcher$Holder;)Ljava/lang/Integer; +MD: net/minecraft/client/renderer/texture/Stitcher/m_118200_ (Lnet/minecraft/client/renderer/texture/Stitcher$Holder;)Ljava/lang/Integer; net/minecraft/client/renderer/texture/Stitcher/lambda$static$0 (Lnet/minecraft/client/renderer/texture/Stitcher$Holder;)Ljava/lang/Integer; +MD: net/minecraft/client/renderer/texture/Stitcher/m_244737_ (Lnet/minecraft/client/renderer/texture/Stitcher$Holder;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/client/renderer/texture/Stitcher/lambda$static$2 (Lnet/minecraft/client/renderer/texture/Stitcher$Holder;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/client/renderer/texture/Stitcher/m_244738_ (Lnet/minecraft/client/renderer/texture/Stitcher$Holder;)Lnet/minecraft/client/renderer/texture/Stitcher$Entry; net/minecraft/client/renderer/texture/Stitcher/lambda$stitch$3 (Lnet/minecraft/client/renderer/texture/Stitcher$Holder;)Lnet/minecraft/client/renderer/texture/Stitcher$Entry; +MD: net/minecraft/client/renderer/texture/Stitcher/m_246099_ (Lnet/minecraft/client/renderer/texture/Stitcher$Entry;)V net/minecraft/client/renderer/texture/Stitcher/registerSprite (Lnet/minecraft/client/renderer/texture/Stitcher$Entry;)V +MD: net/minecraft/client/renderer/texture/Stitcher$Entry/m_245330_ ()I net/minecraft/client/renderer/texture/Stitcher$Entry/height ()I +MD: net/minecraft/client/renderer/texture/Stitcher$Entry/m_246162_ ()Lnet/minecraft/resources/ResourceLocation; net/minecraft/client/renderer/texture/Stitcher$Entry/name ()Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/client/renderer/texture/Stitcher$Entry/m_246492_ ()I net/minecraft/client/renderer/texture/Stitcher$Entry/width ()I +MD: net/minecraft/client/renderer/texture/Stitcher$Holder/ (Lnet/minecraft/client/renderer/texture/Stitcher$Entry;I)V net/minecraft/client/renderer/texture/Stitcher$Holder/ (Lnet/minecraft/client/renderer/texture/Stitcher$Entry;I)V +MD: net/minecraft/client/renderer/texture/Stitcher$Holder/ (Lnet/minecraft/client/renderer/texture/Stitcher$Entry;II)V net/minecraft/client/renderer/texture/Stitcher$Holder/ (Lnet/minecraft/client/renderer/texture/Stitcher$Entry;II)V +MD: net/minecraft/client/renderer/texture/Stitcher$Holder/equals (Ljava/lang/Object;)Z net/minecraft/client/renderer/texture/Stitcher$Holder/equals (Ljava/lang/Object;)Z +MD: net/minecraft/client/renderer/texture/Stitcher$Holder/f_118203_ ()I net/minecraft/client/renderer/texture/Stitcher$Holder/width ()I +MD: net/minecraft/client/renderer/texture/Stitcher$Holder/f_118204_ ()I net/minecraft/client/renderer/texture/Stitcher$Holder/height ()I +MD: net/minecraft/client/renderer/texture/Stitcher$Holder/f_244486_ ()Lnet/minecraft/client/renderer/texture/Stitcher$Entry; net/minecraft/client/renderer/texture/Stitcher$Holder/entry ()Lnet/minecraft/client/renderer/texture/Stitcher$Entry; +MD: net/minecraft/client/renderer/texture/Stitcher$Holder/hashCode ()I net/minecraft/client/renderer/texture/Stitcher$Holder/hashCode ()I +MD: net/minecraft/client/renderer/texture/Stitcher$Holder/toString ()Ljava/lang/String; net/minecraft/client/renderer/texture/Stitcher$Holder/toString ()Ljava/lang/String; +MD: net/minecraft/client/renderer/texture/Stitcher$Region/ (IIII)V net/minecraft/client/renderer/texture/Stitcher$Region/ (IIII)V +MD: net/minecraft/client/renderer/texture/Stitcher$Region/m_118221_ (Lnet/minecraft/client/renderer/texture/Stitcher$Holder;)Z net/minecraft/client/renderer/texture/Stitcher$Region/add (Lnet/minecraft/client/renderer/texture/Stitcher$Holder;)Z +MD: net/minecraft/client/renderer/texture/Stitcher$Region/m_118225_ ()I net/minecraft/client/renderer/texture/Stitcher$Region/getX ()I +MD: net/minecraft/client/renderer/texture/Stitcher$Region/m_118226_ ()I net/minecraft/client/renderer/texture/Stitcher$Region/getY ()I +MD: net/minecraft/client/renderer/texture/Stitcher$Region/m_246763_ (Lnet/minecraft/client/renderer/texture/Stitcher$SpriteLoader;)V net/minecraft/client/renderer/texture/Stitcher$Region/walk (Lnet/minecraft/client/renderer/texture/Stitcher$SpriteLoader;)V +MD: net/minecraft/client/renderer/texture/Stitcher$Region/toString ()Ljava/lang/String; net/minecraft/client/renderer/texture/Stitcher$Region/toString ()Ljava/lang/String; +MD: net/minecraft/client/renderer/texture/Stitcher$SpriteLoader/m_118228_ (Lnet/minecraft/client/renderer/texture/Stitcher$Entry;II)V net/minecraft/client/renderer/texture/Stitcher$SpriteLoader/load (Lnet/minecraft/client/renderer/texture/Stitcher$Entry;II)V +MD: net/minecraft/client/renderer/texture/StitcherException/ (Lnet/minecraft/client/renderer/texture/Stitcher$Entry;Ljava/util/Collection;)V net/minecraft/client/renderer/texture/StitcherException/ (Lnet/minecraft/client/renderer/texture/Stitcher$Entry;Ljava/util/Collection;)V +MD: net/minecraft/client/renderer/texture/StitcherException/m_118258_ ()Ljava/util/Collection; net/minecraft/client/renderer/texture/StitcherException/getAllSprites ()Ljava/util/Collection; +MD: net/minecraft/client/renderer/texture/TextureAtlas/ ()V net/minecraft/client/renderer/texture/TextureAtlas/ ()V +MD: net/minecraft/client/renderer/texture/TextureAtlas/ (Lnet/minecraft/resources/ResourceLocation;)V net/minecraft/client/renderer/texture/TextureAtlas/ (Lnet/minecraft/resources/ResourceLocation;)V +MD: net/minecraft/client/renderer/texture/TextureAtlas/m_118270_ ()V net/minecraft/client/renderer/texture/TextureAtlas/cycleAnimationFrames ()V +MD: net/minecraft/client/renderer/texture/TextureAtlas/m_118316_ (Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/client/renderer/texture/TextureAtlasSprite; net/minecraft/client/renderer/texture/TextureAtlas/getSprite (Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/client/renderer/texture/TextureAtlasSprite; +MD: net/minecraft/client/renderer/texture/TextureAtlas/m_118329_ ()V net/minecraft/client/renderer/texture/TextureAtlas/clearTextureData ()V +MD: net/minecraft/client/renderer/texture/TextureAtlas/m_118330_ ()Lnet/minecraft/resources/ResourceLocation; net/minecraft/client/renderer/texture/TextureAtlas/location ()Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/client/renderer/texture/TextureAtlas/m_245285_ ()I net/minecraft/client/renderer/texture/TextureAtlas/maxSupportedTextureSize ()I +MD: net/minecraft/client/renderer/texture/TextureAtlas/m_247065_ (Lnet/minecraft/client/renderer/texture/SpriteLoader$Preparations;)V net/minecraft/client/renderer/texture/TextureAtlas/upload (Lnet/minecraft/client/renderer/texture/SpriteLoader$Preparations;)V +MD: net/minecraft/client/renderer/texture/TextureAtlas/m_247255_ (Lnet/minecraft/client/renderer/texture/SpriteLoader$Preparations;)V net/minecraft/client/renderer/texture/TextureAtlas/updateFilter (Lnet/minecraft/client/renderer/texture/SpriteLoader$Preparations;)V +MD: net/minecraft/client/renderer/texture/TextureAtlas/m_260988_ (Ljava/nio/file/Path;Ljava/lang/String;Ljava/util/Map;)V net/minecraft/client/renderer/texture/TextureAtlas/dumpSpriteNames (Ljava/nio/file/Path;Ljava/lang/String;Ljava/util/Map;)V +MD: net/minecraft/client/renderer/texture/TextureAtlas/m_276079_ (Lnet/minecraft/resources/ResourceLocation;Ljava/nio/file/Path;)V net/minecraft/client/renderer/texture/TextureAtlas/dumpContents (Lnet/minecraft/resources/ResourceLocation;Ljava/nio/file/Path;)V +MD: net/minecraft/client/renderer/texture/TextureAtlas/m_276092_ ()I net/minecraft/client/renderer/texture/TextureAtlas/getWidth ()I +MD: net/minecraft/client/renderer/texture/TextureAtlas/m_276095_ ()I net/minecraft/client/renderer/texture/TextureAtlas/getHeight ()I +MD: net/minecraft/client/renderer/texture/TextureAtlas/m_6704_ (Lnet/minecraft/server/packs/resources/ResourceManager;)V net/minecraft/client/renderer/texture/TextureAtlas/load (Lnet/minecraft/server/packs/resources/ResourceManager;)V +MD: net/minecraft/client/renderer/texture/TextureAtlas/m_7673_ ()V net/minecraft/client/renderer/texture/TextureAtlas/tick ()V +MD: net/minecraft/client/renderer/texture/TextureAtlasSprite/ (Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/client/renderer/texture/SpriteContents;IIII)V net/minecraft/client/renderer/texture/TextureAtlasSprite/ (Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/client/renderer/texture/SpriteContents;IIII)V +MD: net/minecraft/client/renderer/texture/TextureAtlasSprite/m_118366_ ()F net/minecraft/client/renderer/texture/TextureAtlasSprite/atlasSize ()F +MD: net/minecraft/client/renderer/texture/TextureAtlasSprite/m_118367_ (D)F net/minecraft/client/renderer/texture/TextureAtlasSprite/getU (D)F +MD: net/minecraft/client/renderer/texture/TextureAtlasSprite/m_118381_ (Lcom/mojang/blaze3d/vertex/VertexConsumer;)Lcom/mojang/blaze3d/vertex/VertexConsumer; net/minecraft/client/renderer/texture/TextureAtlasSprite/wrap (Lcom/mojang/blaze3d/vertex/VertexConsumer;)Lcom/mojang/blaze3d/vertex/VertexConsumer; +MD: net/minecraft/client/renderer/texture/TextureAtlasSprite/m_118393_ (D)F net/minecraft/client/renderer/texture/TextureAtlasSprite/getV (D)F +MD: net/minecraft/client/renderer/texture/TextureAtlasSprite/m_118409_ ()F net/minecraft/client/renderer/texture/TextureAtlasSprite/getU0 ()F +MD: net/minecraft/client/renderer/texture/TextureAtlasSprite/m_118410_ ()F net/minecraft/client/renderer/texture/TextureAtlasSprite/getU1 ()F +MD: net/minecraft/client/renderer/texture/TextureAtlasSprite/m_118411_ ()F net/minecraft/client/renderer/texture/TextureAtlasSprite/getV0 ()F +MD: net/minecraft/client/renderer/texture/TextureAtlasSprite/m_118412_ ()F net/minecraft/client/renderer/texture/TextureAtlasSprite/getV1 ()F +MD: net/minecraft/client/renderer/texture/TextureAtlasSprite/m_118416_ ()V net/minecraft/client/renderer/texture/TextureAtlasSprite/uploadFirstFrame ()V +MD: net/minecraft/client/renderer/texture/TextureAtlasSprite/m_118417_ ()F net/minecraft/client/renderer/texture/TextureAtlasSprite/uvShrinkRatio ()F +MD: net/minecraft/client/renderer/texture/TextureAtlasSprite/m_174727_ (F)F net/minecraft/client/renderer/texture/TextureAtlasSprite/getUOffset (F)F +MD: net/minecraft/client/renderer/texture/TextureAtlasSprite/m_174741_ (F)F net/minecraft/client/renderer/texture/TextureAtlasSprite/getVOffset (F)F +MD: net/minecraft/client/renderer/texture/TextureAtlasSprite/m_174743_ ()I net/minecraft/client/renderer/texture/TextureAtlasSprite/getX ()I +MD: net/minecraft/client/renderer/texture/TextureAtlasSprite/m_174744_ ()I net/minecraft/client/renderer/texture/TextureAtlasSprite/getY ()I +MD: net/minecraft/client/renderer/texture/TextureAtlasSprite/m_245424_ ()Lnet/minecraft/client/renderer/texture/SpriteContents; net/minecraft/client/renderer/texture/TextureAtlasSprite/contents ()Lnet/minecraft/client/renderer/texture/SpriteContents; +MD: net/minecraft/client/renderer/texture/TextureAtlasSprite/m_247406_ ()Lnet/minecraft/client/renderer/texture/TextureAtlasSprite$Ticker; net/minecraft/client/renderer/texture/TextureAtlasSprite/createTicker ()Lnet/minecraft/client/renderer/texture/TextureAtlasSprite$Ticker; +MD: net/minecraft/client/renderer/texture/TextureAtlasSprite/m_247685_ ()Lnet/minecraft/resources/ResourceLocation; net/minecraft/client/renderer/texture/TextureAtlasSprite/atlasLocation ()Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/client/renderer/texture/TextureAtlasSprite/toString ()Ljava/lang/String; net/minecraft/client/renderer/texture/TextureAtlasSprite/toString ()Ljava/lang/String; +MD: net/minecraft/client/renderer/texture/TextureAtlasSprite$1/ (Lnet/minecraft/client/renderer/texture/TextureAtlasSprite;Lnet/minecraft/client/renderer/texture/SpriteTicker;)V net/minecraft/client/renderer/texture/TextureAtlasSprite$1/ (Lnet/minecraft/client/renderer/texture/TextureAtlasSprite;Lnet/minecraft/client/renderer/texture/SpriteTicker;)V +MD: net/minecraft/client/renderer/texture/TextureAtlasSprite$1/close ()V net/minecraft/client/renderer/texture/TextureAtlasSprite$1/close ()V +MD: net/minecraft/client/renderer/texture/TextureAtlasSprite$1/m_245385_ ()V net/minecraft/client/renderer/texture/TextureAtlasSprite$1/tickAndUpload ()V +MD: net/minecraft/client/renderer/texture/TextureAtlasSprite$Ticker/close ()V net/minecraft/client/renderer/texture/TextureAtlasSprite$Ticker/close ()V +MD: net/minecraft/client/renderer/texture/TextureAtlasSprite$Ticker/m_245385_ ()V net/minecraft/client/renderer/texture/TextureAtlasSprite$Ticker/tickAndUpload ()V +MD: net/minecraft/client/renderer/texture/TextureManager/ ()V net/minecraft/client/renderer/texture/TextureManager/ ()V +MD: net/minecraft/client/renderer/texture/TextureManager/ (Lnet/minecraft/server/packs/resources/ResourceManager;)V net/minecraft/client/renderer/texture/TextureManager/ (Lnet/minecraft/server/packs/resources/ResourceManager;)V +MD: net/minecraft/client/renderer/texture/TextureManager/close ()V net/minecraft/client/renderer/texture/TextureManager/close ()V +MD: net/minecraft/client/renderer/texture/TextureManager/m_118486_ (Lnet/minecraft/client/renderer/texture/AbstractTexture;)Ljava/lang/String; net/minecraft/client/renderer/texture/TextureManager/lambda$loadTexture$1 (Lnet/minecraft/client/renderer/texture/AbstractTexture;)Ljava/lang/String; +MD: net/minecraft/client/renderer/texture/TextureManager/m_118488_ (Ljava/lang/Runnable;)V net/minecraft/client/renderer/texture/TextureManager/execute (Ljava/lang/Runnable;)V +MD: net/minecraft/client/renderer/texture/TextureManager/m_118490_ (Ljava/lang/String;Lnet/minecraft/client/renderer/texture/DynamicTexture;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/client/renderer/texture/TextureManager/register (Ljava/lang/String;Lnet/minecraft/client/renderer/texture/DynamicTexture;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/client/renderer/texture/TextureManager/m_118495_ (Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/client/renderer/texture/AbstractTexture;)V net/minecraft/client/renderer/texture/TextureManager/register (Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/client/renderer/texture/AbstractTexture;)V +MD: net/minecraft/client/renderer/texture/TextureManager/m_118498_ (Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/client/renderer/texture/PreloadedTexture;)V net/minecraft/client/renderer/texture/TextureManager/lambda$preload$2 (Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/client/renderer/texture/PreloadedTexture;)V +MD: net/minecraft/client/renderer/texture/TextureManager/m_118501_ (Lnet/minecraft/resources/ResourceLocation;Ljava/util/concurrent/Executor;)Ljava/util/concurrent/CompletableFuture; net/minecraft/client/renderer/texture/TextureManager/preload (Lnet/minecraft/resources/ResourceLocation;Ljava/util/concurrent/Executor;)Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/client/renderer/texture/TextureManager/m_118504_ (Ljava/lang/Runnable;)V net/minecraft/client/renderer/texture/TextureManager/lambda$reload$6 (Ljava/lang/Runnable;)V +MD: net/minecraft/client/renderer/texture/TextureManager/m_118506_ (Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/client/renderer/texture/AbstractTexture; net/minecraft/client/renderer/texture/TextureManager/getTexture (Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/client/renderer/texture/AbstractTexture; +MD: net/minecraft/client/renderer/texture/TextureManager/m_118508_ (Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/client/renderer/texture/AbstractTexture;)V net/minecraft/client/renderer/texture/TextureManager/safeClose (Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/client/renderer/texture/AbstractTexture;)V +MD: net/minecraft/client/renderer/texture/TextureManager/m_118511_ (Ljava/lang/Runnable;)V net/minecraft/client/renderer/texture/TextureManager/lambda$execute$3 (Ljava/lang/Runnable;)V +MD: net/minecraft/client/renderer/texture/TextureManager/m_118513_ (Lnet/minecraft/resources/ResourceLocation;)V net/minecraft/client/renderer/texture/TextureManager/release (Lnet/minecraft/resources/ResourceLocation;)V +MD: net/minecraft/client/renderer/texture/TextureManager/m_118515_ (Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/client/renderer/texture/AbstractTexture;)Lnet/minecraft/client/renderer/texture/AbstractTexture; net/minecraft/client/renderer/texture/TextureManager/loadTexture (Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/client/renderer/texture/AbstractTexture;)Lnet/minecraft/client/renderer/texture/AbstractTexture; +MD: net/minecraft/client/renderer/texture/TextureManager/m_118519_ (Lnet/minecraft/resources/ResourceLocation;)V net/minecraft/client/renderer/texture/TextureManager/_bind (Lnet/minecraft/resources/ResourceLocation;)V +MD: net/minecraft/client/renderer/texture/TextureManager/m_174784_ (Lnet/minecraft/resources/ResourceLocation;)V net/minecraft/client/renderer/texture/TextureManager/bindForSetup (Lnet/minecraft/resources/ResourceLocation;)V +MD: net/minecraft/client/renderer/texture/TextureManager/m_174786_ (Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/client/renderer/texture/AbstractTexture;)Lnet/minecraft/client/renderer/texture/AbstractTexture; net/minecraft/client/renderer/texture/TextureManager/getTexture (Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/client/renderer/texture/AbstractTexture;)Lnet/minecraft/client/renderer/texture/AbstractTexture; +MD: net/minecraft/client/renderer/texture/TextureManager/m_174789_ (Lnet/minecraft/resources/ResourceLocation;)V net/minecraft/client/renderer/texture/TextureManager/lambda$bindForSetup$0 (Lnet/minecraft/resources/ResourceLocation;)V +MD: net/minecraft/client/renderer/texture/TextureManager/m_244739_ (Lnet/minecraft/server/packs/resources/ResourceManager;Ljava/util/concurrent/Executor;Ljava/util/concurrent/CompletableFuture;Ljava/lang/Void;)V net/minecraft/client/renderer/texture/TextureManager/lambda$reload$5 (Lnet/minecraft/server/packs/resources/ResourceManager;Ljava/util/concurrent/Executor;Ljava/util/concurrent/CompletableFuture;Ljava/lang/Void;)V +MD: net/minecraft/client/renderer/texture/TextureManager/m_244740_ (Ljava/util/concurrent/CompletableFuture;)V net/minecraft/client/renderer/texture/TextureManager/lambda$reload$4 (Ljava/util/concurrent/CompletableFuture;)V +MD: net/minecraft/client/renderer/texture/TextureManager/m_276076_ (Ljava/nio/file/Path;)V net/minecraft/client/renderer/texture/TextureManager/lambda$dumpAllSheets$7 (Ljava/nio/file/Path;)V +MD: net/minecraft/client/renderer/texture/TextureManager/m_276077_ (Ljava/nio/file/Path;Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/client/renderer/texture/AbstractTexture;)V net/minecraft/client/renderer/texture/TextureManager/lambda$_dumpAllSheets$8 (Ljava/nio/file/Path;Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/client/renderer/texture/AbstractTexture;)V +MD: net/minecraft/client/renderer/texture/TextureManager/m_276083_ (Ljava/nio/file/Path;)V net/minecraft/client/renderer/texture/TextureManager/_dumpAllSheets (Ljava/nio/file/Path;)V +MD: net/minecraft/client/renderer/texture/TextureManager/m_276085_ (Ljava/nio/file/Path;)V net/minecraft/client/renderer/texture/TextureManager/dumpAllSheets (Ljava/nio/file/Path;)V +MD: net/minecraft/client/renderer/texture/TextureManager/m_5540_ (Lnet/minecraft/server/packs/resources/PreparableReloadListener$PreparationBarrier;Lnet/minecraft/server/packs/resources/ResourceManager;Lnet/minecraft/util/profiling/ProfilerFiller;Lnet/minecraft/util/profiling/ProfilerFiller;Ljava/util/concurrent/Executor;Ljava/util/concurrent/Executor;)Ljava/util/concurrent/CompletableFuture; net/minecraft/client/renderer/texture/TextureManager/reload (Lnet/minecraft/server/packs/resources/PreparableReloadListener$PreparationBarrier;Lnet/minecraft/server/packs/resources/ResourceManager;Lnet/minecraft/util/profiling/ProfilerFiller;Lnet/minecraft/util/profiling/ProfilerFiller;Ljava/util/concurrent/Executor;Ljava/util/concurrent/Executor;)Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/client/renderer/texture/TextureManager/m_7673_ ()V net/minecraft/client/renderer/texture/TextureManager/tick ()V +MD: net/minecraft/client/renderer/texture/Tickable/m_7673_ ()V net/minecraft/client/renderer/texture/Tickable/tick ()V +MD: net/minecraft/client/renderer/texture/atlas/SpriteResourceLoader/ ()V net/minecraft/client/renderer/texture/atlas/SpriteResourceLoader/ ()V +MD: net/minecraft/client/renderer/texture/atlas/SpriteResourceLoader/ (Ljava/util/List;)V net/minecraft/client/renderer/texture/atlas/SpriteResourceLoader/ (Ljava/util/List;)V +MD: net/minecraft/client/renderer/texture/atlas/SpriteResourceLoader/m_260886_ (Lnet/minecraft/server/packs/resources/ResourceManager;)Ljava/util/List; net/minecraft/client/renderer/texture/atlas/SpriteResourceLoader/list (Lnet/minecraft/server/packs/resources/ResourceManager;)Ljava/util/List; +MD: net/minecraft/client/renderer/texture/atlas/SpriteResourceLoader/m_261166_ (Lnet/minecraft/server/packs/resources/ResourceManager;Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/client/renderer/texture/atlas/SpriteResourceLoader; net/minecraft/client/renderer/texture/atlas/SpriteResourceLoader/load (Lnet/minecraft/server/packs/resources/ResourceManager;Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/client/renderer/texture/atlas/SpriteResourceLoader; +MD: net/minecraft/client/renderer/texture/atlas/SpriteResourceLoader/m_261183_ (Lnet/minecraft/server/packs/resources/ResourceManager;Lnet/minecraft/client/renderer/texture/atlas/SpriteSource$Output;Lnet/minecraft/client/renderer/texture/atlas/SpriteSource;)V net/minecraft/client/renderer/texture/atlas/SpriteResourceLoader/lambda$list$0 (Lnet/minecraft/server/packs/resources/ResourceManager;Lnet/minecraft/client/renderer/texture/atlas/SpriteSource$Output;Lnet/minecraft/client/renderer/texture/atlas/SpriteSource;)V +MD: net/minecraft/client/renderer/texture/atlas/SpriteResourceLoader$1/ (Lnet/minecraft/client/renderer/texture/atlas/SpriteResourceLoader;Ljava/util/Map;)V net/minecraft/client/renderer/texture/atlas/SpriteResourceLoader$1/ (Lnet/minecraft/client/renderer/texture/atlas/SpriteResourceLoader;Ljava/util/Map;)V +MD: net/minecraft/client/renderer/texture/atlas/SpriteResourceLoader$1/m_260801_ (Ljava/util/function/Predicate;)V net/minecraft/client/renderer/texture/atlas/SpriteResourceLoader$1/removeAll (Ljava/util/function/Predicate;)V +MD: net/minecraft/client/renderer/texture/atlas/SpriteResourceLoader$1/m_260840_ (Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/client/renderer/texture/atlas/SpriteSource$SpriteSupplier;)V net/minecraft/client/renderer/texture/atlas/SpriteResourceLoader$1/add (Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/client/renderer/texture/atlas/SpriteSource$SpriteSupplier;)V +MD: net/minecraft/client/renderer/texture/atlas/SpriteSource/ ()V net/minecraft/client/renderer/texture/atlas/SpriteSource/ ()V +MD: net/minecraft/client/renderer/texture/atlas/SpriteSource/m_260850_ ()Lnet/minecraft/client/renderer/texture/atlas/SpriteSourceType; net/minecraft/client/renderer/texture/atlas/SpriteSource/type ()Lnet/minecraft/client/renderer/texture/atlas/SpriteSourceType; +MD: net/minecraft/client/renderer/texture/atlas/SpriteSource/m_260891_ (Lnet/minecraft/server/packs/resources/ResourceManager;Lnet/minecraft/client/renderer/texture/atlas/SpriteSource$Output;)V net/minecraft/client/renderer/texture/atlas/SpriteSource/run (Lnet/minecraft/server/packs/resources/ResourceManager;Lnet/minecraft/client/renderer/texture/atlas/SpriteSource$Output;)V +MD: net/minecraft/client/renderer/texture/atlas/SpriteSource$Output/m_260801_ (Ljava/util/function/Predicate;)V net/minecraft/client/renderer/texture/atlas/SpriteSource$Output/removeAll (Ljava/util/function/Predicate;)V +MD: net/minecraft/client/renderer/texture/atlas/SpriteSource$Output/m_260840_ (Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/client/renderer/texture/atlas/SpriteSource$SpriteSupplier;)V net/minecraft/client/renderer/texture/atlas/SpriteSource$Output/add (Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/client/renderer/texture/atlas/SpriteSource$SpriteSupplier;)V +MD: net/minecraft/client/renderer/texture/atlas/SpriteSource$Output/m_261028_ (Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/server/packs/resources/Resource;)V net/minecraft/client/renderer/texture/atlas/SpriteSource$Output/add (Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/server/packs/resources/Resource;)V +MD: net/minecraft/client/renderer/texture/atlas/SpriteSource$Output/m_261059_ (Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/server/packs/resources/Resource;)Lnet/minecraft/client/renderer/texture/SpriteContents; net/minecraft/client/renderer/texture/atlas/SpriteSource$Output/lambda$add$0 (Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/server/packs/resources/Resource;)Lnet/minecraft/client/renderer/texture/SpriteContents; +MD: net/minecraft/client/renderer/texture/atlas/SpriteSource$SpriteSupplier/m_260986_ ()V net/minecraft/client/renderer/texture/atlas/SpriteSource$SpriteSupplier/discard ()V +MD: net/minecraft/client/renderer/texture/atlas/SpriteSourceType/ (Lcom/mojang/serialization/Codec;)V net/minecraft/client/renderer/texture/atlas/SpriteSourceType/ (Lcom/mojang/serialization/Codec;)V +MD: net/minecraft/client/renderer/texture/atlas/SpriteSourceType/equals (Ljava/lang/Object;)Z net/minecraft/client/renderer/texture/atlas/SpriteSourceType/equals (Ljava/lang/Object;)Z +MD: net/minecraft/client/renderer/texture/atlas/SpriteSourceType/f_260449_ ()Lcom/mojang/serialization/Codec; net/minecraft/client/renderer/texture/atlas/SpriteSourceType/codec ()Lcom/mojang/serialization/Codec; +MD: net/minecraft/client/renderer/texture/atlas/SpriteSourceType/hashCode ()I net/minecraft/client/renderer/texture/atlas/SpriteSourceType/hashCode ()I +MD: net/minecraft/client/renderer/texture/atlas/SpriteSourceType/toString ()Ljava/lang/String; net/minecraft/client/renderer/texture/atlas/SpriteSourceType/toString ()Ljava/lang/String; +MD: net/minecraft/client/renderer/texture/atlas/SpriteSources/ ()V net/minecraft/client/renderer/texture/atlas/SpriteSources/ ()V +MD: net/minecraft/client/renderer/texture/atlas/SpriteSources/ ()V net/minecraft/client/renderer/texture/atlas/SpriteSources/ ()V +MD: net/minecraft/client/renderer/texture/atlas/SpriteSources/m_260887_ (Ljava/lang/String;Lcom/mojang/serialization/Codec;)Lnet/minecraft/client/renderer/texture/atlas/SpriteSourceType; net/minecraft/client/renderer/texture/atlas/SpriteSources/register (Ljava/lang/String;Lcom/mojang/serialization/Codec;)Lnet/minecraft/client/renderer/texture/atlas/SpriteSourceType; +MD: net/minecraft/client/renderer/texture/atlas/SpriteSources/m_274004_ (Lnet/minecraft/resources/ResourceLocation;)Ljava/lang/String; net/minecraft/client/renderer/texture/atlas/SpriteSources/lambda$static$0 (Lnet/minecraft/resources/ResourceLocation;)Ljava/lang/String; +MD: net/minecraft/client/renderer/texture/atlas/SpriteSources/m_274005_ (Lnet/minecraft/resources/ResourceLocation;)Ljava/lang/String; net/minecraft/client/renderer/texture/atlas/SpriteSources/lambda$static$2 (Lnet/minecraft/resources/ResourceLocation;)Ljava/lang/String; +MD: net/minecraft/client/renderer/texture/atlas/SpriteSources/m_274006_ (Lnet/minecraft/client/renderer/texture/atlas/SpriteSourceType;)Lcom/mojang/serialization/DataResult; net/minecraft/client/renderer/texture/atlas/SpriteSources/lambda$static$3 (Lnet/minecraft/client/renderer/texture/atlas/SpriteSourceType;)Lcom/mojang/serialization/DataResult; +MD: net/minecraft/client/renderer/texture/atlas/SpriteSources/m_274007_ (Lnet/minecraft/resources/ResourceLocation;)Lcom/mojang/serialization/DataResult; net/minecraft/client/renderer/texture/atlas/SpriteSources/lambda$static$1 (Lnet/minecraft/resources/ResourceLocation;)Lcom/mojang/serialization/DataResult; +MD: net/minecraft/client/renderer/texture/atlas/sources/DirectoryLister/ ()V net/minecraft/client/renderer/texture/atlas/sources/DirectoryLister/ ()V +MD: net/minecraft/client/renderer/texture/atlas/sources/DirectoryLister/ (Ljava/lang/String;Ljava/lang/String;)V net/minecraft/client/renderer/texture/atlas/sources/DirectoryLister/ (Ljava/lang/String;Ljava/lang/String;)V +MD: net/minecraft/client/renderer/texture/atlas/sources/DirectoryLister/m_260850_ ()Lnet/minecraft/client/renderer/texture/atlas/SpriteSourceType; net/minecraft/client/renderer/texture/atlas/sources/DirectoryLister/type ()Lnet/minecraft/client/renderer/texture/atlas/SpriteSourceType; +MD: net/minecraft/client/renderer/texture/atlas/sources/DirectoryLister/m_260891_ (Lnet/minecraft/server/packs/resources/ResourceManager;Lnet/minecraft/client/renderer/texture/atlas/SpriteSource$Output;)V net/minecraft/client/renderer/texture/atlas/sources/DirectoryLister/run (Lnet/minecraft/server/packs/resources/ResourceManager;Lnet/minecraft/client/renderer/texture/atlas/SpriteSource$Output;)V +MD: net/minecraft/client/renderer/texture/atlas/sources/DirectoryLister/m_260906_ (Lnet/minecraft/resources/FileToIdConverter;Lnet/minecraft/client/renderer/texture/atlas/SpriteSource$Output;Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/server/packs/resources/Resource;)V net/minecraft/client/renderer/texture/atlas/sources/DirectoryLister/lambda$run$3 (Lnet/minecraft/resources/FileToIdConverter;Lnet/minecraft/client/renderer/texture/atlas/SpriteSource$Output;Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/server/packs/resources/Resource;)V +MD: net/minecraft/client/renderer/texture/atlas/sources/DirectoryLister/m_261073_ (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/client/renderer/texture/atlas/sources/DirectoryLister/lambda$static$2 (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/client/renderer/texture/atlas/sources/DirectoryLister/m_261264_ (Lnet/minecraft/client/renderer/texture/atlas/sources/DirectoryLister;)Ljava/lang/String; net/minecraft/client/renderer/texture/atlas/sources/DirectoryLister/lambda$static$0 (Lnet/minecraft/client/renderer/texture/atlas/sources/DirectoryLister;)Ljava/lang/String; +MD: net/minecraft/client/renderer/texture/atlas/sources/DirectoryLister/m_261300_ (Lnet/minecraft/client/renderer/texture/atlas/sources/DirectoryLister;)Ljava/lang/String; net/minecraft/client/renderer/texture/atlas/sources/DirectoryLister/lambda$static$1 (Lnet/minecraft/client/renderer/texture/atlas/sources/DirectoryLister;)Ljava/lang/String; +MD: net/minecraft/client/renderer/texture/atlas/sources/LazyLoadedImage/ (Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/server/packs/resources/Resource;I)V net/minecraft/client/renderer/texture/atlas/sources/LazyLoadedImage/ (Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/server/packs/resources/Resource;I)V +MD: net/minecraft/client/renderer/texture/atlas/sources/LazyLoadedImage/m_266167_ ()Lcom/mojang/blaze3d/platform/NativeImage; net/minecraft/client/renderer/texture/atlas/sources/LazyLoadedImage/get ()Lcom/mojang/blaze3d/platform/NativeImage; +MD: net/minecraft/client/renderer/texture/atlas/sources/LazyLoadedImage/m_266458_ ()V net/minecraft/client/renderer/texture/atlas/sources/LazyLoadedImage/release ()V +MD: net/minecraft/client/renderer/texture/atlas/sources/PalettedPermutations/ ()V net/minecraft/client/renderer/texture/atlas/sources/PalettedPermutations/ ()V +MD: net/minecraft/client/renderer/texture/atlas/sources/PalettedPermutations/ (Ljava/util/List;Lnet/minecraft/resources/ResourceLocation;Ljava/util/Map;)V net/minecraft/client/renderer/texture/atlas/sources/PalettedPermutations/ (Ljava/util/List;Lnet/minecraft/resources/ResourceLocation;Ljava/util/Map;)V +MD: net/minecraft/client/renderer/texture/atlas/sources/PalettedPermutations/m_260850_ ()Lnet/minecraft/client/renderer/texture/atlas/SpriteSourceType; net/minecraft/client/renderer/texture/atlas/sources/PalettedPermutations/type ()Lnet/minecraft/client/renderer/texture/atlas/SpriteSourceType; +MD: net/minecraft/client/renderer/texture/atlas/sources/PalettedPermutations/m_260891_ (Lnet/minecraft/server/packs/resources/ResourceManager;Lnet/minecraft/client/renderer/texture/atlas/SpriteSource$Output;)V net/minecraft/client/renderer/texture/atlas/sources/PalettedPermutations/run (Lnet/minecraft/server/packs/resources/ResourceManager;Lnet/minecraft/client/renderer/texture/atlas/SpriteSource$Output;)V +MD: net/minecraft/client/renderer/texture/atlas/sources/PalettedPermutations/m_266217_ ([I[I)Ljava/util/function/IntUnaryOperator; net/minecraft/client/renderer/texture/atlas/sources/PalettedPermutations/createPaletteMapping ([I[I)Ljava/util/function/IntUnaryOperator; +MD: net/minecraft/client/renderer/texture/atlas/sources/PalettedPermutations/m_266306_ (Lnet/minecraft/client/renderer/texture/atlas/sources/PalettedPermutations;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/client/renderer/texture/atlas/sources/PalettedPermutations/lambda$static$1 (Lnet/minecraft/client/renderer/texture/atlas/sources/PalettedPermutations;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/client/renderer/texture/atlas/sources/PalettedPermutations/m_266309_ (Ljava/util/Map;Ljava/util/function/Supplier;Lnet/minecraft/server/packs/resources/ResourceManager;Ljava/lang/String;Lnet/minecraft/resources/ResourceLocation;)V net/minecraft/client/renderer/texture/atlas/sources/PalettedPermutations/lambda$run$6 (Ljava/util/Map;Ljava/util/function/Supplier;Lnet/minecraft/server/packs/resources/ResourceManager;Ljava/lang/String;Lnet/minecraft/resources/ResourceLocation;)V +MD: net/minecraft/client/renderer/texture/atlas/sources/PalettedPermutations/m_266373_ (Lnet/minecraft/server/packs/resources/ResourceManager;)[I net/minecraft/client/renderer/texture/atlas/sources/PalettedPermutations/lambda$run$4 (Lnet/minecraft/server/packs/resources/ResourceManager;)[I +MD: net/minecraft/client/renderer/texture/atlas/sources/PalettedPermutations/m_266448_ (Ljava/util/function/Supplier;Lnet/minecraft/server/packs/resources/ResourceManager;Lnet/minecraft/resources/ResourceLocation;)Ljava/util/function/IntUnaryOperator; net/minecraft/client/renderer/texture/atlas/sources/PalettedPermutations/lambda$run$5 (Ljava/util/function/Supplier;Lnet/minecraft/server/packs/resources/ResourceManager;Lnet/minecraft/resources/ResourceLocation;)Ljava/util/function/IntUnaryOperator; +MD: net/minecraft/client/renderer/texture/atlas/sources/PalettedPermutations/m_266460_ (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/client/renderer/texture/atlas/sources/PalettedPermutations/lambda$static$3 (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/client/renderer/texture/atlas/sources/PalettedPermutations/m_266527_ (Lnet/minecraft/client/renderer/texture/atlas/sources/PalettedPermutations;)Ljava/util/Map; net/minecraft/client/renderer/texture/atlas/sources/PalettedPermutations/lambda$static$2 (Lnet/minecraft/client/renderer/texture/atlas/sources/PalettedPermutations;)Ljava/util/Map; +MD: net/minecraft/client/renderer/texture/atlas/sources/PalettedPermutations/m_266589_ (Lnet/minecraft/client/renderer/texture/atlas/sources/PalettedPermutations;)Ljava/util/List; net/minecraft/client/renderer/texture/atlas/sources/PalettedPermutations/lambda$static$0 (Lnet/minecraft/client/renderer/texture/atlas/sources/PalettedPermutations;)Ljava/util/List; +MD: net/minecraft/client/renderer/texture/atlas/sources/PalettedPermutations/m_266592_ (Lnet/minecraft/server/packs/resources/ResourceManager;Lnet/minecraft/resources/ResourceLocation;)[I net/minecraft/client/renderer/texture/atlas/sources/PalettedPermutations/loadPaletteEntryFromImage (Lnet/minecraft/server/packs/resources/ResourceManager;Lnet/minecraft/resources/ResourceLocation;)[I +MD: net/minecraft/client/renderer/texture/atlas/sources/PalettedPermutations/m_267542_ (Lit/unimi/dsi/fastutil/ints/Int2IntMap;I)I net/minecraft/client/renderer/texture/atlas/sources/PalettedPermutations/lambda$createPaletteMapping$7 (Lit/unimi/dsi/fastutil/ints/Int2IntMap;I)I +MD: net/minecraft/client/renderer/texture/atlas/sources/PalettedPermutations$PalettedSpriteSupplier/ (Lnet/minecraft/client/renderer/texture/atlas/sources/LazyLoadedImage;Ljava/util/function/Supplier;Lnet/minecraft/resources/ResourceLocation;)V net/minecraft/client/renderer/texture/atlas/sources/PalettedPermutations$PalettedSpriteSupplier/ (Lnet/minecraft/client/renderer/texture/atlas/sources/LazyLoadedImage;Ljava/util/function/Supplier;Lnet/minecraft/resources/ResourceLocation;)V +MD: net/minecraft/client/renderer/texture/atlas/sources/PalettedPermutations$PalettedSpriteSupplier/equals (Ljava/lang/Object;)Z net/minecraft/client/renderer/texture/atlas/sources/PalettedPermutations$PalettedSpriteSupplier/equals (Ljava/lang/Object;)Z +MD: net/minecraft/client/renderer/texture/atlas/sources/PalettedPermutations$PalettedSpriteSupplier/f_265892_ ()Lnet/minecraft/resources/ResourceLocation; net/minecraft/client/renderer/texture/atlas/sources/PalettedPermutations$PalettedSpriteSupplier/permutationLocation ()Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/client/renderer/texture/atlas/sources/PalettedPermutations$PalettedSpriteSupplier/f_266004_ ()Lnet/minecraft/client/renderer/texture/atlas/sources/LazyLoadedImage; net/minecraft/client/renderer/texture/atlas/sources/PalettedPermutations$PalettedSpriteSupplier/baseImage ()Lnet/minecraft/client/renderer/texture/atlas/sources/LazyLoadedImage; +MD: net/minecraft/client/renderer/texture/atlas/sources/PalettedPermutations$PalettedSpriteSupplier/f_266059_ ()Ljava/util/function/Supplier; net/minecraft/client/renderer/texture/atlas/sources/PalettedPermutations$PalettedSpriteSupplier/palette ()Ljava/util/function/Supplier; +MD: net/minecraft/client/renderer/texture/atlas/sources/PalettedPermutations$PalettedSpriteSupplier/get ()Ljava/lang/Object; net/minecraft/client/renderer/texture/atlas/sources/PalettedPermutations$PalettedSpriteSupplier/get ()Ljava/lang/Object; +MD: net/minecraft/client/renderer/texture/atlas/sources/PalettedPermutations$PalettedSpriteSupplier/get ()Lnet/minecraft/client/renderer/texture/SpriteContents; net/minecraft/client/renderer/texture/atlas/sources/PalettedPermutations$PalettedSpriteSupplier/get ()Lnet/minecraft/client/renderer/texture/SpriteContents; +MD: net/minecraft/client/renderer/texture/atlas/sources/PalettedPermutations$PalettedSpriteSupplier/hashCode ()I net/minecraft/client/renderer/texture/atlas/sources/PalettedPermutations$PalettedSpriteSupplier/hashCode ()I +MD: net/minecraft/client/renderer/texture/atlas/sources/PalettedPermutations$PalettedSpriteSupplier/m_260986_ ()V net/minecraft/client/renderer/texture/atlas/sources/PalettedPermutations$PalettedSpriteSupplier/discard ()V +MD: net/minecraft/client/renderer/texture/atlas/sources/PalettedPermutations$PalettedSpriteSupplier/toString ()Ljava/lang/String; net/minecraft/client/renderer/texture/atlas/sources/PalettedPermutations$PalettedSpriteSupplier/toString ()Ljava/lang/String; +MD: net/minecraft/client/renderer/texture/atlas/sources/SingleFile/ ()V net/minecraft/client/renderer/texture/atlas/sources/SingleFile/ ()V +MD: net/minecraft/client/renderer/texture/atlas/sources/SingleFile/ (Lnet/minecraft/resources/ResourceLocation;Ljava/util/Optional;)V net/minecraft/client/renderer/texture/atlas/sources/SingleFile/ (Lnet/minecraft/resources/ResourceLocation;Ljava/util/Optional;)V +MD: net/minecraft/client/renderer/texture/atlas/sources/SingleFile/m_260850_ ()Lnet/minecraft/client/renderer/texture/atlas/SpriteSourceType; net/minecraft/client/renderer/texture/atlas/sources/SingleFile/type ()Lnet/minecraft/client/renderer/texture/atlas/SpriteSourceType; +MD: net/minecraft/client/renderer/texture/atlas/sources/SingleFile/m_260891_ (Lnet/minecraft/server/packs/resources/ResourceManager;Lnet/minecraft/client/renderer/texture/atlas/SpriteSource$Output;)V net/minecraft/client/renderer/texture/atlas/sources/SingleFile/run (Lnet/minecraft/server/packs/resources/ResourceManager;Lnet/minecraft/client/renderer/texture/atlas/SpriteSource$Output;)V +MD: net/minecraft/client/renderer/texture/atlas/sources/SingleFile/m_261151_ (Lnet/minecraft/client/renderer/texture/atlas/sources/SingleFile;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/client/renderer/texture/atlas/sources/SingleFile/lambda$static$0 (Lnet/minecraft/client/renderer/texture/atlas/sources/SingleFile;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/client/renderer/texture/atlas/sources/SingleFile/m_261182_ (Lnet/minecraft/client/renderer/texture/atlas/sources/SingleFile;)Ljava/util/Optional; net/minecraft/client/renderer/texture/atlas/sources/SingleFile/lambda$static$1 (Lnet/minecraft/client/renderer/texture/atlas/sources/SingleFile;)Ljava/util/Optional; +MD: net/minecraft/client/renderer/texture/atlas/sources/SingleFile/m_261205_ (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/client/renderer/texture/atlas/sources/SingleFile/lambda$static$2 (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/client/renderer/texture/atlas/sources/SourceFilter/ ()V net/minecraft/client/renderer/texture/atlas/sources/SourceFilter/ ()V +MD: net/minecraft/client/renderer/texture/atlas/sources/SourceFilter/ (Lnet/minecraft/util/ResourceLocationPattern;)V net/minecraft/client/renderer/texture/atlas/sources/SourceFilter/ (Lnet/minecraft/util/ResourceLocationPattern;)V +MD: net/minecraft/client/renderer/texture/atlas/sources/SourceFilter/m_260850_ ()Lnet/minecraft/client/renderer/texture/atlas/SpriteSourceType; net/minecraft/client/renderer/texture/atlas/sources/SourceFilter/type ()Lnet/minecraft/client/renderer/texture/atlas/SpriteSourceType; +MD: net/minecraft/client/renderer/texture/atlas/sources/SourceFilter/m_260891_ (Lnet/minecraft/server/packs/resources/ResourceManager;Lnet/minecraft/client/renderer/texture/atlas/SpriteSource$Output;)V net/minecraft/client/renderer/texture/atlas/sources/SourceFilter/run (Lnet/minecraft/server/packs/resources/ResourceManager;Lnet/minecraft/client/renderer/texture/atlas/SpriteSource$Output;)V +MD: net/minecraft/client/renderer/texture/atlas/sources/SourceFilter/m_261008_ (Lnet/minecraft/client/renderer/texture/atlas/sources/SourceFilter;)Lnet/minecraft/util/ResourceLocationPattern; net/minecraft/client/renderer/texture/atlas/sources/SourceFilter/lambda$static$0 (Lnet/minecraft/client/renderer/texture/atlas/sources/SourceFilter;)Lnet/minecraft/util/ResourceLocationPattern; +MD: net/minecraft/client/renderer/texture/atlas/sources/SourceFilter/m_261225_ (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/client/renderer/texture/atlas/sources/SourceFilter/lambda$static$1 (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/client/renderer/texture/atlas/sources/Unstitcher/ ()V net/minecraft/client/renderer/texture/atlas/sources/Unstitcher/ ()V +MD: net/minecraft/client/renderer/texture/atlas/sources/Unstitcher/ (Lnet/minecraft/resources/ResourceLocation;Ljava/util/List;DD)V net/minecraft/client/renderer/texture/atlas/sources/Unstitcher/ (Lnet/minecraft/resources/ResourceLocation;Ljava/util/List;DD)V +MD: net/minecraft/client/renderer/texture/atlas/sources/Unstitcher/m_260798_ (Lnet/minecraft/client/renderer/texture/atlas/sources/Unstitcher;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/client/renderer/texture/atlas/sources/Unstitcher/lambda$static$0 (Lnet/minecraft/client/renderer/texture/atlas/sources/Unstitcher;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/client/renderer/texture/atlas/sources/Unstitcher/m_260837_ (Lnet/minecraft/client/renderer/texture/atlas/sources/Unstitcher;)Ljava/util/List; net/minecraft/client/renderer/texture/atlas/sources/Unstitcher/lambda$static$1 (Lnet/minecraft/client/renderer/texture/atlas/sources/Unstitcher;)Ljava/util/List; +MD: net/minecraft/client/renderer/texture/atlas/sources/Unstitcher/m_260850_ ()Lnet/minecraft/client/renderer/texture/atlas/SpriteSourceType; net/minecraft/client/renderer/texture/atlas/sources/Unstitcher/type ()Lnet/minecraft/client/renderer/texture/atlas/SpriteSourceType; +MD: net/minecraft/client/renderer/texture/atlas/sources/Unstitcher/m_260876_ (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/client/renderer/texture/atlas/sources/Unstitcher/lambda$static$4 (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/client/renderer/texture/atlas/sources/Unstitcher/m_260891_ (Lnet/minecraft/server/packs/resources/ResourceManager;Lnet/minecraft/client/renderer/texture/atlas/SpriteSource$Output;)V net/minecraft/client/renderer/texture/atlas/sources/Unstitcher/run (Lnet/minecraft/server/packs/resources/ResourceManager;Lnet/minecraft/client/renderer/texture/atlas/SpriteSource$Output;)V +MD: net/minecraft/client/renderer/texture/atlas/sources/Unstitcher/m_261096_ (Lnet/minecraft/client/renderer/texture/atlas/sources/Unstitcher;)Ljava/lang/Double; net/minecraft/client/renderer/texture/atlas/sources/Unstitcher/lambda$static$3 (Lnet/minecraft/client/renderer/texture/atlas/sources/Unstitcher;)Ljava/lang/Double; +MD: net/minecraft/client/renderer/texture/atlas/sources/Unstitcher/m_261208_ (Lnet/minecraft/client/renderer/texture/atlas/sources/Unstitcher;)Ljava/lang/Double; net/minecraft/client/renderer/texture/atlas/sources/Unstitcher/lambda$static$2 (Lnet/minecraft/client/renderer/texture/atlas/sources/Unstitcher;)Ljava/lang/Double; +MD: net/minecraft/client/renderer/texture/atlas/sources/Unstitcher$Region/ ()V net/minecraft/client/renderer/texture/atlas/sources/Unstitcher$Region/ ()V +MD: net/minecraft/client/renderer/texture/atlas/sources/Unstitcher$Region/ (Lnet/minecraft/resources/ResourceLocation;DDDD)V net/minecraft/client/renderer/texture/atlas/sources/Unstitcher$Region/ (Lnet/minecraft/resources/ResourceLocation;DDDD)V +MD: net/minecraft/client/renderer/texture/atlas/sources/Unstitcher$Region/equals (Ljava/lang/Object;)Z net/minecraft/client/renderer/texture/atlas/sources/Unstitcher$Region/equals (Ljava/lang/Object;)Z +MD: net/minecraft/client/renderer/texture/atlas/sources/Unstitcher$Region/f_260480_ ()D net/minecraft/client/renderer/texture/atlas/sources/Unstitcher$Region/y ()D +MD: net/minecraft/client/renderer/texture/atlas/sources/Unstitcher$Region/f_260547_ ()D net/minecraft/client/renderer/texture/atlas/sources/Unstitcher$Region/x ()D +MD: net/minecraft/client/renderer/texture/atlas/sources/Unstitcher$Region/f_260568_ ()Lnet/minecraft/resources/ResourceLocation; net/minecraft/client/renderer/texture/atlas/sources/Unstitcher$Region/sprite ()Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/client/renderer/texture/atlas/sources/Unstitcher$Region/f_260610_ ()D net/minecraft/client/renderer/texture/atlas/sources/Unstitcher$Region/height ()D +MD: net/minecraft/client/renderer/texture/atlas/sources/Unstitcher$Region/f_260701_ ()D net/minecraft/client/renderer/texture/atlas/sources/Unstitcher$Region/width ()D +MD: net/minecraft/client/renderer/texture/atlas/sources/Unstitcher$Region/hashCode ()I net/minecraft/client/renderer/texture/atlas/sources/Unstitcher$Region/hashCode ()I +MD: net/minecraft/client/renderer/texture/atlas/sources/Unstitcher$Region/m_261120_ (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/client/renderer/texture/atlas/sources/Unstitcher$Region/lambda$static$0 (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/client/renderer/texture/atlas/sources/Unstitcher$Region/toString ()Ljava/lang/String; net/minecraft/client/renderer/texture/atlas/sources/Unstitcher$Region/toString ()Ljava/lang/String; +MD: net/minecraft/client/renderer/texture/atlas/sources/Unstitcher$RegionInstance/ (Lnet/minecraft/client/renderer/texture/atlas/sources/LazyLoadedImage;Lnet/minecraft/client/renderer/texture/atlas/sources/Unstitcher$Region;DD)V net/minecraft/client/renderer/texture/atlas/sources/Unstitcher$RegionInstance/ (Lnet/minecraft/client/renderer/texture/atlas/sources/LazyLoadedImage;Lnet/minecraft/client/renderer/texture/atlas/sources/Unstitcher$Region;DD)V +MD: net/minecraft/client/renderer/texture/atlas/sources/Unstitcher$RegionInstance/get ()Ljava/lang/Object; net/minecraft/client/renderer/texture/atlas/sources/Unstitcher$RegionInstance/get ()Ljava/lang/Object; +MD: net/minecraft/client/renderer/texture/atlas/sources/Unstitcher$RegionInstance/get ()Lnet/minecraft/client/renderer/texture/SpriteContents; net/minecraft/client/renderer/texture/atlas/sources/Unstitcher$RegionInstance/get ()Lnet/minecraft/client/renderer/texture/SpriteContents; +MD: net/minecraft/client/renderer/texture/atlas/sources/Unstitcher$RegionInstance/m_260986_ ()V net/minecraft/client/renderer/texture/atlas/sources/Unstitcher$RegionInstance/discard ()V +MD: net/minecraft/client/resources/ClientPackSource/ ()V net/minecraft/client/resources/ClientPackSource/ ()V +MD: net/minecraft/client/resources/ClientPackSource/ (Ljava/nio/file/Path;)V net/minecraft/client/resources/ClientPackSource/ (Ljava/nio/file/Path;)V +MD: net/minecraft/client/resources/ClientPackSource/m_244741_ (Lnet/minecraft/server/packs/PackResources;Ljava/lang/String;)Lnet/minecraft/server/packs/PackResources; net/minecraft/client/resources/ClientPackSource/lambda$createVanillaPack$0 (Lnet/minecraft/server/packs/PackResources;Ljava/lang/String;)Lnet/minecraft/server/packs/PackResources; +MD: net/minecraft/client/resources/ClientPackSource/m_245328_ (Ljava/lang/String;)Lnet/minecraft/network/chat/Component; net/minecraft/client/resources/ClientPackSource/getPackTitle (Ljava/lang/String;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/client/resources/ClientPackSource/m_245382_ (Ljava/util/function/BiConsumer;)V net/minecraft/client/resources/ClientPackSource/populatePackList (Ljava/util/function/BiConsumer;)V +MD: net/minecraft/client/resources/ClientPackSource/m_245806_ (Lnet/minecraft/server/packs/PackResources;)Lnet/minecraft/server/packs/repository/Pack; net/minecraft/client/resources/ClientPackSource/createVanillaPack (Lnet/minecraft/server/packs/PackResources;)Lnet/minecraft/server/packs/repository/Pack; +MD: net/minecraft/client/resources/ClientPackSource/m_246091_ (Ljava/lang/String;Lnet/minecraft/server/packs/repository/Pack$ResourcesSupplier;Lnet/minecraft/network/chat/Component;)Lnet/minecraft/server/packs/repository/Pack; net/minecraft/client/resources/ClientPackSource/createBuiltinPack (Ljava/lang/String;Lnet/minecraft/server/packs/repository/Pack$ResourcesSupplier;Lnet/minecraft/network/chat/Component;)Lnet/minecraft/server/packs/repository/Pack; +MD: net/minecraft/client/resources/ClientPackSource/m_246691_ (Ljava/nio/file/Path;)Lnet/minecraft/server/packs/VanillaPackResources; net/minecraft/client/resources/ClientPackSource/createVanillaPackSource (Ljava/nio/file/Path;)Lnet/minecraft/server/packs/VanillaPackResources; +MD: net/minecraft/client/resources/ClientPackSource/m_247002_ (Ljava/nio/file/Path;)Ljava/nio/file/Path; net/minecraft/client/resources/ClientPackSource/findExplodedAssetPacks (Ljava/nio/file/Path;)Ljava/nio/file/Path; +MD: net/minecraft/client/resources/DefaultPlayerSkin/ ()V net/minecraft/client/resources/DefaultPlayerSkin/ ()V +MD: net/minecraft/client/resources/DefaultPlayerSkin/ ()V net/minecraft/client/resources/DefaultPlayerSkin/ ()V +MD: net/minecraft/client/resources/DefaultPlayerSkin/m_118626_ ()Lnet/minecraft/resources/ResourceLocation; net/minecraft/client/resources/DefaultPlayerSkin/getDefaultSkin ()Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/client/resources/DefaultPlayerSkin/m_118627_ (Ljava/util/UUID;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/client/resources/DefaultPlayerSkin/getDefaultSkin (Ljava/util/UUID;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/client/resources/DefaultPlayerSkin/m_118629_ (Ljava/util/UUID;)Ljava/lang/String; net/minecraft/client/resources/DefaultPlayerSkin/getSkinModelName (Ljava/util/UUID;)Ljava/lang/String; +MD: net/minecraft/client/resources/DefaultPlayerSkin/m_257644_ (Ljava/util/UUID;)Lnet/minecraft/client/resources/DefaultPlayerSkin$SkinType; net/minecraft/client/resources/DefaultPlayerSkin/getSkinType (Ljava/util/UUID;)Lnet/minecraft/client/resources/DefaultPlayerSkin$SkinType; +MD: net/minecraft/client/resources/DefaultPlayerSkin$ModelType/ ()V net/minecraft/client/resources/DefaultPlayerSkin$ModelType/ ()V +MD: net/minecraft/client/resources/DefaultPlayerSkin$ModelType/ (Ljava/lang/String;ILjava/lang/String;)V net/minecraft/client/resources/DefaultPlayerSkin$ModelType/ (Ljava/lang/String;ILjava/lang/String;)V +MD: net/minecraft/client/resources/DefaultPlayerSkin$ModelType/m_257484_ ()[Lnet/minecraft/client/resources/DefaultPlayerSkin$ModelType; net/minecraft/client/resources/DefaultPlayerSkin$ModelType/$values ()[Lnet/minecraft/client/resources/DefaultPlayerSkin$ModelType; +MD: net/minecraft/client/resources/DefaultPlayerSkin$ModelType/valueOf (Ljava/lang/String;)Lnet/minecraft/client/resources/DefaultPlayerSkin$ModelType; net/minecraft/client/resources/DefaultPlayerSkin$ModelType/valueOf (Ljava/lang/String;)Lnet/minecraft/client/resources/DefaultPlayerSkin$ModelType; +MD: net/minecraft/client/resources/DefaultPlayerSkin$ModelType/values ()[Lnet/minecraft/client/resources/DefaultPlayerSkin$ModelType; net/minecraft/client/resources/DefaultPlayerSkin$ModelType/values ()[Lnet/minecraft/client/resources/DefaultPlayerSkin$ModelType; +MD: net/minecraft/client/resources/DefaultPlayerSkin$SkinType/ (Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/client/resources/DefaultPlayerSkin$ModelType;)V net/minecraft/client/resources/DefaultPlayerSkin$SkinType/ (Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/client/resources/DefaultPlayerSkin$ModelType;)V +MD: net/minecraft/client/resources/DefaultPlayerSkin$SkinType/ (Ljava/lang/String;Lnet/minecraft/client/resources/DefaultPlayerSkin$ModelType;)V net/minecraft/client/resources/DefaultPlayerSkin$SkinType/ (Ljava/lang/String;Lnet/minecraft/client/resources/DefaultPlayerSkin$ModelType;)V +MD: net/minecraft/client/resources/DefaultPlayerSkin$SkinType/equals (Ljava/lang/Object;)Z net/minecraft/client/resources/DefaultPlayerSkin$SkinType/equals (Ljava/lang/Object;)Z +MD: net/minecraft/client/resources/DefaultPlayerSkin$SkinType/f_256814_ ()Lnet/minecraft/resources/ResourceLocation; net/minecraft/client/resources/DefaultPlayerSkin$SkinType/texture ()Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/client/resources/DefaultPlayerSkin$SkinType/f_256901_ ()Lnet/minecraft/client/resources/DefaultPlayerSkin$ModelType; net/minecraft/client/resources/DefaultPlayerSkin$SkinType/model ()Lnet/minecraft/client/resources/DefaultPlayerSkin$ModelType; +MD: net/minecraft/client/resources/DefaultPlayerSkin$SkinType/hashCode ()I net/minecraft/client/resources/DefaultPlayerSkin$SkinType/hashCode ()I +MD: net/minecraft/client/resources/DefaultPlayerSkin$SkinType/toString ()Ljava/lang/String; net/minecraft/client/resources/DefaultPlayerSkin$SkinType/toString ()Ljava/lang/String; +MD: net/minecraft/client/resources/DownloadedPackSource/ ()V net/minecraft/client/resources/DownloadedPackSource/ ()V +MD: net/minecraft/client/resources/DownloadedPackSource/ (Ljava/io/File;)V net/minecraft/client/resources/DownloadedPackSource/ (Ljava/io/File;)V +MD: net/minecraft/client/resources/DownloadedPackSource/m_245230_ (ZLnet/minecraft/client/Minecraft;)V net/minecraft/client/resources/DownloadedPackSource/lambda$downloadAndSelectResourcePack$1 (ZLnet/minecraft/client/Minecraft;)V +MD: net/minecraft/client/resources/DownloadedPackSource/m_245289_ (Ljava/lang/Void;)V net/minecraft/client/resources/DownloadedPackSource/lambda$downloadAndSelectResourcePack$7 (Ljava/lang/Void;)V +MD: net/minecraft/client/resources/DownloadedPackSource/m_245308_ ()Ljava/util/Map; net/minecraft/client/resources/DownloadedPackSource/getDownloadHeaders ()Ljava/util/Map; +MD: net/minecraft/client/resources/DownloadedPackSource/m_245350_ (Ljava/lang/String;Ljava/io/File;)Z net/minecraft/client/resources/DownloadedPackSource/checkHash (Ljava/lang/String;Ljava/io/File;)Z +MD: net/minecraft/client/resources/DownloadedPackSource/m_245559_ ()V net/minecraft/client/resources/DownloadedPackSource/clearOldDownloads ()V +MD: net/minecraft/client/resources/DownloadedPackSource/m_245607_ (Ljava/io/File;Lnet/minecraft/client/Minecraft;Ljava/lang/Throwable;)Ljava/util/concurrent/CompletionStage; net/minecraft/client/resources/DownloadedPackSource/lambda$downloadAndSelectResourcePack$6 (Ljava/io/File;Lnet/minecraft/client/Minecraft;Ljava/lang/Throwable;)Ljava/util/concurrent/CompletionStage; +MD: net/minecraft/client/resources/DownloadedPackSource/m_245964_ (Lnet/minecraft/client/Minecraft;Z)V net/minecraft/client/resources/DownloadedPackSource/lambda$downloadAndSelectResourcePack$4 (Lnet/minecraft/client/Minecraft;Z)V +MD: net/minecraft/client/resources/DownloadedPackSource/m_246151_ ()Ljava/util/concurrent/CompletableFuture; net/minecraft/client/resources/DownloadedPackSource/clearServerPack ()Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/client/resources/DownloadedPackSource/m_246169_ (Ljava/io/File;)V net/minecraft/client/resources/DownloadedPackSource/deleteQuietly (Ljava/io/File;)V +MD: net/minecraft/client/resources/DownloadedPackSource/m_246254_ (Ljava/net/URL;Ljava/lang/String;Z)Ljava/util/concurrent/CompletableFuture; net/minecraft/client/resources/DownloadedPackSource/downloadAndSelectResourcePack (Ljava/net/URL;Ljava/lang/String;Z)Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/client/resources/DownloadedPackSource/m_246722_ (Ljava/lang/Throwable;Ljava/io/File;Ljava/lang/Void;)V net/minecraft/client/resources/DownloadedPackSource/lambda$downloadAndSelectResourcePack$3 (Ljava/lang/Throwable;Ljava/io/File;Ljava/lang/Void;)V +MD: net/minecraft/client/resources/DownloadedPackSource/m_246966_ (Lnet/minecraft/client/Minecraft;Lnet/minecraft/client/gui/screens/ProgressScreen;)V net/minecraft/client/resources/DownloadedPackSource/lambda$downloadAndSelectResourcePack$0 (Lnet/minecraft/client/Minecraft;Lnet/minecraft/client/gui/screens/ProgressScreen;)V +MD: net/minecraft/client/resources/DownloadedPackSource/m_247083_ (Ljava/lang/String;Ljava/io/File;Lnet/minecraft/client/Minecraft;ZLjava/lang/Object;)Ljava/util/concurrent/CompletionStage; net/minecraft/client/resources/DownloadedPackSource/lambda$downloadAndSelectResourcePack$2 (Ljava/lang/String;Ljava/io/File;Lnet/minecraft/client/Minecraft;ZLjava/lang/Object;)Ljava/util/concurrent/CompletionStage; +MD: net/minecraft/client/resources/DownloadedPackSource/m_247163_ (Lnet/minecraft/client/Minecraft;Ljava/lang/Void;)V net/minecraft/client/resources/DownloadedPackSource/lambda$downloadAndSelectResourcePack$5 (Lnet/minecraft/client/Minecraft;Ljava/lang/Void;)V +MD: net/minecraft/client/resources/DownloadedPackSource/m_247400_ (Lnet/minecraft/world/level/storage/LevelStorageSource$LevelStorageAccess;)Ljava/util/concurrent/CompletableFuture; net/minecraft/client/resources/DownloadedPackSource/loadBundledResourcePack (Lnet/minecraft/world/level/storage/LevelStorageSource$LevelStorageAccess;)Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/client/resources/DownloadedPackSource/m_247526_ (Ljava/io/File;Lnet/minecraft/server/packs/repository/PackSource;)Ljava/util/concurrent/CompletableFuture; net/minecraft/client/resources/DownloadedPackSource/setServerPack (Ljava/io/File;Lnet/minecraft/server/packs/repository/PackSource;)Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/client/resources/DownloadedPackSource/m_254765_ (Ljava/io/File;Ljava/lang/String;)Lnet/minecraft/server/packs/PackResources; net/minecraft/client/resources/DownloadedPackSource/lambda$setServerPack$8 (Ljava/io/File;Ljava/lang/String;)Lnet/minecraft/server/packs/PackResources; +MD: net/minecraft/client/resources/DownloadedPackSource/m_7686_ (Ljava/util/function/Consumer;)V net/minecraft/client/resources/DownloadedPackSource/loadPacks (Ljava/util/function/Consumer;)V +MD: net/minecraft/client/resources/FoliageColorReloadListener/ ()V net/minecraft/client/resources/FoliageColorReloadListener/ ()V +MD: net/minecraft/client/resources/FoliageColorReloadListener/ ()V net/minecraft/client/resources/FoliageColorReloadListener/ ()V +MD: net/minecraft/client/resources/FoliageColorReloadListener/m_5787_ ([ILnet/minecraft/server/packs/resources/ResourceManager;Lnet/minecraft/util/profiling/ProfilerFiller;)V net/minecraft/client/resources/FoliageColorReloadListener/apply ([ILnet/minecraft/server/packs/resources/ResourceManager;Lnet/minecraft/util/profiling/ProfilerFiller;)V +MD: net/minecraft/client/resources/FoliageColorReloadListener/m_5787_ (Ljava/lang/Object;Lnet/minecraft/server/packs/resources/ResourceManager;Lnet/minecraft/util/profiling/ProfilerFiller;)V net/minecraft/client/resources/FoliageColorReloadListener/apply (Ljava/lang/Object;Lnet/minecraft/server/packs/resources/ResourceManager;Lnet/minecraft/util/profiling/ProfilerFiller;)V +MD: net/minecraft/client/resources/FoliageColorReloadListener/m_5944_ (Lnet/minecraft/server/packs/resources/ResourceManager;Lnet/minecraft/util/profiling/ProfilerFiller;)Ljava/lang/Object; net/minecraft/client/resources/FoliageColorReloadListener/prepare (Lnet/minecraft/server/packs/resources/ResourceManager;Lnet/minecraft/util/profiling/ProfilerFiller;)Ljava/lang/Object; +MD: net/minecraft/client/resources/FoliageColorReloadListener/m_5944_ (Lnet/minecraft/server/packs/resources/ResourceManager;Lnet/minecraft/util/profiling/ProfilerFiller;)[I net/minecraft/client/resources/FoliageColorReloadListener/prepare (Lnet/minecraft/server/packs/resources/ResourceManager;Lnet/minecraft/util/profiling/ProfilerFiller;)[I +MD: net/minecraft/client/resources/GrassColorReloadListener/ ()V net/minecraft/client/resources/GrassColorReloadListener/ ()V +MD: net/minecraft/client/resources/GrassColorReloadListener/ ()V net/minecraft/client/resources/GrassColorReloadListener/ ()V +MD: net/minecraft/client/resources/GrassColorReloadListener/m_5787_ ([ILnet/minecraft/server/packs/resources/ResourceManager;Lnet/minecraft/util/profiling/ProfilerFiller;)V net/minecraft/client/resources/GrassColorReloadListener/apply ([ILnet/minecraft/server/packs/resources/ResourceManager;Lnet/minecraft/util/profiling/ProfilerFiller;)V +MD: net/minecraft/client/resources/GrassColorReloadListener/m_5787_ (Ljava/lang/Object;Lnet/minecraft/server/packs/resources/ResourceManager;Lnet/minecraft/util/profiling/ProfilerFiller;)V net/minecraft/client/resources/GrassColorReloadListener/apply (Ljava/lang/Object;Lnet/minecraft/server/packs/resources/ResourceManager;Lnet/minecraft/util/profiling/ProfilerFiller;)V +MD: net/minecraft/client/resources/GrassColorReloadListener/m_5944_ (Lnet/minecraft/server/packs/resources/ResourceManager;Lnet/minecraft/util/profiling/ProfilerFiller;)Ljava/lang/Object; net/minecraft/client/resources/GrassColorReloadListener/prepare (Lnet/minecraft/server/packs/resources/ResourceManager;Lnet/minecraft/util/profiling/ProfilerFiller;)Ljava/lang/Object; +MD: net/minecraft/client/resources/GrassColorReloadListener/m_5944_ (Lnet/minecraft/server/packs/resources/ResourceManager;Lnet/minecraft/util/profiling/ProfilerFiller;)[I net/minecraft/client/resources/GrassColorReloadListener/prepare (Lnet/minecraft/server/packs/resources/ResourceManager;Lnet/minecraft/util/profiling/ProfilerFiller;)[I +MD: net/minecraft/client/resources/IndexedAssetSource/ ()V net/minecraft/client/resources/IndexedAssetSource/ ()V +MD: net/minecraft/client/resources/IndexedAssetSource/ ()V net/minecraft/client/resources/IndexedAssetSource/ ()V +MD: net/minecraft/client/resources/IndexedAssetSource/m_245793_ (Ljava/nio/file/Path;Ljava/lang/String;)Ljava/nio/file/Path; net/minecraft/client/resources/IndexedAssetSource/createIndexFs (Ljava/nio/file/Path;Ljava/lang/String;)Ljava/nio/file/Path; +MD: net/minecraft/client/resources/LegacyStuffWrapper/ ()V net/minecraft/client/resources/LegacyStuffWrapper/ ()V +MD: net/minecraft/client/resources/LegacyStuffWrapper/m_118726_ (Lnet/minecraft/server/packs/resources/ResourceManager;Lnet/minecraft/resources/ResourceLocation;)[I net/minecraft/client/resources/LegacyStuffWrapper/getPixels (Lnet/minecraft/server/packs/resources/ResourceManager;Lnet/minecraft/resources/ResourceLocation;)[I +MD: net/minecraft/client/resources/MobEffectTextureManager/ (Lnet/minecraft/client/renderer/texture/TextureManager;)V net/minecraft/client/resources/MobEffectTextureManager/ (Lnet/minecraft/client/renderer/texture/TextureManager;)V +MD: net/minecraft/client/resources/MobEffectTextureManager/m_118732_ (Lnet/minecraft/world/effect/MobEffect;)Lnet/minecraft/client/renderer/texture/TextureAtlasSprite; net/minecraft/client/resources/MobEffectTextureManager/get (Lnet/minecraft/world/effect/MobEffect;)Lnet/minecraft/client/renderer/texture/TextureAtlasSprite; +MD: net/minecraft/client/resources/PaintingTextureManager/ ()V net/minecraft/client/resources/PaintingTextureManager/ ()V +MD: net/minecraft/client/resources/PaintingTextureManager/ (Lnet/minecraft/client/renderer/texture/TextureManager;)V net/minecraft/client/resources/PaintingTextureManager/ (Lnet/minecraft/client/renderer/texture/TextureManager;)V +MD: net/minecraft/client/resources/PaintingTextureManager/m_118806_ ()Lnet/minecraft/client/renderer/texture/TextureAtlasSprite; net/minecraft/client/resources/PaintingTextureManager/getBackSprite ()Lnet/minecraft/client/renderer/texture/TextureAtlasSprite; +MD: net/minecraft/client/resources/PaintingTextureManager/m_235033_ (Lnet/minecraft/world/entity/decoration/PaintingVariant;)Lnet/minecraft/client/renderer/texture/TextureAtlasSprite; net/minecraft/client/resources/PaintingTextureManager/get (Lnet/minecraft/world/entity/decoration/PaintingVariant;)Lnet/minecraft/client/renderer/texture/TextureAtlasSprite; +MD: net/minecraft/client/resources/SkinManager/ (Lnet/minecraft/client/renderer/texture/TextureManager;Ljava/io/File;Lcom/mojang/authlib/minecraft/MinecraftSessionService;)V net/minecraft/client/resources/SkinManager/ (Lnet/minecraft/client/renderer/texture/TextureManager;Ljava/io/File;Lcom/mojang/authlib/minecraft/MinecraftSessionService;)V +MD: net/minecraft/client/resources/SkinManager/m_118815_ (Lcom/mojang/authlib/GameProfile;)Ljava/util/Map; net/minecraft/client/resources/SkinManager/getInsecureSkinInformation (Lcom/mojang/authlib/GameProfile;)Ljava/util/Map; +MD: net/minecraft/client/resources/SkinManager/m_118817_ (Lcom/mojang/authlib/GameProfile;Lnet/minecraft/client/resources/SkinManager$SkinTextureCallback;Z)V net/minecraft/client/resources/SkinManager/registerSkins (Lcom/mojang/authlib/GameProfile;Lnet/minecraft/client/resources/SkinManager$SkinTextureCallback;Z)V +MD: net/minecraft/client/resources/SkinManager/m_118821_ (Lcom/mojang/authlib/GameProfile;ZLnet/minecraft/client/resources/SkinManager$SkinTextureCallback;)V net/minecraft/client/resources/SkinManager/lambda$registerSkins$4 (Lcom/mojang/authlib/GameProfile;ZLnet/minecraft/client/resources/SkinManager$SkinTextureCallback;)V +MD: net/minecraft/client/resources/SkinManager/m_118825_ (Lcom/mojang/authlib/minecraft/MinecraftProfileTexture;Lcom/mojang/authlib/minecraft/MinecraftProfileTexture$Type;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/client/resources/SkinManager/registerTexture (Lcom/mojang/authlib/minecraft/MinecraftProfileTexture;Lcom/mojang/authlib/minecraft/MinecraftProfileTexture$Type;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/client/resources/SkinManager/m_118828_ (Lcom/mojang/authlib/minecraft/MinecraftProfileTexture;Lcom/mojang/authlib/minecraft/MinecraftProfileTexture$Type;Lnet/minecraft/client/resources/SkinManager$SkinTextureCallback;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/client/resources/SkinManager/registerTexture (Lcom/mojang/authlib/minecraft/MinecraftProfileTexture;Lcom/mojang/authlib/minecraft/MinecraftProfileTexture$Type;Lnet/minecraft/client/resources/SkinManager$SkinTextureCallback;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/client/resources/SkinManager/m_118832_ (Lnet/minecraft/client/resources/SkinManager$SkinTextureCallback;Lcom/mojang/authlib/minecraft/MinecraftProfileTexture$Type;Lnet/minecraft/resources/ResourceLocation;Lcom/mojang/authlib/minecraft/MinecraftProfileTexture;)V net/minecraft/client/resources/SkinManager/lambda$registerTexture$0 (Lnet/minecraft/client/resources/SkinManager$SkinTextureCallback;Lcom/mojang/authlib/minecraft/MinecraftProfileTexture$Type;Lnet/minecraft/resources/ResourceLocation;Lcom/mojang/authlib/minecraft/MinecraftProfileTexture;)V +MD: net/minecraft/client/resources/SkinManager/m_174842_ (Ljava/util/Map;Lnet/minecraft/client/resources/SkinManager$SkinTextureCallback;)V net/minecraft/client/resources/SkinManager/lambda$registerSkins$3 (Ljava/util/Map;Lnet/minecraft/client/resources/SkinManager$SkinTextureCallback;)V +MD: net/minecraft/client/resources/SkinManager/m_174845_ (Ljava/util/Map;Lnet/minecraft/client/resources/SkinManager$SkinTextureCallback;Lcom/mojang/authlib/minecraft/MinecraftProfileTexture$Type;)V net/minecraft/client/resources/SkinManager/lambda$registerSkins$1 (Ljava/util/Map;Lnet/minecraft/client/resources/SkinManager$SkinTextureCallback;Lcom/mojang/authlib/minecraft/MinecraftProfileTexture$Type;)V +MD: net/minecraft/client/resources/SkinManager/m_174849_ (Ljava/util/Map;Lnet/minecraft/client/resources/SkinManager$SkinTextureCallback;)V net/minecraft/client/resources/SkinManager/lambda$registerSkins$2 (Ljava/util/Map;Lnet/minecraft/client/resources/SkinManager$SkinTextureCallback;)V +MD: net/minecraft/client/resources/SkinManager/m_240306_ (Lcom/mojang/authlib/GameProfile;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/client/resources/SkinManager/getInsecureSkinLocation (Lcom/mojang/authlib/GameProfile;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/client/resources/SkinManager/m_242632_ (Lcom/mojang/authlib/minecraft/MinecraftProfileTexture$Type;Ljava/lang/String;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/client/resources/SkinManager/getTextureLocation (Lcom/mojang/authlib/minecraft/MinecraftProfileTexture$Type;Ljava/lang/String;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/client/resources/SkinManager$1/ (Lnet/minecraft/client/resources/SkinManager;Lcom/mojang/authlib/minecraft/MinecraftSessionService;)V net/minecraft/client/resources/SkinManager$1/ (Lnet/minecraft/client/resources/SkinManager;Lcom/mojang/authlib/minecraft/MinecraftSessionService;)V +MD: net/minecraft/client/resources/SkinManager$1/load (Ljava/lang/String;)Ljava/util/Map; net/minecraft/client/resources/SkinManager$1/load (Ljava/lang/String;)Ljava/util/Map; +MD: net/minecraft/client/resources/SkinManager$1/load (Ljava/lang/Object;)Ljava/lang/Object; net/minecraft/client/resources/SkinManager$1/load (Ljava/lang/Object;)Ljava/lang/Object; +MD: net/minecraft/client/resources/SkinManager$2/ ()V net/minecraft/client/resources/SkinManager$2/ ()V +MD: net/minecraft/client/resources/SkinManager$SkinTextureCallback/m_118856_ (Lcom/mojang/authlib/minecraft/MinecraftProfileTexture$Type;Lnet/minecraft/resources/ResourceLocation;Lcom/mojang/authlib/minecraft/MinecraftProfileTexture;)V net/minecraft/client/resources/SkinManager$SkinTextureCallback/onSkinTextureAvailable (Lcom/mojang/authlib/minecraft/MinecraftProfileTexture$Type;Lnet/minecraft/resources/ResourceLocation;Lcom/mojang/authlib/minecraft/MinecraftProfileTexture;)V +MD: net/minecraft/client/resources/SplashManager/ ()V net/minecraft/client/resources/SplashManager/ ()V +MD: net/minecraft/client/resources/SplashManager/ (Lnet/minecraft/client/User;)V net/minecraft/client/resources/SplashManager/ (Lnet/minecraft/client/User;)V +MD: net/minecraft/client/resources/SplashManager/m_118875_ (Ljava/lang/String;)Z net/minecraft/client/resources/SplashManager/lambda$prepare$0 (Ljava/lang/String;)Z +MD: net/minecraft/client/resources/SplashManager/m_280369_ ()Lnet/minecraft/client/gui/components/SplashRenderer; net/minecraft/client/resources/SplashManager/getSplash ()Lnet/minecraft/client/gui/components/SplashRenderer; +MD: net/minecraft/client/resources/SplashManager/m_5787_ (Ljava/util/List;Lnet/minecraft/server/packs/resources/ResourceManager;Lnet/minecraft/util/profiling/ProfilerFiller;)V net/minecraft/client/resources/SplashManager/apply (Ljava/util/List;Lnet/minecraft/server/packs/resources/ResourceManager;Lnet/minecraft/util/profiling/ProfilerFiller;)V +MD: net/minecraft/client/resources/SplashManager/m_5787_ (Ljava/lang/Object;Lnet/minecraft/server/packs/resources/ResourceManager;Lnet/minecraft/util/profiling/ProfilerFiller;)V net/minecraft/client/resources/SplashManager/apply (Ljava/lang/Object;Lnet/minecraft/server/packs/resources/ResourceManager;Lnet/minecraft/util/profiling/ProfilerFiller;)V +MD: net/minecraft/client/resources/SplashManager/m_5944_ (Lnet/minecraft/server/packs/resources/ResourceManager;Lnet/minecraft/util/profiling/ProfilerFiller;)Ljava/lang/Object; net/minecraft/client/resources/SplashManager/prepare (Lnet/minecraft/server/packs/resources/ResourceManager;Lnet/minecraft/util/profiling/ProfilerFiller;)Ljava/lang/Object; +MD: net/minecraft/client/resources/SplashManager/m_5944_ (Lnet/minecraft/server/packs/resources/ResourceManager;Lnet/minecraft/util/profiling/ProfilerFiller;)Ljava/util/List; net/minecraft/client/resources/SplashManager/prepare (Lnet/minecraft/server/packs/resources/ResourceManager;Lnet/minecraft/util/profiling/ProfilerFiller;)Ljava/util/List; +MD: net/minecraft/client/resources/TextureAtlasHolder/ (Lnet/minecraft/client/renderer/texture/TextureManager;Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/resources/ResourceLocation;)V net/minecraft/client/resources/TextureAtlasHolder/ (Lnet/minecraft/client/renderer/texture/TextureManager;Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/resources/ResourceLocation;)V +MD: net/minecraft/client/resources/TextureAtlasHolder/close ()V net/minecraft/client/resources/TextureAtlasHolder/close ()V +MD: net/minecraft/client/resources/TextureAtlasHolder/m_118901_ (Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/client/renderer/texture/TextureAtlasSprite; net/minecraft/client/resources/TextureAtlasHolder/getSprite (Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/client/renderer/texture/TextureAtlasSprite; +MD: net/minecraft/client/resources/TextureAtlasHolder/m_245256_ (Lnet/minecraft/client/renderer/texture/SpriteLoader$Preparations;Lnet/minecraft/util/profiling/ProfilerFiller;)V net/minecraft/client/resources/TextureAtlasHolder/apply (Lnet/minecraft/client/renderer/texture/SpriteLoader$Preparations;Lnet/minecraft/util/profiling/ProfilerFiller;)V +MD: net/minecraft/client/resources/TextureAtlasHolder/m_246837_ (Lnet/minecraft/util/profiling/ProfilerFiller;Lnet/minecraft/client/renderer/texture/SpriteLoader$Preparations;)V net/minecraft/client/resources/TextureAtlasHolder/lambda$reload$0 (Lnet/minecraft/util/profiling/ProfilerFiller;Lnet/minecraft/client/renderer/texture/SpriteLoader$Preparations;)V +MD: net/minecraft/client/resources/TextureAtlasHolder/m_5540_ (Lnet/minecraft/server/packs/resources/PreparableReloadListener$PreparationBarrier;Lnet/minecraft/server/packs/resources/ResourceManager;Lnet/minecraft/util/profiling/ProfilerFiller;Lnet/minecraft/util/profiling/ProfilerFiller;Ljava/util/concurrent/Executor;Ljava/util/concurrent/Executor;)Ljava/util/concurrent/CompletableFuture; net/minecraft/client/resources/TextureAtlasHolder/reload (Lnet/minecraft/server/packs/resources/PreparableReloadListener$PreparationBarrier;Lnet/minecraft/server/packs/resources/ResourceManager;Lnet/minecraft/util/profiling/ProfilerFiller;Lnet/minecraft/util/profiling/ProfilerFiller;Ljava/util/concurrent/Executor;Ljava/util/concurrent/Executor;)Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/client/resources/language/ClientLanguage/ ()V net/minecraft/client/resources/language/ClientLanguage/ ()V +MD: net/minecraft/client/resources/language/ClientLanguage/ (Ljava/util/Map;Z)V net/minecraft/client/resources/language/ClientLanguage/ (Ljava/util/Map;Z)V +MD: net/minecraft/client/resources/language/ClientLanguage/m_118919_ (Ljava/lang/String;Ljava/lang/String;)Ljava/lang/String; net/minecraft/client/resources/language/ClientLanguage/getOrDefault (Ljava/lang/String;Ljava/lang/String;)Ljava/lang/String; +MD: net/minecraft/client/resources/language/ClientLanguage/m_235035_ (Ljava/lang/String;Ljava/util/List;Ljava/util/Map;)V net/minecraft/client/resources/language/ClientLanguage/appendFrom (Ljava/lang/String;Ljava/util/List;Ljava/util/Map;)V +MD: net/minecraft/client/resources/language/ClientLanguage/m_264420_ (Lnet/minecraft/server/packs/resources/ResourceManager;Ljava/util/List;Z)Lnet/minecraft/client/resources/language/ClientLanguage; net/minecraft/client/resources/language/ClientLanguage/loadFrom (Lnet/minecraft/server/packs/resources/ResourceManager;Ljava/util/List;Z)Lnet/minecraft/client/resources/language/ClientLanguage; +MD: net/minecraft/client/resources/language/ClientLanguage/m_5536_ (Lnet/minecraft/network/chat/FormattedText;)Lnet/minecraft/util/FormattedCharSequence; net/minecraft/client/resources/language/ClientLanguage/getVisualOrder (Lnet/minecraft/network/chat/FormattedText;)Lnet/minecraft/util/FormattedCharSequence; +MD: net/minecraft/client/resources/language/ClientLanguage/m_6627_ ()Z net/minecraft/client/resources/language/ClientLanguage/isDefaultRightToLeft ()Z +MD: net/minecraft/client/resources/language/ClientLanguage/m_6722_ (Ljava/lang/String;)Z net/minecraft/client/resources/language/ClientLanguage/has (Ljava/lang/String;)Z +MD: net/minecraft/client/resources/language/FormattedBidiReorder/ ()V net/minecraft/client/resources/language/FormattedBidiReorder/ ()V +MD: net/minecraft/client/resources/language/FormattedBidiReorder/m_118929_ (Ljava/lang/String;)Ljava/lang/String; net/minecraft/client/resources/language/FormattedBidiReorder/shape (Ljava/lang/String;)Ljava/lang/String; +MD: net/minecraft/client/resources/language/FormattedBidiReorder/m_118931_ (Lnet/minecraft/network/chat/FormattedText;Z)Lnet/minecraft/util/FormattedCharSequence; net/minecraft/client/resources/language/FormattedBidiReorder/reorder (Lnet/minecraft/network/chat/FormattedText;Z)Lnet/minecraft/util/FormattedCharSequence; +MD: net/minecraft/client/resources/language/I18n/ ()V net/minecraft/client/resources/language/I18n/ ()V +MD: net/minecraft/client/resources/language/I18n/ ()V net/minecraft/client/resources/language/I18n/ ()V +MD: net/minecraft/client/resources/language/I18n/m_118936_ (Ljava/lang/String;)Z net/minecraft/client/resources/language/I18n/exists (Ljava/lang/String;)Z +MD: net/minecraft/client/resources/language/I18n/m_118938_ (Ljava/lang/String;[Ljava/lang/Object;)Ljava/lang/String; net/minecraft/client/resources/language/I18n/get (Ljava/lang/String;[Ljava/lang/Object;)Ljava/lang/String; +MD: net/minecraft/client/resources/language/I18n/m_118941_ (Lnet/minecraft/locale/Language;)V net/minecraft/client/resources/language/I18n/setLanguage (Lnet/minecraft/locale/Language;)V +MD: net/minecraft/client/resources/language/LanguageInfo/ ()V net/minecraft/client/resources/language/LanguageInfo/ ()V +MD: net/minecraft/client/resources/language/LanguageInfo/ (Ljava/lang/String;Ljava/lang/String;Z)V net/minecraft/client/resources/language/LanguageInfo/ (Ljava/lang/String;Ljava/lang/String;Z)V +MD: net/minecraft/client/resources/language/LanguageInfo/equals (Ljava/lang/Object;)Z net/minecraft/client/resources/language/LanguageInfo/equals (Ljava/lang/Object;)Z +MD: net/minecraft/client/resources/language/LanguageInfo/f_118944_ ()Ljava/lang/String; net/minecraft/client/resources/language/LanguageInfo/region ()Ljava/lang/String; +MD: net/minecraft/client/resources/language/LanguageInfo/f_118945_ ()Ljava/lang/String; net/minecraft/client/resources/language/LanguageInfo/name ()Ljava/lang/String; +MD: net/minecraft/client/resources/language/LanguageInfo/f_118946_ ()Z net/minecraft/client/resources/language/LanguageInfo/bidirectional ()Z +MD: net/minecraft/client/resources/language/LanguageInfo/hashCode ()I net/minecraft/client/resources/language/LanguageInfo/hashCode ()I +MD: net/minecraft/client/resources/language/LanguageInfo/m_264330_ (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/client/resources/language/LanguageInfo/lambda$static$0 (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/client/resources/language/LanguageInfo/m_264517_ ()Lnet/minecraft/network/chat/Component; net/minecraft/client/resources/language/LanguageInfo/toComponent ()Lnet/minecraft/network/chat/Component; +MD: net/minecraft/client/resources/language/LanguageInfo/toString ()Ljava/lang/String; net/minecraft/client/resources/language/LanguageInfo/toString ()Ljava/lang/String; +MD: net/minecraft/client/resources/language/LanguageManager/ ()V net/minecraft/client/resources/language/LanguageManager/ ()V +MD: net/minecraft/client/resources/language/LanguageManager/ (Ljava/lang/String;)V net/minecraft/client/resources/language/LanguageManager/ (Ljava/lang/String;)V +MD: net/minecraft/client/resources/language/LanguageManager/m_118976_ (Ljava/lang/String;)Lnet/minecraft/client/resources/language/LanguageInfo; net/minecraft/client/resources/language/LanguageManager/getLanguage (Ljava/lang/String;)Lnet/minecraft/client/resources/language/LanguageInfo; +MD: net/minecraft/client/resources/language/LanguageManager/m_118981_ (Ljava/util/stream/Stream;)Ljava/util/Map; net/minecraft/client/resources/language/LanguageManager/extractLanguages (Ljava/util/stream/Stream;)Ljava/util/Map; +MD: net/minecraft/client/resources/language/LanguageManager/m_263891_ (Ljava/util/Map;Lnet/minecraft/server/packs/PackResources;)V net/minecraft/client/resources/language/LanguageManager/lambda$extractLanguages$0 (Ljava/util/Map;Lnet/minecraft/server/packs/PackResources;)V +MD: net/minecraft/client/resources/language/LanguageManager/m_264110_ (Ljava/lang/String;)V net/minecraft/client/resources/language/LanguageManager/setSelected (Ljava/lang/String;)V +MD: net/minecraft/client/resources/language/LanguageManager/m_264236_ ()Ljava/lang/String; net/minecraft/client/resources/language/LanguageManager/getSelected ()Ljava/lang/String; +MD: net/minecraft/client/resources/language/LanguageManager/m_264450_ ()Ljava/util/SortedMap; net/minecraft/client/resources/language/LanguageManager/getLanguages ()Ljava/util/SortedMap; +MD: net/minecraft/client/resources/language/LanguageManager/m_6213_ (Lnet/minecraft/server/packs/resources/ResourceManager;)V net/minecraft/client/resources/language/LanguageManager/onResourceManagerReload (Lnet/minecraft/server/packs/resources/ResourceManager;)V +MD: net/minecraft/client/resources/metadata/animation/AnimationFrame/ (II)V net/minecraft/client/resources/metadata/animation/AnimationFrame/ (II)V +MD: net/minecraft/client/resources/metadata/animation/AnimationFrame/ (I)V net/minecraft/client/resources/metadata/animation/AnimationFrame/ (I)V +MD: net/minecraft/client/resources/metadata/animation/AnimationFrame/m_119010_ ()I net/minecraft/client/resources/metadata/animation/AnimationFrame/getIndex ()I +MD: net/minecraft/client/resources/metadata/animation/AnimationFrame/m_174856_ (I)I net/minecraft/client/resources/metadata/animation/AnimationFrame/getTime (I)I +MD: net/minecraft/client/resources/metadata/animation/AnimationMetadataSection/ ()V net/minecraft/client/resources/metadata/animation/AnimationMetadataSection/ ()V +MD: net/minecraft/client/resources/metadata/animation/AnimationMetadataSection/ (Ljava/util/List;IIIZ)V net/minecraft/client/resources/metadata/animation/AnimationMetadataSection/ (Ljava/util/List;IIIZ)V +MD: net/minecraft/client/resources/metadata/animation/AnimationMetadataSection/m_119030_ ()I net/minecraft/client/resources/metadata/animation/AnimationMetadataSection/getDefaultFrameTime ()I +MD: net/minecraft/client/resources/metadata/animation/AnimationMetadataSection/m_119036_ ()Z net/minecraft/client/resources/metadata/animation/AnimationMetadataSection/isInterpolatedFrames ()Z +MD: net/minecraft/client/resources/metadata/animation/AnimationMetadataSection/m_174861_ (Lnet/minecraft/client/resources/metadata/animation/AnimationMetadataSection$FrameOutput;)V net/minecraft/client/resources/metadata/animation/AnimationMetadataSection/forEachFrame (Lnet/minecraft/client/resources/metadata/animation/AnimationMetadataSection$FrameOutput;)V +MD: net/minecraft/client/resources/metadata/animation/AnimationMetadataSection/m_245821_ (II)Lnet/minecraft/client/resources/metadata/animation/FrameSize; net/minecraft/client/resources/metadata/animation/AnimationMetadataSection/calculateFrameSize (II)Lnet/minecraft/client/resources/metadata/animation/FrameSize; +MD: net/minecraft/client/resources/metadata/animation/AnimationMetadataSection$1/ (Ljava/util/List;IIIZ)V net/minecraft/client/resources/metadata/animation/AnimationMetadataSection$1/ (Ljava/util/List;IIIZ)V +MD: net/minecraft/client/resources/metadata/animation/AnimationMetadataSection$1/m_245821_ (II)Lnet/minecraft/client/resources/metadata/animation/FrameSize; net/minecraft/client/resources/metadata/animation/AnimationMetadataSection$1/calculateFrameSize (II)Lnet/minecraft/client/resources/metadata/animation/FrameSize; +MD: net/minecraft/client/resources/metadata/animation/AnimationMetadataSection$FrameOutput/m_174863_ (II)V net/minecraft/client/resources/metadata/animation/AnimationMetadataSection$FrameOutput/accept (II)V +MD: net/minecraft/client/resources/metadata/animation/AnimationMetadataSectionSerializer/ ()V net/minecraft/client/resources/metadata/animation/AnimationMetadataSectionSerializer/ ()V +MD: net/minecraft/client/resources/metadata/animation/AnimationMetadataSectionSerializer/m_119058_ (ILcom/google/gson/JsonElement;)Lnet/minecraft/client/resources/metadata/animation/AnimationFrame; net/minecraft/client/resources/metadata/animation/AnimationMetadataSectionSerializer/getFrame (ILcom/google/gson/JsonElement;)Lnet/minecraft/client/resources/metadata/animation/AnimationFrame; +MD: net/minecraft/client/resources/metadata/animation/AnimationMetadataSectionSerializer/m_6322_ (Lcom/google/gson/JsonObject;)Lnet/minecraft/client/resources/metadata/animation/AnimationMetadataSection; net/minecraft/client/resources/metadata/animation/AnimationMetadataSectionSerializer/fromJson (Lcom/google/gson/JsonObject;)Lnet/minecraft/client/resources/metadata/animation/AnimationMetadataSection; +MD: net/minecraft/client/resources/metadata/animation/AnimationMetadataSectionSerializer/m_6322_ (Lcom/google/gson/JsonObject;)Ljava/lang/Object; net/minecraft/client/resources/metadata/animation/AnimationMetadataSectionSerializer/fromJson (Lcom/google/gson/JsonObject;)Ljava/lang/Object; +MD: net/minecraft/client/resources/metadata/animation/AnimationMetadataSectionSerializer/m_7991_ ()Ljava/lang/String; net/minecraft/client/resources/metadata/animation/AnimationMetadataSectionSerializer/getMetadataSectionName ()Ljava/lang/String; +MD: net/minecraft/client/resources/metadata/animation/FrameSize/ (II)V net/minecraft/client/resources/metadata/animation/FrameSize/ (II)V +MD: net/minecraft/client/resources/metadata/animation/FrameSize/equals (Ljava/lang/Object;)Z net/minecraft/client/resources/metadata/animation/FrameSize/equals (Ljava/lang/Object;)Z +MD: net/minecraft/client/resources/metadata/animation/FrameSize/f_244129_ ()I net/minecraft/client/resources/metadata/animation/FrameSize/width ()I +MD: net/minecraft/client/resources/metadata/animation/FrameSize/f_244503_ ()I net/minecraft/client/resources/metadata/animation/FrameSize/height ()I +MD: net/minecraft/client/resources/metadata/animation/FrameSize/hashCode ()I net/minecraft/client/resources/metadata/animation/FrameSize/hashCode ()I +MD: net/minecraft/client/resources/metadata/animation/FrameSize/toString ()Ljava/lang/String; net/minecraft/client/resources/metadata/animation/FrameSize/toString ()Ljava/lang/String; +MD: net/minecraft/client/resources/metadata/animation/VillagerMetaDataSection/ ()V net/minecraft/client/resources/metadata/animation/VillagerMetaDataSection/ ()V +MD: net/minecraft/client/resources/metadata/animation/VillagerMetaDataSection/ (Lnet/minecraft/client/resources/metadata/animation/VillagerMetaDataSection$Hat;)V net/minecraft/client/resources/metadata/animation/VillagerMetaDataSection/ (Lnet/minecraft/client/resources/metadata/animation/VillagerMetaDataSection$Hat;)V +MD: net/minecraft/client/resources/metadata/animation/VillagerMetaDataSection/m_119070_ ()Lnet/minecraft/client/resources/metadata/animation/VillagerMetaDataSection$Hat; net/minecraft/client/resources/metadata/animation/VillagerMetaDataSection/getHat ()Lnet/minecraft/client/resources/metadata/animation/VillagerMetaDataSection$Hat; +MD: net/minecraft/client/resources/metadata/animation/VillagerMetaDataSection$Hat/ ()V net/minecraft/client/resources/metadata/animation/VillagerMetaDataSection$Hat/ ()V +MD: net/minecraft/client/resources/metadata/animation/VillagerMetaDataSection$Hat/ (Ljava/lang/String;ILjava/lang/String;)V net/minecraft/client/resources/metadata/animation/VillagerMetaDataSection$Hat/ (Ljava/lang/String;ILjava/lang/String;)V +MD: net/minecraft/client/resources/metadata/animation/VillagerMetaDataSection$Hat/m_119082_ ()Ljava/lang/String; net/minecraft/client/resources/metadata/animation/VillagerMetaDataSection$Hat/getName ()Ljava/lang/String; +MD: net/minecraft/client/resources/metadata/animation/VillagerMetaDataSection$Hat/m_119083_ (Lnet/minecraft/client/resources/metadata/animation/VillagerMetaDataSection$Hat;)Lnet/minecraft/client/resources/metadata/animation/VillagerMetaDataSection$Hat; net/minecraft/client/resources/metadata/animation/VillagerMetaDataSection$Hat/lambda$static$0 (Lnet/minecraft/client/resources/metadata/animation/VillagerMetaDataSection$Hat;)Lnet/minecraft/client/resources/metadata/animation/VillagerMetaDataSection$Hat; +MD: net/minecraft/client/resources/metadata/animation/VillagerMetaDataSection$Hat/m_119085_ (Ljava/lang/String;)Lnet/minecraft/client/resources/metadata/animation/VillagerMetaDataSection$Hat; net/minecraft/client/resources/metadata/animation/VillagerMetaDataSection$Hat/getByName (Ljava/lang/String;)Lnet/minecraft/client/resources/metadata/animation/VillagerMetaDataSection$Hat; +MD: net/minecraft/client/resources/metadata/animation/VillagerMetaDataSection$Hat/m_174867_ ()[Lnet/minecraft/client/resources/metadata/animation/VillagerMetaDataSection$Hat; net/minecraft/client/resources/metadata/animation/VillagerMetaDataSection$Hat/$values ()[Lnet/minecraft/client/resources/metadata/animation/VillagerMetaDataSection$Hat; +MD: net/minecraft/client/resources/metadata/animation/VillagerMetaDataSection$Hat/valueOf (Ljava/lang/String;)Lnet/minecraft/client/resources/metadata/animation/VillagerMetaDataSection$Hat; net/minecraft/client/resources/metadata/animation/VillagerMetaDataSection$Hat/valueOf (Ljava/lang/String;)Lnet/minecraft/client/resources/metadata/animation/VillagerMetaDataSection$Hat; +MD: net/minecraft/client/resources/metadata/animation/VillagerMetaDataSection$Hat/values ()[Lnet/minecraft/client/resources/metadata/animation/VillagerMetaDataSection$Hat; net/minecraft/client/resources/metadata/animation/VillagerMetaDataSection$Hat/values ()[Lnet/minecraft/client/resources/metadata/animation/VillagerMetaDataSection$Hat; +MD: net/minecraft/client/resources/metadata/animation/VillagerMetadataSectionSerializer/ ()V net/minecraft/client/resources/metadata/animation/VillagerMetadataSectionSerializer/ ()V +MD: net/minecraft/client/resources/metadata/animation/VillagerMetadataSectionSerializer/m_6322_ (Lcom/google/gson/JsonObject;)Lnet/minecraft/client/resources/metadata/animation/VillagerMetaDataSection; net/minecraft/client/resources/metadata/animation/VillagerMetadataSectionSerializer/fromJson (Lcom/google/gson/JsonObject;)Lnet/minecraft/client/resources/metadata/animation/VillagerMetaDataSection; +MD: net/minecraft/client/resources/metadata/animation/VillagerMetadataSectionSerializer/m_6322_ (Lcom/google/gson/JsonObject;)Ljava/lang/Object; net/minecraft/client/resources/metadata/animation/VillagerMetadataSectionSerializer/fromJson (Lcom/google/gson/JsonObject;)Ljava/lang/Object; +MD: net/minecraft/client/resources/metadata/animation/VillagerMetadataSectionSerializer/m_7991_ ()Ljava/lang/String; net/minecraft/client/resources/metadata/animation/VillagerMetadataSectionSerializer/getMetadataSectionName ()Ljava/lang/String; +MD: net/minecraft/client/resources/metadata/language/LanguageMetadataSection/ ()V net/minecraft/client/resources/metadata/language/LanguageMetadataSection/ ()V +MD: net/minecraft/client/resources/metadata/language/LanguageMetadataSection/ (Ljava/util/Map;)V net/minecraft/client/resources/metadata/language/LanguageMetadataSection/ (Ljava/util/Map;)V +MD: net/minecraft/client/resources/metadata/language/LanguageMetadataSection/equals (Ljava/lang/Object;)Z net/minecraft/client/resources/metadata/language/LanguageMetadataSection/equals (Ljava/lang/Object;)Z +MD: net/minecraft/client/resources/metadata/language/LanguageMetadataSection/f_119097_ ()Ljava/util/Map; net/minecraft/client/resources/metadata/language/LanguageMetadataSection/languages ()Ljava/util/Map; +MD: net/minecraft/client/resources/metadata/language/LanguageMetadataSection/hashCode ()I net/minecraft/client/resources/metadata/language/LanguageMetadataSection/hashCode ()I +MD: net/minecraft/client/resources/metadata/language/LanguageMetadataSection/toString ()Ljava/lang/String; net/minecraft/client/resources/metadata/language/LanguageMetadataSection/toString ()Ljava/lang/String; +MD: net/minecraft/client/resources/metadata/texture/TextureMetadataSection/ ()V net/minecraft/client/resources/metadata/texture/TextureMetadataSection/ ()V +MD: net/minecraft/client/resources/metadata/texture/TextureMetadataSection/ (ZZ)V net/minecraft/client/resources/metadata/texture/TextureMetadataSection/ (ZZ)V +MD: net/minecraft/client/resources/metadata/texture/TextureMetadataSection/m_119115_ ()Z net/minecraft/client/resources/metadata/texture/TextureMetadataSection/isBlur ()Z +MD: net/minecraft/client/resources/metadata/texture/TextureMetadataSection/m_119116_ ()Z net/minecraft/client/resources/metadata/texture/TextureMetadataSection/isClamp ()Z +MD: net/minecraft/client/resources/metadata/texture/TextureMetadataSectionSerializer/ ()V net/minecraft/client/resources/metadata/texture/TextureMetadataSectionSerializer/ ()V +MD: net/minecraft/client/resources/metadata/texture/TextureMetadataSectionSerializer/m_6322_ (Lcom/google/gson/JsonObject;)Lnet/minecraft/client/resources/metadata/texture/TextureMetadataSection; net/minecraft/client/resources/metadata/texture/TextureMetadataSectionSerializer/fromJson (Lcom/google/gson/JsonObject;)Lnet/minecraft/client/resources/metadata/texture/TextureMetadataSection; +MD: net/minecraft/client/resources/metadata/texture/TextureMetadataSectionSerializer/m_6322_ (Lcom/google/gson/JsonObject;)Ljava/lang/Object; net/minecraft/client/resources/metadata/texture/TextureMetadataSectionSerializer/fromJson (Lcom/google/gson/JsonObject;)Ljava/lang/Object; +MD: net/minecraft/client/resources/metadata/texture/TextureMetadataSectionSerializer/m_7991_ ()Ljava/lang/String; net/minecraft/client/resources/metadata/texture/TextureMetadataSectionSerializer/getMetadataSectionName ()Ljava/lang/String; +MD: net/minecraft/client/resources/model/AtlasSet/ (Ljava/util/Map;Lnet/minecraft/client/renderer/texture/TextureManager;)V net/minecraft/client/resources/model/AtlasSet/ (Ljava/util/Map;Lnet/minecraft/client/renderer/texture/TextureManager;)V +MD: net/minecraft/client/resources/model/AtlasSet/close ()V net/minecraft/client/resources/model/AtlasSet/close ()V +MD: net/minecraft/client/resources/model/AtlasSet/m_245402_ (Lnet/minecraft/client/resources/model/AtlasSet$AtlasEntry;Lnet/minecraft/client/renderer/texture/SpriteLoader$Preparations;)Lnet/minecraft/client/resources/model/AtlasSet$StitchResult; net/minecraft/client/resources/model/AtlasSet/lambda$scheduleLoad$1 (Lnet/minecraft/client/resources/model/AtlasSet$AtlasEntry;Lnet/minecraft/client/renderer/texture/SpriteLoader$Preparations;)Lnet/minecraft/client/resources/model/AtlasSet$StitchResult; +MD: net/minecraft/client/resources/model/AtlasSet/m_245433_ (Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/client/renderer/texture/TextureAtlas; net/minecraft/client/resources/model/AtlasSet/getAtlas (Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/client/renderer/texture/TextureAtlas; +MD: net/minecraft/client/resources/model/AtlasSet/m_247721_ (Lnet/minecraft/server/packs/resources/ResourceManager;ILjava/util/concurrent/Executor;)Ljava/util/Map; net/minecraft/client/resources/model/AtlasSet/scheduleLoad (Lnet/minecraft/server/packs/resources/ResourceManager;ILjava/util/concurrent/Executor;)Ljava/util/Map; +MD: net/minecraft/client/resources/model/AtlasSet/m_260770_ (Lnet/minecraft/server/packs/resources/ResourceManager;ILjava/util/concurrent/Executor;Ljava/util/Map$Entry;)Ljava/util/concurrent/CompletableFuture; net/minecraft/client/resources/model/AtlasSet/lambda$scheduleLoad$2 (Lnet/minecraft/server/packs/resources/ResourceManager;ILjava/util/concurrent/Executor;Ljava/util/Map$Entry;)Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/client/resources/model/AtlasSet/m_260771_ (Lnet/minecraft/client/renderer/texture/TextureManager;Ljava/util/Map$Entry;)Lnet/minecraft/client/resources/model/AtlasSet$AtlasEntry; net/minecraft/client/resources/model/AtlasSet/lambda$new$0 (Lnet/minecraft/client/renderer/texture/TextureManager;Ljava/util/Map$Entry;)Lnet/minecraft/client/resources/model/AtlasSet$AtlasEntry; +MD: net/minecraft/client/resources/model/AtlasSet$AtlasEntry/ (Lnet/minecraft/client/renderer/texture/TextureAtlas;Lnet/minecraft/resources/ResourceLocation;)V net/minecraft/client/resources/model/AtlasSet$AtlasEntry/ (Lnet/minecraft/client/renderer/texture/TextureAtlas;Lnet/minecraft/resources/ResourceLocation;)V +MD: net/minecraft/client/resources/model/AtlasSet$AtlasEntry/close ()V net/minecraft/client/resources/model/AtlasSet$AtlasEntry/close ()V +MD: net/minecraft/client/resources/model/AtlasSet$AtlasEntry/equals (Ljava/lang/Object;)Z net/minecraft/client/resources/model/AtlasSet$AtlasEntry/equals (Ljava/lang/Object;)Z +MD: net/minecraft/client/resources/model/AtlasSet$AtlasEntry/f_244361_ ()Lnet/minecraft/client/renderer/texture/TextureAtlas; net/minecraft/client/resources/model/AtlasSet$AtlasEntry/atlas ()Lnet/minecraft/client/renderer/texture/TextureAtlas; +MD: net/minecraft/client/resources/model/AtlasSet$AtlasEntry/f_260723_ ()Lnet/minecraft/resources/ResourceLocation; net/minecraft/client/resources/model/AtlasSet$AtlasEntry/atlasInfoLocation ()Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/client/resources/model/AtlasSet$AtlasEntry/hashCode ()I net/minecraft/client/resources/model/AtlasSet$AtlasEntry/hashCode ()I +MD: net/minecraft/client/resources/model/AtlasSet$AtlasEntry/toString ()Ljava/lang/String; net/minecraft/client/resources/model/AtlasSet$AtlasEntry/toString ()Ljava/lang/String; +MD: net/minecraft/client/resources/model/AtlasSet$StitchResult/ (Lnet/minecraft/client/renderer/texture/TextureAtlas;Lnet/minecraft/client/renderer/texture/SpriteLoader$Preparations;)V net/minecraft/client/resources/model/AtlasSet$StitchResult/ (Lnet/minecraft/client/renderer/texture/TextureAtlas;Lnet/minecraft/client/renderer/texture/SpriteLoader$Preparations;)V +MD: net/minecraft/client/resources/model/AtlasSet$StitchResult/m_245551_ (Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/client/renderer/texture/TextureAtlasSprite; net/minecraft/client/resources/model/AtlasSet$StitchResult/getSprite (Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/client/renderer/texture/TextureAtlasSprite; +MD: net/minecraft/client/resources/model/AtlasSet$StitchResult/m_246239_ ()V net/minecraft/client/resources/model/AtlasSet$StitchResult/upload ()V +MD: net/minecraft/client/resources/model/AtlasSet$StitchResult/m_246362_ ()Ljava/util/concurrent/CompletableFuture; net/minecraft/client/resources/model/AtlasSet$StitchResult/readyForUpload ()Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/client/resources/model/AtlasSet$StitchResult/m_247223_ ()Lnet/minecraft/client/renderer/texture/TextureAtlasSprite; net/minecraft/client/resources/model/AtlasSet$StitchResult/missing ()Lnet/minecraft/client/renderer/texture/TextureAtlasSprite; +MD: net/minecraft/client/resources/model/BakedModel/m_213637_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/Direction;Lnet/minecraft/util/RandomSource;)Ljava/util/List; net/minecraft/client/resources/model/BakedModel/getQuads (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/Direction;Lnet/minecraft/util/RandomSource;)Ljava/util/List; +MD: net/minecraft/client/resources/model/BakedModel/m_6160_ ()Lnet/minecraft/client/renderer/texture/TextureAtlasSprite; net/minecraft/client/resources/model/BakedModel/getParticleIcon ()Lnet/minecraft/client/renderer/texture/TextureAtlasSprite; +MD: net/minecraft/client/resources/model/BakedModel/m_7343_ ()Lnet/minecraft/client/renderer/block/model/ItemOverrides; net/minecraft/client/resources/model/BakedModel/getOverrides ()Lnet/minecraft/client/renderer/block/model/ItemOverrides; +MD: net/minecraft/client/resources/model/BakedModel/m_7442_ ()Lnet/minecraft/client/renderer/block/model/ItemTransforms; net/minecraft/client/resources/model/BakedModel/getTransforms ()Lnet/minecraft/client/renderer/block/model/ItemTransforms; +MD: net/minecraft/client/resources/model/BakedModel/m_7521_ ()Z net/minecraft/client/resources/model/BakedModel/isCustomRenderer ()Z +MD: net/minecraft/client/resources/model/BakedModel/m_7539_ ()Z net/minecraft/client/resources/model/BakedModel/isGui3d ()Z +MD: net/minecraft/client/resources/model/BakedModel/m_7541_ ()Z net/minecraft/client/resources/model/BakedModel/useAmbientOcclusion ()Z +MD: net/minecraft/client/resources/model/BakedModel/m_7547_ ()Z net/minecraft/client/resources/model/BakedModel/usesBlockLight ()Z +MD: net/minecraft/client/resources/model/BlockModelRotation/ ()V net/minecraft/client/resources/model/BlockModelRotation/ ()V +MD: net/minecraft/client/resources/model/BlockModelRotation/ (Ljava/lang/String;III)V net/minecraft/client/resources/model/BlockModelRotation/ (Ljava/lang/String;III)V +MD: net/minecraft/client/resources/model/BlockModelRotation/m_119153_ (II)Lnet/minecraft/client/resources/model/BlockModelRotation; net/minecraft/client/resources/model/BlockModelRotation/by (II)Lnet/minecraft/client/resources/model/BlockModelRotation; +MD: net/minecraft/client/resources/model/BlockModelRotation/m_119156_ (Lnet/minecraft/client/resources/model/BlockModelRotation;)Lnet/minecraft/client/resources/model/BlockModelRotation; net/minecraft/client/resources/model/BlockModelRotation/lambda$static$1 (Lnet/minecraft/client/resources/model/BlockModelRotation;)Lnet/minecraft/client/resources/model/BlockModelRotation; +MD: net/minecraft/client/resources/model/BlockModelRotation/m_119159_ (II)I net/minecraft/client/resources/model/BlockModelRotation/getIndex (II)I +MD: net/minecraft/client/resources/model/BlockModelRotation/m_119162_ (Lnet/minecraft/client/resources/model/BlockModelRotation;)Ljava/lang/Integer; net/minecraft/client/resources/model/BlockModelRotation/lambda$static$0 (Lnet/minecraft/client/resources/model/BlockModelRotation;)Ljava/lang/Integer; +MD: net/minecraft/client/resources/model/BlockModelRotation/m_174873_ ()Lcom/mojang/math/OctahedralGroup; net/minecraft/client/resources/model/BlockModelRotation/actualRotation ()Lcom/mojang/math/OctahedralGroup; +MD: net/minecraft/client/resources/model/BlockModelRotation/m_174874_ ()[Lnet/minecraft/client/resources/model/BlockModelRotation; net/minecraft/client/resources/model/BlockModelRotation/$values ()[Lnet/minecraft/client/resources/model/BlockModelRotation; +MD: net/minecraft/client/resources/model/BlockModelRotation/m_6189_ ()Lcom/mojang/math/Transformation; net/minecraft/client/resources/model/BlockModelRotation/getRotation ()Lcom/mojang/math/Transformation; +MD: net/minecraft/client/resources/model/BlockModelRotation/valueOf (Ljava/lang/String;)Lnet/minecraft/client/resources/model/BlockModelRotation; net/minecraft/client/resources/model/BlockModelRotation/valueOf (Ljava/lang/String;)Lnet/minecraft/client/resources/model/BlockModelRotation; +MD: net/minecraft/client/resources/model/BlockModelRotation/values ()[Lnet/minecraft/client/resources/model/BlockModelRotation; net/minecraft/client/resources/model/BlockModelRotation/values ()[Lnet/minecraft/client/resources/model/BlockModelRotation; +MD: net/minecraft/client/resources/model/BuiltInModel/ (Lnet/minecraft/client/renderer/block/model/ItemTransforms;Lnet/minecraft/client/renderer/block/model/ItemOverrides;Lnet/minecraft/client/renderer/texture/TextureAtlasSprite;Z)V net/minecraft/client/resources/model/BuiltInModel/ (Lnet/minecraft/client/renderer/block/model/ItemTransforms;Lnet/minecraft/client/renderer/block/model/ItemOverrides;Lnet/minecraft/client/renderer/texture/TextureAtlasSprite;Z)V +MD: net/minecraft/client/resources/model/BuiltInModel/m_213637_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/Direction;Lnet/minecraft/util/RandomSource;)Ljava/util/List; net/minecraft/client/resources/model/BuiltInModel/getQuads (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/Direction;Lnet/minecraft/util/RandomSource;)Ljava/util/List; +MD: net/minecraft/client/resources/model/BuiltInModel/m_6160_ ()Lnet/minecraft/client/renderer/texture/TextureAtlasSprite; net/minecraft/client/resources/model/BuiltInModel/getParticleIcon ()Lnet/minecraft/client/renderer/texture/TextureAtlasSprite; +MD: net/minecraft/client/resources/model/BuiltInModel/m_7343_ ()Lnet/minecraft/client/renderer/block/model/ItemOverrides; net/minecraft/client/resources/model/BuiltInModel/getOverrides ()Lnet/minecraft/client/renderer/block/model/ItemOverrides; +MD: net/minecraft/client/resources/model/BuiltInModel/m_7442_ ()Lnet/minecraft/client/renderer/block/model/ItemTransforms; net/minecraft/client/resources/model/BuiltInModel/getTransforms ()Lnet/minecraft/client/renderer/block/model/ItemTransforms; +MD: net/minecraft/client/resources/model/BuiltInModel/m_7521_ ()Z net/minecraft/client/resources/model/BuiltInModel/isCustomRenderer ()Z +MD: net/minecraft/client/resources/model/BuiltInModel/m_7539_ ()Z net/minecraft/client/resources/model/BuiltInModel/isGui3d ()Z +MD: net/minecraft/client/resources/model/BuiltInModel/m_7541_ ()Z net/minecraft/client/resources/model/BuiltInModel/useAmbientOcclusion ()Z +MD: net/minecraft/client/resources/model/BuiltInModel/m_7547_ ()Z net/minecraft/client/resources/model/BuiltInModel/usesBlockLight ()Z +MD: net/minecraft/client/resources/model/Material/ ()V net/minecraft/client/resources/model/Material/ ()V +MD: net/minecraft/client/resources/model/Material/ (Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/resources/ResourceLocation;)V net/minecraft/client/resources/model/Material/ (Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/resources/ResourceLocation;)V +MD: net/minecraft/client/resources/model/Material/equals (Ljava/lang/Object;)Z net/minecraft/client/resources/model/Material/equals (Ljava/lang/Object;)Z +MD: net/minecraft/client/resources/model/Material/hashCode ()I net/minecraft/client/resources/model/Material/hashCode ()I +MD: net/minecraft/client/resources/model/Material/m_119193_ ()Lnet/minecraft/resources/ResourceLocation; net/minecraft/client/resources/model/Material/atlasLocation ()Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/client/resources/model/Material/m_119194_ (Lnet/minecraft/client/renderer/MultiBufferSource;Ljava/util/function/Function;)Lcom/mojang/blaze3d/vertex/VertexConsumer; net/minecraft/client/resources/model/Material/buffer (Lnet/minecraft/client/renderer/MultiBufferSource;Ljava/util/function/Function;)Lcom/mojang/blaze3d/vertex/VertexConsumer; +MD: net/minecraft/client/resources/model/Material/m_119197_ (Lnet/minecraft/client/renderer/MultiBufferSource;Ljava/util/function/Function;Z)Lcom/mojang/blaze3d/vertex/VertexConsumer; net/minecraft/client/resources/model/Material/buffer (Lnet/minecraft/client/renderer/MultiBufferSource;Ljava/util/function/Function;Z)Lcom/mojang/blaze3d/vertex/VertexConsumer; +MD: net/minecraft/client/resources/model/Material/m_119201_ (Ljava/util/function/Function;)Lnet/minecraft/client/renderer/RenderType; net/minecraft/client/resources/model/Material/renderType (Ljava/util/function/Function;)Lnet/minecraft/client/renderer/RenderType; +MD: net/minecraft/client/resources/model/Material/m_119203_ ()Lnet/minecraft/resources/ResourceLocation; net/minecraft/client/resources/model/Material/texture ()Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/client/resources/model/Material/m_119204_ ()Lnet/minecraft/client/renderer/texture/TextureAtlasSprite; net/minecraft/client/resources/model/Material/sprite ()Lnet/minecraft/client/renderer/texture/TextureAtlasSprite; +MD: net/minecraft/client/resources/model/Material/toString ()Ljava/lang/String; net/minecraft/client/resources/model/Material/toString ()Ljava/lang/String; +MD: net/minecraft/client/resources/model/ModelBaker/m_245240_ (Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/client/resources/model/ModelState;)Lnet/minecraft/client/resources/model/BakedModel; net/minecraft/client/resources/model/ModelBaker/bake (Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/client/resources/model/ModelState;)Lnet/minecraft/client/resources/model/BakedModel; +MD: net/minecraft/client/resources/model/ModelBaker/m_245361_ (Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/client/resources/model/UnbakedModel; net/minecraft/client/resources/model/ModelBaker/getModel (Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/client/resources/model/UnbakedModel; +MD: net/minecraft/client/resources/model/ModelBakery/ ()V net/minecraft/client/resources/model/ModelBakery/ ()V +MD: net/minecraft/client/resources/model/ModelBakery/ (Lnet/minecraft/client/color/block/BlockColors;Lnet/minecraft/util/profiling/ProfilerFiller;Ljava/util/Map;Ljava/util/Map;)V net/minecraft/client/resources/model/ModelBakery/ (Lnet/minecraft/client/color/block/BlockColors;Lnet/minecraft/util/profiling/ProfilerFiller;Ljava/util/Map;Ljava/util/Map;)V +MD: net/minecraft/client/resources/model/ModelBakery/m_119251_ ()Ljava/util/Map; net/minecraft/client/resources/model/ModelBakery/getBakedTopLevelModels ()Ljava/util/Map; +MD: net/minecraft/client/resources/model/ModelBakery/m_119252_ (I)Lnet/minecraft/resources/ResourceLocation; net/minecraft/client/resources/model/ModelBakery/lambda$static$0 (I)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/client/resources/model/ModelBakery/m_119254_ (ILnet/minecraft/world/level/block/state/BlockState;)V net/minecraft/client/resources/model/ModelBakery/lambda$registerModelGroup$24 (ILnet/minecraft/world/level/block/state/BlockState;)V +MD: net/minecraft/client/resources/model/ModelBakery/m_119259_ (Lnet/minecraft/world/level/block/Block;Ljava/util/Map;Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/client/resources/model/ModelBakery/lambda$predicate$10 (Lnet/minecraft/world/level/block/Block;Ljava/util/Map;Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/client/resources/model/ModelBakery/m_119263_ (Lnet/minecraft/world/level/block/state/BlockState;)V net/minecraft/client/resources/model/ModelBakery/lambda$new$7 (Lnet/minecraft/world/level/block/state/BlockState;)V +MD: net/minecraft/client/resources/model/ModelBakery/m_119273_ (Lnet/minecraft/world/level/block/state/StateDefinition;Ljava/lang/String;)Ljava/util/function/Predicate; net/minecraft/client/resources/model/ModelBakery/predicate (Lnet/minecraft/world/level/block/state/StateDefinition;Ljava/lang/String;)Ljava/util/function/Predicate; +MD: net/minecraft/client/resources/model/ModelBakery/m_119276_ (Lnet/minecraft/world/level/block/state/properties/Property;Ljava/lang/String;)Ljava/lang/Comparable; net/minecraft/client/resources/model/ModelBakery/getValueHelper (Lnet/minecraft/world/level/block/state/properties/Property;Ljava/lang/String;)Ljava/lang/Comparable; +MD: net/minecraft/client/resources/model/ModelBakery/m_119279_ (Lcom/google/common/collect/ImmutableList;Lnet/minecraft/world/level/block/state/StateDefinition;Ljava/util/Map;Ljava/util/List;Lnet/minecraft/client/renderer/block/model/multipart/MultiPart;Lcom/mojang/datafixers/util/Pair;Lnet/minecraft/client/renderer/block/model/BlockModelDefinition;Lnet/minecraft/resources/ResourceLocation;Lcom/mojang/datafixers/util/Pair;Ljava/lang/String;Lnet/minecraft/client/renderer/block/model/MultiVariant;)V net/minecraft/client/resources/model/ModelBakery/lambda$loadModel$20 (Lcom/google/common/collect/ImmutableList;Lnet/minecraft/world/level/block/state/StateDefinition;Ljava/util/Map;Ljava/util/List;Lnet/minecraft/client/renderer/block/model/multipart/MultiPart;Lcom/mojang/datafixers/util/Pair;Lnet/minecraft/client/renderer/block/model/BlockModelDefinition;Lnet/minecraft/resources/ResourceLocation;Lcom/mojang/datafixers/util/Pair;Ljava/lang/String;Lnet/minecraft/client/renderer/block/model/MultiVariant;)V +MD: net/minecraft/client/resources/model/ModelBakery/m_119296_ (Lnet/minecraft/client/renderer/block/model/BlockModel;)V net/minecraft/client/resources/model/ModelBakery/lambda$static$3 (Lnet/minecraft/client/renderer/block/model/BlockModel;)V +MD: net/minecraft/client/resources/model/ModelBakery/m_119306_ (Lnet/minecraft/client/resources/model/ModelResourceLocation;)V net/minecraft/client/resources/model/ModelBakery/loadTopLevel (Lnet/minecraft/client/resources/model/ModelResourceLocation;)V +MD: net/minecraft/client/resources/model/ModelBakery/m_119308_ (Lit/unimi/dsi/fastutil/objects/Object2IntOpenHashMap;)V net/minecraft/client/resources/model/ModelBakery/lambda$new$4 (Lit/unimi/dsi/fastutil/objects/Object2IntOpenHashMap;)V +MD: net/minecraft/client/resources/model/ModelBakery/m_119310_ (Ljava/lang/Iterable;)V net/minecraft/client/resources/model/ModelBakery/registerModelGroup (Ljava/lang/Iterable;)V +MD: net/minecraft/client/resources/model/ModelBakery/m_119322_ (Ljava/util/Map;Lnet/minecraft/client/renderer/block/model/multipart/MultiPart;Ljava/util/List;Lnet/minecraft/world/level/block/state/BlockState;)V net/minecraft/client/resources/model/ModelBakery/lambda$loadModel$16 (Ljava/util/Map;Lnet/minecraft/client/renderer/block/model/multipart/MultiPart;Ljava/util/List;Lnet/minecraft/world/level/block/state/BlockState;)V +MD: net/minecraft/client/resources/model/ModelBakery/m_119327_ (Ljava/util/Map;Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/world/level/block/state/BlockState;)V net/minecraft/client/resources/model/ModelBakery/lambda$loadModel$12 (Ljava/util/Map;Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/world/level/block/state/BlockState;)V +MD: net/minecraft/client/resources/model/ModelBakery/m_119331_ (Ljava/util/Map;Lnet/minecraft/resources/ResourceLocation;Lcom/mojang/datafixers/util/Pair;Ljava/util/Map;Lnet/minecraft/client/resources/model/ModelResourceLocation;Lnet/minecraft/world/level/block/state/BlockState;)V net/minecraft/client/resources/model/ModelBakery/lambda$loadModel$22 (Ljava/util/Map;Lnet/minecraft/resources/ResourceLocation;Lcom/mojang/datafixers/util/Pair;Ljava/util/Map;Lnet/minecraft/client/resources/model/ModelResourceLocation;Lnet/minecraft/world/level/block/state/BlockState;)V +MD: net/minecraft/client/resources/model/ModelBakery/m_119341_ (Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/client/resources/model/UnbakedModel; net/minecraft/client/resources/model/ModelBakery/getModel (Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/client/resources/model/UnbakedModel; +MD: net/minecraft/client/resources/model/ModelBakery/m_119346_ (Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/world/level/block/state/StateDefinition;)V net/minecraft/client/resources/model/ModelBakery/lambda$new$6 (Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/world/level/block/state/StateDefinition;)V +MD: net/minecraft/client/resources/model/ModelBakery/m_119352_ (Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/client/resources/model/UnbakedModel;)V net/minecraft/client/resources/model/ModelBakery/cacheAndQueueDependencies (Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/client/resources/model/UnbakedModel;)V +MD: net/minecraft/client/resources/model/ModelBakery/m_119355_ ()Lit/unimi/dsi/fastutil/objects/Object2IntMap; net/minecraft/client/resources/model/ModelBakery/getModelGroups ()Lit/unimi/dsi/fastutil/objects/Object2IntMap; +MD: net/minecraft/client/resources/model/ModelBakery/m_119358_ (Lnet/minecraft/client/renderer/block/model/BlockModel;)V net/minecraft/client/resources/model/ModelBakery/lambda$static$2 (Lnet/minecraft/client/renderer/block/model/BlockModel;)V +MD: net/minecraft/client/resources/model/ModelBakery/m_119360_ (Lnet/minecraft/client/resources/model/ModelBakery$ModelGroupKey;)Lnet/minecraft/client/resources/model/ModelBakery$ModelGroupKey; net/minecraft/client/resources/model/ModelBakery/lambda$loadModel$13 (Lnet/minecraft/client/resources/model/ModelBakery$ModelGroupKey;)Lnet/minecraft/client/resources/model/ModelBakery$ModelGroupKey; +MD: net/minecraft/client/resources/model/ModelBakery/m_119362_ (Lnet/minecraft/resources/ResourceLocation;)V net/minecraft/client/resources/model/ModelBakery/loadModel (Lnet/minecraft/resources/ResourceLocation;)V +MD: net/minecraft/client/resources/model/ModelBakery/m_119364_ (Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/client/renderer/block/model/BlockModel; net/minecraft/client/resources/model/ModelBakery/loadBlockModel (Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/client/renderer/block/model/BlockModel; +MD: net/minecraft/client/resources/model/ModelBakery/m_119370_ (Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/client/resources/model/ModelBakery/lambda$static$1 (Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/client/resources/model/ModelBakery/m_174882_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/client/renderer/block/model/MultiVariant;Ljava/util/List;)Lnet/minecraft/client/resources/model/ModelBakery$ModelGroupKey; net/minecraft/client/resources/model/ModelBakery/lambda$loadModel$17 (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/client/renderer/block/model/MultiVariant;Ljava/util/List;)Lnet/minecraft/client/resources/model/ModelBakery$ModelGroupKey; +MD: net/minecraft/client/resources/model/ModelBakery/m_174886_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/client/renderer/block/model/multipart/MultiPart;Ljava/util/List;)Lnet/minecraft/client/resources/model/ModelBakery$ModelGroupKey; net/minecraft/client/resources/model/ModelBakery/lambda$loadModel$15 (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/client/renderer/block/model/multipart/MultiPart;Ljava/util/List;)Lnet/minecraft/client/resources/model/ModelBakery$ModelGroupKey; +MD: net/minecraft/client/resources/model/ModelBakery/m_174890_ (Lcom/mojang/datafixers/util/Pair;Ljava/util/Map$Entry;)Z net/minecraft/client/resources/model/ModelBakery/lambda$loadModel$18 (Lcom/mojang/datafixers/util/Pair;Ljava/util/Map$Entry;)Z +MD: net/minecraft/client/resources/model/ModelBakery/m_174893_ (Lnet/minecraft/client/resources/model/ModelBakery$ModelGroupKey;)Ljava/util/Set; net/minecraft/client/resources/model/ModelBakery/lambda$loadModel$21 (Lnet/minecraft/client/resources/model/ModelBakery$ModelGroupKey;)Ljava/util/Set; +MD: net/minecraft/client/resources/model/ModelBakery/m_174895_ (Ljava/util/Map;Lnet/minecraft/client/renderer/block/model/MultiVariant;Ljava/util/List;Lnet/minecraft/client/renderer/block/model/multipart/MultiPart;Lcom/mojang/datafixers/util/Pair;Lnet/minecraft/client/renderer/block/model/BlockModelDefinition;Lnet/minecraft/world/level/block/state/BlockState;)V net/minecraft/client/resources/model/ModelBakery/lambda$loadModel$19 (Ljava/util/Map;Lnet/minecraft/client/renderer/block/model/MultiVariant;Ljava/util/List;Lnet/minecraft/client/renderer/block/model/multipart/MultiPart;Lcom/mojang/datafixers/util/Pair;Lnet/minecraft/client/renderer/block/model/BlockModelDefinition;Lnet/minecraft/world/level/block/state/BlockState;)V +MD: net/minecraft/client/resources/model/ModelBakery/m_174903_ (Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/world/level/block/state/BlockState;)V net/minecraft/client/resources/model/ModelBakery/lambda$new$5 (Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/world/level/block/state/BlockState;)V +MD: net/minecraft/client/resources/model/ModelBakery/m_244742_ (Lnet/minecraft/client/resources/model/UnbakedModel;)V net/minecraft/client/resources/model/ModelBakery/lambda$new$8 (Lnet/minecraft/client/resources/model/UnbakedModel;)V +MD: net/minecraft/client/resources/model/ModelBakery/m_244743_ (Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/client/resources/model/ModelBakery$LoadedJson;)Lcom/mojang/datafixers/util/Pair; net/minecraft/client/resources/model/ModelBakery/lambda$loadModel$14 (Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/client/resources/model/ModelBakery$LoadedJson;)Lcom/mojang/datafixers/util/Pair; +MD: net/minecraft/client/resources/model/ModelBakery/m_244744_ (Ljava/util/function/BiFunction;Lnet/minecraft/resources/ResourceLocation;)V net/minecraft/client/resources/model/ModelBakery/lambda$bakeModels$9 (Ljava/util/function/BiFunction;Lnet/minecraft/resources/ResourceLocation;)V +MD: net/minecraft/client/resources/model/ModelBakery/m_245909_ (Ljava/util/function/BiFunction;)V net/minecraft/client/resources/model/ModelBakery/bakeModels (Ljava/util/function/BiFunction;)V +MD: net/minecraft/client/resources/model/ModelBakery/m_257089_ (Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/world/level/block/state/StateDefinition; net/minecraft/client/resources/model/ModelBakery/lambda$loadModel$11 (Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/world/level/block/state/StateDefinition; +MD: net/minecraft/client/resources/model/ModelBakery/m_283980_ (Lnet/minecraft/client/resources/model/ModelBakery$ModelGroupKey;Ljava/util/Set;)V net/minecraft/client/resources/model/ModelBakery/lambda$loadModel$23 (Lnet/minecraft/client/resources/model/ModelBakery$ModelGroupKey;Ljava/util/Set;)V +MD: net/minecraft/client/resources/model/ModelBakery$BakedCacheKey/ (Lnet/minecraft/resources/ResourceLocation;Lcom/mojang/math/Transformation;Z)V net/minecraft/client/resources/model/ModelBakery$BakedCacheKey/ (Lnet/minecraft/resources/ResourceLocation;Lcom/mojang/math/Transformation;Z)V +MD: net/minecraft/client/resources/model/ModelBakery$BakedCacheKey/equals (Ljava/lang/Object;)Z net/minecraft/client/resources/model/ModelBakery$BakedCacheKey/equals (Ljava/lang/Object;)Z +MD: net/minecraft/client/resources/model/ModelBakery$BakedCacheKey/f_243798_ ()Lcom/mojang/math/Transformation; net/minecraft/client/resources/model/ModelBakery$BakedCacheKey/transformation ()Lcom/mojang/math/Transformation; +MD: net/minecraft/client/resources/model/ModelBakery$BakedCacheKey/f_243915_ ()Z net/minecraft/client/resources/model/ModelBakery$BakedCacheKey/isUvLocked ()Z +MD: net/minecraft/client/resources/model/ModelBakery$BakedCacheKey/f_243934_ ()Lnet/minecraft/resources/ResourceLocation; net/minecraft/client/resources/model/ModelBakery$BakedCacheKey/id ()Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/client/resources/model/ModelBakery$BakedCacheKey/hashCode ()I net/minecraft/client/resources/model/ModelBakery$BakedCacheKey/hashCode ()I +MD: net/minecraft/client/resources/model/ModelBakery$BakedCacheKey/toString ()Ljava/lang/String; net/minecraft/client/resources/model/ModelBakery$BakedCacheKey/toString ()Ljava/lang/String; +MD: net/minecraft/client/resources/model/ModelBakery$BlockStateDefinitionException/ (Ljava/lang/String;)V net/minecraft/client/resources/model/ModelBakery$BlockStateDefinitionException/ (Ljava/lang/String;)V +MD: net/minecraft/client/resources/model/ModelBakery$LoadedJson/ (Ljava/lang/String;Lcom/google/gson/JsonElement;)V net/minecraft/client/resources/model/ModelBakery$LoadedJson/ (Ljava/lang/String;Lcom/google/gson/JsonElement;)V +MD: net/minecraft/client/resources/model/ModelBakery$LoadedJson/equals (Ljava/lang/Object;)Z net/minecraft/client/resources/model/ModelBakery$LoadedJson/equals (Ljava/lang/Object;)Z +MD: net/minecraft/client/resources/model/ModelBakery$LoadedJson/f_243774_ ()Ljava/lang/String; net/minecraft/client/resources/model/ModelBakery$LoadedJson/source ()Ljava/lang/String; +MD: net/minecraft/client/resources/model/ModelBakery$LoadedJson/f_244212_ ()Lcom/google/gson/JsonElement; net/minecraft/client/resources/model/ModelBakery$LoadedJson/data ()Lcom/google/gson/JsonElement; +MD: net/minecraft/client/resources/model/ModelBakery$LoadedJson/hashCode ()I net/minecraft/client/resources/model/ModelBakery$LoadedJson/hashCode ()I +MD: net/minecraft/client/resources/model/ModelBakery$LoadedJson/toString ()Ljava/lang/String; net/minecraft/client/resources/model/ModelBakery$LoadedJson/toString ()Ljava/lang/String; +MD: net/minecraft/client/resources/model/ModelBakery$ModelBakerImpl/ (Lnet/minecraft/client/resources/model/ModelBakery;Ljava/util/function/BiFunction;Lnet/minecraft/resources/ResourceLocation;)V net/minecraft/client/resources/model/ModelBakery$ModelBakerImpl/ (Lnet/minecraft/client/resources/model/ModelBakery;Ljava/util/function/BiFunction;Lnet/minecraft/resources/ResourceLocation;)V +MD: net/minecraft/client/resources/model/ModelBakery$ModelBakerImpl/m_245240_ (Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/client/resources/model/ModelState;)Lnet/minecraft/client/resources/model/BakedModel; net/minecraft/client/resources/model/ModelBakery$ModelBakerImpl/bake (Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/client/resources/model/ModelState;)Lnet/minecraft/client/resources/model/BakedModel; +MD: net/minecraft/client/resources/model/ModelBakery$ModelBakerImpl/m_245361_ (Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/client/resources/model/UnbakedModel; net/minecraft/client/resources/model/ModelBakery$ModelBakerImpl/getModel (Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/client/resources/model/UnbakedModel; +MD: net/minecraft/client/resources/model/ModelBakery$ModelBakerImpl/m_246280_ (Ljava/util/function/BiFunction;Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/client/resources/model/Material;)Lnet/minecraft/client/renderer/texture/TextureAtlasSprite; net/minecraft/client/resources/model/ModelBakery$ModelBakerImpl/lambda$new$0 (Ljava/util/function/BiFunction;Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/client/resources/model/Material;)Lnet/minecraft/client/renderer/texture/TextureAtlasSprite; +MD: net/minecraft/client/resources/model/ModelBakery$ModelGroupKey/ (Ljava/util/List;Ljava/util/List;)V net/minecraft/client/resources/model/ModelBakery$ModelGroupKey/ (Ljava/util/List;Ljava/util/List;)V +MD: net/minecraft/client/resources/model/ModelBakery$ModelGroupKey/equals (Ljava/lang/Object;)Z net/minecraft/client/resources/model/ModelBakery$ModelGroupKey/equals (Ljava/lang/Object;)Z +MD: net/minecraft/client/resources/model/ModelBakery$ModelGroupKey/hashCode ()I net/minecraft/client/resources/model/ModelBakery$ModelGroupKey/hashCode ()I +MD: net/minecraft/client/resources/model/ModelBakery$ModelGroupKey/m_119379_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/client/renderer/block/model/multipart/MultiPart;Ljava/util/Collection;)Lnet/minecraft/client/resources/model/ModelBakery$ModelGroupKey; net/minecraft/client/resources/model/ModelBakery$ModelGroupKey/create (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/client/renderer/block/model/multipart/MultiPart;Ljava/util/Collection;)Lnet/minecraft/client/resources/model/ModelBakery$ModelGroupKey; +MD: net/minecraft/client/resources/model/ModelBakery$ModelGroupKey/m_119383_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/client/resources/model/UnbakedModel;Ljava/util/Collection;)Lnet/minecraft/client/resources/model/ModelBakery$ModelGroupKey; net/minecraft/client/resources/model/ModelBakery$ModelGroupKey/create (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/client/resources/model/UnbakedModel;Ljava/util/Collection;)Lnet/minecraft/client/resources/model/ModelBakery$ModelGroupKey; +MD: net/minecraft/client/resources/model/ModelBakery$ModelGroupKey/m_119387_ (Lnet/minecraft/world/level/block/state/BlockState;Ljava/util/Collection;)Ljava/util/List; net/minecraft/client/resources/model/ModelBakery$ModelGroupKey/getColoringValues (Lnet/minecraft/world/level/block/state/BlockState;Ljava/util/Collection;)Ljava/util/List; +MD: net/minecraft/client/resources/model/ModelBakery$ModelGroupKey/m_119390_ (Lnet/minecraft/world/level/block/state/StateDefinition;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/client/renderer/block/model/multipart/Selector;)Z net/minecraft/client/resources/model/ModelBakery$ModelGroupKey/lambda$create$0 (Lnet/minecraft/world/level/block/state/StateDefinition;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/client/renderer/block/model/multipart/Selector;)Z +MD: net/minecraft/client/resources/model/ModelManager/ ()V net/minecraft/client/resources/model/ModelManager/ ()V +MD: net/minecraft/client/resources/model/ModelManager/ (Lnet/minecraft/client/renderer/texture/TextureManager;Lnet/minecraft/client/color/block/BlockColors;I)V net/minecraft/client/resources/model/ModelManager/ (Lnet/minecraft/client/renderer/texture/TextureManager;Lnet/minecraft/client/color/block/BlockColors;I)V +MD: net/minecraft/client/resources/model/ModelManager/close ()V net/minecraft/client/resources/model/ModelManager/close ()V +MD: net/minecraft/client/resources/model/ModelManager/m_119409_ ()Lnet/minecraft/client/resources/model/BakedModel; net/minecraft/client/resources/model/ModelManager/getMissingModel ()Lnet/minecraft/client/resources/model/BakedModel; +MD: net/minecraft/client/resources/model/ModelManager/m_119410_ (I)V net/minecraft/client/resources/model/ModelManager/updateMaxMipLevel (I)V +MD: net/minecraft/client/resources/model/ModelManager/m_119415_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/client/resources/model/ModelManager/requiresRender (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/client/resources/model/ModelManager/m_119422_ (Lnet/minecraft/client/resources/model/ModelResourceLocation;)Lnet/minecraft/client/resources/model/BakedModel; net/minecraft/client/resources/model/ModelManager/getModel (Lnet/minecraft/client/resources/model/ModelResourceLocation;)Lnet/minecraft/client/resources/model/BakedModel; +MD: net/minecraft/client/resources/model/ModelManager/m_119428_ (Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/client/renderer/texture/TextureAtlas; net/minecraft/client/resources/model/ModelManager/getAtlas (Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/client/renderer/texture/TextureAtlas; +MD: net/minecraft/client/resources/model/ModelManager/m_119430_ ()Lnet/minecraft/client/renderer/block/BlockModelShaper; net/minecraft/client/resources/model/ModelManager/getBlockModelShaper ()Lnet/minecraft/client/renderer/block/BlockModelShaper; +MD: net/minecraft/client/resources/model/ModelManager/m_245068_ (Lnet/minecraft/server/packs/resources/ResourceManager;)Ljava/util/Map; net/minecraft/client/resources/model/ModelManager/lambda$loadBlockStates$11 (Lnet/minecraft/server/packs/resources/ResourceManager;)Ljava/util/Map; +MD: net/minecraft/client/resources/model/ModelManager/m_245121_ (Lnet/minecraft/client/resources/model/ModelManager$ReloadState;)Ljava/util/concurrent/CompletionStage; net/minecraft/client/resources/model/ModelManager/lambda$reload$5 (Lnet/minecraft/client/resources/model/ModelManager$ReloadState;)Ljava/util/concurrent/CompletionStage; +MD: net/minecraft/client/resources/model/ModelManager/m_245318_ (Ljava/util/concurrent/Executor;Ljava/util/Map;)Ljava/util/concurrent/CompletionStage; net/minecraft/client/resources/model/ModelManager/lambda$loadBlockModels$10 (Ljava/util/concurrent/Executor;Ljava/util/Map;)Ljava/util/concurrent/CompletionStage; +MD: net/minecraft/client/resources/model/ModelManager/m_245476_ (Lnet/minecraft/util/profiling/ProfilerFiller;Ljava/util/Map;Lnet/minecraft/client/resources/model/ModelBakery;)Lnet/minecraft/client/resources/model/ModelManager$ReloadState; net/minecraft/client/resources/model/ModelManager/loadModels (Lnet/minecraft/util/profiling/ProfilerFiller;Ljava/util/Map;Lnet/minecraft/client/resources/model/ModelBakery;)Lnet/minecraft/client/resources/model/ModelManager$ReloadState; +MD: net/minecraft/client/resources/model/ModelManager/m_245484_ (Lnet/minecraft/resources/ResourceLocation;Ljava/util/Collection;)V net/minecraft/client/resources/model/ModelManager/lambda$loadModels$17 (Lnet/minecraft/resources/ResourceLocation;Ljava/util/Collection;)V +MD: net/minecraft/client/resources/model/ModelManager/m_245561_ (Ljava/util/Map;Lnet/minecraft/client/resources/model/BakedModel;Ljava/util/Map;Lnet/minecraft/world/level/block/state/BlockState;)V net/minecraft/client/resources/model/ModelManager/lambda$loadModels$18 (Ljava/util/Map;Lnet/minecraft/client/resources/model/BakedModel;Ljava/util/Map;Lnet/minecraft/world/level/block/state/BlockState;)V +MD: net/minecraft/client/resources/model/ModelManager/m_245893_ (Lnet/minecraft/util/profiling/ProfilerFiller;Lnet/minecraft/client/resources/model/ModelManager$ReloadState;)V net/minecraft/client/resources/model/ModelManager/lambda$reload$6 (Lnet/minecraft/util/profiling/ProfilerFiller;Lnet/minecraft/client/resources/model/ModelManager$ReloadState;)V +MD: net/minecraft/client/resources/model/ModelManager/m_245925_ (I)[Ljava/util/concurrent/CompletableFuture; net/minecraft/client/resources/model/ModelManager/lambda$loadModels$19 (I)[Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/client/resources/model/ModelManager/m_246264_ (Ljava/util/Map$Entry;)Lcom/mojang/datafixers/util/Pair; net/minecraft/client/resources/model/ModelManager/lambda$loadBlockStates$12 (Ljava/util/Map$Entry;)Lcom/mojang/datafixers/util/Pair; +MD: net/minecraft/client/resources/model/ModelManager/m_246294_ (Ljava/util/Map;Lcom/google/common/collect/Multimap;Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/client/resources/model/Material;)Lnet/minecraft/client/renderer/texture/TextureAtlasSprite; net/minecraft/client/resources/model/ModelManager/lambda$loadModels$15 (Ljava/util/Map;Lcom/google/common/collect/Multimap;Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/client/resources/model/Material;)Lnet/minecraft/client/renderer/texture/TextureAtlasSprite; +MD: net/minecraft/client/resources/model/ModelManager/m_246360_ (Lnet/minecraft/server/packs/resources/ResourceManager;)Ljava/util/Map; net/minecraft/client/resources/model/ModelManager/lambda$loadBlockModels$7 (Lnet/minecraft/server/packs/resources/ResourceManager;)Ljava/util/Map; +MD: net/minecraft/client/resources/model/ModelManager/m_246478_ (Ljava/util/Map$Entry;)Lcom/mojang/datafixers/util/Pair; net/minecraft/client/resources/model/ModelManager/lambda$loadBlockModels$8 (Ljava/util/Map$Entry;)Lcom/mojang/datafixers/util/Pair; +MD: net/minecraft/client/resources/model/ModelManager/m_246505_ (Lnet/minecraft/util/profiling/ProfilerFiller;Ljava/util/Map;Ljava/util/Map;)Lnet/minecraft/client/resources/model/ModelBakery; net/minecraft/client/resources/model/ModelManager/lambda$reload$0 (Lnet/minecraft/util/profiling/ProfilerFiller;Ljava/util/Map;Ljava/util/Map;)Lnet/minecraft/client/resources/model/ModelBakery; +MD: net/minecraft/client/resources/model/ModelManager/m_246572_ (Ljava/util/concurrent/Executor;Ljava/util/Map;)Ljava/util/concurrent/CompletionStage; net/minecraft/client/resources/model/ModelManager/lambda$loadBlockStates$14 (Ljava/util/concurrent/Executor;Ljava/util/Map;)Ljava/util/concurrent/CompletionStage; +MD: net/minecraft/client/resources/model/ModelManager/m_246687_ (Ljava/util/List;)Ljava/util/Map; net/minecraft/client/resources/model/ModelManager/lambda$loadBlockStates$13 (Ljava/util/List;)Ljava/util/Map; +MD: net/minecraft/client/resources/model/ModelManager/m_246704_ (Lnet/minecraft/server/packs/resources/ResourceManager;Ljava/util/concurrent/Executor;)Ljava/util/concurrent/CompletableFuture; net/minecraft/client/resources/model/ModelManager/loadBlockModels (Lnet/minecraft/server/packs/resources/ResourceManager;Ljava/util/concurrent/Executor;)Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/client/resources/model/ModelManager/m_246805_ (Lnet/minecraft/client/resources/model/Material;)Ljava/lang/String; net/minecraft/client/resources/model/ModelManager/lambda$loadModels$16 (Lnet/minecraft/client/resources/model/Material;)Ljava/lang/String; +MD: net/minecraft/client/resources/model/ModelManager/m_246899_ (Lnet/minecraft/server/packs/resources/ResourceManager;Ljava/util/concurrent/Executor;)Ljava/util/concurrent/CompletableFuture; net/minecraft/client/resources/model/ModelManager/loadBlockStates (Lnet/minecraft/server/packs/resources/ResourceManager;Ljava/util/concurrent/Executor;)Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/client/resources/model/ModelManager/m_246937_ (Lnet/minecraft/util/profiling/ProfilerFiller;Ljava/util/Map;Ljava/util/concurrent/CompletableFuture;Ljava/lang/Void;)Lnet/minecraft/client/resources/model/ModelManager$ReloadState; net/minecraft/client/resources/model/ModelManager/lambda$reload$3 (Lnet/minecraft/util/profiling/ProfilerFiller;Ljava/util/Map;Ljava/util/concurrent/CompletableFuture;Ljava/lang/Void;)Lnet/minecraft/client/resources/model/ModelManager$ReloadState; +MD: net/minecraft/client/resources/model/ModelManager/m_247063_ (Ljava/util/List;)Ljava/util/Map; net/minecraft/client/resources/model/ModelManager/lambda$loadBlockModels$9 (Ljava/util/List;)Ljava/util/Map; +MD: net/minecraft/client/resources/model/ModelManager/m_247195_ (I)[Ljava/util/concurrent/CompletableFuture; net/minecraft/client/resources/model/ModelManager/lambda$reload$1 (I)[Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/client/resources/model/ModelManager/m_247228_ (Ljava/util/Map$Entry;)Lnet/minecraft/client/resources/model/AtlasSet$StitchResult; net/minecraft/client/resources/model/ModelManager/lambda$reload$2 (Ljava/util/Map$Entry;)Lnet/minecraft/client/resources/model/AtlasSet$StitchResult; +MD: net/minecraft/client/resources/model/ModelManager/m_247616_ (Lnet/minecraft/client/resources/model/ModelManager$ReloadState;Lnet/minecraft/util/profiling/ProfilerFiller;)V net/minecraft/client/resources/model/ModelManager/apply (Lnet/minecraft/client/resources/model/ModelManager$ReloadState;Lnet/minecraft/util/profiling/ProfilerFiller;)V +MD: net/minecraft/client/resources/model/ModelManager/m_247745_ (Lnet/minecraft/client/resources/model/ModelManager$ReloadState;Ljava/lang/Void;)Lnet/minecraft/client/resources/model/ModelManager$ReloadState; net/minecraft/client/resources/model/ModelManager/lambda$reload$4 (Lnet/minecraft/client/resources/model/ModelManager$ReloadState;Ljava/lang/Void;)Lnet/minecraft/client/resources/model/ModelManager$ReloadState; +MD: net/minecraft/client/resources/model/ModelManager/m_5540_ (Lnet/minecraft/server/packs/resources/PreparableReloadListener$PreparationBarrier;Lnet/minecraft/server/packs/resources/ResourceManager;Lnet/minecraft/util/profiling/ProfilerFiller;Lnet/minecraft/util/profiling/ProfilerFiller;Ljava/util/concurrent/Executor;Ljava/util/concurrent/Executor;)Ljava/util/concurrent/CompletableFuture; net/minecraft/client/resources/model/ModelManager/reload (Lnet/minecraft/server/packs/resources/PreparableReloadListener$PreparationBarrier;Lnet/minecraft/server/packs/resources/ResourceManager;Lnet/minecraft/util/profiling/ProfilerFiller;Lnet/minecraft/util/profiling/ProfilerFiller;Ljava/util/concurrent/Executor;Ljava/util/concurrent/Executor;)Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/client/resources/model/ModelManager$ReloadState/ (Lnet/minecraft/client/resources/model/ModelBakery;Lnet/minecraft/client/resources/model/BakedModel;Ljava/util/Map;Ljava/util/Map;Ljava/util/concurrent/CompletableFuture;)V net/minecraft/client/resources/model/ModelManager$ReloadState/ (Lnet/minecraft/client/resources/model/ModelBakery;Lnet/minecraft/client/resources/model/BakedModel;Ljava/util/Map;Ljava/util/Map;Ljava/util/concurrent/CompletableFuture;)V +MD: net/minecraft/client/resources/model/ModelManager$ReloadState/equals (Ljava/lang/Object;)Z net/minecraft/client/resources/model/ModelManager$ReloadState/equals (Ljava/lang/Object;)Z +MD: net/minecraft/client/resources/model/ModelManager$ReloadState/f_244037_ ()Ljava/util/concurrent/CompletableFuture; net/minecraft/client/resources/model/ModelManager$ReloadState/readyForUpload ()Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/client/resources/model/ModelManager$ReloadState/f_244177_ ()Ljava/util/Map; net/minecraft/client/resources/model/ModelManager$ReloadState/atlasPreparations ()Ljava/util/Map; +MD: net/minecraft/client/resources/model/ModelManager$ReloadState/f_244394_ ()Lnet/minecraft/client/resources/model/ModelBakery; net/minecraft/client/resources/model/ModelManager$ReloadState/modelBakery ()Lnet/minecraft/client/resources/model/ModelBakery; +MD: net/minecraft/client/resources/model/ModelManager$ReloadState/f_244561_ ()Ljava/util/Map; net/minecraft/client/resources/model/ModelManager$ReloadState/modelCache ()Ljava/util/Map; +MD: net/minecraft/client/resources/model/ModelManager$ReloadState/f_244619_ ()Lnet/minecraft/client/resources/model/BakedModel; net/minecraft/client/resources/model/ModelManager$ReloadState/missingModel ()Lnet/minecraft/client/resources/model/BakedModel; +MD: net/minecraft/client/resources/model/ModelManager$ReloadState/hashCode ()I net/minecraft/client/resources/model/ModelManager$ReloadState/hashCode ()I +MD: net/minecraft/client/resources/model/ModelManager$ReloadState/toString ()Ljava/lang/String; net/minecraft/client/resources/model/ModelManager$ReloadState/toString ()Ljava/lang/String; +MD: net/minecraft/client/resources/model/ModelResourceLocation/ (Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;)V net/minecraft/client/resources/model/ModelResourceLocation/ (Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;)V +MD: net/minecraft/client/resources/model/ModelResourceLocation/ (Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Lnet/minecraft/resources/ResourceLocation$Dummy;)V net/minecraft/client/resources/model/ModelResourceLocation/ (Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Lnet/minecraft/resources/ResourceLocation$Dummy;)V +MD: net/minecraft/client/resources/model/ModelResourceLocation/ (Lnet/minecraft/resources/ResourceLocation;Ljava/lang/String;)V net/minecraft/client/resources/model/ModelResourceLocation/ (Lnet/minecraft/resources/ResourceLocation;Ljava/lang/String;)V +MD: net/minecraft/client/resources/model/ModelResourceLocation/equals (Ljava/lang/Object;)Z net/minecraft/client/resources/model/ModelResourceLocation/equals (Ljava/lang/Object;)Z +MD: net/minecraft/client/resources/model/ModelResourceLocation/hashCode ()I net/minecraft/client/resources/model/ModelResourceLocation/hashCode ()I +MD: net/minecraft/client/resources/model/ModelResourceLocation/m_119448_ ()Ljava/lang/String; net/minecraft/client/resources/model/ModelResourceLocation/getVariant ()Ljava/lang/String; +MD: net/minecraft/client/resources/model/ModelResourceLocation/m_245263_ (Ljava/lang/String;Ljava/lang/String;)Lnet/minecraft/client/resources/model/ModelResourceLocation; net/minecraft/client/resources/model/ModelResourceLocation/vanilla (Ljava/lang/String;Ljava/lang/String;)Lnet/minecraft/client/resources/model/ModelResourceLocation; +MD: net/minecraft/client/resources/model/ModelResourceLocation/m_246655_ (Ljava/lang/String;)Ljava/lang/String; net/minecraft/client/resources/model/ModelResourceLocation/lowercaseVariant (Ljava/lang/String;)Ljava/lang/String; +MD: net/minecraft/client/resources/model/ModelResourceLocation/toString ()Ljava/lang/String; net/minecraft/client/resources/model/ModelResourceLocation/toString ()Ljava/lang/String; +MD: net/minecraft/client/resources/model/ModelState/m_6189_ ()Lcom/mojang/math/Transformation; net/minecraft/client/resources/model/ModelState/getRotation ()Lcom/mojang/math/Transformation; +MD: net/minecraft/client/resources/model/ModelState/m_7538_ ()Z net/minecraft/client/resources/model/ModelState/isUvLocked ()Z +MD: net/minecraft/client/resources/model/MultiPartBakedModel/ (Ljava/util/List;)V net/minecraft/client/resources/model/MultiPartBakedModel/ (Ljava/util/List;)V +MD: net/minecraft/client/resources/model/MultiPartBakedModel/m_213637_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/Direction;Lnet/minecraft/util/RandomSource;)Ljava/util/List; net/minecraft/client/resources/model/MultiPartBakedModel/getQuads (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/Direction;Lnet/minecraft/util/RandomSource;)Ljava/util/List; +MD: net/minecraft/client/resources/model/MultiPartBakedModel/m_6160_ ()Lnet/minecraft/client/renderer/texture/TextureAtlasSprite; net/minecraft/client/resources/model/MultiPartBakedModel/getParticleIcon ()Lnet/minecraft/client/renderer/texture/TextureAtlasSprite; +MD: net/minecraft/client/resources/model/MultiPartBakedModel/m_7343_ ()Lnet/minecraft/client/renderer/block/model/ItemOverrides; net/minecraft/client/resources/model/MultiPartBakedModel/getOverrides ()Lnet/minecraft/client/renderer/block/model/ItemOverrides; +MD: net/minecraft/client/resources/model/MultiPartBakedModel/m_7442_ ()Lnet/minecraft/client/renderer/block/model/ItemTransforms; net/minecraft/client/resources/model/MultiPartBakedModel/getTransforms ()Lnet/minecraft/client/renderer/block/model/ItemTransforms; +MD: net/minecraft/client/resources/model/MultiPartBakedModel/m_7521_ ()Z net/minecraft/client/resources/model/MultiPartBakedModel/isCustomRenderer ()Z +MD: net/minecraft/client/resources/model/MultiPartBakedModel/m_7539_ ()Z net/minecraft/client/resources/model/MultiPartBakedModel/isGui3d ()Z +MD: net/minecraft/client/resources/model/MultiPartBakedModel/m_7541_ ()Z net/minecraft/client/resources/model/MultiPartBakedModel/useAmbientOcclusion ()Z +MD: net/minecraft/client/resources/model/MultiPartBakedModel/m_7547_ ()Z net/minecraft/client/resources/model/MultiPartBakedModel/usesBlockLight ()Z +MD: net/minecraft/client/resources/model/MultiPartBakedModel$Builder/ ()V net/minecraft/client/resources/model/MultiPartBakedModel$Builder/ ()V +MD: net/minecraft/client/resources/model/MultiPartBakedModel$Builder/m_119476_ ()Lnet/minecraft/client/resources/model/BakedModel; net/minecraft/client/resources/model/MultiPartBakedModel$Builder/build ()Lnet/minecraft/client/resources/model/BakedModel; +MD: net/minecraft/client/resources/model/MultiPartBakedModel$Builder/m_119477_ (Ljava/util/function/Predicate;Lnet/minecraft/client/resources/model/BakedModel;)V net/minecraft/client/resources/model/MultiPartBakedModel$Builder/add (Ljava/util/function/Predicate;Lnet/minecraft/client/resources/model/BakedModel;)V +MD: net/minecraft/client/resources/model/SimpleBakedModel/ (Ljava/util/List;Ljava/util/Map;ZZZLnet/minecraft/client/renderer/texture/TextureAtlasSprite;Lnet/minecraft/client/renderer/block/model/ItemTransforms;Lnet/minecraft/client/renderer/block/model/ItemOverrides;)V net/minecraft/client/resources/model/SimpleBakedModel/ (Ljava/util/List;Ljava/util/Map;ZZZLnet/minecraft/client/renderer/texture/TextureAtlasSprite;Lnet/minecraft/client/renderer/block/model/ItemTransforms;Lnet/minecraft/client/renderer/block/model/ItemOverrides;)V +MD: net/minecraft/client/resources/model/SimpleBakedModel/m_213637_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/Direction;Lnet/minecraft/util/RandomSource;)Ljava/util/List; net/minecraft/client/resources/model/SimpleBakedModel/getQuads (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/Direction;Lnet/minecraft/util/RandomSource;)Ljava/util/List; +MD: net/minecraft/client/resources/model/SimpleBakedModel/m_6160_ ()Lnet/minecraft/client/renderer/texture/TextureAtlasSprite; net/minecraft/client/resources/model/SimpleBakedModel/getParticleIcon ()Lnet/minecraft/client/renderer/texture/TextureAtlasSprite; +MD: net/minecraft/client/resources/model/SimpleBakedModel/m_7343_ ()Lnet/minecraft/client/renderer/block/model/ItemOverrides; net/minecraft/client/resources/model/SimpleBakedModel/getOverrides ()Lnet/minecraft/client/renderer/block/model/ItemOverrides; +MD: net/minecraft/client/resources/model/SimpleBakedModel/m_7442_ ()Lnet/minecraft/client/renderer/block/model/ItemTransforms; net/minecraft/client/resources/model/SimpleBakedModel/getTransforms ()Lnet/minecraft/client/renderer/block/model/ItemTransforms; +MD: net/minecraft/client/resources/model/SimpleBakedModel/m_7521_ ()Z net/minecraft/client/resources/model/SimpleBakedModel/isCustomRenderer ()Z +MD: net/minecraft/client/resources/model/SimpleBakedModel/m_7539_ ()Z net/minecraft/client/resources/model/SimpleBakedModel/isGui3d ()Z +MD: net/minecraft/client/resources/model/SimpleBakedModel/m_7541_ ()Z net/minecraft/client/resources/model/SimpleBakedModel/useAmbientOcclusion ()Z +MD: net/minecraft/client/resources/model/SimpleBakedModel/m_7547_ ()Z net/minecraft/client/resources/model/SimpleBakedModel/usesBlockLight ()Z +MD: net/minecraft/client/resources/model/SimpleBakedModel$Builder/ (ZZZLnet/minecraft/client/renderer/block/model/ItemTransforms;Lnet/minecraft/client/renderer/block/model/ItemOverrides;)V net/minecraft/client/resources/model/SimpleBakedModel$Builder/ (ZZZLnet/minecraft/client/renderer/block/model/ItemTransforms;Lnet/minecraft/client/renderer/block/model/ItemOverrides;)V +MD: net/minecraft/client/resources/model/SimpleBakedModel$Builder/ (Lnet/minecraft/client/renderer/block/model/BlockModel;Lnet/minecraft/client/renderer/block/model/ItemOverrides;Z)V net/minecraft/client/resources/model/SimpleBakedModel$Builder/ (Lnet/minecraft/client/renderer/block/model/BlockModel;Lnet/minecraft/client/renderer/block/model/ItemOverrides;Z)V +MD: net/minecraft/client/resources/model/SimpleBakedModel$Builder/m_119526_ (Lnet/minecraft/client/renderer/block/model/BakedQuad;)Lnet/minecraft/client/resources/model/SimpleBakedModel$Builder; net/minecraft/client/resources/model/SimpleBakedModel$Builder/addUnculledFace (Lnet/minecraft/client/renderer/block/model/BakedQuad;)Lnet/minecraft/client/resources/model/SimpleBakedModel$Builder; +MD: net/minecraft/client/resources/model/SimpleBakedModel$Builder/m_119528_ (Lnet/minecraft/client/renderer/texture/TextureAtlasSprite;)Lnet/minecraft/client/resources/model/SimpleBakedModel$Builder; net/minecraft/client/resources/model/SimpleBakedModel$Builder/particle (Lnet/minecraft/client/renderer/texture/TextureAtlasSprite;)Lnet/minecraft/client/resources/model/SimpleBakedModel$Builder; +MD: net/minecraft/client/resources/model/SimpleBakedModel$Builder/m_119530_ (Lnet/minecraft/core/Direction;Lnet/minecraft/client/renderer/block/model/BakedQuad;)Lnet/minecraft/client/resources/model/SimpleBakedModel$Builder; net/minecraft/client/resources/model/SimpleBakedModel$Builder/addCulledFace (Lnet/minecraft/core/Direction;Lnet/minecraft/client/renderer/block/model/BakedQuad;)Lnet/minecraft/client/resources/model/SimpleBakedModel$Builder; +MD: net/minecraft/client/resources/model/SimpleBakedModel$Builder/m_119533_ ()Lnet/minecraft/client/resources/model/BakedModel; net/minecraft/client/resources/model/SimpleBakedModel$Builder/build ()Lnet/minecraft/client/resources/model/BakedModel; +MD: net/minecraft/client/resources/model/SimpleBakedModel$Builder/m_174911_ ()Lnet/minecraft/client/resources/model/SimpleBakedModel$Builder; net/minecraft/client/resources/model/SimpleBakedModel$Builder/item ()Lnet/minecraft/client/resources/model/SimpleBakedModel$Builder; +MD: net/minecraft/client/resources/model/UnbakedModel/m_5500_ (Ljava/util/function/Function;)V net/minecraft/client/resources/model/UnbakedModel/resolveParents (Ljava/util/function/Function;)V +MD: net/minecraft/client/resources/model/UnbakedModel/m_7611_ (Lnet/minecraft/client/resources/model/ModelBaker;Ljava/util/function/Function;Lnet/minecraft/client/resources/model/ModelState;Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/client/resources/model/BakedModel; net/minecraft/client/resources/model/UnbakedModel/bake (Lnet/minecraft/client/resources/model/ModelBaker;Ljava/util/function/Function;Lnet/minecraft/client/resources/model/ModelState;Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/client/resources/model/BakedModel; +MD: net/minecraft/client/resources/model/UnbakedModel/m_7970_ ()Ljava/util/Collection; net/minecraft/client/resources/model/UnbakedModel/getDependencies ()Ljava/util/Collection; +MD: net/minecraft/client/resources/model/WeightedBakedModel/ (Ljava/util/List;)V net/minecraft/client/resources/model/WeightedBakedModel/ (Ljava/util/List;)V +MD: net/minecraft/client/resources/model/WeightedBakedModel/m_213637_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/Direction;Lnet/minecraft/util/RandomSource;)Ljava/util/List; net/minecraft/client/resources/model/WeightedBakedModel/getQuads (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/Direction;Lnet/minecraft/util/RandomSource;)Ljava/util/List; +MD: net/minecraft/client/resources/model/WeightedBakedModel/m_235061_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/Direction;Lnet/minecraft/util/RandomSource;Lnet/minecraft/util/random/WeightedEntry$Wrapper;)Ljava/util/List; net/minecraft/client/resources/model/WeightedBakedModel/lambda$getQuads$0 (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/Direction;Lnet/minecraft/util/RandomSource;Lnet/minecraft/util/random/WeightedEntry$Wrapper;)Ljava/util/List; +MD: net/minecraft/client/resources/model/WeightedBakedModel/m_6160_ ()Lnet/minecraft/client/renderer/texture/TextureAtlasSprite; net/minecraft/client/resources/model/WeightedBakedModel/getParticleIcon ()Lnet/minecraft/client/renderer/texture/TextureAtlasSprite; +MD: net/minecraft/client/resources/model/WeightedBakedModel/m_7343_ ()Lnet/minecraft/client/renderer/block/model/ItemOverrides; net/minecraft/client/resources/model/WeightedBakedModel/getOverrides ()Lnet/minecraft/client/renderer/block/model/ItemOverrides; +MD: net/minecraft/client/resources/model/WeightedBakedModel/m_7442_ ()Lnet/minecraft/client/renderer/block/model/ItemTransforms; net/minecraft/client/resources/model/WeightedBakedModel/getTransforms ()Lnet/minecraft/client/renderer/block/model/ItemTransforms; +MD: net/minecraft/client/resources/model/WeightedBakedModel/m_7521_ ()Z net/minecraft/client/resources/model/WeightedBakedModel/isCustomRenderer ()Z +MD: net/minecraft/client/resources/model/WeightedBakedModel/m_7539_ ()Z net/minecraft/client/resources/model/WeightedBakedModel/isGui3d ()Z +MD: net/minecraft/client/resources/model/WeightedBakedModel/m_7541_ ()Z net/minecraft/client/resources/model/WeightedBakedModel/useAmbientOcclusion ()Z +MD: net/minecraft/client/resources/model/WeightedBakedModel/m_7547_ ()Z net/minecraft/client/resources/model/WeightedBakedModel/usesBlockLight ()Z +MD: net/minecraft/client/resources/model/WeightedBakedModel$Builder/ ()V net/minecraft/client/resources/model/WeightedBakedModel$Builder/ ()V +MD: net/minecraft/client/resources/model/WeightedBakedModel$Builder/m_119558_ ()Lnet/minecraft/client/resources/model/BakedModel; net/minecraft/client/resources/model/WeightedBakedModel$Builder/build ()Lnet/minecraft/client/resources/model/BakedModel; +MD: net/minecraft/client/resources/model/WeightedBakedModel$Builder/m_119559_ (Lnet/minecraft/client/resources/model/BakedModel;I)Lnet/minecraft/client/resources/model/WeightedBakedModel$Builder; net/minecraft/client/resources/model/WeightedBakedModel$Builder/add (Lnet/minecraft/client/resources/model/BakedModel;I)Lnet/minecraft/client/resources/model/WeightedBakedModel$Builder; +MD: net/minecraft/client/resources/sounds/AbstractSoundInstance/ (Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/sounds/SoundSource;Lnet/minecraft/util/RandomSource;)V net/minecraft/client/resources/sounds/AbstractSoundInstance/ (Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/sounds/SoundSource;Lnet/minecraft/util/RandomSource;)V +MD: net/minecraft/client/resources/sounds/AbstractSoundInstance/ (Lnet/minecraft/sounds/SoundEvent;Lnet/minecraft/sounds/SoundSource;Lnet/minecraft/util/RandomSource;)V net/minecraft/client/resources/sounds/AbstractSoundInstance/ (Lnet/minecraft/sounds/SoundEvent;Lnet/minecraft/sounds/SoundSource;Lnet/minecraft/util/RandomSource;)V +MD: net/minecraft/client/resources/sounds/AbstractSoundInstance/m_5891_ ()Lnet/minecraft/client/resources/sounds/Sound; net/minecraft/client/resources/sounds/AbstractSoundInstance/getSound ()Lnet/minecraft/client/resources/sounds/Sound; +MD: net/minecraft/client/resources/sounds/AbstractSoundInstance/m_6775_ (Lnet/minecraft/client/sounds/SoundManager;)Lnet/minecraft/client/sounds/WeighedSoundEvents; net/minecraft/client/resources/sounds/AbstractSoundInstance/resolve (Lnet/minecraft/client/sounds/SoundManager;)Lnet/minecraft/client/sounds/WeighedSoundEvents; +MD: net/minecraft/client/resources/sounds/AbstractSoundInstance/m_7438_ ()Lnet/minecraft/client/resources/sounds/SoundInstance$Attenuation; net/minecraft/client/resources/sounds/AbstractSoundInstance/getAttenuation ()Lnet/minecraft/client/resources/sounds/SoundInstance$Attenuation; +MD: net/minecraft/client/resources/sounds/AbstractSoundInstance/m_7766_ ()I net/minecraft/client/resources/sounds/AbstractSoundInstance/getDelay ()I +MD: net/minecraft/client/resources/sounds/AbstractSoundInstance/m_7769_ ()F net/minecraft/client/resources/sounds/AbstractSoundInstance/getVolume ()F +MD: net/minecraft/client/resources/sounds/AbstractSoundInstance/m_7772_ ()D net/minecraft/client/resources/sounds/AbstractSoundInstance/getX ()D +MD: net/minecraft/client/resources/sounds/AbstractSoundInstance/m_7775_ ()Z net/minecraft/client/resources/sounds/AbstractSoundInstance/isLooping ()Z +MD: net/minecraft/client/resources/sounds/AbstractSoundInstance/m_7778_ ()D net/minecraft/client/resources/sounds/AbstractSoundInstance/getZ ()D +MD: net/minecraft/client/resources/sounds/AbstractSoundInstance/m_7780_ ()D net/minecraft/client/resources/sounds/AbstractSoundInstance/getY ()D +MD: net/minecraft/client/resources/sounds/AbstractSoundInstance/m_7783_ ()F net/minecraft/client/resources/sounds/AbstractSoundInstance/getPitch ()F +MD: net/minecraft/client/resources/sounds/AbstractSoundInstance/m_7796_ ()Z net/minecraft/client/resources/sounds/AbstractSoundInstance/isRelative ()Z +MD: net/minecraft/client/resources/sounds/AbstractSoundInstance/m_7904_ ()Lnet/minecraft/resources/ResourceLocation; net/minecraft/client/resources/sounds/AbstractSoundInstance/getLocation ()Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/client/resources/sounds/AbstractSoundInstance/m_8070_ ()Lnet/minecraft/sounds/SoundSource; net/minecraft/client/resources/sounds/AbstractSoundInstance/getSource ()Lnet/minecraft/sounds/SoundSource; +MD: net/minecraft/client/resources/sounds/AbstractSoundInstance/toString ()Ljava/lang/String; net/minecraft/client/resources/sounds/AbstractSoundInstance/toString ()Ljava/lang/String; +MD: net/minecraft/client/resources/sounds/AbstractTickableSoundInstance/ (Lnet/minecraft/sounds/SoundEvent;Lnet/minecraft/sounds/SoundSource;Lnet/minecraft/util/RandomSource;)V net/minecraft/client/resources/sounds/AbstractTickableSoundInstance/ (Lnet/minecraft/sounds/SoundEvent;Lnet/minecraft/sounds/SoundSource;Lnet/minecraft/util/RandomSource;)V +MD: net/minecraft/client/resources/sounds/AbstractTickableSoundInstance/m_119609_ ()V net/minecraft/client/resources/sounds/AbstractTickableSoundInstance/stop ()V +MD: net/minecraft/client/resources/sounds/AbstractTickableSoundInstance/m_7801_ ()Z net/minecraft/client/resources/sounds/AbstractTickableSoundInstance/isStopped ()Z +MD: net/minecraft/client/resources/sounds/AmbientSoundHandler/m_7551_ ()V net/minecraft/client/resources/sounds/AmbientSoundHandler/tick ()V +MD: net/minecraft/client/resources/sounds/BeeAggressiveSoundInstance/ (Lnet/minecraft/world/entity/animal/Bee;)V net/minecraft/client/resources/sounds/BeeAggressiveSoundInstance/ (Lnet/minecraft/world/entity/animal/Bee;)V +MD: net/minecraft/client/resources/sounds/BeeAggressiveSoundInstance/m_5958_ ()Lnet/minecraft/client/resources/sounds/AbstractTickableSoundInstance; net/minecraft/client/resources/sounds/BeeAggressiveSoundInstance/getAlternativeSoundInstance ()Lnet/minecraft/client/resources/sounds/AbstractTickableSoundInstance; +MD: net/minecraft/client/resources/sounds/BeeAggressiveSoundInstance/m_7774_ ()Z net/minecraft/client/resources/sounds/BeeAggressiveSoundInstance/shouldSwitchSounds ()Z +MD: net/minecraft/client/resources/sounds/BeeFlyingSoundInstance/ (Lnet/minecraft/world/entity/animal/Bee;)V net/minecraft/client/resources/sounds/BeeFlyingSoundInstance/ (Lnet/minecraft/world/entity/animal/Bee;)V +MD: net/minecraft/client/resources/sounds/BeeFlyingSoundInstance/m_5958_ ()Lnet/minecraft/client/resources/sounds/AbstractTickableSoundInstance; net/minecraft/client/resources/sounds/BeeFlyingSoundInstance/getAlternativeSoundInstance ()Lnet/minecraft/client/resources/sounds/AbstractTickableSoundInstance; +MD: net/minecraft/client/resources/sounds/BeeFlyingSoundInstance/m_7774_ ()Z net/minecraft/client/resources/sounds/BeeFlyingSoundInstance/shouldSwitchSounds ()Z +MD: net/minecraft/client/resources/sounds/BeeSoundInstance/ (Lnet/minecraft/world/entity/animal/Bee;Lnet/minecraft/sounds/SoundEvent;Lnet/minecraft/sounds/SoundSource;)V net/minecraft/client/resources/sounds/BeeSoundInstance/ (Lnet/minecraft/world/entity/animal/Bee;Lnet/minecraft/sounds/SoundEvent;Lnet/minecraft/sounds/SoundSource;)V +MD: net/minecraft/client/resources/sounds/BeeSoundInstance/m_119627_ ()F net/minecraft/client/resources/sounds/BeeSoundInstance/getMinPitch ()F +MD: net/minecraft/client/resources/sounds/BeeSoundInstance/m_119628_ ()F net/minecraft/client/resources/sounds/BeeSoundInstance/getMaxPitch ()F +MD: net/minecraft/client/resources/sounds/BeeSoundInstance/m_5958_ ()Lnet/minecraft/client/resources/sounds/AbstractTickableSoundInstance; net/minecraft/client/resources/sounds/BeeSoundInstance/getAlternativeSoundInstance ()Lnet/minecraft/client/resources/sounds/AbstractTickableSoundInstance; +MD: net/minecraft/client/resources/sounds/BeeSoundInstance/m_7767_ ()Z net/minecraft/client/resources/sounds/BeeSoundInstance/canPlaySound ()Z +MD: net/minecraft/client/resources/sounds/BeeSoundInstance/m_7774_ ()Z net/minecraft/client/resources/sounds/BeeSoundInstance/shouldSwitchSounds ()Z +MD: net/minecraft/client/resources/sounds/BeeSoundInstance/m_7784_ ()Z net/minecraft/client/resources/sounds/BeeSoundInstance/canStartSilent ()Z +MD: net/minecraft/client/resources/sounds/BeeSoundInstance/m_7788_ ()V net/minecraft/client/resources/sounds/BeeSoundInstance/tick ()V +MD: net/minecraft/client/resources/sounds/BiomeAmbientSoundsHandler/ (Lnet/minecraft/client/player/LocalPlayer;Lnet/minecraft/client/sounds/SoundManager;Lnet/minecraft/world/level/biome/BiomeManager;)V net/minecraft/client/resources/sounds/BiomeAmbientSoundsHandler/ (Lnet/minecraft/client/player/LocalPlayer;Lnet/minecraft/client/sounds/SoundManager;Lnet/minecraft/world/level/biome/BiomeManager;)V +MD: net/minecraft/client/resources/sounds/BiomeAmbientSoundsHandler/m_119651_ (Lnet/minecraft/world/level/biome/Biome;Lnet/minecraft/core/Holder;)V net/minecraft/client/resources/sounds/BiomeAmbientSoundsHandler/lambda$tick$1 (Lnet/minecraft/world/level/biome/Biome;Lnet/minecraft/core/Holder;)V +MD: net/minecraft/client/resources/sounds/BiomeAmbientSoundsHandler/m_119654_ ()F net/minecraft/client/resources/sounds/BiomeAmbientSoundsHandler/getMoodiness ()F +MD: net/minecraft/client/resources/sounds/BiomeAmbientSoundsHandler/m_263141_ (Lnet/minecraft/core/Holder;Lnet/minecraft/world/level/biome/Biome;Lnet/minecraft/client/resources/sounds/BiomeAmbientSoundsHandler$LoopSoundInstance;)Lnet/minecraft/client/resources/sounds/BiomeAmbientSoundsHandler$LoopSoundInstance; net/minecraft/client/resources/sounds/BiomeAmbientSoundsHandler/lambda$tick$0 (Lnet/minecraft/core/Holder;Lnet/minecraft/world/level/biome/Biome;Lnet/minecraft/client/resources/sounds/BiomeAmbientSoundsHandler$LoopSoundInstance;)Lnet/minecraft/client/resources/sounds/BiomeAmbientSoundsHandler$LoopSoundInstance; +MD: net/minecraft/client/resources/sounds/BiomeAmbientSoundsHandler/m_263142_ (Lnet/minecraft/world/level/biome/AmbientAdditionsSettings;)V net/minecraft/client/resources/sounds/BiomeAmbientSoundsHandler/lambda$tick$2 (Lnet/minecraft/world/level/biome/AmbientAdditionsSettings;)V +MD: net/minecraft/client/resources/sounds/BiomeAmbientSoundsHandler/m_274008_ (Lnet/minecraft/world/level/biome/AmbientMoodSettings;)V net/minecraft/client/resources/sounds/BiomeAmbientSoundsHandler/lambda$tick$3 (Lnet/minecraft/world/level/biome/AmbientMoodSettings;)V +MD: net/minecraft/client/resources/sounds/BiomeAmbientSoundsHandler/m_7551_ ()V net/minecraft/client/resources/sounds/BiomeAmbientSoundsHandler/tick ()V +MD: net/minecraft/client/resources/sounds/BiomeAmbientSoundsHandler$LoopSoundInstance/ (Lnet/minecraft/sounds/SoundEvent;)V net/minecraft/client/resources/sounds/BiomeAmbientSoundsHandler$LoopSoundInstance/ (Lnet/minecraft/sounds/SoundEvent;)V +MD: net/minecraft/client/resources/sounds/BiomeAmbientSoundsHandler$LoopSoundInstance/m_119659_ ()V net/minecraft/client/resources/sounds/BiomeAmbientSoundsHandler$LoopSoundInstance/fadeOut ()V +MD: net/minecraft/client/resources/sounds/BiomeAmbientSoundsHandler$LoopSoundInstance/m_119660_ ()V net/minecraft/client/resources/sounds/BiomeAmbientSoundsHandler$LoopSoundInstance/fadeIn ()V +MD: net/minecraft/client/resources/sounds/BiomeAmbientSoundsHandler$LoopSoundInstance/m_7788_ ()V net/minecraft/client/resources/sounds/BiomeAmbientSoundsHandler$LoopSoundInstance/tick ()V +MD: net/minecraft/client/resources/sounds/BubbleColumnAmbientSoundHandler/ (Lnet/minecraft/client/player/LocalPlayer;)V net/minecraft/client/resources/sounds/BubbleColumnAmbientSoundHandler/ (Lnet/minecraft/client/player/LocalPlayer;)V +MD: net/minecraft/client/resources/sounds/BubbleColumnAmbientSoundHandler/m_119668_ (Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/client/resources/sounds/BubbleColumnAmbientSoundHandler/lambda$tick$0 (Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/client/resources/sounds/BubbleColumnAmbientSoundHandler/m_7551_ ()V net/minecraft/client/resources/sounds/BubbleColumnAmbientSoundHandler/tick ()V +MD: net/minecraft/client/resources/sounds/ElytraOnPlayerSoundInstance/ (Lnet/minecraft/client/player/LocalPlayer;)V net/minecraft/client/resources/sounds/ElytraOnPlayerSoundInstance/ (Lnet/minecraft/client/player/LocalPlayer;)V +MD: net/minecraft/client/resources/sounds/ElytraOnPlayerSoundInstance/m_7788_ ()V net/minecraft/client/resources/sounds/ElytraOnPlayerSoundInstance/tick ()V +MD: net/minecraft/client/resources/sounds/EntityBoundSoundInstance/ (Lnet/minecraft/sounds/SoundEvent;Lnet/minecraft/sounds/SoundSource;FFLnet/minecraft/world/entity/Entity;J)V net/minecraft/client/resources/sounds/EntityBoundSoundInstance/ (Lnet/minecraft/sounds/SoundEvent;Lnet/minecraft/sounds/SoundSource;FFLnet/minecraft/world/entity/Entity;J)V +MD: net/minecraft/client/resources/sounds/EntityBoundSoundInstance/m_7767_ ()Z net/minecraft/client/resources/sounds/EntityBoundSoundInstance/canPlaySound ()Z +MD: net/minecraft/client/resources/sounds/EntityBoundSoundInstance/m_7788_ ()V net/minecraft/client/resources/sounds/EntityBoundSoundInstance/tick ()V +MD: net/minecraft/client/resources/sounds/GuardianAttackSoundInstance/ (Lnet/minecraft/world/entity/monster/Guardian;)V net/minecraft/client/resources/sounds/GuardianAttackSoundInstance/ (Lnet/minecraft/world/entity/monster/Guardian;)V +MD: net/minecraft/client/resources/sounds/GuardianAttackSoundInstance/m_7767_ ()Z net/minecraft/client/resources/sounds/GuardianAttackSoundInstance/canPlaySound ()Z +MD: net/minecraft/client/resources/sounds/GuardianAttackSoundInstance/m_7788_ ()V net/minecraft/client/resources/sounds/GuardianAttackSoundInstance/tick ()V +MD: net/minecraft/client/resources/sounds/MinecartSoundInstance/ (Lnet/minecraft/world/entity/vehicle/AbstractMinecart;)V net/minecraft/client/resources/sounds/MinecartSoundInstance/ (Lnet/minecraft/world/entity/vehicle/AbstractMinecart;)V +MD: net/minecraft/client/resources/sounds/MinecartSoundInstance/m_7767_ ()Z net/minecraft/client/resources/sounds/MinecartSoundInstance/canPlaySound ()Z +MD: net/minecraft/client/resources/sounds/MinecartSoundInstance/m_7784_ ()Z net/minecraft/client/resources/sounds/MinecartSoundInstance/canStartSilent ()Z +MD: net/minecraft/client/resources/sounds/MinecartSoundInstance/m_7788_ ()V net/minecraft/client/resources/sounds/MinecartSoundInstance/tick ()V +MD: net/minecraft/client/resources/sounds/RidingMinecartSoundInstance/ (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/entity/vehicle/AbstractMinecart;Z)V net/minecraft/client/resources/sounds/RidingMinecartSoundInstance/ (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/entity/vehicle/AbstractMinecart;Z)V +MD: net/minecraft/client/resources/sounds/RidingMinecartSoundInstance/m_7767_ ()Z net/minecraft/client/resources/sounds/RidingMinecartSoundInstance/canPlaySound ()Z +MD: net/minecraft/client/resources/sounds/RidingMinecartSoundInstance/m_7784_ ()Z net/minecraft/client/resources/sounds/RidingMinecartSoundInstance/canStartSilent ()Z +MD: net/minecraft/client/resources/sounds/RidingMinecartSoundInstance/m_7788_ ()V net/minecraft/client/resources/sounds/RidingMinecartSoundInstance/tick ()V +MD: net/minecraft/client/resources/sounds/SimpleSoundInstance/ (Lnet/minecraft/sounds/SoundEvent;Lnet/minecraft/sounds/SoundSource;FFLnet/minecraft/util/RandomSource;ZILnet/minecraft/client/resources/sounds/SoundInstance$Attenuation;DDD)V net/minecraft/client/resources/sounds/SimpleSoundInstance/ (Lnet/minecraft/sounds/SoundEvent;Lnet/minecraft/sounds/SoundSource;FFLnet/minecraft/util/RandomSource;ZILnet/minecraft/client/resources/sounds/SoundInstance$Attenuation;DDD)V +MD: net/minecraft/client/resources/sounds/SimpleSoundInstance/ (Lnet/minecraft/sounds/SoundEvent;Lnet/minecraft/sounds/SoundSource;FFLnet/minecraft/util/RandomSource;DDD)V net/minecraft/client/resources/sounds/SimpleSoundInstance/ (Lnet/minecraft/sounds/SoundEvent;Lnet/minecraft/sounds/SoundSource;FFLnet/minecraft/util/RandomSource;DDD)V +MD: net/minecraft/client/resources/sounds/SimpleSoundInstance/ (Lnet/minecraft/sounds/SoundEvent;Lnet/minecraft/sounds/SoundSource;FFLnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos;)V net/minecraft/client/resources/sounds/SimpleSoundInstance/ (Lnet/minecraft/sounds/SoundEvent;Lnet/minecraft/sounds/SoundSource;FFLnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/client/resources/sounds/SimpleSoundInstance/ (Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/sounds/SoundSource;FFLnet/minecraft/util/RandomSource;ZILnet/minecraft/client/resources/sounds/SoundInstance$Attenuation;DDDZ)V net/minecraft/client/resources/sounds/SimpleSoundInstance/ (Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/sounds/SoundSource;FFLnet/minecraft/util/RandomSource;ZILnet/minecraft/client/resources/sounds/SoundInstance$Attenuation;DDDZ)V +MD: net/minecraft/client/resources/sounds/SimpleSoundInstance/m_119745_ (Lnet/minecraft/sounds/SoundEvent;)Lnet/minecraft/client/resources/sounds/SimpleSoundInstance; net/minecraft/client/resources/sounds/SimpleSoundInstance/forMusic (Lnet/minecraft/sounds/SoundEvent;)Lnet/minecraft/client/resources/sounds/SimpleSoundInstance; +MD: net/minecraft/client/resources/sounds/SimpleSoundInstance/m_119752_ (Lnet/minecraft/sounds/SoundEvent;F)Lnet/minecraft/client/resources/sounds/SimpleSoundInstance; net/minecraft/client/resources/sounds/SimpleSoundInstance/forUI (Lnet/minecraft/sounds/SoundEvent;F)Lnet/minecraft/client/resources/sounds/SimpleSoundInstance; +MD: net/minecraft/client/resources/sounds/SimpleSoundInstance/m_119755_ (Lnet/minecraft/sounds/SoundEvent;FF)Lnet/minecraft/client/resources/sounds/SimpleSoundInstance; net/minecraft/client/resources/sounds/SimpleSoundInstance/forUI (Lnet/minecraft/sounds/SoundEvent;FF)Lnet/minecraft/client/resources/sounds/SimpleSoundInstance; +MD: net/minecraft/client/resources/sounds/SimpleSoundInstance/m_119759_ (Lnet/minecraft/sounds/SoundEvent;)Lnet/minecraft/client/resources/sounds/SimpleSoundInstance; net/minecraft/client/resources/sounds/SimpleSoundInstance/forAmbientAddition (Lnet/minecraft/sounds/SoundEvent;)Lnet/minecraft/client/resources/sounds/SimpleSoundInstance; +MD: net/minecraft/client/resources/sounds/SimpleSoundInstance/m_119766_ (Lnet/minecraft/sounds/SoundEvent;FF)Lnet/minecraft/client/resources/sounds/SimpleSoundInstance; net/minecraft/client/resources/sounds/SimpleSoundInstance/forLocalAmbience (Lnet/minecraft/sounds/SoundEvent;FF)Lnet/minecraft/client/resources/sounds/SimpleSoundInstance; +MD: net/minecraft/client/resources/sounds/SimpleSoundInstance/m_235127_ (Lnet/minecraft/sounds/SoundEvent;Lnet/minecraft/util/RandomSource;DDD)Lnet/minecraft/client/resources/sounds/SimpleSoundInstance; net/minecraft/client/resources/sounds/SimpleSoundInstance/forAmbientMood (Lnet/minecraft/sounds/SoundEvent;Lnet/minecraft/util/RandomSource;DDD)Lnet/minecraft/client/resources/sounds/SimpleSoundInstance; +MD: net/minecraft/client/resources/sounds/SimpleSoundInstance/m_246411_ (Lnet/minecraft/sounds/SoundEvent;Lnet/minecraft/world/phys/Vec3;)Lnet/minecraft/client/resources/sounds/SimpleSoundInstance; net/minecraft/client/resources/sounds/SimpleSoundInstance/forRecord (Lnet/minecraft/sounds/SoundEvent;Lnet/minecraft/world/phys/Vec3;)Lnet/minecraft/client/resources/sounds/SimpleSoundInstance; +MD: net/minecraft/client/resources/sounds/SimpleSoundInstance/m_263171_ (Lnet/minecraft/core/Holder;F)Lnet/minecraft/client/resources/sounds/SimpleSoundInstance; net/minecraft/client/resources/sounds/SimpleSoundInstance/forUI (Lnet/minecraft/core/Holder;F)Lnet/minecraft/client/resources/sounds/SimpleSoundInstance; +MD: net/minecraft/client/resources/sounds/SnifferSoundInstance/ (Lnet/minecraft/world/entity/animal/sniffer/Sniffer;)V net/minecraft/client/resources/sounds/SnifferSoundInstance/ (Lnet/minecraft/world/entity/animal/sniffer/Sniffer;)V +MD: net/minecraft/client/resources/sounds/SnifferSoundInstance/m_7767_ ()Z net/minecraft/client/resources/sounds/SnifferSoundInstance/canPlaySound ()Z +MD: net/minecraft/client/resources/sounds/SnifferSoundInstance/m_7788_ ()V net/minecraft/client/resources/sounds/SnifferSoundInstance/tick ()V +MD: net/minecraft/client/resources/sounds/Sound/ ()V net/minecraft/client/resources/sounds/Sound/ ()V +MD: net/minecraft/client/resources/sounds/Sound/ (Ljava/lang/String;Lnet/minecraft/util/valueproviders/SampledFloat;Lnet/minecraft/util/valueproviders/SampledFloat;ILnet/minecraft/client/resources/sounds/Sound$Type;ZZI)V net/minecraft/client/resources/sounds/Sound/ (Ljava/lang/String;Lnet/minecraft/util/valueproviders/SampledFloat;Lnet/minecraft/util/valueproviders/SampledFloat;ILnet/minecraft/client/resources/sounds/Sound$Type;ZZI)V +MD: net/minecraft/client/resources/sounds/Sound/m_119787_ ()Lnet/minecraft/resources/ResourceLocation; net/minecraft/client/resources/sounds/Sound/getLocation ()Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/client/resources/sounds/Sound/m_119790_ ()Lnet/minecraft/resources/ResourceLocation; net/minecraft/client/resources/sounds/Sound/getPath ()Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/client/resources/sounds/Sound/m_119795_ ()Lnet/minecraft/client/resources/sounds/Sound$Type; net/minecraft/client/resources/sounds/Sound/getType ()Lnet/minecraft/client/resources/sounds/Sound$Type; +MD: net/minecraft/client/resources/sounds/Sound/m_119796_ ()Z net/minecraft/client/resources/sounds/Sound/shouldStream ()Z +MD: net/minecraft/client/resources/sounds/Sound/m_119797_ ()Z net/minecraft/client/resources/sounds/Sound/shouldPreload ()Z +MD: net/minecraft/client/resources/sounds/Sound/m_119798_ ()I net/minecraft/client/resources/sounds/Sound/getAttenuationDistance ()I +MD: net/minecraft/client/resources/sounds/Sound/m_213718_ (Lnet/minecraft/util/RandomSource;)Lnet/minecraft/client/resources/sounds/Sound; net/minecraft/client/resources/sounds/Sound/getSound (Lnet/minecraft/util/RandomSource;)Lnet/minecraft/client/resources/sounds/Sound; +MD: net/minecraft/client/resources/sounds/Sound/m_213718_ (Lnet/minecraft/util/RandomSource;)Ljava/lang/Object; net/minecraft/client/resources/sounds/Sound/getSound (Lnet/minecraft/util/RandomSource;)Ljava/lang/Object; +MD: net/minecraft/client/resources/sounds/Sound/m_235146_ ()Lnet/minecraft/util/valueproviders/SampledFloat; net/minecraft/client/resources/sounds/Sound/getVolume ()Lnet/minecraft/util/valueproviders/SampledFloat; +MD: net/minecraft/client/resources/sounds/Sound/m_235147_ ()Lnet/minecraft/util/valueproviders/SampledFloat; net/minecraft/client/resources/sounds/Sound/getPitch ()Lnet/minecraft/util/valueproviders/SampledFloat; +MD: net/minecraft/client/resources/sounds/Sound/m_7789_ ()I net/minecraft/client/resources/sounds/Sound/getWeight ()I +MD: net/minecraft/client/resources/sounds/Sound/m_8054_ (Lnet/minecraft/client/sounds/SoundEngine;)V net/minecraft/client/resources/sounds/Sound/preloadIfRequired (Lnet/minecraft/client/sounds/SoundEngine;)V +MD: net/minecraft/client/resources/sounds/Sound/toString ()Ljava/lang/String; net/minecraft/client/resources/sounds/Sound/toString ()Ljava/lang/String; +MD: net/minecraft/client/resources/sounds/Sound$Type/ ()V net/minecraft/client/resources/sounds/Sound$Type/ ()V +MD: net/minecraft/client/resources/sounds/Sound$Type/ (Ljava/lang/String;ILjava/lang/String;)V net/minecraft/client/resources/sounds/Sound$Type/ (Ljava/lang/String;ILjava/lang/String;)V +MD: net/minecraft/client/resources/sounds/Sound$Type/m_119810_ (Ljava/lang/String;)Lnet/minecraft/client/resources/sounds/Sound$Type; net/minecraft/client/resources/sounds/Sound$Type/getByName (Ljava/lang/String;)Lnet/minecraft/client/resources/sounds/Sound$Type; +MD: net/minecraft/client/resources/sounds/Sound$Type/m_174943_ ()[Lnet/minecraft/client/resources/sounds/Sound$Type; net/minecraft/client/resources/sounds/Sound$Type/$values ()[Lnet/minecraft/client/resources/sounds/Sound$Type; +MD: net/minecraft/client/resources/sounds/Sound$Type/valueOf (Ljava/lang/String;)Lnet/minecraft/client/resources/sounds/Sound$Type; net/minecraft/client/resources/sounds/Sound$Type/valueOf (Ljava/lang/String;)Lnet/minecraft/client/resources/sounds/Sound$Type; +MD: net/minecraft/client/resources/sounds/Sound$Type/values ()[Lnet/minecraft/client/resources/sounds/Sound$Type; net/minecraft/client/resources/sounds/Sound$Type/values ()[Lnet/minecraft/client/resources/sounds/Sound$Type; +MD: net/minecraft/client/resources/sounds/SoundEventRegistration/ (Ljava/util/List;ZLjava/lang/String;)V net/minecraft/client/resources/sounds/SoundEventRegistration/ (Ljava/util/List;ZLjava/lang/String;)V +MD: net/minecraft/client/resources/sounds/SoundEventRegistration/m_119822_ ()Ljava/util/List; net/minecraft/client/resources/sounds/SoundEventRegistration/getSounds ()Ljava/util/List; +MD: net/minecraft/client/resources/sounds/SoundEventRegistration/m_119823_ ()Z net/minecraft/client/resources/sounds/SoundEventRegistration/isReplace ()Z +MD: net/minecraft/client/resources/sounds/SoundEventRegistration/m_119824_ ()Ljava/lang/String; net/minecraft/client/resources/sounds/SoundEventRegistration/getSubtitle ()Ljava/lang/String; +MD: net/minecraft/client/resources/sounds/SoundEventRegistrationSerializer/ ()V net/minecraft/client/resources/sounds/SoundEventRegistrationSerializer/ ()V +MD: net/minecraft/client/resources/sounds/SoundEventRegistrationSerializer/ ()V net/minecraft/client/resources/sounds/SoundEventRegistrationSerializer/ ()V +MD: net/minecraft/client/resources/sounds/SoundEventRegistrationSerializer/deserialize (Lcom/google/gson/JsonElement;Ljava/lang/reflect/Type;Lcom/google/gson/JsonDeserializationContext;)Ljava/lang/Object; net/minecraft/client/resources/sounds/SoundEventRegistrationSerializer/deserialize (Lcom/google/gson/JsonElement;Ljava/lang/reflect/Type;Lcom/google/gson/JsonDeserializationContext;)Ljava/lang/Object; +MD: net/minecraft/client/resources/sounds/SoundEventRegistrationSerializer/deserialize (Lcom/google/gson/JsonElement;Ljava/lang/reflect/Type;Lcom/google/gson/JsonDeserializationContext;)Lnet/minecraft/client/resources/sounds/SoundEventRegistration; net/minecraft/client/resources/sounds/SoundEventRegistrationSerializer/deserialize (Lcom/google/gson/JsonElement;Ljava/lang/reflect/Type;Lcom/google/gson/JsonDeserializationContext;)Lnet/minecraft/client/resources/sounds/SoundEventRegistration; +MD: net/minecraft/client/resources/sounds/SoundEventRegistrationSerializer/m_119830_ (Lcom/google/gson/JsonObject;)Ljava/util/List; net/minecraft/client/resources/sounds/SoundEventRegistrationSerializer/getSounds (Lcom/google/gson/JsonObject;)Ljava/util/List; +MD: net/minecraft/client/resources/sounds/SoundEventRegistrationSerializer/m_119832_ (Lcom/google/gson/JsonObject;Lnet/minecraft/client/resources/sounds/Sound$Type;)Lnet/minecraft/client/resources/sounds/Sound$Type; net/minecraft/client/resources/sounds/SoundEventRegistrationSerializer/getType (Lcom/google/gson/JsonObject;Lnet/minecraft/client/resources/sounds/Sound$Type;)Lnet/minecraft/client/resources/sounds/Sound$Type; +MD: net/minecraft/client/resources/sounds/SoundEventRegistrationSerializer/m_119835_ (Lcom/google/gson/JsonObject;)Lnet/minecraft/client/resources/sounds/Sound; net/minecraft/client/resources/sounds/SoundEventRegistrationSerializer/getSound (Lcom/google/gson/JsonObject;)Lnet/minecraft/client/resources/sounds/Sound; +MD: net/minecraft/client/resources/sounds/SoundInstance/m_235150_ ()Lnet/minecraft/util/RandomSource; net/minecraft/client/resources/sounds/SoundInstance/createUnseededRandom ()Lnet/minecraft/util/RandomSource; +MD: net/minecraft/client/resources/sounds/SoundInstance/m_5891_ ()Lnet/minecraft/client/resources/sounds/Sound; net/minecraft/client/resources/sounds/SoundInstance/getSound ()Lnet/minecraft/client/resources/sounds/Sound; +MD: net/minecraft/client/resources/sounds/SoundInstance/m_6775_ (Lnet/minecraft/client/sounds/SoundManager;)Lnet/minecraft/client/sounds/WeighedSoundEvents; net/minecraft/client/resources/sounds/SoundInstance/resolve (Lnet/minecraft/client/sounds/SoundManager;)Lnet/minecraft/client/sounds/WeighedSoundEvents; +MD: net/minecraft/client/resources/sounds/SoundInstance/m_7438_ ()Lnet/minecraft/client/resources/sounds/SoundInstance$Attenuation; net/minecraft/client/resources/sounds/SoundInstance/getAttenuation ()Lnet/minecraft/client/resources/sounds/SoundInstance$Attenuation; +MD: net/minecraft/client/resources/sounds/SoundInstance/m_7766_ ()I net/minecraft/client/resources/sounds/SoundInstance/getDelay ()I +MD: net/minecraft/client/resources/sounds/SoundInstance/m_7767_ ()Z net/minecraft/client/resources/sounds/SoundInstance/canPlaySound ()Z +MD: net/minecraft/client/resources/sounds/SoundInstance/m_7769_ ()F net/minecraft/client/resources/sounds/SoundInstance/getVolume ()F +MD: net/minecraft/client/resources/sounds/SoundInstance/m_7772_ ()D net/minecraft/client/resources/sounds/SoundInstance/getX ()D +MD: net/minecraft/client/resources/sounds/SoundInstance/m_7775_ ()Z net/minecraft/client/resources/sounds/SoundInstance/isLooping ()Z +MD: net/minecraft/client/resources/sounds/SoundInstance/m_7778_ ()D net/minecraft/client/resources/sounds/SoundInstance/getZ ()D +MD: net/minecraft/client/resources/sounds/SoundInstance/m_7780_ ()D net/minecraft/client/resources/sounds/SoundInstance/getY ()D +MD: net/minecraft/client/resources/sounds/SoundInstance/m_7783_ ()F net/minecraft/client/resources/sounds/SoundInstance/getPitch ()F +MD: net/minecraft/client/resources/sounds/SoundInstance/m_7784_ ()Z net/minecraft/client/resources/sounds/SoundInstance/canStartSilent ()Z +MD: net/minecraft/client/resources/sounds/SoundInstance/m_7796_ ()Z net/minecraft/client/resources/sounds/SoundInstance/isRelative ()Z +MD: net/minecraft/client/resources/sounds/SoundInstance/m_7904_ ()Lnet/minecraft/resources/ResourceLocation; net/minecraft/client/resources/sounds/SoundInstance/getLocation ()Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/client/resources/sounds/SoundInstance/m_8070_ ()Lnet/minecraft/sounds/SoundSource; net/minecraft/client/resources/sounds/SoundInstance/getSource ()Lnet/minecraft/sounds/SoundSource; +MD: net/minecraft/client/resources/sounds/SoundInstance$Attenuation/ ()V net/minecraft/client/resources/sounds/SoundInstance$Attenuation/ ()V +MD: net/minecraft/client/resources/sounds/SoundInstance$Attenuation/ (Ljava/lang/String;I)V net/minecraft/client/resources/sounds/SoundInstance$Attenuation/ (Ljava/lang/String;I)V +MD: net/minecraft/client/resources/sounds/SoundInstance$Attenuation/m_174956_ ()[Lnet/minecraft/client/resources/sounds/SoundInstance$Attenuation; net/minecraft/client/resources/sounds/SoundInstance$Attenuation/$values ()[Lnet/minecraft/client/resources/sounds/SoundInstance$Attenuation; +MD: net/minecraft/client/resources/sounds/SoundInstance$Attenuation/valueOf (Ljava/lang/String;)Lnet/minecraft/client/resources/sounds/SoundInstance$Attenuation; net/minecraft/client/resources/sounds/SoundInstance$Attenuation/valueOf (Ljava/lang/String;)Lnet/minecraft/client/resources/sounds/SoundInstance$Attenuation; +MD: net/minecraft/client/resources/sounds/SoundInstance$Attenuation/values ()[Lnet/minecraft/client/resources/sounds/SoundInstance$Attenuation; net/minecraft/client/resources/sounds/SoundInstance$Attenuation/values ()[Lnet/minecraft/client/resources/sounds/SoundInstance$Attenuation; +MD: net/minecraft/client/resources/sounds/TickableSoundInstance/m_7788_ ()V net/minecraft/client/resources/sounds/TickableSoundInstance/tick ()V +MD: net/minecraft/client/resources/sounds/TickableSoundInstance/m_7801_ ()Z net/minecraft/client/resources/sounds/TickableSoundInstance/isStopped ()Z +MD: net/minecraft/client/resources/sounds/UnderwaterAmbientSoundHandler/ (Lnet/minecraft/client/player/LocalPlayer;Lnet/minecraft/client/sounds/SoundManager;)V net/minecraft/client/resources/sounds/UnderwaterAmbientSoundHandler/ (Lnet/minecraft/client/player/LocalPlayer;Lnet/minecraft/client/sounds/SoundManager;)V +MD: net/minecraft/client/resources/sounds/UnderwaterAmbientSoundHandler/m_7551_ ()V net/minecraft/client/resources/sounds/UnderwaterAmbientSoundHandler/tick ()V +MD: net/minecraft/client/resources/sounds/UnderwaterAmbientSoundInstances/ ()V net/minecraft/client/resources/sounds/UnderwaterAmbientSoundInstances/ ()V +MD: net/minecraft/client/resources/sounds/UnderwaterAmbientSoundInstances$SubSound/ (Lnet/minecraft/client/player/LocalPlayer;Lnet/minecraft/sounds/SoundEvent;)V net/minecraft/client/resources/sounds/UnderwaterAmbientSoundInstances$SubSound/ (Lnet/minecraft/client/player/LocalPlayer;Lnet/minecraft/sounds/SoundEvent;)V +MD: net/minecraft/client/resources/sounds/UnderwaterAmbientSoundInstances$SubSound/m_7788_ ()V net/minecraft/client/resources/sounds/UnderwaterAmbientSoundInstances$SubSound/tick ()V +MD: net/minecraft/client/resources/sounds/UnderwaterAmbientSoundInstances$UnderwaterAmbientSoundInstance/ (Lnet/minecraft/client/player/LocalPlayer;)V net/minecraft/client/resources/sounds/UnderwaterAmbientSoundInstances$UnderwaterAmbientSoundInstance/ (Lnet/minecraft/client/player/LocalPlayer;)V +MD: net/minecraft/client/resources/sounds/UnderwaterAmbientSoundInstances$UnderwaterAmbientSoundInstance/m_7788_ ()V net/minecraft/client/resources/sounds/UnderwaterAmbientSoundInstances$UnderwaterAmbientSoundInstance/tick ()V +MD: net/minecraft/client/searchtree/FullTextSearchTree/ (Ljava/util/function/Function;Ljava/util/function/Function;Ljava/util/List;)V net/minecraft/client/searchtree/FullTextSearchTree/ (Ljava/util/function/Function;Ljava/util/function/Function;Ljava/util/List;)V +MD: net/minecraft/client/searchtree/FullTextSearchTree/m_213685_ (Ljava/lang/String;Ljava/lang/String;)Ljava/util/List; net/minecraft/client/searchtree/FullTextSearchTree/searchResourceLocation (Ljava/lang/String;Ljava/lang/String;)Ljava/util/List; +MD: net/minecraft/client/searchtree/FullTextSearchTree/m_213913_ (Ljava/lang/String;)Ljava/util/List; net/minecraft/client/searchtree/FullTextSearchTree/searchPlainText (Ljava/lang/String;)Ljava/util/List; +MD: net/minecraft/client/searchtree/FullTextSearchTree/m_214078_ ()V net/minecraft/client/searchtree/FullTextSearchTree/refresh ()V +MD: net/minecraft/client/searchtree/IdSearchTree/ (Ljava/util/function/Function;Ljava/util/List;)V net/minecraft/client/searchtree/IdSearchTree/ (Ljava/util/function/Function;Ljava/util/List;)V +MD: net/minecraft/client/searchtree/IdSearchTree/m_213685_ (Ljava/lang/String;Ljava/lang/String;)Ljava/util/List; net/minecraft/client/searchtree/IdSearchTree/searchResourceLocation (Ljava/lang/String;Ljava/lang/String;)Ljava/util/List; +MD: net/minecraft/client/searchtree/IdSearchTree/m_213913_ (Ljava/lang/String;)Ljava/util/List; net/minecraft/client/searchtree/IdSearchTree/searchPlainText (Ljava/lang/String;)Ljava/util/List; +MD: net/minecraft/client/searchtree/IdSearchTree/m_6293_ (Ljava/lang/String;)Ljava/util/List; net/minecraft/client/searchtree/IdSearchTree/search (Ljava/lang/String;)Ljava/util/List; +MD: net/minecraft/client/searchtree/IntersectionIterator/ (Ljava/util/Iterator;Ljava/util/Iterator;Ljava/util/Comparator;)V net/minecraft/client/searchtree/IntersectionIterator/ (Ljava/util/Iterator;Ljava/util/Iterator;Ljava/util/Comparator;)V +MD: net/minecraft/client/searchtree/IntersectionIterator/computeNext ()Ljava/lang/Object; net/minecraft/client/searchtree/IntersectionIterator/computeNext ()Ljava/lang/Object; +MD: net/minecraft/client/searchtree/MergingUniqueIterator/ (Ljava/util/Iterator;Ljava/util/Iterator;Ljava/util/Comparator;)V net/minecraft/client/searchtree/MergingUniqueIterator/ (Ljava/util/Iterator;Ljava/util/Iterator;Ljava/util/Comparator;)V +MD: net/minecraft/client/searchtree/MergingUniqueIterator/computeNext ()Ljava/lang/Object; net/minecraft/client/searchtree/MergingUniqueIterator/computeNext ()Ljava/lang/Object; +MD: net/minecraft/client/searchtree/PlainTextSearchTree/m_235190_ ()Lnet/minecraft/client/searchtree/PlainTextSearchTree; net/minecraft/client/searchtree/PlainTextSearchTree/empty ()Lnet/minecraft/client/searchtree/PlainTextSearchTree; +MD: net/minecraft/client/searchtree/PlainTextSearchTree/m_235191_ (Lnet/minecraft/client/searchtree/SuffixArray;Ljava/lang/Object;Ljava/lang/String;)V net/minecraft/client/searchtree/PlainTextSearchTree/lambda$create$1 (Lnet/minecraft/client/searchtree/SuffixArray;Ljava/lang/Object;Ljava/lang/String;)V +MD: net/minecraft/client/searchtree/PlainTextSearchTree/m_235195_ (Ljava/lang/String;)Ljava/util/List; net/minecraft/client/searchtree/PlainTextSearchTree/lambda$empty$0 (Ljava/lang/String;)Ljava/util/List; +MD: net/minecraft/client/searchtree/PlainTextSearchTree/m_235197_ (Ljava/util/List;Ljava/util/function/Function;)Lnet/minecraft/client/searchtree/PlainTextSearchTree; net/minecraft/client/searchtree/PlainTextSearchTree/create (Ljava/util/List;Ljava/util/function/Function;)Lnet/minecraft/client/searchtree/PlainTextSearchTree; +MD: net/minecraft/client/searchtree/PlainTextSearchTree/m_235200_ (Ljava/lang/String;)Ljava/util/List; net/minecraft/client/searchtree/PlainTextSearchTree/search (Ljava/lang/String;)Ljava/util/List; +MD: net/minecraft/client/searchtree/RefreshableSearchTree/m_214078_ ()V net/minecraft/client/searchtree/RefreshableSearchTree/refresh ()V +MD: net/minecraft/client/searchtree/RefreshableSearchTree/m_235202_ (Ljava/lang/String;)Ljava/util/List; net/minecraft/client/searchtree/RefreshableSearchTree/lambda$empty$0 (Ljava/lang/String;)Ljava/util/List; +MD: net/minecraft/client/searchtree/RefreshableSearchTree/m_235204_ ()Lnet/minecraft/client/searchtree/RefreshableSearchTree; net/minecraft/client/searchtree/RefreshableSearchTree/empty ()Lnet/minecraft/client/searchtree/RefreshableSearchTree; +MD: net/minecraft/client/searchtree/ResourceLocationSearchTree/m_213904_ (Ljava/lang/String;)Ljava/util/List; net/minecraft/client/searchtree/ResourceLocationSearchTree/searchNamespace (Ljava/lang/String;)Ljava/util/List; +MD: net/minecraft/client/searchtree/ResourceLocationSearchTree/m_213906_ (Ljava/lang/String;)Ljava/util/List; net/minecraft/client/searchtree/ResourceLocationSearchTree/searchPath (Ljava/lang/String;)Ljava/util/List; +MD: net/minecraft/client/searchtree/ResourceLocationSearchTree/m_235205_ ()Lnet/minecraft/client/searchtree/ResourceLocationSearchTree; net/minecraft/client/searchtree/ResourceLocationSearchTree/empty ()Lnet/minecraft/client/searchtree/ResourceLocationSearchTree; +MD: net/minecraft/client/searchtree/ResourceLocationSearchTree/m_235206_ (Lnet/minecraft/client/searchtree/SuffixArray;Ljava/lang/Object;Lnet/minecraft/client/searchtree/SuffixArray;Lnet/minecraft/resources/ResourceLocation;)V net/minecraft/client/searchtree/ResourceLocationSearchTree/lambda$create$0 (Lnet/minecraft/client/searchtree/SuffixArray;Ljava/lang/Object;Lnet/minecraft/client/searchtree/SuffixArray;Lnet/minecraft/resources/ResourceLocation;)V +MD: net/minecraft/client/searchtree/ResourceLocationSearchTree/m_235212_ (Ljava/util/List;Ljava/util/function/Function;)Lnet/minecraft/client/searchtree/ResourceLocationSearchTree; net/minecraft/client/searchtree/ResourceLocationSearchTree/create (Ljava/util/List;Ljava/util/function/Function;)Lnet/minecraft/client/searchtree/ResourceLocationSearchTree; +MD: net/minecraft/client/searchtree/ResourceLocationSearchTree$1/ ()V net/minecraft/client/searchtree/ResourceLocationSearchTree$1/ ()V +MD: net/minecraft/client/searchtree/ResourceLocationSearchTree$1/m_213904_ (Ljava/lang/String;)Ljava/util/List; net/minecraft/client/searchtree/ResourceLocationSearchTree$1/searchNamespace (Ljava/lang/String;)Ljava/util/List; +MD: net/minecraft/client/searchtree/ResourceLocationSearchTree$1/m_213906_ (Ljava/lang/String;)Ljava/util/List; net/minecraft/client/searchtree/ResourceLocationSearchTree$1/searchPath (Ljava/lang/String;)Ljava/util/List; +MD: net/minecraft/client/searchtree/ResourceLocationSearchTree$2/ (Lnet/minecraft/client/searchtree/SuffixArray;Lnet/minecraft/client/searchtree/SuffixArray;)V net/minecraft/client/searchtree/ResourceLocationSearchTree$2/ (Lnet/minecraft/client/searchtree/SuffixArray;Lnet/minecraft/client/searchtree/SuffixArray;)V +MD: net/minecraft/client/searchtree/ResourceLocationSearchTree$2/m_213904_ (Ljava/lang/String;)Ljava/util/List; net/minecraft/client/searchtree/ResourceLocationSearchTree$2/searchNamespace (Ljava/lang/String;)Ljava/util/List; +MD: net/minecraft/client/searchtree/ResourceLocationSearchTree$2/m_213906_ (Ljava/lang/String;)Ljava/util/List; net/minecraft/client/searchtree/ResourceLocationSearchTree$2/searchPath (Ljava/lang/String;)Ljava/util/List; +MD: net/minecraft/client/searchtree/SearchRegistry/ ()V net/minecraft/client/searchtree/SearchRegistry/ ()V +MD: net/minecraft/client/searchtree/SearchRegistry/ ()V net/minecraft/client/searchtree/SearchRegistry/ ()V +MD: net/minecraft/client/searchtree/SearchRegistry/m_235230_ (Lnet/minecraft/client/searchtree/SearchRegistry$Key;)Lnet/minecraft/client/searchtree/SearchTree; net/minecraft/client/searchtree/SearchRegistry/getTree (Lnet/minecraft/client/searchtree/SearchRegistry$Key;)Lnet/minecraft/client/searchtree/SearchTree; +MD: net/minecraft/client/searchtree/SearchRegistry/m_235232_ (Lnet/minecraft/client/searchtree/SearchRegistry$Key;Lnet/minecraft/client/searchtree/SearchRegistry$TreeBuilderSupplier;)V net/minecraft/client/searchtree/SearchRegistry/register (Lnet/minecraft/client/searchtree/SearchRegistry$Key;Lnet/minecraft/client/searchtree/SearchRegistry$TreeBuilderSupplier;)V +MD: net/minecraft/client/searchtree/SearchRegistry/m_235235_ (Lnet/minecraft/client/searchtree/SearchRegistry$Key;Ljava/util/List;)V net/minecraft/client/searchtree/SearchRegistry/populate (Lnet/minecraft/client/searchtree/SearchRegistry$Key;Ljava/util/List;)V +MD: net/minecraft/client/searchtree/SearchRegistry/m_235238_ (Lnet/minecraft/client/searchtree/SearchRegistry$Key;)Lnet/minecraft/client/searchtree/SearchRegistry$TreeEntry; net/minecraft/client/searchtree/SearchRegistry/getSupplier (Lnet/minecraft/client/searchtree/SearchRegistry$Key;)Lnet/minecraft/client/searchtree/SearchRegistry$TreeEntry; +MD: net/minecraft/client/searchtree/SearchRegistry/m_6213_ (Lnet/minecraft/server/packs/resources/ResourceManager;)V net/minecraft/client/searchtree/SearchRegistry/onResourceManagerReload (Lnet/minecraft/server/packs/resources/ResourceManager;)V +MD: net/minecraft/client/searchtree/SearchRegistry$Key/ ()V net/minecraft/client/searchtree/SearchRegistry$Key/ ()V +MD: net/minecraft/client/searchtree/SearchRegistry$TreeEntry/ (Lnet/minecraft/client/searchtree/SearchRegistry$TreeBuilderSupplier;)V net/minecraft/client/searchtree/SearchRegistry$TreeEntry/ (Lnet/minecraft/client/searchtree/SearchRegistry$TreeBuilderSupplier;)V +MD: net/minecraft/client/searchtree/SearchRegistry$TreeEntry/m_235244_ ()V net/minecraft/client/searchtree/SearchRegistry$TreeEntry/refresh ()V +MD: net/minecraft/client/searchtree/SearchRegistry$TreeEntry/m_235245_ (Ljava/util/List;)V net/minecraft/client/searchtree/SearchRegistry$TreeEntry/populate (Ljava/util/List;)V +MD: net/minecraft/client/searchtree/SearchTree/m_6293_ (Ljava/lang/String;)Ljava/util/List; net/minecraft/client/searchtree/SearchTree/search (Ljava/lang/String;)Ljava/util/List; +MD: net/minecraft/client/searchtree/SuffixArray/ ()V net/minecraft/client/searchtree/SuffixArray/ ()V +MD: net/minecraft/client/searchtree/SuffixArray/ ()V net/minecraft/client/searchtree/SuffixArray/ ()V +MD: net/minecraft/client/searchtree/SuffixArray/m_119967_ ()V net/minecraft/client/searchtree/SuffixArray/generate ()V +MD: net/minecraft/client/searchtree/SuffixArray/m_119968_ (I)Ljava/lang/String; net/minecraft/client/searchtree/SuffixArray/getString (I)Ljava/lang/String; +MD: net/minecraft/client/searchtree/SuffixArray/m_119970_ (Ljava/lang/Object;Ljava/lang/String;)V net/minecraft/client/searchtree/SuffixArray/add (Ljava/lang/Object;Ljava/lang/String;)V +MD: net/minecraft/client/searchtree/SuffixArray/m_119973_ (Ljava/lang/String;)Ljava/util/List; net/minecraft/client/searchtree/SuffixArray/search (Ljava/lang/String;)Ljava/util/List; +MD: net/minecraft/client/searchtree/SuffixArray/m_119975_ (Ljava/lang/String;I)I net/minecraft/client/searchtree/SuffixArray/compare (Ljava/lang/String;I)I +MD: net/minecraft/client/searchtree/SuffixArray/m_119984_ ()V net/minecraft/client/searchtree/SuffixArray/print ()V +MD: net/minecraft/client/searchtree/SuffixArray/m_194455_ ([I[III)I net/minecraft/client/searchtree/SuffixArray/lambda$generate$0 ([I[III)I +MD: net/minecraft/client/searchtree/SuffixArray/m_194460_ ([I[I[III)V net/minecraft/client/searchtree/SuffixArray/lambda$generate$1 ([I[I[III)V +MD: net/minecraft/client/server/IntegratedPlayerList/ (Lnet/minecraft/client/server/IntegratedServer;Lnet/minecraft/core/LayeredRegistryAccess;Lnet/minecraft/world/level/storage/PlayerDataStorage;)V net/minecraft/client/server/IntegratedPlayerList/ (Lnet/minecraft/client/server/IntegratedServer;Lnet/minecraft/core/LayeredRegistryAccess;Lnet/minecraft/world/level/storage/PlayerDataStorage;)V +MD: net/minecraft/client/server/IntegratedPlayerList/m_6418_ (Ljava/net/SocketAddress;Lcom/mojang/authlib/GameProfile;)Lnet/minecraft/network/chat/Component; net/minecraft/client/server/IntegratedPlayerList/canPlayerLogin (Ljava/net/SocketAddress;Lcom/mojang/authlib/GameProfile;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/client/server/IntegratedPlayerList/m_6765_ (Lnet/minecraft/server/level/ServerPlayer;)V net/minecraft/client/server/IntegratedPlayerList/save (Lnet/minecraft/server/level/ServerPlayer;)V +MD: net/minecraft/client/server/IntegratedPlayerList/m_6960_ ()Lnet/minecraft/nbt/CompoundTag; net/minecraft/client/server/IntegratedPlayerList/getSingleplayerData ()Lnet/minecraft/nbt/CompoundTag; +MD: net/minecraft/client/server/IntegratedPlayerList/m_7873_ ()Lnet/minecraft/client/server/IntegratedServer; net/minecraft/client/server/IntegratedPlayerList/getServer ()Lnet/minecraft/client/server/IntegratedServer; +MD: net/minecraft/client/server/IntegratedPlayerList/m_7873_ ()Lnet/minecraft/server/MinecraftServer; net/minecraft/client/server/IntegratedPlayerList/getServer ()Lnet/minecraft/server/MinecraftServer; +MD: net/minecraft/client/server/IntegratedServer/ ()V net/minecraft/client/server/IntegratedServer/ ()V +MD: net/minecraft/client/server/IntegratedServer/ (Ljava/lang/Thread;Lnet/minecraft/client/Minecraft;Lnet/minecraft/world/level/storage/LevelStorageSource$LevelStorageAccess;Lnet/minecraft/server/packs/repository/PackRepository;Lnet/minecraft/server/WorldStem;Lnet/minecraft/server/Services;Lnet/minecraft/server/level/progress/ChunkProgressListenerFactory;)V net/minecraft/client/server/IntegratedServer/ (Ljava/lang/Thread;Lnet/minecraft/client/Minecraft;Lnet/minecraft/world/level/storage/LevelStorageSource$LevelStorageAccess;Lnet/minecraft/server/packs/repository/PackRepository;Lnet/minecraft/server/WorldStem;Lnet/minecraft/server/Services;Lnet/minecraft/server/level/progress/ChunkProgressListenerFactory;)V +MD: net/minecraft/client/server/IntegratedServer/m_120046_ (Ljava/util/UUID;)V net/minecraft/client/server/IntegratedServer/setUUID (Ljava/util/UUID;)V +MD: net/minecraft/client/server/IntegratedServer/m_142359_ ()Lnet/minecraft/world/level/GameType; net/minecraft/client/server/IntegratedServer/getForcedGameType ()Lnet/minecraft/world/level/GameType; +MD: net/minecraft/client/server/IntegratedServer/m_142424_ (Lnet/minecraft/SystemReport;)Lnet/minecraft/SystemReport; net/minecraft/client/server/IntegratedServer/fillServerSystemReport (Lnet/minecraft/SystemReport;)Lnet/minecraft/SystemReport; +MD: net/minecraft/client/server/IntegratedServer/m_174968_ ()V net/minecraft/client/server/IntegratedServer/tickPaused ()V +MD: net/minecraft/client/server/IntegratedServer/m_183471_ ()Lnet/minecraft/util/ModCheck; net/minecraft/client/server/IntegratedServer/getModdedStatus ()Lnet/minecraft/util/ModCheck; +MD: net/minecraft/client/server/IntegratedServer/m_235256_ ()Ljava/lang/String; net/minecraft/client/server/IntegratedServer/lambda$fillServerSystemReport$0 ()Ljava/lang/String; +MD: net/minecraft/client/server/IntegratedServer/m_263547_ (Lnet/minecraft/world/entity/player/ProfileKeyPair;)V net/minecraft/client/server/IntegratedServer/lambda$publishServer$1 (Lnet/minecraft/world/entity/player/ProfileKeyPair;)V +MD: net/minecraft/client/server/IntegratedServer/m_263548_ (Ljava/util/Optional;)V net/minecraft/client/server/IntegratedServer/lambda$publishServer$2 (Ljava/util/Optional;)V +MD: net/minecraft/client/server/IntegratedServer/m_289054_ ()V net/minecraft/client/server/IntegratedServer/lambda$halt$3 ()V +MD: net/minecraft/client/server/IntegratedServer/m_5705_ (Ljava/util/function/BooleanSupplier;)V net/minecraft/client/server/IntegratedServer/tickServer (Ljava/util/function/BooleanSupplier;)V +MD: net/minecraft/client/server/IntegratedServer/m_6102_ ()Z net/minecraft/client/server/IntegratedServer/shouldInformAdmins ()Z +MD: net/minecraft/client/server/IntegratedServer/m_6237_ ()Ljava/io/File; net/minecraft/client/server/IntegratedServer/getServerDirectory ()Ljava/io/File; +MD: net/minecraft/client/server/IntegratedServer/m_6365_ ()Z net/minecraft/client/server/IntegratedServer/forceSynchronousWrites ()Z +MD: net/minecraft/client/server/IntegratedServer/m_6982_ ()Z net/minecraft/client/server/IntegratedServer/isDedicatedServer ()Z +MD: net/minecraft/client/server/IntegratedServer/m_6983_ ()Z net/minecraft/client/server/IntegratedServer/shouldRconBroadcast ()Z +MD: net/minecraft/client/server/IntegratedServer/m_6992_ ()Z net/minecraft/client/server/IntegratedServer/isPublished ()Z +MD: net/minecraft/client/server/IntegratedServer/m_6993_ ()Z net/minecraft/client/server/IntegratedServer/isCommandBlockEnabled ()Z +MD: net/minecraft/client/server/IntegratedServer/m_6994_ ()Z net/minecraft/client/server/IntegratedServer/isEpollEnabled ()Z +MD: net/minecraft/client/server/IntegratedServer/m_7010_ ()I net/minecraft/client/server/IntegratedServer/getPort ()I +MD: net/minecraft/client/server/IntegratedServer/m_7022_ ()I net/minecraft/client/server/IntegratedServer/getOperatorUserPermissionLevel ()I +MD: net/minecraft/client/server/IntegratedServer/m_7032_ ()I net/minecraft/client/server/IntegratedServer/getRateLimitPacketsPerSecond ()I +MD: net/minecraft/client/server/IntegratedServer/m_7034_ ()I net/minecraft/client/server/IntegratedServer/getFunctionCompilationLevel ()I +MD: net/minecraft/client/server/IntegratedServer/m_7038_ ()Z net/minecraft/client/server/IntegratedServer/initServer ()Z +MD: net/minecraft/client/server/IntegratedServer/m_7041_ ()V net/minecraft/client/server/IntegratedServer/stopServer ()V +MD: net/minecraft/client/server/IntegratedServer/m_7186_ (I)I net/minecraft/client/server/IntegratedServer/getScaledTrackingDistance (I)I +MD: net/minecraft/client/server/IntegratedServer/m_7268_ (Lnet/minecraft/CrashReport;)V net/minecraft/client/server/IntegratedServer/onServerCrash (Lnet/minecraft/CrashReport;)V +MD: net/minecraft/client/server/IntegratedServer/m_7386_ (Lnet/minecraft/world/level/GameType;ZI)Z net/minecraft/client/server/IntegratedServer/publishServer (Lnet/minecraft/world/level/GameType;ZI)Z +MD: net/minecraft/client/server/IntegratedServer/m_7570_ (Z)V net/minecraft/client/server/IntegratedServer/halt (Z)V +MD: net/minecraft/client/server/IntegratedServer/m_7779_ (Lcom/mojang/authlib/GameProfile;)Z net/minecraft/client/server/IntegratedServer/isSingleplayerOwner (Lcom/mojang/authlib/GameProfile;)Z +MD: net/minecraft/client/server/IntegratedServer/m_7835_ (Lnet/minecraft/world/level/GameType;)V net/minecraft/client/server/IntegratedServer/setDefaultGameType (Lnet/minecraft/world/level/GameType;)V +MD: net/minecraft/client/server/LanServer/ (Ljava/lang/String;Ljava/lang/String;)V net/minecraft/client/server/LanServer/ (Ljava/lang/String;Ljava/lang/String;)V +MD: net/minecraft/client/server/LanServer/m_120078_ ()Ljava/lang/String; net/minecraft/client/server/LanServer/getMotd ()Ljava/lang/String; +MD: net/minecraft/client/server/LanServer/m_120079_ ()Ljava/lang/String; net/minecraft/client/server/LanServer/getAddress ()Ljava/lang/String; +MD: net/minecraft/client/server/LanServer/m_120080_ ()V net/minecraft/client/server/LanServer/updatePingTime ()V +MD: net/minecraft/client/server/LanServerDetection/ ()V net/minecraft/client/server/LanServerDetection/ ()V +MD: net/minecraft/client/server/LanServerDetection/ ()V net/minecraft/client/server/LanServerDetection/ ()V +MD: net/minecraft/client/server/LanServerDetection$LanServerDetector/ (Lnet/minecraft/client/server/LanServerDetection$LanServerList;)V net/minecraft/client/server/LanServerDetection$LanServerDetector/ (Lnet/minecraft/client/server/LanServerDetection$LanServerList;)V +MD: net/minecraft/client/server/LanServerDetection$LanServerDetector/run ()V net/minecraft/client/server/LanServerDetection$LanServerDetector/run ()V +MD: net/minecraft/client/server/LanServerDetection$LanServerList/ ()V net/minecraft/client/server/LanServerDetection$LanServerList/ ()V +MD: net/minecraft/client/server/LanServerDetection$LanServerList/m_120096_ (Ljava/lang/String;Ljava/net/InetAddress;)V net/minecraft/client/server/LanServerDetection$LanServerList/addServer (Ljava/lang/String;Ljava/net/InetAddress;)V +MD: net/minecraft/client/server/LanServerDetection$LanServerList/m_247578_ ()Ljava/util/List; net/minecraft/client/server/LanServerDetection$LanServerList/takeDirtyServers ()Ljava/util/List; +MD: net/minecraft/client/server/LanServerPinger/ ()V net/minecraft/client/server/LanServerPinger/ ()V +MD: net/minecraft/client/server/LanServerPinger/ (Ljava/lang/String;Ljava/lang/String;)V net/minecraft/client/server/LanServerPinger/ (Ljava/lang/String;Ljava/lang/String;)V +MD: net/minecraft/client/server/LanServerPinger/interrupt ()V net/minecraft/client/server/LanServerPinger/interrupt ()V +MD: net/minecraft/client/server/LanServerPinger/m_120111_ (Ljava/lang/String;)Ljava/lang/String; net/minecraft/client/server/LanServerPinger/parseMotd (Ljava/lang/String;)Ljava/lang/String; +MD: net/minecraft/client/server/LanServerPinger/m_120113_ (Ljava/lang/String;Ljava/lang/String;)Ljava/lang/String; net/minecraft/client/server/LanServerPinger/createPingString (Ljava/lang/String;Ljava/lang/String;)Ljava/lang/String; +MD: net/minecraft/client/server/LanServerPinger/m_120116_ (Ljava/lang/String;)Ljava/lang/String; net/minecraft/client/server/LanServerPinger/parseAddress (Ljava/lang/String;)Ljava/lang/String; +MD: net/minecraft/client/server/LanServerPinger/run ()V net/minecraft/client/server/LanServerPinger/run ()V +MD: net/minecraft/client/sounds/AudioStream/m_6206_ ()Ljavax/sound/sampled/AudioFormat; net/minecraft/client/sounds/AudioStream/getFormat ()Ljavax/sound/sampled/AudioFormat; +MD: net/minecraft/client/sounds/AudioStream/m_7118_ (I)Ljava/nio/ByteBuffer; net/minecraft/client/sounds/AudioStream/read (I)Ljava/nio/ByteBuffer; +MD: net/minecraft/client/sounds/ChannelAccess/ (Lcom/mojang/blaze3d/audio/Library;Ljava/util/concurrent/Executor;)V net/minecraft/client/sounds/ChannelAccess/ (Lcom/mojang/blaze3d/audio/Library;Ljava/util/concurrent/Executor;)V +MD: net/minecraft/client/sounds/ChannelAccess/m_120127_ ()V net/minecraft/client/sounds/ChannelAccess/scheduleTick ()V +MD: net/minecraft/client/sounds/ChannelAccess/m_120128_ (Lcom/mojang/blaze3d/audio/Library$Pool;)Ljava/util/concurrent/CompletableFuture; net/minecraft/client/sounds/ChannelAccess/createHandle (Lcom/mojang/blaze3d/audio/Library$Pool;)Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/client/sounds/ChannelAccess/m_120130_ (Lcom/mojang/blaze3d/audio/Library$Pool;Ljava/util/concurrent/CompletableFuture;)V net/minecraft/client/sounds/ChannelAccess/lambda$createHandle$0 (Lcom/mojang/blaze3d/audio/Library$Pool;Ljava/util/concurrent/CompletableFuture;)V +MD: net/minecraft/client/sounds/ChannelAccess/m_120137_ (Ljava/util/function/Consumer;)V net/minecraft/client/sounds/ChannelAccess/executeOnChannels (Ljava/util/function/Consumer;)V +MD: net/minecraft/client/sounds/ChannelAccess/m_120139_ ()V net/minecraft/client/sounds/ChannelAccess/clear ()V +MD: net/minecraft/client/sounds/ChannelAccess/m_120142_ (Ljava/util/function/Consumer;)V net/minecraft/client/sounds/ChannelAccess/lambda$executeOnChannels$2 (Ljava/util/function/Consumer;)V +MD: net/minecraft/client/sounds/ChannelAccess/m_120144_ ()V net/minecraft/client/sounds/ChannelAccess/lambda$scheduleTick$3 ()V +MD: net/minecraft/client/sounds/ChannelAccess/m_174977_ (Lnet/minecraft/client/sounds/ChannelAccess$ChannelHandle;)Lcom/mojang/blaze3d/audio/Channel; net/minecraft/client/sounds/ChannelAccess/lambda$executeOnChannels$1 (Lnet/minecraft/client/sounds/ChannelAccess$ChannelHandle;)Lcom/mojang/blaze3d/audio/Channel; +MD: net/minecraft/client/sounds/ChannelAccess$ChannelHandle/ (Lnet/minecraft/client/sounds/ChannelAccess;Lcom/mojang/blaze3d/audio/Channel;)V net/minecraft/client/sounds/ChannelAccess$ChannelHandle/ (Lnet/minecraft/client/sounds/ChannelAccess;Lcom/mojang/blaze3d/audio/Channel;)V +MD: net/minecraft/client/sounds/ChannelAccess$ChannelHandle/m_120151_ ()Z net/minecraft/client/sounds/ChannelAccess$ChannelHandle/isStopped ()Z +MD: net/minecraft/client/sounds/ChannelAccess$ChannelHandle/m_120154_ (Ljava/util/function/Consumer;)V net/minecraft/client/sounds/ChannelAccess$ChannelHandle/execute (Ljava/util/function/Consumer;)V +MD: net/minecraft/client/sounds/ChannelAccess$ChannelHandle/m_120156_ ()V net/minecraft/client/sounds/ChannelAccess$ChannelHandle/release ()V +MD: net/minecraft/client/sounds/ChannelAccess$ChannelHandle/m_120157_ (Ljava/util/function/Consumer;)V net/minecraft/client/sounds/ChannelAccess$ChannelHandle/lambda$execute$0 (Ljava/util/function/Consumer;)V +MD: net/minecraft/client/sounds/LoopingAudioStream/ (Lnet/minecraft/client/sounds/LoopingAudioStream$AudioStreamProvider;Ljava/io/InputStream;)V net/minecraft/client/sounds/LoopingAudioStream/ (Lnet/minecraft/client/sounds/LoopingAudioStream$AudioStreamProvider;Ljava/io/InputStream;)V +MD: net/minecraft/client/sounds/LoopingAudioStream/close ()V net/minecraft/client/sounds/LoopingAudioStream/close ()V +MD: net/minecraft/client/sounds/LoopingAudioStream/m_6206_ ()Ljavax/sound/sampled/AudioFormat; net/minecraft/client/sounds/LoopingAudioStream/getFormat ()Ljavax/sound/sampled/AudioFormat; +MD: net/minecraft/client/sounds/LoopingAudioStream/m_7118_ (I)Ljava/nio/ByteBuffer; net/minecraft/client/sounds/LoopingAudioStream/read (I)Ljava/nio/ByteBuffer; +MD: net/minecraft/client/sounds/LoopingAudioStream$AudioStreamProvider/m_120169_ (Ljava/io/InputStream;)Lnet/minecraft/client/sounds/AudioStream; net/minecraft/client/sounds/LoopingAudioStream$AudioStreamProvider/create (Ljava/io/InputStream;)Lnet/minecraft/client/sounds/AudioStream; +MD: net/minecraft/client/sounds/LoopingAudioStream$NoCloseBuffer/ (Ljava/io/InputStream;)V net/minecraft/client/sounds/LoopingAudioStream$NoCloseBuffer/ (Ljava/io/InputStream;)V +MD: net/minecraft/client/sounds/LoopingAudioStream$NoCloseBuffer/close ()V net/minecraft/client/sounds/LoopingAudioStream$NoCloseBuffer/close ()V +MD: net/minecraft/client/sounds/MusicManager/ (Lnet/minecraft/client/Minecraft;)V net/minecraft/client/sounds/MusicManager/ (Lnet/minecraft/client/Minecraft;)V +MD: net/minecraft/client/sounds/MusicManager/m_120183_ ()V net/minecraft/client/sounds/MusicManager/tick ()V +MD: net/minecraft/client/sounds/MusicManager/m_120184_ (Lnet/minecraft/sounds/Music;)V net/minecraft/client/sounds/MusicManager/startPlaying (Lnet/minecraft/sounds/Music;)V +MD: net/minecraft/client/sounds/MusicManager/m_120186_ ()V net/minecraft/client/sounds/MusicManager/stopPlaying ()V +MD: net/minecraft/client/sounds/MusicManager/m_120187_ (Lnet/minecraft/sounds/Music;)Z net/minecraft/client/sounds/MusicManager/isPlayingMusic (Lnet/minecraft/sounds/Music;)Z +MD: net/minecraft/client/sounds/MusicManager/m_278151_ (Lnet/minecraft/sounds/Music;)V net/minecraft/client/sounds/MusicManager/stopPlaying (Lnet/minecraft/sounds/Music;)V +MD: net/minecraft/client/sounds/SoundBufferLibrary/ (Lnet/minecraft/server/packs/resources/ResourceProvider;)V net/minecraft/client/sounds/SoundBufferLibrary/ (Lnet/minecraft/server/packs/resources/ResourceProvider;)V +MD: net/minecraft/client/sounds/SoundBufferLibrary/m_120193_ ()V net/minecraft/client/sounds/SoundBufferLibrary/clear ()V +MD: net/minecraft/client/sounds/SoundBufferLibrary/m_120194_ (I)[Ljava/util/concurrent/CompletableFuture; net/minecraft/client/sounds/SoundBufferLibrary/lambda$preload$5 (I)[Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/client/sounds/SoundBufferLibrary/m_120196_ (Lnet/minecraft/client/resources/sounds/Sound;)Ljava/util/concurrent/CompletableFuture; net/minecraft/client/sounds/SoundBufferLibrary/lambda$preload$4 (Lnet/minecraft/client/resources/sounds/Sound;)Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/client/sounds/SoundBufferLibrary/m_120198_ (Ljava/util/Collection;)Ljava/util/concurrent/CompletableFuture; net/minecraft/client/sounds/SoundBufferLibrary/preload (Ljava/util/Collection;)Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/client/sounds/SoundBufferLibrary/m_120200_ (Ljava/util/concurrent/CompletableFuture;)V net/minecraft/client/sounds/SoundBufferLibrary/lambda$clear$3 (Ljava/util/concurrent/CompletableFuture;)V +MD: net/minecraft/client/sounds/SoundBufferLibrary/m_120202_ (Lnet/minecraft/resources/ResourceLocation;)Ljava/util/concurrent/CompletableFuture; net/minecraft/client/sounds/SoundBufferLibrary/getCompleteBuffer (Lnet/minecraft/resources/ResourceLocation;)Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/client/sounds/SoundBufferLibrary/m_120204_ (Lnet/minecraft/resources/ResourceLocation;Z)Ljava/util/concurrent/CompletableFuture; net/minecraft/client/sounds/SoundBufferLibrary/getStream (Lnet/minecraft/resources/ResourceLocation;Z)Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/client/sounds/SoundBufferLibrary/m_120207_ (Lnet/minecraft/resources/ResourceLocation;)Ljava/util/concurrent/CompletableFuture; net/minecraft/client/sounds/SoundBufferLibrary/lambda$getCompleteBuffer$1 (Lnet/minecraft/resources/ResourceLocation;)Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/client/sounds/SoundBufferLibrary/m_174980_ (Lnet/minecraft/resources/ResourceLocation;)Lcom/mojang/blaze3d/audio/SoundBuffer; net/minecraft/client/sounds/SoundBufferLibrary/lambda$getCompleteBuffer$0 (Lnet/minecraft/resources/ResourceLocation;)Lcom/mojang/blaze3d/audio/SoundBuffer; +MD: net/minecraft/client/sounds/SoundBufferLibrary/m_244746_ (Lnet/minecraft/resources/ResourceLocation;Z)Lnet/minecraft/client/sounds/AudioStream; net/minecraft/client/sounds/SoundBufferLibrary/lambda$getStream$2 (Lnet/minecraft/resources/ResourceLocation;Z)Lnet/minecraft/client/sounds/AudioStream; +MD: net/minecraft/client/sounds/SoundEngine/ ()V net/minecraft/client/sounds/SoundEngine/ ()V +MD: net/minecraft/client/sounds/SoundEngine/ (Lnet/minecraft/client/sounds/SoundManager;Lnet/minecraft/client/Options;Lnet/minecraft/server/packs/resources/ResourceProvider;)V net/minecraft/client/sounds/SoundEngine/ (Lnet/minecraft/client/sounds/SoundManager;Lnet/minecraft/client/Options;Lnet/minecraft/server/packs/resources/ResourceProvider;)V +MD: net/minecraft/client/sounds/SoundEngine/m_120239_ ()V net/minecraft/client/sounds/SoundEngine/reload ()V +MD: net/minecraft/client/sounds/SoundEngine/m_120258_ (Lnet/minecraft/sounds/SoundSource;)F net/minecraft/client/sounds/SoundEngine/getVolume (Lnet/minecraft/sounds/SoundSource;)F +MD: net/minecraft/client/sounds/SoundEngine/m_120260_ (Lnet/minecraft/sounds/SoundSource;F)V net/minecraft/client/sounds/SoundEngine/updateCategoryVolume (Lnet/minecraft/sounds/SoundSource;F)V +MD: net/minecraft/client/sounds/SoundEngine/m_120270_ (Lnet/minecraft/client/Camera;)V net/minecraft/client/sounds/SoundEngine/updateSource (Lnet/minecraft/client/Camera;)V +MD: net/minecraft/client/sounds/SoundEngine/m_120272_ (Lnet/minecraft/client/resources/sounds/Sound;)V net/minecraft/client/sounds/SoundEngine/requestPreload (Lnet/minecraft/client/resources/sounds/Sound;)V +MD: net/minecraft/client/sounds/SoundEngine/m_120274_ (Lnet/minecraft/client/resources/sounds/SoundInstance;)V net/minecraft/client/sounds/SoundEngine/stop (Lnet/minecraft/client/resources/sounds/SoundInstance;)V +MD: net/minecraft/client/sounds/SoundEngine/m_120276_ (Lnet/minecraft/client/resources/sounds/SoundInstance;I)V net/minecraft/client/sounds/SoundEngine/playDelayed (Lnet/minecraft/client/resources/sounds/SoundInstance;I)V +MD: net/minecraft/client/sounds/SoundEngine/m_120279_ (Lnet/minecraft/client/resources/sounds/SoundInstance;Lnet/minecraft/client/sounds/ChannelAccess$ChannelHandle;)V net/minecraft/client/sounds/SoundEngine/lambda$updateCategoryVolume$1 (Lnet/minecraft/client/resources/sounds/SoundInstance;Lnet/minecraft/client/sounds/ChannelAccess$ChannelHandle;)V +MD: net/minecraft/client/sounds/SoundEngine/m_120282_ (Lnet/minecraft/client/resources/sounds/TickableSoundInstance;)V net/minecraft/client/sounds/SoundEngine/queueTickingSound (Lnet/minecraft/client/resources/sounds/TickableSoundInstance;)V +MD: net/minecraft/client/sounds/SoundEngine/m_120287_ (Lnet/minecraft/client/sounds/ChannelAccess$ChannelHandle;)V net/minecraft/client/sounds/SoundEngine/lambda$stopAll$2 (Lnet/minecraft/client/sounds/ChannelAccess$ChannelHandle;)V +MD: net/minecraft/client/sounds/SoundEngine/m_120295_ (Lnet/minecraft/client/sounds/SoundEventListener;)V net/minecraft/client/sounds/SoundEngine/addEventListener (Lnet/minecraft/client/sounds/SoundEventListener;)V +MD: net/minecraft/client/sounds/SoundEngine/m_120299_ (Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/sounds/SoundSource;)V net/minecraft/client/sounds/SoundEngine/stop (Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/sounds/SoundSource;)V +MD: net/minecraft/client/sounds/SoundEngine/m_120302_ (Z)V net/minecraft/client/sounds/SoundEngine/tick (Z)V +MD: net/minecraft/client/sounds/SoundEngine/m_120304_ ()V net/minecraft/client/sounds/SoundEngine/destroy ()V +MD: net/minecraft/client/sounds/SoundEngine/m_120305_ (Lnet/minecraft/client/resources/sounds/SoundInstance;)Z net/minecraft/client/sounds/SoundEngine/isActive (Lnet/minecraft/client/resources/sounds/SoundInstance;)Z +MD: net/minecraft/client/sounds/SoundEngine/m_120307_ (Lnet/minecraft/client/sounds/SoundEventListener;)V net/minecraft/client/sounds/SoundEngine/removeEventListener (Lnet/minecraft/client/sounds/SoundEventListener;)V +MD: net/minecraft/client/sounds/SoundEngine/m_120311_ ()V net/minecraft/client/sounds/SoundEngine/stopAll ()V +MD: net/minecraft/client/sounds/SoundEngine/m_120312_ (Lnet/minecraft/client/resources/sounds/SoundInstance;)V net/minecraft/client/sounds/SoundEngine/play (Lnet/minecraft/client/resources/sounds/SoundInstance;)V +MD: net/minecraft/client/sounds/SoundEngine/m_120314_ ()V net/minecraft/client/sounds/SoundEngine/pause ()V +MD: net/minecraft/client/sounds/SoundEngine/m_120315_ (Lnet/minecraft/client/resources/sounds/SoundInstance;)Z net/minecraft/client/sounds/SoundEngine/requiresManualLooping (Lnet/minecraft/client/resources/sounds/SoundInstance;)Z +MD: net/minecraft/client/sounds/SoundEngine/m_120317_ ()V net/minecraft/client/sounds/SoundEngine/resume ()V +MD: net/minecraft/client/sounds/SoundEngine/m_120318_ (Lnet/minecraft/client/resources/sounds/SoundInstance;)Z net/minecraft/client/sounds/SoundEngine/shouldLoopManually (Lnet/minecraft/client/resources/sounds/SoundInstance;)Z +MD: net/minecraft/client/sounds/SoundEngine/m_120320_ ()Ljava/lang/String; net/minecraft/client/sounds/SoundEngine/getDebugString ()Ljava/lang/String; +MD: net/minecraft/client/sounds/SoundEngine/m_120321_ (Lnet/minecraft/client/resources/sounds/SoundInstance;)Z net/minecraft/client/sounds/SoundEngine/shouldLoopAutomatically (Lnet/minecraft/client/resources/sounds/SoundInstance;)Z +MD: net/minecraft/client/sounds/SoundEngine/m_120323_ ()V net/minecraft/client/sounds/SoundEngine/loadLibrary ()V +MD: net/minecraft/client/sounds/SoundEngine/m_120324_ (Lnet/minecraft/client/resources/sounds/SoundInstance;)F net/minecraft/client/sounds/SoundEngine/calculatePitch (Lnet/minecraft/client/resources/sounds/SoundInstance;)F +MD: net/minecraft/client/sounds/SoundEngine/m_120326_ ()V net/minecraft/client/sounds/SoundEngine/tickNonPaused ()V +MD: net/minecraft/client/sounds/SoundEngine/m_120327_ (Lnet/minecraft/client/resources/sounds/SoundInstance;)F net/minecraft/client/sounds/SoundEngine/calculateVolume (Lnet/minecraft/client/resources/sounds/SoundInstance;)F +MD: net/minecraft/client/sounds/SoundEngine/m_174988_ (FLcom/mojang/blaze3d/audio/Channel;)V net/minecraft/client/sounds/SoundEngine/lambda$updateCategoryVolume$0 (FLcom/mojang/blaze3d/audio/Channel;)V +MD: net/minecraft/client/sounds/SoundEngine/m_194474_ (FFLnet/minecraft/world/phys/Vec3;Lcom/mojang/blaze3d/audio/Channel;)V net/minecraft/client/sounds/SoundEngine/lambda$tickNonPaused$4 (FFLnet/minecraft/world/phys/Vec3;Lcom/mojang/blaze3d/audio/Channel;)V +MD: net/minecraft/client/sounds/SoundEngine/m_194479_ (FFLnet/minecraft/client/resources/sounds/SoundInstance$Attenuation;FZZLnet/minecraft/world/phys/Vec3;ZLcom/mojang/blaze3d/audio/Channel;)V net/minecraft/client/sounds/SoundEngine/lambda$play$5 (FFLnet/minecraft/client/resources/sounds/SoundInstance$Attenuation;FZZLnet/minecraft/world/phys/Vec3;ZLcom/mojang/blaze3d/audio/Channel;)V +MD: net/minecraft/client/sounds/SoundEngine/m_194493_ (Lcom/mojang/blaze3d/audio/SoundBuffer;Lcom/mojang/blaze3d/audio/Channel;)V net/minecraft/client/sounds/SoundEngine/lambda$play$6 (Lcom/mojang/blaze3d/audio/SoundBuffer;Lcom/mojang/blaze3d/audio/Channel;)V +MD: net/minecraft/client/sounds/SoundEngine/m_194496_ (Lnet/minecraft/client/sounds/AudioStream;Lcom/mojang/blaze3d/audio/Channel;)V net/minecraft/client/sounds/SoundEngine/lambda$play$8 (Lnet/minecraft/client/sounds/AudioStream;Lcom/mojang/blaze3d/audio/Channel;)V +MD: net/minecraft/client/sounds/SoundEngine/m_194499_ (Lnet/minecraft/client/sounds/ChannelAccess$ChannelHandle;Lcom/mojang/blaze3d/audio/SoundBuffer;)V net/minecraft/client/sounds/SoundEngine/lambda$play$7 (Lnet/minecraft/client/sounds/ChannelAccess$ChannelHandle;Lcom/mojang/blaze3d/audio/SoundBuffer;)V +MD: net/minecraft/client/sounds/SoundEngine/m_194502_ (Lnet/minecraft/client/sounds/ChannelAccess$ChannelHandle;Lnet/minecraft/client/sounds/AudioStream;)V net/minecraft/client/sounds/SoundEngine/lambda$play$9 (Lnet/minecraft/client/sounds/ChannelAccess$ChannelHandle;Lnet/minecraft/client/sounds/AudioStream;)V +MD: net/minecraft/client/sounds/SoundEngine/m_194505_ (Ljava/lang/String;)V net/minecraft/client/sounds/SoundEngine/lambda$shouldChangeDevice$3 (Ljava/lang/String;)V +MD: net/minecraft/client/sounds/SoundEngine/m_194507_ (Ljava/util/stream/Stream;)V net/minecraft/client/sounds/SoundEngine/lambda$resume$11 (Ljava/util/stream/Stream;)V +MD: net/minecraft/client/sounds/SoundEngine/m_194509_ (Ljava/util/stream/Stream;)V net/minecraft/client/sounds/SoundEngine/lambda$pause$10 (Ljava/util/stream/Stream;)V +MD: net/minecraft/client/sounds/SoundEngine/m_194511_ ()Ljava/util/List; net/minecraft/client/sounds/SoundEngine/getAvailableSoundDevices ()Ljava/util/List; +MD: net/minecraft/client/sounds/SoundEngine/m_194512_ ()Z net/minecraft/client/sounds/SoundEngine/shouldChangeDevice ()Z +MD: net/minecraft/client/sounds/SoundEngine/m_235257_ (FLnet/minecraft/sounds/SoundSource;)F net/minecraft/client/sounds/SoundEngine/calculateVolume (FLnet/minecraft/sounds/SoundSource;)F +MD: net/minecraft/client/sounds/SoundEngine/m_252595_ (Lnet/minecraft/world/phys/Vec3;Lorg/joml/Vector3f;Lorg/joml/Vector3f;)V net/minecraft/client/sounds/SoundEngine/lambda$updateSource$12 (Lnet/minecraft/world/phys/Vec3;Lorg/joml/Vector3f;Lorg/joml/Vector3f;)V +MD: net/minecraft/client/sounds/SoundEngine$DeviceCheckState/ ()V net/minecraft/client/sounds/SoundEngine$DeviceCheckState/ ()V +MD: net/minecraft/client/sounds/SoundEngine$DeviceCheckState/ (Ljava/lang/String;I)V net/minecraft/client/sounds/SoundEngine$DeviceCheckState/ (Ljava/lang/String;I)V +MD: net/minecraft/client/sounds/SoundEngine$DeviceCheckState/m_194521_ ()[Lnet/minecraft/client/sounds/SoundEngine$DeviceCheckState; net/minecraft/client/sounds/SoundEngine$DeviceCheckState/$values ()[Lnet/minecraft/client/sounds/SoundEngine$DeviceCheckState; +MD: net/minecraft/client/sounds/SoundEngine$DeviceCheckState/valueOf (Ljava/lang/String;)Lnet/minecraft/client/sounds/SoundEngine$DeviceCheckState; net/minecraft/client/sounds/SoundEngine$DeviceCheckState/valueOf (Ljava/lang/String;)Lnet/minecraft/client/sounds/SoundEngine$DeviceCheckState; +MD: net/minecraft/client/sounds/SoundEngine$DeviceCheckState/values ()[Lnet/minecraft/client/sounds/SoundEngine$DeviceCheckState; net/minecraft/client/sounds/SoundEngine$DeviceCheckState/values ()[Lnet/minecraft/client/sounds/SoundEngine$DeviceCheckState; +MD: net/minecraft/client/sounds/SoundEngineExecutor/ ()V net/minecraft/client/sounds/SoundEngineExecutor/ ()V +MD: net/minecraft/client/sounds/SoundEngineExecutor/m_120332_ ()V net/minecraft/client/sounds/SoundEngineExecutor/flush ()V +MD: net/minecraft/client/sounds/SoundEngineExecutor/m_120334_ ()Ljava/lang/Thread; net/minecraft/client/sounds/SoundEngineExecutor/createThread ()Ljava/lang/Thread; +MD: net/minecraft/client/sounds/SoundEngineExecutor/m_120336_ ()V net/minecraft/client/sounds/SoundEngineExecutor/run ()V +MD: net/minecraft/client/sounds/SoundEngineExecutor/m_120337_ ()Z net/minecraft/client/sounds/SoundEngineExecutor/lambda$run$0 ()Z +MD: net/minecraft/client/sounds/SoundEngineExecutor/m_5667_ ()V net/minecraft/client/sounds/SoundEngineExecutor/waitForTasks ()V +MD: net/minecraft/client/sounds/SoundEngineExecutor/m_6304_ ()Ljava/lang/Thread; net/minecraft/client/sounds/SoundEngineExecutor/getRunningThread ()Ljava/lang/Thread; +MD: net/minecraft/client/sounds/SoundEngineExecutor/m_6362_ (Ljava/lang/Runnable;)Z net/minecraft/client/sounds/SoundEngineExecutor/shouldRun (Ljava/lang/Runnable;)Z +MD: net/minecraft/client/sounds/SoundEngineExecutor/m_6681_ (Ljava/lang/Runnable;)Ljava/lang/Runnable; net/minecraft/client/sounds/SoundEngineExecutor/wrapRunnable (Ljava/lang/Runnable;)Ljava/lang/Runnable; +MD: net/minecraft/client/sounds/SoundEventListener/m_6985_ (Lnet/minecraft/client/resources/sounds/SoundInstance;Lnet/minecraft/client/sounds/WeighedSoundEvents;)V net/minecraft/client/sounds/SoundEventListener/onPlaySound (Lnet/minecraft/client/resources/sounds/SoundInstance;Lnet/minecraft/client/sounds/WeighedSoundEvents;)V +MD: net/minecraft/client/sounds/SoundManager/ ()V net/minecraft/client/sounds/SoundManager/ ()V +MD: net/minecraft/client/sounds/SoundManager/ (Lnet/minecraft/client/Options;)V net/minecraft/client/sounds/SoundManager/ (Lnet/minecraft/client/Options;)V +MD: net/minecraft/client/sounds/SoundManager/m_120354_ ()Ljava/util/Collection; net/minecraft/client/sounds/SoundManager/getAvailableSounds ()Ljava/util/Collection; +MD: net/minecraft/client/sounds/SoundManager/m_120358_ (Lnet/minecraft/sounds/SoundSource;F)V net/minecraft/client/sounds/SoundManager/updateSourceVolume (Lnet/minecraft/sounds/SoundSource;F)V +MD: net/minecraft/client/sounds/SoundManager/m_120361_ (Lnet/minecraft/client/Camera;)V net/minecraft/client/sounds/SoundManager/updateSource (Lnet/minecraft/client/Camera;)V +MD: net/minecraft/client/sounds/SoundManager/m_120367_ (Lnet/minecraft/client/resources/sounds/SoundInstance;)V net/minecraft/client/sounds/SoundManager/play (Lnet/minecraft/client/resources/sounds/SoundInstance;)V +MD: net/minecraft/client/sounds/SoundManager/m_120369_ (Lnet/minecraft/client/resources/sounds/SoundInstance;I)V net/minecraft/client/sounds/SoundManager/playDelayed (Lnet/minecraft/client/resources/sounds/SoundInstance;I)V +MD: net/minecraft/client/sounds/SoundManager/m_120372_ (Lnet/minecraft/client/resources/sounds/TickableSoundInstance;)V net/minecraft/client/sounds/SoundManager/queueTickingSound (Lnet/minecraft/client/resources/sounds/TickableSoundInstance;)V +MD: net/minecraft/client/sounds/SoundManager/m_120374_ (Lnet/minecraft/client/sounds/SoundEventListener;)V net/minecraft/client/sounds/SoundManager/addListener (Lnet/minecraft/client/sounds/SoundEventListener;)V +MD: net/minecraft/client/sounds/SoundManager/m_120384_ (Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/client/sounds/WeighedSoundEvents; net/minecraft/client/sounds/SoundManager/getSoundEvent (Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/client/sounds/WeighedSoundEvents; +MD: net/minecraft/client/sounds/SoundManager/m_120386_ (Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/sounds/SoundSource;)V net/minecraft/client/sounds/SoundManager/stop (Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/sounds/SoundSource;)V +MD: net/minecraft/client/sounds/SoundManager/m_120389_ (Z)V net/minecraft/client/sounds/SoundManager/tick (Z)V +MD: net/minecraft/client/sounds/SoundManager/m_120391_ ()V net/minecraft/client/sounds/SoundManager/pause ()V +MD: net/minecraft/client/sounds/SoundManager/m_120399_ (Lnet/minecraft/client/resources/sounds/SoundInstance;)V net/minecraft/client/sounds/SoundManager/stop (Lnet/minecraft/client/resources/sounds/SoundInstance;)V +MD: net/minecraft/client/sounds/SoundManager/m_120401_ (Lnet/minecraft/client/sounds/SoundEventListener;)V net/minecraft/client/sounds/SoundManager/removeListener (Lnet/minecraft/client/sounds/SoundEventListener;)V +MD: net/minecraft/client/sounds/SoundManager/m_120403_ (Lnet/minecraft/client/resources/sounds/SoundInstance;)Z net/minecraft/client/sounds/SoundManager/isActive (Lnet/minecraft/client/resources/sounds/SoundInstance;)Z +MD: net/minecraft/client/sounds/SoundManager/m_120405_ ()V net/minecraft/client/sounds/SoundManager/stop ()V +MD: net/minecraft/client/sounds/SoundManager/m_120406_ ()V net/minecraft/client/sounds/SoundManager/destroy ()V +MD: net/minecraft/client/sounds/SoundManager/m_120407_ ()V net/minecraft/client/sounds/SoundManager/resume ()V +MD: net/minecraft/client/sounds/SoundManager/m_120408_ ()Ljava/lang/String; net/minecraft/client/sounds/SoundManager/getDebugString ()Ljava/lang/String; +MD: net/minecraft/client/sounds/SoundManager/m_194525_ ()Ljava/util/List; net/minecraft/client/sounds/SoundManager/getAvailableSoundDevices ()Ljava/util/List; +MD: net/minecraft/client/sounds/SoundManager/m_194526_ ()V net/minecraft/client/sounds/SoundManager/reload ()V +MD: net/minecraft/client/sounds/SoundManager/m_247403_ (Lnet/minecraft/client/resources/sounds/Sound;Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/server/packs/resources/ResourceProvider;)Z net/minecraft/client/sounds/SoundManager/validateSoundResource (Lnet/minecraft/client/resources/sounds/Sound;Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/server/packs/resources/ResourceProvider;)Z +MD: net/minecraft/client/sounds/SoundManager/m_5787_ (Lnet/minecraft/client/sounds/SoundManager$Preparations;Lnet/minecraft/server/packs/resources/ResourceManager;Lnet/minecraft/util/profiling/ProfilerFiller;)V net/minecraft/client/sounds/SoundManager/apply (Lnet/minecraft/client/sounds/SoundManager$Preparations;Lnet/minecraft/server/packs/resources/ResourceManager;Lnet/minecraft/util/profiling/ProfilerFiller;)V +MD: net/minecraft/client/sounds/SoundManager/m_5787_ (Ljava/lang/Object;Lnet/minecraft/server/packs/resources/ResourceManager;Lnet/minecraft/util/profiling/ProfilerFiller;)V net/minecraft/client/sounds/SoundManager/apply (Ljava/lang/Object;Lnet/minecraft/server/packs/resources/ResourceManager;Lnet/minecraft/util/profiling/ProfilerFiller;)V +MD: net/minecraft/client/sounds/SoundManager/m_5944_ (Lnet/minecraft/server/packs/resources/ResourceManager;Lnet/minecraft/util/profiling/ProfilerFiller;)Ljava/lang/Object; net/minecraft/client/sounds/SoundManager/prepare (Lnet/minecraft/server/packs/resources/ResourceManager;Lnet/minecraft/util/profiling/ProfilerFiller;)Ljava/lang/Object; +MD: net/minecraft/client/sounds/SoundManager/m_5944_ (Lnet/minecraft/server/packs/resources/ResourceManager;Lnet/minecraft/util/profiling/ProfilerFiller;)Lnet/minecraft/client/sounds/SoundManager$Preparations; net/minecraft/client/sounds/SoundManager/prepare (Lnet/minecraft/server/packs/resources/ResourceManager;Lnet/minecraft/util/profiling/ProfilerFiller;)Lnet/minecraft/client/sounds/SoundManager$Preparations; +MD: net/minecraft/client/sounds/SoundManager$1/ ()V net/minecraft/client/sounds/SoundManager$1/ ()V +MD: net/minecraft/client/sounds/SoundManager$2/ ()V net/minecraft/client/sounds/SoundManager$2/ ()V +MD: net/minecraft/client/sounds/SoundManager$Preparations/ ()V net/minecraft/client/sounds/SoundManager$Preparations/ ()V +MD: net/minecraft/client/sounds/SoundManager$Preparations/m_245281_ (Lnet/minecraft/server/packs/resources/ResourceManager;)V net/minecraft/client/sounds/SoundManager$Preparations/listResources (Lnet/minecraft/server/packs/resources/ResourceManager;)V +MD: net/minecraft/client/sounds/SoundManager$Preparations/m_245937_ (Ljava/util/Map;Ljava/util/Map;Lnet/minecraft/client/sounds/SoundEngine;)V net/minecraft/client/sounds/SoundManager$Preparations/apply (Ljava/util/Map;Ljava/util/Map;Lnet/minecraft/client/sounds/SoundEngine;)V +MD: net/minecraft/client/sounds/SoundManager$Preparations/m_246105_ (Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/client/resources/sounds/SoundEventRegistration;)V net/minecraft/client/sounds/SoundManager$Preparations/handleRegistration (Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/client/resources/sounds/SoundEventRegistration;)V +MD: net/minecraft/client/sounds/SoundManager$Preparations$1/ (Lnet/minecraft/client/sounds/SoundManager$Preparations;Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/client/resources/sounds/Sound;)V net/minecraft/client/sounds/SoundManager$Preparations$1/ (Lnet/minecraft/client/sounds/SoundManager$Preparations;Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/client/resources/sounds/Sound;)V +MD: net/minecraft/client/sounds/SoundManager$Preparations$1/m_213718_ (Lnet/minecraft/util/RandomSource;)Lnet/minecraft/client/resources/sounds/Sound; net/minecraft/client/sounds/SoundManager$Preparations$1/getSound (Lnet/minecraft/util/RandomSource;)Lnet/minecraft/client/resources/sounds/Sound; +MD: net/minecraft/client/sounds/SoundManager$Preparations$1/m_213718_ (Lnet/minecraft/util/RandomSource;)Ljava/lang/Object; net/minecraft/client/sounds/SoundManager$Preparations$1/getSound (Lnet/minecraft/util/RandomSource;)Ljava/lang/Object; +MD: net/minecraft/client/sounds/SoundManager$Preparations$1/m_7789_ ()I net/minecraft/client/sounds/SoundManager$Preparations$1/getWeight ()I +MD: net/minecraft/client/sounds/SoundManager$Preparations$1/m_8054_ (Lnet/minecraft/client/sounds/SoundEngine;)V net/minecraft/client/sounds/SoundManager$Preparations$1/preloadIfRequired (Lnet/minecraft/client/sounds/SoundEngine;)V +MD: net/minecraft/client/sounds/WeighedSoundEvents/ (Lnet/minecraft/resources/ResourceLocation;Ljava/lang/String;)V net/minecraft/client/sounds/WeighedSoundEvents/ (Lnet/minecraft/resources/ResourceLocation;Ljava/lang/String;)V +MD: net/minecraft/client/sounds/WeighedSoundEvents/m_120451_ (Lnet/minecraft/client/sounds/Weighted;)V net/minecraft/client/sounds/WeighedSoundEvents/addSound (Lnet/minecraft/client/sounds/Weighted;)V +MD: net/minecraft/client/sounds/WeighedSoundEvents/m_120453_ ()Lnet/minecraft/network/chat/Component; net/minecraft/client/sounds/WeighedSoundEvents/getSubtitle ()Lnet/minecraft/network/chat/Component; +MD: net/minecraft/client/sounds/WeighedSoundEvents/m_213718_ (Lnet/minecraft/util/RandomSource;)Lnet/minecraft/client/resources/sounds/Sound; net/minecraft/client/sounds/WeighedSoundEvents/getSound (Lnet/minecraft/util/RandomSource;)Lnet/minecraft/client/resources/sounds/Sound; +MD: net/minecraft/client/sounds/WeighedSoundEvents/m_213718_ (Lnet/minecraft/util/RandomSource;)Ljava/lang/Object; net/minecraft/client/sounds/WeighedSoundEvents/getSound (Lnet/minecraft/util/RandomSource;)Ljava/lang/Object; +MD: net/minecraft/client/sounds/WeighedSoundEvents/m_7789_ ()I net/minecraft/client/sounds/WeighedSoundEvents/getWeight ()I +MD: net/minecraft/client/sounds/WeighedSoundEvents/m_8054_ (Lnet/minecraft/client/sounds/SoundEngine;)V net/minecraft/client/sounds/WeighedSoundEvents/preloadIfRequired (Lnet/minecraft/client/sounds/SoundEngine;)V +MD: net/minecraft/client/sounds/Weighted/m_213718_ (Lnet/minecraft/util/RandomSource;)Ljava/lang/Object; net/minecraft/client/sounds/Weighted/getSound (Lnet/minecraft/util/RandomSource;)Ljava/lang/Object; +MD: net/minecraft/client/sounds/Weighted/m_7789_ ()I net/minecraft/client/sounds/Weighted/getWeight ()I +MD: net/minecraft/client/sounds/Weighted/m_8054_ (Lnet/minecraft/client/sounds/SoundEngine;)V net/minecraft/client/sounds/Weighted/preloadIfRequired (Lnet/minecraft/client/sounds/SoundEngine;)V +MD: net/minecraft/client/telemetry/ClientTelemetryManager/ ()V net/minecraft/client/telemetry/ClientTelemetryManager/ ()V +MD: net/minecraft/client/telemetry/ClientTelemetryManager/ (Lnet/minecraft/client/Minecraft;Lcom/mojang/authlib/minecraft/UserApiService;Lnet/minecraft/client/User;)V net/minecraft/client/telemetry/ClientTelemetryManager/ (Lnet/minecraft/client/Minecraft;Lcom/mojang/authlib/minecraft/UserApiService;Lnet/minecraft/client/User;)V +MD: net/minecraft/client/telemetry/ClientTelemetryManager/close ()V net/minecraft/client/telemetry/ClientTelemetryManager/close ()V +MD: net/minecraft/client/telemetry/ClientTelemetryManager/m_260838_ (Lnet/minecraft/client/telemetry/TelemetryPropertyMap$Builder;Ljava/lang/String;)V net/minecraft/client/telemetry/ClientTelemetryManager/lambda$new$2 (Lnet/minecraft/client/telemetry/TelemetryPropertyMap$Builder;Ljava/lang/String;)V +MD: net/minecraft/client/telemetry/ClientTelemetryManager/m_260841_ (Lnet/minecraft/client/telemetry/TelemetryPropertyMap$Builder;Ljava/lang/String;)V net/minecraft/client/telemetry/ClientTelemetryManager/lambda$new$1 (Lnet/minecraft/client/telemetry/TelemetryPropertyMap$Builder;Ljava/lang/String;)V +MD: net/minecraft/client/telemetry/ClientTelemetryManager/m_260868_ (Ljava/lang/Runnable;)Ljava/lang/Thread; net/minecraft/client/telemetry/ClientTelemetryManager/lambda$static$0 (Ljava/lang/Runnable;)Ljava/lang/Thread; +MD: net/minecraft/client/telemetry/ClientTelemetryManager/m_260879_ (Ljava/util/Optional;)Ljava/util/concurrent/CompletionStage; net/minecraft/client/telemetry/ClientTelemetryManager/lambda$createEventSender$4 (Ljava/util/Optional;)Ljava/util/concurrent/CompletionStage; +MD: net/minecraft/client/telemetry/ClientTelemetryManager/m_260889_ (Ljava/util/concurrent/CompletableFuture;Lcom/mojang/authlib/minecraft/TelemetrySession;Lnet/minecraft/client/telemetry/TelemetryEventType;Ljava/util/function/Consumer;)V net/minecraft/client/telemetry/ClientTelemetryManager/lambda$createEventSender$6 (Ljava/util/concurrent/CompletableFuture;Lcom/mojang/authlib/minecraft/TelemetrySession;Lnet/minecraft/client/telemetry/TelemetryEventType;Ljava/util/function/Consumer;)V +MD: net/minecraft/client/telemetry/ClientTelemetryManager/m_260914_ ()Ljava/nio/file/Path; net/minecraft/client/telemetry/ClientTelemetryManager/getLogDirectory ()Ljava/nio/file/Path; +MD: net/minecraft/client/telemetry/ClientTelemetryManager/m_260933_ ()Ljava/util/concurrent/CompletableFuture; net/minecraft/client/telemetry/ClientTelemetryManager/lambda$createEventSender$3 ()Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/client/telemetry/ClientTelemetryManager/m_260999_ (Ljava/util/Optional;)V net/minecraft/client/telemetry/ClientTelemetryManager/lambda$close$7 (Ljava/util/Optional;)V +MD: net/minecraft/client/telemetry/ClientTelemetryManager/m_261052_ ()Lnet/minecraft/client/telemetry/TelemetryEventSender; net/minecraft/client/telemetry/ClientTelemetryManager/createEventSender ()Lnet/minecraft/client/telemetry/TelemetryEventSender; +MD: net/minecraft/client/telemetry/ClientTelemetryManager/m_261089_ (Lnet/minecraft/client/telemetry/TelemetryEventInstance;Lcom/mojang/authlib/minecraft/TelemetrySession;Ljava/util/Optional;)V net/minecraft/client/telemetry/ClientTelemetryManager/lambda$createEventSender$5 (Lnet/minecraft/client/telemetry/TelemetryEventInstance;Lcom/mojang/authlib/minecraft/TelemetrySession;Ljava/util/Optional;)V +MD: net/minecraft/client/telemetry/ClientTelemetryManager/m_285963_ ()Lnet/minecraft/client/telemetry/TelemetryEventSender; net/minecraft/client/telemetry/ClientTelemetryManager/getOutsideSessionSender ()Lnet/minecraft/client/telemetry/TelemetryEventSender; +MD: net/minecraft/client/telemetry/ClientTelemetryManager/m_285995_ (ZLjava/time/Duration;Ljava/lang/String;)Lnet/minecraft/client/telemetry/WorldSessionTelemetryManager; net/minecraft/client/telemetry/ClientTelemetryManager/createWorldSessionManager (ZLjava/time/Duration;Ljava/lang/String;)Lnet/minecraft/client/telemetry/WorldSessionTelemetryManager; +MD: net/minecraft/client/telemetry/TelemetryEventInstance/ ()V net/minecraft/client/telemetry/TelemetryEventInstance/ ()V +MD: net/minecraft/client/telemetry/TelemetryEventInstance/ (Lnet/minecraft/client/telemetry/TelemetryEventType;Lnet/minecraft/client/telemetry/TelemetryPropertyMap;)V net/minecraft/client/telemetry/TelemetryEventInstance/ (Lnet/minecraft/client/telemetry/TelemetryEventType;Lnet/minecraft/client/telemetry/TelemetryPropertyMap;)V +MD: net/minecraft/client/telemetry/TelemetryEventInstance/equals (Ljava/lang/Object;)Z net/minecraft/client/telemetry/TelemetryEventInstance/equals (Ljava/lang/Object;)Z +MD: net/minecraft/client/telemetry/TelemetryEventInstance/f_260460_ ()Lnet/minecraft/client/telemetry/TelemetryEventType; net/minecraft/client/telemetry/TelemetryEventInstance/type ()Lnet/minecraft/client/telemetry/TelemetryEventType; +MD: net/minecraft/client/telemetry/TelemetryEventInstance/f_260563_ ()Lnet/minecraft/client/telemetry/TelemetryPropertyMap; net/minecraft/client/telemetry/TelemetryEventInstance/properties ()Lnet/minecraft/client/telemetry/TelemetryPropertyMap; +MD: net/minecraft/client/telemetry/TelemetryEventInstance/hashCode ()I net/minecraft/client/telemetry/TelemetryEventInstance/hashCode ()I +MD: net/minecraft/client/telemetry/TelemetryEventInstance/m_260898_ (Lnet/minecraft/client/telemetry/TelemetryEventType;Lnet/minecraft/client/telemetry/TelemetryProperty;)V net/minecraft/client/telemetry/TelemetryEventInstance/lambda$new$0 (Lnet/minecraft/client/telemetry/TelemetryEventType;Lnet/minecraft/client/telemetry/TelemetryProperty;)V +MD: net/minecraft/client/telemetry/TelemetryEventInstance/m_261105_ (Lcom/mojang/authlib/minecraft/TelemetrySession;)Lcom/mojang/authlib/minecraft/TelemetryEvent; net/minecraft/client/telemetry/TelemetryEventInstance/export (Lcom/mojang/authlib/minecraft/TelemetrySession;)Lcom/mojang/authlib/minecraft/TelemetryEvent; +MD: net/minecraft/client/telemetry/TelemetryEventInstance/toString ()Ljava/lang/String; net/minecraft/client/telemetry/TelemetryEventInstance/toString ()Ljava/lang/String; +MD: net/minecraft/client/telemetry/TelemetryEventLog/ ()V net/minecraft/client/telemetry/TelemetryEventLog/ ()V +MD: net/minecraft/client/telemetry/TelemetryEventLog/ (Ljava/nio/channels/FileChannel;Ljava/util/concurrent/Executor;)V net/minecraft/client/telemetry/TelemetryEventLog/ (Ljava/nio/channels/FileChannel;Ljava/util/concurrent/Executor;)V +MD: net/minecraft/client/telemetry/TelemetryEventLog/close ()V net/minecraft/client/telemetry/TelemetryEventLog/close ()V +MD: net/minecraft/client/telemetry/TelemetryEventLog/m_260910_ (Lnet/minecraft/client/telemetry/TelemetryEventInstance;)V net/minecraft/client/telemetry/TelemetryEventLog/lambda$logger$0 (Lnet/minecraft/client/telemetry/TelemetryEventInstance;)V +MD: net/minecraft/client/telemetry/TelemetryEventLog/m_261088_ ()Lnet/minecraft/client/telemetry/TelemetryEventLogger; net/minecraft/client/telemetry/TelemetryEventLog/logger ()Lnet/minecraft/client/telemetry/TelemetryEventLogger; +MD: net/minecraft/client/telemetry/TelemetryEventLog/m_261095_ ()V net/minecraft/client/telemetry/TelemetryEventLog/lambda$close$2 ()V +MD: net/minecraft/client/telemetry/TelemetryEventLog/m_261271_ (Lnet/minecraft/client/telemetry/TelemetryEventInstance;)V net/minecraft/client/telemetry/TelemetryEventLog/lambda$logger$1 (Lnet/minecraft/client/telemetry/TelemetryEventInstance;)V +MD: net/minecraft/client/telemetry/TelemetryEventLogger/m_260877_ (Lnet/minecraft/client/telemetry/TelemetryEventInstance;)V net/minecraft/client/telemetry/TelemetryEventLogger/log (Lnet/minecraft/client/telemetry/TelemetryEventInstance;)V +MD: net/minecraft/client/telemetry/TelemetryEventSender/ ()V net/minecraft/client/telemetry/TelemetryEventSender/ ()V +MD: net/minecraft/client/telemetry/TelemetryEventSender/m_260869_ (Lnet/minecraft/client/telemetry/TelemetryEventType;Ljava/util/function/Consumer;)V net/minecraft/client/telemetry/TelemetryEventSender/lambda$static$0 (Lnet/minecraft/client/telemetry/TelemetryEventType;Ljava/util/function/Consumer;)V +MD: net/minecraft/client/telemetry/TelemetryEventSender/m_260919_ (Lnet/minecraft/client/telemetry/TelemetryEventType;Ljava/util/function/Consumer;)V net/minecraft/client/telemetry/TelemetryEventSender/send (Lnet/minecraft/client/telemetry/TelemetryEventType;Ljava/util/function/Consumer;)V +MD: net/minecraft/client/telemetry/TelemetryEventSender/m_261129_ (Ljava/util/function/Consumer;Lnet/minecraft/client/telemetry/TelemetryEventType;Ljava/util/function/Consumer;)V net/minecraft/client/telemetry/TelemetryEventSender/lambda$decorate$2 (Ljava/util/function/Consumer;Lnet/minecraft/client/telemetry/TelemetryEventType;Ljava/util/function/Consumer;)V +MD: net/minecraft/client/telemetry/TelemetryEventSender/m_261189_ (Ljava/util/function/Consumer;)Lnet/minecraft/client/telemetry/TelemetryEventSender; net/minecraft/client/telemetry/TelemetryEventSender/decorate (Ljava/util/function/Consumer;)Lnet/minecraft/client/telemetry/TelemetryEventSender; +MD: net/minecraft/client/telemetry/TelemetryEventSender/m_261277_ (Ljava/util/function/Consumer;Ljava/util/function/Consumer;Lnet/minecraft/client/telemetry/TelemetryPropertyMap$Builder;)V net/minecraft/client/telemetry/TelemetryEventSender/lambda$decorate$1 (Ljava/util/function/Consumer;Ljava/util/function/Consumer;Lnet/minecraft/client/telemetry/TelemetryPropertyMap$Builder;)V +MD: net/minecraft/client/telemetry/TelemetryEventType/ ()V net/minecraft/client/telemetry/TelemetryEventType/ ()V +MD: net/minecraft/client/telemetry/TelemetryEventType/ (Ljava/lang/String;Ljava/lang/String;Ljava/util/List;Z)V net/minecraft/client/telemetry/TelemetryEventType/ (Ljava/lang/String;Ljava/lang/String;Ljava/util/List;Z)V +MD: net/minecraft/client/telemetry/TelemetryEventType/m_260811_ (Ljava/lang/String;)Lnet/minecraft/network/chat/MutableComponent; net/minecraft/client/telemetry/TelemetryEventType/makeTranslation (Ljava/lang/String;)Lnet/minecraft/network/chat/MutableComponent; +MD: net/minecraft/client/telemetry/TelemetryEventType/m_260839_ ()Z net/minecraft/client/telemetry/TelemetryEventType/isOptIn ()Z +MD: net/minecraft/client/telemetry/TelemetryEventType/m_260927_ ()Ljava/lang/String; net/minecraft/client/telemetry/TelemetryEventType/id ()Ljava/lang/String; +MD: net/minecraft/client/telemetry/TelemetryEventType/m_260935_ ()Lnet/minecraft/network/chat/MutableComponent; net/minecraft/client/telemetry/TelemetryEventType/description ()Lnet/minecraft/network/chat/MutableComponent; +MD: net/minecraft/client/telemetry/TelemetryEventType/m_260992_ (Lnet/minecraft/client/telemetry/TelemetryProperty;)Z net/minecraft/client/telemetry/TelemetryEventType/contains (Lnet/minecraft/client/telemetry/TelemetryProperty;)Z +MD: net/minecraft/client/telemetry/TelemetryEventType/m_261110_ (Lcom/mojang/authlib/minecraft/TelemetrySession;Lnet/minecraft/client/telemetry/TelemetryPropertyMap;)Lcom/mojang/authlib/minecraft/TelemetryEvent; net/minecraft/client/telemetry/TelemetryEventType/export (Lcom/mojang/authlib/minecraft/TelemetrySession;Lnet/minecraft/client/telemetry/TelemetryPropertyMap;)Lcom/mojang/authlib/minecraft/TelemetryEvent; +MD: net/minecraft/client/telemetry/TelemetryEventType/m_261115_ ()Ljava/util/List; net/minecraft/client/telemetry/TelemetryEventType/values ()Ljava/util/List; +MD: net/minecraft/client/telemetry/TelemetryEventType/m_261184_ ()Ljava/util/List; net/minecraft/client/telemetry/TelemetryEventType/properties ()Ljava/util/List; +MD: net/minecraft/client/telemetry/TelemetryEventType/m_261283_ ()Lcom/mojang/serialization/Codec; net/minecraft/client/telemetry/TelemetryEventType/codec ()Lcom/mojang/serialization/Codec; +MD: net/minecraft/client/telemetry/TelemetryEventType/m_261290_ ()Lnet/minecraft/network/chat/MutableComponent; net/minecraft/client/telemetry/TelemetryEventType/title ()Lnet/minecraft/network/chat/MutableComponent; +MD: net/minecraft/client/telemetry/TelemetryEventType/m_261291_ (Lnet/minecraft/client/telemetry/TelemetryPropertyMap;)Lnet/minecraft/client/telemetry/TelemetryEventInstance; net/minecraft/client/telemetry/TelemetryEventType/lambda$new$2 (Lnet/minecraft/client/telemetry/TelemetryPropertyMap;)Lnet/minecraft/client/telemetry/TelemetryEventInstance; +MD: net/minecraft/client/telemetry/TelemetryEventType/m_261309_ (Ljava/lang/String;Ljava/lang/String;)Lnet/minecraft/client/telemetry/TelemetryEventType$Builder; net/minecraft/client/telemetry/TelemetryEventType/builder (Ljava/lang/String;Ljava/lang/String;)Lnet/minecraft/client/telemetry/TelemetryEventType$Builder; +MD: net/minecraft/client/telemetry/TelemetryEventType/m_274009_ (Ljava/lang/String;)Lcom/mojang/serialization/DataResult; net/minecraft/client/telemetry/TelemetryEventType/lambda$static$1 (Ljava/lang/String;)Lcom/mojang/serialization/DataResult; +MD: net/minecraft/client/telemetry/TelemetryEventType/m_274010_ (Ljava/lang/String;)Ljava/lang/String; net/minecraft/client/telemetry/TelemetryEventType/lambda$static$0 (Ljava/lang/String;)Ljava/lang/String; +MD: net/minecraft/client/telemetry/TelemetryEventType/toString ()Ljava/lang/String; net/minecraft/client/telemetry/TelemetryEventType/toString ()Ljava/lang/String; +MD: net/minecraft/client/telemetry/TelemetryEventType$Builder/ (Ljava/lang/String;Ljava/lang/String;)V net/minecraft/client/telemetry/TelemetryEventType$Builder/ (Ljava/lang/String;Ljava/lang/String;)V +MD: net/minecraft/client/telemetry/TelemetryEventType$Builder/m_260803_ ()Lnet/minecraft/client/telemetry/TelemetryEventType$Builder; net/minecraft/client/telemetry/TelemetryEventType$Builder/optIn ()Lnet/minecraft/client/telemetry/TelemetryEventType$Builder; +MD: net/minecraft/client/telemetry/TelemetryEventType$Builder/m_260878_ ()Lnet/minecraft/client/telemetry/TelemetryEventType; net/minecraft/client/telemetry/TelemetryEventType$Builder/register ()Lnet/minecraft/client/telemetry/TelemetryEventType; +MD: net/minecraft/client/telemetry/TelemetryEventType$Builder/m_261219_ (Lnet/minecraft/client/telemetry/TelemetryProperty;)Lnet/minecraft/client/telemetry/TelemetryEventType$Builder; net/minecraft/client/telemetry/TelemetryEventType$Builder/define (Lnet/minecraft/client/telemetry/TelemetryProperty;)Lnet/minecraft/client/telemetry/TelemetryEventType$Builder; +MD: net/minecraft/client/telemetry/TelemetryEventType$Builder/m_261244_ (Ljava/util/List;)Lnet/minecraft/client/telemetry/TelemetryEventType$Builder; net/minecraft/client/telemetry/TelemetryEventType$Builder/defineAll (Ljava/util/List;)Lnet/minecraft/client/telemetry/TelemetryEventType$Builder; +MD: net/minecraft/client/telemetry/TelemetryLogManager/ ()V net/minecraft/client/telemetry/TelemetryLogManager/ ()V +MD: net/minecraft/client/telemetry/TelemetryLogManager/ (Lnet/minecraft/util/eventlog/EventLogDirectory;)V net/minecraft/client/telemetry/TelemetryLogManager/ (Lnet/minecraft/util/eventlog/EventLogDirectory;)V +MD: net/minecraft/client/telemetry/TelemetryLogManager/close ()V net/minecraft/client/telemetry/TelemetryLogManager/close ()V +MD: net/minecraft/client/telemetry/TelemetryLogManager/m_260856_ ()Ljava/util/concurrent/CompletableFuture; net/minecraft/client/telemetry/TelemetryLogManager/openLogger ()Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/client/telemetry/TelemetryLogManager/m_260905_ (Ljava/util/Optional;)V net/minecraft/client/telemetry/TelemetryLogManager/lambda$close$3 (Ljava/util/Optional;)V +MD: net/minecraft/client/telemetry/TelemetryLogManager/m_260940_ ()Ljava/util/Optional; net/minecraft/client/telemetry/TelemetryLogManager/lambda$openLogger$1 ()Ljava/util/Optional; +MD: net/minecraft/client/telemetry/TelemetryLogManager/m_261021_ (Ljava/util/Optional;)Ljava/util/Optional; net/minecraft/client/telemetry/TelemetryLogManager/lambda$openLogger$2 (Ljava/util/Optional;)Ljava/util/Optional; +MD: net/minecraft/client/telemetry/TelemetryLogManager/m_261065_ (Ljava/nio/file/Path;)Ljava/util/Optional; net/minecraft/client/telemetry/TelemetryLogManager/lambda$open$0 (Ljava/nio/file/Path;)Ljava/util/Optional; +MD: net/minecraft/client/telemetry/TelemetryLogManager/m_261252_ (Ljava/nio/file/Path;)Ljava/util/concurrent/CompletableFuture; net/minecraft/client/telemetry/TelemetryLogManager/open (Ljava/nio/file/Path;)Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/client/telemetry/TelemetryProperty/ ()V net/minecraft/client/telemetry/TelemetryProperty/ ()V +MD: net/minecraft/client/telemetry/TelemetryProperty/ (Ljava/lang/String;Ljava/lang/String;Lcom/mojang/serialization/Codec;Lnet/minecraft/client/telemetry/TelemetryProperty$Exporter;)V net/minecraft/client/telemetry/TelemetryProperty/ (Ljava/lang/String;Ljava/lang/String;Lcom/mojang/serialization/Codec;Lnet/minecraft/client/telemetry/TelemetryProperty$Exporter;)V +MD: net/minecraft/client/telemetry/TelemetryProperty/equals (Ljava/lang/Object;)Z net/minecraft/client/telemetry/TelemetryProperty/equals (Ljava/lang/Object;)Z +MD: net/minecraft/client/telemetry/TelemetryProperty/f_260588_ ()Ljava/lang/String; net/minecraft/client/telemetry/TelemetryProperty/exportKey ()Ljava/lang/String; +MD: net/minecraft/client/telemetry/TelemetryProperty/f_260625_ ()Lnet/minecraft/client/telemetry/TelemetryProperty$Exporter; net/minecraft/client/telemetry/TelemetryProperty/exporter ()Lnet/minecraft/client/telemetry/TelemetryProperty$Exporter; +MD: net/minecraft/client/telemetry/TelemetryProperty/f_260687_ ()Ljava/lang/String; net/minecraft/client/telemetry/TelemetryProperty/id ()Ljava/lang/String; +MD: net/minecraft/client/telemetry/TelemetryProperty/f_260706_ ()Lcom/mojang/serialization/Codec; net/minecraft/client/telemetry/TelemetryProperty/codec ()Lcom/mojang/serialization/Codec; +MD: net/minecraft/client/telemetry/TelemetryProperty/hashCode ()I net/minecraft/client/telemetry/TelemetryProperty/hashCode ()I +MD: net/minecraft/client/telemetry/TelemetryProperty/m_260806_ (Lcom/mojang/authlib/minecraft/TelemetryPropertyContainer;Ljava/lang/String;Lnet/minecraft/client/telemetry/TelemetryProperty$GameMode;)V net/minecraft/client/telemetry/TelemetryProperty/lambda$static$2 (Lcom/mojang/authlib/minecraft/TelemetryPropertyContainer;Ljava/lang/String;Lnet/minecraft/client/telemetry/TelemetryProperty$GameMode;)V +MD: net/minecraft/client/telemetry/TelemetryProperty/m_260816_ (Lcom/mojang/authlib/minecraft/TelemetryPropertyContainer;Ljava/lang/String;Lnet/minecraft/client/telemetry/TelemetryProperty$ServerType;)V net/minecraft/client/telemetry/TelemetryProperty/lambda$static$0 (Lcom/mojang/authlib/minecraft/TelemetryPropertyContainer;Ljava/lang/String;Lnet/minecraft/client/telemetry/TelemetryProperty$ServerType;)V +MD: net/minecraft/client/telemetry/TelemetryProperty/m_260851_ (Ljava/lang/String;Ljava/lang/String;)Lnet/minecraft/client/telemetry/TelemetryProperty; net/minecraft/client/telemetry/TelemetryProperty/uuid (Ljava/lang/String;Ljava/lang/String;)Lnet/minecraft/client/telemetry/TelemetryProperty; +MD: net/minecraft/client/telemetry/TelemetryProperty/m_260862_ (Lcom/mojang/authlib/minecraft/TelemetryPropertyContainer;Ljava/lang/String;Lit/unimi/dsi/fastutil/longs/LongList;)V net/minecraft/client/telemetry/TelemetryProperty/lambda$longSamples$5 (Lcom/mojang/authlib/minecraft/TelemetryPropertyContainer;Ljava/lang/String;Lit/unimi/dsi/fastutil/longs/LongList;)V +MD: net/minecraft/client/telemetry/TelemetryProperty/m_261074_ (Ljava/lang/String;Ljava/lang/String;)Lnet/minecraft/client/telemetry/TelemetryProperty; net/minecraft/client/telemetry/TelemetryProperty/string (Ljava/lang/String;Ljava/lang/String;)Lnet/minecraft/client/telemetry/TelemetryProperty; +MD: net/minecraft/client/telemetry/TelemetryProperty/m_261080_ (Lcom/mojang/authlib/minecraft/TelemetryPropertyContainer;Ljava/lang/String;Ljava/time/Instant;)V net/minecraft/client/telemetry/TelemetryProperty/lambda$static$1 (Lcom/mojang/authlib/minecraft/TelemetryPropertyContainer;Ljava/lang/String;Ljava/time/Instant;)V +MD: net/minecraft/client/telemetry/TelemetryProperty/m_261124_ (Lnet/minecraft/client/telemetry/TelemetryPropertyMap;Lcom/mojang/authlib/minecraft/TelemetryPropertyContainer;)V net/minecraft/client/telemetry/TelemetryProperty/export (Lnet/minecraft/client/telemetry/TelemetryPropertyMap;Lcom/mojang/authlib/minecraft/TelemetryPropertyContainer;)V +MD: net/minecraft/client/telemetry/TelemetryProperty/m_261145_ (Lcom/mojang/authlib/minecraft/TelemetryPropertyContainer;Ljava/lang/String;Ljava/util/UUID;)V net/minecraft/client/telemetry/TelemetryProperty/lambda$uuid$3 (Lcom/mojang/authlib/minecraft/TelemetryPropertyContainer;Ljava/lang/String;Ljava/util/UUID;)V +MD: net/minecraft/client/telemetry/TelemetryProperty/m_261147_ (Ljava/lang/String;Ljava/lang/String;Lcom/mojang/serialization/Codec;Lnet/minecraft/client/telemetry/TelemetryProperty$Exporter;)Lnet/minecraft/client/telemetry/TelemetryProperty; net/minecraft/client/telemetry/TelemetryProperty/create (Ljava/lang/String;Ljava/lang/String;Lcom/mojang/serialization/Codec;Lnet/minecraft/client/telemetry/TelemetryProperty$Exporter;)Lnet/minecraft/client/telemetry/TelemetryProperty; +MD: net/minecraft/client/telemetry/TelemetryProperty/m_261193_ (Ljava/lang/String;Ljava/lang/String;)Lnet/minecraft/client/telemetry/TelemetryProperty; net/minecraft/client/telemetry/TelemetryProperty/bool (Ljava/lang/String;Ljava/lang/String;)Lnet/minecraft/client/telemetry/TelemetryProperty; +MD: net/minecraft/client/telemetry/TelemetryProperty/m_261229_ ()Lnet/minecraft/network/chat/MutableComponent; net/minecraft/client/telemetry/TelemetryProperty/title ()Lnet/minecraft/network/chat/MutableComponent; +MD: net/minecraft/client/telemetry/TelemetryProperty/m_261234_ (Ljava/lang/String;Ljava/lang/String;)Lnet/minecraft/client/telemetry/TelemetryProperty; net/minecraft/client/telemetry/TelemetryProperty/integer (Ljava/lang/String;Ljava/lang/String;)Lnet/minecraft/client/telemetry/TelemetryProperty; +MD: net/minecraft/client/telemetry/TelemetryProperty/m_261255_ (Ljava/lang/String;Ljava/lang/String;)Lnet/minecraft/client/telemetry/TelemetryProperty; net/minecraft/client/telemetry/TelemetryProperty/longSamples (Ljava/lang/String;Ljava/lang/String;)Lnet/minecraft/client/telemetry/TelemetryProperty; +MD: net/minecraft/client/telemetry/TelemetryProperty/m_285707_ (Lcom/mojang/authlib/minecraft/TelemetryPropertyContainer;Ljava/lang/String;Lnet/minecraft/client/telemetry/events/GameLoadTimesEvent$Measurement;)V net/minecraft/client/telemetry/TelemetryProperty/lambda$gameLoadMeasurement$4 (Lcom/mojang/authlib/minecraft/TelemetryPropertyContainer;Ljava/lang/String;Lnet/minecraft/client/telemetry/events/GameLoadTimesEvent$Measurement;)V +MD: net/minecraft/client/telemetry/TelemetryProperty/m_285885_ (Ljava/lang/String;Ljava/lang/String;)Lnet/minecraft/client/telemetry/TelemetryProperty; net/minecraft/client/telemetry/TelemetryProperty/gameLoadMeasurement (Ljava/lang/String;Ljava/lang/String;)Lnet/minecraft/client/telemetry/TelemetryProperty; +MD: net/minecraft/client/telemetry/TelemetryProperty/m_286063_ (Ljava/lang/String;Ljava/lang/String;)Lnet/minecraft/client/telemetry/TelemetryProperty; net/minecraft/client/telemetry/TelemetryProperty/makeLong (Ljava/lang/String;Ljava/lang/String;)Lnet/minecraft/client/telemetry/TelemetryProperty; +MD: net/minecraft/client/telemetry/TelemetryProperty/toString ()Ljava/lang/String; net/minecraft/client/telemetry/TelemetryProperty/toString ()Ljava/lang/String; +MD: net/minecraft/client/telemetry/TelemetryProperty$Exporter/m_261109_ (Lcom/mojang/authlib/minecraft/TelemetryPropertyContainer;Ljava/lang/String;Ljava/lang/Object;)V net/minecraft/client/telemetry/TelemetryProperty$Exporter/apply (Lcom/mojang/authlib/minecraft/TelemetryPropertyContainer;Ljava/lang/String;Ljava/lang/Object;)V +MD: net/minecraft/client/telemetry/TelemetryProperty$GameMode/ ()V net/minecraft/client/telemetry/TelemetryProperty$GameMode/ ()V +MD: net/minecraft/client/telemetry/TelemetryProperty$GameMode/ (Ljava/lang/String;ILjava/lang/String;I)V net/minecraft/client/telemetry/TelemetryProperty$GameMode/ (Ljava/lang/String;ILjava/lang/String;I)V +MD: net/minecraft/client/telemetry/TelemetryProperty$GameMode/m_260807_ ()[Lnet/minecraft/client/telemetry/TelemetryProperty$GameMode; net/minecraft/client/telemetry/TelemetryProperty$GameMode/$values ()[Lnet/minecraft/client/telemetry/TelemetryProperty$GameMode; +MD: net/minecraft/client/telemetry/TelemetryProperty$GameMode/m_261006_ ()I net/minecraft/client/telemetry/TelemetryProperty$GameMode/id ()I +MD: net/minecraft/client/telemetry/TelemetryProperty$GameMode/m_7912_ ()Ljava/lang/String; net/minecraft/client/telemetry/TelemetryProperty$GameMode/getSerializedName ()Ljava/lang/String; +MD: net/minecraft/client/telemetry/TelemetryProperty$GameMode/valueOf (Ljava/lang/String;)Lnet/minecraft/client/telemetry/TelemetryProperty$GameMode; net/minecraft/client/telemetry/TelemetryProperty$GameMode/valueOf (Ljava/lang/String;)Lnet/minecraft/client/telemetry/TelemetryProperty$GameMode; +MD: net/minecraft/client/telemetry/TelemetryProperty$GameMode/values ()[Lnet/minecraft/client/telemetry/TelemetryProperty$GameMode; net/minecraft/client/telemetry/TelemetryProperty$GameMode/values ()[Lnet/minecraft/client/telemetry/TelemetryProperty$GameMode; +MD: net/minecraft/client/telemetry/TelemetryProperty$ServerType/ ()V net/minecraft/client/telemetry/TelemetryProperty$ServerType/ ()V +MD: net/minecraft/client/telemetry/TelemetryProperty$ServerType/ (Ljava/lang/String;ILjava/lang/String;)V net/minecraft/client/telemetry/TelemetryProperty$ServerType/ (Ljava/lang/String;ILjava/lang/String;)V +MD: net/minecraft/client/telemetry/TelemetryProperty$ServerType/m_261195_ ()[Lnet/minecraft/client/telemetry/TelemetryProperty$ServerType; net/minecraft/client/telemetry/TelemetryProperty$ServerType/$values ()[Lnet/minecraft/client/telemetry/TelemetryProperty$ServerType; +MD: net/minecraft/client/telemetry/TelemetryProperty$ServerType/m_7912_ ()Ljava/lang/String; net/minecraft/client/telemetry/TelemetryProperty$ServerType/getSerializedName ()Ljava/lang/String; +MD: net/minecraft/client/telemetry/TelemetryProperty$ServerType/valueOf (Ljava/lang/String;)Lnet/minecraft/client/telemetry/TelemetryProperty$ServerType; net/minecraft/client/telemetry/TelemetryProperty$ServerType/valueOf (Ljava/lang/String;)Lnet/minecraft/client/telemetry/TelemetryProperty$ServerType; +MD: net/minecraft/client/telemetry/TelemetryProperty$ServerType/values ()[Lnet/minecraft/client/telemetry/TelemetryProperty$ServerType; net/minecraft/client/telemetry/TelemetryProperty$ServerType/values ()[Lnet/minecraft/client/telemetry/TelemetryProperty$ServerType; +MD: net/minecraft/client/telemetry/TelemetryPropertyMap/ (Ljava/util/Map;)V net/minecraft/client/telemetry/TelemetryPropertyMap/ (Ljava/util/Map;)V +MD: net/minecraft/client/telemetry/TelemetryPropertyMap/m_260858_ (Lnet/minecraft/client/telemetry/TelemetryProperty;)Ljava/lang/Object; net/minecraft/client/telemetry/TelemetryPropertyMap/get (Lnet/minecraft/client/telemetry/TelemetryProperty;)Ljava/lang/Object; +MD: net/minecraft/client/telemetry/TelemetryPropertyMap/m_260904_ ()Ljava/util/Set; net/minecraft/client/telemetry/TelemetryPropertyMap/propertySet ()Ljava/util/Set; +MD: net/minecraft/client/telemetry/TelemetryPropertyMap/m_261042_ (Ljava/util/List;)Lcom/mojang/serialization/Codec; net/minecraft/client/telemetry/TelemetryPropertyMap/createCodec (Ljava/util/List;)Lcom/mojang/serialization/Codec; +MD: net/minecraft/client/telemetry/TelemetryPropertyMap/m_261098_ ()Lnet/minecraft/client/telemetry/TelemetryPropertyMap$Builder; net/minecraft/client/telemetry/TelemetryPropertyMap/builder ()Lnet/minecraft/client/telemetry/TelemetryPropertyMap$Builder; +MD: net/minecraft/client/telemetry/TelemetryPropertyMap/toString ()Ljava/lang/String; net/minecraft/client/telemetry/TelemetryPropertyMap/toString ()Ljava/lang/String; +MD: net/minecraft/client/telemetry/TelemetryPropertyMap$1/ (Ljava/util/List;)V net/minecraft/client/telemetry/TelemetryPropertyMap$1/ (Ljava/util/List;)V +MD: net/minecraft/client/telemetry/TelemetryPropertyMap$1/decode (Lcom/mojang/serialization/DynamicOps;Lcom/mojang/serialization/MapLike;)Lcom/mojang/serialization/DataResult; net/minecraft/client/telemetry/TelemetryPropertyMap$1/decode (Lcom/mojang/serialization/DynamicOps;Lcom/mojang/serialization/MapLike;)Lcom/mojang/serialization/DataResult; +MD: net/minecraft/client/telemetry/TelemetryPropertyMap$1/encode (Ljava/lang/Object;Lcom/mojang/serialization/DynamicOps;Lcom/mojang/serialization/RecordBuilder;)Lcom/mojang/serialization/RecordBuilder; net/minecraft/client/telemetry/TelemetryPropertyMap$1/encode (Ljava/lang/Object;Lcom/mojang/serialization/DynamicOps;Lcom/mojang/serialization/RecordBuilder;)Lcom/mojang/serialization/RecordBuilder; +MD: net/minecraft/client/telemetry/TelemetryPropertyMap$1/encode (Lnet/minecraft/client/telemetry/TelemetryPropertyMap;Lcom/mojang/serialization/DynamicOps;Lcom/mojang/serialization/RecordBuilder;)Lcom/mojang/serialization/RecordBuilder; net/minecraft/client/telemetry/TelemetryPropertyMap$1/encode (Lnet/minecraft/client/telemetry/TelemetryPropertyMap;Lcom/mojang/serialization/DynamicOps;Lcom/mojang/serialization/RecordBuilder;)Lcom/mojang/serialization/RecordBuilder; +MD: net/minecraft/client/telemetry/TelemetryPropertyMap$1/keys (Lcom/mojang/serialization/DynamicOps;)Ljava/util/stream/Stream; net/minecraft/client/telemetry/TelemetryPropertyMap$1/keys (Lcom/mojang/serialization/DynamicOps;)Ljava/util/stream/Stream; +MD: net/minecraft/client/telemetry/TelemetryPropertyMap$1/m_260915_ (Lnet/minecraft/client/telemetry/TelemetryPropertyMap;Lcom/mojang/serialization/RecordBuilder;Lnet/minecraft/client/telemetry/TelemetryProperty;)Lcom/mojang/serialization/RecordBuilder; net/minecraft/client/telemetry/TelemetryPropertyMap$1/encodeProperty (Lnet/minecraft/client/telemetry/TelemetryPropertyMap;Lcom/mojang/serialization/RecordBuilder;Lnet/minecraft/client/telemetry/TelemetryProperty;)Lcom/mojang/serialization/RecordBuilder; +MD: net/minecraft/client/telemetry/TelemetryPropertyMap$1/m_260959_ (Lnet/minecraft/client/telemetry/TelemetryProperty;Lnet/minecraft/client/telemetry/TelemetryPropertyMap$Builder;Ljava/lang/Object;)Lnet/minecraft/client/telemetry/TelemetryPropertyMap$Builder; net/minecraft/client/telemetry/TelemetryPropertyMap$1/lambda$decodeProperty$0 (Lnet/minecraft/client/telemetry/TelemetryProperty;Lnet/minecraft/client/telemetry/TelemetryPropertyMap$Builder;Ljava/lang/Object;)Lnet/minecraft/client/telemetry/TelemetryPropertyMap$Builder; +MD: net/minecraft/client/telemetry/TelemetryPropertyMap$1/m_261041_ (Lcom/mojang/serialization/DataResult;Lcom/mojang/serialization/DynamicOps;Lcom/mojang/serialization/MapLike;Lnet/minecraft/client/telemetry/TelemetryProperty;)Lcom/mojang/serialization/DataResult; net/minecraft/client/telemetry/TelemetryPropertyMap$1/decodeProperty (Lcom/mojang/serialization/DataResult;Lcom/mojang/serialization/DynamicOps;Lcom/mojang/serialization/MapLike;Lnet/minecraft/client/telemetry/TelemetryProperty;)Lcom/mojang/serialization/DataResult; +MD: net/minecraft/client/telemetry/TelemetryPropertyMap$Builder/ ()V net/minecraft/client/telemetry/TelemetryPropertyMap$Builder/ ()V +MD: net/minecraft/client/telemetry/TelemetryPropertyMap$Builder/m_260832_ (Lnet/minecraft/client/telemetry/TelemetryPropertyMap;)Lnet/minecraft/client/telemetry/TelemetryPropertyMap$Builder; net/minecraft/client/telemetry/TelemetryPropertyMap$Builder/putAll (Lnet/minecraft/client/telemetry/TelemetryPropertyMap;)Lnet/minecraft/client/telemetry/TelemetryPropertyMap$Builder; +MD: net/minecraft/client/telemetry/TelemetryPropertyMap$Builder/m_260981_ ()Lnet/minecraft/client/telemetry/TelemetryPropertyMap; net/minecraft/client/telemetry/TelemetryPropertyMap$Builder/build ()Lnet/minecraft/client/telemetry/TelemetryPropertyMap; +MD: net/minecraft/client/telemetry/TelemetryPropertyMap$Builder/m_261137_ (Lnet/minecraft/client/telemetry/TelemetryProperty;Ljava/lang/Object;)Lnet/minecraft/client/telemetry/TelemetryPropertyMap$Builder; net/minecraft/client/telemetry/TelemetryPropertyMap$Builder/put (Lnet/minecraft/client/telemetry/TelemetryProperty;Ljava/lang/Object;)Lnet/minecraft/client/telemetry/TelemetryPropertyMap$Builder; +MD: net/minecraft/client/telemetry/TelemetryPropertyMap$Builder/m_285763_ (Lnet/minecraft/client/telemetry/TelemetryProperty;Ljava/lang/Object;)Lnet/minecraft/client/telemetry/TelemetryPropertyMap$Builder; net/minecraft/client/telemetry/TelemetryPropertyMap$Builder/putIfNotNull (Lnet/minecraft/client/telemetry/TelemetryProperty;Ljava/lang/Object;)Lnet/minecraft/client/telemetry/TelemetryPropertyMap$Builder; +MD: net/minecraft/client/telemetry/WorldSessionTelemetryManager/ (Lnet/minecraft/client/telemetry/TelemetryEventSender;ZLjava/time/Duration;Ljava/lang/String;)V net/minecraft/client/telemetry/WorldSessionTelemetryManager/ (Lnet/minecraft/client/telemetry/TelemetryEventSender;ZLjava/time/Duration;Ljava/lang/String;)V +MD: net/minecraft/client/telemetry/WorldSessionTelemetryManager/m_260888_ (Lnet/minecraft/world/level/GameType;Z)V net/minecraft/client/telemetry/WorldSessionTelemetryManager/onPlayerInfoReceived (Lnet/minecraft/world/level/GameType;Z)V +MD: net/minecraft/client/telemetry/WorldSessionTelemetryManager/m_260912_ (Lnet/minecraft/client/telemetry/TelemetryPropertyMap$Builder;)V net/minecraft/client/telemetry/WorldSessionTelemetryManager/lambda$new$0 (Lnet/minecraft/client/telemetry/TelemetryPropertyMap$Builder;)V +MD: net/minecraft/client/telemetry/WorldSessionTelemetryManager/m_260918_ (Ljava/lang/String;)V net/minecraft/client/telemetry/WorldSessionTelemetryManager/onServerBrandReceived (Ljava/lang/String;)V +MD: net/minecraft/client/telemetry/WorldSessionTelemetryManager/m_261027_ ()V net/minecraft/client/telemetry/WorldSessionTelemetryManager/onDisconnect ()V +MD: net/minecraft/client/telemetry/WorldSessionTelemetryManager/m_261056_ ()V net/minecraft/client/telemetry/WorldSessionTelemetryManager/tick ()V +MD: net/minecraft/client/telemetry/WorldSessionTelemetryManager/m_261141_ ()V net/minecraft/client/telemetry/WorldSessionTelemetryManager/worldSessionStart ()V +MD: net/minecraft/client/telemetry/WorldSessionTelemetryManager/m_261206_ (J)V net/minecraft/client/telemetry/WorldSessionTelemetryManager/setTime (J)V +MD: net/minecraft/client/telemetry/WorldSessionTelemetryManager/m_285708_ (Lnet/minecraft/resources/ResourceLocation;JLnet/minecraft/client/telemetry/TelemetryPropertyMap$Builder;)V net/minecraft/client/telemetry/WorldSessionTelemetryManager/lambda$onAdvancementDone$1 (Lnet/minecraft/resources/ResourceLocation;JLnet/minecraft/client/telemetry/TelemetryPropertyMap$Builder;)V +MD: net/minecraft/client/telemetry/WorldSessionTelemetryManager/m_286034_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/advancements/Advancement;)V net/minecraft/client/telemetry/WorldSessionTelemetryManager/onAdvancementDone (Lnet/minecraft/world/level/Level;Lnet/minecraft/advancements/Advancement;)V +MD: net/minecraft/client/telemetry/events/AggregatedTelemetryEvent/ ()V net/minecraft/client/telemetry/events/AggregatedTelemetryEvent/ ()V +MD: net/minecraft/client/telemetry/events/AggregatedTelemetryEvent/m_260819_ (Lnet/minecraft/client/telemetry/TelemetryEventSender;)V net/minecraft/client/telemetry/events/AggregatedTelemetryEvent/sendEvent (Lnet/minecraft/client/telemetry/TelemetryEventSender;)V +MD: net/minecraft/client/telemetry/events/AggregatedTelemetryEvent/m_260835_ ()V net/minecraft/client/telemetry/events/AggregatedTelemetryEvent/takeSample ()V +MD: net/minecraft/client/telemetry/events/AggregatedTelemetryEvent/m_260947_ ()V net/minecraft/client/telemetry/events/AggregatedTelemetryEvent/start ()V +MD: net/minecraft/client/telemetry/events/AggregatedTelemetryEvent/m_261091_ ()I net/minecraft/client/telemetry/events/AggregatedTelemetryEvent/getSampleCount ()I +MD: net/minecraft/client/telemetry/events/AggregatedTelemetryEvent/m_261168_ ()Z net/minecraft/client/telemetry/events/AggregatedTelemetryEvent/shouldTakeSample ()Z +MD: net/minecraft/client/telemetry/events/AggregatedTelemetryEvent/m_261217_ ()V net/minecraft/client/telemetry/events/AggregatedTelemetryEvent/stop ()V +MD: net/minecraft/client/telemetry/events/AggregatedTelemetryEvent/m_261228_ ()Z net/minecraft/client/telemetry/events/AggregatedTelemetryEvent/shouldSentEvent ()Z +MD: net/minecraft/client/telemetry/events/AggregatedTelemetryEvent/m_263206_ (Lnet/minecraft/client/telemetry/TelemetryEventSender;)V net/minecraft/client/telemetry/events/AggregatedTelemetryEvent/tick (Lnet/minecraft/client/telemetry/TelemetryEventSender;)V +MD: net/minecraft/client/telemetry/events/GameLoadTimesEvent/ ()V net/minecraft/client/telemetry/events/GameLoadTimesEvent/ ()V +MD: net/minecraft/client/telemetry/events/GameLoadTimesEvent/ (Lcom/google/common/base/Ticker;)V net/minecraft/client/telemetry/events/GameLoadTimesEvent/ (Lcom/google/common/base/Ticker;)V +MD: net/minecraft/client/telemetry/events/GameLoadTimesEvent/m_285762_ (Lcom/google/common/base/Stopwatch;Lnet/minecraft/client/telemetry/TelemetryProperty;)Lcom/google/common/base/Stopwatch; net/minecraft/client/telemetry/events/GameLoadTimesEvent/lambda$beginStep$1 (Lcom/google/common/base/Stopwatch;Lnet/minecraft/client/telemetry/TelemetryProperty;)Lcom/google/common/base/Stopwatch; +MD: net/minecraft/client/telemetry/events/GameLoadTimesEvent/m_285833_ (Lnet/minecraft/client/telemetry/TelemetryProperty;)V net/minecraft/client/telemetry/events/GameLoadTimesEvent/beginStep (Lnet/minecraft/client/telemetry/TelemetryProperty;)V +MD: net/minecraft/client/telemetry/events/GameLoadTimesEvent/m_285850_ (Lnet/minecraft/client/telemetry/TelemetryPropertyMap$Builder;Lnet/minecraft/client/telemetry/TelemetryProperty;Lcom/google/common/base/Stopwatch;)V net/minecraft/client/telemetry/events/GameLoadTimesEvent/lambda$send$2 (Lnet/minecraft/client/telemetry/TelemetryPropertyMap$Builder;Lnet/minecraft/client/telemetry/TelemetryProperty;Lcom/google/common/base/Stopwatch;)V +MD: net/minecraft/client/telemetry/events/GameLoadTimesEvent/m_285883_ (Lnet/minecraft/client/telemetry/TelemetryPropertyMap$Builder;)V net/minecraft/client/telemetry/events/GameLoadTimesEvent/lambda$send$4 (Lnet/minecraft/client/telemetry/TelemetryPropertyMap$Builder;)V +MD: net/minecraft/client/telemetry/events/GameLoadTimesEvent/m_285901_ (Lnet/minecraft/client/telemetry/TelemetryProperty;)V net/minecraft/client/telemetry/events/GameLoadTimesEvent/endStep (Lnet/minecraft/client/telemetry/TelemetryProperty;)V +MD: net/minecraft/client/telemetry/events/GameLoadTimesEvent/m_285921_ (Lnet/minecraft/client/telemetry/TelemetryPropertyMap$Builder;J)V net/minecraft/client/telemetry/events/GameLoadTimesEvent/lambda$send$3 (Lnet/minecraft/client/telemetry/TelemetryPropertyMap$Builder;J)V +MD: net/minecraft/client/telemetry/events/GameLoadTimesEvent/m_285937_ (Lnet/minecraft/client/telemetry/TelemetryProperty;Ljava/util/function/Function;)V net/minecraft/client/telemetry/events/GameLoadTimesEvent/beginStep (Lnet/minecraft/client/telemetry/TelemetryProperty;Ljava/util/function/Function;)V +MD: net/minecraft/client/telemetry/events/GameLoadTimesEvent/m_285977_ (Lnet/minecraft/client/telemetry/TelemetryProperty;Lcom/google/common/base/Stopwatch;)V net/minecraft/client/telemetry/events/GameLoadTimesEvent/beginStep (Lnet/minecraft/client/telemetry/TelemetryProperty;Lcom/google/common/base/Stopwatch;)V +MD: net/minecraft/client/telemetry/events/GameLoadTimesEvent/m_286017_ (Lnet/minecraft/client/telemetry/TelemetryProperty;)Lcom/google/common/base/Stopwatch; net/minecraft/client/telemetry/events/GameLoadTimesEvent/lambda$beginStep$0 (Lnet/minecraft/client/telemetry/TelemetryProperty;)Lcom/google/common/base/Stopwatch; +MD: net/minecraft/client/telemetry/events/GameLoadTimesEvent/m_286019_ (Lnet/minecraft/client/telemetry/TelemetryEventSender;)V net/minecraft/client/telemetry/events/GameLoadTimesEvent/send (Lnet/minecraft/client/telemetry/TelemetryEventSender;)V +MD: net/minecraft/client/telemetry/events/GameLoadTimesEvent/m_286069_ (J)V net/minecraft/client/telemetry/events/GameLoadTimesEvent/setBootstrapTime (J)V +MD: net/minecraft/client/telemetry/events/GameLoadTimesEvent$Measurement/ ()V net/minecraft/client/telemetry/events/GameLoadTimesEvent$Measurement/ ()V +MD: net/minecraft/client/telemetry/events/GameLoadTimesEvent$Measurement/ (I)V net/minecraft/client/telemetry/events/GameLoadTimesEvent$Measurement/ (I)V +MD: net/minecraft/client/telemetry/events/GameLoadTimesEvent$Measurement/equals (Ljava/lang/Object;)Z net/minecraft/client/telemetry/events/GameLoadTimesEvent$Measurement/equals (Ljava/lang/Object;)Z +MD: net/minecraft/client/telemetry/events/GameLoadTimesEvent$Measurement/f_285578_ ()I net/minecraft/client/telemetry/events/GameLoadTimesEvent$Measurement/millis ()I +MD: net/minecraft/client/telemetry/events/GameLoadTimesEvent$Measurement/hashCode ()I net/minecraft/client/telemetry/events/GameLoadTimesEvent$Measurement/hashCode ()I +MD: net/minecraft/client/telemetry/events/GameLoadTimesEvent$Measurement/m_285895_ (Lnet/minecraft/client/telemetry/events/GameLoadTimesEvent$Measurement;)Ljava/lang/Integer; net/minecraft/client/telemetry/events/GameLoadTimesEvent$Measurement/lambda$static$0 (Lnet/minecraft/client/telemetry/events/GameLoadTimesEvent$Measurement;)Ljava/lang/Integer; +MD: net/minecraft/client/telemetry/events/GameLoadTimesEvent$Measurement/toString ()Ljava/lang/String; net/minecraft/client/telemetry/events/GameLoadTimesEvent$Measurement/toString ()Ljava/lang/String; +MD: net/minecraft/client/telemetry/events/PerformanceMetricsEvent/ ()V net/minecraft/client/telemetry/events/PerformanceMetricsEvent/ ()V +MD: net/minecraft/client/telemetry/events/PerformanceMetricsEvent/ ()V net/minecraft/client/telemetry/events/PerformanceMetricsEvent/ ()V +MD: net/minecraft/client/telemetry/events/PerformanceMetricsEvent/m_260818_ ()V net/minecraft/client/telemetry/events/PerformanceMetricsEvent/resetValues ()V +MD: net/minecraft/client/telemetry/events/PerformanceMetricsEvent/m_260819_ (Lnet/minecraft/client/telemetry/TelemetryEventSender;)V net/minecraft/client/telemetry/events/PerformanceMetricsEvent/sendEvent (Lnet/minecraft/client/telemetry/TelemetryEventSender;)V +MD: net/minecraft/client/telemetry/events/PerformanceMetricsEvent/m_260835_ ()V net/minecraft/client/telemetry/events/PerformanceMetricsEvent/takeSample ()V +MD: net/minecraft/client/telemetry/events/PerformanceMetricsEvent/m_261164_ ()V net/minecraft/client/telemetry/events/PerformanceMetricsEvent/takeUsedMemorySample ()V +MD: net/minecraft/client/telemetry/events/PerformanceMetricsEvent/m_261179_ (Lnet/minecraft/client/telemetry/TelemetryPropertyMap$Builder;)V net/minecraft/client/telemetry/events/PerformanceMetricsEvent/lambda$sendEvent$0 (Lnet/minecraft/client/telemetry/TelemetryPropertyMap$Builder;)V +MD: net/minecraft/client/telemetry/events/PerformanceMetricsEvent/m_261284_ (J)J net/minecraft/client/telemetry/events/PerformanceMetricsEvent/toKilobytes (J)J +MD: net/minecraft/client/telemetry/events/PerformanceMetricsEvent/m_263206_ (Lnet/minecraft/client/telemetry/TelemetryEventSender;)V net/minecraft/client/telemetry/events/PerformanceMetricsEvent/tick (Lnet/minecraft/client/telemetry/TelemetryEventSender;)V +MD: net/minecraft/client/telemetry/events/WorldLoadEvent/ (Ljava/lang/String;)V net/minecraft/client/telemetry/events/WorldLoadEvent/ (Ljava/lang/String;)V +MD: net/minecraft/client/telemetry/events/WorldLoadEvent/m_260799_ (Lnet/minecraft/world/level/GameType;Z)V net/minecraft/client/telemetry/events/WorldLoadEvent/setGameMode (Lnet/minecraft/world/level/GameType;Z)V +MD: net/minecraft/client/telemetry/events/WorldLoadEvent/m_261084_ (Ljava/lang/String;)V net/minecraft/client/telemetry/events/WorldLoadEvent/setServerBrand (Ljava/lang/String;)V +MD: net/minecraft/client/telemetry/events/WorldLoadEvent/m_261131_ (Lnet/minecraft/client/telemetry/TelemetryPropertyMap$Builder;)V net/minecraft/client/telemetry/events/WorldLoadEvent/addProperties (Lnet/minecraft/client/telemetry/TelemetryPropertyMap$Builder;)V +MD: net/minecraft/client/telemetry/events/WorldLoadEvent/m_261317_ ()Lnet/minecraft/client/telemetry/TelemetryProperty$ServerType; net/minecraft/client/telemetry/events/WorldLoadEvent/getServerType ()Lnet/minecraft/client/telemetry/TelemetryProperty$ServerType; +MD: net/minecraft/client/telemetry/events/WorldLoadEvent/m_263210_ (Lnet/minecraft/client/telemetry/TelemetryEventSender;)Z net/minecraft/client/telemetry/events/WorldLoadEvent/send (Lnet/minecraft/client/telemetry/TelemetryEventSender;)Z +MD: net/minecraft/client/telemetry/events/WorldLoadEvent/m_285709_ (Lnet/minecraft/client/telemetry/TelemetryPropertyMap$Builder;)V net/minecraft/client/telemetry/events/WorldLoadEvent/lambda$send$0 (Lnet/minecraft/client/telemetry/TelemetryPropertyMap$Builder;)V +MD: net/minecraft/client/telemetry/events/WorldLoadEvent$1/ ()V net/minecraft/client/telemetry/events/WorldLoadEvent$1/ ()V +MD: net/minecraft/client/telemetry/events/WorldLoadTimesEvent/ (ZLjava/time/Duration;)V net/minecraft/client/telemetry/events/WorldLoadTimesEvent/ (ZLjava/time/Duration;)V +MD: net/minecraft/client/telemetry/events/WorldLoadTimesEvent/m_261125_ (Lnet/minecraft/client/telemetry/TelemetryEventSender;)V net/minecraft/client/telemetry/events/WorldLoadTimesEvent/send (Lnet/minecraft/client/telemetry/TelemetryEventSender;)V +MD: net/minecraft/client/telemetry/events/WorldLoadTimesEvent/m_261266_ (Lnet/minecraft/client/telemetry/TelemetryPropertyMap$Builder;)V net/minecraft/client/telemetry/events/WorldLoadTimesEvent/lambda$send$0 (Lnet/minecraft/client/telemetry/TelemetryPropertyMap$Builder;)V +MD: net/minecraft/client/telemetry/events/WorldUnloadEvent/ ()V net/minecraft/client/telemetry/events/WorldUnloadEvent/ ()V +MD: net/minecraft/client/telemetry/events/WorldUnloadEvent/m_260890_ (Lnet/minecraft/client/telemetry/TelemetryEventSender;Ljava/time/Instant;)V net/minecraft/client/telemetry/events/WorldUnloadEvent/lambda$send$1 (Lnet/minecraft/client/telemetry/TelemetryEventSender;Ljava/time/Instant;)V +MD: net/minecraft/client/telemetry/events/WorldUnloadEvent/m_260941_ (J)V net/minecraft/client/telemetry/events/WorldUnloadEvent/setTime (J)V +MD: net/minecraft/client/telemetry/events/WorldUnloadEvent/m_260990_ (Ljava/time/Instant;)I net/minecraft/client/telemetry/events/WorldUnloadEvent/getTimeInSecondsSinceLoad (Ljava/time/Instant;)I +MD: net/minecraft/client/telemetry/events/WorldUnloadEvent/m_261287_ (Lnet/minecraft/client/telemetry/TelemetryEventSender;)V net/minecraft/client/telemetry/events/WorldUnloadEvent/send (Lnet/minecraft/client/telemetry/TelemetryEventSender;)V +MD: net/minecraft/client/telemetry/events/WorldUnloadEvent/m_261297_ (Ljava/time/Instant;Lnet/minecraft/client/telemetry/TelemetryPropertyMap$Builder;)V net/minecraft/client/telemetry/events/WorldUnloadEvent/lambda$send$0 (Ljava/time/Instant;Lnet/minecraft/client/telemetry/TelemetryPropertyMap$Builder;)V +MD: net/minecraft/client/telemetry/events/WorldUnloadEvent/m_263234_ ()V net/minecraft/client/telemetry/events/WorldUnloadEvent/onPlayerInfoReceived ()V +MD: net/minecraft/client/tutorial/BundleTutorial/ (Lnet/minecraft/client/tutorial/Tutorial;Lnet/minecraft/client/Options;)V net/minecraft/client/tutorial/BundleTutorial/ (Lnet/minecraft/client/tutorial/Tutorial;Lnet/minecraft/client/Options;)V +MD: net/minecraft/client/tutorial/BundleTutorial/m_175005_ ()V net/minecraft/client/tutorial/BundleTutorial/showToast ()V +MD: net/minecraft/client/tutorial/BundleTutorial/m_175006_ (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/inventory/ClickAction;)V net/minecraft/client/tutorial/BundleTutorial/onInventoryAction (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/inventory/ClickAction;)V +MD: net/minecraft/client/tutorial/BundleTutorial/m_175010_ ()V net/minecraft/client/tutorial/BundleTutorial/clearToast ()V +MD: net/minecraft/client/tutorial/CompletedTutorialStepInstance/ (Lnet/minecraft/client/tutorial/Tutorial;)V net/minecraft/client/tutorial/CompletedTutorialStepInstance/ (Lnet/minecraft/client/tutorial/Tutorial;)V +MD: net/minecraft/client/tutorial/CraftPlanksTutorialStep/ ()V net/minecraft/client/tutorial/CraftPlanksTutorialStep/ ()V +MD: net/minecraft/client/tutorial/CraftPlanksTutorialStep/ (Lnet/minecraft/client/tutorial/Tutorial;)V net/minecraft/client/tutorial/CraftPlanksTutorialStep/ (Lnet/minecraft/client/tutorial/Tutorial;)V +MD: net/minecraft/client/tutorial/CraftPlanksTutorialStep/m_205662_ (Lnet/minecraft/client/player/LocalPlayer;Lnet/minecraft/tags/TagKey;)Z net/minecraft/client/tutorial/CraftPlanksTutorialStep/hasCraftedPlanksPreviously (Lnet/minecraft/client/player/LocalPlayer;Lnet/minecraft/tags/TagKey;)Z +MD: net/minecraft/client/tutorial/CraftPlanksTutorialStep/m_6967_ (Lnet/minecraft/world/item/ItemStack;)V net/minecraft/client/tutorial/CraftPlanksTutorialStep/onGetItem (Lnet/minecraft/world/item/ItemStack;)V +MD: net/minecraft/client/tutorial/CraftPlanksTutorialStep/m_7736_ ()V net/minecraft/client/tutorial/CraftPlanksTutorialStep/clear ()V +MD: net/minecraft/client/tutorial/CraftPlanksTutorialStep/m_7737_ ()V net/minecraft/client/tutorial/CraftPlanksTutorialStep/tick ()V +MD: net/minecraft/client/tutorial/FindTreeTutorialStepInstance/ ()V net/minecraft/client/tutorial/FindTreeTutorialStepInstance/ ()V +MD: net/minecraft/client/tutorial/FindTreeTutorialStepInstance/ (Lnet/minecraft/client/tutorial/Tutorial;)V net/minecraft/client/tutorial/FindTreeTutorialStepInstance/ (Lnet/minecraft/client/tutorial/Tutorial;)V +MD: net/minecraft/client/tutorial/FindTreeTutorialStepInstance/m_120503_ (Lnet/minecraft/client/player/LocalPlayer;)Z net/minecraft/client/tutorial/FindTreeTutorialStepInstance/hasPunchedTreesPreviously (Lnet/minecraft/client/player/LocalPlayer;)Z +MD: net/minecraft/client/tutorial/FindTreeTutorialStepInstance/m_235269_ (Lnet/minecraft/world/item/ItemStack;)Z net/minecraft/client/tutorial/FindTreeTutorialStepInstance/lambda$hasCollectedTreeItems$0 (Lnet/minecraft/world/item/ItemStack;)Z +MD: net/minecraft/client/tutorial/FindTreeTutorialStepInstance/m_235271_ (Lnet/minecraft/client/player/LocalPlayer;)Z net/minecraft/client/tutorial/FindTreeTutorialStepInstance/hasCollectedTreeItems (Lnet/minecraft/client/player/LocalPlayer;)Z +MD: net/minecraft/client/tutorial/FindTreeTutorialStepInstance/m_6967_ (Lnet/minecraft/world/item/ItemStack;)V net/minecraft/client/tutorial/FindTreeTutorialStepInstance/onGetItem (Lnet/minecraft/world/item/ItemStack;)V +MD: net/minecraft/client/tutorial/FindTreeTutorialStepInstance/m_7554_ (Lnet/minecraft/client/multiplayer/ClientLevel;Lnet/minecraft/world/phys/HitResult;)V net/minecraft/client/tutorial/FindTreeTutorialStepInstance/onLookAt (Lnet/minecraft/client/multiplayer/ClientLevel;Lnet/minecraft/world/phys/HitResult;)V +MD: net/minecraft/client/tutorial/FindTreeTutorialStepInstance/m_7736_ ()V net/minecraft/client/tutorial/FindTreeTutorialStepInstance/clear ()V +MD: net/minecraft/client/tutorial/FindTreeTutorialStepInstance/m_7737_ ()V net/minecraft/client/tutorial/FindTreeTutorialStepInstance/tick ()V +MD: net/minecraft/client/tutorial/MovementTutorialStepInstance/ ()V net/minecraft/client/tutorial/MovementTutorialStepInstance/ ()V +MD: net/minecraft/client/tutorial/MovementTutorialStepInstance/ (Lnet/minecraft/client/tutorial/Tutorial;)V net/minecraft/client/tutorial/MovementTutorialStepInstance/ (Lnet/minecraft/client/tutorial/Tutorial;)V +MD: net/minecraft/client/tutorial/MovementTutorialStepInstance/m_6420_ (DD)V net/minecraft/client/tutorial/MovementTutorialStepInstance/onMouse (DD)V +MD: net/minecraft/client/tutorial/MovementTutorialStepInstance/m_6484_ (Lnet/minecraft/client/player/Input;)V net/minecraft/client/tutorial/MovementTutorialStepInstance/onInput (Lnet/minecraft/client/player/Input;)V +MD: net/minecraft/client/tutorial/MovementTutorialStepInstance/m_7736_ ()V net/minecraft/client/tutorial/MovementTutorialStepInstance/clear ()V +MD: net/minecraft/client/tutorial/MovementTutorialStepInstance/m_7737_ ()V net/minecraft/client/tutorial/MovementTutorialStepInstance/tick ()V +MD: net/minecraft/client/tutorial/OpenInventoryTutorialStep/ ()V net/minecraft/client/tutorial/OpenInventoryTutorialStep/ ()V +MD: net/minecraft/client/tutorial/OpenInventoryTutorialStep/ (Lnet/minecraft/client/tutorial/Tutorial;)V net/minecraft/client/tutorial/OpenInventoryTutorialStep/ (Lnet/minecraft/client/tutorial/Tutorial;)V +MD: net/minecraft/client/tutorial/OpenInventoryTutorialStep/m_7736_ ()V net/minecraft/client/tutorial/OpenInventoryTutorialStep/clear ()V +MD: net/minecraft/client/tutorial/OpenInventoryTutorialStep/m_7737_ ()V net/minecraft/client/tutorial/OpenInventoryTutorialStep/tick ()V +MD: net/minecraft/client/tutorial/OpenInventoryTutorialStep/m_7744_ ()V net/minecraft/client/tutorial/OpenInventoryTutorialStep/onOpenInventory ()V +MD: net/minecraft/client/tutorial/PunchTreeTutorialStepInstance/ ()V net/minecraft/client/tutorial/PunchTreeTutorialStepInstance/ ()V +MD: net/minecraft/client/tutorial/PunchTreeTutorialStepInstance/ (Lnet/minecraft/client/tutorial/Tutorial;)V net/minecraft/client/tutorial/PunchTreeTutorialStepInstance/ (Lnet/minecraft/client/tutorial/Tutorial;)V +MD: net/minecraft/client/tutorial/PunchTreeTutorialStepInstance/m_6967_ (Lnet/minecraft/world/item/ItemStack;)V net/minecraft/client/tutorial/PunchTreeTutorialStepInstance/onGetItem (Lnet/minecraft/world/item/ItemStack;)V +MD: net/minecraft/client/tutorial/PunchTreeTutorialStepInstance/m_7464_ (Lnet/minecraft/client/multiplayer/ClientLevel;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;F)V net/minecraft/client/tutorial/PunchTreeTutorialStepInstance/onDestroyBlock (Lnet/minecraft/client/multiplayer/ClientLevel;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;F)V +MD: net/minecraft/client/tutorial/PunchTreeTutorialStepInstance/m_7736_ ()V net/minecraft/client/tutorial/PunchTreeTutorialStepInstance/clear ()V +MD: net/minecraft/client/tutorial/PunchTreeTutorialStepInstance/m_7737_ ()V net/minecraft/client/tutorial/PunchTreeTutorialStepInstance/tick ()V +MD: net/minecraft/client/tutorial/Tutorial/ (Lnet/minecraft/client/Minecraft;Lnet/minecraft/client/Options;)V net/minecraft/client/tutorial/Tutorial/ (Lnet/minecraft/client/Minecraft;Lnet/minecraft/client/Options;)V +MD: net/minecraft/client/tutorial/Tutorial/m_120564_ ()V net/minecraft/client/tutorial/Tutorial/onOpenInventory ()V +MD: net/minecraft/client/tutorial/Tutorial/m_120565_ (DD)V net/minecraft/client/tutorial/Tutorial/onMouse (DD)V +MD: net/minecraft/client/tutorial/Tutorial/m_120568_ (Lnet/minecraft/world/item/ItemStack;)V net/minecraft/client/tutorial/Tutorial/onGetItem (Lnet/minecraft/world/item/ItemStack;)V +MD: net/minecraft/client/tutorial/Tutorial/m_120570_ (Lnet/minecraft/client/gui/components/toasts/TutorialToast;)V net/minecraft/client/tutorial/Tutorial/removeTimedToast (Lnet/minecraft/client/gui/components/toasts/TutorialToast;)V +MD: net/minecraft/client/tutorial/Tutorial/m_120572_ (Lnet/minecraft/client/gui/components/toasts/TutorialToast;I)V net/minecraft/client/tutorial/Tutorial/addTimedToast (Lnet/minecraft/client/gui/components/toasts/TutorialToast;I)V +MD: net/minecraft/client/tutorial/Tutorial/m_120575_ (Lnet/minecraft/client/gui/components/toasts/TutorialToast;Lnet/minecraft/client/tutorial/Tutorial$TimedToast;)Z net/minecraft/client/tutorial/Tutorial/lambda$removeTimedToast$0 (Lnet/minecraft/client/gui/components/toasts/TutorialToast;Lnet/minecraft/client/tutorial/Tutorial$TimedToast;)Z +MD: net/minecraft/client/tutorial/Tutorial/m_120578_ (Lnet/minecraft/client/multiplayer/ClientLevel;Lnet/minecraft/world/phys/HitResult;)V net/minecraft/client/tutorial/Tutorial/onLookAt (Lnet/minecraft/client/multiplayer/ClientLevel;Lnet/minecraft/world/phys/HitResult;)V +MD: net/minecraft/client/tutorial/Tutorial/m_120581_ (Lnet/minecraft/client/multiplayer/ClientLevel;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;F)V net/minecraft/client/tutorial/Tutorial/onDestroyBlock (Lnet/minecraft/client/multiplayer/ClientLevel;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;F)V +MD: net/minecraft/client/tutorial/Tutorial/m_120586_ (Lnet/minecraft/client/player/Input;)V net/minecraft/client/tutorial/Tutorial/onInput (Lnet/minecraft/client/player/Input;)V +MD: net/minecraft/client/tutorial/Tutorial/m_120588_ (Lnet/minecraft/client/tutorial/TutorialSteps;)V net/minecraft/client/tutorial/Tutorial/setStep (Lnet/minecraft/client/tutorial/TutorialSteps;)V +MD: net/minecraft/client/tutorial/Tutorial/m_120592_ (Ljava/lang/String;)Lnet/minecraft/network/chat/Component; net/minecraft/client/tutorial/Tutorial/key (Ljava/lang/String;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/client/tutorial/Tutorial/m_120594_ ()V net/minecraft/client/tutorial/Tutorial/stop ()V +MD: net/minecraft/client/tutorial/Tutorial/m_120595_ ()V net/minecraft/client/tutorial/Tutorial/start ()V +MD: net/minecraft/client/tutorial/Tutorial/m_120596_ ()V net/minecraft/client/tutorial/Tutorial/tick ()V +MD: net/minecraft/client/tutorial/Tutorial/m_120597_ ()Lnet/minecraft/client/Minecraft; net/minecraft/client/tutorial/Tutorial/getMinecraft ()Lnet/minecraft/client/Minecraft; +MD: net/minecraft/client/tutorial/Tutorial/m_175024_ (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/inventory/ClickAction;)V net/minecraft/client/tutorial/Tutorial/onInventoryAction (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/inventory/ClickAction;)V +MD: net/minecraft/client/tutorial/Tutorial/m_175028_ ()Z net/minecraft/client/tutorial/Tutorial/isSurvival ()Z +MD: net/minecraft/client/tutorial/Tutorial$TimedToast/ (Lnet/minecraft/client/gui/components/toasts/TutorialToast;I)V net/minecraft/client/tutorial/Tutorial$TimedToast/ (Lnet/minecraft/client/gui/components/toasts/TutorialToast;I)V +MD: net/minecraft/client/tutorial/Tutorial$TimedToast/m_120609_ ()Z net/minecraft/client/tutorial/Tutorial$TimedToast/updateProgress ()Z +MD: net/minecraft/client/tutorial/TutorialStepInstance/m_6420_ (DD)V net/minecraft/client/tutorial/TutorialStepInstance/onMouse (DD)V +MD: net/minecraft/client/tutorial/TutorialStepInstance/m_6484_ (Lnet/minecraft/client/player/Input;)V net/minecraft/client/tutorial/TutorialStepInstance/onInput (Lnet/minecraft/client/player/Input;)V +MD: net/minecraft/client/tutorial/TutorialStepInstance/m_6967_ (Lnet/minecraft/world/item/ItemStack;)V net/minecraft/client/tutorial/TutorialStepInstance/onGetItem (Lnet/minecraft/world/item/ItemStack;)V +MD: net/minecraft/client/tutorial/TutorialStepInstance/m_7464_ (Lnet/minecraft/client/multiplayer/ClientLevel;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;F)V net/minecraft/client/tutorial/TutorialStepInstance/onDestroyBlock (Lnet/minecraft/client/multiplayer/ClientLevel;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;F)V +MD: net/minecraft/client/tutorial/TutorialStepInstance/m_7554_ (Lnet/minecraft/client/multiplayer/ClientLevel;Lnet/minecraft/world/phys/HitResult;)V net/minecraft/client/tutorial/TutorialStepInstance/onLookAt (Lnet/minecraft/client/multiplayer/ClientLevel;Lnet/minecraft/world/phys/HitResult;)V +MD: net/minecraft/client/tutorial/TutorialStepInstance/m_7736_ ()V net/minecraft/client/tutorial/TutorialStepInstance/clear ()V +MD: net/minecraft/client/tutorial/TutorialStepInstance/m_7737_ ()V net/minecraft/client/tutorial/TutorialStepInstance/tick ()V +MD: net/minecraft/client/tutorial/TutorialStepInstance/m_7744_ ()V net/minecraft/client/tutorial/TutorialStepInstance/onOpenInventory ()V +MD: net/minecraft/client/tutorial/TutorialSteps/ ()V net/minecraft/client/tutorial/TutorialSteps/ ()V +MD: net/minecraft/client/tutorial/TutorialSteps/ (Ljava/lang/String;ILjava/lang/String;Ljava/util/function/Function;)V net/minecraft/client/tutorial/TutorialSteps/ (Ljava/lang/String;ILjava/lang/String;Ljava/util/function/Function;)V +MD: net/minecraft/client/tutorial/TutorialSteps/m_120639_ ()Ljava/lang/String; net/minecraft/client/tutorial/TutorialSteps/getName ()Ljava/lang/String; +MD: net/minecraft/client/tutorial/TutorialSteps/m_120640_ (Lnet/minecraft/client/tutorial/Tutorial;)Lnet/minecraft/client/tutorial/TutorialStepInstance; net/minecraft/client/tutorial/TutorialSteps/create (Lnet/minecraft/client/tutorial/Tutorial;)Lnet/minecraft/client/tutorial/TutorialStepInstance; +MD: net/minecraft/client/tutorial/TutorialSteps/m_120642_ (Ljava/lang/String;)Lnet/minecraft/client/tutorial/TutorialSteps; net/minecraft/client/tutorial/TutorialSteps/getByName (Ljava/lang/String;)Lnet/minecraft/client/tutorial/TutorialSteps; +MD: net/minecraft/client/tutorial/TutorialSteps/m_175029_ ()[Lnet/minecraft/client/tutorial/TutorialSteps; net/minecraft/client/tutorial/TutorialSteps/$values ()[Lnet/minecraft/client/tutorial/TutorialSteps; +MD: net/minecraft/client/tutorial/TutorialSteps/valueOf (Ljava/lang/String;)Lnet/minecraft/client/tutorial/TutorialSteps; net/minecraft/client/tutorial/TutorialSteps/valueOf (Ljava/lang/String;)Lnet/minecraft/client/tutorial/TutorialSteps; +MD: net/minecraft/client/tutorial/TutorialSteps/values ()[Lnet/minecraft/client/tutorial/TutorialSteps; net/minecraft/client/tutorial/TutorialSteps/values ()[Lnet/minecraft/client/tutorial/TutorialSteps; +MD: net/minecraft/commands/BrigadierExceptions/ ()V net/minecraft/commands/BrigadierExceptions/ ()V +MD: net/minecraft/commands/BrigadierExceptions/ ()V net/minecraft/commands/BrigadierExceptions/ ()V +MD: net/minecraft/commands/BrigadierExceptions/dispatcherExpectedArgumentSeparator ()Lcom/mojang/brigadier/exceptions/SimpleCommandExceptionType; net/minecraft/commands/BrigadierExceptions/dispatcherExpectedArgumentSeparator ()Lcom/mojang/brigadier/exceptions/SimpleCommandExceptionType; +MD: net/minecraft/commands/BrigadierExceptions/dispatcherParseException ()Lcom/mojang/brigadier/exceptions/DynamicCommandExceptionType; net/minecraft/commands/BrigadierExceptions/dispatcherParseException ()Lcom/mojang/brigadier/exceptions/DynamicCommandExceptionType; +MD: net/minecraft/commands/BrigadierExceptions/dispatcherUnknownArgument ()Lcom/mojang/brigadier/exceptions/SimpleCommandExceptionType; net/minecraft/commands/BrigadierExceptions/dispatcherUnknownArgument ()Lcom/mojang/brigadier/exceptions/SimpleCommandExceptionType; +MD: net/minecraft/commands/BrigadierExceptions/dispatcherUnknownCommand ()Lcom/mojang/brigadier/exceptions/SimpleCommandExceptionType; net/minecraft/commands/BrigadierExceptions/dispatcherUnknownCommand ()Lcom/mojang/brigadier/exceptions/SimpleCommandExceptionType; +MD: net/minecraft/commands/BrigadierExceptions/doubleTooHigh ()Lcom/mojang/brigadier/exceptions/Dynamic2CommandExceptionType; net/minecraft/commands/BrigadierExceptions/doubleTooHigh ()Lcom/mojang/brigadier/exceptions/Dynamic2CommandExceptionType; +MD: net/minecraft/commands/BrigadierExceptions/doubleTooLow ()Lcom/mojang/brigadier/exceptions/Dynamic2CommandExceptionType; net/minecraft/commands/BrigadierExceptions/doubleTooLow ()Lcom/mojang/brigadier/exceptions/Dynamic2CommandExceptionType; +MD: net/minecraft/commands/BrigadierExceptions/floatTooHigh ()Lcom/mojang/brigadier/exceptions/Dynamic2CommandExceptionType; net/minecraft/commands/BrigadierExceptions/floatTooHigh ()Lcom/mojang/brigadier/exceptions/Dynamic2CommandExceptionType; +MD: net/minecraft/commands/BrigadierExceptions/floatTooLow ()Lcom/mojang/brigadier/exceptions/Dynamic2CommandExceptionType; net/minecraft/commands/BrigadierExceptions/floatTooLow ()Lcom/mojang/brigadier/exceptions/Dynamic2CommandExceptionType; +MD: net/minecraft/commands/BrigadierExceptions/integerTooHigh ()Lcom/mojang/brigadier/exceptions/Dynamic2CommandExceptionType; net/minecraft/commands/BrigadierExceptions/integerTooHigh ()Lcom/mojang/brigadier/exceptions/Dynamic2CommandExceptionType; +MD: net/minecraft/commands/BrigadierExceptions/integerTooLow ()Lcom/mojang/brigadier/exceptions/Dynamic2CommandExceptionType; net/minecraft/commands/BrigadierExceptions/integerTooLow ()Lcom/mojang/brigadier/exceptions/Dynamic2CommandExceptionType; +MD: net/minecraft/commands/BrigadierExceptions/literalIncorrect ()Lcom/mojang/brigadier/exceptions/DynamicCommandExceptionType; net/minecraft/commands/BrigadierExceptions/literalIncorrect ()Lcom/mojang/brigadier/exceptions/DynamicCommandExceptionType; +MD: net/minecraft/commands/BrigadierExceptions/longTooHigh ()Lcom/mojang/brigadier/exceptions/Dynamic2CommandExceptionType; net/minecraft/commands/BrigadierExceptions/longTooHigh ()Lcom/mojang/brigadier/exceptions/Dynamic2CommandExceptionType; +MD: net/minecraft/commands/BrigadierExceptions/longTooLow ()Lcom/mojang/brigadier/exceptions/Dynamic2CommandExceptionType; net/minecraft/commands/BrigadierExceptions/longTooLow ()Lcom/mojang/brigadier/exceptions/Dynamic2CommandExceptionType; +MD: net/minecraft/commands/BrigadierExceptions/m_77157_ (Ljava/lang/Object;)Lcom/mojang/brigadier/Message; net/minecraft/commands/BrigadierExceptions/lambda$static$16 (Ljava/lang/Object;)Lcom/mojang/brigadier/Message; +MD: net/minecraft/commands/BrigadierExceptions/m_77159_ (Ljava/lang/Object;Ljava/lang/Object;)Lcom/mojang/brigadier/Message; net/minecraft/commands/BrigadierExceptions/lambda$static$7 (Ljava/lang/Object;Ljava/lang/Object;)Lcom/mojang/brigadier/Message; +MD: net/minecraft/commands/BrigadierExceptions/m_77162_ (Ljava/lang/Object;)Lcom/mojang/brigadier/Message; net/minecraft/commands/BrigadierExceptions/lambda$static$15 (Ljava/lang/Object;)Lcom/mojang/brigadier/Message; +MD: net/minecraft/commands/BrigadierExceptions/m_77164_ (Ljava/lang/Object;Ljava/lang/Object;)Lcom/mojang/brigadier/Message; net/minecraft/commands/BrigadierExceptions/lambda$static$6 (Ljava/lang/Object;Ljava/lang/Object;)Lcom/mojang/brigadier/Message; +MD: net/minecraft/commands/BrigadierExceptions/m_77167_ (Ljava/lang/Object;)Lcom/mojang/brigadier/Message; net/minecraft/commands/BrigadierExceptions/lambda$static$14 (Ljava/lang/Object;)Lcom/mojang/brigadier/Message; +MD: net/minecraft/commands/BrigadierExceptions/m_77169_ (Ljava/lang/Object;Ljava/lang/Object;)Lcom/mojang/brigadier/Message; net/minecraft/commands/BrigadierExceptions/lambda$static$5 (Ljava/lang/Object;Ljava/lang/Object;)Lcom/mojang/brigadier/Message; +MD: net/minecraft/commands/BrigadierExceptions/m_77172_ (Ljava/lang/Object;)Lcom/mojang/brigadier/Message; net/minecraft/commands/BrigadierExceptions/lambda$static$13 (Ljava/lang/Object;)Lcom/mojang/brigadier/Message; +MD: net/minecraft/commands/BrigadierExceptions/m_77174_ (Ljava/lang/Object;Ljava/lang/Object;)Lcom/mojang/brigadier/Message; net/minecraft/commands/BrigadierExceptions/lambda$static$4 (Ljava/lang/Object;Ljava/lang/Object;)Lcom/mojang/brigadier/Message; +MD: net/minecraft/commands/BrigadierExceptions/m_77183_ (Ljava/lang/Object;)Lcom/mojang/brigadier/Message; net/minecraft/commands/BrigadierExceptions/lambda$static$12 (Ljava/lang/Object;)Lcom/mojang/brigadier/Message; +MD: net/minecraft/commands/BrigadierExceptions/m_77185_ (Ljava/lang/Object;Ljava/lang/Object;)Lcom/mojang/brigadier/Message; net/minecraft/commands/BrigadierExceptions/lambda$static$3 (Ljava/lang/Object;Ljava/lang/Object;)Lcom/mojang/brigadier/Message; +MD: net/minecraft/commands/BrigadierExceptions/m_77188_ (Ljava/lang/Object;)Lcom/mojang/brigadier/Message; net/minecraft/commands/BrigadierExceptions/lambda$static$11 (Ljava/lang/Object;)Lcom/mojang/brigadier/Message; +MD: net/minecraft/commands/BrigadierExceptions/m_77190_ (Ljava/lang/Object;Ljava/lang/Object;)Lcom/mojang/brigadier/Message; net/minecraft/commands/BrigadierExceptions/lambda$static$2 (Ljava/lang/Object;Ljava/lang/Object;)Lcom/mojang/brigadier/Message; +MD: net/minecraft/commands/BrigadierExceptions/m_77195_ (Ljava/lang/Object;)Lcom/mojang/brigadier/Message; net/minecraft/commands/BrigadierExceptions/lambda$static$10 (Ljava/lang/Object;)Lcom/mojang/brigadier/Message; +MD: net/minecraft/commands/BrigadierExceptions/m_77197_ (Ljava/lang/Object;Ljava/lang/Object;)Lcom/mojang/brigadier/Message; net/minecraft/commands/BrigadierExceptions/lambda$static$1 (Ljava/lang/Object;Ljava/lang/Object;)Lcom/mojang/brigadier/Message; +MD: net/minecraft/commands/BrigadierExceptions/m_77200_ (Ljava/lang/Object;)Lcom/mojang/brigadier/Message; net/minecraft/commands/BrigadierExceptions/lambda$static$9 (Ljava/lang/Object;)Lcom/mojang/brigadier/Message; +MD: net/minecraft/commands/BrigadierExceptions/m_77202_ (Ljava/lang/Object;Ljava/lang/Object;)Lcom/mojang/brigadier/Message; net/minecraft/commands/BrigadierExceptions/lambda$static$0 (Ljava/lang/Object;Ljava/lang/Object;)Lcom/mojang/brigadier/Message; +MD: net/minecraft/commands/BrigadierExceptions/m_77205_ (Ljava/lang/Object;)Lcom/mojang/brigadier/Message; net/minecraft/commands/BrigadierExceptions/lambda$static$8 (Ljava/lang/Object;)Lcom/mojang/brigadier/Message; +MD: net/minecraft/commands/BrigadierExceptions/readerExpectedBool ()Lcom/mojang/brigadier/exceptions/SimpleCommandExceptionType; net/minecraft/commands/BrigadierExceptions/readerExpectedBool ()Lcom/mojang/brigadier/exceptions/SimpleCommandExceptionType; +MD: net/minecraft/commands/BrigadierExceptions/readerExpectedDouble ()Lcom/mojang/brigadier/exceptions/SimpleCommandExceptionType; net/minecraft/commands/BrigadierExceptions/readerExpectedDouble ()Lcom/mojang/brigadier/exceptions/SimpleCommandExceptionType; +MD: net/minecraft/commands/BrigadierExceptions/readerExpectedEndOfQuote ()Lcom/mojang/brigadier/exceptions/SimpleCommandExceptionType; net/minecraft/commands/BrigadierExceptions/readerExpectedEndOfQuote ()Lcom/mojang/brigadier/exceptions/SimpleCommandExceptionType; +MD: net/minecraft/commands/BrigadierExceptions/readerExpectedFloat ()Lcom/mojang/brigadier/exceptions/SimpleCommandExceptionType; net/minecraft/commands/BrigadierExceptions/readerExpectedFloat ()Lcom/mojang/brigadier/exceptions/SimpleCommandExceptionType; +MD: net/minecraft/commands/BrigadierExceptions/readerExpectedInt ()Lcom/mojang/brigadier/exceptions/SimpleCommandExceptionType; net/minecraft/commands/BrigadierExceptions/readerExpectedInt ()Lcom/mojang/brigadier/exceptions/SimpleCommandExceptionType; +MD: net/minecraft/commands/BrigadierExceptions/readerExpectedLong ()Lcom/mojang/brigadier/exceptions/SimpleCommandExceptionType; net/minecraft/commands/BrigadierExceptions/readerExpectedLong ()Lcom/mojang/brigadier/exceptions/SimpleCommandExceptionType; +MD: net/minecraft/commands/BrigadierExceptions/readerExpectedStartOfQuote ()Lcom/mojang/brigadier/exceptions/SimpleCommandExceptionType; net/minecraft/commands/BrigadierExceptions/readerExpectedStartOfQuote ()Lcom/mojang/brigadier/exceptions/SimpleCommandExceptionType; +MD: net/minecraft/commands/BrigadierExceptions/readerExpectedSymbol ()Lcom/mojang/brigadier/exceptions/DynamicCommandExceptionType; net/minecraft/commands/BrigadierExceptions/readerExpectedSymbol ()Lcom/mojang/brigadier/exceptions/DynamicCommandExceptionType; +MD: net/minecraft/commands/BrigadierExceptions/readerInvalidBool ()Lcom/mojang/brigadier/exceptions/DynamicCommandExceptionType; net/minecraft/commands/BrigadierExceptions/readerInvalidBool ()Lcom/mojang/brigadier/exceptions/DynamicCommandExceptionType; +MD: net/minecraft/commands/BrigadierExceptions/readerInvalidDouble ()Lcom/mojang/brigadier/exceptions/DynamicCommandExceptionType; net/minecraft/commands/BrigadierExceptions/readerInvalidDouble ()Lcom/mojang/brigadier/exceptions/DynamicCommandExceptionType; +MD: net/minecraft/commands/BrigadierExceptions/readerInvalidEscape ()Lcom/mojang/brigadier/exceptions/DynamicCommandExceptionType; net/minecraft/commands/BrigadierExceptions/readerInvalidEscape ()Lcom/mojang/brigadier/exceptions/DynamicCommandExceptionType; +MD: net/minecraft/commands/BrigadierExceptions/readerInvalidFloat ()Lcom/mojang/brigadier/exceptions/DynamicCommandExceptionType; net/minecraft/commands/BrigadierExceptions/readerInvalidFloat ()Lcom/mojang/brigadier/exceptions/DynamicCommandExceptionType; +MD: net/minecraft/commands/BrigadierExceptions/readerInvalidInt ()Lcom/mojang/brigadier/exceptions/DynamicCommandExceptionType; net/minecraft/commands/BrigadierExceptions/readerInvalidInt ()Lcom/mojang/brigadier/exceptions/DynamicCommandExceptionType; +MD: net/minecraft/commands/BrigadierExceptions/readerInvalidLong ()Lcom/mojang/brigadier/exceptions/DynamicCommandExceptionType; net/minecraft/commands/BrigadierExceptions/readerInvalidLong ()Lcom/mojang/brigadier/exceptions/DynamicCommandExceptionType; +MD: net/minecraft/commands/CommandBuildContext/m_227133_ (Lnet/minecraft/resources/ResourceKey;)Lnet/minecraft/core/HolderLookup; net/minecraft/commands/CommandBuildContext/holderLookup (Lnet/minecraft/resources/ResourceKey;)Lnet/minecraft/core/HolderLookup; +MD: net/minecraft/commands/CommandBuildContext/m_255409_ (Lnet/minecraft/core/RegistryAccess;Lnet/minecraft/world/flag/FeatureFlagSet;)Lnet/minecraft/commands/CommandBuildContext$Configurable; net/minecraft/commands/CommandBuildContext/configurable (Lnet/minecraft/core/RegistryAccess;Lnet/minecraft/world/flag/FeatureFlagSet;)Lnet/minecraft/commands/CommandBuildContext$Configurable; +MD: net/minecraft/commands/CommandBuildContext/m_255418_ (Lnet/minecraft/core/HolderLookup$Provider;Lnet/minecraft/world/flag/FeatureFlagSet;)Lnet/minecraft/commands/CommandBuildContext; net/minecraft/commands/CommandBuildContext/simple (Lnet/minecraft/core/HolderLookup$Provider;Lnet/minecraft/world/flag/FeatureFlagSet;)Lnet/minecraft/commands/CommandBuildContext; +MD: net/minecraft/commands/CommandBuildContext$1/ (Lnet/minecraft/core/HolderLookup$Provider;Lnet/minecraft/world/flag/FeatureFlagSet;)V net/minecraft/commands/CommandBuildContext$1/ (Lnet/minecraft/core/HolderLookup$Provider;Lnet/minecraft/world/flag/FeatureFlagSet;)V +MD: net/minecraft/commands/CommandBuildContext$1/m_227133_ (Lnet/minecraft/resources/ResourceKey;)Lnet/minecraft/core/HolderLookup; net/minecraft/commands/CommandBuildContext$1/holderLookup (Lnet/minecraft/resources/ResourceKey;)Lnet/minecraft/core/HolderLookup; +MD: net/minecraft/commands/CommandBuildContext$2/ (Lnet/minecraft/core/RegistryAccess;Lnet/minecraft/world/flag/FeatureFlagSet;)V net/minecraft/commands/CommandBuildContext$2/ (Lnet/minecraft/core/RegistryAccess;Lnet/minecraft/world/flag/FeatureFlagSet;)V +MD: net/minecraft/commands/CommandBuildContext$2/m_227133_ (Lnet/minecraft/resources/ResourceKey;)Lnet/minecraft/core/HolderLookup; net/minecraft/commands/CommandBuildContext$2/holderLookup (Lnet/minecraft/resources/ResourceKey;)Lnet/minecraft/core/HolderLookup; +MD: net/minecraft/commands/CommandBuildContext$2/m_254905_ (Lnet/minecraft/commands/CommandBuildContext$MissingTagAccessPolicy;)V net/minecraft/commands/CommandBuildContext$2/missingTagAccessPolicy (Lnet/minecraft/commands/CommandBuildContext$MissingTagAccessPolicy;)V +MD: net/minecraft/commands/CommandBuildContext$2$1/ (Lnet/minecraft/commands/CommandBuildContext$2;Lnet/minecraft/core/HolderLookup$RegistryLookup;Lnet/minecraft/core/HolderLookup$RegistryLookup;)V net/minecraft/commands/CommandBuildContext$2$1/ (Lnet/minecraft/commands/CommandBuildContext$2;Lnet/minecraft/core/HolderLookup$RegistryLookup;Lnet/minecraft/core/HolderLookup$RegistryLookup;)V +MD: net/minecraft/commands/CommandBuildContext$2$1/m_254893_ ()Lnet/minecraft/core/HolderLookup$RegistryLookup; net/minecraft/commands/CommandBuildContext$2$1/parent ()Lnet/minecraft/core/HolderLookup$RegistryLookup; +MD: net/minecraft/commands/CommandBuildContext$3/ ()V net/minecraft/commands/CommandBuildContext$3/ ()V +MD: net/minecraft/commands/CommandBuildContext$Configurable/m_254905_ (Lnet/minecraft/commands/CommandBuildContext$MissingTagAccessPolicy;)V net/minecraft/commands/CommandBuildContext$Configurable/missingTagAccessPolicy (Lnet/minecraft/commands/CommandBuildContext$MissingTagAccessPolicy;)V +MD: net/minecraft/commands/CommandBuildContext$MissingTagAccessPolicy/ ()V net/minecraft/commands/CommandBuildContext$MissingTagAccessPolicy/ ()V +MD: net/minecraft/commands/CommandBuildContext$MissingTagAccessPolicy/ (Ljava/lang/String;I)V net/minecraft/commands/CommandBuildContext$MissingTagAccessPolicy/ (Ljava/lang/String;I)V +MD: net/minecraft/commands/CommandBuildContext$MissingTagAccessPolicy/m_227153_ ()[Lnet/minecraft/commands/CommandBuildContext$MissingTagAccessPolicy; net/minecraft/commands/CommandBuildContext$MissingTagAccessPolicy/$values ()[Lnet/minecraft/commands/CommandBuildContext$MissingTagAccessPolicy; +MD: net/minecraft/commands/CommandBuildContext$MissingTagAccessPolicy/valueOf (Ljava/lang/String;)Lnet/minecraft/commands/CommandBuildContext$MissingTagAccessPolicy; net/minecraft/commands/CommandBuildContext$MissingTagAccessPolicy/valueOf (Ljava/lang/String;)Lnet/minecraft/commands/CommandBuildContext$MissingTagAccessPolicy; +MD: net/minecraft/commands/CommandBuildContext$MissingTagAccessPolicy/values ()[Lnet/minecraft/commands/CommandBuildContext$MissingTagAccessPolicy; net/minecraft/commands/CommandBuildContext$MissingTagAccessPolicy/values ()[Lnet/minecraft/commands/CommandBuildContext$MissingTagAccessPolicy; +MD: net/minecraft/commands/CommandFunction/ (Lnet/minecraft/resources/ResourceLocation;[Lnet/minecraft/commands/CommandFunction$Entry;)V net/minecraft/commands/CommandFunction/ (Lnet/minecraft/resources/ResourceLocation;[Lnet/minecraft/commands/CommandFunction$Entry;)V +MD: net/minecraft/commands/CommandFunction/m_77981_ ()Lnet/minecraft/resources/ResourceLocation; net/minecraft/commands/CommandFunction/getId ()Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/commands/CommandFunction/m_77984_ (Lnet/minecraft/resources/ResourceLocation;Lcom/mojang/brigadier/CommandDispatcher;Lnet/minecraft/commands/CommandSourceStack;Ljava/util/List;)Lnet/minecraft/commands/CommandFunction; net/minecraft/commands/CommandFunction/fromLines (Lnet/minecraft/resources/ResourceLocation;Lcom/mojang/brigadier/CommandDispatcher;Lnet/minecraft/commands/CommandSourceStack;Ljava/util/List;)Lnet/minecraft/commands/CommandFunction; +MD: net/minecraft/commands/CommandFunction/m_77989_ ()[Lnet/minecraft/commands/CommandFunction$Entry; net/minecraft/commands/CommandFunction/getEntries ()[Lnet/minecraft/commands/CommandFunction$Entry; +MD: net/minecraft/commands/CommandFunction$CacheableFunction/ ()V net/minecraft/commands/CommandFunction$CacheableFunction/ ()V +MD: net/minecraft/commands/CommandFunction$CacheableFunction/ (Lnet/minecraft/commands/CommandFunction;)V net/minecraft/commands/CommandFunction$CacheableFunction/ (Lnet/minecraft/commands/CommandFunction;)V +MD: net/minecraft/commands/CommandFunction$CacheableFunction/ (Lnet/minecraft/resources/ResourceLocation;)V net/minecraft/commands/CommandFunction$CacheableFunction/ (Lnet/minecraft/resources/ResourceLocation;)V +MD: net/minecraft/commands/CommandFunction$CacheableFunction/m_77999_ ()Lnet/minecraft/resources/ResourceLocation; net/minecraft/commands/CommandFunction$CacheableFunction/getId ()Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/commands/CommandFunction$CacheableFunction/m_78000_ (Lnet/minecraft/commands/CommandFunction;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/commands/CommandFunction$CacheableFunction/lambda$getId$0 (Lnet/minecraft/commands/CommandFunction;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/commands/CommandFunction$CacheableFunction/m_78002_ (Lnet/minecraft/server/ServerFunctionManager;)Ljava/util/Optional; net/minecraft/commands/CommandFunction$CacheableFunction/get (Lnet/minecraft/server/ServerFunctionManager;)Ljava/util/Optional; +MD: net/minecraft/commands/CommandFunction$CommandEntry/ (Lcom/mojang/brigadier/ParseResults;)V net/minecraft/commands/CommandFunction$CommandEntry/ (Lcom/mojang/brigadier/ParseResults;)V +MD: net/minecraft/commands/CommandFunction$CommandEntry/m_142134_ (Lnet/minecraft/server/ServerFunctionManager;Lnet/minecraft/commands/CommandSourceStack;Ljava/util/Deque;IILnet/minecraft/server/ServerFunctionManager$TraceCallbacks;)V net/minecraft/commands/CommandFunction$CommandEntry/execute (Lnet/minecraft/server/ServerFunctionManager;Lnet/minecraft/commands/CommandSourceStack;Ljava/util/Deque;IILnet/minecraft/server/ServerFunctionManager$TraceCallbacks;)V +MD: net/minecraft/commands/CommandFunction$CommandEntry/m_164875_ (Lnet/minecraft/server/ServerFunctionManager;Lnet/minecraft/commands/CommandSourceStack;)I net/minecraft/commands/CommandFunction$CommandEntry/execute (Lnet/minecraft/server/ServerFunctionManager;Lnet/minecraft/commands/CommandSourceStack;)I +MD: net/minecraft/commands/CommandFunction$CommandEntry/m_242679_ (Lnet/minecraft/commands/CommandSourceStack;Lnet/minecraft/commands/CommandSourceStack;)Lnet/minecraft/commands/CommandSourceStack; net/minecraft/commands/CommandFunction$CommandEntry/lambda$execute$0 (Lnet/minecraft/commands/CommandSourceStack;Lnet/minecraft/commands/CommandSourceStack;)Lnet/minecraft/commands/CommandSourceStack; +MD: net/minecraft/commands/CommandFunction$CommandEntry/toString ()Ljava/lang/String; net/minecraft/commands/CommandFunction$CommandEntry/toString ()Ljava/lang/String; +MD: net/minecraft/commands/CommandFunction$Entry/m_142134_ (Lnet/minecraft/server/ServerFunctionManager;Lnet/minecraft/commands/CommandSourceStack;Ljava/util/Deque;IILnet/minecraft/server/ServerFunctionManager$TraceCallbacks;)V net/minecraft/commands/CommandFunction$Entry/execute (Lnet/minecraft/server/ServerFunctionManager;Lnet/minecraft/commands/CommandSourceStack;Ljava/util/Deque;IILnet/minecraft/server/ServerFunctionManager$TraceCallbacks;)V +MD: net/minecraft/commands/CommandFunction$FunctionEntry/ (Lnet/minecraft/commands/CommandFunction;)V net/minecraft/commands/CommandFunction$FunctionEntry/ (Lnet/minecraft/commands/CommandFunction;)V +MD: net/minecraft/commands/CommandFunction$FunctionEntry/m_142134_ (Lnet/minecraft/server/ServerFunctionManager;Lnet/minecraft/commands/CommandSourceStack;Ljava/util/Deque;IILnet/minecraft/server/ServerFunctionManager$TraceCallbacks;)V net/minecraft/commands/CommandFunction$FunctionEntry/execute (Lnet/minecraft/server/ServerFunctionManager;Lnet/minecraft/commands/CommandSourceStack;Ljava/util/Deque;IILnet/minecraft/server/ServerFunctionManager$TraceCallbacks;)V +MD: net/minecraft/commands/CommandFunction$FunctionEntry/m_164891_ (Lnet/minecraft/server/ServerFunctionManager$TraceCallbacks;I)V net/minecraft/commands/CommandFunction$FunctionEntry/lambda$execute$1 (Lnet/minecraft/server/ServerFunctionManager$TraceCallbacks;I)V +MD: net/minecraft/commands/CommandFunction$FunctionEntry/m_164894_ (Lnet/minecraft/server/ServerFunctionManager$TraceCallbacks;IILjava/util/Deque;Lnet/minecraft/commands/CommandSourceStack;Lnet/minecraft/commands/CommandFunction;)V net/minecraft/commands/CommandFunction$FunctionEntry/lambda$execute$0 (Lnet/minecraft/server/ServerFunctionManager$TraceCallbacks;IILjava/util/Deque;Lnet/minecraft/commands/CommandSourceStack;Lnet/minecraft/commands/CommandFunction;)V +MD: net/minecraft/commands/CommandFunction$FunctionEntry/toString ()Ljava/lang/String; net/minecraft/commands/CommandFunction$FunctionEntry/toString ()Ljava/lang/String; +MD: net/minecraft/commands/CommandRuntimeException/ (Lnet/minecraft/network/chat/Component;)V net/minecraft/commands/CommandRuntimeException/ (Lnet/minecraft/network/chat/Component;)V +MD: net/minecraft/commands/CommandRuntimeException/m_79226_ ()Lnet/minecraft/network/chat/Component; net/minecraft/commands/CommandRuntimeException/getComponent ()Lnet/minecraft/network/chat/Component; +MD: net/minecraft/commands/CommandSigningContext/ ()V net/minecraft/commands/CommandSigningContext/ ()V +MD: net/minecraft/commands/CommandSigningContext/m_213987_ (Ljava/lang/String;)Lnet/minecraft/network/chat/PlayerChatMessage; net/minecraft/commands/CommandSigningContext/getArgument (Ljava/lang/String;)Lnet/minecraft/network/chat/PlayerChatMessage; +MD: net/minecraft/commands/CommandSigningContext$1/ ()V net/minecraft/commands/CommandSigningContext$1/ ()V +MD: net/minecraft/commands/CommandSigningContext$1/m_213987_ (Ljava/lang/String;)Lnet/minecraft/network/chat/PlayerChatMessage; net/minecraft/commands/CommandSigningContext$1/getArgument (Ljava/lang/String;)Lnet/minecraft/network/chat/PlayerChatMessage; +MD: net/minecraft/commands/CommandSigningContext$SignedArguments/ (Ljava/util/Map;)V net/minecraft/commands/CommandSigningContext$SignedArguments/ (Ljava/util/Map;)V +MD: net/minecraft/commands/CommandSigningContext$SignedArguments/equals (Ljava/lang/Object;)Z net/minecraft/commands/CommandSigningContext$SignedArguments/equals (Ljava/lang/Object;)Z +MD: net/minecraft/commands/CommandSigningContext$SignedArguments/f_242498_ ()Ljava/util/Map; net/minecraft/commands/CommandSigningContext$SignedArguments/arguments ()Ljava/util/Map; +MD: net/minecraft/commands/CommandSigningContext$SignedArguments/hashCode ()I net/minecraft/commands/CommandSigningContext$SignedArguments/hashCode ()I +MD: net/minecraft/commands/CommandSigningContext$SignedArguments/m_213987_ (Ljava/lang/String;)Lnet/minecraft/network/chat/PlayerChatMessage; net/minecraft/commands/CommandSigningContext$SignedArguments/getArgument (Ljava/lang/String;)Lnet/minecraft/network/chat/PlayerChatMessage; +MD: net/minecraft/commands/CommandSigningContext$SignedArguments/toString ()Ljava/lang/String; net/minecraft/commands/CommandSigningContext$SignedArguments/toString ()Ljava/lang/String; +MD: net/minecraft/commands/CommandSource/ ()V net/minecraft/commands/CommandSource/ ()V +MD: net/minecraft/commands/CommandSource/m_142559_ ()Z net/minecraft/commands/CommandSource/alwaysAccepts ()Z +MD: net/minecraft/commands/CommandSource/m_213846_ (Lnet/minecraft/network/chat/Component;)V net/minecraft/commands/CommandSource/sendSystemMessage (Lnet/minecraft/network/chat/Component;)V +MD: net/minecraft/commands/CommandSource/m_6102_ ()Z net/minecraft/commands/CommandSource/shouldInformAdmins ()Z +MD: net/minecraft/commands/CommandSource/m_6999_ ()Z net/minecraft/commands/CommandSource/acceptsSuccess ()Z +MD: net/minecraft/commands/CommandSource/m_7028_ ()Z net/minecraft/commands/CommandSource/acceptsFailure ()Z +MD: net/minecraft/commands/CommandSource$1/ ()V net/minecraft/commands/CommandSource$1/ ()V +MD: net/minecraft/commands/CommandSource$1/m_213846_ (Lnet/minecraft/network/chat/Component;)V net/minecraft/commands/CommandSource$1/sendSystemMessage (Lnet/minecraft/network/chat/Component;)V +MD: net/minecraft/commands/CommandSource$1/m_6102_ ()Z net/minecraft/commands/CommandSource$1/shouldInformAdmins ()Z +MD: net/minecraft/commands/CommandSource$1/m_6999_ ()Z net/minecraft/commands/CommandSource$1/acceptsSuccess ()Z +MD: net/minecraft/commands/CommandSource$1/m_7028_ ()Z net/minecraft/commands/CommandSource$1/acceptsFailure ()Z +MD: net/minecraft/commands/CommandSourceStack/ ()V net/minecraft/commands/CommandSourceStack/ ()V +MD: net/minecraft/commands/CommandSourceStack/ (Lnet/minecraft/commands/CommandSource;Lnet/minecraft/world/phys/Vec3;Lnet/minecraft/world/phys/Vec2;Lnet/minecraft/server/level/ServerLevel;ILjava/lang/String;Lnet/minecraft/network/chat/Component;Lnet/minecraft/server/MinecraftServer;Lnet/minecraft/world/entity/Entity;)V net/minecraft/commands/CommandSourceStack/ (Lnet/minecraft/commands/CommandSource;Lnet/minecraft/world/phys/Vec3;Lnet/minecraft/world/phys/Vec2;Lnet/minecraft/server/level/ServerLevel;ILjava/lang/String;Lnet/minecraft/network/chat/Component;Lnet/minecraft/server/MinecraftServer;Lnet/minecraft/world/entity/Entity;)V +MD: net/minecraft/commands/CommandSourceStack/ (Lnet/minecraft/commands/CommandSource;Lnet/minecraft/world/phys/Vec3;Lnet/minecraft/world/phys/Vec2;Lnet/minecraft/server/level/ServerLevel;ILjava/lang/String;Lnet/minecraft/network/chat/Component;Lnet/minecraft/server/MinecraftServer;Lnet/minecraft/world/entity/Entity;ZLcom/mojang/brigadier/ResultConsumer;Lnet/minecraft/commands/arguments/EntityAnchorArgument$Anchor;Lnet/minecraft/commands/CommandSigningContext;Lnet/minecraft/util/TaskChainer;Ljava/util/function/IntConsumer;)V net/minecraft/commands/CommandSourceStack/ (Lnet/minecraft/commands/CommandSource;Lnet/minecraft/world/phys/Vec3;Lnet/minecraft/world/phys/Vec2;Lnet/minecraft/server/level/ServerLevel;ILjava/lang/String;Lnet/minecraft/network/chat/Component;Lnet/minecraft/server/MinecraftServer;Lnet/minecraft/world/entity/Entity;ZLcom/mojang/brigadier/ResultConsumer;Lnet/minecraft/commands/arguments/EntityAnchorArgument$Anchor;Lnet/minecraft/commands/CommandSigningContext;Lnet/minecraft/util/TaskChainer;Ljava/util/function/IntConsumer;)V +MD: net/minecraft/commands/CommandSourceStack/m_165484_ (Lnet/minecraft/commands/CommandSource;)Lnet/minecraft/commands/CommandSourceStack; net/minecraft/commands/CommandSourceStack/withSource (Lnet/minecraft/commands/CommandSource;)Lnet/minecraft/commands/CommandSourceStack; +MD: net/minecraft/commands/CommandSourceStack/m_212095_ (Lnet/minecraft/resources/ResourceKey;Lnet/minecraft/commands/SharedSuggestionProvider$ElementSuggestionType;Lcom/mojang/brigadier/suggestion/SuggestionsBuilder;Lcom/mojang/brigadier/context/CommandContext;)Ljava/util/concurrent/CompletableFuture; net/minecraft/commands/CommandSourceStack/suggestRegistryElements (Lnet/minecraft/resources/ResourceKey;Lnet/minecraft/commands/SharedSuggestionProvider$ElementSuggestionType;Lcom/mojang/brigadier/suggestion/SuggestionsBuilder;Lcom/mojang/brigadier/context/CommandContext;)Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/commands/CommandSourceStack/m_212155_ (Lcom/mojang/brigadier/context/CommandContext;)Ljava/util/concurrent/CompletableFuture; net/minecraft/commands/CommandSourceStack/customSuggestion (Lcom/mojang/brigadier/context/CommandContext;)Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/commands/CommandSourceStack/m_212325_ (Lnet/minecraft/commands/SharedSuggestionProvider$ElementSuggestionType;Lcom/mojang/brigadier/suggestion/SuggestionsBuilder;Lnet/minecraft/core/Registry;)Ljava/util/concurrent/CompletableFuture; net/minecraft/commands/CommandSourceStack/lambda$suggestRegistryElements$2 (Lnet/minecraft/commands/SharedSuggestionProvider$ElementSuggestionType;Lcom/mojang/brigadier/suggestion/SuggestionsBuilder;Lnet/minecraft/core/Registry;)Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/commands/CommandSourceStack/m_230893_ (Lnet/minecraft/commands/CommandSigningContext;)Lnet/minecraft/commands/CommandSourceStack; net/minecraft/commands/CommandSourceStack/withSigningContext (Lnet/minecraft/commands/CommandSigningContext;)Lnet/minecraft/commands/CommandSourceStack; +MD: net/minecraft/commands/CommandSourceStack/m_230896_ ()Lnet/minecraft/server/level/ServerPlayer; net/minecraft/commands/CommandSourceStack/getPlayer ()Lnet/minecraft/server/level/ServerPlayer; +MD: net/minecraft/commands/CommandSourceStack/m_230897_ ()Z net/minecraft/commands/CommandSourceStack/isPlayer ()Z +MD: net/minecraft/commands/CommandSourceStack/m_230898_ ()Lnet/minecraft/commands/CommandSigningContext; net/minecraft/commands/CommandSourceStack/getSigningContext ()Lnet/minecraft/commands/CommandSigningContext; +MD: net/minecraft/commands/CommandSourceStack/m_241923_ ()Lnet/minecraft/util/TaskChainer; net/minecraft/commands/CommandSourceStack/getChatMessageChainer ()Lnet/minecraft/util/TaskChainer; +MD: net/minecraft/commands/CommandSourceStack/m_241952_ (Lnet/minecraft/util/TaskChainer;)Lnet/minecraft/commands/CommandSourceStack; net/minecraft/commands/CommandSourceStack/withChatMessageChainer (Lnet/minecraft/util/TaskChainer;)Lnet/minecraft/commands/CommandSourceStack; +MD: net/minecraft/commands/CommandSourceStack/m_243053_ (Lnet/minecraft/network/chat/Component;)V net/minecraft/commands/CommandSourceStack/sendSystemMessage (Lnet/minecraft/network/chat/Component;)V +MD: net/minecraft/commands/CommandSourceStack/m_243061_ (Lnet/minecraft/server/level/ServerPlayer;)Z net/minecraft/commands/CommandSourceStack/shouldFilterMessageTo (Lnet/minecraft/server/level/ServerPlayer;)Z +MD: net/minecraft/commands/CommandSourceStack/m_245239_ ()Lnet/minecraft/world/flag/FeatureFlagSet; net/minecraft/commands/CommandSourceStack/enabledFeatures ()Lnet/minecraft/world/flag/FeatureFlagSet; +MD: net/minecraft/commands/CommandSourceStack/m_246719_ (Lnet/minecraft/network/chat/OutgoingChatMessage;ZLnet/minecraft/network/chat/ChatType$Bound;)V net/minecraft/commands/CommandSourceStack/sendChatMessage (Lnet/minecraft/network/chat/OutgoingChatMessage;ZLnet/minecraft/network/chat/ChatType$Bound;)V +MD: net/minecraft/commands/CommandSourceStack/m_279866_ (I)V net/minecraft/commands/CommandSourceStack/lambda$new$1 (I)V +MD: net/minecraft/commands/CommandSourceStack/m_280336_ ()Ljava/util/function/IntConsumer; net/minecraft/commands/CommandSourceStack/getReturnValueConsumer ()Ljava/util/function/IntConsumer; +MD: net/minecraft/commands/CommandSourceStack/m_280439_ (Ljava/util/function/IntConsumer;)Lnet/minecraft/commands/CommandSourceStack; net/minecraft/commands/CommandSourceStack/withReturnValueConsumer (Ljava/util/function/IntConsumer;)Lnet/minecraft/commands/CommandSourceStack; +MD: net/minecraft/commands/CommandSourceStack/m_288197_ (Ljava/util/function/Supplier;Z)V net/minecraft/commands/CommandSourceStack/sendSuccess (Ljava/util/function/Supplier;Z)V +MD: net/minecraft/commands/CommandSourceStack/m_5894_ ()Lnet/minecraft/core/RegistryAccess; net/minecraft/commands/CommandSourceStack/registryAccess ()Lnet/minecraft/core/RegistryAccess; +MD: net/minecraft/commands/CommandSourceStack/m_5982_ ()Ljava/util/Collection; net/minecraft/commands/CommandSourceStack/getOnlinePlayerNames ()Ljava/util/Collection; +MD: net/minecraft/commands/CommandSourceStack/m_5983_ ()Ljava/util/Collection; net/minecraft/commands/CommandSourceStack/getAllTeams ()Ljava/util/Collection; +MD: net/minecraft/commands/CommandSourceStack/m_5984_ ()Ljava/util/stream/Stream; net/minecraft/commands/CommandSourceStack/getAvailableSounds ()Ljava/util/stream/Stream; +MD: net/minecraft/commands/CommandSourceStack/m_6553_ ()Ljava/util/Set; net/minecraft/commands/CommandSourceStack/levels ()Ljava/util/Set; +MD: net/minecraft/commands/CommandSourceStack/m_6761_ (I)Z net/minecraft/commands/CommandSourceStack/hasPermission (I)Z +MD: net/minecraft/commands/CommandSourceStack/m_6860_ ()Ljava/util/stream/Stream; net/minecraft/commands/CommandSourceStack/getRecipeNames ()Ljava/util/stream/Stream; +MD: net/minecraft/commands/CommandSourceStack/m_81324_ ()Lnet/minecraft/commands/CommandSourceStack; net/minecraft/commands/CommandSourceStack/withSuppressedOutput ()Lnet/minecraft/commands/CommandSourceStack; +MD: net/minecraft/commands/CommandSourceStack/m_81325_ (I)Lnet/minecraft/commands/CommandSourceStack; net/minecraft/commands/CommandSourceStack/withPermission (I)Lnet/minecraft/commands/CommandSourceStack; +MD: net/minecraft/commands/CommandSourceStack/m_81327_ (Lnet/minecraft/server/level/ServerLevel;)Lnet/minecraft/commands/CommandSourceStack; net/minecraft/commands/CommandSourceStack/withLevel (Lnet/minecraft/server/level/ServerLevel;)Lnet/minecraft/commands/CommandSourceStack; +MD: net/minecraft/commands/CommandSourceStack/m_81329_ (Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/commands/CommandSourceStack; net/minecraft/commands/CommandSourceStack/withEntity (Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/commands/CommandSourceStack; +MD: net/minecraft/commands/CommandSourceStack/m_81331_ (Lnet/minecraft/world/entity/Entity;Lnet/minecraft/commands/arguments/EntityAnchorArgument$Anchor;)Lnet/minecraft/commands/CommandSourceStack; net/minecraft/commands/CommandSourceStack/facing (Lnet/minecraft/world/entity/Entity;Lnet/minecraft/commands/arguments/EntityAnchorArgument$Anchor;)Lnet/minecraft/commands/CommandSourceStack; +MD: net/minecraft/commands/CommandSourceStack/m_81334_ (Lcom/mojang/brigadier/ResultConsumer;)Lnet/minecraft/commands/CommandSourceStack; net/minecraft/commands/CommandSourceStack/withCallback (Lcom/mojang/brigadier/ResultConsumer;)Lnet/minecraft/commands/CommandSourceStack; +MD: net/minecraft/commands/CommandSourceStack/m_81336_ (Lcom/mojang/brigadier/ResultConsumer;Ljava/util/function/BinaryOperator;)Lnet/minecraft/commands/CommandSourceStack; net/minecraft/commands/CommandSourceStack/withCallback (Lcom/mojang/brigadier/ResultConsumer;Ljava/util/function/BinaryOperator;)Lnet/minecraft/commands/CommandSourceStack; +MD: net/minecraft/commands/CommandSourceStack/m_81342_ (Lcom/mojang/brigadier/context/CommandContext;ZI)V net/minecraft/commands/CommandSourceStack/onCommandComplete (Lcom/mojang/brigadier/context/CommandContext;ZI)V +MD: net/minecraft/commands/CommandSourceStack/m_81346_ (Lnet/minecraft/world/phys/Vec2;)Lnet/minecraft/commands/CommandSourceStack; net/minecraft/commands/CommandSourceStack/withRotation (Lnet/minecraft/world/phys/Vec2;)Lnet/minecraft/commands/CommandSourceStack; +MD: net/minecraft/commands/CommandSourceStack/m_81348_ (Lnet/minecraft/world/phys/Vec3;)Lnet/minecraft/commands/CommandSourceStack; net/minecraft/commands/CommandSourceStack/withPosition (Lnet/minecraft/world/phys/Vec3;)Lnet/minecraft/commands/CommandSourceStack; +MD: net/minecraft/commands/CommandSourceStack/m_81350_ (Lnet/minecraft/commands/arguments/EntityAnchorArgument$Anchor;)Lnet/minecraft/commands/CommandSourceStack; net/minecraft/commands/CommandSourceStack/withAnchor (Lnet/minecraft/commands/arguments/EntityAnchorArgument$Anchor;)Lnet/minecraft/commands/CommandSourceStack; +MD: net/minecraft/commands/CommandSourceStack/m_81352_ (Lnet/minecraft/network/chat/Component;)V net/minecraft/commands/CommandSourceStack/sendFailure (Lnet/minecraft/network/chat/Component;)V +MD: net/minecraft/commands/CommandSourceStack/m_81357_ ()Lnet/minecraft/network/chat/Component; net/minecraft/commands/CommandSourceStack/getDisplayName ()Lnet/minecraft/network/chat/Component; +MD: net/minecraft/commands/CommandSourceStack/m_81358_ (I)Lnet/minecraft/commands/CommandSourceStack; net/minecraft/commands/CommandSourceStack/withMaximumPermission (I)Lnet/minecraft/commands/CommandSourceStack; +MD: net/minecraft/commands/CommandSourceStack/m_81360_ (Lcom/mojang/brigadier/context/CommandContext;ZI)V net/minecraft/commands/CommandSourceStack/lambda$new$0 (Lcom/mojang/brigadier/context/CommandContext;ZI)V +MD: net/minecraft/commands/CommandSourceStack/m_81364_ (Lnet/minecraft/world/phys/Vec3;)Lnet/minecraft/commands/CommandSourceStack; net/minecraft/commands/CommandSourceStack/facing (Lnet/minecraft/world/phys/Vec3;)Lnet/minecraft/commands/CommandSourceStack; +MD: net/minecraft/commands/CommandSourceStack/m_81366_ (Lnet/minecraft/network/chat/Component;)V net/minecraft/commands/CommandSourceStack/broadcastToAdmins (Lnet/minecraft/network/chat/Component;)V +MD: net/minecraft/commands/CommandSourceStack/m_81368_ ()Ljava/lang/String; net/minecraft/commands/CommandSourceStack/getTextName ()Ljava/lang/String; +MD: net/minecraft/commands/CommandSourceStack/m_81371_ ()Lnet/minecraft/world/phys/Vec3; net/minecraft/commands/CommandSourceStack/getPosition ()Lnet/minecraft/world/phys/Vec3; +MD: net/minecraft/commands/CommandSourceStack/m_81372_ ()Lnet/minecraft/server/level/ServerLevel; net/minecraft/commands/CommandSourceStack/getLevel ()Lnet/minecraft/server/level/ServerLevel; +MD: net/minecraft/commands/CommandSourceStack/m_81373_ ()Lnet/minecraft/world/entity/Entity; net/minecraft/commands/CommandSourceStack/getEntity ()Lnet/minecraft/world/entity/Entity; +MD: net/minecraft/commands/CommandSourceStack/m_81374_ ()Lnet/minecraft/world/entity/Entity; net/minecraft/commands/CommandSourceStack/getEntityOrException ()Lnet/minecraft/world/entity/Entity; +MD: net/minecraft/commands/CommandSourceStack/m_81375_ ()Lnet/minecraft/server/level/ServerPlayer; net/minecraft/commands/CommandSourceStack/getPlayerOrException ()Lnet/minecraft/server/level/ServerPlayer; +MD: net/minecraft/commands/CommandSourceStack/m_81376_ ()Lnet/minecraft/world/phys/Vec2; net/minecraft/commands/CommandSourceStack/getRotation ()Lnet/minecraft/world/phys/Vec2; +MD: net/minecraft/commands/CommandSourceStack/m_81377_ ()Lnet/minecraft/server/MinecraftServer; net/minecraft/commands/CommandSourceStack/getServer ()Lnet/minecraft/server/MinecraftServer; +MD: net/minecraft/commands/CommandSourceStack/m_81378_ ()Lnet/minecraft/commands/arguments/EntityAnchorArgument$Anchor; net/minecraft/commands/CommandSourceStack/getAnchor ()Lnet/minecraft/commands/arguments/EntityAnchorArgument$Anchor; +MD: net/minecraft/commands/Commands/ ()V net/minecraft/commands/Commands/ ()V +MD: net/minecraft/commands/Commands/ (Lnet/minecraft/commands/Commands$CommandSelection;Lnet/minecraft/commands/CommandBuildContext;)V net/minecraft/commands/Commands/ (Lnet/minecraft/commands/Commands$CommandSelection;Lnet/minecraft/commands/CommandBuildContext;)V +MD: net/minecraft/commands/Commands/m_230945_ (Lcom/mojang/brigadier/CommandDispatcher;Lcom/mojang/brigadier/tree/CommandNode;Lcom/mojang/brigadier/tree/CommandNode;Lcom/mojang/brigadier/tree/CommandNode;Ljava/util/Collection;)V net/minecraft/commands/Commands/lambda$validate$7 (Lcom/mojang/brigadier/CommandDispatcher;Lcom/mojang/brigadier/tree/CommandNode;Lcom/mojang/brigadier/tree/CommandNode;Lcom/mojang/brigadier/tree/CommandNode;Ljava/util/Collection;)V +MD: net/minecraft/commands/Commands/m_230951_ (Lcom/mojang/brigadier/arguments/ArgumentType;)Ljava/lang/String; net/minecraft/commands/Commands/lambda$validate$9 (Lcom/mojang/brigadier/arguments/ArgumentType;)Ljava/lang/String; +MD: net/minecraft/commands/Commands/m_230953_ (Lcom/mojang/brigadier/context/CommandContext;ZI)V net/minecraft/commands/Commands/lambda$new$0 (Lcom/mojang/brigadier/context/CommandContext;ZI)V +MD: net/minecraft/commands/Commands/m_230957_ (Lnet/minecraft/commands/CommandSourceStack;Ljava/lang/String;)I net/minecraft/commands/Commands/performPrefixedCommand (Lnet/minecraft/commands/CommandSourceStack;Ljava/lang/String;)I +MD: net/minecraft/commands/Commands/m_230960_ (Lcom/mojang/brigadier/arguments/ArgumentType;)Z net/minecraft/commands/Commands/lambda$validate$8 (Lcom/mojang/brigadier/arguments/ArgumentType;)Z +MD: net/minecraft/commands/Commands/m_230962_ (Ljava/lang/String;)Ljava/lang/String; net/minecraft/commands/Commands/lambda$performCommand$1 (Ljava/lang/String;)Ljava/lang/String; +MD: net/minecraft/commands/Commands/m_242611_ (Lcom/mojang/brigadier/ParseResults;Ljava/util/function/UnaryOperator;)Lcom/mojang/brigadier/ParseResults; net/minecraft/commands/Commands/mapSource (Lcom/mojang/brigadier/ParseResults;Ljava/util/function/UnaryOperator;)Lcom/mojang/brigadier/ParseResults; +MD: net/minecraft/commands/Commands/m_242674_ (Lcom/mojang/brigadier/ParseResults;Ljava/lang/String;)I net/minecraft/commands/Commands/performCommand (Lcom/mojang/brigadier/ParseResults;Ljava/lang/String;)I +MD: net/minecraft/commands/Commands/m_255082_ (Lnet/minecraft/core/HolderLookup$Provider;)Lnet/minecraft/commands/CommandBuildContext; net/minecraft/commands/Commands/createValidationContext (Lnet/minecraft/core/HolderLookup$Provider;)Lnet/minecraft/commands/CommandBuildContext; +MD: net/minecraft/commands/Commands/m_82094_ ()Lcom/mojang/brigadier/CommandDispatcher; net/minecraft/commands/Commands/getDispatcher ()Lcom/mojang/brigadier/CommandDispatcher; +MD: net/minecraft/commands/Commands/m_82095_ (Lnet/minecraft/server/level/ServerPlayer;)V net/minecraft/commands/Commands/sendCommands (Lnet/minecraft/server/level/ServerPlayer;)V +MD: net/minecraft/commands/Commands/m_82097_ (Lcom/mojang/brigadier/ParseResults;)Lcom/mojang/brigadier/exceptions/CommandSyntaxException; net/minecraft/commands/Commands/getParseException (Lcom/mojang/brigadier/ParseResults;)Lcom/mojang/brigadier/exceptions/CommandSyntaxException; +MD: net/minecraft/commands/Commands/m_82101_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/commands/Commands/lambda$fillUsableCommands$5 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/commands/Commands/m_82112_ (Lcom/mojang/brigadier/tree/CommandNode;Lcom/mojang/brigadier/tree/CommandNode;Lnet/minecraft/commands/CommandSourceStack;Ljava/util/Map;)V net/minecraft/commands/Commands/fillUsableCommands (Lcom/mojang/brigadier/tree/CommandNode;Lcom/mojang/brigadier/tree/CommandNode;Lnet/minecraft/commands/CommandSourceStack;Ljava/util/Map;)V +MD: net/minecraft/commands/Commands/m_82120_ (Lnet/minecraft/commands/Commands$ParseFunction;)Ljava/util/function/Predicate; net/minecraft/commands/Commands/createValidator (Lnet/minecraft/commands/Commands$ParseFunction;)Ljava/util/function/Predicate; +MD: net/minecraft/commands/Commands/m_82122_ (Lnet/minecraft/commands/Commands$ParseFunction;Ljava/lang/String;)Z net/minecraft/commands/Commands/lambda$createValidator$6 (Lnet/minecraft/commands/Commands$ParseFunction;Ljava/lang/String;)Z +MD: net/minecraft/commands/Commands/m_82125_ (Lnet/minecraft/commands/SharedSuggestionProvider;)Z net/minecraft/commands/Commands/lambda$fillUsableCommands$4 (Lnet/minecraft/commands/SharedSuggestionProvider;)Z +MD: net/minecraft/commands/Commands/m_82127_ (Ljava/lang/String;)Lcom/mojang/brigadier/builder/LiteralArgumentBuilder; net/minecraft/commands/Commands/literal (Ljava/lang/String;)Lcom/mojang/brigadier/builder/LiteralArgumentBuilder; +MD: net/minecraft/commands/Commands/m_82129_ (Ljava/lang/String;Lcom/mojang/brigadier/arguments/ArgumentType;)Lcom/mojang/brigadier/builder/RequiredArgumentBuilder; net/minecraft/commands/Commands/argument (Ljava/lang/String;Lcom/mojang/brigadier/arguments/ArgumentType;)Lcom/mojang/brigadier/builder/RequiredArgumentBuilder; +MD: net/minecraft/commands/Commands/m_82132_ (Ljava/lang/String;Lnet/minecraft/network/chat/Style;)Lnet/minecraft/network/chat/Style; net/minecraft/commands/Commands/lambda$performCommand$2 (Ljava/lang/String;Lnet/minecraft/network/chat/Style;)Lnet/minecraft/network/chat/Style; +MD: net/minecraft/commands/Commands/m_82135_ (Lnet/minecraft/network/chat/MutableComponent;Lnet/minecraft/network/chat/Style;)Lnet/minecraft/network/chat/Style; net/minecraft/commands/Commands/lambda$performCommand$3 (Lnet/minecraft/network/chat/MutableComponent;Lnet/minecraft/network/chat/Style;)Lnet/minecraft/network/chat/Style; +MD: net/minecraft/commands/Commands/m_82138_ ()V net/minecraft/commands/Commands/validate ()V +MD: net/minecraft/commands/Commands$1/ (Lnet/minecraft/core/HolderLookup$Provider;)V net/minecraft/commands/Commands$1/ (Lnet/minecraft/core/HolderLookup$Provider;)V +MD: net/minecraft/commands/Commands$1/m_227133_ (Lnet/minecraft/resources/ResourceKey;)Lnet/minecraft/core/HolderLookup; net/minecraft/commands/Commands$1/holderLookup (Lnet/minecraft/resources/ResourceKey;)Lnet/minecraft/core/HolderLookup; +MD: net/minecraft/commands/Commands$1$1/ (Lnet/minecraft/commands/Commands$1;Lnet/minecraft/core/HolderLookup;Lnet/minecraft/core/HolderLookup$RegistryLookup;)V net/minecraft/commands/Commands$1$1/ (Lnet/minecraft/commands/Commands$1;Lnet/minecraft/core/HolderLookup;Lnet/minecraft/core/HolderLookup$RegistryLookup;)V +MD: net/minecraft/commands/Commands$1$1/m_254901_ (Lnet/minecraft/tags/TagKey;)Ljava/util/Optional; net/minecraft/commands/Commands$1$1/get (Lnet/minecraft/tags/TagKey;)Ljava/util/Optional; +MD: net/minecraft/commands/Commands$1$1/m_254956_ (Lnet/minecraft/tags/TagKey;)Lnet/minecraft/core/HolderSet$Named; net/minecraft/commands/Commands$1$1/getOrThrow (Lnet/minecraft/tags/TagKey;)Lnet/minecraft/core/HolderSet$Named; +MD: net/minecraft/commands/Commands$1$1/m_255396_ (Lnet/minecraft/core/HolderLookup$RegistryLookup;Lnet/minecraft/tags/TagKey;)Lnet/minecraft/core/HolderSet$Named; net/minecraft/commands/Commands$1$1/lambda$getOrThrow$0 (Lnet/minecraft/core/HolderLookup$RegistryLookup;Lnet/minecraft/tags/TagKey;)Lnet/minecraft/core/HolderSet$Named; +MD: net/minecraft/commands/Commands$CommandSelection/ ()V net/minecraft/commands/Commands$CommandSelection/ ()V +MD: net/minecraft/commands/Commands$CommandSelection/ (Ljava/lang/String;IZZ)V net/minecraft/commands/Commands$CommandSelection/ (Ljava/lang/String;IZZ)V +MD: net/minecraft/commands/Commands$CommandSelection/m_165687_ ()[Lnet/minecraft/commands/Commands$CommandSelection; net/minecraft/commands/Commands$CommandSelection/$values ()[Lnet/minecraft/commands/Commands$CommandSelection; +MD: net/minecraft/commands/Commands$CommandSelection/valueOf (Ljava/lang/String;)Lnet/minecraft/commands/Commands$CommandSelection; net/minecraft/commands/Commands$CommandSelection/valueOf (Ljava/lang/String;)Lnet/minecraft/commands/Commands$CommandSelection; +MD: net/minecraft/commands/Commands$CommandSelection/values ()[Lnet/minecraft/commands/Commands$CommandSelection; net/minecraft/commands/Commands$CommandSelection/values ()[Lnet/minecraft/commands/Commands$CommandSelection; +MD: net/minecraft/commands/Commands$ParseFunction/m_82160_ (Lcom/mojang/brigadier/StringReader;)V net/minecraft/commands/Commands$ParseFunction/parse (Lcom/mojang/brigadier/StringReader;)V +MD: net/minecraft/commands/SharedSuggestionProvider/m_165916_ (Ljava/lang/Iterable;Lcom/mojang/brigadier/suggestion/SuggestionsBuilder;Ljava/util/function/Function;Ljava/util/function/Function;)Ljava/util/concurrent/CompletableFuture; net/minecraft/commands/SharedSuggestionProvider/suggest (Ljava/lang/Iterable;Lcom/mojang/brigadier/suggestion/SuggestionsBuilder;Ljava/util/function/Function;Ljava/util/function/Function;)Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/commands/SharedSuggestionProvider/m_205106_ (Ljava/util/stream/Stream;Lcom/mojang/brigadier/suggestion/SuggestionsBuilder;Ljava/lang/String;)Ljava/util/concurrent/CompletableFuture; net/minecraft/commands/SharedSuggestionProvider/suggestResource (Ljava/util/stream/Stream;Lcom/mojang/brigadier/suggestion/SuggestionsBuilder;Ljava/lang/String;)Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/commands/SharedSuggestionProvider/m_212095_ (Lnet/minecraft/resources/ResourceKey;Lnet/minecraft/commands/SharedSuggestionProvider$ElementSuggestionType;Lcom/mojang/brigadier/suggestion/SuggestionsBuilder;Lcom/mojang/brigadier/context/CommandContext;)Ljava/util/concurrent/CompletableFuture; net/minecraft/commands/SharedSuggestionProvider/suggestRegistryElements (Lnet/minecraft/resources/ResourceKey;Lnet/minecraft/commands/SharedSuggestionProvider$ElementSuggestionType;Lcom/mojang/brigadier/suggestion/SuggestionsBuilder;Lcom/mojang/brigadier/context/CommandContext;)Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/commands/SharedSuggestionProvider/m_212155_ (Lcom/mojang/brigadier/context/CommandContext;)Ljava/util/concurrent/CompletableFuture; net/minecraft/commands/SharedSuggestionProvider/customSuggestion (Lcom/mojang/brigadier/context/CommandContext;)Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/commands/SharedSuggestionProvider/m_212335_ (Lnet/minecraft/core/Registry;Lnet/minecraft/commands/SharedSuggestionProvider$ElementSuggestionType;Lcom/mojang/brigadier/suggestion/SuggestionsBuilder;)V net/minecraft/commands/SharedSuggestionProvider/suggestRegistryElements (Lnet/minecraft/core/Registry;Lnet/minecraft/commands/SharedSuggestionProvider$ElementSuggestionType;Lcom/mojang/brigadier/suggestion/SuggestionsBuilder;)V +MD: net/minecraft/commands/SharedSuggestionProvider/m_240700_ ()Ljava/util/Collection; net/minecraft/commands/SharedSuggestionProvider/getCustomTabSugggestions ()Ljava/util/Collection; +MD: net/minecraft/commands/SharedSuggestionProvider/m_245239_ ()Lnet/minecraft/world/flag/FeatureFlagSet; net/minecraft/commands/SharedSuggestionProvider/enabledFeatures ()Lnet/minecraft/world/flag/FeatureFlagSet; +MD: net/minecraft/commands/SharedSuggestionProvider/m_5894_ ()Lnet/minecraft/core/RegistryAccess; net/minecraft/commands/SharedSuggestionProvider/registryAccess ()Lnet/minecraft/core/RegistryAccess; +MD: net/minecraft/commands/SharedSuggestionProvider/m_5982_ ()Ljava/util/Collection; net/minecraft/commands/SharedSuggestionProvider/getOnlinePlayerNames ()Ljava/util/Collection; +MD: net/minecraft/commands/SharedSuggestionProvider/m_5983_ ()Ljava/util/Collection; net/minecraft/commands/SharedSuggestionProvider/getAllTeams ()Ljava/util/Collection; +MD: net/minecraft/commands/SharedSuggestionProvider/m_5984_ ()Ljava/util/stream/Stream; net/minecraft/commands/SharedSuggestionProvider/getAvailableSounds ()Ljava/util/stream/Stream; +MD: net/minecraft/commands/SharedSuggestionProvider/m_6264_ ()Ljava/util/Collection; net/minecraft/commands/SharedSuggestionProvider/getSelectedEntities ()Ljava/util/Collection; +MD: net/minecraft/commands/SharedSuggestionProvider/m_6265_ ()Ljava/util/Collection; net/minecraft/commands/SharedSuggestionProvider/getRelevantCoordinates ()Ljava/util/Collection; +MD: net/minecraft/commands/SharedSuggestionProvider/m_6284_ ()Ljava/util/Collection; net/minecraft/commands/SharedSuggestionProvider/getAbsoluteCoordinates ()Ljava/util/Collection; +MD: net/minecraft/commands/SharedSuggestionProvider/m_6553_ ()Ljava/util/Set; net/minecraft/commands/SharedSuggestionProvider/levels ()Ljava/util/Set; +MD: net/minecraft/commands/SharedSuggestionProvider/m_6761_ (I)Z net/minecraft/commands/SharedSuggestionProvider/hasPermission (I)Z +MD: net/minecraft/commands/SharedSuggestionProvider/m_6860_ ()Ljava/util/stream/Stream; net/minecraft/commands/SharedSuggestionProvider/getRecipeNames ()Ljava/util/stream/Stream; +MD: net/minecraft/commands/SharedSuggestionProvider/m_82914_ (Lcom/mojang/brigadier/suggestion/SuggestionsBuilder;Ljava/lang/String;Lnet/minecraft/resources/ResourceLocation;)V net/minecraft/commands/SharedSuggestionProvider/lambda$suggestResource$1 (Lcom/mojang/brigadier/suggestion/SuggestionsBuilder;Ljava/lang/String;Lnet/minecraft/resources/ResourceLocation;)V +MD: net/minecraft/commands/SharedSuggestionProvider/m_82918_ (Lcom/mojang/brigadier/suggestion/SuggestionsBuilder;Ljava/util/function/Function;Ljava/util/function/Function;Ljava/lang/Object;)V net/minecraft/commands/SharedSuggestionProvider/lambda$suggestResource$4 (Lcom/mojang/brigadier/suggestion/SuggestionsBuilder;Ljava/util/function/Function;Ljava/util/function/Function;Ljava/lang/Object;)V +MD: net/minecraft/commands/SharedSuggestionProvider/m_82923_ (Lcom/mojang/brigadier/suggestion/SuggestionsBuilder;Lnet/minecraft/resources/ResourceLocation;)V net/minecraft/commands/SharedSuggestionProvider/lambda$suggestResource$3 (Lcom/mojang/brigadier/suggestion/SuggestionsBuilder;Lnet/minecraft/resources/ResourceLocation;)V +MD: net/minecraft/commands/SharedSuggestionProvider/m_82926_ (Ljava/lang/Iterable;Lcom/mojang/brigadier/suggestion/SuggestionsBuilder;)Ljava/util/concurrent/CompletableFuture; net/minecraft/commands/SharedSuggestionProvider/suggestResource (Ljava/lang/Iterable;Lcom/mojang/brigadier/suggestion/SuggestionsBuilder;)Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/commands/SharedSuggestionProvider/m_82929_ (Ljava/lang/Iterable;Lcom/mojang/brigadier/suggestion/SuggestionsBuilder;Ljava/lang/String;)Ljava/util/concurrent/CompletableFuture; net/minecraft/commands/SharedSuggestionProvider/suggestResource (Ljava/lang/Iterable;Lcom/mojang/brigadier/suggestion/SuggestionsBuilder;Ljava/lang/String;)Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/commands/SharedSuggestionProvider/m_82933_ (Ljava/lang/Iterable;Lcom/mojang/brigadier/suggestion/SuggestionsBuilder;Ljava/util/function/Function;Ljava/util/function/Function;)Ljava/util/concurrent/CompletableFuture; net/minecraft/commands/SharedSuggestionProvider/suggestResource (Ljava/lang/Iterable;Lcom/mojang/brigadier/suggestion/SuggestionsBuilder;Ljava/util/function/Function;Ljava/util/function/Function;)Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/commands/SharedSuggestionProvider/m_82938_ (Ljava/lang/Iterable;Ljava/lang/String;Ljava/lang/String;Ljava/util/function/Function;Ljava/util/function/Consumer;)V net/minecraft/commands/SharedSuggestionProvider/filterResources (Ljava/lang/Iterable;Ljava/lang/String;Ljava/lang/String;Ljava/util/function/Function;Ljava/util/function/Consumer;)V +MD: net/minecraft/commands/SharedSuggestionProvider/m_82944_ (Ljava/lang/Iterable;Ljava/lang/String;Ljava/util/function/Function;Ljava/util/function/Consumer;)V net/minecraft/commands/SharedSuggestionProvider/filterResources (Ljava/lang/Iterable;Ljava/lang/String;Ljava/util/function/Function;Ljava/util/function/Consumer;)V +MD: net/minecraft/commands/SharedSuggestionProvider/m_82949_ (Ljava/lang/String;Ljava/lang/String;)Z net/minecraft/commands/SharedSuggestionProvider/matchesSubStr (Ljava/lang/String;Ljava/lang/String;)Z +MD: net/minecraft/commands/SharedSuggestionProvider/m_82952_ (Ljava/lang/String;Ljava/util/Collection;Lcom/mojang/brigadier/suggestion/SuggestionsBuilder;Ljava/util/function/Predicate;)Ljava/util/concurrent/CompletableFuture; net/minecraft/commands/SharedSuggestionProvider/suggestCoordinates (Ljava/lang/String;Ljava/util/Collection;Lcom/mojang/brigadier/suggestion/SuggestionsBuilder;Ljava/util/function/Predicate;)Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/commands/SharedSuggestionProvider/m_82957_ (Ljava/util/stream/Stream;Lcom/mojang/brigadier/suggestion/SuggestionsBuilder;)Ljava/util/concurrent/CompletableFuture; net/minecraft/commands/SharedSuggestionProvider/suggestResource (Ljava/util/stream/Stream;Lcom/mojang/brigadier/suggestion/SuggestionsBuilder;)Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/commands/SharedSuggestionProvider/m_82960_ (Ljava/util/stream/Stream;Lcom/mojang/brigadier/suggestion/SuggestionsBuilder;Ljava/util/function/Function;Ljava/util/function/Function;)Ljava/util/concurrent/CompletableFuture; net/minecraft/commands/SharedSuggestionProvider/suggestResource (Ljava/util/stream/Stream;Lcom/mojang/brigadier/suggestion/SuggestionsBuilder;Ljava/util/function/Function;Ljava/util/function/Function;)Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/commands/SharedSuggestionProvider/m_82965_ (Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/commands/SharedSuggestionProvider/lambda$suggestResource$2 (Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/commands/SharedSuggestionProvider/m_82967_ ([Ljava/lang/String;Lcom/mojang/brigadier/suggestion/SuggestionsBuilder;)Ljava/util/concurrent/CompletableFuture; net/minecraft/commands/SharedSuggestionProvider/suggest ([Ljava/lang/String;Lcom/mojang/brigadier/suggestion/SuggestionsBuilder;)Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/commands/SharedSuggestionProvider/m_82970_ (Ljava/lang/Iterable;Lcom/mojang/brigadier/suggestion/SuggestionsBuilder;)Ljava/util/concurrent/CompletableFuture; net/minecraft/commands/SharedSuggestionProvider/suggest (Ljava/lang/Iterable;Lcom/mojang/brigadier/suggestion/SuggestionsBuilder;)Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/commands/SharedSuggestionProvider/m_82973_ (Ljava/lang/String;Ljava/lang/String;)Z net/minecraft/commands/SharedSuggestionProvider/lambda$suggest$5 (Ljava/lang/String;Ljava/lang/String;)Z +MD: net/minecraft/commands/SharedSuggestionProvider/m_82976_ (Ljava/lang/String;Ljava/util/Collection;Lcom/mojang/brigadier/suggestion/SuggestionsBuilder;Ljava/util/function/Predicate;)Ljava/util/concurrent/CompletableFuture; net/minecraft/commands/SharedSuggestionProvider/suggest2DCoordinates (Ljava/lang/String;Ljava/util/Collection;Lcom/mojang/brigadier/suggestion/SuggestionsBuilder;Ljava/util/function/Predicate;)Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/commands/SharedSuggestionProvider/m_82981_ (Ljava/util/stream/Stream;Lcom/mojang/brigadier/suggestion/SuggestionsBuilder;)Ljava/util/concurrent/CompletableFuture; net/minecraft/commands/SharedSuggestionProvider/suggest (Ljava/util/stream/Stream;Lcom/mojang/brigadier/suggestion/SuggestionsBuilder;)Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/commands/SharedSuggestionProvider/m_82984_ (Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/commands/SharedSuggestionProvider/lambda$suggestResource$0 (Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/commands/SharedSuggestionProvider$ElementSuggestionType/ ()V net/minecraft/commands/SharedSuggestionProvider$ElementSuggestionType/ ()V +MD: net/minecraft/commands/SharedSuggestionProvider$ElementSuggestionType/ (Ljava/lang/String;I)V net/minecraft/commands/SharedSuggestionProvider$ElementSuggestionType/ (Ljava/lang/String;I)V +MD: net/minecraft/commands/SharedSuggestionProvider$ElementSuggestionType/m_212351_ ()Z net/minecraft/commands/SharedSuggestionProvider$ElementSuggestionType/shouldSuggestTags ()Z +MD: net/minecraft/commands/SharedSuggestionProvider$ElementSuggestionType/m_212352_ ()Z net/minecraft/commands/SharedSuggestionProvider$ElementSuggestionType/shouldSuggestElements ()Z +MD: net/minecraft/commands/SharedSuggestionProvider$ElementSuggestionType/m_212353_ ()[Lnet/minecraft/commands/SharedSuggestionProvider$ElementSuggestionType; net/minecraft/commands/SharedSuggestionProvider$ElementSuggestionType/$values ()[Lnet/minecraft/commands/SharedSuggestionProvider$ElementSuggestionType; +MD: net/minecraft/commands/SharedSuggestionProvider$ElementSuggestionType/valueOf (Ljava/lang/String;)Lnet/minecraft/commands/SharedSuggestionProvider$ElementSuggestionType; net/minecraft/commands/SharedSuggestionProvider$ElementSuggestionType/valueOf (Ljava/lang/String;)Lnet/minecraft/commands/SharedSuggestionProvider$ElementSuggestionType; +MD: net/minecraft/commands/SharedSuggestionProvider$ElementSuggestionType/values ()[Lnet/minecraft/commands/SharedSuggestionProvider$ElementSuggestionType; net/minecraft/commands/SharedSuggestionProvider$ElementSuggestionType/values ()[Lnet/minecraft/commands/SharedSuggestionProvider$ElementSuggestionType; +MD: net/minecraft/commands/SharedSuggestionProvider$TextCoordinates/ ()V net/minecraft/commands/SharedSuggestionProvider$TextCoordinates/ ()V +MD: net/minecraft/commands/SharedSuggestionProvider$TextCoordinates/ (Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;)V net/minecraft/commands/SharedSuggestionProvider$TextCoordinates/ (Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;)V +MD: net/minecraft/commands/arguments/AngleArgument/ ()V net/minecraft/commands/arguments/AngleArgument/ ()V +MD: net/minecraft/commands/arguments/AngleArgument/ ()V net/minecraft/commands/arguments/AngleArgument/ ()V +MD: net/minecraft/commands/arguments/AngleArgument/getExamples ()Ljava/util/Collection; net/minecraft/commands/arguments/AngleArgument/getExamples ()Ljava/util/Collection; +MD: net/minecraft/commands/arguments/AngleArgument/m_83807_ ()Lnet/minecraft/commands/arguments/AngleArgument; net/minecraft/commands/arguments/AngleArgument/angle ()Lnet/minecraft/commands/arguments/AngleArgument; +MD: net/minecraft/commands/arguments/AngleArgument/m_83810_ (Lcom/mojang/brigadier/context/CommandContext;Ljava/lang/String;)F net/minecraft/commands/arguments/AngleArgument/getAngle (Lcom/mojang/brigadier/context/CommandContext;Ljava/lang/String;)F +MD: net/minecraft/commands/arguments/AngleArgument/parse (Lcom/mojang/brigadier/StringReader;)Ljava/lang/Object; net/minecraft/commands/arguments/AngleArgument/parse (Lcom/mojang/brigadier/StringReader;)Ljava/lang/Object; +MD: net/minecraft/commands/arguments/AngleArgument/parse (Lcom/mojang/brigadier/StringReader;)Lnet/minecraft/commands/arguments/AngleArgument$SingleAngle; net/minecraft/commands/arguments/AngleArgument/parse (Lcom/mojang/brigadier/StringReader;)Lnet/minecraft/commands/arguments/AngleArgument$SingleAngle; +MD: net/minecraft/commands/arguments/AngleArgument$SingleAngle/ (FZ)V net/minecraft/commands/arguments/AngleArgument$SingleAngle/ (FZ)V +MD: net/minecraft/commands/arguments/AngleArgument$SingleAngle/m_83825_ (Lnet/minecraft/commands/CommandSourceStack;)F net/minecraft/commands/arguments/AngleArgument$SingleAngle/getAngle (Lnet/minecraft/commands/CommandSourceStack;)F +MD: net/minecraft/commands/arguments/ArgumentSignatures/ ()V net/minecraft/commands/arguments/ArgumentSignatures/ ()V +MD: net/minecraft/commands/arguments/ArgumentSignatures/ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/commands/arguments/ArgumentSignatures/ (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/commands/arguments/ArgumentSignatures/ (Ljava/util/List;)V net/minecraft/commands/arguments/ArgumentSignatures/ (Ljava/util/List;)V +MD: net/minecraft/commands/arguments/ArgumentSignatures/equals (Ljava/lang/Object;)Z net/minecraft/commands/arguments/ArgumentSignatures/equals (Ljava/lang/Object;)Z +MD: net/minecraft/commands/arguments/ArgumentSignatures/f_240908_ ()Ljava/util/List; net/minecraft/commands/arguments/ArgumentSignatures/entries ()Ljava/util/List; +MD: net/minecraft/commands/arguments/ArgumentSignatures/hashCode ()I net/minecraft/commands/arguments/ArgumentSignatures/hashCode ()I +MD: net/minecraft/commands/arguments/ArgumentSignatures/m_231061_ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/commands/arguments/ArgumentSignatures/write (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/commands/arguments/ArgumentSignatures/m_240917_ (Lnet/minecraft/network/FriendlyByteBuf;Lnet/minecraft/commands/arguments/ArgumentSignatures$Entry;)V net/minecraft/commands/arguments/ArgumentSignatures/lambda$write$0 (Lnet/minecraft/network/FriendlyByteBuf;Lnet/minecraft/commands/arguments/ArgumentSignatures$Entry;)V +MD: net/minecraft/commands/arguments/ArgumentSignatures/m_240943_ (Ljava/lang/String;)Lnet/minecraft/network/chat/MessageSignature; net/minecraft/commands/arguments/ArgumentSignatures/get (Ljava/lang/String;)Lnet/minecraft/network/chat/MessageSignature; +MD: net/minecraft/commands/arguments/ArgumentSignatures/m_244747_ (Lnet/minecraft/commands/arguments/ArgumentSignatures$Signer;Lnet/minecraft/network/chat/SignableCommand$Argument;)Lnet/minecraft/commands/arguments/ArgumentSignatures$Entry; net/minecraft/commands/arguments/ArgumentSignatures/lambda$signCommand$1 (Lnet/minecraft/commands/arguments/ArgumentSignatures$Signer;Lnet/minecraft/network/chat/SignableCommand$Argument;)Lnet/minecraft/commands/arguments/ArgumentSignatures$Entry; +MD: net/minecraft/commands/arguments/ArgumentSignatures/m_245158_ (Lnet/minecraft/network/chat/SignableCommand;Lnet/minecraft/commands/arguments/ArgumentSignatures$Signer;)Lnet/minecraft/commands/arguments/ArgumentSignatures; net/minecraft/commands/arguments/ArgumentSignatures/signCommand (Lnet/minecraft/network/chat/SignableCommand;Lnet/minecraft/commands/arguments/ArgumentSignatures$Signer;)Lnet/minecraft/commands/arguments/ArgumentSignatures; +MD: net/minecraft/commands/arguments/ArgumentSignatures/toString ()Ljava/lang/String; net/minecraft/commands/arguments/ArgumentSignatures/toString ()Ljava/lang/String; +MD: net/minecraft/commands/arguments/ArgumentSignatures$Entry/ (Ljava/lang/String;Lnet/minecraft/network/chat/MessageSignature;)V net/minecraft/commands/arguments/ArgumentSignatures$Entry/ (Ljava/lang/String;Lnet/minecraft/network/chat/MessageSignature;)V +MD: net/minecraft/commands/arguments/ArgumentSignatures$Entry/ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/commands/arguments/ArgumentSignatures$Entry/ (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/commands/arguments/ArgumentSignatures$Entry/equals (Ljava/lang/Object;)Z net/minecraft/commands/arguments/ArgumentSignatures$Entry/equals (Ljava/lang/Object;)Z +MD: net/minecraft/commands/arguments/ArgumentSignatures$Entry/f_240879_ ()Lnet/minecraft/network/chat/MessageSignature; net/minecraft/commands/arguments/ArgumentSignatures$Entry/signature ()Lnet/minecraft/network/chat/MessageSignature; +MD: net/minecraft/commands/arguments/ArgumentSignatures$Entry/f_240910_ ()Ljava/lang/String; net/minecraft/commands/arguments/ArgumentSignatures$Entry/name ()Ljava/lang/String; +MD: net/minecraft/commands/arguments/ArgumentSignatures$Entry/hashCode ()I net/minecraft/commands/arguments/ArgumentSignatures$Entry/hashCode ()I +MD: net/minecraft/commands/arguments/ArgumentSignatures$Entry/m_241062_ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/commands/arguments/ArgumentSignatures$Entry/write (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/commands/arguments/ArgumentSignatures$Entry/toString ()Ljava/lang/String; net/minecraft/commands/arguments/ArgumentSignatures$Entry/toString ()Ljava/lang/String; +MD: net/minecraft/commands/arguments/ArgumentSignatures$Signer/m_241068_ (Ljava/lang/String;)Lnet/minecraft/network/chat/MessageSignature; net/minecraft/commands/arguments/ArgumentSignatures$Signer/sign (Ljava/lang/String;)Lnet/minecraft/network/chat/MessageSignature; +MD: net/minecraft/commands/arguments/ColorArgument/ ()V net/minecraft/commands/arguments/ColorArgument/ ()V +MD: net/minecraft/commands/arguments/ColorArgument/ ()V net/minecraft/commands/arguments/ColorArgument/ ()V +MD: net/minecraft/commands/arguments/ColorArgument/getExamples ()Ljava/util/Collection; net/minecraft/commands/arguments/ColorArgument/getExamples ()Ljava/util/Collection; +MD: net/minecraft/commands/arguments/ColorArgument/listSuggestions (Lcom/mojang/brigadier/context/CommandContext;Lcom/mojang/brigadier/suggestion/SuggestionsBuilder;)Ljava/util/concurrent/CompletableFuture; net/minecraft/commands/arguments/ColorArgument/listSuggestions (Lcom/mojang/brigadier/context/CommandContext;Lcom/mojang/brigadier/suggestion/SuggestionsBuilder;)Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/commands/arguments/ColorArgument/m_85463_ ()Lnet/minecraft/commands/arguments/ColorArgument; net/minecraft/commands/arguments/ColorArgument/color ()Lnet/minecraft/commands/arguments/ColorArgument; +MD: net/minecraft/commands/arguments/ColorArgument/m_85466_ (Lcom/mojang/brigadier/context/CommandContext;Ljava/lang/String;)Lnet/minecraft/ChatFormatting; net/minecraft/commands/arguments/ColorArgument/getColor (Lcom/mojang/brigadier/context/CommandContext;Ljava/lang/String;)Lnet/minecraft/ChatFormatting; +MD: net/minecraft/commands/arguments/ColorArgument/m_85469_ (Ljava/lang/Object;)Lcom/mojang/brigadier/Message; net/minecraft/commands/arguments/ColorArgument/lambda$static$0 (Ljava/lang/Object;)Lcom/mojang/brigadier/Message; +MD: net/minecraft/commands/arguments/ColorArgument/parse (Lcom/mojang/brigadier/StringReader;)Ljava/lang/Object; net/minecraft/commands/arguments/ColorArgument/parse (Lcom/mojang/brigadier/StringReader;)Ljava/lang/Object; +MD: net/minecraft/commands/arguments/ColorArgument/parse (Lcom/mojang/brigadier/StringReader;)Lnet/minecraft/ChatFormatting; net/minecraft/commands/arguments/ColorArgument/parse (Lcom/mojang/brigadier/StringReader;)Lnet/minecraft/ChatFormatting; +MD: net/minecraft/commands/arguments/ComponentArgument/ ()V net/minecraft/commands/arguments/ComponentArgument/ ()V +MD: net/minecraft/commands/arguments/ComponentArgument/ ()V net/minecraft/commands/arguments/ComponentArgument/ ()V +MD: net/minecraft/commands/arguments/ComponentArgument/getExamples ()Ljava/util/Collection; net/minecraft/commands/arguments/ComponentArgument/getExamples ()Ljava/util/Collection; +MD: net/minecraft/commands/arguments/ComponentArgument/m_87114_ ()Lnet/minecraft/commands/arguments/ComponentArgument; net/minecraft/commands/arguments/ComponentArgument/textComponent ()Lnet/minecraft/commands/arguments/ComponentArgument; +MD: net/minecraft/commands/arguments/ComponentArgument/m_87117_ (Lcom/mojang/brigadier/context/CommandContext;Ljava/lang/String;)Lnet/minecraft/network/chat/Component; net/minecraft/commands/arguments/ComponentArgument/getComponent (Lcom/mojang/brigadier/context/CommandContext;Ljava/lang/String;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/commands/arguments/ComponentArgument/m_87120_ (Ljava/lang/Object;)Lcom/mojang/brigadier/Message; net/minecraft/commands/arguments/ComponentArgument/lambda$static$0 (Ljava/lang/Object;)Lcom/mojang/brigadier/Message; +MD: net/minecraft/commands/arguments/ComponentArgument/parse (Lcom/mojang/brigadier/StringReader;)Ljava/lang/Object; net/minecraft/commands/arguments/ComponentArgument/parse (Lcom/mojang/brigadier/StringReader;)Ljava/lang/Object; +MD: net/minecraft/commands/arguments/ComponentArgument/parse (Lcom/mojang/brigadier/StringReader;)Lnet/minecraft/network/chat/Component; net/minecraft/commands/arguments/ComponentArgument/parse (Lcom/mojang/brigadier/StringReader;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/commands/arguments/CompoundTagArgument/ ()V net/minecraft/commands/arguments/CompoundTagArgument/ ()V +MD: net/minecraft/commands/arguments/CompoundTagArgument/ ()V net/minecraft/commands/arguments/CompoundTagArgument/ ()V +MD: net/minecraft/commands/arguments/CompoundTagArgument/getExamples ()Ljava/util/Collection; net/minecraft/commands/arguments/CompoundTagArgument/getExamples ()Ljava/util/Collection; +MD: net/minecraft/commands/arguments/CompoundTagArgument/m_87657_ ()Lnet/minecraft/commands/arguments/CompoundTagArgument; net/minecraft/commands/arguments/CompoundTagArgument/compoundTag ()Lnet/minecraft/commands/arguments/CompoundTagArgument; +MD: net/minecraft/commands/arguments/CompoundTagArgument/m_87660_ (Lcom/mojang/brigadier/context/CommandContext;Ljava/lang/String;)Lnet/minecraft/nbt/CompoundTag; net/minecraft/commands/arguments/CompoundTagArgument/getCompoundTag (Lcom/mojang/brigadier/context/CommandContext;Ljava/lang/String;)Lnet/minecraft/nbt/CompoundTag; +MD: net/minecraft/commands/arguments/CompoundTagArgument/parse (Lcom/mojang/brigadier/StringReader;)Ljava/lang/Object; net/minecraft/commands/arguments/CompoundTagArgument/parse (Lcom/mojang/brigadier/StringReader;)Ljava/lang/Object; +MD: net/minecraft/commands/arguments/CompoundTagArgument/parse (Lcom/mojang/brigadier/StringReader;)Lnet/minecraft/nbt/CompoundTag; net/minecraft/commands/arguments/CompoundTagArgument/parse (Lcom/mojang/brigadier/StringReader;)Lnet/minecraft/nbt/CompoundTag; +MD: net/minecraft/commands/arguments/DimensionArgument/ ()V net/minecraft/commands/arguments/DimensionArgument/ ()V +MD: net/minecraft/commands/arguments/DimensionArgument/ ()V net/minecraft/commands/arguments/DimensionArgument/ ()V +MD: net/minecraft/commands/arguments/DimensionArgument/getExamples ()Ljava/util/Collection; net/minecraft/commands/arguments/DimensionArgument/getExamples ()Ljava/util/Collection; +MD: net/minecraft/commands/arguments/DimensionArgument/listSuggestions (Lcom/mojang/brigadier/context/CommandContext;Lcom/mojang/brigadier/suggestion/SuggestionsBuilder;)Ljava/util/concurrent/CompletableFuture; net/minecraft/commands/arguments/DimensionArgument/listSuggestions (Lcom/mojang/brigadier/context/CommandContext;Lcom/mojang/brigadier/suggestion/SuggestionsBuilder;)Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/commands/arguments/DimensionArgument/m_88805_ ()Lnet/minecraft/commands/arguments/DimensionArgument; net/minecraft/commands/arguments/DimensionArgument/dimension ()Lnet/minecraft/commands/arguments/DimensionArgument; +MD: net/minecraft/commands/arguments/DimensionArgument/m_88808_ (Lcom/mojang/brigadier/context/CommandContext;Ljava/lang/String;)Lnet/minecraft/server/level/ServerLevel; net/minecraft/commands/arguments/DimensionArgument/getDimension (Lcom/mojang/brigadier/context/CommandContext;Ljava/lang/String;)Lnet/minecraft/server/level/ServerLevel; +MD: net/minecraft/commands/arguments/DimensionArgument/m_88811_ (Ljava/lang/Object;)Lcom/mojang/brigadier/Message; net/minecraft/commands/arguments/DimensionArgument/lambda$static$1 (Ljava/lang/Object;)Lcom/mojang/brigadier/Message; +MD: net/minecraft/commands/arguments/DimensionArgument/m_88813_ (Lnet/minecraft/resources/ResourceKey;)Ljava/lang/String; net/minecraft/commands/arguments/DimensionArgument/lambda$static$0 (Lnet/minecraft/resources/ResourceKey;)Ljava/lang/String; +MD: net/minecraft/commands/arguments/DimensionArgument/parse (Lcom/mojang/brigadier/StringReader;)Ljava/lang/Object; net/minecraft/commands/arguments/DimensionArgument/parse (Lcom/mojang/brigadier/StringReader;)Ljava/lang/Object; +MD: net/minecraft/commands/arguments/DimensionArgument/parse (Lcom/mojang/brigadier/StringReader;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/commands/arguments/DimensionArgument/parse (Lcom/mojang/brigadier/StringReader;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/commands/arguments/EntityAnchorArgument/ ()V net/minecraft/commands/arguments/EntityAnchorArgument/ ()V +MD: net/minecraft/commands/arguments/EntityAnchorArgument/ ()V net/minecraft/commands/arguments/EntityAnchorArgument/ ()V +MD: net/minecraft/commands/arguments/EntityAnchorArgument/getExamples ()Ljava/util/Collection; net/minecraft/commands/arguments/EntityAnchorArgument/getExamples ()Ljava/util/Collection; +MD: net/minecraft/commands/arguments/EntityAnchorArgument/listSuggestions (Lcom/mojang/brigadier/context/CommandContext;Lcom/mojang/brigadier/suggestion/SuggestionsBuilder;)Ljava/util/concurrent/CompletableFuture; net/minecraft/commands/arguments/EntityAnchorArgument/listSuggestions (Lcom/mojang/brigadier/context/CommandContext;Lcom/mojang/brigadier/suggestion/SuggestionsBuilder;)Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/commands/arguments/EntityAnchorArgument/m_90350_ ()Lnet/minecraft/commands/arguments/EntityAnchorArgument; net/minecraft/commands/arguments/EntityAnchorArgument/anchor ()Lnet/minecraft/commands/arguments/EntityAnchorArgument; +MD: net/minecraft/commands/arguments/EntityAnchorArgument/m_90353_ (Lcom/mojang/brigadier/context/CommandContext;Ljava/lang/String;)Lnet/minecraft/commands/arguments/EntityAnchorArgument$Anchor; net/minecraft/commands/arguments/EntityAnchorArgument/getAnchor (Lcom/mojang/brigadier/context/CommandContext;Ljava/lang/String;)Lnet/minecraft/commands/arguments/EntityAnchorArgument$Anchor; +MD: net/minecraft/commands/arguments/EntityAnchorArgument/m_90356_ (Ljava/lang/Object;)Lcom/mojang/brigadier/Message; net/minecraft/commands/arguments/EntityAnchorArgument/lambda$static$0 (Ljava/lang/Object;)Lcom/mojang/brigadier/Message; +MD: net/minecraft/commands/arguments/EntityAnchorArgument/parse (Lcom/mojang/brigadier/StringReader;)Ljava/lang/Object; net/minecraft/commands/arguments/EntityAnchorArgument/parse (Lcom/mojang/brigadier/StringReader;)Ljava/lang/Object; +MD: net/minecraft/commands/arguments/EntityAnchorArgument/parse (Lcom/mojang/brigadier/StringReader;)Lnet/minecraft/commands/arguments/EntityAnchorArgument$Anchor; net/minecraft/commands/arguments/EntityAnchorArgument/parse (Lcom/mojang/brigadier/StringReader;)Lnet/minecraft/commands/arguments/EntityAnchorArgument$Anchor; +MD: net/minecraft/commands/arguments/EntityAnchorArgument$Anchor/ ()V net/minecraft/commands/arguments/EntityAnchorArgument$Anchor/ ()V +MD: net/minecraft/commands/arguments/EntityAnchorArgument$Anchor/ (Ljava/lang/String;ILjava/lang/String;Ljava/util/function/BiFunction;)V net/minecraft/commands/arguments/EntityAnchorArgument$Anchor/ (Ljava/lang/String;ILjava/lang/String;Ljava/util/function/BiFunction;)V +MD: net/minecraft/commands/arguments/EntityAnchorArgument$Anchor/m_167593_ ()[Lnet/minecraft/commands/arguments/EntityAnchorArgument$Anchor; net/minecraft/commands/arguments/EntityAnchorArgument$Anchor/$values ()[Lnet/minecraft/commands/arguments/EntityAnchorArgument$Anchor; +MD: net/minecraft/commands/arguments/EntityAnchorArgument$Anchor/m_90377_ (Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/world/phys/Vec3; net/minecraft/commands/arguments/EntityAnchorArgument$Anchor/apply (Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/world/phys/Vec3; +MD: net/minecraft/commands/arguments/EntityAnchorArgument$Anchor/m_90379_ (Lnet/minecraft/commands/CommandSourceStack;)Lnet/minecraft/world/phys/Vec3; net/minecraft/commands/arguments/EntityAnchorArgument$Anchor/apply (Lnet/minecraft/commands/CommandSourceStack;)Lnet/minecraft/world/phys/Vec3; +MD: net/minecraft/commands/arguments/EntityAnchorArgument$Anchor/m_90381_ (Lnet/minecraft/world/phys/Vec3;Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/world/phys/Vec3; net/minecraft/commands/arguments/EntityAnchorArgument$Anchor/lambda$static$1 (Lnet/minecraft/world/phys/Vec3;Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/world/phys/Vec3; +MD: net/minecraft/commands/arguments/EntityAnchorArgument$Anchor/m_90384_ (Ljava/lang/String;)Lnet/minecraft/commands/arguments/EntityAnchorArgument$Anchor; net/minecraft/commands/arguments/EntityAnchorArgument$Anchor/getByName (Ljava/lang/String;)Lnet/minecraft/commands/arguments/EntityAnchorArgument$Anchor; +MD: net/minecraft/commands/arguments/EntityAnchorArgument$Anchor/m_90386_ (Ljava/util/HashMap;)V net/minecraft/commands/arguments/EntityAnchorArgument$Anchor/lambda$static$2 (Ljava/util/HashMap;)V +MD: net/minecraft/commands/arguments/EntityAnchorArgument$Anchor/m_90388_ (Lnet/minecraft/world/phys/Vec3;Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/world/phys/Vec3; net/minecraft/commands/arguments/EntityAnchorArgument$Anchor/lambda$static$0 (Lnet/minecraft/world/phys/Vec3;Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/world/phys/Vec3; +MD: net/minecraft/commands/arguments/EntityAnchorArgument$Anchor/valueOf (Ljava/lang/String;)Lnet/minecraft/commands/arguments/EntityAnchorArgument$Anchor; net/minecraft/commands/arguments/EntityAnchorArgument$Anchor/valueOf (Ljava/lang/String;)Lnet/minecraft/commands/arguments/EntityAnchorArgument$Anchor; +MD: net/minecraft/commands/arguments/EntityAnchorArgument$Anchor/values ()[Lnet/minecraft/commands/arguments/EntityAnchorArgument$Anchor; net/minecraft/commands/arguments/EntityAnchorArgument$Anchor/values ()[Lnet/minecraft/commands/arguments/EntityAnchorArgument$Anchor; +MD: net/minecraft/commands/arguments/EntityArgument/ ()V net/minecraft/commands/arguments/EntityArgument/ ()V +MD: net/minecraft/commands/arguments/EntityArgument/ (ZZ)V net/minecraft/commands/arguments/EntityArgument/ (ZZ)V +MD: net/minecraft/commands/arguments/EntityArgument/getExamples ()Ljava/util/Collection; net/minecraft/commands/arguments/EntityArgument/getExamples ()Ljava/util/Collection; +MD: net/minecraft/commands/arguments/EntityArgument/listSuggestions (Lcom/mojang/brigadier/context/CommandContext;Lcom/mojang/brigadier/suggestion/SuggestionsBuilder;)Ljava/util/concurrent/CompletableFuture; net/minecraft/commands/arguments/EntityArgument/listSuggestions (Lcom/mojang/brigadier/context/CommandContext;Lcom/mojang/brigadier/suggestion/SuggestionsBuilder;)Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/commands/arguments/EntityArgument/m_91449_ ()Lnet/minecraft/commands/arguments/EntityArgument; net/minecraft/commands/arguments/EntityArgument/entity ()Lnet/minecraft/commands/arguments/EntityArgument; +MD: net/minecraft/commands/arguments/EntityArgument/m_91452_ (Lcom/mojang/brigadier/context/CommandContext;Ljava/lang/String;)Lnet/minecraft/world/entity/Entity; net/minecraft/commands/arguments/EntityArgument/getEntity (Lcom/mojang/brigadier/context/CommandContext;Ljava/lang/String;)Lnet/minecraft/world/entity/Entity; +MD: net/minecraft/commands/arguments/EntityArgument/m_91455_ (Lnet/minecraft/commands/SharedSuggestionProvider;Lcom/mojang/brigadier/suggestion/SuggestionsBuilder;)V net/minecraft/commands/arguments/EntityArgument/lambda$listSuggestions$0 (Lnet/minecraft/commands/SharedSuggestionProvider;Lcom/mojang/brigadier/suggestion/SuggestionsBuilder;)V +MD: net/minecraft/commands/arguments/EntityArgument/m_91460_ ()Lnet/minecraft/commands/arguments/EntityArgument; net/minecraft/commands/arguments/EntityArgument/entities ()Lnet/minecraft/commands/arguments/EntityArgument; +MD: net/minecraft/commands/arguments/EntityArgument/m_91461_ (Lcom/mojang/brigadier/context/CommandContext;Ljava/lang/String;)Ljava/util/Collection; net/minecraft/commands/arguments/EntityArgument/getEntities (Lcom/mojang/brigadier/context/CommandContext;Ljava/lang/String;)Ljava/util/Collection; +MD: net/minecraft/commands/arguments/EntityArgument/m_91466_ ()Lnet/minecraft/commands/arguments/EntityArgument; net/minecraft/commands/arguments/EntityArgument/player ()Lnet/minecraft/commands/arguments/EntityArgument; +MD: net/minecraft/commands/arguments/EntityArgument/m_91467_ (Lcom/mojang/brigadier/context/CommandContext;Ljava/lang/String;)Ljava/util/Collection; net/minecraft/commands/arguments/EntityArgument/getOptionalEntities (Lcom/mojang/brigadier/context/CommandContext;Ljava/lang/String;)Ljava/util/Collection; +MD: net/minecraft/commands/arguments/EntityArgument/m_91470_ ()Lnet/minecraft/commands/arguments/EntityArgument; net/minecraft/commands/arguments/EntityArgument/players ()Lnet/minecraft/commands/arguments/EntityArgument; +MD: net/minecraft/commands/arguments/EntityArgument/m_91471_ (Lcom/mojang/brigadier/context/CommandContext;Ljava/lang/String;)Ljava/util/Collection; net/minecraft/commands/arguments/EntityArgument/getOptionalPlayers (Lcom/mojang/brigadier/context/CommandContext;Ljava/lang/String;)Ljava/util/Collection; +MD: net/minecraft/commands/arguments/EntityArgument/m_91474_ (Lcom/mojang/brigadier/context/CommandContext;Ljava/lang/String;)Lnet/minecraft/server/level/ServerPlayer; net/minecraft/commands/arguments/EntityArgument/getPlayer (Lcom/mojang/brigadier/context/CommandContext;Ljava/lang/String;)Lnet/minecraft/server/level/ServerPlayer; +MD: net/minecraft/commands/arguments/EntityArgument/m_91477_ (Lcom/mojang/brigadier/context/CommandContext;Ljava/lang/String;)Ljava/util/Collection; net/minecraft/commands/arguments/EntityArgument/getPlayers (Lcom/mojang/brigadier/context/CommandContext;Ljava/lang/String;)Ljava/util/Collection; +MD: net/minecraft/commands/arguments/EntityArgument/parse (Lcom/mojang/brigadier/StringReader;)Ljava/lang/Object; net/minecraft/commands/arguments/EntityArgument/parse (Lcom/mojang/brigadier/StringReader;)Ljava/lang/Object; +MD: net/minecraft/commands/arguments/EntityArgument/parse (Lcom/mojang/brigadier/StringReader;)Lnet/minecraft/commands/arguments/selector/EntitySelector; net/minecraft/commands/arguments/EntityArgument/parse (Lcom/mojang/brigadier/StringReader;)Lnet/minecraft/commands/arguments/selector/EntitySelector; +MD: net/minecraft/commands/arguments/EntityArgument$Info/ ()V net/minecraft/commands/arguments/EntityArgument$Info/ ()V +MD: net/minecraft/commands/arguments/EntityArgument$Info/m_213618_ (Lnet/minecraft/network/FriendlyByteBuf;)Lnet/minecraft/commands/arguments/EntityArgument$Info$Template; net/minecraft/commands/arguments/EntityArgument$Info/deserializeFromNetwork (Lnet/minecraft/network/FriendlyByteBuf;)Lnet/minecraft/commands/arguments/EntityArgument$Info$Template; +MD: net/minecraft/commands/arguments/EntityArgument$Info/m_213618_ (Lnet/minecraft/network/FriendlyByteBuf;)Lnet/minecraft/commands/synchronization/ArgumentTypeInfo$Template; net/minecraft/commands/arguments/EntityArgument$Info/deserializeFromNetwork (Lnet/minecraft/network/FriendlyByteBuf;)Lnet/minecraft/commands/synchronization/ArgumentTypeInfo$Template; +MD: net/minecraft/commands/arguments/EntityArgument$Info/m_213719_ (Lnet/minecraft/commands/synchronization/ArgumentTypeInfo$Template;Lcom/google/gson/JsonObject;)V net/minecraft/commands/arguments/EntityArgument$Info/serializeToJson (Lnet/minecraft/commands/synchronization/ArgumentTypeInfo$Template;Lcom/google/gson/JsonObject;)V +MD: net/minecraft/commands/arguments/EntityArgument$Info/m_213719_ (Lnet/minecraft/commands/arguments/EntityArgument$Info$Template;Lcom/google/gson/JsonObject;)V net/minecraft/commands/arguments/EntityArgument$Info/serializeToJson (Lnet/minecraft/commands/arguments/EntityArgument$Info$Template;Lcom/google/gson/JsonObject;)V +MD: net/minecraft/commands/arguments/EntityArgument$Info/m_214155_ (Lnet/minecraft/commands/synchronization/ArgumentTypeInfo$Template;Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/commands/arguments/EntityArgument$Info/serializeToNetwork (Lnet/minecraft/commands/synchronization/ArgumentTypeInfo$Template;Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/commands/arguments/EntityArgument$Info/m_214155_ (Lnet/minecraft/commands/arguments/EntityArgument$Info$Template;Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/commands/arguments/EntityArgument$Info/serializeToNetwork (Lnet/minecraft/commands/arguments/EntityArgument$Info$Template;Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/commands/arguments/EntityArgument$Info/m_214163_ (Lcom/mojang/brigadier/arguments/ArgumentType;)Lnet/minecraft/commands/synchronization/ArgumentTypeInfo$Template; net/minecraft/commands/arguments/EntityArgument$Info/unpack (Lcom/mojang/brigadier/arguments/ArgumentType;)Lnet/minecraft/commands/synchronization/ArgumentTypeInfo$Template; +MD: net/minecraft/commands/arguments/EntityArgument$Info/m_214163_ (Lnet/minecraft/commands/arguments/EntityArgument;)Lnet/minecraft/commands/arguments/EntityArgument$Info$Template; net/minecraft/commands/arguments/EntityArgument$Info/unpack (Lnet/minecraft/commands/arguments/EntityArgument;)Lnet/minecraft/commands/arguments/EntityArgument$Info$Template; +MD: net/minecraft/commands/arguments/EntityArgument$Info$Template/ (Lnet/minecraft/commands/arguments/EntityArgument$Info;ZZ)V net/minecraft/commands/arguments/EntityArgument$Info$Template/ (Lnet/minecraft/commands/arguments/EntityArgument$Info;ZZ)V +MD: net/minecraft/commands/arguments/EntityArgument$Info$Template/m_213709_ ()Lnet/minecraft/commands/synchronization/ArgumentTypeInfo; net/minecraft/commands/arguments/EntityArgument$Info$Template/type ()Lnet/minecraft/commands/synchronization/ArgumentTypeInfo; +MD: net/minecraft/commands/arguments/EntityArgument$Info$Template/m_213879_ (Lnet/minecraft/commands/CommandBuildContext;)Lcom/mojang/brigadier/arguments/ArgumentType; net/minecraft/commands/arguments/EntityArgument$Info$Template/instantiate (Lnet/minecraft/commands/CommandBuildContext;)Lcom/mojang/brigadier/arguments/ArgumentType; +MD: net/minecraft/commands/arguments/EntityArgument$Info$Template/m_213879_ (Lnet/minecraft/commands/CommandBuildContext;)Lnet/minecraft/commands/arguments/EntityArgument; net/minecraft/commands/arguments/EntityArgument$Info$Template/instantiate (Lnet/minecraft/commands/CommandBuildContext;)Lnet/minecraft/commands/arguments/EntityArgument; +MD: net/minecraft/commands/arguments/GameModeArgument/ ()V net/minecraft/commands/arguments/GameModeArgument/ ()V +MD: net/minecraft/commands/arguments/GameModeArgument/ ()V net/minecraft/commands/arguments/GameModeArgument/ ()V +MD: net/minecraft/commands/arguments/GameModeArgument/getExamples ()Ljava/util/Collection; net/minecraft/commands/arguments/GameModeArgument/getExamples ()Ljava/util/Collection; +MD: net/minecraft/commands/arguments/GameModeArgument/listSuggestions (Lcom/mojang/brigadier/context/CommandContext;Lcom/mojang/brigadier/suggestion/SuggestionsBuilder;)Ljava/util/concurrent/CompletableFuture; net/minecraft/commands/arguments/GameModeArgument/listSuggestions (Lcom/mojang/brigadier/context/CommandContext;Lcom/mojang/brigadier/suggestion/SuggestionsBuilder;)Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/commands/arguments/GameModeArgument/m_257624_ (Ljava/lang/Object;)Lcom/mojang/brigadier/Message; net/minecraft/commands/arguments/GameModeArgument/lambda$static$0 (Ljava/lang/Object;)Lcom/mojang/brigadier/Message; +MD: net/minecraft/commands/arguments/GameModeArgument/m_257772_ ()Lnet/minecraft/commands/arguments/GameModeArgument; net/minecraft/commands/arguments/GameModeArgument/gameMode ()Lnet/minecraft/commands/arguments/GameModeArgument; +MD: net/minecraft/commands/arguments/GameModeArgument/m_257804_ (Lcom/mojang/brigadier/context/CommandContext;Ljava/lang/String;)Lnet/minecraft/world/level/GameType; net/minecraft/commands/arguments/GameModeArgument/getGameMode (Lcom/mojang/brigadier/context/CommandContext;Ljava/lang/String;)Lnet/minecraft/world/level/GameType; +MD: net/minecraft/commands/arguments/GameModeArgument/parse (Lcom/mojang/brigadier/StringReader;)Ljava/lang/Object; net/minecraft/commands/arguments/GameModeArgument/parse (Lcom/mojang/brigadier/StringReader;)Ljava/lang/Object; +MD: net/minecraft/commands/arguments/GameModeArgument/parse (Lcom/mojang/brigadier/StringReader;)Lnet/minecraft/world/level/GameType; net/minecraft/commands/arguments/GameModeArgument/parse (Lcom/mojang/brigadier/StringReader;)Lnet/minecraft/world/level/GameType; +MD: net/minecraft/commands/arguments/GameProfileArgument/ ()V net/minecraft/commands/arguments/GameProfileArgument/ ()V +MD: net/minecraft/commands/arguments/GameProfileArgument/ ()V net/minecraft/commands/arguments/GameProfileArgument/ ()V +MD: net/minecraft/commands/arguments/GameProfileArgument/getExamples ()Ljava/util/Collection; net/minecraft/commands/arguments/GameProfileArgument/getExamples ()Ljava/util/Collection; +MD: net/minecraft/commands/arguments/GameProfileArgument/listSuggestions (Lcom/mojang/brigadier/context/CommandContext;Lcom/mojang/brigadier/suggestion/SuggestionsBuilder;)Ljava/util/concurrent/CompletableFuture; net/minecraft/commands/arguments/GameProfileArgument/listSuggestions (Lcom/mojang/brigadier/context/CommandContext;Lcom/mojang/brigadier/suggestion/SuggestionsBuilder;)Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/commands/arguments/GameProfileArgument/m_94584_ ()Lnet/minecraft/commands/arguments/GameProfileArgument; net/minecraft/commands/arguments/GameProfileArgument/gameProfile ()Lnet/minecraft/commands/arguments/GameProfileArgument; +MD: net/minecraft/commands/arguments/GameProfileArgument/m_94587_ (Lcom/mojang/brigadier/context/CommandContext;Lcom/mojang/brigadier/suggestion/SuggestionsBuilder;)V net/minecraft/commands/arguments/GameProfileArgument/lambda$listSuggestions$1 (Lcom/mojang/brigadier/context/CommandContext;Lcom/mojang/brigadier/suggestion/SuggestionsBuilder;)V +MD: net/minecraft/commands/arguments/GameProfileArgument/m_94590_ (Lcom/mojang/brigadier/context/CommandContext;Ljava/lang/String;)Ljava/util/Collection; net/minecraft/commands/arguments/GameProfileArgument/getGameProfiles (Lcom/mojang/brigadier/context/CommandContext;Ljava/lang/String;)Ljava/util/Collection; +MD: net/minecraft/commands/arguments/GameProfileArgument/m_94593_ (Ljava/lang/String;Lnet/minecraft/commands/CommandSourceStack;)Ljava/util/Collection; net/minecraft/commands/arguments/GameProfileArgument/lambda$parse$0 (Ljava/lang/String;Lnet/minecraft/commands/CommandSourceStack;)Ljava/util/Collection; +MD: net/minecraft/commands/arguments/GameProfileArgument/parse (Lcom/mojang/brigadier/StringReader;)Ljava/lang/Object; net/minecraft/commands/arguments/GameProfileArgument/parse (Lcom/mojang/brigadier/StringReader;)Ljava/lang/Object; +MD: net/minecraft/commands/arguments/GameProfileArgument/parse (Lcom/mojang/brigadier/StringReader;)Lnet/minecraft/commands/arguments/GameProfileArgument$Result; net/minecraft/commands/arguments/GameProfileArgument/parse (Lcom/mojang/brigadier/StringReader;)Lnet/minecraft/commands/arguments/GameProfileArgument$Result; +MD: net/minecraft/commands/arguments/GameProfileArgument$Result/m_6474_ (Lnet/minecraft/commands/CommandSourceStack;)Ljava/util/Collection; net/minecraft/commands/arguments/GameProfileArgument$Result/getNames (Lnet/minecraft/commands/CommandSourceStack;)Ljava/util/Collection; +MD: net/minecraft/commands/arguments/GameProfileArgument$SelectorResult/ (Lnet/minecraft/commands/arguments/selector/EntitySelector;)V net/minecraft/commands/arguments/GameProfileArgument$SelectorResult/ (Lnet/minecraft/commands/arguments/selector/EntitySelector;)V +MD: net/minecraft/commands/arguments/GameProfileArgument$SelectorResult/m_6474_ (Lnet/minecraft/commands/CommandSourceStack;)Ljava/util/Collection; net/minecraft/commands/arguments/GameProfileArgument$SelectorResult/getNames (Lnet/minecraft/commands/CommandSourceStack;)Ljava/util/Collection; +MD: net/minecraft/commands/arguments/HeightmapTypeArgument/ ()V net/minecraft/commands/arguments/HeightmapTypeArgument/ ()V +MD: net/minecraft/commands/arguments/HeightmapTypeArgument/ ()V net/minecraft/commands/arguments/HeightmapTypeArgument/ ()V +MD: net/minecraft/commands/arguments/HeightmapTypeArgument/m_274370_ (Lcom/mojang/brigadier/context/CommandContext;Ljava/lang/String;)Lnet/minecraft/world/level/levelgen/Heightmap$Types; net/minecraft/commands/arguments/HeightmapTypeArgument/getHeightmap (Lcom/mojang/brigadier/context/CommandContext;Ljava/lang/String;)Lnet/minecraft/world/level/levelgen/Heightmap$Types; +MD: net/minecraft/commands/arguments/HeightmapTypeArgument/m_274434_ (Ljava/lang/String;)Ljava/lang/String; net/minecraft/commands/arguments/HeightmapTypeArgument/convertId (Ljava/lang/String;)Ljava/lang/String; +MD: net/minecraft/commands/arguments/HeightmapTypeArgument/m_274452_ ()[Lnet/minecraft/world/level/levelgen/Heightmap$Types; net/minecraft/commands/arguments/HeightmapTypeArgument/keptTypes ()[Lnet/minecraft/world/level/levelgen/Heightmap$Types; +MD: net/minecraft/commands/arguments/HeightmapTypeArgument/m_274454_ (Ljava/lang/String;)Ljava/lang/String; net/minecraft/commands/arguments/HeightmapTypeArgument/lambda$static$0 (Ljava/lang/String;)Ljava/lang/String; +MD: net/minecraft/commands/arguments/HeightmapTypeArgument/m_274499_ (I)[Lnet/minecraft/world/level/levelgen/Heightmap$Types; net/minecraft/commands/arguments/HeightmapTypeArgument/lambda$keptTypes$1 (I)[Lnet/minecraft/world/level/levelgen/Heightmap$Types; +MD: net/minecraft/commands/arguments/HeightmapTypeArgument/m_274509_ ()Lnet/minecraft/commands/arguments/HeightmapTypeArgument; net/minecraft/commands/arguments/HeightmapTypeArgument/heightmap ()Lnet/minecraft/commands/arguments/HeightmapTypeArgument; +MD: net/minecraft/commands/arguments/MessageArgument/ ()V net/minecraft/commands/arguments/MessageArgument/ ()V +MD: net/minecraft/commands/arguments/MessageArgument/ ()V net/minecraft/commands/arguments/MessageArgument/ ()V +MD: net/minecraft/commands/arguments/MessageArgument/getExamples ()Ljava/util/Collection; net/minecraft/commands/arguments/MessageArgument/getExamples ()Ljava/util/Collection; +MD: net/minecraft/commands/arguments/MessageArgument/m_244748_ (Ljava/util/function/Consumer;Lnet/minecraft/network/chat/PlayerChatMessage;Lnet/minecraft/network/chat/Component;)V net/minecraft/commands/arguments/MessageArgument/lambda$resolveDisguisedMessage$2 (Ljava/util/function/Consumer;Lnet/minecraft/network/chat/PlayerChatMessage;Lnet/minecraft/network/chat/Component;)V +MD: net/minecraft/commands/arguments/MessageArgument/m_244749_ (Lnet/minecraft/network/chat/PlayerChatMessage;Ljava/util/concurrent/CompletableFuture;Ljava/util/concurrent/CompletableFuture;Ljava/util/function/Consumer;Ljava/lang/Void;)V net/minecraft/commands/arguments/MessageArgument/lambda$resolveSignedMessage$0 (Lnet/minecraft/network/chat/PlayerChatMessage;Ljava/util/concurrent/CompletableFuture;Ljava/util/concurrent/CompletableFuture;Ljava/util/function/Consumer;Ljava/lang/Void;)V +MD: net/minecraft/commands/arguments/MessageArgument/m_244750_ (Ljava/util/concurrent/CompletableFuture;Ljava/util/function/Consumer;Lnet/minecraft/network/chat/PlayerChatMessage;Ljava/util/concurrent/Executor;)Ljava/util/concurrent/CompletableFuture; net/minecraft/commands/arguments/MessageArgument/lambda$resolveDisguisedMessage$3 (Ljava/util/concurrent/CompletableFuture;Ljava/util/function/Consumer;Lnet/minecraft/network/chat/PlayerChatMessage;Ljava/util/concurrent/Executor;)Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/commands/arguments/MessageArgument/m_244751_ (Ljava/util/concurrent/CompletableFuture;Ljava/util/concurrent/CompletableFuture;Lnet/minecraft/network/chat/PlayerChatMessage;Ljava/util/function/Consumer;Ljava/util/concurrent/Executor;)Ljava/util/concurrent/CompletableFuture; net/minecraft/commands/arguments/MessageArgument/lambda$resolveSignedMessage$1 (Ljava/util/concurrent/CompletableFuture;Ljava/util/concurrent/CompletableFuture;Lnet/minecraft/network/chat/PlayerChatMessage;Ljava/util/function/Consumer;Ljava/util/concurrent/Executor;)Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/commands/arguments/MessageArgument/m_245478_ (Lcom/mojang/brigadier/context/CommandContext;Ljava/lang/String;Ljava/util/function/Consumer;)V net/minecraft/commands/arguments/MessageArgument/resolveChatMessage (Lcom/mojang/brigadier/context/CommandContext;Ljava/lang/String;Ljava/util/function/Consumer;)V +MD: net/minecraft/commands/arguments/MessageArgument/m_246606_ (Lnet/minecraft/commands/CommandSourceStack;Lnet/minecraft/network/chat/PlayerChatMessage;)Ljava/util/concurrent/CompletableFuture; net/minecraft/commands/arguments/MessageArgument/filterPlainText (Lnet/minecraft/commands/CommandSourceStack;Lnet/minecraft/network/chat/PlayerChatMessage;)Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/commands/arguments/MessageArgument/m_247098_ (Ljava/util/function/Consumer;Lnet/minecraft/commands/CommandSourceStack;Lnet/minecraft/network/chat/PlayerChatMessage;)V net/minecraft/commands/arguments/MessageArgument/resolveDisguisedMessage (Ljava/util/function/Consumer;Lnet/minecraft/commands/CommandSourceStack;Lnet/minecraft/network/chat/PlayerChatMessage;)V +MD: net/minecraft/commands/arguments/MessageArgument/m_247736_ (Ljava/util/function/Consumer;Lnet/minecraft/commands/CommandSourceStack;Lnet/minecraft/network/chat/PlayerChatMessage;)V net/minecraft/commands/arguments/MessageArgument/resolveSignedMessage (Ljava/util/function/Consumer;Lnet/minecraft/commands/CommandSourceStack;Lnet/minecraft/network/chat/PlayerChatMessage;)V +MD: net/minecraft/commands/arguments/MessageArgument/m_96832_ ()Lnet/minecraft/commands/arguments/MessageArgument; net/minecraft/commands/arguments/MessageArgument/message ()Lnet/minecraft/commands/arguments/MessageArgument; +MD: net/minecraft/commands/arguments/MessageArgument/m_96835_ (Lcom/mojang/brigadier/context/CommandContext;Ljava/lang/String;)Lnet/minecraft/network/chat/Component; net/minecraft/commands/arguments/MessageArgument/getMessage (Lcom/mojang/brigadier/context/CommandContext;Ljava/lang/String;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/commands/arguments/MessageArgument/parse (Lcom/mojang/brigadier/StringReader;)Ljava/lang/Object; net/minecraft/commands/arguments/MessageArgument/parse (Lcom/mojang/brigadier/StringReader;)Ljava/lang/Object; +MD: net/minecraft/commands/arguments/MessageArgument/parse (Lcom/mojang/brigadier/StringReader;)Lnet/minecraft/commands/arguments/MessageArgument$Message; net/minecraft/commands/arguments/MessageArgument/parse (Lcom/mojang/brigadier/StringReader;)Lnet/minecraft/commands/arguments/MessageArgument$Message; +MD: net/minecraft/commands/arguments/MessageArgument$Message/ (Ljava/lang/String;[Lnet/minecraft/commands/arguments/MessageArgument$Part;)V net/minecraft/commands/arguments/MessageArgument$Message/ (Ljava/lang/String;[Lnet/minecraft/commands/arguments/MessageArgument$Part;)V +MD: net/minecraft/commands/arguments/MessageArgument$Message/m_169112_ ()Ljava/lang/String; net/minecraft/commands/arguments/MessageArgument$Message/getText ()Ljava/lang/String; +MD: net/minecraft/commands/arguments/MessageArgument$Message/m_169113_ ()[Lnet/minecraft/commands/arguments/MessageArgument$Part; net/minecraft/commands/arguments/MessageArgument$Message/getParts ()[Lnet/minecraft/commands/arguments/MessageArgument$Part; +MD: net/minecraft/commands/arguments/MessageArgument$Message/m_232196_ (Lnet/minecraft/commands/CommandSourceStack;)Lnet/minecraft/network/chat/Component; net/minecraft/commands/arguments/MessageArgument$Message/resolveComponent (Lnet/minecraft/commands/CommandSourceStack;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/commands/arguments/MessageArgument$Message/m_96846_ (Lcom/mojang/brigadier/StringReader;Z)Lnet/minecraft/commands/arguments/MessageArgument$Message; net/minecraft/commands/arguments/MessageArgument$Message/parseText (Lcom/mojang/brigadier/StringReader;Z)Lnet/minecraft/commands/arguments/MessageArgument$Message; +MD: net/minecraft/commands/arguments/MessageArgument$Message/m_96849_ (Lnet/minecraft/commands/CommandSourceStack;Z)Lnet/minecraft/network/chat/Component; net/minecraft/commands/arguments/MessageArgument$Message/toComponent (Lnet/minecraft/commands/CommandSourceStack;Z)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/commands/arguments/MessageArgument$Part/ (IILnet/minecraft/commands/arguments/selector/EntitySelector;)V net/minecraft/commands/arguments/MessageArgument$Part/ (IILnet/minecraft/commands/arguments/selector/EntitySelector;)V +MD: net/minecraft/commands/arguments/MessageArgument$Part/m_169114_ ()Lnet/minecraft/commands/arguments/selector/EntitySelector; net/minecraft/commands/arguments/MessageArgument$Part/getSelector ()Lnet/minecraft/commands/arguments/selector/EntitySelector; +MD: net/minecraft/commands/arguments/MessageArgument$Part/m_96859_ ()I net/minecraft/commands/arguments/MessageArgument$Part/getStart ()I +MD: net/minecraft/commands/arguments/MessageArgument$Part/m_96860_ (Lnet/minecraft/commands/CommandSourceStack;)Lnet/minecraft/network/chat/Component; net/minecraft/commands/arguments/MessageArgument$Part/toComponent (Lnet/minecraft/commands/CommandSourceStack;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/commands/arguments/MessageArgument$Part/m_96862_ ()I net/minecraft/commands/arguments/MessageArgument$Part/getEnd ()I +MD: net/minecraft/commands/arguments/NbtPathArgument/ ()V net/minecraft/commands/arguments/NbtPathArgument/ ()V +MD: net/minecraft/commands/arguments/NbtPathArgument/ ()V net/minecraft/commands/arguments/NbtPathArgument/ ()V +MD: net/minecraft/commands/arguments/NbtPathArgument/getExamples ()Ljava/util/Collection; net/minecraft/commands/arguments/NbtPathArgument/getExamples ()Ljava/util/Collection; +MD: net/minecraft/commands/arguments/NbtPathArgument/m_263143_ (Ljava/lang/Object;)Lcom/mojang/brigadier/Message; net/minecraft/commands/arguments/NbtPathArgument/lambda$static$2 (Ljava/lang/Object;)Lcom/mojang/brigadier/Message; +MD: net/minecraft/commands/arguments/NbtPathArgument/m_263144_ (Ljava/lang/Object;)Lcom/mojang/brigadier/Message; net/minecraft/commands/arguments/NbtPathArgument/lambda$static$1 (Ljava/lang/Object;)Lcom/mojang/brigadier/Message; +MD: net/minecraft/commands/arguments/NbtPathArgument/m_99487_ ()Lnet/minecraft/commands/arguments/NbtPathArgument; net/minecraft/commands/arguments/NbtPathArgument/nbtPath ()Lnet/minecraft/commands/arguments/NbtPathArgument; +MD: net/minecraft/commands/arguments/NbtPathArgument/m_99488_ (C)Z net/minecraft/commands/arguments/NbtPathArgument/isAllowedInUnquotedName (C)Z +MD: net/minecraft/commands/arguments/NbtPathArgument/m_99492_ (Lcom/mojang/brigadier/StringReader;Ljava/lang/String;)Lnet/minecraft/commands/arguments/NbtPathArgument$Node; net/minecraft/commands/arguments/NbtPathArgument/readObjectNode (Lcom/mojang/brigadier/StringReader;Ljava/lang/String;)Lnet/minecraft/commands/arguments/NbtPathArgument$Node; +MD: net/minecraft/commands/arguments/NbtPathArgument/m_99495_ (Lcom/mojang/brigadier/StringReader;Z)Lnet/minecraft/commands/arguments/NbtPathArgument$Node; net/minecraft/commands/arguments/NbtPathArgument/parseNode (Lcom/mojang/brigadier/StringReader;Z)Lnet/minecraft/commands/arguments/NbtPathArgument$Node; +MD: net/minecraft/commands/arguments/NbtPathArgument/m_99498_ (Lcom/mojang/brigadier/context/CommandContext;Ljava/lang/String;)Lnet/minecraft/commands/arguments/NbtPathArgument$NbtPath; net/minecraft/commands/arguments/NbtPathArgument/getPath (Lcom/mojang/brigadier/context/CommandContext;Ljava/lang/String;)Lnet/minecraft/commands/arguments/NbtPathArgument$NbtPath; +MD: net/minecraft/commands/arguments/NbtPathArgument/m_99501_ (Ljava/lang/Object;)Lcom/mojang/brigadier/Message; net/minecraft/commands/arguments/NbtPathArgument/lambda$static$0 (Ljava/lang/Object;)Lcom/mojang/brigadier/Message; +MD: net/minecraft/commands/arguments/NbtPathArgument/m_99505_ (Lnet/minecraft/nbt/CompoundTag;Lnet/minecraft/nbt/Tag;)Z net/minecraft/commands/arguments/NbtPathArgument/lambda$createTagPredicate$3 (Lnet/minecraft/nbt/CompoundTag;Lnet/minecraft/nbt/Tag;)Z +MD: net/minecraft/commands/arguments/NbtPathArgument/m_99508_ (Lcom/mojang/brigadier/StringReader;)Ljava/lang/String; net/minecraft/commands/arguments/NbtPathArgument/readUnquotedName (Lcom/mojang/brigadier/StringReader;)Ljava/lang/String; +MD: net/minecraft/commands/arguments/NbtPathArgument/m_99510_ (Lnet/minecraft/nbt/CompoundTag;)Ljava/util/function/Predicate; net/minecraft/commands/arguments/NbtPathArgument/createTagPredicate (Lnet/minecraft/nbt/CompoundTag;)Ljava/util/function/Predicate; +MD: net/minecraft/commands/arguments/NbtPathArgument/parse (Lcom/mojang/brigadier/StringReader;)Ljava/lang/Object; net/minecraft/commands/arguments/NbtPathArgument/parse (Lcom/mojang/brigadier/StringReader;)Ljava/lang/Object; +MD: net/minecraft/commands/arguments/NbtPathArgument/parse (Lcom/mojang/brigadier/StringReader;)Lnet/minecraft/commands/arguments/NbtPathArgument$NbtPath; net/minecraft/commands/arguments/NbtPathArgument/parse (Lcom/mojang/brigadier/StringReader;)Lnet/minecraft/commands/arguments/NbtPathArgument$NbtPath; +MD: net/minecraft/commands/arguments/NbtPathArgument$AllElementsNode/ ()V net/minecraft/commands/arguments/NbtPathArgument$AllElementsNode/ ()V +MD: net/minecraft/commands/arguments/NbtPathArgument$AllElementsNode/ ()V net/minecraft/commands/arguments/NbtPathArgument$AllElementsNode/ ()V +MD: net/minecraft/commands/arguments/NbtPathArgument$AllElementsNode/m_5571_ (Lnet/minecraft/nbt/Tag;Ljava/util/function/Supplier;)I net/minecraft/commands/arguments/NbtPathArgument$AllElementsNode/setTag (Lnet/minecraft/nbt/Tag;Ljava/util/function/Supplier;)I +MD: net/minecraft/commands/arguments/NbtPathArgument$AllElementsNode/m_6015_ (Lnet/minecraft/nbt/Tag;)I net/minecraft/commands/arguments/NbtPathArgument$AllElementsNode/removeTag (Lnet/minecraft/nbt/Tag;)I +MD: net/minecraft/commands/arguments/NbtPathArgument$AllElementsNode/m_7273_ (Lnet/minecraft/nbt/Tag;Ljava/util/List;)V net/minecraft/commands/arguments/NbtPathArgument$AllElementsNode/getTag (Lnet/minecraft/nbt/Tag;Ljava/util/List;)V +MD: net/minecraft/commands/arguments/NbtPathArgument$AllElementsNode/m_7510_ ()Lnet/minecraft/nbt/Tag; net/minecraft/commands/arguments/NbtPathArgument$AllElementsNode/createPreferredParentTag ()Lnet/minecraft/nbt/Tag; +MD: net/minecraft/commands/arguments/NbtPathArgument$AllElementsNode/m_7876_ (Lnet/minecraft/nbt/Tag;Ljava/util/function/Supplier;Ljava/util/List;)V net/minecraft/commands/arguments/NbtPathArgument$AllElementsNode/getOrCreateTag (Lnet/minecraft/nbt/Tag;Ljava/util/function/Supplier;Ljava/util/List;)V +MD: net/minecraft/commands/arguments/NbtPathArgument$CompoundChildNode/ (Ljava/lang/String;)V net/minecraft/commands/arguments/NbtPathArgument$CompoundChildNode/ (Ljava/lang/String;)V +MD: net/minecraft/commands/arguments/NbtPathArgument$CompoundChildNode/m_5571_ (Lnet/minecraft/nbt/Tag;Ljava/util/function/Supplier;)I net/minecraft/commands/arguments/NbtPathArgument$CompoundChildNode/setTag (Lnet/minecraft/nbt/Tag;Ljava/util/function/Supplier;)I +MD: net/minecraft/commands/arguments/NbtPathArgument$CompoundChildNode/m_6015_ (Lnet/minecraft/nbt/Tag;)I net/minecraft/commands/arguments/NbtPathArgument$CompoundChildNode/removeTag (Lnet/minecraft/nbt/Tag;)I +MD: net/minecraft/commands/arguments/NbtPathArgument$CompoundChildNode/m_7273_ (Lnet/minecraft/nbt/Tag;Ljava/util/List;)V net/minecraft/commands/arguments/NbtPathArgument$CompoundChildNode/getTag (Lnet/minecraft/nbt/Tag;Ljava/util/List;)V +MD: net/minecraft/commands/arguments/NbtPathArgument$CompoundChildNode/m_7510_ ()Lnet/minecraft/nbt/Tag; net/minecraft/commands/arguments/NbtPathArgument$CompoundChildNode/createPreferredParentTag ()Lnet/minecraft/nbt/Tag; +MD: net/minecraft/commands/arguments/NbtPathArgument$CompoundChildNode/m_7876_ (Lnet/minecraft/nbt/Tag;Ljava/util/function/Supplier;Ljava/util/List;)V net/minecraft/commands/arguments/NbtPathArgument$CompoundChildNode/getOrCreateTag (Lnet/minecraft/nbt/Tag;Ljava/util/function/Supplier;Ljava/util/List;)V +MD: net/minecraft/commands/arguments/NbtPathArgument$IndexedElementNode/ (I)V net/minecraft/commands/arguments/NbtPathArgument$IndexedElementNode/ (I)V +MD: net/minecraft/commands/arguments/NbtPathArgument$IndexedElementNode/m_5571_ (Lnet/minecraft/nbt/Tag;Ljava/util/function/Supplier;)I net/minecraft/commands/arguments/NbtPathArgument$IndexedElementNode/setTag (Lnet/minecraft/nbt/Tag;Ljava/util/function/Supplier;)I +MD: net/minecraft/commands/arguments/NbtPathArgument$IndexedElementNode/m_6015_ (Lnet/minecraft/nbt/Tag;)I net/minecraft/commands/arguments/NbtPathArgument$IndexedElementNode/removeTag (Lnet/minecraft/nbt/Tag;)I +MD: net/minecraft/commands/arguments/NbtPathArgument$IndexedElementNode/m_7273_ (Lnet/minecraft/nbt/Tag;Ljava/util/List;)V net/minecraft/commands/arguments/NbtPathArgument$IndexedElementNode/getTag (Lnet/minecraft/nbt/Tag;Ljava/util/List;)V +MD: net/minecraft/commands/arguments/NbtPathArgument$IndexedElementNode/m_7510_ ()Lnet/minecraft/nbt/Tag; net/minecraft/commands/arguments/NbtPathArgument$IndexedElementNode/createPreferredParentTag ()Lnet/minecraft/nbt/Tag; +MD: net/minecraft/commands/arguments/NbtPathArgument$IndexedElementNode/m_7876_ (Lnet/minecraft/nbt/Tag;Ljava/util/function/Supplier;Ljava/util/List;)V net/minecraft/commands/arguments/NbtPathArgument$IndexedElementNode/getOrCreateTag (Lnet/minecraft/nbt/Tag;Ljava/util/function/Supplier;Ljava/util/List;)V +MD: net/minecraft/commands/arguments/NbtPathArgument$MatchElementNode/ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/commands/arguments/NbtPathArgument$MatchElementNode/ (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/commands/arguments/NbtPathArgument$MatchElementNode/m_5571_ (Lnet/minecraft/nbt/Tag;Ljava/util/function/Supplier;)I net/minecraft/commands/arguments/NbtPathArgument$MatchElementNode/setTag (Lnet/minecraft/nbt/Tag;Ljava/util/function/Supplier;)I +MD: net/minecraft/commands/arguments/NbtPathArgument$MatchElementNode/m_6015_ (Lnet/minecraft/nbt/Tag;)I net/minecraft/commands/arguments/NbtPathArgument$MatchElementNode/removeTag (Lnet/minecraft/nbt/Tag;)I +MD: net/minecraft/commands/arguments/NbtPathArgument$MatchElementNode/m_7273_ (Lnet/minecraft/nbt/Tag;Ljava/util/List;)V net/minecraft/commands/arguments/NbtPathArgument$MatchElementNode/getTag (Lnet/minecraft/nbt/Tag;Ljava/util/List;)V +MD: net/minecraft/commands/arguments/NbtPathArgument$MatchElementNode/m_7510_ ()Lnet/minecraft/nbt/Tag; net/minecraft/commands/arguments/NbtPathArgument$MatchElementNode/createPreferredParentTag ()Lnet/minecraft/nbt/Tag; +MD: net/minecraft/commands/arguments/NbtPathArgument$MatchElementNode/m_7876_ (Lnet/minecraft/nbt/Tag;Ljava/util/function/Supplier;Ljava/util/List;)V net/minecraft/commands/arguments/NbtPathArgument$MatchElementNode/getOrCreateTag (Lnet/minecraft/nbt/Tag;Ljava/util/function/Supplier;Ljava/util/List;)V +MD: net/minecraft/commands/arguments/NbtPathArgument$MatchElementNode/m_99568_ (Ljava/util/List;Lorg/apache/commons/lang3/mutable/MutableBoolean;Lnet/minecraft/nbt/Tag;)V net/minecraft/commands/arguments/NbtPathArgument$MatchElementNode/lambda$getOrCreateTag$0 (Ljava/util/List;Lorg/apache/commons/lang3/mutable/MutableBoolean;Lnet/minecraft/nbt/Tag;)V +MD: net/minecraft/commands/arguments/NbtPathArgument$MatchObjectNode/ (Ljava/lang/String;Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/commands/arguments/NbtPathArgument$MatchObjectNode/ (Ljava/lang/String;Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/commands/arguments/NbtPathArgument$MatchObjectNode/m_5571_ (Lnet/minecraft/nbt/Tag;Ljava/util/function/Supplier;)I net/minecraft/commands/arguments/NbtPathArgument$MatchObjectNode/setTag (Lnet/minecraft/nbt/Tag;Ljava/util/function/Supplier;)I +MD: net/minecraft/commands/arguments/NbtPathArgument$MatchObjectNode/m_6015_ (Lnet/minecraft/nbt/Tag;)I net/minecraft/commands/arguments/NbtPathArgument$MatchObjectNode/removeTag (Lnet/minecraft/nbt/Tag;)I +MD: net/minecraft/commands/arguments/NbtPathArgument$MatchObjectNode/m_7273_ (Lnet/minecraft/nbt/Tag;Ljava/util/List;)V net/minecraft/commands/arguments/NbtPathArgument$MatchObjectNode/getTag (Lnet/minecraft/nbt/Tag;Ljava/util/List;)V +MD: net/minecraft/commands/arguments/NbtPathArgument$MatchObjectNode/m_7510_ ()Lnet/minecraft/nbt/Tag; net/minecraft/commands/arguments/NbtPathArgument$MatchObjectNode/createPreferredParentTag ()Lnet/minecraft/nbt/Tag; +MD: net/minecraft/commands/arguments/NbtPathArgument$MatchObjectNode/m_7876_ (Lnet/minecraft/nbt/Tag;Ljava/util/function/Supplier;Ljava/util/List;)V net/minecraft/commands/arguments/NbtPathArgument$MatchObjectNode/getOrCreateTag (Lnet/minecraft/nbt/Tag;Ljava/util/function/Supplier;Ljava/util/List;)V +MD: net/minecraft/commands/arguments/NbtPathArgument$MatchRootObjectNode/ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/commands/arguments/NbtPathArgument$MatchRootObjectNode/ (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/commands/arguments/NbtPathArgument$MatchRootObjectNode/m_5571_ (Lnet/minecraft/nbt/Tag;Ljava/util/function/Supplier;)I net/minecraft/commands/arguments/NbtPathArgument$MatchRootObjectNode/setTag (Lnet/minecraft/nbt/Tag;Ljava/util/function/Supplier;)I +MD: net/minecraft/commands/arguments/NbtPathArgument$MatchRootObjectNode/m_6015_ (Lnet/minecraft/nbt/Tag;)I net/minecraft/commands/arguments/NbtPathArgument$MatchRootObjectNode/removeTag (Lnet/minecraft/nbt/Tag;)I +MD: net/minecraft/commands/arguments/NbtPathArgument$MatchRootObjectNode/m_7273_ (Lnet/minecraft/nbt/Tag;Ljava/util/List;)V net/minecraft/commands/arguments/NbtPathArgument$MatchRootObjectNode/getTag (Lnet/minecraft/nbt/Tag;Ljava/util/List;)V +MD: net/minecraft/commands/arguments/NbtPathArgument$MatchRootObjectNode/m_7510_ ()Lnet/minecraft/nbt/Tag; net/minecraft/commands/arguments/NbtPathArgument$MatchRootObjectNode/createPreferredParentTag ()Lnet/minecraft/nbt/Tag; +MD: net/minecraft/commands/arguments/NbtPathArgument$MatchRootObjectNode/m_7876_ (Lnet/minecraft/nbt/Tag;Ljava/util/function/Supplier;Ljava/util/List;)V net/minecraft/commands/arguments/NbtPathArgument$MatchRootObjectNode/getOrCreateTag (Lnet/minecraft/nbt/Tag;Ljava/util/function/Supplier;Ljava/util/List;)V +MD: net/minecraft/commands/arguments/NbtPathArgument$NbtPath/ (Ljava/lang/String;[Lnet/minecraft/commands/arguments/NbtPathArgument$Node;Lit/unimi/dsi/fastutil/objects/Object2IntMap;)V net/minecraft/commands/arguments/NbtPathArgument$NbtPath/ (Ljava/lang/String;[Lnet/minecraft/commands/arguments/NbtPathArgument$Node;Lit/unimi/dsi/fastutil/objects/Object2IntMap;)V +MD: net/minecraft/commands/arguments/NbtPathArgument$NbtPath/m_169535_ (Lnet/minecraft/nbt/Tag;Lnet/minecraft/nbt/Tag;)I net/minecraft/commands/arguments/NbtPathArgument$NbtPath/set (Lnet/minecraft/nbt/Tag;Lnet/minecraft/nbt/Tag;)I +MD: net/minecraft/commands/arguments/NbtPathArgument$NbtPath/m_263145_ (Lorg/apache/commons/lang3/mutable/MutableBoolean;Lnet/minecraft/nbt/Tag;)Lnet/minecraft/nbt/Tag; net/minecraft/commands/arguments/NbtPathArgument$NbtPath/lambda$set$1 (Lorg/apache/commons/lang3/mutable/MutableBoolean;Lnet/minecraft/nbt/Tag;)Lnet/minecraft/nbt/Tag; +MD: net/minecraft/commands/arguments/NbtPathArgument$NbtPath/m_263146_ (Lnet/minecraft/commands/arguments/NbtPathArgument$Node;Lorg/apache/commons/lang3/mutable/MutableBoolean;Lnet/minecraft/nbt/Tag;Lnet/minecraft/nbt/Tag;)Ljava/lang/Integer; net/minecraft/commands/arguments/NbtPathArgument$NbtPath/lambda$set$2 (Lnet/minecraft/commands/arguments/NbtPathArgument$Node;Lorg/apache/commons/lang3/mutable/MutableBoolean;Lnet/minecraft/nbt/Tag;Lnet/minecraft/nbt/Tag;)Ljava/lang/Integer; +MD: net/minecraft/commands/arguments/NbtPathArgument$NbtPath/m_263172_ (ILnet/minecraft/nbt/CompoundTag;Ljava/util/List;)I net/minecraft/commands/arguments/NbtPathArgument$NbtPath/insert (ILnet/minecraft/nbt/CompoundTag;Ljava/util/List;)I +MD: net/minecraft/commands/arguments/NbtPathArgument$NbtPath/m_263200_ ()I net/minecraft/commands/arguments/NbtPathArgument$NbtPath/estimatePathDepth ()I +MD: net/minecraft/commands/arguments/NbtPathArgument$NbtPath/m_263222_ (Lnet/minecraft/nbt/Tag;I)Z net/minecraft/commands/arguments/NbtPathArgument$NbtPath/isTooDeep (Lnet/minecraft/nbt/Tag;I)Z +MD: net/minecraft/commands/arguments/NbtPathArgument$NbtPath/m_99626_ (Lnet/minecraft/commands/arguments/NbtPathArgument$Node;)Lcom/mojang/brigadier/exceptions/CommandSyntaxException; net/minecraft/commands/arguments/NbtPathArgument$NbtPath/createNotFoundException (Lnet/minecraft/commands/arguments/NbtPathArgument$Node;)Lcom/mojang/brigadier/exceptions/CommandSyntaxException; +MD: net/minecraft/commands/arguments/NbtPathArgument$NbtPath/m_99632_ (Ljava/lang/Integer;Ljava/lang/Integer;)Ljava/lang/Integer; net/minecraft/commands/arguments/NbtPathArgument$NbtPath/lambda$apply$0 (Ljava/lang/Integer;Ljava/lang/Integer;)Ljava/lang/Integer; +MD: net/minecraft/commands/arguments/NbtPathArgument$NbtPath/m_99635_ (Ljava/util/List;Ljava/util/function/Function;)I net/minecraft/commands/arguments/NbtPathArgument$NbtPath/apply (Ljava/util/List;Ljava/util/function/Function;)I +MD: net/minecraft/commands/arguments/NbtPathArgument$NbtPath/m_99638_ (Lnet/minecraft/nbt/Tag;)Ljava/util/List; net/minecraft/commands/arguments/NbtPathArgument$NbtPath/get (Lnet/minecraft/nbt/Tag;)Ljava/util/List; +MD: net/minecraft/commands/arguments/NbtPathArgument$NbtPath/m_99640_ (Lnet/minecraft/nbt/Tag;Ljava/util/function/Supplier;)Ljava/util/List; net/minecraft/commands/arguments/NbtPathArgument$NbtPath/getOrCreate (Lnet/minecraft/nbt/Tag;Ljava/util/function/Supplier;)Ljava/util/List; +MD: net/minecraft/commands/arguments/NbtPathArgument$NbtPath/m_99643_ (Lnet/minecraft/nbt/Tag;)I net/minecraft/commands/arguments/NbtPathArgument$NbtPath/countMatching (Lnet/minecraft/nbt/Tag;)I +MD: net/minecraft/commands/arguments/NbtPathArgument$NbtPath/m_99648_ (Lnet/minecraft/nbt/Tag;)I net/minecraft/commands/arguments/NbtPathArgument$NbtPath/remove (Lnet/minecraft/nbt/Tag;)I +MD: net/minecraft/commands/arguments/NbtPathArgument$NbtPath/m_99650_ (Lnet/minecraft/nbt/Tag;)Ljava/util/List; net/minecraft/commands/arguments/NbtPathArgument$NbtPath/getOrCreateParents (Lnet/minecraft/nbt/Tag;)Ljava/util/List; +MD: net/minecraft/commands/arguments/NbtPathArgument$NbtPath/toString ()Ljava/lang/String; net/minecraft/commands/arguments/NbtPathArgument$NbtPath/toString ()Ljava/lang/String; +MD: net/minecraft/commands/arguments/NbtPathArgument$Node/m_5571_ (Lnet/minecraft/nbt/Tag;Ljava/util/function/Supplier;)I net/minecraft/commands/arguments/NbtPathArgument$Node/setTag (Lnet/minecraft/nbt/Tag;Ljava/util/function/Supplier;)I +MD: net/minecraft/commands/arguments/NbtPathArgument$Node/m_6015_ (Lnet/minecraft/nbt/Tag;)I net/minecraft/commands/arguments/NbtPathArgument$Node/removeTag (Lnet/minecraft/nbt/Tag;)I +MD: net/minecraft/commands/arguments/NbtPathArgument$Node/m_7273_ (Lnet/minecraft/nbt/Tag;Ljava/util/List;)V net/minecraft/commands/arguments/NbtPathArgument$Node/getTag (Lnet/minecraft/nbt/Tag;Ljava/util/List;)V +MD: net/minecraft/commands/arguments/NbtPathArgument$Node/m_7510_ ()Lnet/minecraft/nbt/Tag; net/minecraft/commands/arguments/NbtPathArgument$Node/createPreferredParentTag ()Lnet/minecraft/nbt/Tag; +MD: net/minecraft/commands/arguments/NbtPathArgument$Node/m_7876_ (Lnet/minecraft/nbt/Tag;Ljava/util/function/Supplier;Ljava/util/List;)V net/minecraft/commands/arguments/NbtPathArgument$Node/getOrCreateTag (Lnet/minecraft/nbt/Tag;Ljava/util/function/Supplier;Ljava/util/List;)V +MD: net/minecraft/commands/arguments/NbtPathArgument$Node/m_99653_ (Ljava/util/List;)Ljava/util/List; net/minecraft/commands/arguments/NbtPathArgument$Node/get (Ljava/util/List;)Ljava/util/List; +MD: net/minecraft/commands/arguments/NbtPathArgument$Node/m_99655_ (Ljava/util/List;Ljava/util/function/BiConsumer;)Ljava/util/List; net/minecraft/commands/arguments/NbtPathArgument$Node/collect (Ljava/util/List;Ljava/util/function/BiConsumer;)Ljava/util/List; +MD: net/minecraft/commands/arguments/NbtPathArgument$Node/m_99658_ (Ljava/util/List;Ljava/util/function/Supplier;)Ljava/util/List; net/minecraft/commands/arguments/NbtPathArgument$Node/getOrCreate (Ljava/util/List;Ljava/util/function/Supplier;)Ljava/util/List; +MD: net/minecraft/commands/arguments/NbtPathArgument$Node/m_99661_ (Ljava/util/function/Supplier;Lnet/minecraft/nbt/Tag;Ljava/util/List;)V net/minecraft/commands/arguments/NbtPathArgument$Node/lambda$getOrCreate$0 (Ljava/util/function/Supplier;Lnet/minecraft/nbt/Tag;Ljava/util/List;)V +MD: net/minecraft/commands/arguments/NbtTagArgument/ ()V net/minecraft/commands/arguments/NbtTagArgument/ ()V +MD: net/minecraft/commands/arguments/NbtTagArgument/ ()V net/minecraft/commands/arguments/NbtTagArgument/ ()V +MD: net/minecraft/commands/arguments/NbtTagArgument/getExamples ()Ljava/util/Collection; net/minecraft/commands/arguments/NbtTagArgument/getExamples ()Ljava/util/Collection; +MD: net/minecraft/commands/arguments/NbtTagArgument/m_100659_ ()Lnet/minecraft/commands/arguments/NbtTagArgument; net/minecraft/commands/arguments/NbtTagArgument/nbtTag ()Lnet/minecraft/commands/arguments/NbtTagArgument; +MD: net/minecraft/commands/arguments/NbtTagArgument/m_100662_ (Lcom/mojang/brigadier/context/CommandContext;Ljava/lang/String;)Lnet/minecraft/nbt/Tag; net/minecraft/commands/arguments/NbtTagArgument/getNbtTag (Lcom/mojang/brigadier/context/CommandContext;Ljava/lang/String;)Lnet/minecraft/nbt/Tag; +MD: net/minecraft/commands/arguments/NbtTagArgument/parse (Lcom/mojang/brigadier/StringReader;)Ljava/lang/Object; net/minecraft/commands/arguments/NbtTagArgument/parse (Lcom/mojang/brigadier/StringReader;)Ljava/lang/Object; +MD: net/minecraft/commands/arguments/NbtTagArgument/parse (Lcom/mojang/brigadier/StringReader;)Lnet/minecraft/nbt/Tag; net/minecraft/commands/arguments/NbtTagArgument/parse (Lcom/mojang/brigadier/StringReader;)Lnet/minecraft/nbt/Tag; +MD: net/minecraft/commands/arguments/ObjectiveArgument/ ()V net/minecraft/commands/arguments/ObjectiveArgument/ ()V +MD: net/minecraft/commands/arguments/ObjectiveArgument/ ()V net/minecraft/commands/arguments/ObjectiveArgument/ ()V +MD: net/minecraft/commands/arguments/ObjectiveArgument/getExamples ()Ljava/util/Collection; net/minecraft/commands/arguments/ObjectiveArgument/getExamples ()Ljava/util/Collection; +MD: net/minecraft/commands/arguments/ObjectiveArgument/listSuggestions (Lcom/mojang/brigadier/context/CommandContext;Lcom/mojang/brigadier/suggestion/SuggestionsBuilder;)Ljava/util/concurrent/CompletableFuture; net/minecraft/commands/arguments/ObjectiveArgument/listSuggestions (Lcom/mojang/brigadier/context/CommandContext;Lcom/mojang/brigadier/suggestion/SuggestionsBuilder;)Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/commands/arguments/ObjectiveArgument/m_101957_ ()Lnet/minecraft/commands/arguments/ObjectiveArgument; net/minecraft/commands/arguments/ObjectiveArgument/objective ()Lnet/minecraft/commands/arguments/ObjectiveArgument; +MD: net/minecraft/commands/arguments/ObjectiveArgument/m_101960_ (Lcom/mojang/brigadier/context/CommandContext;Ljava/lang/String;)Lnet/minecraft/world/scores/Objective; net/minecraft/commands/arguments/ObjectiveArgument/getObjective (Lcom/mojang/brigadier/context/CommandContext;Ljava/lang/String;)Lnet/minecraft/world/scores/Objective; +MD: net/minecraft/commands/arguments/ObjectiveArgument/m_101965_ (Lcom/mojang/brigadier/context/CommandContext;Ljava/lang/String;)Lnet/minecraft/world/scores/Objective; net/minecraft/commands/arguments/ObjectiveArgument/getWritableObjective (Lcom/mojang/brigadier/context/CommandContext;Ljava/lang/String;)Lnet/minecraft/world/scores/Objective; +MD: net/minecraft/commands/arguments/ObjectiveArgument/m_101968_ (Ljava/lang/Object;)Lcom/mojang/brigadier/Message; net/minecraft/commands/arguments/ObjectiveArgument/lambda$static$1 (Ljava/lang/Object;)Lcom/mojang/brigadier/Message; +MD: net/minecraft/commands/arguments/ObjectiveArgument/m_101970_ (Ljava/lang/Object;)Lcom/mojang/brigadier/Message; net/minecraft/commands/arguments/ObjectiveArgument/lambda$static$0 (Ljava/lang/Object;)Lcom/mojang/brigadier/Message; +MD: net/minecraft/commands/arguments/ObjectiveArgument/parse (Lcom/mojang/brigadier/StringReader;)Ljava/lang/Object; net/minecraft/commands/arguments/ObjectiveArgument/parse (Lcom/mojang/brigadier/StringReader;)Ljava/lang/Object; +MD: net/minecraft/commands/arguments/ObjectiveArgument/parse (Lcom/mojang/brigadier/StringReader;)Ljava/lang/String; net/minecraft/commands/arguments/ObjectiveArgument/parse (Lcom/mojang/brigadier/StringReader;)Ljava/lang/String; +MD: net/minecraft/commands/arguments/ObjectiveCriteriaArgument/ ()V net/minecraft/commands/arguments/ObjectiveCriteriaArgument/ ()V +MD: net/minecraft/commands/arguments/ObjectiveCriteriaArgument/ ()V net/minecraft/commands/arguments/ObjectiveCriteriaArgument/ ()V +MD: net/minecraft/commands/arguments/ObjectiveCriteriaArgument/getExamples ()Ljava/util/Collection; net/minecraft/commands/arguments/ObjectiveCriteriaArgument/getExamples ()Ljava/util/Collection; +MD: net/minecraft/commands/arguments/ObjectiveCriteriaArgument/listSuggestions (Lcom/mojang/brigadier/context/CommandContext;Lcom/mojang/brigadier/suggestion/SuggestionsBuilder;)Ljava/util/concurrent/CompletableFuture; net/minecraft/commands/arguments/ObjectiveCriteriaArgument/listSuggestions (Lcom/mojang/brigadier/context/CommandContext;Lcom/mojang/brigadier/suggestion/SuggestionsBuilder;)Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/commands/arguments/ObjectiveCriteriaArgument/m_102555_ ()Lnet/minecraft/commands/arguments/ObjectiveCriteriaArgument; net/minecraft/commands/arguments/ObjectiveCriteriaArgument/criteria ()Lnet/minecraft/commands/arguments/ObjectiveCriteriaArgument; +MD: net/minecraft/commands/arguments/ObjectiveCriteriaArgument/m_102556_ (Lnet/minecraft/stats/StatType;Ljava/lang/Object;)Ljava/lang/String; net/minecraft/commands/arguments/ObjectiveCriteriaArgument/getName (Lnet/minecraft/stats/StatType;Ljava/lang/Object;)Ljava/lang/String; +MD: net/minecraft/commands/arguments/ObjectiveCriteriaArgument/m_102561_ (Lcom/mojang/brigadier/StringReader;ILjava/lang/String;)Lcom/mojang/brigadier/exceptions/CommandSyntaxException; net/minecraft/commands/arguments/ObjectiveCriteriaArgument/lambda$parse$1 (Lcom/mojang/brigadier/StringReader;ILjava/lang/String;)Lcom/mojang/brigadier/exceptions/CommandSyntaxException; +MD: net/minecraft/commands/arguments/ObjectiveCriteriaArgument/m_102565_ (Lcom/mojang/brigadier/context/CommandContext;Ljava/lang/String;)Lnet/minecraft/world/scores/criteria/ObjectiveCriteria; net/minecraft/commands/arguments/ObjectiveCriteriaArgument/getCriteria (Lcom/mojang/brigadier/context/CommandContext;Ljava/lang/String;)Lnet/minecraft/world/scores/criteria/ObjectiveCriteria; +MD: net/minecraft/commands/arguments/ObjectiveCriteriaArgument/m_102568_ (Ljava/lang/Object;)Lcom/mojang/brigadier/Message; net/minecraft/commands/arguments/ObjectiveCriteriaArgument/lambda$static$0 (Ljava/lang/Object;)Lcom/mojang/brigadier/Message; +MD: net/minecraft/commands/arguments/ObjectiveCriteriaArgument/parse (Lcom/mojang/brigadier/StringReader;)Ljava/lang/Object; net/minecraft/commands/arguments/ObjectiveCriteriaArgument/parse (Lcom/mojang/brigadier/StringReader;)Ljava/lang/Object; +MD: net/minecraft/commands/arguments/ObjectiveCriteriaArgument/parse (Lcom/mojang/brigadier/StringReader;)Lnet/minecraft/world/scores/criteria/ObjectiveCriteria; net/minecraft/commands/arguments/ObjectiveCriteriaArgument/parse (Lcom/mojang/brigadier/StringReader;)Lnet/minecraft/world/scores/criteria/ObjectiveCriteria; +MD: net/minecraft/commands/arguments/OperationArgument/ ()V net/minecraft/commands/arguments/OperationArgument/ ()V +MD: net/minecraft/commands/arguments/OperationArgument/ ()V net/minecraft/commands/arguments/OperationArgument/ ()V +MD: net/minecraft/commands/arguments/OperationArgument/getExamples ()Ljava/util/Collection; net/minecraft/commands/arguments/OperationArgument/getExamples ()Ljava/util/Collection; +MD: net/minecraft/commands/arguments/OperationArgument/listSuggestions (Lcom/mojang/brigadier/context/CommandContext;Lcom/mojang/brigadier/suggestion/SuggestionsBuilder;)Ljava/util/concurrent/CompletableFuture; net/minecraft/commands/arguments/OperationArgument/listSuggestions (Lcom/mojang/brigadier/context/CommandContext;Lcom/mojang/brigadier/suggestion/SuggestionsBuilder;)Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/commands/arguments/OperationArgument/m_103269_ ()Lnet/minecraft/commands/arguments/OperationArgument; net/minecraft/commands/arguments/OperationArgument/operation ()Lnet/minecraft/commands/arguments/OperationArgument; +MD: net/minecraft/commands/arguments/OperationArgument/m_103270_ (II)I net/minecraft/commands/arguments/OperationArgument/lambda$getSimpleOperation$6 (II)I +MD: net/minecraft/commands/arguments/OperationArgument/m_103275_ (Lcom/mojang/brigadier/context/CommandContext;Ljava/lang/String;)Lnet/minecraft/commands/arguments/OperationArgument$Operation; net/minecraft/commands/arguments/OperationArgument/getOperation (Lcom/mojang/brigadier/context/CommandContext;Ljava/lang/String;)Lnet/minecraft/commands/arguments/OperationArgument$Operation; +MD: net/minecraft/commands/arguments/OperationArgument/m_103278_ (Lnet/minecraft/world/scores/Score;Lnet/minecraft/world/scores/Score;)V net/minecraft/commands/arguments/OperationArgument/lambda$getOperation$0 (Lnet/minecraft/world/scores/Score;Lnet/minecraft/world/scores/Score;)V +MD: net/minecraft/commands/arguments/OperationArgument/m_103281_ (Ljava/lang/String;)Lnet/minecraft/commands/arguments/OperationArgument$Operation; net/minecraft/commands/arguments/OperationArgument/getOperation (Ljava/lang/String;)Lnet/minecraft/commands/arguments/OperationArgument$Operation; +MD: net/minecraft/commands/arguments/OperationArgument/m_103286_ (Ljava/lang/String;)Lnet/minecraft/commands/arguments/OperationArgument$SimpleOperation; net/minecraft/commands/arguments/OperationArgument/getSimpleOperation (Ljava/lang/String;)Lnet/minecraft/commands/arguments/OperationArgument$SimpleOperation; +MD: net/minecraft/commands/arguments/OperationArgument/m_103288_ (II)I net/minecraft/commands/arguments/OperationArgument/lambda$getSimpleOperation$4 (II)I +MD: net/minecraft/commands/arguments/OperationArgument/m_103291_ (II)I net/minecraft/commands/arguments/OperationArgument/lambda$getSimpleOperation$3 (II)I +MD: net/minecraft/commands/arguments/OperationArgument/m_103294_ (II)I net/minecraft/commands/arguments/OperationArgument/lambda$getSimpleOperation$2 (II)I +MD: net/minecraft/commands/arguments/OperationArgument/m_103297_ (II)I net/minecraft/commands/arguments/OperationArgument/lambda$getSimpleOperation$1 (II)I +MD: net/minecraft/commands/arguments/OperationArgument/m_263893_ (II)I net/minecraft/commands/arguments/OperationArgument/lambda$getSimpleOperation$5 (II)I +MD: net/minecraft/commands/arguments/OperationArgument/parse (Lcom/mojang/brigadier/StringReader;)Ljava/lang/Object; net/minecraft/commands/arguments/OperationArgument/parse (Lcom/mojang/brigadier/StringReader;)Ljava/lang/Object; +MD: net/minecraft/commands/arguments/OperationArgument/parse (Lcom/mojang/brigadier/StringReader;)Lnet/minecraft/commands/arguments/OperationArgument$Operation; net/minecraft/commands/arguments/OperationArgument/parse (Lcom/mojang/brigadier/StringReader;)Lnet/minecraft/commands/arguments/OperationArgument$Operation; +MD: net/minecraft/commands/arguments/OperationArgument$Operation/m_6407_ (Lnet/minecraft/world/scores/Score;Lnet/minecraft/world/scores/Score;)V net/minecraft/commands/arguments/OperationArgument$Operation/apply (Lnet/minecraft/world/scores/Score;Lnet/minecraft/world/scores/Score;)V +MD: net/minecraft/commands/arguments/OperationArgument$SimpleOperation/m_103308_ (II)I net/minecraft/commands/arguments/OperationArgument$SimpleOperation/apply (II)I +MD: net/minecraft/commands/arguments/OperationArgument$SimpleOperation/m_6407_ (Lnet/minecraft/world/scores/Score;Lnet/minecraft/world/scores/Score;)V net/minecraft/commands/arguments/OperationArgument$SimpleOperation/apply (Lnet/minecraft/world/scores/Score;Lnet/minecraft/world/scores/Score;)V +MD: net/minecraft/commands/arguments/ParticleArgument/ ()V net/minecraft/commands/arguments/ParticleArgument/ ()V +MD: net/minecraft/commands/arguments/ParticleArgument/ (Lnet/minecraft/commands/CommandBuildContext;)V net/minecraft/commands/arguments/ParticleArgument/ (Lnet/minecraft/commands/CommandBuildContext;)V +MD: net/minecraft/commands/arguments/ParticleArgument/getExamples ()Ljava/util/Collection; net/minecraft/commands/arguments/ParticleArgument/getExamples ()Ljava/util/Collection; +MD: net/minecraft/commands/arguments/ParticleArgument/listSuggestions (Lcom/mojang/brigadier/context/CommandContext;Lcom/mojang/brigadier/suggestion/SuggestionsBuilder;)Ljava/util/concurrent/CompletableFuture; net/minecraft/commands/arguments/ParticleArgument/listSuggestions (Lcom/mojang/brigadier/context/CommandContext;Lcom/mojang/brigadier/suggestion/SuggestionsBuilder;)Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/commands/arguments/ParticleArgument/m_103934_ (Lcom/mojang/brigadier/StringReader;Lnet/minecraft/core/particles/ParticleType;)Lnet/minecraft/core/particles/ParticleOptions; net/minecraft/commands/arguments/ParticleArgument/readParticle (Lcom/mojang/brigadier/StringReader;Lnet/minecraft/core/particles/ParticleType;)Lnet/minecraft/core/particles/ParticleOptions; +MD: net/minecraft/commands/arguments/ParticleArgument/m_103937_ (Lcom/mojang/brigadier/context/CommandContext;Ljava/lang/String;)Lnet/minecraft/core/particles/ParticleOptions; net/minecraft/commands/arguments/ParticleArgument/getParticle (Lcom/mojang/brigadier/context/CommandContext;Ljava/lang/String;)Lnet/minecraft/core/particles/ParticleOptions; +MD: net/minecraft/commands/arguments/ParticleArgument/m_103940_ (Ljava/lang/Object;)Lcom/mojang/brigadier/Message; net/minecraft/commands/arguments/ParticleArgument/lambda$static$0 (Ljava/lang/Object;)Lcom/mojang/brigadier/Message; +MD: net/minecraft/commands/arguments/ParticleArgument/m_103942_ (Lnet/minecraft/resources/ResourceLocation;)Lcom/mojang/brigadier/exceptions/CommandSyntaxException; net/minecraft/commands/arguments/ParticleArgument/lambda$readParticleType$1 (Lnet/minecraft/resources/ResourceLocation;)Lcom/mojang/brigadier/exceptions/CommandSyntaxException; +MD: net/minecraft/commands/arguments/ParticleArgument/m_245039_ (Lcom/mojang/brigadier/StringReader;Lnet/minecraft/core/HolderLookup;)Lnet/minecraft/core/particles/ParticleType; net/minecraft/commands/arguments/ParticleArgument/readParticleType (Lcom/mojang/brigadier/StringReader;Lnet/minecraft/core/HolderLookup;)Lnet/minecraft/core/particles/ParticleType; +MD: net/minecraft/commands/arguments/ParticleArgument/m_245999_ (Lnet/minecraft/commands/CommandBuildContext;)Lnet/minecraft/commands/arguments/ParticleArgument; net/minecraft/commands/arguments/ParticleArgument/particle (Lnet/minecraft/commands/CommandBuildContext;)Lnet/minecraft/commands/arguments/ParticleArgument; +MD: net/minecraft/commands/arguments/ParticleArgument/m_247456_ (Lcom/mojang/brigadier/StringReader;Lnet/minecraft/core/HolderLookup;)Lnet/minecraft/core/particles/ParticleOptions; net/minecraft/commands/arguments/ParticleArgument/readParticle (Lcom/mojang/brigadier/StringReader;Lnet/minecraft/core/HolderLookup;)Lnet/minecraft/core/particles/ParticleOptions; +MD: net/minecraft/commands/arguments/ParticleArgument/parse (Lcom/mojang/brigadier/StringReader;)Ljava/lang/Object; net/minecraft/commands/arguments/ParticleArgument/parse (Lcom/mojang/brigadier/StringReader;)Ljava/lang/Object; +MD: net/minecraft/commands/arguments/ParticleArgument/parse (Lcom/mojang/brigadier/StringReader;)Lnet/minecraft/core/particles/ParticleOptions; net/minecraft/commands/arguments/ParticleArgument/parse (Lcom/mojang/brigadier/StringReader;)Lnet/minecraft/core/particles/ParticleOptions; +MD: net/minecraft/commands/arguments/RangeArgument/m_105404_ ()Lnet/minecraft/commands/arguments/RangeArgument$Ints; net/minecraft/commands/arguments/RangeArgument/intRange ()Lnet/minecraft/commands/arguments/RangeArgument$Ints; +MD: net/minecraft/commands/arguments/RangeArgument/m_105405_ ()Lnet/minecraft/commands/arguments/RangeArgument$Floats; net/minecraft/commands/arguments/RangeArgument/floatRange ()Lnet/minecraft/commands/arguments/RangeArgument$Floats; +MD: net/minecraft/commands/arguments/RangeArgument$Floats/ ()V net/minecraft/commands/arguments/RangeArgument$Floats/ ()V +MD: net/minecraft/commands/arguments/RangeArgument$Floats/ ()V net/minecraft/commands/arguments/RangeArgument$Floats/ ()V +MD: net/minecraft/commands/arguments/RangeArgument$Floats/getExamples ()Ljava/util/Collection; net/minecraft/commands/arguments/RangeArgument$Floats/getExamples ()Ljava/util/Collection; +MD: net/minecraft/commands/arguments/RangeArgument$Floats/m_170804_ (Lcom/mojang/brigadier/context/CommandContext;Ljava/lang/String;)Lnet/minecraft/advancements/critereon/MinMaxBounds$Doubles; net/minecraft/commands/arguments/RangeArgument$Floats/getRange (Lcom/mojang/brigadier/context/CommandContext;Ljava/lang/String;)Lnet/minecraft/advancements/critereon/MinMaxBounds$Doubles; +MD: net/minecraft/commands/arguments/RangeArgument$Floats/parse (Lcom/mojang/brigadier/StringReader;)Ljava/lang/Object; net/minecraft/commands/arguments/RangeArgument$Floats/parse (Lcom/mojang/brigadier/StringReader;)Ljava/lang/Object; +MD: net/minecraft/commands/arguments/RangeArgument$Floats/parse (Lcom/mojang/brigadier/StringReader;)Lnet/minecraft/advancements/critereon/MinMaxBounds$Doubles; net/minecraft/commands/arguments/RangeArgument$Floats/parse (Lcom/mojang/brigadier/StringReader;)Lnet/minecraft/advancements/critereon/MinMaxBounds$Doubles; +MD: net/minecraft/commands/arguments/RangeArgument$Ints/ ()V net/minecraft/commands/arguments/RangeArgument$Ints/ ()V +MD: net/minecraft/commands/arguments/RangeArgument$Ints/ ()V net/minecraft/commands/arguments/RangeArgument$Ints/ ()V +MD: net/minecraft/commands/arguments/RangeArgument$Ints/getExamples ()Ljava/util/Collection; net/minecraft/commands/arguments/RangeArgument$Ints/getExamples ()Ljava/util/Collection; +MD: net/minecraft/commands/arguments/RangeArgument$Ints/m_105419_ (Lcom/mojang/brigadier/context/CommandContext;Ljava/lang/String;)Lnet/minecraft/advancements/critereon/MinMaxBounds$Ints; net/minecraft/commands/arguments/RangeArgument$Ints/getRange (Lcom/mojang/brigadier/context/CommandContext;Ljava/lang/String;)Lnet/minecraft/advancements/critereon/MinMaxBounds$Ints; +MD: net/minecraft/commands/arguments/RangeArgument$Ints/parse (Lcom/mojang/brigadier/StringReader;)Ljava/lang/Object; net/minecraft/commands/arguments/RangeArgument$Ints/parse (Lcom/mojang/brigadier/StringReader;)Ljava/lang/Object; +MD: net/minecraft/commands/arguments/RangeArgument$Ints/parse (Lcom/mojang/brigadier/StringReader;)Lnet/minecraft/advancements/critereon/MinMaxBounds$Ints; net/minecraft/commands/arguments/RangeArgument$Ints/parse (Lcom/mojang/brigadier/StringReader;)Lnet/minecraft/advancements/critereon/MinMaxBounds$Ints; +MD: net/minecraft/commands/arguments/ResourceArgument/ ()V net/minecraft/commands/arguments/ResourceArgument/ ()V +MD: net/minecraft/commands/arguments/ResourceArgument/ (Lnet/minecraft/commands/CommandBuildContext;Lnet/minecraft/resources/ResourceKey;)V net/minecraft/commands/arguments/ResourceArgument/ (Lnet/minecraft/commands/CommandBuildContext;Lnet/minecraft/resources/ResourceKey;)V +MD: net/minecraft/commands/arguments/ResourceArgument/getExamples ()Ljava/util/Collection; net/minecraft/commands/arguments/ResourceArgument/getExamples ()Ljava/util/Collection; +MD: net/minecraft/commands/arguments/ResourceArgument/listSuggestions (Lcom/mojang/brigadier/context/CommandContext;Lcom/mojang/brigadier/suggestion/SuggestionsBuilder;)Ljava/util/concurrent/CompletableFuture; net/minecraft/commands/arguments/ResourceArgument/listSuggestions (Lcom/mojang/brigadier/context/CommandContext;Lcom/mojang/brigadier/suggestion/SuggestionsBuilder;)Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/commands/arguments/ResourceArgument/m_245369_ (Lcom/mojang/brigadier/context/CommandContext;Ljava/lang/String;)Lnet/minecraft/core/Holder$Reference; net/minecraft/commands/arguments/ResourceArgument/getEnchantment (Lcom/mojang/brigadier/context/CommandContext;Ljava/lang/String;)Lnet/minecraft/core/Holder$Reference; +MD: net/minecraft/commands/arguments/ResourceArgument/m_245599_ (Lcom/mojang/brigadier/context/CommandContext;Ljava/lang/String;)Lnet/minecraft/core/Holder$Reference; net/minecraft/commands/arguments/ResourceArgument/getConfiguredFeature (Lcom/mojang/brigadier/context/CommandContext;Ljava/lang/String;)Lnet/minecraft/core/Holder$Reference; +MD: net/minecraft/commands/arguments/ResourceArgument/m_245688_ (Lcom/mojang/brigadier/context/CommandContext;Ljava/lang/String;)Lnet/minecraft/core/Holder$Reference; net/minecraft/commands/arguments/ResourceArgument/getAttribute (Lcom/mojang/brigadier/context/CommandContext;Ljava/lang/String;)Lnet/minecraft/core/Holder$Reference; +MD: net/minecraft/commands/arguments/ResourceArgument/m_245927_ (Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;)Lcom/mojang/brigadier/Message; net/minecraft/commands/arguments/ResourceArgument/lambda$static$2 (Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;)Lcom/mojang/brigadier/Message; +MD: net/minecraft/commands/arguments/ResourceArgument/m_246260_ (Lcom/mojang/brigadier/context/CommandContext;Ljava/lang/String;)Lnet/minecraft/core/Holder$Reference; net/minecraft/commands/arguments/ResourceArgument/getEntityType (Lcom/mojang/brigadier/context/CommandContext;Ljava/lang/String;)Lnet/minecraft/core/Holder$Reference; +MD: net/minecraft/commands/arguments/ResourceArgument/m_246316_ (Lnet/minecraft/resources/ResourceLocation;)Lcom/mojang/brigadier/exceptions/CommandSyntaxException; net/minecraft/commands/arguments/ResourceArgument/lambda$parse$3 (Lnet/minecraft/resources/ResourceLocation;)Lcom/mojang/brigadier/exceptions/CommandSyntaxException; +MD: net/minecraft/commands/arguments/ResourceArgument/m_246504_ (Ljava/lang/Object;Ljava/lang/Object;)Lcom/mojang/brigadier/Message; net/minecraft/commands/arguments/ResourceArgument/lambda$static$1 (Ljava/lang/Object;Ljava/lang/Object;)Lcom/mojang/brigadier/Message; +MD: net/minecraft/commands/arguments/ResourceArgument/m_246539_ (Ljava/lang/Object;)Lcom/mojang/brigadier/Message; net/minecraft/commands/arguments/ResourceArgument/lambda$static$0 (Ljava/lang/Object;)Lcom/mojang/brigadier/Message; +MD: net/minecraft/commands/arguments/ResourceArgument/m_246781_ (Lcom/mojang/brigadier/context/CommandContext;Ljava/lang/String;Lnet/minecraft/resources/ResourceKey;)Lnet/minecraft/core/Holder$Reference; net/minecraft/commands/arguments/ResourceArgument/getResource (Lcom/mojang/brigadier/context/CommandContext;Ljava/lang/String;Lnet/minecraft/resources/ResourceKey;)Lnet/minecraft/core/Holder$Reference; +MD: net/minecraft/commands/arguments/ResourceArgument/m_247102_ (Lnet/minecraft/commands/CommandBuildContext;Lnet/minecraft/resources/ResourceKey;)Lnet/minecraft/commands/arguments/ResourceArgument; net/minecraft/commands/arguments/ResourceArgument/resource (Lnet/minecraft/commands/CommandBuildContext;Lnet/minecraft/resources/ResourceKey;)Lnet/minecraft/commands/arguments/ResourceArgument; +MD: net/minecraft/commands/arguments/ResourceArgument/m_247201_ (Lcom/mojang/brigadier/context/CommandContext;Ljava/lang/String;)Lnet/minecraft/core/Holder$Reference; net/minecraft/commands/arguments/ResourceArgument/getMobEffect (Lcom/mojang/brigadier/context/CommandContext;Ljava/lang/String;)Lnet/minecraft/core/Holder$Reference; +MD: net/minecraft/commands/arguments/ResourceArgument/m_247467_ (Lcom/mojang/brigadier/context/CommandContext;Ljava/lang/String;)Lnet/minecraft/core/Holder$Reference; net/minecraft/commands/arguments/ResourceArgument/getStructure (Lcom/mojang/brigadier/context/CommandContext;Ljava/lang/String;)Lnet/minecraft/core/Holder$Reference; +MD: net/minecraft/commands/arguments/ResourceArgument/m_247713_ (Lcom/mojang/brigadier/context/CommandContext;Ljava/lang/String;)Lnet/minecraft/core/Holder$Reference; net/minecraft/commands/arguments/ResourceArgument/getSummonableEntityType (Lcom/mojang/brigadier/context/CommandContext;Ljava/lang/String;)Lnet/minecraft/core/Holder$Reference; +MD: net/minecraft/commands/arguments/ResourceArgument/parse (Lcom/mojang/brigadier/StringReader;)Ljava/lang/Object; net/minecraft/commands/arguments/ResourceArgument/parse (Lcom/mojang/brigadier/StringReader;)Ljava/lang/Object; +MD: net/minecraft/commands/arguments/ResourceArgument/parse (Lcom/mojang/brigadier/StringReader;)Lnet/minecraft/core/Holder$Reference; net/minecraft/commands/arguments/ResourceArgument/parse (Lcom/mojang/brigadier/StringReader;)Lnet/minecraft/core/Holder$Reference; +MD: net/minecraft/commands/arguments/ResourceArgument$Info/ ()V net/minecraft/commands/arguments/ResourceArgument$Info/ ()V +MD: net/minecraft/commands/arguments/ResourceArgument$Info/m_213618_ (Lnet/minecraft/network/FriendlyByteBuf;)Lnet/minecraft/commands/synchronization/ArgumentTypeInfo$Template; net/minecraft/commands/arguments/ResourceArgument$Info/deserializeFromNetwork (Lnet/minecraft/network/FriendlyByteBuf;)Lnet/minecraft/commands/synchronization/ArgumentTypeInfo$Template; +MD: net/minecraft/commands/arguments/ResourceArgument$Info/m_213618_ (Lnet/minecraft/network/FriendlyByteBuf;)Lnet/minecraft/commands/arguments/ResourceArgument$Info$Template; net/minecraft/commands/arguments/ResourceArgument$Info/deserializeFromNetwork (Lnet/minecraft/network/FriendlyByteBuf;)Lnet/minecraft/commands/arguments/ResourceArgument$Info$Template; +MD: net/minecraft/commands/arguments/ResourceArgument$Info/m_213719_ (Lnet/minecraft/commands/synchronization/ArgumentTypeInfo$Template;Lcom/google/gson/JsonObject;)V net/minecraft/commands/arguments/ResourceArgument$Info/serializeToJson (Lnet/minecraft/commands/synchronization/ArgumentTypeInfo$Template;Lcom/google/gson/JsonObject;)V +MD: net/minecraft/commands/arguments/ResourceArgument$Info/m_213719_ (Lnet/minecraft/commands/arguments/ResourceArgument$Info$Template;Lcom/google/gson/JsonObject;)V net/minecraft/commands/arguments/ResourceArgument$Info/serializeToJson (Lnet/minecraft/commands/arguments/ResourceArgument$Info$Template;Lcom/google/gson/JsonObject;)V +MD: net/minecraft/commands/arguments/ResourceArgument$Info/m_214155_ (Lnet/minecraft/commands/arguments/ResourceArgument$Info$Template;Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/commands/arguments/ResourceArgument$Info/serializeToNetwork (Lnet/minecraft/commands/arguments/ResourceArgument$Info$Template;Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/commands/arguments/ResourceArgument$Info/m_214155_ (Lnet/minecraft/commands/synchronization/ArgumentTypeInfo$Template;Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/commands/arguments/ResourceArgument$Info/serializeToNetwork (Lnet/minecraft/commands/synchronization/ArgumentTypeInfo$Template;Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/commands/arguments/ResourceArgument$Info/m_214163_ (Lnet/minecraft/commands/arguments/ResourceArgument;)Lnet/minecraft/commands/arguments/ResourceArgument$Info$Template; net/minecraft/commands/arguments/ResourceArgument$Info/unpack (Lnet/minecraft/commands/arguments/ResourceArgument;)Lnet/minecraft/commands/arguments/ResourceArgument$Info$Template; +MD: net/minecraft/commands/arguments/ResourceArgument$Info/m_214163_ (Lcom/mojang/brigadier/arguments/ArgumentType;)Lnet/minecraft/commands/synchronization/ArgumentTypeInfo$Template; net/minecraft/commands/arguments/ResourceArgument$Info/unpack (Lcom/mojang/brigadier/arguments/ArgumentType;)Lnet/minecraft/commands/synchronization/ArgumentTypeInfo$Template; +MD: net/minecraft/commands/arguments/ResourceArgument$Info$Template/ (Lnet/minecraft/commands/arguments/ResourceArgument$Info;Lnet/minecraft/resources/ResourceKey;)V net/minecraft/commands/arguments/ResourceArgument$Info$Template/ (Lnet/minecraft/commands/arguments/ResourceArgument$Info;Lnet/minecraft/resources/ResourceKey;)V +MD: net/minecraft/commands/arguments/ResourceArgument$Info$Template/m_213709_ ()Lnet/minecraft/commands/synchronization/ArgumentTypeInfo; net/minecraft/commands/arguments/ResourceArgument$Info$Template/type ()Lnet/minecraft/commands/synchronization/ArgumentTypeInfo; +MD: net/minecraft/commands/arguments/ResourceArgument$Info$Template/m_213879_ (Lnet/minecraft/commands/CommandBuildContext;)Lnet/minecraft/commands/arguments/ResourceArgument; net/minecraft/commands/arguments/ResourceArgument$Info$Template/instantiate (Lnet/minecraft/commands/CommandBuildContext;)Lnet/minecraft/commands/arguments/ResourceArgument; +MD: net/minecraft/commands/arguments/ResourceArgument$Info$Template/m_213879_ (Lnet/minecraft/commands/CommandBuildContext;)Lcom/mojang/brigadier/arguments/ArgumentType; net/minecraft/commands/arguments/ResourceArgument$Info$Template/instantiate (Lnet/minecraft/commands/CommandBuildContext;)Lcom/mojang/brigadier/arguments/ArgumentType; +MD: net/minecraft/commands/arguments/ResourceKeyArgument/ ()V net/minecraft/commands/arguments/ResourceKeyArgument/ ()V +MD: net/minecraft/commands/arguments/ResourceKeyArgument/ (Lnet/minecraft/resources/ResourceKey;)V net/minecraft/commands/arguments/ResourceKeyArgument/ (Lnet/minecraft/resources/ResourceKey;)V +MD: net/minecraft/commands/arguments/ResourceKeyArgument/getExamples ()Ljava/util/Collection; net/minecraft/commands/arguments/ResourceKeyArgument/getExamples ()Ljava/util/Collection; +MD: net/minecraft/commands/arguments/ResourceKeyArgument/listSuggestions (Lcom/mojang/brigadier/context/CommandContext;Lcom/mojang/brigadier/suggestion/SuggestionsBuilder;)Ljava/util/concurrent/CompletableFuture; net/minecraft/commands/arguments/ResourceKeyArgument/listSuggestions (Lcom/mojang/brigadier/context/CommandContext;Lcom/mojang/brigadier/suggestion/SuggestionsBuilder;)Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/commands/arguments/ResourceKeyArgument/m_212373_ (Lcom/mojang/brigadier/context/CommandContext;Ljava/lang/String;Lnet/minecraft/resources/ResourceKey;Lcom/mojang/brigadier/exceptions/DynamicCommandExceptionType;)Lnet/minecraft/resources/ResourceKey; net/minecraft/commands/arguments/ResourceKeyArgument/getRegistryKey (Lcom/mojang/brigadier/context/CommandContext;Ljava/lang/String;Lnet/minecraft/resources/ResourceKey;Lcom/mojang/brigadier/exceptions/DynamicCommandExceptionType;)Lnet/minecraft/resources/ResourceKey; +MD: net/minecraft/commands/arguments/ResourceKeyArgument/m_212378_ (Lcom/mojang/brigadier/context/CommandContext;Lnet/minecraft/resources/ResourceKey;)Lnet/minecraft/core/Registry; net/minecraft/commands/arguments/ResourceKeyArgument/getRegistry (Lcom/mojang/brigadier/context/CommandContext;Lnet/minecraft/resources/ResourceKey;)Lnet/minecraft/core/Registry; +MD: net/minecraft/commands/arguments/ResourceKeyArgument/m_212384_ (Ljava/lang/Object;)Lcom/mojang/brigadier/Message; net/minecraft/commands/arguments/ResourceKeyArgument/lambda$static$1 (Ljava/lang/Object;)Lcom/mojang/brigadier/Message; +MD: net/minecraft/commands/arguments/ResourceKeyArgument/m_212386_ (Lnet/minecraft/resources/ResourceKey;)Lnet/minecraft/commands/arguments/ResourceKeyArgument; net/minecraft/commands/arguments/ResourceKeyArgument/key (Lnet/minecraft/resources/ResourceKey;)Lnet/minecraft/commands/arguments/ResourceKeyArgument; +MD: net/minecraft/commands/arguments/ResourceKeyArgument/m_212391_ (Ljava/lang/Object;)Lcom/mojang/brigadier/Message; net/minecraft/commands/arguments/ResourceKeyArgument/lambda$static$0 (Ljava/lang/Object;)Lcom/mojang/brigadier/Message; +MD: net/minecraft/commands/arguments/ResourceKeyArgument/m_233248_ (Lcom/mojang/brigadier/exceptions/DynamicCommandExceptionType;Lnet/minecraft/resources/ResourceKey;)Lcom/mojang/brigadier/exceptions/CommandSyntaxException; net/minecraft/commands/arguments/ResourceKeyArgument/lambda$resolveKey$4 (Lcom/mojang/brigadier/exceptions/DynamicCommandExceptionType;Lnet/minecraft/resources/ResourceKey;)Lcom/mojang/brigadier/exceptions/CommandSyntaxException; +MD: net/minecraft/commands/arguments/ResourceKeyArgument/m_233260_ (Lcom/mojang/brigadier/exceptions/DynamicCommandExceptionType;Lnet/minecraft/resources/ResourceKey;)Lcom/mojang/brigadier/exceptions/CommandSyntaxException; net/minecraft/commands/arguments/ResourceKeyArgument/lambda$getRegistryKey$3 (Lcom/mojang/brigadier/exceptions/DynamicCommandExceptionType;Lnet/minecraft/resources/ResourceKey;)Lcom/mojang/brigadier/exceptions/CommandSyntaxException; +MD: net/minecraft/commands/arguments/ResourceKeyArgument/m_233263_ (Ljava/lang/Object;)Lcom/mojang/brigadier/Message; net/minecraft/commands/arguments/ResourceKeyArgument/lambda$static$2 (Ljava/lang/Object;)Lcom/mojang/brigadier/Message; +MD: net/minecraft/commands/arguments/ResourceKeyArgument/m_245341_ (Lcom/mojang/brigadier/context/CommandContext;Ljava/lang/String;)Lnet/minecraft/core/Holder$Reference; net/minecraft/commands/arguments/ResourceKeyArgument/getConfiguredFeature (Lcom/mojang/brigadier/context/CommandContext;Ljava/lang/String;)Lnet/minecraft/core/Holder$Reference; +MD: net/minecraft/commands/arguments/ResourceKeyArgument/m_246813_ (Lcom/mojang/brigadier/context/CommandContext;Ljava/lang/String;Lnet/minecraft/resources/ResourceKey;Lcom/mojang/brigadier/exceptions/DynamicCommandExceptionType;)Lnet/minecraft/core/Holder$Reference; net/minecraft/commands/arguments/ResourceKeyArgument/resolveKey (Lcom/mojang/brigadier/context/CommandContext;Ljava/lang/String;Lnet/minecraft/resources/ResourceKey;Lcom/mojang/brigadier/exceptions/DynamicCommandExceptionType;)Lnet/minecraft/core/Holder$Reference; +MD: net/minecraft/commands/arguments/ResourceKeyArgument/m_247318_ (Lcom/mojang/brigadier/context/CommandContext;Ljava/lang/String;)Lnet/minecraft/core/Holder$Reference; net/minecraft/commands/arguments/ResourceKeyArgument/getStructure (Lcom/mojang/brigadier/context/CommandContext;Ljava/lang/String;)Lnet/minecraft/core/Holder$Reference; +MD: net/minecraft/commands/arguments/ResourceKeyArgument/m_247435_ (Lcom/mojang/brigadier/context/CommandContext;Ljava/lang/String;)Lnet/minecraft/core/Holder$Reference; net/minecraft/commands/arguments/ResourceKeyArgument/getStructureTemplatePool (Lcom/mojang/brigadier/context/CommandContext;Ljava/lang/String;)Lnet/minecraft/core/Holder$Reference; +MD: net/minecraft/commands/arguments/ResourceKeyArgument/parse (Lcom/mojang/brigadier/StringReader;)Ljava/lang/Object; net/minecraft/commands/arguments/ResourceKeyArgument/parse (Lcom/mojang/brigadier/StringReader;)Ljava/lang/Object; +MD: net/minecraft/commands/arguments/ResourceKeyArgument/parse (Lcom/mojang/brigadier/StringReader;)Lnet/minecraft/resources/ResourceKey; net/minecraft/commands/arguments/ResourceKeyArgument/parse (Lcom/mojang/brigadier/StringReader;)Lnet/minecraft/resources/ResourceKey; +MD: net/minecraft/commands/arguments/ResourceKeyArgument$Info/ ()V net/minecraft/commands/arguments/ResourceKeyArgument$Info/ ()V +MD: net/minecraft/commands/arguments/ResourceKeyArgument$Info/m_213618_ (Lnet/minecraft/network/FriendlyByteBuf;)Lnet/minecraft/commands/synchronization/ArgumentTypeInfo$Template; net/minecraft/commands/arguments/ResourceKeyArgument$Info/deserializeFromNetwork (Lnet/minecraft/network/FriendlyByteBuf;)Lnet/minecraft/commands/synchronization/ArgumentTypeInfo$Template; +MD: net/minecraft/commands/arguments/ResourceKeyArgument$Info/m_213618_ (Lnet/minecraft/network/FriendlyByteBuf;)Lnet/minecraft/commands/arguments/ResourceKeyArgument$Info$Template; net/minecraft/commands/arguments/ResourceKeyArgument$Info/deserializeFromNetwork (Lnet/minecraft/network/FriendlyByteBuf;)Lnet/minecraft/commands/arguments/ResourceKeyArgument$Info$Template; +MD: net/minecraft/commands/arguments/ResourceKeyArgument$Info/m_213719_ (Lnet/minecraft/commands/synchronization/ArgumentTypeInfo$Template;Lcom/google/gson/JsonObject;)V net/minecraft/commands/arguments/ResourceKeyArgument$Info/serializeToJson (Lnet/minecraft/commands/synchronization/ArgumentTypeInfo$Template;Lcom/google/gson/JsonObject;)V +MD: net/minecraft/commands/arguments/ResourceKeyArgument$Info/m_213719_ (Lnet/minecraft/commands/arguments/ResourceKeyArgument$Info$Template;Lcom/google/gson/JsonObject;)V net/minecraft/commands/arguments/ResourceKeyArgument$Info/serializeToJson (Lnet/minecraft/commands/arguments/ResourceKeyArgument$Info$Template;Lcom/google/gson/JsonObject;)V +MD: net/minecraft/commands/arguments/ResourceKeyArgument$Info/m_214155_ (Lnet/minecraft/commands/arguments/ResourceKeyArgument$Info$Template;Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/commands/arguments/ResourceKeyArgument$Info/serializeToNetwork (Lnet/minecraft/commands/arguments/ResourceKeyArgument$Info$Template;Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/commands/arguments/ResourceKeyArgument$Info/m_214155_ (Lnet/minecraft/commands/synchronization/ArgumentTypeInfo$Template;Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/commands/arguments/ResourceKeyArgument$Info/serializeToNetwork (Lnet/minecraft/commands/synchronization/ArgumentTypeInfo$Template;Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/commands/arguments/ResourceKeyArgument$Info/m_214163_ (Lcom/mojang/brigadier/arguments/ArgumentType;)Lnet/minecraft/commands/synchronization/ArgumentTypeInfo$Template; net/minecraft/commands/arguments/ResourceKeyArgument$Info/unpack (Lcom/mojang/brigadier/arguments/ArgumentType;)Lnet/minecraft/commands/synchronization/ArgumentTypeInfo$Template; +MD: net/minecraft/commands/arguments/ResourceKeyArgument$Info/m_214163_ (Lnet/minecraft/commands/arguments/ResourceKeyArgument;)Lnet/minecraft/commands/arguments/ResourceKeyArgument$Info$Template; net/minecraft/commands/arguments/ResourceKeyArgument$Info/unpack (Lnet/minecraft/commands/arguments/ResourceKeyArgument;)Lnet/minecraft/commands/arguments/ResourceKeyArgument$Info$Template; +MD: net/minecraft/commands/arguments/ResourceKeyArgument$Info$Template/ (Lnet/minecraft/commands/arguments/ResourceKeyArgument$Info;Lnet/minecraft/resources/ResourceKey;)V net/minecraft/commands/arguments/ResourceKeyArgument$Info$Template/ (Lnet/minecraft/commands/arguments/ResourceKeyArgument$Info;Lnet/minecraft/resources/ResourceKey;)V +MD: net/minecraft/commands/arguments/ResourceKeyArgument$Info$Template/m_213709_ ()Lnet/minecraft/commands/synchronization/ArgumentTypeInfo; net/minecraft/commands/arguments/ResourceKeyArgument$Info$Template/type ()Lnet/minecraft/commands/synchronization/ArgumentTypeInfo; +MD: net/minecraft/commands/arguments/ResourceKeyArgument$Info$Template/m_213879_ (Lnet/minecraft/commands/CommandBuildContext;)Lnet/minecraft/commands/arguments/ResourceKeyArgument; net/minecraft/commands/arguments/ResourceKeyArgument$Info$Template/instantiate (Lnet/minecraft/commands/CommandBuildContext;)Lnet/minecraft/commands/arguments/ResourceKeyArgument; +MD: net/minecraft/commands/arguments/ResourceKeyArgument$Info$Template/m_213879_ (Lnet/minecraft/commands/CommandBuildContext;)Lcom/mojang/brigadier/arguments/ArgumentType; net/minecraft/commands/arguments/ResourceKeyArgument$Info$Template/instantiate (Lnet/minecraft/commands/CommandBuildContext;)Lcom/mojang/brigadier/arguments/ArgumentType; +MD: net/minecraft/commands/arguments/ResourceLocationArgument/ ()V net/minecraft/commands/arguments/ResourceLocationArgument/ ()V +MD: net/minecraft/commands/arguments/ResourceLocationArgument/ ()V net/minecraft/commands/arguments/ResourceLocationArgument/ ()V +MD: net/minecraft/commands/arguments/ResourceLocationArgument/getExamples ()Ljava/util/Collection; net/minecraft/commands/arguments/ResourceLocationArgument/getExamples ()Ljava/util/Collection; +MD: net/minecraft/commands/arguments/ResourceLocationArgument/m_106984_ ()Lnet/minecraft/commands/arguments/ResourceLocationArgument; net/minecraft/commands/arguments/ResourceLocationArgument/id ()Lnet/minecraft/commands/arguments/ResourceLocationArgument; +MD: net/minecraft/commands/arguments/ResourceLocationArgument/m_106987_ (Lcom/mojang/brigadier/context/CommandContext;Ljava/lang/String;)Lnet/minecraft/advancements/Advancement; net/minecraft/commands/arguments/ResourceLocationArgument/getAdvancement (Lcom/mojang/brigadier/context/CommandContext;Ljava/lang/String;)Lnet/minecraft/advancements/Advancement; +MD: net/minecraft/commands/arguments/ResourceLocationArgument/m_106990_ (Ljava/lang/Object;)Lcom/mojang/brigadier/Message; net/minecraft/commands/arguments/ResourceLocationArgument/lambda$static$3 (Ljava/lang/Object;)Lcom/mojang/brigadier/Message; +MD: net/minecraft/commands/arguments/ResourceLocationArgument/m_106994_ (Lcom/mojang/brigadier/context/CommandContext;Ljava/lang/String;)Lnet/minecraft/world/item/crafting/Recipe; net/minecraft/commands/arguments/ResourceLocationArgument/getRecipe (Lcom/mojang/brigadier/context/CommandContext;Ljava/lang/String;)Lnet/minecraft/world/item/crafting/Recipe; +MD: net/minecraft/commands/arguments/ResourceLocationArgument/m_106997_ (Ljava/lang/Object;)Lcom/mojang/brigadier/Message; net/minecraft/commands/arguments/ResourceLocationArgument/lambda$static$2 (Ljava/lang/Object;)Lcom/mojang/brigadier/Message; +MD: net/minecraft/commands/arguments/ResourceLocationArgument/m_107001_ (Lcom/mojang/brigadier/context/CommandContext;Ljava/lang/String;)Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition; net/minecraft/commands/arguments/ResourceLocationArgument/getPredicate (Lcom/mojang/brigadier/context/CommandContext;Ljava/lang/String;)Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition; +MD: net/minecraft/commands/arguments/ResourceLocationArgument/m_107004_ (Ljava/lang/Object;)Lcom/mojang/brigadier/Message; net/minecraft/commands/arguments/ResourceLocationArgument/lambda$static$1 (Ljava/lang/Object;)Lcom/mojang/brigadier/Message; +MD: net/minecraft/commands/arguments/ResourceLocationArgument/m_107009_ (Ljava/lang/Object;)Lcom/mojang/brigadier/Message; net/minecraft/commands/arguments/ResourceLocationArgument/lambda$static$0 (Ljava/lang/Object;)Lcom/mojang/brigadier/Message; +MD: net/minecraft/commands/arguments/ResourceLocationArgument/m_107011_ (Lcom/mojang/brigadier/context/CommandContext;Ljava/lang/String;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/commands/arguments/ResourceLocationArgument/getId (Lcom/mojang/brigadier/context/CommandContext;Ljava/lang/String;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/commands/arguments/ResourceLocationArgument/m_171031_ (Lcom/mojang/brigadier/context/CommandContext;Ljava/lang/String;)Lnet/minecraft/world/level/storage/loot/functions/LootItemFunction; net/minecraft/commands/arguments/ResourceLocationArgument/getItemModifier (Lcom/mojang/brigadier/context/CommandContext;Ljava/lang/String;)Lnet/minecraft/world/level/storage/loot/functions/LootItemFunction; +MD: net/minecraft/commands/arguments/ResourceLocationArgument/m_212420_ (Lnet/minecraft/resources/ResourceLocation;)Lcom/mojang/brigadier/exceptions/CommandSyntaxException; net/minecraft/commands/arguments/ResourceLocationArgument/lambda$getRecipe$4 (Lnet/minecraft/resources/ResourceLocation;)Lcom/mojang/brigadier/exceptions/CommandSyntaxException; +MD: net/minecraft/commands/arguments/ResourceLocationArgument/parse (Lcom/mojang/brigadier/StringReader;)Ljava/lang/Object; net/minecraft/commands/arguments/ResourceLocationArgument/parse (Lcom/mojang/brigadier/StringReader;)Ljava/lang/Object; +MD: net/minecraft/commands/arguments/ResourceLocationArgument/parse (Lcom/mojang/brigadier/StringReader;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/commands/arguments/ResourceLocationArgument/parse (Lcom/mojang/brigadier/StringReader;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/commands/arguments/ResourceOrTagArgument/ ()V net/minecraft/commands/arguments/ResourceOrTagArgument/ ()V +MD: net/minecraft/commands/arguments/ResourceOrTagArgument/ (Lnet/minecraft/commands/CommandBuildContext;Lnet/minecraft/resources/ResourceKey;)V net/minecraft/commands/arguments/ResourceOrTagArgument/ (Lnet/minecraft/commands/CommandBuildContext;Lnet/minecraft/resources/ResourceKey;)V +MD: net/minecraft/commands/arguments/ResourceOrTagArgument/getExamples ()Ljava/util/Collection; net/minecraft/commands/arguments/ResourceOrTagArgument/getExamples ()Ljava/util/Collection; +MD: net/minecraft/commands/arguments/ResourceOrTagArgument/listSuggestions (Lcom/mojang/brigadier/context/CommandContext;Lcom/mojang/brigadier/suggestion/SuggestionsBuilder;)Ljava/util/concurrent/CompletableFuture; net/minecraft/commands/arguments/ResourceOrTagArgument/listSuggestions (Lcom/mojang/brigadier/context/CommandContext;Lcom/mojang/brigadier/suggestion/SuggestionsBuilder;)Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/commands/arguments/ResourceOrTagArgument/m_245090_ (Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;)Lcom/mojang/brigadier/Message; net/minecraft/commands/arguments/ResourceOrTagArgument/lambda$static$1 (Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;)Lcom/mojang/brigadier/Message; +MD: net/minecraft/commands/arguments/ResourceOrTagArgument/m_245252_ (Lnet/minecraft/resources/ResourceLocation;)Lcom/mojang/brigadier/exceptions/CommandSyntaxException; net/minecraft/commands/arguments/ResourceOrTagArgument/lambda$parse$5 (Lnet/minecraft/resources/ResourceLocation;)Lcom/mojang/brigadier/exceptions/CommandSyntaxException; +MD: net/minecraft/commands/arguments/ResourceOrTagArgument/m_245464_ (Lcom/mojang/brigadier/context/CommandContext;Ljava/lang/String;Lnet/minecraft/resources/ResourceKey;)Lnet/minecraft/commands/arguments/ResourceOrTagArgument$Result; net/minecraft/commands/arguments/ResourceOrTagArgument/getResourceOrTag (Lcom/mojang/brigadier/context/CommandContext;Ljava/lang/String;Lnet/minecraft/resources/ResourceKey;)Lnet/minecraft/commands/arguments/ResourceOrTagArgument$Result; +MD: net/minecraft/commands/arguments/ResourceOrTagArgument/m_245664_ (Lnet/minecraft/resources/ResourceKey;Lnet/minecraft/core/HolderSet$Named;)Lcom/mojang/brigadier/exceptions/CommandSyntaxException; net/minecraft/commands/arguments/ResourceOrTagArgument/lambda$getResourceOrTag$3 (Lnet/minecraft/resources/ResourceKey;Lnet/minecraft/core/HolderSet$Named;)Lcom/mojang/brigadier/exceptions/CommandSyntaxException; +MD: net/minecraft/commands/arguments/ResourceOrTagArgument/m_245818_ (Lnet/minecraft/resources/ResourceKey;Lnet/minecraft/core/Holder$Reference;)Lcom/mojang/brigadier/exceptions/CommandSyntaxException; net/minecraft/commands/arguments/ResourceOrTagArgument/lambda$getResourceOrTag$2 (Lnet/minecraft/resources/ResourceKey;Lnet/minecraft/core/Holder$Reference;)Lcom/mojang/brigadier/exceptions/CommandSyntaxException; +MD: net/minecraft/commands/arguments/ResourceOrTagArgument/m_246102_ (Lnet/minecraft/resources/ResourceLocation;)Lcom/mojang/brigadier/exceptions/CommandSyntaxException; net/minecraft/commands/arguments/ResourceOrTagArgument/lambda$parse$6 (Lnet/minecraft/resources/ResourceLocation;)Lcom/mojang/brigadier/exceptions/CommandSyntaxException; +MD: net/minecraft/commands/arguments/ResourceOrTagArgument/m_246859_ (Ljava/lang/Object;Ljava/lang/Object;)Lcom/mojang/brigadier/Message; net/minecraft/commands/arguments/ResourceOrTagArgument/lambda$static$0 (Ljava/lang/Object;Ljava/lang/Object;)Lcom/mojang/brigadier/Message; +MD: net/minecraft/commands/arguments/ResourceOrTagArgument/m_247081_ (Lnet/minecraft/commands/arguments/ResourceOrTagArgument$Result;Lnet/minecraft/resources/ResourceKey;)Lcom/mojang/brigadier/exceptions/CommandSyntaxException; net/minecraft/commands/arguments/ResourceOrTagArgument/lambda$getResourceOrTag$4 (Lnet/minecraft/commands/arguments/ResourceOrTagArgument$Result;Lnet/minecraft/resources/ResourceKey;)Lcom/mojang/brigadier/exceptions/CommandSyntaxException; +MD: net/minecraft/commands/arguments/ResourceOrTagArgument/m_247455_ (Lnet/minecraft/commands/CommandBuildContext;Lnet/minecraft/resources/ResourceKey;)Lnet/minecraft/commands/arguments/ResourceOrTagArgument; net/minecraft/commands/arguments/ResourceOrTagArgument/resourceOrTag (Lnet/minecraft/commands/CommandBuildContext;Lnet/minecraft/resources/ResourceKey;)Lnet/minecraft/commands/arguments/ResourceOrTagArgument; +MD: net/minecraft/commands/arguments/ResourceOrTagArgument/parse (Lcom/mojang/brigadier/StringReader;)Ljava/lang/Object; net/minecraft/commands/arguments/ResourceOrTagArgument/parse (Lcom/mojang/brigadier/StringReader;)Ljava/lang/Object; +MD: net/minecraft/commands/arguments/ResourceOrTagArgument/parse (Lcom/mojang/brigadier/StringReader;)Lnet/minecraft/commands/arguments/ResourceOrTagArgument$Result; net/minecraft/commands/arguments/ResourceOrTagArgument/parse (Lcom/mojang/brigadier/StringReader;)Lnet/minecraft/commands/arguments/ResourceOrTagArgument$Result; +MD: net/minecraft/commands/arguments/ResourceOrTagArgument$Info/ ()V net/minecraft/commands/arguments/ResourceOrTagArgument$Info/ ()V +MD: net/minecraft/commands/arguments/ResourceOrTagArgument$Info/m_213618_ (Lnet/minecraft/network/FriendlyByteBuf;)Lnet/minecraft/commands/arguments/ResourceOrTagArgument$Info$Template; net/minecraft/commands/arguments/ResourceOrTagArgument$Info/deserializeFromNetwork (Lnet/minecraft/network/FriendlyByteBuf;)Lnet/minecraft/commands/arguments/ResourceOrTagArgument$Info$Template; +MD: net/minecraft/commands/arguments/ResourceOrTagArgument$Info/m_213618_ (Lnet/minecraft/network/FriendlyByteBuf;)Lnet/minecraft/commands/synchronization/ArgumentTypeInfo$Template; net/minecraft/commands/arguments/ResourceOrTagArgument$Info/deserializeFromNetwork (Lnet/minecraft/network/FriendlyByteBuf;)Lnet/minecraft/commands/synchronization/ArgumentTypeInfo$Template; +MD: net/minecraft/commands/arguments/ResourceOrTagArgument$Info/m_213719_ (Lnet/minecraft/commands/arguments/ResourceOrTagArgument$Info$Template;Lcom/google/gson/JsonObject;)V net/minecraft/commands/arguments/ResourceOrTagArgument$Info/serializeToJson (Lnet/minecraft/commands/arguments/ResourceOrTagArgument$Info$Template;Lcom/google/gson/JsonObject;)V +MD: net/minecraft/commands/arguments/ResourceOrTagArgument$Info/m_213719_ (Lnet/minecraft/commands/synchronization/ArgumentTypeInfo$Template;Lcom/google/gson/JsonObject;)V net/minecraft/commands/arguments/ResourceOrTagArgument$Info/serializeToJson (Lnet/minecraft/commands/synchronization/ArgumentTypeInfo$Template;Lcom/google/gson/JsonObject;)V +MD: net/minecraft/commands/arguments/ResourceOrTagArgument$Info/m_214155_ (Lnet/minecraft/commands/synchronization/ArgumentTypeInfo$Template;Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/commands/arguments/ResourceOrTagArgument$Info/serializeToNetwork (Lnet/minecraft/commands/synchronization/ArgumentTypeInfo$Template;Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/commands/arguments/ResourceOrTagArgument$Info/m_214155_ (Lnet/minecraft/commands/arguments/ResourceOrTagArgument$Info$Template;Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/commands/arguments/ResourceOrTagArgument$Info/serializeToNetwork (Lnet/minecraft/commands/arguments/ResourceOrTagArgument$Info$Template;Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/commands/arguments/ResourceOrTagArgument$Info/m_214163_ (Lcom/mojang/brigadier/arguments/ArgumentType;)Lnet/minecraft/commands/synchronization/ArgumentTypeInfo$Template; net/minecraft/commands/arguments/ResourceOrTagArgument$Info/unpack (Lcom/mojang/brigadier/arguments/ArgumentType;)Lnet/minecraft/commands/synchronization/ArgumentTypeInfo$Template; +MD: net/minecraft/commands/arguments/ResourceOrTagArgument$Info/m_214163_ (Lnet/minecraft/commands/arguments/ResourceOrTagArgument;)Lnet/minecraft/commands/arguments/ResourceOrTagArgument$Info$Template; net/minecraft/commands/arguments/ResourceOrTagArgument$Info/unpack (Lnet/minecraft/commands/arguments/ResourceOrTagArgument;)Lnet/minecraft/commands/arguments/ResourceOrTagArgument$Info$Template; +MD: net/minecraft/commands/arguments/ResourceOrTagArgument$Info$Template/ (Lnet/minecraft/commands/arguments/ResourceOrTagArgument$Info;Lnet/minecraft/resources/ResourceKey;)V net/minecraft/commands/arguments/ResourceOrTagArgument$Info$Template/ (Lnet/minecraft/commands/arguments/ResourceOrTagArgument$Info;Lnet/minecraft/resources/ResourceKey;)V +MD: net/minecraft/commands/arguments/ResourceOrTagArgument$Info$Template/m_213709_ ()Lnet/minecraft/commands/synchronization/ArgumentTypeInfo; net/minecraft/commands/arguments/ResourceOrTagArgument$Info$Template/type ()Lnet/minecraft/commands/synchronization/ArgumentTypeInfo; +MD: net/minecraft/commands/arguments/ResourceOrTagArgument$Info$Template/m_213879_ (Lnet/minecraft/commands/CommandBuildContext;)Lcom/mojang/brigadier/arguments/ArgumentType; net/minecraft/commands/arguments/ResourceOrTagArgument$Info$Template/instantiate (Lnet/minecraft/commands/CommandBuildContext;)Lcom/mojang/brigadier/arguments/ArgumentType; +MD: net/minecraft/commands/arguments/ResourceOrTagArgument$Info$Template/m_213879_ (Lnet/minecraft/commands/CommandBuildContext;)Lnet/minecraft/commands/arguments/ResourceOrTagArgument; net/minecraft/commands/arguments/ResourceOrTagArgument$Info$Template/instantiate (Lnet/minecraft/commands/CommandBuildContext;)Lnet/minecraft/commands/arguments/ResourceOrTagArgument; +MD: net/minecraft/commands/arguments/ResourceOrTagArgument$ResourceResult/ (Lnet/minecraft/core/Holder$Reference;)V net/minecraft/commands/arguments/ResourceOrTagArgument$ResourceResult/ (Lnet/minecraft/core/Holder$Reference;)V +MD: net/minecraft/commands/arguments/ResourceOrTagArgument$ResourceResult/equals (Ljava/lang/Object;)Z net/minecraft/commands/arguments/ResourceOrTagArgument$ResourceResult/equals (Ljava/lang/Object;)Z +MD: net/minecraft/commands/arguments/ResourceOrTagArgument$ResourceResult/f_243689_ ()Lnet/minecraft/core/Holder$Reference; net/minecraft/commands/arguments/ResourceOrTagArgument$ResourceResult/value ()Lnet/minecraft/core/Holder$Reference; +MD: net/minecraft/commands/arguments/ResourceOrTagArgument$ResourceResult/hashCode ()I net/minecraft/commands/arguments/ResourceOrTagArgument$ResourceResult/hashCode ()I +MD: net/minecraft/commands/arguments/ResourceOrTagArgument$ResourceResult/m_245172_ (Lnet/minecraft/resources/ResourceKey;)Ljava/util/Optional; net/minecraft/commands/arguments/ResourceOrTagArgument$ResourceResult/cast (Lnet/minecraft/resources/ResourceKey;)Ljava/util/Optional; +MD: net/minecraft/commands/arguments/ResourceOrTagArgument$ResourceResult/m_245347_ ()Lcom/mojang/datafixers/util/Either; net/minecraft/commands/arguments/ResourceOrTagArgument$ResourceResult/unwrap ()Lcom/mojang/datafixers/util/Either; +MD: net/minecraft/commands/arguments/ResourceOrTagArgument$ResourceResult/m_245443_ ()Ljava/lang/String; net/minecraft/commands/arguments/ResourceOrTagArgument$ResourceResult/asPrintable ()Ljava/lang/String; +MD: net/minecraft/commands/arguments/ResourceOrTagArgument$ResourceResult/test (Ljava/lang/Object;)Z net/minecraft/commands/arguments/ResourceOrTagArgument$ResourceResult/test (Ljava/lang/Object;)Z +MD: net/minecraft/commands/arguments/ResourceOrTagArgument$ResourceResult/test (Lnet/minecraft/core/Holder;)Z net/minecraft/commands/arguments/ResourceOrTagArgument$ResourceResult/test (Lnet/minecraft/core/Holder;)Z +MD: net/minecraft/commands/arguments/ResourceOrTagArgument$ResourceResult/toString ()Ljava/lang/String; net/minecraft/commands/arguments/ResourceOrTagArgument$ResourceResult/toString ()Ljava/lang/String; +MD: net/minecraft/commands/arguments/ResourceOrTagArgument$Result/m_245172_ (Lnet/minecraft/resources/ResourceKey;)Ljava/util/Optional; net/minecraft/commands/arguments/ResourceOrTagArgument$Result/cast (Lnet/minecraft/resources/ResourceKey;)Ljava/util/Optional; +MD: net/minecraft/commands/arguments/ResourceOrTagArgument$Result/m_245347_ ()Lcom/mojang/datafixers/util/Either; net/minecraft/commands/arguments/ResourceOrTagArgument$Result/unwrap ()Lcom/mojang/datafixers/util/Either; +MD: net/minecraft/commands/arguments/ResourceOrTagArgument$Result/m_245443_ ()Ljava/lang/String; net/minecraft/commands/arguments/ResourceOrTagArgument$Result/asPrintable ()Ljava/lang/String; +MD: net/minecraft/commands/arguments/ResourceOrTagArgument$TagResult/ (Lnet/minecraft/core/HolderSet$Named;)V net/minecraft/commands/arguments/ResourceOrTagArgument$TagResult/ (Lnet/minecraft/core/HolderSet$Named;)V +MD: net/minecraft/commands/arguments/ResourceOrTagArgument$TagResult/equals (Ljava/lang/Object;)Z net/minecraft/commands/arguments/ResourceOrTagArgument$TagResult/equals (Ljava/lang/Object;)Z +MD: net/minecraft/commands/arguments/ResourceOrTagArgument$TagResult/f_244078_ ()Lnet/minecraft/core/HolderSet$Named; net/minecraft/commands/arguments/ResourceOrTagArgument$TagResult/tag ()Lnet/minecraft/core/HolderSet$Named; +MD: net/minecraft/commands/arguments/ResourceOrTagArgument$TagResult/hashCode ()I net/minecraft/commands/arguments/ResourceOrTagArgument$TagResult/hashCode ()I +MD: net/minecraft/commands/arguments/ResourceOrTagArgument$TagResult/m_245172_ (Lnet/minecraft/resources/ResourceKey;)Ljava/util/Optional; net/minecraft/commands/arguments/ResourceOrTagArgument$TagResult/cast (Lnet/minecraft/resources/ResourceKey;)Ljava/util/Optional; +MD: net/minecraft/commands/arguments/ResourceOrTagArgument$TagResult/m_245347_ ()Lcom/mojang/datafixers/util/Either; net/minecraft/commands/arguments/ResourceOrTagArgument$TagResult/unwrap ()Lcom/mojang/datafixers/util/Either; +MD: net/minecraft/commands/arguments/ResourceOrTagArgument$TagResult/m_245443_ ()Ljava/lang/String; net/minecraft/commands/arguments/ResourceOrTagArgument$TagResult/asPrintable ()Ljava/lang/String; +MD: net/minecraft/commands/arguments/ResourceOrTagArgument$TagResult/test (Ljava/lang/Object;)Z net/minecraft/commands/arguments/ResourceOrTagArgument$TagResult/test (Ljava/lang/Object;)Z +MD: net/minecraft/commands/arguments/ResourceOrTagArgument$TagResult/test (Lnet/minecraft/core/Holder;)Z net/minecraft/commands/arguments/ResourceOrTagArgument$TagResult/test (Lnet/minecraft/core/Holder;)Z +MD: net/minecraft/commands/arguments/ResourceOrTagArgument$TagResult/toString ()Ljava/lang/String; net/minecraft/commands/arguments/ResourceOrTagArgument$TagResult/toString ()Ljava/lang/String; +MD: net/minecraft/commands/arguments/ResourceOrTagKeyArgument/ ()V net/minecraft/commands/arguments/ResourceOrTagKeyArgument/ ()V +MD: net/minecraft/commands/arguments/ResourceOrTagKeyArgument/ (Lnet/minecraft/resources/ResourceKey;)V net/minecraft/commands/arguments/ResourceOrTagKeyArgument/ (Lnet/minecraft/resources/ResourceKey;)V +MD: net/minecraft/commands/arguments/ResourceOrTagKeyArgument/getExamples ()Ljava/util/Collection; net/minecraft/commands/arguments/ResourceOrTagKeyArgument/getExamples ()Ljava/util/Collection; +MD: net/minecraft/commands/arguments/ResourceOrTagKeyArgument/listSuggestions (Lcom/mojang/brigadier/context/CommandContext;Lcom/mojang/brigadier/suggestion/SuggestionsBuilder;)Ljava/util/concurrent/CompletableFuture; net/minecraft/commands/arguments/ResourceOrTagKeyArgument/listSuggestions (Lcom/mojang/brigadier/context/CommandContext;Lcom/mojang/brigadier/suggestion/SuggestionsBuilder;)Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/commands/arguments/ResourceOrTagKeyArgument/m_246379_ (Lcom/mojang/brigadier/context/CommandContext;Ljava/lang/String;Lnet/minecraft/resources/ResourceKey;Lcom/mojang/brigadier/exceptions/DynamicCommandExceptionType;)Lnet/minecraft/commands/arguments/ResourceOrTagKeyArgument$Result; net/minecraft/commands/arguments/ResourceOrTagKeyArgument/getResourceOrTagKey (Lcom/mojang/brigadier/context/CommandContext;Ljava/lang/String;Lnet/minecraft/resources/ResourceKey;Lcom/mojang/brigadier/exceptions/DynamicCommandExceptionType;)Lnet/minecraft/commands/arguments/ResourceOrTagKeyArgument$Result; +MD: net/minecraft/commands/arguments/ResourceOrTagKeyArgument/m_246963_ (Lcom/mojang/brigadier/exceptions/DynamicCommandExceptionType;Lnet/minecraft/commands/arguments/ResourceOrTagKeyArgument$Result;)Lcom/mojang/brigadier/exceptions/CommandSyntaxException; net/minecraft/commands/arguments/ResourceOrTagKeyArgument/lambda$getResourceOrTagKey$0 (Lcom/mojang/brigadier/exceptions/DynamicCommandExceptionType;Lnet/minecraft/commands/arguments/ResourceOrTagKeyArgument$Result;)Lcom/mojang/brigadier/exceptions/CommandSyntaxException; +MD: net/minecraft/commands/arguments/ResourceOrTagKeyArgument/m_247494_ (Lnet/minecraft/resources/ResourceKey;)Lnet/minecraft/commands/arguments/ResourceOrTagKeyArgument; net/minecraft/commands/arguments/ResourceOrTagKeyArgument/resourceOrTagKey (Lnet/minecraft/resources/ResourceKey;)Lnet/minecraft/commands/arguments/ResourceOrTagKeyArgument; +MD: net/minecraft/commands/arguments/ResourceOrTagKeyArgument/parse (Lcom/mojang/brigadier/StringReader;)Ljava/lang/Object; net/minecraft/commands/arguments/ResourceOrTagKeyArgument/parse (Lcom/mojang/brigadier/StringReader;)Ljava/lang/Object; +MD: net/minecraft/commands/arguments/ResourceOrTagKeyArgument/parse (Lcom/mojang/brigadier/StringReader;)Lnet/minecraft/commands/arguments/ResourceOrTagKeyArgument$Result; net/minecraft/commands/arguments/ResourceOrTagKeyArgument/parse (Lcom/mojang/brigadier/StringReader;)Lnet/minecraft/commands/arguments/ResourceOrTagKeyArgument$Result; +MD: net/minecraft/commands/arguments/ResourceOrTagKeyArgument$Info/ ()V net/minecraft/commands/arguments/ResourceOrTagKeyArgument$Info/ ()V +MD: net/minecraft/commands/arguments/ResourceOrTagKeyArgument$Info/m_213618_ (Lnet/minecraft/network/FriendlyByteBuf;)Lnet/minecraft/commands/synchronization/ArgumentTypeInfo$Template; net/minecraft/commands/arguments/ResourceOrTagKeyArgument$Info/deserializeFromNetwork (Lnet/minecraft/network/FriendlyByteBuf;)Lnet/minecraft/commands/synchronization/ArgumentTypeInfo$Template; +MD: net/minecraft/commands/arguments/ResourceOrTagKeyArgument$Info/m_213618_ (Lnet/minecraft/network/FriendlyByteBuf;)Lnet/minecraft/commands/arguments/ResourceOrTagKeyArgument$Info$Template; net/minecraft/commands/arguments/ResourceOrTagKeyArgument$Info/deserializeFromNetwork (Lnet/minecraft/network/FriendlyByteBuf;)Lnet/minecraft/commands/arguments/ResourceOrTagKeyArgument$Info$Template; +MD: net/minecraft/commands/arguments/ResourceOrTagKeyArgument$Info/m_213719_ (Lnet/minecraft/commands/arguments/ResourceOrTagKeyArgument$Info$Template;Lcom/google/gson/JsonObject;)V net/minecraft/commands/arguments/ResourceOrTagKeyArgument$Info/serializeToJson (Lnet/minecraft/commands/arguments/ResourceOrTagKeyArgument$Info$Template;Lcom/google/gson/JsonObject;)V +MD: net/minecraft/commands/arguments/ResourceOrTagKeyArgument$Info/m_213719_ (Lnet/minecraft/commands/synchronization/ArgumentTypeInfo$Template;Lcom/google/gson/JsonObject;)V net/minecraft/commands/arguments/ResourceOrTagKeyArgument$Info/serializeToJson (Lnet/minecraft/commands/synchronization/ArgumentTypeInfo$Template;Lcom/google/gson/JsonObject;)V +MD: net/minecraft/commands/arguments/ResourceOrTagKeyArgument$Info/m_214155_ (Lnet/minecraft/commands/synchronization/ArgumentTypeInfo$Template;Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/commands/arguments/ResourceOrTagKeyArgument$Info/serializeToNetwork (Lnet/minecraft/commands/synchronization/ArgumentTypeInfo$Template;Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/commands/arguments/ResourceOrTagKeyArgument$Info/m_214155_ (Lnet/minecraft/commands/arguments/ResourceOrTagKeyArgument$Info$Template;Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/commands/arguments/ResourceOrTagKeyArgument$Info/serializeToNetwork (Lnet/minecraft/commands/arguments/ResourceOrTagKeyArgument$Info$Template;Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/commands/arguments/ResourceOrTagKeyArgument$Info/m_214163_ (Lnet/minecraft/commands/arguments/ResourceOrTagKeyArgument;)Lnet/minecraft/commands/arguments/ResourceOrTagKeyArgument$Info$Template; net/minecraft/commands/arguments/ResourceOrTagKeyArgument$Info/unpack (Lnet/minecraft/commands/arguments/ResourceOrTagKeyArgument;)Lnet/minecraft/commands/arguments/ResourceOrTagKeyArgument$Info$Template; +MD: net/minecraft/commands/arguments/ResourceOrTagKeyArgument$Info/m_214163_ (Lcom/mojang/brigadier/arguments/ArgumentType;)Lnet/minecraft/commands/synchronization/ArgumentTypeInfo$Template; net/minecraft/commands/arguments/ResourceOrTagKeyArgument$Info/unpack (Lcom/mojang/brigadier/arguments/ArgumentType;)Lnet/minecraft/commands/synchronization/ArgumentTypeInfo$Template; +MD: net/minecraft/commands/arguments/ResourceOrTagKeyArgument$Info$Template/ (Lnet/minecraft/commands/arguments/ResourceOrTagKeyArgument$Info;Lnet/minecraft/resources/ResourceKey;)V net/minecraft/commands/arguments/ResourceOrTagKeyArgument$Info$Template/ (Lnet/minecraft/commands/arguments/ResourceOrTagKeyArgument$Info;Lnet/minecraft/resources/ResourceKey;)V +MD: net/minecraft/commands/arguments/ResourceOrTagKeyArgument$Info$Template/m_213709_ ()Lnet/minecraft/commands/synchronization/ArgumentTypeInfo; net/minecraft/commands/arguments/ResourceOrTagKeyArgument$Info$Template/type ()Lnet/minecraft/commands/synchronization/ArgumentTypeInfo; +MD: net/minecraft/commands/arguments/ResourceOrTagKeyArgument$Info$Template/m_213879_ (Lnet/minecraft/commands/CommandBuildContext;)Lnet/minecraft/commands/arguments/ResourceOrTagKeyArgument; net/minecraft/commands/arguments/ResourceOrTagKeyArgument$Info$Template/instantiate (Lnet/minecraft/commands/CommandBuildContext;)Lnet/minecraft/commands/arguments/ResourceOrTagKeyArgument; +MD: net/minecraft/commands/arguments/ResourceOrTagKeyArgument$Info$Template/m_213879_ (Lnet/minecraft/commands/CommandBuildContext;)Lcom/mojang/brigadier/arguments/ArgumentType; net/minecraft/commands/arguments/ResourceOrTagKeyArgument$Info$Template/instantiate (Lnet/minecraft/commands/CommandBuildContext;)Lcom/mojang/brigadier/arguments/ArgumentType; +MD: net/minecraft/commands/arguments/ResourceOrTagKeyArgument$ResourceResult/ (Lnet/minecraft/resources/ResourceKey;)V net/minecraft/commands/arguments/ResourceOrTagKeyArgument$ResourceResult/ (Lnet/minecraft/resources/ResourceKey;)V +MD: net/minecraft/commands/arguments/ResourceOrTagKeyArgument$ResourceResult/equals (Ljava/lang/Object;)Z net/minecraft/commands/arguments/ResourceOrTagKeyArgument$ResourceResult/equals (Ljava/lang/Object;)Z +MD: net/minecraft/commands/arguments/ResourceOrTagKeyArgument$ResourceResult/f_243909_ ()Lnet/minecraft/resources/ResourceKey; net/minecraft/commands/arguments/ResourceOrTagKeyArgument$ResourceResult/key ()Lnet/minecraft/resources/ResourceKey; +MD: net/minecraft/commands/arguments/ResourceOrTagKeyArgument$ResourceResult/hashCode ()I net/minecraft/commands/arguments/ResourceOrTagKeyArgument$ResourceResult/hashCode ()I +MD: net/minecraft/commands/arguments/ResourceOrTagKeyArgument$ResourceResult/m_245137_ (Lnet/minecraft/resources/ResourceKey;)Ljava/util/Optional; net/minecraft/commands/arguments/ResourceOrTagKeyArgument$ResourceResult/cast (Lnet/minecraft/resources/ResourceKey;)Ljava/util/Optional; +MD: net/minecraft/commands/arguments/ResourceOrTagKeyArgument$ResourceResult/m_245276_ ()Lcom/mojang/datafixers/util/Either; net/minecraft/commands/arguments/ResourceOrTagKeyArgument$ResourceResult/unwrap ()Lcom/mojang/datafixers/util/Either; +MD: net/minecraft/commands/arguments/ResourceOrTagKeyArgument$ResourceResult/m_245390_ ()Ljava/lang/String; net/minecraft/commands/arguments/ResourceOrTagKeyArgument$ResourceResult/asPrintable ()Ljava/lang/String; +MD: net/minecraft/commands/arguments/ResourceOrTagKeyArgument$ResourceResult/test (Ljava/lang/Object;)Z net/minecraft/commands/arguments/ResourceOrTagKeyArgument$ResourceResult/test (Ljava/lang/Object;)Z +MD: net/minecraft/commands/arguments/ResourceOrTagKeyArgument$ResourceResult/test (Lnet/minecraft/core/Holder;)Z net/minecraft/commands/arguments/ResourceOrTagKeyArgument$ResourceResult/test (Lnet/minecraft/core/Holder;)Z +MD: net/minecraft/commands/arguments/ResourceOrTagKeyArgument$ResourceResult/toString ()Ljava/lang/String; net/minecraft/commands/arguments/ResourceOrTagKeyArgument$ResourceResult/toString ()Ljava/lang/String; +MD: net/minecraft/commands/arguments/ResourceOrTagKeyArgument$Result/m_245137_ (Lnet/minecraft/resources/ResourceKey;)Ljava/util/Optional; net/minecraft/commands/arguments/ResourceOrTagKeyArgument$Result/cast (Lnet/minecraft/resources/ResourceKey;)Ljava/util/Optional; +MD: net/minecraft/commands/arguments/ResourceOrTagKeyArgument$Result/m_245276_ ()Lcom/mojang/datafixers/util/Either; net/minecraft/commands/arguments/ResourceOrTagKeyArgument$Result/unwrap ()Lcom/mojang/datafixers/util/Either; +MD: net/minecraft/commands/arguments/ResourceOrTagKeyArgument$Result/m_245390_ ()Ljava/lang/String; net/minecraft/commands/arguments/ResourceOrTagKeyArgument$Result/asPrintable ()Ljava/lang/String; +MD: net/minecraft/commands/arguments/ResourceOrTagKeyArgument$TagResult/ (Lnet/minecraft/tags/TagKey;)V net/minecraft/commands/arguments/ResourceOrTagKeyArgument$TagResult/ (Lnet/minecraft/tags/TagKey;)V +MD: net/minecraft/commands/arguments/ResourceOrTagKeyArgument$TagResult/equals (Ljava/lang/Object;)Z net/minecraft/commands/arguments/ResourceOrTagKeyArgument$TagResult/equals (Ljava/lang/Object;)Z +MD: net/minecraft/commands/arguments/ResourceOrTagKeyArgument$TagResult/f_244059_ ()Lnet/minecraft/tags/TagKey; net/minecraft/commands/arguments/ResourceOrTagKeyArgument$TagResult/key ()Lnet/minecraft/tags/TagKey; +MD: net/minecraft/commands/arguments/ResourceOrTagKeyArgument$TagResult/hashCode ()I net/minecraft/commands/arguments/ResourceOrTagKeyArgument$TagResult/hashCode ()I +MD: net/minecraft/commands/arguments/ResourceOrTagKeyArgument$TagResult/m_245137_ (Lnet/minecraft/resources/ResourceKey;)Ljava/util/Optional; net/minecraft/commands/arguments/ResourceOrTagKeyArgument$TagResult/cast (Lnet/minecraft/resources/ResourceKey;)Ljava/util/Optional; +MD: net/minecraft/commands/arguments/ResourceOrTagKeyArgument$TagResult/m_245276_ ()Lcom/mojang/datafixers/util/Either; net/minecraft/commands/arguments/ResourceOrTagKeyArgument$TagResult/unwrap ()Lcom/mojang/datafixers/util/Either; +MD: net/minecraft/commands/arguments/ResourceOrTagKeyArgument$TagResult/m_245390_ ()Ljava/lang/String; net/minecraft/commands/arguments/ResourceOrTagKeyArgument$TagResult/asPrintable ()Ljava/lang/String; +MD: net/minecraft/commands/arguments/ResourceOrTagKeyArgument$TagResult/test (Ljava/lang/Object;)Z net/minecraft/commands/arguments/ResourceOrTagKeyArgument$TagResult/test (Ljava/lang/Object;)Z +MD: net/minecraft/commands/arguments/ResourceOrTagKeyArgument$TagResult/test (Lnet/minecraft/core/Holder;)Z net/minecraft/commands/arguments/ResourceOrTagKeyArgument$TagResult/test (Lnet/minecraft/core/Holder;)Z +MD: net/minecraft/commands/arguments/ResourceOrTagKeyArgument$TagResult/toString ()Ljava/lang/String; net/minecraft/commands/arguments/ResourceOrTagKeyArgument$TagResult/toString ()Ljava/lang/String; +MD: net/minecraft/commands/arguments/ScoreHolderArgument/ ()V net/minecraft/commands/arguments/ScoreHolderArgument/ ()V +MD: net/minecraft/commands/arguments/ScoreHolderArgument/ (Z)V net/minecraft/commands/arguments/ScoreHolderArgument/ (Z)V +MD: net/minecraft/commands/arguments/ScoreHolderArgument/getExamples ()Ljava/util/Collection; net/minecraft/commands/arguments/ScoreHolderArgument/getExamples ()Ljava/util/Collection; +MD: net/minecraft/commands/arguments/ScoreHolderArgument/m_108217_ ()Lnet/minecraft/commands/arguments/ScoreHolderArgument; net/minecraft/commands/arguments/ScoreHolderArgument/scoreHolder ()Lnet/minecraft/commands/arguments/ScoreHolderArgument; +MD: net/minecraft/commands/arguments/ScoreHolderArgument/m_108220_ (Lcom/mojang/brigadier/context/CommandContext;Lcom/mojang/brigadier/suggestion/SuggestionsBuilder;)Ljava/util/concurrent/CompletableFuture; net/minecraft/commands/arguments/ScoreHolderArgument/lambda$static$1 (Lcom/mojang/brigadier/context/CommandContext;Lcom/mojang/brigadier/suggestion/SuggestionsBuilder;)Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/commands/arguments/ScoreHolderArgument/m_108223_ (Lcom/mojang/brigadier/context/CommandContext;Ljava/lang/String;)Ljava/lang/String; net/minecraft/commands/arguments/ScoreHolderArgument/getName (Lcom/mojang/brigadier/context/CommandContext;Ljava/lang/String;)Ljava/lang/String; +MD: net/minecraft/commands/arguments/ScoreHolderArgument/m_108226_ (Lcom/mojang/brigadier/context/CommandContext;Ljava/lang/String;Ljava/util/function/Supplier;)Ljava/util/Collection; net/minecraft/commands/arguments/ScoreHolderArgument/getNames (Lcom/mojang/brigadier/context/CommandContext;Ljava/lang/String;Ljava/util/function/Supplier;)Ljava/util/Collection; +MD: net/minecraft/commands/arguments/ScoreHolderArgument/m_108230_ (Lnet/minecraft/commands/CommandSourceStack;Ljava/util/function/Supplier;)Ljava/util/Collection; net/minecraft/commands/arguments/ScoreHolderArgument/lambda$parse$2 (Lnet/minecraft/commands/CommandSourceStack;Ljava/util/function/Supplier;)Ljava/util/Collection; +MD: net/minecraft/commands/arguments/ScoreHolderArgument/m_108235_ (Ljava/util/Collection;Lnet/minecraft/commands/CommandSourceStack;Ljava/util/function/Supplier;)Ljava/util/Collection; net/minecraft/commands/arguments/ScoreHolderArgument/lambda$parse$3 (Ljava/util/Collection;Lnet/minecraft/commands/CommandSourceStack;Ljava/util/function/Supplier;)Ljava/util/Collection; +MD: net/minecraft/commands/arguments/ScoreHolderArgument/m_108239_ ()Lnet/minecraft/commands/arguments/ScoreHolderArgument; net/minecraft/commands/arguments/ScoreHolderArgument/scoreHolders ()Lnet/minecraft/commands/arguments/ScoreHolderArgument; +MD: net/minecraft/commands/arguments/ScoreHolderArgument/m_108243_ (Lcom/mojang/brigadier/context/CommandContext;Ljava/lang/String;)Ljava/util/Collection; net/minecraft/commands/arguments/ScoreHolderArgument/getNames (Lcom/mojang/brigadier/context/CommandContext;Ljava/lang/String;)Ljava/util/Collection; +MD: net/minecraft/commands/arguments/ScoreHolderArgument/m_108246_ (Lcom/mojang/brigadier/context/CommandContext;Ljava/lang/String;)Ljava/util/Collection; net/minecraft/commands/arguments/ScoreHolderArgument/getNamesWithDefaultWildcard (Lcom/mojang/brigadier/context/CommandContext;Ljava/lang/String;)Ljava/util/Collection; +MD: net/minecraft/commands/arguments/ScoreHolderArgument/m_171604_ (Lcom/mojang/brigadier/context/CommandContext;Lcom/mojang/brigadier/suggestion/SuggestionsBuilder;)V net/minecraft/commands/arguments/ScoreHolderArgument/lambda$static$0 (Lcom/mojang/brigadier/context/CommandContext;Lcom/mojang/brigadier/suggestion/SuggestionsBuilder;)V +MD: net/minecraft/commands/arguments/ScoreHolderArgument/parse (Lcom/mojang/brigadier/StringReader;)Ljava/lang/Object; net/minecraft/commands/arguments/ScoreHolderArgument/parse (Lcom/mojang/brigadier/StringReader;)Ljava/lang/Object; +MD: net/minecraft/commands/arguments/ScoreHolderArgument/parse (Lcom/mojang/brigadier/StringReader;)Lnet/minecraft/commands/arguments/ScoreHolderArgument$Result; net/minecraft/commands/arguments/ScoreHolderArgument/parse (Lcom/mojang/brigadier/StringReader;)Lnet/minecraft/commands/arguments/ScoreHolderArgument$Result; +MD: net/minecraft/commands/arguments/ScoreHolderArgument$Info/ ()V net/minecraft/commands/arguments/ScoreHolderArgument$Info/ ()V +MD: net/minecraft/commands/arguments/ScoreHolderArgument$Info/m_213618_ (Lnet/minecraft/network/FriendlyByteBuf;)Lnet/minecraft/commands/synchronization/ArgumentTypeInfo$Template; net/minecraft/commands/arguments/ScoreHolderArgument$Info/deserializeFromNetwork (Lnet/minecraft/network/FriendlyByteBuf;)Lnet/minecraft/commands/synchronization/ArgumentTypeInfo$Template; +MD: net/minecraft/commands/arguments/ScoreHolderArgument$Info/m_213618_ (Lnet/minecraft/network/FriendlyByteBuf;)Lnet/minecraft/commands/arguments/ScoreHolderArgument$Info$Template; net/minecraft/commands/arguments/ScoreHolderArgument$Info/deserializeFromNetwork (Lnet/minecraft/network/FriendlyByteBuf;)Lnet/minecraft/commands/arguments/ScoreHolderArgument$Info$Template; +MD: net/minecraft/commands/arguments/ScoreHolderArgument$Info/m_213719_ (Lnet/minecraft/commands/synchronization/ArgumentTypeInfo$Template;Lcom/google/gson/JsonObject;)V net/minecraft/commands/arguments/ScoreHolderArgument$Info/serializeToJson (Lnet/minecraft/commands/synchronization/ArgumentTypeInfo$Template;Lcom/google/gson/JsonObject;)V +MD: net/minecraft/commands/arguments/ScoreHolderArgument$Info/m_213719_ (Lnet/minecraft/commands/arguments/ScoreHolderArgument$Info$Template;Lcom/google/gson/JsonObject;)V net/minecraft/commands/arguments/ScoreHolderArgument$Info/serializeToJson (Lnet/minecraft/commands/arguments/ScoreHolderArgument$Info$Template;Lcom/google/gson/JsonObject;)V +MD: net/minecraft/commands/arguments/ScoreHolderArgument$Info/m_214155_ (Lnet/minecraft/commands/synchronization/ArgumentTypeInfo$Template;Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/commands/arguments/ScoreHolderArgument$Info/serializeToNetwork (Lnet/minecraft/commands/synchronization/ArgumentTypeInfo$Template;Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/commands/arguments/ScoreHolderArgument$Info/m_214155_ (Lnet/minecraft/commands/arguments/ScoreHolderArgument$Info$Template;Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/commands/arguments/ScoreHolderArgument$Info/serializeToNetwork (Lnet/minecraft/commands/arguments/ScoreHolderArgument$Info$Template;Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/commands/arguments/ScoreHolderArgument$Info/m_214163_ (Lnet/minecraft/commands/arguments/ScoreHolderArgument;)Lnet/minecraft/commands/arguments/ScoreHolderArgument$Info$Template; net/minecraft/commands/arguments/ScoreHolderArgument$Info/unpack (Lnet/minecraft/commands/arguments/ScoreHolderArgument;)Lnet/minecraft/commands/arguments/ScoreHolderArgument$Info$Template; +MD: net/minecraft/commands/arguments/ScoreHolderArgument$Info/m_214163_ (Lcom/mojang/brigadier/arguments/ArgumentType;)Lnet/minecraft/commands/synchronization/ArgumentTypeInfo$Template; net/minecraft/commands/arguments/ScoreHolderArgument$Info/unpack (Lcom/mojang/brigadier/arguments/ArgumentType;)Lnet/minecraft/commands/synchronization/ArgumentTypeInfo$Template; +MD: net/minecraft/commands/arguments/ScoreHolderArgument$Info$Template/ (Lnet/minecraft/commands/arguments/ScoreHolderArgument$Info;Z)V net/minecraft/commands/arguments/ScoreHolderArgument$Info$Template/ (Lnet/minecraft/commands/arguments/ScoreHolderArgument$Info;Z)V +MD: net/minecraft/commands/arguments/ScoreHolderArgument$Info$Template/m_213709_ ()Lnet/minecraft/commands/synchronization/ArgumentTypeInfo; net/minecraft/commands/arguments/ScoreHolderArgument$Info$Template/type ()Lnet/minecraft/commands/synchronization/ArgumentTypeInfo; +MD: net/minecraft/commands/arguments/ScoreHolderArgument$Info$Template/m_213879_ (Lnet/minecraft/commands/CommandBuildContext;)Lcom/mojang/brigadier/arguments/ArgumentType; net/minecraft/commands/arguments/ScoreHolderArgument$Info$Template/instantiate (Lnet/minecraft/commands/CommandBuildContext;)Lcom/mojang/brigadier/arguments/ArgumentType; +MD: net/minecraft/commands/arguments/ScoreHolderArgument$Info$Template/m_213879_ (Lnet/minecraft/commands/CommandBuildContext;)Lnet/minecraft/commands/arguments/ScoreHolderArgument; net/minecraft/commands/arguments/ScoreHolderArgument$Info$Template/instantiate (Lnet/minecraft/commands/CommandBuildContext;)Lnet/minecraft/commands/arguments/ScoreHolderArgument; +MD: net/minecraft/commands/arguments/ScoreHolderArgument$Result/m_6582_ (Lnet/minecraft/commands/CommandSourceStack;Ljava/util/function/Supplier;)Ljava/util/Collection; net/minecraft/commands/arguments/ScoreHolderArgument$Result/getNames (Lnet/minecraft/commands/CommandSourceStack;Ljava/util/function/Supplier;)Ljava/util/Collection; +MD: net/minecraft/commands/arguments/ScoreHolderArgument$SelectorResult/ (Lnet/minecraft/commands/arguments/selector/EntitySelector;)V net/minecraft/commands/arguments/ScoreHolderArgument$SelectorResult/ (Lnet/minecraft/commands/arguments/selector/EntitySelector;)V +MD: net/minecraft/commands/arguments/ScoreHolderArgument$SelectorResult/m_6582_ (Lnet/minecraft/commands/CommandSourceStack;Ljava/util/function/Supplier;)Ljava/util/Collection; net/minecraft/commands/arguments/ScoreHolderArgument$SelectorResult/getNames (Lnet/minecraft/commands/CommandSourceStack;Ljava/util/function/Supplier;)Ljava/util/Collection; +MD: net/minecraft/commands/arguments/ScoreboardSlotArgument/ ()V net/minecraft/commands/arguments/ScoreboardSlotArgument/ ()V +MD: net/minecraft/commands/arguments/ScoreboardSlotArgument/ ()V net/minecraft/commands/arguments/ScoreboardSlotArgument/ ()V +MD: net/minecraft/commands/arguments/ScoreboardSlotArgument/getExamples ()Ljava/util/Collection; net/minecraft/commands/arguments/ScoreboardSlotArgument/getExamples ()Ljava/util/Collection; +MD: net/minecraft/commands/arguments/ScoreboardSlotArgument/listSuggestions (Lcom/mojang/brigadier/context/CommandContext;Lcom/mojang/brigadier/suggestion/SuggestionsBuilder;)Ljava/util/concurrent/CompletableFuture; net/minecraft/commands/arguments/ScoreboardSlotArgument/listSuggestions (Lcom/mojang/brigadier/context/CommandContext;Lcom/mojang/brigadier/suggestion/SuggestionsBuilder;)Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/commands/arguments/ScoreboardSlotArgument/m_109196_ ()Lnet/minecraft/commands/arguments/ScoreboardSlotArgument; net/minecraft/commands/arguments/ScoreboardSlotArgument/displaySlot ()Lnet/minecraft/commands/arguments/ScoreboardSlotArgument; +MD: net/minecraft/commands/arguments/ScoreboardSlotArgument/m_109199_ (Lcom/mojang/brigadier/context/CommandContext;Ljava/lang/String;)I net/minecraft/commands/arguments/ScoreboardSlotArgument/getDisplaySlot (Lcom/mojang/brigadier/context/CommandContext;Ljava/lang/String;)I +MD: net/minecraft/commands/arguments/ScoreboardSlotArgument/m_109202_ (Ljava/lang/Object;)Lcom/mojang/brigadier/Message; net/minecraft/commands/arguments/ScoreboardSlotArgument/lambda$static$0 (Ljava/lang/Object;)Lcom/mojang/brigadier/Message; +MD: net/minecraft/commands/arguments/ScoreboardSlotArgument/parse (Lcom/mojang/brigadier/StringReader;)Ljava/lang/Object; net/minecraft/commands/arguments/ScoreboardSlotArgument/parse (Lcom/mojang/brigadier/StringReader;)Ljava/lang/Object; +MD: net/minecraft/commands/arguments/ScoreboardSlotArgument/parse (Lcom/mojang/brigadier/StringReader;)Ljava/lang/Integer; net/minecraft/commands/arguments/ScoreboardSlotArgument/parse (Lcom/mojang/brigadier/StringReader;)Ljava/lang/Integer; +MD: net/minecraft/commands/arguments/SlotArgument/ ()V net/minecraft/commands/arguments/SlotArgument/ ()V +MD: net/minecraft/commands/arguments/SlotArgument/ ()V net/minecraft/commands/arguments/SlotArgument/ ()V +MD: net/minecraft/commands/arguments/SlotArgument/getExamples ()Ljava/util/Collection; net/minecraft/commands/arguments/SlotArgument/getExamples ()Ljava/util/Collection; +MD: net/minecraft/commands/arguments/SlotArgument/listSuggestions (Lcom/mojang/brigadier/context/CommandContext;Lcom/mojang/brigadier/suggestion/SuggestionsBuilder;)Ljava/util/concurrent/CompletableFuture; net/minecraft/commands/arguments/SlotArgument/listSuggestions (Lcom/mojang/brigadier/context/CommandContext;Lcom/mojang/brigadier/suggestion/SuggestionsBuilder;)Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/commands/arguments/SlotArgument/m_111276_ ()Lnet/minecraft/commands/arguments/SlotArgument; net/minecraft/commands/arguments/SlotArgument/slot ()Lnet/minecraft/commands/arguments/SlotArgument; +MD: net/minecraft/commands/arguments/SlotArgument/m_111279_ (Lcom/mojang/brigadier/context/CommandContext;Ljava/lang/String;)I net/minecraft/commands/arguments/SlotArgument/getSlot (Lcom/mojang/brigadier/context/CommandContext;Ljava/lang/String;)I +MD: net/minecraft/commands/arguments/SlotArgument/m_111282_ (Ljava/lang/Object;)Lcom/mojang/brigadier/Message; net/minecraft/commands/arguments/SlotArgument/lambda$static$0 (Ljava/lang/Object;)Lcom/mojang/brigadier/Message; +MD: net/minecraft/commands/arguments/SlotArgument/m_111284_ (Ljava/util/HashMap;)V net/minecraft/commands/arguments/SlotArgument/lambda$static$1 (Ljava/util/HashMap;)V +MD: net/minecraft/commands/arguments/SlotArgument/parse (Lcom/mojang/brigadier/StringReader;)Ljava/lang/Object; net/minecraft/commands/arguments/SlotArgument/parse (Lcom/mojang/brigadier/StringReader;)Ljava/lang/Object; +MD: net/minecraft/commands/arguments/SlotArgument/parse (Lcom/mojang/brigadier/StringReader;)Ljava/lang/Integer; net/minecraft/commands/arguments/SlotArgument/parse (Lcom/mojang/brigadier/StringReader;)Ljava/lang/Integer; +MD: net/minecraft/commands/arguments/StringRepresentableArgument/ ()V net/minecraft/commands/arguments/StringRepresentableArgument/ ()V +MD: net/minecraft/commands/arguments/StringRepresentableArgument/ (Lcom/mojang/serialization/Codec;Ljava/util/function/Supplier;)V net/minecraft/commands/arguments/StringRepresentableArgument/ (Lcom/mojang/serialization/Codec;Ljava/util/function/Supplier;)V +MD: net/minecraft/commands/arguments/StringRepresentableArgument/getExamples ()Ljava/util/Collection; net/minecraft/commands/arguments/StringRepresentableArgument/getExamples ()Ljava/util/Collection; +MD: net/minecraft/commands/arguments/StringRepresentableArgument/listSuggestions (Lcom/mojang/brigadier/context/CommandContext;Lcom/mojang/brigadier/suggestion/SuggestionsBuilder;)Ljava/util/concurrent/CompletableFuture; net/minecraft/commands/arguments/StringRepresentableArgument/listSuggestions (Lcom/mojang/brigadier/context/CommandContext;Lcom/mojang/brigadier/suggestion/SuggestionsBuilder;)Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/commands/arguments/StringRepresentableArgument/m_234064_ (Ljava/lang/Object;)Ljava/lang/String; net/minecraft/commands/arguments/StringRepresentableArgument/lambda$getExamples$3 (Ljava/lang/Object;)Ljava/lang/String; +MD: net/minecraft/commands/arguments/StringRepresentableArgument/m_234066_ (Ljava/lang/String;)Lcom/mojang/brigadier/exceptions/CommandSyntaxException; net/minecraft/commands/arguments/StringRepresentableArgument/lambda$parse$1 (Ljava/lang/String;)Lcom/mojang/brigadier/exceptions/CommandSyntaxException; +MD: net/minecraft/commands/arguments/StringRepresentableArgument/m_234068_ (Ljava/lang/Object;)Ljava/lang/String; net/minecraft/commands/arguments/StringRepresentableArgument/lambda$listSuggestions$2 (Ljava/lang/Object;)Ljava/lang/String; +MD: net/minecraft/commands/arguments/StringRepresentableArgument/m_234070_ (Ljava/lang/Object;)Lcom/mojang/brigadier/Message; net/minecraft/commands/arguments/StringRepresentableArgument/lambda$static$0 (Ljava/lang/Object;)Lcom/mojang/brigadier/Message; +MD: net/minecraft/commands/arguments/StringRepresentableArgument/m_274434_ (Ljava/lang/String;)Ljava/lang/String; net/minecraft/commands/arguments/StringRepresentableArgument/convertId (Ljava/lang/String;)Ljava/lang/String; +MD: net/minecraft/commands/arguments/StringRepresentableArgument/parse (Lcom/mojang/brigadier/StringReader;)Ljava/lang/Object; net/minecraft/commands/arguments/StringRepresentableArgument/parse (Lcom/mojang/brigadier/StringReader;)Ljava/lang/Object; +MD: net/minecraft/commands/arguments/StringRepresentableArgument/parse (Lcom/mojang/brigadier/StringReader;)Ljava/lang/Enum; net/minecraft/commands/arguments/StringRepresentableArgument/parse (Lcom/mojang/brigadier/StringReader;)Ljava/lang/Enum; +MD: net/minecraft/commands/arguments/TeamArgument/ ()V net/minecraft/commands/arguments/TeamArgument/ ()V +MD: net/minecraft/commands/arguments/TeamArgument/ ()V net/minecraft/commands/arguments/TeamArgument/ ()V +MD: net/minecraft/commands/arguments/TeamArgument/getExamples ()Ljava/util/Collection; net/minecraft/commands/arguments/TeamArgument/getExamples ()Ljava/util/Collection; +MD: net/minecraft/commands/arguments/TeamArgument/listSuggestions (Lcom/mojang/brigadier/context/CommandContext;Lcom/mojang/brigadier/suggestion/SuggestionsBuilder;)Ljava/util/concurrent/CompletableFuture; net/minecraft/commands/arguments/TeamArgument/listSuggestions (Lcom/mojang/brigadier/context/CommandContext;Lcom/mojang/brigadier/suggestion/SuggestionsBuilder;)Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/commands/arguments/TeamArgument/m_112088_ ()Lnet/minecraft/commands/arguments/TeamArgument; net/minecraft/commands/arguments/TeamArgument/team ()Lnet/minecraft/commands/arguments/TeamArgument; +MD: net/minecraft/commands/arguments/TeamArgument/m_112091_ (Lcom/mojang/brigadier/context/CommandContext;Ljava/lang/String;)Lnet/minecraft/world/scores/PlayerTeam; net/minecraft/commands/arguments/TeamArgument/getTeam (Lcom/mojang/brigadier/context/CommandContext;Ljava/lang/String;)Lnet/minecraft/world/scores/PlayerTeam; +MD: net/minecraft/commands/arguments/TeamArgument/m_112094_ (Ljava/lang/Object;)Lcom/mojang/brigadier/Message; net/minecraft/commands/arguments/TeamArgument/lambda$static$0 (Ljava/lang/Object;)Lcom/mojang/brigadier/Message; +MD: net/minecraft/commands/arguments/TeamArgument/parse (Lcom/mojang/brigadier/StringReader;)Ljava/lang/Object; net/minecraft/commands/arguments/TeamArgument/parse (Lcom/mojang/brigadier/StringReader;)Ljava/lang/Object; +MD: net/minecraft/commands/arguments/TeamArgument/parse (Lcom/mojang/brigadier/StringReader;)Ljava/lang/String; net/minecraft/commands/arguments/TeamArgument/parse (Lcom/mojang/brigadier/StringReader;)Ljava/lang/String; +MD: net/minecraft/commands/arguments/TemplateMirrorArgument/ ()V net/minecraft/commands/arguments/TemplateMirrorArgument/ ()V +MD: net/minecraft/commands/arguments/TemplateMirrorArgument/m_234343_ ()Lnet/minecraft/commands/arguments/StringRepresentableArgument; net/minecraft/commands/arguments/TemplateMirrorArgument/templateMirror ()Lnet/minecraft/commands/arguments/StringRepresentableArgument; +MD: net/minecraft/commands/arguments/TemplateMirrorArgument/m_234344_ (Lcom/mojang/brigadier/context/CommandContext;Ljava/lang/String;)Lnet/minecraft/world/level/block/Mirror; net/minecraft/commands/arguments/TemplateMirrorArgument/getMirror (Lcom/mojang/brigadier/context/CommandContext;Ljava/lang/String;)Lnet/minecraft/world/level/block/Mirror; +MD: net/minecraft/commands/arguments/TemplateRotationArgument/ ()V net/minecraft/commands/arguments/TemplateRotationArgument/ ()V +MD: net/minecraft/commands/arguments/TemplateRotationArgument/m_234414_ ()Lnet/minecraft/commands/arguments/TemplateRotationArgument; net/minecraft/commands/arguments/TemplateRotationArgument/templateRotation ()Lnet/minecraft/commands/arguments/TemplateRotationArgument; +MD: net/minecraft/commands/arguments/TemplateRotationArgument/m_234415_ (Lcom/mojang/brigadier/context/CommandContext;Ljava/lang/String;)Lnet/minecraft/world/level/block/Rotation; net/minecraft/commands/arguments/TemplateRotationArgument/getRotation (Lcom/mojang/brigadier/context/CommandContext;Ljava/lang/String;)Lnet/minecraft/world/level/block/Rotation; +MD: net/minecraft/commands/arguments/TimeArgument/ ()V net/minecraft/commands/arguments/TimeArgument/ ()V +MD: net/minecraft/commands/arguments/TimeArgument/ (I)V net/minecraft/commands/arguments/TimeArgument/ (I)V +MD: net/minecraft/commands/arguments/TimeArgument/getExamples ()Ljava/util/Collection; net/minecraft/commands/arguments/TimeArgument/getExamples ()Ljava/util/Collection; +MD: net/minecraft/commands/arguments/TimeArgument/listSuggestions (Lcom/mojang/brigadier/context/CommandContext;Lcom/mojang/brigadier/suggestion/SuggestionsBuilder;)Ljava/util/concurrent/CompletableFuture; net/minecraft/commands/arguments/TimeArgument/listSuggestions (Lcom/mojang/brigadier/context/CommandContext;Lcom/mojang/brigadier/suggestion/SuggestionsBuilder;)Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/commands/arguments/TimeArgument/m_113037_ ()Lnet/minecraft/commands/arguments/TimeArgument; net/minecraft/commands/arguments/TimeArgument/time ()Lnet/minecraft/commands/arguments/TimeArgument; +MD: net/minecraft/commands/arguments/TimeArgument/m_263894_ (Ljava/lang/Object;Ljava/lang/Object;)Lcom/mojang/brigadier/Message; net/minecraft/commands/arguments/TimeArgument/lambda$static$0 (Ljava/lang/Object;Ljava/lang/Object;)Lcom/mojang/brigadier/Message; +MD: net/minecraft/commands/arguments/TimeArgument/m_264474_ (I)Lnet/minecraft/commands/arguments/TimeArgument; net/minecraft/commands/arguments/TimeArgument/time (I)Lnet/minecraft/commands/arguments/TimeArgument; +MD: net/minecraft/commands/arguments/TimeArgument/parse (Lcom/mojang/brigadier/StringReader;)Ljava/lang/Object; net/minecraft/commands/arguments/TimeArgument/parse (Lcom/mojang/brigadier/StringReader;)Ljava/lang/Object; +MD: net/minecraft/commands/arguments/TimeArgument/parse (Lcom/mojang/brigadier/StringReader;)Ljava/lang/Integer; net/minecraft/commands/arguments/TimeArgument/parse (Lcom/mojang/brigadier/StringReader;)Ljava/lang/Integer; +MD: net/minecraft/commands/arguments/TimeArgument$Info/ ()V net/minecraft/commands/arguments/TimeArgument$Info/ ()V +MD: net/minecraft/commands/arguments/TimeArgument$Info/m_213618_ (Lnet/minecraft/network/FriendlyByteBuf;)Lnet/minecraft/commands/synchronization/ArgumentTypeInfo$Template; net/minecraft/commands/arguments/TimeArgument$Info/deserializeFromNetwork (Lnet/minecraft/network/FriendlyByteBuf;)Lnet/minecraft/commands/synchronization/ArgumentTypeInfo$Template; +MD: net/minecraft/commands/arguments/TimeArgument$Info/m_213618_ (Lnet/minecraft/network/FriendlyByteBuf;)Lnet/minecraft/commands/arguments/TimeArgument$Info$Template; net/minecraft/commands/arguments/TimeArgument$Info/deserializeFromNetwork (Lnet/minecraft/network/FriendlyByteBuf;)Lnet/minecraft/commands/arguments/TimeArgument$Info$Template; +MD: net/minecraft/commands/arguments/TimeArgument$Info/m_213719_ (Lnet/minecraft/commands/synchronization/ArgumentTypeInfo$Template;Lcom/google/gson/JsonObject;)V net/minecraft/commands/arguments/TimeArgument$Info/serializeToJson (Lnet/minecraft/commands/synchronization/ArgumentTypeInfo$Template;Lcom/google/gson/JsonObject;)V +MD: net/minecraft/commands/arguments/TimeArgument$Info/m_213719_ (Lnet/minecraft/commands/arguments/TimeArgument$Info$Template;Lcom/google/gson/JsonObject;)V net/minecraft/commands/arguments/TimeArgument$Info/serializeToJson (Lnet/minecraft/commands/arguments/TimeArgument$Info$Template;Lcom/google/gson/JsonObject;)V +MD: net/minecraft/commands/arguments/TimeArgument$Info/m_214155_ (Lnet/minecraft/commands/arguments/TimeArgument$Info$Template;Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/commands/arguments/TimeArgument$Info/serializeToNetwork (Lnet/minecraft/commands/arguments/TimeArgument$Info$Template;Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/commands/arguments/TimeArgument$Info/m_214155_ (Lnet/minecraft/commands/synchronization/ArgumentTypeInfo$Template;Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/commands/arguments/TimeArgument$Info/serializeToNetwork (Lnet/minecraft/commands/synchronization/ArgumentTypeInfo$Template;Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/commands/arguments/TimeArgument$Info/m_214163_ (Lnet/minecraft/commands/arguments/TimeArgument;)Lnet/minecraft/commands/arguments/TimeArgument$Info$Template; net/minecraft/commands/arguments/TimeArgument$Info/unpack (Lnet/minecraft/commands/arguments/TimeArgument;)Lnet/minecraft/commands/arguments/TimeArgument$Info$Template; +MD: net/minecraft/commands/arguments/TimeArgument$Info/m_214163_ (Lcom/mojang/brigadier/arguments/ArgumentType;)Lnet/minecraft/commands/synchronization/ArgumentTypeInfo$Template; net/minecraft/commands/arguments/TimeArgument$Info/unpack (Lcom/mojang/brigadier/arguments/ArgumentType;)Lnet/minecraft/commands/synchronization/ArgumentTypeInfo$Template; +MD: net/minecraft/commands/arguments/TimeArgument$Info$Template/ (Lnet/minecraft/commands/arguments/TimeArgument$Info;I)V net/minecraft/commands/arguments/TimeArgument$Info$Template/ (Lnet/minecraft/commands/arguments/TimeArgument$Info;I)V +MD: net/minecraft/commands/arguments/TimeArgument$Info$Template/m_213709_ ()Lnet/minecraft/commands/synchronization/ArgumentTypeInfo; net/minecraft/commands/arguments/TimeArgument$Info$Template/type ()Lnet/minecraft/commands/synchronization/ArgumentTypeInfo; +MD: net/minecraft/commands/arguments/TimeArgument$Info$Template/m_213879_ (Lnet/minecraft/commands/CommandBuildContext;)Lnet/minecraft/commands/arguments/TimeArgument; net/minecraft/commands/arguments/TimeArgument$Info$Template/instantiate (Lnet/minecraft/commands/CommandBuildContext;)Lnet/minecraft/commands/arguments/TimeArgument; +MD: net/minecraft/commands/arguments/TimeArgument$Info$Template/m_213879_ (Lnet/minecraft/commands/CommandBuildContext;)Lcom/mojang/brigadier/arguments/ArgumentType; net/minecraft/commands/arguments/TimeArgument$Info$Template/instantiate (Lnet/minecraft/commands/CommandBuildContext;)Lcom/mojang/brigadier/arguments/ArgumentType; +MD: net/minecraft/commands/arguments/UuidArgument/ ()V net/minecraft/commands/arguments/UuidArgument/ ()V +MD: net/minecraft/commands/arguments/UuidArgument/ ()V net/minecraft/commands/arguments/UuidArgument/ ()V +MD: net/minecraft/commands/arguments/UuidArgument/getExamples ()Ljava/util/Collection; net/minecraft/commands/arguments/UuidArgument/getExamples ()Ljava/util/Collection; +MD: net/minecraft/commands/arguments/UuidArgument/m_113850_ ()Lnet/minecraft/commands/arguments/UuidArgument; net/minecraft/commands/arguments/UuidArgument/uuid ()Lnet/minecraft/commands/arguments/UuidArgument; +MD: net/minecraft/commands/arguments/UuidArgument/m_113853_ (Lcom/mojang/brigadier/context/CommandContext;Ljava/lang/String;)Ljava/util/UUID; net/minecraft/commands/arguments/UuidArgument/getUuid (Lcom/mojang/brigadier/context/CommandContext;Ljava/lang/String;)Ljava/util/UUID; +MD: net/minecraft/commands/arguments/UuidArgument/parse (Lcom/mojang/brigadier/StringReader;)Ljava/lang/Object; net/minecraft/commands/arguments/UuidArgument/parse (Lcom/mojang/brigadier/StringReader;)Ljava/lang/Object; +MD: net/minecraft/commands/arguments/UuidArgument/parse (Lcom/mojang/brigadier/StringReader;)Ljava/util/UUID; net/minecraft/commands/arguments/UuidArgument/parse (Lcom/mojang/brigadier/StringReader;)Ljava/util/UUID; +MD: net/minecraft/commands/arguments/blocks/BlockInput/ (Lnet/minecraft/world/level/block/state/BlockState;Ljava/util/Set;Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/commands/arguments/blocks/BlockInput/ (Lnet/minecraft/world/level/block/state/BlockState;Ljava/util/Set;Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/commands/arguments/blocks/BlockInput/m_114669_ ()Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/commands/arguments/blocks/BlockInput/getState ()Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/commands/arguments/blocks/BlockInput/m_114670_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;I)Z net/minecraft/commands/arguments/blocks/BlockInput/place (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;I)Z +MD: net/minecraft/commands/arguments/blocks/BlockInput/m_173523_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;)Z net/minecraft/commands/arguments/blocks/BlockInput/test (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/commands/arguments/blocks/BlockInput/m_173526_ ()Ljava/util/Set; net/minecraft/commands/arguments/blocks/BlockInput/getDefinedProperties ()Ljava/util/Set; +MD: net/minecraft/commands/arguments/blocks/BlockInput/test (Ljava/lang/Object;)Z net/minecraft/commands/arguments/blocks/BlockInput/test (Ljava/lang/Object;)Z +MD: net/minecraft/commands/arguments/blocks/BlockInput/test (Lnet/minecraft/world/level/block/state/pattern/BlockInWorld;)Z net/minecraft/commands/arguments/blocks/BlockInput/test (Lnet/minecraft/world/level/block/state/pattern/BlockInWorld;)Z +MD: net/minecraft/commands/arguments/blocks/BlockPredicateArgument/ ()V net/minecraft/commands/arguments/blocks/BlockPredicateArgument/ ()V +MD: net/minecraft/commands/arguments/blocks/BlockPredicateArgument/ (Lnet/minecraft/commands/CommandBuildContext;)V net/minecraft/commands/arguments/blocks/BlockPredicateArgument/ (Lnet/minecraft/commands/CommandBuildContext;)V +MD: net/minecraft/commands/arguments/blocks/BlockPredicateArgument/getExamples ()Ljava/util/Collection; net/minecraft/commands/arguments/blocks/BlockPredicateArgument/getExamples ()Ljava/util/Collection; +MD: net/minecraft/commands/arguments/blocks/BlockPredicateArgument/listSuggestions (Lcom/mojang/brigadier/context/CommandContext;Lcom/mojang/brigadier/suggestion/SuggestionsBuilder;)Ljava/util/concurrent/CompletableFuture; net/minecraft/commands/arguments/blocks/BlockPredicateArgument/listSuggestions (Lcom/mojang/brigadier/context/CommandContext;Lcom/mojang/brigadier/suggestion/SuggestionsBuilder;)Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/commands/arguments/blocks/BlockPredicateArgument/m_115573_ (Lcom/mojang/brigadier/context/CommandContext;Ljava/lang/String;)Ljava/util/function/Predicate; net/minecraft/commands/arguments/blocks/BlockPredicateArgument/getBlockPredicate (Lcom/mojang/brigadier/context/CommandContext;Ljava/lang/String;)Ljava/util/function/Predicate; +MD: net/minecraft/commands/arguments/blocks/BlockPredicateArgument/m_234627_ (Lnet/minecraft/commands/CommandBuildContext;)Lnet/minecraft/commands/arguments/blocks/BlockPredicateArgument; net/minecraft/commands/arguments/blocks/BlockPredicateArgument/blockPredicate (Lnet/minecraft/commands/CommandBuildContext;)Lnet/minecraft/commands/arguments/blocks/BlockPredicateArgument; +MD: net/minecraft/commands/arguments/blocks/BlockPredicateArgument/m_234629_ (Lnet/minecraft/commands/arguments/blocks/BlockStateParser$BlockResult;)Lnet/minecraft/commands/arguments/blocks/BlockPredicateArgument$Result; net/minecraft/commands/arguments/blocks/BlockPredicateArgument/lambda$parse$0 (Lnet/minecraft/commands/arguments/blocks/BlockStateParser$BlockResult;)Lnet/minecraft/commands/arguments/blocks/BlockPredicateArgument$Result; +MD: net/minecraft/commands/arguments/blocks/BlockPredicateArgument/m_234631_ (Lnet/minecraft/commands/arguments/blocks/BlockStateParser$TagResult;)Lnet/minecraft/commands/arguments/blocks/BlockPredicateArgument$Result; net/minecraft/commands/arguments/blocks/BlockPredicateArgument/lambda$parse$1 (Lnet/minecraft/commands/arguments/blocks/BlockStateParser$TagResult;)Lnet/minecraft/commands/arguments/blocks/BlockPredicateArgument$Result; +MD: net/minecraft/commands/arguments/blocks/BlockPredicateArgument/m_234633_ (Lnet/minecraft/core/HolderLookup;Lcom/mojang/brigadier/StringReader;)Lnet/minecraft/commands/arguments/blocks/BlockPredicateArgument$Result; net/minecraft/commands/arguments/blocks/BlockPredicateArgument/parse (Lnet/minecraft/core/HolderLookup;Lcom/mojang/brigadier/StringReader;)Lnet/minecraft/commands/arguments/blocks/BlockPredicateArgument$Result; +MD: net/minecraft/commands/arguments/blocks/BlockPredicateArgument/parse (Lcom/mojang/brigadier/StringReader;)Lnet/minecraft/commands/arguments/blocks/BlockPredicateArgument$Result; net/minecraft/commands/arguments/blocks/BlockPredicateArgument/parse (Lcom/mojang/brigadier/StringReader;)Lnet/minecraft/commands/arguments/blocks/BlockPredicateArgument$Result; +MD: net/minecraft/commands/arguments/blocks/BlockPredicateArgument/parse (Lcom/mojang/brigadier/StringReader;)Ljava/lang/Object; net/minecraft/commands/arguments/blocks/BlockPredicateArgument/parse (Lcom/mojang/brigadier/StringReader;)Ljava/lang/Object; +MD: net/minecraft/commands/arguments/blocks/BlockPredicateArgument$BlockPredicate/ (Lnet/minecraft/world/level/block/state/BlockState;Ljava/util/Set;Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/commands/arguments/blocks/BlockPredicateArgument$BlockPredicate/ (Lnet/minecraft/world/level/block/state/BlockState;Ljava/util/Set;Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/commands/arguments/blocks/BlockPredicateArgument$BlockPredicate/m_183631_ ()Z net/minecraft/commands/arguments/blocks/BlockPredicateArgument$BlockPredicate/requiresNbt ()Z +MD: net/minecraft/commands/arguments/blocks/BlockPredicateArgument$BlockPredicate/test (Ljava/lang/Object;)Z net/minecraft/commands/arguments/blocks/BlockPredicateArgument$BlockPredicate/test (Ljava/lang/Object;)Z +MD: net/minecraft/commands/arguments/blocks/BlockPredicateArgument$BlockPredicate/test (Lnet/minecraft/world/level/block/state/pattern/BlockInWorld;)Z net/minecraft/commands/arguments/blocks/BlockPredicateArgument$BlockPredicate/test (Lnet/minecraft/world/level/block/state/pattern/BlockInWorld;)Z +MD: net/minecraft/commands/arguments/blocks/BlockPredicateArgument$Result/m_183631_ ()Z net/minecraft/commands/arguments/blocks/BlockPredicateArgument$Result/requiresNbt ()Z +MD: net/minecraft/commands/arguments/blocks/BlockPredicateArgument$TagPredicate/ (Lnet/minecraft/core/HolderSet;Ljava/util/Map;Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/commands/arguments/blocks/BlockPredicateArgument$TagPredicate/ (Lnet/minecraft/core/HolderSet;Ljava/util/Map;Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/commands/arguments/blocks/BlockPredicateArgument$TagPredicate/m_183631_ ()Z net/minecraft/commands/arguments/blocks/BlockPredicateArgument$TagPredicate/requiresNbt ()Z +MD: net/minecraft/commands/arguments/blocks/BlockPredicateArgument$TagPredicate/test (Ljava/lang/Object;)Z net/minecraft/commands/arguments/blocks/BlockPredicateArgument$TagPredicate/test (Ljava/lang/Object;)Z +MD: net/minecraft/commands/arguments/blocks/BlockPredicateArgument$TagPredicate/test (Lnet/minecraft/world/level/block/state/pattern/BlockInWorld;)Z net/minecraft/commands/arguments/blocks/BlockPredicateArgument$TagPredicate/test (Lnet/minecraft/world/level/block/state/pattern/BlockInWorld;)Z +MD: net/minecraft/commands/arguments/blocks/BlockStateArgument/ ()V net/minecraft/commands/arguments/blocks/BlockStateArgument/ ()V +MD: net/minecraft/commands/arguments/blocks/BlockStateArgument/ (Lnet/minecraft/commands/CommandBuildContext;)V net/minecraft/commands/arguments/blocks/BlockStateArgument/ (Lnet/minecraft/commands/CommandBuildContext;)V +MD: net/minecraft/commands/arguments/blocks/BlockStateArgument/getExamples ()Ljava/util/Collection; net/minecraft/commands/arguments/blocks/BlockStateArgument/getExamples ()Ljava/util/Collection; +MD: net/minecraft/commands/arguments/blocks/BlockStateArgument/listSuggestions (Lcom/mojang/brigadier/context/CommandContext;Lcom/mojang/brigadier/suggestion/SuggestionsBuilder;)Ljava/util/concurrent/CompletableFuture; net/minecraft/commands/arguments/blocks/BlockStateArgument/listSuggestions (Lcom/mojang/brigadier/context/CommandContext;Lcom/mojang/brigadier/suggestion/SuggestionsBuilder;)Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/commands/arguments/blocks/BlockStateArgument/m_116123_ (Lcom/mojang/brigadier/context/CommandContext;Ljava/lang/String;)Lnet/minecraft/commands/arguments/blocks/BlockInput; net/minecraft/commands/arguments/blocks/BlockStateArgument/getBlock (Lcom/mojang/brigadier/context/CommandContext;Ljava/lang/String;)Lnet/minecraft/commands/arguments/blocks/BlockInput; +MD: net/minecraft/commands/arguments/blocks/BlockStateArgument/m_234650_ (Lnet/minecraft/commands/CommandBuildContext;)Lnet/minecraft/commands/arguments/blocks/BlockStateArgument; net/minecraft/commands/arguments/blocks/BlockStateArgument/block (Lnet/minecraft/commands/CommandBuildContext;)Lnet/minecraft/commands/arguments/blocks/BlockStateArgument; +MD: net/minecraft/commands/arguments/blocks/BlockStateArgument/parse (Lcom/mojang/brigadier/StringReader;)Ljava/lang/Object; net/minecraft/commands/arguments/blocks/BlockStateArgument/parse (Lcom/mojang/brigadier/StringReader;)Ljava/lang/Object; +MD: net/minecraft/commands/arguments/blocks/BlockStateArgument/parse (Lcom/mojang/brigadier/StringReader;)Lnet/minecraft/commands/arguments/blocks/BlockInput; net/minecraft/commands/arguments/blocks/BlockStateArgument/parse (Lcom/mojang/brigadier/StringReader;)Lnet/minecraft/commands/arguments/blocks/BlockInput; +MD: net/minecraft/commands/arguments/blocks/BlockStateParser/ ()V net/minecraft/commands/arguments/blocks/BlockStateParser/ ()V +MD: net/minecraft/commands/arguments/blocks/BlockStateParser/ (Lnet/minecraft/core/HolderLookup;Lcom/mojang/brigadier/StringReader;ZZ)V net/minecraft/commands/arguments/blocks/BlockStateParser/ (Lnet/minecraft/core/HolderLookup;Lcom/mojang/brigadier/StringReader;ZZ)V +MD: net/minecraft/commands/arguments/blocks/BlockStateParser/m_116765_ (I)Lcom/mojang/brigadier/exceptions/CommandSyntaxException; net/minecraft/commands/arguments/blocks/BlockStateParser/lambda$readBlock$6 (I)Lcom/mojang/brigadier/exceptions/CommandSyntaxException; +MD: net/minecraft/commands/arguments/blocks/BlockStateParser/m_116769_ (Lnet/minecraft/world/level/block/state/BlockState;)Ljava/lang/String; net/minecraft/commands/arguments/blocks/BlockStateParser/serialize (Lnet/minecraft/world/level/block/state/BlockState;)Ljava/lang/String; +MD: net/minecraft/commands/arguments/blocks/BlockStateParser/m_116775_ (Lnet/minecraft/world/level/block/state/properties/Property;Ljava/lang/String;I)V net/minecraft/commands/arguments/blocks/BlockStateParser/setValue (Lnet/minecraft/world/level/block/state/properties/Property;Ljava/lang/String;I)V +MD: net/minecraft/commands/arguments/blocks/BlockStateParser/m_116786_ (Lcom/mojang/brigadier/suggestion/SuggestionsBuilder;Lnet/minecraft/world/level/block/state/properties/Property;)Lcom/mojang/brigadier/suggestion/SuggestionsBuilder; net/minecraft/commands/arguments/blocks/BlockStateParser/addSuggestions (Lcom/mojang/brigadier/suggestion/SuggestionsBuilder;Lnet/minecraft/world/level/block/state/properties/Property;)Lcom/mojang/brigadier/suggestion/SuggestionsBuilder; +MD: net/minecraft/commands/arguments/blocks/BlockStateParser/m_116789_ (Ljava/lang/Object;)Lcom/mojang/brigadier/Message; net/minecraft/commands/arguments/blocks/BlockStateParser/lambda$static$0 (Ljava/lang/Object;)Lcom/mojang/brigadier/Message; +MD: net/minecraft/commands/arguments/blocks/BlockStateParser/m_116791_ (Ljava/lang/Object;Ljava/lang/Object;)Lcom/mojang/brigadier/Message; net/minecraft/commands/arguments/blocks/BlockStateParser/lambda$static$4 (Ljava/lang/Object;Ljava/lang/Object;)Lcom/mojang/brigadier/Message; +MD: net/minecraft/commands/arguments/blocks/BlockStateParser/m_116794_ (Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;)Lcom/mojang/brigadier/Message; net/minecraft/commands/arguments/blocks/BlockStateParser/lambda$static$3 (Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;)Lcom/mojang/brigadier/Message; +MD: net/minecraft/commands/arguments/blocks/BlockStateParser/m_116802_ (Ljava/lang/StringBuilder;Lnet/minecraft/world/level/block/state/properties/Property;Ljava/lang/Comparable;)V net/minecraft/commands/arguments/blocks/BlockStateParser/appendProperty (Ljava/lang/StringBuilder;Lnet/minecraft/world/level/block/state/properties/Property;Ljava/lang/Comparable;)V +MD: net/minecraft/commands/arguments/blocks/BlockStateParser/m_116812_ (Ljava/lang/Object;Ljava/lang/Object;)Lcom/mojang/brigadier/Message; net/minecraft/commands/arguments/blocks/BlockStateParser/lambda$static$2 (Ljava/lang/Object;Ljava/lang/Object;)Lcom/mojang/brigadier/Message; +MD: net/minecraft/commands/arguments/blocks/BlockStateParser/m_116819_ (Ljava/lang/Object;Ljava/lang/Object;)Lcom/mojang/brigadier/Message; net/minecraft/commands/arguments/blocks/BlockStateParser/lambda$static$1 (Ljava/lang/Object;Ljava/lang/Object;)Lcom/mojang/brigadier/Message; +MD: net/minecraft/commands/arguments/blocks/BlockStateParser/m_116826_ ()V net/minecraft/commands/arguments/blocks/BlockStateParser/readBlock ()V +MD: net/minecraft/commands/arguments/blocks/BlockStateParser/m_116830_ ()V net/minecraft/commands/arguments/blocks/BlockStateParser/readTag ()V +MD: net/minecraft/commands/arguments/blocks/BlockStateParser/m_116834_ ()V net/minecraft/commands/arguments/blocks/BlockStateParser/readProperties ()V +MD: net/minecraft/commands/arguments/blocks/BlockStateParser/m_116838_ ()V net/minecraft/commands/arguments/blocks/BlockStateParser/readVagueProperties ()V +MD: net/minecraft/commands/arguments/blocks/BlockStateParser/m_116842_ ()V net/minecraft/commands/arguments/blocks/BlockStateParser/readNbt ()V +MD: net/minecraft/commands/arguments/blocks/BlockStateParser/m_234677_ ()V net/minecraft/commands/arguments/blocks/BlockStateParser/parse ()V +MD: net/minecraft/commands/arguments/blocks/BlockStateParser/m_234678_ (ILnet/minecraft/resources/ResourceLocation;)Lcom/mojang/brigadier/exceptions/CommandSyntaxException; net/minecraft/commands/arguments/blocks/BlockStateParser/lambda$readTag$7 (ILnet/minecraft/resources/ResourceLocation;)Lcom/mojang/brigadier/exceptions/CommandSyntaxException; +MD: net/minecraft/commands/arguments/blocks/BlockStateParser/m_234681_ (Lnet/minecraft/resources/ResourceKey;)Ljava/lang/String; net/minecraft/commands/arguments/blocks/BlockStateParser/lambda$serialize$10 (Lnet/minecraft/resources/ResourceKey;)Ljava/lang/String; +MD: net/minecraft/commands/arguments/blocks/BlockStateParser/m_234683_ (Lcom/mojang/brigadier/suggestion/SuggestionsBuilder;)Ljava/util/concurrent/CompletableFuture; net/minecraft/commands/arguments/blocks/BlockStateParser/suggestPropertyNameOrEnd (Lcom/mojang/brigadier/suggestion/SuggestionsBuilder;)Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/commands/arguments/blocks/BlockStateParser/m_234685_ (Lcom/mojang/brigadier/suggestion/SuggestionsBuilder;Ljava/lang/String;)Ljava/util/concurrent/CompletableFuture; net/minecraft/commands/arguments/blocks/BlockStateParser/suggestVaguePropertyValue (Lcom/mojang/brigadier/suggestion/SuggestionsBuilder;Ljava/lang/String;)Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/commands/arguments/blocks/BlockStateParser/m_234688_ (Lnet/minecraft/world/level/block/state/properties/Property;Lcom/mojang/brigadier/suggestion/SuggestionsBuilder;)Ljava/util/concurrent/CompletableFuture; net/minecraft/commands/arguments/blocks/BlockStateParser/lambda$readProperties$8 (Lnet/minecraft/world/level/block/state/properties/Property;Lcom/mojang/brigadier/suggestion/SuggestionsBuilder;)Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/commands/arguments/blocks/BlockStateParser/m_234691_ (Lnet/minecraft/core/HolderLookup;Lcom/mojang/brigadier/StringReader;Z)Lnet/minecraft/commands/arguments/blocks/BlockStateParser$BlockResult; net/minecraft/commands/arguments/blocks/BlockStateParser/parseForBlock (Lnet/minecraft/core/HolderLookup;Lcom/mojang/brigadier/StringReader;Z)Lnet/minecraft/commands/arguments/blocks/BlockStateParser$BlockResult; +MD: net/minecraft/commands/arguments/blocks/BlockStateParser/m_234695_ (Lnet/minecraft/core/HolderLookup;Lcom/mojang/brigadier/suggestion/SuggestionsBuilder;ZZ)Ljava/util/concurrent/CompletableFuture; net/minecraft/commands/arguments/blocks/BlockStateParser/fillSuggestions (Lnet/minecraft/core/HolderLookup;Lcom/mojang/brigadier/suggestion/SuggestionsBuilder;ZZ)Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/commands/arguments/blocks/BlockStateParser/m_234708_ (Ljava/lang/Object;)Lcom/mojang/brigadier/Message; net/minecraft/commands/arguments/blocks/BlockStateParser/lambda$static$5 (Ljava/lang/Object;)Lcom/mojang/brigadier/Message; +MD: net/minecraft/commands/arguments/blocks/BlockStateParser/m_234710_ (Ljava/lang/String;Lcom/mojang/brigadier/suggestion/SuggestionsBuilder;)Ljava/util/concurrent/CompletableFuture; net/minecraft/commands/arguments/blocks/BlockStateParser/lambda$readVagueProperties$9 (Ljava/lang/String;Lcom/mojang/brigadier/suggestion/SuggestionsBuilder;)Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/commands/arguments/blocks/BlockStateParser/m_234713_ ()Z net/minecraft/commands/arguments/blocks/BlockStateParser/hasBlockEntity ()Z +MD: net/minecraft/commands/arguments/blocks/BlockStateParser/m_234714_ (Lcom/mojang/brigadier/suggestion/SuggestionsBuilder;)Ljava/util/concurrent/CompletableFuture; net/minecraft/commands/arguments/blocks/BlockStateParser/suggestVaguePropertyNameOrEnd (Lcom/mojang/brigadier/suggestion/SuggestionsBuilder;)Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/commands/arguments/blocks/BlockStateParser/m_234716_ (Lnet/minecraft/core/HolderLookup;Lcom/mojang/brigadier/StringReader;Z)Lcom/mojang/datafixers/util/Either; net/minecraft/commands/arguments/blocks/BlockStateParser/parseForTesting (Lnet/minecraft/core/HolderLookup;Lcom/mojang/brigadier/StringReader;Z)Lcom/mojang/datafixers/util/Either; +MD: net/minecraft/commands/arguments/blocks/BlockStateParser/m_234728_ (Lcom/mojang/brigadier/suggestion/SuggestionsBuilder;)Ljava/util/concurrent/CompletableFuture; net/minecraft/commands/arguments/blocks/BlockStateParser/suggestPropertyName (Lcom/mojang/brigadier/suggestion/SuggestionsBuilder;)Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/commands/arguments/blocks/BlockStateParser/m_234730_ (Lcom/mojang/brigadier/suggestion/SuggestionsBuilder;)Ljava/util/concurrent/CompletableFuture; net/minecraft/commands/arguments/blocks/BlockStateParser/suggestVaguePropertyName (Lcom/mojang/brigadier/suggestion/SuggestionsBuilder;)Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/commands/arguments/blocks/BlockStateParser/m_234732_ (Lcom/mojang/brigadier/suggestion/SuggestionsBuilder;)Ljava/util/concurrent/CompletableFuture; net/minecraft/commands/arguments/blocks/BlockStateParser/suggestOpenNbt (Lcom/mojang/brigadier/suggestion/SuggestionsBuilder;)Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/commands/arguments/blocks/BlockStateParser/m_234734_ (Lcom/mojang/brigadier/suggestion/SuggestionsBuilder;)Ljava/util/concurrent/CompletableFuture; net/minecraft/commands/arguments/blocks/BlockStateParser/suggestEquals (Lcom/mojang/brigadier/suggestion/SuggestionsBuilder;)Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/commands/arguments/blocks/BlockStateParser/m_234736_ (Lcom/mojang/brigadier/suggestion/SuggestionsBuilder;)Ljava/util/concurrent/CompletableFuture; net/minecraft/commands/arguments/blocks/BlockStateParser/suggestNextPropertyOrEnd (Lcom/mojang/brigadier/suggestion/SuggestionsBuilder;)Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/commands/arguments/blocks/BlockStateParser/m_234738_ (Lcom/mojang/brigadier/suggestion/SuggestionsBuilder;)Ljava/util/concurrent/CompletableFuture; net/minecraft/commands/arguments/blocks/BlockStateParser/suggestOpenVaguePropertiesOrNbt (Lcom/mojang/brigadier/suggestion/SuggestionsBuilder;)Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/commands/arguments/blocks/BlockStateParser/m_234740_ (Lcom/mojang/brigadier/suggestion/SuggestionsBuilder;)Ljava/util/concurrent/CompletableFuture; net/minecraft/commands/arguments/blocks/BlockStateParser/suggestOpenPropertiesOrNbt (Lcom/mojang/brigadier/suggestion/SuggestionsBuilder;)Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/commands/arguments/blocks/BlockStateParser/m_234742_ (Lcom/mojang/brigadier/suggestion/SuggestionsBuilder;)Ljava/util/concurrent/CompletableFuture; net/minecraft/commands/arguments/blocks/BlockStateParser/suggestTag (Lcom/mojang/brigadier/suggestion/SuggestionsBuilder;)Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/commands/arguments/blocks/BlockStateParser/m_234744_ (Lcom/mojang/brigadier/suggestion/SuggestionsBuilder;)Ljava/util/concurrent/CompletableFuture; net/minecraft/commands/arguments/blocks/BlockStateParser/suggestItem (Lcom/mojang/brigadier/suggestion/SuggestionsBuilder;)Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/commands/arguments/blocks/BlockStateParser/m_234746_ (Lcom/mojang/brigadier/suggestion/SuggestionsBuilder;)Ljava/util/concurrent/CompletableFuture; net/minecraft/commands/arguments/blocks/BlockStateParser/suggestBlockIdOrTag (Lcom/mojang/brigadier/suggestion/SuggestionsBuilder;)Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/commands/arguments/blocks/BlockStateParser/m_245437_ (Lnet/minecraft/core/HolderLookup;Ljava/lang/String;Z)Lnet/minecraft/commands/arguments/blocks/BlockStateParser$BlockResult; net/minecraft/commands/arguments/blocks/BlockStateParser/parseForBlock (Lnet/minecraft/core/HolderLookup;Ljava/lang/String;Z)Lnet/minecraft/commands/arguments/blocks/BlockStateParser$BlockResult; +MD: net/minecraft/commands/arguments/blocks/BlockStateParser/m_247724_ (Lnet/minecraft/core/HolderLookup;Ljava/lang/String;Z)Lcom/mojang/datafixers/util/Either; net/minecraft/commands/arguments/blocks/BlockStateParser/parseForTesting (Lnet/minecraft/core/HolderLookup;Ljava/lang/String;Z)Lcom/mojang/datafixers/util/Either; +MD: net/minecraft/commands/arguments/blocks/BlockStateParser$BlockResult/ (Lnet/minecraft/world/level/block/state/BlockState;Ljava/util/Map;Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/commands/arguments/blocks/BlockStateParser$BlockResult/ (Lnet/minecraft/world/level/block/state/BlockState;Ljava/util/Map;Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/commands/arguments/blocks/BlockStateParser$BlockResult/equals (Ljava/lang/Object;)Z net/minecraft/commands/arguments/blocks/BlockStateParser$BlockResult/equals (Ljava/lang/Object;)Z +MD: net/minecraft/commands/arguments/blocks/BlockStateParser$BlockResult/f_234748_ ()Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/commands/arguments/blocks/BlockStateParser$BlockResult/blockState ()Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/commands/arguments/blocks/BlockStateParser$BlockResult/f_234749_ ()Ljava/util/Map; net/minecraft/commands/arguments/blocks/BlockStateParser$BlockResult/properties ()Ljava/util/Map; +MD: net/minecraft/commands/arguments/blocks/BlockStateParser$BlockResult/f_234750_ ()Lnet/minecraft/nbt/CompoundTag; net/minecraft/commands/arguments/blocks/BlockStateParser$BlockResult/nbt ()Lnet/minecraft/nbt/CompoundTag; +MD: net/minecraft/commands/arguments/blocks/BlockStateParser$BlockResult/hashCode ()I net/minecraft/commands/arguments/blocks/BlockStateParser$BlockResult/hashCode ()I +MD: net/minecraft/commands/arguments/blocks/BlockStateParser$BlockResult/toString ()Ljava/lang/String; net/minecraft/commands/arguments/blocks/BlockStateParser$BlockResult/toString ()Ljava/lang/String; +MD: net/minecraft/commands/arguments/blocks/BlockStateParser$TagResult/ (Lnet/minecraft/core/HolderSet;Ljava/util/Map;Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/commands/arguments/blocks/BlockStateParser$TagResult/ (Lnet/minecraft/core/HolderSet;Ljava/util/Map;Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/commands/arguments/blocks/BlockStateParser$TagResult/equals (Ljava/lang/Object;)Z net/minecraft/commands/arguments/blocks/BlockStateParser$TagResult/equals (Ljava/lang/Object;)Z +MD: net/minecraft/commands/arguments/blocks/BlockStateParser$TagResult/f_234762_ ()Lnet/minecraft/core/HolderSet; net/minecraft/commands/arguments/blocks/BlockStateParser$TagResult/tag ()Lnet/minecraft/core/HolderSet; +MD: net/minecraft/commands/arguments/blocks/BlockStateParser$TagResult/f_234763_ ()Ljava/util/Map; net/minecraft/commands/arguments/blocks/BlockStateParser$TagResult/vagueProperties ()Ljava/util/Map; +MD: net/minecraft/commands/arguments/blocks/BlockStateParser$TagResult/f_234764_ ()Lnet/minecraft/nbt/CompoundTag; net/minecraft/commands/arguments/blocks/BlockStateParser$TagResult/nbt ()Lnet/minecraft/nbt/CompoundTag; +MD: net/minecraft/commands/arguments/blocks/BlockStateParser$TagResult/hashCode ()I net/minecraft/commands/arguments/blocks/BlockStateParser$TagResult/hashCode ()I +MD: net/minecraft/commands/arguments/blocks/BlockStateParser$TagResult/toString ()Ljava/lang/String; net/minecraft/commands/arguments/blocks/BlockStateParser$TagResult/toString ()Ljava/lang/String; +MD: net/minecraft/commands/arguments/coordinates/BlockPosArgument/ ()V net/minecraft/commands/arguments/coordinates/BlockPosArgument/ ()V +MD: net/minecraft/commands/arguments/coordinates/BlockPosArgument/ ()V net/minecraft/commands/arguments/coordinates/BlockPosArgument/ ()V +MD: net/minecraft/commands/arguments/coordinates/BlockPosArgument/getExamples ()Ljava/util/Collection; net/minecraft/commands/arguments/coordinates/BlockPosArgument/getExamples ()Ljava/util/Collection; +MD: net/minecraft/commands/arguments/coordinates/BlockPosArgument/listSuggestions (Lcom/mojang/brigadier/context/CommandContext;Lcom/mojang/brigadier/suggestion/SuggestionsBuilder;)Ljava/util/concurrent/CompletableFuture; net/minecraft/commands/arguments/coordinates/BlockPosArgument/listSuggestions (Lcom/mojang/brigadier/context/CommandContext;Lcom/mojang/brigadier/suggestion/SuggestionsBuilder;)Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/commands/arguments/coordinates/BlockPosArgument/m_118239_ ()Lnet/minecraft/commands/arguments/coordinates/BlockPosArgument; net/minecraft/commands/arguments/coordinates/BlockPosArgument/blockPos ()Lnet/minecraft/commands/arguments/coordinates/BlockPosArgument; +MD: net/minecraft/commands/arguments/coordinates/BlockPosArgument/m_118242_ (Lcom/mojang/brigadier/context/CommandContext;Ljava/lang/String;)Lnet/minecraft/core/BlockPos; net/minecraft/commands/arguments/coordinates/BlockPosArgument/getLoadedBlockPos (Lcom/mojang/brigadier/context/CommandContext;Ljava/lang/String;)Lnet/minecraft/core/BlockPos; +MD: net/minecraft/commands/arguments/coordinates/BlockPosArgument/m_174395_ (Lcom/mojang/brigadier/context/CommandContext;Ljava/lang/String;)Lnet/minecraft/core/BlockPos; net/minecraft/commands/arguments/coordinates/BlockPosArgument/getSpawnablePos (Lcom/mojang/brigadier/context/CommandContext;Ljava/lang/String;)Lnet/minecraft/core/BlockPos; +MD: net/minecraft/commands/arguments/coordinates/BlockPosArgument/m_264205_ (Lcom/mojang/brigadier/context/CommandContext;Lnet/minecraft/server/level/ServerLevel;Ljava/lang/String;)Lnet/minecraft/core/BlockPos; net/minecraft/commands/arguments/coordinates/BlockPosArgument/getLoadedBlockPos (Lcom/mojang/brigadier/context/CommandContext;Lnet/minecraft/server/level/ServerLevel;Ljava/lang/String;)Lnet/minecraft/core/BlockPos; +MD: net/minecraft/commands/arguments/coordinates/BlockPosArgument/m_264582_ (Lcom/mojang/brigadier/context/CommandContext;Ljava/lang/String;)Lnet/minecraft/core/BlockPos; net/minecraft/commands/arguments/coordinates/BlockPosArgument/getBlockPos (Lcom/mojang/brigadier/context/CommandContext;Ljava/lang/String;)Lnet/minecraft/core/BlockPos; +MD: net/minecraft/commands/arguments/coordinates/BlockPosArgument/parse (Lcom/mojang/brigadier/StringReader;)Ljava/lang/Object; net/minecraft/commands/arguments/coordinates/BlockPosArgument/parse (Lcom/mojang/brigadier/StringReader;)Ljava/lang/Object; +MD: net/minecraft/commands/arguments/coordinates/BlockPosArgument/parse (Lcom/mojang/brigadier/StringReader;)Lnet/minecraft/commands/arguments/coordinates/Coordinates; net/minecraft/commands/arguments/coordinates/BlockPosArgument/parse (Lcom/mojang/brigadier/StringReader;)Lnet/minecraft/commands/arguments/coordinates/Coordinates; +MD: net/minecraft/commands/arguments/coordinates/ColumnPosArgument/ ()V net/minecraft/commands/arguments/coordinates/ColumnPosArgument/ ()V +MD: net/minecraft/commands/arguments/coordinates/ColumnPosArgument/ ()V net/minecraft/commands/arguments/coordinates/ColumnPosArgument/ ()V +MD: net/minecraft/commands/arguments/coordinates/ColumnPosArgument/getExamples ()Ljava/util/Collection; net/minecraft/commands/arguments/coordinates/ColumnPosArgument/getExamples ()Ljava/util/Collection; +MD: net/minecraft/commands/arguments/coordinates/ColumnPosArgument/listSuggestions (Lcom/mojang/brigadier/context/CommandContext;Lcom/mojang/brigadier/suggestion/SuggestionsBuilder;)Ljava/util/concurrent/CompletableFuture; net/minecraft/commands/arguments/coordinates/ColumnPosArgument/listSuggestions (Lcom/mojang/brigadier/context/CommandContext;Lcom/mojang/brigadier/suggestion/SuggestionsBuilder;)Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/commands/arguments/coordinates/ColumnPosArgument/m_118989_ ()Lnet/minecraft/commands/arguments/coordinates/ColumnPosArgument; net/minecraft/commands/arguments/coordinates/ColumnPosArgument/columnPos ()Lnet/minecraft/commands/arguments/coordinates/ColumnPosArgument; +MD: net/minecraft/commands/arguments/coordinates/ColumnPosArgument/m_118992_ (Lcom/mojang/brigadier/context/CommandContext;Ljava/lang/String;)Lnet/minecraft/server/level/ColumnPos; net/minecraft/commands/arguments/coordinates/ColumnPosArgument/getColumnPos (Lcom/mojang/brigadier/context/CommandContext;Ljava/lang/String;)Lnet/minecraft/server/level/ColumnPos; +MD: net/minecraft/commands/arguments/coordinates/ColumnPosArgument/parse (Lcom/mojang/brigadier/StringReader;)Ljava/lang/Object; net/minecraft/commands/arguments/coordinates/ColumnPosArgument/parse (Lcom/mojang/brigadier/StringReader;)Ljava/lang/Object; +MD: net/minecraft/commands/arguments/coordinates/ColumnPosArgument/parse (Lcom/mojang/brigadier/StringReader;)Lnet/minecraft/commands/arguments/coordinates/Coordinates; net/minecraft/commands/arguments/coordinates/ColumnPosArgument/parse (Lcom/mojang/brigadier/StringReader;)Lnet/minecraft/commands/arguments/coordinates/Coordinates; +MD: net/minecraft/commands/arguments/coordinates/Coordinates/m_119568_ (Lnet/minecraft/commands/CommandSourceStack;)Lnet/minecraft/core/BlockPos; net/minecraft/commands/arguments/coordinates/Coordinates/getBlockPos (Lnet/minecraft/commands/CommandSourceStack;)Lnet/minecraft/core/BlockPos; +MD: net/minecraft/commands/arguments/coordinates/Coordinates/m_6888_ ()Z net/minecraft/commands/arguments/coordinates/Coordinates/isXRelative ()Z +MD: net/minecraft/commands/arguments/coordinates/Coordinates/m_6892_ ()Z net/minecraft/commands/arguments/coordinates/Coordinates/isYRelative ()Z +MD: net/minecraft/commands/arguments/coordinates/Coordinates/m_6900_ ()Z net/minecraft/commands/arguments/coordinates/Coordinates/isZRelative ()Z +MD: net/minecraft/commands/arguments/coordinates/Coordinates/m_6955_ (Lnet/minecraft/commands/CommandSourceStack;)Lnet/minecraft/world/phys/Vec3; net/minecraft/commands/arguments/coordinates/Coordinates/getPosition (Lnet/minecraft/commands/CommandSourceStack;)Lnet/minecraft/world/phys/Vec3; +MD: net/minecraft/commands/arguments/coordinates/Coordinates/m_6970_ (Lnet/minecraft/commands/CommandSourceStack;)Lnet/minecraft/world/phys/Vec2; net/minecraft/commands/arguments/coordinates/Coordinates/getRotation (Lnet/minecraft/commands/CommandSourceStack;)Lnet/minecraft/world/phys/Vec2; +MD: net/minecraft/commands/arguments/coordinates/LocalCoordinates/ (DDD)V net/minecraft/commands/arguments/coordinates/LocalCoordinates/ (DDD)V +MD: net/minecraft/commands/arguments/coordinates/LocalCoordinates/equals (Ljava/lang/Object;)Z net/minecraft/commands/arguments/coordinates/LocalCoordinates/equals (Ljava/lang/Object;)Z +MD: net/minecraft/commands/arguments/coordinates/LocalCoordinates/hashCode ()I net/minecraft/commands/arguments/coordinates/LocalCoordinates/hashCode ()I +MD: net/minecraft/commands/arguments/coordinates/LocalCoordinates/m_119906_ (Lcom/mojang/brigadier/StringReader;)Lnet/minecraft/commands/arguments/coordinates/LocalCoordinates; net/minecraft/commands/arguments/coordinates/LocalCoordinates/parse (Lcom/mojang/brigadier/StringReader;)Lnet/minecraft/commands/arguments/coordinates/LocalCoordinates; +MD: net/minecraft/commands/arguments/coordinates/LocalCoordinates/m_119908_ (Lcom/mojang/brigadier/StringReader;I)D net/minecraft/commands/arguments/coordinates/LocalCoordinates/readDouble (Lcom/mojang/brigadier/StringReader;I)D +MD: net/minecraft/commands/arguments/coordinates/LocalCoordinates/m_6888_ ()Z net/minecraft/commands/arguments/coordinates/LocalCoordinates/isXRelative ()Z +MD: net/minecraft/commands/arguments/coordinates/LocalCoordinates/m_6892_ ()Z net/minecraft/commands/arguments/coordinates/LocalCoordinates/isYRelative ()Z +MD: net/minecraft/commands/arguments/coordinates/LocalCoordinates/m_6900_ ()Z net/minecraft/commands/arguments/coordinates/LocalCoordinates/isZRelative ()Z +MD: net/minecraft/commands/arguments/coordinates/LocalCoordinates/m_6955_ (Lnet/minecraft/commands/CommandSourceStack;)Lnet/minecraft/world/phys/Vec3; net/minecraft/commands/arguments/coordinates/LocalCoordinates/getPosition (Lnet/minecraft/commands/CommandSourceStack;)Lnet/minecraft/world/phys/Vec3; +MD: net/minecraft/commands/arguments/coordinates/LocalCoordinates/m_6970_ (Lnet/minecraft/commands/CommandSourceStack;)Lnet/minecraft/world/phys/Vec2; net/minecraft/commands/arguments/coordinates/LocalCoordinates/getRotation (Lnet/minecraft/commands/CommandSourceStack;)Lnet/minecraft/world/phys/Vec2; +MD: net/minecraft/commands/arguments/coordinates/RotationArgument/ ()V net/minecraft/commands/arguments/coordinates/RotationArgument/ ()V +MD: net/minecraft/commands/arguments/coordinates/RotationArgument/ ()V net/minecraft/commands/arguments/coordinates/RotationArgument/ ()V +MD: net/minecraft/commands/arguments/coordinates/RotationArgument/getExamples ()Ljava/util/Collection; net/minecraft/commands/arguments/coordinates/RotationArgument/getExamples ()Ljava/util/Collection; +MD: net/minecraft/commands/arguments/coordinates/RotationArgument/m_120479_ ()Lnet/minecraft/commands/arguments/coordinates/RotationArgument; net/minecraft/commands/arguments/coordinates/RotationArgument/rotation ()Lnet/minecraft/commands/arguments/coordinates/RotationArgument; +MD: net/minecraft/commands/arguments/coordinates/RotationArgument/m_120482_ (Lcom/mojang/brigadier/context/CommandContext;Ljava/lang/String;)Lnet/minecraft/commands/arguments/coordinates/Coordinates; net/minecraft/commands/arguments/coordinates/RotationArgument/getRotation (Lcom/mojang/brigadier/context/CommandContext;Ljava/lang/String;)Lnet/minecraft/commands/arguments/coordinates/Coordinates; +MD: net/minecraft/commands/arguments/coordinates/RotationArgument/parse (Lcom/mojang/brigadier/StringReader;)Ljava/lang/Object; net/minecraft/commands/arguments/coordinates/RotationArgument/parse (Lcom/mojang/brigadier/StringReader;)Ljava/lang/Object; +MD: net/minecraft/commands/arguments/coordinates/RotationArgument/parse (Lcom/mojang/brigadier/StringReader;)Lnet/minecraft/commands/arguments/coordinates/Coordinates; net/minecraft/commands/arguments/coordinates/RotationArgument/parse (Lcom/mojang/brigadier/StringReader;)Lnet/minecraft/commands/arguments/coordinates/Coordinates; +MD: net/minecraft/commands/arguments/coordinates/SwizzleArgument/ ()V net/minecraft/commands/arguments/coordinates/SwizzleArgument/ ()V +MD: net/minecraft/commands/arguments/coordinates/SwizzleArgument/ ()V net/minecraft/commands/arguments/coordinates/SwizzleArgument/ ()V +MD: net/minecraft/commands/arguments/coordinates/SwizzleArgument/getExamples ()Ljava/util/Collection; net/minecraft/commands/arguments/coordinates/SwizzleArgument/getExamples ()Ljava/util/Collection; +MD: net/minecraft/commands/arguments/coordinates/SwizzleArgument/m_120807_ ()Lnet/minecraft/commands/arguments/coordinates/SwizzleArgument; net/minecraft/commands/arguments/coordinates/SwizzleArgument/swizzle ()Lnet/minecraft/commands/arguments/coordinates/SwizzleArgument; +MD: net/minecraft/commands/arguments/coordinates/SwizzleArgument/m_120810_ (Lcom/mojang/brigadier/context/CommandContext;Ljava/lang/String;)Ljava/util/EnumSet; net/minecraft/commands/arguments/coordinates/SwizzleArgument/getSwizzle (Lcom/mojang/brigadier/context/CommandContext;Ljava/lang/String;)Ljava/util/EnumSet; +MD: net/minecraft/commands/arguments/coordinates/SwizzleArgument/parse (Lcom/mojang/brigadier/StringReader;)Ljava/lang/Object; net/minecraft/commands/arguments/coordinates/SwizzleArgument/parse (Lcom/mojang/brigadier/StringReader;)Ljava/lang/Object; +MD: net/minecraft/commands/arguments/coordinates/SwizzleArgument/parse (Lcom/mojang/brigadier/StringReader;)Ljava/util/EnumSet; net/minecraft/commands/arguments/coordinates/SwizzleArgument/parse (Lcom/mojang/brigadier/StringReader;)Ljava/util/EnumSet; +MD: net/minecraft/commands/arguments/coordinates/Vec2Argument/ ()V net/minecraft/commands/arguments/coordinates/Vec2Argument/ ()V +MD: net/minecraft/commands/arguments/coordinates/Vec2Argument/ (Z)V net/minecraft/commands/arguments/coordinates/Vec2Argument/ (Z)V +MD: net/minecraft/commands/arguments/coordinates/Vec2Argument/getExamples ()Ljava/util/Collection; net/minecraft/commands/arguments/coordinates/Vec2Argument/getExamples ()Ljava/util/Collection; +MD: net/minecraft/commands/arguments/coordinates/Vec2Argument/listSuggestions (Lcom/mojang/brigadier/context/CommandContext;Lcom/mojang/brigadier/suggestion/SuggestionsBuilder;)Ljava/util/concurrent/CompletableFuture; net/minecraft/commands/arguments/coordinates/Vec2Argument/listSuggestions (Lcom/mojang/brigadier/context/CommandContext;Lcom/mojang/brigadier/suggestion/SuggestionsBuilder;)Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/commands/arguments/coordinates/Vec2Argument/m_120822_ ()Lnet/minecraft/commands/arguments/coordinates/Vec2Argument; net/minecraft/commands/arguments/coordinates/Vec2Argument/vec2 ()Lnet/minecraft/commands/arguments/coordinates/Vec2Argument; +MD: net/minecraft/commands/arguments/coordinates/Vec2Argument/m_120825_ (Lcom/mojang/brigadier/context/CommandContext;Ljava/lang/String;)Lnet/minecraft/world/phys/Vec2; net/minecraft/commands/arguments/coordinates/Vec2Argument/getVec2 (Lcom/mojang/brigadier/context/CommandContext;Ljava/lang/String;)Lnet/minecraft/world/phys/Vec2; +MD: net/minecraft/commands/arguments/coordinates/Vec2Argument/m_174954_ (Z)Lnet/minecraft/commands/arguments/coordinates/Vec2Argument; net/minecraft/commands/arguments/coordinates/Vec2Argument/vec2 (Z)Lnet/minecraft/commands/arguments/coordinates/Vec2Argument; +MD: net/minecraft/commands/arguments/coordinates/Vec2Argument/parse (Lcom/mojang/brigadier/StringReader;)Ljava/lang/Object; net/minecraft/commands/arguments/coordinates/Vec2Argument/parse (Lcom/mojang/brigadier/StringReader;)Ljava/lang/Object; +MD: net/minecraft/commands/arguments/coordinates/Vec2Argument/parse (Lcom/mojang/brigadier/StringReader;)Lnet/minecraft/commands/arguments/coordinates/Coordinates; net/minecraft/commands/arguments/coordinates/Vec2Argument/parse (Lcom/mojang/brigadier/StringReader;)Lnet/minecraft/commands/arguments/coordinates/Coordinates; +MD: net/minecraft/commands/arguments/coordinates/Vec3Argument/ ()V net/minecraft/commands/arguments/coordinates/Vec3Argument/ ()V +MD: net/minecraft/commands/arguments/coordinates/Vec3Argument/ (Z)V net/minecraft/commands/arguments/coordinates/Vec3Argument/ (Z)V +MD: net/minecraft/commands/arguments/coordinates/Vec3Argument/getExamples ()Ljava/util/Collection; net/minecraft/commands/arguments/coordinates/Vec3Argument/getExamples ()Ljava/util/Collection; +MD: net/minecraft/commands/arguments/coordinates/Vec3Argument/listSuggestions (Lcom/mojang/brigadier/context/CommandContext;Lcom/mojang/brigadier/suggestion/SuggestionsBuilder;)Ljava/util/concurrent/CompletableFuture; net/minecraft/commands/arguments/coordinates/Vec3Argument/listSuggestions (Lcom/mojang/brigadier/context/CommandContext;Lcom/mojang/brigadier/suggestion/SuggestionsBuilder;)Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/commands/arguments/coordinates/Vec3Argument/m_120841_ ()Lnet/minecraft/commands/arguments/coordinates/Vec3Argument; net/minecraft/commands/arguments/coordinates/Vec3Argument/vec3 ()Lnet/minecraft/commands/arguments/coordinates/Vec3Argument; +MD: net/minecraft/commands/arguments/coordinates/Vec3Argument/m_120844_ (Lcom/mojang/brigadier/context/CommandContext;Ljava/lang/String;)Lnet/minecraft/world/phys/Vec3; net/minecraft/commands/arguments/coordinates/Vec3Argument/getVec3 (Lcom/mojang/brigadier/context/CommandContext;Ljava/lang/String;)Lnet/minecraft/world/phys/Vec3; +MD: net/minecraft/commands/arguments/coordinates/Vec3Argument/m_120847_ (Z)Lnet/minecraft/commands/arguments/coordinates/Vec3Argument; net/minecraft/commands/arguments/coordinates/Vec3Argument/vec3 (Z)Lnet/minecraft/commands/arguments/coordinates/Vec3Argument; +MD: net/minecraft/commands/arguments/coordinates/Vec3Argument/m_120849_ (Lcom/mojang/brigadier/context/CommandContext;Ljava/lang/String;)Lnet/minecraft/commands/arguments/coordinates/Coordinates; net/minecraft/commands/arguments/coordinates/Vec3Argument/getCoordinates (Lcom/mojang/brigadier/context/CommandContext;Ljava/lang/String;)Lnet/minecraft/commands/arguments/coordinates/Coordinates; +MD: net/minecraft/commands/arguments/coordinates/Vec3Argument/parse (Lcom/mojang/brigadier/StringReader;)Ljava/lang/Object; net/minecraft/commands/arguments/coordinates/Vec3Argument/parse (Lcom/mojang/brigadier/StringReader;)Ljava/lang/Object; +MD: net/minecraft/commands/arguments/coordinates/Vec3Argument/parse (Lcom/mojang/brigadier/StringReader;)Lnet/minecraft/commands/arguments/coordinates/Coordinates; net/minecraft/commands/arguments/coordinates/Vec3Argument/parse (Lcom/mojang/brigadier/StringReader;)Lnet/minecraft/commands/arguments/coordinates/Coordinates; +MD: net/minecraft/commands/arguments/coordinates/WorldCoordinate/ ()V net/minecraft/commands/arguments/coordinates/WorldCoordinate/ ()V +MD: net/minecraft/commands/arguments/coordinates/WorldCoordinate/ (ZD)V net/minecraft/commands/arguments/coordinates/WorldCoordinate/ (ZD)V +MD: net/minecraft/commands/arguments/coordinates/WorldCoordinate/equals (Ljava/lang/Object;)Z net/minecraft/commands/arguments/coordinates/WorldCoordinate/equals (Ljava/lang/Object;)Z +MD: net/minecraft/commands/arguments/coordinates/WorldCoordinate/hashCode ()I net/minecraft/commands/arguments/coordinates/WorldCoordinate/hashCode ()I +MD: net/minecraft/commands/arguments/coordinates/WorldCoordinate/m_120866_ ()Z net/minecraft/commands/arguments/coordinates/WorldCoordinate/isRelative ()Z +MD: net/minecraft/commands/arguments/coordinates/WorldCoordinate/m_120867_ (D)D net/minecraft/commands/arguments/coordinates/WorldCoordinate/get (D)D +MD: net/minecraft/commands/arguments/coordinates/WorldCoordinate/m_120869_ (Lcom/mojang/brigadier/StringReader;)Lnet/minecraft/commands/arguments/coordinates/WorldCoordinate; net/minecraft/commands/arguments/coordinates/WorldCoordinate/parseInt (Lcom/mojang/brigadier/StringReader;)Lnet/minecraft/commands/arguments/coordinates/WorldCoordinate; +MD: net/minecraft/commands/arguments/coordinates/WorldCoordinate/m_120871_ (Lcom/mojang/brigadier/StringReader;Z)Lnet/minecraft/commands/arguments/coordinates/WorldCoordinate; net/minecraft/commands/arguments/coordinates/WorldCoordinate/parseDouble (Lcom/mojang/brigadier/StringReader;Z)Lnet/minecraft/commands/arguments/coordinates/WorldCoordinate; +MD: net/minecraft/commands/arguments/coordinates/WorldCoordinate/m_120874_ (Lcom/mojang/brigadier/StringReader;)Z net/minecraft/commands/arguments/coordinates/WorldCoordinate/isRelative (Lcom/mojang/brigadier/StringReader;)Z +MD: net/minecraft/commands/arguments/coordinates/WorldCoordinates/ (Lnet/minecraft/commands/arguments/coordinates/WorldCoordinate;Lnet/minecraft/commands/arguments/coordinates/WorldCoordinate;Lnet/minecraft/commands/arguments/coordinates/WorldCoordinate;)V net/minecraft/commands/arguments/coordinates/WorldCoordinates/ (Lnet/minecraft/commands/arguments/coordinates/WorldCoordinate;Lnet/minecraft/commands/arguments/coordinates/WorldCoordinate;Lnet/minecraft/commands/arguments/coordinates/WorldCoordinate;)V +MD: net/minecraft/commands/arguments/coordinates/WorldCoordinates/equals (Ljava/lang/Object;)Z net/minecraft/commands/arguments/coordinates/WorldCoordinates/equals (Ljava/lang/Object;)Z +MD: net/minecraft/commands/arguments/coordinates/WorldCoordinates/hashCode ()I net/minecraft/commands/arguments/coordinates/WorldCoordinates/hashCode ()I +MD: net/minecraft/commands/arguments/coordinates/WorldCoordinates/m_120887_ (Lcom/mojang/brigadier/StringReader;)Lnet/minecraft/commands/arguments/coordinates/WorldCoordinates; net/minecraft/commands/arguments/coordinates/WorldCoordinates/parseInt (Lcom/mojang/brigadier/StringReader;)Lnet/minecraft/commands/arguments/coordinates/WorldCoordinates; +MD: net/minecraft/commands/arguments/coordinates/WorldCoordinates/m_120889_ (Lcom/mojang/brigadier/StringReader;Z)Lnet/minecraft/commands/arguments/coordinates/WorldCoordinates; net/minecraft/commands/arguments/coordinates/WorldCoordinates/parseDouble (Lcom/mojang/brigadier/StringReader;Z)Lnet/minecraft/commands/arguments/coordinates/WorldCoordinates; +MD: net/minecraft/commands/arguments/coordinates/WorldCoordinates/m_120898_ ()Lnet/minecraft/commands/arguments/coordinates/WorldCoordinates; net/minecraft/commands/arguments/coordinates/WorldCoordinates/current ()Lnet/minecraft/commands/arguments/coordinates/WorldCoordinates; +MD: net/minecraft/commands/arguments/coordinates/WorldCoordinates/m_175085_ (DDD)Lnet/minecraft/commands/arguments/coordinates/WorldCoordinates; net/minecraft/commands/arguments/coordinates/WorldCoordinates/absolute (DDD)Lnet/minecraft/commands/arguments/coordinates/WorldCoordinates; +MD: net/minecraft/commands/arguments/coordinates/WorldCoordinates/m_175089_ (Lnet/minecraft/world/phys/Vec2;)Lnet/minecraft/commands/arguments/coordinates/WorldCoordinates; net/minecraft/commands/arguments/coordinates/WorldCoordinates/absolute (Lnet/minecraft/world/phys/Vec2;)Lnet/minecraft/commands/arguments/coordinates/WorldCoordinates; +MD: net/minecraft/commands/arguments/coordinates/WorldCoordinates/m_6888_ ()Z net/minecraft/commands/arguments/coordinates/WorldCoordinates/isXRelative ()Z +MD: net/minecraft/commands/arguments/coordinates/WorldCoordinates/m_6892_ ()Z net/minecraft/commands/arguments/coordinates/WorldCoordinates/isYRelative ()Z +MD: net/minecraft/commands/arguments/coordinates/WorldCoordinates/m_6900_ ()Z net/minecraft/commands/arguments/coordinates/WorldCoordinates/isZRelative ()Z +MD: net/minecraft/commands/arguments/coordinates/WorldCoordinates/m_6955_ (Lnet/minecraft/commands/CommandSourceStack;)Lnet/minecraft/world/phys/Vec3; net/minecraft/commands/arguments/coordinates/WorldCoordinates/getPosition (Lnet/minecraft/commands/CommandSourceStack;)Lnet/minecraft/world/phys/Vec3; +MD: net/minecraft/commands/arguments/coordinates/WorldCoordinates/m_6970_ (Lnet/minecraft/commands/CommandSourceStack;)Lnet/minecraft/world/phys/Vec2; net/minecraft/commands/arguments/coordinates/WorldCoordinates/getRotation (Lnet/minecraft/commands/CommandSourceStack;)Lnet/minecraft/world/phys/Vec2; +MD: net/minecraft/commands/arguments/item/FunctionArgument/ ()V net/minecraft/commands/arguments/item/FunctionArgument/ ()V +MD: net/minecraft/commands/arguments/item/FunctionArgument/ ()V net/minecraft/commands/arguments/item/FunctionArgument/ ()V +MD: net/minecraft/commands/arguments/item/FunctionArgument/getExamples ()Ljava/util/Collection; net/minecraft/commands/arguments/item/FunctionArgument/getExamples ()Ljava/util/Collection; +MD: net/minecraft/commands/arguments/item/FunctionArgument/m_120907_ ()Lnet/minecraft/commands/arguments/item/FunctionArgument; net/minecraft/commands/arguments/item/FunctionArgument/functions ()Lnet/minecraft/commands/arguments/item/FunctionArgument; +MD: net/minecraft/commands/arguments/item/FunctionArgument/m_120910_ (Lcom/mojang/brigadier/context/CommandContext;Ljava/lang/String;)Ljava/util/Collection; net/minecraft/commands/arguments/item/FunctionArgument/getFunctions (Lcom/mojang/brigadier/context/CommandContext;Ljava/lang/String;)Ljava/util/Collection; +MD: net/minecraft/commands/arguments/item/FunctionArgument/m_120916_ (Ljava/lang/Object;)Lcom/mojang/brigadier/Message; net/minecraft/commands/arguments/item/FunctionArgument/lambda$static$1 (Ljava/lang/Object;)Lcom/mojang/brigadier/Message; +MD: net/minecraft/commands/arguments/item/FunctionArgument/m_120918_ (Lnet/minecraft/resources/ResourceLocation;)Lcom/mojang/brigadier/exceptions/CommandSyntaxException; net/minecraft/commands/arguments/item/FunctionArgument/lambda$getFunction$2 (Lnet/minecraft/resources/ResourceLocation;)Lcom/mojang/brigadier/exceptions/CommandSyntaxException; +MD: net/minecraft/commands/arguments/item/FunctionArgument/m_120920_ (Lcom/mojang/brigadier/context/CommandContext;Ljava/lang/String;)Lcom/mojang/datafixers/util/Pair; net/minecraft/commands/arguments/item/FunctionArgument/getFunctionOrTag (Lcom/mojang/brigadier/context/CommandContext;Ljava/lang/String;)Lcom/mojang/datafixers/util/Pair; +MD: net/minecraft/commands/arguments/item/FunctionArgument/m_120926_ (Ljava/lang/Object;)Lcom/mojang/brigadier/Message; net/minecraft/commands/arguments/item/FunctionArgument/lambda$static$0 (Ljava/lang/Object;)Lcom/mojang/brigadier/Message; +MD: net/minecraft/commands/arguments/item/FunctionArgument/m_120928_ (Lcom/mojang/brigadier/context/CommandContext;Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/commands/CommandFunction; net/minecraft/commands/arguments/item/FunctionArgument/getFunction (Lcom/mojang/brigadier/context/CommandContext;Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/commands/CommandFunction; +MD: net/minecraft/commands/arguments/item/FunctionArgument/m_235273_ (Lcom/mojang/brigadier/context/CommandContext;Lnet/minecraft/resources/ResourceLocation;)Ljava/util/Collection; net/minecraft/commands/arguments/item/FunctionArgument/getFunctionTag (Lcom/mojang/brigadier/context/CommandContext;Lnet/minecraft/resources/ResourceLocation;)Ljava/util/Collection; +MD: net/minecraft/commands/arguments/item/FunctionArgument/parse (Lcom/mojang/brigadier/StringReader;)Ljava/lang/Object; net/minecraft/commands/arguments/item/FunctionArgument/parse (Lcom/mojang/brigadier/StringReader;)Ljava/lang/Object; +MD: net/minecraft/commands/arguments/item/FunctionArgument/parse (Lcom/mojang/brigadier/StringReader;)Lnet/minecraft/commands/arguments/item/FunctionArgument$Result; net/minecraft/commands/arguments/item/FunctionArgument/parse (Lcom/mojang/brigadier/StringReader;)Lnet/minecraft/commands/arguments/item/FunctionArgument$Result; +MD: net/minecraft/commands/arguments/item/FunctionArgument$1/ (Lnet/minecraft/commands/arguments/item/FunctionArgument;Lnet/minecraft/resources/ResourceLocation;)V net/minecraft/commands/arguments/item/FunctionArgument$1/ (Lnet/minecraft/commands/arguments/item/FunctionArgument;Lnet/minecraft/resources/ResourceLocation;)V +MD: net/minecraft/commands/arguments/item/FunctionArgument$1/m_5911_ (Lcom/mojang/brigadier/context/CommandContext;)Lcom/mojang/datafixers/util/Pair; net/minecraft/commands/arguments/item/FunctionArgument$1/unwrap (Lcom/mojang/brigadier/context/CommandContext;)Lcom/mojang/datafixers/util/Pair; +MD: net/minecraft/commands/arguments/item/FunctionArgument$1/m_7588_ (Lcom/mojang/brigadier/context/CommandContext;)Ljava/util/Collection; net/minecraft/commands/arguments/item/FunctionArgument$1/create (Lcom/mojang/brigadier/context/CommandContext;)Ljava/util/Collection; +MD: net/minecraft/commands/arguments/item/FunctionArgument$2/ (Lnet/minecraft/commands/arguments/item/FunctionArgument;Lnet/minecraft/resources/ResourceLocation;)V net/minecraft/commands/arguments/item/FunctionArgument$2/ (Lnet/minecraft/commands/arguments/item/FunctionArgument;Lnet/minecraft/resources/ResourceLocation;)V +MD: net/minecraft/commands/arguments/item/FunctionArgument$2/m_5911_ (Lcom/mojang/brigadier/context/CommandContext;)Lcom/mojang/datafixers/util/Pair; net/minecraft/commands/arguments/item/FunctionArgument$2/unwrap (Lcom/mojang/brigadier/context/CommandContext;)Lcom/mojang/datafixers/util/Pair; +MD: net/minecraft/commands/arguments/item/FunctionArgument$2/m_7588_ (Lcom/mojang/brigadier/context/CommandContext;)Ljava/util/Collection; net/minecraft/commands/arguments/item/FunctionArgument$2/create (Lcom/mojang/brigadier/context/CommandContext;)Ljava/util/Collection; +MD: net/minecraft/commands/arguments/item/FunctionArgument$Result/m_5911_ (Lcom/mojang/brigadier/context/CommandContext;)Lcom/mojang/datafixers/util/Pair; net/minecraft/commands/arguments/item/FunctionArgument$Result/unwrap (Lcom/mojang/brigadier/context/CommandContext;)Lcom/mojang/datafixers/util/Pair; +MD: net/minecraft/commands/arguments/item/FunctionArgument$Result/m_7588_ (Lcom/mojang/brigadier/context/CommandContext;)Ljava/util/Collection; net/minecraft/commands/arguments/item/FunctionArgument$Result/create (Lcom/mojang/brigadier/context/CommandContext;)Ljava/util/Collection; +MD: net/minecraft/commands/arguments/item/ItemArgument/ ()V net/minecraft/commands/arguments/item/ItemArgument/ ()V +MD: net/minecraft/commands/arguments/item/ItemArgument/ (Lnet/minecraft/commands/CommandBuildContext;)V net/minecraft/commands/arguments/item/ItemArgument/ (Lnet/minecraft/commands/CommandBuildContext;)V +MD: net/minecraft/commands/arguments/item/ItemArgument/getExamples ()Ljava/util/Collection; net/minecraft/commands/arguments/item/ItemArgument/getExamples ()Ljava/util/Collection; +MD: net/minecraft/commands/arguments/item/ItemArgument/listSuggestions (Lcom/mojang/brigadier/context/CommandContext;Lcom/mojang/brigadier/suggestion/SuggestionsBuilder;)Ljava/util/concurrent/CompletableFuture; net/minecraft/commands/arguments/item/ItemArgument/listSuggestions (Lcom/mojang/brigadier/context/CommandContext;Lcom/mojang/brigadier/suggestion/SuggestionsBuilder;)Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/commands/arguments/item/ItemArgument/m_120963_ (Lcom/mojang/brigadier/context/CommandContext;Ljava/lang/String;)Lnet/minecraft/commands/arguments/item/ItemInput; net/minecraft/commands/arguments/item/ItemArgument/getItem (Lcom/mojang/brigadier/context/CommandContext;Ljava/lang/String;)Lnet/minecraft/commands/arguments/item/ItemInput; +MD: net/minecraft/commands/arguments/item/ItemArgument/m_235279_ (Lnet/minecraft/commands/CommandBuildContext;)Lnet/minecraft/commands/arguments/item/ItemArgument; net/minecraft/commands/arguments/item/ItemArgument/item (Lnet/minecraft/commands/CommandBuildContext;)Lnet/minecraft/commands/arguments/item/ItemArgument; +MD: net/minecraft/commands/arguments/item/ItemArgument/parse (Lcom/mojang/brigadier/StringReader;)Ljava/lang/Object; net/minecraft/commands/arguments/item/ItemArgument/parse (Lcom/mojang/brigadier/StringReader;)Ljava/lang/Object; +MD: net/minecraft/commands/arguments/item/ItemArgument/parse (Lcom/mojang/brigadier/StringReader;)Lnet/minecraft/commands/arguments/item/ItemInput; net/minecraft/commands/arguments/item/ItemArgument/parse (Lcom/mojang/brigadier/StringReader;)Lnet/minecraft/commands/arguments/item/ItemInput; +MD: net/minecraft/commands/arguments/item/ItemInput/ ()V net/minecraft/commands/arguments/item/ItemInput/ ()V +MD: net/minecraft/commands/arguments/item/ItemInput/ (Lnet/minecraft/core/Holder;Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/commands/arguments/item/ItemInput/ (Lnet/minecraft/core/Holder;Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/commands/arguments/item/ItemInput/m_120979_ ()Lnet/minecraft/world/item/Item; net/minecraft/commands/arguments/item/ItemInput/getItem ()Lnet/minecraft/world/item/Item; +MD: net/minecraft/commands/arguments/item/ItemInput/m_120980_ (IZ)Lnet/minecraft/world/item/ItemStack; net/minecraft/commands/arguments/item/ItemInput/createItemStack (IZ)Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/commands/arguments/item/ItemInput/m_120985_ (Ljava/lang/Object;Ljava/lang/Object;)Lcom/mojang/brigadier/Message; net/minecraft/commands/arguments/item/ItemInput/lambda$static$0 (Ljava/lang/Object;Ljava/lang/Object;)Lcom/mojang/brigadier/Message; +MD: net/minecraft/commands/arguments/item/ItemInput/m_120988_ ()Ljava/lang/String; net/minecraft/commands/arguments/item/ItemInput/serialize ()Ljava/lang/String; +MD: net/minecraft/commands/arguments/item/ItemInput/m_235284_ ()Ljava/lang/String; net/minecraft/commands/arguments/item/ItemInput/getItemName ()Ljava/lang/String; +MD: net/minecraft/commands/arguments/item/ItemInput/m_235285_ ()Ljava/lang/Object; net/minecraft/commands/arguments/item/ItemInput/lambda$getItemName$1 ()Ljava/lang/Object; +MD: net/minecraft/commands/arguments/item/ItemInput/test (Ljava/lang/Object;)Z net/minecraft/commands/arguments/item/ItemInput/test (Ljava/lang/Object;)Z +MD: net/minecraft/commands/arguments/item/ItemInput/test (Lnet/minecraft/world/item/ItemStack;)Z net/minecraft/commands/arguments/item/ItemInput/test (Lnet/minecraft/world/item/ItemStack;)Z +MD: net/minecraft/commands/arguments/item/ItemParser/ ()V net/minecraft/commands/arguments/item/ItemParser/ ()V +MD: net/minecraft/commands/arguments/item/ItemParser/ (Lnet/minecraft/core/HolderLookup;Lcom/mojang/brigadier/StringReader;Z)V net/minecraft/commands/arguments/item/ItemParser/ (Lnet/minecraft/core/HolderLookup;Lcom/mojang/brigadier/StringReader;Z)V +MD: net/minecraft/commands/arguments/item/ItemParser/m_121012_ (Ljava/lang/Object;)Lcom/mojang/brigadier/Message; net/minecraft/commands/arguments/item/ItemParser/lambda$static$0 (Ljava/lang/Object;)Lcom/mojang/brigadier/Message; +MD: net/minecraft/commands/arguments/item/ItemParser/m_121026_ ()V net/minecraft/commands/arguments/item/ItemParser/readItem ()V +MD: net/minecraft/commands/arguments/item/ItemParser/m_121030_ ()V net/minecraft/commands/arguments/item/ItemParser/readTag ()V +MD: net/minecraft/commands/arguments/item/ItemParser/m_121031_ ()V net/minecraft/commands/arguments/item/ItemParser/readNbt ()V +MD: net/minecraft/commands/arguments/item/ItemParser/m_235294_ (ILnet/minecraft/resources/ResourceLocation;)Lcom/mojang/brigadier/exceptions/CommandSyntaxException; net/minecraft/commands/arguments/item/ItemParser/lambda$readTag$6 (ILnet/minecraft/resources/ResourceLocation;)Lcom/mojang/brigadier/exceptions/CommandSyntaxException; +MD: net/minecraft/commands/arguments/item/ItemParser/m_235297_ (Lcom/mojang/brigadier/suggestion/SuggestionsBuilder;)Ljava/util/concurrent/CompletableFuture; net/minecraft/commands/arguments/item/ItemParser/suggestOpenNbt (Lcom/mojang/brigadier/suggestion/SuggestionsBuilder;)Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/commands/arguments/item/ItemParser/m_235299_ (Lnet/minecraft/commands/arguments/item/ItemParser;Lnet/minecraft/core/Holder;)Lnet/minecraft/commands/arguments/item/ItemParser$ItemResult; net/minecraft/commands/arguments/item/ItemParser/lambda$parseForTesting$3 (Lnet/minecraft/commands/arguments/item/ItemParser;Lnet/minecraft/core/Holder;)Lnet/minecraft/commands/arguments/item/ItemParser$ItemResult; +MD: net/minecraft/commands/arguments/item/ItemParser/m_235302_ (Lnet/minecraft/commands/arguments/item/ItemParser;Lnet/minecraft/core/HolderSet;)Lnet/minecraft/commands/arguments/item/ItemParser$TagResult; net/minecraft/commands/arguments/item/ItemParser/lambda$parseForTesting$4 (Lnet/minecraft/commands/arguments/item/ItemParser;Lnet/minecraft/core/HolderSet;)Lnet/minecraft/commands/arguments/item/ItemParser$TagResult; +MD: net/minecraft/commands/arguments/item/ItemParser/m_235305_ (Lnet/minecraft/core/HolderLookup;Lcom/mojang/brigadier/StringReader;)Lnet/minecraft/commands/arguments/item/ItemParser$ItemResult; net/minecraft/commands/arguments/item/ItemParser/parseForItem (Lnet/minecraft/core/HolderLookup;Lcom/mojang/brigadier/StringReader;)Lnet/minecraft/commands/arguments/item/ItemParser$ItemResult; +MD: net/minecraft/commands/arguments/item/ItemParser/m_235308_ (Lnet/minecraft/core/HolderLookup;Lcom/mojang/brigadier/suggestion/SuggestionsBuilder;Z)Ljava/util/concurrent/CompletableFuture; net/minecraft/commands/arguments/item/ItemParser/fillSuggestions (Lnet/minecraft/core/HolderLookup;Lcom/mojang/brigadier/suggestion/SuggestionsBuilder;Z)Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/commands/arguments/item/ItemParser/m_235312_ (Ljava/lang/Object;)Lcom/mojang/brigadier/Message; net/minecraft/commands/arguments/item/ItemParser/lambda$static$1 (Ljava/lang/Object;)Lcom/mojang/brigadier/Message; +MD: net/minecraft/commands/arguments/item/ItemParser/m_235314_ (ILnet/minecraft/resources/ResourceLocation;)Lcom/mojang/brigadier/exceptions/CommandSyntaxException; net/minecraft/commands/arguments/item/ItemParser/lambda$readItem$5 (ILnet/minecraft/resources/ResourceLocation;)Lcom/mojang/brigadier/exceptions/CommandSyntaxException; +MD: net/minecraft/commands/arguments/item/ItemParser/m_235317_ (Lcom/mojang/brigadier/suggestion/SuggestionsBuilder;)Ljava/util/concurrent/CompletableFuture; net/minecraft/commands/arguments/item/ItemParser/suggestTag (Lcom/mojang/brigadier/suggestion/SuggestionsBuilder;)Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/commands/arguments/item/ItemParser/m_235319_ (Lnet/minecraft/core/HolderLookup;Lcom/mojang/brigadier/StringReader;)Lcom/mojang/datafixers/util/Either; net/minecraft/commands/arguments/item/ItemParser/parseForTesting (Lnet/minecraft/core/HolderLookup;Lcom/mojang/brigadier/StringReader;)Lcom/mojang/datafixers/util/Either; +MD: net/minecraft/commands/arguments/item/ItemParser/m_235322_ (Lcom/mojang/brigadier/suggestion/SuggestionsBuilder;)Ljava/util/concurrent/CompletableFuture; net/minecraft/commands/arguments/item/ItemParser/suggestItem (Lcom/mojang/brigadier/suggestion/SuggestionsBuilder;)Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/commands/arguments/item/ItemParser/m_235324_ ()V net/minecraft/commands/arguments/item/ItemParser/parse ()V +MD: net/minecraft/commands/arguments/item/ItemParser/m_235325_ (Lcom/mojang/brigadier/suggestion/SuggestionsBuilder;)Ljava/util/concurrent/CompletableFuture; net/minecraft/commands/arguments/item/ItemParser/suggestItemIdOrTag (Lcom/mojang/brigadier/suggestion/SuggestionsBuilder;)Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/commands/arguments/item/ItemParser/m_235327_ ()Ljava/lang/IllegalStateException; net/minecraft/commands/arguments/item/ItemParser/lambda$parseForItem$2 ()Ljava/lang/IllegalStateException; +MD: net/minecraft/commands/arguments/item/ItemParser$ItemResult/ (Lnet/minecraft/core/Holder;Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/commands/arguments/item/ItemParser$ItemResult/ (Lnet/minecraft/core/Holder;Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/commands/arguments/item/ItemParser$ItemResult/equals (Ljava/lang/Object;)Z net/minecraft/commands/arguments/item/ItemParser$ItemResult/equals (Ljava/lang/Object;)Z +MD: net/minecraft/commands/arguments/item/ItemParser$ItemResult/f_235328_ ()Lnet/minecraft/core/Holder; net/minecraft/commands/arguments/item/ItemParser$ItemResult/item ()Lnet/minecraft/core/Holder; +MD: net/minecraft/commands/arguments/item/ItemParser$ItemResult/f_235329_ ()Lnet/minecraft/nbt/CompoundTag; net/minecraft/commands/arguments/item/ItemParser$ItemResult/nbt ()Lnet/minecraft/nbt/CompoundTag; +MD: net/minecraft/commands/arguments/item/ItemParser$ItemResult/hashCode ()I net/minecraft/commands/arguments/item/ItemParser$ItemResult/hashCode ()I +MD: net/minecraft/commands/arguments/item/ItemParser$ItemResult/toString ()Ljava/lang/String; net/minecraft/commands/arguments/item/ItemParser$ItemResult/toString ()Ljava/lang/String; +MD: net/minecraft/commands/arguments/item/ItemParser$TagResult/ (Lnet/minecraft/core/HolderSet;Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/commands/arguments/item/ItemParser$TagResult/ (Lnet/minecraft/core/HolderSet;Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/commands/arguments/item/ItemParser$TagResult/equals (Ljava/lang/Object;)Z net/minecraft/commands/arguments/item/ItemParser$TagResult/equals (Ljava/lang/Object;)Z +MD: net/minecraft/commands/arguments/item/ItemParser$TagResult/f_235339_ ()Lnet/minecraft/core/HolderSet; net/minecraft/commands/arguments/item/ItemParser$TagResult/tag ()Lnet/minecraft/core/HolderSet; +MD: net/minecraft/commands/arguments/item/ItemParser$TagResult/f_235340_ ()Lnet/minecraft/nbt/CompoundTag; net/minecraft/commands/arguments/item/ItemParser$TagResult/nbt ()Lnet/minecraft/nbt/CompoundTag; +MD: net/minecraft/commands/arguments/item/ItemParser$TagResult/hashCode ()I net/minecraft/commands/arguments/item/ItemParser$TagResult/hashCode ()I +MD: net/minecraft/commands/arguments/item/ItemParser$TagResult/toString ()Ljava/lang/String; net/minecraft/commands/arguments/item/ItemParser$TagResult/toString ()Ljava/lang/String; +MD: net/minecraft/commands/arguments/item/ItemPredicateArgument/ ()V net/minecraft/commands/arguments/item/ItemPredicateArgument/ ()V +MD: net/minecraft/commands/arguments/item/ItemPredicateArgument/ (Lnet/minecraft/commands/CommandBuildContext;)V net/minecraft/commands/arguments/item/ItemPredicateArgument/ (Lnet/minecraft/commands/CommandBuildContext;)V +MD: net/minecraft/commands/arguments/item/ItemPredicateArgument/getExamples ()Ljava/util/Collection; net/minecraft/commands/arguments/item/ItemPredicateArgument/getExamples ()Ljava/util/Collection; +MD: net/minecraft/commands/arguments/item/ItemPredicateArgument/listSuggestions (Lcom/mojang/brigadier/context/CommandContext;Lcom/mojang/brigadier/suggestion/SuggestionsBuilder;)Ljava/util/concurrent/CompletableFuture; net/minecraft/commands/arguments/item/ItemPredicateArgument/listSuggestions (Lcom/mojang/brigadier/context/CommandContext;Lcom/mojang/brigadier/suggestion/SuggestionsBuilder;)Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/commands/arguments/item/ItemPredicateArgument/m_121040_ (Lcom/mojang/brigadier/context/CommandContext;Ljava/lang/String;)Ljava/util/function/Predicate; net/minecraft/commands/arguments/item/ItemPredicateArgument/getItemPredicate (Lcom/mojang/brigadier/context/CommandContext;Ljava/lang/String;)Ljava/util/function/Predicate; +MD: net/minecraft/commands/arguments/item/ItemPredicateArgument/m_235353_ (Lnet/minecraft/commands/CommandBuildContext;)Lnet/minecraft/commands/arguments/item/ItemPredicateArgument; net/minecraft/commands/arguments/item/ItemPredicateArgument/itemPredicate (Lnet/minecraft/commands/CommandBuildContext;)Lnet/minecraft/commands/arguments/item/ItemPredicateArgument; +MD: net/minecraft/commands/arguments/item/ItemPredicateArgument/m_235355_ (Lnet/minecraft/commands/arguments/item/ItemParser$ItemResult;)Lnet/minecraft/commands/arguments/item/ItemPredicateArgument$Result; net/minecraft/commands/arguments/item/ItemPredicateArgument/lambda$parse$1 (Lnet/minecraft/commands/arguments/item/ItemParser$ItemResult;)Lnet/minecraft/commands/arguments/item/ItemPredicateArgument$Result; +MD: net/minecraft/commands/arguments/item/ItemPredicateArgument/m_235357_ (Lnet/minecraft/commands/arguments/item/ItemParser$ItemResult;Lnet/minecraft/core/Holder;)Z net/minecraft/commands/arguments/item/ItemPredicateArgument/lambda$parse$0 (Lnet/minecraft/commands/arguments/item/ItemParser$ItemResult;Lnet/minecraft/core/Holder;)Z +MD: net/minecraft/commands/arguments/item/ItemPredicateArgument/m_235360_ (Lnet/minecraft/commands/arguments/item/ItemParser$TagResult;)Lnet/minecraft/commands/arguments/item/ItemPredicateArgument$Result; net/minecraft/commands/arguments/item/ItemPredicateArgument/lambda$parse$2 (Lnet/minecraft/commands/arguments/item/ItemParser$TagResult;)Lnet/minecraft/commands/arguments/item/ItemPredicateArgument$Result; +MD: net/minecraft/commands/arguments/item/ItemPredicateArgument/m_235362_ (Ljava/util/function/Predicate;Lnet/minecraft/world/item/ItemStack;)Z net/minecraft/commands/arguments/item/ItemPredicateArgument/lambda$createResult$4 (Ljava/util/function/Predicate;Lnet/minecraft/world/item/ItemStack;)Z +MD: net/minecraft/commands/arguments/item/ItemPredicateArgument/m_235365_ (Ljava/util/function/Predicate;Lnet/minecraft/nbt/CompoundTag;)Lnet/minecraft/commands/arguments/item/ItemPredicateArgument$Result; net/minecraft/commands/arguments/item/ItemPredicateArgument/createResult (Ljava/util/function/Predicate;Lnet/minecraft/nbt/CompoundTag;)Lnet/minecraft/commands/arguments/item/ItemPredicateArgument$Result; +MD: net/minecraft/commands/arguments/item/ItemPredicateArgument/m_235368_ (Ljava/util/function/Predicate;Lnet/minecraft/nbt/CompoundTag;Lnet/minecraft/world/item/ItemStack;)Z net/minecraft/commands/arguments/item/ItemPredicateArgument/lambda$createResult$3 (Ljava/util/function/Predicate;Lnet/minecraft/nbt/CompoundTag;Lnet/minecraft/world/item/ItemStack;)Z +MD: net/minecraft/commands/arguments/item/ItemPredicateArgument/parse (Lcom/mojang/brigadier/StringReader;)Ljava/lang/Object; net/minecraft/commands/arguments/item/ItemPredicateArgument/parse (Lcom/mojang/brigadier/StringReader;)Ljava/lang/Object; +MD: net/minecraft/commands/arguments/item/ItemPredicateArgument/parse (Lcom/mojang/brigadier/StringReader;)Lnet/minecraft/commands/arguments/item/ItemPredicateArgument$Result; net/minecraft/commands/arguments/item/ItemPredicateArgument/parse (Lcom/mojang/brigadier/StringReader;)Lnet/minecraft/commands/arguments/item/ItemPredicateArgument$Result; +MD: net/minecraft/commands/arguments/selector/EntitySelector/ ()V net/minecraft/commands/arguments/selector/EntitySelector/ ()V +MD: net/minecraft/commands/arguments/selector/EntitySelector/ (IZZLjava/util/function/Predicate;Lnet/minecraft/advancements/critereon/MinMaxBounds$Doubles;Ljava/util/function/Function;Lnet/minecraft/world/phys/AABB;Ljava/util/function/BiConsumer;ZLjava/lang/String;Ljava/util/UUID;Lnet/minecraft/world/entity/EntityType;Z)V net/minecraft/commands/arguments/selector/EntitySelector/ (IZZLjava/util/function/Predicate;Lnet/minecraft/advancements/critereon/MinMaxBounds$Doubles;Ljava/util/function/Function;Lnet/minecraft/world/phys/AABB;Ljava/util/function/BiConsumer;ZLjava/lang/String;Ljava/util/UUID;Lnet/minecraft/world/entity/EntityType;Z)V +MD: net/minecraft/commands/arguments/selector/EntitySelector/m_121138_ ()I net/minecraft/commands/arguments/selector/EntitySelector/getMaxResults ()I +MD: net/minecraft/commands/arguments/selector/EntitySelector/m_121139_ (Lnet/minecraft/commands/CommandSourceStack;)Lnet/minecraft/world/entity/Entity; net/minecraft/commands/arguments/selector/EntitySelector/findSingleEntity (Lnet/minecraft/commands/CommandSourceStack;)Lnet/minecraft/world/entity/Entity; +MD: net/minecraft/commands/arguments/selector/EntitySelector/m_121141_ (Lnet/minecraft/world/phys/AABB;Lnet/minecraft/world/entity/Entity;)Z net/minecraft/commands/arguments/selector/EntitySelector/lambda$getPredicate$2 (Lnet/minecraft/world/phys/AABB;Lnet/minecraft/world/entity/Entity;)Z +MD: net/minecraft/commands/arguments/selector/EntitySelector/m_121144_ (Lnet/minecraft/world/phys/Vec3;)Ljava/util/function/Predicate; net/minecraft/commands/arguments/selector/EntitySelector/getPredicate (Lnet/minecraft/world/phys/Vec3;)Ljava/util/function/Predicate; +MD: net/minecraft/commands/arguments/selector/EntitySelector/m_121146_ (Lnet/minecraft/world/phys/Vec3;Lnet/minecraft/world/entity/Entity;)Z net/minecraft/commands/arguments/selector/EntitySelector/lambda$getPredicate$3 (Lnet/minecraft/world/phys/Vec3;Lnet/minecraft/world/entity/Entity;)Z +MD: net/minecraft/commands/arguments/selector/EntitySelector/m_121149_ (Lnet/minecraft/world/phys/Vec3;Ljava/util/List;)Ljava/util/List; net/minecraft/commands/arguments/selector/EntitySelector/sortAndLimit (Lnet/minecraft/world/phys/Vec3;Ljava/util/List;)Ljava/util/List; +MD: net/minecraft/commands/arguments/selector/EntitySelector/m_121154_ (Ljava/util/List;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/phys/Vec3;Ljava/util/function/Predicate;)V net/minecraft/commands/arguments/selector/EntitySelector/addEntities (Ljava/util/List;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/phys/Vec3;Ljava/util/function/Predicate;)V +MD: net/minecraft/commands/arguments/selector/EntitySelector/m_121159_ ()Z net/minecraft/commands/arguments/selector/EntitySelector/includesEntities ()Z +MD: net/minecraft/commands/arguments/selector/EntitySelector/m_121160_ (Lnet/minecraft/commands/CommandSourceStack;)Ljava/util/List; net/minecraft/commands/arguments/selector/EntitySelector/findEntities (Lnet/minecraft/commands/CommandSourceStack;)Ljava/util/List; +MD: net/minecraft/commands/arguments/selector/EntitySelector/m_121162_ ()Z net/minecraft/commands/arguments/selector/EntitySelector/isSelfSelector ()Z +MD: net/minecraft/commands/arguments/selector/EntitySelector/m_121163_ (Lnet/minecraft/commands/CommandSourceStack;)Lnet/minecraft/server/level/ServerPlayer; net/minecraft/commands/arguments/selector/EntitySelector/findSinglePlayer (Lnet/minecraft/commands/CommandSourceStack;)Lnet/minecraft/server/level/ServerPlayer; +MD: net/minecraft/commands/arguments/selector/EntitySelector/m_121165_ ()Z net/minecraft/commands/arguments/selector/EntitySelector/isWorldLimited ()Z +MD: net/minecraft/commands/arguments/selector/EntitySelector/m_121166_ (Lnet/minecraft/commands/CommandSourceStack;)Ljava/util/List; net/minecraft/commands/arguments/selector/EntitySelector/findPlayers (Lnet/minecraft/commands/CommandSourceStack;)Ljava/util/List; +MD: net/minecraft/commands/arguments/selector/EntitySelector/m_121168_ (Lnet/minecraft/commands/CommandSourceStack;)V net/minecraft/commands/arguments/selector/EntitySelector/checkPermissions (Lnet/minecraft/commands/CommandSourceStack;)V +MD: net/minecraft/commands/arguments/selector/EntitySelector/m_175103_ (Ljava/util/List;)Lnet/minecraft/network/chat/Component; net/minecraft/commands/arguments/selector/EntitySelector/joinNames (Ljava/util/List;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/commands/arguments/selector/EntitySelector/m_175105_ ()Z net/minecraft/commands/arguments/selector/EntitySelector/usesSelector ()Z +MD: net/minecraft/commands/arguments/selector/EntitySelector/m_244752_ (Lnet/minecraft/commands/CommandSourceStack;Lnet/minecraft/world/entity/Entity;)Z net/minecraft/commands/arguments/selector/EntitySelector/lambda$findEntities$1 (Lnet/minecraft/commands/CommandSourceStack;Lnet/minecraft/world/entity/Entity;)Z +MD: net/minecraft/commands/arguments/selector/EntitySelector/m_245733_ (Lnet/minecraft/commands/CommandSourceStack;)Ljava/util/List; net/minecraft/commands/arguments/selector/EntitySelector/findEntitiesRaw (Lnet/minecraft/commands/CommandSourceStack;)Ljava/util/List; +MD: net/minecraft/commands/arguments/selector/EntitySelector/m_260772_ (Lnet/minecraft/world/phys/Vec3;Ljava/util/List;)V net/minecraft/commands/arguments/selector/EntitySelector/lambda$static$0 (Lnet/minecraft/world/phys/Vec3;Ljava/util/List;)V +MD: net/minecraft/commands/arguments/selector/EntitySelector/m_261276_ ()I net/minecraft/commands/arguments/selector/EntitySelector/getResultLimit ()I +MD: net/minecraft/commands/arguments/selector/EntitySelector$1/ ()V net/minecraft/commands/arguments/selector/EntitySelector$1/ ()V +MD: net/minecraft/commands/arguments/selector/EntitySelector$1/m_141992_ (Ljava/lang/Object;)Ljava/lang/Object; net/minecraft/commands/arguments/selector/EntitySelector$1/tryCast (Ljava/lang/Object;)Ljava/lang/Object; +MD: net/minecraft/commands/arguments/selector/EntitySelector$1/m_141992_ (Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/world/entity/Entity; net/minecraft/commands/arguments/selector/EntitySelector$1/tryCast (Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/world/entity/Entity; +MD: net/minecraft/commands/arguments/selector/EntitySelector$1/m_142225_ ()Ljava/lang/Class; net/minecraft/commands/arguments/selector/EntitySelector$1/getBaseClass ()Ljava/lang/Class; +MD: net/minecraft/commands/arguments/selector/EntitySelectorParser/ ()V net/minecraft/commands/arguments/selector/EntitySelectorParser/ ()V +MD: net/minecraft/commands/arguments/selector/EntitySelectorParser/ (Lcom/mojang/brigadier/StringReader;Z)V net/minecraft/commands/arguments/selector/EntitySelectorParser/ (Lcom/mojang/brigadier/StringReader;Z)V +MD: net/minecraft/commands/arguments/selector/EntitySelectorParser/ (Lcom/mojang/brigadier/StringReader;)V net/minecraft/commands/arguments/selector/EntitySelectorParser/ (Lcom/mojang/brigadier/StringReader;)V +MD: net/minecraft/commands/arguments/selector/EntitySelectorParser/m_121222_ ()Z net/minecraft/commands/arguments/selector/EntitySelectorParser/hasGamemodeNotEquals ()Z +MD: net/minecraft/commands/arguments/selector/EntitySelectorParser/m_121223_ ()Z net/minecraft/commands/arguments/selector/EntitySelectorParser/hasTeamEquals ()Z +MD: net/minecraft/commands/arguments/selector/EntitySelectorParser/m_121224_ ()V net/minecraft/commands/arguments/selector/EntitySelectorParser/setTypeLimitedInversely ()V +MD: net/minecraft/commands/arguments/selector/EntitySelectorParser/m_121225_ ()Z net/minecraft/commands/arguments/selector/EntitySelectorParser/isTypeLimited ()Z +MD: net/minecraft/commands/arguments/selector/EntitySelectorParser/m_121226_ ()Z net/minecraft/commands/arguments/selector/EntitySelectorParser/isTypeLimitedInversely ()Z +MD: net/minecraft/commands/arguments/selector/EntitySelectorParser/m_121227_ ()Z net/minecraft/commands/arguments/selector/EntitySelectorParser/hasScores ()Z +MD: net/minecraft/commands/arguments/selector/EntitySelectorParser/m_121228_ ()Z net/minecraft/commands/arguments/selector/EntitySelectorParser/hasAdvancements ()Z +MD: net/minecraft/commands/arguments/selector/EntitySelectorParser/m_121229_ ()V net/minecraft/commands/arguments/selector/EntitySelectorParser/finalizePredicates ()V +MD: net/minecraft/commands/arguments/selector/EntitySelectorParser/m_121230_ ()Lnet/minecraft/commands/arguments/selector/EntitySelector; net/minecraft/commands/arguments/selector/EntitySelectorParser/getSelector ()Lnet/minecraft/commands/arguments/selector/EntitySelector; +MD: net/minecraft/commands/arguments/selector/EntitySelectorParser/m_121231_ (D)V net/minecraft/commands/arguments/selector/EntitySelectorParser/setX (D)V +MD: net/minecraft/commands/arguments/selector/EntitySelectorParser/m_121233_ (DDD)Lnet/minecraft/world/phys/AABB; net/minecraft/commands/arguments/selector/EntitySelectorParser/createAabb (DDD)Lnet/minecraft/world/phys/AABB; +MD: net/minecraft/commands/arguments/selector/EntitySelectorParser/m_121237_ (I)V net/minecraft/commands/arguments/selector/EntitySelectorParser/setMaxResults (I)V +MD: net/minecraft/commands/arguments/selector/EntitySelectorParser/m_121241_ (Lnet/minecraft/world/entity/EntityType;)V net/minecraft/commands/arguments/selector/EntitySelectorParser/limitToType (Lnet/minecraft/world/entity/EntityType;)V +MD: net/minecraft/commands/arguments/selector/EntitySelectorParser/m_121245_ (Lnet/minecraft/advancements/critereon/MinMaxBounds$Ints;)V net/minecraft/commands/arguments/selector/EntitySelectorParser/setLevel (Lnet/minecraft/advancements/critereon/MinMaxBounds$Ints;)V +MD: net/minecraft/commands/arguments/selector/EntitySelectorParser/m_121247_ (Lcom/mojang/brigadier/suggestion/SuggestionsBuilder;)V net/minecraft/commands/arguments/selector/EntitySelectorParser/fillSelectorSuggestions (Lcom/mojang/brigadier/suggestion/SuggestionsBuilder;)V +MD: net/minecraft/commands/arguments/selector/EntitySelectorParser/m_121249_ (Lcom/mojang/brigadier/suggestion/SuggestionsBuilder;Ljava/util/function/Consumer;)Ljava/util/concurrent/CompletableFuture; net/minecraft/commands/arguments/selector/EntitySelectorParser/fillSuggestions (Lcom/mojang/brigadier/suggestion/SuggestionsBuilder;Ljava/util/function/Consumer;)Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/commands/arguments/selector/EntitySelectorParser/m_121252_ (Lnet/minecraft/advancements/critereon/WrappedMinMaxBounds;)V net/minecraft/commands/arguments/selector/EntitySelectorParser/setRotX (Lnet/minecraft/advancements/critereon/WrappedMinMaxBounds;)V +MD: net/minecraft/commands/arguments/selector/EntitySelectorParser/m_121254_ (Lnet/minecraft/advancements/critereon/WrappedMinMaxBounds;Ljava/util/function/ToDoubleFunction;)Ljava/util/function/Predicate; net/minecraft/commands/arguments/selector/EntitySelectorParser/createRotationPredicate (Lnet/minecraft/advancements/critereon/WrappedMinMaxBounds;Ljava/util/function/ToDoubleFunction;)Ljava/util/function/Predicate; +MD: net/minecraft/commands/arguments/selector/EntitySelectorParser/m_121257_ (Lnet/minecraft/world/phys/Vec3;)Lnet/minecraft/world/phys/Vec3; net/minecraft/commands/arguments/selector/EntitySelectorParser/lambda$getSelector$10 (Lnet/minecraft/world/phys/Vec3;)Lnet/minecraft/world/phys/Vec3; +MD: net/minecraft/commands/arguments/selector/EntitySelectorParser/m_121263_ (Lnet/minecraft/world/phys/Vec3;Ljava/util/List;)V net/minecraft/commands/arguments/selector/EntitySelectorParser/lambda$static$6 (Lnet/minecraft/world/phys/Vec3;Ljava/util/List;)V +MD: net/minecraft/commands/arguments/selector/EntitySelectorParser/m_121266_ (Ljava/lang/Object;)Lcom/mojang/brigadier/Message; net/minecraft/commands/arguments/selector/EntitySelectorParser/lambda$static$1 (Ljava/lang/Object;)Lcom/mojang/brigadier/Message; +MD: net/minecraft/commands/arguments/selector/EntitySelectorParser/m_121268_ (Ljava/util/function/BiConsumer;)V net/minecraft/commands/arguments/selector/EntitySelectorParser/setOrder (Ljava/util/function/BiConsumer;)V +MD: net/minecraft/commands/arguments/selector/EntitySelectorParser/m_121270_ (Ljava/util/function/BiFunction;)V net/minecraft/commands/arguments/selector/EntitySelectorParser/setSuggestions (Ljava/util/function/BiFunction;)V +MD: net/minecraft/commands/arguments/selector/EntitySelectorParser/m_121272_ (Ljava/util/function/Predicate;)V net/minecraft/commands/arguments/selector/EntitySelectorParser/addPredicate (Ljava/util/function/Predicate;)V +MD: net/minecraft/commands/arguments/selector/EntitySelectorParser/m_121279_ (Z)V net/minecraft/commands/arguments/selector/EntitySelectorParser/setIncludesEntities (Z)V +MD: net/minecraft/commands/arguments/selector/EntitySelectorParser/m_121281_ ()V net/minecraft/commands/arguments/selector/EntitySelectorParser/parseSelector ()V +MD: net/minecraft/commands/arguments/selector/EntitySelectorParser/m_121282_ (D)V net/minecraft/commands/arguments/selector/EntitySelectorParser/setY (D)V +MD: net/minecraft/commands/arguments/selector/EntitySelectorParser/m_121286_ (Lcom/mojang/brigadier/suggestion/SuggestionsBuilder;Ljava/util/function/Consumer;)Ljava/util/concurrent/CompletableFuture; net/minecraft/commands/arguments/selector/EntitySelectorParser/suggestNameOrSelector (Lcom/mojang/brigadier/suggestion/SuggestionsBuilder;Ljava/util/function/Consumer;)Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/commands/arguments/selector/EntitySelectorParser/m_121289_ (Lnet/minecraft/advancements/critereon/WrappedMinMaxBounds;)V net/minecraft/commands/arguments/selector/EntitySelectorParser/setRotY (Lnet/minecraft/advancements/critereon/WrappedMinMaxBounds;)V +MD: net/minecraft/commands/arguments/selector/EntitySelectorParser/m_121291_ (Lnet/minecraft/world/phys/Vec3;)Lnet/minecraft/world/phys/Vec3; net/minecraft/commands/arguments/selector/EntitySelectorParser/lambda$getSelector$9 (Lnet/minecraft/world/phys/Vec3;)Lnet/minecraft/world/phys/Vec3; +MD: net/minecraft/commands/arguments/selector/EntitySelectorParser/m_121297_ (Lnet/minecraft/world/phys/Vec3;Ljava/util/List;)V net/minecraft/commands/arguments/selector/EntitySelectorParser/lambda$static$5 (Lnet/minecraft/world/phys/Vec3;Ljava/util/List;)V +MD: net/minecraft/commands/arguments/selector/EntitySelectorParser/m_121300_ (Ljava/lang/Object;)Lcom/mojang/brigadier/Message; net/minecraft/commands/arguments/selector/EntitySelectorParser/lambda$static$0 (Ljava/lang/Object;)Lcom/mojang/brigadier/Message; +MD: net/minecraft/commands/arguments/selector/EntitySelectorParser/m_121302_ (Z)V net/minecraft/commands/arguments/selector/EntitySelectorParser/setHasNameEquals (Z)V +MD: net/minecraft/commands/arguments/selector/EntitySelectorParser/m_121304_ ()V net/minecraft/commands/arguments/selector/EntitySelectorParser/parseNameOrUUID ()V +MD: net/minecraft/commands/arguments/selector/EntitySelectorParser/m_121305_ (D)V net/minecraft/commands/arguments/selector/EntitySelectorParser/setZ (D)V +MD: net/minecraft/commands/arguments/selector/EntitySelectorParser/m_121309_ (Lcom/mojang/brigadier/suggestion/SuggestionsBuilder;Ljava/util/function/Consumer;)Ljava/util/concurrent/CompletableFuture; net/minecraft/commands/arguments/selector/EntitySelectorParser/suggestName (Lcom/mojang/brigadier/suggestion/SuggestionsBuilder;Ljava/util/function/Consumer;)Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/commands/arguments/selector/EntitySelectorParser/m_121312_ (Lnet/minecraft/world/phys/Vec3;Ljava/util/List;)V net/minecraft/commands/arguments/selector/EntitySelectorParser/lambda$static$3 (Lnet/minecraft/world/phys/Vec3;Ljava/util/List;)V +MD: net/minecraft/commands/arguments/selector/EntitySelectorParser/m_121315_ (Z)V net/minecraft/commands/arguments/selector/EntitySelectorParser/setHasNameNotEquals (Z)V +MD: net/minecraft/commands/arguments/selector/EntitySelectorParser/m_121317_ ()V net/minecraft/commands/arguments/selector/EntitySelectorParser/parseOptions ()V +MD: net/minecraft/commands/arguments/selector/EntitySelectorParser/m_121318_ (D)V net/minecraft/commands/arguments/selector/EntitySelectorParser/setDeltaX (D)V +MD: net/minecraft/commands/arguments/selector/EntitySelectorParser/m_121320_ (Lnet/minecraft/world/entity/Entity;)Z net/minecraft/commands/arguments/selector/EntitySelectorParser/lambda$new$8 (Lnet/minecraft/world/entity/Entity;)Z +MD: net/minecraft/commands/arguments/selector/EntitySelectorParser/m_121322_ (Lcom/mojang/brigadier/suggestion/SuggestionsBuilder;Ljava/util/function/Consumer;)Ljava/util/concurrent/CompletableFuture; net/minecraft/commands/arguments/selector/EntitySelectorParser/suggestSelector (Lcom/mojang/brigadier/suggestion/SuggestionsBuilder;Ljava/util/function/Consumer;)Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/commands/arguments/selector/EntitySelectorParser/m_121328_ (Z)V net/minecraft/commands/arguments/selector/EntitySelectorParser/setLimited (Z)V +MD: net/minecraft/commands/arguments/selector/EntitySelectorParser/m_121330_ ()Z net/minecraft/commands/arguments/selector/EntitySelectorParser/shouldInvertValue ()Z +MD: net/minecraft/commands/arguments/selector/EntitySelectorParser/m_121331_ (D)V net/minecraft/commands/arguments/selector/EntitySelectorParser/setDeltaY (D)V +MD: net/minecraft/commands/arguments/selector/EntitySelectorParser/m_121333_ (Lcom/mojang/brigadier/suggestion/SuggestionsBuilder;Ljava/util/function/Consumer;)Ljava/util/concurrent/CompletableFuture; net/minecraft/commands/arguments/selector/EntitySelectorParser/suggestOpenOptions (Lcom/mojang/brigadier/suggestion/SuggestionsBuilder;Ljava/util/function/Consumer;)Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/commands/arguments/selector/EntitySelectorParser/m_121336_ (Z)V net/minecraft/commands/arguments/selector/EntitySelectorParser/setSorted (Z)V +MD: net/minecraft/commands/arguments/selector/EntitySelectorParser/m_121338_ ()Z net/minecraft/commands/arguments/selector/EntitySelectorParser/isTag ()Z +MD: net/minecraft/commands/arguments/selector/EntitySelectorParser/m_121339_ (D)V net/minecraft/commands/arguments/selector/EntitySelectorParser/setDeltaZ (D)V +MD: net/minecraft/commands/arguments/selector/EntitySelectorParser/m_121341_ (Lcom/mojang/brigadier/suggestion/SuggestionsBuilder;Ljava/util/function/Consumer;)Ljava/util/concurrent/CompletableFuture; net/minecraft/commands/arguments/selector/EntitySelectorParser/suggestOptionsKeyOrClose (Lcom/mojang/brigadier/suggestion/SuggestionsBuilder;Ljava/util/function/Consumer;)Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/commands/arguments/selector/EntitySelectorParser/m_121344_ (Z)V net/minecraft/commands/arguments/selector/EntitySelectorParser/setHasGamemodeEquals (Z)V +MD: net/minecraft/commands/arguments/selector/EntitySelectorParser/m_121346_ ()Lcom/mojang/brigadier/StringReader; net/minecraft/commands/arguments/selector/EntitySelectorParser/getReader ()Lcom/mojang/brigadier/StringReader; +MD: net/minecraft/commands/arguments/selector/EntitySelectorParser/m_121347_ (Lcom/mojang/brigadier/suggestion/SuggestionsBuilder;Ljava/util/function/Consumer;)Ljava/util/concurrent/CompletableFuture; net/minecraft/commands/arguments/selector/EntitySelectorParser/suggestOptionsKey (Lcom/mojang/brigadier/suggestion/SuggestionsBuilder;Ljava/util/function/Consumer;)Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/commands/arguments/selector/EntitySelectorParser/m_121350_ (Z)V net/minecraft/commands/arguments/selector/EntitySelectorParser/setHasGamemodeNotEquals (Z)V +MD: net/minecraft/commands/arguments/selector/EntitySelectorParser/m_121352_ ()V net/minecraft/commands/arguments/selector/EntitySelectorParser/setWorldLimited ()V +MD: net/minecraft/commands/arguments/selector/EntitySelectorParser/m_121353_ (Lcom/mojang/brigadier/suggestion/SuggestionsBuilder;Ljava/util/function/Consumer;)Ljava/util/concurrent/CompletableFuture; net/minecraft/commands/arguments/selector/EntitySelectorParser/suggestOptionsNextOrClose (Lcom/mojang/brigadier/suggestion/SuggestionsBuilder;Ljava/util/function/Consumer;)Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/commands/arguments/selector/EntitySelectorParser/m_121356_ (Z)V net/minecraft/commands/arguments/selector/EntitySelectorParser/setHasTeamEquals (Z)V +MD: net/minecraft/commands/arguments/selector/EntitySelectorParser/m_121359_ (Z)V net/minecraft/commands/arguments/selector/EntitySelectorParser/setHasTeamNotEquals (Z)V +MD: net/minecraft/commands/arguments/selector/EntitySelectorParser/m_121361_ ()Lnet/minecraft/advancements/critereon/MinMaxBounds$Ints; net/minecraft/commands/arguments/selector/EntitySelectorParser/getLevel ()Lnet/minecraft/advancements/critereon/MinMaxBounds$Ints; +MD: net/minecraft/commands/arguments/selector/EntitySelectorParser/m_121362_ (Lcom/mojang/brigadier/suggestion/SuggestionsBuilder;Ljava/util/function/Consumer;)Ljava/util/concurrent/CompletableFuture; net/minecraft/commands/arguments/selector/EntitySelectorParser/lambda$static$7 (Lcom/mojang/brigadier/suggestion/SuggestionsBuilder;Ljava/util/function/Consumer;)Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/commands/arguments/selector/EntitySelectorParser/m_121365_ (Z)V net/minecraft/commands/arguments/selector/EntitySelectorParser/setHasScores (Z)V +MD: net/minecraft/commands/arguments/selector/EntitySelectorParser/m_121367_ ()Lnet/minecraft/advancements/critereon/WrappedMinMaxBounds; net/minecraft/commands/arguments/selector/EntitySelectorParser/getRotX ()Lnet/minecraft/advancements/critereon/WrappedMinMaxBounds; +MD: net/minecraft/commands/arguments/selector/EntitySelectorParser/m_121368_ (Z)V net/minecraft/commands/arguments/selector/EntitySelectorParser/setHasAdvancements (Z)V +MD: net/minecraft/commands/arguments/selector/EntitySelectorParser/m_121370_ ()Lnet/minecraft/advancements/critereon/WrappedMinMaxBounds; net/minecraft/commands/arguments/selector/EntitySelectorParser/getRotY ()Lnet/minecraft/advancements/critereon/WrappedMinMaxBounds; +MD: net/minecraft/commands/arguments/selector/EntitySelectorParser/m_121371_ ()Ljava/lang/Double; net/minecraft/commands/arguments/selector/EntitySelectorParser/getX ()Ljava/lang/Double; +MD: net/minecraft/commands/arguments/selector/EntitySelectorParser/m_121372_ ()Ljava/lang/Double; net/minecraft/commands/arguments/selector/EntitySelectorParser/getY ()Ljava/lang/Double; +MD: net/minecraft/commands/arguments/selector/EntitySelectorParser/m_121373_ ()Ljava/lang/Double; net/minecraft/commands/arguments/selector/EntitySelectorParser/getZ ()Ljava/lang/Double; +MD: net/minecraft/commands/arguments/selector/EntitySelectorParser/m_121374_ ()Ljava/lang/Double; net/minecraft/commands/arguments/selector/EntitySelectorParser/getDeltaX ()Ljava/lang/Double; +MD: net/minecraft/commands/arguments/selector/EntitySelectorParser/m_121375_ ()Ljava/lang/Double; net/minecraft/commands/arguments/selector/EntitySelectorParser/getDeltaY ()Ljava/lang/Double; +MD: net/minecraft/commands/arguments/selector/EntitySelectorParser/m_121376_ ()Ljava/lang/Double; net/minecraft/commands/arguments/selector/EntitySelectorParser/getDeltaZ ()Ljava/lang/Double; +MD: net/minecraft/commands/arguments/selector/EntitySelectorParser/m_121377_ ()Lnet/minecraft/commands/arguments/selector/EntitySelector; net/minecraft/commands/arguments/selector/EntitySelectorParser/parse ()Lnet/minecraft/commands/arguments/selector/EntitySelector; +MD: net/minecraft/commands/arguments/selector/EntitySelectorParser/m_121378_ ()Z net/minecraft/commands/arguments/selector/EntitySelectorParser/isCurrentEntity ()Z +MD: net/minecraft/commands/arguments/selector/EntitySelectorParser/m_121379_ ()Z net/minecraft/commands/arguments/selector/EntitySelectorParser/hasNameEquals ()Z +MD: net/minecraft/commands/arguments/selector/EntitySelectorParser/m_121380_ ()Z net/minecraft/commands/arguments/selector/EntitySelectorParser/hasNameNotEquals ()Z +MD: net/minecraft/commands/arguments/selector/EntitySelectorParser/m_121381_ ()Z net/minecraft/commands/arguments/selector/EntitySelectorParser/isLimited ()Z +MD: net/minecraft/commands/arguments/selector/EntitySelectorParser/m_121382_ ()Z net/minecraft/commands/arguments/selector/EntitySelectorParser/isSorted ()Z +MD: net/minecraft/commands/arguments/selector/EntitySelectorParser/m_121383_ ()Z net/minecraft/commands/arguments/selector/EntitySelectorParser/hasGamemodeEquals ()Z +MD: net/minecraft/commands/arguments/selector/EntitySelectorParser/m_175124_ ()Z net/minecraft/commands/arguments/selector/EntitySelectorParser/hasTeamNotEquals ()Z +MD: net/minecraft/commands/arguments/selector/EntitySelectorParser/m_175127_ (Lnet/minecraft/advancements/critereon/MinMaxBounds$Doubles;)V net/minecraft/commands/arguments/selector/EntitySelectorParser/setDistance (Lnet/minecraft/advancements/critereon/MinMaxBounds$Doubles;)V +MD: net/minecraft/commands/arguments/selector/EntitySelectorParser/m_175129_ (Lnet/minecraft/world/phys/Vec3;Lnet/minecraft/world/entity/Entity;Lnet/minecraft/world/entity/Entity;)I net/minecraft/commands/arguments/selector/EntitySelectorParser/lambda$static$4 (Lnet/minecraft/world/phys/Vec3;Lnet/minecraft/world/entity/Entity;Lnet/minecraft/world/entity/Entity;)I +MD: net/minecraft/commands/arguments/selector/EntitySelectorParser/m_175133_ (Ljava/util/function/ToDoubleFunction;DDLnet/minecraft/world/entity/Entity;)Z net/minecraft/commands/arguments/selector/EntitySelectorParser/lambda$createRotationPredicate$12 (Ljava/util/function/ToDoubleFunction;DDLnet/minecraft/world/entity/Entity;)Z +MD: net/minecraft/commands/arguments/selector/EntitySelectorParser/m_175138_ (Lnet/minecraft/world/phys/Vec3;Lnet/minecraft/world/entity/Entity;Lnet/minecraft/world/entity/Entity;)I net/minecraft/commands/arguments/selector/EntitySelectorParser/lambda$static$2 (Lnet/minecraft/world/phys/Vec3;Lnet/minecraft/world/entity/Entity;Lnet/minecraft/world/entity/Entity;)I +MD: net/minecraft/commands/arguments/selector/EntitySelectorParser/m_175142_ ()Lnet/minecraft/advancements/critereon/MinMaxBounds$Doubles; net/minecraft/commands/arguments/selector/EntitySelectorParser/getDistance ()Lnet/minecraft/advancements/critereon/MinMaxBounds$Doubles; +MD: net/minecraft/commands/arguments/selector/EntitySelectorParser/m_175143_ (Lcom/mojang/brigadier/suggestion/SuggestionsBuilder;Ljava/util/function/Consumer;)Ljava/util/concurrent/CompletableFuture; net/minecraft/commands/arguments/selector/EntitySelectorParser/suggestEquals (Lcom/mojang/brigadier/suggestion/SuggestionsBuilder;Ljava/util/function/Consumer;)Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/commands/arguments/selector/EntitySelectorParser/m_175146_ ()Ljava/util/function/BiConsumer; net/minecraft/commands/arguments/selector/EntitySelectorParser/getOrder ()Ljava/util/function/BiConsumer; +MD: net/minecraft/commands/arguments/selector/EntitySelectorParser/m_287023_ (Lnet/minecraft/world/entity/Entity;)Z net/minecraft/commands/arguments/selector/EntitySelectorParser/lambda$finalizePredicates$11 (Lnet/minecraft/world/entity/Entity;)Z +MD: net/minecraft/commands/arguments/selector/options/EntitySelectorOptions/ ()V net/minecraft/commands/arguments/selector/options/EntitySelectorOptions/ ()V +MD: net/minecraft/commands/arguments/selector/options/EntitySelectorOptions/ ()V net/minecraft/commands/arguments/selector/options/EntitySelectorOptions/ ()V +MD: net/minecraft/commands/arguments/selector/options/EntitySelectorOptions/m_121394_ (Lnet/minecraft/commands/arguments/selector/EntitySelectorParser;)Z net/minecraft/commands/arguments/selector/options/EntitySelectorOptions/lambda$bootStrap$21 (Lnet/minecraft/commands/arguments/selector/EntitySelectorParser;)Z +MD: net/minecraft/commands/arguments/selector/options/EntitySelectorOptions/m_121396_ (Lnet/minecraft/commands/arguments/selector/EntitySelectorParser;)V net/minecraft/commands/arguments/selector/options/EntitySelectorOptions/lambda$bootStrap$20 (Lnet/minecraft/commands/arguments/selector/EntitySelectorParser;)V +MD: net/minecraft/commands/arguments/selector/options/EntitySelectorOptions/m_121398_ (Lnet/minecraft/commands/arguments/selector/EntitySelectorParser;)Z net/minecraft/commands/arguments/selector/options/EntitySelectorOptions/lambda$bootStrap$19 (Lnet/minecraft/commands/arguments/selector/EntitySelectorParser;)Z +MD: net/minecraft/commands/arguments/selector/options/EntitySelectorOptions/m_121400_ (Lnet/minecraft/commands/arguments/selector/EntitySelectorParser;)V net/minecraft/commands/arguments/selector/options/EntitySelectorOptions/lambda$bootStrap$18 (Lnet/minecraft/commands/arguments/selector/EntitySelectorParser;)V +MD: net/minecraft/commands/arguments/selector/options/EntitySelectorOptions/m_121402_ (Lnet/minecraft/commands/arguments/selector/EntitySelectorParser;)Z net/minecraft/commands/arguments/selector/options/EntitySelectorOptions/lambda$bootStrap$17 (Lnet/minecraft/commands/arguments/selector/EntitySelectorParser;)Z +MD: net/minecraft/commands/arguments/selector/options/EntitySelectorOptions/m_121404_ (Lnet/minecraft/commands/arguments/selector/EntitySelectorParser;)V net/minecraft/commands/arguments/selector/options/EntitySelectorOptions/lambda$bootStrap$16 (Lnet/minecraft/commands/arguments/selector/EntitySelectorParser;)V +MD: net/minecraft/commands/arguments/selector/options/EntitySelectorOptions/m_121406_ (Lnet/minecraft/commands/arguments/selector/EntitySelectorParser;)Z net/minecraft/commands/arguments/selector/options/EntitySelectorOptions/lambda$bootStrap$15 (Lnet/minecraft/commands/arguments/selector/EntitySelectorParser;)Z +MD: net/minecraft/commands/arguments/selector/options/EntitySelectorOptions/m_121408_ (Lnet/minecraft/commands/arguments/selector/EntitySelectorParser;)V net/minecraft/commands/arguments/selector/options/EntitySelectorOptions/lambda$bootStrap$14 (Lnet/minecraft/commands/arguments/selector/EntitySelectorParser;)V +MD: net/minecraft/commands/arguments/selector/options/EntitySelectorOptions/m_121410_ (Lnet/minecraft/commands/arguments/selector/EntitySelectorParser;)Z net/minecraft/commands/arguments/selector/options/EntitySelectorOptions/lambda$bootStrap$13 (Lnet/minecraft/commands/arguments/selector/EntitySelectorParser;)Z +MD: net/minecraft/commands/arguments/selector/options/EntitySelectorOptions/m_121412_ (Lnet/minecraft/commands/arguments/selector/EntitySelectorParser;)V net/minecraft/commands/arguments/selector/options/EntitySelectorOptions/lambda$bootStrap$12 (Lnet/minecraft/commands/arguments/selector/EntitySelectorParser;)V +MD: net/minecraft/commands/arguments/selector/options/EntitySelectorOptions/m_121414_ (Lnet/minecraft/commands/arguments/selector/EntitySelectorParser;)Z net/minecraft/commands/arguments/selector/options/EntitySelectorOptions/lambda$bootStrap$11 (Lnet/minecraft/commands/arguments/selector/EntitySelectorParser;)Z +MD: net/minecraft/commands/arguments/selector/options/EntitySelectorOptions/m_121416_ (Lnet/minecraft/commands/arguments/selector/EntitySelectorParser;)V net/minecraft/commands/arguments/selector/options/EntitySelectorOptions/lambda$bootStrap$10 (Lnet/minecraft/commands/arguments/selector/EntitySelectorParser;)V +MD: net/minecraft/commands/arguments/selector/options/EntitySelectorOptions/m_121418_ (Lnet/minecraft/commands/arguments/selector/EntitySelectorParser;)Z net/minecraft/commands/arguments/selector/options/EntitySelectorOptions/lambda$bootStrap$9 (Lnet/minecraft/commands/arguments/selector/EntitySelectorParser;)Z +MD: net/minecraft/commands/arguments/selector/options/EntitySelectorOptions/m_121420_ (Lnet/minecraft/commands/arguments/selector/EntitySelectorParser;)V net/minecraft/commands/arguments/selector/options/EntitySelectorOptions/lambda$bootStrap$8 (Lnet/minecraft/commands/arguments/selector/EntitySelectorParser;)V +MD: net/minecraft/commands/arguments/selector/options/EntitySelectorOptions/m_121422_ (Lnet/minecraft/commands/arguments/selector/EntitySelectorParser;)Z net/minecraft/commands/arguments/selector/options/EntitySelectorOptions/lambda$bootStrap$7 (Lnet/minecraft/commands/arguments/selector/EntitySelectorParser;)Z +MD: net/minecraft/commands/arguments/selector/options/EntitySelectorOptions/m_121424_ (Lnet/minecraft/commands/arguments/selector/EntitySelectorParser;)V net/minecraft/commands/arguments/selector/options/EntitySelectorOptions/lambda$bootStrap$6 (Lnet/minecraft/commands/arguments/selector/EntitySelectorParser;)V +MD: net/minecraft/commands/arguments/selector/options/EntitySelectorOptions/m_121426_ ()V net/minecraft/commands/arguments/selector/options/EntitySelectorOptions/bootStrap ()V +MD: net/minecraft/commands/arguments/selector/options/EntitySelectorOptions/m_121434_ (Lnet/minecraft/commands/arguments/selector/EntitySelectorParser;)Z net/minecraft/commands/arguments/selector/options/EntitySelectorOptions/lambda$bootStrap$63 (Lnet/minecraft/commands/arguments/selector/EntitySelectorParser;)Z +MD: net/minecraft/commands/arguments/selector/options/EntitySelectorOptions/m_121440_ (Lnet/minecraft/commands/arguments/selector/EntitySelectorParser;Lcom/mojang/brigadier/suggestion/SuggestionsBuilder;)V net/minecraft/commands/arguments/selector/options/EntitySelectorOptions/suggestNames (Lnet/minecraft/commands/arguments/selector/EntitySelectorParser;Lcom/mojang/brigadier/suggestion/SuggestionsBuilder;)V +MD: net/minecraft/commands/arguments/selector/options/EntitySelectorOptions/m_121447_ (Lnet/minecraft/commands/arguments/selector/EntitySelectorParser;Ljava/lang/String;I)Lnet/minecraft/commands/arguments/selector/options/EntitySelectorOptions$Modifier; net/minecraft/commands/arguments/selector/options/EntitySelectorOptions/get (Lnet/minecraft/commands/arguments/selector/EntitySelectorParser;Ljava/lang/String;I)Lnet/minecraft/commands/arguments/selector/options/EntitySelectorOptions$Modifier; +MD: net/minecraft/commands/arguments/selector/options/EntitySelectorOptions/m_121451_ (Ljava/lang/Object;)Lcom/mojang/brigadier/Message; net/minecraft/commands/arguments/selector/options/EntitySelectorOptions/lambda$static$4 (Ljava/lang/Object;)Lcom/mojang/brigadier/Message; +MD: net/minecraft/commands/arguments/selector/options/EntitySelectorOptions/m_121453_ (Ljava/lang/String;Lnet/minecraft/commands/arguments/selector/options/EntitySelectorOptions$Modifier;Ljava/util/function/Predicate;Lnet/minecraft/network/chat/Component;)V net/minecraft/commands/arguments/selector/options/EntitySelectorOptions/register (Ljava/lang/String;Lnet/minecraft/commands/arguments/selector/options/EntitySelectorOptions$Modifier;Ljava/util/function/Predicate;Lnet/minecraft/network/chat/Component;)V +MD: net/minecraft/commands/arguments/selector/options/EntitySelectorOptions/m_121486_ (Lnet/minecraft/commands/arguments/selector/EntitySelectorParser;)V net/minecraft/commands/arguments/selector/options/EntitySelectorOptions/lambda$bootStrap$62 (Lnet/minecraft/commands/arguments/selector/EntitySelectorParser;)V +MD: net/minecraft/commands/arguments/selector/options/EntitySelectorOptions/m_121492_ (Ljava/lang/Object;)Lcom/mojang/brigadier/Message; net/minecraft/commands/arguments/selector/options/EntitySelectorOptions/lambda$static$3 (Ljava/lang/Object;)Lcom/mojang/brigadier/Message; +MD: net/minecraft/commands/arguments/selector/options/EntitySelectorOptions/m_121505_ (Lnet/minecraft/commands/arguments/selector/EntitySelectorParser;)Z net/minecraft/commands/arguments/selector/options/EntitySelectorOptions/lambda$bootStrap$60 (Lnet/minecraft/commands/arguments/selector/EntitySelectorParser;)Z +MD: net/minecraft/commands/arguments/selector/options/EntitySelectorOptions/m_121507_ (Ljava/lang/Object;)Lcom/mojang/brigadier/Message; net/minecraft/commands/arguments/selector/options/EntitySelectorOptions/lambda$static$2 (Ljava/lang/Object;)Lcom/mojang/brigadier/Message; +MD: net/minecraft/commands/arguments/selector/options/EntitySelectorOptions/m_121513_ (Lnet/minecraft/commands/arguments/selector/EntitySelectorParser;)V net/minecraft/commands/arguments/selector/options/EntitySelectorOptions/lambda$bootStrap$59 (Lnet/minecraft/commands/arguments/selector/EntitySelectorParser;)V +MD: net/minecraft/commands/arguments/selector/options/EntitySelectorOptions/m_121515_ (Ljava/lang/Object;)Lcom/mojang/brigadier/Message; net/minecraft/commands/arguments/selector/options/EntitySelectorOptions/lambda$static$1 (Ljava/lang/Object;)Lcom/mojang/brigadier/Message; +MD: net/minecraft/commands/arguments/selector/options/EntitySelectorOptions/m_121517_ (Lnet/minecraft/commands/arguments/selector/EntitySelectorParser;)Z net/minecraft/commands/arguments/selector/options/EntitySelectorOptions/lambda$bootStrap$54 (Lnet/minecraft/commands/arguments/selector/EntitySelectorParser;)Z +MD: net/minecraft/commands/arguments/selector/options/EntitySelectorOptions/m_121519_ (Ljava/lang/Object;)Lcom/mojang/brigadier/Message; net/minecraft/commands/arguments/selector/options/EntitySelectorOptions/lambda$static$0 (Ljava/lang/Object;)Lcom/mojang/brigadier/Message; +MD: net/minecraft/commands/arguments/selector/options/EntitySelectorOptions/m_121521_ (Lnet/minecraft/commands/arguments/selector/EntitySelectorParser;)V net/minecraft/commands/arguments/selector/options/EntitySelectorOptions/lambda$bootStrap$53 (Lnet/minecraft/commands/arguments/selector/EntitySelectorParser;)V +MD: net/minecraft/commands/arguments/selector/options/EntitySelectorOptions/m_121523_ (Lnet/minecraft/commands/arguments/selector/EntitySelectorParser;)Z net/minecraft/commands/arguments/selector/options/EntitySelectorOptions/lambda$bootStrap$51 (Lnet/minecraft/commands/arguments/selector/EntitySelectorParser;)Z +MD: net/minecraft/commands/arguments/selector/options/EntitySelectorOptions/m_121525_ (Lnet/minecraft/commands/arguments/selector/EntitySelectorParser;)V net/minecraft/commands/arguments/selector/options/EntitySelectorOptions/lambda$bootStrap$50 (Lnet/minecraft/commands/arguments/selector/EntitySelectorParser;)V +MD: net/minecraft/commands/arguments/selector/options/EntitySelectorOptions/m_121527_ (Lnet/minecraft/commands/arguments/selector/EntitySelectorParser;)Z net/minecraft/commands/arguments/selector/options/EntitySelectorOptions/lambda$bootStrap$48 (Lnet/minecraft/commands/arguments/selector/EntitySelectorParser;)Z +MD: net/minecraft/commands/arguments/selector/options/EntitySelectorOptions/m_121529_ (Lnet/minecraft/commands/arguments/selector/EntitySelectorParser;)V net/minecraft/commands/arguments/selector/options/EntitySelectorOptions/lambda$bootStrap$47 (Lnet/minecraft/commands/arguments/selector/EntitySelectorParser;)V +MD: net/minecraft/commands/arguments/selector/options/EntitySelectorOptions/m_121531_ (Lnet/minecraft/commands/arguments/selector/EntitySelectorParser;)Z net/minecraft/commands/arguments/selector/options/EntitySelectorOptions/lambda$bootStrap$45 (Lnet/minecraft/commands/arguments/selector/EntitySelectorParser;)Z +MD: net/minecraft/commands/arguments/selector/options/EntitySelectorOptions/m_121533_ (Lnet/minecraft/commands/arguments/selector/EntitySelectorParser;)V net/minecraft/commands/arguments/selector/options/EntitySelectorOptions/lambda$bootStrap$44 (Lnet/minecraft/commands/arguments/selector/EntitySelectorParser;)V +MD: net/minecraft/commands/arguments/selector/options/EntitySelectorOptions/m_121535_ (Lnet/minecraft/commands/arguments/selector/EntitySelectorParser;)Z net/minecraft/commands/arguments/selector/options/EntitySelectorOptions/lambda$bootStrap$39 (Lnet/minecraft/commands/arguments/selector/EntitySelectorParser;)Z +MD: net/minecraft/commands/arguments/selector/options/EntitySelectorOptions/m_121537_ (Lnet/minecraft/commands/arguments/selector/EntitySelectorParser;)V net/minecraft/commands/arguments/selector/options/EntitySelectorOptions/lambda$bootStrap$38 (Lnet/minecraft/commands/arguments/selector/EntitySelectorParser;)V +MD: net/minecraft/commands/arguments/selector/options/EntitySelectorOptions/m_121539_ (Lnet/minecraft/commands/arguments/selector/EntitySelectorParser;)Z net/minecraft/commands/arguments/selector/options/EntitySelectorOptions/lambda$bootStrap$36 (Lnet/minecraft/commands/arguments/selector/EntitySelectorParser;)Z +MD: net/minecraft/commands/arguments/selector/options/EntitySelectorOptions/m_121541_ (Lnet/minecraft/commands/arguments/selector/EntitySelectorParser;)V net/minecraft/commands/arguments/selector/options/EntitySelectorOptions/lambda$bootStrap$35 (Lnet/minecraft/commands/arguments/selector/EntitySelectorParser;)V +MD: net/minecraft/commands/arguments/selector/options/EntitySelectorOptions/m_121543_ (Lnet/minecraft/commands/arguments/selector/EntitySelectorParser;)Z net/minecraft/commands/arguments/selector/options/EntitySelectorOptions/lambda$bootStrap$32 (Lnet/minecraft/commands/arguments/selector/EntitySelectorParser;)Z +MD: net/minecraft/commands/arguments/selector/options/EntitySelectorOptions/m_121547_ (Lnet/minecraft/commands/arguments/selector/EntitySelectorParser;)Z net/minecraft/commands/arguments/selector/options/EntitySelectorOptions/lambda$bootStrap$29 (Lnet/minecraft/commands/arguments/selector/EntitySelectorParser;)Z +MD: net/minecraft/commands/arguments/selector/options/EntitySelectorOptions/m_121549_ (Lnet/minecraft/commands/arguments/selector/EntitySelectorParser;)V net/minecraft/commands/arguments/selector/options/EntitySelectorOptions/lambda$bootStrap$28 (Lnet/minecraft/commands/arguments/selector/EntitySelectorParser;)V +MD: net/minecraft/commands/arguments/selector/options/EntitySelectorOptions/m_121551_ (Lnet/minecraft/commands/arguments/selector/EntitySelectorParser;)Z net/minecraft/commands/arguments/selector/options/EntitySelectorOptions/lambda$bootStrap$27 (Lnet/minecraft/commands/arguments/selector/EntitySelectorParser;)Z +MD: net/minecraft/commands/arguments/selector/options/EntitySelectorOptions/m_121553_ (Lnet/minecraft/commands/arguments/selector/EntitySelectorParser;)V net/minecraft/commands/arguments/selector/options/EntitySelectorOptions/lambda$bootStrap$26 (Lnet/minecraft/commands/arguments/selector/EntitySelectorParser;)V +MD: net/minecraft/commands/arguments/selector/options/EntitySelectorOptions/m_121555_ (Lnet/minecraft/commands/arguments/selector/EntitySelectorParser;)Z net/minecraft/commands/arguments/selector/options/EntitySelectorOptions/lambda$bootStrap$25 (Lnet/minecraft/commands/arguments/selector/EntitySelectorParser;)Z +MD: net/minecraft/commands/arguments/selector/options/EntitySelectorOptions/m_121557_ (Lnet/minecraft/commands/arguments/selector/EntitySelectorParser;)V net/minecraft/commands/arguments/selector/options/EntitySelectorOptions/lambda$bootStrap$24 (Lnet/minecraft/commands/arguments/selector/EntitySelectorParser;)V +MD: net/minecraft/commands/arguments/selector/options/EntitySelectorOptions/m_121559_ (Lnet/minecraft/commands/arguments/selector/EntitySelectorParser;)Z net/minecraft/commands/arguments/selector/options/EntitySelectorOptions/lambda$bootStrap$23 (Lnet/minecraft/commands/arguments/selector/EntitySelectorParser;)Z +MD: net/minecraft/commands/arguments/selector/options/EntitySelectorOptions/m_121561_ (Lnet/minecraft/commands/arguments/selector/EntitySelectorParser;)V net/minecraft/commands/arguments/selector/options/EntitySelectorOptions/lambda$bootStrap$22 (Lnet/minecraft/commands/arguments/selector/EntitySelectorParser;)V +MD: net/minecraft/commands/arguments/selector/options/EntitySelectorOptions/m_175148_ (Lnet/minecraft/world/entity/EntityType;ZLnet/minecraft/world/entity/Entity;)Z net/minecraft/commands/arguments/selector/options/EntitySelectorOptions/lambda$bootStrap$43 (Lnet/minecraft/world/entity/EntityType;ZLnet/minecraft/world/entity/Entity;)Z +MD: net/minecraft/commands/arguments/selector/options/EntitySelectorOptions/m_175152_ (Lcom/mojang/brigadier/suggestion/SuggestionsBuilder;Ljava/util/function/Consumer;)Ljava/util/concurrent/CompletableFuture; net/minecraft/commands/arguments/selector/options/EntitySelectorOptions/lambda$bootStrap$30 (Lcom/mojang/brigadier/suggestion/SuggestionsBuilder;Ljava/util/function/Consumer;)Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/commands/arguments/selector/options/EntitySelectorOptions/m_175155_ (Lnet/minecraft/commands/arguments/selector/EntitySelectorParser;ILnet/minecraft/resources/ResourceLocation;)Lcom/mojang/brigadier/exceptions/CommandSyntaxException; net/minecraft/commands/arguments/selector/options/EntitySelectorOptions/lambda$bootStrap$42 (Lnet/minecraft/commands/arguments/selector/EntitySelectorParser;ILnet/minecraft/resources/ResourceLocation;)Lcom/mojang/brigadier/exceptions/CommandSyntaxException; +MD: net/minecraft/commands/arguments/selector/options/EntitySelectorOptions/m_175163_ (Ljava/lang/String;ZLnet/minecraft/world/entity/Entity;)Z net/minecraft/commands/arguments/selector/options/EntitySelectorOptions/lambda$bootStrap$46 (Ljava/lang/String;ZLnet/minecraft/world/entity/Entity;)Z +MD: net/minecraft/commands/arguments/selector/options/EntitySelectorOptions/m_175167_ (Ljava/util/Map;Lnet/minecraft/advancements/AdvancementProgress;)Z net/minecraft/commands/arguments/selector/options/EntitySelectorOptions/lambda$bootStrap$56 (Ljava/util/Map;Lnet/minecraft/advancements/AdvancementProgress;)Z +MD: net/minecraft/commands/arguments/selector/options/EntitySelectorOptions/m_175170_ (Ljava/util/Map;Lnet/minecraft/world/entity/Entity;)Z net/minecraft/commands/arguments/selector/options/EntitySelectorOptions/lambda$bootStrap$58 (Ljava/util/Map;Lnet/minecraft/world/entity/Entity;)Z +MD: net/minecraft/commands/arguments/selector/options/EntitySelectorOptions/m_175173_ (Lnet/minecraft/nbt/CompoundTag;ZLnet/minecraft/world/entity/Entity;)Z net/minecraft/commands/arguments/selector/options/EntitySelectorOptions/lambda$bootStrap$49 (Lnet/minecraft/nbt/CompoundTag;ZLnet/minecraft/world/entity/Entity;)Z +MD: net/minecraft/commands/arguments/selector/options/EntitySelectorOptions/m_175181_ (ZLnet/minecraft/advancements/AdvancementProgress;)Z net/minecraft/commands/arguments/selector/options/EntitySelectorOptions/lambda$bootStrap$57 (ZLnet/minecraft/advancements/AdvancementProgress;)Z +MD: net/minecraft/commands/arguments/selector/options/EntitySelectorOptions/m_175184_ (ZLnet/minecraft/advancements/CriterionProgress;)Z net/minecraft/commands/arguments/selector/options/EntitySelectorOptions/lambda$bootStrap$55 (ZLnet/minecraft/advancements/CriterionProgress;)Z +MD: net/minecraft/commands/arguments/selector/options/EntitySelectorOptions/m_175187_ (ZLnet/minecraft/world/level/GameType;Lnet/minecraft/world/entity/Entity;)Z net/minecraft/commands/arguments/selector/options/EntitySelectorOptions/lambda$bootStrap$34 (ZLnet/minecraft/world/level/GameType;Lnet/minecraft/world/entity/Entity;)Z +MD: net/minecraft/commands/arguments/selector/options/EntitySelectorOptions/m_175191_ (Lnet/minecraft/commands/arguments/selector/EntitySelectorParser;Lcom/mojang/brigadier/suggestion/SuggestionsBuilder;Ljava/util/function/Consumer;)Ljava/util/concurrent/CompletableFuture; net/minecraft/commands/arguments/selector/options/EntitySelectorOptions/lambda$bootStrap$33 (Lnet/minecraft/commands/arguments/selector/EntitySelectorParser;Lcom/mojang/brigadier/suggestion/SuggestionsBuilder;Ljava/util/function/Consumer;)Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/commands/arguments/selector/options/EntitySelectorOptions/m_175195_ (Ljava/lang/String;ZLnet/minecraft/world/entity/Entity;)Z net/minecraft/commands/arguments/selector/options/EntitySelectorOptions/lambda$bootStrap$37 (Ljava/lang/String;ZLnet/minecraft/world/entity/Entity;)Z +MD: net/minecraft/commands/arguments/selector/options/EntitySelectorOptions/m_175199_ (Ljava/util/Map;Lnet/minecraft/world/entity/Entity;)Z net/minecraft/commands/arguments/selector/options/EntitySelectorOptions/lambda$bootStrap$52 (Ljava/util/Map;Lnet/minecraft/world/entity/Entity;)Z +MD: net/minecraft/commands/arguments/selector/options/EntitySelectorOptions/m_175206_ (Ljava/lang/String;ZLnet/minecraft/world/entity/Entity;)Z net/minecraft/commands/arguments/selector/options/EntitySelectorOptions/lambda$bootStrap$5 (Ljava/lang/String;ZLnet/minecraft/world/entity/Entity;)Z +MD: net/minecraft/commands/arguments/selector/options/EntitySelectorOptions/m_205688_ (Lnet/minecraft/tags/TagKey;ZLnet/minecraft/world/entity/Entity;)Z net/minecraft/commands/arguments/selector/options/EntitySelectorOptions/lambda$bootStrap$41 (Lnet/minecraft/tags/TagKey;ZLnet/minecraft/world/entity/Entity;)Z +MD: net/minecraft/commands/arguments/selector/options/EntitySelectorOptions/m_244754_ (Lnet/minecraft/commands/arguments/selector/EntitySelectorParser;)V net/minecraft/commands/arguments/selector/options/EntitySelectorOptions/lambda$bootStrap$31 (Lnet/minecraft/commands/arguments/selector/EntitySelectorParser;)V +MD: net/minecraft/commands/arguments/selector/options/EntitySelectorOptions/m_257090_ (Lnet/minecraft/commands/arguments/selector/EntitySelectorParser;Lcom/mojang/brigadier/suggestion/SuggestionsBuilder;Ljava/util/function/Consumer;)Ljava/util/concurrent/CompletableFuture; net/minecraft/commands/arguments/selector/options/EntitySelectorOptions/lambda$bootStrap$40 (Lnet/minecraft/commands/arguments/selector/EntitySelectorParser;Lcom/mojang/brigadier/suggestion/SuggestionsBuilder;Ljava/util/function/Consumer;)Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/commands/arguments/selector/options/EntitySelectorOptions/m_287024_ (Lnet/minecraft/resources/ResourceLocation;ZLnet/minecraft/world/entity/Entity;)Z net/minecraft/commands/arguments/selector/options/EntitySelectorOptions/lambda$bootStrap$61 (Lnet/minecraft/resources/ResourceLocation;ZLnet/minecraft/world/entity/Entity;)Z +MD: net/minecraft/commands/arguments/selector/options/EntitySelectorOptions$Modifier/m_121563_ (Lnet/minecraft/commands/arguments/selector/EntitySelectorParser;)V net/minecraft/commands/arguments/selector/options/EntitySelectorOptions$Modifier/handle (Lnet/minecraft/commands/arguments/selector/EntitySelectorParser;)V +MD: net/minecraft/commands/arguments/selector/options/EntitySelectorOptions$Option/ (Lnet/minecraft/commands/arguments/selector/options/EntitySelectorOptions$Modifier;Ljava/util/function/Predicate;Lnet/minecraft/network/chat/Component;)V net/minecraft/commands/arguments/selector/options/EntitySelectorOptions$Option/ (Lnet/minecraft/commands/arguments/selector/options/EntitySelectorOptions$Modifier;Ljava/util/function/Predicate;Lnet/minecraft/network/chat/Component;)V +MD: net/minecraft/commands/arguments/selector/options/EntitySelectorOptions$Option/equals (Ljava/lang/Object;)Z net/minecraft/commands/arguments/selector/options/EntitySelectorOptions$Option/equals (Ljava/lang/Object;)Z +MD: net/minecraft/commands/arguments/selector/options/EntitySelectorOptions$Option/f_121565_ ()Lnet/minecraft/commands/arguments/selector/options/EntitySelectorOptions$Modifier; net/minecraft/commands/arguments/selector/options/EntitySelectorOptions$Option/modifier ()Lnet/minecraft/commands/arguments/selector/options/EntitySelectorOptions$Modifier; +MD: net/minecraft/commands/arguments/selector/options/EntitySelectorOptions$Option/f_121567_ ()Lnet/minecraft/network/chat/Component; net/minecraft/commands/arguments/selector/options/EntitySelectorOptions$Option/description ()Lnet/minecraft/network/chat/Component; +MD: net/minecraft/commands/arguments/selector/options/EntitySelectorOptions$Option/f_243902_ ()Ljava/util/function/Predicate; net/minecraft/commands/arguments/selector/options/EntitySelectorOptions$Option/canUse ()Ljava/util/function/Predicate; +MD: net/minecraft/commands/arguments/selector/options/EntitySelectorOptions$Option/hashCode ()I net/minecraft/commands/arguments/selector/options/EntitySelectorOptions$Option/hashCode ()I +MD: net/minecraft/commands/arguments/selector/options/EntitySelectorOptions$Option/toString ()Ljava/lang/String; net/minecraft/commands/arguments/selector/options/EntitySelectorOptions$Option/toString ()Ljava/lang/String; +MD: net/minecraft/commands/synchronization/ArgumentTypeInfo/m_213618_ (Lnet/minecraft/network/FriendlyByteBuf;)Lnet/minecraft/commands/synchronization/ArgumentTypeInfo$Template; net/minecraft/commands/synchronization/ArgumentTypeInfo/deserializeFromNetwork (Lnet/minecraft/network/FriendlyByteBuf;)Lnet/minecraft/commands/synchronization/ArgumentTypeInfo$Template; +MD: net/minecraft/commands/synchronization/ArgumentTypeInfo/m_213719_ (Lnet/minecraft/commands/synchronization/ArgumentTypeInfo$Template;Lcom/google/gson/JsonObject;)V net/minecraft/commands/synchronization/ArgumentTypeInfo/serializeToJson (Lnet/minecraft/commands/synchronization/ArgumentTypeInfo$Template;Lcom/google/gson/JsonObject;)V +MD: net/minecraft/commands/synchronization/ArgumentTypeInfo/m_214155_ (Lnet/minecraft/commands/synchronization/ArgumentTypeInfo$Template;Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/commands/synchronization/ArgumentTypeInfo/serializeToNetwork (Lnet/minecraft/commands/synchronization/ArgumentTypeInfo$Template;Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/commands/synchronization/ArgumentTypeInfo/m_214163_ (Lcom/mojang/brigadier/arguments/ArgumentType;)Lnet/minecraft/commands/synchronization/ArgumentTypeInfo$Template; net/minecraft/commands/synchronization/ArgumentTypeInfo/unpack (Lcom/mojang/brigadier/arguments/ArgumentType;)Lnet/minecraft/commands/synchronization/ArgumentTypeInfo$Template; +MD: net/minecraft/commands/synchronization/ArgumentTypeInfo$Template/m_213709_ ()Lnet/minecraft/commands/synchronization/ArgumentTypeInfo; net/minecraft/commands/synchronization/ArgumentTypeInfo$Template/type ()Lnet/minecraft/commands/synchronization/ArgumentTypeInfo; +MD: net/minecraft/commands/synchronization/ArgumentTypeInfo$Template/m_213879_ (Lnet/minecraft/commands/CommandBuildContext;)Lcom/mojang/brigadier/arguments/ArgumentType; net/minecraft/commands/synchronization/ArgumentTypeInfo$Template/instantiate (Lnet/minecraft/commands/CommandBuildContext;)Lcom/mojang/brigadier/arguments/ArgumentType; +MD: net/minecraft/commands/synchronization/ArgumentTypeInfos/ ()V net/minecraft/commands/synchronization/ArgumentTypeInfos/ ()V +MD: net/minecraft/commands/synchronization/ArgumentTypeInfos/ ()V net/minecraft/commands/synchronization/ArgumentTypeInfos/ ()V +MD: net/minecraft/commands/synchronization/ArgumentTypeInfos/m_235382_ (Lcom/mojang/brigadier/arguments/ArgumentType;)Lnet/minecraft/commands/synchronization/ArgumentTypeInfo; net/minecraft/commands/synchronization/ArgumentTypeInfos/byClass (Lcom/mojang/brigadier/arguments/ArgumentType;)Lnet/minecraft/commands/synchronization/ArgumentTypeInfo; +MD: net/minecraft/commands/synchronization/ArgumentTypeInfos/m_235384_ (Lnet/minecraft/core/Registry;)Lnet/minecraft/commands/synchronization/ArgumentTypeInfo; net/minecraft/commands/synchronization/ArgumentTypeInfos/bootstrap (Lnet/minecraft/core/Registry;)Lnet/minecraft/commands/synchronization/ArgumentTypeInfo; +MD: net/minecraft/commands/synchronization/ArgumentTypeInfos/m_235386_ (Lnet/minecraft/core/Registry;Ljava/lang/String;Ljava/lang/Class;Lnet/minecraft/commands/synchronization/ArgumentTypeInfo;)Lnet/minecraft/commands/synchronization/ArgumentTypeInfo; net/minecraft/commands/synchronization/ArgumentTypeInfos/register (Lnet/minecraft/core/Registry;Ljava/lang/String;Ljava/lang/Class;Lnet/minecraft/commands/synchronization/ArgumentTypeInfo;)Lnet/minecraft/commands/synchronization/ArgumentTypeInfo; +MD: net/minecraft/commands/synchronization/ArgumentTypeInfos/m_235391_ (Ljava/lang/Class;)Z net/minecraft/commands/synchronization/ArgumentTypeInfos/isClassRecognized (Ljava/lang/Class;)Z +MD: net/minecraft/commands/synchronization/ArgumentTypeInfos/m_235393_ (Lcom/mojang/brigadier/arguments/ArgumentType;)Lnet/minecraft/commands/synchronization/ArgumentTypeInfo$Template; net/minecraft/commands/synchronization/ArgumentTypeInfos/unpack (Lcom/mojang/brigadier/arguments/ArgumentType;)Lnet/minecraft/commands/synchronization/ArgumentTypeInfo$Template; +MD: net/minecraft/commands/synchronization/ArgumentTypeInfos/m_235395_ (Ljava/lang/Class;)Ljava/lang/Class; net/minecraft/commands/synchronization/ArgumentTypeInfos/fixClassType (Ljava/lang/Class;)Ljava/lang/Class; +MD: net/minecraft/commands/synchronization/ArgumentUtils/ ()V net/minecraft/commands/synchronization/ArgumentUtils/ ()V +MD: net/minecraft/commands/synchronization/ArgumentUtils/ ()V net/minecraft/commands/synchronization/ArgumentUtils/ ()V +MD: net/minecraft/commands/synchronization/ArgumentUtils/m_235402_ (B)Z net/minecraft/commands/synchronization/ArgumentUtils/numberHasMin (B)Z +MD: net/minecraft/commands/synchronization/ArgumentUtils/m_235404_ (Lcom/google/gson/JsonObject;Lcom/mojang/brigadier/arguments/ArgumentType;)V net/minecraft/commands/synchronization/ArgumentUtils/serializeArgumentToJson (Lcom/google/gson/JsonObject;Lcom/mojang/brigadier/arguments/ArgumentType;)V +MD: net/minecraft/commands/synchronization/ArgumentUtils/m_235407_ (Lcom/google/gson/JsonObject;Lnet/minecraft/commands/synchronization/ArgumentTypeInfo$Template;)V net/minecraft/commands/synchronization/ArgumentUtils/serializeCap (Lcom/google/gson/JsonObject;Lnet/minecraft/commands/synchronization/ArgumentTypeInfo$Template;)V +MD: net/minecraft/commands/synchronization/ArgumentUtils/m_235410_ (Lcom/google/gson/JsonObject;Lnet/minecraft/commands/synchronization/ArgumentTypeInfo;Lnet/minecraft/commands/synchronization/ArgumentTypeInfo$Template;)V net/minecraft/commands/synchronization/ArgumentUtils/serializeCap (Lcom/google/gson/JsonObject;Lnet/minecraft/commands/synchronization/ArgumentTypeInfo;Lnet/minecraft/commands/synchronization/ArgumentTypeInfo$Template;)V +MD: net/minecraft/commands/synchronization/ArgumentUtils/m_235414_ (Lcom/mojang/brigadier/CommandDispatcher;Lcom/mojang/brigadier/tree/CommandNode;)Lcom/google/gson/JsonObject; net/minecraft/commands/synchronization/ArgumentUtils/serializeNodeToJson (Lcom/mojang/brigadier/CommandDispatcher;Lcom/mojang/brigadier/tree/CommandNode;)Lcom/google/gson/JsonObject; +MD: net/minecraft/commands/synchronization/ArgumentUtils/m_235417_ (Lcom/mojang/brigadier/tree/CommandNode;)Ljava/util/Set; net/minecraft/commands/synchronization/ArgumentUtils/findUsedArgumentTypes (Lcom/mojang/brigadier/tree/CommandNode;)Ljava/util/Set; +MD: net/minecraft/commands/synchronization/ArgumentUtils/m_235419_ (Lcom/mojang/brigadier/tree/CommandNode;Ljava/util/Set;Ljava/util/Set;)V net/minecraft/commands/synchronization/ArgumentUtils/findUsedArgumentTypes (Lcom/mojang/brigadier/tree/CommandNode;Ljava/util/Set;Ljava/util/Set;)V +MD: net/minecraft/commands/synchronization/ArgumentUtils/m_235423_ (Ljava/util/Set;Ljava/util/Set;Lcom/mojang/brigadier/tree/CommandNode;)V net/minecraft/commands/synchronization/ArgumentUtils/lambda$findUsedArgumentTypes$0 (Ljava/util/Set;Ljava/util/Set;Lcom/mojang/brigadier/tree/CommandNode;)V +MD: net/minecraft/commands/synchronization/ArgumentUtils/m_235427_ (ZZ)I net/minecraft/commands/synchronization/ArgumentUtils/createNumberFlags (ZZ)I +MD: net/minecraft/commands/synchronization/ArgumentUtils/m_235430_ (B)Z net/minecraft/commands/synchronization/ArgumentUtils/numberHasMax (B)Z +MD: net/minecraft/commands/synchronization/SingletonArgumentInfo/ (Ljava/util/function/Function;)V net/minecraft/commands/synchronization/SingletonArgumentInfo/ (Ljava/util/function/Function;)V +MD: net/minecraft/commands/synchronization/SingletonArgumentInfo/m_213618_ (Lnet/minecraft/network/FriendlyByteBuf;)Lnet/minecraft/commands/synchronization/SingletonArgumentInfo$Template; net/minecraft/commands/synchronization/SingletonArgumentInfo/deserializeFromNetwork (Lnet/minecraft/network/FriendlyByteBuf;)Lnet/minecraft/commands/synchronization/SingletonArgumentInfo$Template; +MD: net/minecraft/commands/synchronization/SingletonArgumentInfo/m_213618_ (Lnet/minecraft/network/FriendlyByteBuf;)Lnet/minecraft/commands/synchronization/ArgumentTypeInfo$Template; net/minecraft/commands/synchronization/SingletonArgumentInfo/deserializeFromNetwork (Lnet/minecraft/network/FriendlyByteBuf;)Lnet/minecraft/commands/synchronization/ArgumentTypeInfo$Template; +MD: net/minecraft/commands/synchronization/SingletonArgumentInfo/m_213719_ (Lnet/minecraft/commands/synchronization/ArgumentTypeInfo$Template;Lcom/google/gson/JsonObject;)V net/minecraft/commands/synchronization/SingletonArgumentInfo/serializeToJson (Lnet/minecraft/commands/synchronization/ArgumentTypeInfo$Template;Lcom/google/gson/JsonObject;)V +MD: net/minecraft/commands/synchronization/SingletonArgumentInfo/m_213719_ (Lnet/minecraft/commands/synchronization/SingletonArgumentInfo$Template;Lcom/google/gson/JsonObject;)V net/minecraft/commands/synchronization/SingletonArgumentInfo/serializeToJson (Lnet/minecraft/commands/synchronization/SingletonArgumentInfo$Template;Lcom/google/gson/JsonObject;)V +MD: net/minecraft/commands/synchronization/SingletonArgumentInfo/m_214155_ (Lnet/minecraft/commands/synchronization/ArgumentTypeInfo$Template;Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/commands/synchronization/SingletonArgumentInfo/serializeToNetwork (Lnet/minecraft/commands/synchronization/ArgumentTypeInfo$Template;Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/commands/synchronization/SingletonArgumentInfo/m_214155_ (Lnet/minecraft/commands/synchronization/SingletonArgumentInfo$Template;Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/commands/synchronization/SingletonArgumentInfo/serializeToNetwork (Lnet/minecraft/commands/synchronization/SingletonArgumentInfo$Template;Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/commands/synchronization/SingletonArgumentInfo/m_214163_ (Lcom/mojang/brigadier/arguments/ArgumentType;)Lnet/minecraft/commands/synchronization/ArgumentTypeInfo$Template; net/minecraft/commands/synchronization/SingletonArgumentInfo/unpack (Lcom/mojang/brigadier/arguments/ArgumentType;)Lnet/minecraft/commands/synchronization/ArgumentTypeInfo$Template; +MD: net/minecraft/commands/synchronization/SingletonArgumentInfo/m_214163_ (Lcom/mojang/brigadier/arguments/ArgumentType;)Lnet/minecraft/commands/synchronization/SingletonArgumentInfo$Template; net/minecraft/commands/synchronization/SingletonArgumentInfo/unpack (Lcom/mojang/brigadier/arguments/ArgumentType;)Lnet/minecraft/commands/synchronization/SingletonArgumentInfo$Template; +MD: net/minecraft/commands/synchronization/SingletonArgumentInfo/m_235449_ (Ljava/util/function/Function;)Lnet/minecraft/commands/synchronization/SingletonArgumentInfo; net/minecraft/commands/synchronization/SingletonArgumentInfo/contextAware (Ljava/util/function/Function;)Lnet/minecraft/commands/synchronization/SingletonArgumentInfo; +MD: net/minecraft/commands/synchronization/SingletonArgumentInfo/m_235451_ (Ljava/util/function/Supplier;)Lnet/minecraft/commands/synchronization/SingletonArgumentInfo; net/minecraft/commands/synchronization/SingletonArgumentInfo/contextFree (Ljava/util/function/Supplier;)Lnet/minecraft/commands/synchronization/SingletonArgumentInfo; +MD: net/minecraft/commands/synchronization/SingletonArgumentInfo/m_235453_ (Ljava/util/function/Supplier;Lnet/minecraft/commands/CommandBuildContext;)Lcom/mojang/brigadier/arguments/ArgumentType; net/minecraft/commands/synchronization/SingletonArgumentInfo/lambda$contextFree$0 (Ljava/util/function/Supplier;Lnet/minecraft/commands/CommandBuildContext;)Lcom/mojang/brigadier/arguments/ArgumentType; +MD: net/minecraft/commands/synchronization/SingletonArgumentInfo$Template/ (Lnet/minecraft/commands/synchronization/SingletonArgumentInfo;Ljava/util/function/Function;)V net/minecraft/commands/synchronization/SingletonArgumentInfo$Template/ (Lnet/minecraft/commands/synchronization/SingletonArgumentInfo;Ljava/util/function/Function;)V +MD: net/minecraft/commands/synchronization/SingletonArgumentInfo$Template/m_213709_ ()Lnet/minecraft/commands/synchronization/ArgumentTypeInfo; net/minecraft/commands/synchronization/SingletonArgumentInfo$Template/type ()Lnet/minecraft/commands/synchronization/ArgumentTypeInfo; +MD: net/minecraft/commands/synchronization/SingletonArgumentInfo$Template/m_213879_ (Lnet/minecraft/commands/CommandBuildContext;)Lcom/mojang/brigadier/arguments/ArgumentType; net/minecraft/commands/synchronization/SingletonArgumentInfo$Template/instantiate (Lnet/minecraft/commands/CommandBuildContext;)Lcom/mojang/brigadier/arguments/ArgumentType; +MD: net/minecraft/commands/synchronization/SuggestionProviders/ ()V net/minecraft/commands/synchronization/SuggestionProviders/ ()V +MD: net/minecraft/commands/synchronization/SuggestionProviders/ ()V net/minecraft/commands/synchronization/SuggestionProviders/ ()V +MD: net/minecraft/commands/synchronization/SuggestionProviders/m_121654_ (Lcom/mojang/brigadier/suggestion/SuggestionProvider;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/commands/synchronization/SuggestionProviders/getName (Lcom/mojang/brigadier/suggestion/SuggestionProvider;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/commands/synchronization/SuggestionProviders/m_121656_ (Lnet/minecraft/resources/ResourceLocation;)Lcom/mojang/brigadier/suggestion/SuggestionProvider; net/minecraft/commands/synchronization/SuggestionProviders/getProvider (Lnet/minecraft/resources/ResourceLocation;)Lcom/mojang/brigadier/suggestion/SuggestionProvider; +MD: net/minecraft/commands/synchronization/SuggestionProviders/m_121658_ (Lnet/minecraft/resources/ResourceLocation;Lcom/mojang/brigadier/suggestion/SuggestionProvider;)Lcom/mojang/brigadier/suggestion/SuggestionProvider; net/minecraft/commands/synchronization/SuggestionProviders/register (Lnet/minecraft/resources/ResourceLocation;Lcom/mojang/brigadier/suggestion/SuggestionProvider;)Lcom/mojang/brigadier/suggestion/SuggestionProvider; +MD: net/minecraft/commands/synchronization/SuggestionProviders/m_121664_ (Lcom/mojang/brigadier/suggestion/SuggestionProvider;)Lcom/mojang/brigadier/suggestion/SuggestionProvider; net/minecraft/commands/synchronization/SuggestionProviders/safelySwap (Lcom/mojang/brigadier/suggestion/SuggestionProvider;)Lcom/mojang/brigadier/suggestion/SuggestionProvider; +MD: net/minecraft/commands/synchronization/SuggestionProviders/m_121669_ (Lcom/mojang/brigadier/context/CommandContext;Lcom/mojang/brigadier/suggestion/SuggestionsBuilder;)Ljava/util/concurrent/CompletableFuture; net/minecraft/commands/synchronization/SuggestionProviders/lambda$static$1 (Lcom/mojang/brigadier/context/CommandContext;Lcom/mojang/brigadier/suggestion/SuggestionsBuilder;)Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/commands/synchronization/SuggestionProviders/m_121672_ (Lcom/mojang/brigadier/context/CommandContext;Lcom/mojang/brigadier/suggestion/SuggestionsBuilder;)Ljava/util/concurrent/CompletableFuture; net/minecraft/commands/synchronization/SuggestionProviders/lambda$static$0 (Lcom/mojang/brigadier/context/CommandContext;Lcom/mojang/brigadier/suggestion/SuggestionsBuilder;)Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/commands/synchronization/SuggestionProviders/m_212435_ (Lnet/minecraft/world/entity/EntityType;)Lcom/mojang/brigadier/Message; net/minecraft/commands/synchronization/SuggestionProviders/lambda$static$4 (Lnet/minecraft/world/entity/EntityType;)Lcom/mojang/brigadier/Message; +MD: net/minecraft/commands/synchronization/SuggestionProviders/m_244756_ (Lcom/mojang/brigadier/context/CommandContext;Lnet/minecraft/world/entity/EntityType;)Z net/minecraft/commands/synchronization/SuggestionProviders/lambda$static$3 (Lcom/mojang/brigadier/context/CommandContext;Lnet/minecraft/world/entity/EntityType;)Z +MD: net/minecraft/commands/synchronization/SuggestionProviders/m_257091_ (Lcom/mojang/brigadier/context/CommandContext;Lcom/mojang/brigadier/suggestion/SuggestionsBuilder;)Ljava/util/concurrent/CompletableFuture; net/minecraft/commands/synchronization/SuggestionProviders/lambda$static$5 (Lcom/mojang/brigadier/context/CommandContext;Lcom/mojang/brigadier/suggestion/SuggestionsBuilder;)Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/commands/synchronization/SuggestionProviders/m_263147_ (Lcom/mojang/brigadier/context/CommandContext;Lcom/mojang/brigadier/suggestion/SuggestionsBuilder;)Ljava/util/concurrent/CompletableFuture; net/minecraft/commands/synchronization/SuggestionProviders/lambda$static$2 (Lcom/mojang/brigadier/context/CommandContext;Lcom/mojang/brigadier/suggestion/SuggestionsBuilder;)Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/commands/synchronization/SuggestionProviders$Wrapper/ (Lnet/minecraft/resources/ResourceLocation;Lcom/mojang/brigadier/suggestion/SuggestionProvider;)V net/minecraft/commands/synchronization/SuggestionProviders$Wrapper/ (Lnet/minecraft/resources/ResourceLocation;Lcom/mojang/brigadier/suggestion/SuggestionProvider;)V +MD: net/minecraft/commands/synchronization/SuggestionProviders$Wrapper/getSuggestions (Lcom/mojang/brigadier/context/CommandContext;Lcom/mojang/brigadier/suggestion/SuggestionsBuilder;)Ljava/util/concurrent/CompletableFuture; net/minecraft/commands/synchronization/SuggestionProviders$Wrapper/getSuggestions (Lcom/mojang/brigadier/context/CommandContext;Lcom/mojang/brigadier/suggestion/SuggestionsBuilder;)Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/commands/synchronization/brigadier/DoubleArgumentInfo/ ()V net/minecraft/commands/synchronization/brigadier/DoubleArgumentInfo/ ()V +MD: net/minecraft/commands/synchronization/brigadier/DoubleArgumentInfo/m_213618_ (Lnet/minecraft/network/FriendlyByteBuf;)Lnet/minecraft/commands/synchronization/brigadier/DoubleArgumentInfo$Template; net/minecraft/commands/synchronization/brigadier/DoubleArgumentInfo/deserializeFromNetwork (Lnet/minecraft/network/FriendlyByteBuf;)Lnet/minecraft/commands/synchronization/brigadier/DoubleArgumentInfo$Template; +MD: net/minecraft/commands/synchronization/brigadier/DoubleArgumentInfo/m_213618_ (Lnet/minecraft/network/FriendlyByteBuf;)Lnet/minecraft/commands/synchronization/ArgumentTypeInfo$Template; net/minecraft/commands/synchronization/brigadier/DoubleArgumentInfo/deserializeFromNetwork (Lnet/minecraft/network/FriendlyByteBuf;)Lnet/minecraft/commands/synchronization/ArgumentTypeInfo$Template; +MD: net/minecraft/commands/synchronization/brigadier/DoubleArgumentInfo/m_213719_ (Lnet/minecraft/commands/synchronization/brigadier/DoubleArgumentInfo$Template;Lcom/google/gson/JsonObject;)V net/minecraft/commands/synchronization/brigadier/DoubleArgumentInfo/serializeToJson (Lnet/minecraft/commands/synchronization/brigadier/DoubleArgumentInfo$Template;Lcom/google/gson/JsonObject;)V +MD: net/minecraft/commands/synchronization/brigadier/DoubleArgumentInfo/m_213719_ (Lnet/minecraft/commands/synchronization/ArgumentTypeInfo$Template;Lcom/google/gson/JsonObject;)V net/minecraft/commands/synchronization/brigadier/DoubleArgumentInfo/serializeToJson (Lnet/minecraft/commands/synchronization/ArgumentTypeInfo$Template;Lcom/google/gson/JsonObject;)V +MD: net/minecraft/commands/synchronization/brigadier/DoubleArgumentInfo/m_214155_ (Lnet/minecraft/commands/synchronization/brigadier/DoubleArgumentInfo$Template;Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/commands/synchronization/brigadier/DoubleArgumentInfo/serializeToNetwork (Lnet/minecraft/commands/synchronization/brigadier/DoubleArgumentInfo$Template;Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/commands/synchronization/brigadier/DoubleArgumentInfo/m_214155_ (Lnet/minecraft/commands/synchronization/ArgumentTypeInfo$Template;Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/commands/synchronization/brigadier/DoubleArgumentInfo/serializeToNetwork (Lnet/minecraft/commands/synchronization/ArgumentTypeInfo$Template;Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/commands/synchronization/brigadier/DoubleArgumentInfo/m_214163_ (Lcom/mojang/brigadier/arguments/ArgumentType;)Lnet/minecraft/commands/synchronization/ArgumentTypeInfo$Template; net/minecraft/commands/synchronization/brigadier/DoubleArgumentInfo/unpack (Lcom/mojang/brigadier/arguments/ArgumentType;)Lnet/minecraft/commands/synchronization/ArgumentTypeInfo$Template; +MD: net/minecraft/commands/synchronization/brigadier/DoubleArgumentInfo/m_214163_ (Lcom/mojang/brigadier/arguments/DoubleArgumentType;)Lnet/minecraft/commands/synchronization/brigadier/DoubleArgumentInfo$Template; net/minecraft/commands/synchronization/brigadier/DoubleArgumentInfo/unpack (Lcom/mojang/brigadier/arguments/DoubleArgumentType;)Lnet/minecraft/commands/synchronization/brigadier/DoubleArgumentInfo$Template; +MD: net/minecraft/commands/synchronization/brigadier/DoubleArgumentInfo$Template/ (Lnet/minecraft/commands/synchronization/brigadier/DoubleArgumentInfo;DD)V net/minecraft/commands/synchronization/brigadier/DoubleArgumentInfo$Template/ (Lnet/minecraft/commands/synchronization/brigadier/DoubleArgumentInfo;DD)V +MD: net/minecraft/commands/synchronization/brigadier/DoubleArgumentInfo$Template/m_213709_ ()Lnet/minecraft/commands/synchronization/ArgumentTypeInfo; net/minecraft/commands/synchronization/brigadier/DoubleArgumentInfo$Template/type ()Lnet/minecraft/commands/synchronization/ArgumentTypeInfo; +MD: net/minecraft/commands/synchronization/brigadier/DoubleArgumentInfo$Template/m_213879_ (Lnet/minecraft/commands/CommandBuildContext;)Lcom/mojang/brigadier/arguments/ArgumentType; net/minecraft/commands/synchronization/brigadier/DoubleArgumentInfo$Template/instantiate (Lnet/minecraft/commands/CommandBuildContext;)Lcom/mojang/brigadier/arguments/ArgumentType; +MD: net/minecraft/commands/synchronization/brigadier/DoubleArgumentInfo$Template/m_213879_ (Lnet/minecraft/commands/CommandBuildContext;)Lcom/mojang/brigadier/arguments/DoubleArgumentType; net/minecraft/commands/synchronization/brigadier/DoubleArgumentInfo$Template/instantiate (Lnet/minecraft/commands/CommandBuildContext;)Lcom/mojang/brigadier/arguments/DoubleArgumentType; +MD: net/minecraft/commands/synchronization/brigadier/FloatArgumentInfo/ ()V net/minecraft/commands/synchronization/brigadier/FloatArgumentInfo/ ()V +MD: net/minecraft/commands/synchronization/brigadier/FloatArgumentInfo/m_213618_ (Lnet/minecraft/network/FriendlyByteBuf;)Lnet/minecraft/commands/synchronization/ArgumentTypeInfo$Template; net/minecraft/commands/synchronization/brigadier/FloatArgumentInfo/deserializeFromNetwork (Lnet/minecraft/network/FriendlyByteBuf;)Lnet/minecraft/commands/synchronization/ArgumentTypeInfo$Template; +MD: net/minecraft/commands/synchronization/brigadier/FloatArgumentInfo/m_213618_ (Lnet/minecraft/network/FriendlyByteBuf;)Lnet/minecraft/commands/synchronization/brigadier/FloatArgumentInfo$Template; net/minecraft/commands/synchronization/brigadier/FloatArgumentInfo/deserializeFromNetwork (Lnet/minecraft/network/FriendlyByteBuf;)Lnet/minecraft/commands/synchronization/brigadier/FloatArgumentInfo$Template; +MD: net/minecraft/commands/synchronization/brigadier/FloatArgumentInfo/m_213719_ (Lnet/minecraft/commands/synchronization/ArgumentTypeInfo$Template;Lcom/google/gson/JsonObject;)V net/minecraft/commands/synchronization/brigadier/FloatArgumentInfo/serializeToJson (Lnet/minecraft/commands/synchronization/ArgumentTypeInfo$Template;Lcom/google/gson/JsonObject;)V +MD: net/minecraft/commands/synchronization/brigadier/FloatArgumentInfo/m_213719_ (Lnet/minecraft/commands/synchronization/brigadier/FloatArgumentInfo$Template;Lcom/google/gson/JsonObject;)V net/minecraft/commands/synchronization/brigadier/FloatArgumentInfo/serializeToJson (Lnet/minecraft/commands/synchronization/brigadier/FloatArgumentInfo$Template;Lcom/google/gson/JsonObject;)V +MD: net/minecraft/commands/synchronization/brigadier/FloatArgumentInfo/m_214155_ (Lnet/minecraft/commands/synchronization/ArgumentTypeInfo$Template;Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/commands/synchronization/brigadier/FloatArgumentInfo/serializeToNetwork (Lnet/minecraft/commands/synchronization/ArgumentTypeInfo$Template;Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/commands/synchronization/brigadier/FloatArgumentInfo/m_214155_ (Lnet/minecraft/commands/synchronization/brigadier/FloatArgumentInfo$Template;Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/commands/synchronization/brigadier/FloatArgumentInfo/serializeToNetwork (Lnet/minecraft/commands/synchronization/brigadier/FloatArgumentInfo$Template;Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/commands/synchronization/brigadier/FloatArgumentInfo/m_214163_ (Lcom/mojang/brigadier/arguments/ArgumentType;)Lnet/minecraft/commands/synchronization/ArgumentTypeInfo$Template; net/minecraft/commands/synchronization/brigadier/FloatArgumentInfo/unpack (Lcom/mojang/brigadier/arguments/ArgumentType;)Lnet/minecraft/commands/synchronization/ArgumentTypeInfo$Template; +MD: net/minecraft/commands/synchronization/brigadier/FloatArgumentInfo/m_214163_ (Lcom/mojang/brigadier/arguments/FloatArgumentType;)Lnet/minecraft/commands/synchronization/brigadier/FloatArgumentInfo$Template; net/minecraft/commands/synchronization/brigadier/FloatArgumentInfo/unpack (Lcom/mojang/brigadier/arguments/FloatArgumentType;)Lnet/minecraft/commands/synchronization/brigadier/FloatArgumentInfo$Template; +MD: net/minecraft/commands/synchronization/brigadier/FloatArgumentInfo$Template/ (Lnet/minecraft/commands/synchronization/brigadier/FloatArgumentInfo;FF)V net/minecraft/commands/synchronization/brigadier/FloatArgumentInfo$Template/ (Lnet/minecraft/commands/synchronization/brigadier/FloatArgumentInfo;FF)V +MD: net/minecraft/commands/synchronization/brigadier/FloatArgumentInfo$Template/m_213709_ ()Lnet/minecraft/commands/synchronization/ArgumentTypeInfo; net/minecraft/commands/synchronization/brigadier/FloatArgumentInfo$Template/type ()Lnet/minecraft/commands/synchronization/ArgumentTypeInfo; +MD: net/minecraft/commands/synchronization/brigadier/FloatArgumentInfo$Template/m_213879_ (Lnet/minecraft/commands/CommandBuildContext;)Lcom/mojang/brigadier/arguments/ArgumentType; net/minecraft/commands/synchronization/brigadier/FloatArgumentInfo$Template/instantiate (Lnet/minecraft/commands/CommandBuildContext;)Lcom/mojang/brigadier/arguments/ArgumentType; +MD: net/minecraft/commands/synchronization/brigadier/FloatArgumentInfo$Template/m_213879_ (Lnet/minecraft/commands/CommandBuildContext;)Lcom/mojang/brigadier/arguments/FloatArgumentType; net/minecraft/commands/synchronization/brigadier/FloatArgumentInfo$Template/instantiate (Lnet/minecraft/commands/CommandBuildContext;)Lcom/mojang/brigadier/arguments/FloatArgumentType; +MD: net/minecraft/commands/synchronization/brigadier/IntegerArgumentInfo/ ()V net/minecraft/commands/synchronization/brigadier/IntegerArgumentInfo/ ()V +MD: net/minecraft/commands/synchronization/brigadier/IntegerArgumentInfo/m_213618_ (Lnet/minecraft/network/FriendlyByteBuf;)Lnet/minecraft/commands/synchronization/brigadier/IntegerArgumentInfo$Template; net/minecraft/commands/synchronization/brigadier/IntegerArgumentInfo/deserializeFromNetwork (Lnet/minecraft/network/FriendlyByteBuf;)Lnet/minecraft/commands/synchronization/brigadier/IntegerArgumentInfo$Template; +MD: net/minecraft/commands/synchronization/brigadier/IntegerArgumentInfo/m_213618_ (Lnet/minecraft/network/FriendlyByteBuf;)Lnet/minecraft/commands/synchronization/ArgumentTypeInfo$Template; net/minecraft/commands/synchronization/brigadier/IntegerArgumentInfo/deserializeFromNetwork (Lnet/minecraft/network/FriendlyByteBuf;)Lnet/minecraft/commands/synchronization/ArgumentTypeInfo$Template; +MD: net/minecraft/commands/synchronization/brigadier/IntegerArgumentInfo/m_213719_ (Lnet/minecraft/commands/synchronization/ArgumentTypeInfo$Template;Lcom/google/gson/JsonObject;)V net/minecraft/commands/synchronization/brigadier/IntegerArgumentInfo/serializeToJson (Lnet/minecraft/commands/synchronization/ArgumentTypeInfo$Template;Lcom/google/gson/JsonObject;)V +MD: net/minecraft/commands/synchronization/brigadier/IntegerArgumentInfo/m_213719_ (Lnet/minecraft/commands/synchronization/brigadier/IntegerArgumentInfo$Template;Lcom/google/gson/JsonObject;)V net/minecraft/commands/synchronization/brigadier/IntegerArgumentInfo/serializeToJson (Lnet/minecraft/commands/synchronization/brigadier/IntegerArgumentInfo$Template;Lcom/google/gson/JsonObject;)V +MD: net/minecraft/commands/synchronization/brigadier/IntegerArgumentInfo/m_214155_ (Lnet/minecraft/commands/synchronization/ArgumentTypeInfo$Template;Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/commands/synchronization/brigadier/IntegerArgumentInfo/serializeToNetwork (Lnet/minecraft/commands/synchronization/ArgumentTypeInfo$Template;Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/commands/synchronization/brigadier/IntegerArgumentInfo/m_214155_ (Lnet/minecraft/commands/synchronization/brigadier/IntegerArgumentInfo$Template;Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/commands/synchronization/brigadier/IntegerArgumentInfo/serializeToNetwork (Lnet/minecraft/commands/synchronization/brigadier/IntegerArgumentInfo$Template;Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/commands/synchronization/brigadier/IntegerArgumentInfo/m_214163_ (Lcom/mojang/brigadier/arguments/IntegerArgumentType;)Lnet/minecraft/commands/synchronization/brigadier/IntegerArgumentInfo$Template; net/minecraft/commands/synchronization/brigadier/IntegerArgumentInfo/unpack (Lcom/mojang/brigadier/arguments/IntegerArgumentType;)Lnet/minecraft/commands/synchronization/brigadier/IntegerArgumentInfo$Template; +MD: net/minecraft/commands/synchronization/brigadier/IntegerArgumentInfo/m_214163_ (Lcom/mojang/brigadier/arguments/ArgumentType;)Lnet/minecraft/commands/synchronization/ArgumentTypeInfo$Template; net/minecraft/commands/synchronization/brigadier/IntegerArgumentInfo/unpack (Lcom/mojang/brigadier/arguments/ArgumentType;)Lnet/minecraft/commands/synchronization/ArgumentTypeInfo$Template; +MD: net/minecraft/commands/synchronization/brigadier/IntegerArgumentInfo$Template/ (Lnet/minecraft/commands/synchronization/brigadier/IntegerArgumentInfo;II)V net/minecraft/commands/synchronization/brigadier/IntegerArgumentInfo$Template/ (Lnet/minecraft/commands/synchronization/brigadier/IntegerArgumentInfo;II)V +MD: net/minecraft/commands/synchronization/brigadier/IntegerArgumentInfo$Template/m_213709_ ()Lnet/minecraft/commands/synchronization/ArgumentTypeInfo; net/minecraft/commands/synchronization/brigadier/IntegerArgumentInfo$Template/type ()Lnet/minecraft/commands/synchronization/ArgumentTypeInfo; +MD: net/minecraft/commands/synchronization/brigadier/IntegerArgumentInfo$Template/m_213879_ (Lnet/minecraft/commands/CommandBuildContext;)Lcom/mojang/brigadier/arguments/ArgumentType; net/minecraft/commands/synchronization/brigadier/IntegerArgumentInfo$Template/instantiate (Lnet/minecraft/commands/CommandBuildContext;)Lcom/mojang/brigadier/arguments/ArgumentType; +MD: net/minecraft/commands/synchronization/brigadier/IntegerArgumentInfo$Template/m_213879_ (Lnet/minecraft/commands/CommandBuildContext;)Lcom/mojang/brigadier/arguments/IntegerArgumentType; net/minecraft/commands/synchronization/brigadier/IntegerArgumentInfo$Template/instantiate (Lnet/minecraft/commands/CommandBuildContext;)Lcom/mojang/brigadier/arguments/IntegerArgumentType; +MD: net/minecraft/commands/synchronization/brigadier/LongArgumentInfo/ ()V net/minecraft/commands/synchronization/brigadier/LongArgumentInfo/ ()V +MD: net/minecraft/commands/synchronization/brigadier/LongArgumentInfo/m_213618_ (Lnet/minecraft/network/FriendlyByteBuf;)Lnet/minecraft/commands/synchronization/ArgumentTypeInfo$Template; net/minecraft/commands/synchronization/brigadier/LongArgumentInfo/deserializeFromNetwork (Lnet/minecraft/network/FriendlyByteBuf;)Lnet/minecraft/commands/synchronization/ArgumentTypeInfo$Template; +MD: net/minecraft/commands/synchronization/brigadier/LongArgumentInfo/m_213618_ (Lnet/minecraft/network/FriendlyByteBuf;)Lnet/minecraft/commands/synchronization/brigadier/LongArgumentInfo$Template; net/minecraft/commands/synchronization/brigadier/LongArgumentInfo/deserializeFromNetwork (Lnet/minecraft/network/FriendlyByteBuf;)Lnet/minecraft/commands/synchronization/brigadier/LongArgumentInfo$Template; +MD: net/minecraft/commands/synchronization/brigadier/LongArgumentInfo/m_213719_ (Lnet/minecraft/commands/synchronization/ArgumentTypeInfo$Template;Lcom/google/gson/JsonObject;)V net/minecraft/commands/synchronization/brigadier/LongArgumentInfo/serializeToJson (Lnet/minecraft/commands/synchronization/ArgumentTypeInfo$Template;Lcom/google/gson/JsonObject;)V +MD: net/minecraft/commands/synchronization/brigadier/LongArgumentInfo/m_213719_ (Lnet/minecraft/commands/synchronization/brigadier/LongArgumentInfo$Template;Lcom/google/gson/JsonObject;)V net/minecraft/commands/synchronization/brigadier/LongArgumentInfo/serializeToJson (Lnet/minecraft/commands/synchronization/brigadier/LongArgumentInfo$Template;Lcom/google/gson/JsonObject;)V +MD: net/minecraft/commands/synchronization/brigadier/LongArgumentInfo/m_214155_ (Lnet/minecraft/commands/synchronization/ArgumentTypeInfo$Template;Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/commands/synchronization/brigadier/LongArgumentInfo/serializeToNetwork (Lnet/minecraft/commands/synchronization/ArgumentTypeInfo$Template;Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/commands/synchronization/brigadier/LongArgumentInfo/m_214155_ (Lnet/minecraft/commands/synchronization/brigadier/LongArgumentInfo$Template;Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/commands/synchronization/brigadier/LongArgumentInfo/serializeToNetwork (Lnet/minecraft/commands/synchronization/brigadier/LongArgumentInfo$Template;Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/commands/synchronization/brigadier/LongArgumentInfo/m_214163_ (Lcom/mojang/brigadier/arguments/LongArgumentType;)Lnet/minecraft/commands/synchronization/brigadier/LongArgumentInfo$Template; net/minecraft/commands/synchronization/brigadier/LongArgumentInfo/unpack (Lcom/mojang/brigadier/arguments/LongArgumentType;)Lnet/minecraft/commands/synchronization/brigadier/LongArgumentInfo$Template; +MD: net/minecraft/commands/synchronization/brigadier/LongArgumentInfo/m_214163_ (Lcom/mojang/brigadier/arguments/ArgumentType;)Lnet/minecraft/commands/synchronization/ArgumentTypeInfo$Template; net/minecraft/commands/synchronization/brigadier/LongArgumentInfo/unpack (Lcom/mojang/brigadier/arguments/ArgumentType;)Lnet/minecraft/commands/synchronization/ArgumentTypeInfo$Template; +MD: net/minecraft/commands/synchronization/brigadier/LongArgumentInfo$Template/ (Lnet/minecraft/commands/synchronization/brigadier/LongArgumentInfo;JJ)V net/minecraft/commands/synchronization/brigadier/LongArgumentInfo$Template/ (Lnet/minecraft/commands/synchronization/brigadier/LongArgumentInfo;JJ)V +MD: net/minecraft/commands/synchronization/brigadier/LongArgumentInfo$Template/m_213709_ ()Lnet/minecraft/commands/synchronization/ArgumentTypeInfo; net/minecraft/commands/synchronization/brigadier/LongArgumentInfo$Template/type ()Lnet/minecraft/commands/synchronization/ArgumentTypeInfo; +MD: net/minecraft/commands/synchronization/brigadier/LongArgumentInfo$Template/m_213879_ (Lnet/minecraft/commands/CommandBuildContext;)Lcom/mojang/brigadier/arguments/ArgumentType; net/minecraft/commands/synchronization/brigadier/LongArgumentInfo$Template/instantiate (Lnet/minecraft/commands/CommandBuildContext;)Lcom/mojang/brigadier/arguments/ArgumentType; +MD: net/minecraft/commands/synchronization/brigadier/LongArgumentInfo$Template/m_213879_ (Lnet/minecraft/commands/CommandBuildContext;)Lcom/mojang/brigadier/arguments/LongArgumentType; net/minecraft/commands/synchronization/brigadier/LongArgumentInfo$Template/instantiate (Lnet/minecraft/commands/CommandBuildContext;)Lcom/mojang/brigadier/arguments/LongArgumentType; +MD: net/minecraft/commands/synchronization/brigadier/StringArgumentSerializer/ ()V net/minecraft/commands/synchronization/brigadier/StringArgumentSerializer/ ()V +MD: net/minecraft/commands/synchronization/brigadier/StringArgumentSerializer/m_213618_ (Lnet/minecraft/network/FriendlyByteBuf;)Lnet/minecraft/commands/synchronization/brigadier/StringArgumentSerializer$Template; net/minecraft/commands/synchronization/brigadier/StringArgumentSerializer/deserializeFromNetwork (Lnet/minecraft/network/FriendlyByteBuf;)Lnet/minecraft/commands/synchronization/brigadier/StringArgumentSerializer$Template; +MD: net/minecraft/commands/synchronization/brigadier/StringArgumentSerializer/m_213618_ (Lnet/minecraft/network/FriendlyByteBuf;)Lnet/minecraft/commands/synchronization/ArgumentTypeInfo$Template; net/minecraft/commands/synchronization/brigadier/StringArgumentSerializer/deserializeFromNetwork (Lnet/minecraft/network/FriendlyByteBuf;)Lnet/minecraft/commands/synchronization/ArgumentTypeInfo$Template; +MD: net/minecraft/commands/synchronization/brigadier/StringArgumentSerializer/m_213719_ (Lnet/minecraft/commands/synchronization/brigadier/StringArgumentSerializer$Template;Lcom/google/gson/JsonObject;)V net/minecraft/commands/synchronization/brigadier/StringArgumentSerializer/serializeToJson (Lnet/minecraft/commands/synchronization/brigadier/StringArgumentSerializer$Template;Lcom/google/gson/JsonObject;)V +MD: net/minecraft/commands/synchronization/brigadier/StringArgumentSerializer/m_213719_ (Lnet/minecraft/commands/synchronization/ArgumentTypeInfo$Template;Lcom/google/gson/JsonObject;)V net/minecraft/commands/synchronization/brigadier/StringArgumentSerializer/serializeToJson (Lnet/minecraft/commands/synchronization/ArgumentTypeInfo$Template;Lcom/google/gson/JsonObject;)V +MD: net/minecraft/commands/synchronization/brigadier/StringArgumentSerializer/m_214155_ (Lnet/minecraft/commands/synchronization/ArgumentTypeInfo$Template;Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/commands/synchronization/brigadier/StringArgumentSerializer/serializeToNetwork (Lnet/minecraft/commands/synchronization/ArgumentTypeInfo$Template;Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/commands/synchronization/brigadier/StringArgumentSerializer/m_214155_ (Lnet/minecraft/commands/synchronization/brigadier/StringArgumentSerializer$Template;Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/commands/synchronization/brigadier/StringArgumentSerializer/serializeToNetwork (Lnet/minecraft/commands/synchronization/brigadier/StringArgumentSerializer$Template;Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/commands/synchronization/brigadier/StringArgumentSerializer/m_214163_ (Lcom/mojang/brigadier/arguments/StringArgumentType;)Lnet/minecraft/commands/synchronization/brigadier/StringArgumentSerializer$Template; net/minecraft/commands/synchronization/brigadier/StringArgumentSerializer/unpack (Lcom/mojang/brigadier/arguments/StringArgumentType;)Lnet/minecraft/commands/synchronization/brigadier/StringArgumentSerializer$Template; +MD: net/minecraft/commands/synchronization/brigadier/StringArgumentSerializer/m_214163_ (Lcom/mojang/brigadier/arguments/ArgumentType;)Lnet/minecraft/commands/synchronization/ArgumentTypeInfo$Template; net/minecraft/commands/synchronization/brigadier/StringArgumentSerializer/unpack (Lcom/mojang/brigadier/arguments/ArgumentType;)Lnet/minecraft/commands/synchronization/ArgumentTypeInfo$Template; +MD: net/minecraft/commands/synchronization/brigadier/StringArgumentSerializer$1/ ()V net/minecraft/commands/synchronization/brigadier/StringArgumentSerializer$1/ ()V +MD: net/minecraft/commands/synchronization/brigadier/StringArgumentSerializer$Template/ (Lnet/minecraft/commands/synchronization/brigadier/StringArgumentSerializer;Lcom/mojang/brigadier/arguments/StringArgumentType$StringType;)V net/minecraft/commands/synchronization/brigadier/StringArgumentSerializer$Template/ (Lnet/minecraft/commands/synchronization/brigadier/StringArgumentSerializer;Lcom/mojang/brigadier/arguments/StringArgumentType$StringType;)V +MD: net/minecraft/commands/synchronization/brigadier/StringArgumentSerializer$Template/m_213709_ ()Lnet/minecraft/commands/synchronization/ArgumentTypeInfo; net/minecraft/commands/synchronization/brigadier/StringArgumentSerializer$Template/type ()Lnet/minecraft/commands/synchronization/ArgumentTypeInfo; +MD: net/minecraft/commands/synchronization/brigadier/StringArgumentSerializer$Template/m_213879_ (Lnet/minecraft/commands/CommandBuildContext;)Lcom/mojang/brigadier/arguments/ArgumentType; net/minecraft/commands/synchronization/brigadier/StringArgumentSerializer$Template/instantiate (Lnet/minecraft/commands/CommandBuildContext;)Lcom/mojang/brigadier/arguments/ArgumentType; +MD: net/minecraft/commands/synchronization/brigadier/StringArgumentSerializer$Template/m_213879_ (Lnet/minecraft/commands/CommandBuildContext;)Lcom/mojang/brigadier/arguments/StringArgumentType; net/minecraft/commands/synchronization/brigadier/StringArgumentSerializer$Template/instantiate (Lnet/minecraft/commands/CommandBuildContext;)Lcom/mojang/brigadier/arguments/StringArgumentType; +MD: net/minecraft/core/AxisCycle/ ()V net/minecraft/core/AxisCycle/ ()V +MD: net/minecraft/core/AxisCycle/ (Ljava/lang/String;I)V net/minecraft/core/AxisCycle/ (Ljava/lang/String;I)V +MD: net/minecraft/core/AxisCycle/m_121799_ (Lnet/minecraft/core/Direction$Axis;Lnet/minecraft/core/Direction$Axis;)Lnet/minecraft/core/AxisCycle; net/minecraft/core/AxisCycle/between (Lnet/minecraft/core/Direction$Axis;Lnet/minecraft/core/Direction$Axis;)Lnet/minecraft/core/AxisCycle; +MD: net/minecraft/core/AxisCycle/m_142567_ (DDDLnet/minecraft/core/Direction$Axis;)D net/minecraft/core/AxisCycle/cycle (DDDLnet/minecraft/core/Direction$Axis;)D +MD: net/minecraft/core/AxisCycle/m_175240_ ()[Lnet/minecraft/core/AxisCycle; net/minecraft/core/AxisCycle/$values ()[Lnet/minecraft/core/AxisCycle; +MD: net/minecraft/core/AxisCycle/m_7314_ (Lnet/minecraft/core/Direction$Axis;)Lnet/minecraft/core/Direction$Axis; net/minecraft/core/AxisCycle/cycle (Lnet/minecraft/core/Direction$Axis;)Lnet/minecraft/core/Direction$Axis; +MD: net/minecraft/core/AxisCycle/m_7634_ ()Lnet/minecraft/core/AxisCycle; net/minecraft/core/AxisCycle/inverse ()Lnet/minecraft/core/AxisCycle; +MD: net/minecraft/core/AxisCycle/m_7758_ (IIILnet/minecraft/core/Direction$Axis;)I net/minecraft/core/AxisCycle/cycle (IIILnet/minecraft/core/Direction$Axis;)I +MD: net/minecraft/core/AxisCycle/valueOf (Ljava/lang/String;)Lnet/minecraft/core/AxisCycle; net/minecraft/core/AxisCycle/valueOf (Ljava/lang/String;)Lnet/minecraft/core/AxisCycle; +MD: net/minecraft/core/AxisCycle/values ()[Lnet/minecraft/core/AxisCycle; net/minecraft/core/AxisCycle/values ()[Lnet/minecraft/core/AxisCycle; +MD: net/minecraft/core/AxisCycle$1/ (Ljava/lang/String;I)V net/minecraft/core/AxisCycle$1/ (Ljava/lang/String;I)V +MD: net/minecraft/core/AxisCycle$1/m_142567_ (DDDLnet/minecraft/core/Direction$Axis;)D net/minecraft/core/AxisCycle$1/cycle (DDDLnet/minecraft/core/Direction$Axis;)D +MD: net/minecraft/core/AxisCycle$1/m_7314_ (Lnet/minecraft/core/Direction$Axis;)Lnet/minecraft/core/Direction$Axis; net/minecraft/core/AxisCycle$1/cycle (Lnet/minecraft/core/Direction$Axis;)Lnet/minecraft/core/Direction$Axis; +MD: net/minecraft/core/AxisCycle$1/m_7634_ ()Lnet/minecraft/core/AxisCycle; net/minecraft/core/AxisCycle$1/inverse ()Lnet/minecraft/core/AxisCycle; +MD: net/minecraft/core/AxisCycle$1/m_7758_ (IIILnet/minecraft/core/Direction$Axis;)I net/minecraft/core/AxisCycle$1/cycle (IIILnet/minecraft/core/Direction$Axis;)I +MD: net/minecraft/core/AxisCycle$2/ (Ljava/lang/String;I)V net/minecraft/core/AxisCycle$2/ (Ljava/lang/String;I)V +MD: net/minecraft/core/AxisCycle$2/m_142567_ (DDDLnet/minecraft/core/Direction$Axis;)D net/minecraft/core/AxisCycle$2/cycle (DDDLnet/minecraft/core/Direction$Axis;)D +MD: net/minecraft/core/AxisCycle$2/m_7314_ (Lnet/minecraft/core/Direction$Axis;)Lnet/minecraft/core/Direction$Axis; net/minecraft/core/AxisCycle$2/cycle (Lnet/minecraft/core/Direction$Axis;)Lnet/minecraft/core/Direction$Axis; +MD: net/minecraft/core/AxisCycle$2/m_7634_ ()Lnet/minecraft/core/AxisCycle; net/minecraft/core/AxisCycle$2/inverse ()Lnet/minecraft/core/AxisCycle; +MD: net/minecraft/core/AxisCycle$2/m_7758_ (IIILnet/minecraft/core/Direction$Axis;)I net/minecraft/core/AxisCycle$2/cycle (IIILnet/minecraft/core/Direction$Axis;)I +MD: net/minecraft/core/AxisCycle$3/ (Ljava/lang/String;I)V net/minecraft/core/AxisCycle$3/ (Ljava/lang/String;I)V +MD: net/minecraft/core/AxisCycle$3/m_142567_ (DDDLnet/minecraft/core/Direction$Axis;)D net/minecraft/core/AxisCycle$3/cycle (DDDLnet/minecraft/core/Direction$Axis;)D +MD: net/minecraft/core/AxisCycle$3/m_7314_ (Lnet/minecraft/core/Direction$Axis;)Lnet/minecraft/core/Direction$Axis; net/minecraft/core/AxisCycle$3/cycle (Lnet/minecraft/core/Direction$Axis;)Lnet/minecraft/core/Direction$Axis; +MD: net/minecraft/core/AxisCycle$3/m_7634_ ()Lnet/minecraft/core/AxisCycle; net/minecraft/core/AxisCycle$3/inverse ()Lnet/minecraft/core/AxisCycle; +MD: net/minecraft/core/AxisCycle$3/m_7758_ (IIILnet/minecraft/core/Direction$Axis;)I net/minecraft/core/AxisCycle$3/cycle (IIILnet/minecraft/core/Direction$Axis;)I +MD: net/minecraft/core/BlockMath/ ()V net/minecraft/core/BlockMath/ ()V +MD: net/minecraft/core/BlockMath/ ()V net/minecraft/core/BlockMath/ ()V +MD: net/minecraft/core/BlockMath/m_121842_ (Lcom/mojang/math/Transformation;)Lcom/mojang/math/Transformation; net/minecraft/core/BlockMath/blockCenterToCorner (Lcom/mojang/math/Transformation;)Lcom/mojang/math/Transformation; +MD: net/minecraft/core/BlockMath/m_121844_ (Lcom/mojang/math/Transformation;Lnet/minecraft/core/Direction;Ljava/util/function/Supplier;)Lcom/mojang/math/Transformation; net/minecraft/core/BlockMath/getUVLockTransform (Lcom/mojang/math/Transformation;Lnet/minecraft/core/Direction;Ljava/util/function/Supplier;)Lcom/mojang/math/Transformation; +MD: net/minecraft/core/BlockMath/m_121848_ (Ljava/util/EnumMap;)V net/minecraft/core/BlockMath/lambda$static$1 (Ljava/util/EnumMap;)V +MD: net/minecraft/core/BlockMath/m_121850_ (Ljava/util/EnumMap;)V net/minecraft/core/BlockMath/lambda$static$0 (Ljava/util/EnumMap;)V +MD: net/minecraft/core/BlockMath/m_175259_ (Lcom/mojang/math/Transformation;)Lcom/mojang/math/Transformation; net/minecraft/core/BlockMath/blockCornerToCenter (Lcom/mojang/math/Transformation;)Lcom/mojang/math/Transformation; +MD: net/minecraft/core/BlockPos/ ()V net/minecraft/core/BlockPos/ ()V +MD: net/minecraft/core/BlockPos/ (Lnet/minecraft/core/Vec3i;)V net/minecraft/core/BlockPos/ (Lnet/minecraft/core/Vec3i;)V +MD: net/minecraft/core/BlockPos/ (III)V net/minecraft/core/BlockPos/ (III)V +MD: net/minecraft/core/BlockPos/m_121878_ ()J net/minecraft/core/BlockPos/asLong ()J +MD: net/minecraft/core/BlockPos/m_121882_ (III)J net/minecraft/core/BlockPos/asLong (III)J +MD: net/minecraft/core/BlockPos/m_121886_ (IIIIII)Ljava/util/stream/Stream; net/minecraft/core/BlockPos/betweenClosedStream (IIIIII)Ljava/util/stream/Stream; +MD: net/minecraft/core/BlockPos/m_121893_ (IIIIIII)Ljava/util/Iterator; net/minecraft/core/BlockPos/lambda$withinManhattan$4 (IIIIIII)Ljava/util/Iterator; +MD: net/minecraft/core/BlockPos/m_121910_ (JIII)J net/minecraft/core/BlockPos/offset (JIII)J +MD: net/minecraft/core/BlockPos/m_121915_ (JLnet/minecraft/core/Direction;)J net/minecraft/core/BlockPos/offset (JLnet/minecraft/core/Direction;)J +MD: net/minecraft/core/BlockPos/m_121919_ (Lnet/minecraft/world/level/levelgen/structure/BoundingBox;)Ljava/util/stream/Stream; net/minecraft/core/BlockPos/betweenClosedStream (Lnet/minecraft/world/level/levelgen/structure/BoundingBox;)Ljava/util/stream/Stream; +MD: net/minecraft/core/BlockPos/m_121921_ (Lnet/minecraft/world/phys/AABB;)Ljava/util/stream/Stream; net/minecraft/core/BlockPos/betweenClosedStream (Lnet/minecraft/world/phys/AABB;)Ljava/util/stream/Stream; +MD: net/minecraft/core/BlockPos/m_121923_ (Lnet/minecraft/core/BlockPos;)Ljava/util/stream/IntStream; net/minecraft/core/BlockPos/lambda$static$2 (Lnet/minecraft/core/BlockPos;)Ljava/util/stream/IntStream; +MD: net/minecraft/core/BlockPos/m_121925_ (Lnet/minecraft/core/BlockPos;III)Ljava/lang/Iterable; net/minecraft/core/BlockPos/withinManhattan (Lnet/minecraft/core/BlockPos;III)Ljava/lang/Iterable; +MD: net/minecraft/core/BlockPos/m_121930_ (Lnet/minecraft/core/BlockPos;IILjava/util/function/Predicate;)Ljava/util/Optional; net/minecraft/core/BlockPos/findClosestMatch (Lnet/minecraft/core/BlockPos;IILjava/util/function/Predicate;)Ljava/util/Optional; +MD: net/minecraft/core/BlockPos/m_121935_ (Lnet/minecraft/core/BlockPos;ILnet/minecraft/core/Direction;Lnet/minecraft/core/Direction;)Ljava/lang/Iterable; net/minecraft/core/BlockPos/spiralAround (Lnet/minecraft/core/BlockPos;ILnet/minecraft/core/Direction;Lnet/minecraft/core/Direction;)Ljava/lang/Iterable; +MD: net/minecraft/core/BlockPos/m_121940_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;)Ljava/lang/Iterable; net/minecraft/core/BlockPos/betweenClosed (Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;)Ljava/lang/Iterable; +MD: net/minecraft/core/BlockPos/m_121945_ (Lnet/minecraft/core/Direction;)Lnet/minecraft/core/BlockPos; net/minecraft/core/BlockPos/relative (Lnet/minecraft/core/Direction;)Lnet/minecraft/core/BlockPos; +MD: net/minecraft/core/BlockPos/m_121945_ (Lnet/minecraft/core/Direction;)Lnet/minecraft/core/Vec3i; net/minecraft/core/BlockPos/relative (Lnet/minecraft/core/Direction;)Lnet/minecraft/core/Vec3i; +MD: net/minecraft/core/BlockPos/m_121950_ (Lnet/minecraft/core/Direction;Lnet/minecraft/core/Direction;Lnet/minecraft/core/BlockPos;I)Ljava/util/Iterator; net/minecraft/core/BlockPos/lambda$spiralAround$6 (Lnet/minecraft/core/Direction;Lnet/minecraft/core/Direction;Lnet/minecraft/core/BlockPos;I)Ljava/util/Iterator; +MD: net/minecraft/core/BlockPos/m_121955_ (Lnet/minecraft/core/Vec3i;)Lnet/minecraft/core/BlockPos; net/minecraft/core/BlockPos/offset (Lnet/minecraft/core/Vec3i;)Lnet/minecraft/core/BlockPos; +MD: net/minecraft/core/BlockPos/m_121955_ (Lnet/minecraft/core/Vec3i;)Lnet/minecraft/core/Vec3i; net/minecraft/core/BlockPos/offset (Lnet/minecraft/core/Vec3i;)Lnet/minecraft/core/Vec3i; +MD: net/minecraft/core/BlockPos/m_121966_ (Ljava/util/stream/IntStream;)Lcom/mojang/serialization/DataResult; net/minecraft/core/BlockPos/lambda$static$1 (Ljava/util/stream/IntStream;)Lcom/mojang/serialization/DataResult; +MD: net/minecraft/core/BlockPos/m_121976_ (IIIIII)Ljava/lang/Iterable; net/minecraft/core/BlockPos/betweenClosed (IIIIII)Ljava/lang/Iterable; +MD: net/minecraft/core/BlockPos/m_121983_ (J)I net/minecraft/core/BlockPos/getX (J)I +MD: net/minecraft/core/BlockPos/m_121985_ (Lnet/minecraft/core/BlockPos;III)Ljava/util/stream/Stream; net/minecraft/core/BlockPos/withinManhattanStream (Lnet/minecraft/core/BlockPos;III)Ljava/util/stream/Stream; +MD: net/minecraft/core/BlockPos/m_121990_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;)Ljava/util/stream/Stream; net/minecraft/core/BlockPos/betweenClosedStream (Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;)Ljava/util/stream/Stream; +MD: net/minecraft/core/BlockPos/m_121996_ (Lnet/minecraft/core/Vec3i;)Lnet/minecraft/core/Vec3i; net/minecraft/core/BlockPos/subtract (Lnet/minecraft/core/Vec3i;)Lnet/minecraft/core/Vec3i; +MD: net/minecraft/core/BlockPos/m_121996_ (Lnet/minecraft/core/Vec3i;)Lnet/minecraft/core/BlockPos; net/minecraft/core/BlockPos/subtract (Lnet/minecraft/core/Vec3i;)Lnet/minecraft/core/BlockPos; +MD: net/minecraft/core/BlockPos/m_122001_ (IIIIII)Ljava/util/Iterator; net/minecraft/core/BlockPos/lambda$betweenClosed$5 (IIIIII)Ljava/util/Iterator; +MD: net/minecraft/core/BlockPos/m_122008_ (J)I net/minecraft/core/BlockPos/getY (J)I +MD: net/minecraft/core/BlockPos/m_122012_ ()Lnet/minecraft/core/Vec3i; net/minecraft/core/BlockPos/north ()Lnet/minecraft/core/Vec3i; +MD: net/minecraft/core/BlockPos/m_122012_ ()Lnet/minecraft/core/BlockPos; net/minecraft/core/BlockPos/north ()Lnet/minecraft/core/BlockPos; +MD: net/minecraft/core/BlockPos/m_122013_ (I)Lnet/minecraft/core/BlockPos; net/minecraft/core/BlockPos/north (I)Lnet/minecraft/core/BlockPos; +MD: net/minecraft/core/BlockPos/m_122013_ (I)Lnet/minecraft/core/Vec3i; net/minecraft/core/BlockPos/north (I)Lnet/minecraft/core/Vec3i; +MD: net/minecraft/core/BlockPos/m_122015_ (J)I net/minecraft/core/BlockPos/getZ (J)I +MD: net/minecraft/core/BlockPos/m_122019_ ()Lnet/minecraft/core/BlockPos; net/minecraft/core/BlockPos/south ()Lnet/minecraft/core/BlockPos; +MD: net/minecraft/core/BlockPos/m_122019_ ()Lnet/minecraft/core/Vec3i; net/minecraft/core/BlockPos/south ()Lnet/minecraft/core/Vec3i; +MD: net/minecraft/core/BlockPos/m_122020_ (I)Lnet/minecraft/core/Vec3i; net/minecraft/core/BlockPos/south (I)Lnet/minecraft/core/Vec3i; +MD: net/minecraft/core/BlockPos/m_122020_ (I)Lnet/minecraft/core/BlockPos; net/minecraft/core/BlockPos/south (I)Lnet/minecraft/core/BlockPos; +MD: net/minecraft/core/BlockPos/m_122022_ (J)Lnet/minecraft/core/BlockPos; net/minecraft/core/BlockPos/of (J)Lnet/minecraft/core/BlockPos; +MD: net/minecraft/core/BlockPos/m_122024_ ()Lnet/minecraft/core/Vec3i; net/minecraft/core/BlockPos/west ()Lnet/minecraft/core/Vec3i; +MD: net/minecraft/core/BlockPos/m_122024_ ()Lnet/minecraft/core/BlockPos; net/minecraft/core/BlockPos/west ()Lnet/minecraft/core/BlockPos; +MD: net/minecraft/core/BlockPos/m_122025_ (I)Lnet/minecraft/core/BlockPos; net/minecraft/core/BlockPos/west (I)Lnet/minecraft/core/BlockPos; +MD: net/minecraft/core/BlockPos/m_122025_ (I)Lnet/minecraft/core/Vec3i; net/minecraft/core/BlockPos/west (I)Lnet/minecraft/core/Vec3i; +MD: net/minecraft/core/BlockPos/m_122027_ (J)J net/minecraft/core/BlockPos/getFlatIndex (J)J +MD: net/minecraft/core/BlockPos/m_122029_ ()Lnet/minecraft/core/Vec3i; net/minecraft/core/BlockPos/east ()Lnet/minecraft/core/Vec3i; +MD: net/minecraft/core/BlockPos/m_122029_ ()Lnet/minecraft/core/BlockPos; net/minecraft/core/BlockPos/east ()Lnet/minecraft/core/BlockPos; +MD: net/minecraft/core/BlockPos/m_122030_ (I)Lnet/minecraft/core/BlockPos; net/minecraft/core/BlockPos/east (I)Lnet/minecraft/core/BlockPos; +MD: net/minecraft/core/BlockPos/m_122030_ (I)Lnet/minecraft/core/Vec3i; net/minecraft/core/BlockPos/east (I)Lnet/minecraft/core/Vec3i; +MD: net/minecraft/core/BlockPos/m_122032_ ()Lnet/minecraft/core/BlockPos$MutableBlockPos; net/minecraft/core/BlockPos/mutable ()Lnet/minecraft/core/BlockPos$MutableBlockPos; +MD: net/minecraft/core/BlockPos/m_142393_ (I)Lnet/minecraft/core/Vec3i; net/minecraft/core/BlockPos/multiply (I)Lnet/minecraft/core/Vec3i; +MD: net/minecraft/core/BlockPos/m_142393_ (I)Lnet/minecraft/core/BlockPos; net/minecraft/core/BlockPos/multiply (I)Lnet/minecraft/core/BlockPos; +MD: net/minecraft/core/BlockPos/m_175269_ ([I)Lnet/minecraft/core/BlockPos; net/minecraft/core/BlockPos/lambda$static$0 ([I)Lnet/minecraft/core/BlockPos; +MD: net/minecraft/core/BlockPos/m_175288_ (I)Lnet/minecraft/core/BlockPos; net/minecraft/core/BlockPos/atY (I)Lnet/minecraft/core/BlockPos; +MD: net/minecraft/core/BlockPos/m_235632_ (IILnet/minecraft/util/RandomSource;IIIII)Ljava/util/Iterator; net/minecraft/core/BlockPos/lambda$randomBetweenClosed$3 (IILnet/minecraft/util/RandomSource;IIIII)Ljava/util/Iterator; +MD: net/minecraft/core/BlockPos/m_235641_ (Lnet/minecraft/util/RandomSource;IIIIIII)Ljava/lang/Iterable; net/minecraft/core/BlockPos/randomBetweenClosed (Lnet/minecraft/util/RandomSource;IIIIIII)Ljava/lang/Iterable; +MD: net/minecraft/core/BlockPos/m_235650_ (Lnet/minecraft/util/RandomSource;ILnet/minecraft/core/BlockPos;I)Ljava/lang/Iterable; net/minecraft/core/BlockPos/randomInCube (Lnet/minecraft/util/RandomSource;ILnet/minecraft/core/BlockPos;I)Ljava/lang/Iterable; +MD: net/minecraft/core/BlockPos/m_252807_ ()Lnet/minecraft/world/phys/Vec3; net/minecraft/core/BlockPos/getCenter ()Lnet/minecraft/world/phys/Vec3; +MD: net/minecraft/core/BlockPos/m_274446_ (Lnet/minecraft/core/Position;)Lnet/minecraft/core/BlockPos; net/minecraft/core/BlockPos/containing (Lnet/minecraft/core/Position;)Lnet/minecraft/core/BlockPos; +MD: net/minecraft/core/BlockPos/m_274561_ (DDD)Lnet/minecraft/core/BlockPos; net/minecraft/core/BlockPos/containing (DDD)Lnet/minecraft/core/BlockPos; +MD: net/minecraft/core/BlockPos/m_276707_ (Ljava/util/Queue;ILnet/minecraft/core/BlockPos;)V net/minecraft/core/BlockPos/lambda$breadthFirstTraversal$7 (Ljava/util/Queue;ILnet/minecraft/core/BlockPos;)V +MD: net/minecraft/core/BlockPos/m_276833_ (Lnet/minecraft/core/BlockPos;IILjava/util/function/BiConsumer;Ljava/util/function/Predicate;)I net/minecraft/core/BlockPos/breadthFirstTraversal (Lnet/minecraft/core/BlockPos;IILjava/util/function/BiConsumer;Ljava/util/function/Predicate;)I +MD: net/minecraft/core/BlockPos/m_284476_ (Lnet/minecraft/core/BlockPos;)Ljava/util/stream/Stream; net/minecraft/core/BlockPos/squareOutSouthEast (Lnet/minecraft/core/BlockPos;)Ljava/util/stream/Stream; +MD: net/minecraft/core/BlockPos/m_5484_ (Lnet/minecraft/core/Direction;I)Lnet/minecraft/core/BlockPos; net/minecraft/core/BlockPos/relative (Lnet/minecraft/core/Direction;I)Lnet/minecraft/core/BlockPos; +MD: net/minecraft/core/BlockPos/m_5484_ (Lnet/minecraft/core/Direction;I)Lnet/minecraft/core/Vec3i; net/minecraft/core/BlockPos/relative (Lnet/minecraft/core/Direction;I)Lnet/minecraft/core/Vec3i; +MD: net/minecraft/core/BlockPos/m_5487_ (Lnet/minecraft/core/Direction$Axis;I)Lnet/minecraft/core/BlockPos; net/minecraft/core/BlockPos/relative (Lnet/minecraft/core/Direction$Axis;I)Lnet/minecraft/core/BlockPos; +MD: net/minecraft/core/BlockPos/m_5487_ (Lnet/minecraft/core/Direction$Axis;I)Lnet/minecraft/core/Vec3i; net/minecraft/core/BlockPos/relative (Lnet/minecraft/core/Direction$Axis;I)Lnet/minecraft/core/Vec3i; +MD: net/minecraft/core/BlockPos/m_6625_ (I)Lnet/minecraft/core/Vec3i; net/minecraft/core/BlockPos/below (I)Lnet/minecraft/core/Vec3i; +MD: net/minecraft/core/BlockPos/m_6625_ (I)Lnet/minecraft/core/BlockPos; net/minecraft/core/BlockPos/below (I)Lnet/minecraft/core/BlockPos; +MD: net/minecraft/core/BlockPos/m_6630_ (I)Lnet/minecraft/core/BlockPos; net/minecraft/core/BlockPos/above (I)Lnet/minecraft/core/BlockPos; +MD: net/minecraft/core/BlockPos/m_6630_ (I)Lnet/minecraft/core/Vec3i; net/minecraft/core/BlockPos/above (I)Lnet/minecraft/core/Vec3i; +MD: net/minecraft/core/BlockPos/m_7494_ ()Lnet/minecraft/core/Vec3i; net/minecraft/core/BlockPos/above ()Lnet/minecraft/core/Vec3i; +MD: net/minecraft/core/BlockPos/m_7494_ ()Lnet/minecraft/core/BlockPos; net/minecraft/core/BlockPos/above ()Lnet/minecraft/core/BlockPos; +MD: net/minecraft/core/BlockPos/m_7495_ ()Lnet/minecraft/core/Vec3i; net/minecraft/core/BlockPos/below ()Lnet/minecraft/core/Vec3i; +MD: net/minecraft/core/BlockPos/m_7495_ ()Lnet/minecraft/core/BlockPos; net/minecraft/core/BlockPos/below ()Lnet/minecraft/core/BlockPos; +MD: net/minecraft/core/BlockPos/m_7724_ (Lnet/minecraft/core/Vec3i;)Lnet/minecraft/core/BlockPos; net/minecraft/core/BlockPos/cross (Lnet/minecraft/core/Vec3i;)Lnet/minecraft/core/BlockPos; +MD: net/minecraft/core/BlockPos/m_7724_ (Lnet/minecraft/core/Vec3i;)Lnet/minecraft/core/Vec3i; net/minecraft/core/BlockPos/cross (Lnet/minecraft/core/Vec3i;)Lnet/minecraft/core/Vec3i; +MD: net/minecraft/core/BlockPos/m_7918_ (III)Lnet/minecraft/core/Vec3i; net/minecraft/core/BlockPos/offset (III)Lnet/minecraft/core/Vec3i; +MD: net/minecraft/core/BlockPos/m_7918_ (III)Lnet/minecraft/core/BlockPos; net/minecraft/core/BlockPos/offset (III)Lnet/minecraft/core/BlockPos; +MD: net/minecraft/core/BlockPos/m_7949_ ()Lnet/minecraft/core/BlockPos; net/minecraft/core/BlockPos/immutable ()Lnet/minecraft/core/BlockPos; +MD: net/minecraft/core/BlockPos/m_7954_ (Lnet/minecraft/world/level/block/Rotation;)Lnet/minecraft/core/BlockPos; net/minecraft/core/BlockPos/rotate (Lnet/minecraft/world/level/block/Rotation;)Lnet/minecraft/core/BlockPos; +MD: net/minecraft/core/BlockPos$1/ (IILnet/minecraft/util/RandomSource;IIIII)V net/minecraft/core/BlockPos$1/ (IILnet/minecraft/util/RandomSource;IIIII)V +MD: net/minecraft/core/BlockPos$1/computeNext ()Ljava/lang/Object; net/minecraft/core/BlockPos$1/computeNext ()Ljava/lang/Object; +MD: net/minecraft/core/BlockPos$1/computeNext ()Lnet/minecraft/core/BlockPos; net/minecraft/core/BlockPos$1/computeNext ()Lnet/minecraft/core/BlockPos; +MD: net/minecraft/core/BlockPos$2/ (IIIIIII)V net/minecraft/core/BlockPos$2/ (IIIIIII)V +MD: net/minecraft/core/BlockPos$2/computeNext ()Ljava/lang/Object; net/minecraft/core/BlockPos$2/computeNext ()Ljava/lang/Object; +MD: net/minecraft/core/BlockPos$2/computeNext ()Lnet/minecraft/core/BlockPos; net/minecraft/core/BlockPos$2/computeNext ()Lnet/minecraft/core/BlockPos; +MD: net/minecraft/core/BlockPos$3/ (IIIIII)V net/minecraft/core/BlockPos$3/ (IIIIII)V +MD: net/minecraft/core/BlockPos$3/computeNext ()Ljava/lang/Object; net/minecraft/core/BlockPos$3/computeNext ()Ljava/lang/Object; +MD: net/minecraft/core/BlockPos$3/computeNext ()Lnet/minecraft/core/BlockPos; net/minecraft/core/BlockPos$3/computeNext ()Lnet/minecraft/core/BlockPos; +MD: net/minecraft/core/BlockPos$4/ (Lnet/minecraft/core/Direction;Lnet/minecraft/core/Direction;Lnet/minecraft/core/BlockPos;I)V net/minecraft/core/BlockPos$4/ (Lnet/minecraft/core/Direction;Lnet/minecraft/core/Direction;Lnet/minecraft/core/BlockPos;I)V +MD: net/minecraft/core/BlockPos$4/computeNext ()Ljava/lang/Object; net/minecraft/core/BlockPos$4/computeNext ()Ljava/lang/Object; +MD: net/minecraft/core/BlockPos$4/computeNext ()Lnet/minecraft/core/BlockPos$MutableBlockPos; net/minecraft/core/BlockPos$4/computeNext ()Lnet/minecraft/core/BlockPos$MutableBlockPos; +MD: net/minecraft/core/BlockPos$5/ ()V net/minecraft/core/BlockPos$5/ ()V +MD: net/minecraft/core/BlockPos$MutableBlockPos/ (III)V net/minecraft/core/BlockPos$MutableBlockPos/ (III)V +MD: net/minecraft/core/BlockPos$MutableBlockPos/ (DDD)V net/minecraft/core/BlockPos$MutableBlockPos/ (DDD)V +MD: net/minecraft/core/BlockPos$MutableBlockPos/ ()V net/minecraft/core/BlockPos$MutableBlockPos/ ()V +MD: net/minecraft/core/BlockPos$MutableBlockPos/m_121945_ (Lnet/minecraft/core/Direction;)Lnet/minecraft/core/Vec3i; net/minecraft/core/BlockPos$MutableBlockPos/relative (Lnet/minecraft/core/Direction;)Lnet/minecraft/core/Vec3i; +MD: net/minecraft/core/BlockPos$MutableBlockPos/m_121955_ (Lnet/minecraft/core/Vec3i;)Lnet/minecraft/core/Vec3i; net/minecraft/core/BlockPos$MutableBlockPos/offset (Lnet/minecraft/core/Vec3i;)Lnet/minecraft/core/Vec3i; +MD: net/minecraft/core/BlockPos$MutableBlockPos/m_121996_ (Lnet/minecraft/core/Vec3i;)Lnet/minecraft/core/Vec3i; net/minecraft/core/BlockPos$MutableBlockPos/subtract (Lnet/minecraft/core/Vec3i;)Lnet/minecraft/core/Vec3i; +MD: net/minecraft/core/BlockPos$MutableBlockPos/m_122012_ ()Lnet/minecraft/core/Vec3i; net/minecraft/core/BlockPos$MutableBlockPos/north ()Lnet/minecraft/core/Vec3i; +MD: net/minecraft/core/BlockPos$MutableBlockPos/m_122013_ (I)Lnet/minecraft/core/Vec3i; net/minecraft/core/BlockPos$MutableBlockPos/north (I)Lnet/minecraft/core/Vec3i; +MD: net/minecraft/core/BlockPos$MutableBlockPos/m_122019_ ()Lnet/minecraft/core/Vec3i; net/minecraft/core/BlockPos$MutableBlockPos/south ()Lnet/minecraft/core/Vec3i; +MD: net/minecraft/core/BlockPos$MutableBlockPos/m_122020_ (I)Lnet/minecraft/core/Vec3i; net/minecraft/core/BlockPos$MutableBlockPos/south (I)Lnet/minecraft/core/Vec3i; +MD: net/minecraft/core/BlockPos$MutableBlockPos/m_122024_ ()Lnet/minecraft/core/Vec3i; net/minecraft/core/BlockPos$MutableBlockPos/west ()Lnet/minecraft/core/Vec3i; +MD: net/minecraft/core/BlockPos$MutableBlockPos/m_122025_ (I)Lnet/minecraft/core/Vec3i; net/minecraft/core/BlockPos$MutableBlockPos/west (I)Lnet/minecraft/core/Vec3i; +MD: net/minecraft/core/BlockPos$MutableBlockPos/m_122029_ ()Lnet/minecraft/core/Vec3i; net/minecraft/core/BlockPos$MutableBlockPos/east ()Lnet/minecraft/core/Vec3i; +MD: net/minecraft/core/BlockPos$MutableBlockPos/m_122030_ (I)Lnet/minecraft/core/Vec3i; net/minecraft/core/BlockPos$MutableBlockPos/east (I)Lnet/minecraft/core/Vec3i; +MD: net/minecraft/core/BlockPos$MutableBlockPos/m_122139_ (Lnet/minecraft/core/AxisCycle;III)Lnet/minecraft/core/BlockPos$MutableBlockPos; net/minecraft/core/BlockPos$MutableBlockPos/set (Lnet/minecraft/core/AxisCycle;III)Lnet/minecraft/core/BlockPos$MutableBlockPos; +MD: net/minecraft/core/BlockPos$MutableBlockPos/m_122147_ (Lnet/minecraft/core/Direction$Axis;II)Lnet/minecraft/core/BlockPos$MutableBlockPos; net/minecraft/core/BlockPos$MutableBlockPos/clamp (Lnet/minecraft/core/Direction$Axis;II)Lnet/minecraft/core/BlockPos$MutableBlockPos; +MD: net/minecraft/core/BlockPos$MutableBlockPos/m_122154_ (Lnet/minecraft/core/Vec3i;III)Lnet/minecraft/core/BlockPos$MutableBlockPos; net/minecraft/core/BlockPos$MutableBlockPos/setWithOffset (Lnet/minecraft/core/Vec3i;III)Lnet/minecraft/core/BlockPos$MutableBlockPos; +MD: net/minecraft/core/BlockPos$MutableBlockPos/m_122159_ (Lnet/minecraft/core/Vec3i;Lnet/minecraft/core/Direction;)Lnet/minecraft/core/BlockPos$MutableBlockPos; net/minecraft/core/BlockPos$MutableBlockPos/setWithOffset (Lnet/minecraft/core/Vec3i;Lnet/minecraft/core/Direction;)Lnet/minecraft/core/BlockPos$MutableBlockPos; +MD: net/minecraft/core/BlockPos$MutableBlockPos/m_122169_ (DDD)Lnet/minecraft/core/BlockPos$MutableBlockPos; net/minecraft/core/BlockPos$MutableBlockPos/set (DDD)Lnet/minecraft/core/BlockPos$MutableBlockPos; +MD: net/minecraft/core/BlockPos$MutableBlockPos/m_122173_ (Lnet/minecraft/core/Direction;)Lnet/minecraft/core/BlockPos$MutableBlockPos; net/minecraft/core/BlockPos$MutableBlockPos/move (Lnet/minecraft/core/Direction;)Lnet/minecraft/core/BlockPos$MutableBlockPos; +MD: net/minecraft/core/BlockPos$MutableBlockPos/m_122175_ (Lnet/minecraft/core/Direction;I)Lnet/minecraft/core/BlockPos$MutableBlockPos; net/minecraft/core/BlockPos$MutableBlockPos/move (Lnet/minecraft/core/Direction;I)Lnet/minecraft/core/BlockPos$MutableBlockPos; +MD: net/minecraft/core/BlockPos$MutableBlockPos/m_122178_ (III)Lnet/minecraft/core/BlockPos$MutableBlockPos; net/minecraft/core/BlockPos$MutableBlockPos/set (III)Lnet/minecraft/core/BlockPos$MutableBlockPos; +MD: net/minecraft/core/BlockPos$MutableBlockPos/m_122184_ (III)Lnet/minecraft/core/BlockPos$MutableBlockPos; net/minecraft/core/BlockPos$MutableBlockPos/move (III)Lnet/minecraft/core/BlockPos$MutableBlockPos; +MD: net/minecraft/core/BlockPos$MutableBlockPos/m_122188_ (J)Lnet/minecraft/core/BlockPos$MutableBlockPos; net/minecraft/core/BlockPos$MutableBlockPos/set (J)Lnet/minecraft/core/BlockPos$MutableBlockPos; +MD: net/minecraft/core/BlockPos$MutableBlockPos/m_122190_ (Lnet/minecraft/core/Vec3i;)Lnet/minecraft/core/BlockPos$MutableBlockPos; net/minecraft/core/BlockPos$MutableBlockPos/set (Lnet/minecraft/core/Vec3i;)Lnet/minecraft/core/BlockPos$MutableBlockPos; +MD: net/minecraft/core/BlockPos$MutableBlockPos/m_122193_ (Lnet/minecraft/core/Vec3i;)Lnet/minecraft/core/BlockPos$MutableBlockPos; net/minecraft/core/BlockPos$MutableBlockPos/move (Lnet/minecraft/core/Vec3i;)Lnet/minecraft/core/BlockPos$MutableBlockPos; +MD: net/minecraft/core/BlockPos$MutableBlockPos/m_142393_ (I)Lnet/minecraft/core/Vec3i; net/minecraft/core/BlockPos$MutableBlockPos/multiply (I)Lnet/minecraft/core/Vec3i; +MD: net/minecraft/core/BlockPos$MutableBlockPos/m_142393_ (I)Lnet/minecraft/core/BlockPos; net/minecraft/core/BlockPos$MutableBlockPos/multiply (I)Lnet/minecraft/core/BlockPos; +MD: net/minecraft/core/BlockPos$MutableBlockPos/m_142443_ (I)Lnet/minecraft/core/BlockPos$MutableBlockPos; net/minecraft/core/BlockPos$MutableBlockPos/setZ (I)Lnet/minecraft/core/BlockPos$MutableBlockPos; +MD: net/minecraft/core/BlockPos$MutableBlockPos/m_142443_ (I)Lnet/minecraft/core/Vec3i; net/minecraft/core/BlockPos$MutableBlockPos/setZ (I)Lnet/minecraft/core/Vec3i; +MD: net/minecraft/core/BlockPos$MutableBlockPos/m_142448_ (I)Lnet/minecraft/core/Vec3i; net/minecraft/core/BlockPos$MutableBlockPos/setY (I)Lnet/minecraft/core/Vec3i; +MD: net/minecraft/core/BlockPos$MutableBlockPos/m_142448_ (I)Lnet/minecraft/core/BlockPos$MutableBlockPos; net/minecraft/core/BlockPos$MutableBlockPos/setY (I)Lnet/minecraft/core/BlockPos$MutableBlockPos; +MD: net/minecraft/core/BlockPos$MutableBlockPos/m_142451_ (I)Lnet/minecraft/core/Vec3i; net/minecraft/core/BlockPos$MutableBlockPos/setX (I)Lnet/minecraft/core/Vec3i; +MD: net/minecraft/core/BlockPos$MutableBlockPos/m_142451_ (I)Lnet/minecraft/core/BlockPos$MutableBlockPos; net/minecraft/core/BlockPos$MutableBlockPos/setX (I)Lnet/minecraft/core/BlockPos$MutableBlockPos; +MD: net/minecraft/core/BlockPos$MutableBlockPos/m_175306_ (Lnet/minecraft/core/Vec3i;Lnet/minecraft/core/Vec3i;)Lnet/minecraft/core/BlockPos$MutableBlockPos; net/minecraft/core/BlockPos$MutableBlockPos/setWithOffset (Lnet/minecraft/core/Vec3i;Lnet/minecraft/core/Vec3i;)Lnet/minecraft/core/BlockPos$MutableBlockPos; +MD: net/minecraft/core/BlockPos$MutableBlockPos/m_5484_ (Lnet/minecraft/core/Direction;I)Lnet/minecraft/core/BlockPos; net/minecraft/core/BlockPos$MutableBlockPos/relative (Lnet/minecraft/core/Direction;I)Lnet/minecraft/core/BlockPos; +MD: net/minecraft/core/BlockPos$MutableBlockPos/m_5484_ (Lnet/minecraft/core/Direction;I)Lnet/minecraft/core/Vec3i; net/minecraft/core/BlockPos$MutableBlockPos/relative (Lnet/minecraft/core/Direction;I)Lnet/minecraft/core/Vec3i; +MD: net/minecraft/core/BlockPos$MutableBlockPos/m_5487_ (Lnet/minecraft/core/Direction$Axis;I)Lnet/minecraft/core/BlockPos; net/minecraft/core/BlockPos$MutableBlockPos/relative (Lnet/minecraft/core/Direction$Axis;I)Lnet/minecraft/core/BlockPos; +MD: net/minecraft/core/BlockPos$MutableBlockPos/m_5487_ (Lnet/minecraft/core/Direction$Axis;I)Lnet/minecraft/core/Vec3i; net/minecraft/core/BlockPos$MutableBlockPos/relative (Lnet/minecraft/core/Direction$Axis;I)Lnet/minecraft/core/Vec3i; +MD: net/minecraft/core/BlockPos$MutableBlockPos/m_6625_ (I)Lnet/minecraft/core/Vec3i; net/minecraft/core/BlockPos$MutableBlockPos/below (I)Lnet/minecraft/core/Vec3i; +MD: net/minecraft/core/BlockPos$MutableBlockPos/m_6630_ (I)Lnet/minecraft/core/Vec3i; net/minecraft/core/BlockPos$MutableBlockPos/above (I)Lnet/minecraft/core/Vec3i; +MD: net/minecraft/core/BlockPos$MutableBlockPos/m_7494_ ()Lnet/minecraft/core/Vec3i; net/minecraft/core/BlockPos$MutableBlockPos/above ()Lnet/minecraft/core/Vec3i; +MD: net/minecraft/core/BlockPos$MutableBlockPos/m_7495_ ()Lnet/minecraft/core/Vec3i; net/minecraft/core/BlockPos$MutableBlockPos/below ()Lnet/minecraft/core/Vec3i; +MD: net/minecraft/core/BlockPos$MutableBlockPos/m_7724_ (Lnet/minecraft/core/Vec3i;)Lnet/minecraft/core/Vec3i; net/minecraft/core/BlockPos$MutableBlockPos/cross (Lnet/minecraft/core/Vec3i;)Lnet/minecraft/core/Vec3i; +MD: net/minecraft/core/BlockPos$MutableBlockPos/m_7918_ (III)Lnet/minecraft/core/Vec3i; net/minecraft/core/BlockPos$MutableBlockPos/offset (III)Lnet/minecraft/core/Vec3i; +MD: net/minecraft/core/BlockPos$MutableBlockPos/m_7918_ (III)Lnet/minecraft/core/BlockPos; net/minecraft/core/BlockPos$MutableBlockPos/offset (III)Lnet/minecraft/core/BlockPos; +MD: net/minecraft/core/BlockPos$MutableBlockPos/m_7949_ ()Lnet/minecraft/core/BlockPos; net/minecraft/core/BlockPos$MutableBlockPos/immutable ()Lnet/minecraft/core/BlockPos; +MD: net/minecraft/core/BlockPos$MutableBlockPos/m_7954_ (Lnet/minecraft/world/level/block/Rotation;)Lnet/minecraft/core/BlockPos; net/minecraft/core/BlockPos$MutableBlockPos/rotate (Lnet/minecraft/world/level/block/Rotation;)Lnet/minecraft/core/BlockPos; +MD: net/minecraft/core/BlockSource/m_6414_ ()Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/core/BlockSource/getBlockState ()Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/core/BlockSource/m_7094_ ()D net/minecraft/core/BlockSource/z ()D +MD: net/minecraft/core/BlockSource/m_7096_ ()D net/minecraft/core/BlockSource/x ()D +MD: net/minecraft/core/BlockSource/m_7098_ ()D net/minecraft/core/BlockSource/y ()D +MD: net/minecraft/core/BlockSource/m_7727_ ()Lnet/minecraft/server/level/ServerLevel; net/minecraft/core/BlockSource/getLevel ()Lnet/minecraft/server/level/ServerLevel; +MD: net/minecraft/core/BlockSource/m_7961_ ()Lnet/minecraft/core/BlockPos; net/minecraft/core/BlockSource/getPos ()Lnet/minecraft/core/BlockPos; +MD: net/minecraft/core/BlockSource/m_8118_ ()Lnet/minecraft/world/level/block/entity/BlockEntity; net/minecraft/core/BlockSource/getEntity ()Lnet/minecraft/world/level/block/entity/BlockEntity; +MD: net/minecraft/core/BlockSourceImpl/ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;)V net/minecraft/core/BlockSourceImpl/ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/core/BlockSourceImpl/m_6414_ ()Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/core/BlockSourceImpl/getBlockState ()Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/core/BlockSourceImpl/m_7094_ ()D net/minecraft/core/BlockSourceImpl/z ()D +MD: net/minecraft/core/BlockSourceImpl/m_7096_ ()D net/minecraft/core/BlockSourceImpl/x ()D +MD: net/minecraft/core/BlockSourceImpl/m_7098_ ()D net/minecraft/core/BlockSourceImpl/y ()D +MD: net/minecraft/core/BlockSourceImpl/m_7727_ ()Lnet/minecraft/server/level/ServerLevel; net/minecraft/core/BlockSourceImpl/getLevel ()Lnet/minecraft/server/level/ServerLevel; +MD: net/minecraft/core/BlockSourceImpl/m_7961_ ()Lnet/minecraft/core/BlockPos; net/minecraft/core/BlockSourceImpl/getPos ()Lnet/minecraft/core/BlockPos; +MD: net/minecraft/core/BlockSourceImpl/m_8118_ ()Lnet/minecraft/world/level/block/entity/BlockEntity; net/minecraft/core/BlockSourceImpl/getEntity ()Lnet/minecraft/world/level/block/entity/BlockEntity; +MD: net/minecraft/core/Cursor3D/ (IIIIII)V net/minecraft/core/Cursor3D/ (IIIIII)V +MD: net/minecraft/core/Cursor3D/m_122304_ ()Z net/minecraft/core/Cursor3D/advance ()Z +MD: net/minecraft/core/Cursor3D/m_122305_ ()I net/minecraft/core/Cursor3D/nextX ()I +MD: net/minecraft/core/Cursor3D/m_122306_ ()I net/minecraft/core/Cursor3D/nextY ()I +MD: net/minecraft/core/Cursor3D/m_122307_ ()I net/minecraft/core/Cursor3D/nextZ ()I +MD: net/minecraft/core/Cursor3D/m_122308_ ()I net/minecraft/core/Cursor3D/getNextType ()I +MD: net/minecraft/core/DefaultedMappedRegistry/ (Ljava/lang/String;Lnet/minecraft/resources/ResourceKey;Lcom/mojang/serialization/Lifecycle;Z)V net/minecraft/core/DefaultedMappedRegistry/ (Ljava/lang/String;Lnet/minecraft/resources/ResourceKey;Lcom/mojang/serialization/Lifecycle;Z)V +MD: net/minecraft/core/DefaultedMappedRegistry/m_122315_ ()Lnet/minecraft/resources/ResourceLocation; net/minecraft/core/DefaultedMappedRegistry/getDefaultKey ()Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/core/DefaultedMappedRegistry/m_203704_ (ILnet/minecraft/resources/ResourceKey;Ljava/lang/Object;Lcom/mojang/serialization/Lifecycle;)Lnet/minecraft/core/Holder$Reference; net/minecraft/core/DefaultedMappedRegistry/registerMapping (ILnet/minecraft/resources/ResourceKey;Ljava/lang/Object;Lcom/mojang/serialization/Lifecycle;)Lnet/minecraft/core/Holder$Reference; +MD: net/minecraft/core/DefaultedMappedRegistry/m_203704_ (ILnet/minecraft/resources/ResourceKey;Ljava/lang/Object;Lcom/mojang/serialization/Lifecycle;)Lnet/minecraft/core/Holder; net/minecraft/core/DefaultedMappedRegistry/registerMapping (ILnet/minecraft/resources/ResourceKey;Ljava/lang/Object;Lcom/mojang/serialization/Lifecycle;)Lnet/minecraft/core/Holder; +MD: net/minecraft/core/DefaultedMappedRegistry/m_213642_ (Lnet/minecraft/util/RandomSource;)Ljava/util/Optional; net/minecraft/core/DefaultedMappedRegistry/getRandom (Lnet/minecraft/util/RandomSource;)Ljava/util/Optional; +MD: net/minecraft/core/DefaultedMappedRegistry/m_257799_ ()Ljava/util/Optional; net/minecraft/core/DefaultedMappedRegistry/lambda$getRandom$0 ()Ljava/util/Optional; +MD: net/minecraft/core/DefaultedMappedRegistry/m_6612_ (Lnet/minecraft/resources/ResourceLocation;)Ljava/util/Optional; net/minecraft/core/DefaultedMappedRegistry/getOptional (Lnet/minecraft/resources/ResourceLocation;)Ljava/util/Optional; +MD: net/minecraft/core/DefaultedMappedRegistry/m_7447_ (Ljava/lang/Object;)I net/minecraft/core/DefaultedMappedRegistry/getId (Ljava/lang/Object;)I +MD: net/minecraft/core/DefaultedMappedRegistry/m_7745_ (Lnet/minecraft/resources/ResourceLocation;)Ljava/lang/Object; net/minecraft/core/DefaultedMappedRegistry/get (Lnet/minecraft/resources/ResourceLocation;)Ljava/lang/Object; +MD: net/minecraft/core/DefaultedMappedRegistry/m_7942_ (I)Ljava/lang/Object; net/minecraft/core/DefaultedMappedRegistry/byId (I)Ljava/lang/Object; +MD: net/minecraft/core/DefaultedMappedRegistry/m_7981_ (Ljava/lang/Object;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/core/DefaultedMappedRegistry/getKey (Ljava/lang/Object;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/core/DefaultedRegistry/m_122315_ ()Lnet/minecraft/resources/ResourceLocation; net/minecraft/core/DefaultedRegistry/getDefaultKey ()Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/core/DefaultedRegistry/m_7745_ (Lnet/minecraft/resources/ResourceLocation;)Ljava/lang/Object; net/minecraft/core/DefaultedRegistry/get (Lnet/minecraft/resources/ResourceLocation;)Ljava/lang/Object; +MD: net/minecraft/core/DefaultedRegistry/m_7942_ (I)Ljava/lang/Object; net/minecraft/core/DefaultedRegistry/byId (I)Ljava/lang/Object; +MD: net/minecraft/core/DefaultedRegistry/m_7981_ (Ljava/lang/Object;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/core/DefaultedRegistry/getKey (Ljava/lang/Object;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/core/Direction/ ()V net/minecraft/core/Direction/ ()V +MD: net/minecraft/core/Direction/ (Ljava/lang/String;IIIILjava/lang/String;Lnet/minecraft/core/Direction$AxisDirection;Lnet/minecraft/core/Direction$Axis;Lnet/minecraft/core/Vec3i;)V net/minecraft/core/Direction/ (Ljava/lang/String;IIIILjava/lang/String;Lnet/minecraft/core/Direction$AxisDirection;Lnet/minecraft/core/Direction$Axis;Lnet/minecraft/core/Vec3i;)V +MD: net/minecraft/core/Direction/m_122364_ (D)Lnet/minecraft/core/Direction; net/minecraft/core/Direction/fromYRot (D)Lnet/minecraft/core/Direction; +MD: net/minecraft/core/Direction/m_122366_ (DDD)Lnet/minecraft/core/Direction; net/minecraft/core/Direction/getNearest (DDD)Lnet/minecraft/core/Direction; +MD: net/minecraft/core/Direction/m_122370_ (F)Z net/minecraft/core/Direction/isFacingAngle (F)Z +MD: net/minecraft/core/Direction/m_122372_ (FFF)Lnet/minecraft/core/Direction; net/minecraft/core/Direction/getNearest (FFF)Lnet/minecraft/core/Direction; +MD: net/minecraft/core/Direction/m_122376_ (I)Lnet/minecraft/core/Direction; net/minecraft/core/Direction/from3DDataValue (I)Lnet/minecraft/core/Direction; +MD: net/minecraft/core/Direction/m_122378_ (III)Lnet/minecraft/core/Direction; net/minecraft/core/Direction/fromDelta (III)Lnet/minecraft/core/Direction; +MD: net/minecraft/core/Direction/m_122382_ (Lnet/minecraft/world/entity/Entity;)[Lnet/minecraft/core/Direction; net/minecraft/core/Direction/orderedByNearest (Lnet/minecraft/world/entity/Entity;)[Lnet/minecraft/core/Direction; +MD: net/minecraft/core/Direction/m_122387_ (Lnet/minecraft/core/Direction$Axis;Lnet/minecraft/core/Direction$AxisDirection;)Lnet/minecraft/core/Direction; net/minecraft/core/Direction/fromAxisAndDirection (Lnet/minecraft/core/Direction$Axis;Lnet/minecraft/core/Direction$AxisDirection;)Lnet/minecraft/core/Direction; +MD: net/minecraft/core/Direction/m_122390_ (Lnet/minecraft/core/Direction$AxisDirection;Lnet/minecraft/core/Direction$Axis;)Lnet/minecraft/core/Direction; net/minecraft/core/Direction/get (Lnet/minecraft/core/Direction$AxisDirection;Lnet/minecraft/core/Direction$Axis;)Lnet/minecraft/core/Direction; +MD: net/minecraft/core/Direction/m_122398_ (Lnet/minecraft/core/Direction;Lnet/minecraft/core/Direction;Lnet/minecraft/core/Direction;)[Lnet/minecraft/core/Direction; net/minecraft/core/Direction/makeDirectionArray (Lnet/minecraft/core/Direction;Lnet/minecraft/core/Direction;Lnet/minecraft/core/Direction;)[Lnet/minecraft/core/Direction; +MD: net/minecraft/core/Direction/m_122402_ (Ljava/lang/String;)Lnet/minecraft/core/Direction; net/minecraft/core/Direction/byName (Ljava/lang/String;)Lnet/minecraft/core/Direction; +MD: net/minecraft/core/Direction/m_122407_ (I)Lnet/minecraft/core/Direction; net/minecraft/core/Direction/from2DDataValue (I)Lnet/minecraft/core/Direction; +MD: net/minecraft/core/Direction/m_122411_ ()I net/minecraft/core/Direction/get3DDataValue ()I +MD: net/minecraft/core/Direction/m_122416_ ()I net/minecraft/core/Direction/get2DDataValue ()I +MD: net/minecraft/core/Direction/m_122421_ ()Lnet/minecraft/core/Direction$AxisDirection; net/minecraft/core/Direction/getAxisDirection ()Lnet/minecraft/core/Direction$AxisDirection; +MD: net/minecraft/core/Direction/m_122424_ ()Lnet/minecraft/core/Direction; net/minecraft/core/Direction/getOpposite ()Lnet/minecraft/core/Direction; +MD: net/minecraft/core/Direction/m_122427_ ()Lnet/minecraft/core/Direction; net/minecraft/core/Direction/getClockWise ()Lnet/minecraft/core/Direction; +MD: net/minecraft/core/Direction/m_122428_ ()Lnet/minecraft/core/Direction; net/minecraft/core/Direction/getCounterClockWise ()Lnet/minecraft/core/Direction; +MD: net/minecraft/core/Direction/m_122429_ ()I net/minecraft/core/Direction/getStepX ()I +MD: net/minecraft/core/Direction/m_122430_ ()I net/minecraft/core/Direction/getStepY ()I +MD: net/minecraft/core/Direction/m_122431_ ()I net/minecraft/core/Direction/getStepZ ()I +MD: net/minecraft/core/Direction/m_122433_ ()Ljava/lang/String; net/minecraft/core/Direction/getName ()Ljava/lang/String; +MD: net/minecraft/core/Direction/m_122434_ ()Lnet/minecraft/core/Direction$Axis; net/minecraft/core/Direction/getAxis ()Lnet/minecraft/core/Direction$Axis; +MD: net/minecraft/core/Direction/m_122435_ ()F net/minecraft/core/Direction/toYRot ()F +MD: net/minecraft/core/Direction/m_122436_ ()Lnet/minecraft/core/Vec3i; net/minecraft/core/Direction/getNormal ()Lnet/minecraft/core/Vec3i; +MD: net/minecraft/core/Direction/m_175357_ (Lnet/minecraft/world/entity/Entity;Lnet/minecraft/core/Direction$Axis;)Lnet/minecraft/core/Direction; net/minecraft/core/Direction/getFacingAxis (Lnet/minecraft/world/entity/Entity;Lnet/minecraft/core/Direction$Axis;)Lnet/minecraft/core/Direction; +MD: net/minecraft/core/Direction/m_175362_ (Lnet/minecraft/core/Direction$Axis;)Lnet/minecraft/core/Direction; net/minecraft/core/Direction/getClockWise (Lnet/minecraft/core/Direction$Axis;)Lnet/minecraft/core/Direction; +MD: net/minecraft/core/Direction/m_175364_ (Lnet/minecraft/core/Direction$Axis;)Lnet/minecraft/core/Direction; net/minecraft/core/Direction/getCounterClockWise (Lnet/minecraft/core/Direction$Axis;)Lnet/minecraft/core/Direction; +MD: net/minecraft/core/Direction/m_175366_ ()Lnet/minecraft/core/Direction; net/minecraft/core/Direction/getClockWiseX ()Lnet/minecraft/core/Direction; +MD: net/minecraft/core/Direction/m_175367_ ()Lnet/minecraft/core/Direction; net/minecraft/core/Direction/getCounterClockWiseX ()Lnet/minecraft/core/Direction; +MD: net/minecraft/core/Direction/m_175368_ ()Lnet/minecraft/core/Direction; net/minecraft/core/Direction/getClockWiseZ ()Lnet/minecraft/core/Direction; +MD: net/minecraft/core/Direction/m_175369_ ()Lnet/minecraft/core/Direction; net/minecraft/core/Direction/getCounterClockWiseZ ()Lnet/minecraft/core/Direction; +MD: net/minecraft/core/Direction/m_175370_ ()[Lnet/minecraft/core/Direction; net/minecraft/core/Direction/$values ()[Lnet/minecraft/core/Direction; +MD: net/minecraft/core/Direction/m_194528_ (Lnet/minecraft/core/Direction;)Lcom/mojang/serialization/DataResult; net/minecraft/core/Direction/verifyVertical (Lnet/minecraft/core/Direction;)Lcom/mojang/serialization/DataResult; +MD: net/minecraft/core/Direction/m_235666_ ()Ljava/util/stream/Stream; net/minecraft/core/Direction/stream ()Ljava/util/stream/Stream; +MD: net/minecraft/core/Direction/m_235667_ (Lnet/minecraft/util/RandomSource;)Ljava/util/Collection; net/minecraft/core/Direction/allShuffled (Lnet/minecraft/util/RandomSource;)Ljava/util/Collection; +MD: net/minecraft/core/Direction/m_235672_ (Lnet/minecraft/util/RandomSource;)Lnet/minecraft/core/Direction; net/minecraft/core/Direction/getRandom (Lnet/minecraft/util/RandomSource;)Lnet/minecraft/core/Direction; +MD: net/minecraft/core/Direction/m_235676_ (I)[Lnet/minecraft/core/Direction; net/minecraft/core/Direction/lambda$static$4 (I)[Lnet/minecraft/core/Direction; +MD: net/minecraft/core/Direction/m_235680_ (I)[Lnet/minecraft/core/Direction; net/minecraft/core/Direction/lambda$static$1 (I)[Lnet/minecraft/core/Direction; +MD: net/minecraft/core/Direction/m_235682_ (Lnet/minecraft/core/Direction;)I net/minecraft/core/Direction/lambda$static$3 (Lnet/minecraft/core/Direction;)I +MD: net/minecraft/core/Direction/m_235684_ (Lnet/minecraft/core/Direction;)Z net/minecraft/core/Direction/lambda$static$2 (Lnet/minecraft/core/Direction;)Z +MD: net/minecraft/core/Direction/m_235686_ (Lnet/minecraft/core/Direction;)I net/minecraft/core/Direction/lambda$static$0 (Lnet/minecraft/core/Direction;)I +MD: net/minecraft/core/Direction/m_252919_ (Lorg/joml/Matrix4f;Lnet/minecraft/core/Direction;)Lnet/minecraft/core/Direction; net/minecraft/core/Direction/rotate (Lorg/joml/Matrix4f;Lnet/minecraft/core/Direction;)Lnet/minecraft/core/Direction; +MD: net/minecraft/core/Direction/m_253071_ ()Lorg/joml/Vector3f; net/minecraft/core/Direction/step ()Lorg/joml/Vector3f; +MD: net/minecraft/core/Direction/m_253075_ ()Lorg/joml/Quaternionf; net/minecraft/core/Direction/getRotation ()Lorg/joml/Quaternionf; +MD: net/minecraft/core/Direction/m_274012_ ()Ljava/lang/String; net/minecraft/core/Direction/lambda$verifyVertical$5 ()Ljava/lang/String; +MD: net/minecraft/core/Direction/m_7912_ ()Ljava/lang/String; net/minecraft/core/Direction/getSerializedName ()Ljava/lang/String; +MD: net/minecraft/core/Direction/toString ()Ljava/lang/String; net/minecraft/core/Direction/toString ()Ljava/lang/String; +MD: net/minecraft/core/Direction/valueOf (Ljava/lang/String;)Lnet/minecraft/core/Direction; net/minecraft/core/Direction/valueOf (Ljava/lang/String;)Lnet/minecraft/core/Direction; +MD: net/minecraft/core/Direction/values ()[Lnet/minecraft/core/Direction; net/minecraft/core/Direction/values ()[Lnet/minecraft/core/Direction; +MD: net/minecraft/core/Direction$1/ ()V net/minecraft/core/Direction$1/ ()V +MD: net/minecraft/core/Direction$Axis/ ()V net/minecraft/core/Direction$Axis/ ()V +MD: net/minecraft/core/Direction$Axis/ (Ljava/lang/String;ILjava/lang/String;)V net/minecraft/core/Direction$Axis/ (Ljava/lang/String;ILjava/lang/String;)V +MD: net/minecraft/core/Direction$Axis/m_122473_ (Ljava/lang/String;)Lnet/minecraft/core/Direction$Axis; net/minecraft/core/Direction$Axis/byName (Ljava/lang/String;)Lnet/minecraft/core/Direction$Axis; +MD: net/minecraft/core/Direction$Axis/m_122477_ ()Ljava/lang/String; net/minecraft/core/Direction$Axis/getName ()Ljava/lang/String; +MD: net/minecraft/core/Direction$Axis/m_122478_ ()Z net/minecraft/core/Direction$Axis/isVertical ()Z +MD: net/minecraft/core/Direction$Axis/m_122479_ ()Z net/minecraft/core/Direction$Axis/isHorizontal ()Z +MD: net/minecraft/core/Direction$Axis/m_122480_ ()Lnet/minecraft/core/Direction$Plane; net/minecraft/core/Direction$Axis/getPlane ()Lnet/minecraft/core/Direction$Plane; +MD: net/minecraft/core/Direction$Axis/m_175371_ ()[Lnet/minecraft/core/Direction$Axis; net/minecraft/core/Direction$Axis/$values ()[Lnet/minecraft/core/Direction$Axis; +MD: net/minecraft/core/Direction$Axis/m_235688_ (Lnet/minecraft/util/RandomSource;)Lnet/minecraft/core/Direction$Axis; net/minecraft/core/Direction$Axis/getRandom (Lnet/minecraft/util/RandomSource;)Lnet/minecraft/core/Direction$Axis; +MD: net/minecraft/core/Direction$Axis/m_6150_ (DDD)D net/minecraft/core/Direction$Axis/choose (DDD)D +MD: net/minecraft/core/Direction$Axis/m_7863_ (III)I net/minecraft/core/Direction$Axis/choose (III)I +MD: net/minecraft/core/Direction$Axis/m_7912_ ()Ljava/lang/String; net/minecraft/core/Direction$Axis/getSerializedName ()Ljava/lang/String; +MD: net/minecraft/core/Direction$Axis/test (Lnet/minecraft/core/Direction;)Z net/minecraft/core/Direction$Axis/test (Lnet/minecraft/core/Direction;)Z +MD: net/minecraft/core/Direction$Axis/test (Ljava/lang/Object;)Z net/minecraft/core/Direction$Axis/test (Ljava/lang/Object;)Z +MD: net/minecraft/core/Direction$Axis/toString ()Ljava/lang/String; net/minecraft/core/Direction$Axis/toString ()Ljava/lang/String; +MD: net/minecraft/core/Direction$Axis/valueOf (Ljava/lang/String;)Lnet/minecraft/core/Direction$Axis; net/minecraft/core/Direction$Axis/valueOf (Ljava/lang/String;)Lnet/minecraft/core/Direction$Axis; +MD: net/minecraft/core/Direction$Axis/values ()[Lnet/minecraft/core/Direction$Axis; net/minecraft/core/Direction$Axis/values ()[Lnet/minecraft/core/Direction$Axis; +MD: net/minecraft/core/Direction$Axis$1/ (Ljava/lang/String;ILjava/lang/String;)V net/minecraft/core/Direction$Axis$1/ (Ljava/lang/String;ILjava/lang/String;)V +MD: net/minecraft/core/Direction$Axis$1/m_6150_ (DDD)D net/minecraft/core/Direction$Axis$1/choose (DDD)D +MD: net/minecraft/core/Direction$Axis$1/m_7863_ (III)I net/minecraft/core/Direction$Axis$1/choose (III)I +MD: net/minecraft/core/Direction$Axis$1/test (Ljava/lang/Object;)Z net/minecraft/core/Direction$Axis$1/test (Ljava/lang/Object;)Z +MD: net/minecraft/core/Direction$Axis$2/ (Ljava/lang/String;ILjava/lang/String;)V net/minecraft/core/Direction$Axis$2/ (Ljava/lang/String;ILjava/lang/String;)V +MD: net/minecraft/core/Direction$Axis$2/m_6150_ (DDD)D net/minecraft/core/Direction$Axis$2/choose (DDD)D +MD: net/minecraft/core/Direction$Axis$2/m_7863_ (III)I net/minecraft/core/Direction$Axis$2/choose (III)I +MD: net/minecraft/core/Direction$Axis$2/test (Ljava/lang/Object;)Z net/minecraft/core/Direction$Axis$2/test (Ljava/lang/Object;)Z +MD: net/minecraft/core/Direction$Axis$3/ (Ljava/lang/String;ILjava/lang/String;)V net/minecraft/core/Direction$Axis$3/ (Ljava/lang/String;ILjava/lang/String;)V +MD: net/minecraft/core/Direction$Axis$3/m_6150_ (DDD)D net/minecraft/core/Direction$Axis$3/choose (DDD)D +MD: net/minecraft/core/Direction$Axis$3/m_7863_ (III)I net/minecraft/core/Direction$Axis$3/choose (III)I +MD: net/minecraft/core/Direction$Axis$3/test (Ljava/lang/Object;)Z net/minecraft/core/Direction$Axis$3/test (Ljava/lang/Object;)Z +MD: net/minecraft/core/Direction$AxisDirection/ ()V net/minecraft/core/Direction$AxisDirection/ ()V +MD: net/minecraft/core/Direction$AxisDirection/ (Ljava/lang/String;IILjava/lang/String;)V net/minecraft/core/Direction$AxisDirection/ (Ljava/lang/String;IILjava/lang/String;)V +MD: net/minecraft/core/Direction$AxisDirection/m_122540_ ()I net/minecraft/core/Direction$AxisDirection/getStep ()I +MD: net/minecraft/core/Direction$AxisDirection/m_122541_ ()Lnet/minecraft/core/Direction$AxisDirection; net/minecraft/core/Direction$AxisDirection/opposite ()Lnet/minecraft/core/Direction$AxisDirection; +MD: net/minecraft/core/Direction$AxisDirection/m_175372_ ()Ljava/lang/String; net/minecraft/core/Direction$AxisDirection/getName ()Ljava/lang/String; +MD: net/minecraft/core/Direction$AxisDirection/m_175373_ ()[Lnet/minecraft/core/Direction$AxisDirection; net/minecraft/core/Direction$AxisDirection/$values ()[Lnet/minecraft/core/Direction$AxisDirection; +MD: net/minecraft/core/Direction$AxisDirection/toString ()Ljava/lang/String; net/minecraft/core/Direction$AxisDirection/toString ()Ljava/lang/String; +MD: net/minecraft/core/Direction$AxisDirection/valueOf (Ljava/lang/String;)Lnet/minecraft/core/Direction$AxisDirection; net/minecraft/core/Direction$AxisDirection/valueOf (Ljava/lang/String;)Lnet/minecraft/core/Direction$AxisDirection; +MD: net/minecraft/core/Direction$AxisDirection/values ()[Lnet/minecraft/core/Direction$AxisDirection; net/minecraft/core/Direction$AxisDirection/values ()[Lnet/minecraft/core/Direction$AxisDirection; +MD: net/minecraft/core/Direction$Plane/ ()V net/minecraft/core/Direction$Plane/ ()V +MD: net/minecraft/core/Direction$Plane/ (Ljava/lang/String;I[Lnet/minecraft/core/Direction;[Lnet/minecraft/core/Direction$Axis;)V net/minecraft/core/Direction$Plane/ (Ljava/lang/String;I[Lnet/minecraft/core/Direction;[Lnet/minecraft/core/Direction$Axis;)V +MD: net/minecraft/core/Direction$Plane/iterator ()Ljava/util/Iterator; net/minecraft/core/Direction$Plane/iterator ()Ljava/util/Iterator; +MD: net/minecraft/core/Direction$Plane/m_122557_ ()Ljava/util/stream/Stream; net/minecraft/core/Direction$Plane/stream ()Ljava/util/stream/Stream; +MD: net/minecraft/core/Direction$Plane/m_175374_ ()[Lnet/minecraft/core/Direction$Plane; net/minecraft/core/Direction$Plane/$values ()[Lnet/minecraft/core/Direction$Plane; +MD: net/minecraft/core/Direction$Plane/m_235690_ (Lnet/minecraft/util/RandomSource;)Lnet/minecraft/core/Direction; net/minecraft/core/Direction$Plane/getRandomDirection (Lnet/minecraft/util/RandomSource;)Lnet/minecraft/core/Direction; +MD: net/minecraft/core/Direction$Plane/m_235692_ (Lnet/minecraft/util/RandomSource;)Lnet/minecraft/core/Direction$Axis; net/minecraft/core/Direction$Plane/getRandomAxis (Lnet/minecraft/util/RandomSource;)Lnet/minecraft/core/Direction$Axis; +MD: net/minecraft/core/Direction$Plane/m_235694_ (Lnet/minecraft/util/RandomSource;)Ljava/util/List; net/minecraft/core/Direction$Plane/shuffledCopy (Lnet/minecraft/util/RandomSource;)Ljava/util/List; +MD: net/minecraft/core/Direction$Plane/test (Ljava/lang/Object;)Z net/minecraft/core/Direction$Plane/test (Ljava/lang/Object;)Z +MD: net/minecraft/core/Direction$Plane/test (Lnet/minecraft/core/Direction;)Z net/minecraft/core/Direction$Plane/test (Lnet/minecraft/core/Direction;)Z +MD: net/minecraft/core/Direction$Plane/valueOf (Ljava/lang/String;)Lnet/minecraft/core/Direction$Plane; net/minecraft/core/Direction$Plane/valueOf (Ljava/lang/String;)Lnet/minecraft/core/Direction$Plane; +MD: net/minecraft/core/Direction$Plane/values ()[Lnet/minecraft/core/Direction$Plane; net/minecraft/core/Direction$Plane/values ()[Lnet/minecraft/core/Direction$Plane; +MD: net/minecraft/core/Direction8/ ()V net/minecraft/core/Direction8/ ()V +MD: net/minecraft/core/Direction8/ (Ljava/lang/String;I[Lnet/minecraft/core/Direction;)V net/minecraft/core/Direction8/ (Ljava/lang/String;I[Lnet/minecraft/core/Direction;)V +MD: net/minecraft/core/Direction8/m_122593_ ()Ljava/util/Set; net/minecraft/core/Direction8/getDirections ()Ljava/util/Set; +MD: net/minecraft/core/Direction8/m_175375_ ()[Lnet/minecraft/core/Direction8; net/minecraft/core/Direction8/$values ()[Lnet/minecraft/core/Direction8; +MD: net/minecraft/core/Direction8/m_235697_ ()I net/minecraft/core/Direction8/getStepX ()I +MD: net/minecraft/core/Direction8/m_235698_ ()I net/minecraft/core/Direction8/getStepZ ()I +MD: net/minecraft/core/Direction8/valueOf (Ljava/lang/String;)Lnet/minecraft/core/Direction8; net/minecraft/core/Direction8/valueOf (Ljava/lang/String;)Lnet/minecraft/core/Direction8; +MD: net/minecraft/core/Direction8/values ()[Lnet/minecraft/core/Direction8; net/minecraft/core/Direction8/values ()[Lnet/minecraft/core/Direction8; +MD: net/minecraft/core/FrontAndTop/ ()V net/minecraft/core/FrontAndTop/ ()V +MD: net/minecraft/core/FrontAndTop/ (Ljava/lang/String;ILjava/lang/String;Lnet/minecraft/core/Direction;Lnet/minecraft/core/Direction;)V net/minecraft/core/FrontAndTop/ (Ljava/lang/String;ILjava/lang/String;Lnet/minecraft/core/Direction;Lnet/minecraft/core/Direction;)V +MD: net/minecraft/core/FrontAndTop/m_122622_ (Lnet/minecraft/core/Direction;Lnet/minecraft/core/Direction;)Lnet/minecraft/core/FrontAndTop; net/minecraft/core/FrontAndTop/fromFrontAndTop (Lnet/minecraft/core/Direction;Lnet/minecraft/core/Direction;)Lnet/minecraft/core/FrontAndTop; +MD: net/minecraft/core/FrontAndTop/m_122625_ ()Lnet/minecraft/core/Direction; net/minecraft/core/FrontAndTop/front ()Lnet/minecraft/core/Direction; +MD: net/minecraft/core/FrontAndTop/m_122626_ (Lnet/minecraft/core/Direction;Lnet/minecraft/core/Direction;)I net/minecraft/core/FrontAndTop/lookupKey (Lnet/minecraft/core/Direction;Lnet/minecraft/core/Direction;)I +MD: net/minecraft/core/FrontAndTop/m_122629_ ()Lnet/minecraft/core/Direction; net/minecraft/core/FrontAndTop/top ()Lnet/minecraft/core/Direction; +MD: net/minecraft/core/FrontAndTop/m_175376_ (Lit/unimi/dsi/fastutil/ints/Int2ObjectOpenHashMap;)V net/minecraft/core/FrontAndTop/lambda$static$0 (Lit/unimi/dsi/fastutil/ints/Int2ObjectOpenHashMap;)V +MD: net/minecraft/core/FrontAndTop/m_175378_ ()[Lnet/minecraft/core/FrontAndTop; net/minecraft/core/FrontAndTop/$values ()[Lnet/minecraft/core/FrontAndTop; +MD: net/minecraft/core/FrontAndTop/m_7912_ ()Ljava/lang/String; net/minecraft/core/FrontAndTop/getSerializedName ()Ljava/lang/String; +MD: net/minecraft/core/FrontAndTop/valueOf (Ljava/lang/String;)Lnet/minecraft/core/FrontAndTop; net/minecraft/core/FrontAndTop/valueOf (Ljava/lang/String;)Lnet/minecraft/core/FrontAndTop; +MD: net/minecraft/core/FrontAndTop/values ()[Lnet/minecraft/core/FrontAndTop; net/minecraft/core/FrontAndTop/values ()[Lnet/minecraft/core/FrontAndTop; +MD: net/minecraft/core/GlobalPos/ ()V net/minecraft/core/GlobalPos/ ()V +MD: net/minecraft/core/GlobalPos/ (Lnet/minecraft/resources/ResourceKey;Lnet/minecraft/core/BlockPos;)V net/minecraft/core/GlobalPos/ (Lnet/minecraft/resources/ResourceKey;Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/core/GlobalPos/equals (Ljava/lang/Object;)Z net/minecraft/core/GlobalPos/equals (Ljava/lang/Object;)Z +MD: net/minecraft/core/GlobalPos/hashCode ()I net/minecraft/core/GlobalPos/hashCode ()I +MD: net/minecraft/core/GlobalPos/m_122640_ ()Lnet/minecraft/resources/ResourceKey; net/minecraft/core/GlobalPos/dimension ()Lnet/minecraft/resources/ResourceKey; +MD: net/minecraft/core/GlobalPos/m_122641_ (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/core/GlobalPos/lambda$static$0 (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/core/GlobalPos/m_122643_ (Lnet/minecraft/resources/ResourceKey;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/core/GlobalPos; net/minecraft/core/GlobalPos/of (Lnet/minecraft/resources/ResourceKey;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/core/GlobalPos; +MD: net/minecraft/core/GlobalPos/m_122646_ ()Lnet/minecraft/core/BlockPos; net/minecraft/core/GlobalPos/pos ()Lnet/minecraft/core/BlockPos; +MD: net/minecraft/core/GlobalPos/toString ()Ljava/lang/String; net/minecraft/core/GlobalPos/toString ()Ljava/lang/String; +MD: net/minecraft/core/Holder/m_203334_ ()Ljava/lang/Object; net/minecraft/core/Holder/value ()Ljava/lang/Object; +MD: net/minecraft/core/Holder/m_203373_ (Lnet/minecraft/resources/ResourceLocation;)Z net/minecraft/core/Holder/is (Lnet/minecraft/resources/ResourceLocation;)Z +MD: net/minecraft/core/Holder/m_203376_ ()Lnet/minecraft/core/Holder$Kind; net/minecraft/core/Holder/kind ()Lnet/minecraft/core/Holder$Kind; +MD: net/minecraft/core/Holder/m_203401_ (Lnet/minecraft/core/HolderOwner;)Z net/minecraft/core/Holder/canSerializeIn (Lnet/minecraft/core/HolderOwner;)Z +MD: net/minecraft/core/Holder/m_203425_ (Ljava/util/function/Predicate;)Z net/minecraft/core/Holder/is (Ljava/util/function/Predicate;)Z +MD: net/minecraft/core/Holder/m_203439_ ()Lcom/mojang/datafixers/util/Either; net/minecraft/core/Holder/unwrap ()Lcom/mojang/datafixers/util/Either; +MD: net/minecraft/core/Holder/m_203543_ ()Ljava/util/Optional; net/minecraft/core/Holder/unwrapKey ()Ljava/util/Optional; +MD: net/minecraft/core/Holder/m_203565_ (Lnet/minecraft/resources/ResourceKey;)Z net/minecraft/core/Holder/is (Lnet/minecraft/resources/ResourceKey;)Z +MD: net/minecraft/core/Holder/m_203616_ ()Ljava/util/stream/Stream; net/minecraft/core/Holder/tags ()Ljava/util/stream/Stream; +MD: net/minecraft/core/Holder/m_203633_ ()Z net/minecraft/core/Holder/isBound ()Z +MD: net/minecraft/core/Holder/m_203656_ (Lnet/minecraft/tags/TagKey;)Z net/minecraft/core/Holder/is (Lnet/minecraft/tags/TagKey;)Z +MD: net/minecraft/core/Holder/m_205709_ (Ljava/lang/Object;)Lnet/minecraft/core/Holder; net/minecraft/core/Holder/direct (Ljava/lang/Object;)Lnet/minecraft/core/Holder; +MD: net/minecraft/core/Holder$Direct/ (Ljava/lang/Object;)V net/minecraft/core/Holder$Direct/ (Ljava/lang/Object;)V +MD: net/minecraft/core/Holder$Direct/equals (Ljava/lang/Object;)Z net/minecraft/core/Holder$Direct/equals (Ljava/lang/Object;)Z +MD: net/minecraft/core/Holder$Direct/hashCode ()I net/minecraft/core/Holder$Direct/hashCode ()I +MD: net/minecraft/core/Holder$Direct/m_203334_ ()Ljava/lang/Object; net/minecraft/core/Holder$Direct/value ()Ljava/lang/Object; +MD: net/minecraft/core/Holder$Direct/m_203373_ (Lnet/minecraft/resources/ResourceLocation;)Z net/minecraft/core/Holder$Direct/is (Lnet/minecraft/resources/ResourceLocation;)Z +MD: net/minecraft/core/Holder$Direct/m_203376_ ()Lnet/minecraft/core/Holder$Kind; net/minecraft/core/Holder$Direct/kind ()Lnet/minecraft/core/Holder$Kind; +MD: net/minecraft/core/Holder$Direct/m_203401_ (Lnet/minecraft/core/HolderOwner;)Z net/minecraft/core/Holder$Direct/canSerializeIn (Lnet/minecraft/core/HolderOwner;)Z +MD: net/minecraft/core/Holder$Direct/m_203425_ (Ljava/util/function/Predicate;)Z net/minecraft/core/Holder$Direct/is (Ljava/util/function/Predicate;)Z +MD: net/minecraft/core/Holder$Direct/m_203439_ ()Lcom/mojang/datafixers/util/Either; net/minecraft/core/Holder$Direct/unwrap ()Lcom/mojang/datafixers/util/Either; +MD: net/minecraft/core/Holder$Direct/m_203543_ ()Ljava/util/Optional; net/minecraft/core/Holder$Direct/unwrapKey ()Ljava/util/Optional; +MD: net/minecraft/core/Holder$Direct/m_203565_ (Lnet/minecraft/resources/ResourceKey;)Z net/minecraft/core/Holder$Direct/is (Lnet/minecraft/resources/ResourceKey;)Z +MD: net/minecraft/core/Holder$Direct/m_203616_ ()Ljava/util/stream/Stream; net/minecraft/core/Holder$Direct/tags ()Ljava/util/stream/Stream; +MD: net/minecraft/core/Holder$Direct/m_203633_ ()Z net/minecraft/core/Holder$Direct/isBound ()Z +MD: net/minecraft/core/Holder$Direct/m_203656_ (Lnet/minecraft/tags/TagKey;)Z net/minecraft/core/Holder$Direct/is (Lnet/minecraft/tags/TagKey;)Z +MD: net/minecraft/core/Holder$Direct/toString ()Ljava/lang/String; net/minecraft/core/Holder$Direct/toString ()Ljava/lang/String; +MD: net/minecraft/core/Holder$Kind/ ()V net/minecraft/core/Holder$Kind/ ()V +MD: net/minecraft/core/Holder$Kind/ (Ljava/lang/String;I)V net/minecraft/core/Holder$Kind/ (Ljava/lang/String;I)V +MD: net/minecraft/core/Holder$Kind/m_205744_ ()[Lnet/minecraft/core/Holder$Kind; net/minecraft/core/Holder$Kind/$values ()[Lnet/minecraft/core/Holder$Kind; +MD: net/minecraft/core/Holder$Kind/valueOf (Ljava/lang/String;)Lnet/minecraft/core/Holder$Kind; net/minecraft/core/Holder$Kind/valueOf (Ljava/lang/String;)Lnet/minecraft/core/Holder$Kind; +MD: net/minecraft/core/Holder$Kind/values ()[Lnet/minecraft/core/Holder$Kind; net/minecraft/core/Holder$Kind/values ()[Lnet/minecraft/core/Holder$Kind; +MD: net/minecraft/core/Holder$Reference/ (Lnet/minecraft/core/Holder$Reference$Type;Lnet/minecraft/core/HolderOwner;Lnet/minecraft/resources/ResourceKey;Ljava/lang/Object;)V net/minecraft/core/Holder$Reference/ (Lnet/minecraft/core/Holder$Reference$Type;Lnet/minecraft/core/HolderOwner;Lnet/minecraft/resources/ResourceKey;Ljava/lang/Object;)V +MD: net/minecraft/core/Holder$Reference/m_203334_ ()Ljava/lang/Object; net/minecraft/core/Holder$Reference/value ()Ljava/lang/Object; +MD: net/minecraft/core/Holder$Reference/m_203373_ (Lnet/minecraft/resources/ResourceLocation;)Z net/minecraft/core/Holder$Reference/is (Lnet/minecraft/resources/ResourceLocation;)Z +MD: net/minecraft/core/Holder$Reference/m_203376_ ()Lnet/minecraft/core/Holder$Kind; net/minecraft/core/Holder$Reference/kind ()Lnet/minecraft/core/Holder$Kind; +MD: net/minecraft/core/Holder$Reference/m_203401_ (Lnet/minecraft/core/HolderOwner;)Z net/minecraft/core/Holder$Reference/canSerializeIn (Lnet/minecraft/core/HolderOwner;)Z +MD: net/minecraft/core/Holder$Reference/m_203425_ (Ljava/util/function/Predicate;)Z net/minecraft/core/Holder$Reference/is (Ljava/util/function/Predicate;)Z +MD: net/minecraft/core/Holder$Reference/m_203439_ ()Lcom/mojang/datafixers/util/Either; net/minecraft/core/Holder$Reference/unwrap ()Lcom/mojang/datafixers/util/Either; +MD: net/minecraft/core/Holder$Reference/m_203543_ ()Ljava/util/Optional; net/minecraft/core/Holder$Reference/unwrapKey ()Ljava/util/Optional; +MD: net/minecraft/core/Holder$Reference/m_203565_ (Lnet/minecraft/resources/ResourceKey;)Z net/minecraft/core/Holder$Reference/is (Lnet/minecraft/resources/ResourceKey;)Z +MD: net/minecraft/core/Holder$Reference/m_203616_ ()Ljava/util/stream/Stream; net/minecraft/core/Holder$Reference/tags ()Ljava/util/stream/Stream; +MD: net/minecraft/core/Holder$Reference/m_203633_ ()Z net/minecraft/core/Holder$Reference/isBound ()Z +MD: net/minecraft/core/Holder$Reference/m_203656_ (Lnet/minecraft/tags/TagKey;)Z net/minecraft/core/Holder$Reference/is (Lnet/minecraft/tags/TagKey;)Z +MD: net/minecraft/core/Holder$Reference/m_205769_ (Ljava/util/Collection;)V net/minecraft/core/Holder$Reference/bindTags (Ljava/util/Collection;)V +MD: net/minecraft/core/Holder$Reference/m_205785_ ()Lnet/minecraft/resources/ResourceKey; net/minecraft/core/Holder$Reference/key ()Lnet/minecraft/resources/ResourceKey; +MD: net/minecraft/core/Holder$Reference/m_246870_ (Lnet/minecraft/resources/ResourceKey;)V net/minecraft/core/Holder$Reference/bindKey (Lnet/minecraft/resources/ResourceKey;)V +MD: net/minecraft/core/Holder$Reference/m_247654_ (Ljava/lang/Object;)V net/minecraft/core/Holder$Reference/bindValue (Ljava/lang/Object;)V +MD: net/minecraft/core/Holder$Reference/m_254896_ (Lnet/minecraft/core/HolderOwner;Lnet/minecraft/resources/ResourceKey;)Lnet/minecraft/core/Holder$Reference; net/minecraft/core/Holder$Reference/createStandAlone (Lnet/minecraft/core/HolderOwner;Lnet/minecraft/resources/ResourceKey;)Lnet/minecraft/core/Holder$Reference; +MD: net/minecraft/core/Holder$Reference/m_255375_ (Lnet/minecraft/core/HolderOwner;Ljava/lang/Object;)Lnet/minecraft/core/Holder$Reference; net/minecraft/core/Holder$Reference/createIntrusive (Lnet/minecraft/core/HolderOwner;Ljava/lang/Object;)Lnet/minecraft/core/Holder$Reference; +MD: net/minecraft/core/Holder$Reference/toString ()Ljava/lang/String; net/minecraft/core/Holder$Reference/toString ()Ljava/lang/String; +MD: net/minecraft/core/Holder$Reference$Type/ ()V net/minecraft/core/Holder$Reference$Type/ ()V +MD: net/minecraft/core/Holder$Reference$Type/ (Ljava/lang/String;I)V net/minecraft/core/Holder$Reference$Type/ (Ljava/lang/String;I)V +MD: net/minecraft/core/Holder$Reference$Type/m_205794_ ()[Lnet/minecraft/core/Holder$Reference$Type; net/minecraft/core/Holder$Reference$Type/$values ()[Lnet/minecraft/core/Holder$Reference$Type; +MD: net/minecraft/core/Holder$Reference$Type/valueOf (Ljava/lang/String;)Lnet/minecraft/core/Holder$Reference$Type; net/minecraft/core/Holder$Reference$Type/valueOf (Ljava/lang/String;)Lnet/minecraft/core/Holder$Reference$Type; +MD: net/minecraft/core/Holder$Reference$Type/values ()[Lnet/minecraft/core/Holder$Reference$Type; net/minecraft/core/Holder$Reference$Type/values ()[Lnet/minecraft/core/Holder$Reference$Type; +MD: net/minecraft/core/HolderGetter/m_254901_ (Lnet/minecraft/tags/TagKey;)Ljava/util/Optional; net/minecraft/core/HolderGetter/get (Lnet/minecraft/tags/TagKey;)Ljava/util/Optional; +MD: net/minecraft/core/HolderGetter/m_254902_ (Lnet/minecraft/resources/ResourceKey;)Ljava/util/Optional; net/minecraft/core/HolderGetter/get (Lnet/minecraft/resources/ResourceKey;)Ljava/util/Optional; +MD: net/minecraft/core/HolderGetter/m_254956_ (Lnet/minecraft/tags/TagKey;)Lnet/minecraft/core/HolderSet$Named; net/minecraft/core/HolderGetter/getOrThrow (Lnet/minecraft/tags/TagKey;)Lnet/minecraft/core/HolderSet$Named; +MD: net/minecraft/core/HolderGetter/m_255029_ (Lnet/minecraft/resources/ResourceKey;)Ljava/lang/IllegalStateException; net/minecraft/core/HolderGetter/lambda$getOrThrow$0 (Lnet/minecraft/resources/ResourceKey;)Ljava/lang/IllegalStateException; +MD: net/minecraft/core/HolderGetter/m_255043_ (Lnet/minecraft/resources/ResourceKey;)Lnet/minecraft/core/Holder$Reference; net/minecraft/core/HolderGetter/getOrThrow (Lnet/minecraft/resources/ResourceKey;)Lnet/minecraft/core/Holder$Reference; +MD: net/minecraft/core/HolderGetter/m_255357_ (Lnet/minecraft/tags/TagKey;)Ljava/lang/IllegalStateException; net/minecraft/core/HolderGetter/lambda$getOrThrow$1 (Lnet/minecraft/tags/TagKey;)Ljava/lang/IllegalStateException; +MD: net/minecraft/core/HolderGetter$Provider/m_254974_ (Lnet/minecraft/resources/ResourceKey;)Lnet/minecraft/core/HolderGetter; net/minecraft/core/HolderGetter$Provider/lookupOrThrow (Lnet/minecraft/resources/ResourceKey;)Lnet/minecraft/core/HolderGetter; +MD: net/minecraft/core/HolderGetter$Provider/m_255095_ (Lnet/minecraft/resources/ResourceKey;)Ljava/util/Optional; net/minecraft/core/HolderGetter$Provider/lookup (Lnet/minecraft/resources/ResourceKey;)Ljava/util/Optional; +MD: net/minecraft/core/HolderGetter$Provider/m_255318_ (Lnet/minecraft/resources/ResourceKey;)Ljava/lang/IllegalStateException; net/minecraft/core/HolderGetter$Provider/lambda$lookupOrThrow$0 (Lnet/minecraft/resources/ResourceKey;)Ljava/lang/IllegalStateException; +MD: net/minecraft/core/HolderLookup/m_214062_ ()Ljava/util/stream/Stream; net/minecraft/core/HolderLookup/listElements ()Ljava/util/stream/Stream; +MD: net/minecraft/core/HolderLookup/m_214063_ ()Ljava/util/stream/Stream; net/minecraft/core/HolderLookup/listTags ()Ljava/util/stream/Stream; +MD: net/minecraft/core/HolderLookup/m_255107_ ()Ljava/util/stream/Stream; net/minecraft/core/HolderLookup/listTagIds ()Ljava/util/stream/Stream; +MD: net/minecraft/core/HolderLookup/m_255209_ ()Ljava/util/stream/Stream; net/minecraft/core/HolderLookup/listElementIds ()Ljava/util/stream/Stream; +MD: net/minecraft/core/HolderLookup/m_255348_ (Ljava/util/function/Predicate;)Lnet/minecraft/core/HolderLookup; net/minecraft/core/HolderLookup/filterElements (Ljava/util/function/Predicate;)Lnet/minecraft/core/HolderLookup; +MD: net/minecraft/core/HolderLookup$1/ (Lnet/minecraft/core/HolderLookup;Lnet/minecraft/core/HolderLookup;Ljava/util/function/Predicate;)V net/minecraft/core/HolderLookup$1/ (Lnet/minecraft/core/HolderLookup;Lnet/minecraft/core/HolderLookup;Ljava/util/function/Predicate;)V +MD: net/minecraft/core/HolderLookup$1/m_214062_ ()Ljava/util/stream/Stream; net/minecraft/core/HolderLookup$1/listElements ()Ljava/util/stream/Stream; +MD: net/minecraft/core/HolderLookup$1/m_254902_ (Lnet/minecraft/resources/ResourceKey;)Ljava/util/Optional; net/minecraft/core/HolderLookup$1/get (Lnet/minecraft/resources/ResourceKey;)Ljava/util/Optional; +MD: net/minecraft/core/HolderLookup$1/m_255004_ (Ljava/util/function/Predicate;Lnet/minecraft/core/Holder$Reference;)Z net/minecraft/core/HolderLookup$1/lambda$get$0 (Ljava/util/function/Predicate;Lnet/minecraft/core/Holder$Reference;)Z +MD: net/minecraft/core/HolderLookup$1/m_255425_ (Ljava/util/function/Predicate;Lnet/minecraft/core/Holder$Reference;)Z net/minecraft/core/HolderLookup$1/lambda$listElements$1 (Ljava/util/function/Predicate;Lnet/minecraft/core/Holder$Reference;)Z +MD: net/minecraft/core/HolderLookup$Delegate/ (Lnet/minecraft/core/HolderLookup;)V net/minecraft/core/HolderLookup$Delegate/ (Lnet/minecraft/core/HolderLookup;)V +MD: net/minecraft/core/HolderLookup$Delegate/m_214062_ ()Ljava/util/stream/Stream; net/minecraft/core/HolderLookup$Delegate/listElements ()Ljava/util/stream/Stream; +MD: net/minecraft/core/HolderLookup$Delegate/m_214063_ ()Ljava/util/stream/Stream; net/minecraft/core/HolderLookup$Delegate/listTags ()Ljava/util/stream/Stream; +MD: net/minecraft/core/HolderLookup$Delegate/m_254901_ (Lnet/minecraft/tags/TagKey;)Ljava/util/Optional; net/minecraft/core/HolderLookup$Delegate/get (Lnet/minecraft/tags/TagKey;)Ljava/util/Optional; +MD: net/minecraft/core/HolderLookup$Delegate/m_254902_ (Lnet/minecraft/resources/ResourceKey;)Ljava/util/Optional; net/minecraft/core/HolderLookup$Delegate/get (Lnet/minecraft/resources/ResourceKey;)Ljava/util/Optional; +MD: net/minecraft/core/HolderLookup$Provider/m_254861_ (Lnet/minecraft/resources/ResourceKey;)Ljava/util/Optional; net/minecraft/core/HolderLookup$Provider/lookup (Lnet/minecraft/resources/ResourceKey;)Ljava/util/Optional; +MD: net/minecraft/core/HolderLookup$Provider/m_254973_ (Ljava/util/stream/Stream;)Lnet/minecraft/core/HolderLookup$Provider; net/minecraft/core/HolderLookup$Provider/create (Ljava/util/stream/Stream;)Lnet/minecraft/core/HolderLookup$Provider; +MD: net/minecraft/core/HolderLookup$Provider/m_255025_ (Lnet/minecraft/resources/ResourceKey;)Lnet/minecraft/core/HolderLookup$RegistryLookup; net/minecraft/core/HolderLookup$Provider/lookupOrThrow (Lnet/minecraft/resources/ResourceKey;)Lnet/minecraft/core/HolderLookup$RegistryLookup; +MD: net/minecraft/core/HolderLookup$Provider/m_255059_ (Lnet/minecraft/resources/ResourceKey;)Ljava/lang/IllegalStateException; net/minecraft/core/HolderLookup$Provider/lambda$lookupOrThrow$0 (Lnet/minecraft/resources/ResourceKey;)Ljava/lang/IllegalStateException; +MD: net/minecraft/core/HolderLookup$Provider/m_255063_ (Lnet/minecraft/core/HolderLookup$RegistryLookup;)Lnet/minecraft/core/HolderLookup$RegistryLookup; net/minecraft/core/HolderLookup$Provider/lambda$create$1 (Lnet/minecraft/core/HolderLookup$RegistryLookup;)Lnet/minecraft/core/HolderLookup$RegistryLookup; +MD: net/minecraft/core/HolderLookup$Provider/m_255325_ ()Lnet/minecraft/core/HolderGetter$Provider; net/minecraft/core/HolderLookup$Provider/asGetterLookup ()Lnet/minecraft/core/HolderGetter$Provider; +MD: net/minecraft/core/HolderLookup$Provider$1/ (Lnet/minecraft/core/HolderLookup$Provider;)V net/minecraft/core/HolderLookup$Provider$1/ (Lnet/minecraft/core/HolderLookup$Provider;)V +MD: net/minecraft/core/HolderLookup$Provider$1/m_254940_ (Lnet/minecraft/core/HolderLookup$RegistryLookup;)Lnet/minecraft/core/HolderGetter; net/minecraft/core/HolderLookup$Provider$1/lambda$lookup$0 (Lnet/minecraft/core/HolderLookup$RegistryLookup;)Lnet/minecraft/core/HolderGetter; +MD: net/minecraft/core/HolderLookup$Provider$1/m_255095_ (Lnet/minecraft/resources/ResourceKey;)Ljava/util/Optional; net/minecraft/core/HolderLookup$Provider$1/lookup (Lnet/minecraft/resources/ResourceKey;)Ljava/util/Optional; +MD: net/minecraft/core/HolderLookup$Provider$2/ (Ljava/util/Map;)V net/minecraft/core/HolderLookup$Provider$2/ (Ljava/util/Map;)V +MD: net/minecraft/core/HolderLookup$Provider$2/m_254861_ (Lnet/minecraft/resources/ResourceKey;)Ljava/util/Optional; net/minecraft/core/HolderLookup$Provider$2/lookup (Lnet/minecraft/resources/ResourceKey;)Ljava/util/Optional; +MD: net/minecraft/core/HolderLookup$RegistryLookup/m_245140_ (Lnet/minecraft/world/flag/FeatureFlagSet;)Lnet/minecraft/core/HolderLookup; net/minecraft/core/HolderLookup$RegistryLookup/filterFeatures (Lnet/minecraft/world/flag/FeatureFlagSet;)Lnet/minecraft/core/HolderLookup; +MD: net/minecraft/core/HolderLookup$RegistryLookup/m_246849_ (Lnet/minecraft/world/flag/FeatureFlagSet;Ljava/lang/Object;)Z net/minecraft/core/HolderLookup$RegistryLookup/lambda$filterFeatures$0 (Lnet/minecraft/world/flag/FeatureFlagSet;Ljava/lang/Object;)Z +MD: net/minecraft/core/HolderLookup$RegistryLookup/m_254879_ ()Lnet/minecraft/resources/ResourceKey; net/minecraft/core/HolderLookup$RegistryLookup/key ()Lnet/minecraft/resources/ResourceKey; +MD: net/minecraft/core/HolderLookup$RegistryLookup/m_254883_ ()Lcom/mojang/serialization/Lifecycle; net/minecraft/core/HolderLookup$RegistryLookup/registryLifecycle ()Lcom/mojang/serialization/Lifecycle; +MD: net/minecraft/core/HolderLookup$RegistryLookup$Delegate/ ()V net/minecraft/core/HolderLookup$RegistryLookup$Delegate/ ()V +MD: net/minecraft/core/HolderLookup$RegistryLookup$Delegate/m_214062_ ()Ljava/util/stream/Stream; net/minecraft/core/HolderLookup$RegistryLookup$Delegate/listElements ()Ljava/util/stream/Stream; +MD: net/minecraft/core/HolderLookup$RegistryLookup$Delegate/m_214063_ ()Ljava/util/stream/Stream; net/minecraft/core/HolderLookup$RegistryLookup$Delegate/listTags ()Ljava/util/stream/Stream; +MD: net/minecraft/core/HolderLookup$RegistryLookup$Delegate/m_254879_ ()Lnet/minecraft/resources/ResourceKey; net/minecraft/core/HolderLookup$RegistryLookup$Delegate/key ()Lnet/minecraft/resources/ResourceKey; +MD: net/minecraft/core/HolderLookup$RegistryLookup$Delegate/m_254883_ ()Lcom/mojang/serialization/Lifecycle; net/minecraft/core/HolderLookup$RegistryLookup$Delegate/registryLifecycle ()Lcom/mojang/serialization/Lifecycle; +MD: net/minecraft/core/HolderLookup$RegistryLookup$Delegate/m_254893_ ()Lnet/minecraft/core/HolderLookup$RegistryLookup; net/minecraft/core/HolderLookup$RegistryLookup$Delegate/parent ()Lnet/minecraft/core/HolderLookup$RegistryLookup; +MD: net/minecraft/core/HolderLookup$RegistryLookup$Delegate/m_254901_ (Lnet/minecraft/tags/TagKey;)Ljava/util/Optional; net/minecraft/core/HolderLookup$RegistryLookup$Delegate/get (Lnet/minecraft/tags/TagKey;)Ljava/util/Optional; +MD: net/minecraft/core/HolderLookup$RegistryLookup$Delegate/m_254902_ (Lnet/minecraft/resources/ResourceKey;)Ljava/util/Optional; net/minecraft/core/HolderLookup$RegistryLookup$Delegate/get (Lnet/minecraft/resources/ResourceKey;)Ljava/util/Optional; +MD: net/minecraft/core/HolderOwner/m_254921_ (Lnet/minecraft/core/HolderOwner;)Z net/minecraft/core/HolderOwner/canSerializeIn (Lnet/minecraft/core/HolderOwner;)Z +MD: net/minecraft/core/HolderSet/m_203333_ (Lnet/minecraft/core/Holder;)Z net/minecraft/core/HolderSet/contains (Lnet/minecraft/core/Holder;)Z +MD: net/minecraft/core/HolderSet/m_203440_ ()Lcom/mojang/datafixers/util/Either; net/minecraft/core/HolderSet/unwrap ()Lcom/mojang/datafixers/util/Either; +MD: net/minecraft/core/HolderSet/m_203614_ ()Ljava/util/stream/Stream; net/minecraft/core/HolderSet/stream ()Ljava/util/stream/Stream; +MD: net/minecraft/core/HolderSet/m_203632_ ()I net/minecraft/core/HolderSet/size ()I +MD: net/minecraft/core/HolderSet/m_203662_ (I)Lnet/minecraft/core/Holder; net/minecraft/core/HolderSet/get (I)Lnet/minecraft/core/Holder; +MD: net/minecraft/core/HolderSet/m_205800_ (Ljava/util/List;)Lnet/minecraft/core/HolderSet$Direct; net/minecraft/core/HolderSet/direct (Ljava/util/List;)Lnet/minecraft/core/HolderSet$Direct; +MD: net/minecraft/core/HolderSet/m_205803_ (Ljava/util/function/Function;Ljava/util/List;)Lnet/minecraft/core/HolderSet$Direct; net/minecraft/core/HolderSet/direct (Ljava/util/function/Function;Ljava/util/List;)Lnet/minecraft/core/HolderSet$Direct; +MD: net/minecraft/core/HolderSet/m_205806_ (Ljava/util/function/Function;[Ljava/lang/Object;)Lnet/minecraft/core/HolderSet$Direct; net/minecraft/core/HolderSet/direct (Ljava/util/function/Function;[Ljava/lang/Object;)Lnet/minecraft/core/HolderSet$Direct; +MD: net/minecraft/core/HolderSet/m_205809_ ([Lnet/minecraft/core/Holder;)Lnet/minecraft/core/HolderSet$Direct; net/minecraft/core/HolderSet/direct ([Lnet/minecraft/core/Holder;)Lnet/minecraft/core/HolderSet$Direct; +MD: net/minecraft/core/HolderSet/m_207277_ (Lnet/minecraft/core/HolderOwner;)Z net/minecraft/core/HolderSet/canSerializeIn (Lnet/minecraft/core/HolderOwner;)Z +MD: net/minecraft/core/HolderSet/m_213653_ (Lnet/minecraft/util/RandomSource;)Ljava/util/Optional; net/minecraft/core/HolderSet/getRandomElement (Lnet/minecraft/util/RandomSource;)Ljava/util/Optional; +MD: net/minecraft/core/HolderSet/m_245234_ ()Ljava/util/Optional; net/minecraft/core/HolderSet/unwrapKey ()Ljava/util/Optional; +MD: net/minecraft/core/HolderSet/m_255229_ (Lnet/minecraft/core/HolderOwner;Lnet/minecraft/tags/TagKey;)Lnet/minecraft/core/HolderSet$Named; net/minecraft/core/HolderSet/emptyNamed (Lnet/minecraft/core/HolderOwner;Lnet/minecraft/tags/TagKey;)Lnet/minecraft/core/HolderSet$Named; +MD: net/minecraft/core/HolderSet$Direct/ (Ljava/util/List;)V net/minecraft/core/HolderSet$Direct/ (Ljava/util/List;)V +MD: net/minecraft/core/HolderSet$Direct/m_203333_ (Lnet/minecraft/core/Holder;)Z net/minecraft/core/HolderSet$Direct/contains (Lnet/minecraft/core/Holder;)Z +MD: net/minecraft/core/HolderSet$Direct/m_203440_ ()Lcom/mojang/datafixers/util/Either; net/minecraft/core/HolderSet$Direct/unwrap ()Lcom/mojang/datafixers/util/Either; +MD: net/minecraft/core/HolderSet$Direct/m_203661_ ()Ljava/util/List; net/minecraft/core/HolderSet$Direct/contents ()Ljava/util/List; +MD: net/minecraft/core/HolderSet$Direct/m_245234_ ()Ljava/util/Optional; net/minecraft/core/HolderSet$Direct/unwrapKey ()Ljava/util/Optional; +MD: net/minecraft/core/HolderSet$Direct/toString ()Ljava/lang/String; net/minecraft/core/HolderSet$Direct/toString ()Ljava/lang/String; +MD: net/minecraft/core/HolderSet$ListBacked/ ()V net/minecraft/core/HolderSet$ListBacked/ ()V +MD: net/minecraft/core/HolderSet$ListBacked/iterator ()Ljava/util/Iterator; net/minecraft/core/HolderSet$ListBacked/iterator ()Ljava/util/Iterator; +MD: net/minecraft/core/HolderSet$ListBacked/m_203614_ ()Ljava/util/stream/Stream; net/minecraft/core/HolderSet$ListBacked/stream ()Ljava/util/stream/Stream; +MD: net/minecraft/core/HolderSet$ListBacked/m_203632_ ()I net/minecraft/core/HolderSet$ListBacked/size ()I +MD: net/minecraft/core/HolderSet$ListBacked/m_203661_ ()Ljava/util/List; net/minecraft/core/HolderSet$ListBacked/contents ()Ljava/util/List; +MD: net/minecraft/core/HolderSet$ListBacked/m_203662_ (I)Lnet/minecraft/core/Holder; net/minecraft/core/HolderSet$ListBacked/get (I)Lnet/minecraft/core/Holder; +MD: net/minecraft/core/HolderSet$ListBacked/m_207277_ (Lnet/minecraft/core/HolderOwner;)Z net/minecraft/core/HolderSet$ListBacked/canSerializeIn (Lnet/minecraft/core/HolderOwner;)Z +MD: net/minecraft/core/HolderSet$ListBacked/m_213653_ (Lnet/minecraft/util/RandomSource;)Ljava/util/Optional; net/minecraft/core/HolderSet$ListBacked/getRandomElement (Lnet/minecraft/util/RandomSource;)Ljava/util/Optional; +MD: net/minecraft/core/HolderSet$ListBacked/spliterator ()Ljava/util/Spliterator; net/minecraft/core/HolderSet$ListBacked/spliterator ()Ljava/util/Spliterator; +MD: net/minecraft/core/HolderSet$Named/ (Lnet/minecraft/core/HolderOwner;Lnet/minecraft/tags/TagKey;)V net/minecraft/core/HolderSet$Named/ (Lnet/minecraft/core/HolderOwner;Lnet/minecraft/tags/TagKey;)V +MD: net/minecraft/core/HolderSet$Named/m_203333_ (Lnet/minecraft/core/Holder;)Z net/minecraft/core/HolderSet$Named/contains (Lnet/minecraft/core/Holder;)Z +MD: net/minecraft/core/HolderSet$Named/m_203440_ ()Lcom/mojang/datafixers/util/Either; net/minecraft/core/HolderSet$Named/unwrap ()Lcom/mojang/datafixers/util/Either; +MD: net/minecraft/core/HolderSet$Named/m_203661_ ()Ljava/util/List; net/minecraft/core/HolderSet$Named/contents ()Ljava/util/List; +MD: net/minecraft/core/HolderSet$Named/m_205835_ (Ljava/util/List;)V net/minecraft/core/HolderSet$Named/bind (Ljava/util/List;)V +MD: net/minecraft/core/HolderSet$Named/m_205839_ ()Lnet/minecraft/tags/TagKey; net/minecraft/core/HolderSet$Named/key ()Lnet/minecraft/tags/TagKey; +MD: net/minecraft/core/HolderSet$Named/m_207277_ (Lnet/minecraft/core/HolderOwner;)Z net/minecraft/core/HolderSet$Named/canSerializeIn (Lnet/minecraft/core/HolderOwner;)Z +MD: net/minecraft/core/HolderSet$Named/m_245234_ ()Ljava/util/Optional; net/minecraft/core/HolderSet$Named/unwrapKey ()Ljava/util/Optional; +MD: net/minecraft/core/HolderSet$Named/toString ()Ljava/lang/String; net/minecraft/core/HolderSet$Named/toString ()Ljava/lang/String; +MD: net/minecraft/core/IdMap/m_13562_ ()I net/minecraft/core/IdMap/size ()I +MD: net/minecraft/core/IdMap/m_200957_ (I)Ljava/lang/Object; net/minecraft/core/IdMap/byIdOrThrow (I)Ljava/lang/Object; +MD: net/minecraft/core/IdMap/m_7447_ (Ljava/lang/Object;)I net/minecraft/core/IdMap/getId (Ljava/lang/Object;)I +MD: net/minecraft/core/IdMap/m_7942_ (I)Ljava/lang/Object; net/minecraft/core/IdMap/byId (I)Ljava/lang/Object; +MD: net/minecraft/core/IdMapper/ (I)V net/minecraft/core/IdMapper/ (I)V +MD: net/minecraft/core/IdMapper/ ()V net/minecraft/core/IdMapper/ ()V +MD: net/minecraft/core/IdMapper/iterator ()Ljava/util/Iterator; net/minecraft/core/IdMapper/iterator ()Ljava/util/Iterator; +MD: net/minecraft/core/IdMapper/m_122664_ (Ljava/lang/Object;I)V net/minecraft/core/IdMapper/addMapping (Ljava/lang/Object;I)V +MD: net/minecraft/core/IdMapper/m_122667_ (Ljava/lang/Object;)V net/minecraft/core/IdMapper/add (Ljava/lang/Object;)V +MD: net/minecraft/core/IdMapper/m_13562_ ()I net/minecraft/core/IdMapper/size ()I +MD: net/minecraft/core/IdMapper/m_175380_ (I)Z net/minecraft/core/IdMapper/contains (I)Z +MD: net/minecraft/core/IdMapper/m_7447_ (Ljava/lang/Object;)I net/minecraft/core/IdMapper/getId (Ljava/lang/Object;)I +MD: net/minecraft/core/IdMapper/m_7942_ (I)Ljava/lang/Object; net/minecraft/core/IdMapper/byId (I)Ljava/lang/Object; +MD: net/minecraft/core/LayeredRegistryAccess/ (Ljava/util/List;)V net/minecraft/core/LayeredRegistryAccess/ (Ljava/util/List;)V +MD: net/minecraft/core/LayeredRegistryAccess/ (Ljava/util/List;Ljava/util/List;)V net/minecraft/core/LayeredRegistryAccess/ (Ljava/util/List;Ljava/util/List;)V +MD: net/minecraft/core/LayeredRegistryAccess/m_245283_ (Ljava/lang/Object;)Lnet/minecraft/core/RegistryAccess$Frozen; net/minecraft/core/LayeredRegistryAccess/getLayer (Ljava/lang/Object;)Lnet/minecraft/core/RegistryAccess$Frozen; +MD: net/minecraft/core/LayeredRegistryAccess/m_245317_ (Ljava/lang/Object;)Lnet/minecraft/core/RegistryAccess$Frozen; net/minecraft/core/LayeredRegistryAccess/getAccessFrom (Ljava/lang/Object;)Lnet/minecraft/core/RegistryAccess$Frozen; +MD: net/minecraft/core/LayeredRegistryAccess/m_245473_ (Ljava/util/Map;Lnet/minecraft/core/RegistryAccess$RegistryEntry;)V net/minecraft/core/LayeredRegistryAccess/lambda$collectRegistries$1 (Ljava/util/Map;Lnet/minecraft/core/RegistryAccess$RegistryEntry;)V +MD: net/minecraft/core/LayeredRegistryAccess/m_245589_ (Ljava/lang/Object;Ljava/util/List;)Lnet/minecraft/core/LayeredRegistryAccess; net/minecraft/core/LayeredRegistryAccess/replaceFrom (Ljava/lang/Object;Ljava/util/List;)Lnet/minecraft/core/LayeredRegistryAccess; +MD: net/minecraft/core/LayeredRegistryAccess/m_245684_ (Ljava/util/Map;Lnet/minecraft/core/RegistryAccess;)V net/minecraft/core/LayeredRegistryAccess/lambda$collectRegistries$2 (Ljava/util/Map;Lnet/minecraft/core/RegistryAccess;)V +MD: net/minecraft/core/LayeredRegistryAccess/m_246035_ (Ljava/lang/Object;)Lnet/minecraft/core/RegistryAccess$Frozen; net/minecraft/core/LayeredRegistryAccess/getAccessForLoading (Ljava/lang/Object;)Lnet/minecraft/core/RegistryAccess$Frozen; +MD: net/minecraft/core/LayeredRegistryAccess/m_246119_ (Ljava/util/stream/Stream;)Ljava/util/Map; net/minecraft/core/LayeredRegistryAccess/collectRegistries (Ljava/util/stream/Stream;)Ljava/util/Map; +MD: net/minecraft/core/LayeredRegistryAccess/m_247084_ (Ljava/lang/Object;)I net/minecraft/core/LayeredRegistryAccess/getLayerIndexOrThrow (Ljava/lang/Object;)I +MD: net/minecraft/core/LayeredRegistryAccess/m_247441_ (II)Lnet/minecraft/core/RegistryAccess$Frozen; net/minecraft/core/LayeredRegistryAccess/getCompositeAccessForLayers (II)Lnet/minecraft/core/RegistryAccess$Frozen; +MD: net/minecraft/core/LayeredRegistryAccess/m_247579_ ()Lnet/minecraft/core/RegistryAccess$Frozen; net/minecraft/core/LayeredRegistryAccess/compositeAccess ()Lnet/minecraft/core/RegistryAccess$Frozen; +MD: net/minecraft/core/LayeredRegistryAccess/m_247702_ (Ljava/util/List;)Ljava/util/List; net/minecraft/core/LayeredRegistryAccess/lambda$new$0 (Ljava/util/List;)Ljava/util/List; +MD: net/minecraft/core/LayeredRegistryAccess/m_247705_ (Ljava/lang/Object;[Lnet/minecraft/core/RegistryAccess$Frozen;)Lnet/minecraft/core/LayeredRegistryAccess; net/minecraft/core/LayeredRegistryAccess/replaceFrom (Ljava/lang/Object;[Lnet/minecraft/core/RegistryAccess$Frozen;)Lnet/minecraft/core/LayeredRegistryAccess; +MD: net/minecraft/core/MappedRegistry/ ()V net/minecraft/core/MappedRegistry/ ()V +MD: net/minecraft/core/MappedRegistry/ (Lnet/minecraft/resources/ResourceKey;Lcom/mojang/serialization/Lifecycle;Z)V net/minecraft/core/MappedRegistry/ (Lnet/minecraft/resources/ResourceKey;Lcom/mojang/serialization/Lifecycle;Z)V +MD: net/minecraft/core/MappedRegistry/ (Lnet/minecraft/resources/ResourceKey;Lcom/mojang/serialization/Lifecycle;)V net/minecraft/core/MappedRegistry/ (Lnet/minecraft/resources/ResourceKey;Lcom/mojang/serialization/Lifecycle;)V +MD: net/minecraft/core/MappedRegistry/iterator ()Ljava/util/Iterator; net/minecraft/core/MappedRegistry/iterator ()Ljava/util/Iterator; +MD: net/minecraft/core/MappedRegistry/m_123023_ ()Lnet/minecraft/resources/ResourceKey; net/minecraft/core/MappedRegistry/key ()Lnet/minecraft/resources/ResourceKey; +MD: net/minecraft/core/MappedRegistry/m_13562_ ()I net/minecraft/core/MappedRegistry/size ()I +MD: net/minecraft/core/MappedRegistry/m_142003_ (Lnet/minecraft/resources/ResourceKey;)Z net/minecraft/core/MappedRegistry/containsKey (Lnet/minecraft/resources/ResourceKey;)Z +MD: net/minecraft/core/MappedRegistry/m_142427_ ()Z net/minecraft/core/MappedRegistry/isEmpty ()Z +MD: net/minecraft/core/MappedRegistry/m_194538_ (Lit/unimi/dsi/fastutil/objects/Object2IntOpenCustomHashMap;)V net/minecraft/core/MappedRegistry/lambda$new$0 (Lit/unimi/dsi/fastutil/objects/Object2IntOpenCustomHashMap;)V +MD: net/minecraft/core/MappedRegistry/m_203300_ (I)Ljava/util/Optional; net/minecraft/core/MappedRegistry/getHolder (I)Ljava/util/Optional; +MD: net/minecraft/core/MappedRegistry/m_203431_ (Lnet/minecraft/tags/TagKey;)Ljava/util/Optional; net/minecraft/core/MappedRegistry/getTag (Lnet/minecraft/tags/TagKey;)Ljava/util/Optional; +MD: net/minecraft/core/MappedRegistry/m_203505_ ()Lnet/minecraft/core/HolderGetter; net/minecraft/core/MappedRegistry/createRegistrationLookup ()Lnet/minecraft/core/HolderGetter; +MD: net/minecraft/core/MappedRegistry/m_203521_ ()Lnet/minecraft/core/Registry; net/minecraft/core/MappedRegistry/freeze ()Lnet/minecraft/core/Registry; +MD: net/minecraft/core/MappedRegistry/m_203561_ (Lnet/minecraft/tags/TagKey;)Lnet/minecraft/core/HolderSet$Named; net/minecraft/core/MappedRegistry/getOrCreateTag (Lnet/minecraft/tags/TagKey;)Lnet/minecraft/core/HolderSet$Named; +MD: net/minecraft/core/MappedRegistry/m_203611_ ()Ljava/util/stream/Stream; net/minecraft/core/MappedRegistry/holders ()Ljava/util/stream/Stream; +MD: net/minecraft/core/MappedRegistry/m_203612_ ()Ljava/util/stream/Stream; net/minecraft/core/MappedRegistry/getTags ()Ljava/util/stream/Stream; +MD: net/minecraft/core/MappedRegistry/m_203613_ ()Ljava/util/stream/Stream; net/minecraft/core/MappedRegistry/getTagNames ()Ljava/util/stream/Stream; +MD: net/minecraft/core/MappedRegistry/m_203635_ ()V net/minecraft/core/MappedRegistry/resetTags ()V +MD: net/minecraft/core/MappedRegistry/m_203636_ (Lnet/minecraft/resources/ResourceKey;)Ljava/util/Optional; net/minecraft/core/MappedRegistry/getHolder (Lnet/minecraft/resources/ResourceKey;)Ljava/util/Optional; +MD: net/minecraft/core/MappedRegistry/m_203652_ (Ljava/util/Map;)V net/minecraft/core/MappedRegistry/bindTags (Ljava/util/Map;)V +MD: net/minecraft/core/MappedRegistry/m_203658_ ()Lcom/mojang/serialization/Lifecycle; net/minecraft/core/MappedRegistry/registryLifecycle ()Lcom/mojang/serialization/Lifecycle; +MD: net/minecraft/core/MappedRegistry/m_203693_ (Ljava/lang/Object;)Lnet/minecraft/core/Holder$Reference; net/minecraft/core/MappedRegistry/createIntrusiveHolder (Ljava/lang/Object;)Lnet/minecraft/core/Holder$Reference; +MD: net/minecraft/core/MappedRegistry/m_203704_ (ILnet/minecraft/resources/ResourceKey;Ljava/lang/Object;Lcom/mojang/serialization/Lifecycle;)Lnet/minecraft/core/Holder$Reference; net/minecraft/core/MappedRegistry/registerMapping (ILnet/minecraft/resources/ResourceKey;Ljava/lang/Object;Lcom/mojang/serialization/Lifecycle;)Lnet/minecraft/core/Holder$Reference; +MD: net/minecraft/core/MappedRegistry/m_203704_ (ILnet/minecraft/resources/ResourceKey;Ljava/lang/Object;Lcom/mojang/serialization/Lifecycle;)Lnet/minecraft/core/Holder; net/minecraft/core/MappedRegistry/registerMapping (ILnet/minecraft/resources/ResourceKey;Ljava/lang/Object;Lcom/mojang/serialization/Lifecycle;)Lnet/minecraft/core/Holder; +MD: net/minecraft/core/MappedRegistry/m_205865_ (Lnet/minecraft/core/Holder$Reference;)Ljava/lang/Object; net/minecraft/core/MappedRegistry/getValueFromNullable (Lnet/minecraft/core/Holder$Reference;)Ljava/lang/Object; +MD: net/minecraft/core/MappedRegistry/m_205921_ (Lnet/minecraft/resources/ResourceKey;)V net/minecraft/core/MappedRegistry/validateWrite (Lnet/minecraft/resources/ResourceKey;)V +MD: net/minecraft/core/MappedRegistry/m_211053_ ()Ljava/util/List; net/minecraft/core/MappedRegistry/holdersInOrder ()Ljava/util/List; +MD: net/minecraft/core/MappedRegistry/m_211054_ (Ljava/util/Map$Entry;)Z net/minecraft/core/MappedRegistry/lambda$freeze$6 (Ljava/util/Map$Entry;)Z +MD: net/minecraft/core/MappedRegistry/m_211059_ (Ljava/util/Map$Entry;)Lcom/mojang/datafixers/util/Pair; net/minecraft/core/MappedRegistry/lambda$getTags$4 (Ljava/util/Map$Entry;)Lcom/mojang/datafixers/util/Pair; +MD: net/minecraft/core/MappedRegistry/m_211067_ (Lnet/minecraft/tags/TagKey;)Lnet/minecraft/core/HolderSet$Named; net/minecraft/core/MappedRegistry/createTag (Lnet/minecraft/tags/TagKey;)Lnet/minecraft/core/HolderSet$Named; +MD: net/minecraft/core/MappedRegistry/m_211791_ (Lnet/minecraft/core/HolderSet$Named;)V net/minecraft/core/MappedRegistry/lambda$resetTags$13 (Lnet/minecraft/core/HolderSet$Named;)V +MD: net/minecraft/core/MappedRegistry/m_211793_ (Ljava/util/Map$Entry;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/core/MappedRegistry/lambda$freeze$7 (Ljava/util/Map$Entry;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/core/MappedRegistry/m_211795_ (Ljava/util/Map;Lnet/minecraft/tags/TagKey;Ljava/util/List;)V net/minecraft/core/MappedRegistry/lambda$bindTags$12 (Ljava/util/Map;Lnet/minecraft/tags/TagKey;Ljava/util/List;)V +MD: net/minecraft/core/MappedRegistry/m_211799_ (Ljava/util/Map;Lnet/minecraft/core/Holder$Reference;)V net/minecraft/core/MappedRegistry/lambda$bindTags$9 (Ljava/util/Map;Lnet/minecraft/core/Holder$Reference;)V +MD: net/minecraft/core/MappedRegistry/m_211802_ (Lnet/minecraft/core/Holder$Reference;)V net/minecraft/core/MappedRegistry/lambda$resetTags$14 (Lnet/minecraft/core/Holder$Reference;)V +MD: net/minecraft/core/MappedRegistry/m_211804_ (Ljava/util/Map;Lnet/minecraft/tags/TagKey;Ljava/util/List;)V net/minecraft/core/MappedRegistry/lambda$bindTags$10 (Ljava/util/Map;Lnet/minecraft/tags/TagKey;Ljava/util/List;)V +MD: net/minecraft/core/MappedRegistry/m_211810_ (Lnet/minecraft/tags/TagKey;)Ljava/lang/String; net/minecraft/core/MappedRegistry/lambda$bindTags$11 (Lnet/minecraft/tags/TagKey;)Ljava/lang/String; +MD: net/minecraft/core/MappedRegistry/m_213642_ (Lnet/minecraft/util/RandomSource;)Ljava/util/Optional; net/minecraft/core/MappedRegistry/getRandom (Lnet/minecraft/util/RandomSource;)Ljava/util/Optional; +MD: net/minecraft/core/MappedRegistry/m_214010_ ()Ljava/util/Set; net/minecraft/core/MappedRegistry/registryKeySet ()Ljava/util/Set; +MD: net/minecraft/core/MappedRegistry/m_244758_ (Ljava/lang/Object;Lnet/minecraft/core/Holder$Reference;)V net/minecraft/core/MappedRegistry/lambda$freeze$5 (Ljava/lang/Object;Lnet/minecraft/core/Holder$Reference;)V +MD: net/minecraft/core/MappedRegistry/m_245419_ ()V net/minecraft/core/MappedRegistry/validateWrite ()V +MD: net/minecraft/core/MappedRegistry/m_245420_ (Lnet/minecraft/resources/ResourceKey;)Lnet/minecraft/core/Holder$Reference; net/minecraft/core/MappedRegistry/getOrCreateHolderOrThrow (Lnet/minecraft/resources/ResourceKey;)Lnet/minecraft/core/Holder$Reference; +MD: net/minecraft/core/MappedRegistry/m_255290_ (Lnet/minecraft/resources/ResourceKey;Ljava/lang/Object;Lcom/mojang/serialization/Lifecycle;)Lnet/minecraft/core/Holder$Reference; net/minecraft/core/MappedRegistry/register (Lnet/minecraft/resources/ResourceKey;Ljava/lang/Object;Lcom/mojang/serialization/Lifecycle;)Lnet/minecraft/core/Holder$Reference; +MD: net/minecraft/core/MappedRegistry/m_255303_ ()Lnet/minecraft/core/HolderLookup$RegistryLookup; net/minecraft/core/MappedRegistry/asLookup ()Lnet/minecraft/core/HolderLookup$RegistryLookup; +MD: net/minecraft/core/MappedRegistry/m_255331_ ()Lnet/minecraft/core/HolderOwner; net/minecraft/core/MappedRegistry/holderOwner ()Lnet/minecraft/core/HolderOwner; +MD: net/minecraft/core/MappedRegistry/m_257092_ (Ljava/lang/Object;)Lnet/minecraft/core/Holder$Reference; net/minecraft/core/MappedRegistry/lambda$createIntrusiveHolder$8 (Ljava/lang/Object;)Lnet/minecraft/core/Holder$Reference; +MD: net/minecraft/core/MappedRegistry/m_257093_ (Lnet/minecraft/resources/ResourceKey;)Ljava/lang/String; net/minecraft/core/MappedRegistry/lambda$new$1 (Lnet/minecraft/resources/ResourceKey;)Ljava/lang/String; +MD: net/minecraft/core/MappedRegistry/m_257094_ (Lnet/minecraft/resources/ResourceKey;)Lnet/minecraft/core/Holder$Reference; net/minecraft/core/MappedRegistry/lambda$registerMapping$2 (Lnet/minecraft/resources/ResourceKey;)Lnet/minecraft/core/Holder$Reference; +MD: net/minecraft/core/MappedRegistry/m_257095_ (Lnet/minecraft/resources/ResourceKey;)Lnet/minecraft/core/Holder$Reference; net/minecraft/core/MappedRegistry/lambda$getOrCreateHolderOrThrow$3 (Lnet/minecraft/resources/ResourceKey;)Lnet/minecraft/core/Holder$Reference; +MD: net/minecraft/core/MappedRegistry/m_263177_ (Ljava/lang/Object;)Lnet/minecraft/core/Holder; net/minecraft/core/MappedRegistry/wrapAsHolder (Ljava/lang/Object;)Lnet/minecraft/core/Holder; +MD: net/minecraft/core/MappedRegistry/m_6228_ (Ljava/lang/Object;)Lcom/mojang/serialization/Lifecycle; net/minecraft/core/MappedRegistry/lifecycle (Ljava/lang/Object;)Lcom/mojang/serialization/Lifecycle; +MD: net/minecraft/core/MappedRegistry/m_6246_ (Lnet/minecraft/resources/ResourceKey;)Ljava/lang/Object; net/minecraft/core/MappedRegistry/get (Lnet/minecraft/resources/ResourceKey;)Ljava/lang/Object; +MD: net/minecraft/core/MappedRegistry/m_6566_ ()Ljava/util/Set; net/minecraft/core/MappedRegistry/keySet ()Ljava/util/Set; +MD: net/minecraft/core/MappedRegistry/m_6579_ ()Ljava/util/Set; net/minecraft/core/MappedRegistry/entrySet ()Ljava/util/Set; +MD: net/minecraft/core/MappedRegistry/m_7447_ (Ljava/lang/Object;)I net/minecraft/core/MappedRegistry/getId (Ljava/lang/Object;)I +MD: net/minecraft/core/MappedRegistry/m_7745_ (Lnet/minecraft/resources/ResourceLocation;)Ljava/lang/Object; net/minecraft/core/MappedRegistry/get (Lnet/minecraft/resources/ResourceLocation;)Ljava/lang/Object; +MD: net/minecraft/core/MappedRegistry/m_7804_ (Lnet/minecraft/resources/ResourceLocation;)Z net/minecraft/core/MappedRegistry/containsKey (Lnet/minecraft/resources/ResourceLocation;)Z +MD: net/minecraft/core/MappedRegistry/m_7854_ (Ljava/lang/Object;)Ljava/util/Optional; net/minecraft/core/MappedRegistry/getResourceKey (Ljava/lang/Object;)Ljava/util/Optional; +MD: net/minecraft/core/MappedRegistry/m_7942_ (I)Ljava/lang/Object; net/minecraft/core/MappedRegistry/byId (I)Ljava/lang/Object; +MD: net/minecraft/core/MappedRegistry/m_7981_ (Ljava/lang/Object;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/core/MappedRegistry/getKey (Ljava/lang/Object;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/core/MappedRegistry/toString ()Ljava/lang/String; net/minecraft/core/MappedRegistry/toString ()Ljava/lang/String; +MD: net/minecraft/core/MappedRegistry$1/ (Lnet/minecraft/core/MappedRegistry;)V net/minecraft/core/MappedRegistry$1/ (Lnet/minecraft/core/MappedRegistry;)V +MD: net/minecraft/core/MappedRegistry$1/m_214062_ ()Ljava/util/stream/Stream; net/minecraft/core/MappedRegistry$1/listElements ()Ljava/util/stream/Stream; +MD: net/minecraft/core/MappedRegistry$1/m_214063_ ()Ljava/util/stream/Stream; net/minecraft/core/MappedRegistry$1/listTags ()Ljava/util/stream/Stream; +MD: net/minecraft/core/MappedRegistry$1/m_254879_ ()Lnet/minecraft/resources/ResourceKey; net/minecraft/core/MappedRegistry$1/key ()Lnet/minecraft/resources/ResourceKey; +MD: net/minecraft/core/MappedRegistry$1/m_254883_ ()Lcom/mojang/serialization/Lifecycle; net/minecraft/core/MappedRegistry$1/registryLifecycle ()Lcom/mojang/serialization/Lifecycle; +MD: net/minecraft/core/MappedRegistry$1/m_254901_ (Lnet/minecraft/tags/TagKey;)Ljava/util/Optional; net/minecraft/core/MappedRegistry$1/get (Lnet/minecraft/tags/TagKey;)Ljava/util/Optional; +MD: net/minecraft/core/MappedRegistry$1/m_254902_ (Lnet/minecraft/resources/ResourceKey;)Ljava/util/Optional; net/minecraft/core/MappedRegistry$1/get (Lnet/minecraft/resources/ResourceKey;)Ljava/util/Optional; +MD: net/minecraft/core/MappedRegistry$2/ (Lnet/minecraft/core/MappedRegistry;)V net/minecraft/core/MappedRegistry$2/ (Lnet/minecraft/core/MappedRegistry;)V +MD: net/minecraft/core/MappedRegistry$2/m_254901_ (Lnet/minecraft/tags/TagKey;)Ljava/util/Optional; net/minecraft/core/MappedRegistry$2/get (Lnet/minecraft/tags/TagKey;)Ljava/util/Optional; +MD: net/minecraft/core/MappedRegistry$2/m_254902_ (Lnet/minecraft/resources/ResourceKey;)Ljava/util/Optional; net/minecraft/core/MappedRegistry$2/get (Lnet/minecraft/resources/ResourceKey;)Ljava/util/Optional; +MD: net/minecraft/core/MappedRegistry$2/m_254956_ (Lnet/minecraft/tags/TagKey;)Lnet/minecraft/core/HolderSet$Named; net/minecraft/core/MappedRegistry$2/getOrThrow (Lnet/minecraft/tags/TagKey;)Lnet/minecraft/core/HolderSet$Named; +MD: net/minecraft/core/MappedRegistry$2/m_255043_ (Lnet/minecraft/resources/ResourceKey;)Lnet/minecraft/core/Holder$Reference; net/minecraft/core/MappedRegistry$2/getOrThrow (Lnet/minecraft/resources/ResourceKey;)Lnet/minecraft/core/Holder$Reference; +MD: net/minecraft/core/NonNullList/ (Ljava/util/List;Ljava/lang/Object;)V net/minecraft/core/NonNullList/ (Ljava/util/List;Ljava/lang/Object;)V +MD: net/minecraft/core/NonNullList/add (ILjava/lang/Object;)V net/minecraft/core/NonNullList/add (ILjava/lang/Object;)V +MD: net/minecraft/core/NonNullList/clear ()V net/minecraft/core/NonNullList/clear ()V +MD: net/minecraft/core/NonNullList/get (I)Ljava/lang/Object; net/minecraft/core/NonNullList/get (I)Ljava/lang/Object; +MD: net/minecraft/core/NonNullList/m_122779_ ()Lnet/minecraft/core/NonNullList; net/minecraft/core/NonNullList/create ()Lnet/minecraft/core/NonNullList; +MD: net/minecraft/core/NonNullList/m_122780_ (ILjava/lang/Object;)Lnet/minecraft/core/NonNullList; net/minecraft/core/NonNullList/withSize (ILjava/lang/Object;)Lnet/minecraft/core/NonNullList; +MD: net/minecraft/core/NonNullList/m_122783_ (Ljava/lang/Object;[Ljava/lang/Object;)Lnet/minecraft/core/NonNullList; net/minecraft/core/NonNullList/of (Ljava/lang/Object;[Ljava/lang/Object;)Lnet/minecraft/core/NonNullList; +MD: net/minecraft/core/NonNullList/m_182647_ (I)Lnet/minecraft/core/NonNullList; net/minecraft/core/NonNullList/createWithCapacity (I)Lnet/minecraft/core/NonNullList; +MD: net/minecraft/core/NonNullList/remove (I)Ljava/lang/Object; net/minecraft/core/NonNullList/remove (I)Ljava/lang/Object; +MD: net/minecraft/core/NonNullList/set (ILjava/lang/Object;)Ljava/lang/Object; net/minecraft/core/NonNullList/set (ILjava/lang/Object;)Ljava/lang/Object; +MD: net/minecraft/core/NonNullList/size ()I net/minecraft/core/NonNullList/size ()I +MD: net/minecraft/core/Position/m_7094_ ()D net/minecraft/core/Position/z ()D +MD: net/minecraft/core/Position/m_7096_ ()D net/minecraft/core/Position/x ()D +MD: net/minecraft/core/Position/m_7098_ ()D net/minecraft/core/Position/y ()D +MD: net/minecraft/core/PositionImpl/ (DDD)V net/minecraft/core/PositionImpl/ (DDD)V +MD: net/minecraft/core/PositionImpl/m_7094_ ()D net/minecraft/core/PositionImpl/z ()D +MD: net/minecraft/core/PositionImpl/m_7096_ ()D net/minecraft/core/PositionImpl/x ()D +MD: net/minecraft/core/PositionImpl/m_7098_ ()D net/minecraft/core/PositionImpl/y ()D +MD: net/minecraft/core/QuartPos/ ()V net/minecraft/core/QuartPos/ ()V +MD: net/minecraft/core/QuartPos/m_175400_ (I)I net/minecraft/core/QuartPos/fromBlock (I)I +MD: net/minecraft/core/QuartPos/m_175402_ (I)I net/minecraft/core/QuartPos/toBlock (I)I +MD: net/minecraft/core/QuartPos/m_175404_ (I)I net/minecraft/core/QuartPos/fromSection (I)I +MD: net/minecraft/core/QuartPos/m_175406_ (I)I net/minecraft/core/QuartPos/toSection (I)I +MD: net/minecraft/core/QuartPos/m_198376_ (I)I net/minecraft/core/QuartPos/quartLocal (I)I +MD: net/minecraft/core/Registry/keys (Lcom/mojang/serialization/DynamicOps;)Ljava/util/stream/Stream; net/minecraft/core/Registry/keys (Lcom/mojang/serialization/DynamicOps;)Ljava/util/stream/Stream; +MD: net/minecraft/core/Registry/m_122956_ (Lnet/minecraft/core/Registry;ILjava/lang/String;Ljava/lang/Object;)Ljava/lang/Object; net/minecraft/core/Registry/registerMapping (Lnet/minecraft/core/Registry;ILjava/lang/String;Ljava/lang/Object;)Ljava/lang/Object; +MD: net/minecraft/core/Registry/m_122961_ (Lnet/minecraft/core/Registry;Ljava/lang/String;Ljava/lang/Object;)Ljava/lang/Object; net/minecraft/core/Registry/register (Lnet/minecraft/core/Registry;Ljava/lang/String;Ljava/lang/Object;)Ljava/lang/Object; +MD: net/minecraft/core/Registry/m_122965_ (Lnet/minecraft/core/Registry;Lnet/minecraft/resources/ResourceLocation;Ljava/lang/Object;)Ljava/lang/Object; net/minecraft/core/Registry/register (Lnet/minecraft/core/Registry;Lnet/minecraft/resources/ResourceLocation;Ljava/lang/Object;)Ljava/lang/Object; +MD: net/minecraft/core/Registry/m_123009_ (Lnet/minecraft/resources/ResourceKey;)Ljava/util/Optional; net/minecraft/core/Registry/getOptional (Lnet/minecraft/resources/ResourceKey;)Ljava/util/Optional; +MD: net/minecraft/core/Registry/m_123013_ (Lnet/minecraft/resources/ResourceKey;)Ljava/lang/Object; net/minecraft/core/Registry/getOrThrow (Lnet/minecraft/resources/ResourceKey;)Ljava/lang/Object; +MD: net/minecraft/core/Registry/m_123023_ ()Lnet/minecraft/resources/ResourceKey; net/minecraft/core/Registry/key ()Lnet/minecraft/resources/ResourceKey; +MD: net/minecraft/core/Registry/m_123024_ ()Ljava/util/stream/Stream; net/minecraft/core/Registry/stream ()Ljava/util/stream/Stream; +MD: net/minecraft/core/Registry/m_142003_ (Lnet/minecraft/resources/ResourceKey;)Z net/minecraft/core/Registry/containsKey (Lnet/minecraft/resources/ResourceKey;)Z +MD: net/minecraft/core/Registry/m_194579_ (Lnet/minecraft/core/Registry;Lnet/minecraft/resources/ResourceKey;Ljava/lang/Object;)Ljava/lang/Object; net/minecraft/core/Registry/register (Lnet/minecraft/core/Registry;Lnet/minecraft/resources/ResourceKey;Ljava/lang/Object;)Ljava/lang/Object; +MD: net/minecraft/core/Registry/m_194605_ ()Lcom/mojang/serialization/Codec; net/minecraft/core/Registry/byNameCodec ()Lcom/mojang/serialization/Codec; +MD: net/minecraft/core/Registry/m_203300_ (I)Ljava/util/Optional; net/minecraft/core/Registry/getHolder (I)Ljava/util/Optional; +MD: net/minecraft/core/Registry/m_203431_ (Lnet/minecraft/tags/TagKey;)Ljava/util/Optional; net/minecraft/core/Registry/getTag (Lnet/minecraft/tags/TagKey;)Ljava/util/Optional; +MD: net/minecraft/core/Registry/m_203521_ ()Lnet/minecraft/core/Registry; net/minecraft/core/Registry/freeze ()Lnet/minecraft/core/Registry; +MD: net/minecraft/core/Registry/m_203561_ (Lnet/minecraft/tags/TagKey;)Lnet/minecraft/core/HolderSet$Named; net/minecraft/core/Registry/getOrCreateTag (Lnet/minecraft/tags/TagKey;)Lnet/minecraft/core/HolderSet$Named; +MD: net/minecraft/core/Registry/m_203611_ ()Ljava/util/stream/Stream; net/minecraft/core/Registry/holders ()Ljava/util/stream/Stream; +MD: net/minecraft/core/Registry/m_203612_ ()Ljava/util/stream/Stream; net/minecraft/core/Registry/getTags ()Ljava/util/stream/Stream; +MD: net/minecraft/core/Registry/m_203613_ ()Ljava/util/stream/Stream; net/minecraft/core/Registry/getTagNames ()Ljava/util/stream/Stream; +MD: net/minecraft/core/Registry/m_203635_ ()V net/minecraft/core/Registry/resetTags ()V +MD: net/minecraft/core/Registry/m_203636_ (Lnet/minecraft/resources/ResourceKey;)Ljava/util/Optional; net/minecraft/core/Registry/getHolder (Lnet/minecraft/resources/ResourceKey;)Ljava/util/Optional; +MD: net/minecraft/core/Registry/m_203652_ (Ljava/util/Map;)V net/minecraft/core/Registry/bindTags (Ljava/util/Map;)V +MD: net/minecraft/core/Registry/m_203658_ ()Lcom/mojang/serialization/Lifecycle; net/minecraft/core/Registry/registryLifecycle ()Lcom/mojang/serialization/Lifecycle; +MD: net/minecraft/core/Registry/m_203693_ (Ljava/lang/Object;)Lnet/minecraft/core/Holder$Reference; net/minecraft/core/Registry/createIntrusiveHolder (Ljava/lang/Object;)Lnet/minecraft/core/Holder$Reference; +MD: net/minecraft/core/Registry/m_206058_ (Lnet/minecraft/tags/TagKey;)Ljava/lang/Iterable; net/minecraft/core/Registry/getTagOrEmpty (Lnet/minecraft/tags/TagKey;)Ljava/lang/Iterable; +MD: net/minecraft/core/Registry/m_206060_ (Lnet/minecraft/core/Holder;)Lcom/mojang/serialization/DataResult; net/minecraft/core/Registry/lambda$holderByNameCodec$12 (Lnet/minecraft/core/Holder;)Lcom/mojang/serialization/DataResult; +MD: net/minecraft/core/Registry/m_206110_ ()Lcom/mojang/serialization/Codec; net/minecraft/core/Registry/holderByNameCodec ()Lcom/mojang/serialization/Codec; +MD: net/minecraft/core/Registry/m_206115_ ()Lnet/minecraft/core/IdMap; net/minecraft/core/Registry/asHolderIdMap ()Lnet/minecraft/core/IdMap; +MD: net/minecraft/core/Registry/m_213642_ (Lnet/minecraft/util/RandomSource;)Ljava/util/Optional; net/minecraft/core/Registry/getRandom (Lnet/minecraft/util/RandomSource;)Ljava/util/Optional; +MD: net/minecraft/core/Registry/m_214010_ ()Ljava/util/Set; net/minecraft/core/Registry/registryKeySet ()Ljava/util/Set; +MD: net/minecraft/core/Registry/m_235782_ (Lcom/mojang/serialization/DynamicOps;Lnet/minecraft/resources/ResourceLocation;)Ljava/lang/Object; net/minecraft/core/Registry/lambda$keys$15 (Lcom/mojang/serialization/DynamicOps;Lnet/minecraft/resources/ResourceLocation;)Ljava/lang/Object; +MD: net/minecraft/core/Registry/m_246971_ (Lnet/minecraft/resources/ResourceKey;)Lnet/minecraft/core/Holder$Reference; net/minecraft/core/Registry/getHolderOrThrow (Lnet/minecraft/resources/ResourceKey;)Lnet/minecraft/core/Holder$Reference; +MD: net/minecraft/core/Registry/m_255014_ ()Lnet/minecraft/core/HolderLookup$RegistryLookup; net/minecraft/core/Registry/asTagAddingLookup ()Lnet/minecraft/core/HolderLookup$RegistryLookup; +MD: net/minecraft/core/Registry/m_255303_ ()Lnet/minecraft/core/HolderLookup$RegistryLookup; net/minecraft/core/Registry/asLookup ()Lnet/minecraft/core/HolderLookup$RegistryLookup; +MD: net/minecraft/core/Registry/m_255331_ ()Lnet/minecraft/core/HolderOwner; net/minecraft/core/Registry/holderOwner ()Lnet/minecraft/core/HolderOwner; +MD: net/minecraft/core/Registry/m_257096_ (Lnet/minecraft/resources/ResourceLocation;)Lcom/mojang/serialization/DataResult; net/minecraft/core/Registry/lambda$byNameCodec$2 (Lnet/minecraft/resources/ResourceLocation;)Lcom/mojang/serialization/DataResult; +MD: net/minecraft/core/Registry/m_257097_ (Lnet/minecraft/core/Holder;)Lcom/mojang/serialization/Lifecycle; net/minecraft/core/Registry/lambda$holderByNameCodec$14 (Lnet/minecraft/core/Holder;)Lcom/mojang/serialization/Lifecycle; +MD: net/minecraft/core/Registry/m_257100_ (Lnet/minecraft/resources/ResourceLocation;)Lcom/mojang/serialization/DataResult; net/minecraft/core/Registry/lambda$holderByNameCodec$9 (Lnet/minecraft/resources/ResourceLocation;)Lcom/mojang/serialization/DataResult; +MD: net/minecraft/core/Registry/m_257103_ (Ljava/lang/Object;)Lcom/mojang/serialization/DataResult; net/minecraft/core/Registry/lambda$byNameCodec$5 (Ljava/lang/Object;)Lcom/mojang/serialization/DataResult; +MD: net/minecraft/core/Registry/m_257104_ (Lnet/minecraft/core/Holder;)Lcom/mojang/serialization/Lifecycle; net/minecraft/core/Registry/lambda$holderByNameCodec$13 (Lnet/minecraft/core/Holder;)Lcom/mojang/serialization/Lifecycle; +MD: net/minecraft/core/Registry/m_257105_ (Ljava/lang/Object;)I net/minecraft/core/Registry/lambda$byNameCodec$6 (Ljava/lang/Object;)I +MD: net/minecraft/core/Registry/m_257106_ (Lnet/minecraft/resources/ResourceKey;)Ljava/lang/IllegalStateException; net/minecraft/core/Registry/lambda$getHolderOrThrow$16 (Lnet/minecraft/resources/ResourceKey;)Ljava/lang/IllegalStateException; +MD: net/minecraft/core/Registry/m_263174_ (Lnet/minecraft/core/Registry;Lnet/minecraft/resources/ResourceLocation;Ljava/lang/Object;)Lnet/minecraft/core/Holder$Reference; net/minecraft/core/Registry/registerForHolder (Lnet/minecraft/core/Registry;Lnet/minecraft/resources/ResourceLocation;Ljava/lang/Object;)Lnet/minecraft/core/Holder$Reference; +MD: net/minecraft/core/Registry/m_263175_ (Lnet/minecraft/core/Registry;Lnet/minecraft/resources/ResourceKey;Ljava/lang/Object;)Lnet/minecraft/core/Holder$Reference; net/minecraft/core/Registry/registerForHolder (Lnet/minecraft/core/Registry;Lnet/minecraft/resources/ResourceKey;Ljava/lang/Object;)Lnet/minecraft/core/Holder$Reference; +MD: net/minecraft/core/Registry/m_263177_ (Ljava/lang/Object;)Lnet/minecraft/core/Holder; net/minecraft/core/Registry/wrapAsHolder (Ljava/lang/Object;)Lnet/minecraft/core/Holder; +MD: net/minecraft/core/Registry/m_274013_ (Ljava/lang/Object;)Lcom/mojang/serialization/DataResult; net/minecraft/core/Registry/lambda$byNameCodec$4 (Ljava/lang/Object;)Lcom/mojang/serialization/DataResult; +MD: net/minecraft/core/Registry/m_274014_ (Lnet/minecraft/resources/ResourceLocation;)Lcom/mojang/serialization/DataResult; net/minecraft/core/Registry/lambda$holderByNameCodec$8 (Lnet/minecraft/resources/ResourceLocation;)Lcom/mojang/serialization/DataResult; +MD: net/minecraft/core/Registry/m_274015_ (Lnet/minecraft/resources/ResourceLocation;)Lcom/mojang/serialization/DataResult; net/minecraft/core/Registry/lambda$byNameCodec$1 (Lnet/minecraft/resources/ResourceLocation;)Lcom/mojang/serialization/DataResult; +MD: net/minecraft/core/Registry/m_274016_ (Lnet/minecraft/core/Holder;)Lcom/mojang/serialization/DataResult; net/minecraft/core/Registry/lambda$holderByNameCodec$11 (Lnet/minecraft/core/Holder;)Lcom/mojang/serialization/DataResult; +MD: net/minecraft/core/Registry/m_274017_ (Ljava/lang/Object;)Ljava/lang/String; net/minecraft/core/Registry/lambda$byNameCodec$3 (Ljava/lang/Object;)Ljava/lang/String; +MD: net/minecraft/core/Registry/m_274018_ (Lnet/minecraft/resources/ResourceLocation;)Ljava/lang/String; net/minecraft/core/Registry/lambda$holderByNameCodec$7 (Lnet/minecraft/resources/ResourceLocation;)Ljava/lang/String; +MD: net/minecraft/core/Registry/m_274019_ (Lnet/minecraft/resources/ResourceLocation;)Ljava/lang/String; net/minecraft/core/Registry/lambda$byNameCodec$0 (Lnet/minecraft/resources/ResourceLocation;)Ljava/lang/String; +MD: net/minecraft/core/Registry/m_274020_ (Lnet/minecraft/core/Holder;)Ljava/lang/String; net/minecraft/core/Registry/lambda$holderByNameCodec$10 (Lnet/minecraft/core/Holder;)Ljava/lang/String; +MD: net/minecraft/core/Registry/m_6228_ (Ljava/lang/Object;)Lcom/mojang/serialization/Lifecycle; net/minecraft/core/Registry/lifecycle (Ljava/lang/Object;)Lcom/mojang/serialization/Lifecycle; +MD: net/minecraft/core/Registry/m_6246_ (Lnet/minecraft/resources/ResourceKey;)Ljava/lang/Object; net/minecraft/core/Registry/get (Lnet/minecraft/resources/ResourceKey;)Ljava/lang/Object; +MD: net/minecraft/core/Registry/m_6566_ ()Ljava/util/Set; net/minecraft/core/Registry/keySet ()Ljava/util/Set; +MD: net/minecraft/core/Registry/m_6579_ ()Ljava/util/Set; net/minecraft/core/Registry/entrySet ()Ljava/util/Set; +MD: net/minecraft/core/Registry/m_6612_ (Lnet/minecraft/resources/ResourceLocation;)Ljava/util/Optional; net/minecraft/core/Registry/getOptional (Lnet/minecraft/resources/ResourceLocation;)Ljava/util/Optional; +MD: net/minecraft/core/Registry/m_7447_ (Ljava/lang/Object;)I net/minecraft/core/Registry/getId (Ljava/lang/Object;)I +MD: net/minecraft/core/Registry/m_7745_ (Lnet/minecraft/resources/ResourceLocation;)Ljava/lang/Object; net/minecraft/core/Registry/get (Lnet/minecraft/resources/ResourceLocation;)Ljava/lang/Object; +MD: net/minecraft/core/Registry/m_7804_ (Lnet/minecraft/resources/ResourceLocation;)Z net/minecraft/core/Registry/containsKey (Lnet/minecraft/resources/ResourceLocation;)Z +MD: net/minecraft/core/Registry/m_7854_ (Ljava/lang/Object;)Ljava/util/Optional; net/minecraft/core/Registry/getResourceKey (Ljava/lang/Object;)Ljava/util/Optional; +MD: net/minecraft/core/Registry/m_7981_ (Ljava/lang/Object;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/core/Registry/getKey (Ljava/lang/Object;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/core/Registry$1/ (Lnet/minecraft/core/Registry;)V net/minecraft/core/Registry$1/ (Lnet/minecraft/core/Registry;)V +MD: net/minecraft/core/Registry$1/iterator ()Ljava/util/Iterator; net/minecraft/core/Registry$1/iterator ()Ljava/util/Iterator; +MD: net/minecraft/core/Registry$1/m_13562_ ()I net/minecraft/core/Registry$1/size ()I +MD: net/minecraft/core/Registry$1/m_257407_ (Lnet/minecraft/core/Holder$Reference;)Lnet/minecraft/core/Holder; net/minecraft/core/Registry$1/lambda$iterator$0 (Lnet/minecraft/core/Holder$Reference;)Lnet/minecraft/core/Holder; +MD: net/minecraft/core/Registry$1/m_7447_ (Lnet/minecraft/core/Holder;)I net/minecraft/core/Registry$1/getId (Lnet/minecraft/core/Holder;)I +MD: net/minecraft/core/Registry$1/m_7447_ (Ljava/lang/Object;)I net/minecraft/core/Registry$1/getId (Ljava/lang/Object;)I +MD: net/minecraft/core/Registry$1/m_7942_ (I)Ljava/lang/Object; net/minecraft/core/Registry$1/byId (I)Ljava/lang/Object; +MD: net/minecraft/core/Registry$1/m_7942_ (I)Lnet/minecraft/core/Holder; net/minecraft/core/Registry$1/byId (I)Lnet/minecraft/core/Holder; +MD: net/minecraft/core/Registry$2/ (Lnet/minecraft/core/Registry;)V net/minecraft/core/Registry$2/ (Lnet/minecraft/core/Registry;)V +MD: net/minecraft/core/Registry$2/m_254893_ ()Lnet/minecraft/core/HolderLookup$RegistryLookup; net/minecraft/core/Registry$2/parent ()Lnet/minecraft/core/HolderLookup$RegistryLookup; +MD: net/minecraft/core/Registry$2/m_254901_ (Lnet/minecraft/tags/TagKey;)Ljava/util/Optional; net/minecraft/core/Registry$2/get (Lnet/minecraft/tags/TagKey;)Ljava/util/Optional; +MD: net/minecraft/core/Registry$2/m_254956_ (Lnet/minecraft/tags/TagKey;)Lnet/minecraft/core/HolderSet$Named; net/minecraft/core/Registry$2/getOrThrow (Lnet/minecraft/tags/TagKey;)Lnet/minecraft/core/HolderSet$Named; +MD: net/minecraft/core/RegistryAccess/ ()V net/minecraft/core/RegistryAccess/ ()V +MD: net/minecraft/core/RegistryAccess/m_175515_ (Lnet/minecraft/resources/ResourceKey;)Lnet/minecraft/core/Registry; net/minecraft/core/RegistryAccess/registryOrThrow (Lnet/minecraft/resources/ResourceKey;)Lnet/minecraft/core/Registry; +MD: net/minecraft/core/RegistryAccess/m_175521_ (Lnet/minecraft/resources/ResourceKey;)Ljava/lang/IllegalStateException; net/minecraft/core/RegistryAccess/lambda$registryOrThrow$0 (Lnet/minecraft/resources/ResourceKey;)Ljava/lang/IllegalStateException; +MD: net/minecraft/core/RegistryAccess/m_203557_ ()Lnet/minecraft/core/RegistryAccess$Frozen; net/minecraft/core/RegistryAccess/freeze ()Lnet/minecraft/core/RegistryAccess$Frozen; +MD: net/minecraft/core/RegistryAccess/m_206165_ (Lnet/minecraft/core/Registry;)Lnet/minecraft/core/RegistryAccess$Frozen; net/minecraft/core/RegistryAccess/fromRegistryOfRegistries (Lnet/minecraft/core/Registry;)Lnet/minecraft/core/RegistryAccess$Frozen; +MD: net/minecraft/core/RegistryAccess/m_206193_ ()Ljava/util/stream/Stream; net/minecraft/core/RegistryAccess/registries ()Ljava/util/stream/Stream; +MD: net/minecraft/core/RegistryAccess/m_211816_ ()Lcom/mojang/serialization/Lifecycle; net/minecraft/core/RegistryAccess/allRegistriesLifecycle ()Lcom/mojang/serialization/Lifecycle; +MD: net/minecraft/core/RegistryAccess/m_254861_ (Lnet/minecraft/resources/ResourceKey;)Ljava/util/Optional; net/minecraft/core/RegistryAccess/lookup (Lnet/minecraft/resources/ResourceKey;)Ljava/util/Optional; +MD: net/minecraft/core/RegistryAccess/m_257107_ (Lnet/minecraft/core/RegistryAccess$RegistryEntry;)Lcom/mojang/serialization/Lifecycle; net/minecraft/core/RegistryAccess/lambda$allRegistriesLifecycle$1 (Lnet/minecraft/core/RegistryAccess$RegistryEntry;)Lcom/mojang/serialization/Lifecycle; +MD: net/minecraft/core/RegistryAccess/m_6632_ (Lnet/minecraft/resources/ResourceKey;)Ljava/util/Optional; net/minecraft/core/RegistryAccess/registry (Lnet/minecraft/resources/ResourceKey;)Ljava/util/Optional; +MD: net/minecraft/core/RegistryAccess$1/ (Lnet/minecraft/core/Registry;)V net/minecraft/core/RegistryAccess$1/ (Lnet/minecraft/core/Registry;)V +MD: net/minecraft/core/RegistryAccess$1/m_203557_ ()Lnet/minecraft/core/RegistryAccess$Frozen; net/minecraft/core/RegistryAccess$1/freeze ()Lnet/minecraft/core/RegistryAccess$Frozen; +MD: net/minecraft/core/RegistryAccess$1/m_206193_ ()Ljava/util/stream/Stream; net/minecraft/core/RegistryAccess$1/registries ()Ljava/util/stream/Stream; +MD: net/minecraft/core/RegistryAccess$1/m_6632_ (Lnet/minecraft/resources/ResourceKey;)Ljava/util/Optional; net/minecraft/core/RegistryAccess$1/registry (Lnet/minecraft/resources/ResourceKey;)Ljava/util/Optional; +MD: net/minecraft/core/RegistryAccess$1FrozenAccess/ (Lnet/minecraft/core/RegistryAccess;Ljava/util/stream/Stream;)V net/minecraft/core/RegistryAccess$1FrozenAccess/ (Lnet/minecraft/core/RegistryAccess;Ljava/util/stream/Stream;)V +MD: net/minecraft/core/RegistryAccess$ImmutableRegistryAccess/ (Ljava/util/Map;)V net/minecraft/core/RegistryAccess$ImmutableRegistryAccess/ (Ljava/util/Map;)V +MD: net/minecraft/core/RegistryAccess$ImmutableRegistryAccess/ (Ljava/util/stream/Stream;)V net/minecraft/core/RegistryAccess$ImmutableRegistryAccess/ (Ljava/util/stream/Stream;)V +MD: net/minecraft/core/RegistryAccess$ImmutableRegistryAccess/ (Ljava/util/List;)V net/minecraft/core/RegistryAccess$ImmutableRegistryAccess/ (Ljava/util/List;)V +MD: net/minecraft/core/RegistryAccess$ImmutableRegistryAccess/m_206193_ ()Ljava/util/stream/Stream; net/minecraft/core/RegistryAccess$ImmutableRegistryAccess/registries ()Ljava/util/stream/Stream; +MD: net/minecraft/core/RegistryAccess$ImmutableRegistryAccess/m_206231_ (Lnet/minecraft/core/Registry;)Lnet/minecraft/core/Registry; net/minecraft/core/RegistryAccess$ImmutableRegistryAccess/lambda$new$0 (Lnet/minecraft/core/Registry;)Lnet/minecraft/core/Registry; +MD: net/minecraft/core/RegistryAccess$ImmutableRegistryAccess/m_244761_ (Lnet/minecraft/core/Registry;)Lnet/minecraft/core/Registry; net/minecraft/core/RegistryAccess$ImmutableRegistryAccess/lambda$registry$1 (Lnet/minecraft/core/Registry;)Lnet/minecraft/core/Registry; +MD: net/minecraft/core/RegistryAccess$ImmutableRegistryAccess/m_6632_ (Lnet/minecraft/resources/ResourceKey;)Ljava/util/Optional; net/minecraft/core/RegistryAccess$ImmutableRegistryAccess/registry (Lnet/minecraft/resources/ResourceKey;)Ljava/util/Optional; +MD: net/minecraft/core/RegistryAccess$RegistryEntry/ (Lnet/minecraft/resources/ResourceKey;Lnet/minecraft/core/Registry;)V net/minecraft/core/RegistryAccess$RegistryEntry/ (Lnet/minecraft/resources/ResourceKey;Lnet/minecraft/core/Registry;)V +MD: net/minecraft/core/RegistryAccess$RegistryEntry/equals (Ljava/lang/Object;)Z net/minecraft/core/RegistryAccess$RegistryEntry/equals (Ljava/lang/Object;)Z +MD: net/minecraft/core/RegistryAccess$RegistryEntry/f_206233_ ()Lnet/minecraft/resources/ResourceKey; net/minecraft/core/RegistryAccess$RegistryEntry/key ()Lnet/minecraft/resources/ResourceKey; +MD: net/minecraft/core/RegistryAccess$RegistryEntry/f_206234_ ()Lnet/minecraft/core/Registry; net/minecraft/core/RegistryAccess$RegistryEntry/value ()Lnet/minecraft/core/Registry; +MD: net/minecraft/core/RegistryAccess$RegistryEntry/hashCode ()I net/minecraft/core/RegistryAccess$RegistryEntry/hashCode ()I +MD: net/minecraft/core/RegistryAccess$RegistryEntry/m_206241_ (Ljava/util/Map$Entry;)Lnet/minecraft/core/RegistryAccess$RegistryEntry; net/minecraft/core/RegistryAccess$RegistryEntry/fromMapEntry (Ljava/util/Map$Entry;)Lnet/minecraft/core/RegistryAccess$RegistryEntry; +MD: net/minecraft/core/RegistryAccess$RegistryEntry/m_206243_ (Lnet/minecraft/resources/ResourceKey;Lnet/minecraft/core/Registry;)Lnet/minecraft/core/RegistryAccess$RegistryEntry; net/minecraft/core/RegistryAccess$RegistryEntry/fromUntyped (Lnet/minecraft/resources/ResourceKey;Lnet/minecraft/core/Registry;)Lnet/minecraft/core/RegistryAccess$RegistryEntry; +MD: net/minecraft/core/RegistryAccess$RegistryEntry/m_206247_ ()Lnet/minecraft/core/RegistryAccess$RegistryEntry; net/minecraft/core/RegistryAccess$RegistryEntry/freeze ()Lnet/minecraft/core/RegistryAccess$RegistryEntry; +MD: net/minecraft/core/RegistryAccess$RegistryEntry/toString ()Ljava/lang/String; net/minecraft/core/RegistryAccess$RegistryEntry/toString ()Ljava/lang/String; +MD: net/minecraft/core/RegistryCodecs/ ()V net/minecraft/core/RegistryCodecs/ ()V +MD: net/minecraft/core/RegistryCodecs/m_206277_ (Lnet/minecraft/resources/ResourceKey;)Lcom/mojang/serialization/Codec; net/minecraft/core/RegistryCodecs/homogeneousList (Lnet/minecraft/resources/ResourceKey;)Lcom/mojang/serialization/Codec; +MD: net/minecraft/core/RegistryCodecs/m_206279_ (Lnet/minecraft/resources/ResourceKey;Lcom/mojang/serialization/Codec;)Lcom/mojang/serialization/Codec; net/minecraft/core/RegistryCodecs/homogeneousList (Lnet/minecraft/resources/ResourceKey;Lcom/mojang/serialization/Codec;)Lcom/mojang/serialization/Codec; +MD: net/minecraft/core/RegistryCodecs/m_206287_ (Lnet/minecraft/resources/ResourceKey;Lcom/mojang/serialization/Codec;Z)Lcom/mojang/serialization/Codec; net/minecraft/core/RegistryCodecs/homogeneousList (Lnet/minecraft/resources/ResourceKey;Lcom/mojang/serialization/Codec;Z)Lcom/mojang/serialization/Codec; +MD: net/minecraft/core/RegistryCodecs/m_206291_ (Lnet/minecraft/resources/ResourceKey;Lcom/mojang/serialization/Lifecycle;Lcom/mojang/serialization/Codec;)Lcom/mojang/serialization/Codec; net/minecraft/core/RegistryCodecs/networkCodec (Lnet/minecraft/resources/ResourceKey;Lcom/mojang/serialization/Lifecycle;Lcom/mojang/serialization/Codec;)Lcom/mojang/serialization/Codec; +MD: net/minecraft/core/RegistryCodecs/m_206303_ (Lnet/minecraft/resources/ResourceKey;Lcom/mojang/serialization/MapCodec;)Lcom/mojang/serialization/MapCodec; net/minecraft/core/RegistryCodecs/withNameAndId (Lnet/minecraft/resources/ResourceKey;Lcom/mojang/serialization/MapCodec;)Lcom/mojang/serialization/MapCodec; +MD: net/minecraft/core/RegistryCodecs/m_206306_ (Lnet/minecraft/resources/ResourceKey;Lcom/mojang/serialization/MapCodec;Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/core/RegistryCodecs/lambda$withNameAndId$0 (Lnet/minecraft/resources/ResourceKey;Lcom/mojang/serialization/MapCodec;Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/core/RegistryCodecs/m_206310_ (Lnet/minecraft/resources/ResourceKey;Z)Lcom/mojang/serialization/Codec; net/minecraft/core/RegistryCodecs/homogeneousList (Lnet/minecraft/resources/ResourceKey;Z)Lcom/mojang/serialization/Codec; +MD: net/minecraft/core/RegistryCodecs/m_246213_ (Lnet/minecraft/resources/ResourceKey;Lcom/mojang/serialization/Lifecycle;Lcom/mojang/serialization/Codec;)Lcom/mojang/serialization/Codec; net/minecraft/core/RegistryCodecs/fullCodec (Lnet/minecraft/resources/ResourceKey;Lcom/mojang/serialization/Lifecycle;Lcom/mojang/serialization/Codec;)Lcom/mojang/serialization/Codec; +MD: net/minecraft/core/RegistryCodecs/m_257108_ (Lnet/minecraft/resources/ResourceKey;Lcom/mojang/serialization/Lifecycle;Ljava/util/Map;)Lnet/minecraft/core/Registry; net/minecraft/core/RegistryCodecs/lambda$fullCodec$4 (Lnet/minecraft/resources/ResourceKey;Lcom/mojang/serialization/Lifecycle;Ljava/util/Map;)Lnet/minecraft/core/Registry; +MD: net/minecraft/core/RegistryCodecs/m_257109_ (Lnet/minecraft/core/Registry;)Ljava/util/List; net/minecraft/core/RegistryCodecs/lambda$networkCodec$2 (Lnet/minecraft/core/Registry;)Ljava/util/List; +MD: net/minecraft/core/RegistryCodecs/m_257110_ (Lnet/minecraft/resources/ResourceKey;Lcom/mojang/serialization/Lifecycle;Ljava/util/List;)Lnet/minecraft/core/Registry; net/minecraft/core/RegistryCodecs/lambda$networkCodec$1 (Lnet/minecraft/resources/ResourceKey;Lcom/mojang/serialization/Lifecycle;Ljava/util/List;)Lnet/minecraft/core/Registry; +MD: net/minecraft/core/RegistryCodecs/m_257111_ (Lnet/minecraft/core/WritableRegistry;Lcom/mojang/serialization/Lifecycle;Lnet/minecraft/resources/ResourceKey;Ljava/lang/Object;)V net/minecraft/core/RegistryCodecs/lambda$fullCodec$3 (Lnet/minecraft/core/WritableRegistry;Lcom/mojang/serialization/Lifecycle;Lnet/minecraft/resources/ResourceKey;Ljava/lang/Object;)V +MD: net/minecraft/core/RegistryCodecs/m_257112_ (Lnet/minecraft/core/Registry;)Ljava/util/Map; net/minecraft/core/RegistryCodecs/lambda$fullCodec$5 (Lnet/minecraft/core/Registry;)Ljava/util/Map; +MD: net/minecraft/core/RegistryCodecs$RegistryEntry/ (Lnet/minecraft/resources/ResourceKey;ILjava/lang/Object;)V net/minecraft/core/RegistryCodecs$RegistryEntry/ (Lnet/minecraft/resources/ResourceKey;ILjava/lang/Object;)V +MD: net/minecraft/core/RegistryCodecs$RegistryEntry/equals (Ljava/lang/Object;)Z net/minecraft/core/RegistryCodecs$RegistryEntry/equals (Ljava/lang/Object;)Z +MD: net/minecraft/core/RegistryCodecs$RegistryEntry/f_206354_ ()Lnet/minecraft/resources/ResourceKey; net/minecraft/core/RegistryCodecs$RegistryEntry/key ()Lnet/minecraft/resources/ResourceKey; +MD: net/minecraft/core/RegistryCodecs$RegistryEntry/f_206355_ ()I net/minecraft/core/RegistryCodecs$RegistryEntry/id ()I +MD: net/minecraft/core/RegistryCodecs$RegistryEntry/f_206356_ ()Ljava/lang/Object; net/minecraft/core/RegistryCodecs$RegistryEntry/value ()Ljava/lang/Object; +MD: net/minecraft/core/RegistryCodecs$RegistryEntry/hashCode ()I net/minecraft/core/RegistryCodecs$RegistryEntry/hashCode ()I +MD: net/minecraft/core/RegistryCodecs$RegistryEntry/toString ()Ljava/lang/String; net/minecraft/core/RegistryCodecs$RegistryEntry/toString ()Ljava/lang/String; +MD: net/minecraft/core/RegistrySetBuilder/ ()V net/minecraft/core/RegistrySetBuilder/ ()V +MD: net/minecraft/core/RegistrySetBuilder/m_254882_ (Lnet/minecraft/core/HolderLookup$RegistryLookup;)Lnet/minecraft/core/HolderGetter; net/minecraft/core/RegistrySetBuilder/wrapContextLookup (Lnet/minecraft/core/HolderLookup$RegistryLookup;)Lnet/minecraft/core/HolderGetter; +MD: net/minecraft/core/RegistrySetBuilder/m_254900_ (Lnet/minecraft/core/RegistryAccess;)Lnet/minecraft/core/RegistrySetBuilder$BuildState; net/minecraft/core/RegistrySetBuilder/createState (Lnet/minecraft/core/RegistryAccess;)Lnet/minecraft/core/RegistrySetBuilder$BuildState; +MD: net/minecraft/core/RegistrySetBuilder/m_254916_ (Lnet/minecraft/resources/ResourceKey;Lnet/minecraft/core/RegistrySetBuilder$RegistryBootstrap;)Lnet/minecraft/core/RegistrySetBuilder; net/minecraft/core/RegistrySetBuilder/add (Lnet/minecraft/resources/ResourceKey;Lnet/minecraft/core/RegistrySetBuilder$RegistryBootstrap;)Lnet/minecraft/core/RegistrySetBuilder; +MD: net/minecraft/core/RegistrySetBuilder/m_254929_ (Lnet/minecraft/core/RegistryAccess;Lnet/minecraft/core/HolderLookup$Provider;)Lnet/minecraft/core/HolderLookup$Provider; net/minecraft/core/RegistrySetBuilder/buildPatch (Lnet/minecraft/core/RegistryAccess;Lnet/minecraft/core/HolderLookup$Provider;)Lnet/minecraft/core/HolderLookup$Provider; +MD: net/minecraft/core/RegistrySetBuilder/m_255144_ (Lnet/minecraft/core/RegistryAccess;)Lnet/minecraft/core/HolderLookup$Provider; net/minecraft/core/RegistrySetBuilder/build (Lnet/minecraft/core/RegistryAccess;)Lnet/minecraft/core/HolderLookup$Provider; +MD: net/minecraft/core/RegistrySetBuilder/m_255162_ (Lnet/minecraft/resources/ResourceKey;Lcom/mojang/serialization/Lifecycle;Lnet/minecraft/core/RegistrySetBuilder$RegistryBootstrap;)Lnet/minecraft/core/RegistrySetBuilder; net/minecraft/core/RegistrySetBuilder/add (Lnet/minecraft/resources/ResourceKey;Lcom/mojang/serialization/Lifecycle;Lnet/minecraft/core/RegistrySetBuilder$RegistryBootstrap;)Lnet/minecraft/core/RegistrySetBuilder; +MD: net/minecraft/core/RegistrySetBuilder/m_255212_ (Lnet/minecraft/core/RegistrySetBuilder$BuildState;Lnet/minecraft/core/RegistrySetBuilder$RegistryStub;)Lnet/minecraft/core/HolderLookup$RegistryLookup; net/minecraft/core/RegistrySetBuilder/lambda$build$2 (Lnet/minecraft/core/RegistrySetBuilder$BuildState;Lnet/minecraft/core/RegistrySetBuilder$RegistryStub;)Lnet/minecraft/core/HolderLookup$RegistryLookup; +MD: net/minecraft/core/RegistrySetBuilder/m_255427_ (Lnet/minecraft/core/RegistrySetBuilder$BuildState;Lnet/minecraft/core/RegistrySetBuilder$RegistryStub;)V net/minecraft/core/RegistrySetBuilder/lambda$createState$0 (Lnet/minecraft/core/RegistrySetBuilder$BuildState;Lnet/minecraft/core/RegistrySetBuilder$RegistryStub;)V +MD: net/minecraft/core/RegistrySetBuilder/m_257113_ (Lnet/minecraft/core/RegistryAccess$RegistryEntry;)Lnet/minecraft/core/HolderLookup$RegistryLookup; net/minecraft/core/RegistrySetBuilder/lambda$buildPatch$6 (Lnet/minecraft/core/RegistryAccess$RegistryEntry;)Lnet/minecraft/core/HolderLookup$RegistryLookup; +MD: net/minecraft/core/RegistrySetBuilder/m_257114_ (Lnet/minecraft/core/RegistryAccess$RegistryEntry;)Lnet/minecraft/core/HolderLookup$RegistryLookup; net/minecraft/core/RegistrySetBuilder/lambda$build$1 (Lnet/minecraft/core/RegistryAccess$RegistryEntry;)Lnet/minecraft/core/HolderLookup$RegistryLookup; +MD: net/minecraft/core/RegistrySetBuilder/m_271565_ (Lnet/minecraft/core/RegistrySetBuilder$BuildState;Lnet/minecraft/core/RegistrySetBuilder$RegistryStub;)Lnet/minecraft/core/RegistrySetBuilder$RegistryContents; net/minecraft/core/RegistrySetBuilder/lambda$buildPatch$4 (Lnet/minecraft/core/RegistrySetBuilder$BuildState;Lnet/minecraft/core/RegistrySetBuilder$RegistryStub;)Lnet/minecraft/core/RegistrySetBuilder$RegistryContents; +MD: net/minecraft/core/RegistrySetBuilder/m_271566_ (Ljava/util/Map;Lnet/minecraft/core/RegistrySetBuilder$RegistryContents;)V net/minecraft/core/RegistrySetBuilder/lambda$buildPatch$3 (Ljava/util/Map;Lnet/minecraft/core/RegistrySetBuilder$RegistryContents;)V +MD: net/minecraft/core/RegistrySetBuilder/m_271567_ (Ljava/util/Map;Lnet/minecraft/core/RegistrySetBuilder$RegistryContents;)V net/minecraft/core/RegistrySetBuilder/lambda$buildPatch$5 (Ljava/util/Map;Lnet/minecraft/core/RegistrySetBuilder$RegistryContents;)V +MD: net/minecraft/core/RegistrySetBuilder$1/ (Lnet/minecraft/core/HolderOwner;Lnet/minecraft/core/HolderLookup$RegistryLookup;)V net/minecraft/core/RegistrySetBuilder$1/ (Lnet/minecraft/core/HolderOwner;Lnet/minecraft/core/HolderLookup$RegistryLookup;)V +MD: net/minecraft/core/RegistrySetBuilder$1/m_254902_ (Lnet/minecraft/resources/ResourceKey;)Ljava/util/Optional; net/minecraft/core/RegistrySetBuilder$1/get (Lnet/minecraft/resources/ResourceKey;)Ljava/util/Optional; +MD: net/minecraft/core/RegistrySetBuilder$BuildState/ (Lnet/minecraft/core/RegistrySetBuilder$CompositeOwner;Lnet/minecraft/core/RegistrySetBuilder$UniversalLookup;Ljava/util/Map;Ljava/util/Map;Ljava/util/List;)V net/minecraft/core/RegistrySetBuilder$BuildState/ (Lnet/minecraft/core/RegistrySetBuilder$CompositeOwner;Lnet/minecraft/core/RegistrySetBuilder$UniversalLookup;Ljava/util/Map;Ljava/util/Map;Ljava/util/List;)V +MD: net/minecraft/core/RegistrySetBuilder$BuildState/equals (Ljava/lang/Object;)Z net/minecraft/core/RegistrySetBuilder$BuildState/equals (Ljava/lang/Object;)Z +MD: net/minecraft/core/RegistrySetBuilder$BuildState/f_254627_ ()Ljava/util/List; net/minecraft/core/RegistrySetBuilder$BuildState/errors ()Ljava/util/List; +MD: net/minecraft/core/RegistrySetBuilder$BuildState/f_254644_ ()Ljava/util/Map; net/minecraft/core/RegistrySetBuilder$BuildState/registeredValues ()Ljava/util/Map; +MD: net/minecraft/core/RegistrySetBuilder$BuildState/f_254680_ ()Lnet/minecraft/core/RegistrySetBuilder$CompositeOwner; net/minecraft/core/RegistrySetBuilder$BuildState/owner ()Lnet/minecraft/core/RegistrySetBuilder$CompositeOwner; +MD: net/minecraft/core/RegistrySetBuilder$BuildState/f_254690_ ()Ljava/util/Map; net/minecraft/core/RegistrySetBuilder$BuildState/registries ()Ljava/util/Map; +MD: net/minecraft/core/RegistrySetBuilder$BuildState/f_254749_ ()Lnet/minecraft/core/RegistrySetBuilder$UniversalLookup; net/minecraft/core/RegistrySetBuilder$BuildState/lookup ()Lnet/minecraft/core/RegistrySetBuilder$UniversalLookup; +MD: net/minecraft/core/RegistrySetBuilder$BuildState/hashCode ()I net/minecraft/core/RegistrySetBuilder$BuildState/hashCode ()I +MD: net/minecraft/core/RegistrySetBuilder$BuildState/m_254941_ (Lcom/google/common/collect/ImmutableMap$Builder;Lnet/minecraft/core/RegistrySetBuilder$UniversalLookup;Lnet/minecraft/resources/ResourceKey;)V net/minecraft/core/RegistrySetBuilder$BuildState/lambda$create$1 (Lcom/google/common/collect/ImmutableMap$Builder;Lnet/minecraft/core/RegistrySetBuilder$UniversalLookup;Lnet/minecraft/resources/ResourceKey;)V +MD: net/minecraft/core/RegistrySetBuilder$BuildState/m_254987_ (Lnet/minecraft/core/HolderOwner;)V net/minecraft/core/RegistrySetBuilder$BuildState/addOwner (Lnet/minecraft/core/HolderOwner;)V +MD: net/minecraft/core/RegistrySetBuilder$BuildState/m_255178_ ()V net/minecraft/core/RegistrySetBuilder$BuildState/throwOnError ()V +MD: net/minecraft/core/RegistrySetBuilder$BuildState/m_255218_ (Lnet/minecraft/core/HolderLookup$Provider;Lnet/minecraft/resources/ResourceLocation;)Ljava/util/Optional; net/minecraft/core/RegistrySetBuilder$BuildState/lambda$fillMissingHolders$3 (Lnet/minecraft/core/HolderLookup$Provider;Lnet/minecraft/resources/ResourceLocation;)Ljava/util/Optional; +MD: net/minecraft/core/RegistrySetBuilder$BuildState/m_255228_ ()V net/minecraft/core/RegistrySetBuilder$BuildState/reportRemainingUnreferencedValues ()V +MD: net/minecraft/core/RegistrySetBuilder$BuildState/m_255274_ ()Lnet/minecraft/data/worldgen/BootstapContext; net/minecraft/core/RegistrySetBuilder$BuildState/bootstapContext ()Lnet/minecraft/data/worldgen/BootstapContext; +MD: net/minecraft/core/RegistrySetBuilder$BuildState/m_255298_ (Lnet/minecraft/core/HolderLookup$Provider;)V net/minecraft/core/RegistrySetBuilder$BuildState/fillMissingHolders (Lnet/minecraft/core/HolderLookup$Provider;)V +MD: net/minecraft/core/RegistrySetBuilder$BuildState/m_255312_ (Lnet/minecraft/resources/ResourceKey;Lnet/minecraft/core/HolderLookup;)Ljava/util/Optional; net/minecraft/core/RegistrySetBuilder$BuildState/lambda$fillMissingHolders$4 (Lnet/minecraft/resources/ResourceKey;Lnet/minecraft/core/HolderLookup;)Ljava/util/Optional; +MD: net/minecraft/core/RegistrySetBuilder$BuildState/m_255346_ (Lnet/minecraft/resources/ResourceKey;Lnet/minecraft/core/RegistrySetBuilder$RegisteredValue;)V net/minecraft/core/RegistrySetBuilder$BuildState/lambda$reportRemainingUnreferencedValues$2 (Lnet/minecraft/resources/ResourceKey;Lnet/minecraft/core/RegistrySetBuilder$RegisteredValue;)V +MD: net/minecraft/core/RegistrySetBuilder$BuildState/m_255352_ (Lnet/minecraft/core/Holder$Reference;Ljava/util/Iterator;Lnet/minecraft/core/Holder$Reference;)V net/minecraft/core/RegistrySetBuilder$BuildState/lambda$fillMissingHolders$5 (Lnet/minecraft/core/Holder$Reference;Ljava/util/Iterator;Lnet/minecraft/core/Holder$Reference;)V +MD: net/minecraft/core/RegistrySetBuilder$BuildState/m_255369_ (Lnet/minecraft/core/RegistryAccess;Ljava/util/stream/Stream;)Lnet/minecraft/core/RegistrySetBuilder$BuildState; net/minecraft/core/RegistrySetBuilder$BuildState/create (Lnet/minecraft/core/RegistryAccess;Ljava/util/stream/Stream;)Lnet/minecraft/core/RegistrySetBuilder$BuildState; +MD: net/minecraft/core/RegistrySetBuilder$BuildState/m_257115_ (Lcom/google/common/collect/ImmutableMap$Builder;Lnet/minecraft/core/RegistryAccess$RegistryEntry;)V net/minecraft/core/RegistrySetBuilder$BuildState/lambda$create$0 (Lcom/google/common/collect/ImmutableMap$Builder;Lnet/minecraft/core/RegistryAccess$RegistryEntry;)V +MD: net/minecraft/core/RegistrySetBuilder$BuildState/m_271568_ (Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/core/RegistrySetBuilder$RegistryContents; net/minecraft/core/RegistrySetBuilder$BuildState/lambda$collectReferencedRegistries$6 (Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/core/RegistrySetBuilder$RegistryContents; +MD: net/minecraft/core/RegistrySetBuilder$BuildState/m_272134_ ()Ljava/util/stream/Stream; net/minecraft/core/RegistrySetBuilder$BuildState/collectReferencedRegistries ()Ljava/util/stream/Stream; +MD: net/minecraft/core/RegistrySetBuilder$BuildState/toString ()Ljava/lang/String; net/minecraft/core/RegistrySetBuilder$BuildState/toString ()Ljava/lang/String; +MD: net/minecraft/core/RegistrySetBuilder$BuildState$1/ (Lnet/minecraft/core/RegistrySetBuilder$BuildState;)V net/minecraft/core/RegistrySetBuilder$BuildState$1/ (Lnet/minecraft/core/RegistrySetBuilder$BuildState;)V +MD: net/minecraft/core/RegistrySetBuilder$BuildState$1/m_255042_ (Lnet/minecraft/resources/ResourceKey;Ljava/lang/Object;Lcom/mojang/serialization/Lifecycle;)Lnet/minecraft/core/Holder$Reference; net/minecraft/core/RegistrySetBuilder$BuildState$1/register (Lnet/minecraft/resources/ResourceKey;Ljava/lang/Object;Lcom/mojang/serialization/Lifecycle;)Lnet/minecraft/core/Holder$Reference; +MD: net/minecraft/core/RegistrySetBuilder$BuildState$1/m_255420_ (Lnet/minecraft/resources/ResourceKey;)Lnet/minecraft/core/HolderGetter; net/minecraft/core/RegistrySetBuilder$BuildState$1/lookup (Lnet/minecraft/resources/ResourceKey;)Lnet/minecraft/core/HolderGetter; +MD: net/minecraft/core/RegistrySetBuilder$CompositeOwner/ ()V net/minecraft/core/RegistrySetBuilder$CompositeOwner/ ()V +MD: net/minecraft/core/RegistrySetBuilder$CompositeOwner/m_254921_ (Lnet/minecraft/core/HolderOwner;)Z net/minecraft/core/RegistrySetBuilder$CompositeOwner/canSerializeIn (Lnet/minecraft/core/HolderOwner;)Z +MD: net/minecraft/core/RegistrySetBuilder$CompositeOwner/m_255436_ (Lnet/minecraft/core/HolderOwner;)V net/minecraft/core/RegistrySetBuilder$CompositeOwner/add (Lnet/minecraft/core/HolderOwner;)V +MD: net/minecraft/core/RegistrySetBuilder$EmptyTagLookup/ (Lnet/minecraft/core/HolderOwner;)V net/minecraft/core/RegistrySetBuilder$EmptyTagLookup/ (Lnet/minecraft/core/HolderOwner;)V +MD: net/minecraft/core/RegistrySetBuilder$EmptyTagLookup/m_254901_ (Lnet/minecraft/tags/TagKey;)Ljava/util/Optional; net/minecraft/core/RegistrySetBuilder$EmptyTagLookup/get (Lnet/minecraft/tags/TagKey;)Ljava/util/Optional; +MD: net/minecraft/core/RegistrySetBuilder$RegisteredValue/ (Ljava/lang/Object;Lcom/mojang/serialization/Lifecycle;)V net/minecraft/core/RegistrySetBuilder$RegisteredValue/ (Ljava/lang/Object;Lcom/mojang/serialization/Lifecycle;)V +MD: net/minecraft/core/RegistrySetBuilder$RegisteredValue/equals (Ljava/lang/Object;)Z net/minecraft/core/RegistrySetBuilder$RegisteredValue/equals (Ljava/lang/Object;)Z +MD: net/minecraft/core/RegistrySetBuilder$RegisteredValue/f_254641_ ()Lcom/mojang/serialization/Lifecycle; net/minecraft/core/RegistrySetBuilder$RegisteredValue/lifecycle ()Lcom/mojang/serialization/Lifecycle; +MD: net/minecraft/core/RegistrySetBuilder$RegisteredValue/f_254685_ ()Ljava/lang/Object; net/minecraft/core/RegistrySetBuilder$RegisteredValue/value ()Ljava/lang/Object; +MD: net/minecraft/core/RegistrySetBuilder$RegisteredValue/hashCode ()I net/minecraft/core/RegistrySetBuilder$RegisteredValue/hashCode ()I +MD: net/minecraft/core/RegistrySetBuilder$RegisteredValue/toString ()Ljava/lang/String; net/minecraft/core/RegistrySetBuilder$RegisteredValue/toString ()Ljava/lang/String; +MD: net/minecraft/core/RegistrySetBuilder$RegistryBootstrap/m_254966_ (Lnet/minecraft/data/worldgen/BootstapContext;)V net/minecraft/core/RegistrySetBuilder$RegistryBootstrap/run (Lnet/minecraft/data/worldgen/BootstapContext;)V +MD: net/minecraft/core/RegistrySetBuilder$RegistryContents/ (Lnet/minecraft/resources/ResourceKey;Lcom/mojang/serialization/Lifecycle;Ljava/util/Map;)V net/minecraft/core/RegistrySetBuilder$RegistryContents/ (Lnet/minecraft/resources/ResourceKey;Lcom/mojang/serialization/Lifecycle;Ljava/util/Map;)V +MD: net/minecraft/core/RegistrySetBuilder$RegistryContents/equals (Ljava/lang/Object;)Z net/minecraft/core/RegistrySetBuilder$RegistryContents/equals (Ljava/lang/Object;)Z +MD: net/minecraft/core/RegistrySetBuilder$RegistryContents/f_254715_ ()Ljava/util/Map; net/minecraft/core/RegistrySetBuilder$RegistryContents/values ()Ljava/util/Map; +MD: net/minecraft/core/RegistrySetBuilder$RegistryContents/f_271144_ ()Lcom/mojang/serialization/Lifecycle; net/minecraft/core/RegistrySetBuilder$RegistryContents/lifecycle ()Lcom/mojang/serialization/Lifecycle; +MD: net/minecraft/core/RegistrySetBuilder$RegistryContents/f_271195_ ()Lnet/minecraft/resources/ResourceKey; net/minecraft/core/RegistrySetBuilder$RegistryContents/key ()Lnet/minecraft/resources/ResourceKey; +MD: net/minecraft/core/RegistrySetBuilder$RegistryContents/hashCode ()I net/minecraft/core/RegistrySetBuilder$RegistryContents/hashCode ()I +MD: net/minecraft/core/RegistrySetBuilder$RegistryContents/m_254889_ ()Lnet/minecraft/core/HolderLookup$RegistryLookup; net/minecraft/core/RegistrySetBuilder$RegistryContents/buildAsLookup ()Lnet/minecraft/core/HolderLookup$RegistryLookup; +MD: net/minecraft/core/RegistrySetBuilder$RegistryContents/toString ()Ljava/lang/String; net/minecraft/core/RegistrySetBuilder$RegistryContents/toString ()Ljava/lang/String; +MD: net/minecraft/core/RegistrySetBuilder$RegistryContents$1/ (Lnet/minecraft/core/RegistrySetBuilder$RegistryContents;)V net/minecraft/core/RegistrySetBuilder$RegistryContents$1/ (Lnet/minecraft/core/RegistrySetBuilder$RegistryContents;)V +MD: net/minecraft/core/RegistrySetBuilder$RegistryContents$1/m_214062_ ()Ljava/util/stream/Stream; net/minecraft/core/RegistrySetBuilder$RegistryContents$1/listElements ()Ljava/util/stream/Stream; +MD: net/minecraft/core/RegistrySetBuilder$RegistryContents$1/m_214063_ ()Ljava/util/stream/Stream; net/minecraft/core/RegistrySetBuilder$RegistryContents$1/listTags ()Ljava/util/stream/Stream; +MD: net/minecraft/core/RegistrySetBuilder$RegistryContents$1/m_254879_ ()Lnet/minecraft/resources/ResourceKey; net/minecraft/core/RegistrySetBuilder$RegistryContents$1/key ()Lnet/minecraft/resources/ResourceKey; +MD: net/minecraft/core/RegistrySetBuilder$RegistryContents$1/m_254883_ ()Lcom/mojang/serialization/Lifecycle; net/minecraft/core/RegistrySetBuilder$RegistryContents$1/registryLifecycle ()Lcom/mojang/serialization/Lifecycle; +MD: net/minecraft/core/RegistrySetBuilder$RegistryContents$1/m_254901_ (Lnet/minecraft/tags/TagKey;)Ljava/util/Optional; net/minecraft/core/RegistrySetBuilder$RegistryContents$1/get (Lnet/minecraft/tags/TagKey;)Ljava/util/Optional; +MD: net/minecraft/core/RegistrySetBuilder$RegistryContents$1/m_254902_ (Lnet/minecraft/resources/ResourceKey;)Ljava/util/Optional; net/minecraft/core/RegistrySetBuilder$RegistryContents$1/get (Lnet/minecraft/resources/ResourceKey;)Ljava/util/Optional; +MD: net/minecraft/core/RegistrySetBuilder$RegistryContents$1/m_254922_ (Ljava/util/Map$Entry;)Lnet/minecraft/core/Holder$Reference; net/minecraft/core/RegistrySetBuilder$RegistryContents$1/lambda$$0 (Ljava/util/Map$Entry;)Lnet/minecraft/core/Holder$Reference; +MD: net/minecraft/core/RegistrySetBuilder$RegistryContents$1/m_255009_ (Ljava/util/Map$Entry;)Lnet/minecraft/core/Holder$Reference; net/minecraft/core/RegistrySetBuilder$RegistryContents$1/lambda$$1 (Ljava/util/Map$Entry;)Lnet/minecraft/core/Holder$Reference; +MD: net/minecraft/core/RegistrySetBuilder$RegistryStub/ (Lnet/minecraft/resources/ResourceKey;Lcom/mojang/serialization/Lifecycle;Lnet/minecraft/core/RegistrySetBuilder$RegistryBootstrap;)V net/minecraft/core/RegistrySetBuilder$RegistryStub/ (Lnet/minecraft/resources/ResourceKey;Lcom/mojang/serialization/Lifecycle;Lnet/minecraft/core/RegistrySetBuilder$RegistryBootstrap;)V +MD: net/minecraft/core/RegistrySetBuilder$RegistryStub/equals (Ljava/lang/Object;)Z net/minecraft/core/RegistrySetBuilder$RegistryStub/equals (Ljava/lang/Object;)Z +MD: net/minecraft/core/RegistrySetBuilder$RegistryStub/f_254689_ ()Lnet/minecraft/core/RegistrySetBuilder$RegistryBootstrap; net/minecraft/core/RegistrySetBuilder$RegistryStub/bootstrap ()Lnet/minecraft/core/RegistrySetBuilder$RegistryBootstrap; +MD: net/minecraft/core/RegistrySetBuilder$RegistryStub/f_254728_ ()Lcom/mojang/serialization/Lifecycle; net/minecraft/core/RegistrySetBuilder$RegistryStub/lifecycle ()Lcom/mojang/serialization/Lifecycle; +MD: net/minecraft/core/RegistrySetBuilder$RegistryStub/f_254738_ ()Lnet/minecraft/resources/ResourceKey; net/minecraft/core/RegistrySetBuilder$RegistryStub/key ()Lnet/minecraft/resources/ResourceKey; +MD: net/minecraft/core/RegistrySetBuilder$RegistryStub/hashCode ()I net/minecraft/core/RegistrySetBuilder$RegistryStub/hashCode ()I +MD: net/minecraft/core/RegistrySetBuilder$RegistryStub/m_254914_ (Lnet/minecraft/core/RegistrySetBuilder$BuildState;)Lnet/minecraft/core/RegistrySetBuilder$RegistryContents; net/minecraft/core/RegistrySetBuilder$RegistryStub/collectChanges (Lnet/minecraft/core/RegistrySetBuilder$BuildState;)Lnet/minecraft/core/RegistrySetBuilder$RegistryContents; +MD: net/minecraft/core/RegistrySetBuilder$RegistryStub/m_254946_ (Lnet/minecraft/core/RegistrySetBuilder$BuildState;)V net/minecraft/core/RegistrySetBuilder$RegistryStub/apply (Lnet/minecraft/core/RegistrySetBuilder$BuildState;)V +MD: net/minecraft/core/RegistrySetBuilder$RegistryStub/toString ()Ljava/lang/String; net/minecraft/core/RegistrySetBuilder$RegistryStub/toString ()Ljava/lang/String; +MD: net/minecraft/core/RegistrySetBuilder$UniversalLookup/ (Lnet/minecraft/core/HolderOwner;)V net/minecraft/core/RegistrySetBuilder$UniversalLookup/ (Lnet/minecraft/core/HolderOwner;)V +MD: net/minecraft/core/RegistrySetBuilder$UniversalLookup/m_254902_ (Lnet/minecraft/resources/ResourceKey;)Ljava/util/Optional; net/minecraft/core/RegistrySetBuilder$UniversalLookup/get (Lnet/minecraft/resources/ResourceKey;)Ljava/util/Optional; +MD: net/minecraft/core/RegistrySetBuilder$UniversalLookup/m_255345_ (Lnet/minecraft/resources/ResourceKey;)Lnet/minecraft/core/Holder$Reference; net/minecraft/core/RegistrySetBuilder$UniversalLookup/getOrCreate (Lnet/minecraft/resources/ResourceKey;)Lnet/minecraft/core/Holder$Reference; +MD: net/minecraft/core/RegistrySetBuilder$UniversalLookup/m_255379_ (Lnet/minecraft/resources/ResourceKey;)Lnet/minecraft/core/Holder$Reference; net/minecraft/core/RegistrySetBuilder$UniversalLookup/lambda$getOrCreate$0 (Lnet/minecraft/resources/ResourceKey;)Lnet/minecraft/core/Holder$Reference; +MD: net/minecraft/core/RegistrySetBuilder$ValueAndHolder/ (Lnet/minecraft/core/RegistrySetBuilder$RegisteredValue;Ljava/util/Optional;)V net/minecraft/core/RegistrySetBuilder$ValueAndHolder/ (Lnet/minecraft/core/RegistrySetBuilder$RegisteredValue;Ljava/util/Optional;)V +MD: net/minecraft/core/RegistrySetBuilder$ValueAndHolder/equals (Ljava/lang/Object;)Z net/minecraft/core/RegistrySetBuilder$ValueAndHolder/equals (Ljava/lang/Object;)Z +MD: net/minecraft/core/RegistrySetBuilder$ValueAndHolder/f_254632_ ()Ljava/util/Optional; net/minecraft/core/RegistrySetBuilder$ValueAndHolder/holder ()Ljava/util/Optional; +MD: net/minecraft/core/RegistrySetBuilder$ValueAndHolder/f_254683_ ()Lnet/minecraft/core/RegistrySetBuilder$RegisteredValue; net/minecraft/core/RegistrySetBuilder$ValueAndHolder/value ()Lnet/minecraft/core/RegistrySetBuilder$RegisteredValue; +MD: net/minecraft/core/RegistrySetBuilder$ValueAndHolder/hashCode ()I net/minecraft/core/RegistrySetBuilder$ValueAndHolder/hashCode ()I +MD: net/minecraft/core/RegistrySetBuilder$ValueAndHolder/toString ()Ljava/lang/String; net/minecraft/core/RegistrySetBuilder$ValueAndHolder/toString ()Ljava/lang/String; +MD: net/minecraft/core/RegistrySynchronization/ ()V net/minecraft/core/RegistrySynchronization/ ()V +MD: net/minecraft/core/RegistrySynchronization/ ()V net/minecraft/core/RegistrySynchronization/ ()V +MD: net/minecraft/core/RegistrySynchronization/m_245094_ (Lnet/minecraft/core/RegistryAccess$RegistryEntry;)Lnet/minecraft/core/Registry; net/minecraft/core/RegistrySynchronization/lambda$captureMap$9 (Lnet/minecraft/core/RegistryAccess$RegistryEntry;)Lnet/minecraft/core/Registry; +MD: net/minecraft/core/RegistrySynchronization/m_245122_ (Lnet/minecraft/core/LayeredRegistryAccess;)Ljava/util/stream/Stream; net/minecraft/core/RegistrySynchronization/networkSafeRegistries (Lnet/minecraft/core/LayeredRegistryAccess;)Ljava/util/stream/Stream; +MD: net/minecraft/core/RegistrySynchronization/m_245617_ (Lnet/minecraft/core/RegistryAccess;)Ljava/util/Map; net/minecraft/core/RegistrySynchronization/lambda$captureMap$10 (Lnet/minecraft/core/RegistryAccess;)Ljava/util/Map; +MD: net/minecraft/core/RegistrySynchronization/m_245699_ (Lnet/minecraft/resources/ResourceKey;)Lcom/mojang/serialization/DataResult; net/minecraft/core/RegistrySynchronization/getNetworkCodec (Lnet/minecraft/resources/ResourceKey;)Lcom/mojang/serialization/DataResult; +MD: net/minecraft/core/RegistrySynchronization/m_245863_ (Lnet/minecraft/core/RegistrySynchronization$NetworkedRegistryData;)Lcom/mojang/serialization/Codec; net/minecraft/core/RegistrySynchronization/lambda$getNetworkCodec$2 (Lnet/minecraft/core/RegistrySynchronization$NetworkedRegistryData;)Lcom/mojang/serialization/Codec; +MD: net/minecraft/core/RegistrySynchronization/m_245912_ (Lcom/google/common/collect/ImmutableMap$Builder;Lnet/minecraft/resources/ResourceKey;Lcom/mojang/serialization/Codec;)V net/minecraft/core/RegistrySynchronization/put (Lcom/google/common/collect/ImmutableMap$Builder;Lnet/minecraft/resources/ResourceKey;Lcom/mojang/serialization/Codec;)V +MD: net/minecraft/core/RegistrySynchronization/m_245940_ (Lcom/mojang/serialization/codecs/UnboundedMapCodec;)Lcom/mojang/serialization/Codec; net/minecraft/core/RegistrySynchronization/captureMap (Lcom/mojang/serialization/codecs/UnboundedMapCodec;)Lcom/mojang/serialization/Codec; +MD: net/minecraft/core/RegistrySynchronization/m_246090_ (Lnet/minecraft/core/RegistryAccess$RegistryEntry;)Z net/minecraft/core/RegistrySynchronization/lambda$ownedNetworkableRegistries$1 (Lnet/minecraft/core/RegistryAccess$RegistryEntry;)Z +MD: net/minecraft/core/RegistrySynchronization/m_246347_ (Lnet/minecraft/resources/ResourceKey;)Lcom/mojang/serialization/DataResult; net/minecraft/core/RegistrySynchronization/lambda$makeNetworkCodec$7 (Lnet/minecraft/resources/ResourceKey;)Lcom/mojang/serialization/DataResult; +MD: net/minecraft/core/RegistrySynchronization/m_246968_ (Lnet/minecraft/resources/ResourceKey;Lcom/mojang/serialization/Codec;)Lcom/mojang/serialization/Codec; net/minecraft/core/RegistrySynchronization/lambda$makeNetworkCodec$6 (Lnet/minecraft/resources/ResourceKey;Lcom/mojang/serialization/Codec;)Lcom/mojang/serialization/Codec; +MD: net/minecraft/core/RegistrySynchronization/m_246999_ (Lnet/minecraft/core/RegistryAccess$RegistryEntry;)Lnet/minecraft/resources/ResourceKey; net/minecraft/core/RegistrySynchronization/lambda$captureMap$8 (Lnet/minecraft/core/RegistryAccess$RegistryEntry;)Lnet/minecraft/resources/ResourceKey; +MD: net/minecraft/core/RegistrySynchronization/m_247146_ ()Lcom/mojang/serialization/Codec; net/minecraft/core/RegistrySynchronization/makeNetworkCodec ()Lcom/mojang/serialization/Codec; +MD: net/minecraft/core/RegistrySynchronization/m_247199_ (Lnet/minecraft/core/RegistryAccess;)Ljava/util/stream/Stream; net/minecraft/core/RegistrySynchronization/ownedNetworkableRegistries (Lnet/minecraft/core/RegistryAccess;)Ljava/util/stream/Stream; +MD: net/minecraft/core/RegistrySynchronization/m_257117_ (Lnet/minecraft/core/Registry;)Lcom/mojang/serialization/DataResult; net/minecraft/core/RegistrySynchronization/lambda$makeNetworkCodec$5 (Lnet/minecraft/core/Registry;)Lcom/mojang/serialization/DataResult; +MD: net/minecraft/core/RegistrySynchronization/m_257599_ (Lnet/minecraft/core/LayeredRegistryAccess;)Ljava/util/stream/Stream; net/minecraft/core/RegistrySynchronization/networkedRegistries (Lnet/minecraft/core/LayeredRegistryAccess;)Ljava/util/stream/Stream; +MD: net/minecraft/core/RegistrySynchronization/m_268833_ ()Lcom/google/common/collect/ImmutableMap; net/minecraft/core/RegistrySynchronization/lambda$static$0 ()Lcom/google/common/collect/ImmutableMap; +MD: net/minecraft/core/RegistrySynchronization/m_274021_ (Lnet/minecraft/resources/ResourceKey;)Ljava/lang/String; net/minecraft/core/RegistrySynchronization/lambda$getNetworkCodec$3 (Lnet/minecraft/resources/ResourceKey;)Ljava/lang/String; +MD: net/minecraft/core/RegistrySynchronization/m_274022_ (Lnet/minecraft/resources/ResourceKey;)Lcom/mojang/serialization/DataResult; net/minecraft/core/RegistrySynchronization/lambda$getNetworkCodec$4 (Lnet/minecraft/resources/ResourceKey;)Lcom/mojang/serialization/DataResult; +MD: net/minecraft/core/RegistrySynchronization$NetworkedRegistryData/ (Lnet/minecraft/resources/ResourceKey;Lcom/mojang/serialization/Codec;)V net/minecraft/core/RegistrySynchronization$NetworkedRegistryData/ (Lnet/minecraft/resources/ResourceKey;Lcom/mojang/serialization/Codec;)V +MD: net/minecraft/core/RegistrySynchronization$NetworkedRegistryData/equals (Ljava/lang/Object;)Z net/minecraft/core/RegistrySynchronization$NetworkedRegistryData/equals (Ljava/lang/Object;)Z +MD: net/minecraft/core/RegistrySynchronization$NetworkedRegistryData/f_244392_ ()Lcom/mojang/serialization/Codec; net/minecraft/core/RegistrySynchronization$NetworkedRegistryData/networkCodec ()Lcom/mojang/serialization/Codec; +MD: net/minecraft/core/RegistrySynchronization$NetworkedRegistryData/f_244545_ ()Lnet/minecraft/resources/ResourceKey; net/minecraft/core/RegistrySynchronization$NetworkedRegistryData/key ()Lnet/minecraft/resources/ResourceKey; +MD: net/minecraft/core/RegistrySynchronization$NetworkedRegistryData/hashCode ()I net/minecraft/core/RegistrySynchronization$NetworkedRegistryData/hashCode ()I +MD: net/minecraft/core/RegistrySynchronization$NetworkedRegistryData/toString ()Ljava/lang/String; net/minecraft/core/RegistrySynchronization$NetworkedRegistryData/toString ()Ljava/lang/String; +MD: net/minecraft/core/Rotations/ (FFF)V net/minecraft/core/Rotations/ (FFF)V +MD: net/minecraft/core/Rotations/ (Lnet/minecraft/nbt/ListTag;)V net/minecraft/core/Rotations/ (Lnet/minecraft/nbt/ListTag;)V +MD: net/minecraft/core/Rotations/equals (Ljava/lang/Object;)Z net/minecraft/core/Rotations/equals (Ljava/lang/Object;)Z +MD: net/minecraft/core/Rotations/m_123155_ ()Lnet/minecraft/nbt/ListTag; net/minecraft/core/Rotations/save ()Lnet/minecraft/nbt/ListTag; +MD: net/minecraft/core/Rotations/m_123156_ ()F net/minecraft/core/Rotations/getX ()F +MD: net/minecraft/core/Rotations/m_123157_ ()F net/minecraft/core/Rotations/getY ()F +MD: net/minecraft/core/Rotations/m_123158_ ()F net/minecraft/core/Rotations/getZ ()F +MD: net/minecraft/core/Rotations/m_175532_ ()F net/minecraft/core/Rotations/getWrappedX ()F +MD: net/minecraft/core/Rotations/m_175533_ ()F net/minecraft/core/Rotations/getWrappedY ()F +MD: net/minecraft/core/Rotations/m_175534_ ()F net/minecraft/core/Rotations/getWrappedZ ()F +MD: net/minecraft/core/SectionPos/ (III)V net/minecraft/core/SectionPos/ (III)V +MD: net/minecraft/core/SectionPos/m_123170_ ()I net/minecraft/core/SectionPos/x ()I +MD: net/minecraft/core/SectionPos/m_123171_ (I)I net/minecraft/core/SectionPos/blockToSectionCoord (I)I +MD: net/minecraft/core/SectionPos/m_123173_ (III)Lnet/minecraft/core/SectionPos; net/minecraft/core/SectionPos/of (III)Lnet/minecraft/core/SectionPos; +MD: net/minecraft/core/SectionPos/m_123177_ (IIIIII)Ljava/util/stream/Stream; net/minecraft/core/SectionPos/betweenClosedStream (IIIIII)Ljava/util/stream/Stream; +MD: net/minecraft/core/SectionPos/m_123184_ (J)Lnet/minecraft/core/SectionPos; net/minecraft/core/SectionPos/of (J)Lnet/minecraft/core/SectionPos; +MD: net/minecraft/core/SectionPos/m_123186_ (JIII)J net/minecraft/core/SectionPos/offset (JIII)J +MD: net/minecraft/core/SectionPos/m_123191_ (JLnet/minecraft/core/Direction;)J net/minecraft/core/SectionPos/offset (JLnet/minecraft/core/Direction;)J +MD: net/minecraft/core/SectionPos/m_123196_ (Lnet/minecraft/world/level/ChunkPos;I)Lnet/minecraft/core/SectionPos; net/minecraft/core/SectionPos/of (Lnet/minecraft/world/level/ChunkPos;I)Lnet/minecraft/core/SectionPos; +MD: net/minecraft/core/SectionPos/m_123199_ (Lnet/minecraft/core/BlockPos;)Lnet/minecraft/core/SectionPos; net/minecraft/core/SectionPos/of (Lnet/minecraft/core/BlockPos;)Lnet/minecraft/core/SectionPos; +MD: net/minecraft/core/SectionPos/m_123201_ (Lnet/minecraft/core/SectionPos;I)Ljava/util/stream/Stream; net/minecraft/core/SectionPos/cube (Lnet/minecraft/core/SectionPos;I)Ljava/util/stream/Stream; +MD: net/minecraft/core/SectionPos/m_123204_ (S)I net/minecraft/core/SectionPos/sectionRelativeX (S)I +MD: net/minecraft/core/SectionPos/m_123206_ ()I net/minecraft/core/SectionPos/y ()I +MD: net/minecraft/core/SectionPos/m_123207_ (I)I net/minecraft/core/SectionPos/sectionRelative (I)I +MD: net/minecraft/core/SectionPos/m_123209_ (III)J net/minecraft/core/SectionPos/asLong (III)J +MD: net/minecraft/core/SectionPos/m_123213_ (J)I net/minecraft/core/SectionPos/x (J)I +MD: net/minecraft/core/SectionPos/m_123218_ (Lnet/minecraft/core/BlockPos;)S net/minecraft/core/SectionPos/sectionRelativePos (Lnet/minecraft/core/BlockPos;)S +MD: net/minecraft/core/SectionPos/m_123220_ (S)I net/minecraft/core/SectionPos/sectionRelativeY (S)I +MD: net/minecraft/core/SectionPos/m_123222_ ()I net/minecraft/core/SectionPos/z ()I +MD: net/minecraft/core/SectionPos/m_123223_ (I)I net/minecraft/core/SectionPos/sectionToBlockCoord (I)I +MD: net/minecraft/core/SectionPos/m_123225_ (J)I net/minecraft/core/SectionPos/y (J)I +MD: net/minecraft/core/SectionPos/m_123227_ (S)I net/minecraft/core/SectionPos/sectionRelativeZ (S)I +MD: net/minecraft/core/SectionPos/m_123229_ ()I net/minecraft/core/SectionPos/minBlockX ()I +MD: net/minecraft/core/SectionPos/m_123230_ (J)I net/minecraft/core/SectionPos/z (J)I +MD: net/minecraft/core/SectionPos/m_123232_ (S)I net/minecraft/core/SectionPos/relativeToBlockX (S)I +MD: net/minecraft/core/SectionPos/m_123234_ ()I net/minecraft/core/SectionPos/minBlockY ()I +MD: net/minecraft/core/SectionPos/m_123235_ (J)J net/minecraft/core/SectionPos/blockToSection (J)J +MD: net/minecraft/core/SectionPos/m_123237_ (S)I net/minecraft/core/SectionPos/relativeToBlockY (S)I +MD: net/minecraft/core/SectionPos/m_123239_ ()I net/minecraft/core/SectionPos/minBlockZ ()I +MD: net/minecraft/core/SectionPos/m_123240_ (J)J net/minecraft/core/SectionPos/getZeroNode (J)J +MD: net/minecraft/core/SectionPos/m_123242_ (S)I net/minecraft/core/SectionPos/relativeToBlockZ (S)I +MD: net/minecraft/core/SectionPos/m_123244_ ()I net/minecraft/core/SectionPos/maxBlockX ()I +MD: net/minecraft/core/SectionPos/m_123245_ (S)Lnet/minecraft/core/BlockPos; net/minecraft/core/SectionPos/relativeToBlockPos (S)Lnet/minecraft/core/BlockPos; +MD: net/minecraft/core/SectionPos/m_123247_ ()I net/minecraft/core/SectionPos/maxBlockY ()I +MD: net/minecraft/core/SectionPos/m_123248_ ()I net/minecraft/core/SectionPos/maxBlockZ ()I +MD: net/minecraft/core/SectionPos/m_123249_ ()Lnet/minecraft/core/BlockPos; net/minecraft/core/SectionPos/origin ()Lnet/minecraft/core/BlockPos; +MD: net/minecraft/core/SectionPos/m_123250_ ()Lnet/minecraft/core/BlockPos; net/minecraft/core/SectionPos/center ()Lnet/minecraft/core/BlockPos; +MD: net/minecraft/core/SectionPos/m_123251_ ()Lnet/minecraft/world/level/ChunkPos; net/minecraft/core/SectionPos/chunk ()Lnet/minecraft/world/level/ChunkPos; +MD: net/minecraft/core/SectionPos/m_123252_ ()J net/minecraft/core/SectionPos/asLong ()J +MD: net/minecraft/core/SectionPos/m_123253_ ()Ljava/util/stream/Stream; net/minecraft/core/SectionPos/blocksInside ()Ljava/util/stream/Stream; +MD: net/minecraft/core/SectionPos/m_175552_ (D)I net/minecraft/core/SectionPos/posToSectionCoord (D)I +MD: net/minecraft/core/SectionPos/m_175554_ (II)I net/minecraft/core/SectionPos/sectionToBlockCoord (II)I +MD: net/minecraft/core/SectionPos/m_175557_ (Lnet/minecraft/world/level/ChunkPos;III)Ljava/util/stream/Stream; net/minecraft/core/SectionPos/aroundChunk (Lnet/minecraft/world/level/ChunkPos;III)Ljava/util/stream/Stream; +MD: net/minecraft/core/SectionPos/m_175562_ (Lnet/minecraft/world/level/chunk/ChunkAccess;)Lnet/minecraft/core/SectionPos; net/minecraft/core/SectionPos/bottomOf (Lnet/minecraft/world/level/chunk/ChunkAccess;)Lnet/minecraft/core/SectionPos; +MD: net/minecraft/core/SectionPos/m_175568_ (Lnet/minecraft/core/BlockPos;)J net/minecraft/core/SectionPos/asLong (Lnet/minecraft/core/BlockPos;)J +MD: net/minecraft/core/SectionPos/m_194634_ (IIILit/unimi/dsi/fastutil/longs/LongConsumer;)V net/minecraft/core/SectionPos/aroundAndAtBlockPos (IIILit/unimi/dsi/fastutil/longs/LongConsumer;)V +MD: net/minecraft/core/SectionPos/m_194639_ (JLit/unimi/dsi/fastutil/longs/LongConsumer;)V net/minecraft/core/SectionPos/aroundAndAtBlockPos (JLit/unimi/dsi/fastutil/longs/LongConsumer;)V +MD: net/minecraft/core/SectionPos/m_194642_ (Lnet/minecraft/core/BlockPos;Lit/unimi/dsi/fastutil/longs/LongConsumer;)V net/minecraft/core/SectionPos/aroundAndAtBlockPos (Lnet/minecraft/core/BlockPos;Lit/unimi/dsi/fastutil/longs/LongConsumer;)V +MD: net/minecraft/core/SectionPos/m_235861_ (Lnet/minecraft/world/level/entity/EntityAccess;)Lnet/minecraft/core/SectionPos; net/minecraft/core/SectionPos/of (Lnet/minecraft/world/level/entity/EntityAccess;)Lnet/minecraft/core/SectionPos; +MD: net/minecraft/core/SectionPos/m_235863_ (Lnet/minecraft/core/Position;)Lnet/minecraft/core/SectionPos; net/minecraft/core/SectionPos/of (Lnet/minecraft/core/Position;)Lnet/minecraft/core/SectionPos; +MD: net/minecraft/core/SectionPos/m_235865_ (D)I net/minecraft/core/SectionPos/blockToSectionCoord (D)I +MD: net/minecraft/core/SectionPos/m_284454_ (II)J net/minecraft/core/SectionPos/getZeroNode (II)J +MD: net/minecraft/core/SectionPos/m_7918_ (III)Lnet/minecraft/core/Vec3i; net/minecraft/core/SectionPos/offset (III)Lnet/minecraft/core/Vec3i; +MD: net/minecraft/core/SectionPos/m_7918_ (III)Lnet/minecraft/core/SectionPos; net/minecraft/core/SectionPos/offset (III)Lnet/minecraft/core/SectionPos; +MD: net/minecraft/core/SectionPos$1/ (JIIIIIII)V net/minecraft/core/SectionPos$1/ (JIIIIIII)V +MD: net/minecraft/core/SectionPos$1/tryAdvance (Ljava/util/function/Consumer;)Z net/minecraft/core/SectionPos$1/tryAdvance (Ljava/util/function/Consumer;)Z +MD: net/minecraft/core/UUIDUtil/ ()V net/minecraft/core/UUIDUtil/ ()V +MD: net/minecraft/core/UUIDUtil/ ()V net/minecraft/core/UUIDUtil/ ()V +MD: net/minecraft/core/UUIDUtil/m_235872_ (JJ)[I net/minecraft/core/UUIDUtil/leastMostToIntArray (JJ)[I +MD: net/minecraft/core/UUIDUtil/m_235875_ (Lcom/mojang/authlib/GameProfile;)Ljava/util/UUID; net/minecraft/core/UUIDUtil/getOrCreatePlayerUUID (Lcom/mojang/authlib/GameProfile;)Ljava/util/UUID; +MD: net/minecraft/core/UUIDUtil/m_235877_ (Lcom/mojang/serialization/Dynamic;)Ljava/util/UUID; net/minecraft/core/UUIDUtil/readUUID (Lcom/mojang/serialization/Dynamic;)Ljava/util/UUID; +MD: net/minecraft/core/UUIDUtil/m_235879_ (Ljava/lang/String;)Ljava/util/UUID; net/minecraft/core/UUIDUtil/createOfflinePlayerUUID (Ljava/lang/String;)Ljava/util/UUID; +MD: net/minecraft/core/UUIDUtil/m_235881_ (Ljava/util/UUID;)[I net/minecraft/core/UUIDUtil/uuidToIntArray (Ljava/util/UUID;)[I +MD: net/minecraft/core/UUIDUtil/m_235883_ (Ljava/util/stream/IntStream;)Lcom/mojang/serialization/DataResult; net/minecraft/core/UUIDUtil/lambda$static$0 (Ljava/util/stream/IntStream;)Lcom/mojang/serialization/DataResult; +MD: net/minecraft/core/UUIDUtil/m_235885_ ([I)Ljava/util/UUID; net/minecraft/core/UUIDUtil/uuidFromIntArray ([I)Ljava/util/UUID; +MD: net/minecraft/core/UUIDUtil/m_235887_ (Ljava/util/UUID;)Ljava/util/stream/IntStream; net/minecraft/core/UUIDUtil/lambda$static$1 (Ljava/util/UUID;)Ljava/util/stream/IntStream; +MD: net/minecraft/core/UUIDUtil/m_241191_ (Ljava/util/UUID;)[B net/minecraft/core/UUIDUtil/uuidToByteArray (Ljava/util/UUID;)[B +MD: net/minecraft/core/UUIDUtil/m_252596_ (Ljava/util/UUID;)Ljava/util/UUID; net/minecraft/core/UUIDUtil/lambda$static$7 (Ljava/util/UUID;)Ljava/util/UUID; +MD: net/minecraft/core/UUIDUtil/m_252597_ (Ljava/util/UUID;)Ljava/util/UUID; net/minecraft/core/UUIDUtil/lambda$static$6 (Ljava/util/UUID;)Ljava/util/UUID; +MD: net/minecraft/core/UUIDUtil/m_252599_ (Lcom/mojang/datafixers/util/Either;)Ljava/util/UUID; net/minecraft/core/UUIDUtil/lambda$static$8 (Lcom/mojang/datafixers/util/Either;)Ljava/util/UUID; +MD: net/minecraft/core/UUIDUtil/m_274023_ (Ljava/lang/String;)Lcom/mojang/serialization/DataResult; net/minecraft/core/UUIDUtil/lambda$static$3 (Ljava/lang/String;)Lcom/mojang/serialization/DataResult; +MD: net/minecraft/core/UUIDUtil/m_274024_ (Ljava/lang/String;Ljava/lang/IllegalArgumentException;)Ljava/lang/String; net/minecraft/core/UUIDUtil/lambda$static$2 (Ljava/lang/String;Ljava/lang/IllegalArgumentException;)Ljava/lang/String; +MD: net/minecraft/core/UUIDUtil/m_274025_ (Ljava/lang/String;)Lcom/mojang/serialization/DataResult; net/minecraft/core/UUIDUtil/lambda$static$5 (Ljava/lang/String;)Lcom/mojang/serialization/DataResult; +MD: net/minecraft/core/UUIDUtil/m_274026_ (Ljava/lang/String;Ljava/lang/IllegalArgumentException;)Ljava/lang/String; net/minecraft/core/UUIDUtil/lambda$static$4 (Ljava/lang/String;Ljava/lang/IllegalArgumentException;)Ljava/lang/String; +MD: net/minecraft/core/Vec3i/ ()V net/minecraft/core/Vec3i/ ()V +MD: net/minecraft/core/Vec3i/ (III)V net/minecraft/core/Vec3i/ (III)V +MD: net/minecraft/core/Vec3i/compareTo (Lnet/minecraft/core/Vec3i;)I net/minecraft/core/Vec3i/compareTo (Lnet/minecraft/core/Vec3i;)I +MD: net/minecraft/core/Vec3i/compareTo (Ljava/lang/Object;)I net/minecraft/core/Vec3i/compareTo (Ljava/lang/Object;)I +MD: net/minecraft/core/Vec3i/equals (Ljava/lang/Object;)Z net/minecraft/core/Vec3i/equals (Ljava/lang/Object;)Z +MD: net/minecraft/core/Vec3i/hashCode ()I net/minecraft/core/Vec3i/hashCode ()I +MD: net/minecraft/core/Vec3i/m_121945_ (Lnet/minecraft/core/Direction;)Lnet/minecraft/core/Vec3i; net/minecraft/core/Vec3i/relative (Lnet/minecraft/core/Direction;)Lnet/minecraft/core/Vec3i; +MD: net/minecraft/core/Vec3i/m_121955_ (Lnet/minecraft/core/Vec3i;)Lnet/minecraft/core/Vec3i; net/minecraft/core/Vec3i/offset (Lnet/minecraft/core/Vec3i;)Lnet/minecraft/core/Vec3i; +MD: net/minecraft/core/Vec3i/m_121996_ (Lnet/minecraft/core/Vec3i;)Lnet/minecraft/core/Vec3i; net/minecraft/core/Vec3i/subtract (Lnet/minecraft/core/Vec3i;)Lnet/minecraft/core/Vec3i; +MD: net/minecraft/core/Vec3i/m_122012_ ()Lnet/minecraft/core/Vec3i; net/minecraft/core/Vec3i/north ()Lnet/minecraft/core/Vec3i; +MD: net/minecraft/core/Vec3i/m_122013_ (I)Lnet/minecraft/core/Vec3i; net/minecraft/core/Vec3i/north (I)Lnet/minecraft/core/Vec3i; +MD: net/minecraft/core/Vec3i/m_122019_ ()Lnet/minecraft/core/Vec3i; net/minecraft/core/Vec3i/south ()Lnet/minecraft/core/Vec3i; +MD: net/minecraft/core/Vec3i/m_122020_ (I)Lnet/minecraft/core/Vec3i; net/minecraft/core/Vec3i/south (I)Lnet/minecraft/core/Vec3i; +MD: net/minecraft/core/Vec3i/m_122024_ ()Lnet/minecraft/core/Vec3i; net/minecraft/core/Vec3i/west ()Lnet/minecraft/core/Vec3i; +MD: net/minecraft/core/Vec3i/m_122025_ (I)Lnet/minecraft/core/Vec3i; net/minecraft/core/Vec3i/west (I)Lnet/minecraft/core/Vec3i; +MD: net/minecraft/core/Vec3i/m_122029_ ()Lnet/minecraft/core/Vec3i; net/minecraft/core/Vec3i/east ()Lnet/minecraft/core/Vec3i; +MD: net/minecraft/core/Vec3i/m_122030_ (I)Lnet/minecraft/core/Vec3i; net/minecraft/core/Vec3i/east (I)Lnet/minecraft/core/Vec3i; +MD: net/minecraft/core/Vec3i/m_123304_ (Lnet/minecraft/core/Direction$Axis;)I net/minecraft/core/Vec3i/get (Lnet/minecraft/core/Direction$Axis;)I +MD: net/minecraft/core/Vec3i/m_123312_ (Lnet/minecraft/core/Vec3i;)Ljava/util/stream/IntStream; net/minecraft/core/Vec3i/lambda$static$2 (Lnet/minecraft/core/Vec3i;)Ljava/util/stream/IntStream; +MD: net/minecraft/core/Vec3i/m_123314_ (Lnet/minecraft/core/Vec3i;D)Z net/minecraft/core/Vec3i/closerThan (Lnet/minecraft/core/Vec3i;D)Z +MD: net/minecraft/core/Vec3i/m_123317_ (Ljava/util/stream/IntStream;)Lcom/mojang/serialization/DataResult; net/minecraft/core/Vec3i/lambda$static$1 (Ljava/util/stream/IntStream;)Lcom/mojang/serialization/DataResult; +MD: net/minecraft/core/Vec3i/m_123331_ (Lnet/minecraft/core/Vec3i;)D net/minecraft/core/Vec3i/distSqr (Lnet/minecraft/core/Vec3i;)D +MD: net/minecraft/core/Vec3i/m_123333_ (Lnet/minecraft/core/Vec3i;)I net/minecraft/core/Vec3i/distManhattan (Lnet/minecraft/core/Vec3i;)I +MD: net/minecraft/core/Vec3i/m_123341_ ()I net/minecraft/core/Vec3i/getX ()I +MD: net/minecraft/core/Vec3i/m_123342_ ()I net/minecraft/core/Vec3i/getY ()I +MD: net/minecraft/core/Vec3i/m_123343_ ()I net/minecraft/core/Vec3i/getZ ()I +MD: net/minecraft/core/Vec3i/m_123344_ ()Ljava/lang/String; net/minecraft/core/Vec3i/toShortString ()Ljava/lang/String; +MD: net/minecraft/core/Vec3i/m_142393_ (I)Lnet/minecraft/core/Vec3i; net/minecraft/core/Vec3i/multiply (I)Lnet/minecraft/core/Vec3i; +MD: net/minecraft/core/Vec3i/m_142443_ (I)Lnet/minecraft/core/Vec3i; net/minecraft/core/Vec3i/setZ (I)Lnet/minecraft/core/Vec3i; +MD: net/minecraft/core/Vec3i/m_142448_ (I)Lnet/minecraft/core/Vec3i; net/minecraft/core/Vec3i/setY (I)Lnet/minecraft/core/Vec3i; +MD: net/minecraft/core/Vec3i/m_142451_ (I)Lnet/minecraft/core/Vec3i; net/minecraft/core/Vec3i/setX (I)Lnet/minecraft/core/Vec3i; +MD: net/minecraft/core/Vec3i/m_175585_ ([I)Lnet/minecraft/core/Vec3i; net/minecraft/core/Vec3i/lambda$static$0 ([I)Lnet/minecraft/core/Vec3i; +MD: net/minecraft/core/Vec3i/m_194650_ (I)Lcom/mojang/serialization/Codec; net/minecraft/core/Vec3i/offsetCodec (I)Lcom/mojang/serialization/Codec; +MD: net/minecraft/core/Vec3i/m_203193_ (Lnet/minecraft/core/Position;)D net/minecraft/core/Vec3i/distToCenterSqr (Lnet/minecraft/core/Position;)D +MD: net/minecraft/core/Vec3i/m_203195_ (Lnet/minecraft/core/Position;D)Z net/minecraft/core/Vec3i/closerToCenterThan (Lnet/minecraft/core/Position;D)Z +MD: net/minecraft/core/Vec3i/m_203198_ (DDD)D net/minecraft/core/Vec3i/distToCenterSqr (DDD)D +MD: net/minecraft/core/Vec3i/m_203202_ (DDD)D net/minecraft/core/Vec3i/distToLowCornerSqr (DDD)D +MD: net/minecraft/core/Vec3i/m_274027_ (ILnet/minecraft/core/Vec3i;)Lcom/mojang/serialization/DataResult; net/minecraft/core/Vec3i/lambda$offsetCodec$4 (ILnet/minecraft/core/Vec3i;)Lcom/mojang/serialization/DataResult; +MD: net/minecraft/core/Vec3i/m_274028_ (ILnet/minecraft/core/Vec3i;)Ljava/lang/String; net/minecraft/core/Vec3i/lambda$offsetCodec$3 (ILnet/minecraft/core/Vec3i;)Ljava/lang/String; +MD: net/minecraft/core/Vec3i/m_5484_ (Lnet/minecraft/core/Direction;I)Lnet/minecraft/core/Vec3i; net/minecraft/core/Vec3i/relative (Lnet/minecraft/core/Direction;I)Lnet/minecraft/core/Vec3i; +MD: net/minecraft/core/Vec3i/m_5487_ (Lnet/minecraft/core/Direction$Axis;I)Lnet/minecraft/core/Vec3i; net/minecraft/core/Vec3i/relative (Lnet/minecraft/core/Direction$Axis;I)Lnet/minecraft/core/Vec3i; +MD: net/minecraft/core/Vec3i/m_6625_ (I)Lnet/minecraft/core/Vec3i; net/minecraft/core/Vec3i/below (I)Lnet/minecraft/core/Vec3i; +MD: net/minecraft/core/Vec3i/m_6630_ (I)Lnet/minecraft/core/Vec3i; net/minecraft/core/Vec3i/above (I)Lnet/minecraft/core/Vec3i; +MD: net/minecraft/core/Vec3i/m_7494_ ()Lnet/minecraft/core/Vec3i; net/minecraft/core/Vec3i/above ()Lnet/minecraft/core/Vec3i; +MD: net/minecraft/core/Vec3i/m_7495_ ()Lnet/minecraft/core/Vec3i; net/minecraft/core/Vec3i/below ()Lnet/minecraft/core/Vec3i; +MD: net/minecraft/core/Vec3i/m_7724_ (Lnet/minecraft/core/Vec3i;)Lnet/minecraft/core/Vec3i; net/minecraft/core/Vec3i/cross (Lnet/minecraft/core/Vec3i;)Lnet/minecraft/core/Vec3i; +MD: net/minecraft/core/Vec3i/m_7918_ (III)Lnet/minecraft/core/Vec3i; net/minecraft/core/Vec3i/offset (III)Lnet/minecraft/core/Vec3i; +MD: net/minecraft/core/Vec3i/toString ()Ljava/lang/String; net/minecraft/core/Vec3i/toString ()Ljava/lang/String; +MD: net/minecraft/core/WritableRegistry/m_142427_ ()Z net/minecraft/core/WritableRegistry/isEmpty ()Z +MD: net/minecraft/core/WritableRegistry/m_203505_ ()Lnet/minecraft/core/HolderGetter; net/minecraft/core/WritableRegistry/createRegistrationLookup ()Lnet/minecraft/core/HolderGetter; +MD: net/minecraft/core/WritableRegistry/m_203704_ (ILnet/minecraft/resources/ResourceKey;Ljava/lang/Object;Lcom/mojang/serialization/Lifecycle;)Lnet/minecraft/core/Holder; net/minecraft/core/WritableRegistry/registerMapping (ILnet/minecraft/resources/ResourceKey;Ljava/lang/Object;Lcom/mojang/serialization/Lifecycle;)Lnet/minecraft/core/Holder; +MD: net/minecraft/core/WritableRegistry/m_255290_ (Lnet/minecraft/resources/ResourceKey;Ljava/lang/Object;Lcom/mojang/serialization/Lifecycle;)Lnet/minecraft/core/Holder$Reference; net/minecraft/core/WritableRegistry/register (Lnet/minecraft/resources/ResourceKey;Ljava/lang/Object;Lcom/mojang/serialization/Lifecycle;)Lnet/minecraft/core/Holder$Reference; +MD: net/minecraft/core/cauldron/CauldronInteraction/ ()V net/minecraft/core/cauldron/CauldronInteraction/ ()V +MD: net/minecraft/core/cauldron/CauldronInteraction/m_175617_ ()Lit/unimi/dsi/fastutil/objects/Object2ObjectOpenHashMap; net/minecraft/core/cauldron/CauldronInteraction/newInteractionMap ()Lit/unimi/dsi/fastutil/objects/Object2ObjectOpenHashMap; +MD: net/minecraft/core/cauldron/CauldronInteraction/m_175618_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/sounds/SoundEvent;)Lnet/minecraft/world/InteractionResult; net/minecraft/core/cauldron/CauldronInteraction/emptyBucket (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/sounds/SoundEvent;)Lnet/minecraft/world/InteractionResult; +MD: net/minecraft/core/cauldron/CauldronInteraction/m_175626_ (Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/core/cauldron/CauldronInteraction/lambda$bootStrap$9 (Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/core/cauldron/CauldronInteraction/m_175628_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;Lnet/minecraft/world/item/ItemStack;)Lnet/minecraft/world/InteractionResult; net/minecraft/core/cauldron/CauldronInteraction/lambda$static$16 (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;Lnet/minecraft/world/item/ItemStack;)Lnet/minecraft/world/InteractionResult; +MD: net/minecraft/core/cauldron/CauldronInteraction/m_175635_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/item/ItemStack;Ljava/util/function/Predicate;Lnet/minecraft/sounds/SoundEvent;)Lnet/minecraft/world/InteractionResult; net/minecraft/core/cauldron/CauldronInteraction/fillBucket (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/item/ItemStack;Ljava/util/function/Predicate;Lnet/minecraft/sounds/SoundEvent;)Lnet/minecraft/world/InteractionResult; +MD: net/minecraft/core/cauldron/CauldronInteraction/m_175645_ (Lit/unimi/dsi/fastutil/objects/Object2ObjectOpenHashMap;)V net/minecraft/core/cauldron/CauldronInteraction/lambda$newInteractionMap$1 (Lit/unimi/dsi/fastutil/objects/Object2ObjectOpenHashMap;)V +MD: net/minecraft/core/cauldron/CauldronInteraction/m_175647_ (Ljava/util/Map;)V net/minecraft/core/cauldron/CauldronInteraction/addDefaultInteractions (Ljava/util/Map;)V +MD: net/minecraft/core/cauldron/CauldronInteraction/m_175649_ ()V net/minecraft/core/cauldron/CauldronInteraction/bootStrap ()V +MD: net/minecraft/core/cauldron/CauldronInteraction/m_175650_ (Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/core/cauldron/CauldronInteraction/lambda$bootStrap$7 (Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/core/cauldron/CauldronInteraction/m_175659_ (Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/core/cauldron/CauldronInteraction/lambda$bootStrap$3 (Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/core/cauldron/CauldronInteraction/m_175661_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;Lnet/minecraft/world/item/ItemStack;)Lnet/minecraft/world/InteractionResult; net/minecraft/core/cauldron/CauldronInteraction/lambda$static$14 (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;Lnet/minecraft/world/item/ItemStack;)Lnet/minecraft/world/InteractionResult; +MD: net/minecraft/core/cauldron/CauldronInteraction/m_175668_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;Lnet/minecraft/world/item/ItemStack;)Lnet/minecraft/world/InteractionResult; net/minecraft/core/cauldron/CauldronInteraction/lambda$static$13 (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;Lnet/minecraft/world/item/ItemStack;)Lnet/minecraft/world/InteractionResult; +MD: net/minecraft/core/cauldron/CauldronInteraction/m_175675_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;Lnet/minecraft/world/item/ItemStack;)Lnet/minecraft/world/InteractionResult; net/minecraft/core/cauldron/CauldronInteraction/lambda$static$12 (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;Lnet/minecraft/world/item/ItemStack;)Lnet/minecraft/world/InteractionResult; +MD: net/minecraft/core/cauldron/CauldronInteraction/m_175682_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;Lnet/minecraft/world/item/ItemStack;)Lnet/minecraft/world/InteractionResult; net/minecraft/core/cauldron/CauldronInteraction/lambda$static$11 (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;Lnet/minecraft/world/item/ItemStack;)Lnet/minecraft/world/InteractionResult; +MD: net/minecraft/core/cauldron/CauldronInteraction/m_175689_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;Lnet/minecraft/world/item/ItemStack;)Lnet/minecraft/world/InteractionResult; net/minecraft/core/cauldron/CauldronInteraction/lambda$bootStrap$10 (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;Lnet/minecraft/world/item/ItemStack;)Lnet/minecraft/world/InteractionResult; +MD: net/minecraft/core/cauldron/CauldronInteraction/m_175696_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;Lnet/minecraft/world/item/ItemStack;)Lnet/minecraft/world/InteractionResult; net/minecraft/core/cauldron/CauldronInteraction/lambda$bootStrap$8 (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;Lnet/minecraft/world/item/ItemStack;)Lnet/minecraft/world/InteractionResult; +MD: net/minecraft/core/cauldron/CauldronInteraction/m_175703_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;Lnet/minecraft/world/item/ItemStack;)Lnet/minecraft/world/InteractionResult; net/minecraft/core/cauldron/CauldronInteraction/lambda$bootStrap$6 (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;Lnet/minecraft/world/item/ItemStack;)Lnet/minecraft/world/InteractionResult; +MD: net/minecraft/core/cauldron/CauldronInteraction/m_175710_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;Lnet/minecraft/world/item/ItemStack;)Lnet/minecraft/world/InteractionResult; net/minecraft/core/cauldron/CauldronInteraction/interact (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;Lnet/minecraft/world/item/ItemStack;)Lnet/minecraft/world/InteractionResult; +MD: net/minecraft/core/cauldron/CauldronInteraction/m_175717_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;Lnet/minecraft/world/item/ItemStack;)Lnet/minecraft/world/InteractionResult; net/minecraft/core/cauldron/CauldronInteraction/lambda$bootStrap$5 (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;Lnet/minecraft/world/item/ItemStack;)Lnet/minecraft/world/InteractionResult; +MD: net/minecraft/core/cauldron/CauldronInteraction/m_175724_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;Lnet/minecraft/world/item/ItemStack;)Lnet/minecraft/world/InteractionResult; net/minecraft/core/cauldron/CauldronInteraction/lambda$bootStrap$4 (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;Lnet/minecraft/world/item/ItemStack;)Lnet/minecraft/world/InteractionResult; +MD: net/minecraft/core/cauldron/CauldronInteraction/m_175731_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;Lnet/minecraft/world/item/ItemStack;)Lnet/minecraft/world/InteractionResult; net/minecraft/core/cauldron/CauldronInteraction/lambda$bootStrap$2 (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;Lnet/minecraft/world/item/ItemStack;)Lnet/minecraft/world/InteractionResult; +MD: net/minecraft/core/cauldron/CauldronInteraction/m_175738_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;Lnet/minecraft/world/item/ItemStack;)Lnet/minecraft/world/InteractionResult; net/minecraft/core/cauldron/CauldronInteraction/lambda$newInteractionMap$0 (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;Lnet/minecraft/world/item/ItemStack;)Lnet/minecraft/world/InteractionResult; +MD: net/minecraft/core/cauldron/CauldronInteraction/m_278529_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;Lnet/minecraft/world/item/ItemStack;)Lnet/minecraft/world/InteractionResult; net/minecraft/core/cauldron/CauldronInteraction/lambda$static$15 (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;Lnet/minecraft/world/item/ItemStack;)Lnet/minecraft/world/InteractionResult; +MD: net/minecraft/core/dispenser/AbstractProjectileDispenseBehavior/ ()V net/minecraft/core/dispenser/AbstractProjectileDispenseBehavior/ ()V +MD: net/minecraft/core/dispenser/AbstractProjectileDispenseBehavior/m_6823_ (Lnet/minecraft/core/BlockSource;)V net/minecraft/core/dispenser/AbstractProjectileDispenseBehavior/playSound (Lnet/minecraft/core/BlockSource;)V +MD: net/minecraft/core/dispenser/AbstractProjectileDispenseBehavior/m_6895_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/Position;Lnet/minecraft/world/item/ItemStack;)Lnet/minecraft/world/entity/projectile/Projectile; net/minecraft/core/dispenser/AbstractProjectileDispenseBehavior/getProjectile (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/Position;Lnet/minecraft/world/item/ItemStack;)Lnet/minecraft/world/entity/projectile/Projectile; +MD: net/minecraft/core/dispenser/AbstractProjectileDispenseBehavior/m_7101_ ()F net/minecraft/core/dispenser/AbstractProjectileDispenseBehavior/getUncertainty ()F +MD: net/minecraft/core/dispenser/AbstractProjectileDispenseBehavior/m_7104_ ()F net/minecraft/core/dispenser/AbstractProjectileDispenseBehavior/getPower ()F +MD: net/minecraft/core/dispenser/AbstractProjectileDispenseBehavior/m_7498_ (Lnet/minecraft/core/BlockSource;Lnet/minecraft/world/item/ItemStack;)Lnet/minecraft/world/item/ItemStack; net/minecraft/core/dispenser/AbstractProjectileDispenseBehavior/execute (Lnet/minecraft/core/BlockSource;Lnet/minecraft/world/item/ItemStack;)Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/core/dispenser/BoatDispenseItemBehavior/ (Lnet/minecraft/world/entity/vehicle/Boat$Type;Z)V net/minecraft/core/dispenser/BoatDispenseItemBehavior/ (Lnet/minecraft/world/entity/vehicle/Boat$Type;Z)V +MD: net/minecraft/core/dispenser/BoatDispenseItemBehavior/ (Lnet/minecraft/world/entity/vehicle/Boat$Type;)V net/minecraft/core/dispenser/BoatDispenseItemBehavior/ (Lnet/minecraft/world/entity/vehicle/Boat$Type;)V +MD: net/minecraft/core/dispenser/BoatDispenseItemBehavior/m_6823_ (Lnet/minecraft/core/BlockSource;)V net/minecraft/core/dispenser/BoatDispenseItemBehavior/playSound (Lnet/minecraft/core/BlockSource;)V +MD: net/minecraft/core/dispenser/BoatDispenseItemBehavior/m_7498_ (Lnet/minecraft/core/BlockSource;Lnet/minecraft/world/item/ItemStack;)Lnet/minecraft/world/item/ItemStack; net/minecraft/core/dispenser/BoatDispenseItemBehavior/execute (Lnet/minecraft/core/BlockSource;Lnet/minecraft/world/item/ItemStack;)Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/core/dispenser/DefaultDispenseItemBehavior/ ()V net/minecraft/core/dispenser/DefaultDispenseItemBehavior/ ()V +MD: net/minecraft/core/dispenser/DefaultDispenseItemBehavior/m_123378_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/item/ItemStack;ILnet/minecraft/core/Direction;Lnet/minecraft/core/Position;)V net/minecraft/core/dispenser/DefaultDispenseItemBehavior/spawnItem (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/item/ItemStack;ILnet/minecraft/core/Direction;Lnet/minecraft/core/Position;)V +MD: net/minecraft/core/dispenser/DefaultDispenseItemBehavior/m_123387_ (Lnet/minecraft/core/BlockSource;Lnet/minecraft/core/Direction;)V net/minecraft/core/dispenser/DefaultDispenseItemBehavior/playAnimation (Lnet/minecraft/core/BlockSource;Lnet/minecraft/core/Direction;)V +MD: net/minecraft/core/dispenser/DefaultDispenseItemBehavior/m_6115_ (Lnet/minecraft/core/BlockSource;Lnet/minecraft/world/item/ItemStack;)Lnet/minecraft/world/item/ItemStack; net/minecraft/core/dispenser/DefaultDispenseItemBehavior/dispense (Lnet/minecraft/core/BlockSource;Lnet/minecraft/world/item/ItemStack;)Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/core/dispenser/DefaultDispenseItemBehavior/m_6823_ (Lnet/minecraft/core/BlockSource;)V net/minecraft/core/dispenser/DefaultDispenseItemBehavior/playSound (Lnet/minecraft/core/BlockSource;)V +MD: net/minecraft/core/dispenser/DefaultDispenseItemBehavior/m_7498_ (Lnet/minecraft/core/BlockSource;Lnet/minecraft/world/item/ItemStack;)Lnet/minecraft/world/item/ItemStack; net/minecraft/core/dispenser/DefaultDispenseItemBehavior/execute (Lnet/minecraft/core/BlockSource;Lnet/minecraft/world/item/ItemStack;)Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/core/dispenser/DispenseItemBehavior/ ()V net/minecraft/core/dispenser/DispenseItemBehavior/ ()V +MD: net/minecraft/core/dispenser/DispenseItemBehavior/m_123395_ (Lnet/minecraft/core/BlockSource;Lnet/minecraft/world/entity/Entity;Lnet/minecraft/core/Direction;)V net/minecraft/core/dispenser/DispenseItemBehavior/setEntityPokingOutOfBlock (Lnet/minecraft/core/BlockSource;Lnet/minecraft/world/entity/Entity;Lnet/minecraft/core/Direction;)V +MD: net/minecraft/core/dispenser/DispenseItemBehavior/m_123399_ (Lnet/minecraft/core/BlockSource;Lnet/minecraft/world/item/ItemStack;)Lnet/minecraft/world/item/ItemStack; net/minecraft/core/dispenser/DispenseItemBehavior/lambda$static$0 (Lnet/minecraft/core/BlockSource;Lnet/minecraft/world/item/ItemStack;)Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/core/dispenser/DispenseItemBehavior/m_123402_ ()V net/minecraft/core/dispenser/DispenseItemBehavior/bootStrap ()V +MD: net/minecraft/core/dispenser/DispenseItemBehavior/m_6115_ (Lnet/minecraft/core/BlockSource;Lnet/minecraft/world/item/ItemStack;)Lnet/minecraft/world/item/ItemStack; net/minecraft/core/dispenser/DispenseItemBehavior/dispense (Lnet/minecraft/core/BlockSource;Lnet/minecraft/world/item/ItemStack;)Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/core/dispenser/DispenseItemBehavior$1/ ()V net/minecraft/core/dispenser/DispenseItemBehavior$1/ ()V +MD: net/minecraft/core/dispenser/DispenseItemBehavior$1/m_6895_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/Position;Lnet/minecraft/world/item/ItemStack;)Lnet/minecraft/world/entity/projectile/Projectile; net/minecraft/core/dispenser/DispenseItemBehavior$1/getProjectile (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/Position;Lnet/minecraft/world/item/ItemStack;)Lnet/minecraft/world/entity/projectile/Projectile; +MD: net/minecraft/core/dispenser/DispenseItemBehavior$10/ ()V net/minecraft/core/dispenser/DispenseItemBehavior$10/ ()V +MD: net/minecraft/core/dispenser/DispenseItemBehavior$10/m_276708_ (Lnet/minecraft/core/Direction;Lnet/minecraft/world/entity/decoration/ArmorStand;)V net/minecraft/core/dispenser/DispenseItemBehavior$10/lambda$execute$0 (Lnet/minecraft/core/Direction;Lnet/minecraft/world/entity/decoration/ArmorStand;)V +MD: net/minecraft/core/dispenser/DispenseItemBehavior$10/m_7498_ (Lnet/minecraft/core/BlockSource;Lnet/minecraft/world/item/ItemStack;)Lnet/minecraft/world/item/ItemStack; net/minecraft/core/dispenser/DispenseItemBehavior$10/execute (Lnet/minecraft/core/BlockSource;Lnet/minecraft/world/item/ItemStack;)Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/core/dispenser/DispenseItemBehavior$11/ ()V net/minecraft/core/dispenser/DispenseItemBehavior$11/ ()V +MD: net/minecraft/core/dispenser/DispenseItemBehavior$11/m_123526_ (Lnet/minecraft/world/entity/LivingEntity;)Z net/minecraft/core/dispenser/DispenseItemBehavior$11/lambda$execute$0 (Lnet/minecraft/world/entity/LivingEntity;)Z +MD: net/minecraft/core/dispenser/DispenseItemBehavior$11/m_7498_ (Lnet/minecraft/core/BlockSource;Lnet/minecraft/world/item/ItemStack;)Lnet/minecraft/world/item/ItemStack; net/minecraft/core/dispenser/DispenseItemBehavior$11/execute (Lnet/minecraft/core/BlockSource;Lnet/minecraft/world/item/ItemStack;)Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/core/dispenser/DispenseItemBehavior$12/ ()V net/minecraft/core/dispenser/DispenseItemBehavior$12/ ()V +MD: net/minecraft/core/dispenser/DispenseItemBehavior$12/m_289055_ (Lnet/minecraft/world/entity/animal/horse/AbstractHorse;)Z net/minecraft/core/dispenser/DispenseItemBehavior$12/lambda$execute$0 (Lnet/minecraft/world/entity/animal/horse/AbstractHorse;)Z +MD: net/minecraft/core/dispenser/DispenseItemBehavior$12/m_7498_ (Lnet/minecraft/core/BlockSource;Lnet/minecraft/world/item/ItemStack;)Lnet/minecraft/world/item/ItemStack; net/minecraft/core/dispenser/DispenseItemBehavior$12/execute (Lnet/minecraft/core/BlockSource;Lnet/minecraft/world/item/ItemStack;)Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/core/dispenser/DispenseItemBehavior$13/ ()V net/minecraft/core/dispenser/DispenseItemBehavior$13/ ()V +MD: net/minecraft/core/dispenser/DispenseItemBehavior$13/m_289056_ (Lnet/minecraft/world/entity/animal/horse/AbstractChestedHorse;)Z net/minecraft/core/dispenser/DispenseItemBehavior$13/lambda$execute$0 (Lnet/minecraft/world/entity/animal/horse/AbstractChestedHorse;)Z +MD: net/minecraft/core/dispenser/DispenseItemBehavior$13/m_7498_ (Lnet/minecraft/core/BlockSource;Lnet/minecraft/world/item/ItemStack;)Lnet/minecraft/world/item/ItemStack; net/minecraft/core/dispenser/DispenseItemBehavior$13/execute (Lnet/minecraft/core/BlockSource;Lnet/minecraft/world/item/ItemStack;)Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/core/dispenser/DispenseItemBehavior$14/ ()V net/minecraft/core/dispenser/DispenseItemBehavior$14/ ()V +MD: net/minecraft/core/dispenser/DispenseItemBehavior$14/m_6823_ (Lnet/minecraft/core/BlockSource;)V net/minecraft/core/dispenser/DispenseItemBehavior$14/playSound (Lnet/minecraft/core/BlockSource;)V +MD: net/minecraft/core/dispenser/DispenseItemBehavior$14/m_7498_ (Lnet/minecraft/core/BlockSource;Lnet/minecraft/world/item/ItemStack;)Lnet/minecraft/world/item/ItemStack; net/minecraft/core/dispenser/DispenseItemBehavior$14/execute (Lnet/minecraft/core/BlockSource;Lnet/minecraft/world/item/ItemStack;)Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/core/dispenser/DispenseItemBehavior$15/ ()V net/minecraft/core/dispenser/DispenseItemBehavior$15/ ()V +MD: net/minecraft/core/dispenser/DispenseItemBehavior$15/m_123550_ (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/entity/projectile/SmallFireball;)V net/minecraft/core/dispenser/DispenseItemBehavior$15/lambda$execute$0 (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/entity/projectile/SmallFireball;)V +MD: net/minecraft/core/dispenser/DispenseItemBehavior$15/m_6823_ (Lnet/minecraft/core/BlockSource;)V net/minecraft/core/dispenser/DispenseItemBehavior$15/playSound (Lnet/minecraft/core/BlockSource;)V +MD: net/minecraft/core/dispenser/DispenseItemBehavior$15/m_7498_ (Lnet/minecraft/core/BlockSource;Lnet/minecraft/world/item/ItemStack;)Lnet/minecraft/world/item/ItemStack; net/minecraft/core/dispenser/DispenseItemBehavior$15/execute (Lnet/minecraft/core/BlockSource;Lnet/minecraft/world/item/ItemStack;)Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/core/dispenser/DispenseItemBehavior$16/ ()V net/minecraft/core/dispenser/DispenseItemBehavior$16/ ()V +MD: net/minecraft/core/dispenser/DispenseItemBehavior$16/m_7498_ (Lnet/minecraft/core/BlockSource;Lnet/minecraft/world/item/ItemStack;)Lnet/minecraft/world/item/ItemStack; net/minecraft/core/dispenser/DispenseItemBehavior$16/execute (Lnet/minecraft/core/BlockSource;Lnet/minecraft/world/item/ItemStack;)Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/core/dispenser/DispenseItemBehavior$17/ ()V net/minecraft/core/dispenser/DispenseItemBehavior$17/ ()V +MD: net/minecraft/core/dispenser/DispenseItemBehavior$17/m_7498_ (Lnet/minecraft/core/BlockSource;Lnet/minecraft/world/item/ItemStack;)Lnet/minecraft/world/item/ItemStack; net/minecraft/core/dispenser/DispenseItemBehavior$17/execute (Lnet/minecraft/core/BlockSource;Lnet/minecraft/world/item/ItemStack;)Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/core/dispenser/DispenseItemBehavior$18/ ()V net/minecraft/core/dispenser/DispenseItemBehavior$18/ ()V +MD: net/minecraft/core/dispenser/DispenseItemBehavior$18/m_7498_ (Lnet/minecraft/core/BlockSource;Lnet/minecraft/world/item/ItemStack;)Lnet/minecraft/world/item/ItemStack; net/minecraft/core/dispenser/DispenseItemBehavior$18/execute (Lnet/minecraft/core/BlockSource;Lnet/minecraft/world/item/ItemStack;)Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/core/dispenser/DispenseItemBehavior$19/ ()V net/minecraft/core/dispenser/DispenseItemBehavior$19/ ()V +MD: net/minecraft/core/dispenser/DispenseItemBehavior$19/m_7498_ (Lnet/minecraft/core/BlockSource;Lnet/minecraft/world/item/ItemStack;)Lnet/minecraft/world/item/ItemStack; net/minecraft/core/dispenser/DispenseItemBehavior$19/execute (Lnet/minecraft/core/BlockSource;Lnet/minecraft/world/item/ItemStack;)Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/core/dispenser/DispenseItemBehavior$2/ ()V net/minecraft/core/dispenser/DispenseItemBehavior$2/ ()V +MD: net/minecraft/core/dispenser/DispenseItemBehavior$2/m_6895_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/Position;Lnet/minecraft/world/item/ItemStack;)Lnet/minecraft/world/entity/projectile/Projectile; net/minecraft/core/dispenser/DispenseItemBehavior$2/getProjectile (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/Position;Lnet/minecraft/world/item/ItemStack;)Lnet/minecraft/world/entity/projectile/Projectile; +MD: net/minecraft/core/dispenser/DispenseItemBehavior$20/ ()V net/minecraft/core/dispenser/DispenseItemBehavior$20/ ()V +MD: net/minecraft/core/dispenser/DispenseItemBehavior$20/m_7498_ (Lnet/minecraft/core/BlockSource;Lnet/minecraft/world/item/ItemStack;)Lnet/minecraft/world/item/ItemStack; net/minecraft/core/dispenser/DispenseItemBehavior$20/execute (Lnet/minecraft/core/BlockSource;Lnet/minecraft/world/item/ItemStack;)Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/core/dispenser/DispenseItemBehavior$21/ ()V net/minecraft/core/dispenser/DispenseItemBehavior$21/ ()V +MD: net/minecraft/core/dispenser/DispenseItemBehavior$21/m_7498_ (Lnet/minecraft/core/BlockSource;Lnet/minecraft/world/item/ItemStack;)Lnet/minecraft/world/item/ItemStack; net/minecraft/core/dispenser/DispenseItemBehavior$21/execute (Lnet/minecraft/core/BlockSource;Lnet/minecraft/world/item/ItemStack;)Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/core/dispenser/DispenseItemBehavior$22/ ()V net/minecraft/core/dispenser/DispenseItemBehavior$22/ ()V +MD: net/minecraft/core/dispenser/DispenseItemBehavior$22/m_7498_ (Lnet/minecraft/core/BlockSource;Lnet/minecraft/world/item/ItemStack;)Lnet/minecraft/world/item/ItemStack; net/minecraft/core/dispenser/DispenseItemBehavior$22/execute (Lnet/minecraft/core/BlockSource;Lnet/minecraft/world/item/ItemStack;)Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/core/dispenser/DispenseItemBehavior$23/ ()V net/minecraft/core/dispenser/DispenseItemBehavior$23/ ()V +MD: net/minecraft/core/dispenser/DispenseItemBehavior$23/m_7498_ (Lnet/minecraft/core/BlockSource;Lnet/minecraft/world/item/ItemStack;)Lnet/minecraft/world/item/ItemStack; net/minecraft/core/dispenser/DispenseItemBehavior$23/execute (Lnet/minecraft/core/BlockSource;Lnet/minecraft/world/item/ItemStack;)Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/core/dispenser/DispenseItemBehavior$24/ ()V net/minecraft/core/dispenser/DispenseItemBehavior$24/ ()V +MD: net/minecraft/core/dispenser/DispenseItemBehavior$24/m_123441_ (Lnet/minecraft/world/level/block/state/BlockBehaviour$BlockStateBase;)Z net/minecraft/core/dispenser/DispenseItemBehavior$24/lambda$execute$0 (Lnet/minecraft/world/level/block/state/BlockBehaviour$BlockStateBase;)Z +MD: net/minecraft/core/dispenser/DispenseItemBehavior$24/m_123446_ (Lnet/minecraft/core/BlockSource;Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/item/ItemStack;)Lnet/minecraft/world/item/ItemStack; net/minecraft/core/dispenser/DispenseItemBehavior$24/takeLiquid (Lnet/minecraft/core/BlockSource;Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/item/ItemStack;)Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/core/dispenser/DispenseItemBehavior$24/m_7498_ (Lnet/minecraft/core/BlockSource;Lnet/minecraft/world/item/ItemStack;)Lnet/minecraft/world/item/ItemStack; net/minecraft/core/dispenser/DispenseItemBehavior$24/execute (Lnet/minecraft/core/BlockSource;Lnet/minecraft/world/item/ItemStack;)Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/core/dispenser/DispenseItemBehavior$25/ ()V net/minecraft/core/dispenser/DispenseItemBehavior$25/ ()V +MD: net/minecraft/core/dispenser/DispenseItemBehavior$25/m_7498_ (Lnet/minecraft/core/BlockSource;Lnet/minecraft/world/item/ItemStack;)Lnet/minecraft/world/item/ItemStack; net/minecraft/core/dispenser/DispenseItemBehavior$25/execute (Lnet/minecraft/core/BlockSource;Lnet/minecraft/world/item/ItemStack;)Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/core/dispenser/DispenseItemBehavior$26/ ()V net/minecraft/core/dispenser/DispenseItemBehavior$26/ ()V +MD: net/minecraft/core/dispenser/DispenseItemBehavior$26/m_7498_ (Lnet/minecraft/core/BlockSource;Lnet/minecraft/world/item/ItemStack;)Lnet/minecraft/world/item/ItemStack; net/minecraft/core/dispenser/DispenseItemBehavior$26/execute (Lnet/minecraft/core/BlockSource;Lnet/minecraft/world/item/ItemStack;)Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/core/dispenser/DispenseItemBehavior$27/ ()V net/minecraft/core/dispenser/DispenseItemBehavior$27/ ()V +MD: net/minecraft/core/dispenser/DispenseItemBehavior$27/m_7498_ (Lnet/minecraft/core/BlockSource;Lnet/minecraft/world/item/ItemStack;)Lnet/minecraft/world/item/ItemStack; net/minecraft/core/dispenser/DispenseItemBehavior$27/execute (Lnet/minecraft/core/BlockSource;Lnet/minecraft/world/item/ItemStack;)Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/core/dispenser/DispenseItemBehavior$3/ ()V net/minecraft/core/dispenser/DispenseItemBehavior$3/ ()V +MD: net/minecraft/core/dispenser/DispenseItemBehavior$3/m_6895_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/Position;Lnet/minecraft/world/item/ItemStack;)Lnet/minecraft/world/entity/projectile/Projectile; net/minecraft/core/dispenser/DispenseItemBehavior$3/getProjectile (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/Position;Lnet/minecraft/world/item/ItemStack;)Lnet/minecraft/world/entity/projectile/Projectile; +MD: net/minecraft/core/dispenser/DispenseItemBehavior$4/ ()V net/minecraft/core/dispenser/DispenseItemBehavior$4/ ()V +MD: net/minecraft/core/dispenser/DispenseItemBehavior$4/m_123464_ (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/entity/projectile/ThrownEgg;)V net/minecraft/core/dispenser/DispenseItemBehavior$4/lambda$getProjectile$0 (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/entity/projectile/ThrownEgg;)V +MD: net/minecraft/core/dispenser/DispenseItemBehavior$4/m_6895_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/Position;Lnet/minecraft/world/item/ItemStack;)Lnet/minecraft/world/entity/projectile/Projectile; net/minecraft/core/dispenser/DispenseItemBehavior$4/getProjectile (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/Position;Lnet/minecraft/world/item/ItemStack;)Lnet/minecraft/world/entity/projectile/Projectile; +MD: net/minecraft/core/dispenser/DispenseItemBehavior$5/ ()V net/minecraft/core/dispenser/DispenseItemBehavior$5/ ()V +MD: net/minecraft/core/dispenser/DispenseItemBehavior$5/m_123472_ (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/entity/projectile/Snowball;)V net/minecraft/core/dispenser/DispenseItemBehavior$5/lambda$getProjectile$0 (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/entity/projectile/Snowball;)V +MD: net/minecraft/core/dispenser/DispenseItemBehavior$5/m_6895_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/Position;Lnet/minecraft/world/item/ItemStack;)Lnet/minecraft/world/entity/projectile/Projectile; net/minecraft/core/dispenser/DispenseItemBehavior$5/getProjectile (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/Position;Lnet/minecraft/world/item/ItemStack;)Lnet/minecraft/world/entity/projectile/Projectile; +MD: net/minecraft/core/dispenser/DispenseItemBehavior$6/ ()V net/minecraft/core/dispenser/DispenseItemBehavior$6/ ()V +MD: net/minecraft/core/dispenser/DispenseItemBehavior$6/m_123481_ (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/entity/projectile/ThrownExperienceBottle;)V net/minecraft/core/dispenser/DispenseItemBehavior$6/lambda$getProjectile$0 (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/entity/projectile/ThrownExperienceBottle;)V +MD: net/minecraft/core/dispenser/DispenseItemBehavior$6/m_6895_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/Position;Lnet/minecraft/world/item/ItemStack;)Lnet/minecraft/world/entity/projectile/Projectile; net/minecraft/core/dispenser/DispenseItemBehavior$6/getProjectile (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/Position;Lnet/minecraft/world/item/ItemStack;)Lnet/minecraft/world/entity/projectile/Projectile; +MD: net/minecraft/core/dispenser/DispenseItemBehavior$6/m_7101_ ()F net/minecraft/core/dispenser/DispenseItemBehavior$6/getUncertainty ()F +MD: net/minecraft/core/dispenser/DispenseItemBehavior$6/m_7104_ ()F net/minecraft/core/dispenser/DispenseItemBehavior$6/getPower ()F +MD: net/minecraft/core/dispenser/DispenseItemBehavior$7/ ()V net/minecraft/core/dispenser/DispenseItemBehavior$7/ ()V +MD: net/minecraft/core/dispenser/DispenseItemBehavior$7/m_6115_ (Lnet/minecraft/core/BlockSource;Lnet/minecraft/world/item/ItemStack;)Lnet/minecraft/world/item/ItemStack; net/minecraft/core/dispenser/DispenseItemBehavior$7/dispense (Lnet/minecraft/core/BlockSource;Lnet/minecraft/world/item/ItemStack;)Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/core/dispenser/DispenseItemBehavior$7$1/ (Lnet/minecraft/core/dispenser/DispenseItemBehavior$7;)V net/minecraft/core/dispenser/DispenseItemBehavior$7$1/ (Lnet/minecraft/core/dispenser/DispenseItemBehavior$7;)V +MD: net/minecraft/core/dispenser/DispenseItemBehavior$7$1/m_123497_ (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/entity/projectile/ThrownPotion;)V net/minecraft/core/dispenser/DispenseItemBehavior$7$1/lambda$getProjectile$0 (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/entity/projectile/ThrownPotion;)V +MD: net/minecraft/core/dispenser/DispenseItemBehavior$7$1/m_6895_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/Position;Lnet/minecraft/world/item/ItemStack;)Lnet/minecraft/world/entity/projectile/Projectile; net/minecraft/core/dispenser/DispenseItemBehavior$7$1/getProjectile (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/Position;Lnet/minecraft/world/item/ItemStack;)Lnet/minecraft/world/entity/projectile/Projectile; +MD: net/minecraft/core/dispenser/DispenseItemBehavior$7$1/m_7101_ ()F net/minecraft/core/dispenser/DispenseItemBehavior$7$1/getUncertainty ()F +MD: net/minecraft/core/dispenser/DispenseItemBehavior$7$1/m_7104_ ()F net/minecraft/core/dispenser/DispenseItemBehavior$7$1/getPower ()F +MD: net/minecraft/core/dispenser/DispenseItemBehavior$8/ ()V net/minecraft/core/dispenser/DispenseItemBehavior$8/ ()V +MD: net/minecraft/core/dispenser/DispenseItemBehavior$8/m_6115_ (Lnet/minecraft/core/BlockSource;Lnet/minecraft/world/item/ItemStack;)Lnet/minecraft/world/item/ItemStack; net/minecraft/core/dispenser/DispenseItemBehavior$8/dispense (Lnet/minecraft/core/BlockSource;Lnet/minecraft/world/item/ItemStack;)Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/core/dispenser/DispenseItemBehavior$8$1/ (Lnet/minecraft/core/dispenser/DispenseItemBehavior$8;)V net/minecraft/core/dispenser/DispenseItemBehavior$8$1/ (Lnet/minecraft/core/dispenser/DispenseItemBehavior$8;)V +MD: net/minecraft/core/dispenser/DispenseItemBehavior$8$1/m_123513_ (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/entity/projectile/ThrownPotion;)V net/minecraft/core/dispenser/DispenseItemBehavior$8$1/lambda$getProjectile$0 (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/entity/projectile/ThrownPotion;)V +MD: net/minecraft/core/dispenser/DispenseItemBehavior$8$1/m_6895_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/Position;Lnet/minecraft/world/item/ItemStack;)Lnet/minecraft/world/entity/projectile/Projectile; net/minecraft/core/dispenser/DispenseItemBehavior$8$1/getProjectile (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/Position;Lnet/minecraft/world/item/ItemStack;)Lnet/minecraft/world/entity/projectile/Projectile; +MD: net/minecraft/core/dispenser/DispenseItemBehavior$8$1/m_7101_ ()F net/minecraft/core/dispenser/DispenseItemBehavior$8$1/getUncertainty ()F +MD: net/minecraft/core/dispenser/DispenseItemBehavior$8$1/m_7104_ ()F net/minecraft/core/dispenser/DispenseItemBehavior$8$1/getPower ()F +MD: net/minecraft/core/dispenser/DispenseItemBehavior$9/ ()V net/minecraft/core/dispenser/DispenseItemBehavior$9/ ()V +MD: net/minecraft/core/dispenser/DispenseItemBehavior$9/m_7498_ (Lnet/minecraft/core/BlockSource;Lnet/minecraft/world/item/ItemStack;)Lnet/minecraft/world/item/ItemStack; net/minecraft/core/dispenser/DispenseItemBehavior$9/execute (Lnet/minecraft/core/BlockSource;Lnet/minecraft/world/item/ItemStack;)Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/core/dispenser/OptionalDispenseItemBehavior/ ()V net/minecraft/core/dispenser/OptionalDispenseItemBehavior/ ()V +MD: net/minecraft/core/dispenser/OptionalDispenseItemBehavior/m_123570_ ()Z net/minecraft/core/dispenser/OptionalDispenseItemBehavior/isSuccess ()Z +MD: net/minecraft/core/dispenser/OptionalDispenseItemBehavior/m_123573_ (Z)V net/minecraft/core/dispenser/OptionalDispenseItemBehavior/setSuccess (Z)V +MD: net/minecraft/core/dispenser/OptionalDispenseItemBehavior/m_6823_ (Lnet/minecraft/core/BlockSource;)V net/minecraft/core/dispenser/OptionalDispenseItemBehavior/playSound (Lnet/minecraft/core/BlockSource;)V +MD: net/minecraft/core/dispenser/ShearsDispenseItemBehavior/ ()V net/minecraft/core/dispenser/ShearsDispenseItemBehavior/ ()V +MD: net/minecraft/core/dispenser/ShearsDispenseItemBehavior/m_123576_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;)Z net/minecraft/core/dispenser/ShearsDispenseItemBehavior/tryShearBeehive (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/core/dispenser/ShearsDispenseItemBehavior/m_123582_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;)Z net/minecraft/core/dispenser/ShearsDispenseItemBehavior/tryShearLivingEntity (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/core/dispenser/ShearsDispenseItemBehavior/m_202453_ (Lnet/minecraft/world/level/block/state/BlockBehaviour$BlockStateBase;)Z net/minecraft/core/dispenser/ShearsDispenseItemBehavior/lambda$tryShearBeehive$0 (Lnet/minecraft/world/level/block/state/BlockBehaviour$BlockStateBase;)Z +MD: net/minecraft/core/dispenser/ShearsDispenseItemBehavior/m_7498_ (Lnet/minecraft/core/BlockSource;Lnet/minecraft/world/item/ItemStack;)Lnet/minecraft/world/item/ItemStack; net/minecraft/core/dispenser/ShearsDispenseItemBehavior/execute (Lnet/minecraft/core/BlockSource;Lnet/minecraft/world/item/ItemStack;)Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/core/dispenser/ShulkerBoxDispenseBehavior/ ()V net/minecraft/core/dispenser/ShulkerBoxDispenseBehavior/ ()V +MD: net/minecraft/core/dispenser/ShulkerBoxDispenseBehavior/ ()V net/minecraft/core/dispenser/ShulkerBoxDispenseBehavior/ ()V +MD: net/minecraft/core/dispenser/ShulkerBoxDispenseBehavior/m_7498_ (Lnet/minecraft/core/BlockSource;Lnet/minecraft/world/item/ItemStack;)Lnet/minecraft/world/item/ItemStack; net/minecraft/core/dispenser/ShulkerBoxDispenseBehavior/execute (Lnet/minecraft/core/BlockSource;Lnet/minecraft/world/item/ItemStack;)Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/core/particles/BlockParticleOption/ ()V net/minecraft/core/particles/BlockParticleOption/ ()V +MD: net/minecraft/core/particles/BlockParticleOption/ (Lnet/minecraft/core/particles/ParticleType;Lnet/minecraft/world/level/block/state/BlockState;)V net/minecraft/core/particles/BlockParticleOption/ (Lnet/minecraft/core/particles/ParticleType;Lnet/minecraft/world/level/block/state/BlockState;)V +MD: net/minecraft/core/particles/BlockParticleOption/m_123632_ (Lnet/minecraft/core/particles/BlockParticleOption;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/core/particles/BlockParticleOption/lambda$codec$1 (Lnet/minecraft/core/particles/BlockParticleOption;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/core/particles/BlockParticleOption/m_123634_ (Lnet/minecraft/core/particles/ParticleType;)Lcom/mojang/serialization/Codec; net/minecraft/core/particles/BlockParticleOption/codec (Lnet/minecraft/core/particles/ParticleType;)Lcom/mojang/serialization/Codec; +MD: net/minecraft/core/particles/BlockParticleOption/m_123636_ (Lnet/minecraft/core/particles/ParticleType;Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/core/particles/BlockParticleOption; net/minecraft/core/particles/BlockParticleOption/lambda$codec$0 (Lnet/minecraft/core/particles/ParticleType;Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/core/particles/BlockParticleOption; +MD: net/minecraft/core/particles/BlockParticleOption/m_123642_ ()Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/core/particles/BlockParticleOption/getState ()Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/core/particles/BlockParticleOption/m_5942_ ()Ljava/lang/String; net/minecraft/core/particles/BlockParticleOption/writeToString ()Ljava/lang/String; +MD: net/minecraft/core/particles/BlockParticleOption/m_6012_ ()Lnet/minecraft/core/particles/ParticleType; net/minecraft/core/particles/BlockParticleOption/getType ()Lnet/minecraft/core/particles/ParticleType; +MD: net/minecraft/core/particles/BlockParticleOption/m_7711_ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/core/particles/BlockParticleOption/writeToNetwork (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/core/particles/BlockParticleOption$1/ ()V net/minecraft/core/particles/BlockParticleOption$1/ ()V +MD: net/minecraft/core/particles/BlockParticleOption$1/m_5739_ (Lnet/minecraft/core/particles/ParticleType;Lcom/mojang/brigadier/StringReader;)Lnet/minecraft/core/particles/ParticleOptions; net/minecraft/core/particles/BlockParticleOption$1/fromCommand (Lnet/minecraft/core/particles/ParticleType;Lcom/mojang/brigadier/StringReader;)Lnet/minecraft/core/particles/ParticleOptions; +MD: net/minecraft/core/particles/BlockParticleOption$1/m_5739_ (Lnet/minecraft/core/particles/ParticleType;Lcom/mojang/brigadier/StringReader;)Lnet/minecraft/core/particles/BlockParticleOption; net/minecraft/core/particles/BlockParticleOption$1/fromCommand (Lnet/minecraft/core/particles/ParticleType;Lcom/mojang/brigadier/StringReader;)Lnet/minecraft/core/particles/BlockParticleOption; +MD: net/minecraft/core/particles/BlockParticleOption$1/m_6507_ (Lnet/minecraft/core/particles/ParticleType;Lnet/minecraft/network/FriendlyByteBuf;)Lnet/minecraft/core/particles/BlockParticleOption; net/minecraft/core/particles/BlockParticleOption$1/fromNetwork (Lnet/minecraft/core/particles/ParticleType;Lnet/minecraft/network/FriendlyByteBuf;)Lnet/minecraft/core/particles/BlockParticleOption; +MD: net/minecraft/core/particles/BlockParticleOption$1/m_6507_ (Lnet/minecraft/core/particles/ParticleType;Lnet/minecraft/network/FriendlyByteBuf;)Lnet/minecraft/core/particles/ParticleOptions; net/minecraft/core/particles/BlockParticleOption$1/fromNetwork (Lnet/minecraft/core/particles/ParticleType;Lnet/minecraft/network/FriendlyByteBuf;)Lnet/minecraft/core/particles/ParticleOptions; +MD: net/minecraft/core/particles/DustColorTransitionOptions/ ()V net/minecraft/core/particles/DustColorTransitionOptions/ ()V +MD: net/minecraft/core/particles/DustColorTransitionOptions/ (Lorg/joml/Vector3f;Lorg/joml/Vector3f;F)V net/minecraft/core/particles/DustColorTransitionOptions/ (Lorg/joml/Vector3f;Lorg/joml/Vector3f;F)V +MD: net/minecraft/core/particles/DustColorTransitionOptions/m_175764_ (Lnet/minecraft/core/particles/DustColorTransitionOptions;)Ljava/lang/Float; net/minecraft/core/particles/DustColorTransitionOptions/lambda$static$2 (Lnet/minecraft/core/particles/DustColorTransitionOptions;)Ljava/lang/Float; +MD: net/minecraft/core/particles/DustColorTransitionOptions/m_252602_ (Lnet/minecraft/core/particles/DustColorTransitionOptions;)Lorg/joml/Vector3f; net/minecraft/core/particles/DustColorTransitionOptions/lambda$static$1 (Lnet/minecraft/core/particles/DustColorTransitionOptions;)Lorg/joml/Vector3f; +MD: net/minecraft/core/particles/DustColorTransitionOptions/m_252603_ (Lnet/minecraft/core/particles/DustColorTransitionOptions;)Lorg/joml/Vector3f; net/minecraft/core/particles/DustColorTransitionOptions/lambda$static$0 (Lnet/minecraft/core/particles/DustColorTransitionOptions;)Lorg/joml/Vector3f; +MD: net/minecraft/core/particles/DustColorTransitionOptions/m_252604_ (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/core/particles/DustColorTransitionOptions/lambda$static$3 (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/core/particles/DustColorTransitionOptions/m_252988_ ()Lorg/joml/Vector3f; net/minecraft/core/particles/DustColorTransitionOptions/getFromColor ()Lorg/joml/Vector3f; +MD: net/minecraft/core/particles/DustColorTransitionOptions/m_253173_ ()Lorg/joml/Vector3f; net/minecraft/core/particles/DustColorTransitionOptions/getToColor ()Lorg/joml/Vector3f; +MD: net/minecraft/core/particles/DustColorTransitionOptions/m_5942_ ()Ljava/lang/String; net/minecraft/core/particles/DustColorTransitionOptions/writeToString ()Ljava/lang/String; +MD: net/minecraft/core/particles/DustColorTransitionOptions/m_6012_ ()Lnet/minecraft/core/particles/ParticleType; net/minecraft/core/particles/DustColorTransitionOptions/getType ()Lnet/minecraft/core/particles/ParticleType; +MD: net/minecraft/core/particles/DustColorTransitionOptions/m_7711_ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/core/particles/DustColorTransitionOptions/writeToNetwork (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/core/particles/DustColorTransitionOptions$1/ ()V net/minecraft/core/particles/DustColorTransitionOptions$1/ ()V +MD: net/minecraft/core/particles/DustColorTransitionOptions$1/m_5739_ (Lnet/minecraft/core/particles/ParticleType;Lcom/mojang/brigadier/StringReader;)Lnet/minecraft/core/particles/ParticleOptions; net/minecraft/core/particles/DustColorTransitionOptions$1/fromCommand (Lnet/minecraft/core/particles/ParticleType;Lcom/mojang/brigadier/StringReader;)Lnet/minecraft/core/particles/ParticleOptions; +MD: net/minecraft/core/particles/DustColorTransitionOptions$1/m_5739_ (Lnet/minecraft/core/particles/ParticleType;Lcom/mojang/brigadier/StringReader;)Lnet/minecraft/core/particles/DustColorTransitionOptions; net/minecraft/core/particles/DustColorTransitionOptions$1/fromCommand (Lnet/minecraft/core/particles/ParticleType;Lcom/mojang/brigadier/StringReader;)Lnet/minecraft/core/particles/DustColorTransitionOptions; +MD: net/minecraft/core/particles/DustColorTransitionOptions$1/m_6507_ (Lnet/minecraft/core/particles/ParticleType;Lnet/minecraft/network/FriendlyByteBuf;)Lnet/minecraft/core/particles/DustColorTransitionOptions; net/minecraft/core/particles/DustColorTransitionOptions$1/fromNetwork (Lnet/minecraft/core/particles/ParticleType;Lnet/minecraft/network/FriendlyByteBuf;)Lnet/minecraft/core/particles/DustColorTransitionOptions; +MD: net/minecraft/core/particles/DustColorTransitionOptions$1/m_6507_ (Lnet/minecraft/core/particles/ParticleType;Lnet/minecraft/network/FriendlyByteBuf;)Lnet/minecraft/core/particles/ParticleOptions; net/minecraft/core/particles/DustColorTransitionOptions$1/fromNetwork (Lnet/minecraft/core/particles/ParticleType;Lnet/minecraft/network/FriendlyByteBuf;)Lnet/minecraft/core/particles/ParticleOptions; +MD: net/minecraft/core/particles/DustParticleOptions/ ()V net/minecraft/core/particles/DustParticleOptions/ ()V +MD: net/minecraft/core/particles/DustParticleOptions/ (Lorg/joml/Vector3f;F)V net/minecraft/core/particles/DustParticleOptions/ (Lorg/joml/Vector3f;F)V +MD: net/minecraft/core/particles/DustParticleOptions/m_175794_ (Lnet/minecraft/core/particles/DustParticleOptions;)Ljava/lang/Float; net/minecraft/core/particles/DustParticleOptions/lambda$static$1 (Lnet/minecraft/core/particles/DustParticleOptions;)Ljava/lang/Float; +MD: net/minecraft/core/particles/DustParticleOptions/m_252605_ (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/core/particles/DustParticleOptions/lambda$static$2 (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/core/particles/DustParticleOptions/m_252606_ (Lnet/minecraft/core/particles/DustParticleOptions;)Lorg/joml/Vector3f; net/minecraft/core/particles/DustParticleOptions/lambda$static$0 (Lnet/minecraft/core/particles/DustParticleOptions;)Lorg/joml/Vector3f; +MD: net/minecraft/core/particles/DustParticleOptions/m_6012_ ()Lnet/minecraft/core/particles/ParticleType; net/minecraft/core/particles/DustParticleOptions/getType ()Lnet/minecraft/core/particles/ParticleType; +MD: net/minecraft/core/particles/DustParticleOptions$1/ ()V net/minecraft/core/particles/DustParticleOptions$1/ ()V +MD: net/minecraft/core/particles/DustParticleOptions$1/m_5739_ (Lnet/minecraft/core/particles/ParticleType;Lcom/mojang/brigadier/StringReader;)Lnet/minecraft/core/particles/DustParticleOptions; net/minecraft/core/particles/DustParticleOptions$1/fromCommand (Lnet/minecraft/core/particles/ParticleType;Lcom/mojang/brigadier/StringReader;)Lnet/minecraft/core/particles/DustParticleOptions; +MD: net/minecraft/core/particles/DustParticleOptions$1/m_5739_ (Lnet/minecraft/core/particles/ParticleType;Lcom/mojang/brigadier/StringReader;)Lnet/minecraft/core/particles/ParticleOptions; net/minecraft/core/particles/DustParticleOptions$1/fromCommand (Lnet/minecraft/core/particles/ParticleType;Lcom/mojang/brigadier/StringReader;)Lnet/minecraft/core/particles/ParticleOptions; +MD: net/minecraft/core/particles/DustParticleOptions$1/m_6507_ (Lnet/minecraft/core/particles/ParticleType;Lnet/minecraft/network/FriendlyByteBuf;)Lnet/minecraft/core/particles/ParticleOptions; net/minecraft/core/particles/DustParticleOptions$1/fromNetwork (Lnet/minecraft/core/particles/ParticleType;Lnet/minecraft/network/FriendlyByteBuf;)Lnet/minecraft/core/particles/ParticleOptions; +MD: net/minecraft/core/particles/DustParticleOptions$1/m_6507_ (Lnet/minecraft/core/particles/ParticleType;Lnet/minecraft/network/FriendlyByteBuf;)Lnet/minecraft/core/particles/DustParticleOptions; net/minecraft/core/particles/DustParticleOptions$1/fromNetwork (Lnet/minecraft/core/particles/ParticleType;Lnet/minecraft/network/FriendlyByteBuf;)Lnet/minecraft/core/particles/DustParticleOptions; +MD: net/minecraft/core/particles/DustParticleOptionsBase/ (Lorg/joml/Vector3f;F)V net/minecraft/core/particles/DustParticleOptionsBase/ (Lorg/joml/Vector3f;F)V +MD: net/minecraft/core/particles/DustParticleOptionsBase/m_175813_ ()F net/minecraft/core/particles/DustParticleOptionsBase/getScale ()F +MD: net/minecraft/core/particles/DustParticleOptionsBase/m_252837_ ()Lorg/joml/Vector3f; net/minecraft/core/particles/DustParticleOptionsBase/getColor ()Lorg/joml/Vector3f; +MD: net/minecraft/core/particles/DustParticleOptionsBase/m_252853_ (Lcom/mojang/brigadier/StringReader;)Lorg/joml/Vector3f; net/minecraft/core/particles/DustParticleOptionsBase/readVector3f (Lcom/mojang/brigadier/StringReader;)Lorg/joml/Vector3f; +MD: net/minecraft/core/particles/DustParticleOptionsBase/m_253064_ (Lnet/minecraft/network/FriendlyByteBuf;)Lorg/joml/Vector3f; net/minecraft/core/particles/DustParticleOptionsBase/readVector3f (Lnet/minecraft/network/FriendlyByteBuf;)Lorg/joml/Vector3f; +MD: net/minecraft/core/particles/DustParticleOptionsBase/m_5942_ ()Ljava/lang/String; net/minecraft/core/particles/DustParticleOptionsBase/writeToString ()Ljava/lang/String; +MD: net/minecraft/core/particles/DustParticleOptionsBase/m_7711_ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/core/particles/DustParticleOptionsBase/writeToNetwork (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/core/particles/ItemParticleOption/ ()V net/minecraft/core/particles/ItemParticleOption/ ()V +MD: net/minecraft/core/particles/ItemParticleOption/ (Lnet/minecraft/core/particles/ParticleType;Lnet/minecraft/world/item/ItemStack;)V net/minecraft/core/particles/ItemParticleOption/ (Lnet/minecraft/core/particles/ParticleType;Lnet/minecraft/world/item/ItemStack;)V +MD: net/minecraft/core/particles/ItemParticleOption/m_123708_ (Lnet/minecraft/core/particles/ItemParticleOption;)Lnet/minecraft/world/item/ItemStack; net/minecraft/core/particles/ItemParticleOption/lambda$codec$1 (Lnet/minecraft/core/particles/ItemParticleOption;)Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/core/particles/ItemParticleOption/m_123710_ (Lnet/minecraft/core/particles/ParticleType;)Lcom/mojang/serialization/Codec; net/minecraft/core/particles/ItemParticleOption/codec (Lnet/minecraft/core/particles/ParticleType;)Lcom/mojang/serialization/Codec; +MD: net/minecraft/core/particles/ItemParticleOption/m_123712_ (Lnet/minecraft/core/particles/ParticleType;Lnet/minecraft/world/item/ItemStack;)Lnet/minecraft/core/particles/ItemParticleOption; net/minecraft/core/particles/ItemParticleOption/lambda$codec$0 (Lnet/minecraft/core/particles/ParticleType;Lnet/minecraft/world/item/ItemStack;)Lnet/minecraft/core/particles/ItemParticleOption; +MD: net/minecraft/core/particles/ItemParticleOption/m_123718_ ()Lnet/minecraft/world/item/ItemStack; net/minecraft/core/particles/ItemParticleOption/getItem ()Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/core/particles/ItemParticleOption/m_5942_ ()Ljava/lang/String; net/minecraft/core/particles/ItemParticleOption/writeToString ()Ljava/lang/String; +MD: net/minecraft/core/particles/ItemParticleOption/m_6012_ ()Lnet/minecraft/core/particles/ParticleType; net/minecraft/core/particles/ItemParticleOption/getType ()Lnet/minecraft/core/particles/ParticleType; +MD: net/minecraft/core/particles/ItemParticleOption/m_7711_ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/core/particles/ItemParticleOption/writeToNetwork (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/core/particles/ItemParticleOption$1/ ()V net/minecraft/core/particles/ItemParticleOption$1/ ()V +MD: net/minecraft/core/particles/ItemParticleOption$1/m_5739_ (Lnet/minecraft/core/particles/ParticleType;Lcom/mojang/brigadier/StringReader;)Lnet/minecraft/core/particles/ItemParticleOption; net/minecraft/core/particles/ItemParticleOption$1/fromCommand (Lnet/minecraft/core/particles/ParticleType;Lcom/mojang/brigadier/StringReader;)Lnet/minecraft/core/particles/ItemParticleOption; +MD: net/minecraft/core/particles/ItemParticleOption$1/m_5739_ (Lnet/minecraft/core/particles/ParticleType;Lcom/mojang/brigadier/StringReader;)Lnet/minecraft/core/particles/ParticleOptions; net/minecraft/core/particles/ItemParticleOption$1/fromCommand (Lnet/minecraft/core/particles/ParticleType;Lcom/mojang/brigadier/StringReader;)Lnet/minecraft/core/particles/ParticleOptions; +MD: net/minecraft/core/particles/ItemParticleOption$1/m_6507_ (Lnet/minecraft/core/particles/ParticleType;Lnet/minecraft/network/FriendlyByteBuf;)Lnet/minecraft/core/particles/ItemParticleOption; net/minecraft/core/particles/ItemParticleOption$1/fromNetwork (Lnet/minecraft/core/particles/ParticleType;Lnet/minecraft/network/FriendlyByteBuf;)Lnet/minecraft/core/particles/ItemParticleOption; +MD: net/minecraft/core/particles/ItemParticleOption$1/m_6507_ (Lnet/minecraft/core/particles/ParticleType;Lnet/minecraft/network/FriendlyByteBuf;)Lnet/minecraft/core/particles/ParticleOptions; net/minecraft/core/particles/ItemParticleOption$1/fromNetwork (Lnet/minecraft/core/particles/ParticleType;Lnet/minecraft/network/FriendlyByteBuf;)Lnet/minecraft/core/particles/ParticleOptions; +MD: net/minecraft/core/particles/ParticleGroup/ ()V net/minecraft/core/particles/ParticleGroup/ ()V +MD: net/minecraft/core/particles/ParticleGroup/ (I)V net/minecraft/core/particles/ParticleGroup/ (I)V +MD: net/minecraft/core/particles/ParticleGroup/m_175819_ ()I net/minecraft/core/particles/ParticleGroup/getLimit ()I +MD: net/minecraft/core/particles/ParticleOptions/m_5942_ ()Ljava/lang/String; net/minecraft/core/particles/ParticleOptions/writeToString ()Ljava/lang/String; +MD: net/minecraft/core/particles/ParticleOptions/m_6012_ ()Lnet/minecraft/core/particles/ParticleType; net/minecraft/core/particles/ParticleOptions/getType ()Lnet/minecraft/core/particles/ParticleType; +MD: net/minecraft/core/particles/ParticleOptions/m_7711_ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/core/particles/ParticleOptions/writeToNetwork (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/core/particles/ParticleOptions$Deserializer/m_5739_ (Lnet/minecraft/core/particles/ParticleType;Lcom/mojang/brigadier/StringReader;)Lnet/minecraft/core/particles/ParticleOptions; net/minecraft/core/particles/ParticleOptions$Deserializer/fromCommand (Lnet/minecraft/core/particles/ParticleType;Lcom/mojang/brigadier/StringReader;)Lnet/minecraft/core/particles/ParticleOptions; +MD: net/minecraft/core/particles/ParticleOptions$Deserializer/m_6507_ (Lnet/minecraft/core/particles/ParticleType;Lnet/minecraft/network/FriendlyByteBuf;)Lnet/minecraft/core/particles/ParticleOptions; net/minecraft/core/particles/ParticleOptions$Deserializer/fromNetwork (Lnet/minecraft/core/particles/ParticleType;Lnet/minecraft/network/FriendlyByteBuf;)Lnet/minecraft/core/particles/ParticleOptions; +MD: net/minecraft/core/particles/ParticleType/ (ZLnet/minecraft/core/particles/ParticleOptions$Deserializer;)V net/minecraft/core/particles/ParticleType/ (ZLnet/minecraft/core/particles/ParticleOptions$Deserializer;)V +MD: net/minecraft/core/particles/ParticleType/m_123742_ ()Z net/minecraft/core/particles/ParticleType/getOverrideLimiter ()Z +MD: net/minecraft/core/particles/ParticleType/m_123743_ ()Lnet/minecraft/core/particles/ParticleOptions$Deserializer; net/minecraft/core/particles/ParticleType/getDeserializer ()Lnet/minecraft/core/particles/ParticleOptions$Deserializer; +MD: net/minecraft/core/particles/ParticleType/m_7652_ ()Lcom/mojang/serialization/Codec; net/minecraft/core/particles/ParticleType/codec ()Lcom/mojang/serialization/Codec; +MD: net/minecraft/core/particles/ParticleTypes/ ()V net/minecraft/core/particles/ParticleTypes/ ()V +MD: net/minecraft/core/particles/ParticleTypes/ ()V net/minecraft/core/particles/ParticleTypes/ ()V +MD: net/minecraft/core/particles/ParticleTypes/m_123818_ (Lnet/minecraft/core/particles/ParticleType;)Lcom/mojang/serialization/Codec; net/minecraft/core/particles/ParticleTypes/lambda$static$0 (Lnet/minecraft/core/particles/ParticleType;)Lcom/mojang/serialization/Codec; +MD: net/minecraft/core/particles/ParticleTypes/m_123824_ (Ljava/lang/String;Z)Lnet/minecraft/core/particles/SimpleParticleType; net/minecraft/core/particles/ParticleTypes/register (Ljava/lang/String;Z)Lnet/minecraft/core/particles/SimpleParticleType; +MD: net/minecraft/core/particles/ParticleTypes/m_175838_ (Lnet/minecraft/core/particles/ParticleType;)Lcom/mojang/serialization/Codec; net/minecraft/core/particles/ParticleTypes/lambda$static$2 (Lnet/minecraft/core/particles/ParticleType;)Lcom/mojang/serialization/Codec; +MD: net/minecraft/core/particles/ParticleTypes/m_175840_ (Lnet/minecraft/core/particles/ParticleType;)Lcom/mojang/serialization/Codec; net/minecraft/core/particles/ParticleTypes/lambda$static$1 (Lnet/minecraft/core/particles/ParticleType;)Lcom/mojang/serialization/Codec; +MD: net/minecraft/core/particles/ParticleTypes/m_235903_ (Lnet/minecraft/core/particles/ParticleType;)Lcom/mojang/serialization/Codec; net/minecraft/core/particles/ParticleTypes/lambda$static$4 (Lnet/minecraft/core/particles/ParticleType;)Lcom/mojang/serialization/Codec; +MD: net/minecraft/core/particles/ParticleTypes/m_235905_ (Ljava/lang/String;ZLnet/minecraft/core/particles/ParticleOptions$Deserializer;Ljava/util/function/Function;)Lnet/minecraft/core/particles/ParticleType; net/minecraft/core/particles/ParticleTypes/register (Ljava/lang/String;ZLnet/minecraft/core/particles/ParticleOptions$Deserializer;Ljava/util/function/Function;)Lnet/minecraft/core/particles/ParticleType; +MD: net/minecraft/core/particles/ParticleTypes/m_235910_ (Lnet/minecraft/core/particles/ParticleType;)Lcom/mojang/serialization/Codec; net/minecraft/core/particles/ParticleTypes/lambda$static$3 (Lnet/minecraft/core/particles/ParticleType;)Lcom/mojang/serialization/Codec; +MD: net/minecraft/core/particles/ParticleTypes$1/ (ZLnet/minecraft/core/particles/ParticleOptions$Deserializer;Ljava/util/function/Function;)V net/minecraft/core/particles/ParticleTypes$1/ (ZLnet/minecraft/core/particles/ParticleOptions$Deserializer;Ljava/util/function/Function;)V +MD: net/minecraft/core/particles/ParticleTypes$1/m_7652_ ()Lcom/mojang/serialization/Codec; net/minecraft/core/particles/ParticleTypes$1/codec ()Lcom/mojang/serialization/Codec; +MD: net/minecraft/core/particles/SculkChargeParticleOptions/ ()V net/minecraft/core/particles/SculkChargeParticleOptions/ ()V +MD: net/minecraft/core/particles/SculkChargeParticleOptions/ (F)V net/minecraft/core/particles/SculkChargeParticleOptions/ (F)V +MD: net/minecraft/core/particles/SculkChargeParticleOptions/equals (Ljava/lang/Object;)Z net/minecraft/core/particles/SculkChargeParticleOptions/equals (Ljava/lang/Object;)Z +MD: net/minecraft/core/particles/SculkChargeParticleOptions/f_235914_ ()F net/minecraft/core/particles/SculkChargeParticleOptions/roll ()F +MD: net/minecraft/core/particles/SculkChargeParticleOptions/hashCode ()I net/minecraft/core/particles/SculkChargeParticleOptions/hashCode ()I +MD: net/minecraft/core/particles/SculkChargeParticleOptions/m_235919_ (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/core/particles/SculkChargeParticleOptions/lambda$static$1 (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/core/particles/SculkChargeParticleOptions/m_235921_ (Lnet/minecraft/core/particles/SculkChargeParticleOptions;)Ljava/lang/Float; net/minecraft/core/particles/SculkChargeParticleOptions/lambda$static$0 (Lnet/minecraft/core/particles/SculkChargeParticleOptions;)Ljava/lang/Float; +MD: net/minecraft/core/particles/SculkChargeParticleOptions/m_5942_ ()Ljava/lang/String; net/minecraft/core/particles/SculkChargeParticleOptions/writeToString ()Ljava/lang/String; +MD: net/minecraft/core/particles/SculkChargeParticleOptions/m_6012_ ()Lnet/minecraft/core/particles/ParticleType; net/minecraft/core/particles/SculkChargeParticleOptions/getType ()Lnet/minecraft/core/particles/ParticleType; +MD: net/minecraft/core/particles/SculkChargeParticleOptions/m_7711_ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/core/particles/SculkChargeParticleOptions/writeToNetwork (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/core/particles/SculkChargeParticleOptions/toString ()Ljava/lang/String; net/minecraft/core/particles/SculkChargeParticleOptions/toString ()Ljava/lang/String; +MD: net/minecraft/core/particles/SculkChargeParticleOptions$1/ ()V net/minecraft/core/particles/SculkChargeParticleOptions$1/ ()V +MD: net/minecraft/core/particles/SculkChargeParticleOptions$1/m_5739_ (Lnet/minecraft/core/particles/ParticleType;Lcom/mojang/brigadier/StringReader;)Lnet/minecraft/core/particles/SculkChargeParticleOptions; net/minecraft/core/particles/SculkChargeParticleOptions$1/fromCommand (Lnet/minecraft/core/particles/ParticleType;Lcom/mojang/brigadier/StringReader;)Lnet/minecraft/core/particles/SculkChargeParticleOptions; +MD: net/minecraft/core/particles/SculkChargeParticleOptions$1/m_5739_ (Lnet/minecraft/core/particles/ParticleType;Lcom/mojang/brigadier/StringReader;)Lnet/minecraft/core/particles/ParticleOptions; net/minecraft/core/particles/SculkChargeParticleOptions$1/fromCommand (Lnet/minecraft/core/particles/ParticleType;Lcom/mojang/brigadier/StringReader;)Lnet/minecraft/core/particles/ParticleOptions; +MD: net/minecraft/core/particles/SculkChargeParticleOptions$1/m_6507_ (Lnet/minecraft/core/particles/ParticleType;Lnet/minecraft/network/FriendlyByteBuf;)Lnet/minecraft/core/particles/SculkChargeParticleOptions; net/minecraft/core/particles/SculkChargeParticleOptions$1/fromNetwork (Lnet/minecraft/core/particles/ParticleType;Lnet/minecraft/network/FriendlyByteBuf;)Lnet/minecraft/core/particles/SculkChargeParticleOptions; +MD: net/minecraft/core/particles/SculkChargeParticleOptions$1/m_6507_ (Lnet/minecraft/core/particles/ParticleType;Lnet/minecraft/network/FriendlyByteBuf;)Lnet/minecraft/core/particles/ParticleOptions; net/minecraft/core/particles/SculkChargeParticleOptions$1/fromNetwork (Lnet/minecraft/core/particles/ParticleType;Lnet/minecraft/network/FriendlyByteBuf;)Lnet/minecraft/core/particles/ParticleOptions; +MD: net/minecraft/core/particles/ShriekParticleOption/ ()V net/minecraft/core/particles/ShriekParticleOption/ ()V +MD: net/minecraft/core/particles/ShriekParticleOption/ (I)V net/minecraft/core/particles/ShriekParticleOption/ (I)V +MD: net/minecraft/core/particles/ShriekParticleOption/m_235951_ (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/core/particles/ShriekParticleOption/lambda$static$1 (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/core/particles/ShriekParticleOption/m_235953_ (Lnet/minecraft/core/particles/ShriekParticleOption;)Ljava/lang/Integer; net/minecraft/core/particles/ShriekParticleOption/lambda$static$0 (Lnet/minecraft/core/particles/ShriekParticleOption;)Ljava/lang/Integer; +MD: net/minecraft/core/particles/ShriekParticleOption/m_235958_ ()I net/minecraft/core/particles/ShriekParticleOption/getDelay ()I +MD: net/minecraft/core/particles/ShriekParticleOption/m_5942_ ()Ljava/lang/String; net/minecraft/core/particles/ShriekParticleOption/writeToString ()Ljava/lang/String; +MD: net/minecraft/core/particles/ShriekParticleOption/m_6012_ ()Lnet/minecraft/core/particles/ParticleType; net/minecraft/core/particles/ShriekParticleOption/getType ()Lnet/minecraft/core/particles/ParticleType; +MD: net/minecraft/core/particles/ShriekParticleOption/m_7711_ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/core/particles/ShriekParticleOption/writeToNetwork (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/core/particles/ShriekParticleOption$1/ ()V net/minecraft/core/particles/ShriekParticleOption$1/ ()V +MD: net/minecraft/core/particles/ShriekParticleOption$1/m_5739_ (Lnet/minecraft/core/particles/ParticleType;Lcom/mojang/brigadier/StringReader;)Lnet/minecraft/core/particles/ShriekParticleOption; net/minecraft/core/particles/ShriekParticleOption$1/fromCommand (Lnet/minecraft/core/particles/ParticleType;Lcom/mojang/brigadier/StringReader;)Lnet/minecraft/core/particles/ShriekParticleOption; +MD: net/minecraft/core/particles/ShriekParticleOption$1/m_5739_ (Lnet/minecraft/core/particles/ParticleType;Lcom/mojang/brigadier/StringReader;)Lnet/minecraft/core/particles/ParticleOptions; net/minecraft/core/particles/ShriekParticleOption$1/fromCommand (Lnet/minecraft/core/particles/ParticleType;Lcom/mojang/brigadier/StringReader;)Lnet/minecraft/core/particles/ParticleOptions; +MD: net/minecraft/core/particles/ShriekParticleOption$1/m_6507_ (Lnet/minecraft/core/particles/ParticleType;Lnet/minecraft/network/FriendlyByteBuf;)Lnet/minecraft/core/particles/ShriekParticleOption; net/minecraft/core/particles/ShriekParticleOption$1/fromNetwork (Lnet/minecraft/core/particles/ParticleType;Lnet/minecraft/network/FriendlyByteBuf;)Lnet/minecraft/core/particles/ShriekParticleOption; +MD: net/minecraft/core/particles/ShriekParticleOption$1/m_6507_ (Lnet/minecraft/core/particles/ParticleType;Lnet/minecraft/network/FriendlyByteBuf;)Lnet/minecraft/core/particles/ParticleOptions; net/minecraft/core/particles/ShriekParticleOption$1/fromNetwork (Lnet/minecraft/core/particles/ParticleType;Lnet/minecraft/network/FriendlyByteBuf;)Lnet/minecraft/core/particles/ParticleOptions; +MD: net/minecraft/core/particles/SimpleParticleType/ ()V net/minecraft/core/particles/SimpleParticleType/ ()V +MD: net/minecraft/core/particles/SimpleParticleType/ (Z)V net/minecraft/core/particles/SimpleParticleType/ (Z)V +MD: net/minecraft/core/particles/SimpleParticleType/m_5942_ ()Ljava/lang/String; net/minecraft/core/particles/SimpleParticleType/writeToString ()Ljava/lang/String; +MD: net/minecraft/core/particles/SimpleParticleType/m_6012_ ()Lnet/minecraft/core/particles/SimpleParticleType; net/minecraft/core/particles/SimpleParticleType/getType ()Lnet/minecraft/core/particles/SimpleParticleType; +MD: net/minecraft/core/particles/SimpleParticleType/m_6012_ ()Lnet/minecraft/core/particles/ParticleType; net/minecraft/core/particles/SimpleParticleType/getType ()Lnet/minecraft/core/particles/ParticleType; +MD: net/minecraft/core/particles/SimpleParticleType/m_7652_ ()Lcom/mojang/serialization/Codec; net/minecraft/core/particles/SimpleParticleType/codec ()Lcom/mojang/serialization/Codec; +MD: net/minecraft/core/particles/SimpleParticleType/m_7711_ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/core/particles/SimpleParticleType/writeToNetwork (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/core/particles/SimpleParticleType$1/ ()V net/minecraft/core/particles/SimpleParticleType$1/ ()V +MD: net/minecraft/core/particles/SimpleParticleType$1/m_5739_ (Lnet/minecraft/core/particles/ParticleType;Lcom/mojang/brigadier/StringReader;)Lnet/minecraft/core/particles/ParticleOptions; net/minecraft/core/particles/SimpleParticleType$1/fromCommand (Lnet/minecraft/core/particles/ParticleType;Lcom/mojang/brigadier/StringReader;)Lnet/minecraft/core/particles/ParticleOptions; +MD: net/minecraft/core/particles/SimpleParticleType$1/m_5739_ (Lnet/minecraft/core/particles/ParticleType;Lcom/mojang/brigadier/StringReader;)Lnet/minecraft/core/particles/SimpleParticleType; net/minecraft/core/particles/SimpleParticleType$1/fromCommand (Lnet/minecraft/core/particles/ParticleType;Lcom/mojang/brigadier/StringReader;)Lnet/minecraft/core/particles/SimpleParticleType; +MD: net/minecraft/core/particles/SimpleParticleType$1/m_6507_ (Lnet/minecraft/core/particles/ParticleType;Lnet/minecraft/network/FriendlyByteBuf;)Lnet/minecraft/core/particles/ParticleOptions; net/minecraft/core/particles/SimpleParticleType$1/fromNetwork (Lnet/minecraft/core/particles/ParticleType;Lnet/minecraft/network/FriendlyByteBuf;)Lnet/minecraft/core/particles/ParticleOptions; +MD: net/minecraft/core/particles/SimpleParticleType$1/m_6507_ (Lnet/minecraft/core/particles/ParticleType;Lnet/minecraft/network/FriendlyByteBuf;)Lnet/minecraft/core/particles/SimpleParticleType; net/minecraft/core/particles/SimpleParticleType$1/fromNetwork (Lnet/minecraft/core/particles/ParticleType;Lnet/minecraft/network/FriendlyByteBuf;)Lnet/minecraft/core/particles/SimpleParticleType; +MD: net/minecraft/core/particles/VibrationParticleOption/ ()V net/minecraft/core/particles/VibrationParticleOption/ ()V +MD: net/minecraft/core/particles/VibrationParticleOption/ (Lnet/minecraft/world/level/gameevent/PositionSource;I)V net/minecraft/core/particles/VibrationParticleOption/ (Lnet/minecraft/world/level/gameevent/PositionSource;I)V +MD: net/minecraft/core/particles/VibrationParticleOption/m_235977_ (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/core/particles/VibrationParticleOption/lambda$static$2 (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/core/particles/VibrationParticleOption/m_235979_ (Lnet/minecraft/core/particles/VibrationParticleOption;)Ljava/lang/Integer; net/minecraft/core/particles/VibrationParticleOption/lambda$static$1 (Lnet/minecraft/core/particles/VibrationParticleOption;)Ljava/lang/Integer; +MD: net/minecraft/core/particles/VibrationParticleOption/m_235981_ (Lnet/minecraft/core/particles/VibrationParticleOption;)Lnet/minecraft/world/level/gameevent/PositionSource; net/minecraft/core/particles/VibrationParticleOption/lambda$static$0 (Lnet/minecraft/core/particles/VibrationParticleOption;)Lnet/minecraft/world/level/gameevent/PositionSource; +MD: net/minecraft/core/particles/VibrationParticleOption/m_235983_ ()Lnet/minecraft/world/level/gameevent/PositionSource; net/minecraft/core/particles/VibrationParticleOption/getDestination ()Lnet/minecraft/world/level/gameevent/PositionSource; +MD: net/minecraft/core/particles/VibrationParticleOption/m_235984_ ()I net/minecraft/core/particles/VibrationParticleOption/getArrivalInTicks ()I +MD: net/minecraft/core/particles/VibrationParticleOption/m_5942_ ()Ljava/lang/String; net/minecraft/core/particles/VibrationParticleOption/writeToString ()Ljava/lang/String; +MD: net/minecraft/core/particles/VibrationParticleOption/m_6012_ ()Lnet/minecraft/core/particles/ParticleType; net/minecraft/core/particles/VibrationParticleOption/getType ()Lnet/minecraft/core/particles/ParticleType; +MD: net/minecraft/core/particles/VibrationParticleOption/m_7711_ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/core/particles/VibrationParticleOption/writeToNetwork (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/core/particles/VibrationParticleOption$1/ ()V net/minecraft/core/particles/VibrationParticleOption$1/ ()V +MD: net/minecraft/core/particles/VibrationParticleOption$1/m_5739_ (Lnet/minecraft/core/particles/ParticleType;Lcom/mojang/brigadier/StringReader;)Lnet/minecraft/core/particles/ParticleOptions; net/minecraft/core/particles/VibrationParticleOption$1/fromCommand (Lnet/minecraft/core/particles/ParticleType;Lcom/mojang/brigadier/StringReader;)Lnet/minecraft/core/particles/ParticleOptions; +MD: net/minecraft/core/particles/VibrationParticleOption$1/m_5739_ (Lnet/minecraft/core/particles/ParticleType;Lcom/mojang/brigadier/StringReader;)Lnet/minecraft/core/particles/VibrationParticleOption; net/minecraft/core/particles/VibrationParticleOption$1/fromCommand (Lnet/minecraft/core/particles/ParticleType;Lcom/mojang/brigadier/StringReader;)Lnet/minecraft/core/particles/VibrationParticleOption; +MD: net/minecraft/core/particles/VibrationParticleOption$1/m_6507_ (Lnet/minecraft/core/particles/ParticleType;Lnet/minecraft/network/FriendlyByteBuf;)Lnet/minecraft/core/particles/VibrationParticleOption; net/minecraft/core/particles/VibrationParticleOption$1/fromNetwork (Lnet/minecraft/core/particles/ParticleType;Lnet/minecraft/network/FriendlyByteBuf;)Lnet/minecraft/core/particles/VibrationParticleOption; +MD: net/minecraft/core/particles/VibrationParticleOption$1/m_6507_ (Lnet/minecraft/core/particles/ParticleType;Lnet/minecraft/network/FriendlyByteBuf;)Lnet/minecraft/core/particles/ParticleOptions; net/minecraft/core/particles/VibrationParticleOption$1/fromNetwork (Lnet/minecraft/core/particles/ParticleType;Lnet/minecraft/network/FriendlyByteBuf;)Lnet/minecraft/core/particles/ParticleOptions; +MD: net/minecraft/core/registries/BuiltInRegistries/ ()V net/minecraft/core/registries/BuiltInRegistries/ ()V +MD: net/minecraft/core/registries/BuiltInRegistries/ ()V net/minecraft/core/registries/BuiltInRegistries/ ()V +MD: net/minecraft/core/registries/BuiltInRegistries/m_257371_ (Lnet/minecraft/core/Registry;)Lnet/minecraft/world/level/levelgen/carver/WorldCarver; net/minecraft/core/registries/BuiltInRegistries/lambda$static$38 (Lnet/minecraft/core/Registry;)Lnet/minecraft/world/level/levelgen/carver/WorldCarver; +MD: net/minecraft/core/registries/BuiltInRegistries/m_257390_ (Lnet/minecraft/core/Registry;)Lnet/minecraft/world/level/block/entity/BlockEntityType; net/minecraft/core/registries/BuiltInRegistries/lambda$static$10 (Lnet/minecraft/core/Registry;)Lnet/minecraft/world/level/block/entity/BlockEntityType; +MD: net/minecraft/core/registries/BuiltInRegistries/m_257391_ (Lnet/minecraft/core/Registry;)Lnet/minecraft/world/level/storage/loot/predicates/LootItemConditionType; net/minecraft/core/registries/BuiltInRegistries/lambda$static$30 (Lnet/minecraft/core/Registry;)Lnet/minecraft/world/level/storage/loot/predicates/LootItemConditionType; +MD: net/minecraft/core/registries/BuiltInRegistries/m_257420_ (Lnet/minecraft/core/Registry;)Lnet/minecraft/world/level/storage/loot/entries/LootPoolEntryType; net/minecraft/core/registries/BuiltInRegistries/lambda$static$28 (Lnet/minecraft/core/Registry;)Lnet/minecraft/world/level/storage/loot/entries/LootPoolEntryType; +MD: net/minecraft/core/registries/BuiltInRegistries/m_257425_ (Lnet/minecraft/core/Registry;)Lnet/minecraft/world/level/gameevent/PositionSourceType; net/minecraft/core/registries/BuiltInRegistries/lambda$static$20 (Lnet/minecraft/core/Registry;)Lnet/minecraft/world/level/gameevent/PositionSourceType; +MD: net/minecraft/core/registries/BuiltInRegistries/m_257434_ (Lnet/minecraft/core/Registry;)Lnet/minecraft/world/level/storage/loot/providers/score/LootScoreProviderType; net/minecraft/core/registries/BuiltInRegistries/lambda$static$33 (Lnet/minecraft/core/Registry;)Lnet/minecraft/world/level/storage/loot/providers/score/LootScoreProviderType; +MD: net/minecraft/core/registries/BuiltInRegistries/m_257443_ (Lnet/minecraft/core/Registry;)Lnet/minecraft/stats/StatType; net/minecraft/core/registries/BuiltInRegistries/lambda$static$21 (Lnet/minecraft/core/Registry;)Lnet/minecraft/stats/StatType; +MD: net/minecraft/core/registries/BuiltInRegistries/m_257453_ ()V net/minecraft/core/registries/BuiltInRegistries/createContents ()V +MD: net/minecraft/core/registries/BuiltInRegistries/m_257467_ (Lnet/minecraft/core/Registry;)Lnet/minecraft/world/inventory/MenuType; net/minecraft/core/registries/BuiltInRegistries/lambda$static$16 (Lnet/minecraft/core/Registry;)Lnet/minecraft/world/inventory/MenuType; +MD: net/minecraft/core/registries/BuiltInRegistries/m_257474_ (Lnet/minecraft/core/Registry;)Lnet/minecraft/world/level/levelgen/blockpredicates/BlockPredicateType; net/minecraft/core/registries/BuiltInRegistries/lambda$static$37 (Lnet/minecraft/core/Registry;)Lnet/minecraft/world/level/levelgen/blockpredicates/BlockPredicateType; +MD: net/minecraft/core/registries/BuiltInRegistries/m_257475_ (Lnet/minecraft/core/Registry;)Lnet/minecraft/world/level/levelgen/feature/featuresize/FeatureSizeType; net/minecraft/core/registries/BuiltInRegistries/lambda$static$49 (Lnet/minecraft/core/Registry;)Lnet/minecraft/world/level/levelgen/feature/featuresize/FeatureSizeType; +MD: net/minecraft/core/registries/BuiltInRegistries/m_257498_ ()V net/minecraft/core/registries/BuiltInRegistries/bootStrap ()V +MD: net/minecraft/core/registries/BuiltInRegistries/m_257521_ (Lnet/minecraft/core/Registry;)Lnet/minecraft/world/level/levelgen/structure/placement/StructurePlacementType; net/minecraft/core/registries/BuiltInRegistries/lambda$static$40 (Lnet/minecraft/core/Registry;)Lnet/minecraft/world/level/levelgen/structure/placement/StructurePlacementType; +MD: net/minecraft/core/registries/BuiltInRegistries/m_257531_ (Lnet/minecraft/core/Registry;)Lnet/minecraft/world/level/levelgen/feature/rootplacers/RootPlacerType; net/minecraft/core/registries/BuiltInRegistries/lambda$static$47 (Lnet/minecraft/core/Registry;)Lnet/minecraft/world/level/levelgen/feature/rootplacers/RootPlacerType; +MD: net/minecraft/core/registries/BuiltInRegistries/m_257537_ (Lnet/minecraft/core/Registry;)Lnet/minecraft/world/level/storage/loot/functions/LootItemFunctionType; net/minecraft/core/registries/BuiltInRegistries/lambda$static$29 (Lnet/minecraft/core/Registry;)Lnet/minecraft/world/level/storage/loot/functions/LootItemFunctionType; +MD: net/minecraft/core/registries/BuiltInRegistries/m_257540_ (Lnet/minecraft/core/Registry;)Lnet/minecraft/world/level/chunk/ChunkStatus; net/minecraft/core/registries/BuiltInRegistries/lambda$static$12 (Lnet/minecraft/core/Registry;)Lnet/minecraft/world/level/chunk/ChunkStatus; +MD: net/minecraft/core/registries/BuiltInRegistries/m_257555_ (Lnet/minecraft/core/Registry;)Lnet/minecraft/world/item/alchemy/Potion; net/minecraft/core/registries/BuiltInRegistries/lambda$static$8 (Lnet/minecraft/core/Registry;)Lnet/minecraft/world/item/alchemy/Potion; +MD: net/minecraft/core/registries/BuiltInRegistries/m_257571_ (Lnet/minecraft/core/Registry;)Lnet/minecraft/world/item/Item; net/minecraft/core/registries/BuiltInRegistries/lambda$static$7 (Lnet/minecraft/core/Registry;)Lnet/minecraft/world/item/Item; +MD: net/minecraft/core/registries/BuiltInRegistries/m_257574_ (Lnet/minecraft/core/Registry;)Lnet/minecraft/world/level/levelgen/placement/PlacementModifierType; net/minecraft/core/registries/BuiltInRegistries/lambda$static$43 (Lnet/minecraft/core/Registry;)Lnet/minecraft/world/level/levelgen/placement/PlacementModifierType; +MD: net/minecraft/core/registries/BuiltInRegistries/m_257589_ (Lnet/minecraft/core/Registry;)Lnet/minecraft/world/level/gameevent/GameEvent; net/minecraft/core/registries/BuiltInRegistries/lambda$static$0 (Lnet/minecraft/core/Registry;)Lnet/minecraft/world/level/gameevent/GameEvent; +MD: net/minecraft/core/registries/BuiltInRegistries/m_257600_ (Lnet/minecraft/resources/ResourceKey;Ljava/lang/String;Lcom/mojang/serialization/Lifecycle;Lnet/minecraft/core/registries/BuiltInRegistries$RegistryBootstrap;)Lnet/minecraft/core/DefaultedRegistry; net/minecraft/core/registries/BuiltInRegistries/registerDefaulted (Lnet/minecraft/resources/ResourceKey;Ljava/lang/String;Lcom/mojang/serialization/Lifecycle;Lnet/minecraft/core/registries/BuiltInRegistries$RegistryBootstrap;)Lnet/minecraft/core/DefaultedRegistry; +MD: net/minecraft/core/registries/BuiltInRegistries/m_257604_ ()V net/minecraft/core/registries/BuiltInRegistries/freeze ()V +MD: net/minecraft/core/registries/BuiltInRegistries/m_257606_ (Lnet/minecraft/core/Registry;)Lnet/minecraft/util/valueproviders/IntProviderType; net/minecraft/core/registries/BuiltInRegistries/lambda$static$35 (Lnet/minecraft/core/Registry;)Lnet/minecraft/util/valueproviders/IntProviderType; +MD: net/minecraft/core/registries/BuiltInRegistries/m_257614_ (Lnet/minecraft/core/Registry;)Lnet/minecraft/sounds/SoundEvent; net/minecraft/core/registries/BuiltInRegistries/lambda$static$1 (Lnet/minecraft/core/Registry;)Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/core/registries/BuiltInRegistries/m_257618_ (Lnet/minecraft/core/Registry;)Lnet/minecraft/world/level/levelgen/feature/Feature; net/minecraft/core/registries/BuiltInRegistries/lambda$static$39 (Lnet/minecraft/core/Registry;)Lnet/minecraft/world/level/levelgen/feature/Feature; +MD: net/minecraft/core/registries/BuiltInRegistries/m_257632_ (Lnet/minecraft/core/Registry;)Lnet/minecraft/world/level/levelgen/structure/templatesystem/RuleTestType; net/minecraft/core/registries/BuiltInRegistries/lambda$static$13 (Lnet/minecraft/core/Registry;)Lnet/minecraft/world/level/levelgen/structure/templatesystem/RuleTestType; +MD: net/minecraft/core/registries/BuiltInRegistries/m_257654_ (Lnet/minecraft/core/Registry;)Lnet/minecraft/world/item/crafting/RecipeType; net/minecraft/core/registries/BuiltInRegistries/lambda$static$17 (Lnet/minecraft/core/Registry;)Lnet/minecraft/world/item/crafting/RecipeType; +MD: net/minecraft/core/registries/BuiltInRegistries/m_257672_ (Lnet/minecraft/core/Registry;)Lnet/minecraft/world/level/material/Fluid; net/minecraft/core/registries/BuiltInRegistries/lambda$static$2 (Lnet/minecraft/core/Registry;)Lnet/minecraft/world/level/material/Fluid; +MD: net/minecraft/core/registries/BuiltInRegistries/m_257683_ (Lnet/minecraft/core/Registry;)Lnet/minecraft/world/level/storage/loot/providers/number/LootNumberProviderType; net/minecraft/core/registries/BuiltInRegistries/lambda$static$31 (Lnet/minecraft/core/Registry;)Lnet/minecraft/world/level/storage/loot/providers/number/LootNumberProviderType; +MD: net/minecraft/core/registries/BuiltInRegistries/m_257688_ (Lnet/minecraft/core/Registry;)Lnet/minecraft/world/level/levelgen/feature/stateproviders/BlockStateProviderType; net/minecraft/core/registries/BuiltInRegistries/lambda$static$44 (Lnet/minecraft/core/Registry;)Lnet/minecraft/world/level/levelgen/feature/stateproviders/BlockStateProviderType; +MD: net/minecraft/core/registries/BuiltInRegistries/m_257693_ (Lnet/minecraft/core/Registry;)Lnet/minecraft/world/level/levelgen/structure/pieces/StructurePieceType; net/minecraft/core/registries/BuiltInRegistries/lambda$static$41 (Lnet/minecraft/core/Registry;)Lnet/minecraft/world/level/levelgen/structure/pieces/StructurePieceType; +MD: net/minecraft/core/registries/BuiltInRegistries/m_257700_ (Lnet/minecraft/core/Registry;)Lnet/minecraft/world/entity/EntityType; net/minecraft/core/registries/BuiltInRegistries/lambda$static$6 (Lnet/minecraft/core/Registry;)Lnet/minecraft/world/entity/EntityType; +MD: net/minecraft/core/registries/BuiltInRegistries/m_257705_ (Lnet/minecraft/core/Registry;)Lnet/minecraft/world/level/levelgen/structure/templatesystem/PosRuleTestType; net/minecraft/core/registries/BuiltInRegistries/lambda$static$15 (Lnet/minecraft/core/Registry;)Lnet/minecraft/world/level/levelgen/structure/templatesystem/PosRuleTestType; +MD: net/minecraft/core/registries/BuiltInRegistries/m_257716_ (Lnet/minecraft/core/Registry;)Lnet/minecraft/world/level/block/Block; net/minecraft/core/registries/BuiltInRegistries/lambda$static$4 (Lnet/minecraft/core/Registry;)Lnet/minecraft/world/level/block/Block; +MD: net/minecraft/core/registries/BuiltInRegistries/m_257756_ (Lnet/minecraft/core/Registry;)Lnet/minecraft/world/entity/schedule/Schedule; net/minecraft/core/registries/BuiltInRegistries/lambda$static$26 (Lnet/minecraft/core/Registry;)Lnet/minecraft/world/entity/schedule/Schedule; +MD: net/minecraft/core/registries/BuiltInRegistries/m_257762_ (Lnet/minecraft/resources/ResourceKey;Ljava/lang/String;Lcom/mojang/serialization/Lifecycle;Lnet/minecraft/core/registries/BuiltInRegistries$RegistryBootstrap;)Lnet/minecraft/core/DefaultedRegistry; net/minecraft/core/registries/BuiltInRegistries/registerDefaultedWithIntrusiveHolders (Lnet/minecraft/resources/ResourceKey;Ljava/lang/String;Lcom/mojang/serialization/Lifecycle;Lnet/minecraft/core/registries/BuiltInRegistries$RegistryBootstrap;)Lnet/minecraft/core/DefaultedRegistry; +MD: net/minecraft/core/registries/BuiltInRegistries/m_257765_ (Lnet/minecraft/core/Registry;)Lnet/minecraft/world/effect/MobEffect; net/minecraft/core/registries/BuiltInRegistries/lambda$static$3 (Lnet/minecraft/core/Registry;)Lnet/minecraft/world/effect/MobEffect; +MD: net/minecraft/core/registries/BuiltInRegistries/m_257766_ (Lnet/minecraft/core/Registry;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/core/registries/BuiltInRegistries/lambda$static$11 (Lnet/minecraft/core/Registry;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/core/registries/BuiltInRegistries/m_257790_ (Lnet/minecraft/core/Registry;)Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureProcessorType; net/minecraft/core/registries/BuiltInRegistries/lambda$static$50 (Lnet/minecraft/core/Registry;)Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureProcessorType; +MD: net/minecraft/core/registries/BuiltInRegistries/m_257807_ (Lnet/minecraft/core/Registry;)Lnet/minecraft/world/level/levelgen/structure/StructureType; net/minecraft/core/registries/BuiltInRegistries/lambda$static$42 (Lnet/minecraft/core/Registry;)Lnet/minecraft/world/level/levelgen/structure/StructureType; +MD: net/minecraft/core/registries/BuiltInRegistries/m_257816_ (Lnet/minecraft/core/Registry;)Lnet/minecraft/world/entity/npc/VillagerProfession; net/minecraft/core/registries/BuiltInRegistries/lambda$static$23 (Lnet/minecraft/core/Registry;)Lnet/minecraft/world/entity/npc/VillagerProfession; +MD: net/minecraft/core/registries/BuiltInRegistries/m_257834_ (Lnet/minecraft/resources/ResourceKey;Ljava/lang/String;Lnet/minecraft/core/registries/BuiltInRegistries$RegistryBootstrap;)Lnet/minecraft/core/DefaultedRegistry; net/minecraft/core/registries/BuiltInRegistries/registerDefaultedWithIntrusiveHolders (Lnet/minecraft/resources/ResourceKey;Ljava/lang/String;Lnet/minecraft/core/registries/BuiltInRegistries$RegistryBootstrap;)Lnet/minecraft/core/DefaultedRegistry; +MD: net/minecraft/core/registries/BuiltInRegistries/m_257844_ (Lnet/minecraft/core/Registry;)Lnet/minecraft/world/item/crafting/RecipeSerializer; net/minecraft/core/registries/BuiltInRegistries/lambda$static$18 (Lnet/minecraft/core/Registry;)Lnet/minecraft/world/item/crafting/RecipeSerializer; +MD: net/minecraft/core/registries/BuiltInRegistries/m_257853_ (Lnet/minecraft/core/Registry;)Lnet/minecraft/world/item/enchantment/Enchantment; net/minecraft/core/registries/BuiltInRegistries/lambda$static$5 (Lnet/minecraft/core/Registry;)Lnet/minecraft/world/item/enchantment/Enchantment; +MD: net/minecraft/core/registries/BuiltInRegistries/m_257858_ (Lnet/minecraft/core/Registry;)Lnet/minecraft/world/entity/npc/VillagerType; net/minecraft/core/registries/BuiltInRegistries/lambda$static$22 (Lnet/minecraft/core/Registry;)Lnet/minecraft/world/entity/npc/VillagerType; +MD: net/minecraft/core/registries/BuiltInRegistries/m_257864_ (Lnet/minecraft/core/Registry;)V net/minecraft/core/registries/BuiltInRegistries/validate (Lnet/minecraft/core/Registry;)V +MD: net/minecraft/core/registries/BuiltInRegistries/m_257887_ (Lnet/minecraft/core/Registry;)Lnet/minecraft/world/entity/ai/sensing/SensorType; net/minecraft/core/registries/BuiltInRegistries/lambda$static$25 (Lnet/minecraft/core/Registry;)Lnet/minecraft/world/entity/ai/sensing/SensorType; +MD: net/minecraft/core/registries/BuiltInRegistries/m_257888_ (Lnet/minecraft/core/Registry;)Lnet/minecraft/world/level/levelgen/feature/trunkplacers/TrunkPlacerType; net/minecraft/core/registries/BuiltInRegistries/lambda$static$46 (Lnet/minecraft/core/Registry;)Lnet/minecraft/world/level/levelgen/feature/trunkplacers/TrunkPlacerType; +MD: net/minecraft/core/registries/BuiltInRegistries/m_257895_ (Lnet/minecraft/resources/ResourceKey;Lnet/minecraft/core/WritableRegistry;Lnet/minecraft/core/registries/BuiltInRegistries$RegistryBootstrap;Lcom/mojang/serialization/Lifecycle;)Lnet/minecraft/core/WritableRegistry; net/minecraft/core/registries/BuiltInRegistries/internalRegister (Lnet/minecraft/resources/ResourceKey;Lnet/minecraft/core/WritableRegistry;Lnet/minecraft/core/registries/BuiltInRegistries$RegistryBootstrap;Lcom/mojang/serialization/Lifecycle;)Lnet/minecraft/core/WritableRegistry; +MD: net/minecraft/core/registries/BuiltInRegistries/m_257942_ (Lnet/minecraft/core/Registry;)Lnet/minecraft/world/entity/animal/FrogVariant; net/minecraft/core/registries/BuiltInRegistries/lambda$static$52 (Lnet/minecraft/core/Registry;)Lnet/minecraft/world/entity/animal/FrogVariant; +MD: net/minecraft/core/registries/BuiltInRegistries/m_257946_ (Lnet/minecraft/core/Registry;)Lnet/minecraft/world/entity/schedule/Activity; net/minecraft/core/registries/BuiltInRegistries/lambda$static$27 (Lnet/minecraft/core/Registry;)Lnet/minecraft/world/entity/schedule/Activity; +MD: net/minecraft/core/registries/BuiltInRegistries/m_257954_ (Lnet/minecraft/core/Registry;)Lnet/minecraft/core/particles/ParticleType; net/minecraft/core/registries/BuiltInRegistries/lambda$static$9 (Lnet/minecraft/core/Registry;)Lnet/minecraft/core/particles/ParticleType; +MD: net/minecraft/core/registries/BuiltInRegistries/m_257973_ (Lnet/minecraft/core/Registry;)Lnet/minecraft/util/valueproviders/FloatProviderType; net/minecraft/core/registries/BuiltInRegistries/lambda$static$34 (Lnet/minecraft/core/Registry;)Lnet/minecraft/util/valueproviders/FloatProviderType; +MD: net/minecraft/core/registries/BuiltInRegistries/m_257979_ (Lnet/minecraft/core/Registry;Lnet/minecraft/core/Registry;)V net/minecraft/core/registries/BuiltInRegistries/lambda$validate$55 (Lnet/minecraft/core/Registry;Lnet/minecraft/core/Registry;)V +MD: net/minecraft/core/registries/BuiltInRegistries/m_257982_ (Lnet/minecraft/core/Registry;)Lnet/minecraft/world/level/levelgen/heightproviders/HeightProviderType; net/minecraft/core/registries/BuiltInRegistries/lambda$static$36 (Lnet/minecraft/core/Registry;)Lnet/minecraft/world/level/levelgen/heightproviders/HeightProviderType; +MD: net/minecraft/core/registries/BuiltInRegistries/m_257988_ (Lnet/minecraft/resources/ResourceKey;Ljava/lang/String;Lnet/minecraft/core/registries/BuiltInRegistries$RegistryBootstrap;)Lnet/minecraft/core/DefaultedRegistry; net/minecraft/core/registries/BuiltInRegistries/registerDefaulted (Lnet/minecraft/resources/ResourceKey;Ljava/lang/String;Lnet/minecraft/core/registries/BuiltInRegistries$RegistryBootstrap;)Lnet/minecraft/core/DefaultedRegistry; +MD: net/minecraft/core/registries/BuiltInRegistries/m_257991_ (Lnet/minecraft/core/Registry;)Lnet/minecraft/world/entity/ai/attributes/Attribute; net/minecraft/core/registries/BuiltInRegistries/lambda$static$19 (Lnet/minecraft/core/Registry;)Lnet/minecraft/world/entity/ai/attributes/Attribute; +MD: net/minecraft/core/registries/BuiltInRegistries/m_257992_ (Lnet/minecraft/core/Registry;)Lnet/minecraft/world/level/levelgen/structure/pools/StructurePoolElementType; net/minecraft/core/registries/BuiltInRegistries/lambda$static$51 (Lnet/minecraft/core/Registry;)Lnet/minecraft/world/level/levelgen/structure/pools/StructurePoolElementType; +MD: net/minecraft/core/registries/BuiltInRegistries/m_258002_ (Lnet/minecraft/resources/ResourceKey;Lnet/minecraft/core/registries/BuiltInRegistries$RegistryBootstrap;)Lnet/minecraft/core/Registry; net/minecraft/core/registries/BuiltInRegistries/registerSimple (Lnet/minecraft/resources/ResourceKey;Lnet/minecraft/core/registries/BuiltInRegistries$RegistryBootstrap;)Lnet/minecraft/core/Registry; +MD: net/minecraft/core/registries/BuiltInRegistries/m_258027_ (Lnet/minecraft/core/Registry;)Lnet/minecraft/world/level/storage/loot/providers/nbt/LootNbtProviderType; net/minecraft/core/registries/BuiltInRegistries/lambda$static$32 (Lnet/minecraft/core/Registry;)Lnet/minecraft/world/level/storage/loot/providers/nbt/LootNbtProviderType; +MD: net/minecraft/core/registries/BuiltInRegistries/m_258029_ (Lnet/minecraft/core/registries/BuiltInRegistries$RegistryBootstrap;Lnet/minecraft/core/WritableRegistry;)Ljava/lang/Object; net/minecraft/core/registries/BuiltInRegistries/lambda$internalRegister$53 (Lnet/minecraft/core/registries/BuiltInRegistries$RegistryBootstrap;Lnet/minecraft/core/WritableRegistry;)Ljava/lang/Object; +MD: net/minecraft/core/registries/BuiltInRegistries/m_258037_ (Lnet/minecraft/resources/ResourceLocation;Ljava/util/function/Supplier;)V net/minecraft/core/registries/BuiltInRegistries/lambda$createContents$54 (Lnet/minecraft/resources/ResourceLocation;Ljava/util/function/Supplier;)V +MD: net/minecraft/core/registries/BuiltInRegistries/m_258062_ (Lnet/minecraft/core/Registry;)Lnet/minecraft/world/entity/ai/memory/MemoryModuleType; net/minecraft/core/registries/BuiltInRegistries/lambda$static$24 (Lnet/minecraft/core/Registry;)Lnet/minecraft/world/entity/ai/memory/MemoryModuleType; +MD: net/minecraft/core/registries/BuiltInRegistries/m_258070_ (Lnet/minecraft/core/Registry;)Lnet/minecraft/world/level/levelgen/feature/foliageplacers/FoliagePlacerType; net/minecraft/core/registries/BuiltInRegistries/lambda$static$45 (Lnet/minecraft/core/Registry;)Lnet/minecraft/world/level/levelgen/feature/foliageplacers/FoliagePlacerType; +MD: net/minecraft/core/registries/BuiltInRegistries/m_258073_ (Lnet/minecraft/resources/ResourceKey;Lcom/mojang/serialization/Lifecycle;Lnet/minecraft/core/registries/BuiltInRegistries$RegistryBootstrap;)Lnet/minecraft/core/Registry; net/minecraft/core/registries/BuiltInRegistries/registerSimple (Lnet/minecraft/resources/ResourceKey;Lcom/mojang/serialization/Lifecycle;Lnet/minecraft/core/registries/BuiltInRegistries$RegistryBootstrap;)Lnet/minecraft/core/Registry; +MD: net/minecraft/core/registries/BuiltInRegistries/m_258095_ (Lnet/minecraft/core/Registry;)Lnet/minecraft/world/level/levelgen/feature/treedecorators/TreeDecoratorType; net/minecraft/core/registries/BuiltInRegistries/lambda$static$48 (Lnet/minecraft/core/Registry;)Lnet/minecraft/world/level/levelgen/feature/treedecorators/TreeDecoratorType; +MD: net/minecraft/core/registries/BuiltInRegistries/m_276709_ (Lnet/minecraft/core/Registry;)Lnet/minecraft/world/level/levelgen/structure/templatesystem/rule/blockentity/RuleBlockEntityModifierType; net/minecraft/core/registries/BuiltInRegistries/lambda$static$14 (Lnet/minecraft/core/Registry;)Lnet/minecraft/world/level/levelgen/structure/templatesystem/rule/blockentity/RuleBlockEntityModifierType; +MD: net/minecraft/core/registries/BuiltInRegistries$RegistryBootstrap/m_257957_ (Lnet/minecraft/core/Registry;)Ljava/lang/Object; net/minecraft/core/registries/BuiltInRegistries$RegistryBootstrap/run (Lnet/minecraft/core/Registry;)Ljava/lang/Object; +MD: net/minecraft/core/registries/Registries/ ()V net/minecraft/core/registries/Registries/ ()V +MD: net/minecraft/core/registries/Registries/ ()V net/minecraft/core/registries/Registries/ ()V +MD: net/minecraft/core/registries/Registries/m_257397_ (Ljava/lang/String;)Lnet/minecraft/resources/ResourceKey; net/minecraft/core/registries/Registries/createRegistryKey (Ljava/lang/String;)Lnet/minecraft/resources/ResourceKey; +MD: net/minecraft/core/registries/Registries/m_257452_ (Lnet/minecraft/resources/ResourceKey;)Lnet/minecraft/resources/ResourceKey; net/minecraft/core/registries/Registries/levelToLevelStem (Lnet/minecraft/resources/ResourceKey;)Lnet/minecraft/resources/ResourceKey; +MD: net/minecraft/core/registries/Registries/m_257551_ (Lnet/minecraft/resources/ResourceKey;)Lnet/minecraft/resources/ResourceKey; net/minecraft/core/registries/Registries/levelStemToLevel (Lnet/minecraft/resources/ResourceKey;)Lnet/minecraft/resources/ResourceKey; +MD: net/minecraft/data/BlockFamilies/ ()V net/minecraft/data/BlockFamilies/ ()V +MD: net/minecraft/data/BlockFamilies/ ()V net/minecraft/data/BlockFamilies/ ()V +MD: net/minecraft/data/BlockFamilies/m_175934_ ()Ljava/util/stream/Stream; net/minecraft/data/BlockFamilies/getAllFamilies ()Ljava/util/stream/Stream; +MD: net/minecraft/data/BlockFamilies/m_175935_ (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/data/BlockFamily$Builder; net/minecraft/data/BlockFamilies/familyBuilder (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/data/BlockFamily$Builder; +MD: net/minecraft/data/BlockFamily/ (Lnet/minecraft/world/level/block/Block;)V net/minecraft/data/BlockFamily/ (Lnet/minecraft/world/level/block/Block;)V +MD: net/minecraft/data/BlockFamily/m_175951_ ()Lnet/minecraft/world/level/block/Block; net/minecraft/data/BlockFamily/getBaseBlock ()Lnet/minecraft/world/level/block/Block; +MD: net/minecraft/data/BlockFamily/m_175952_ (Lnet/minecraft/data/BlockFamily$Variant;)Lnet/minecraft/world/level/block/Block; net/minecraft/data/BlockFamily/get (Lnet/minecraft/data/BlockFamily$Variant;)Lnet/minecraft/world/level/block/Block; +MD: net/minecraft/data/BlockFamily/m_175954_ ()Ljava/util/Map; net/minecraft/data/BlockFamily/getVariants ()Ljava/util/Map; +MD: net/minecraft/data/BlockFamily/m_175955_ ()Z net/minecraft/data/BlockFamily/shouldGenerateModel ()Z +MD: net/minecraft/data/BlockFamily/m_175957_ ()Ljava/util/Optional; net/minecraft/data/BlockFamily/getRecipeGroupPrefix ()Ljava/util/Optional; +MD: net/minecraft/data/BlockFamily/m_175958_ ()Ljava/util/Optional; net/minecraft/data/BlockFamily/getRecipeUnlockedBy ()Ljava/util/Optional; +MD: net/minecraft/data/BlockFamily/m_245288_ (Lnet/minecraft/world/flag/FeatureFlagSet;)Z net/minecraft/data/BlockFamily/shouldGenerateRecipe (Lnet/minecraft/world/flag/FeatureFlagSet;)Z +MD: net/minecraft/data/BlockFamily$Builder/ (Lnet/minecraft/world/level/block/Block;)V net/minecraft/data/BlockFamily$Builder/ (Lnet/minecraft/world/level/block/Block;)V +MD: net/minecraft/data/BlockFamily$Builder/m_175962_ ()Lnet/minecraft/data/BlockFamily; net/minecraft/data/BlockFamily$Builder/getFamily ()Lnet/minecraft/data/BlockFamily; +MD: net/minecraft/data/BlockFamily$Builder/m_175963_ (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/data/BlockFamily$Builder; net/minecraft/data/BlockFamily$Builder/button (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/data/BlockFamily$Builder; +MD: net/minecraft/data/BlockFamily$Builder/m_175965_ (Lnet/minecraft/world/level/block/Block;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/data/BlockFamily$Builder; net/minecraft/data/BlockFamily$Builder/sign (Lnet/minecraft/world/level/block/Block;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/data/BlockFamily$Builder; +MD: net/minecraft/data/BlockFamily$Builder/m_175968_ (Ljava/lang/String;)Lnet/minecraft/data/BlockFamily$Builder; net/minecraft/data/BlockFamily$Builder/recipeGroupPrefix (Ljava/lang/String;)Lnet/minecraft/data/BlockFamily$Builder; +MD: net/minecraft/data/BlockFamily$Builder/m_175970_ ()Lnet/minecraft/data/BlockFamily$Builder; net/minecraft/data/BlockFamily$Builder/dontGenerateModel ()Lnet/minecraft/data/BlockFamily$Builder; +MD: net/minecraft/data/BlockFamily$Builder/m_175971_ (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/data/BlockFamily$Builder; net/minecraft/data/BlockFamily$Builder/chiseled (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/data/BlockFamily$Builder; +MD: net/minecraft/data/BlockFamily$Builder/m_175973_ (Ljava/lang/String;)Lnet/minecraft/data/BlockFamily$Builder; net/minecraft/data/BlockFamily$Builder/recipeUnlockedBy (Ljava/lang/String;)Lnet/minecraft/data/BlockFamily$Builder; +MD: net/minecraft/data/BlockFamily$Builder/m_175975_ ()Lnet/minecraft/data/BlockFamily$Builder; net/minecraft/data/BlockFamily$Builder/dontGenerateRecipe ()Lnet/minecraft/data/BlockFamily$Builder; +MD: net/minecraft/data/BlockFamily$Builder/m_175976_ (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/data/BlockFamily$Builder; net/minecraft/data/BlockFamily$Builder/cracked (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/data/BlockFamily$Builder; +MD: net/minecraft/data/BlockFamily$Builder/m_175978_ (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/data/BlockFamily$Builder; net/minecraft/data/BlockFamily$Builder/cut (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/data/BlockFamily$Builder; +MD: net/minecraft/data/BlockFamily$Builder/m_175980_ (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/data/BlockFamily$Builder; net/minecraft/data/BlockFamily$Builder/door (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/data/BlockFamily$Builder; +MD: net/minecraft/data/BlockFamily$Builder/m_175982_ (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/data/BlockFamily$Builder; net/minecraft/data/BlockFamily$Builder/fence (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/data/BlockFamily$Builder; +MD: net/minecraft/data/BlockFamily$Builder/m_175984_ (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/data/BlockFamily$Builder; net/minecraft/data/BlockFamily$Builder/fenceGate (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/data/BlockFamily$Builder; +MD: net/minecraft/data/BlockFamily$Builder/m_175986_ (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/data/BlockFamily$Builder; net/minecraft/data/BlockFamily$Builder/slab (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/data/BlockFamily$Builder; +MD: net/minecraft/data/BlockFamily$Builder/m_175988_ (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/data/BlockFamily$Builder; net/minecraft/data/BlockFamily$Builder/stairs (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/data/BlockFamily$Builder; +MD: net/minecraft/data/BlockFamily$Builder/m_175990_ (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/data/BlockFamily$Builder; net/minecraft/data/BlockFamily$Builder/pressurePlate (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/data/BlockFamily$Builder; +MD: net/minecraft/data/BlockFamily$Builder/m_175992_ (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/data/BlockFamily$Builder; net/minecraft/data/BlockFamily$Builder/polished (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/data/BlockFamily$Builder; +MD: net/minecraft/data/BlockFamily$Builder/m_175994_ (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/data/BlockFamily$Builder; net/minecraft/data/BlockFamily$Builder/trapdoor (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/data/BlockFamily$Builder; +MD: net/minecraft/data/BlockFamily$Builder/m_175996_ (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/data/BlockFamily$Builder; net/minecraft/data/BlockFamily$Builder/wall (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/data/BlockFamily$Builder; +MD: net/minecraft/data/BlockFamily$Builder/m_245388_ (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/data/BlockFamily$Builder; net/minecraft/data/BlockFamily$Builder/mosaic (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/data/BlockFamily$Builder; +MD: net/minecraft/data/BlockFamily$Builder/m_245652_ ([Lnet/minecraft/world/flag/FeatureFlag;)Lnet/minecraft/data/BlockFamily$Builder; net/minecraft/data/BlockFamily$Builder/featureLockedBehind ([Lnet/minecraft/world/flag/FeatureFlag;)Lnet/minecraft/data/BlockFamily$Builder; +MD: net/minecraft/data/BlockFamily$Builder/m_246792_ (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/data/BlockFamily$Builder; net/minecraft/data/BlockFamily$Builder/customFence (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/data/BlockFamily$Builder; +MD: net/minecraft/data/BlockFamily$Builder/m_247314_ (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/data/BlockFamily$Builder; net/minecraft/data/BlockFamily$Builder/customFenceGate (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/data/BlockFamily$Builder; +MD: net/minecraft/data/BlockFamily$Variant/ ()V net/minecraft/data/BlockFamily$Variant/ ()V +MD: net/minecraft/data/BlockFamily$Variant/ (Ljava/lang/String;ILjava/lang/String;)V net/minecraft/data/BlockFamily$Variant/ (Ljava/lang/String;ILjava/lang/String;)V +MD: net/minecraft/data/BlockFamily$Variant/m_176020_ ()Ljava/lang/String; net/minecraft/data/BlockFamily$Variant/getName ()Ljava/lang/String; +MD: net/minecraft/data/BlockFamily$Variant/m_176021_ ()[Lnet/minecraft/data/BlockFamily$Variant; net/minecraft/data/BlockFamily$Variant/$values ()[Lnet/minecraft/data/BlockFamily$Variant; +MD: net/minecraft/data/BlockFamily$Variant/valueOf (Ljava/lang/String;)Lnet/minecraft/data/BlockFamily$Variant; net/minecraft/data/BlockFamily$Variant/valueOf (Ljava/lang/String;)Lnet/minecraft/data/BlockFamily$Variant; +MD: net/minecraft/data/BlockFamily$Variant/values ()[Lnet/minecraft/data/BlockFamily$Variant; net/minecraft/data/BlockFamily$Variant/values ()[Lnet/minecraft/data/BlockFamily$Variant; +MD: net/minecraft/data/CachedOutput/ ()V net/minecraft/data/CachedOutput/ ()V +MD: net/minecraft/data/CachedOutput/m_213871_ (Ljava/nio/file/Path;[BLcom/google/common/hash/HashCode;)V net/minecraft/data/CachedOutput/writeIfNeeded (Ljava/nio/file/Path;[BLcom/google/common/hash/HashCode;)V +MD: net/minecraft/data/CachedOutput/m_236018_ (Ljava/nio/file/Path;[BLcom/google/common/hash/HashCode;)V net/minecraft/data/CachedOutput/lambda$static$0 (Ljava/nio/file/Path;[BLcom/google/common/hash/HashCode;)V +MD: net/minecraft/data/DataGenerator/ ()V net/minecraft/data/DataGenerator/ ()V +MD: net/minecraft/data/DataGenerator/ (Ljava/nio/file/Path;Lnet/minecraft/WorldVersion;Z)V net/minecraft/data/DataGenerator/ (Ljava/nio/file/Path;Lnet/minecraft/WorldVersion;Z)V +MD: net/minecraft/data/DataGenerator/m_123917_ ()V net/minecraft/data/DataGenerator/run ()V +MD: net/minecraft/data/DataGenerator/m_253030_ (ZLjava/lang/String;)Lnet/minecraft/data/DataGenerator$PackGenerator; net/minecraft/data/DataGenerator/getBuiltinDatapack (ZLjava/lang/String;)Lnet/minecraft/data/DataGenerator$PackGenerator; +MD: net/minecraft/data/DataGenerator/m_253147_ (Z)Lnet/minecraft/data/DataGenerator$PackGenerator; net/minecraft/data/DataGenerator/getVanillaPack (Z)Lnet/minecraft/data/DataGenerator$PackGenerator; +MD: net/minecraft/data/DataGenerator/m_253255_ (Lnet/minecraft/data/HashCache;Lcom/google/common/base/Stopwatch;Ljava/lang/String;Lnet/minecraft/data/DataProvider;)V net/minecraft/data/DataGenerator/lambda$run$0 (Lnet/minecraft/data/HashCache;Lcom/google/common/base/Stopwatch;Ljava/lang/String;Lnet/minecraft/data/DataProvider;)V +MD: net/minecraft/data/DataGenerator$PackGenerator/ (Lnet/minecraft/data/DataGenerator;ZLjava/lang/String;Lnet/minecraft/data/PackOutput;)V net/minecraft/data/DataGenerator$PackGenerator/ (Lnet/minecraft/data/DataGenerator;ZLjava/lang/String;Lnet/minecraft/data/PackOutput;)V +MD: net/minecraft/data/DataGenerator$PackGenerator/m_253108_ (Lnet/minecraft/data/DataProvider$Factory;)Lnet/minecraft/data/DataProvider; net/minecraft/data/DataGenerator$PackGenerator/addProvider (Lnet/minecraft/data/DataProvider$Factory;)Lnet/minecraft/data/DataProvider; +MD: net/minecraft/data/DataProvider/ ()V net/minecraft/data/DataProvider/ ()V +MD: net/minecraft/data/DataProvider/m_213708_ (Lnet/minecraft/data/CachedOutput;)Ljava/util/concurrent/CompletableFuture; net/minecraft/data/DataProvider/run (Lnet/minecraft/data/CachedOutput;)Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/data/DataProvider/m_236069_ (Lit/unimi/dsi/fastutil/objects/Object2IntOpenHashMap;)V net/minecraft/data/DataProvider/lambda$static$0 (Lit/unimi/dsi/fastutil/objects/Object2IntOpenHashMap;)V +MD: net/minecraft/data/DataProvider/m_236076_ (Ljava/lang/String;)Ljava/lang/String; net/minecraft/data/DataProvider/lambda$static$1 (Ljava/lang/String;)Ljava/lang/String; +MD: net/minecraft/data/DataProvider/m_252607_ (Lcom/google/gson/JsonElement;Lnet/minecraft/data/CachedOutput;Ljava/nio/file/Path;)V net/minecraft/data/DataProvider/lambda$saveStable$2 (Lcom/google/gson/JsonElement;Lnet/minecraft/data/CachedOutput;Ljava/nio/file/Path;)V +MD: net/minecraft/data/DataProvider/m_253162_ (Lnet/minecraft/data/CachedOutput;Lcom/google/gson/JsonElement;Ljava/nio/file/Path;)Ljava/util/concurrent/CompletableFuture; net/minecraft/data/DataProvider/saveStable (Lnet/minecraft/data/CachedOutput;Lcom/google/gson/JsonElement;Ljava/nio/file/Path;)Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/data/DataProvider/m_6055_ ()Ljava/lang/String; net/minecraft/data/DataProvider/getName ()Ljava/lang/String; +MD: net/minecraft/data/DataProvider$Factory/m_253034_ (Lnet/minecraft/data/PackOutput;)Lnet/minecraft/data/DataProvider; net/minecraft/data/DataProvider$Factory/create (Lnet/minecraft/data/PackOutput;)Lnet/minecraft/data/DataProvider; +MD: net/minecraft/data/HashCache/ ()V net/minecraft/data/HashCache/ ()V +MD: net/minecraft/data/HashCache/ (Ljava/nio/file/Path;Ljava/util/Collection;Lnet/minecraft/WorldVersion;)V net/minecraft/data/HashCache/ (Ljava/nio/file/Path;Ljava/util/Collection;Lnet/minecraft/WorldVersion;)V +MD: net/minecraft/data/HashCache/m_123937_ ()V net/minecraft/data/HashCache/purgeStaleAndWrite ()V +MD: net/minecraft/data/HashCache/m_236092_ (Ljava/nio/file/Path;Ljava/nio/file/Path;)Lnet/minecraft/data/HashCache$ProviderCache; net/minecraft/data/HashCache/readCache (Ljava/nio/file/Path;Ljava/nio/file/Path;)Lnet/minecraft/data/HashCache$ProviderCache; +MD: net/minecraft/data/HashCache/m_236102_ (Lorg/apache/commons/lang3/mutable/MutableInt;Ljava/util/Set;Lorg/apache/commons/lang3/mutable/MutableInt;Ljava/nio/file/Path;)V net/minecraft/data/HashCache/lambda$purgeStaleAndWrite$2 (Lorg/apache/commons/lang3/mutable/MutableInt;Ljava/util/Set;Lorg/apache/commons/lang3/mutable/MutableInt;Ljava/nio/file/Path;)V +MD: net/minecraft/data/HashCache/m_252608_ (Lnet/minecraft/data/HashCache$CacheUpdater;Ljava/lang/Object;)Lnet/minecraft/data/HashCache$UpdateResult; net/minecraft/data/HashCache/lambda$generateUpdate$0 (Lnet/minecraft/data/HashCache$CacheUpdater;Ljava/lang/Object;)Lnet/minecraft/data/HashCache$UpdateResult; +MD: net/minecraft/data/HashCache/m_252609_ (Ljava/util/Set;Ljava/lang/String;Lnet/minecraft/data/HashCache$ProviderCache;)V net/minecraft/data/HashCache/lambda$purgeStaleAndWrite$1 (Ljava/util/Set;Ljava/lang/String;Lnet/minecraft/data/HashCache$ProviderCache;)V +MD: net/minecraft/data/HashCache/m_252859_ (Ljava/lang/String;)Ljava/nio/file/Path; net/minecraft/data/HashCache/getProviderCachePath (Ljava/lang/String;)Ljava/nio/file/Path; +MD: net/minecraft/data/HashCache/m_253116_ (Lnet/minecraft/data/HashCache$UpdateResult;)V net/minecraft/data/HashCache/applyUpdate (Lnet/minecraft/data/HashCache$UpdateResult;)V +MD: net/minecraft/data/HashCache/m_253234_ (Ljava/lang/String;Lnet/minecraft/data/HashCache$UpdateFunction;)Ljava/util/concurrent/CompletableFuture; net/minecraft/data/HashCache/generateUpdate (Ljava/lang/String;Lnet/minecraft/data/HashCache$UpdateFunction;)Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/data/HashCache/m_253256_ (Ljava/lang/String;)Z net/minecraft/data/HashCache/shouldRunInThisVersion (Ljava/lang/String;)Z +MD: net/minecraft/data/HashCache$CacheUpdater/ (Lnet/minecraft/data/HashCache;Ljava/lang/String;Ljava/lang/String;Lnet/minecraft/data/HashCache$ProviderCache;)V net/minecraft/data/HashCache$CacheUpdater/ (Lnet/minecraft/data/HashCache;Ljava/lang/String;Ljava/lang/String;Lnet/minecraft/data/HashCache$ProviderCache;)V +MD: net/minecraft/data/HashCache$CacheUpdater/m_213871_ (Ljava/nio/file/Path;[BLcom/google/common/hash/HashCode;)V net/minecraft/data/HashCache$CacheUpdater/writeIfNeeded (Ljava/nio/file/Path;[BLcom/google/common/hash/HashCode;)V +MD: net/minecraft/data/HashCache$CacheUpdater/m_236119_ (Ljava/nio/file/Path;Lcom/google/common/hash/HashCode;)Z net/minecraft/data/HashCache$CacheUpdater/shouldWrite (Ljava/nio/file/Path;Lcom/google/common/hash/HashCode;)Z +MD: net/minecraft/data/HashCache$CacheUpdater/m_253164_ ()Lnet/minecraft/data/HashCache$UpdateResult; net/minecraft/data/HashCache$CacheUpdater/close ()Lnet/minecraft/data/HashCache$UpdateResult; +MD: net/minecraft/data/HashCache$ProviderCache/ (Ljava/lang/String;Lcom/google/common/collect/ImmutableMap;)V net/minecraft/data/HashCache$ProviderCache/ (Ljava/lang/String;Lcom/google/common/collect/ImmutableMap;)V +MD: net/minecraft/data/HashCache$ProviderCache/equals (Ljava/lang/Object;)Z net/minecraft/data/HashCache$ProviderCache/equals (Ljava/lang/Object;)Z +MD: net/minecraft/data/HashCache$ProviderCache/f_236126_ ()Ljava/lang/String; net/minecraft/data/HashCache$ProviderCache/version ()Ljava/lang/String; +MD: net/minecraft/data/HashCache$ProviderCache/f_236127_ ()Lcom/google/common/collect/ImmutableMap; net/minecraft/data/HashCache$ProviderCache/data ()Lcom/google/common/collect/ImmutableMap; +MD: net/minecraft/data/HashCache$ProviderCache/hashCode ()I net/minecraft/data/HashCache$ProviderCache/hashCode ()I +MD: net/minecraft/data/HashCache$ProviderCache/m_236133_ ()I net/minecraft/data/HashCache$ProviderCache/count ()I +MD: net/minecraft/data/HashCache$ProviderCache/m_236134_ (Ljava/nio/file/Path;)Lcom/google/common/hash/HashCode; net/minecraft/data/HashCache$ProviderCache/get (Ljava/nio/file/Path;)Lcom/google/common/hash/HashCode; +MD: net/minecraft/data/HashCache$ProviderCache/m_236139_ (Ljava/nio/file/Path;Ljava/nio/file/Path;)Lnet/minecraft/data/HashCache$ProviderCache; net/minecraft/data/HashCache$ProviderCache/load (Ljava/nio/file/Path;Ljava/nio/file/Path;)Lnet/minecraft/data/HashCache$ProviderCache; +MD: net/minecraft/data/HashCache$ProviderCache/m_236142_ (Ljava/nio/file/Path;Ljava/nio/file/Path;Ljava/lang/String;)V net/minecraft/data/HashCache$ProviderCache/save (Ljava/nio/file/Path;Ljava/nio/file/Path;Ljava/lang/String;)V +MD: net/minecraft/data/HashCache$ProviderCache/m_252610_ (Lcom/google/common/collect/ImmutableMap$Builder;Ljava/nio/file/Path;Ljava/lang/String;)V net/minecraft/data/HashCache$ProviderCache/lambda$load$0 (Lcom/google/common/collect/ImmutableMap$Builder;Ljava/nio/file/Path;Ljava/lang/String;)V +MD: net/minecraft/data/HashCache$ProviderCache/toString ()Ljava/lang/String; net/minecraft/data/HashCache$ProviderCache/toString ()Ljava/lang/String; +MD: net/minecraft/data/HashCache$ProviderCacheBuilder/ (Ljava/lang/String;Ljava/util/concurrent/ConcurrentMap;)V net/minecraft/data/HashCache$ProviderCacheBuilder/ (Ljava/lang/String;Ljava/util/concurrent/ConcurrentMap;)V +MD: net/minecraft/data/HashCache$ProviderCacheBuilder/ (Ljava/lang/String;)V net/minecraft/data/HashCache$ProviderCacheBuilder/ (Ljava/lang/String;)V +MD: net/minecraft/data/HashCache$ProviderCacheBuilder/equals (Ljava/lang/Object;)Z net/minecraft/data/HashCache$ProviderCacheBuilder/equals (Ljava/lang/Object;)Z +MD: net/minecraft/data/HashCache$ProviderCacheBuilder/f_252424_ ()Ljava/lang/String; net/minecraft/data/HashCache$ProviderCacheBuilder/version ()Ljava/lang/String; +MD: net/minecraft/data/HashCache$ProviderCacheBuilder/f_252466_ ()Ljava/util/concurrent/ConcurrentMap; net/minecraft/data/HashCache$ProviderCacheBuilder/data ()Ljava/util/concurrent/ConcurrentMap; +MD: net/minecraft/data/HashCache$ProviderCacheBuilder/hashCode ()I net/minecraft/data/HashCache$ProviderCacheBuilder/hashCode ()I +MD: net/minecraft/data/HashCache$ProviderCacheBuilder/m_252796_ (Ljava/nio/file/Path;Lcom/google/common/hash/HashCode;)V net/minecraft/data/HashCache$ProviderCacheBuilder/put (Ljava/nio/file/Path;Lcom/google/common/hash/HashCode;)V +MD: net/minecraft/data/HashCache$ProviderCacheBuilder/m_252979_ ()Lnet/minecraft/data/HashCache$ProviderCache; net/minecraft/data/HashCache$ProviderCacheBuilder/build ()Lnet/minecraft/data/HashCache$ProviderCache; +MD: net/minecraft/data/HashCache$ProviderCacheBuilder/toString ()Ljava/lang/String; net/minecraft/data/HashCache$ProviderCacheBuilder/toString ()Ljava/lang/String; +MD: net/minecraft/data/HashCache$UpdateFunction/m_252999_ (Lnet/minecraft/data/CachedOutput;)Ljava/util/concurrent/CompletableFuture; net/minecraft/data/HashCache$UpdateFunction/update (Lnet/minecraft/data/CachedOutput;)Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/data/HashCache$UpdateResult/ (Ljava/lang/String;Lnet/minecraft/data/HashCache$ProviderCache;I)V net/minecraft/data/HashCache$UpdateResult/ (Ljava/lang/String;Lnet/minecraft/data/HashCache$ProviderCache;I)V +MD: net/minecraft/data/HashCache$UpdateResult/equals (Ljava/lang/Object;)Z net/minecraft/data/HashCache$UpdateResult/equals (Ljava/lang/Object;)Z +MD: net/minecraft/data/HashCache$UpdateResult/f_252422_ ()Ljava/lang/String; net/minecraft/data/HashCache$UpdateResult/providerId ()Ljava/lang/String; +MD: net/minecraft/data/HashCache$UpdateResult/f_252492_ ()I net/minecraft/data/HashCache$UpdateResult/writes ()I +MD: net/minecraft/data/HashCache$UpdateResult/f_252528_ ()Lnet/minecraft/data/HashCache$ProviderCache; net/minecraft/data/HashCache$UpdateResult/cache ()Lnet/minecraft/data/HashCache$ProviderCache; +MD: net/minecraft/data/HashCache$UpdateResult/hashCode ()I net/minecraft/data/HashCache$UpdateResult/hashCode ()I +MD: net/minecraft/data/HashCache$UpdateResult/toString ()Ljava/lang/String; net/minecraft/data/HashCache$UpdateResult/toString ()Ljava/lang/String; +MD: net/minecraft/data/Main/ ()V net/minecraft/data/Main/ ()V +MD: net/minecraft/data/Main/m_129658_ (Ljava/lang/String;)Ljava/nio/file/Path; net/minecraft/data/Main/lambda$main$0 (Ljava/lang/String;)Ljava/nio/file/Path; +MD: net/minecraft/data/Main/m_236679_ (Ljava/nio/file/Path;Ljava/util/Collection;ZZZZZLnet/minecraft/WorldVersion;Z)Lnet/minecraft/data/DataGenerator; net/minecraft/data/Main/createStandardGenerator (Ljava/nio/file/Path;Ljava/util/Collection;ZZZZZLnet/minecraft/WorldVersion;Z)Lnet/minecraft/data/DataGenerator; +MD: net/minecraft/data/Main/m_252612_ (Ljava/util/Collection;Lnet/minecraft/data/PackOutput;)Lnet/minecraft/data/structures/NbtToSnbt; net/minecraft/data/Main/lambda$createStandardGenerator$4 (Ljava/util/Collection;Lnet/minecraft/data/PackOutput;)Lnet/minecraft/data/structures/NbtToSnbt; +MD: net/minecraft/data/Main/m_252613_ (Ljava/util/Collection;Lnet/minecraft/data/PackOutput;)Lnet/minecraft/data/structures/SnbtToNbt; net/minecraft/data/Main/lambda$createStandardGenerator$2 (Ljava/util/Collection;Lnet/minecraft/data/PackOutput;)Lnet/minecraft/data/structures/SnbtToNbt; +MD: net/minecraft/data/Main/m_252616_ (Lnet/minecraft/data/PackOutput;)Lnet/minecraft/data/metadata/PackMetadataGenerator; net/minecraft/data/Main/lambda$createStandardGenerator$5 (Lnet/minecraft/data/PackOutput;)Lnet/minecraft/data/metadata/PackMetadataGenerator; +MD: net/minecraft/data/Main/m_254772_ (Ljava/util/function/BiFunction;Ljava/util/concurrent/CompletableFuture;Lnet/minecraft/data/PackOutput;)Lnet/minecraft/data/DataProvider; net/minecraft/data/Main/lambda$bindRegistries$1 (Ljava/util/function/BiFunction;Ljava/util/concurrent/CompletableFuture;Lnet/minecraft/data/PackOutput;)Lnet/minecraft/data/DataProvider; +MD: net/minecraft/data/Main/m_255400_ (Ljava/util/function/BiFunction;Ljava/util/concurrent/CompletableFuture;)Lnet/minecraft/data/DataProvider$Factory; net/minecraft/data/Main/bindRegistries (Ljava/util/function/BiFunction;Ljava/util/concurrent/CompletableFuture;)Lnet/minecraft/data/DataProvider$Factory; +MD: net/minecraft/data/Main/m_274033_ (Ljava/util/concurrent/CompletableFuture;Lnet/minecraft/data/tags/TagsProvider;Lnet/minecraft/data/PackOutput;)Lnet/minecraft/data/tags/VanillaItemTagsProvider; net/minecraft/data/Main/lambda$createStandardGenerator$3 (Ljava/util/concurrent/CompletableFuture;Lnet/minecraft/data/tags/TagsProvider;Lnet/minecraft/data/PackOutput;)Lnet/minecraft/data/tags/VanillaItemTagsProvider; +MD: net/minecraft/data/Main/main ([Ljava/lang/String;)V net/minecraft/data/Main/main ([Ljava/lang/String;)V +MD: net/minecraft/data/PackOutput/ (Ljava/nio/file/Path;)V net/minecraft/data/PackOutput/ (Ljava/nio/file/Path;)V +MD: net/minecraft/data/PackOutput/m_245114_ ()Ljava/nio/file/Path; net/minecraft/data/PackOutput/getOutputFolder ()Ljava/nio/file/Path; +MD: net/minecraft/data/PackOutput/m_245269_ (Lnet/minecraft/data/PackOutput$Target;Ljava/lang/String;)Lnet/minecraft/data/PackOutput$PathProvider; net/minecraft/data/PackOutput/createPathProvider (Lnet/minecraft/data/PackOutput$Target;Ljava/lang/String;)Lnet/minecraft/data/PackOutput$PathProvider; +MD: net/minecraft/data/PackOutput/m_247566_ (Lnet/minecraft/data/PackOutput$Target;)Ljava/nio/file/Path; net/minecraft/data/PackOutput/getOutputFolder (Lnet/minecraft/data/PackOutput$Target;)Ljava/nio/file/Path; +MD: net/minecraft/data/PackOutput$PathProvider/ (Lnet/minecraft/data/PackOutput;Lnet/minecraft/data/PackOutput$Target;Ljava/lang/String;)V net/minecraft/data/PackOutput$PathProvider/ (Lnet/minecraft/data/PackOutput;Lnet/minecraft/data/PackOutput$Target;Ljava/lang/String;)V +MD: net/minecraft/data/PackOutput$PathProvider/m_245527_ (Lnet/minecraft/resources/ResourceLocation;Ljava/lang/String;)Ljava/nio/file/Path; net/minecraft/data/PackOutput$PathProvider/file (Lnet/minecraft/resources/ResourceLocation;Ljava/lang/String;)Ljava/nio/file/Path; +MD: net/minecraft/data/PackOutput$PathProvider/m_245731_ (Lnet/minecraft/resources/ResourceLocation;)Ljava/nio/file/Path; net/minecraft/data/PackOutput$PathProvider/json (Lnet/minecraft/resources/ResourceLocation;)Ljava/nio/file/Path; +MD: net/minecraft/data/PackOutput$Target/ ()V net/minecraft/data/PackOutput$Target/ ()V +MD: net/minecraft/data/PackOutput$Target/ (Ljava/lang/String;ILjava/lang/String;)V net/minecraft/data/PackOutput$Target/ (Ljava/lang/String;ILjava/lang/String;)V +MD: net/minecraft/data/PackOutput$Target/m_245592_ ()[Lnet/minecraft/data/PackOutput$Target; net/minecraft/data/PackOutput$Target/$values ()[Lnet/minecraft/data/PackOutput$Target; +MD: net/minecraft/data/PackOutput$Target/valueOf (Ljava/lang/String;)Lnet/minecraft/data/PackOutput$Target; net/minecraft/data/PackOutput$Target/valueOf (Ljava/lang/String;)Lnet/minecraft/data/PackOutput$Target; +MD: net/minecraft/data/PackOutput$Target/values ()[Lnet/minecraft/data/PackOutput$Target; net/minecraft/data/PackOutput$Target/values ()[Lnet/minecraft/data/PackOutput$Target; +MD: net/minecraft/data/advancements/AdvancementProvider/ (Lnet/minecraft/data/PackOutput;Ljava/util/concurrent/CompletableFuture;Ljava/util/List;)V net/minecraft/data/advancements/AdvancementProvider/ (Lnet/minecraft/data/PackOutput;Ljava/util/concurrent/CompletableFuture;Ljava/util/List;)V +MD: net/minecraft/data/advancements/AdvancementProvider/m_213708_ (Lnet/minecraft/data/CachedOutput;)Ljava/util/concurrent/CompletableFuture; net/minecraft/data/advancements/AdvancementProvider/run (Lnet/minecraft/data/CachedOutput;)Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/data/advancements/AdvancementProvider/m_252617_ (I)[Ljava/util/concurrent/CompletableFuture; net/minecraft/data/advancements/AdvancementProvider/lambda$run$1 (I)[Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/data/advancements/AdvancementProvider/m_252618_ (Ljava/util/Set;Ljava/util/List;Lnet/minecraft/data/CachedOutput;Lnet/minecraft/advancements/Advancement;)V net/minecraft/data/advancements/AdvancementProvider/lambda$run$0 (Ljava/util/Set;Ljava/util/List;Lnet/minecraft/data/CachedOutput;Lnet/minecraft/advancements/Advancement;)V +MD: net/minecraft/data/advancements/AdvancementProvider/m_254775_ (Lnet/minecraft/data/CachedOutput;Lnet/minecraft/core/HolderLookup$Provider;)Ljava/util/concurrent/CompletionStage; net/minecraft/data/advancements/AdvancementProvider/lambda$run$2 (Lnet/minecraft/data/CachedOutput;Lnet/minecraft/core/HolderLookup$Provider;)Ljava/util/concurrent/CompletionStage; +MD: net/minecraft/data/advancements/AdvancementProvider/m_6055_ ()Ljava/lang/String; net/minecraft/data/advancements/AdvancementProvider/getName ()Ljava/lang/String; +MD: net/minecraft/data/advancements/AdvancementSubProvider/m_245571_ (Lnet/minecraft/core/HolderLookup$Provider;Ljava/util/function/Consumer;)V net/minecraft/data/advancements/AdvancementSubProvider/generate (Lnet/minecraft/core/HolderLookup$Provider;Ljava/util/function/Consumer;)V +MD: net/minecraft/data/advancements/AdvancementSubProvider/m_266597_ (Ljava/lang/String;)Lnet/minecraft/advancements/Advancement; net/minecraft/data/advancements/AdvancementSubProvider/createPlaceholder (Ljava/lang/String;)Lnet/minecraft/advancements/Advancement; +MD: net/minecraft/data/advancements/packs/VanillaAdvancementProvider/ ()V net/minecraft/data/advancements/packs/VanillaAdvancementProvider/ ()V +MD: net/minecraft/data/advancements/packs/VanillaAdvancementProvider/m_255090_ (Lnet/minecraft/data/PackOutput;Ljava/util/concurrent/CompletableFuture;)Lnet/minecraft/data/advancements/AdvancementProvider; net/minecraft/data/advancements/packs/VanillaAdvancementProvider/create (Lnet/minecraft/data/PackOutput;Ljava/util/concurrent/CompletableFuture;)Lnet/minecraft/data/advancements/AdvancementProvider; +MD: net/minecraft/data/advancements/packs/VanillaAdventureAdvancements/ ()V net/minecraft/data/advancements/packs/VanillaAdventureAdvancements/ ()V +MD: net/minecraft/data/advancements/packs/VanillaAdventureAdvancements/ ()V net/minecraft/data/advancements/packs/VanillaAdventureAdvancements/ ()V +MD: net/minecraft/data/advancements/packs/VanillaAdventureAdvancements/m_245571_ (Lnet/minecraft/core/HolderLookup$Provider;Ljava/util/function/Consumer;)V net/minecraft/data/advancements/packs/VanillaAdventureAdvancements/generate (Lnet/minecraft/core/HolderLookup$Provider;Ljava/util/function/Consumer;)V +MD: net/minecraft/data/advancements/packs/VanillaAdventureAdvancements/m_246284_ (Lnet/minecraft/advancements/Advancement$Builder;Ljava/util/List;)Lnet/minecraft/advancements/Advancement$Builder; net/minecraft/data/advancements/packs/VanillaAdventureAdvancements/addBiomes (Lnet/minecraft/advancements/Advancement$Builder;Ljava/util/List;)Lnet/minecraft/advancements/Advancement$Builder; +MD: net/minecraft/data/advancements/packs/VanillaAdventureAdvancements/m_246578_ (Lnet/minecraft/advancements/critereon/MinMaxBounds$Ints;Lnet/minecraft/advancements/critereon/EntityPredicate;)Lnet/minecraft/advancements/critereon/LightningStrikeTrigger$TriggerInstance; net/minecraft/data/advancements/packs/VanillaAdventureAdvancements/fireCountAndBystander (Lnet/minecraft/advancements/critereon/MinMaxBounds$Ints;Lnet/minecraft/advancements/critereon/EntityPredicate;)Lnet/minecraft/advancements/critereon/LightningStrikeTrigger$TriggerInstance; +MD: net/minecraft/data/advancements/packs/VanillaAdventureAdvancements/m_247530_ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/item/Item;)Lnet/minecraft/advancements/critereon/UsingItemTrigger$TriggerInstance; net/minecraft/data/advancements/packs/VanillaAdventureAdvancements/lookAtThroughItem (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/item/Item;)Lnet/minecraft/advancements/critereon/UsingItemTrigger$TriggerInstance; +MD: net/minecraft/data/advancements/packs/VanillaAdventureAdvancements/m_247704_ (Lnet/minecraft/advancements/Advancement$Builder;)Lnet/minecraft/advancements/Advancement$Builder; net/minecraft/data/advancements/packs/VanillaAdventureAdvancements/addMobsToKill (Lnet/minecraft/advancements/Advancement$Builder;)Lnet/minecraft/advancements/Advancement$Builder; +MD: net/minecraft/data/advancements/packs/VanillaAdventureAdvancements/m_274337_ (Ljava/util/function/Consumer;Lnet/minecraft/advancements/Advancement;Lnet/minecraft/world/level/biome/MultiNoiseBiomeSourceParameterList$Preset;)V net/minecraft/data/advancements/packs/VanillaAdventureAdvancements/createAdventuringTime (Ljava/util/function/Consumer;Lnet/minecraft/advancements/Advancement;Lnet/minecraft/world/level/biome/MultiNoiseBiomeSourceParameterList$Preset;)V +MD: net/minecraft/data/advancements/packs/VanillaAdventureAdvancements/m_284219_ (Lnet/minecraft/advancements/Advancement$Builder;)Lnet/minecraft/advancements/Advancement$Builder; net/minecraft/data/advancements/packs/VanillaAdventureAdvancements/craftingANewLook (Lnet/minecraft/advancements/Advancement$Builder;)Lnet/minecraft/advancements/Advancement$Builder; +MD: net/minecraft/data/advancements/packs/VanillaAdventureAdvancements/m_284237_ (Lnet/minecraft/advancements/Advancement$Builder;)Lnet/minecraft/advancements/Advancement$Builder; net/minecraft/data/advancements/packs/VanillaAdventureAdvancements/smithingWithStyle (Lnet/minecraft/advancements/Advancement$Builder;)Lnet/minecraft/advancements/Advancement$Builder; +MD: net/minecraft/data/advancements/packs/VanillaAdventureAdvancements/m_284250_ (I)[Ljava/lang/String; net/minecraft/data/advancements/packs/VanillaAdventureAdvancements/lambda$respectingTheRemnantsCriterions$5 (I)[Ljava/lang/String; +MD: net/minecraft/data/advancements/packs/VanillaAdventureAdvancements/m_284287_ (Lnet/minecraft/advancements/Advancement$Builder;)Lnet/minecraft/advancements/Advancement$Builder; net/minecraft/data/advancements/packs/VanillaAdventureAdvancements/respectingTheRemnantsCriterions (Lnet/minecraft/advancements/Advancement$Builder;)Lnet/minecraft/advancements/Advancement$Builder; +MD: net/minecraft/data/advancements/packs/VanillaAdventureAdvancements/m_284397_ (Ljava/util/Map;Lnet/minecraft/advancements/Advancement$Builder;Lnet/minecraft/world/item/Item;)V net/minecraft/data/advancements/packs/VanillaAdventureAdvancements/lambda$smithingWithStyle$4 (Ljava/util/Map;Lnet/minecraft/advancements/Advancement$Builder;Lnet/minecraft/world/item/Item;)V +MD: net/minecraft/data/advancements/packs/VanillaAdventureAdvancements/m_285711_ (Lnet/minecraft/core/Direction;)Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition$Builder; net/minecraft/data/advancements/packs/VanillaAdventureAdvancements/lambda$placedBlockReadByComparator$0 (Lnet/minecraft/core/Direction;)Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition$Builder; +MD: net/minecraft/data/advancements/packs/VanillaAdventureAdvancements/m_285712_ (I)[Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition$Builder; net/minecraft/data/advancements/packs/VanillaAdventureAdvancements/lambda$placedBlockReadByComparator$1 (I)[Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition$Builder; +MD: net/minecraft/data/advancements/packs/VanillaAdventureAdvancements/m_285713_ (Lnet/minecraft/world/level/block/Block;Lnet/minecraft/core/Direction;)Lnet/minecraft/world/level/storage/loot/predicates/AllOfCondition$Builder; net/minecraft/data/advancements/packs/VanillaAdventureAdvancements/lambda$placedComparatorReadingBlock$2 (Lnet/minecraft/world/level/block/Block;Lnet/minecraft/core/Direction;)Lnet/minecraft/world/level/storage/loot/predicates/AllOfCondition$Builder; +MD: net/minecraft/data/advancements/packs/VanillaAdventureAdvancements/m_285714_ (I)[Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition$Builder; net/minecraft/data/advancements/packs/VanillaAdventureAdvancements/lambda$placedComparatorReadingBlock$3 (I)[Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition$Builder; +MD: net/minecraft/data/advancements/packs/VanillaAdventureAdvancements/m_285999_ (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/advancements/CriterionTriggerInstance; net/minecraft/data/advancements/packs/VanillaAdventureAdvancements/placedComparatorReadingBlock (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/advancements/CriterionTriggerInstance; +MD: net/minecraft/data/advancements/packs/VanillaAdventureAdvancements/m_286005_ (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/advancements/CriterionTriggerInstance; net/minecraft/data/advancements/packs/VanillaAdventureAdvancements/placedBlockReadByComparator (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/advancements/CriterionTriggerInstance; +MD: net/minecraft/data/advancements/packs/VanillaHusbandryAdvancements/ ()V net/minecraft/data/advancements/packs/VanillaHusbandryAdvancements/ ()V +MD: net/minecraft/data/advancements/packs/VanillaHusbandryAdvancements/ ()V net/minecraft/data/advancements/packs/VanillaHusbandryAdvancements/ ()V +MD: net/minecraft/data/advancements/packs/VanillaHusbandryAdvancements/m_245400_ (Lnet/minecraft/advancements/Advancement$Builder;Ljava/util/Map$Entry;)V net/minecraft/data/advancements/packs/VanillaHusbandryAdvancements/lambda$addCatVariants$3 (Lnet/minecraft/advancements/Advancement$Builder;Ljava/util/Map$Entry;)V +MD: net/minecraft/data/advancements/packs/VanillaHusbandryAdvancements/m_245571_ (Lnet/minecraft/core/HolderLookup$Provider;Ljava/util/function/Consumer;)V net/minecraft/data/advancements/packs/VanillaHusbandryAdvancements/generate (Lnet/minecraft/core/HolderLookup$Provider;Ljava/util/function/Consumer;)V +MD: net/minecraft/data/advancements/packs/VanillaHusbandryAdvancements/m_245640_ (Lnet/minecraft/advancements/Advancement$Builder;)Lnet/minecraft/advancements/Advancement$Builder; net/minecraft/data/advancements/packs/VanillaHusbandryAdvancements/addFish (Lnet/minecraft/advancements/Advancement$Builder;)Lnet/minecraft/advancements/Advancement$Builder; +MD: net/minecraft/data/advancements/packs/VanillaHusbandryAdvancements/m_246714_ (Lnet/minecraft/advancements/Advancement$Builder;)Lnet/minecraft/advancements/Advancement$Builder; net/minecraft/data/advancements/packs/VanillaHusbandryAdvancements/addFishBuckets (Lnet/minecraft/advancements/Advancement$Builder;)Lnet/minecraft/advancements/Advancement$Builder; +MD: net/minecraft/data/advancements/packs/VanillaHusbandryAdvancements/m_246845_ (Lnet/minecraft/advancements/Advancement$Builder;)Lnet/minecraft/advancements/Advancement$Builder; net/minecraft/data/advancements/packs/VanillaHusbandryAdvancements/addLeashedFrogVariants (Lnet/minecraft/advancements/Advancement$Builder;)Lnet/minecraft/advancements/Advancement$Builder; +MD: net/minecraft/data/advancements/packs/VanillaHusbandryAdvancements/m_247039_ (Lnet/minecraft/advancements/Advancement$Builder;)Lnet/minecraft/advancements/Advancement$Builder; net/minecraft/data/advancements/packs/VanillaHusbandryAdvancements/addFood (Lnet/minecraft/advancements/Advancement$Builder;)Lnet/minecraft/advancements/Advancement$Builder; +MD: net/minecraft/data/advancements/packs/VanillaHusbandryAdvancements/m_247568_ (Lnet/minecraft/advancements/Advancement$Builder;)Lnet/minecraft/advancements/Advancement$Builder; net/minecraft/data/advancements/packs/VanillaHusbandryAdvancements/addCatVariants (Lnet/minecraft/advancements/Advancement$Builder;)Lnet/minecraft/advancements/Advancement$Builder; +MD: net/minecraft/data/advancements/packs/VanillaHusbandryAdvancements/m_266128_ (Lnet/minecraft/advancements/Advancement$Builder;Lnet/minecraft/world/entity/EntityType;)V net/minecraft/data/advancements/packs/VanillaHusbandryAdvancements/lambda$addBreedable$2 (Lnet/minecraft/advancements/Advancement$Builder;Lnet/minecraft/world/entity/EntityType;)V +MD: net/minecraft/data/advancements/packs/VanillaHusbandryAdvancements/m_266129_ (Lnet/minecraft/advancements/Advancement$Builder;Lnet/minecraft/world/entity/EntityType;)V net/minecraft/data/advancements/packs/VanillaHusbandryAdvancements/lambda$addBreedable$1 (Lnet/minecraft/advancements/Advancement$Builder;Lnet/minecraft/world/entity/EntityType;)V +MD: net/minecraft/data/advancements/packs/VanillaHusbandryAdvancements/m_266319_ (Lnet/minecraft/advancements/Advancement$Builder;Ljava/util/stream/Stream;Ljava/util/stream/Stream;)Lnet/minecraft/advancements/Advancement$Builder; net/minecraft/data/advancements/packs/VanillaHusbandryAdvancements/addBreedable (Lnet/minecraft/advancements/Advancement$Builder;Ljava/util/stream/Stream;Ljava/util/stream/Stream;)Lnet/minecraft/advancements/Advancement$Builder; +MD: net/minecraft/data/advancements/packs/VanillaHusbandryAdvancements/m_266572_ (Lnet/minecraft/advancements/Advancement;Ljava/util/function/Consumer;Ljava/util/stream/Stream;Ljava/util/stream/Stream;)Lnet/minecraft/advancements/Advancement; net/minecraft/data/advancements/packs/VanillaHusbandryAdvancements/createBreedAllAnimalsAdvancement (Lnet/minecraft/advancements/Advancement;Ljava/util/function/Consumer;Ljava/util/stream/Stream;Ljava/util/stream/Stream;)Lnet/minecraft/advancements/Advancement; +MD: net/minecraft/data/advancements/packs/VanillaHusbandryAdvancements/m_285715_ (Lnet/minecraft/advancements/Advancement$Builder;Lnet/minecraft/core/Holder$Reference;)V net/minecraft/data/advancements/packs/VanillaHusbandryAdvancements/lambda$addLeashedFrogVariants$0 (Lnet/minecraft/advancements/Advancement$Builder;Lnet/minecraft/core/Holder$Reference;)V +MD: net/minecraft/data/advancements/packs/VanillaNetherAdvancements/ ()V net/minecraft/data/advancements/packs/VanillaNetherAdvancements/ ()V +MD: net/minecraft/data/advancements/packs/VanillaNetherAdvancements/ ()V net/minecraft/data/advancements/packs/VanillaNetherAdvancements/ ()V +MD: net/minecraft/data/advancements/packs/VanillaNetherAdvancements/m_245571_ (Lnet/minecraft/core/HolderLookup$Provider;Ljava/util/function/Consumer;)V net/minecraft/data/advancements/packs/VanillaNetherAdvancements/generate (Lnet/minecraft/core/HolderLookup$Provider;Ljava/util/function/Consumer;)V +MD: net/minecraft/data/advancements/packs/VanillaStoryAdvancements/ ()V net/minecraft/data/advancements/packs/VanillaStoryAdvancements/ ()V +MD: net/minecraft/data/advancements/packs/VanillaStoryAdvancements/m_245571_ (Lnet/minecraft/core/HolderLookup$Provider;Ljava/util/function/Consumer;)V net/minecraft/data/advancements/packs/VanillaStoryAdvancements/generate (Lnet/minecraft/core/HolderLookup$Provider;Ljava/util/function/Consumer;)V +MD: net/minecraft/data/advancements/packs/VanillaTheEndAdvancements/ ()V net/minecraft/data/advancements/packs/VanillaTheEndAdvancements/ ()V +MD: net/minecraft/data/advancements/packs/VanillaTheEndAdvancements/m_245571_ (Lnet/minecraft/core/HolderLookup$Provider;Ljava/util/function/Consumer;)V net/minecraft/data/advancements/packs/VanillaTheEndAdvancements/generate (Lnet/minecraft/core/HolderLookup$Provider;Ljava/util/function/Consumer;)V +MD: net/minecraft/data/info/BiomeParametersDumpReport/ ()V net/minecraft/data/info/BiomeParametersDumpReport/ ()V +MD: net/minecraft/data/info/BiomeParametersDumpReport/ (Lnet/minecraft/data/PackOutput;Ljava/util/concurrent/CompletableFuture;)V net/minecraft/data/info/BiomeParametersDumpReport/ (Lnet/minecraft/data/PackOutput;Ljava/util/concurrent/CompletableFuture;)V +MD: net/minecraft/data/info/BiomeParametersDumpReport/m_213708_ (Lnet/minecraft/data/CachedOutput;)Ljava/util/concurrent/CompletableFuture; net/minecraft/data/info/BiomeParametersDumpReport/run (Lnet/minecraft/data/CachedOutput;)Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/data/info/BiomeParametersDumpReport/m_236178_ (Lnet/minecraft/resources/ResourceLocation;)Ljava/nio/file/Path; net/minecraft/data/info/BiomeParametersDumpReport/createPath (Lnet/minecraft/resources/ResourceLocation;)Ljava/nio/file/Path; +MD: net/minecraft/data/info/BiomeParametersDumpReport/m_236193_ (Ljava/nio/file/Path;Ljava/lang/String;)V net/minecraft/data/info/BiomeParametersDumpReport/lambda$dumpValue$3 (Ljava/nio/file/Path;Ljava/lang/String;)V +MD: net/minecraft/data/info/BiomeParametersDumpReport/m_252619_ (I)[Ljava/util/concurrent/CompletableFuture; net/minecraft/data/info/BiomeParametersDumpReport/lambda$run$1 (I)[Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/data/info/BiomeParametersDumpReport/m_253112_ (Ljava/nio/file/Path;Lnet/minecraft/data/CachedOutput;Lcom/mojang/serialization/DynamicOps;Lcom/mojang/serialization/Encoder;Ljava/lang/Object;)Ljava/util/concurrent/CompletableFuture; net/minecraft/data/info/BiomeParametersDumpReport/dumpValue (Ljava/nio/file/Path;Lnet/minecraft/data/CachedOutput;Lcom/mojang/serialization/DynamicOps;Lcom/mojang/serialization/Encoder;Ljava/lang/Object;)Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/data/info/BiomeParametersDumpReport/m_274034_ (Lnet/minecraft/data/CachedOutput;Lnet/minecraft/core/HolderLookup$Provider;)Ljava/util/concurrent/CompletionStage; net/minecraft/data/info/BiomeParametersDumpReport/lambda$run$2 (Lnet/minecraft/data/CachedOutput;Lnet/minecraft/core/HolderLookup$Provider;)Ljava/util/concurrent/CompletionStage; +MD: net/minecraft/data/info/BiomeParametersDumpReport/m_274035_ (Ljava/util/List;Lnet/minecraft/data/CachedOutput;Lcom/mojang/serialization/DynamicOps;Lnet/minecraft/world/level/biome/MultiNoiseBiomeSourceParameterList$Preset;Lnet/minecraft/world/level/biome/Climate$ParameterList;)V net/minecraft/data/info/BiomeParametersDumpReport/lambda$run$0 (Ljava/util/List;Lnet/minecraft/data/CachedOutput;Lcom/mojang/serialization/DynamicOps;Lnet/minecraft/world/level/biome/MultiNoiseBiomeSourceParameterList$Preset;Lnet/minecraft/world/level/biome/Climate$ParameterList;)V +MD: net/minecraft/data/info/BiomeParametersDumpReport/m_6055_ ()Ljava/lang/String; net/minecraft/data/info/BiomeParametersDumpReport/getName ()Ljava/lang/String; +MD: net/minecraft/data/info/BlockListReport/ (Lnet/minecraft/data/PackOutput;)V net/minecraft/data/info/BlockListReport/ (Lnet/minecraft/data/PackOutput;)V +MD: net/minecraft/data/info/BlockListReport/m_213708_ (Lnet/minecraft/data/CachedOutput;)Ljava/util/concurrent/CompletableFuture; net/minecraft/data/info/BlockListReport/run (Lnet/minecraft/data/CachedOutput;)Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/data/info/BlockListReport/m_6055_ ()Ljava/lang/String; net/minecraft/data/info/BlockListReport/getName ()Ljava/lang/String; +MD: net/minecraft/data/info/CommandsReport/ (Lnet/minecraft/data/PackOutput;Ljava/util/concurrent/CompletableFuture;)V net/minecraft/data/info/CommandsReport/ (Lnet/minecraft/data/PackOutput;Ljava/util/concurrent/CompletableFuture;)V +MD: net/minecraft/data/info/CommandsReport/m_213708_ (Lnet/minecraft/data/CachedOutput;)Ljava/util/concurrent/CompletableFuture; net/minecraft/data/info/CommandsReport/run (Lnet/minecraft/data/CachedOutput;)Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/data/info/CommandsReport/m_255064_ (Lnet/minecraft/data/CachedOutput;Ljava/nio/file/Path;Lnet/minecraft/core/HolderLookup$Provider;)Ljava/util/concurrent/CompletionStage; net/minecraft/data/info/CommandsReport/lambda$run$0 (Lnet/minecraft/data/CachedOutput;Ljava/nio/file/Path;Lnet/minecraft/core/HolderLookup$Provider;)Ljava/util/concurrent/CompletionStage; +MD: net/minecraft/data/info/CommandsReport/m_6055_ ()Ljava/lang/String; net/minecraft/data/info/CommandsReport/getName ()Ljava/lang/String; +MD: net/minecraft/data/info/RegistryDumpReport/ (Lnet/minecraft/data/PackOutput;)V net/minecraft/data/info/RegistryDumpReport/ (Lnet/minecraft/data/PackOutput;)V +MD: net/minecraft/data/info/RegistryDumpReport/m_124058_ (Lnet/minecraft/core/Registry;)Lcom/google/gson/JsonElement; net/minecraft/data/info/RegistryDumpReport/dumpRegistry (Lnet/minecraft/core/Registry;)Lcom/google/gson/JsonElement; +MD: net/minecraft/data/info/RegistryDumpReport/m_211086_ (Lcom/google/gson/JsonObject;Lnet/minecraft/core/Holder$Reference;)V net/minecraft/data/info/RegistryDumpReport/lambda$run$0 (Lcom/google/gson/JsonObject;Lnet/minecraft/core/Holder$Reference;)V +MD: net/minecraft/data/info/RegistryDumpReport/m_213708_ (Lnet/minecraft/data/CachedOutput;)Ljava/util/concurrent/CompletableFuture; net/minecraft/data/info/RegistryDumpReport/run (Lnet/minecraft/data/CachedOutput;)Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/data/info/RegistryDumpReport/m_257119_ (Lnet/minecraft/core/Registry;Lcom/google/gson/JsonObject;Lnet/minecraft/core/Holder$Reference;)V net/minecraft/data/info/RegistryDumpReport/lambda$dumpRegistry$1 (Lnet/minecraft/core/Registry;Lcom/google/gson/JsonObject;Lnet/minecraft/core/Holder$Reference;)V +MD: net/minecraft/data/info/RegistryDumpReport/m_6055_ ()Ljava/lang/String; net/minecraft/data/info/RegistryDumpReport/getName ()Ljava/lang/String; +MD: net/minecraft/data/loot/BlockLootSubProvider/ ()V net/minecraft/data/loot/BlockLootSubProvider/ ()V +MD: net/minecraft/data/loot/BlockLootSubProvider/ (Ljava/util/Set;Lnet/minecraft/world/flag/FeatureFlagSet;)V net/minecraft/data/loot/BlockLootSubProvider/ (Ljava/util/Set;Lnet/minecraft/world/flag/FeatureFlagSet;)V +MD: net/minecraft/data/loot/BlockLootSubProvider/ (Ljava/util/Set;Lnet/minecraft/world/flag/FeatureFlagSet;Ljava/util/Map;)V net/minecraft/data/loot/BlockLootSubProvider/ (Ljava/util/Set;Lnet/minecraft/world/flag/FeatureFlagSet;Ljava/util/Map;)V +MD: net/minecraft/data/loot/BlockLootSubProvider/m_245079_ (Lnet/minecraft/world/level/block/Block;Lnet/minecraft/world/level/ItemLike;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; net/minecraft/data/loot/BlockLootSubProvider/createMushroomBlockDrop (Lnet/minecraft/world/level/block/Block;Lnet/minecraft/world/level/ItemLike;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; +MD: net/minecraft/data/loot/BlockLootSubProvider/m_245126_ (Ljava/util/function/BiConsumer;)V net/minecraft/data/loot/BlockLootSubProvider/generate (Ljava/util/function/BiConsumer;)V +MD: net/minecraft/data/loot/BlockLootSubProvider/m_245142_ (Lnet/minecraft/world/level/block/Block;Lnet/minecraft/world/level/ItemLike;Lnet/minecraft/world/level/storage/loot/providers/number/NumberProvider;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; net/minecraft/data/loot/BlockLootSubProvider/createSingleItemTableWithSilkTouch (Lnet/minecraft/world/level/block/Block;Lnet/minecraft/world/level/ItemLike;Lnet/minecraft/world/level/storage/loot/providers/number/NumberProvider;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; +MD: net/minecraft/data/loot/BlockLootSubProvider/m_245170_ (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; net/minecraft/data/loot/BlockLootSubProvider/createMangroveLeavesDrops (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; +MD: net/minecraft/data/loot/BlockLootSubProvider/m_245178_ (Lnet/minecraft/world/level/block/Block;Lnet/minecraft/world/level/block/state/properties/Property;Ljava/lang/Comparable;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; net/minecraft/data/loot/BlockLootSubProvider/createSinglePropConditionTable (Lnet/minecraft/world/level/block/Block;Lnet/minecraft/world/level/block/state/properties/Property;Ljava/lang/Comparable;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; +MD: net/minecraft/data/loot/BlockLootSubProvider/m_245238_ (Lnet/minecraft/world/level/block/Block;Lnet/minecraft/world/item/Item;Lnet/minecraft/world/item/Item;Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition$Builder;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; net/minecraft/data/loot/BlockLootSubProvider/createCropDrops (Lnet/minecraft/world/level/block/Block;Lnet/minecraft/world/item/Item;Lnet/minecraft/world/item/Item;Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition$Builder;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; +MD: net/minecraft/data/loot/BlockLootSubProvider/m_245335_ (Lnet/minecraft/world/level/ItemLike;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; net/minecraft/data/loot/BlockLootSubProvider/createSilkTouchOnlyTable (Lnet/minecraft/world/level/ItemLike;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; +MD: net/minecraft/data/loot/BlockLootSubProvider/m_245349_ (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; net/minecraft/data/loot/BlockLootSubProvider/createGrassDrops (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; +MD: net/minecraft/data/loot/BlockLootSubProvider/m_245514_ (Lnet/minecraft/world/level/block/Block;Lnet/minecraft/world/level/ItemLike;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; net/minecraft/data/loot/BlockLootSubProvider/createSingleItemTableWithSilkTouch (Lnet/minecraft/world/level/block/Block;Lnet/minecraft/world/level/ItemLike;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; +MD: net/minecraft/data/loot/BlockLootSubProvider/m_245602_ (Lnet/minecraft/world/level/ItemLike;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; net/minecraft/data/loot/BlockLootSubProvider/createPotFlowerItemTable (Lnet/minecraft/world/level/ItemLike;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; +MD: net/minecraft/data/loot/BlockLootSubProvider/m_245644_ (Lnet/minecraft/world/level/block/Block;)V net/minecraft/data/loot/BlockLootSubProvider/dropWhenSilkTouch (Lnet/minecraft/world/level/block/Block;)V +MD: net/minecraft/data/loot/BlockLootSubProvider/m_245658_ (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; net/minecraft/data/loot/BlockLootSubProvider/createCaveVinesDrop (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; +MD: net/minecraft/data/loot/BlockLootSubProvider/m_245660_ ()V net/minecraft/data/loot/BlockLootSubProvider/generate ()V +MD: net/minecraft/data/loot/BlockLootSubProvider/m_245661_ (Lnet/minecraft/world/level/block/Block;Lnet/minecraft/core/Direction;)Lnet/minecraft/world/level/storage/loot/functions/LootItemFunction$Builder; net/minecraft/data/loot/BlockLootSubProvider/lambda$createMultifaceBlockDrops$1 (Lnet/minecraft/world/level/block/Block;Lnet/minecraft/core/Direction;)Lnet/minecraft/world/level/storage/loot/functions/LootItemFunction$Builder; +MD: net/minecraft/data/loot/BlockLootSubProvider/m_245671_ (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; net/minecraft/data/loot/BlockLootSubProvider/createRedstoneOreDrops (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; +MD: net/minecraft/data/loot/BlockLootSubProvider/m_245693_ (Lnet/minecraft/world/level/block/Block;Lnet/minecraft/world/level/block/Block;)V net/minecraft/data/loot/BlockLootSubProvider/addNetherVinesDropTable (Lnet/minecraft/world/level/block/Block;Lnet/minecraft/world/level/block/Block;)V +MD: net/minecraft/data/loot/BlockLootSubProvider/m_245724_ (Lnet/minecraft/world/level/block/Block;)V net/minecraft/data/loot/BlockLootSubProvider/dropSelf (Lnet/minecraft/world/level/block/Block;)V +MD: net/minecraft/data/loot/BlockLootSubProvider/m_245765_ (Lnet/minecraft/world/level/ItemLike;Lnet/minecraft/world/level/storage/loot/providers/number/NumberProvider;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; net/minecraft/data/loot/BlockLootSubProvider/createSingleItemTable (Lnet/minecraft/world/level/ItemLike;Lnet/minecraft/world/level/storage/loot/providers/number/NumberProvider;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; +MD: net/minecraft/data/loot/BlockLootSubProvider/m_245854_ (Lnet/minecraft/world/level/block/Block;Lnet/minecraft/world/level/block/Block;)V net/minecraft/data/loot/BlockLootSubProvider/otherWhenSilkTouch (Lnet/minecraft/world/level/block/Block;Lnet/minecraft/world/level/block/Block;)V +MD: net/minecraft/data/loot/BlockLootSubProvider/m_245895_ (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; net/minecraft/data/loot/BlockLootSubProvider/createCandleDrops (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; +MD: net/minecraft/data/loot/BlockLootSubProvider/m_245929_ (Lnet/minecraft/world/level/ItemLike;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; net/minecraft/data/loot/BlockLootSubProvider/createShearsOnlyDrop (Lnet/minecraft/world/level/ItemLike;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; +MD: net/minecraft/data/loot/BlockLootSubProvider/m_246047_ (Lnet/minecraft/world/level/block/Block;Lnet/minecraft/world/level/block/Block;[F)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; net/minecraft/data/loot/BlockLootSubProvider/createLeavesDrops (Lnet/minecraft/world/level/block/Block;Lnet/minecraft/world/level/block/Block;[F)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; +MD: net/minecraft/data/loot/BlockLootSubProvider/m_246087_ (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; net/minecraft/data/loot/BlockLootSubProvider/lambda$dropPottedContents$4 (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; +MD: net/minecraft/data/loot/BlockLootSubProvider/m_246108_ (Lnet/minecraft/world/level/ItemLike;Lnet/minecraft/world/level/storage/loot/functions/FunctionUserBuilder;)Lnet/minecraft/world/level/storage/loot/functions/FunctionUserBuilder; net/minecraft/data/loot/BlockLootSubProvider/applyExplosionDecay (Lnet/minecraft/world/level/ItemLike;Lnet/minecraft/world/level/storage/loot/functions/FunctionUserBuilder;)Lnet/minecraft/world/level/storage/loot/functions/FunctionUserBuilder; +MD: net/minecraft/data/loot/BlockLootSubProvider/m_246109_ (Lnet/minecraft/world/level/block/Block;Lnet/minecraft/world/item/Item;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; net/minecraft/data/loot/BlockLootSubProvider/createOreDrop (Lnet/minecraft/world/level/block/Block;Lnet/minecraft/world/item/Item;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; +MD: net/minecraft/data/loot/BlockLootSubProvider/m_246125_ (Lnet/minecraft/world/level/block/Block;Lnet/minecraft/world/level/ItemLike;)V net/minecraft/data/loot/BlockLootSubProvider/dropOther (Lnet/minecraft/world/level/block/Block;Lnet/minecraft/world/level/ItemLike;)V +MD: net/minecraft/data/loot/BlockLootSubProvider/m_246142_ (Lnet/minecraft/world/level/block/Block;Lnet/minecraft/world/level/block/Block;[F)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; net/minecraft/data/loot/BlockLootSubProvider/createOakLeavesDrops (Lnet/minecraft/world/level/block/Block;Lnet/minecraft/world/level/block/Block;[F)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; +MD: net/minecraft/data/loot/BlockLootSubProvider/m_246160_ (Lnet/minecraft/world/level/block/Block;Lnet/minecraft/world/level/storage/loot/entries/LootPoolEntryContainer$Builder;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; net/minecraft/data/loot/BlockLootSubProvider/createSilkTouchOrShearsDispatchTable (Lnet/minecraft/world/level/block/Block;Lnet/minecraft/world/level/storage/loot/entries/LootPoolEntryContainer$Builder;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; +MD: net/minecraft/data/loot/BlockLootSubProvider/m_246167_ (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; net/minecraft/data/loot/BlockLootSubProvider/createCopperOreDrops (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; +MD: net/minecraft/data/loot/BlockLootSubProvider/m_246180_ (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; net/minecraft/data/loot/BlockLootSubProvider/createNameableBlockEntityTable (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; +MD: net/minecraft/data/loot/BlockLootSubProvider/m_246218_ (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; net/minecraft/data/loot/BlockLootSubProvider/createLapisOreDrops (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; +MD: net/minecraft/data/loot/BlockLootSubProvider/m_246224_ (Lnet/minecraft/world/level/block/Block;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; net/minecraft/data/loot/BlockLootSubProvider/createDoublePlantWithSeedDrops (Lnet/minecraft/world/level/block/Block;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; +MD: net/minecraft/data/loot/BlockLootSubProvider/m_246235_ (Lnet/minecraft/world/level/block/Block;Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition$Builder;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; net/minecraft/data/loot/BlockLootSubProvider/createMultifaceBlockDrops (Lnet/minecraft/world/level/block/Block;Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition$Builder;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; +MD: net/minecraft/data/loot/BlockLootSubProvider/m_246312_ (Lnet/minecraft/world/level/block/Block;Lnet/minecraft/world/item/Item;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; net/minecraft/data/loot/BlockLootSubProvider/createAttachedStemDrops (Lnet/minecraft/world/level/block/Block;Lnet/minecraft/world/item/Item;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; +MD: net/minecraft/data/loot/BlockLootSubProvider/m_246386_ ()Lnet/minecraft/world/level/storage/loot/LootTable$Builder; net/minecraft/data/loot/BlockLootSubProvider/noDrop ()Lnet/minecraft/world/level/storage/loot/LootTable$Builder; +MD: net/minecraft/data/loot/BlockLootSubProvider/m_246463_ (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; net/minecraft/data/loot/BlockLootSubProvider/createDoublePlantShearsDrop (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; +MD: net/minecraft/data/loot/BlockLootSubProvider/m_246481_ (Lnet/minecraft/world/level/block/Block;Ljava/util/function/Function;)V net/minecraft/data/loot/BlockLootSubProvider/add (Lnet/minecraft/world/level/block/Block;Ljava/util/function/Function;)V +MD: net/minecraft/data/loot/BlockLootSubProvider/m_246535_ (Lnet/minecraft/world/level/block/Block;)V net/minecraft/data/loot/BlockLootSubProvider/dropPottedContents (Lnet/minecraft/world/level/block/Block;)V +MD: net/minecraft/data/loot/BlockLootSubProvider/m_246838_ (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; net/minecraft/data/loot/BlockLootSubProvider/createCandleCakeDrops (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; +MD: net/minecraft/data/loot/BlockLootSubProvider/m_246855_ (Lnet/minecraft/world/level/block/Block;Ljava/lang/Integer;)Lnet/minecraft/world/level/storage/loot/functions/LootItemFunction$Builder; net/minecraft/data/loot/BlockLootSubProvider/lambda$createCandleDrops$2 (Lnet/minecraft/world/level/block/Block;Ljava/lang/Integer;)Lnet/minecraft/world/level/storage/loot/functions/LootItemFunction$Builder; +MD: net/minecraft/data/loot/BlockLootSubProvider/m_246900_ (Lnet/minecraft/world/level/block/Block;Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition$Builder;Lnet/minecraft/world/level/storage/loot/entries/LootPoolEntryContainer$Builder;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; net/minecraft/data/loot/BlockLootSubProvider/createSelfDropDispatchTable (Lnet/minecraft/world/level/block/Block;Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition$Builder;Lnet/minecraft/world/level/storage/loot/entries/LootPoolEntryContainer$Builder;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; +MD: net/minecraft/data/loot/BlockLootSubProvider/m_247033_ (Lnet/minecraft/world/level/ItemLike;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; net/minecraft/data/loot/BlockLootSubProvider/createSingleItemTable (Lnet/minecraft/world/level/ItemLike;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; +MD: net/minecraft/data/loot/BlockLootSubProvider/m_247103_ (Lnet/minecraft/world/level/block/Block;Ljava/lang/Integer;)Lnet/minecraft/world/level/storage/loot/functions/LootItemFunction$Builder; net/minecraft/data/loot/BlockLootSubProvider/lambda$createStemDrops$0 (Lnet/minecraft/world/level/block/Block;Ljava/lang/Integer;)Lnet/minecraft/world/level/storage/loot/functions/LootItemFunction$Builder; +MD: net/minecraft/data/loot/BlockLootSubProvider/m_247184_ (Lnet/minecraft/world/level/block/Block;Lnet/minecraft/world/level/storage/loot/entries/LootPoolEntryContainer$Builder;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; net/minecraft/data/loot/BlockLootSubProvider/createShearsDispatchTable (Lnet/minecraft/world/level/block/Block;Lnet/minecraft/world/level/storage/loot/entries/LootPoolEntryContainer$Builder;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; +MD: net/minecraft/data/loot/BlockLootSubProvider/m_247233_ (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; net/minecraft/data/loot/BlockLootSubProvider/createSlabItemTable (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; +MD: net/minecraft/data/loot/BlockLootSubProvider/m_247247_ (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; net/minecraft/data/loot/BlockLootSubProvider/createBeeHiveDrop (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; +MD: net/minecraft/data/loot/BlockLootSubProvider/m_247273_ (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; net/minecraft/data/loot/BlockLootSubProvider/createBeeNestDrop (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; +MD: net/minecraft/data/loot/BlockLootSubProvider/m_247334_ (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; net/minecraft/data/loot/BlockLootSubProvider/createShulkerBoxDrop (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; +MD: net/minecraft/data/loot/BlockLootSubProvider/m_247398_ (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; net/minecraft/data/loot/BlockLootSubProvider/createDoorTable (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; +MD: net/minecraft/data/loot/BlockLootSubProvider/m_247458_ (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; net/minecraft/data/loot/BlockLootSubProvider/createBannerDrop (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; +MD: net/minecraft/data/loot/BlockLootSubProvider/m_247502_ (Lnet/minecraft/world/level/block/Block;Lnet/minecraft/world/level/storage/loot/entries/LootPoolEntryContainer$Builder;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; net/minecraft/data/loot/BlockLootSubProvider/createSilkTouchDispatchTable (Lnet/minecraft/world/level/block/Block;Lnet/minecraft/world/level/storage/loot/entries/LootPoolEntryContainer$Builder;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; +MD: net/minecraft/data/loot/BlockLootSubProvider/m_247577_ (Lnet/minecraft/world/level/block/Block;Lnet/minecraft/world/level/storage/loot/LootTable$Builder;)V net/minecraft/data/loot/BlockLootSubProvider/add (Lnet/minecraft/world/level/block/Block;Lnet/minecraft/world/level/storage/loot/LootTable$Builder;)V +MD: net/minecraft/data/loot/BlockLootSubProvider/m_247642_ (Lnet/minecraft/world/level/block/Block;Lnet/minecraft/world/item/Item;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; net/minecraft/data/loot/BlockLootSubProvider/createStemDrops (Lnet/minecraft/world/level/block/Block;Lnet/minecraft/world/item/Item;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; +MD: net/minecraft/data/loot/BlockLootSubProvider/m_247733_ (Lnet/minecraft/world/level/ItemLike;Lnet/minecraft/world/level/storage/loot/predicates/ConditionUserBuilder;)Lnet/minecraft/world/level/storage/loot/predicates/ConditionUserBuilder; net/minecraft/data/loot/BlockLootSubProvider/applyExplosionCondition (Lnet/minecraft/world/level/ItemLike;Lnet/minecraft/world/level/storage/loot/predicates/ConditionUserBuilder;)Lnet/minecraft/world/level/storage/loot/predicates/ConditionUserBuilder; +MD: net/minecraft/data/loot/BlockLootSubProvider/m_271572_ (Lnet/minecraft/world/level/block/Block;Ljava/lang/Integer;)Lnet/minecraft/world/level/storage/loot/functions/LootItemFunction$Builder; net/minecraft/data/loot/BlockLootSubProvider/lambda$createPetalsDrops$3 (Lnet/minecraft/world/level/block/Block;Ljava/lang/Integer;)Lnet/minecraft/world/level/storage/loot/functions/LootItemFunction$Builder; +MD: net/minecraft/data/loot/BlockLootSubProvider/m_271693_ (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; net/minecraft/data/loot/BlockLootSubProvider/createPetalsDrops (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; +MD: net/minecraft/data/loot/EntityLootSubProvider/ ()V net/minecraft/data/loot/EntityLootSubProvider/ ()V +MD: net/minecraft/data/loot/EntityLootSubProvider/ (Lnet/minecraft/world/flag/FeatureFlagSet;)V net/minecraft/data/loot/EntityLootSubProvider/ (Lnet/minecraft/world/flag/FeatureFlagSet;)V +MD: net/minecraft/data/loot/EntityLootSubProvider/ (Lnet/minecraft/world/flag/FeatureFlagSet;Lnet/minecraft/world/flag/FeatureFlagSet;)V net/minecraft/data/loot/EntityLootSubProvider/ (Lnet/minecraft/world/flag/FeatureFlagSet;Lnet/minecraft/world/flag/FeatureFlagSet;)V +MD: net/minecraft/data/loot/EntityLootSubProvider/m_245126_ (Ljava/util/function/BiConsumer;)V net/minecraft/data/loot/EntityLootSubProvider/generate (Ljava/util/function/BiConsumer;)V +MD: net/minecraft/data/loot/EntityLootSubProvider/m_245309_ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/storage/loot/LootTable$Builder;)V net/minecraft/data/loot/EntityLootSubProvider/add (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/storage/loot/LootTable$Builder;)V +MD: net/minecraft/data/loot/EntityLootSubProvider/m_245552_ (Lnet/minecraft/world/entity/EntityType;)Z net/minecraft/data/loot/EntityLootSubProvider/canHaveLootTable (Lnet/minecraft/world/entity/EntityType;)Z +MD: net/minecraft/data/loot/EntityLootSubProvider/m_245873_ ()Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition$Builder; net/minecraft/data/loot/EntityLootSubProvider/killedByFrog ()Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition$Builder; +MD: net/minecraft/data/loot/EntityLootSubProvider/m_246752_ (Lnet/minecraft/world/level/ItemLike;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; net/minecraft/data/loot/EntityLootSubProvider/createSheepTable (Lnet/minecraft/world/level/ItemLike;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; +MD: net/minecraft/data/loot/EntityLootSubProvider/m_246942_ ()V net/minecraft/data/loot/EntityLootSubProvider/generate ()V +MD: net/minecraft/data/loot/EntityLootSubProvider/m_246961_ (Lnet/minecraft/world/entity/EntityType;)Ljava/util/Map; net/minecraft/data/loot/EntityLootSubProvider/lambda$add$2 (Lnet/minecraft/world/entity/EntityType;)Ljava/util/Map; +MD: net/minecraft/data/loot/EntityLootSubProvider/m_247253_ (Lnet/minecraft/world/entity/animal/FrogVariant;)Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition$Builder; net/minecraft/data/loot/EntityLootSubProvider/killedByFrogVariant (Lnet/minecraft/world/entity/animal/FrogVariant;)Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition$Builder; +MD: net/minecraft/data/loot/EntityLootSubProvider/m_247265_ (Ljava/util/Set;Lnet/minecraft/core/Holder$Reference;Ljava/util/function/BiConsumer;Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/world/level/storage/loot/LootTable$Builder;)V net/minecraft/data/loot/EntityLootSubProvider/lambda$generate$0 (Ljava/util/Set;Lnet/minecraft/core/Holder$Reference;Ljava/util/function/BiConsumer;Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/world/level/storage/loot/LootTable$Builder;)V +MD: net/minecraft/data/loot/EntityLootSubProvider/m_247520_ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/world/level/storage/loot/LootTable$Builder;)V net/minecraft/data/loot/EntityLootSubProvider/add (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/world/level/storage/loot/LootTable$Builder;)V +MD: net/minecraft/data/loot/EntityLootSubProvider/m_266130_ (Ljava/util/Set;Ljava/util/function/BiConsumer;Lnet/minecraft/core/Holder$Reference;)V net/minecraft/data/loot/EntityLootSubProvider/lambda$generate$1 (Ljava/util/Set;Ljava/util/function/BiConsumer;Lnet/minecraft/core/Holder$Reference;)V +MD: net/minecraft/data/loot/LootTableProvider/ ()V net/minecraft/data/loot/LootTableProvider/ ()V +MD: net/minecraft/data/loot/LootTableProvider/ (Lnet/minecraft/data/PackOutput;Ljava/util/Set;Ljava/util/List;)V net/minecraft/data/loot/LootTableProvider/ (Lnet/minecraft/data/PackOutput;Ljava/util/Set;Ljava/util/List;)V +MD: net/minecraft/data/loot/LootTableProvider/m_124445_ (Ljava/lang/String;Ljava/lang/String;)V net/minecraft/data/loot/LootTableProvider/lambda$run$3 (Ljava/lang/String;Ljava/lang/String;)V +MD: net/minecraft/data/loot/LootTableProvider/m_213708_ (Lnet/minecraft/data/CachedOutput;)Ljava/util/concurrent/CompletableFuture; net/minecraft/data/loot/LootTableProvider/run (Lnet/minecraft/data/CachedOutput;)Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/data/loot/LootTableProvider/m_252621_ (I)[Ljava/util/concurrent/CompletableFuture; net/minecraft/data/loot/LootTableProvider/lambda$run$5 (I)[Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/data/loot/LootTableProvider/m_278530_ (Lnet/minecraft/world/level/storage/loot/ValidationContext;Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/world/level/storage/loot/LootTable;)V net/minecraft/data/loot/LootTableProvider/lambda$run$2 (Lnet/minecraft/world/level/storage/loot/ValidationContext;Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/world/level/storage/loot/LootTable;)V +MD: net/minecraft/data/loot/LootTableProvider/m_278531_ (Lnet/minecraft/data/CachedOutput;Ljava/util/Map$Entry;)Ljava/util/concurrent/CompletableFuture; net/minecraft/data/loot/LootTableProvider/lambda$run$4 (Lnet/minecraft/data/CachedOutput;Ljava/util/Map$Entry;)Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/data/loot/LootTableProvider/m_287804_ (Ljava/util/Map;Ljava/util/Map;Lnet/minecraft/data/loot/LootTableProvider$SubProviderEntry;Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/world/level/storage/loot/LootTable$Builder;)V net/minecraft/data/loot/LootTableProvider/lambda$run$0 (Ljava/util/Map;Ljava/util/Map;Lnet/minecraft/data/loot/LootTableProvider$SubProviderEntry;Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/world/level/storage/loot/LootTable$Builder;)V +MD: net/minecraft/data/loot/LootTableProvider/m_287805_ (Ljava/util/Map;Ljava/util/Map;Lnet/minecraft/data/loot/LootTableProvider$SubProviderEntry;)V net/minecraft/data/loot/LootTableProvider/lambda$run$1 (Ljava/util/Map;Ljava/util/Map;Lnet/minecraft/data/loot/LootTableProvider$SubProviderEntry;)V +MD: net/minecraft/data/loot/LootTableProvider/m_6055_ ()Ljava/lang/String; net/minecraft/data/loot/LootTableProvider/getName ()Ljava/lang/String; +MD: net/minecraft/data/loot/LootTableProvider$1/ (Lnet/minecraft/data/loot/LootTableProvider;Ljava/util/Map;)V net/minecraft/data/loot/LootTableProvider$1/ (Lnet/minecraft/data/loot/LootTableProvider;Ljava/util/Map;)V +MD: net/minecraft/data/loot/LootTableProvider$1/m_278667_ (Lnet/minecraft/world/level/storage/loot/LootDataId;)Ljava/lang/Object; net/minecraft/data/loot/LootTableProvider$1/getElement (Lnet/minecraft/world/level/storage/loot/LootDataId;)Ljava/lang/Object; +MD: net/minecraft/data/loot/LootTableProvider$SubProviderEntry/ (Ljava/util/function/Supplier;Lnet/minecraft/world/level/storage/loot/parameters/LootContextParamSet;)V net/minecraft/data/loot/LootTableProvider$SubProviderEntry/ (Ljava/util/function/Supplier;Lnet/minecraft/world/level/storage/loot/parameters/LootContextParamSet;)V +MD: net/minecraft/data/loot/LootTableProvider$SubProviderEntry/equals (Ljava/lang/Object;)Z net/minecraft/data/loot/LootTableProvider$SubProviderEntry/equals (Ljava/lang/Object;)Z +MD: net/minecraft/data/loot/LootTableProvider$SubProviderEntry/f_243941_ ()Ljava/util/function/Supplier; net/minecraft/data/loot/LootTableProvider$SubProviderEntry/provider ()Ljava/util/function/Supplier; +MD: net/minecraft/data/loot/LootTableProvider$SubProviderEntry/f_244144_ ()Lnet/minecraft/world/level/storage/loot/parameters/LootContextParamSet; net/minecraft/data/loot/LootTableProvider$SubProviderEntry/paramSet ()Lnet/minecraft/world/level/storage/loot/parameters/LootContextParamSet; +MD: net/minecraft/data/loot/LootTableProvider$SubProviderEntry/hashCode ()I net/minecraft/data/loot/LootTableProvider$SubProviderEntry/hashCode ()I +MD: net/minecraft/data/loot/LootTableProvider$SubProviderEntry/toString ()Ljava/lang/String; net/minecraft/data/loot/LootTableProvider$SubProviderEntry/toString ()Ljava/lang/String; +MD: net/minecraft/data/loot/LootTableSubProvider/m_245126_ (Ljava/util/function/BiConsumer;)V net/minecraft/data/loot/LootTableSubProvider/generate (Ljava/util/function/BiConsumer;)V +MD: net/minecraft/data/loot/packs/VanillaArchaeologyLoot/ ()V net/minecraft/data/loot/packs/VanillaArchaeologyLoot/ ()V +MD: net/minecraft/data/loot/packs/VanillaArchaeologyLoot/m_245126_ (Ljava/util/function/BiConsumer;)V net/minecraft/data/loot/packs/VanillaArchaeologyLoot/generate (Ljava/util/function/BiConsumer;)V +MD: net/minecraft/data/loot/packs/VanillaBlockLoot/ ()V net/minecraft/data/loot/packs/VanillaBlockLoot/ ()V +MD: net/minecraft/data/loot/packs/VanillaBlockLoot/ ()V net/minecraft/data/loot/packs/VanillaBlockLoot/ ()V +MD: net/minecraft/data/loot/packs/VanillaBlockLoot/m_245043_ (Lnet/minecraft/data/loot/packs/VanillaBlockLoot;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; net/minecraft/data/loot/packs/VanillaBlockLoot/lambda$generate$204 (Lnet/minecraft/data/loot/packs/VanillaBlockLoot;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; +MD: net/minecraft/data/loot/packs/VanillaBlockLoot/m_245044_ (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; net/minecraft/data/loot/packs/VanillaBlockLoot/lambda$generate$218 (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; +MD: net/minecraft/data/loot/packs/VanillaBlockLoot/m_245061_ (Lnet/minecraft/data/loot/packs/VanillaBlockLoot;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; net/minecraft/data/loot/packs/VanillaBlockLoot/lambda$generate$116 (Lnet/minecraft/data/loot/packs/VanillaBlockLoot;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; +MD: net/minecraft/data/loot/packs/VanillaBlockLoot/m_245067_ (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; net/minecraft/data/loot/packs/VanillaBlockLoot/lambda$generate$92 (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; +MD: net/minecraft/data/loot/packs/VanillaBlockLoot/m_245082_ (Lnet/minecraft/data/loot/packs/VanillaBlockLoot;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; net/minecraft/data/loot/packs/VanillaBlockLoot/lambda$generate$36 (Lnet/minecraft/data/loot/packs/VanillaBlockLoot;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; +MD: net/minecraft/data/loot/packs/VanillaBlockLoot/m_245089_ (Lnet/minecraft/world/level/ItemLike;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; net/minecraft/data/loot/packs/VanillaBlockLoot/lambda$generate$209 (Lnet/minecraft/world/level/ItemLike;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; +MD: net/minecraft/data/loot/packs/VanillaBlockLoot/m_245128_ (Lnet/minecraft/data/loot/packs/VanillaBlockLoot;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; net/minecraft/data/loot/packs/VanillaBlockLoot/lambda$generate$21 (Lnet/minecraft/data/loot/packs/VanillaBlockLoot;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; +MD: net/minecraft/data/loot/packs/VanillaBlockLoot/m_245134_ (Lnet/minecraft/data/loot/packs/VanillaBlockLoot;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; net/minecraft/data/loot/packs/VanillaBlockLoot/lambda$generate$41 (Lnet/minecraft/data/loot/packs/VanillaBlockLoot;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; +MD: net/minecraft/data/loot/packs/VanillaBlockLoot/m_245144_ (Lnet/minecraft/data/loot/packs/VanillaBlockLoot;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; net/minecraft/data/loot/packs/VanillaBlockLoot/lambda$generate$149 (Lnet/minecraft/data/loot/packs/VanillaBlockLoot;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; +MD: net/minecraft/data/loot/packs/VanillaBlockLoot/m_245174_ (Lnet/minecraft/data/loot/packs/VanillaBlockLoot;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; net/minecraft/data/loot/packs/VanillaBlockLoot/lambda$generate$117 (Lnet/minecraft/data/loot/packs/VanillaBlockLoot;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; +MD: net/minecraft/data/loot/packs/VanillaBlockLoot/m_245175_ (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; net/minecraft/data/loot/packs/VanillaBlockLoot/lambda$generate$225 (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; +MD: net/minecraft/data/loot/packs/VanillaBlockLoot/m_245176_ (Lnet/minecraft/world/level/ItemLike;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; net/minecraft/data/loot/packs/VanillaBlockLoot/lambda$generate$208 (Lnet/minecraft/world/level/ItemLike;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; +MD: net/minecraft/data/loot/packs/VanillaBlockLoot/m_245191_ (Lnet/minecraft/data/loot/packs/VanillaBlockLoot;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; net/minecraft/data/loot/packs/VanillaBlockLoot/lambda$generate$34 (Lnet/minecraft/data/loot/packs/VanillaBlockLoot;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; +MD: net/minecraft/data/loot/packs/VanillaBlockLoot/m_245218_ (Lnet/minecraft/data/loot/packs/VanillaBlockLoot;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; net/minecraft/data/loot/packs/VanillaBlockLoot/lambda$generate$146 (Lnet/minecraft/data/loot/packs/VanillaBlockLoot;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; +MD: net/minecraft/data/loot/packs/VanillaBlockLoot/m_245224_ (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; net/minecraft/data/loot/packs/VanillaBlockLoot/lambda$generate$12 (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; +MD: net/minecraft/data/loot/packs/VanillaBlockLoot/m_245228_ (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; net/minecraft/data/loot/packs/VanillaBlockLoot/lambda$generate$106 (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; +MD: net/minecraft/data/loot/packs/VanillaBlockLoot/m_245244_ (Lnet/minecraft/data/loot/packs/VanillaBlockLoot;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; net/minecraft/data/loot/packs/VanillaBlockLoot/lambda$generate$214 (Lnet/minecraft/data/loot/packs/VanillaBlockLoot;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; +MD: net/minecraft/data/loot/packs/VanillaBlockLoot/m_245267_ (Lnet/minecraft/data/loot/packs/VanillaBlockLoot;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; net/minecraft/data/loot/packs/VanillaBlockLoot/lambda$generate$135 (Lnet/minecraft/data/loot/packs/VanillaBlockLoot;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; +MD: net/minecraft/data/loot/packs/VanillaBlockLoot/m_245305_ (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; net/minecraft/data/loot/packs/VanillaBlockLoot/lambda$generate$2 (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; +MD: net/minecraft/data/loot/packs/VanillaBlockLoot/m_245312_ (Lnet/minecraft/data/loot/packs/VanillaBlockLoot;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; net/minecraft/data/loot/packs/VanillaBlockLoot/lambda$generate$132 (Lnet/minecraft/data/loot/packs/VanillaBlockLoot;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; +MD: net/minecraft/data/loot/packs/VanillaBlockLoot/m_245352_ (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; net/minecraft/data/loot/packs/VanillaBlockLoot/lambda$generate$193 (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; +MD: net/minecraft/data/loot/packs/VanillaBlockLoot/m_245368_ (Lnet/minecraft/data/loot/packs/VanillaBlockLoot;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; net/minecraft/data/loot/packs/VanillaBlockLoot/lambda$generate$123 (Lnet/minecraft/data/loot/packs/VanillaBlockLoot;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; +MD: net/minecraft/data/loot/packs/VanillaBlockLoot/m_245370_ (Lnet/minecraft/world/level/ItemLike;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; net/minecraft/data/loot/packs/VanillaBlockLoot/lambda$generate$212 (Lnet/minecraft/world/level/ItemLike;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; +MD: net/minecraft/data/loot/packs/VanillaBlockLoot/m_245374_ (Lnet/minecraft/data/loot/packs/VanillaBlockLoot;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; net/minecraft/data/loot/packs/VanillaBlockLoot/lambda$generate$69 (Lnet/minecraft/data/loot/packs/VanillaBlockLoot;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; +MD: net/minecraft/data/loot/packs/VanillaBlockLoot/m_245410_ (Lnet/minecraft/data/loot/packs/VanillaBlockLoot;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; net/minecraft/data/loot/packs/VanillaBlockLoot/lambda$generate$57 (Lnet/minecraft/data/loot/packs/VanillaBlockLoot;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; +MD: net/minecraft/data/loot/packs/VanillaBlockLoot/m_245434_ (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; net/minecraft/data/loot/packs/VanillaBlockLoot/lambda$generate$187 (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; +MD: net/minecraft/data/loot/packs/VanillaBlockLoot/m_245435_ (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; net/minecraft/data/loot/packs/VanillaBlockLoot/lambda$generate$7 (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; +MD: net/minecraft/data/loot/packs/VanillaBlockLoot/m_245440_ (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; net/minecraft/data/loot/packs/VanillaBlockLoot/lambda$generate$91 (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; +MD: net/minecraft/data/loot/packs/VanillaBlockLoot/m_245460_ (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; net/minecraft/data/loot/packs/VanillaBlockLoot/lambda$generate$228 (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; +MD: net/minecraft/data/loot/packs/VanillaBlockLoot/m_245461_ (Lnet/minecraft/data/loot/packs/VanillaBlockLoot;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; net/minecraft/data/loot/packs/VanillaBlockLoot/lambda$generate$38 (Lnet/minecraft/data/loot/packs/VanillaBlockLoot;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; +MD: net/minecraft/data/loot/packs/VanillaBlockLoot/m_245467_ (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; net/minecraft/data/loot/packs/VanillaBlockLoot/lambda$generate$105 (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; +MD: net/minecraft/data/loot/packs/VanillaBlockLoot/m_245500_ (Lnet/minecraft/data/loot/packs/VanillaBlockLoot;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; net/minecraft/data/loot/packs/VanillaBlockLoot/lambda$generate$26 (Lnet/minecraft/data/loot/packs/VanillaBlockLoot;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; +MD: net/minecraft/data/loot/packs/VanillaBlockLoot/m_245504_ (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; net/minecraft/data/loot/packs/VanillaBlockLoot/lambda$generate$103 (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; +MD: net/minecraft/data/loot/packs/VanillaBlockLoot/m_245518_ (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; net/minecraft/data/loot/packs/VanillaBlockLoot/lambda$generate$10 (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; +MD: net/minecraft/data/loot/packs/VanillaBlockLoot/m_245519_ (Lnet/minecraft/data/loot/packs/VanillaBlockLoot;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; net/minecraft/data/loot/packs/VanillaBlockLoot/lambda$generate$33 (Lnet/minecraft/data/loot/packs/VanillaBlockLoot;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; +MD: net/minecraft/data/loot/packs/VanillaBlockLoot/m_245557_ (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; net/minecraft/data/loot/packs/VanillaBlockLoot/lambda$generate$8 (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; +MD: net/minecraft/data/loot/packs/VanillaBlockLoot/m_245560_ (Lnet/minecraft/data/loot/packs/VanillaBlockLoot;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; net/minecraft/data/loot/packs/VanillaBlockLoot/lambda$generate$120 (Lnet/minecraft/data/loot/packs/VanillaBlockLoot;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; +MD: net/minecraft/data/loot/packs/VanillaBlockLoot/m_245566_ (Lnet/minecraft/data/loot/packs/VanillaBlockLoot;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; net/minecraft/data/loot/packs/VanillaBlockLoot/lambda$generate$114 (Lnet/minecraft/data/loot/packs/VanillaBlockLoot;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; +MD: net/minecraft/data/loot/packs/VanillaBlockLoot/m_245567_ (Lnet/minecraft/data/loot/packs/VanillaBlockLoot;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; net/minecraft/data/loot/packs/VanillaBlockLoot/lambda$generate$28 (Lnet/minecraft/data/loot/packs/VanillaBlockLoot;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; +MD: net/minecraft/data/loot/packs/VanillaBlockLoot/m_245576_ (Lnet/minecraft/data/loot/packs/VanillaBlockLoot;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; net/minecraft/data/loot/packs/VanillaBlockLoot/lambda$generate$127 (Lnet/minecraft/data/loot/packs/VanillaBlockLoot;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; +MD: net/minecraft/data/loot/packs/VanillaBlockLoot/m_245600_ (Lnet/minecraft/data/loot/packs/VanillaBlockLoot;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; net/minecraft/data/loot/packs/VanillaBlockLoot/lambda$generate$124 (Lnet/minecraft/data/loot/packs/VanillaBlockLoot;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; +MD: net/minecraft/data/loot/packs/VanillaBlockLoot/m_245628_ (Lnet/minecraft/data/loot/packs/VanillaBlockLoot;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; net/minecraft/data/loot/packs/VanillaBlockLoot/lambda$generate$223 (Lnet/minecraft/data/loot/packs/VanillaBlockLoot;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; +MD: net/minecraft/data/loot/packs/VanillaBlockLoot/m_245649_ (Lnet/minecraft/data/loot/packs/VanillaBlockLoot;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; net/minecraft/data/loot/packs/VanillaBlockLoot/lambda$generate$49 (Lnet/minecraft/data/loot/packs/VanillaBlockLoot;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; +MD: net/minecraft/data/loot/packs/VanillaBlockLoot/m_245659_ (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; net/minecraft/data/loot/packs/VanillaBlockLoot/lambda$generate$191 (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; +MD: net/minecraft/data/loot/packs/VanillaBlockLoot/m_245660_ ()V net/minecraft/data/loot/packs/VanillaBlockLoot/generate ()V +MD: net/minecraft/data/loot/packs/VanillaBlockLoot/m_245673_ (Lnet/minecraft/data/loot/packs/VanillaBlockLoot;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; net/minecraft/data/loot/packs/VanillaBlockLoot/lambda$generate$150 (Lnet/minecraft/data/loot/packs/VanillaBlockLoot;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; +MD: net/minecraft/data/loot/packs/VanillaBlockLoot/m_245682_ (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; net/minecraft/data/loot/packs/VanillaBlockLoot/lambda$generate$1 (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; +MD: net/minecraft/data/loot/packs/VanillaBlockLoot/m_245706_ (Lnet/minecraft/data/loot/packs/VanillaBlockLoot;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; net/minecraft/data/loot/packs/VanillaBlockLoot/lambda$generate$56 (Lnet/minecraft/data/loot/packs/VanillaBlockLoot;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; +MD: net/minecraft/data/loot/packs/VanillaBlockLoot/m_245749_ (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; net/minecraft/data/loot/packs/VanillaBlockLoot/lambda$generate$110 (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; +MD: net/minecraft/data/loot/packs/VanillaBlockLoot/m_245767_ (Lnet/minecraft/data/loot/packs/VanillaBlockLoot;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; net/minecraft/data/loot/packs/VanillaBlockLoot/lambda$generate$139 (Lnet/minecraft/data/loot/packs/VanillaBlockLoot;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; +MD: net/minecraft/data/loot/packs/VanillaBlockLoot/m_245770_ (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; net/minecraft/data/loot/packs/VanillaBlockLoot/lambda$generate$220 (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; +MD: net/minecraft/data/loot/packs/VanillaBlockLoot/m_245778_ (Lnet/minecraft/data/loot/packs/VanillaBlockLoot;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; net/minecraft/data/loot/packs/VanillaBlockLoot/lambda$generate$172 (Lnet/minecraft/data/loot/packs/VanillaBlockLoot;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; +MD: net/minecraft/data/loot/packs/VanillaBlockLoot/m_245796_ (Lnet/minecraft/data/loot/packs/VanillaBlockLoot;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; net/minecraft/data/loot/packs/VanillaBlockLoot/lambda$generate$137 (Lnet/minecraft/data/loot/packs/VanillaBlockLoot;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; +MD: net/minecraft/data/loot/packs/VanillaBlockLoot/m_245808_ (Lnet/minecraft/data/loot/packs/VanillaBlockLoot;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; net/minecraft/data/loot/packs/VanillaBlockLoot/lambda$generate$62 (Lnet/minecraft/data/loot/packs/VanillaBlockLoot;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; +MD: net/minecraft/data/loot/packs/VanillaBlockLoot/m_245819_ (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; net/minecraft/data/loot/packs/VanillaBlockLoot/lambda$generate$96 (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; +MD: net/minecraft/data/loot/packs/VanillaBlockLoot/m_245823_ (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; net/minecraft/data/loot/packs/VanillaBlockLoot/lambda$generate$15 (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; +MD: net/minecraft/data/loot/packs/VanillaBlockLoot/m_245841_ (Lnet/minecraft/data/loot/packs/VanillaBlockLoot;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; net/minecraft/data/loot/packs/VanillaBlockLoot/lambda$generate$63 (Lnet/minecraft/data/loot/packs/VanillaBlockLoot;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; +MD: net/minecraft/data/loot/packs/VanillaBlockLoot/m_245855_ (Lnet/minecraft/data/loot/packs/VanillaBlockLoot;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; net/minecraft/data/loot/packs/VanillaBlockLoot/lambda$generate$131 (Lnet/minecraft/data/loot/packs/VanillaBlockLoot;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; +MD: net/minecraft/data/loot/packs/VanillaBlockLoot/m_245869_ (Lnet/minecraft/data/loot/packs/VanillaBlockLoot;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; net/minecraft/data/loot/packs/VanillaBlockLoot/lambda$generate$119 (Lnet/minecraft/data/loot/packs/VanillaBlockLoot;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; +MD: net/minecraft/data/loot/packs/VanillaBlockLoot/m_245877_ (Lnet/minecraft/data/loot/packs/VanillaBlockLoot;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; net/minecraft/data/loot/packs/VanillaBlockLoot/lambda$generate$173 (Lnet/minecraft/data/loot/packs/VanillaBlockLoot;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; +MD: net/minecraft/data/loot/packs/VanillaBlockLoot/m_245880_ (Lnet/minecraft/data/loot/packs/VanillaBlockLoot;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; net/minecraft/data/loot/packs/VanillaBlockLoot/lambda$generate$167 (Lnet/minecraft/data/loot/packs/VanillaBlockLoot;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; +MD: net/minecraft/data/loot/packs/VanillaBlockLoot/m_245881_ (Lnet/minecraft/data/loot/packs/VanillaBlockLoot;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; net/minecraft/data/loot/packs/VanillaBlockLoot/lambda$generate$138 (Lnet/minecraft/data/loot/packs/VanillaBlockLoot;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; +MD: net/minecraft/data/loot/packs/VanillaBlockLoot/m_245900_ (Lnet/minecraft/world/level/block/Block;Ljava/lang/Integer;)Lnet/minecraft/world/level/storage/loot/functions/LootItemFunction$Builder; net/minecraft/data/loot/packs/VanillaBlockLoot/lambda$generate$107 (Lnet/minecraft/world/level/block/Block;Ljava/lang/Integer;)Lnet/minecraft/world/level/storage/loot/functions/LootItemFunction$Builder; +MD: net/minecraft/data/loot/packs/VanillaBlockLoot/m_245904_ (Lnet/minecraft/data/loot/packs/VanillaBlockLoot;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; net/minecraft/data/loot/packs/VanillaBlockLoot/lambda$generate$226 (Lnet/minecraft/data/loot/packs/VanillaBlockLoot;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; +MD: net/minecraft/data/loot/packs/VanillaBlockLoot/m_245908_ (Lnet/minecraft/data/loot/packs/VanillaBlockLoot;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; net/minecraft/data/loot/packs/VanillaBlockLoot/lambda$generate$145 (Lnet/minecraft/data/loot/packs/VanillaBlockLoot;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; +MD: net/minecraft/data/loot/packs/VanillaBlockLoot/m_245917_ (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; net/minecraft/data/loot/packs/VanillaBlockLoot/lambda$generate$192 (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; +MD: net/minecraft/data/loot/packs/VanillaBlockLoot/m_245918_ (Lnet/minecraft/data/loot/packs/VanillaBlockLoot;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; net/minecraft/data/loot/packs/VanillaBlockLoot/lambda$generate$153 (Lnet/minecraft/data/loot/packs/VanillaBlockLoot;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; +MD: net/minecraft/data/loot/packs/VanillaBlockLoot/m_245928_ (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; net/minecraft/data/loot/packs/VanillaBlockLoot/lambda$generate$5 (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; +MD: net/minecraft/data/loot/packs/VanillaBlockLoot/m_245930_ (Lnet/minecraft/data/loot/packs/VanillaBlockLoot;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; net/minecraft/data/loot/packs/VanillaBlockLoot/lambda$generate$162 (Lnet/minecraft/data/loot/packs/VanillaBlockLoot;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; +MD: net/minecraft/data/loot/packs/VanillaBlockLoot/m_245943_ (Lnet/minecraft/data/loot/packs/VanillaBlockLoot;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; net/minecraft/data/loot/packs/VanillaBlockLoot/lambda$generate$50 (Lnet/minecraft/data/loot/packs/VanillaBlockLoot;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; +MD: net/minecraft/data/loot/packs/VanillaBlockLoot/m_245962_ (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; net/minecraft/data/loot/packs/VanillaBlockLoot/lambda$generate$0 (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; +MD: net/minecraft/data/loot/packs/VanillaBlockLoot/m_245972_ (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; net/minecraft/data/loot/packs/VanillaBlockLoot/lambda$generate$13 (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; +MD: net/minecraft/data/loot/packs/VanillaBlockLoot/m_245973_ (Lnet/minecraft/data/loot/packs/VanillaBlockLoot;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; net/minecraft/data/loot/packs/VanillaBlockLoot/lambda$generate$164 (Lnet/minecraft/data/loot/packs/VanillaBlockLoot;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; +MD: net/minecraft/data/loot/packs/VanillaBlockLoot/m_245977_ (Lnet/minecraft/data/loot/packs/VanillaBlockLoot;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; net/minecraft/data/loot/packs/VanillaBlockLoot/lambda$generate$171 (Lnet/minecraft/data/loot/packs/VanillaBlockLoot;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; +MD: net/minecraft/data/loot/packs/VanillaBlockLoot/m_245981_ (Lnet/minecraft/data/loot/packs/VanillaBlockLoot;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; net/minecraft/data/loot/packs/VanillaBlockLoot/lambda$generate$161 (Lnet/minecraft/data/loot/packs/VanillaBlockLoot;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; +MD: net/minecraft/data/loot/packs/VanillaBlockLoot/m_245983_ (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; net/minecraft/data/loot/packs/VanillaBlockLoot/lambda$generate$86 (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; +MD: net/minecraft/data/loot/packs/VanillaBlockLoot/m_246021_ (Lnet/minecraft/data/loot/packs/VanillaBlockLoot;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; net/minecraft/data/loot/packs/VanillaBlockLoot/lambda$generate$165 (Lnet/minecraft/data/loot/packs/VanillaBlockLoot;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; +MD: net/minecraft/data/loot/packs/VanillaBlockLoot/m_246023_ (Lnet/minecraft/data/loot/packs/VanillaBlockLoot;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; net/minecraft/data/loot/packs/VanillaBlockLoot/lambda$generate$160 (Lnet/minecraft/data/loot/packs/VanillaBlockLoot;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; +MD: net/minecraft/data/loot/packs/VanillaBlockLoot/m_246024_ (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; net/minecraft/data/loot/packs/VanillaBlockLoot/lambda$generate$97 (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; +MD: net/minecraft/data/loot/packs/VanillaBlockLoot/m_246036_ (Lnet/minecraft/data/loot/packs/VanillaBlockLoot;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; net/minecraft/data/loot/packs/VanillaBlockLoot/lambda$generate$22 (Lnet/minecraft/data/loot/packs/VanillaBlockLoot;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; +MD: net/minecraft/data/loot/packs/VanillaBlockLoot/m_246043_ (Lnet/minecraft/data/loot/packs/VanillaBlockLoot;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; net/minecraft/data/loot/packs/VanillaBlockLoot/lambda$generate$48 (Lnet/minecraft/data/loot/packs/VanillaBlockLoot;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; +MD: net/minecraft/data/loot/packs/VanillaBlockLoot/m_246065_ (Lnet/minecraft/data/loot/packs/VanillaBlockLoot;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; net/minecraft/data/loot/packs/VanillaBlockLoot/lambda$generate$125 (Lnet/minecraft/data/loot/packs/VanillaBlockLoot;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; +MD: net/minecraft/data/loot/packs/VanillaBlockLoot/m_246071_ (Lnet/minecraft/data/loot/packs/VanillaBlockLoot;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; net/minecraft/data/loot/packs/VanillaBlockLoot/lambda$generate$43 (Lnet/minecraft/data/loot/packs/VanillaBlockLoot;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; +MD: net/minecraft/data/loot/packs/VanillaBlockLoot/m_246076_ (Lnet/minecraft/world/level/ItemLike;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; net/minecraft/data/loot/packs/VanillaBlockLoot/lambda$generate$210 (Lnet/minecraft/world/level/ItemLike;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; +MD: net/minecraft/data/loot/packs/VanillaBlockLoot/m_246095_ (Lnet/minecraft/data/loot/packs/VanillaBlockLoot;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; net/minecraft/data/loot/packs/VanillaBlockLoot/lambda$generate$222 (Lnet/minecraft/data/loot/packs/VanillaBlockLoot;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; +MD: net/minecraft/data/loot/packs/VanillaBlockLoot/m_246098_ (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; net/minecraft/data/loot/packs/VanillaBlockLoot/lambda$generate$196 (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; +MD: net/minecraft/data/loot/packs/VanillaBlockLoot/m_246100_ (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; net/minecraft/data/loot/packs/VanillaBlockLoot/lambda$generate$237 (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; +MD: net/minecraft/data/loot/packs/VanillaBlockLoot/m_246111_ (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; net/minecraft/data/loot/packs/VanillaBlockLoot/lambda$generate$90 (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; +MD: net/minecraft/data/loot/packs/VanillaBlockLoot/m_246135_ (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; net/minecraft/data/loot/packs/VanillaBlockLoot/lambda$generate$215 (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; +MD: net/minecraft/data/loot/packs/VanillaBlockLoot/m_246147_ (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; net/minecraft/data/loot/packs/VanillaBlockLoot/lambda$generate$219 (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; +MD: net/minecraft/data/loot/packs/VanillaBlockLoot/m_246155_ (Lnet/minecraft/data/loot/packs/VanillaBlockLoot;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; net/minecraft/data/loot/packs/VanillaBlockLoot/lambda$generate$67 (Lnet/minecraft/data/loot/packs/VanillaBlockLoot;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; +MD: net/minecraft/data/loot/packs/VanillaBlockLoot/m_246187_ (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; net/minecraft/data/loot/packs/VanillaBlockLoot/lambda$generate$234 (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; +MD: net/minecraft/data/loot/packs/VanillaBlockLoot/m_246189_ (Lnet/minecraft/data/loot/packs/VanillaBlockLoot;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; net/minecraft/data/loot/packs/VanillaBlockLoot/lambda$generate$44 (Lnet/minecraft/data/loot/packs/VanillaBlockLoot;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; +MD: net/minecraft/data/loot/packs/VanillaBlockLoot/m_246190_ (Lnet/minecraft/data/loot/packs/VanillaBlockLoot;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; net/minecraft/data/loot/packs/VanillaBlockLoot/lambda$generate$37 (Lnet/minecraft/data/loot/packs/VanillaBlockLoot;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; +MD: net/minecraft/data/loot/packs/VanillaBlockLoot/m_246204_ (Lnet/minecraft/data/loot/packs/VanillaBlockLoot;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; net/minecraft/data/loot/packs/VanillaBlockLoot/lambda$generate$151 (Lnet/minecraft/data/loot/packs/VanillaBlockLoot;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; +MD: net/minecraft/data/loot/packs/VanillaBlockLoot/m_246215_ (Lnet/minecraft/data/loot/packs/VanillaBlockLoot;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; net/minecraft/data/loot/packs/VanillaBlockLoot/lambda$generate$129 (Lnet/minecraft/data/loot/packs/VanillaBlockLoot;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; +MD: net/minecraft/data/loot/packs/VanillaBlockLoot/m_246219_ (Lnet/minecraft/data/loot/packs/VanillaBlockLoot;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; net/minecraft/data/loot/packs/VanillaBlockLoot/lambda$generate$65 (Lnet/minecraft/data/loot/packs/VanillaBlockLoot;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; +MD: net/minecraft/data/loot/packs/VanillaBlockLoot/m_246220_ (Lnet/minecraft/world/level/block/Block;Ljava/lang/Integer;)Lnet/minecraft/world/level/storage/loot/entries/LootPoolEntryContainer$Builder; net/minecraft/data/loot/packs/VanillaBlockLoot/lambda$generate$231 (Lnet/minecraft/world/level/block/Block;Ljava/lang/Integer;)Lnet/minecraft/world/level/storage/loot/entries/LootPoolEntryContainer$Builder; +MD: net/minecraft/data/loot/packs/VanillaBlockLoot/m_246234_ (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; net/minecraft/data/loot/packs/VanillaBlockLoot/lambda$generate$95 (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; +MD: net/minecraft/data/loot/packs/VanillaBlockLoot/m_246243_ (Lnet/minecraft/data/loot/packs/VanillaBlockLoot;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; net/minecraft/data/loot/packs/VanillaBlockLoot/lambda$generate$31 (Lnet/minecraft/data/loot/packs/VanillaBlockLoot;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; +MD: net/minecraft/data/loot/packs/VanillaBlockLoot/m_246266_ (Lnet/minecraft/data/loot/packs/VanillaBlockLoot;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; net/minecraft/data/loot/packs/VanillaBlockLoot/lambda$generate$24 (Lnet/minecraft/data/loot/packs/VanillaBlockLoot;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; +MD: net/minecraft/data/loot/packs/VanillaBlockLoot/m_246302_ (Lnet/minecraft/data/loot/packs/VanillaBlockLoot;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; net/minecraft/data/loot/packs/VanillaBlockLoot/lambda$generate$25 (Lnet/minecraft/data/loot/packs/VanillaBlockLoot;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; +MD: net/minecraft/data/loot/packs/VanillaBlockLoot/m_246303_ (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; net/minecraft/data/loot/packs/VanillaBlockLoot/lambda$generate$3 (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; +MD: net/minecraft/data/loot/packs/VanillaBlockLoot/m_246352_ (Lnet/minecraft/world/level/block/Block;Ljava/lang/Integer;)Lnet/minecraft/world/level/storage/loot/entries/LootPoolEntryContainer$Builder; net/minecraft/data/loot/packs/VanillaBlockLoot/lambda$generate$230 (Lnet/minecraft/world/level/block/Block;Ljava/lang/Integer;)Lnet/minecraft/world/level/storage/loot/entries/LootPoolEntryContainer$Builder; +MD: net/minecraft/data/loot/packs/VanillaBlockLoot/m_246376_ (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; net/minecraft/data/loot/packs/VanillaBlockLoot/lambda$generate$108 (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; +MD: net/minecraft/data/loot/packs/VanillaBlockLoot/m_246380_ (Lnet/minecraft/data/loot/packs/VanillaBlockLoot;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; net/minecraft/data/loot/packs/VanillaBlockLoot/lambda$generate$154 (Lnet/minecraft/data/loot/packs/VanillaBlockLoot;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; +MD: net/minecraft/data/loot/packs/VanillaBlockLoot/m_246388_ (Lnet/minecraft/data/loot/packs/VanillaBlockLoot;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; net/minecraft/data/loot/packs/VanillaBlockLoot/lambda$generate$147 (Lnet/minecraft/data/loot/packs/VanillaBlockLoot;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; +MD: net/minecraft/data/loot/packs/VanillaBlockLoot/m_246403_ (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; net/minecraft/data/loot/packs/VanillaBlockLoot/lambda$generate$111 (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; +MD: net/minecraft/data/loot/packs/VanillaBlockLoot/m_246405_ (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; net/minecraft/data/loot/packs/VanillaBlockLoot/lambda$generate$233 (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; +MD: net/minecraft/data/loot/packs/VanillaBlockLoot/m_246406_ (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; net/minecraft/data/loot/packs/VanillaBlockLoot/lambda$generate$94 (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; +MD: net/minecraft/data/loot/packs/VanillaBlockLoot/m_246408_ (Lnet/minecraft/data/loot/packs/VanillaBlockLoot;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; net/minecraft/data/loot/packs/VanillaBlockLoot/lambda$generate$198 (Lnet/minecraft/data/loot/packs/VanillaBlockLoot;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; +MD: net/minecraft/data/loot/packs/VanillaBlockLoot/m_246421_ (Lnet/minecraft/data/loot/packs/VanillaBlockLoot;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; net/minecraft/data/loot/packs/VanillaBlockLoot/lambda$generate$140 (Lnet/minecraft/data/loot/packs/VanillaBlockLoot;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; +MD: net/minecraft/data/loot/packs/VanillaBlockLoot/m_246427_ (Lnet/minecraft/data/loot/packs/VanillaBlockLoot;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; net/minecraft/data/loot/packs/VanillaBlockLoot/lambda$generate$113 (Lnet/minecraft/data/loot/packs/VanillaBlockLoot;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; +MD: net/minecraft/data/loot/packs/VanillaBlockLoot/m_246433_ (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; net/minecraft/data/loot/packs/VanillaBlockLoot/lambda$generate$6 (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; +MD: net/minecraft/data/loot/packs/VanillaBlockLoot/m_246450_ (Lnet/minecraft/data/loot/packs/VanillaBlockLoot;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; net/minecraft/data/loot/packs/VanillaBlockLoot/lambda$generate$144 (Lnet/minecraft/data/loot/packs/VanillaBlockLoot;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; +MD: net/minecraft/data/loot/packs/VanillaBlockLoot/m_246452_ (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; net/minecraft/data/loot/packs/VanillaBlockLoot/lambda$generate$200 (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; +MD: net/minecraft/data/loot/packs/VanillaBlockLoot/m_246482_ (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; net/minecraft/data/loot/packs/VanillaBlockLoot/lambda$generate$189 (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; +MD: net/minecraft/data/loot/packs/VanillaBlockLoot/m_246512_ (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; net/minecraft/data/loot/packs/VanillaBlockLoot/lambda$generate$101 (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; +MD: net/minecraft/data/loot/packs/VanillaBlockLoot/m_246516_ (Lnet/minecraft/data/loot/packs/VanillaBlockLoot;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; net/minecraft/data/loot/packs/VanillaBlockLoot/lambda$generate$20 (Lnet/minecraft/data/loot/packs/VanillaBlockLoot;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; +MD: net/minecraft/data/loot/packs/VanillaBlockLoot/m_246547_ (Lnet/minecraft/data/loot/packs/VanillaBlockLoot;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; net/minecraft/data/loot/packs/VanillaBlockLoot/lambda$generate$197 (Lnet/minecraft/data/loot/packs/VanillaBlockLoot;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; +MD: net/minecraft/data/loot/packs/VanillaBlockLoot/m_246551_ (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; net/minecraft/data/loot/packs/VanillaBlockLoot/lambda$generate$195 (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; +MD: net/minecraft/data/loot/packs/VanillaBlockLoot/m_246557_ (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; net/minecraft/data/loot/packs/VanillaBlockLoot/lambda$generate$206 (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; +MD: net/minecraft/data/loot/packs/VanillaBlockLoot/m_246591_ (Lnet/minecraft/data/loot/packs/VanillaBlockLoot;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; net/minecraft/data/loot/packs/VanillaBlockLoot/lambda$generate$152 (Lnet/minecraft/data/loot/packs/VanillaBlockLoot;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; +MD: net/minecraft/data/loot/packs/VanillaBlockLoot/m_246593_ (Lnet/minecraft/data/loot/packs/VanillaBlockLoot;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; net/minecraft/data/loot/packs/VanillaBlockLoot/lambda$generate$58 (Lnet/minecraft/data/loot/packs/VanillaBlockLoot;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; +MD: net/minecraft/data/loot/packs/VanillaBlockLoot/m_246607_ (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; net/minecraft/data/loot/packs/VanillaBlockLoot/lambda$generate$98 (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; +MD: net/minecraft/data/loot/packs/VanillaBlockLoot/m_246620_ (Lnet/minecraft/data/loot/packs/VanillaBlockLoot;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; net/minecraft/data/loot/packs/VanillaBlockLoot/lambda$generate$35 (Lnet/minecraft/data/loot/packs/VanillaBlockLoot;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; +MD: net/minecraft/data/loot/packs/VanillaBlockLoot/m_246649_ (Lnet/minecraft/data/loot/packs/VanillaBlockLoot;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; net/minecraft/data/loot/packs/VanillaBlockLoot/lambda$generate$30 (Lnet/minecraft/data/loot/packs/VanillaBlockLoot;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; +MD: net/minecraft/data/loot/packs/VanillaBlockLoot/m_246662_ (Lnet/minecraft/data/loot/packs/VanillaBlockLoot;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; net/minecraft/data/loot/packs/VanillaBlockLoot/lambda$generate$159 (Lnet/minecraft/data/loot/packs/VanillaBlockLoot;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; +MD: net/minecraft/data/loot/packs/VanillaBlockLoot/m_246692_ (Lnet/minecraft/data/loot/packs/VanillaBlockLoot;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; net/minecraft/data/loot/packs/VanillaBlockLoot/lambda$generate$115 (Lnet/minecraft/data/loot/packs/VanillaBlockLoot;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; +MD: net/minecraft/data/loot/packs/VanillaBlockLoot/m_246695_ (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; net/minecraft/data/loot/packs/VanillaBlockLoot/lambda$generate$211 (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; +MD: net/minecraft/data/loot/packs/VanillaBlockLoot/m_246713_ (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; net/minecraft/data/loot/packs/VanillaBlockLoot/lambda$generate$100 (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; +MD: net/minecraft/data/loot/packs/VanillaBlockLoot/m_246730_ (Lnet/minecraft/data/loot/packs/VanillaBlockLoot;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; net/minecraft/data/loot/packs/VanillaBlockLoot/lambda$generate$166 (Lnet/minecraft/data/loot/packs/VanillaBlockLoot;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; +MD: net/minecraft/data/loot/packs/VanillaBlockLoot/m_246738_ (Lnet/minecraft/data/loot/packs/VanillaBlockLoot;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; net/minecraft/data/loot/packs/VanillaBlockLoot/lambda$generate$205 (Lnet/minecraft/data/loot/packs/VanillaBlockLoot;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; +MD: net/minecraft/data/loot/packs/VanillaBlockLoot/m_246745_ (Lnet/minecraft/data/loot/packs/VanillaBlockLoot;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; net/minecraft/data/loot/packs/VanillaBlockLoot/lambda$generate$42 (Lnet/minecraft/data/loot/packs/VanillaBlockLoot;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; +MD: net/minecraft/data/loot/packs/VanillaBlockLoot/m_246753_ (Lnet/minecraft/data/loot/packs/VanillaBlockLoot;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; net/minecraft/data/loot/packs/VanillaBlockLoot/lambda$generate$133 (Lnet/minecraft/data/loot/packs/VanillaBlockLoot;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; +MD: net/minecraft/data/loot/packs/VanillaBlockLoot/m_246757_ (Lnet/minecraft/data/loot/packs/VanillaBlockLoot;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; net/minecraft/data/loot/packs/VanillaBlockLoot/lambda$generate$158 (Lnet/minecraft/data/loot/packs/VanillaBlockLoot;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; +MD: net/minecraft/data/loot/packs/VanillaBlockLoot/m_246764_ (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; net/minecraft/data/loot/packs/VanillaBlockLoot/lambda$generate$4 (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; +MD: net/minecraft/data/loot/packs/VanillaBlockLoot/m_246795_ (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; net/minecraft/data/loot/packs/VanillaBlockLoot/lambda$generate$102 (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; +MD: net/minecraft/data/loot/packs/VanillaBlockLoot/m_246800_ (Lnet/minecraft/data/loot/packs/VanillaBlockLoot;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; net/minecraft/data/loot/packs/VanillaBlockLoot/lambda$generate$18 (Lnet/minecraft/data/loot/packs/VanillaBlockLoot;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; +MD: net/minecraft/data/loot/packs/VanillaBlockLoot/m_246812_ (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; net/minecraft/data/loot/packs/VanillaBlockLoot/lambda$generate$194 (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; +MD: net/minecraft/data/loot/packs/VanillaBlockLoot/m_246821_ (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; net/minecraft/data/loot/packs/VanillaBlockLoot/lambda$generate$236 (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; +MD: net/minecraft/data/loot/packs/VanillaBlockLoot/m_246842_ (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; net/minecraft/data/loot/packs/VanillaBlockLoot/lambda$generate$217 (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; +MD: net/minecraft/data/loot/packs/VanillaBlockLoot/m_246894_ (Lnet/minecraft/data/loot/packs/VanillaBlockLoot;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; net/minecraft/data/loot/packs/VanillaBlockLoot/lambda$generate$169 (Lnet/minecraft/data/loot/packs/VanillaBlockLoot;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; +MD: net/minecraft/data/loot/packs/VanillaBlockLoot/m_246924_ (Lnet/minecraft/data/loot/packs/VanillaBlockLoot;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; net/minecraft/data/loot/packs/VanillaBlockLoot/lambda$generate$128 (Lnet/minecraft/data/loot/packs/VanillaBlockLoot;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; +MD: net/minecraft/data/loot/packs/VanillaBlockLoot/m_246925_ (Lnet/minecraft/data/loot/packs/VanillaBlockLoot;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; net/minecraft/data/loot/packs/VanillaBlockLoot/lambda$generate$64 (Lnet/minecraft/data/loot/packs/VanillaBlockLoot;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; +MD: net/minecraft/data/loot/packs/VanillaBlockLoot/m_246926_ (Lnet/minecraft/data/loot/packs/VanillaBlockLoot;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; net/minecraft/data/loot/packs/VanillaBlockLoot/lambda$generate$59 (Lnet/minecraft/data/loot/packs/VanillaBlockLoot;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; +MD: net/minecraft/data/loot/packs/VanillaBlockLoot/m_246928_ (Lnet/minecraft/data/loot/packs/VanillaBlockLoot;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; net/minecraft/data/loot/packs/VanillaBlockLoot/lambda$generate$66 (Lnet/minecraft/data/loot/packs/VanillaBlockLoot;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; +MD: net/minecraft/data/loot/packs/VanillaBlockLoot/m_246935_ (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; net/minecraft/data/loot/packs/VanillaBlockLoot/lambda$generate$89 (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; +MD: net/minecraft/data/loot/packs/VanillaBlockLoot/m_246960_ (Lnet/minecraft/data/loot/packs/VanillaBlockLoot;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; net/minecraft/data/loot/packs/VanillaBlockLoot/lambda$generate$46 (Lnet/minecraft/data/loot/packs/VanillaBlockLoot;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; +MD: net/minecraft/data/loot/packs/VanillaBlockLoot/m_246964_ (Lnet/minecraft/data/loot/packs/VanillaBlockLoot;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; net/minecraft/data/loot/packs/VanillaBlockLoot/lambda$generate$68 (Lnet/minecraft/data/loot/packs/VanillaBlockLoot;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; +MD: net/minecraft/data/loot/packs/VanillaBlockLoot/m_246967_ (Lnet/minecraft/data/loot/packs/VanillaBlockLoot;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; net/minecraft/data/loot/packs/VanillaBlockLoot/lambda$generate$134 (Lnet/minecraft/data/loot/packs/VanillaBlockLoot;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; +MD: net/minecraft/data/loot/packs/VanillaBlockLoot/m_246969_ (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; net/minecraft/data/loot/packs/VanillaBlockLoot/lambda$generate$202 (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; +MD: net/minecraft/data/loot/packs/VanillaBlockLoot/m_246986_ (Lnet/minecraft/data/loot/packs/VanillaBlockLoot;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; net/minecraft/data/loot/packs/VanillaBlockLoot/lambda$generate$155 (Lnet/minecraft/data/loot/packs/VanillaBlockLoot;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; +MD: net/minecraft/data/loot/packs/VanillaBlockLoot/m_246993_ (Lnet/minecraft/data/loot/packs/VanillaBlockLoot;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; net/minecraft/data/loot/packs/VanillaBlockLoot/lambda$generate$122 (Lnet/minecraft/data/loot/packs/VanillaBlockLoot;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; +MD: net/minecraft/data/loot/packs/VanillaBlockLoot/m_247004_ (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; net/minecraft/data/loot/packs/VanillaBlockLoot/lambda$generate$9 (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; +MD: net/minecraft/data/loot/packs/VanillaBlockLoot/m_247028_ (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; net/minecraft/data/loot/packs/VanillaBlockLoot/lambda$generate$199 (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; +MD: net/minecraft/data/loot/packs/VanillaBlockLoot/m_247031_ (Lnet/minecraft/data/loot/packs/VanillaBlockLoot;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; net/minecraft/data/loot/packs/VanillaBlockLoot/lambda$generate$157 (Lnet/minecraft/data/loot/packs/VanillaBlockLoot;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; +MD: net/minecraft/data/loot/packs/VanillaBlockLoot/m_247032_ (Lnet/minecraft/data/loot/packs/VanillaBlockLoot;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; net/minecraft/data/loot/packs/VanillaBlockLoot/lambda$generate$29 (Lnet/minecraft/data/loot/packs/VanillaBlockLoot;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; +MD: net/minecraft/data/loot/packs/VanillaBlockLoot/m_247036_ (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; net/minecraft/data/loot/packs/VanillaBlockLoot/lambda$generate$175 (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; +MD: net/minecraft/data/loot/packs/VanillaBlockLoot/m_247044_ (Lnet/minecraft/data/loot/packs/VanillaBlockLoot;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; net/minecraft/data/loot/packs/VanillaBlockLoot/lambda$generate$130 (Lnet/minecraft/data/loot/packs/VanillaBlockLoot;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; +MD: net/minecraft/data/loot/packs/VanillaBlockLoot/m_247066_ (Lnet/minecraft/data/loot/packs/VanillaBlockLoot;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; net/minecraft/data/loot/packs/VanillaBlockLoot/lambda$generate$148 (Lnet/minecraft/data/loot/packs/VanillaBlockLoot;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; +MD: net/minecraft/data/loot/packs/VanillaBlockLoot/m_247069_ (Lnet/minecraft/data/loot/packs/VanillaBlockLoot;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; net/minecraft/data/loot/packs/VanillaBlockLoot/lambda$generate$17 (Lnet/minecraft/data/loot/packs/VanillaBlockLoot;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; +MD: net/minecraft/data/loot/packs/VanillaBlockLoot/m_247095_ (Lnet/minecraft/data/loot/packs/VanillaBlockLoot;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; net/minecraft/data/loot/packs/VanillaBlockLoot/lambda$generate$27 (Lnet/minecraft/data/loot/packs/VanillaBlockLoot;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; +MD: net/minecraft/data/loot/packs/VanillaBlockLoot/m_247123_ (Lnet/minecraft/data/loot/packs/VanillaBlockLoot;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; net/minecraft/data/loot/packs/VanillaBlockLoot/lambda$generate$227 (Lnet/minecraft/data/loot/packs/VanillaBlockLoot;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; +MD: net/minecraft/data/loot/packs/VanillaBlockLoot/m_247128_ (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; net/minecraft/data/loot/packs/VanillaBlockLoot/lambda$generate$201 (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; +MD: net/minecraft/data/loot/packs/VanillaBlockLoot/m_247132_ (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; net/minecraft/data/loot/packs/VanillaBlockLoot/lambda$generate$180 (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; +MD: net/minecraft/data/loot/packs/VanillaBlockLoot/m_247134_ (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; net/minecraft/data/loot/packs/VanillaBlockLoot/lambda$generate$104 (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; +MD: net/minecraft/data/loot/packs/VanillaBlockLoot/m_247141_ (Lnet/minecraft/data/loot/packs/VanillaBlockLoot;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; net/minecraft/data/loot/packs/VanillaBlockLoot/lambda$generate$60 (Lnet/minecraft/data/loot/packs/VanillaBlockLoot;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; +MD: net/minecraft/data/loot/packs/VanillaBlockLoot/m_247142_ (Lnet/minecraft/data/loot/packs/VanillaBlockLoot;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; net/minecraft/data/loot/packs/VanillaBlockLoot/lambda$generate$19 (Lnet/minecraft/data/loot/packs/VanillaBlockLoot;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; +MD: net/minecraft/data/loot/packs/VanillaBlockLoot/m_247143_ (Lnet/minecraft/data/loot/packs/VanillaBlockLoot;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; net/minecraft/data/loot/packs/VanillaBlockLoot/lambda$generate$40 (Lnet/minecraft/data/loot/packs/VanillaBlockLoot;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; +MD: net/minecraft/data/loot/packs/VanillaBlockLoot/m_247147_ (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; net/minecraft/data/loot/packs/VanillaBlockLoot/lambda$generate$224 (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; +MD: net/minecraft/data/loot/packs/VanillaBlockLoot/m_247151_ (Lnet/minecraft/data/loot/packs/VanillaBlockLoot;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; net/minecraft/data/loot/packs/VanillaBlockLoot/lambda$generate$141 (Lnet/minecraft/data/loot/packs/VanillaBlockLoot;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; +MD: net/minecraft/data/loot/packs/VanillaBlockLoot/m_247153_ (Lnet/minecraft/data/loot/packs/VanillaBlockLoot;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; net/minecraft/data/loot/packs/VanillaBlockLoot/lambda$generate$23 (Lnet/minecraft/data/loot/packs/VanillaBlockLoot;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; +MD: net/minecraft/data/loot/packs/VanillaBlockLoot/m_247157_ (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; net/minecraft/data/loot/packs/VanillaBlockLoot/lambda$generate$221 (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; +MD: net/minecraft/data/loot/packs/VanillaBlockLoot/m_247159_ (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; net/minecraft/data/loot/packs/VanillaBlockLoot/lambda$generate$88 (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; +MD: net/minecraft/data/loot/packs/VanillaBlockLoot/m_247164_ (Lnet/minecraft/data/loot/packs/VanillaBlockLoot;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; net/minecraft/data/loot/packs/VanillaBlockLoot/lambda$generate$136 (Lnet/minecraft/data/loot/packs/VanillaBlockLoot;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; +MD: net/minecraft/data/loot/packs/VanillaBlockLoot/m_247167_ (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; net/minecraft/data/loot/packs/VanillaBlockLoot/lambda$generate$235 (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; +MD: net/minecraft/data/loot/packs/VanillaBlockLoot/m_247177_ (Lnet/minecraft/data/loot/packs/VanillaBlockLoot;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; net/minecraft/data/loot/packs/VanillaBlockLoot/lambda$generate$52 (Lnet/minecraft/data/loot/packs/VanillaBlockLoot;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; +MD: net/minecraft/data/loot/packs/VanillaBlockLoot/m_247192_ (Lnet/minecraft/data/loot/packs/VanillaBlockLoot;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; net/minecraft/data/loot/packs/VanillaBlockLoot/lambda$generate$126 (Lnet/minecraft/data/loot/packs/VanillaBlockLoot;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; +MD: net/minecraft/data/loot/packs/VanillaBlockLoot/m_247197_ (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; net/minecraft/data/loot/packs/VanillaBlockLoot/lambda$generate$109 (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; +MD: net/minecraft/data/loot/packs/VanillaBlockLoot/m_247215_ (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; net/minecraft/data/loot/packs/VanillaBlockLoot/lambda$generate$203 (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; +MD: net/minecraft/data/loot/packs/VanillaBlockLoot/m_247221_ (Lnet/minecraft/data/loot/packs/VanillaBlockLoot;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; net/minecraft/data/loot/packs/VanillaBlockLoot/lambda$generate$51 (Lnet/minecraft/data/loot/packs/VanillaBlockLoot;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; +MD: net/minecraft/data/loot/packs/VanillaBlockLoot/m_247222_ (Lnet/minecraft/data/loot/packs/VanillaBlockLoot;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; net/minecraft/data/loot/packs/VanillaBlockLoot/lambda$generate$118 (Lnet/minecraft/data/loot/packs/VanillaBlockLoot;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; +MD: net/minecraft/data/loot/packs/VanillaBlockLoot/m_247226_ (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; net/minecraft/data/loot/packs/VanillaBlockLoot/lambda$generate$176 (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; +MD: net/minecraft/data/loot/packs/VanillaBlockLoot/m_247278_ (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; net/minecraft/data/loot/packs/VanillaBlockLoot/lambda$generate$87 (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; +MD: net/minecraft/data/loot/packs/VanillaBlockLoot/m_247287_ (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; net/minecraft/data/loot/packs/VanillaBlockLoot/lambda$generate$11 (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; +MD: net/minecraft/data/loot/packs/VanillaBlockLoot/m_247296_ (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; net/minecraft/data/loot/packs/VanillaBlockLoot/lambda$generate$216 (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; +MD: net/minecraft/data/loot/packs/VanillaBlockLoot/m_247352_ (Lnet/minecraft/data/loot/packs/VanillaBlockLoot;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; net/minecraft/data/loot/packs/VanillaBlockLoot/lambda$generate$143 (Lnet/minecraft/data/loot/packs/VanillaBlockLoot;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; +MD: net/minecraft/data/loot/packs/VanillaBlockLoot/m_247375_ (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; net/minecraft/data/loot/packs/VanillaBlockLoot/lambda$generate$93 (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; +MD: net/minecraft/data/loot/packs/VanillaBlockLoot/m_247399_ (Lnet/minecraft/data/loot/packs/VanillaBlockLoot;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; net/minecraft/data/loot/packs/VanillaBlockLoot/lambda$generate$47 (Lnet/minecraft/data/loot/packs/VanillaBlockLoot;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; +MD: net/minecraft/data/loot/packs/VanillaBlockLoot/m_247404_ (Lnet/minecraft/data/loot/packs/VanillaBlockLoot;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; net/minecraft/data/loot/packs/VanillaBlockLoot/lambda$generate$170 (Lnet/minecraft/data/loot/packs/VanillaBlockLoot;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; +MD: net/minecraft/data/loot/packs/VanillaBlockLoot/m_247405_ (Lnet/minecraft/data/loot/packs/VanillaBlockLoot;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; net/minecraft/data/loot/packs/VanillaBlockLoot/lambda$generate$112 (Lnet/minecraft/data/loot/packs/VanillaBlockLoot;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; +MD: net/minecraft/data/loot/packs/VanillaBlockLoot/m_247411_ (Lnet/minecraft/data/loot/packs/VanillaBlockLoot;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; net/minecraft/data/loot/packs/VanillaBlockLoot/lambda$generate$121 (Lnet/minecraft/data/loot/packs/VanillaBlockLoot;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; +MD: net/minecraft/data/loot/packs/VanillaBlockLoot/m_247412_ (Lnet/minecraft/data/loot/packs/VanillaBlockLoot;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; net/minecraft/data/loot/packs/VanillaBlockLoot/lambda$generate$39 (Lnet/minecraft/data/loot/packs/VanillaBlockLoot;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; +MD: net/minecraft/data/loot/packs/VanillaBlockLoot/m_247415_ (Lnet/minecraft/data/loot/packs/VanillaBlockLoot;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; net/minecraft/data/loot/packs/VanillaBlockLoot/lambda$generate$61 (Lnet/minecraft/data/loot/packs/VanillaBlockLoot;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; +MD: net/minecraft/data/loot/packs/VanillaBlockLoot/m_247429_ (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; net/minecraft/data/loot/packs/VanillaBlockLoot/lambda$generate$188 (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; +MD: net/minecraft/data/loot/packs/VanillaBlockLoot/m_247433_ (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; net/minecraft/data/loot/packs/VanillaBlockLoot/lambda$generate$14 (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; +MD: net/minecraft/data/loot/packs/VanillaBlockLoot/m_247453_ (Lnet/minecraft/data/loot/packs/VanillaBlockLoot;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; net/minecraft/data/loot/packs/VanillaBlockLoot/lambda$generate$45 (Lnet/minecraft/data/loot/packs/VanillaBlockLoot;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; +MD: net/minecraft/data/loot/packs/VanillaBlockLoot/m_247485_ (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; net/minecraft/data/loot/packs/VanillaBlockLoot/lambda$generate$207 (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; +MD: net/minecraft/data/loot/packs/VanillaBlockLoot/m_247486_ (Lnet/minecraft/data/loot/packs/VanillaBlockLoot;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; net/minecraft/data/loot/packs/VanillaBlockLoot/lambda$generate$142 (Lnet/minecraft/data/loot/packs/VanillaBlockLoot;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; +MD: net/minecraft/data/loot/packs/VanillaBlockLoot/m_247521_ (Lnet/minecraft/data/loot/packs/VanillaBlockLoot;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; net/minecraft/data/loot/packs/VanillaBlockLoot/lambda$generate$70 (Lnet/minecraft/data/loot/packs/VanillaBlockLoot;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; +MD: net/minecraft/data/loot/packs/VanillaBlockLoot/m_247527_ (Lnet/minecraft/data/loot/packs/VanillaBlockLoot;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; net/minecraft/data/loot/packs/VanillaBlockLoot/lambda$generate$32 (Lnet/minecraft/data/loot/packs/VanillaBlockLoot;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; +MD: net/minecraft/data/loot/packs/VanillaBlockLoot/m_247584_ (Lnet/minecraft/data/loot/packs/VanillaBlockLoot;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; net/minecraft/data/loot/packs/VanillaBlockLoot/lambda$generate$163 (Lnet/minecraft/data/loot/packs/VanillaBlockLoot;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; +MD: net/minecraft/data/loot/packs/VanillaBlockLoot/m_247608_ (Lnet/minecraft/data/loot/packs/VanillaBlockLoot;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; net/minecraft/data/loot/packs/VanillaBlockLoot/lambda$generate$156 (Lnet/minecraft/data/loot/packs/VanillaBlockLoot;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; +MD: net/minecraft/data/loot/packs/VanillaBlockLoot/m_247609_ (Lnet/minecraft/data/loot/packs/VanillaBlockLoot;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; net/minecraft/data/loot/packs/VanillaBlockLoot/lambda$generate$54 (Lnet/minecraft/data/loot/packs/VanillaBlockLoot;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; +MD: net/minecraft/data/loot/packs/VanillaBlockLoot/m_247614_ (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; net/minecraft/data/loot/packs/VanillaBlockLoot/lambda$generate$190 (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; +MD: net/minecraft/data/loot/packs/VanillaBlockLoot/m_247632_ (Lnet/minecraft/world/level/ItemLike;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; net/minecraft/data/loot/packs/VanillaBlockLoot/lambda$generate$213 (Lnet/minecraft/world/level/ItemLike;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; +MD: net/minecraft/data/loot/packs/VanillaBlockLoot/m_247633_ (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; net/minecraft/data/loot/packs/VanillaBlockLoot/lambda$generate$229 (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; +MD: net/minecraft/data/loot/packs/VanillaBlockLoot/m_247653_ (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; net/minecraft/data/loot/packs/VanillaBlockLoot/lambda$generate$16 (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; +MD: net/minecraft/data/loot/packs/VanillaBlockLoot/m_247683_ (Lnet/minecraft/data/loot/packs/VanillaBlockLoot;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; net/minecraft/data/loot/packs/VanillaBlockLoot/lambda$generate$53 (Lnet/minecraft/data/loot/packs/VanillaBlockLoot;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; +MD: net/minecraft/data/loot/packs/VanillaBlockLoot/m_247700_ (Lnet/minecraft/data/loot/packs/VanillaBlockLoot;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; net/minecraft/data/loot/packs/VanillaBlockLoot/lambda$generate$55 (Lnet/minecraft/data/loot/packs/VanillaBlockLoot;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; +MD: net/minecraft/data/loot/packs/VanillaBlockLoot/m_247712_ (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; net/minecraft/data/loot/packs/VanillaBlockLoot/lambda$generate$232 (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; +MD: net/minecraft/data/loot/packs/VanillaBlockLoot/m_247716_ (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; net/minecraft/data/loot/packs/VanillaBlockLoot/lambda$generate$99 (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; +MD: net/minecraft/data/loot/packs/VanillaBlockLoot/m_247725_ (Lnet/minecraft/data/loot/packs/VanillaBlockLoot;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; net/minecraft/data/loot/packs/VanillaBlockLoot/lambda$generate$168 (Lnet/minecraft/data/loot/packs/VanillaBlockLoot;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; +MD: net/minecraft/data/loot/packs/VanillaBlockLoot/m_263148_ (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; net/minecraft/data/loot/packs/VanillaBlockLoot/lambda$generate$174 (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; +MD: net/minecraft/data/loot/packs/VanillaBlockLoot/m_271577_ (Lnet/minecraft/data/loot/packs/VanillaBlockLoot;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; net/minecraft/data/loot/packs/VanillaBlockLoot/lambda$generate$78 (Lnet/minecraft/data/loot/packs/VanillaBlockLoot;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; +MD: net/minecraft/data/loot/packs/VanillaBlockLoot/m_271578_ (Lnet/minecraft/data/loot/packs/VanillaBlockLoot;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; net/minecraft/data/loot/packs/VanillaBlockLoot/lambda$generate$79 (Lnet/minecraft/data/loot/packs/VanillaBlockLoot;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; +MD: net/minecraft/data/loot/packs/VanillaBlockLoot/m_271579_ (Lnet/minecraft/data/loot/packs/VanillaBlockLoot;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; net/minecraft/data/loot/packs/VanillaBlockLoot/lambda$generate$82 (Lnet/minecraft/data/loot/packs/VanillaBlockLoot;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; +MD: net/minecraft/data/loot/packs/VanillaBlockLoot/m_271580_ (Lnet/minecraft/data/loot/packs/VanillaBlockLoot;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; net/minecraft/data/loot/packs/VanillaBlockLoot/lambda$generate$80 (Lnet/minecraft/data/loot/packs/VanillaBlockLoot;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; +MD: net/minecraft/data/loot/packs/VanillaBlockLoot/m_271581_ (Lnet/minecraft/data/loot/packs/VanillaBlockLoot;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; net/minecraft/data/loot/packs/VanillaBlockLoot/lambda$generate$74 (Lnet/minecraft/data/loot/packs/VanillaBlockLoot;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; +MD: net/minecraft/data/loot/packs/VanillaBlockLoot/m_271582_ (Lnet/minecraft/data/loot/packs/VanillaBlockLoot;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; net/minecraft/data/loot/packs/VanillaBlockLoot/lambda$generate$81 (Lnet/minecraft/data/loot/packs/VanillaBlockLoot;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; +MD: net/minecraft/data/loot/packs/VanillaBlockLoot/m_271584_ (Lnet/minecraft/data/loot/packs/VanillaBlockLoot;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; net/minecraft/data/loot/packs/VanillaBlockLoot/lambda$generate$75 (Lnet/minecraft/data/loot/packs/VanillaBlockLoot;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; +MD: net/minecraft/data/loot/packs/VanillaBlockLoot/m_271585_ (Lnet/minecraft/data/loot/packs/VanillaBlockLoot;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; net/minecraft/data/loot/packs/VanillaBlockLoot/lambda$generate$76 (Lnet/minecraft/data/loot/packs/VanillaBlockLoot;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; +MD: net/minecraft/data/loot/packs/VanillaBlockLoot/m_271586_ (Lnet/minecraft/data/loot/packs/VanillaBlockLoot;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; net/minecraft/data/loot/packs/VanillaBlockLoot/lambda$generate$77 (Lnet/minecraft/data/loot/packs/VanillaBlockLoot;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; +MD: net/minecraft/data/loot/packs/VanillaBlockLoot/m_271587_ (Lnet/minecraft/data/loot/packs/VanillaBlockLoot;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; net/minecraft/data/loot/packs/VanillaBlockLoot/lambda$generate$83 (Lnet/minecraft/data/loot/packs/VanillaBlockLoot;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; +MD: net/minecraft/data/loot/packs/VanillaBlockLoot/m_276710_ (Lnet/minecraft/data/loot/packs/VanillaBlockLoot;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; net/minecraft/data/loot/packs/VanillaBlockLoot/lambda$generate$73 (Lnet/minecraft/data/loot/packs/VanillaBlockLoot;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; +MD: net/minecraft/data/loot/packs/VanillaBlockLoot/m_276711_ (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; net/minecraft/data/loot/packs/VanillaBlockLoot/lambda$generate$186 (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; +MD: net/minecraft/data/loot/packs/VanillaBlockLoot/m_276712_ (Lnet/minecraft/data/loot/packs/VanillaBlockLoot;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; net/minecraft/data/loot/packs/VanillaBlockLoot/lambda$generate$72 (Lnet/minecraft/data/loot/packs/VanillaBlockLoot;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; +MD: net/minecraft/data/loot/packs/VanillaBlockLoot/m_276714_ (Lnet/minecraft/data/loot/packs/VanillaBlockLoot;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; net/minecraft/data/loot/packs/VanillaBlockLoot/lambda$generate$84 (Lnet/minecraft/data/loot/packs/VanillaBlockLoot;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; +MD: net/minecraft/data/loot/packs/VanillaBlockLoot/m_276715_ (Lnet/minecraft/data/loot/packs/VanillaBlockLoot;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; net/minecraft/data/loot/packs/VanillaBlockLoot/lambda$generate$71 (Lnet/minecraft/data/loot/packs/VanillaBlockLoot;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; +MD: net/minecraft/data/loot/packs/VanillaBlockLoot/m_276716_ (Ljava/lang/Integer;)Lnet/minecraft/world/level/storage/loot/entries/LootPoolEntryContainer$Builder; net/minecraft/data/loot/packs/VanillaBlockLoot/lambda$createPitcherCropLoot$238 (Ljava/lang/Integer;)Lnet/minecraft/world/level/storage/loot/entries/LootPoolEntryContainer$Builder; +MD: net/minecraft/data/loot/packs/VanillaBlockLoot/m_276717_ (Lnet/minecraft/data/loot/packs/VanillaBlockLoot;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; net/minecraft/data/loot/packs/VanillaBlockLoot/lambda$generate$85 (Lnet/minecraft/data/loot/packs/VanillaBlockLoot;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; +MD: net/minecraft/data/loot/packs/VanillaBlockLoot/m_277021_ ()Lnet/minecraft/world/level/storage/loot/LootTable$Builder; net/minecraft/data/loot/packs/VanillaBlockLoot/createPitcherCropLoot ()Lnet/minecraft/world/level/storage/loot/LootTable$Builder; +MD: net/minecraft/data/loot/packs/VanillaBlockLoot/m_277139_ (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; net/minecraft/data/loot/packs/VanillaBlockLoot/createDecoratedPotTable (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; +MD: net/minecraft/data/loot/packs/VanillaBlockLoot/m_279869_ (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; net/minecraft/data/loot/packs/VanillaBlockLoot/lambda$generate$182 (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; +MD: net/minecraft/data/loot/packs/VanillaBlockLoot/m_279870_ (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; net/minecraft/data/loot/packs/VanillaBlockLoot/lambda$generate$177 (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; +MD: net/minecraft/data/loot/packs/VanillaBlockLoot/m_279871_ (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; net/minecraft/data/loot/packs/VanillaBlockLoot/lambda$generate$185 (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; +MD: net/minecraft/data/loot/packs/VanillaBlockLoot/m_279872_ (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; net/minecraft/data/loot/packs/VanillaBlockLoot/lambda$generate$184 (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; +MD: net/minecraft/data/loot/packs/VanillaBlockLoot/m_279873_ (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; net/minecraft/data/loot/packs/VanillaBlockLoot/lambda$generate$179 (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; +MD: net/minecraft/data/loot/packs/VanillaBlockLoot/m_279874_ (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; net/minecraft/data/loot/packs/VanillaBlockLoot/lambda$generate$183 (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; +MD: net/minecraft/data/loot/packs/VanillaBlockLoot/m_279875_ (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; net/minecraft/data/loot/packs/VanillaBlockLoot/lambda$generate$181 (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; +MD: net/minecraft/data/loot/packs/VanillaBlockLoot/m_279876_ (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; net/minecraft/data/loot/packs/VanillaBlockLoot/lambda$generate$178 (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; +MD: net/minecraft/data/loot/packs/VanillaChestLoot/ ()V net/minecraft/data/loot/packs/VanillaChestLoot/ ()V +MD: net/minecraft/data/loot/packs/VanillaChestLoot/m_245126_ (Ljava/util/function/BiConsumer;)V net/minecraft/data/loot/packs/VanillaChestLoot/generate (Ljava/util/function/BiConsumer;)V +MD: net/minecraft/data/loot/packs/VanillaChestLoot/m_266168_ ()Lnet/minecraft/world/level/storage/loot/LootTable$Builder; net/minecraft/data/loot/packs/VanillaChestLoot/bastionBridgeLootTable ()Lnet/minecraft/world/level/storage/loot/LootTable$Builder; +MD: net/minecraft/data/loot/packs/VanillaChestLoot/m_266297_ ()Lnet/minecraft/world/level/storage/loot/LootTable$Builder; net/minecraft/data/loot/packs/VanillaChestLoot/jungleTempleLootTable ()Lnet/minecraft/world/level/storage/loot/LootTable$Builder; +MD: net/minecraft/data/loot/packs/VanillaChestLoot/m_266323_ ()Lnet/minecraft/world/level/storage/loot/LootTable$Builder; net/minecraft/data/loot/packs/VanillaChestLoot/bastionTreasureLootTable ()Lnet/minecraft/world/level/storage/loot/LootTable$Builder; +MD: net/minecraft/data/loot/packs/VanillaChestLoot/m_266336_ ()Lnet/minecraft/world/level/storage/loot/LootTable$Builder; net/minecraft/data/loot/packs/VanillaChestLoot/bastionOtherLootTable ()Lnet/minecraft/world/level/storage/loot/LootTable$Builder; +MD: net/minecraft/data/loot/packs/VanillaChestLoot/m_266364_ ()Lnet/minecraft/world/level/storage/loot/LootTable$Builder; net/minecraft/data/loot/packs/VanillaChestLoot/strongholdCorridorLootTable ()Lnet/minecraft/world/level/storage/loot/LootTable$Builder; +MD: net/minecraft/data/loot/packs/VanillaChestLoot/m_266375_ ()Lnet/minecraft/world/level/storage/loot/LootTable$Builder; net/minecraft/data/loot/packs/VanillaChestLoot/shipwreckSupplyLootTable ()Lnet/minecraft/world/level/storage/loot/LootTable$Builder; +MD: net/minecraft/data/loot/packs/VanillaChestLoot/m_266392_ ()Lnet/minecraft/world/level/storage/loot/LootTable$Builder; net/minecraft/data/loot/packs/VanillaChestLoot/netherBridgeLootTable ()Lnet/minecraft/world/level/storage/loot/LootTable$Builder; +MD: net/minecraft/data/loot/packs/VanillaChestLoot/m_266422_ ()Lnet/minecraft/world/level/storage/loot/LootTable$Builder; net/minecraft/data/loot/packs/VanillaChestLoot/desertPyramidLootTable ()Lnet/minecraft/world/level/storage/loot/LootTable$Builder; +MD: net/minecraft/data/loot/packs/VanillaChestLoot/m_266424_ ()Lnet/minecraft/world/level/storage/loot/LootTable$Builder; net/minecraft/data/loot/packs/VanillaChestLoot/shipwreckTreasureLootTable ()Lnet/minecraft/world/level/storage/loot/LootTable$Builder; +MD: net/minecraft/data/loot/packs/VanillaChestLoot/m_266435_ ()Lnet/minecraft/world/level/storage/loot/LootTable$Builder; net/minecraft/data/loot/packs/VanillaChestLoot/strongholdLibraryLootTable ()Lnet/minecraft/world/level/storage/loot/LootTable$Builder; +MD: net/minecraft/data/loot/packs/VanillaChestLoot/m_266444_ ()Lnet/minecraft/world/level/storage/loot/LootTable$Builder; net/minecraft/data/loot/packs/VanillaChestLoot/pillagerOutpostLootTable ()Lnet/minecraft/world/level/storage/loot/LootTable$Builder; +MD: net/minecraft/data/loot/packs/VanillaChestLoot/m_266481_ ()Lnet/minecraft/world/level/storage/loot/LootTable$Builder; net/minecraft/data/loot/packs/VanillaChestLoot/woodlandMansionLootTable ()Lnet/minecraft/world/level/storage/loot/LootTable$Builder; +MD: net/minecraft/data/loot/packs/VanillaChestLoot/m_266540_ ()Lnet/minecraft/world/level/storage/loot/LootTable$Builder; net/minecraft/data/loot/packs/VanillaChestLoot/endCityTreasureLootTable ()Lnet/minecraft/world/level/storage/loot/LootTable$Builder; +MD: net/minecraft/data/loot/packs/VanillaChestLoot/m_266552_ ()Lnet/minecraft/world/level/storage/loot/LootTable$Builder; net/minecraft/data/loot/packs/VanillaChestLoot/bastionHoglinStableLootTable ()Lnet/minecraft/world/level/storage/loot/LootTable$Builder; +MD: net/minecraft/data/loot/packs/VanillaChestLoot/m_266573_ ()Lnet/minecraft/world/level/storage/loot/LootTable$Builder; net/minecraft/data/loot/packs/VanillaChestLoot/shipwreckMapLootTable ()Lnet/minecraft/world/level/storage/loot/LootTable$Builder; +MD: net/minecraft/data/loot/packs/VanillaChestLoot/m_266580_ ()Lnet/minecraft/world/level/storage/loot/LootTable$Builder; net/minecraft/data/loot/packs/VanillaChestLoot/ancientCityLootTable ()Lnet/minecraft/world/level/storage/loot/LootTable$Builder; +MD: net/minecraft/data/loot/packs/VanillaEntityLoot/ ()V net/minecraft/data/loot/packs/VanillaEntityLoot/ ()V +MD: net/minecraft/data/loot/packs/VanillaEntityLoot/m_246942_ ()V net/minecraft/data/loot/packs/VanillaEntityLoot/generate ()V +MD: net/minecraft/data/loot/packs/VanillaEntityLoot/m_266591_ ()Lnet/minecraft/world/level/storage/loot/LootTable$Builder; net/minecraft/data/loot/packs/VanillaEntityLoot/elderGuardianLootTable ()Lnet/minecraft/world/level/storage/loot/LootTable$Builder; +MD: net/minecraft/data/loot/packs/VanillaFishingLoot/ ()V net/minecraft/data/loot/packs/VanillaFishingLoot/ ()V +MD: net/minecraft/data/loot/packs/VanillaFishingLoot/ ()V net/minecraft/data/loot/packs/VanillaFishingLoot/ ()V +MD: net/minecraft/data/loot/packs/VanillaFishingLoot/m_245126_ (Ljava/util/function/BiConsumer;)V net/minecraft/data/loot/packs/VanillaFishingLoot/generate (Ljava/util/function/BiConsumer;)V +MD: net/minecraft/data/loot/packs/VanillaFishingLoot/m_266406_ ()Lnet/minecraft/world/level/storage/loot/LootTable$Builder; net/minecraft/data/loot/packs/VanillaFishingLoot/fishingFishLootTable ()Lnet/minecraft/world/level/storage/loot/LootTable$Builder; +MD: net/minecraft/data/loot/packs/VanillaGiftLoot/ ()V net/minecraft/data/loot/packs/VanillaGiftLoot/ ()V +MD: net/minecraft/data/loot/packs/VanillaGiftLoot/m_245126_ (Ljava/util/function/BiConsumer;)V net/minecraft/data/loot/packs/VanillaGiftLoot/generate (Ljava/util/function/BiConsumer;)V +MD: net/minecraft/data/loot/packs/VanillaLootTableProvider/ ()V net/minecraft/data/loot/packs/VanillaLootTableProvider/ ()V +MD: net/minecraft/data/loot/packs/VanillaLootTableProvider/m_247452_ (Lnet/minecraft/data/PackOutput;)Lnet/minecraft/data/loot/LootTableProvider; net/minecraft/data/loot/packs/VanillaLootTableProvider/create (Lnet/minecraft/data/PackOutput;)Lnet/minecraft/data/loot/LootTableProvider; +MD: net/minecraft/data/loot/packs/VanillaPiglinBarterLoot/ ()V net/minecraft/data/loot/packs/VanillaPiglinBarterLoot/ ()V +MD: net/minecraft/data/loot/packs/VanillaPiglinBarterLoot/m_245126_ (Ljava/util/function/BiConsumer;)V net/minecraft/data/loot/packs/VanillaPiglinBarterLoot/generate (Ljava/util/function/BiConsumer;)V +MD: net/minecraft/data/metadata/PackMetadataGenerator/ (Lnet/minecraft/data/PackOutput;)V net/minecraft/data/metadata/PackMetadataGenerator/ (Lnet/minecraft/data/PackOutput;)V +MD: net/minecraft/data/metadata/PackMetadataGenerator/m_213708_ (Lnet/minecraft/data/CachedOutput;)Ljava/util/concurrent/CompletableFuture; net/minecraft/data/metadata/PackMetadataGenerator/run (Lnet/minecraft/data/CachedOutput;)Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/data/metadata/PackMetadataGenerator/m_245452_ (Lcom/google/gson/JsonObject;Ljava/lang/String;Ljava/util/function/Supplier;)V net/minecraft/data/metadata/PackMetadataGenerator/lambda$run$1 (Lcom/google/gson/JsonObject;Ljava/lang/String;Ljava/util/function/Supplier;)V +MD: net/minecraft/data/metadata/PackMetadataGenerator/m_247300_ (Lnet/minecraft/server/packs/metadata/MetadataSectionType;Ljava/lang/Object;)Lnet/minecraft/data/metadata/PackMetadataGenerator; net/minecraft/data/metadata/PackMetadataGenerator/add (Lnet/minecraft/server/packs/metadata/MetadataSectionType;Ljava/lang/Object;)Lnet/minecraft/data/metadata/PackMetadataGenerator; +MD: net/minecraft/data/metadata/PackMetadataGenerator/m_247576_ (Lnet/minecraft/server/packs/metadata/MetadataSectionType;Ljava/lang/Object;)Lcom/google/gson/JsonElement; net/minecraft/data/metadata/PackMetadataGenerator/lambda$add$0 (Lnet/minecraft/server/packs/metadata/MetadataSectionType;Ljava/lang/Object;)Lcom/google/gson/JsonElement; +MD: net/minecraft/data/metadata/PackMetadataGenerator/m_252835_ (Lnet/minecraft/data/PackOutput;Lnet/minecraft/network/chat/Component;Lnet/minecraft/world/flag/FeatureFlagSet;)Lnet/minecraft/data/metadata/PackMetadataGenerator; net/minecraft/data/metadata/PackMetadataGenerator/forFeaturePack (Lnet/minecraft/data/PackOutput;Lnet/minecraft/network/chat/Component;Lnet/minecraft/world/flag/FeatureFlagSet;)Lnet/minecraft/data/metadata/PackMetadataGenerator; +MD: net/minecraft/data/metadata/PackMetadataGenerator/m_254904_ (Lnet/minecraft/data/PackOutput;Lnet/minecraft/network/chat/Component;)Lnet/minecraft/data/metadata/PackMetadataGenerator; net/minecraft/data/metadata/PackMetadataGenerator/forFeaturePack (Lnet/minecraft/data/PackOutput;Lnet/minecraft/network/chat/Component;)Lnet/minecraft/data/metadata/PackMetadataGenerator; +MD: net/minecraft/data/metadata/PackMetadataGenerator/m_6055_ ()Ljava/lang/String; net/minecraft/data/metadata/PackMetadataGenerator/getName ()Ljava/lang/String; +MD: net/minecraft/data/models/BlockModelGenerators/ ()V net/minecraft/data/models/BlockModelGenerators/ ()V +MD: net/minecraft/data/models/BlockModelGenerators/ (Ljava/util/function/Consumer;Ljava/util/function/BiConsumer;Ljava/util/function/Consumer;)V net/minecraft/data/models/BlockModelGenerators/ (Ljava/util/function/Consumer;Ljava/util/function/BiConsumer;Ljava/util/function/Consumer;)V +MD: net/minecraft/data/models/BlockModelGenerators/m_124484_ ()V net/minecraft/data/models/BlockModelGenerators/createComposter ()V +MD: net/minecraft/data/models/BlockModelGenerators/m_124485_ ()V net/minecraft/data/models/BlockModelGenerators/createDaylightDetector ()V +MD: net/minecraft/data/models/BlockModelGenerators/m_124486_ ()V net/minecraft/data/models/BlockModelGenerators/createFarmland ()V +MD: net/minecraft/data/models/BlockModelGenerators/m_124487_ ()V net/minecraft/data/models/BlockModelGenerators/createFire ()V +MD: net/minecraft/data/models/BlockModelGenerators/m_124488_ ()V net/minecraft/data/models/BlockModelGenerators/createSoulFire ()V +MD: net/minecraft/data/models/BlockModelGenerators/m_124489_ ()V net/minecraft/data/models/BlockModelGenerators/createFrostedIce ()V +MD: net/minecraft/data/models/BlockModelGenerators/m_124490_ ()V net/minecraft/data/models/BlockModelGenerators/createGrassBlocks ()V +MD: net/minecraft/data/models/BlockModelGenerators/m_124491_ ()V net/minecraft/data/models/BlockModelGenerators/createCocoa ()V +MD: net/minecraft/data/models/BlockModelGenerators/m_124493_ ()V net/minecraft/data/models/BlockModelGenerators/createHopper ()V +MD: net/minecraft/data/models/BlockModelGenerators/m_124494_ ()V net/minecraft/data/models/BlockModelGenerators/createIronBars ()V +MD: net/minecraft/data/models/BlockModelGenerators/m_124495_ ()V net/minecraft/data/models/BlockModelGenerators/createLever ()V +MD: net/minecraft/data/models/BlockModelGenerators/m_124496_ ()V net/minecraft/data/models/BlockModelGenerators/createLilyPad ()V +MD: net/minecraft/data/models/BlockModelGenerators/m_124497_ ()V net/minecraft/data/models/BlockModelGenerators/createNetherPortalBlock ()V +MD: net/minecraft/data/models/BlockModelGenerators/m_124498_ ()V net/minecraft/data/models/BlockModelGenerators/createNetherrack ()V +MD: net/minecraft/data/models/BlockModelGenerators/m_124499_ ()V net/minecraft/data/models/BlockModelGenerators/createObserver ()V +MD: net/minecraft/data/models/BlockModelGenerators/m_124500_ ()V net/minecraft/data/models/BlockModelGenerators/createPistons ()V +MD: net/minecraft/data/models/BlockModelGenerators/m_124501_ ()V net/minecraft/data/models/BlockModelGenerators/createPistonHeads ()V +MD: net/minecraft/data/models/BlockModelGenerators/m_124502_ ()V net/minecraft/data/models/BlockModelGenerators/createScaffolding ()V +MD: net/minecraft/data/models/BlockModelGenerators/m_124503_ ()V net/minecraft/data/models/BlockModelGenerators/createRedstoneLamp ()V +MD: net/minecraft/data/models/BlockModelGenerators/m_124504_ ()V net/minecraft/data/models/BlockModelGenerators/createRedstoneTorch ()V +MD: net/minecraft/data/models/BlockModelGenerators/m_124505_ ()V net/minecraft/data/models/BlockModelGenerators/createRepeater ()V +MD: net/minecraft/data/models/BlockModelGenerators/m_124506_ ()V net/minecraft/data/models/BlockModelGenerators/createSeaPickle ()V +MD: net/minecraft/data/models/BlockModelGenerators/m_124507_ ()V net/minecraft/data/models/BlockModelGenerators/createSnowBlocks ()V +MD: net/minecraft/data/models/BlockModelGenerators/m_124508_ ()V net/minecraft/data/models/BlockModelGenerators/createStonecutter ()V +MD: net/minecraft/data/models/BlockModelGenerators/m_124509_ ()V net/minecraft/data/models/BlockModelGenerators/createStructureBlock ()V +MD: net/minecraft/data/models/BlockModelGenerators/m_124510_ ()V net/minecraft/data/models/BlockModelGenerators/run ()V +MD: net/minecraft/data/models/BlockModelGenerators/m_124511_ (I)Ljava/util/List; net/minecraft/data/models/BlockModelGenerators/createBambooModels (I)Ljava/util/List; +MD: net/minecraft/data/models/BlockModelGenerators/m_124513_ (ILjava/lang/String;Lnet/minecraft/data/models/model/TextureMapping;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/data/models/BlockModelGenerators/createTurtleEggModel (ILjava/lang/String;Lnet/minecraft/data/models/model/TextureMapping;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/data/models/BlockModelGenerators/m_124517_ (Lnet/minecraft/world/item/Item;)V net/minecraft/data/models/BlockModelGenerators/createSimpleFlatItemModel (Lnet/minecraft/world/item/Item;)V +MD: net/minecraft/data/models/BlockModelGenerators/m_124519_ (Lnet/minecraft/world/item/Item;Lnet/minecraft/resources/ResourceLocation;)V net/minecraft/data/models/BlockModelGenerators/delegateItemModel (Lnet/minecraft/world/item/Item;Lnet/minecraft/resources/ResourceLocation;)V +MD: net/minecraft/data/models/BlockModelGenerators/m_124524_ (Lnet/minecraft/world/level/block/Block;)V net/minecraft/data/models/BlockModelGenerators/skipAutoItemBlock (Lnet/minecraft/world/level/block/Block;)V +MD: net/minecraft/data/models/BlockModelGenerators/m_124530_ (Lnet/minecraft/world/level/block/Block;Lnet/minecraft/world/item/Item;)V net/minecraft/data/models/BlockModelGenerators/createAirLikeBlock (Lnet/minecraft/world/level/block/Block;Lnet/minecraft/world/item/Item;)V +MD: net/minecraft/data/models/BlockModelGenerators/m_124533_ (Lnet/minecraft/world/level/block/Block;Lnet/minecraft/world/level/block/Block;)V net/minecraft/data/models/BlockModelGenerators/createNonTemplateModelBlock (Lnet/minecraft/world/level/block/Block;Lnet/minecraft/world/level/block/Block;)V +MD: net/minecraft/data/models/BlockModelGenerators/m_124536_ (Lnet/minecraft/world/level/block/Block;Lnet/minecraft/world/level/block/Block;Lnet/minecraft/world/level/block/Block;Lnet/minecraft/world/level/block/Block;Lnet/minecraft/world/level/block/Block;Lnet/minecraft/world/level/block/Block;Lnet/minecraft/world/level/block/Block;Lnet/minecraft/world/level/block/Block;)V net/minecraft/data/models/BlockModelGenerators/createCoral (Lnet/minecraft/world/level/block/Block;Lnet/minecraft/world/level/block/Block;Lnet/minecraft/world/level/block/Block;Lnet/minecraft/world/level/block/Block;Lnet/minecraft/world/level/block/Block;Lnet/minecraft/world/level/block/Block;Lnet/minecraft/world/level/block/Block;Lnet/minecraft/world/level/block/Block;)V +MD: net/minecraft/data/models/BlockModelGenerators/m_124545_ (Lnet/minecraft/world/level/block/Block;Lnet/minecraft/world/level/block/Block;Lnet/minecraft/data/models/BlockModelGenerators$TintState;)V net/minecraft/data/models/BlockModelGenerators/createPlant (Lnet/minecraft/world/level/block/Block;Lnet/minecraft/world/level/block/Block;Lnet/minecraft/data/models/BlockModelGenerators$TintState;)V +MD: net/minecraft/data/models/BlockModelGenerators/m_124549_ (Lnet/minecraft/world/level/block/Block;Lnet/minecraft/world/level/block/Block;Ljava/util/function/BiFunction;)V net/minecraft/data/models/BlockModelGenerators/createCraftingTableLike (Lnet/minecraft/world/level/block/Block;Lnet/minecraft/world/level/block/Block;Ljava/util/function/BiFunction;)V +MD: net/minecraft/data/models/BlockModelGenerators/m_124553_ (Lnet/minecraft/world/level/block/Block;Lnet/minecraft/world/level/block/state/properties/Property;[I)V net/minecraft/data/models/BlockModelGenerators/createCropBlock (Lnet/minecraft/world/level/block/Block;Lnet/minecraft/world/level/block/state/properties/Property;[I)V +MD: net/minecraft/data/models/BlockModelGenerators/m_124557_ (Lnet/minecraft/world/level/block/Block;Lnet/minecraft/data/models/BlockModelGenerators$TintState;)V net/minecraft/data/models/BlockModelGenerators/createCrossBlockWithDefaultItem (Lnet/minecraft/world/level/block/Block;Lnet/minecraft/data/models/BlockModelGenerators$TintState;)V +MD: net/minecraft/data/models/BlockModelGenerators/m_124560_ (Lnet/minecraft/world/level/block/Block;Lnet/minecraft/data/models/BlockModelGenerators$TintState;Lnet/minecraft/data/models/model/TextureMapping;)V net/minecraft/data/models/BlockModelGenerators/createCrossBlockWithDefaultItem (Lnet/minecraft/world/level/block/Block;Lnet/minecraft/data/models/BlockModelGenerators$TintState;Lnet/minecraft/data/models/model/TextureMapping;)V +MD: net/minecraft/data/models/BlockModelGenerators/m_124564_ (Lnet/minecraft/world/level/block/Block;Lnet/minecraft/data/models/model/TextureMapping;)V net/minecraft/data/models/BlockModelGenerators/createPumpkinVariant (Lnet/minecraft/world/level/block/Block;Lnet/minecraft/data/models/model/TextureMapping;)V +MD: net/minecraft/data/models/BlockModelGenerators/m_124567_ (Lnet/minecraft/world/level/block/Block;Lnet/minecraft/data/models/model/TextureMapping;Lnet/minecraft/data/models/model/ModelTemplate;)V net/minecraft/data/models/BlockModelGenerators/createTrivialBlock (Lnet/minecraft/world/level/block/Block;Lnet/minecraft/data/models/model/TextureMapping;Lnet/minecraft/data/models/model/ModelTemplate;)V +MD: net/minecraft/data/models/BlockModelGenerators/m_124575_ (Lnet/minecraft/world/level/block/Block;Ljava/lang/String;)V net/minecraft/data/models/BlockModelGenerators/createSimpleFlatItemModel (Lnet/minecraft/world/level/block/Block;Ljava/lang/String;)V +MD: net/minecraft/data/models/BlockModelGenerators/m_124578_ (Lnet/minecraft/world/level/block/Block;Ljava/lang/String;Lnet/minecraft/data/models/model/ModelTemplate;Ljava/util/function/Function;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/data/models/BlockModelGenerators/createSuffixedVariant (Lnet/minecraft/world/level/block/Block;Ljava/lang/String;Lnet/minecraft/data/models/model/ModelTemplate;Ljava/util/function/Function;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/data/models/BlockModelGenerators/m_124583_ (Lnet/minecraft/world/level/block/Block;Ljava/util/function/Function;)V net/minecraft/data/models/BlockModelGenerators/createBeeNest (Lnet/minecraft/world/level/block/Block;Ljava/util/function/Function;)V +MD: net/minecraft/data/models/BlockModelGenerators/m_124586_ (Lnet/minecraft/world/level/block/Block;Lnet/minecraft/data/models/model/TexturedModel$Provider;)V net/minecraft/data/models/BlockModelGenerators/createAxisAlignedPillarBlock (Lnet/minecraft/world/level/block/Block;Lnet/minecraft/data/models/model/TexturedModel$Provider;)V +MD: net/minecraft/data/models/BlockModelGenerators/m_124589_ (Lnet/minecraft/world/level/block/Block;Lnet/minecraft/data/models/model/TexturedModel$Provider;Lnet/minecraft/data/models/model/TexturedModel$Provider;)V net/minecraft/data/models/BlockModelGenerators/createRotatedPillarWithHorizontalVariant (Lnet/minecraft/world/level/block/Block;Lnet/minecraft/data/models/model/TexturedModel$Provider;Lnet/minecraft/data/models/model/TexturedModel$Provider;)V +MD: net/minecraft/data/models/BlockModelGenerators/m_124599_ (Lnet/minecraft/world/level/block/Block;Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/data/models/blockstates/Variant;)V net/minecraft/data/models/BlockModelGenerators/createGrassLikeBlock (Lnet/minecraft/world/level/block/Block;Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/data/models/blockstates/Variant;)V +MD: net/minecraft/data/models/BlockModelGenerators/m_124603_ (Lnet/minecraft/world/level/block/Block;Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/data/models/model/TextureMapping;)V net/minecraft/data/models/BlockModelGenerators/createPistonVariant (Lnet/minecraft/world/level/block/Block;Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/data/models/model/TextureMapping;)V +MD: net/minecraft/data/models/BlockModelGenerators/m_124622_ (Lnet/minecraft/world/level/block/state/properties/BooleanProperty;Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/data/models/blockstates/PropertyDispatch; net/minecraft/data/models/BlockModelGenerators/createBooleanModelDispatch (Lnet/minecraft/world/level/block/state/properties/BooleanProperty;Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/data/models/blockstates/PropertyDispatch; +MD: net/minecraft/data/models/BlockModelGenerators/m_124626_ (Lnet/minecraft/world/level/block/state/properties/Property;Ljava/lang/Comparable;Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/data/models/blockstates/PropertyDispatch; net/minecraft/data/models/BlockModelGenerators/createEmptyOrFullDispatch (Lnet/minecraft/world/level/block/state/properties/Property;Ljava/lang/Comparable;Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/data/models/blockstates/PropertyDispatch; +MD: net/minecraft/data/models/BlockModelGenerators/m_124635_ (Lnet/minecraft/core/FrontAndTop;Lnet/minecraft/data/models/blockstates/Variant;)Lnet/minecraft/data/models/blockstates/Variant; net/minecraft/data/models/BlockModelGenerators/applyRotation (Lnet/minecraft/core/FrontAndTop;Lnet/minecraft/data/models/blockstates/Variant;)Lnet/minecraft/data/models/blockstates/Variant; +MD: net/minecraft/data/models/BlockModelGenerators/m_124676_ (Ljava/lang/Integer;Ljava/lang/Integer;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/data/models/BlockModelGenerators/createTurtleEggModel (Ljava/lang/Integer;Ljava/lang/Integer;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/data/models/BlockModelGenerators/m_124682_ (Ljava/util/List;Ljava/util/function/UnaryOperator;)Ljava/util/List; net/minecraft/data/models/BlockModelGenerators/wrapModels (Ljava/util/List;Ljava/util/function/UnaryOperator;)Ljava/util/List; +MD: net/minecraft/data/models/BlockModelGenerators/m_124685_ (Lnet/minecraft/data/models/model/TexturedModel$Provider;[Lnet/minecraft/world/level/block/Block;)V net/minecraft/data/models/BlockModelGenerators/createColoredBlockWithRandomRotations (Lnet/minecraft/data/models/model/TexturedModel$Provider;[Lnet/minecraft/world/level/block/Block;)V +MD: net/minecraft/data/models/BlockModelGenerators/m_124688_ (Lnet/minecraft/resources/ResourceLocation;)[Lnet/minecraft/data/models/blockstates/Variant; net/minecraft/data/models/BlockModelGenerators/createRotatedVariants (Lnet/minecraft/resources/ResourceLocation;)[Lnet/minecraft/data/models/blockstates/Variant; +MD: net/minecraft/data/models/BlockModelGenerators/m_124690_ (Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/data/models/BlockModelGenerators$BlockEntityModelGenerator; net/minecraft/data/models/BlockModelGenerators/blockEntityModels (Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/data/models/BlockModelGenerators$BlockEntityModelGenerator; +MD: net/minecraft/data/models/BlockModelGenerators/m_124713_ ([Lnet/minecraft/world/level/block/Block;)V net/minecraft/data/models/BlockModelGenerators/createCampfires ([Lnet/minecraft/world/level/block/Block;)V +MD: net/minecraft/data/models/BlockModelGenerators/m_124718_ ()V net/minecraft/data/models/BlockModelGenerators/createSweetBerryBush ()V +MD: net/minecraft/data/models/BlockModelGenerators/m_124719_ ()V net/minecraft/data/models/BlockModelGenerators/createTripwire ()V +MD: net/minecraft/data/models/BlockModelGenerators/m_124720_ ()V net/minecraft/data/models/BlockModelGenerators/createTripwireHook ()V +MD: net/minecraft/data/models/BlockModelGenerators/m_124721_ ()V net/minecraft/data/models/BlockModelGenerators/createTurtleEgg ()V +MD: net/minecraft/data/models/BlockModelGenerators/m_124723_ ()V net/minecraft/data/models/BlockModelGenerators/createMagmaBlock ()V +MD: net/minecraft/data/models/BlockModelGenerators/m_124724_ ()V net/minecraft/data/models/BlockModelGenerators/createInfestedStone ()V +MD: net/minecraft/data/models/BlockModelGenerators/m_124725_ ()V net/minecraft/data/models/BlockModelGenerators/createRespawnAnchor ()V +MD: net/minecraft/data/models/BlockModelGenerators/m_124726_ ()V net/minecraft/data/models/BlockModelGenerators/createJigsaw ()V +MD: net/minecraft/data/models/BlockModelGenerators/m_124727_ ()Lnet/minecraft/data/models/blockstates/PropertyDispatch; net/minecraft/data/models/BlockModelGenerators/createHorizontalFacingDispatch ()Lnet/minecraft/data/models/blockstates/PropertyDispatch; +MD: net/minecraft/data/models/BlockModelGenerators/m_124728_ (Lnet/minecraft/world/level/block/Block;)V net/minecraft/data/models/BlockModelGenerators/createSimpleFlatItemModel (Lnet/minecraft/world/level/block/Block;)V +MD: net/minecraft/data/models/BlockModelGenerators/m_124730_ (Lnet/minecraft/world/level/block/Block;Lnet/minecraft/world/level/block/Block;)V net/minecraft/data/models/BlockModelGenerators/createCoralFans (Lnet/minecraft/world/level/block/Block;Lnet/minecraft/world/level/block/Block;)V +MD: net/minecraft/data/models/BlockModelGenerators/m_124733_ (Lnet/minecraft/world/level/block/Block;Lnet/minecraft/world/level/block/Block;Lnet/minecraft/data/models/BlockModelGenerators$TintState;)V net/minecraft/data/models/BlockModelGenerators/createGrowingPlant (Lnet/minecraft/world/level/block/Block;Lnet/minecraft/world/level/block/Block;Lnet/minecraft/data/models/BlockModelGenerators$TintState;)V +MD: net/minecraft/data/models/BlockModelGenerators/m_124737_ (Lnet/minecraft/world/level/block/Block;Lnet/minecraft/data/models/BlockModelGenerators$TintState;)V net/minecraft/data/models/BlockModelGenerators/createCrossBlock (Lnet/minecraft/world/level/block/Block;Lnet/minecraft/data/models/BlockModelGenerators$TintState;)V +MD: net/minecraft/data/models/BlockModelGenerators/m_124740_ (Lnet/minecraft/world/level/block/Block;Lnet/minecraft/data/models/BlockModelGenerators$TintState;Lnet/minecraft/data/models/model/TextureMapping;)V net/minecraft/data/models/BlockModelGenerators/createCrossBlock (Lnet/minecraft/world/level/block/Block;Lnet/minecraft/data/models/BlockModelGenerators$TintState;Lnet/minecraft/data/models/model/TextureMapping;)V +MD: net/minecraft/data/models/BlockModelGenerators/m_124744_ (Lnet/minecraft/world/level/block/Block;Lnet/minecraft/data/models/model/TexturedModel$Provider;)V net/minecraft/data/models/BlockModelGenerators/createHorizontallyRotatedBlock (Lnet/minecraft/world/level/block/Block;Lnet/minecraft/data/models/model/TexturedModel$Provider;)V +MD: net/minecraft/data/models/BlockModelGenerators/m_124777_ (Lnet/minecraft/data/models/model/TexturedModel$Provider;[Lnet/minecraft/world/level/block/Block;)V net/minecraft/data/models/BlockModelGenerators/createColoredBlockWithStateRotations (Lnet/minecraft/data/models/model/TexturedModel$Provider;[Lnet/minecraft/world/level/block/Block;)V +MD: net/minecraft/data/models/BlockModelGenerators/m_124785_ ()Lnet/minecraft/data/models/blockstates/PropertyDispatch; net/minecraft/data/models/BlockModelGenerators/createHorizontalFacingDispatchAlt ()Lnet/minecraft/data/models/blockstates/PropertyDispatch; +MD: net/minecraft/data/models/BlockModelGenerators/m_124786_ (Lnet/minecraft/world/level/block/Block;)V net/minecraft/data/models/BlockModelGenerators/createRotatedMirroredVariantBlock (Lnet/minecraft/world/level/block/Block;)V +MD: net/minecraft/data/models/BlockModelGenerators/m_124788_ (Lnet/minecraft/world/level/block/Block;Lnet/minecraft/world/level/block/Block;)V net/minecraft/data/models/BlockModelGenerators/createStems (Lnet/minecraft/world/level/block/Block;Lnet/minecraft/world/level/block/Block;)V +MD: net/minecraft/data/models/BlockModelGenerators/m_124791_ (Lnet/minecraft/world/level/block/Block;Lnet/minecraft/data/models/BlockModelGenerators$TintState;)V net/minecraft/data/models/BlockModelGenerators/createDoublePlant (Lnet/minecraft/world/level/block/Block;Lnet/minecraft/data/models/BlockModelGenerators$TintState;)V +MD: net/minecraft/data/models/BlockModelGenerators/m_124794_ (Lnet/minecraft/world/level/block/Block;Lnet/minecraft/data/models/model/TexturedModel$Provider;)V net/minecraft/data/models/BlockModelGenerators/createTrivialBlock (Lnet/minecraft/world/level/block/Block;Lnet/minecraft/data/models/model/TexturedModel$Provider;)V +MD: net/minecraft/data/models/BlockModelGenerators/m_124797_ (Lnet/minecraft/world/level/block/Block;Lnet/minecraft/resources/ResourceLocation;)V net/minecraft/data/models/BlockModelGenerators/delegateItemModel (Lnet/minecraft/world/level/block/Block;Lnet/minecraft/resources/ResourceLocation;)V +MD: net/minecraft/data/models/BlockModelGenerators/m_124809_ (Lnet/minecraft/world/level/block/Block;Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/resources/ResourceLocation;Z)Lnet/minecraft/data/models/blockstates/BlockStateGenerator; net/minecraft/data/models/BlockModelGenerators/createFenceGate (Lnet/minecraft/world/level/block/Block;Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/resources/ResourceLocation;Z)Lnet/minecraft/data/models/blockstates/BlockStateGenerator; +MD: net/minecraft/data/models/BlockModelGenerators/m_124822_ ()Lnet/minecraft/data/models/blockstates/PropertyDispatch; net/minecraft/data/models/BlockModelGenerators/createTorchHorizontalDispatch ()Lnet/minecraft/data/models/blockstates/PropertyDispatch; +MD: net/minecraft/data/models/BlockModelGenerators/m_124823_ (Lnet/minecraft/world/level/block/Block;)V net/minecraft/data/models/BlockModelGenerators/createRotatedVariantBlock (Lnet/minecraft/world/level/block/Block;)V +MD: net/minecraft/data/models/BlockModelGenerators/m_124825_ (Lnet/minecraft/world/level/block/Block;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/data/models/BlockModelGenerators$BlockEntityModelGenerator; net/minecraft/data/models/BlockModelGenerators/blockEntityModels (Lnet/minecraft/world/level/block/Block;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/data/models/BlockModelGenerators$BlockEntityModelGenerator; +MD: net/minecraft/data/models/BlockModelGenerators/m_124831_ (Lnet/minecraft/world/level/block/Block;Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/data/models/blockstates/MultiVariantGenerator; net/minecraft/data/models/BlockModelGenerators/createRotatedVariant (Lnet/minecraft/world/level/block/Block;Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/data/models/blockstates/MultiVariantGenerator; +MD: net/minecraft/data/models/BlockModelGenerators/m_124838_ (Lnet/minecraft/world/level/block/Block;Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/data/models/blockstates/BlockStateGenerator; net/minecraft/data/models/BlockModelGenerators/createWall (Lnet/minecraft/world/level/block/Block;Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/data/models/blockstates/BlockStateGenerator; +MD: net/minecraft/data/models/BlockModelGenerators/m_124850_ ()Lnet/minecraft/data/models/blockstates/PropertyDispatch; net/minecraft/data/models/BlockModelGenerators/createFacingDispatch ()Lnet/minecraft/data/models/blockstates/PropertyDispatch; +MD: net/minecraft/data/models/BlockModelGenerators/m_124851_ (Lnet/minecraft/world/level/block/Block;)V net/minecraft/data/models/BlockModelGenerators/createTrivialCube (Lnet/minecraft/world/level/block/Block;)V +MD: net/minecraft/data/models/BlockModelGenerators/m_124856_ (Lnet/minecraft/world/level/block/Block;Lnet/minecraft/data/models/model/TexturedModel$Provider;)V net/minecraft/data/models/BlockModelGenerators/createFurnace (Lnet/minecraft/world/level/block/Block;Lnet/minecraft/data/models/model/TexturedModel$Provider;)V +MD: net/minecraft/data/models/BlockModelGenerators/m_124859_ (Lnet/minecraft/world/level/block/Block;Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/data/models/blockstates/MultiVariantGenerator; net/minecraft/data/models/BlockModelGenerators/createSimpleBlock (Lnet/minecraft/world/level/block/Block;Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/data/models/blockstates/MultiVariantGenerator; +MD: net/minecraft/data/models/BlockModelGenerators/m_124862_ (Lnet/minecraft/world/level/block/Block;Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/data/models/blockstates/MultiVariantGenerator; net/minecraft/data/models/BlockModelGenerators/createRotatedVariant (Lnet/minecraft/world/level/block/Block;Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/data/models/blockstates/MultiVariantGenerator; +MD: net/minecraft/data/models/BlockModelGenerators/m_124866_ (Lnet/minecraft/world/level/block/Block;Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/data/models/blockstates/BlockStateGenerator; net/minecraft/data/models/BlockModelGenerators/createStairs (Lnet/minecraft/world/level/block/Block;Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/data/models/blockstates/BlockStateGenerator; +MD: net/minecraft/data/models/BlockModelGenerators/m_124875_ ()Lnet/minecraft/data/models/blockstates/PropertyDispatch; net/minecraft/data/models/BlockModelGenerators/createRotatedPillar ()Lnet/minecraft/data/models/blockstates/PropertyDispatch; +MD: net/minecraft/data/models/BlockModelGenerators/m_124876_ (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/data/models/BlockModelGenerators$BlockFamilyProvider; net/minecraft/data/models/BlockModelGenerators/family (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/data/models/BlockModelGenerators$BlockFamilyProvider; +MD: net/minecraft/data/models/BlockModelGenerators/m_124878_ (Lnet/minecraft/world/level/block/Block;Lnet/minecraft/world/level/block/Block;)V net/minecraft/data/models/BlockModelGenerators/createGlassBlocks (Lnet/minecraft/world/level/block/Block;Lnet/minecraft/world/level/block/Block;)V +MD: net/minecraft/data/models/BlockModelGenerators/m_124881_ (Lnet/minecraft/world/level/block/Block;Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/data/models/blockstates/BlockStateGenerator; net/minecraft/data/models/BlockModelGenerators/createAxisAlignedPillarBlock (Lnet/minecraft/world/level/block/Block;Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/data/models/blockstates/BlockStateGenerator; +MD: net/minecraft/data/models/BlockModelGenerators/m_124884_ (Lnet/minecraft/world/level/block/Block;Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/data/models/blockstates/BlockStateGenerator; net/minecraft/data/models/BlockModelGenerators/createButton (Lnet/minecraft/world/level/block/Block;Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/data/models/blockstates/BlockStateGenerator; +MD: net/minecraft/data/models/BlockModelGenerators/m_124888_ (Lnet/minecraft/world/level/block/Block;Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/data/models/blockstates/BlockStateGenerator; net/minecraft/data/models/BlockModelGenerators/createOrientableTrapdoor (Lnet/minecraft/world/level/block/Block;Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/data/models/blockstates/BlockStateGenerator; +MD: net/minecraft/data/models/BlockModelGenerators/m_124893_ (Lnet/minecraft/data/models/blockstates/Variant;)Lnet/minecraft/data/models/blockstates/Variant; net/minecraft/data/models/BlockModelGenerators/lambda$createFire$19 (Lnet/minecraft/data/models/blockstates/Variant;)Lnet/minecraft/data/models/blockstates/Variant; +MD: net/minecraft/data/models/BlockModelGenerators/m_124895_ ()V net/minecraft/data/models/BlockModelGenerators/createSunflower ()V +MD: net/minecraft/data/models/BlockModelGenerators/m_124896_ (Lnet/minecraft/world/level/block/Block;)V net/minecraft/data/models/BlockModelGenerators/createDoor (Lnet/minecraft/world/level/block/Block;)V +MD: net/minecraft/data/models/BlockModelGenerators/m_124901_ (Lnet/minecraft/world/level/block/Block;Lnet/minecraft/resources/ResourceLocation;)V net/minecraft/data/models/BlockModelGenerators/createAxisAlignedPillarBlockCustomModel (Lnet/minecraft/world/level/block/Block;Lnet/minecraft/resources/ResourceLocation;)V +MD: net/minecraft/data/models/BlockModelGenerators/m_124904_ (Lnet/minecraft/world/level/block/Block;Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/data/models/blockstates/BlockStateGenerator; net/minecraft/data/models/BlockModelGenerators/createFence (Lnet/minecraft/world/level/block/Block;Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/data/models/blockstates/BlockStateGenerator; +MD: net/minecraft/data/models/BlockModelGenerators/m_124908_ (Lnet/minecraft/world/level/block/Block;Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/data/models/blockstates/BlockStateGenerator; net/minecraft/data/models/BlockModelGenerators/createTrapdoor (Lnet/minecraft/world/level/block/Block;Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/data/models/blockstates/BlockStateGenerator; +MD: net/minecraft/data/models/BlockModelGenerators/m_124915_ ()V net/minecraft/data/models/BlockModelGenerators/createTallSeagrass ()V +MD: net/minecraft/data/models/BlockModelGenerators/m_124916_ (Lnet/minecraft/world/level/block/Block;)V net/minecraft/data/models/BlockModelGenerators/createOrientableTrapdoor (Lnet/minecraft/world/level/block/Block;)V +MD: net/minecraft/data/models/BlockModelGenerators/m_124918_ (Lnet/minecraft/world/level/block/Block;Lnet/minecraft/world/level/block/Block;)V net/minecraft/data/models/BlockModelGenerators/createWeightedPressurePlate (Lnet/minecraft/world/level/block/Block;Lnet/minecraft/world/level/block/Block;)V +MD: net/minecraft/data/models/BlockModelGenerators/m_124921_ (Lnet/minecraft/world/level/block/Block;Lnet/minecraft/resources/ResourceLocation;)V net/minecraft/data/models/BlockModelGenerators/createAirLikeBlock (Lnet/minecraft/world/level/block/Block;Lnet/minecraft/resources/ResourceLocation;)V +MD: net/minecraft/data/models/BlockModelGenerators/m_124924_ (Lnet/minecraft/world/level/block/Block;Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/data/models/blockstates/BlockStateGenerator; net/minecraft/data/models/BlockModelGenerators/createRotatedPillarWithHorizontalVariant (Lnet/minecraft/world/level/block/Block;Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/data/models/blockstates/BlockStateGenerator; +MD: net/minecraft/data/models/BlockModelGenerators/m_124928_ (Lnet/minecraft/world/level/block/Block;Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/data/models/blockstates/BlockStateGenerator; net/minecraft/data/models/BlockModelGenerators/createSlab (Lnet/minecraft/world/level/block/Block;Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/data/models/blockstates/BlockStateGenerator; +MD: net/minecraft/data/models/BlockModelGenerators/m_124935_ ()V net/minecraft/data/models/BlockModelGenerators/createBamboo ()V +MD: net/minecraft/data/models/BlockModelGenerators/m_124936_ (Lnet/minecraft/world/level/block/Block;)V net/minecraft/data/models/BlockModelGenerators/createTrapdoor (Lnet/minecraft/world/level/block/Block;)V +MD: net/minecraft/data/models/BlockModelGenerators/m_124938_ (Lnet/minecraft/world/level/block/Block;Lnet/minecraft/world/level/block/Block;)V net/minecraft/data/models/BlockModelGenerators/copyModel (Lnet/minecraft/world/level/block/Block;Lnet/minecraft/world/level/block/Block;)V +MD: net/minecraft/data/models/BlockModelGenerators/m_124941_ (Lnet/minecraft/world/level/block/Block;Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/data/models/blockstates/BlockStateGenerator; net/minecraft/data/models/BlockModelGenerators/createPressurePlate (Lnet/minecraft/world/level/block/Block;Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/data/models/blockstates/BlockStateGenerator; +MD: net/minecraft/data/models/BlockModelGenerators/m_124947_ ()Lnet/minecraft/data/models/blockstates/PropertyDispatch; net/minecraft/data/models/BlockModelGenerators/createColumnWithFacing ()Lnet/minecraft/data/models/blockstates/PropertyDispatch; +MD: net/minecraft/data/models/BlockModelGenerators/m_124948_ (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/data/models/BlockModelGenerators$WoodProvider; net/minecraft/data/models/BlockModelGenerators/woodProvider (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/data/models/BlockModelGenerators$WoodProvider; +MD: net/minecraft/data/models/BlockModelGenerators/m_124950_ (Lnet/minecraft/world/level/block/Block;Lnet/minecraft/world/level/block/Block;)V net/minecraft/data/models/BlockModelGenerators/createNormalTorch (Lnet/minecraft/world/level/block/Block;Lnet/minecraft/world/level/block/Block;)V +MD: net/minecraft/data/models/BlockModelGenerators/m_124953_ (Lnet/minecraft/world/level/block/Block;Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/resources/ResourceLocation;)V net/minecraft/data/models/BlockModelGenerators/createDoubleBlock (Lnet/minecraft/world/level/block/Block;Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/resources/ResourceLocation;)V +MD: net/minecraft/data/models/BlockModelGenerators/m_124959_ ()V net/minecraft/data/models/BlockModelGenerators/createBarrel ()V +MD: net/minecraft/data/models/BlockModelGenerators/m_124960_ (Lnet/minecraft/world/level/block/Block;)V net/minecraft/data/models/BlockModelGenerators/createNonTemplateModelBlock (Lnet/minecraft/world/level/block/Block;)V +MD: net/minecraft/data/models/BlockModelGenerators/m_124962_ (Lnet/minecraft/world/level/block/Block;Lnet/minecraft/world/level/block/Block;)V net/minecraft/data/models/BlockModelGenerators/createBedItem (Lnet/minecraft/world/level/block/Block;Lnet/minecraft/world/level/block/Block;)V +MD: net/minecraft/data/models/BlockModelGenerators/m_124967_ ()V net/minecraft/data/models/BlockModelGenerators/createBell ()V +MD: net/minecraft/data/models/BlockModelGenerators/m_124968_ (Lnet/minecraft/world/level/block/Block;)V net/minecraft/data/models/BlockModelGenerators/createPassiveRail (Lnet/minecraft/world/level/block/Block;)V +MD: net/minecraft/data/models/BlockModelGenerators/m_124970_ (Lnet/minecraft/world/level/block/Block;Lnet/minecraft/world/level/block/Block;)V net/minecraft/data/models/BlockModelGenerators/createNetherRoots (Lnet/minecraft/world/level/block/Block;Lnet/minecraft/world/level/block/Block;)V +MD: net/minecraft/data/models/BlockModelGenerators/m_124973_ ()V net/minecraft/data/models/BlockModelGenerators/createGrindstone ()V +MD: net/minecraft/data/models/BlockModelGenerators/m_124974_ (Lnet/minecraft/world/level/block/Block;)V net/minecraft/data/models/BlockModelGenerators/createActiveRail (Lnet/minecraft/world/level/block/Block;)V +MD: net/minecraft/data/models/BlockModelGenerators/m_124976_ ()V net/minecraft/data/models/BlockModelGenerators/createBookshelf ()V +MD: net/minecraft/data/models/BlockModelGenerators/m_124977_ (Lnet/minecraft/world/level/block/Block;)V net/minecraft/data/models/BlockModelGenerators/createCommandBlock (Lnet/minecraft/world/level/block/Block;)V +MD: net/minecraft/data/models/BlockModelGenerators/m_124979_ ()V net/minecraft/data/models/BlockModelGenerators/createRedstoneWire ()V +MD: net/minecraft/data/models/BlockModelGenerators/m_124980_ (Lnet/minecraft/world/level/block/Block;)V net/minecraft/data/models/BlockModelGenerators/createAnvil (Lnet/minecraft/world/level/block/Block;)V +MD: net/minecraft/data/models/BlockModelGenerators/m_124982_ ()V net/minecraft/data/models/BlockModelGenerators/createComparator ()V +MD: net/minecraft/data/models/BlockModelGenerators/m_124983_ (Lnet/minecraft/world/level/block/Block;)V net/minecraft/data/models/BlockModelGenerators/createMushroomBlock (Lnet/minecraft/world/level/block/Block;)V +MD: net/minecraft/data/models/BlockModelGenerators/m_124985_ ()V net/minecraft/data/models/BlockModelGenerators/createSmoothStoneSlab ()V +MD: net/minecraft/data/models/BlockModelGenerators/m_124986_ (Lnet/minecraft/world/level/block/Block;)V net/minecraft/data/models/BlockModelGenerators/createDispenserBlock (Lnet/minecraft/world/level/block/Block;)V +MD: net/minecraft/data/models/BlockModelGenerators/m_124988_ ()V net/minecraft/data/models/BlockModelGenerators/createBrewingStand ()V +MD: net/minecraft/data/models/BlockModelGenerators/m_124989_ (Lnet/minecraft/world/level/block/Block;)V net/minecraft/data/models/BlockModelGenerators/createNyliumBlock (Lnet/minecraft/world/level/block/Block;)V +MD: net/minecraft/data/models/BlockModelGenerators/m_124991_ ()V net/minecraft/data/models/BlockModelGenerators/createCakeBlock ()V +MD: net/minecraft/data/models/BlockModelGenerators/m_124992_ (Lnet/minecraft/world/level/block/Block;)V net/minecraft/data/models/BlockModelGenerators/createRotatableColumn (Lnet/minecraft/world/level/block/Block;)V +MD: net/minecraft/data/models/BlockModelGenerators/m_124994_ ()V net/minecraft/data/models/BlockModelGenerators/createCartographyTable ()V +MD: net/minecraft/data/models/BlockModelGenerators/m_124995_ (Lnet/minecraft/world/level/block/Block;)Ljava/util/List; net/minecraft/data/models/BlockModelGenerators/createFloorFireModels (Lnet/minecraft/world/level/block/Block;)Ljava/util/List; +MD: net/minecraft/data/models/BlockModelGenerators/m_124997_ ()V net/minecraft/data/models/BlockModelGenerators/createSmithingTable ()V +MD: net/minecraft/data/models/BlockModelGenerators/m_124998_ (Lnet/minecraft/world/level/block/Block;)Ljava/util/List; net/minecraft/data/models/BlockModelGenerators/createSideFireModels (Lnet/minecraft/world/level/block/Block;)Ljava/util/List; +MD: net/minecraft/data/models/BlockModelGenerators/m_125000_ ()V net/minecraft/data/models/BlockModelGenerators/createPumpkins ()V +MD: net/minecraft/data/models/BlockModelGenerators/m_125001_ (Lnet/minecraft/world/level/block/Block;)Ljava/util/List; net/minecraft/data/models/BlockModelGenerators/createTopFireModels (Lnet/minecraft/world/level/block/Block;)Ljava/util/List; +MD: net/minecraft/data/models/BlockModelGenerators/m_125004_ (Lnet/minecraft/world/level/block/Block;)V net/minecraft/data/models/BlockModelGenerators/createLantern (Lnet/minecraft/world/level/block/Block;)V +MD: net/minecraft/data/models/BlockModelGenerators/m_125006_ ()V net/minecraft/data/models/BlockModelGenerators/createChorusFlower ()V +MD: net/minecraft/data/models/BlockModelGenerators/m_125007_ (Lnet/minecraft/world/level/block/Block;)V net/minecraft/data/models/BlockModelGenerators/createNonTemplateHorizontalBlock (Lnet/minecraft/world/level/block/Block;)V +MD: net/minecraft/data/models/BlockModelGenerators/m_125009_ ()V net/minecraft/data/models/BlockModelGenerators/createEndPortalFrame ()V +MD: net/minecraft/data/models/BlockModelGenerators/m_125010_ (Lnet/minecraft/world/level/block/Block;)V net/minecraft/data/models/BlockModelGenerators/createShulkerBox (Lnet/minecraft/world/level/block/Block;)V +MD: net/minecraft/data/models/BlockModelGenerators/m_125012_ ()V net/minecraft/data/models/BlockModelGenerators/createChorusPlant ()V +MD: net/minecraft/data/models/BlockModelGenerators/m_176085_ (Lnet/minecraft/world/level/block/Block;)V net/minecraft/data/models/BlockModelGenerators/createMultiface (Lnet/minecraft/world/level/block/Block;)V +MD: net/minecraft/data/models/BlockModelGenerators/m_176087_ ()V net/minecraft/data/models/BlockModelGenerators/createAmethystClusters ()V +MD: net/minecraft/data/models/BlockModelGenerators/m_176088_ ()V net/minecraft/data/models/BlockModelGenerators/createPointedDripstone ()V +MD: net/minecraft/data/models/BlockModelGenerators/m_176089_ ()V net/minecraft/data/models/BlockModelGenerators/createLightningRod ()V +MD: net/minecraft/data/models/BlockModelGenerators/m_176090_ ()V net/minecraft/data/models/BlockModelGenerators/createDirtPath ()V +MD: net/minecraft/data/models/BlockModelGenerators/m_176091_ ()V net/minecraft/data/models/BlockModelGenerators/createSculkSensor ()V +MD: net/minecraft/data/models/BlockModelGenerators/m_176092_ ()V net/minecraft/data/models/BlockModelGenerators/createCaveVines ()V +MD: net/minecraft/data/models/BlockModelGenerators/m_176095_ (Lnet/minecraft/world/level/block/Block;II)Lnet/minecraft/resources/ResourceLocation; net/minecraft/data/models/BlockModelGenerators/lambda$createCropBlock$14 (Lnet/minecraft/world/level/block/Block;II)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/data/models/BlockModelGenerators/m_176105_ (Lnet/minecraft/world/level/block/Block;Lnet/minecraft/data/models/model/TextureMapping;Ljava/lang/Integer;)Lnet/minecraft/data/models/blockstates/Variant; net/minecraft/data/models/BlockModelGenerators/lambda$createStems$7 (Lnet/minecraft/world/level/block/Block;Lnet/minecraft/data/models/model/TextureMapping;Ljava/lang/Integer;)Lnet/minecraft/data/models/blockstates/Variant; +MD: net/minecraft/data/models/BlockModelGenerators/m_176109_ (Lnet/minecraft/world/level/block/Block;Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/data/models/model/TextureMapping;Ljava/util/function/BiConsumer;)Lnet/minecraft/data/models/blockstates/BlockStateGenerator; net/minecraft/data/models/BlockModelGenerators/createMirroredCubeGenerator (Lnet/minecraft/world/level/block/Block;Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/data/models/model/TextureMapping;Ljava/util/function/BiConsumer;)Lnet/minecraft/data/models/blockstates/BlockStateGenerator; +MD: net/minecraft/data/models/BlockModelGenerators/m_176114_ (Lnet/minecraft/world/level/block/state/properties/StructureMode;)Lnet/minecraft/data/models/blockstates/Variant; net/minecraft/data/models/BlockModelGenerators/lambda$createStructureBlock$36 (Lnet/minecraft/world/level/block/state/properties/StructureMode;)Lnet/minecraft/data/models/blockstates/Variant; +MD: net/minecraft/data/models/BlockModelGenerators/m_176116_ (Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/block/state/properties/DripstoneThickness;)Lnet/minecraft/data/models/blockstates/Variant; net/minecraft/data/models/BlockModelGenerators/createPointedDripstoneVariant (Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/block/state/properties/DripstoneThickness;)Lnet/minecraft/data/models/blockstates/Variant; +MD: net/minecraft/data/models/BlockModelGenerators/m_176123_ (Ljava/lang/Boolean;Ljava/lang/Boolean;)Lnet/minecraft/data/models/blockstates/Variant; net/minecraft/data/models/BlockModelGenerators/lambda$createTripwireHook$38 (Ljava/lang/Boolean;Ljava/lang/Boolean;)Lnet/minecraft/data/models/blockstates/Variant; +MD: net/minecraft/data/models/BlockModelGenerators/m_176126_ (Ljava/lang/Comparable;Lnet/minecraft/data/models/blockstates/Variant;Lnet/minecraft/data/models/blockstates/Variant;Ljava/lang/Comparable;)Lnet/minecraft/data/models/blockstates/Variant; net/minecraft/data/models/BlockModelGenerators/lambda$createEmptyOrFullDispatch$13 (Ljava/lang/Comparable;Lnet/minecraft/data/models/blockstates/Variant;Lnet/minecraft/data/models/blockstates/Variant;Ljava/lang/Comparable;)Lnet/minecraft/data/models/blockstates/Variant; +MD: net/minecraft/data/models/BlockModelGenerators/m_176131_ (Ljava/lang/Integer;)Lnet/minecraft/data/models/blockstates/Variant; net/minecraft/data/models/BlockModelGenerators/lambda$createSweetBerryBush$37 (Ljava/lang/Integer;)Lnet/minecraft/data/models/blockstates/Variant; +MD: net/minecraft/data/models/BlockModelGenerators/m_176133_ (Ljava/lang/Integer;Ljava/lang/Boolean;Ljava/lang/Boolean;)Lnet/minecraft/data/models/blockstates/Variant; net/minecraft/data/models/BlockModelGenerators/lambda$createRepeater$34 (Ljava/lang/Integer;Ljava/lang/Boolean;Ljava/lang/Boolean;)Lnet/minecraft/data/models/blockstates/Variant; +MD: net/minecraft/data/models/BlockModelGenerators/m_176137_ (Ljava/lang/String;I)Lnet/minecraft/data/models/blockstates/Variant; net/minecraft/data/models/BlockModelGenerators/lambda$createBambooModels$11 (Ljava/lang/String;I)Lnet/minecraft/data/models/blockstates/Variant; +MD: net/minecraft/data/models/BlockModelGenerators/m_176142_ (Lnet/minecraft/data/models/blockstates/Variant;)Lnet/minecraft/data/models/blockstates/Variant; net/minecraft/data/models/BlockModelGenerators/lambda$createSoulFire$29 (Lnet/minecraft/data/models/blockstates/Variant;)Lnet/minecraft/data/models/blockstates/Variant; +MD: net/minecraft/data/models/BlockModelGenerators/m_176144_ (Lnet/minecraft/data/models/model/TextureMapping;)V net/minecraft/data/models/BlockModelGenerators/lambda$new$4 (Lnet/minecraft/data/models/model/TextureMapping;)V +MD: net/minecraft/data/models/BlockModelGenerators/m_176146_ (Lnet/minecraft/data/models/model/TextureMapping;Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/data/models/model/TextureMapping; net/minecraft/data/models/BlockModelGenerators/lambda$createChorusFlower$17 (Lnet/minecraft/data/models/model/TextureMapping;Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/data/models/model/TextureMapping; +MD: net/minecraft/data/models/BlockModelGenerators/m_176149_ (Lnet/minecraft/resources/ResourceLocation;Ljava/lang/Integer;)Lnet/minecraft/data/models/blockstates/Variant; net/minecraft/data/models/BlockModelGenerators/lambda$createSnowBlocks$35 (Lnet/minecraft/resources/ResourceLocation;Ljava/lang/Integer;)Lnet/minecraft/data/models/blockstates/Variant; +MD: net/minecraft/data/models/BlockModelGenerators/m_176152_ (Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/data/models/model/TextureMapping;)V net/minecraft/data/models/BlockModelGenerators/lambda$createGrassBlocks$31 (Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/data/models/model/TextureMapping;)V +MD: net/minecraft/data/models/BlockModelGenerators/m_176159_ (Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/resources/ResourceLocation;Ljava/lang/Boolean;Lnet/minecraft/world/level/block/state/properties/RailShape;)Lnet/minecraft/data/models/blockstates/Variant; net/minecraft/data/models/BlockModelGenerators/lambda$createActiveRail$9 (Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/resources/ResourceLocation;Ljava/lang/Boolean;Lnet/minecraft/world/level/block/state/properties/RailShape;)Lnet/minecraft/data/models/blockstates/Variant; +MD: net/minecraft/data/models/BlockModelGenerators/m_176168_ ([ILit/unimi/dsi/fastutil/ints/Int2ObjectMap;Lnet/minecraft/world/level/block/Block;Ljava/lang/Integer;)Lnet/minecraft/data/models/blockstates/Variant; net/minecraft/data/models/BlockModelGenerators/lambda$createCropBlock$15 ([ILit/unimi/dsi/fastutil/ints/Int2ObjectMap;Lnet/minecraft/world/level/block/Block;Ljava/lang/Integer;)Lnet/minecraft/data/models/blockstates/Variant; +MD: net/minecraft/data/models/BlockModelGenerators/m_176176_ ()V net/minecraft/data/models/BlockModelGenerators/createInfestedDeepslate ()V +MD: net/minecraft/data/models/BlockModelGenerators/m_176177_ ()V net/minecraft/data/models/BlockModelGenerators/createPetrifiedOakSlab ()V +MD: net/minecraft/data/models/BlockModelGenerators/m_176179_ (Lnet/minecraft/world/level/block/Block;Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/data/models/model/TextureMapping;Ljava/util/function/BiConsumer;)Lnet/minecraft/data/models/blockstates/BlockStateGenerator; net/minecraft/data/models/BlockModelGenerators/createMirroredColumnGenerator (Lnet/minecraft/world/level/block/Block;Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/data/models/model/TextureMapping;Ljava/util/function/BiConsumer;)Lnet/minecraft/data/models/blockstates/BlockStateGenerator; +MD: net/minecraft/data/models/BlockModelGenerators/m_176184_ (Ljava/lang/Integer;Ljava/lang/Integer;)Ljava/util/List; net/minecraft/data/models/BlockModelGenerators/lambda$createTurtleEgg$39 (Ljava/lang/Integer;Ljava/lang/Integer;)Ljava/util/List; +MD: net/minecraft/data/models/BlockModelGenerators/m_176187_ (Lnet/minecraft/data/models/blockstates/Variant;)Lnet/minecraft/data/models/blockstates/Variant; net/minecraft/data/models/BlockModelGenerators/lambda$createSoulFire$28 (Lnet/minecraft/data/models/blockstates/Variant;)Lnet/minecraft/data/models/blockstates/Variant; +MD: net/minecraft/data/models/BlockModelGenerators/m_176189_ (Lnet/minecraft/data/models/model/TextureMapping;)V net/minecraft/data/models/BlockModelGenerators/lambda$new$3 (Lnet/minecraft/data/models/model/TextureMapping;)V +MD: net/minecraft/data/models/BlockModelGenerators/m_176191_ (Lnet/minecraft/data/models/model/TextureMapping;Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/data/models/model/TextureMapping; net/minecraft/data/models/BlockModelGenerators/lambda$createCommandBlock$10 (Lnet/minecraft/data/models/model/TextureMapping;Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/data/models/model/TextureMapping; +MD: net/minecraft/data/models/BlockModelGenerators/m_176194_ (Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/data/models/blockstates/Variant; net/minecraft/data/models/BlockModelGenerators/lambda$static$47 (Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/data/models/blockstates/Variant; +MD: net/minecraft/data/models/BlockModelGenerators/m_176196_ (Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/data/models/model/TextureMapping;)V net/minecraft/data/models/BlockModelGenerators/lambda$createGrassBlocks$30 (Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/data/models/model/TextureMapping;)V +MD: net/minecraft/data/models/BlockModelGenerators/m_176199_ (Lnet/minecraft/data/models/blockstates/Variant;)Lnet/minecraft/data/models/blockstates/Variant; net/minecraft/data/models/BlockModelGenerators/lambda$createSoulFire$27 (Lnet/minecraft/data/models/blockstates/Variant;)Lnet/minecraft/data/models/blockstates/Variant; +MD: net/minecraft/data/models/BlockModelGenerators/m_176201_ (Lnet/minecraft/data/models/model/TextureMapping;)V net/minecraft/data/models/BlockModelGenerators/lambda$new$2 (Lnet/minecraft/data/models/model/TextureMapping;)V +MD: net/minecraft/data/models/BlockModelGenerators/m_176203_ (Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/data/models/blockstates/Variant; net/minecraft/data/models/BlockModelGenerators/lambda$static$46 (Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/data/models/blockstates/Variant; +MD: net/minecraft/data/models/BlockModelGenerators/m_176205_ (Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/data/models/model/TextureMapping;)V net/minecraft/data/models/BlockModelGenerators/lambda$createFurnace$16 (Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/data/models/model/TextureMapping;)V +MD: net/minecraft/data/models/BlockModelGenerators/m_176208_ (Lnet/minecraft/data/models/blockstates/Variant;)Lnet/minecraft/data/models/blockstates/Variant; net/minecraft/data/models/BlockModelGenerators/lambda$createSoulFire$26 (Lnet/minecraft/data/models/blockstates/Variant;)Lnet/minecraft/data/models/blockstates/Variant; +MD: net/minecraft/data/models/BlockModelGenerators/m_176210_ (Lnet/minecraft/data/models/model/TextureMapping;)V net/minecraft/data/models/BlockModelGenerators/lambda$new$1 (Lnet/minecraft/data/models/model/TextureMapping;)V +MD: net/minecraft/data/models/BlockModelGenerators/m_176212_ (Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/data/models/blockstates/Variant; net/minecraft/data/models/BlockModelGenerators/lambda$static$45 (Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/data/models/blockstates/Variant; +MD: net/minecraft/data/models/BlockModelGenerators/m_176214_ (Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/data/models/model/TextureMapping;)V net/minecraft/data/models/BlockModelGenerators/lambda$createBarrel$12 (Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/data/models/model/TextureMapping;)V +MD: net/minecraft/data/models/BlockModelGenerators/m_176217_ (Lnet/minecraft/world/level/block/Block;Lnet/minecraft/world/level/block/Block;)V net/minecraft/data/models/BlockModelGenerators/createFullAndCarpetBlocks (Lnet/minecraft/world/level/block/Block;Lnet/minecraft/world/level/block/Block;)V +MD: net/minecraft/data/models/BlockModelGenerators/m_176220_ (Lnet/minecraft/data/models/blockstates/Variant;)Lnet/minecraft/data/models/blockstates/Variant; net/minecraft/data/models/BlockModelGenerators/lambda$createSoulFire$25 (Lnet/minecraft/data/models/blockstates/Variant;)Lnet/minecraft/data/models/blockstates/Variant; +MD: net/minecraft/data/models/BlockModelGenerators/m_176222_ (Lnet/minecraft/data/models/model/TextureMapping;)V net/minecraft/data/models/BlockModelGenerators/lambda$new$0 (Lnet/minecraft/data/models/model/TextureMapping;)V +MD: net/minecraft/data/models/BlockModelGenerators/m_176224_ (Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/data/models/blockstates/Variant; net/minecraft/data/models/BlockModelGenerators/lambda$static$44 (Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/data/models/blockstates/Variant; +MD: net/minecraft/data/models/BlockModelGenerators/m_176226_ (Lnet/minecraft/data/models/blockstates/Variant;)Lnet/minecraft/data/models/blockstates/Variant; net/minecraft/data/models/BlockModelGenerators/lambda$createFire$24 (Lnet/minecraft/data/models/blockstates/Variant;)Lnet/minecraft/data/models/blockstates/Variant; +MD: net/minecraft/data/models/BlockModelGenerators/m_176228_ (Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/data/models/blockstates/Variant; net/minecraft/data/models/BlockModelGenerators/lambda$static$43 (Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/data/models/blockstates/Variant; +MD: net/minecraft/data/models/BlockModelGenerators/m_176230_ ()V net/minecraft/data/models/BlockModelGenerators/createBigDripLeafBlock ()V +MD: net/minecraft/data/models/BlockModelGenerators/m_176231_ (Lnet/minecraft/data/models/blockstates/Variant;)Lnet/minecraft/data/models/blockstates/Variant; net/minecraft/data/models/BlockModelGenerators/lambda$createFire$23 (Lnet/minecraft/data/models/blockstates/Variant;)Lnet/minecraft/data/models/blockstates/Variant; +MD: net/minecraft/data/models/BlockModelGenerators/m_176233_ (Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/data/models/blockstates/Variant; net/minecraft/data/models/BlockModelGenerators/lambda$static$42 (Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/data/models/blockstates/Variant; +MD: net/minecraft/data/models/BlockModelGenerators/m_176235_ (Lnet/minecraft/data/models/blockstates/Variant;)Lnet/minecraft/data/models/blockstates/Variant; net/minecraft/data/models/BlockModelGenerators/lambda$createFire$22 (Lnet/minecraft/data/models/blockstates/Variant;)Lnet/minecraft/data/models/blockstates/Variant; +MD: net/minecraft/data/models/BlockModelGenerators/m_176237_ (Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/data/models/blockstates/Variant; net/minecraft/data/models/BlockModelGenerators/lambda$wrapModels$18 (Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/data/models/blockstates/Variant; +MD: net/minecraft/data/models/BlockModelGenerators/m_176239_ (Lnet/minecraft/data/models/blockstates/Variant;)Lnet/minecraft/data/models/blockstates/Variant; net/minecraft/data/models/BlockModelGenerators/lambda$createFire$21 (Lnet/minecraft/data/models/blockstates/Variant;)Lnet/minecraft/data/models/blockstates/Variant; +MD: net/minecraft/data/models/BlockModelGenerators/m_176241_ ()V net/minecraft/data/models/BlockModelGenerators/createSmallDripleaf ()V +MD: net/minecraft/data/models/BlockModelGenerators/m_176242_ (Lnet/minecraft/data/models/blockstates/Variant;)Lnet/minecraft/data/models/blockstates/Variant; net/minecraft/data/models/BlockModelGenerators/lambda$createFire$20 (Lnet/minecraft/data/models/blockstates/Variant;)Lnet/minecraft/data/models/blockstates/Variant; +MD: net/minecraft/data/models/BlockModelGenerators/m_176244_ (Lnet/minecraft/world/level/block/Block;Lnet/minecraft/world/level/block/Block;)V net/minecraft/data/models/BlockModelGenerators/createCandleAndCandleCake (Lnet/minecraft/world/level/block/Block;Lnet/minecraft/world/level/block/Block;)V +MD: net/minecraft/data/models/BlockModelGenerators/m_176247_ (Lnet/minecraft/world/level/block/Block;)V net/minecraft/data/models/BlockModelGenerators/createAzalea (Lnet/minecraft/world/level/block/Block;)V +MD: net/minecraft/data/models/BlockModelGenerators/m_176249_ (Lnet/minecraft/world/level/block/Block;)V net/minecraft/data/models/BlockModelGenerators/createPottedAzalea (Lnet/minecraft/world/level/block/Block;)V +MD: net/minecraft/data/models/BlockModelGenerators/m_176251_ (Lnet/minecraft/world/level/block/Block;)V net/minecraft/data/models/BlockModelGenerators/createAmethystCluster (Lnet/minecraft/world/level/block/Block;)V +MD: net/minecraft/data/models/BlockModelGenerators/m_176253_ ()V net/minecraft/data/models/BlockModelGenerators/createCauldrons ()V +MD: net/minecraft/data/models/BlockModelGenerators/m_194715_ ()V net/minecraft/data/models/BlockModelGenerators/createLightBlock ()V +MD: net/minecraft/data/models/BlockModelGenerators/m_236274_ ()V net/minecraft/data/models/BlockModelGenerators/createMuddyMangroveRoots ()V +MD: net/minecraft/data/models/BlockModelGenerators/m_236275_ ()V net/minecraft/data/models/BlockModelGenerators/createMangrovePropagule ()V +MD: net/minecraft/data/models/BlockModelGenerators/m_236276_ ()V net/minecraft/data/models/BlockModelGenerators/createFrogspawnBlock ()V +MD: net/minecraft/data/models/BlockModelGenerators/m_236277_ (Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/resources/ResourceLocation;Ljava/lang/Boolean;)Lnet/minecraft/data/models/blockstates/Variant; net/minecraft/data/models/BlockModelGenerators/lambda$createSculkCatalyst$50 (Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/resources/ResourceLocation;Ljava/lang/Boolean;)Lnet/minecraft/data/models/blockstates/Variant; +MD: net/minecraft/data/models/BlockModelGenerators/m_236281_ (Lnet/minecraft/world/item/SpawnEggItem;)V net/minecraft/data/models/BlockModelGenerators/lambda$run$57 (Lnet/minecraft/world/item/SpawnEggItem;)V +MD: net/minecraft/data/models/BlockModelGenerators/m_236283_ (Lnet/minecraft/world/level/block/Block;Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/data/models/blockstates/BlockStateGenerator; net/minecraft/data/models/BlockModelGenerators/createDoor (Lnet/minecraft/world/level/block/Block;Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/data/models/blockstates/BlockStateGenerator; +MD: net/minecraft/data/models/BlockModelGenerators/m_236293_ (Lnet/minecraft/world/level/block/Block;Lnet/minecraft/data/models/blockstates/Condition$TerminalCondition;)V net/minecraft/data/models/BlockModelGenerators/lambda$createMultiface$49 (Lnet/minecraft/world/level/block/Block;Lnet/minecraft/data/models/blockstates/Condition$TerminalCondition;)V +MD: net/minecraft/data/models/BlockModelGenerators/m_236296_ (Lnet/minecraft/world/level/block/Block;Lnet/minecraft/data/models/blockstates/Condition$TerminalCondition;Lnet/minecraft/world/level/block/state/properties/BooleanProperty;)V net/minecraft/data/models/BlockModelGenerators/lambda$createMultiface$48 (Lnet/minecraft/world/level/block/Block;Lnet/minecraft/data/models/blockstates/Condition$TerminalCondition;Lnet/minecraft/world/level/block/state/properties/BooleanProperty;)V +MD: net/minecraft/data/models/BlockModelGenerators/m_236300_ (Lnet/minecraft/core/FrontAndTop;)Lnet/minecraft/data/models/blockstates/Variant; net/minecraft/data/models/BlockModelGenerators/lambda$createJigsaw$55 (Lnet/minecraft/core/FrontAndTop;)Lnet/minecraft/data/models/blockstates/Variant; +MD: net/minecraft/data/models/BlockModelGenerators/m_236302_ (Lnet/minecraft/data/BlockFamily;)V net/minecraft/data/models/BlockModelGenerators/lambda$run$56 (Lnet/minecraft/data/BlockFamily;)V +MD: net/minecraft/data/models/BlockModelGenerators/m_236304_ (Lnet/minecraft/data/models/blockstates/PropertyDispatch$C4;Lnet/minecraft/world/level/block/state/properties/DoubleBlockHalf;Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/data/models/blockstates/PropertyDispatch$C4; net/minecraft/data/models/BlockModelGenerators/configureDoorHalf (Lnet/minecraft/data/models/blockstates/PropertyDispatch$C4;Lnet/minecraft/world/level/block/state/properties/DoubleBlockHalf;Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/data/models/blockstates/PropertyDispatch$C4; +MD: net/minecraft/data/models/BlockModelGenerators/m_236311_ ([Lnet/minecraft/resources/ResourceLocation;Ljava/lang/Integer;)Lnet/minecraft/data/models/blockstates/Variant; net/minecraft/data/models/BlockModelGenerators/lambda$createRespawnAnchor$54 ([Lnet/minecraft/resources/ResourceLocation;Ljava/lang/Integer;)Lnet/minecraft/data/models/blockstates/Variant; +MD: net/minecraft/data/models/BlockModelGenerators/m_236314_ ()V net/minecraft/data/models/BlockModelGenerators/createSculkShrieker ()V +MD: net/minecraft/data/models/BlockModelGenerators/m_236315_ ()V net/minecraft/data/models/BlockModelGenerators/createSculkCatalyst ()V +MD: net/minecraft/data/models/BlockModelGenerators/m_236316_ (Lnet/minecraft/world/level/block/Block;Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/data/models/model/TextureMapping;Ljava/util/function/BiConsumer;)Lnet/minecraft/data/models/blockstates/BlockStateGenerator; net/minecraft/data/models/BlockModelGenerators/createNorthWestMirroredCubeGenerator (Lnet/minecraft/world/level/block/Block;Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/data/models/model/TextureMapping;Ljava/util/function/BiConsumer;)Lnet/minecraft/data/models/blockstates/BlockStateGenerator; +MD: net/minecraft/data/models/BlockModelGenerators/m_246674_ (Lnet/minecraft/world/level/block/Block;Lnet/minecraft/world/level/block/Block;Lnet/minecraft/world/level/block/Block;)V net/minecraft/data/models/BlockModelGenerators/createHangingSign (Lnet/minecraft/world/level/block/Block;Lnet/minecraft/world/level/block/Block;Lnet/minecraft/world/level/block/Block;)V +MD: net/minecraft/data/models/BlockModelGenerators/m_247086_ (Lnet/minecraft/world/level/block/Block;Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/data/models/blockstates/BlockStateGenerator; net/minecraft/data/models/BlockModelGenerators/createCustomFence (Lnet/minecraft/world/level/block/Block;Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/data/models/blockstates/BlockStateGenerator; +MD: net/minecraft/data/models/BlockModelGenerators/m_247160_ ()V net/minecraft/data/models/BlockModelGenerators/createChiseledBookshelf ()V +MD: net/minecraft/data/models/BlockModelGenerators/m_257856_ (Lnet/minecraft/world/level/block/Block;Lnet/minecraft/data/models/model/TextureMapping;Ljava/util/function/BiConsumer;)Lnet/minecraft/data/models/blockstates/BlockStateGenerator; net/minecraft/data/models/BlockModelGenerators/createPillarBlockUVLocked (Lnet/minecraft/world/level/block/Block;Lnet/minecraft/data/models/model/TextureMapping;Ljava/util/function/BiConsumer;)Lnet/minecraft/data/models/blockstates/BlockStateGenerator; +MD: net/minecraft/data/models/BlockModelGenerators/m_260774_ (Lnet/minecraft/data/models/blockstates/MultiPartGenerator;Lnet/minecraft/data/models/blockstates/Condition$TerminalCondition;Lnet/minecraft/data/models/blockstates/VariantProperties$Rotation;Lnet/minecraft/world/level/block/state/properties/BooleanProperty;Lnet/minecraft/data/models/model/ModelTemplate;)V net/minecraft/data/models/BlockModelGenerators/lambda$addSlotStateAndRotationVariants$52 (Lnet/minecraft/data/models/blockstates/MultiPartGenerator;Lnet/minecraft/data/models/blockstates/Condition$TerminalCondition;Lnet/minecraft/data/models/blockstates/VariantProperties$Rotation;Lnet/minecraft/world/level/block/state/properties/BooleanProperty;Lnet/minecraft/data/models/model/ModelTemplate;)V +MD: net/minecraft/data/models/BlockModelGenerators/m_260775_ (Lnet/minecraft/data/models/model/ModelTemplate;Ljava/lang/String;Lnet/minecraft/data/models/model/TextureMapping;Lnet/minecraft/data/models/BlockModelGenerators$BookSlotModelCacheKey;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/data/models/BlockModelGenerators/lambda$addBookSlotModel$53 (Lnet/minecraft/data/models/model/ModelTemplate;Ljava/lang/String;Lnet/minecraft/data/models/model/TextureMapping;Lnet/minecraft/data/models/BlockModelGenerators$BookSlotModelCacheKey;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/data/models/BlockModelGenerators/m_260948_ (Lnet/minecraft/data/models/blockstates/MultiPartGenerator;Lnet/minecraft/data/models/blockstates/Condition$TerminalCondition;Lnet/minecraft/data/models/blockstates/VariantProperties$Rotation;Lnet/minecraft/world/level/block/state/properties/BooleanProperty;Lnet/minecraft/data/models/model/ModelTemplate;Z)V net/minecraft/data/models/BlockModelGenerators/addBookSlotModel (Lnet/minecraft/data/models/blockstates/MultiPartGenerator;Lnet/minecraft/data/models/blockstates/Condition$TerminalCondition;Lnet/minecraft/data/models/blockstates/VariantProperties$Rotation;Lnet/minecraft/world/level/block/state/properties/BooleanProperty;Lnet/minecraft/data/models/model/ModelTemplate;Z)V +MD: net/minecraft/data/models/BlockModelGenerators/m_261107_ (Lnet/minecraft/data/models/blockstates/MultiPartGenerator;Lnet/minecraft/data/models/blockstates/Condition$TerminalCondition;Lnet/minecraft/data/models/blockstates/VariantProperties$Rotation;)V net/minecraft/data/models/BlockModelGenerators/addSlotStateAndRotationVariants (Lnet/minecraft/data/models/blockstates/MultiPartGenerator;Lnet/minecraft/data/models/blockstates/Condition$TerminalCondition;Lnet/minecraft/data/models/blockstates/VariantProperties$Rotation;)V +MD: net/minecraft/data/models/BlockModelGenerators/m_262348_ (Lnet/minecraft/data/models/blockstates/MultiPartGenerator;Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/core/Direction;Lnet/minecraft/data/models/blockstates/VariantProperties$Rotation;)V net/minecraft/data/models/BlockModelGenerators/lambda$createChiseledBookshelf$51 (Lnet/minecraft/data/models/blockstates/MultiPartGenerator;Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/core/Direction;Lnet/minecraft/data/models/blockstates/VariantProperties$Rotation;)V +MD: net/minecraft/data/models/BlockModelGenerators/m_271589_ ([ILnet/minecraft/world/level/block/Block;Lnet/minecraft/data/models/BlockModelGenerators$TintState;Ljava/lang/Integer;)Lnet/minecraft/data/models/blockstates/Variant; net/minecraft/data/models/BlockModelGenerators/lambda$createCrossBlock$6 ([ILnet/minecraft/world/level/block/Block;Lnet/minecraft/data/models/BlockModelGenerators$TintState;Ljava/lang/Integer;)Lnet/minecraft/data/models/blockstates/Variant; +MD: net/minecraft/data/models/BlockModelGenerators/m_271994_ (Lnet/minecraft/world/level/block/Block;Lnet/minecraft/data/models/BlockModelGenerators$TintState;Lnet/minecraft/world/level/block/state/properties/Property;[I)V net/minecraft/data/models/BlockModelGenerators/createCrossBlock (Lnet/minecraft/world/level/block/Block;Lnet/minecraft/data/models/BlockModelGenerators$TintState;Lnet/minecraft/world/level/block/state/properties/Property;[I)V +MD: net/minecraft/data/models/BlockModelGenerators/m_272099_ (Lnet/minecraft/world/level/block/Block;)V net/minecraft/data/models/BlockModelGenerators/createFlowerBed (Lnet/minecraft/world/level/block/Block;)V +MD: net/minecraft/data/models/BlockModelGenerators/m_276719_ (Lnet/minecraft/world/level/block/Block;Ljava/lang/Integer;)Lnet/minecraft/data/models/blockstates/Variant; net/minecraft/data/models/BlockModelGenerators/lambda$createBrushableBlock$5 (Lnet/minecraft/world/level/block/Block;Ljava/lang/Integer;)Lnet/minecraft/data/models/blockstates/Variant; +MD: net/minecraft/data/models/BlockModelGenerators/m_276720_ (Lnet/minecraft/world/level/block/Block;Ljava/lang/Integer;Lnet/minecraft/world/level/block/state/properties/DoubleBlockHalf;)Lnet/minecraft/data/models/blockstates/Variant; net/minecraft/data/models/BlockModelGenerators/lambda$createPitcherCrop$8 (Lnet/minecraft/world/level/block/Block;Ljava/lang/Integer;Lnet/minecraft/world/level/block/state/properties/DoubleBlockHalf;)Lnet/minecraft/data/models/blockstates/Variant; +MD: net/minecraft/data/models/BlockModelGenerators/m_276722_ (Ljava/util/function/Function;Ljava/lang/Integer;)Lnet/minecraft/data/models/blockstates/Variant; net/minecraft/data/models/BlockModelGenerators/lambda$createSnifferEgg$41 (Ljava/util/function/Function;Ljava/lang/Integer;)Lnet/minecraft/data/models/blockstates/Variant; +MD: net/minecraft/data/models/BlockModelGenerators/m_276871_ ()V net/minecraft/data/models/BlockModelGenerators/createCalibratedSculkSensor ()V +MD: net/minecraft/data/models/BlockModelGenerators/m_276953_ (Lnet/minecraft/world/level/block/Block;)V net/minecraft/data/models/BlockModelGenerators/createBrushableBlock (Lnet/minecraft/world/level/block/Block;)V +MD: net/minecraft/data/models/BlockModelGenerators/m_277101_ ()V net/minecraft/data/models/BlockModelGenerators/createPitcherPlant ()V +MD: net/minecraft/data/models/BlockModelGenerators/m_277113_ ()V net/minecraft/data/models/BlockModelGenerators/createSnifferEgg ()V +MD: net/minecraft/data/models/BlockModelGenerators/m_277126_ ()V net/minecraft/data/models/BlockModelGenerators/createPitcherCrop ()V +MD: net/minecraft/data/models/BlockModelGenerators/m_278137_ (Ljava/lang/Integer;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/data/models/BlockModelGenerators/lambda$createSnifferEgg$40 (Ljava/lang/Integer;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/data/models/BlockModelGenerators/m_280054_ (Lnet/minecraft/world/level/block/Block;)V net/minecraft/data/models/BlockModelGenerators/createGenericCube (Lnet/minecraft/world/level/block/Block;)V +MD: net/minecraft/data/models/BlockModelGenerators/m_283985_ (Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/world/level/block/state/properties/SculkSensorPhase;)Lnet/minecraft/data/models/blockstates/Variant; net/minecraft/data/models/BlockModelGenerators/lambda$createCalibratedSculkSensor$33 (Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/world/level/block/state/properties/SculkSensorPhase;)Lnet/minecraft/data/models/blockstates/Variant; +MD: net/minecraft/data/models/BlockModelGenerators/m_283986_ (Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/world/level/block/state/properties/SculkSensorPhase;)Lnet/minecraft/data/models/blockstates/Variant; net/minecraft/data/models/BlockModelGenerators/lambda$createSculkSensor$32 (Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/world/level/block/state/properties/SculkSensorPhase;)Lnet/minecraft/data/models/blockstates/Variant; +MD: net/minecraft/data/models/BlockModelGenerators$1/ ()V net/minecraft/data/models/BlockModelGenerators$1/ ()V +MD: net/minecraft/data/models/BlockModelGenerators$BlockEntityModelGenerator/ (Lnet/minecraft/data/models/BlockModelGenerators;Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/world/level/block/Block;)V net/minecraft/data/models/BlockModelGenerators$BlockEntityModelGenerator/ (Lnet/minecraft/data/models/BlockModelGenerators;Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/world/level/block/Block;)V +MD: net/minecraft/data/models/BlockModelGenerators$BlockEntityModelGenerator/m_125022_ (Lnet/minecraft/data/models/model/ModelTemplate;[Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/data/models/BlockModelGenerators$BlockEntityModelGenerator; net/minecraft/data/models/BlockModelGenerators$BlockEntityModelGenerator/createWithCustomBlockItemModel (Lnet/minecraft/data/models/model/ModelTemplate;[Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/data/models/BlockModelGenerators$BlockEntityModelGenerator; +MD: net/minecraft/data/models/BlockModelGenerators$BlockEntityModelGenerator/m_125025_ ([Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/data/models/BlockModelGenerators$BlockEntityModelGenerator; net/minecraft/data/models/BlockModelGenerators$BlockEntityModelGenerator/create ([Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/data/models/BlockModelGenerators$BlockEntityModelGenerator; +MD: net/minecraft/data/models/BlockModelGenerators$BlockEntityModelGenerator/m_125027_ ([Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/data/models/BlockModelGenerators$BlockEntityModelGenerator; net/minecraft/data/models/BlockModelGenerators$BlockEntityModelGenerator/createWithoutBlockItem ([Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/data/models/BlockModelGenerators$BlockEntityModelGenerator; +MD: net/minecraft/data/models/BlockModelGenerators$BlockFamilyProvider/ (Lnet/minecraft/data/models/BlockModelGenerators;Lnet/minecraft/data/models/model/TextureMapping;)V net/minecraft/data/models/BlockModelGenerators$BlockFamilyProvider/ (Lnet/minecraft/data/models/BlockModelGenerators;Lnet/minecraft/data/models/model/TextureMapping;)V +MD: net/minecraft/data/models/BlockModelGenerators$BlockFamilyProvider/m_125035_ (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/data/models/BlockModelGenerators$BlockFamilyProvider; net/minecraft/data/models/BlockModelGenerators$BlockFamilyProvider/button (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/data/models/BlockModelGenerators$BlockFamilyProvider; +MD: net/minecraft/data/models/BlockModelGenerators$BlockFamilyProvider/m_125040_ (Lnet/minecraft/world/level/block/Block;Lnet/minecraft/data/models/model/ModelTemplate;)Lnet/minecraft/data/models/BlockModelGenerators$BlockFamilyProvider; net/minecraft/data/models/BlockModelGenerators$BlockFamilyProvider/fullBlock (Lnet/minecraft/world/level/block/Block;Lnet/minecraft/data/models/model/ModelTemplate;)Lnet/minecraft/data/models/BlockModelGenerators$BlockFamilyProvider; +MD: net/minecraft/data/models/BlockModelGenerators$BlockFamilyProvider/m_125045_ (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/data/models/BlockModelGenerators$BlockFamilyProvider; net/minecraft/data/models/BlockModelGenerators$BlockFamilyProvider/wall (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/data/models/BlockModelGenerators$BlockFamilyProvider; +MD: net/minecraft/data/models/BlockModelGenerators$BlockFamilyProvider/m_125047_ (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/data/models/BlockModelGenerators$BlockFamilyProvider; net/minecraft/data/models/BlockModelGenerators$BlockFamilyProvider/fence (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/data/models/BlockModelGenerators$BlockFamilyProvider; +MD: net/minecraft/data/models/BlockModelGenerators$BlockFamilyProvider/m_125049_ (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/data/models/BlockModelGenerators$BlockFamilyProvider; net/minecraft/data/models/BlockModelGenerators$BlockFamilyProvider/fenceGate (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/data/models/BlockModelGenerators$BlockFamilyProvider; +MD: net/minecraft/data/models/BlockModelGenerators$BlockFamilyProvider/m_125051_ (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/data/models/BlockModelGenerators$BlockFamilyProvider; net/minecraft/data/models/BlockModelGenerators$BlockFamilyProvider/pressurePlate (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/data/models/BlockModelGenerators$BlockFamilyProvider; +MD: net/minecraft/data/models/BlockModelGenerators$BlockFamilyProvider/m_125053_ (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/data/models/BlockModelGenerators$BlockFamilyProvider; net/minecraft/data/models/BlockModelGenerators$BlockFamilyProvider/slab (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/data/models/BlockModelGenerators$BlockFamilyProvider; +MD: net/minecraft/data/models/BlockModelGenerators$BlockFamilyProvider/m_125055_ (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/data/models/BlockModelGenerators$BlockFamilyProvider; net/minecraft/data/models/BlockModelGenerators$BlockFamilyProvider/stairs (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/data/models/BlockModelGenerators$BlockFamilyProvider; +MD: net/minecraft/data/models/BlockModelGenerators$BlockFamilyProvider/m_176256_ (Lnet/minecraft/data/BlockFamily$Variant;Lnet/minecraft/world/level/block/Block;)V net/minecraft/data/models/BlockModelGenerators$BlockFamilyProvider/lambda$generateFor$1 (Lnet/minecraft/data/BlockFamily$Variant;Lnet/minecraft/world/level/block/Block;)V +MD: net/minecraft/data/models/BlockModelGenerators$BlockFamilyProvider/m_176259_ (Lnet/minecraft/data/BlockFamily;)Lnet/minecraft/data/models/BlockModelGenerators$BlockFamilyProvider; net/minecraft/data/models/BlockModelGenerators$BlockFamilyProvider/generateFor (Lnet/minecraft/data/BlockFamily;)Lnet/minecraft/data/models/BlockModelGenerators$BlockFamilyProvider; +MD: net/minecraft/data/models/BlockModelGenerators$BlockFamilyProvider/m_176261_ (Lnet/minecraft/data/models/model/ModelTemplate;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/data/models/BlockModelGenerators$BlockFamilyProvider/getOrCreateModel (Lnet/minecraft/data/models/model/ModelTemplate;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/data/models/BlockModelGenerators$BlockFamilyProvider/m_176264_ ([Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/data/models/BlockModelGenerators$BlockFamilyProvider; net/minecraft/data/models/BlockModelGenerators$BlockFamilyProvider/fullBlockCopies ([Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/data/models/BlockModelGenerators$BlockFamilyProvider; +MD: net/minecraft/data/models/BlockModelGenerators$BlockFamilyProvider/m_176266_ (Lnet/minecraft/world/level/block/Block;Lnet/minecraft/data/models/model/ModelTemplate;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/data/models/BlockModelGenerators$BlockFamilyProvider/lambda$getOrCreateModel$0 (Lnet/minecraft/world/level/block/Block;Lnet/minecraft/data/models/model/ModelTemplate;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/data/models/BlockModelGenerators$BlockFamilyProvider/m_176269_ (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/data/models/BlockModelGenerators$BlockFamilyProvider; net/minecraft/data/models/BlockModelGenerators$BlockFamilyProvider/sign (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/data/models/BlockModelGenerators$BlockFamilyProvider; +MD: net/minecraft/data/models/BlockModelGenerators$BlockFamilyProvider/m_176271_ (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/data/models/BlockModelGenerators$BlockFamilyProvider; net/minecraft/data/models/BlockModelGenerators$BlockFamilyProvider/fullBlockVariant (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/data/models/BlockModelGenerators$BlockFamilyProvider; +MD: net/minecraft/data/models/BlockModelGenerators$BlockFamilyProvider/m_176273_ (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/data/models/BlockModelGenerators$BlockFamilyProvider; net/minecraft/data/models/BlockModelGenerators$BlockFamilyProvider/door (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/data/models/BlockModelGenerators$BlockFamilyProvider; +MD: net/minecraft/data/models/BlockModelGenerators$BlockFamilyProvider/m_176275_ (Lnet/minecraft/world/level/block/Block;)V net/minecraft/data/models/BlockModelGenerators$BlockFamilyProvider/trapdoor (Lnet/minecraft/world/level/block/Block;)V +MD: net/minecraft/data/models/BlockModelGenerators$BlockFamilyProvider/m_245757_ (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/data/models/BlockModelGenerators$BlockFamilyProvider; net/minecraft/data/models/BlockModelGenerators$BlockFamilyProvider/customFenceGate (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/data/models/BlockModelGenerators$BlockFamilyProvider; +MD: net/minecraft/data/models/BlockModelGenerators$BlockFamilyProvider/m_246414_ (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/data/models/BlockModelGenerators$BlockFamilyProvider; net/minecraft/data/models/BlockModelGenerators$BlockFamilyProvider/customFence (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/data/models/BlockModelGenerators$BlockFamilyProvider; +MD: net/minecraft/data/models/BlockModelGenerators$BlockStateGeneratorSupplier/m_176277_ (Lnet/minecraft/world/level/block/Block;Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/data/models/model/TextureMapping;Ljava/util/function/BiConsumer;)Lnet/minecraft/data/models/blockstates/BlockStateGenerator; net/minecraft/data/models/BlockModelGenerators$BlockStateGeneratorSupplier/create (Lnet/minecraft/world/level/block/Block;Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/data/models/model/TextureMapping;Ljava/util/function/BiConsumer;)Lnet/minecraft/data/models/blockstates/BlockStateGenerator; +MD: net/minecraft/data/models/BlockModelGenerators$BookSlotModelCacheKey/ (Lnet/minecraft/data/models/model/ModelTemplate;Ljava/lang/String;)V net/minecraft/data/models/BlockModelGenerators$BookSlotModelCacheKey/ (Lnet/minecraft/data/models/model/ModelTemplate;Ljava/lang/String;)V +MD: net/minecraft/data/models/BlockModelGenerators$BookSlotModelCacheKey/equals (Ljava/lang/Object;)Z net/minecraft/data/models/BlockModelGenerators$BookSlotModelCacheKey/equals (Ljava/lang/Object;)Z +MD: net/minecraft/data/models/BlockModelGenerators$BookSlotModelCacheKey/f_260626_ ()Ljava/lang/String; net/minecraft/data/models/BlockModelGenerators$BookSlotModelCacheKey/modelSuffix ()Ljava/lang/String; +MD: net/minecraft/data/models/BlockModelGenerators$BookSlotModelCacheKey/f_260721_ ()Lnet/minecraft/data/models/model/ModelTemplate; net/minecraft/data/models/BlockModelGenerators$BookSlotModelCacheKey/template ()Lnet/minecraft/data/models/model/ModelTemplate; +MD: net/minecraft/data/models/BlockModelGenerators$BookSlotModelCacheKey/hashCode ()I net/minecraft/data/models/BlockModelGenerators$BookSlotModelCacheKey/hashCode ()I +MD: net/minecraft/data/models/BlockModelGenerators$BookSlotModelCacheKey/toString ()Ljava/lang/String; net/minecraft/data/models/BlockModelGenerators$BookSlotModelCacheKey/toString ()Ljava/lang/String; +MD: net/minecraft/data/models/BlockModelGenerators$TintState/ ()V net/minecraft/data/models/BlockModelGenerators$TintState/ ()V +MD: net/minecraft/data/models/BlockModelGenerators$TintState/ (Ljava/lang/String;I)V net/minecraft/data/models/BlockModelGenerators$TintState/ (Ljava/lang/String;I)V +MD: net/minecraft/data/models/BlockModelGenerators$TintState/m_125064_ ()Lnet/minecraft/data/models/model/ModelTemplate; net/minecraft/data/models/BlockModelGenerators$TintState/getCross ()Lnet/minecraft/data/models/model/ModelTemplate; +MD: net/minecraft/data/models/BlockModelGenerators$TintState/m_125065_ ()Lnet/minecraft/data/models/model/ModelTemplate; net/minecraft/data/models/BlockModelGenerators$TintState/getCrossPot ()Lnet/minecraft/data/models/model/ModelTemplate; +MD: net/minecraft/data/models/BlockModelGenerators$TintState/m_176282_ ()[Lnet/minecraft/data/models/BlockModelGenerators$TintState; net/minecraft/data/models/BlockModelGenerators$TintState/$values ()[Lnet/minecraft/data/models/BlockModelGenerators$TintState; +MD: net/minecraft/data/models/BlockModelGenerators$TintState/valueOf (Ljava/lang/String;)Lnet/minecraft/data/models/BlockModelGenerators$TintState; net/minecraft/data/models/BlockModelGenerators$TintState/valueOf (Ljava/lang/String;)Lnet/minecraft/data/models/BlockModelGenerators$TintState; +MD: net/minecraft/data/models/BlockModelGenerators$TintState/values ()[Lnet/minecraft/data/models/BlockModelGenerators$TintState; net/minecraft/data/models/BlockModelGenerators$TintState/values ()[Lnet/minecraft/data/models/BlockModelGenerators$TintState; +MD: net/minecraft/data/models/BlockModelGenerators$WoodProvider/ (Lnet/minecraft/data/models/BlockModelGenerators;Lnet/minecraft/data/models/model/TextureMapping;)V net/minecraft/data/models/BlockModelGenerators$WoodProvider/ (Lnet/minecraft/data/models/BlockModelGenerators;Lnet/minecraft/data/models/model/TextureMapping;)V +MD: net/minecraft/data/models/BlockModelGenerators$WoodProvider/m_125074_ (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/data/models/BlockModelGenerators$WoodProvider; net/minecraft/data/models/BlockModelGenerators$WoodProvider/wood (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/data/models/BlockModelGenerators$WoodProvider; +MD: net/minecraft/data/models/BlockModelGenerators$WoodProvider/m_125076_ (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/data/models/BlockModelGenerators$WoodProvider; net/minecraft/data/models/BlockModelGenerators$WoodProvider/log (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/data/models/BlockModelGenerators$WoodProvider; +MD: net/minecraft/data/models/BlockModelGenerators$WoodProvider/m_125078_ (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/data/models/BlockModelGenerators$WoodProvider; net/minecraft/data/models/BlockModelGenerators$WoodProvider/logWithHorizontal (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/data/models/BlockModelGenerators$WoodProvider; +MD: net/minecraft/data/models/BlockModelGenerators$WoodProvider/m_258006_ (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/data/models/BlockModelGenerators$WoodProvider; net/minecraft/data/models/BlockModelGenerators$WoodProvider/logUVLocked (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/data/models/BlockModelGenerators$WoodProvider; +MD: net/minecraft/data/models/ItemModelGenerators/ ()V net/minecraft/data/models/ItemModelGenerators/ ()V +MD: net/minecraft/data/models/ItemModelGenerators/ (Ljava/util/function/BiConsumer;)V net/minecraft/data/models/ItemModelGenerators/ (Ljava/util/function/BiConsumer;)V +MD: net/minecraft/data/models/ItemModelGenerators/m_125083_ ()V net/minecraft/data/models/ItemModelGenerators/run ()V +MD: net/minecraft/data/models/ItemModelGenerators/m_125084_ (Lnet/minecraft/world/item/Item;Lnet/minecraft/world/item/Item;Lnet/minecraft/data/models/model/ModelTemplate;)V net/minecraft/data/models/ItemModelGenerators/generateFlatItem (Lnet/minecraft/world/item/Item;Lnet/minecraft/world/item/Item;Lnet/minecraft/data/models/model/ModelTemplate;)V +MD: net/minecraft/data/models/ItemModelGenerators/m_125088_ (Lnet/minecraft/world/item/Item;Lnet/minecraft/data/models/model/ModelTemplate;)V net/minecraft/data/models/ItemModelGenerators/generateFlatItem (Lnet/minecraft/world/item/Item;Lnet/minecraft/data/models/model/ModelTemplate;)V +MD: net/minecraft/data/models/ItemModelGenerators/m_125091_ (Lnet/minecraft/world/item/Item;Ljava/lang/String;Lnet/minecraft/data/models/model/ModelTemplate;)V net/minecraft/data/models/ItemModelGenerators/generateFlatItem (Lnet/minecraft/world/item/Item;Ljava/lang/String;Lnet/minecraft/data/models/model/ModelTemplate;)V +MD: net/minecraft/data/models/ItemModelGenerators/m_236321_ (Lnet/minecraft/world/item/Item;)V net/minecraft/data/models/ItemModelGenerators/generateCompassItem (Lnet/minecraft/world/item/Item;)V +MD: net/minecraft/data/models/ItemModelGenerators/m_236323_ (Lnet/minecraft/world/item/Item;)V net/minecraft/data/models/ItemModelGenerators/generateClockItem (Lnet/minecraft/world/item/Item;)V +MD: net/minecraft/data/models/ItemModelGenerators/m_266208_ (Lnet/minecraft/world/item/ArmorItem;)V net/minecraft/data/models/ItemModelGenerators/generateArmorTrims (Lnet/minecraft/world/item/ArmorItem;)V +MD: net/minecraft/data/models/ItemModelGenerators/m_266316_ (Lnet/minecraft/resources/ResourceLocation;Ljava/lang/String;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/data/models/ItemModelGenerators/getItemModelForTrimMaterial (Lnet/minecraft/resources/ResourceLocation;Ljava/lang/String;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/data/models/ItemModelGenerators/m_266494_ (Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/resources/ResourceLocation;)V net/minecraft/data/models/ItemModelGenerators/generateLayeredItem (Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/resources/ResourceLocation;)V +MD: net/minecraft/data/models/ItemModelGenerators/m_266576_ (Lnet/minecraft/resources/ResourceLocation;Ljava/util/Map;Lnet/minecraft/world/item/ArmorMaterial;)Lcom/google/gson/JsonObject; net/minecraft/data/models/ItemModelGenerators/generateBaseArmorTrimTemplate (Lnet/minecraft/resources/ResourceLocation;Ljava/util/Map;Lnet/minecraft/world/item/ArmorMaterial;)Lcom/google/gson/JsonObject; +MD: net/minecraft/data/models/ItemModelGenerators/m_267544_ (Lnet/minecraft/world/item/ArmorItem;Lnet/minecraft/resources/ResourceLocation;Ljava/util/Map;)Lcom/google/gson/JsonObject; net/minecraft/data/models/ItemModelGenerators/lambda$generateArmorTrims$0 (Lnet/minecraft/world/item/ArmorItem;Lnet/minecraft/resources/ResourceLocation;Ljava/util/Map;)Lcom/google/gson/JsonObject; +MD: net/minecraft/data/models/ItemModelGenerators/m_267545_ (Lnet/minecraft/world/item/ArmorItem;Lnet/minecraft/resources/ResourceLocation;Ljava/util/Map;)Lcom/google/gson/JsonObject; net/minecraft/data/models/ItemModelGenerators/lambda$generateArmorTrims$1 (Lnet/minecraft/world/item/ArmorItem;Lnet/minecraft/resources/ResourceLocation;Ljava/util/Map;)Lcom/google/gson/JsonObject; +MD: net/minecraft/data/models/ItemModelGenerators/m_267826_ (Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/resources/ResourceLocation;)V net/minecraft/data/models/ItemModelGenerators/generateLayeredItem (Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/resources/ResourceLocation;)V +MD: net/minecraft/data/models/ItemModelGenerators$TrimModelData/ (Ljava/lang/String;FLjava/util/Map;)V net/minecraft/data/models/ItemModelGenerators$TrimModelData/ (Ljava/lang/String;FLjava/util/Map;)V +MD: net/minecraft/data/models/ItemModelGenerators$TrimModelData/equals (Ljava/lang/Object;)Z net/minecraft/data/models/ItemModelGenerators$TrimModelData/equals (Ljava/lang/Object;)Z +MD: net/minecraft/data/models/ItemModelGenerators$TrimModelData/f_265849_ ()F net/minecraft/data/models/ItemModelGenerators$TrimModelData/itemModelIndex ()F +MD: net/minecraft/data/models/ItemModelGenerators$TrimModelData/f_265890_ ()Ljava/lang/String; net/minecraft/data/models/ItemModelGenerators$TrimModelData/name ()Ljava/lang/String; +MD: net/minecraft/data/models/ItemModelGenerators$TrimModelData/f_267444_ ()Ljava/util/Map; net/minecraft/data/models/ItemModelGenerators$TrimModelData/overrideArmorMaterials ()Ljava/util/Map; +MD: net/minecraft/data/models/ItemModelGenerators$TrimModelData/hashCode ()I net/minecraft/data/models/ItemModelGenerators$TrimModelData/hashCode ()I +MD: net/minecraft/data/models/ItemModelGenerators$TrimModelData/m_267684_ (Lnet/minecraft/world/item/ArmorMaterial;)Ljava/lang/String; net/minecraft/data/models/ItemModelGenerators$TrimModelData/name (Lnet/minecraft/world/item/ArmorMaterial;)Ljava/lang/String; +MD: net/minecraft/data/models/ItemModelGenerators$TrimModelData/toString ()Ljava/lang/String; net/minecraft/data/models/ItemModelGenerators$TrimModelData/toString ()Ljava/lang/String; +MD: net/minecraft/data/models/ModelProvider/ (Lnet/minecraft/data/PackOutput;)V net/minecraft/data/models/ModelProvider/ (Lnet/minecraft/data/PackOutput;)V +MD: net/minecraft/data/models/ModelProvider/m_125115_ (Ljava/util/Map;Lnet/minecraft/world/level/block/Block;)Z net/minecraft/data/models/ModelProvider/lambda$run$2 (Ljava/util/Map;Lnet/minecraft/world/level/block/Block;)Z +MD: net/minecraft/data/models/ModelProvider/m_125118_ (Ljava/util/Map;Lnet/minecraft/data/models/blockstates/BlockStateGenerator;)V net/minecraft/data/models/ModelProvider/lambda$run$0 (Ljava/util/Map;Lnet/minecraft/data/models/blockstates/BlockStateGenerator;)V +MD: net/minecraft/data/models/ModelProvider/m_125121_ (Ljava/util/Map;Lnet/minecraft/resources/ResourceLocation;Ljava/util/function/Supplier;)V net/minecraft/data/models/ModelProvider/lambda$run$1 (Ljava/util/Map;Lnet/minecraft/resources/ResourceLocation;Ljava/util/function/Supplier;)V +MD: net/minecraft/data/models/ModelProvider/m_125125_ (Ljava/util/Set;Ljava/util/Map;Lnet/minecraft/world/level/block/Block;)V net/minecraft/data/models/ModelProvider/lambda$run$3 (Ljava/util/Set;Ljava/util/Map;Lnet/minecraft/world/level/block/Block;)V +MD: net/minecraft/data/models/ModelProvider/m_213708_ (Lnet/minecraft/data/CachedOutput;)Ljava/util/concurrent/CompletableFuture; net/minecraft/data/models/ModelProvider/run (Lnet/minecraft/data/CachedOutput;)Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/data/models/ModelProvider/m_244772_ (Lnet/minecraft/world/level/block/Block;)Ljava/nio/file/Path; net/minecraft/data/models/ModelProvider/lambda$run$4 (Lnet/minecraft/world/level/block/Block;)Ljava/nio/file/Path; +MD: net/minecraft/data/models/ModelProvider/m_252623_ (Ljava/util/function/Function;Lnet/minecraft/data/CachedOutput;Ljava/util/Map$Entry;)Ljava/util/concurrent/CompletableFuture; net/minecraft/data/models/ModelProvider/lambda$saveCollection$5 (Ljava/util/function/Function;Lnet/minecraft/data/CachedOutput;Ljava/util/Map$Entry;)Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/data/models/ModelProvider/m_252624_ (I)[Ljava/util/concurrent/CompletableFuture; net/minecraft/data/models/ModelProvider/lambda$saveCollection$6 (I)[Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/data/models/ModelProvider/m_252989_ (Lnet/minecraft/data/CachedOutput;Ljava/util/Map;Ljava/util/function/Function;)Ljava/util/concurrent/CompletableFuture; net/minecraft/data/models/ModelProvider/saveCollection (Lnet/minecraft/data/CachedOutput;Ljava/util/Map;Ljava/util/function/Function;)Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/data/models/ModelProvider/m_6055_ ()Ljava/lang/String; net/minecraft/data/models/ModelProvider/getName ()Ljava/lang/String; +MD: net/minecraft/data/models/blockstates/BlockStateGenerator/m_6968_ ()Lnet/minecraft/world/level/block/Block; net/minecraft/data/models/blockstates/BlockStateGenerator/getBlock ()Lnet/minecraft/world/level/block/Block; +MD: net/minecraft/data/models/blockstates/Condition/m_125135_ ()Lnet/minecraft/data/models/blockstates/Condition$TerminalCondition; net/minecraft/data/models/blockstates/Condition/condition ()Lnet/minecraft/data/models/blockstates/Condition$TerminalCondition; +MD: net/minecraft/data/models/blockstates/Condition/m_125137_ ([Lnet/minecraft/data/models/blockstates/Condition;)Lnet/minecraft/data/models/blockstates/Condition; net/minecraft/data/models/blockstates/Condition/or ([Lnet/minecraft/data/models/blockstates/Condition;)Lnet/minecraft/data/models/blockstates/Condition; +MD: net/minecraft/data/models/blockstates/Condition/m_176293_ ([Lnet/minecraft/data/models/blockstates/Condition;)Lnet/minecraft/data/models/blockstates/Condition; net/minecraft/data/models/blockstates/Condition/and ([Lnet/minecraft/data/models/blockstates/Condition;)Lnet/minecraft/data/models/blockstates/Condition; +MD: net/minecraft/data/models/blockstates/Condition/m_7619_ (Lnet/minecraft/world/level/block/state/StateDefinition;)V net/minecraft/data/models/blockstates/Condition/validate (Lnet/minecraft/world/level/block/state/StateDefinition;)V +MD: net/minecraft/data/models/blockstates/Condition$CompositeCondition/ (Lnet/minecraft/data/models/blockstates/Condition$Operation;Ljava/util/List;)V net/minecraft/data/models/blockstates/Condition$CompositeCondition/ (Lnet/minecraft/data/models/blockstates/Condition$Operation;Ljava/util/List;)V +MD: net/minecraft/data/models/blockstates/Condition$CompositeCondition/get ()Ljava/lang/Object; net/minecraft/data/models/blockstates/Condition$CompositeCondition/get ()Ljava/lang/Object; +MD: net/minecraft/data/models/blockstates/Condition$CompositeCondition/get ()Lcom/google/gson/JsonElement; net/minecraft/data/models/blockstates/Condition$CompositeCondition/get ()Lcom/google/gson/JsonElement; +MD: net/minecraft/data/models/blockstates/Condition$CompositeCondition/m_125150_ (Lnet/minecraft/world/level/block/state/StateDefinition;Lnet/minecraft/data/models/blockstates/Condition;)V net/minecraft/data/models/blockstates/Condition$CompositeCondition/lambda$validate$0 (Lnet/minecraft/world/level/block/state/StateDefinition;Lnet/minecraft/data/models/blockstates/Condition;)V +MD: net/minecraft/data/models/blockstates/Condition$CompositeCondition/m_7619_ (Lnet/minecraft/world/level/block/state/StateDefinition;)V net/minecraft/data/models/blockstates/Condition$CompositeCondition/validate (Lnet/minecraft/world/level/block/state/StateDefinition;)V +MD: net/minecraft/data/models/blockstates/Condition$Operation/ ()V net/minecraft/data/models/blockstates/Condition$Operation/ ()V +MD: net/minecraft/data/models/blockstates/Condition$Operation/ (Ljava/lang/String;ILjava/lang/String;)V net/minecraft/data/models/blockstates/Condition$Operation/ (Ljava/lang/String;ILjava/lang/String;)V +MD: net/minecraft/data/models/blockstates/Condition$Operation/m_176295_ ()[Lnet/minecraft/data/models/blockstates/Condition$Operation; net/minecraft/data/models/blockstates/Condition$Operation/$values ()[Lnet/minecraft/data/models/blockstates/Condition$Operation; +MD: net/minecraft/data/models/blockstates/Condition$Operation/valueOf (Ljava/lang/String;)Lnet/minecraft/data/models/blockstates/Condition$Operation; net/minecraft/data/models/blockstates/Condition$Operation/valueOf (Ljava/lang/String;)Lnet/minecraft/data/models/blockstates/Condition$Operation; +MD: net/minecraft/data/models/blockstates/Condition$Operation/values ()[Lnet/minecraft/data/models/blockstates/Condition$Operation; net/minecraft/data/models/blockstates/Condition$Operation/values ()[Lnet/minecraft/data/models/blockstates/Condition$Operation; +MD: net/minecraft/data/models/blockstates/Condition$TerminalCondition/ ()V net/minecraft/data/models/blockstates/Condition$TerminalCondition/ ()V +MD: net/minecraft/data/models/blockstates/Condition$TerminalCondition/get ()Ljava/lang/Object; net/minecraft/data/models/blockstates/Condition$TerminalCondition/get ()Ljava/lang/Object; +MD: net/minecraft/data/models/blockstates/Condition$TerminalCondition/get ()Lcom/google/gson/JsonElement; net/minecraft/data/models/blockstates/Condition$TerminalCondition/get ()Lcom/google/gson/JsonElement; +MD: net/minecraft/data/models/blockstates/Condition$TerminalCondition/m_125173_ (Lnet/minecraft/world/level/block/state/StateDefinition;Lnet/minecraft/world/level/block/state/properties/Property;)Z net/minecraft/data/models/blockstates/Condition$TerminalCondition/lambda$validate$1 (Lnet/minecraft/world/level/block/state/StateDefinition;Lnet/minecraft/world/level/block/state/properties/Property;)Z +MD: net/minecraft/data/models/blockstates/Condition$TerminalCondition/m_125176_ (Lnet/minecraft/world/level/block/state/properties/Property;Ljava/lang/Comparable;)Lnet/minecraft/data/models/blockstates/Condition$TerminalCondition; net/minecraft/data/models/blockstates/Condition$TerminalCondition/term (Lnet/minecraft/world/level/block/state/properties/Property;Ljava/lang/Comparable;)Lnet/minecraft/data/models/blockstates/Condition$TerminalCondition; +MD: net/minecraft/data/models/blockstates/Condition$TerminalCondition/m_125179_ (Lnet/minecraft/world/level/block/state/properties/Property;Ljava/lang/Comparable;[Ljava/lang/Comparable;)Lnet/minecraft/data/models/blockstates/Condition$TerminalCondition; net/minecraft/data/models/blockstates/Condition$TerminalCondition/term (Lnet/minecraft/world/level/block/state/properties/Property;Ljava/lang/Comparable;[Ljava/lang/Comparable;)Lnet/minecraft/data/models/blockstates/Condition$TerminalCondition; +MD: net/minecraft/data/models/blockstates/Condition$TerminalCondition/m_125183_ (Lnet/minecraft/world/level/block/state/properties/Property;Ljava/lang/String;)V net/minecraft/data/models/blockstates/Condition$TerminalCondition/putValue (Lnet/minecraft/world/level/block/state/properties/Property;Ljava/lang/String;)V +MD: net/minecraft/data/models/blockstates/Condition$TerminalCondition/m_125186_ (Lnet/minecraft/world/level/block/state/properties/Property;Ljava/util/stream/Stream;)Ljava/lang/String; net/minecraft/data/models/blockstates/Condition$TerminalCondition/joinValues (Lnet/minecraft/world/level/block/state/properties/Property;Ljava/util/stream/Stream;)Ljava/lang/String; +MD: net/minecraft/data/models/blockstates/Condition$TerminalCondition/m_125189_ (Lcom/google/gson/JsonObject;Lnet/minecraft/world/level/block/state/properties/Property;Ljava/lang/String;)V net/minecraft/data/models/blockstates/Condition$TerminalCondition/lambda$get$0 (Lcom/google/gson/JsonObject;Lnet/minecraft/world/level/block/state/properties/Property;Ljava/lang/String;)V +MD: net/minecraft/data/models/blockstates/Condition$TerminalCondition/m_125194_ (Lnet/minecraft/world/level/block/state/properties/Property;Ljava/lang/Comparable;[Ljava/lang/Comparable;)Ljava/lang/String; net/minecraft/data/models/blockstates/Condition$TerminalCondition/getTerm (Lnet/minecraft/world/level/block/state/properties/Property;Ljava/lang/Comparable;[Ljava/lang/Comparable;)Ljava/lang/String; +MD: net/minecraft/data/models/blockstates/Condition$TerminalCondition/m_176296_ (Lnet/minecraft/world/level/block/state/properties/Property;Ljava/lang/Comparable;)Lnet/minecraft/data/models/blockstates/Condition$TerminalCondition; net/minecraft/data/models/blockstates/Condition$TerminalCondition/negatedTerm (Lnet/minecraft/world/level/block/state/properties/Property;Ljava/lang/Comparable;)Lnet/minecraft/data/models/blockstates/Condition$TerminalCondition; +MD: net/minecraft/data/models/blockstates/Condition$TerminalCondition/m_176299_ (Lnet/minecraft/world/level/block/state/properties/Property;Ljava/lang/Comparable;[Ljava/lang/Comparable;)Lnet/minecraft/data/models/blockstates/Condition$TerminalCondition; net/minecraft/data/models/blockstates/Condition$TerminalCondition/negatedTerm (Lnet/minecraft/world/level/block/state/properties/Property;Ljava/lang/Comparable;[Ljava/lang/Comparable;)Lnet/minecraft/data/models/blockstates/Condition$TerminalCondition; +MD: net/minecraft/data/models/blockstates/Condition$TerminalCondition/m_7619_ (Lnet/minecraft/world/level/block/state/StateDefinition;)V net/minecraft/data/models/blockstates/Condition$TerminalCondition/validate (Lnet/minecraft/world/level/block/state/StateDefinition;)V +MD: net/minecraft/data/models/blockstates/MultiPartGenerator/ (Lnet/minecraft/world/level/block/Block;)V net/minecraft/data/models/blockstates/MultiPartGenerator/ (Lnet/minecraft/world/level/block/Block;)V +MD: net/minecraft/data/models/blockstates/MultiPartGenerator/get ()Ljava/lang/Object; net/minecraft/data/models/blockstates/MultiPartGenerator/get ()Ljava/lang/Object; +MD: net/minecraft/data/models/blockstates/MultiPartGenerator/get ()Lcom/google/gson/JsonElement; net/minecraft/data/models/blockstates/MultiPartGenerator/get ()Lcom/google/gson/JsonElement; +MD: net/minecraft/data/models/blockstates/MultiPartGenerator/m_125204_ (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/data/models/blockstates/MultiPartGenerator; net/minecraft/data/models/blockstates/MultiPartGenerator/multiPart (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/data/models/blockstates/MultiPartGenerator; +MD: net/minecraft/data/models/blockstates/MultiPartGenerator/m_125206_ (Lnet/minecraft/world/level/block/state/StateDefinition;Lnet/minecraft/data/models/blockstates/MultiPartGenerator$Entry;)V net/minecraft/data/models/blockstates/MultiPartGenerator/lambda$get$0 (Lnet/minecraft/world/level/block/state/StateDefinition;Lnet/minecraft/data/models/blockstates/MultiPartGenerator$Entry;)V +MD: net/minecraft/data/models/blockstates/MultiPartGenerator/m_125209_ (Lnet/minecraft/data/models/blockstates/Condition;Lnet/minecraft/data/models/blockstates/Variant;)Lnet/minecraft/data/models/blockstates/MultiPartGenerator; net/minecraft/data/models/blockstates/MultiPartGenerator/with (Lnet/minecraft/data/models/blockstates/Condition;Lnet/minecraft/data/models/blockstates/Variant;)Lnet/minecraft/data/models/blockstates/MultiPartGenerator; +MD: net/minecraft/data/models/blockstates/MultiPartGenerator/m_125212_ (Lnet/minecraft/data/models/blockstates/Condition;Ljava/util/List;)Lnet/minecraft/data/models/blockstates/MultiPartGenerator; net/minecraft/data/models/blockstates/MultiPartGenerator/with (Lnet/minecraft/data/models/blockstates/Condition;Ljava/util/List;)Lnet/minecraft/data/models/blockstates/MultiPartGenerator; +MD: net/minecraft/data/models/blockstates/MultiPartGenerator/m_125215_ (Lnet/minecraft/data/models/blockstates/Condition;[Lnet/minecraft/data/models/blockstates/Variant;)Lnet/minecraft/data/models/blockstates/MultiPartGenerator; net/minecraft/data/models/blockstates/MultiPartGenerator/with (Lnet/minecraft/data/models/blockstates/Condition;[Lnet/minecraft/data/models/blockstates/Variant;)Lnet/minecraft/data/models/blockstates/MultiPartGenerator; +MD: net/minecraft/data/models/blockstates/MultiPartGenerator/m_125218_ (Lnet/minecraft/data/models/blockstates/Variant;)Lnet/minecraft/data/models/blockstates/MultiPartGenerator; net/minecraft/data/models/blockstates/MultiPartGenerator/with (Lnet/minecraft/data/models/blockstates/Variant;)Lnet/minecraft/data/models/blockstates/MultiPartGenerator; +MD: net/minecraft/data/models/blockstates/MultiPartGenerator/m_125220_ (Ljava/util/List;)Lnet/minecraft/data/models/blockstates/MultiPartGenerator; net/minecraft/data/models/blockstates/MultiPartGenerator/with (Ljava/util/List;)Lnet/minecraft/data/models/blockstates/MultiPartGenerator; +MD: net/minecraft/data/models/blockstates/MultiPartGenerator/m_6968_ ()Lnet/minecraft/world/level/block/Block; net/minecraft/data/models/blockstates/MultiPartGenerator/getBlock ()Lnet/minecraft/world/level/block/Block; +MD: net/minecraft/data/models/blockstates/MultiPartGenerator$ConditionalEntry/ (Lnet/minecraft/data/models/blockstates/Condition;Ljava/util/List;)V net/minecraft/data/models/blockstates/MultiPartGenerator$ConditionalEntry/ (Lnet/minecraft/data/models/blockstates/Condition;Ljava/util/List;)V +MD: net/minecraft/data/models/blockstates/MultiPartGenerator$ConditionalEntry/m_5848_ (Lnet/minecraft/world/level/block/state/StateDefinition;)V net/minecraft/data/models/blockstates/MultiPartGenerator$ConditionalEntry/validate (Lnet/minecraft/world/level/block/state/StateDefinition;)V +MD: net/minecraft/data/models/blockstates/MultiPartGenerator$ConditionalEntry/m_8000_ (Lcom/google/gson/JsonObject;)V net/minecraft/data/models/blockstates/MultiPartGenerator$ConditionalEntry/decorate (Lcom/google/gson/JsonObject;)V +MD: net/minecraft/data/models/blockstates/MultiPartGenerator$Entry/ (Ljava/util/List;)V net/minecraft/data/models/blockstates/MultiPartGenerator$Entry/ (Ljava/util/List;)V +MD: net/minecraft/data/models/blockstates/MultiPartGenerator$Entry/get ()Ljava/lang/Object; net/minecraft/data/models/blockstates/MultiPartGenerator$Entry/get ()Ljava/lang/Object; +MD: net/minecraft/data/models/blockstates/MultiPartGenerator$Entry/get ()Lcom/google/gson/JsonElement; net/minecraft/data/models/blockstates/MultiPartGenerator$Entry/get ()Lcom/google/gson/JsonElement; +MD: net/minecraft/data/models/blockstates/MultiPartGenerator$Entry/m_5848_ (Lnet/minecraft/world/level/block/state/StateDefinition;)V net/minecraft/data/models/blockstates/MultiPartGenerator$Entry/validate (Lnet/minecraft/world/level/block/state/StateDefinition;)V +MD: net/minecraft/data/models/blockstates/MultiPartGenerator$Entry/m_8000_ (Lcom/google/gson/JsonObject;)V net/minecraft/data/models/blockstates/MultiPartGenerator$Entry/decorate (Lcom/google/gson/JsonObject;)V +MD: net/minecraft/data/models/blockstates/MultiVariantGenerator/ (Lnet/minecraft/world/level/block/Block;Ljava/util/List;)V net/minecraft/data/models/blockstates/MultiVariantGenerator/ (Lnet/minecraft/world/level/block/Block;Ljava/util/List;)V +MD: net/minecraft/data/models/blockstates/MultiVariantGenerator/get ()Ljava/lang/Object; net/minecraft/data/models/blockstates/MultiVariantGenerator/get ()Ljava/lang/Object; +MD: net/minecraft/data/models/blockstates/MultiVariantGenerator/get ()Lcom/google/gson/JsonElement; net/minecraft/data/models/blockstates/MultiVariantGenerator/get ()Lcom/google/gson/JsonElement; +MD: net/minecraft/data/models/blockstates/MultiVariantGenerator/m_125254_ (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/data/models/blockstates/MultiVariantGenerator; net/minecraft/data/models/blockstates/MultiVariantGenerator/multiVariant (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/data/models/blockstates/MultiVariantGenerator; +MD: net/minecraft/data/models/blockstates/MultiVariantGenerator/m_125256_ (Lnet/minecraft/world/level/block/Block;Lnet/minecraft/data/models/blockstates/Variant;)Lnet/minecraft/data/models/blockstates/MultiVariantGenerator; net/minecraft/data/models/blockstates/MultiVariantGenerator/multiVariant (Lnet/minecraft/world/level/block/Block;Lnet/minecraft/data/models/blockstates/Variant;)Lnet/minecraft/data/models/blockstates/MultiVariantGenerator; +MD: net/minecraft/data/models/blockstates/MultiVariantGenerator/m_125259_ (Lnet/minecraft/world/level/block/Block;[Lnet/minecraft/data/models/blockstates/Variant;)Lnet/minecraft/data/models/blockstates/MultiVariantGenerator; net/minecraft/data/models/blockstates/MultiVariantGenerator/multiVariant (Lnet/minecraft/world/level/block/Block;[Lnet/minecraft/data/models/blockstates/Variant;)Lnet/minecraft/data/models/blockstates/MultiVariantGenerator; +MD: net/minecraft/data/models/blockstates/MultiVariantGenerator/m_125262_ (Lnet/minecraft/world/level/block/state/properties/Property;)V net/minecraft/data/models/blockstates/MultiVariantGenerator/lambda$with$0 (Lnet/minecraft/world/level/block/state/properties/Property;)V +MD: net/minecraft/data/models/blockstates/MultiVariantGenerator/m_125271_ (Lnet/minecraft/data/models/blockstates/PropertyDispatch;)Lnet/minecraft/data/models/blockstates/MultiVariantGenerator; net/minecraft/data/models/blockstates/MultiVariantGenerator/with (Lnet/minecraft/data/models/blockstates/PropertyDispatch;)Lnet/minecraft/data/models/blockstates/MultiVariantGenerator; +MD: net/minecraft/data/models/blockstates/MultiVariantGenerator/m_125273_ (Ljava/util/List;Lcom/google/common/collect/ImmutableList$Builder;Lnet/minecraft/data/models/blockstates/Variant;)V net/minecraft/data/models/blockstates/MultiVariantGenerator/lambda$mergeVariants$6 (Ljava/util/List;Lcom/google/common/collect/ImmutableList$Builder;Lnet/minecraft/data/models/blockstates/Variant;)V +MD: net/minecraft/data/models/blockstates/MultiVariantGenerator/m_125277_ (Ljava/util/List;Ljava/util/List;)Ljava/util/List; net/minecraft/data/models/blockstates/MultiVariantGenerator/mergeVariants (Ljava/util/List;Ljava/util/List;)Ljava/util/List; +MD: net/minecraft/data/models/blockstates/MultiVariantGenerator/m_125280_ (Ljava/util/Map;Lcom/google/gson/JsonObject;)V net/minecraft/data/models/blockstates/MultiVariantGenerator/lambda$get$4 (Ljava/util/Map;Lcom/google/gson/JsonObject;)V +MD: net/minecraft/data/models/blockstates/MultiVariantGenerator/m_125283_ (Ljava/util/Map;Lcom/mojang/datafixers/util/Pair;)V net/minecraft/data/models/blockstates/MultiVariantGenerator/lambda$get$3 (Ljava/util/Map;Lcom/mojang/datafixers/util/Pair;)V +MD: net/minecraft/data/models/blockstates/MultiVariantGenerator/m_125287_ (Ljava/util/Map;Lcom/mojang/datafixers/util/Pair;)Ljava/util/stream/Stream; net/minecraft/data/models/blockstates/MultiVariantGenerator/lambda$get$2 (Ljava/util/Map;Lcom/mojang/datafixers/util/Pair;)Ljava/util/stream/Stream; +MD: net/minecraft/data/models/blockstates/MultiVariantGenerator/m_176303_ (Lcom/google/common/collect/ImmutableList$Builder;Lnet/minecraft/data/models/blockstates/Variant;Lnet/minecraft/data/models/blockstates/Variant;)V net/minecraft/data/models/blockstates/MultiVariantGenerator/lambda$mergeVariants$5 (Lcom/google/common/collect/ImmutableList$Builder;Lnet/minecraft/data/models/blockstates/Variant;Lnet/minecraft/data/models/blockstates/Variant;)V +MD: net/minecraft/data/models/blockstates/MultiVariantGenerator/m_176307_ (Lcom/mojang/datafixers/util/Pair;Ljava/util/Map$Entry;)Lcom/mojang/datafixers/util/Pair; net/minecraft/data/models/blockstates/MultiVariantGenerator/lambda$get$1 (Lcom/mojang/datafixers/util/Pair;Ljava/util/Map$Entry;)Lcom/mojang/datafixers/util/Pair; +MD: net/minecraft/data/models/blockstates/MultiVariantGenerator/m_6968_ ()Lnet/minecraft/world/level/block/Block; net/minecraft/data/models/blockstates/MultiVariantGenerator/getBlock ()Lnet/minecraft/world/level/block/Block; +MD: net/minecraft/data/models/blockstates/PropertyDispatch/ ()V net/minecraft/data/models/blockstates/PropertyDispatch/ ()V +MD: net/minecraft/data/models/blockstates/PropertyDispatch/m_125293_ ()Ljava/util/Map; net/minecraft/data/models/blockstates/PropertyDispatch/getEntries ()Ljava/util/Map; +MD: net/minecraft/data/models/blockstates/PropertyDispatch/m_125294_ (Lnet/minecraft/world/level/block/state/properties/Property;)Lnet/minecraft/data/models/blockstates/PropertyDispatch$C1; net/minecraft/data/models/blockstates/PropertyDispatch/property (Lnet/minecraft/world/level/block/state/properties/Property;)Lnet/minecraft/data/models/blockstates/PropertyDispatch$C1; +MD: net/minecraft/data/models/blockstates/PropertyDispatch/m_125296_ (Lnet/minecraft/world/level/block/state/properties/Property;Lnet/minecraft/world/level/block/state/properties/Property;)Lnet/minecraft/data/models/blockstates/PropertyDispatch$C2; net/minecraft/data/models/blockstates/PropertyDispatch/properties (Lnet/minecraft/world/level/block/state/properties/Property;Lnet/minecraft/world/level/block/state/properties/Property;)Lnet/minecraft/data/models/blockstates/PropertyDispatch$C2; +MD: net/minecraft/data/models/blockstates/PropertyDispatch/m_125299_ (Lnet/minecraft/world/level/block/state/properties/Property;Lnet/minecraft/world/level/block/state/properties/Property;Lnet/minecraft/world/level/block/state/properties/Property;)Lnet/minecraft/data/models/blockstates/PropertyDispatch$C3; net/minecraft/data/models/blockstates/PropertyDispatch/properties (Lnet/minecraft/world/level/block/state/properties/Property;Lnet/minecraft/world/level/block/state/properties/Property;Lnet/minecraft/world/level/block/state/properties/Property;)Lnet/minecraft/data/models/blockstates/PropertyDispatch$C3; +MD: net/minecraft/data/models/blockstates/PropertyDispatch/m_125303_ (Lnet/minecraft/world/level/block/state/properties/Property;Lnet/minecraft/world/level/block/state/properties/Property;Lnet/minecraft/world/level/block/state/properties/Property;Lnet/minecraft/world/level/block/state/properties/Property;)Lnet/minecraft/data/models/blockstates/PropertyDispatch$C4; net/minecraft/data/models/blockstates/PropertyDispatch/properties (Lnet/minecraft/world/level/block/state/properties/Property;Lnet/minecraft/world/level/block/state/properties/Property;Lnet/minecraft/world/level/block/state/properties/Property;Lnet/minecraft/world/level/block/state/properties/Property;)Lnet/minecraft/data/models/blockstates/PropertyDispatch$C4; +MD: net/minecraft/data/models/blockstates/PropertyDispatch/m_125308_ (Lnet/minecraft/world/level/block/state/properties/Property;Lnet/minecraft/world/level/block/state/properties/Property;Lnet/minecraft/world/level/block/state/properties/Property;Lnet/minecraft/world/level/block/state/properties/Property;Lnet/minecraft/world/level/block/state/properties/Property;)Lnet/minecraft/data/models/blockstates/PropertyDispatch$C5; net/minecraft/data/models/blockstates/PropertyDispatch/properties (Lnet/minecraft/world/level/block/state/properties/Property;Lnet/minecraft/world/level/block/state/properties/Property;Lnet/minecraft/world/level/block/state/properties/Property;Lnet/minecraft/world/level/block/state/properties/Property;Lnet/minecraft/world/level/block/state/properties/Property;)Lnet/minecraft/data/models/blockstates/PropertyDispatch$C5; +MD: net/minecraft/data/models/blockstates/PropertyDispatch/m_125314_ (Lnet/minecraft/world/level/block/state/properties/Property;Lnet/minecraft/data/models/blockstates/Selector;)Ljava/util/stream/Stream; net/minecraft/data/models/blockstates/PropertyDispatch/lambda$verifyComplete$0 (Lnet/minecraft/world/level/block/state/properties/Property;Lnet/minecraft/data/models/blockstates/Selector;)Ljava/util/stream/Stream; +MD: net/minecraft/data/models/blockstates/PropertyDispatch/m_125317_ (Lnet/minecraft/data/models/blockstates/Selector;)Z net/minecraft/data/models/blockstates/PropertyDispatch/lambda$verifyComplete$1 (Lnet/minecraft/data/models/blockstates/Selector;)Z +MD: net/minecraft/data/models/blockstates/PropertyDispatch/m_125319_ (Lnet/minecraft/data/models/blockstates/Selector;Ljava/util/List;)V net/minecraft/data/models/blockstates/PropertyDispatch/putValue (Lnet/minecraft/data/models/blockstates/Selector;Ljava/util/List;)V +MD: net/minecraft/data/models/blockstates/PropertyDispatch/m_125322_ ()V net/minecraft/data/models/blockstates/PropertyDispatch/verifyComplete ()V +MD: net/minecraft/data/models/blockstates/PropertyDispatch/m_7336_ ()Ljava/util/List; net/minecraft/data/models/blockstates/PropertyDispatch/getDefinedProperties ()Ljava/util/List; +MD: net/minecraft/data/models/blockstates/PropertyDispatch$C1/ (Lnet/minecraft/world/level/block/state/properties/Property;)V net/minecraft/data/models/blockstates/PropertyDispatch$C1/ (Lnet/minecraft/world/level/block/state/properties/Property;)V +MD: net/minecraft/data/models/blockstates/PropertyDispatch$C1/m_125329_ (Ljava/lang/Comparable;Lnet/minecraft/data/models/blockstates/Variant;)Lnet/minecraft/data/models/blockstates/PropertyDispatch$C1; net/minecraft/data/models/blockstates/PropertyDispatch$C1/select (Ljava/lang/Comparable;Lnet/minecraft/data/models/blockstates/Variant;)Lnet/minecraft/data/models/blockstates/PropertyDispatch$C1; +MD: net/minecraft/data/models/blockstates/PropertyDispatch$C1/m_125332_ (Ljava/lang/Comparable;Ljava/util/List;)Lnet/minecraft/data/models/blockstates/PropertyDispatch$C1; net/minecraft/data/models/blockstates/PropertyDispatch$C1/select (Ljava/lang/Comparable;Ljava/util/List;)Lnet/minecraft/data/models/blockstates/PropertyDispatch$C1; +MD: net/minecraft/data/models/blockstates/PropertyDispatch$C1/m_125335_ (Ljava/util/function/Function;)Lnet/minecraft/data/models/blockstates/PropertyDispatch; net/minecraft/data/models/blockstates/PropertyDispatch$C1/generate (Ljava/util/function/Function;)Lnet/minecraft/data/models/blockstates/PropertyDispatch; +MD: net/minecraft/data/models/blockstates/PropertyDispatch$C1/m_125338_ (Ljava/util/function/Function;Ljava/lang/Comparable;)V net/minecraft/data/models/blockstates/PropertyDispatch$C1/lambda$generate$0 (Ljava/util/function/Function;Ljava/lang/Comparable;)V +MD: net/minecraft/data/models/blockstates/PropertyDispatch$C1/m_176310_ (Ljava/util/function/Function;Ljava/lang/Comparable;)V net/minecraft/data/models/blockstates/PropertyDispatch$C1/lambda$generateList$1 (Ljava/util/function/Function;Ljava/lang/Comparable;)V +MD: net/minecraft/data/models/blockstates/PropertyDispatch$C1/m_176313_ (Ljava/util/function/Function;)Lnet/minecraft/data/models/blockstates/PropertyDispatch; net/minecraft/data/models/blockstates/PropertyDispatch$C1/generateList (Ljava/util/function/Function;)Lnet/minecraft/data/models/blockstates/PropertyDispatch; +MD: net/minecraft/data/models/blockstates/PropertyDispatch$C1/m_7336_ ()Ljava/util/List; net/minecraft/data/models/blockstates/PropertyDispatch$C1/getDefinedProperties ()Ljava/util/List; +MD: net/minecraft/data/models/blockstates/PropertyDispatch$C2/ (Lnet/minecraft/world/level/block/state/properties/Property;Lnet/minecraft/world/level/block/state/properties/Property;)V net/minecraft/data/models/blockstates/PropertyDispatch$C2/ (Lnet/minecraft/world/level/block/state/properties/Property;Lnet/minecraft/world/level/block/state/properties/Property;)V +MD: net/minecraft/data/models/blockstates/PropertyDispatch$C2/m_125350_ (Ljava/lang/Comparable;Ljava/lang/Comparable;Lnet/minecraft/data/models/blockstates/Variant;)Lnet/minecraft/data/models/blockstates/PropertyDispatch$C2; net/minecraft/data/models/blockstates/PropertyDispatch$C2/select (Ljava/lang/Comparable;Ljava/lang/Comparable;Lnet/minecraft/data/models/blockstates/Variant;)Lnet/minecraft/data/models/blockstates/PropertyDispatch$C2; +MD: net/minecraft/data/models/blockstates/PropertyDispatch$C2/m_125354_ (Ljava/lang/Comparable;Ljava/lang/Comparable;Ljava/util/List;)Lnet/minecraft/data/models/blockstates/PropertyDispatch$C2; net/minecraft/data/models/blockstates/PropertyDispatch$C2/select (Ljava/lang/Comparable;Ljava/lang/Comparable;Ljava/util/List;)Lnet/minecraft/data/models/blockstates/PropertyDispatch$C2; +MD: net/minecraft/data/models/blockstates/PropertyDispatch$C2/m_125362_ (Ljava/util/function/BiFunction;)Lnet/minecraft/data/models/blockstates/PropertyDispatch; net/minecraft/data/models/blockstates/PropertyDispatch$C2/generate (Ljava/util/function/BiFunction;)Lnet/minecraft/data/models/blockstates/PropertyDispatch; +MD: net/minecraft/data/models/blockstates/PropertyDispatch$C2/m_125364_ (Ljava/util/function/BiFunction;Ljava/lang/Comparable;)V net/minecraft/data/models/blockstates/PropertyDispatch$C2/lambda$generateList$3 (Ljava/util/function/BiFunction;Ljava/lang/Comparable;)V +MD: net/minecraft/data/models/blockstates/PropertyDispatch$C2/m_125372_ (Ljava/util/function/BiFunction;)Lnet/minecraft/data/models/blockstates/PropertyDispatch; net/minecraft/data/models/blockstates/PropertyDispatch$C2/generateList (Ljava/util/function/BiFunction;)Lnet/minecraft/data/models/blockstates/PropertyDispatch; +MD: net/minecraft/data/models/blockstates/PropertyDispatch$C2/m_125374_ (Ljava/util/function/BiFunction;Ljava/lang/Comparable;)V net/minecraft/data/models/blockstates/PropertyDispatch$C2/lambda$generate$1 (Ljava/util/function/BiFunction;Ljava/lang/Comparable;)V +MD: net/minecraft/data/models/blockstates/PropertyDispatch$C2/m_176315_ (Ljava/lang/Comparable;Ljava/util/function/BiFunction;Ljava/lang/Comparable;)V net/minecraft/data/models/blockstates/PropertyDispatch$C2/lambda$generateList$2 (Ljava/lang/Comparable;Ljava/util/function/BiFunction;Ljava/lang/Comparable;)V +MD: net/minecraft/data/models/blockstates/PropertyDispatch$C2/m_176319_ (Ljava/lang/Comparable;Ljava/util/function/BiFunction;Ljava/lang/Comparable;)V net/minecraft/data/models/blockstates/PropertyDispatch$C2/lambda$generate$0 (Ljava/lang/Comparable;Ljava/util/function/BiFunction;Ljava/lang/Comparable;)V +MD: net/minecraft/data/models/blockstates/PropertyDispatch$C2/m_7336_ ()Ljava/util/List; net/minecraft/data/models/blockstates/PropertyDispatch$C2/getDefinedProperties ()Ljava/util/List; +MD: net/minecraft/data/models/blockstates/PropertyDispatch$C3/ (Lnet/minecraft/world/level/block/state/properties/Property;Lnet/minecraft/world/level/block/state/properties/Property;Lnet/minecraft/world/level/block/state/properties/Property;)V net/minecraft/data/models/blockstates/PropertyDispatch$C3/ (Lnet/minecraft/world/level/block/state/properties/Property;Lnet/minecraft/world/level/block/state/properties/Property;Lnet/minecraft/world/level/block/state/properties/Property;)V +MD: net/minecraft/data/models/blockstates/PropertyDispatch$C3/m_125389_ (Lnet/minecraft/data/models/blockstates/PropertyDispatch$TriFunction;)Lnet/minecraft/data/models/blockstates/PropertyDispatch; net/minecraft/data/models/blockstates/PropertyDispatch$C3/generate (Lnet/minecraft/data/models/blockstates/PropertyDispatch$TriFunction;)Lnet/minecraft/data/models/blockstates/PropertyDispatch; +MD: net/minecraft/data/models/blockstates/PropertyDispatch$C3/m_125391_ (Ljava/lang/Comparable;Ljava/lang/Comparable;Ljava/lang/Comparable;Lnet/minecraft/data/models/blockstates/Variant;)Lnet/minecraft/data/models/blockstates/PropertyDispatch$C3; net/minecraft/data/models/blockstates/PropertyDispatch$C3/select (Ljava/lang/Comparable;Ljava/lang/Comparable;Ljava/lang/Comparable;Lnet/minecraft/data/models/blockstates/Variant;)Lnet/minecraft/data/models/blockstates/PropertyDispatch$C3; +MD: net/minecraft/data/models/blockstates/PropertyDispatch$C3/m_125396_ (Ljava/lang/Comparable;Ljava/lang/Comparable;Ljava/lang/Comparable;Ljava/util/List;)Lnet/minecraft/data/models/blockstates/PropertyDispatch$C3; net/minecraft/data/models/blockstates/PropertyDispatch$C3/select (Ljava/lang/Comparable;Ljava/lang/Comparable;Ljava/lang/Comparable;Ljava/util/List;)Lnet/minecraft/data/models/blockstates/PropertyDispatch$C3; +MD: net/minecraft/data/models/blockstates/PropertyDispatch$C3/m_125402_ (Lnet/minecraft/data/models/blockstates/PropertyDispatch$TriFunction;Ljava/lang/Comparable;)V net/minecraft/data/models/blockstates/PropertyDispatch$C3/lambda$generate$2 (Lnet/minecraft/data/models/blockstates/PropertyDispatch$TriFunction;Ljava/lang/Comparable;)V +MD: net/minecraft/data/models/blockstates/PropertyDispatch$C3/m_176323_ (Ljava/lang/Comparable;Ljava/lang/Comparable;Lnet/minecraft/data/models/blockstates/PropertyDispatch$TriFunction;Ljava/lang/Comparable;)V net/minecraft/data/models/blockstates/PropertyDispatch$C3/lambda$generateList$3 (Ljava/lang/Comparable;Ljava/lang/Comparable;Lnet/minecraft/data/models/blockstates/PropertyDispatch$TriFunction;Ljava/lang/Comparable;)V +MD: net/minecraft/data/models/blockstates/PropertyDispatch$C3/m_176328_ (Ljava/lang/Comparable;Lnet/minecraft/data/models/blockstates/PropertyDispatch$TriFunction;Ljava/lang/Comparable;)V net/minecraft/data/models/blockstates/PropertyDispatch$C3/lambda$generateList$4 (Ljava/lang/Comparable;Lnet/minecraft/data/models/blockstates/PropertyDispatch$TriFunction;Ljava/lang/Comparable;)V +MD: net/minecraft/data/models/blockstates/PropertyDispatch$C3/m_176332_ (Lnet/minecraft/data/models/blockstates/PropertyDispatch$TriFunction;Ljava/lang/Comparable;)V net/minecraft/data/models/blockstates/PropertyDispatch$C3/lambda$generateList$5 (Lnet/minecraft/data/models/blockstates/PropertyDispatch$TriFunction;Ljava/lang/Comparable;)V +MD: net/minecraft/data/models/blockstates/PropertyDispatch$C3/m_176335_ (Ljava/lang/Comparable;Ljava/lang/Comparable;Lnet/minecraft/data/models/blockstates/PropertyDispatch$TriFunction;Ljava/lang/Comparable;)V net/minecraft/data/models/blockstates/PropertyDispatch$C3/lambda$generate$0 (Ljava/lang/Comparable;Ljava/lang/Comparable;Lnet/minecraft/data/models/blockstates/PropertyDispatch$TriFunction;Ljava/lang/Comparable;)V +MD: net/minecraft/data/models/blockstates/PropertyDispatch$C3/m_176340_ (Ljava/lang/Comparable;Lnet/minecraft/data/models/blockstates/PropertyDispatch$TriFunction;Ljava/lang/Comparable;)V net/minecraft/data/models/blockstates/PropertyDispatch$C3/lambda$generate$1 (Ljava/lang/Comparable;Lnet/minecraft/data/models/blockstates/PropertyDispatch$TriFunction;Ljava/lang/Comparable;)V +MD: net/minecraft/data/models/blockstates/PropertyDispatch$C3/m_176344_ (Lnet/minecraft/data/models/blockstates/PropertyDispatch$TriFunction;)Lnet/minecraft/data/models/blockstates/PropertyDispatch; net/minecraft/data/models/blockstates/PropertyDispatch$C3/generateList (Lnet/minecraft/data/models/blockstates/PropertyDispatch$TriFunction;)Lnet/minecraft/data/models/blockstates/PropertyDispatch; +MD: net/minecraft/data/models/blockstates/PropertyDispatch$C3/m_7336_ ()Ljava/util/List; net/minecraft/data/models/blockstates/PropertyDispatch$C3/getDefinedProperties ()Ljava/util/List; +MD: net/minecraft/data/models/blockstates/PropertyDispatch$C4/ (Lnet/minecraft/world/level/block/state/properties/Property;Lnet/minecraft/world/level/block/state/properties/Property;Lnet/minecraft/world/level/block/state/properties/Property;Lnet/minecraft/world/level/block/state/properties/Property;)V net/minecraft/data/models/blockstates/PropertyDispatch$C4/ (Lnet/minecraft/world/level/block/state/properties/Property;Lnet/minecraft/world/level/block/state/properties/Property;Lnet/minecraft/world/level/block/state/properties/Property;Lnet/minecraft/world/level/block/state/properties/Property;)V +MD: net/minecraft/data/models/blockstates/PropertyDispatch$C4/m_125429_ (Ljava/lang/Comparable;Ljava/lang/Comparable;Ljava/lang/Comparable;Ljava/lang/Comparable;Lnet/minecraft/data/models/blockstates/Variant;)Lnet/minecraft/data/models/blockstates/PropertyDispatch$C4; net/minecraft/data/models/blockstates/PropertyDispatch$C4/select (Ljava/lang/Comparable;Ljava/lang/Comparable;Ljava/lang/Comparable;Ljava/lang/Comparable;Lnet/minecraft/data/models/blockstates/Variant;)Lnet/minecraft/data/models/blockstates/PropertyDispatch$C4; +MD: net/minecraft/data/models/blockstates/PropertyDispatch$C4/m_125435_ (Ljava/lang/Comparable;Ljava/lang/Comparable;Ljava/lang/Comparable;Ljava/lang/Comparable;Ljava/util/List;)Lnet/minecraft/data/models/blockstates/PropertyDispatch$C4; net/minecraft/data/models/blockstates/PropertyDispatch$C4/select (Ljava/lang/Comparable;Ljava/lang/Comparable;Ljava/lang/Comparable;Ljava/lang/Comparable;Ljava/util/List;)Lnet/minecraft/data/models/blockstates/PropertyDispatch$C4; +MD: net/minecraft/data/models/blockstates/PropertyDispatch$C4/m_176346_ (Ljava/lang/Comparable;Ljava/lang/Comparable;Ljava/lang/Comparable;Lnet/minecraft/data/models/blockstates/PropertyDispatch$QuadFunction;Ljava/lang/Comparable;)V net/minecraft/data/models/blockstates/PropertyDispatch$C4/lambda$generateList$4 (Ljava/lang/Comparable;Ljava/lang/Comparable;Ljava/lang/Comparable;Lnet/minecraft/data/models/blockstates/PropertyDispatch$QuadFunction;Ljava/lang/Comparable;)V +MD: net/minecraft/data/models/blockstates/PropertyDispatch$C4/m_176352_ (Ljava/lang/Comparable;Ljava/lang/Comparable;Lnet/minecraft/data/models/blockstates/PropertyDispatch$QuadFunction;Ljava/lang/Comparable;)V net/minecraft/data/models/blockstates/PropertyDispatch$C4/lambda$generateList$5 (Ljava/lang/Comparable;Ljava/lang/Comparable;Lnet/minecraft/data/models/blockstates/PropertyDispatch$QuadFunction;Ljava/lang/Comparable;)V +MD: net/minecraft/data/models/blockstates/PropertyDispatch$C4/m_176357_ (Ljava/lang/Comparable;Lnet/minecraft/data/models/blockstates/PropertyDispatch$QuadFunction;Ljava/lang/Comparable;)V net/minecraft/data/models/blockstates/PropertyDispatch$C4/lambda$generateList$6 (Ljava/lang/Comparable;Lnet/minecraft/data/models/blockstates/PropertyDispatch$QuadFunction;Ljava/lang/Comparable;)V +MD: net/minecraft/data/models/blockstates/PropertyDispatch$C4/m_176361_ (Lnet/minecraft/data/models/blockstates/PropertyDispatch$QuadFunction;)Lnet/minecraft/data/models/blockstates/PropertyDispatch; net/minecraft/data/models/blockstates/PropertyDispatch$C4/generate (Lnet/minecraft/data/models/blockstates/PropertyDispatch$QuadFunction;)Lnet/minecraft/data/models/blockstates/PropertyDispatch; +MD: net/minecraft/data/models/blockstates/PropertyDispatch$C4/m_176363_ (Lnet/minecraft/data/models/blockstates/PropertyDispatch$QuadFunction;Ljava/lang/Comparable;)V net/minecraft/data/models/blockstates/PropertyDispatch$C4/lambda$generateList$7 (Lnet/minecraft/data/models/blockstates/PropertyDispatch$QuadFunction;Ljava/lang/Comparable;)V +MD: net/minecraft/data/models/blockstates/PropertyDispatch$C4/m_176366_ (Ljava/lang/Comparable;Ljava/lang/Comparable;Ljava/lang/Comparable;Lnet/minecraft/data/models/blockstates/PropertyDispatch$QuadFunction;Ljava/lang/Comparable;)V net/minecraft/data/models/blockstates/PropertyDispatch$C4/lambda$generate$0 (Ljava/lang/Comparable;Ljava/lang/Comparable;Ljava/lang/Comparable;Lnet/minecraft/data/models/blockstates/PropertyDispatch$QuadFunction;Ljava/lang/Comparable;)V +MD: net/minecraft/data/models/blockstates/PropertyDispatch$C4/m_176372_ (Ljava/lang/Comparable;Ljava/lang/Comparable;Lnet/minecraft/data/models/blockstates/PropertyDispatch$QuadFunction;Ljava/lang/Comparable;)V net/minecraft/data/models/blockstates/PropertyDispatch$C4/lambda$generate$1 (Ljava/lang/Comparable;Ljava/lang/Comparable;Lnet/minecraft/data/models/blockstates/PropertyDispatch$QuadFunction;Ljava/lang/Comparable;)V +MD: net/minecraft/data/models/blockstates/PropertyDispatch$C4/m_176377_ (Ljava/lang/Comparable;Lnet/minecraft/data/models/blockstates/PropertyDispatch$QuadFunction;Ljava/lang/Comparable;)V net/minecraft/data/models/blockstates/PropertyDispatch$C4/lambda$generate$2 (Ljava/lang/Comparable;Lnet/minecraft/data/models/blockstates/PropertyDispatch$QuadFunction;Ljava/lang/Comparable;)V +MD: net/minecraft/data/models/blockstates/PropertyDispatch$C4/m_176381_ (Lnet/minecraft/data/models/blockstates/PropertyDispatch$QuadFunction;)Lnet/minecraft/data/models/blockstates/PropertyDispatch; net/minecraft/data/models/blockstates/PropertyDispatch$C4/generateList (Lnet/minecraft/data/models/blockstates/PropertyDispatch$QuadFunction;)Lnet/minecraft/data/models/blockstates/PropertyDispatch; +MD: net/minecraft/data/models/blockstates/PropertyDispatch$C4/m_176383_ (Lnet/minecraft/data/models/blockstates/PropertyDispatch$QuadFunction;Ljava/lang/Comparable;)V net/minecraft/data/models/blockstates/PropertyDispatch$C4/lambda$generate$3 (Lnet/minecraft/data/models/blockstates/PropertyDispatch$QuadFunction;Ljava/lang/Comparable;)V +MD: net/minecraft/data/models/blockstates/PropertyDispatch$C4/m_7336_ ()Ljava/util/List; net/minecraft/data/models/blockstates/PropertyDispatch$C4/getDefinedProperties ()Ljava/util/List; +MD: net/minecraft/data/models/blockstates/PropertyDispatch$C5/ (Lnet/minecraft/world/level/block/state/properties/Property;Lnet/minecraft/world/level/block/state/properties/Property;Lnet/minecraft/world/level/block/state/properties/Property;Lnet/minecraft/world/level/block/state/properties/Property;Lnet/minecraft/world/level/block/state/properties/Property;)V net/minecraft/data/models/blockstates/PropertyDispatch$C5/ (Lnet/minecraft/world/level/block/state/properties/Property;Lnet/minecraft/world/level/block/state/properties/Property;Lnet/minecraft/world/level/block/state/properties/Property;Lnet/minecraft/world/level/block/state/properties/Property;Lnet/minecraft/world/level/block/state/properties/Property;)V +MD: net/minecraft/data/models/blockstates/PropertyDispatch$C5/m_125460_ (Ljava/lang/Comparable;Ljava/lang/Comparable;Ljava/lang/Comparable;Ljava/lang/Comparable;Ljava/lang/Comparable;Lnet/minecraft/data/models/blockstates/Variant;)Lnet/minecraft/data/models/blockstates/PropertyDispatch$C5; net/minecraft/data/models/blockstates/PropertyDispatch$C5/select (Ljava/lang/Comparable;Ljava/lang/Comparable;Ljava/lang/Comparable;Ljava/lang/Comparable;Ljava/lang/Comparable;Lnet/minecraft/data/models/blockstates/Variant;)Lnet/minecraft/data/models/blockstates/PropertyDispatch$C5; +MD: net/minecraft/data/models/blockstates/PropertyDispatch$C5/m_125467_ (Ljava/lang/Comparable;Ljava/lang/Comparable;Ljava/lang/Comparable;Ljava/lang/Comparable;Ljava/lang/Comparable;Ljava/util/List;)Lnet/minecraft/data/models/blockstates/PropertyDispatch$C5; net/minecraft/data/models/blockstates/PropertyDispatch$C5/select (Ljava/lang/Comparable;Ljava/lang/Comparable;Ljava/lang/Comparable;Ljava/lang/Comparable;Ljava/lang/Comparable;Ljava/util/List;)Lnet/minecraft/data/models/blockstates/PropertyDispatch$C5; +MD: net/minecraft/data/models/blockstates/PropertyDispatch$C5/m_176386_ (Ljava/lang/Comparable;Ljava/lang/Comparable;Ljava/lang/Comparable;Ljava/lang/Comparable;Lnet/minecraft/data/models/blockstates/PropertyDispatch$PentaFunction;Ljava/lang/Comparable;)V net/minecraft/data/models/blockstates/PropertyDispatch$C5/lambda$generateList$5 (Ljava/lang/Comparable;Ljava/lang/Comparable;Ljava/lang/Comparable;Ljava/lang/Comparable;Lnet/minecraft/data/models/blockstates/PropertyDispatch$PentaFunction;Ljava/lang/Comparable;)V +MD: net/minecraft/data/models/blockstates/PropertyDispatch$C5/m_176393_ (Ljava/lang/Comparable;Ljava/lang/Comparable;Ljava/lang/Comparable;Lnet/minecraft/data/models/blockstates/PropertyDispatch$PentaFunction;Ljava/lang/Comparable;)V net/minecraft/data/models/blockstates/PropertyDispatch$C5/lambda$generateList$6 (Ljava/lang/Comparable;Ljava/lang/Comparable;Ljava/lang/Comparable;Lnet/minecraft/data/models/blockstates/PropertyDispatch$PentaFunction;Ljava/lang/Comparable;)V +MD: net/minecraft/data/models/blockstates/PropertyDispatch$C5/m_176399_ (Ljava/lang/Comparable;Ljava/lang/Comparable;Lnet/minecraft/data/models/blockstates/PropertyDispatch$PentaFunction;Ljava/lang/Comparable;)V net/minecraft/data/models/blockstates/PropertyDispatch$C5/lambda$generateList$7 (Ljava/lang/Comparable;Ljava/lang/Comparable;Lnet/minecraft/data/models/blockstates/PropertyDispatch$PentaFunction;Ljava/lang/Comparable;)V +MD: net/minecraft/data/models/blockstates/PropertyDispatch$C5/m_176404_ (Ljava/lang/Comparable;Lnet/minecraft/data/models/blockstates/PropertyDispatch$PentaFunction;Ljava/lang/Comparable;)V net/minecraft/data/models/blockstates/PropertyDispatch$C5/lambda$generateList$8 (Ljava/lang/Comparable;Lnet/minecraft/data/models/blockstates/PropertyDispatch$PentaFunction;Ljava/lang/Comparable;)V +MD: net/minecraft/data/models/blockstates/PropertyDispatch$C5/m_176408_ (Lnet/minecraft/data/models/blockstates/PropertyDispatch$PentaFunction;)Lnet/minecraft/data/models/blockstates/PropertyDispatch; net/minecraft/data/models/blockstates/PropertyDispatch$C5/generate (Lnet/minecraft/data/models/blockstates/PropertyDispatch$PentaFunction;)Lnet/minecraft/data/models/blockstates/PropertyDispatch; +MD: net/minecraft/data/models/blockstates/PropertyDispatch$C5/m_176410_ (Lnet/minecraft/data/models/blockstates/PropertyDispatch$PentaFunction;Ljava/lang/Comparable;)V net/minecraft/data/models/blockstates/PropertyDispatch$C5/lambda$generateList$9 (Lnet/minecraft/data/models/blockstates/PropertyDispatch$PentaFunction;Ljava/lang/Comparable;)V +MD: net/minecraft/data/models/blockstates/PropertyDispatch$C5/m_176413_ (Ljava/lang/Comparable;Ljava/lang/Comparable;Ljava/lang/Comparable;Ljava/lang/Comparable;Lnet/minecraft/data/models/blockstates/PropertyDispatch$PentaFunction;Ljava/lang/Comparable;)V net/minecraft/data/models/blockstates/PropertyDispatch$C5/lambda$generate$0 (Ljava/lang/Comparable;Ljava/lang/Comparable;Ljava/lang/Comparable;Ljava/lang/Comparable;Lnet/minecraft/data/models/blockstates/PropertyDispatch$PentaFunction;Ljava/lang/Comparable;)V +MD: net/minecraft/data/models/blockstates/PropertyDispatch$C5/m_176420_ (Ljava/lang/Comparable;Ljava/lang/Comparable;Ljava/lang/Comparable;Lnet/minecraft/data/models/blockstates/PropertyDispatch$PentaFunction;Ljava/lang/Comparable;)V net/minecraft/data/models/blockstates/PropertyDispatch$C5/lambda$generate$1 (Ljava/lang/Comparable;Ljava/lang/Comparable;Ljava/lang/Comparable;Lnet/minecraft/data/models/blockstates/PropertyDispatch$PentaFunction;Ljava/lang/Comparable;)V +MD: net/minecraft/data/models/blockstates/PropertyDispatch$C5/m_176426_ (Ljava/lang/Comparable;Ljava/lang/Comparable;Lnet/minecraft/data/models/blockstates/PropertyDispatch$PentaFunction;Ljava/lang/Comparable;)V net/minecraft/data/models/blockstates/PropertyDispatch$C5/lambda$generate$2 (Ljava/lang/Comparable;Ljava/lang/Comparable;Lnet/minecraft/data/models/blockstates/PropertyDispatch$PentaFunction;Ljava/lang/Comparable;)V +MD: net/minecraft/data/models/blockstates/PropertyDispatch$C5/m_176431_ (Ljava/lang/Comparable;Lnet/minecraft/data/models/blockstates/PropertyDispatch$PentaFunction;Ljava/lang/Comparable;)V net/minecraft/data/models/blockstates/PropertyDispatch$C5/lambda$generate$3 (Ljava/lang/Comparable;Lnet/minecraft/data/models/blockstates/PropertyDispatch$PentaFunction;Ljava/lang/Comparable;)V +MD: net/minecraft/data/models/blockstates/PropertyDispatch$C5/m_176435_ (Lnet/minecraft/data/models/blockstates/PropertyDispatch$PentaFunction;)Lnet/minecraft/data/models/blockstates/PropertyDispatch; net/minecraft/data/models/blockstates/PropertyDispatch$C5/generateList (Lnet/minecraft/data/models/blockstates/PropertyDispatch$PentaFunction;)Lnet/minecraft/data/models/blockstates/PropertyDispatch; +MD: net/minecraft/data/models/blockstates/PropertyDispatch$C5/m_176437_ (Lnet/minecraft/data/models/blockstates/PropertyDispatch$PentaFunction;Ljava/lang/Comparable;)V net/minecraft/data/models/blockstates/PropertyDispatch$C5/lambda$generate$4 (Lnet/minecraft/data/models/blockstates/PropertyDispatch$PentaFunction;Ljava/lang/Comparable;)V +MD: net/minecraft/data/models/blockstates/PropertyDispatch$C5/m_7336_ ()Ljava/util/List; net/minecraft/data/models/blockstates/PropertyDispatch$C5/getDefinedProperties ()Ljava/util/List; +MD: net/minecraft/data/models/blockstates/PropertyDispatch$PentaFunction/m_176440_ (Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object; net/minecraft/data/models/blockstates/PropertyDispatch$PentaFunction/apply (Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object; +MD: net/minecraft/data/models/blockstates/PropertyDispatch$QuadFunction/m_176446_ (Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object; net/minecraft/data/models/blockstates/PropertyDispatch$QuadFunction/apply (Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object; +MD: net/minecraft/data/models/blockstates/PropertyDispatch$TriFunction/m_125475_ (Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object; net/minecraft/data/models/blockstates/PropertyDispatch$TriFunction/apply (Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object; +MD: net/minecraft/data/models/blockstates/Selector/ ()V net/minecraft/data/models/blockstates/Selector/ ()V +MD: net/minecraft/data/models/blockstates/Selector/ (Ljava/util/List;)V net/minecraft/data/models/blockstates/Selector/ (Ljava/util/List;)V +MD: net/minecraft/data/models/blockstates/Selector/equals (Ljava/lang/Object;)Z net/minecraft/data/models/blockstates/Selector/equals (Ljava/lang/Object;)Z +MD: net/minecraft/data/models/blockstates/Selector/hashCode ()I net/minecraft/data/models/blockstates/Selector/hashCode ()I +MD: net/minecraft/data/models/blockstates/Selector/m_125485_ ()Lnet/minecraft/data/models/blockstates/Selector; net/minecraft/data/models/blockstates/Selector/empty ()Lnet/minecraft/data/models/blockstates/Selector; +MD: net/minecraft/data/models/blockstates/Selector/m_125486_ (Lnet/minecraft/world/level/block/state/properties/Property$Value;)Lnet/minecraft/data/models/blockstates/Selector; net/minecraft/data/models/blockstates/Selector/extend (Lnet/minecraft/world/level/block/state/properties/Property$Value;)Lnet/minecraft/data/models/blockstates/Selector; +MD: net/minecraft/data/models/blockstates/Selector/m_125488_ (Lnet/minecraft/data/models/blockstates/Selector;)Lnet/minecraft/data/models/blockstates/Selector; net/minecraft/data/models/blockstates/Selector/extend (Lnet/minecraft/data/models/blockstates/Selector;)Lnet/minecraft/data/models/blockstates/Selector; +MD: net/minecraft/data/models/blockstates/Selector/m_125490_ ([Lnet/minecraft/world/level/block/state/properties/Property$Value;)Lnet/minecraft/data/models/blockstates/Selector; net/minecraft/data/models/blockstates/Selector/of ([Lnet/minecraft/world/level/block/state/properties/Property$Value;)Lnet/minecraft/data/models/blockstates/Selector; +MD: net/minecraft/data/models/blockstates/Selector/m_125492_ ()Ljava/lang/String; net/minecraft/data/models/blockstates/Selector/getKey ()Ljava/lang/String; +MD: net/minecraft/data/models/blockstates/Selector/m_125493_ (Lnet/minecraft/world/level/block/state/properties/Property$Value;)Ljava/lang/String; net/minecraft/data/models/blockstates/Selector/lambda$static$0 (Lnet/minecraft/world/level/block/state/properties/Property$Value;)Ljava/lang/String; +MD: net/minecraft/data/models/blockstates/Selector/toString ()Ljava/lang/String; net/minecraft/data/models/blockstates/Selector/toString ()Ljava/lang/String; +MD: net/minecraft/data/models/blockstates/Variant/ ()V net/minecraft/data/models/blockstates/Variant/ ()V +MD: net/minecraft/data/models/blockstates/Variant/get ()Ljava/lang/Object; net/minecraft/data/models/blockstates/Variant/get ()Ljava/lang/Object; +MD: net/minecraft/data/models/blockstates/Variant/get ()Lcom/google/gson/JsonElement; net/minecraft/data/models/blockstates/Variant/get ()Lcom/google/gson/JsonElement; +MD: net/minecraft/data/models/blockstates/Variant/m_125501_ ()Lnet/minecraft/data/models/blockstates/Variant; net/minecraft/data/models/blockstates/Variant/variant ()Lnet/minecraft/data/models/blockstates/Variant; +MD: net/minecraft/data/models/blockstates/Variant/m_125502_ (Lcom/google/gson/JsonArray;Lnet/minecraft/data/models/blockstates/Variant;)V net/minecraft/data/models/blockstates/Variant/lambda$convertList$1 (Lcom/google/gson/JsonArray;Lnet/minecraft/data/models/blockstates/Variant;)V +MD: net/minecraft/data/models/blockstates/Variant/m_125505_ (Lcom/google/gson/JsonObject;Lnet/minecraft/data/models/blockstates/VariantProperty$Value;)V net/minecraft/data/models/blockstates/Variant/lambda$get$0 (Lcom/google/gson/JsonObject;Lnet/minecraft/data/models/blockstates/VariantProperty$Value;)V +MD: net/minecraft/data/models/blockstates/Variant/m_125508_ (Lnet/minecraft/data/models/blockstates/Variant;Lnet/minecraft/data/models/blockstates/Variant;)Lnet/minecraft/data/models/blockstates/Variant; net/minecraft/data/models/blockstates/Variant/merge (Lnet/minecraft/data/models/blockstates/Variant;Lnet/minecraft/data/models/blockstates/Variant;)Lnet/minecraft/data/models/blockstates/Variant; +MD: net/minecraft/data/models/blockstates/Variant/m_125511_ (Lnet/minecraft/data/models/blockstates/VariantProperty;Ljava/lang/Object;)Lnet/minecraft/data/models/blockstates/Variant; net/minecraft/data/models/blockstates/Variant/with (Lnet/minecraft/data/models/blockstates/VariantProperty;Ljava/lang/Object;)Lnet/minecraft/data/models/blockstates/Variant; +MD: net/minecraft/data/models/blockstates/Variant/m_125514_ (Ljava/util/List;)Lcom/google/gson/JsonElement; net/minecraft/data/models/blockstates/Variant/convertList (Ljava/util/List;)Lcom/google/gson/JsonElement; +MD: net/minecraft/data/models/blockstates/VariantProperties/ ()V net/minecraft/data/models/blockstates/VariantProperties/ ()V +MD: net/minecraft/data/models/blockstates/VariantProperties/ ()V net/minecraft/data/models/blockstates/VariantProperties/ ()V +MD: net/minecraft/data/models/blockstates/VariantProperties/m_125524_ (Lnet/minecraft/data/models/blockstates/VariantProperties$Rotation;)Lcom/google/gson/JsonElement; net/minecraft/data/models/blockstates/VariantProperties/lambda$static$1 (Lnet/minecraft/data/models/blockstates/VariantProperties$Rotation;)Lcom/google/gson/JsonElement; +MD: net/minecraft/data/models/blockstates/VariantProperties/m_125526_ (Lnet/minecraft/resources/ResourceLocation;)Lcom/google/gson/JsonElement; net/minecraft/data/models/blockstates/VariantProperties/lambda$static$2 (Lnet/minecraft/resources/ResourceLocation;)Lcom/google/gson/JsonElement; +MD: net/minecraft/data/models/blockstates/VariantProperties/m_125528_ (Lnet/minecraft/data/models/blockstates/VariantProperties$Rotation;)Lcom/google/gson/JsonElement; net/minecraft/data/models/blockstates/VariantProperties/lambda$static$0 (Lnet/minecraft/data/models/blockstates/VariantProperties$Rotation;)Lcom/google/gson/JsonElement; +MD: net/minecraft/data/models/blockstates/VariantProperties$Rotation/ ()V net/minecraft/data/models/blockstates/VariantProperties$Rotation/ ()V +MD: net/minecraft/data/models/blockstates/VariantProperties$Rotation/ (Ljava/lang/String;II)V net/minecraft/data/models/blockstates/VariantProperties$Rotation/ (Ljava/lang/String;II)V +MD: net/minecraft/data/models/blockstates/VariantProperties$Rotation/m_176452_ ()[Lnet/minecraft/data/models/blockstates/VariantProperties$Rotation; net/minecraft/data/models/blockstates/VariantProperties$Rotation/$values ()[Lnet/minecraft/data/models/blockstates/VariantProperties$Rotation; +MD: net/minecraft/data/models/blockstates/VariantProperties$Rotation/valueOf (Ljava/lang/String;)Lnet/minecraft/data/models/blockstates/VariantProperties$Rotation; net/minecraft/data/models/blockstates/VariantProperties$Rotation/valueOf (Ljava/lang/String;)Lnet/minecraft/data/models/blockstates/VariantProperties$Rotation; +MD: net/minecraft/data/models/blockstates/VariantProperties$Rotation/values ()[Lnet/minecraft/data/models/blockstates/VariantProperties$Rotation; net/minecraft/data/models/blockstates/VariantProperties$Rotation/values ()[Lnet/minecraft/data/models/blockstates/VariantProperties$Rotation; +MD: net/minecraft/data/models/blockstates/VariantProperty/ (Ljava/lang/String;Ljava/util/function/Function;)V net/minecraft/data/models/blockstates/VariantProperty/ (Ljava/lang/String;Ljava/util/function/Function;)V +MD: net/minecraft/data/models/blockstates/VariantProperty/m_125553_ (Ljava/lang/Object;)Lnet/minecraft/data/models/blockstates/VariantProperty$Value; net/minecraft/data/models/blockstates/VariantProperty/withValue (Ljava/lang/Object;)Lnet/minecraft/data/models/blockstates/VariantProperty$Value; +MD: net/minecraft/data/models/blockstates/VariantProperty/toString ()Ljava/lang/String; net/minecraft/data/models/blockstates/VariantProperty/toString ()Ljava/lang/String; +MD: net/minecraft/data/models/blockstates/VariantProperty$Value/ (Lnet/minecraft/data/models/blockstates/VariantProperty;Ljava/lang/Object;)V net/minecraft/data/models/blockstates/VariantProperty$Value/ (Lnet/minecraft/data/models/blockstates/VariantProperty;Ljava/lang/Object;)V +MD: net/minecraft/data/models/blockstates/VariantProperty$Value/m_125563_ (Lcom/google/gson/JsonObject;)V net/minecraft/data/models/blockstates/VariantProperty$Value/addToVariant (Lcom/google/gson/JsonObject;)V +MD: net/minecraft/data/models/blockstates/VariantProperty$Value/m_176453_ ()Lnet/minecraft/data/models/blockstates/VariantProperty; net/minecraft/data/models/blockstates/VariantProperty$Value/getKey ()Lnet/minecraft/data/models/blockstates/VariantProperty; +MD: net/minecraft/data/models/blockstates/VariantProperty$Value/toString ()Ljava/lang/String; net/minecraft/data/models/blockstates/VariantProperty$Value/toString ()Ljava/lang/String; +MD: net/minecraft/data/models/model/DelegatedModel/ (Lnet/minecraft/resources/ResourceLocation;)V net/minecraft/data/models/model/DelegatedModel/ (Lnet/minecraft/resources/ResourceLocation;)V +MD: net/minecraft/data/models/model/DelegatedModel/get ()Ljava/lang/Object; net/minecraft/data/models/model/DelegatedModel/get ()Ljava/lang/Object; +MD: net/minecraft/data/models/model/DelegatedModel/get ()Lcom/google/gson/JsonElement; net/minecraft/data/models/model/DelegatedModel/get ()Lcom/google/gson/JsonElement; +MD: net/minecraft/data/models/model/ModelLocationUtils/ ()V net/minecraft/data/models/model/ModelLocationUtils/ ()V +MD: net/minecraft/data/models/model/ModelLocationUtils/m_125571_ (Lnet/minecraft/world/item/Item;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/data/models/model/ModelLocationUtils/getModelLocation (Lnet/minecraft/world/item/Item;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/data/models/model/ModelLocationUtils/m_125573_ (Lnet/minecraft/world/item/Item;Ljava/lang/String;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/data/models/model/ModelLocationUtils/getModelLocation (Lnet/minecraft/world/item/Item;Ljava/lang/String;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/data/models/model/ModelLocationUtils/m_125576_ (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/data/models/model/ModelLocationUtils/getModelLocation (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/data/models/model/ModelLocationUtils/m_125578_ (Lnet/minecraft/world/level/block/Block;Ljava/lang/String;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/data/models/model/ModelLocationUtils/getModelLocation (Lnet/minecraft/world/level/block/Block;Ljava/lang/String;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/data/models/model/ModelLocationUtils/m_125581_ (Ljava/lang/String;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/data/models/model/ModelLocationUtils/decorateBlockModelLocation (Ljava/lang/String;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/data/models/model/ModelLocationUtils/m_125583_ (Ljava/lang/String;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/data/models/model/ModelLocationUtils/decorateItemModelLocation (Ljava/lang/String;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/data/models/model/ModelLocationUtils/m_246144_ (Ljava/lang/String;Ljava/lang/String;)Ljava/lang/String; net/minecraft/data/models/model/ModelLocationUtils/lambda$getModelLocation$0 (Ljava/lang/String;Ljava/lang/String;)Ljava/lang/String; +MD: net/minecraft/data/models/model/ModelLocationUtils/m_246878_ (Ljava/lang/String;Ljava/lang/String;)Ljava/lang/String; net/minecraft/data/models/model/ModelLocationUtils/lambda$getModelLocation$1 (Ljava/lang/String;Ljava/lang/String;)Ljava/lang/String; +MD: net/minecraft/data/models/model/ModelTemplate/ (Ljava/util/Optional;Ljava/util/Optional;[Lnet/minecraft/data/models/model/TextureSlot;)V net/minecraft/data/models/model/ModelTemplate/ (Ljava/util/Optional;Ljava/util/Optional;[Lnet/minecraft/data/models/model/TextureSlot;)V +MD: net/minecraft/data/models/model/ModelTemplate/m_125592_ (Lnet/minecraft/world/level/block/Block;Lnet/minecraft/data/models/model/TextureMapping;Ljava/util/function/BiConsumer;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/data/models/model/ModelTemplate/create (Lnet/minecraft/world/level/block/Block;Lnet/minecraft/data/models/model/TextureMapping;Ljava/util/function/BiConsumer;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/data/models/model/ModelTemplate/m_125596_ (Lnet/minecraft/world/level/block/Block;Ljava/lang/String;Lnet/minecraft/data/models/model/TextureMapping;Ljava/util/function/BiConsumer;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/data/models/model/ModelTemplate/createWithSuffix (Lnet/minecraft/world/level/block/Block;Ljava/lang/String;Lnet/minecraft/data/models/model/TextureMapping;Ljava/util/function/BiConsumer;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/data/models/model/ModelTemplate/m_125608_ (Lnet/minecraft/data/models/model/TextureMapping;)Ljava/util/Map; net/minecraft/data/models/model/ModelTemplate/createMap (Lnet/minecraft/data/models/model/TextureMapping;)Ljava/util/Map; +MD: net/minecraft/data/models/model/ModelTemplate/m_125612_ (Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/data/models/model/TextureMapping;Ljava/util/function/BiConsumer;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/data/models/model/ModelTemplate/create (Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/data/models/model/TextureMapping;Ljava/util/function/BiConsumer;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/data/models/model/ModelTemplate/m_125616_ (Lnet/minecraft/world/level/block/Block;Ljava/lang/String;Lnet/minecraft/data/models/model/TextureMapping;Ljava/util/function/BiConsumer;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/data/models/model/ModelTemplate/createWithOverride (Lnet/minecraft/world/level/block/Block;Ljava/lang/String;Lnet/minecraft/data/models/model/TextureMapping;Ljava/util/function/BiConsumer;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/data/models/model/ModelTemplate/m_176455_ (Lcom/google/gson/JsonObject;Lnet/minecraft/data/models/model/TextureSlot;Lnet/minecraft/resources/ResourceLocation;)V net/minecraft/data/models/model/ModelTemplate/lambda$createBaseTemplate$2 (Lcom/google/gson/JsonObject;Lnet/minecraft/data/models/model/TextureSlot;Lnet/minecraft/resources/ResourceLocation;)V +MD: net/minecraft/data/models/model/ModelTemplate/m_176459_ (Lcom/google/gson/JsonObject;Lnet/minecraft/resources/ResourceLocation;)V net/minecraft/data/models/model/ModelTemplate/lambda$createBaseTemplate$1 (Lcom/google/gson/JsonObject;Lnet/minecraft/resources/ResourceLocation;)V +MD: net/minecraft/data/models/model/ModelTemplate/m_266131_ (Lnet/minecraft/data/models/model/ModelTemplate$JsonFactory;Lnet/minecraft/resources/ResourceLocation;Ljava/util/Map;)Lcom/google/gson/JsonElement; net/minecraft/data/models/model/ModelTemplate/lambda$create$0 (Lnet/minecraft/data/models/model/ModelTemplate$JsonFactory;Lnet/minecraft/resources/ResourceLocation;Ljava/util/Map;)Lcom/google/gson/JsonElement; +MD: net/minecraft/data/models/model/ModelTemplate/m_266532_ (Lnet/minecraft/resources/ResourceLocation;Ljava/util/Map;)Lcom/google/gson/JsonObject; net/minecraft/data/models/model/ModelTemplate/createBaseTemplate (Lnet/minecraft/resources/ResourceLocation;Ljava/util/Map;)Lcom/google/gson/JsonObject; +MD: net/minecraft/data/models/model/ModelTemplate/m_266561_ (Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/data/models/model/TextureMapping;Ljava/util/function/BiConsumer;Lnet/minecraft/data/models/model/ModelTemplate$JsonFactory;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/data/models/model/ModelTemplate/create (Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/data/models/model/TextureMapping;Ljava/util/function/BiConsumer;Lnet/minecraft/data/models/model/ModelTemplate$JsonFactory;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/data/models/model/ModelTemplate$JsonFactory/m_266264_ (Lnet/minecraft/resources/ResourceLocation;Ljava/util/Map;)Lcom/google/gson/JsonObject; net/minecraft/data/models/model/ModelTemplate$JsonFactory/create (Lnet/minecraft/resources/ResourceLocation;Ljava/util/Map;)Lcom/google/gson/JsonObject; +MD: net/minecraft/data/models/model/ModelTemplates/ ()V net/minecraft/data/models/model/ModelTemplates/ ()V +MD: net/minecraft/data/models/model/ModelTemplates/ ()V net/minecraft/data/models/model/ModelTemplates/ ()V +MD: net/minecraft/data/models/model/ModelTemplates/m_125717_ (I)[Lnet/minecraft/data/models/model/ModelTemplate; net/minecraft/data/models/model/ModelTemplates/lambda$static$1 (I)[Lnet/minecraft/data/models/model/ModelTemplate; +MD: net/minecraft/data/models/model/ModelTemplates/m_125719_ (Ljava/lang/String;Ljava/lang/String;[Lnet/minecraft/data/models/model/TextureSlot;)Lnet/minecraft/data/models/model/ModelTemplate; net/minecraft/data/models/model/ModelTemplates/create (Ljava/lang/String;Ljava/lang/String;[Lnet/minecraft/data/models/model/TextureSlot;)Lnet/minecraft/data/models/model/ModelTemplate; +MD: net/minecraft/data/models/model/ModelTemplates/m_125723_ (Ljava/lang/String;[Lnet/minecraft/data/models/model/TextureSlot;)Lnet/minecraft/data/models/model/ModelTemplate; net/minecraft/data/models/model/ModelTemplates/create (Ljava/lang/String;[Lnet/minecraft/data/models/model/TextureSlot;)Lnet/minecraft/data/models/model/ModelTemplate; +MD: net/minecraft/data/models/model/ModelTemplates/m_125726_ ([Lnet/minecraft/data/models/model/TextureSlot;)Lnet/minecraft/data/models/model/ModelTemplate; net/minecraft/data/models/model/ModelTemplates/create ([Lnet/minecraft/data/models/model/TextureSlot;)Lnet/minecraft/data/models/model/ModelTemplate; +MD: net/minecraft/data/models/model/ModelTemplates/m_125728_ (I)Lnet/minecraft/data/models/model/ModelTemplate; net/minecraft/data/models/model/ModelTemplates/lambda$static$0 (I)Lnet/minecraft/data/models/model/ModelTemplate; +MD: net/minecraft/data/models/model/ModelTemplates/m_125730_ (Ljava/lang/String;[Lnet/minecraft/data/models/model/TextureSlot;)Lnet/minecraft/data/models/model/ModelTemplate; net/minecraft/data/models/model/ModelTemplates/createItem (Ljava/lang/String;[Lnet/minecraft/data/models/model/TextureSlot;)Lnet/minecraft/data/models/model/ModelTemplate; +MD: net/minecraft/data/models/model/TextureMapping/ ()V net/minecraft/data/models/model/TextureMapping/ ()V +MD: net/minecraft/data/models/model/TextureMapping/m_125736_ (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/data/models/model/TextureMapping; net/minecraft/data/models/model/TextureMapping/campfire (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/data/models/model/TextureMapping; +MD: net/minecraft/data/models/model/TextureMapping/m_125738_ (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/data/models/model/TextureMapping; net/minecraft/data/models/model/TextureMapping/layer0 (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/data/models/model/TextureMapping; +MD: net/minecraft/data/models/model/TextureMapping/m_125740_ (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/data/models/model/TextureMapping/getBlockTexture (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/data/models/model/TextureMapping/m_125742_ ()Ljava/util/stream/Stream; net/minecraft/data/models/model/TextureMapping/getForced ()Ljava/util/stream/Stream; +MD: net/minecraft/data/models/model/TextureMapping/m_125743_ (Lnet/minecraft/world/item/Item;)Lnet/minecraft/data/models/model/TextureMapping; net/minecraft/data/models/model/TextureMapping/particleFromItem (Lnet/minecraft/world/item/Item;)Lnet/minecraft/data/models/model/TextureMapping; +MD: net/minecraft/data/models/model/TextureMapping/m_125745_ (Lnet/minecraft/world/item/Item;Ljava/lang/String;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/data/models/model/TextureMapping/getItemTexture (Lnet/minecraft/world/item/Item;Ljava/lang/String;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/data/models/model/TextureMapping/m_125748_ (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/data/models/model/TextureMapping; net/minecraft/data/models/model/TextureMapping/cube (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/data/models/model/TextureMapping; +MD: net/minecraft/data/models/model/TextureMapping/m_125750_ (Lnet/minecraft/world/level/block/Block;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/data/models/model/TextureMapping; net/minecraft/data/models/model/TextureMapping/attachedStem (Lnet/minecraft/world/level/block/Block;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/data/models/model/TextureMapping; +MD: net/minecraft/data/models/model/TextureMapping/m_125753_ (Lnet/minecraft/world/level/block/Block;Ljava/lang/String;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/data/models/model/TextureMapping/getBlockTexture (Lnet/minecraft/world/level/block/Block;Ljava/lang/String;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/data/models/model/TextureMapping/m_125756_ (Lnet/minecraft/data/models/model/TextureSlot;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/data/models/model/TextureMapping/get (Lnet/minecraft/data/models/model/TextureSlot;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/data/models/model/TextureMapping/m_125758_ (Lnet/minecraft/data/models/model/TextureSlot;Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/data/models/model/TextureMapping; net/minecraft/data/models/model/TextureMapping/put (Lnet/minecraft/data/models/model/TextureSlot;Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/data/models/model/TextureMapping; +MD: net/minecraft/data/models/model/TextureMapping/m_125761_ (Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/data/models/model/TextureMapping; net/minecraft/data/models/model/TextureMapping/defaultTexture (Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/data/models/model/TextureMapping; +MD: net/minecraft/data/models/model/TextureMapping/m_125763_ (Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/data/models/model/TextureMapping; net/minecraft/data/models/model/TextureMapping/column (Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/data/models/model/TextureMapping; +MD: net/minecraft/data/models/model/TextureMapping/m_125766_ (Lnet/minecraft/world/item/Item;)Lnet/minecraft/data/models/model/TextureMapping; net/minecraft/data/models/model/TextureMapping/layer0 (Lnet/minecraft/world/item/Item;)Lnet/minecraft/data/models/model/TextureMapping; +MD: net/minecraft/data/models/model/TextureMapping/m_125768_ (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/data/models/model/TextureMapping; net/minecraft/data/models/model/TextureMapping/defaultTexture (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/data/models/model/TextureMapping; +MD: net/minecraft/data/models/model/TextureMapping/m_125770_ (Lnet/minecraft/world/level/block/Block;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/data/models/model/TextureMapping; net/minecraft/data/models/model/TextureMapping/pane (Lnet/minecraft/world/level/block/Block;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/data/models/model/TextureMapping; +MD: net/minecraft/data/models/model/TextureMapping/m_125773_ (Lnet/minecraft/data/models/model/TextureSlot;Lnet/minecraft/data/models/model/TextureSlot;)Lnet/minecraft/data/models/model/TextureMapping; net/minecraft/data/models/model/TextureMapping/copyForced (Lnet/minecraft/data/models/model/TextureSlot;Lnet/minecraft/data/models/model/TextureSlot;)Lnet/minecraft/data/models/model/TextureMapping; +MD: net/minecraft/data/models/model/TextureMapping/m_125776_ (Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/data/models/model/TextureMapping; net/minecraft/data/models/model/TextureMapping/cube (Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/data/models/model/TextureMapping; +MD: net/minecraft/data/models/model/TextureMapping/m_125778_ (Lnet/minecraft/world/item/Item;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/data/models/model/TextureMapping/getItemTexture (Lnet/minecraft/world/item/Item;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/data/models/model/TextureMapping/m_125780_ (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/data/models/model/TextureMapping; net/minecraft/data/models/model/TextureMapping/cross (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/data/models/model/TextureMapping; +MD: net/minecraft/data/models/model/TextureMapping/m_125782_ (Lnet/minecraft/world/level/block/Block;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/data/models/model/TextureMapping; net/minecraft/data/models/model/TextureMapping/craftingTable (Lnet/minecraft/world/level/block/Block;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/data/models/model/TextureMapping; +MD: net/minecraft/data/models/model/TextureMapping/m_125785_ (Lnet/minecraft/data/models/model/TextureSlot;Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/data/models/model/TextureMapping; net/minecraft/data/models/model/TextureMapping/copyAndUpdate (Lnet/minecraft/data/models/model/TextureSlot;Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/data/models/model/TextureMapping; +MD: net/minecraft/data/models/model/TextureMapping/m_125788_ (Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/data/models/model/TextureMapping; net/minecraft/data/models/model/TextureMapping/cross (Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/data/models/model/TextureMapping; +MD: net/minecraft/data/models/model/TextureMapping/m_125790_ (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/data/models/model/TextureMapping; net/minecraft/data/models/model/TextureMapping/plant (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/data/models/model/TextureMapping; +MD: net/minecraft/data/models/model/TextureMapping/m_125792_ (Lnet/minecraft/world/level/block/Block;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/data/models/model/TextureMapping; net/minecraft/data/models/model/TextureMapping/fletchingTable (Lnet/minecraft/world/level/block/Block;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/data/models/model/TextureMapping; +MD: net/minecraft/data/models/model/TextureMapping/m_125795_ (Lnet/minecraft/data/models/model/TextureSlot;Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/data/models/model/TextureMapping; net/minecraft/data/models/model/TextureMapping/singleSlot (Lnet/minecraft/data/models/model/TextureSlot;Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/data/models/model/TextureMapping; +MD: net/minecraft/data/models/model/TextureMapping/m_125798_ (Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/data/models/model/TextureMapping; net/minecraft/data/models/model/TextureMapping/plant (Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/data/models/model/TextureMapping; +MD: net/minecraft/data/models/model/TextureMapping/m_125800_ (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/data/models/model/TextureMapping; net/minecraft/data/models/model/TextureMapping/rail (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/data/models/model/TextureMapping; +MD: net/minecraft/data/models/model/TextureMapping/m_125802_ (Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/data/models/model/TextureMapping; net/minecraft/data/models/model/TextureMapping/rail (Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/data/models/model/TextureMapping; +MD: net/minecraft/data/models/model/TextureMapping/m_125804_ (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/data/models/model/TextureMapping; net/minecraft/data/models/model/TextureMapping/wool (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/data/models/model/TextureMapping; +MD: net/minecraft/data/models/model/TextureMapping/m_125806_ (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/data/models/model/TextureMapping; net/minecraft/data/models/model/TextureMapping/stem (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/data/models/model/TextureMapping; +MD: net/minecraft/data/models/model/TextureMapping/m_125808_ (Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/data/models/model/TextureMapping; net/minecraft/data/models/model/TextureMapping/crop (Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/data/models/model/TextureMapping; +MD: net/minecraft/data/models/model/TextureMapping/m_125810_ (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/data/models/model/TextureMapping; net/minecraft/data/models/model/TextureMapping/pattern (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/data/models/model/TextureMapping; +MD: net/minecraft/data/models/model/TextureMapping/m_125812_ (Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/data/models/model/TextureMapping; net/minecraft/data/models/model/TextureMapping/particle (Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/data/models/model/TextureMapping; +MD: net/minecraft/data/models/model/TextureMapping/m_125814_ (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/data/models/model/TextureMapping; net/minecraft/data/models/model/TextureMapping/fan (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/data/models/model/TextureMapping; +MD: net/minecraft/data/models/model/TextureMapping/m_125816_ (Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/data/models/model/TextureMapping; net/minecraft/data/models/model/TextureMapping/torch (Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/data/models/model/TextureMapping; +MD: net/minecraft/data/models/model/TextureMapping/m_125818_ (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/data/models/model/TextureMapping; net/minecraft/data/models/model/TextureMapping/column (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/data/models/model/TextureMapping; +MD: net/minecraft/data/models/model/TextureMapping/m_125820_ (Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/data/models/model/TextureMapping; net/minecraft/data/models/model/TextureMapping/layer0 (Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/data/models/model/TextureMapping; +MD: net/minecraft/data/models/model/TextureMapping/m_125822_ (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/data/models/model/TextureMapping; net/minecraft/data/models/model/TextureMapping/cubeTop (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/data/models/model/TextureMapping; +MD: net/minecraft/data/models/model/TextureMapping/m_125824_ (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/data/models/model/TextureMapping; net/minecraft/data/models/model/TextureMapping/logColumn (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/data/models/model/TextureMapping; +MD: net/minecraft/data/models/model/TextureMapping/m_125826_ (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/data/models/model/TextureMapping; net/minecraft/data/models/model/TextureMapping/cubeBottomTop (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/data/models/model/TextureMapping; +MD: net/minecraft/data/models/model/TextureMapping/m_125828_ (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/data/models/model/TextureMapping; net/minecraft/data/models/model/TextureMapping/cubeBottomTopWithWall (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/data/models/model/TextureMapping; +MD: net/minecraft/data/models/model/TextureMapping/m_125830_ (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/data/models/model/TextureMapping; net/minecraft/data/models/model/TextureMapping/columnWithWall (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/data/models/model/TextureMapping; +MD: net/minecraft/data/models/model/TextureMapping/m_125832_ (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/data/models/model/TextureMapping; net/minecraft/data/models/model/TextureMapping/door (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/data/models/model/TextureMapping; +MD: net/minecraft/data/models/model/TextureMapping/m_125834_ (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/data/models/model/TextureMapping; net/minecraft/data/models/model/TextureMapping/particle (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/data/models/model/TextureMapping; +MD: net/minecraft/data/models/model/TextureMapping/m_125836_ (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/data/models/model/TextureMapping; net/minecraft/data/models/model/TextureMapping/fire0 (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/data/models/model/TextureMapping; +MD: net/minecraft/data/models/model/TextureMapping/m_125838_ (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/data/models/model/TextureMapping; net/minecraft/data/models/model/TextureMapping/fire1 (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/data/models/model/TextureMapping; +MD: net/minecraft/data/models/model/TextureMapping/m_125840_ (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/data/models/model/TextureMapping; net/minecraft/data/models/model/TextureMapping/lantern (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/data/models/model/TextureMapping; +MD: net/minecraft/data/models/model/TextureMapping/m_125842_ (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/data/models/model/TextureMapping; net/minecraft/data/models/model/TextureMapping/torch (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/data/models/model/TextureMapping; +MD: net/minecraft/data/models/model/TextureMapping/m_125844_ (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/data/models/model/TextureMapping; net/minecraft/data/models/model/TextureMapping/commandBlock (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/data/models/model/TextureMapping; +MD: net/minecraft/data/models/model/TextureMapping/m_125846_ (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/data/models/model/TextureMapping; net/minecraft/data/models/model/TextureMapping/orientableCube (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/data/models/model/TextureMapping; +MD: net/minecraft/data/models/model/TextureMapping/m_125848_ (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/data/models/model/TextureMapping; net/minecraft/data/models/model/TextureMapping/orientableCubeOnlyTop (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/data/models/model/TextureMapping; +MD: net/minecraft/data/models/model/TextureMapping/m_125850_ (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/data/models/model/TextureMapping; net/minecraft/data/models/model/TextureMapping/orientableCubeSameEnds (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/data/models/model/TextureMapping; +MD: net/minecraft/data/models/model/TextureMapping/m_125852_ (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/data/models/model/TextureMapping; net/minecraft/data/models/model/TextureMapping/top (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/data/models/model/TextureMapping; +MD: net/minecraft/data/models/model/TextureMapping/m_176477_ (Lnet/minecraft/data/models/model/TextureSlot;Lnet/minecraft/data/models/model/TextureSlot;)Lnet/minecraft/data/models/model/TextureMapping; net/minecraft/data/models/model/TextureMapping/copySlot (Lnet/minecraft/data/models/model/TextureSlot;Lnet/minecraft/data/models/model/TextureSlot;)Lnet/minecraft/data/models/model/TextureMapping; +MD: net/minecraft/data/models/model/TextureMapping/m_176480_ (Lnet/minecraft/data/models/model/TextureSlot;Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/data/models/model/TextureMapping; net/minecraft/data/models/model/TextureMapping/putForced (Lnet/minecraft/data/models/model/TextureSlot;Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/data/models/model/TextureMapping; +MD: net/minecraft/data/models/model/TextureMapping/m_176483_ (Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/data/models/model/TextureMapping; net/minecraft/data/models/model/TextureMapping/door (Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/data/models/model/TextureMapping; +MD: net/minecraft/data/models/model/TextureMapping/m_176486_ (Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/data/models/model/TextureMapping; net/minecraft/data/models/model/TextureMapping/wool (Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/data/models/model/TextureMapping; +MD: net/minecraft/data/models/model/TextureMapping/m_176488_ (Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/data/models/model/TextureMapping; net/minecraft/data/models/model/TextureMapping/cauldron (Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/data/models/model/TextureMapping; +MD: net/minecraft/data/models/model/TextureMapping/m_181476_ (Lnet/minecraft/world/level/block/Block;Z)Lnet/minecraft/data/models/model/TextureMapping; net/minecraft/data/models/model/TextureMapping/candleCake (Lnet/minecraft/world/level/block/Block;Z)Lnet/minecraft/data/models/model/TextureMapping; +MD: net/minecraft/data/models/model/TextureMapping/m_236350_ (Z)Lnet/minecraft/data/models/model/TextureMapping; net/minecraft/data/models/model/TextureMapping/sculkShrieker (Z)Lnet/minecraft/data/models/model/TextureMapping; +MD: net/minecraft/data/models/model/TextureMapping/m_245168_ (Ljava/lang/String;Ljava/lang/String;)Ljava/lang/String; net/minecraft/data/models/model/TextureMapping/lambda$getBlockTexture$0 (Ljava/lang/String;Ljava/lang/String;)Ljava/lang/String; +MD: net/minecraft/data/models/model/TextureMapping/m_245971_ (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/data/models/model/TextureMapping; net/minecraft/data/models/model/TextureMapping/fence (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/data/models/model/TextureMapping; +MD: net/minecraft/data/models/model/TextureMapping/m_246624_ (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/data/models/model/TextureMapping; net/minecraft/data/models/model/TextureMapping/customParticle (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/data/models/model/TextureMapping; +MD: net/minecraft/data/models/model/TextureMapping/m_247647_ (Ljava/lang/String;Ljava/lang/String;)Ljava/lang/String; net/minecraft/data/models/model/TextureMapping/lambda$getItemTexture$1 (Ljava/lang/String;Ljava/lang/String;)Ljava/lang/String; +MD: net/minecraft/data/models/model/TextureMapping/m_266401_ (Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/data/models/model/TextureMapping; net/minecraft/data/models/model/TextureMapping/layered (Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/data/models/model/TextureMapping; +MD: net/minecraft/data/models/model/TextureMapping/m_267703_ (Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/data/models/model/TextureMapping; net/minecraft/data/models/model/TextureMapping/layered (Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/data/models/model/TextureMapping; +MD: net/minecraft/data/models/model/TextureMapping/m_272143_ (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/data/models/model/TextureMapping; net/minecraft/data/models/model/TextureMapping/flowerbed (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/data/models/model/TextureMapping; +MD: net/minecraft/data/models/model/TextureMapping/m_278163_ (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/data/models/model/TextureMapping; net/minecraft/data/models/model/TextureMapping/pottedAzalea (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/data/models/model/TextureMapping; +MD: net/minecraft/data/models/model/TextureMapping/m_278174_ (Ljava/lang/String;)Lnet/minecraft/data/models/model/TextureMapping; net/minecraft/data/models/model/TextureMapping/snifferEgg (Ljava/lang/String;)Lnet/minecraft/data/models/model/TextureMapping; +MD: net/minecraft/data/models/model/TextureSlot/ ()V net/minecraft/data/models/model/TextureSlot/ ()V +MD: net/minecraft/data/models/model/TextureSlot/ (Ljava/lang/String;Lnet/minecraft/data/models/model/TextureSlot;)V net/minecraft/data/models/model/TextureSlot/ (Ljava/lang/String;Lnet/minecraft/data/models/model/TextureSlot;)V +MD: net/minecraft/data/models/model/TextureSlot/m_125897_ ()Ljava/lang/String; net/minecraft/data/models/model/TextureSlot/getId ()Ljava/lang/String; +MD: net/minecraft/data/models/model/TextureSlot/m_125898_ (Ljava/lang/String;)Lnet/minecraft/data/models/model/TextureSlot; net/minecraft/data/models/model/TextureSlot/create (Ljava/lang/String;)Lnet/minecraft/data/models/model/TextureSlot; +MD: net/minecraft/data/models/model/TextureSlot/m_125900_ (Ljava/lang/String;Lnet/minecraft/data/models/model/TextureSlot;)Lnet/minecraft/data/models/model/TextureSlot; net/minecraft/data/models/model/TextureSlot/create (Ljava/lang/String;Lnet/minecraft/data/models/model/TextureSlot;)Lnet/minecraft/data/models/model/TextureSlot; +MD: net/minecraft/data/models/model/TextureSlot/m_125903_ ()Lnet/minecraft/data/models/model/TextureSlot; net/minecraft/data/models/model/TextureSlot/getParent ()Lnet/minecraft/data/models/model/TextureSlot; +MD: net/minecraft/data/models/model/TextureSlot/toString ()Ljava/lang/String; net/minecraft/data/models/model/TextureSlot/toString ()Ljava/lang/String; +MD: net/minecraft/data/models/model/TexturedModel/ ()V net/minecraft/data/models/model/TexturedModel/ ()V +MD: net/minecraft/data/models/model/TexturedModel/ (Lnet/minecraft/data/models/model/TextureMapping;Lnet/minecraft/data/models/model/ModelTemplate;)V net/minecraft/data/models/model/TexturedModel/ (Lnet/minecraft/data/models/model/TextureMapping;Lnet/minecraft/data/models/model/ModelTemplate;)V +MD: net/minecraft/data/models/model/TexturedModel/m_125932_ ()Lnet/minecraft/data/models/model/ModelTemplate; net/minecraft/data/models/model/TexturedModel/getTemplate ()Lnet/minecraft/data/models/model/ModelTemplate; +MD: net/minecraft/data/models/model/TexturedModel/m_125933_ (Lnet/minecraft/world/level/block/Block;Ljava/lang/String;Ljava/util/function/BiConsumer;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/data/models/model/TexturedModel/createWithSuffix (Lnet/minecraft/world/level/block/Block;Ljava/lang/String;Ljava/util/function/BiConsumer;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/data/models/model/TexturedModel/m_125937_ (Lnet/minecraft/world/level/block/Block;Ljava/util/function/BiConsumer;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/data/models/model/TexturedModel/create (Lnet/minecraft/world/level/block/Block;Ljava/util/function/BiConsumer;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/data/models/model/TexturedModel/m_125940_ (Ljava/util/function/Consumer;)Lnet/minecraft/data/models/model/TexturedModel; net/minecraft/data/models/model/TexturedModel/updateTextures (Ljava/util/function/Consumer;)Lnet/minecraft/data/models/model/TexturedModel; +MD: net/minecraft/data/models/model/TexturedModel/m_125942_ (Ljava/util/function/Function;Lnet/minecraft/data/models/model/ModelTemplate;)Lnet/minecraft/data/models/model/TexturedModel$Provider; net/minecraft/data/models/model/TexturedModel/createDefault (Ljava/util/function/Function;Lnet/minecraft/data/models/model/ModelTemplate;)Lnet/minecraft/data/models/model/TexturedModel$Provider; +MD: net/minecraft/data/models/model/TexturedModel/m_125945_ (Ljava/util/function/Function;Lnet/minecraft/data/models/model/ModelTemplate;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/data/models/model/TexturedModel; net/minecraft/data/models/model/TexturedModel/lambda$createDefault$0 (Ljava/util/function/Function;Lnet/minecraft/data/models/model/ModelTemplate;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/data/models/model/TexturedModel; +MD: net/minecraft/data/models/model/TexturedModel/m_125949_ (Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/data/models/model/TexturedModel; net/minecraft/data/models/model/TexturedModel/createAllSame (Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/data/models/model/TexturedModel; +MD: net/minecraft/data/models/model/TexturedModel/m_125951_ ()Lnet/minecraft/data/models/model/TextureMapping; net/minecraft/data/models/model/TexturedModel/getMapping ()Lnet/minecraft/data/models/model/TextureMapping; +MD: net/minecraft/data/models/model/TexturedModel$Provider/m_125952_ (Lnet/minecraft/world/level/block/Block;Ljava/lang/String;Ljava/util/function/BiConsumer;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/data/models/model/TexturedModel$Provider/createWithSuffix (Lnet/minecraft/world/level/block/Block;Ljava/lang/String;Ljava/util/function/BiConsumer;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/data/models/model/TexturedModel$Provider/m_125956_ (Lnet/minecraft/world/level/block/Block;Ljava/util/function/BiConsumer;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/data/models/model/TexturedModel$Provider/create (Lnet/minecraft/world/level/block/Block;Ljava/util/function/BiConsumer;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/data/models/model/TexturedModel$Provider/m_125959_ (Ljava/util/function/Consumer;)Lnet/minecraft/data/models/model/TexturedModel$Provider; net/minecraft/data/models/model/TexturedModel$Provider/updateTexture (Ljava/util/function/Consumer;)Lnet/minecraft/data/models/model/TexturedModel$Provider; +MD: net/minecraft/data/models/model/TexturedModel$Provider/m_125961_ (Ljava/util/function/Consumer;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/data/models/model/TexturedModel; net/minecraft/data/models/model/TexturedModel$Provider/lambda$updateTexture$0 (Ljava/util/function/Consumer;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/data/models/model/TexturedModel; +MD: net/minecraft/data/models/model/TexturedModel$Provider/m_125964_ (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/data/models/model/TexturedModel; net/minecraft/data/models/model/TexturedModel$Provider/get (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/data/models/model/TexturedModel; +MD: net/minecraft/data/recipes/CraftingRecipeBuilder/ ()V net/minecraft/data/recipes/CraftingRecipeBuilder/ ()V +MD: net/minecraft/data/recipes/CraftingRecipeBuilder/m_245179_ (Lnet/minecraft/data/recipes/RecipeCategory;)Lnet/minecraft/world/item/crafting/CraftingBookCategory; net/minecraft/data/recipes/CraftingRecipeBuilder/determineBookCategory (Lnet/minecraft/data/recipes/RecipeCategory;)Lnet/minecraft/world/item/crafting/CraftingBookCategory; +MD: net/minecraft/data/recipes/CraftingRecipeBuilder$1/ ()V net/minecraft/data/recipes/CraftingRecipeBuilder$1/ ()V +MD: net/minecraft/data/recipes/CraftingRecipeBuilder$CraftingResult/ (Lnet/minecraft/world/item/crafting/CraftingBookCategory;)V net/minecraft/data/recipes/CraftingRecipeBuilder$CraftingResult/ (Lnet/minecraft/world/item/crafting/CraftingBookCategory;)V +MD: net/minecraft/data/recipes/CraftingRecipeBuilder$CraftingResult/m_7917_ (Lcom/google/gson/JsonObject;)V net/minecraft/data/recipes/CraftingRecipeBuilder$CraftingResult/serializeRecipeData (Lcom/google/gson/JsonObject;)V +MD: net/minecraft/data/recipes/FinishedRecipe/m_125966_ ()Lcom/google/gson/JsonObject; net/minecraft/data/recipes/FinishedRecipe/serializeRecipe ()Lcom/google/gson/JsonObject; +MD: net/minecraft/data/recipes/FinishedRecipe/m_5860_ ()Lcom/google/gson/JsonObject; net/minecraft/data/recipes/FinishedRecipe/serializeAdvancement ()Lcom/google/gson/JsonObject; +MD: net/minecraft/data/recipes/FinishedRecipe/m_6445_ ()Lnet/minecraft/resources/ResourceLocation; net/minecraft/data/recipes/FinishedRecipe/getId ()Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/data/recipes/FinishedRecipe/m_6448_ ()Lnet/minecraft/resources/ResourceLocation; net/minecraft/data/recipes/FinishedRecipe/getAdvancementId ()Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/data/recipes/FinishedRecipe/m_6637_ ()Lnet/minecraft/world/item/crafting/RecipeSerializer; net/minecraft/data/recipes/FinishedRecipe/getType ()Lnet/minecraft/world/item/crafting/RecipeSerializer; +MD: net/minecraft/data/recipes/FinishedRecipe/m_7917_ (Lcom/google/gson/JsonObject;)V net/minecraft/data/recipes/FinishedRecipe/serializeRecipeData (Lcom/google/gson/JsonObject;)V +MD: net/minecraft/data/recipes/RecipeBuilder/ ()V net/minecraft/data/recipes/RecipeBuilder/ ()V +MD: net/minecraft/data/recipes/RecipeBuilder/m_126132_ (Ljava/lang/String;Lnet/minecraft/advancements/CriterionTriggerInstance;)Lnet/minecraft/data/recipes/RecipeBuilder; net/minecraft/data/recipes/RecipeBuilder/unlockedBy (Ljava/lang/String;Lnet/minecraft/advancements/CriterionTriggerInstance;)Lnet/minecraft/data/recipes/RecipeBuilder; +MD: net/minecraft/data/recipes/RecipeBuilder/m_126140_ (Ljava/util/function/Consumer;Lnet/minecraft/resources/ResourceLocation;)V net/minecraft/data/recipes/RecipeBuilder/save (Ljava/util/function/Consumer;Lnet/minecraft/resources/ResourceLocation;)V +MD: net/minecraft/data/recipes/RecipeBuilder/m_126145_ (Ljava/lang/String;)Lnet/minecraft/data/recipes/RecipeBuilder; net/minecraft/data/recipes/RecipeBuilder/group (Ljava/lang/String;)Lnet/minecraft/data/recipes/RecipeBuilder; +MD: net/minecraft/data/recipes/RecipeBuilder/m_142372_ ()Lnet/minecraft/world/item/Item; net/minecraft/data/recipes/RecipeBuilder/getResult ()Lnet/minecraft/world/item/Item; +MD: net/minecraft/data/recipes/RecipeBuilder/m_176493_ (Lnet/minecraft/world/level/ItemLike;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/data/recipes/RecipeBuilder/getDefaultRecipeId (Lnet/minecraft/world/level/ItemLike;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/data/recipes/RecipeBuilder/m_176498_ (Ljava/util/function/Consumer;)V net/minecraft/data/recipes/RecipeBuilder/save (Ljava/util/function/Consumer;)V +MD: net/minecraft/data/recipes/RecipeBuilder/m_176500_ (Ljava/util/function/Consumer;Ljava/lang/String;)V net/minecraft/data/recipes/RecipeBuilder/save (Ljava/util/function/Consumer;Ljava/lang/String;)V +MD: net/minecraft/data/recipes/RecipeCategory/ ()V net/minecraft/data/recipes/RecipeCategory/ ()V +MD: net/minecraft/data/recipes/RecipeCategory/ (Ljava/lang/String;ILjava/lang/String;)V net/minecraft/data/recipes/RecipeCategory/ (Ljava/lang/String;ILjava/lang/String;)V +MD: net/minecraft/data/recipes/RecipeCategory/m_245241_ ()[Lnet/minecraft/data/recipes/RecipeCategory; net/minecraft/data/recipes/RecipeCategory/$values ()[Lnet/minecraft/data/recipes/RecipeCategory; +MD: net/minecraft/data/recipes/RecipeCategory/m_247710_ ()Ljava/lang/String; net/minecraft/data/recipes/RecipeCategory/getFolderName ()Ljava/lang/String; +MD: net/minecraft/data/recipes/RecipeCategory/valueOf (Ljava/lang/String;)Lnet/minecraft/data/recipes/RecipeCategory; net/minecraft/data/recipes/RecipeCategory/valueOf (Ljava/lang/String;)Lnet/minecraft/data/recipes/RecipeCategory; +MD: net/minecraft/data/recipes/RecipeCategory/values ()[Lnet/minecraft/data/recipes/RecipeCategory; net/minecraft/data/recipes/RecipeCategory/values ()[Lnet/minecraft/data/recipes/RecipeCategory; +MD: net/minecraft/data/recipes/RecipeProvider/ ()V net/minecraft/data/recipes/RecipeProvider/ ()V +MD: net/minecraft/data/recipes/RecipeProvider/ (Lnet/minecraft/data/PackOutput;)V net/minecraft/data/recipes/RecipeProvider/ (Lnet/minecraft/data/PackOutput;)V +MD: net/minecraft/data/recipes/RecipeProvider/m_125977_ (Lnet/minecraft/world/level/ItemLike;)Lnet/minecraft/advancements/critereon/InventoryChangeTrigger$TriggerInstance; net/minecraft/data/recipes/RecipeProvider/has (Lnet/minecraft/world/level/ItemLike;)Lnet/minecraft/advancements/critereon/InventoryChangeTrigger$TriggerInstance; +MD: net/minecraft/data/recipes/RecipeProvider/m_125979_ (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/advancements/critereon/EnterBlockTrigger$TriggerInstance; net/minecraft/data/recipes/RecipeProvider/insideOf (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/advancements/critereon/EnterBlockTrigger$TriggerInstance; +MD: net/minecraft/data/recipes/RecipeProvider/m_126002_ (Ljava/util/function/Consumer;Lnet/minecraft/world/level/ItemLike;Lnet/minecraft/world/level/ItemLike;)V net/minecraft/data/recipes/RecipeProvider/woodFromLogs (Ljava/util/function/Consumer;Lnet/minecraft/world/level/ItemLike;Lnet/minecraft/world/level/ItemLike;)V +MD: net/minecraft/data/recipes/RecipeProvider/m_126006_ (Ljava/util/function/Consumer;Ljava/lang/String;Lnet/minecraft/world/item/crafting/RecipeSerializer;I)V net/minecraft/data/recipes/RecipeProvider/cookRecipes (Ljava/util/function/Consumer;Ljava/lang/String;Lnet/minecraft/world/item/crafting/RecipeSerializer;I)V +MD: net/minecraft/data/recipes/RecipeProvider/m_126011_ ([Lnet/minecraft/advancements/critereon/ItemPredicate;)Lnet/minecraft/advancements/critereon/InventoryChangeTrigger$TriggerInstance; net/minecraft/data/recipes/RecipeProvider/inventoryTrigger ([Lnet/minecraft/advancements/critereon/ItemPredicate;)Lnet/minecraft/advancements/critereon/InventoryChangeTrigger$TriggerInstance; +MD: net/minecraft/data/recipes/RecipeProvider/m_126021_ (Ljava/util/function/Consumer;Lnet/minecraft/world/level/ItemLike;Lnet/minecraft/world/level/ItemLike;)V net/minecraft/data/recipes/RecipeProvider/woodenBoat (Ljava/util/function/Consumer;Lnet/minecraft/world/level/ItemLike;Lnet/minecraft/world/level/ItemLike;)V +MD: net/minecraft/data/recipes/RecipeProvider/m_126073_ (Ljava/util/function/Consumer;Lnet/minecraft/world/level/ItemLike;Lnet/minecraft/world/level/ItemLike;)V net/minecraft/data/recipes/RecipeProvider/bedFromPlanksAndWool (Ljava/util/function/Consumer;Lnet/minecraft/world/level/ItemLike;Lnet/minecraft/world/level/ItemLike;)V +MD: net/minecraft/data/recipes/RecipeProvider/m_126081_ (Ljava/util/function/Consumer;Lnet/minecraft/world/level/ItemLike;Lnet/minecraft/world/level/ItemLike;)V net/minecraft/data/recipes/RecipeProvider/banner (Ljava/util/function/Consumer;Lnet/minecraft/world/level/ItemLike;Lnet/minecraft/world/level/ItemLike;)V +MD: net/minecraft/data/recipes/RecipeProvider/m_126085_ (Ljava/util/function/Consumer;Lnet/minecraft/world/level/ItemLike;Lnet/minecraft/world/level/ItemLike;)V net/minecraft/data/recipes/RecipeProvider/stainedGlassFromGlassAndDye (Ljava/util/function/Consumer;Lnet/minecraft/world/level/ItemLike;Lnet/minecraft/world/level/ItemLike;)V +MD: net/minecraft/data/recipes/RecipeProvider/m_126089_ (Ljava/util/function/Consumer;Lnet/minecraft/world/level/ItemLike;Lnet/minecraft/world/level/ItemLike;)V net/minecraft/data/recipes/RecipeProvider/stainedGlassPaneFromStainedGlass (Ljava/util/function/Consumer;Lnet/minecraft/world/level/ItemLike;Lnet/minecraft/world/level/ItemLike;)V +MD: net/minecraft/data/recipes/RecipeProvider/m_126093_ (Ljava/util/function/Consumer;Lnet/minecraft/world/level/ItemLike;Lnet/minecraft/world/level/ItemLike;)V net/minecraft/data/recipes/RecipeProvider/stainedGlassPaneFromGlassPaneAndDye (Ljava/util/function/Consumer;Lnet/minecraft/world/level/ItemLike;Lnet/minecraft/world/level/ItemLike;)V +MD: net/minecraft/data/recipes/RecipeProvider/m_126097_ (Ljava/util/function/Consumer;Lnet/minecraft/world/level/ItemLike;Lnet/minecraft/world/level/ItemLike;)V net/minecraft/data/recipes/RecipeProvider/coloredTerracottaFromTerracottaAndDye (Ljava/util/function/Consumer;Lnet/minecraft/world/level/ItemLike;Lnet/minecraft/world/level/ItemLike;)V +MD: net/minecraft/data/recipes/RecipeProvider/m_126101_ (Ljava/util/function/Consumer;Lnet/minecraft/world/level/ItemLike;Lnet/minecraft/world/level/ItemLike;)V net/minecraft/data/recipes/RecipeProvider/concretePowder (Ljava/util/function/Consumer;Lnet/minecraft/world/level/ItemLike;Lnet/minecraft/world/level/ItemLike;)V +MD: net/minecraft/data/recipes/RecipeProvider/m_176517_ (Lnet/minecraft/world/level/ItemLike;Lnet/minecraft/world/level/ItemLike;)Ljava/lang/String; net/minecraft/data/recipes/RecipeProvider/getConversionRecipeName (Lnet/minecraft/world/level/ItemLike;Lnet/minecraft/world/level/ItemLike;)Ljava/lang/String; +MD: net/minecraft/data/recipes/RecipeProvider/m_176520_ (Lnet/minecraft/advancements/critereon/MinMaxBounds$Ints;Lnet/minecraft/world/level/ItemLike;)Lnet/minecraft/advancements/critereon/InventoryChangeTrigger$TriggerInstance; net/minecraft/data/recipes/RecipeProvider/has (Lnet/minecraft/advancements/critereon/MinMaxBounds$Ints;Lnet/minecraft/world/level/ItemLike;)Lnet/minecraft/advancements/critereon/InventoryChangeTrigger$TriggerInstance; +MD: net/minecraft/data/recipes/RecipeProvider/m_176523_ (Lnet/minecraft/data/BlockFamily;Lnet/minecraft/data/BlockFamily$Variant;)Lnet/minecraft/world/level/block/Block; net/minecraft/data/recipes/RecipeProvider/getBaseBlock (Lnet/minecraft/data/BlockFamily;Lnet/minecraft/data/BlockFamily$Variant;)Lnet/minecraft/world/level/block/Block; +MD: net/minecraft/data/recipes/RecipeProvider/m_176526_ (Lnet/minecraft/data/BlockFamily;Ljava/util/function/Consumer;Lnet/minecraft/data/BlockFamily$Variant;Lnet/minecraft/world/level/block/Block;)V net/minecraft/data/recipes/RecipeProvider/lambda$generateRecipes$8 (Lnet/minecraft/data/BlockFamily;Ljava/util/function/Consumer;Lnet/minecraft/data/BlockFamily$Variant;Lnet/minecraft/world/level/block/Block;)V +MD: net/minecraft/data/recipes/RecipeProvider/m_176542_ (Ljava/util/function/Consumer;Lnet/minecraft/world/level/ItemLike;Lnet/minecraft/world/level/ItemLike;)V net/minecraft/data/recipes/RecipeProvider/candle (Ljava/util/function/Consumer;Lnet/minecraft/world/level/ItemLike;Lnet/minecraft/world/level/ItemLike;)V +MD: net/minecraft/data/recipes/RecipeProvider/m_176551_ (Ljava/util/function/Consumer;Lnet/minecraft/world/level/ItemLike;Lnet/minecraft/world/level/ItemLike;Ljava/lang/String;)V net/minecraft/data/recipes/RecipeProvider/oneToOneConversionRecipe (Ljava/util/function/Consumer;Lnet/minecraft/world/level/ItemLike;Lnet/minecraft/world/level/ItemLike;Ljava/lang/String;)V +MD: net/minecraft/data/recipes/RecipeProvider/m_176556_ (Ljava/util/function/Consumer;Lnet/minecraft/world/level/ItemLike;Lnet/minecraft/world/level/ItemLike;Ljava/lang/String;I)V net/minecraft/data/recipes/RecipeProvider/oneToOneConversionRecipe (Ljava/util/function/Consumer;Lnet/minecraft/world/level/ItemLike;Lnet/minecraft/world/level/ItemLike;Ljava/lang/String;I)V +MD: net/minecraft/data/recipes/RecipeProvider/m_176580_ (Ljava/util/function/Consumer;Lnet/minecraft/data/BlockFamily;)V net/minecraft/data/recipes/RecipeProvider/generateRecipes (Ljava/util/function/Consumer;Lnet/minecraft/data/BlockFamily;)V +MD: net/minecraft/data/recipes/RecipeProvider/m_176598_ (Lnet/minecraft/data/recipes/RecipeBuilder;Lnet/minecraft/data/BlockFamily$Variant;Ljava/lang/String;)V net/minecraft/data/recipes/RecipeProvider/lambda$generateRecipes$6 (Lnet/minecraft/data/recipes/RecipeBuilder;Lnet/minecraft/data/BlockFamily$Variant;Ljava/lang/String;)V +MD: net/minecraft/data/recipes/RecipeProvider/m_176602_ (Lnet/minecraft/world/level/ItemLike;)Ljava/lang/String; net/minecraft/data/recipes/RecipeProvider/getHasName (Lnet/minecraft/world/level/ItemLike;)Ljava/lang/String; +MD: net/minecraft/data/recipes/RecipeProvider/m_176610_ (Ljava/util/function/Consumer;)V net/minecraft/data/recipes/RecipeProvider/waxRecipes (Ljava/util/function/Consumer;)V +MD: net/minecraft/data/recipes/RecipeProvider/m_176622_ (Ljava/util/function/Consumer;Lnet/minecraft/data/BlockFamily;)V net/minecraft/data/recipes/RecipeProvider/lambda$generateForEnabledBlockFamilies$3 (Ljava/util/function/Consumer;Lnet/minecraft/data/BlockFamily;)V +MD: net/minecraft/data/recipes/RecipeProvider/m_176632_ (Lnet/minecraft/world/level/ItemLike;)Ljava/lang/String; net/minecraft/data/recipes/RecipeProvider/getItemName (Lnet/minecraft/world/level/ItemLike;)Ljava/lang/String; +MD: net/minecraft/data/recipes/RecipeProvider/m_176637_ (Lnet/minecraft/world/level/ItemLike;Lnet/minecraft/world/level/ItemLike;)Lnet/minecraft/data/recipes/RecipeBuilder; net/minecraft/data/recipes/RecipeProvider/lambda$static$22 (Lnet/minecraft/world/level/ItemLike;Lnet/minecraft/world/level/ItemLike;)Lnet/minecraft/data/recipes/RecipeBuilder; +MD: net/minecraft/data/recipes/RecipeProvider/m_176644_ (Lnet/minecraft/world/level/ItemLike;)Ljava/lang/String; net/minecraft/data/recipes/RecipeProvider/getSimpleRecipeName (Lnet/minecraft/world/level/ItemLike;)Ljava/lang/String; +MD: net/minecraft/data/recipes/RecipeProvider/m_176656_ (Lnet/minecraft/world/level/ItemLike;)Ljava/lang/String; net/minecraft/data/recipes/RecipeProvider/getSmeltingRecipeName (Lnet/minecraft/world/level/ItemLike;)Ljava/lang/String; +MD: net/minecraft/data/recipes/RecipeProvider/m_176658_ (Lnet/minecraft/world/level/ItemLike;Lnet/minecraft/world/item/crafting/Ingredient;)Lnet/minecraft/data/recipes/RecipeBuilder; net/minecraft/data/recipes/RecipeProvider/buttonBuilder (Lnet/minecraft/world/level/ItemLike;Lnet/minecraft/world/item/crafting/Ingredient;)Lnet/minecraft/data/recipes/RecipeBuilder; +MD: net/minecraft/data/recipes/RecipeProvider/m_176668_ (Lnet/minecraft/world/level/ItemLike;)Ljava/lang/String; net/minecraft/data/recipes/RecipeProvider/getBlastingRecipeName (Lnet/minecraft/world/level/ItemLike;)Ljava/lang/String; +MD: net/minecraft/data/recipes/RecipeProvider/m_176670_ (Lnet/minecraft/world/level/ItemLike;Lnet/minecraft/world/item/crafting/Ingredient;)Lnet/minecraft/data/recipes/RecipeBuilder; net/minecraft/data/recipes/RecipeProvider/doorBuilder (Lnet/minecraft/world/level/ItemLike;Lnet/minecraft/world/item/crafting/Ingredient;)Lnet/minecraft/data/recipes/RecipeBuilder; +MD: net/minecraft/data/recipes/RecipeProvider/m_176673_ (Lnet/minecraft/world/level/ItemLike;Lnet/minecraft/world/level/ItemLike;)Lnet/minecraft/data/recipes/RecipeBuilder; net/minecraft/data/recipes/RecipeProvider/lambda$static$19 (Lnet/minecraft/world/level/ItemLike;Lnet/minecraft/world/level/ItemLike;)Lnet/minecraft/data/recipes/RecipeBuilder; +MD: net/minecraft/data/recipes/RecipeProvider/m_176676_ (Lnet/minecraft/world/level/ItemLike;)Ljava/lang/String; net/minecraft/data/recipes/RecipeProvider/lambda$generateRecipes$7 (Lnet/minecraft/world/level/ItemLike;)Ljava/lang/String; +MD: net/minecraft/data/recipes/RecipeProvider/m_176678_ (Lnet/minecraft/world/level/ItemLike;Lnet/minecraft/world/item/crafting/Ingredient;)Lnet/minecraft/data/recipes/RecipeBuilder; net/minecraft/data/recipes/RecipeProvider/fenceBuilder (Lnet/minecraft/world/level/ItemLike;Lnet/minecraft/world/item/crafting/Ingredient;)Lnet/minecraft/data/recipes/RecipeBuilder; +MD: net/minecraft/data/recipes/RecipeProvider/m_176684_ (Lnet/minecraft/world/level/ItemLike;Lnet/minecraft/world/item/crafting/Ingredient;)Lnet/minecraft/data/recipes/RecipeBuilder; net/minecraft/data/recipes/RecipeProvider/fenceGateBuilder (Lnet/minecraft/world/level/ItemLike;Lnet/minecraft/world/item/crafting/Ingredient;)Lnet/minecraft/data/recipes/RecipeBuilder; +MD: net/minecraft/data/recipes/RecipeProvider/m_176687_ (Lnet/minecraft/world/level/ItemLike;Lnet/minecraft/world/level/ItemLike;)Lnet/minecraft/data/recipes/RecipeBuilder; net/minecraft/data/recipes/RecipeProvider/lambda$static$17 (Lnet/minecraft/world/level/ItemLike;Lnet/minecraft/world/level/ItemLike;)Lnet/minecraft/data/recipes/RecipeBuilder; +MD: net/minecraft/data/recipes/RecipeProvider/m_176690_ (Ljava/util/function/Consumer;Lnet/minecraft/world/level/ItemLike;Lnet/minecraft/world/level/ItemLike;)V net/minecraft/data/recipes/RecipeProvider/pressurePlate (Ljava/util/function/Consumer;Lnet/minecraft/world/level/ItemLike;Lnet/minecraft/world/level/ItemLike;)V +MD: net/minecraft/data/recipes/RecipeProvider/m_176697_ (Lnet/minecraft/world/level/ItemLike;Lnet/minecraft/world/level/ItemLike;)Lnet/minecraft/data/recipes/RecipeBuilder; net/minecraft/data/recipes/RecipeProvider/lambda$static$15 (Lnet/minecraft/world/level/ItemLike;Lnet/minecraft/world/level/ItemLike;)Lnet/minecraft/data/recipes/RecipeBuilder; +MD: net/minecraft/data/recipes/RecipeProvider/m_176707_ (Lnet/minecraft/world/level/ItemLike;Lnet/minecraft/world/level/ItemLike;)Lnet/minecraft/data/recipes/RecipeBuilder; net/minecraft/data/recipes/RecipeProvider/lambda$static$13 (Lnet/minecraft/world/level/ItemLike;Lnet/minecraft/world/level/ItemLike;)Lnet/minecraft/data/recipes/RecipeBuilder; +MD: net/minecraft/data/recipes/RecipeProvider/m_176710_ (Lnet/minecraft/world/level/ItemLike;Lnet/minecraft/world/item/crafting/Ingredient;)Lnet/minecraft/data/recipes/RecipeBuilder; net/minecraft/data/recipes/RecipeProvider/stairBuilder (Lnet/minecraft/world/level/ItemLike;Lnet/minecraft/world/item/crafting/Ingredient;)Lnet/minecraft/data/recipes/RecipeBuilder; +MD: net/minecraft/data/recipes/RecipeProvider/m_176713_ (Lnet/minecraft/world/level/ItemLike;Lnet/minecraft/world/level/ItemLike;)Lnet/minecraft/data/recipes/RecipeBuilder; net/minecraft/data/recipes/RecipeProvider/lambda$static$12 (Lnet/minecraft/world/level/ItemLike;Lnet/minecraft/world/level/ItemLike;)Lnet/minecraft/data/recipes/RecipeBuilder; +MD: net/minecraft/data/recipes/RecipeProvider/m_176716_ (Ljava/util/function/Consumer;Lnet/minecraft/world/level/ItemLike;Lnet/minecraft/world/level/ItemLike;)V net/minecraft/data/recipes/RecipeProvider/carpet (Ljava/util/function/Consumer;Lnet/minecraft/world/level/ItemLike;Lnet/minecraft/world/level/ItemLike;)V +MD: net/minecraft/data/recipes/RecipeProvider/m_176720_ (Lnet/minecraft/world/level/ItemLike;Lnet/minecraft/world/item/crafting/Ingredient;)Lnet/minecraft/data/recipes/RecipeBuilder; net/minecraft/data/recipes/RecipeProvider/trapdoorBuilder (Lnet/minecraft/world/level/ItemLike;Lnet/minecraft/world/item/crafting/Ingredient;)Lnet/minecraft/data/recipes/RecipeBuilder; +MD: net/minecraft/data/recipes/RecipeProvider/m_176726_ (Lnet/minecraft/world/level/ItemLike;Lnet/minecraft/world/item/crafting/Ingredient;)Lnet/minecraft/data/recipes/RecipeBuilder; net/minecraft/data/recipes/RecipeProvider/signBuilder (Lnet/minecraft/world/level/ItemLike;Lnet/minecraft/world/item/crafting/Ingredient;)Lnet/minecraft/data/recipes/RecipeBuilder; +MD: net/minecraft/data/recipes/RecipeProvider/m_176732_ (Lnet/minecraft/world/level/ItemLike;Lnet/minecraft/world/level/ItemLike;)Lnet/minecraft/data/recipes/RecipeBuilder; net/minecraft/data/recipes/RecipeProvider/lambda$static$9 (Lnet/minecraft/world/level/ItemLike;Lnet/minecraft/world/level/ItemLike;)Lnet/minecraft/data/recipes/RecipeBuilder; +MD: net/minecraft/data/recipes/RecipeProvider/m_176739_ (Ljava/util/function/Consumer;Lnet/minecraft/world/level/ItemLike;Lnet/minecraft/world/level/ItemLike;)V net/minecraft/data/recipes/RecipeProvider/smeltingResultFromBase (Ljava/util/function/Consumer;Lnet/minecraft/world/level/ItemLike;Lnet/minecraft/world/level/ItemLike;)V +MD: net/minecraft/data/recipes/RecipeProvider/m_206406_ (Lnet/minecraft/tags/TagKey;)Lnet/minecraft/advancements/critereon/InventoryChangeTrigger$TriggerInstance; net/minecraft/data/recipes/RecipeProvider/has (Lnet/minecraft/tags/TagKey;)Lnet/minecraft/advancements/critereon/InventoryChangeTrigger$TriggerInstance; +MD: net/minecraft/data/recipes/RecipeProvider/m_213708_ (Lnet/minecraft/data/CachedOutput;)Ljava/util/concurrent/CompletableFuture; net/minecraft/data/recipes/RecipeProvider/run (Lnet/minecraft/data/CachedOutput;)Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/data/recipes/RecipeProvider/m_236371_ (Ljava/util/function/Consumer;Lnet/minecraft/world/level/ItemLike;Lnet/minecraft/world/level/ItemLike;)V net/minecraft/data/recipes/RecipeProvider/chestBoat (Ljava/util/function/Consumer;Lnet/minecraft/world/level/ItemLike;Lnet/minecraft/world/level/ItemLike;)V +MD: net/minecraft/data/recipes/RecipeProvider/m_244773_ (Lnet/minecraft/world/level/ItemLike;Lnet/minecraft/world/level/ItemLike;)Lnet/minecraft/data/recipes/RecipeBuilder; net/minecraft/data/recipes/RecipeProvider/lambda$static$18 (Lnet/minecraft/world/level/ItemLike;Lnet/minecraft/world/level/ItemLike;)Lnet/minecraft/data/recipes/RecipeBuilder; +MD: net/minecraft/data/recipes/RecipeProvider/m_244774_ (Lnet/minecraft/world/level/ItemLike;Lnet/minecraft/world/level/ItemLike;)Lnet/minecraft/data/recipes/RecipeBuilder; net/minecraft/data/recipes/RecipeProvider/lambda$static$21 (Lnet/minecraft/world/level/ItemLike;Lnet/minecraft/world/level/ItemLike;)Lnet/minecraft/data/recipes/RecipeBuilder; +MD: net/minecraft/data/recipes/RecipeProvider/m_244775_ (Ljava/util/function/Consumer;Lnet/minecraft/world/level/block/Block;Lnet/minecraft/world/level/block/Block;)V net/minecraft/data/recipes/RecipeProvider/lambda$waxRecipes$5 (Ljava/util/function/Consumer;Lnet/minecraft/world/level/block/Block;Lnet/minecraft/world/level/block/Block;)V +MD: net/minecraft/data/recipes/RecipeProvider/m_244776_ (Lnet/minecraft/world/level/ItemLike;Lnet/minecraft/world/level/ItemLike;)Lnet/minecraft/data/recipes/RecipeBuilder; net/minecraft/data/recipes/RecipeProvider/lambda$static$23 (Lnet/minecraft/world/level/ItemLike;Lnet/minecraft/world/level/ItemLike;)Lnet/minecraft/data/recipes/RecipeBuilder; +MD: net/minecraft/data/recipes/RecipeProvider/m_244777_ (Lnet/minecraft/world/level/ItemLike;Lnet/minecraft/world/level/ItemLike;)Lnet/minecraft/data/recipes/RecipeBuilder; net/minecraft/data/recipes/RecipeProvider/lambda$static$11 (Lnet/minecraft/world/level/ItemLike;Lnet/minecraft/world/level/ItemLike;)Lnet/minecraft/data/recipes/RecipeBuilder; +MD: net/minecraft/data/recipes/RecipeProvider/m_244779_ (Lnet/minecraft/world/level/ItemLike;Lnet/minecraft/world/level/ItemLike;)Lnet/minecraft/data/recipes/RecipeBuilder; net/minecraft/data/recipes/RecipeProvider/lambda$static$14 (Lnet/minecraft/world/level/ItemLike;Lnet/minecraft/world/level/ItemLike;)Lnet/minecraft/data/recipes/RecipeBuilder; +MD: net/minecraft/data/recipes/RecipeProvider/m_244780_ (Lnet/minecraft/world/flag/FeatureFlagSet;Lnet/minecraft/data/BlockFamily;)Z net/minecraft/data/recipes/RecipeProvider/lambda$generateForEnabledBlockFamilies$2 (Lnet/minecraft/world/flag/FeatureFlagSet;Lnet/minecraft/data/BlockFamily;)Z +MD: net/minecraft/data/recipes/RecipeProvider/m_244781_ (Lnet/minecraft/world/level/ItemLike;Lnet/minecraft/world/level/ItemLike;)Lnet/minecraft/data/recipes/RecipeBuilder; net/minecraft/data/recipes/RecipeProvider/lambda$static$16 (Lnet/minecraft/world/level/ItemLike;Lnet/minecraft/world/level/ItemLike;)Lnet/minecraft/data/recipes/RecipeBuilder; +MD: net/minecraft/data/recipes/RecipeProvider/m_244782_ (Lnet/minecraft/world/level/ItemLike;Lnet/minecraft/world/level/ItemLike;)Lnet/minecraft/data/recipes/RecipeBuilder; net/minecraft/data/recipes/RecipeProvider/lambda$static$10 (Lnet/minecraft/world/level/ItemLike;Lnet/minecraft/world/level/ItemLike;)Lnet/minecraft/data/recipes/RecipeBuilder; +MD: net/minecraft/data/recipes/RecipeProvider/m_244783_ (Lnet/minecraft/world/level/ItemLike;Lnet/minecraft/world/level/ItemLike;)Lnet/minecraft/data/recipes/RecipeBuilder; net/minecraft/data/recipes/RecipeProvider/lambda$static$20 (Lnet/minecraft/world/level/ItemLike;Lnet/minecraft/world/level/ItemLike;)Lnet/minecraft/data/recipes/RecipeBuilder; +MD: net/minecraft/data/recipes/RecipeProvider/m_245200_ (Ljava/util/function/Consumer;)V net/minecraft/data/recipes/RecipeProvider/buildRecipes (Ljava/util/function/Consumer;)V +MD: net/minecraft/data/recipes/RecipeProvider/m_245261_ (Ljava/util/function/Consumer;Lnet/minecraft/data/recipes/RecipeCategory;Lnet/minecraft/world/level/ItemLike;Lnet/minecraft/data/recipes/RecipeCategory;Lnet/minecraft/world/level/ItemLike;Ljava/lang/String;Ljava/lang/String;)V net/minecraft/data/recipes/RecipeProvider/nineBlockStorageRecipesRecipesWithCustomUnpacking (Ljava/util/function/Consumer;Lnet/minecraft/data/recipes/RecipeCategory;Lnet/minecraft/world/level/ItemLike;Lnet/minecraft/data/recipes/RecipeCategory;Lnet/minecraft/world/level/ItemLike;Ljava/lang/String;Ljava/lang/String;)V +MD: net/minecraft/data/recipes/RecipeProvider/m_245412_ (Ljava/util/function/Consumer;Ljava/util/List;Lnet/minecraft/data/recipes/RecipeCategory;Lnet/minecraft/world/level/ItemLike;FILjava/lang/String;)V net/minecraft/data/recipes/RecipeProvider/oreBlasting (Ljava/util/function/Consumer;Ljava/util/List;Lnet/minecraft/data/recipes/RecipeCategory;Lnet/minecraft/world/level/ItemLike;FILjava/lang/String;)V +MD: net/minecraft/data/recipes/RecipeProvider/m_245792_ (Lnet/minecraft/data/recipes/RecipeCategory;Lnet/minecraft/world/level/ItemLike;Lnet/minecraft/world/item/crafting/Ingredient;)Lnet/minecraft/data/recipes/ShapedRecipeBuilder; net/minecraft/data/recipes/RecipeProvider/cutBuilder (Lnet/minecraft/data/recipes/RecipeCategory;Lnet/minecraft/world/level/ItemLike;Lnet/minecraft/world/item/crafting/Ingredient;)Lnet/minecraft/data/recipes/ShapedRecipeBuilder; +MD: net/minecraft/data/recipes/RecipeProvider/m_245809_ (Ljava/util/function/Consumer;Lnet/minecraft/world/item/crafting/RecipeSerializer;Ljava/util/List;Lnet/minecraft/data/recipes/RecipeCategory;Lnet/minecraft/world/level/ItemLike;FILjava/lang/String;Ljava/lang/String;)V net/minecraft/data/recipes/RecipeProvider/oreCooking (Ljava/util/function/Consumer;Lnet/minecraft/world/item/crafting/RecipeSerializer;Ljava/util/List;Lnet/minecraft/data/recipes/RecipeCategory;Lnet/minecraft/world/level/ItemLike;FILjava/lang/String;Ljava/lang/String;)V +MD: net/minecraft/data/recipes/RecipeProvider/m_245864_ (Lnet/minecraft/data/recipes/RecipeCategory;Lnet/minecraft/world/level/ItemLike;Lnet/minecraft/world/item/crafting/Ingredient;)Lnet/minecraft/data/recipes/RecipeBuilder; net/minecraft/data/recipes/RecipeProvider/wallBuilder (Lnet/minecraft/data/recipes/RecipeCategory;Lnet/minecraft/world/level/ItemLike;Lnet/minecraft/world/item/crafting/Ingredient;)Lnet/minecraft/data/recipes/RecipeBuilder; +MD: net/minecraft/data/recipes/RecipeProvider/m_245931_ (Ljava/util/function/Consumer;Lnet/minecraft/data/recipes/RecipeCategory;Lnet/minecraft/world/level/ItemLike;Lnet/minecraft/world/level/ItemLike;)V net/minecraft/data/recipes/RecipeProvider/polished (Ljava/util/function/Consumer;Lnet/minecraft/data/recipes/RecipeCategory;Lnet/minecraft/world/level/ItemLike;Lnet/minecraft/world/level/ItemLike;)V +MD: net/minecraft/data/recipes/RecipeProvider/m_246075_ (Ljava/util/function/Consumer;Lnet/minecraft/data/recipes/RecipeCategory;Lnet/minecraft/world/level/ItemLike;Lnet/minecraft/data/recipes/RecipeCategory;Lnet/minecraft/world/level/ItemLike;Ljava/lang/String;Ljava/lang/String;)V net/minecraft/data/recipes/RecipeProvider/nineBlockStorageRecipesWithCustomPacking (Ljava/util/function/Consumer;Lnet/minecraft/data/recipes/RecipeCategory;Lnet/minecraft/world/level/ItemLike;Lnet/minecraft/data/recipes/RecipeCategory;Lnet/minecraft/world/level/ItemLike;Ljava/lang/String;Ljava/lang/String;)V +MD: net/minecraft/data/recipes/RecipeProvider/m_246222_ (Ljava/util/function/Consumer;Lnet/minecraft/data/recipes/RecipeCategory;Lnet/minecraft/world/level/ItemLike;Lnet/minecraft/world/level/ItemLike;)V net/minecraft/data/recipes/RecipeProvider/chiseled (Ljava/util/function/Consumer;Lnet/minecraft/data/recipes/RecipeCategory;Lnet/minecraft/world/level/ItemLike;Lnet/minecraft/world/level/ItemLike;)V +MD: net/minecraft/data/recipes/RecipeProvider/m_246272_ (Ljava/util/function/Consumer;Ljava/util/List;Lnet/minecraft/data/recipes/RecipeCategory;Lnet/minecraft/world/level/ItemLike;FILjava/lang/String;)V net/minecraft/data/recipes/RecipeProvider/oreSmelting (Ljava/util/function/Consumer;Ljava/util/List;Lnet/minecraft/data/recipes/RecipeCategory;Lnet/minecraft/world/level/ItemLike;FILjava/lang/String;)V +MD: net/minecraft/data/recipes/RecipeProvider/m_246382_ (Ljava/util/function/Consumer;Lnet/minecraft/data/recipes/RecipeCategory;Lnet/minecraft/world/level/ItemLike;Lnet/minecraft/world/level/ItemLike;)V net/minecraft/data/recipes/RecipeProvider/wall (Ljava/util/function/Consumer;Lnet/minecraft/data/recipes/RecipeCategory;Lnet/minecraft/world/level/ItemLike;Lnet/minecraft/world/level/ItemLike;)V +MD: net/minecraft/data/recipes/RecipeProvider/m_246451_ (Lnet/minecraft/data/recipes/RecipeCategory;Lnet/minecraft/world/level/ItemLike;Lnet/minecraft/world/item/crafting/Ingredient;)Lnet/minecraft/data/recipes/ShapedRecipeBuilder; net/minecraft/data/recipes/RecipeProvider/chiseledBuilder (Lnet/minecraft/data/recipes/RecipeCategory;Lnet/minecraft/world/level/ItemLike;Lnet/minecraft/world/item/crafting/Ingredient;)Lnet/minecraft/data/recipes/ShapedRecipeBuilder; +MD: net/minecraft/data/recipes/RecipeProvider/m_246630_ (Ljava/util/function/Consumer;Lnet/minecraft/world/item/Item;Lnet/minecraft/data/recipes/RecipeCategory;Lnet/minecraft/world/item/Item;)V net/minecraft/data/recipes/RecipeProvider/netheriteSmithing (Ljava/util/function/Consumer;Lnet/minecraft/world/item/Item;Lnet/minecraft/data/recipes/RecipeCategory;Lnet/minecraft/world/item/Item;)V +MD: net/minecraft/data/recipes/RecipeProvider/m_246658_ (Ljava/util/function/Consumer;Lnet/minecraft/data/recipes/RecipeCategory;Lnet/minecraft/world/level/ItemLike;Lnet/minecraft/world/level/ItemLike;)V net/minecraft/data/recipes/RecipeProvider/slab (Ljava/util/function/Consumer;Lnet/minecraft/data/recipes/RecipeCategory;Lnet/minecraft/world/level/ItemLike;Lnet/minecraft/world/level/ItemLike;)V +MD: net/minecraft/data/recipes/RecipeProvider/m_246977_ (Ljava/util/function/Consumer;Lnet/minecraft/world/level/ItemLike;Lnet/minecraft/world/level/ItemLike;)V net/minecraft/data/recipes/RecipeProvider/hangingSign (Ljava/util/function/Consumer;Lnet/minecraft/world/level/ItemLike;Lnet/minecraft/world/level/ItemLike;)V +MD: net/minecraft/data/recipes/RecipeProvider/m_247051_ (Ljava/util/function/Consumer;Lnet/minecraft/world/flag/FeatureFlagSet;)V net/minecraft/data/recipes/RecipeProvider/generateForEnabledBlockFamilies (Ljava/util/function/Consumer;Lnet/minecraft/world/flag/FeatureFlagSet;)V +MD: net/minecraft/data/recipes/RecipeProvider/m_247059_ (Ljava/util/function/Consumer;Lnet/minecraft/data/recipes/RecipeCategory;Lnet/minecraft/world/level/ItemLike;Lnet/minecraft/world/level/ItemLike;)V net/minecraft/data/recipes/RecipeProvider/cut (Ljava/util/function/Consumer;Lnet/minecraft/data/recipes/RecipeCategory;Lnet/minecraft/world/level/ItemLike;Lnet/minecraft/world/level/ItemLike;)V +MD: net/minecraft/data/recipes/RecipeProvider/m_247174_ (Lnet/minecraft/data/recipes/RecipeCategory;Lnet/minecraft/world/level/ItemLike;Lnet/minecraft/world/item/crafting/Ingredient;)Lnet/minecraft/data/recipes/RecipeBuilder; net/minecraft/data/recipes/RecipeProvider/polishedBuilder (Lnet/minecraft/data/recipes/RecipeCategory;Lnet/minecraft/world/level/ItemLike;Lnet/minecraft/world/item/crafting/Ingredient;)Lnet/minecraft/data/recipes/RecipeBuilder; +MD: net/minecraft/data/recipes/RecipeProvider/m_247239_ (Ljava/util/function/Consumer;Lnet/minecraft/data/recipes/RecipeCategory;Lnet/minecraft/world/level/ItemLike;Lnet/minecraft/world/level/ItemLike;)V net/minecraft/data/recipes/RecipeProvider/mosaicBuilder (Ljava/util/function/Consumer;Lnet/minecraft/data/recipes/RecipeCategory;Lnet/minecraft/world/level/ItemLike;Lnet/minecraft/world/level/ItemLike;)V +MD: net/minecraft/data/recipes/RecipeProvider/m_247298_ (Ljava/util/function/Consumer;Lnet/minecraft/data/recipes/RecipeCategory;Lnet/minecraft/world/level/ItemLike;Lnet/minecraft/world/level/ItemLike;I)V net/minecraft/data/recipes/RecipeProvider/stonecutterResultFromBase (Ljava/util/function/Consumer;Lnet/minecraft/data/recipes/RecipeCategory;Lnet/minecraft/world/level/ItemLike;Lnet/minecraft/world/level/ItemLike;I)V +MD: net/minecraft/data/recipes/RecipeProvider/m_247347_ (Lnet/minecraft/data/recipes/RecipeCategory;Lnet/minecraft/world/level/ItemLike;Lnet/minecraft/world/item/crafting/Ingredient;)Lnet/minecraft/data/recipes/RecipeBuilder; net/minecraft/data/recipes/RecipeProvider/pressurePlateBuilder (Lnet/minecraft/data/recipes/RecipeCategory;Lnet/minecraft/world/level/ItemLike;Lnet/minecraft/world/item/crafting/Ingredient;)Lnet/minecraft/data/recipes/RecipeBuilder; +MD: net/minecraft/data/recipes/RecipeProvider/m_247368_ (Ljava/util/function/Consumer;Lnet/minecraft/data/recipes/RecipeCategory;Lnet/minecraft/world/level/ItemLike;Lnet/minecraft/data/recipes/RecipeCategory;Lnet/minecraft/world/level/ItemLike;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;)V net/minecraft/data/recipes/RecipeProvider/nineBlockStorageRecipes (Ljava/util/function/Consumer;Lnet/minecraft/data/recipes/RecipeCategory;Lnet/minecraft/world/level/ItemLike;Lnet/minecraft/data/recipes/RecipeCategory;Lnet/minecraft/world/level/ItemLike;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;)V +MD: net/minecraft/data/recipes/RecipeProvider/m_247434_ (Ljava/util/function/Consumer;Ljava/lang/String;Lnet/minecraft/world/item/crafting/RecipeSerializer;ILnet/minecraft/world/level/ItemLike;Lnet/minecraft/world/level/ItemLike;F)V net/minecraft/data/recipes/RecipeProvider/simpleCookingRecipe (Ljava/util/function/Consumer;Ljava/lang/String;Lnet/minecraft/world/item/crafting/RecipeSerializer;ILnet/minecraft/world/level/ItemLike;Lnet/minecraft/world/level/ItemLike;F)V +MD: net/minecraft/data/recipes/RecipeProvider/m_247540_ (Ljava/util/function/Consumer;Lnet/minecraft/data/recipes/RecipeCategory;Lnet/minecraft/world/level/ItemLike;Lnet/minecraft/world/level/ItemLike;)V net/minecraft/data/recipes/RecipeProvider/twoByTwoPacker (Ljava/util/function/Consumer;Lnet/minecraft/data/recipes/RecipeCategory;Lnet/minecraft/world/level/ItemLike;Lnet/minecraft/world/level/ItemLike;)V +MD: net/minecraft/data/recipes/RecipeProvider/m_247552_ (Lnet/minecraft/data/recipes/RecipeCategory;Lnet/minecraft/world/level/ItemLike;Lnet/minecraft/world/item/crafting/Ingredient;)Lnet/minecraft/data/recipes/RecipeBuilder; net/minecraft/data/recipes/RecipeProvider/slabBuilder (Lnet/minecraft/data/recipes/RecipeCategory;Lnet/minecraft/world/level/ItemLike;Lnet/minecraft/world/item/crafting/Ingredient;)Lnet/minecraft/data/recipes/RecipeBuilder; +MD: net/minecraft/data/recipes/RecipeProvider/m_247600_ (Ljava/util/function/Consumer;Lnet/minecraft/data/recipes/RecipeCategory;Lnet/minecraft/world/level/ItemLike;Lnet/minecraft/world/level/ItemLike;)V net/minecraft/data/recipes/RecipeProvider/stonecutterResultFromBase (Ljava/util/function/Consumer;Lnet/minecraft/data/recipes/RecipeCategory;Lnet/minecraft/world/level/ItemLike;Lnet/minecraft/world/level/ItemLike;)V +MD: net/minecraft/data/recipes/RecipeProvider/m_247655_ (Ljava/util/function/Consumer;Lnet/minecraft/data/recipes/RecipeCategory;Lnet/minecraft/world/level/ItemLike;Lnet/minecraft/data/recipes/RecipeCategory;Lnet/minecraft/world/level/ItemLike;)V net/minecraft/data/recipes/RecipeProvider/nineBlockStorageRecipes (Ljava/util/function/Consumer;Lnet/minecraft/data/recipes/RecipeCategory;Lnet/minecraft/world/level/ItemLike;Lnet/minecraft/data/recipes/RecipeCategory;Lnet/minecraft/world/level/ItemLike;)V +MD: net/minecraft/data/recipes/RecipeProvider/m_252625_ (Ljava/util/Set;Ljava/util/List;Lnet/minecraft/data/CachedOutput;Lnet/minecraft/data/recipes/FinishedRecipe;)V net/minecraft/data/recipes/RecipeProvider/lambda$run$0 (Ljava/util/Set;Ljava/util/List;Lnet/minecraft/data/CachedOutput;Lnet/minecraft/data/recipes/FinishedRecipe;)V +MD: net/minecraft/data/recipes/RecipeProvider/m_252626_ (I)[Ljava/util/concurrent/CompletableFuture; net/minecraft/data/recipes/RecipeProvider/lambda$run$1 (I)[Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/data/recipes/RecipeProvider/m_253240_ (Lnet/minecraft/data/CachedOutput;Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/advancements/Advancement$Builder;)Ljava/util/concurrent/CompletableFuture; net/minecraft/data/recipes/RecipeProvider/buildAdvancement (Lnet/minecraft/data/CachedOutput;Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/advancements/Advancement$Builder;)Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/data/recipes/RecipeProvider/m_257424_ (Ljava/util/function/Consumer;Lnet/minecraft/world/level/ItemLike;Lnet/minecraft/tags/TagKey;I)V net/minecraft/data/recipes/RecipeProvider/planksFromLogs (Ljava/util/function/Consumer;Lnet/minecraft/world/level/ItemLike;Lnet/minecraft/tags/TagKey;I)V +MD: net/minecraft/data/recipes/RecipeProvider/m_257929_ (Ljava/util/function/Consumer;Lnet/minecraft/world/level/ItemLike;Lnet/minecraft/tags/TagKey;I)V net/minecraft/data/recipes/RecipeProvider/planksFromLog (Ljava/util/function/Consumer;Lnet/minecraft/world/level/ItemLike;Lnet/minecraft/tags/TagKey;I)V +MD: net/minecraft/data/recipes/RecipeProvider/m_257994_ (Ljava/util/function/Consumer;Lnet/minecraft/data/recipes/RecipeCategory;Lnet/minecraft/world/level/ItemLike;Lnet/minecraft/world/level/ItemLike;Ljava/lang/String;)V net/minecraft/data/recipes/RecipeProvider/threeByThreePacker (Ljava/util/function/Consumer;Lnet/minecraft/data/recipes/RecipeCategory;Lnet/minecraft/world/level/ItemLike;Lnet/minecraft/world/level/ItemLike;Ljava/lang/String;)V +MD: net/minecraft/data/recipes/RecipeProvider/m_258049_ (Ljava/util/function/Consumer;Lnet/minecraft/data/recipes/RecipeCategory;Lnet/minecraft/world/level/ItemLike;Lnet/minecraft/world/level/ItemLike;)V net/minecraft/data/recipes/RecipeProvider/threeByThreePacker (Ljava/util/function/Consumer;Lnet/minecraft/data/recipes/RecipeCategory;Lnet/minecraft/world/level/ItemLike;Lnet/minecraft/world/level/ItemLike;)V +MD: net/minecraft/data/recipes/RecipeProvider/m_266438_ (Ljava/util/function/Consumer;Lnet/minecraft/world/level/ItemLike;Lnet/minecraft/world/level/ItemLike;)V net/minecraft/data/recipes/RecipeProvider/copySmithingTemplate (Ljava/util/function/Consumer;Lnet/minecraft/world/level/ItemLike;Lnet/minecraft/world/level/ItemLike;)V +MD: net/minecraft/data/recipes/RecipeProvider/m_266564_ (Ljava/util/function/Consumer;Lnet/minecraft/world/level/ItemLike;Lnet/minecraft/tags/TagKey;)V net/minecraft/data/recipes/RecipeProvider/copySmithingTemplate (Ljava/util/function/Consumer;Lnet/minecraft/world/level/ItemLike;Lnet/minecraft/tags/TagKey;)V +MD: net/minecraft/data/recipes/RecipeProvider/m_284421_ (Ljava/util/function/Consumer;Lnet/minecraft/world/item/Item;Lnet/minecraft/resources/ResourceLocation;)V net/minecraft/data/recipes/RecipeProvider/trimSmithing (Ljava/util/function/Consumer;Lnet/minecraft/world/item/Item;Lnet/minecraft/resources/ResourceLocation;)V +MD: net/minecraft/data/recipes/RecipeProvider/m_287806_ (Lnet/minecraft/world/item/Item;Lnet/minecraft/world/item/Item;)Z net/minecraft/data/recipes/RecipeProvider/lambda$colorBlockWithDye$4 (Lnet/minecraft/world/item/Item;Lnet/minecraft/world/item/Item;)Z +MD: net/minecraft/data/recipes/RecipeProvider/m_289596_ (Ljava/util/function/Consumer;Ljava/util/List;Ljava/util/List;Ljava/lang/String;)V net/minecraft/data/recipes/RecipeProvider/colorBlockWithDye (Ljava/util/function/Consumer;Ljava/util/List;Ljava/util/List;Ljava/lang/String;)V +MD: net/minecraft/data/recipes/RecipeProvider/m_6055_ ()Ljava/lang/String; net/minecraft/data/recipes/RecipeProvider/getName ()Ljava/lang/String; +MD: net/minecraft/data/recipes/ShapedRecipeBuilder/ (Lnet/minecraft/data/recipes/RecipeCategory;Lnet/minecraft/world/level/ItemLike;I)V net/minecraft/data/recipes/ShapedRecipeBuilder/ (Lnet/minecraft/data/recipes/RecipeCategory;Lnet/minecraft/world/level/ItemLike;I)V +MD: net/minecraft/data/recipes/ShapedRecipeBuilder/m_126124_ (Ljava/lang/Character;Lnet/minecraft/world/item/crafting/Ingredient;)Lnet/minecraft/data/recipes/ShapedRecipeBuilder; net/minecraft/data/recipes/ShapedRecipeBuilder/define (Ljava/lang/Character;Lnet/minecraft/world/item/crafting/Ingredient;)Lnet/minecraft/data/recipes/ShapedRecipeBuilder; +MD: net/minecraft/data/recipes/ShapedRecipeBuilder/m_126127_ (Ljava/lang/Character;Lnet/minecraft/world/level/ItemLike;)Lnet/minecraft/data/recipes/ShapedRecipeBuilder; net/minecraft/data/recipes/ShapedRecipeBuilder/define (Ljava/lang/Character;Lnet/minecraft/world/level/ItemLike;)Lnet/minecraft/data/recipes/ShapedRecipeBuilder; +MD: net/minecraft/data/recipes/ShapedRecipeBuilder/m_126130_ (Ljava/lang/String;)Lnet/minecraft/data/recipes/ShapedRecipeBuilder; net/minecraft/data/recipes/ShapedRecipeBuilder/pattern (Ljava/lang/String;)Lnet/minecraft/data/recipes/ShapedRecipeBuilder; +MD: net/minecraft/data/recipes/ShapedRecipeBuilder/m_126132_ (Ljava/lang/String;Lnet/minecraft/advancements/CriterionTriggerInstance;)Lnet/minecraft/data/recipes/RecipeBuilder; net/minecraft/data/recipes/ShapedRecipeBuilder/unlockedBy (Ljava/lang/String;Lnet/minecraft/advancements/CriterionTriggerInstance;)Lnet/minecraft/data/recipes/RecipeBuilder; +MD: net/minecraft/data/recipes/ShapedRecipeBuilder/m_126132_ (Ljava/lang/String;Lnet/minecraft/advancements/CriterionTriggerInstance;)Lnet/minecraft/data/recipes/ShapedRecipeBuilder; net/minecraft/data/recipes/ShapedRecipeBuilder/unlockedBy (Ljava/lang/String;Lnet/minecraft/advancements/CriterionTriggerInstance;)Lnet/minecraft/data/recipes/ShapedRecipeBuilder; +MD: net/minecraft/data/recipes/ShapedRecipeBuilder/m_126140_ (Ljava/util/function/Consumer;Lnet/minecraft/resources/ResourceLocation;)V net/minecraft/data/recipes/ShapedRecipeBuilder/save (Ljava/util/function/Consumer;Lnet/minecraft/resources/ResourceLocation;)V +MD: net/minecraft/data/recipes/ShapedRecipeBuilder/m_126143_ (Lnet/minecraft/resources/ResourceLocation;)V net/minecraft/data/recipes/ShapedRecipeBuilder/ensureValid (Lnet/minecraft/resources/ResourceLocation;)V +MD: net/minecraft/data/recipes/ShapedRecipeBuilder/m_126145_ (Ljava/lang/String;)Lnet/minecraft/data/recipes/ShapedRecipeBuilder; net/minecraft/data/recipes/ShapedRecipeBuilder/group (Ljava/lang/String;)Lnet/minecraft/data/recipes/ShapedRecipeBuilder; +MD: net/minecraft/data/recipes/ShapedRecipeBuilder/m_126145_ (Ljava/lang/String;)Lnet/minecraft/data/recipes/RecipeBuilder; net/minecraft/data/recipes/ShapedRecipeBuilder/group (Ljava/lang/String;)Lnet/minecraft/data/recipes/RecipeBuilder; +MD: net/minecraft/data/recipes/ShapedRecipeBuilder/m_142372_ ()Lnet/minecraft/world/item/Item; net/minecraft/data/recipes/ShapedRecipeBuilder/getResult ()Lnet/minecraft/world/item/Item; +MD: net/minecraft/data/recipes/ShapedRecipeBuilder/m_206416_ (Ljava/lang/Character;Lnet/minecraft/tags/TagKey;)Lnet/minecraft/data/recipes/ShapedRecipeBuilder; net/minecraft/data/recipes/ShapedRecipeBuilder/define (Ljava/lang/Character;Lnet/minecraft/tags/TagKey;)Lnet/minecraft/data/recipes/ShapedRecipeBuilder; +MD: net/minecraft/data/recipes/ShapedRecipeBuilder/m_245327_ (Lnet/minecraft/data/recipes/RecipeCategory;Lnet/minecraft/world/level/ItemLike;)Lnet/minecraft/data/recipes/ShapedRecipeBuilder; net/minecraft/data/recipes/ShapedRecipeBuilder/shaped (Lnet/minecraft/data/recipes/RecipeCategory;Lnet/minecraft/world/level/ItemLike;)Lnet/minecraft/data/recipes/ShapedRecipeBuilder; +MD: net/minecraft/data/recipes/ShapedRecipeBuilder/m_246608_ (Lnet/minecraft/data/recipes/RecipeCategory;Lnet/minecraft/world/level/ItemLike;I)Lnet/minecraft/data/recipes/ShapedRecipeBuilder; net/minecraft/data/recipes/ShapedRecipeBuilder/shaped (Lnet/minecraft/data/recipes/RecipeCategory;Lnet/minecraft/world/level/ItemLike;I)Lnet/minecraft/data/recipes/ShapedRecipeBuilder; +MD: net/minecraft/data/recipes/ShapedRecipeBuilder/m_271710_ (Z)Lnet/minecraft/data/recipes/ShapedRecipeBuilder; net/minecraft/data/recipes/ShapedRecipeBuilder/showNotification (Z)Lnet/minecraft/data/recipes/ShapedRecipeBuilder; +MD: net/minecraft/data/recipes/ShapedRecipeBuilder$Result/ (Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/world/item/Item;ILjava/lang/String;Lnet/minecraft/world/item/crafting/CraftingBookCategory;Ljava/util/List;Ljava/util/Map;Lnet/minecraft/advancements/Advancement$Builder;Lnet/minecraft/resources/ResourceLocation;Z)V net/minecraft/data/recipes/ShapedRecipeBuilder$Result/ (Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/world/item/Item;ILjava/lang/String;Lnet/minecraft/world/item/crafting/CraftingBookCategory;Ljava/util/List;Ljava/util/Map;Lnet/minecraft/advancements/Advancement$Builder;Lnet/minecraft/resources/ResourceLocation;Z)V +MD: net/minecraft/data/recipes/ShapedRecipeBuilder$Result/m_5860_ ()Lcom/google/gson/JsonObject; net/minecraft/data/recipes/ShapedRecipeBuilder$Result/serializeAdvancement ()Lcom/google/gson/JsonObject; +MD: net/minecraft/data/recipes/ShapedRecipeBuilder$Result/m_6445_ ()Lnet/minecraft/resources/ResourceLocation; net/minecraft/data/recipes/ShapedRecipeBuilder$Result/getId ()Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/data/recipes/ShapedRecipeBuilder$Result/m_6448_ ()Lnet/minecraft/resources/ResourceLocation; net/minecraft/data/recipes/ShapedRecipeBuilder$Result/getAdvancementId ()Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/data/recipes/ShapedRecipeBuilder$Result/m_6637_ ()Lnet/minecraft/world/item/crafting/RecipeSerializer; net/minecraft/data/recipes/ShapedRecipeBuilder$Result/getType ()Lnet/minecraft/world/item/crafting/RecipeSerializer; +MD: net/minecraft/data/recipes/ShapedRecipeBuilder$Result/m_7917_ (Lcom/google/gson/JsonObject;)V net/minecraft/data/recipes/ShapedRecipeBuilder$Result/serializeRecipeData (Lcom/google/gson/JsonObject;)V +MD: net/minecraft/data/recipes/ShapelessRecipeBuilder/ (Lnet/minecraft/data/recipes/RecipeCategory;Lnet/minecraft/world/level/ItemLike;I)V net/minecraft/data/recipes/ShapelessRecipeBuilder/ (Lnet/minecraft/data/recipes/RecipeCategory;Lnet/minecraft/world/level/ItemLike;I)V +MD: net/minecraft/data/recipes/ShapelessRecipeBuilder/m_126132_ (Ljava/lang/String;Lnet/minecraft/advancements/CriterionTriggerInstance;)Lnet/minecraft/data/recipes/ShapelessRecipeBuilder; net/minecraft/data/recipes/ShapelessRecipeBuilder/unlockedBy (Ljava/lang/String;Lnet/minecraft/advancements/CriterionTriggerInstance;)Lnet/minecraft/data/recipes/ShapelessRecipeBuilder; +MD: net/minecraft/data/recipes/ShapelessRecipeBuilder/m_126132_ (Ljava/lang/String;Lnet/minecraft/advancements/CriterionTriggerInstance;)Lnet/minecraft/data/recipes/RecipeBuilder; net/minecraft/data/recipes/ShapelessRecipeBuilder/unlockedBy (Ljava/lang/String;Lnet/minecraft/advancements/CriterionTriggerInstance;)Lnet/minecraft/data/recipes/RecipeBuilder; +MD: net/minecraft/data/recipes/ShapelessRecipeBuilder/m_126140_ (Ljava/util/function/Consumer;Lnet/minecraft/resources/ResourceLocation;)V net/minecraft/data/recipes/ShapelessRecipeBuilder/save (Ljava/util/function/Consumer;Lnet/minecraft/resources/ResourceLocation;)V +MD: net/minecraft/data/recipes/ShapelessRecipeBuilder/m_126145_ (Ljava/lang/String;)Lnet/minecraft/data/recipes/RecipeBuilder; net/minecraft/data/recipes/ShapelessRecipeBuilder/group (Ljava/lang/String;)Lnet/minecraft/data/recipes/RecipeBuilder; +MD: net/minecraft/data/recipes/ShapelessRecipeBuilder/m_126145_ (Ljava/lang/String;)Lnet/minecraft/data/recipes/ShapelessRecipeBuilder; net/minecraft/data/recipes/ShapelessRecipeBuilder/group (Ljava/lang/String;)Lnet/minecraft/data/recipes/ShapelessRecipeBuilder; +MD: net/minecraft/data/recipes/ShapelessRecipeBuilder/m_126184_ (Lnet/minecraft/world/item/crafting/Ingredient;)Lnet/minecraft/data/recipes/ShapelessRecipeBuilder; net/minecraft/data/recipes/ShapelessRecipeBuilder/requires (Lnet/minecraft/world/item/crafting/Ingredient;)Lnet/minecraft/data/recipes/ShapelessRecipeBuilder; +MD: net/minecraft/data/recipes/ShapelessRecipeBuilder/m_126186_ (Lnet/minecraft/world/item/crafting/Ingredient;I)Lnet/minecraft/data/recipes/ShapelessRecipeBuilder; net/minecraft/data/recipes/ShapelessRecipeBuilder/requires (Lnet/minecraft/world/item/crafting/Ingredient;I)Lnet/minecraft/data/recipes/ShapelessRecipeBuilder; +MD: net/minecraft/data/recipes/ShapelessRecipeBuilder/m_126207_ (Lnet/minecraft/resources/ResourceLocation;)V net/minecraft/data/recipes/ShapelessRecipeBuilder/ensureValid (Lnet/minecraft/resources/ResourceLocation;)V +MD: net/minecraft/data/recipes/ShapelessRecipeBuilder/m_126209_ (Lnet/minecraft/world/level/ItemLike;)Lnet/minecraft/data/recipes/ShapelessRecipeBuilder; net/minecraft/data/recipes/ShapelessRecipeBuilder/requires (Lnet/minecraft/world/level/ItemLike;)Lnet/minecraft/data/recipes/ShapelessRecipeBuilder; +MD: net/minecraft/data/recipes/ShapelessRecipeBuilder/m_126211_ (Lnet/minecraft/world/level/ItemLike;I)Lnet/minecraft/data/recipes/ShapelessRecipeBuilder; net/minecraft/data/recipes/ShapelessRecipeBuilder/requires (Lnet/minecraft/world/level/ItemLike;I)Lnet/minecraft/data/recipes/ShapelessRecipeBuilder; +MD: net/minecraft/data/recipes/ShapelessRecipeBuilder/m_142372_ ()Lnet/minecraft/world/item/Item; net/minecraft/data/recipes/ShapelessRecipeBuilder/getResult ()Lnet/minecraft/world/item/Item; +MD: net/minecraft/data/recipes/ShapelessRecipeBuilder/m_206419_ (Lnet/minecraft/tags/TagKey;)Lnet/minecraft/data/recipes/ShapelessRecipeBuilder; net/minecraft/data/recipes/ShapelessRecipeBuilder/requires (Lnet/minecraft/tags/TagKey;)Lnet/minecraft/data/recipes/ShapelessRecipeBuilder; +MD: net/minecraft/data/recipes/ShapelessRecipeBuilder/m_245498_ (Lnet/minecraft/data/recipes/RecipeCategory;Lnet/minecraft/world/level/ItemLike;)Lnet/minecraft/data/recipes/ShapelessRecipeBuilder; net/minecraft/data/recipes/ShapelessRecipeBuilder/shapeless (Lnet/minecraft/data/recipes/RecipeCategory;Lnet/minecraft/world/level/ItemLike;)Lnet/minecraft/data/recipes/ShapelessRecipeBuilder; +MD: net/minecraft/data/recipes/ShapelessRecipeBuilder/m_246517_ (Lnet/minecraft/data/recipes/RecipeCategory;Lnet/minecraft/world/level/ItemLike;I)Lnet/minecraft/data/recipes/ShapelessRecipeBuilder; net/minecraft/data/recipes/ShapelessRecipeBuilder/shapeless (Lnet/minecraft/data/recipes/RecipeCategory;Lnet/minecraft/world/level/ItemLike;I)Lnet/minecraft/data/recipes/ShapelessRecipeBuilder; +MD: net/minecraft/data/recipes/ShapelessRecipeBuilder$Result/ (Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/world/item/Item;ILjava/lang/String;Lnet/minecraft/world/item/crafting/CraftingBookCategory;Ljava/util/List;Lnet/minecraft/advancements/Advancement$Builder;Lnet/minecraft/resources/ResourceLocation;)V net/minecraft/data/recipes/ShapelessRecipeBuilder$Result/ (Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/world/item/Item;ILjava/lang/String;Lnet/minecraft/world/item/crafting/CraftingBookCategory;Ljava/util/List;Lnet/minecraft/advancements/Advancement$Builder;Lnet/minecraft/resources/ResourceLocation;)V +MD: net/minecraft/data/recipes/ShapelessRecipeBuilder$Result/m_5860_ ()Lcom/google/gson/JsonObject; net/minecraft/data/recipes/ShapelessRecipeBuilder$Result/serializeAdvancement ()Lcom/google/gson/JsonObject; +MD: net/minecraft/data/recipes/ShapelessRecipeBuilder$Result/m_6445_ ()Lnet/minecraft/resources/ResourceLocation; net/minecraft/data/recipes/ShapelessRecipeBuilder$Result/getId ()Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/data/recipes/ShapelessRecipeBuilder$Result/m_6448_ ()Lnet/minecraft/resources/ResourceLocation; net/minecraft/data/recipes/ShapelessRecipeBuilder$Result/getAdvancementId ()Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/data/recipes/ShapelessRecipeBuilder$Result/m_6637_ ()Lnet/minecraft/world/item/crafting/RecipeSerializer; net/minecraft/data/recipes/ShapelessRecipeBuilder$Result/getType ()Lnet/minecraft/world/item/crafting/RecipeSerializer; +MD: net/minecraft/data/recipes/ShapelessRecipeBuilder$Result/m_7917_ (Lcom/google/gson/JsonObject;)V net/minecraft/data/recipes/ShapelessRecipeBuilder$Result/serializeRecipeData (Lcom/google/gson/JsonObject;)V +MD: net/minecraft/data/recipes/SimpleCookingRecipeBuilder/ (Lnet/minecraft/data/recipes/RecipeCategory;Lnet/minecraft/world/item/crafting/CookingBookCategory;Lnet/minecraft/world/level/ItemLike;Lnet/minecraft/world/item/crafting/Ingredient;FILnet/minecraft/world/item/crafting/RecipeSerializer;)V net/minecraft/data/recipes/SimpleCookingRecipeBuilder/ (Lnet/minecraft/data/recipes/RecipeCategory;Lnet/minecraft/world/item/crafting/CookingBookCategory;Lnet/minecraft/world/level/ItemLike;Lnet/minecraft/world/item/crafting/Ingredient;FILnet/minecraft/world/item/crafting/RecipeSerializer;)V +MD: net/minecraft/data/recipes/SimpleCookingRecipeBuilder/m_126132_ (Ljava/lang/String;Lnet/minecraft/advancements/CriterionTriggerInstance;)Lnet/minecraft/data/recipes/RecipeBuilder; net/minecraft/data/recipes/SimpleCookingRecipeBuilder/unlockedBy (Ljava/lang/String;Lnet/minecraft/advancements/CriterionTriggerInstance;)Lnet/minecraft/data/recipes/RecipeBuilder; +MD: net/minecraft/data/recipes/SimpleCookingRecipeBuilder/m_126132_ (Ljava/lang/String;Lnet/minecraft/advancements/CriterionTriggerInstance;)Lnet/minecraft/data/recipes/SimpleCookingRecipeBuilder; net/minecraft/data/recipes/SimpleCookingRecipeBuilder/unlockedBy (Ljava/lang/String;Lnet/minecraft/advancements/CriterionTriggerInstance;)Lnet/minecraft/data/recipes/SimpleCookingRecipeBuilder; +MD: net/minecraft/data/recipes/SimpleCookingRecipeBuilder/m_126140_ (Ljava/util/function/Consumer;Lnet/minecraft/resources/ResourceLocation;)V net/minecraft/data/recipes/SimpleCookingRecipeBuilder/save (Ljava/util/function/Consumer;Lnet/minecraft/resources/ResourceLocation;)V +MD: net/minecraft/data/recipes/SimpleCookingRecipeBuilder/m_126145_ (Ljava/lang/String;)Lnet/minecraft/data/recipes/RecipeBuilder; net/minecraft/data/recipes/SimpleCookingRecipeBuilder/group (Ljava/lang/String;)Lnet/minecraft/data/recipes/RecipeBuilder; +MD: net/minecraft/data/recipes/SimpleCookingRecipeBuilder/m_126145_ (Ljava/lang/String;)Lnet/minecraft/data/recipes/SimpleCookingRecipeBuilder; net/minecraft/data/recipes/SimpleCookingRecipeBuilder/group (Ljava/lang/String;)Lnet/minecraft/data/recipes/SimpleCookingRecipeBuilder; +MD: net/minecraft/data/recipes/SimpleCookingRecipeBuilder/m_126265_ (Lnet/minecraft/resources/ResourceLocation;)V net/minecraft/data/recipes/SimpleCookingRecipeBuilder/ensureValid (Lnet/minecraft/resources/ResourceLocation;)V +MD: net/minecraft/data/recipes/SimpleCookingRecipeBuilder/m_142372_ ()Lnet/minecraft/world/item/Item; net/minecraft/data/recipes/SimpleCookingRecipeBuilder/getResult ()Lnet/minecraft/world/item/Item; +MD: net/minecraft/data/recipes/SimpleCookingRecipeBuilder/m_245681_ (Lnet/minecraft/world/item/crafting/Ingredient;Lnet/minecraft/data/recipes/RecipeCategory;Lnet/minecraft/world/level/ItemLike;FI)Lnet/minecraft/data/recipes/SimpleCookingRecipeBuilder; net/minecraft/data/recipes/SimpleCookingRecipeBuilder/blasting (Lnet/minecraft/world/item/crafting/Ingredient;Lnet/minecraft/data/recipes/RecipeCategory;Lnet/minecraft/world/level/ItemLike;FI)Lnet/minecraft/data/recipes/SimpleCookingRecipeBuilder; +MD: net/minecraft/data/recipes/SimpleCookingRecipeBuilder/m_246122_ (Lnet/minecraft/world/level/ItemLike;)Lnet/minecraft/world/item/crafting/CookingBookCategory; net/minecraft/data/recipes/SimpleCookingRecipeBuilder/determineBlastingRecipeCategory (Lnet/minecraft/world/level/ItemLike;)Lnet/minecraft/world/item/crafting/CookingBookCategory; +MD: net/minecraft/data/recipes/SimpleCookingRecipeBuilder/m_246159_ (Lnet/minecraft/world/item/crafting/Ingredient;Lnet/minecraft/data/recipes/RecipeCategory;Lnet/minecraft/world/level/ItemLike;FI)Lnet/minecraft/data/recipes/SimpleCookingRecipeBuilder; net/minecraft/data/recipes/SimpleCookingRecipeBuilder/smoking (Lnet/minecraft/world/item/crafting/Ingredient;Lnet/minecraft/data/recipes/RecipeCategory;Lnet/minecraft/world/level/ItemLike;FI)Lnet/minecraft/data/recipes/SimpleCookingRecipeBuilder; +MD: net/minecraft/data/recipes/SimpleCookingRecipeBuilder/m_246179_ (Lnet/minecraft/world/item/crafting/Ingredient;Lnet/minecraft/data/recipes/RecipeCategory;Lnet/minecraft/world/level/ItemLike;FI)Lnet/minecraft/data/recipes/SimpleCookingRecipeBuilder; net/minecraft/data/recipes/SimpleCookingRecipeBuilder/smelting (Lnet/minecraft/world/item/crafting/Ingredient;Lnet/minecraft/data/recipes/RecipeCategory;Lnet/minecraft/world/level/ItemLike;FI)Lnet/minecraft/data/recipes/SimpleCookingRecipeBuilder; +MD: net/minecraft/data/recipes/SimpleCookingRecipeBuilder/m_246784_ (Lnet/minecraft/world/item/crafting/RecipeSerializer;Lnet/minecraft/world/level/ItemLike;)Lnet/minecraft/world/item/crafting/CookingBookCategory; net/minecraft/data/recipes/SimpleCookingRecipeBuilder/determineRecipeCategory (Lnet/minecraft/world/item/crafting/RecipeSerializer;Lnet/minecraft/world/level/ItemLike;)Lnet/minecraft/world/item/crafting/CookingBookCategory; +MD: net/minecraft/data/recipes/SimpleCookingRecipeBuilder/m_247020_ (Lnet/minecraft/world/item/crafting/Ingredient;Lnet/minecraft/data/recipes/RecipeCategory;Lnet/minecraft/world/level/ItemLike;FI)Lnet/minecraft/data/recipes/SimpleCookingRecipeBuilder; net/minecraft/data/recipes/SimpleCookingRecipeBuilder/campfireCooking (Lnet/minecraft/world/item/crafting/Ingredient;Lnet/minecraft/data/recipes/RecipeCategory;Lnet/minecraft/world/level/ItemLike;FI)Lnet/minecraft/data/recipes/SimpleCookingRecipeBuilder; +MD: net/minecraft/data/recipes/SimpleCookingRecipeBuilder/m_247292_ (Lnet/minecraft/world/level/ItemLike;)Lnet/minecraft/world/item/crafting/CookingBookCategory; net/minecraft/data/recipes/SimpleCookingRecipeBuilder/determineSmeltingRecipeCategory (Lnet/minecraft/world/level/ItemLike;)Lnet/minecraft/world/item/crafting/CookingBookCategory; +MD: net/minecraft/data/recipes/SimpleCookingRecipeBuilder/m_247607_ (Lnet/minecraft/world/item/crafting/Ingredient;Lnet/minecraft/data/recipes/RecipeCategory;Lnet/minecraft/world/level/ItemLike;FILnet/minecraft/world/item/crafting/RecipeSerializer;)Lnet/minecraft/data/recipes/SimpleCookingRecipeBuilder; net/minecraft/data/recipes/SimpleCookingRecipeBuilder/generic (Lnet/minecraft/world/item/crafting/Ingredient;Lnet/minecraft/data/recipes/RecipeCategory;Lnet/minecraft/world/level/ItemLike;FILnet/minecraft/world/item/crafting/RecipeSerializer;)Lnet/minecraft/data/recipes/SimpleCookingRecipeBuilder; +MD: net/minecraft/data/recipes/SimpleCookingRecipeBuilder$Result/ (Lnet/minecraft/resources/ResourceLocation;Ljava/lang/String;Lnet/minecraft/world/item/crafting/CookingBookCategory;Lnet/minecraft/world/item/crafting/Ingredient;Lnet/minecraft/world/item/Item;FILnet/minecraft/advancements/Advancement$Builder;Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/world/item/crafting/RecipeSerializer;)V net/minecraft/data/recipes/SimpleCookingRecipeBuilder$Result/ (Lnet/minecraft/resources/ResourceLocation;Ljava/lang/String;Lnet/minecraft/world/item/crafting/CookingBookCategory;Lnet/minecraft/world/item/crafting/Ingredient;Lnet/minecraft/world/item/Item;FILnet/minecraft/advancements/Advancement$Builder;Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/world/item/crafting/RecipeSerializer;)V +MD: net/minecraft/data/recipes/SimpleCookingRecipeBuilder$Result/m_5860_ ()Lcom/google/gson/JsonObject; net/minecraft/data/recipes/SimpleCookingRecipeBuilder$Result/serializeAdvancement ()Lcom/google/gson/JsonObject; +MD: net/minecraft/data/recipes/SimpleCookingRecipeBuilder$Result/m_6445_ ()Lnet/minecraft/resources/ResourceLocation; net/minecraft/data/recipes/SimpleCookingRecipeBuilder$Result/getId ()Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/data/recipes/SimpleCookingRecipeBuilder$Result/m_6448_ ()Lnet/minecraft/resources/ResourceLocation; net/minecraft/data/recipes/SimpleCookingRecipeBuilder$Result/getAdvancementId ()Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/data/recipes/SimpleCookingRecipeBuilder$Result/m_6637_ ()Lnet/minecraft/world/item/crafting/RecipeSerializer; net/minecraft/data/recipes/SimpleCookingRecipeBuilder$Result/getType ()Lnet/minecraft/world/item/crafting/RecipeSerializer; +MD: net/minecraft/data/recipes/SimpleCookingRecipeBuilder$Result/m_7917_ (Lcom/google/gson/JsonObject;)V net/minecraft/data/recipes/SimpleCookingRecipeBuilder$Result/serializeRecipeData (Lcom/google/gson/JsonObject;)V +MD: net/minecraft/data/recipes/SingleItemRecipeBuilder/ (Lnet/minecraft/data/recipes/RecipeCategory;Lnet/minecraft/world/item/crafting/RecipeSerializer;Lnet/minecraft/world/item/crafting/Ingredient;Lnet/minecraft/world/level/ItemLike;I)V net/minecraft/data/recipes/SingleItemRecipeBuilder/ (Lnet/minecraft/data/recipes/RecipeCategory;Lnet/minecraft/world/item/crafting/RecipeSerializer;Lnet/minecraft/world/item/crafting/Ingredient;Lnet/minecraft/world/level/ItemLike;I)V +MD: net/minecraft/data/recipes/SingleItemRecipeBuilder/m_126132_ (Ljava/lang/String;Lnet/minecraft/advancements/CriterionTriggerInstance;)Lnet/minecraft/data/recipes/SingleItemRecipeBuilder; net/minecraft/data/recipes/SingleItemRecipeBuilder/unlockedBy (Ljava/lang/String;Lnet/minecraft/advancements/CriterionTriggerInstance;)Lnet/minecraft/data/recipes/SingleItemRecipeBuilder; +MD: net/minecraft/data/recipes/SingleItemRecipeBuilder/m_126132_ (Ljava/lang/String;Lnet/minecraft/advancements/CriterionTriggerInstance;)Lnet/minecraft/data/recipes/RecipeBuilder; net/minecraft/data/recipes/SingleItemRecipeBuilder/unlockedBy (Ljava/lang/String;Lnet/minecraft/advancements/CriterionTriggerInstance;)Lnet/minecraft/data/recipes/RecipeBuilder; +MD: net/minecraft/data/recipes/SingleItemRecipeBuilder/m_126140_ (Ljava/util/function/Consumer;Lnet/minecraft/resources/ResourceLocation;)V net/minecraft/data/recipes/SingleItemRecipeBuilder/save (Ljava/util/function/Consumer;Lnet/minecraft/resources/ResourceLocation;)V +MD: net/minecraft/data/recipes/SingleItemRecipeBuilder/m_126145_ (Ljava/lang/String;)Lnet/minecraft/data/recipes/RecipeBuilder; net/minecraft/data/recipes/SingleItemRecipeBuilder/group (Ljava/lang/String;)Lnet/minecraft/data/recipes/RecipeBuilder; +MD: net/minecraft/data/recipes/SingleItemRecipeBuilder/m_126145_ (Ljava/lang/String;)Lnet/minecraft/data/recipes/SingleItemRecipeBuilder; net/minecraft/data/recipes/SingleItemRecipeBuilder/group (Ljava/lang/String;)Lnet/minecraft/data/recipes/SingleItemRecipeBuilder; +MD: net/minecraft/data/recipes/SingleItemRecipeBuilder/m_126329_ (Lnet/minecraft/resources/ResourceLocation;)V net/minecraft/data/recipes/SingleItemRecipeBuilder/ensureValid (Lnet/minecraft/resources/ResourceLocation;)V +MD: net/minecraft/data/recipes/SingleItemRecipeBuilder/m_142372_ ()Lnet/minecraft/world/item/Item; net/minecraft/data/recipes/SingleItemRecipeBuilder/getResult ()Lnet/minecraft/world/item/Item; +MD: net/minecraft/data/recipes/SingleItemRecipeBuilder/m_245264_ (Lnet/minecraft/world/item/crafting/Ingredient;Lnet/minecraft/data/recipes/RecipeCategory;Lnet/minecraft/world/level/ItemLike;)Lnet/minecraft/data/recipes/SingleItemRecipeBuilder; net/minecraft/data/recipes/SingleItemRecipeBuilder/stonecutting (Lnet/minecraft/world/item/crafting/Ingredient;Lnet/minecraft/data/recipes/RecipeCategory;Lnet/minecraft/world/level/ItemLike;)Lnet/minecraft/data/recipes/SingleItemRecipeBuilder; +MD: net/minecraft/data/recipes/SingleItemRecipeBuilder/m_246944_ (Lnet/minecraft/world/item/crafting/Ingredient;Lnet/minecraft/data/recipes/RecipeCategory;Lnet/minecraft/world/level/ItemLike;I)Lnet/minecraft/data/recipes/SingleItemRecipeBuilder; net/minecraft/data/recipes/SingleItemRecipeBuilder/stonecutting (Lnet/minecraft/world/item/crafting/Ingredient;Lnet/minecraft/data/recipes/RecipeCategory;Lnet/minecraft/world/level/ItemLike;I)Lnet/minecraft/data/recipes/SingleItemRecipeBuilder; +MD: net/minecraft/data/recipes/SingleItemRecipeBuilder$Result/ (Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/world/item/crafting/RecipeSerializer;Ljava/lang/String;Lnet/minecraft/world/item/crafting/Ingredient;Lnet/minecraft/world/item/Item;ILnet/minecraft/advancements/Advancement$Builder;Lnet/minecraft/resources/ResourceLocation;)V net/minecraft/data/recipes/SingleItemRecipeBuilder$Result/ (Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/world/item/crafting/RecipeSerializer;Ljava/lang/String;Lnet/minecraft/world/item/crafting/Ingredient;Lnet/minecraft/world/item/Item;ILnet/minecraft/advancements/Advancement$Builder;Lnet/minecraft/resources/ResourceLocation;)V +MD: net/minecraft/data/recipes/SingleItemRecipeBuilder$Result/m_5860_ ()Lcom/google/gson/JsonObject; net/minecraft/data/recipes/SingleItemRecipeBuilder$Result/serializeAdvancement ()Lcom/google/gson/JsonObject; +MD: net/minecraft/data/recipes/SingleItemRecipeBuilder$Result/m_6445_ ()Lnet/minecraft/resources/ResourceLocation; net/minecraft/data/recipes/SingleItemRecipeBuilder$Result/getId ()Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/data/recipes/SingleItemRecipeBuilder$Result/m_6448_ ()Lnet/minecraft/resources/ResourceLocation; net/minecraft/data/recipes/SingleItemRecipeBuilder$Result/getAdvancementId ()Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/data/recipes/SingleItemRecipeBuilder$Result/m_6637_ ()Lnet/minecraft/world/item/crafting/RecipeSerializer; net/minecraft/data/recipes/SingleItemRecipeBuilder$Result/getType ()Lnet/minecraft/world/item/crafting/RecipeSerializer; +MD: net/minecraft/data/recipes/SingleItemRecipeBuilder$Result/m_7917_ (Lcom/google/gson/JsonObject;)V net/minecraft/data/recipes/SingleItemRecipeBuilder$Result/serializeRecipeData (Lcom/google/gson/JsonObject;)V +MD: net/minecraft/data/recipes/SmithingTransformRecipeBuilder/ (Lnet/minecraft/world/item/crafting/RecipeSerializer;Lnet/minecraft/world/item/crafting/Ingredient;Lnet/minecraft/world/item/crafting/Ingredient;Lnet/minecraft/world/item/crafting/Ingredient;Lnet/minecraft/data/recipes/RecipeCategory;Lnet/minecraft/world/item/Item;)V net/minecraft/data/recipes/SmithingTransformRecipeBuilder/ (Lnet/minecraft/world/item/crafting/RecipeSerializer;Lnet/minecraft/world/item/crafting/Ingredient;Lnet/minecraft/world/item/crafting/Ingredient;Lnet/minecraft/world/item/crafting/Ingredient;Lnet/minecraft/data/recipes/RecipeCategory;Lnet/minecraft/world/item/Item;)V +MD: net/minecraft/data/recipes/SmithingTransformRecipeBuilder/m_266260_ (Ljava/util/function/Consumer;Ljava/lang/String;)V net/minecraft/data/recipes/SmithingTransformRecipeBuilder/save (Ljava/util/function/Consumer;Ljava/lang/String;)V +MD: net/minecraft/data/recipes/SmithingTransformRecipeBuilder/m_266305_ (Lnet/minecraft/resources/ResourceLocation;)V net/minecraft/data/recipes/SmithingTransformRecipeBuilder/ensureValid (Lnet/minecraft/resources/ResourceLocation;)V +MD: net/minecraft/data/recipes/SmithingTransformRecipeBuilder/m_266371_ (Ljava/util/function/Consumer;Lnet/minecraft/resources/ResourceLocation;)V net/minecraft/data/recipes/SmithingTransformRecipeBuilder/save (Ljava/util/function/Consumer;Lnet/minecraft/resources/ResourceLocation;)V +MD: net/minecraft/data/recipes/SmithingTransformRecipeBuilder/m_266439_ (Ljava/lang/String;Lnet/minecraft/advancements/CriterionTriggerInstance;)Lnet/minecraft/data/recipes/SmithingTransformRecipeBuilder; net/minecraft/data/recipes/SmithingTransformRecipeBuilder/unlocks (Ljava/lang/String;Lnet/minecraft/advancements/CriterionTriggerInstance;)Lnet/minecraft/data/recipes/SmithingTransformRecipeBuilder; +MD: net/minecraft/data/recipes/SmithingTransformRecipeBuilder/m_266555_ (Lnet/minecraft/world/item/crafting/Ingredient;Lnet/minecraft/world/item/crafting/Ingredient;Lnet/minecraft/world/item/crafting/Ingredient;Lnet/minecraft/data/recipes/RecipeCategory;Lnet/minecraft/world/item/Item;)Lnet/minecraft/data/recipes/SmithingTransformRecipeBuilder; net/minecraft/data/recipes/SmithingTransformRecipeBuilder/smithing (Lnet/minecraft/world/item/crafting/Ingredient;Lnet/minecraft/world/item/crafting/Ingredient;Lnet/minecraft/world/item/crafting/Ingredient;Lnet/minecraft/data/recipes/RecipeCategory;Lnet/minecraft/world/item/Item;)Lnet/minecraft/data/recipes/SmithingTransformRecipeBuilder; +MD: net/minecraft/data/recipes/SmithingTransformRecipeBuilder$Result/ (Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/world/item/crafting/RecipeSerializer;Lnet/minecraft/world/item/crafting/Ingredient;Lnet/minecraft/world/item/crafting/Ingredient;Lnet/minecraft/world/item/crafting/Ingredient;Lnet/minecraft/world/item/Item;Lnet/minecraft/advancements/Advancement$Builder;Lnet/minecraft/resources/ResourceLocation;)V net/minecraft/data/recipes/SmithingTransformRecipeBuilder$Result/ (Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/world/item/crafting/RecipeSerializer;Lnet/minecraft/world/item/crafting/Ingredient;Lnet/minecraft/world/item/crafting/Ingredient;Lnet/minecraft/world/item/crafting/Ingredient;Lnet/minecraft/world/item/Item;Lnet/minecraft/advancements/Advancement$Builder;Lnet/minecraft/resources/ResourceLocation;)V +MD: net/minecraft/data/recipes/SmithingTransformRecipeBuilder$Result/equals (Ljava/lang/Object;)Z net/minecraft/data/recipes/SmithingTransformRecipeBuilder$Result/equals (Ljava/lang/Object;)Z +MD: net/minecraft/data/recipes/SmithingTransformRecipeBuilder$Result/f_265855_ ()Lnet/minecraft/advancements/Advancement$Builder; net/minecraft/data/recipes/SmithingTransformRecipeBuilder$Result/advancement ()Lnet/minecraft/advancements/Advancement$Builder; +MD: net/minecraft/data/recipes/SmithingTransformRecipeBuilder$Result/f_265903_ ()Lnet/minecraft/world/item/crafting/Ingredient; net/minecraft/data/recipes/SmithingTransformRecipeBuilder$Result/addition ()Lnet/minecraft/world/item/crafting/Ingredient; +MD: net/minecraft/data/recipes/SmithingTransformRecipeBuilder$Result/f_265962_ ()Lnet/minecraft/world/item/crafting/RecipeSerializer; net/minecraft/data/recipes/SmithingTransformRecipeBuilder$Result/type ()Lnet/minecraft/world/item/crafting/RecipeSerializer; +MD: net/minecraft/data/recipes/SmithingTransformRecipeBuilder$Result/f_265972_ ()Lnet/minecraft/world/item/Item; net/minecraft/data/recipes/SmithingTransformRecipeBuilder$Result/result ()Lnet/minecraft/world/item/Item; +MD: net/minecraft/data/recipes/SmithingTransformRecipeBuilder$Result/f_266002_ ()Lnet/minecraft/world/item/crafting/Ingredient; net/minecraft/data/recipes/SmithingTransformRecipeBuilder$Result/template ()Lnet/minecraft/world/item/crafting/Ingredient; +MD: net/minecraft/data/recipes/SmithingTransformRecipeBuilder$Result/f_266011_ ()Lnet/minecraft/resources/ResourceLocation; net/minecraft/data/recipes/SmithingTransformRecipeBuilder$Result/id ()Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/data/recipes/SmithingTransformRecipeBuilder$Result/f_266094_ ()Lnet/minecraft/resources/ResourceLocation; net/minecraft/data/recipes/SmithingTransformRecipeBuilder$Result/advancementId ()Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/data/recipes/SmithingTransformRecipeBuilder$Result/f_266112_ ()Lnet/minecraft/world/item/crafting/Ingredient; net/minecraft/data/recipes/SmithingTransformRecipeBuilder$Result/base ()Lnet/minecraft/world/item/crafting/Ingredient; +MD: net/minecraft/data/recipes/SmithingTransformRecipeBuilder$Result/hashCode ()I net/minecraft/data/recipes/SmithingTransformRecipeBuilder$Result/hashCode ()I +MD: net/minecraft/data/recipes/SmithingTransformRecipeBuilder$Result/m_5860_ ()Lcom/google/gson/JsonObject; net/minecraft/data/recipes/SmithingTransformRecipeBuilder$Result/serializeAdvancement ()Lcom/google/gson/JsonObject; +MD: net/minecraft/data/recipes/SmithingTransformRecipeBuilder$Result/m_6445_ ()Lnet/minecraft/resources/ResourceLocation; net/minecraft/data/recipes/SmithingTransformRecipeBuilder$Result/getId ()Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/data/recipes/SmithingTransformRecipeBuilder$Result/m_6448_ ()Lnet/minecraft/resources/ResourceLocation; net/minecraft/data/recipes/SmithingTransformRecipeBuilder$Result/getAdvancementId ()Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/data/recipes/SmithingTransformRecipeBuilder$Result/m_6637_ ()Lnet/minecraft/world/item/crafting/RecipeSerializer; net/minecraft/data/recipes/SmithingTransformRecipeBuilder$Result/getType ()Lnet/minecraft/world/item/crafting/RecipeSerializer; +MD: net/minecraft/data/recipes/SmithingTransformRecipeBuilder$Result/m_7917_ (Lcom/google/gson/JsonObject;)V net/minecraft/data/recipes/SmithingTransformRecipeBuilder$Result/serializeRecipeData (Lcom/google/gson/JsonObject;)V +MD: net/minecraft/data/recipes/SmithingTransformRecipeBuilder$Result/toString ()Ljava/lang/String; net/minecraft/data/recipes/SmithingTransformRecipeBuilder$Result/toString ()Ljava/lang/String; +MD: net/minecraft/data/recipes/SmithingTrimRecipeBuilder/ (Lnet/minecraft/world/item/crafting/RecipeSerializer;Lnet/minecraft/data/recipes/RecipeCategory;Lnet/minecraft/world/item/crafting/Ingredient;Lnet/minecraft/world/item/crafting/Ingredient;Lnet/minecraft/world/item/crafting/Ingredient;)V net/minecraft/data/recipes/SmithingTrimRecipeBuilder/ (Lnet/minecraft/world/item/crafting/RecipeSerializer;Lnet/minecraft/data/recipes/RecipeCategory;Lnet/minecraft/world/item/crafting/Ingredient;Lnet/minecraft/world/item/crafting/Ingredient;Lnet/minecraft/world/item/crafting/Ingredient;)V +MD: net/minecraft/data/recipes/SmithingTrimRecipeBuilder/m_266182_ (Lnet/minecraft/world/item/crafting/Ingredient;Lnet/minecraft/world/item/crafting/Ingredient;Lnet/minecraft/world/item/crafting/Ingredient;Lnet/minecraft/data/recipes/RecipeCategory;)Lnet/minecraft/data/recipes/SmithingTrimRecipeBuilder; net/minecraft/data/recipes/SmithingTrimRecipeBuilder/smithingTrim (Lnet/minecraft/world/item/crafting/Ingredient;Lnet/minecraft/world/item/crafting/Ingredient;Lnet/minecraft/world/item/crafting/Ingredient;Lnet/minecraft/data/recipes/RecipeCategory;)Lnet/minecraft/data/recipes/SmithingTrimRecipeBuilder; +MD: net/minecraft/data/recipes/SmithingTrimRecipeBuilder/m_266331_ (Ljava/lang/String;Lnet/minecraft/advancements/CriterionTriggerInstance;)Lnet/minecraft/data/recipes/SmithingTrimRecipeBuilder; net/minecraft/data/recipes/SmithingTrimRecipeBuilder/unlocks (Ljava/lang/String;Lnet/minecraft/advancements/CriterionTriggerInstance;)Lnet/minecraft/data/recipes/SmithingTrimRecipeBuilder; +MD: net/minecraft/data/recipes/SmithingTrimRecipeBuilder/m_266403_ (Ljava/util/function/Consumer;Lnet/minecraft/resources/ResourceLocation;)V net/minecraft/data/recipes/SmithingTrimRecipeBuilder/save (Ljava/util/function/Consumer;Lnet/minecraft/resources/ResourceLocation;)V +MD: net/minecraft/data/recipes/SmithingTrimRecipeBuilder/m_266593_ (Lnet/minecraft/resources/ResourceLocation;)V net/minecraft/data/recipes/SmithingTrimRecipeBuilder/ensureValid (Lnet/minecraft/resources/ResourceLocation;)V +MD: net/minecraft/data/recipes/SmithingTrimRecipeBuilder$Result/ (Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/world/item/crafting/RecipeSerializer;Lnet/minecraft/world/item/crafting/Ingredient;Lnet/minecraft/world/item/crafting/Ingredient;Lnet/minecraft/world/item/crafting/Ingredient;Lnet/minecraft/advancements/Advancement$Builder;Lnet/minecraft/resources/ResourceLocation;)V net/minecraft/data/recipes/SmithingTrimRecipeBuilder$Result/ (Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/world/item/crafting/RecipeSerializer;Lnet/minecraft/world/item/crafting/Ingredient;Lnet/minecraft/world/item/crafting/Ingredient;Lnet/minecraft/world/item/crafting/Ingredient;Lnet/minecraft/advancements/Advancement$Builder;Lnet/minecraft/resources/ResourceLocation;)V +MD: net/minecraft/data/recipes/SmithingTrimRecipeBuilder$Result/equals (Ljava/lang/Object;)Z net/minecraft/data/recipes/SmithingTrimRecipeBuilder$Result/equals (Ljava/lang/Object;)Z +MD: net/minecraft/data/recipes/SmithingTrimRecipeBuilder$Result/f_265865_ ()Lnet/minecraft/world/item/crafting/Ingredient; net/minecraft/data/recipes/SmithingTrimRecipeBuilder$Result/template ()Lnet/minecraft/world/item/crafting/Ingredient; +MD: net/minecraft/data/recipes/SmithingTrimRecipeBuilder$Result/f_265882_ ()Lnet/minecraft/resources/ResourceLocation; net/minecraft/data/recipes/SmithingTrimRecipeBuilder$Result/advancementId ()Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/data/recipes/SmithingTrimRecipeBuilder$Result/f_265961_ ()Lnet/minecraft/advancements/Advancement$Builder; net/minecraft/data/recipes/SmithingTrimRecipeBuilder$Result/advancement ()Lnet/minecraft/advancements/Advancement$Builder; +MD: net/minecraft/data/recipes/SmithingTrimRecipeBuilder$Result/f_265963_ ()Lnet/minecraft/resources/ResourceLocation; net/minecraft/data/recipes/SmithingTrimRecipeBuilder$Result/id ()Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/data/recipes/SmithingTrimRecipeBuilder$Result/f_266016_ ()Lnet/minecraft/world/item/crafting/Ingredient; net/minecraft/data/recipes/SmithingTrimRecipeBuilder$Result/addition ()Lnet/minecraft/world/item/crafting/Ingredient; +MD: net/minecraft/data/recipes/SmithingTrimRecipeBuilder$Result/f_266032_ ()Lnet/minecraft/world/item/crafting/Ingredient; net/minecraft/data/recipes/SmithingTrimRecipeBuilder$Result/base ()Lnet/minecraft/world/item/crafting/Ingredient; +MD: net/minecraft/data/recipes/SmithingTrimRecipeBuilder$Result/f_266055_ ()Lnet/minecraft/world/item/crafting/RecipeSerializer; net/minecraft/data/recipes/SmithingTrimRecipeBuilder$Result/type ()Lnet/minecraft/world/item/crafting/RecipeSerializer; +MD: net/minecraft/data/recipes/SmithingTrimRecipeBuilder$Result/hashCode ()I net/minecraft/data/recipes/SmithingTrimRecipeBuilder$Result/hashCode ()I +MD: net/minecraft/data/recipes/SmithingTrimRecipeBuilder$Result/m_5860_ ()Lcom/google/gson/JsonObject; net/minecraft/data/recipes/SmithingTrimRecipeBuilder$Result/serializeAdvancement ()Lcom/google/gson/JsonObject; +MD: net/minecraft/data/recipes/SmithingTrimRecipeBuilder$Result/m_6445_ ()Lnet/minecraft/resources/ResourceLocation; net/minecraft/data/recipes/SmithingTrimRecipeBuilder$Result/getId ()Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/data/recipes/SmithingTrimRecipeBuilder$Result/m_6448_ ()Lnet/minecraft/resources/ResourceLocation; net/minecraft/data/recipes/SmithingTrimRecipeBuilder$Result/getAdvancementId ()Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/data/recipes/SmithingTrimRecipeBuilder$Result/m_6637_ ()Lnet/minecraft/world/item/crafting/RecipeSerializer; net/minecraft/data/recipes/SmithingTrimRecipeBuilder$Result/getType ()Lnet/minecraft/world/item/crafting/RecipeSerializer; +MD: net/minecraft/data/recipes/SmithingTrimRecipeBuilder$Result/m_7917_ (Lcom/google/gson/JsonObject;)V net/minecraft/data/recipes/SmithingTrimRecipeBuilder$Result/serializeRecipeData (Lcom/google/gson/JsonObject;)V +MD: net/minecraft/data/recipes/SmithingTrimRecipeBuilder$Result/toString ()Ljava/lang/String; net/minecraft/data/recipes/SmithingTrimRecipeBuilder$Result/toString ()Ljava/lang/String; +MD: net/minecraft/data/recipes/SpecialRecipeBuilder/ (Lnet/minecraft/world/item/crafting/RecipeSerializer;)V net/minecraft/data/recipes/SpecialRecipeBuilder/ (Lnet/minecraft/world/item/crafting/RecipeSerializer;)V +MD: net/minecraft/data/recipes/SpecialRecipeBuilder/m_126359_ (Ljava/util/function/Consumer;Ljava/lang/String;)V net/minecraft/data/recipes/SpecialRecipeBuilder/save (Ljava/util/function/Consumer;Ljava/lang/String;)V +MD: net/minecraft/data/recipes/SpecialRecipeBuilder/m_245676_ (Lnet/minecraft/world/item/crafting/RecipeSerializer;)Lnet/minecraft/data/recipes/SpecialRecipeBuilder; net/minecraft/data/recipes/SpecialRecipeBuilder/special (Lnet/minecraft/world/item/crafting/RecipeSerializer;)Lnet/minecraft/data/recipes/SpecialRecipeBuilder; +MD: net/minecraft/data/recipes/SpecialRecipeBuilder$1/ (Lnet/minecraft/data/recipes/SpecialRecipeBuilder;Lnet/minecraft/world/item/crafting/CraftingBookCategory;Ljava/lang/String;)V net/minecraft/data/recipes/SpecialRecipeBuilder$1/ (Lnet/minecraft/data/recipes/SpecialRecipeBuilder;Lnet/minecraft/world/item/crafting/CraftingBookCategory;Ljava/lang/String;)V +MD: net/minecraft/data/recipes/SpecialRecipeBuilder$1/m_5860_ ()Lcom/google/gson/JsonObject; net/minecraft/data/recipes/SpecialRecipeBuilder$1/serializeAdvancement ()Lcom/google/gson/JsonObject; +MD: net/minecraft/data/recipes/SpecialRecipeBuilder$1/m_6445_ ()Lnet/minecraft/resources/ResourceLocation; net/minecraft/data/recipes/SpecialRecipeBuilder$1/getId ()Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/data/recipes/SpecialRecipeBuilder$1/m_6448_ ()Lnet/minecraft/resources/ResourceLocation; net/minecraft/data/recipes/SpecialRecipeBuilder$1/getAdvancementId ()Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/data/recipes/SpecialRecipeBuilder$1/m_6637_ ()Lnet/minecraft/world/item/crafting/RecipeSerializer; net/minecraft/data/recipes/SpecialRecipeBuilder$1/getType ()Lnet/minecraft/world/item/crafting/RecipeSerializer; +MD: net/minecraft/data/recipes/packs/BundleRecipeProvider/ (Lnet/minecraft/data/PackOutput;)V net/minecraft/data/recipes/packs/BundleRecipeProvider/ (Lnet/minecraft/data/PackOutput;)V +MD: net/minecraft/data/recipes/packs/BundleRecipeProvider/m_245200_ (Ljava/util/function/Consumer;)V net/minecraft/data/recipes/packs/BundleRecipeProvider/buildRecipes (Ljava/util/function/Consumer;)V +MD: net/minecraft/data/recipes/packs/VanillaRecipeProvider/ ()V net/minecraft/data/recipes/packs/VanillaRecipeProvider/ ()V +MD: net/minecraft/data/recipes/packs/VanillaRecipeProvider/ (Lnet/minecraft/data/PackOutput;)V net/minecraft/data/recipes/packs/VanillaRecipeProvider/ (Lnet/minecraft/data/PackOutput;)V +MD: net/minecraft/data/recipes/packs/VanillaRecipeProvider/m_213708_ (Lnet/minecraft/data/CachedOutput;)Ljava/util/concurrent/CompletableFuture; net/minecraft/data/recipes/packs/VanillaRecipeProvider/run (Lnet/minecraft/data/CachedOutput;)Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/data/recipes/packs/VanillaRecipeProvider/m_245200_ (Ljava/util/function/Consumer;)V net/minecraft/data/recipes/packs/VanillaRecipeProvider/buildRecipes (Ljava/util/function/Consumer;)V +MD: net/minecraft/data/recipes/packs/VanillaRecipeProvider/m_284142_ (Ljava/util/function/Consumer;Lnet/minecraft/world/item/Item;Lnet/minecraft/resources/ResourceLocation;)V net/minecraft/data/recipes/packs/VanillaRecipeProvider/lambda$buildRecipes$0 (Ljava/util/function/Consumer;Lnet/minecraft/world/item/Item;Lnet/minecraft/resources/ResourceLocation;)V +MD: net/minecraft/data/recipes/packs/VanillaRecipeProvider/m_284166_ (Lnet/minecraft/world/item/Item;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/data/recipes/packs/VanillaRecipeProvider/lambda$smithingTrims$1 (Lnet/minecraft/world/item/Item;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/data/recipes/packs/VanillaRecipeProvider/m_284239_ ()Ljava/util/Map; net/minecraft/data/recipes/packs/VanillaRecipeProvider/smithingTrims ()Ljava/util/Map; +MD: net/minecraft/data/registries/RegistriesDatapackGenerator/ ()V net/minecraft/data/registries/RegistriesDatapackGenerator/ ()V +MD: net/minecraft/data/registries/RegistriesDatapackGenerator/ (Lnet/minecraft/data/PackOutput;Ljava/util/concurrent/CompletableFuture;)V net/minecraft/data/registries/RegistriesDatapackGenerator/ (Lnet/minecraft/data/PackOutput;Ljava/util/concurrent/CompletableFuture;)V +MD: net/minecraft/data/registries/RegistriesDatapackGenerator/m_213708_ (Lnet/minecraft/data/CachedOutput;)Ljava/util/concurrent/CompletableFuture; net/minecraft/data/registries/RegistriesDatapackGenerator/run (Lnet/minecraft/data/CachedOutput;)Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/data/registries/RegistriesDatapackGenerator/m_254918_ (Lnet/minecraft/data/CachedOutput;Lnet/minecraft/core/HolderLookup$Provider;Lcom/mojang/serialization/DynamicOps;Lnet/minecraft/resources/RegistryDataLoader$RegistryData;)Ljava/util/Optional; net/minecraft/data/registries/RegistriesDatapackGenerator/dumpRegistryCap (Lnet/minecraft/data/CachedOutput;Lnet/minecraft/core/HolderLookup$Provider;Lcom/mojang/serialization/DynamicOps;Lnet/minecraft/resources/RegistryDataLoader$RegistryData;)Ljava/util/Optional; +MD: net/minecraft/data/registries/RegistriesDatapackGenerator/m_254950_ (Lnet/minecraft/data/CachedOutput;Lnet/minecraft/core/HolderLookup$Provider;)Ljava/util/concurrent/CompletionStage; net/minecraft/data/registries/RegistriesDatapackGenerator/lambda$run$2 (Lnet/minecraft/data/CachedOutput;Lnet/minecraft/core/HolderLookup$Provider;)Ljava/util/concurrent/CompletionStage; +MD: net/minecraft/data/registries/RegistriesDatapackGenerator/m_254960_ (Ljava/nio/file/Path;Ljava/lang/String;)V net/minecraft/data/registries/RegistriesDatapackGenerator/lambda$dumpValue$6 (Ljava/nio/file/Path;Ljava/lang/String;)V +MD: net/minecraft/data/registries/RegistriesDatapackGenerator/m_255112_ (I)[Ljava/util/concurrent/CompletableFuture; net/minecraft/data/registries/RegistriesDatapackGenerator/lambda$run$1 (I)[Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/data/registries/RegistriesDatapackGenerator/m_255115_ (Lnet/minecraft/resources/ResourceKey;Lnet/minecraft/data/CachedOutput;Lcom/mojang/serialization/DynamicOps;Lnet/minecraft/resources/RegistryDataLoader$RegistryData;Lnet/minecraft/core/HolderLookup$RegistryLookup;)Ljava/util/concurrent/CompletableFuture; net/minecraft/data/registries/RegistriesDatapackGenerator/lambda$dumpRegistryCap$5 (Lnet/minecraft/resources/ResourceKey;Lnet/minecraft/data/CachedOutput;Lcom/mojang/serialization/DynamicOps;Lnet/minecraft/resources/RegistryDataLoader$RegistryData;Lnet/minecraft/core/HolderLookup$RegistryLookup;)Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/data/registries/RegistriesDatapackGenerator/m_255177_ (I)[Ljava/util/concurrent/CompletableFuture; net/minecraft/data/registries/RegistriesDatapackGenerator/lambda$dumpRegistryCap$4 (I)[Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/data/registries/RegistriesDatapackGenerator/m_255283_ (Ljava/nio/file/Path;Lnet/minecraft/data/CachedOutput;Lcom/mojang/serialization/DynamicOps;Lcom/mojang/serialization/Encoder;Ljava/lang/Object;)Ljava/util/concurrent/CompletableFuture; net/minecraft/data/registries/RegistriesDatapackGenerator/dumpValue (Ljava/nio/file/Path;Lnet/minecraft/data/CachedOutput;Lcom/mojang/serialization/DynamicOps;Lcom/mojang/serialization/Encoder;Ljava/lang/Object;)Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/data/registries/RegistriesDatapackGenerator/m_255291_ (Lnet/minecraft/data/CachedOutput;Lnet/minecraft/core/HolderLookup$Provider;Lcom/mojang/serialization/DynamicOps;Lnet/minecraft/resources/RegistryDataLoader$RegistryData;)Ljava/util/stream/Stream; net/minecraft/data/registries/RegistriesDatapackGenerator/lambda$run$0 (Lnet/minecraft/data/CachedOutput;Lnet/minecraft/core/HolderLookup$Provider;Lcom/mojang/serialization/DynamicOps;Lnet/minecraft/resources/RegistryDataLoader$RegistryData;)Ljava/util/stream/Stream; +MD: net/minecraft/data/registries/RegistriesDatapackGenerator/m_255356_ (Lnet/minecraft/data/PackOutput$PathProvider;Lnet/minecraft/data/CachedOutput;Lcom/mojang/serialization/DynamicOps;Lnet/minecraft/resources/RegistryDataLoader$RegistryData;Lnet/minecraft/core/Holder$Reference;)Ljava/util/concurrent/CompletableFuture; net/minecraft/data/registries/RegistriesDatapackGenerator/lambda$dumpRegistryCap$3 (Lnet/minecraft/data/PackOutput$PathProvider;Lnet/minecraft/data/CachedOutput;Lcom/mojang/serialization/DynamicOps;Lnet/minecraft/resources/RegistryDataLoader$RegistryData;Lnet/minecraft/core/Holder$Reference;)Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/data/registries/RegistriesDatapackGenerator/m_6055_ ()Ljava/lang/String; net/minecraft/data/registries/RegistriesDatapackGenerator/getName ()Ljava/lang/String; +MD: net/minecraft/data/registries/VanillaRegistries/ ()V net/minecraft/data/registries/VanillaRegistries/ ()V +MD: net/minecraft/data/registries/VanillaRegistries/ ()V net/minecraft/data/registries/VanillaRegistries/ ()V +MD: net/minecraft/data/registries/VanillaRegistries/m_254911_ (Lnet/minecraft/core/HolderGetter;Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/resources/ResourceKey;)V net/minecraft/data/registries/VanillaRegistries/lambda$validateThatAllBiomeFeaturesHaveBiomeFilter$0 (Lnet/minecraft/core/HolderGetter;Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/resources/ResourceKey;)V +MD: net/minecraft/data/registries/VanillaRegistries/m_254975_ (Lnet/minecraft/world/level/levelgen/placement/PlacedFeature;)Z net/minecraft/data/registries/VanillaRegistries/validatePlacedFeature (Lnet/minecraft/world/level/levelgen/placement/PlacedFeature;)Z +MD: net/minecraft/data/registries/VanillaRegistries/m_254994_ (Lnet/minecraft/core/HolderGetter;Lnet/minecraft/core/Holder$Reference;)V net/minecraft/data/registries/VanillaRegistries/lambda$validateThatAllBiomeFeaturesHaveBiomeFilter$3 (Lnet/minecraft/core/HolderGetter;Lnet/minecraft/core/Holder$Reference;)V +MD: net/minecraft/data/registries/VanillaRegistries/m_255044_ (Lnet/minecraft/core/HolderGetter;Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/core/Holder$Reference;Lnet/minecraft/core/Holder;)V net/minecraft/data/registries/VanillaRegistries/lambda$validateThatAllBiomeFeaturesHaveBiomeFilter$2 (Lnet/minecraft/core/HolderGetter;Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/core/Holder$Reference;Lnet/minecraft/core/Holder;)V +MD: net/minecraft/data/registries/VanillaRegistries/m_255148_ (Lnet/minecraft/core/HolderLookup$Provider;)V net/minecraft/data/registries/VanillaRegistries/validateThatAllBiomeFeaturesHaveBiomeFilter (Lnet/minecraft/core/HolderLookup$Provider;)V +MD: net/minecraft/data/registries/VanillaRegistries/m_255281_ (Lnet/minecraft/core/Holder$Reference;Lnet/minecraft/world/level/levelgen/placement/PlacedFeature;)V net/minecraft/data/registries/VanillaRegistries/lambda$validateThatAllBiomeFeaturesHaveBiomeFilter$1 (Lnet/minecraft/core/Holder$Reference;Lnet/minecraft/world/level/levelgen/placement/PlacedFeature;)V +MD: net/minecraft/data/registries/VanillaRegistries/m_255371_ ()Lnet/minecraft/core/HolderLookup$Provider; net/minecraft/data/registries/VanillaRegistries/createLookup ()Lnet/minecraft/core/HolderLookup$Provider; +MD: net/minecraft/data/registries/VanillaRegistries/m_271867_ (Lnet/minecraft/core/HolderGetter;Lnet/minecraft/core/HolderLookup;)V net/minecraft/data/registries/VanillaRegistries/validateThatAllBiomeFeaturesHaveBiomeFilter (Lnet/minecraft/core/HolderGetter;Lnet/minecraft/core/HolderLookup;)V +MD: net/minecraft/data/structures/NbtToSnbt/ ()V net/minecraft/data/structures/NbtToSnbt/ ()V +MD: net/minecraft/data/structures/NbtToSnbt/ (Lnet/minecraft/data/PackOutput;Ljava/util/Collection;)V net/minecraft/data/structures/NbtToSnbt/ (Lnet/minecraft/data/PackOutput;Ljava/util/Collection;)V +MD: net/minecraft/data/structures/NbtToSnbt/m_126429_ (Ljava/nio/file/Path;)Z net/minecraft/data/structures/NbtToSnbt/lambda$run$0 (Ljava/nio/file/Path;)Z +MD: net/minecraft/data/structures/NbtToSnbt/m_126435_ (Ljava/nio/file/Path;Ljava/nio/file/Path;)Ljava/lang/String; net/minecraft/data/structures/NbtToSnbt/getName (Ljava/nio/file/Path;Ljava/nio/file/Path;)Ljava/lang/String; +MD: net/minecraft/data/structures/NbtToSnbt/m_213708_ (Lnet/minecraft/data/CachedOutput;)Ljava/util/concurrent/CompletableFuture; net/minecraft/data/structures/NbtToSnbt/run (Lnet/minecraft/data/CachedOutput;)Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/data/structures/NbtToSnbt/m_236377_ (Lnet/minecraft/data/CachedOutput;Ljava/nio/file/Path;Ljava/lang/String;)V net/minecraft/data/structures/NbtToSnbt/writeSnbt (Lnet/minecraft/data/CachedOutput;Ljava/nio/file/Path;Ljava/lang/String;)V +MD: net/minecraft/data/structures/NbtToSnbt/m_236381_ (Lnet/minecraft/data/CachedOutput;Ljava/nio/file/Path;Ljava/lang/String;Ljava/nio/file/Path;)Ljava/nio/file/Path; net/minecraft/data/structures/NbtToSnbt/convertStructure (Lnet/minecraft/data/CachedOutput;Ljava/nio/file/Path;Ljava/lang/String;Ljava/nio/file/Path;)Ljava/nio/file/Path; +MD: net/minecraft/data/structures/NbtToSnbt/m_252627_ (Lnet/minecraft/data/CachedOutput;Ljava/nio/file/Path;Ljava/nio/file/Path;Ljava/nio/file/Path;)Ljava/util/concurrent/CompletableFuture; net/minecraft/data/structures/NbtToSnbt/lambda$run$2 (Lnet/minecraft/data/CachedOutput;Ljava/nio/file/Path;Ljava/nio/file/Path;Ljava/nio/file/Path;)Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/data/structures/NbtToSnbt/m_252628_ (I)[Ljava/util/concurrent/CompletableFuture; net/minecraft/data/structures/NbtToSnbt/lambda$run$3 (I)[Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/data/structures/NbtToSnbt/m_252629_ (Ljava/util/concurrent/CompletableFuture;)Ljava/util/concurrent/CompletionStage; net/minecraft/data/structures/NbtToSnbt/lambda$run$5 (Ljava/util/concurrent/CompletableFuture;)Ljava/util/concurrent/CompletionStage; +MD: net/minecraft/data/structures/NbtToSnbt/m_252630_ (I)[Ljava/util/concurrent/CompletableFuture; net/minecraft/data/structures/NbtToSnbt/lambda$run$6 (I)[Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/data/structures/NbtToSnbt/m_252631_ (Ljava/nio/file/Path;Lnet/minecraft/data/CachedOutput;Ljava/nio/file/Path;)Ljava/util/concurrent/CompletableFuture; net/minecraft/data/structures/NbtToSnbt/lambda$run$4 (Ljava/nio/file/Path;Lnet/minecraft/data/CachedOutput;Ljava/nio/file/Path;)Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/data/structures/NbtToSnbt/m_252632_ (Lnet/minecraft/data/CachedOutput;Ljava/nio/file/Path;Ljava/nio/file/Path;Ljava/nio/file/Path;)V net/minecraft/data/structures/NbtToSnbt/lambda$run$1 (Lnet/minecraft/data/CachedOutput;Ljava/nio/file/Path;Ljava/nio/file/Path;Ljava/nio/file/Path;)V +MD: net/minecraft/data/structures/NbtToSnbt/m_6055_ ()Ljava/lang/String; net/minecraft/data/structures/NbtToSnbt/getName ()Ljava/lang/String; +MD: net/minecraft/data/structures/SnbtToNbt/ ()V net/minecraft/data/structures/SnbtToNbt/ ()V +MD: net/minecraft/data/structures/SnbtToNbt/ (Lnet/minecraft/data/PackOutput;Ljava/lang/Iterable;)V net/minecraft/data/structures/SnbtToNbt/ (Lnet/minecraft/data/PackOutput;Ljava/lang/Iterable;)V +MD: net/minecraft/data/structures/SnbtToNbt/m_126460_ (Ljava/lang/String;Lnet/minecraft/nbt/CompoundTag;)Lnet/minecraft/nbt/CompoundTag; net/minecraft/data/structures/SnbtToNbt/applyFilters (Ljava/lang/String;Lnet/minecraft/nbt/CompoundTag;)Lnet/minecraft/nbt/CompoundTag; +MD: net/minecraft/data/structures/SnbtToNbt/m_126463_ (Ljava/nio/file/Path;)Z net/minecraft/data/structures/SnbtToNbt/lambda$run$0 (Ljava/nio/file/Path;)Z +MD: net/minecraft/data/structures/SnbtToNbt/m_126465_ (Ljava/nio/file/Path;Ljava/lang/String;)Lnet/minecraft/data/structures/SnbtToNbt$TaskResult; net/minecraft/data/structures/SnbtToNbt/readStructure (Ljava/nio/file/Path;Ljava/lang/String;)Lnet/minecraft/data/structures/SnbtToNbt$TaskResult; +MD: net/minecraft/data/structures/SnbtToNbt/m_126468_ (Ljava/nio/file/Path;Ljava/nio/file/Path;)Ljava/lang/String; net/minecraft/data/structures/SnbtToNbt/getName (Ljava/nio/file/Path;Ljava/nio/file/Path;)Ljava/lang/String; +MD: net/minecraft/data/structures/SnbtToNbt/m_126475_ (Lnet/minecraft/data/structures/SnbtToNbt$Filter;)Lnet/minecraft/data/structures/SnbtToNbt; net/minecraft/data/structures/SnbtToNbt/addFilter (Lnet/minecraft/data/structures/SnbtToNbt$Filter;)Lnet/minecraft/data/structures/SnbtToNbt; +MD: net/minecraft/data/structures/SnbtToNbt/m_213708_ (Lnet/minecraft/data/CachedOutput;)Ljava/util/concurrent/CompletableFuture; net/minecraft/data/structures/SnbtToNbt/run (Lnet/minecraft/data/CachedOutput;)Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/data/structures/SnbtToNbt/m_236393_ (Lnet/minecraft/data/CachedOutput;Lnet/minecraft/data/structures/SnbtToNbt$TaskResult;Ljava/nio/file/Path;)V net/minecraft/data/structures/SnbtToNbt/storeStructureIfChanged (Lnet/minecraft/data/CachedOutput;Lnet/minecraft/data/structures/SnbtToNbt$TaskResult;Ljava/nio/file/Path;)V +MD: net/minecraft/data/structures/SnbtToNbt/m_252633_ (Ljava/nio/file/Path;Lnet/minecraft/data/CachedOutput;Ljava/nio/file/Path;Ljava/nio/file/Path;)Ljava/util/concurrent/CompletableFuture; net/minecraft/data/structures/SnbtToNbt/lambda$run$2 (Ljava/nio/file/Path;Lnet/minecraft/data/CachedOutput;Ljava/nio/file/Path;Ljava/nio/file/Path;)Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/data/structures/SnbtToNbt/m_252634_ (I)[Ljava/util/concurrent/CompletableFuture; net/minecraft/data/structures/SnbtToNbt/lambda$run$3 (I)[Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/data/structures/SnbtToNbt/m_252635_ (Ljava/nio/file/Path;Lnet/minecraft/data/CachedOutput;Ljava/nio/file/Path;)Ljava/util/concurrent/CompletableFuture; net/minecraft/data/structures/SnbtToNbt/lambda$run$4 (Ljava/nio/file/Path;Lnet/minecraft/data/CachedOutput;Ljava/nio/file/Path;)Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/data/structures/SnbtToNbt/m_252636_ (Ljava/nio/file/Path;Ljava/nio/file/Path;Lnet/minecraft/data/CachedOutput;Ljava/nio/file/Path;)V net/minecraft/data/structures/SnbtToNbt/lambda$run$1 (Ljava/nio/file/Path;Ljava/nio/file/Path;Lnet/minecraft/data/CachedOutput;Ljava/nio/file/Path;)V +MD: net/minecraft/data/structures/SnbtToNbt/m_252637_ (Ljava/util/concurrent/CompletableFuture;)Ljava/util/concurrent/CompletionStage; net/minecraft/data/structures/SnbtToNbt/lambda$run$5 (Ljava/util/concurrent/CompletableFuture;)Ljava/util/concurrent/CompletionStage; +MD: net/minecraft/data/structures/SnbtToNbt/m_6055_ ()Ljava/lang/String; net/minecraft/data/structures/SnbtToNbt/getName ()Ljava/lang/String; +MD: net/minecraft/data/structures/SnbtToNbt$Filter/m_6392_ (Ljava/lang/String;Lnet/minecraft/nbt/CompoundTag;)Lnet/minecraft/nbt/CompoundTag; net/minecraft/data/structures/SnbtToNbt$Filter/apply (Ljava/lang/String;Lnet/minecraft/nbt/CompoundTag;)Lnet/minecraft/nbt/CompoundTag; +MD: net/minecraft/data/structures/SnbtToNbt$StructureConversionException/ (Ljava/nio/file/Path;Ljava/lang/Throwable;)V net/minecraft/data/structures/SnbtToNbt$StructureConversionException/ (Ljava/nio/file/Path;Ljava/lang/Throwable;)V +MD: net/minecraft/data/structures/SnbtToNbt$TaskResult/ (Ljava/lang/String;[BLjava/lang/String;Lcom/google/common/hash/HashCode;)V net/minecraft/data/structures/SnbtToNbt$TaskResult/ (Ljava/lang/String;[BLjava/lang/String;Lcom/google/common/hash/HashCode;)V +MD: net/minecraft/data/structures/SnbtToNbt$TaskResult/equals (Ljava/lang/Object;)Z net/minecraft/data/structures/SnbtToNbt$TaskResult/equals (Ljava/lang/Object;)Z +MD: net/minecraft/data/structures/SnbtToNbt$TaskResult/f_126482_ ()Ljava/lang/String; net/minecraft/data/structures/SnbtToNbt$TaskResult/name ()Ljava/lang/String; +MD: net/minecraft/data/structures/SnbtToNbt$TaskResult/f_126483_ ()[B net/minecraft/data/structures/SnbtToNbt$TaskResult/payload ()[B +MD: net/minecraft/data/structures/SnbtToNbt$TaskResult/f_126484_ ()Ljava/lang/String; net/minecraft/data/structures/SnbtToNbt$TaskResult/snbtPayload ()Ljava/lang/String; +MD: net/minecraft/data/structures/SnbtToNbt$TaskResult/f_126485_ ()Lcom/google/common/hash/HashCode; net/minecraft/data/structures/SnbtToNbt$TaskResult/hash ()Lcom/google/common/hash/HashCode; +MD: net/minecraft/data/structures/SnbtToNbt$TaskResult/hashCode ()I net/minecraft/data/structures/SnbtToNbt$TaskResult/hashCode ()I +MD: net/minecraft/data/structures/SnbtToNbt$TaskResult/toString ()Ljava/lang/String; net/minecraft/data/structures/SnbtToNbt$TaskResult/toString ()Ljava/lang/String; +MD: net/minecraft/data/structures/StructureUpdater/ ()V net/minecraft/data/structures/StructureUpdater/ ()V +MD: net/minecraft/data/structures/StructureUpdater/ ()V net/minecraft/data/structures/StructureUpdater/ ()V +MD: net/minecraft/data/structures/StructureUpdater/m_176822_ (Ljava/lang/String;Lnet/minecraft/nbt/CompoundTag;)Lnet/minecraft/nbt/CompoundTag; net/minecraft/data/structures/StructureUpdater/update (Ljava/lang/String;Lnet/minecraft/nbt/CompoundTag;)Lnet/minecraft/nbt/CompoundTag; +MD: net/minecraft/data/structures/StructureUpdater/m_6392_ (Ljava/lang/String;Lnet/minecraft/nbt/CompoundTag;)Lnet/minecraft/nbt/CompoundTag; net/minecraft/data/structures/StructureUpdater/apply (Ljava/lang/String;Lnet/minecraft/nbt/CompoundTag;)Lnet/minecraft/nbt/CompoundTag; +MD: net/minecraft/data/tags/BannerPatternTagsProvider/ (Lnet/minecraft/data/PackOutput;Ljava/util/concurrent/CompletableFuture;)V net/minecraft/data/tags/BannerPatternTagsProvider/ (Lnet/minecraft/data/PackOutput;Ljava/util/concurrent/CompletableFuture;)V +MD: net/minecraft/data/tags/BannerPatternTagsProvider/m_6577_ (Lnet/minecraft/core/HolderLookup$Provider;)V net/minecraft/data/tags/BannerPatternTagsProvider/addTags (Lnet/minecraft/core/HolderLookup$Provider;)V +MD: net/minecraft/data/tags/BiomeTagsProvider/ (Lnet/minecraft/data/PackOutput;Ljava/util/concurrent/CompletableFuture;)V net/minecraft/data/tags/BiomeTagsProvider/ (Lnet/minecraft/data/PackOutput;Ljava/util/concurrent/CompletableFuture;)V +MD: net/minecraft/data/tags/BiomeTagsProvider/m_6577_ (Lnet/minecraft/core/HolderLookup$Provider;)V net/minecraft/data/tags/BiomeTagsProvider/addTags (Lnet/minecraft/core/HolderLookup$Provider;)V +MD: net/minecraft/data/tags/CatVariantTagsProvider/ (Lnet/minecraft/data/PackOutput;Ljava/util/concurrent/CompletableFuture;)V net/minecraft/data/tags/CatVariantTagsProvider/ (Lnet/minecraft/data/PackOutput;Ljava/util/concurrent/CompletableFuture;)V +MD: net/minecraft/data/tags/CatVariantTagsProvider/m_6577_ (Lnet/minecraft/core/HolderLookup$Provider;)V net/minecraft/data/tags/CatVariantTagsProvider/addTags (Lnet/minecraft/core/HolderLookup$Provider;)V +MD: net/minecraft/data/tags/DamageTypeTagsProvider/ (Lnet/minecraft/data/PackOutput;Ljava/util/concurrent/CompletableFuture;)V net/minecraft/data/tags/DamageTypeTagsProvider/ (Lnet/minecraft/data/PackOutput;Ljava/util/concurrent/CompletableFuture;)V +MD: net/minecraft/data/tags/DamageTypeTagsProvider/m_6577_ (Lnet/minecraft/core/HolderLookup$Provider;)V net/minecraft/data/tags/DamageTypeTagsProvider/addTags (Lnet/minecraft/core/HolderLookup$Provider;)V +MD: net/minecraft/data/tags/EntityTypeTagsProvider/ (Lnet/minecraft/data/PackOutput;Ljava/util/concurrent/CompletableFuture;)V net/minecraft/data/tags/EntityTypeTagsProvider/ (Lnet/minecraft/data/PackOutput;Ljava/util/concurrent/CompletableFuture;)V +MD: net/minecraft/data/tags/EntityTypeTagsProvider/m_255200_ (Lnet/minecraft/world/entity/EntityType;)Lnet/minecraft/resources/ResourceKey; net/minecraft/data/tags/EntityTypeTagsProvider/lambda$new$0 (Lnet/minecraft/world/entity/EntityType;)Lnet/minecraft/resources/ResourceKey; +MD: net/minecraft/data/tags/EntityTypeTagsProvider/m_6577_ (Lnet/minecraft/core/HolderLookup$Provider;)V net/minecraft/data/tags/EntityTypeTagsProvider/addTags (Lnet/minecraft/core/HolderLookup$Provider;)V +MD: net/minecraft/data/tags/FlatLevelGeneratorPresetTagsProvider/ (Lnet/minecraft/data/PackOutput;Ljava/util/concurrent/CompletableFuture;)V net/minecraft/data/tags/FlatLevelGeneratorPresetTagsProvider/ (Lnet/minecraft/data/PackOutput;Ljava/util/concurrent/CompletableFuture;)V +MD: net/minecraft/data/tags/FlatLevelGeneratorPresetTagsProvider/m_6577_ (Lnet/minecraft/core/HolderLookup$Provider;)V net/minecraft/data/tags/FlatLevelGeneratorPresetTagsProvider/addTags (Lnet/minecraft/core/HolderLookup$Provider;)V +MD: net/minecraft/data/tags/FluidTagsProvider/ (Lnet/minecraft/data/PackOutput;Ljava/util/concurrent/CompletableFuture;)V net/minecraft/data/tags/FluidTagsProvider/ (Lnet/minecraft/data/PackOutput;Ljava/util/concurrent/CompletableFuture;)V +MD: net/minecraft/data/tags/FluidTagsProvider/m_255019_ (Lnet/minecraft/world/level/material/Fluid;)Lnet/minecraft/resources/ResourceKey; net/minecraft/data/tags/FluidTagsProvider/lambda$new$0 (Lnet/minecraft/world/level/material/Fluid;)Lnet/minecraft/resources/ResourceKey; +MD: net/minecraft/data/tags/FluidTagsProvider/m_6577_ (Lnet/minecraft/core/HolderLookup$Provider;)V net/minecraft/data/tags/FluidTagsProvider/addTags (Lnet/minecraft/core/HolderLookup$Provider;)V +MD: net/minecraft/data/tags/GameEventTagsProvider/ ()V net/minecraft/data/tags/GameEventTagsProvider/ ()V +MD: net/minecraft/data/tags/GameEventTagsProvider/ (Lnet/minecraft/data/PackOutput;Ljava/util/concurrent/CompletableFuture;)V net/minecraft/data/tags/GameEventTagsProvider/ (Lnet/minecraft/data/PackOutput;Ljava/util/concurrent/CompletableFuture;)V +MD: net/minecraft/data/tags/GameEventTagsProvider/m_255151_ (Lnet/minecraft/world/level/gameevent/GameEvent;)Lnet/minecraft/resources/ResourceKey; net/minecraft/data/tags/GameEventTagsProvider/lambda$new$0 (Lnet/minecraft/world/level/gameevent/GameEvent;)Lnet/minecraft/resources/ResourceKey; +MD: net/minecraft/data/tags/GameEventTagsProvider/m_6577_ (Lnet/minecraft/core/HolderLookup$Provider;)V net/minecraft/data/tags/GameEventTagsProvider/addTags (Lnet/minecraft/core/HolderLookup$Provider;)V +MD: net/minecraft/data/tags/InstrumentTagsProvider/ (Lnet/minecraft/data/PackOutput;Ljava/util/concurrent/CompletableFuture;)V net/minecraft/data/tags/InstrumentTagsProvider/ (Lnet/minecraft/data/PackOutput;Ljava/util/concurrent/CompletableFuture;)V +MD: net/minecraft/data/tags/InstrumentTagsProvider/m_6577_ (Lnet/minecraft/core/HolderLookup$Provider;)V net/minecraft/data/tags/InstrumentTagsProvider/addTags (Lnet/minecraft/core/HolderLookup$Provider;)V +MD: net/minecraft/data/tags/IntrinsicHolderTagsProvider/ (Lnet/minecraft/data/PackOutput;Lnet/minecraft/resources/ResourceKey;Ljava/util/concurrent/CompletableFuture;Ljava/util/concurrent/CompletableFuture;Ljava/util/function/Function;)V net/minecraft/data/tags/IntrinsicHolderTagsProvider/ (Lnet/minecraft/data/PackOutput;Lnet/minecraft/resources/ResourceKey;Ljava/util/concurrent/CompletableFuture;Ljava/util/concurrent/CompletableFuture;Ljava/util/function/Function;)V +MD: net/minecraft/data/tags/IntrinsicHolderTagsProvider/ (Lnet/minecraft/data/PackOutput;Lnet/minecraft/resources/ResourceKey;Ljava/util/concurrent/CompletableFuture;Ljava/util/function/Function;)V net/minecraft/data/tags/IntrinsicHolderTagsProvider/ (Lnet/minecraft/data/PackOutput;Lnet/minecraft/resources/ResourceKey;Ljava/util/concurrent/CompletableFuture;Ljava/util/function/Function;)V +MD: net/minecraft/data/tags/IntrinsicHolderTagsProvider/m_206424_ (Lnet/minecraft/tags/TagKey;)Lnet/minecraft/data/tags/TagsProvider$TagAppender; net/minecraft/data/tags/IntrinsicHolderTagsProvider/tag (Lnet/minecraft/tags/TagKey;)Lnet/minecraft/data/tags/TagsProvider$TagAppender; +MD: net/minecraft/data/tags/IntrinsicHolderTagsProvider/m_206424_ (Lnet/minecraft/tags/TagKey;)Lnet/minecraft/data/tags/IntrinsicHolderTagsProvider$IntrinsicTagAppender; net/minecraft/data/tags/IntrinsicHolderTagsProvider/tag (Lnet/minecraft/tags/TagKey;)Lnet/minecraft/data/tags/IntrinsicHolderTagsProvider$IntrinsicTagAppender; +MD: net/minecraft/data/tags/IntrinsicHolderTagsProvider$IntrinsicTagAppender/ (Lnet/minecraft/tags/TagBuilder;Ljava/util/function/Function;)V net/minecraft/data/tags/IntrinsicHolderTagsProvider$IntrinsicTagAppender/ (Lnet/minecraft/tags/TagBuilder;Ljava/util/function/Function;)V +MD: net/minecraft/data/tags/IntrinsicHolderTagsProvider$IntrinsicTagAppender/m_206428_ (Lnet/minecraft/tags/TagKey;)Lnet/minecraft/data/tags/IntrinsicHolderTagsProvider$IntrinsicTagAppender; net/minecraft/data/tags/IntrinsicHolderTagsProvider$IntrinsicTagAppender/addTag (Lnet/minecraft/tags/TagKey;)Lnet/minecraft/data/tags/IntrinsicHolderTagsProvider$IntrinsicTagAppender; +MD: net/minecraft/data/tags/IntrinsicHolderTagsProvider$IntrinsicTagAppender/m_206428_ (Lnet/minecraft/tags/TagKey;)Lnet/minecraft/data/tags/TagsProvider$TagAppender; net/minecraft/data/tags/IntrinsicHolderTagsProvider$IntrinsicTagAppender/addTag (Lnet/minecraft/tags/TagKey;)Lnet/minecraft/data/tags/TagsProvider$TagAppender; +MD: net/minecraft/data/tags/IntrinsicHolderTagsProvider$IntrinsicTagAppender/m_255179_ ([Ljava/lang/Object;)Lnet/minecraft/data/tags/IntrinsicHolderTagsProvider$IntrinsicTagAppender; net/minecraft/data/tags/IntrinsicHolderTagsProvider$IntrinsicTagAppender/add ([Ljava/lang/Object;)Lnet/minecraft/data/tags/IntrinsicHolderTagsProvider$IntrinsicTagAppender; +MD: net/minecraft/data/tags/IntrinsicHolderTagsProvider$IntrinsicTagAppender/m_255245_ (Ljava/lang/Object;)Lnet/minecraft/data/tags/IntrinsicHolderTagsProvider$IntrinsicTagAppender; net/minecraft/data/tags/IntrinsicHolderTagsProvider$IntrinsicTagAppender/add (Ljava/lang/Object;)Lnet/minecraft/data/tags/IntrinsicHolderTagsProvider$IntrinsicTagAppender; +MD: net/minecraft/data/tags/ItemTagsProvider/ (Lnet/minecraft/data/PackOutput;Ljava/util/concurrent/CompletableFuture;Ljava/util/concurrent/CompletableFuture;Ljava/util/concurrent/CompletableFuture;)V net/minecraft/data/tags/ItemTagsProvider/ (Lnet/minecraft/data/PackOutput;Ljava/util/concurrent/CompletableFuture;Ljava/util/concurrent/CompletableFuture;Ljava/util/concurrent/CompletableFuture;)V +MD: net/minecraft/data/tags/ItemTagsProvider/ (Lnet/minecraft/data/PackOutput;Ljava/util/concurrent/CompletableFuture;Ljava/util/concurrent/CompletableFuture;)V net/minecraft/data/tags/ItemTagsProvider/ (Lnet/minecraft/data/PackOutput;Ljava/util/concurrent/CompletableFuture;Ljava/util/concurrent/CompletableFuture;)V +MD: net/minecraft/data/tags/ItemTagsProvider/m_206421_ (Lnet/minecraft/tags/TagKey;Lnet/minecraft/tags/TagKey;)V net/minecraft/data/tags/ItemTagsProvider/copy (Lnet/minecraft/tags/TagKey;Lnet/minecraft/tags/TagKey;)V +MD: net/minecraft/data/tags/ItemTagsProvider/m_255417_ (Lnet/minecraft/world/item/Item;)Lnet/minecraft/resources/ResourceKey; net/minecraft/data/tags/ItemTagsProvider/lambda$new$0 (Lnet/minecraft/world/item/Item;)Lnet/minecraft/resources/ResourceKey; +MD: net/minecraft/data/tags/ItemTagsProvider/m_274036_ (Lnet/minecraft/tags/TagKey;)Ljava/lang/IllegalStateException; net/minecraft/data/tags/ItemTagsProvider/lambda$createContentsProvider$2 (Lnet/minecraft/tags/TagKey;)Ljava/lang/IllegalStateException; +MD: net/minecraft/data/tags/ItemTagsProvider/m_274037_ (Lnet/minecraft/data/tags/TagsProvider$TagLookup;Lnet/minecraft/tags/TagKey;Lnet/minecraft/tags/TagKey;)V net/minecraft/data/tags/ItemTagsProvider/lambda$createContentsProvider$3 (Lnet/minecraft/data/tags/TagsProvider$TagLookup;Lnet/minecraft/tags/TagKey;Lnet/minecraft/tags/TagKey;)V +MD: net/minecraft/data/tags/ItemTagsProvider/m_274038_ (Lnet/minecraft/world/item/Item;)Lnet/minecraft/resources/ResourceKey; net/minecraft/data/tags/ItemTagsProvider/lambda$new$1 (Lnet/minecraft/world/item/Item;)Lnet/minecraft/resources/ResourceKey; +MD: net/minecraft/data/tags/ItemTagsProvider/m_274039_ (Lnet/minecraft/core/HolderLookup$Provider;Lnet/minecraft/data/tags/TagsProvider$TagLookup;)Lnet/minecraft/core/HolderLookup$Provider; net/minecraft/data/tags/ItemTagsProvider/lambda$createContentsProvider$4 (Lnet/minecraft/core/HolderLookup$Provider;Lnet/minecraft/data/tags/TagsProvider$TagLookup;)Lnet/minecraft/core/HolderLookup$Provider; +MD: net/minecraft/data/tags/ItemTagsProvider/m_274574_ ()Ljava/util/concurrent/CompletableFuture; net/minecraft/data/tags/ItemTagsProvider/createContentsProvider ()Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/data/tags/PaintingVariantTagsProvider/ (Lnet/minecraft/data/PackOutput;Ljava/util/concurrent/CompletableFuture;)V net/minecraft/data/tags/PaintingVariantTagsProvider/ (Lnet/minecraft/data/PackOutput;Ljava/util/concurrent/CompletableFuture;)V +MD: net/minecraft/data/tags/PaintingVariantTagsProvider/m_6577_ (Lnet/minecraft/core/HolderLookup$Provider;)V net/minecraft/data/tags/PaintingVariantTagsProvider/addTags (Lnet/minecraft/core/HolderLookup$Provider;)V +MD: net/minecraft/data/tags/PoiTypeTagsProvider/ (Lnet/minecraft/data/PackOutput;Ljava/util/concurrent/CompletableFuture;)V net/minecraft/data/tags/PoiTypeTagsProvider/ (Lnet/minecraft/data/PackOutput;Ljava/util/concurrent/CompletableFuture;)V +MD: net/minecraft/data/tags/PoiTypeTagsProvider/m_6577_ (Lnet/minecraft/core/HolderLookup$Provider;)V net/minecraft/data/tags/PoiTypeTagsProvider/addTags (Lnet/minecraft/core/HolderLookup$Provider;)V +MD: net/minecraft/data/tags/StructureTagsProvider/ (Lnet/minecraft/data/PackOutput;Ljava/util/concurrent/CompletableFuture;)V net/minecraft/data/tags/StructureTagsProvider/ (Lnet/minecraft/data/PackOutput;Ljava/util/concurrent/CompletableFuture;)V +MD: net/minecraft/data/tags/StructureTagsProvider/m_6577_ (Lnet/minecraft/core/HolderLookup$Provider;)V net/minecraft/data/tags/StructureTagsProvider/addTags (Lnet/minecraft/core/HolderLookup$Provider;)V +MD: net/minecraft/data/tags/TagsProvider/ ()V net/minecraft/data/tags/TagsProvider/ ()V +MD: net/minecraft/data/tags/TagsProvider/ (Lnet/minecraft/data/PackOutput;Lnet/minecraft/resources/ResourceKey;Ljava/util/concurrent/CompletableFuture;Ljava/util/concurrent/CompletableFuture;)V net/minecraft/data/tags/TagsProvider/ (Lnet/minecraft/data/PackOutput;Lnet/minecraft/resources/ResourceKey;Ljava/util/concurrent/CompletableFuture;Ljava/util/concurrent/CompletableFuture;)V +MD: net/minecraft/data/tags/TagsProvider/ (Lnet/minecraft/data/PackOutput;Lnet/minecraft/resources/ResourceKey;Ljava/util/concurrent/CompletableFuture;)V net/minecraft/data/tags/TagsProvider/ (Lnet/minecraft/data/PackOutput;Lnet/minecraft/resources/ResourceKey;Ljava/util/concurrent/CompletableFuture;)V +MD: net/minecraft/data/tags/TagsProvider/m_206424_ (Lnet/minecraft/tags/TagKey;)Lnet/minecraft/data/tags/TagsProvider$TagAppender; net/minecraft/data/tags/TagsProvider/tag (Lnet/minecraft/tags/TagKey;)Lnet/minecraft/data/tags/TagsProvider$TagAppender; +MD: net/minecraft/data/tags/TagsProvider/m_213708_ (Lnet/minecraft/data/CachedOutput;)Ljava/util/concurrent/CompletableFuture; net/minecraft/data/tags/TagsProvider/run (Lnet/minecraft/data/CachedOutput;)Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/data/tags/TagsProvider/m_236441_ (Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/tags/TagBuilder; net/minecraft/data/tags/TagsProvider/lambda$getOrCreateRawBuilder$8 (Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/tags/TagBuilder; +MD: net/minecraft/data/tags/TagsProvider/m_236451_ (Lnet/minecraft/tags/TagKey;)Lnet/minecraft/tags/TagBuilder; net/minecraft/data/tags/TagsProvider/getOrCreateRawBuilder (Lnet/minecraft/tags/TagKey;)Lnet/minecraft/tags/TagBuilder; +MD: net/minecraft/data/tags/TagsProvider/m_252638_ (I)[Ljava/util/concurrent/CompletableFuture; net/minecraft/data/tags/TagsProvider/lambda$run$6 (I)[Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/data/tags/TagsProvider/m_254780_ (Lnet/minecraft/core/HolderLookup$RegistryLookup;Lnet/minecraft/resources/ResourceLocation;)Z net/minecraft/data/tags/TagsProvider/lambda$run$2 (Lnet/minecraft/core/HolderLookup$RegistryLookup;Lnet/minecraft/resources/ResourceLocation;)Z +MD: net/minecraft/data/tags/TagsProvider/m_254781_ (Ljava/util/function/Predicate;Ljava/util/function/Predicate;Lnet/minecraft/data/CachedOutput;Ljava/util/Map$Entry;)Ljava/util/concurrent/CompletableFuture; net/minecraft/data/tags/TagsProvider/lambda$run$5 (Ljava/util/function/Predicate;Ljava/util/function/Predicate;Lnet/minecraft/data/CachedOutput;Ljava/util/Map$Entry;)Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/data/tags/TagsProvider/m_274040_ (Lnet/minecraft/core/HolderLookup$Provider;)Lnet/minecraft/core/HolderLookup$Provider; net/minecraft/data/tags/TagsProvider/lambda$createContentsProvider$11 (Lnet/minecraft/core/HolderLookup$Provider;)Lnet/minecraft/core/HolderLookup$Provider; +MD: net/minecraft/data/tags/TagsProvider/m_274041_ (Ljava/util/function/Predicate;Ljava/util/function/Predicate;Lnet/minecraft/tags/TagEntry;)Z net/minecraft/data/tags/TagsProvider/lambda$run$4 (Ljava/util/function/Predicate;Ljava/util/function/Predicate;Lnet/minecraft/tags/TagEntry;)Z +MD: net/minecraft/data/tags/TagsProvider/m_274042_ (Lnet/minecraft/tags/TagKey;)Ljava/util/Optional; net/minecraft/data/tags/TagsProvider/lambda$contentsGetter$9 (Lnet/minecraft/tags/TagKey;)Ljava/util/Optional; +MD: net/minecraft/data/tags/TagsProvider/m_274043_ (Lnet/minecraft/data/CachedOutput;Lnet/minecraft/data/tags/TagsProvider$1CombinedData;)Ljava/util/concurrent/CompletionStage; net/minecraft/data/tags/TagsProvider/lambda$run$7 (Lnet/minecraft/data/CachedOutput;Lnet/minecraft/data/tags/TagsProvider$1CombinedData;)Ljava/util/concurrent/CompletionStage; +MD: net/minecraft/data/tags/TagsProvider/m_274044_ (Lnet/minecraft/data/tags/TagsProvider$1CombinedData;Lnet/minecraft/resources/ResourceLocation;)Z net/minecraft/data/tags/TagsProvider/lambda$run$3 (Lnet/minecraft/data/tags/TagsProvider$1CombinedData;Lnet/minecraft/resources/ResourceLocation;)Z +MD: net/minecraft/data/tags/TagsProvider/m_274045_ (Ljava/lang/Void;)Lnet/minecraft/data/tags/TagsProvider$TagLookup; net/minecraft/data/tags/TagsProvider/lambda$contentsGetter$10 (Ljava/lang/Void;)Lnet/minecraft/data/tags/TagsProvider$TagLookup; +MD: net/minecraft/data/tags/TagsProvider/m_274046_ (Lnet/minecraft/core/HolderLookup$Provider;Lnet/minecraft/data/tags/TagsProvider$TagLookup;)Lnet/minecraft/data/tags/TagsProvider$1CombinedData; net/minecraft/data/tags/TagsProvider/lambda$run$1 (Lnet/minecraft/core/HolderLookup$Provider;Lnet/minecraft/data/tags/TagsProvider$TagLookup;)Lnet/minecraft/data/tags/TagsProvider$1CombinedData; +MD: net/minecraft/data/tags/TagsProvider/m_274426_ ()Ljava/util/concurrent/CompletableFuture; net/minecraft/data/tags/TagsProvider/contentsGetter ()Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/data/tags/TagsProvider/m_274574_ ()Ljava/util/concurrent/CompletableFuture; net/minecraft/data/tags/TagsProvider/createContentsProvider ()Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/data/tags/TagsProvider/m_275785_ (Lnet/minecraft/core/HolderLookup$Provider;)Lnet/minecraft/core/HolderLookup$Provider; net/minecraft/data/tags/TagsProvider/lambda$run$0 (Lnet/minecraft/core/HolderLookup$Provider;)Lnet/minecraft/core/HolderLookup$Provider; +MD: net/minecraft/data/tags/TagsProvider/m_6055_ ()Ljava/lang/String; net/minecraft/data/tags/TagsProvider/getName ()Ljava/lang/String; +MD: net/minecraft/data/tags/TagsProvider/m_6577_ (Lnet/minecraft/core/HolderLookup$Provider;)V net/minecraft/data/tags/TagsProvider/addTags (Lnet/minecraft/core/HolderLookup$Provider;)V +MD: net/minecraft/data/tags/TagsProvider$1CombinedData/ (Lnet/minecraft/core/HolderLookup$Provider;Lnet/minecraft/data/tags/TagsProvider$TagLookup;)V net/minecraft/data/tags/TagsProvider$1CombinedData/ (Lnet/minecraft/core/HolderLookup$Provider;Lnet/minecraft/data/tags/TagsProvider$TagLookup;)V +MD: net/minecraft/data/tags/TagsProvider$1CombinedData/equals (Ljava/lang/Object;)Z net/minecraft/data/tags/TagsProvider$1CombinedData/equals (Ljava/lang/Object;)Z +MD: net/minecraft/data/tags/TagsProvider$1CombinedData/f_273819_ ()Lnet/minecraft/data/tags/TagsProvider$TagLookup; net/minecraft/data/tags/TagsProvider$1CombinedData/parent ()Lnet/minecraft/data/tags/TagsProvider$TagLookup; +MD: net/minecraft/data/tags/TagsProvider$1CombinedData/f_273893_ ()Lnet/minecraft/core/HolderLookup$Provider; net/minecraft/data/tags/TagsProvider$1CombinedData/contents ()Lnet/minecraft/core/HolderLookup$Provider; +MD: net/minecraft/data/tags/TagsProvider$1CombinedData/hashCode ()I net/minecraft/data/tags/TagsProvider$1CombinedData/hashCode ()I +MD: net/minecraft/data/tags/TagsProvider$1CombinedData/toString ()Ljava/lang/String; net/minecraft/data/tags/TagsProvider$1CombinedData/toString ()Ljava/lang/String; +MD: net/minecraft/data/tags/TagsProvider$TagAppender/ (Lnet/minecraft/tags/TagBuilder;)V net/minecraft/data/tags/TagsProvider$TagAppender/ (Lnet/minecraft/tags/TagBuilder;)V +MD: net/minecraft/data/tags/TagsProvider$TagAppender/m_176839_ (Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/data/tags/TagsProvider$TagAppender; net/minecraft/data/tags/TagsProvider$TagAppender/addOptional (Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/data/tags/TagsProvider$TagAppender; +MD: net/minecraft/data/tags/TagsProvider$TagAppender/m_176841_ (Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/data/tags/TagsProvider$TagAppender; net/minecraft/data/tags/TagsProvider$TagAppender/addOptionalTag (Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/data/tags/TagsProvider$TagAppender; +MD: net/minecraft/data/tags/TagsProvider$TagAppender/m_206428_ (Lnet/minecraft/tags/TagKey;)Lnet/minecraft/data/tags/TagsProvider$TagAppender; net/minecraft/data/tags/TagsProvider$TagAppender/addTag (Lnet/minecraft/tags/TagKey;)Lnet/minecraft/data/tags/TagsProvider$TagAppender; +MD: net/minecraft/data/tags/TagsProvider$TagAppender/m_211101_ ([Lnet/minecraft/resources/ResourceKey;)Lnet/minecraft/data/tags/TagsProvider$TagAppender; net/minecraft/data/tags/TagsProvider$TagAppender/add ([Lnet/minecraft/resources/ResourceKey;)Lnet/minecraft/data/tags/TagsProvider$TagAppender; +MD: net/minecraft/data/tags/TagsProvider$TagAppender/m_255204_ (Lnet/minecraft/resources/ResourceKey;)Lnet/minecraft/data/tags/TagsProvider$TagAppender; net/minecraft/data/tags/TagsProvider$TagAppender/add (Lnet/minecraft/resources/ResourceKey;)Lnet/minecraft/data/tags/TagsProvider$TagAppender; +MD: net/minecraft/data/tags/TagsProvider$TagLookup/m_274455_ (Lnet/minecraft/tags/TagKey;)Z net/minecraft/data/tags/TagsProvider$TagLookup/contains (Lnet/minecraft/tags/TagKey;)Z +MD: net/minecraft/data/tags/TagsProvider$TagLookup/m_274467_ (Lnet/minecraft/tags/TagKey;)Ljava/util/Optional; net/minecraft/data/tags/TagsProvider$TagLookup/lambda$empty$0 (Lnet/minecraft/tags/TagKey;)Ljava/util/Optional; +MD: net/minecraft/data/tags/TagsProvider$TagLookup/m_274566_ ()Lnet/minecraft/data/tags/TagsProvider$TagLookup; net/minecraft/data/tags/TagsProvider$TagLookup/empty ()Lnet/minecraft/data/tags/TagsProvider$TagLookup; +MD: net/minecraft/data/tags/VanillaBlockTagsProvider/ (Lnet/minecraft/data/PackOutput;Ljava/util/concurrent/CompletableFuture;)V net/minecraft/data/tags/VanillaBlockTagsProvider/ (Lnet/minecraft/data/PackOutput;Ljava/util/concurrent/CompletableFuture;)V +MD: net/minecraft/data/tags/VanillaBlockTagsProvider/m_255382_ (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/resources/ResourceKey; net/minecraft/data/tags/VanillaBlockTagsProvider/lambda$new$0 (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/resources/ResourceKey; +MD: net/minecraft/data/tags/VanillaBlockTagsProvider/m_283987_ (Lnet/minecraft/world/level/block/Block;)Z net/minecraft/data/tags/VanillaBlockTagsProvider/lambda$addTags$1 (Lnet/minecraft/world/level/block/Block;)Z +MD: net/minecraft/data/tags/VanillaBlockTagsProvider/m_6577_ (Lnet/minecraft/core/HolderLookup$Provider;)V net/minecraft/data/tags/VanillaBlockTagsProvider/addTags (Lnet/minecraft/core/HolderLookup$Provider;)V +MD: net/minecraft/data/tags/VanillaItemTagsProvider/ (Lnet/minecraft/data/PackOutput;Ljava/util/concurrent/CompletableFuture;Ljava/util/concurrent/CompletableFuture;)V net/minecraft/data/tags/VanillaItemTagsProvider/ (Lnet/minecraft/data/PackOutput;Ljava/util/concurrent/CompletableFuture;Ljava/util/concurrent/CompletableFuture;)V +MD: net/minecraft/data/tags/VanillaItemTagsProvider/m_6577_ (Lnet/minecraft/core/HolderLookup$Provider;)V net/minecraft/data/tags/VanillaItemTagsProvider/addTags (Lnet/minecraft/core/HolderLookup$Provider;)V +MD: net/minecraft/data/tags/WorldPresetTagsProvider/ (Lnet/minecraft/data/PackOutput;Ljava/util/concurrent/CompletableFuture;)V net/minecraft/data/tags/WorldPresetTagsProvider/ (Lnet/minecraft/data/PackOutput;Ljava/util/concurrent/CompletableFuture;)V +MD: net/minecraft/data/tags/WorldPresetTagsProvider/m_6577_ (Lnet/minecraft/core/HolderLookup$Provider;)V net/minecraft/data/tags/WorldPresetTagsProvider/addTags (Lnet/minecraft/core/HolderLookup$Provider;)V +MD: net/minecraft/data/worldgen/AncientCityStructurePieces/ ()V net/minecraft/data/worldgen/AncientCityStructurePieces/ ()V +MD: net/minecraft/data/worldgen/AncientCityStructurePieces/ ()V net/minecraft/data/worldgen/AncientCityStructurePieces/ ()V +MD: net/minecraft/data/worldgen/AncientCityStructurePieces/m_255174_ (Lnet/minecraft/data/worldgen/BootstapContext;)V net/minecraft/data/worldgen/AncientCityStructurePieces/bootstrap (Lnet/minecraft/data/worldgen/BootstapContext;)V +MD: net/minecraft/data/worldgen/AncientCityStructurePools/ ()V net/minecraft/data/worldgen/AncientCityStructurePools/ ()V +MD: net/minecraft/data/worldgen/AncientCityStructurePools/m_255273_ (Lnet/minecraft/data/worldgen/BootstapContext;)V net/minecraft/data/worldgen/AncientCityStructurePools/bootstrap (Lnet/minecraft/data/worldgen/BootstapContext;)V +MD: net/minecraft/data/worldgen/BastionBridgePools/ ()V net/minecraft/data/worldgen/BastionBridgePools/ ()V +MD: net/minecraft/data/worldgen/BastionBridgePools/m_255231_ (Lnet/minecraft/data/worldgen/BootstapContext;)V net/minecraft/data/worldgen/BastionBridgePools/bootstrap (Lnet/minecraft/data/worldgen/BootstapContext;)V +MD: net/minecraft/data/worldgen/BastionHoglinStablePools/ ()V net/minecraft/data/worldgen/BastionHoglinStablePools/ ()V +MD: net/minecraft/data/worldgen/BastionHoglinStablePools/m_255342_ (Lnet/minecraft/data/worldgen/BootstapContext;)V net/minecraft/data/worldgen/BastionHoglinStablePools/bootstrap (Lnet/minecraft/data/worldgen/BootstapContext;)V +MD: net/minecraft/data/worldgen/BastionHousingUnitsPools/ ()V net/minecraft/data/worldgen/BastionHousingUnitsPools/ ()V +MD: net/minecraft/data/worldgen/BastionHousingUnitsPools/m_255349_ (Lnet/minecraft/data/worldgen/BootstapContext;)V net/minecraft/data/worldgen/BastionHousingUnitsPools/bootstrap (Lnet/minecraft/data/worldgen/BootstapContext;)V +MD: net/minecraft/data/worldgen/BastionPieces/ ()V net/minecraft/data/worldgen/BastionPieces/ ()V +MD: net/minecraft/data/worldgen/BastionPieces/ ()V net/minecraft/data/worldgen/BastionPieces/ ()V +MD: net/minecraft/data/worldgen/BastionPieces/m_255086_ (Lnet/minecraft/data/worldgen/BootstapContext;)V net/minecraft/data/worldgen/BastionPieces/bootstrap (Lnet/minecraft/data/worldgen/BootstapContext;)V +MD: net/minecraft/data/worldgen/BastionSharedPools/ ()V net/minecraft/data/worldgen/BastionSharedPools/ ()V +MD: net/minecraft/data/worldgen/BastionSharedPools/m_255140_ (Lnet/minecraft/data/worldgen/BootstapContext;)V net/minecraft/data/worldgen/BastionSharedPools/bootstrap (Lnet/minecraft/data/worldgen/BootstapContext;)V +MD: net/minecraft/data/worldgen/BastionTreasureRoomPools/ ()V net/minecraft/data/worldgen/BastionTreasureRoomPools/ ()V +MD: net/minecraft/data/worldgen/BastionTreasureRoomPools/m_255358_ (Lnet/minecraft/data/worldgen/BootstapContext;)V net/minecraft/data/worldgen/BastionTreasureRoomPools/bootstrap (Lnet/minecraft/data/worldgen/BootstapContext;)V +MD: net/minecraft/data/worldgen/BiomeDefaultFeatures/ ()V net/minecraft/data/worldgen/BiomeDefaultFeatures/ ()V +MD: net/minecraft/data/worldgen/BiomeDefaultFeatures/m_126680_ (Lnet/minecraft/world/level/biome/BiomeGenerationSettings$Builder;)V net/minecraft/data/worldgen/BiomeDefaultFeatures/addSavannaTrees (Lnet/minecraft/world/level/biome/BiomeGenerationSettings$Builder;)V +MD: net/minecraft/data/worldgen/BiomeDefaultFeatures/m_126682_ (Lnet/minecraft/world/level/biome/BiomeGenerationSettings$Builder;)V net/minecraft/data/worldgen/BiomeDefaultFeatures/addShatteredSavannaTrees (Lnet/minecraft/world/level/biome/BiomeGenerationSettings$Builder;)V +MD: net/minecraft/data/worldgen/BiomeDefaultFeatures/m_126684_ (Lnet/minecraft/world/level/biome/BiomeGenerationSettings$Builder;)V net/minecraft/data/worldgen/BiomeDefaultFeatures/addMountainTrees (Lnet/minecraft/world/level/biome/BiomeGenerationSettings$Builder;)V +MD: net/minecraft/data/worldgen/BiomeDefaultFeatures/m_126688_ (Lnet/minecraft/world/level/biome/BiomeGenerationSettings$Builder;)V net/minecraft/data/worldgen/BiomeDefaultFeatures/addJungleTrees (Lnet/minecraft/world/level/biome/BiomeGenerationSettings$Builder;)V +MD: net/minecraft/data/worldgen/BiomeDefaultFeatures/m_126692_ (Lnet/minecraft/world/level/biome/BiomeGenerationSettings$Builder;)V net/minecraft/data/worldgen/BiomeDefaultFeatures/addBadlandsTrees (Lnet/minecraft/world/level/biome/BiomeGenerationSettings$Builder;)V +MD: net/minecraft/data/worldgen/BiomeDefaultFeatures/m_126694_ (Lnet/minecraft/world/level/biome/BiomeGenerationSettings$Builder;)V net/minecraft/data/worldgen/BiomeDefaultFeatures/addSnowyTrees (Lnet/minecraft/world/level/biome/BiomeGenerationSettings$Builder;)V +MD: net/minecraft/data/worldgen/BiomeDefaultFeatures/m_126696_ (Lnet/minecraft/world/level/biome/BiomeGenerationSettings$Builder;)V net/minecraft/data/worldgen/BiomeDefaultFeatures/addJungleGrass (Lnet/minecraft/world/level/biome/BiomeGenerationSettings$Builder;)V +MD: net/minecraft/data/worldgen/BiomeDefaultFeatures/m_126698_ (Lnet/minecraft/world/level/biome/BiomeGenerationSettings$Builder;)V net/minecraft/data/worldgen/BiomeDefaultFeatures/addSavannaGrass (Lnet/minecraft/world/level/biome/BiomeGenerationSettings$Builder;)V +MD: net/minecraft/data/worldgen/BiomeDefaultFeatures/m_126700_ (Lnet/minecraft/world/level/biome/BiomeGenerationSettings$Builder;)V net/minecraft/data/worldgen/BiomeDefaultFeatures/addShatteredSavannaGrass (Lnet/minecraft/world/level/biome/BiomeGenerationSettings$Builder;)V +MD: net/minecraft/data/worldgen/BiomeDefaultFeatures/m_126702_ (Lnet/minecraft/world/level/biome/BiomeGenerationSettings$Builder;)V net/minecraft/data/worldgen/BiomeDefaultFeatures/addSavannaExtraGrass (Lnet/minecraft/world/level/biome/BiomeGenerationSettings$Builder;)V +MD: net/minecraft/data/worldgen/BiomeDefaultFeatures/m_126704_ (Lnet/minecraft/world/level/biome/BiomeGenerationSettings$Builder;)V net/minecraft/data/worldgen/BiomeDefaultFeatures/addBadlandGrass (Lnet/minecraft/world/level/biome/BiomeGenerationSettings$Builder;)V +MD: net/minecraft/data/worldgen/BiomeDefaultFeatures/m_126706_ (Lnet/minecraft/world/level/biome/BiomeGenerationSettings$Builder;)V net/minecraft/data/worldgen/BiomeDefaultFeatures/addForestFlowers (Lnet/minecraft/world/level/biome/BiomeGenerationSettings$Builder;)V +MD: net/minecraft/data/worldgen/BiomeDefaultFeatures/m_126708_ (Lnet/minecraft/world/level/biome/BiomeGenerationSettings$Builder;)V net/minecraft/data/worldgen/BiomeDefaultFeatures/addForestGrass (Lnet/minecraft/world/level/biome/BiomeGenerationSettings$Builder;)V +MD: net/minecraft/data/worldgen/BiomeDefaultFeatures/m_126710_ (Lnet/minecraft/world/level/biome/BiomeGenerationSettings$Builder;)V net/minecraft/data/worldgen/BiomeDefaultFeatures/addSwampVegetation (Lnet/minecraft/world/level/biome/BiomeGenerationSettings$Builder;)V +MD: net/minecraft/data/worldgen/BiomeDefaultFeatures/m_126712_ (Lnet/minecraft/world/level/biome/BiomeGenerationSettings$Builder;)V net/minecraft/data/worldgen/BiomeDefaultFeatures/addMushroomFieldVegetation (Lnet/minecraft/world/level/biome/BiomeGenerationSettings$Builder;)V +MD: net/minecraft/data/worldgen/BiomeDefaultFeatures/m_126714_ (Lnet/minecraft/world/level/biome/BiomeGenerationSettings$Builder;)V net/minecraft/data/worldgen/BiomeDefaultFeatures/addPlainVegetation (Lnet/minecraft/world/level/biome/BiomeGenerationSettings$Builder;)V +MD: net/minecraft/data/worldgen/BiomeDefaultFeatures/m_126716_ (Lnet/minecraft/world/level/biome/BiomeGenerationSettings$Builder;)V net/minecraft/data/worldgen/BiomeDefaultFeatures/addDesertVegetation (Lnet/minecraft/world/level/biome/BiomeGenerationSettings$Builder;)V +MD: net/minecraft/data/worldgen/BiomeDefaultFeatures/m_126718_ (Lnet/minecraft/world/level/biome/BiomeGenerationSettings$Builder;)V net/minecraft/data/worldgen/BiomeDefaultFeatures/addGiantTaigaVegetation (Lnet/minecraft/world/level/biome/BiomeGenerationSettings$Builder;)V +MD: net/minecraft/data/worldgen/BiomeDefaultFeatures/m_126720_ (Lnet/minecraft/world/level/biome/BiomeGenerationSettings$Builder;)V net/minecraft/data/worldgen/BiomeDefaultFeatures/addDefaultFlowers (Lnet/minecraft/world/level/biome/BiomeGenerationSettings$Builder;)V +MD: net/minecraft/data/worldgen/BiomeDefaultFeatures/m_126722_ (Lnet/minecraft/world/level/biome/BiomeGenerationSettings$Builder;)V net/minecraft/data/worldgen/BiomeDefaultFeatures/addWarmFlowers (Lnet/minecraft/world/level/biome/BiomeGenerationSettings$Builder;)V +MD: net/minecraft/data/worldgen/BiomeDefaultFeatures/m_126724_ (Lnet/minecraft/world/level/biome/BiomeGenerationSettings$Builder;)V net/minecraft/data/worldgen/BiomeDefaultFeatures/addDefaultGrass (Lnet/minecraft/world/level/biome/BiomeGenerationSettings$Builder;)V +MD: net/minecraft/data/worldgen/BiomeDefaultFeatures/m_126726_ (Lnet/minecraft/world/level/biome/BiomeGenerationSettings$Builder;)V net/minecraft/data/worldgen/BiomeDefaultFeatures/addTaigaGrass (Lnet/minecraft/world/level/biome/BiomeGenerationSettings$Builder;)V +MD: net/minecraft/data/worldgen/BiomeDefaultFeatures/m_126728_ (Lnet/minecraft/world/level/biome/BiomeGenerationSettings$Builder;)V net/minecraft/data/worldgen/BiomeDefaultFeatures/addPlainGrass (Lnet/minecraft/world/level/biome/BiomeGenerationSettings$Builder;)V +MD: net/minecraft/data/worldgen/BiomeDefaultFeatures/m_126730_ (Lnet/minecraft/world/level/biome/BiomeGenerationSettings$Builder;)V net/minecraft/data/worldgen/BiomeDefaultFeatures/addDefaultMushrooms (Lnet/minecraft/world/level/biome/BiomeGenerationSettings$Builder;)V +MD: net/minecraft/data/worldgen/BiomeDefaultFeatures/m_126734_ (Lnet/minecraft/world/level/biome/MobSpawnSettings$Builder;)V net/minecraft/data/worldgen/BiomeDefaultFeatures/farmAnimals (Lnet/minecraft/world/level/biome/MobSpawnSettings$Builder;)V +MD: net/minecraft/data/worldgen/BiomeDefaultFeatures/m_126736_ (Lnet/minecraft/world/level/biome/MobSpawnSettings$Builder;II)V net/minecraft/data/worldgen/BiomeDefaultFeatures/warmOceanSpawns (Lnet/minecraft/world/level/biome/MobSpawnSettings$Builder;II)V +MD: net/minecraft/data/worldgen/BiomeDefaultFeatures/m_126740_ (Lnet/minecraft/world/level/biome/MobSpawnSettings$Builder;III)V net/minecraft/data/worldgen/BiomeDefaultFeatures/oceanSpawns (Lnet/minecraft/world/level/biome/MobSpawnSettings$Builder;III)V +MD: net/minecraft/data/worldgen/BiomeDefaultFeatures/m_126745_ (Lnet/minecraft/world/level/biome/BiomeGenerationSettings$Builder;)V net/minecraft/data/worldgen/BiomeDefaultFeatures/addDefaultExtraVegetation (Lnet/minecraft/world/level/biome/BiomeGenerationSettings$Builder;)V +MD: net/minecraft/data/worldgen/BiomeDefaultFeatures/m_126747_ (Lnet/minecraft/world/level/biome/BiomeGenerationSettings$Builder;)V net/minecraft/data/worldgen/BiomeDefaultFeatures/addBadlandExtraVegetation (Lnet/minecraft/world/level/biome/BiomeGenerationSettings$Builder;)V +MD: net/minecraft/data/worldgen/BiomeDefaultFeatures/m_126751_ (Lnet/minecraft/world/level/biome/BiomeGenerationSettings$Builder;)V net/minecraft/data/worldgen/BiomeDefaultFeatures/addDesertExtraVegetation (Lnet/minecraft/world/level/biome/BiomeGenerationSettings$Builder;)V +MD: net/minecraft/data/worldgen/BiomeDefaultFeatures/m_126753_ (Lnet/minecraft/world/level/biome/BiomeGenerationSettings$Builder;)V net/minecraft/data/worldgen/BiomeDefaultFeatures/addSwampExtraVegetation (Lnet/minecraft/world/level/biome/BiomeGenerationSettings$Builder;)V +MD: net/minecraft/data/worldgen/BiomeDefaultFeatures/m_126755_ (Lnet/minecraft/world/level/biome/BiomeGenerationSettings$Builder;)V net/minecraft/data/worldgen/BiomeDefaultFeatures/addDesertExtraDecoration (Lnet/minecraft/world/level/biome/BiomeGenerationSettings$Builder;)V +MD: net/minecraft/data/worldgen/BiomeDefaultFeatures/m_126757_ (Lnet/minecraft/world/level/biome/BiomeGenerationSettings$Builder;)V net/minecraft/data/worldgen/BiomeDefaultFeatures/addFossilDecoration (Lnet/minecraft/world/level/biome/BiomeGenerationSettings$Builder;)V +MD: net/minecraft/data/worldgen/BiomeDefaultFeatures/m_126759_ (Lnet/minecraft/world/level/biome/BiomeGenerationSettings$Builder;)V net/minecraft/data/worldgen/BiomeDefaultFeatures/addColdOceanExtraVegetation (Lnet/minecraft/world/level/biome/BiomeGenerationSettings$Builder;)V +MD: net/minecraft/data/worldgen/BiomeDefaultFeatures/m_126761_ (Lnet/minecraft/world/level/biome/BiomeGenerationSettings$Builder;)V net/minecraft/data/worldgen/BiomeDefaultFeatures/addDefaultSeagrass (Lnet/minecraft/world/level/biome/BiomeGenerationSettings$Builder;)V +MD: net/minecraft/data/worldgen/BiomeDefaultFeatures/m_126763_ (Lnet/minecraft/world/level/biome/BiomeGenerationSettings$Builder;)V net/minecraft/data/worldgen/BiomeDefaultFeatures/addLukeWarmKelp (Lnet/minecraft/world/level/biome/BiomeGenerationSettings$Builder;)V +MD: net/minecraft/data/worldgen/BiomeDefaultFeatures/m_126765_ (Lnet/minecraft/world/level/biome/BiomeGenerationSettings$Builder;)V net/minecraft/data/worldgen/BiomeDefaultFeatures/addDefaultSprings (Lnet/minecraft/world/level/biome/BiomeGenerationSettings$Builder;)V +MD: net/minecraft/data/worldgen/BiomeDefaultFeatures/m_126767_ (Lnet/minecraft/world/level/biome/BiomeGenerationSettings$Builder;)V net/minecraft/data/worldgen/BiomeDefaultFeatures/addIcebergs (Lnet/minecraft/world/level/biome/BiomeGenerationSettings$Builder;)V +MD: net/minecraft/data/worldgen/BiomeDefaultFeatures/m_126769_ (Lnet/minecraft/world/level/biome/BiomeGenerationSettings$Builder;)V net/minecraft/data/worldgen/BiomeDefaultFeatures/addBlueIce (Lnet/minecraft/world/level/biome/BiomeGenerationSettings$Builder;)V +MD: net/minecraft/data/worldgen/BiomeDefaultFeatures/m_126771_ (Lnet/minecraft/world/level/biome/BiomeGenerationSettings$Builder;)V net/minecraft/data/worldgen/BiomeDefaultFeatures/addSurfaceFreezing (Lnet/minecraft/world/level/biome/BiomeGenerationSettings$Builder;)V +MD: net/minecraft/data/worldgen/BiomeDefaultFeatures/m_126773_ (Lnet/minecraft/world/level/biome/BiomeGenerationSettings$Builder;)V net/minecraft/data/worldgen/BiomeDefaultFeatures/addNetherDefaultOres (Lnet/minecraft/world/level/biome/BiomeGenerationSettings$Builder;)V +MD: net/minecraft/data/worldgen/BiomeDefaultFeatures/m_126775_ (Lnet/minecraft/world/level/biome/BiomeGenerationSettings$Builder;)V net/minecraft/data/worldgen/BiomeDefaultFeatures/addAncientDebris (Lnet/minecraft/world/level/biome/BiomeGenerationSettings$Builder;)V +MD: net/minecraft/data/worldgen/BiomeDefaultFeatures/m_126788_ (Lnet/minecraft/world/level/biome/MobSpawnSettings$Builder;)V net/minecraft/data/worldgen/BiomeDefaultFeatures/commonSpawns (Lnet/minecraft/world/level/biome/MobSpawnSettings$Builder;)V +MD: net/minecraft/data/worldgen/BiomeDefaultFeatures/m_126792_ (Lnet/minecraft/world/level/biome/MobSpawnSettings$Builder;)V net/minecraft/data/worldgen/BiomeDefaultFeatures/plainsSpawns (Lnet/minecraft/world/level/biome/MobSpawnSettings$Builder;)V +MD: net/minecraft/data/worldgen/BiomeDefaultFeatures/m_126796_ (Lnet/minecraft/world/level/biome/MobSpawnSettings$Builder;)V net/minecraft/data/worldgen/BiomeDefaultFeatures/snowySpawns (Lnet/minecraft/world/level/biome/MobSpawnSettings$Builder;)V +MD: net/minecraft/data/worldgen/BiomeDefaultFeatures/m_126800_ (Lnet/minecraft/world/level/biome/MobSpawnSettings$Builder;)V net/minecraft/data/worldgen/BiomeDefaultFeatures/desertSpawns (Lnet/minecraft/world/level/biome/MobSpawnSettings$Builder;)V +MD: net/minecraft/data/worldgen/BiomeDefaultFeatures/m_126804_ (Lnet/minecraft/world/level/biome/MobSpawnSettings$Builder;)V net/minecraft/data/worldgen/BiomeDefaultFeatures/mooshroomSpawns (Lnet/minecraft/world/level/biome/MobSpawnSettings$Builder;)V +MD: net/minecraft/data/worldgen/BiomeDefaultFeatures/m_126806_ (Lnet/minecraft/world/level/biome/BiomeGenerationSettings$Builder;)V net/minecraft/data/worldgen/BiomeDefaultFeatures/addDefaultMonsterRoom (Lnet/minecraft/world/level/biome/BiomeGenerationSettings$Builder;)V +MD: net/minecraft/data/worldgen/BiomeDefaultFeatures/m_126808_ (Lnet/minecraft/world/level/biome/MobSpawnSettings$Builder;)V net/minecraft/data/worldgen/BiomeDefaultFeatures/baseJungleSpawns (Lnet/minecraft/world/level/biome/MobSpawnSettings$Builder;)V +MD: net/minecraft/data/worldgen/BiomeDefaultFeatures/m_126810_ (Lnet/minecraft/world/level/biome/BiomeGenerationSettings$Builder;)V net/minecraft/data/worldgen/BiomeDefaultFeatures/addDefaultUndergroundVariety (Lnet/minecraft/world/level/biome/BiomeGenerationSettings$Builder;)V +MD: net/minecraft/data/worldgen/BiomeDefaultFeatures/m_126812_ (Lnet/minecraft/world/level/biome/MobSpawnSettings$Builder;)V net/minecraft/data/worldgen/BiomeDefaultFeatures/endSpawns (Lnet/minecraft/world/level/biome/MobSpawnSettings$Builder;)V +MD: net/minecraft/data/worldgen/BiomeDefaultFeatures/m_126814_ (Lnet/minecraft/world/level/biome/BiomeGenerationSettings$Builder;)V net/minecraft/data/worldgen/BiomeDefaultFeatures/addDefaultOres (Lnet/minecraft/world/level/biome/BiomeGenerationSettings$Builder;)V +MD: net/minecraft/data/worldgen/BiomeDefaultFeatures/m_126816_ (Lnet/minecraft/world/level/biome/BiomeGenerationSettings$Builder;)V net/minecraft/data/worldgen/BiomeDefaultFeatures/addExtraGold (Lnet/minecraft/world/level/biome/BiomeGenerationSettings$Builder;)V +MD: net/minecraft/data/worldgen/BiomeDefaultFeatures/m_126818_ (Lnet/minecraft/world/level/biome/BiomeGenerationSettings$Builder;)V net/minecraft/data/worldgen/BiomeDefaultFeatures/addExtraEmeralds (Lnet/minecraft/world/level/biome/BiomeGenerationSettings$Builder;)V +MD: net/minecraft/data/worldgen/BiomeDefaultFeatures/m_126820_ (Lnet/minecraft/world/level/biome/BiomeGenerationSettings$Builder;)V net/minecraft/data/worldgen/BiomeDefaultFeatures/addInfestedStone (Lnet/minecraft/world/level/biome/BiomeGenerationSettings$Builder;)V +MD: net/minecraft/data/worldgen/BiomeDefaultFeatures/m_126822_ (Lnet/minecraft/world/level/biome/BiomeGenerationSettings$Builder;)V net/minecraft/data/worldgen/BiomeDefaultFeatures/addDefaultSoftDisks (Lnet/minecraft/world/level/biome/BiomeGenerationSettings$Builder;)V +MD: net/minecraft/data/worldgen/BiomeDefaultFeatures/m_126824_ (Lnet/minecraft/world/level/biome/BiomeGenerationSettings$Builder;)V net/minecraft/data/worldgen/BiomeDefaultFeatures/addSwampClayDisk (Lnet/minecraft/world/level/biome/BiomeGenerationSettings$Builder;)V +MD: net/minecraft/data/worldgen/BiomeDefaultFeatures/m_126826_ (Lnet/minecraft/world/level/biome/BiomeGenerationSettings$Builder;)V net/minecraft/data/worldgen/BiomeDefaultFeatures/addMossyStoneBlock (Lnet/minecraft/world/level/biome/BiomeGenerationSettings$Builder;)V +MD: net/minecraft/data/worldgen/BiomeDefaultFeatures/m_126828_ (Lnet/minecraft/world/level/biome/BiomeGenerationSettings$Builder;)V net/minecraft/data/worldgen/BiomeDefaultFeatures/addFerns (Lnet/minecraft/world/level/biome/BiomeGenerationSettings$Builder;)V +MD: net/minecraft/data/worldgen/BiomeDefaultFeatures/m_126834_ (Lnet/minecraft/world/level/biome/BiomeGenerationSettings$Builder;)V net/minecraft/data/worldgen/BiomeDefaultFeatures/addLightBambooVegetation (Lnet/minecraft/world/level/biome/BiomeGenerationSettings$Builder;)V +MD: net/minecraft/data/worldgen/BiomeDefaultFeatures/m_126836_ (Lnet/minecraft/world/level/biome/BiomeGenerationSettings$Builder;)V net/minecraft/data/worldgen/BiomeDefaultFeatures/addBambooVegetation (Lnet/minecraft/world/level/biome/BiomeGenerationSettings$Builder;)V +MD: net/minecraft/data/worldgen/BiomeDefaultFeatures/m_126838_ (Lnet/minecraft/world/level/biome/BiomeGenerationSettings$Builder;)V net/minecraft/data/worldgen/BiomeDefaultFeatures/addTaigaTrees (Lnet/minecraft/world/level/biome/BiomeGenerationSettings$Builder;)V +MD: net/minecraft/data/worldgen/BiomeDefaultFeatures/m_126840_ (Lnet/minecraft/world/level/biome/BiomeGenerationSettings$Builder;)V net/minecraft/data/worldgen/BiomeDefaultFeatures/addWaterTrees (Lnet/minecraft/world/level/biome/BiomeGenerationSettings$Builder;)V +MD: net/minecraft/data/worldgen/BiomeDefaultFeatures/m_126842_ (Lnet/minecraft/world/level/biome/BiomeGenerationSettings$Builder;)V net/minecraft/data/worldgen/BiomeDefaultFeatures/addBirchTrees (Lnet/minecraft/world/level/biome/BiomeGenerationSettings$Builder;)V +MD: net/minecraft/data/worldgen/BiomeDefaultFeatures/m_126844_ (Lnet/minecraft/world/level/biome/BiomeGenerationSettings$Builder;)V net/minecraft/data/worldgen/BiomeDefaultFeatures/addOtherBirchTrees (Lnet/minecraft/world/level/biome/BiomeGenerationSettings$Builder;)V +MD: net/minecraft/data/worldgen/BiomeDefaultFeatures/m_126846_ (Lnet/minecraft/world/level/biome/BiomeGenerationSettings$Builder;)V net/minecraft/data/worldgen/BiomeDefaultFeatures/addTallBirchTrees (Lnet/minecraft/world/level/biome/BiomeGenerationSettings$Builder;)V +MD: net/minecraft/data/worldgen/BiomeDefaultFeatures/m_176850_ (Lnet/minecraft/world/level/biome/BiomeGenerationSettings$Builder;)V net/minecraft/data/worldgen/BiomeDefaultFeatures/addLushCavesVegetationFeatures (Lnet/minecraft/world/level/biome/BiomeGenerationSettings$Builder;)V +MD: net/minecraft/data/worldgen/BiomeDefaultFeatures/m_176852_ (Lnet/minecraft/world/level/biome/BiomeGenerationSettings$Builder;)V net/minecraft/data/worldgen/BiomeDefaultFeatures/addLushCavesSpecialOres (Lnet/minecraft/world/level/biome/BiomeGenerationSettings$Builder;)V +MD: net/minecraft/data/worldgen/BiomeDefaultFeatures/m_176857_ (Lnet/minecraft/world/level/biome/BiomeGenerationSettings$Builder;)V net/minecraft/data/worldgen/BiomeDefaultFeatures/addDefaultCrystalFormations (Lnet/minecraft/world/level/biome/BiomeGenerationSettings$Builder;)V +MD: net/minecraft/data/worldgen/BiomeDefaultFeatures/m_176859_ (Lnet/minecraft/world/level/biome/MobSpawnSettings$Builder;)V net/minecraft/data/worldgen/BiomeDefaultFeatures/caveSpawns (Lnet/minecraft/world/level/biome/MobSpawnSettings$Builder;)V +MD: net/minecraft/data/worldgen/BiomeDefaultFeatures/m_176863_ (Lnet/minecraft/world/level/biome/BiomeGenerationSettings$Builder;)V net/minecraft/data/worldgen/BiomeDefaultFeatures/addDripstone (Lnet/minecraft/world/level/biome/BiomeGenerationSettings$Builder;)V +MD: net/minecraft/data/worldgen/BiomeDefaultFeatures/m_194716_ (Lnet/minecraft/world/level/biome/BiomeGenerationSettings$Builder;)V net/minecraft/data/worldgen/BiomeDefaultFeatures/addMountainForestTrees (Lnet/minecraft/world/level/biome/BiomeGenerationSettings$Builder;)V +MD: net/minecraft/data/worldgen/BiomeDefaultFeatures/m_194718_ (Lnet/minecraft/world/level/biome/BiomeGenerationSettings$Builder;)V net/minecraft/data/worldgen/BiomeDefaultFeatures/addMeadowVegetation (Lnet/minecraft/world/level/biome/BiomeGenerationSettings$Builder;)V +MD: net/minecraft/data/worldgen/BiomeDefaultFeatures/m_194720_ (Lnet/minecraft/world/level/biome/BiomeGenerationSettings$Builder;)V net/minecraft/data/worldgen/BiomeDefaultFeatures/addDefaultCarversAndLakes (Lnet/minecraft/world/level/biome/BiomeGenerationSettings$Builder;)V +MD: net/minecraft/data/worldgen/BiomeDefaultFeatures/m_194722_ (Lnet/minecraft/world/level/biome/BiomeGenerationSettings$Builder;Z)V net/minecraft/data/worldgen/BiomeDefaultFeatures/addDefaultOres (Lnet/minecraft/world/level/biome/BiomeGenerationSettings$Builder;Z)V +MD: net/minecraft/data/worldgen/BiomeDefaultFeatures/m_194725_ (Lnet/minecraft/world/level/biome/MobSpawnSettings$Builder;IIIZ)V net/minecraft/data/worldgen/BiomeDefaultFeatures/monsters (Lnet/minecraft/world/level/biome/MobSpawnSettings$Builder;IIIZ)V +MD: net/minecraft/data/worldgen/BiomeDefaultFeatures/m_194731_ (Lnet/minecraft/world/level/biome/BiomeGenerationSettings$Builder;)V net/minecraft/data/worldgen/BiomeDefaultFeatures/addFrozenSprings (Lnet/minecraft/world/level/biome/BiomeGenerationSettings$Builder;)V +MD: net/minecraft/data/worldgen/BiomeDefaultFeatures/m_194733_ (Lnet/minecraft/world/level/biome/MobSpawnSettings$Builder;)V net/minecraft/data/worldgen/BiomeDefaultFeatures/dripstoneCavesSpawns (Lnet/minecraft/world/level/biome/MobSpawnSettings$Builder;)V +MD: net/minecraft/data/worldgen/BiomeDefaultFeatures/m_194735_ (Lnet/minecraft/world/level/biome/BiomeGenerationSettings$Builder;)V net/minecraft/data/worldgen/BiomeDefaultFeatures/addRareBerryBushes (Lnet/minecraft/world/level/biome/BiomeGenerationSettings$Builder;)V +MD: net/minecraft/data/worldgen/BiomeDefaultFeatures/m_194737_ (Lnet/minecraft/world/level/biome/BiomeGenerationSettings$Builder;)V net/minecraft/data/worldgen/BiomeDefaultFeatures/addCommonBerryBushes (Lnet/minecraft/world/level/biome/BiomeGenerationSettings$Builder;)V +MD: net/minecraft/data/worldgen/BiomeDefaultFeatures/m_194739_ (Lnet/minecraft/world/level/biome/BiomeGenerationSettings$Builder;)V net/minecraft/data/worldgen/BiomeDefaultFeatures/addGroveTrees (Lnet/minecraft/world/level/biome/BiomeGenerationSettings$Builder;)V +MD: net/minecraft/data/worldgen/BiomeDefaultFeatures/m_198927_ (Lnet/minecraft/world/level/biome/BiomeGenerationSettings$Builder;)V net/minecraft/data/worldgen/BiomeDefaultFeatures/addSparseJungleTrees (Lnet/minecraft/world/level/biome/BiomeGenerationSettings$Builder;)V +MD: net/minecraft/data/worldgen/BiomeDefaultFeatures/m_198929_ (Lnet/minecraft/world/level/biome/BiomeGenerationSettings$Builder;)V net/minecraft/data/worldgen/BiomeDefaultFeatures/addJungleMelons (Lnet/minecraft/world/level/biome/BiomeGenerationSettings$Builder;)V +MD: net/minecraft/data/worldgen/BiomeDefaultFeatures/m_198931_ (Lnet/minecraft/world/level/biome/BiomeGenerationSettings$Builder;)V net/minecraft/data/worldgen/BiomeDefaultFeatures/addSparseJungleMelons (Lnet/minecraft/world/level/biome/BiomeGenerationSettings$Builder;)V +MD: net/minecraft/data/worldgen/BiomeDefaultFeatures/m_198933_ (Lnet/minecraft/world/level/biome/BiomeGenerationSettings$Builder;)V net/minecraft/data/worldgen/BiomeDefaultFeatures/addJungleVines (Lnet/minecraft/world/level/biome/BiomeGenerationSettings$Builder;)V +MD: net/minecraft/data/worldgen/BiomeDefaultFeatures/m_236466_ (Lnet/minecraft/world/level/biome/BiomeGenerationSettings$Builder;)V net/minecraft/data/worldgen/BiomeDefaultFeatures/addMangroveSwampVegetation (Lnet/minecraft/world/level/biome/BiomeGenerationSettings$Builder;)V +MD: net/minecraft/data/worldgen/BiomeDefaultFeatures/m_236468_ (Lnet/minecraft/world/level/biome/BiomeGenerationSettings$Builder;)V net/minecraft/data/worldgen/BiomeDefaultFeatures/addSculk (Lnet/minecraft/world/level/biome/BiomeGenerationSettings$Builder;)V +MD: net/minecraft/data/worldgen/BiomeDefaultFeatures/m_236470_ (Lnet/minecraft/world/level/biome/BiomeGenerationSettings$Builder;)V net/minecraft/data/worldgen/BiomeDefaultFeatures/addMangroveSwampDisks (Lnet/minecraft/world/level/biome/BiomeGenerationSettings$Builder;)V +MD: net/minecraft/data/worldgen/BiomeDefaultFeatures/m_272148_ (Lnet/minecraft/world/level/biome/BiomeGenerationSettings$Builder;)V net/minecraft/data/worldgen/BiomeDefaultFeatures/addCherryGroveVegetation (Lnet/minecraft/world/level/biome/BiomeGenerationSettings$Builder;)V +MD: net/minecraft/data/worldgen/BootstapContext/m_255042_ (Lnet/minecraft/resources/ResourceKey;Ljava/lang/Object;Lcom/mojang/serialization/Lifecycle;)Lnet/minecraft/core/Holder$Reference; net/minecraft/data/worldgen/BootstapContext/register (Lnet/minecraft/resources/ResourceKey;Ljava/lang/Object;Lcom/mojang/serialization/Lifecycle;)Lnet/minecraft/core/Holder$Reference; +MD: net/minecraft/data/worldgen/BootstapContext/m_255272_ (Lnet/minecraft/resources/ResourceKey;Ljava/lang/Object;)Lnet/minecraft/core/Holder$Reference; net/minecraft/data/worldgen/BootstapContext/register (Lnet/minecraft/resources/ResourceKey;Ljava/lang/Object;)Lnet/minecraft/core/Holder$Reference; +MD: net/minecraft/data/worldgen/BootstapContext/m_255420_ (Lnet/minecraft/resources/ResourceKey;)Lnet/minecraft/core/HolderGetter; net/minecraft/data/worldgen/BootstapContext/lookup (Lnet/minecraft/resources/ResourceKey;)Lnet/minecraft/core/HolderGetter; +MD: net/minecraft/data/worldgen/Carvers/ ()V net/minecraft/data/worldgen/Carvers/ ()V +MD: net/minecraft/data/worldgen/Carvers/ ()V net/minecraft/data/worldgen/Carvers/ ()V +MD: net/minecraft/data/worldgen/Carvers/m_254873_ (Lnet/minecraft/data/worldgen/BootstapContext;)V net/minecraft/data/worldgen/Carvers/bootstrap (Lnet/minecraft/data/worldgen/BootstapContext;)V +MD: net/minecraft/data/worldgen/Carvers/m_254992_ (Ljava/lang/String;)Lnet/minecraft/resources/ResourceKey; net/minecraft/data/worldgen/Carvers/createKey (Ljava/lang/String;)Lnet/minecraft/resources/ResourceKey; +MD: net/minecraft/data/worldgen/DesertVillagePools/ ()V net/minecraft/data/worldgen/DesertVillagePools/ ()V +MD: net/minecraft/data/worldgen/DesertVillagePools/ ()V net/minecraft/data/worldgen/DesertVillagePools/ ()V +MD: net/minecraft/data/worldgen/DesertVillagePools/m_255365_ (Lnet/minecraft/data/worldgen/BootstapContext;)V net/minecraft/data/worldgen/DesertVillagePools/bootstrap (Lnet/minecraft/data/worldgen/BootstapContext;)V +MD: net/minecraft/data/worldgen/DimensionTypes/ ()V net/minecraft/data/worldgen/DimensionTypes/ ()V +MD: net/minecraft/data/worldgen/DimensionTypes/m_236473_ (Lnet/minecraft/data/worldgen/BootstapContext;)V net/minecraft/data/worldgen/DimensionTypes/bootstrap (Lnet/minecraft/data/worldgen/BootstapContext;)V +MD: net/minecraft/data/worldgen/NoiseData/ ()V net/minecraft/data/worldgen/NoiseData/ ()V +MD: net/minecraft/data/worldgen/NoiseData/ ()V net/minecraft/data/worldgen/NoiseData/ ()V +MD: net/minecraft/data/worldgen/NoiseData/m_236475_ (Lnet/minecraft/data/worldgen/BootstapContext;)V net/minecraft/data/worldgen/NoiseData/bootstrap (Lnet/minecraft/data/worldgen/BootstapContext;)V +MD: net/minecraft/data/worldgen/NoiseData/m_236477_ (Lnet/minecraft/data/worldgen/BootstapContext;ILnet/minecraft/resources/ResourceKey;Lnet/minecraft/resources/ResourceKey;Lnet/minecraft/resources/ResourceKey;Lnet/minecraft/resources/ResourceKey;)V net/minecraft/data/worldgen/NoiseData/registerBiomeNoises (Lnet/minecraft/data/worldgen/BootstapContext;ILnet/minecraft/resources/ResourceKey;Lnet/minecraft/resources/ResourceKey;Lnet/minecraft/resources/ResourceKey;Lnet/minecraft/resources/ResourceKey;)V +MD: net/minecraft/data/worldgen/NoiseData/m_255316_ (Lnet/minecraft/data/worldgen/BootstapContext;Lnet/minecraft/resources/ResourceKey;ID[D)V net/minecraft/data/worldgen/NoiseData/register (Lnet/minecraft/data/worldgen/BootstapContext;Lnet/minecraft/resources/ResourceKey;ID[D)V +MD: net/minecraft/data/worldgen/PillagerOutpostPools/ ()V net/minecraft/data/worldgen/PillagerOutpostPools/ ()V +MD: net/minecraft/data/worldgen/PillagerOutpostPools/ ()V net/minecraft/data/worldgen/PillagerOutpostPools/ ()V +MD: net/minecraft/data/worldgen/PillagerOutpostPools/m_255390_ (Lnet/minecraft/data/worldgen/BootstapContext;)V net/minecraft/data/worldgen/PillagerOutpostPools/bootstrap (Lnet/minecraft/data/worldgen/BootstapContext;)V +MD: net/minecraft/data/worldgen/PlainVillagePools/ ()V net/minecraft/data/worldgen/PlainVillagePools/ ()V +MD: net/minecraft/data/worldgen/PlainVillagePools/ ()V net/minecraft/data/worldgen/PlainVillagePools/ ()V +MD: net/minecraft/data/worldgen/PlainVillagePools/m_255172_ (Lnet/minecraft/data/worldgen/BootstapContext;)V net/minecraft/data/worldgen/PlainVillagePools/bootstrap (Lnet/minecraft/data/worldgen/BootstapContext;)V +MD: net/minecraft/data/worldgen/Pools/ ()V net/minecraft/data/worldgen/Pools/ ()V +MD: net/minecraft/data/worldgen/Pools/ ()V net/minecraft/data/worldgen/Pools/ ()V +MD: net/minecraft/data/worldgen/Pools/m_254871_ (Ljava/lang/String;)Lnet/minecraft/resources/ResourceKey; net/minecraft/data/worldgen/Pools/createKey (Ljava/lang/String;)Lnet/minecraft/resources/ResourceKey; +MD: net/minecraft/data/worldgen/Pools/m_255152_ (Lnet/minecraft/data/worldgen/BootstapContext;Ljava/lang/String;Lnet/minecraft/world/level/levelgen/structure/pools/StructureTemplatePool;)V net/minecraft/data/worldgen/Pools/register (Lnet/minecraft/data/worldgen/BootstapContext;Ljava/lang/String;Lnet/minecraft/world/level/levelgen/structure/pools/StructureTemplatePool;)V +MD: net/minecraft/data/worldgen/Pools/m_255181_ (Lnet/minecraft/data/worldgen/BootstapContext;)V net/minecraft/data/worldgen/Pools/bootstrap (Lnet/minecraft/data/worldgen/BootstapContext;)V +MD: net/minecraft/data/worldgen/ProcessorLists/ ()V net/minecraft/data/worldgen/ProcessorLists/ ()V +MD: net/minecraft/data/worldgen/ProcessorLists/ ()V net/minecraft/data/worldgen/ProcessorLists/ ()V +MD: net/minecraft/data/worldgen/ProcessorLists/m_254888_ (Lnet/minecraft/data/worldgen/BootstapContext;)V net/minecraft/data/worldgen/ProcessorLists/bootstrap (Lnet/minecraft/data/worldgen/BootstapContext;)V +MD: net/minecraft/data/worldgen/ProcessorLists/m_254991_ (Lnet/minecraft/data/worldgen/BootstapContext;Lnet/minecraft/resources/ResourceKey;Ljava/util/List;)V net/minecraft/data/worldgen/ProcessorLists/register (Lnet/minecraft/data/worldgen/BootstapContext;Lnet/minecraft/resources/ResourceKey;Ljava/util/List;)V +MD: net/minecraft/data/worldgen/ProcessorLists/m_255337_ (Ljava/lang/String;)Lnet/minecraft/resources/ResourceKey; net/minecraft/data/worldgen/ProcessorLists/createKey (Ljava/lang/String;)Lnet/minecraft/resources/ResourceKey; +MD: net/minecraft/data/worldgen/ProcessorLists/m_280251_ (Lnet/minecraft/resources/ResourceLocation;I)Lnet/minecraft/world/level/levelgen/structure/templatesystem/CappedProcessor; net/minecraft/data/worldgen/ProcessorLists/trailsArchyLootProcessor (Lnet/minecraft/resources/ResourceLocation;I)Lnet/minecraft/world/level/levelgen/structure/templatesystem/CappedProcessor; +MD: net/minecraft/data/worldgen/SavannaVillagePools/ ()V net/minecraft/data/worldgen/SavannaVillagePools/ ()V +MD: net/minecraft/data/worldgen/SavannaVillagePools/ ()V net/minecraft/data/worldgen/SavannaVillagePools/ ()V +MD: net/minecraft/data/worldgen/SavannaVillagePools/m_254944_ (Lnet/minecraft/data/worldgen/BootstapContext;)V net/minecraft/data/worldgen/SavannaVillagePools/bootstrap (Lnet/minecraft/data/worldgen/BootstapContext;)V +MD: net/minecraft/data/worldgen/SnowyVillagePools/ ()V net/minecraft/data/worldgen/SnowyVillagePools/ ()V +MD: net/minecraft/data/worldgen/SnowyVillagePools/ ()V net/minecraft/data/worldgen/SnowyVillagePools/ ()V +MD: net/minecraft/data/worldgen/SnowyVillagePools/m_255311_ (Lnet/minecraft/data/worldgen/BootstapContext;)V net/minecraft/data/worldgen/SnowyVillagePools/bootstrap (Lnet/minecraft/data/worldgen/BootstapContext;)V +MD: net/minecraft/data/worldgen/StructureSets/m_255117_ (Lnet/minecraft/data/worldgen/BootstapContext;)V net/minecraft/data/worldgen/StructureSets/bootstrap (Lnet/minecraft/data/worldgen/BootstapContext;)V +MD: net/minecraft/data/worldgen/Structures/ ()V net/minecraft/data/worldgen/Structures/ ()V +MD: net/minecraft/data/worldgen/Structures/m_236550_ (Lnet/minecraft/world/entity/MobCategory;)Lnet/minecraft/world/level/levelgen/structure/StructureSpawnOverride; net/minecraft/data/worldgen/Structures/lambda$bootstrap$1 (Lnet/minecraft/world/entity/MobCategory;)Lnet/minecraft/world/level/levelgen/structure/StructureSpawnOverride; +MD: net/minecraft/data/worldgen/Structures/m_236554_ (Lnet/minecraft/world/entity/MobCategory;)Lnet/minecraft/world/entity/MobCategory; net/minecraft/data/worldgen/Structures/lambda$bootstrap$0 (Lnet/minecraft/world/entity/MobCategory;)Lnet/minecraft/world/entity/MobCategory; +MD: net/minecraft/data/worldgen/Structures/m_255028_ (Lnet/minecraft/core/HolderSet;Ljava/util/Map;Lnet/minecraft/world/level/levelgen/GenerationStep$Decoration;Lnet/minecraft/world/level/levelgen/structure/TerrainAdjustment;)Lnet/minecraft/world/level/levelgen/structure/Structure$StructureSettings; net/minecraft/data/worldgen/Structures/structure (Lnet/minecraft/core/HolderSet;Ljava/util/Map;Lnet/minecraft/world/level/levelgen/GenerationStep$Decoration;Lnet/minecraft/world/level/levelgen/structure/TerrainAdjustment;)Lnet/minecraft/world/level/levelgen/structure/Structure$StructureSettings; +MD: net/minecraft/data/worldgen/Structures/m_255131_ (Lnet/minecraft/core/HolderSet;Lnet/minecraft/world/level/levelgen/GenerationStep$Decoration;Lnet/minecraft/world/level/levelgen/structure/TerrainAdjustment;)Lnet/minecraft/world/level/levelgen/structure/Structure$StructureSettings; net/minecraft/data/worldgen/Structures/structure (Lnet/minecraft/core/HolderSet;Lnet/minecraft/world/level/levelgen/GenerationStep$Decoration;Lnet/minecraft/world/level/levelgen/structure/TerrainAdjustment;)Lnet/minecraft/world/level/levelgen/structure/Structure$StructureSettings; +MD: net/minecraft/data/worldgen/Structures/m_255238_ (Lnet/minecraft/core/HolderSet;Lnet/minecraft/world/level/levelgen/structure/TerrainAdjustment;)Lnet/minecraft/world/level/levelgen/structure/Structure$StructureSettings; net/minecraft/data/worldgen/Structures/structure (Lnet/minecraft/core/HolderSet;Lnet/minecraft/world/level/levelgen/structure/TerrainAdjustment;)Lnet/minecraft/world/level/levelgen/structure/Structure$StructureSettings; +MD: net/minecraft/data/worldgen/Structures/m_255324_ (Lnet/minecraft/data/worldgen/BootstapContext;)V net/minecraft/data/worldgen/Structures/bootstrap (Lnet/minecraft/data/worldgen/BootstapContext;)V +MD: net/minecraft/data/worldgen/SurfaceRuleData/ ()V net/minecraft/data/worldgen/SurfaceRuleData/ ()V +MD: net/minecraft/data/worldgen/SurfaceRuleData/ ()V net/minecraft/data/worldgen/SurfaceRuleData/ ()V +MD: net/minecraft/data/worldgen/SurfaceRuleData/m_194807_ ()Lnet/minecraft/world/level/levelgen/SurfaceRules$RuleSource; net/minecraft/data/worldgen/SurfaceRuleData/overworld ()Lnet/minecraft/world/level/levelgen/SurfaceRules$RuleSource; +MD: net/minecraft/data/worldgen/SurfaceRuleData/m_194808_ (D)Lnet/minecraft/world/level/levelgen/SurfaceRules$ConditionSource; net/minecraft/data/worldgen/SurfaceRuleData/surfaceNoiseAbove (D)Lnet/minecraft/world/level/levelgen/SurfaceRules$ConditionSource; +MD: net/minecraft/data/worldgen/SurfaceRuleData/m_194810_ (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/levelgen/SurfaceRules$RuleSource; net/minecraft/data/worldgen/SurfaceRuleData/makeStateRule (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/levelgen/SurfaceRules$RuleSource; +MD: net/minecraft/data/worldgen/SurfaceRuleData/m_194812_ ()Lnet/minecraft/world/level/levelgen/SurfaceRules$RuleSource; net/minecraft/data/worldgen/SurfaceRuleData/nether ()Lnet/minecraft/world/level/levelgen/SurfaceRules$RuleSource; +MD: net/minecraft/data/worldgen/SurfaceRuleData/m_194813_ ()Lnet/minecraft/world/level/levelgen/SurfaceRules$RuleSource; net/minecraft/data/worldgen/SurfaceRuleData/end ()Lnet/minecraft/world/level/levelgen/SurfaceRules$RuleSource; +MD: net/minecraft/data/worldgen/SurfaceRuleData/m_198378_ (I)[Lnet/minecraft/world/level/levelgen/SurfaceRules$RuleSource; net/minecraft/data/worldgen/SurfaceRuleData/lambda$overworldLike$0 (I)[Lnet/minecraft/world/level/levelgen/SurfaceRules$RuleSource; +MD: net/minecraft/data/worldgen/SurfaceRuleData/m_198380_ (ZZZ)Lnet/minecraft/world/level/levelgen/SurfaceRules$RuleSource; net/minecraft/data/worldgen/SurfaceRuleData/overworldLike (ZZZ)Lnet/minecraft/world/level/levelgen/SurfaceRules$RuleSource; +MD: net/minecraft/data/worldgen/SurfaceRuleData/m_238362_ ()Lnet/minecraft/world/level/levelgen/SurfaceRules$RuleSource; net/minecraft/data/worldgen/SurfaceRuleData/air ()Lnet/minecraft/world/level/levelgen/SurfaceRules$RuleSource; +MD: net/minecraft/data/worldgen/TaigaVillagePools/ ()V net/minecraft/data/worldgen/TaigaVillagePools/ ()V +MD: net/minecraft/data/worldgen/TaigaVillagePools/ ()V net/minecraft/data/worldgen/TaigaVillagePools/ ()V +MD: net/minecraft/data/worldgen/TaigaVillagePools/m_255354_ (Lnet/minecraft/data/worldgen/BootstapContext;)V net/minecraft/data/worldgen/TaigaVillagePools/bootstrap (Lnet/minecraft/data/worldgen/BootstapContext;)V +MD: net/minecraft/data/worldgen/TerrainProvider/ ()V net/minecraft/data/worldgen/TerrainProvider/ ()V +MD: net/minecraft/data/worldgen/TerrainProvider/ ()V net/minecraft/data/worldgen/TerrainProvider/ ()V +MD: net/minecraft/data/worldgen/TerrainProvider/m_236566_ (F)F net/minecraft/data/worldgen/TerrainProvider/calculateMountainRidgeZeroContinentalnessPoint (F)F +MD: net/minecraft/data/worldgen/TerrainProvider/m_236568_ (FFF)F net/minecraft/data/worldgen/TerrainProvider/mountainContinentalness (FFF)F +MD: net/minecraft/data/worldgen/TerrainProvider/m_236572_ (FFFF)F net/minecraft/data/worldgen/TerrainProvider/calculateSlope (FFFF)F +MD: net/minecraft/data/worldgen/TerrainProvider/m_236577_ (Lnet/minecraft/util/ToFloatFunction;FFFFFFLnet/minecraft/util/ToFloatFunction;)Lnet/minecraft/util/CubicSpline; net/minecraft/data/worldgen/TerrainProvider/ridgeSpline (Lnet/minecraft/util/ToFloatFunction;FFFFFFLnet/minecraft/util/ToFloatFunction;)Lnet/minecraft/util/CubicSpline; +MD: net/minecraft/data/worldgen/TerrainProvider/m_236586_ (Lnet/minecraft/util/ToFloatFunction;FLnet/minecraft/util/ToFloatFunction;)Lnet/minecraft/util/CubicSpline; net/minecraft/data/worldgen/TerrainProvider/buildWeirdnessJaggednessSpline (Lnet/minecraft/util/ToFloatFunction;FLnet/minecraft/util/ToFloatFunction;)Lnet/minecraft/util/CubicSpline; +MD: net/minecraft/data/worldgen/TerrainProvider/m_236590_ (Lnet/minecraft/util/ToFloatFunction;FZLnet/minecraft/util/ToFloatFunction;)Lnet/minecraft/util/CubicSpline; net/minecraft/data/worldgen/TerrainProvider/buildMountainRidgeSplineWithPoints (Lnet/minecraft/util/ToFloatFunction;FZLnet/minecraft/util/ToFloatFunction;)Lnet/minecraft/util/CubicSpline; +MD: net/minecraft/data/worldgen/TerrainProvider/m_236595_ (Lnet/minecraft/util/ToFloatFunction;Lnet/minecraft/util/ToFloatFunction;FFFFFFZZLnet/minecraft/util/ToFloatFunction;)Lnet/minecraft/util/CubicSpline; net/minecraft/data/worldgen/TerrainProvider/buildErosionOffsetSpline (Lnet/minecraft/util/ToFloatFunction;Lnet/minecraft/util/ToFloatFunction;FFFFFFZZLnet/minecraft/util/ToFloatFunction;)Lnet/minecraft/util/CubicSpline; +MD: net/minecraft/data/worldgen/TerrainProvider/m_236607_ (Lnet/minecraft/util/ToFloatFunction;Lnet/minecraft/util/ToFloatFunction;FFLnet/minecraft/util/ToFloatFunction;)Lnet/minecraft/util/CubicSpline; net/minecraft/data/worldgen/TerrainProvider/buildRidgeJaggednessSpline (Lnet/minecraft/util/ToFloatFunction;Lnet/minecraft/util/ToFloatFunction;FFLnet/minecraft/util/ToFloatFunction;)Lnet/minecraft/util/CubicSpline; +MD: net/minecraft/data/worldgen/TerrainProvider/m_236613_ (Lnet/minecraft/util/ToFloatFunction;Lnet/minecraft/util/ToFloatFunction;Lnet/minecraft/util/ToFloatFunction;FFFFLnet/minecraft/util/ToFloatFunction;)Lnet/minecraft/util/CubicSpline; net/minecraft/data/worldgen/TerrainProvider/buildErosionJaggednessSpline (Lnet/minecraft/util/ToFloatFunction;Lnet/minecraft/util/ToFloatFunction;Lnet/minecraft/util/ToFloatFunction;FFFFLnet/minecraft/util/ToFloatFunction;)Lnet/minecraft/util/CubicSpline; +MD: net/minecraft/data/worldgen/TerrainProvider/m_236622_ (Lnet/minecraft/util/ToFloatFunction;Lnet/minecraft/util/ToFloatFunction;Lnet/minecraft/util/ToFloatFunction;FZLnet/minecraft/util/ToFloatFunction;)Lnet/minecraft/util/CubicSpline; net/minecraft/data/worldgen/TerrainProvider/getErosionFactor (Lnet/minecraft/util/ToFloatFunction;Lnet/minecraft/util/ToFloatFunction;Lnet/minecraft/util/ToFloatFunction;FZLnet/minecraft/util/ToFloatFunction;)Lnet/minecraft/util/CubicSpline; +MD: net/minecraft/data/worldgen/TerrainProvider/m_236629_ (Lnet/minecraft/util/ToFloatFunction;Lnet/minecraft/util/ToFloatFunction;Lnet/minecraft/util/ToFloatFunction;Lnet/minecraft/util/ToFloatFunction;Z)Lnet/minecraft/util/CubicSpline; net/minecraft/data/worldgen/TerrainProvider/overworldFactor (Lnet/minecraft/util/ToFloatFunction;Lnet/minecraft/util/ToFloatFunction;Lnet/minecraft/util/ToFloatFunction;Lnet/minecraft/util/ToFloatFunction;Z)Lnet/minecraft/util/CubicSpline; +MD: net/minecraft/data/worldgen/TerrainProvider/m_236635_ (Lnet/minecraft/util/ToFloatFunction;Lnet/minecraft/util/ToFloatFunction;Lnet/minecraft/util/ToFloatFunction;Z)Lnet/minecraft/util/CubicSpline; net/minecraft/data/worldgen/TerrainProvider/overworldOffset (Lnet/minecraft/util/ToFloatFunction;Lnet/minecraft/util/ToFloatFunction;Lnet/minecraft/util/ToFloatFunction;Z)Lnet/minecraft/util/CubicSpline; +MD: net/minecraft/data/worldgen/TerrainProvider/m_236640_ (F)F net/minecraft/data/worldgen/TerrainProvider/lambda$static$2 (F)F +MD: net/minecraft/data/worldgen/TerrainProvider/m_236642_ (Lnet/minecraft/util/ToFloatFunction;Lnet/minecraft/util/ToFloatFunction;Lnet/minecraft/util/ToFloatFunction;Lnet/minecraft/util/ToFloatFunction;Z)Lnet/minecraft/util/CubicSpline; net/minecraft/data/worldgen/TerrainProvider/overworldJaggedness (Lnet/minecraft/util/ToFloatFunction;Lnet/minecraft/util/ToFloatFunction;Lnet/minecraft/util/ToFloatFunction;Lnet/minecraft/util/ToFloatFunction;Z)Lnet/minecraft/util/CubicSpline; +MD: net/minecraft/data/worldgen/TerrainProvider/m_236648_ (F)F net/minecraft/data/worldgen/TerrainProvider/lambda$static$1 (F)F +MD: net/minecraft/data/worldgen/TerrainProvider/m_236650_ (F)F net/minecraft/data/worldgen/TerrainProvider/lambda$static$0 (F)F +MD: net/minecraft/data/worldgen/TrailRuinsStructurePools/ ()V net/minecraft/data/worldgen/TrailRuinsStructurePools/ ()V +MD: net/minecraft/data/worldgen/TrailRuinsStructurePools/ ()V net/minecraft/data/worldgen/TrailRuinsStructurePools/ ()V +MD: net/minecraft/data/worldgen/TrailRuinsStructurePools/m_276974_ (Lnet/minecraft/data/worldgen/BootstapContext;)V net/minecraft/data/worldgen/TrailRuinsStructurePools/bootstrap (Lnet/minecraft/data/worldgen/BootstapContext;)V +MD: net/minecraft/data/worldgen/VillagePools/ ()V net/minecraft/data/worldgen/VillagePools/ ()V +MD: net/minecraft/data/worldgen/VillagePools/m_254971_ (Lnet/minecraft/data/worldgen/BootstapContext;)V net/minecraft/data/worldgen/VillagePools/bootstrap (Lnet/minecraft/data/worldgen/BootstapContext;)V +MD: net/minecraft/data/worldgen/biome/BiomeData/ ()V net/minecraft/data/worldgen/biome/BiomeData/ ()V +MD: net/minecraft/data/worldgen/biome/BiomeData/m_272174_ (Lnet/minecraft/data/worldgen/BootstapContext;)V net/minecraft/data/worldgen/biome/BiomeData/bootstrap (Lnet/minecraft/data/worldgen/BootstapContext;)V +MD: net/minecraft/data/worldgen/biome/EndBiomes/ ()V net/minecraft/data/worldgen/biome/EndBiomes/ ()V +MD: net/minecraft/data/worldgen/biome/EndBiomes/m_194824_ (Lnet/minecraft/world/level/biome/BiomeGenerationSettings$Builder;)Lnet/minecraft/world/level/biome/Biome; net/minecraft/data/worldgen/biome/EndBiomes/baseEndBiome (Lnet/minecraft/world/level/biome/BiomeGenerationSettings$Builder;)Lnet/minecraft/world/level/biome/Biome; +MD: net/minecraft/data/worldgen/biome/EndBiomes/m_255113_ (Lnet/minecraft/core/HolderGetter;Lnet/minecraft/core/HolderGetter;)Lnet/minecraft/world/level/biome/Biome; net/minecraft/data/worldgen/biome/EndBiomes/endBarrens (Lnet/minecraft/core/HolderGetter;Lnet/minecraft/core/HolderGetter;)Lnet/minecraft/world/level/biome/Biome; +MD: net/minecraft/data/worldgen/biome/EndBiomes/m_255123_ (Lnet/minecraft/core/HolderGetter;Lnet/minecraft/core/HolderGetter;)Lnet/minecraft/world/level/biome/Biome; net/minecraft/data/worldgen/biome/EndBiomes/smallEndIslands (Lnet/minecraft/core/HolderGetter;Lnet/minecraft/core/HolderGetter;)Lnet/minecraft/world/level/biome/Biome; +MD: net/minecraft/data/worldgen/biome/EndBiomes/m_255137_ (Lnet/minecraft/core/HolderGetter;Lnet/minecraft/core/HolderGetter;)Lnet/minecraft/world/level/biome/Biome; net/minecraft/data/worldgen/biome/EndBiomes/endHighlands (Lnet/minecraft/core/HolderGetter;Lnet/minecraft/core/HolderGetter;)Lnet/minecraft/world/level/biome/Biome; +MD: net/minecraft/data/worldgen/biome/EndBiomes/m_255243_ (Lnet/minecraft/core/HolderGetter;Lnet/minecraft/core/HolderGetter;)Lnet/minecraft/world/level/biome/Biome; net/minecraft/data/worldgen/biome/EndBiomes/endMidlands (Lnet/minecraft/core/HolderGetter;Lnet/minecraft/core/HolderGetter;)Lnet/minecraft/world/level/biome/Biome; +MD: net/minecraft/data/worldgen/biome/EndBiomes/m_255372_ (Lnet/minecraft/core/HolderGetter;Lnet/minecraft/core/HolderGetter;)Lnet/minecraft/world/level/biome/Biome; net/minecraft/data/worldgen/biome/EndBiomes/theEnd (Lnet/minecraft/core/HolderGetter;Lnet/minecraft/core/HolderGetter;)Lnet/minecraft/world/level/biome/Biome; +MD: net/minecraft/data/worldgen/biome/NetherBiomes/ ()V net/minecraft/data/worldgen/biome/NetherBiomes/ ()V +MD: net/minecraft/data/worldgen/biome/NetherBiomes/m_194831_ (Lnet/minecraft/core/HolderGetter;Lnet/minecraft/core/HolderGetter;)Lnet/minecraft/world/level/biome/Biome; net/minecraft/data/worldgen/biome/NetherBiomes/netherWastes (Lnet/minecraft/core/HolderGetter;Lnet/minecraft/core/HolderGetter;)Lnet/minecraft/world/level/biome/Biome; +MD: net/minecraft/data/worldgen/biome/NetherBiomes/m_194832_ (Lnet/minecraft/core/HolderGetter;Lnet/minecraft/core/HolderGetter;)Lnet/minecraft/world/level/biome/Biome; net/minecraft/data/worldgen/biome/NetherBiomes/soulSandValley (Lnet/minecraft/core/HolderGetter;Lnet/minecraft/core/HolderGetter;)Lnet/minecraft/world/level/biome/Biome; +MD: net/minecraft/data/worldgen/biome/NetherBiomes/m_194833_ (Lnet/minecraft/core/HolderGetter;Lnet/minecraft/core/HolderGetter;)Lnet/minecraft/world/level/biome/Biome; net/minecraft/data/worldgen/biome/NetherBiomes/basaltDeltas (Lnet/minecraft/core/HolderGetter;Lnet/minecraft/core/HolderGetter;)Lnet/minecraft/world/level/biome/Biome; +MD: net/minecraft/data/worldgen/biome/NetherBiomes/m_194834_ (Lnet/minecraft/core/HolderGetter;Lnet/minecraft/core/HolderGetter;)Lnet/minecraft/world/level/biome/Biome; net/minecraft/data/worldgen/biome/NetherBiomes/crimsonForest (Lnet/minecraft/core/HolderGetter;Lnet/minecraft/core/HolderGetter;)Lnet/minecraft/world/level/biome/Biome; +MD: net/minecraft/data/worldgen/biome/NetherBiomes/m_194835_ (Lnet/minecraft/core/HolderGetter;Lnet/minecraft/core/HolderGetter;)Lnet/minecraft/world/level/biome/Biome; net/minecraft/data/worldgen/biome/NetherBiomes/warpedForest (Lnet/minecraft/core/HolderGetter;Lnet/minecraft/core/HolderGetter;)Lnet/minecraft/world/level/biome/Biome; +MD: net/minecraft/data/worldgen/biome/OverworldBiomes/ ()V net/minecraft/data/worldgen/biome/OverworldBiomes/ ()V +MD: net/minecraft/data/worldgen/biome/OverworldBiomes/ ()V net/minecraft/data/worldgen/biome/OverworldBiomes/ ()V +MD: net/minecraft/data/worldgen/biome/OverworldBiomes/m_194843_ (F)I net/minecraft/data/worldgen/biome/OverworldBiomes/calculateSkyColor (F)I +MD: net/minecraft/data/worldgen/biome/OverworldBiomes/m_194869_ (Lnet/minecraft/world/level/biome/BiomeGenerationSettings$Builder;)V net/minecraft/data/worldgen/biome/OverworldBiomes/globalOverworldGeneration (Lnet/minecraft/world/level/biome/BiomeGenerationSettings$Builder;)V +MD: net/minecraft/data/worldgen/biome/OverworldBiomes/m_194871_ (Lnet/minecraft/world/level/biome/MobSpawnSettings$Builder;IILnet/minecraft/world/level/biome/BiomeGenerationSettings$Builder;)Lnet/minecraft/world/level/biome/Biome; net/minecraft/data/worldgen/biome/OverworldBiomes/baseOcean (Lnet/minecraft/world/level/biome/MobSpawnSettings$Builder;IILnet/minecraft/world/level/biome/BiomeGenerationSettings$Builder;)Lnet/minecraft/world/level/biome/Biome; +MD: net/minecraft/data/worldgen/biome/OverworldBiomes/m_194876_ (Lnet/minecraft/core/HolderGetter;Lnet/minecraft/core/HolderGetter;Z)Lnet/minecraft/world/level/biome/Biome; net/minecraft/data/worldgen/biome/OverworldBiomes/oldGrowthTaiga (Lnet/minecraft/core/HolderGetter;Lnet/minecraft/core/HolderGetter;Z)Lnet/minecraft/world/level/biome/Biome; +MD: net/minecraft/data/worldgen/biome/OverworldBiomes/m_194878_ (Lnet/minecraft/core/HolderGetter;Lnet/minecraft/core/HolderGetter;ZZ)Lnet/minecraft/world/level/biome/Biome; net/minecraft/data/worldgen/biome/OverworldBiomes/savanna (Lnet/minecraft/core/HolderGetter;Lnet/minecraft/core/HolderGetter;ZZ)Lnet/minecraft/world/level/biome/Biome; +MD: net/minecraft/data/worldgen/biome/OverworldBiomes/m_194881_ (Lnet/minecraft/core/HolderGetter;Lnet/minecraft/core/HolderGetter;ZZZ)Lnet/minecraft/world/level/biome/Biome; net/minecraft/data/worldgen/biome/OverworldBiomes/plains (Lnet/minecraft/core/HolderGetter;Lnet/minecraft/core/HolderGetter;ZZZ)Lnet/minecraft/world/level/biome/Biome; +MD: net/minecraft/data/worldgen/biome/OverworldBiomes/m_194885_ (Lnet/minecraft/core/HolderGetter;Lnet/minecraft/core/HolderGetter;)Lnet/minecraft/world/level/biome/Biome; net/minecraft/data/worldgen/biome/OverworldBiomes/darkForest (Lnet/minecraft/core/HolderGetter;Lnet/minecraft/core/HolderGetter;)Lnet/minecraft/world/level/biome/Biome; +MD: net/minecraft/data/worldgen/biome/OverworldBiomes/m_194886_ (Lnet/minecraft/core/HolderGetter;Lnet/minecraft/core/HolderGetter;Z)Lnet/minecraft/world/level/biome/Biome; net/minecraft/data/worldgen/biome/OverworldBiomes/windsweptHills (Lnet/minecraft/core/HolderGetter;Lnet/minecraft/core/HolderGetter;Z)Lnet/minecraft/world/level/biome/Biome; +MD: net/minecraft/data/worldgen/biome/OverworldBiomes/m_194888_ (Lnet/minecraft/core/HolderGetter;Lnet/minecraft/core/HolderGetter;ZZ)Lnet/minecraft/world/level/biome/Biome; net/minecraft/data/worldgen/biome/OverworldBiomes/beach (Lnet/minecraft/core/HolderGetter;Lnet/minecraft/core/HolderGetter;ZZ)Lnet/minecraft/world/level/biome/Biome; +MD: net/minecraft/data/worldgen/biome/OverworldBiomes/m_194891_ (Lnet/minecraft/core/HolderGetter;Lnet/minecraft/core/HolderGetter;ZZZ)Lnet/minecraft/world/level/biome/Biome; net/minecraft/data/worldgen/biome/OverworldBiomes/forest (Lnet/minecraft/core/HolderGetter;Lnet/minecraft/core/HolderGetter;ZZZ)Lnet/minecraft/world/level/biome/Biome; +MD: net/minecraft/data/worldgen/biome/OverworldBiomes/m_194895_ (Lnet/minecraft/core/HolderGetter;Lnet/minecraft/core/HolderGetter;)Lnet/minecraft/world/level/biome/Biome; net/minecraft/data/worldgen/biome/OverworldBiomes/dripstoneCaves (Lnet/minecraft/core/HolderGetter;Lnet/minecraft/core/HolderGetter;)Lnet/minecraft/world/level/biome/Biome; +MD: net/minecraft/data/worldgen/biome/OverworldBiomes/m_194896_ (Lnet/minecraft/core/HolderGetter;Lnet/minecraft/core/HolderGetter;Z)Lnet/minecraft/world/level/biome/Biome; net/minecraft/data/worldgen/biome/OverworldBiomes/badlands (Lnet/minecraft/core/HolderGetter;Lnet/minecraft/core/HolderGetter;Z)Lnet/minecraft/world/level/biome/Biome; +MD: net/minecraft/data/worldgen/biome/OverworldBiomes/m_194899_ (Lnet/minecraft/core/HolderGetter;Lnet/minecraft/core/HolderGetter;Z)Lnet/minecraft/world/level/biome/Biome; net/minecraft/data/worldgen/biome/OverworldBiomes/coldOcean (Lnet/minecraft/core/HolderGetter;Lnet/minecraft/core/HolderGetter;Z)Lnet/minecraft/world/level/biome/Biome; +MD: net/minecraft/data/worldgen/biome/OverworldBiomes/m_194902_ (Lnet/minecraft/core/HolderGetter;Lnet/minecraft/core/HolderGetter;)Lnet/minecraft/world/level/biome/Biome; net/minecraft/data/worldgen/biome/OverworldBiomes/desert (Lnet/minecraft/core/HolderGetter;Lnet/minecraft/core/HolderGetter;)Lnet/minecraft/world/level/biome/Biome; +MD: net/minecraft/data/worldgen/biome/OverworldBiomes/m_194905_ (Lnet/minecraft/core/HolderGetter;Lnet/minecraft/core/HolderGetter;Z)Lnet/minecraft/world/level/biome/Biome; net/minecraft/data/worldgen/biome/OverworldBiomes/lukeWarmOcean (Lnet/minecraft/core/HolderGetter;Lnet/minecraft/core/HolderGetter;Z)Lnet/minecraft/world/level/biome/Biome; +MD: net/minecraft/data/worldgen/biome/OverworldBiomes/m_194908_ (Lnet/minecraft/core/HolderGetter;Lnet/minecraft/core/HolderGetter;Z)Lnet/minecraft/world/level/biome/Biome; net/minecraft/data/worldgen/biome/OverworldBiomes/frozenOcean (Lnet/minecraft/core/HolderGetter;Lnet/minecraft/core/HolderGetter;Z)Lnet/minecraft/world/level/biome/Biome; +MD: net/minecraft/data/worldgen/biome/OverworldBiomes/m_194910_ (Lnet/minecraft/core/HolderGetter;Lnet/minecraft/core/HolderGetter;)Lnet/minecraft/world/level/biome/Biome; net/minecraft/data/worldgen/biome/OverworldBiomes/swamp (Lnet/minecraft/core/HolderGetter;Lnet/minecraft/core/HolderGetter;)Lnet/minecraft/world/level/biome/Biome; +MD: net/minecraft/data/worldgen/biome/OverworldBiomes/m_194911_ (Lnet/minecraft/core/HolderGetter;Lnet/minecraft/core/HolderGetter;Z)Lnet/minecraft/world/level/biome/Biome; net/minecraft/data/worldgen/biome/OverworldBiomes/taiga (Lnet/minecraft/core/HolderGetter;Lnet/minecraft/core/HolderGetter;Z)Lnet/minecraft/world/level/biome/Biome; +MD: net/minecraft/data/worldgen/biome/OverworldBiomes/m_194914_ (Lnet/minecraft/core/HolderGetter;Lnet/minecraft/core/HolderGetter;Z)Lnet/minecraft/world/level/biome/Biome; net/minecraft/data/worldgen/biome/OverworldBiomes/river (Lnet/minecraft/core/HolderGetter;Lnet/minecraft/core/HolderGetter;Z)Lnet/minecraft/world/level/biome/Biome; +MD: net/minecraft/data/worldgen/biome/OverworldBiomes/m_194917_ (Lnet/minecraft/core/HolderGetter;Lnet/minecraft/core/HolderGetter;)Lnet/minecraft/world/level/biome/Biome; net/minecraft/data/worldgen/biome/OverworldBiomes/jaggedPeaks (Lnet/minecraft/core/HolderGetter;Lnet/minecraft/core/HolderGetter;)Lnet/minecraft/world/level/biome/Biome; +MD: net/minecraft/data/worldgen/biome/OverworldBiomes/m_194918_ (Lnet/minecraft/core/HolderGetter;Lnet/minecraft/core/HolderGetter;)Lnet/minecraft/world/level/biome/Biome; net/minecraft/data/worldgen/biome/OverworldBiomes/frozenPeaks (Lnet/minecraft/core/HolderGetter;Lnet/minecraft/core/HolderGetter;)Lnet/minecraft/world/level/biome/Biome; +MD: net/minecraft/data/worldgen/biome/OverworldBiomes/m_194920_ (Lnet/minecraft/core/HolderGetter;Lnet/minecraft/core/HolderGetter;)Lnet/minecraft/world/level/biome/Biome; net/minecraft/data/worldgen/biome/OverworldBiomes/snowySlopes (Lnet/minecraft/core/HolderGetter;Lnet/minecraft/core/HolderGetter;)Lnet/minecraft/world/level/biome/Biome; +MD: net/minecraft/data/worldgen/biome/OverworldBiomes/m_194921_ (Lnet/minecraft/core/HolderGetter;Lnet/minecraft/core/HolderGetter;)Lnet/minecraft/world/level/biome/Biome; net/minecraft/data/worldgen/biome/OverworldBiomes/grove (Lnet/minecraft/core/HolderGetter;Lnet/minecraft/core/HolderGetter;)Lnet/minecraft/world/level/biome/Biome; +MD: net/minecraft/data/worldgen/biome/OverworldBiomes/m_194922_ (Lnet/minecraft/core/HolderGetter;Lnet/minecraft/core/HolderGetter;)Lnet/minecraft/world/level/biome/Biome; net/minecraft/data/worldgen/biome/OverworldBiomes/lushCaves (Lnet/minecraft/core/HolderGetter;Lnet/minecraft/core/HolderGetter;)Lnet/minecraft/world/level/biome/Biome; +MD: net/minecraft/data/worldgen/biome/OverworldBiomes/m_236670_ (Lnet/minecraft/core/HolderGetter;Lnet/minecraft/core/HolderGetter;)Lnet/minecraft/world/level/biome/Biome; net/minecraft/data/worldgen/biome/OverworldBiomes/mangroveSwamp (Lnet/minecraft/core/HolderGetter;Lnet/minecraft/core/HolderGetter;)Lnet/minecraft/world/level/biome/Biome; +MD: net/minecraft/data/worldgen/biome/OverworldBiomes/m_236671_ (Lnet/minecraft/core/HolderGetter;Lnet/minecraft/core/HolderGetter;)Lnet/minecraft/world/level/biome/Biome; net/minecraft/data/worldgen/biome/OverworldBiomes/deepDark (Lnet/minecraft/core/HolderGetter;Lnet/minecraft/core/HolderGetter;)Lnet/minecraft/world/level/biome/Biome; +MD: net/minecraft/data/worldgen/biome/OverworldBiomes/m_254954_ (Lnet/minecraft/core/HolderGetter;Lnet/minecraft/core/HolderGetter;)Lnet/minecraft/world/level/biome/Biome; net/minecraft/data/worldgen/biome/OverworldBiomes/sparseJungle (Lnet/minecraft/core/HolderGetter;Lnet/minecraft/core/HolderGetter;)Lnet/minecraft/world/level/biome/Biome; +MD: net/minecraft/data/worldgen/biome/OverworldBiomes/m_254955_ (Lnet/minecraft/core/HolderGetter;Lnet/minecraft/core/HolderGetter;)Lnet/minecraft/world/level/biome/Biome; net/minecraft/data/worldgen/biome/OverworldBiomes/warmOcean (Lnet/minecraft/core/HolderGetter;Lnet/minecraft/core/HolderGetter;)Lnet/minecraft/world/level/biome/Biome; +MD: net/minecraft/data/worldgen/biome/OverworldBiomes/m_254986_ (Lnet/minecraft/core/HolderGetter;Lnet/minecraft/core/HolderGetter;)Lnet/minecraft/world/level/biome/BiomeGenerationSettings$Builder; net/minecraft/data/worldgen/biome/OverworldBiomes/baseOceanGeneration (Lnet/minecraft/core/HolderGetter;Lnet/minecraft/core/HolderGetter;)Lnet/minecraft/world/level/biome/BiomeGenerationSettings$Builder; +MD: net/minecraft/data/worldgen/biome/OverworldBiomes/m_255074_ (Lnet/minecraft/core/HolderGetter;Lnet/minecraft/core/HolderGetter;)Lnet/minecraft/world/level/biome/Biome; net/minecraft/data/worldgen/biome/OverworldBiomes/jungle (Lnet/minecraft/core/HolderGetter;Lnet/minecraft/core/HolderGetter;)Lnet/minecraft/world/level/biome/Biome; +MD: net/minecraft/data/worldgen/biome/OverworldBiomes/m_255251_ (Lnet/minecraft/core/HolderGetter;Lnet/minecraft/core/HolderGetter;)Lnet/minecraft/world/level/biome/Biome; net/minecraft/data/worldgen/biome/OverworldBiomes/theVoid (Lnet/minecraft/core/HolderGetter;Lnet/minecraft/core/HolderGetter;)Lnet/minecraft/world/level/biome/Biome; +MD: net/minecraft/data/worldgen/biome/OverworldBiomes/m_255279_ (Lnet/minecraft/core/HolderGetter;Lnet/minecraft/core/HolderGetter;)Lnet/minecraft/world/level/biome/Biome; net/minecraft/data/worldgen/biome/OverworldBiomes/bambooJungle (Lnet/minecraft/core/HolderGetter;Lnet/minecraft/core/HolderGetter;)Lnet/minecraft/world/level/biome/Biome; +MD: net/minecraft/data/worldgen/biome/OverworldBiomes/m_255280_ (Lnet/minecraft/core/HolderGetter;Lnet/minecraft/core/HolderGetter;)Lnet/minecraft/world/level/biome/Biome; net/minecraft/data/worldgen/biome/OverworldBiomes/mushroomFields (Lnet/minecraft/core/HolderGetter;Lnet/minecraft/core/HolderGetter;)Lnet/minecraft/world/level/biome/Biome; +MD: net/minecraft/data/worldgen/biome/OverworldBiomes/m_255326_ (Lnet/minecraft/core/HolderGetter;Lnet/minecraft/core/HolderGetter;Z)Lnet/minecraft/world/level/biome/Biome; net/minecraft/data/worldgen/biome/OverworldBiomes/ocean (Lnet/minecraft/core/HolderGetter;Lnet/minecraft/core/HolderGetter;Z)Lnet/minecraft/world/level/biome/Biome; +MD: net/minecraft/data/worldgen/biome/OverworldBiomes/m_255416_ (Lnet/minecraft/core/HolderGetter;Lnet/minecraft/core/HolderGetter;)Lnet/minecraft/world/level/biome/Biome; net/minecraft/data/worldgen/biome/OverworldBiomes/stonyPeaks (Lnet/minecraft/core/HolderGetter;Lnet/minecraft/core/HolderGetter;)Lnet/minecraft/world/level/biome/Biome; +MD: net/minecraft/data/worldgen/biome/OverworldBiomes/m_264144_ (ZFFLnet/minecraft/world/level/biome/MobSpawnSettings$Builder;Lnet/minecraft/world/level/biome/BiomeGenerationSettings$Builder;Lnet/minecraft/sounds/Music;)Lnet/minecraft/world/level/biome/Biome; net/minecraft/data/worldgen/biome/OverworldBiomes/biome (ZFFLnet/minecraft/world/level/biome/MobSpawnSettings$Builder;Lnet/minecraft/world/level/biome/BiomeGenerationSettings$Builder;Lnet/minecraft/sounds/Music;)Lnet/minecraft/world/level/biome/Biome; +MD: net/minecraft/data/worldgen/biome/OverworldBiomes/m_271953_ (ZFFIILjava/lang/Integer;Ljava/lang/Integer;Lnet/minecraft/world/level/biome/MobSpawnSettings$Builder;Lnet/minecraft/world/level/biome/BiomeGenerationSettings$Builder;Lnet/minecraft/sounds/Music;)Lnet/minecraft/world/level/biome/Biome; net/minecraft/data/worldgen/biome/OverworldBiomes/biome (ZFFIILjava/lang/Integer;Ljava/lang/Integer;Lnet/minecraft/world/level/biome/MobSpawnSettings$Builder;Lnet/minecraft/world/level/biome/BiomeGenerationSettings$Builder;Lnet/minecraft/sounds/Music;)Lnet/minecraft/world/level/biome/Biome; +MD: net/minecraft/data/worldgen/biome/OverworldBiomes/m_272060_ (Lnet/minecraft/core/HolderGetter;Lnet/minecraft/core/HolderGetter;Z)Lnet/minecraft/world/level/biome/Biome; net/minecraft/data/worldgen/biome/OverworldBiomes/meadowOrCherryGrove (Lnet/minecraft/core/HolderGetter;Lnet/minecraft/core/HolderGetter;Z)Lnet/minecraft/world/level/biome/Biome; +MD: net/minecraft/data/worldgen/biome/OverworldBiomes/m_284525_ (Lnet/minecraft/core/HolderGetter;Lnet/minecraft/core/HolderGetter;FZZZLnet/minecraft/world/level/biome/MobSpawnSettings$Builder;Lnet/minecraft/sounds/Music;)Lnet/minecraft/world/level/biome/Biome; net/minecraft/data/worldgen/biome/OverworldBiomes/baseJungle (Lnet/minecraft/core/HolderGetter;Lnet/minecraft/core/HolderGetter;FZZZLnet/minecraft/world/level/biome/MobSpawnSettings$Builder;Lnet/minecraft/sounds/Music;)Lnet/minecraft/world/level/biome/Biome; +MD: net/minecraft/data/worldgen/features/AquaticFeatures/ ()V net/minecraft/data/worldgen/features/AquaticFeatures/ ()V +MD: net/minecraft/data/worldgen/features/AquaticFeatures/ ()V net/minecraft/data/worldgen/features/AquaticFeatures/ ()V +MD: net/minecraft/data/worldgen/features/AquaticFeatures/m_255426_ (Lnet/minecraft/data/worldgen/BootstapContext;)V net/minecraft/data/worldgen/features/AquaticFeatures/bootstrap (Lnet/minecraft/data/worldgen/BootstapContext;)V +MD: net/minecraft/data/worldgen/features/CaveFeatures/ ()V net/minecraft/data/worldgen/features/CaveFeatures/ ()V +MD: net/minecraft/data/worldgen/features/CaveFeatures/ ()V net/minecraft/data/worldgen/features/CaveFeatures/ ()V +MD: net/minecraft/data/worldgen/features/CaveFeatures/m_206466_ ()Lnet/minecraft/core/Holder; net/minecraft/data/worldgen/features/CaveFeatures/makeSmallDripleaf ()Lnet/minecraft/core/Holder; +MD: net/minecraft/data/worldgen/features/CaveFeatures/m_206467_ (Lnet/minecraft/core/Direction;)Lnet/minecraft/core/Holder; net/minecraft/data/worldgen/features/CaveFeatures/makeDripleaf (Lnet/minecraft/core/Direction;)Lnet/minecraft/core/Holder; +MD: net/minecraft/data/worldgen/features/CaveFeatures/m_255015_ (Lnet/minecraft/data/worldgen/BootstapContext;)V net/minecraft/data/worldgen/features/CaveFeatures/bootstrap (Lnet/minecraft/data/worldgen/BootstapContext;)V +MD: net/minecraft/data/worldgen/features/EndFeatures/ ()V net/minecraft/data/worldgen/features/EndFeatures/ ()V +MD: net/minecraft/data/worldgen/features/EndFeatures/ ()V net/minecraft/data/worldgen/features/EndFeatures/ ()V +MD: net/minecraft/data/worldgen/features/EndFeatures/m_255085_ (Lnet/minecraft/data/worldgen/BootstapContext;)V net/minecraft/data/worldgen/features/EndFeatures/bootstrap (Lnet/minecraft/data/worldgen/BootstapContext;)V +MD: net/minecraft/data/worldgen/features/FeatureUtils/ ()V net/minecraft/data/worldgen/features/FeatureUtils/ ()V +MD: net/minecraft/data/worldgen/features/FeatureUtils/m_195008_ (Ljava/util/List;)Lnet/minecraft/world/level/levelgen/blockpredicates/BlockPredicate; net/minecraft/data/worldgen/features/FeatureUtils/simplePatchPredicate (Ljava/util/List;)Lnet/minecraft/world/level/levelgen/blockpredicates/BlockPredicate; +MD: net/minecraft/data/worldgen/features/FeatureUtils/m_206470_ (ILnet/minecraft/core/Holder;)Lnet/minecraft/world/level/levelgen/feature/configurations/RandomPatchConfiguration; net/minecraft/data/worldgen/features/FeatureUtils/simpleRandomPatchConfiguration (ILnet/minecraft/core/Holder;)Lnet/minecraft/world/level/levelgen/feature/configurations/RandomPatchConfiguration; +MD: net/minecraft/data/worldgen/features/FeatureUtils/m_206473_ (Lnet/minecraft/world/level/levelgen/feature/Feature;Lnet/minecraft/world/level/levelgen/feature/configurations/FeatureConfiguration;)Lnet/minecraft/world/level/levelgen/feature/configurations/RandomPatchConfiguration; net/minecraft/data/worldgen/features/FeatureUtils/simplePatchConfiguration (Lnet/minecraft/world/level/levelgen/feature/Feature;Lnet/minecraft/world/level/levelgen/feature/configurations/FeatureConfiguration;)Lnet/minecraft/world/level/levelgen/feature/configurations/RandomPatchConfiguration; +MD: net/minecraft/data/worldgen/features/FeatureUtils/m_206476_ (Lnet/minecraft/world/level/levelgen/feature/Feature;Lnet/minecraft/world/level/levelgen/feature/configurations/FeatureConfiguration;Ljava/util/List;)Lnet/minecraft/world/level/levelgen/feature/configurations/RandomPatchConfiguration; net/minecraft/data/worldgen/features/FeatureUtils/simplePatchConfiguration (Lnet/minecraft/world/level/levelgen/feature/Feature;Lnet/minecraft/world/level/levelgen/feature/configurations/FeatureConfiguration;Ljava/util/List;)Lnet/minecraft/world/level/levelgen/feature/configurations/RandomPatchConfiguration; +MD: net/minecraft/data/worldgen/features/FeatureUtils/m_206480_ (Lnet/minecraft/world/level/levelgen/feature/Feature;Lnet/minecraft/world/level/levelgen/feature/configurations/FeatureConfiguration;Ljava/util/List;I)Lnet/minecraft/world/level/levelgen/feature/configurations/RandomPatchConfiguration; net/minecraft/data/worldgen/features/FeatureUtils/simplePatchConfiguration (Lnet/minecraft/world/level/levelgen/feature/Feature;Lnet/minecraft/world/level/levelgen/feature/configurations/FeatureConfiguration;Ljava/util/List;I)Lnet/minecraft/world/level/levelgen/feature/configurations/RandomPatchConfiguration; +MD: net/minecraft/data/worldgen/features/FeatureUtils/m_254925_ (Lnet/minecraft/data/worldgen/BootstapContext;)V net/minecraft/data/worldgen/features/FeatureUtils/bootstrap (Lnet/minecraft/data/worldgen/BootstapContext;)V +MD: net/minecraft/data/worldgen/features/FeatureUtils/m_254977_ (Lnet/minecraft/data/worldgen/BootstapContext;Lnet/minecraft/resources/ResourceKey;Lnet/minecraft/world/level/levelgen/feature/Feature;Lnet/minecraft/world/level/levelgen/feature/configurations/FeatureConfiguration;)V net/minecraft/data/worldgen/features/FeatureUtils/register (Lnet/minecraft/data/worldgen/BootstapContext;Lnet/minecraft/resources/ResourceKey;Lnet/minecraft/world/level/levelgen/feature/Feature;Lnet/minecraft/world/level/levelgen/feature/configurations/FeatureConfiguration;)V +MD: net/minecraft/data/worldgen/features/FeatureUtils/m_255061_ (Lnet/minecraft/data/worldgen/BootstapContext;Lnet/minecraft/resources/ResourceKey;Lnet/minecraft/world/level/levelgen/feature/Feature;)V net/minecraft/data/worldgen/features/FeatureUtils/register (Lnet/minecraft/data/worldgen/BootstapContext;Lnet/minecraft/resources/ResourceKey;Lnet/minecraft/world/level/levelgen/feature/Feature;)V +MD: net/minecraft/data/worldgen/features/FeatureUtils/m_255087_ (Ljava/lang/String;)Lnet/minecraft/resources/ResourceKey; net/minecraft/data/worldgen/features/FeatureUtils/createKey (Ljava/lang/String;)Lnet/minecraft/resources/ResourceKey; +MD: net/minecraft/data/worldgen/features/MiscOverworldFeatures/ ()V net/minecraft/data/worldgen/features/MiscOverworldFeatures/ ()V +MD: net/minecraft/data/worldgen/features/MiscOverworldFeatures/ ()V net/minecraft/data/worldgen/features/MiscOverworldFeatures/ ()V +MD: net/minecraft/data/worldgen/features/MiscOverworldFeatures/m_254957_ (Lnet/minecraft/data/worldgen/BootstapContext;)V net/minecraft/data/worldgen/features/MiscOverworldFeatures/bootstrap (Lnet/minecraft/data/worldgen/BootstapContext;)V +MD: net/minecraft/data/worldgen/features/NetherFeatures/ ()V net/minecraft/data/worldgen/features/NetherFeatures/ ()V +MD: net/minecraft/data/worldgen/features/NetherFeatures/ ()V net/minecraft/data/worldgen/features/NetherFeatures/ ()V +MD: net/minecraft/data/worldgen/features/NetherFeatures/m_255076_ (Lnet/minecraft/data/worldgen/BootstapContext;)V net/minecraft/data/worldgen/features/NetherFeatures/bootstrap (Lnet/minecraft/data/worldgen/BootstapContext;)V +MD: net/minecraft/data/worldgen/features/OreFeatures/ ()V net/minecraft/data/worldgen/features/OreFeatures/ ()V +MD: net/minecraft/data/worldgen/features/OreFeatures/ ()V net/minecraft/data/worldgen/features/OreFeatures/ ()V +MD: net/minecraft/data/worldgen/features/OreFeatures/m_255127_ (Lnet/minecraft/data/worldgen/BootstapContext;)V net/minecraft/data/worldgen/features/OreFeatures/bootstrap (Lnet/minecraft/data/worldgen/BootstapContext;)V +MD: net/minecraft/data/worldgen/features/PileFeatures/ ()V net/minecraft/data/worldgen/features/PileFeatures/ ()V +MD: net/minecraft/data/worldgen/features/PileFeatures/ ()V net/minecraft/data/worldgen/features/PileFeatures/ ()V +MD: net/minecraft/data/worldgen/features/PileFeatures/m_255052_ (Lnet/minecraft/data/worldgen/BootstapContext;)V net/minecraft/data/worldgen/features/PileFeatures/bootstrap (Lnet/minecraft/data/worldgen/BootstapContext;)V +MD: net/minecraft/data/worldgen/features/TreeFeatures/ ()V net/minecraft/data/worldgen/features/TreeFeatures/ ()V +MD: net/minecraft/data/worldgen/features/TreeFeatures/ ()V net/minecraft/data/worldgen/features/TreeFeatures/ ()V +MD: net/minecraft/data/worldgen/features/TreeFeatures/m_195145_ ()Lnet/minecraft/world/level/levelgen/feature/configurations/TreeConfiguration$TreeConfigurationBuilder; net/minecraft/data/worldgen/features/TreeFeatures/createOak ()Lnet/minecraft/world/level/levelgen/feature/configurations/TreeConfiguration$TreeConfigurationBuilder; +MD: net/minecraft/data/worldgen/features/TreeFeatures/m_195146_ (Lnet/minecraft/world/level/block/Block;Lnet/minecraft/world/level/block/Block;IIII)Lnet/minecraft/world/level/levelgen/feature/configurations/TreeConfiguration$TreeConfigurationBuilder; net/minecraft/data/worldgen/features/TreeFeatures/createStraightBlobTree (Lnet/minecraft/world/level/block/Block;Lnet/minecraft/world/level/block/Block;IIII)Lnet/minecraft/world/level/levelgen/feature/configurations/TreeConfiguration$TreeConfigurationBuilder; +MD: net/minecraft/data/worldgen/features/TreeFeatures/m_195153_ ()Lnet/minecraft/world/level/levelgen/feature/configurations/TreeConfiguration$TreeConfigurationBuilder; net/minecraft/data/worldgen/features/TreeFeatures/createBirch ()Lnet/minecraft/world/level/levelgen/feature/configurations/TreeConfiguration$TreeConfigurationBuilder; +MD: net/minecraft/data/worldgen/features/TreeFeatures/m_195154_ ()Lnet/minecraft/world/level/levelgen/feature/configurations/TreeConfiguration$TreeConfigurationBuilder; net/minecraft/data/worldgen/features/TreeFeatures/createSuperBirch ()Lnet/minecraft/world/level/levelgen/feature/configurations/TreeConfiguration$TreeConfigurationBuilder; +MD: net/minecraft/data/worldgen/features/TreeFeatures/m_195155_ ()Lnet/minecraft/world/level/levelgen/feature/configurations/TreeConfiguration$TreeConfigurationBuilder; net/minecraft/data/worldgen/features/TreeFeatures/createJungleTree ()Lnet/minecraft/world/level/levelgen/feature/configurations/TreeConfiguration$TreeConfigurationBuilder; +MD: net/minecraft/data/worldgen/features/TreeFeatures/m_195156_ ()Lnet/minecraft/world/level/levelgen/feature/configurations/TreeConfiguration$TreeConfigurationBuilder; net/minecraft/data/worldgen/features/TreeFeatures/createFancyOak ()Lnet/minecraft/world/level/levelgen/feature/configurations/TreeConfiguration$TreeConfigurationBuilder; +MD: net/minecraft/data/worldgen/features/TreeFeatures/m_255340_ (Lnet/minecraft/data/worldgen/BootstapContext;)V net/minecraft/data/worldgen/features/TreeFeatures/bootstrap (Lnet/minecraft/data/worldgen/BootstapContext;)V +MD: net/minecraft/data/worldgen/features/TreeFeatures/m_271891_ ()Lnet/minecraft/world/level/levelgen/feature/configurations/TreeConfiguration$TreeConfigurationBuilder; net/minecraft/data/worldgen/features/TreeFeatures/cherry ()Lnet/minecraft/world/level/levelgen/feature/configurations/TreeConfiguration$TreeConfigurationBuilder; +MD: net/minecraft/data/worldgen/features/VegetationFeatures/ ()V net/minecraft/data/worldgen/features/VegetationFeatures/ ()V +MD: net/minecraft/data/worldgen/features/VegetationFeatures/ ()V net/minecraft/data/worldgen/features/VegetationFeatures/ ()V +MD: net/minecraft/data/worldgen/features/VegetationFeatures/m_195202_ (Lnet/minecraft/world/level/levelgen/feature/stateproviders/BlockStateProvider;I)Lnet/minecraft/world/level/levelgen/feature/configurations/RandomPatchConfiguration; net/minecraft/data/worldgen/features/VegetationFeatures/grassPatch (Lnet/minecraft/world/level/levelgen/feature/stateproviders/BlockStateProvider;I)Lnet/minecraft/world/level/levelgen/feature/configurations/RandomPatchConfiguration; +MD: net/minecraft/data/worldgen/features/VegetationFeatures/m_255402_ (Lnet/minecraft/data/worldgen/BootstapContext;)V net/minecraft/data/worldgen/features/VegetationFeatures/bootstrap (Lnet/minecraft/data/worldgen/BootstapContext;)V +MD: net/minecraft/data/worldgen/placement/AquaticPlacements/ ()V net/minecraft/data/worldgen/placement/AquaticPlacements/ ()V +MD: net/minecraft/data/worldgen/placement/AquaticPlacements/ ()V net/minecraft/data/worldgen/placement/AquaticPlacements/ ()V +MD: net/minecraft/data/worldgen/placement/AquaticPlacements/m_195233_ (I)Ljava/util/List; net/minecraft/data/worldgen/placement/AquaticPlacements/seagrassPlacement (I)Ljava/util/List; +MD: net/minecraft/data/worldgen/placement/AquaticPlacements/m_255366_ (Lnet/minecraft/data/worldgen/BootstapContext;)V net/minecraft/data/worldgen/placement/AquaticPlacements/bootstrap (Lnet/minecraft/data/worldgen/BootstapContext;)V +MD: net/minecraft/data/worldgen/placement/CavePlacements/ ()V net/minecraft/data/worldgen/placement/CavePlacements/ ()V +MD: net/minecraft/data/worldgen/placement/CavePlacements/ ()V net/minecraft/data/worldgen/placement/CavePlacements/ ()V +MD: net/minecraft/data/worldgen/placement/CavePlacements/m_254844_ (Lnet/minecraft/data/worldgen/BootstapContext;)V net/minecraft/data/worldgen/placement/CavePlacements/bootstrap (Lnet/minecraft/data/worldgen/BootstapContext;)V +MD: net/minecraft/data/worldgen/placement/EndPlacements/ ()V net/minecraft/data/worldgen/placement/EndPlacements/ ()V +MD: net/minecraft/data/worldgen/placement/EndPlacements/ ()V net/minecraft/data/worldgen/placement/EndPlacements/ ()V +MD: net/minecraft/data/worldgen/placement/EndPlacements/m_255215_ (Lnet/minecraft/data/worldgen/BootstapContext;)V net/minecraft/data/worldgen/placement/EndPlacements/bootstrap (Lnet/minecraft/data/worldgen/BootstapContext;)V +MD: net/minecraft/data/worldgen/placement/MiscOverworldPlacements/ ()V net/minecraft/data/worldgen/placement/MiscOverworldPlacements/ ()V +MD: net/minecraft/data/worldgen/placement/MiscOverworldPlacements/ ()V net/minecraft/data/worldgen/placement/MiscOverworldPlacements/ ()V +MD: net/minecraft/data/worldgen/placement/MiscOverworldPlacements/m_255422_ (Lnet/minecraft/data/worldgen/BootstapContext;)V net/minecraft/data/worldgen/placement/MiscOverworldPlacements/bootstrap (Lnet/minecraft/data/worldgen/BootstapContext;)V +MD: net/minecraft/data/worldgen/placement/NetherPlacements/ ()V net/minecraft/data/worldgen/placement/NetherPlacements/ ()V +MD: net/minecraft/data/worldgen/placement/NetherPlacements/ ()V net/minecraft/data/worldgen/placement/NetherPlacements/ ()V +MD: net/minecraft/data/worldgen/placement/NetherPlacements/m_255430_ (Lnet/minecraft/data/worldgen/BootstapContext;)V net/minecraft/data/worldgen/placement/NetherPlacements/bootstrap (Lnet/minecraft/data/worldgen/BootstapContext;)V +MD: net/minecraft/data/worldgen/placement/OrePlacements/ ()V net/minecraft/data/worldgen/placement/OrePlacements/ ()V +MD: net/minecraft/data/worldgen/placement/OrePlacements/ ()V net/minecraft/data/worldgen/placement/OrePlacements/ ()V +MD: net/minecraft/data/worldgen/placement/OrePlacements/m_195343_ (ILnet/minecraft/world/level/levelgen/placement/PlacementModifier;)Ljava/util/List; net/minecraft/data/worldgen/placement/OrePlacements/commonOrePlacement (ILnet/minecraft/world/level/levelgen/placement/PlacementModifier;)Ljava/util/List; +MD: net/minecraft/data/worldgen/placement/OrePlacements/m_195346_ (Lnet/minecraft/world/level/levelgen/placement/PlacementModifier;Lnet/minecraft/world/level/levelgen/placement/PlacementModifier;)Ljava/util/List; net/minecraft/data/worldgen/placement/OrePlacements/orePlacement (Lnet/minecraft/world/level/levelgen/placement/PlacementModifier;Lnet/minecraft/world/level/levelgen/placement/PlacementModifier;)Ljava/util/List; +MD: net/minecraft/data/worldgen/placement/OrePlacements/m_195349_ (ILnet/minecraft/world/level/levelgen/placement/PlacementModifier;)Ljava/util/List; net/minecraft/data/worldgen/placement/OrePlacements/rareOrePlacement (ILnet/minecraft/world/level/levelgen/placement/PlacementModifier;)Ljava/util/List; +MD: net/minecraft/data/worldgen/placement/OrePlacements/m_255119_ (Lnet/minecraft/data/worldgen/BootstapContext;)V net/minecraft/data/worldgen/placement/OrePlacements/bootstrap (Lnet/minecraft/data/worldgen/BootstapContext;)V +MD: net/minecraft/data/worldgen/placement/PlacementUtils/ ()V net/minecraft/data/worldgen/placement/PlacementUtils/ ()V +MD: net/minecraft/data/worldgen/placement/PlacementUtils/ ()V net/minecraft/data/worldgen/placement/PlacementUtils/ ()V +MD: net/minecraft/data/worldgen/placement/PlacementUtils/m_195364_ (IFI)Lnet/minecraft/world/level/levelgen/placement/PlacementModifier; net/minecraft/data/worldgen/placement/PlacementUtils/countExtra (IFI)Lnet/minecraft/world/level/levelgen/placement/PlacementModifier; +MD: net/minecraft/data/worldgen/placement/PlacementUtils/m_206493_ (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/levelgen/placement/BlockPredicateFilter; net/minecraft/data/worldgen/placement/PlacementUtils/filteredByBlockSurvival (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/levelgen/placement/BlockPredicateFilter; +MD: net/minecraft/data/worldgen/placement/PlacementUtils/m_206495_ (Lnet/minecraft/world/level/levelgen/feature/Feature;Lnet/minecraft/world/level/levelgen/feature/configurations/FeatureConfiguration;)Lnet/minecraft/core/Holder; net/minecraft/data/worldgen/placement/PlacementUtils/onlyWhenEmpty (Lnet/minecraft/world/level/levelgen/feature/Feature;Lnet/minecraft/world/level/levelgen/feature/configurations/FeatureConfiguration;)Lnet/minecraft/core/Holder; +MD: net/minecraft/data/worldgen/placement/PlacementUtils/m_206498_ (Lnet/minecraft/world/level/levelgen/feature/Feature;Lnet/minecraft/world/level/levelgen/feature/configurations/FeatureConfiguration;Lnet/minecraft/world/level/levelgen/blockpredicates/BlockPredicate;)Lnet/minecraft/core/Holder; net/minecraft/data/worldgen/placement/PlacementUtils/filtered (Lnet/minecraft/world/level/levelgen/feature/Feature;Lnet/minecraft/world/level/levelgen/feature/configurations/FeatureConfiguration;Lnet/minecraft/world/level/levelgen/blockpredicates/BlockPredicate;)Lnet/minecraft/core/Holder; +MD: net/minecraft/data/worldgen/placement/PlacementUtils/m_206502_ (Lnet/minecraft/world/level/levelgen/feature/Feature;Lnet/minecraft/world/level/levelgen/feature/configurations/FeatureConfiguration;[Lnet/minecraft/world/level/levelgen/placement/PlacementModifier;)Lnet/minecraft/core/Holder; net/minecraft/data/worldgen/placement/PlacementUtils/inlinePlaced (Lnet/minecraft/world/level/levelgen/feature/Feature;Lnet/minecraft/world/level/levelgen/feature/configurations/FeatureConfiguration;[Lnet/minecraft/world/level/levelgen/placement/PlacementModifier;)Lnet/minecraft/core/Holder; +MD: net/minecraft/data/worldgen/placement/PlacementUtils/m_206506_ (Lnet/minecraft/core/Holder;[Lnet/minecraft/world/level/levelgen/placement/PlacementModifier;)Lnet/minecraft/core/Holder; net/minecraft/data/worldgen/placement/PlacementUtils/inlinePlaced (Lnet/minecraft/core/Holder;[Lnet/minecraft/world/level/levelgen/placement/PlacementModifier;)Lnet/minecraft/core/Holder; +MD: net/minecraft/data/worldgen/placement/PlacementUtils/m_206517_ ()Lnet/minecraft/world/level/levelgen/placement/PlacementFilter; net/minecraft/data/worldgen/placement/PlacementUtils/isEmpty ()Lnet/minecraft/world/level/levelgen/placement/PlacementFilter; +MD: net/minecraft/data/worldgen/placement/PlacementUtils/m_254943_ (Lnet/minecraft/data/worldgen/BootstapContext;Lnet/minecraft/resources/ResourceKey;Lnet/minecraft/core/Holder;Ljava/util/List;)V net/minecraft/data/worldgen/placement/PlacementUtils/register (Lnet/minecraft/data/worldgen/BootstapContext;Lnet/minecraft/resources/ResourceKey;Lnet/minecraft/core/Holder;Ljava/util/List;)V +MD: net/minecraft/data/worldgen/placement/PlacementUtils/m_255070_ (Ljava/lang/String;)Lnet/minecraft/resources/ResourceKey; net/minecraft/data/worldgen/placement/PlacementUtils/createKey (Ljava/lang/String;)Lnet/minecraft/resources/ResourceKey; +MD: net/minecraft/data/worldgen/placement/PlacementUtils/m_255199_ (Lnet/minecraft/data/worldgen/BootstapContext;)V net/minecraft/data/worldgen/placement/PlacementUtils/bootstrap (Lnet/minecraft/data/worldgen/BootstapContext;)V +MD: net/minecraft/data/worldgen/placement/PlacementUtils/m_255206_ (Lnet/minecraft/data/worldgen/BootstapContext;Lnet/minecraft/resources/ResourceKey;Lnet/minecraft/core/Holder;[Lnet/minecraft/world/level/levelgen/placement/PlacementModifier;)V net/minecraft/data/worldgen/placement/PlacementUtils/register (Lnet/minecraft/data/worldgen/BootstapContext;Lnet/minecraft/resources/ResourceKey;Lnet/minecraft/core/Holder;[Lnet/minecraft/world/level/levelgen/placement/PlacementModifier;)V +MD: net/minecraft/data/worldgen/placement/TreePlacements/ ()V net/minecraft/data/worldgen/placement/TreePlacements/ ()V +MD: net/minecraft/data/worldgen/placement/TreePlacements/ ()V net/minecraft/data/worldgen/placement/TreePlacements/ ()V +MD: net/minecraft/data/worldgen/placement/TreePlacements/m_254989_ (Lnet/minecraft/data/worldgen/BootstapContext;)V net/minecraft/data/worldgen/placement/TreePlacements/bootstrap (Lnet/minecraft/data/worldgen/BootstapContext;)V +MD: net/minecraft/data/worldgen/placement/VegetationPlacements/ ()V net/minecraft/data/worldgen/placement/VegetationPlacements/ ()V +MD: net/minecraft/data/worldgen/placement/VegetationPlacements/ ()V net/minecraft/data/worldgen/placement/VegetationPlacements/ ()V +MD: net/minecraft/data/worldgen/placement/VegetationPlacements/m_195474_ (I)Ljava/util/List; net/minecraft/data/worldgen/placement/VegetationPlacements/worldSurfaceSquaredWithCount (I)Ljava/util/List; +MD: net/minecraft/data/worldgen/placement/VegetationPlacements/m_195476_ (ILnet/minecraft/world/level/levelgen/placement/PlacementModifier;)Ljava/util/List; net/minecraft/data/worldgen/placement/VegetationPlacements/getMushroomPlacement (ILnet/minecraft/world/level/levelgen/placement/PlacementModifier;)Ljava/util/List; +MD: net/minecraft/data/worldgen/placement/VegetationPlacements/m_195479_ (Lnet/minecraft/world/level/levelgen/placement/PlacementModifier;)Ljava/util/List; net/minecraft/data/worldgen/placement/VegetationPlacements/treePlacement (Lnet/minecraft/world/level/levelgen/placement/PlacementModifier;)Ljava/util/List; +MD: net/minecraft/data/worldgen/placement/VegetationPlacements/m_195481_ (Lnet/minecraft/world/level/levelgen/placement/PlacementModifier;Lnet/minecraft/world/level/block/Block;)Ljava/util/List; net/minecraft/data/worldgen/placement/VegetationPlacements/treePlacement (Lnet/minecraft/world/level/levelgen/placement/PlacementModifier;Lnet/minecraft/world/level/block/Block;)Ljava/util/List; +MD: net/minecraft/data/worldgen/placement/VegetationPlacements/m_195484_ (Lnet/minecraft/world/level/levelgen/placement/PlacementModifier;)Lcom/google/common/collect/ImmutableList$Builder; net/minecraft/data/worldgen/placement/VegetationPlacements/treePlacementBase (Lnet/minecraft/world/level/levelgen/placement/PlacementModifier;)Lcom/google/common/collect/ImmutableList$Builder; +MD: net/minecraft/data/worldgen/placement/VegetationPlacements/m_254976_ (Lnet/minecraft/data/worldgen/BootstapContext;)V net/minecraft/data/worldgen/placement/VegetationPlacements/bootstrap (Lnet/minecraft/data/worldgen/BootstapContext;)V +MD: net/minecraft/data/worldgen/placement/VillagePlacements/ ()V net/minecraft/data/worldgen/placement/VillagePlacements/ ()V +MD: net/minecraft/data/worldgen/placement/VillagePlacements/ ()V net/minecraft/data/worldgen/placement/VillagePlacements/ ()V +MD: net/minecraft/data/worldgen/placement/VillagePlacements/m_254998_ (Lnet/minecraft/data/worldgen/BootstapContext;)V net/minecraft/data/worldgen/placement/VillagePlacements/bootstrap (Lnet/minecraft/data/worldgen/BootstapContext;)V +MD: net/minecraft/gametest/framework/AfterBatch/m_177036_ ()Ljava/lang/String; net/minecraft/gametest/framework/AfterBatch/batch ()Ljava/lang/String; +MD: net/minecraft/gametest/framework/BeforeBatch/m_177037_ ()Ljava/lang/String; net/minecraft/gametest/framework/BeforeBatch/batch ()Ljava/lang/String; +MD: net/minecraft/gametest/framework/ExhaustedAttemptsException/ (IILnet/minecraft/gametest/framework/GameTestInfo;)V net/minecraft/gametest/framework/ExhaustedAttemptsException/ (IILnet/minecraft/gametest/framework/GameTestInfo;)V +MD: net/minecraft/gametest/framework/GameTest/m_177042_ ()I net/minecraft/gametest/framework/GameTest/timeoutTicks ()I +MD: net/minecraft/gametest/framework/GameTest/m_177043_ ()Ljava/lang/String; net/minecraft/gametest/framework/GameTest/batch ()Ljava/lang/String; +MD: net/minecraft/gametest/framework/GameTest/m_177044_ ()I net/minecraft/gametest/framework/GameTest/rotationSteps ()I +MD: net/minecraft/gametest/framework/GameTest/m_177045_ ()Z net/minecraft/gametest/framework/GameTest/required ()Z +MD: net/minecraft/gametest/framework/GameTest/m_177046_ ()Ljava/lang/String; net/minecraft/gametest/framework/GameTest/template ()Ljava/lang/String; +MD: net/minecraft/gametest/framework/GameTest/m_177047_ ()J net/minecraft/gametest/framework/GameTest/setupTicks ()J +MD: net/minecraft/gametest/framework/GameTest/m_177048_ ()I net/minecraft/gametest/framework/GameTest/attempts ()I +MD: net/minecraft/gametest/framework/GameTest/m_177049_ ()I net/minecraft/gametest/framework/GameTest/requiredSuccesses ()I +MD: net/minecraft/gametest/framework/GameTestAssertException/ (Ljava/lang/String;)V net/minecraft/gametest/framework/GameTestAssertException/ (Ljava/lang/String;)V +MD: net/minecraft/gametest/framework/GameTestAssertPosException/ (Ljava/lang/String;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;J)V net/minecraft/gametest/framework/GameTestAssertPosException/ (Ljava/lang/String;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;J)V +MD: net/minecraft/gametest/framework/GameTestAssertPosException/getMessage ()Ljava/lang/String; net/minecraft/gametest/framework/GameTestAssertPosException/getMessage ()Ljava/lang/String; +MD: net/minecraft/gametest/framework/GameTestAssertPosException/m_127496_ ()Ljava/lang/String; net/minecraft/gametest/framework/GameTestAssertPosException/getMessageToShowAtBlock ()Ljava/lang/String; +MD: net/minecraft/gametest/framework/GameTestAssertPosException/m_127497_ ()Lnet/minecraft/core/BlockPos; net/minecraft/gametest/framework/GameTestAssertPosException/getAbsolutePos ()Lnet/minecraft/core/BlockPos; +MD: net/minecraft/gametest/framework/GameTestAssertPosException/m_177055_ ()Lnet/minecraft/core/BlockPos; net/minecraft/gametest/framework/GameTestAssertPosException/getRelativePos ()Lnet/minecraft/core/BlockPos; +MD: net/minecraft/gametest/framework/GameTestBatch/ (Ljava/lang/String;Ljava/util/Collection;Ljava/util/function/Consumer;Ljava/util/function/Consumer;)V net/minecraft/gametest/framework/GameTestBatch/ (Ljava/lang/String;Ljava/util/Collection;Ljava/util/function/Consumer;Ljava/util/function/Consumer;)V +MD: net/minecraft/gametest/framework/GameTestBatch/m_127546_ ()Ljava/lang/String; net/minecraft/gametest/framework/GameTestBatch/getName ()Ljava/lang/String; +MD: net/minecraft/gametest/framework/GameTestBatch/m_127547_ (Lnet/minecraft/server/level/ServerLevel;)V net/minecraft/gametest/framework/GameTestBatch/runBeforeBatchFunction (Lnet/minecraft/server/level/ServerLevel;)V +MD: net/minecraft/gametest/framework/GameTestBatch/m_127549_ ()Ljava/util/Collection; net/minecraft/gametest/framework/GameTestBatch/getTestFunctions ()Ljava/util/Collection; +MD: net/minecraft/gametest/framework/GameTestBatch/m_177063_ (Lnet/minecraft/server/level/ServerLevel;)V net/minecraft/gametest/framework/GameTestBatch/runAfterBatchFunction (Lnet/minecraft/server/level/ServerLevel;)V +MD: net/minecraft/gametest/framework/GameTestBatchRunner/ ()V net/minecraft/gametest/framework/GameTestBatchRunner/ ()V +MD: net/minecraft/gametest/framework/GameTestBatchRunner/ (Ljava/util/Collection;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/Rotation;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/gametest/framework/GameTestTicker;I)V net/minecraft/gametest/framework/GameTestBatchRunner/ (Ljava/util/Collection;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/Rotation;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/gametest/framework/GameTestTicker;I)V +MD: net/minecraft/gametest/framework/GameTestBatchRunner/m_127569_ ()Ljava/util/List; net/minecraft/gametest/framework/GameTestBatchRunner/getTestInfos ()Ljava/util/List; +MD: net/minecraft/gametest/framework/GameTestBatchRunner/m_127570_ (I)V net/minecraft/gametest/framework/GameTestBatchRunner/runBatch (I)V +MD: net/minecraft/gametest/framework/GameTestBatchRunner/m_127583_ ()V net/minecraft/gametest/framework/GameTestBatchRunner/start ()V +MD: net/minecraft/gametest/framework/GameTestBatchRunner/m_177065_ (Lnet/minecraft/world/level/block/Rotation;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/gametest/framework/GameTestBatch;)Lcom/mojang/datafixers/util/Pair; net/minecraft/gametest/framework/GameTestBatchRunner/lambda$new$1 (Lnet/minecraft/world/level/block/Rotation;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/gametest/framework/GameTestBatch;)Lcom/mojang/datafixers/util/Pair; +MD: net/minecraft/gametest/framework/GameTestBatchRunner/m_177069_ (Lnet/minecraft/world/level/block/Rotation;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/gametest/framework/TestFunction;)Lnet/minecraft/gametest/framework/GameTestInfo; net/minecraft/gametest/framework/GameTestBatchRunner/lambda$new$0 (Lnet/minecraft/world/level/block/Rotation;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/gametest/framework/TestFunction;)Lnet/minecraft/gametest/framework/GameTestInfo; +MD: net/minecraft/gametest/framework/GameTestBatchRunner/m_177073_ (Lcom/mojang/datafixers/util/Pair;)Ljava/util/stream/Stream; net/minecraft/gametest/framework/GameTestBatchRunner/lambda$new$2 (Lcom/mojang/datafixers/util/Pair;)Ljava/util/stream/Stream; +MD: net/minecraft/gametest/framework/GameTestBatchRunner/m_177075_ (Ljava/util/Collection;)Ljava/util/Map; net/minecraft/gametest/framework/GameTestBatchRunner/createStructuresForBatch (Ljava/util/Collection;)Ljava/util/Map; +MD: net/minecraft/gametest/framework/GameTestBatchRunner/m_177077_ (Ljava/util/Map;Lnet/minecraft/gametest/framework/GameTestInfo;)V net/minecraft/gametest/framework/GameTestBatchRunner/lambda$runBatch$3 (Ljava/util/Map;Lnet/minecraft/gametest/framework/GameTestInfo;)V +MD: net/minecraft/gametest/framework/GameTestBatchRunner$1/ (Lnet/minecraft/gametest/framework/GameTestBatchRunner;Lnet/minecraft/gametest/framework/MultipleTestTracker;Lnet/minecraft/gametest/framework/GameTestBatch;I)V net/minecraft/gametest/framework/GameTestBatchRunner$1/ (Lnet/minecraft/gametest/framework/GameTestBatchRunner;Lnet/minecraft/gametest/framework/MultipleTestTracker;Lnet/minecraft/gametest/framework/GameTestBatch;I)V +MD: net/minecraft/gametest/framework/GameTestBatchRunner$1/m_142378_ (Lnet/minecraft/gametest/framework/GameTestInfo;)V net/minecraft/gametest/framework/GameTestBatchRunner$1/testPassed (Lnet/minecraft/gametest/framework/GameTestInfo;)V +MD: net/minecraft/gametest/framework/GameTestBatchRunner$1/m_177088_ ()V net/minecraft/gametest/framework/GameTestBatchRunner$1/testCompleted ()V +MD: net/minecraft/gametest/framework/GameTestBatchRunner$1/m_8066_ (Lnet/minecraft/gametest/framework/GameTestInfo;)V net/minecraft/gametest/framework/GameTestBatchRunner$1/testFailed (Lnet/minecraft/gametest/framework/GameTestInfo;)V +MD: net/minecraft/gametest/framework/GameTestBatchRunner$1/m_8073_ (Lnet/minecraft/gametest/framework/GameTestInfo;)V net/minecraft/gametest/framework/GameTestBatchRunner$1/testStructureLoaded (Lnet/minecraft/gametest/framework/GameTestInfo;)V +MD: net/minecraft/gametest/framework/GameTestEvent/ (Ljava/lang/Long;Ljava/lang/Runnable;)V net/minecraft/gametest/framework/GameTestEvent/ (Ljava/lang/Long;Ljava/lang/Runnable;)V +MD: net/minecraft/gametest/framework/GameTestEvent/m_177094_ (JLjava/lang/Runnable;)Lnet/minecraft/gametest/framework/GameTestEvent; net/minecraft/gametest/framework/GameTestEvent/create (JLjava/lang/Runnable;)Lnet/minecraft/gametest/framework/GameTestEvent; +MD: net/minecraft/gametest/framework/GameTestEvent/m_177097_ (Ljava/lang/Runnable;)Lnet/minecraft/gametest/framework/GameTestEvent; net/minecraft/gametest/framework/GameTestEvent/create (Ljava/lang/Runnable;)Lnet/minecraft/gametest/framework/GameTestEvent; +MD: net/minecraft/gametest/framework/GameTestHelper/ (Lnet/minecraft/gametest/framework/GameTestInfo;)V net/minecraft/gametest/framework/GameTestHelper/ (Lnet/minecraft/gametest/framework/GameTestInfo;)V +MD: net/minecraft/gametest/framework/GameTestHelper/m_177100_ ()Lnet/minecraft/server/level/ServerLevel; net/minecraft/gametest/framework/GameTestHelper/getLevel ()Lnet/minecraft/server/level/ServerLevel; +MD: net/minecraft/gametest/framework/GameTestHelper/m_177101_ (I)V net/minecraft/gametest/framework/GameTestHelper/setDayTime (I)V +MD: net/minecraft/gametest/framework/GameTestHelper/m_177103_ (III)V net/minecraft/gametest/framework/GameTestHelper/pressButton (III)V +MD: net/minecraft/gametest/framework/GameTestHelper/m_177107_ (IIILnet/minecraft/world/level/block/Block;)V net/minecraft/gametest/framework/GameTestHelper/setBlock (IIILnet/minecraft/world/level/block/Block;)V +MD: net/minecraft/gametest/framework/GameTestHelper/m_177112_ (IIILnet/minecraft/world/level/block/state/BlockState;)V net/minecraft/gametest/framework/GameTestHelper/setBlock (IIILnet/minecraft/world/level/block/state/BlockState;)V +MD: net/minecraft/gametest/framework/GameTestHelper/m_177117_ (ILjava/lang/Runnable;)V net/minecraft/gametest/framework/GameTestHelper/succeedOnTickWhen (ILjava/lang/Runnable;)V +MD: net/minecraft/gametest/framework/GameTestHelper/m_177120_ (JLnet/minecraft/core/BlockPos;)V net/minecraft/gametest/framework/GameTestHelper/assertAtTickTimeContainerEmpty (JLnet/minecraft/core/BlockPos;)V +MD: net/minecraft/gametest/framework/GameTestHelper/m_177123_ (JLnet/minecraft/core/BlockPos;Lnet/minecraft/world/item/Item;)V net/minecraft/gametest/framework/GameTestHelper/assertAtTickTimeContainerContains (JLnet/minecraft/core/BlockPos;Lnet/minecraft/world/item/Item;)V +MD: net/minecraft/gametest/framework/GameTestHelper/m_177127_ (JLjava/lang/Runnable;)V net/minecraft/gametest/framework/GameTestHelper/runAtTickTime (JLjava/lang/Runnable;)V +MD: net/minecraft/gametest/framework/GameTestHelper/m_177130_ (Lnet/minecraft/world/entity/Entity;)Z net/minecraft/gametest/framework/GameTestHelper/lambda$killAllEntitiesOfClass$0 (Lnet/minecraft/world/entity/Entity;)Z +MD: net/minecraft/gametest/framework/GameTestHelper/m_177132_ (Lnet/minecraft/world/entity/Entity;III)V net/minecraft/gametest/framework/GameTestHelper/assertEntityInstancePresent (Lnet/minecraft/world/entity/Entity;III)V +MD: net/minecraft/gametest/framework/GameTestHelper/m_177137_ (Lnet/minecraft/world/entity/Entity;Lnet/minecraft/world/entity/Entity;)Z net/minecraft/gametest/framework/GameTestHelper/lambda$assertEntityInstancePresent$12 (Lnet/minecraft/world/entity/Entity;Lnet/minecraft/world/entity/Entity;)Z +MD: net/minecraft/gametest/framework/GameTestHelper/m_177140_ (Lnet/minecraft/world/entity/Entity;Lnet/minecraft/core/BlockPos;)V net/minecraft/gametest/framework/GameTestHelper/assertEntityInstancePresent (Lnet/minecraft/world/entity/Entity;Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/gametest/framework/GameTestHelper/m_177143_ (Lnet/minecraft/world/entity/Entity;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/gametest/framework/GameTestAssertPosException; net/minecraft/gametest/framework/GameTestHelper/lambda$assertEntityInstancePresent$13 (Lnet/minecraft/world/entity/Entity;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/gametest/framework/GameTestAssertPosException; +MD: net/minecraft/gametest/framework/GameTestHelper/m_177147_ (Lnet/minecraft/world/entity/Entity;Ljava/util/function/Function;Ljava/lang/String;Ljava/lang/Object;)V net/minecraft/gametest/framework/GameTestHelper/assertEntityProperty (Lnet/minecraft/world/entity/Entity;Ljava/util/function/Function;Ljava/lang/String;Ljava/lang/Object;)V +MD: net/minecraft/gametest/framework/GameTestHelper/m_177152_ (Lnet/minecraft/world/entity/Entity;Ljava/util/function/Predicate;Ljava/lang/String;)V net/minecraft/gametest/framework/GameTestHelper/assertEntityProperty (Lnet/minecraft/world/entity/Entity;Ljava/util/function/Predicate;Ljava/lang/String;)V +MD: net/minecraft/gametest/framework/GameTestHelper/m_177156_ (Lnet/minecraft/world/entity/EntityType;)V net/minecraft/gametest/framework/GameTestHelper/assertEntityPresent (Lnet/minecraft/world/entity/EntityType;)V +MD: net/minecraft/gametest/framework/GameTestHelper/m_177158_ (Lnet/minecraft/world/entity/EntityType;DDD)V net/minecraft/gametest/framework/GameTestHelper/assertEntityTouching (Lnet/minecraft/world/entity/EntityType;DDD)V +MD: net/minecraft/gametest/framework/GameTestHelper/m_177163_ (Lnet/minecraft/world/entity/EntityType;FFF)Lnet/minecraft/world/entity/Entity; net/minecraft/gametest/framework/GameTestHelper/spawn (Lnet/minecraft/world/entity/EntityType;FFF)Lnet/minecraft/world/entity/Entity; +MD: net/minecraft/gametest/framework/GameTestHelper/m_177168_ (Lnet/minecraft/world/entity/EntityType;III)Lnet/minecraft/world/entity/Entity; net/minecraft/gametest/framework/GameTestHelper/spawn (Lnet/minecraft/world/entity/EntityType;III)Lnet/minecraft/world/entity/Entity; +MD: net/minecraft/gametest/framework/GameTestHelper/m_177173_ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/phys/Vec3;)Lnet/minecraft/world/entity/Entity; net/minecraft/gametest/framework/GameTestHelper/spawn (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/phys/Vec3;)Lnet/minecraft/world/entity/Entity; +MD: net/minecraft/gametest/framework/GameTestHelper/m_177176_ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/entity/Entity; net/minecraft/gametest/framework/GameTestHelper/spawn (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/entity/Entity; +MD: net/minecraft/gametest/framework/GameTestHelper/m_177179_ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/core/BlockPos;D)V net/minecraft/gametest/framework/GameTestHelper/assertEntityPresent (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/core/BlockPos;D)V +MD: net/minecraft/gametest/framework/GameTestHelper/m_177183_ (Lnet/minecraft/world/entity/LivingEntity;)Lnet/minecraft/world/entity/LivingEntity; net/minecraft/gametest/framework/GameTestHelper/makeAboutToDrown (Lnet/minecraft/world/entity/LivingEntity;)Lnet/minecraft/world/entity/LivingEntity; +MD: net/minecraft/gametest/framework/GameTestHelper/m_177185_ (Lnet/minecraft/world/entity/Mob;Lnet/minecraft/core/BlockPos;F)Lnet/minecraft/gametest/framework/GameTestSequence; net/minecraft/gametest/framework/GameTestHelper/walkTo (Lnet/minecraft/world/entity/Mob;Lnet/minecraft/core/BlockPos;F)Lnet/minecraft/gametest/framework/GameTestSequence; +MD: net/minecraft/gametest/framework/GameTestHelper/m_177189_ (Lnet/minecraft/world/item/Item;FFF)Lnet/minecraft/world/entity/item/ItemEntity; net/minecraft/gametest/framework/GameTestHelper/spawnItem (Lnet/minecraft/world/item/Item;FFF)Lnet/minecraft/world/entity/item/ItemEntity; +MD: net/minecraft/gametest/framework/GameTestHelper/m_177194_ (Lnet/minecraft/world/item/Item;Lnet/minecraft/core/BlockPos;D)V net/minecraft/gametest/framework/GameTestHelper/assertItemEntityPresent (Lnet/minecraft/world/item/Item;Lnet/minecraft/core/BlockPos;D)V +MD: net/minecraft/gametest/framework/GameTestHelper/m_177198_ (Lnet/minecraft/world/item/Item;Lnet/minecraft/core/BlockPos;DI)V net/minecraft/gametest/framework/GameTestHelper/assertItemEntityCountIs (Lnet/minecraft/world/item/Item;Lnet/minecraft/core/BlockPos;DI)V +MD: net/minecraft/gametest/framework/GameTestHelper/m_177203_ (Lnet/minecraft/world/level/block/Block;III)V net/minecraft/gametest/framework/GameTestHelper/assertBlockPresent (Lnet/minecraft/world/level/block/Block;III)V +MD: net/minecraft/gametest/framework/GameTestHelper/m_177208_ (Lnet/minecraft/world/level/block/Block;Lnet/minecraft/core/BlockPos;)V net/minecraft/gametest/framework/GameTestHelper/assertBlockPresent (Lnet/minecraft/world/level/block/Block;Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/gametest/framework/GameTestHelper/m_177211_ (Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/gametest/framework/GameTestHelper/lambda$pressButton$2 (Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/gametest/framework/GameTestHelper/m_177213_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/Block;Lnet/minecraft/world/level/block/Block;)Z net/minecraft/gametest/framework/GameTestHelper/lambda$assertBlockPresent$5 (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/Block;Lnet/minecraft/world/level/block/Block;)Z +MD: net/minecraft/gametest/framework/GameTestHelper/m_177224_ (Lnet/minecraft/world/level/levelgen/structure/BoundingBox;Lnet/minecraft/core/BlockPos;)V net/minecraft/gametest/framework/GameTestHelper/assertSameBlockStates (Lnet/minecraft/world/level/levelgen/structure/BoundingBox;Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/gametest/framework/GameTestHelper/m_177227_ (Lnet/minecraft/world/phys/Vec3;)Lnet/minecraft/world/phys/Vec3; net/minecraft/gametest/framework/GameTestHelper/absoluteVec (Lnet/minecraft/world/phys/Vec3;)Lnet/minecraft/world/phys/Vec3; +MD: net/minecraft/gametest/framework/GameTestHelper/m_177229_ (Lnet/minecraft/world/phys/Vec3;Lnet/minecraft/world/entity/Entity;)Z net/minecraft/gametest/framework/GameTestHelper/lambda$assertEntityNotTouching$15 (Lnet/minecraft/world/phys/Vec3;Lnet/minecraft/world/entity/Entity;)Z +MD: net/minecraft/gametest/framework/GameTestHelper/m_177232_ (Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/gametest/framework/GameTestHelper/getBlockState (Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/gametest/framework/GameTestHelper/m_177234_ (Lnet/minecraft/core/BlockPos;J)V net/minecraft/gametest/framework/GameTestHelper/pulseRedstone (Lnet/minecraft/core/BlockPos;J)V +MD: net/minecraft/gametest/framework/GameTestHelper/m_177237_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/EntityType;Ljava/util/function/Function;Ljava/lang/Object;)V net/minecraft/gametest/framework/GameTestHelper/assertEntityData (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/EntityType;Ljava/util/function/Function;Ljava/lang/Object;)V +MD: net/minecraft/gametest/framework/GameTestHelper/m_177242_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/item/Item;)V net/minecraft/gametest/framework/GameTestHelper/assertContainerContains (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/item/Item;)V +MD: net/minecraft/gametest/framework/GameTestHelper/m_177245_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/Block;)V net/minecraft/gametest/framework/GameTestHelper/setBlock (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/Block;)V +MD: net/minecraft/gametest/framework/GameTestHelper/m_177248_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/Block;Lnet/minecraft/world/level/block/Block;)Z net/minecraft/gametest/framework/GameTestHelper/lambda$assertBlockNotPresent$6 (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/Block;Lnet/minecraft/world/level/block/Block;)Z +MD: net/minecraft/gametest/framework/GameTestHelper/m_177252_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V net/minecraft/gametest/framework/GameTestHelper/setBlock (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V +MD: net/minecraft/gametest/framework/GameTestHelper/m_177255_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/properties/Property;Ljava/lang/Comparable;)V net/minecraft/gametest/framework/GameTestHelper/assertBlockProperty (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/properties/Property;Ljava/lang/Comparable;)V +MD: net/minecraft/gametest/framework/GameTestHelper/m_177259_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/properties/Property;Ljava/util/function/Predicate;Ljava/lang/String;)V net/minecraft/gametest/framework/GameTestHelper/assertBlockProperty (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/properties/Property;Ljava/util/function/Predicate;Ljava/lang/String;)V +MD: net/minecraft/gametest/framework/GameTestHelper/m_177264_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/levelgen/structure/BoundingBox;Lnet/minecraft/core/BlockPos;)V net/minecraft/gametest/framework/GameTestHelper/lambda$assertSameBlockStates$18 (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/levelgen/structure/BoundingBox;Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/gametest/framework/GameTestHelper/m_177268_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;)V net/minecraft/gametest/framework/GameTestHelper/assertSameBlockState (Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/gametest/framework/GameTestHelper/m_177271_ (Lnet/minecraft/core/BlockPos;Ljava/util/function/Predicate;Ljava/lang/String;)V net/minecraft/gametest/framework/GameTestHelper/assertBlock (Lnet/minecraft/core/BlockPos;Ljava/util/function/Predicate;Ljava/lang/String;)V +MD: net/minecraft/gametest/framework/GameTestHelper/m_177275_ (Lnet/minecraft/core/BlockPos;Ljava/util/function/Predicate;Ljava/util/function/Supplier;)V net/minecraft/gametest/framework/GameTestHelper/assertBlock (Lnet/minecraft/core/BlockPos;Ljava/util/function/Predicate;Ljava/util/function/Supplier;)V +MD: net/minecraft/gametest/framework/GameTestHelper/m_177279_ (Ljava/lang/Runnable;)V net/minecraft/gametest/framework/GameTestHelper/succeedIf (Ljava/lang/Runnable;)V +MD: net/minecraft/gametest/framework/GameTestHelper/m_177281_ (Ljava/lang/Runnable;J)V net/minecraft/gametest/framework/GameTestHelper/lambda$onEachTick$26 (Ljava/lang/Runnable;J)V +MD: net/minecraft/gametest/framework/GameTestHelper/m_177284_ (Ljava/lang/String;)V net/minecraft/gametest/framework/GameTestHelper/fail (Ljava/lang/String;)V +MD: net/minecraft/gametest/framework/GameTestHelper/m_177286_ (Ljava/lang/String;Lnet/minecraft/world/entity/Entity;)V net/minecraft/gametest/framework/GameTestHelper/fail (Ljava/lang/String;Lnet/minecraft/world/entity/Entity;)V +MD: net/minecraft/gametest/framework/GameTestHelper/m_177289_ (Ljava/lang/String;Lnet/minecraft/core/BlockPos;)V net/minecraft/gametest/framework/GameTestHelper/fail (Ljava/lang/String;Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/gametest/framework/GameTestHelper/m_177292_ (Ljava/util/function/Consumer;)V net/minecraft/gametest/framework/GameTestHelper/forEveryBlockInStructure (Ljava/util/function/Consumer;)V +MD: net/minecraft/gametest/framework/GameTestHelper/m_177294_ (Ljava/util/function/Predicate;Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/gametest/framework/GameTestHelper/lambda$assertBlock$9 (Ljava/util/function/Predicate;Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/gametest/framework/GameTestHelper/m_177301_ ()V net/minecraft/gametest/framework/GameTestHelper/killAllEntities ()V +MD: net/minecraft/gametest/framework/GameTestHelper/m_177302_ (III)V net/minecraft/gametest/framework/GameTestHelper/pullLever (III)V +MD: net/minecraft/gametest/framework/GameTestHelper/m_177306_ (JLjava/lang/Runnable;)V net/minecraft/gametest/framework/GameTestHelper/runAfterDelay (JLjava/lang/Runnable;)V +MD: net/minecraft/gametest/framework/GameTestHelper/m_177309_ (Lnet/minecraft/world/entity/EntityType;)V net/minecraft/gametest/framework/GameTestHelper/assertEntityNotPresent (Lnet/minecraft/world/entity/EntityType;)V +MD: net/minecraft/gametest/framework/GameTestHelper/m_177311_ (Lnet/minecraft/world/entity/EntityType;DDD)V net/minecraft/gametest/framework/GameTestHelper/assertEntityNotTouching (Lnet/minecraft/world/entity/EntityType;DDD)V +MD: net/minecraft/gametest/framework/GameTestHelper/m_177316_ (Lnet/minecraft/world/entity/EntityType;FFF)Lnet/minecraft/world/entity/Mob; net/minecraft/gametest/framework/GameTestHelper/spawnWithNoFreeWill (Lnet/minecraft/world/entity/EntityType;FFF)Lnet/minecraft/world/entity/Mob; +MD: net/minecraft/gametest/framework/GameTestHelper/m_177321_ (Lnet/minecraft/world/entity/EntityType;III)Lnet/minecraft/world/entity/Mob; net/minecraft/gametest/framework/GameTestHelper/spawnWithNoFreeWill (Lnet/minecraft/world/entity/EntityType;III)Lnet/minecraft/world/entity/Mob; +MD: net/minecraft/gametest/framework/GameTestHelper/m_177326_ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/phys/Vec3;)Lnet/minecraft/world/entity/Mob; net/minecraft/gametest/framework/GameTestHelper/spawnWithNoFreeWill (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/phys/Vec3;)Lnet/minecraft/world/entity/Mob; +MD: net/minecraft/gametest/framework/GameTestHelper/m_177329_ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/entity/Mob; net/minecraft/gametest/framework/GameTestHelper/spawnWithNoFreeWill (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/entity/Mob; +MD: net/minecraft/gametest/framework/GameTestHelper/m_177332_ (Lnet/minecraft/world/entity/Mob;Lnet/minecraft/core/BlockPos;F)V net/minecraft/gametest/framework/GameTestHelper/lambda$walkTo$1 (Lnet/minecraft/world/entity/Mob;Lnet/minecraft/core/BlockPos;F)V +MD: net/minecraft/gametest/framework/GameTestHelper/m_177336_ (Lnet/minecraft/world/level/block/Block;III)V net/minecraft/gametest/framework/GameTestHelper/assertBlockNotPresent (Lnet/minecraft/world/level/block/Block;III)V +MD: net/minecraft/gametest/framework/GameTestHelper/m_177341_ (Lnet/minecraft/world/level/block/Block;Lnet/minecraft/core/BlockPos;)V net/minecraft/gametest/framework/GameTestHelper/assertBlockNotPresent (Lnet/minecraft/world/level/block/Block;Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/gametest/framework/GameTestHelper/m_177344_ (Lnet/minecraft/world/phys/Vec3;Lnet/minecraft/world/entity/Entity;)Z net/minecraft/gametest/framework/GameTestHelper/lambda$assertEntityTouching$14 (Lnet/minecraft/world/phys/Vec3;Lnet/minecraft/world/entity/Entity;)Z +MD: net/minecraft/gametest/framework/GameTestHelper/m_177347_ (Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/entity/BlockEntity; net/minecraft/gametest/framework/GameTestHelper/getBlockEntity (Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/entity/BlockEntity; +MD: net/minecraft/gametest/framework/GameTestHelper/m_177349_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/EntityType;Ljava/util/function/Function;Ljava/lang/Object;)V net/minecraft/gametest/framework/GameTestHelper/succeedWhenEntityData (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/EntityType;Ljava/util/function/Function;Ljava/lang/Object;)V +MD: net/minecraft/gametest/framework/GameTestHelper/m_177354_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/item/Item;)V net/minecraft/gametest/framework/GameTestHelper/lambda$assertAtTickTimeContainerContains$19 (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/item/Item;)V +MD: net/minecraft/gametest/framework/GameTestHelper/m_177357_ (Lnet/minecraft/core/BlockPos;Ljava/util/function/Predicate;Ljava/util/function/Supplier;)V net/minecraft/gametest/framework/GameTestHelper/assertBlockState (Lnet/minecraft/core/BlockPos;Ljava/util/function/Predicate;Ljava/util/function/Supplier;)V +MD: net/minecraft/gametest/framework/GameTestHelper/m_177361_ (Ljava/lang/Runnable;)V net/minecraft/gametest/framework/GameTestHelper/succeedWhen (Ljava/lang/Runnable;)V +MD: net/minecraft/gametest/framework/GameTestHelper/m_177363_ (Ljava/lang/Runnable;J)V net/minecraft/gametest/framework/GameTestHelper/lambda$failIfEver$25 (Ljava/lang/Runnable;J)V +MD: net/minecraft/gametest/framework/GameTestHelper/m_177366_ (Ljava/lang/String;)Ljava/lang/String; net/minecraft/gametest/framework/GameTestHelper/lambda$assertBlockProperty$11 (Ljava/lang/String;)Ljava/lang/String; +MD: net/minecraft/gametest/framework/GameTestHelper/m_177368_ ()Lnet/minecraft/world/entity/player/Player; net/minecraft/gametest/framework/GameTestHelper/makeMockPlayer ()Lnet/minecraft/world/entity/player/Player; +MD: net/minecraft/gametest/framework/GameTestHelper/m_177369_ (Lnet/minecraft/world/entity/EntityType;III)V net/minecraft/gametest/framework/GameTestHelper/assertEntityPresent (Lnet/minecraft/world/entity/EntityType;III)V +MD: net/minecraft/gametest/framework/GameTestHelper/m_177374_ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/core/BlockPos;)V net/minecraft/gametest/framework/GameTestHelper/assertEntityPresent (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/gametest/framework/GameTestHelper/m_177377_ (Lnet/minecraft/world/level/block/Block;III)V net/minecraft/gametest/framework/GameTestHelper/succeedWhenBlockPresent (Lnet/minecraft/world/level/block/Block;III)V +MD: net/minecraft/gametest/framework/GameTestHelper/m_177382_ (Lnet/minecraft/world/level/block/Block;Lnet/minecraft/core/BlockPos;)V net/minecraft/gametest/framework/GameTestHelper/succeedWhenBlockPresent (Lnet/minecraft/world/level/block/Block;Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/gametest/framework/GameTestHelper/m_177385_ (Lnet/minecraft/core/BlockPos;)V net/minecraft/gametest/framework/GameTestHelper/pressButton (Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/gametest/framework/GameTestHelper/m_177387_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/EntityType;Ljava/util/function/Function;Ljava/lang/Object;)V net/minecraft/gametest/framework/GameTestHelper/lambda$succeedWhenEntityData$21 (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/EntityType;Ljava/util/function/Function;Ljava/lang/Object;)V +MD: net/minecraft/gametest/framework/GameTestHelper/m_177392_ (Ljava/lang/Runnable;)V net/minecraft/gametest/framework/GameTestHelper/failIf (Ljava/lang/Runnable;)V +MD: net/minecraft/gametest/framework/GameTestHelper/m_177394_ (Ljava/lang/String;)Ljava/lang/String; net/minecraft/gametest/framework/GameTestHelper/lambda$assertBlock$8 (Ljava/lang/String;)Ljava/lang/String; +MD: net/minecraft/gametest/framework/GameTestHelper/m_177396_ ()V net/minecraft/gametest/framework/GameTestHelper/setNight ()V +MD: net/minecraft/gametest/framework/GameTestHelper/m_177397_ (Lnet/minecraft/world/entity/EntityType;III)V net/minecraft/gametest/framework/GameTestHelper/assertEntityNotPresent (Lnet/minecraft/world/entity/EntityType;III)V +MD: net/minecraft/gametest/framework/GameTestHelper/m_177402_ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/core/BlockPos;)V net/minecraft/gametest/framework/GameTestHelper/assertEntityNotPresent (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/gametest/framework/GameTestHelper/m_177405_ (Lnet/minecraft/world/level/block/Block;Lnet/minecraft/core/BlockPos;)V net/minecraft/gametest/framework/GameTestHelper/lambda$succeedWhenBlockPresent$7 (Lnet/minecraft/world/level/block/Block;Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/gametest/framework/GameTestHelper/m_177408_ (Lnet/minecraft/core/BlockPos;)V net/minecraft/gametest/framework/GameTestHelper/useBlock (Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/gametest/framework/GameTestHelper/m_177410_ (Ljava/lang/Runnable;)V net/minecraft/gametest/framework/GameTestHelper/failIfEver (Ljava/lang/Runnable;)V +MD: net/minecraft/gametest/framework/GameTestHelper/m_177412_ ()V net/minecraft/gametest/framework/GameTestHelper/succeed ()V +MD: net/minecraft/gametest/framework/GameTestHelper/m_177413_ (Lnet/minecraft/world/entity/EntityType;III)V net/minecraft/gametest/framework/GameTestHelper/succeedWhenEntityPresent (Lnet/minecraft/world/entity/EntityType;III)V +MD: net/minecraft/gametest/framework/GameTestHelper/m_177418_ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/core/BlockPos;)V net/minecraft/gametest/framework/GameTestHelper/succeedWhenEntityPresent (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/gametest/framework/GameTestHelper/m_177421_ (Lnet/minecraft/core/BlockPos;)V net/minecraft/gametest/framework/GameTestHelper/pullLever (Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/gametest/framework/GameTestHelper/m_177423_ (Ljava/lang/Runnable;)V net/minecraft/gametest/framework/GameTestHelper/onEachTick (Ljava/lang/Runnable;)V +MD: net/minecraft/gametest/framework/GameTestHelper/m_177425_ ()Lnet/minecraft/gametest/framework/GameTestSequence; net/minecraft/gametest/framework/GameTestHelper/startSequence ()Lnet/minecraft/gametest/framework/GameTestSequence; +MD: net/minecraft/gametest/framework/GameTestHelper/m_177426_ (Lnet/minecraft/world/entity/EntityType;III)V net/minecraft/gametest/framework/GameTestHelper/succeedWhenEntityNotPresent (Lnet/minecraft/world/entity/EntityType;III)V +MD: net/minecraft/gametest/framework/GameTestHelper/m_177431_ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/core/BlockPos;)V net/minecraft/gametest/framework/GameTestHelper/succeedWhenEntityNotPresent (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/gametest/framework/GameTestHelper/m_177434_ (Lnet/minecraft/core/BlockPos;)V net/minecraft/gametest/framework/GameTestHelper/destroyBlock (Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/gametest/framework/GameTestHelper/m_177436_ ()J net/minecraft/gametest/framework/GameTestHelper/getTick ()J +MD: net/minecraft/gametest/framework/GameTestHelper/m_177437_ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/core/BlockPos;)V net/minecraft/gametest/framework/GameTestHelper/lambda$succeedWhenEntityNotPresent$23 (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/gametest/framework/GameTestHelper/m_177440_ (Lnet/minecraft/core/BlockPos;)V net/minecraft/gametest/framework/GameTestHelper/assertContainerEmpty (Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/gametest/framework/GameTestHelper/m_177442_ ()V net/minecraft/gametest/framework/GameTestHelper/ensureSingleFinalCheck ()V +MD: net/minecraft/gametest/framework/GameTestHelper/m_177443_ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/core/BlockPos;)V net/minecraft/gametest/framework/GameTestHelper/lambda$succeedWhenEntityPresent$22 (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/gametest/framework/GameTestHelper/m_177446_ (Lnet/minecraft/core/BlockPos;)V net/minecraft/gametest/framework/GameTestHelper/randomTick (Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/gametest/framework/GameTestHelper/m_177448_ ()Lnet/minecraft/world/phys/AABB; net/minecraft/gametest/framework/GameTestHelper/getBounds ()Lnet/minecraft/world/phys/AABB; +MD: net/minecraft/gametest/framework/GameTestHelper/m_177449_ (Lnet/minecraft/core/BlockPos;)Lnet/minecraft/core/BlockPos; net/minecraft/gametest/framework/GameTestHelper/absolutePos (Lnet/minecraft/core/BlockPos;)Lnet/minecraft/core/BlockPos; +MD: net/minecraft/gametest/framework/GameTestHelper/m_177451_ ()Lnet/minecraft/world/phys/AABB; net/minecraft/gametest/framework/GameTestHelper/getRelativeBounds ()Lnet/minecraft/world/phys/AABB; +MD: net/minecraft/gametest/framework/GameTestHelper/m_177452_ (Lnet/minecraft/core/BlockPos;)Lnet/minecraft/core/BlockPos; net/minecraft/gametest/framework/GameTestHelper/relativePos (Lnet/minecraft/core/BlockPos;)Lnet/minecraft/core/BlockPos; +MD: net/minecraft/gametest/framework/GameTestHelper/m_177454_ ()Ljava/lang/Exception; net/minecraft/gametest/framework/GameTestHelper/lambda$failIf$24 ()Ljava/lang/Exception; +MD: net/minecraft/gametest/framework/GameTestHelper/m_177455_ (Lnet/minecraft/core/BlockPos;)V net/minecraft/gametest/framework/GameTestHelper/lambda$assertAtTickTimeContainerEmpty$20 (Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/gametest/framework/GameTestHelper/m_177457_ ()Ljava/lang/String; net/minecraft/gametest/framework/GameTestHelper/lambda$pressButton$3 ()Ljava/lang/String; +MD: net/minecraft/gametest/framework/GameTestHelper/m_177458_ (Lnet/minecraft/core/BlockPos;)V net/minecraft/gametest/framework/GameTestHelper/lambda$pulseRedstone$4 (Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/gametest/framework/GameTestHelper/m_236774_ (Lnet/minecraft/world/level/levelgen/Heightmap$Types;II)I net/minecraft/gametest/framework/GameTestHelper/getHeight (Lnet/minecraft/world/level/levelgen/Heightmap$Types;II)I +MD: net/minecraft/gametest/framework/GameTestHelper/m_236778_ (Lnet/minecraft/world/item/Item;Lnet/minecraft/core/BlockPos;D)V net/minecraft/gametest/framework/GameTestHelper/assertItemEntityNotPresent (Lnet/minecraft/world/item/Item;Lnet/minecraft/core/BlockPos;D)V +MD: net/minecraft/gametest/framework/GameTestHelper/m_238399_ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/core/BlockPos;D)Ljava/util/List; net/minecraft/gametest/framework/GameTestHelper/getEntities (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/core/BlockPos;D)Ljava/util/List; +MD: net/minecraft/gametest/framework/GameTestHelper/m_239371_ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/core/BlockPos;ID)V net/minecraft/gametest/framework/GameTestHelper/assertEntitiesPresent (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/core/BlockPos;ID)V +MD: net/minecraft/gametest/framework/GameTestHelper/m_246336_ (ZLjava/lang/String;)V net/minecraft/gametest/framework/GameTestHelper/assertTrue (ZLjava/lang/String;)V +MD: net/minecraft/gametest/framework/GameTestHelper/m_246385_ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/phys/Vec3;Lnet/minecraft/world/phys/Vec3;)V net/minecraft/gametest/framework/GameTestHelper/assertEntityPresent (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/phys/Vec3;Lnet/minecraft/world/phys/Vec3;)V +MD: net/minecraft/gametest/framework/GameTestHelper/m_246440_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/player/Player;)V net/minecraft/gametest/framework/GameTestHelper/useBlock (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/player/Player;)V +MD: net/minecraft/gametest/framework/GameTestHelper/m_246554_ ()Lnet/minecraft/world/entity/player/Player; net/minecraft/gametest/framework/GameTestHelper/makeMockSurvivalPlayer ()Lnet/minecraft/world/entity/player/Player; +MD: net/minecraft/gametest/framework/GameTestHelper/m_246755_ (Lnet/minecraft/world/item/Item;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/entity/item/ItemEntity; net/minecraft/gametest/framework/GameTestHelper/spawnItem (Lnet/minecraft/world/item/Item;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/entity/item/ItemEntity; +MD: net/minecraft/gametest/framework/GameTestHelper/m_247203_ (Lnet/minecraft/world/phys/Vec3;)Lnet/minecraft/world/phys/Vec3; net/minecraft/gametest/framework/GameTestHelper/relativeVec (Lnet/minecraft/world/phys/Vec3;)Lnet/minecraft/world/phys/Vec3; +MD: net/minecraft/gametest/framework/GameTestHelper/m_260894_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/phys/BlockHitResult;)V net/minecraft/gametest/framework/GameTestHelper/useBlock (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/phys/BlockHitResult;)V +MD: net/minecraft/gametest/framework/GameTestHelper/m_261323_ (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Direction;)V net/minecraft/gametest/framework/GameTestHelper/placeAt (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Direction;)V +MD: net/minecraft/gametest/framework/GameTestHelper/m_263446_ (Ljava/lang/Object;)Z net/minecraft/gametest/framework/GameTestHelper/lambda$assertEntityInventoryContains$16 (Ljava/lang/Object;)Z +MD: net/minecraft/gametest/framework/GameTestHelper/m_263447_ (Lnet/minecraft/world/item/Item;Lnet/minecraft/world/item/ItemStack;)Z net/minecraft/gametest/framework/GameTestHelper/lambda$assertEntityInventoryContains$17 (Lnet/minecraft/world/item/Item;Lnet/minecraft/world/item/ItemStack;)Z +MD: net/minecraft/gametest/framework/GameTestHelper/m_263450_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/item/Item;)V net/minecraft/gametest/framework/GameTestHelper/assertEntityIsHolding (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/item/Item;)V +MD: net/minecraft/gametest/framework/GameTestHelper/m_263477_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/item/Item;)V net/minecraft/gametest/framework/GameTestHelper/assertEntityInventoryContains (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/item/Item;)V +MD: net/minecraft/gametest/framework/GameTestHelper/m_276723_ (Lnet/minecraft/world/level/block/state/properties/Property;Ljava/util/function/Predicate;Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/gametest/framework/GameTestHelper/lambda$assertBlockProperty$10 (Lnet/minecraft/world/level/block/state/properties/Property;Ljava/util/function/Predicate;Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/gametest/framework/GameTestHelper/m_277053_ (ZLjava/lang/String;)V net/minecraft/gametest/framework/GameTestHelper/assertFalse (ZLjava/lang/String;)V +MD: net/minecraft/gametest/framework/GameTestHelper/m_286046_ (Lnet/minecraft/world/entity/LivingEntity;)Lnet/minecraft/world/entity/LivingEntity; net/minecraft/gametest/framework/GameTestHelper/withLowHealth (Lnet/minecraft/world/entity/LivingEntity;)Lnet/minecraft/world/entity/LivingEntity; +MD: net/minecraft/gametest/framework/GameTestHelper/m_287220_ ()Lnet/minecraft/server/level/ServerPlayer; net/minecraft/gametest/framework/GameTestHelper/makeMockServerPlayerInLevel ()Lnet/minecraft/server/level/ServerPlayer; +MD: net/minecraft/gametest/framework/GameTestHelper/m_289214_ (Ljava/lang/Class;)V net/minecraft/gametest/framework/GameTestHelper/killAllEntitiesOfClass (Ljava/lang/Class;)V +MD: net/minecraft/gametest/framework/GameTestHelper/m_289616_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Direction;Ljava/util/function/IntPredicate;Ljava/util/function/Supplier;)V net/minecraft/gametest/framework/GameTestHelper/assertRedstoneSignal (Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Direction;Ljava/util/function/IntPredicate;Ljava/util/function/Supplier;)V +MD: net/minecraft/gametest/framework/GameTestHelper$1/ (Lnet/minecraft/gametest/framework/GameTestHelper;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;FLcom/mojang/authlib/GameProfile;)V net/minecraft/gametest/framework/GameTestHelper$1/ (Lnet/minecraft/gametest/framework/GameTestHelper;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;FLcom/mojang/authlib/GameProfile;)V +MD: net/minecraft/gametest/framework/GameTestHelper$1/m_5833_ ()Z net/minecraft/gametest/framework/GameTestHelper$1/isSpectator ()Z +MD: net/minecraft/gametest/framework/GameTestHelper$1/m_7500_ ()Z net/minecraft/gametest/framework/GameTestHelper$1/isCreative ()Z +MD: net/minecraft/gametest/framework/GameTestHelper$2/ (Lnet/minecraft/gametest/framework/GameTestHelper;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;FLcom/mojang/authlib/GameProfile;)V net/minecraft/gametest/framework/GameTestHelper$2/ (Lnet/minecraft/gametest/framework/GameTestHelper;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;FLcom/mojang/authlib/GameProfile;)V +MD: net/minecraft/gametest/framework/GameTestHelper$2/m_5833_ ()Z net/minecraft/gametest/framework/GameTestHelper$2/isSpectator ()Z +MD: net/minecraft/gametest/framework/GameTestHelper$2/m_7500_ ()Z net/minecraft/gametest/framework/GameTestHelper$2/isCreative ()Z +MD: net/minecraft/gametest/framework/GameTestHelper$2/m_7578_ ()Z net/minecraft/gametest/framework/GameTestHelper$2/isLocalPlayer ()Z +MD: net/minecraft/gametest/framework/GameTestHelper$3/ (Lnet/minecraft/gametest/framework/GameTestHelper;Lnet/minecraft/server/MinecraftServer;Lnet/minecraft/server/level/ServerLevel;Lcom/mojang/authlib/GameProfile;)V net/minecraft/gametest/framework/GameTestHelper$3/ (Lnet/minecraft/gametest/framework/GameTestHelper;Lnet/minecraft/server/MinecraftServer;Lnet/minecraft/server/level/ServerLevel;Lcom/mojang/authlib/GameProfile;)V +MD: net/minecraft/gametest/framework/GameTestHelper$3/m_5833_ ()Z net/minecraft/gametest/framework/GameTestHelper$3/isSpectator ()Z +MD: net/minecraft/gametest/framework/GameTestHelper$3/m_7500_ ()Z net/minecraft/gametest/framework/GameTestHelper$3/isCreative ()Z +MD: net/minecraft/gametest/framework/GameTestInfo/ (Lnet/minecraft/gametest/framework/TestFunction;Lnet/minecraft/world/level/block/Rotation;Lnet/minecraft/server/level/ServerLevel;)V net/minecraft/gametest/framework/GameTestInfo/ (Lnet/minecraft/gametest/framework/TestFunction;Lnet/minecraft/world/level/block/Rotation;Lnet/minecraft/server/level/ServerLevel;)V +MD: net/minecraft/gametest/framework/GameTestInfo/m_127616_ ()V net/minecraft/gametest/framework/GameTestInfo/startExecution ()V +MD: net/minecraft/gametest/framework/GameTestInfo/m_127617_ (Lnet/minecraft/core/BlockPos;)V net/minecraft/gametest/framework/GameTestInfo/setStructureBlockPos (Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/gametest/framework/GameTestInfo/m_127619_ (Lnet/minecraft/core/BlockPos;I)V net/minecraft/gametest/framework/GameTestInfo/spawnStructure (Lnet/minecraft/core/BlockPos;I)V +MD: net/minecraft/gametest/framework/GameTestInfo/m_127622_ (Ljava/lang/Throwable;)V net/minecraft/gametest/framework/GameTestInfo/fail (Ljava/lang/Throwable;)V +MD: net/minecraft/gametest/framework/GameTestInfo/m_127624_ (Lnet/minecraft/gametest/framework/GameTestListener;)V net/minecraft/gametest/framework/GameTestInfo/addListener (Lnet/minecraft/gametest/framework/GameTestListener;)V +MD: net/minecraft/gametest/framework/GameTestInfo/m_127628_ ()V net/minecraft/gametest/framework/GameTestInfo/tick ()V +MD: net/minecraft/gametest/framework/GameTestInfo/m_127629_ (Lnet/minecraft/gametest/framework/GameTestListener;)V net/minecraft/gametest/framework/GameTestInfo/lambda$spawnStructure$4 (Lnet/minecraft/gametest/framework/GameTestListener;)V +MD: net/minecraft/gametest/framework/GameTestInfo/m_127633_ ()Ljava/lang/String; net/minecraft/gametest/framework/GameTestInfo/getTestName ()Ljava/lang/String; +MD: net/minecraft/gametest/framework/GameTestInfo/m_127636_ ()Lnet/minecraft/core/BlockPos; net/minecraft/gametest/framework/GameTestInfo/getStructureBlockPos ()Lnet/minecraft/core/BlockPos; +MD: net/minecraft/gametest/framework/GameTestInfo/m_127637_ ()Lnet/minecraft/server/level/ServerLevel; net/minecraft/gametest/framework/GameTestInfo/getLevel ()Lnet/minecraft/server/level/ServerLevel; +MD: net/minecraft/gametest/framework/GameTestInfo/m_127638_ ()Z net/minecraft/gametest/framework/GameTestInfo/hasSucceeded ()Z +MD: net/minecraft/gametest/framework/GameTestInfo/m_127639_ ()Z net/minecraft/gametest/framework/GameTestInfo/hasFailed ()Z +MD: net/minecraft/gametest/framework/GameTestInfo/m_127640_ ()Z net/minecraft/gametest/framework/GameTestInfo/hasStarted ()Z +MD: net/minecraft/gametest/framework/GameTestInfo/m_127641_ ()Z net/minecraft/gametest/framework/GameTestInfo/isDone ()Z +MD: net/minecraft/gametest/framework/GameTestInfo/m_127642_ ()Ljava/lang/Throwable; net/minecraft/gametest/framework/GameTestInfo/getError ()Ljava/lang/Throwable; +MD: net/minecraft/gametest/framework/GameTestInfo/m_127643_ ()Z net/minecraft/gametest/framework/GameTestInfo/isRequired ()Z +MD: net/minecraft/gametest/framework/GameTestInfo/m_127644_ ()Z net/minecraft/gametest/framework/GameTestInfo/isOptional ()Z +MD: net/minecraft/gametest/framework/GameTestInfo/m_127645_ ()Ljava/lang/String; net/minecraft/gametest/framework/GameTestInfo/getStructureName ()Ljava/lang/String; +MD: net/minecraft/gametest/framework/GameTestInfo/m_127646_ ()Lnet/minecraft/world/level/block/Rotation; net/minecraft/gametest/framework/GameTestInfo/getRotation ()Lnet/minecraft/world/level/block/Rotation; +MD: net/minecraft/gametest/framework/GameTestInfo/m_127648_ ()Lnet/minecraft/gametest/framework/TestFunction; net/minecraft/gametest/framework/GameTestInfo/getTestFunction ()Lnet/minecraft/gametest/framework/TestFunction; +MD: net/minecraft/gametest/framework/GameTestInfo/m_127649_ ()V net/minecraft/gametest/framework/GameTestInfo/startTest ()V +MD: net/minecraft/gametest/framework/GameTestInfo/m_127650_ ()V net/minecraft/gametest/framework/GameTestInfo/finish ()V +MD: net/minecraft/gametest/framework/GameTestInfo/m_177470_ ()V net/minecraft/gametest/framework/GameTestInfo/tickInternal ()V +MD: net/minecraft/gametest/framework/GameTestInfo/m_177471_ ()Lnet/minecraft/world/level/block/entity/StructureBlockEntity; net/minecraft/gametest/framework/GameTestInfo/getStructureBlockEntity ()Lnet/minecraft/world/level/block/entity/StructureBlockEntity; +MD: net/minecraft/gametest/framework/GameTestInfo/m_177472_ (JLjava/lang/Runnable;)V net/minecraft/gametest/framework/GameTestInfo/setRunAtTickTime (JLjava/lang/Runnable;)V +MD: net/minecraft/gametest/framework/GameTestInfo/m_177475_ (Lnet/minecraft/gametest/framework/GameTestSequence;)V net/minecraft/gametest/framework/GameTestInfo/lambda$tickInternal$3 (Lnet/minecraft/gametest/framework/GameTestSequence;)V +MD: net/minecraft/gametest/framework/GameTestInfo/m_177477_ (Lnet/minecraft/gametest/framework/GameTestSequence;)V net/minecraft/gametest/framework/GameTestInfo/lambda$tickInternal$2 (Lnet/minecraft/gametest/framework/GameTestSequence;)V +MD: net/minecraft/gametest/framework/GameTestInfo/m_177479_ (Lnet/minecraft/gametest/framework/GameTestListener;)V net/minecraft/gametest/framework/GameTestInfo/lambda$tick$1 (Lnet/minecraft/gametest/framework/GameTestListener;)V +MD: net/minecraft/gametest/framework/GameTestInfo/m_177481_ (Lnet/minecraft/gametest/framework/GameTestListener;)V net/minecraft/gametest/framework/GameTestInfo/lambda$tick$0 (Lnet/minecraft/gametest/framework/GameTestListener;)V +MD: net/minecraft/gametest/framework/GameTestInfo/m_177483_ ()Lnet/minecraft/core/Vec3i; net/minecraft/gametest/framework/GameTestInfo/getStructureSize ()Lnet/minecraft/core/Vec3i; +MD: net/minecraft/gametest/framework/GameTestInfo/m_177484_ ()Lnet/minecraft/world/phys/AABB; net/minecraft/gametest/framework/GameTestInfo/getStructureBounds ()Lnet/minecraft/world/phys/AABB; +MD: net/minecraft/gametest/framework/GameTestInfo/m_177485_ ()J net/minecraft/gametest/framework/GameTestInfo/getRunTime ()J +MD: net/minecraft/gametest/framework/GameTestInfo/m_177486_ ()V net/minecraft/gametest/framework/GameTestInfo/succeed ()V +MD: net/minecraft/gametest/framework/GameTestInfo/m_177487_ ()V net/minecraft/gametest/framework/GameTestInfo/clearStructure ()V +MD: net/minecraft/gametest/framework/GameTestInfo/m_177488_ ()J net/minecraft/gametest/framework/GameTestInfo/getTick ()J +MD: net/minecraft/gametest/framework/GameTestInfo/m_177489_ ()Lnet/minecraft/gametest/framework/GameTestSequence; net/minecraft/gametest/framework/GameTestInfo/createSequence ()Lnet/minecraft/gametest/framework/GameTestSequence; +MD: net/minecraft/gametest/framework/GameTestInfo/m_177490_ ()I net/minecraft/gametest/framework/GameTestInfo/getTimeoutTicks ()I +MD: net/minecraft/gametest/framework/GameTestInfo/m_177491_ ()Z net/minecraft/gametest/framework/GameTestInfo/isFlaky ()Z +MD: net/minecraft/gametest/framework/GameTestInfo/m_177492_ ()I net/minecraft/gametest/framework/GameTestInfo/maxAttempts ()I +MD: net/minecraft/gametest/framework/GameTestInfo/m_177493_ ()I net/minecraft/gametest/framework/GameTestInfo/requiredSuccesses ()I +MD: net/minecraft/gametest/framework/GameTestInfo/toString ()Ljava/lang/String; net/minecraft/gametest/framework/GameTestInfo/toString ()Ljava/lang/String; +MD: net/minecraft/gametest/framework/GameTestListener/m_142378_ (Lnet/minecraft/gametest/framework/GameTestInfo;)V net/minecraft/gametest/framework/GameTestListener/testPassed (Lnet/minecraft/gametest/framework/GameTestInfo;)V +MD: net/minecraft/gametest/framework/GameTestListener/m_8066_ (Lnet/minecraft/gametest/framework/GameTestInfo;)V net/minecraft/gametest/framework/GameTestListener/testFailed (Lnet/minecraft/gametest/framework/GameTestInfo;)V +MD: net/minecraft/gametest/framework/GameTestListener/m_8073_ (Lnet/minecraft/gametest/framework/GameTestInfo;)V net/minecraft/gametest/framework/GameTestListener/testStructureLoaded (Lnet/minecraft/gametest/framework/GameTestInfo;)V +MD: net/minecraft/gametest/framework/GameTestRegistry/ ()V net/minecraft/gametest/framework/GameTestRegistry/ ()V +MD: net/minecraft/gametest/framework/GameTestRegistry/ ()V net/minecraft/gametest/framework/GameTestRegistry/ ()V +MD: net/minecraft/gametest/framework/GameTestRegistry/m_127658_ ()Ljava/util/Collection; net/minecraft/gametest/framework/GameTestRegistry/getAllTestFunctions ()Ljava/util/Collection; +MD: net/minecraft/gametest/framework/GameTestRegistry/m_127659_ (Ljava/lang/String;)Ljava/util/Collection; net/minecraft/gametest/framework/GameTestRegistry/getTestFunctionsForClassName (Ljava/lang/String;)Ljava/util/Collection; +MD: net/minecraft/gametest/framework/GameTestRegistry/m_127661_ (Ljava/lang/String;Lnet/minecraft/gametest/framework/TestFunction;)Z net/minecraft/gametest/framework/GameTestRegistry/lambda$findTestFunction$1 (Ljava/lang/String;Lnet/minecraft/gametest/framework/TestFunction;)Z +MD: net/minecraft/gametest/framework/GameTestRegistry/m_127664_ (Lnet/minecraft/gametest/framework/TestFunction;)V net/minecraft/gametest/framework/GameTestRegistry/rememberFailedTest (Lnet/minecraft/gametest/framework/TestFunction;)V +MD: net/minecraft/gametest/framework/GameTestRegistry/m_127666_ (Lnet/minecraft/gametest/framework/TestFunction;Ljava/lang/String;)Z net/minecraft/gametest/framework/GameTestRegistry/isTestFunctionPartOfClass (Lnet/minecraft/gametest/framework/TestFunction;Ljava/lang/String;)Z +MD: net/minecraft/gametest/framework/GameTestRegistry/m_127669_ ()Ljava/util/Collection; net/minecraft/gametest/framework/GameTestRegistry/getAllTestClassNames ()Ljava/util/Collection; +MD: net/minecraft/gametest/framework/GameTestRegistry/m_127670_ (Ljava/lang/String;)Z net/minecraft/gametest/framework/GameTestRegistry/isTestClass (Ljava/lang/String;)Z +MD: net/minecraft/gametest/framework/GameTestRegistry/m_127672_ (Ljava/lang/String;Lnet/minecraft/gametest/framework/TestFunction;)Z net/minecraft/gametest/framework/GameTestRegistry/lambda$getTestFunctionsForClassName$0 (Ljava/lang/String;Lnet/minecraft/gametest/framework/TestFunction;)Z +MD: net/minecraft/gametest/framework/GameTestRegistry/m_127675_ ()Ljava/util/Collection; net/minecraft/gametest/framework/GameTestRegistry/getLastFailedTests ()Ljava/util/Collection; +MD: net/minecraft/gametest/framework/GameTestRegistry/m_127676_ (Ljava/lang/String;)Ljava/util/function/Consumer; net/minecraft/gametest/framework/GameTestRegistry/getBeforeBatchFunction (Ljava/lang/String;)Ljava/util/function/Consumer; +MD: net/minecraft/gametest/framework/GameTestRegistry/m_127678_ ()V net/minecraft/gametest/framework/GameTestRegistry/forgetFailedTests ()V +MD: net/minecraft/gametest/framework/GameTestRegistry/m_127679_ (Ljava/lang/String;)Ljava/util/Optional; net/minecraft/gametest/framework/GameTestRegistry/findTestFunction (Ljava/lang/String;)Ljava/util/Optional; +MD: net/minecraft/gametest/framework/GameTestRegistry/m_127681_ (Ljava/lang/String;)Lnet/minecraft/gametest/framework/TestFunction; net/minecraft/gametest/framework/GameTestRegistry/getTestFunction (Ljava/lang/String;)Lnet/minecraft/gametest/framework/TestFunction; +MD: net/minecraft/gametest/framework/GameTestRegistry/m_177501_ (Ljava/lang/Class;)V net/minecraft/gametest/framework/GameTestRegistry/register (Ljava/lang/Class;)V +MD: net/minecraft/gametest/framework/GameTestRegistry/m_177503_ (Ljava/lang/reflect/Method;)V net/minecraft/gametest/framework/GameTestRegistry/register (Ljava/lang/reflect/Method;)V +MD: net/minecraft/gametest/framework/GameTestRegistry/m_177505_ (Ljava/lang/reflect/Method;Ljava/lang/Class;Ljava/util/function/Function;Ljava/util/Map;)V net/minecraft/gametest/framework/GameTestRegistry/registerBatchFunction (Ljava/lang/reflect/Method;Ljava/lang/Class;Ljava/util/function/Function;Ljava/util/Map;)V +MD: net/minecraft/gametest/framework/GameTestRegistry/m_177510_ (Ljava/lang/reflect/Method;Ljava/lang/Object;)V net/minecraft/gametest/framework/GameTestRegistry/lambda$turnMethodIntoConsumer$2 (Ljava/lang/reflect/Method;Ljava/lang/Object;)V +MD: net/minecraft/gametest/framework/GameTestRegistry/m_177513_ (Ljava/lang/reflect/Method;)Ljava/util/Collection; net/minecraft/gametest/framework/GameTestRegistry/useTestGeneratorMethod (Ljava/lang/reflect/Method;)Ljava/util/Collection; +MD: net/minecraft/gametest/framework/GameTestRegistry/m_177515_ (Ljava/lang/reflect/Method;)Lnet/minecraft/gametest/framework/TestFunction; net/minecraft/gametest/framework/GameTestRegistry/turnMethodIntoTestFunction (Ljava/lang/reflect/Method;)Lnet/minecraft/gametest/framework/TestFunction; +MD: net/minecraft/gametest/framework/GameTestRegistry/m_177517_ (Ljava/lang/String;)Ljava/util/function/Consumer; net/minecraft/gametest/framework/GameTestRegistry/getAfterBatchFunction (Ljava/lang/String;)Ljava/util/function/Consumer; +MD: net/minecraft/gametest/framework/GameTestRegistry/m_177519_ (Ljava/lang/reflect/Method;)Ljava/util/function/Consumer; net/minecraft/gametest/framework/GameTestRegistry/turnMethodIntoConsumer (Ljava/lang/reflect/Method;)Ljava/util/function/Consumer; +MD: net/minecraft/gametest/framework/GameTestRunner/ ()V net/minecraft/gametest/framework/GameTestRunner/ ()V +MD: net/minecraft/gametest/framework/GameTestRunner/m_127685_ (Lnet/minecraft/server/level/ServerLevel;)V net/minecraft/gametest/framework/GameTestRunner/clearMarkers (Lnet/minecraft/server/level/ServerLevel;)V +MD: net/minecraft/gametest/framework/GameTestRunner/m_127694_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;Lnet/minecraft/gametest/framework/GameTestTicker;I)V net/minecraft/gametest/framework/GameTestRunner/clearAllTests (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;Lnet/minecraft/gametest/framework/GameTestTicker;I)V +MD: net/minecraft/gametest/framework/GameTestRunner/m_127724_ (Ljava/util/Collection;)Ljava/util/Collection; net/minecraft/gametest/framework/GameTestRunner/groupTestsIntoBatches (Ljava/util/Collection;)Ljava/util/Collection; +MD: net/minecraft/gametest/framework/GameTestRunner/m_127726_ (Ljava/util/Collection;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/Rotation;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/gametest/framework/GameTestTicker;I)Ljava/util/Collection; net/minecraft/gametest/framework/GameTestRunner/runTestBatches (Ljava/util/Collection;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/Rotation;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/gametest/framework/GameTestTicker;I)Ljava/util/Collection; +MD: net/minecraft/gametest/framework/GameTestRunner/m_127742_ (Lnet/minecraft/gametest/framework/GameTestInfo;Lnet/minecraft/core/BlockPos;Lnet/minecraft/gametest/framework/GameTestTicker;)V net/minecraft/gametest/framework/GameTestRunner/runTest (Lnet/minecraft/gametest/framework/GameTestInfo;Lnet/minecraft/core/BlockPos;Lnet/minecraft/gametest/framework/GameTestTicker;)V +MD: net/minecraft/gametest/framework/GameTestRunner/m_127752_ (Ljava/util/Collection;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/Rotation;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/gametest/framework/GameTestTicker;I)Ljava/util/Collection; net/minecraft/gametest/framework/GameTestRunner/runTests (Ljava/util/Collection;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/Rotation;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/gametest/framework/GameTestTicker;I)Ljava/util/Collection; +MD: net/minecraft/gametest/framework/GameTestRunner/m_177527_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;)V net/minecraft/gametest/framework/GameTestRunner/lambda$clearAllTests$3 (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/gametest/framework/GameTestRunner/m_177530_ (Ljava/lang/String;Lorg/apache/commons/lang3/mutable/MutableInt;Ljava/util/function/Consumer;Ljava/util/function/Consumer;Ljava/util/List;)Lnet/minecraft/gametest/framework/GameTestBatch; net/minecraft/gametest/framework/GameTestRunner/lambda$groupTestsIntoBatches$0 (Ljava/lang/String;Lorg/apache/commons/lang3/mutable/MutableInt;Ljava/util/function/Consumer;Ljava/util/function/Consumer;Ljava/util/List;)Lnet/minecraft/gametest/framework/GameTestBatch; +MD: net/minecraft/gametest/framework/GameTestRunner/m_177536_ (Ljava/util/Map$Entry;)Ljava/util/stream/Stream; net/minecraft/gametest/framework/GameTestRunner/lambda$groupTestsIntoBatches$1 (Ljava/util/Map$Entry;)Ljava/util/stream/Stream; +MD: net/minecraft/gametest/framework/GameTestRunner/m_177538_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;)Z net/minecraft/gametest/framework/GameTestRunner/lambda$clearAllTests$2 (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/gametest/framework/GameTestSequence/ (Lnet/minecraft/gametest/framework/GameTestInfo;)V net/minecraft/gametest/framework/GameTestSequence/ (Lnet/minecraft/gametest/framework/GameTestInfo;)V +MD: net/minecraft/gametest/framework/GameTestSequence/m_127777_ (J)V net/minecraft/gametest/framework/GameTestSequence/tickAndContinue (J)V +MD: net/minecraft/gametest/framework/GameTestSequence/m_127779_ (J)V net/minecraft/gametest/framework/GameTestSequence/tickAndFailIfNotComplete (J)V +MD: net/minecraft/gametest/framework/GameTestSequence/m_127781_ (J)V net/minecraft/gametest/framework/GameTestSequence/tick (J)V +MD: net/minecraft/gametest/framework/GameTestSequence/m_177543_ ()V net/minecraft/gametest/framework/GameTestSequence/thenSucceed ()V +MD: net/minecraft/gametest/framework/GameTestSequence/m_177544_ (I)Lnet/minecraft/gametest/framework/GameTestSequence; net/minecraft/gametest/framework/GameTestSequence/thenIdle (I)Lnet/minecraft/gametest/framework/GameTestSequence; +MD: net/minecraft/gametest/framework/GameTestSequence/m_177546_ (ILjava/lang/Runnable;)Lnet/minecraft/gametest/framework/GameTestSequence; net/minecraft/gametest/framework/GameTestSequence/thenExecuteAfter (ILjava/lang/Runnable;)Lnet/minecraft/gametest/framework/GameTestSequence; +MD: net/minecraft/gametest/framework/GameTestSequence/m_177549_ (JLjava/lang/Runnable;)Lnet/minecraft/gametest/framework/GameTestSequence; net/minecraft/gametest/framework/GameTestSequence/thenWaitUntil (JLjava/lang/Runnable;)Lnet/minecraft/gametest/framework/GameTestSequence; +MD: net/minecraft/gametest/framework/GameTestSequence/m_177552_ (Ljava/lang/Runnable;)Lnet/minecraft/gametest/framework/GameTestSequence; net/minecraft/gametest/framework/GameTestSequence/thenWaitUntil (Ljava/lang/Runnable;)Lnet/minecraft/gametest/framework/GameTestSequence; +MD: net/minecraft/gametest/framework/GameTestSequence/m_177554_ (Ljava/util/function/Supplier;)V net/minecraft/gametest/framework/GameTestSequence/thenFail (Ljava/util/function/Supplier;)V +MD: net/minecraft/gametest/framework/GameTestSequence/m_177556_ (Lnet/minecraft/gametest/framework/GameTestSequence$Condition;)V net/minecraft/gametest/framework/GameTestSequence/lambda$thenTrigger$5 (Lnet/minecraft/gametest/framework/GameTestSequence$Condition;)V +MD: net/minecraft/gametest/framework/GameTestSequence/m_177558_ ()Lnet/minecraft/gametest/framework/GameTestSequence$Condition; net/minecraft/gametest/framework/GameTestSequence/thenTrigger ()Lnet/minecraft/gametest/framework/GameTestSequence$Condition; +MD: net/minecraft/gametest/framework/GameTestSequence/m_177559_ (ILjava/lang/Runnable;)Lnet/minecraft/gametest/framework/GameTestSequence; net/minecraft/gametest/framework/GameTestSequence/thenExecuteFor (ILjava/lang/Runnable;)Lnet/minecraft/gametest/framework/GameTestSequence; +MD: net/minecraft/gametest/framework/GameTestSequence/m_177562_ (Ljava/lang/Runnable;)Lnet/minecraft/gametest/framework/GameTestSequence; net/minecraft/gametest/framework/GameTestSequence/thenExecute (Ljava/lang/Runnable;)Lnet/minecraft/gametest/framework/GameTestSequence; +MD: net/minecraft/gametest/framework/GameTestSequence/m_177564_ (Ljava/util/function/Supplier;)V net/minecraft/gametest/framework/GameTestSequence/lambda$thenFail$4 (Ljava/util/function/Supplier;)V +MD: net/minecraft/gametest/framework/GameTestSequence/m_177566_ ()V net/minecraft/gametest/framework/GameTestSequence/lambda$thenIdle$0 ()V +MD: net/minecraft/gametest/framework/GameTestSequence/m_177567_ (ILjava/lang/Runnable;)V net/minecraft/gametest/framework/GameTestSequence/lambda$thenExecuteFor$3 (ILjava/lang/Runnable;)V +MD: net/minecraft/gametest/framework/GameTestSequence/m_177570_ (Ljava/lang/Runnable;)V net/minecraft/gametest/framework/GameTestSequence/executeWithoutFail (Ljava/lang/Runnable;)V +MD: net/minecraft/gametest/framework/GameTestSequence/m_177572_ (ILjava/lang/Runnable;)V net/minecraft/gametest/framework/GameTestSequence/lambda$thenExecuteAfter$2 (ILjava/lang/Runnable;)V +MD: net/minecraft/gametest/framework/GameTestSequence/m_177575_ (Ljava/lang/Runnable;)V net/minecraft/gametest/framework/GameTestSequence/lambda$thenExecute$1 (Ljava/lang/Runnable;)V +MD: net/minecraft/gametest/framework/GameTestSequence$Condition/ (Lnet/minecraft/gametest/framework/GameTestSequence;)V net/minecraft/gametest/framework/GameTestSequence$Condition/ (Lnet/minecraft/gametest/framework/GameTestSequence;)V +MD: net/minecraft/gametest/framework/GameTestSequence$Condition/m_177582_ ()V net/minecraft/gametest/framework/GameTestSequence$Condition/assertTriggeredThisTick ()V +MD: net/minecraft/gametest/framework/GameTestSequence$Condition/m_177583_ (J)V net/minecraft/gametest/framework/GameTestSequence$Condition/trigger (J)V +MD: net/minecraft/gametest/framework/GameTestServer/ ()V net/minecraft/gametest/framework/GameTestServer/ ()V +MD: net/minecraft/gametest/framework/GameTestServer/ (Ljava/lang/Thread;Lnet/minecraft/world/level/storage/LevelStorageSource$LevelStorageAccess;Lnet/minecraft/server/packs/repository/PackRepository;Lnet/minecraft/server/WorldStem;Ljava/util/Collection;Lnet/minecraft/core/BlockPos;)V net/minecraft/gametest/framework/GameTestServer/ (Ljava/lang/Thread;Lnet/minecraft/world/level/storage/LevelStorageSource$LevelStorageAccess;Lnet/minecraft/server/packs/repository/PackRepository;Lnet/minecraft/server/WorldStem;Ljava/util/Collection;Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/gametest/framework/GameTestServer/m_130012_ ()V net/minecraft/gametest/framework/GameTestServer/waitUntilNextTick ()V +MD: net/minecraft/gametest/framework/GameTestServer/m_142424_ (Lnet/minecraft/SystemReport;)Lnet/minecraft/SystemReport; net/minecraft/gametest/framework/GameTestServer/fillServerSystemReport (Lnet/minecraft/SystemReport;)Lnet/minecraft/SystemReport; +MD: net/minecraft/gametest/framework/GameTestServer/m_177614_ (Lnet/minecraft/world/level/GameRules;)V net/minecraft/gametest/framework/GameTestServer/lambda$static$0 (Lnet/minecraft/world/level/GameRules;)V +MD: net/minecraft/gametest/framework/GameTestServer/m_177624_ (Lnet/minecraft/server/level/ServerLevel;)V net/minecraft/gametest/framework/GameTestServer/startTests (Lnet/minecraft/server/level/ServerLevel;)V +MD: net/minecraft/gametest/framework/GameTestServer/m_177628_ ()Z net/minecraft/gametest/framework/GameTestServer/haveTestsStarted ()Z +MD: net/minecraft/gametest/framework/GameTestServer/m_206606_ (Ljava/lang/Thread;Lnet/minecraft/world/level/storage/LevelStorageSource$LevelStorageAccess;Lnet/minecraft/server/packs/repository/PackRepository;Ljava/util/Collection;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/gametest/framework/GameTestServer; net/minecraft/gametest/framework/GameTestServer/create (Ljava/lang/Thread;Lnet/minecraft/world/level/storage/LevelStorageSource$LevelStorageAccess;Lnet/minecraft/server/packs/repository/PackRepository;Ljava/util/Collection;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/gametest/framework/GameTestServer; +MD: net/minecraft/gametest/framework/GameTestServer/m_206612_ (Lnet/minecraft/gametest/framework/GameTestInfo;)V net/minecraft/gametest/framework/GameTestServer/lambda$tickServer$4 (Lnet/minecraft/gametest/framework/GameTestInfo;)V +MD: net/minecraft/gametest/framework/GameTestServer/m_206614_ (Lnet/minecraft/gametest/framework/GameTestInfo;)V net/minecraft/gametest/framework/GameTestServer/lambda$tickServer$3 (Lnet/minecraft/gametest/framework/GameTestInfo;)V +MD: net/minecraft/gametest/framework/GameTestServer/m_244785_ (Lnet/minecraft/server/WorldLoader$InitConfig;Lnet/minecraft/world/level/LevelSettings;Ljava/util/concurrent/Executor;)Ljava/util/concurrent/CompletableFuture; net/minecraft/gametest/framework/GameTestServer/lambda$create$2 (Lnet/minecraft/server/WorldLoader$InitConfig;Lnet/minecraft/world/level/LevelSettings;Ljava/util/concurrent/Executor;)Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/gametest/framework/GameTestServer/m_257120_ (Lnet/minecraft/world/level/LevelSettings;Lnet/minecraft/server/WorldLoader$DataLoadContext;)Lnet/minecraft/server/WorldLoader$DataLoadOutput; net/minecraft/gametest/framework/GameTestServer/lambda$create$1 (Lnet/minecraft/world/level/LevelSettings;Lnet/minecraft/server/WorldLoader$DataLoadContext;)Lnet/minecraft/server/WorldLoader$DataLoadOutput; +MD: net/minecraft/gametest/framework/GameTestServer/m_5705_ (Ljava/util/function/BooleanSupplier;)V net/minecraft/gametest/framework/GameTestServer/tickServer (Ljava/util/function/BooleanSupplier;)V +MD: net/minecraft/gametest/framework/GameTestServer/m_6102_ ()Z net/minecraft/gametest/framework/GameTestServer/shouldInformAdmins ()Z +MD: net/minecraft/gametest/framework/GameTestServer/m_6982_ ()Z net/minecraft/gametest/framework/GameTestServer/isDedicatedServer ()Z +MD: net/minecraft/gametest/framework/GameTestServer/m_6983_ ()Z net/minecraft/gametest/framework/GameTestServer/shouldRconBroadcast ()Z +MD: net/minecraft/gametest/framework/GameTestServer/m_6988_ ()V net/minecraft/gametest/framework/GameTestServer/onServerExit ()V +MD: net/minecraft/gametest/framework/GameTestServer/m_6992_ ()Z net/minecraft/gametest/framework/GameTestServer/isPublished ()Z +MD: net/minecraft/gametest/framework/GameTestServer/m_6993_ ()Z net/minecraft/gametest/framework/GameTestServer/isCommandBlockEnabled ()Z +MD: net/minecraft/gametest/framework/GameTestServer/m_6994_ ()Z net/minecraft/gametest/framework/GameTestServer/isEpollEnabled ()Z +MD: net/minecraft/gametest/framework/GameTestServer/m_7022_ ()I net/minecraft/gametest/framework/GameTestServer/getOperatorUserPermissionLevel ()I +MD: net/minecraft/gametest/framework/GameTestServer/m_7032_ ()I net/minecraft/gametest/framework/GameTestServer/getRateLimitPacketsPerSecond ()I +MD: net/minecraft/gametest/framework/GameTestServer/m_7034_ ()I net/minecraft/gametest/framework/GameTestServer/getFunctionCompilationLevel ()I +MD: net/minecraft/gametest/framework/GameTestServer/m_7035_ ()Z net/minecraft/gametest/framework/GameTestServer/isHardcore ()Z +MD: net/minecraft/gametest/framework/GameTestServer/m_7038_ ()Z net/minecraft/gametest/framework/GameTestServer/initServer ()Z +MD: net/minecraft/gametest/framework/GameTestServer/m_7268_ (Lnet/minecraft/CrashReport;)V net/minecraft/gametest/framework/GameTestServer/onServerCrash (Lnet/minecraft/CrashReport;)V +MD: net/minecraft/gametest/framework/GameTestServer/m_7779_ (Lcom/mojang/authlib/GameProfile;)Z net/minecraft/gametest/framework/GameTestServer/isSingleplayerOwner (Lcom/mojang/authlib/GameProfile;)Z +MD: net/minecraft/gametest/framework/GameTestServer$1/ (Lnet/minecraft/gametest/framework/GameTestServer;Lnet/minecraft/server/MinecraftServer;Lnet/minecraft/core/LayeredRegistryAccess;Lnet/minecraft/world/level/storage/PlayerDataStorage;I)V net/minecraft/gametest/framework/GameTestServer$1/ (Lnet/minecraft/gametest/framework/GameTestServer;Lnet/minecraft/server/MinecraftServer;Lnet/minecraft/core/LayeredRegistryAccess;Lnet/minecraft/world/level/storage/PlayerDataStorage;I)V +MD: net/minecraft/gametest/framework/GameTestTicker/ ()V net/minecraft/gametest/framework/GameTestTicker/ ()V +MD: net/minecraft/gametest/framework/GameTestTicker/ ()V net/minecraft/gametest/framework/GameTestTicker/ ()V +MD: net/minecraft/gametest/framework/GameTestTicker/m_127787_ ()V net/minecraft/gametest/framework/GameTestTicker/clear ()V +MD: net/minecraft/gametest/framework/GameTestTicker/m_127788_ (Lnet/minecraft/gametest/framework/GameTestInfo;)V net/minecraft/gametest/framework/GameTestTicker/add (Lnet/minecraft/gametest/framework/GameTestInfo;)V +MD: net/minecraft/gametest/framework/GameTestTicker/m_127790_ ()V net/minecraft/gametest/framework/GameTestTicker/tick ()V +MD: net/minecraft/gametest/framework/GameTestTimeoutException/ (Ljava/lang/String;)V net/minecraft/gametest/framework/GameTestTimeoutException/ (Ljava/lang/String;)V +MD: net/minecraft/gametest/framework/GlobalTestReporter/ ()V net/minecraft/gametest/framework/GlobalTestReporter/ ()V +MD: net/minecraft/gametest/framework/GlobalTestReporter/ ()V net/minecraft/gametest/framework/GlobalTestReporter/ ()V +MD: net/minecraft/gametest/framework/GlobalTestReporter/m_177652_ ()V net/minecraft/gametest/framework/GlobalTestReporter/finish ()V +MD: net/minecraft/gametest/framework/GlobalTestReporter/m_177653_ (Lnet/minecraft/gametest/framework/GameTestInfo;)V net/minecraft/gametest/framework/GlobalTestReporter/onTestFailed (Lnet/minecraft/gametest/framework/GameTestInfo;)V +MD: net/minecraft/gametest/framework/GlobalTestReporter/m_177655_ (Lnet/minecraft/gametest/framework/TestReporter;)V net/minecraft/gametest/framework/GlobalTestReporter/replaceWith (Lnet/minecraft/gametest/framework/TestReporter;)V +MD: net/minecraft/gametest/framework/GlobalTestReporter/m_177657_ (Lnet/minecraft/gametest/framework/GameTestInfo;)V net/minecraft/gametest/framework/GlobalTestReporter/onTestSuccess (Lnet/minecraft/gametest/framework/GameTestInfo;)V +MD: net/minecraft/gametest/framework/JUnitLikeTestReporter/ (Ljava/io/File;)V net/minecraft/gametest/framework/JUnitLikeTestReporter/ (Ljava/io/File;)V +MD: net/minecraft/gametest/framework/JUnitLikeTestReporter/m_142335_ (Lnet/minecraft/gametest/framework/GameTestInfo;)V net/minecraft/gametest/framework/JUnitLikeTestReporter/onTestSuccess (Lnet/minecraft/gametest/framework/GameTestInfo;)V +MD: net/minecraft/gametest/framework/JUnitLikeTestReporter/m_142411_ ()V net/minecraft/gametest/framework/JUnitLikeTestReporter/finish ()V +MD: net/minecraft/gametest/framework/JUnitLikeTestReporter/m_177666_ (Ljava/io/File;)V net/minecraft/gametest/framework/JUnitLikeTestReporter/save (Ljava/io/File;)V +MD: net/minecraft/gametest/framework/JUnitLikeTestReporter/m_177670_ (Lnet/minecraft/gametest/framework/GameTestInfo;Ljava/lang/String;)Lorg/w3c/dom/Element; net/minecraft/gametest/framework/JUnitLikeTestReporter/createTestCase (Lnet/minecraft/gametest/framework/GameTestInfo;Ljava/lang/String;)Lorg/w3c/dom/Element; +MD: net/minecraft/gametest/framework/JUnitLikeTestReporter/m_8014_ (Lnet/minecraft/gametest/framework/GameTestInfo;)V net/minecraft/gametest/framework/JUnitLikeTestReporter/onTestFailed (Lnet/minecraft/gametest/framework/GameTestInfo;)V +MD: net/minecraft/gametest/framework/LogTestReporter/ ()V net/minecraft/gametest/framework/LogTestReporter/ ()V +MD: net/minecraft/gametest/framework/LogTestReporter/ ()V net/minecraft/gametest/framework/LogTestReporter/ ()V +MD: net/minecraft/gametest/framework/LogTestReporter/m_142335_ (Lnet/minecraft/gametest/framework/GameTestInfo;)V net/minecraft/gametest/framework/LogTestReporter/onTestSuccess (Lnet/minecraft/gametest/framework/GameTestInfo;)V +MD: net/minecraft/gametest/framework/LogTestReporter/m_8014_ (Lnet/minecraft/gametest/framework/GameTestInfo;)V net/minecraft/gametest/framework/LogTestReporter/onTestFailed (Lnet/minecraft/gametest/framework/GameTestInfo;)V +MD: net/minecraft/gametest/framework/MultipleTestTracker/ (Ljava/util/Collection;)V net/minecraft/gametest/framework/MultipleTestTracker/ (Ljava/util/Collection;)V +MD: net/minecraft/gametest/framework/MultipleTestTracker/ ()V net/minecraft/gametest/framework/MultipleTestTracker/ ()V +MD: net/minecraft/gametest/framework/MultipleTestTracker/m_127803_ ()I net/minecraft/gametest/framework/MultipleTestTracker/getFailedRequiredCount ()I +MD: net/minecraft/gametest/framework/MultipleTestTracker/m_127804_ (Ljava/lang/StringBuffer;Lnet/minecraft/gametest/framework/GameTestInfo;)V net/minecraft/gametest/framework/MultipleTestTracker/lambda$getProgressBar$1 (Ljava/lang/StringBuffer;Lnet/minecraft/gametest/framework/GameTestInfo;)V +MD: net/minecraft/gametest/framework/MultipleTestTracker/m_127807_ (Ljava/util/function/Consumer;)V net/minecraft/gametest/framework/MultipleTestTracker/addFailureListener (Ljava/util/function/Consumer;)V +MD: net/minecraft/gametest/framework/MultipleTestTracker/m_127809_ (Lnet/minecraft/gametest/framework/GameTestInfo;)V net/minecraft/gametest/framework/MultipleTestTracker/addTestToTrack (Lnet/minecraft/gametest/framework/GameTestInfo;)V +MD: net/minecraft/gametest/framework/MultipleTestTracker/m_127811_ (Lnet/minecraft/gametest/framework/GameTestListener;)V net/minecraft/gametest/framework/MultipleTestTracker/addListener (Lnet/minecraft/gametest/framework/GameTestListener;)V +MD: net/minecraft/gametest/framework/MultipleTestTracker/m_127813_ (Lnet/minecraft/gametest/framework/GameTestListener;Lnet/minecraft/gametest/framework/GameTestInfo;)V net/minecraft/gametest/framework/MultipleTestTracker/lambda$addListener$0 (Lnet/minecraft/gametest/framework/GameTestListener;Lnet/minecraft/gametest/framework/GameTestInfo;)V +MD: net/minecraft/gametest/framework/MultipleTestTracker/m_127816_ ()I net/minecraft/gametest/framework/MultipleTestTracker/getFailedOptionalCount ()I +MD: net/minecraft/gametest/framework/MultipleTestTracker/m_127817_ ()I net/minecraft/gametest/framework/MultipleTestTracker/getDoneCount ()I +MD: net/minecraft/gametest/framework/MultipleTestTracker/m_127818_ ()Z net/minecraft/gametest/framework/MultipleTestTracker/hasFailedRequired ()Z +MD: net/minecraft/gametest/framework/MultipleTestTracker/m_127819_ ()Z net/minecraft/gametest/framework/MultipleTestTracker/hasFailedOptional ()Z +MD: net/minecraft/gametest/framework/MultipleTestTracker/m_127820_ ()I net/minecraft/gametest/framework/MultipleTestTracker/getTotalCount ()I +MD: net/minecraft/gametest/framework/MultipleTestTracker/m_127821_ ()Z net/minecraft/gametest/framework/MultipleTestTracker/isDone ()Z +MD: net/minecraft/gametest/framework/MultipleTestTracker/m_127822_ ()Ljava/lang/String; net/minecraft/gametest/framework/MultipleTestTracker/getProgressBar ()Ljava/lang/String; +MD: net/minecraft/gametest/framework/MultipleTestTracker/m_177682_ ()Ljava/util/Collection; net/minecraft/gametest/framework/MultipleTestTracker/getFailedRequired ()Ljava/util/Collection; +MD: net/minecraft/gametest/framework/MultipleTestTracker/m_177683_ ()Ljava/util/Collection; net/minecraft/gametest/framework/MultipleTestTracker/getFailedOptional ()Ljava/util/Collection; +MD: net/minecraft/gametest/framework/MultipleTestTracker/toString ()Ljava/lang/String; net/minecraft/gametest/framework/MultipleTestTracker/toString ()Ljava/lang/String; +MD: net/minecraft/gametest/framework/MultipleTestTracker$1/ (Lnet/minecraft/gametest/framework/MultipleTestTracker;Ljava/util/function/Consumer;)V net/minecraft/gametest/framework/MultipleTestTracker$1/ (Lnet/minecraft/gametest/framework/MultipleTestTracker;Ljava/util/function/Consumer;)V +MD: net/minecraft/gametest/framework/MultipleTestTracker$1/m_142378_ (Lnet/minecraft/gametest/framework/GameTestInfo;)V net/minecraft/gametest/framework/MultipleTestTracker$1/testPassed (Lnet/minecraft/gametest/framework/GameTestInfo;)V +MD: net/minecraft/gametest/framework/MultipleTestTracker$1/m_8066_ (Lnet/minecraft/gametest/framework/GameTestInfo;)V net/minecraft/gametest/framework/MultipleTestTracker$1/testFailed (Lnet/minecraft/gametest/framework/GameTestInfo;)V +MD: net/minecraft/gametest/framework/MultipleTestTracker$1/m_8073_ (Lnet/minecraft/gametest/framework/GameTestInfo;)V net/minecraft/gametest/framework/MultipleTestTracker$1/testStructureLoaded (Lnet/minecraft/gametest/framework/GameTestInfo;)V +MD: net/minecraft/gametest/framework/ReportGameListener/ (Lnet/minecraft/gametest/framework/GameTestInfo;Lnet/minecraft/gametest/framework/GameTestTicker;Lnet/minecraft/core/BlockPos;)V net/minecraft/gametest/framework/ReportGameListener/ (Lnet/minecraft/gametest/framework/GameTestInfo;Lnet/minecraft/gametest/framework/GameTestTicker;Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/gametest/framework/ReportGameListener/m_142378_ (Lnet/minecraft/gametest/framework/GameTestInfo;)V net/minecraft/gametest/framework/ReportGameListener/testPassed (Lnet/minecraft/gametest/framework/GameTestInfo;)V +MD: net/minecraft/gametest/framework/ReportGameListener/m_177695_ ()V net/minecraft/gametest/framework/ReportGameListener/rerunTest ()V +MD: net/minecraft/gametest/framework/ReportGameListener/m_177696_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;Ljava/lang/String;)V net/minecraft/gametest/framework/ReportGameListener/showRedBox (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;Ljava/lang/String;)V +MD: net/minecraft/gametest/framework/ReportGameListener/m_177700_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/ChatFormatting;Ljava/lang/String;)V net/minecraft/gametest/framework/ReportGameListener/say (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/ChatFormatting;Ljava/lang/String;)V +MD: net/minecraft/gametest/framework/ReportGameListener/m_177704_ (Lnet/minecraft/server/level/ServerPlayer;)Z net/minecraft/gametest/framework/ReportGameListener/lambda$say$1 (Lnet/minecraft/server/level/ServerPlayer;)Z +MD: net/minecraft/gametest/framework/ReportGameListener/m_177706_ (Ljava/lang/String;Lnet/minecraft/ChatFormatting;Lnet/minecraft/server/level/ServerPlayer;)V net/minecraft/gametest/framework/ReportGameListener/lambda$say$2 (Ljava/lang/String;Lnet/minecraft/ChatFormatting;Lnet/minecraft/server/level/ServerPlayer;)V +MD: net/minecraft/gametest/framework/ReportGameListener/m_177710_ (Ljava/lang/String;ZLjava/lang/String;)Lnet/minecraft/world/item/ItemStack; net/minecraft/gametest/framework/ReportGameListener/createBook (Ljava/lang/String;ZLjava/lang/String;)Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/gametest/framework/ReportGameListener/m_177714_ (Ljava/lang/StringBuffer;Ljava/lang/String;)V net/minecraft/gametest/framework/ReportGameListener/lambda$createBook$0 (Ljava/lang/StringBuffer;Ljava/lang/String;)V +MD: net/minecraft/gametest/framework/ReportGameListener/m_177719_ (Lnet/minecraft/gametest/framework/GameTestInfo;Lnet/minecraft/world/level/block/Block;)V net/minecraft/gametest/framework/ReportGameListener/spawnBeacon (Lnet/minecraft/gametest/framework/GameTestInfo;Lnet/minecraft/world/level/block/Block;)V +MD: net/minecraft/gametest/framework/ReportGameListener/m_177722_ (Lnet/minecraft/gametest/framework/GameTestInfo;Ljava/lang/String;)V net/minecraft/gametest/framework/ReportGameListener/reportPassed (Lnet/minecraft/gametest/framework/GameTestInfo;Ljava/lang/String;)V +MD: net/minecraft/gametest/framework/ReportGameListener/m_177725_ (Lnet/minecraft/gametest/framework/GameTestInfo;Ljava/lang/Throwable;)V net/minecraft/gametest/framework/ReportGameListener/reportFailure (Lnet/minecraft/gametest/framework/GameTestInfo;Ljava/lang/Throwable;)V +MD: net/minecraft/gametest/framework/ReportGameListener/m_177730_ (Lnet/minecraft/gametest/framework/GameTestInfo;Ljava/lang/String;)V net/minecraft/gametest/framework/ReportGameListener/visualizePassedTest (Lnet/minecraft/gametest/framework/GameTestInfo;Ljava/lang/String;)V +MD: net/minecraft/gametest/framework/ReportGameListener/m_177733_ (Lnet/minecraft/gametest/framework/GameTestInfo;Ljava/lang/Throwable;)V net/minecraft/gametest/framework/ReportGameListener/visualizeFailedTest (Lnet/minecraft/gametest/framework/GameTestInfo;Ljava/lang/Throwable;)V +MD: net/minecraft/gametest/framework/ReportGameListener/m_177738_ (Lnet/minecraft/gametest/framework/GameTestInfo;Ljava/lang/String;)V net/minecraft/gametest/framework/ReportGameListener/spawnLectern (Lnet/minecraft/gametest/framework/GameTestInfo;Ljava/lang/String;)V +MD: net/minecraft/gametest/framework/ReportGameListener/m_8066_ (Lnet/minecraft/gametest/framework/GameTestInfo;)V net/minecraft/gametest/framework/ReportGameListener/testFailed (Lnet/minecraft/gametest/framework/GameTestInfo;)V +MD: net/minecraft/gametest/framework/ReportGameListener/m_8073_ (Lnet/minecraft/gametest/framework/GameTestInfo;)V net/minecraft/gametest/framework/ReportGameListener/testStructureLoaded (Lnet/minecraft/gametest/framework/GameTestInfo;)V +MD: net/minecraft/gametest/framework/StructureUtils/ ()V net/minecraft/gametest/framework/StructureUtils/ ()V +MD: net/minecraft/gametest/framework/StructureUtils/ ()V net/minecraft/gametest/framework/StructureUtils/ ()V +MD: net/minecraft/gametest/framework/StructureUtils/m_127835_ (I)Lnet/minecraft/world/level/block/Rotation; net/minecraft/gametest/framework/StructureUtils/getRotationForRotationSteps (I)Lnet/minecraft/world/level/block/Rotation; +MD: net/minecraft/gametest/framework/StructureUtils/m_127841_ (ILnet/minecraft/core/BlockPos;Lnet/minecraft/server/level/ServerLevel;)V net/minecraft/gametest/framework/StructureUtils/clearBlock (ILnet/minecraft/core/BlockPos;Lnet/minecraft/server/level/ServerLevel;)V +MD: net/minecraft/gametest/framework/StructureUtils/m_127847_ (Lnet/minecraft/world/level/block/entity/StructureBlockEntity;)Lnet/minecraft/world/phys/AABB; net/minecraft/gametest/framework/StructureUtils/getStructureBounds (Lnet/minecraft/world/level/block/entity/StructureBlockEntity;)Lnet/minecraft/world/phys/AABB; +MD: net/minecraft/gametest/framework/StructureUtils/m_127849_ (Lnet/minecraft/world/level/levelgen/structure/BoundingBox;ILnet/minecraft/server/level/ServerLevel;)V net/minecraft/gametest/framework/StructureUtils/clearSpaceForStructure (Lnet/minecraft/world/level/levelgen/structure/BoundingBox;ILnet/minecraft/server/level/ServerLevel;)V +MD: net/minecraft/gametest/framework/StructureUtils/m_127853_ (Lnet/minecraft/core/BlockPos;ILnet/minecraft/server/level/ServerLevel;)Ljava/util/Optional; net/minecraft/gametest/framework/StructureUtils/findStructureBlockContainingPos (Lnet/minecraft/core/BlockPos;ILnet/minecraft/server/level/ServerLevel;)Ljava/util/Optional; +MD: net/minecraft/gametest/framework/StructureUtils/m_127857_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/server/level/ServerLevel;)V net/minecraft/gametest/framework/StructureUtils/forceLoadChunks (Lnet/minecraft/core/BlockPos;Lnet/minecraft/server/level/ServerLevel;)V +MD: net/minecraft/gametest/framework/StructureUtils/m_127867_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;Lnet/minecraft/server/level/ServerLevel;)Z net/minecraft/gametest/framework/StructureUtils/doesStructureContain (Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;Lnet/minecraft/server/level/ServerLevel;)Z +MD: net/minecraft/gametest/framework/StructureUtils/m_127875_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/Rotation;Lnet/minecraft/server/level/ServerLevel;)V net/minecraft/gametest/framework/StructureUtils/addCommandBlockAndButtonToStartTest (Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/Rotation;Lnet/minecraft/server/level/ServerLevel;)V +MD: net/minecraft/gametest/framework/StructureUtils/m_127880_ (Ljava/lang/String;Lnet/minecraft/server/level/ServerLevel;)Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate; net/minecraft/gametest/framework/StructureUtils/getStructureTemplate (Ljava/lang/String;Lnet/minecraft/server/level/ServerLevel;)Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate; +MD: net/minecraft/gametest/framework/StructureUtils/m_127883_ (Ljava/lang/String;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/Rotation;ILnet/minecraft/server/level/ServerLevel;Z)Lnet/minecraft/world/level/block/entity/StructureBlockEntity; net/minecraft/gametest/framework/StructureUtils/spawnStructure (Ljava/lang/String;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/Rotation;ILnet/minecraft/server/level/ServerLevel;Z)Lnet/minecraft/world/level/block/entity/StructureBlockEntity; +MD: net/minecraft/gametest/framework/StructureUtils/m_127890_ (Ljava/lang/String;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/Rotation;Lnet/minecraft/server/level/ServerLevel;Z)Lnet/minecraft/world/level/block/entity/StructureBlockEntity; net/minecraft/gametest/framework/StructureUtils/createStructureBlock (Ljava/lang/String;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/Rotation;Lnet/minecraft/server/level/ServerLevel;Z)Lnet/minecraft/world/level/block/entity/StructureBlockEntity; +MD: net/minecraft/gametest/framework/StructureUtils/m_127902_ (Ljava/nio/file/Path;)Lnet/minecraft/nbt/CompoundTag; net/minecraft/gametest/framework/StructureUtils/tryLoadStructure (Ljava/nio/file/Path;)Lnet/minecraft/nbt/CompoundTag; +MD: net/minecraft/gametest/framework/StructureUtils/m_127904_ (Lnet/minecraft/world/level/block/entity/StructureBlockEntity;)Lnet/minecraft/world/level/levelgen/structure/BoundingBox; net/minecraft/gametest/framework/StructureUtils/getStructureBoundingBox (Lnet/minecraft/world/level/block/entity/StructureBlockEntity;)Lnet/minecraft/world/level/levelgen/structure/BoundingBox; +MD: net/minecraft/gametest/framework/StructureUtils/m_127906_ (Lnet/minecraft/core/BlockPos;ILnet/minecraft/server/level/ServerLevel;)Lnet/minecraft/core/BlockPos; net/minecraft/gametest/framework/StructureUtils/findNearestStructureBlock (Lnet/minecraft/core/BlockPos;ILnet/minecraft/server/level/ServerLevel;)Lnet/minecraft/core/BlockPos; +MD: net/minecraft/gametest/framework/StructureUtils/m_127910_ (Lnet/minecraft/core/BlockPos;ILnet/minecraft/server/level/ServerLevel;)Ljava/util/Collection; net/minecraft/gametest/framework/StructureUtils/findStructureBlocks (Lnet/minecraft/core/BlockPos;ILnet/minecraft/server/level/ServerLevel;)Ljava/util/Collection; +MD: net/minecraft/gametest/framework/StructureUtils/m_177745_ (ILnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;)V net/minecraft/gametest/framework/StructureUtils/lambda$clearSpaceForStructure$2 (ILnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/gametest/framework/StructureUtils/m_177749_ (Lnet/minecraft/world/entity/Entity;)Z net/minecraft/gametest/framework/StructureUtils/lambda$clearSpaceForStructure$3 (Lnet/minecraft/world/entity/Entity;)Z +MD: net/minecraft/gametest/framework/StructureUtils/m_177751_ (Lnet/minecraft/world/level/block/Rotation;)I net/minecraft/gametest/framework/StructureUtils/getRotationStepsForRotation (Lnet/minecraft/world/level/block/Rotation;)I +MD: net/minecraft/gametest/framework/StructureUtils/m_177753_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;)Z net/minecraft/gametest/framework/StructureUtils/lambda$findStructureBlockContainingPos$4 (Lnet/minecraft/core/BlockPos;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/gametest/framework/StructureUtils/m_177757_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;)I net/minecraft/gametest/framework/StructureUtils/lambda$findNearestStructureBlock$5 (Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;)I +MD: net/minecraft/gametest/framework/StructureUtils/m_177760_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Vec3i;Lnet/minecraft/world/level/block/Rotation;)Lnet/minecraft/world/level/levelgen/structure/BoundingBox; net/minecraft/gametest/framework/StructureUtils/getStructureBoundingBox (Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Vec3i;Lnet/minecraft/world/level/block/Rotation;)Lnet/minecraft/world/level/levelgen/structure/BoundingBox; +MD: net/minecraft/gametest/framework/StructureUtils/m_177764_ (Ljava/lang/String;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Vec3i;Lnet/minecraft/world/level/block/Rotation;Lnet/minecraft/server/level/ServerLevel;)V net/minecraft/gametest/framework/StructureUtils/createNewEmptyStructureBlock (Ljava/lang/String;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Vec3i;Lnet/minecraft/world/level/block/Rotation;Lnet/minecraft/server/level/ServerLevel;)V +MD: net/minecraft/gametest/framework/StructureUtils/m_177772_ (Ljava/nio/file/Path;)V net/minecraft/gametest/framework/StructureUtils/lambda$main$1 (Ljava/nio/file/Path;)V +MD: net/minecraft/gametest/framework/StructureUtils/m_177774_ (Ljava/nio/file/Path;)Z net/minecraft/gametest/framework/StructureUtils/lambda$main$0 (Ljava/nio/file/Path;)Z +MD: net/minecraft/gametest/framework/StructureUtils/main ([Ljava/lang/String;)V net/minecraft/gametest/framework/StructureUtils/main ([Ljava/lang/String;)V +MD: net/minecraft/gametest/framework/StructureUtils$1/ ()V net/minecraft/gametest/framework/StructureUtils$1/ ()V +MD: net/minecraft/gametest/framework/TeamcityTestReporter/ ()V net/minecraft/gametest/framework/TeamcityTestReporter/ ()V +MD: net/minecraft/gametest/framework/TeamcityTestReporter/ ()V net/minecraft/gametest/framework/TeamcityTestReporter/ ()V +MD: net/minecraft/gametest/framework/TeamcityTestReporter/m_142335_ (Lnet/minecraft/gametest/framework/GameTestInfo;)V net/minecraft/gametest/framework/TeamcityTestReporter/onTestSuccess (Lnet/minecraft/gametest/framework/GameTestInfo;)V +MD: net/minecraft/gametest/framework/TeamcityTestReporter/m_8014_ (Lnet/minecraft/gametest/framework/GameTestInfo;)V net/minecraft/gametest/framework/TeamcityTestReporter/onTestFailed (Lnet/minecraft/gametest/framework/GameTestInfo;)V +MD: net/minecraft/gametest/framework/TestClassNameArgument/ ()V net/minecraft/gametest/framework/TestClassNameArgument/ ()V +MD: net/minecraft/gametest/framework/TestClassNameArgument/ ()V net/minecraft/gametest/framework/TestClassNameArgument/ ()V +MD: net/minecraft/gametest/framework/TestClassNameArgument/getExamples ()Ljava/util/Collection; net/minecraft/gametest/framework/TestClassNameArgument/getExamples ()Ljava/util/Collection; +MD: net/minecraft/gametest/framework/TestClassNameArgument/listSuggestions (Lcom/mojang/brigadier/context/CommandContext;Lcom/mojang/brigadier/suggestion/SuggestionsBuilder;)Ljava/util/concurrent/CompletableFuture; net/minecraft/gametest/framework/TestClassNameArgument/listSuggestions (Lcom/mojang/brigadier/context/CommandContext;Lcom/mojang/brigadier/suggestion/SuggestionsBuilder;)Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/gametest/framework/TestClassNameArgument/m_127917_ ()Lnet/minecraft/gametest/framework/TestClassNameArgument; net/minecraft/gametest/framework/TestClassNameArgument/testClassName ()Lnet/minecraft/gametest/framework/TestClassNameArgument; +MD: net/minecraft/gametest/framework/TestClassNameArgument/m_127920_ (Lcom/mojang/brigadier/context/CommandContext;Ljava/lang/String;)Ljava/lang/String; net/minecraft/gametest/framework/TestClassNameArgument/getTestClassName (Lcom/mojang/brigadier/context/CommandContext;Ljava/lang/String;)Ljava/lang/String; +MD: net/minecraft/gametest/framework/TestClassNameArgument/parse (Lcom/mojang/brigadier/StringReader;)Ljava/lang/Object; net/minecraft/gametest/framework/TestClassNameArgument/parse (Lcom/mojang/brigadier/StringReader;)Ljava/lang/Object; +MD: net/minecraft/gametest/framework/TestClassNameArgument/parse (Lcom/mojang/brigadier/StringReader;)Ljava/lang/String; net/minecraft/gametest/framework/TestClassNameArgument/parse (Lcom/mojang/brigadier/StringReader;)Ljava/lang/String; +MD: net/minecraft/gametest/framework/TestCommand/ ()V net/minecraft/gametest/framework/TestCommand/ ()V +MD: net/minecraft/gametest/framework/TestCommand/m_127929_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;Lnet/minecraft/gametest/framework/MultipleTestTracker;)V net/minecraft/gametest/framework/TestCommand/runTest (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;Lnet/minecraft/gametest/framework/MultipleTestTracker;)V +MD: net/minecraft/gametest/framework/TestCommand/m_127933_ (Lnet/minecraft/server/level/ServerLevel;Ljava/lang/String;Lnet/minecraft/ChatFormatting;)V net/minecraft/gametest/framework/TestCommand/say (Lnet/minecraft/server/level/ServerLevel;Ljava/lang/String;Lnet/minecraft/ChatFormatting;)V +MD: net/minecraft/gametest/framework/TestCommand/m_127940_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/gametest/framework/MultipleTestTracker;Lnet/minecraft/core/BlockPos;)V net/minecraft/gametest/framework/TestCommand/lambda$runAllNearbyTests$25 (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/gametest/framework/MultipleTestTracker;Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/gametest/framework/TestCommand/m_127944_ (Lnet/minecraft/server/level/ServerPlayer;)Z net/minecraft/gametest/framework/TestCommand/lambda$say$28 (Lnet/minecraft/server/level/ServerPlayer;)Z +MD: net/minecraft/gametest/framework/TestCommand/m_127946_ (Lcom/mojang/brigadier/CommandDispatcher;)V net/minecraft/gametest/framework/TestCommand/register (Lcom/mojang/brigadier/CommandDispatcher;)V +MD: net/minecraft/gametest/framework/TestCommand/m_127948_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/gametest/framework/TestCommand/lambda$register$23 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/gametest/framework/TestCommand/m_127950_ (Lnet/minecraft/commands/CommandSourceStack;)I net/minecraft/gametest/framework/TestCommand/runNearbyTest (Lnet/minecraft/commands/CommandSourceStack;)I +MD: net/minecraft/gametest/framework/TestCommand/m_127952_ (Lnet/minecraft/commands/CommandSourceStack;I)I net/minecraft/gametest/framework/TestCommand/clearAllTests (Lnet/minecraft/commands/CommandSourceStack;I)I +MD: net/minecraft/gametest/framework/TestCommand/m_127955_ (Lnet/minecraft/commands/CommandSourceStack;II)I net/minecraft/gametest/framework/TestCommand/runAllTests (Lnet/minecraft/commands/CommandSourceStack;II)I +MD: net/minecraft/gametest/framework/TestCommand/m_127959_ (Lnet/minecraft/commands/CommandSourceStack;Ljava/lang/String;)I net/minecraft/gametest/framework/TestCommand/showPos (Lnet/minecraft/commands/CommandSourceStack;Ljava/lang/String;)I +MD: net/minecraft/gametest/framework/TestCommand/m_127962_ (Lnet/minecraft/commands/CommandSourceStack;Ljava/lang/String;II)I net/minecraft/gametest/framework/TestCommand/runAllTestsInClass (Lnet/minecraft/commands/CommandSourceStack;Ljava/lang/String;II)I +MD: net/minecraft/gametest/framework/TestCommand/m_127967_ (Lnet/minecraft/commands/CommandSourceStack;Ljava/lang/String;III)I net/minecraft/gametest/framework/TestCommand/createNewStructure (Lnet/minecraft/commands/CommandSourceStack;Ljava/lang/String;III)I +MD: net/minecraft/gametest/framework/TestCommand/m_127973_ (Lnet/minecraft/commands/CommandSourceStack;Ljava/util/Collection;II)V net/minecraft/gametest/framework/TestCommand/runTests (Lnet/minecraft/commands/CommandSourceStack;Ljava/util/Collection;II)V +MD: net/minecraft/gametest/framework/TestCommand/m_127978_ (Lnet/minecraft/commands/CommandSourceStack;Lnet/minecraft/gametest/framework/TestFunction;I)I net/minecraft/gametest/framework/TestCommand/runTest (Lnet/minecraft/commands/CommandSourceStack;Lnet/minecraft/gametest/framework/TestFunction;I)I +MD: net/minecraft/gametest/framework/TestCommand/m_127982_ (Lnet/minecraft/commands/CommandSourceStack;ZII)I net/minecraft/gametest/framework/TestCommand/runLastFailedTests (Lnet/minecraft/commands/CommandSourceStack;ZII)I +MD: net/minecraft/gametest/framework/TestCommand/m_127987_ (Lnet/minecraft/ChatFormatting;Ljava/lang/String;Lnet/minecraft/server/level/ServerPlayer;)V net/minecraft/gametest/framework/TestCommand/lambda$say$29 (Lnet/minecraft/ChatFormatting;Ljava/lang/String;Lnet/minecraft/server/level/ServerPlayer;)V +MD: net/minecraft/gametest/framework/TestCommand/m_127991_ (Lnet/minecraft/gametest/framework/GameTestInfo;)V net/minecraft/gametest/framework/TestCommand/lambda$runTests$26 (Lnet/minecraft/gametest/framework/GameTestInfo;)V +MD: net/minecraft/gametest/framework/TestCommand/m_127993_ (Lnet/minecraft/gametest/framework/TestFunction;Lnet/minecraft/server/level/ServerLevel;)V net/minecraft/gametest/framework/TestCommand/runTestPreparation (Lnet/minecraft/gametest/framework/TestFunction;Lnet/minecraft/server/level/ServerLevel;)V +MD: net/minecraft/gametest/framework/TestCommand/m_127996_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/gametest/framework/MultipleTestTracker;)V net/minecraft/gametest/framework/TestCommand/showTestSummaryIfAllDone (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/gametest/framework/MultipleTestTracker;)V +MD: net/minecraft/gametest/framework/TestCommand/m_127999_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/gametest/framework/TestCommand/lambda$register$22 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/gametest/framework/TestCommand/m_128001_ (Lnet/minecraft/commands/CommandSourceStack;)I net/minecraft/gametest/framework/TestCommand/runAllNearbyTests (Lnet/minecraft/commands/CommandSourceStack;)I +MD: net/minecraft/gametest/framework/TestCommand/m_128003_ (Lnet/minecraft/commands/CommandSourceStack;Ljava/lang/String;)V net/minecraft/gametest/framework/TestCommand/say (Lnet/minecraft/commands/CommandSourceStack;Ljava/lang/String;)V +MD: net/minecraft/gametest/framework/TestCommand/m_128006_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/gametest/framework/TestCommand/lambda$register$21 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/gametest/framework/TestCommand/m_128008_ (Lnet/minecraft/commands/CommandSourceStack;)I net/minecraft/gametest/framework/TestCommand/exportNearestTestStructure (Lnet/minecraft/commands/CommandSourceStack;)I +MD: net/minecraft/gametest/framework/TestCommand/m_128010_ (Lnet/minecraft/commands/CommandSourceStack;Ljava/lang/String;)I net/minecraft/gametest/framework/TestCommand/exportTestStructure (Lnet/minecraft/commands/CommandSourceStack;Ljava/lang/String;)I +MD: net/minecraft/gametest/framework/TestCommand/m_128013_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/gametest/framework/TestCommand/lambda$register$20 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/gametest/framework/TestCommand/m_128015_ (Lnet/minecraft/commands/CommandSourceStack;Ljava/lang/String;)I net/minecraft/gametest/framework/TestCommand/importTestStructure (Lnet/minecraft/commands/CommandSourceStack;Ljava/lang/String;)I +MD: net/minecraft/gametest/framework/TestCommand/m_128018_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/gametest/framework/TestCommand/lambda$register$19 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/gametest/framework/TestCommand/m_128020_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/gametest/framework/TestCommand/lambda$register$18 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/gametest/framework/TestCommand/m_128022_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/gametest/framework/TestCommand/lambda$register$17 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/gametest/framework/TestCommand/m_128024_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/gametest/framework/TestCommand/lambda$register$16 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/gametest/framework/TestCommand/m_128026_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/gametest/framework/TestCommand/lambda$register$15 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/gametest/framework/TestCommand/m_128028_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/gametest/framework/TestCommand/lambda$register$14 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/gametest/framework/TestCommand/m_128030_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/gametest/framework/TestCommand/lambda$register$13 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/gametest/framework/TestCommand/m_128032_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/gametest/framework/TestCommand/lambda$register$12 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/gametest/framework/TestCommand/m_128034_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/gametest/framework/TestCommand/lambda$register$11 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/gametest/framework/TestCommand/m_128036_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/gametest/framework/TestCommand/lambda$register$10 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/gametest/framework/TestCommand/m_128038_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/gametest/framework/TestCommand/lambda$register$9 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/gametest/framework/TestCommand/m_128040_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/gametest/framework/TestCommand/lambda$register$8 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/gametest/framework/TestCommand/m_128042_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/gametest/framework/TestCommand/lambda$register$7 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/gametest/framework/TestCommand/m_128044_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/gametest/framework/TestCommand/lambda$register$6 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/gametest/framework/TestCommand/m_128046_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/gametest/framework/TestCommand/lambda$register$5 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/gametest/framework/TestCommand/m_128048_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/gametest/framework/TestCommand/lambda$register$4 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/gametest/framework/TestCommand/m_128050_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/gametest/framework/TestCommand/lambda$register$3 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/gametest/framework/TestCommand/m_128052_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/gametest/framework/TestCommand/lambda$register$2 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/gametest/framework/TestCommand/m_128054_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/gametest/framework/TestCommand/lambda$register$1 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/gametest/framework/TestCommand/m_128056_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/gametest/framework/TestCommand/lambda$register$0 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/gametest/framework/TestCommand/m_287807_ (Ljava/lang/String;)Lnet/minecraft/network/chat/Component; net/minecraft/gametest/framework/TestCommand/lambda$say$27 (Ljava/lang/String;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/gametest/framework/TestCommand/m_287808_ (Ljava/lang/String;Lnet/minecraft/network/chat/Component;)Lnet/minecraft/network/chat/Component; net/minecraft/gametest/framework/TestCommand/lambda$showPos$24 (Ljava/lang/String;Lnet/minecraft/network/chat/Component;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/gametest/framework/TestCommand$TestSummaryDisplayer/ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/gametest/framework/MultipleTestTracker;)V net/minecraft/gametest/framework/TestCommand$TestSummaryDisplayer/ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/gametest/framework/MultipleTestTracker;)V +MD: net/minecraft/gametest/framework/TestCommand$TestSummaryDisplayer/m_142378_ (Lnet/minecraft/gametest/framework/GameTestInfo;)V net/minecraft/gametest/framework/TestCommand$TestSummaryDisplayer/testPassed (Lnet/minecraft/gametest/framework/GameTestInfo;)V +MD: net/minecraft/gametest/framework/TestCommand$TestSummaryDisplayer/m_8066_ (Lnet/minecraft/gametest/framework/GameTestInfo;)V net/minecraft/gametest/framework/TestCommand$TestSummaryDisplayer/testFailed (Lnet/minecraft/gametest/framework/GameTestInfo;)V +MD: net/minecraft/gametest/framework/TestCommand$TestSummaryDisplayer/m_8073_ (Lnet/minecraft/gametest/framework/GameTestInfo;)V net/minecraft/gametest/framework/TestCommand$TestSummaryDisplayer/testStructureLoaded (Lnet/minecraft/gametest/framework/GameTestInfo;)V +MD: net/minecraft/gametest/framework/TestFunction/ (Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Lnet/minecraft/world/level/block/Rotation;IJZLjava/util/function/Consumer;)V net/minecraft/gametest/framework/TestFunction/ (Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Lnet/minecraft/world/level/block/Rotation;IJZLjava/util/function/Consumer;)V +MD: net/minecraft/gametest/framework/TestFunction/ (Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Lnet/minecraft/world/level/block/Rotation;IJZIILjava/util/function/Consumer;)V net/minecraft/gametest/framework/TestFunction/ (Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Lnet/minecraft/world/level/block/Rotation;IJZIILjava/util/function/Consumer;)V +MD: net/minecraft/gametest/framework/TestFunction/ (Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;IJZLjava/util/function/Consumer;)V net/minecraft/gametest/framework/TestFunction/ (Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;IJZLjava/util/function/Consumer;)V +MD: net/minecraft/gametest/framework/TestFunction/m_128075_ ()Ljava/lang/String; net/minecraft/gametest/framework/TestFunction/getTestName ()Ljava/lang/String; +MD: net/minecraft/gametest/framework/TestFunction/m_128076_ (Lnet/minecraft/gametest/framework/GameTestHelper;)V net/minecraft/gametest/framework/TestFunction/run (Lnet/minecraft/gametest/framework/GameTestHelper;)V +MD: net/minecraft/gametest/framework/TestFunction/m_128078_ ()Ljava/lang/String; net/minecraft/gametest/framework/TestFunction/getStructureName ()Ljava/lang/String; +MD: net/minecraft/gametest/framework/TestFunction/m_128079_ ()I net/minecraft/gametest/framework/TestFunction/getMaxTicks ()I +MD: net/minecraft/gametest/framework/TestFunction/m_128080_ ()Z net/minecraft/gametest/framework/TestFunction/isRequired ()Z +MD: net/minecraft/gametest/framework/TestFunction/m_128081_ ()Ljava/lang/String; net/minecraft/gametest/framework/TestFunction/getBatchName ()Ljava/lang/String; +MD: net/minecraft/gametest/framework/TestFunction/m_128082_ ()J net/minecraft/gametest/framework/TestFunction/getSetupTicks ()J +MD: net/minecraft/gametest/framework/TestFunction/m_128083_ ()Lnet/minecraft/world/level/block/Rotation; net/minecraft/gametest/framework/TestFunction/getRotation ()Lnet/minecraft/world/level/block/Rotation; +MD: net/minecraft/gametest/framework/TestFunction/m_177828_ ()Z net/minecraft/gametest/framework/TestFunction/isFlaky ()Z +MD: net/minecraft/gametest/framework/TestFunction/m_177829_ ()I net/minecraft/gametest/framework/TestFunction/getMaxAttempts ()I +MD: net/minecraft/gametest/framework/TestFunction/m_177830_ ()I net/minecraft/gametest/framework/TestFunction/getRequiredSuccesses ()I +MD: net/minecraft/gametest/framework/TestFunction/toString ()Ljava/lang/String; net/minecraft/gametest/framework/TestFunction/toString ()Ljava/lang/String; +MD: net/minecraft/gametest/framework/TestFunctionArgument/ ()V net/minecraft/gametest/framework/TestFunctionArgument/ ()V +MD: net/minecraft/gametest/framework/TestFunctionArgument/ ()V net/minecraft/gametest/framework/TestFunctionArgument/ ()V +MD: net/minecraft/gametest/framework/TestFunctionArgument/getExamples ()Ljava/util/Collection; net/minecraft/gametest/framework/TestFunctionArgument/getExamples ()Ljava/util/Collection; +MD: net/minecraft/gametest/framework/TestFunctionArgument/listSuggestions (Lcom/mojang/brigadier/context/CommandContext;Lcom/mojang/brigadier/suggestion/SuggestionsBuilder;)Ljava/util/concurrent/CompletableFuture; net/minecraft/gametest/framework/TestFunctionArgument/listSuggestions (Lcom/mojang/brigadier/context/CommandContext;Lcom/mojang/brigadier/suggestion/SuggestionsBuilder;)Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/gametest/framework/TestFunctionArgument/m_128088_ ()Lnet/minecraft/gametest/framework/TestFunctionArgument; net/minecraft/gametest/framework/TestFunctionArgument/testFunctionArgument ()Lnet/minecraft/gametest/framework/TestFunctionArgument; +MD: net/minecraft/gametest/framework/TestFunctionArgument/m_128091_ (Lcom/mojang/brigadier/context/CommandContext;Ljava/lang/String;)Lnet/minecraft/gametest/framework/TestFunction; net/minecraft/gametest/framework/TestFunctionArgument/getTestFunction (Lcom/mojang/brigadier/context/CommandContext;Ljava/lang/String;)Lnet/minecraft/gametest/framework/TestFunction; +MD: net/minecraft/gametest/framework/TestFunctionArgument/parse (Lcom/mojang/brigadier/StringReader;)Ljava/lang/Object; net/minecraft/gametest/framework/TestFunctionArgument/parse (Lcom/mojang/brigadier/StringReader;)Ljava/lang/Object; +MD: net/minecraft/gametest/framework/TestFunctionArgument/parse (Lcom/mojang/brigadier/StringReader;)Lnet/minecraft/gametest/framework/TestFunction; net/minecraft/gametest/framework/TestFunctionArgument/parse (Lcom/mojang/brigadier/StringReader;)Lnet/minecraft/gametest/framework/TestFunction; +MD: net/minecraft/gametest/framework/TestReporter/m_142335_ (Lnet/minecraft/gametest/framework/GameTestInfo;)V net/minecraft/gametest/framework/TestReporter/onTestSuccess (Lnet/minecraft/gametest/framework/GameTestInfo;)V +MD: net/minecraft/gametest/framework/TestReporter/m_142411_ ()V net/minecraft/gametest/framework/TestReporter/finish ()V +MD: net/minecraft/gametest/framework/TestReporter/m_8014_ (Lnet/minecraft/gametest/framework/GameTestInfo;)V net/minecraft/gametest/framework/TestReporter/onTestFailed (Lnet/minecraft/gametest/framework/GameTestInfo;)V +MD: net/minecraft/locale/Language/ ()V net/minecraft/locale/Language/ ()V +MD: net/minecraft/locale/Language/ ()V net/minecraft/locale/Language/ ()V +MD: net/minecraft/locale/Language/m_118919_ (Ljava/lang/String;Ljava/lang/String;)Ljava/lang/String; net/minecraft/locale/Language/getOrDefault (Ljava/lang/String;Ljava/lang/String;)Ljava/lang/String; +MD: net/minecraft/locale/Language/m_128107_ ()Lnet/minecraft/locale/Language; net/minecraft/locale/Language/getInstance ()Lnet/minecraft/locale/Language; +MD: net/minecraft/locale/Language/m_128108_ (Ljava/io/InputStream;Ljava/util/function/BiConsumer;)V net/minecraft/locale/Language/loadFromJson (Ljava/io/InputStream;Ljava/util/function/BiConsumer;)V +MD: net/minecraft/locale/Language/m_128112_ (Ljava/util/List;)Ljava/util/List; net/minecraft/locale/Language/getVisualOrder (Ljava/util/List;)Ljava/util/List; +MD: net/minecraft/locale/Language/m_128114_ (Lnet/minecraft/locale/Language;)V net/minecraft/locale/Language/inject (Lnet/minecraft/locale/Language;)V +MD: net/minecraft/locale/Language/m_128118_ ()Lnet/minecraft/locale/Language; net/minecraft/locale/Language/loadDefault ()Lnet/minecraft/locale/Language; +MD: net/minecraft/locale/Language/m_280428_ (Ljava/util/function/BiConsumer;Ljava/lang/String;)V net/minecraft/locale/Language/parseTranslations (Ljava/util/function/BiConsumer;Ljava/lang/String;)V +MD: net/minecraft/locale/Language/m_5536_ (Lnet/minecraft/network/chat/FormattedText;)Lnet/minecraft/util/FormattedCharSequence; net/minecraft/locale/Language/getVisualOrder (Lnet/minecraft/network/chat/FormattedText;)Lnet/minecraft/util/FormattedCharSequence; +MD: net/minecraft/locale/Language/m_6627_ ()Z net/minecraft/locale/Language/isDefaultRightToLeft ()Z +MD: net/minecraft/locale/Language/m_6722_ (Ljava/lang/String;)Z net/minecraft/locale/Language/has (Ljava/lang/String;)Z +MD: net/minecraft/locale/Language/m_6834_ (Ljava/lang/String;)Ljava/lang/String; net/minecraft/locale/Language/getOrDefault (Ljava/lang/String;)Ljava/lang/String; +MD: net/minecraft/locale/Language$1/ (Ljava/util/Map;)V net/minecraft/locale/Language$1/ (Ljava/util/Map;)V +MD: net/minecraft/locale/Language$1/m_118919_ (Ljava/lang/String;Ljava/lang/String;)Ljava/lang/String; net/minecraft/locale/Language$1/getOrDefault (Ljava/lang/String;Ljava/lang/String;)Ljava/lang/String; +MD: net/minecraft/locale/Language$1/m_128130_ (Lnet/minecraft/network/chat/FormattedText;Lnet/minecraft/util/FormattedCharSink;)Z net/minecraft/locale/Language$1/lambda$getVisualOrder$1 (Lnet/minecraft/network/chat/FormattedText;Lnet/minecraft/util/FormattedCharSink;)Z +MD: net/minecraft/locale/Language$1/m_177833_ (Lnet/minecraft/util/FormattedCharSink;Lnet/minecraft/network/chat/Style;Ljava/lang/String;)Ljava/util/Optional; net/minecraft/locale/Language$1/lambda$getVisualOrder$0 (Lnet/minecraft/util/FormattedCharSink;Lnet/minecraft/network/chat/Style;Ljava/lang/String;)Ljava/util/Optional; +MD: net/minecraft/locale/Language$1/m_5536_ (Lnet/minecraft/network/chat/FormattedText;)Lnet/minecraft/util/FormattedCharSequence; net/minecraft/locale/Language$1/getVisualOrder (Lnet/minecraft/network/chat/FormattedText;)Lnet/minecraft/util/FormattedCharSequence; +MD: net/minecraft/locale/Language$1/m_6627_ ()Z net/minecraft/locale/Language$1/isDefaultRightToLeft ()Z +MD: net/minecraft/locale/Language$1/m_6722_ (Ljava/lang/String;)Z net/minecraft/locale/Language$1/has (Ljava/lang/String;)Z +MD: net/minecraft/nbt/ByteArrayTag/ ()V net/minecraft/nbt/ByteArrayTag/ ()V +MD: net/minecraft/nbt/ByteArrayTag/ (Ljava/util/List;)V net/minecraft/nbt/ByteArrayTag/ (Ljava/util/List;)V +MD: net/minecraft/nbt/ByteArrayTag/ ([B)V net/minecraft/nbt/ByteArrayTag/ ([B)V +MD: net/minecraft/nbt/ByteArrayTag/add (ILjava/lang/Object;)V net/minecraft/nbt/ByteArrayTag/add (ILjava/lang/Object;)V +MD: net/minecraft/nbt/ByteArrayTag/add (ILnet/minecraft/nbt/ByteTag;)V net/minecraft/nbt/ByteArrayTag/add (ILnet/minecraft/nbt/ByteTag;)V +MD: net/minecraft/nbt/ByteArrayTag/add (ILnet/minecraft/nbt/Tag;)V net/minecraft/nbt/ByteArrayTag/add (ILnet/minecraft/nbt/Tag;)V +MD: net/minecraft/nbt/ByteArrayTag/clear ()V net/minecraft/nbt/ByteArrayTag/clear ()V +MD: net/minecraft/nbt/ByteArrayTag/equals (Ljava/lang/Object;)Z net/minecraft/nbt/ByteArrayTag/equals (Ljava/lang/Object;)Z +MD: net/minecraft/nbt/ByteArrayTag/get (I)Ljava/lang/Object; net/minecraft/nbt/ByteArrayTag/get (I)Ljava/lang/Object; +MD: net/minecraft/nbt/ByteArrayTag/get (I)Lnet/minecraft/nbt/ByteTag; net/minecraft/nbt/ByteArrayTag/get (I)Lnet/minecraft/nbt/ByteTag; +MD: net/minecraft/nbt/ByteArrayTag/hashCode ()I net/minecraft/nbt/ByteArrayTag/hashCode ()I +MD: net/minecraft/nbt/ByteArrayTag/m_128206_ (Ljava/util/List;)[B net/minecraft/nbt/ByteArrayTag/toArray (Ljava/util/List;)[B +MD: net/minecraft/nbt/ByteArrayTag/m_128227_ ()[B net/minecraft/nbt/ByteArrayTag/getAsByteArray ()[B +MD: net/minecraft/nbt/ByteArrayTag/m_142327_ (Lnet/minecraft/nbt/TagVisitor;)V net/minecraft/nbt/ByteArrayTag/accept (Lnet/minecraft/nbt/TagVisitor;)V +MD: net/minecraft/nbt/ByteArrayTag/m_196533_ (Lnet/minecraft/nbt/StreamTagVisitor;)Lnet/minecraft/nbt/StreamTagVisitor$ValueResult; net/minecraft/nbt/ByteArrayTag/accept (Lnet/minecraft/nbt/StreamTagVisitor;)Lnet/minecraft/nbt/StreamTagVisitor$ValueResult; +MD: net/minecraft/nbt/ByteArrayTag/m_263179_ ()I net/minecraft/nbt/ByteArrayTag/sizeInBytes ()I +MD: net/minecraft/nbt/ByteArrayTag/m_6426_ ()Lnet/minecraft/nbt/Tag; net/minecraft/nbt/ByteArrayTag/copy ()Lnet/minecraft/nbt/Tag; +MD: net/minecraft/nbt/ByteArrayTag/m_6434_ (Ljava/io/DataOutput;)V net/minecraft/nbt/ByteArrayTag/write (Ljava/io/DataOutput;)V +MD: net/minecraft/nbt/ByteArrayTag/m_6458_ ()Lnet/minecraft/nbt/TagType; net/minecraft/nbt/ByteArrayTag/getType ()Lnet/minecraft/nbt/TagType; +MD: net/minecraft/nbt/ByteArrayTag/m_7060_ ()B net/minecraft/nbt/ByteArrayTag/getId ()B +MD: net/minecraft/nbt/ByteArrayTag/m_7264_ ()B net/minecraft/nbt/ByteArrayTag/getElementType ()B +MD: net/minecraft/nbt/ByteArrayTag/m_7614_ (ILnet/minecraft/nbt/Tag;)Z net/minecraft/nbt/ByteArrayTag/addTag (ILnet/minecraft/nbt/Tag;)Z +MD: net/minecraft/nbt/ByteArrayTag/m_7615_ (ILnet/minecraft/nbt/Tag;)Z net/minecraft/nbt/ByteArrayTag/setTag (ILnet/minecraft/nbt/Tag;)Z +MD: net/minecraft/nbt/ByteArrayTag/remove (I)Ljava/lang/Object; net/minecraft/nbt/ByteArrayTag/remove (I)Ljava/lang/Object; +MD: net/minecraft/nbt/ByteArrayTag/remove (I)Lnet/minecraft/nbt/ByteTag; net/minecraft/nbt/ByteArrayTag/remove (I)Lnet/minecraft/nbt/ByteTag; +MD: net/minecraft/nbt/ByteArrayTag/remove (I)Lnet/minecraft/nbt/Tag; net/minecraft/nbt/ByteArrayTag/remove (I)Lnet/minecraft/nbt/Tag; +MD: net/minecraft/nbt/ByteArrayTag/set (ILnet/minecraft/nbt/ByteTag;)Lnet/minecraft/nbt/ByteTag; net/minecraft/nbt/ByteArrayTag/set (ILnet/minecraft/nbt/ByteTag;)Lnet/minecraft/nbt/ByteTag; +MD: net/minecraft/nbt/ByteArrayTag/set (ILjava/lang/Object;)Ljava/lang/Object; net/minecraft/nbt/ByteArrayTag/set (ILjava/lang/Object;)Ljava/lang/Object; +MD: net/minecraft/nbt/ByteArrayTag/set (ILnet/minecraft/nbt/Tag;)Lnet/minecraft/nbt/Tag; net/minecraft/nbt/ByteArrayTag/set (ILnet/minecraft/nbt/Tag;)Lnet/minecraft/nbt/Tag; +MD: net/minecraft/nbt/ByteArrayTag/size ()I net/minecraft/nbt/ByteArrayTag/size ()I +MD: net/minecraft/nbt/ByteArrayTag/toString ()Ljava/lang/String; net/minecraft/nbt/ByteArrayTag/toString ()Ljava/lang/String; +MD: net/minecraft/nbt/ByteArrayTag$1/ ()V net/minecraft/nbt/ByteArrayTag$1/ ()V +MD: net/minecraft/nbt/ByteArrayTag$1/m_196159_ (Ljava/io/DataInput;)V net/minecraft/nbt/ByteArrayTag$1/skip (Ljava/io/DataInput;)V +MD: net/minecraft/nbt/ByteArrayTag$1/m_196511_ (Ljava/io/DataInput;Lnet/minecraft/nbt/StreamTagVisitor;)Lnet/minecraft/nbt/StreamTagVisitor$ValueResult; net/minecraft/nbt/ByteArrayTag$1/parse (Ljava/io/DataInput;Lnet/minecraft/nbt/StreamTagVisitor;)Lnet/minecraft/nbt/StreamTagVisitor$ValueResult; +MD: net/minecraft/nbt/ByteArrayTag$1/m_5986_ ()Ljava/lang/String; net/minecraft/nbt/ByteArrayTag$1/getPrettyName ()Ljava/lang/String; +MD: net/minecraft/nbt/ByteArrayTag$1/m_5987_ ()Ljava/lang/String; net/minecraft/nbt/ByteArrayTag$1/getName ()Ljava/lang/String; +MD: net/minecraft/nbt/ByteArrayTag$1/m_7300_ (Ljava/io/DataInput;ILnet/minecraft/nbt/NbtAccounter;)Lnet/minecraft/nbt/Tag; net/minecraft/nbt/ByteArrayTag$1/load (Ljava/io/DataInput;ILnet/minecraft/nbt/NbtAccounter;)Lnet/minecraft/nbt/Tag; +MD: net/minecraft/nbt/ByteArrayTag$1/m_7300_ (Ljava/io/DataInput;ILnet/minecraft/nbt/NbtAccounter;)Lnet/minecraft/nbt/ByteArrayTag; net/minecraft/nbt/ByteArrayTag$1/load (Ljava/io/DataInput;ILnet/minecraft/nbt/NbtAccounter;)Lnet/minecraft/nbt/ByteArrayTag; +MD: net/minecraft/nbt/ByteTag/ ()V net/minecraft/nbt/ByteTag/ ()V +MD: net/minecraft/nbt/ByteTag/ (B)V net/minecraft/nbt/ByteTag/ (B)V +MD: net/minecraft/nbt/ByteTag/equals (Ljava/lang/Object;)Z net/minecraft/nbt/ByteTag/equals (Ljava/lang/Object;)Z +MD: net/minecraft/nbt/ByteTag/hashCode ()I net/minecraft/nbt/ByteTag/hashCode ()I +MD: net/minecraft/nbt/ByteTag/m_128266_ (B)Lnet/minecraft/nbt/ByteTag; net/minecraft/nbt/ByteTag/valueOf (B)Lnet/minecraft/nbt/ByteTag; +MD: net/minecraft/nbt/ByteTag/m_128273_ (Z)Lnet/minecraft/nbt/ByteTag; net/minecraft/nbt/ByteTag/valueOf (Z)Lnet/minecraft/nbt/ByteTag; +MD: net/minecraft/nbt/ByteTag/m_142327_ (Lnet/minecraft/nbt/TagVisitor;)V net/minecraft/nbt/ByteTag/accept (Lnet/minecraft/nbt/TagVisitor;)V +MD: net/minecraft/nbt/ByteTag/m_196533_ (Lnet/minecraft/nbt/StreamTagVisitor;)Lnet/minecraft/nbt/StreamTagVisitor$ValueResult; net/minecraft/nbt/ByteTag/accept (Lnet/minecraft/nbt/StreamTagVisitor;)Lnet/minecraft/nbt/StreamTagVisitor$ValueResult; +MD: net/minecraft/nbt/ByteTag/m_263179_ ()I net/minecraft/nbt/ByteTag/sizeInBytes ()I +MD: net/minecraft/nbt/ByteTag/m_6426_ ()Lnet/minecraft/nbt/ByteTag; net/minecraft/nbt/ByteTag/copy ()Lnet/minecraft/nbt/ByteTag; +MD: net/minecraft/nbt/ByteTag/m_6426_ ()Lnet/minecraft/nbt/Tag; net/minecraft/nbt/ByteTag/copy ()Lnet/minecraft/nbt/Tag; +MD: net/minecraft/nbt/ByteTag/m_6434_ (Ljava/io/DataOutput;)V net/minecraft/nbt/ByteTag/write (Ljava/io/DataOutput;)V +MD: net/minecraft/nbt/ByteTag/m_6458_ ()Lnet/minecraft/nbt/TagType; net/minecraft/nbt/ByteTag/getType ()Lnet/minecraft/nbt/TagType; +MD: net/minecraft/nbt/ByteTag/m_7046_ ()J net/minecraft/nbt/ByteTag/getAsLong ()J +MD: net/minecraft/nbt/ByteTag/m_7047_ ()I net/minecraft/nbt/ByteTag/getAsInt ()I +MD: net/minecraft/nbt/ByteTag/m_7053_ ()S net/minecraft/nbt/ByteTag/getAsShort ()S +MD: net/minecraft/nbt/ByteTag/m_7057_ ()F net/minecraft/nbt/ByteTag/getAsFloat ()F +MD: net/minecraft/nbt/ByteTag/m_7060_ ()B net/minecraft/nbt/ByteTag/getId ()B +MD: net/minecraft/nbt/ByteTag/m_7061_ ()D net/minecraft/nbt/ByteTag/getAsDouble ()D +MD: net/minecraft/nbt/ByteTag/m_7063_ ()B net/minecraft/nbt/ByteTag/getAsByte ()B +MD: net/minecraft/nbt/ByteTag/m_8103_ ()Ljava/lang/Number; net/minecraft/nbt/ByteTag/getAsNumber ()Ljava/lang/Number; +MD: net/minecraft/nbt/ByteTag$1/ ()V net/minecraft/nbt/ByteTag$1/ ()V +MD: net/minecraft/nbt/ByteTag$1/m_196292_ ()I net/minecraft/nbt/ByteTag$1/size ()I +MD: net/minecraft/nbt/ByteTag$1/m_196511_ (Ljava/io/DataInput;Lnet/minecraft/nbt/StreamTagVisitor;)Lnet/minecraft/nbt/StreamTagVisitor$ValueResult; net/minecraft/nbt/ByteTag$1/parse (Ljava/io/DataInput;Lnet/minecraft/nbt/StreamTagVisitor;)Lnet/minecraft/nbt/StreamTagVisitor$ValueResult; +MD: net/minecraft/nbt/ByteTag$1/m_5986_ ()Ljava/lang/String; net/minecraft/nbt/ByteTag$1/getPrettyName ()Ljava/lang/String; +MD: net/minecraft/nbt/ByteTag$1/m_5987_ ()Ljava/lang/String; net/minecraft/nbt/ByteTag$1/getName ()Ljava/lang/String; +MD: net/minecraft/nbt/ByteTag$1/m_7064_ ()Z net/minecraft/nbt/ByteTag$1/isValue ()Z +MD: net/minecraft/nbt/ByteTag$1/m_7300_ (Ljava/io/DataInput;ILnet/minecraft/nbt/NbtAccounter;)Lnet/minecraft/nbt/ByteTag; net/minecraft/nbt/ByteTag$1/load (Ljava/io/DataInput;ILnet/minecraft/nbt/NbtAccounter;)Lnet/minecraft/nbt/ByteTag; +MD: net/minecraft/nbt/ByteTag$1/m_7300_ (Ljava/io/DataInput;ILnet/minecraft/nbt/NbtAccounter;)Lnet/minecraft/nbt/Tag; net/minecraft/nbt/ByteTag$1/load (Ljava/io/DataInput;ILnet/minecraft/nbt/NbtAccounter;)Lnet/minecraft/nbt/Tag; +MD: net/minecraft/nbt/ByteTag$Cache/ ()V net/minecraft/nbt/ByteTag$Cache/ ()V +MD: net/minecraft/nbt/ByteTag$Cache/ ()V net/minecraft/nbt/ByteTag$Cache/ ()V +MD: net/minecraft/nbt/CollectionTag/ ()V net/minecraft/nbt/CollectionTag/ ()V +MD: net/minecraft/nbt/CollectionTag/add (ILjava/lang/Object;)V net/minecraft/nbt/CollectionTag/add (ILjava/lang/Object;)V +MD: net/minecraft/nbt/CollectionTag/add (ILnet/minecraft/nbt/Tag;)V net/minecraft/nbt/CollectionTag/add (ILnet/minecraft/nbt/Tag;)V +MD: net/minecraft/nbt/CollectionTag/m_7264_ ()B net/minecraft/nbt/CollectionTag/getElementType ()B +MD: net/minecraft/nbt/CollectionTag/m_7614_ (ILnet/minecraft/nbt/Tag;)Z net/minecraft/nbt/CollectionTag/addTag (ILnet/minecraft/nbt/Tag;)Z +MD: net/minecraft/nbt/CollectionTag/m_7615_ (ILnet/minecraft/nbt/Tag;)Z net/minecraft/nbt/CollectionTag/setTag (ILnet/minecraft/nbt/Tag;)Z +MD: net/minecraft/nbt/CollectionTag/remove (I)Ljava/lang/Object; net/minecraft/nbt/CollectionTag/remove (I)Ljava/lang/Object; +MD: net/minecraft/nbt/CollectionTag/remove (I)Lnet/minecraft/nbt/Tag; net/minecraft/nbt/CollectionTag/remove (I)Lnet/minecraft/nbt/Tag; +MD: net/minecraft/nbt/CollectionTag/set (ILnet/minecraft/nbt/Tag;)Lnet/minecraft/nbt/Tag; net/minecraft/nbt/CollectionTag/set (ILnet/minecraft/nbt/Tag;)Lnet/minecraft/nbt/Tag; +MD: net/minecraft/nbt/CollectionTag/set (ILjava/lang/Object;)Ljava/lang/Object; net/minecraft/nbt/CollectionTag/set (ILjava/lang/Object;)Ljava/lang/Object; +MD: net/minecraft/nbt/CompoundTag/ ()V net/minecraft/nbt/CompoundTag/ ()V +MD: net/minecraft/nbt/CompoundTag/ (Ljava/util/Map;)V net/minecraft/nbt/CompoundTag/ (Ljava/util/Map;)V +MD: net/minecraft/nbt/CompoundTag/ ()V net/minecraft/nbt/CompoundTag/ ()V +MD: net/minecraft/nbt/CompoundTag/equals (Ljava/lang/Object;)Z net/minecraft/nbt/CompoundTag/equals (Ljava/lang/Object;)Z +MD: net/minecraft/nbt/CompoundTag/hashCode ()I net/minecraft/nbt/CompoundTag/hashCode ()I +MD: net/minecraft/nbt/CompoundTag/m_128342_ (Ljava/lang/String;)Ljava/util/UUID; net/minecraft/nbt/CompoundTag/getUUID (Ljava/lang/String;)Ljava/util/UUID; +MD: net/minecraft/nbt/CompoundTag/m_128344_ (Ljava/lang/String;B)V net/minecraft/nbt/CompoundTag/putByte (Ljava/lang/String;B)V +MD: net/minecraft/nbt/CompoundTag/m_128347_ (Ljava/lang/String;D)V net/minecraft/nbt/CompoundTag/putDouble (Ljava/lang/String;D)V +MD: net/minecraft/nbt/CompoundTag/m_128350_ (Ljava/lang/String;F)V net/minecraft/nbt/CompoundTag/putFloat (Ljava/lang/String;F)V +MD: net/minecraft/nbt/CompoundTag/m_128356_ (Ljava/lang/String;J)V net/minecraft/nbt/CompoundTag/putLong (Ljava/lang/String;J)V +MD: net/minecraft/nbt/CompoundTag/m_128359_ (Ljava/lang/String;Ljava/lang/String;)V net/minecraft/nbt/CompoundTag/putString (Ljava/lang/String;Ljava/lang/String;)V +MD: net/minecraft/nbt/CompoundTag/m_128362_ (Ljava/lang/String;Ljava/util/UUID;)V net/minecraft/nbt/CompoundTag/putUUID (Ljava/lang/String;Ljava/util/UUID;)V +MD: net/minecraft/nbt/CompoundTag/m_128365_ (Ljava/lang/String;Lnet/minecraft/nbt/Tag;)Lnet/minecraft/nbt/Tag; net/minecraft/nbt/CompoundTag/put (Ljava/lang/String;Lnet/minecraft/nbt/Tag;)Lnet/minecraft/nbt/Tag; +MD: net/minecraft/nbt/CompoundTag/m_128368_ (Ljava/lang/String;Lnet/minecraft/nbt/Tag;Ljava/io/DataOutput;)V net/minecraft/nbt/CompoundTag/writeNamedTag (Ljava/lang/String;Lnet/minecraft/nbt/Tag;Ljava/io/DataOutput;)V +MD: net/minecraft/nbt/CompoundTag/m_128372_ (Ljava/lang/String;Lnet/minecraft/nbt/TagType;Ljava/lang/ClassCastException;)Lnet/minecraft/CrashReport; net/minecraft/nbt/CompoundTag/createReport (Ljava/lang/String;Lnet/minecraft/nbt/TagType;Ljava/lang/ClassCastException;)Lnet/minecraft/CrashReport; +MD: net/minecraft/nbt/CompoundTag/m_128376_ (Ljava/lang/String;S)V net/minecraft/nbt/CompoundTag/putShort (Ljava/lang/String;S)V +MD: net/minecraft/nbt/CompoundTag/m_128379_ (Ljava/lang/String;Z)V net/minecraft/nbt/CompoundTag/putBoolean (Ljava/lang/String;Z)V +MD: net/minecraft/nbt/CompoundTag/m_128382_ (Ljava/lang/String;[B)V net/minecraft/nbt/CompoundTag/putByteArray (Ljava/lang/String;[B)V +MD: net/minecraft/nbt/CompoundTag/m_128385_ (Ljava/lang/String;[I)V net/minecraft/nbt/CompoundTag/putIntArray (Ljava/lang/String;[I)V +MD: net/minecraft/nbt/CompoundTag/m_128388_ (Ljava/lang/String;[J)V net/minecraft/nbt/CompoundTag/putLongArray (Ljava/lang/String;[J)V +MD: net/minecraft/nbt/CompoundTag/m_128391_ (Lnet/minecraft/nbt/CompoundTag;)Lnet/minecraft/nbt/CompoundTag; net/minecraft/nbt/CompoundTag/merge (Lnet/minecraft/nbt/CompoundTag;)Lnet/minecraft/nbt/CompoundTag; +MD: net/minecraft/nbt/CompoundTag/m_128403_ (Ljava/lang/String;)Z net/minecraft/nbt/CompoundTag/hasUUID (Ljava/lang/String;)Z +MD: net/minecraft/nbt/CompoundTag/m_128405_ (Ljava/lang/String;I)V net/minecraft/nbt/CompoundTag/putInt (Ljava/lang/String;I)V +MD: net/minecraft/nbt/CompoundTag/m_128408_ (Ljava/lang/String;Ljava/util/List;)V net/minecraft/nbt/CompoundTag/putIntArray (Ljava/lang/String;Ljava/util/List;)V +MD: net/minecraft/nbt/CompoundTag/m_128411_ (Lnet/minecraft/nbt/CompoundTag;)Lcom/mojang/serialization/Dynamic; net/minecraft/nbt/CompoundTag/lambda$static$2 (Lnet/minecraft/nbt/CompoundTag;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/nbt/CompoundTag/m_128413_ (Lnet/minecraft/nbt/TagType;Ljava/lang/String;Ljava/io/DataInput;ILnet/minecraft/nbt/NbtAccounter;)Lnet/minecraft/nbt/Tag; net/minecraft/nbt/CompoundTag/readNamedTagData (Lnet/minecraft/nbt/TagType;Ljava/lang/String;Ljava/io/DataInput;ILnet/minecraft/nbt/NbtAccounter;)Lnet/minecraft/nbt/Tag; +MD: net/minecraft/nbt/CompoundTag/m_128420_ (Ljava/io/DataInput;Lnet/minecraft/nbt/NbtAccounter;)B net/minecraft/nbt/CompoundTag/readNamedTagType (Ljava/io/DataInput;Lnet/minecraft/nbt/NbtAccounter;)B +MD: net/minecraft/nbt/CompoundTag/m_128423_ (Ljava/lang/String;)Lnet/minecraft/nbt/Tag; net/minecraft/nbt/CompoundTag/get (Ljava/lang/String;)Lnet/minecraft/nbt/Tag; +MD: net/minecraft/nbt/CompoundTag/m_128425_ (Ljava/lang/String;I)Z net/minecraft/nbt/CompoundTag/contains (Ljava/lang/String;I)Z +MD: net/minecraft/nbt/CompoundTag/m_128428_ (Ljava/lang/String;Ljava/util/List;)V net/minecraft/nbt/CompoundTag/putLongArray (Ljava/lang/String;Ljava/util/List;)V +MD: net/minecraft/nbt/CompoundTag/m_128431_ ()Ljava/util/Set; net/minecraft/nbt/CompoundTag/getAllKeys ()Ljava/util/Set; +MD: net/minecraft/nbt/CompoundTag/m_128432_ (Ljava/io/DataInput;Lnet/minecraft/nbt/NbtAccounter;)Ljava/lang/String; net/minecraft/nbt/CompoundTag/readNamedTagName (Ljava/io/DataInput;Lnet/minecraft/nbt/NbtAccounter;)Ljava/lang/String; +MD: net/minecraft/nbt/CompoundTag/m_128435_ (Ljava/lang/String;)B net/minecraft/nbt/CompoundTag/getTagType (Ljava/lang/String;)B +MD: net/minecraft/nbt/CompoundTag/m_128437_ (Ljava/lang/String;I)Lnet/minecraft/nbt/ListTag; net/minecraft/nbt/CompoundTag/getList (Ljava/lang/String;I)Lnet/minecraft/nbt/ListTag; +MD: net/minecraft/nbt/CompoundTag/m_128440_ ()I net/minecraft/nbt/CompoundTag/size ()I +MD: net/minecraft/nbt/CompoundTag/m_128441_ (Ljava/lang/String;)Z net/minecraft/nbt/CompoundTag/contains (Ljava/lang/String;)Z +MD: net/minecraft/nbt/CompoundTag/m_128445_ (Ljava/lang/String;)B net/minecraft/nbt/CompoundTag/getByte (Ljava/lang/String;)B +MD: net/minecraft/nbt/CompoundTag/m_128448_ (Ljava/lang/String;)S net/minecraft/nbt/CompoundTag/getShort (Ljava/lang/String;)S +MD: net/minecraft/nbt/CompoundTag/m_128450_ ()Ljava/util/Map; net/minecraft/nbt/CompoundTag/entries ()Ljava/util/Map; +MD: net/minecraft/nbt/CompoundTag/m_128451_ (Ljava/lang/String;)I net/minecraft/nbt/CompoundTag/getInt (Ljava/lang/String;)I +MD: net/minecraft/nbt/CompoundTag/m_128454_ (Ljava/lang/String;)J net/minecraft/nbt/CompoundTag/getLong (Ljava/lang/String;)J +MD: net/minecraft/nbt/CompoundTag/m_128456_ ()Z net/minecraft/nbt/CompoundTag/isEmpty ()Z +MD: net/minecraft/nbt/CompoundTag/m_128457_ (Ljava/lang/String;)F net/minecraft/nbt/CompoundTag/getFloat (Ljava/lang/String;)F +MD: net/minecraft/nbt/CompoundTag/m_128459_ (Ljava/lang/String;)D net/minecraft/nbt/CompoundTag/getDouble (Ljava/lang/String;)D +MD: net/minecraft/nbt/CompoundTag/m_128461_ (Ljava/lang/String;)Ljava/lang/String; net/minecraft/nbt/CompoundTag/getString (Ljava/lang/String;)Ljava/lang/String; +MD: net/minecraft/nbt/CompoundTag/m_128463_ (Ljava/lang/String;)[B net/minecraft/nbt/CompoundTag/getByteArray (Ljava/lang/String;)[B +MD: net/minecraft/nbt/CompoundTag/m_128465_ (Ljava/lang/String;)[I net/minecraft/nbt/CompoundTag/getIntArray (Ljava/lang/String;)[I +MD: net/minecraft/nbt/CompoundTag/m_128467_ (Ljava/lang/String;)[J net/minecraft/nbt/CompoundTag/getLongArray (Ljava/lang/String;)[J +MD: net/minecraft/nbt/CompoundTag/m_128469_ (Ljava/lang/String;)Lnet/minecraft/nbt/CompoundTag; net/minecraft/nbt/CompoundTag/getCompound (Ljava/lang/String;)Lnet/minecraft/nbt/CompoundTag; +MD: net/minecraft/nbt/CompoundTag/m_128471_ (Ljava/lang/String;)Z net/minecraft/nbt/CompoundTag/getBoolean (Ljava/lang/String;)Z +MD: net/minecraft/nbt/CompoundTag/m_128473_ (Ljava/lang/String;)V net/minecraft/nbt/CompoundTag/remove (Ljava/lang/String;)V +MD: net/minecraft/nbt/CompoundTag/m_128480_ (Ljava/lang/String;)Ljava/lang/String; net/minecraft/nbt/CompoundTag/lambda$createReport$3 (Ljava/lang/String;)Ljava/lang/String; +MD: net/minecraft/nbt/CompoundTag/m_142327_ (Lnet/minecraft/nbt/TagVisitor;)V net/minecraft/nbt/CompoundTag/accept (Lnet/minecraft/nbt/TagVisitor;)V +MD: net/minecraft/nbt/CompoundTag/m_177853_ (Ljava/lang/String;Ljava/util/List;)V net/minecraft/nbt/CompoundTag/putByteArray (Ljava/lang/String;Ljava/util/List;)V +MD: net/minecraft/nbt/CompoundTag/m_196533_ (Lnet/minecraft/nbt/StreamTagVisitor;)Lnet/minecraft/nbt/StreamTagVisitor$ValueResult; net/minecraft/nbt/CompoundTag/accept (Lnet/minecraft/nbt/StreamTagVisitor;)Lnet/minecraft/nbt/StreamTagVisitor$ValueResult; +MD: net/minecraft/nbt/CompoundTag/m_263179_ ()I net/minecraft/nbt/CompoundTag/sizeInBytes ()I +MD: net/minecraft/nbt/CompoundTag/m_274047_ (Lnet/minecraft/nbt/Tag;)Ljava/lang/String; net/minecraft/nbt/CompoundTag/lambda$static$0 (Lnet/minecraft/nbt/Tag;)Ljava/lang/String; +MD: net/minecraft/nbt/CompoundTag/m_274048_ (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/DataResult; net/minecraft/nbt/CompoundTag/lambda$static$1 (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/DataResult; +MD: net/minecraft/nbt/CompoundTag/m_6426_ ()Lnet/minecraft/nbt/Tag; net/minecraft/nbt/CompoundTag/copy ()Lnet/minecraft/nbt/Tag; +MD: net/minecraft/nbt/CompoundTag/m_6426_ ()Lnet/minecraft/nbt/CompoundTag; net/minecraft/nbt/CompoundTag/copy ()Lnet/minecraft/nbt/CompoundTag; +MD: net/minecraft/nbt/CompoundTag/m_6434_ (Ljava/io/DataOutput;)V net/minecraft/nbt/CompoundTag/write (Ljava/io/DataOutput;)V +MD: net/minecraft/nbt/CompoundTag/m_6458_ ()Lnet/minecraft/nbt/TagType; net/minecraft/nbt/CompoundTag/getType ()Lnet/minecraft/nbt/TagType; +MD: net/minecraft/nbt/CompoundTag/m_7060_ ()B net/minecraft/nbt/CompoundTag/getId ()B +MD: net/minecraft/nbt/CompoundTag/toString ()Ljava/lang/String; net/minecraft/nbt/CompoundTag/toString ()Ljava/lang/String; +MD: net/minecraft/nbt/CompoundTag$1/ ()V net/minecraft/nbt/CompoundTag$1/ ()V +MD: net/minecraft/nbt/CompoundTag$1/m_196159_ (Ljava/io/DataInput;)V net/minecraft/nbt/CompoundTag$1/skip (Ljava/io/DataInput;)V +MD: net/minecraft/nbt/CompoundTag$1/m_196511_ (Ljava/io/DataInput;Lnet/minecraft/nbt/StreamTagVisitor;)Lnet/minecraft/nbt/StreamTagVisitor$ValueResult; net/minecraft/nbt/CompoundTag$1/parse (Ljava/io/DataInput;Lnet/minecraft/nbt/StreamTagVisitor;)Lnet/minecraft/nbt/StreamTagVisitor$ValueResult; +MD: net/minecraft/nbt/CompoundTag$1/m_5986_ ()Ljava/lang/String; net/minecraft/nbt/CompoundTag$1/getPrettyName ()Ljava/lang/String; +MD: net/minecraft/nbt/CompoundTag$1/m_5987_ ()Ljava/lang/String; net/minecraft/nbt/CompoundTag$1/getName ()Ljava/lang/String; +MD: net/minecraft/nbt/CompoundTag$1/m_7300_ (Ljava/io/DataInput;ILnet/minecraft/nbt/NbtAccounter;)Lnet/minecraft/nbt/Tag; net/minecraft/nbt/CompoundTag$1/load (Ljava/io/DataInput;ILnet/minecraft/nbt/NbtAccounter;)Lnet/minecraft/nbt/Tag; +MD: net/minecraft/nbt/CompoundTag$1/m_7300_ (Ljava/io/DataInput;ILnet/minecraft/nbt/NbtAccounter;)Lnet/minecraft/nbt/CompoundTag; net/minecraft/nbt/CompoundTag$1/load (Ljava/io/DataInput;ILnet/minecraft/nbt/NbtAccounter;)Lnet/minecraft/nbt/CompoundTag; +MD: net/minecraft/nbt/CompoundTag$2/ ()V net/minecraft/nbt/CompoundTag$2/ ()V +MD: net/minecraft/nbt/DoubleTag/ ()V net/minecraft/nbt/DoubleTag/ ()V +MD: net/minecraft/nbt/DoubleTag/ (D)V net/minecraft/nbt/DoubleTag/ (D)V +MD: net/minecraft/nbt/DoubleTag/equals (Ljava/lang/Object;)Z net/minecraft/nbt/DoubleTag/equals (Ljava/lang/Object;)Z +MD: net/minecraft/nbt/DoubleTag/hashCode ()I net/minecraft/nbt/DoubleTag/hashCode ()I +MD: net/minecraft/nbt/DoubleTag/m_128500_ (D)Lnet/minecraft/nbt/DoubleTag; net/minecraft/nbt/DoubleTag/valueOf (D)Lnet/minecraft/nbt/DoubleTag; +MD: net/minecraft/nbt/DoubleTag/m_142327_ (Lnet/minecraft/nbt/TagVisitor;)V net/minecraft/nbt/DoubleTag/accept (Lnet/minecraft/nbt/TagVisitor;)V +MD: net/minecraft/nbt/DoubleTag/m_196533_ (Lnet/minecraft/nbt/StreamTagVisitor;)Lnet/minecraft/nbt/StreamTagVisitor$ValueResult; net/minecraft/nbt/DoubleTag/accept (Lnet/minecraft/nbt/StreamTagVisitor;)Lnet/minecraft/nbt/StreamTagVisitor$ValueResult; +MD: net/minecraft/nbt/DoubleTag/m_263179_ ()I net/minecraft/nbt/DoubleTag/sizeInBytes ()I +MD: net/minecraft/nbt/DoubleTag/m_6426_ ()Lnet/minecraft/nbt/DoubleTag; net/minecraft/nbt/DoubleTag/copy ()Lnet/minecraft/nbt/DoubleTag; +MD: net/minecraft/nbt/DoubleTag/m_6426_ ()Lnet/minecraft/nbt/Tag; net/minecraft/nbt/DoubleTag/copy ()Lnet/minecraft/nbt/Tag; +MD: net/minecraft/nbt/DoubleTag/m_6434_ (Ljava/io/DataOutput;)V net/minecraft/nbt/DoubleTag/write (Ljava/io/DataOutput;)V +MD: net/minecraft/nbt/DoubleTag/m_6458_ ()Lnet/minecraft/nbt/TagType; net/minecraft/nbt/DoubleTag/getType ()Lnet/minecraft/nbt/TagType; +MD: net/minecraft/nbt/DoubleTag/m_7046_ ()J net/minecraft/nbt/DoubleTag/getAsLong ()J +MD: net/minecraft/nbt/DoubleTag/m_7047_ ()I net/minecraft/nbt/DoubleTag/getAsInt ()I +MD: net/minecraft/nbt/DoubleTag/m_7053_ ()S net/minecraft/nbt/DoubleTag/getAsShort ()S +MD: net/minecraft/nbt/DoubleTag/m_7057_ ()F net/minecraft/nbt/DoubleTag/getAsFloat ()F +MD: net/minecraft/nbt/DoubleTag/m_7060_ ()B net/minecraft/nbt/DoubleTag/getId ()B +MD: net/minecraft/nbt/DoubleTag/m_7061_ ()D net/minecraft/nbt/DoubleTag/getAsDouble ()D +MD: net/minecraft/nbt/DoubleTag/m_7063_ ()B net/minecraft/nbt/DoubleTag/getAsByte ()B +MD: net/minecraft/nbt/DoubleTag/m_8103_ ()Ljava/lang/Number; net/minecraft/nbt/DoubleTag/getAsNumber ()Ljava/lang/Number; +MD: net/minecraft/nbt/DoubleTag$1/ ()V net/minecraft/nbt/DoubleTag$1/ ()V +MD: net/minecraft/nbt/DoubleTag$1/m_196292_ ()I net/minecraft/nbt/DoubleTag$1/size ()I +MD: net/minecraft/nbt/DoubleTag$1/m_196511_ (Ljava/io/DataInput;Lnet/minecraft/nbt/StreamTagVisitor;)Lnet/minecraft/nbt/StreamTagVisitor$ValueResult; net/minecraft/nbt/DoubleTag$1/parse (Ljava/io/DataInput;Lnet/minecraft/nbt/StreamTagVisitor;)Lnet/minecraft/nbt/StreamTagVisitor$ValueResult; +MD: net/minecraft/nbt/DoubleTag$1/m_5986_ ()Ljava/lang/String; net/minecraft/nbt/DoubleTag$1/getPrettyName ()Ljava/lang/String; +MD: net/minecraft/nbt/DoubleTag$1/m_5987_ ()Ljava/lang/String; net/minecraft/nbt/DoubleTag$1/getName ()Ljava/lang/String; +MD: net/minecraft/nbt/DoubleTag$1/m_7064_ ()Z net/minecraft/nbt/DoubleTag$1/isValue ()Z +MD: net/minecraft/nbt/DoubleTag$1/m_7300_ (Ljava/io/DataInput;ILnet/minecraft/nbt/NbtAccounter;)Lnet/minecraft/nbt/Tag; net/minecraft/nbt/DoubleTag$1/load (Ljava/io/DataInput;ILnet/minecraft/nbt/NbtAccounter;)Lnet/minecraft/nbt/Tag; +MD: net/minecraft/nbt/DoubleTag$1/m_7300_ (Ljava/io/DataInput;ILnet/minecraft/nbt/NbtAccounter;)Lnet/minecraft/nbt/DoubleTag; net/minecraft/nbt/DoubleTag$1/load (Ljava/io/DataInput;ILnet/minecraft/nbt/NbtAccounter;)Lnet/minecraft/nbt/DoubleTag; +MD: net/minecraft/nbt/EndTag/ ()V net/minecraft/nbt/EndTag/ ()V +MD: net/minecraft/nbt/EndTag/ ()V net/minecraft/nbt/EndTag/ ()V +MD: net/minecraft/nbt/EndTag/m_142327_ (Lnet/minecraft/nbt/TagVisitor;)V net/minecraft/nbt/EndTag/accept (Lnet/minecraft/nbt/TagVisitor;)V +MD: net/minecraft/nbt/EndTag/m_196533_ (Lnet/minecraft/nbt/StreamTagVisitor;)Lnet/minecraft/nbt/StreamTagVisitor$ValueResult; net/minecraft/nbt/EndTag/accept (Lnet/minecraft/nbt/StreamTagVisitor;)Lnet/minecraft/nbt/StreamTagVisitor$ValueResult; +MD: net/minecraft/nbt/EndTag/m_263179_ ()I net/minecraft/nbt/EndTag/sizeInBytes ()I +MD: net/minecraft/nbt/EndTag/m_6426_ ()Lnet/minecraft/nbt/EndTag; net/minecraft/nbt/EndTag/copy ()Lnet/minecraft/nbt/EndTag; +MD: net/minecraft/nbt/EndTag/m_6426_ ()Lnet/minecraft/nbt/Tag; net/minecraft/nbt/EndTag/copy ()Lnet/minecraft/nbt/Tag; +MD: net/minecraft/nbt/EndTag/m_6434_ (Ljava/io/DataOutput;)V net/minecraft/nbt/EndTag/write (Ljava/io/DataOutput;)V +MD: net/minecraft/nbt/EndTag/m_6458_ ()Lnet/minecraft/nbt/TagType; net/minecraft/nbt/EndTag/getType ()Lnet/minecraft/nbt/TagType; +MD: net/minecraft/nbt/EndTag/m_7060_ ()B net/minecraft/nbt/EndTag/getId ()B +MD: net/minecraft/nbt/EndTag/toString ()Ljava/lang/String; net/minecraft/nbt/EndTag/toString ()Ljava/lang/String; +MD: net/minecraft/nbt/EndTag$1/ ()V net/minecraft/nbt/EndTag$1/ ()V +MD: net/minecraft/nbt/EndTag$1/m_196159_ (Ljava/io/DataInput;)V net/minecraft/nbt/EndTag$1/skip (Ljava/io/DataInput;)V +MD: net/minecraft/nbt/EndTag$1/m_196189_ (Ljava/io/DataInput;I)V net/minecraft/nbt/EndTag$1/skip (Ljava/io/DataInput;I)V +MD: net/minecraft/nbt/EndTag$1/m_196511_ (Ljava/io/DataInput;Lnet/minecraft/nbt/StreamTagVisitor;)Lnet/minecraft/nbt/StreamTagVisitor$ValueResult; net/minecraft/nbt/EndTag$1/parse (Ljava/io/DataInput;Lnet/minecraft/nbt/StreamTagVisitor;)Lnet/minecraft/nbt/StreamTagVisitor$ValueResult; +MD: net/minecraft/nbt/EndTag$1/m_5986_ ()Ljava/lang/String; net/minecraft/nbt/EndTag$1/getPrettyName ()Ljava/lang/String; +MD: net/minecraft/nbt/EndTag$1/m_5987_ ()Ljava/lang/String; net/minecraft/nbt/EndTag$1/getName ()Ljava/lang/String; +MD: net/minecraft/nbt/EndTag$1/m_7064_ ()Z net/minecraft/nbt/EndTag$1/isValue ()Z +MD: net/minecraft/nbt/EndTag$1/m_7300_ (Ljava/io/DataInput;ILnet/minecraft/nbt/NbtAccounter;)Lnet/minecraft/nbt/Tag; net/minecraft/nbt/EndTag$1/load (Ljava/io/DataInput;ILnet/minecraft/nbt/NbtAccounter;)Lnet/minecraft/nbt/Tag; +MD: net/minecraft/nbt/EndTag$1/m_7300_ (Ljava/io/DataInput;ILnet/minecraft/nbt/NbtAccounter;)Lnet/minecraft/nbt/EndTag; net/minecraft/nbt/EndTag$1/load (Ljava/io/DataInput;ILnet/minecraft/nbt/NbtAccounter;)Lnet/minecraft/nbt/EndTag; +MD: net/minecraft/nbt/FloatTag/ ()V net/minecraft/nbt/FloatTag/ ()V +MD: net/minecraft/nbt/FloatTag/ (F)V net/minecraft/nbt/FloatTag/ (F)V +MD: net/minecraft/nbt/FloatTag/equals (Ljava/lang/Object;)Z net/minecraft/nbt/FloatTag/equals (Ljava/lang/Object;)Z +MD: net/minecraft/nbt/FloatTag/hashCode ()I net/minecraft/nbt/FloatTag/hashCode ()I +MD: net/minecraft/nbt/FloatTag/m_128566_ (F)Lnet/minecraft/nbt/FloatTag; net/minecraft/nbt/FloatTag/valueOf (F)Lnet/minecraft/nbt/FloatTag; +MD: net/minecraft/nbt/FloatTag/m_142327_ (Lnet/minecraft/nbt/TagVisitor;)V net/minecraft/nbt/FloatTag/accept (Lnet/minecraft/nbt/TagVisitor;)V +MD: net/minecraft/nbt/FloatTag/m_196533_ (Lnet/minecraft/nbt/StreamTagVisitor;)Lnet/minecraft/nbt/StreamTagVisitor$ValueResult; net/minecraft/nbt/FloatTag/accept (Lnet/minecraft/nbt/StreamTagVisitor;)Lnet/minecraft/nbt/StreamTagVisitor$ValueResult; +MD: net/minecraft/nbt/FloatTag/m_263179_ ()I net/minecraft/nbt/FloatTag/sizeInBytes ()I +MD: net/minecraft/nbt/FloatTag/m_6426_ ()Lnet/minecraft/nbt/Tag; net/minecraft/nbt/FloatTag/copy ()Lnet/minecraft/nbt/Tag; +MD: net/minecraft/nbt/FloatTag/m_6426_ ()Lnet/minecraft/nbt/FloatTag; net/minecraft/nbt/FloatTag/copy ()Lnet/minecraft/nbt/FloatTag; +MD: net/minecraft/nbt/FloatTag/m_6434_ (Ljava/io/DataOutput;)V net/minecraft/nbt/FloatTag/write (Ljava/io/DataOutput;)V +MD: net/minecraft/nbt/FloatTag/m_6458_ ()Lnet/minecraft/nbt/TagType; net/minecraft/nbt/FloatTag/getType ()Lnet/minecraft/nbt/TagType; +MD: net/minecraft/nbt/FloatTag/m_7046_ ()J net/minecraft/nbt/FloatTag/getAsLong ()J +MD: net/minecraft/nbt/FloatTag/m_7047_ ()I net/minecraft/nbt/FloatTag/getAsInt ()I +MD: net/minecraft/nbt/FloatTag/m_7053_ ()S net/minecraft/nbt/FloatTag/getAsShort ()S +MD: net/minecraft/nbt/FloatTag/m_7057_ ()F net/minecraft/nbt/FloatTag/getAsFloat ()F +MD: net/minecraft/nbt/FloatTag/m_7060_ ()B net/minecraft/nbt/FloatTag/getId ()B +MD: net/minecraft/nbt/FloatTag/m_7061_ ()D net/minecraft/nbt/FloatTag/getAsDouble ()D +MD: net/minecraft/nbt/FloatTag/m_7063_ ()B net/minecraft/nbt/FloatTag/getAsByte ()B +MD: net/minecraft/nbt/FloatTag/m_8103_ ()Ljava/lang/Number; net/minecraft/nbt/FloatTag/getAsNumber ()Ljava/lang/Number; +MD: net/minecraft/nbt/FloatTag$1/ ()V net/minecraft/nbt/FloatTag$1/ ()V +MD: net/minecraft/nbt/FloatTag$1/m_196292_ ()I net/minecraft/nbt/FloatTag$1/size ()I +MD: net/minecraft/nbt/FloatTag$1/m_196511_ (Ljava/io/DataInput;Lnet/minecraft/nbt/StreamTagVisitor;)Lnet/minecraft/nbt/StreamTagVisitor$ValueResult; net/minecraft/nbt/FloatTag$1/parse (Ljava/io/DataInput;Lnet/minecraft/nbt/StreamTagVisitor;)Lnet/minecraft/nbt/StreamTagVisitor$ValueResult; +MD: net/minecraft/nbt/FloatTag$1/m_5986_ ()Ljava/lang/String; net/minecraft/nbt/FloatTag$1/getPrettyName ()Ljava/lang/String; +MD: net/minecraft/nbt/FloatTag$1/m_5987_ ()Ljava/lang/String; net/minecraft/nbt/FloatTag$1/getName ()Ljava/lang/String; +MD: net/minecraft/nbt/FloatTag$1/m_7064_ ()Z net/minecraft/nbt/FloatTag$1/isValue ()Z +MD: net/minecraft/nbt/FloatTag$1/m_7300_ (Ljava/io/DataInput;ILnet/minecraft/nbt/NbtAccounter;)Lnet/minecraft/nbt/Tag; net/minecraft/nbt/FloatTag$1/load (Ljava/io/DataInput;ILnet/minecraft/nbt/NbtAccounter;)Lnet/minecraft/nbt/Tag; +MD: net/minecraft/nbt/FloatTag$1/m_7300_ (Ljava/io/DataInput;ILnet/minecraft/nbt/NbtAccounter;)Lnet/minecraft/nbt/FloatTag; net/minecraft/nbt/FloatTag$1/load (Ljava/io/DataInput;ILnet/minecraft/nbt/NbtAccounter;)Lnet/minecraft/nbt/FloatTag; +MD: net/minecraft/nbt/IntArrayTag/ ()V net/minecraft/nbt/IntArrayTag/ ()V +MD: net/minecraft/nbt/IntArrayTag/ ([I)V net/minecraft/nbt/IntArrayTag/ ([I)V +MD: net/minecraft/nbt/IntArrayTag/ (Ljava/util/List;)V net/minecraft/nbt/IntArrayTag/ (Ljava/util/List;)V +MD: net/minecraft/nbt/IntArrayTag/add (ILnet/minecraft/nbt/IntTag;)V net/minecraft/nbt/IntArrayTag/add (ILnet/minecraft/nbt/IntTag;)V +MD: net/minecraft/nbt/IntArrayTag/add (ILjava/lang/Object;)V net/minecraft/nbt/IntArrayTag/add (ILjava/lang/Object;)V +MD: net/minecraft/nbt/IntArrayTag/add (ILnet/minecraft/nbt/Tag;)V net/minecraft/nbt/IntArrayTag/add (ILnet/minecraft/nbt/Tag;)V +MD: net/minecraft/nbt/IntArrayTag/clear ()V net/minecraft/nbt/IntArrayTag/clear ()V +MD: net/minecraft/nbt/IntArrayTag/equals (Ljava/lang/Object;)Z net/minecraft/nbt/IntArrayTag/equals (Ljava/lang/Object;)Z +MD: net/minecraft/nbt/IntArrayTag/get (I)Lnet/minecraft/nbt/IntTag; net/minecraft/nbt/IntArrayTag/get (I)Lnet/minecraft/nbt/IntTag; +MD: net/minecraft/nbt/IntArrayTag/get (I)Ljava/lang/Object; net/minecraft/nbt/IntArrayTag/get (I)Ljava/lang/Object; +MD: net/minecraft/nbt/IntArrayTag/hashCode ()I net/minecraft/nbt/IntArrayTag/hashCode ()I +MD: net/minecraft/nbt/IntArrayTag/m_128620_ (Ljava/util/List;)[I net/minecraft/nbt/IntArrayTag/toArray (Ljava/util/List;)[I +MD: net/minecraft/nbt/IntArrayTag/m_128648_ ()[I net/minecraft/nbt/IntArrayTag/getAsIntArray ()[I +MD: net/minecraft/nbt/IntArrayTag/m_142327_ (Lnet/minecraft/nbt/TagVisitor;)V net/minecraft/nbt/IntArrayTag/accept (Lnet/minecraft/nbt/TagVisitor;)V +MD: net/minecraft/nbt/IntArrayTag/m_196533_ (Lnet/minecraft/nbt/StreamTagVisitor;)Lnet/minecraft/nbt/StreamTagVisitor$ValueResult; net/minecraft/nbt/IntArrayTag/accept (Lnet/minecraft/nbt/StreamTagVisitor;)Lnet/minecraft/nbt/StreamTagVisitor$ValueResult; +MD: net/minecraft/nbt/IntArrayTag/m_263179_ ()I net/minecraft/nbt/IntArrayTag/sizeInBytes ()I +MD: net/minecraft/nbt/IntArrayTag/m_6426_ ()Lnet/minecraft/nbt/Tag; net/minecraft/nbt/IntArrayTag/copy ()Lnet/minecraft/nbt/Tag; +MD: net/minecraft/nbt/IntArrayTag/m_6426_ ()Lnet/minecraft/nbt/IntArrayTag; net/minecraft/nbt/IntArrayTag/copy ()Lnet/minecraft/nbt/IntArrayTag; +MD: net/minecraft/nbt/IntArrayTag/m_6434_ (Ljava/io/DataOutput;)V net/minecraft/nbt/IntArrayTag/write (Ljava/io/DataOutput;)V +MD: net/minecraft/nbt/IntArrayTag/m_6458_ ()Lnet/minecraft/nbt/TagType; net/minecraft/nbt/IntArrayTag/getType ()Lnet/minecraft/nbt/TagType; +MD: net/minecraft/nbt/IntArrayTag/m_7060_ ()B net/minecraft/nbt/IntArrayTag/getId ()B +MD: net/minecraft/nbt/IntArrayTag/m_7264_ ()B net/minecraft/nbt/IntArrayTag/getElementType ()B +MD: net/minecraft/nbt/IntArrayTag/m_7614_ (ILnet/minecraft/nbt/Tag;)Z net/minecraft/nbt/IntArrayTag/addTag (ILnet/minecraft/nbt/Tag;)Z +MD: net/minecraft/nbt/IntArrayTag/m_7615_ (ILnet/minecraft/nbt/Tag;)Z net/minecraft/nbt/IntArrayTag/setTag (ILnet/minecraft/nbt/Tag;)Z +MD: net/minecraft/nbt/IntArrayTag/remove (I)Ljava/lang/Object; net/minecraft/nbt/IntArrayTag/remove (I)Ljava/lang/Object; +MD: net/minecraft/nbt/IntArrayTag/remove (I)Lnet/minecraft/nbt/IntTag; net/minecraft/nbt/IntArrayTag/remove (I)Lnet/minecraft/nbt/IntTag; +MD: net/minecraft/nbt/IntArrayTag/remove (I)Lnet/minecraft/nbt/Tag; net/minecraft/nbt/IntArrayTag/remove (I)Lnet/minecraft/nbt/Tag; +MD: net/minecraft/nbt/IntArrayTag/set (ILjava/lang/Object;)Ljava/lang/Object; net/minecraft/nbt/IntArrayTag/set (ILjava/lang/Object;)Ljava/lang/Object; +MD: net/minecraft/nbt/IntArrayTag/set (ILnet/minecraft/nbt/Tag;)Lnet/minecraft/nbt/Tag; net/minecraft/nbt/IntArrayTag/set (ILnet/minecraft/nbt/Tag;)Lnet/minecraft/nbt/Tag; +MD: net/minecraft/nbt/IntArrayTag/set (ILnet/minecraft/nbt/IntTag;)Lnet/minecraft/nbt/IntTag; net/minecraft/nbt/IntArrayTag/set (ILnet/minecraft/nbt/IntTag;)Lnet/minecraft/nbt/IntTag; +MD: net/minecraft/nbt/IntArrayTag/size ()I net/minecraft/nbt/IntArrayTag/size ()I +MD: net/minecraft/nbt/IntArrayTag/toString ()Ljava/lang/String; net/minecraft/nbt/IntArrayTag/toString ()Ljava/lang/String; +MD: net/minecraft/nbt/IntArrayTag$1/ ()V net/minecraft/nbt/IntArrayTag$1/ ()V +MD: net/minecraft/nbt/IntArrayTag$1/m_196159_ (Ljava/io/DataInput;)V net/minecraft/nbt/IntArrayTag$1/skip (Ljava/io/DataInput;)V +MD: net/minecraft/nbt/IntArrayTag$1/m_196511_ (Ljava/io/DataInput;Lnet/minecraft/nbt/StreamTagVisitor;)Lnet/minecraft/nbt/StreamTagVisitor$ValueResult; net/minecraft/nbt/IntArrayTag$1/parse (Ljava/io/DataInput;Lnet/minecraft/nbt/StreamTagVisitor;)Lnet/minecraft/nbt/StreamTagVisitor$ValueResult; +MD: net/minecraft/nbt/IntArrayTag$1/m_5986_ ()Ljava/lang/String; net/minecraft/nbt/IntArrayTag$1/getPrettyName ()Ljava/lang/String; +MD: net/minecraft/nbt/IntArrayTag$1/m_5987_ ()Ljava/lang/String; net/minecraft/nbt/IntArrayTag$1/getName ()Ljava/lang/String; +MD: net/minecraft/nbt/IntArrayTag$1/m_7300_ (Ljava/io/DataInput;ILnet/minecraft/nbt/NbtAccounter;)Lnet/minecraft/nbt/Tag; net/minecraft/nbt/IntArrayTag$1/load (Ljava/io/DataInput;ILnet/minecraft/nbt/NbtAccounter;)Lnet/minecraft/nbt/Tag; +MD: net/minecraft/nbt/IntArrayTag$1/m_7300_ (Ljava/io/DataInput;ILnet/minecraft/nbt/NbtAccounter;)Lnet/minecraft/nbt/IntArrayTag; net/minecraft/nbt/IntArrayTag$1/load (Ljava/io/DataInput;ILnet/minecraft/nbt/NbtAccounter;)Lnet/minecraft/nbt/IntArrayTag; +MD: net/minecraft/nbt/IntTag/ ()V net/minecraft/nbt/IntTag/ ()V +MD: net/minecraft/nbt/IntTag/ (I)V net/minecraft/nbt/IntTag/ (I)V +MD: net/minecraft/nbt/IntTag/equals (Ljava/lang/Object;)Z net/minecraft/nbt/IntTag/equals (Ljava/lang/Object;)Z +MD: net/minecraft/nbt/IntTag/hashCode ()I net/minecraft/nbt/IntTag/hashCode ()I +MD: net/minecraft/nbt/IntTag/m_128679_ (I)Lnet/minecraft/nbt/IntTag; net/minecraft/nbt/IntTag/valueOf (I)Lnet/minecraft/nbt/IntTag; +MD: net/minecraft/nbt/IntTag/m_142327_ (Lnet/minecraft/nbt/TagVisitor;)V net/minecraft/nbt/IntTag/accept (Lnet/minecraft/nbt/TagVisitor;)V +MD: net/minecraft/nbt/IntTag/m_196533_ (Lnet/minecraft/nbt/StreamTagVisitor;)Lnet/minecraft/nbt/StreamTagVisitor$ValueResult; net/minecraft/nbt/IntTag/accept (Lnet/minecraft/nbt/StreamTagVisitor;)Lnet/minecraft/nbt/StreamTagVisitor$ValueResult; +MD: net/minecraft/nbt/IntTag/m_263179_ ()I net/minecraft/nbt/IntTag/sizeInBytes ()I +MD: net/minecraft/nbt/IntTag/m_6426_ ()Lnet/minecraft/nbt/IntTag; net/minecraft/nbt/IntTag/copy ()Lnet/minecraft/nbt/IntTag; +MD: net/minecraft/nbt/IntTag/m_6426_ ()Lnet/minecraft/nbt/Tag; net/minecraft/nbt/IntTag/copy ()Lnet/minecraft/nbt/Tag; +MD: net/minecraft/nbt/IntTag/m_6434_ (Ljava/io/DataOutput;)V net/minecraft/nbt/IntTag/write (Ljava/io/DataOutput;)V +MD: net/minecraft/nbt/IntTag/m_6458_ ()Lnet/minecraft/nbt/TagType; net/minecraft/nbt/IntTag/getType ()Lnet/minecraft/nbt/TagType; +MD: net/minecraft/nbt/IntTag/m_7046_ ()J net/minecraft/nbt/IntTag/getAsLong ()J +MD: net/minecraft/nbt/IntTag/m_7047_ ()I net/minecraft/nbt/IntTag/getAsInt ()I +MD: net/minecraft/nbt/IntTag/m_7053_ ()S net/minecraft/nbt/IntTag/getAsShort ()S +MD: net/minecraft/nbt/IntTag/m_7057_ ()F net/minecraft/nbt/IntTag/getAsFloat ()F +MD: net/minecraft/nbt/IntTag/m_7060_ ()B net/minecraft/nbt/IntTag/getId ()B +MD: net/minecraft/nbt/IntTag/m_7061_ ()D net/minecraft/nbt/IntTag/getAsDouble ()D +MD: net/minecraft/nbt/IntTag/m_7063_ ()B net/minecraft/nbt/IntTag/getAsByte ()B +MD: net/minecraft/nbt/IntTag/m_8103_ ()Ljava/lang/Number; net/minecraft/nbt/IntTag/getAsNumber ()Ljava/lang/Number; +MD: net/minecraft/nbt/IntTag$1/ ()V net/minecraft/nbt/IntTag$1/ ()V +MD: net/minecraft/nbt/IntTag$1/m_196292_ ()I net/minecraft/nbt/IntTag$1/size ()I +MD: net/minecraft/nbt/IntTag$1/m_196511_ (Ljava/io/DataInput;Lnet/minecraft/nbt/StreamTagVisitor;)Lnet/minecraft/nbt/StreamTagVisitor$ValueResult; net/minecraft/nbt/IntTag$1/parse (Ljava/io/DataInput;Lnet/minecraft/nbt/StreamTagVisitor;)Lnet/minecraft/nbt/StreamTagVisitor$ValueResult; +MD: net/minecraft/nbt/IntTag$1/m_5986_ ()Ljava/lang/String; net/minecraft/nbt/IntTag$1/getPrettyName ()Ljava/lang/String; +MD: net/minecraft/nbt/IntTag$1/m_5987_ ()Ljava/lang/String; net/minecraft/nbt/IntTag$1/getName ()Ljava/lang/String; +MD: net/minecraft/nbt/IntTag$1/m_7064_ ()Z net/minecraft/nbt/IntTag$1/isValue ()Z +MD: net/minecraft/nbt/IntTag$1/m_7300_ (Ljava/io/DataInput;ILnet/minecraft/nbt/NbtAccounter;)Lnet/minecraft/nbt/IntTag; net/minecraft/nbt/IntTag$1/load (Ljava/io/DataInput;ILnet/minecraft/nbt/NbtAccounter;)Lnet/minecraft/nbt/IntTag; +MD: net/minecraft/nbt/IntTag$1/m_7300_ (Ljava/io/DataInput;ILnet/minecraft/nbt/NbtAccounter;)Lnet/minecraft/nbt/Tag; net/minecraft/nbt/IntTag$1/load (Ljava/io/DataInput;ILnet/minecraft/nbt/NbtAccounter;)Lnet/minecraft/nbt/Tag; +MD: net/minecraft/nbt/IntTag$Cache/ ()V net/minecraft/nbt/IntTag$Cache/ ()V +MD: net/minecraft/nbt/IntTag$Cache/ ()V net/minecraft/nbt/IntTag$Cache/ ()V +MD: net/minecraft/nbt/ListTag/ ()V net/minecraft/nbt/ListTag/ ()V +MD: net/minecraft/nbt/ListTag/ (Ljava/util/List;B)V net/minecraft/nbt/ListTag/ (Ljava/util/List;B)V +MD: net/minecraft/nbt/ListTag/ ()V net/minecraft/nbt/ListTag/ ()V +MD: net/minecraft/nbt/ListTag/add (ILjava/lang/Object;)V net/minecraft/nbt/ListTag/add (ILjava/lang/Object;)V +MD: net/minecraft/nbt/ListTag/add (ILnet/minecraft/nbt/Tag;)V net/minecraft/nbt/ListTag/add (ILnet/minecraft/nbt/Tag;)V +MD: net/minecraft/nbt/ListTag/clear ()V net/minecraft/nbt/ListTag/clear ()V +MD: net/minecraft/nbt/ListTag/equals (Ljava/lang/Object;)Z net/minecraft/nbt/ListTag/equals (Ljava/lang/Object;)Z +MD: net/minecraft/nbt/ListTag/get (I)Lnet/minecraft/nbt/Tag; net/minecraft/nbt/ListTag/get (I)Lnet/minecraft/nbt/Tag; +MD: net/minecraft/nbt/ListTag/get (I)Ljava/lang/Object; net/minecraft/nbt/ListTag/get (I)Ljava/lang/Object; +MD: net/minecraft/nbt/ListTag/hashCode ()I net/minecraft/nbt/ListTag/hashCode ()I +MD: net/minecraft/nbt/ListTag/isEmpty ()Z net/minecraft/nbt/ListTag/isEmpty ()Z +MD: net/minecraft/nbt/ListTag/m_128728_ (I)Lnet/minecraft/nbt/CompoundTag; net/minecraft/nbt/ListTag/getCompound (I)Lnet/minecraft/nbt/CompoundTag; +MD: net/minecraft/nbt/ListTag/m_128738_ (Lnet/minecraft/nbt/Tag;)Z net/minecraft/nbt/ListTag/updateType (Lnet/minecraft/nbt/Tag;)Z +MD: net/minecraft/nbt/ListTag/m_128744_ (I)Lnet/minecraft/nbt/ListTag; net/minecraft/nbt/ListTag/getList (I)Lnet/minecraft/nbt/ListTag; +MD: net/minecraft/nbt/ListTag/m_128757_ (I)S net/minecraft/nbt/ListTag/getShort (I)S +MD: net/minecraft/nbt/ListTag/m_128763_ (I)I net/minecraft/nbt/ListTag/getInt (I)I +MD: net/minecraft/nbt/ListTag/m_128767_ (I)[I net/minecraft/nbt/ListTag/getIntArray (I)[I +MD: net/minecraft/nbt/ListTag/m_128769_ ()V net/minecraft/nbt/ListTag/updateTypeAfterRemove ()V +MD: net/minecraft/nbt/ListTag/m_128772_ (I)D net/minecraft/nbt/ListTag/getDouble (I)D +MD: net/minecraft/nbt/ListTag/m_128775_ (I)F net/minecraft/nbt/ListTag/getFloat (I)F +MD: net/minecraft/nbt/ListTag/m_128778_ (I)Ljava/lang/String; net/minecraft/nbt/ListTag/getString (I)Ljava/lang/String; +MD: net/minecraft/nbt/ListTag/m_142327_ (Lnet/minecraft/nbt/TagVisitor;)V net/minecraft/nbt/ListTag/accept (Lnet/minecraft/nbt/TagVisitor;)V +MD: net/minecraft/nbt/ListTag/m_177991_ (I)[J net/minecraft/nbt/ListTag/getLongArray (I)[J +MD: net/minecraft/nbt/ListTag/m_196533_ (Lnet/minecraft/nbt/StreamTagVisitor;)Lnet/minecraft/nbt/StreamTagVisitor$ValueResult; net/minecraft/nbt/ListTag/accept (Lnet/minecraft/nbt/StreamTagVisitor;)Lnet/minecraft/nbt/StreamTagVisitor$ValueResult; +MD: net/minecraft/nbt/ListTag/m_263179_ ()I net/minecraft/nbt/ListTag/sizeInBytes ()I +MD: net/minecraft/nbt/ListTag/m_6426_ ()Lnet/minecraft/nbt/ListTag; net/minecraft/nbt/ListTag/copy ()Lnet/minecraft/nbt/ListTag; +MD: net/minecraft/nbt/ListTag/m_6426_ ()Lnet/minecraft/nbt/Tag; net/minecraft/nbt/ListTag/copy ()Lnet/minecraft/nbt/Tag; +MD: net/minecraft/nbt/ListTag/m_6434_ (Ljava/io/DataOutput;)V net/minecraft/nbt/ListTag/write (Ljava/io/DataOutput;)V +MD: net/minecraft/nbt/ListTag/m_6458_ ()Lnet/minecraft/nbt/TagType; net/minecraft/nbt/ListTag/getType ()Lnet/minecraft/nbt/TagType; +MD: net/minecraft/nbt/ListTag/m_7060_ ()B net/minecraft/nbt/ListTag/getId ()B +MD: net/minecraft/nbt/ListTag/m_7264_ ()B net/minecraft/nbt/ListTag/getElementType ()B +MD: net/minecraft/nbt/ListTag/m_7614_ (ILnet/minecraft/nbt/Tag;)Z net/minecraft/nbt/ListTag/addTag (ILnet/minecraft/nbt/Tag;)Z +MD: net/minecraft/nbt/ListTag/m_7615_ (ILnet/minecraft/nbt/Tag;)Z net/minecraft/nbt/ListTag/setTag (ILnet/minecraft/nbt/Tag;)Z +MD: net/minecraft/nbt/ListTag/remove (I)Ljava/lang/Object; net/minecraft/nbt/ListTag/remove (I)Ljava/lang/Object; +MD: net/minecraft/nbt/ListTag/remove (I)Lnet/minecraft/nbt/Tag; net/minecraft/nbt/ListTag/remove (I)Lnet/minecraft/nbt/Tag; +MD: net/minecraft/nbt/ListTag/set (ILjava/lang/Object;)Ljava/lang/Object; net/minecraft/nbt/ListTag/set (ILjava/lang/Object;)Ljava/lang/Object; +MD: net/minecraft/nbt/ListTag/set (ILnet/minecraft/nbt/Tag;)Lnet/minecraft/nbt/Tag; net/minecraft/nbt/ListTag/set (ILnet/minecraft/nbt/Tag;)Lnet/minecraft/nbt/Tag; +MD: net/minecraft/nbt/ListTag/size ()I net/minecraft/nbt/ListTag/size ()I +MD: net/minecraft/nbt/ListTag/toString ()Ljava/lang/String; net/minecraft/nbt/ListTag/toString ()Ljava/lang/String; +MD: net/minecraft/nbt/ListTag$1/ ()V net/minecraft/nbt/ListTag$1/ ()V +MD: net/minecraft/nbt/ListTag$1/m_196159_ (Ljava/io/DataInput;)V net/minecraft/nbt/ListTag$1/skip (Ljava/io/DataInput;)V +MD: net/minecraft/nbt/ListTag$1/m_196511_ (Ljava/io/DataInput;Lnet/minecraft/nbt/StreamTagVisitor;)Lnet/minecraft/nbt/StreamTagVisitor$ValueResult; net/minecraft/nbt/ListTag$1/parse (Ljava/io/DataInput;Lnet/minecraft/nbt/StreamTagVisitor;)Lnet/minecraft/nbt/StreamTagVisitor$ValueResult; +MD: net/minecraft/nbt/ListTag$1/m_5986_ ()Ljava/lang/String; net/minecraft/nbt/ListTag$1/getPrettyName ()Ljava/lang/String; +MD: net/minecraft/nbt/ListTag$1/m_5987_ ()Ljava/lang/String; net/minecraft/nbt/ListTag$1/getName ()Ljava/lang/String; +MD: net/minecraft/nbt/ListTag$1/m_7300_ (Ljava/io/DataInput;ILnet/minecraft/nbt/NbtAccounter;)Lnet/minecraft/nbt/Tag; net/minecraft/nbt/ListTag$1/load (Ljava/io/DataInput;ILnet/minecraft/nbt/NbtAccounter;)Lnet/minecraft/nbt/Tag; +MD: net/minecraft/nbt/ListTag$1/m_7300_ (Ljava/io/DataInput;ILnet/minecraft/nbt/NbtAccounter;)Lnet/minecraft/nbt/ListTag; net/minecraft/nbt/ListTag$1/load (Ljava/io/DataInput;ILnet/minecraft/nbt/NbtAccounter;)Lnet/minecraft/nbt/ListTag; +MD: net/minecraft/nbt/ListTag$2/ ()V net/minecraft/nbt/ListTag$2/ ()V +MD: net/minecraft/nbt/LongArrayTag/ ()V net/minecraft/nbt/LongArrayTag/ ()V +MD: net/minecraft/nbt/LongArrayTag/ (Lit/unimi/dsi/fastutil/longs/LongSet;)V net/minecraft/nbt/LongArrayTag/ (Lit/unimi/dsi/fastutil/longs/LongSet;)V +MD: net/minecraft/nbt/LongArrayTag/ ([J)V net/minecraft/nbt/LongArrayTag/ ([J)V +MD: net/minecraft/nbt/LongArrayTag/ (Ljava/util/List;)V net/minecraft/nbt/LongArrayTag/ (Ljava/util/List;)V +MD: net/minecraft/nbt/LongArrayTag/add (ILjava/lang/Object;)V net/minecraft/nbt/LongArrayTag/add (ILjava/lang/Object;)V +MD: net/minecraft/nbt/LongArrayTag/add (ILnet/minecraft/nbt/LongTag;)V net/minecraft/nbt/LongArrayTag/add (ILnet/minecraft/nbt/LongTag;)V +MD: net/minecraft/nbt/LongArrayTag/add (ILnet/minecraft/nbt/Tag;)V net/minecraft/nbt/LongArrayTag/add (ILnet/minecraft/nbt/Tag;)V +MD: net/minecraft/nbt/LongArrayTag/clear ()V net/minecraft/nbt/LongArrayTag/clear ()V +MD: net/minecraft/nbt/LongArrayTag/equals (Ljava/lang/Object;)Z net/minecraft/nbt/LongArrayTag/equals (Ljava/lang/Object;)Z +MD: net/minecraft/nbt/LongArrayTag/get (I)Lnet/minecraft/nbt/LongTag; net/minecraft/nbt/LongArrayTag/get (I)Lnet/minecraft/nbt/LongTag; +MD: net/minecraft/nbt/LongArrayTag/get (I)Ljava/lang/Object; net/minecraft/nbt/LongArrayTag/get (I)Ljava/lang/Object; +MD: net/minecraft/nbt/LongArrayTag/hashCode ()I net/minecraft/nbt/LongArrayTag/hashCode ()I +MD: net/minecraft/nbt/LongArrayTag/m_128823_ (Ljava/util/List;)[J net/minecraft/nbt/LongArrayTag/toArray (Ljava/util/List;)[J +MD: net/minecraft/nbt/LongArrayTag/m_128851_ ()[J net/minecraft/nbt/LongArrayTag/getAsLongArray ()[J +MD: net/minecraft/nbt/LongArrayTag/m_142327_ (Lnet/minecraft/nbt/TagVisitor;)V net/minecraft/nbt/LongArrayTag/accept (Lnet/minecraft/nbt/TagVisitor;)V +MD: net/minecraft/nbt/LongArrayTag/m_196533_ (Lnet/minecraft/nbt/StreamTagVisitor;)Lnet/minecraft/nbt/StreamTagVisitor$ValueResult; net/minecraft/nbt/LongArrayTag/accept (Lnet/minecraft/nbt/StreamTagVisitor;)Lnet/minecraft/nbt/StreamTagVisitor$ValueResult; +MD: net/minecraft/nbt/LongArrayTag/m_263179_ ()I net/minecraft/nbt/LongArrayTag/sizeInBytes ()I +MD: net/minecraft/nbt/LongArrayTag/m_6426_ ()Lnet/minecraft/nbt/Tag; net/minecraft/nbt/LongArrayTag/copy ()Lnet/minecraft/nbt/Tag; +MD: net/minecraft/nbt/LongArrayTag/m_6426_ ()Lnet/minecraft/nbt/LongArrayTag; net/minecraft/nbt/LongArrayTag/copy ()Lnet/minecraft/nbt/LongArrayTag; +MD: net/minecraft/nbt/LongArrayTag/m_6434_ (Ljava/io/DataOutput;)V net/minecraft/nbt/LongArrayTag/write (Ljava/io/DataOutput;)V +MD: net/minecraft/nbt/LongArrayTag/m_6458_ ()Lnet/minecraft/nbt/TagType; net/minecraft/nbt/LongArrayTag/getType ()Lnet/minecraft/nbt/TagType; +MD: net/minecraft/nbt/LongArrayTag/m_7060_ ()B net/minecraft/nbt/LongArrayTag/getId ()B +MD: net/minecraft/nbt/LongArrayTag/m_7264_ ()B net/minecraft/nbt/LongArrayTag/getElementType ()B +MD: net/minecraft/nbt/LongArrayTag/m_7614_ (ILnet/minecraft/nbt/Tag;)Z net/minecraft/nbt/LongArrayTag/addTag (ILnet/minecraft/nbt/Tag;)Z +MD: net/minecraft/nbt/LongArrayTag/m_7615_ (ILnet/minecraft/nbt/Tag;)Z net/minecraft/nbt/LongArrayTag/setTag (ILnet/minecraft/nbt/Tag;)Z +MD: net/minecraft/nbt/LongArrayTag/remove (I)Lnet/minecraft/nbt/LongTag; net/minecraft/nbt/LongArrayTag/remove (I)Lnet/minecraft/nbt/LongTag; +MD: net/minecraft/nbt/LongArrayTag/remove (I)Ljava/lang/Object; net/minecraft/nbt/LongArrayTag/remove (I)Ljava/lang/Object; +MD: net/minecraft/nbt/LongArrayTag/remove (I)Lnet/minecraft/nbt/Tag; net/minecraft/nbt/LongArrayTag/remove (I)Lnet/minecraft/nbt/Tag; +MD: net/minecraft/nbt/LongArrayTag/set (ILnet/minecraft/nbt/LongTag;)Lnet/minecraft/nbt/LongTag; net/minecraft/nbt/LongArrayTag/set (ILnet/minecraft/nbt/LongTag;)Lnet/minecraft/nbt/LongTag; +MD: net/minecraft/nbt/LongArrayTag/set (ILjava/lang/Object;)Ljava/lang/Object; net/minecraft/nbt/LongArrayTag/set (ILjava/lang/Object;)Ljava/lang/Object; +MD: net/minecraft/nbt/LongArrayTag/set (ILnet/minecraft/nbt/Tag;)Lnet/minecraft/nbt/Tag; net/minecraft/nbt/LongArrayTag/set (ILnet/minecraft/nbt/Tag;)Lnet/minecraft/nbt/Tag; +MD: net/minecraft/nbt/LongArrayTag/size ()I net/minecraft/nbt/LongArrayTag/size ()I +MD: net/minecraft/nbt/LongArrayTag/toString ()Ljava/lang/String; net/minecraft/nbt/LongArrayTag/toString ()Ljava/lang/String; +MD: net/minecraft/nbt/LongArrayTag$1/ ()V net/minecraft/nbt/LongArrayTag$1/ ()V +MD: net/minecraft/nbt/LongArrayTag$1/m_196159_ (Ljava/io/DataInput;)V net/minecraft/nbt/LongArrayTag$1/skip (Ljava/io/DataInput;)V +MD: net/minecraft/nbt/LongArrayTag$1/m_196511_ (Ljava/io/DataInput;Lnet/minecraft/nbt/StreamTagVisitor;)Lnet/minecraft/nbt/StreamTagVisitor$ValueResult; net/minecraft/nbt/LongArrayTag$1/parse (Ljava/io/DataInput;Lnet/minecraft/nbt/StreamTagVisitor;)Lnet/minecraft/nbt/StreamTagVisitor$ValueResult; +MD: net/minecraft/nbt/LongArrayTag$1/m_5986_ ()Ljava/lang/String; net/minecraft/nbt/LongArrayTag$1/getPrettyName ()Ljava/lang/String; +MD: net/minecraft/nbt/LongArrayTag$1/m_5987_ ()Ljava/lang/String; net/minecraft/nbt/LongArrayTag$1/getName ()Ljava/lang/String; +MD: net/minecraft/nbt/LongArrayTag$1/m_7300_ (Ljava/io/DataInput;ILnet/minecraft/nbt/NbtAccounter;)Lnet/minecraft/nbt/Tag; net/minecraft/nbt/LongArrayTag$1/load (Ljava/io/DataInput;ILnet/minecraft/nbt/NbtAccounter;)Lnet/minecraft/nbt/Tag; +MD: net/minecraft/nbt/LongArrayTag$1/m_7300_ (Ljava/io/DataInput;ILnet/minecraft/nbt/NbtAccounter;)Lnet/minecraft/nbt/LongArrayTag; net/minecraft/nbt/LongArrayTag$1/load (Ljava/io/DataInput;ILnet/minecraft/nbt/NbtAccounter;)Lnet/minecraft/nbt/LongArrayTag; +MD: net/minecraft/nbt/LongTag/ ()V net/minecraft/nbt/LongTag/ ()V +MD: net/minecraft/nbt/LongTag/ (J)V net/minecraft/nbt/LongTag/ (J)V +MD: net/minecraft/nbt/LongTag/equals (Ljava/lang/Object;)Z net/minecraft/nbt/LongTag/equals (Ljava/lang/Object;)Z +MD: net/minecraft/nbt/LongTag/hashCode ()I net/minecraft/nbt/LongTag/hashCode ()I +MD: net/minecraft/nbt/LongTag/m_128882_ (J)Lnet/minecraft/nbt/LongTag; net/minecraft/nbt/LongTag/valueOf (J)Lnet/minecraft/nbt/LongTag; +MD: net/minecraft/nbt/LongTag/m_142327_ (Lnet/minecraft/nbt/TagVisitor;)V net/minecraft/nbt/LongTag/accept (Lnet/minecraft/nbt/TagVisitor;)V +MD: net/minecraft/nbt/LongTag/m_196533_ (Lnet/minecraft/nbt/StreamTagVisitor;)Lnet/minecraft/nbt/StreamTagVisitor$ValueResult; net/minecraft/nbt/LongTag/accept (Lnet/minecraft/nbt/StreamTagVisitor;)Lnet/minecraft/nbt/StreamTagVisitor$ValueResult; +MD: net/minecraft/nbt/LongTag/m_263179_ ()I net/minecraft/nbt/LongTag/sizeInBytes ()I +MD: net/minecraft/nbt/LongTag/m_6426_ ()Lnet/minecraft/nbt/LongTag; net/minecraft/nbt/LongTag/copy ()Lnet/minecraft/nbt/LongTag; +MD: net/minecraft/nbt/LongTag/m_6426_ ()Lnet/minecraft/nbt/Tag; net/minecraft/nbt/LongTag/copy ()Lnet/minecraft/nbt/Tag; +MD: net/minecraft/nbt/LongTag/m_6434_ (Ljava/io/DataOutput;)V net/minecraft/nbt/LongTag/write (Ljava/io/DataOutput;)V +MD: net/minecraft/nbt/LongTag/m_6458_ ()Lnet/minecraft/nbt/TagType; net/minecraft/nbt/LongTag/getType ()Lnet/minecraft/nbt/TagType; +MD: net/minecraft/nbt/LongTag/m_7046_ ()J net/minecraft/nbt/LongTag/getAsLong ()J +MD: net/minecraft/nbt/LongTag/m_7047_ ()I net/minecraft/nbt/LongTag/getAsInt ()I +MD: net/minecraft/nbt/LongTag/m_7053_ ()S net/minecraft/nbt/LongTag/getAsShort ()S +MD: net/minecraft/nbt/LongTag/m_7057_ ()F net/minecraft/nbt/LongTag/getAsFloat ()F +MD: net/minecraft/nbt/LongTag/m_7060_ ()B net/minecraft/nbt/LongTag/getId ()B +MD: net/minecraft/nbt/LongTag/m_7061_ ()D net/minecraft/nbt/LongTag/getAsDouble ()D +MD: net/minecraft/nbt/LongTag/m_7063_ ()B net/minecraft/nbt/LongTag/getAsByte ()B +MD: net/minecraft/nbt/LongTag/m_8103_ ()Ljava/lang/Number; net/minecraft/nbt/LongTag/getAsNumber ()Ljava/lang/Number; +MD: net/minecraft/nbt/LongTag$1/ ()V net/minecraft/nbt/LongTag$1/ ()V +MD: net/minecraft/nbt/LongTag$1/m_196292_ ()I net/minecraft/nbt/LongTag$1/size ()I +MD: net/minecraft/nbt/LongTag$1/m_196511_ (Ljava/io/DataInput;Lnet/minecraft/nbt/StreamTagVisitor;)Lnet/minecraft/nbt/StreamTagVisitor$ValueResult; net/minecraft/nbt/LongTag$1/parse (Ljava/io/DataInput;Lnet/minecraft/nbt/StreamTagVisitor;)Lnet/minecraft/nbt/StreamTagVisitor$ValueResult; +MD: net/minecraft/nbt/LongTag$1/m_5986_ ()Ljava/lang/String; net/minecraft/nbt/LongTag$1/getPrettyName ()Ljava/lang/String; +MD: net/minecraft/nbt/LongTag$1/m_5987_ ()Ljava/lang/String; net/minecraft/nbt/LongTag$1/getName ()Ljava/lang/String; +MD: net/minecraft/nbt/LongTag$1/m_7064_ ()Z net/minecraft/nbt/LongTag$1/isValue ()Z +MD: net/minecraft/nbt/LongTag$1/m_7300_ (Ljava/io/DataInput;ILnet/minecraft/nbt/NbtAccounter;)Lnet/minecraft/nbt/Tag; net/minecraft/nbt/LongTag$1/load (Ljava/io/DataInput;ILnet/minecraft/nbt/NbtAccounter;)Lnet/minecraft/nbt/Tag; +MD: net/minecraft/nbt/LongTag$1/m_7300_ (Ljava/io/DataInput;ILnet/minecraft/nbt/NbtAccounter;)Lnet/minecraft/nbt/LongTag; net/minecraft/nbt/LongTag$1/load (Ljava/io/DataInput;ILnet/minecraft/nbt/NbtAccounter;)Lnet/minecraft/nbt/LongTag; +MD: net/minecraft/nbt/LongTag$Cache/ ()V net/minecraft/nbt/LongTag$Cache/ ()V +MD: net/minecraft/nbt/LongTag$Cache/ ()V net/minecraft/nbt/LongTag$Cache/ ()V +MD: net/minecraft/nbt/NbtAccounter/ ()V net/minecraft/nbt/NbtAccounter/ ()V +MD: net/minecraft/nbt/NbtAccounter/ (J)V net/minecraft/nbt/NbtAccounter/ (J)V +MD: net/minecraft/nbt/NbtAccounter/m_128926_ (J)V net/minecraft/nbt/NbtAccounter/accountBytes (J)V +MD: net/minecraft/nbt/NbtAccounter/m_263225_ ()J net/minecraft/nbt/NbtAccounter/getUsage ()J +MD: net/minecraft/nbt/NbtAccounter$1/ (J)V net/minecraft/nbt/NbtAccounter$1/ (J)V +MD: net/minecraft/nbt/NbtAccounter$1/m_128926_ (J)V net/minecraft/nbt/NbtAccounter$1/accountBytes (J)V +MD: net/minecraft/nbt/NbtIo/ ()V net/minecraft/nbt/NbtIo/ ()V +MD: net/minecraft/nbt/NbtIo/m_128928_ (Ljava/io/DataInput;)Lnet/minecraft/nbt/CompoundTag; net/minecraft/nbt/NbtIo/read (Ljava/io/DataInput;)Lnet/minecraft/nbt/CompoundTag; +MD: net/minecraft/nbt/NbtIo/m_128930_ (Ljava/io/DataInput;ILnet/minecraft/nbt/NbtAccounter;)Lnet/minecraft/nbt/Tag; net/minecraft/nbt/NbtIo/readUnnamedTag (Ljava/io/DataInput;ILnet/minecraft/nbt/NbtAccounter;)Lnet/minecraft/nbt/Tag; +MD: net/minecraft/nbt/NbtIo/m_128934_ (Ljava/io/DataInput;Lnet/minecraft/nbt/NbtAccounter;)Lnet/minecraft/nbt/CompoundTag; net/minecraft/nbt/NbtIo/read (Ljava/io/DataInput;Lnet/minecraft/nbt/NbtAccounter;)Lnet/minecraft/nbt/CompoundTag; +MD: net/minecraft/nbt/NbtIo/m_128937_ (Ljava/io/File;)Lnet/minecraft/nbt/CompoundTag; net/minecraft/nbt/NbtIo/readCompressed (Ljava/io/File;)Lnet/minecraft/nbt/CompoundTag; +MD: net/minecraft/nbt/NbtIo/m_128939_ (Ljava/io/InputStream;)Lnet/minecraft/nbt/CompoundTag; net/minecraft/nbt/NbtIo/readCompressed (Ljava/io/InputStream;)Lnet/minecraft/nbt/CompoundTag; +MD: net/minecraft/nbt/NbtIo/m_128941_ (Lnet/minecraft/nbt/CompoundTag;Ljava/io/DataOutput;)V net/minecraft/nbt/NbtIo/write (Lnet/minecraft/nbt/CompoundTag;Ljava/io/DataOutput;)V +MD: net/minecraft/nbt/NbtIo/m_128944_ (Lnet/minecraft/nbt/CompoundTag;Ljava/io/File;)V net/minecraft/nbt/NbtIo/writeCompressed (Lnet/minecraft/nbt/CompoundTag;Ljava/io/File;)V +MD: net/minecraft/nbt/NbtIo/m_128947_ (Lnet/minecraft/nbt/CompoundTag;Ljava/io/OutputStream;)V net/minecraft/nbt/NbtIo/writeCompressed (Lnet/minecraft/nbt/CompoundTag;Ljava/io/OutputStream;)V +MD: net/minecraft/nbt/NbtIo/m_128950_ (Lnet/minecraft/nbt/Tag;Ljava/io/DataOutput;)V net/minecraft/nbt/NbtIo/writeUnnamedTag (Lnet/minecraft/nbt/Tag;Ljava/io/DataOutput;)V +MD: net/minecraft/nbt/NbtIo/m_128953_ (Ljava/io/File;)Lnet/minecraft/nbt/CompoundTag; net/minecraft/nbt/NbtIo/read (Ljava/io/File;)Lnet/minecraft/nbt/CompoundTag; +MD: net/minecraft/nbt/NbtIo/m_128955_ (Lnet/minecraft/nbt/CompoundTag;Ljava/io/File;)V net/minecraft/nbt/NbtIo/write (Lnet/minecraft/nbt/CompoundTag;Ljava/io/File;)V +MD: net/minecraft/nbt/NbtIo/m_197509_ (Ljava/io/DataInput;Lnet/minecraft/nbt/StreamTagVisitor;)V net/minecraft/nbt/NbtIo/parse (Ljava/io/DataInput;Lnet/minecraft/nbt/StreamTagVisitor;)V +MD: net/minecraft/nbt/NbtIo/m_202487_ (Ljava/io/File;Lnet/minecraft/nbt/StreamTagVisitor;)V net/minecraft/nbt/NbtIo/parseCompressed (Ljava/io/File;Lnet/minecraft/nbt/StreamTagVisitor;)V +MD: net/minecraft/nbt/NbtIo/m_202490_ (Ljava/io/InputStream;Lnet/minecraft/nbt/StreamTagVisitor;)V net/minecraft/nbt/NbtIo/parseCompressed (Ljava/io/InputStream;Lnet/minecraft/nbt/StreamTagVisitor;)V +MD: net/minecraft/nbt/NbtIo/m_202493_ (Ljava/io/InputStream;)Ljava/io/DataInputStream; net/minecraft/nbt/NbtIo/createDecompressorStream (Ljava/io/InputStream;)Ljava/io/DataInputStream; +MD: net/minecraft/nbt/NbtIo$1/ ()V net/minecraft/nbt/NbtIo$1/ ()V +MD: net/minecraft/nbt/NbtOps/ ()V net/minecraft/nbt/NbtOps/ ()V +MD: net/minecraft/nbt/NbtOps/ ()V net/minecraft/nbt/NbtOps/ ()V +MD: net/minecraft/nbt/NbtOps/convertTo (Lcom/mojang/serialization/DynamicOps;Ljava/lang/Object;)Ljava/lang/Object; net/minecraft/nbt/NbtOps/convertTo (Lcom/mojang/serialization/DynamicOps;Ljava/lang/Object;)Ljava/lang/Object; +MD: net/minecraft/nbt/NbtOps/convertTo (Lcom/mojang/serialization/DynamicOps;Lnet/minecraft/nbt/Tag;)Ljava/lang/Object; net/minecraft/nbt/NbtOps/convertTo (Lcom/mojang/serialization/DynamicOps;Lnet/minecraft/nbt/Tag;)Ljava/lang/Object; +MD: net/minecraft/nbt/NbtOps/createBoolean (Z)Lnet/minecraft/nbt/Tag; net/minecraft/nbt/NbtOps/createBoolean (Z)Lnet/minecraft/nbt/Tag; +MD: net/minecraft/nbt/NbtOps/createBoolean (Z)Ljava/lang/Object; net/minecraft/nbt/NbtOps/createBoolean (Z)Ljava/lang/Object; +MD: net/minecraft/nbt/NbtOps/createByte (B)Lnet/minecraft/nbt/Tag; net/minecraft/nbt/NbtOps/createByte (B)Lnet/minecraft/nbt/Tag; +MD: net/minecraft/nbt/NbtOps/createByte (B)Ljava/lang/Object; net/minecraft/nbt/NbtOps/createByte (B)Ljava/lang/Object; +MD: net/minecraft/nbt/NbtOps/createByteList (Ljava/nio/ByteBuffer;)Lnet/minecraft/nbt/Tag; net/minecraft/nbt/NbtOps/createByteList (Ljava/nio/ByteBuffer;)Lnet/minecraft/nbt/Tag; +MD: net/minecraft/nbt/NbtOps/createByteList (Ljava/nio/ByteBuffer;)Ljava/lang/Object; net/minecraft/nbt/NbtOps/createByteList (Ljava/nio/ByteBuffer;)Ljava/lang/Object; +MD: net/minecraft/nbt/NbtOps/createDouble (D)Ljava/lang/Object; net/minecraft/nbt/NbtOps/createDouble (D)Ljava/lang/Object; +MD: net/minecraft/nbt/NbtOps/createDouble (D)Lnet/minecraft/nbt/Tag; net/minecraft/nbt/NbtOps/createDouble (D)Lnet/minecraft/nbt/Tag; +MD: net/minecraft/nbt/NbtOps/createFloat (F)Lnet/minecraft/nbt/Tag; net/minecraft/nbt/NbtOps/createFloat (F)Lnet/minecraft/nbt/Tag; +MD: net/minecraft/nbt/NbtOps/createFloat (F)Ljava/lang/Object; net/minecraft/nbt/NbtOps/createFloat (F)Ljava/lang/Object; +MD: net/minecraft/nbt/NbtOps/createInt (I)Ljava/lang/Object; net/minecraft/nbt/NbtOps/createInt (I)Ljava/lang/Object; +MD: net/minecraft/nbt/NbtOps/createInt (I)Lnet/minecraft/nbt/Tag; net/minecraft/nbt/NbtOps/createInt (I)Lnet/minecraft/nbt/Tag; +MD: net/minecraft/nbt/NbtOps/createIntList (Ljava/util/stream/IntStream;)Ljava/lang/Object; net/minecraft/nbt/NbtOps/createIntList (Ljava/util/stream/IntStream;)Ljava/lang/Object; +MD: net/minecraft/nbt/NbtOps/createIntList (Ljava/util/stream/IntStream;)Lnet/minecraft/nbt/Tag; net/minecraft/nbt/NbtOps/createIntList (Ljava/util/stream/IntStream;)Lnet/minecraft/nbt/Tag; +MD: net/minecraft/nbt/NbtOps/createList (Ljava/util/stream/Stream;)Lnet/minecraft/nbt/Tag; net/minecraft/nbt/NbtOps/createList (Ljava/util/stream/Stream;)Lnet/minecraft/nbt/Tag; +MD: net/minecraft/nbt/NbtOps/createList (Ljava/util/stream/Stream;)Ljava/lang/Object; net/minecraft/nbt/NbtOps/createList (Ljava/util/stream/Stream;)Ljava/lang/Object; +MD: net/minecraft/nbt/NbtOps/createLong (J)Ljava/lang/Object; net/minecraft/nbt/NbtOps/createLong (J)Ljava/lang/Object; +MD: net/minecraft/nbt/NbtOps/createLong (J)Lnet/minecraft/nbt/Tag; net/minecraft/nbt/NbtOps/createLong (J)Lnet/minecraft/nbt/Tag; +MD: net/minecraft/nbt/NbtOps/createLongList (Ljava/util/stream/LongStream;)Lnet/minecraft/nbt/Tag; net/minecraft/nbt/NbtOps/createLongList (Ljava/util/stream/LongStream;)Lnet/minecraft/nbt/Tag; +MD: net/minecraft/nbt/NbtOps/createLongList (Ljava/util/stream/LongStream;)Ljava/lang/Object; net/minecraft/nbt/NbtOps/createLongList (Ljava/util/stream/LongStream;)Ljava/lang/Object; +MD: net/minecraft/nbt/NbtOps/createMap (Ljava/util/stream/Stream;)Lnet/minecraft/nbt/Tag; net/minecraft/nbt/NbtOps/createMap (Ljava/util/stream/Stream;)Lnet/minecraft/nbt/Tag; +MD: net/minecraft/nbt/NbtOps/createMap (Ljava/util/stream/Stream;)Ljava/lang/Object; net/minecraft/nbt/NbtOps/createMap (Ljava/util/stream/Stream;)Ljava/lang/Object; +MD: net/minecraft/nbt/NbtOps/createNumeric (Ljava/lang/Number;)Lnet/minecraft/nbt/Tag; net/minecraft/nbt/NbtOps/createNumeric (Ljava/lang/Number;)Lnet/minecraft/nbt/Tag; +MD: net/minecraft/nbt/NbtOps/createNumeric (Ljava/lang/Number;)Ljava/lang/Object; net/minecraft/nbt/NbtOps/createNumeric (Ljava/lang/Number;)Ljava/lang/Object; +MD: net/minecraft/nbt/NbtOps/createShort (S)Lnet/minecraft/nbt/Tag; net/minecraft/nbt/NbtOps/createShort (S)Lnet/minecraft/nbt/Tag; +MD: net/minecraft/nbt/NbtOps/createShort (S)Ljava/lang/Object; net/minecraft/nbt/NbtOps/createShort (S)Ljava/lang/Object; +MD: net/minecraft/nbt/NbtOps/createString (Ljava/lang/String;)Ljava/lang/Object; net/minecraft/nbt/NbtOps/createString (Ljava/lang/String;)Ljava/lang/Object; +MD: net/minecraft/nbt/NbtOps/createString (Ljava/lang/String;)Lnet/minecraft/nbt/Tag; net/minecraft/nbt/NbtOps/createString (Ljava/lang/String;)Lnet/minecraft/nbt/Tag; +MD: net/minecraft/nbt/NbtOps/empty ()Lnet/minecraft/nbt/Tag; net/minecraft/nbt/NbtOps/empty ()Lnet/minecraft/nbt/Tag; +MD: net/minecraft/nbt/NbtOps/empty ()Ljava/lang/Object; net/minecraft/nbt/NbtOps/empty ()Ljava/lang/Object; +MD: net/minecraft/nbt/NbtOps/getByteBuffer (Lnet/minecraft/nbt/Tag;)Lcom/mojang/serialization/DataResult; net/minecraft/nbt/NbtOps/getByteBuffer (Lnet/minecraft/nbt/Tag;)Lcom/mojang/serialization/DataResult; +MD: net/minecraft/nbt/NbtOps/getByteBuffer (Ljava/lang/Object;)Lcom/mojang/serialization/DataResult; net/minecraft/nbt/NbtOps/getByteBuffer (Ljava/lang/Object;)Lcom/mojang/serialization/DataResult; +MD: net/minecraft/nbt/NbtOps/getIntStream (Lnet/minecraft/nbt/Tag;)Lcom/mojang/serialization/DataResult; net/minecraft/nbt/NbtOps/getIntStream (Lnet/minecraft/nbt/Tag;)Lcom/mojang/serialization/DataResult; +MD: net/minecraft/nbt/NbtOps/getIntStream (Ljava/lang/Object;)Lcom/mojang/serialization/DataResult; net/minecraft/nbt/NbtOps/getIntStream (Ljava/lang/Object;)Lcom/mojang/serialization/DataResult; +MD: net/minecraft/nbt/NbtOps/getList (Ljava/lang/Object;)Lcom/mojang/serialization/DataResult; net/minecraft/nbt/NbtOps/getList (Ljava/lang/Object;)Lcom/mojang/serialization/DataResult; +MD: net/minecraft/nbt/NbtOps/getList (Lnet/minecraft/nbt/Tag;)Lcom/mojang/serialization/DataResult; net/minecraft/nbt/NbtOps/getList (Lnet/minecraft/nbt/Tag;)Lcom/mojang/serialization/DataResult; +MD: net/minecraft/nbt/NbtOps/getLongStream (Ljava/lang/Object;)Lcom/mojang/serialization/DataResult; net/minecraft/nbt/NbtOps/getLongStream (Ljava/lang/Object;)Lcom/mojang/serialization/DataResult; +MD: net/minecraft/nbt/NbtOps/getLongStream (Lnet/minecraft/nbt/Tag;)Lcom/mojang/serialization/DataResult; net/minecraft/nbt/NbtOps/getLongStream (Lnet/minecraft/nbt/Tag;)Lcom/mojang/serialization/DataResult; +MD: net/minecraft/nbt/NbtOps/getMap (Ljava/lang/Object;)Lcom/mojang/serialization/DataResult; net/minecraft/nbt/NbtOps/getMap (Ljava/lang/Object;)Lcom/mojang/serialization/DataResult; +MD: net/minecraft/nbt/NbtOps/getMap (Lnet/minecraft/nbt/Tag;)Lcom/mojang/serialization/DataResult; net/minecraft/nbt/NbtOps/getMap (Lnet/minecraft/nbt/Tag;)Lcom/mojang/serialization/DataResult; +MD: net/minecraft/nbt/NbtOps/getMapEntries (Lnet/minecraft/nbt/Tag;)Lcom/mojang/serialization/DataResult; net/minecraft/nbt/NbtOps/getMapEntries (Lnet/minecraft/nbt/Tag;)Lcom/mojang/serialization/DataResult; +MD: net/minecraft/nbt/NbtOps/getMapEntries (Ljava/lang/Object;)Lcom/mojang/serialization/DataResult; net/minecraft/nbt/NbtOps/getMapEntries (Ljava/lang/Object;)Lcom/mojang/serialization/DataResult; +MD: net/minecraft/nbt/NbtOps/getMapValues (Ljava/lang/Object;)Lcom/mojang/serialization/DataResult; net/minecraft/nbt/NbtOps/getMapValues (Ljava/lang/Object;)Lcom/mojang/serialization/DataResult; +MD: net/minecraft/nbt/NbtOps/getMapValues (Lnet/minecraft/nbt/Tag;)Lcom/mojang/serialization/DataResult; net/minecraft/nbt/NbtOps/getMapValues (Lnet/minecraft/nbt/Tag;)Lcom/mojang/serialization/DataResult; +MD: net/minecraft/nbt/NbtOps/getNumberValue (Ljava/lang/Object;)Lcom/mojang/serialization/DataResult; net/minecraft/nbt/NbtOps/getNumberValue (Ljava/lang/Object;)Lcom/mojang/serialization/DataResult; +MD: net/minecraft/nbt/NbtOps/getNumberValue (Lnet/minecraft/nbt/Tag;)Lcom/mojang/serialization/DataResult; net/minecraft/nbt/NbtOps/getNumberValue (Lnet/minecraft/nbt/Tag;)Lcom/mojang/serialization/DataResult; +MD: net/minecraft/nbt/NbtOps/getStream (Lnet/minecraft/nbt/Tag;)Lcom/mojang/serialization/DataResult; net/minecraft/nbt/NbtOps/getStream (Lnet/minecraft/nbt/Tag;)Lcom/mojang/serialization/DataResult; +MD: net/minecraft/nbt/NbtOps/getStream (Ljava/lang/Object;)Lcom/mojang/serialization/DataResult; net/minecraft/nbt/NbtOps/getStream (Ljava/lang/Object;)Lcom/mojang/serialization/DataResult; +MD: net/minecraft/nbt/NbtOps/getStringValue (Lnet/minecraft/nbt/Tag;)Lcom/mojang/serialization/DataResult; net/minecraft/nbt/NbtOps/getStringValue (Lnet/minecraft/nbt/Tag;)Lcom/mojang/serialization/DataResult; +MD: net/minecraft/nbt/NbtOps/getStringValue (Ljava/lang/Object;)Lcom/mojang/serialization/DataResult; net/minecraft/nbt/NbtOps/getStringValue (Ljava/lang/Object;)Lcom/mojang/serialization/DataResult; +MD: net/minecraft/nbt/NbtOps/m_128986_ (Ljava/lang/String;Ljava/lang/String;)Z net/minecraft/nbt/NbtOps/lambda$remove$28 (Ljava/lang/String;Ljava/lang/String;)Z +MD: net/minecraft/nbt/NbtOps/m_128991_ (Ljava/util/List;Lnet/minecraft/nbt/CompoundTag;Lcom/mojang/datafixers/util/Pair;)V net/minecraft/nbt/NbtOps/lambda$mergeToMap$13 (Ljava/util/List;Lnet/minecraft/nbt/CompoundTag;Lcom/mojang/datafixers/util/Pair;)V +MD: net/minecraft/nbt/NbtOps/m_129016_ (Lnet/minecraft/nbt/CompoundTag;Lcom/mojang/datafixers/util/Pair;)V net/minecraft/nbt/NbtOps/lambda$createMap$21 (Lnet/minecraft/nbt/CompoundTag;Lcom/mojang/datafixers/util/Pair;)V +MD: net/minecraft/nbt/NbtOps/m_129019_ (Lnet/minecraft/nbt/CompoundTag;Ljava/lang/String;)Lcom/mojang/datafixers/util/Pair; net/minecraft/nbt/NbtOps/lambda$getMapValues$15 (Lnet/minecraft/nbt/CompoundTag;Ljava/lang/String;)Lcom/mojang/datafixers/util/Pair; +MD: net/minecraft/nbt/NbtOps/m_129022_ (Lnet/minecraft/nbt/CompoundTag;Ljava/util/function/BiConsumer;)V net/minecraft/nbt/NbtOps/lambda$getMapEntries$18 (Lnet/minecraft/nbt/CompoundTag;Ljava/util/function/BiConsumer;)V +MD: net/minecraft/nbt/NbtOps/m_129025_ (Lnet/minecraft/nbt/CompoundTag;Lnet/minecraft/nbt/CompoundTag;Ljava/lang/String;)V net/minecraft/nbt/NbtOps/lambda$remove$29 (Lnet/minecraft/nbt/CompoundTag;Lnet/minecraft/nbt/CompoundTag;Ljava/lang/String;)V +MD: net/minecraft/nbt/NbtOps/m_129056_ (Lnet/minecraft/nbt/CompoundTag;Lnet/minecraft/nbt/CompoundTag;Ljava/lang/String;)V net/minecraft/nbt/NbtOps/lambda$mergeToMap$12 (Lnet/minecraft/nbt/CompoundTag;Lnet/minecraft/nbt/CompoundTag;Ljava/lang/String;)V +MD: net/minecraft/nbt/NbtOps/m_129065_ (Lnet/minecraft/nbt/CompoundTag;Lnet/minecraft/nbt/CompoundTag;Ljava/lang/String;)V net/minecraft/nbt/NbtOps/lambda$mergeToMap$10 (Lnet/minecraft/nbt/CompoundTag;Lnet/minecraft/nbt/CompoundTag;Ljava/lang/String;)V +MD: net/minecraft/nbt/NbtOps/m_129157_ (Lnet/minecraft/nbt/Tag;)Lnet/minecraft/nbt/Tag; net/minecraft/nbt/NbtOps/lambda$getStream$23 (Lnet/minecraft/nbt/Tag;)Lnet/minecraft/nbt/Tag; +MD: net/minecraft/nbt/NbtOps/m_178003_ (Ljava/util/function/BiConsumer;Lnet/minecraft/nbt/CompoundTag;Ljava/lang/String;)V net/minecraft/nbt/NbtOps/lambda$getMapEntries$17 (Ljava/util/function/BiConsumer;Lnet/minecraft/nbt/CompoundTag;Ljava/lang/String;)V +MD: net/minecraft/nbt/NbtOps/m_244787_ (Ljava/util/List;Lnet/minecraft/nbt/NbtOps$ListCollector;)Lcom/mojang/serialization/DataResult; net/minecraft/nbt/NbtOps/lambda$mergeToList$5 (Ljava/util/List;Lnet/minecraft/nbt/NbtOps$ListCollector;)Lcom/mojang/serialization/DataResult; +MD: net/minecraft/nbt/NbtOps/m_244788_ (Lnet/minecraft/nbt/Tag;)Lnet/minecraft/nbt/Tag; net/minecraft/nbt/NbtOps/lambda$getStream$22 (Lnet/minecraft/nbt/Tag;)Lnet/minecraft/nbt/Tag; +MD: net/minecraft/nbt/NbtOps/m_244789_ (Ljava/util/function/Consumer;Lnet/minecraft/nbt/Tag;)V net/minecraft/nbt/NbtOps/lambda$getList$25 (Ljava/util/function/Consumer;Lnet/minecraft/nbt/Tag;)V +MD: net/minecraft/nbt/NbtOps/m_244790_ (Lnet/minecraft/nbt/Tag;Lnet/minecraft/nbt/NbtOps$ListCollector;)Lcom/mojang/serialization/DataResult; net/minecraft/nbt/NbtOps/lambda$mergeToList$2 (Lnet/minecraft/nbt/Tag;Lnet/minecraft/nbt/NbtOps$ListCollector;)Lcom/mojang/serialization/DataResult; +MD: net/minecraft/nbt/NbtOps/m_244791_ (Lnet/minecraft/nbt/ListTag;Ljava/util/function/Consumer;)V net/minecraft/nbt/NbtOps/lambda$getList$26 (Lnet/minecraft/nbt/ListTag;Ljava/util/function/Consumer;)V +MD: net/minecraft/nbt/NbtOps/m_246295_ (Lnet/minecraft/nbt/CompoundTag;)Lnet/minecraft/nbt/Tag; net/minecraft/nbt/NbtOps/tryUnwrap (Lnet/minecraft/nbt/CompoundTag;)Lnet/minecraft/nbt/Tag; +MD: net/minecraft/nbt/NbtOps/m_246675_ (Lnet/minecraft/nbt/Tag;)Ljava/util/Optional; net/minecraft/nbt/NbtOps/createCollector (Lnet/minecraft/nbt/Tag;)Ljava/util/Optional; +MD: net/minecraft/nbt/NbtOps/m_274049_ (Lnet/minecraft/nbt/Tag;)Ljava/lang/String; net/minecraft/nbt/NbtOps/lambda$getList$27 (Lnet/minecraft/nbt/Tag;)Ljava/lang/String; +MD: net/minecraft/nbt/NbtOps/m_274050_ ()Ljava/lang/String; net/minecraft/nbt/NbtOps/lambda$getStream$24 ()Ljava/lang/String; +MD: net/minecraft/nbt/NbtOps/m_274051_ (Lnet/minecraft/nbt/Tag;)Ljava/lang/String; net/minecraft/nbt/NbtOps/lambda$mergeToMap$11 (Lnet/minecraft/nbt/Tag;)Ljava/lang/String; +MD: net/minecraft/nbt/NbtOps/m_274052_ (Lnet/minecraft/nbt/Tag;)Ljava/lang/String; net/minecraft/nbt/NbtOps/lambda$mergeToMap$9 (Lnet/minecraft/nbt/Tag;)Ljava/lang/String; +MD: net/minecraft/nbt/NbtOps/m_274053_ ()Ljava/lang/String; net/minecraft/nbt/NbtOps/lambda$getStringValue$1 ()Ljava/lang/String; +MD: net/minecraft/nbt/NbtOps/m_274054_ (Ljava/util/List;)Ljava/lang/String; net/minecraft/nbt/NbtOps/lambda$mergeToMap$14 (Ljava/util/List;)Ljava/lang/String; +MD: net/minecraft/nbt/NbtOps/m_274055_ (Lnet/minecraft/nbt/Tag;)Ljava/lang/String; net/minecraft/nbt/NbtOps/lambda$mergeToMap$8 (Lnet/minecraft/nbt/Tag;)Ljava/lang/String; +MD: net/minecraft/nbt/NbtOps/m_274056_ (Lnet/minecraft/nbt/Tag;)Lcom/mojang/serialization/DataResult; net/minecraft/nbt/NbtOps/lambda$mergeToList$4 (Lnet/minecraft/nbt/Tag;)Lcom/mojang/serialization/DataResult; +MD: net/minecraft/nbt/NbtOps/m_274057_ (Lnet/minecraft/nbt/Tag;)Lcom/mojang/serialization/DataResult; net/minecraft/nbt/NbtOps/lambda$mergeToList$7 (Lnet/minecraft/nbt/Tag;)Lcom/mojang/serialization/DataResult; +MD: net/minecraft/nbt/NbtOps/m_274058_ (Lnet/minecraft/nbt/Tag;)Ljava/lang/String; net/minecraft/nbt/NbtOps/lambda$getMap$20 (Lnet/minecraft/nbt/Tag;)Ljava/lang/String; +MD: net/minecraft/nbt/NbtOps/m_274059_ (Lnet/minecraft/nbt/Tag;)Ljava/lang/String; net/minecraft/nbt/NbtOps/lambda$getMapEntries$19 (Lnet/minecraft/nbt/Tag;)Ljava/lang/String; +MD: net/minecraft/nbt/NbtOps/m_274060_ (Lnet/minecraft/nbt/Tag;)Ljava/lang/String; net/minecraft/nbt/NbtOps/lambda$mergeToList$3 (Lnet/minecraft/nbt/Tag;)Ljava/lang/String; +MD: net/minecraft/nbt/NbtOps/m_274061_ (Lnet/minecraft/nbt/Tag;)Ljava/lang/String; net/minecraft/nbt/NbtOps/lambda$mergeToList$6 (Lnet/minecraft/nbt/Tag;)Ljava/lang/String; +MD: net/minecraft/nbt/NbtOps/m_274062_ ()Ljava/lang/String; net/minecraft/nbt/NbtOps/lambda$getNumberValue$0 ()Ljava/lang/String; +MD: net/minecraft/nbt/NbtOps/m_274063_ (Lnet/minecraft/nbt/Tag;)Ljava/lang/String; net/minecraft/nbt/NbtOps/lambda$getMapValues$16 (Lnet/minecraft/nbt/Tag;)Ljava/lang/String; +MD: net/minecraft/nbt/NbtOps/mapBuilder ()Lcom/mojang/serialization/RecordBuilder; net/minecraft/nbt/NbtOps/mapBuilder ()Lcom/mojang/serialization/RecordBuilder; +MD: net/minecraft/nbt/NbtOps/mergeToList (Ljava/lang/Object;Ljava/lang/Object;)Lcom/mojang/serialization/DataResult; net/minecraft/nbt/NbtOps/mergeToList (Ljava/lang/Object;Ljava/lang/Object;)Lcom/mojang/serialization/DataResult; +MD: net/minecraft/nbt/NbtOps/mergeToList (Lnet/minecraft/nbt/Tag;Ljava/util/List;)Lcom/mojang/serialization/DataResult; net/minecraft/nbt/NbtOps/mergeToList (Lnet/minecraft/nbt/Tag;Ljava/util/List;)Lcom/mojang/serialization/DataResult; +MD: net/minecraft/nbt/NbtOps/mergeToList (Lnet/minecraft/nbt/Tag;Lnet/minecraft/nbt/Tag;)Lcom/mojang/serialization/DataResult; net/minecraft/nbt/NbtOps/mergeToList (Lnet/minecraft/nbt/Tag;Lnet/minecraft/nbt/Tag;)Lcom/mojang/serialization/DataResult; +MD: net/minecraft/nbt/NbtOps/mergeToList (Ljava/lang/Object;Ljava/util/List;)Lcom/mojang/serialization/DataResult; net/minecraft/nbt/NbtOps/mergeToList (Ljava/lang/Object;Ljava/util/List;)Lcom/mojang/serialization/DataResult; +MD: net/minecraft/nbt/NbtOps/mergeToMap (Lnet/minecraft/nbt/Tag;Lcom/mojang/serialization/MapLike;)Lcom/mojang/serialization/DataResult; net/minecraft/nbt/NbtOps/mergeToMap (Lnet/minecraft/nbt/Tag;Lcom/mojang/serialization/MapLike;)Lcom/mojang/serialization/DataResult; +MD: net/minecraft/nbt/NbtOps/mergeToMap (Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;)Lcom/mojang/serialization/DataResult; net/minecraft/nbt/NbtOps/mergeToMap (Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;)Lcom/mojang/serialization/DataResult; +MD: net/minecraft/nbt/NbtOps/mergeToMap (Lnet/minecraft/nbt/Tag;Lnet/minecraft/nbt/Tag;Lnet/minecraft/nbt/Tag;)Lcom/mojang/serialization/DataResult; net/minecraft/nbt/NbtOps/mergeToMap (Lnet/minecraft/nbt/Tag;Lnet/minecraft/nbt/Tag;Lnet/minecraft/nbt/Tag;)Lcom/mojang/serialization/DataResult; +MD: net/minecraft/nbt/NbtOps/mergeToMap (Ljava/lang/Object;Lcom/mojang/serialization/MapLike;)Lcom/mojang/serialization/DataResult; net/minecraft/nbt/NbtOps/mergeToMap (Ljava/lang/Object;Lcom/mojang/serialization/MapLike;)Lcom/mojang/serialization/DataResult; +MD: net/minecraft/nbt/NbtOps/remove (Ljava/lang/Object;Ljava/lang/String;)Ljava/lang/Object; net/minecraft/nbt/NbtOps/remove (Ljava/lang/Object;Ljava/lang/String;)Ljava/lang/Object; +MD: net/minecraft/nbt/NbtOps/remove (Lnet/minecraft/nbt/Tag;Ljava/lang/String;)Lnet/minecraft/nbt/Tag; net/minecraft/nbt/NbtOps/remove (Lnet/minecraft/nbt/Tag;Ljava/lang/String;)Lnet/minecraft/nbt/Tag; +MD: net/minecraft/nbt/NbtOps/toString ()Ljava/lang/String; net/minecraft/nbt/NbtOps/toString ()Ljava/lang/String; +MD: net/minecraft/nbt/NbtOps$1/ (Lnet/minecraft/nbt/NbtOps;Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/nbt/NbtOps$1/ (Lnet/minecraft/nbt/NbtOps;Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/nbt/NbtOps$1/entries ()Ljava/util/stream/Stream; net/minecraft/nbt/NbtOps$1/entries ()Ljava/util/stream/Stream; +MD: net/minecraft/nbt/NbtOps$1/get (Ljava/lang/String;)Lnet/minecraft/nbt/Tag; net/minecraft/nbt/NbtOps$1/get (Ljava/lang/String;)Lnet/minecraft/nbt/Tag; +MD: net/minecraft/nbt/NbtOps$1/get (Ljava/lang/Object;)Ljava/lang/Object; net/minecraft/nbt/NbtOps$1/get (Ljava/lang/Object;)Ljava/lang/Object; +MD: net/minecraft/nbt/NbtOps$1/get (Ljava/lang/String;)Ljava/lang/Object; net/minecraft/nbt/NbtOps$1/get (Ljava/lang/String;)Ljava/lang/Object; +MD: net/minecraft/nbt/NbtOps$1/get (Lnet/minecraft/nbt/Tag;)Lnet/minecraft/nbt/Tag; net/minecraft/nbt/NbtOps$1/get (Lnet/minecraft/nbt/Tag;)Lnet/minecraft/nbt/Tag; +MD: net/minecraft/nbt/NbtOps$1/m_129170_ (Lnet/minecraft/nbt/CompoundTag;Ljava/lang/String;)Lcom/mojang/datafixers/util/Pair; net/minecraft/nbt/NbtOps$1/lambda$entries$0 (Lnet/minecraft/nbt/CompoundTag;Ljava/lang/String;)Lcom/mojang/datafixers/util/Pair; +MD: net/minecraft/nbt/NbtOps$1/toString ()Ljava/lang/String; net/minecraft/nbt/NbtOps$1/toString ()Ljava/lang/String; +MD: net/minecraft/nbt/NbtOps$ByteListCollector/ ([B)V net/minecraft/nbt/NbtOps$ByteListCollector/ ([B)V +MD: net/minecraft/nbt/NbtOps$ByteListCollector/ (B)V net/minecraft/nbt/NbtOps$ByteListCollector/ (B)V +MD: net/minecraft/nbt/NbtOps$ByteListCollector/m_245493_ ()Lnet/minecraft/nbt/Tag; net/minecraft/nbt/NbtOps$ByteListCollector/result ()Lnet/minecraft/nbt/Tag; +MD: net/minecraft/nbt/NbtOps$ByteListCollector/m_246081_ (Lnet/minecraft/nbt/Tag;)Lnet/minecraft/nbt/NbtOps$ListCollector; net/minecraft/nbt/NbtOps$ByteListCollector/accept (Lnet/minecraft/nbt/Tag;)Lnet/minecraft/nbt/NbtOps$ListCollector; +MD: net/minecraft/nbt/NbtOps$HeterogenousListCollector/ (Lit/unimi/dsi/fastutil/longs/LongArrayList;)V net/minecraft/nbt/NbtOps$HeterogenousListCollector/ (Lit/unimi/dsi/fastutil/longs/LongArrayList;)V +MD: net/minecraft/nbt/NbtOps$HeterogenousListCollector/ (Lit/unimi/dsi/fastutil/bytes/ByteArrayList;)V net/minecraft/nbt/NbtOps$HeterogenousListCollector/ (Lit/unimi/dsi/fastutil/bytes/ByteArrayList;)V +MD: net/minecraft/nbt/NbtOps$HeterogenousListCollector/ (Ljava/util/Collection;)V net/minecraft/nbt/NbtOps$HeterogenousListCollector/ (Ljava/util/Collection;)V +MD: net/minecraft/nbt/NbtOps$HeterogenousListCollector/ ()V net/minecraft/nbt/NbtOps$HeterogenousListCollector/ ()V +MD: net/minecraft/nbt/NbtOps$HeterogenousListCollector/ (Lit/unimi/dsi/fastutil/ints/IntArrayList;)V net/minecraft/nbt/NbtOps$HeterogenousListCollector/ (Lit/unimi/dsi/fastutil/ints/IntArrayList;)V +MD: net/minecraft/nbt/NbtOps$HeterogenousListCollector/m_245493_ ()Lnet/minecraft/nbt/Tag; net/minecraft/nbt/NbtOps$HeterogenousListCollector/result ()Lnet/minecraft/nbt/Tag; +MD: net/minecraft/nbt/NbtOps$HeterogenousListCollector/m_246081_ (Lnet/minecraft/nbt/Tag;)Lnet/minecraft/nbt/NbtOps$ListCollector; net/minecraft/nbt/NbtOps$HeterogenousListCollector/accept (Lnet/minecraft/nbt/Tag;)Lnet/minecraft/nbt/NbtOps$ListCollector; +MD: net/minecraft/nbt/NbtOps$HeterogenousListCollector/m_246400_ (Lnet/minecraft/nbt/CompoundTag;)Z net/minecraft/nbt/NbtOps$HeterogenousListCollector/isWrapper (Lnet/minecraft/nbt/CompoundTag;)Z +MD: net/minecraft/nbt/NbtOps$HeterogenousListCollector/m_246415_ (I)V net/minecraft/nbt/NbtOps$HeterogenousListCollector/lambda$new$0 (I)V +MD: net/minecraft/nbt/NbtOps$HeterogenousListCollector/m_246462_ (J)V net/minecraft/nbt/NbtOps$HeterogenousListCollector/lambda$new$2 (J)V +MD: net/minecraft/nbt/NbtOps$HeterogenousListCollector/m_247310_ (Lnet/minecraft/nbt/Tag;)Lnet/minecraft/nbt/CompoundTag; net/minecraft/nbt/NbtOps$HeterogenousListCollector/wrapElement (Lnet/minecraft/nbt/Tag;)Lnet/minecraft/nbt/CompoundTag; +MD: net/minecraft/nbt/NbtOps$HeterogenousListCollector/m_247549_ (B)V net/minecraft/nbt/NbtOps$HeterogenousListCollector/lambda$new$1 (B)V +MD: net/minecraft/nbt/NbtOps$HeterogenousListCollector/m_247665_ (Lnet/minecraft/nbt/Tag;)Lnet/minecraft/nbt/Tag; net/minecraft/nbt/NbtOps$HeterogenousListCollector/wrapIfNeeded (Lnet/minecraft/nbt/Tag;)Lnet/minecraft/nbt/Tag; +MD: net/minecraft/nbt/NbtOps$HomogenousListCollector/ (Lnet/minecraft/nbt/Tag;)V net/minecraft/nbt/NbtOps$HomogenousListCollector/ (Lnet/minecraft/nbt/Tag;)V +MD: net/minecraft/nbt/NbtOps$HomogenousListCollector/ (Lnet/minecraft/nbt/ListTag;)V net/minecraft/nbt/NbtOps$HomogenousListCollector/ (Lnet/minecraft/nbt/ListTag;)V +MD: net/minecraft/nbt/NbtOps$HomogenousListCollector/m_245493_ ()Lnet/minecraft/nbt/Tag; net/minecraft/nbt/NbtOps$HomogenousListCollector/result ()Lnet/minecraft/nbt/Tag; +MD: net/minecraft/nbt/NbtOps$HomogenousListCollector/m_246081_ (Lnet/minecraft/nbt/Tag;)Lnet/minecraft/nbt/NbtOps$ListCollector; net/minecraft/nbt/NbtOps$HomogenousListCollector/accept (Lnet/minecraft/nbt/Tag;)Lnet/minecraft/nbt/NbtOps$ListCollector; +MD: net/minecraft/nbt/NbtOps$InitialListCollector/ ()V net/minecraft/nbt/NbtOps$InitialListCollector/ ()V +MD: net/minecraft/nbt/NbtOps$InitialListCollector/ ()V net/minecraft/nbt/NbtOps$InitialListCollector/ ()V +MD: net/minecraft/nbt/NbtOps$InitialListCollector/m_245493_ ()Lnet/minecraft/nbt/Tag; net/minecraft/nbt/NbtOps$InitialListCollector/result ()Lnet/minecraft/nbt/Tag; +MD: net/minecraft/nbt/NbtOps$InitialListCollector/m_246081_ (Lnet/minecraft/nbt/Tag;)Lnet/minecraft/nbt/NbtOps$ListCollector; net/minecraft/nbt/NbtOps$InitialListCollector/accept (Lnet/minecraft/nbt/Tag;)Lnet/minecraft/nbt/NbtOps$ListCollector; +MD: net/minecraft/nbt/NbtOps$IntListCollector/ (I)V net/minecraft/nbt/NbtOps$IntListCollector/ (I)V +MD: net/minecraft/nbt/NbtOps$IntListCollector/ ([I)V net/minecraft/nbt/NbtOps$IntListCollector/ ([I)V +MD: net/minecraft/nbt/NbtOps$IntListCollector/m_245493_ ()Lnet/minecraft/nbt/Tag; net/minecraft/nbt/NbtOps$IntListCollector/result ()Lnet/minecraft/nbt/Tag; +MD: net/minecraft/nbt/NbtOps$IntListCollector/m_246081_ (Lnet/minecraft/nbt/Tag;)Lnet/minecraft/nbt/NbtOps$ListCollector; net/minecraft/nbt/NbtOps$IntListCollector/accept (Lnet/minecraft/nbt/Tag;)Lnet/minecraft/nbt/NbtOps$ListCollector; +MD: net/minecraft/nbt/NbtOps$ListCollector/m_245493_ ()Lnet/minecraft/nbt/Tag; net/minecraft/nbt/NbtOps$ListCollector/result ()Lnet/minecraft/nbt/Tag; +MD: net/minecraft/nbt/NbtOps$ListCollector/m_246081_ (Lnet/minecraft/nbt/Tag;)Lnet/minecraft/nbt/NbtOps$ListCollector; net/minecraft/nbt/NbtOps$ListCollector/accept (Lnet/minecraft/nbt/Tag;)Lnet/minecraft/nbt/NbtOps$ListCollector; +MD: net/minecraft/nbt/NbtOps$ListCollector/m_246277_ (Ljava/lang/Iterable;)Lnet/minecraft/nbt/NbtOps$ListCollector; net/minecraft/nbt/NbtOps$ListCollector/acceptAll (Ljava/lang/Iterable;)Lnet/minecraft/nbt/NbtOps$ListCollector; +MD: net/minecraft/nbt/NbtOps$ListCollector/m_246922_ (Ljava/util/stream/Stream;)Lnet/minecraft/nbt/NbtOps$ListCollector; net/minecraft/nbt/NbtOps$ListCollector/acceptAll (Ljava/util/stream/Stream;)Lnet/minecraft/nbt/NbtOps$ListCollector; +MD: net/minecraft/nbt/NbtOps$LongListCollector/ (J)V net/minecraft/nbt/NbtOps$LongListCollector/ (J)V +MD: net/minecraft/nbt/NbtOps$LongListCollector/ ([J)V net/minecraft/nbt/NbtOps$LongListCollector/ ([J)V +MD: net/minecraft/nbt/NbtOps$LongListCollector/m_245493_ ()Lnet/minecraft/nbt/Tag; net/minecraft/nbt/NbtOps$LongListCollector/result ()Lnet/minecraft/nbt/Tag; +MD: net/minecraft/nbt/NbtOps$LongListCollector/m_246081_ (Lnet/minecraft/nbt/Tag;)Lnet/minecraft/nbt/NbtOps$ListCollector; net/minecraft/nbt/NbtOps$LongListCollector/accept (Lnet/minecraft/nbt/Tag;)Lnet/minecraft/nbt/NbtOps$ListCollector; +MD: net/minecraft/nbt/NbtOps$NbtRecordBuilder/ (Lnet/minecraft/nbt/NbtOps;)V net/minecraft/nbt/NbtOps$NbtRecordBuilder/ (Lnet/minecraft/nbt/NbtOps;)V +MD: net/minecraft/nbt/NbtOps$NbtRecordBuilder/append (Ljava/lang/String;Lnet/minecraft/nbt/Tag;Lnet/minecraft/nbt/CompoundTag;)Lnet/minecraft/nbt/CompoundTag; net/minecraft/nbt/NbtOps$NbtRecordBuilder/append (Ljava/lang/String;Lnet/minecraft/nbt/Tag;Lnet/minecraft/nbt/CompoundTag;)Lnet/minecraft/nbt/CompoundTag; +MD: net/minecraft/nbt/NbtOps$NbtRecordBuilder/append (Ljava/lang/String;Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object; net/minecraft/nbt/NbtOps$NbtRecordBuilder/append (Ljava/lang/String;Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object; +MD: net/minecraft/nbt/NbtOps$NbtRecordBuilder/build (Ljava/lang/Object;Ljava/lang/Object;)Lcom/mojang/serialization/DataResult; net/minecraft/nbt/NbtOps$NbtRecordBuilder/build (Ljava/lang/Object;Ljava/lang/Object;)Lcom/mojang/serialization/DataResult; +MD: net/minecraft/nbt/NbtOps$NbtRecordBuilder/build (Lnet/minecraft/nbt/CompoundTag;Lnet/minecraft/nbt/Tag;)Lcom/mojang/serialization/DataResult; net/minecraft/nbt/NbtOps$NbtRecordBuilder/build (Lnet/minecraft/nbt/CompoundTag;Lnet/minecraft/nbt/Tag;)Lcom/mojang/serialization/DataResult; +MD: net/minecraft/nbt/NbtOps$NbtRecordBuilder/initBuilder ()Lnet/minecraft/nbt/CompoundTag; net/minecraft/nbt/NbtOps$NbtRecordBuilder/initBuilder ()Lnet/minecraft/nbt/CompoundTag; +MD: net/minecraft/nbt/NbtOps$NbtRecordBuilder/initBuilder ()Ljava/lang/Object; net/minecraft/nbt/NbtOps$NbtRecordBuilder/initBuilder ()Ljava/lang/Object; +MD: net/minecraft/nbt/NbtOps$NbtRecordBuilder/m_274399_ (Lnet/minecraft/nbt/Tag;)Ljava/lang/String; net/minecraft/nbt/NbtOps$NbtRecordBuilder/lambda$build$0 (Lnet/minecraft/nbt/Tag;)Ljava/lang/String; +MD: net/minecraft/nbt/NbtUtils/ ()V net/minecraft/nbt/NbtUtils/ ()V +MD: net/minecraft/nbt/NbtUtils/ ()V net/minecraft/nbt/NbtUtils/ ()V +MD: net/minecraft/nbt/NbtUtils/m_129202_ (Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/nbt/CompoundTag; net/minecraft/nbt/NbtUtils/writeBlockState (Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/nbt/CompoundTag; +MD: net/minecraft/nbt/NbtUtils/m_129204_ (Lnet/minecraft/world/level/block/state/StateHolder;Lnet/minecraft/world/level/block/state/properties/Property;Ljava/lang/String;Lnet/minecraft/nbt/CompoundTag;Lnet/minecraft/nbt/CompoundTag;)Lnet/minecraft/world/level/block/state/StateHolder; net/minecraft/nbt/NbtUtils/setValueHelper (Lnet/minecraft/world/level/block/state/StateHolder;Lnet/minecraft/world/level/block/state/properties/Property;Ljava/lang/String;Lnet/minecraft/nbt/CompoundTag;Lnet/minecraft/nbt/CompoundTag;)Lnet/minecraft/world/level/block/state/StateHolder; +MD: net/minecraft/nbt/NbtUtils/m_129210_ (Lnet/minecraft/world/level/block/state/properties/Property;Ljava/lang/Comparable;)Ljava/lang/String; net/minecraft/nbt/NbtUtils/getName (Lnet/minecraft/world/level/block/state/properties/Property;Ljava/lang/Comparable;)Ljava/lang/String; +MD: net/minecraft/nbt/NbtUtils/m_129224_ (Lnet/minecraft/core/BlockPos;)Lnet/minecraft/nbt/CompoundTag; net/minecraft/nbt/NbtUtils/writeBlockPos (Lnet/minecraft/core/BlockPos;)Lnet/minecraft/nbt/CompoundTag; +MD: net/minecraft/nbt/NbtUtils/m_129226_ (Ljava/util/UUID;)Lnet/minecraft/nbt/IntArrayTag; net/minecraft/nbt/NbtUtils/createUUID (Ljava/util/UUID;)Lnet/minecraft/nbt/IntArrayTag; +MD: net/minecraft/nbt/NbtUtils/m_129228_ (Lnet/minecraft/nbt/CompoundTag;)Lcom/mojang/authlib/GameProfile; net/minecraft/nbt/NbtUtils/readGameProfile (Lnet/minecraft/nbt/CompoundTag;)Lcom/mojang/authlib/GameProfile; +MD: net/minecraft/nbt/NbtUtils/m_129230_ (Lnet/minecraft/nbt/CompoundTag;Lcom/mojang/authlib/GameProfile;)Lnet/minecraft/nbt/CompoundTag; net/minecraft/nbt/NbtUtils/writeGameProfile (Lnet/minecraft/nbt/CompoundTag;Lcom/mojang/authlib/GameProfile;)Lnet/minecraft/nbt/CompoundTag; +MD: net/minecraft/nbt/NbtUtils/m_129233_ (Lnet/minecraft/nbt/Tag;)Ljava/util/UUID; net/minecraft/nbt/NbtUtils/loadUUID (Lnet/minecraft/nbt/Tag;)Ljava/util/UUID; +MD: net/minecraft/nbt/NbtUtils/m_129235_ (Lnet/minecraft/nbt/Tag;Lnet/minecraft/nbt/Tag;Z)Z net/minecraft/nbt/NbtUtils/compareNbt (Lnet/minecraft/nbt/Tag;Lnet/minecraft/nbt/Tag;Z)Z +MD: net/minecraft/nbt/NbtUtils/m_129239_ (Lnet/minecraft/nbt/CompoundTag;)Lnet/minecraft/core/BlockPos; net/minecraft/nbt/NbtUtils/readBlockPos (Lnet/minecraft/nbt/CompoundTag;)Lnet/minecraft/core/BlockPos; +MD: net/minecraft/nbt/NbtUtils/m_178019_ (ILjava/lang/StringBuilder;)Ljava/lang/StringBuilder; net/minecraft/nbt/NbtUtils/indent (ILjava/lang/StringBuilder;)Ljava/lang/StringBuilder; +MD: net/minecraft/nbt/NbtUtils/m_178022_ (Lnet/minecraft/world/level/material/FluidState;)Lnet/minecraft/nbt/CompoundTag; net/minecraft/nbt/NbtUtils/writeFluidState (Lnet/minecraft/world/level/material/FluidState;)Lnet/minecraft/nbt/CompoundTag; +MD: net/minecraft/nbt/NbtUtils/m_178024_ (Ljava/lang/String;)Lnet/minecraft/nbt/CompoundTag; net/minecraft/nbt/NbtUtils/snbtToStructure (Ljava/lang/String;)Lnet/minecraft/nbt/CompoundTag; +MD: net/minecraft/nbt/NbtUtils/m_178026_ (Ljava/lang/StringBuilder;Lnet/minecraft/nbt/Tag;IZ)Ljava/lang/StringBuilder; net/minecraft/nbt/NbtUtils/prettyPrint (Ljava/lang/StringBuilder;Lnet/minecraft/nbt/Tag;IZ)Ljava/lang/StringBuilder; +MD: net/minecraft/nbt/NbtUtils/m_178031_ (Ljava/util/Map;Lnet/minecraft/nbt/CompoundTag;)Lnet/minecraft/nbt/ListTag; net/minecraft/nbt/NbtUtils/lambda$unpackStructureTemplate$10 (Ljava/util/Map;Lnet/minecraft/nbt/CompoundTag;)Lnet/minecraft/nbt/ListTag; +MD: net/minecraft/nbt/NbtUtils/m_178034_ (Lnet/minecraft/nbt/CompoundTag;Ljava/lang/String;)Ljava/lang/String; net/minecraft/nbt/NbtUtils/lambda$packBlockState$11 (Lnet/minecraft/nbt/CompoundTag;Ljava/lang/String;)Ljava/lang/String; +MD: net/minecraft/nbt/NbtUtils/m_178037_ (Lnet/minecraft/nbt/CompoundTag;Ljava/lang/String;Ljava/lang/String;)V net/minecraft/nbt/NbtUtils/lambda$unpackBlockState$12 (Lnet/minecraft/nbt/CompoundTag;Ljava/lang/String;Ljava/lang/String;)V +MD: net/minecraft/nbt/NbtUtils/m_178041_ (Lnet/minecraft/nbt/ListTag;)D net/minecraft/nbt/NbtUtils/lambda$static$5 (Lnet/minecraft/nbt/ListTag;)D +MD: net/minecraft/nbt/NbtUtils/m_178043_ (Lnet/minecraft/nbt/ListTag;Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/nbt/NbtUtils/lambda$packStructureTemplate$9 (Lnet/minecraft/nbt/ListTag;Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/nbt/NbtUtils/m_178046_ (Lnet/minecraft/nbt/ListTag;Lnet/minecraft/nbt/ListTag;Lnet/minecraft/nbt/ListTag;)V net/minecraft/nbt/NbtUtils/lambda$packStructureTemplate$6 (Lnet/minecraft/nbt/ListTag;Lnet/minecraft/nbt/ListTag;Lnet/minecraft/nbt/ListTag;)V +MD: net/minecraft/nbt/NbtUtils/m_178050_ (Lnet/minecraft/nbt/Tag;Z)Ljava/lang/String; net/minecraft/nbt/NbtUtils/prettyPrint (Lnet/minecraft/nbt/Tag;Z)Ljava/lang/String; +MD: net/minecraft/nbt/NbtUtils/m_178053_ (Ljava/lang/String;)Lnet/minecraft/nbt/CompoundTag; net/minecraft/nbt/NbtUtils/unpackBlockState (Ljava/lang/String;)Lnet/minecraft/nbt/CompoundTag; +MD: net/minecraft/nbt/NbtUtils/m_178055_ (Lnet/minecraft/nbt/ListTag;)D net/minecraft/nbt/NbtUtils/lambda$static$4 (Lnet/minecraft/nbt/ListTag;)D +MD: net/minecraft/nbt/NbtUtils/m_178057_ (Lnet/minecraft/nbt/Tag;)Ljava/lang/String; net/minecraft/nbt/NbtUtils/prettyPrint (Lnet/minecraft/nbt/Tag;)Ljava/lang/String; +MD: net/minecraft/nbt/NbtUtils/m_178059_ (Lnet/minecraft/nbt/ListTag;)D net/minecraft/nbt/NbtUtils/lambda$static$3 (Lnet/minecraft/nbt/ListTag;)D +MD: net/minecraft/nbt/NbtUtils/m_178061_ (Lnet/minecraft/nbt/Tag;)Lnet/minecraft/network/chat/Component; net/minecraft/nbt/NbtUtils/toPrettyComponent (Lnet/minecraft/nbt/Tag;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/nbt/NbtUtils/m_178063_ (Lnet/minecraft/nbt/CompoundTag;)Ljava/lang/String; net/minecraft/nbt/NbtUtils/structureToSnbt (Lnet/minecraft/nbt/CompoundTag;)Ljava/lang/String; +MD: net/minecraft/nbt/NbtUtils/m_178065_ (Lnet/minecraft/nbt/ListTag;)I net/minecraft/nbt/NbtUtils/lambda$static$2 (Lnet/minecraft/nbt/ListTag;)I +MD: net/minecraft/nbt/NbtUtils/m_178067_ (Lnet/minecraft/nbt/CompoundTag;)Lnet/minecraft/nbt/CompoundTag; net/minecraft/nbt/NbtUtils/packStructureTemplate (Lnet/minecraft/nbt/CompoundTag;)Lnet/minecraft/nbt/CompoundTag; +MD: net/minecraft/nbt/NbtUtils/m_178069_ (Lnet/minecraft/nbt/ListTag;)I net/minecraft/nbt/NbtUtils/lambda$static$1 (Lnet/minecraft/nbt/ListTag;)I +MD: net/minecraft/nbt/NbtUtils/m_178071_ (Lnet/minecraft/nbt/CompoundTag;)Lnet/minecraft/nbt/CompoundTag; net/minecraft/nbt/NbtUtils/unpackStructureTemplate (Lnet/minecraft/nbt/CompoundTag;)Lnet/minecraft/nbt/CompoundTag; +MD: net/minecraft/nbt/NbtUtils/m_178073_ (Lnet/minecraft/nbt/ListTag;)I net/minecraft/nbt/NbtUtils/lambda$static$0 (Lnet/minecraft/nbt/ListTag;)I +MD: net/minecraft/nbt/NbtUtils/m_178075_ (Lnet/minecraft/nbt/CompoundTag;)Ljava/lang/String; net/minecraft/nbt/NbtUtils/packBlockState (Lnet/minecraft/nbt/CompoundTag;)Ljava/lang/String; +MD: net/minecraft/nbt/NbtUtils/m_178077_ (Lnet/minecraft/nbt/CompoundTag;)Lnet/minecraft/nbt/ListTag; net/minecraft/nbt/NbtUtils/lambda$packStructureTemplate$8 (Lnet/minecraft/nbt/CompoundTag;)Lnet/minecraft/nbt/ListTag; +MD: net/minecraft/nbt/NbtUtils/m_178079_ (Lnet/minecraft/nbt/CompoundTag;)Lnet/minecraft/nbt/ListTag; net/minecraft/nbt/NbtUtils/lambda$packStructureTemplate$7 (Lnet/minecraft/nbt/CompoundTag;)Lnet/minecraft/nbt/ListTag; +MD: net/minecraft/nbt/NbtUtils/m_247651_ (Lnet/minecraft/core/HolderGetter;Lnet/minecraft/nbt/CompoundTag;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/nbt/NbtUtils/readBlockState (Lnet/minecraft/core/HolderGetter;Lnet/minecraft/nbt/CompoundTag;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/nbt/NbtUtils/m_264046_ (Lnet/minecraft/nbt/CompoundTag;I)Lnet/minecraft/nbt/CompoundTag; net/minecraft/nbt/NbtUtils/addDataVersion (Lnet/minecraft/nbt/CompoundTag;I)Lnet/minecraft/nbt/CompoundTag; +MD: net/minecraft/nbt/NbtUtils/m_264171_ (Lnet/minecraft/nbt/CompoundTag;)Lnet/minecraft/nbt/CompoundTag; net/minecraft/nbt/NbtUtils/addCurrentDataVersion (Lnet/minecraft/nbt/CompoundTag;)Lnet/minecraft/nbt/CompoundTag; +MD: net/minecraft/nbt/NbtUtils/m_264487_ (Lnet/minecraft/nbt/CompoundTag;I)I net/minecraft/nbt/NbtUtils/getDataVersion (Lnet/minecraft/nbt/CompoundTag;I)I +MD: net/minecraft/nbt/NumericTag/ ()V net/minecraft/nbt/NumericTag/ ()V +MD: net/minecraft/nbt/NumericTag/m_7046_ ()J net/minecraft/nbt/NumericTag/getAsLong ()J +MD: net/minecraft/nbt/NumericTag/m_7047_ ()I net/minecraft/nbt/NumericTag/getAsInt ()I +MD: net/minecraft/nbt/NumericTag/m_7053_ ()S net/minecraft/nbt/NumericTag/getAsShort ()S +MD: net/minecraft/nbt/NumericTag/m_7057_ ()F net/minecraft/nbt/NumericTag/getAsFloat ()F +MD: net/minecraft/nbt/NumericTag/m_7061_ ()D net/minecraft/nbt/NumericTag/getAsDouble ()D +MD: net/minecraft/nbt/NumericTag/m_7063_ ()B net/minecraft/nbt/NumericTag/getAsByte ()B +MD: net/minecraft/nbt/NumericTag/m_8103_ ()Ljava/lang/Number; net/minecraft/nbt/NumericTag/getAsNumber ()Ljava/lang/Number; +MD: net/minecraft/nbt/NumericTag/toString ()Ljava/lang/String; net/minecraft/nbt/NumericTag/toString ()Ljava/lang/String; +MD: net/minecraft/nbt/ShortTag/ ()V net/minecraft/nbt/ShortTag/ ()V +MD: net/minecraft/nbt/ShortTag/ (S)V net/minecraft/nbt/ShortTag/ (S)V +MD: net/minecraft/nbt/ShortTag/equals (Ljava/lang/Object;)Z net/minecraft/nbt/ShortTag/equals (Ljava/lang/Object;)Z +MD: net/minecraft/nbt/ShortTag/hashCode ()I net/minecraft/nbt/ShortTag/hashCode ()I +MD: net/minecraft/nbt/ShortTag/m_129258_ (S)Lnet/minecraft/nbt/ShortTag; net/minecraft/nbt/ShortTag/valueOf (S)Lnet/minecraft/nbt/ShortTag; +MD: net/minecraft/nbt/ShortTag/m_142327_ (Lnet/minecraft/nbt/TagVisitor;)V net/minecraft/nbt/ShortTag/accept (Lnet/minecraft/nbt/TagVisitor;)V +MD: net/minecraft/nbt/ShortTag/m_196533_ (Lnet/minecraft/nbt/StreamTagVisitor;)Lnet/minecraft/nbt/StreamTagVisitor$ValueResult; net/minecraft/nbt/ShortTag/accept (Lnet/minecraft/nbt/StreamTagVisitor;)Lnet/minecraft/nbt/StreamTagVisitor$ValueResult; +MD: net/minecraft/nbt/ShortTag/m_263179_ ()I net/minecraft/nbt/ShortTag/sizeInBytes ()I +MD: net/minecraft/nbt/ShortTag/m_6426_ ()Lnet/minecraft/nbt/ShortTag; net/minecraft/nbt/ShortTag/copy ()Lnet/minecraft/nbt/ShortTag; +MD: net/minecraft/nbt/ShortTag/m_6426_ ()Lnet/minecraft/nbt/Tag; net/minecraft/nbt/ShortTag/copy ()Lnet/minecraft/nbt/Tag; +MD: net/minecraft/nbt/ShortTag/m_6434_ (Ljava/io/DataOutput;)V net/minecraft/nbt/ShortTag/write (Ljava/io/DataOutput;)V +MD: net/minecraft/nbt/ShortTag/m_6458_ ()Lnet/minecraft/nbt/TagType; net/minecraft/nbt/ShortTag/getType ()Lnet/minecraft/nbt/TagType; +MD: net/minecraft/nbt/ShortTag/m_7046_ ()J net/minecraft/nbt/ShortTag/getAsLong ()J +MD: net/minecraft/nbt/ShortTag/m_7047_ ()I net/minecraft/nbt/ShortTag/getAsInt ()I +MD: net/minecraft/nbt/ShortTag/m_7053_ ()S net/minecraft/nbt/ShortTag/getAsShort ()S +MD: net/minecraft/nbt/ShortTag/m_7057_ ()F net/minecraft/nbt/ShortTag/getAsFloat ()F +MD: net/minecraft/nbt/ShortTag/m_7060_ ()B net/minecraft/nbt/ShortTag/getId ()B +MD: net/minecraft/nbt/ShortTag/m_7061_ ()D net/minecraft/nbt/ShortTag/getAsDouble ()D +MD: net/minecraft/nbt/ShortTag/m_7063_ ()B net/minecraft/nbt/ShortTag/getAsByte ()B +MD: net/minecraft/nbt/ShortTag/m_8103_ ()Ljava/lang/Number; net/minecraft/nbt/ShortTag/getAsNumber ()Ljava/lang/Number; +MD: net/minecraft/nbt/ShortTag$1/ ()V net/minecraft/nbt/ShortTag$1/ ()V +MD: net/minecraft/nbt/ShortTag$1/m_196292_ ()I net/minecraft/nbt/ShortTag$1/size ()I +MD: net/minecraft/nbt/ShortTag$1/m_196511_ (Ljava/io/DataInput;Lnet/minecraft/nbt/StreamTagVisitor;)Lnet/minecraft/nbt/StreamTagVisitor$ValueResult; net/minecraft/nbt/ShortTag$1/parse (Ljava/io/DataInput;Lnet/minecraft/nbt/StreamTagVisitor;)Lnet/minecraft/nbt/StreamTagVisitor$ValueResult; +MD: net/minecraft/nbt/ShortTag$1/m_5986_ ()Ljava/lang/String; net/minecraft/nbt/ShortTag$1/getPrettyName ()Ljava/lang/String; +MD: net/minecraft/nbt/ShortTag$1/m_5987_ ()Ljava/lang/String; net/minecraft/nbt/ShortTag$1/getName ()Ljava/lang/String; +MD: net/minecraft/nbt/ShortTag$1/m_7064_ ()Z net/minecraft/nbt/ShortTag$1/isValue ()Z +MD: net/minecraft/nbt/ShortTag$1/m_7300_ (Ljava/io/DataInput;ILnet/minecraft/nbt/NbtAccounter;)Lnet/minecraft/nbt/Tag; net/minecraft/nbt/ShortTag$1/load (Ljava/io/DataInput;ILnet/minecraft/nbt/NbtAccounter;)Lnet/minecraft/nbt/Tag; +MD: net/minecraft/nbt/ShortTag$1/m_7300_ (Ljava/io/DataInput;ILnet/minecraft/nbt/NbtAccounter;)Lnet/minecraft/nbt/ShortTag; net/minecraft/nbt/ShortTag$1/load (Ljava/io/DataInput;ILnet/minecraft/nbt/NbtAccounter;)Lnet/minecraft/nbt/ShortTag; +MD: net/minecraft/nbt/ShortTag$Cache/ ()V net/minecraft/nbt/ShortTag$Cache/ ()V +MD: net/minecraft/nbt/ShortTag$Cache/ ()V net/minecraft/nbt/ShortTag$Cache/ ()V +MD: net/minecraft/nbt/SnbtPrinterTagVisitor/ ()V net/minecraft/nbt/SnbtPrinterTagVisitor/ ()V +MD: net/minecraft/nbt/SnbtPrinterTagVisitor/ (Ljava/lang/String;ILjava/util/List;)V net/minecraft/nbt/SnbtPrinterTagVisitor/ (Ljava/lang/String;ILjava/util/List;)V +MD: net/minecraft/nbt/SnbtPrinterTagVisitor/ ()V net/minecraft/nbt/SnbtPrinterTagVisitor/ ()V +MD: net/minecraft/nbt/SnbtPrinterTagVisitor/m_141946_ (Lnet/minecraft/nbt/ByteTag;)V net/minecraft/nbt/SnbtPrinterTagVisitor/visitByte (Lnet/minecraft/nbt/ByteTag;)V +MD: net/minecraft/nbt/SnbtPrinterTagVisitor/m_142045_ (Lnet/minecraft/nbt/IntTag;)V net/minecraft/nbt/SnbtPrinterTagVisitor/visitInt (Lnet/minecraft/nbt/IntTag;)V +MD: net/minecraft/nbt/SnbtPrinterTagVisitor/m_142046_ (Lnet/minecraft/nbt/LongTag;)V net/minecraft/nbt/SnbtPrinterTagVisitor/visitLong (Lnet/minecraft/nbt/LongTag;)V +MD: net/minecraft/nbt/SnbtPrinterTagVisitor/m_142121_ (Lnet/minecraft/nbt/DoubleTag;)V net/minecraft/nbt/SnbtPrinterTagVisitor/visitDouble (Lnet/minecraft/nbt/DoubleTag;)V +MD: net/minecraft/nbt/SnbtPrinterTagVisitor/m_142154_ (Lnet/minecraft/nbt/ByteArrayTag;)V net/minecraft/nbt/SnbtPrinterTagVisitor/visitByteArray (Lnet/minecraft/nbt/ByteArrayTag;)V +MD: net/minecraft/nbt/SnbtPrinterTagVisitor/m_142181_ (Lnet/minecraft/nbt/FloatTag;)V net/minecraft/nbt/SnbtPrinterTagVisitor/visitFloat (Lnet/minecraft/nbt/FloatTag;)V +MD: net/minecraft/nbt/SnbtPrinterTagVisitor/m_142183_ (Lnet/minecraft/nbt/ShortTag;)V net/minecraft/nbt/SnbtPrinterTagVisitor/visitShort (Lnet/minecraft/nbt/ShortTag;)V +MD: net/minecraft/nbt/SnbtPrinterTagVisitor/m_142251_ (Lnet/minecraft/nbt/IntArrayTag;)V net/minecraft/nbt/SnbtPrinterTagVisitor/visitIntArray (Lnet/minecraft/nbt/IntArrayTag;)V +MD: net/minecraft/nbt/SnbtPrinterTagVisitor/m_142303_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/nbt/SnbtPrinterTagVisitor/visitCompound (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/nbt/SnbtPrinterTagVisitor/m_142309_ (Lnet/minecraft/nbt/LongArrayTag;)V net/minecraft/nbt/SnbtPrinterTagVisitor/visitLongArray (Lnet/minecraft/nbt/LongArrayTag;)V +MD: net/minecraft/nbt/SnbtPrinterTagVisitor/m_142384_ (Lnet/minecraft/nbt/EndTag;)V net/minecraft/nbt/SnbtPrinterTagVisitor/visitEnd (Lnet/minecraft/nbt/EndTag;)V +MD: net/minecraft/nbt/SnbtPrinterTagVisitor/m_142447_ (Lnet/minecraft/nbt/ListTag;)V net/minecraft/nbt/SnbtPrinterTagVisitor/visitList (Lnet/minecraft/nbt/ListTag;)V +MD: net/minecraft/nbt/SnbtPrinterTagVisitor/m_142614_ (Lnet/minecraft/nbt/StringTag;)V net/minecraft/nbt/SnbtPrinterTagVisitor/visitString (Lnet/minecraft/nbt/StringTag;)V +MD: net/minecraft/nbt/SnbtPrinterTagVisitor/m_178110_ ()Ljava/lang/String; net/minecraft/nbt/SnbtPrinterTagVisitor/pathString ()Ljava/lang/String; +MD: net/minecraft/nbt/SnbtPrinterTagVisitor/m_178111_ (Ljava/lang/String;)Ljava/lang/String; net/minecraft/nbt/SnbtPrinterTagVisitor/handleEscapePretty (Ljava/lang/String;)Ljava/lang/String; +MD: net/minecraft/nbt/SnbtPrinterTagVisitor/m_178113_ (Ljava/util/HashMap;)V net/minecraft/nbt/SnbtPrinterTagVisitor/lambda$static$0 (Ljava/util/HashMap;)V +MD: net/minecraft/nbt/SnbtPrinterTagVisitor/m_178141_ (Lnet/minecraft/nbt/Tag;)Ljava/lang/String; net/minecraft/nbt/SnbtPrinterTagVisitor/visit (Lnet/minecraft/nbt/Tag;)Ljava/lang/String; +MD: net/minecraft/nbt/SnbtPrinterTagVisitor/m_178143_ ()V net/minecraft/nbt/SnbtPrinterTagVisitor/popPath ()V +MD: net/minecraft/nbt/SnbtPrinterTagVisitor/m_178144_ (Ljava/lang/String;)V net/minecraft/nbt/SnbtPrinterTagVisitor/pushPath (Ljava/lang/String;)V +MD: net/minecraft/nbt/SnbtPrinterTagVisitor/m_178146_ (Lnet/minecraft/nbt/CompoundTag;)Ljava/util/List; net/minecraft/nbt/SnbtPrinterTagVisitor/getKeys (Lnet/minecraft/nbt/CompoundTag;)Ljava/util/List; +MD: net/minecraft/nbt/StreamTagVisitor/m_196152_ ([B)Lnet/minecraft/nbt/StreamTagVisitor$ValueResult; net/minecraft/nbt/StreamTagVisitor/visit ([B)Lnet/minecraft/nbt/StreamTagVisitor$ValueResult; +MD: net/minecraft/nbt/StreamTagVisitor/m_196209_ (B)Lnet/minecraft/nbt/StreamTagVisitor$ValueResult; net/minecraft/nbt/StreamTagVisitor/visit (B)Lnet/minecraft/nbt/StreamTagVisitor$ValueResult; +MD: net/minecraft/nbt/StreamTagVisitor/m_196213_ (Lnet/minecraft/nbt/TagType;)Lnet/minecraft/nbt/StreamTagVisitor$ValueResult; net/minecraft/nbt/StreamTagVisitor/visitRootEntry (Lnet/minecraft/nbt/TagType;)Lnet/minecraft/nbt/StreamTagVisitor$ValueResult; +MD: net/minecraft/nbt/StreamTagVisitor/m_196214_ (Lnet/minecraft/nbt/TagType;)Lnet/minecraft/nbt/StreamTagVisitor$EntryResult; net/minecraft/nbt/StreamTagVisitor/visitEntry (Lnet/minecraft/nbt/TagType;)Lnet/minecraft/nbt/StreamTagVisitor$EntryResult; +MD: net/minecraft/nbt/StreamTagVisitor/m_196280_ ([J)Lnet/minecraft/nbt/StreamTagVisitor$ValueResult; net/minecraft/nbt/StreamTagVisitor/visit ([J)Lnet/minecraft/nbt/StreamTagVisitor$ValueResult; +MD: net/minecraft/nbt/StreamTagVisitor/m_196295_ (J)Lnet/minecraft/nbt/StreamTagVisitor$ValueResult; net/minecraft/nbt/StreamTagVisitor/visit (J)Lnet/minecraft/nbt/StreamTagVisitor$ValueResult; +MD: net/minecraft/nbt/StreamTagVisitor/m_196338_ (Lnet/minecraft/nbt/TagType;I)Lnet/minecraft/nbt/StreamTagVisitor$EntryResult; net/minecraft/nbt/StreamTagVisitor/visitElement (Lnet/minecraft/nbt/TagType;I)Lnet/minecraft/nbt/StreamTagVisitor$EntryResult; +MD: net/minecraft/nbt/StreamTagVisitor/m_196339_ (Lnet/minecraft/nbt/TagType;I)Lnet/minecraft/nbt/StreamTagVisitor$ValueResult; net/minecraft/nbt/StreamTagVisitor/visitList (Lnet/minecraft/nbt/TagType;I)Lnet/minecraft/nbt/StreamTagVisitor$ValueResult; +MD: net/minecraft/nbt/StreamTagVisitor/m_196353_ (I)Lnet/minecraft/nbt/StreamTagVisitor$ValueResult; net/minecraft/nbt/StreamTagVisitor/visit (I)Lnet/minecraft/nbt/StreamTagVisitor$ValueResult; +MD: net/minecraft/nbt/StreamTagVisitor/m_196376_ ([I)Lnet/minecraft/nbt/StreamTagVisitor$ValueResult; net/minecraft/nbt/StreamTagVisitor/visit ([I)Lnet/minecraft/nbt/StreamTagVisitor$ValueResult; +MD: net/minecraft/nbt/StreamTagVisitor/m_196425_ (Lnet/minecraft/nbt/TagType;Ljava/lang/String;)Lnet/minecraft/nbt/StreamTagVisitor$EntryResult; net/minecraft/nbt/StreamTagVisitor/visitEntry (Lnet/minecraft/nbt/TagType;Ljava/lang/String;)Lnet/minecraft/nbt/StreamTagVisitor$EntryResult; +MD: net/minecraft/nbt/StreamTagVisitor/m_196455_ (D)Lnet/minecraft/nbt/StreamTagVisitor$ValueResult; net/minecraft/nbt/StreamTagVisitor/visit (D)Lnet/minecraft/nbt/StreamTagVisitor$ValueResult; +MD: net/minecraft/nbt/StreamTagVisitor/m_196458_ (Ljava/lang/String;)Lnet/minecraft/nbt/StreamTagVisitor$ValueResult; net/minecraft/nbt/StreamTagVisitor/visit (Ljava/lang/String;)Lnet/minecraft/nbt/StreamTagVisitor$ValueResult; +MD: net/minecraft/nbt/StreamTagVisitor/m_196525_ ()Lnet/minecraft/nbt/StreamTagVisitor$ValueResult; net/minecraft/nbt/StreamTagVisitor/visitEnd ()Lnet/minecraft/nbt/StreamTagVisitor$ValueResult; +MD: net/minecraft/nbt/StreamTagVisitor/m_196527_ ()Lnet/minecraft/nbt/StreamTagVisitor$ValueResult; net/minecraft/nbt/StreamTagVisitor/visitContainerEnd ()Lnet/minecraft/nbt/StreamTagVisitor$ValueResult; +MD: net/minecraft/nbt/StreamTagVisitor/m_196532_ (F)Lnet/minecraft/nbt/StreamTagVisitor$ValueResult; net/minecraft/nbt/StreamTagVisitor/visit (F)Lnet/minecraft/nbt/StreamTagVisitor$ValueResult; +MD: net/minecraft/nbt/StreamTagVisitor/m_196553_ (S)Lnet/minecraft/nbt/StreamTagVisitor$ValueResult; net/minecraft/nbt/StreamTagVisitor/visit (S)Lnet/minecraft/nbt/StreamTagVisitor$ValueResult; +MD: net/minecraft/nbt/StreamTagVisitor$EntryResult/ ()V net/minecraft/nbt/StreamTagVisitor$EntryResult/ ()V +MD: net/minecraft/nbt/StreamTagVisitor$EntryResult/ (Ljava/lang/String;I)V net/minecraft/nbt/StreamTagVisitor$EntryResult/ (Ljava/lang/String;I)V +MD: net/minecraft/nbt/StreamTagVisitor$EntryResult/m_197547_ ()[Lnet/minecraft/nbt/StreamTagVisitor$EntryResult; net/minecraft/nbt/StreamTagVisitor$EntryResult/$values ()[Lnet/minecraft/nbt/StreamTagVisitor$EntryResult; +MD: net/minecraft/nbt/StreamTagVisitor$EntryResult/valueOf (Ljava/lang/String;)Lnet/minecraft/nbt/StreamTagVisitor$EntryResult; net/minecraft/nbt/StreamTagVisitor$EntryResult/valueOf (Ljava/lang/String;)Lnet/minecraft/nbt/StreamTagVisitor$EntryResult; +MD: net/minecraft/nbt/StreamTagVisitor$EntryResult/values ()[Lnet/minecraft/nbt/StreamTagVisitor$EntryResult; net/minecraft/nbt/StreamTagVisitor$EntryResult/values ()[Lnet/minecraft/nbt/StreamTagVisitor$EntryResult; +MD: net/minecraft/nbt/StreamTagVisitor$ValueResult/ ()V net/minecraft/nbt/StreamTagVisitor$ValueResult/ ()V +MD: net/minecraft/nbt/StreamTagVisitor$ValueResult/ (Ljava/lang/String;I)V net/minecraft/nbt/StreamTagVisitor$ValueResult/ (Ljava/lang/String;I)V +MD: net/minecraft/nbt/StreamTagVisitor$ValueResult/m_197559_ ()[Lnet/minecraft/nbt/StreamTagVisitor$ValueResult; net/minecraft/nbt/StreamTagVisitor$ValueResult/$values ()[Lnet/minecraft/nbt/StreamTagVisitor$ValueResult; +MD: net/minecraft/nbt/StreamTagVisitor$ValueResult/valueOf (Ljava/lang/String;)Lnet/minecraft/nbt/StreamTagVisitor$ValueResult; net/minecraft/nbt/StreamTagVisitor$ValueResult/valueOf (Ljava/lang/String;)Lnet/minecraft/nbt/StreamTagVisitor$ValueResult; +MD: net/minecraft/nbt/StreamTagVisitor$ValueResult/values ()[Lnet/minecraft/nbt/StreamTagVisitor$ValueResult; net/minecraft/nbt/StreamTagVisitor$ValueResult/values ()[Lnet/minecraft/nbt/StreamTagVisitor$ValueResult; +MD: net/minecraft/nbt/StringTag/ ()V net/minecraft/nbt/StringTag/ ()V +MD: net/minecraft/nbt/StringTag/ (Ljava/lang/String;)V net/minecraft/nbt/StringTag/ (Ljava/lang/String;)V +MD: net/minecraft/nbt/StringTag/equals (Ljava/lang/Object;)Z net/minecraft/nbt/StringTag/equals (Ljava/lang/Object;)Z +MD: net/minecraft/nbt/StringTag/hashCode ()I net/minecraft/nbt/StringTag/hashCode ()I +MD: net/minecraft/nbt/StringTag/m_129297_ (Ljava/lang/String;)Lnet/minecraft/nbt/StringTag; net/minecraft/nbt/StringTag/valueOf (Ljava/lang/String;)Lnet/minecraft/nbt/StringTag; +MD: net/minecraft/nbt/StringTag/m_129303_ (Ljava/lang/String;)Ljava/lang/String; net/minecraft/nbt/StringTag/quoteAndEscape (Ljava/lang/String;)Ljava/lang/String; +MD: net/minecraft/nbt/StringTag/m_142327_ (Lnet/minecraft/nbt/TagVisitor;)V net/minecraft/nbt/StringTag/accept (Lnet/minecraft/nbt/TagVisitor;)V +MD: net/minecraft/nbt/StringTag/m_196533_ (Lnet/minecraft/nbt/StreamTagVisitor;)Lnet/minecraft/nbt/StreamTagVisitor$ValueResult; net/minecraft/nbt/StringTag/accept (Lnet/minecraft/nbt/StreamTagVisitor;)Lnet/minecraft/nbt/StreamTagVisitor$ValueResult; +MD: net/minecraft/nbt/StringTag/m_197563_ (Ljava/io/DataInput;)V net/minecraft/nbt/StringTag/skipString (Ljava/io/DataInput;)V +MD: net/minecraft/nbt/StringTag/m_263179_ ()I net/minecraft/nbt/StringTag/sizeInBytes ()I +MD: net/minecraft/nbt/StringTag/m_6426_ ()Lnet/minecraft/nbt/StringTag; net/minecraft/nbt/StringTag/copy ()Lnet/minecraft/nbt/StringTag; +MD: net/minecraft/nbt/StringTag/m_6426_ ()Lnet/minecraft/nbt/Tag; net/minecraft/nbt/StringTag/copy ()Lnet/minecraft/nbt/Tag; +MD: net/minecraft/nbt/StringTag/m_6434_ (Ljava/io/DataOutput;)V net/minecraft/nbt/StringTag/write (Ljava/io/DataOutput;)V +MD: net/minecraft/nbt/StringTag/m_6458_ ()Lnet/minecraft/nbt/TagType; net/minecraft/nbt/StringTag/getType ()Lnet/minecraft/nbt/TagType; +MD: net/minecraft/nbt/StringTag/m_7060_ ()B net/minecraft/nbt/StringTag/getId ()B +MD: net/minecraft/nbt/StringTag/m_7916_ ()Ljava/lang/String; net/minecraft/nbt/StringTag/getAsString ()Ljava/lang/String; +MD: net/minecraft/nbt/StringTag/toString ()Ljava/lang/String; net/minecraft/nbt/StringTag/toString ()Ljava/lang/String; +MD: net/minecraft/nbt/StringTag$1/ ()V net/minecraft/nbt/StringTag$1/ ()V +MD: net/minecraft/nbt/StringTag$1/m_196159_ (Ljava/io/DataInput;)V net/minecraft/nbt/StringTag$1/skip (Ljava/io/DataInput;)V +MD: net/minecraft/nbt/StringTag$1/m_196511_ (Ljava/io/DataInput;Lnet/minecraft/nbt/StreamTagVisitor;)Lnet/minecraft/nbt/StreamTagVisitor$ValueResult; net/minecraft/nbt/StringTag$1/parse (Ljava/io/DataInput;Lnet/minecraft/nbt/StreamTagVisitor;)Lnet/minecraft/nbt/StreamTagVisitor$ValueResult; +MD: net/minecraft/nbt/StringTag$1/m_5986_ ()Ljava/lang/String; net/minecraft/nbt/StringTag$1/getPrettyName ()Ljava/lang/String; +MD: net/minecraft/nbt/StringTag$1/m_5987_ ()Ljava/lang/String; net/minecraft/nbt/StringTag$1/getName ()Ljava/lang/String; +MD: net/minecraft/nbt/StringTag$1/m_7064_ ()Z net/minecraft/nbt/StringTag$1/isValue ()Z +MD: net/minecraft/nbt/StringTag$1/m_7300_ (Ljava/io/DataInput;ILnet/minecraft/nbt/NbtAccounter;)Lnet/minecraft/nbt/Tag; net/minecraft/nbt/StringTag$1/load (Ljava/io/DataInput;ILnet/minecraft/nbt/NbtAccounter;)Lnet/minecraft/nbt/Tag; +MD: net/minecraft/nbt/StringTag$1/m_7300_ (Ljava/io/DataInput;ILnet/minecraft/nbt/NbtAccounter;)Lnet/minecraft/nbt/StringTag; net/minecraft/nbt/StringTag$1/load (Ljava/io/DataInput;ILnet/minecraft/nbt/NbtAccounter;)Lnet/minecraft/nbt/StringTag; +MD: net/minecraft/nbt/StringTagVisitor/ ()V net/minecraft/nbt/StringTagVisitor/ ()V +MD: net/minecraft/nbt/StringTagVisitor/ ()V net/minecraft/nbt/StringTagVisitor/ ()V +MD: net/minecraft/nbt/StringTagVisitor/m_141946_ (Lnet/minecraft/nbt/ByteTag;)V net/minecraft/nbt/StringTagVisitor/visitByte (Lnet/minecraft/nbt/ByteTag;)V +MD: net/minecraft/nbt/StringTagVisitor/m_142045_ (Lnet/minecraft/nbt/IntTag;)V net/minecraft/nbt/StringTagVisitor/visitInt (Lnet/minecraft/nbt/IntTag;)V +MD: net/minecraft/nbt/StringTagVisitor/m_142046_ (Lnet/minecraft/nbt/LongTag;)V net/minecraft/nbt/StringTagVisitor/visitLong (Lnet/minecraft/nbt/LongTag;)V +MD: net/minecraft/nbt/StringTagVisitor/m_142121_ (Lnet/minecraft/nbt/DoubleTag;)V net/minecraft/nbt/StringTagVisitor/visitDouble (Lnet/minecraft/nbt/DoubleTag;)V +MD: net/minecraft/nbt/StringTagVisitor/m_142154_ (Lnet/minecraft/nbt/ByteArrayTag;)V net/minecraft/nbt/StringTagVisitor/visitByteArray (Lnet/minecraft/nbt/ByteArrayTag;)V +MD: net/minecraft/nbt/StringTagVisitor/m_142181_ (Lnet/minecraft/nbt/FloatTag;)V net/minecraft/nbt/StringTagVisitor/visitFloat (Lnet/minecraft/nbt/FloatTag;)V +MD: net/minecraft/nbt/StringTagVisitor/m_142183_ (Lnet/minecraft/nbt/ShortTag;)V net/minecraft/nbt/StringTagVisitor/visitShort (Lnet/minecraft/nbt/ShortTag;)V +MD: net/minecraft/nbt/StringTagVisitor/m_142251_ (Lnet/minecraft/nbt/IntArrayTag;)V net/minecraft/nbt/StringTagVisitor/visitIntArray (Lnet/minecraft/nbt/IntArrayTag;)V +MD: net/minecraft/nbt/StringTagVisitor/m_142303_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/nbt/StringTagVisitor/visitCompound (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/nbt/StringTagVisitor/m_142309_ (Lnet/minecraft/nbt/LongArrayTag;)V net/minecraft/nbt/StringTagVisitor/visitLongArray (Lnet/minecraft/nbt/LongArrayTag;)V +MD: net/minecraft/nbt/StringTagVisitor/m_142384_ (Lnet/minecraft/nbt/EndTag;)V net/minecraft/nbt/StringTagVisitor/visitEnd (Lnet/minecraft/nbt/EndTag;)V +MD: net/minecraft/nbt/StringTagVisitor/m_142447_ (Lnet/minecraft/nbt/ListTag;)V net/minecraft/nbt/StringTagVisitor/visitList (Lnet/minecraft/nbt/ListTag;)V +MD: net/minecraft/nbt/StringTagVisitor/m_142614_ (Lnet/minecraft/nbt/StringTag;)V net/minecraft/nbt/StringTagVisitor/visitString (Lnet/minecraft/nbt/StringTag;)V +MD: net/minecraft/nbt/StringTagVisitor/m_178159_ (Ljava/lang/String;)Ljava/lang/String; net/minecraft/nbt/StringTagVisitor/handleEscape (Ljava/lang/String;)Ljava/lang/String; +MD: net/minecraft/nbt/StringTagVisitor/m_178187_ (Lnet/minecraft/nbt/Tag;)Ljava/lang/String; net/minecraft/nbt/StringTagVisitor/visit (Lnet/minecraft/nbt/Tag;)Ljava/lang/String; +MD: net/minecraft/nbt/Tag/m_142327_ (Lnet/minecraft/nbt/TagVisitor;)V net/minecraft/nbt/Tag/accept (Lnet/minecraft/nbt/TagVisitor;)V +MD: net/minecraft/nbt/Tag/m_196533_ (Lnet/minecraft/nbt/StreamTagVisitor;)Lnet/minecraft/nbt/StreamTagVisitor$ValueResult; net/minecraft/nbt/Tag/accept (Lnet/minecraft/nbt/StreamTagVisitor;)Lnet/minecraft/nbt/StreamTagVisitor$ValueResult; +MD: net/minecraft/nbt/Tag/m_197573_ (Lnet/minecraft/nbt/StreamTagVisitor;)V net/minecraft/nbt/Tag/acceptAsRoot (Lnet/minecraft/nbt/StreamTagVisitor;)V +MD: net/minecraft/nbt/Tag/m_263179_ ()I net/minecraft/nbt/Tag/sizeInBytes ()I +MD: net/minecraft/nbt/Tag/m_6426_ ()Lnet/minecraft/nbt/Tag; net/minecraft/nbt/Tag/copy ()Lnet/minecraft/nbt/Tag; +MD: net/minecraft/nbt/Tag/m_6434_ (Ljava/io/DataOutput;)V net/minecraft/nbt/Tag/write (Ljava/io/DataOutput;)V +MD: net/minecraft/nbt/Tag/m_6458_ ()Lnet/minecraft/nbt/TagType; net/minecraft/nbt/Tag/getType ()Lnet/minecraft/nbt/TagType; +MD: net/minecraft/nbt/Tag/m_7060_ ()B net/minecraft/nbt/Tag/getId ()B +MD: net/minecraft/nbt/Tag/m_7916_ ()Ljava/lang/String; net/minecraft/nbt/Tag/getAsString ()Ljava/lang/String; +MD: net/minecraft/nbt/Tag/toString ()Ljava/lang/String; net/minecraft/nbt/Tag/toString ()Ljava/lang/String; +MD: net/minecraft/nbt/TagParser/ ()V net/minecraft/nbt/TagParser/ ()V +MD: net/minecraft/nbt/TagParser/ (Lcom/mojang/brigadier/StringReader;)V net/minecraft/nbt/TagParser/ (Lcom/mojang/brigadier/StringReader;)V +MD: net/minecraft/nbt/TagParser/m_129351_ ()Lnet/minecraft/nbt/CompoundTag; net/minecraft/nbt/TagParser/readSingleStruct ()Lnet/minecraft/nbt/CompoundTag; +MD: net/minecraft/nbt/TagParser/m_129352_ (C)V net/minecraft/nbt/TagParser/expect (C)V +MD: net/minecraft/nbt/TagParser/m_129354_ (Ljava/lang/Object;)Lcom/mojang/brigadier/Message; net/minecraft/nbt/TagParser/lambda$static$2 (Ljava/lang/Object;)Lcom/mojang/brigadier/Message; +MD: net/minecraft/nbt/TagParser/m_129356_ (Ljava/lang/Object;Ljava/lang/Object;)Lcom/mojang/brigadier/Message; net/minecraft/nbt/TagParser/lambda$static$1 (Ljava/lang/Object;Ljava/lang/Object;)Lcom/mojang/brigadier/Message; +MD: net/minecraft/nbt/TagParser/m_129359_ (Ljava/lang/String;)Lnet/minecraft/nbt/CompoundTag; net/minecraft/nbt/TagParser/parseTag (Ljava/lang/String;)Lnet/minecraft/nbt/CompoundTag; +MD: net/minecraft/nbt/TagParser/m_129361_ (Lnet/minecraft/nbt/TagType;Lnet/minecraft/nbt/TagType;)Ljava/util/List; net/minecraft/nbt/TagParser/readArray (Lnet/minecraft/nbt/TagType;Lnet/minecraft/nbt/TagType;)Ljava/util/List; +MD: net/minecraft/nbt/TagParser/m_129364_ ()Ljava/lang/String; net/minecraft/nbt/TagParser/readKey ()Ljava/lang/String; +MD: net/minecraft/nbt/TagParser/m_129365_ (Ljava/lang/Object;Ljava/lang/Object;)Lcom/mojang/brigadier/Message; net/minecraft/nbt/TagParser/lambda$static$0 (Ljava/lang/Object;Ljava/lang/Object;)Lcom/mojang/brigadier/Message; +MD: net/minecraft/nbt/TagParser/m_129368_ (Ljava/lang/String;)Lnet/minecraft/nbt/Tag; net/minecraft/nbt/TagParser/type (Ljava/lang/String;)Lnet/minecraft/nbt/Tag; +MD: net/minecraft/nbt/TagParser/m_129370_ ()Lnet/minecraft/nbt/Tag; net/minecraft/nbt/TagParser/readTypedValue ()Lnet/minecraft/nbt/Tag; +MD: net/minecraft/nbt/TagParser/m_129371_ ()Lnet/minecraft/nbt/Tag; net/minecraft/nbt/TagParser/readValue ()Lnet/minecraft/nbt/Tag; +MD: net/minecraft/nbt/TagParser/m_129372_ ()Lnet/minecraft/nbt/Tag; net/minecraft/nbt/TagParser/readList ()Lnet/minecraft/nbt/Tag; +MD: net/minecraft/nbt/TagParser/m_129373_ ()Lnet/minecraft/nbt/CompoundTag; net/minecraft/nbt/TagParser/readStruct ()Lnet/minecraft/nbt/CompoundTag; +MD: net/minecraft/nbt/TagParser/m_129374_ ()Lnet/minecraft/nbt/Tag; net/minecraft/nbt/TagParser/readListTag ()Lnet/minecraft/nbt/Tag; +MD: net/minecraft/nbt/TagParser/m_129375_ ()Lnet/minecraft/nbt/Tag; net/minecraft/nbt/TagParser/readArrayTag ()Lnet/minecraft/nbt/Tag; +MD: net/minecraft/nbt/TagParser/m_129376_ ()Z net/minecraft/nbt/TagParser/hasElementSeparator ()Z +MD: net/minecraft/nbt/TagType/m_129377_ (I)Lnet/minecraft/nbt/TagType; net/minecraft/nbt/TagType/createInvalid (I)Lnet/minecraft/nbt/TagType; +MD: net/minecraft/nbt/TagType/m_196159_ (Ljava/io/DataInput;)V net/minecraft/nbt/TagType/skip (Ljava/io/DataInput;)V +MD: net/minecraft/nbt/TagType/m_196189_ (Ljava/io/DataInput;I)V net/minecraft/nbt/TagType/skip (Ljava/io/DataInput;I)V +MD: net/minecraft/nbt/TagType/m_196511_ (Ljava/io/DataInput;Lnet/minecraft/nbt/StreamTagVisitor;)Lnet/minecraft/nbt/StreamTagVisitor$ValueResult; net/minecraft/nbt/TagType/parse (Ljava/io/DataInput;Lnet/minecraft/nbt/StreamTagVisitor;)Lnet/minecraft/nbt/StreamTagVisitor$ValueResult; +MD: net/minecraft/nbt/TagType/m_197580_ (Ljava/io/DataInput;Lnet/minecraft/nbt/StreamTagVisitor;)V net/minecraft/nbt/TagType/parseRoot (Ljava/io/DataInput;Lnet/minecraft/nbt/StreamTagVisitor;)V +MD: net/minecraft/nbt/TagType/m_5986_ ()Ljava/lang/String; net/minecraft/nbt/TagType/getPrettyName ()Ljava/lang/String; +MD: net/minecraft/nbt/TagType/m_5987_ ()Ljava/lang/String; net/minecraft/nbt/TagType/getName ()Ljava/lang/String; +MD: net/minecraft/nbt/TagType/m_7064_ ()Z net/minecraft/nbt/TagType/isValue ()Z +MD: net/minecraft/nbt/TagType/m_7300_ (Ljava/io/DataInput;ILnet/minecraft/nbt/NbtAccounter;)Lnet/minecraft/nbt/Tag; net/minecraft/nbt/TagType/load (Ljava/io/DataInput;ILnet/minecraft/nbt/NbtAccounter;)Lnet/minecraft/nbt/Tag; +MD: net/minecraft/nbt/TagType$1/ (I)V net/minecraft/nbt/TagType$1/ (I)V +MD: net/minecraft/nbt/TagType$1/m_196159_ (Ljava/io/DataInput;)V net/minecraft/nbt/TagType$1/skip (Ljava/io/DataInput;)V +MD: net/minecraft/nbt/TagType$1/m_196189_ (Ljava/io/DataInput;I)V net/minecraft/nbt/TagType$1/skip (Ljava/io/DataInput;I)V +MD: net/minecraft/nbt/TagType$1/m_196511_ (Ljava/io/DataInput;Lnet/minecraft/nbt/StreamTagVisitor;)Lnet/minecraft/nbt/StreamTagVisitor$ValueResult; net/minecraft/nbt/TagType$1/parse (Ljava/io/DataInput;Lnet/minecraft/nbt/StreamTagVisitor;)Lnet/minecraft/nbt/StreamTagVisitor$ValueResult; +MD: net/minecraft/nbt/TagType$1/m_197591_ ()Ljava/io/IOException; net/minecraft/nbt/TagType$1/createException ()Ljava/io/IOException; +MD: net/minecraft/nbt/TagType$1/m_5986_ ()Ljava/lang/String; net/minecraft/nbt/TagType$1/getPrettyName ()Ljava/lang/String; +MD: net/minecraft/nbt/TagType$1/m_5987_ ()Ljava/lang/String; net/minecraft/nbt/TagType$1/getName ()Ljava/lang/String; +MD: net/minecraft/nbt/TagType$1/m_7300_ (Ljava/io/DataInput;ILnet/minecraft/nbt/NbtAccounter;)Lnet/minecraft/nbt/Tag; net/minecraft/nbt/TagType$1/load (Ljava/io/DataInput;ILnet/minecraft/nbt/NbtAccounter;)Lnet/minecraft/nbt/Tag; +MD: net/minecraft/nbt/TagType$1/m_7300_ (Ljava/io/DataInput;ILnet/minecraft/nbt/NbtAccounter;)Lnet/minecraft/nbt/EndTag; net/minecraft/nbt/TagType$1/load (Ljava/io/DataInput;ILnet/minecraft/nbt/NbtAccounter;)Lnet/minecraft/nbt/EndTag; +MD: net/minecraft/nbt/TagType$2/ ()V net/minecraft/nbt/TagType$2/ ()V +MD: net/minecraft/nbt/TagType$StaticSize/m_196159_ (Ljava/io/DataInput;)V net/minecraft/nbt/TagType$StaticSize/skip (Ljava/io/DataInput;)V +MD: net/minecraft/nbt/TagType$StaticSize/m_196189_ (Ljava/io/DataInput;I)V net/minecraft/nbt/TagType$StaticSize/skip (Ljava/io/DataInput;I)V +MD: net/minecraft/nbt/TagType$StaticSize/m_196292_ ()I net/minecraft/nbt/TagType$StaticSize/size ()I +MD: net/minecraft/nbt/TagType$VariableSize/m_196189_ (Ljava/io/DataInput;I)V net/minecraft/nbt/TagType$VariableSize/skip (Ljava/io/DataInput;I)V +MD: net/minecraft/nbt/TagTypes/ ()V net/minecraft/nbt/TagTypes/ ()V +MD: net/minecraft/nbt/TagTypes/ ()V net/minecraft/nbt/TagTypes/ ()V +MD: net/minecraft/nbt/TagTypes/m_129397_ (I)Lnet/minecraft/nbt/TagType; net/minecraft/nbt/TagTypes/getType (I)Lnet/minecraft/nbt/TagType; +MD: net/minecraft/nbt/TagVisitor/m_141946_ (Lnet/minecraft/nbt/ByteTag;)V net/minecraft/nbt/TagVisitor/visitByte (Lnet/minecraft/nbt/ByteTag;)V +MD: net/minecraft/nbt/TagVisitor/m_142045_ (Lnet/minecraft/nbt/IntTag;)V net/minecraft/nbt/TagVisitor/visitInt (Lnet/minecraft/nbt/IntTag;)V +MD: net/minecraft/nbt/TagVisitor/m_142046_ (Lnet/minecraft/nbt/LongTag;)V net/minecraft/nbt/TagVisitor/visitLong (Lnet/minecraft/nbt/LongTag;)V +MD: net/minecraft/nbt/TagVisitor/m_142121_ (Lnet/minecraft/nbt/DoubleTag;)V net/minecraft/nbt/TagVisitor/visitDouble (Lnet/minecraft/nbt/DoubleTag;)V +MD: net/minecraft/nbt/TagVisitor/m_142154_ (Lnet/minecraft/nbt/ByteArrayTag;)V net/minecraft/nbt/TagVisitor/visitByteArray (Lnet/minecraft/nbt/ByteArrayTag;)V +MD: net/minecraft/nbt/TagVisitor/m_142181_ (Lnet/minecraft/nbt/FloatTag;)V net/minecraft/nbt/TagVisitor/visitFloat (Lnet/minecraft/nbt/FloatTag;)V +MD: net/minecraft/nbt/TagVisitor/m_142183_ (Lnet/minecraft/nbt/ShortTag;)V net/minecraft/nbt/TagVisitor/visitShort (Lnet/minecraft/nbt/ShortTag;)V +MD: net/minecraft/nbt/TagVisitor/m_142251_ (Lnet/minecraft/nbt/IntArrayTag;)V net/minecraft/nbt/TagVisitor/visitIntArray (Lnet/minecraft/nbt/IntArrayTag;)V +MD: net/minecraft/nbt/TagVisitor/m_142303_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/nbt/TagVisitor/visitCompound (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/nbt/TagVisitor/m_142309_ (Lnet/minecraft/nbt/LongArrayTag;)V net/minecraft/nbt/TagVisitor/visitLongArray (Lnet/minecraft/nbt/LongArrayTag;)V +MD: net/minecraft/nbt/TagVisitor/m_142384_ (Lnet/minecraft/nbt/EndTag;)V net/minecraft/nbt/TagVisitor/visitEnd (Lnet/minecraft/nbt/EndTag;)V +MD: net/minecraft/nbt/TagVisitor/m_142447_ (Lnet/minecraft/nbt/ListTag;)V net/minecraft/nbt/TagVisitor/visitList (Lnet/minecraft/nbt/ListTag;)V +MD: net/minecraft/nbt/TagVisitor/m_142614_ (Lnet/minecraft/nbt/StringTag;)V net/minecraft/nbt/TagVisitor/visitString (Lnet/minecraft/nbt/StringTag;)V +MD: net/minecraft/nbt/TextComponentTagVisitor/ ()V net/minecraft/nbt/TextComponentTagVisitor/ ()V +MD: net/minecraft/nbt/TextComponentTagVisitor/ (Ljava/lang/String;I)V net/minecraft/nbt/TextComponentTagVisitor/ (Ljava/lang/String;I)V +MD: net/minecraft/nbt/TextComponentTagVisitor/m_141946_ (Lnet/minecraft/nbt/ByteTag;)V net/minecraft/nbt/TextComponentTagVisitor/visitByte (Lnet/minecraft/nbt/ByteTag;)V +MD: net/minecraft/nbt/TextComponentTagVisitor/m_142045_ (Lnet/minecraft/nbt/IntTag;)V net/minecraft/nbt/TextComponentTagVisitor/visitInt (Lnet/minecraft/nbt/IntTag;)V +MD: net/minecraft/nbt/TextComponentTagVisitor/m_142046_ (Lnet/minecraft/nbt/LongTag;)V net/minecraft/nbt/TextComponentTagVisitor/visitLong (Lnet/minecraft/nbt/LongTag;)V +MD: net/minecraft/nbt/TextComponentTagVisitor/m_142121_ (Lnet/minecraft/nbt/DoubleTag;)V net/minecraft/nbt/TextComponentTagVisitor/visitDouble (Lnet/minecraft/nbt/DoubleTag;)V +MD: net/minecraft/nbt/TextComponentTagVisitor/m_142154_ (Lnet/minecraft/nbt/ByteArrayTag;)V net/minecraft/nbt/TextComponentTagVisitor/visitByteArray (Lnet/minecraft/nbt/ByteArrayTag;)V +MD: net/minecraft/nbt/TextComponentTagVisitor/m_142181_ (Lnet/minecraft/nbt/FloatTag;)V net/minecraft/nbt/TextComponentTagVisitor/visitFloat (Lnet/minecraft/nbt/FloatTag;)V +MD: net/minecraft/nbt/TextComponentTagVisitor/m_142183_ (Lnet/minecraft/nbt/ShortTag;)V net/minecraft/nbt/TextComponentTagVisitor/visitShort (Lnet/minecraft/nbt/ShortTag;)V +MD: net/minecraft/nbt/TextComponentTagVisitor/m_142251_ (Lnet/minecraft/nbt/IntArrayTag;)V net/minecraft/nbt/TextComponentTagVisitor/visitIntArray (Lnet/minecraft/nbt/IntArrayTag;)V +MD: net/minecraft/nbt/TextComponentTagVisitor/m_142303_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/nbt/TextComponentTagVisitor/visitCompound (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/nbt/TextComponentTagVisitor/m_142309_ (Lnet/minecraft/nbt/LongArrayTag;)V net/minecraft/nbt/TextComponentTagVisitor/visitLongArray (Lnet/minecraft/nbt/LongArrayTag;)V +MD: net/minecraft/nbt/TextComponentTagVisitor/m_142384_ (Lnet/minecraft/nbt/EndTag;)V net/minecraft/nbt/TextComponentTagVisitor/visitEnd (Lnet/minecraft/nbt/EndTag;)V +MD: net/minecraft/nbt/TextComponentTagVisitor/m_142447_ (Lnet/minecraft/nbt/ListTag;)V net/minecraft/nbt/TextComponentTagVisitor/visitList (Lnet/minecraft/nbt/ListTag;)V +MD: net/minecraft/nbt/TextComponentTagVisitor/m_142614_ (Lnet/minecraft/nbt/StringTag;)V net/minecraft/nbt/TextComponentTagVisitor/visitString (Lnet/minecraft/nbt/StringTag;)V +MD: net/minecraft/nbt/TextComponentTagVisitor/m_178253_ (Ljava/lang/String;)Lnet/minecraft/network/chat/Component; net/minecraft/nbt/TextComponentTagVisitor/handleEscapePretty (Ljava/lang/String;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/nbt/TextComponentTagVisitor/m_178281_ (Lnet/minecraft/nbt/Tag;)Lnet/minecraft/network/chat/Component; net/minecraft/nbt/TextComponentTagVisitor/visit (Lnet/minecraft/nbt/Tag;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/nbt/visitors/CollectFields/ ([Lnet/minecraft/nbt/visitors/FieldSelector;)V net/minecraft/nbt/visitors/CollectFields/ ([Lnet/minecraft/nbt/visitors/FieldSelector;)V +MD: net/minecraft/nbt/visitors/CollectFields/m_196213_ (Lnet/minecraft/nbt/TagType;)Lnet/minecraft/nbt/StreamTagVisitor$ValueResult; net/minecraft/nbt/visitors/CollectFields/visitRootEntry (Lnet/minecraft/nbt/TagType;)Lnet/minecraft/nbt/StreamTagVisitor$ValueResult; +MD: net/minecraft/nbt/visitors/CollectFields/m_196214_ (Lnet/minecraft/nbt/TagType;)Lnet/minecraft/nbt/StreamTagVisitor$EntryResult; net/minecraft/nbt/visitors/CollectFields/visitEntry (Lnet/minecraft/nbt/TagType;)Lnet/minecraft/nbt/StreamTagVisitor$EntryResult; +MD: net/minecraft/nbt/visitors/CollectFields/m_196425_ (Lnet/minecraft/nbt/TagType;Ljava/lang/String;)Lnet/minecraft/nbt/StreamTagVisitor$EntryResult; net/minecraft/nbt/visitors/CollectFields/visitEntry (Lnet/minecraft/nbt/TagType;Ljava/lang/String;)Lnet/minecraft/nbt/StreamTagVisitor$EntryResult; +MD: net/minecraft/nbt/visitors/CollectFields/m_196527_ ()Lnet/minecraft/nbt/StreamTagVisitor$ValueResult; net/minecraft/nbt/visitors/CollectFields/visitContainerEnd ()Lnet/minecraft/nbt/StreamTagVisitor$ValueResult; +MD: net/minecraft/nbt/visitors/CollectFields/m_197615_ ()I net/minecraft/nbt/visitors/CollectFields/getMissingFieldCount ()I +MD: net/minecraft/nbt/visitors/CollectToTag/ ()V net/minecraft/nbt/visitors/CollectToTag/ ()V +MD: net/minecraft/nbt/visitors/CollectToTag/m_196152_ ([B)Lnet/minecraft/nbt/StreamTagVisitor$ValueResult; net/minecraft/nbt/visitors/CollectToTag/visit ([B)Lnet/minecraft/nbt/StreamTagVisitor$ValueResult; +MD: net/minecraft/nbt/visitors/CollectToTag/m_196209_ (B)Lnet/minecraft/nbt/StreamTagVisitor$ValueResult; net/minecraft/nbt/visitors/CollectToTag/visit (B)Lnet/minecraft/nbt/StreamTagVisitor$ValueResult; +MD: net/minecraft/nbt/visitors/CollectToTag/m_196213_ (Lnet/minecraft/nbt/TagType;)Lnet/minecraft/nbt/StreamTagVisitor$ValueResult; net/minecraft/nbt/visitors/CollectToTag/visitRootEntry (Lnet/minecraft/nbt/TagType;)Lnet/minecraft/nbt/StreamTagVisitor$ValueResult; +MD: net/minecraft/nbt/visitors/CollectToTag/m_196214_ (Lnet/minecraft/nbt/TagType;)Lnet/minecraft/nbt/StreamTagVisitor$EntryResult; net/minecraft/nbt/visitors/CollectToTag/visitEntry (Lnet/minecraft/nbt/TagType;)Lnet/minecraft/nbt/StreamTagVisitor$EntryResult; +MD: net/minecraft/nbt/visitors/CollectToTag/m_196280_ ([J)Lnet/minecraft/nbt/StreamTagVisitor$ValueResult; net/minecraft/nbt/visitors/CollectToTag/visit ([J)Lnet/minecraft/nbt/StreamTagVisitor$ValueResult; +MD: net/minecraft/nbt/visitors/CollectToTag/m_196295_ (J)Lnet/minecraft/nbt/StreamTagVisitor$ValueResult; net/minecraft/nbt/visitors/CollectToTag/visit (J)Lnet/minecraft/nbt/StreamTagVisitor$ValueResult; +MD: net/minecraft/nbt/visitors/CollectToTag/m_196338_ (Lnet/minecraft/nbt/TagType;I)Lnet/minecraft/nbt/StreamTagVisitor$EntryResult; net/minecraft/nbt/visitors/CollectToTag/visitElement (Lnet/minecraft/nbt/TagType;I)Lnet/minecraft/nbt/StreamTagVisitor$EntryResult; +MD: net/minecraft/nbt/visitors/CollectToTag/m_196339_ (Lnet/minecraft/nbt/TagType;I)Lnet/minecraft/nbt/StreamTagVisitor$ValueResult; net/minecraft/nbt/visitors/CollectToTag/visitList (Lnet/minecraft/nbt/TagType;I)Lnet/minecraft/nbt/StreamTagVisitor$ValueResult; +MD: net/minecraft/nbt/visitors/CollectToTag/m_196353_ (I)Lnet/minecraft/nbt/StreamTagVisitor$ValueResult; net/minecraft/nbt/visitors/CollectToTag/visit (I)Lnet/minecraft/nbt/StreamTagVisitor$ValueResult; +MD: net/minecraft/nbt/visitors/CollectToTag/m_196376_ ([I)Lnet/minecraft/nbt/StreamTagVisitor$ValueResult; net/minecraft/nbt/visitors/CollectToTag/visit ([I)Lnet/minecraft/nbt/StreamTagVisitor$ValueResult; +MD: net/minecraft/nbt/visitors/CollectToTag/m_196425_ (Lnet/minecraft/nbt/TagType;Ljava/lang/String;)Lnet/minecraft/nbt/StreamTagVisitor$EntryResult; net/minecraft/nbt/visitors/CollectToTag/visitEntry (Lnet/minecraft/nbt/TagType;Ljava/lang/String;)Lnet/minecraft/nbt/StreamTagVisitor$EntryResult; +MD: net/minecraft/nbt/visitors/CollectToTag/m_196455_ (D)Lnet/minecraft/nbt/StreamTagVisitor$ValueResult; net/minecraft/nbt/visitors/CollectToTag/visit (D)Lnet/minecraft/nbt/StreamTagVisitor$ValueResult; +MD: net/minecraft/nbt/visitors/CollectToTag/m_196458_ (Ljava/lang/String;)Lnet/minecraft/nbt/StreamTagVisitor$ValueResult; net/minecraft/nbt/visitors/CollectToTag/visit (Ljava/lang/String;)Lnet/minecraft/nbt/StreamTagVisitor$ValueResult; +MD: net/minecraft/nbt/visitors/CollectToTag/m_196525_ ()Lnet/minecraft/nbt/StreamTagVisitor$ValueResult; net/minecraft/nbt/visitors/CollectToTag/visitEnd ()Lnet/minecraft/nbt/StreamTagVisitor$ValueResult; +MD: net/minecraft/nbt/visitors/CollectToTag/m_196527_ ()Lnet/minecraft/nbt/StreamTagVisitor$ValueResult; net/minecraft/nbt/visitors/CollectToTag/visitContainerEnd ()Lnet/minecraft/nbt/StreamTagVisitor$ValueResult; +MD: net/minecraft/nbt/visitors/CollectToTag/m_196532_ (F)Lnet/minecraft/nbt/StreamTagVisitor$ValueResult; net/minecraft/nbt/visitors/CollectToTag/visit (F)Lnet/minecraft/nbt/StreamTagVisitor$ValueResult; +MD: net/minecraft/nbt/visitors/CollectToTag/m_196553_ (S)Lnet/minecraft/nbt/StreamTagVisitor$ValueResult; net/minecraft/nbt/visitors/CollectToTag/visit (S)Lnet/minecraft/nbt/StreamTagVisitor$ValueResult; +MD: net/minecraft/nbt/visitors/CollectToTag/m_197679_ (Lnet/minecraft/nbt/CompoundTag;Lnet/minecraft/nbt/Tag;)V net/minecraft/nbt/visitors/CollectToTag/lambda$visitRootEntry$1 (Lnet/minecraft/nbt/CompoundTag;Lnet/minecraft/nbt/Tag;)V +MD: net/minecraft/nbt/visitors/CollectToTag/m_197682_ (Lnet/minecraft/nbt/Tag;)V net/minecraft/nbt/visitors/CollectToTag/appendEntry (Lnet/minecraft/nbt/Tag;)V +MD: net/minecraft/nbt/visitors/CollectToTag/m_197701_ (Lnet/minecraft/nbt/CompoundTag;Lnet/minecraft/nbt/Tag;)V net/minecraft/nbt/visitors/CollectToTag/lambda$enterContainerIfNeeded$0 (Lnet/minecraft/nbt/CompoundTag;Lnet/minecraft/nbt/Tag;)V +MD: net/minecraft/nbt/visitors/CollectToTag/m_197704_ (Lnet/minecraft/nbt/Tag;)V net/minecraft/nbt/visitors/CollectToTag/lambda$visitRootEntry$2 (Lnet/minecraft/nbt/Tag;)V +MD: net/minecraft/nbt/visitors/CollectToTag/m_197711_ (Lnet/minecraft/nbt/TagType;)V net/minecraft/nbt/visitors/CollectToTag/enterContainerIfNeeded (Lnet/minecraft/nbt/TagType;)V +MD: net/minecraft/nbt/visitors/CollectToTag/m_197713_ ()Lnet/minecraft/nbt/Tag; net/minecraft/nbt/visitors/CollectToTag/getResult ()Lnet/minecraft/nbt/Tag; +MD: net/minecraft/nbt/visitors/CollectToTag/m_197714_ ()I net/minecraft/nbt/visitors/CollectToTag/depth ()I +MD: net/minecraft/nbt/visitors/FieldSelector/ (Lnet/minecraft/nbt/TagType;Ljava/lang/String;)V net/minecraft/nbt/visitors/FieldSelector/ (Lnet/minecraft/nbt/TagType;Ljava/lang/String;)V +MD: net/minecraft/nbt/visitors/FieldSelector/ (Ljava/lang/String;Ljava/lang/String;Lnet/minecraft/nbt/TagType;Ljava/lang/String;)V net/minecraft/nbt/visitors/FieldSelector/ (Ljava/lang/String;Ljava/lang/String;Lnet/minecraft/nbt/TagType;Ljava/lang/String;)V +MD: net/minecraft/nbt/visitors/FieldSelector/ (Ljava/lang/String;Lnet/minecraft/nbt/TagType;Ljava/lang/String;)V net/minecraft/nbt/visitors/FieldSelector/ (Ljava/lang/String;Lnet/minecraft/nbt/TagType;Ljava/lang/String;)V +MD: net/minecraft/nbt/visitors/FieldSelector/ (Ljava/util/List;Lnet/minecraft/nbt/TagType;Ljava/lang/String;)V net/minecraft/nbt/visitors/FieldSelector/ (Ljava/util/List;Lnet/minecraft/nbt/TagType;Ljava/lang/String;)V +MD: net/minecraft/nbt/visitors/FieldSelector/equals (Ljava/lang/Object;)Z net/minecraft/nbt/visitors/FieldSelector/equals (Ljava/lang/Object;)Z +MD: net/minecraft/nbt/visitors/FieldSelector/f_202497_ ()Ljava/util/List; net/minecraft/nbt/visitors/FieldSelector/path ()Ljava/util/List; +MD: net/minecraft/nbt/visitors/FieldSelector/f_202498_ ()Lnet/minecraft/nbt/TagType; net/minecraft/nbt/visitors/FieldSelector/type ()Lnet/minecraft/nbt/TagType; +MD: net/minecraft/nbt/visitors/FieldSelector/f_202499_ ()Ljava/lang/String; net/minecraft/nbt/visitors/FieldSelector/name ()Ljava/lang/String; +MD: net/minecraft/nbt/visitors/FieldSelector/hashCode ()I net/minecraft/nbt/visitors/FieldSelector/hashCode ()I +MD: net/minecraft/nbt/visitors/FieldSelector/toString ()Ljava/lang/String; net/minecraft/nbt/visitors/FieldSelector/toString ()Ljava/lang/String; +MD: net/minecraft/nbt/visitors/FieldTree/ (ILjava/util/Map;Ljava/util/Map;)V net/minecraft/nbt/visitors/FieldTree/ (ILjava/util/Map;Ljava/util/Map;)V +MD: net/minecraft/nbt/visitors/FieldTree/ (I)V net/minecraft/nbt/visitors/FieldTree/ (I)V +MD: net/minecraft/nbt/visitors/FieldTree/equals (Ljava/lang/Object;)Z net/minecraft/nbt/visitors/FieldTree/equals (Ljava/lang/Object;)Z +MD: net/minecraft/nbt/visitors/FieldTree/f_202523_ ()I net/minecraft/nbt/visitors/FieldTree/depth ()I +MD: net/minecraft/nbt/visitors/FieldTree/f_202524_ ()Ljava/util/Map; net/minecraft/nbt/visitors/FieldTree/selectedFields ()Ljava/util/Map; +MD: net/minecraft/nbt/visitors/FieldTree/f_202525_ ()Ljava/util/Map; net/minecraft/nbt/visitors/FieldTree/fieldsToRecurse ()Ljava/util/Map; +MD: net/minecraft/nbt/visitors/FieldTree/hashCode ()I net/minecraft/nbt/visitors/FieldTree/hashCode ()I +MD: net/minecraft/nbt/visitors/FieldTree/m_202532_ ()Lnet/minecraft/nbt/visitors/FieldTree; net/minecraft/nbt/visitors/FieldTree/createRoot ()Lnet/minecraft/nbt/visitors/FieldTree; +MD: net/minecraft/nbt/visitors/FieldTree/m_202533_ (Ljava/lang/String;)Lnet/minecraft/nbt/visitors/FieldTree; net/minecraft/nbt/visitors/FieldTree/lambda$addEntry$0 (Ljava/lang/String;)Lnet/minecraft/nbt/visitors/FieldTree; +MD: net/minecraft/nbt/visitors/FieldTree/m_202535_ (Lnet/minecraft/nbt/TagType;Ljava/lang/String;)Z net/minecraft/nbt/visitors/FieldTree/isSelected (Lnet/minecraft/nbt/TagType;Ljava/lang/String;)Z +MD: net/minecraft/nbt/visitors/FieldTree/m_202538_ (Lnet/minecraft/nbt/visitors/FieldSelector;)V net/minecraft/nbt/visitors/FieldTree/addEntry (Lnet/minecraft/nbt/visitors/FieldSelector;)V +MD: net/minecraft/nbt/visitors/FieldTree/toString ()Ljava/lang/String; net/minecraft/nbt/visitors/FieldTree/toString ()Ljava/lang/String; +MD: net/minecraft/nbt/visitors/SkipAll/ ()V net/minecraft/nbt/visitors/SkipAll/ ()V +MD: net/minecraft/nbt/visitors/SkipAll/m_196152_ ([B)Lnet/minecraft/nbt/StreamTagVisitor$ValueResult; net/minecraft/nbt/visitors/SkipAll/visit ([B)Lnet/minecraft/nbt/StreamTagVisitor$ValueResult; +MD: net/minecraft/nbt/visitors/SkipAll/m_196209_ (B)Lnet/minecraft/nbt/StreamTagVisitor$ValueResult; net/minecraft/nbt/visitors/SkipAll/visit (B)Lnet/minecraft/nbt/StreamTagVisitor$ValueResult; +MD: net/minecraft/nbt/visitors/SkipAll/m_196213_ (Lnet/minecraft/nbt/TagType;)Lnet/minecraft/nbt/StreamTagVisitor$ValueResult; net/minecraft/nbt/visitors/SkipAll/visitRootEntry (Lnet/minecraft/nbt/TagType;)Lnet/minecraft/nbt/StreamTagVisitor$ValueResult; +MD: net/minecraft/nbt/visitors/SkipAll/m_196214_ (Lnet/minecraft/nbt/TagType;)Lnet/minecraft/nbt/StreamTagVisitor$EntryResult; net/minecraft/nbt/visitors/SkipAll/visitEntry (Lnet/minecraft/nbt/TagType;)Lnet/minecraft/nbt/StreamTagVisitor$EntryResult; +MD: net/minecraft/nbt/visitors/SkipAll/m_196280_ ([J)Lnet/minecraft/nbt/StreamTagVisitor$ValueResult; net/minecraft/nbt/visitors/SkipAll/visit ([J)Lnet/minecraft/nbt/StreamTagVisitor$ValueResult; +MD: net/minecraft/nbt/visitors/SkipAll/m_196295_ (J)Lnet/minecraft/nbt/StreamTagVisitor$ValueResult; net/minecraft/nbt/visitors/SkipAll/visit (J)Lnet/minecraft/nbt/StreamTagVisitor$ValueResult; +MD: net/minecraft/nbt/visitors/SkipAll/m_196338_ (Lnet/minecraft/nbt/TagType;I)Lnet/minecraft/nbt/StreamTagVisitor$EntryResult; net/minecraft/nbt/visitors/SkipAll/visitElement (Lnet/minecraft/nbt/TagType;I)Lnet/minecraft/nbt/StreamTagVisitor$EntryResult; +MD: net/minecraft/nbt/visitors/SkipAll/m_196339_ (Lnet/minecraft/nbt/TagType;I)Lnet/minecraft/nbt/StreamTagVisitor$ValueResult; net/minecraft/nbt/visitors/SkipAll/visitList (Lnet/minecraft/nbt/TagType;I)Lnet/minecraft/nbt/StreamTagVisitor$ValueResult; +MD: net/minecraft/nbt/visitors/SkipAll/m_196353_ (I)Lnet/minecraft/nbt/StreamTagVisitor$ValueResult; net/minecraft/nbt/visitors/SkipAll/visit (I)Lnet/minecraft/nbt/StreamTagVisitor$ValueResult; +MD: net/minecraft/nbt/visitors/SkipAll/m_196376_ ([I)Lnet/minecraft/nbt/StreamTagVisitor$ValueResult; net/minecraft/nbt/visitors/SkipAll/visit ([I)Lnet/minecraft/nbt/StreamTagVisitor$ValueResult; +MD: net/minecraft/nbt/visitors/SkipAll/m_196425_ (Lnet/minecraft/nbt/TagType;Ljava/lang/String;)Lnet/minecraft/nbt/StreamTagVisitor$EntryResult; net/minecraft/nbt/visitors/SkipAll/visitEntry (Lnet/minecraft/nbt/TagType;Ljava/lang/String;)Lnet/minecraft/nbt/StreamTagVisitor$EntryResult; +MD: net/minecraft/nbt/visitors/SkipAll/m_196455_ (D)Lnet/minecraft/nbt/StreamTagVisitor$ValueResult; net/minecraft/nbt/visitors/SkipAll/visit (D)Lnet/minecraft/nbt/StreamTagVisitor$ValueResult; +MD: net/minecraft/nbt/visitors/SkipAll/m_196458_ (Ljava/lang/String;)Lnet/minecraft/nbt/StreamTagVisitor$ValueResult; net/minecraft/nbt/visitors/SkipAll/visit (Ljava/lang/String;)Lnet/minecraft/nbt/StreamTagVisitor$ValueResult; +MD: net/minecraft/nbt/visitors/SkipAll/m_196525_ ()Lnet/minecraft/nbt/StreamTagVisitor$ValueResult; net/minecraft/nbt/visitors/SkipAll/visitEnd ()Lnet/minecraft/nbt/StreamTagVisitor$ValueResult; +MD: net/minecraft/nbt/visitors/SkipAll/m_196527_ ()Lnet/minecraft/nbt/StreamTagVisitor$ValueResult; net/minecraft/nbt/visitors/SkipAll/visitContainerEnd ()Lnet/minecraft/nbt/StreamTagVisitor$ValueResult; +MD: net/minecraft/nbt/visitors/SkipAll/m_196532_ (F)Lnet/minecraft/nbt/StreamTagVisitor$ValueResult; net/minecraft/nbt/visitors/SkipAll/visit (F)Lnet/minecraft/nbt/StreamTagVisitor$ValueResult; +MD: net/minecraft/nbt/visitors/SkipAll/m_196553_ (S)Lnet/minecraft/nbt/StreamTagVisitor$ValueResult; net/minecraft/nbt/visitors/SkipAll/visit (S)Lnet/minecraft/nbt/StreamTagVisitor$ValueResult; +MD: net/minecraft/nbt/visitors/SkipAll$1/ ()V net/minecraft/nbt/visitors/SkipAll$1/ ()V +MD: net/minecraft/nbt/visitors/SkipFields/ ([Lnet/minecraft/nbt/visitors/FieldSelector;)V net/minecraft/nbt/visitors/SkipFields/ ([Lnet/minecraft/nbt/visitors/FieldSelector;)V +MD: net/minecraft/nbt/visitors/SkipFields/m_196425_ (Lnet/minecraft/nbt/TagType;Ljava/lang/String;)Lnet/minecraft/nbt/StreamTagVisitor$EntryResult; net/minecraft/nbt/visitors/SkipFields/visitEntry (Lnet/minecraft/nbt/TagType;Ljava/lang/String;)Lnet/minecraft/nbt/StreamTagVisitor$EntryResult; +MD: net/minecraft/nbt/visitors/SkipFields/m_196527_ ()Lnet/minecraft/nbt/StreamTagVisitor$ValueResult; net/minecraft/nbt/visitors/SkipFields/visitContainerEnd ()Lnet/minecraft/nbt/StreamTagVisitor$ValueResult; +MD: net/minecraft/network/CipherBase/ (Ljavax/crypto/Cipher;)V net/minecraft/network/CipherBase/ (Ljavax/crypto/Cipher;)V +MD: net/minecraft/network/CipherBase/m_129404_ (Lio/netty/buffer/ByteBuf;)[B net/minecraft/network/CipherBase/bufToByte (Lio/netty/buffer/ByteBuf;)[B +MD: net/minecraft/network/CipherBase/m_129406_ (Lio/netty/buffer/ByteBuf;Lio/netty/buffer/ByteBuf;)V net/minecraft/network/CipherBase/encipher (Lio/netty/buffer/ByteBuf;Lio/netty/buffer/ByteBuf;)V +MD: net/minecraft/network/CipherBase/m_129409_ (Lio/netty/channel/ChannelHandlerContext;Lio/netty/buffer/ByteBuf;)Lio/netty/buffer/ByteBuf; net/minecraft/network/CipherBase/decipher (Lio/netty/channel/ChannelHandlerContext;Lio/netty/buffer/ByteBuf;)Lio/netty/buffer/ByteBuf; +MD: net/minecraft/network/CipherDecoder/ (Ljavax/crypto/Cipher;)V net/minecraft/network/CipherDecoder/ (Ljavax/crypto/Cipher;)V +MD: net/minecraft/network/CipherDecoder/decode (Lio/netty/channel/ChannelHandlerContext;Ljava/lang/Object;Ljava/util/List;)V net/minecraft/network/CipherDecoder/decode (Lio/netty/channel/ChannelHandlerContext;Ljava/lang/Object;Ljava/util/List;)V +MD: net/minecraft/network/CipherDecoder/decode (Lio/netty/channel/ChannelHandlerContext;Lio/netty/buffer/ByteBuf;Ljava/util/List;)V net/minecraft/network/CipherDecoder/decode (Lio/netty/channel/ChannelHandlerContext;Lio/netty/buffer/ByteBuf;Ljava/util/List;)V +MD: net/minecraft/network/CipherEncoder/ (Ljavax/crypto/Cipher;)V net/minecraft/network/CipherEncoder/ (Ljavax/crypto/Cipher;)V +MD: net/minecraft/network/CipherEncoder/encode (Lio/netty/channel/ChannelHandlerContext;Lio/netty/buffer/ByteBuf;Lio/netty/buffer/ByteBuf;)V net/minecraft/network/CipherEncoder/encode (Lio/netty/channel/ChannelHandlerContext;Lio/netty/buffer/ByteBuf;Lio/netty/buffer/ByteBuf;)V +MD: net/minecraft/network/CipherEncoder/encode (Lio/netty/channel/ChannelHandlerContext;Ljava/lang/Object;Lio/netty/buffer/ByteBuf;)V net/minecraft/network/CipherEncoder/encode (Lio/netty/channel/ChannelHandlerContext;Ljava/lang/Object;Lio/netty/buffer/ByteBuf;)V +MD: net/minecraft/network/CompressionDecoder/ (IZ)V net/minecraft/network/CompressionDecoder/ (IZ)V +MD: net/minecraft/network/CompressionDecoder/decode (Lio/netty/channel/ChannelHandlerContext;Lio/netty/buffer/ByteBuf;Ljava/util/List;)V net/minecraft/network/CompressionDecoder/decode (Lio/netty/channel/ChannelHandlerContext;Lio/netty/buffer/ByteBuf;Ljava/util/List;)V +MD: net/minecraft/network/CompressionDecoder/m_182677_ (IZ)V net/minecraft/network/CompressionDecoder/setThreshold (IZ)V +MD: net/minecraft/network/CompressionEncoder/ (I)V net/minecraft/network/CompressionEncoder/ (I)V +MD: net/minecraft/network/CompressionEncoder/encode (Lio/netty/channel/ChannelHandlerContext;Lio/netty/buffer/ByteBuf;Lio/netty/buffer/ByteBuf;)V net/minecraft/network/CompressionEncoder/encode (Lio/netty/channel/ChannelHandlerContext;Lio/netty/buffer/ByteBuf;Lio/netty/buffer/ByteBuf;)V +MD: net/minecraft/network/CompressionEncoder/encode (Lio/netty/channel/ChannelHandlerContext;Ljava/lang/Object;Lio/netty/buffer/ByteBuf;)V net/minecraft/network/CompressionEncoder/encode (Lio/netty/channel/ChannelHandlerContext;Ljava/lang/Object;Lio/netty/buffer/ByteBuf;)V +MD: net/minecraft/network/CompressionEncoder/m_129449_ (I)V net/minecraft/network/CompressionEncoder/setThreshold (I)V +MD: net/minecraft/network/CompressionEncoder/m_178298_ ()I net/minecraft/network/CompressionEncoder/getThreshold ()I +MD: net/minecraft/network/Connection/ ()V net/minecraft/network/Connection/ ()V +MD: net/minecraft/network/Connection/ (Lnet/minecraft/network/protocol/PacketFlow;)V net/minecraft/network/Connection/ (Lnet/minecraft/network/protocol/PacketFlow;)V +MD: net/minecraft/network/Connection/channelActive (Lio/netty/channel/ChannelHandlerContext;)V net/minecraft/network/Connection/channelActive (Lio/netty/channel/ChannelHandlerContext;)V +MD: net/minecraft/network/Connection/channelInactive (Lio/netty/channel/ChannelHandlerContext;)V net/minecraft/network/Connection/channelInactive (Lio/netty/channel/ChannelHandlerContext;)V +MD: net/minecraft/network/Connection/channelRead0 (Lio/netty/channel/ChannelHandlerContext;Ljava/lang/Object;)V net/minecraft/network/Connection/channelRead0 (Lio/netty/channel/ChannelHandlerContext;Ljava/lang/Object;)V +MD: net/minecraft/network/Connection/channelRead0 (Lio/netty/channel/ChannelHandlerContext;Lnet/minecraft/network/protocol/Packet;)V net/minecraft/network/Connection/channelRead0 (Lio/netty/channel/ChannelHandlerContext;Lnet/minecraft/network/protocol/Packet;)V +MD: net/minecraft/network/Connection/exceptionCaught (Lio/netty/channel/ChannelHandlerContext;Ljava/lang/Throwable;)V net/minecraft/network/Connection/exceptionCaught (Lio/netty/channel/ChannelHandlerContext;Ljava/lang/Throwable;)V +MD: net/minecraft/network/Connection/m_129483_ ()V net/minecraft/network/Connection/tick ()V +MD: net/minecraft/network/Connection/m_129484_ (IZ)V net/minecraft/network/Connection/setupCompression (IZ)V +MD: net/minecraft/network/Connection/m_129493_ (Ljava/net/SocketAddress;)Lnet/minecraft/network/Connection; net/minecraft/network/Connection/connectToLocalServer (Ljava/net/SocketAddress;)Lnet/minecraft/network/Connection; +MD: net/minecraft/network/Connection/m_129495_ (Ljavax/crypto/Cipher;Ljavax/crypto/Cipher;)V net/minecraft/network/Connection/setEncryptionKey (Ljavax/crypto/Cipher;Ljavax/crypto/Cipher;)V +MD: net/minecraft/network/Connection/m_129498_ (Lnet/minecraft/network/ConnectionProtocol;)V net/minecraft/network/Connection/setProtocol (Lnet/minecraft/network/ConnectionProtocol;)V +MD: net/minecraft/network/Connection/m_129505_ (Lnet/minecraft/network/PacketListener;)V net/minecraft/network/Connection/setListener (Lnet/minecraft/network/PacketListener;)V +MD: net/minecraft/network/Connection/m_129507_ (Lnet/minecraft/network/chat/Component;)V net/minecraft/network/Connection/disconnect (Lnet/minecraft/network/chat/Component;)V +MD: net/minecraft/network/Connection/m_129512_ (Lnet/minecraft/network/protocol/Packet;)V net/minecraft/network/Connection/send (Lnet/minecraft/network/protocol/Packet;)V +MD: net/minecraft/network/Connection/m_129517_ (Lnet/minecraft/network/protocol/Packet;Lnet/minecraft/network/PacketListener;)V net/minecraft/network/Connection/genericsFtw (Lnet/minecraft/network/protocol/Packet;Lnet/minecraft/network/PacketListener;)V +MD: net/minecraft/network/Connection/m_129520_ (Lnet/minecraft/network/protocol/Packet;Lnet/minecraft/network/PacketSendListener;)V net/minecraft/network/Connection/sendPacket (Lnet/minecraft/network/protocol/Packet;Lnet/minecraft/network/PacketSendListener;)V +MD: net/minecraft/network/Connection/m_129523_ ()Ljava/net/SocketAddress; net/minecraft/network/Connection/getRemoteAddress ()Ljava/net/SocketAddress; +MD: net/minecraft/network/Connection/m_129531_ ()Z net/minecraft/network/Connection/isMemoryConnection ()Z +MD: net/minecraft/network/Connection/m_129535_ ()Z net/minecraft/network/Connection/isEncrypted ()Z +MD: net/minecraft/network/Connection/m_129536_ ()Z net/minecraft/network/Connection/isConnected ()Z +MD: net/minecraft/network/Connection/m_129537_ ()Z net/minecraft/network/Connection/isConnecting ()Z +MD: net/minecraft/network/Connection/m_129538_ ()Lnet/minecraft/network/PacketListener; net/minecraft/network/Connection/getPacketListener ()Lnet/minecraft/network/PacketListener; +MD: net/minecraft/network/Connection/m_129539_ ()Lnet/minecraft/network/chat/Component; net/minecraft/network/Connection/getDisconnectedReason ()Lnet/minecraft/network/chat/Component; +MD: net/minecraft/network/Connection/m_129540_ ()V net/minecraft/network/Connection/setReadOnly ()V +MD: net/minecraft/network/Connection/m_129541_ ()V net/minecraft/network/Connection/handleDisconnection ()V +MD: net/minecraft/network/Connection/m_129542_ ()F net/minecraft/network/Connection/getAverageReceivedPackets ()F +MD: net/minecraft/network/Connection/m_129543_ ()F net/minecraft/network/Connection/getAverageSentPackets ()F +MD: net/minecraft/network/Connection/m_129544_ ()V net/minecraft/network/Connection/flushQueue ()V +MD: net/minecraft/network/Connection/m_178300_ (Ljava/net/InetSocketAddress;Z)Lnet/minecraft/network/Connection; net/minecraft/network/Connection/connectToServer (Ljava/net/InetSocketAddress;Z)Lnet/minecraft/network/Connection; +MD: net/minecraft/network/Connection/m_178313_ ()Lnet/minecraft/network/protocol/PacketFlow; net/minecraft/network/Connection/getReceiving ()Lnet/minecraft/network/protocol/PacketFlow; +MD: net/minecraft/network/Connection/m_178314_ ()Lnet/minecraft/network/protocol/PacketFlow; net/minecraft/network/Connection/getSending ()Lnet/minecraft/network/protocol/PacketFlow; +MD: net/minecraft/network/Connection/m_178315_ ()Lnet/minecraft/network/ConnectionProtocol; net/minecraft/network/Connection/getCurrentProtocol ()Lnet/minecraft/network/ConnectionProtocol; +MD: net/minecraft/network/Connection/m_202556_ (Lorg/slf4j/Marker;)V net/minecraft/network/Connection/lambda$static$2 (Lorg/slf4j/Marker;)V +MD: net/minecraft/network/Connection/m_202558_ (Lnet/minecraft/network/chat/Component;)V net/minecraft/network/Connection/lambda$exceptionCaught$6 (Lnet/minecraft/network/chat/Component;)V +MD: net/minecraft/network/Connection/m_202561_ (Lorg/slf4j/Marker;)V net/minecraft/network/Connection/lambda$static$1 (Lorg/slf4j/Marker;)V +MD: net/minecraft/network/Connection/m_202568_ (Lorg/slf4j/Marker;)V net/minecraft/network/Connection/lambda$static$0 (Lorg/slf4j/Marker;)V +MD: net/minecraft/network/Connection/m_202570_ ()Lio/netty/channel/DefaultEventLoopGroup; net/minecraft/network/Connection/lambda$static$5 ()Lio/netty/channel/DefaultEventLoopGroup; +MD: net/minecraft/network/Connection/m_202571_ ()Lio/netty/channel/epoll/EpollEventLoopGroup; net/minecraft/network/Connection/lambda$static$4 ()Lio/netty/channel/epoll/EpollEventLoopGroup; +MD: net/minecraft/network/Connection/m_202572_ ()Lio/netty/channel/nio/NioEventLoopGroup; net/minecraft/network/Connection/lambda$static$3 ()Lio/netty/channel/nio/NioEventLoopGroup; +MD: net/minecraft/network/Connection/m_243034_ (Lnet/minecraft/network/PacketSendListener;Lio/netty/util/concurrent/Future;)V net/minecraft/network/Connection/lambda$doSendPacket$8 (Lnet/minecraft/network/PacketSendListener;Lio/netty/util/concurrent/Future;)V +MD: net/minecraft/network/Connection/m_243035_ (Lnet/minecraft/network/protocol/Packet;Lnet/minecraft/network/PacketSendListener;Lnet/minecraft/network/ConnectionProtocol;Lnet/minecraft/network/ConnectionProtocol;)V net/minecraft/network/Connection/lambda$sendPacket$7 (Lnet/minecraft/network/protocol/Packet;Lnet/minecraft/network/PacketSendListener;Lnet/minecraft/network/ConnectionProtocol;Lnet/minecraft/network/ConnectionProtocol;)V +MD: net/minecraft/network/Connection/m_243087_ (Lnet/minecraft/network/protocol/Packet;Lnet/minecraft/network/PacketSendListener;Lnet/minecraft/network/ConnectionProtocol;Lnet/minecraft/network/ConnectionProtocol;)V net/minecraft/network/Connection/doSendPacket (Lnet/minecraft/network/protocol/Packet;Lnet/minecraft/network/PacketSendListener;Lnet/minecraft/network/ConnectionProtocol;Lnet/minecraft/network/ConnectionProtocol;)V +MD: net/minecraft/network/Connection/m_243124_ (Lnet/minecraft/network/protocol/Packet;Lnet/minecraft/network/PacketSendListener;)V net/minecraft/network/Connection/send (Lnet/minecraft/network/protocol/Packet;Lnet/minecraft/network/PacketSendListener;)V +MD: net/minecraft/network/Connection/m_264299_ (Lio/netty/channel/ChannelPipeline;Lnet/minecraft/network/protocol/PacketFlow;)V net/minecraft/network/Connection/configureSerialization (Lio/netty/channel/ChannelPipeline;Lnet/minecraft/network/protocol/PacketFlow;)V +MD: net/minecraft/network/Connection/m_290025_ (Ljava/net/InetSocketAddress;ZLnet/minecraft/network/Connection;)Lio/netty/channel/ChannelFuture; net/minecraft/network/Connection/connect (Ljava/net/InetSocketAddress;ZLnet/minecraft/network/Connection;)Lio/netty/channel/ChannelFuture; +MD: net/minecraft/network/Connection/m_7073_ ()V net/minecraft/network/Connection/tickSecond ()V +MD: net/minecraft/network/Connection$1/ (Lnet/minecraft/network/Connection;)V net/minecraft/network/Connection$1/ (Lnet/minecraft/network/Connection;)V +MD: net/minecraft/network/Connection$1/initChannel (Lio/netty/channel/Channel;)V net/minecraft/network/Connection$1/initChannel (Lio/netty/channel/Channel;)V +MD: net/minecraft/network/Connection$2/ (Lnet/minecraft/network/Connection;)V net/minecraft/network/Connection$2/ (Lnet/minecraft/network/Connection;)V +MD: net/minecraft/network/Connection$2/initChannel (Lio/netty/channel/Channel;)V net/minecraft/network/Connection$2/initChannel (Lio/netty/channel/Channel;)V +MD: net/minecraft/network/Connection$PacketHolder/ (Lnet/minecraft/network/protocol/Packet;Lnet/minecraft/network/PacketSendListener;)V net/minecraft/network/Connection$PacketHolder/ (Lnet/minecraft/network/protocol/Packet;Lnet/minecraft/network/PacketSendListener;)V +MD: net/minecraft/network/ConnectionProtocol/ ()V net/minecraft/network/ConnectionProtocol/ ()V +MD: net/minecraft/network/ConnectionProtocol/ (Ljava/lang/String;IILnet/minecraft/network/ConnectionProtocol$ProtocolBuilder;)V net/minecraft/network/ConnectionProtocol/ (Ljava/lang/String;IILnet/minecraft/network/ConnectionProtocol$ProtocolBuilder;)V +MD: net/minecraft/network/ConnectionProtocol/m_129582_ ()I net/minecraft/network/ConnectionProtocol/getId ()I +MD: net/minecraft/network/ConnectionProtocol/m_129583_ (I)Lnet/minecraft/network/ConnectionProtocol; net/minecraft/network/ConnectionProtocol/getById (I)Lnet/minecraft/network/ConnectionProtocol; +MD: net/minecraft/network/ConnectionProtocol/m_129592_ (Lnet/minecraft/network/protocol/Packet;)Lnet/minecraft/network/ConnectionProtocol; net/minecraft/network/ConnectionProtocol/getProtocolForPacket (Lnet/minecraft/network/protocol/Packet;)Lnet/minecraft/network/ConnectionProtocol; +MD: net/minecraft/network/ConnectionProtocol/m_129600_ ()Lnet/minecraft/network/ConnectionProtocol$ProtocolBuilder; net/minecraft/network/ConnectionProtocol/protocol ()Lnet/minecraft/network/ConnectionProtocol$ProtocolBuilder; +MD: net/minecraft/network/ConnectionProtocol/m_178321_ (Lnet/minecraft/network/protocol/PacketFlow;ILnet/minecraft/network/FriendlyByteBuf;)Lnet/minecraft/network/protocol/Packet; net/minecraft/network/ConnectionProtocol/createPacket (Lnet/minecraft/network/protocol/PacketFlow;ILnet/minecraft/network/FriendlyByteBuf;)Lnet/minecraft/network/protocol/Packet; +MD: net/minecraft/network/ConnectionProtocol/m_178325_ ()[Lnet/minecraft/network/ConnectionProtocol; net/minecraft/network/ConnectionProtocol/$values ()[Lnet/minecraft/network/ConnectionProtocol; +MD: net/minecraft/network/ConnectionProtocol/m_195609_ (Lit/unimi/dsi/fastutil/ints/Int2ObjectMap;Ljava/lang/Class;Ljava/lang/Integer;)V net/minecraft/network/ConnectionProtocol/lambda$getPacketsByIds$0 (Lit/unimi/dsi/fastutil/ints/Int2ObjectMap;Ljava/lang/Class;Ljava/lang/Integer;)V +MD: net/minecraft/network/ConnectionProtocol/m_195613_ (Lnet/minecraft/network/ConnectionProtocol;Ljava/lang/Class;)V net/minecraft/network/ConnectionProtocol/lambda$static$1 (Lnet/minecraft/network/ConnectionProtocol;Ljava/lang/Class;)V +MD: net/minecraft/network/ConnectionProtocol/m_195620_ (Lnet/minecraft/network/protocol/PacketFlow;)Lit/unimi/dsi/fastutil/ints/Int2ObjectMap; net/minecraft/network/ConnectionProtocol/getPacketsByIds (Lnet/minecraft/network/protocol/PacketFlow;)Lit/unimi/dsi/fastutil/ints/Int2ObjectMap; +MD: net/minecraft/network/ConnectionProtocol/m_263896_ (Lnet/minecraft/network/ConnectionProtocol;Lnet/minecraft/network/protocol/PacketFlow;Lnet/minecraft/network/ConnectionProtocol$PacketSet;)V net/minecraft/network/ConnectionProtocol/lambda$static$2 (Lnet/minecraft/network/ConnectionProtocol;Lnet/minecraft/network/protocol/PacketFlow;Lnet/minecraft/network/ConnectionProtocol$PacketSet;)V +MD: net/minecraft/network/ConnectionProtocol/m_264121_ (Lnet/minecraft/network/protocol/PacketFlow;)Lnet/minecraft/network/protocol/BundlerInfo; net/minecraft/network/ConnectionProtocol/getBundlerInfo (Lnet/minecraft/network/protocol/PacketFlow;)Lnet/minecraft/network/protocol/BundlerInfo; +MD: net/minecraft/network/ConnectionProtocol/m_264521_ (Lnet/minecraft/network/protocol/PacketFlow;Lnet/minecraft/network/protocol/Packet;)I net/minecraft/network/ConnectionProtocol/getPacketId (Lnet/minecraft/network/protocol/PacketFlow;Lnet/minecraft/network/protocol/Packet;)I +MD: net/minecraft/network/ConnectionProtocol/valueOf (Ljava/lang/String;)Lnet/minecraft/network/ConnectionProtocol; net/minecraft/network/ConnectionProtocol/valueOf (Ljava/lang/String;)Lnet/minecraft/network/ConnectionProtocol; +MD: net/minecraft/network/ConnectionProtocol/values ()[Lnet/minecraft/network/ConnectionProtocol; net/minecraft/network/ConnectionProtocol/values ()[Lnet/minecraft/network/ConnectionProtocol; +MD: net/minecraft/network/ConnectionProtocol$PacketSet/ ()V net/minecraft/network/ConnectionProtocol$PacketSet/ ()V +MD: net/minecraft/network/ConnectionProtocol$PacketSet/ ()V net/minecraft/network/ConnectionProtocol$PacketSet/ ()V +MD: net/minecraft/network/ConnectionProtocol$PacketSet/m_129612_ (Lit/unimi/dsi/fastutil/objects/Object2IntOpenHashMap;)V net/minecraft/network/ConnectionProtocol$PacketSet/lambda$new$0 (Lit/unimi/dsi/fastutil/objects/Object2IntOpenHashMap;)V +MD: net/minecraft/network/ConnectionProtocol$PacketSet/m_178327_ (ILnet/minecraft/network/FriendlyByteBuf;)Lnet/minecraft/network/protocol/Packet; net/minecraft/network/ConnectionProtocol$PacketSet/createPacket (ILnet/minecraft/network/FriendlyByteBuf;)Lnet/minecraft/network/protocol/Packet; +MD: net/minecraft/network/ConnectionProtocol$PacketSet/m_178330_ (Ljava/lang/Class;Ljava/util/function/Function;)Lnet/minecraft/network/ConnectionProtocol$PacketSet; net/minecraft/network/ConnectionProtocol$PacketSet/addPacket (Ljava/lang/Class;Ljava/util/function/Function;)Lnet/minecraft/network/ConnectionProtocol$PacketSet; +MD: net/minecraft/network/ConnectionProtocol$PacketSet/m_263897_ (Ljava/lang/Class;)Z net/minecraft/network/ConnectionProtocol$PacketSet/lambda$listAllPackets$2 (Ljava/lang/Class;)Z +MD: net/minecraft/network/ConnectionProtocol$PacketSet/m_263898_ (Lnet/minecraft/network/protocol/BundleDelimiterPacket;Lnet/minecraft/network/FriendlyByteBuf;)Lnet/minecraft/network/protocol/BundleDelimiterPacket; net/minecraft/network/ConnectionProtocol$PacketSet/lambda$withBundlePacket$1 (Lnet/minecraft/network/protocol/BundleDelimiterPacket;Lnet/minecraft/network/FriendlyByteBuf;)Lnet/minecraft/network/protocol/BundleDelimiterPacket; +MD: net/minecraft/network/ConnectionProtocol$PacketSet/m_264507_ ()Lnet/minecraft/network/protocol/BundlerInfo; net/minecraft/network/ConnectionProtocol$PacketSet/bundlerInfo ()Lnet/minecraft/network/protocol/BundlerInfo; +MD: net/minecraft/network/ConnectionProtocol$PacketSet/m_264516_ (Ljava/lang/Class;)I net/minecraft/network/ConnectionProtocol$PacketSet/getId (Ljava/lang/Class;)I +MD: net/minecraft/network/ConnectionProtocol$PacketSet/m_264538_ (Ljava/util/function/Consumer;)V net/minecraft/network/ConnectionProtocol$PacketSet/listAllPackets (Ljava/util/function/Consumer;)V +MD: net/minecraft/network/ConnectionProtocol$PacketSet/m_264543_ (Ljava/lang/Class;Ljava/util/function/Function;)Lnet/minecraft/network/ConnectionProtocol$PacketSet; net/minecraft/network/ConnectionProtocol$PacketSet/withBundlePacket (Ljava/lang/Class;Ljava/util/function/Function;)Lnet/minecraft/network/ConnectionProtocol$PacketSet; +MD: net/minecraft/network/ConnectionProtocol$ProtocolBuilder/ ()V net/minecraft/network/ConnectionProtocol$ProtocolBuilder/ ()V +MD: net/minecraft/network/ConnectionProtocol$ProtocolBuilder/m_129625_ (Lnet/minecraft/network/protocol/PacketFlow;Lnet/minecraft/network/ConnectionProtocol$PacketSet;)Lnet/minecraft/network/ConnectionProtocol$ProtocolBuilder; net/minecraft/network/ConnectionProtocol$ProtocolBuilder/addFlow (Lnet/minecraft/network/protocol/PacketFlow;Lnet/minecraft/network/ConnectionProtocol$PacketSet;)Lnet/minecraft/network/ConnectionProtocol$ProtocolBuilder; +MD: net/minecraft/network/FriendlyByteBuf/ ()V net/minecraft/network/FriendlyByteBuf/ ()V +MD: net/minecraft/network/FriendlyByteBuf/ (Lio/netty/buffer/ByteBuf;)V net/minecraft/network/FriendlyByteBuf/ (Lio/netty/buffer/ByteBuf;)V +MD: net/minecraft/network/FriendlyByteBuf/alloc ()Lio/netty/buffer/ByteBufAllocator; net/minecraft/network/FriendlyByteBuf/alloc ()Lio/netty/buffer/ByteBufAllocator; +MD: net/minecraft/network/FriendlyByteBuf/array ()[B net/minecraft/network/FriendlyByteBuf/array ()[B +MD: net/minecraft/network/FriendlyByteBuf/arrayOffset ()I net/minecraft/network/FriendlyByteBuf/arrayOffset ()I +MD: net/minecraft/network/FriendlyByteBuf/asReadOnly ()Lio/netty/buffer/ByteBuf; net/minecraft/network/FriendlyByteBuf/asReadOnly ()Lio/netty/buffer/ByteBuf; +MD: net/minecraft/network/FriendlyByteBuf/bytesBefore (B)I net/minecraft/network/FriendlyByteBuf/bytesBefore (B)I +MD: net/minecraft/network/FriendlyByteBuf/bytesBefore (IB)I net/minecraft/network/FriendlyByteBuf/bytesBefore (IB)I +MD: net/minecraft/network/FriendlyByteBuf/bytesBefore (IIB)I net/minecraft/network/FriendlyByteBuf/bytesBefore (IIB)I +MD: net/minecraft/network/FriendlyByteBuf/capacity ()I net/minecraft/network/FriendlyByteBuf/capacity ()I +MD: net/minecraft/network/FriendlyByteBuf/capacity (I)Lio/netty/buffer/ByteBuf; net/minecraft/network/FriendlyByteBuf/capacity (I)Lio/netty/buffer/ByteBuf; +MD: net/minecraft/network/FriendlyByteBuf/clear ()Lio/netty/buffer/ByteBuf; net/minecraft/network/FriendlyByteBuf/clear ()Lio/netty/buffer/ByteBuf; +MD: net/minecraft/network/FriendlyByteBuf/compareTo (Ljava/lang/Object;)I net/minecraft/network/FriendlyByteBuf/compareTo (Ljava/lang/Object;)I +MD: net/minecraft/network/FriendlyByteBuf/compareTo (Lio/netty/buffer/ByteBuf;)I net/minecraft/network/FriendlyByteBuf/compareTo (Lio/netty/buffer/ByteBuf;)I +MD: net/minecraft/network/FriendlyByteBuf/copy (II)Lio/netty/buffer/ByteBuf; net/minecraft/network/FriendlyByteBuf/copy (II)Lio/netty/buffer/ByteBuf; +MD: net/minecraft/network/FriendlyByteBuf/copy ()Lio/netty/buffer/ByteBuf; net/minecraft/network/FriendlyByteBuf/copy ()Lio/netty/buffer/ByteBuf; +MD: net/minecraft/network/FriendlyByteBuf/discardReadBytes ()Lio/netty/buffer/ByteBuf; net/minecraft/network/FriendlyByteBuf/discardReadBytes ()Lio/netty/buffer/ByteBuf; +MD: net/minecraft/network/FriendlyByteBuf/discardSomeReadBytes ()Lio/netty/buffer/ByteBuf; net/minecraft/network/FriendlyByteBuf/discardSomeReadBytes ()Lio/netty/buffer/ByteBuf; +MD: net/minecraft/network/FriendlyByteBuf/duplicate ()Lio/netty/buffer/ByteBuf; net/minecraft/network/FriendlyByteBuf/duplicate ()Lio/netty/buffer/ByteBuf; +MD: net/minecraft/network/FriendlyByteBuf/ensureWritable (IZ)I net/minecraft/network/FriendlyByteBuf/ensureWritable (IZ)I +MD: net/minecraft/network/FriendlyByteBuf/ensureWritable (I)Lio/netty/buffer/ByteBuf; net/minecraft/network/FriendlyByteBuf/ensureWritable (I)Lio/netty/buffer/ByteBuf; +MD: net/minecraft/network/FriendlyByteBuf/equals (Ljava/lang/Object;)Z net/minecraft/network/FriendlyByteBuf/equals (Ljava/lang/Object;)Z +MD: net/minecraft/network/FriendlyByteBuf/forEachByte (IILio/netty/util/ByteProcessor;)I net/minecraft/network/FriendlyByteBuf/forEachByte (IILio/netty/util/ByteProcessor;)I +MD: net/minecraft/network/FriendlyByteBuf/forEachByte (Lio/netty/util/ByteProcessor;)I net/minecraft/network/FriendlyByteBuf/forEachByte (Lio/netty/util/ByteProcessor;)I +MD: net/minecraft/network/FriendlyByteBuf/forEachByteDesc (Lio/netty/util/ByteProcessor;)I net/minecraft/network/FriendlyByteBuf/forEachByteDesc (Lio/netty/util/ByteProcessor;)I +MD: net/minecraft/network/FriendlyByteBuf/forEachByteDesc (IILio/netty/util/ByteProcessor;)I net/minecraft/network/FriendlyByteBuf/forEachByteDesc (IILio/netty/util/ByteProcessor;)I +MD: net/minecraft/network/FriendlyByteBuf/getBoolean (I)Z net/minecraft/network/FriendlyByteBuf/getBoolean (I)Z +MD: net/minecraft/network/FriendlyByteBuf/getByte (I)B net/minecraft/network/FriendlyByteBuf/getByte (I)B +MD: net/minecraft/network/FriendlyByteBuf/getBytes (I[B)Lio/netty/buffer/ByteBuf; net/minecraft/network/FriendlyByteBuf/getBytes (I[B)Lio/netty/buffer/ByteBuf; +MD: net/minecraft/network/FriendlyByteBuf/getBytes (ILio/netty/buffer/ByteBuf;I)Lio/netty/buffer/ByteBuf; net/minecraft/network/FriendlyByteBuf/getBytes (ILio/netty/buffer/ByteBuf;I)Lio/netty/buffer/ByteBuf; +MD: net/minecraft/network/FriendlyByteBuf/getBytes (ILjava/nio/ByteBuffer;)Lio/netty/buffer/ByteBuf; net/minecraft/network/FriendlyByteBuf/getBytes (ILjava/nio/ByteBuffer;)Lio/netty/buffer/ByteBuf; +MD: net/minecraft/network/FriendlyByteBuf/getBytes (I[BII)Lio/netty/buffer/ByteBuf; net/minecraft/network/FriendlyByteBuf/getBytes (I[BII)Lio/netty/buffer/ByteBuf; +MD: net/minecraft/network/FriendlyByteBuf/getBytes (ILjava/nio/channels/GatheringByteChannel;I)I net/minecraft/network/FriendlyByteBuf/getBytes (ILjava/nio/channels/GatheringByteChannel;I)I +MD: net/minecraft/network/FriendlyByteBuf/getBytes (ILjava/io/OutputStream;I)Lio/netty/buffer/ByteBuf; net/minecraft/network/FriendlyByteBuf/getBytes (ILjava/io/OutputStream;I)Lio/netty/buffer/ByteBuf; +MD: net/minecraft/network/FriendlyByteBuf/getBytes (ILio/netty/buffer/ByteBuf;)Lio/netty/buffer/ByteBuf; net/minecraft/network/FriendlyByteBuf/getBytes (ILio/netty/buffer/ByteBuf;)Lio/netty/buffer/ByteBuf; +MD: net/minecraft/network/FriendlyByteBuf/getBytes (ILio/netty/buffer/ByteBuf;II)Lio/netty/buffer/ByteBuf; net/minecraft/network/FriendlyByteBuf/getBytes (ILio/netty/buffer/ByteBuf;II)Lio/netty/buffer/ByteBuf; +MD: net/minecraft/network/FriendlyByteBuf/getBytes (ILjava/nio/channels/FileChannel;JI)I net/minecraft/network/FriendlyByteBuf/getBytes (ILjava/nio/channels/FileChannel;JI)I +MD: net/minecraft/network/FriendlyByteBuf/getChar (I)C net/minecraft/network/FriendlyByteBuf/getChar (I)C +MD: net/minecraft/network/FriendlyByteBuf/getCharSequence (IILjava/nio/charset/Charset;)Ljava/lang/CharSequence; net/minecraft/network/FriendlyByteBuf/getCharSequence (IILjava/nio/charset/Charset;)Ljava/lang/CharSequence; +MD: net/minecraft/network/FriendlyByteBuf/getDouble (I)D net/minecraft/network/FriendlyByteBuf/getDouble (I)D +MD: net/minecraft/network/FriendlyByteBuf/getFloat (I)F net/minecraft/network/FriendlyByteBuf/getFloat (I)F +MD: net/minecraft/network/FriendlyByteBuf/getInt (I)I net/minecraft/network/FriendlyByteBuf/getInt (I)I +MD: net/minecraft/network/FriendlyByteBuf/getIntLE (I)I net/minecraft/network/FriendlyByteBuf/getIntLE (I)I +MD: net/minecraft/network/FriendlyByteBuf/getLong (I)J net/minecraft/network/FriendlyByteBuf/getLong (I)J +MD: net/minecraft/network/FriendlyByteBuf/getLongLE (I)J net/minecraft/network/FriendlyByteBuf/getLongLE (I)J +MD: net/minecraft/network/FriendlyByteBuf/getMedium (I)I net/minecraft/network/FriendlyByteBuf/getMedium (I)I +MD: net/minecraft/network/FriendlyByteBuf/getMediumLE (I)I net/minecraft/network/FriendlyByteBuf/getMediumLE (I)I +MD: net/minecraft/network/FriendlyByteBuf/getShort (I)S net/minecraft/network/FriendlyByteBuf/getShort (I)S +MD: net/minecraft/network/FriendlyByteBuf/getShortLE (I)S net/minecraft/network/FriendlyByteBuf/getShortLE (I)S +MD: net/minecraft/network/FriendlyByteBuf/getUnsignedByte (I)S net/minecraft/network/FriendlyByteBuf/getUnsignedByte (I)S +MD: net/minecraft/network/FriendlyByteBuf/getUnsignedInt (I)J net/minecraft/network/FriendlyByteBuf/getUnsignedInt (I)J +MD: net/minecraft/network/FriendlyByteBuf/getUnsignedIntLE (I)J net/minecraft/network/FriendlyByteBuf/getUnsignedIntLE (I)J +MD: net/minecraft/network/FriendlyByteBuf/getUnsignedMedium (I)I net/minecraft/network/FriendlyByteBuf/getUnsignedMedium (I)I +MD: net/minecraft/network/FriendlyByteBuf/getUnsignedMediumLE (I)I net/minecraft/network/FriendlyByteBuf/getUnsignedMediumLE (I)I +MD: net/minecraft/network/FriendlyByteBuf/getUnsignedShort (I)I net/minecraft/network/FriendlyByteBuf/getUnsignedShort (I)I +MD: net/minecraft/network/FriendlyByteBuf/getUnsignedShortLE (I)I net/minecraft/network/FriendlyByteBuf/getUnsignedShortLE (I)I +MD: net/minecraft/network/FriendlyByteBuf/hasArray ()Z net/minecraft/network/FriendlyByteBuf/hasArray ()Z +MD: net/minecraft/network/FriendlyByteBuf/hasMemoryAddress ()Z net/minecraft/network/FriendlyByteBuf/hasMemoryAddress ()Z +MD: net/minecraft/network/FriendlyByteBuf/hashCode ()I net/minecraft/network/FriendlyByteBuf/hashCode ()I +MD: net/minecraft/network/FriendlyByteBuf/indexOf (IIB)I net/minecraft/network/FriendlyByteBuf/indexOf (IIB)I +MD: net/minecraft/network/FriendlyByteBuf/internalNioBuffer (II)Ljava/nio/ByteBuffer; net/minecraft/network/FriendlyByteBuf/internalNioBuffer (II)Ljava/nio/ByteBuffer; +MD: net/minecraft/network/FriendlyByteBuf/isDirect ()Z net/minecraft/network/FriendlyByteBuf/isDirect ()Z +MD: net/minecraft/network/FriendlyByteBuf/isReadOnly ()Z net/minecraft/network/FriendlyByteBuf/isReadOnly ()Z +MD: net/minecraft/network/FriendlyByteBuf/isReadable (I)Z net/minecraft/network/FriendlyByteBuf/isReadable (I)Z +MD: net/minecraft/network/FriendlyByteBuf/isReadable ()Z net/minecraft/network/FriendlyByteBuf/isReadable ()Z +MD: net/minecraft/network/FriendlyByteBuf/isWritable (I)Z net/minecraft/network/FriendlyByteBuf/isWritable (I)Z +MD: net/minecraft/network/FriendlyByteBuf/isWritable ()Z net/minecraft/network/FriendlyByteBuf/isWritable ()Z +MD: net/minecraft/network/FriendlyByteBuf/m_130052_ ()[B net/minecraft/network/FriendlyByteBuf/readByteArray ()[B +MD: net/minecraft/network/FriendlyByteBuf/m_130053_ (I)I net/minecraft/network/FriendlyByteBuf/getVarIntSize (I)I +MD: net/minecraft/network/FriendlyByteBuf/m_130055_ (Lnet/minecraft/world/item/ItemStack;)Lnet/minecraft/network/FriendlyByteBuf; net/minecraft/network/FriendlyByteBuf/writeItem (Lnet/minecraft/world/item/ItemStack;)Lnet/minecraft/network/FriendlyByteBuf; +MD: net/minecraft/network/FriendlyByteBuf/m_130062_ (Lnet/minecraft/world/phys/BlockHitResult;)V net/minecraft/network/FriendlyByteBuf/writeBlockHitResult (Lnet/minecraft/world/phys/BlockHitResult;)V +MD: net/minecraft/network/FriendlyByteBuf/m_130064_ (Lnet/minecraft/core/BlockPos;)Lnet/minecraft/network/FriendlyByteBuf; net/minecraft/network/FriendlyByteBuf/writeBlockPos (Lnet/minecraft/core/BlockPos;)Lnet/minecraft/network/FriendlyByteBuf; +MD: net/minecraft/network/FriendlyByteBuf/m_130066_ (Ljava/lang/Class;)Ljava/lang/Enum; net/minecraft/network/FriendlyByteBuf/readEnum (Ljava/lang/Class;)Ljava/lang/Enum; +MD: net/minecraft/network/FriendlyByteBuf/m_130068_ (Ljava/lang/Enum;)Lnet/minecraft/network/FriendlyByteBuf; net/minecraft/network/FriendlyByteBuf/writeEnum (Ljava/lang/Enum;)Lnet/minecraft/network/FriendlyByteBuf; +MD: net/minecraft/network/FriendlyByteBuf/m_130070_ (Ljava/lang/String;)Lnet/minecraft/network/FriendlyByteBuf; net/minecraft/network/FriendlyByteBuf/writeUtf (Ljava/lang/String;)Lnet/minecraft/network/FriendlyByteBuf; +MD: net/minecraft/network/FriendlyByteBuf/m_130072_ (Ljava/lang/String;I)Lnet/minecraft/network/FriendlyByteBuf; net/minecraft/network/FriendlyByteBuf/writeUtf (Ljava/lang/String;I)Lnet/minecraft/network/FriendlyByteBuf; +MD: net/minecraft/network/FriendlyByteBuf/m_130075_ (Ljava/util/Date;)Lnet/minecraft/network/FriendlyByteBuf; net/minecraft/network/FriendlyByteBuf/writeDate (Ljava/util/Date;)Lnet/minecraft/network/FriendlyByteBuf; +MD: net/minecraft/network/FriendlyByteBuf/m_130077_ (Ljava/util/UUID;)Lnet/minecraft/network/FriendlyByteBuf; net/minecraft/network/FriendlyByteBuf/writeUUID (Ljava/util/UUID;)Lnet/minecraft/network/FriendlyByteBuf; +MD: net/minecraft/network/FriendlyByteBuf/m_130079_ (Lnet/minecraft/nbt/CompoundTag;)Lnet/minecraft/network/FriendlyByteBuf; net/minecraft/network/FriendlyByteBuf/writeNbt (Lnet/minecraft/nbt/CompoundTag;)Lnet/minecraft/network/FriendlyByteBuf; +MD: net/minecraft/network/FriendlyByteBuf/m_130081_ (Lnet/minecraft/nbt/NbtAccounter;)Lnet/minecraft/nbt/CompoundTag; net/minecraft/network/FriendlyByteBuf/readNbt (Lnet/minecraft/nbt/NbtAccounter;)Lnet/minecraft/nbt/CompoundTag; +MD: net/minecraft/network/FriendlyByteBuf/m_130083_ (Lnet/minecraft/network/chat/Component;)Lnet/minecraft/network/FriendlyByteBuf; net/minecraft/network/FriendlyByteBuf/writeComponent (Lnet/minecraft/network/chat/Component;)Lnet/minecraft/network/FriendlyByteBuf; +MD: net/minecraft/network/FriendlyByteBuf/m_130085_ (Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/network/FriendlyByteBuf; net/minecraft/network/FriendlyByteBuf/writeResourceLocation (Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/network/FriendlyByteBuf; +MD: net/minecraft/network/FriendlyByteBuf/m_130087_ ([B)Lnet/minecraft/network/FriendlyByteBuf; net/minecraft/network/FriendlyByteBuf/writeByteArray ([B)Lnet/minecraft/network/FriendlyByteBuf; +MD: net/minecraft/network/FriendlyByteBuf/m_130089_ ([I)Lnet/minecraft/network/FriendlyByteBuf; net/minecraft/network/FriendlyByteBuf/writeVarIntArray ([I)Lnet/minecraft/network/FriendlyByteBuf; +MD: net/minecraft/network/FriendlyByteBuf/m_130091_ ([J)Lnet/minecraft/network/FriendlyByteBuf; net/minecraft/network/FriendlyByteBuf/writeLongArray ([J)Lnet/minecraft/network/FriendlyByteBuf; +MD: net/minecraft/network/FriendlyByteBuf/m_130093_ ([JI)[J net/minecraft/network/FriendlyByteBuf/readLongArray ([JI)[J +MD: net/minecraft/network/FriendlyByteBuf/m_130100_ ()[I net/minecraft/network/FriendlyByteBuf/readVarIntArray ()[I +MD: net/minecraft/network/FriendlyByteBuf/m_130101_ (I)[B net/minecraft/network/FriendlyByteBuf/readByteArray (I)[B +MD: net/minecraft/network/FriendlyByteBuf/m_130103_ (J)Lnet/minecraft/network/FriendlyByteBuf; net/minecraft/network/FriendlyByteBuf/writeVarLong (J)Lnet/minecraft/network/FriendlyByteBuf; +MD: net/minecraft/network/FriendlyByteBuf/m_130105_ ([J)[J net/minecraft/network/FriendlyByteBuf/readLongArray ([J)[J +MD: net/minecraft/network/FriendlyByteBuf/m_130116_ (I)[I net/minecraft/network/FriendlyByteBuf/readVarIntArray (I)[I +MD: net/minecraft/network/FriendlyByteBuf/m_130130_ (I)Lnet/minecraft/network/FriendlyByteBuf; net/minecraft/network/FriendlyByteBuf/writeVarInt (I)Lnet/minecraft/network/FriendlyByteBuf; +MD: net/minecraft/network/FriendlyByteBuf/m_130135_ ()Lnet/minecraft/core/BlockPos; net/minecraft/network/FriendlyByteBuf/readBlockPos ()Lnet/minecraft/core/BlockPos; +MD: net/minecraft/network/FriendlyByteBuf/m_130136_ (I)Ljava/lang/String; net/minecraft/network/FriendlyByteBuf/readUtf (I)Ljava/lang/String; +MD: net/minecraft/network/FriendlyByteBuf/m_130157_ ()Lnet/minecraft/core/SectionPos; net/minecraft/network/FriendlyByteBuf/readSectionPos ()Lnet/minecraft/core/SectionPos; +MD: net/minecraft/network/FriendlyByteBuf/m_130238_ ()Lnet/minecraft/network/chat/Component; net/minecraft/network/FriendlyByteBuf/readComponent ()Lnet/minecraft/network/chat/Component; +MD: net/minecraft/network/FriendlyByteBuf/m_130242_ ()I net/minecraft/network/FriendlyByteBuf/readVarInt ()I +MD: net/minecraft/network/FriendlyByteBuf/m_130258_ ()J net/minecraft/network/FriendlyByteBuf/readVarLong ()J +MD: net/minecraft/network/FriendlyByteBuf/m_130259_ ()Ljava/util/UUID; net/minecraft/network/FriendlyByteBuf/readUUID ()Ljava/util/UUID; +MD: net/minecraft/network/FriendlyByteBuf/m_130260_ ()Lnet/minecraft/nbt/CompoundTag; net/minecraft/network/FriendlyByteBuf/readNbt ()Lnet/minecraft/nbt/CompoundTag; +MD: net/minecraft/network/FriendlyByteBuf/m_130261_ ()Lnet/minecraft/nbt/CompoundTag; net/minecraft/network/FriendlyByteBuf/readAnySizeNbt ()Lnet/minecraft/nbt/CompoundTag; +MD: net/minecraft/network/FriendlyByteBuf/m_130267_ ()Lnet/minecraft/world/item/ItemStack; net/minecraft/network/FriendlyByteBuf/readItem ()Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/network/FriendlyByteBuf/m_130277_ ()Ljava/lang/String; net/minecraft/network/FriendlyByteBuf/readUtf ()Ljava/lang/String; +MD: net/minecraft/network/FriendlyByteBuf/m_130281_ ()Lnet/minecraft/resources/ResourceLocation; net/minecraft/network/FriendlyByteBuf/readResourceLocation ()Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/network/FriendlyByteBuf/m_130282_ ()Ljava/util/Date; net/minecraft/network/FriendlyByteBuf/readDate ()Ljava/util/Date; +MD: net/minecraft/network/FriendlyByteBuf/m_130283_ ()Lnet/minecraft/world/phys/BlockHitResult; net/minecraft/network/FriendlyByteBuf/readBlockHitResult ()Lnet/minecraft/world/phys/BlockHitResult; +MD: net/minecraft/network/FriendlyByteBuf/m_178338_ ()Lit/unimi/dsi/fastutil/ints/IntList; net/minecraft/network/FriendlyByteBuf/readIntIdList ()Lit/unimi/dsi/fastutil/ints/IntList; +MD: net/minecraft/network/FriendlyByteBuf/m_178339_ (J)I net/minecraft/network/FriendlyByteBuf/getVarLongSize (J)I +MD: net/minecraft/network/FriendlyByteBuf/m_178341_ (Lnet/minecraft/world/level/ChunkPos;)Lnet/minecraft/network/FriendlyByteBuf; net/minecraft/network/FriendlyByteBuf/writeChunkPos (Lnet/minecraft/world/level/ChunkPos;)Lnet/minecraft/network/FriendlyByteBuf; +MD: net/minecraft/network/FriendlyByteBuf/m_178343_ (Lnet/minecraft/core/SectionPos;)Lnet/minecraft/network/FriendlyByteBuf; net/minecraft/network/FriendlyByteBuf/writeSectionPos (Lnet/minecraft/core/SectionPos;)Lnet/minecraft/network/FriendlyByteBuf; +MD: net/minecraft/network/FriendlyByteBuf/m_178345_ (Lit/unimi/dsi/fastutil/ints/IntList;)V net/minecraft/network/FriendlyByteBuf/writeIntIdList (Lit/unimi/dsi/fastutil/ints/IntList;)V +MD: net/minecraft/network/FriendlyByteBuf/m_178350_ (Ljava/util/BitSet;)V net/minecraft/network/FriendlyByteBuf/writeBitSet (Ljava/util/BitSet;)V +MD: net/minecraft/network/FriendlyByteBuf/m_178364_ (Ljava/util/function/Consumer;)V net/minecraft/network/FriendlyByteBuf/readWithCount (Ljava/util/function/Consumer;)V +MD: net/minecraft/network/FriendlyByteBuf/m_178381_ ()[J net/minecraft/network/FriendlyByteBuf/readLongArray ()[J +MD: net/minecraft/network/FriendlyByteBuf/m_178382_ ()[B net/minecraft/network/FriendlyByteBuf/accessByteBufWithCorrectSize ()[B +MD: net/minecraft/network/FriendlyByteBuf/m_178383_ ()Lnet/minecraft/world/level/ChunkPos; net/minecraft/network/FriendlyByteBuf/readChunkPos ()Lnet/minecraft/world/level/ChunkPos; +MD: net/minecraft/network/FriendlyByteBuf/m_178384_ ()Ljava/util/BitSet; net/minecraft/network/FriendlyByteBuf/readBitSet ()Ljava/util/BitSet; +MD: net/minecraft/network/FriendlyByteBuf/m_182683_ (ILjava/util/function/IntFunction;I)Ljava/lang/Object; net/minecraft/network/FriendlyByteBuf/lambda$limitValue$4 (ILjava/util/function/IntFunction;I)Ljava/lang/Object; +MD: net/minecraft/network/FriendlyByteBuf/m_182695_ (Ljava/util/function/IntFunction;I)Ljava/util/function/IntFunction; net/minecraft/network/FriendlyByteBuf/limitValue (Ljava/util/function/IntFunction;I)Ljava/util/function/IntFunction; +MD: net/minecraft/network/FriendlyByteBuf/m_236801_ (Lnet/minecraft/resources/ResourceKey;)Lnet/minecraft/resources/ResourceKey; net/minecraft/network/FriendlyByteBuf/readResourceKey (Lnet/minecraft/resources/ResourceKey;)Lnet/minecraft/resources/ResourceKey; +MD: net/minecraft/network/FriendlyByteBuf/m_236803_ (Lcom/mojang/authlib/GameProfile;)V net/minecraft/network/FriendlyByteBuf/writeGameProfile (Lcom/mojang/authlib/GameProfile;)V +MD: net/minecraft/network/FriendlyByteBuf/m_236805_ (Lcom/mojang/authlib/properties/Property;)V net/minecraft/network/FriendlyByteBuf/writeProperty (Lcom/mojang/authlib/properties/Property;)V +MD: net/minecraft/network/FriendlyByteBuf/m_236807_ (Lcom/mojang/authlib/properties/PropertyMap;Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/FriendlyByteBuf/lambda$readGameProfileProperties$8 (Lcom/mojang/authlib/properties/PropertyMap;Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/FriendlyByteBuf/m_236810_ (Lcom/mojang/datafixers/util/Either;Lnet/minecraft/network/FriendlyByteBuf$Writer;Lnet/minecraft/network/FriendlyByteBuf$Writer;)V net/minecraft/network/FriendlyByteBuf/writeEither (Lcom/mojang/datafixers/util/Either;Lnet/minecraft/network/FriendlyByteBuf$Writer;Lnet/minecraft/network/FriendlyByteBuf$Writer;)V +MD: net/minecraft/network/FriendlyByteBuf/m_236814_ (Lnet/minecraft/core/GlobalPos;)V net/minecraft/network/FriendlyByteBuf/writeGlobalPos (Lnet/minecraft/core/GlobalPos;)V +MD: net/minecraft/network/FriendlyByteBuf/m_236816_ (Lnet/minecraft/core/IdMap;)Ljava/lang/Object; net/minecraft/network/FriendlyByteBuf/readById (Lnet/minecraft/core/IdMap;)Ljava/lang/Object; +MD: net/minecraft/network/FriendlyByteBuf/m_236818_ (Lnet/minecraft/core/IdMap;Ljava/lang/Object;)V net/minecraft/network/FriendlyByteBuf/writeId (Lnet/minecraft/core/IdMap;Ljava/lang/Object;)V +MD: net/minecraft/network/FriendlyByteBuf/m_236821_ (Ljava/lang/Object;Lnet/minecraft/network/FriendlyByteBuf$Writer;)V net/minecraft/network/FriendlyByteBuf/writeNullable (Ljava/lang/Object;Lnet/minecraft/network/FriendlyByteBuf$Writer;)V +MD: net/minecraft/network/FriendlyByteBuf/m_236824_ (Ljava/security/PublicKey;)Lnet/minecraft/network/FriendlyByteBuf; net/minecraft/network/FriendlyByteBuf/writePublicKey (Ljava/security/PublicKey;)Lnet/minecraft/network/FriendlyByteBuf; +MD: net/minecraft/network/FriendlyByteBuf/m_236826_ (Ljava/time/Instant;)V net/minecraft/network/FriendlyByteBuf/writeInstant (Ljava/time/Instant;)V +MD: net/minecraft/network/FriendlyByteBuf/m_236828_ (Ljava/util/Collection;Lnet/minecraft/network/FriendlyByteBuf$Writer;)V net/minecraft/network/FriendlyByteBuf/writeCollection (Ljava/util/Collection;Lnet/minecraft/network/FriendlyByteBuf$Writer;)V +MD: net/minecraft/network/FriendlyByteBuf/m_236831_ (Ljava/util/Map;Lnet/minecraft/network/FriendlyByteBuf$Writer;Lnet/minecraft/network/FriendlyByteBuf$Writer;)V net/minecraft/network/FriendlyByteBuf/writeMap (Ljava/util/Map;Lnet/minecraft/network/FriendlyByteBuf$Writer;Lnet/minecraft/network/FriendlyByteBuf$Writer;)V +MD: net/minecraft/network/FriendlyByteBuf/m_236835_ (Ljava/util/Optional;Lnet/minecraft/network/FriendlyByteBuf$Writer;)V net/minecraft/network/FriendlyByteBuf/writeOptional (Ljava/util/Optional;Lnet/minecraft/network/FriendlyByteBuf$Writer;)V +MD: net/minecraft/network/FriendlyByteBuf/m_236838_ (Ljava/util/function/IntFunction;Lnet/minecraft/network/FriendlyByteBuf$Reader;)Ljava/util/Collection; net/minecraft/network/FriendlyByteBuf/readCollection (Ljava/util/function/IntFunction;Lnet/minecraft/network/FriendlyByteBuf$Reader;)Ljava/util/Collection; +MD: net/minecraft/network/FriendlyByteBuf/m_236841_ (Ljava/util/function/IntFunction;Lnet/minecraft/network/FriendlyByteBuf$Reader;Lnet/minecraft/network/FriendlyByteBuf$Reader;)Ljava/util/Map; net/minecraft/network/FriendlyByteBuf/readMap (Ljava/util/function/IntFunction;Lnet/minecraft/network/FriendlyByteBuf$Reader;Lnet/minecraft/network/FriendlyByteBuf$Reader;)Ljava/util/Map; +MD: net/minecraft/network/FriendlyByteBuf/m_236845_ (Lnet/minecraft/network/FriendlyByteBuf$Reader;)Ljava/util/List; net/minecraft/network/FriendlyByteBuf/readList (Lnet/minecraft/network/FriendlyByteBuf$Reader;)Ljava/util/List; +MD: net/minecraft/network/FriendlyByteBuf/m_236847_ (Lnet/minecraft/network/FriendlyByteBuf$Reader;Lnet/minecraft/network/FriendlyByteBuf$Reader;)Ljava/util/Map; net/minecraft/network/FriendlyByteBuf/readMap (Lnet/minecraft/network/FriendlyByteBuf$Reader;Lnet/minecraft/network/FriendlyByteBuf$Reader;)Ljava/util/Map; +MD: net/minecraft/network/FriendlyByteBuf/m_236850_ (Lnet/minecraft/network/FriendlyByteBuf$Writer;Ljava/lang/Object;)V net/minecraft/network/FriendlyByteBuf/lambda$writeEither$7 (Lnet/minecraft/network/FriendlyByteBuf$Writer;Ljava/lang/Object;)V +MD: net/minecraft/network/FriendlyByteBuf/m_236853_ (Lnet/minecraft/network/FriendlyByteBuf$Writer;Lnet/minecraft/network/FriendlyByteBuf$Writer;Ljava/lang/Object;Ljava/lang/Object;)V net/minecraft/network/FriendlyByteBuf/lambda$writeMap$5 (Lnet/minecraft/network/FriendlyByteBuf$Writer;Lnet/minecraft/network/FriendlyByteBuf$Writer;Ljava/lang/Object;Ljava/lang/Object;)V +MD: net/minecraft/network/FriendlyByteBuf/m_236858_ (Lnet/minecraft/resources/ResourceKey;)V net/minecraft/network/FriendlyByteBuf/writeResourceKey (Lnet/minecraft/resources/ResourceKey;)V +MD: net/minecraft/network/FriendlyByteBuf/m_236860_ (Lnet/minecraft/network/FriendlyByteBuf$Reader;)Ljava/util/Optional; net/minecraft/network/FriendlyByteBuf/readOptional (Lnet/minecraft/network/FriendlyByteBuf$Reader;)Ljava/util/Optional; +MD: net/minecraft/network/FriendlyByteBuf/m_236862_ (Lnet/minecraft/network/FriendlyByteBuf$Reader;Lnet/minecraft/network/FriendlyByteBuf$Reader;)Lcom/mojang/datafixers/util/Either; net/minecraft/network/FriendlyByteBuf/readEither (Lnet/minecraft/network/FriendlyByteBuf$Reader;Lnet/minecraft/network/FriendlyByteBuf$Reader;)Lcom/mojang/datafixers/util/Either; +MD: net/minecraft/network/FriendlyByteBuf/m_236865_ (Lnet/minecraft/network/FriendlyByteBuf$Writer;Ljava/lang/Object;)V net/minecraft/network/FriendlyByteBuf/lambda$writeEither$6 (Lnet/minecraft/network/FriendlyByteBuf$Writer;Ljava/lang/Object;)V +MD: net/minecraft/network/FriendlyByteBuf/m_236868_ (Lnet/minecraft/network/FriendlyByteBuf$Reader;)Ljava/lang/Object; net/minecraft/network/FriendlyByteBuf/readNullable (Lnet/minecraft/network/FriendlyByteBuf$Reader;)Ljava/lang/Object; +MD: net/minecraft/network/FriendlyByteBuf/m_236870_ (I)I net/minecraft/network/FriendlyByteBuf/getMaxEncodedUtfLength (I)I +MD: net/minecraft/network/FriendlyByteBuf/m_236872_ ()Lnet/minecraft/core/GlobalPos; net/minecraft/network/FriendlyByteBuf/readGlobalPos ()Lnet/minecraft/core/GlobalPos; +MD: net/minecraft/network/FriendlyByteBuf/m_236873_ ()Ljava/time/Instant; net/minecraft/network/FriendlyByteBuf/readInstant ()Ljava/time/Instant; +MD: net/minecraft/network/FriendlyByteBuf/m_236874_ ()Ljava/security/PublicKey; net/minecraft/network/FriendlyByteBuf/readPublicKey ()Ljava/security/PublicKey; +MD: net/minecraft/network/FriendlyByteBuf/m_236875_ ()Lcom/mojang/authlib/GameProfile; net/minecraft/network/FriendlyByteBuf/readGameProfile ()Lcom/mojang/authlib/GameProfile; +MD: net/minecraft/network/FriendlyByteBuf/m_236876_ ()Lcom/mojang/authlib/properties/Property; net/minecraft/network/FriendlyByteBuf/readProperty ()Lcom/mojang/authlib/properties/Property; +MD: net/minecraft/network/FriendlyByteBuf/m_245616_ (Ljava/util/EnumSet;Ljava/lang/Class;)V net/minecraft/network/FriendlyByteBuf/writeEnumSet (Ljava/util/EnumSet;Ljava/lang/Class;)V +MD: net/minecraft/network/FriendlyByteBuf/m_246636_ (Lcom/mojang/authlib/properties/PropertyMap;)V net/minecraft/network/FriendlyByteBuf/writeGameProfileProperties (Lcom/mojang/authlib/properties/PropertyMap;)V +MD: net/minecraft/network/FriendlyByteBuf/m_246901_ (Ljava/util/BitSet;I)V net/minecraft/network/FriendlyByteBuf/writeFixedBitSet (Ljava/util/BitSet;I)V +MD: net/minecraft/network/FriendlyByteBuf/m_246981_ ()Lcom/mojang/authlib/properties/PropertyMap; net/minecraft/network/FriendlyByteBuf/readGameProfileProperties ()Lcom/mojang/authlib/properties/PropertyMap; +MD: net/minecraft/network/FriendlyByteBuf/m_247336_ (Ljava/lang/Class;)Ljava/util/EnumSet; net/minecraft/network/FriendlyByteBuf/readEnumSet (Ljava/lang/Class;)Ljava/util/EnumSet; +MD: net/minecraft/network/FriendlyByteBuf/m_247358_ (I)Ljava/util/BitSet; net/minecraft/network/FriendlyByteBuf/readFixedBitSet (I)Ljava/util/BitSet; +MD: net/minecraft/network/FriendlyByteBuf/m_260777_ (Ljava/lang/Object;Ljava/lang/String;)Lio/netty/handler/codec/EncoderException; net/minecraft/network/FriendlyByteBuf/lambda$writeJsonWithCodec$3 (Ljava/lang/Object;Ljava/lang/String;)Lio/netty/handler/codec/EncoderException; +MD: net/minecraft/network/FriendlyByteBuf/m_260778_ (Lnet/minecraft/nbt/CompoundTag;Ljava/lang/String;)Lio/netty/handler/codec/DecoderException; net/minecraft/network/FriendlyByteBuf/lambda$readWithCodec$0 (Lnet/minecraft/nbt/CompoundTag;Ljava/lang/String;)Lio/netty/handler/codec/DecoderException; +MD: net/minecraft/network/FriendlyByteBuf/m_263187_ (Lnet/minecraft/core/IdMap;Lnet/minecraft/network/FriendlyByteBuf$Reader;)Lnet/minecraft/core/Holder; net/minecraft/network/FriendlyByteBuf/readById (Lnet/minecraft/core/IdMap;Lnet/minecraft/network/FriendlyByteBuf$Reader;)Lnet/minecraft/core/Holder; +MD: net/minecraft/network/FriendlyByteBuf/m_263218_ (Lnet/minecraft/core/IdMap;Lnet/minecraft/core/Holder;Lnet/minecraft/network/FriendlyByteBuf$Writer;)V net/minecraft/network/FriendlyByteBuf/writeId (Lnet/minecraft/core/IdMap;Lnet/minecraft/core/Holder;Lnet/minecraft/network/FriendlyByteBuf$Writer;)V +MD: net/minecraft/network/FriendlyByteBuf/m_266332_ (Lcom/mojang/serialization/DynamicOps;Lcom/mojang/serialization/Codec;Ljava/lang/Object;)V net/minecraft/network/FriendlyByteBuf/writeWithCodec (Lcom/mojang/serialization/DynamicOps;Lcom/mojang/serialization/Codec;Ljava/lang/Object;)V +MD: net/minecraft/network/FriendlyByteBuf/m_266466_ (Lcom/mojang/serialization/DynamicOps;Lcom/mojang/serialization/Codec;)Ljava/lang/Object; net/minecraft/network/FriendlyByteBuf/readWithCodec (Lcom/mojang/serialization/DynamicOps;Lcom/mojang/serialization/Codec;)Ljava/lang/Object; +MD: net/minecraft/network/FriendlyByteBuf/m_269101_ (Lorg/joml/Quaternionf;)V net/minecraft/network/FriendlyByteBuf/writeQuaternion (Lorg/joml/Quaternionf;)V +MD: net/minecraft/network/FriendlyByteBuf/m_269131_ ()Lorg/joml/Quaternionf; net/minecraft/network/FriendlyByteBuf/readQuaternion ()Lorg/joml/Quaternionf; +MD: net/minecraft/network/FriendlyByteBuf/m_269394_ ()Lorg/joml/Vector3f; net/minecraft/network/FriendlyByteBuf/readVector3f ()Lorg/joml/Vector3f; +MD: net/minecraft/network/FriendlyByteBuf/m_269582_ (Lorg/joml/Vector3f;)V net/minecraft/network/FriendlyByteBuf/writeVector3f (Lorg/joml/Vector3f;)V +MD: net/minecraft/network/FriendlyByteBuf/m_271590_ (Ljava/lang/String;)Lio/netty/handler/codec/DecoderException; net/minecraft/network/FriendlyByteBuf/lambda$readJsonWithCodec$2 (Ljava/lang/String;)Lio/netty/handler/codec/DecoderException; +MD: net/minecraft/network/FriendlyByteBuf/m_271591_ (Ljava/lang/Object;Ljava/lang/String;)Lio/netty/handler/codec/EncoderException; net/minecraft/network/FriendlyByteBuf/lambda$writeWithCodec$1 (Ljava/lang/Object;Ljava/lang/String;)Lio/netty/handler/codec/EncoderException; +MD: net/minecraft/network/FriendlyByteBuf/m_271872_ (Lcom/mojang/serialization/Codec;)Ljava/lang/Object; net/minecraft/network/FriendlyByteBuf/readJsonWithCodec (Lcom/mojang/serialization/Codec;)Ljava/lang/Object; +MD: net/minecraft/network/FriendlyByteBuf/m_272073_ (Lcom/mojang/serialization/Codec;Ljava/lang/Object;)V net/minecraft/network/FriendlyByteBuf/writeJsonWithCodec (Lcom/mojang/serialization/Codec;Ljava/lang/Object;)V +MD: net/minecraft/network/FriendlyByteBuf/markReaderIndex ()Lio/netty/buffer/ByteBuf; net/minecraft/network/FriendlyByteBuf/markReaderIndex ()Lio/netty/buffer/ByteBuf; +MD: net/minecraft/network/FriendlyByteBuf/markWriterIndex ()Lio/netty/buffer/ByteBuf; net/minecraft/network/FriendlyByteBuf/markWriterIndex ()Lio/netty/buffer/ByteBuf; +MD: net/minecraft/network/FriendlyByteBuf/maxCapacity ()I net/minecraft/network/FriendlyByteBuf/maxCapacity ()I +MD: net/minecraft/network/FriendlyByteBuf/maxWritableBytes ()I net/minecraft/network/FriendlyByteBuf/maxWritableBytes ()I +MD: net/minecraft/network/FriendlyByteBuf/memoryAddress ()J net/minecraft/network/FriendlyByteBuf/memoryAddress ()J +MD: net/minecraft/network/FriendlyByteBuf/nioBuffer ()Ljava/nio/ByteBuffer; net/minecraft/network/FriendlyByteBuf/nioBuffer ()Ljava/nio/ByteBuffer; +MD: net/minecraft/network/FriendlyByteBuf/nioBuffer (II)Ljava/nio/ByteBuffer; net/minecraft/network/FriendlyByteBuf/nioBuffer (II)Ljava/nio/ByteBuffer; +MD: net/minecraft/network/FriendlyByteBuf/nioBufferCount ()I net/minecraft/network/FriendlyByteBuf/nioBufferCount ()I +MD: net/minecraft/network/FriendlyByteBuf/nioBuffers (II)[Ljava/nio/ByteBuffer; net/minecraft/network/FriendlyByteBuf/nioBuffers (II)[Ljava/nio/ByteBuffer; +MD: net/minecraft/network/FriendlyByteBuf/nioBuffers ()[Ljava/nio/ByteBuffer; net/minecraft/network/FriendlyByteBuf/nioBuffers ()[Ljava/nio/ByteBuffer; +MD: net/minecraft/network/FriendlyByteBuf/order (Ljava/nio/ByteOrder;)Lio/netty/buffer/ByteBuf; net/minecraft/network/FriendlyByteBuf/order (Ljava/nio/ByteOrder;)Lio/netty/buffer/ByteBuf; +MD: net/minecraft/network/FriendlyByteBuf/order ()Ljava/nio/ByteOrder; net/minecraft/network/FriendlyByteBuf/order ()Ljava/nio/ByteOrder; +MD: net/minecraft/network/FriendlyByteBuf/readBoolean ()Z net/minecraft/network/FriendlyByteBuf/readBoolean ()Z +MD: net/minecraft/network/FriendlyByteBuf/readByte ()B net/minecraft/network/FriendlyByteBuf/readByte ()B +MD: net/minecraft/network/FriendlyByteBuf/readBytes (I)Lio/netty/buffer/ByteBuf; net/minecraft/network/FriendlyByteBuf/readBytes (I)Lio/netty/buffer/ByteBuf; +MD: net/minecraft/network/FriendlyByteBuf/readBytes (Ljava/nio/ByteBuffer;)Lio/netty/buffer/ByteBuf; net/minecraft/network/FriendlyByteBuf/readBytes (Ljava/nio/ByteBuffer;)Lio/netty/buffer/ByteBuf; +MD: net/minecraft/network/FriendlyByteBuf/readBytes (Lio/netty/buffer/ByteBuf;I)Lio/netty/buffer/ByteBuf; net/minecraft/network/FriendlyByteBuf/readBytes (Lio/netty/buffer/ByteBuf;I)Lio/netty/buffer/ByteBuf; +MD: net/minecraft/network/FriendlyByteBuf/readBytes (Ljava/nio/channels/GatheringByteChannel;I)I net/minecraft/network/FriendlyByteBuf/readBytes (Ljava/nio/channels/GatheringByteChannel;I)I +MD: net/minecraft/network/FriendlyByteBuf/readBytes (Lio/netty/buffer/ByteBuf;)Lio/netty/buffer/ByteBuf; net/minecraft/network/FriendlyByteBuf/readBytes (Lio/netty/buffer/ByteBuf;)Lio/netty/buffer/ByteBuf; +MD: net/minecraft/network/FriendlyByteBuf/readBytes (Ljava/nio/channels/FileChannel;JI)I net/minecraft/network/FriendlyByteBuf/readBytes (Ljava/nio/channels/FileChannel;JI)I +MD: net/minecraft/network/FriendlyByteBuf/readBytes (Ljava/io/OutputStream;I)Lio/netty/buffer/ByteBuf; net/minecraft/network/FriendlyByteBuf/readBytes (Ljava/io/OutputStream;I)Lio/netty/buffer/ByteBuf; +MD: net/minecraft/network/FriendlyByteBuf/readBytes ([B)Lio/netty/buffer/ByteBuf; net/minecraft/network/FriendlyByteBuf/readBytes ([B)Lio/netty/buffer/ByteBuf; +MD: net/minecraft/network/FriendlyByteBuf/readBytes (Lio/netty/buffer/ByteBuf;II)Lio/netty/buffer/ByteBuf; net/minecraft/network/FriendlyByteBuf/readBytes (Lio/netty/buffer/ByteBuf;II)Lio/netty/buffer/ByteBuf; +MD: net/minecraft/network/FriendlyByteBuf/readBytes ([BII)Lio/netty/buffer/ByteBuf; net/minecraft/network/FriendlyByteBuf/readBytes ([BII)Lio/netty/buffer/ByteBuf; +MD: net/minecraft/network/FriendlyByteBuf/readChar ()C net/minecraft/network/FriendlyByteBuf/readChar ()C +MD: net/minecraft/network/FriendlyByteBuf/readCharSequence (ILjava/nio/charset/Charset;)Ljava/lang/CharSequence; net/minecraft/network/FriendlyByteBuf/readCharSequence (ILjava/nio/charset/Charset;)Ljava/lang/CharSequence; +MD: net/minecraft/network/FriendlyByteBuf/readDouble ()D net/minecraft/network/FriendlyByteBuf/readDouble ()D +MD: net/minecraft/network/FriendlyByteBuf/readFloat ()F net/minecraft/network/FriendlyByteBuf/readFloat ()F +MD: net/minecraft/network/FriendlyByteBuf/readInt ()I net/minecraft/network/FriendlyByteBuf/readInt ()I +MD: net/minecraft/network/FriendlyByteBuf/readIntLE ()I net/minecraft/network/FriendlyByteBuf/readIntLE ()I +MD: net/minecraft/network/FriendlyByteBuf/readLong ()J net/minecraft/network/FriendlyByteBuf/readLong ()J +MD: net/minecraft/network/FriendlyByteBuf/readLongLE ()J net/minecraft/network/FriendlyByteBuf/readLongLE ()J +MD: net/minecraft/network/FriendlyByteBuf/readMedium ()I net/minecraft/network/FriendlyByteBuf/readMedium ()I +MD: net/minecraft/network/FriendlyByteBuf/readMediumLE ()I net/minecraft/network/FriendlyByteBuf/readMediumLE ()I +MD: net/minecraft/network/FriendlyByteBuf/readRetainedSlice (I)Lio/netty/buffer/ByteBuf; net/minecraft/network/FriendlyByteBuf/readRetainedSlice (I)Lio/netty/buffer/ByteBuf; +MD: net/minecraft/network/FriendlyByteBuf/readShort ()S net/minecraft/network/FriendlyByteBuf/readShort ()S +MD: net/minecraft/network/FriendlyByteBuf/readShortLE ()S net/minecraft/network/FriendlyByteBuf/readShortLE ()S +MD: net/minecraft/network/FriendlyByteBuf/readSlice (I)Lio/netty/buffer/ByteBuf; net/minecraft/network/FriendlyByteBuf/readSlice (I)Lio/netty/buffer/ByteBuf; +MD: net/minecraft/network/FriendlyByteBuf/readUnsignedByte ()S net/minecraft/network/FriendlyByteBuf/readUnsignedByte ()S +MD: net/minecraft/network/FriendlyByteBuf/readUnsignedInt ()J net/minecraft/network/FriendlyByteBuf/readUnsignedInt ()J +MD: net/minecraft/network/FriendlyByteBuf/readUnsignedIntLE ()J net/minecraft/network/FriendlyByteBuf/readUnsignedIntLE ()J +MD: net/minecraft/network/FriendlyByteBuf/readUnsignedMedium ()I net/minecraft/network/FriendlyByteBuf/readUnsignedMedium ()I +MD: net/minecraft/network/FriendlyByteBuf/readUnsignedMediumLE ()I net/minecraft/network/FriendlyByteBuf/readUnsignedMediumLE ()I +MD: net/minecraft/network/FriendlyByteBuf/readUnsignedShort ()I net/minecraft/network/FriendlyByteBuf/readUnsignedShort ()I +MD: net/minecraft/network/FriendlyByteBuf/readUnsignedShortLE ()I net/minecraft/network/FriendlyByteBuf/readUnsignedShortLE ()I +MD: net/minecraft/network/FriendlyByteBuf/readableBytes ()I net/minecraft/network/FriendlyByteBuf/readableBytes ()I +MD: net/minecraft/network/FriendlyByteBuf/readerIndex ()I net/minecraft/network/FriendlyByteBuf/readerIndex ()I +MD: net/minecraft/network/FriendlyByteBuf/readerIndex (I)Lio/netty/buffer/ByteBuf; net/minecraft/network/FriendlyByteBuf/readerIndex (I)Lio/netty/buffer/ByteBuf; +MD: net/minecraft/network/FriendlyByteBuf/refCnt ()I net/minecraft/network/FriendlyByteBuf/refCnt ()I +MD: net/minecraft/network/FriendlyByteBuf/release (I)Z net/minecraft/network/FriendlyByteBuf/release (I)Z +MD: net/minecraft/network/FriendlyByteBuf/release ()Z net/minecraft/network/FriendlyByteBuf/release ()Z +MD: net/minecraft/network/FriendlyByteBuf/resetReaderIndex ()Lio/netty/buffer/ByteBuf; net/minecraft/network/FriendlyByteBuf/resetReaderIndex ()Lio/netty/buffer/ByteBuf; +MD: net/minecraft/network/FriendlyByteBuf/resetWriterIndex ()Lio/netty/buffer/ByteBuf; net/minecraft/network/FriendlyByteBuf/resetWriterIndex ()Lio/netty/buffer/ByteBuf; +MD: net/minecraft/network/FriendlyByteBuf/retain (I)Lio/netty/buffer/ByteBuf; net/minecraft/network/FriendlyByteBuf/retain (I)Lio/netty/buffer/ByteBuf; +MD: net/minecraft/network/FriendlyByteBuf/retain (I)Lio/netty/util/ReferenceCounted; net/minecraft/network/FriendlyByteBuf/retain (I)Lio/netty/util/ReferenceCounted; +MD: net/minecraft/network/FriendlyByteBuf/retain ()Lio/netty/buffer/ByteBuf; net/minecraft/network/FriendlyByteBuf/retain ()Lio/netty/buffer/ByteBuf; +MD: net/minecraft/network/FriendlyByteBuf/retain ()Lio/netty/util/ReferenceCounted; net/minecraft/network/FriendlyByteBuf/retain ()Lio/netty/util/ReferenceCounted; +MD: net/minecraft/network/FriendlyByteBuf/retainedDuplicate ()Lio/netty/buffer/ByteBuf; net/minecraft/network/FriendlyByteBuf/retainedDuplicate ()Lio/netty/buffer/ByteBuf; +MD: net/minecraft/network/FriendlyByteBuf/retainedSlice ()Lio/netty/buffer/ByteBuf; net/minecraft/network/FriendlyByteBuf/retainedSlice ()Lio/netty/buffer/ByteBuf; +MD: net/minecraft/network/FriendlyByteBuf/retainedSlice (II)Lio/netty/buffer/ByteBuf; net/minecraft/network/FriendlyByteBuf/retainedSlice (II)Lio/netty/buffer/ByteBuf; +MD: net/minecraft/network/FriendlyByteBuf/setBoolean (IZ)Lio/netty/buffer/ByteBuf; net/minecraft/network/FriendlyByteBuf/setBoolean (IZ)Lio/netty/buffer/ByteBuf; +MD: net/minecraft/network/FriendlyByteBuf/setByte (II)Lio/netty/buffer/ByteBuf; net/minecraft/network/FriendlyByteBuf/setByte (II)Lio/netty/buffer/ByteBuf; +MD: net/minecraft/network/FriendlyByteBuf/setBytes (ILjava/io/InputStream;I)I net/minecraft/network/FriendlyByteBuf/setBytes (ILjava/io/InputStream;I)I +MD: net/minecraft/network/FriendlyByteBuf/setBytes (ILjava/nio/ByteBuffer;)Lio/netty/buffer/ByteBuf; net/minecraft/network/FriendlyByteBuf/setBytes (ILjava/nio/ByteBuffer;)Lio/netty/buffer/ByteBuf; +MD: net/minecraft/network/FriendlyByteBuf/setBytes (ILio/netty/buffer/ByteBuf;I)Lio/netty/buffer/ByteBuf; net/minecraft/network/FriendlyByteBuf/setBytes (ILio/netty/buffer/ByteBuf;I)Lio/netty/buffer/ByteBuf; +MD: net/minecraft/network/FriendlyByteBuf/setBytes (I[BII)Lio/netty/buffer/ByteBuf; net/minecraft/network/FriendlyByteBuf/setBytes (I[BII)Lio/netty/buffer/ByteBuf; +MD: net/minecraft/network/FriendlyByteBuf/setBytes (ILjava/nio/channels/ScatteringByteChannel;I)I net/minecraft/network/FriendlyByteBuf/setBytes (ILjava/nio/channels/ScatteringByteChannel;I)I +MD: net/minecraft/network/FriendlyByteBuf/setBytes (ILio/netty/buffer/ByteBuf;II)Lio/netty/buffer/ByteBuf; net/minecraft/network/FriendlyByteBuf/setBytes (ILio/netty/buffer/ByteBuf;II)Lio/netty/buffer/ByteBuf; +MD: net/minecraft/network/FriendlyByteBuf/setBytes (ILio/netty/buffer/ByteBuf;)Lio/netty/buffer/ByteBuf; net/minecraft/network/FriendlyByteBuf/setBytes (ILio/netty/buffer/ByteBuf;)Lio/netty/buffer/ByteBuf; +MD: net/minecraft/network/FriendlyByteBuf/setBytes (I[B)Lio/netty/buffer/ByteBuf; net/minecraft/network/FriendlyByteBuf/setBytes (I[B)Lio/netty/buffer/ByteBuf; +MD: net/minecraft/network/FriendlyByteBuf/setBytes (ILjava/nio/channels/FileChannel;JI)I net/minecraft/network/FriendlyByteBuf/setBytes (ILjava/nio/channels/FileChannel;JI)I +MD: net/minecraft/network/FriendlyByteBuf/setChar (II)Lio/netty/buffer/ByteBuf; net/minecraft/network/FriendlyByteBuf/setChar (II)Lio/netty/buffer/ByteBuf; +MD: net/minecraft/network/FriendlyByteBuf/setCharSequence (ILjava/lang/CharSequence;Ljava/nio/charset/Charset;)I net/minecraft/network/FriendlyByteBuf/setCharSequence (ILjava/lang/CharSequence;Ljava/nio/charset/Charset;)I +MD: net/minecraft/network/FriendlyByteBuf/setDouble (ID)Lio/netty/buffer/ByteBuf; net/minecraft/network/FriendlyByteBuf/setDouble (ID)Lio/netty/buffer/ByteBuf; +MD: net/minecraft/network/FriendlyByteBuf/setFloat (IF)Lio/netty/buffer/ByteBuf; net/minecraft/network/FriendlyByteBuf/setFloat (IF)Lio/netty/buffer/ByteBuf; +MD: net/minecraft/network/FriendlyByteBuf/setIndex (II)Lio/netty/buffer/ByteBuf; net/minecraft/network/FriendlyByteBuf/setIndex (II)Lio/netty/buffer/ByteBuf; +MD: net/minecraft/network/FriendlyByteBuf/setInt (II)Lio/netty/buffer/ByteBuf; net/minecraft/network/FriendlyByteBuf/setInt (II)Lio/netty/buffer/ByteBuf; +MD: net/minecraft/network/FriendlyByteBuf/setIntLE (II)Lio/netty/buffer/ByteBuf; net/minecraft/network/FriendlyByteBuf/setIntLE (II)Lio/netty/buffer/ByteBuf; +MD: net/minecraft/network/FriendlyByteBuf/setLong (IJ)Lio/netty/buffer/ByteBuf; net/minecraft/network/FriendlyByteBuf/setLong (IJ)Lio/netty/buffer/ByteBuf; +MD: net/minecraft/network/FriendlyByteBuf/setLongLE (IJ)Lio/netty/buffer/ByteBuf; net/minecraft/network/FriendlyByteBuf/setLongLE (IJ)Lio/netty/buffer/ByteBuf; +MD: net/minecraft/network/FriendlyByteBuf/setMedium (II)Lio/netty/buffer/ByteBuf; net/minecraft/network/FriendlyByteBuf/setMedium (II)Lio/netty/buffer/ByteBuf; +MD: net/minecraft/network/FriendlyByteBuf/setMediumLE (II)Lio/netty/buffer/ByteBuf; net/minecraft/network/FriendlyByteBuf/setMediumLE (II)Lio/netty/buffer/ByteBuf; +MD: net/minecraft/network/FriendlyByteBuf/setShort (II)Lio/netty/buffer/ByteBuf; net/minecraft/network/FriendlyByteBuf/setShort (II)Lio/netty/buffer/ByteBuf; +MD: net/minecraft/network/FriendlyByteBuf/setShortLE (II)Lio/netty/buffer/ByteBuf; net/minecraft/network/FriendlyByteBuf/setShortLE (II)Lio/netty/buffer/ByteBuf; +MD: net/minecraft/network/FriendlyByteBuf/setZero (II)Lio/netty/buffer/ByteBuf; net/minecraft/network/FriendlyByteBuf/setZero (II)Lio/netty/buffer/ByteBuf; +MD: net/minecraft/network/FriendlyByteBuf/skipBytes (I)Lio/netty/buffer/ByteBuf; net/minecraft/network/FriendlyByteBuf/skipBytes (I)Lio/netty/buffer/ByteBuf; +MD: net/minecraft/network/FriendlyByteBuf/slice (II)Lio/netty/buffer/ByteBuf; net/minecraft/network/FriendlyByteBuf/slice (II)Lio/netty/buffer/ByteBuf; +MD: net/minecraft/network/FriendlyByteBuf/slice ()Lio/netty/buffer/ByteBuf; net/minecraft/network/FriendlyByteBuf/slice ()Lio/netty/buffer/ByteBuf; +MD: net/minecraft/network/FriendlyByteBuf/toString (IILjava/nio/charset/Charset;)Ljava/lang/String; net/minecraft/network/FriendlyByteBuf/toString (IILjava/nio/charset/Charset;)Ljava/lang/String; +MD: net/minecraft/network/FriendlyByteBuf/toString (Ljava/nio/charset/Charset;)Ljava/lang/String; net/minecraft/network/FriendlyByteBuf/toString (Ljava/nio/charset/Charset;)Ljava/lang/String; +MD: net/minecraft/network/FriendlyByteBuf/toString ()Ljava/lang/String; net/minecraft/network/FriendlyByteBuf/toString ()Ljava/lang/String; +MD: net/minecraft/network/FriendlyByteBuf/touch (Ljava/lang/Object;)Lio/netty/util/ReferenceCounted; net/minecraft/network/FriendlyByteBuf/touch (Ljava/lang/Object;)Lio/netty/util/ReferenceCounted; +MD: net/minecraft/network/FriendlyByteBuf/touch ()Lio/netty/util/ReferenceCounted; net/minecraft/network/FriendlyByteBuf/touch ()Lio/netty/util/ReferenceCounted; +MD: net/minecraft/network/FriendlyByteBuf/touch ()Lio/netty/buffer/ByteBuf; net/minecraft/network/FriendlyByteBuf/touch ()Lio/netty/buffer/ByteBuf; +MD: net/minecraft/network/FriendlyByteBuf/touch (Ljava/lang/Object;)Lio/netty/buffer/ByteBuf; net/minecraft/network/FriendlyByteBuf/touch (Ljava/lang/Object;)Lio/netty/buffer/ByteBuf; +MD: net/minecraft/network/FriendlyByteBuf/unwrap ()Lio/netty/buffer/ByteBuf; net/minecraft/network/FriendlyByteBuf/unwrap ()Lio/netty/buffer/ByteBuf; +MD: net/minecraft/network/FriendlyByteBuf/writableBytes ()I net/minecraft/network/FriendlyByteBuf/writableBytes ()I +MD: net/minecraft/network/FriendlyByteBuf/writeBoolean (Z)Lio/netty/buffer/ByteBuf; net/minecraft/network/FriendlyByteBuf/writeBoolean (Z)Lio/netty/buffer/ByteBuf; +MD: net/minecraft/network/FriendlyByteBuf/writeByte (I)Lio/netty/buffer/ByteBuf; net/minecraft/network/FriendlyByteBuf/writeByte (I)Lio/netty/buffer/ByteBuf; +MD: net/minecraft/network/FriendlyByteBuf/writeBytes (Lio/netty/buffer/ByteBuf;)Lio/netty/buffer/ByteBuf; net/minecraft/network/FriendlyByteBuf/writeBytes (Lio/netty/buffer/ByteBuf;)Lio/netty/buffer/ByteBuf; +MD: net/minecraft/network/FriendlyByteBuf/writeBytes (Ljava/io/InputStream;I)I net/minecraft/network/FriendlyByteBuf/writeBytes (Ljava/io/InputStream;I)I +MD: net/minecraft/network/FriendlyByteBuf/writeBytes ([BII)Lio/netty/buffer/ByteBuf; net/minecraft/network/FriendlyByteBuf/writeBytes ([BII)Lio/netty/buffer/ByteBuf; +MD: net/minecraft/network/FriendlyByteBuf/writeBytes (Lio/netty/buffer/ByteBuf;II)Lio/netty/buffer/ByteBuf; net/minecraft/network/FriendlyByteBuf/writeBytes (Lio/netty/buffer/ByteBuf;II)Lio/netty/buffer/ByteBuf; +MD: net/minecraft/network/FriendlyByteBuf/writeBytes (Ljava/nio/channels/FileChannel;JI)I net/minecraft/network/FriendlyByteBuf/writeBytes (Ljava/nio/channels/FileChannel;JI)I +MD: net/minecraft/network/FriendlyByteBuf/writeBytes (Lio/netty/buffer/ByteBuf;I)Lio/netty/buffer/ByteBuf; net/minecraft/network/FriendlyByteBuf/writeBytes (Lio/netty/buffer/ByteBuf;I)Lio/netty/buffer/ByteBuf; +MD: net/minecraft/network/FriendlyByteBuf/writeBytes (Ljava/nio/ByteBuffer;)Lio/netty/buffer/ByteBuf; net/minecraft/network/FriendlyByteBuf/writeBytes (Ljava/nio/ByteBuffer;)Lio/netty/buffer/ByteBuf; +MD: net/minecraft/network/FriendlyByteBuf/writeBytes (Ljava/nio/channels/ScatteringByteChannel;I)I net/minecraft/network/FriendlyByteBuf/writeBytes (Ljava/nio/channels/ScatteringByteChannel;I)I +MD: net/minecraft/network/FriendlyByteBuf/writeBytes ([B)Lio/netty/buffer/ByteBuf; net/minecraft/network/FriendlyByteBuf/writeBytes ([B)Lio/netty/buffer/ByteBuf; +MD: net/minecraft/network/FriendlyByteBuf/writeChar (I)Lio/netty/buffer/ByteBuf; net/minecraft/network/FriendlyByteBuf/writeChar (I)Lio/netty/buffer/ByteBuf; +MD: net/minecraft/network/FriendlyByteBuf/writeCharSequence (Ljava/lang/CharSequence;Ljava/nio/charset/Charset;)I net/minecraft/network/FriendlyByteBuf/writeCharSequence (Ljava/lang/CharSequence;Ljava/nio/charset/Charset;)I +MD: net/minecraft/network/FriendlyByteBuf/writeDouble (D)Lio/netty/buffer/ByteBuf; net/minecraft/network/FriendlyByteBuf/writeDouble (D)Lio/netty/buffer/ByteBuf; +MD: net/minecraft/network/FriendlyByteBuf/writeFloat (F)Lio/netty/buffer/ByteBuf; net/minecraft/network/FriendlyByteBuf/writeFloat (F)Lio/netty/buffer/ByteBuf; +MD: net/minecraft/network/FriendlyByteBuf/writeInt (I)Lio/netty/buffer/ByteBuf; net/minecraft/network/FriendlyByteBuf/writeInt (I)Lio/netty/buffer/ByteBuf; +MD: net/minecraft/network/FriendlyByteBuf/writeIntLE (I)Lio/netty/buffer/ByteBuf; net/minecraft/network/FriendlyByteBuf/writeIntLE (I)Lio/netty/buffer/ByteBuf; +MD: net/minecraft/network/FriendlyByteBuf/writeLong (J)Lio/netty/buffer/ByteBuf; net/minecraft/network/FriendlyByteBuf/writeLong (J)Lio/netty/buffer/ByteBuf; +MD: net/minecraft/network/FriendlyByteBuf/writeLongLE (J)Lio/netty/buffer/ByteBuf; net/minecraft/network/FriendlyByteBuf/writeLongLE (J)Lio/netty/buffer/ByteBuf; +MD: net/minecraft/network/FriendlyByteBuf/writeMedium (I)Lio/netty/buffer/ByteBuf; net/minecraft/network/FriendlyByteBuf/writeMedium (I)Lio/netty/buffer/ByteBuf; +MD: net/minecraft/network/FriendlyByteBuf/writeMediumLE (I)Lio/netty/buffer/ByteBuf; net/minecraft/network/FriendlyByteBuf/writeMediumLE (I)Lio/netty/buffer/ByteBuf; +MD: net/minecraft/network/FriendlyByteBuf/writeShort (I)Lio/netty/buffer/ByteBuf; net/minecraft/network/FriendlyByteBuf/writeShort (I)Lio/netty/buffer/ByteBuf; +MD: net/minecraft/network/FriendlyByteBuf/writeShortLE (I)Lio/netty/buffer/ByteBuf; net/minecraft/network/FriendlyByteBuf/writeShortLE (I)Lio/netty/buffer/ByteBuf; +MD: net/minecraft/network/FriendlyByteBuf/writeZero (I)Lio/netty/buffer/ByteBuf; net/minecraft/network/FriendlyByteBuf/writeZero (I)Lio/netty/buffer/ByteBuf; +MD: net/minecraft/network/FriendlyByteBuf/writerIndex ()I net/minecraft/network/FriendlyByteBuf/writerIndex ()I +MD: net/minecraft/network/FriendlyByteBuf/writerIndex (I)Lio/netty/buffer/ByteBuf; net/minecraft/network/FriendlyByteBuf/writerIndex (I)Lio/netty/buffer/ByteBuf; +MD: net/minecraft/network/FriendlyByteBuf$1/ ()V net/minecraft/network/FriendlyByteBuf$1/ ()V +MD: net/minecraft/network/FriendlyByteBuf$Reader/m_236877_ (Lnet/minecraft/network/FriendlyByteBuf;)Ljava/util/Optional; net/minecraft/network/FriendlyByteBuf$Reader/lambda$asOptional$0 (Lnet/minecraft/network/FriendlyByteBuf;)Ljava/util/Optional; +MD: net/minecraft/network/FriendlyByteBuf$Reader/m_236879_ ()Lnet/minecraft/network/FriendlyByteBuf$Reader; net/minecraft/network/FriendlyByteBuf$Reader/asOptional ()Lnet/minecraft/network/FriendlyByteBuf$Reader; +MD: net/minecraft/network/FriendlyByteBuf$Writer/m_236880_ (Lnet/minecraft/network/FriendlyByteBuf;Ljava/util/Optional;)V net/minecraft/network/FriendlyByteBuf$Writer/lambda$asOptional$0 (Lnet/minecraft/network/FriendlyByteBuf;Ljava/util/Optional;)V +MD: net/minecraft/network/FriendlyByteBuf$Writer/m_236883_ ()Lnet/minecraft/network/FriendlyByteBuf$Writer; net/minecraft/network/FriendlyByteBuf$Writer/asOptional ()Lnet/minecraft/network/FriendlyByteBuf$Writer; +MD: net/minecraft/network/PacketBundlePacker/ (Lnet/minecraft/network/protocol/PacketFlow;)V net/minecraft/network/PacketBundlePacker/ (Lnet/minecraft/network/protocol/PacketFlow;)V +MD: net/minecraft/network/PacketBundlePacker/decode (Lio/netty/channel/ChannelHandlerContext;Lnet/minecraft/network/protocol/Packet;Ljava/util/List;)V net/minecraft/network/PacketBundlePacker/decode (Lio/netty/channel/ChannelHandlerContext;Lnet/minecraft/network/protocol/Packet;Ljava/util/List;)V +MD: net/minecraft/network/PacketBundlePacker/decode (Lio/netty/channel/ChannelHandlerContext;Ljava/lang/Object;Ljava/util/List;)V net/minecraft/network/PacketBundlePacker/decode (Lio/netty/channel/ChannelHandlerContext;Ljava/lang/Object;Ljava/util/List;)V +MD: net/minecraft/network/PacketBundleUnpacker/ (Lnet/minecraft/network/protocol/PacketFlow;)V net/minecraft/network/PacketBundleUnpacker/ (Lnet/minecraft/network/protocol/PacketFlow;)V +MD: net/minecraft/network/PacketBundleUnpacker/encode (Lio/netty/channel/ChannelHandlerContext;Lnet/minecraft/network/protocol/Packet;Ljava/util/List;)V net/minecraft/network/PacketBundleUnpacker/encode (Lio/netty/channel/ChannelHandlerContext;Lnet/minecraft/network/protocol/Packet;Ljava/util/List;)V +MD: net/minecraft/network/PacketBundleUnpacker/encode (Lio/netty/channel/ChannelHandlerContext;Ljava/lang/Object;Ljava/util/List;)V net/minecraft/network/PacketBundleUnpacker/encode (Lio/netty/channel/ChannelHandlerContext;Ljava/lang/Object;Ljava/util/List;)V +MD: net/minecraft/network/PacketDecoder/ ()V net/minecraft/network/PacketDecoder/ ()V +MD: net/minecraft/network/PacketDecoder/ (Lnet/minecraft/network/protocol/PacketFlow;)V net/minecraft/network/PacketDecoder/ (Lnet/minecraft/network/protocol/PacketFlow;)V +MD: net/minecraft/network/PacketDecoder/decode (Lio/netty/channel/ChannelHandlerContext;Lio/netty/buffer/ByteBuf;Ljava/util/List;)V net/minecraft/network/PacketDecoder/decode (Lio/netty/channel/ChannelHandlerContext;Lio/netty/buffer/ByteBuf;Ljava/util/List;)V +MD: net/minecraft/network/PacketEncoder/ ()V net/minecraft/network/PacketEncoder/ ()V +MD: net/minecraft/network/PacketEncoder/ (Lnet/minecraft/network/protocol/PacketFlow;)V net/minecraft/network/PacketEncoder/ (Lnet/minecraft/network/protocol/PacketFlow;)V +MD: net/minecraft/network/PacketEncoder/encode (Lio/netty/channel/ChannelHandlerContext;Lnet/minecraft/network/protocol/Packet;Lio/netty/buffer/ByteBuf;)V net/minecraft/network/PacketEncoder/encode (Lio/netty/channel/ChannelHandlerContext;Lnet/minecraft/network/protocol/Packet;Lio/netty/buffer/ByteBuf;)V +MD: net/minecraft/network/PacketEncoder/encode (Lio/netty/channel/ChannelHandlerContext;Ljava/lang/Object;Lio/netty/buffer/ByteBuf;)V net/minecraft/network/PacketEncoder/encode (Lio/netty/channel/ChannelHandlerContext;Ljava/lang/Object;Lio/netty/buffer/ByteBuf;)V +MD: net/minecraft/network/PacketListener/m_201767_ ()Z net/minecraft/network/PacketListener/shouldPropagateHandlingExceptions ()Z +MD: net/minecraft/network/PacketListener/m_6198_ ()Z net/minecraft/network/PacketListener/isAcceptingMessages ()Z +MD: net/minecraft/network/PacketListener/m_7026_ (Lnet/minecraft/network/chat/Component;)V net/minecraft/network/PacketListener/onDisconnect (Lnet/minecraft/network/chat/Component;)V +MD: net/minecraft/network/PacketSendListener/m_243073_ (Ljava/util/function/Supplier;)Lnet/minecraft/network/PacketSendListener; net/minecraft/network/PacketSendListener/exceptionallySend (Ljava/util/function/Supplier;)Lnet/minecraft/network/PacketSendListener; +MD: net/minecraft/network/PacketSendListener/m_243092_ (Ljava/lang/Runnable;)Lnet/minecraft/network/PacketSendListener; net/minecraft/network/PacketSendListener/thenRun (Ljava/lang/Runnable;)Lnet/minecraft/network/PacketSendListener; +MD: net/minecraft/network/PacketSendListener/m_243096_ ()V net/minecraft/network/PacketSendListener/onSuccess ()V +MD: net/minecraft/network/PacketSendListener/m_243103_ ()Lnet/minecraft/network/protocol/Packet; net/minecraft/network/PacketSendListener/onFailure ()Lnet/minecraft/network/protocol/Packet; +MD: net/minecraft/network/PacketSendListener$1/ (Ljava/lang/Runnable;)V net/minecraft/network/PacketSendListener$1/ (Ljava/lang/Runnable;)V +MD: net/minecraft/network/PacketSendListener$1/m_243096_ ()V net/minecraft/network/PacketSendListener$1/onSuccess ()V +MD: net/minecraft/network/PacketSendListener$1/m_243103_ ()Lnet/minecraft/network/protocol/Packet; net/minecraft/network/PacketSendListener$1/onFailure ()Lnet/minecraft/network/protocol/Packet; +MD: net/minecraft/network/PacketSendListener$2/ (Ljava/util/function/Supplier;)V net/minecraft/network/PacketSendListener$2/ (Ljava/util/function/Supplier;)V +MD: net/minecraft/network/PacketSendListener$2/m_243103_ ()Lnet/minecraft/network/protocol/Packet; net/minecraft/network/PacketSendListener$2/onFailure ()Lnet/minecraft/network/protocol/Packet; +MD: net/minecraft/network/RateKickingConnection/ ()V net/minecraft/network/RateKickingConnection/ ()V +MD: net/minecraft/network/RateKickingConnection/ (I)V net/minecraft/network/RateKickingConnection/ (I)V +MD: net/minecraft/network/RateKickingConnection/m_130559_ ()V net/minecraft/network/RateKickingConnection/lambda$tickSecond$0 ()V +MD: net/minecraft/network/RateKickingConnection/m_7073_ ()V net/minecraft/network/RateKickingConnection/tickSecond ()V +MD: net/minecraft/network/SkipPacketException/ (Ljava/lang/Throwable;)V net/minecraft/network/SkipPacketException/ (Ljava/lang/Throwable;)V +MD: net/minecraft/network/TickablePacketListener/m_9933_ ()V net/minecraft/network/TickablePacketListener/tick ()V +MD: net/minecraft/network/Varint21FrameDecoder/ ()V net/minecraft/network/Varint21FrameDecoder/ ()V +MD: net/minecraft/network/Varint21FrameDecoder/decode (Lio/netty/channel/ChannelHandlerContext;Lio/netty/buffer/ByteBuf;Ljava/util/List;)V net/minecraft/network/Varint21FrameDecoder/decode (Lio/netty/channel/ChannelHandlerContext;Lio/netty/buffer/ByteBuf;Ljava/util/List;)V +MD: net/minecraft/network/Varint21LengthFieldPrepender/ ()V net/minecraft/network/Varint21LengthFieldPrepender/ ()V +MD: net/minecraft/network/Varint21LengthFieldPrepender/encode (Lio/netty/channel/ChannelHandlerContext;Lio/netty/buffer/ByteBuf;Lio/netty/buffer/ByteBuf;)V net/minecraft/network/Varint21LengthFieldPrepender/encode (Lio/netty/channel/ChannelHandlerContext;Lio/netty/buffer/ByteBuf;Lio/netty/buffer/ByteBuf;)V +MD: net/minecraft/network/Varint21LengthFieldPrepender/encode (Lio/netty/channel/ChannelHandlerContext;Ljava/lang/Object;Lio/netty/buffer/ByteBuf;)V net/minecraft/network/Varint21LengthFieldPrepender/encode (Lio/netty/channel/ChannelHandlerContext;Ljava/lang/Object;Lio/netty/buffer/ByteBuf;)V +MD: net/minecraft/network/chat/ChatDecorator/ ()V net/minecraft/network/chat/ChatDecorator/ ()V +MD: net/minecraft/network/chat/ChatDecorator/m_236949_ (Lnet/minecraft/server/level/ServerPlayer;Lnet/minecraft/network/chat/Component;)Ljava/util/concurrent/CompletableFuture; net/minecraft/network/chat/ChatDecorator/lambda$static$0 (Lnet/minecraft/server/level/ServerPlayer;Lnet/minecraft/network/chat/Component;)Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/network/chat/ChatDecorator/m_236961_ (Lnet/minecraft/server/level/ServerPlayer;Lnet/minecraft/network/chat/Component;)Ljava/util/concurrent/CompletableFuture; net/minecraft/network/chat/ChatDecorator/decorate (Lnet/minecraft/server/level/ServerPlayer;Lnet/minecraft/network/chat/Component;)Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/network/chat/ChatType/ ()V net/minecraft/network/chat/ChatType/ ()V +MD: net/minecraft/network/chat/ChatType/ (Lnet/minecraft/network/chat/ChatTypeDecoration;Lnet/minecraft/network/chat/ChatTypeDecoration;)V net/minecraft/network/chat/ChatType/ (Lnet/minecraft/network/chat/ChatTypeDecoration;Lnet/minecraft/network/chat/ChatTypeDecoration;)V +MD: net/minecraft/network/chat/ChatType/equals (Ljava/lang/Object;)Z net/minecraft/network/chat/ChatType/equals (Ljava/lang/Object;)Z +MD: net/minecraft/network/chat/ChatType/f_237011_ ()Lnet/minecraft/network/chat/ChatTypeDecoration; net/minecraft/network/chat/ChatType/chat ()Lnet/minecraft/network/chat/ChatTypeDecoration; +MD: net/minecraft/network/chat/ChatType/f_237013_ ()Lnet/minecraft/network/chat/ChatTypeDecoration; net/minecraft/network/chat/ChatType/narration ()Lnet/minecraft/network/chat/ChatTypeDecoration; +MD: net/minecraft/network/chat/ChatType/hashCode ()I net/minecraft/network/chat/ChatType/hashCode ()I +MD: net/minecraft/network/chat/ChatType/m_237021_ (Lnet/minecraft/data/worldgen/BootstapContext;)V net/minecraft/network/chat/ChatType/bootstrap (Lnet/minecraft/data/worldgen/BootstapContext;)V +MD: net/minecraft/network/chat/ChatType/m_237023_ (Ljava/lang/String;)Lnet/minecraft/resources/ResourceKey; net/minecraft/network/chat/ChatType/create (Ljava/lang/String;)Lnet/minecraft/resources/ResourceKey; +MD: net/minecraft/network/chat/ChatType/m_240391_ (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/network/chat/ChatType/lambda$static$0 (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/network/chat/ChatType/m_240968_ (Lnet/minecraft/resources/ResourceKey;Lnet/minecraft/core/RegistryAccess;Lnet/minecraft/network/chat/Component;)Lnet/minecraft/network/chat/ChatType$Bound; net/minecraft/network/chat/ChatType/bind (Lnet/minecraft/resources/ResourceKey;Lnet/minecraft/core/RegistryAccess;Lnet/minecraft/network/chat/Component;)Lnet/minecraft/network/chat/ChatType$Bound; +MD: net/minecraft/network/chat/ChatType/m_240980_ (Lnet/minecraft/resources/ResourceKey;Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/network/chat/ChatType$Bound; net/minecraft/network/chat/ChatType/bind (Lnet/minecraft/resources/ResourceKey;Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/network/chat/ChatType$Bound; +MD: net/minecraft/network/chat/ChatType/m_240982_ (Lnet/minecraft/network/chat/Component;)Lnet/minecraft/network/chat/ChatType$Bound; net/minecraft/network/chat/ChatType/bind (Lnet/minecraft/network/chat/Component;)Lnet/minecraft/network/chat/ChatType$Bound; +MD: net/minecraft/network/chat/ChatType/m_241073_ (Lnet/minecraft/resources/ResourceKey;Lnet/minecraft/commands/CommandSourceStack;)Lnet/minecraft/network/chat/ChatType$Bound; net/minecraft/network/chat/ChatType/bind (Lnet/minecraft/resources/ResourceKey;Lnet/minecraft/commands/CommandSourceStack;)Lnet/minecraft/network/chat/ChatType$Bound; +MD: net/minecraft/network/chat/ChatType/toString ()Ljava/lang/String; net/minecraft/network/chat/ChatType/toString ()Ljava/lang/String; +MD: net/minecraft/network/chat/ChatType$Bound/ (Lnet/minecraft/network/chat/ChatType;Lnet/minecraft/network/chat/Component;Lnet/minecraft/network/chat/Component;)V net/minecraft/network/chat/ChatType$Bound/ (Lnet/minecraft/network/chat/ChatType;Lnet/minecraft/network/chat/Component;Lnet/minecraft/network/chat/Component;)V +MD: net/minecraft/network/chat/ChatType$Bound/ (Lnet/minecraft/network/chat/ChatType;Lnet/minecraft/network/chat/Component;)V net/minecraft/network/chat/ChatType$Bound/ (Lnet/minecraft/network/chat/ChatType;Lnet/minecraft/network/chat/Component;)V +MD: net/minecraft/network/chat/ChatType$Bound/equals (Ljava/lang/Object;)Z net/minecraft/network/chat/ChatType$Bound/equals (Ljava/lang/Object;)Z +MD: net/minecraft/network/chat/ChatType$Bound/f_240859_ ()Lnet/minecraft/network/chat/ChatType; net/minecraft/network/chat/ChatType$Bound/chatType ()Lnet/minecraft/network/chat/ChatType; +MD: net/minecraft/network/chat/ChatType$Bound/f_240886_ ()Lnet/minecraft/network/chat/Component; net/minecraft/network/chat/ChatType$Bound/name ()Lnet/minecraft/network/chat/Component; +MD: net/minecraft/network/chat/ChatType$Bound/f_240896_ ()Lnet/minecraft/network/chat/Component; net/minecraft/network/chat/ChatType$Bound/targetName ()Lnet/minecraft/network/chat/Component; +MD: net/minecraft/network/chat/ChatType$Bound/hashCode ()I net/minecraft/network/chat/ChatType$Bound/hashCode ()I +MD: net/minecraft/network/chat/ChatType$Bound/m_240941_ (Lnet/minecraft/network/chat/Component;)Lnet/minecraft/network/chat/Component; net/minecraft/network/chat/ChatType$Bound/decorateNarration (Lnet/minecraft/network/chat/Component;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/network/chat/ChatType$Bound/m_240977_ (Lnet/minecraft/network/chat/Component;)Lnet/minecraft/network/chat/Component; net/minecraft/network/chat/ChatType$Bound/decorate (Lnet/minecraft/network/chat/Component;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/network/chat/ChatType$Bound/m_240987_ (Lnet/minecraft/core/RegistryAccess;)Lnet/minecraft/network/chat/ChatType$BoundNetwork; net/minecraft/network/chat/ChatType$Bound/toNetwork (Lnet/minecraft/core/RegistryAccess;)Lnet/minecraft/network/chat/ChatType$BoundNetwork; +MD: net/minecraft/network/chat/ChatType$Bound/m_241018_ (Lnet/minecraft/network/chat/Component;)Lnet/minecraft/network/chat/ChatType$Bound; net/minecraft/network/chat/ChatType$Bound/withTargetName (Lnet/minecraft/network/chat/Component;)Lnet/minecraft/network/chat/ChatType$Bound; +MD: net/minecraft/network/chat/ChatType$Bound/toString ()Ljava/lang/String; net/minecraft/network/chat/ChatType$Bound/toString ()Ljava/lang/String; +MD: net/minecraft/network/chat/ChatType$BoundNetwork/ (ILnet/minecraft/network/chat/Component;Lnet/minecraft/network/chat/Component;)V net/minecraft/network/chat/ChatType$BoundNetwork/ (ILnet/minecraft/network/chat/Component;Lnet/minecraft/network/chat/Component;)V +MD: net/minecraft/network/chat/ChatType$BoundNetwork/ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/chat/ChatType$BoundNetwork/ (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/chat/ChatType$BoundNetwork/equals (Ljava/lang/Object;)Z net/minecraft/network/chat/ChatType$BoundNetwork/equals (Ljava/lang/Object;)Z +MD: net/minecraft/network/chat/ChatType$BoundNetwork/f_240862_ ()Lnet/minecraft/network/chat/Component; net/minecraft/network/chat/ChatType$BoundNetwork/name ()Lnet/minecraft/network/chat/Component; +MD: net/minecraft/network/chat/ChatType$BoundNetwork/f_240865_ ()Lnet/minecraft/network/chat/Component; net/minecraft/network/chat/ChatType$BoundNetwork/targetName ()Lnet/minecraft/network/chat/Component; +MD: net/minecraft/network/chat/ChatType$BoundNetwork/f_240870_ ()I net/minecraft/network/chat/ChatType$BoundNetwork/chatType ()I +MD: net/minecraft/network/chat/ChatType$BoundNetwork/hashCode ()I net/minecraft/network/chat/ChatType$BoundNetwork/hashCode ()I +MD: net/minecraft/network/chat/ChatType$BoundNetwork/m_240969_ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/chat/ChatType$BoundNetwork/write (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/chat/ChatType$BoundNetwork/m_242617_ (Lnet/minecraft/network/chat/ChatType;)Lnet/minecraft/network/chat/ChatType$Bound; net/minecraft/network/chat/ChatType$BoundNetwork/lambda$resolve$0 (Lnet/minecraft/network/chat/ChatType;)Lnet/minecraft/network/chat/ChatType$Bound; +MD: net/minecraft/network/chat/ChatType$BoundNetwork/m_242652_ (Lnet/minecraft/core/RegistryAccess;)Ljava/util/Optional; net/minecraft/network/chat/ChatType$BoundNetwork/resolve (Lnet/minecraft/core/RegistryAccess;)Ljava/util/Optional; +MD: net/minecraft/network/chat/ChatType$BoundNetwork/toString ()Ljava/lang/String; net/minecraft/network/chat/ChatType$BoundNetwork/toString ()Ljava/lang/String; +MD: net/minecraft/network/chat/ChatTypeDecoration/ ()V net/minecraft/network/chat/ChatTypeDecoration/ ()V +MD: net/minecraft/network/chat/ChatTypeDecoration/ (Ljava/lang/String;Ljava/util/List;Lnet/minecraft/network/chat/Style;)V net/minecraft/network/chat/ChatTypeDecoration/ (Ljava/lang/String;Ljava/util/List;Lnet/minecraft/network/chat/Style;)V +MD: net/minecraft/network/chat/ChatTypeDecoration/equals (Ljava/lang/Object;)Z net/minecraft/network/chat/ChatTypeDecoration/equals (Ljava/lang/Object;)Z +MD: net/minecraft/network/chat/ChatTypeDecoration/f_238656_ ()Ljava/util/List; net/minecraft/network/chat/ChatTypeDecoration/parameters ()Ljava/util/List; +MD: net/minecraft/network/chat/ChatTypeDecoration/f_238694_ ()Lnet/minecraft/network/chat/Style; net/minecraft/network/chat/ChatTypeDecoration/style ()Lnet/minecraft/network/chat/Style; +MD: net/minecraft/network/chat/ChatTypeDecoration/f_238741_ ()Ljava/lang/String; net/minecraft/network/chat/ChatTypeDecoration/translationKey ()Ljava/lang/String; +MD: net/minecraft/network/chat/ChatTypeDecoration/hashCode ()I net/minecraft/network/chat/ChatTypeDecoration/hashCode ()I +MD: net/minecraft/network/chat/ChatTypeDecoration/m_239094_ (Ljava/lang/String;)Lnet/minecraft/network/chat/ChatTypeDecoration; net/minecraft/network/chat/ChatTypeDecoration/teamMessage (Ljava/lang/String;)Lnet/minecraft/network/chat/ChatTypeDecoration; +MD: net/minecraft/network/chat/ChatTypeDecoration/m_239222_ (Ljava/lang/String;)Lnet/minecraft/network/chat/ChatTypeDecoration; net/minecraft/network/chat/ChatTypeDecoration/withSender (Ljava/lang/String;)Lnet/minecraft/network/chat/ChatTypeDecoration; +MD: net/minecraft/network/chat/ChatTypeDecoration/m_239424_ (Ljava/lang/String;)Lnet/minecraft/network/chat/ChatTypeDecoration; net/minecraft/network/chat/ChatTypeDecoration/incomingDirectMessage (Ljava/lang/String;)Lnet/minecraft/network/chat/ChatTypeDecoration; +MD: net/minecraft/network/chat/ChatTypeDecoration/m_239988_ (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/network/chat/ChatTypeDecoration/lambda$static$0 (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/network/chat/ChatTypeDecoration/m_240709_ (Ljava/lang/String;)Lnet/minecraft/network/chat/ChatTypeDecoration; net/minecraft/network/chat/ChatTypeDecoration/outgoingDirectMessage (Ljava/lang/String;)Lnet/minecraft/network/chat/ChatTypeDecoration; +MD: net/minecraft/network/chat/ChatTypeDecoration/m_240955_ (Lnet/minecraft/network/chat/Component;Lnet/minecraft/network/chat/ChatType$Bound;)Lnet/minecraft/network/chat/Component; net/minecraft/network/chat/ChatTypeDecoration/decorate (Lnet/minecraft/network/chat/Component;Lnet/minecraft/network/chat/ChatType$Bound;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/network/chat/ChatTypeDecoration/m_241038_ (Lnet/minecraft/network/chat/Component;Lnet/minecraft/network/chat/ChatType$Bound;)[Lnet/minecraft/network/chat/Component; net/minecraft/network/chat/ChatTypeDecoration/resolveParameters (Lnet/minecraft/network/chat/Component;Lnet/minecraft/network/chat/ChatType$Bound;)[Lnet/minecraft/network/chat/Component; +MD: net/minecraft/network/chat/ChatTypeDecoration/toString ()Ljava/lang/String; net/minecraft/network/chat/ChatTypeDecoration/toString ()Ljava/lang/String; +MD: net/minecraft/network/chat/ChatTypeDecoration$Parameter/ ()V net/minecraft/network/chat/ChatTypeDecoration$Parameter/ ()V +MD: net/minecraft/network/chat/ChatTypeDecoration$Parameter/ (Ljava/lang/String;ILjava/lang/String;Lnet/minecraft/network/chat/ChatTypeDecoration$Parameter$Selector;)V net/minecraft/network/chat/ChatTypeDecoration$Parameter/ (Ljava/lang/String;ILjava/lang/String;Lnet/minecraft/network/chat/ChatTypeDecoration$Parameter$Selector;)V +MD: net/minecraft/network/chat/ChatTypeDecoration$Parameter/m_238947_ ()[Lnet/minecraft/network/chat/ChatTypeDecoration$Parameter; net/minecraft/network/chat/ChatTypeDecoration$Parameter/$values ()[Lnet/minecraft/network/chat/ChatTypeDecoration$Parameter; +MD: net/minecraft/network/chat/ChatTypeDecoration$Parameter/m_239973_ (Lnet/minecraft/network/chat/Component;Lnet/minecraft/network/chat/ChatType$Bound;)Lnet/minecraft/network/chat/Component; net/minecraft/network/chat/ChatTypeDecoration$Parameter/lambda$static$2 (Lnet/minecraft/network/chat/Component;Lnet/minecraft/network/chat/ChatType$Bound;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/network/chat/ChatTypeDecoration$Parameter/m_240927_ (Lnet/minecraft/network/chat/Component;Lnet/minecraft/network/chat/ChatType$Bound;)Lnet/minecraft/network/chat/Component; net/minecraft/network/chat/ChatTypeDecoration$Parameter/lambda$static$1 (Lnet/minecraft/network/chat/Component;Lnet/minecraft/network/chat/ChatType$Bound;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/network/chat/ChatTypeDecoration$Parameter/m_240928_ (Lnet/minecraft/network/chat/Component;Lnet/minecraft/network/chat/ChatType$Bound;)Lnet/minecraft/network/chat/Component; net/minecraft/network/chat/ChatTypeDecoration$Parameter/lambda$static$0 (Lnet/minecraft/network/chat/Component;Lnet/minecraft/network/chat/ChatType$Bound;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/network/chat/ChatTypeDecoration$Parameter/m_240974_ (Lnet/minecraft/network/chat/Component;Lnet/minecraft/network/chat/ChatType$Bound;)Lnet/minecraft/network/chat/Component; net/minecraft/network/chat/ChatTypeDecoration$Parameter/select (Lnet/minecraft/network/chat/Component;Lnet/minecraft/network/chat/ChatType$Bound;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/network/chat/ChatTypeDecoration$Parameter/m_7912_ ()Ljava/lang/String; net/minecraft/network/chat/ChatTypeDecoration$Parameter/getSerializedName ()Ljava/lang/String; +MD: net/minecraft/network/chat/ChatTypeDecoration$Parameter/valueOf (Ljava/lang/String;)Lnet/minecraft/network/chat/ChatTypeDecoration$Parameter; net/minecraft/network/chat/ChatTypeDecoration$Parameter/valueOf (Ljava/lang/String;)Lnet/minecraft/network/chat/ChatTypeDecoration$Parameter; +MD: net/minecraft/network/chat/ChatTypeDecoration$Parameter/values ()[Lnet/minecraft/network/chat/ChatTypeDecoration$Parameter; net/minecraft/network/chat/ChatTypeDecoration$Parameter/values ()[Lnet/minecraft/network/chat/ChatTypeDecoration$Parameter; +MD: net/minecraft/network/chat/ChatTypeDecoration$Parameter$Selector/m_239619_ (Lnet/minecraft/network/chat/Component;Lnet/minecraft/network/chat/ChatType$Bound;)Lnet/minecraft/network/chat/Component; net/minecraft/network/chat/ChatTypeDecoration$Parameter$Selector/select (Lnet/minecraft/network/chat/Component;Lnet/minecraft/network/chat/ChatType$Bound;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/network/chat/ClickEvent/ (Lnet/minecraft/network/chat/ClickEvent$Action;Ljava/lang/String;)V net/minecraft/network/chat/ClickEvent/ (Lnet/minecraft/network/chat/ClickEvent$Action;Ljava/lang/String;)V +MD: net/minecraft/network/chat/ClickEvent/equals (Ljava/lang/Object;)Z net/minecraft/network/chat/ClickEvent/equals (Ljava/lang/Object;)Z +MD: net/minecraft/network/chat/ClickEvent/hashCode ()I net/minecraft/network/chat/ClickEvent/hashCode ()I +MD: net/minecraft/network/chat/ClickEvent/m_130622_ ()Lnet/minecraft/network/chat/ClickEvent$Action; net/minecraft/network/chat/ClickEvent/getAction ()Lnet/minecraft/network/chat/ClickEvent$Action; +MD: net/minecraft/network/chat/ClickEvent/m_130623_ ()Ljava/lang/String; net/minecraft/network/chat/ClickEvent/getValue ()Ljava/lang/String; +MD: net/minecraft/network/chat/ClickEvent/toString ()Ljava/lang/String; net/minecraft/network/chat/ClickEvent/toString ()Ljava/lang/String; +MD: net/minecraft/network/chat/ClickEvent$Action/ ()V net/minecraft/network/chat/ClickEvent$Action/ ()V +MD: net/minecraft/network/chat/ClickEvent$Action/ (Ljava/lang/String;ILjava/lang/String;Z)V net/minecraft/network/chat/ClickEvent$Action/ (Ljava/lang/String;ILjava/lang/String;Z)V +MD: net/minecraft/network/chat/ClickEvent$Action/m_130644_ ()Z net/minecraft/network/chat/ClickEvent$Action/isAllowedFromServer ()Z +MD: net/minecraft/network/chat/ClickEvent$Action/m_130645_ (Ljava/lang/String;)Lnet/minecraft/network/chat/ClickEvent$Action; net/minecraft/network/chat/ClickEvent$Action/getByName (Ljava/lang/String;)Lnet/minecraft/network/chat/ClickEvent$Action; +MD: net/minecraft/network/chat/ClickEvent$Action/m_130647_ (Lnet/minecraft/network/chat/ClickEvent$Action;)Lnet/minecraft/network/chat/ClickEvent$Action; net/minecraft/network/chat/ClickEvent$Action/lambda$static$0 (Lnet/minecraft/network/chat/ClickEvent$Action;)Lnet/minecraft/network/chat/ClickEvent$Action; +MD: net/minecraft/network/chat/ClickEvent$Action/m_130649_ ()Ljava/lang/String; net/minecraft/network/chat/ClickEvent$Action/getName ()Ljava/lang/String; +MD: net/minecraft/network/chat/ClickEvent$Action/m_178387_ ()[Lnet/minecraft/network/chat/ClickEvent$Action; net/minecraft/network/chat/ClickEvent$Action/$values ()[Lnet/minecraft/network/chat/ClickEvent$Action; +MD: net/minecraft/network/chat/ClickEvent$Action/valueOf (Ljava/lang/String;)Lnet/minecraft/network/chat/ClickEvent$Action; net/minecraft/network/chat/ClickEvent$Action/valueOf (Ljava/lang/String;)Lnet/minecraft/network/chat/ClickEvent$Action; +MD: net/minecraft/network/chat/ClickEvent$Action/values ()[Lnet/minecraft/network/chat/ClickEvent$Action; net/minecraft/network/chat/ClickEvent$Action/values ()[Lnet/minecraft/network/chat/ClickEvent$Action; +MD: net/minecraft/network/chat/CommonComponents/ ()V net/minecraft/network/chat/CommonComponents/ ()V +MD: net/minecraft/network/chat/CommonComponents/ ()V net/minecraft/network/chat/CommonComponents/ ()V +MD: net/minecraft/network/chat/CommonComponents/m_130663_ (Lnet/minecraft/network/chat/Component;Z)Lnet/minecraft/network/chat/MutableComponent; net/minecraft/network/chat/CommonComponents/optionStatus (Lnet/minecraft/network/chat/Component;Z)Lnet/minecraft/network/chat/MutableComponent; +MD: net/minecraft/network/chat/CommonComponents/m_130666_ (Z)Lnet/minecraft/network/chat/Component; net/minecraft/network/chat/CommonComponents/optionStatus (Z)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/network/chat/CommonComponents/m_178391_ (Ljava/util/Collection;)Lnet/minecraft/network/chat/Component; net/minecraft/network/chat/CommonComponents/joinLines (Ljava/util/Collection;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/network/chat/CommonComponents/m_178393_ (Lnet/minecraft/network/chat/Component;Lnet/minecraft/network/chat/Component;)Lnet/minecraft/network/chat/MutableComponent; net/minecraft/network/chat/CommonComponents/optionNameValue (Lnet/minecraft/network/chat/Component;Lnet/minecraft/network/chat/Component;)Lnet/minecraft/network/chat/MutableComponent; +MD: net/minecraft/network/chat/CommonComponents/m_178396_ ([Lnet/minecraft/network/chat/Component;)Lnet/minecraft/network/chat/Component; net/minecraft/network/chat/CommonComponents/joinLines ([Lnet/minecraft/network/chat/Component;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/network/chat/CommonComponents/m_239422_ (J)Lnet/minecraft/network/chat/MutableComponent; net/minecraft/network/chat/CommonComponents/days (J)Lnet/minecraft/network/chat/MutableComponent; +MD: net/minecraft/network/chat/CommonComponents/m_239877_ (J)Lnet/minecraft/network/chat/MutableComponent; net/minecraft/network/chat/CommonComponents/minutes (J)Lnet/minecraft/network/chat/MutableComponent; +MD: net/minecraft/network/chat/CommonComponents/m_240041_ (J)Lnet/minecraft/network/chat/MutableComponent; net/minecraft/network/chat/CommonComponents/hours (J)Lnet/minecraft/network/chat/MutableComponent; +MD: net/minecraft/network/chat/CommonComponents/m_264333_ ()Lnet/minecraft/network/chat/MutableComponent; net/minecraft/network/chat/CommonComponents/space ()Lnet/minecraft/network/chat/MutableComponent; +MD: net/minecraft/network/chat/CommonComponents/m_267603_ ([Lnet/minecraft/network/chat/Component;)Lnet/minecraft/network/chat/MutableComponent; net/minecraft/network/chat/CommonComponents/joinForNarration ([Lnet/minecraft/network/chat/Component;)Lnet/minecraft/network/chat/MutableComponent; +MD: net/minecraft/network/chat/Component/getString ()Ljava/lang/String; net/minecraft/network/chat/Component/getString ()Ljava/lang/String; +MD: net/minecraft/network/chat/Component/m_130668_ (I)Ljava/lang/String; net/minecraft/network/chat/Component/getString (I)Ljava/lang/String; +MD: net/minecraft/network/chat/Component/m_130670_ (ILjava/lang/StringBuilder;Ljava/lang/String;)Ljava/util/Optional; net/minecraft/network/chat/Component/lambda$getString$0 (ILjava/lang/StringBuilder;Ljava/lang/String;)Ljava/util/Optional; +MD: net/minecraft/network/chat/Component/m_130674_ (Ljava/lang/String;)Lnet/minecraft/network/chat/Component; net/minecraft/network/chat/Component/nullToEmpty (Ljava/lang/String;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/network/chat/Component/m_178401_ (Ljava/util/List;Lnet/minecraft/network/chat/Style;Ljava/lang/String;)Ljava/util/Optional; net/minecraft/network/chat/Component/lambda$toFlatList$1 (Ljava/util/List;Lnet/minecraft/network/chat/Style;Ljava/lang/String;)Ljava/util/Optional; +MD: net/minecraft/network/chat/Component/m_178405_ (Lnet/minecraft/network/chat/Style;)Ljava/util/List; net/minecraft/network/chat/Component/toFlatList (Lnet/minecraft/network/chat/Style;)Ljava/util/List; +MD: net/minecraft/network/chat/Component/m_214077_ ()Lnet/minecraft/network/chat/ComponentContents; net/minecraft/network/chat/Component/getContents ()Lnet/minecraft/network/chat/ComponentContents; +MD: net/minecraft/network/chat/Component/m_237099_ (Ljava/lang/String;Ljava/lang/String;)Lnet/minecraft/network/chat/MutableComponent; net/minecraft/network/chat/Component/score (Ljava/lang/String;Ljava/lang/String;)Lnet/minecraft/network/chat/MutableComponent; +MD: net/minecraft/network/chat/Component/m_237102_ (Ljava/lang/String;Ljava/util/Optional;)Lnet/minecraft/network/chat/MutableComponent; net/minecraft/network/chat/Component/selector (Ljava/lang/String;Ljava/util/Optional;)Lnet/minecraft/network/chat/MutableComponent; +MD: net/minecraft/network/chat/Component/m_237105_ (Ljava/lang/String;ZLjava/util/Optional;Lnet/minecraft/network/chat/contents/DataSource;)Lnet/minecraft/network/chat/MutableComponent; net/minecraft/network/chat/Component/nbt (Ljava/lang/String;ZLjava/util/Optional;Lnet/minecraft/network/chat/contents/DataSource;)Lnet/minecraft/network/chat/MutableComponent; +MD: net/minecraft/network/chat/Component/m_237110_ (Ljava/lang/String;[Ljava/lang/Object;)Lnet/minecraft/network/chat/MutableComponent; net/minecraft/network/chat/Component/translatable (Ljava/lang/String;[Ljava/lang/Object;)Lnet/minecraft/network/chat/MutableComponent; +MD: net/minecraft/network/chat/Component/m_237113_ (Ljava/lang/String;)Lnet/minecraft/network/chat/MutableComponent; net/minecraft/network/chat/Component/literal (Ljava/lang/String;)Lnet/minecraft/network/chat/MutableComponent; +MD: net/minecraft/network/chat/Component/m_237115_ (Ljava/lang/String;)Lnet/minecraft/network/chat/MutableComponent; net/minecraft/network/chat/Component/translatable (Ljava/lang/String;)Lnet/minecraft/network/chat/MutableComponent; +MD: net/minecraft/network/chat/Component/m_237117_ (Ljava/lang/String;)Lnet/minecraft/network/chat/MutableComponent; net/minecraft/network/chat/Component/keybind (Ljava/lang/String;)Lnet/minecraft/network/chat/MutableComponent; +MD: net/minecraft/network/chat/Component/m_237119_ ()Lnet/minecraft/network/chat/MutableComponent; net/minecraft/network/chat/Component/empty ()Lnet/minecraft/network/chat/MutableComponent; +MD: net/minecraft/network/chat/Component/m_240407_ ()Ljava/util/List; net/minecraft/network/chat/Component/toFlatList ()Ljava/util/List; +MD: net/minecraft/network/chat/Component/m_240452_ (Lnet/minecraft/network/chat/Component;)Z net/minecraft/network/chat/Component/contains (Lnet/minecraft/network/chat/Component;)Z +MD: net/minecraft/network/chat/Component/m_264568_ (Ljava/lang/String;Ljava/lang/String;)Lnet/minecraft/network/chat/MutableComponent; net/minecraft/network/chat/Component/translatableWithFallback (Ljava/lang/String;Ljava/lang/String;)Lnet/minecraft/network/chat/MutableComponent; +MD: net/minecraft/network/chat/Component/m_264642_ (Ljava/lang/String;Ljava/lang/String;[Ljava/lang/Object;)Lnet/minecraft/network/chat/MutableComponent; net/minecraft/network/chat/Component/translatableWithFallback (Ljava/lang/String;Ljava/lang/String;[Ljava/lang/Object;)Lnet/minecraft/network/chat/MutableComponent; +MD: net/minecraft/network/chat/Component/m_5651_ (Lnet/minecraft/network/chat/FormattedText$ContentConsumer;)Ljava/util/Optional; net/minecraft/network/chat/Component/visit (Lnet/minecraft/network/chat/FormattedText$ContentConsumer;)Ljava/util/Optional; +MD: net/minecraft/network/chat/Component/m_6879_ ()Lnet/minecraft/network/chat/MutableComponent; net/minecraft/network/chat/Component/plainCopy ()Lnet/minecraft/network/chat/MutableComponent; +MD: net/minecraft/network/chat/Component/m_6881_ ()Lnet/minecraft/network/chat/MutableComponent; net/minecraft/network/chat/Component/copy ()Lnet/minecraft/network/chat/MutableComponent; +MD: net/minecraft/network/chat/Component/m_7360_ ()Ljava/util/List; net/minecraft/network/chat/Component/getSiblings ()Ljava/util/List; +MD: net/minecraft/network/chat/Component/m_7383_ ()Lnet/minecraft/network/chat/Style; net/minecraft/network/chat/Component/getStyle ()Lnet/minecraft/network/chat/Style; +MD: net/minecraft/network/chat/Component/m_7451_ (Lnet/minecraft/network/chat/FormattedText$StyledContentConsumer;Lnet/minecraft/network/chat/Style;)Ljava/util/Optional; net/minecraft/network/chat/Component/visit (Lnet/minecraft/network/chat/FormattedText$StyledContentConsumer;Lnet/minecraft/network/chat/Style;)Ljava/util/Optional; +MD: net/minecraft/network/chat/Component/m_7532_ ()Lnet/minecraft/util/FormattedCharSequence; net/minecraft/network/chat/Component/getVisualOrderText ()Lnet/minecraft/util/FormattedCharSequence; +MD: net/minecraft/network/chat/Component$Serializer/ ()V net/minecraft/network/chat/Component$Serializer/ ()V +MD: net/minecraft/network/chat/Component$Serializer/ ()V net/minecraft/network/chat/Component$Serializer/ ()V +MD: net/minecraft/network/chat/Component$Serializer/deserialize (Lcom/google/gson/JsonElement;Ljava/lang/reflect/Type;Lcom/google/gson/JsonDeserializationContext;)Lnet/minecraft/network/chat/MutableComponent; net/minecraft/network/chat/Component$Serializer/deserialize (Lcom/google/gson/JsonElement;Ljava/lang/reflect/Type;Lcom/google/gson/JsonDeserializationContext;)Lnet/minecraft/network/chat/MutableComponent; +MD: net/minecraft/network/chat/Component$Serializer/deserialize (Lcom/google/gson/JsonElement;Ljava/lang/reflect/Type;Lcom/google/gson/JsonDeserializationContext;)Ljava/lang/Object; net/minecraft/network/chat/Component$Serializer/deserialize (Lcom/google/gson/JsonElement;Ljava/lang/reflect/Type;Lcom/google/gson/JsonDeserializationContext;)Ljava/lang/Object; +MD: net/minecraft/network/chat/Component$Serializer/m_130690_ ()Ljava/lang/reflect/Field; net/minecraft/network/chat/Component$Serializer/lambda$static$2 ()Ljava/lang/reflect/Field; +MD: net/minecraft/network/chat/Component$Serializer/m_130691_ (Lcom/google/gson/JsonElement;)Lnet/minecraft/network/chat/MutableComponent; net/minecraft/network/chat/Component$Serializer/fromJson (Lcom/google/gson/JsonElement;)Lnet/minecraft/network/chat/MutableComponent; +MD: net/minecraft/network/chat/Component$Serializer/m_130697_ (Lcom/google/gson/stream/JsonReader;)I net/minecraft/network/chat/Component$Serializer/getPos (Lcom/google/gson/stream/JsonReader;)I +MD: net/minecraft/network/chat/Component$Serializer/m_130699_ (Lcom/mojang/brigadier/StringReader;)Lnet/minecraft/network/chat/MutableComponent; net/minecraft/network/chat/Component$Serializer/fromJson (Lcom/mojang/brigadier/StringReader;)Lnet/minecraft/network/chat/MutableComponent; +MD: net/minecraft/network/chat/Component$Serializer/m_130701_ (Ljava/lang/String;)Lnet/minecraft/network/chat/MutableComponent; net/minecraft/network/chat/Component$Serializer/fromJson (Ljava/lang/String;)Lnet/minecraft/network/chat/MutableComponent; +MD: net/minecraft/network/chat/Component$Serializer/m_130703_ (Lnet/minecraft/network/chat/Component;)Ljava/lang/String; net/minecraft/network/chat/Component$Serializer/toJson (Lnet/minecraft/network/chat/Component;)Ljava/lang/String; +MD: net/minecraft/network/chat/Component$Serializer/m_130709_ (Lnet/minecraft/network/chat/Style;Lcom/google/gson/JsonObject;Lcom/google/gson/JsonSerializationContext;)V net/minecraft/network/chat/Component$Serializer/serializeStyle (Lnet/minecraft/network/chat/Style;Lcom/google/gson/JsonObject;Lcom/google/gson/JsonSerializationContext;)V +MD: net/minecraft/network/chat/Component$Serializer/m_130713_ ()Ljava/lang/reflect/Field; net/minecraft/network/chat/Component$Serializer/lambda$static$1 ()Ljava/lang/reflect/Field; +MD: net/minecraft/network/chat/Component$Serializer/m_130714_ (Ljava/lang/String;)Lnet/minecraft/network/chat/MutableComponent; net/minecraft/network/chat/Component$Serializer/fromJsonLenient (Ljava/lang/String;)Lnet/minecraft/network/chat/MutableComponent; +MD: net/minecraft/network/chat/Component$Serializer/m_130716_ (Lnet/minecraft/network/chat/Component;)Lcom/google/gson/JsonElement; net/minecraft/network/chat/Component$Serializer/toJsonTree (Lnet/minecraft/network/chat/Component;)Lcom/google/gson/JsonElement; +MD: net/minecraft/network/chat/Component$Serializer/m_130718_ ()Lcom/google/gson/Gson; net/minecraft/network/chat/Component$Serializer/lambda$static$0 ()Lcom/google/gson/Gson; +MD: net/minecraft/network/chat/Component$Serializer/m_178407_ (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonSerializationContext;Lnet/minecraft/network/chat/Component;)V net/minecraft/network/chat/Component$Serializer/lambda$serializeSeparator$3 (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonSerializationContext;Lnet/minecraft/network/chat/Component;)V +MD: net/minecraft/network/chat/Component$Serializer/m_178411_ (Lcom/google/gson/JsonSerializationContext;Lcom/google/gson/JsonObject;Ljava/util/Optional;)V net/minecraft/network/chat/Component$Serializer/serializeSeparator (Lcom/google/gson/JsonSerializationContext;Lcom/google/gson/JsonObject;Ljava/util/Optional;)V +MD: net/minecraft/network/chat/Component$Serializer/m_178415_ (Ljava/lang/reflect/Type;Lcom/google/gson/JsonDeserializationContext;Lcom/google/gson/JsonObject;)Ljava/util/Optional; net/minecraft/network/chat/Component$Serializer/parseSeparator (Ljava/lang/reflect/Type;Lcom/google/gson/JsonDeserializationContext;Lcom/google/gson/JsonObject;)Ljava/util/Optional; +MD: net/minecraft/network/chat/Component$Serializer/m_237120_ (Ljava/lang/Object;)Ljava/lang/Object; net/minecraft/network/chat/Component$Serializer/unwrapTextArgument (Ljava/lang/Object;)Ljava/lang/Object; +MD: net/minecraft/network/chat/Component$Serializer/m_237122_ (Lnet/minecraft/network/chat/Component;)Ljava/lang/String; net/minecraft/network/chat/Component$Serializer/toStableJson (Lnet/minecraft/network/chat/Component;)Ljava/lang/String; +MD: net/minecraft/network/chat/Component$Serializer/serialize (Ljava/lang/Object;Ljava/lang/reflect/Type;Lcom/google/gson/JsonSerializationContext;)Lcom/google/gson/JsonElement; net/minecraft/network/chat/Component$Serializer/serialize (Ljava/lang/Object;Ljava/lang/reflect/Type;Lcom/google/gson/JsonSerializationContext;)Lcom/google/gson/JsonElement; +MD: net/minecraft/network/chat/Component$Serializer/serialize (Lnet/minecraft/network/chat/Component;Ljava/lang/reflect/Type;Lcom/google/gson/JsonSerializationContext;)Lcom/google/gson/JsonElement; net/minecraft/network/chat/Component$Serializer/serialize (Lnet/minecraft/network/chat/Component;Ljava/lang/reflect/Type;Lcom/google/gson/JsonSerializationContext;)Lcom/google/gson/JsonElement; +MD: net/minecraft/network/chat/ComponentContents/ ()V net/minecraft/network/chat/ComponentContents/ ()V +MD: net/minecraft/network/chat/ComponentContents/m_213698_ (Lnet/minecraft/commands/CommandSourceStack;Lnet/minecraft/world/entity/Entity;I)Lnet/minecraft/network/chat/MutableComponent; net/minecraft/network/chat/ComponentContents/resolve (Lnet/minecraft/commands/CommandSourceStack;Lnet/minecraft/world/entity/Entity;I)Lnet/minecraft/network/chat/MutableComponent; +MD: net/minecraft/network/chat/ComponentContents/m_213724_ (Lnet/minecraft/network/chat/FormattedText$StyledContentConsumer;Lnet/minecraft/network/chat/Style;)Ljava/util/Optional; net/minecraft/network/chat/ComponentContents/visit (Lnet/minecraft/network/chat/FormattedText$StyledContentConsumer;Lnet/minecraft/network/chat/Style;)Ljava/util/Optional; +MD: net/minecraft/network/chat/ComponentContents/m_213874_ (Lnet/minecraft/network/chat/FormattedText$ContentConsumer;)Ljava/util/Optional; net/minecraft/network/chat/ComponentContents/visit (Lnet/minecraft/network/chat/FormattedText$ContentConsumer;)Ljava/util/Optional; +MD: net/minecraft/network/chat/ComponentContents$1/ ()V net/minecraft/network/chat/ComponentContents$1/ ()V +MD: net/minecraft/network/chat/ComponentContents$1/toString ()Ljava/lang/String; net/minecraft/network/chat/ComponentContents$1/toString ()Ljava/lang/String; +MD: net/minecraft/network/chat/ComponentUtils/ ()V net/minecraft/network/chat/ComponentUtils/ ()V +MD: net/minecraft/network/chat/ComponentUtils/ ()V net/minecraft/network/chat/ComponentUtils/ ()V +MD: net/minecraft/network/chat/ComponentUtils/m_130727_ (Lcom/mojang/authlib/GameProfile;)Lnet/minecraft/network/chat/Component; net/minecraft/network/chat/ComponentUtils/getDisplayName (Lcom/mojang/authlib/GameProfile;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/network/chat/ComponentUtils/m_130729_ (Lcom/mojang/brigadier/Message;)Lnet/minecraft/network/chat/Component; net/minecraft/network/chat/ComponentUtils/fromMessage (Lcom/mojang/brigadier/Message;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/network/chat/ComponentUtils/m_130731_ (Lnet/minecraft/commands/CommandSourceStack;Lnet/minecraft/network/chat/Component;Lnet/minecraft/world/entity/Entity;I)Lnet/minecraft/network/chat/MutableComponent; net/minecraft/network/chat/ComponentUtils/updateForEntity (Lnet/minecraft/commands/CommandSourceStack;Lnet/minecraft/network/chat/Component;Lnet/minecraft/world/entity/Entity;I)Lnet/minecraft/network/chat/MutableComponent; +MD: net/minecraft/network/chat/ComponentUtils/m_130736_ (Lnet/minecraft/commands/CommandSourceStack;Lnet/minecraft/network/chat/Style;Lnet/minecraft/world/entity/Entity;I)Lnet/minecraft/network/chat/Style; net/minecraft/network/chat/ComponentUtils/resolveStyle (Lnet/minecraft/commands/CommandSourceStack;Lnet/minecraft/network/chat/Style;Lnet/minecraft/world/entity/Entity;I)Lnet/minecraft/network/chat/Style; +MD: net/minecraft/network/chat/ComponentUtils/m_130741_ (Ljava/lang/String;)Lnet/minecraft/network/chat/Component; net/minecraft/network/chat/ComponentUtils/lambda$formatList$0 (Ljava/lang/String;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/network/chat/ComponentUtils/m_130743_ (Ljava/util/Collection;)Lnet/minecraft/network/chat/Component; net/minecraft/network/chat/ComponentUtils/formatList (Ljava/util/Collection;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/network/chat/ComponentUtils/m_130745_ (Ljava/util/Collection;Ljava/util/function/Function;)Lnet/minecraft/network/chat/Component; net/minecraft/network/chat/ComponentUtils/formatAndSortList (Ljava/util/Collection;Ljava/util/function/Function;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/network/chat/ComponentUtils/m_130748_ (Lnet/minecraft/network/chat/Component;)Lnet/minecraft/network/chat/MutableComponent; net/minecraft/network/chat/ComponentUtils/wrapInSquareBrackets (Lnet/minecraft/network/chat/Component;)Lnet/minecraft/network/chat/MutableComponent; +MD: net/minecraft/network/chat/ComponentUtils/m_130750_ (Lnet/minecraft/network/chat/MutableComponent;Lnet/minecraft/network/chat/Style;)Lnet/minecraft/network/chat/MutableComponent; net/minecraft/network/chat/ComponentUtils/mergeStyles (Lnet/minecraft/network/chat/MutableComponent;Lnet/minecraft/network/chat/Style;)Lnet/minecraft/network/chat/MutableComponent; +MD: net/minecraft/network/chat/ComponentUtils/m_178424_ (Lnet/minecraft/commands/CommandSourceStack;Ljava/util/Optional;Lnet/minecraft/world/entity/Entity;I)Ljava/util/Optional; net/minecraft/network/chat/ComponentUtils/updateForEntity (Lnet/minecraft/commands/CommandSourceStack;Ljava/util/Optional;Lnet/minecraft/world/entity/Entity;I)Ljava/util/Optional; +MD: net/minecraft/network/chat/ComponentUtils/m_178429_ (Ljava/util/Collection;Ljava/util/Optional;Ljava/util/function/Function;)Lnet/minecraft/network/chat/MutableComponent; net/minecraft/network/chat/ComponentUtils/formatList (Ljava/util/Collection;Ljava/util/Optional;Ljava/util/function/Function;)Lnet/minecraft/network/chat/MutableComponent; +MD: net/minecraft/network/chat/ComponentUtils/m_178433_ (Ljava/util/Collection;Lnet/minecraft/network/chat/Component;)Lnet/minecraft/network/chat/Component; net/minecraft/network/chat/ComponentUtils/formatList (Ljava/util/Collection;Lnet/minecraft/network/chat/Component;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/network/chat/ComponentUtils/m_178436_ (Ljava/util/Collection;Lnet/minecraft/network/chat/Component;Ljava/util/function/Function;)Lnet/minecraft/network/chat/MutableComponent; net/minecraft/network/chat/ComponentUtils/formatList (Ljava/util/Collection;Lnet/minecraft/network/chat/Component;Ljava/util/function/Function;)Lnet/minecraft/network/chat/MutableComponent; +MD: net/minecraft/network/chat/ComponentUtils/m_178440_ (Ljava/util/Collection;Ljava/util/function/Function;)Lnet/minecraft/network/chat/Component; net/minecraft/network/chat/ComponentUtils/formatList (Ljava/util/Collection;Ljava/util/function/Function;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/network/chat/ComponentUtils/m_237134_ (Lnet/minecraft/network/chat/Component;)Z net/minecraft/network/chat/ComponentUtils/isTranslationResolvable (Lnet/minecraft/network/chat/Component;)Z +MD: net/minecraft/network/chat/ComponentUtils/m_257121_ (Ljava/lang/String;Lnet/minecraft/network/chat/Style;)Lnet/minecraft/network/chat/Style; net/minecraft/network/chat/ComponentUtils/lambda$copyOnClickText$1 (Ljava/lang/String;Lnet/minecraft/network/chat/Style;)Lnet/minecraft/network/chat/Style; +MD: net/minecraft/network/chat/ComponentUtils/m_258024_ (Ljava/lang/String;)Lnet/minecraft/network/chat/MutableComponent; net/minecraft/network/chat/ComponentUtils/copyOnClickText (Ljava/lang/String;)Lnet/minecraft/network/chat/MutableComponent; +MD: net/minecraft/network/chat/FilterMask/ ()V net/minecraft/network/chat/FilterMask/ ()V +MD: net/minecraft/network/chat/FilterMask/ (I)V net/minecraft/network/chat/FilterMask/ (I)V +MD: net/minecraft/network/chat/FilterMask/ (Ljava/util/BitSet;)V net/minecraft/network/chat/FilterMask/ (Ljava/util/BitSet;)V +MD: net/minecraft/network/chat/FilterMask/ (Ljava/util/BitSet;Lnet/minecraft/network/chat/FilterMask$Type;)V net/minecraft/network/chat/FilterMask/ (Ljava/util/BitSet;Lnet/minecraft/network/chat/FilterMask$Type;)V +MD: net/minecraft/network/chat/FilterMask/equals (Ljava/lang/Object;)Z net/minecraft/network/chat/FilterMask/equals (Ljava/lang/Object;)Z +MD: net/minecraft/network/chat/FilterMask/hashCode ()I net/minecraft/network/chat/FilterMask/hashCode ()I +MD: net/minecraft/network/chat/FilterMask/m_243067_ ()Z net/minecraft/network/chat/FilterMask/isFullyFiltered ()Z +MD: net/minecraft/network/chat/FilterMask/m_243095_ ()Z net/minecraft/network/chat/FilterMask/isEmpty ()Z +MD: net/minecraft/network/chat/FilterMask/m_243104_ (Lnet/minecraft/network/FriendlyByteBuf;)Lnet/minecraft/network/chat/FilterMask; net/minecraft/network/chat/FilterMask/read (Lnet/minecraft/network/FriendlyByteBuf;)Lnet/minecraft/network/chat/FilterMask; +MD: net/minecraft/network/chat/FilterMask/m_243105_ (Lnet/minecraft/network/FriendlyByteBuf;Lnet/minecraft/network/chat/FilterMask;)V net/minecraft/network/chat/FilterMask/write (Lnet/minecraft/network/FriendlyByteBuf;Lnet/minecraft/network/chat/FilterMask;)V +MD: net/minecraft/network/chat/FilterMask/m_243114_ (Ljava/lang/String;)Ljava/lang/String; net/minecraft/network/chat/FilterMask/apply (Ljava/lang/String;)Ljava/lang/String; +MD: net/minecraft/network/chat/FilterMask/m_243123_ (I)V net/minecraft/network/chat/FilterMask/setFiltered (I)V +MD: net/minecraft/network/chat/FilterMask/m_246134_ (Ljava/lang/String;)Lnet/minecraft/network/chat/Component; net/minecraft/network/chat/FilterMask/applyWithFormatting (Ljava/lang/String;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/network/chat/FilterMask/m_252818_ ()Ljava/util/BitSet; net/minecraft/network/chat/FilterMask/mask ()Ljava/util/BitSet; +MD: net/minecraft/network/chat/FilterMask/m_252945_ ()Lnet/minecraft/network/chat/FilterMask$Type; net/minecraft/network/chat/FilterMask/type ()Lnet/minecraft/network/chat/FilterMask$Type; +MD: net/minecraft/network/chat/FilterMask$1/ ()V net/minecraft/network/chat/FilterMask$1/ ()V +MD: net/minecraft/network/chat/FilterMask$Type/ ()V net/minecraft/network/chat/FilterMask$Type/ ()V +MD: net/minecraft/network/chat/FilterMask$Type/ (Ljava/lang/String;ILjava/lang/String;Ljava/util/function/Supplier;)V net/minecraft/network/chat/FilterMask$Type/ (Ljava/lang/String;ILjava/lang/String;Ljava/util/function/Supplier;)V +MD: net/minecraft/network/chat/FilterMask$Type/m_243133_ ()[Lnet/minecraft/network/chat/FilterMask$Type; net/minecraft/network/chat/FilterMask$Type/$values ()[Lnet/minecraft/network/chat/FilterMask$Type; +MD: net/minecraft/network/chat/FilterMask$Type/m_252790_ ()Lcom/mojang/serialization/Codec; net/minecraft/network/chat/FilterMask$Type/lambda$static$0 ()Lcom/mojang/serialization/Codec; +MD: net/minecraft/network/chat/FilterMask$Type/m_252956_ ()Lcom/mojang/serialization/Codec; net/minecraft/network/chat/FilterMask$Type/lambda$static$1 ()Lcom/mojang/serialization/Codec; +MD: net/minecraft/network/chat/FilterMask$Type/m_253044_ ()Lcom/mojang/serialization/Codec; net/minecraft/network/chat/FilterMask$Type/lambda$static$2 ()Lcom/mojang/serialization/Codec; +MD: net/minecraft/network/chat/FilterMask$Type/m_253171_ ()Lcom/mojang/serialization/Codec; net/minecraft/network/chat/FilterMask$Type/codec ()Lcom/mojang/serialization/Codec; +MD: net/minecraft/network/chat/FilterMask$Type/m_7912_ ()Ljava/lang/String; net/minecraft/network/chat/FilterMask$Type/getSerializedName ()Ljava/lang/String; +MD: net/minecraft/network/chat/FilterMask$Type/valueOf (Ljava/lang/String;)Lnet/minecraft/network/chat/FilterMask$Type; net/minecraft/network/chat/FilterMask$Type/valueOf (Ljava/lang/String;)Lnet/minecraft/network/chat/FilterMask$Type; +MD: net/minecraft/network/chat/FilterMask$Type/values ()[Lnet/minecraft/network/chat/FilterMask$Type; net/minecraft/network/chat/FilterMask$Type/values ()[Lnet/minecraft/network/chat/FilterMask$Type; +MD: net/minecraft/network/chat/FormattedText/ ()V net/minecraft/network/chat/FormattedText/ ()V +MD: net/minecraft/network/chat/FormattedText/getString ()Ljava/lang/String; net/minecraft/network/chat/FormattedText/getString ()Ljava/lang/String; +MD: net/minecraft/network/chat/FormattedText/m_130762_ (Ljava/lang/String;Lnet/minecraft/network/chat/Style;)Lnet/minecraft/network/chat/FormattedText; net/minecraft/network/chat/FormattedText/of (Ljava/lang/String;Lnet/minecraft/network/chat/Style;)Lnet/minecraft/network/chat/FormattedText; +MD: net/minecraft/network/chat/FormattedText/m_130765_ (Ljava/lang/StringBuilder;Ljava/lang/String;)Ljava/util/Optional; net/minecraft/network/chat/FormattedText/lambda$getString$0 (Ljava/lang/StringBuilder;Ljava/lang/String;)Ljava/util/Optional; +MD: net/minecraft/network/chat/FormattedText/m_130768_ (Ljava/util/List;)Lnet/minecraft/network/chat/FormattedText; net/minecraft/network/chat/FormattedText/composite (Ljava/util/List;)Lnet/minecraft/network/chat/FormattedText; +MD: net/minecraft/network/chat/FormattedText/m_130773_ ([Lnet/minecraft/network/chat/FormattedText;)Lnet/minecraft/network/chat/FormattedText; net/minecraft/network/chat/FormattedText/composite ([Lnet/minecraft/network/chat/FormattedText;)Lnet/minecraft/network/chat/FormattedText; +MD: net/minecraft/network/chat/FormattedText/m_130775_ (Ljava/lang/String;)Lnet/minecraft/network/chat/FormattedText; net/minecraft/network/chat/FormattedText/of (Ljava/lang/String;)Lnet/minecraft/network/chat/FormattedText; +MD: net/minecraft/network/chat/FormattedText/m_5651_ (Lnet/minecraft/network/chat/FormattedText$ContentConsumer;)Ljava/util/Optional; net/minecraft/network/chat/FormattedText/visit (Lnet/minecraft/network/chat/FormattedText$ContentConsumer;)Ljava/util/Optional; +MD: net/minecraft/network/chat/FormattedText/m_7451_ (Lnet/minecraft/network/chat/FormattedText$StyledContentConsumer;Lnet/minecraft/network/chat/Style;)Ljava/util/Optional; net/minecraft/network/chat/FormattedText/visit (Lnet/minecraft/network/chat/FormattedText$StyledContentConsumer;Lnet/minecraft/network/chat/Style;)Ljava/util/Optional; +MD: net/minecraft/network/chat/FormattedText$1/ ()V net/minecraft/network/chat/FormattedText$1/ ()V +MD: net/minecraft/network/chat/FormattedText$1/m_5651_ (Lnet/minecraft/network/chat/FormattedText$ContentConsumer;)Ljava/util/Optional; net/minecraft/network/chat/FormattedText$1/visit (Lnet/minecraft/network/chat/FormattedText$ContentConsumer;)Ljava/util/Optional; +MD: net/minecraft/network/chat/FormattedText$1/m_7451_ (Lnet/minecraft/network/chat/FormattedText$StyledContentConsumer;Lnet/minecraft/network/chat/Style;)Ljava/util/Optional; net/minecraft/network/chat/FormattedText$1/visit (Lnet/minecraft/network/chat/FormattedText$StyledContentConsumer;Lnet/minecraft/network/chat/Style;)Ljava/util/Optional; +MD: net/minecraft/network/chat/FormattedText$2/ (Ljava/lang/String;)V net/minecraft/network/chat/FormattedText$2/ (Ljava/lang/String;)V +MD: net/minecraft/network/chat/FormattedText$2/m_5651_ (Lnet/minecraft/network/chat/FormattedText$ContentConsumer;)Ljava/util/Optional; net/minecraft/network/chat/FormattedText$2/visit (Lnet/minecraft/network/chat/FormattedText$ContentConsumer;)Ljava/util/Optional; +MD: net/minecraft/network/chat/FormattedText$2/m_7451_ (Lnet/minecraft/network/chat/FormattedText$StyledContentConsumer;Lnet/minecraft/network/chat/Style;)Ljava/util/Optional; net/minecraft/network/chat/FormattedText$2/visit (Lnet/minecraft/network/chat/FormattedText$StyledContentConsumer;Lnet/minecraft/network/chat/Style;)Ljava/util/Optional; +MD: net/minecraft/network/chat/FormattedText$3/ (Ljava/lang/String;Lnet/minecraft/network/chat/Style;)V net/minecraft/network/chat/FormattedText$3/ (Ljava/lang/String;Lnet/minecraft/network/chat/Style;)V +MD: net/minecraft/network/chat/FormattedText$3/m_5651_ (Lnet/minecraft/network/chat/FormattedText$ContentConsumer;)Ljava/util/Optional; net/minecraft/network/chat/FormattedText$3/visit (Lnet/minecraft/network/chat/FormattedText$ContentConsumer;)Ljava/util/Optional; +MD: net/minecraft/network/chat/FormattedText$3/m_7451_ (Lnet/minecraft/network/chat/FormattedText$StyledContentConsumer;Lnet/minecraft/network/chat/Style;)Ljava/util/Optional; net/minecraft/network/chat/FormattedText$3/visit (Lnet/minecraft/network/chat/FormattedText$StyledContentConsumer;Lnet/minecraft/network/chat/Style;)Ljava/util/Optional; +MD: net/minecraft/network/chat/FormattedText$4/ (Ljava/util/List;)V net/minecraft/network/chat/FormattedText$4/ (Ljava/util/List;)V +MD: net/minecraft/network/chat/FormattedText$4/m_5651_ (Lnet/minecraft/network/chat/FormattedText$ContentConsumer;)Ljava/util/Optional; net/minecraft/network/chat/FormattedText$4/visit (Lnet/minecraft/network/chat/FormattedText$ContentConsumer;)Ljava/util/Optional; +MD: net/minecraft/network/chat/FormattedText$4/m_7451_ (Lnet/minecraft/network/chat/FormattedText$StyledContentConsumer;Lnet/minecraft/network/chat/Style;)Ljava/util/Optional; net/minecraft/network/chat/FormattedText$4/visit (Lnet/minecraft/network/chat/FormattedText$StyledContentConsumer;Lnet/minecraft/network/chat/Style;)Ljava/util/Optional; +MD: net/minecraft/network/chat/FormattedText$ContentConsumer/m_130809_ (Ljava/lang/String;)Ljava/util/Optional; net/minecraft/network/chat/FormattedText$ContentConsumer/accept (Ljava/lang/String;)Ljava/util/Optional; +MD: net/minecraft/network/chat/FormattedText$StyledContentConsumer/m_7164_ (Lnet/minecraft/network/chat/Style;Ljava/lang/String;)Ljava/util/Optional; net/minecraft/network/chat/FormattedText$StyledContentConsumer/accept (Lnet/minecraft/network/chat/Style;Ljava/lang/String;)Ljava/util/Optional; +MD: net/minecraft/network/chat/HoverEvent/ ()V net/minecraft/network/chat/HoverEvent/ ()V +MD: net/minecraft/network/chat/HoverEvent/ (Lnet/minecraft/network/chat/HoverEvent$Action;Ljava/lang/Object;)V net/minecraft/network/chat/HoverEvent/ (Lnet/minecraft/network/chat/HoverEvent$Action;Ljava/lang/Object;)V +MD: net/minecraft/network/chat/HoverEvent/equals (Ljava/lang/Object;)Z net/minecraft/network/chat/HoverEvent/equals (Ljava/lang/Object;)Z +MD: net/minecraft/network/chat/HoverEvent/hashCode ()I net/minecraft/network/chat/HoverEvent/hashCode ()I +MD: net/minecraft/network/chat/HoverEvent/m_130820_ ()Lnet/minecraft/network/chat/HoverEvent$Action; net/minecraft/network/chat/HoverEvent/getAction ()Lnet/minecraft/network/chat/HoverEvent$Action; +MD: net/minecraft/network/chat/HoverEvent/m_130821_ (Lcom/google/gson/JsonObject;)Lnet/minecraft/network/chat/HoverEvent; net/minecraft/network/chat/HoverEvent/deserialize (Lcom/google/gson/JsonObject;)Lnet/minecraft/network/chat/HoverEvent; +MD: net/minecraft/network/chat/HoverEvent/m_130823_ (Lnet/minecraft/network/chat/HoverEvent$Action;)Ljava/lang/Object; net/minecraft/network/chat/HoverEvent/getValue (Lnet/minecraft/network/chat/HoverEvent$Action;)Ljava/lang/Object; +MD: net/minecraft/network/chat/HoverEvent/m_130825_ ()Lcom/google/gson/JsonObject; net/minecraft/network/chat/HoverEvent/serialize ()Lcom/google/gson/JsonObject; +MD: net/minecraft/network/chat/HoverEvent/toString ()Ljava/lang/String; net/minecraft/network/chat/HoverEvent/toString ()Ljava/lang/String; +MD: net/minecraft/network/chat/HoverEvent$Action/ ()V net/minecraft/network/chat/HoverEvent$Action/ ()V +MD: net/minecraft/network/chat/HoverEvent$Action/ (Ljava/lang/String;ZLjava/util/function/Function;Ljava/util/function/Function;Ljava/util/function/Function;)V net/minecraft/network/chat/HoverEvent$Action/ (Ljava/lang/String;ZLjava/util/function/Function;Ljava/util/function/Function;Ljava/util/function/Function;)V +MD: net/minecraft/network/chat/HoverEvent$Action/m_130847_ ()Z net/minecraft/network/chat/HoverEvent$Action/isAllowedFromServer ()Z +MD: net/minecraft/network/chat/HoverEvent$Action/m_130848_ (Lcom/google/gson/JsonElement;)Lnet/minecraft/network/chat/HoverEvent; net/minecraft/network/chat/HoverEvent$Action/deserialize (Lcom/google/gson/JsonElement;)Lnet/minecraft/network/chat/HoverEvent; +MD: net/minecraft/network/chat/HoverEvent$Action/m_130850_ (Ljava/lang/Object;)Lcom/google/gson/JsonElement; net/minecraft/network/chat/HoverEvent$Action/serializeArg (Ljava/lang/Object;)Lcom/google/gson/JsonElement; +MD: net/minecraft/network/chat/HoverEvent$Action/m_130852_ (Ljava/lang/String;)Lnet/minecraft/network/chat/HoverEvent$Action; net/minecraft/network/chat/HoverEvent$Action/getByName (Ljava/lang/String;)Lnet/minecraft/network/chat/HoverEvent$Action; +MD: net/minecraft/network/chat/HoverEvent$Action/m_130854_ (Lnet/minecraft/network/chat/Component;)Lnet/minecraft/network/chat/HoverEvent; net/minecraft/network/chat/HoverEvent$Action/deserializeFromLegacy (Lnet/minecraft/network/chat/Component;)Lnet/minecraft/network/chat/HoverEvent; +MD: net/minecraft/network/chat/HoverEvent$Action/m_130861_ ()Ljava/lang/String; net/minecraft/network/chat/HoverEvent$Action/getName ()Ljava/lang/String; +MD: net/minecraft/network/chat/HoverEvent$Action/m_130864_ (Ljava/lang/Object;)Ljava/lang/Object; net/minecraft/network/chat/HoverEvent$Action/cast (Ljava/lang/Object;)Ljava/lang/Object; +MD: net/minecraft/network/chat/HoverEvent$Action/m_178443_ (Lnet/minecraft/network/chat/HoverEvent$Action;)Lnet/minecraft/network/chat/HoverEvent$Action; net/minecraft/network/chat/HoverEvent$Action/lambda$static$0 (Lnet/minecraft/network/chat/HoverEvent$Action;)Lnet/minecraft/network/chat/HoverEvent$Action; +MD: net/minecraft/network/chat/HoverEvent$Action/toString ()Ljava/lang/String; net/minecraft/network/chat/HoverEvent$Action/toString ()Ljava/lang/String; +MD: net/minecraft/network/chat/HoverEvent$EntityTooltipInfo/ (Lnet/minecraft/world/entity/EntityType;Ljava/util/UUID;Lnet/minecraft/network/chat/Component;)V net/minecraft/network/chat/HoverEvent$EntityTooltipInfo/ (Lnet/minecraft/world/entity/EntityType;Ljava/util/UUID;Lnet/minecraft/network/chat/Component;)V +MD: net/minecraft/network/chat/HoverEvent$EntityTooltipInfo/equals (Ljava/lang/Object;)Z net/minecraft/network/chat/HoverEvent$EntityTooltipInfo/equals (Ljava/lang/Object;)Z +MD: net/minecraft/network/chat/HoverEvent$EntityTooltipInfo/hashCode ()I net/minecraft/network/chat/HoverEvent$EntityTooltipInfo/hashCode ()I +MD: net/minecraft/network/chat/HoverEvent$EntityTooltipInfo/m_130879_ ()Lcom/google/gson/JsonElement; net/minecraft/network/chat/HoverEvent$EntityTooltipInfo/serialize ()Lcom/google/gson/JsonElement; +MD: net/minecraft/network/chat/HoverEvent$EntityTooltipInfo/m_130880_ (Lcom/google/gson/JsonElement;)Lnet/minecraft/network/chat/HoverEvent$EntityTooltipInfo; net/minecraft/network/chat/HoverEvent$EntityTooltipInfo/create (Lcom/google/gson/JsonElement;)Lnet/minecraft/network/chat/HoverEvent$EntityTooltipInfo; +MD: net/minecraft/network/chat/HoverEvent$EntityTooltipInfo/m_130882_ (Lnet/minecraft/network/chat/Component;)Lnet/minecraft/network/chat/HoverEvent$EntityTooltipInfo; net/minecraft/network/chat/HoverEvent$EntityTooltipInfo/create (Lnet/minecraft/network/chat/Component;)Lnet/minecraft/network/chat/HoverEvent$EntityTooltipInfo; +MD: net/minecraft/network/chat/HoverEvent$EntityTooltipInfo/m_130884_ ()Ljava/util/List; net/minecraft/network/chat/HoverEvent$EntityTooltipInfo/getTooltipLines ()Ljava/util/List; +MD: net/minecraft/network/chat/HoverEvent$ItemStackInfo/ (Lnet/minecraft/world/item/ItemStack;)V net/minecraft/network/chat/HoverEvent$ItemStackInfo/ (Lnet/minecraft/world/item/ItemStack;)V +MD: net/minecraft/network/chat/HoverEvent$ItemStackInfo/ (Lnet/minecraft/world/item/Item;ILnet/minecraft/nbt/CompoundTag;)V net/minecraft/network/chat/HoverEvent$ItemStackInfo/ (Lnet/minecraft/world/item/Item;ILnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/network/chat/HoverEvent$ItemStackInfo/equals (Ljava/lang/Object;)Z net/minecraft/network/chat/HoverEvent$ItemStackInfo/equals (Ljava/lang/Object;)Z +MD: net/minecraft/network/chat/HoverEvent$ItemStackInfo/hashCode ()I net/minecraft/network/chat/HoverEvent$ItemStackInfo/hashCode ()I +MD: net/minecraft/network/chat/HoverEvent$ItemStackInfo/m_130898_ ()Lnet/minecraft/world/item/ItemStack; net/minecraft/network/chat/HoverEvent$ItemStackInfo/getItemStack ()Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/network/chat/HoverEvent$ItemStackInfo/m_130905_ ()Lcom/google/gson/JsonElement; net/minecraft/network/chat/HoverEvent$ItemStackInfo/serialize ()Lcom/google/gson/JsonElement; +MD: net/minecraft/network/chat/HoverEvent$ItemStackInfo/m_130906_ (Lcom/google/gson/JsonElement;)Lnet/minecraft/network/chat/HoverEvent$ItemStackInfo; net/minecraft/network/chat/HoverEvent$ItemStackInfo/create (Lcom/google/gson/JsonElement;)Lnet/minecraft/network/chat/HoverEvent$ItemStackInfo; +MD: net/minecraft/network/chat/HoverEvent$ItemStackInfo/m_130908_ (Lnet/minecraft/network/chat/Component;)Lnet/minecraft/network/chat/HoverEvent$ItemStackInfo; net/minecraft/network/chat/HoverEvent$ItemStackInfo/create (Lnet/minecraft/network/chat/Component;)Lnet/minecraft/network/chat/HoverEvent$ItemStackInfo; +MD: net/minecraft/network/chat/LastSeenMessages/ ()V net/minecraft/network/chat/LastSeenMessages/ ()V +MD: net/minecraft/network/chat/LastSeenMessages/ (Ljava/util/List;)V net/minecraft/network/chat/LastSeenMessages/ (Ljava/util/List;)V +MD: net/minecraft/network/chat/LastSeenMessages/equals (Ljava/lang/Object;)Z net/minecraft/network/chat/LastSeenMessages/equals (Ljava/lang/Object;)Z +MD: net/minecraft/network/chat/LastSeenMessages/f_241630_ ()Ljava/util/List; net/minecraft/network/chat/LastSeenMessages/entries ()Ljava/util/List; +MD: net/minecraft/network/chat/LastSeenMessages/hashCode ()I net/minecraft/network/chat/LastSeenMessages/hashCode ()I +MD: net/minecraft/network/chat/LastSeenMessages/m_245933_ (Lnet/minecraft/util/SignatureUpdater$Output;)V net/minecraft/network/chat/LastSeenMessages/updateSignature (Lnet/minecraft/util/SignatureUpdater$Output;)V +MD: net/minecraft/network/chat/LastSeenMessages/m_247067_ (Lnet/minecraft/network/chat/MessageSignatureCache;)Lnet/minecraft/network/chat/LastSeenMessages$Packed; net/minecraft/network/chat/LastSeenMessages/pack (Lnet/minecraft/network/chat/MessageSignatureCache;)Lnet/minecraft/network/chat/LastSeenMessages$Packed; +MD: net/minecraft/network/chat/LastSeenMessages/m_252644_ (Lnet/minecraft/network/chat/MessageSignatureCache;Lnet/minecraft/network/chat/MessageSignature;)Lnet/minecraft/network/chat/MessageSignature$Packed; net/minecraft/network/chat/LastSeenMessages/lambda$pack$0 (Lnet/minecraft/network/chat/MessageSignatureCache;Lnet/minecraft/network/chat/MessageSignature;)Lnet/minecraft/network/chat/MessageSignature$Packed; +MD: net/minecraft/network/chat/LastSeenMessages/toString ()Ljava/lang/String; net/minecraft/network/chat/LastSeenMessages/toString ()Ljava/lang/String; +MD: net/minecraft/network/chat/LastSeenMessages$Packed/ ()V net/minecraft/network/chat/LastSeenMessages$Packed/ ()V +MD: net/minecraft/network/chat/LastSeenMessages$Packed/ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/chat/LastSeenMessages$Packed/ (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/chat/LastSeenMessages$Packed/ (Ljava/util/List;)V net/minecraft/network/chat/LastSeenMessages$Packed/ (Ljava/util/List;)V +MD: net/minecraft/network/chat/LastSeenMessages$Packed/equals (Ljava/lang/Object;)Z net/minecraft/network/chat/LastSeenMessages$Packed/equals (Ljava/lang/Object;)Z +MD: net/minecraft/network/chat/LastSeenMessages$Packed/f_244613_ ()Ljava/util/List; net/minecraft/network/chat/LastSeenMessages$Packed/entries ()Ljava/util/List; +MD: net/minecraft/network/chat/LastSeenMessages$Packed/hashCode ()I net/minecraft/network/chat/LastSeenMessages$Packed/hashCode ()I +MD: net/minecraft/network/chat/LastSeenMessages$Packed/m_245073_ (Lnet/minecraft/network/chat/MessageSignatureCache;)Ljava/util/Optional; net/minecraft/network/chat/LastSeenMessages$Packed/unpack (Lnet/minecraft/network/chat/MessageSignatureCache;)Ljava/util/Optional; +MD: net/minecraft/network/chat/LastSeenMessages$Packed/m_246304_ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/chat/LastSeenMessages$Packed/write (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/chat/LastSeenMessages$Packed/toString ()Ljava/lang/String; net/minecraft/network/chat/LastSeenMessages$Packed/toString ()Ljava/lang/String; +MD: net/minecraft/network/chat/LastSeenMessages$Update/ (ILjava/util/BitSet;)V net/minecraft/network/chat/LastSeenMessages$Update/ (ILjava/util/BitSet;)V +MD: net/minecraft/network/chat/LastSeenMessages$Update/ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/chat/LastSeenMessages$Update/ (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/chat/LastSeenMessages$Update/equals (Ljava/lang/Object;)Z net/minecraft/network/chat/LastSeenMessages$Update/equals (Ljava/lang/Object;)Z +MD: net/minecraft/network/chat/LastSeenMessages$Update/f_243843_ ()I net/minecraft/network/chat/LastSeenMessages$Update/offset ()I +MD: net/minecraft/network/chat/LastSeenMessages$Update/f_244446_ ()Ljava/util/BitSet; net/minecraft/network/chat/LastSeenMessages$Update/acknowledged ()Ljava/util/BitSet; +MD: net/minecraft/network/chat/LastSeenMessages$Update/hashCode ()I net/minecraft/network/chat/LastSeenMessages$Update/hashCode ()I +MD: net/minecraft/network/chat/LastSeenMessages$Update/m_242008_ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/chat/LastSeenMessages$Update/write (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/chat/LastSeenMessages$Update/toString ()Ljava/lang/String; net/minecraft/network/chat/LastSeenMessages$Update/toString ()Ljava/lang/String; +MD: net/minecraft/network/chat/LastSeenMessagesTracker/ (I)V net/minecraft/network/chat/LastSeenMessagesTracker/ (I)V +MD: net/minecraft/network/chat/LastSeenMessagesTracker/m_245220_ (Lnet/minecraft/network/chat/MessageSignature;Z)Z net/minecraft/network/chat/LastSeenMessagesTracker/addPending (Lnet/minecraft/network/chat/MessageSignature;Z)Z +MD: net/minecraft/network/chat/LastSeenMessagesTracker/m_245313_ ()I net/minecraft/network/chat/LastSeenMessagesTracker/getAndClearOffset ()I +MD: net/minecraft/network/chat/LastSeenMessagesTracker/m_245480_ ()I net/minecraft/network/chat/LastSeenMessagesTracker/offset ()I +MD: net/minecraft/network/chat/LastSeenMessagesTracker/m_246067_ (Lnet/minecraft/network/chat/MessageSignature;)V net/minecraft/network/chat/LastSeenMessagesTracker/ignorePending (Lnet/minecraft/network/chat/MessageSignature;)V +MD: net/minecraft/network/chat/LastSeenMessagesTracker/m_246442_ ()Lnet/minecraft/network/chat/LastSeenMessagesTracker$Update; net/minecraft/network/chat/LastSeenMessagesTracker/generateAndApplyUpdate ()Lnet/minecraft/network/chat/LastSeenMessagesTracker$Update; +MD: net/minecraft/network/chat/LastSeenMessagesTracker/m_247638_ (Lnet/minecraft/network/chat/LastSeenTrackedEntry;)V net/minecraft/network/chat/LastSeenMessagesTracker/addEntry (Lnet/minecraft/network/chat/LastSeenTrackedEntry;)V +MD: net/minecraft/network/chat/LastSeenMessagesTracker$Update/ (Lnet/minecraft/network/chat/LastSeenMessages;Lnet/minecraft/network/chat/LastSeenMessages$Update;)V net/minecraft/network/chat/LastSeenMessagesTracker$Update/ (Lnet/minecraft/network/chat/LastSeenMessages;Lnet/minecraft/network/chat/LastSeenMessages$Update;)V +MD: net/minecraft/network/chat/LastSeenMessagesTracker$Update/equals (Ljava/lang/Object;)Z net/minecraft/network/chat/LastSeenMessagesTracker$Update/equals (Ljava/lang/Object;)Z +MD: net/minecraft/network/chat/LastSeenMessagesTracker$Update/f_243872_ ()Lnet/minecraft/network/chat/LastSeenMessages; net/minecraft/network/chat/LastSeenMessagesTracker$Update/lastSeen ()Lnet/minecraft/network/chat/LastSeenMessages; +MD: net/minecraft/network/chat/LastSeenMessagesTracker$Update/f_244473_ ()Lnet/minecraft/network/chat/LastSeenMessages$Update; net/minecraft/network/chat/LastSeenMessagesTracker$Update/update ()Lnet/minecraft/network/chat/LastSeenMessages$Update; +MD: net/minecraft/network/chat/LastSeenMessagesTracker$Update/hashCode ()I net/minecraft/network/chat/LastSeenMessagesTracker$Update/hashCode ()I +MD: net/minecraft/network/chat/LastSeenMessagesTracker$Update/toString ()Ljava/lang/String; net/minecraft/network/chat/LastSeenMessagesTracker$Update/toString ()Ljava/lang/String; +MD: net/minecraft/network/chat/LastSeenMessagesValidator/ (I)V net/minecraft/network/chat/LastSeenMessagesValidator/ (I)V +MD: net/minecraft/network/chat/LastSeenMessagesValidator/m_245398_ (I)Z net/minecraft/network/chat/LastSeenMessagesValidator/applyOffset (I)Z +MD: net/minecraft/network/chat/LastSeenMessagesValidator/m_245741_ ()I net/minecraft/network/chat/LastSeenMessagesValidator/trackedMessagesCount ()I +MD: net/minecraft/network/chat/LastSeenMessagesValidator/m_247119_ (Lnet/minecraft/network/chat/LastSeenMessages$Update;)Ljava/util/Optional; net/minecraft/network/chat/LastSeenMessagesValidator/applyUpdate (Lnet/minecraft/network/chat/LastSeenMessages$Update;)Ljava/util/Optional; +MD: net/minecraft/network/chat/LastSeenMessagesValidator/m_247482_ (Lnet/minecraft/network/chat/MessageSignature;)V net/minecraft/network/chat/LastSeenMessagesValidator/addPending (Lnet/minecraft/network/chat/MessageSignature;)V +MD: net/minecraft/network/chat/LastSeenTrackedEntry/ (Lnet/minecraft/network/chat/MessageSignature;Z)V net/minecraft/network/chat/LastSeenTrackedEntry/ (Lnet/minecraft/network/chat/MessageSignature;Z)V +MD: net/minecraft/network/chat/LastSeenTrackedEntry/equals (Ljava/lang/Object;)Z net/minecraft/network/chat/LastSeenTrackedEntry/equals (Ljava/lang/Object;)Z +MD: net/minecraft/network/chat/LastSeenTrackedEntry/f_243846_ ()Lnet/minecraft/network/chat/MessageSignature; net/minecraft/network/chat/LastSeenTrackedEntry/signature ()Lnet/minecraft/network/chat/MessageSignature; +MD: net/minecraft/network/chat/LastSeenTrackedEntry/f_243942_ ()Z net/minecraft/network/chat/LastSeenTrackedEntry/pending ()Z +MD: net/minecraft/network/chat/LastSeenTrackedEntry/hashCode ()I net/minecraft/network/chat/LastSeenTrackedEntry/hashCode ()I +MD: net/minecraft/network/chat/LastSeenTrackedEntry/m_247448_ ()Lnet/minecraft/network/chat/LastSeenTrackedEntry; net/minecraft/network/chat/LastSeenTrackedEntry/acknowledge ()Lnet/minecraft/network/chat/LastSeenTrackedEntry; +MD: net/minecraft/network/chat/LastSeenTrackedEntry/toString ()Ljava/lang/String; net/minecraft/network/chat/LastSeenTrackedEntry/toString ()Ljava/lang/String; +MD: net/minecraft/network/chat/LocalChatSession/ (Ljava/util/UUID;Lnet/minecraft/world/entity/player/ProfileKeyPair;)V net/minecraft/network/chat/LocalChatSession/ (Ljava/util/UUID;Lnet/minecraft/world/entity/player/ProfileKeyPair;)V +MD: net/minecraft/network/chat/LocalChatSession/equals (Ljava/lang/Object;)Z net/minecraft/network/chat/LocalChatSession/equals (Ljava/lang/Object;)Z +MD: net/minecraft/network/chat/LocalChatSession/f_243926_ ()Lnet/minecraft/world/entity/player/ProfileKeyPair; net/minecraft/network/chat/LocalChatSession/keyPair ()Lnet/minecraft/world/entity/player/ProfileKeyPair; +MD: net/minecraft/network/chat/LocalChatSession/f_244284_ ()Ljava/util/UUID; net/minecraft/network/chat/LocalChatSession/sessionId ()Ljava/util/UUID; +MD: net/minecraft/network/chat/LocalChatSession/hashCode ()I net/minecraft/network/chat/LocalChatSession/hashCode ()I +MD: net/minecraft/network/chat/LocalChatSession/m_245157_ (Lnet/minecraft/world/entity/player/ProfileKeyPair;)Lnet/minecraft/network/chat/LocalChatSession; net/minecraft/network/chat/LocalChatSession/create (Lnet/minecraft/world/entity/player/ProfileKeyPair;)Lnet/minecraft/network/chat/LocalChatSession; +MD: net/minecraft/network/chat/LocalChatSession/m_245584_ ()Lnet/minecraft/network/chat/RemoteChatSession; net/minecraft/network/chat/LocalChatSession/asRemote ()Lnet/minecraft/network/chat/RemoteChatSession; +MD: net/minecraft/network/chat/LocalChatSession/m_247507_ (Ljava/util/UUID;)Lnet/minecraft/network/chat/SignedMessageChain$Encoder; net/minecraft/network/chat/LocalChatSession/createMessageEncoder (Ljava/util/UUID;)Lnet/minecraft/network/chat/SignedMessageChain$Encoder; +MD: net/minecraft/network/chat/LocalChatSession/toString ()Ljava/lang/String; net/minecraft/network/chat/LocalChatSession/toString ()Ljava/lang/String; +MD: net/minecraft/network/chat/MessageSignature/ ()V net/minecraft/network/chat/MessageSignature/ ()V +MD: net/minecraft/network/chat/MessageSignature/ ([B)V net/minecraft/network/chat/MessageSignature/ ([B)V +MD: net/minecraft/network/chat/MessageSignature/equals (Ljava/lang/Object;)Z net/minecraft/network/chat/MessageSignature/equals (Ljava/lang/Object;)Z +MD: net/minecraft/network/chat/MessageSignature/f_240884_ ()[B net/minecraft/network/chat/MessageSignature/bytes ()[B +MD: net/minecraft/network/chat/MessageSignature/hashCode ()I net/minecraft/network/chat/MessageSignature/hashCode ()I +MD: net/minecraft/network/chat/MessageSignature/m_241929_ ()Ljava/nio/ByteBuffer; net/minecraft/network/chat/MessageSignature/asByteBuffer ()Ljava/nio/ByteBuffer; +MD: net/minecraft/network/chat/MessageSignature/m_245099_ (Lnet/minecraft/network/FriendlyByteBuf;)Lnet/minecraft/network/chat/MessageSignature; net/minecraft/network/chat/MessageSignature/read (Lnet/minecraft/network/FriendlyByteBuf;)Lnet/minecraft/network/chat/MessageSignature; +MD: net/minecraft/network/chat/MessageSignature/m_245457_ (Lnet/minecraft/util/SignatureValidator;Lnet/minecraft/util/SignatureUpdater;)Z net/minecraft/network/chat/MessageSignature/verify (Lnet/minecraft/util/SignatureValidator;Lnet/minecraft/util/SignatureUpdater;)Z +MD: net/minecraft/network/chat/MessageSignature/m_246050_ (Lnet/minecraft/network/FriendlyByteBuf;Lnet/minecraft/network/chat/MessageSignature;)V net/minecraft/network/chat/MessageSignature/write (Lnet/minecraft/network/FriendlyByteBuf;Lnet/minecraft/network/chat/MessageSignature;)V +MD: net/minecraft/network/chat/MessageSignature/m_252849_ (Lnet/minecraft/network/chat/MessageSignatureCache;)Lnet/minecraft/network/chat/MessageSignature$Packed; net/minecraft/network/chat/MessageSignature/pack (Lnet/minecraft/network/chat/MessageSignatureCache;)Lnet/minecraft/network/chat/MessageSignature$Packed; +MD: net/minecraft/network/chat/MessageSignature/toString ()Ljava/lang/String; net/minecraft/network/chat/MessageSignature/toString ()Ljava/lang/String; +MD: net/minecraft/network/chat/MessageSignature$Packed/ (I)V net/minecraft/network/chat/MessageSignature$Packed/ (I)V +MD: net/minecraft/network/chat/MessageSignature$Packed/ (Lnet/minecraft/network/chat/MessageSignature;)V net/minecraft/network/chat/MessageSignature$Packed/ (Lnet/minecraft/network/chat/MessageSignature;)V +MD: net/minecraft/network/chat/MessageSignature$Packed/ (ILnet/minecraft/network/chat/MessageSignature;)V net/minecraft/network/chat/MessageSignature$Packed/ (ILnet/minecraft/network/chat/MessageSignature;)V +MD: net/minecraft/network/chat/MessageSignature$Packed/equals (Ljava/lang/Object;)Z net/minecraft/network/chat/MessageSignature$Packed/equals (Ljava/lang/Object;)Z +MD: net/minecraft/network/chat/MessageSignature$Packed/f_244020_ ()Lnet/minecraft/network/chat/MessageSignature; net/minecraft/network/chat/MessageSignature$Packed/fullSignature ()Lnet/minecraft/network/chat/MessageSignature; +MD: net/minecraft/network/chat/MessageSignature$Packed/f_244111_ ()I net/minecraft/network/chat/MessageSignature$Packed/id ()I +MD: net/minecraft/network/chat/MessageSignature$Packed/hashCode ()I net/minecraft/network/chat/MessageSignature$Packed/hashCode ()I +MD: net/minecraft/network/chat/MessageSignature$Packed/m_246314_ (Lnet/minecraft/network/FriendlyByteBuf;Lnet/minecraft/network/chat/MessageSignature$Packed;)V net/minecraft/network/chat/MessageSignature$Packed/write (Lnet/minecraft/network/FriendlyByteBuf;Lnet/minecraft/network/chat/MessageSignature$Packed;)V +MD: net/minecraft/network/chat/MessageSignature$Packed/m_246521_ (Lnet/minecraft/network/FriendlyByteBuf;)Lnet/minecraft/network/chat/MessageSignature$Packed; net/minecraft/network/chat/MessageSignature$Packed/read (Lnet/minecraft/network/FriendlyByteBuf;)Lnet/minecraft/network/chat/MessageSignature$Packed; +MD: net/minecraft/network/chat/MessageSignature$Packed/m_253223_ (Lnet/minecraft/network/chat/MessageSignatureCache;)Ljava/util/Optional; net/minecraft/network/chat/MessageSignature$Packed/unpack (Lnet/minecraft/network/chat/MessageSignatureCache;)Ljava/util/Optional; +MD: net/minecraft/network/chat/MessageSignature$Packed/toString ()Ljava/lang/String; net/minecraft/network/chat/MessageSignature$Packed/toString ()Ljava/lang/String; +MD: net/minecraft/network/chat/MessageSignatureCache/ (I)V net/minecraft/network/chat/MessageSignatureCache/ (I)V +MD: net/minecraft/network/chat/MessageSignatureCache/m_245729_ (Ljava/util/ArrayDeque;)V net/minecraft/network/chat/MessageSignatureCache/push (Ljava/util/ArrayDeque;)V +MD: net/minecraft/network/chat/MessageSignatureCache/m_246417_ (Ljava/util/List;)V net/minecraft/network/chat/MessageSignatureCache/push (Ljava/util/List;)V +MD: net/minecraft/network/chat/MessageSignatureCache/m_246587_ ()Lnet/minecraft/network/chat/MessageSignatureCache; net/minecraft/network/chat/MessageSignatureCache/createDefault ()Lnet/minecraft/network/chat/MessageSignatureCache; +MD: net/minecraft/network/chat/MessageSignatureCache/m_247208_ (Lnet/minecraft/network/chat/PlayerChatMessage;)V net/minecraft/network/chat/MessageSignatureCache/push (Lnet/minecraft/network/chat/PlayerChatMessage;)V +MD: net/minecraft/network/chat/MessageSignatureCache/m_252764_ (Lnet/minecraft/network/chat/MessageSignature;)I net/minecraft/network/chat/MessageSignatureCache/pack (Lnet/minecraft/network/chat/MessageSignature;)I +MD: net/minecraft/network/chat/MessageSignatureCache/m_252914_ (I)Lnet/minecraft/network/chat/MessageSignature; net/minecraft/network/chat/MessageSignatureCache/unpack (I)Lnet/minecraft/network/chat/MessageSignature; +MD: net/minecraft/network/chat/MutableComponent/ (Lnet/minecraft/network/chat/ComponentContents;Ljava/util/List;Lnet/minecraft/network/chat/Style;)V net/minecraft/network/chat/MutableComponent/ (Lnet/minecraft/network/chat/ComponentContents;Ljava/util/List;Lnet/minecraft/network/chat/Style;)V +MD: net/minecraft/network/chat/MutableComponent/equals (Ljava/lang/Object;)Z net/minecraft/network/chat/MutableComponent/equals (Ljava/lang/Object;)Z +MD: net/minecraft/network/chat/MutableComponent/hashCode ()I net/minecraft/network/chat/MutableComponent/hashCode ()I +MD: net/minecraft/network/chat/MutableComponent/m_130938_ (Ljava/util/function/UnaryOperator;)Lnet/minecraft/network/chat/MutableComponent; net/minecraft/network/chat/MutableComponent/withStyle (Ljava/util/function/UnaryOperator;)Lnet/minecraft/network/chat/MutableComponent; +MD: net/minecraft/network/chat/MutableComponent/m_130940_ (Lnet/minecraft/ChatFormatting;)Lnet/minecraft/network/chat/MutableComponent; net/minecraft/network/chat/MutableComponent/withStyle (Lnet/minecraft/ChatFormatting;)Lnet/minecraft/network/chat/MutableComponent; +MD: net/minecraft/network/chat/MutableComponent/m_130944_ ([Lnet/minecraft/ChatFormatting;)Lnet/minecraft/network/chat/MutableComponent; net/minecraft/network/chat/MutableComponent/withStyle ([Lnet/minecraft/ChatFormatting;)Lnet/minecraft/network/chat/MutableComponent; +MD: net/minecraft/network/chat/MutableComponent/m_130946_ (Ljava/lang/String;)Lnet/minecraft/network/chat/MutableComponent; net/minecraft/network/chat/MutableComponent/append (Ljava/lang/String;)Lnet/minecraft/network/chat/MutableComponent; +MD: net/minecraft/network/chat/MutableComponent/m_130948_ (Lnet/minecraft/network/chat/Style;)Lnet/minecraft/network/chat/MutableComponent; net/minecraft/network/chat/MutableComponent/withStyle (Lnet/minecraft/network/chat/Style;)Lnet/minecraft/network/chat/MutableComponent; +MD: net/minecraft/network/chat/MutableComponent/m_214077_ ()Lnet/minecraft/network/chat/ComponentContents; net/minecraft/network/chat/MutableComponent/getContents ()Lnet/minecraft/network/chat/ComponentContents; +MD: net/minecraft/network/chat/MutableComponent/m_237204_ (Lnet/minecraft/network/chat/ComponentContents;)Lnet/minecraft/network/chat/MutableComponent; net/minecraft/network/chat/MutableComponent/create (Lnet/minecraft/network/chat/ComponentContents;)Lnet/minecraft/network/chat/MutableComponent; +MD: net/minecraft/network/chat/MutableComponent/m_6270_ (Lnet/minecraft/network/chat/Style;)Lnet/minecraft/network/chat/MutableComponent; net/minecraft/network/chat/MutableComponent/setStyle (Lnet/minecraft/network/chat/Style;)Lnet/minecraft/network/chat/MutableComponent; +MD: net/minecraft/network/chat/MutableComponent/m_7220_ (Lnet/minecraft/network/chat/Component;)Lnet/minecraft/network/chat/MutableComponent; net/minecraft/network/chat/MutableComponent/append (Lnet/minecraft/network/chat/Component;)Lnet/minecraft/network/chat/MutableComponent; +MD: net/minecraft/network/chat/MutableComponent/m_7360_ ()Ljava/util/List; net/minecraft/network/chat/MutableComponent/getSiblings ()Ljava/util/List; +MD: net/minecraft/network/chat/MutableComponent/m_7383_ ()Lnet/minecraft/network/chat/Style; net/minecraft/network/chat/MutableComponent/getStyle ()Lnet/minecraft/network/chat/Style; +MD: net/minecraft/network/chat/MutableComponent/m_7532_ ()Lnet/minecraft/util/FormattedCharSequence; net/minecraft/network/chat/MutableComponent/getVisualOrderText ()Lnet/minecraft/util/FormattedCharSequence; +MD: net/minecraft/network/chat/MutableComponent/toString ()Ljava/lang/String; net/minecraft/network/chat/MutableComponent/toString ()Ljava/lang/String; +MD: net/minecraft/network/chat/OutgoingChatMessage/m_245730_ ()Lnet/minecraft/network/chat/Component; net/minecraft/network/chat/OutgoingChatMessage/content ()Lnet/minecraft/network/chat/Component; +MD: net/minecraft/network/chat/OutgoingChatMessage/m_246195_ (Lnet/minecraft/server/level/ServerPlayer;ZLnet/minecraft/network/chat/ChatType$Bound;)V net/minecraft/network/chat/OutgoingChatMessage/sendToPlayer (Lnet/minecraft/server/level/ServerPlayer;ZLnet/minecraft/network/chat/ChatType$Bound;)V +MD: net/minecraft/network/chat/OutgoingChatMessage/m_247282_ (Lnet/minecraft/network/chat/PlayerChatMessage;)Lnet/minecraft/network/chat/OutgoingChatMessage; net/minecraft/network/chat/OutgoingChatMessage/create (Lnet/minecraft/network/chat/PlayerChatMessage;)Lnet/minecraft/network/chat/OutgoingChatMessage; +MD: net/minecraft/network/chat/OutgoingChatMessage$Disguised/ (Lnet/minecraft/network/chat/Component;)V net/minecraft/network/chat/OutgoingChatMessage$Disguised/ (Lnet/minecraft/network/chat/Component;)V +MD: net/minecraft/network/chat/OutgoingChatMessage$Disguised/equals (Ljava/lang/Object;)Z net/minecraft/network/chat/OutgoingChatMessage$Disguised/equals (Ljava/lang/Object;)Z +MD: net/minecraft/network/chat/OutgoingChatMessage$Disguised/hashCode ()I net/minecraft/network/chat/OutgoingChatMessage$Disguised/hashCode ()I +MD: net/minecraft/network/chat/OutgoingChatMessage$Disguised/m_245730_ ()Lnet/minecraft/network/chat/Component; net/minecraft/network/chat/OutgoingChatMessage$Disguised/content ()Lnet/minecraft/network/chat/Component; +MD: net/minecraft/network/chat/OutgoingChatMessage$Disguised/m_246195_ (Lnet/minecraft/server/level/ServerPlayer;ZLnet/minecraft/network/chat/ChatType$Bound;)V net/minecraft/network/chat/OutgoingChatMessage$Disguised/sendToPlayer (Lnet/minecraft/server/level/ServerPlayer;ZLnet/minecraft/network/chat/ChatType$Bound;)V +MD: net/minecraft/network/chat/OutgoingChatMessage$Disguised/toString ()Ljava/lang/String; net/minecraft/network/chat/OutgoingChatMessage$Disguised/toString ()Ljava/lang/String; +MD: net/minecraft/network/chat/OutgoingChatMessage$Player/ (Lnet/minecraft/network/chat/PlayerChatMessage;)V net/minecraft/network/chat/OutgoingChatMessage$Player/ (Lnet/minecraft/network/chat/PlayerChatMessage;)V +MD: net/minecraft/network/chat/OutgoingChatMessage$Player/equals (Ljava/lang/Object;)Z net/minecraft/network/chat/OutgoingChatMessage$Player/equals (Ljava/lang/Object;)Z +MD: net/minecraft/network/chat/OutgoingChatMessage$Player/f_243697_ ()Lnet/minecraft/network/chat/PlayerChatMessage; net/minecraft/network/chat/OutgoingChatMessage$Player/message ()Lnet/minecraft/network/chat/PlayerChatMessage; +MD: net/minecraft/network/chat/OutgoingChatMessage$Player/hashCode ()I net/minecraft/network/chat/OutgoingChatMessage$Player/hashCode ()I +MD: net/minecraft/network/chat/OutgoingChatMessage$Player/m_245730_ ()Lnet/minecraft/network/chat/Component; net/minecraft/network/chat/OutgoingChatMessage$Player/content ()Lnet/minecraft/network/chat/Component; +MD: net/minecraft/network/chat/OutgoingChatMessage$Player/m_246195_ (Lnet/minecraft/server/level/ServerPlayer;ZLnet/minecraft/network/chat/ChatType$Bound;)V net/minecraft/network/chat/OutgoingChatMessage$Player/sendToPlayer (Lnet/minecraft/server/level/ServerPlayer;ZLnet/minecraft/network/chat/ChatType$Bound;)V +MD: net/minecraft/network/chat/OutgoingChatMessage$Player/toString ()Ljava/lang/String; net/minecraft/network/chat/OutgoingChatMessage$Player/toString ()Ljava/lang/String; +MD: net/minecraft/network/chat/PlayerChatMessage/ ()V net/minecraft/network/chat/PlayerChatMessage/ ()V +MD: net/minecraft/network/chat/PlayerChatMessage/ (Lnet/minecraft/network/chat/SignedMessageLink;Lnet/minecraft/network/chat/MessageSignature;Lnet/minecraft/network/chat/SignedMessageBody;Lnet/minecraft/network/chat/Component;Lnet/minecraft/network/chat/FilterMask;)V net/minecraft/network/chat/PlayerChatMessage/ (Lnet/minecraft/network/chat/SignedMessageLink;Lnet/minecraft/network/chat/MessageSignature;Lnet/minecraft/network/chat/SignedMessageBody;Lnet/minecraft/network/chat/Component;Lnet/minecraft/network/chat/FilterMask;)V +MD: net/minecraft/network/chat/PlayerChatMessage/equals (Ljava/lang/Object;)Z net/minecraft/network/chat/PlayerChatMessage/equals (Ljava/lang/Object;)Z +MD: net/minecraft/network/chat/PlayerChatMessage/f_237215_ ()Lnet/minecraft/network/chat/Component; net/minecraft/network/chat/PlayerChatMessage/unsignedContent ()Lnet/minecraft/network/chat/Component; +MD: net/minecraft/network/chat/PlayerChatMessage/f_240885_ ()Lnet/minecraft/network/chat/SignedMessageBody; net/minecraft/network/chat/PlayerChatMessage/signedBody ()Lnet/minecraft/network/chat/SignedMessageBody; +MD: net/minecraft/network/chat/PlayerChatMessage/f_242992_ ()Lnet/minecraft/network/chat/FilterMask; net/minecraft/network/chat/PlayerChatMessage/filterMask ()Lnet/minecraft/network/chat/FilterMask; +MD: net/minecraft/network/chat/PlayerChatMessage/f_243882_ ()Lnet/minecraft/network/chat/SignedMessageLink; net/minecraft/network/chat/PlayerChatMessage/link ()Lnet/minecraft/network/chat/SignedMessageLink; +MD: net/minecraft/network/chat/PlayerChatMessage/f_244279_ ()Lnet/minecraft/network/chat/MessageSignature; net/minecraft/network/chat/PlayerChatMessage/signature ()Lnet/minecraft/network/chat/MessageSignature; +MD: net/minecraft/network/chat/PlayerChatMessage/hashCode ()I net/minecraft/network/chat/PlayerChatMessage/hashCode ()I +MD: net/minecraft/network/chat/PlayerChatMessage/m_239022_ ()Lnet/minecraft/network/chat/PlayerChatMessage; net/minecraft/network/chat/PlayerChatMessage/removeUnsignedContent ()Lnet/minecraft/network/chat/PlayerChatMessage; +MD: net/minecraft/network/chat/PlayerChatMessage/m_240414_ (Ljava/time/Instant;)Z net/minecraft/network/chat/PlayerChatMessage/hasExpiredClient (Ljava/time/Instant;)Z +MD: net/minecraft/network/chat/PlayerChatMessage/m_240431_ (Ljava/time/Instant;)Z net/minecraft/network/chat/PlayerChatMessage/hasExpiredServer (Ljava/time/Instant;)Z +MD: net/minecraft/network/chat/PlayerChatMessage/m_241064_ ()J net/minecraft/network/chat/PlayerChatMessage/salt ()J +MD: net/minecraft/network/chat/PlayerChatMessage/m_241109_ ()Ljava/time/Instant; net/minecraft/network/chat/PlayerChatMessage/timeStamp ()Ljava/time/Instant; +MD: net/minecraft/network/chat/PlayerChatMessage/m_241121_ (Lnet/minecraft/util/SignatureValidator;)Z net/minecraft/network/chat/PlayerChatMessage/verify (Lnet/minecraft/util/SignatureValidator;)Z +MD: net/minecraft/network/chat/PlayerChatMessage/m_241956_ (Lnet/minecraft/network/chat/Component;)Lnet/minecraft/network/chat/PlayerChatMessage; net/minecraft/network/chat/PlayerChatMessage/withUnsignedContent (Lnet/minecraft/network/chat/Component;)Lnet/minecraft/network/chat/PlayerChatMessage; +MD: net/minecraft/network/chat/PlayerChatMessage/m_243059_ ()Z net/minecraft/network/chat/PlayerChatMessage/isFullyFiltered ()Z +MD: net/minecraft/network/chat/PlayerChatMessage/m_243072_ (Lnet/minecraft/network/chat/FilterMask;)Lnet/minecraft/network/chat/PlayerChatMessage; net/minecraft/network/chat/PlayerChatMessage/filter (Lnet/minecraft/network/chat/FilterMask;)Lnet/minecraft/network/chat/PlayerChatMessage; +MD: net/minecraft/network/chat/PlayerChatMessage/m_243088_ (Ljava/util/UUID;)Z net/minecraft/network/chat/PlayerChatMessage/hasSignatureFrom (Ljava/util/UUID;)Z +MD: net/minecraft/network/chat/PlayerChatMessage/m_243098_ (Z)Lnet/minecraft/network/chat/PlayerChatMessage; net/minecraft/network/chat/PlayerChatMessage/filter (Z)Lnet/minecraft/network/chat/PlayerChatMessage; +MD: net/minecraft/network/chat/PlayerChatMessage/m_245167_ ()Ljava/util/UUID; net/minecraft/network/chat/PlayerChatMessage/sender ()Ljava/util/UUID; +MD: net/minecraft/network/chat/PlayerChatMessage/m_245272_ ()Z net/minecraft/network/chat/PlayerChatMessage/hasSignature ()Z +MD: net/minecraft/network/chat/PlayerChatMessage/m_245322_ (Lnet/minecraft/util/SignatureUpdater$Output;Lnet/minecraft/network/chat/SignedMessageLink;Lnet/minecraft/network/chat/SignedMessageBody;)V net/minecraft/network/chat/PlayerChatMessage/updateSignature (Lnet/minecraft/util/SignatureUpdater$Output;Lnet/minecraft/network/chat/SignedMessageLink;Lnet/minecraft/network/chat/SignedMessageBody;)V +MD: net/minecraft/network/chat/PlayerChatMessage/m_245339_ ()Z net/minecraft/network/chat/PlayerChatMessage/isSystem ()Z +MD: net/minecraft/network/chat/PlayerChatMessage/m_245394_ ()Lnet/minecraft/network/chat/Component; net/minecraft/network/chat/PlayerChatMessage/lambda$decoratedContent$5 ()Lnet/minecraft/network/chat/Component; +MD: net/minecraft/network/chat/PlayerChatMessage/m_245692_ ()Lnet/minecraft/network/chat/Component; net/minecraft/network/chat/PlayerChatMessage/decoratedContent ()Lnet/minecraft/network/chat/Component; +MD: net/minecraft/network/chat/PlayerChatMessage/m_245728_ ()Ljava/lang/String; net/minecraft/network/chat/PlayerChatMessage/signedContent ()Ljava/lang/String; +MD: net/minecraft/network/chat/PlayerChatMessage/m_246814_ (Lnet/minecraft/util/SignatureUpdater$Output;)V net/minecraft/network/chat/PlayerChatMessage/lambda$verify$4 (Lnet/minecraft/util/SignatureUpdater$Output;)V +MD: net/minecraft/network/chat/PlayerChatMessage/m_247306_ (Ljava/lang/String;)Lnet/minecraft/network/chat/PlayerChatMessage; net/minecraft/network/chat/PlayerChatMessage/system (Ljava/lang/String;)Lnet/minecraft/network/chat/PlayerChatMessage; +MD: net/minecraft/network/chat/PlayerChatMessage/m_247615_ (Ljava/util/UUID;Ljava/lang/String;)Lnet/minecraft/network/chat/PlayerChatMessage; net/minecraft/network/chat/PlayerChatMessage/unsigned (Ljava/util/UUID;Ljava/lang/String;)Lnet/minecraft/network/chat/PlayerChatMessage; +MD: net/minecraft/network/chat/PlayerChatMessage/m_252645_ (Lnet/minecraft/network/chat/PlayerChatMessage;)Ljava/util/Optional; net/minecraft/network/chat/PlayerChatMessage/lambda$static$1 (Lnet/minecraft/network/chat/PlayerChatMessage;)Ljava/util/Optional; +MD: net/minecraft/network/chat/PlayerChatMessage/m_252646_ (Lnet/minecraft/network/chat/PlayerChatMessage;)Ljava/util/Optional; net/minecraft/network/chat/PlayerChatMessage/lambda$static$0 (Lnet/minecraft/network/chat/PlayerChatMessage;)Ljava/util/Optional; +MD: net/minecraft/network/chat/PlayerChatMessage/m_252647_ (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/network/chat/PlayerChatMessage/lambda$static$3 (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/network/chat/PlayerChatMessage/m_252648_ (Lnet/minecraft/network/chat/SignedMessageLink;Ljava/util/Optional;Lnet/minecraft/network/chat/SignedMessageBody;Ljava/util/Optional;Lnet/minecraft/network/chat/FilterMask;)Lnet/minecraft/network/chat/PlayerChatMessage; net/minecraft/network/chat/PlayerChatMessage/lambda$static$2 (Lnet/minecraft/network/chat/SignedMessageLink;Ljava/util/Optional;Lnet/minecraft/network/chat/SignedMessageBody;Ljava/util/Optional;Lnet/minecraft/network/chat/FilterMask;)Lnet/minecraft/network/chat/PlayerChatMessage; +MD: net/minecraft/network/chat/PlayerChatMessage/toString ()Ljava/lang/String; net/minecraft/network/chat/PlayerChatMessage/toString ()Ljava/lang/String; +MD: net/minecraft/network/chat/RemoteChatSession/ (Ljava/util/UUID;Lnet/minecraft/world/entity/player/ProfilePublicKey;)V net/minecraft/network/chat/RemoteChatSession/ (Ljava/util/UUID;Lnet/minecraft/world/entity/player/ProfilePublicKey;)V +MD: net/minecraft/network/chat/RemoteChatSession/equals (Ljava/lang/Object;)Z net/minecraft/network/chat/RemoteChatSession/equals (Ljava/lang/Object;)Z +MD: net/minecraft/network/chat/RemoteChatSession/f_243855_ ()Lnet/minecraft/world/entity/player/ProfilePublicKey; net/minecraft/network/chat/RemoteChatSession/profilePublicKey ()Lnet/minecraft/world/entity/player/ProfilePublicKey; +MD: net/minecraft/network/chat/RemoteChatSession/f_244448_ ()Ljava/util/UUID; net/minecraft/network/chat/RemoteChatSession/sessionId ()Ljava/util/UUID; +MD: net/minecraft/network/chat/RemoteChatSession/hashCode ()I net/minecraft/network/chat/RemoteChatSession/hashCode ()I +MD: net/minecraft/network/chat/RemoteChatSession/m_245949_ ()Lnet/minecraft/network/chat/SignedMessageValidator; net/minecraft/network/chat/RemoteChatSession/createMessageValidator ()Lnet/minecraft/network/chat/SignedMessageValidator; +MD: net/minecraft/network/chat/RemoteChatSession/m_245959_ (Ljava/util/UUID;)Lnet/minecraft/network/chat/SignedMessageChain$Decoder; net/minecraft/network/chat/RemoteChatSession/createMessageDecoder (Ljava/util/UUID;)Lnet/minecraft/network/chat/SignedMessageChain$Decoder; +MD: net/minecraft/network/chat/RemoteChatSession/m_245986_ ()Lnet/minecraft/network/chat/RemoteChatSession$Data; net/minecraft/network/chat/RemoteChatSession/asData ()Lnet/minecraft/network/chat/RemoteChatSession$Data; +MD: net/minecraft/network/chat/RemoteChatSession/m_280521_ ()Z net/minecraft/network/chat/RemoteChatSession/hasExpired ()Z +MD: net/minecraft/network/chat/RemoteChatSession/toString ()Ljava/lang/String; net/minecraft/network/chat/RemoteChatSession/toString ()Ljava/lang/String; +MD: net/minecraft/network/chat/RemoteChatSession$Data/ (Ljava/util/UUID;Lnet/minecraft/world/entity/player/ProfilePublicKey$Data;)V net/minecraft/network/chat/RemoteChatSession$Data/ (Ljava/util/UUID;Lnet/minecraft/world/entity/player/ProfilePublicKey$Data;)V +MD: net/minecraft/network/chat/RemoteChatSession$Data/equals (Ljava/lang/Object;)Z net/minecraft/network/chat/RemoteChatSession$Data/equals (Ljava/lang/Object;)Z +MD: net/minecraft/network/chat/RemoteChatSession$Data/f_243937_ ()Lnet/minecraft/world/entity/player/ProfilePublicKey$Data; net/minecraft/network/chat/RemoteChatSession$Data/profilePublicKey ()Lnet/minecraft/world/entity/player/ProfilePublicKey$Data; +MD: net/minecraft/network/chat/RemoteChatSession$Data/f_244232_ ()Ljava/util/UUID; net/minecraft/network/chat/RemoteChatSession$Data/sessionId ()Ljava/util/UUID; +MD: net/minecraft/network/chat/RemoteChatSession$Data/hashCode ()I net/minecraft/network/chat/RemoteChatSession$Data/hashCode ()I +MD: net/minecraft/network/chat/RemoteChatSession$Data/m_246364_ (Lnet/minecraft/network/FriendlyByteBuf;)Lnet/minecraft/network/chat/RemoteChatSession$Data; net/minecraft/network/chat/RemoteChatSession$Data/read (Lnet/minecraft/network/FriendlyByteBuf;)Lnet/minecraft/network/chat/RemoteChatSession$Data; +MD: net/minecraft/network/chat/RemoteChatSession$Data/m_247588_ (Lcom/mojang/authlib/GameProfile;Lnet/minecraft/util/SignatureValidator;Ljava/time/Duration;)Lnet/minecraft/network/chat/RemoteChatSession; net/minecraft/network/chat/RemoteChatSession$Data/validate (Lcom/mojang/authlib/GameProfile;Lnet/minecraft/util/SignatureValidator;Ljava/time/Duration;)Lnet/minecraft/network/chat/RemoteChatSession; +MD: net/minecraft/network/chat/RemoteChatSession$Data/m_247658_ (Lnet/minecraft/network/FriendlyByteBuf;Lnet/minecraft/network/chat/RemoteChatSession$Data;)V net/minecraft/network/chat/RemoteChatSession$Data/write (Lnet/minecraft/network/FriendlyByteBuf;Lnet/minecraft/network/chat/RemoteChatSession$Data;)V +MD: net/minecraft/network/chat/RemoteChatSession$Data/toString ()Ljava/lang/String; net/minecraft/network/chat/RemoteChatSession$Data/toString ()Ljava/lang/String; +MD: net/minecraft/network/chat/SignableCommand/ (Ljava/util/List;)V net/minecraft/network/chat/SignableCommand/ (Ljava/util/List;)V +MD: net/minecraft/network/chat/SignableCommand/equals (Ljava/lang/Object;)Z net/minecraft/network/chat/SignableCommand/equals (Ljava/lang/Object;)Z +MD: net/minecraft/network/chat/SignableCommand/f_244150_ ()Ljava/util/List; net/minecraft/network/chat/SignableCommand/arguments ()Ljava/util/List; +MD: net/minecraft/network/chat/SignableCommand/hashCode ()I net/minecraft/network/chat/SignableCommand/hashCode ()I +MD: net/minecraft/network/chat/SignableCommand/m_246497_ (Lcom/mojang/brigadier/ParseResults;)Lnet/minecraft/network/chat/SignableCommand; net/minecraft/network/chat/SignableCommand/of (Lcom/mojang/brigadier/ParseResults;)Lnet/minecraft/network/chat/SignableCommand; +MD: net/minecraft/network/chat/SignableCommand/m_246854_ (Ljava/lang/String;Lcom/mojang/brigadier/context/CommandContextBuilder;)Ljava/util/List; net/minecraft/network/chat/SignableCommand/collectArguments (Ljava/lang/String;Lcom/mojang/brigadier/context/CommandContextBuilder;)Ljava/util/List; +MD: net/minecraft/network/chat/SignableCommand/toString ()Ljava/lang/String; net/minecraft/network/chat/SignableCommand/toString ()Ljava/lang/String; +MD: net/minecraft/network/chat/SignableCommand$Argument/ (Lcom/mojang/brigadier/tree/ArgumentCommandNode;Ljava/lang/String;)V net/minecraft/network/chat/SignableCommand$Argument/ (Lcom/mojang/brigadier/tree/ArgumentCommandNode;Ljava/lang/String;)V +MD: net/minecraft/network/chat/SignableCommand$Argument/equals (Ljava/lang/Object;)Z net/minecraft/network/chat/SignableCommand$Argument/equals (Ljava/lang/Object;)Z +MD: net/minecraft/network/chat/SignableCommand$Argument/f_243965_ ()Lcom/mojang/brigadier/tree/ArgumentCommandNode; net/minecraft/network/chat/SignableCommand$Argument/node ()Lcom/mojang/brigadier/tree/ArgumentCommandNode; +MD: net/minecraft/network/chat/SignableCommand$Argument/f_244218_ ()Ljava/lang/String; net/minecraft/network/chat/SignableCommand$Argument/value ()Ljava/lang/String; +MD: net/minecraft/network/chat/SignableCommand$Argument/hashCode ()I net/minecraft/network/chat/SignableCommand$Argument/hashCode ()I +MD: net/minecraft/network/chat/SignableCommand$Argument/m_246038_ ()Ljava/lang/String; net/minecraft/network/chat/SignableCommand$Argument/name ()Ljava/lang/String; +MD: net/minecraft/network/chat/SignableCommand$Argument/toString ()Ljava/lang/String; net/minecraft/network/chat/SignableCommand$Argument/toString ()Ljava/lang/String; +MD: net/minecraft/network/chat/SignedMessageBody/ ()V net/minecraft/network/chat/SignedMessageBody/ ()V +MD: net/minecraft/network/chat/SignedMessageBody/ (Ljava/lang/String;Ljava/time/Instant;JLnet/minecraft/network/chat/LastSeenMessages;)V net/minecraft/network/chat/SignedMessageBody/ (Ljava/lang/String;Ljava/time/Instant;JLnet/minecraft/network/chat/LastSeenMessages;)V +MD: net/minecraft/network/chat/SignedMessageBody/equals (Ljava/lang/Object;)Z net/minecraft/network/chat/SignedMessageBody/equals (Ljava/lang/Object;)Z +MD: net/minecraft/network/chat/SignedMessageBody/f_240856_ ()Ljava/lang/String; net/minecraft/network/chat/SignedMessageBody/content ()Ljava/lang/String; +MD: net/minecraft/network/chat/SignedMessageBody/f_240863_ ()Ljava/time/Instant; net/minecraft/network/chat/SignedMessageBody/timeStamp ()Ljava/time/Instant; +MD: net/minecraft/network/chat/SignedMessageBody/f_240868_ ()Lnet/minecraft/network/chat/LastSeenMessages; net/minecraft/network/chat/SignedMessageBody/lastSeen ()Lnet/minecraft/network/chat/LastSeenMessages; +MD: net/minecraft/network/chat/SignedMessageBody/f_240873_ ()J net/minecraft/network/chat/SignedMessageBody/salt ()J +MD: net/minecraft/network/chat/SignedMessageBody/hashCode ()I net/minecraft/network/chat/SignedMessageBody/hashCode ()I +MD: net/minecraft/network/chat/SignedMessageBody/m_245051_ (Lnet/minecraft/util/SignatureUpdater$Output;)V net/minecraft/network/chat/SignedMessageBody/updateSignature (Lnet/minecraft/util/SignatureUpdater$Output;)V +MD: net/minecraft/network/chat/SignedMessageBody/m_247681_ (Ljava/lang/String;)Lnet/minecraft/network/chat/SignedMessageBody; net/minecraft/network/chat/SignedMessageBody/unsigned (Ljava/lang/String;)Lnet/minecraft/network/chat/SignedMessageBody; +MD: net/minecraft/network/chat/SignedMessageBody/m_252875_ (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/network/chat/SignedMessageBody/lambda$static$0 (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/network/chat/SignedMessageBody/m_253217_ (Lnet/minecraft/network/chat/MessageSignatureCache;)Lnet/minecraft/network/chat/SignedMessageBody$Packed; net/minecraft/network/chat/SignedMessageBody/pack (Lnet/minecraft/network/chat/MessageSignatureCache;)Lnet/minecraft/network/chat/SignedMessageBody$Packed; +MD: net/minecraft/network/chat/SignedMessageBody/toString ()Ljava/lang/String; net/minecraft/network/chat/SignedMessageBody/toString ()Ljava/lang/String; +MD: net/minecraft/network/chat/SignedMessageBody$Packed/ (Ljava/lang/String;Ljava/time/Instant;JLnet/minecraft/network/chat/LastSeenMessages$Packed;)V net/minecraft/network/chat/SignedMessageBody$Packed/ (Ljava/lang/String;Ljava/time/Instant;JLnet/minecraft/network/chat/LastSeenMessages$Packed;)V +MD: net/minecraft/network/chat/SignedMessageBody$Packed/ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/chat/SignedMessageBody$Packed/ (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/chat/SignedMessageBody$Packed/equals (Ljava/lang/Object;)Z net/minecraft/network/chat/SignedMessageBody$Packed/equals (Ljava/lang/Object;)Z +MD: net/minecraft/network/chat/SignedMessageBody$Packed/f_243660_ ()Ljava/lang/String; net/minecraft/network/chat/SignedMessageBody$Packed/content ()Ljava/lang/String; +MD: net/minecraft/network/chat/SignedMessageBody$Packed/f_243790_ ()J net/minecraft/network/chat/SignedMessageBody$Packed/salt ()J +MD: net/minecraft/network/chat/SignedMessageBody$Packed/f_244137_ ()Lnet/minecraft/network/chat/LastSeenMessages$Packed; net/minecraft/network/chat/SignedMessageBody$Packed/lastSeen ()Lnet/minecraft/network/chat/LastSeenMessages$Packed; +MD: net/minecraft/network/chat/SignedMessageBody$Packed/f_244314_ ()Ljava/time/Instant; net/minecraft/network/chat/SignedMessageBody$Packed/timeStamp ()Ljava/time/Instant; +MD: net/minecraft/network/chat/SignedMessageBody$Packed/hashCode ()I net/minecraft/network/chat/SignedMessageBody$Packed/hashCode ()I +MD: net/minecraft/network/chat/SignedMessageBody$Packed/m_245470_ (Lnet/minecraft/network/chat/LastSeenMessages;)Lnet/minecraft/network/chat/SignedMessageBody; net/minecraft/network/chat/SignedMessageBody$Packed/lambda$unpack$0 (Lnet/minecraft/network/chat/LastSeenMessages;)Lnet/minecraft/network/chat/SignedMessageBody; +MD: net/minecraft/network/chat/SignedMessageBody$Packed/m_247637_ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/chat/SignedMessageBody$Packed/write (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/chat/SignedMessageBody$Packed/m_252762_ (Lnet/minecraft/network/chat/MessageSignatureCache;)Ljava/util/Optional; net/minecraft/network/chat/SignedMessageBody$Packed/unpack (Lnet/minecraft/network/chat/MessageSignatureCache;)Ljava/util/Optional; +MD: net/minecraft/network/chat/SignedMessageBody$Packed/toString ()Ljava/lang/String; net/minecraft/network/chat/SignedMessageBody$Packed/toString ()Ljava/lang/String; +MD: net/minecraft/network/chat/SignedMessageChain/ ()V net/minecraft/network/chat/SignedMessageChain/ ()V +MD: net/minecraft/network/chat/SignedMessageChain/ (Ljava/util/UUID;Ljava/util/UUID;)V net/minecraft/network/chat/SignedMessageChain/ (Ljava/util/UUID;Ljava/util/UUID;)V +MD: net/minecraft/network/chat/SignedMessageChain/m_244794_ (Lnet/minecraft/world/entity/player/ProfilePublicKey;Lnet/minecraft/util/SignatureValidator;Lnet/minecraft/network/chat/MessageSignature;Lnet/minecraft/network/chat/SignedMessageBody;)Lnet/minecraft/network/chat/PlayerChatMessage; net/minecraft/network/chat/SignedMessageChain/lambda$decoder$2 (Lnet/minecraft/world/entity/player/ProfilePublicKey;Lnet/minecraft/util/SignatureValidator;Lnet/minecraft/network/chat/MessageSignature;Lnet/minecraft/network/chat/SignedMessageBody;)Lnet/minecraft/network/chat/PlayerChatMessage; +MD: net/minecraft/network/chat/SignedMessageChain/m_244795_ (Lnet/minecraft/network/chat/SignedMessageLink;Lnet/minecraft/network/chat/SignedMessageBody;Lnet/minecraft/util/SignatureUpdater$Output;)V net/minecraft/network/chat/SignedMessageChain/lambda$encoder$0 (Lnet/minecraft/network/chat/SignedMessageLink;Lnet/minecraft/network/chat/SignedMessageBody;Lnet/minecraft/util/SignatureUpdater$Output;)V +MD: net/minecraft/network/chat/SignedMessageChain/m_244796_ (Lnet/minecraft/util/Signer;Lnet/minecraft/network/chat/SignedMessageBody;)Lnet/minecraft/network/chat/MessageSignature; net/minecraft/network/chat/SignedMessageChain/lambda$encoder$1 (Lnet/minecraft/util/Signer;Lnet/minecraft/network/chat/SignedMessageBody;)Lnet/minecraft/network/chat/MessageSignature; +MD: net/minecraft/network/chat/SignedMessageChain/m_246515_ ()Lnet/minecraft/network/chat/SignedMessageLink; net/minecraft/network/chat/SignedMessageChain/advanceLink ()Lnet/minecraft/network/chat/SignedMessageLink; +MD: net/minecraft/network/chat/SignedMessageChain/m_247027_ (Lnet/minecraft/util/Signer;)Lnet/minecraft/network/chat/SignedMessageChain$Encoder; net/minecraft/network/chat/SignedMessageChain/encoder (Lnet/minecraft/util/Signer;)Lnet/minecraft/network/chat/SignedMessageChain$Encoder; +MD: net/minecraft/network/chat/SignedMessageChain/m_247594_ (Lnet/minecraft/world/entity/player/ProfilePublicKey;)Lnet/minecraft/network/chat/SignedMessageChain$Decoder; net/minecraft/network/chat/SignedMessageChain/decoder (Lnet/minecraft/world/entity/player/ProfilePublicKey;)Lnet/minecraft/network/chat/SignedMessageChain$Decoder; +MD: net/minecraft/network/chat/SignedMessageChain$DecodeException/ (Lnet/minecraft/network/chat/Component;Z)V net/minecraft/network/chat/SignedMessageChain$DecodeException/ (Lnet/minecraft/network/chat/Component;Z)V +MD: net/minecraft/network/chat/SignedMessageChain$DecodeException/m_246459_ ()Z net/minecraft/network/chat/SignedMessageChain$DecodeException/shouldDisconnect ()Z +MD: net/minecraft/network/chat/SignedMessageChain$Decoder/ ()V net/minecraft/network/chat/SignedMessageChain$Decoder/ ()V +MD: net/minecraft/network/chat/SignedMessageChain$Decoder/m_240945_ (Lnet/minecraft/network/chat/MessageSignature;Lnet/minecraft/network/chat/SignedMessageBody;)Lnet/minecraft/network/chat/PlayerChatMessage; net/minecraft/network/chat/SignedMessageChain$Decoder/unpack (Lnet/minecraft/network/chat/MessageSignature;Lnet/minecraft/network/chat/SignedMessageBody;)Lnet/minecraft/network/chat/PlayerChatMessage; +MD: net/minecraft/network/chat/SignedMessageChain$Decoder/m_244797_ (Ljava/util/UUID;Lnet/minecraft/network/chat/MessageSignature;Lnet/minecraft/network/chat/SignedMessageBody;)Lnet/minecraft/network/chat/PlayerChatMessage; net/minecraft/network/chat/SignedMessageChain$Decoder/lambda$unsigned$1 (Ljava/util/UUID;Lnet/minecraft/network/chat/MessageSignature;Lnet/minecraft/network/chat/SignedMessageBody;)Lnet/minecraft/network/chat/PlayerChatMessage; +MD: net/minecraft/network/chat/SignedMessageChain$Decoder/m_246683_ (Ljava/util/UUID;)Lnet/minecraft/network/chat/SignedMessageChain$Decoder; net/minecraft/network/chat/SignedMessageChain$Decoder/unsigned (Ljava/util/UUID;)Lnet/minecraft/network/chat/SignedMessageChain$Decoder; +MD: net/minecraft/network/chat/SignedMessageChain$Decoder/m_252649_ (Lnet/minecraft/network/chat/MessageSignature;Lnet/minecraft/network/chat/SignedMessageBody;)Lnet/minecraft/network/chat/PlayerChatMessage; net/minecraft/network/chat/SignedMessageChain$Decoder/lambda$static$0 (Lnet/minecraft/network/chat/MessageSignature;Lnet/minecraft/network/chat/SignedMessageBody;)Lnet/minecraft/network/chat/PlayerChatMessage; +MD: net/minecraft/network/chat/SignedMessageChain$Encoder/ ()V net/minecraft/network/chat/SignedMessageChain$Encoder/ ()V +MD: net/minecraft/network/chat/SignedMessageChain$Encoder/m_240988_ (Lnet/minecraft/network/chat/SignedMessageBody;)Lnet/minecraft/network/chat/MessageSignature; net/minecraft/network/chat/SignedMessageChain$Encoder/pack (Lnet/minecraft/network/chat/SignedMessageBody;)Lnet/minecraft/network/chat/MessageSignature; +MD: net/minecraft/network/chat/SignedMessageChain$Encoder/m_245588_ (Lnet/minecraft/network/chat/SignedMessageBody;)Lnet/minecraft/network/chat/MessageSignature; net/minecraft/network/chat/SignedMessageChain$Encoder/lambda$static$0 (Lnet/minecraft/network/chat/SignedMessageBody;)Lnet/minecraft/network/chat/MessageSignature; +MD: net/minecraft/network/chat/SignedMessageLink/ ()V net/minecraft/network/chat/SignedMessageLink/ ()V +MD: net/minecraft/network/chat/SignedMessageLink/ (ILjava/util/UUID;Ljava/util/UUID;)V net/minecraft/network/chat/SignedMessageLink/ (ILjava/util/UUID;Ljava/util/UUID;)V +MD: net/minecraft/network/chat/SignedMessageLink/equals (Ljava/lang/Object;)Z net/minecraft/network/chat/SignedMessageLink/equals (Ljava/lang/Object;)Z +MD: net/minecraft/network/chat/SignedMessageLink/f_244066_ ()I net/minecraft/network/chat/SignedMessageLink/index ()I +MD: net/minecraft/network/chat/SignedMessageLink/f_244370_ ()Ljava/util/UUID; net/minecraft/network/chat/SignedMessageLink/sessionId ()Ljava/util/UUID; +MD: net/minecraft/network/chat/SignedMessageLink/f_244443_ ()Ljava/util/UUID; net/minecraft/network/chat/SignedMessageLink/sender ()Ljava/util/UUID; +MD: net/minecraft/network/chat/SignedMessageLink/hashCode ()I net/minecraft/network/chat/SignedMessageLink/hashCode ()I +MD: net/minecraft/network/chat/SignedMessageLink/m_245110_ (Ljava/util/UUID;Ljava/util/UUID;)Lnet/minecraft/network/chat/SignedMessageLink; net/minecraft/network/chat/SignedMessageLink/root (Ljava/util/UUID;Ljava/util/UUID;)Lnet/minecraft/network/chat/SignedMessageLink; +MD: net/minecraft/network/chat/SignedMessageLink/m_245146_ ()Lnet/minecraft/network/chat/SignedMessageLink; net/minecraft/network/chat/SignedMessageLink/advance ()Lnet/minecraft/network/chat/SignedMessageLink; +MD: net/minecraft/network/chat/SignedMessageLink/m_245187_ (Ljava/util/UUID;)Lnet/minecraft/network/chat/SignedMessageLink; net/minecraft/network/chat/SignedMessageLink/unsigned (Ljava/util/UUID;)Lnet/minecraft/network/chat/SignedMessageLink; +MD: net/minecraft/network/chat/SignedMessageLink/m_246959_ (Lnet/minecraft/network/chat/SignedMessageLink;)Z net/minecraft/network/chat/SignedMessageLink/isDescendantOf (Lnet/minecraft/network/chat/SignedMessageLink;)Z +MD: net/minecraft/network/chat/SignedMessageLink/m_247193_ (Lnet/minecraft/util/SignatureUpdater$Output;)V net/minecraft/network/chat/SignedMessageLink/updateSignature (Lnet/minecraft/util/SignatureUpdater$Output;)V +MD: net/minecraft/network/chat/SignedMessageLink/m_253264_ (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/network/chat/SignedMessageLink/lambda$static$0 (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/network/chat/SignedMessageLink/toString ()Ljava/lang/String; net/minecraft/network/chat/SignedMessageLink/toString ()Ljava/lang/String; +MD: net/minecraft/network/chat/SignedMessageValidator/ ()V net/minecraft/network/chat/SignedMessageValidator/ ()V +MD: net/minecraft/network/chat/SignedMessageValidator/m_241126_ (Lnet/minecraft/network/chat/PlayerChatMessage;)Z net/minecraft/network/chat/SignedMessageValidator/updateAndValidate (Lnet/minecraft/network/chat/PlayerChatMessage;)Z +MD: net/minecraft/network/chat/SignedMessageValidator/m_245862_ (Lnet/minecraft/network/chat/PlayerChatMessage;)Z net/minecraft/network/chat/SignedMessageValidator/lambda$static$0 (Lnet/minecraft/network/chat/PlayerChatMessage;)Z +MD: net/minecraft/network/chat/SignedMessageValidator/m_247555_ (Lnet/minecraft/network/chat/PlayerChatMessage;)Z net/minecraft/network/chat/SignedMessageValidator/lambda$static$1 (Lnet/minecraft/network/chat/PlayerChatMessage;)Z +MD: net/minecraft/network/chat/SignedMessageValidator$KeyBased/ (Lnet/minecraft/util/SignatureValidator;)V net/minecraft/network/chat/SignedMessageValidator$KeyBased/ (Lnet/minecraft/util/SignatureValidator;)V +MD: net/minecraft/network/chat/SignedMessageValidator$KeyBased/m_241126_ (Lnet/minecraft/network/chat/PlayerChatMessage;)Z net/minecraft/network/chat/SignedMessageValidator$KeyBased/updateAndValidate (Lnet/minecraft/network/chat/PlayerChatMessage;)Z +MD: net/minecraft/network/chat/SignedMessageValidator$KeyBased/m_247180_ (Lnet/minecraft/network/chat/PlayerChatMessage;)Z net/minecraft/network/chat/SignedMessageValidator$KeyBased/validateChain (Lnet/minecraft/network/chat/PlayerChatMessage;)Z +MD: net/minecraft/network/chat/Style/ ()V net/minecraft/network/chat/Style/ ()V +MD: net/minecraft/network/chat/Style/ (Lnet/minecraft/network/chat/TextColor;Ljava/lang/Boolean;Ljava/lang/Boolean;Ljava/lang/Boolean;Ljava/lang/Boolean;Ljava/lang/Boolean;Lnet/minecraft/network/chat/ClickEvent;Lnet/minecraft/network/chat/HoverEvent;Ljava/lang/String;Lnet/minecraft/resources/ResourceLocation;)V net/minecraft/network/chat/Style/ (Lnet/minecraft/network/chat/TextColor;Ljava/lang/Boolean;Ljava/lang/Boolean;Ljava/lang/Boolean;Ljava/lang/Boolean;Ljava/lang/Boolean;Lnet/minecraft/network/chat/ClickEvent;Lnet/minecraft/network/chat/HoverEvent;Ljava/lang/String;Lnet/minecraft/resources/ResourceLocation;)V +MD: net/minecraft/network/chat/Style/equals (Ljava/lang/Object;)Z net/minecraft/network/chat/Style/equals (Ljava/lang/Object;)Z +MD: net/minecraft/network/chat/Style/hashCode ()I net/minecraft/network/chat/Style/hashCode ()I +MD: net/minecraft/network/chat/Style/m_131135_ ()Lnet/minecraft/network/chat/TextColor; net/minecraft/network/chat/Style/getColor ()Lnet/minecraft/network/chat/TextColor; +MD: net/minecraft/network/chat/Style/m_131136_ (Ljava/lang/Boolean;)Lnet/minecraft/network/chat/Style; net/minecraft/network/chat/Style/withBold (Ljava/lang/Boolean;)Lnet/minecraft/network/chat/Style; +MD: net/minecraft/network/chat/Style/m_131138_ (Ljava/lang/String;)Lnet/minecraft/network/chat/Style; net/minecraft/network/chat/Style/withInsertion (Ljava/lang/String;)Lnet/minecraft/network/chat/Style; +MD: net/minecraft/network/chat/Style/m_131140_ (Lnet/minecraft/ChatFormatting;)Lnet/minecraft/network/chat/Style; net/minecraft/network/chat/Style/withColor (Lnet/minecraft/ChatFormatting;)Lnet/minecraft/network/chat/Style; +MD: net/minecraft/network/chat/Style/m_131142_ (Lnet/minecraft/network/chat/ClickEvent;)Lnet/minecraft/network/chat/Style; net/minecraft/network/chat/Style/withClickEvent (Lnet/minecraft/network/chat/ClickEvent;)Lnet/minecraft/network/chat/Style; +MD: net/minecraft/network/chat/Style/m_131144_ (Lnet/minecraft/network/chat/HoverEvent;)Lnet/minecraft/network/chat/Style; net/minecraft/network/chat/Style/withHoverEvent (Lnet/minecraft/network/chat/HoverEvent;)Lnet/minecraft/network/chat/Style; +MD: net/minecraft/network/chat/Style/m_131146_ (Lnet/minecraft/network/chat/Style;)Lnet/minecraft/network/chat/Style; net/minecraft/network/chat/Style/applyTo (Lnet/minecraft/network/chat/Style;)Lnet/minecraft/network/chat/Style; +MD: net/minecraft/network/chat/Style/m_131148_ (Lnet/minecraft/network/chat/TextColor;)Lnet/minecraft/network/chat/Style; net/minecraft/network/chat/Style/withColor (Lnet/minecraft/network/chat/TextColor;)Lnet/minecraft/network/chat/Style; +MD: net/minecraft/network/chat/Style/m_131150_ (Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/network/chat/Style; net/minecraft/network/chat/Style/withFont (Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/network/chat/Style; +MD: net/minecraft/network/chat/Style/m_131152_ ([Lnet/minecraft/ChatFormatting;)Lnet/minecraft/network/chat/Style; net/minecraft/network/chat/Style/applyFormats ([Lnet/minecraft/ChatFormatting;)Lnet/minecraft/network/chat/Style; +MD: net/minecraft/network/chat/Style/m_131154_ ()Z net/minecraft/network/chat/Style/isBold ()Z +MD: net/minecraft/network/chat/Style/m_131155_ (Ljava/lang/Boolean;)Lnet/minecraft/network/chat/Style; net/minecraft/network/chat/Style/withItalic (Ljava/lang/Boolean;)Lnet/minecraft/network/chat/Style; +MD: net/minecraft/network/chat/Style/m_131157_ (Lnet/minecraft/ChatFormatting;)Lnet/minecraft/network/chat/Style; net/minecraft/network/chat/Style/applyFormat (Lnet/minecraft/ChatFormatting;)Lnet/minecraft/network/chat/Style; +MD: net/minecraft/network/chat/Style/m_131161_ ()Z net/minecraft/network/chat/Style/isItalic ()Z +MD: net/minecraft/network/chat/Style/m_131162_ (Ljava/lang/Boolean;)Lnet/minecraft/network/chat/Style; net/minecraft/network/chat/Style/withUnderlined (Ljava/lang/Boolean;)Lnet/minecraft/network/chat/Style; +MD: net/minecraft/network/chat/Style/m_131164_ (Lnet/minecraft/ChatFormatting;)Lnet/minecraft/network/chat/Style; net/minecraft/network/chat/Style/applyLegacyFormat (Lnet/minecraft/ChatFormatting;)Lnet/minecraft/network/chat/Style; +MD: net/minecraft/network/chat/Style/m_131168_ ()Z net/minecraft/network/chat/Style/isStrikethrough ()Z +MD: net/minecraft/network/chat/Style/m_131171_ ()Z net/minecraft/network/chat/Style/isUnderlined ()Z +MD: net/minecraft/network/chat/Style/m_131176_ ()Z net/minecraft/network/chat/Style/isObfuscated ()Z +MD: net/minecraft/network/chat/Style/m_131179_ ()Z net/minecraft/network/chat/Style/isEmpty ()Z +MD: net/minecraft/network/chat/Style/m_131182_ ()Lnet/minecraft/network/chat/ClickEvent; net/minecraft/network/chat/Style/getClickEvent ()Lnet/minecraft/network/chat/ClickEvent; +MD: net/minecraft/network/chat/Style/m_131186_ ()Lnet/minecraft/network/chat/HoverEvent; net/minecraft/network/chat/Style/getHoverEvent ()Lnet/minecraft/network/chat/HoverEvent; +MD: net/minecraft/network/chat/Style/m_131189_ ()Ljava/lang/String; net/minecraft/network/chat/Style/getInsertion ()Ljava/lang/String; +MD: net/minecraft/network/chat/Style/m_131192_ ()Lnet/minecraft/resources/ResourceLocation; net/minecraft/network/chat/Style/getFont ()Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/network/chat/Style/m_178520_ (I)Lnet/minecraft/network/chat/Style; net/minecraft/network/chat/Style/withColor (I)Lnet/minecraft/network/chat/Style; +MD: net/minecraft/network/chat/Style/m_178522_ (Ljava/lang/Boolean;)Lnet/minecraft/network/chat/Style; net/minecraft/network/chat/Style/withStrikethrough (Ljava/lang/Boolean;)Lnet/minecraft/network/chat/Style; +MD: net/minecraft/network/chat/Style/m_178524_ (Ljava/lang/Boolean;)Lnet/minecraft/network/chat/Style; net/minecraft/network/chat/Style/withObfuscated (Ljava/lang/Boolean;)Lnet/minecraft/network/chat/Style; +MD: net/minecraft/network/chat/Style/m_237255_ (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/network/chat/Style/lambda$static$8 (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/network/chat/Style/m_237257_ (Ljava/util/Optional;Ljava/util/Optional;Ljava/util/Optional;Ljava/util/Optional;Ljava/util/Optional;Ljava/util/Optional;Ljava/util/Optional;Ljava/util/Optional;)Lnet/minecraft/network/chat/Style; net/minecraft/network/chat/Style/create (Ljava/util/Optional;Ljava/util/Optional;Ljava/util/Optional;Ljava/util/Optional;Ljava/util/Optional;Ljava/util/Optional;Ljava/util/Optional;Ljava/util/Optional;)Lnet/minecraft/network/chat/Style; +MD: net/minecraft/network/chat/Style/m_237266_ (Lnet/minecraft/network/chat/Style;)Ljava/util/Optional; net/minecraft/network/chat/Style/lambda$static$7 (Lnet/minecraft/network/chat/Style;)Ljava/util/Optional; +MD: net/minecraft/network/chat/Style/m_237268_ (Lnet/minecraft/network/chat/Style;)Ljava/util/Optional; net/minecraft/network/chat/Style/lambda$static$6 (Lnet/minecraft/network/chat/Style;)Ljava/util/Optional; +MD: net/minecraft/network/chat/Style/m_237270_ (Lnet/minecraft/network/chat/Style;)Ljava/util/Optional; net/minecraft/network/chat/Style/lambda$static$5 (Lnet/minecraft/network/chat/Style;)Ljava/util/Optional; +MD: net/minecraft/network/chat/Style/m_237272_ (Lnet/minecraft/network/chat/Style;)Ljava/util/Optional; net/minecraft/network/chat/Style/lambda$static$4 (Lnet/minecraft/network/chat/Style;)Ljava/util/Optional; +MD: net/minecraft/network/chat/Style/m_237274_ (Lnet/minecraft/network/chat/Style;)Ljava/util/Optional; net/minecraft/network/chat/Style/lambda$static$3 (Lnet/minecraft/network/chat/Style;)Ljava/util/Optional; +MD: net/minecraft/network/chat/Style/m_237276_ (Lnet/minecraft/network/chat/Style;)Ljava/util/Optional; net/minecraft/network/chat/Style/lambda$static$2 (Lnet/minecraft/network/chat/Style;)Ljava/util/Optional; +MD: net/minecraft/network/chat/Style/m_237278_ (Lnet/minecraft/network/chat/Style;)Ljava/util/Optional; net/minecraft/network/chat/Style/lambda$static$1 (Lnet/minecraft/network/chat/Style;)Ljava/util/Optional; +MD: net/minecraft/network/chat/Style/m_237280_ (Lnet/minecraft/network/chat/Style;)Ljava/util/Optional; net/minecraft/network/chat/Style/lambda$static$0 (Lnet/minecraft/network/chat/Style;)Ljava/util/Optional; +MD: net/minecraft/network/chat/Style/toString ()Ljava/lang/String; net/minecraft/network/chat/Style/toString ()Ljava/lang/String; +MD: net/minecraft/network/chat/Style$1/ ()V net/minecraft/network/chat/Style$1/ ()V +MD: net/minecraft/network/chat/Style$1Collector/ (Lnet/minecraft/network/chat/Style;Ljava/lang/StringBuilder;)V net/minecraft/network/chat/Style$1Collector/ (Lnet/minecraft/network/chat/Style;Ljava/lang/StringBuilder;)V +MD: net/minecraft/network/chat/Style$1Collector/m_237288_ ()V net/minecraft/network/chat/Style$1Collector/prependSeparator ()V +MD: net/minecraft/network/chat/Style$1Collector/m_237289_ (Ljava/lang/String;Ljava/lang/Boolean;)V net/minecraft/network/chat/Style$1Collector/addFlagString (Ljava/lang/String;Ljava/lang/Boolean;)V +MD: net/minecraft/network/chat/Style$1Collector/m_237292_ (Ljava/lang/String;Ljava/lang/Object;)V net/minecraft/network/chat/Style$1Collector/addValueString (Ljava/lang/String;Ljava/lang/Object;)V +MD: net/minecraft/network/chat/Style$Serializer/ ()V net/minecraft/network/chat/Style$Serializer/ ()V +MD: net/minecraft/network/chat/Style$Serializer/deserialize (Lcom/google/gson/JsonElement;Ljava/lang/reflect/Type;Lcom/google/gson/JsonDeserializationContext;)Ljava/lang/Object; net/minecraft/network/chat/Style$Serializer/deserialize (Lcom/google/gson/JsonElement;Ljava/lang/reflect/Type;Lcom/google/gson/JsonDeserializationContext;)Ljava/lang/Object; +MD: net/minecraft/network/chat/Style$Serializer/deserialize (Lcom/google/gson/JsonElement;Ljava/lang/reflect/Type;Lcom/google/gson/JsonDeserializationContext;)Lnet/minecraft/network/chat/Style; net/minecraft/network/chat/Style$Serializer/deserialize (Lcom/google/gson/JsonElement;Ljava/lang/reflect/Type;Lcom/google/gson/JsonDeserializationContext;)Lnet/minecraft/network/chat/Style; +MD: net/minecraft/network/chat/Style$Serializer/m_131203_ (Lcom/google/gson/JsonObject;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/network/chat/Style$Serializer/getFont (Lcom/google/gson/JsonObject;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/network/chat/Style$Serializer/m_131205_ (Lcom/google/gson/JsonObject;Ljava/lang/String;)Ljava/lang/Boolean; net/minecraft/network/chat/Style$Serializer/getOptionalFlag (Lcom/google/gson/JsonObject;Ljava/lang/String;)Ljava/lang/Boolean; +MD: net/minecraft/network/chat/Style$Serializer/m_131212_ (Lcom/google/gson/JsonObject;)Lnet/minecraft/network/chat/HoverEvent; net/minecraft/network/chat/Style$Serializer/getHoverEvent (Lcom/google/gson/JsonObject;)Lnet/minecraft/network/chat/HoverEvent; +MD: net/minecraft/network/chat/Style$Serializer/m_131214_ (Lcom/google/gson/JsonObject;)Lnet/minecraft/network/chat/ClickEvent; net/minecraft/network/chat/Style$Serializer/getClickEvent (Lcom/google/gson/JsonObject;)Lnet/minecraft/network/chat/ClickEvent; +MD: net/minecraft/network/chat/Style$Serializer/m_131216_ (Lcom/google/gson/JsonObject;)Ljava/lang/String; net/minecraft/network/chat/Style$Serializer/getInsertion (Lcom/google/gson/JsonObject;)Ljava/lang/String; +MD: net/minecraft/network/chat/Style$Serializer/m_131222_ (Lcom/google/gson/JsonObject;)Lnet/minecraft/network/chat/TextColor; net/minecraft/network/chat/Style$Serializer/getTextColor (Lcom/google/gson/JsonObject;)Lnet/minecraft/network/chat/TextColor; +MD: net/minecraft/network/chat/Style$Serializer/serialize (Lnet/minecraft/network/chat/Style;Ljava/lang/reflect/Type;Lcom/google/gson/JsonSerializationContext;)Lcom/google/gson/JsonElement; net/minecraft/network/chat/Style$Serializer/serialize (Lnet/minecraft/network/chat/Style;Ljava/lang/reflect/Type;Lcom/google/gson/JsonSerializationContext;)Lcom/google/gson/JsonElement; +MD: net/minecraft/network/chat/Style$Serializer/serialize (Ljava/lang/Object;Ljava/lang/reflect/Type;Lcom/google/gson/JsonSerializationContext;)Lcom/google/gson/JsonElement; net/minecraft/network/chat/Style$Serializer/serialize (Ljava/lang/Object;Ljava/lang/reflect/Type;Lcom/google/gson/JsonSerializationContext;)Lcom/google/gson/JsonElement; +MD: net/minecraft/network/chat/SubStringSource/ (Ljava/lang/String;Ljava/util/List;Lit/unimi/dsi/fastutil/ints/Int2IntFunction;)V net/minecraft/network/chat/SubStringSource/ (Ljava/lang/String;Ljava/util/List;Lit/unimi/dsi/fastutil/ints/Int2IntFunction;)V +MD: net/minecraft/network/chat/SubStringSource/m_131235_ ()Ljava/lang/String; net/minecraft/network/chat/SubStringSource/getPlainText ()Ljava/lang/String; +MD: net/minecraft/network/chat/SubStringSource/m_131236_ (IIZ)Ljava/util/List; net/minecraft/network/chat/SubStringSource/substring (IIZ)Ljava/util/List; +MD: net/minecraft/network/chat/SubStringSource/m_131246_ (Ljava/lang/StringBuilder;Ljava/util/List;Lnet/minecraft/network/chat/Style;Ljava/lang/String;)Ljava/util/Optional; net/minecraft/network/chat/SubStringSource/lambda$create$3 (Ljava/lang/StringBuilder;Ljava/util/List;Lnet/minecraft/network/chat/Style;Ljava/lang/String;)Ljava/util/Optional; +MD: net/minecraft/network/chat/SubStringSource/m_131251_ (Lnet/minecraft/network/chat/FormattedText;Lit/unimi/dsi/fastutil/ints/Int2IntFunction;Ljava/util/function/UnaryOperator;)Lnet/minecraft/network/chat/SubStringSource; net/minecraft/network/chat/SubStringSource/create (Lnet/minecraft/network/chat/FormattedText;Lit/unimi/dsi/fastutil/ints/Int2IntFunction;Ljava/util/function/UnaryOperator;)Lnet/minecraft/network/chat/SubStringSource; +MD: net/minecraft/network/chat/SubStringSource/m_178526_ (I)I net/minecraft/network/chat/SubStringSource/lambda$create$0 (I)I +MD: net/minecraft/network/chat/SubStringSource/m_178528_ (Ljava/lang/String;)Ljava/lang/String; net/minecraft/network/chat/SubStringSource/lambda$create$1 (Ljava/lang/String;)Ljava/lang/String; +MD: net/minecraft/network/chat/SubStringSource/m_178530_ (Ljava/lang/StringBuilder;Ljava/util/List;ILnet/minecraft/network/chat/Style;I)Z net/minecraft/network/chat/SubStringSource/lambda$create$2 (Ljava/lang/StringBuilder;Ljava/util/List;ILnet/minecraft/network/chat/Style;I)Z +MD: net/minecraft/network/chat/SubStringSource/m_178536_ (Lnet/minecraft/network/chat/FormattedText;)Lnet/minecraft/network/chat/SubStringSource; net/minecraft/network/chat/SubStringSource/create (Lnet/minecraft/network/chat/FormattedText;)Lnet/minecraft/network/chat/SubStringSource; +MD: net/minecraft/network/chat/TextColor/ ()V net/minecraft/network/chat/TextColor/ ()V +MD: net/minecraft/network/chat/TextColor/ (I)V net/minecraft/network/chat/TextColor/ (I)V +MD: net/minecraft/network/chat/TextColor/ (ILjava/lang/String;)V net/minecraft/network/chat/TextColor/ (ILjava/lang/String;)V +MD: net/minecraft/network/chat/TextColor/equals (Ljava/lang/Object;)Z net/minecraft/network/chat/TextColor/equals (Ljava/lang/Object;)Z +MD: net/minecraft/network/chat/TextColor/hashCode ()I net/minecraft/network/chat/TextColor/hashCode ()I +MD: net/minecraft/network/chat/TextColor/m_131265_ ()I net/minecraft/network/chat/TextColor/getValue ()I +MD: net/minecraft/network/chat/TextColor/m_131266_ (I)Lnet/minecraft/network/chat/TextColor; net/minecraft/network/chat/TextColor/fromRgb (I)Lnet/minecraft/network/chat/TextColor; +MD: net/minecraft/network/chat/TextColor/m_131268_ (Ljava/lang/String;)Lnet/minecraft/network/chat/TextColor; net/minecraft/network/chat/TextColor/parseColor (Ljava/lang/String;)Lnet/minecraft/network/chat/TextColor; +MD: net/minecraft/network/chat/TextColor/m_131270_ (Lnet/minecraft/ChatFormatting;)Lnet/minecraft/network/chat/TextColor; net/minecraft/network/chat/TextColor/fromLegacyFormat (Lnet/minecraft/ChatFormatting;)Lnet/minecraft/network/chat/TextColor; +MD: net/minecraft/network/chat/TextColor/m_131274_ ()Ljava/lang/String; net/minecraft/network/chat/TextColor/serialize ()Ljava/lang/String; +MD: net/minecraft/network/chat/TextColor/m_131277_ ()Ljava/lang/String; net/minecraft/network/chat/TextColor/formatValue ()Ljava/lang/String; +MD: net/minecraft/network/chat/TextColor/m_237296_ (Lnet/minecraft/network/chat/TextColor;)Ljava/lang/String; net/minecraft/network/chat/TextColor/lambda$static$3 (Lnet/minecraft/network/chat/TextColor;)Ljava/lang/String; +MD: net/minecraft/network/chat/TextColor/m_237300_ (Lnet/minecraft/ChatFormatting;)Lnet/minecraft/network/chat/TextColor; net/minecraft/network/chat/TextColor/lambda$static$2 (Lnet/minecraft/ChatFormatting;)Lnet/minecraft/network/chat/TextColor; +MD: net/minecraft/network/chat/TextColor/m_274064_ ()Ljava/lang/String; net/minecraft/network/chat/TextColor/lambda$static$0 ()Ljava/lang/String; +MD: net/minecraft/network/chat/TextColor/m_274065_ (Ljava/lang/String;)Lcom/mojang/serialization/DataResult; net/minecraft/network/chat/TextColor/lambda$static$1 (Ljava/lang/String;)Lcom/mojang/serialization/DataResult; +MD: net/minecraft/network/chat/TextColor/toString ()Ljava/lang/String; net/minecraft/network/chat/TextColor/toString ()Ljava/lang/String; +MD: net/minecraft/network/chat/ThrowingComponent/ (Lnet/minecraft/network/chat/Component;)V net/minecraft/network/chat/ThrowingComponent/ (Lnet/minecraft/network/chat/Component;)V +MD: net/minecraft/network/chat/ThrowingComponent/ (Lnet/minecraft/network/chat/Component;Ljava/lang/Throwable;)V net/minecraft/network/chat/ThrowingComponent/ (Lnet/minecraft/network/chat/Component;Ljava/lang/Throwable;)V +MD: net/minecraft/network/chat/ThrowingComponent/m_237308_ ()Lnet/minecraft/network/chat/Component; net/minecraft/network/chat/ThrowingComponent/getComponent ()Lnet/minecraft/network/chat/Component; +MD: net/minecraft/network/chat/contents/BlockDataSource/ (Ljava/lang/String;)V net/minecraft/network/chat/contents/BlockDataSource/ (Ljava/lang/String;)V +MD: net/minecraft/network/chat/contents/BlockDataSource/ (Ljava/lang/String;Lnet/minecraft/commands/arguments/coordinates/Coordinates;)V net/minecraft/network/chat/contents/BlockDataSource/ (Ljava/lang/String;Lnet/minecraft/commands/arguments/coordinates/Coordinates;)V +MD: net/minecraft/network/chat/contents/BlockDataSource/equals (Ljava/lang/Object;)Z net/minecraft/network/chat/contents/BlockDataSource/equals (Ljava/lang/Object;)Z +MD: net/minecraft/network/chat/contents/BlockDataSource/f_237309_ ()Ljava/lang/String; net/minecraft/network/chat/contents/BlockDataSource/posPattern ()Ljava/lang/String; +MD: net/minecraft/network/chat/contents/BlockDataSource/f_237310_ ()Lnet/minecraft/commands/arguments/coordinates/Coordinates; net/minecraft/network/chat/contents/BlockDataSource/compiledPos ()Lnet/minecraft/commands/arguments/coordinates/Coordinates; +MD: net/minecraft/network/chat/contents/BlockDataSource/hashCode ()I net/minecraft/network/chat/contents/BlockDataSource/hashCode ()I +MD: net/minecraft/network/chat/contents/BlockDataSource/m_213601_ (Lnet/minecraft/commands/CommandSourceStack;)Ljava/util/stream/Stream; net/minecraft/network/chat/contents/BlockDataSource/getData (Lnet/minecraft/commands/CommandSourceStack;)Ljava/util/stream/Stream; +MD: net/minecraft/network/chat/contents/BlockDataSource/m_237317_ (Ljava/lang/String;)Lnet/minecraft/commands/arguments/coordinates/Coordinates; net/minecraft/network/chat/contents/BlockDataSource/compilePos (Ljava/lang/String;)Lnet/minecraft/commands/arguments/coordinates/Coordinates; +MD: net/minecraft/network/chat/contents/BlockDataSource/toString ()Ljava/lang/String; net/minecraft/network/chat/contents/BlockDataSource/toString ()Ljava/lang/String; +MD: net/minecraft/network/chat/contents/DataSource/m_213601_ (Lnet/minecraft/commands/CommandSourceStack;)Ljava/util/stream/Stream; net/minecraft/network/chat/contents/DataSource/getData (Lnet/minecraft/commands/CommandSourceStack;)Ljava/util/stream/Stream; +MD: net/minecraft/network/chat/contents/EntityDataSource/ (Ljava/lang/String;)V net/minecraft/network/chat/contents/EntityDataSource/ (Ljava/lang/String;)V +MD: net/minecraft/network/chat/contents/EntityDataSource/ (Ljava/lang/String;Lnet/minecraft/commands/arguments/selector/EntitySelector;)V net/minecraft/network/chat/contents/EntityDataSource/ (Ljava/lang/String;Lnet/minecraft/commands/arguments/selector/EntitySelector;)V +MD: net/minecraft/network/chat/contents/EntityDataSource/equals (Ljava/lang/Object;)Z net/minecraft/network/chat/contents/EntityDataSource/equals (Ljava/lang/Object;)Z +MD: net/minecraft/network/chat/contents/EntityDataSource/f_237327_ ()Ljava/lang/String; net/minecraft/network/chat/contents/EntityDataSource/selectorPattern ()Ljava/lang/String; +MD: net/minecraft/network/chat/contents/EntityDataSource/f_237328_ ()Lnet/minecraft/commands/arguments/selector/EntitySelector; net/minecraft/network/chat/contents/EntityDataSource/compiledSelector ()Lnet/minecraft/commands/arguments/selector/EntitySelector; +MD: net/minecraft/network/chat/contents/EntityDataSource/hashCode ()I net/minecraft/network/chat/contents/EntityDataSource/hashCode ()I +MD: net/minecraft/network/chat/contents/EntityDataSource/m_213601_ (Lnet/minecraft/commands/CommandSourceStack;)Ljava/util/stream/Stream; net/minecraft/network/chat/contents/EntityDataSource/getData (Lnet/minecraft/commands/CommandSourceStack;)Ljava/util/stream/Stream; +MD: net/minecraft/network/chat/contents/EntityDataSource/m_237335_ (Ljava/lang/String;)Lnet/minecraft/commands/arguments/selector/EntitySelector; net/minecraft/network/chat/contents/EntityDataSource/compileSelector (Ljava/lang/String;)Lnet/minecraft/commands/arguments/selector/EntitySelector; +MD: net/minecraft/network/chat/contents/EntityDataSource/toString ()Ljava/lang/String; net/minecraft/network/chat/contents/EntityDataSource/toString ()Ljava/lang/String; +MD: net/minecraft/network/chat/contents/KeybindContents/ (Ljava/lang/String;)V net/minecraft/network/chat/contents/KeybindContents/ (Ljava/lang/String;)V +MD: net/minecraft/network/chat/contents/KeybindContents/equals (Ljava/lang/Object;)Z net/minecraft/network/chat/contents/KeybindContents/equals (Ljava/lang/Object;)Z +MD: net/minecraft/network/chat/contents/KeybindContents/hashCode ()I net/minecraft/network/chat/contents/KeybindContents/hashCode ()I +MD: net/minecraft/network/chat/contents/KeybindContents/m_213724_ (Lnet/minecraft/network/chat/FormattedText$StyledContentConsumer;Lnet/minecraft/network/chat/Style;)Ljava/util/Optional; net/minecraft/network/chat/contents/KeybindContents/visit (Lnet/minecraft/network/chat/FormattedText$StyledContentConsumer;Lnet/minecraft/network/chat/Style;)Ljava/util/Optional; +MD: net/minecraft/network/chat/contents/KeybindContents/m_213874_ (Lnet/minecraft/network/chat/FormattedText$ContentConsumer;)Ljava/util/Optional; net/minecraft/network/chat/contents/KeybindContents/visit (Lnet/minecraft/network/chat/FormattedText$ContentConsumer;)Ljava/util/Optional; +MD: net/minecraft/network/chat/contents/KeybindContents/m_237348_ ()Ljava/lang/String; net/minecraft/network/chat/contents/KeybindContents/getName ()Ljava/lang/String; +MD: net/minecraft/network/chat/contents/KeybindContents/m_237354_ ()Lnet/minecraft/network/chat/Component; net/minecraft/network/chat/contents/KeybindContents/getNestedComponent ()Lnet/minecraft/network/chat/Component; +MD: net/minecraft/network/chat/contents/KeybindContents/toString ()Ljava/lang/String; net/minecraft/network/chat/contents/KeybindContents/toString ()Ljava/lang/String; +MD: net/minecraft/network/chat/contents/KeybindResolver/ ()V net/minecraft/network/chat/contents/KeybindResolver/ ()V +MD: net/minecraft/network/chat/contents/KeybindResolver/ ()V net/minecraft/network/chat/contents/KeybindResolver/ ()V +MD: net/minecraft/network/chat/contents/KeybindResolver/m_237362_ (Ljava/lang/String;)Ljava/util/function/Supplier; net/minecraft/network/chat/contents/KeybindResolver/lambda$static$1 (Ljava/lang/String;)Ljava/util/function/Supplier; +MD: net/minecraft/network/chat/contents/KeybindResolver/m_237364_ (Ljava/util/function/Function;)V net/minecraft/network/chat/contents/KeybindResolver/setKeyResolver (Ljava/util/function/Function;)V +MD: net/minecraft/network/chat/contents/KeybindResolver/m_237366_ (Ljava/lang/String;)Lnet/minecraft/network/chat/Component; net/minecraft/network/chat/contents/KeybindResolver/lambda$static$0 (Ljava/lang/String;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/network/chat/contents/LiteralContents/ (Ljava/lang/String;)V net/minecraft/network/chat/contents/LiteralContents/ (Ljava/lang/String;)V +MD: net/minecraft/network/chat/contents/LiteralContents/equals (Ljava/lang/Object;)Z net/minecraft/network/chat/contents/LiteralContents/equals (Ljava/lang/Object;)Z +MD: net/minecraft/network/chat/contents/LiteralContents/f_237368_ ()Ljava/lang/String; net/minecraft/network/chat/contents/LiteralContents/text ()Ljava/lang/String; +MD: net/minecraft/network/chat/contents/LiteralContents/hashCode ()I net/minecraft/network/chat/contents/LiteralContents/hashCode ()I +MD: net/minecraft/network/chat/contents/LiteralContents/m_213724_ (Lnet/minecraft/network/chat/FormattedText$StyledContentConsumer;Lnet/minecraft/network/chat/Style;)Ljava/util/Optional; net/minecraft/network/chat/contents/LiteralContents/visit (Lnet/minecraft/network/chat/FormattedText$StyledContentConsumer;Lnet/minecraft/network/chat/Style;)Ljava/util/Optional; +MD: net/minecraft/network/chat/contents/LiteralContents/m_213874_ (Lnet/minecraft/network/chat/FormattedText$ContentConsumer;)Ljava/util/Optional; net/minecraft/network/chat/contents/LiteralContents/visit (Lnet/minecraft/network/chat/FormattedText$ContentConsumer;)Ljava/util/Optional; +MD: net/minecraft/network/chat/contents/LiteralContents/toString ()Ljava/lang/String; net/minecraft/network/chat/contents/LiteralContents/toString ()Ljava/lang/String; +MD: net/minecraft/network/chat/contents/NbtContents/ ()V net/minecraft/network/chat/contents/NbtContents/ ()V +MD: net/minecraft/network/chat/contents/NbtContents/ (Ljava/lang/String;ZLjava/util/Optional;Lnet/minecraft/network/chat/contents/DataSource;)V net/minecraft/network/chat/contents/NbtContents/ (Ljava/lang/String;ZLjava/util/Optional;Lnet/minecraft/network/chat/contents/DataSource;)V +MD: net/minecraft/network/chat/contents/NbtContents/ (Ljava/lang/String;Lnet/minecraft/commands/arguments/NbtPathArgument$NbtPath;ZLjava/util/Optional;Lnet/minecraft/network/chat/contents/DataSource;)V net/minecraft/network/chat/contents/NbtContents/ (Ljava/lang/String;Lnet/minecraft/commands/arguments/NbtPathArgument$NbtPath;ZLjava/util/Optional;Lnet/minecraft/network/chat/contents/DataSource;)V +MD: net/minecraft/network/chat/contents/NbtContents/equals (Ljava/lang/Object;)Z net/minecraft/network/chat/contents/NbtContents/equals (Ljava/lang/Object;)Z +MD: net/minecraft/network/chat/contents/NbtContents/hashCode ()I net/minecraft/network/chat/contents/NbtContents/hashCode ()I +MD: net/minecraft/network/chat/contents/NbtContents/m_213698_ (Lnet/minecraft/commands/CommandSourceStack;Lnet/minecraft/world/entity/Entity;I)Lnet/minecraft/network/chat/MutableComponent; net/minecraft/network/chat/contents/NbtContents/resolve (Lnet/minecraft/commands/CommandSourceStack;Lnet/minecraft/world/entity/Entity;I)Lnet/minecraft/network/chat/MutableComponent; +MD: net/minecraft/network/chat/contents/NbtContents/m_237399_ ()Ljava/lang/String; net/minecraft/network/chat/contents/NbtContents/getNbtPath ()Ljava/lang/String; +MD: net/minecraft/network/chat/contents/NbtContents/m_237404_ (Lnet/minecraft/commands/CommandSourceStack;Lnet/minecraft/world/entity/Entity;ILjava/lang/String;)Ljava/util/stream/Stream; net/minecraft/network/chat/contents/NbtContents/lambda$resolve$1 (Lnet/minecraft/commands/CommandSourceStack;Lnet/minecraft/world/entity/Entity;ILjava/lang/String;)Ljava/util/stream/Stream; +MD: net/minecraft/network/chat/contents/NbtContents/m_237409_ (Ljava/lang/String;)Lnet/minecraft/commands/arguments/NbtPathArgument$NbtPath; net/minecraft/network/chat/contents/NbtContents/compileNbtPath (Ljava/lang/String;)Lnet/minecraft/commands/arguments/NbtPathArgument$NbtPath; +MD: net/minecraft/network/chat/contents/NbtContents/m_237411_ (Ljava/util/stream/Stream;)Lnet/minecraft/network/chat/MutableComponent; net/minecraft/network/chat/contents/NbtContents/lambda$resolve$5 (Ljava/util/stream/Stream;)Lnet/minecraft/network/chat/MutableComponent; +MD: net/minecraft/network/chat/contents/NbtContents/m_237413_ (Ljava/util/stream/Stream;Lnet/minecraft/network/chat/MutableComponent;)Lnet/minecraft/network/chat/MutableComponent; net/minecraft/network/chat/contents/NbtContents/lambda$resolve$4 (Ljava/util/stream/Stream;Lnet/minecraft/network/chat/MutableComponent;)Lnet/minecraft/network/chat/MutableComponent; +MD: net/minecraft/network/chat/contents/NbtContents/m_237416_ (Lnet/minecraft/nbt/CompoundTag;)Ljava/util/stream/Stream; net/minecraft/network/chat/contents/NbtContents/lambda$resolve$0 (Lnet/minecraft/nbt/CompoundTag;)Ljava/util/stream/Stream; +MD: net/minecraft/network/chat/contents/NbtContents/m_237418_ (Lnet/minecraft/network/chat/Component;Lnet/minecraft/network/chat/MutableComponent;Lnet/minecraft/network/chat/MutableComponent;)Lnet/minecraft/network/chat/MutableComponent; net/minecraft/network/chat/contents/NbtContents/lambda$resolve$2 (Lnet/minecraft/network/chat/Component;Lnet/minecraft/network/chat/MutableComponent;Lnet/minecraft/network/chat/MutableComponent;)Lnet/minecraft/network/chat/MutableComponent; +MD: net/minecraft/network/chat/contents/NbtContents/m_237422_ (Lnet/minecraft/network/chat/MutableComponent;Lnet/minecraft/network/chat/MutableComponent;Lnet/minecraft/network/chat/MutableComponent;)Lnet/minecraft/network/chat/MutableComponent; net/minecraft/network/chat/contents/NbtContents/lambda$resolve$3 (Lnet/minecraft/network/chat/MutableComponent;Lnet/minecraft/network/chat/MutableComponent;Lnet/minecraft/network/chat/MutableComponent;)Lnet/minecraft/network/chat/MutableComponent; +MD: net/minecraft/network/chat/contents/NbtContents/m_237426_ ()Z net/minecraft/network/chat/contents/NbtContents/isInterpreting ()Z +MD: net/minecraft/network/chat/contents/NbtContents/m_237427_ ()Ljava/util/Optional; net/minecraft/network/chat/contents/NbtContents/getSeparator ()Ljava/util/Optional; +MD: net/minecraft/network/chat/contents/NbtContents/m_237428_ ()Lnet/minecraft/network/chat/contents/DataSource; net/minecraft/network/chat/contents/NbtContents/getDataSource ()Lnet/minecraft/network/chat/contents/DataSource; +MD: net/minecraft/network/chat/contents/NbtContents/toString ()Ljava/lang/String; net/minecraft/network/chat/contents/NbtContents/toString ()Ljava/lang/String; +MD: net/minecraft/network/chat/contents/ScoreContents/ (Ljava/lang/String;Ljava/lang/String;)V net/minecraft/network/chat/contents/ScoreContents/ (Ljava/lang/String;Ljava/lang/String;)V +MD: net/minecraft/network/chat/contents/ScoreContents/equals (Ljava/lang/Object;)Z net/minecraft/network/chat/contents/ScoreContents/equals (Ljava/lang/Object;)Z +MD: net/minecraft/network/chat/contents/ScoreContents/hashCode ()I net/minecraft/network/chat/contents/ScoreContents/hashCode ()I +MD: net/minecraft/network/chat/contents/ScoreContents/m_213698_ (Lnet/minecraft/commands/CommandSourceStack;Lnet/minecraft/world/entity/Entity;I)Lnet/minecraft/network/chat/MutableComponent; net/minecraft/network/chat/contents/ScoreContents/resolve (Lnet/minecraft/commands/CommandSourceStack;Lnet/minecraft/world/entity/Entity;I)Lnet/minecraft/network/chat/MutableComponent; +MD: net/minecraft/network/chat/contents/ScoreContents/m_237440_ ()Ljava/lang/String; net/minecraft/network/chat/contents/ScoreContents/getName ()Ljava/lang/String; +MD: net/minecraft/network/chat/contents/ScoreContents/m_237441_ (Lnet/minecraft/commands/CommandSourceStack;)Ljava/lang/String; net/minecraft/network/chat/contents/ScoreContents/findTargetName (Lnet/minecraft/commands/CommandSourceStack;)Ljava/lang/String; +MD: net/minecraft/network/chat/contents/ScoreContents/m_237447_ (Ljava/lang/String;)Lnet/minecraft/commands/arguments/selector/EntitySelector; net/minecraft/network/chat/contents/ScoreContents/parseSelector (Ljava/lang/String;)Lnet/minecraft/commands/arguments/selector/EntitySelector; +MD: net/minecraft/network/chat/contents/ScoreContents/m_237449_ (Ljava/lang/String;Lnet/minecraft/commands/CommandSourceStack;)Ljava/lang/String; net/minecraft/network/chat/contents/ScoreContents/getScore (Ljava/lang/String;Lnet/minecraft/commands/CommandSourceStack;)Ljava/lang/String; +MD: net/minecraft/network/chat/contents/ScoreContents/m_237452_ ()Lnet/minecraft/commands/arguments/selector/EntitySelector; net/minecraft/network/chat/contents/ScoreContents/getSelector ()Lnet/minecraft/commands/arguments/selector/EntitySelector; +MD: net/minecraft/network/chat/contents/ScoreContents/m_237453_ ()Ljava/lang/String; net/minecraft/network/chat/contents/ScoreContents/getObjective ()Ljava/lang/String; +MD: net/minecraft/network/chat/contents/ScoreContents/toString ()Ljava/lang/String; net/minecraft/network/chat/contents/ScoreContents/toString ()Ljava/lang/String; +MD: net/minecraft/network/chat/contents/SelectorContents/ ()V net/minecraft/network/chat/contents/SelectorContents/ ()V +MD: net/minecraft/network/chat/contents/SelectorContents/ (Ljava/lang/String;Ljava/util/Optional;)V net/minecraft/network/chat/contents/SelectorContents/ (Ljava/lang/String;Ljava/util/Optional;)V +MD: net/minecraft/network/chat/contents/SelectorContents/equals (Ljava/lang/Object;)Z net/minecraft/network/chat/contents/SelectorContents/equals (Ljava/lang/Object;)Z +MD: net/minecraft/network/chat/contents/SelectorContents/hashCode ()I net/minecraft/network/chat/contents/SelectorContents/hashCode ()I +MD: net/minecraft/network/chat/contents/SelectorContents/m_213698_ (Lnet/minecraft/commands/CommandSourceStack;Lnet/minecraft/world/entity/Entity;I)Lnet/minecraft/network/chat/MutableComponent; net/minecraft/network/chat/contents/SelectorContents/resolve (Lnet/minecraft/commands/CommandSourceStack;Lnet/minecraft/world/entity/Entity;I)Lnet/minecraft/network/chat/MutableComponent; +MD: net/minecraft/network/chat/contents/SelectorContents/m_213724_ (Lnet/minecraft/network/chat/FormattedText$StyledContentConsumer;Lnet/minecraft/network/chat/Style;)Ljava/util/Optional; net/minecraft/network/chat/contents/SelectorContents/visit (Lnet/minecraft/network/chat/FormattedText$StyledContentConsumer;Lnet/minecraft/network/chat/Style;)Ljava/util/Optional; +MD: net/minecraft/network/chat/contents/SelectorContents/m_213874_ (Lnet/minecraft/network/chat/FormattedText$ContentConsumer;)Ljava/util/Optional; net/minecraft/network/chat/contents/SelectorContents/visit (Lnet/minecraft/network/chat/FormattedText$ContentConsumer;)Ljava/util/Optional; +MD: net/minecraft/network/chat/contents/SelectorContents/m_237466_ ()Ljava/lang/String; net/minecraft/network/chat/contents/SelectorContents/getPattern ()Ljava/lang/String; +MD: net/minecraft/network/chat/contents/SelectorContents/m_237471_ (Ljava/lang/String;)Lnet/minecraft/commands/arguments/selector/EntitySelector; net/minecraft/network/chat/contents/SelectorContents/parseSelector (Ljava/lang/String;)Lnet/minecraft/commands/arguments/selector/EntitySelector; +MD: net/minecraft/network/chat/contents/SelectorContents/m_237478_ ()Lnet/minecraft/commands/arguments/selector/EntitySelector; net/minecraft/network/chat/contents/SelectorContents/getSelector ()Lnet/minecraft/commands/arguments/selector/EntitySelector; +MD: net/minecraft/network/chat/contents/SelectorContents/m_237479_ ()Ljava/util/Optional; net/minecraft/network/chat/contents/SelectorContents/getSeparator ()Ljava/util/Optional; +MD: net/minecraft/network/chat/contents/SelectorContents/toString ()Ljava/lang/String; net/minecraft/network/chat/contents/SelectorContents/toString ()Ljava/lang/String; +MD: net/minecraft/network/chat/contents/StorageDataSource/ (Lnet/minecraft/resources/ResourceLocation;)V net/minecraft/network/chat/contents/StorageDataSource/ (Lnet/minecraft/resources/ResourceLocation;)V +MD: net/minecraft/network/chat/contents/StorageDataSource/equals (Ljava/lang/Object;)Z net/minecraft/network/chat/contents/StorageDataSource/equals (Ljava/lang/Object;)Z +MD: net/minecraft/network/chat/contents/StorageDataSource/f_237484_ ()Lnet/minecraft/resources/ResourceLocation; net/minecraft/network/chat/contents/StorageDataSource/id ()Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/network/chat/contents/StorageDataSource/hashCode ()I net/minecraft/network/chat/contents/StorageDataSource/hashCode ()I +MD: net/minecraft/network/chat/contents/StorageDataSource/m_213601_ (Lnet/minecraft/commands/CommandSourceStack;)Ljava/util/stream/Stream; net/minecraft/network/chat/contents/StorageDataSource/getData (Lnet/minecraft/commands/CommandSourceStack;)Ljava/util/stream/Stream; +MD: net/minecraft/network/chat/contents/StorageDataSource/toString ()Ljava/lang/String; net/minecraft/network/chat/contents/StorageDataSource/toString ()Ljava/lang/String; +MD: net/minecraft/network/chat/contents/TranslatableContents/ ()V net/minecraft/network/chat/contents/TranslatableContents/ ()V +MD: net/minecraft/network/chat/contents/TranslatableContents/ (Ljava/lang/String;Ljava/lang/String;[Ljava/lang/Object;)V net/minecraft/network/chat/contents/TranslatableContents/ (Ljava/lang/String;Ljava/lang/String;[Ljava/lang/Object;)V +MD: net/minecraft/network/chat/contents/TranslatableContents/equals (Ljava/lang/Object;)Z net/minecraft/network/chat/contents/TranslatableContents/equals (Ljava/lang/Object;)Z +MD: net/minecraft/network/chat/contents/TranslatableContents/hashCode ()I net/minecraft/network/chat/contents/TranslatableContents/hashCode ()I +MD: net/minecraft/network/chat/contents/TranslatableContents/m_213698_ (Lnet/minecraft/commands/CommandSourceStack;Lnet/minecraft/world/entity/Entity;I)Lnet/minecraft/network/chat/MutableComponent; net/minecraft/network/chat/contents/TranslatableContents/resolve (Lnet/minecraft/commands/CommandSourceStack;Lnet/minecraft/world/entity/Entity;I)Lnet/minecraft/network/chat/MutableComponent; +MD: net/minecraft/network/chat/contents/TranslatableContents/m_213724_ (Lnet/minecraft/network/chat/FormattedText$StyledContentConsumer;Lnet/minecraft/network/chat/Style;)Ljava/util/Optional; net/minecraft/network/chat/contents/TranslatableContents/visit (Lnet/minecraft/network/chat/FormattedText$StyledContentConsumer;Lnet/minecraft/network/chat/Style;)Ljava/util/Optional; +MD: net/minecraft/network/chat/contents/TranslatableContents/m_213874_ (Lnet/minecraft/network/chat/FormattedText$ContentConsumer;)Ljava/util/Optional; net/minecraft/network/chat/contents/TranslatableContents/visit (Lnet/minecraft/network/chat/FormattedText$ContentConsumer;)Ljava/util/Optional; +MD: net/minecraft/network/chat/contents/TranslatableContents/m_237508_ ()Ljava/lang/String; net/minecraft/network/chat/contents/TranslatableContents/getKey ()Ljava/lang/String; +MD: net/minecraft/network/chat/contents/TranslatableContents/m_237509_ (I)Lnet/minecraft/network/chat/FormattedText; net/minecraft/network/chat/contents/TranslatableContents/getArgument (I)Lnet/minecraft/network/chat/FormattedText; +MD: net/minecraft/network/chat/contents/TranslatableContents/m_237515_ (Ljava/lang/String;Ljava/util/function/Consumer;)V net/minecraft/network/chat/contents/TranslatableContents/decomposeTemplate (Ljava/lang/String;Ljava/util/function/Consumer;)V +MD: net/minecraft/network/chat/contents/TranslatableContents/m_237523_ ()[Ljava/lang/Object; net/minecraft/network/chat/contents/TranslatableContents/getArgs ()[Ljava/lang/Object; +MD: net/minecraft/network/chat/contents/TranslatableContents/m_237524_ ()V net/minecraft/network/chat/contents/TranslatableContents/decompose ()V +MD: net/minecraft/network/chat/contents/TranslatableContents/m_264577_ ()Ljava/lang/String; net/minecraft/network/chat/contents/TranslatableContents/getFallback ()Ljava/lang/String; +MD: net/minecraft/network/chat/contents/TranslatableContents/toString ()Ljava/lang/String; net/minecraft/network/chat/contents/TranslatableContents/toString ()Ljava/lang/String; +MD: net/minecraft/network/chat/contents/TranslatableFormatException/ (Lnet/minecraft/network/chat/contents/TranslatableContents;Ljava/lang/Throwable;)V net/minecraft/network/chat/contents/TranslatableFormatException/ (Lnet/minecraft/network/chat/contents/TranslatableContents;Ljava/lang/Throwable;)V +MD: net/minecraft/network/chat/contents/TranslatableFormatException/ (Lnet/minecraft/network/chat/contents/TranslatableContents;I)V net/minecraft/network/chat/contents/TranslatableFormatException/ (Lnet/minecraft/network/chat/contents/TranslatableContents;I)V +MD: net/minecraft/network/chat/contents/TranslatableFormatException/ (Lnet/minecraft/network/chat/contents/TranslatableContents;Ljava/lang/String;)V net/minecraft/network/chat/contents/TranslatableFormatException/ (Lnet/minecraft/network/chat/contents/TranslatableContents;Ljava/lang/String;)V +MD: net/minecraft/network/protocol/BundleDelimiterPacket/ ()V net/minecraft/network/protocol/BundleDelimiterPacket/ ()V +MD: net/minecraft/network/protocol/BundleDelimiterPacket/m_5779_ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/BundleDelimiterPacket/write (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/BundleDelimiterPacket/m_5797_ (Lnet/minecraft/network/PacketListener;)V net/minecraft/network/protocol/BundleDelimiterPacket/handle (Lnet/minecraft/network/PacketListener;)V +MD: net/minecraft/network/protocol/BundlePacket/ (Ljava/lang/Iterable;)V net/minecraft/network/protocol/BundlePacket/ (Ljava/lang/Iterable;)V +MD: net/minecraft/network/protocol/BundlePacket/m_264216_ ()Ljava/lang/Iterable; net/minecraft/network/protocol/BundlePacket/subPackets ()Ljava/lang/Iterable; +MD: net/minecraft/network/protocol/BundlePacket/m_5779_ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/BundlePacket/write (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/BundlerInfo/ ()V net/minecraft/network/protocol/BundlerInfo/ ()V +MD: net/minecraft/network/protocol/BundlerInfo/m_264118_ (Ljava/lang/Class;Ljava/util/function/Function;Lnet/minecraft/network/protocol/BundleDelimiterPacket;)Lnet/minecraft/network/protocol/BundlerInfo; net/minecraft/network/protocol/BundlerInfo/createForPacket (Ljava/lang/Class;Ljava/util/function/Function;Lnet/minecraft/network/protocol/BundleDelimiterPacket;)Lnet/minecraft/network/protocol/BundlerInfo; +MD: net/minecraft/network/protocol/BundlerInfo/m_264150_ (Lnet/minecraft/network/protocol/Packet;)Lnet/minecraft/network/protocol/BundlerInfo$Bundler; net/minecraft/network/protocol/BundlerInfo/startPacketBundling (Lnet/minecraft/network/protocol/Packet;)Lnet/minecraft/network/protocol/BundlerInfo$Bundler; +MD: net/minecraft/network/protocol/BundlerInfo/m_264360_ (Lnet/minecraft/network/protocol/Packet;Ljava/util/function/Consumer;)V net/minecraft/network/protocol/BundlerInfo/unbundlePacket (Lnet/minecraft/network/protocol/Packet;Ljava/util/function/Consumer;)V +MD: net/minecraft/network/protocol/BundlerInfo$1/ ()V net/minecraft/network/protocol/BundlerInfo$1/ ()V +MD: net/minecraft/network/protocol/BundlerInfo$1/m_264150_ (Lnet/minecraft/network/protocol/Packet;)Lnet/minecraft/network/protocol/BundlerInfo$Bundler; net/minecraft/network/protocol/BundlerInfo$1/startPacketBundling (Lnet/minecraft/network/protocol/Packet;)Lnet/minecraft/network/protocol/BundlerInfo$Bundler; +MD: net/minecraft/network/protocol/BundlerInfo$1/m_264360_ (Lnet/minecraft/network/protocol/Packet;Ljava/util/function/Consumer;)V net/minecraft/network/protocol/BundlerInfo$1/unbundlePacket (Lnet/minecraft/network/protocol/Packet;Ljava/util/function/Consumer;)V +MD: net/minecraft/network/protocol/BundlerInfo$2/ (Ljava/lang/Class;Lnet/minecraft/network/protocol/BundleDelimiterPacket;Ljava/util/function/Function;)V net/minecraft/network/protocol/BundlerInfo$2/ (Ljava/lang/Class;Lnet/minecraft/network/protocol/BundleDelimiterPacket;Ljava/util/function/Function;)V +MD: net/minecraft/network/protocol/BundlerInfo$2/m_264150_ (Lnet/minecraft/network/protocol/Packet;)Lnet/minecraft/network/protocol/BundlerInfo$Bundler; net/minecraft/network/protocol/BundlerInfo$2/startPacketBundling (Lnet/minecraft/network/protocol/Packet;)Lnet/minecraft/network/protocol/BundlerInfo$Bundler; +MD: net/minecraft/network/protocol/BundlerInfo$2/m_264360_ (Lnet/minecraft/network/protocol/Packet;Ljava/util/function/Consumer;)V net/minecraft/network/protocol/BundlerInfo$2/unbundlePacket (Lnet/minecraft/network/protocol/Packet;Ljava/util/function/Consumer;)V +MD: net/minecraft/network/protocol/BundlerInfo$2$1/ (Lnet/minecraft/network/protocol/BundlerInfo$2;)V net/minecraft/network/protocol/BundlerInfo$2$1/ (Lnet/minecraft/network/protocol/BundlerInfo$2;)V +MD: net/minecraft/network/protocol/BundlerInfo$2$1/m_264116_ (Lnet/minecraft/network/protocol/Packet;)Lnet/minecraft/network/protocol/Packet; net/minecraft/network/protocol/BundlerInfo$2$1/addPacket (Lnet/minecraft/network/protocol/Packet;)Lnet/minecraft/network/protocol/Packet; +MD: net/minecraft/network/protocol/BundlerInfo$Bundler/m_264116_ (Lnet/minecraft/network/protocol/Packet;)Lnet/minecraft/network/protocol/Packet; net/minecraft/network/protocol/BundlerInfo$Bundler/addPacket (Lnet/minecraft/network/protocol/Packet;)Lnet/minecraft/network/protocol/Packet; +MD: net/minecraft/network/protocol/BundlerInfo$Provider/m_264121_ (Lnet/minecraft/network/protocol/PacketFlow;)Lnet/minecraft/network/protocol/BundlerInfo; net/minecraft/network/protocol/BundlerInfo$Provider/getBundlerInfo (Lnet/minecraft/network/protocol/PacketFlow;)Lnet/minecraft/network/protocol/BundlerInfo; +MD: net/minecraft/network/protocol/Packet/m_5779_ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/Packet/write (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/Packet/m_5797_ (Lnet/minecraft/network/PacketListener;)V net/minecraft/network/protocol/Packet/handle (Lnet/minecraft/network/PacketListener;)V +MD: net/minecraft/network/protocol/Packet/m_6588_ ()Z net/minecraft/network/protocol/Packet/isSkippable ()Z +MD: net/minecraft/network/protocol/PacketFlow/ ()V net/minecraft/network/protocol/PacketFlow/ ()V +MD: net/minecraft/network/protocol/PacketFlow/ (Ljava/lang/String;I)V net/minecraft/network/protocol/PacketFlow/ (Ljava/lang/String;I)V +MD: net/minecraft/network/protocol/PacketFlow/m_178539_ ()Lnet/minecraft/network/protocol/PacketFlow; net/minecraft/network/protocol/PacketFlow/getOpposite ()Lnet/minecraft/network/protocol/PacketFlow; +MD: net/minecraft/network/protocol/PacketFlow/m_178540_ ()[Lnet/minecraft/network/protocol/PacketFlow; net/minecraft/network/protocol/PacketFlow/$values ()[Lnet/minecraft/network/protocol/PacketFlow; +MD: net/minecraft/network/protocol/PacketFlow/valueOf (Ljava/lang/String;)Lnet/minecraft/network/protocol/PacketFlow; net/minecraft/network/protocol/PacketFlow/valueOf (Ljava/lang/String;)Lnet/minecraft/network/protocol/PacketFlow; +MD: net/minecraft/network/protocol/PacketFlow/values ()[Lnet/minecraft/network/protocol/PacketFlow; net/minecraft/network/protocol/PacketFlow/values ()[Lnet/minecraft/network/protocol/PacketFlow; +MD: net/minecraft/network/protocol/PacketUtils/ ()V net/minecraft/network/protocol/PacketUtils/ ()V +MD: net/minecraft/network/protocol/PacketUtils/ ()V net/minecraft/network/protocol/PacketUtils/ ()V +MD: net/minecraft/network/protocol/PacketUtils/m_131359_ (Lnet/minecraft/network/protocol/Packet;Lnet/minecraft/network/PacketListener;Lnet/minecraft/server/level/ServerLevel;)V net/minecraft/network/protocol/PacketUtils/ensureRunningOnSameThread (Lnet/minecraft/network/protocol/Packet;Lnet/minecraft/network/PacketListener;Lnet/minecraft/server/level/ServerLevel;)V +MD: net/minecraft/network/protocol/PacketUtils/m_131363_ (Lnet/minecraft/network/protocol/Packet;Lnet/minecraft/network/PacketListener;Lnet/minecraft/util/thread/BlockableEventLoop;)V net/minecraft/network/protocol/PacketUtils/ensureRunningOnSameThread (Lnet/minecraft/network/protocol/Packet;Lnet/minecraft/network/PacketListener;Lnet/minecraft/util/thread/BlockableEventLoop;)V +MD: net/minecraft/network/protocol/PacketUtils/m_263899_ (Lnet/minecraft/network/PacketListener;Lnet/minecraft/network/protocol/Packet;)V net/minecraft/network/protocol/PacketUtils/lambda$ensureRunningOnSameThread$0 (Lnet/minecraft/network/PacketListener;Lnet/minecraft/network/protocol/Packet;)V +MD: net/minecraft/network/protocol/game/ClientGamePacketListener/m_141913_ (Lnet/minecraft/network/protocol/game/ClientboundSetSubtitleTextPacket;)V net/minecraft/network/protocol/game/ClientGamePacketListener/setSubtitleText (Lnet/minecraft/network/protocol/game/ClientboundSetSubtitleTextPacket;)V +MD: net/minecraft/network/protocol/game/ClientGamePacketListener/m_141955_ (Lnet/minecraft/network/protocol/game/ClientboundPingPacket;)V net/minecraft/network/protocol/game/ClientGamePacketListener/handlePing (Lnet/minecraft/network/protocol/game/ClientboundPingPacket;)V +MD: net/minecraft/network/protocol/game/ClientGamePacketListener/m_142056_ (Lnet/minecraft/network/protocol/game/ClientboundSetBorderWarningDelayPacket;)V net/minecraft/network/protocol/game/ClientGamePacketListener/handleSetBorderWarningDelay (Lnet/minecraft/network/protocol/game/ClientboundSetBorderWarningDelayPacket;)V +MD: net/minecraft/network/protocol/game/ClientGamePacketListener/m_142058_ (Lnet/minecraft/network/protocol/game/ClientboundPlayerCombatEnterPacket;)V net/minecraft/network/protocol/game/ClientGamePacketListener/handlePlayerCombatEnter (Lnet/minecraft/network/protocol/game/ClientboundPlayerCombatEnterPacket;)V +MD: net/minecraft/network/protocol/game/ClientGamePacketListener/m_142185_ (Lnet/minecraft/network/protocol/game/ClientboundSetTitlesAnimationPacket;)V net/minecraft/network/protocol/game/ClientGamePacketListener/setTitlesAnimation (Lnet/minecraft/network/protocol/game/ClientboundSetTitlesAnimationPacket;)V +MD: net/minecraft/network/protocol/game/ClientGamePacketListener/m_142234_ (Lnet/minecraft/network/protocol/game/ClientboundPlayerCombatEndPacket;)V net/minecraft/network/protocol/game/ClientGamePacketListener/handlePlayerCombatEnd (Lnet/minecraft/network/protocol/game/ClientboundPlayerCombatEndPacket;)V +MD: net/minecraft/network/protocol/game/ClientGamePacketListener/m_142237_ (Lnet/minecraft/network/protocol/game/ClientboundInitializeBorderPacket;)V net/minecraft/network/protocol/game/ClientGamePacketListener/handleInitializeBorder (Lnet/minecraft/network/protocol/game/ClientboundInitializeBorderPacket;)V +MD: net/minecraft/network/protocol/game/ClientGamePacketListener/m_142238_ (Lnet/minecraft/network/protocol/game/ClientboundSetBorderSizePacket;)V net/minecraft/network/protocol/game/ClientGamePacketListener/handleSetBorderSize (Lnet/minecraft/network/protocol/game/ClientboundSetBorderSizePacket;)V +MD: net/minecraft/network/protocol/game/ClientGamePacketListener/m_142442_ (Lnet/minecraft/network/protocol/game/ClientboundSetTitleTextPacket;)V net/minecraft/network/protocol/game/ClientGamePacketListener/setTitleText (Lnet/minecraft/network/protocol/game/ClientboundSetTitleTextPacket;)V +MD: net/minecraft/network/protocol/game/ClientGamePacketListener/m_142456_ (Lnet/minecraft/network/protocol/game/ClientboundSetActionBarTextPacket;)V net/minecraft/network/protocol/game/ClientGamePacketListener/setActionBarText (Lnet/minecraft/network/protocol/game/ClientboundSetActionBarTextPacket;)V +MD: net/minecraft/network/protocol/game/ClientGamePacketListener/m_142612_ (Lnet/minecraft/network/protocol/game/ClientboundSetBorderCenterPacket;)V net/minecraft/network/protocol/game/ClientGamePacketListener/handleSetBorderCenter (Lnet/minecraft/network/protocol/game/ClientboundSetBorderCenterPacket;)V +MD: net/minecraft/network/protocol/game/ClientGamePacketListener/m_142686_ (Lnet/minecraft/network/protocol/game/ClientboundSetBorderLerpSizePacket;)V net/minecraft/network/protocol/game/ClientGamePacketListener/handleSetBorderLerpSize (Lnet/minecraft/network/protocol/game/ClientboundSetBorderLerpSizePacket;)V +MD: net/minecraft/network/protocol/game/ClientGamePacketListener/m_142696_ (Lnet/minecraft/network/protocol/game/ClientboundSetBorderWarningDistancePacket;)V net/minecraft/network/protocol/game/ClientGamePacketListener/handleSetBorderWarningDistance (Lnet/minecraft/network/protocol/game/ClientboundSetBorderWarningDistancePacket;)V +MD: net/minecraft/network/protocol/game/ClientGamePacketListener/m_142747_ (Lnet/minecraft/network/protocol/game/ClientboundPlayerCombatKillPacket;)V net/minecraft/network/protocol/game/ClientGamePacketListener/handlePlayerCombatKill (Lnet/minecraft/network/protocol/game/ClientboundPlayerCombatKillPacket;)V +MD: net/minecraft/network/protocol/game/ClientGamePacketListener/m_142766_ (Lnet/minecraft/network/protocol/game/ClientboundClearTitlesPacket;)V net/minecraft/network/protocol/game/ClientGamePacketListener/handleTitlesClear (Lnet/minecraft/network/protocol/game/ClientboundClearTitlesPacket;)V +MD: net/minecraft/network/protocol/game/ClientGamePacketListener/m_182047_ (Lnet/minecraft/network/protocol/game/ClientboundRemoveEntitiesPacket;)V net/minecraft/network/protocol/game/ClientGamePacketListener/handleRemoveEntities (Lnet/minecraft/network/protocol/game/ClientboundRemoveEntitiesPacket;)V +MD: net/minecraft/network/protocol/game/ClientGamePacketListener/m_183388_ (Lnet/minecraft/network/protocol/game/ClientboundLevelChunkWithLightPacket;)V net/minecraft/network/protocol/game/ClientGamePacketListener/handleLevelChunkWithLight (Lnet/minecraft/network/protocol/game/ClientboundLevelChunkWithLightPacket;)V +MD: net/minecraft/network/protocol/game/ClientGamePacketListener/m_183514_ (Lnet/minecraft/network/protocol/game/ClientboundLightUpdatePacket;)V net/minecraft/network/protocol/game/ClientGamePacketListener/handleLightUpdatePacket (Lnet/minecraft/network/protocol/game/ClientboundLightUpdatePacket;)V +MD: net/minecraft/network/protocol/game/ClientGamePacketListener/m_183623_ (Lnet/minecraft/network/protocol/game/ClientboundSetSimulationDistancePacket;)V net/minecraft/network/protocol/game/ClientGamePacketListener/handleSetSimulationDistance (Lnet/minecraft/network/protocol/game/ClientboundSetSimulationDistancePacket;)V +MD: net/minecraft/network/protocol/game/ClientGamePacketListener/m_213565_ (Lnet/minecraft/network/protocol/game/ClientboundPlayerInfoRemovePacket;)V net/minecraft/network/protocol/game/ClientGamePacketListener/handlePlayerInfoRemove (Lnet/minecraft/network/protocol/game/ClientboundPlayerInfoRemovePacket;)V +MD: net/minecraft/network/protocol/game/ClientGamePacketListener/m_213629_ (Lnet/minecraft/network/protocol/game/ClientboundPlayerChatPacket;)V net/minecraft/network/protocol/game/ClientGamePacketListener/handlePlayerChat (Lnet/minecraft/network/protocol/game/ClientboundPlayerChatPacket;)V +MD: net/minecraft/network/protocol/game/ClientGamePacketListener/m_213672_ (Lnet/minecraft/network/protocol/game/ClientboundServerDataPacket;)V net/minecraft/network/protocol/game/ClientGamePacketListener/handleServerData (Lnet/minecraft/network/protocol/game/ClientboundServerDataPacket;)V +MD: net/minecraft/network/protocol/game/ClientGamePacketListener/m_213990_ (Lnet/minecraft/network/protocol/game/ClientboundSystemChatPacket;)V net/minecraft/network/protocol/game/ClientGamePacketListener/handleSystemChat (Lnet/minecraft/network/protocol/game/ClientboundSystemChatPacket;)V +MD: net/minecraft/network/protocol/game/ClientGamePacketListener/m_214045_ (Lnet/minecraft/network/protocol/game/ClientboundPlayerInfoUpdatePacket;)V net/minecraft/network/protocol/game/ClientGamePacketListener/handlePlayerInfoUpdate (Lnet/minecraft/network/protocol/game/ClientboundPlayerInfoUpdatePacket;)V +MD: net/minecraft/network/protocol/game/ClientGamePacketListener/m_214108_ (Lnet/minecraft/network/protocol/game/ClientboundBlockChangedAckPacket;)V net/minecraft/network/protocol/game/ClientGamePacketListener/handleBlockChangedAck (Lnet/minecraft/network/protocol/game/ClientboundBlockChangedAckPacket;)V +MD: net/minecraft/network/protocol/game/ClientGamePacketListener/m_240695_ (Lnet/minecraft/network/protocol/game/ClientboundCustomChatCompletionsPacket;)V net/minecraft/network/protocol/game/ClientGamePacketListener/handleCustomChatCompletions (Lnet/minecraft/network/protocol/game/ClientboundCustomChatCompletionsPacket;)V +MD: net/minecraft/network/protocol/game/ClientGamePacketListener/m_241037_ (Lnet/minecraft/network/protocol/game/ClientboundDeleteChatPacket;)V net/minecraft/network/protocol/game/ClientGamePacketListener/handleDeleteChat (Lnet/minecraft/network/protocol/game/ClientboundDeleteChatPacket;)V +MD: net/minecraft/network/protocol/game/ClientGamePacketListener/m_241155_ (Lnet/minecraft/network/protocol/game/ClientboundUpdateEnabledFeaturesPacket;)V net/minecraft/network/protocol/game/ClientGamePacketListener/handleEnabledFeatures (Lnet/minecraft/network/protocol/game/ClientboundUpdateEnabledFeaturesPacket;)V +MD: net/minecraft/network/protocol/game/ClientGamePacketListener/m_264143_ (Lnet/minecraft/network/protocol/game/ClientboundHurtAnimationPacket;)V net/minecraft/network/protocol/game/ClientGamePacketListener/handleHurtAnimation (Lnet/minecraft/network/protocol/game/ClientboundHurtAnimationPacket;)V +MD: net/minecraft/network/protocol/game/ClientGamePacketListener/m_264308_ (Lnet/minecraft/network/protocol/game/ClientboundBundlePacket;)V net/minecraft/network/protocol/game/ClientGamePacketListener/handleBundlePacket (Lnet/minecraft/network/protocol/game/ClientboundBundlePacket;)V +MD: net/minecraft/network/protocol/game/ClientGamePacketListener/m_269082_ (Lnet/minecraft/network/protocol/game/ClientboundDamageEventPacket;)V net/minecraft/network/protocol/game/ClientGamePacketListener/handleDamageEvent (Lnet/minecraft/network/protocol/game/ClientboundDamageEventPacket;)V +MD: net/minecraft/network/protocol/game/ClientGamePacketListener/m_274374_ (Lnet/minecraft/network/protocol/game/ClientboundChunksBiomesPacket;)V net/minecraft/network/protocol/game/ClientGamePacketListener/handleChunksBiomes (Lnet/minecraft/network/protocol/game/ClientboundChunksBiomesPacket;)V +MD: net/minecraft/network/protocol/game/ClientGamePacketListener/m_5498_ (Lnet/minecraft/network/protocol/game/ClientboundUpdateAdvancementsPacket;)V net/minecraft/network/protocol/game/ClientGamePacketListener/handleUpdateAdvancementsPacket (Lnet/minecraft/network/protocol/game/ClientboundUpdateAdvancementsPacket;)V +MD: net/minecraft/network/protocol/game/ClientGamePacketListener/m_5547_ (Lnet/minecraft/network/protocol/game/ClientboundSetHealthPacket;)V net/minecraft/network/protocol/game/ClientGamePacketListener/handleSetHealth (Lnet/minecraft/network/protocol/game/ClientboundSetHealthPacket;)V +MD: net/minecraft/network/protocol/game/ClientGamePacketListener/m_5556_ (Lnet/minecraft/network/protocol/game/ClientboundSetDisplayObjectivePacket;)V net/minecraft/network/protocol/game/ClientGamePacketListener/handleSetDisplayObjective (Lnet/minecraft/network/protocol/game/ClientboundSetDisplayObjectivePacket;)V +MD: net/minecraft/network/protocol/game/ClientGamePacketListener/m_5582_ (Lnet/minecraft/network/protocol/game/ClientboundSetPlayerTeamPacket;)V net/minecraft/network/protocol/game/ClientGamePacketListener/handleSetPlayerTeamPacket (Lnet/minecraft/network/protocol/game/ClientboundSetPlayerTeamPacket;)V +MD: net/minecraft/network/protocol/game/ClientGamePacketListener/m_5587_ (Lnet/minecraft/network/protocol/game/ClientboundResourcePackPacket;)V net/minecraft/network/protocol/game/ClientGamePacketListener/handleResourcePack (Lnet/minecraft/network/protocol/game/ClientboundResourcePackPacket;)V +MD: net/minecraft/network/protocol/game/ClientGamePacketListener/m_5599_ (Lnet/minecraft/network/protocol/game/ClientboundSetEntityLinkPacket;)V net/minecraft/network/protocol/game/ClientGamePacketListener/handleEntityLinkPacket (Lnet/minecraft/network/protocol/game/ClientboundSetEntityLinkPacket;)V +MD: net/minecraft/network/protocol/game/ClientGamePacketListener/m_5612_ (Lnet/minecraft/network/protocol/game/ClientboundSetCarriedItemPacket;)V net/minecraft/network/protocol/game/ClientGamePacketListener/handleSetCarriedItem (Lnet/minecraft/network/protocol/game/ClientboundSetCarriedItemPacket;)V +MD: net/minecraft/network/protocol/game/ClientGamePacketListener/m_5682_ (Lnet/minecraft/network/protocol/game/ClientboundPlayerPositionPacket;)V net/minecraft/network/protocol/game/ClientGamePacketListener/handleMovePlayer (Lnet/minecraft/network/protocol/game/ClientboundPlayerPositionPacket;)V +MD: net/minecraft/network/protocol/game/ClientGamePacketListener/m_5729_ (Lnet/minecraft/network/protocol/game/ClientboundForgetLevelChunkPacket;)V net/minecraft/network/protocol/game/ClientGamePacketListener/handleForgetLevelChunk (Lnet/minecraft/network/protocol/game/ClientboundForgetLevelChunkPacket;)V +MD: net/minecraft/network/protocol/game/ClientGamePacketListener/m_5735_ (Lnet/minecraft/network/protocol/game/ClientboundContainerSetSlotPacket;)V net/minecraft/network/protocol/game/ClientGamePacketListener/handleContainerSetSlot (Lnet/minecraft/network/protocol/game/ClientboundContainerSetSlotPacket;)V +MD: net/minecraft/network/protocol/game/ClientGamePacketListener/m_5767_ (Lnet/minecraft/network/protocol/game/ClientboundPlayerAbilitiesPacket;)V net/minecraft/network/protocol/game/ClientGamePacketListener/handlePlayerAbilities (Lnet/minecraft/network/protocol/game/ClientboundPlayerAbilitiesPacket;)V +MD: net/minecraft/network/protocol/game/ClientGamePacketListener/m_5771_ (Lnet/minecraft/network/protocol/game/ClientboundSectionBlocksUpdatePacket;)V net/minecraft/network/protocol/game/ClientGamePacketListener/handleChunkBlocksUpdate (Lnet/minecraft/network/protocol/game/ClientboundSectionBlocksUpdatePacket;)V +MD: net/minecraft/network/protocol/game/ClientGamePacketListener/m_5859_ (Lnet/minecraft/network/protocol/game/ClientboundUpdateTagsPacket;)V net/minecraft/network/protocol/game/ClientGamePacketListener/handleUpdateTags (Lnet/minecraft/network/protocol/game/ClientboundUpdateTagsPacket;)V +MD: net/minecraft/network/protocol/game/ClientGamePacketListener/m_5863_ (Lnet/minecraft/network/protocol/game/ClientboundSoundEntityPacket;)V net/minecraft/network/protocol/game/ClientGamePacketListener/handleSoundEntityEvent (Lnet/minecraft/network/protocol/game/ClientboundSoundEntityPacket;)V +MD: net/minecraft/network/protocol/game/ClientGamePacketListener/m_5943_ (Lnet/minecraft/network/protocol/game/ClientboundBlockDestructionPacket;)V net/minecraft/network/protocol/game/ClientGamePacketListener/handleBlockDestruction (Lnet/minecraft/network/protocol/game/ClientboundBlockDestructionPacket;)V +MD: net/minecraft/network/protocol/game/ClientGamePacketListener/m_5980_ (Lnet/minecraft/network/protocol/game/ClientboundOpenScreenPacket;)V net/minecraft/network/protocol/game/ClientGamePacketListener/handleOpenScreen (Lnet/minecraft/network/protocol/game/ClientboundOpenScreenPacket;)V +MD: net/minecraft/network/protocol/game/ClientGamePacketListener/m_5998_ (Lnet/minecraft/network/protocol/game/ClientboundLoginPacket;)V net/minecraft/network/protocol/game/ClientGamePacketListener/handleLogin (Lnet/minecraft/network/protocol/game/ClientboundLoginPacket;)V +MD: net/minecraft/network/protocol/game/ClientGamePacketListener/m_6008_ (Lnet/minecraft/network/protocol/game/ClientboundDisconnectPacket;)V net/minecraft/network/protocol/game/ClientGamePacketListener/handleDisconnect (Lnet/minecraft/network/protocol/game/ClientboundDisconnectPacket;)V +MD: net/minecraft/network/protocol/game/ClientGamePacketListener/m_6148_ (Lnet/minecraft/network/protocol/game/ClientboundTagQueryPacket;)V net/minecraft/network/protocol/game/ClientGamePacketListener/handleTagQueryPacket (Lnet/minecraft/network/protocol/game/ClientboundTagQueryPacket;)V +MD: net/minecraft/network/protocol/game/ClientGamePacketListener/m_6176_ (Lnet/minecraft/network/protocol/game/ClientboundRotateHeadPacket;)V net/minecraft/network/protocol/game/ClientGamePacketListener/handleRotateMob (Lnet/minecraft/network/protocol/game/ClientboundRotateHeadPacket;)V +MD: net/minecraft/network/protocol/game/ClientGamePacketListener/m_6235_ (Lnet/minecraft/network/protocol/game/ClientboundTabListPacket;)V net/minecraft/network/protocol/game/ClientGamePacketListener/handleTabListCustomisation (Lnet/minecraft/network/protocol/game/ClientboundTabListPacket;)V +MD: net/minecraft/network/protocol/game/ClientGamePacketListener/m_6327_ (Lnet/minecraft/network/protocol/game/ClientboundUpdateRecipesPacket;)V net/minecraft/network/protocol/game/ClientGamePacketListener/handleUpdateRecipes (Lnet/minecraft/network/protocol/game/ClientboundUpdateRecipesPacket;)V +MD: net/minecraft/network/protocol/game/ClientGamePacketListener/m_6403_ (Lnet/minecraft/network/protocol/game/ClientboundSetPassengersPacket;)V net/minecraft/network/protocol/game/ClientGamePacketListener/handleSetEntityPassengersPacket (Lnet/minecraft/network/protocol/game/ClientboundSetPassengersPacket;)V +MD: net/minecraft/network/protocol/game/ClientGamePacketListener/m_6435_ (Lnet/minecraft/network/protocol/game/ClientboundTeleportEntityPacket;)V net/minecraft/network/protocol/game/ClientGamePacketListener/handleTeleportEntity (Lnet/minecraft/network/protocol/game/ClientboundTeleportEntityPacket;)V +MD: net/minecraft/network/protocol/game/ClientGamePacketListener/m_6447_ (Lnet/minecraft/network/protocol/game/ClientboundSetCameraPacket;)V net/minecraft/network/protocol/game/ClientGamePacketListener/handleSetCamera (Lnet/minecraft/network/protocol/game/ClientboundSetCameraPacket;)V +MD: net/minecraft/network/protocol/game/ClientGamePacketListener/m_6455_ (Lnet/minecraft/network/protocol/game/ClientboundSetEntityDataPacket;)V net/minecraft/network/protocol/game/ClientGamePacketListener/handleSetEntityData (Lnet/minecraft/network/protocol/game/ClientboundSetEntityDataPacket;)V +MD: net/minecraft/network/protocol/game/ClientGamePacketListener/m_6476_ (Lnet/minecraft/network/protocol/game/ClientboundRemoveMobEffectPacket;)V net/minecraft/network/protocol/game/ClientGamePacketListener/handleRemoveMobEffect (Lnet/minecraft/network/protocol/game/ClientboundRemoveMobEffectPacket;)V +MD: net/minecraft/network/protocol/game/ClientGamePacketListener/m_6482_ (Lnet/minecraft/network/protocol/game/ClientboundAddPlayerPacket;)V net/minecraft/network/protocol/game/ClientGamePacketListener/handleAddPlayer (Lnet/minecraft/network/protocol/game/ClientboundAddPlayerPacket;)V +MD: net/minecraft/network/protocol/game/ClientGamePacketListener/m_6503_ (Lnet/minecraft/network/protocol/game/ClientboundOpenBookPacket;)V net/minecraft/network/protocol/game/ClientGamePacketListener/handleOpenBook (Lnet/minecraft/network/protocol/game/ClientboundOpenBookPacket;)V +MD: net/minecraft/network/protocol/game/ClientGamePacketListener/m_6571_ (Lnet/minecraft/network/protocol/game/ClientboundSetDefaultSpawnPositionPacket;)V net/minecraft/network/protocol/game/ClientGamePacketListener/handleSetSpawn (Lnet/minecraft/network/protocol/game/ClientboundSetDefaultSpawnPositionPacket;)V +MD: net/minecraft/network/protocol/game/ClientGamePacketListener/m_6664_ (Lnet/minecraft/network/protocol/game/ClientboundChangeDifficultyPacket;)V net/minecraft/network/protocol/game/ClientGamePacketListener/handleChangeDifficulty (Lnet/minecraft/network/protocol/game/ClientboundChangeDifficultyPacket;)V +MD: net/minecraft/network/protocol/game/ClientGamePacketListener/m_6747_ (Lnet/minecraft/network/protocol/game/ClientboundSetExperiencePacket;)V net/minecraft/network/protocol/game/ClientGamePacketListener/handleSetExperience (Lnet/minecraft/network/protocol/game/ClientboundSetExperiencePacket;)V +MD: net/minecraft/network/protocol/game/ClientGamePacketListener/m_6771_ (Lnet/minecraft/network/protocol/game/ClientboundAddEntityPacket;)V net/minecraft/network/protocol/game/ClientGamePacketListener/handleAddEntity (Lnet/minecraft/network/protocol/game/ClientboundAddEntityPacket;)V +MD: net/minecraft/network/protocol/game/ClientGamePacketListener/m_6773_ (Lnet/minecraft/network/protocol/game/ClientboundBlockUpdatePacket;)V net/minecraft/network/protocol/game/ClientGamePacketListener/handleBlockUpdate (Lnet/minecraft/network/protocol/game/ClientboundBlockUpdatePacket;)V +MD: net/minecraft/network/protocol/game/ClientGamePacketListener/m_6837_ (Lnet/minecraft/network/protocol/game/ClientboundContainerSetContentPacket;)V net/minecraft/network/protocol/game/ClientGamePacketListener/handleContainerContent (Lnet/minecraft/network/protocol/game/ClientboundContainerSetContentPacket;)V +MD: net/minecraft/network/protocol/game/ClientGamePacketListener/m_6905_ (Lnet/minecraft/network/protocol/game/ClientboundHorseScreenOpenPacket;)V net/minecraft/network/protocol/game/ClientGamePacketListener/handleHorseScreenOpen (Lnet/minecraft/network/protocol/game/ClientboundHorseScreenOpenPacket;)V +MD: net/minecraft/network/protocol/game/ClientGamePacketListener/m_7039_ (Lnet/minecraft/network/protocol/game/ClientboundDisguisedChatPacket;)V net/minecraft/network/protocol/game/ClientGamePacketListener/handleDisguisedChat (Lnet/minecraft/network/protocol/game/ClientboundDisguisedChatPacket;)V +MD: net/minecraft/network/protocol/game/ClientGamePacketListener/m_7183_ (Lnet/minecraft/network/protocol/game/ClientboundStopSoundPacket;)V net/minecraft/network/protocol/game/ClientGamePacketListener/handleStopSoundEvent (Lnet/minecraft/network/protocol/game/ClientboundStopSoundPacket;)V +MD: net/minecraft/network/protocol/game/ClientGamePacketListener/m_7231_ (Lnet/minecraft/network/protocol/game/ClientboundKeepAlivePacket;)V net/minecraft/network/protocol/game/ClientGamePacketListener/handleKeepAlive (Lnet/minecraft/network/protocol/game/ClientboundKeepAlivePacket;)V +MD: net/minecraft/network/protocol/game/ClientGamePacketListener/m_7244_ (Lnet/minecraft/network/protocol/game/ClientboundPlayerLookAtPacket;)V net/minecraft/network/protocol/game/ClientGamePacketListener/handleLookAt (Lnet/minecraft/network/protocol/game/ClientboundPlayerLookAtPacket;)V +MD: net/minecraft/network/protocol/game/ClientGamePacketListener/m_7257_ (Lnet/minecraft/network/protocol/game/ClientboundContainerSetDataPacket;)V net/minecraft/network/protocol/game/ClientGamePacketListener/handleContainerSetData (Lnet/minecraft/network/protocol/game/ClientboundContainerSetDataPacket;)V +MD: net/minecraft/network/protocol/game/ClientGamePacketListener/m_7271_ (Lnet/minecraft/network/protocol/game/ClientboundAwardStatsPacket;)V net/minecraft/network/protocol/game/ClientGamePacketListener/handleAwardStats (Lnet/minecraft/network/protocol/game/ClientboundAwardStatsPacket;)V +MD: net/minecraft/network/protocol/game/ClientGamePacketListener/m_7277_ (Lnet/minecraft/network/protocol/game/ClientboundSetEquipmentPacket;)V net/minecraft/network/protocol/game/ClientGamePacketListener/handleSetEquipment (Lnet/minecraft/network/protocol/game/ClientboundSetEquipmentPacket;)V +MD: net/minecraft/network/protocol/game/ClientGamePacketListener/m_7299_ (Lnet/minecraft/network/protocol/game/ClientboundSetChunkCacheRadiusPacket;)V net/minecraft/network/protocol/game/ClientGamePacketListener/handleSetChunkCacheRadius (Lnet/minecraft/network/protocol/game/ClientboundSetChunkCacheRadiusPacket;)V +MD: net/minecraft/network/protocol/game/ClientGamePacketListener/m_7330_ (Lnet/minecraft/network/protocol/game/ClientboundMerchantOffersPacket;)V net/minecraft/network/protocol/game/ClientGamePacketListener/handleMerchantOffers (Lnet/minecraft/network/protocol/game/ClientboundMerchantOffersPacket;)V +MD: net/minecraft/network/protocol/game/ClientGamePacketListener/m_7339_ (Lnet/minecraft/network/protocol/game/ClientboundPlaceGhostRecipePacket;)V net/minecraft/network/protocol/game/ClientGamePacketListener/handlePlaceRecipe (Lnet/minecraft/network/protocol/game/ClientboundPlaceGhostRecipePacket;)V +MD: net/minecraft/network/protocol/game/ClientGamePacketListener/m_7345_ (Lnet/minecraft/network/protocol/game/ClientboundExplodePacket;)V net/minecraft/network/protocol/game/ClientGamePacketListener/handleExplosion (Lnet/minecraft/network/protocol/game/ClientboundExplodePacket;)V +MD: net/minecraft/network/protocol/game/ClientGamePacketListener/m_7364_ (Lnet/minecraft/network/protocol/game/ClientboundBlockEventPacket;)V net/minecraft/network/protocol/game/ClientGamePacketListener/handleBlockEvent (Lnet/minecraft/network/protocol/game/ClientboundBlockEventPacket;)V +MD: net/minecraft/network/protocol/game/ClientGamePacketListener/m_7406_ (Lnet/minecraft/network/protocol/game/ClientboundLevelParticlesPacket;)V net/minecraft/network/protocol/game/ClientGamePacketListener/handleParticleEvent (Lnet/minecraft/network/protocol/game/ClientboundLevelParticlesPacket;)V +MD: net/minecraft/network/protocol/game/ClientGamePacketListener/m_7410_ (Lnet/minecraft/network/protocol/game/ClientboundMoveVehiclePacket;)V net/minecraft/network/protocol/game/ClientGamePacketListener/handleMoveVehicle (Lnet/minecraft/network/protocol/game/ClientboundMoveVehiclePacket;)V +MD: net/minecraft/network/protocol/game/ClientGamePacketListener/m_7413_ (Lnet/minecraft/network/protocol/game/ClientboundCustomPayloadPacket;)V net/minecraft/network/protocol/game/ClientGamePacketListener/handleCustomPayload (Lnet/minecraft/network/protocol/game/ClientboundCustomPayloadPacket;)V +MD: net/minecraft/network/protocol/game/ClientGamePacketListener/m_7443_ (Lnet/minecraft/network/protocol/game/ClientboundCommandsPacket;)V net/minecraft/network/protocol/game/ClientGamePacketListener/handleCommands (Lnet/minecraft/network/protocol/game/ClientboundCommandsPacket;)V +MD: net/minecraft/network/protocol/game/ClientGamePacketListener/m_7519_ (Lnet/minecraft/network/protocol/game/ClientboundSetScorePacket;)V net/minecraft/network/protocol/game/ClientGamePacketListener/handleSetScore (Lnet/minecraft/network/protocol/game/ClientboundSetScorePacket;)V +MD: net/minecraft/network/protocol/game/ClientGamePacketListener/m_7545_ (Lnet/minecraft/network/protocol/game/ClientboundBlockEntityDataPacket;)V net/minecraft/network/protocol/game/ClientGamePacketListener/handleBlockEntityData (Lnet/minecraft/network/protocol/game/ClientboundBlockEntityDataPacket;)V +MD: net/minecraft/network/protocol/game/ClientGamePacketListener/m_7553_ (Lnet/minecraft/network/protocol/game/ClientboundSelectAdvancementsTabPacket;)V net/minecraft/network/protocol/game/ClientGamePacketListener/handleSelectAdvancementsTab (Lnet/minecraft/network/protocol/game/ClientboundSelectAdvancementsTabPacket;)V +MD: net/minecraft/network/protocol/game/ClientGamePacketListener/m_7589_ (Lnet/minecraft/network/protocol/game/ClientboundCommandSuggestionsPacket;)V net/minecraft/network/protocol/game/ClientGamePacketListener/handleCommandSuggestions (Lnet/minecraft/network/protocol/game/ClientboundCommandSuggestionsPacket;)V +MD: net/minecraft/network/protocol/game/ClientGamePacketListener/m_7616_ (Lnet/minecraft/network/protocol/game/ClientboundGameEventPacket;)V net/minecraft/network/protocol/game/ClientGamePacketListener/handleGameEvent (Lnet/minecraft/network/protocol/game/ClientboundGameEventPacket;)V +MD: net/minecraft/network/protocol/game/ClientGamePacketListener/m_7628_ (Lnet/minecraft/network/protocol/game/ClientboundEntityEventPacket;)V net/minecraft/network/protocol/game/ClientGamePacketListener/handleEntityEvent (Lnet/minecraft/network/protocol/game/ClientboundEntityEventPacket;)V +MD: net/minecraft/network/protocol/game/ClientGamePacketListener/m_7633_ (Lnet/minecraft/network/protocol/game/ClientboundMapItemDataPacket;)V net/minecraft/network/protocol/game/ClientGamePacketListener/handleMapItemData (Lnet/minecraft/network/protocol/game/ClientboundMapItemDataPacket;)V +MD: net/minecraft/network/protocol/game/ClientGamePacketListener/m_7685_ (Lnet/minecraft/network/protocol/game/ClientboundBossEventPacket;)V net/minecraft/network/protocol/game/ClientGamePacketListener/handleBossUpdate (Lnet/minecraft/network/protocol/game/ClientboundBossEventPacket;)V +MD: net/minecraft/network/protocol/game/ClientGamePacketListener/m_7701_ (Lnet/minecraft/network/protocol/game/ClientboundCooldownPacket;)V net/minecraft/network/protocol/game/ClientGamePacketListener/handleItemCooldown (Lnet/minecraft/network/protocol/game/ClientboundCooldownPacket;)V +MD: net/minecraft/network/protocol/game/ClientGamePacketListener/m_7704_ (Lnet/minecraft/network/protocol/game/ClientboundLevelEventPacket;)V net/minecraft/network/protocol/game/ClientGamePacketListener/handleLevelEvent (Lnet/minecraft/network/protocol/game/ClientboundLevelEventPacket;)V +MD: net/minecraft/network/protocol/game/ClientGamePacketListener/m_7708_ (Lnet/minecraft/network/protocol/game/ClientboundAddExperienceOrbPacket;)V net/minecraft/network/protocol/game/ClientGamePacketListener/handleAddExperienceOrb (Lnet/minecraft/network/protocol/game/ClientboundAddExperienceOrbPacket;)V +MD: net/minecraft/network/protocol/game/ClientGamePacketListener/m_7710_ (Lnet/minecraft/network/protocol/game/ClientboundUpdateAttributesPacket;)V net/minecraft/network/protocol/game/ClientGamePacketListener/handleUpdateAttributes (Lnet/minecraft/network/protocol/game/ClientboundUpdateAttributesPacket;)V +MD: net/minecraft/network/protocol/game/ClientGamePacketListener/m_7776_ (Lnet/minecraft/network/protocol/game/ClientboundContainerClosePacket;)V net/minecraft/network/protocol/game/ClientGamePacketListener/handleContainerClose (Lnet/minecraft/network/protocol/game/ClientboundContainerClosePacket;)V +MD: net/minecraft/network/protocol/game/ClientGamePacketListener/m_7791_ (Lnet/minecraft/network/protocol/game/ClientboundAnimatePacket;)V net/minecraft/network/protocol/game/ClientGamePacketListener/handleAnimate (Lnet/minecraft/network/protocol/game/ClientboundAnimatePacket;)V +MD: net/minecraft/network/protocol/game/ClientGamePacketListener/m_7865_ (Lnet/minecraft/network/protocol/game/ClientboundMoveEntityPacket;)V net/minecraft/network/protocol/game/ClientGamePacketListener/handleMoveEntity (Lnet/minecraft/network/protocol/game/ClientboundMoveEntityPacket;)V +MD: net/minecraft/network/protocol/game/ClientGamePacketListener/m_7885_ (Lnet/minecraft/network/protocol/game/ClientboundSetTimePacket;)V net/minecraft/network/protocol/game/ClientGamePacketListener/handleSetTime (Lnet/minecraft/network/protocol/game/ClientboundSetTimePacket;)V +MD: net/minecraft/network/protocol/game/ClientGamePacketListener/m_7915_ (Lnet/minecraft/network/protocol/game/ClientboundUpdateMobEffectPacket;)V net/minecraft/network/protocol/game/ClientGamePacketListener/handleUpdateMobEffect (Lnet/minecraft/network/protocol/game/ClientboundUpdateMobEffectPacket;)V +MD: net/minecraft/network/protocol/game/ClientGamePacketListener/m_7957_ (Lnet/minecraft/network/protocol/game/ClientboundSetObjectivePacket;)V net/minecraft/network/protocol/game/ClientGamePacketListener/handleAddObjective (Lnet/minecraft/network/protocol/game/ClientboundSetObjectivePacket;)V +MD: net/minecraft/network/protocol/game/ClientGamePacketListener/m_7992_ (Lnet/minecraft/network/protocol/game/ClientboundRespawnPacket;)V net/minecraft/network/protocol/game/ClientGamePacketListener/handleRespawn (Lnet/minecraft/network/protocol/game/ClientboundRespawnPacket;)V +MD: net/minecraft/network/protocol/game/ClientGamePacketListener/m_8001_ (Lnet/minecraft/network/protocol/game/ClientboundTakeItemEntityPacket;)V net/minecraft/network/protocol/game/ClientGamePacketListener/handleTakeItemEntity (Lnet/minecraft/network/protocol/game/ClientboundTakeItemEntityPacket;)V +MD: net/minecraft/network/protocol/game/ClientGamePacketListener/m_8047_ (Lnet/minecraft/network/protocol/game/ClientboundOpenSignEditorPacket;)V net/minecraft/network/protocol/game/ClientGamePacketListener/handleOpenSignEditor (Lnet/minecraft/network/protocol/game/ClientboundOpenSignEditorPacket;)V +MD: net/minecraft/network/protocol/game/ClientGamePacketListener/m_8048_ (Lnet/minecraft/network/protocol/game/ClientboundSetEntityMotionPacket;)V net/minecraft/network/protocol/game/ClientGamePacketListener/handleSetEntityMotion (Lnet/minecraft/network/protocol/game/ClientboundSetEntityMotionPacket;)V +MD: net/minecraft/network/protocol/game/ClientGamePacketListener/m_8065_ (Lnet/minecraft/network/protocol/game/ClientboundSetChunkCacheCenterPacket;)V net/minecraft/network/protocol/game/ClientGamePacketListener/handleSetChunkCacheCenter (Lnet/minecraft/network/protocol/game/ClientboundSetChunkCacheCenterPacket;)V +MD: net/minecraft/network/protocol/game/ClientGamePacketListener/m_8068_ (Lnet/minecraft/network/protocol/game/ClientboundSoundPacket;)V net/minecraft/network/protocol/game/ClientGamePacketListener/handleSoundEvent (Lnet/minecraft/network/protocol/game/ClientboundSoundPacket;)V +MD: net/minecraft/network/protocol/game/ClientGamePacketListener/m_8076_ (Lnet/minecraft/network/protocol/game/ClientboundRecipePacket;)V net/minecraft/network/protocol/game/ClientGamePacketListener/handleAddOrRemoveRecipes (Lnet/minecraft/network/protocol/game/ClientboundRecipePacket;)V +MD: net/minecraft/network/protocol/game/ClientboundAddEntityPacket/ (Lnet/minecraft/world/entity/Entity;)V net/minecraft/network/protocol/game/ClientboundAddEntityPacket/ (Lnet/minecraft/world/entity/Entity;)V +MD: net/minecraft/network/protocol/game/ClientboundAddEntityPacket/ (Lnet/minecraft/world/entity/Entity;I)V net/minecraft/network/protocol/game/ClientboundAddEntityPacket/ (Lnet/minecraft/world/entity/Entity;I)V +MD: net/minecraft/network/protocol/game/ClientboundAddEntityPacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ClientboundAddEntityPacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ClientboundAddEntityPacket/ (Lnet/minecraft/world/entity/Entity;ILnet/minecraft/core/BlockPos;)V net/minecraft/network/protocol/game/ClientboundAddEntityPacket/ (Lnet/minecraft/world/entity/Entity;ILnet/minecraft/core/BlockPos;)V +MD: net/minecraft/network/protocol/game/ClientboundAddEntityPacket/ (ILjava/util/UUID;DDDFFLnet/minecraft/world/entity/EntityType;ILnet/minecraft/world/phys/Vec3;D)V net/minecraft/network/protocol/game/ClientboundAddEntityPacket/ (ILjava/util/UUID;DDDFFLnet/minecraft/world/entity/EntityType;ILnet/minecraft/world/phys/Vec3;D)V +MD: net/minecraft/network/protocol/game/ClientboundAddEntityPacket/m_131496_ ()I net/minecraft/network/protocol/game/ClientboundAddEntityPacket/getId ()I +MD: net/minecraft/network/protocol/game/ClientboundAddEntityPacket/m_131499_ ()Ljava/util/UUID; net/minecraft/network/protocol/game/ClientboundAddEntityPacket/getUUID ()Ljava/util/UUID; +MD: net/minecraft/network/protocol/game/ClientboundAddEntityPacket/m_131500_ ()D net/minecraft/network/protocol/game/ClientboundAddEntityPacket/getX ()D +MD: net/minecraft/network/protocol/game/ClientboundAddEntityPacket/m_131501_ ()D net/minecraft/network/protocol/game/ClientboundAddEntityPacket/getY ()D +MD: net/minecraft/network/protocol/game/ClientboundAddEntityPacket/m_131502_ ()D net/minecraft/network/protocol/game/ClientboundAddEntityPacket/getZ ()D +MD: net/minecraft/network/protocol/game/ClientboundAddEntityPacket/m_131503_ ()D net/minecraft/network/protocol/game/ClientboundAddEntityPacket/getXa ()D +MD: net/minecraft/network/protocol/game/ClientboundAddEntityPacket/m_131504_ ()D net/minecraft/network/protocol/game/ClientboundAddEntityPacket/getYa ()D +MD: net/minecraft/network/protocol/game/ClientboundAddEntityPacket/m_131505_ ()D net/minecraft/network/protocol/game/ClientboundAddEntityPacket/getZa ()D +MD: net/minecraft/network/protocol/game/ClientboundAddEntityPacket/m_131508_ ()Lnet/minecraft/world/entity/EntityType; net/minecraft/network/protocol/game/ClientboundAddEntityPacket/getType ()Lnet/minecraft/world/entity/EntityType; +MD: net/minecraft/network/protocol/game/ClientboundAddEntityPacket/m_131509_ ()I net/minecraft/network/protocol/game/ClientboundAddEntityPacket/getData ()I +MD: net/minecraft/network/protocol/game/ClientboundAddEntityPacket/m_237566_ ()F net/minecraft/network/protocol/game/ClientboundAddEntityPacket/getXRot ()F +MD: net/minecraft/network/protocol/game/ClientboundAddEntityPacket/m_237567_ ()F net/minecraft/network/protocol/game/ClientboundAddEntityPacket/getYRot ()F +MD: net/minecraft/network/protocol/game/ClientboundAddEntityPacket/m_237568_ ()F net/minecraft/network/protocol/game/ClientboundAddEntityPacket/getYHeadRot ()F +MD: net/minecraft/network/protocol/game/ClientboundAddEntityPacket/m_5779_ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ClientboundAddEntityPacket/write (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ClientboundAddEntityPacket/m_5797_ (Lnet/minecraft/network/protocol/game/ClientGamePacketListener;)V net/minecraft/network/protocol/game/ClientboundAddEntityPacket/handle (Lnet/minecraft/network/protocol/game/ClientGamePacketListener;)V +MD: net/minecraft/network/protocol/game/ClientboundAddEntityPacket/m_5797_ (Lnet/minecraft/network/PacketListener;)V net/minecraft/network/protocol/game/ClientboundAddEntityPacket/handle (Lnet/minecraft/network/PacketListener;)V +MD: net/minecraft/network/protocol/game/ClientboundAddExperienceOrbPacket/ (Lnet/minecraft/world/entity/ExperienceOrb;)V net/minecraft/network/protocol/game/ClientboundAddExperienceOrbPacket/ (Lnet/minecraft/world/entity/ExperienceOrb;)V +MD: net/minecraft/network/protocol/game/ClientboundAddExperienceOrbPacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ClientboundAddExperienceOrbPacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ClientboundAddExperienceOrbPacket/m_131524_ ()I net/minecraft/network/protocol/game/ClientboundAddExperienceOrbPacket/getId ()I +MD: net/minecraft/network/protocol/game/ClientboundAddExperienceOrbPacket/m_131527_ ()D net/minecraft/network/protocol/game/ClientboundAddExperienceOrbPacket/getX ()D +MD: net/minecraft/network/protocol/game/ClientboundAddExperienceOrbPacket/m_131528_ ()D net/minecraft/network/protocol/game/ClientboundAddExperienceOrbPacket/getY ()D +MD: net/minecraft/network/protocol/game/ClientboundAddExperienceOrbPacket/m_131529_ ()D net/minecraft/network/protocol/game/ClientboundAddExperienceOrbPacket/getZ ()D +MD: net/minecraft/network/protocol/game/ClientboundAddExperienceOrbPacket/m_131530_ ()I net/minecraft/network/protocol/game/ClientboundAddExperienceOrbPacket/getValue ()I +MD: net/minecraft/network/protocol/game/ClientboundAddExperienceOrbPacket/m_5779_ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ClientboundAddExperienceOrbPacket/write (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ClientboundAddExperienceOrbPacket/m_5797_ (Lnet/minecraft/network/PacketListener;)V net/minecraft/network/protocol/game/ClientboundAddExperienceOrbPacket/handle (Lnet/minecraft/network/PacketListener;)V +MD: net/minecraft/network/protocol/game/ClientboundAddExperienceOrbPacket/m_5797_ (Lnet/minecraft/network/protocol/game/ClientGamePacketListener;)V net/minecraft/network/protocol/game/ClientboundAddExperienceOrbPacket/handle (Lnet/minecraft/network/protocol/game/ClientGamePacketListener;)V +MD: net/minecraft/network/protocol/game/ClientboundAddPlayerPacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ClientboundAddPlayerPacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ClientboundAddPlayerPacket/ (Lnet/minecraft/world/entity/player/Player;)V net/minecraft/network/protocol/game/ClientboundAddPlayerPacket/ (Lnet/minecraft/world/entity/player/Player;)V +MD: net/minecraft/network/protocol/game/ClientboundAddPlayerPacket/m_131603_ ()I net/minecraft/network/protocol/game/ClientboundAddPlayerPacket/getEntityId ()I +MD: net/minecraft/network/protocol/game/ClientboundAddPlayerPacket/m_131606_ ()Ljava/util/UUID; net/minecraft/network/protocol/game/ClientboundAddPlayerPacket/getPlayerId ()Ljava/util/UUID; +MD: net/minecraft/network/protocol/game/ClientboundAddPlayerPacket/m_131607_ ()D net/minecraft/network/protocol/game/ClientboundAddPlayerPacket/getX ()D +MD: net/minecraft/network/protocol/game/ClientboundAddPlayerPacket/m_131608_ ()D net/minecraft/network/protocol/game/ClientboundAddPlayerPacket/getY ()D +MD: net/minecraft/network/protocol/game/ClientboundAddPlayerPacket/m_131609_ ()D net/minecraft/network/protocol/game/ClientboundAddPlayerPacket/getZ ()D +MD: net/minecraft/network/protocol/game/ClientboundAddPlayerPacket/m_131610_ ()B net/minecraft/network/protocol/game/ClientboundAddPlayerPacket/getyRot ()B +MD: net/minecraft/network/protocol/game/ClientboundAddPlayerPacket/m_131611_ ()B net/minecraft/network/protocol/game/ClientboundAddPlayerPacket/getxRot ()B +MD: net/minecraft/network/protocol/game/ClientboundAddPlayerPacket/m_5779_ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ClientboundAddPlayerPacket/write (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ClientboundAddPlayerPacket/m_5797_ (Lnet/minecraft/network/PacketListener;)V net/minecraft/network/protocol/game/ClientboundAddPlayerPacket/handle (Lnet/minecraft/network/PacketListener;)V +MD: net/minecraft/network/protocol/game/ClientboundAddPlayerPacket/m_5797_ (Lnet/minecraft/network/protocol/game/ClientGamePacketListener;)V net/minecraft/network/protocol/game/ClientboundAddPlayerPacket/handle (Lnet/minecraft/network/protocol/game/ClientGamePacketListener;)V +MD: net/minecraft/network/protocol/game/ClientboundAnimatePacket/ (Lnet/minecraft/world/entity/Entity;I)V net/minecraft/network/protocol/game/ClientboundAnimatePacket/ (Lnet/minecraft/world/entity/Entity;I)V +MD: net/minecraft/network/protocol/game/ClientboundAnimatePacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ClientboundAnimatePacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ClientboundAnimatePacket/m_131624_ ()I net/minecraft/network/protocol/game/ClientboundAnimatePacket/getId ()I +MD: net/minecraft/network/protocol/game/ClientboundAnimatePacket/m_131627_ ()I net/minecraft/network/protocol/game/ClientboundAnimatePacket/getAction ()I +MD: net/minecraft/network/protocol/game/ClientboundAnimatePacket/m_5779_ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ClientboundAnimatePacket/write (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ClientboundAnimatePacket/m_5797_ (Lnet/minecraft/network/PacketListener;)V net/minecraft/network/protocol/game/ClientboundAnimatePacket/handle (Lnet/minecraft/network/PacketListener;)V +MD: net/minecraft/network/protocol/game/ClientboundAnimatePacket/m_5797_ (Lnet/minecraft/network/protocol/game/ClientGamePacketListener;)V net/minecraft/network/protocol/game/ClientboundAnimatePacket/handle (Lnet/minecraft/network/protocol/game/ClientGamePacketListener;)V +MD: net/minecraft/network/protocol/game/ClientboundAwardStatsPacket/ (Lit/unimi/dsi/fastutil/objects/Object2IntMap;)V net/minecraft/network/protocol/game/ClientboundAwardStatsPacket/ (Lit/unimi/dsi/fastutil/objects/Object2IntMap;)V +MD: net/minecraft/network/protocol/game/ClientboundAwardStatsPacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ClientboundAwardStatsPacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ClientboundAwardStatsPacket/m_131643_ ()Ljava/util/Map; net/minecraft/network/protocol/game/ClientboundAwardStatsPacket/getStats ()Ljava/util/Map; +MD: net/minecraft/network/protocol/game/ClientboundAwardStatsPacket/m_237569_ (Lnet/minecraft/network/FriendlyByteBuf;Lnet/minecraft/stats/Stat;)V net/minecraft/network/protocol/game/ClientboundAwardStatsPacket/writeStatCap (Lnet/minecraft/network/FriendlyByteBuf;Lnet/minecraft/stats/Stat;)V +MD: net/minecraft/network/protocol/game/ClientboundAwardStatsPacket/m_237572_ (Lnet/minecraft/network/FriendlyByteBuf;Lnet/minecraft/stats/StatType;)Lnet/minecraft/stats/Stat; net/minecraft/network/protocol/game/ClientboundAwardStatsPacket/readStatCap (Lnet/minecraft/network/FriendlyByteBuf;Lnet/minecraft/stats/StatType;)Lnet/minecraft/stats/Stat; +MD: net/minecraft/network/protocol/game/ClientboundAwardStatsPacket/m_257122_ (Lnet/minecraft/network/FriendlyByteBuf;Lnet/minecraft/network/FriendlyByteBuf;)Lnet/minecraft/stats/Stat; net/minecraft/network/protocol/game/ClientboundAwardStatsPacket/lambda$new$0 (Lnet/minecraft/network/FriendlyByteBuf;Lnet/minecraft/network/FriendlyByteBuf;)Lnet/minecraft/stats/Stat; +MD: net/minecraft/network/protocol/game/ClientboundAwardStatsPacket/m_5779_ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ClientboundAwardStatsPacket/write (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ClientboundAwardStatsPacket/m_5797_ (Lnet/minecraft/network/PacketListener;)V net/minecraft/network/protocol/game/ClientboundAwardStatsPacket/handle (Lnet/minecraft/network/PacketListener;)V +MD: net/minecraft/network/protocol/game/ClientboundAwardStatsPacket/m_5797_ (Lnet/minecraft/network/protocol/game/ClientGamePacketListener;)V net/minecraft/network/protocol/game/ClientboundAwardStatsPacket/handle (Lnet/minecraft/network/protocol/game/ClientGamePacketListener;)V +MD: net/minecraft/network/protocol/game/ClientboundBlockChangedAckPacket/ (I)V net/minecraft/network/protocol/game/ClientboundBlockChangedAckPacket/ (I)V +MD: net/minecraft/network/protocol/game/ClientboundBlockChangedAckPacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ClientboundBlockChangedAckPacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ClientboundBlockChangedAckPacket/equals (Ljava/lang/Object;)Z net/minecraft/network/protocol/game/ClientboundBlockChangedAckPacket/equals (Ljava/lang/Object;)Z +MD: net/minecraft/network/protocol/game/ClientboundBlockChangedAckPacket/f_237578_ ()I net/minecraft/network/protocol/game/ClientboundBlockChangedAckPacket/sequence ()I +MD: net/minecraft/network/protocol/game/ClientboundBlockChangedAckPacket/hashCode ()I net/minecraft/network/protocol/game/ClientboundBlockChangedAckPacket/hashCode ()I +MD: net/minecraft/network/protocol/game/ClientboundBlockChangedAckPacket/m_5779_ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ClientboundBlockChangedAckPacket/write (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ClientboundBlockChangedAckPacket/m_5797_ (Lnet/minecraft/network/PacketListener;)V net/minecraft/network/protocol/game/ClientboundBlockChangedAckPacket/handle (Lnet/minecraft/network/PacketListener;)V +MD: net/minecraft/network/protocol/game/ClientboundBlockChangedAckPacket/m_5797_ (Lnet/minecraft/network/protocol/game/ClientGamePacketListener;)V net/minecraft/network/protocol/game/ClientboundBlockChangedAckPacket/handle (Lnet/minecraft/network/protocol/game/ClientGamePacketListener;)V +MD: net/minecraft/network/protocol/game/ClientboundBlockChangedAckPacket/toString ()Ljava/lang/String; net/minecraft/network/protocol/game/ClientboundBlockChangedAckPacket/toString ()Ljava/lang/String; +MD: net/minecraft/network/protocol/game/ClientboundBlockDestructionPacket/ (ILnet/minecraft/core/BlockPos;I)V net/minecraft/network/protocol/game/ClientboundBlockDestructionPacket/ (ILnet/minecraft/core/BlockPos;I)V +MD: net/minecraft/network/protocol/game/ClientboundBlockDestructionPacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ClientboundBlockDestructionPacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ClientboundBlockDestructionPacket/m_131685_ ()I net/minecraft/network/protocol/game/ClientboundBlockDestructionPacket/getId ()I +MD: net/minecraft/network/protocol/game/ClientboundBlockDestructionPacket/m_131688_ ()Lnet/minecraft/core/BlockPos; net/minecraft/network/protocol/game/ClientboundBlockDestructionPacket/getPos ()Lnet/minecraft/core/BlockPos; +MD: net/minecraft/network/protocol/game/ClientboundBlockDestructionPacket/m_131689_ ()I net/minecraft/network/protocol/game/ClientboundBlockDestructionPacket/getProgress ()I +MD: net/minecraft/network/protocol/game/ClientboundBlockDestructionPacket/m_5779_ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ClientboundBlockDestructionPacket/write (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ClientboundBlockDestructionPacket/m_5797_ (Lnet/minecraft/network/PacketListener;)V net/minecraft/network/protocol/game/ClientboundBlockDestructionPacket/handle (Lnet/minecraft/network/PacketListener;)V +MD: net/minecraft/network/protocol/game/ClientboundBlockDestructionPacket/m_5797_ (Lnet/minecraft/network/protocol/game/ClientGamePacketListener;)V net/minecraft/network/protocol/game/ClientboundBlockDestructionPacket/handle (Lnet/minecraft/network/protocol/game/ClientGamePacketListener;)V +MD: net/minecraft/network/protocol/game/ClientboundBlockEntityDataPacket/ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/entity/BlockEntityType;Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/network/protocol/game/ClientboundBlockEntityDataPacket/ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/entity/BlockEntityType;Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/network/protocol/game/ClientboundBlockEntityDataPacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ClientboundBlockEntityDataPacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ClientboundBlockEntityDataPacket/m_131704_ ()Lnet/minecraft/core/BlockPos; net/minecraft/network/protocol/game/ClientboundBlockEntityDataPacket/getPos ()Lnet/minecraft/core/BlockPos; +MD: net/minecraft/network/protocol/game/ClientboundBlockEntityDataPacket/m_131708_ ()Lnet/minecraft/nbt/CompoundTag; net/minecraft/network/protocol/game/ClientboundBlockEntityDataPacket/getTag ()Lnet/minecraft/nbt/CompoundTag; +MD: net/minecraft/network/protocol/game/ClientboundBlockEntityDataPacket/m_195640_ (Lnet/minecraft/world/level/block/entity/BlockEntity;)Lnet/minecraft/network/protocol/game/ClientboundBlockEntityDataPacket; net/minecraft/network/protocol/game/ClientboundBlockEntityDataPacket/create (Lnet/minecraft/world/level/block/entity/BlockEntity;)Lnet/minecraft/network/protocol/game/ClientboundBlockEntityDataPacket; +MD: net/minecraft/network/protocol/game/ClientboundBlockEntityDataPacket/m_195642_ (Lnet/minecraft/world/level/block/entity/BlockEntity;Ljava/util/function/Function;)Lnet/minecraft/network/protocol/game/ClientboundBlockEntityDataPacket; net/minecraft/network/protocol/game/ClientboundBlockEntityDataPacket/create (Lnet/minecraft/world/level/block/entity/BlockEntity;Ljava/util/function/Function;)Lnet/minecraft/network/protocol/game/ClientboundBlockEntityDataPacket; +MD: net/minecraft/network/protocol/game/ClientboundBlockEntityDataPacket/m_195645_ ()Lnet/minecraft/world/level/block/entity/BlockEntityType; net/minecraft/network/protocol/game/ClientboundBlockEntityDataPacket/getType ()Lnet/minecraft/world/level/block/entity/BlockEntityType; +MD: net/minecraft/network/protocol/game/ClientboundBlockEntityDataPacket/m_5779_ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ClientboundBlockEntityDataPacket/write (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ClientboundBlockEntityDataPacket/m_5797_ (Lnet/minecraft/network/PacketListener;)V net/minecraft/network/protocol/game/ClientboundBlockEntityDataPacket/handle (Lnet/minecraft/network/PacketListener;)V +MD: net/minecraft/network/protocol/game/ClientboundBlockEntityDataPacket/m_5797_ (Lnet/minecraft/network/protocol/game/ClientGamePacketListener;)V net/minecraft/network/protocol/game/ClientboundBlockEntityDataPacket/handle (Lnet/minecraft/network/protocol/game/ClientGamePacketListener;)V +MD: net/minecraft/network/protocol/game/ClientboundBlockEventPacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ClientboundBlockEventPacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ClientboundBlockEventPacket/ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/Block;II)V net/minecraft/network/protocol/game/ClientboundBlockEventPacket/ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/Block;II)V +MD: net/minecraft/network/protocol/game/ClientboundBlockEventPacket/m_131725_ ()Lnet/minecraft/core/BlockPos; net/minecraft/network/protocol/game/ClientboundBlockEventPacket/getPos ()Lnet/minecraft/core/BlockPos; +MD: net/minecraft/network/protocol/game/ClientboundBlockEventPacket/m_131728_ ()I net/minecraft/network/protocol/game/ClientboundBlockEventPacket/getB0 ()I +MD: net/minecraft/network/protocol/game/ClientboundBlockEventPacket/m_131729_ ()I net/minecraft/network/protocol/game/ClientboundBlockEventPacket/getB1 ()I +MD: net/minecraft/network/protocol/game/ClientboundBlockEventPacket/m_131730_ ()Lnet/minecraft/world/level/block/Block; net/minecraft/network/protocol/game/ClientboundBlockEventPacket/getBlock ()Lnet/minecraft/world/level/block/Block; +MD: net/minecraft/network/protocol/game/ClientboundBlockEventPacket/m_5779_ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ClientboundBlockEventPacket/write (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ClientboundBlockEventPacket/m_5797_ (Lnet/minecraft/network/PacketListener;)V net/minecraft/network/protocol/game/ClientboundBlockEventPacket/handle (Lnet/minecraft/network/PacketListener;)V +MD: net/minecraft/network/protocol/game/ClientboundBlockEventPacket/m_5797_ (Lnet/minecraft/network/protocol/game/ClientGamePacketListener;)V net/minecraft/network/protocol/game/ClientboundBlockEventPacket/handle (Lnet/minecraft/network/protocol/game/ClientGamePacketListener;)V +MD: net/minecraft/network/protocol/game/ClientboundBlockUpdatePacket/ (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)V net/minecraft/network/protocol/game/ClientboundBlockUpdatePacket/ (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/network/protocol/game/ClientboundBlockUpdatePacket/ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V net/minecraft/network/protocol/game/ClientboundBlockUpdatePacket/ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V +MD: net/minecraft/network/protocol/game/ClientboundBlockUpdatePacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ClientboundBlockUpdatePacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ClientboundBlockUpdatePacket/m_131746_ ()Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/network/protocol/game/ClientboundBlockUpdatePacket/getBlockState ()Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/network/protocol/game/ClientboundBlockUpdatePacket/m_131749_ ()Lnet/minecraft/core/BlockPos; net/minecraft/network/protocol/game/ClientboundBlockUpdatePacket/getPos ()Lnet/minecraft/core/BlockPos; +MD: net/minecraft/network/protocol/game/ClientboundBlockUpdatePacket/m_5779_ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ClientboundBlockUpdatePacket/write (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ClientboundBlockUpdatePacket/m_5797_ (Lnet/minecraft/network/PacketListener;)V net/minecraft/network/protocol/game/ClientboundBlockUpdatePacket/handle (Lnet/minecraft/network/PacketListener;)V +MD: net/minecraft/network/protocol/game/ClientboundBlockUpdatePacket/m_5797_ (Lnet/minecraft/network/protocol/game/ClientGamePacketListener;)V net/minecraft/network/protocol/game/ClientboundBlockUpdatePacket/handle (Lnet/minecraft/network/protocol/game/ClientGamePacketListener;)V +MD: net/minecraft/network/protocol/game/ClientboundBossEventPacket/ ()V net/minecraft/network/protocol/game/ClientboundBossEventPacket/ ()V +MD: net/minecraft/network/protocol/game/ClientboundBossEventPacket/ (Ljava/util/UUID;Lnet/minecraft/network/protocol/game/ClientboundBossEventPacket$Operation;)V net/minecraft/network/protocol/game/ClientboundBossEventPacket/ (Ljava/util/UUID;Lnet/minecraft/network/protocol/game/ClientboundBossEventPacket$Operation;)V +MD: net/minecraft/network/protocol/game/ClientboundBossEventPacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ClientboundBossEventPacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ClientboundBossEventPacket/m_178639_ (Lnet/minecraft/world/BossEvent;)Lnet/minecraft/network/protocol/game/ClientboundBossEventPacket; net/minecraft/network/protocol/game/ClientboundBossEventPacket/createAddPacket (Lnet/minecraft/world/BossEvent;)Lnet/minecraft/network/protocol/game/ClientboundBossEventPacket; +MD: net/minecraft/network/protocol/game/ClientboundBossEventPacket/m_178641_ (Ljava/util/UUID;)Lnet/minecraft/network/protocol/game/ClientboundBossEventPacket; net/minecraft/network/protocol/game/ClientboundBossEventPacket/createRemovePacket (Ljava/util/UUID;)Lnet/minecraft/network/protocol/game/ClientboundBossEventPacket; +MD: net/minecraft/network/protocol/game/ClientboundBossEventPacket/m_178643_ (Lnet/minecraft/network/protocol/game/ClientboundBossEventPacket$Handler;)V net/minecraft/network/protocol/game/ClientboundBossEventPacket/dispatch (Lnet/minecraft/network/protocol/game/ClientboundBossEventPacket$Handler;)V +MD: net/minecraft/network/protocol/game/ClientboundBossEventPacket/m_178645_ (ZZZ)I net/minecraft/network/protocol/game/ClientboundBossEventPacket/encodeProperties (ZZZ)I +MD: net/minecraft/network/protocol/game/ClientboundBossEventPacket/m_178649_ (Lnet/minecraft/world/BossEvent;)Lnet/minecraft/network/protocol/game/ClientboundBossEventPacket; net/minecraft/network/protocol/game/ClientboundBossEventPacket/createUpdateProgressPacket (Lnet/minecraft/world/BossEvent;)Lnet/minecraft/network/protocol/game/ClientboundBossEventPacket; +MD: net/minecraft/network/protocol/game/ClientboundBossEventPacket/m_178651_ (Lnet/minecraft/world/BossEvent;)Lnet/minecraft/network/protocol/game/ClientboundBossEventPacket; net/minecraft/network/protocol/game/ClientboundBossEventPacket/createUpdateNamePacket (Lnet/minecraft/world/BossEvent;)Lnet/minecraft/network/protocol/game/ClientboundBossEventPacket; +MD: net/minecraft/network/protocol/game/ClientboundBossEventPacket/m_178653_ (Lnet/minecraft/world/BossEvent;)Lnet/minecraft/network/protocol/game/ClientboundBossEventPacket; net/minecraft/network/protocol/game/ClientboundBossEventPacket/createUpdateStylePacket (Lnet/minecraft/world/BossEvent;)Lnet/minecraft/network/protocol/game/ClientboundBossEventPacket; +MD: net/minecraft/network/protocol/game/ClientboundBossEventPacket/m_178655_ (Lnet/minecraft/world/BossEvent;)Lnet/minecraft/network/protocol/game/ClientboundBossEventPacket; net/minecraft/network/protocol/game/ClientboundBossEventPacket/createUpdatePropertiesPacket (Lnet/minecraft/world/BossEvent;)Lnet/minecraft/network/protocol/game/ClientboundBossEventPacket; +MD: net/minecraft/network/protocol/game/ClientboundBossEventPacket/m_5779_ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ClientboundBossEventPacket/write (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ClientboundBossEventPacket/m_5797_ (Lnet/minecraft/network/protocol/game/ClientGamePacketListener;)V net/minecraft/network/protocol/game/ClientboundBossEventPacket/handle (Lnet/minecraft/network/protocol/game/ClientGamePacketListener;)V +MD: net/minecraft/network/protocol/game/ClientboundBossEventPacket/m_5797_ (Lnet/minecraft/network/PacketListener;)V net/minecraft/network/protocol/game/ClientboundBossEventPacket/handle (Lnet/minecraft/network/PacketListener;)V +MD: net/minecraft/network/protocol/game/ClientboundBossEventPacket$1/ ()V net/minecraft/network/protocol/game/ClientboundBossEventPacket$1/ ()V +MD: net/minecraft/network/protocol/game/ClientboundBossEventPacket$1/m_142264_ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ClientboundBossEventPacket$1/write (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ClientboundBossEventPacket$1/m_142282_ (Ljava/util/UUID;Lnet/minecraft/network/protocol/game/ClientboundBossEventPacket$Handler;)V net/minecraft/network/protocol/game/ClientboundBossEventPacket$1/dispatch (Ljava/util/UUID;Lnet/minecraft/network/protocol/game/ClientboundBossEventPacket$Handler;)V +MD: net/minecraft/network/protocol/game/ClientboundBossEventPacket$1/m_142659_ ()Lnet/minecraft/network/protocol/game/ClientboundBossEventPacket$OperationType; net/minecraft/network/protocol/game/ClientboundBossEventPacket$1/getType ()Lnet/minecraft/network/protocol/game/ClientboundBossEventPacket$OperationType; +MD: net/minecraft/network/protocol/game/ClientboundBossEventPacket$AddOperation/ (Lnet/minecraft/world/BossEvent;)V net/minecraft/network/protocol/game/ClientboundBossEventPacket$AddOperation/ (Lnet/minecraft/world/BossEvent;)V +MD: net/minecraft/network/protocol/game/ClientboundBossEventPacket$AddOperation/ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ClientboundBossEventPacket$AddOperation/ (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ClientboundBossEventPacket$AddOperation/m_142264_ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ClientboundBossEventPacket$AddOperation/write (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ClientboundBossEventPacket$AddOperation/m_142282_ (Ljava/util/UUID;Lnet/minecraft/network/protocol/game/ClientboundBossEventPacket$Handler;)V net/minecraft/network/protocol/game/ClientboundBossEventPacket$AddOperation/dispatch (Ljava/util/UUID;Lnet/minecraft/network/protocol/game/ClientboundBossEventPacket$Handler;)V +MD: net/minecraft/network/protocol/game/ClientboundBossEventPacket$AddOperation/m_142659_ ()Lnet/minecraft/network/protocol/game/ClientboundBossEventPacket$OperationType; net/minecraft/network/protocol/game/ClientboundBossEventPacket$AddOperation/getType ()Lnet/minecraft/network/protocol/game/ClientboundBossEventPacket$OperationType; +MD: net/minecraft/network/protocol/game/ClientboundBossEventPacket$Handler/m_142107_ (Ljava/util/UUID;Lnet/minecraft/network/chat/Component;FLnet/minecraft/world/BossEvent$BossBarColor;Lnet/minecraft/world/BossEvent$BossBarOverlay;ZZZ)V net/minecraft/network/protocol/game/ClientboundBossEventPacket$Handler/add (Ljava/util/UUID;Lnet/minecraft/network/chat/Component;FLnet/minecraft/world/BossEvent$BossBarColor;Lnet/minecraft/world/BossEvent$BossBarOverlay;ZZZ)V +MD: net/minecraft/network/protocol/game/ClientboundBossEventPacket$Handler/m_142358_ (Ljava/util/UUID;Lnet/minecraft/world/BossEvent$BossBarColor;Lnet/minecraft/world/BossEvent$BossBarOverlay;)V net/minecraft/network/protocol/game/ClientboundBossEventPacket$Handler/updateStyle (Ljava/util/UUID;Lnet/minecraft/world/BossEvent$BossBarColor;Lnet/minecraft/world/BossEvent$BossBarOverlay;)V +MD: net/minecraft/network/protocol/game/ClientboundBossEventPacket$Handler/m_142366_ (Ljava/util/UUID;Lnet/minecraft/network/chat/Component;)V net/minecraft/network/protocol/game/ClientboundBossEventPacket$Handler/updateName (Ljava/util/UUID;Lnet/minecraft/network/chat/Component;)V +MD: net/minecraft/network/protocol/game/ClientboundBossEventPacket$Handler/m_142513_ (Ljava/util/UUID;ZZZ)V net/minecraft/network/protocol/game/ClientboundBossEventPacket$Handler/updateProperties (Ljava/util/UUID;ZZZ)V +MD: net/minecraft/network/protocol/game/ClientboundBossEventPacket$Handler/m_142653_ (Ljava/util/UUID;F)V net/minecraft/network/protocol/game/ClientboundBossEventPacket$Handler/updateProgress (Ljava/util/UUID;F)V +MD: net/minecraft/network/protocol/game/ClientboundBossEventPacket$Handler/m_142751_ (Ljava/util/UUID;)V net/minecraft/network/protocol/game/ClientboundBossEventPacket$Handler/remove (Ljava/util/UUID;)V +MD: net/minecraft/network/protocol/game/ClientboundBossEventPacket$Operation/m_142264_ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ClientboundBossEventPacket$Operation/write (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ClientboundBossEventPacket$Operation/m_142282_ (Ljava/util/UUID;Lnet/minecraft/network/protocol/game/ClientboundBossEventPacket$Handler;)V net/minecraft/network/protocol/game/ClientboundBossEventPacket$Operation/dispatch (Ljava/util/UUID;Lnet/minecraft/network/protocol/game/ClientboundBossEventPacket$Handler;)V +MD: net/minecraft/network/protocol/game/ClientboundBossEventPacket$Operation/m_142659_ ()Lnet/minecraft/network/protocol/game/ClientboundBossEventPacket$OperationType; net/minecraft/network/protocol/game/ClientboundBossEventPacket$Operation/getType ()Lnet/minecraft/network/protocol/game/ClientboundBossEventPacket$OperationType; +MD: net/minecraft/network/protocol/game/ClientboundBossEventPacket$OperationType/ ()V net/minecraft/network/protocol/game/ClientboundBossEventPacket$OperationType/ ()V +MD: net/minecraft/network/protocol/game/ClientboundBossEventPacket$OperationType/ (Ljava/lang/String;ILjava/util/function/Function;)V net/minecraft/network/protocol/game/ClientboundBossEventPacket$OperationType/ (Ljava/lang/String;ILjava/util/function/Function;)V +MD: net/minecraft/network/protocol/game/ClientboundBossEventPacket$OperationType/m_178717_ ()[Lnet/minecraft/network/protocol/game/ClientboundBossEventPacket$OperationType; net/minecraft/network/protocol/game/ClientboundBossEventPacket$OperationType/$values ()[Lnet/minecraft/network/protocol/game/ClientboundBossEventPacket$OperationType; +MD: net/minecraft/network/protocol/game/ClientboundBossEventPacket$OperationType/m_178718_ (Lnet/minecraft/network/FriendlyByteBuf;)Lnet/minecraft/network/protocol/game/ClientboundBossEventPacket$Operation; net/minecraft/network/protocol/game/ClientboundBossEventPacket$OperationType/lambda$static$0 (Lnet/minecraft/network/FriendlyByteBuf;)Lnet/minecraft/network/protocol/game/ClientboundBossEventPacket$Operation; +MD: net/minecraft/network/protocol/game/ClientboundBossEventPacket$OperationType/valueOf (Ljava/lang/String;)Lnet/minecraft/network/protocol/game/ClientboundBossEventPacket$OperationType; net/minecraft/network/protocol/game/ClientboundBossEventPacket$OperationType/valueOf (Ljava/lang/String;)Lnet/minecraft/network/protocol/game/ClientboundBossEventPacket$OperationType; +MD: net/minecraft/network/protocol/game/ClientboundBossEventPacket$OperationType/values ()[Lnet/minecraft/network/protocol/game/ClientboundBossEventPacket$OperationType; net/minecraft/network/protocol/game/ClientboundBossEventPacket$OperationType/values ()[Lnet/minecraft/network/protocol/game/ClientboundBossEventPacket$OperationType; +MD: net/minecraft/network/protocol/game/ClientboundBossEventPacket$UpdateNameOperation/ (Lnet/minecraft/network/chat/Component;)V net/minecraft/network/protocol/game/ClientboundBossEventPacket$UpdateNameOperation/ (Lnet/minecraft/network/chat/Component;)V +MD: net/minecraft/network/protocol/game/ClientboundBossEventPacket$UpdateNameOperation/ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ClientboundBossEventPacket$UpdateNameOperation/ (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ClientboundBossEventPacket$UpdateNameOperation/m_142264_ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ClientboundBossEventPacket$UpdateNameOperation/write (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ClientboundBossEventPacket$UpdateNameOperation/m_142282_ (Ljava/util/UUID;Lnet/minecraft/network/protocol/game/ClientboundBossEventPacket$Handler;)V net/minecraft/network/protocol/game/ClientboundBossEventPacket$UpdateNameOperation/dispatch (Ljava/util/UUID;Lnet/minecraft/network/protocol/game/ClientboundBossEventPacket$Handler;)V +MD: net/minecraft/network/protocol/game/ClientboundBossEventPacket$UpdateNameOperation/m_142659_ ()Lnet/minecraft/network/protocol/game/ClientboundBossEventPacket$OperationType; net/minecraft/network/protocol/game/ClientboundBossEventPacket$UpdateNameOperation/getType ()Lnet/minecraft/network/protocol/game/ClientboundBossEventPacket$OperationType; +MD: net/minecraft/network/protocol/game/ClientboundBossEventPacket$UpdateProgressOperation/ (F)V net/minecraft/network/protocol/game/ClientboundBossEventPacket$UpdateProgressOperation/ (F)V +MD: net/minecraft/network/protocol/game/ClientboundBossEventPacket$UpdateProgressOperation/ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ClientboundBossEventPacket$UpdateProgressOperation/ (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ClientboundBossEventPacket$UpdateProgressOperation/m_142264_ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ClientboundBossEventPacket$UpdateProgressOperation/write (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ClientboundBossEventPacket$UpdateProgressOperation/m_142282_ (Ljava/util/UUID;Lnet/minecraft/network/protocol/game/ClientboundBossEventPacket$Handler;)V net/minecraft/network/protocol/game/ClientboundBossEventPacket$UpdateProgressOperation/dispatch (Ljava/util/UUID;Lnet/minecraft/network/protocol/game/ClientboundBossEventPacket$Handler;)V +MD: net/minecraft/network/protocol/game/ClientboundBossEventPacket$UpdateProgressOperation/m_142659_ ()Lnet/minecraft/network/protocol/game/ClientboundBossEventPacket$OperationType; net/minecraft/network/protocol/game/ClientboundBossEventPacket$UpdateProgressOperation/getType ()Lnet/minecraft/network/protocol/game/ClientboundBossEventPacket$OperationType; +MD: net/minecraft/network/protocol/game/ClientboundBossEventPacket$UpdatePropertiesOperation/ (ZZZ)V net/minecraft/network/protocol/game/ClientboundBossEventPacket$UpdatePropertiesOperation/ (ZZZ)V +MD: net/minecraft/network/protocol/game/ClientboundBossEventPacket$UpdatePropertiesOperation/ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ClientboundBossEventPacket$UpdatePropertiesOperation/ (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ClientboundBossEventPacket$UpdatePropertiesOperation/m_142264_ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ClientboundBossEventPacket$UpdatePropertiesOperation/write (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ClientboundBossEventPacket$UpdatePropertiesOperation/m_142282_ (Ljava/util/UUID;Lnet/minecraft/network/protocol/game/ClientboundBossEventPacket$Handler;)V net/minecraft/network/protocol/game/ClientboundBossEventPacket$UpdatePropertiesOperation/dispatch (Ljava/util/UUID;Lnet/minecraft/network/protocol/game/ClientboundBossEventPacket$Handler;)V +MD: net/minecraft/network/protocol/game/ClientboundBossEventPacket$UpdatePropertiesOperation/m_142659_ ()Lnet/minecraft/network/protocol/game/ClientboundBossEventPacket$OperationType; net/minecraft/network/protocol/game/ClientboundBossEventPacket$UpdatePropertiesOperation/getType ()Lnet/minecraft/network/protocol/game/ClientboundBossEventPacket$OperationType; +MD: net/minecraft/network/protocol/game/ClientboundBossEventPacket$UpdateStyleOperation/ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ClientboundBossEventPacket$UpdateStyleOperation/ (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ClientboundBossEventPacket$UpdateStyleOperation/ (Lnet/minecraft/world/BossEvent$BossBarColor;Lnet/minecraft/world/BossEvent$BossBarOverlay;)V net/minecraft/network/protocol/game/ClientboundBossEventPacket$UpdateStyleOperation/ (Lnet/minecraft/world/BossEvent$BossBarColor;Lnet/minecraft/world/BossEvent$BossBarOverlay;)V +MD: net/minecraft/network/protocol/game/ClientboundBossEventPacket$UpdateStyleOperation/m_142264_ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ClientboundBossEventPacket$UpdateStyleOperation/write (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ClientboundBossEventPacket$UpdateStyleOperation/m_142282_ (Ljava/util/UUID;Lnet/minecraft/network/protocol/game/ClientboundBossEventPacket$Handler;)V net/minecraft/network/protocol/game/ClientboundBossEventPacket$UpdateStyleOperation/dispatch (Ljava/util/UUID;Lnet/minecraft/network/protocol/game/ClientboundBossEventPacket$Handler;)V +MD: net/minecraft/network/protocol/game/ClientboundBossEventPacket$UpdateStyleOperation/m_142659_ ()Lnet/minecraft/network/protocol/game/ClientboundBossEventPacket$OperationType; net/minecraft/network/protocol/game/ClientboundBossEventPacket$UpdateStyleOperation/getType ()Lnet/minecraft/network/protocol/game/ClientboundBossEventPacket$OperationType; +MD: net/minecraft/network/protocol/game/ClientboundBundlePacket/ (Ljava/lang/Iterable;)V net/minecraft/network/protocol/game/ClientboundBundlePacket/ (Ljava/lang/Iterable;)V +MD: net/minecraft/network/protocol/game/ClientboundBundlePacket/m_5797_ (Lnet/minecraft/network/PacketListener;)V net/minecraft/network/protocol/game/ClientboundBundlePacket/handle (Lnet/minecraft/network/PacketListener;)V +MD: net/minecraft/network/protocol/game/ClientboundBundlePacket/m_5797_ (Lnet/minecraft/network/protocol/game/ClientGamePacketListener;)V net/minecraft/network/protocol/game/ClientboundBundlePacket/handle (Lnet/minecraft/network/protocol/game/ClientGamePacketListener;)V +MD: net/minecraft/network/protocol/game/ClientboundChangeDifficultyPacket/ (Lnet/minecraft/world/Difficulty;Z)V net/minecraft/network/protocol/game/ClientboundChangeDifficultyPacket/ (Lnet/minecraft/world/Difficulty;Z)V +MD: net/minecraft/network/protocol/game/ClientboundChangeDifficultyPacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ClientboundChangeDifficultyPacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ClientboundChangeDifficultyPacket/m_131817_ ()Z net/minecraft/network/protocol/game/ClientboundChangeDifficultyPacket/isLocked ()Z +MD: net/minecraft/network/protocol/game/ClientboundChangeDifficultyPacket/m_131820_ ()Lnet/minecraft/world/Difficulty; net/minecraft/network/protocol/game/ClientboundChangeDifficultyPacket/getDifficulty ()Lnet/minecraft/world/Difficulty; +MD: net/minecraft/network/protocol/game/ClientboundChangeDifficultyPacket/m_5779_ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ClientboundChangeDifficultyPacket/write (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ClientboundChangeDifficultyPacket/m_5797_ (Lnet/minecraft/network/PacketListener;)V net/minecraft/network/protocol/game/ClientboundChangeDifficultyPacket/handle (Lnet/minecraft/network/PacketListener;)V +MD: net/minecraft/network/protocol/game/ClientboundChangeDifficultyPacket/m_5797_ (Lnet/minecraft/network/protocol/game/ClientGamePacketListener;)V net/minecraft/network/protocol/game/ClientboundChangeDifficultyPacket/handle (Lnet/minecraft/network/protocol/game/ClientGamePacketListener;)V +MD: net/minecraft/network/protocol/game/ClientboundChunksBiomesPacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ClientboundChunksBiomesPacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ClientboundChunksBiomesPacket/ (Ljava/util/List;)V net/minecraft/network/protocol/game/ClientboundChunksBiomesPacket/ (Ljava/util/List;)V +MD: net/minecraft/network/protocol/game/ClientboundChunksBiomesPacket/equals (Ljava/lang/Object;)Z net/minecraft/network/protocol/game/ClientboundChunksBiomesPacket/equals (Ljava/lang/Object;)Z +MD: net/minecraft/network/protocol/game/ClientboundChunksBiomesPacket/f_273816_ ()Ljava/util/List; net/minecraft/network/protocol/game/ClientboundChunksBiomesPacket/chunkBiomeData ()Ljava/util/List; +MD: net/minecraft/network/protocol/game/ClientboundChunksBiomesPacket/hashCode ()I net/minecraft/network/protocol/game/ClientboundChunksBiomesPacket/hashCode ()I +MD: net/minecraft/network/protocol/game/ClientboundChunksBiomesPacket/m_274331_ (Lnet/minecraft/network/FriendlyByteBuf;Lnet/minecraft/network/protocol/game/ClientboundChunksBiomesPacket$ChunkBiomeData;)V net/minecraft/network/protocol/game/ClientboundChunksBiomesPacket/lambda$write$0 (Lnet/minecraft/network/FriendlyByteBuf;Lnet/minecraft/network/protocol/game/ClientboundChunksBiomesPacket$ChunkBiomeData;)V +MD: net/minecraft/network/protocol/game/ClientboundChunksBiomesPacket/m_274415_ (Ljava/util/List;)Lnet/minecraft/network/protocol/game/ClientboundChunksBiomesPacket; net/minecraft/network/protocol/game/ClientboundChunksBiomesPacket/forChunks (Ljava/util/List;)Lnet/minecraft/network/protocol/game/ClientboundChunksBiomesPacket; +MD: net/minecraft/network/protocol/game/ClientboundChunksBiomesPacket/m_5779_ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ClientboundChunksBiomesPacket/write (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ClientboundChunksBiomesPacket/m_5797_ (Lnet/minecraft/network/PacketListener;)V net/minecraft/network/protocol/game/ClientboundChunksBiomesPacket/handle (Lnet/minecraft/network/PacketListener;)V +MD: net/minecraft/network/protocol/game/ClientboundChunksBiomesPacket/m_5797_ (Lnet/minecraft/network/protocol/game/ClientGamePacketListener;)V net/minecraft/network/protocol/game/ClientboundChunksBiomesPacket/handle (Lnet/minecraft/network/protocol/game/ClientGamePacketListener;)V +MD: net/minecraft/network/protocol/game/ClientboundChunksBiomesPacket/toString ()Ljava/lang/String; net/minecraft/network/protocol/game/ClientboundChunksBiomesPacket/toString ()Ljava/lang/String; +MD: net/minecraft/network/protocol/game/ClientboundChunksBiomesPacket$ChunkBiomeData/ (Lnet/minecraft/world/level/ChunkPos;[B)V net/minecraft/network/protocol/game/ClientboundChunksBiomesPacket$ChunkBiomeData/ (Lnet/minecraft/world/level/ChunkPos;[B)V +MD: net/minecraft/network/protocol/game/ClientboundChunksBiomesPacket$ChunkBiomeData/ (Lnet/minecraft/world/level/chunk/LevelChunk;)V net/minecraft/network/protocol/game/ClientboundChunksBiomesPacket$ChunkBiomeData/ (Lnet/minecraft/world/level/chunk/LevelChunk;)V +MD: net/minecraft/network/protocol/game/ClientboundChunksBiomesPacket$ChunkBiomeData/ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ClientboundChunksBiomesPacket$ChunkBiomeData/ (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ClientboundChunksBiomesPacket$ChunkBiomeData/equals (Ljava/lang/Object;)Z net/minecraft/network/protocol/game/ClientboundChunksBiomesPacket$ChunkBiomeData/equals (Ljava/lang/Object;)Z +MD: net/minecraft/network/protocol/game/ClientboundChunksBiomesPacket$ChunkBiomeData/f_273848_ ()[B net/minecraft/network/protocol/game/ClientboundChunksBiomesPacket$ChunkBiomeData/buffer ()[B +MD: net/minecraft/network/protocol/game/ClientboundChunksBiomesPacket$ChunkBiomeData/f_273927_ ()Lnet/minecraft/world/level/ChunkPos; net/minecraft/network/protocol/game/ClientboundChunksBiomesPacket$ChunkBiomeData/pos ()Lnet/minecraft/world/level/ChunkPos; +MD: net/minecraft/network/protocol/game/ClientboundChunksBiomesPacket$ChunkBiomeData/hashCode ()I net/minecraft/network/protocol/game/ClientboundChunksBiomesPacket$ChunkBiomeData/hashCode ()I +MD: net/minecraft/network/protocol/game/ClientboundChunksBiomesPacket$ChunkBiomeData/m_274304_ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ClientboundChunksBiomesPacket$ChunkBiomeData/write (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ClientboundChunksBiomesPacket$ChunkBiomeData/m_274308_ (Lnet/minecraft/network/FriendlyByteBuf;Lnet/minecraft/world/level/chunk/LevelChunk;)V net/minecraft/network/protocol/game/ClientboundChunksBiomesPacket$ChunkBiomeData/extractChunkData (Lnet/minecraft/network/FriendlyByteBuf;Lnet/minecraft/world/level/chunk/LevelChunk;)V +MD: net/minecraft/network/protocol/game/ClientboundChunksBiomesPacket$ChunkBiomeData/m_274523_ ()Lio/netty/buffer/ByteBuf; net/minecraft/network/protocol/game/ClientboundChunksBiomesPacket$ChunkBiomeData/getWriteBuffer ()Lio/netty/buffer/ByteBuf; +MD: net/minecraft/network/protocol/game/ClientboundChunksBiomesPacket$ChunkBiomeData/m_274543_ ()Lnet/minecraft/network/FriendlyByteBuf; net/minecraft/network/protocol/game/ClientboundChunksBiomesPacket$ChunkBiomeData/getReadBuffer ()Lnet/minecraft/network/FriendlyByteBuf; +MD: net/minecraft/network/protocol/game/ClientboundChunksBiomesPacket$ChunkBiomeData/m_274587_ (Lnet/minecraft/world/level/chunk/LevelChunk;)I net/minecraft/network/protocol/game/ClientboundChunksBiomesPacket$ChunkBiomeData/calculateChunkSize (Lnet/minecraft/world/level/chunk/LevelChunk;)I +MD: net/minecraft/network/protocol/game/ClientboundChunksBiomesPacket$ChunkBiomeData/toString ()Ljava/lang/String; net/minecraft/network/protocol/game/ClientboundChunksBiomesPacket$ChunkBiomeData/toString ()Ljava/lang/String; +MD: net/minecraft/network/protocol/game/ClientboundClearTitlesPacket/ (Z)V net/minecraft/network/protocol/game/ClientboundClearTitlesPacket/ (Z)V +MD: net/minecraft/network/protocol/game/ClientboundClearTitlesPacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ClientboundClearTitlesPacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ClientboundClearTitlesPacket/m_178788_ ()Z net/minecraft/network/protocol/game/ClientboundClearTitlesPacket/shouldResetTimes ()Z +MD: net/minecraft/network/protocol/game/ClientboundClearTitlesPacket/m_5779_ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ClientboundClearTitlesPacket/write (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ClientboundClearTitlesPacket/m_5797_ (Lnet/minecraft/network/PacketListener;)V net/minecraft/network/protocol/game/ClientboundClearTitlesPacket/handle (Lnet/minecraft/network/PacketListener;)V +MD: net/minecraft/network/protocol/game/ClientboundClearTitlesPacket/m_5797_ (Lnet/minecraft/network/protocol/game/ClientGamePacketListener;)V net/minecraft/network/protocol/game/ClientboundClearTitlesPacket/handle (Lnet/minecraft/network/protocol/game/ClientGamePacketListener;)V +MD: net/minecraft/network/protocol/game/ClientboundCommandSuggestionsPacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ClientboundCommandSuggestionsPacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ClientboundCommandSuggestionsPacket/ (ILcom/mojang/brigadier/suggestion/Suggestions;)V net/minecraft/network/protocol/game/ClientboundCommandSuggestionsPacket/ (ILcom/mojang/brigadier/suggestion/Suggestions;)V +MD: net/minecraft/network/protocol/game/ClientboundCommandSuggestionsPacket/m_131854_ ()I net/minecraft/network/protocol/game/ClientboundCommandSuggestionsPacket/getId ()I +MD: net/minecraft/network/protocol/game/ClientboundCommandSuggestionsPacket/m_131857_ ()Lcom/mojang/brigadier/suggestion/Suggestions; net/minecraft/network/protocol/game/ClientboundCommandSuggestionsPacket/getSuggestions ()Lcom/mojang/brigadier/suggestion/Suggestions; +MD: net/minecraft/network/protocol/game/ClientboundCommandSuggestionsPacket/m_178791_ (Lcom/mojang/brigadier/context/StringRange;Lnet/minecraft/network/FriendlyByteBuf;)Lcom/mojang/brigadier/suggestion/Suggestion; net/minecraft/network/protocol/game/ClientboundCommandSuggestionsPacket/lambda$new$0 (Lcom/mojang/brigadier/context/StringRange;Lnet/minecraft/network/FriendlyByteBuf;)Lcom/mojang/brigadier/suggestion/Suggestion; +MD: net/minecraft/network/protocol/game/ClientboundCommandSuggestionsPacket/m_237613_ (Lnet/minecraft/network/FriendlyByteBuf;Lcom/mojang/brigadier/Message;)V net/minecraft/network/protocol/game/ClientboundCommandSuggestionsPacket/lambda$write$1 (Lnet/minecraft/network/FriendlyByteBuf;Lcom/mojang/brigadier/Message;)V +MD: net/minecraft/network/protocol/game/ClientboundCommandSuggestionsPacket/m_237616_ (Lnet/minecraft/network/FriendlyByteBuf;Lcom/mojang/brigadier/suggestion/Suggestion;)V net/minecraft/network/protocol/game/ClientboundCommandSuggestionsPacket/lambda$write$2 (Lnet/minecraft/network/FriendlyByteBuf;Lcom/mojang/brigadier/suggestion/Suggestion;)V +MD: net/minecraft/network/protocol/game/ClientboundCommandSuggestionsPacket/m_5779_ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ClientboundCommandSuggestionsPacket/write (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ClientboundCommandSuggestionsPacket/m_5797_ (Lnet/minecraft/network/PacketListener;)V net/minecraft/network/protocol/game/ClientboundCommandSuggestionsPacket/handle (Lnet/minecraft/network/PacketListener;)V +MD: net/minecraft/network/protocol/game/ClientboundCommandSuggestionsPacket/m_5797_ (Lnet/minecraft/network/protocol/game/ClientGamePacketListener;)V net/minecraft/network/protocol/game/ClientboundCommandSuggestionsPacket/handle (Lnet/minecraft/network/protocol/game/ClientGamePacketListener;)V +MD: net/minecraft/network/protocol/game/ClientboundCommandsPacket/ (Lcom/mojang/brigadier/tree/RootCommandNode;)V net/minecraft/network/protocol/game/ClientboundCommandsPacket/ (Lcom/mojang/brigadier/tree/RootCommandNode;)V +MD: net/minecraft/network/protocol/game/ClientboundCommandsPacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ClientboundCommandsPacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ClientboundCommandsPacket/m_131862_ (Lcom/mojang/brigadier/tree/RootCommandNode;)Lit/unimi/dsi/fastutil/objects/Object2IntMap; net/minecraft/network/protocol/game/ClientboundCommandsPacket/enumerateNodes (Lcom/mojang/brigadier/tree/RootCommandNode;)Lit/unimi/dsi/fastutil/objects/Object2IntMap; +MD: net/minecraft/network/protocol/game/ClientboundCommandsPacket/m_131887_ (Lnet/minecraft/network/FriendlyByteBuf;)Lnet/minecraft/network/protocol/game/ClientboundCommandsPacket$Entry; net/minecraft/network/protocol/game/ClientboundCommandsPacket/readNode (Lnet/minecraft/network/FriendlyByteBuf;)Lnet/minecraft/network/protocol/game/ClientboundCommandsPacket$Entry; +MD: net/minecraft/network/protocol/game/ClientboundCommandsPacket/m_237621_ (Lcom/mojang/brigadier/tree/CommandNode;Lit/unimi/dsi/fastutil/objects/Object2IntMap;)Lnet/minecraft/network/protocol/game/ClientboundCommandsPacket$Entry; net/minecraft/network/protocol/game/ClientboundCommandsPacket/createEntry (Lcom/mojang/brigadier/tree/CommandNode;Lit/unimi/dsi/fastutil/objects/Object2IntMap;)Lnet/minecraft/network/protocol/game/ClientboundCommandsPacket$Entry; +MD: net/minecraft/network/protocol/game/ClientboundCommandsPacket/m_237624_ (Lnet/minecraft/commands/CommandBuildContext;)Lcom/mojang/brigadier/tree/RootCommandNode; net/minecraft/network/protocol/game/ClientboundCommandsPacket/getRoot (Lnet/minecraft/commands/CommandBuildContext;)Lcom/mojang/brigadier/tree/RootCommandNode; +MD: net/minecraft/network/protocol/game/ClientboundCommandsPacket/m_237626_ (Lit/unimi/dsi/fastutil/objects/Object2IntMap;)Ljava/util/List; net/minecraft/network/protocol/game/ClientboundCommandsPacket/createEntries (Lit/unimi/dsi/fastutil/objects/Object2IntMap;)Ljava/util/List; +MD: net/minecraft/network/protocol/game/ClientboundCommandsPacket/m_237628_ (Ljava/util/List;)V net/minecraft/network/protocol/game/ClientboundCommandsPacket/validateEntries (Ljava/util/List;)V +MD: net/minecraft/network/protocol/game/ClientboundCommandsPacket/m_237630_ (Ljava/util/List;Ljava/util/function/BiPredicate;)V net/minecraft/network/protocol/game/ClientboundCommandsPacket/validateEntries (Ljava/util/List;Ljava/util/function/BiPredicate;)V +MD: net/minecraft/network/protocol/game/ClientboundCommandsPacket/m_237633_ (Ljava/util/function/BiPredicate;Ljava/util/List;Lit/unimi/dsi/fastutil/ints/IntSet;I)Z net/minecraft/network/protocol/game/ClientboundCommandsPacket/lambda$validateEntries$1 (Ljava/util/function/BiPredicate;Ljava/util/List;Lit/unimi/dsi/fastutil/ints/IntSet;I)Z +MD: net/minecraft/network/protocol/game/ClientboundCommandsPacket/m_237638_ (Lnet/minecraft/network/FriendlyByteBuf;B)Lnet/minecraft/network/protocol/game/ClientboundCommandsPacket$NodeStub; net/minecraft/network/protocol/game/ClientboundCommandsPacket/read (Lnet/minecraft/network/FriendlyByteBuf;B)Lnet/minecraft/network/protocol/game/ClientboundCommandsPacket$NodeStub; +MD: net/minecraft/network/protocol/game/ClientboundCommandsPacket/m_237641_ (Lnet/minecraft/network/FriendlyByteBuf;Lnet/minecraft/network/protocol/game/ClientboundCommandsPacket$Entry;)V net/minecraft/network/protocol/game/ClientboundCommandsPacket/lambda$write$0 (Lnet/minecraft/network/FriendlyByteBuf;Lnet/minecraft/network/protocol/game/ClientboundCommandsPacket$Entry;)V +MD: net/minecraft/network/protocol/game/ClientboundCommandsPacket/m_5779_ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ClientboundCommandsPacket/write (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ClientboundCommandsPacket/m_5797_ (Lnet/minecraft/network/protocol/game/ClientGamePacketListener;)V net/minecraft/network/protocol/game/ClientboundCommandsPacket/handle (Lnet/minecraft/network/protocol/game/ClientGamePacketListener;)V +MD: net/minecraft/network/protocol/game/ClientboundCommandsPacket/m_5797_ (Lnet/minecraft/network/PacketListener;)V net/minecraft/network/protocol/game/ClientboundCommandsPacket/handle (Lnet/minecraft/network/PacketListener;)V +MD: net/minecraft/network/protocol/game/ClientboundCommandsPacket$ArgumentNodeStub/ (Ljava/lang/String;Lnet/minecraft/commands/synchronization/ArgumentTypeInfo$Template;Lnet/minecraft/resources/ResourceLocation;)V net/minecraft/network/protocol/game/ClientboundCommandsPacket$ArgumentNodeStub/ (Ljava/lang/String;Lnet/minecraft/commands/synchronization/ArgumentTypeInfo$Template;Lnet/minecraft/resources/ResourceLocation;)V +MD: net/minecraft/network/protocol/game/ClientboundCommandsPacket$ArgumentNodeStub/ (Lcom/mojang/brigadier/tree/ArgumentCommandNode;)V net/minecraft/network/protocol/game/ClientboundCommandsPacket$ArgumentNodeStub/ (Lcom/mojang/brigadier/tree/ArgumentCommandNode;)V +MD: net/minecraft/network/protocol/game/ClientboundCommandsPacket$ArgumentNodeStub/m_213891_ (Lnet/minecraft/commands/CommandBuildContext;)Lcom/mojang/brigadier/builder/ArgumentBuilder; net/minecraft/network/protocol/game/ClientboundCommandsPacket$ArgumentNodeStub/build (Lnet/minecraft/commands/CommandBuildContext;)Lcom/mojang/brigadier/builder/ArgumentBuilder; +MD: net/minecraft/network/protocol/game/ClientboundCommandsPacket$ArgumentNodeStub/m_214206_ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ClientboundCommandsPacket$ArgumentNodeStub/write (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ClientboundCommandsPacket$ArgumentNodeStub/m_237653_ (Lcom/mojang/brigadier/suggestion/SuggestionProvider;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/network/protocol/game/ClientboundCommandsPacket$ArgumentNodeStub/getSuggestionId (Lcom/mojang/brigadier/suggestion/SuggestionProvider;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/network/protocol/game/ClientboundCommandsPacket$ArgumentNodeStub/m_237659_ (Lnet/minecraft/network/FriendlyByteBuf;Lnet/minecraft/commands/synchronization/ArgumentTypeInfo$Template;)V net/minecraft/network/protocol/game/ClientboundCommandsPacket$ArgumentNodeStub/serializeCap (Lnet/minecraft/network/FriendlyByteBuf;Lnet/minecraft/commands/synchronization/ArgumentTypeInfo$Template;)V +MD: net/minecraft/network/protocol/game/ClientboundCommandsPacket$ArgumentNodeStub/m_237662_ (Lnet/minecraft/network/FriendlyByteBuf;Lnet/minecraft/commands/synchronization/ArgumentTypeInfo;Lnet/minecraft/commands/synchronization/ArgumentTypeInfo$Template;)V net/minecraft/network/protocol/game/ClientboundCommandsPacket$ArgumentNodeStub/serializeCap (Lnet/minecraft/network/FriendlyByteBuf;Lnet/minecraft/commands/synchronization/ArgumentTypeInfo;Lnet/minecraft/commands/synchronization/ArgumentTypeInfo$Template;)V +MD: net/minecraft/network/protocol/game/ClientboundCommandsPacket$Entry/ (Lnet/minecraft/network/protocol/game/ClientboundCommandsPacket$NodeStub;II[I)V net/minecraft/network/protocol/game/ClientboundCommandsPacket$Entry/ (Lnet/minecraft/network/protocol/game/ClientboundCommandsPacket$NodeStub;II[I)V +MD: net/minecraft/network/protocol/game/ClientboundCommandsPacket$Entry/m_237672_ (Lit/unimi/dsi/fastutil/ints/IntSet;)Z net/minecraft/network/protocol/game/ClientboundCommandsPacket$Entry/canBuild (Lit/unimi/dsi/fastutil/ints/IntSet;)Z +MD: net/minecraft/network/protocol/game/ClientboundCommandsPacket$Entry/m_237674_ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ClientboundCommandsPacket$Entry/write (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ClientboundCommandsPacket$Entry/m_237676_ (Lit/unimi/dsi/fastutil/ints/IntSet;)Z net/minecraft/network/protocol/game/ClientboundCommandsPacket$Entry/canResolve (Lit/unimi/dsi/fastutil/ints/IntSet;)Z +MD: net/minecraft/network/protocol/game/ClientboundCommandsPacket$LiteralNodeStub/ (Ljava/lang/String;)V net/minecraft/network/protocol/game/ClientboundCommandsPacket$LiteralNodeStub/ (Ljava/lang/String;)V +MD: net/minecraft/network/protocol/game/ClientboundCommandsPacket$LiteralNodeStub/m_213891_ (Lnet/minecraft/commands/CommandBuildContext;)Lcom/mojang/brigadier/builder/ArgumentBuilder; net/minecraft/network/protocol/game/ClientboundCommandsPacket$LiteralNodeStub/build (Lnet/minecraft/commands/CommandBuildContext;)Lcom/mojang/brigadier/builder/ArgumentBuilder; +MD: net/minecraft/network/protocol/game/ClientboundCommandsPacket$LiteralNodeStub/m_214206_ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ClientboundCommandsPacket$LiteralNodeStub/write (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ClientboundCommandsPacket$NodeResolver/ (Lnet/minecraft/commands/CommandBuildContext;Ljava/util/List;)V net/minecraft/network/protocol/game/ClientboundCommandsPacket$NodeResolver/ (Lnet/minecraft/commands/CommandBuildContext;Ljava/util/List;)V +MD: net/minecraft/network/protocol/game/ClientboundCommandsPacket$NodeResolver/m_237691_ (I)Lcom/mojang/brigadier/tree/CommandNode; net/minecraft/network/protocol/game/ClientboundCommandsPacket$NodeResolver/resolve (I)Lcom/mojang/brigadier/tree/CommandNode; +MD: net/minecraft/network/protocol/game/ClientboundCommandsPacket$NodeResolver/m_237693_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/network/protocol/game/ClientboundCommandsPacket$NodeResolver/lambda$resolve$0 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/network/protocol/game/ClientboundCommandsPacket$NodeStub/m_213891_ (Lnet/minecraft/commands/CommandBuildContext;)Lcom/mojang/brigadier/builder/ArgumentBuilder; net/minecraft/network/protocol/game/ClientboundCommandsPacket$NodeStub/build (Lnet/minecraft/commands/CommandBuildContext;)Lcom/mojang/brigadier/builder/ArgumentBuilder; +MD: net/minecraft/network/protocol/game/ClientboundCommandsPacket$NodeStub/m_214206_ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ClientboundCommandsPacket$NodeStub/write (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ClientboundContainerClosePacket/ (I)V net/minecraft/network/protocol/game/ClientboundContainerClosePacket/ (I)V +MD: net/minecraft/network/protocol/game/ClientboundContainerClosePacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ClientboundContainerClosePacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ClientboundContainerClosePacket/m_178821_ ()I net/minecraft/network/protocol/game/ClientboundContainerClosePacket/getContainerId ()I +MD: net/minecraft/network/protocol/game/ClientboundContainerClosePacket/m_5779_ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ClientboundContainerClosePacket/write (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ClientboundContainerClosePacket/m_5797_ (Lnet/minecraft/network/PacketListener;)V net/minecraft/network/protocol/game/ClientboundContainerClosePacket/handle (Lnet/minecraft/network/PacketListener;)V +MD: net/minecraft/network/protocol/game/ClientboundContainerClosePacket/m_5797_ (Lnet/minecraft/network/protocol/game/ClientGamePacketListener;)V net/minecraft/network/protocol/game/ClientboundContainerClosePacket/handle (Lnet/minecraft/network/protocol/game/ClientGamePacketListener;)V +MD: net/minecraft/network/protocol/game/ClientboundContainerSetContentPacket/ (IILnet/minecraft/core/NonNullList;Lnet/minecraft/world/item/ItemStack;)V net/minecraft/network/protocol/game/ClientboundContainerSetContentPacket/ (IILnet/minecraft/core/NonNullList;Lnet/minecraft/world/item/ItemStack;)V +MD: net/minecraft/network/protocol/game/ClientboundContainerSetContentPacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ClientboundContainerSetContentPacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ClientboundContainerSetContentPacket/m_131954_ ()I net/minecraft/network/protocol/game/ClientboundContainerSetContentPacket/getContainerId ()I +MD: net/minecraft/network/protocol/game/ClientboundContainerSetContentPacket/m_131957_ ()Ljava/util/List; net/minecraft/network/protocol/game/ClientboundContainerSetContentPacket/getItems ()Ljava/util/List; +MD: net/minecraft/network/protocol/game/ClientboundContainerSetContentPacket/m_182708_ ()Lnet/minecraft/world/item/ItemStack; net/minecraft/network/protocol/game/ClientboundContainerSetContentPacket/getCarriedItem ()Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/network/protocol/game/ClientboundContainerSetContentPacket/m_182709_ ()I net/minecraft/network/protocol/game/ClientboundContainerSetContentPacket/getStateId ()I +MD: net/minecraft/network/protocol/game/ClientboundContainerSetContentPacket/m_5779_ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ClientboundContainerSetContentPacket/write (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ClientboundContainerSetContentPacket/m_5797_ (Lnet/minecraft/network/PacketListener;)V net/minecraft/network/protocol/game/ClientboundContainerSetContentPacket/handle (Lnet/minecraft/network/PacketListener;)V +MD: net/minecraft/network/protocol/game/ClientboundContainerSetContentPacket/m_5797_ (Lnet/minecraft/network/protocol/game/ClientGamePacketListener;)V net/minecraft/network/protocol/game/ClientboundContainerSetContentPacket/handle (Lnet/minecraft/network/protocol/game/ClientGamePacketListener;)V +MD: net/minecraft/network/protocol/game/ClientboundContainerSetDataPacket/ (III)V net/minecraft/network/protocol/game/ClientboundContainerSetDataPacket/ (III)V +MD: net/minecraft/network/protocol/game/ClientboundContainerSetDataPacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ClientboundContainerSetDataPacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ClientboundContainerSetDataPacket/m_131972_ ()I net/minecraft/network/protocol/game/ClientboundContainerSetDataPacket/getContainerId ()I +MD: net/minecraft/network/protocol/game/ClientboundContainerSetDataPacket/m_131975_ ()I net/minecraft/network/protocol/game/ClientboundContainerSetDataPacket/getId ()I +MD: net/minecraft/network/protocol/game/ClientboundContainerSetDataPacket/m_131976_ ()I net/minecraft/network/protocol/game/ClientboundContainerSetDataPacket/getValue ()I +MD: net/minecraft/network/protocol/game/ClientboundContainerSetDataPacket/m_5779_ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ClientboundContainerSetDataPacket/write (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ClientboundContainerSetDataPacket/m_5797_ (Lnet/minecraft/network/PacketListener;)V net/minecraft/network/protocol/game/ClientboundContainerSetDataPacket/handle (Lnet/minecraft/network/PacketListener;)V +MD: net/minecraft/network/protocol/game/ClientboundContainerSetDataPacket/m_5797_ (Lnet/minecraft/network/protocol/game/ClientGamePacketListener;)V net/minecraft/network/protocol/game/ClientboundContainerSetDataPacket/handle (Lnet/minecraft/network/protocol/game/ClientGamePacketListener;)V +MD: net/minecraft/network/protocol/game/ClientboundContainerSetSlotPacket/ (IIILnet/minecraft/world/item/ItemStack;)V net/minecraft/network/protocol/game/ClientboundContainerSetSlotPacket/ (IIILnet/minecraft/world/item/ItemStack;)V +MD: net/minecraft/network/protocol/game/ClientboundContainerSetSlotPacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ClientboundContainerSetSlotPacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ClientboundContainerSetSlotPacket/m_131991_ ()I net/minecraft/network/protocol/game/ClientboundContainerSetSlotPacket/getContainerId ()I +MD: net/minecraft/network/protocol/game/ClientboundContainerSetSlotPacket/m_131994_ ()I net/minecraft/network/protocol/game/ClientboundContainerSetSlotPacket/getSlot ()I +MD: net/minecraft/network/protocol/game/ClientboundContainerSetSlotPacket/m_131995_ ()Lnet/minecraft/world/item/ItemStack; net/minecraft/network/protocol/game/ClientboundContainerSetSlotPacket/getItem ()Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/network/protocol/game/ClientboundContainerSetSlotPacket/m_182716_ ()I net/minecraft/network/protocol/game/ClientboundContainerSetSlotPacket/getStateId ()I +MD: net/minecraft/network/protocol/game/ClientboundContainerSetSlotPacket/m_5779_ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ClientboundContainerSetSlotPacket/write (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ClientboundContainerSetSlotPacket/m_5797_ (Lnet/minecraft/network/PacketListener;)V net/minecraft/network/protocol/game/ClientboundContainerSetSlotPacket/handle (Lnet/minecraft/network/PacketListener;)V +MD: net/minecraft/network/protocol/game/ClientboundContainerSetSlotPacket/m_5797_ (Lnet/minecraft/network/protocol/game/ClientGamePacketListener;)V net/minecraft/network/protocol/game/ClientboundContainerSetSlotPacket/handle (Lnet/minecraft/network/protocol/game/ClientGamePacketListener;)V +MD: net/minecraft/network/protocol/game/ClientboundCooldownPacket/ (Lnet/minecraft/world/item/Item;I)V net/minecraft/network/protocol/game/ClientboundCooldownPacket/ (Lnet/minecraft/world/item/Item;I)V +MD: net/minecraft/network/protocol/game/ClientboundCooldownPacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ClientboundCooldownPacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ClientboundCooldownPacket/m_132008_ ()Lnet/minecraft/world/item/Item; net/minecraft/network/protocol/game/ClientboundCooldownPacket/getItem ()Lnet/minecraft/world/item/Item; +MD: net/minecraft/network/protocol/game/ClientboundCooldownPacket/m_132011_ ()I net/minecraft/network/protocol/game/ClientboundCooldownPacket/getDuration ()I +MD: net/minecraft/network/protocol/game/ClientboundCooldownPacket/m_5779_ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ClientboundCooldownPacket/write (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ClientboundCooldownPacket/m_5797_ (Lnet/minecraft/network/PacketListener;)V net/minecraft/network/protocol/game/ClientboundCooldownPacket/handle (Lnet/minecraft/network/PacketListener;)V +MD: net/minecraft/network/protocol/game/ClientboundCooldownPacket/m_5797_ (Lnet/minecraft/network/protocol/game/ClientGamePacketListener;)V net/minecraft/network/protocol/game/ClientboundCooldownPacket/handle (Lnet/minecraft/network/protocol/game/ClientGamePacketListener;)V +MD: net/minecraft/network/protocol/game/ClientboundCustomChatCompletionsPacket/ (Lnet/minecraft/network/protocol/game/ClientboundCustomChatCompletionsPacket$Action;Ljava/util/List;)V net/minecraft/network/protocol/game/ClientboundCustomChatCompletionsPacket/ (Lnet/minecraft/network/protocol/game/ClientboundCustomChatCompletionsPacket$Action;Ljava/util/List;)V +MD: net/minecraft/network/protocol/game/ClientboundCustomChatCompletionsPacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ClientboundCustomChatCompletionsPacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ClientboundCustomChatCompletionsPacket/equals (Ljava/lang/Object;)Z net/minecraft/network/protocol/game/ClientboundCustomChatCompletionsPacket/equals (Ljava/lang/Object;)Z +MD: net/minecraft/network/protocol/game/ClientboundCustomChatCompletionsPacket/f_240661_ ()Lnet/minecraft/network/protocol/game/ClientboundCustomChatCompletionsPacket$Action; net/minecraft/network/protocol/game/ClientboundCustomChatCompletionsPacket/action ()Lnet/minecraft/network/protocol/game/ClientboundCustomChatCompletionsPacket$Action; +MD: net/minecraft/network/protocol/game/ClientboundCustomChatCompletionsPacket/f_240663_ ()Ljava/util/List; net/minecraft/network/protocol/game/ClientboundCustomChatCompletionsPacket/entries ()Ljava/util/List; +MD: net/minecraft/network/protocol/game/ClientboundCustomChatCompletionsPacket/hashCode ()I net/minecraft/network/protocol/game/ClientboundCustomChatCompletionsPacket/hashCode ()I +MD: net/minecraft/network/protocol/game/ClientboundCustomChatCompletionsPacket/m_5779_ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ClientboundCustomChatCompletionsPacket/write (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ClientboundCustomChatCompletionsPacket/m_5797_ (Lnet/minecraft/network/PacketListener;)V net/minecraft/network/protocol/game/ClientboundCustomChatCompletionsPacket/handle (Lnet/minecraft/network/PacketListener;)V +MD: net/minecraft/network/protocol/game/ClientboundCustomChatCompletionsPacket/m_5797_ (Lnet/minecraft/network/protocol/game/ClientGamePacketListener;)V net/minecraft/network/protocol/game/ClientboundCustomChatCompletionsPacket/handle (Lnet/minecraft/network/protocol/game/ClientGamePacketListener;)V +MD: net/minecraft/network/protocol/game/ClientboundCustomChatCompletionsPacket/toString ()Ljava/lang/String; net/minecraft/network/protocol/game/ClientboundCustomChatCompletionsPacket/toString ()Ljava/lang/String; +MD: net/minecraft/network/protocol/game/ClientboundCustomChatCompletionsPacket$Action/ ()V net/minecraft/network/protocol/game/ClientboundCustomChatCompletionsPacket$Action/ ()V +MD: net/minecraft/network/protocol/game/ClientboundCustomChatCompletionsPacket$Action/ (Ljava/lang/String;I)V net/minecraft/network/protocol/game/ClientboundCustomChatCompletionsPacket$Action/ (Ljava/lang/String;I)V +MD: net/minecraft/network/protocol/game/ClientboundCustomChatCompletionsPacket$Action/m_240733_ ()[Lnet/minecraft/network/protocol/game/ClientboundCustomChatCompletionsPacket$Action; net/minecraft/network/protocol/game/ClientboundCustomChatCompletionsPacket$Action/$values ()[Lnet/minecraft/network/protocol/game/ClientboundCustomChatCompletionsPacket$Action; +MD: net/minecraft/network/protocol/game/ClientboundCustomChatCompletionsPacket$Action/valueOf (Ljava/lang/String;)Lnet/minecraft/network/protocol/game/ClientboundCustomChatCompletionsPacket$Action; net/minecraft/network/protocol/game/ClientboundCustomChatCompletionsPacket$Action/valueOf (Ljava/lang/String;)Lnet/minecraft/network/protocol/game/ClientboundCustomChatCompletionsPacket$Action; +MD: net/minecraft/network/protocol/game/ClientboundCustomChatCompletionsPacket$Action/values ()[Lnet/minecraft/network/protocol/game/ClientboundCustomChatCompletionsPacket$Action; net/minecraft/network/protocol/game/ClientboundCustomChatCompletionsPacket$Action/values ()[Lnet/minecraft/network/protocol/game/ClientboundCustomChatCompletionsPacket$Action; +MD: net/minecraft/network/protocol/game/ClientboundCustomPayloadPacket/ ()V net/minecraft/network/protocol/game/ClientboundCustomPayloadPacket/ ()V +MD: net/minecraft/network/protocol/game/ClientboundCustomPayloadPacket/ (Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ClientboundCustomPayloadPacket/ (Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ClientboundCustomPayloadPacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ClientboundCustomPayloadPacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ClientboundCustomPayloadPacket/m_132042_ ()Lnet/minecraft/resources/ResourceLocation; net/minecraft/network/protocol/game/ClientboundCustomPayloadPacket/getIdentifier ()Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/network/protocol/game/ClientboundCustomPayloadPacket/m_132045_ ()Lnet/minecraft/network/FriendlyByteBuf; net/minecraft/network/protocol/game/ClientboundCustomPayloadPacket/getData ()Lnet/minecraft/network/FriendlyByteBuf; +MD: net/minecraft/network/protocol/game/ClientboundCustomPayloadPacket/m_5779_ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ClientboundCustomPayloadPacket/write (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ClientboundCustomPayloadPacket/m_5797_ (Lnet/minecraft/network/PacketListener;)V net/minecraft/network/protocol/game/ClientboundCustomPayloadPacket/handle (Lnet/minecraft/network/PacketListener;)V +MD: net/minecraft/network/protocol/game/ClientboundCustomPayloadPacket/m_5797_ (Lnet/minecraft/network/protocol/game/ClientGamePacketListener;)V net/minecraft/network/protocol/game/ClientboundCustomPayloadPacket/handle (Lnet/minecraft/network/protocol/game/ClientGamePacketListener;)V +MD: net/minecraft/network/protocol/game/ClientboundDamageEventPacket/ (IIIILjava/util/Optional;)V net/minecraft/network/protocol/game/ClientboundDamageEventPacket/ (IIIILjava/util/Optional;)V +MD: net/minecraft/network/protocol/game/ClientboundDamageEventPacket/ (Lnet/minecraft/world/entity/Entity;Lnet/minecraft/world/damagesource/DamageSource;)V net/minecraft/network/protocol/game/ClientboundDamageEventPacket/ (Lnet/minecraft/world/entity/Entity;Lnet/minecraft/world/damagesource/DamageSource;)V +MD: net/minecraft/network/protocol/game/ClientboundDamageEventPacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ClientboundDamageEventPacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ClientboundDamageEventPacket/equals (Ljava/lang/Object;)Z net/minecraft/network/protocol/game/ClientboundDamageEventPacket/equals (Ljava/lang/Object;)Z +MD: net/minecraft/network/protocol/game/ClientboundDamageEventPacket/f_268504_ ()I net/minecraft/network/protocol/game/ClientboundDamageEventPacket/entityId ()I +MD: net/minecraft/network/protocol/game/ClientboundDamageEventPacket/f_268559_ ()I net/minecraft/network/protocol/game/ClientboundDamageEventPacket/sourceCauseId ()I +MD: net/minecraft/network/protocol/game/ClientboundDamageEventPacket/f_268584_ ()I net/minecraft/network/protocol/game/ClientboundDamageEventPacket/sourceTypeId ()I +MD: net/minecraft/network/protocol/game/ClientboundDamageEventPacket/f_268649_ ()I net/minecraft/network/protocol/game/ClientboundDamageEventPacket/sourceDirectId ()I +MD: net/minecraft/network/protocol/game/ClientboundDamageEventPacket/f_268712_ ()Ljava/util/Optional; net/minecraft/network/protocol/game/ClientboundDamageEventPacket/sourcePosition ()Ljava/util/Optional; +MD: net/minecraft/network/protocol/game/ClientboundDamageEventPacket/hashCode ()I net/minecraft/network/protocol/game/ClientboundDamageEventPacket/hashCode ()I +MD: net/minecraft/network/protocol/game/ClientboundDamageEventPacket/m_269073_ (Lnet/minecraft/network/FriendlyByteBuf;I)V net/minecraft/network/protocol/game/ClientboundDamageEventPacket/writeOptionalEntityId (Lnet/minecraft/network/FriendlyByteBuf;I)V +MD: net/minecraft/network/protocol/game/ClientboundDamageEventPacket/m_269135_ (Lnet/minecraft/network/FriendlyByteBuf;)I net/minecraft/network/protocol/game/ClientboundDamageEventPacket/readOptionalEntityId (Lnet/minecraft/network/FriendlyByteBuf;)I +MD: net/minecraft/network/protocol/game/ClientboundDamageEventPacket/m_269243_ (Lnet/minecraft/network/FriendlyByteBuf;Lnet/minecraft/world/phys/Vec3;)V net/minecraft/network/protocol/game/ClientboundDamageEventPacket/lambda$write$1 (Lnet/minecraft/network/FriendlyByteBuf;Lnet/minecraft/world/phys/Vec3;)V +MD: net/minecraft/network/protocol/game/ClientboundDamageEventPacket/m_269256_ (Lnet/minecraft/network/FriendlyByteBuf;)Lnet/minecraft/world/phys/Vec3; net/minecraft/network/protocol/game/ClientboundDamageEventPacket/lambda$new$0 (Lnet/minecraft/network/FriendlyByteBuf;)Lnet/minecraft/world/phys/Vec3; +MD: net/minecraft/network/protocol/game/ClientboundDamageEventPacket/m_269591_ (Lnet/minecraft/world/level/Level;)Lnet/minecraft/world/damagesource/DamageSource; net/minecraft/network/protocol/game/ClientboundDamageEventPacket/getSource (Lnet/minecraft/world/level/Level;)Lnet/minecraft/world/damagesource/DamageSource; +MD: net/minecraft/network/protocol/game/ClientboundDamageEventPacket/m_5779_ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ClientboundDamageEventPacket/write (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ClientboundDamageEventPacket/m_5797_ (Lnet/minecraft/network/protocol/game/ClientGamePacketListener;)V net/minecraft/network/protocol/game/ClientboundDamageEventPacket/handle (Lnet/minecraft/network/protocol/game/ClientGamePacketListener;)V +MD: net/minecraft/network/protocol/game/ClientboundDamageEventPacket/m_5797_ (Lnet/minecraft/network/PacketListener;)V net/minecraft/network/protocol/game/ClientboundDamageEventPacket/handle (Lnet/minecraft/network/PacketListener;)V +MD: net/minecraft/network/protocol/game/ClientboundDamageEventPacket/toString ()Ljava/lang/String; net/minecraft/network/protocol/game/ClientboundDamageEventPacket/toString ()Ljava/lang/String; +MD: net/minecraft/network/protocol/game/ClientboundDeleteChatPacket/ (Lnet/minecraft/network/chat/MessageSignature$Packed;)V net/minecraft/network/protocol/game/ClientboundDeleteChatPacket/ (Lnet/minecraft/network/chat/MessageSignature$Packed;)V +MD: net/minecraft/network/protocol/game/ClientboundDeleteChatPacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ClientboundDeleteChatPacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ClientboundDeleteChatPacket/equals (Ljava/lang/Object;)Z net/minecraft/network/protocol/game/ClientboundDeleteChatPacket/equals (Ljava/lang/Object;)Z +MD: net/minecraft/network/protocol/game/ClientboundDeleteChatPacket/f_240904_ ()Lnet/minecraft/network/chat/MessageSignature$Packed; net/minecraft/network/protocol/game/ClientboundDeleteChatPacket/messageSignature ()Lnet/minecraft/network/chat/MessageSignature$Packed; +MD: net/minecraft/network/protocol/game/ClientboundDeleteChatPacket/hashCode ()I net/minecraft/network/protocol/game/ClientboundDeleteChatPacket/hashCode ()I +MD: net/minecraft/network/protocol/game/ClientboundDeleteChatPacket/m_5779_ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ClientboundDeleteChatPacket/write (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ClientboundDeleteChatPacket/m_5797_ (Lnet/minecraft/network/PacketListener;)V net/minecraft/network/protocol/game/ClientboundDeleteChatPacket/handle (Lnet/minecraft/network/PacketListener;)V +MD: net/minecraft/network/protocol/game/ClientboundDeleteChatPacket/m_5797_ (Lnet/minecraft/network/protocol/game/ClientGamePacketListener;)V net/minecraft/network/protocol/game/ClientboundDeleteChatPacket/handle (Lnet/minecraft/network/protocol/game/ClientGamePacketListener;)V +MD: net/minecraft/network/protocol/game/ClientboundDeleteChatPacket/toString ()Ljava/lang/String; net/minecraft/network/protocol/game/ClientboundDeleteChatPacket/toString ()Ljava/lang/String; +MD: net/minecraft/network/protocol/game/ClientboundDisconnectPacket/ (Lnet/minecraft/network/chat/Component;)V net/minecraft/network/protocol/game/ClientboundDisconnectPacket/ (Lnet/minecraft/network/chat/Component;)V +MD: net/minecraft/network/protocol/game/ClientboundDisconnectPacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ClientboundDisconnectPacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ClientboundDisconnectPacket/m_132085_ ()Lnet/minecraft/network/chat/Component; net/minecraft/network/protocol/game/ClientboundDisconnectPacket/getReason ()Lnet/minecraft/network/chat/Component; +MD: net/minecraft/network/protocol/game/ClientboundDisconnectPacket/m_5779_ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ClientboundDisconnectPacket/write (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ClientboundDisconnectPacket/m_5797_ (Lnet/minecraft/network/PacketListener;)V net/minecraft/network/protocol/game/ClientboundDisconnectPacket/handle (Lnet/minecraft/network/PacketListener;)V +MD: net/minecraft/network/protocol/game/ClientboundDisconnectPacket/m_5797_ (Lnet/minecraft/network/protocol/game/ClientGamePacketListener;)V net/minecraft/network/protocol/game/ClientboundDisconnectPacket/handle (Lnet/minecraft/network/protocol/game/ClientGamePacketListener;)V +MD: net/minecraft/network/protocol/game/ClientboundDisguisedChatPacket/ (Lnet/minecraft/network/chat/Component;Lnet/minecraft/network/chat/ChatType$BoundNetwork;)V net/minecraft/network/protocol/game/ClientboundDisguisedChatPacket/ (Lnet/minecraft/network/chat/Component;Lnet/minecraft/network/chat/ChatType$BoundNetwork;)V +MD: net/minecraft/network/protocol/game/ClientboundDisguisedChatPacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ClientboundDisguisedChatPacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ClientboundDisguisedChatPacket/equals (Ljava/lang/Object;)Z net/minecraft/network/protocol/game/ClientboundDisguisedChatPacket/equals (Ljava/lang/Object;)Z +MD: net/minecraft/network/protocol/game/ClientboundDisguisedChatPacket/f_244252_ ()Lnet/minecraft/network/chat/ChatType$BoundNetwork; net/minecraft/network/protocol/game/ClientboundDisguisedChatPacket/chatType ()Lnet/minecraft/network/chat/ChatType$BoundNetwork; +MD: net/minecraft/network/protocol/game/ClientboundDisguisedChatPacket/f_244491_ ()Lnet/minecraft/network/chat/Component; net/minecraft/network/protocol/game/ClientboundDisguisedChatPacket/message ()Lnet/minecraft/network/chat/Component; +MD: net/minecraft/network/protocol/game/ClientboundDisguisedChatPacket/hashCode ()I net/minecraft/network/protocol/game/ClientboundDisguisedChatPacket/hashCode ()I +MD: net/minecraft/network/protocol/game/ClientboundDisguisedChatPacket/m_5779_ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ClientboundDisguisedChatPacket/write (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ClientboundDisguisedChatPacket/m_5797_ (Lnet/minecraft/network/PacketListener;)V net/minecraft/network/protocol/game/ClientboundDisguisedChatPacket/handle (Lnet/minecraft/network/PacketListener;)V +MD: net/minecraft/network/protocol/game/ClientboundDisguisedChatPacket/m_5797_ (Lnet/minecraft/network/protocol/game/ClientGamePacketListener;)V net/minecraft/network/protocol/game/ClientboundDisguisedChatPacket/handle (Lnet/minecraft/network/protocol/game/ClientGamePacketListener;)V +MD: net/minecraft/network/protocol/game/ClientboundDisguisedChatPacket/m_6588_ ()Z net/minecraft/network/protocol/game/ClientboundDisguisedChatPacket/isSkippable ()Z +MD: net/minecraft/network/protocol/game/ClientboundDisguisedChatPacket/toString ()Ljava/lang/String; net/minecraft/network/protocol/game/ClientboundDisguisedChatPacket/toString ()Ljava/lang/String; +MD: net/minecraft/network/protocol/game/ClientboundEntityEventPacket/ (Lnet/minecraft/world/entity/Entity;B)V net/minecraft/network/protocol/game/ClientboundEntityEventPacket/ (Lnet/minecraft/world/entity/Entity;B)V +MD: net/minecraft/network/protocol/game/ClientboundEntityEventPacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ClientboundEntityEventPacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ClientboundEntityEventPacket/m_132094_ (Lnet/minecraft/world/level/Level;)Lnet/minecraft/world/entity/Entity; net/minecraft/network/protocol/game/ClientboundEntityEventPacket/getEntity (Lnet/minecraft/world/level/Level;)Lnet/minecraft/world/entity/Entity; +MD: net/minecraft/network/protocol/game/ClientboundEntityEventPacket/m_132102_ ()B net/minecraft/network/protocol/game/ClientboundEntityEventPacket/getEventId ()B +MD: net/minecraft/network/protocol/game/ClientboundEntityEventPacket/m_5779_ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ClientboundEntityEventPacket/write (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ClientboundEntityEventPacket/m_5797_ (Lnet/minecraft/network/PacketListener;)V net/minecraft/network/protocol/game/ClientboundEntityEventPacket/handle (Lnet/minecraft/network/PacketListener;)V +MD: net/minecraft/network/protocol/game/ClientboundEntityEventPacket/m_5797_ (Lnet/minecraft/network/protocol/game/ClientGamePacketListener;)V net/minecraft/network/protocol/game/ClientboundEntityEventPacket/handle (Lnet/minecraft/network/protocol/game/ClientGamePacketListener;)V +MD: net/minecraft/network/protocol/game/ClientboundExplodePacket/ (DDDFLjava/util/List;Lnet/minecraft/world/phys/Vec3;)V net/minecraft/network/protocol/game/ClientboundExplodePacket/ (DDDFLjava/util/List;Lnet/minecraft/world/phys/Vec3;)V +MD: net/minecraft/network/protocol/game/ClientboundExplodePacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ClientboundExplodePacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ClientboundExplodePacket/m_132127_ ()F net/minecraft/network/protocol/game/ClientboundExplodePacket/getKnockbackX ()F +MD: net/minecraft/network/protocol/game/ClientboundExplodePacket/m_132130_ ()F net/minecraft/network/protocol/game/ClientboundExplodePacket/getKnockbackY ()F +MD: net/minecraft/network/protocol/game/ClientboundExplodePacket/m_132131_ ()F net/minecraft/network/protocol/game/ClientboundExplodePacket/getKnockbackZ ()F +MD: net/minecraft/network/protocol/game/ClientboundExplodePacket/m_132132_ ()D net/minecraft/network/protocol/game/ClientboundExplodePacket/getX ()D +MD: net/minecraft/network/protocol/game/ClientboundExplodePacket/m_132133_ ()D net/minecraft/network/protocol/game/ClientboundExplodePacket/getY ()D +MD: net/minecraft/network/protocol/game/ClientboundExplodePacket/m_132134_ ()D net/minecraft/network/protocol/game/ClientboundExplodePacket/getZ ()D +MD: net/minecraft/network/protocol/game/ClientboundExplodePacket/m_132135_ ()F net/minecraft/network/protocol/game/ClientboundExplodePacket/getPower ()F +MD: net/minecraft/network/protocol/game/ClientboundExplodePacket/m_132136_ ()Ljava/util/List; net/minecraft/network/protocol/game/ClientboundExplodePacket/getToBlow ()Ljava/util/List; +MD: net/minecraft/network/protocol/game/ClientboundExplodePacket/m_178846_ (IIILnet/minecraft/network/FriendlyByteBuf;)Lnet/minecraft/core/BlockPos; net/minecraft/network/protocol/game/ClientboundExplodePacket/lambda$new$0 (IIILnet/minecraft/network/FriendlyByteBuf;)Lnet/minecraft/core/BlockPos; +MD: net/minecraft/network/protocol/game/ClientboundExplodePacket/m_178851_ (IIILnet/minecraft/network/FriendlyByteBuf;Lnet/minecraft/core/BlockPos;)V net/minecraft/network/protocol/game/ClientboundExplodePacket/lambda$write$1 (IIILnet/minecraft/network/FriendlyByteBuf;Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/network/protocol/game/ClientboundExplodePacket/m_5779_ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ClientboundExplodePacket/write (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ClientboundExplodePacket/m_5797_ (Lnet/minecraft/network/protocol/game/ClientGamePacketListener;)V net/minecraft/network/protocol/game/ClientboundExplodePacket/handle (Lnet/minecraft/network/protocol/game/ClientGamePacketListener;)V +MD: net/minecraft/network/protocol/game/ClientboundExplodePacket/m_5797_ (Lnet/minecraft/network/PacketListener;)V net/minecraft/network/protocol/game/ClientboundExplodePacket/handle (Lnet/minecraft/network/PacketListener;)V +MD: net/minecraft/network/protocol/game/ClientboundForgetLevelChunkPacket/ (II)V net/minecraft/network/protocol/game/ClientboundForgetLevelChunkPacket/ (II)V +MD: net/minecraft/network/protocol/game/ClientboundForgetLevelChunkPacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ClientboundForgetLevelChunkPacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ClientboundForgetLevelChunkPacket/m_132149_ ()I net/minecraft/network/protocol/game/ClientboundForgetLevelChunkPacket/getX ()I +MD: net/minecraft/network/protocol/game/ClientboundForgetLevelChunkPacket/m_132152_ ()I net/minecraft/network/protocol/game/ClientboundForgetLevelChunkPacket/getZ ()I +MD: net/minecraft/network/protocol/game/ClientboundForgetLevelChunkPacket/m_5779_ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ClientboundForgetLevelChunkPacket/write (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ClientboundForgetLevelChunkPacket/m_5797_ (Lnet/minecraft/network/PacketListener;)V net/minecraft/network/protocol/game/ClientboundForgetLevelChunkPacket/handle (Lnet/minecraft/network/PacketListener;)V +MD: net/minecraft/network/protocol/game/ClientboundForgetLevelChunkPacket/m_5797_ (Lnet/minecraft/network/protocol/game/ClientGamePacketListener;)V net/minecraft/network/protocol/game/ClientboundForgetLevelChunkPacket/handle (Lnet/minecraft/network/protocol/game/ClientGamePacketListener;)V +MD: net/minecraft/network/protocol/game/ClientboundGameEventPacket/ ()V net/minecraft/network/protocol/game/ClientboundGameEventPacket/ ()V +MD: net/minecraft/network/protocol/game/ClientboundGameEventPacket/ (Lnet/minecraft/network/protocol/game/ClientboundGameEventPacket$Type;F)V net/minecraft/network/protocol/game/ClientboundGameEventPacket/ (Lnet/minecraft/network/protocol/game/ClientboundGameEventPacket$Type;F)V +MD: net/minecraft/network/protocol/game/ClientboundGameEventPacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ClientboundGameEventPacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ClientboundGameEventPacket/m_132178_ ()Lnet/minecraft/network/protocol/game/ClientboundGameEventPacket$Type; net/minecraft/network/protocol/game/ClientboundGameEventPacket/getEvent ()Lnet/minecraft/network/protocol/game/ClientboundGameEventPacket$Type; +MD: net/minecraft/network/protocol/game/ClientboundGameEventPacket/m_132181_ ()F net/minecraft/network/protocol/game/ClientboundGameEventPacket/getParam ()F +MD: net/minecraft/network/protocol/game/ClientboundGameEventPacket/m_5779_ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ClientboundGameEventPacket/write (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ClientboundGameEventPacket/m_5797_ (Lnet/minecraft/network/PacketListener;)V net/minecraft/network/protocol/game/ClientboundGameEventPacket/handle (Lnet/minecraft/network/PacketListener;)V +MD: net/minecraft/network/protocol/game/ClientboundGameEventPacket/m_5797_ (Lnet/minecraft/network/protocol/game/ClientGamePacketListener;)V net/minecraft/network/protocol/game/ClientboundGameEventPacket/handle (Lnet/minecraft/network/protocol/game/ClientGamePacketListener;)V +MD: net/minecraft/network/protocol/game/ClientboundGameEventPacket$Type/ ()V net/minecraft/network/protocol/game/ClientboundGameEventPacket$Type/ ()V +MD: net/minecraft/network/protocol/game/ClientboundGameEventPacket$Type/ (I)V net/minecraft/network/protocol/game/ClientboundGameEventPacket$Type/ (I)V +MD: net/minecraft/network/protocol/game/ClientboundHorseScreenOpenPacket/ (III)V net/minecraft/network/protocol/game/ClientboundHorseScreenOpenPacket/ (III)V +MD: net/minecraft/network/protocol/game/ClientboundHorseScreenOpenPacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ClientboundHorseScreenOpenPacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ClientboundHorseScreenOpenPacket/m_132204_ ()I net/minecraft/network/protocol/game/ClientboundHorseScreenOpenPacket/getContainerId ()I +MD: net/minecraft/network/protocol/game/ClientboundHorseScreenOpenPacket/m_132207_ ()I net/minecraft/network/protocol/game/ClientboundHorseScreenOpenPacket/getSize ()I +MD: net/minecraft/network/protocol/game/ClientboundHorseScreenOpenPacket/m_132208_ ()I net/minecraft/network/protocol/game/ClientboundHorseScreenOpenPacket/getEntityId ()I +MD: net/minecraft/network/protocol/game/ClientboundHorseScreenOpenPacket/m_5779_ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ClientboundHorseScreenOpenPacket/write (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ClientboundHorseScreenOpenPacket/m_5797_ (Lnet/minecraft/network/PacketListener;)V net/minecraft/network/protocol/game/ClientboundHorseScreenOpenPacket/handle (Lnet/minecraft/network/PacketListener;)V +MD: net/minecraft/network/protocol/game/ClientboundHorseScreenOpenPacket/m_5797_ (Lnet/minecraft/network/protocol/game/ClientGamePacketListener;)V net/minecraft/network/protocol/game/ClientboundHorseScreenOpenPacket/handle (Lnet/minecraft/network/protocol/game/ClientGamePacketListener;)V +MD: net/minecraft/network/protocol/game/ClientboundHurtAnimationPacket/ (IF)V net/minecraft/network/protocol/game/ClientboundHurtAnimationPacket/ (IF)V +MD: net/minecraft/network/protocol/game/ClientboundHurtAnimationPacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ClientboundHurtAnimationPacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ClientboundHurtAnimationPacket/ (Lnet/minecraft/world/entity/LivingEntity;)V net/minecraft/network/protocol/game/ClientboundHurtAnimationPacket/ (Lnet/minecraft/world/entity/LivingEntity;)V +MD: net/minecraft/network/protocol/game/ClientboundHurtAnimationPacket/equals (Ljava/lang/Object;)Z net/minecraft/network/protocol/game/ClientboundHurtAnimationPacket/equals (Ljava/lang/Object;)Z +MD: net/minecraft/network/protocol/game/ClientboundHurtAnimationPacket/f_263825_ ()I net/minecraft/network/protocol/game/ClientboundHurtAnimationPacket/id ()I +MD: net/minecraft/network/protocol/game/ClientboundHurtAnimationPacket/f_263826_ ()F net/minecraft/network/protocol/game/ClientboundHurtAnimationPacket/yaw ()F +MD: net/minecraft/network/protocol/game/ClientboundHurtAnimationPacket/hashCode ()I net/minecraft/network/protocol/game/ClientboundHurtAnimationPacket/hashCode ()I +MD: net/minecraft/network/protocol/game/ClientboundHurtAnimationPacket/m_5779_ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ClientboundHurtAnimationPacket/write (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ClientboundHurtAnimationPacket/m_5797_ (Lnet/minecraft/network/PacketListener;)V net/minecraft/network/protocol/game/ClientboundHurtAnimationPacket/handle (Lnet/minecraft/network/PacketListener;)V +MD: net/minecraft/network/protocol/game/ClientboundHurtAnimationPacket/m_5797_ (Lnet/minecraft/network/protocol/game/ClientGamePacketListener;)V net/minecraft/network/protocol/game/ClientboundHurtAnimationPacket/handle (Lnet/minecraft/network/protocol/game/ClientGamePacketListener;)V +MD: net/minecraft/network/protocol/game/ClientboundHurtAnimationPacket/toString ()Ljava/lang/String; net/minecraft/network/protocol/game/ClientboundHurtAnimationPacket/toString ()Ljava/lang/String; +MD: net/minecraft/network/protocol/game/ClientboundInitializeBorderPacket/ (Lnet/minecraft/world/level/border/WorldBorder;)V net/minecraft/network/protocol/game/ClientboundInitializeBorderPacket/ (Lnet/minecraft/world/level/border/WorldBorder;)V +MD: net/minecraft/network/protocol/game/ClientboundInitializeBorderPacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ClientboundInitializeBorderPacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ClientboundInitializeBorderPacket/m_178886_ ()D net/minecraft/network/protocol/game/ClientboundInitializeBorderPacket/getNewCenterX ()D +MD: net/minecraft/network/protocol/game/ClientboundInitializeBorderPacket/m_178887_ ()D net/minecraft/network/protocol/game/ClientboundInitializeBorderPacket/getNewCenterZ ()D +MD: net/minecraft/network/protocol/game/ClientboundInitializeBorderPacket/m_178888_ ()D net/minecraft/network/protocol/game/ClientboundInitializeBorderPacket/getNewSize ()D +MD: net/minecraft/network/protocol/game/ClientboundInitializeBorderPacket/m_178889_ ()D net/minecraft/network/protocol/game/ClientboundInitializeBorderPacket/getOldSize ()D +MD: net/minecraft/network/protocol/game/ClientboundInitializeBorderPacket/m_178890_ ()J net/minecraft/network/protocol/game/ClientboundInitializeBorderPacket/getLerpTime ()J +MD: net/minecraft/network/protocol/game/ClientboundInitializeBorderPacket/m_178891_ ()I net/minecraft/network/protocol/game/ClientboundInitializeBorderPacket/getNewAbsoluteMaxSize ()I +MD: net/minecraft/network/protocol/game/ClientboundInitializeBorderPacket/m_178892_ ()I net/minecraft/network/protocol/game/ClientboundInitializeBorderPacket/getWarningTime ()I +MD: net/minecraft/network/protocol/game/ClientboundInitializeBorderPacket/m_178893_ ()I net/minecraft/network/protocol/game/ClientboundInitializeBorderPacket/getWarningBlocks ()I +MD: net/minecraft/network/protocol/game/ClientboundInitializeBorderPacket/m_5779_ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ClientboundInitializeBorderPacket/write (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ClientboundInitializeBorderPacket/m_5797_ (Lnet/minecraft/network/protocol/game/ClientGamePacketListener;)V net/minecraft/network/protocol/game/ClientboundInitializeBorderPacket/handle (Lnet/minecraft/network/protocol/game/ClientGamePacketListener;)V +MD: net/minecraft/network/protocol/game/ClientboundInitializeBorderPacket/m_5797_ (Lnet/minecraft/network/PacketListener;)V net/minecraft/network/protocol/game/ClientboundInitializeBorderPacket/handle (Lnet/minecraft/network/PacketListener;)V +MD: net/minecraft/network/protocol/game/ClientboundKeepAlivePacket/ (J)V net/minecraft/network/protocol/game/ClientboundKeepAlivePacket/ (J)V +MD: net/minecraft/network/protocol/game/ClientboundKeepAlivePacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ClientboundKeepAlivePacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ClientboundKeepAlivePacket/m_132219_ ()J net/minecraft/network/protocol/game/ClientboundKeepAlivePacket/getId ()J +MD: net/minecraft/network/protocol/game/ClientboundKeepAlivePacket/m_5779_ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ClientboundKeepAlivePacket/write (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ClientboundKeepAlivePacket/m_5797_ (Lnet/minecraft/network/PacketListener;)V net/minecraft/network/protocol/game/ClientboundKeepAlivePacket/handle (Lnet/minecraft/network/PacketListener;)V +MD: net/minecraft/network/protocol/game/ClientboundKeepAlivePacket/m_5797_ (Lnet/minecraft/network/protocol/game/ClientGamePacketListener;)V net/minecraft/network/protocol/game/ClientboundKeepAlivePacket/handle (Lnet/minecraft/network/protocol/game/ClientGamePacketListener;)V +MD: net/minecraft/network/protocol/game/ClientboundLevelChunkPacketData/ (Lnet/minecraft/network/FriendlyByteBuf;II)V net/minecraft/network/protocol/game/ClientboundLevelChunkPacketData/ (Lnet/minecraft/network/FriendlyByteBuf;II)V +MD: net/minecraft/network/protocol/game/ClientboundLevelChunkPacketData/ (Lnet/minecraft/world/level/chunk/LevelChunk;)V net/minecraft/network/protocol/game/ClientboundLevelChunkPacketData/ (Lnet/minecraft/world/level/chunk/LevelChunk;)V +MD: net/minecraft/network/protocol/game/ClientboundLevelChunkPacketData/m_195656_ ()Lnet/minecraft/network/FriendlyByteBuf; net/minecraft/network/protocol/game/ClientboundLevelChunkPacketData/getReadBuffer ()Lnet/minecraft/network/FriendlyByteBuf; +MD: net/minecraft/network/protocol/game/ClientboundLevelChunkPacketData/m_195657_ (II)Ljava/util/function/Consumer; net/minecraft/network/protocol/game/ClientboundLevelChunkPacketData/getBlockEntitiesTagsConsumer (II)Ljava/util/function/Consumer; +MD: net/minecraft/network/protocol/game/ClientboundLevelChunkPacketData/m_195660_ (IILnet/minecraft/network/protocol/game/ClientboundLevelChunkPacketData$BlockEntityTagOutput;)V net/minecraft/network/protocol/game/ClientboundLevelChunkPacketData/lambda$getBlockEntitiesTagsConsumer$1 (IILnet/minecraft/network/protocol/game/ClientboundLevelChunkPacketData$BlockEntityTagOutput;)V +MD: net/minecraft/network/protocol/game/ClientboundLevelChunkPacketData/m_195664_ (Lnet/minecraft/world/level/chunk/LevelChunk;)I net/minecraft/network/protocol/game/ClientboundLevelChunkPacketData/calculateChunkSize (Lnet/minecraft/world/level/chunk/LevelChunk;)I +MD: net/minecraft/network/protocol/game/ClientboundLevelChunkPacketData/m_195666_ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ClientboundLevelChunkPacketData/write (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ClientboundLevelChunkPacketData/m_195668_ (Lnet/minecraft/network/FriendlyByteBuf;Lnet/minecraft/world/level/chunk/LevelChunk;)V net/minecraft/network/protocol/game/ClientboundLevelChunkPacketData/extractChunkData (Lnet/minecraft/network/FriendlyByteBuf;Lnet/minecraft/world/level/chunk/LevelChunk;)V +MD: net/minecraft/network/protocol/game/ClientboundLevelChunkPacketData/m_195671_ (Lnet/minecraft/network/FriendlyByteBuf;Lnet/minecraft/network/protocol/game/ClientboundLevelChunkPacketData$BlockEntityInfo;)V net/minecraft/network/protocol/game/ClientboundLevelChunkPacketData/lambda$write$0 (Lnet/minecraft/network/FriendlyByteBuf;Lnet/minecraft/network/protocol/game/ClientboundLevelChunkPacketData$BlockEntityInfo;)V +MD: net/minecraft/network/protocol/game/ClientboundLevelChunkPacketData/m_195674_ (Lnet/minecraft/network/protocol/game/ClientboundLevelChunkPacketData$BlockEntityTagOutput;II)V net/minecraft/network/protocol/game/ClientboundLevelChunkPacketData/getBlockEntitiesTags (Lnet/minecraft/network/protocol/game/ClientboundLevelChunkPacketData$BlockEntityTagOutput;II)V +MD: net/minecraft/network/protocol/game/ClientboundLevelChunkPacketData/m_195678_ ()Lnet/minecraft/nbt/CompoundTag; net/minecraft/network/protocol/game/ClientboundLevelChunkPacketData/getHeightmaps ()Lnet/minecraft/nbt/CompoundTag; +MD: net/minecraft/network/protocol/game/ClientboundLevelChunkPacketData/m_195679_ ()Lio/netty/buffer/ByteBuf; net/minecraft/network/protocol/game/ClientboundLevelChunkPacketData/getWriteBuffer ()Lio/netty/buffer/ByteBuf; +MD: net/minecraft/network/protocol/game/ClientboundLevelChunkPacketData$BlockEntityInfo/ (IILnet/minecraft/world/level/block/entity/BlockEntityType;Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/network/protocol/game/ClientboundLevelChunkPacketData$BlockEntityInfo/ (IILnet/minecraft/world/level/block/entity/BlockEntityType;Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/network/protocol/game/ClientboundLevelChunkPacketData$BlockEntityInfo/ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ClientboundLevelChunkPacketData$BlockEntityInfo/ (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ClientboundLevelChunkPacketData$BlockEntityInfo/m_195691_ (Lnet/minecraft/world/level/block/entity/BlockEntity;)Lnet/minecraft/network/protocol/game/ClientboundLevelChunkPacketData$BlockEntityInfo; net/minecraft/network/protocol/game/ClientboundLevelChunkPacketData$BlockEntityInfo/create (Lnet/minecraft/world/level/block/entity/BlockEntity;)Lnet/minecraft/network/protocol/game/ClientboundLevelChunkPacketData$BlockEntityInfo; +MD: net/minecraft/network/protocol/game/ClientboundLevelChunkPacketData$BlockEntityInfo/m_195693_ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ClientboundLevelChunkPacketData$BlockEntityInfo/write (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ClientboundLevelChunkPacketData$BlockEntityTagOutput/m_195695_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/entity/BlockEntityType;Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/network/protocol/game/ClientboundLevelChunkPacketData$BlockEntityTagOutput/accept (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/entity/BlockEntityType;Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/network/protocol/game/ClientboundLevelChunkWithLightPacket/ (Lnet/minecraft/world/level/chunk/LevelChunk;Lnet/minecraft/world/level/lighting/LevelLightEngine;Ljava/util/BitSet;Ljava/util/BitSet;)V net/minecraft/network/protocol/game/ClientboundLevelChunkWithLightPacket/ (Lnet/minecraft/world/level/chunk/LevelChunk;Lnet/minecraft/world/level/lighting/LevelLightEngine;Ljava/util/BitSet;Ljava/util/BitSet;)V +MD: net/minecraft/network/protocol/game/ClientboundLevelChunkWithLightPacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ClientboundLevelChunkWithLightPacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ClientboundLevelChunkWithLightPacket/m_195717_ ()I net/minecraft/network/protocol/game/ClientboundLevelChunkWithLightPacket/getX ()I +MD: net/minecraft/network/protocol/game/ClientboundLevelChunkWithLightPacket/m_195718_ ()I net/minecraft/network/protocol/game/ClientboundLevelChunkWithLightPacket/getZ ()I +MD: net/minecraft/network/protocol/game/ClientboundLevelChunkWithLightPacket/m_195719_ ()Lnet/minecraft/network/protocol/game/ClientboundLevelChunkPacketData; net/minecraft/network/protocol/game/ClientboundLevelChunkWithLightPacket/getChunkData ()Lnet/minecraft/network/protocol/game/ClientboundLevelChunkPacketData; +MD: net/minecraft/network/protocol/game/ClientboundLevelChunkWithLightPacket/m_195720_ ()Lnet/minecraft/network/protocol/game/ClientboundLightUpdatePacketData; net/minecraft/network/protocol/game/ClientboundLevelChunkWithLightPacket/getLightData ()Lnet/minecraft/network/protocol/game/ClientboundLightUpdatePacketData; +MD: net/minecraft/network/protocol/game/ClientboundLevelChunkWithLightPacket/m_5779_ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ClientboundLevelChunkWithLightPacket/write (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ClientboundLevelChunkWithLightPacket/m_5797_ (Lnet/minecraft/network/PacketListener;)V net/minecraft/network/protocol/game/ClientboundLevelChunkWithLightPacket/handle (Lnet/minecraft/network/PacketListener;)V +MD: net/minecraft/network/protocol/game/ClientboundLevelChunkWithLightPacket/m_5797_ (Lnet/minecraft/network/protocol/game/ClientGamePacketListener;)V net/minecraft/network/protocol/game/ClientboundLevelChunkWithLightPacket/handle (Lnet/minecraft/network/protocol/game/ClientGamePacketListener;)V +MD: net/minecraft/network/protocol/game/ClientboundLevelEventPacket/ (ILnet/minecraft/core/BlockPos;IZ)V net/minecraft/network/protocol/game/ClientboundLevelEventPacket/ (ILnet/minecraft/core/BlockPos;IZ)V +MD: net/minecraft/network/protocol/game/ClientboundLevelEventPacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ClientboundLevelEventPacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ClientboundLevelEventPacket/m_132274_ ()Z net/minecraft/network/protocol/game/ClientboundLevelEventPacket/isGlobalEvent ()Z +MD: net/minecraft/network/protocol/game/ClientboundLevelEventPacket/m_132277_ ()I net/minecraft/network/protocol/game/ClientboundLevelEventPacket/getType ()I +MD: net/minecraft/network/protocol/game/ClientboundLevelEventPacket/m_132278_ ()I net/minecraft/network/protocol/game/ClientboundLevelEventPacket/getData ()I +MD: net/minecraft/network/protocol/game/ClientboundLevelEventPacket/m_132279_ ()Lnet/minecraft/core/BlockPos; net/minecraft/network/protocol/game/ClientboundLevelEventPacket/getPos ()Lnet/minecraft/core/BlockPos; +MD: net/minecraft/network/protocol/game/ClientboundLevelEventPacket/m_5779_ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ClientboundLevelEventPacket/write (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ClientboundLevelEventPacket/m_5797_ (Lnet/minecraft/network/PacketListener;)V net/minecraft/network/protocol/game/ClientboundLevelEventPacket/handle (Lnet/minecraft/network/PacketListener;)V +MD: net/minecraft/network/protocol/game/ClientboundLevelEventPacket/m_5797_ (Lnet/minecraft/network/protocol/game/ClientGamePacketListener;)V net/minecraft/network/protocol/game/ClientboundLevelEventPacket/handle (Lnet/minecraft/network/protocol/game/ClientGamePacketListener;)V +MD: net/minecraft/network/protocol/game/ClientboundLevelParticlesPacket/ (Lnet/minecraft/core/particles/ParticleOptions;ZDDDFFFFI)V net/minecraft/network/protocol/game/ClientboundLevelParticlesPacket/ (Lnet/minecraft/core/particles/ParticleOptions;ZDDDFFFFI)V +MD: net/minecraft/network/protocol/game/ClientboundLevelParticlesPacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ClientboundLevelParticlesPacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ClientboundLevelParticlesPacket/m_132304_ (Lnet/minecraft/network/FriendlyByteBuf;Lnet/minecraft/core/particles/ParticleType;)Lnet/minecraft/core/particles/ParticleOptions; net/minecraft/network/protocol/game/ClientboundLevelParticlesPacket/readParticle (Lnet/minecraft/network/FriendlyByteBuf;Lnet/minecraft/core/particles/ParticleType;)Lnet/minecraft/core/particles/ParticleOptions; +MD: net/minecraft/network/protocol/game/ClientboundLevelParticlesPacket/m_132311_ ()Z net/minecraft/network/protocol/game/ClientboundLevelParticlesPacket/isOverrideLimiter ()Z +MD: net/minecraft/network/protocol/game/ClientboundLevelParticlesPacket/m_132314_ ()D net/minecraft/network/protocol/game/ClientboundLevelParticlesPacket/getX ()D +MD: net/minecraft/network/protocol/game/ClientboundLevelParticlesPacket/m_132315_ ()D net/minecraft/network/protocol/game/ClientboundLevelParticlesPacket/getY ()D +MD: net/minecraft/network/protocol/game/ClientboundLevelParticlesPacket/m_132316_ ()D net/minecraft/network/protocol/game/ClientboundLevelParticlesPacket/getZ ()D +MD: net/minecraft/network/protocol/game/ClientboundLevelParticlesPacket/m_132317_ ()F net/minecraft/network/protocol/game/ClientboundLevelParticlesPacket/getXDist ()F +MD: net/minecraft/network/protocol/game/ClientboundLevelParticlesPacket/m_132318_ ()F net/minecraft/network/protocol/game/ClientboundLevelParticlesPacket/getYDist ()F +MD: net/minecraft/network/protocol/game/ClientboundLevelParticlesPacket/m_132319_ ()F net/minecraft/network/protocol/game/ClientboundLevelParticlesPacket/getZDist ()F +MD: net/minecraft/network/protocol/game/ClientboundLevelParticlesPacket/m_132320_ ()F net/minecraft/network/protocol/game/ClientboundLevelParticlesPacket/getMaxSpeed ()F +MD: net/minecraft/network/protocol/game/ClientboundLevelParticlesPacket/m_132321_ ()I net/minecraft/network/protocol/game/ClientboundLevelParticlesPacket/getCount ()I +MD: net/minecraft/network/protocol/game/ClientboundLevelParticlesPacket/m_132322_ ()Lnet/minecraft/core/particles/ParticleOptions; net/minecraft/network/protocol/game/ClientboundLevelParticlesPacket/getParticle ()Lnet/minecraft/core/particles/ParticleOptions; +MD: net/minecraft/network/protocol/game/ClientboundLevelParticlesPacket/m_5779_ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ClientboundLevelParticlesPacket/write (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ClientboundLevelParticlesPacket/m_5797_ (Lnet/minecraft/network/protocol/game/ClientGamePacketListener;)V net/minecraft/network/protocol/game/ClientboundLevelParticlesPacket/handle (Lnet/minecraft/network/protocol/game/ClientGamePacketListener;)V +MD: net/minecraft/network/protocol/game/ClientboundLevelParticlesPacket/m_5797_ (Lnet/minecraft/network/PacketListener;)V net/minecraft/network/protocol/game/ClientboundLevelParticlesPacket/handle (Lnet/minecraft/network/PacketListener;)V +MD: net/minecraft/network/protocol/game/ClientboundLightUpdatePacket/ (Lnet/minecraft/world/level/ChunkPos;Lnet/minecraft/world/level/lighting/LevelLightEngine;Ljava/util/BitSet;Ljava/util/BitSet;)V net/minecraft/network/protocol/game/ClientboundLightUpdatePacket/ (Lnet/minecraft/world/level/ChunkPos;Lnet/minecraft/world/level/lighting/LevelLightEngine;Ljava/util/BitSet;Ljava/util/BitSet;)V +MD: net/minecraft/network/protocol/game/ClientboundLightUpdatePacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ClientboundLightUpdatePacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ClientboundLightUpdatePacket/m_132349_ ()I net/minecraft/network/protocol/game/ClientboundLightUpdatePacket/getX ()I +MD: net/minecraft/network/protocol/game/ClientboundLightUpdatePacket/m_132352_ ()I net/minecraft/network/protocol/game/ClientboundLightUpdatePacket/getZ ()I +MD: net/minecraft/network/protocol/game/ClientboundLightUpdatePacket/m_195722_ ()Lnet/minecraft/network/protocol/game/ClientboundLightUpdatePacketData; net/minecraft/network/protocol/game/ClientboundLightUpdatePacket/getLightData ()Lnet/minecraft/network/protocol/game/ClientboundLightUpdatePacketData; +MD: net/minecraft/network/protocol/game/ClientboundLightUpdatePacket/m_5779_ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ClientboundLightUpdatePacket/write (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ClientboundLightUpdatePacket/m_5797_ (Lnet/minecraft/network/PacketListener;)V net/minecraft/network/protocol/game/ClientboundLightUpdatePacket/handle (Lnet/minecraft/network/PacketListener;)V +MD: net/minecraft/network/protocol/game/ClientboundLightUpdatePacket/m_5797_ (Lnet/minecraft/network/protocol/game/ClientGamePacketListener;)V net/minecraft/network/protocol/game/ClientboundLightUpdatePacket/handle (Lnet/minecraft/network/protocol/game/ClientGamePacketListener;)V +MD: net/minecraft/network/protocol/game/ClientboundLightUpdatePacketData/ (Lnet/minecraft/network/FriendlyByteBuf;II)V net/minecraft/network/protocol/game/ClientboundLightUpdatePacketData/ (Lnet/minecraft/network/FriendlyByteBuf;II)V +MD: net/minecraft/network/protocol/game/ClientboundLightUpdatePacketData/ (Lnet/minecraft/world/level/ChunkPos;Lnet/minecraft/world/level/lighting/LevelLightEngine;Ljava/util/BitSet;Ljava/util/BitSet;)V net/minecraft/network/protocol/game/ClientboundLightUpdatePacketData/ (Lnet/minecraft/world/level/ChunkPos;Lnet/minecraft/world/level/lighting/LevelLightEngine;Ljava/util/BitSet;Ljava/util/BitSet;)V +MD: net/minecraft/network/protocol/game/ClientboundLightUpdatePacketData/m_195740_ ()Ljava/util/BitSet; net/minecraft/network/protocol/game/ClientboundLightUpdatePacketData/getSkyYMask ()Ljava/util/BitSet; +MD: net/minecraft/network/protocol/game/ClientboundLightUpdatePacketData/m_195741_ (Lnet/minecraft/world/level/ChunkPos;Lnet/minecraft/world/level/lighting/LevelLightEngine;Lnet/minecraft/world/level/LightLayer;ILjava/util/BitSet;Ljava/util/BitSet;Ljava/util/List;)V net/minecraft/network/protocol/game/ClientboundLightUpdatePacketData/prepareSectionData (Lnet/minecraft/world/level/ChunkPos;Lnet/minecraft/world/level/lighting/LevelLightEngine;Lnet/minecraft/world/level/LightLayer;ILjava/util/BitSet;Ljava/util/BitSet;Ljava/util/List;)V +MD: net/minecraft/network/protocol/game/ClientboundLightUpdatePacketData/m_195749_ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ClientboundLightUpdatePacketData/write (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ClientboundLightUpdatePacketData/m_195751_ ()Ljava/util/BitSet; net/minecraft/network/protocol/game/ClientboundLightUpdatePacketData/getEmptySkyYMask ()Ljava/util/BitSet; +MD: net/minecraft/network/protocol/game/ClientboundLightUpdatePacketData/m_195752_ (Lnet/minecraft/network/FriendlyByteBuf;)[B net/minecraft/network/protocol/game/ClientboundLightUpdatePacketData/lambda$new$1 (Lnet/minecraft/network/FriendlyByteBuf;)[B +MD: net/minecraft/network/protocol/game/ClientboundLightUpdatePacketData/m_195754_ ()Ljava/util/List; net/minecraft/network/protocol/game/ClientboundLightUpdatePacketData/getSkyUpdates ()Ljava/util/List; +MD: net/minecraft/network/protocol/game/ClientboundLightUpdatePacketData/m_195755_ (Lnet/minecraft/network/FriendlyByteBuf;)[B net/minecraft/network/protocol/game/ClientboundLightUpdatePacketData/lambda$new$0 (Lnet/minecraft/network/FriendlyByteBuf;)[B +MD: net/minecraft/network/protocol/game/ClientboundLightUpdatePacketData/m_195757_ ()Ljava/util/BitSet; net/minecraft/network/protocol/game/ClientboundLightUpdatePacketData/getBlockYMask ()Ljava/util/BitSet; +MD: net/minecraft/network/protocol/game/ClientboundLightUpdatePacketData/m_195758_ ()Ljava/util/BitSet; net/minecraft/network/protocol/game/ClientboundLightUpdatePacketData/getEmptyBlockYMask ()Ljava/util/BitSet; +MD: net/minecraft/network/protocol/game/ClientboundLightUpdatePacketData/m_195759_ ()Ljava/util/List; net/minecraft/network/protocol/game/ClientboundLightUpdatePacketData/getBlockUpdates ()Ljava/util/List; +MD: net/minecraft/network/protocol/game/ClientboundLoginPacket/ ()V net/minecraft/network/protocol/game/ClientboundLoginPacket/ ()V +MD: net/minecraft/network/protocol/game/ClientboundLoginPacket/ (IZLnet/minecraft/world/level/GameType;Lnet/minecraft/world/level/GameType;Ljava/util/Set;Lnet/minecraft/core/RegistryAccess$Frozen;Lnet/minecraft/resources/ResourceKey;Lnet/minecraft/resources/ResourceKey;JIIIZZZZLjava/util/Optional;I)V net/minecraft/network/protocol/game/ClientboundLoginPacket/ (IZLnet/minecraft/world/level/GameType;Lnet/minecraft/world/level/GameType;Ljava/util/Set;Lnet/minecraft/core/RegistryAccess$Frozen;Lnet/minecraft/resources/ResourceKey;Lnet/minecraft/resources/ResourceKey;JIIIZZZZLjava/util/Optional;I)V +MD: net/minecraft/network/protocol/game/ClientboundLoginPacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ClientboundLoginPacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ClientboundLoginPacket/equals (Ljava/lang/Object;)Z net/minecraft/network/protocol/game/ClientboundLoginPacket/equals (Ljava/lang/Object;)Z +MD: net/minecraft/network/protocol/game/ClientboundLoginPacket/f_132360_ ()I net/minecraft/network/protocol/game/ClientboundLoginPacket/playerId ()I +MD: net/minecraft/network/protocol/game/ClientboundLoginPacket/f_132361_ ()J net/minecraft/network/protocol/game/ClientboundLoginPacket/seed ()J +MD: net/minecraft/network/protocol/game/ClientboundLoginPacket/f_132362_ ()Z net/minecraft/network/protocol/game/ClientboundLoginPacket/hardcore ()Z +MD: net/minecraft/network/protocol/game/ClientboundLoginPacket/f_132363_ ()Lnet/minecraft/world/level/GameType; net/minecraft/network/protocol/game/ClientboundLoginPacket/gameType ()Lnet/minecraft/world/level/GameType; +MD: net/minecraft/network/protocol/game/ClientboundLoginPacket/f_132364_ ()Lnet/minecraft/world/level/GameType; net/minecraft/network/protocol/game/ClientboundLoginPacket/previousGameType ()Lnet/minecraft/world/level/GameType; +MD: net/minecraft/network/protocol/game/ClientboundLoginPacket/f_132365_ ()Ljava/util/Set; net/minecraft/network/protocol/game/ClientboundLoginPacket/levels ()Ljava/util/Set; +MD: net/minecraft/network/protocol/game/ClientboundLoginPacket/f_132366_ ()Lnet/minecraft/core/RegistryAccess$Frozen; net/minecraft/network/protocol/game/ClientboundLoginPacket/registryHolder ()Lnet/minecraft/core/RegistryAccess$Frozen; +MD: net/minecraft/network/protocol/game/ClientboundLoginPacket/f_132367_ ()Lnet/minecraft/resources/ResourceKey; net/minecraft/network/protocol/game/ClientboundLoginPacket/dimensionType ()Lnet/minecraft/resources/ResourceKey; +MD: net/minecraft/network/protocol/game/ClientboundLoginPacket/f_132368_ ()Lnet/minecraft/resources/ResourceKey; net/minecraft/network/protocol/game/ClientboundLoginPacket/dimension ()Lnet/minecraft/resources/ResourceKey; +MD: net/minecraft/network/protocol/game/ClientboundLoginPacket/f_132369_ ()I net/minecraft/network/protocol/game/ClientboundLoginPacket/maxPlayers ()I +MD: net/minecraft/network/protocol/game/ClientboundLoginPacket/f_132370_ ()I net/minecraft/network/protocol/game/ClientboundLoginPacket/chunkRadius ()I +MD: net/minecraft/network/protocol/game/ClientboundLoginPacket/f_132371_ ()Z net/minecraft/network/protocol/game/ClientboundLoginPacket/reducedDebugInfo ()Z +MD: net/minecraft/network/protocol/game/ClientboundLoginPacket/f_132372_ ()Z net/minecraft/network/protocol/game/ClientboundLoginPacket/showDeathScreen ()Z +MD: net/minecraft/network/protocol/game/ClientboundLoginPacket/f_132373_ ()Z net/minecraft/network/protocol/game/ClientboundLoginPacket/isDebug ()Z +MD: net/minecraft/network/protocol/game/ClientboundLoginPacket/f_132374_ ()Z net/minecraft/network/protocol/game/ClientboundLoginPacket/isFlat ()Z +MD: net/minecraft/network/protocol/game/ClientboundLoginPacket/f_195761_ ()I net/minecraft/network/protocol/game/ClientboundLoginPacket/simulationDistance ()I +MD: net/minecraft/network/protocol/game/ClientboundLoginPacket/f_238174_ ()Ljava/util/Optional; net/minecraft/network/protocol/game/ClientboundLoginPacket/lastDeathLocation ()Ljava/util/Optional; +MD: net/minecraft/network/protocol/game/ClientboundLoginPacket/f_286971_ ()I net/minecraft/network/protocol/game/ClientboundLoginPacket/portalCooldown ()I +MD: net/minecraft/network/protocol/game/ClientboundLoginPacket/hashCode ()I net/minecraft/network/protocol/game/ClientboundLoginPacket/hashCode ()I +MD: net/minecraft/network/protocol/game/ClientboundLoginPacket/m_257123_ (Lnet/minecraft/network/FriendlyByteBuf;)Lnet/minecraft/resources/ResourceKey; net/minecraft/network/protocol/game/ClientboundLoginPacket/lambda$new$0 (Lnet/minecraft/network/FriendlyByteBuf;)Lnet/minecraft/resources/ResourceKey; +MD: net/minecraft/network/protocol/game/ClientboundLoginPacket/m_5779_ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ClientboundLoginPacket/write (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ClientboundLoginPacket/m_5797_ (Lnet/minecraft/network/protocol/game/ClientGamePacketListener;)V net/minecraft/network/protocol/game/ClientboundLoginPacket/handle (Lnet/minecraft/network/protocol/game/ClientGamePacketListener;)V +MD: net/minecraft/network/protocol/game/ClientboundLoginPacket/m_5797_ (Lnet/minecraft/network/PacketListener;)V net/minecraft/network/protocol/game/ClientboundLoginPacket/handle (Lnet/minecraft/network/PacketListener;)V +MD: net/minecraft/network/protocol/game/ClientboundLoginPacket/toString ()Ljava/lang/String; net/minecraft/network/protocol/game/ClientboundLoginPacket/toString ()Ljava/lang/String; +MD: net/minecraft/network/protocol/game/ClientboundMapItemDataPacket/ (IBZLjava/util/Collection;Lnet/minecraft/world/level/saveddata/maps/MapItemSavedData$MapPatch;)V net/minecraft/network/protocol/game/ClientboundMapItemDataPacket/ (IBZLjava/util/Collection;Lnet/minecraft/world/level/saveddata/maps/MapItemSavedData$MapPatch;)V +MD: net/minecraft/network/protocol/game/ClientboundMapItemDataPacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ClientboundMapItemDataPacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ClientboundMapItemDataPacket/m_132437_ (Lnet/minecraft/world/level/saveddata/maps/MapItemSavedData;)V net/minecraft/network/protocol/game/ClientboundMapItemDataPacket/applyToMap (Lnet/minecraft/world/level/saveddata/maps/MapItemSavedData;)V +MD: net/minecraft/network/protocol/game/ClientboundMapItemDataPacket/m_132445_ ()I net/minecraft/network/protocol/game/ClientboundMapItemDataPacket/getMapId ()I +MD: net/minecraft/network/protocol/game/ClientboundMapItemDataPacket/m_178980_ (Lnet/minecraft/network/FriendlyByteBuf;)Lnet/minecraft/world/level/saveddata/maps/MapDecoration; net/minecraft/network/protocol/game/ClientboundMapItemDataPacket/lambda$new$0 (Lnet/minecraft/network/FriendlyByteBuf;)Lnet/minecraft/world/level/saveddata/maps/MapDecoration; +MD: net/minecraft/network/protocol/game/ClientboundMapItemDataPacket/m_178982_ ()B net/minecraft/network/protocol/game/ClientboundMapItemDataPacket/getScale ()B +MD: net/minecraft/network/protocol/game/ClientboundMapItemDataPacket/m_178983_ ()Z net/minecraft/network/protocol/game/ClientboundMapItemDataPacket/isLocked ()Z +MD: net/minecraft/network/protocol/game/ClientboundMapItemDataPacket/m_237724_ (Lnet/minecraft/network/FriendlyByteBuf;Lnet/minecraft/world/level/saveddata/maps/MapDecoration;)V net/minecraft/network/protocol/game/ClientboundMapItemDataPacket/lambda$write$2 (Lnet/minecraft/network/FriendlyByteBuf;Lnet/minecraft/world/level/saveddata/maps/MapDecoration;)V +MD: net/minecraft/network/protocol/game/ClientboundMapItemDataPacket/m_237727_ (Lnet/minecraft/network/FriendlyByteBuf;Ljava/util/List;)V net/minecraft/network/protocol/game/ClientboundMapItemDataPacket/lambda$write$3 (Lnet/minecraft/network/FriendlyByteBuf;Ljava/util/List;)V +MD: net/minecraft/network/protocol/game/ClientboundMapItemDataPacket/m_237730_ (Lnet/minecraft/network/FriendlyByteBuf;)Ljava/util/List; net/minecraft/network/protocol/game/ClientboundMapItemDataPacket/lambda$new$1 (Lnet/minecraft/network/FriendlyByteBuf;)Ljava/util/List; +MD: net/minecraft/network/protocol/game/ClientboundMapItemDataPacket/m_5779_ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ClientboundMapItemDataPacket/write (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ClientboundMapItemDataPacket/m_5797_ (Lnet/minecraft/network/protocol/game/ClientGamePacketListener;)V net/minecraft/network/protocol/game/ClientboundMapItemDataPacket/handle (Lnet/minecraft/network/protocol/game/ClientGamePacketListener;)V +MD: net/minecraft/network/protocol/game/ClientboundMapItemDataPacket/m_5797_ (Lnet/minecraft/network/PacketListener;)V net/minecraft/network/protocol/game/ClientboundMapItemDataPacket/handle (Lnet/minecraft/network/PacketListener;)V +MD: net/minecraft/network/protocol/game/ClientboundMerchantOffersPacket/ (ILnet/minecraft/world/item/trading/MerchantOffers;IIZZ)V net/minecraft/network/protocol/game/ClientboundMerchantOffersPacket/ (ILnet/minecraft/world/item/trading/MerchantOffers;IIZZ)V +MD: net/minecraft/network/protocol/game/ClientboundMerchantOffersPacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ClientboundMerchantOffersPacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ClientboundMerchantOffersPacket/m_132468_ ()I net/minecraft/network/protocol/game/ClientboundMerchantOffersPacket/getContainerId ()I +MD: net/minecraft/network/protocol/game/ClientboundMerchantOffersPacket/m_132471_ ()Lnet/minecraft/world/item/trading/MerchantOffers; net/minecraft/network/protocol/game/ClientboundMerchantOffersPacket/getOffers ()Lnet/minecraft/world/item/trading/MerchantOffers; +MD: net/minecraft/network/protocol/game/ClientboundMerchantOffersPacket/m_132472_ ()I net/minecraft/network/protocol/game/ClientboundMerchantOffersPacket/getVillagerLevel ()I +MD: net/minecraft/network/protocol/game/ClientboundMerchantOffersPacket/m_132473_ ()I net/minecraft/network/protocol/game/ClientboundMerchantOffersPacket/getVillagerXp ()I +MD: net/minecraft/network/protocol/game/ClientboundMerchantOffersPacket/m_132474_ ()Z net/minecraft/network/protocol/game/ClientboundMerchantOffersPacket/showProgress ()Z +MD: net/minecraft/network/protocol/game/ClientboundMerchantOffersPacket/m_132475_ ()Z net/minecraft/network/protocol/game/ClientboundMerchantOffersPacket/canRestock ()Z +MD: net/minecraft/network/protocol/game/ClientboundMerchantOffersPacket/m_5779_ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ClientboundMerchantOffersPacket/write (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ClientboundMerchantOffersPacket/m_5797_ (Lnet/minecraft/network/PacketListener;)V net/minecraft/network/protocol/game/ClientboundMerchantOffersPacket/handle (Lnet/minecraft/network/PacketListener;)V +MD: net/minecraft/network/protocol/game/ClientboundMerchantOffersPacket/m_5797_ (Lnet/minecraft/network/protocol/game/ClientGamePacketListener;)V net/minecraft/network/protocol/game/ClientboundMerchantOffersPacket/handle (Lnet/minecraft/network/protocol/game/ClientGamePacketListener;)V +MD: net/minecraft/network/protocol/game/ClientboundMoveEntityPacket/ (ISSSBBZZZ)V net/minecraft/network/protocol/game/ClientboundMoveEntityPacket/ (ISSSBBZZZ)V +MD: net/minecraft/network/protocol/game/ClientboundMoveEntityPacket/m_132519_ (Lnet/minecraft/world/level/Level;)Lnet/minecraft/world/entity/Entity; net/minecraft/network/protocol/game/ClientboundMoveEntityPacket/getEntity (Lnet/minecraft/world/level/Level;)Lnet/minecraft/world/entity/Entity; +MD: net/minecraft/network/protocol/game/ClientboundMoveEntityPacket/m_132531_ ()B net/minecraft/network/protocol/game/ClientboundMoveEntityPacket/getyRot ()B +MD: net/minecraft/network/protocol/game/ClientboundMoveEntityPacket/m_132532_ ()B net/minecraft/network/protocol/game/ClientboundMoveEntityPacket/getxRot ()B +MD: net/minecraft/network/protocol/game/ClientboundMoveEntityPacket/m_132533_ ()Z net/minecraft/network/protocol/game/ClientboundMoveEntityPacket/hasRotation ()Z +MD: net/minecraft/network/protocol/game/ClientboundMoveEntityPacket/m_132534_ ()Z net/minecraft/network/protocol/game/ClientboundMoveEntityPacket/hasPosition ()Z +MD: net/minecraft/network/protocol/game/ClientboundMoveEntityPacket/m_132535_ ()Z net/minecraft/network/protocol/game/ClientboundMoveEntityPacket/isOnGround ()Z +MD: net/minecraft/network/protocol/game/ClientboundMoveEntityPacket/m_178997_ ()S net/minecraft/network/protocol/game/ClientboundMoveEntityPacket/getXa ()S +MD: net/minecraft/network/protocol/game/ClientboundMoveEntityPacket/m_178998_ ()S net/minecraft/network/protocol/game/ClientboundMoveEntityPacket/getYa ()S +MD: net/minecraft/network/protocol/game/ClientboundMoveEntityPacket/m_178999_ ()S net/minecraft/network/protocol/game/ClientboundMoveEntityPacket/getZa ()S +MD: net/minecraft/network/protocol/game/ClientboundMoveEntityPacket/m_5797_ (Lnet/minecraft/network/protocol/game/ClientGamePacketListener;)V net/minecraft/network/protocol/game/ClientboundMoveEntityPacket/handle (Lnet/minecraft/network/protocol/game/ClientGamePacketListener;)V +MD: net/minecraft/network/protocol/game/ClientboundMoveEntityPacket/m_5797_ (Lnet/minecraft/network/PacketListener;)V net/minecraft/network/protocol/game/ClientboundMoveEntityPacket/handle (Lnet/minecraft/network/PacketListener;)V +MD: net/minecraft/network/protocol/game/ClientboundMoveEntityPacket/toString ()Ljava/lang/String; net/minecraft/network/protocol/game/ClientboundMoveEntityPacket/toString ()Ljava/lang/String; +MD: net/minecraft/network/protocol/game/ClientboundMoveEntityPacket$Pos/ (ISSSZ)V net/minecraft/network/protocol/game/ClientboundMoveEntityPacket$Pos/ (ISSSZ)V +MD: net/minecraft/network/protocol/game/ClientboundMoveEntityPacket$Pos/m_179000_ (Lnet/minecraft/network/FriendlyByteBuf;)Lnet/minecraft/network/protocol/game/ClientboundMoveEntityPacket$Pos; net/minecraft/network/protocol/game/ClientboundMoveEntityPacket$Pos/read (Lnet/minecraft/network/FriendlyByteBuf;)Lnet/minecraft/network/protocol/game/ClientboundMoveEntityPacket$Pos; +MD: net/minecraft/network/protocol/game/ClientboundMoveEntityPacket$Pos/m_5779_ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ClientboundMoveEntityPacket$Pos/write (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ClientboundMoveEntityPacket$Pos/m_5797_ (Lnet/minecraft/network/PacketListener;)V net/minecraft/network/protocol/game/ClientboundMoveEntityPacket$Pos/handle (Lnet/minecraft/network/PacketListener;)V +MD: net/minecraft/network/protocol/game/ClientboundMoveEntityPacket$PosRot/ (ISSSBBZ)V net/minecraft/network/protocol/game/ClientboundMoveEntityPacket$PosRot/ (ISSSBBZ)V +MD: net/minecraft/network/protocol/game/ClientboundMoveEntityPacket$PosRot/m_179002_ (Lnet/minecraft/network/FriendlyByteBuf;)Lnet/minecraft/network/protocol/game/ClientboundMoveEntityPacket$PosRot; net/minecraft/network/protocol/game/ClientboundMoveEntityPacket$PosRot/read (Lnet/minecraft/network/FriendlyByteBuf;)Lnet/minecraft/network/protocol/game/ClientboundMoveEntityPacket$PosRot; +MD: net/minecraft/network/protocol/game/ClientboundMoveEntityPacket$PosRot/m_5779_ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ClientboundMoveEntityPacket$PosRot/write (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ClientboundMoveEntityPacket$PosRot/m_5797_ (Lnet/minecraft/network/PacketListener;)V net/minecraft/network/protocol/game/ClientboundMoveEntityPacket$PosRot/handle (Lnet/minecraft/network/PacketListener;)V +MD: net/minecraft/network/protocol/game/ClientboundMoveEntityPacket$Rot/ (IBBZ)V net/minecraft/network/protocol/game/ClientboundMoveEntityPacket$Rot/ (IBBZ)V +MD: net/minecraft/network/protocol/game/ClientboundMoveEntityPacket$Rot/m_179004_ (Lnet/minecraft/network/FriendlyByteBuf;)Lnet/minecraft/network/protocol/game/ClientboundMoveEntityPacket$Rot; net/minecraft/network/protocol/game/ClientboundMoveEntityPacket$Rot/read (Lnet/minecraft/network/FriendlyByteBuf;)Lnet/minecraft/network/protocol/game/ClientboundMoveEntityPacket$Rot; +MD: net/minecraft/network/protocol/game/ClientboundMoveEntityPacket$Rot/m_5779_ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ClientboundMoveEntityPacket$Rot/write (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ClientboundMoveEntityPacket$Rot/m_5797_ (Lnet/minecraft/network/PacketListener;)V net/minecraft/network/protocol/game/ClientboundMoveEntityPacket$Rot/handle (Lnet/minecraft/network/PacketListener;)V +MD: net/minecraft/network/protocol/game/ClientboundMoveVehiclePacket/ (Lnet/minecraft/world/entity/Entity;)V net/minecraft/network/protocol/game/ClientboundMoveVehiclePacket/ (Lnet/minecraft/world/entity/Entity;)V +MD: net/minecraft/network/protocol/game/ClientboundMoveVehiclePacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ClientboundMoveVehiclePacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ClientboundMoveVehiclePacket/m_132591_ ()D net/minecraft/network/protocol/game/ClientboundMoveVehiclePacket/getX ()D +MD: net/minecraft/network/protocol/game/ClientboundMoveVehiclePacket/m_132594_ ()D net/minecraft/network/protocol/game/ClientboundMoveVehiclePacket/getY ()D +MD: net/minecraft/network/protocol/game/ClientboundMoveVehiclePacket/m_132595_ ()D net/minecraft/network/protocol/game/ClientboundMoveVehiclePacket/getZ ()D +MD: net/minecraft/network/protocol/game/ClientboundMoveVehiclePacket/m_132596_ ()F net/minecraft/network/protocol/game/ClientboundMoveVehiclePacket/getYRot ()F +MD: net/minecraft/network/protocol/game/ClientboundMoveVehiclePacket/m_132597_ ()F net/minecraft/network/protocol/game/ClientboundMoveVehiclePacket/getXRot ()F +MD: net/minecraft/network/protocol/game/ClientboundMoveVehiclePacket/m_5779_ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ClientboundMoveVehiclePacket/write (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ClientboundMoveVehiclePacket/m_5797_ (Lnet/minecraft/network/PacketListener;)V net/minecraft/network/protocol/game/ClientboundMoveVehiclePacket/handle (Lnet/minecraft/network/PacketListener;)V +MD: net/minecraft/network/protocol/game/ClientboundMoveVehiclePacket/m_5797_ (Lnet/minecraft/network/protocol/game/ClientGamePacketListener;)V net/minecraft/network/protocol/game/ClientboundMoveVehiclePacket/handle (Lnet/minecraft/network/protocol/game/ClientGamePacketListener;)V +MD: net/minecraft/network/protocol/game/ClientboundOpenBookPacket/ (Lnet/minecraft/world/InteractionHand;)V net/minecraft/network/protocol/game/ClientboundOpenBookPacket/ (Lnet/minecraft/world/InteractionHand;)V +MD: net/minecraft/network/protocol/game/ClientboundOpenBookPacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ClientboundOpenBookPacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ClientboundOpenBookPacket/m_132608_ ()Lnet/minecraft/world/InteractionHand; net/minecraft/network/protocol/game/ClientboundOpenBookPacket/getHand ()Lnet/minecraft/world/InteractionHand; +MD: net/minecraft/network/protocol/game/ClientboundOpenBookPacket/m_5779_ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ClientboundOpenBookPacket/write (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ClientboundOpenBookPacket/m_5797_ (Lnet/minecraft/network/PacketListener;)V net/minecraft/network/protocol/game/ClientboundOpenBookPacket/handle (Lnet/minecraft/network/PacketListener;)V +MD: net/minecraft/network/protocol/game/ClientboundOpenBookPacket/m_5797_ (Lnet/minecraft/network/protocol/game/ClientGamePacketListener;)V net/minecraft/network/protocol/game/ClientboundOpenBookPacket/handle (Lnet/minecraft/network/protocol/game/ClientGamePacketListener;)V +MD: net/minecraft/network/protocol/game/ClientboundOpenScreenPacket/ (ILnet/minecraft/world/inventory/MenuType;Lnet/minecraft/network/chat/Component;)V net/minecraft/network/protocol/game/ClientboundOpenScreenPacket/ (ILnet/minecraft/world/inventory/MenuType;Lnet/minecraft/network/chat/Component;)V +MD: net/minecraft/network/protocol/game/ClientboundOpenScreenPacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ClientboundOpenScreenPacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ClientboundOpenScreenPacket/m_132625_ ()I net/minecraft/network/protocol/game/ClientboundOpenScreenPacket/getContainerId ()I +MD: net/minecraft/network/protocol/game/ClientboundOpenScreenPacket/m_132628_ ()Lnet/minecraft/world/inventory/MenuType; net/minecraft/network/protocol/game/ClientboundOpenScreenPacket/getType ()Lnet/minecraft/world/inventory/MenuType; +MD: net/minecraft/network/protocol/game/ClientboundOpenScreenPacket/m_132629_ ()Lnet/minecraft/network/chat/Component; net/minecraft/network/protocol/game/ClientboundOpenScreenPacket/getTitle ()Lnet/minecraft/network/chat/Component; +MD: net/minecraft/network/protocol/game/ClientboundOpenScreenPacket/m_5779_ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ClientboundOpenScreenPacket/write (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ClientboundOpenScreenPacket/m_5797_ (Lnet/minecraft/network/PacketListener;)V net/minecraft/network/protocol/game/ClientboundOpenScreenPacket/handle (Lnet/minecraft/network/PacketListener;)V +MD: net/minecraft/network/protocol/game/ClientboundOpenScreenPacket/m_5797_ (Lnet/minecraft/network/protocol/game/ClientGamePacketListener;)V net/minecraft/network/protocol/game/ClientboundOpenScreenPacket/handle (Lnet/minecraft/network/protocol/game/ClientGamePacketListener;)V +MD: net/minecraft/network/protocol/game/ClientboundOpenSignEditorPacket/ (Lnet/minecraft/core/BlockPos;Z)V net/minecraft/network/protocol/game/ClientboundOpenSignEditorPacket/ (Lnet/minecraft/core/BlockPos;Z)V +MD: net/minecraft/network/protocol/game/ClientboundOpenSignEditorPacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ClientboundOpenSignEditorPacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ClientboundOpenSignEditorPacket/m_132640_ ()Lnet/minecraft/core/BlockPos; net/minecraft/network/protocol/game/ClientboundOpenSignEditorPacket/getPos ()Lnet/minecraft/core/BlockPos; +MD: net/minecraft/network/protocol/game/ClientboundOpenSignEditorPacket/m_276774_ ()Z net/minecraft/network/protocol/game/ClientboundOpenSignEditorPacket/isFrontText ()Z +MD: net/minecraft/network/protocol/game/ClientboundOpenSignEditorPacket/m_5779_ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ClientboundOpenSignEditorPacket/write (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ClientboundOpenSignEditorPacket/m_5797_ (Lnet/minecraft/network/PacketListener;)V net/minecraft/network/protocol/game/ClientboundOpenSignEditorPacket/handle (Lnet/minecraft/network/PacketListener;)V +MD: net/minecraft/network/protocol/game/ClientboundOpenSignEditorPacket/m_5797_ (Lnet/minecraft/network/protocol/game/ClientGamePacketListener;)V net/minecraft/network/protocol/game/ClientboundOpenSignEditorPacket/handle (Lnet/minecraft/network/protocol/game/ClientGamePacketListener;)V +MD: net/minecraft/network/protocol/game/ClientboundPingPacket/ (I)V net/minecraft/network/protocol/game/ClientboundPingPacket/ (I)V +MD: net/minecraft/network/protocol/game/ClientboundPingPacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ClientboundPingPacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ClientboundPingPacket/m_179025_ ()I net/minecraft/network/protocol/game/ClientboundPingPacket/getId ()I +MD: net/minecraft/network/protocol/game/ClientboundPingPacket/m_5779_ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ClientboundPingPacket/write (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ClientboundPingPacket/m_5797_ (Lnet/minecraft/network/PacketListener;)V net/minecraft/network/protocol/game/ClientboundPingPacket/handle (Lnet/minecraft/network/PacketListener;)V +MD: net/minecraft/network/protocol/game/ClientboundPingPacket/m_5797_ (Lnet/minecraft/network/protocol/game/ClientGamePacketListener;)V net/minecraft/network/protocol/game/ClientboundPingPacket/handle (Lnet/minecraft/network/protocol/game/ClientGamePacketListener;)V +MD: net/minecraft/network/protocol/game/ClientboundPlaceGhostRecipePacket/ (ILnet/minecraft/world/item/crafting/Recipe;)V net/minecraft/network/protocol/game/ClientboundPlaceGhostRecipePacket/ (ILnet/minecraft/world/item/crafting/Recipe;)V +MD: net/minecraft/network/protocol/game/ClientboundPlaceGhostRecipePacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ClientboundPlaceGhostRecipePacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ClientboundPlaceGhostRecipePacket/m_132655_ ()Lnet/minecraft/resources/ResourceLocation; net/minecraft/network/protocol/game/ClientboundPlaceGhostRecipePacket/getRecipe ()Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/network/protocol/game/ClientboundPlaceGhostRecipePacket/m_132658_ ()I net/minecraft/network/protocol/game/ClientboundPlaceGhostRecipePacket/getContainerId ()I +MD: net/minecraft/network/protocol/game/ClientboundPlaceGhostRecipePacket/m_5779_ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ClientboundPlaceGhostRecipePacket/write (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ClientboundPlaceGhostRecipePacket/m_5797_ (Lnet/minecraft/network/PacketListener;)V net/minecraft/network/protocol/game/ClientboundPlaceGhostRecipePacket/handle (Lnet/minecraft/network/PacketListener;)V +MD: net/minecraft/network/protocol/game/ClientboundPlaceGhostRecipePacket/m_5797_ (Lnet/minecraft/network/protocol/game/ClientGamePacketListener;)V net/minecraft/network/protocol/game/ClientboundPlaceGhostRecipePacket/handle (Lnet/minecraft/network/protocol/game/ClientGamePacketListener;)V +MD: net/minecraft/network/protocol/game/ClientboundPlayerAbilitiesPacket/ (Lnet/minecraft/world/entity/player/Abilities;)V net/minecraft/network/protocol/game/ClientboundPlayerAbilitiesPacket/ (Lnet/minecraft/world/entity/player/Abilities;)V +MD: net/minecraft/network/protocol/game/ClientboundPlayerAbilitiesPacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ClientboundPlayerAbilitiesPacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ClientboundPlayerAbilitiesPacket/m_132674_ ()Z net/minecraft/network/protocol/game/ClientboundPlayerAbilitiesPacket/isInvulnerable ()Z +MD: net/minecraft/network/protocol/game/ClientboundPlayerAbilitiesPacket/m_132677_ ()Z net/minecraft/network/protocol/game/ClientboundPlayerAbilitiesPacket/isFlying ()Z +MD: net/minecraft/network/protocol/game/ClientboundPlayerAbilitiesPacket/m_132678_ ()Z net/minecraft/network/protocol/game/ClientboundPlayerAbilitiesPacket/canFly ()Z +MD: net/minecraft/network/protocol/game/ClientboundPlayerAbilitiesPacket/m_132679_ ()Z net/minecraft/network/protocol/game/ClientboundPlayerAbilitiesPacket/canInstabuild ()Z +MD: net/minecraft/network/protocol/game/ClientboundPlayerAbilitiesPacket/m_132680_ ()F net/minecraft/network/protocol/game/ClientboundPlayerAbilitiesPacket/getFlyingSpeed ()F +MD: net/minecraft/network/protocol/game/ClientboundPlayerAbilitiesPacket/m_132681_ ()F net/minecraft/network/protocol/game/ClientboundPlayerAbilitiesPacket/getWalkingSpeed ()F +MD: net/minecraft/network/protocol/game/ClientboundPlayerAbilitiesPacket/m_5779_ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ClientboundPlayerAbilitiesPacket/write (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ClientboundPlayerAbilitiesPacket/m_5797_ (Lnet/minecraft/network/PacketListener;)V net/minecraft/network/protocol/game/ClientboundPlayerAbilitiesPacket/handle (Lnet/minecraft/network/PacketListener;)V +MD: net/minecraft/network/protocol/game/ClientboundPlayerAbilitiesPacket/m_5797_ (Lnet/minecraft/network/protocol/game/ClientGamePacketListener;)V net/minecraft/network/protocol/game/ClientboundPlayerAbilitiesPacket/handle (Lnet/minecraft/network/protocol/game/ClientGamePacketListener;)V +MD: net/minecraft/network/protocol/game/ClientboundPlayerChatPacket/ (Ljava/util/UUID;ILnet/minecraft/network/chat/MessageSignature;Lnet/minecraft/network/chat/SignedMessageBody$Packed;Lnet/minecraft/network/chat/Component;Lnet/minecraft/network/chat/FilterMask;Lnet/minecraft/network/chat/ChatType$BoundNetwork;)V net/minecraft/network/protocol/game/ClientboundPlayerChatPacket/ (Ljava/util/UUID;ILnet/minecraft/network/chat/MessageSignature;Lnet/minecraft/network/chat/SignedMessageBody$Packed;Lnet/minecraft/network/chat/Component;Lnet/minecraft/network/chat/FilterMask;Lnet/minecraft/network/chat/ChatType$BoundNetwork;)V +MD: net/minecraft/network/protocol/game/ClientboundPlayerChatPacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ClientboundPlayerChatPacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ClientboundPlayerChatPacket/equals (Ljava/lang/Object;)Z net/minecraft/network/protocol/game/ClientboundPlayerChatPacket/equals (Ljava/lang/Object;)Z +MD: net/minecraft/network/protocol/game/ClientboundPlayerChatPacket/f_240897_ ()Lnet/minecraft/network/chat/ChatType$BoundNetwork; net/minecraft/network/protocol/game/ClientboundPlayerChatPacket/chatType ()Lnet/minecraft/network/chat/ChatType$BoundNetwork; +MD: net/minecraft/network/protocol/game/ClientboundPlayerChatPacket/f_243686_ ()Lnet/minecraft/network/chat/Component; net/minecraft/network/protocol/game/ClientboundPlayerChatPacket/unsignedContent ()Lnet/minecraft/network/chat/Component; +MD: net/minecraft/network/protocol/game/ClientboundPlayerChatPacket/f_243744_ ()Lnet/minecraft/network/chat/FilterMask; net/minecraft/network/protocol/game/ClientboundPlayerChatPacket/filterMask ()Lnet/minecraft/network/chat/FilterMask; +MD: net/minecraft/network/protocol/game/ClientboundPlayerChatPacket/f_243836_ ()Lnet/minecraft/network/chat/MessageSignature; net/minecraft/network/protocol/game/ClientboundPlayerChatPacket/signature ()Lnet/minecraft/network/chat/MessageSignature; +MD: net/minecraft/network/protocol/game/ClientboundPlayerChatPacket/f_243918_ ()Ljava/util/UUID; net/minecraft/network/protocol/game/ClientboundPlayerChatPacket/sender ()Ljava/util/UUID; +MD: net/minecraft/network/protocol/game/ClientboundPlayerChatPacket/f_244090_ ()Lnet/minecraft/network/chat/SignedMessageBody$Packed; net/minecraft/network/protocol/game/ClientboundPlayerChatPacket/body ()Lnet/minecraft/network/chat/SignedMessageBody$Packed; +MD: net/minecraft/network/protocol/game/ClientboundPlayerChatPacket/f_244283_ ()I net/minecraft/network/protocol/game/ClientboundPlayerChatPacket/index ()I +MD: net/minecraft/network/protocol/game/ClientboundPlayerChatPacket/hashCode ()I net/minecraft/network/protocol/game/ClientboundPlayerChatPacket/hashCode ()I +MD: net/minecraft/network/protocol/game/ClientboundPlayerChatPacket/m_5779_ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ClientboundPlayerChatPacket/write (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ClientboundPlayerChatPacket/m_5797_ (Lnet/minecraft/network/protocol/game/ClientGamePacketListener;)V net/minecraft/network/protocol/game/ClientboundPlayerChatPacket/handle (Lnet/minecraft/network/protocol/game/ClientGamePacketListener;)V +MD: net/minecraft/network/protocol/game/ClientboundPlayerChatPacket/m_5797_ (Lnet/minecraft/network/PacketListener;)V net/minecraft/network/protocol/game/ClientboundPlayerChatPacket/handle (Lnet/minecraft/network/PacketListener;)V +MD: net/minecraft/network/protocol/game/ClientboundPlayerChatPacket/m_6588_ ()Z net/minecraft/network/protocol/game/ClientboundPlayerChatPacket/isSkippable ()Z +MD: net/minecraft/network/protocol/game/ClientboundPlayerChatPacket/toString ()Ljava/lang/String; net/minecraft/network/protocol/game/ClientboundPlayerChatPacket/toString ()Ljava/lang/String; +MD: net/minecraft/network/protocol/game/ClientboundPlayerCombatEndPacket/ (I)V net/minecraft/network/protocol/game/ClientboundPlayerCombatEndPacket/ (I)V +MD: net/minecraft/network/protocol/game/ClientboundPlayerCombatEndPacket/ (Lnet/minecraft/world/damagesource/CombatTracker;)V net/minecraft/network/protocol/game/ClientboundPlayerCombatEndPacket/ (Lnet/minecraft/world/damagesource/CombatTracker;)V +MD: net/minecraft/network/protocol/game/ClientboundPlayerCombatEndPacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ClientboundPlayerCombatEndPacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ClientboundPlayerCombatEndPacket/m_5779_ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ClientboundPlayerCombatEndPacket/write (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ClientboundPlayerCombatEndPacket/m_5797_ (Lnet/minecraft/network/PacketListener;)V net/minecraft/network/protocol/game/ClientboundPlayerCombatEndPacket/handle (Lnet/minecraft/network/PacketListener;)V +MD: net/minecraft/network/protocol/game/ClientboundPlayerCombatEndPacket/m_5797_ (Lnet/minecraft/network/protocol/game/ClientGamePacketListener;)V net/minecraft/network/protocol/game/ClientboundPlayerCombatEndPacket/handle (Lnet/minecraft/network/protocol/game/ClientGamePacketListener;)V +MD: net/minecraft/network/protocol/game/ClientboundPlayerCombatEnterPacket/ ()V net/minecraft/network/protocol/game/ClientboundPlayerCombatEnterPacket/ ()V +MD: net/minecraft/network/protocol/game/ClientboundPlayerCombatEnterPacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ClientboundPlayerCombatEnterPacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ClientboundPlayerCombatEnterPacket/m_5779_ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ClientboundPlayerCombatEnterPacket/write (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ClientboundPlayerCombatEnterPacket/m_5797_ (Lnet/minecraft/network/PacketListener;)V net/minecraft/network/protocol/game/ClientboundPlayerCombatEnterPacket/handle (Lnet/minecraft/network/PacketListener;)V +MD: net/minecraft/network/protocol/game/ClientboundPlayerCombatEnterPacket/m_5797_ (Lnet/minecraft/network/protocol/game/ClientGamePacketListener;)V net/minecraft/network/protocol/game/ClientboundPlayerCombatEnterPacket/handle (Lnet/minecraft/network/protocol/game/ClientGamePacketListener;)V +MD: net/minecraft/network/protocol/game/ClientboundPlayerCombatKillPacket/ (ILnet/minecraft/network/chat/Component;)V net/minecraft/network/protocol/game/ClientboundPlayerCombatKillPacket/ (ILnet/minecraft/network/chat/Component;)V +MD: net/minecraft/network/protocol/game/ClientboundPlayerCombatKillPacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ClientboundPlayerCombatKillPacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ClientboundPlayerCombatKillPacket/m_179078_ ()I net/minecraft/network/protocol/game/ClientboundPlayerCombatKillPacket/getPlayerId ()I +MD: net/minecraft/network/protocol/game/ClientboundPlayerCombatKillPacket/m_179079_ ()Lnet/minecraft/network/chat/Component; net/minecraft/network/protocol/game/ClientboundPlayerCombatKillPacket/getMessage ()Lnet/minecraft/network/chat/Component; +MD: net/minecraft/network/protocol/game/ClientboundPlayerCombatKillPacket/m_5779_ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ClientboundPlayerCombatKillPacket/write (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ClientboundPlayerCombatKillPacket/m_5797_ (Lnet/minecraft/network/PacketListener;)V net/minecraft/network/protocol/game/ClientboundPlayerCombatKillPacket/handle (Lnet/minecraft/network/PacketListener;)V +MD: net/minecraft/network/protocol/game/ClientboundPlayerCombatKillPacket/m_5797_ (Lnet/minecraft/network/protocol/game/ClientGamePacketListener;)V net/minecraft/network/protocol/game/ClientboundPlayerCombatKillPacket/handle (Lnet/minecraft/network/protocol/game/ClientGamePacketListener;)V +MD: net/minecraft/network/protocol/game/ClientboundPlayerCombatKillPacket/m_6588_ ()Z net/minecraft/network/protocol/game/ClientboundPlayerCombatKillPacket/isSkippable ()Z +MD: net/minecraft/network/protocol/game/ClientboundPlayerInfoRemovePacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ClientboundPlayerInfoRemovePacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ClientboundPlayerInfoRemovePacket/ (Ljava/util/List;)V net/minecraft/network/protocol/game/ClientboundPlayerInfoRemovePacket/ (Ljava/util/List;)V +MD: net/minecraft/network/protocol/game/ClientboundPlayerInfoRemovePacket/equals (Ljava/lang/Object;)Z net/minecraft/network/protocol/game/ClientboundPlayerInfoRemovePacket/equals (Ljava/lang/Object;)Z +MD: net/minecraft/network/protocol/game/ClientboundPlayerInfoRemovePacket/f_244383_ ()Ljava/util/List; net/minecraft/network/protocol/game/ClientboundPlayerInfoRemovePacket/profileIds ()Ljava/util/List; +MD: net/minecraft/network/protocol/game/ClientboundPlayerInfoRemovePacket/hashCode ()I net/minecraft/network/protocol/game/ClientboundPlayerInfoRemovePacket/hashCode ()I +MD: net/minecraft/network/protocol/game/ClientboundPlayerInfoRemovePacket/m_5779_ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ClientboundPlayerInfoRemovePacket/write (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ClientboundPlayerInfoRemovePacket/m_5797_ (Lnet/minecraft/network/PacketListener;)V net/minecraft/network/protocol/game/ClientboundPlayerInfoRemovePacket/handle (Lnet/minecraft/network/PacketListener;)V +MD: net/minecraft/network/protocol/game/ClientboundPlayerInfoRemovePacket/m_5797_ (Lnet/minecraft/network/protocol/game/ClientGamePacketListener;)V net/minecraft/network/protocol/game/ClientboundPlayerInfoRemovePacket/handle (Lnet/minecraft/network/protocol/game/ClientGamePacketListener;)V +MD: net/minecraft/network/protocol/game/ClientboundPlayerInfoRemovePacket/toString ()Ljava/lang/String; net/minecraft/network/protocol/game/ClientboundPlayerInfoRemovePacket/toString ()Ljava/lang/String; +MD: net/minecraft/network/protocol/game/ClientboundPlayerInfoUpdatePacket/ (Ljava/util/EnumSet;Ljava/util/Collection;)V net/minecraft/network/protocol/game/ClientboundPlayerInfoUpdatePacket/ (Ljava/util/EnumSet;Ljava/util/Collection;)V +MD: net/minecraft/network/protocol/game/ClientboundPlayerInfoUpdatePacket/ (Lnet/minecraft/network/protocol/game/ClientboundPlayerInfoUpdatePacket$Action;Lnet/minecraft/server/level/ServerPlayer;)V net/minecraft/network/protocol/game/ClientboundPlayerInfoUpdatePacket/ (Lnet/minecraft/network/protocol/game/ClientboundPlayerInfoUpdatePacket$Action;Lnet/minecraft/server/level/ServerPlayer;)V +MD: net/minecraft/network/protocol/game/ClientboundPlayerInfoUpdatePacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ClientboundPlayerInfoUpdatePacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ClientboundPlayerInfoUpdatePacket/m_245290_ ()Ljava/util/List; net/minecraft/network/protocol/game/ClientboundPlayerInfoUpdatePacket/newEntries ()Ljava/util/List; +MD: net/minecraft/network/protocol/game/ClientboundPlayerInfoUpdatePacket/m_245788_ (Lnet/minecraft/network/FriendlyByteBuf;Lnet/minecraft/network/protocol/game/ClientboundPlayerInfoUpdatePacket$Entry;)V net/minecraft/network/protocol/game/ClientboundPlayerInfoUpdatePacket/lambda$write$1 (Lnet/minecraft/network/FriendlyByteBuf;Lnet/minecraft/network/protocol/game/ClientboundPlayerInfoUpdatePacket$Entry;)V +MD: net/minecraft/network/protocol/game/ClientboundPlayerInfoUpdatePacket/m_246059_ (Lnet/minecraft/network/FriendlyByteBuf;)Lnet/minecraft/network/protocol/game/ClientboundPlayerInfoUpdatePacket$Entry; net/minecraft/network/protocol/game/ClientboundPlayerInfoUpdatePacket/lambda$new$0 (Lnet/minecraft/network/FriendlyByteBuf;)Lnet/minecraft/network/protocol/game/ClientboundPlayerInfoUpdatePacket$Entry; +MD: net/minecraft/network/protocol/game/ClientboundPlayerInfoUpdatePacket/m_246097_ ()Ljava/util/EnumSet; net/minecraft/network/protocol/game/ClientboundPlayerInfoUpdatePacket/actions ()Ljava/util/EnumSet; +MD: net/minecraft/network/protocol/game/ClientboundPlayerInfoUpdatePacket/m_246778_ ()Ljava/util/List; net/minecraft/network/protocol/game/ClientboundPlayerInfoUpdatePacket/entries ()Ljava/util/List; +MD: net/minecraft/network/protocol/game/ClientboundPlayerInfoUpdatePacket/m_247122_ (Ljava/util/Collection;)Lnet/minecraft/network/protocol/game/ClientboundPlayerInfoUpdatePacket; net/minecraft/network/protocol/game/ClientboundPlayerInfoUpdatePacket/createPlayerInitializing (Ljava/util/Collection;)Lnet/minecraft/network/protocol/game/ClientboundPlayerInfoUpdatePacket; +MD: net/minecraft/network/protocol/game/ClientboundPlayerInfoUpdatePacket/m_5779_ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ClientboundPlayerInfoUpdatePacket/write (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ClientboundPlayerInfoUpdatePacket/m_5797_ (Lnet/minecraft/network/protocol/game/ClientGamePacketListener;)V net/minecraft/network/protocol/game/ClientboundPlayerInfoUpdatePacket/handle (Lnet/minecraft/network/protocol/game/ClientGamePacketListener;)V +MD: net/minecraft/network/protocol/game/ClientboundPlayerInfoUpdatePacket/m_5797_ (Lnet/minecraft/network/PacketListener;)V net/minecraft/network/protocol/game/ClientboundPlayerInfoUpdatePacket/handle (Lnet/minecraft/network/PacketListener;)V +MD: net/minecraft/network/protocol/game/ClientboundPlayerInfoUpdatePacket/toString ()Ljava/lang/String; net/minecraft/network/protocol/game/ClientboundPlayerInfoUpdatePacket/toString ()Ljava/lang/String; +MD: net/minecraft/network/protocol/game/ClientboundPlayerInfoUpdatePacket$Action/ ()V net/minecraft/network/protocol/game/ClientboundPlayerInfoUpdatePacket$Action/ ()V +MD: net/minecraft/network/protocol/game/ClientboundPlayerInfoUpdatePacket$Action/ (Ljava/lang/String;ILnet/minecraft/network/protocol/game/ClientboundPlayerInfoUpdatePacket$Action$Reader;Lnet/minecraft/network/protocol/game/ClientboundPlayerInfoUpdatePacket$Action$Writer;)V net/minecraft/network/protocol/game/ClientboundPlayerInfoUpdatePacket$Action/ (Ljava/lang/String;ILnet/minecraft/network/protocol/game/ClientboundPlayerInfoUpdatePacket$Action$Reader;Lnet/minecraft/network/protocol/game/ClientboundPlayerInfoUpdatePacket$Action$Writer;)V +MD: net/minecraft/network/protocol/game/ClientboundPlayerInfoUpdatePacket$Action/m_245215_ (Lnet/minecraft/network/protocol/game/ClientboundPlayerInfoUpdatePacket$EntryBuilder;Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ClientboundPlayerInfoUpdatePacket$Action/lambda$static$0 (Lnet/minecraft/network/protocol/game/ClientboundPlayerInfoUpdatePacket$EntryBuilder;Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ClientboundPlayerInfoUpdatePacket$Action/m_245523_ (Lnet/minecraft/network/protocol/game/ClientboundPlayerInfoUpdatePacket$EntryBuilder;Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ClientboundPlayerInfoUpdatePacket$Action/lambda$static$6 (Lnet/minecraft/network/protocol/game/ClientboundPlayerInfoUpdatePacket$EntryBuilder;Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ClientboundPlayerInfoUpdatePacket$Action/m_245620_ ()[Lnet/minecraft/network/protocol/game/ClientboundPlayerInfoUpdatePacket$Action; net/minecraft/network/protocol/game/ClientboundPlayerInfoUpdatePacket$Action/$values ()[Lnet/minecraft/network/protocol/game/ClientboundPlayerInfoUpdatePacket$Action; +MD: net/minecraft/network/protocol/game/ClientboundPlayerInfoUpdatePacket$Action/m_245650_ (Lnet/minecraft/network/protocol/game/ClientboundPlayerInfoUpdatePacket$EntryBuilder;Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ClientboundPlayerInfoUpdatePacket$Action/lambda$static$4 (Lnet/minecraft/network/protocol/game/ClientboundPlayerInfoUpdatePacket$EntryBuilder;Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ClientboundPlayerInfoUpdatePacket$Action/m_245686_ (Lnet/minecraft/network/FriendlyByteBuf;Lnet/minecraft/network/protocol/game/ClientboundPlayerInfoUpdatePacket$Entry;)V net/minecraft/network/protocol/game/ClientboundPlayerInfoUpdatePacket$Action/lambda$static$11 (Lnet/minecraft/network/FriendlyByteBuf;Lnet/minecraft/network/protocol/game/ClientboundPlayerInfoUpdatePacket$Entry;)V +MD: net/minecraft/network/protocol/game/ClientboundPlayerInfoUpdatePacket$Action/m_245774_ (Lnet/minecraft/network/protocol/game/ClientboundPlayerInfoUpdatePacket$EntryBuilder;Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ClientboundPlayerInfoUpdatePacket$Action/lambda$static$8 (Lnet/minecraft/network/protocol/game/ClientboundPlayerInfoUpdatePacket$EntryBuilder;Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ClientboundPlayerInfoUpdatePacket$Action/m_245963_ (Lnet/minecraft/network/FriendlyByteBuf;Lnet/minecraft/network/protocol/game/ClientboundPlayerInfoUpdatePacket$Entry;)V net/minecraft/network/protocol/game/ClientboundPlayerInfoUpdatePacket$Action/lambda$static$9 (Lnet/minecraft/network/FriendlyByteBuf;Lnet/minecraft/network/protocol/game/ClientboundPlayerInfoUpdatePacket$Entry;)V +MD: net/minecraft/network/protocol/game/ClientboundPlayerInfoUpdatePacket$Action/m_246581_ (Lnet/minecraft/network/FriendlyByteBuf;Lnet/minecraft/network/protocol/game/ClientboundPlayerInfoUpdatePacket$Entry;)V net/minecraft/network/protocol/game/ClientboundPlayerInfoUpdatePacket$Action/lambda$static$1 (Lnet/minecraft/network/FriendlyByteBuf;Lnet/minecraft/network/protocol/game/ClientboundPlayerInfoUpdatePacket$Entry;)V +MD: net/minecraft/network/protocol/game/ClientboundPlayerInfoUpdatePacket$Action/m_247090_ (Lnet/minecraft/network/FriendlyByteBuf;Lnet/minecraft/network/protocol/game/ClientboundPlayerInfoUpdatePacket$Entry;)V net/minecraft/network/protocol/game/ClientboundPlayerInfoUpdatePacket$Action/lambda$static$7 (Lnet/minecraft/network/FriendlyByteBuf;Lnet/minecraft/network/protocol/game/ClientboundPlayerInfoUpdatePacket$Entry;)V +MD: net/minecraft/network/protocol/game/ClientboundPlayerInfoUpdatePacket$Action/m_247610_ (Lnet/minecraft/network/FriendlyByteBuf;Lnet/minecraft/network/protocol/game/ClientboundPlayerInfoUpdatePacket$Entry;)V net/minecraft/network/protocol/game/ClientboundPlayerInfoUpdatePacket$Action/lambda$static$5 (Lnet/minecraft/network/FriendlyByteBuf;Lnet/minecraft/network/protocol/game/ClientboundPlayerInfoUpdatePacket$Entry;)V +MD: net/minecraft/network/protocol/game/ClientboundPlayerInfoUpdatePacket$Action/m_247692_ (Lnet/minecraft/network/protocol/game/ClientboundPlayerInfoUpdatePacket$EntryBuilder;Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ClientboundPlayerInfoUpdatePacket$Action/lambda$static$10 (Lnet/minecraft/network/protocol/game/ClientboundPlayerInfoUpdatePacket$EntryBuilder;Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ClientboundPlayerInfoUpdatePacket$Action/m_252650_ (Lnet/minecraft/network/protocol/game/ClientboundPlayerInfoUpdatePacket$EntryBuilder;Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ClientboundPlayerInfoUpdatePacket$Action/lambda$static$2 (Lnet/minecraft/network/protocol/game/ClientboundPlayerInfoUpdatePacket$EntryBuilder;Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ClientboundPlayerInfoUpdatePacket$Action/m_252651_ (Lnet/minecraft/network/FriendlyByteBuf;Lnet/minecraft/network/protocol/game/ClientboundPlayerInfoUpdatePacket$Entry;)V net/minecraft/network/protocol/game/ClientboundPlayerInfoUpdatePacket$Action/lambda$static$3 (Lnet/minecraft/network/FriendlyByteBuf;Lnet/minecraft/network/protocol/game/ClientboundPlayerInfoUpdatePacket$Entry;)V +MD: net/minecraft/network/protocol/game/ClientboundPlayerInfoUpdatePacket$Action/valueOf (Ljava/lang/String;)Lnet/minecraft/network/protocol/game/ClientboundPlayerInfoUpdatePacket$Action; net/minecraft/network/protocol/game/ClientboundPlayerInfoUpdatePacket$Action/valueOf (Ljava/lang/String;)Lnet/minecraft/network/protocol/game/ClientboundPlayerInfoUpdatePacket$Action; +MD: net/minecraft/network/protocol/game/ClientboundPlayerInfoUpdatePacket$Action/values ()[Lnet/minecraft/network/protocol/game/ClientboundPlayerInfoUpdatePacket$Action; net/minecraft/network/protocol/game/ClientboundPlayerInfoUpdatePacket$Action/values ()[Lnet/minecraft/network/protocol/game/ClientboundPlayerInfoUpdatePacket$Action; +MD: net/minecraft/network/protocol/game/ClientboundPlayerInfoUpdatePacket$Action$Reader/m_247322_ (Lnet/minecraft/network/protocol/game/ClientboundPlayerInfoUpdatePacket$EntryBuilder;Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ClientboundPlayerInfoUpdatePacket$Action$Reader/read (Lnet/minecraft/network/protocol/game/ClientboundPlayerInfoUpdatePacket$EntryBuilder;Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ClientboundPlayerInfoUpdatePacket$Action$Writer/m_247205_ (Lnet/minecraft/network/FriendlyByteBuf;Lnet/minecraft/network/protocol/game/ClientboundPlayerInfoUpdatePacket$Entry;)V net/minecraft/network/protocol/game/ClientboundPlayerInfoUpdatePacket$Action$Writer/write (Lnet/minecraft/network/FriendlyByteBuf;Lnet/minecraft/network/protocol/game/ClientboundPlayerInfoUpdatePacket$Entry;)V +MD: net/minecraft/network/protocol/game/ClientboundPlayerInfoUpdatePacket$Entry/ (Ljava/util/UUID;Lcom/mojang/authlib/GameProfile;ZILnet/minecraft/world/level/GameType;Lnet/minecraft/network/chat/Component;Lnet/minecraft/network/chat/RemoteChatSession$Data;)V net/minecraft/network/protocol/game/ClientboundPlayerInfoUpdatePacket$Entry/ (Ljava/util/UUID;Lcom/mojang/authlib/GameProfile;ZILnet/minecraft/world/level/GameType;Lnet/minecraft/network/chat/Component;Lnet/minecraft/network/chat/RemoteChatSession$Data;)V +MD: net/minecraft/network/protocol/game/ClientboundPlayerInfoUpdatePacket$Entry/ (Lnet/minecraft/server/level/ServerPlayer;)V net/minecraft/network/protocol/game/ClientboundPlayerInfoUpdatePacket$Entry/ (Lnet/minecraft/server/level/ServerPlayer;)V +MD: net/minecraft/network/protocol/game/ClientboundPlayerInfoUpdatePacket$Entry/equals (Ljava/lang/Object;)Z net/minecraft/network/protocol/game/ClientboundPlayerInfoUpdatePacket$Entry/equals (Ljava/lang/Object;)Z +MD: net/minecraft/network/protocol/game/ClientboundPlayerInfoUpdatePacket$Entry/f_243688_ ()Lcom/mojang/authlib/GameProfile; net/minecraft/network/protocol/game/ClientboundPlayerInfoUpdatePacket$Entry/profile ()Lcom/mojang/authlib/GameProfile; +MD: net/minecraft/network/protocol/game/ClientboundPlayerInfoUpdatePacket$Entry/f_243700_ ()Z net/minecraft/network/protocol/game/ClientboundPlayerInfoUpdatePacket$Entry/listed ()Z +MD: net/minecraft/network/protocol/game/ClientboundPlayerInfoUpdatePacket$Entry/f_244142_ ()Ljava/util/UUID; net/minecraft/network/protocol/game/ClientboundPlayerInfoUpdatePacket$Entry/profileId ()Ljava/util/UUID; +MD: net/minecraft/network/protocol/game/ClientboundPlayerInfoUpdatePacket$Entry/f_244153_ ()Lnet/minecraft/network/chat/RemoteChatSession$Data; net/minecraft/network/protocol/game/ClientboundPlayerInfoUpdatePacket$Entry/chatSession ()Lnet/minecraft/network/chat/RemoteChatSession$Data; +MD: net/minecraft/network/protocol/game/ClientboundPlayerInfoUpdatePacket$Entry/f_244162_ ()Lnet/minecraft/world/level/GameType; net/minecraft/network/protocol/game/ClientboundPlayerInfoUpdatePacket$Entry/gameMode ()Lnet/minecraft/world/level/GameType; +MD: net/minecraft/network/protocol/game/ClientboundPlayerInfoUpdatePacket$Entry/f_244322_ ()I net/minecraft/network/protocol/game/ClientboundPlayerInfoUpdatePacket$Entry/latency ()I +MD: net/minecraft/network/protocol/game/ClientboundPlayerInfoUpdatePacket$Entry/f_244512_ ()Lnet/minecraft/network/chat/Component; net/minecraft/network/protocol/game/ClientboundPlayerInfoUpdatePacket$Entry/displayName ()Lnet/minecraft/network/chat/Component; +MD: net/minecraft/network/protocol/game/ClientboundPlayerInfoUpdatePacket$Entry/hashCode ()I net/minecraft/network/protocol/game/ClientboundPlayerInfoUpdatePacket$Entry/hashCode ()I +MD: net/minecraft/network/protocol/game/ClientboundPlayerInfoUpdatePacket$Entry/toString ()Ljava/lang/String; net/minecraft/network/protocol/game/ClientboundPlayerInfoUpdatePacket$Entry/toString ()Ljava/lang/String; +MD: net/minecraft/network/protocol/game/ClientboundPlayerInfoUpdatePacket$EntryBuilder/ (Ljava/util/UUID;)V net/minecraft/network/protocol/game/ClientboundPlayerInfoUpdatePacket$EntryBuilder/ (Ljava/util/UUID;)V +MD: net/minecraft/network/protocol/game/ClientboundPlayerInfoUpdatePacket$EntryBuilder/m_245615_ ()Lnet/minecraft/network/protocol/game/ClientboundPlayerInfoUpdatePacket$Entry; net/minecraft/network/protocol/game/ClientboundPlayerInfoUpdatePacket$EntryBuilder/build ()Lnet/minecraft/network/protocol/game/ClientboundPlayerInfoUpdatePacket$Entry; +MD: net/minecraft/network/protocol/game/ClientboundPlayerLookAtPacket/ (Lnet/minecraft/commands/arguments/EntityAnchorArgument$Anchor;Lnet/minecraft/world/entity/Entity;Lnet/minecraft/commands/arguments/EntityAnchorArgument$Anchor;)V net/minecraft/network/protocol/game/ClientboundPlayerLookAtPacket/ (Lnet/minecraft/commands/arguments/EntityAnchorArgument$Anchor;Lnet/minecraft/world/entity/Entity;Lnet/minecraft/commands/arguments/EntityAnchorArgument$Anchor;)V +MD: net/minecraft/network/protocol/game/ClientboundPlayerLookAtPacket/ (Lnet/minecraft/commands/arguments/EntityAnchorArgument$Anchor;DDD)V net/minecraft/network/protocol/game/ClientboundPlayerLookAtPacket/ (Lnet/minecraft/commands/arguments/EntityAnchorArgument$Anchor;DDD)V +MD: net/minecraft/network/protocol/game/ClientboundPlayerLookAtPacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ClientboundPlayerLookAtPacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ClientboundPlayerLookAtPacket/m_132785_ (Lnet/minecraft/world/level/Level;)Lnet/minecraft/world/phys/Vec3; net/minecraft/network/protocol/game/ClientboundPlayerLookAtPacket/getPosition (Lnet/minecraft/world/level/Level;)Lnet/minecraft/world/phys/Vec3; +MD: net/minecraft/network/protocol/game/ClientboundPlayerLookAtPacket/m_132793_ ()Lnet/minecraft/commands/arguments/EntityAnchorArgument$Anchor; net/minecraft/network/protocol/game/ClientboundPlayerLookAtPacket/getFromAnchor ()Lnet/minecraft/commands/arguments/EntityAnchorArgument$Anchor; +MD: net/minecraft/network/protocol/game/ClientboundPlayerLookAtPacket/m_5779_ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ClientboundPlayerLookAtPacket/write (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ClientboundPlayerLookAtPacket/m_5797_ (Lnet/minecraft/network/PacketListener;)V net/minecraft/network/protocol/game/ClientboundPlayerLookAtPacket/handle (Lnet/minecraft/network/PacketListener;)V +MD: net/minecraft/network/protocol/game/ClientboundPlayerLookAtPacket/m_5797_ (Lnet/minecraft/network/protocol/game/ClientGamePacketListener;)V net/minecraft/network/protocol/game/ClientboundPlayerLookAtPacket/handle (Lnet/minecraft/network/protocol/game/ClientGamePacketListener;)V +MD: net/minecraft/network/protocol/game/ClientboundPlayerPositionPacket/ (DDDFFLjava/util/Set;I)V net/minecraft/network/protocol/game/ClientboundPlayerPositionPacket/ (DDDFFLjava/util/Set;I)V +MD: net/minecraft/network/protocol/game/ClientboundPlayerPositionPacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ClientboundPlayerPositionPacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ClientboundPlayerPositionPacket/m_132818_ ()D net/minecraft/network/protocol/game/ClientboundPlayerPositionPacket/getX ()D +MD: net/minecraft/network/protocol/game/ClientboundPlayerPositionPacket/m_132821_ ()D net/minecraft/network/protocol/game/ClientboundPlayerPositionPacket/getY ()D +MD: net/minecraft/network/protocol/game/ClientboundPlayerPositionPacket/m_132822_ ()D net/minecraft/network/protocol/game/ClientboundPlayerPositionPacket/getZ ()D +MD: net/minecraft/network/protocol/game/ClientboundPlayerPositionPacket/m_132823_ ()F net/minecraft/network/protocol/game/ClientboundPlayerPositionPacket/getYRot ()F +MD: net/minecraft/network/protocol/game/ClientboundPlayerPositionPacket/m_132824_ ()F net/minecraft/network/protocol/game/ClientboundPlayerPositionPacket/getXRot ()F +MD: net/minecraft/network/protocol/game/ClientboundPlayerPositionPacket/m_132825_ ()I net/minecraft/network/protocol/game/ClientboundPlayerPositionPacket/getId ()I +MD: net/minecraft/network/protocol/game/ClientboundPlayerPositionPacket/m_132826_ ()Ljava/util/Set; net/minecraft/network/protocol/game/ClientboundPlayerPositionPacket/getRelativeArguments ()Ljava/util/Set; +MD: net/minecraft/network/protocol/game/ClientboundPlayerPositionPacket/m_5779_ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ClientboundPlayerPositionPacket/write (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ClientboundPlayerPositionPacket/m_5797_ (Lnet/minecraft/network/PacketListener;)V net/minecraft/network/protocol/game/ClientboundPlayerPositionPacket/handle (Lnet/minecraft/network/PacketListener;)V +MD: net/minecraft/network/protocol/game/ClientboundPlayerPositionPacket/m_5797_ (Lnet/minecraft/network/protocol/game/ClientGamePacketListener;)V net/minecraft/network/protocol/game/ClientboundPlayerPositionPacket/handle (Lnet/minecraft/network/protocol/game/ClientGamePacketListener;)V +MD: net/minecraft/network/protocol/game/ClientboundRecipePacket/ (Lnet/minecraft/network/protocol/game/ClientboundRecipePacket$State;Ljava/util/Collection;Ljava/util/Collection;Lnet/minecraft/stats/RecipeBookSettings;)V net/minecraft/network/protocol/game/ClientboundRecipePacket/ (Lnet/minecraft/network/protocol/game/ClientboundRecipePacket$State;Ljava/util/Collection;Ljava/util/Collection;Lnet/minecraft/stats/RecipeBookSettings;)V +MD: net/minecraft/network/protocol/game/ClientboundRecipePacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ClientboundRecipePacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ClientboundRecipePacket/m_132865_ ()Ljava/util/List; net/minecraft/network/protocol/game/ClientboundRecipePacket/getRecipes ()Ljava/util/List; +MD: net/minecraft/network/protocol/game/ClientboundRecipePacket/m_132868_ ()Ljava/util/List; net/minecraft/network/protocol/game/ClientboundRecipePacket/getHighlights ()Ljava/util/List; +MD: net/minecraft/network/protocol/game/ClientboundRecipePacket/m_132869_ ()Lnet/minecraft/stats/RecipeBookSettings; net/minecraft/network/protocol/game/ClientboundRecipePacket/getBookSettings ()Lnet/minecraft/stats/RecipeBookSettings; +MD: net/minecraft/network/protocol/game/ClientboundRecipePacket/m_132870_ ()Lnet/minecraft/network/protocol/game/ClientboundRecipePacket$State; net/minecraft/network/protocol/game/ClientboundRecipePacket/getState ()Lnet/minecraft/network/protocol/game/ClientboundRecipePacket$State; +MD: net/minecraft/network/protocol/game/ClientboundRecipePacket/m_5779_ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ClientboundRecipePacket/write (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ClientboundRecipePacket/m_5797_ (Lnet/minecraft/network/PacketListener;)V net/minecraft/network/protocol/game/ClientboundRecipePacket/handle (Lnet/minecraft/network/PacketListener;)V +MD: net/minecraft/network/protocol/game/ClientboundRecipePacket/m_5797_ (Lnet/minecraft/network/protocol/game/ClientGamePacketListener;)V net/minecraft/network/protocol/game/ClientboundRecipePacket/handle (Lnet/minecraft/network/protocol/game/ClientGamePacketListener;)V +MD: net/minecraft/network/protocol/game/ClientboundRecipePacket$State/ ()V net/minecraft/network/protocol/game/ClientboundRecipePacket$State/ ()V +MD: net/minecraft/network/protocol/game/ClientboundRecipePacket$State/ (Ljava/lang/String;I)V net/minecraft/network/protocol/game/ClientboundRecipePacket$State/ (Ljava/lang/String;I)V +MD: net/minecraft/network/protocol/game/ClientboundRecipePacket$State/m_179163_ ()[Lnet/minecraft/network/protocol/game/ClientboundRecipePacket$State; net/minecraft/network/protocol/game/ClientboundRecipePacket$State/$values ()[Lnet/minecraft/network/protocol/game/ClientboundRecipePacket$State; +MD: net/minecraft/network/protocol/game/ClientboundRecipePacket$State/valueOf (Ljava/lang/String;)Lnet/minecraft/network/protocol/game/ClientboundRecipePacket$State; net/minecraft/network/protocol/game/ClientboundRecipePacket$State/valueOf (Ljava/lang/String;)Lnet/minecraft/network/protocol/game/ClientboundRecipePacket$State; +MD: net/minecraft/network/protocol/game/ClientboundRecipePacket$State/values ()[Lnet/minecraft/network/protocol/game/ClientboundRecipePacket$State; net/minecraft/network/protocol/game/ClientboundRecipePacket$State/values ()[Lnet/minecraft/network/protocol/game/ClientboundRecipePacket$State; +MD: net/minecraft/network/protocol/game/ClientboundRemoveEntitiesPacket/ ([I)V net/minecraft/network/protocol/game/ClientboundRemoveEntitiesPacket/ ([I)V +MD: net/minecraft/network/protocol/game/ClientboundRemoveEntitiesPacket/ (Lit/unimi/dsi/fastutil/ints/IntList;)V net/minecraft/network/protocol/game/ClientboundRemoveEntitiesPacket/ (Lit/unimi/dsi/fastutil/ints/IntList;)V +MD: net/minecraft/network/protocol/game/ClientboundRemoveEntitiesPacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ClientboundRemoveEntitiesPacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ClientboundRemoveEntitiesPacket/m_182730_ ()Lit/unimi/dsi/fastutil/ints/IntList; net/minecraft/network/protocol/game/ClientboundRemoveEntitiesPacket/getEntityIds ()Lit/unimi/dsi/fastutil/ints/IntList; +MD: net/minecraft/network/protocol/game/ClientboundRemoveEntitiesPacket/m_5779_ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ClientboundRemoveEntitiesPacket/write (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ClientboundRemoveEntitiesPacket/m_5797_ (Lnet/minecraft/network/PacketListener;)V net/minecraft/network/protocol/game/ClientboundRemoveEntitiesPacket/handle (Lnet/minecraft/network/PacketListener;)V +MD: net/minecraft/network/protocol/game/ClientboundRemoveEntitiesPacket/m_5797_ (Lnet/minecraft/network/protocol/game/ClientGamePacketListener;)V net/minecraft/network/protocol/game/ClientboundRemoveEntitiesPacket/handle (Lnet/minecraft/network/protocol/game/ClientGamePacketListener;)V +MD: net/minecraft/network/protocol/game/ClientboundRemoveMobEffectPacket/ (ILnet/minecraft/world/effect/MobEffect;)V net/minecraft/network/protocol/game/ClientboundRemoveMobEffectPacket/ (ILnet/minecraft/world/effect/MobEffect;)V +MD: net/minecraft/network/protocol/game/ClientboundRemoveMobEffectPacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ClientboundRemoveMobEffectPacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ClientboundRemoveMobEffectPacket/m_132901_ (Lnet/minecraft/world/level/Level;)Lnet/minecraft/world/entity/Entity; net/minecraft/network/protocol/game/ClientboundRemoveMobEffectPacket/getEntity (Lnet/minecraft/world/level/Level;)Lnet/minecraft/world/entity/Entity; +MD: net/minecraft/network/protocol/game/ClientboundRemoveMobEffectPacket/m_132909_ ()Lnet/minecraft/world/effect/MobEffect; net/minecraft/network/protocol/game/ClientboundRemoveMobEffectPacket/getEffect ()Lnet/minecraft/world/effect/MobEffect; +MD: net/minecraft/network/protocol/game/ClientboundRemoveMobEffectPacket/m_5779_ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ClientboundRemoveMobEffectPacket/write (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ClientboundRemoveMobEffectPacket/m_5797_ (Lnet/minecraft/network/PacketListener;)V net/minecraft/network/protocol/game/ClientboundRemoveMobEffectPacket/handle (Lnet/minecraft/network/PacketListener;)V +MD: net/minecraft/network/protocol/game/ClientboundRemoveMobEffectPacket/m_5797_ (Lnet/minecraft/network/protocol/game/ClientGamePacketListener;)V net/minecraft/network/protocol/game/ClientboundRemoveMobEffectPacket/handle (Lnet/minecraft/network/protocol/game/ClientGamePacketListener;)V +MD: net/minecraft/network/protocol/game/ClientboundResourcePackPacket/ (Ljava/lang/String;Ljava/lang/String;ZLnet/minecraft/network/chat/Component;)V net/minecraft/network/protocol/game/ClientboundResourcePackPacket/ (Ljava/lang/String;Ljava/lang/String;ZLnet/minecraft/network/chat/Component;)V +MD: net/minecraft/network/protocol/game/ClientboundResourcePackPacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ClientboundResourcePackPacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ClientboundResourcePackPacket/m_132924_ ()Ljava/lang/String; net/minecraft/network/protocol/game/ClientboundResourcePackPacket/getUrl ()Ljava/lang/String; +MD: net/minecraft/network/protocol/game/ClientboundResourcePackPacket/m_132927_ ()Ljava/lang/String; net/minecraft/network/protocol/game/ClientboundResourcePackPacket/getHash ()Ljava/lang/String; +MD: net/minecraft/network/protocol/game/ClientboundResourcePackPacket/m_179188_ ()Z net/minecraft/network/protocol/game/ClientboundResourcePackPacket/isRequired ()Z +MD: net/minecraft/network/protocol/game/ClientboundResourcePackPacket/m_179189_ ()Lnet/minecraft/network/chat/Component; net/minecraft/network/protocol/game/ClientboundResourcePackPacket/getPrompt ()Lnet/minecraft/network/chat/Component; +MD: net/minecraft/network/protocol/game/ClientboundResourcePackPacket/m_5779_ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ClientboundResourcePackPacket/write (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ClientboundResourcePackPacket/m_5797_ (Lnet/minecraft/network/PacketListener;)V net/minecraft/network/protocol/game/ClientboundResourcePackPacket/handle (Lnet/minecraft/network/PacketListener;)V +MD: net/minecraft/network/protocol/game/ClientboundResourcePackPacket/m_5797_ (Lnet/minecraft/network/protocol/game/ClientGamePacketListener;)V net/minecraft/network/protocol/game/ClientboundResourcePackPacket/handle (Lnet/minecraft/network/protocol/game/ClientGamePacketListener;)V +MD: net/minecraft/network/protocol/game/ClientboundRespawnPacket/ (Lnet/minecraft/resources/ResourceKey;Lnet/minecraft/resources/ResourceKey;JLnet/minecraft/world/level/GameType;Lnet/minecraft/world/level/GameType;ZZBLjava/util/Optional;I)V net/minecraft/network/protocol/game/ClientboundRespawnPacket/ (Lnet/minecraft/resources/ResourceKey;Lnet/minecraft/resources/ResourceKey;JLnet/minecraft/world/level/GameType;Lnet/minecraft/world/level/GameType;ZZBLjava/util/Optional;I)V +MD: net/minecraft/network/protocol/game/ClientboundRespawnPacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ClientboundRespawnPacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ClientboundRespawnPacket/m_132955_ ()Lnet/minecraft/resources/ResourceKey; net/minecraft/network/protocol/game/ClientboundRespawnPacket/getDimension ()Lnet/minecraft/resources/ResourceKey; +MD: net/minecraft/network/protocol/game/ClientboundRespawnPacket/m_132956_ ()J net/minecraft/network/protocol/game/ClientboundRespawnPacket/getSeed ()J +MD: net/minecraft/network/protocol/game/ClientboundRespawnPacket/m_132957_ ()Lnet/minecraft/world/level/GameType; net/minecraft/network/protocol/game/ClientboundRespawnPacket/getPlayerGameType ()Lnet/minecraft/world/level/GameType; +MD: net/minecraft/network/protocol/game/ClientboundRespawnPacket/m_132958_ ()Lnet/minecraft/world/level/GameType; net/minecraft/network/protocol/game/ClientboundRespawnPacket/getPreviousPlayerGameType ()Lnet/minecraft/world/level/GameType; +MD: net/minecraft/network/protocol/game/ClientboundRespawnPacket/m_132959_ ()Z net/minecraft/network/protocol/game/ClientboundRespawnPacket/isDebug ()Z +MD: net/minecraft/network/protocol/game/ClientboundRespawnPacket/m_132960_ ()Z net/minecraft/network/protocol/game/ClientboundRespawnPacket/isFlat ()Z +MD: net/minecraft/network/protocol/game/ClientboundRespawnPacket/m_237785_ ()Ljava/util/Optional; net/minecraft/network/protocol/game/ClientboundRespawnPacket/getLastDeathLocation ()Ljava/util/Optional; +MD: net/minecraft/network/protocol/game/ClientboundRespawnPacket/m_237794_ ()Lnet/minecraft/resources/ResourceKey; net/minecraft/network/protocol/game/ClientboundRespawnPacket/getDimensionType ()Lnet/minecraft/resources/ResourceKey; +MD: net/minecraft/network/protocol/game/ClientboundRespawnPacket/m_263558_ (B)Z net/minecraft/network/protocol/game/ClientboundRespawnPacket/shouldKeep (B)Z +MD: net/minecraft/network/protocol/game/ClientboundRespawnPacket/m_287149_ ()I net/minecraft/network/protocol/game/ClientboundRespawnPacket/getPortalCooldown ()I +MD: net/minecraft/network/protocol/game/ClientboundRespawnPacket/m_5779_ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ClientboundRespawnPacket/write (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ClientboundRespawnPacket/m_5797_ (Lnet/minecraft/network/protocol/game/ClientGamePacketListener;)V net/minecraft/network/protocol/game/ClientboundRespawnPacket/handle (Lnet/minecraft/network/protocol/game/ClientGamePacketListener;)V +MD: net/minecraft/network/protocol/game/ClientboundRespawnPacket/m_5797_ (Lnet/minecraft/network/PacketListener;)V net/minecraft/network/protocol/game/ClientboundRespawnPacket/handle (Lnet/minecraft/network/PacketListener;)V +MD: net/minecraft/network/protocol/game/ClientboundRotateHeadPacket/ (Lnet/minecraft/world/entity/Entity;B)V net/minecraft/network/protocol/game/ClientboundRotateHeadPacket/ (Lnet/minecraft/world/entity/Entity;B)V +MD: net/minecraft/network/protocol/game/ClientboundRotateHeadPacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ClientboundRotateHeadPacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ClientboundRotateHeadPacket/m_132969_ (Lnet/minecraft/world/level/Level;)Lnet/minecraft/world/entity/Entity; net/minecraft/network/protocol/game/ClientboundRotateHeadPacket/getEntity (Lnet/minecraft/world/level/Level;)Lnet/minecraft/world/entity/Entity; +MD: net/minecraft/network/protocol/game/ClientboundRotateHeadPacket/m_132977_ ()B net/minecraft/network/protocol/game/ClientboundRotateHeadPacket/getYHeadRot ()B +MD: net/minecraft/network/protocol/game/ClientboundRotateHeadPacket/m_5779_ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ClientboundRotateHeadPacket/write (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ClientboundRotateHeadPacket/m_5797_ (Lnet/minecraft/network/PacketListener;)V net/minecraft/network/protocol/game/ClientboundRotateHeadPacket/handle (Lnet/minecraft/network/PacketListener;)V +MD: net/minecraft/network/protocol/game/ClientboundRotateHeadPacket/m_5797_ (Lnet/minecraft/network/protocol/game/ClientGamePacketListener;)V net/minecraft/network/protocol/game/ClientboundRotateHeadPacket/handle (Lnet/minecraft/network/protocol/game/ClientGamePacketListener;)V +MD: net/minecraft/network/protocol/game/ClientboundSectionBlocksUpdatePacket/ (Lnet/minecraft/core/SectionPos;Lit/unimi/dsi/fastutil/shorts/ShortSet;Lnet/minecraft/world/level/chunk/LevelChunkSection;)V net/minecraft/network/protocol/game/ClientboundSectionBlocksUpdatePacket/ (Lnet/minecraft/core/SectionPos;Lit/unimi/dsi/fastutil/shorts/ShortSet;Lnet/minecraft/world/level/chunk/LevelChunkSection;)V +MD: net/minecraft/network/protocol/game/ClientboundSectionBlocksUpdatePacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ClientboundSectionBlocksUpdatePacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ClientboundSectionBlocksUpdatePacket/m_132992_ (Ljava/util/function/BiConsumer;)V net/minecraft/network/protocol/game/ClientboundSectionBlocksUpdatePacket/runUpdates (Ljava/util/function/BiConsumer;)V +MD: net/minecraft/network/protocol/game/ClientboundSectionBlocksUpdatePacket/m_5779_ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ClientboundSectionBlocksUpdatePacket/write (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ClientboundSectionBlocksUpdatePacket/m_5797_ (Lnet/minecraft/network/PacketListener;)V net/minecraft/network/protocol/game/ClientboundSectionBlocksUpdatePacket/handle (Lnet/minecraft/network/PacketListener;)V +MD: net/minecraft/network/protocol/game/ClientboundSectionBlocksUpdatePacket/m_5797_ (Lnet/minecraft/network/protocol/game/ClientGamePacketListener;)V net/minecraft/network/protocol/game/ClientboundSectionBlocksUpdatePacket/handle (Lnet/minecraft/network/protocol/game/ClientGamePacketListener;)V +MD: net/minecraft/network/protocol/game/ClientboundSelectAdvancementsTabPacket/ (Lnet/minecraft/resources/ResourceLocation;)V net/minecraft/network/protocol/game/ClientboundSelectAdvancementsTabPacket/ (Lnet/minecraft/resources/ResourceLocation;)V +MD: net/minecraft/network/protocol/game/ClientboundSelectAdvancementsTabPacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ClientboundSelectAdvancementsTabPacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ClientboundSelectAdvancementsTabPacket/m_133013_ ()Lnet/minecraft/resources/ResourceLocation; net/minecraft/network/protocol/game/ClientboundSelectAdvancementsTabPacket/getTab ()Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/network/protocol/game/ClientboundSelectAdvancementsTabPacket/m_5779_ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ClientboundSelectAdvancementsTabPacket/write (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ClientboundSelectAdvancementsTabPacket/m_5797_ (Lnet/minecraft/network/PacketListener;)V net/minecraft/network/protocol/game/ClientboundSelectAdvancementsTabPacket/handle (Lnet/minecraft/network/PacketListener;)V +MD: net/minecraft/network/protocol/game/ClientboundSelectAdvancementsTabPacket/m_5797_ (Lnet/minecraft/network/protocol/game/ClientGamePacketListener;)V net/minecraft/network/protocol/game/ClientboundSelectAdvancementsTabPacket/handle (Lnet/minecraft/network/protocol/game/ClientGamePacketListener;)V +MD: net/minecraft/network/protocol/game/ClientboundServerDataPacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ClientboundServerDataPacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ClientboundServerDataPacket/ (Lnet/minecraft/network/chat/Component;Ljava/util/Optional;Z)V net/minecraft/network/protocol/game/ClientboundServerDataPacket/ (Lnet/minecraft/network/chat/Component;Ljava/util/Optional;Z)V +MD: net/minecraft/network/protocol/game/ClientboundServerDataPacket/m_242957_ ()Z net/minecraft/network/protocol/game/ClientboundServerDataPacket/enforcesSecureChat ()Z +MD: net/minecraft/network/protocol/game/ClientboundServerDataPacket/m_271805_ ()Lnet/minecraft/network/chat/Component; net/minecraft/network/protocol/game/ClientboundServerDataPacket/getMotd ()Lnet/minecraft/network/chat/Component; +MD: net/minecraft/network/protocol/game/ClientboundServerDataPacket/m_271815_ ()Ljava/util/Optional; net/minecraft/network/protocol/game/ClientboundServerDataPacket/getIconBytes ()Ljava/util/Optional; +MD: net/minecraft/network/protocol/game/ClientboundServerDataPacket/m_5779_ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ClientboundServerDataPacket/write (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ClientboundServerDataPacket/m_5797_ (Lnet/minecraft/network/PacketListener;)V net/minecraft/network/protocol/game/ClientboundServerDataPacket/handle (Lnet/minecraft/network/PacketListener;)V +MD: net/minecraft/network/protocol/game/ClientboundServerDataPacket/m_5797_ (Lnet/minecraft/network/protocol/game/ClientGamePacketListener;)V net/minecraft/network/protocol/game/ClientboundServerDataPacket/handle (Lnet/minecraft/network/protocol/game/ClientGamePacketListener;)V +MD: net/minecraft/network/protocol/game/ClientboundSetActionBarTextPacket/ (Lnet/minecraft/network/chat/Component;)V net/minecraft/network/protocol/game/ClientboundSetActionBarTextPacket/ (Lnet/minecraft/network/chat/Component;)V +MD: net/minecraft/network/protocol/game/ClientboundSetActionBarTextPacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ClientboundSetActionBarTextPacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ClientboundSetActionBarTextPacket/m_179210_ ()Lnet/minecraft/network/chat/Component; net/minecraft/network/protocol/game/ClientboundSetActionBarTextPacket/getText ()Lnet/minecraft/network/chat/Component; +MD: net/minecraft/network/protocol/game/ClientboundSetActionBarTextPacket/m_5779_ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ClientboundSetActionBarTextPacket/write (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ClientboundSetActionBarTextPacket/m_5797_ (Lnet/minecraft/network/PacketListener;)V net/minecraft/network/protocol/game/ClientboundSetActionBarTextPacket/handle (Lnet/minecraft/network/PacketListener;)V +MD: net/minecraft/network/protocol/game/ClientboundSetActionBarTextPacket/m_5797_ (Lnet/minecraft/network/protocol/game/ClientGamePacketListener;)V net/minecraft/network/protocol/game/ClientboundSetActionBarTextPacket/handle (Lnet/minecraft/network/protocol/game/ClientGamePacketListener;)V +MD: net/minecraft/network/protocol/game/ClientboundSetBorderCenterPacket/ (Lnet/minecraft/world/level/border/WorldBorder;)V net/minecraft/network/protocol/game/ClientboundSetBorderCenterPacket/ (Lnet/minecraft/world/level/border/WorldBorder;)V +MD: net/minecraft/network/protocol/game/ClientboundSetBorderCenterPacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ClientboundSetBorderCenterPacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ClientboundSetBorderCenterPacket/m_179223_ ()D net/minecraft/network/protocol/game/ClientboundSetBorderCenterPacket/getNewCenterZ ()D +MD: net/minecraft/network/protocol/game/ClientboundSetBorderCenterPacket/m_179224_ ()D net/minecraft/network/protocol/game/ClientboundSetBorderCenterPacket/getNewCenterX ()D +MD: net/minecraft/network/protocol/game/ClientboundSetBorderCenterPacket/m_5779_ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ClientboundSetBorderCenterPacket/write (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ClientboundSetBorderCenterPacket/m_5797_ (Lnet/minecraft/network/PacketListener;)V net/minecraft/network/protocol/game/ClientboundSetBorderCenterPacket/handle (Lnet/minecraft/network/PacketListener;)V +MD: net/minecraft/network/protocol/game/ClientboundSetBorderCenterPacket/m_5797_ (Lnet/minecraft/network/protocol/game/ClientGamePacketListener;)V net/minecraft/network/protocol/game/ClientboundSetBorderCenterPacket/handle (Lnet/minecraft/network/protocol/game/ClientGamePacketListener;)V +MD: net/minecraft/network/protocol/game/ClientboundSetBorderLerpSizePacket/ (Lnet/minecraft/world/level/border/WorldBorder;)V net/minecraft/network/protocol/game/ClientboundSetBorderLerpSizePacket/ (Lnet/minecraft/world/level/border/WorldBorder;)V +MD: net/minecraft/network/protocol/game/ClientboundSetBorderLerpSizePacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ClientboundSetBorderLerpSizePacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ClientboundSetBorderLerpSizePacket/m_179238_ ()D net/minecraft/network/protocol/game/ClientboundSetBorderLerpSizePacket/getOldSize ()D +MD: net/minecraft/network/protocol/game/ClientboundSetBorderLerpSizePacket/m_179239_ ()D net/minecraft/network/protocol/game/ClientboundSetBorderLerpSizePacket/getNewSize ()D +MD: net/minecraft/network/protocol/game/ClientboundSetBorderLerpSizePacket/m_179240_ ()J net/minecraft/network/protocol/game/ClientboundSetBorderLerpSizePacket/getLerpTime ()J +MD: net/minecraft/network/protocol/game/ClientboundSetBorderLerpSizePacket/m_5779_ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ClientboundSetBorderLerpSizePacket/write (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ClientboundSetBorderLerpSizePacket/m_5797_ (Lnet/minecraft/network/PacketListener;)V net/minecraft/network/protocol/game/ClientboundSetBorderLerpSizePacket/handle (Lnet/minecraft/network/PacketListener;)V +MD: net/minecraft/network/protocol/game/ClientboundSetBorderLerpSizePacket/m_5797_ (Lnet/minecraft/network/protocol/game/ClientGamePacketListener;)V net/minecraft/network/protocol/game/ClientboundSetBorderLerpSizePacket/handle (Lnet/minecraft/network/protocol/game/ClientGamePacketListener;)V +MD: net/minecraft/network/protocol/game/ClientboundSetBorderSizePacket/ (Lnet/minecraft/world/level/border/WorldBorder;)V net/minecraft/network/protocol/game/ClientboundSetBorderSizePacket/ (Lnet/minecraft/world/level/border/WorldBorder;)V +MD: net/minecraft/network/protocol/game/ClientboundSetBorderSizePacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ClientboundSetBorderSizePacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ClientboundSetBorderSizePacket/m_179252_ ()D net/minecraft/network/protocol/game/ClientboundSetBorderSizePacket/getSize ()D +MD: net/minecraft/network/protocol/game/ClientboundSetBorderSizePacket/m_5779_ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ClientboundSetBorderSizePacket/write (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ClientboundSetBorderSizePacket/m_5797_ (Lnet/minecraft/network/PacketListener;)V net/minecraft/network/protocol/game/ClientboundSetBorderSizePacket/handle (Lnet/minecraft/network/PacketListener;)V +MD: net/minecraft/network/protocol/game/ClientboundSetBorderSizePacket/m_5797_ (Lnet/minecraft/network/protocol/game/ClientGamePacketListener;)V net/minecraft/network/protocol/game/ClientboundSetBorderSizePacket/handle (Lnet/minecraft/network/protocol/game/ClientGamePacketListener;)V +MD: net/minecraft/network/protocol/game/ClientboundSetBorderWarningDelayPacket/ (Lnet/minecraft/world/level/border/WorldBorder;)V net/minecraft/network/protocol/game/ClientboundSetBorderWarningDelayPacket/ (Lnet/minecraft/world/level/border/WorldBorder;)V +MD: net/minecraft/network/protocol/game/ClientboundSetBorderWarningDelayPacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ClientboundSetBorderWarningDelayPacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ClientboundSetBorderWarningDelayPacket/m_179264_ ()I net/minecraft/network/protocol/game/ClientboundSetBorderWarningDelayPacket/getWarningDelay ()I +MD: net/minecraft/network/protocol/game/ClientboundSetBorderWarningDelayPacket/m_5779_ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ClientboundSetBorderWarningDelayPacket/write (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ClientboundSetBorderWarningDelayPacket/m_5797_ (Lnet/minecraft/network/PacketListener;)V net/minecraft/network/protocol/game/ClientboundSetBorderWarningDelayPacket/handle (Lnet/minecraft/network/PacketListener;)V +MD: net/minecraft/network/protocol/game/ClientboundSetBorderWarningDelayPacket/m_5797_ (Lnet/minecraft/network/protocol/game/ClientGamePacketListener;)V net/minecraft/network/protocol/game/ClientboundSetBorderWarningDelayPacket/handle (Lnet/minecraft/network/protocol/game/ClientGamePacketListener;)V +MD: net/minecraft/network/protocol/game/ClientboundSetBorderWarningDistancePacket/ (Lnet/minecraft/world/level/border/WorldBorder;)V net/minecraft/network/protocol/game/ClientboundSetBorderWarningDistancePacket/ (Lnet/minecraft/world/level/border/WorldBorder;)V +MD: net/minecraft/network/protocol/game/ClientboundSetBorderWarningDistancePacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ClientboundSetBorderWarningDistancePacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ClientboundSetBorderWarningDistancePacket/m_179276_ ()I net/minecraft/network/protocol/game/ClientboundSetBorderWarningDistancePacket/getWarningBlocks ()I +MD: net/minecraft/network/protocol/game/ClientboundSetBorderWarningDistancePacket/m_5779_ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ClientboundSetBorderWarningDistancePacket/write (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ClientboundSetBorderWarningDistancePacket/m_5797_ (Lnet/minecraft/network/PacketListener;)V net/minecraft/network/protocol/game/ClientboundSetBorderWarningDistancePacket/handle (Lnet/minecraft/network/PacketListener;)V +MD: net/minecraft/network/protocol/game/ClientboundSetBorderWarningDistancePacket/m_5797_ (Lnet/minecraft/network/protocol/game/ClientGamePacketListener;)V net/minecraft/network/protocol/game/ClientboundSetBorderWarningDistancePacket/handle (Lnet/minecraft/network/protocol/game/ClientGamePacketListener;)V +MD: net/minecraft/network/protocol/game/ClientboundSetCameraPacket/ (Lnet/minecraft/world/entity/Entity;)V net/minecraft/network/protocol/game/ClientboundSetCameraPacket/ (Lnet/minecraft/world/entity/Entity;)V +MD: net/minecraft/network/protocol/game/ClientboundSetCameraPacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ClientboundSetCameraPacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ClientboundSetCameraPacket/m_133059_ (Lnet/minecraft/world/level/Level;)Lnet/minecraft/world/entity/Entity; net/minecraft/network/protocol/game/ClientboundSetCameraPacket/getEntity (Lnet/minecraft/world/level/Level;)Lnet/minecraft/world/entity/Entity; +MD: net/minecraft/network/protocol/game/ClientboundSetCameraPacket/m_5779_ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ClientboundSetCameraPacket/write (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ClientboundSetCameraPacket/m_5797_ (Lnet/minecraft/network/PacketListener;)V net/minecraft/network/protocol/game/ClientboundSetCameraPacket/handle (Lnet/minecraft/network/PacketListener;)V +MD: net/minecraft/network/protocol/game/ClientboundSetCameraPacket/m_5797_ (Lnet/minecraft/network/protocol/game/ClientGamePacketListener;)V net/minecraft/network/protocol/game/ClientboundSetCameraPacket/handle (Lnet/minecraft/network/protocol/game/ClientGamePacketListener;)V +MD: net/minecraft/network/protocol/game/ClientboundSetCarriedItemPacket/ (I)V net/minecraft/network/protocol/game/ClientboundSetCarriedItemPacket/ (I)V +MD: net/minecraft/network/protocol/game/ClientboundSetCarriedItemPacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ClientboundSetCarriedItemPacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ClientboundSetCarriedItemPacket/m_133079_ ()I net/minecraft/network/protocol/game/ClientboundSetCarriedItemPacket/getSlot ()I +MD: net/minecraft/network/protocol/game/ClientboundSetCarriedItemPacket/m_5779_ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ClientboundSetCarriedItemPacket/write (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ClientboundSetCarriedItemPacket/m_5797_ (Lnet/minecraft/network/PacketListener;)V net/minecraft/network/protocol/game/ClientboundSetCarriedItemPacket/handle (Lnet/minecraft/network/PacketListener;)V +MD: net/minecraft/network/protocol/game/ClientboundSetCarriedItemPacket/m_5797_ (Lnet/minecraft/network/protocol/game/ClientGamePacketListener;)V net/minecraft/network/protocol/game/ClientboundSetCarriedItemPacket/handle (Lnet/minecraft/network/protocol/game/ClientGamePacketListener;)V +MD: net/minecraft/network/protocol/game/ClientboundSetChunkCacheCenterPacket/ (II)V net/minecraft/network/protocol/game/ClientboundSetChunkCacheCenterPacket/ (II)V +MD: net/minecraft/network/protocol/game/ClientboundSetChunkCacheCenterPacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ClientboundSetChunkCacheCenterPacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ClientboundSetChunkCacheCenterPacket/m_133094_ ()I net/minecraft/network/protocol/game/ClientboundSetChunkCacheCenterPacket/getX ()I +MD: net/minecraft/network/protocol/game/ClientboundSetChunkCacheCenterPacket/m_133097_ ()I net/minecraft/network/protocol/game/ClientboundSetChunkCacheCenterPacket/getZ ()I +MD: net/minecraft/network/protocol/game/ClientboundSetChunkCacheCenterPacket/m_5779_ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ClientboundSetChunkCacheCenterPacket/write (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ClientboundSetChunkCacheCenterPacket/m_5797_ (Lnet/minecraft/network/PacketListener;)V net/minecraft/network/protocol/game/ClientboundSetChunkCacheCenterPacket/handle (Lnet/minecraft/network/PacketListener;)V +MD: net/minecraft/network/protocol/game/ClientboundSetChunkCacheCenterPacket/m_5797_ (Lnet/minecraft/network/protocol/game/ClientGamePacketListener;)V net/minecraft/network/protocol/game/ClientboundSetChunkCacheCenterPacket/handle (Lnet/minecraft/network/protocol/game/ClientGamePacketListener;)V +MD: net/minecraft/network/protocol/game/ClientboundSetChunkCacheRadiusPacket/ (I)V net/minecraft/network/protocol/game/ClientboundSetChunkCacheRadiusPacket/ (I)V +MD: net/minecraft/network/protocol/game/ClientboundSetChunkCacheRadiusPacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ClientboundSetChunkCacheRadiusPacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ClientboundSetChunkCacheRadiusPacket/m_133108_ ()I net/minecraft/network/protocol/game/ClientboundSetChunkCacheRadiusPacket/getRadius ()I +MD: net/minecraft/network/protocol/game/ClientboundSetChunkCacheRadiusPacket/m_5779_ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ClientboundSetChunkCacheRadiusPacket/write (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ClientboundSetChunkCacheRadiusPacket/m_5797_ (Lnet/minecraft/network/PacketListener;)V net/minecraft/network/protocol/game/ClientboundSetChunkCacheRadiusPacket/handle (Lnet/minecraft/network/PacketListener;)V +MD: net/minecraft/network/protocol/game/ClientboundSetChunkCacheRadiusPacket/m_5797_ (Lnet/minecraft/network/protocol/game/ClientGamePacketListener;)V net/minecraft/network/protocol/game/ClientboundSetChunkCacheRadiusPacket/handle (Lnet/minecraft/network/protocol/game/ClientGamePacketListener;)V +MD: net/minecraft/network/protocol/game/ClientboundSetDefaultSpawnPositionPacket/ (Lnet/minecraft/core/BlockPos;F)V net/minecraft/network/protocol/game/ClientboundSetDefaultSpawnPositionPacket/ (Lnet/minecraft/core/BlockPos;F)V +MD: net/minecraft/network/protocol/game/ClientboundSetDefaultSpawnPositionPacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ClientboundSetDefaultSpawnPositionPacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ClientboundSetDefaultSpawnPositionPacket/m_133123_ ()Lnet/minecraft/core/BlockPos; net/minecraft/network/protocol/game/ClientboundSetDefaultSpawnPositionPacket/getPos ()Lnet/minecraft/core/BlockPos; +MD: net/minecraft/network/protocol/game/ClientboundSetDefaultSpawnPositionPacket/m_133126_ ()F net/minecraft/network/protocol/game/ClientboundSetDefaultSpawnPositionPacket/getAngle ()F +MD: net/minecraft/network/protocol/game/ClientboundSetDefaultSpawnPositionPacket/m_5779_ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ClientboundSetDefaultSpawnPositionPacket/write (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ClientboundSetDefaultSpawnPositionPacket/m_5797_ (Lnet/minecraft/network/PacketListener;)V net/minecraft/network/protocol/game/ClientboundSetDefaultSpawnPositionPacket/handle (Lnet/minecraft/network/PacketListener;)V +MD: net/minecraft/network/protocol/game/ClientboundSetDefaultSpawnPositionPacket/m_5797_ (Lnet/minecraft/network/protocol/game/ClientGamePacketListener;)V net/minecraft/network/protocol/game/ClientboundSetDefaultSpawnPositionPacket/handle (Lnet/minecraft/network/protocol/game/ClientGamePacketListener;)V +MD: net/minecraft/network/protocol/game/ClientboundSetDisplayObjectivePacket/ (ILnet/minecraft/world/scores/Objective;)V net/minecraft/network/protocol/game/ClientboundSetDisplayObjectivePacket/ (ILnet/minecraft/world/scores/Objective;)V +MD: net/minecraft/network/protocol/game/ClientboundSetDisplayObjectivePacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ClientboundSetDisplayObjectivePacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ClientboundSetDisplayObjectivePacket/m_133139_ ()I net/minecraft/network/protocol/game/ClientboundSetDisplayObjectivePacket/getSlot ()I +MD: net/minecraft/network/protocol/game/ClientboundSetDisplayObjectivePacket/m_133142_ ()Ljava/lang/String; net/minecraft/network/protocol/game/ClientboundSetDisplayObjectivePacket/getObjectiveName ()Ljava/lang/String; +MD: net/minecraft/network/protocol/game/ClientboundSetDisplayObjectivePacket/m_5779_ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ClientboundSetDisplayObjectivePacket/write (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ClientboundSetDisplayObjectivePacket/m_5797_ (Lnet/minecraft/network/PacketListener;)V net/minecraft/network/protocol/game/ClientboundSetDisplayObjectivePacket/handle (Lnet/minecraft/network/PacketListener;)V +MD: net/minecraft/network/protocol/game/ClientboundSetDisplayObjectivePacket/m_5797_ (Lnet/minecraft/network/protocol/game/ClientGamePacketListener;)V net/minecraft/network/protocol/game/ClientboundSetDisplayObjectivePacket/handle (Lnet/minecraft/network/protocol/game/ClientGamePacketListener;)V +MD: net/minecraft/network/protocol/game/ClientboundSetEntityDataPacket/ (ILjava/util/List;)V net/minecraft/network/protocol/game/ClientboundSetEntityDataPacket/ (ILjava/util/List;)V +MD: net/minecraft/network/protocol/game/ClientboundSetEntityDataPacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ClientboundSetEntityDataPacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ClientboundSetEntityDataPacket/equals (Ljava/lang/Object;)Z net/minecraft/network/protocol/game/ClientboundSetEntityDataPacket/equals (Ljava/lang/Object;)Z +MD: net/minecraft/network/protocol/game/ClientboundSetEntityDataPacket/f_133143_ ()I net/minecraft/network/protocol/game/ClientboundSetEntityDataPacket/id ()I +MD: net/minecraft/network/protocol/game/ClientboundSetEntityDataPacket/f_133144_ ()Ljava/util/List; net/minecraft/network/protocol/game/ClientboundSetEntityDataPacket/packedItems ()Ljava/util/List; +MD: net/minecraft/network/protocol/game/ClientboundSetEntityDataPacket/hashCode ()I net/minecraft/network/protocol/game/ClientboundSetEntityDataPacket/hashCode ()I +MD: net/minecraft/network/protocol/game/ClientboundSetEntityDataPacket/m_252763_ (Ljava/util/List;Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ClientboundSetEntityDataPacket/pack (Ljava/util/List;Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ClientboundSetEntityDataPacket/m_252908_ (Lnet/minecraft/network/FriendlyByteBuf;)Ljava/util/List; net/minecraft/network/protocol/game/ClientboundSetEntityDataPacket/unpack (Lnet/minecraft/network/FriendlyByteBuf;)Ljava/util/List; +MD: net/minecraft/network/protocol/game/ClientboundSetEntityDataPacket/m_5779_ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ClientboundSetEntityDataPacket/write (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ClientboundSetEntityDataPacket/m_5797_ (Lnet/minecraft/network/PacketListener;)V net/minecraft/network/protocol/game/ClientboundSetEntityDataPacket/handle (Lnet/minecraft/network/PacketListener;)V +MD: net/minecraft/network/protocol/game/ClientboundSetEntityDataPacket/m_5797_ (Lnet/minecraft/network/protocol/game/ClientGamePacketListener;)V net/minecraft/network/protocol/game/ClientboundSetEntityDataPacket/handle (Lnet/minecraft/network/protocol/game/ClientGamePacketListener;)V +MD: net/minecraft/network/protocol/game/ClientboundSetEntityDataPacket/toString ()Ljava/lang/String; net/minecraft/network/protocol/game/ClientboundSetEntityDataPacket/toString ()Ljava/lang/String; +MD: net/minecraft/network/protocol/game/ClientboundSetEntityLinkPacket/ (Lnet/minecraft/world/entity/Entity;Lnet/minecraft/world/entity/Entity;)V net/minecraft/network/protocol/game/ClientboundSetEntityLinkPacket/ (Lnet/minecraft/world/entity/Entity;Lnet/minecraft/world/entity/Entity;)V +MD: net/minecraft/network/protocol/game/ClientboundSetEntityLinkPacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ClientboundSetEntityLinkPacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ClientboundSetEntityLinkPacket/m_133172_ ()I net/minecraft/network/protocol/game/ClientboundSetEntityLinkPacket/getSourceId ()I +MD: net/minecraft/network/protocol/game/ClientboundSetEntityLinkPacket/m_133175_ ()I net/minecraft/network/protocol/game/ClientboundSetEntityLinkPacket/getDestId ()I +MD: net/minecraft/network/protocol/game/ClientboundSetEntityLinkPacket/m_5779_ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ClientboundSetEntityLinkPacket/write (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ClientboundSetEntityLinkPacket/m_5797_ (Lnet/minecraft/network/PacketListener;)V net/minecraft/network/protocol/game/ClientboundSetEntityLinkPacket/handle (Lnet/minecraft/network/PacketListener;)V +MD: net/minecraft/network/protocol/game/ClientboundSetEntityLinkPacket/m_5797_ (Lnet/minecraft/network/protocol/game/ClientGamePacketListener;)V net/minecraft/network/protocol/game/ClientboundSetEntityLinkPacket/handle (Lnet/minecraft/network/protocol/game/ClientGamePacketListener;)V +MD: net/minecraft/network/protocol/game/ClientboundSetEntityMotionPacket/ (Lnet/minecraft/world/entity/Entity;)V net/minecraft/network/protocol/game/ClientboundSetEntityMotionPacket/ (Lnet/minecraft/world/entity/Entity;)V +MD: net/minecraft/network/protocol/game/ClientboundSetEntityMotionPacket/ (ILnet/minecraft/world/phys/Vec3;)V net/minecraft/network/protocol/game/ClientboundSetEntityMotionPacket/ (ILnet/minecraft/world/phys/Vec3;)V +MD: net/minecraft/network/protocol/game/ClientboundSetEntityMotionPacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ClientboundSetEntityMotionPacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ClientboundSetEntityMotionPacket/m_133192_ ()I net/minecraft/network/protocol/game/ClientboundSetEntityMotionPacket/getId ()I +MD: net/minecraft/network/protocol/game/ClientboundSetEntityMotionPacket/m_133195_ ()I net/minecraft/network/protocol/game/ClientboundSetEntityMotionPacket/getXa ()I +MD: net/minecraft/network/protocol/game/ClientboundSetEntityMotionPacket/m_133196_ ()I net/minecraft/network/protocol/game/ClientboundSetEntityMotionPacket/getYa ()I +MD: net/minecraft/network/protocol/game/ClientboundSetEntityMotionPacket/m_133197_ ()I net/minecraft/network/protocol/game/ClientboundSetEntityMotionPacket/getZa ()I +MD: net/minecraft/network/protocol/game/ClientboundSetEntityMotionPacket/m_5779_ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ClientboundSetEntityMotionPacket/write (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ClientboundSetEntityMotionPacket/m_5797_ (Lnet/minecraft/network/PacketListener;)V net/minecraft/network/protocol/game/ClientboundSetEntityMotionPacket/handle (Lnet/minecraft/network/PacketListener;)V +MD: net/minecraft/network/protocol/game/ClientboundSetEntityMotionPacket/m_5797_ (Lnet/minecraft/network/protocol/game/ClientGamePacketListener;)V net/minecraft/network/protocol/game/ClientboundSetEntityMotionPacket/handle (Lnet/minecraft/network/protocol/game/ClientGamePacketListener;)V +MD: net/minecraft/network/protocol/game/ClientboundSetEquipmentPacket/ (ILjava/util/List;)V net/minecraft/network/protocol/game/ClientboundSetEquipmentPacket/ (ILjava/util/List;)V +MD: net/minecraft/network/protocol/game/ClientboundSetEquipmentPacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ClientboundSetEquipmentPacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ClientboundSetEquipmentPacket/m_133210_ ()I net/minecraft/network/protocol/game/ClientboundSetEquipmentPacket/getEntity ()I +MD: net/minecraft/network/protocol/game/ClientboundSetEquipmentPacket/m_133213_ ()Ljava/util/List; net/minecraft/network/protocol/game/ClientboundSetEquipmentPacket/getSlots ()Ljava/util/List; +MD: net/minecraft/network/protocol/game/ClientboundSetEquipmentPacket/m_5779_ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ClientboundSetEquipmentPacket/write (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ClientboundSetEquipmentPacket/m_5797_ (Lnet/minecraft/network/PacketListener;)V net/minecraft/network/protocol/game/ClientboundSetEquipmentPacket/handle (Lnet/minecraft/network/PacketListener;)V +MD: net/minecraft/network/protocol/game/ClientboundSetEquipmentPacket/m_5797_ (Lnet/minecraft/network/protocol/game/ClientGamePacketListener;)V net/minecraft/network/protocol/game/ClientboundSetEquipmentPacket/handle (Lnet/minecraft/network/protocol/game/ClientGamePacketListener;)V +MD: net/minecraft/network/protocol/game/ClientboundSetExperiencePacket/ (FII)V net/minecraft/network/protocol/game/ClientboundSetExperiencePacket/ (FII)V +MD: net/minecraft/network/protocol/game/ClientboundSetExperiencePacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ClientboundSetExperiencePacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ClientboundSetExperiencePacket/m_133228_ ()F net/minecraft/network/protocol/game/ClientboundSetExperiencePacket/getExperienceProgress ()F +MD: net/minecraft/network/protocol/game/ClientboundSetExperiencePacket/m_133231_ ()I net/minecraft/network/protocol/game/ClientboundSetExperiencePacket/getTotalExperience ()I +MD: net/minecraft/network/protocol/game/ClientboundSetExperiencePacket/m_133232_ ()I net/minecraft/network/protocol/game/ClientboundSetExperiencePacket/getExperienceLevel ()I +MD: net/minecraft/network/protocol/game/ClientboundSetExperiencePacket/m_5779_ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ClientboundSetExperiencePacket/write (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ClientboundSetExperiencePacket/m_5797_ (Lnet/minecraft/network/PacketListener;)V net/minecraft/network/protocol/game/ClientboundSetExperiencePacket/handle (Lnet/minecraft/network/PacketListener;)V +MD: net/minecraft/network/protocol/game/ClientboundSetExperiencePacket/m_5797_ (Lnet/minecraft/network/protocol/game/ClientGamePacketListener;)V net/minecraft/network/protocol/game/ClientboundSetExperiencePacket/handle (Lnet/minecraft/network/protocol/game/ClientGamePacketListener;)V +MD: net/minecraft/network/protocol/game/ClientboundSetHealthPacket/ (FIF)V net/minecraft/network/protocol/game/ClientboundSetHealthPacket/ (FIF)V +MD: net/minecraft/network/protocol/game/ClientboundSetHealthPacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ClientboundSetHealthPacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ClientboundSetHealthPacket/m_133247_ ()F net/minecraft/network/protocol/game/ClientboundSetHealthPacket/getHealth ()F +MD: net/minecraft/network/protocol/game/ClientboundSetHealthPacket/m_133250_ ()I net/minecraft/network/protocol/game/ClientboundSetHealthPacket/getFood ()I +MD: net/minecraft/network/protocol/game/ClientboundSetHealthPacket/m_133251_ ()F net/minecraft/network/protocol/game/ClientboundSetHealthPacket/getSaturation ()F +MD: net/minecraft/network/protocol/game/ClientboundSetHealthPacket/m_5779_ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ClientboundSetHealthPacket/write (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ClientboundSetHealthPacket/m_5797_ (Lnet/minecraft/network/PacketListener;)V net/minecraft/network/protocol/game/ClientboundSetHealthPacket/handle (Lnet/minecraft/network/PacketListener;)V +MD: net/minecraft/network/protocol/game/ClientboundSetHealthPacket/m_5797_ (Lnet/minecraft/network/protocol/game/ClientGamePacketListener;)V net/minecraft/network/protocol/game/ClientboundSetHealthPacket/handle (Lnet/minecraft/network/protocol/game/ClientGamePacketListener;)V +MD: net/minecraft/network/protocol/game/ClientboundSetObjectivePacket/ (Lnet/minecraft/world/scores/Objective;I)V net/minecraft/network/protocol/game/ClientboundSetObjectivePacket/ (Lnet/minecraft/world/scores/Objective;I)V +MD: net/minecraft/network/protocol/game/ClientboundSetObjectivePacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ClientboundSetObjectivePacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ClientboundSetObjectivePacket/m_133266_ ()Ljava/lang/String; net/minecraft/network/protocol/game/ClientboundSetObjectivePacket/getObjectiveName ()Ljava/lang/String; +MD: net/minecraft/network/protocol/game/ClientboundSetObjectivePacket/m_133269_ ()Lnet/minecraft/network/chat/Component; net/minecraft/network/protocol/game/ClientboundSetObjectivePacket/getDisplayName ()Lnet/minecraft/network/chat/Component; +MD: net/minecraft/network/protocol/game/ClientboundSetObjectivePacket/m_133270_ ()I net/minecraft/network/protocol/game/ClientboundSetObjectivePacket/getMethod ()I +MD: net/minecraft/network/protocol/game/ClientboundSetObjectivePacket/m_133271_ ()Lnet/minecraft/world/scores/criteria/ObjectiveCriteria$RenderType; net/minecraft/network/protocol/game/ClientboundSetObjectivePacket/getRenderType ()Lnet/minecraft/world/scores/criteria/ObjectiveCriteria$RenderType; +MD: net/minecraft/network/protocol/game/ClientboundSetObjectivePacket/m_5779_ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ClientboundSetObjectivePacket/write (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ClientboundSetObjectivePacket/m_5797_ (Lnet/minecraft/network/PacketListener;)V net/minecraft/network/protocol/game/ClientboundSetObjectivePacket/handle (Lnet/minecraft/network/PacketListener;)V +MD: net/minecraft/network/protocol/game/ClientboundSetObjectivePacket/m_5797_ (Lnet/minecraft/network/protocol/game/ClientGamePacketListener;)V net/minecraft/network/protocol/game/ClientboundSetObjectivePacket/handle (Lnet/minecraft/network/protocol/game/ClientGamePacketListener;)V +MD: net/minecraft/network/protocol/game/ClientboundSetPassengersPacket/ (Lnet/minecraft/world/entity/Entity;)V net/minecraft/network/protocol/game/ClientboundSetPassengersPacket/ (Lnet/minecraft/world/entity/Entity;)V +MD: net/minecraft/network/protocol/game/ClientboundSetPassengersPacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ClientboundSetPassengersPacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ClientboundSetPassengersPacket/m_133283_ ()[I net/minecraft/network/protocol/game/ClientboundSetPassengersPacket/getPassengers ()[I +MD: net/minecraft/network/protocol/game/ClientboundSetPassengersPacket/m_133286_ ()I net/minecraft/network/protocol/game/ClientboundSetPassengersPacket/getVehicle ()I +MD: net/minecraft/network/protocol/game/ClientboundSetPassengersPacket/m_5779_ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ClientboundSetPassengersPacket/write (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ClientboundSetPassengersPacket/m_5797_ (Lnet/minecraft/network/PacketListener;)V net/minecraft/network/protocol/game/ClientboundSetPassengersPacket/handle (Lnet/minecraft/network/PacketListener;)V +MD: net/minecraft/network/protocol/game/ClientboundSetPassengersPacket/m_5797_ (Lnet/minecraft/network/protocol/game/ClientGamePacketListener;)V net/minecraft/network/protocol/game/ClientboundSetPassengersPacket/handle (Lnet/minecraft/network/protocol/game/ClientGamePacketListener;)V +MD: net/minecraft/network/protocol/game/ClientboundSetPlayerTeamPacket/ (Ljava/lang/String;ILjava/util/Optional;Ljava/util/Collection;)V net/minecraft/network/protocol/game/ClientboundSetPlayerTeamPacket/ (Ljava/lang/String;ILjava/util/Optional;Ljava/util/Collection;)V +MD: net/minecraft/network/protocol/game/ClientboundSetPlayerTeamPacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ClientboundSetPlayerTeamPacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ClientboundSetPlayerTeamPacket/m_133311_ ()Ljava/lang/String; net/minecraft/network/protocol/game/ClientboundSetPlayerTeamPacket/getName ()Ljava/lang/String; +MD: net/minecraft/network/protocol/game/ClientboundSetPlayerTeamPacket/m_133315_ ()Ljava/util/Collection; net/minecraft/network/protocol/game/ClientboundSetPlayerTeamPacket/getPlayers ()Ljava/util/Collection; +MD: net/minecraft/network/protocol/game/ClientboundSetPlayerTeamPacket/m_179324_ (I)Z net/minecraft/network/protocol/game/ClientboundSetPlayerTeamPacket/shouldHavePlayerList (I)Z +MD: net/minecraft/network/protocol/game/ClientboundSetPlayerTeamPacket/m_179326_ (Lnet/minecraft/world/scores/PlayerTeam;)Lnet/minecraft/network/protocol/game/ClientboundSetPlayerTeamPacket; net/minecraft/network/protocol/game/ClientboundSetPlayerTeamPacket/createRemovePacket (Lnet/minecraft/world/scores/PlayerTeam;)Lnet/minecraft/network/protocol/game/ClientboundSetPlayerTeamPacket; +MD: net/minecraft/network/protocol/game/ClientboundSetPlayerTeamPacket/m_179328_ (Lnet/minecraft/world/scores/PlayerTeam;Ljava/lang/String;Lnet/minecraft/network/protocol/game/ClientboundSetPlayerTeamPacket$Action;)Lnet/minecraft/network/protocol/game/ClientboundSetPlayerTeamPacket; net/minecraft/network/protocol/game/ClientboundSetPlayerTeamPacket/createPlayerPacket (Lnet/minecraft/world/scores/PlayerTeam;Ljava/lang/String;Lnet/minecraft/network/protocol/game/ClientboundSetPlayerTeamPacket$Action;)Lnet/minecraft/network/protocol/game/ClientboundSetPlayerTeamPacket; +MD: net/minecraft/network/protocol/game/ClientboundSetPlayerTeamPacket/m_179332_ (Lnet/minecraft/world/scores/PlayerTeam;Z)Lnet/minecraft/network/protocol/game/ClientboundSetPlayerTeamPacket; net/minecraft/network/protocol/game/ClientboundSetPlayerTeamPacket/createAddOrModifyPacket (Lnet/minecraft/world/scores/PlayerTeam;Z)Lnet/minecraft/network/protocol/game/ClientboundSetPlayerTeamPacket; +MD: net/minecraft/network/protocol/game/ClientboundSetPlayerTeamPacket/m_179335_ ()Lnet/minecraft/network/protocol/game/ClientboundSetPlayerTeamPacket$Action; net/minecraft/network/protocol/game/ClientboundSetPlayerTeamPacket/getPlayerAction ()Lnet/minecraft/network/protocol/game/ClientboundSetPlayerTeamPacket$Action; +MD: net/minecraft/network/protocol/game/ClientboundSetPlayerTeamPacket/m_179336_ (I)Z net/minecraft/network/protocol/game/ClientboundSetPlayerTeamPacket/shouldHaveParameters (I)Z +MD: net/minecraft/network/protocol/game/ClientboundSetPlayerTeamPacket/m_179338_ ()Lnet/minecraft/network/protocol/game/ClientboundSetPlayerTeamPacket$Action; net/minecraft/network/protocol/game/ClientboundSetPlayerTeamPacket/getTeamAction ()Lnet/minecraft/network/protocol/game/ClientboundSetPlayerTeamPacket$Action; +MD: net/minecraft/network/protocol/game/ClientboundSetPlayerTeamPacket/m_179339_ ()Ljava/util/Optional; net/minecraft/network/protocol/game/ClientboundSetPlayerTeamPacket/getParameters ()Ljava/util/Optional; +MD: net/minecraft/network/protocol/game/ClientboundSetPlayerTeamPacket/m_179340_ ()Ljava/lang/IllegalStateException; net/minecraft/network/protocol/game/ClientboundSetPlayerTeamPacket/lambda$write$0 ()Ljava/lang/IllegalStateException; +MD: net/minecraft/network/protocol/game/ClientboundSetPlayerTeamPacket/m_5779_ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ClientboundSetPlayerTeamPacket/write (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ClientboundSetPlayerTeamPacket/m_5797_ (Lnet/minecraft/network/protocol/game/ClientGamePacketListener;)V net/minecraft/network/protocol/game/ClientboundSetPlayerTeamPacket/handle (Lnet/minecraft/network/protocol/game/ClientGamePacketListener;)V +MD: net/minecraft/network/protocol/game/ClientboundSetPlayerTeamPacket/m_5797_ (Lnet/minecraft/network/PacketListener;)V net/minecraft/network/protocol/game/ClientboundSetPlayerTeamPacket/handle (Lnet/minecraft/network/PacketListener;)V +MD: net/minecraft/network/protocol/game/ClientboundSetPlayerTeamPacket$Action/ ()V net/minecraft/network/protocol/game/ClientboundSetPlayerTeamPacket$Action/ ()V +MD: net/minecraft/network/protocol/game/ClientboundSetPlayerTeamPacket$Action/ (Ljava/lang/String;I)V net/minecraft/network/protocol/game/ClientboundSetPlayerTeamPacket$Action/ (Ljava/lang/String;I)V +MD: net/minecraft/network/protocol/game/ClientboundSetPlayerTeamPacket$Action/m_179348_ ()[Lnet/minecraft/network/protocol/game/ClientboundSetPlayerTeamPacket$Action; net/minecraft/network/protocol/game/ClientboundSetPlayerTeamPacket$Action/$values ()[Lnet/minecraft/network/protocol/game/ClientboundSetPlayerTeamPacket$Action; +MD: net/minecraft/network/protocol/game/ClientboundSetPlayerTeamPacket$Action/valueOf (Ljava/lang/String;)Lnet/minecraft/network/protocol/game/ClientboundSetPlayerTeamPacket$Action; net/minecraft/network/protocol/game/ClientboundSetPlayerTeamPacket$Action/valueOf (Ljava/lang/String;)Lnet/minecraft/network/protocol/game/ClientboundSetPlayerTeamPacket$Action; +MD: net/minecraft/network/protocol/game/ClientboundSetPlayerTeamPacket$Action/values ()[Lnet/minecraft/network/protocol/game/ClientboundSetPlayerTeamPacket$Action; net/minecraft/network/protocol/game/ClientboundSetPlayerTeamPacket$Action/values ()[Lnet/minecraft/network/protocol/game/ClientboundSetPlayerTeamPacket$Action; +MD: net/minecraft/network/protocol/game/ClientboundSetPlayerTeamPacket$Parameters/ (Lnet/minecraft/world/scores/PlayerTeam;)V net/minecraft/network/protocol/game/ClientboundSetPlayerTeamPacket$Parameters/ (Lnet/minecraft/world/scores/PlayerTeam;)V +MD: net/minecraft/network/protocol/game/ClientboundSetPlayerTeamPacket$Parameters/ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ClientboundSetPlayerTeamPacket$Parameters/ (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ClientboundSetPlayerTeamPacket$Parameters/m_179363_ ()Lnet/minecraft/network/chat/Component; net/minecraft/network/protocol/game/ClientboundSetPlayerTeamPacket$Parameters/getDisplayName ()Lnet/minecraft/network/chat/Component; +MD: net/minecraft/network/protocol/game/ClientboundSetPlayerTeamPacket$Parameters/m_179364_ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ClientboundSetPlayerTeamPacket$Parameters/write (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ClientboundSetPlayerTeamPacket$Parameters/m_179366_ ()I net/minecraft/network/protocol/game/ClientboundSetPlayerTeamPacket$Parameters/getOptions ()I +MD: net/minecraft/network/protocol/game/ClientboundSetPlayerTeamPacket$Parameters/m_179367_ ()Lnet/minecraft/ChatFormatting; net/minecraft/network/protocol/game/ClientboundSetPlayerTeamPacket$Parameters/getColor ()Lnet/minecraft/ChatFormatting; +MD: net/minecraft/network/protocol/game/ClientboundSetPlayerTeamPacket$Parameters/m_179368_ ()Ljava/lang/String; net/minecraft/network/protocol/game/ClientboundSetPlayerTeamPacket$Parameters/getNametagVisibility ()Ljava/lang/String; +MD: net/minecraft/network/protocol/game/ClientboundSetPlayerTeamPacket$Parameters/m_179369_ ()Ljava/lang/String; net/minecraft/network/protocol/game/ClientboundSetPlayerTeamPacket$Parameters/getCollisionRule ()Ljava/lang/String; +MD: net/minecraft/network/protocol/game/ClientboundSetPlayerTeamPacket$Parameters/m_179370_ ()Lnet/minecraft/network/chat/Component; net/minecraft/network/protocol/game/ClientboundSetPlayerTeamPacket$Parameters/getPlayerPrefix ()Lnet/minecraft/network/chat/Component; +MD: net/minecraft/network/protocol/game/ClientboundSetPlayerTeamPacket$Parameters/m_179371_ ()Lnet/minecraft/network/chat/Component; net/minecraft/network/protocol/game/ClientboundSetPlayerTeamPacket$Parameters/getPlayerSuffix ()Lnet/minecraft/network/chat/Component; +MD: net/minecraft/network/protocol/game/ClientboundSetScorePacket/ (Lnet/minecraft/server/ServerScoreboard$Method;Ljava/lang/String;Ljava/lang/String;I)V net/minecraft/network/protocol/game/ClientboundSetScorePacket/ (Lnet/minecraft/server/ServerScoreboard$Method;Ljava/lang/String;Ljava/lang/String;I)V +MD: net/minecraft/network/protocol/game/ClientboundSetScorePacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ClientboundSetScorePacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ClientboundSetScorePacket/m_133339_ ()Ljava/lang/String; net/minecraft/network/protocol/game/ClientboundSetScorePacket/getOwner ()Ljava/lang/String; +MD: net/minecraft/network/protocol/game/ClientboundSetScorePacket/m_133342_ ()Ljava/lang/String; net/minecraft/network/protocol/game/ClientboundSetScorePacket/getObjectiveName ()Ljava/lang/String; +MD: net/minecraft/network/protocol/game/ClientboundSetScorePacket/m_133343_ ()I net/minecraft/network/protocol/game/ClientboundSetScorePacket/getScore ()I +MD: net/minecraft/network/protocol/game/ClientboundSetScorePacket/m_133344_ ()Lnet/minecraft/server/ServerScoreboard$Method; net/minecraft/network/protocol/game/ClientboundSetScorePacket/getMethod ()Lnet/minecraft/server/ServerScoreboard$Method; +MD: net/minecraft/network/protocol/game/ClientboundSetScorePacket/m_5779_ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ClientboundSetScorePacket/write (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ClientboundSetScorePacket/m_5797_ (Lnet/minecraft/network/PacketListener;)V net/minecraft/network/protocol/game/ClientboundSetScorePacket/handle (Lnet/minecraft/network/PacketListener;)V +MD: net/minecraft/network/protocol/game/ClientboundSetScorePacket/m_5797_ (Lnet/minecraft/network/protocol/game/ClientGamePacketListener;)V net/minecraft/network/protocol/game/ClientboundSetScorePacket/handle (Lnet/minecraft/network/protocol/game/ClientGamePacketListener;)V +MD: net/minecraft/network/protocol/game/ClientboundSetSimulationDistancePacket/ (I)V net/minecraft/network/protocol/game/ClientboundSetSimulationDistancePacket/ (I)V +MD: net/minecraft/network/protocol/game/ClientboundSetSimulationDistancePacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ClientboundSetSimulationDistancePacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ClientboundSetSimulationDistancePacket/equals (Ljava/lang/Object;)Z net/minecraft/network/protocol/game/ClientboundSetSimulationDistancePacket/equals (Ljava/lang/Object;)Z +MD: net/minecraft/network/protocol/game/ClientboundSetSimulationDistancePacket/f_195796_ ()I net/minecraft/network/protocol/game/ClientboundSetSimulationDistancePacket/simulationDistance ()I +MD: net/minecraft/network/protocol/game/ClientboundSetSimulationDistancePacket/hashCode ()I net/minecraft/network/protocol/game/ClientboundSetSimulationDistancePacket/hashCode ()I +MD: net/minecraft/network/protocol/game/ClientboundSetSimulationDistancePacket/m_5779_ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ClientboundSetSimulationDistancePacket/write (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ClientboundSetSimulationDistancePacket/m_5797_ (Lnet/minecraft/network/PacketListener;)V net/minecraft/network/protocol/game/ClientboundSetSimulationDistancePacket/handle (Lnet/minecraft/network/PacketListener;)V +MD: net/minecraft/network/protocol/game/ClientboundSetSimulationDistancePacket/m_5797_ (Lnet/minecraft/network/protocol/game/ClientGamePacketListener;)V net/minecraft/network/protocol/game/ClientboundSetSimulationDistancePacket/handle (Lnet/minecraft/network/protocol/game/ClientGamePacketListener;)V +MD: net/minecraft/network/protocol/game/ClientboundSetSimulationDistancePacket/toString ()Ljava/lang/String; net/minecraft/network/protocol/game/ClientboundSetSimulationDistancePacket/toString ()Ljava/lang/String; +MD: net/minecraft/network/protocol/game/ClientboundSetSubtitleTextPacket/ (Lnet/minecraft/network/chat/Component;)V net/minecraft/network/protocol/game/ClientboundSetSubtitleTextPacket/ (Lnet/minecraft/network/chat/Component;)V +MD: net/minecraft/network/protocol/game/ClientboundSetSubtitleTextPacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ClientboundSetSubtitleTextPacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ClientboundSetSubtitleTextPacket/m_179385_ ()Lnet/minecraft/network/chat/Component; net/minecraft/network/protocol/game/ClientboundSetSubtitleTextPacket/getText ()Lnet/minecraft/network/chat/Component; +MD: net/minecraft/network/protocol/game/ClientboundSetSubtitleTextPacket/m_5779_ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ClientboundSetSubtitleTextPacket/write (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ClientboundSetSubtitleTextPacket/m_5797_ (Lnet/minecraft/network/PacketListener;)V net/minecraft/network/protocol/game/ClientboundSetSubtitleTextPacket/handle (Lnet/minecraft/network/PacketListener;)V +MD: net/minecraft/network/protocol/game/ClientboundSetSubtitleTextPacket/m_5797_ (Lnet/minecraft/network/protocol/game/ClientGamePacketListener;)V net/minecraft/network/protocol/game/ClientboundSetSubtitleTextPacket/handle (Lnet/minecraft/network/protocol/game/ClientGamePacketListener;)V +MD: net/minecraft/network/protocol/game/ClientboundSetTimePacket/ (JJZ)V net/minecraft/network/protocol/game/ClientboundSetTimePacket/ (JJZ)V +MD: net/minecraft/network/protocol/game/ClientboundSetTimePacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ClientboundSetTimePacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ClientboundSetTimePacket/m_133358_ ()J net/minecraft/network/protocol/game/ClientboundSetTimePacket/getGameTime ()J +MD: net/minecraft/network/protocol/game/ClientboundSetTimePacket/m_133361_ ()J net/minecraft/network/protocol/game/ClientboundSetTimePacket/getDayTime ()J +MD: net/minecraft/network/protocol/game/ClientboundSetTimePacket/m_5779_ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ClientboundSetTimePacket/write (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ClientboundSetTimePacket/m_5797_ (Lnet/minecraft/network/PacketListener;)V net/minecraft/network/protocol/game/ClientboundSetTimePacket/handle (Lnet/minecraft/network/PacketListener;)V +MD: net/minecraft/network/protocol/game/ClientboundSetTimePacket/m_5797_ (Lnet/minecraft/network/protocol/game/ClientGamePacketListener;)V net/minecraft/network/protocol/game/ClientboundSetTimePacket/handle (Lnet/minecraft/network/protocol/game/ClientGamePacketListener;)V +MD: net/minecraft/network/protocol/game/ClientboundSetTitleTextPacket/ (Lnet/minecraft/network/chat/Component;)V net/minecraft/network/protocol/game/ClientboundSetTitleTextPacket/ (Lnet/minecraft/network/chat/Component;)V +MD: net/minecraft/network/protocol/game/ClientboundSetTitleTextPacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ClientboundSetTitleTextPacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ClientboundSetTitleTextPacket/m_179399_ ()Lnet/minecraft/network/chat/Component; net/minecraft/network/protocol/game/ClientboundSetTitleTextPacket/getText ()Lnet/minecraft/network/chat/Component; +MD: net/minecraft/network/protocol/game/ClientboundSetTitleTextPacket/m_5779_ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ClientboundSetTitleTextPacket/write (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ClientboundSetTitleTextPacket/m_5797_ (Lnet/minecraft/network/PacketListener;)V net/minecraft/network/protocol/game/ClientboundSetTitleTextPacket/handle (Lnet/minecraft/network/PacketListener;)V +MD: net/minecraft/network/protocol/game/ClientboundSetTitleTextPacket/m_5797_ (Lnet/minecraft/network/protocol/game/ClientGamePacketListener;)V net/minecraft/network/protocol/game/ClientboundSetTitleTextPacket/handle (Lnet/minecraft/network/protocol/game/ClientGamePacketListener;)V +MD: net/minecraft/network/protocol/game/ClientboundSetTitlesAnimationPacket/ (III)V net/minecraft/network/protocol/game/ClientboundSetTitlesAnimationPacket/ (III)V +MD: net/minecraft/network/protocol/game/ClientboundSetTitlesAnimationPacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ClientboundSetTitlesAnimationPacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ClientboundSetTitlesAnimationPacket/m_179415_ ()I net/minecraft/network/protocol/game/ClientboundSetTitlesAnimationPacket/getFadeIn ()I +MD: net/minecraft/network/protocol/game/ClientboundSetTitlesAnimationPacket/m_179416_ ()I net/minecraft/network/protocol/game/ClientboundSetTitlesAnimationPacket/getStay ()I +MD: net/minecraft/network/protocol/game/ClientboundSetTitlesAnimationPacket/m_179417_ ()I net/minecraft/network/protocol/game/ClientboundSetTitlesAnimationPacket/getFadeOut ()I +MD: net/minecraft/network/protocol/game/ClientboundSetTitlesAnimationPacket/m_5779_ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ClientboundSetTitlesAnimationPacket/write (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ClientboundSetTitlesAnimationPacket/m_5797_ (Lnet/minecraft/network/PacketListener;)V net/minecraft/network/protocol/game/ClientboundSetTitlesAnimationPacket/handle (Lnet/minecraft/network/PacketListener;)V +MD: net/minecraft/network/protocol/game/ClientboundSetTitlesAnimationPacket/m_5797_ (Lnet/minecraft/network/protocol/game/ClientGamePacketListener;)V net/minecraft/network/protocol/game/ClientboundSetTitlesAnimationPacket/handle (Lnet/minecraft/network/protocol/game/ClientGamePacketListener;)V +MD: net/minecraft/network/protocol/game/ClientboundSoundEntityPacket/ (Lnet/minecraft/core/Holder;Lnet/minecraft/sounds/SoundSource;Lnet/minecraft/world/entity/Entity;FFJ)V net/minecraft/network/protocol/game/ClientboundSoundEntityPacket/ (Lnet/minecraft/core/Holder;Lnet/minecraft/sounds/SoundSource;Lnet/minecraft/world/entity/Entity;FFJ)V +MD: net/minecraft/network/protocol/game/ClientboundSoundEntityPacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ClientboundSoundEntityPacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ClientboundSoundEntityPacket/m_133429_ ()Lnet/minecraft/sounds/SoundSource; net/minecraft/network/protocol/game/ClientboundSoundEntityPacket/getSource ()Lnet/minecraft/sounds/SoundSource; +MD: net/minecraft/network/protocol/game/ClientboundSoundEntityPacket/m_133430_ ()I net/minecraft/network/protocol/game/ClientboundSoundEntityPacket/getId ()I +MD: net/minecraft/network/protocol/game/ClientboundSoundEntityPacket/m_133431_ ()F net/minecraft/network/protocol/game/ClientboundSoundEntityPacket/getVolume ()F +MD: net/minecraft/network/protocol/game/ClientboundSoundEntityPacket/m_133432_ ()F net/minecraft/network/protocol/game/ClientboundSoundEntityPacket/getPitch ()F +MD: net/minecraft/network/protocol/game/ClientboundSoundEntityPacket/m_237837_ ()J net/minecraft/network/protocol/game/ClientboundSoundEntityPacket/getSeed ()J +MD: net/minecraft/network/protocol/game/ClientboundSoundEntityPacket/m_263456_ ()Lnet/minecraft/core/Holder; net/minecraft/network/protocol/game/ClientboundSoundEntityPacket/getSound ()Lnet/minecraft/core/Holder; +MD: net/minecraft/network/protocol/game/ClientboundSoundEntityPacket/m_263464_ (Lnet/minecraft/network/FriendlyByteBuf;Lnet/minecraft/sounds/SoundEvent;)V net/minecraft/network/protocol/game/ClientboundSoundEntityPacket/lambda$write$0 (Lnet/minecraft/network/FriendlyByteBuf;Lnet/minecraft/sounds/SoundEvent;)V +MD: net/minecraft/network/protocol/game/ClientboundSoundEntityPacket/m_5779_ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ClientboundSoundEntityPacket/write (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ClientboundSoundEntityPacket/m_5797_ (Lnet/minecraft/network/PacketListener;)V net/minecraft/network/protocol/game/ClientboundSoundEntityPacket/handle (Lnet/minecraft/network/PacketListener;)V +MD: net/minecraft/network/protocol/game/ClientboundSoundEntityPacket/m_5797_ (Lnet/minecraft/network/protocol/game/ClientGamePacketListener;)V net/minecraft/network/protocol/game/ClientboundSoundEntityPacket/handle (Lnet/minecraft/network/protocol/game/ClientGamePacketListener;)V +MD: net/minecraft/network/protocol/game/ClientboundSoundPacket/ (Lnet/minecraft/core/Holder;Lnet/minecraft/sounds/SoundSource;DDDFFJ)V net/minecraft/network/protocol/game/ClientboundSoundPacket/ (Lnet/minecraft/core/Holder;Lnet/minecraft/sounds/SoundSource;DDDFFJ)V +MD: net/minecraft/network/protocol/game/ClientboundSoundPacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ClientboundSoundPacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ClientboundSoundPacket/m_133458_ ()Lnet/minecraft/sounds/SoundSource; net/minecraft/network/protocol/game/ClientboundSoundPacket/getSource ()Lnet/minecraft/sounds/SoundSource; +MD: net/minecraft/network/protocol/game/ClientboundSoundPacket/m_133459_ ()D net/minecraft/network/protocol/game/ClientboundSoundPacket/getX ()D +MD: net/minecraft/network/protocol/game/ClientboundSoundPacket/m_133460_ ()D net/minecraft/network/protocol/game/ClientboundSoundPacket/getY ()D +MD: net/minecraft/network/protocol/game/ClientboundSoundPacket/m_133461_ ()D net/minecraft/network/protocol/game/ClientboundSoundPacket/getZ ()D +MD: net/minecraft/network/protocol/game/ClientboundSoundPacket/m_133462_ ()F net/minecraft/network/protocol/game/ClientboundSoundPacket/getVolume ()F +MD: net/minecraft/network/protocol/game/ClientboundSoundPacket/m_133463_ ()F net/minecraft/network/protocol/game/ClientboundSoundPacket/getPitch ()F +MD: net/minecraft/network/protocol/game/ClientboundSoundPacket/m_237848_ ()J net/minecraft/network/protocol/game/ClientboundSoundPacket/getSeed ()J +MD: net/minecraft/network/protocol/game/ClientboundSoundPacket/m_263212_ (Lnet/minecraft/network/FriendlyByteBuf;Lnet/minecraft/sounds/SoundEvent;)V net/minecraft/network/protocol/game/ClientboundSoundPacket/lambda$write$0 (Lnet/minecraft/network/FriendlyByteBuf;Lnet/minecraft/sounds/SoundEvent;)V +MD: net/minecraft/network/protocol/game/ClientboundSoundPacket/m_263229_ ()Lnet/minecraft/core/Holder; net/minecraft/network/protocol/game/ClientboundSoundPacket/getSound ()Lnet/minecraft/core/Holder; +MD: net/minecraft/network/protocol/game/ClientboundSoundPacket/m_5779_ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ClientboundSoundPacket/write (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ClientboundSoundPacket/m_5797_ (Lnet/minecraft/network/protocol/game/ClientGamePacketListener;)V net/minecraft/network/protocol/game/ClientboundSoundPacket/handle (Lnet/minecraft/network/protocol/game/ClientGamePacketListener;)V +MD: net/minecraft/network/protocol/game/ClientboundSoundPacket/m_5797_ (Lnet/minecraft/network/PacketListener;)V net/minecraft/network/protocol/game/ClientboundSoundPacket/handle (Lnet/minecraft/network/PacketListener;)V +MD: net/minecraft/network/protocol/game/ClientboundStopSoundPacket/ (Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/sounds/SoundSource;)V net/minecraft/network/protocol/game/ClientboundStopSoundPacket/ (Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/sounds/SoundSource;)V +MD: net/minecraft/network/protocol/game/ClientboundStopSoundPacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ClientboundStopSoundPacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ClientboundStopSoundPacket/m_133476_ ()Lnet/minecraft/resources/ResourceLocation; net/minecraft/network/protocol/game/ClientboundStopSoundPacket/getName ()Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/network/protocol/game/ClientboundStopSoundPacket/m_133479_ ()Lnet/minecraft/sounds/SoundSource; net/minecraft/network/protocol/game/ClientboundStopSoundPacket/getSource ()Lnet/minecraft/sounds/SoundSource; +MD: net/minecraft/network/protocol/game/ClientboundStopSoundPacket/m_5779_ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ClientboundStopSoundPacket/write (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ClientboundStopSoundPacket/m_5797_ (Lnet/minecraft/network/PacketListener;)V net/minecraft/network/protocol/game/ClientboundStopSoundPacket/handle (Lnet/minecraft/network/PacketListener;)V +MD: net/minecraft/network/protocol/game/ClientboundStopSoundPacket/m_5797_ (Lnet/minecraft/network/protocol/game/ClientGamePacketListener;)V net/minecraft/network/protocol/game/ClientboundStopSoundPacket/handle (Lnet/minecraft/network/protocol/game/ClientGamePacketListener;)V +MD: net/minecraft/network/protocol/game/ClientboundSystemChatPacket/ (Lnet/minecraft/network/chat/Component;Z)V net/minecraft/network/protocol/game/ClientboundSystemChatPacket/ (Lnet/minecraft/network/chat/Component;Z)V +MD: net/minecraft/network/protocol/game/ClientboundSystemChatPacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ClientboundSystemChatPacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ClientboundSystemChatPacket/equals (Ljava/lang/Object;)Z net/minecraft/network/protocol/game/ClientboundSystemChatPacket/equals (Ljava/lang/Object;)Z +MD: net/minecraft/network/protocol/game/ClientboundSystemChatPacket/f_237849_ ()Lnet/minecraft/network/chat/Component; net/minecraft/network/protocol/game/ClientboundSystemChatPacket/content ()Lnet/minecraft/network/chat/Component; +MD: net/minecraft/network/protocol/game/ClientboundSystemChatPacket/f_240374_ ()Z net/minecraft/network/protocol/game/ClientboundSystemChatPacket/overlay ()Z +MD: net/minecraft/network/protocol/game/ClientboundSystemChatPacket/hashCode ()I net/minecraft/network/protocol/game/ClientboundSystemChatPacket/hashCode ()I +MD: net/minecraft/network/protocol/game/ClientboundSystemChatPacket/m_5779_ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ClientboundSystemChatPacket/write (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ClientboundSystemChatPacket/m_5797_ (Lnet/minecraft/network/PacketListener;)V net/minecraft/network/protocol/game/ClientboundSystemChatPacket/handle (Lnet/minecraft/network/PacketListener;)V +MD: net/minecraft/network/protocol/game/ClientboundSystemChatPacket/m_5797_ (Lnet/minecraft/network/protocol/game/ClientGamePacketListener;)V net/minecraft/network/protocol/game/ClientboundSystemChatPacket/handle (Lnet/minecraft/network/protocol/game/ClientGamePacketListener;)V +MD: net/minecraft/network/protocol/game/ClientboundSystemChatPacket/m_6588_ ()Z net/minecraft/network/protocol/game/ClientboundSystemChatPacket/isSkippable ()Z +MD: net/minecraft/network/protocol/game/ClientboundSystemChatPacket/toString ()Ljava/lang/String; net/minecraft/network/protocol/game/ClientboundSystemChatPacket/toString ()Ljava/lang/String; +MD: net/minecraft/network/protocol/game/ClientboundTabListPacket/ (Lnet/minecraft/network/chat/Component;Lnet/minecraft/network/chat/Component;)V net/minecraft/network/protocol/game/ClientboundTabListPacket/ (Lnet/minecraft/network/chat/Component;Lnet/minecraft/network/chat/Component;)V +MD: net/minecraft/network/protocol/game/ClientboundTabListPacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ClientboundTabListPacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ClientboundTabListPacket/m_133489_ ()Lnet/minecraft/network/chat/Component; net/minecraft/network/protocol/game/ClientboundTabListPacket/getHeader ()Lnet/minecraft/network/chat/Component; +MD: net/minecraft/network/protocol/game/ClientboundTabListPacket/m_133492_ ()Lnet/minecraft/network/chat/Component; net/minecraft/network/protocol/game/ClientboundTabListPacket/getFooter ()Lnet/minecraft/network/chat/Component; +MD: net/minecraft/network/protocol/game/ClientboundTabListPacket/m_5779_ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ClientboundTabListPacket/write (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ClientboundTabListPacket/m_5797_ (Lnet/minecraft/network/PacketListener;)V net/minecraft/network/protocol/game/ClientboundTabListPacket/handle (Lnet/minecraft/network/PacketListener;)V +MD: net/minecraft/network/protocol/game/ClientboundTabListPacket/m_5797_ (Lnet/minecraft/network/protocol/game/ClientGamePacketListener;)V net/minecraft/network/protocol/game/ClientboundTabListPacket/handle (Lnet/minecraft/network/protocol/game/ClientGamePacketListener;)V +MD: net/minecraft/network/protocol/game/ClientboundTagQueryPacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ClientboundTagQueryPacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ClientboundTagQueryPacket/ (ILnet/minecraft/nbt/CompoundTag;)V net/minecraft/network/protocol/game/ClientboundTagQueryPacket/ (ILnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/network/protocol/game/ClientboundTagQueryPacket/m_133506_ ()I net/minecraft/network/protocol/game/ClientboundTagQueryPacket/getTransactionId ()I +MD: net/minecraft/network/protocol/game/ClientboundTagQueryPacket/m_133509_ ()Lnet/minecraft/nbt/CompoundTag; net/minecraft/network/protocol/game/ClientboundTagQueryPacket/getTag ()Lnet/minecraft/nbt/CompoundTag; +MD: net/minecraft/network/protocol/game/ClientboundTagQueryPacket/m_5779_ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ClientboundTagQueryPacket/write (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ClientboundTagQueryPacket/m_5797_ (Lnet/minecraft/network/PacketListener;)V net/minecraft/network/protocol/game/ClientboundTagQueryPacket/handle (Lnet/minecraft/network/PacketListener;)V +MD: net/minecraft/network/protocol/game/ClientboundTagQueryPacket/m_5797_ (Lnet/minecraft/network/protocol/game/ClientGamePacketListener;)V net/minecraft/network/protocol/game/ClientboundTagQueryPacket/handle (Lnet/minecraft/network/protocol/game/ClientGamePacketListener;)V +MD: net/minecraft/network/protocol/game/ClientboundTagQueryPacket/m_6588_ ()Z net/minecraft/network/protocol/game/ClientboundTagQueryPacket/isSkippable ()Z +MD: net/minecraft/network/protocol/game/ClientboundTakeItemEntityPacket/ (III)V net/minecraft/network/protocol/game/ClientboundTakeItemEntityPacket/ (III)V +MD: net/minecraft/network/protocol/game/ClientboundTakeItemEntityPacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ClientboundTakeItemEntityPacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ClientboundTakeItemEntityPacket/m_133524_ ()I net/minecraft/network/protocol/game/ClientboundTakeItemEntityPacket/getItemId ()I +MD: net/minecraft/network/protocol/game/ClientboundTakeItemEntityPacket/m_133527_ ()I net/minecraft/network/protocol/game/ClientboundTakeItemEntityPacket/getPlayerId ()I +MD: net/minecraft/network/protocol/game/ClientboundTakeItemEntityPacket/m_133528_ ()I net/minecraft/network/protocol/game/ClientboundTakeItemEntityPacket/getAmount ()I +MD: net/minecraft/network/protocol/game/ClientboundTakeItemEntityPacket/m_5779_ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ClientboundTakeItemEntityPacket/write (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ClientboundTakeItemEntityPacket/m_5797_ (Lnet/minecraft/network/PacketListener;)V net/minecraft/network/protocol/game/ClientboundTakeItemEntityPacket/handle (Lnet/minecraft/network/PacketListener;)V +MD: net/minecraft/network/protocol/game/ClientboundTakeItemEntityPacket/m_5797_ (Lnet/minecraft/network/protocol/game/ClientGamePacketListener;)V net/minecraft/network/protocol/game/ClientboundTakeItemEntityPacket/handle (Lnet/minecraft/network/protocol/game/ClientGamePacketListener;)V +MD: net/minecraft/network/protocol/game/ClientboundTeleportEntityPacket/ (Lnet/minecraft/world/entity/Entity;)V net/minecraft/network/protocol/game/ClientboundTeleportEntityPacket/ (Lnet/minecraft/world/entity/Entity;)V +MD: net/minecraft/network/protocol/game/ClientboundTeleportEntityPacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ClientboundTeleportEntityPacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ClientboundTeleportEntityPacket/m_133545_ ()I net/minecraft/network/protocol/game/ClientboundTeleportEntityPacket/getId ()I +MD: net/minecraft/network/protocol/game/ClientboundTeleportEntityPacket/m_133548_ ()D net/minecraft/network/protocol/game/ClientboundTeleportEntityPacket/getX ()D +MD: net/minecraft/network/protocol/game/ClientboundTeleportEntityPacket/m_133549_ ()D net/minecraft/network/protocol/game/ClientboundTeleportEntityPacket/getY ()D +MD: net/minecraft/network/protocol/game/ClientboundTeleportEntityPacket/m_133550_ ()D net/minecraft/network/protocol/game/ClientboundTeleportEntityPacket/getZ ()D +MD: net/minecraft/network/protocol/game/ClientboundTeleportEntityPacket/m_133551_ ()B net/minecraft/network/protocol/game/ClientboundTeleportEntityPacket/getyRot ()B +MD: net/minecraft/network/protocol/game/ClientboundTeleportEntityPacket/m_133552_ ()B net/minecraft/network/protocol/game/ClientboundTeleportEntityPacket/getxRot ()B +MD: net/minecraft/network/protocol/game/ClientboundTeleportEntityPacket/m_133553_ ()Z net/minecraft/network/protocol/game/ClientboundTeleportEntityPacket/isOnGround ()Z +MD: net/minecraft/network/protocol/game/ClientboundTeleportEntityPacket/m_5779_ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ClientboundTeleportEntityPacket/write (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ClientboundTeleportEntityPacket/m_5797_ (Lnet/minecraft/network/PacketListener;)V net/minecraft/network/protocol/game/ClientboundTeleportEntityPacket/handle (Lnet/minecraft/network/PacketListener;)V +MD: net/minecraft/network/protocol/game/ClientboundTeleportEntityPacket/m_5797_ (Lnet/minecraft/network/protocol/game/ClientGamePacketListener;)V net/minecraft/network/protocol/game/ClientboundTeleportEntityPacket/handle (Lnet/minecraft/network/protocol/game/ClientGamePacketListener;)V +MD: net/minecraft/network/protocol/game/ClientboundUpdateAdvancementsPacket/ (ZLjava/util/Collection;Ljava/util/Set;Ljava/util/Map;)V net/minecraft/network/protocol/game/ClientboundUpdateAdvancementsPacket/ (ZLjava/util/Collection;Ljava/util/Set;Ljava/util/Map;)V +MD: net/minecraft/network/protocol/game/ClientboundUpdateAdvancementsPacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ClientboundUpdateAdvancementsPacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ClientboundUpdateAdvancementsPacket/m_133570_ ()Ljava/util/Map; net/minecraft/network/protocol/game/ClientboundUpdateAdvancementsPacket/getAdded ()Ljava/util/Map; +MD: net/minecraft/network/protocol/game/ClientboundUpdateAdvancementsPacket/m_133573_ ()Ljava/util/Set; net/minecraft/network/protocol/game/ClientboundUpdateAdvancementsPacket/getRemoved ()Ljava/util/Set; +MD: net/minecraft/network/protocol/game/ClientboundUpdateAdvancementsPacket/m_133574_ ()Ljava/util/Map; net/minecraft/network/protocol/game/ClientboundUpdateAdvancementsPacket/getProgress ()Ljava/util/Map; +MD: net/minecraft/network/protocol/game/ClientboundUpdateAdvancementsPacket/m_133575_ ()Z net/minecraft/network/protocol/game/ClientboundUpdateAdvancementsPacket/shouldReset ()Z +MD: net/minecraft/network/protocol/game/ClientboundUpdateAdvancementsPacket/m_179440_ (Lnet/minecraft/network/FriendlyByteBuf;Lnet/minecraft/advancements/Advancement$Builder;)V net/minecraft/network/protocol/game/ClientboundUpdateAdvancementsPacket/lambda$write$0 (Lnet/minecraft/network/FriendlyByteBuf;Lnet/minecraft/advancements/Advancement$Builder;)V +MD: net/minecraft/network/protocol/game/ClientboundUpdateAdvancementsPacket/m_179443_ (Lnet/minecraft/network/FriendlyByteBuf;Lnet/minecraft/advancements/AdvancementProgress;)V net/minecraft/network/protocol/game/ClientboundUpdateAdvancementsPacket/lambda$write$1 (Lnet/minecraft/network/FriendlyByteBuf;Lnet/minecraft/advancements/AdvancementProgress;)V +MD: net/minecraft/network/protocol/game/ClientboundUpdateAdvancementsPacket/m_5779_ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ClientboundUpdateAdvancementsPacket/write (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ClientboundUpdateAdvancementsPacket/m_5797_ (Lnet/minecraft/network/PacketListener;)V net/minecraft/network/protocol/game/ClientboundUpdateAdvancementsPacket/handle (Lnet/minecraft/network/PacketListener;)V +MD: net/minecraft/network/protocol/game/ClientboundUpdateAdvancementsPacket/m_5797_ (Lnet/minecraft/network/protocol/game/ClientGamePacketListener;)V net/minecraft/network/protocol/game/ClientboundUpdateAdvancementsPacket/handle (Lnet/minecraft/network/protocol/game/ClientGamePacketListener;)V +MD: net/minecraft/network/protocol/game/ClientboundUpdateAttributesPacket/ (ILjava/util/Collection;)V net/minecraft/network/protocol/game/ClientboundUpdateAttributesPacket/ (ILjava/util/Collection;)V +MD: net/minecraft/network/protocol/game/ClientboundUpdateAttributesPacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ClientboundUpdateAttributesPacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ClientboundUpdateAttributesPacket/m_133588_ ()I net/minecraft/network/protocol/game/ClientboundUpdateAttributesPacket/getEntityId ()I +MD: net/minecraft/network/protocol/game/ClientboundUpdateAttributesPacket/m_133591_ ()Ljava/util/List; net/minecraft/network/protocol/game/ClientboundUpdateAttributesPacket/getValues ()Ljava/util/List; +MD: net/minecraft/network/protocol/game/ClientboundUpdateAttributesPacket/m_179448_ (Lnet/minecraft/network/FriendlyByteBuf;Lnet/minecraft/world/entity/ai/attributes/AttributeModifier;)V net/minecraft/network/protocol/game/ClientboundUpdateAttributesPacket/lambda$write$2 (Lnet/minecraft/network/FriendlyByteBuf;Lnet/minecraft/world/entity/ai/attributes/AttributeModifier;)V +MD: net/minecraft/network/protocol/game/ClientboundUpdateAttributesPacket/m_179456_ (Lnet/minecraft/network/FriendlyByteBuf;)Lnet/minecraft/world/entity/ai/attributes/AttributeModifier; net/minecraft/network/protocol/game/ClientboundUpdateAttributesPacket/lambda$new$0 (Lnet/minecraft/network/FriendlyByteBuf;)Lnet/minecraft/world/entity/ai/attributes/AttributeModifier; +MD: net/minecraft/network/protocol/game/ClientboundUpdateAttributesPacket/m_257124_ (Lnet/minecraft/network/FriendlyByteBuf;)Lnet/minecraft/network/protocol/game/ClientboundUpdateAttributesPacket$AttributeSnapshot; net/minecraft/network/protocol/game/ClientboundUpdateAttributesPacket/lambda$new$1 (Lnet/minecraft/network/FriendlyByteBuf;)Lnet/minecraft/network/protocol/game/ClientboundUpdateAttributesPacket$AttributeSnapshot; +MD: net/minecraft/network/protocol/game/ClientboundUpdateAttributesPacket/m_257125_ (Lnet/minecraft/network/FriendlyByteBuf;Lnet/minecraft/network/protocol/game/ClientboundUpdateAttributesPacket$AttributeSnapshot;)V net/minecraft/network/protocol/game/ClientboundUpdateAttributesPacket/lambda$write$3 (Lnet/minecraft/network/FriendlyByteBuf;Lnet/minecraft/network/protocol/game/ClientboundUpdateAttributesPacket$AttributeSnapshot;)V +MD: net/minecraft/network/protocol/game/ClientboundUpdateAttributesPacket/m_5779_ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ClientboundUpdateAttributesPacket/write (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ClientboundUpdateAttributesPacket/m_5797_ (Lnet/minecraft/network/PacketListener;)V net/minecraft/network/protocol/game/ClientboundUpdateAttributesPacket/handle (Lnet/minecraft/network/PacketListener;)V +MD: net/minecraft/network/protocol/game/ClientboundUpdateAttributesPacket/m_5797_ (Lnet/minecraft/network/protocol/game/ClientGamePacketListener;)V net/minecraft/network/protocol/game/ClientboundUpdateAttributesPacket/handle (Lnet/minecraft/network/protocol/game/ClientGamePacketListener;)V +MD: net/minecraft/network/protocol/game/ClientboundUpdateAttributesPacket$AttributeSnapshot/ (Lnet/minecraft/world/entity/ai/attributes/Attribute;DLjava/util/Collection;)V net/minecraft/network/protocol/game/ClientboundUpdateAttributesPacket$AttributeSnapshot/ (Lnet/minecraft/world/entity/ai/attributes/Attribute;DLjava/util/Collection;)V +MD: net/minecraft/network/protocol/game/ClientboundUpdateAttributesPacket$AttributeSnapshot/m_133601_ ()Lnet/minecraft/world/entity/ai/attributes/Attribute; net/minecraft/network/protocol/game/ClientboundUpdateAttributesPacket$AttributeSnapshot/getAttribute ()Lnet/minecraft/world/entity/ai/attributes/Attribute; +MD: net/minecraft/network/protocol/game/ClientboundUpdateAttributesPacket$AttributeSnapshot/m_133602_ ()D net/minecraft/network/protocol/game/ClientboundUpdateAttributesPacket$AttributeSnapshot/getBase ()D +MD: net/minecraft/network/protocol/game/ClientboundUpdateAttributesPacket$AttributeSnapshot/m_133603_ ()Ljava/util/Collection; net/minecraft/network/protocol/game/ClientboundUpdateAttributesPacket$AttributeSnapshot/getModifiers ()Ljava/util/Collection; +MD: net/minecraft/network/protocol/game/ClientboundUpdateEnabledFeaturesPacket/ (Ljava/util/Set;)V net/minecraft/network/protocol/game/ClientboundUpdateEnabledFeaturesPacket/ (Ljava/util/Set;)V +MD: net/minecraft/network/protocol/game/ClientboundUpdateEnabledFeaturesPacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ClientboundUpdateEnabledFeaturesPacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ClientboundUpdateEnabledFeaturesPacket/equals (Ljava/lang/Object;)Z net/minecraft/network/protocol/game/ClientboundUpdateEnabledFeaturesPacket/equals (Ljava/lang/Object;)Z +MD: net/minecraft/network/protocol/game/ClientboundUpdateEnabledFeaturesPacket/f_244610_ ()Ljava/util/Set; net/minecraft/network/protocol/game/ClientboundUpdateEnabledFeaturesPacket/features ()Ljava/util/Set; +MD: net/minecraft/network/protocol/game/ClientboundUpdateEnabledFeaturesPacket/hashCode ()I net/minecraft/network/protocol/game/ClientboundUpdateEnabledFeaturesPacket/hashCode ()I +MD: net/minecraft/network/protocol/game/ClientboundUpdateEnabledFeaturesPacket/m_5779_ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ClientboundUpdateEnabledFeaturesPacket/write (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ClientboundUpdateEnabledFeaturesPacket/m_5797_ (Lnet/minecraft/network/PacketListener;)V net/minecraft/network/protocol/game/ClientboundUpdateEnabledFeaturesPacket/handle (Lnet/minecraft/network/PacketListener;)V +MD: net/minecraft/network/protocol/game/ClientboundUpdateEnabledFeaturesPacket/m_5797_ (Lnet/minecraft/network/protocol/game/ClientGamePacketListener;)V net/minecraft/network/protocol/game/ClientboundUpdateEnabledFeaturesPacket/handle (Lnet/minecraft/network/protocol/game/ClientGamePacketListener;)V +MD: net/minecraft/network/protocol/game/ClientboundUpdateEnabledFeaturesPacket/toString ()Ljava/lang/String; net/minecraft/network/protocol/game/ClientboundUpdateEnabledFeaturesPacket/toString ()Ljava/lang/String; +MD: net/minecraft/network/protocol/game/ClientboundUpdateMobEffectPacket/ (ILnet/minecraft/world/effect/MobEffectInstance;)V net/minecraft/network/protocol/game/ClientboundUpdateMobEffectPacket/ (ILnet/minecraft/world/effect/MobEffectInstance;)V +MD: net/minecraft/network/protocol/game/ClientboundUpdateMobEffectPacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ClientboundUpdateMobEffectPacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ClientboundUpdateMobEffectPacket/m_133622_ ()I net/minecraft/network/protocol/game/ClientboundUpdateMobEffectPacket/getEntityId ()I +MD: net/minecraft/network/protocol/game/ClientboundUpdateMobEffectPacket/m_133624_ ()B net/minecraft/network/protocol/game/ClientboundUpdateMobEffectPacket/getEffectAmplifier ()B +MD: net/minecraft/network/protocol/game/ClientboundUpdateMobEffectPacket/m_133625_ ()I net/minecraft/network/protocol/game/ClientboundUpdateMobEffectPacket/getEffectDurationTicks ()I +MD: net/minecraft/network/protocol/game/ClientboundUpdateMobEffectPacket/m_133626_ ()Z net/minecraft/network/protocol/game/ClientboundUpdateMobEffectPacket/isEffectVisible ()Z +MD: net/minecraft/network/protocol/game/ClientboundUpdateMobEffectPacket/m_133627_ ()Z net/minecraft/network/protocol/game/ClientboundUpdateMobEffectPacket/isEffectAmbient ()Z +MD: net/minecraft/network/protocol/game/ClientboundUpdateMobEffectPacket/m_133628_ ()Z net/minecraft/network/protocol/game/ClientboundUpdateMobEffectPacket/effectShowsIcon ()Z +MD: net/minecraft/network/protocol/game/ClientboundUpdateMobEffectPacket/m_237878_ ()Lnet/minecraft/world/effect/MobEffect; net/minecraft/network/protocol/game/ClientboundUpdateMobEffectPacket/getEffect ()Lnet/minecraft/world/effect/MobEffect; +MD: net/minecraft/network/protocol/game/ClientboundUpdateMobEffectPacket/m_237879_ ()Lnet/minecraft/world/effect/MobEffectInstance$FactorData; net/minecraft/network/protocol/game/ClientboundUpdateMobEffectPacket/getFactorData ()Lnet/minecraft/world/effect/MobEffectInstance$FactorData; +MD: net/minecraft/network/protocol/game/ClientboundUpdateMobEffectPacket/m_266132_ (Lnet/minecraft/network/FriendlyByteBuf;)Lnet/minecraft/world/effect/MobEffectInstance$FactorData; net/minecraft/network/protocol/game/ClientboundUpdateMobEffectPacket/lambda$new$0 (Lnet/minecraft/network/FriendlyByteBuf;)Lnet/minecraft/world/effect/MobEffectInstance$FactorData; +MD: net/minecraft/network/protocol/game/ClientboundUpdateMobEffectPacket/m_266133_ (Lnet/minecraft/network/FriendlyByteBuf;Lnet/minecraft/world/effect/MobEffectInstance$FactorData;)V net/minecraft/network/protocol/game/ClientboundUpdateMobEffectPacket/lambda$write$1 (Lnet/minecraft/network/FriendlyByteBuf;Lnet/minecraft/world/effect/MobEffectInstance$FactorData;)V +MD: net/minecraft/network/protocol/game/ClientboundUpdateMobEffectPacket/m_5779_ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ClientboundUpdateMobEffectPacket/write (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ClientboundUpdateMobEffectPacket/m_5797_ (Lnet/minecraft/network/protocol/game/ClientGamePacketListener;)V net/minecraft/network/protocol/game/ClientboundUpdateMobEffectPacket/handle (Lnet/minecraft/network/protocol/game/ClientGamePacketListener;)V +MD: net/minecraft/network/protocol/game/ClientboundUpdateMobEffectPacket/m_5797_ (Lnet/minecraft/network/PacketListener;)V net/minecraft/network/protocol/game/ClientboundUpdateMobEffectPacket/handle (Lnet/minecraft/network/PacketListener;)V +MD: net/minecraft/network/protocol/game/ClientboundUpdateRecipesPacket/ (Ljava/util/Collection;)V net/minecraft/network/protocol/game/ClientboundUpdateRecipesPacket/ (Ljava/util/Collection;)V +MD: net/minecraft/network/protocol/game/ClientboundUpdateRecipesPacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ClientboundUpdateRecipesPacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ClientboundUpdateRecipesPacket/m_133642_ (Lnet/minecraft/resources/ResourceLocation;)Ljava/lang/IllegalArgumentException; net/minecraft/network/protocol/game/ClientboundUpdateRecipesPacket/lambda$fromNetwork$0 (Lnet/minecraft/resources/ResourceLocation;)Ljava/lang/IllegalArgumentException; +MD: net/minecraft/network/protocol/game/ClientboundUpdateRecipesPacket/m_133644_ ()Ljava/util/List; net/minecraft/network/protocol/game/ClientboundUpdateRecipesPacket/getRecipes ()Ljava/util/List; +MD: net/minecraft/network/protocol/game/ClientboundUpdateRecipesPacket/m_133647_ (Lnet/minecraft/network/FriendlyByteBuf;)Lnet/minecraft/world/item/crafting/Recipe; net/minecraft/network/protocol/game/ClientboundUpdateRecipesPacket/fromNetwork (Lnet/minecraft/network/FriendlyByteBuf;)Lnet/minecraft/world/item/crafting/Recipe; +MD: net/minecraft/network/protocol/game/ClientboundUpdateRecipesPacket/m_179469_ (Lnet/minecraft/network/FriendlyByteBuf;Lnet/minecraft/world/item/crafting/Recipe;)V net/minecraft/network/protocol/game/ClientboundUpdateRecipesPacket/toNetwork (Lnet/minecraft/network/FriendlyByteBuf;Lnet/minecraft/world/item/crafting/Recipe;)V +MD: net/minecraft/network/protocol/game/ClientboundUpdateRecipesPacket/m_5779_ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ClientboundUpdateRecipesPacket/write (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ClientboundUpdateRecipesPacket/m_5797_ (Lnet/minecraft/network/PacketListener;)V net/minecraft/network/protocol/game/ClientboundUpdateRecipesPacket/handle (Lnet/minecraft/network/PacketListener;)V +MD: net/minecraft/network/protocol/game/ClientboundUpdateRecipesPacket/m_5797_ (Lnet/minecraft/network/protocol/game/ClientGamePacketListener;)V net/minecraft/network/protocol/game/ClientboundUpdateRecipesPacket/handle (Lnet/minecraft/network/protocol/game/ClientGamePacketListener;)V +MD: net/minecraft/network/protocol/game/ClientboundUpdateTagsPacket/ (Ljava/util/Map;)V net/minecraft/network/protocol/game/ClientboundUpdateTagsPacket/ (Ljava/util/Map;)V +MD: net/minecraft/network/protocol/game/ClientboundUpdateTagsPacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ClientboundUpdateTagsPacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ClientboundUpdateTagsPacket/m_179479_ (Lnet/minecraft/network/FriendlyByteBuf;Lnet/minecraft/resources/ResourceKey;)V net/minecraft/network/protocol/game/ClientboundUpdateTagsPacket/lambda$write$1 (Lnet/minecraft/network/FriendlyByteBuf;Lnet/minecraft/resources/ResourceKey;)V +MD: net/minecraft/network/protocol/game/ClientboundUpdateTagsPacket/m_179482_ ()Ljava/util/Map; net/minecraft/network/protocol/game/ClientboundUpdateTagsPacket/getTags ()Ljava/util/Map; +MD: net/minecraft/network/protocol/game/ClientboundUpdateTagsPacket/m_179483_ (Lnet/minecraft/network/FriendlyByteBuf;)Lnet/minecraft/resources/ResourceKey; net/minecraft/network/protocol/game/ClientboundUpdateTagsPacket/lambda$new$0 (Lnet/minecraft/network/FriendlyByteBuf;)Lnet/minecraft/resources/ResourceKey; +MD: net/minecraft/network/protocol/game/ClientboundUpdateTagsPacket/m_206652_ (Lnet/minecraft/network/FriendlyByteBuf;Lnet/minecraft/tags/TagNetworkSerialization$NetworkPayload;)V net/minecraft/network/protocol/game/ClientboundUpdateTagsPacket/lambda$write$2 (Lnet/minecraft/network/FriendlyByteBuf;Lnet/minecraft/tags/TagNetworkSerialization$NetworkPayload;)V +MD: net/minecraft/network/protocol/game/ClientboundUpdateTagsPacket/m_5779_ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ClientboundUpdateTagsPacket/write (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ClientboundUpdateTagsPacket/m_5797_ (Lnet/minecraft/network/PacketListener;)V net/minecraft/network/protocol/game/ClientboundUpdateTagsPacket/handle (Lnet/minecraft/network/PacketListener;)V +MD: net/minecraft/network/protocol/game/ClientboundUpdateTagsPacket/m_5797_ (Lnet/minecraft/network/protocol/game/ClientGamePacketListener;)V net/minecraft/network/protocol/game/ClientboundUpdateTagsPacket/handle (Lnet/minecraft/network/protocol/game/ClientGamePacketListener;)V +MD: net/minecraft/network/protocol/game/DebugEntityNameGenerator/ ()V net/minecraft/network/protocol/game/DebugEntityNameGenerator/ ()V +MD: net/minecraft/network/protocol/game/DebugEntityNameGenerator/ ()V net/minecraft/network/protocol/game/DebugEntityNameGenerator/ ()V +MD: net/minecraft/network/protocol/game/DebugEntityNameGenerator/m_133668_ (Ljava/util/UUID;)Ljava/lang/String; net/minecraft/network/protocol/game/DebugEntityNameGenerator/getEntityName (Ljava/util/UUID;)Ljava/lang/String; +MD: net/minecraft/network/protocol/game/DebugEntityNameGenerator/m_179486_ (Lnet/minecraft/world/entity/Entity;)Ljava/lang/String; net/minecraft/network/protocol/game/DebugEntityNameGenerator/getEntityName (Lnet/minecraft/world/entity/Entity;)Ljava/lang/String; +MD: net/minecraft/network/protocol/game/DebugEntityNameGenerator/m_237880_ (Lnet/minecraft/util/RandomSource;[Ljava/lang/String;)Ljava/lang/String; net/minecraft/network/protocol/game/DebugEntityNameGenerator/getRandomString (Lnet/minecraft/util/RandomSource;[Ljava/lang/String;)Ljava/lang/String; +MD: net/minecraft/network/protocol/game/DebugEntityNameGenerator/m_237883_ (Ljava/util/UUID;)Lnet/minecraft/util/RandomSource; net/minecraft/network/protocol/game/DebugEntityNameGenerator/getRandom (Ljava/util/UUID;)Lnet/minecraft/util/RandomSource; +MD: net/minecraft/network/protocol/game/DebugPackets/ ()V net/minecraft/network/protocol/game/DebugPackets/ ()V +MD: net/minecraft/network/protocol/game/DebugPackets/ ()V net/minecraft/network/protocol/game/DebugPackets/ ()V +MD: net/minecraft/network/protocol/game/DebugPackets/m_133674_ (Lnet/minecraft/server/level/ServerLevel;)V net/minecraft/network/protocol/game/DebugPackets/sendGameTestClearPacket (Lnet/minecraft/server/level/ServerLevel;)V +MD: net/minecraft/network/protocol/game/DebugPackets/m_133676_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/level/ChunkPos;)V net/minecraft/network/protocol/game/DebugPackets/sendPoiPacketsForChunk (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/level/ChunkPos;)V +MD: net/minecraft/network/protocol/game/DebugPackets/m_133679_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;)V net/minecraft/network/protocol/game/DebugPackets/sendPoiAddedPacket (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/network/protocol/game/DebugPackets/m_133682_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;Ljava/lang/String;II)V net/minecraft/network/protocol/game/DebugPackets/sendGameTestAddMarker (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;Ljava/lang/String;II)V +MD: net/minecraft/network/protocol/game/DebugPackets/m_133688_ (Lnet/minecraft/server/level/ServerLevel;Ljava/util/Collection;)V net/minecraft/network/protocol/game/DebugPackets/sendRaids (Lnet/minecraft/server/level/ServerLevel;Ljava/util/Collection;)V +MD: net/minecraft/network/protocol/game/DebugPackets/m_133691_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/network/FriendlyByteBuf;Lnet/minecraft/resources/ResourceLocation;)V net/minecraft/network/protocol/game/DebugPackets/sendPacketToAllPlayers (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/network/FriendlyByteBuf;Lnet/minecraft/resources/ResourceLocation;)V +MD: net/minecraft/network/protocol/game/DebugPackets/m_133695_ (Lnet/minecraft/world/entity/LivingEntity;)V net/minecraft/network/protocol/game/DebugPackets/sendEntityBrain (Lnet/minecraft/world/entity/LivingEntity;)V +MD: net/minecraft/network/protocol/game/DebugPackets/m_133697_ (Lnet/minecraft/world/entity/animal/Bee;)V net/minecraft/network/protocol/game/DebugPackets/sendBeeInfo (Lnet/minecraft/world/entity/animal/Bee;)V +MD: net/minecraft/network/protocol/game/DebugPackets/m_133699_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/entity/Mob;Lnet/minecraft/world/entity/ai/goal/GoalSelector;)V net/minecraft/network/protocol/game/DebugPackets/sendGoalSelector (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/entity/Mob;Lnet/minecraft/world/entity/ai/goal/GoalSelector;)V +MD: net/minecraft/network/protocol/game/DebugPackets/m_133703_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/entity/Mob;Lnet/minecraft/world/level/pathfinder/Path;F)V net/minecraft/network/protocol/game/DebugPackets/sendPathFindingPacket (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/entity/Mob;Lnet/minecraft/world/level/pathfinder/Path;F)V +MD: net/minecraft/network/protocol/game/DebugPackets/m_133708_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;)V net/minecraft/network/protocol/game/DebugPackets/sendNeighborsUpdatePacket (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/network/protocol/game/DebugPackets/m_133711_ (Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/world/level/levelgen/structure/StructureStart;)V net/minecraft/network/protocol/game/DebugPackets/sendStructurePacket (Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/world/level/levelgen/structure/StructureStart;)V +MD: net/minecraft/network/protocol/game/DebugPackets/m_133716_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;)V net/minecraft/network/protocol/game/DebugPackets/sendPoiRemovedPacket (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/network/protocol/game/DebugPackets/m_133719_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;)V net/minecraft/network/protocol/game/DebugPackets/sendPoiTicketCountPacket (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/network/protocol/game/DebugPackets/m_133722_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;)V net/minecraft/network/protocol/game/DebugPackets/sendVillageSectionsPacket (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/network/protocol/game/DebugPackets/m_179489_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/ai/village/poi/PoiRecord;)V net/minecraft/network/protocol/game/DebugPackets/lambda$sendPoiPacketsForChunk$1 (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/ai/village/poi/PoiRecord;)V +MD: net/minecraft/network/protocol/game/DebugPackets/m_179492_ (Lnet/minecraft/server/level/ServerLevel;Ljava/lang/Object;)Ljava/lang/String; net/minecraft/network/protocol/game/DebugPackets/getShortDescription (Lnet/minecraft/server/level/ServerLevel;Ljava/lang/Object;)Ljava/lang/String; +MD: net/minecraft/network/protocol/game/DebugPackets/m_179495_ (Lnet/minecraft/world/entity/LivingEntity;J)Ljava/util/List; net/minecraft/network/protocol/game/DebugPackets/getMemoryDescriptions (Lnet/minecraft/world/entity/LivingEntity;J)Ljava/util/List; +MD: net/minecraft/network/protocol/game/DebugPackets/m_179498_ (Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/DebugPackets/writeBrain (Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/DebugPackets/m_179507_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/level/gameevent/GameEventListener;)V net/minecraft/network/protocol/game/DebugPackets/sendGameEventListenerInfo (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/level/gameevent/GameEventListener;)V +MD: net/minecraft/network/protocol/game/DebugPackets/m_179510_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/entity/BeehiveBlockEntity;)V net/minecraft/network/protocol/game/DebugPackets/sendHiveInfo (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/entity/BeehiveBlockEntity;)V +MD: net/minecraft/network/protocol/game/DebugPackets/m_237885_ (Lnet/minecraft/resources/ResourceKey;)Ljava/lang/String; net/minecraft/network/protocol/game/DebugPackets/lambda$sendPoiAddedPacket$2 (Lnet/minecraft/resources/ResourceKey;)Ljava/lang/String; +MD: net/minecraft/network/protocol/game/DebugPackets/m_237887_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/level/gameevent/GameEvent;Lnet/minecraft/world/phys/Vec3;)V net/minecraft/network/protocol/game/DebugPackets/sendGameEventInfo (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/level/gameevent/GameEvent;Lnet/minecraft/world/phys/Vec3;)V +MD: net/minecraft/network/protocol/game/DebugPackets/m_237891_ (Lnet/minecraft/core/Holder;)Z net/minecraft/network/protocol/game/DebugPackets/lambda$sendPoiPacketsForChunk$0 (Lnet/minecraft/core/Holder;)Z +MD: net/minecraft/network/protocol/game/DebugPackets/m_237893_ (Ljava/util/List;Ljava/lang/String;Lnet/minecraft/world/entity/ai/gossip/GossipType;Ljava/lang/Integer;)V net/minecraft/network/protocol/game/DebugPackets/lambda$writeBrain$9 (Ljava/util/List;Ljava/lang/String;Lnet/minecraft/world/entity/ai/gossip/GossipType;Ljava/lang/Integer;)V +MD: net/minecraft/network/protocol/game/DebugPackets/m_237898_ (Ljava/util/List;Ljava/util/UUID;Lit/unimi/dsi/fastutil/objects/Object2IntMap;)V net/minecraft/network/protocol/game/DebugPackets/lambda$writeBrain$10 (Ljava/util/List;Ljava/util/UUID;Lit/unimi/dsi/fastutil/objects/Object2IntMap;)V +MD: net/minecraft/network/protocol/game/DebugPackets/m_237902_ (Lnet/minecraft/network/FriendlyByteBuf;Lnet/minecraft/world/entity/ai/goal/WrappedGoal;)V net/minecraft/network/protocol/game/DebugPackets/lambda$sendGoalSelector$3 (Lnet/minecraft/network/FriendlyByteBuf;Lnet/minecraft/world/entity/ai/goal/WrappedGoal;)V +MD: net/minecraft/network/protocol/game/DebugPackets/m_237905_ (Lnet/minecraft/network/FriendlyByteBuf;Lnet/minecraft/world/entity/raid/Raid;)V net/minecraft/network/protocol/game/DebugPackets/lambda$sendRaids$4 (Lnet/minecraft/network/FriendlyByteBuf;Lnet/minecraft/world/entity/raid/Raid;)V +MD: net/minecraft/network/protocol/game/DebugPackets/m_237908_ (Lnet/minecraft/network/FriendlyByteBuf;Lnet/minecraft/world/entity/schedule/Activity;)V net/minecraft/network/protocol/game/DebugPackets/lambda$writeBrain$7 (Lnet/minecraft/network/FriendlyByteBuf;Lnet/minecraft/world/entity/schedule/Activity;)V +MD: net/minecraft/network/protocol/game/DebugPackets/m_237911_ (Lnet/minecraft/network/FriendlyByteBuf;Lnet/minecraft/world/level/pathfinder/Path;)V net/minecraft/network/protocol/game/DebugPackets/lambda$writeBrain$6 (Lnet/minecraft/network/FriendlyByteBuf;Lnet/minecraft/world/level/pathfinder/Path;)V +MD: net/minecraft/network/protocol/game/DebugPackets/m_237914_ (Lnet/minecraft/network/FriendlyByteBuf;Ljava/lang/String;)V net/minecraft/network/protocol/game/DebugPackets/lambda$writeBrain$8 (Lnet/minecraft/network/FriendlyByteBuf;Ljava/lang/String;)V +MD: net/minecraft/network/protocol/game/DebugPackets/m_237917_ (Lnet/minecraft/network/FriendlyByteBuf;Lnet/minecraft/world/level/pathfinder/Path;)V net/minecraft/network/protocol/game/DebugPackets/lambda$sendBeeInfo$5 (Lnet/minecraft/network/FriendlyByteBuf;Lnet/minecraft/world/level/pathfinder/Path;)V +MD: net/minecraft/network/protocol/game/ServerGamePacketListener/m_142110_ (Lnet/minecraft/network/protocol/game/ServerboundPongPacket;)V net/minecraft/network/protocol/game/ServerGamePacketListener/handlePong (Lnet/minecraft/network/protocol/game/ServerboundPongPacket;)V +MD: net/minecraft/network/protocol/game/ServerGamePacketListener/m_214047_ (Lnet/minecraft/network/protocol/game/ServerboundChatCommandPacket;)V net/minecraft/network/protocol/game/ServerGamePacketListener/handleChatCommand (Lnet/minecraft/network/protocol/game/ServerboundChatCommandPacket;)V +MD: net/minecraft/network/protocol/game/ServerGamePacketListener/m_241885_ (Lnet/minecraft/network/protocol/game/ServerboundChatAckPacket;)V net/minecraft/network/protocol/game/ServerGamePacketListener/handleChatAck (Lnet/minecraft/network/protocol/game/ServerboundChatAckPacket;)V +MD: net/minecraft/network/protocol/game/ServerGamePacketListener/m_252797_ (Lnet/minecraft/network/protocol/game/ServerboundChatSessionUpdatePacket;)V net/minecraft/network/protocol/game/ServerGamePacketListener/handleChatSessionUpdate (Lnet/minecraft/network/protocol/game/ServerboundChatSessionUpdatePacket;)V +MD: net/minecraft/network/protocol/game/ServerGamePacketListener/m_5527_ (Lnet/minecraft/network/protocol/game/ServerboundSignUpdatePacket;)V net/minecraft/network/protocol/game/ServerGamePacketListener/handleSignUpdate (Lnet/minecraft/network/protocol/game/ServerboundSignUpdatePacket;)V +MD: net/minecraft/network/protocol/game/ServerGamePacketListener/m_5591_ (Lnet/minecraft/network/protocol/game/ServerboundRenameItemPacket;)V net/minecraft/network/protocol/game/ServerGamePacketListener/handleRenameItem (Lnet/minecraft/network/protocol/game/ServerboundRenameItemPacket;)V +MD: net/minecraft/network/protocol/game/ServerGamePacketListener/m_5617_ (Lnet/minecraft/network/protocol/game/ServerboundClientInformationPacket;)V net/minecraft/network/protocol/game/ServerGamePacketListener/handleClientInformation (Lnet/minecraft/network/protocol/game/ServerboundClientInformationPacket;)V +MD: net/minecraft/network/protocol/game/ServerGamePacketListener/m_5659_ (Lnet/minecraft/network/protocol/game/ServerboundMoveVehiclePacket;)V net/minecraft/network/protocol/game/ServerGamePacketListener/handleMoveVehicle (Lnet/minecraft/network/protocol/game/ServerboundMoveVehiclePacket;)V +MD: net/minecraft/network/protocol/game/ServerGamePacketListener/m_5681_ (Lnet/minecraft/network/protocol/game/ServerboundPlayerCommandPacket;)V net/minecraft/network/protocol/game/ServerGamePacketListener/handlePlayerCommand (Lnet/minecraft/network/protocol/game/ServerboundPlayerCommandPacket;)V +MD: net/minecraft/network/protocol/game/ServerGamePacketListener/m_5683_ (Lnet/minecraft/network/protocol/game/ServerboundKeepAlivePacket;)V net/minecraft/network/protocol/game/ServerGamePacketListener/handleKeepAlive (Lnet/minecraft/network/protocol/game/ServerboundKeepAlivePacket;)V +MD: net/minecraft/network/protocol/game/ServerGamePacketListener/m_5712_ (Lnet/minecraft/network/protocol/game/ServerboundSetBeaconPacket;)V net/minecraft/network/protocol/game/ServerGamePacketListener/handleSetBeaconPacket (Lnet/minecraft/network/protocol/game/ServerboundSetBeaconPacket;)V +MD: net/minecraft/network/protocol/game/ServerGamePacketListener/m_5760_ (Lnet/minecraft/network/protocol/game/ServerboundUseItemPacket;)V net/minecraft/network/protocol/game/ServerGamePacketListener/handleUseItem (Lnet/minecraft/network/protocol/game/ServerboundUseItemPacket;)V +MD: net/minecraft/network/protocol/game/ServerGamePacketListener/m_5914_ (Lnet/minecraft/network/protocol/game/ServerboundContainerClickPacket;)V net/minecraft/network/protocol/game/ServerGamePacketListener/handleContainerClick (Lnet/minecraft/network/protocol/game/ServerboundContainerClickPacket;)V +MD: net/minecraft/network/protocol/game/ServerGamePacketListener/m_5918_ (Lnet/minecraft/network/protocol/game/ServerboundPlayerInputPacket;)V net/minecraft/network/protocol/game/ServerGamePacketListener/handlePlayerInput (Lnet/minecraft/network/protocol/game/ServerboundPlayerInputPacket;)V +MD: net/minecraft/network/protocol/game/ServerGamePacketListener/m_5938_ (Lnet/minecraft/network/protocol/game/ServerboundPaddleBoatPacket;)V net/minecraft/network/protocol/game/ServerGamePacketListener/handlePaddleBoat (Lnet/minecraft/network/protocol/game/ServerboundPaddleBoatPacket;)V +MD: net/minecraft/network/protocol/game/ServerGamePacketListener/m_5964_ (Lnet/minecraft/network/protocol/game/ServerboundSetCreativeModeSlotPacket;)V net/minecraft/network/protocol/game/ServerGamePacketListener/handleSetCreativeModeSlot (Lnet/minecraft/network/protocol/game/ServerboundSetCreativeModeSlotPacket;)V +MD: net/minecraft/network/protocol/game/ServerGamePacketListener/m_6272_ (Lnet/minecraft/network/protocol/game/ServerboundClientCommandPacket;)V net/minecraft/network/protocol/game/ServerGamePacketListener/handleClientCommand (Lnet/minecraft/network/protocol/game/ServerboundClientCommandPacket;)V +MD: net/minecraft/network/protocol/game/ServerGamePacketListener/m_6321_ (Lnet/minecraft/network/protocol/game/ServerboundSelectTradePacket;)V net/minecraft/network/protocol/game/ServerGamePacketListener/handleSelectTrade (Lnet/minecraft/network/protocol/game/ServerboundSelectTradePacket;)V +MD: net/minecraft/network/protocol/game/ServerGamePacketListener/m_6371_ (Lnet/minecraft/network/protocol/game/ServerboundUseItemOnPacket;)V net/minecraft/network/protocol/game/ServerGamePacketListener/handleUseItemOn (Lnet/minecraft/network/protocol/game/ServerboundUseItemOnPacket;)V +MD: net/minecraft/network/protocol/game/ServerGamePacketListener/m_6449_ (Lnet/minecraft/network/protocol/game/ServerboundJigsawGeneratePacket;)V net/minecraft/network/protocol/game/ServerGamePacketListener/handleJigsawGenerate (Lnet/minecraft/network/protocol/game/ServerboundJigsawGeneratePacket;)V +MD: net/minecraft/network/protocol/game/ServerGamePacketListener/m_6557_ (Lnet/minecraft/network/protocol/game/ServerboundContainerButtonClickPacket;)V net/minecraft/network/protocol/game/ServerGamePacketListener/handleContainerButtonClick (Lnet/minecraft/network/protocol/game/ServerboundContainerButtonClickPacket;)V +MD: net/minecraft/network/protocol/game/ServerGamePacketListener/m_6629_ (Lnet/minecraft/network/protocol/game/ServerboundSetCommandMinecartPacket;)V net/minecraft/network/protocol/game/ServerGamePacketListener/handleSetCommandMinecart (Lnet/minecraft/network/protocol/game/ServerboundSetCommandMinecartPacket;)V +MD: net/minecraft/network/protocol/game/ServerGamePacketListener/m_6780_ (Lnet/minecraft/network/protocol/game/ServerboundBlockEntityTagQuery;)V net/minecraft/network/protocol/game/ServerGamePacketListener/handleBlockEntityTagQuery (Lnet/minecraft/network/protocol/game/ServerboundBlockEntityTagQuery;)V +MD: net/minecraft/network/protocol/game/ServerGamePacketListener/m_6828_ (Lnet/minecraft/network/protocol/game/ServerboundPlayerAbilitiesPacket;)V net/minecraft/network/protocol/game/ServerGamePacketListener/handlePlayerAbilities (Lnet/minecraft/network/protocol/game/ServerboundPlayerAbilitiesPacket;)V +MD: net/minecraft/network/protocol/game/ServerGamePacketListener/m_6829_ (Lnet/minecraft/network/protocol/game/ServerboundEditBookPacket;)V net/minecraft/network/protocol/game/ServerGamePacketListener/handleEditBook (Lnet/minecraft/network/protocol/game/ServerboundEditBookPacket;)V +MD: net/minecraft/network/protocol/game/ServerGamePacketListener/m_6936_ (Lnet/minecraft/network/protocol/game/ServerboundTeleportToEntityPacket;)V net/minecraft/network/protocol/game/ServerGamePacketListener/handleTeleportToEntityPacket (Lnet/minecraft/network/protocol/game/ServerboundTeleportToEntityPacket;)V +MD: net/minecraft/network/protocol/game/ServerGamePacketListener/m_6946_ (Lnet/minecraft/network/protocol/game/ServerboundInteractPacket;)V net/minecraft/network/protocol/game/ServerGamePacketListener/handleInteract (Lnet/minecraft/network/protocol/game/ServerboundInteractPacket;)V +MD: net/minecraft/network/protocol/game/ServerGamePacketListener/m_6947_ (Lnet/minecraft/network/protocol/game/ServerboundSeenAdvancementsPacket;)V net/minecraft/network/protocol/game/ServerGamePacketListener/handleSeenAdvancements (Lnet/minecraft/network/protocol/game/ServerboundSeenAdvancementsPacket;)V +MD: net/minecraft/network/protocol/game/ServerGamePacketListener/m_7185_ (Lnet/minecraft/network/protocol/game/ServerboundMovePlayerPacket;)V net/minecraft/network/protocol/game/ServerGamePacketListener/handleMovePlayer (Lnet/minecraft/network/protocol/game/ServerboundMovePlayerPacket;)V +MD: net/minecraft/network/protocol/game/ServerGamePacketListener/m_7191_ (Lnet/minecraft/network/protocol/game/ServerboundPlaceRecipePacket;)V net/minecraft/network/protocol/game/ServerGamePacketListener/handlePlaceRecipe (Lnet/minecraft/network/protocol/game/ServerboundPlaceRecipePacket;)V +MD: net/minecraft/network/protocol/game/ServerGamePacketListener/m_7192_ (Lnet/minecraft/network/protocol/game/ServerboundSetCommandBlockPacket;)V net/minecraft/network/protocol/game/ServerGamePacketListener/handleSetCommandBlock (Lnet/minecraft/network/protocol/game/ServerboundSetCommandBlockPacket;)V +MD: net/minecraft/network/protocol/game/ServerGamePacketListener/m_7376_ (Lnet/minecraft/network/protocol/game/ServerboundAcceptTeleportationPacket;)V net/minecraft/network/protocol/game/ServerGamePacketListener/handleAcceptTeleportPacket (Lnet/minecraft/network/protocol/game/ServerboundAcceptTeleportationPacket;)V +MD: net/minecraft/network/protocol/game/ServerGamePacketListener/m_7388_ (Lnet/minecraft/network/protocol/game/ServerboundChatPacket;)V net/minecraft/network/protocol/game/ServerGamePacketListener/handleChat (Lnet/minecraft/network/protocol/game/ServerboundChatPacket;)V +MD: net/minecraft/network/protocol/game/ServerGamePacketListener/m_7411_ (Lnet/minecraft/network/protocol/game/ServerboundRecipeBookSeenRecipePacket;)V net/minecraft/network/protocol/game/ServerGamePacketListener/handleRecipeBookSeenRecipePacket (Lnet/minecraft/network/protocol/game/ServerboundRecipeBookSeenRecipePacket;)V +MD: net/minecraft/network/protocol/game/ServerGamePacketListener/m_7423_ (Lnet/minecraft/network/protocol/game/ServerboundCustomPayloadPacket;)V net/minecraft/network/protocol/game/ServerGamePacketListener/handleCustomPayload (Lnet/minecraft/network/protocol/game/ServerboundCustomPayloadPacket;)V +MD: net/minecraft/network/protocol/game/ServerGamePacketListener/m_7424_ (Lnet/minecraft/network/protocol/game/ServerboundSetStructureBlockPacket;)V net/minecraft/network/protocol/game/ServerGamePacketListener/handleSetStructureBlock (Lnet/minecraft/network/protocol/game/ServerboundSetStructureBlockPacket;)V +MD: net/minecraft/network/protocol/game/ServerGamePacketListener/m_7477_ (Lnet/minecraft/network/protocol/game/ServerboundChangeDifficultyPacket;)V net/minecraft/network/protocol/game/ServerGamePacketListener/handleChangeDifficulty (Lnet/minecraft/network/protocol/game/ServerboundChangeDifficultyPacket;)V +MD: net/minecraft/network/protocol/game/ServerGamePacketListener/m_7502_ (Lnet/minecraft/network/protocol/game/ServerboundPlayerActionPacket;)V net/minecraft/network/protocol/game/ServerGamePacketListener/handlePlayerAction (Lnet/minecraft/network/protocol/game/ServerboundPlayerActionPacket;)V +MD: net/minecraft/network/protocol/game/ServerGamePacketListener/m_7529_ (Lnet/minecraft/network/protocol/game/ServerboundResourcePackPacket;)V net/minecraft/network/protocol/game/ServerGamePacketListener/handleResourcePackResponse (Lnet/minecraft/network/protocol/game/ServerboundResourcePackPacket;)V +MD: net/minecraft/network/protocol/game/ServerGamePacketListener/m_7548_ (Lnet/minecraft/network/protocol/game/ServerboundEntityTagQuery;)V net/minecraft/network/protocol/game/ServerGamePacketListener/handleEntityTagQuery (Lnet/minecraft/network/protocol/game/ServerboundEntityTagQuery;)V +MD: net/minecraft/network/protocol/game/ServerGamePacketListener/m_7728_ (Lnet/minecraft/network/protocol/game/ServerboundLockDifficultyPacket;)V net/minecraft/network/protocol/game/ServerGamePacketListener/handleLockDifficulty (Lnet/minecraft/network/protocol/game/ServerboundLockDifficultyPacket;)V +MD: net/minecraft/network/protocol/game/ServerGamePacketListener/m_7741_ (Lnet/minecraft/network/protocol/game/ServerboundCommandSuggestionPacket;)V net/minecraft/network/protocol/game/ServerGamePacketListener/handleCustomCommandSuggestions (Lnet/minecraft/network/protocol/game/ServerboundCommandSuggestionPacket;)V +MD: net/minecraft/network/protocol/game/ServerGamePacketListener/m_7798_ (Lnet/minecraft/network/protocol/game/ServerboundSetCarriedItemPacket;)V net/minecraft/network/protocol/game/ServerGamePacketListener/handleSetCarriedItem (Lnet/minecraft/network/protocol/game/ServerboundSetCarriedItemPacket;)V +MD: net/minecraft/network/protocol/game/ServerGamePacketListener/m_7951_ (Lnet/minecraft/network/protocol/game/ServerboundContainerClosePacket;)V net/minecraft/network/protocol/game/ServerGamePacketListener/handleContainerClose (Lnet/minecraft/network/protocol/game/ServerboundContainerClosePacket;)V +MD: net/minecraft/network/protocol/game/ServerGamePacketListener/m_7953_ (Lnet/minecraft/network/protocol/game/ServerboundSwingPacket;)V net/minecraft/network/protocol/game/ServerGamePacketListener/handleAnimate (Lnet/minecraft/network/protocol/game/ServerboundSwingPacket;)V +MD: net/minecraft/network/protocol/game/ServerGamePacketListener/m_7965_ (Lnet/minecraft/network/protocol/game/ServerboundPickItemPacket;)V net/minecraft/network/protocol/game/ServerGamePacketListener/handlePickItem (Lnet/minecraft/network/protocol/game/ServerboundPickItemPacket;)V +MD: net/minecraft/network/protocol/game/ServerGamePacketListener/m_7982_ (Lnet/minecraft/network/protocol/game/ServerboundRecipeBookChangeSettingsPacket;)V net/minecraft/network/protocol/game/ServerGamePacketListener/handleRecipeBookChangeSettingsPacket (Lnet/minecraft/network/protocol/game/ServerboundRecipeBookChangeSettingsPacket;)V +MD: net/minecraft/network/protocol/game/ServerGamePacketListener/m_8019_ (Lnet/minecraft/network/protocol/game/ServerboundSetJigsawBlockPacket;)V net/minecraft/network/protocol/game/ServerGamePacketListener/handleSetJigsawBlock (Lnet/minecraft/network/protocol/game/ServerboundSetJigsawBlockPacket;)V +MD: net/minecraft/network/protocol/game/ServerPacketListener/m_201767_ ()Z net/minecraft/network/protocol/game/ServerPacketListener/shouldPropagateHandlingExceptions ()Z +MD: net/minecraft/network/protocol/game/ServerboundAcceptTeleportationPacket/ (I)V net/minecraft/network/protocol/game/ServerboundAcceptTeleportationPacket/ (I)V +MD: net/minecraft/network/protocol/game/ServerboundAcceptTeleportationPacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ServerboundAcceptTeleportationPacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ServerboundAcceptTeleportationPacket/m_133795_ ()I net/minecraft/network/protocol/game/ServerboundAcceptTeleportationPacket/getId ()I +MD: net/minecraft/network/protocol/game/ServerboundAcceptTeleportationPacket/m_5779_ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ServerboundAcceptTeleportationPacket/write (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ServerboundAcceptTeleportationPacket/m_5797_ (Lnet/minecraft/network/PacketListener;)V net/minecraft/network/protocol/game/ServerboundAcceptTeleportationPacket/handle (Lnet/minecraft/network/PacketListener;)V +MD: net/minecraft/network/protocol/game/ServerboundAcceptTeleportationPacket/m_5797_ (Lnet/minecraft/network/protocol/game/ServerGamePacketListener;)V net/minecraft/network/protocol/game/ServerboundAcceptTeleportationPacket/handle (Lnet/minecraft/network/protocol/game/ServerGamePacketListener;)V +MD: net/minecraft/network/protocol/game/ServerboundBlockEntityTagQuery/ (ILnet/minecraft/core/BlockPos;)V net/minecraft/network/protocol/game/ServerboundBlockEntityTagQuery/ (ILnet/minecraft/core/BlockPos;)V +MD: net/minecraft/network/protocol/game/ServerboundBlockEntityTagQuery/ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ServerboundBlockEntityTagQuery/ (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ServerboundBlockEntityTagQuery/m_133810_ ()I net/minecraft/network/protocol/game/ServerboundBlockEntityTagQuery/getTransactionId ()I +MD: net/minecraft/network/protocol/game/ServerboundBlockEntityTagQuery/m_133813_ ()Lnet/minecraft/core/BlockPos; net/minecraft/network/protocol/game/ServerboundBlockEntityTagQuery/getPos ()Lnet/minecraft/core/BlockPos; +MD: net/minecraft/network/protocol/game/ServerboundBlockEntityTagQuery/m_5779_ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ServerboundBlockEntityTagQuery/write (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ServerboundBlockEntityTagQuery/m_5797_ (Lnet/minecraft/network/PacketListener;)V net/minecraft/network/protocol/game/ServerboundBlockEntityTagQuery/handle (Lnet/minecraft/network/PacketListener;)V +MD: net/minecraft/network/protocol/game/ServerboundBlockEntityTagQuery/m_5797_ (Lnet/minecraft/network/protocol/game/ServerGamePacketListener;)V net/minecraft/network/protocol/game/ServerboundBlockEntityTagQuery/handle (Lnet/minecraft/network/protocol/game/ServerGamePacketListener;)V +MD: net/minecraft/network/protocol/game/ServerboundChangeDifficultyPacket/ (Lnet/minecraft/world/Difficulty;)V net/minecraft/network/protocol/game/ServerboundChangeDifficultyPacket/ (Lnet/minecraft/world/Difficulty;)V +MD: net/minecraft/network/protocol/game/ServerboundChangeDifficultyPacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ServerboundChangeDifficultyPacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ServerboundChangeDifficultyPacket/m_133824_ ()Lnet/minecraft/world/Difficulty; net/minecraft/network/protocol/game/ServerboundChangeDifficultyPacket/getDifficulty ()Lnet/minecraft/world/Difficulty; +MD: net/minecraft/network/protocol/game/ServerboundChangeDifficultyPacket/m_5779_ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ServerboundChangeDifficultyPacket/write (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ServerboundChangeDifficultyPacket/m_5797_ (Lnet/minecraft/network/PacketListener;)V net/minecraft/network/protocol/game/ServerboundChangeDifficultyPacket/handle (Lnet/minecraft/network/PacketListener;)V +MD: net/minecraft/network/protocol/game/ServerboundChangeDifficultyPacket/m_5797_ (Lnet/minecraft/network/protocol/game/ServerGamePacketListener;)V net/minecraft/network/protocol/game/ServerboundChangeDifficultyPacket/handle (Lnet/minecraft/network/protocol/game/ServerGamePacketListener;)V +MD: net/minecraft/network/protocol/game/ServerboundChatAckPacket/ (I)V net/minecraft/network/protocol/game/ServerboundChatAckPacket/ (I)V +MD: net/minecraft/network/protocol/game/ServerboundChatAckPacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ServerboundChatAckPacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ServerboundChatAckPacket/equals (Ljava/lang/Object;)Z net/minecraft/network/protocol/game/ServerboundChatAckPacket/equals (Ljava/lang/Object;)Z +MD: net/minecraft/network/protocol/game/ServerboundChatAckPacket/f_244085_ ()I net/minecraft/network/protocol/game/ServerboundChatAckPacket/offset ()I +MD: net/minecraft/network/protocol/game/ServerboundChatAckPacket/hashCode ()I net/minecraft/network/protocol/game/ServerboundChatAckPacket/hashCode ()I +MD: net/minecraft/network/protocol/game/ServerboundChatAckPacket/m_5779_ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ServerboundChatAckPacket/write (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ServerboundChatAckPacket/m_5797_ (Lnet/minecraft/network/PacketListener;)V net/minecraft/network/protocol/game/ServerboundChatAckPacket/handle (Lnet/minecraft/network/PacketListener;)V +MD: net/minecraft/network/protocol/game/ServerboundChatAckPacket/m_5797_ (Lnet/minecraft/network/protocol/game/ServerGamePacketListener;)V net/minecraft/network/protocol/game/ServerboundChatAckPacket/handle (Lnet/minecraft/network/protocol/game/ServerGamePacketListener;)V +MD: net/minecraft/network/protocol/game/ServerboundChatAckPacket/toString ()Ljava/lang/String; net/minecraft/network/protocol/game/ServerboundChatAckPacket/toString ()Ljava/lang/String; +MD: net/minecraft/network/protocol/game/ServerboundChatCommandPacket/ (Ljava/lang/String;Ljava/time/Instant;JLnet/minecraft/commands/arguments/ArgumentSignatures;Lnet/minecraft/network/chat/LastSeenMessages$Update;)V net/minecraft/network/protocol/game/ServerboundChatCommandPacket/ (Ljava/lang/String;Ljava/time/Instant;JLnet/minecraft/commands/arguments/ArgumentSignatures;Lnet/minecraft/network/chat/LastSeenMessages$Update;)V +MD: net/minecraft/network/protocol/game/ServerboundChatCommandPacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ServerboundChatCommandPacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ServerboundChatCommandPacket/equals (Ljava/lang/Object;)Z net/minecraft/network/protocol/game/ServerboundChatCommandPacket/equals (Ljava/lang/Object;)Z +MD: net/minecraft/network/protocol/game/ServerboundChatCommandPacket/f_237922_ ()Ljava/lang/String; net/minecraft/network/protocol/game/ServerboundChatCommandPacket/command ()Ljava/lang/String; +MD: net/minecraft/network/protocol/game/ServerboundChatCommandPacket/f_237923_ ()Ljava/time/Instant; net/minecraft/network/protocol/game/ServerboundChatCommandPacket/timeStamp ()Ljava/time/Instant; +MD: net/minecraft/network/protocol/game/ServerboundChatCommandPacket/f_237924_ ()Lnet/minecraft/commands/arguments/ArgumentSignatures; net/minecraft/network/protocol/game/ServerboundChatCommandPacket/argumentSignatures ()Lnet/minecraft/commands/arguments/ArgumentSignatures; +MD: net/minecraft/network/protocol/game/ServerboundChatCommandPacket/f_240858_ ()J net/minecraft/network/protocol/game/ServerboundChatCommandPacket/salt ()J +MD: net/minecraft/network/protocol/game/ServerboundChatCommandPacket/f_241638_ ()Lnet/minecraft/network/chat/LastSeenMessages$Update; net/minecraft/network/protocol/game/ServerboundChatCommandPacket/lastSeenMessages ()Lnet/minecraft/network/chat/LastSeenMessages$Update; +MD: net/minecraft/network/protocol/game/ServerboundChatCommandPacket/hashCode ()I net/minecraft/network/protocol/game/ServerboundChatCommandPacket/hashCode ()I +MD: net/minecraft/network/protocol/game/ServerboundChatCommandPacket/m_5779_ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ServerboundChatCommandPacket/write (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ServerboundChatCommandPacket/m_5797_ (Lnet/minecraft/network/protocol/game/ServerGamePacketListener;)V net/minecraft/network/protocol/game/ServerboundChatCommandPacket/handle (Lnet/minecraft/network/protocol/game/ServerGamePacketListener;)V +MD: net/minecraft/network/protocol/game/ServerboundChatCommandPacket/m_5797_ (Lnet/minecraft/network/PacketListener;)V net/minecraft/network/protocol/game/ServerboundChatCommandPacket/handle (Lnet/minecraft/network/PacketListener;)V +MD: net/minecraft/network/protocol/game/ServerboundChatCommandPacket/toString ()Ljava/lang/String; net/minecraft/network/protocol/game/ServerboundChatCommandPacket/toString ()Ljava/lang/String; +MD: net/minecraft/network/protocol/game/ServerboundChatPacket/ (Ljava/lang/String;Ljava/time/Instant;JLnet/minecraft/network/chat/MessageSignature;Lnet/minecraft/network/chat/LastSeenMessages$Update;)V net/minecraft/network/protocol/game/ServerboundChatPacket/ (Ljava/lang/String;Ljava/time/Instant;JLnet/minecraft/network/chat/MessageSignature;Lnet/minecraft/network/chat/LastSeenMessages$Update;)V +MD: net/minecraft/network/protocol/game/ServerboundChatPacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ServerboundChatPacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ServerboundChatPacket/equals (Ljava/lang/Object;)Z net/minecraft/network/protocol/game/ServerboundChatPacket/equals (Ljava/lang/Object;)Z +MD: net/minecraft/network/protocol/game/ServerboundChatPacket/f_133827_ ()Ljava/lang/String; net/minecraft/network/protocol/game/ServerboundChatPacket/message ()Ljava/lang/String; +MD: net/minecraft/network/protocol/game/ServerboundChatPacket/f_237950_ ()Ljava/time/Instant; net/minecraft/network/protocol/game/ServerboundChatPacket/timeStamp ()Ljava/time/Instant; +MD: net/minecraft/network/protocol/game/ServerboundChatPacket/f_240898_ ()Lnet/minecraft/network/chat/MessageSignature; net/minecraft/network/protocol/game/ServerboundChatPacket/signature ()Lnet/minecraft/network/chat/MessageSignature; +MD: net/minecraft/network/protocol/game/ServerboundChatPacket/f_240906_ ()J net/minecraft/network/protocol/game/ServerboundChatPacket/salt ()J +MD: net/minecraft/network/protocol/game/ServerboundChatPacket/f_241662_ ()Lnet/minecraft/network/chat/LastSeenMessages$Update; net/minecraft/network/protocol/game/ServerboundChatPacket/lastSeenMessages ()Lnet/minecraft/network/chat/LastSeenMessages$Update; +MD: net/minecraft/network/protocol/game/ServerboundChatPacket/hashCode ()I net/minecraft/network/protocol/game/ServerboundChatPacket/hashCode ()I +MD: net/minecraft/network/protocol/game/ServerboundChatPacket/m_5779_ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ServerboundChatPacket/write (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ServerboundChatPacket/m_5797_ (Lnet/minecraft/network/protocol/game/ServerGamePacketListener;)V net/minecraft/network/protocol/game/ServerboundChatPacket/handle (Lnet/minecraft/network/protocol/game/ServerGamePacketListener;)V +MD: net/minecraft/network/protocol/game/ServerboundChatPacket/m_5797_ (Lnet/minecraft/network/PacketListener;)V net/minecraft/network/protocol/game/ServerboundChatPacket/handle (Lnet/minecraft/network/PacketListener;)V +MD: net/minecraft/network/protocol/game/ServerboundChatPacket/toString ()Ljava/lang/String; net/minecraft/network/protocol/game/ServerboundChatPacket/toString ()Ljava/lang/String; +MD: net/minecraft/network/protocol/game/ServerboundChatSessionUpdatePacket/ (Lnet/minecraft/network/chat/RemoteChatSession$Data;)V net/minecraft/network/protocol/game/ServerboundChatSessionUpdatePacket/ (Lnet/minecraft/network/chat/RemoteChatSession$Data;)V +MD: net/minecraft/network/protocol/game/ServerboundChatSessionUpdatePacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ServerboundChatSessionUpdatePacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ServerboundChatSessionUpdatePacket/equals (Ljava/lang/Object;)Z net/minecraft/network/protocol/game/ServerboundChatSessionUpdatePacket/equals (Ljava/lang/Object;)Z +MD: net/minecraft/network/protocol/game/ServerboundChatSessionUpdatePacket/f_252446_ ()Lnet/minecraft/network/chat/RemoteChatSession$Data; net/minecraft/network/protocol/game/ServerboundChatSessionUpdatePacket/chatSession ()Lnet/minecraft/network/chat/RemoteChatSession$Data; +MD: net/minecraft/network/protocol/game/ServerboundChatSessionUpdatePacket/hashCode ()I net/minecraft/network/protocol/game/ServerboundChatSessionUpdatePacket/hashCode ()I +MD: net/minecraft/network/protocol/game/ServerboundChatSessionUpdatePacket/m_5779_ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ServerboundChatSessionUpdatePacket/write (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ServerboundChatSessionUpdatePacket/m_5797_ (Lnet/minecraft/network/PacketListener;)V net/minecraft/network/protocol/game/ServerboundChatSessionUpdatePacket/handle (Lnet/minecraft/network/PacketListener;)V +MD: net/minecraft/network/protocol/game/ServerboundChatSessionUpdatePacket/m_5797_ (Lnet/minecraft/network/protocol/game/ServerGamePacketListener;)V net/minecraft/network/protocol/game/ServerboundChatSessionUpdatePacket/handle (Lnet/minecraft/network/protocol/game/ServerGamePacketListener;)V +MD: net/minecraft/network/protocol/game/ServerboundChatSessionUpdatePacket/toString ()Ljava/lang/String; net/minecraft/network/protocol/game/ServerboundChatSessionUpdatePacket/toString ()Ljava/lang/String; +MD: net/minecraft/network/protocol/game/ServerboundClientCommandPacket/ (Lnet/minecraft/network/protocol/game/ServerboundClientCommandPacket$Action;)V net/minecraft/network/protocol/game/ServerboundClientCommandPacket/ (Lnet/minecraft/network/protocol/game/ServerboundClientCommandPacket$Action;)V +MD: net/minecraft/network/protocol/game/ServerboundClientCommandPacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ServerboundClientCommandPacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ServerboundClientCommandPacket/m_133850_ ()Lnet/minecraft/network/protocol/game/ServerboundClientCommandPacket$Action; net/minecraft/network/protocol/game/ServerboundClientCommandPacket/getAction ()Lnet/minecraft/network/protocol/game/ServerboundClientCommandPacket$Action; +MD: net/minecraft/network/protocol/game/ServerboundClientCommandPacket/m_5779_ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ServerboundClientCommandPacket/write (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ServerboundClientCommandPacket/m_5797_ (Lnet/minecraft/network/PacketListener;)V net/minecraft/network/protocol/game/ServerboundClientCommandPacket/handle (Lnet/minecraft/network/PacketListener;)V +MD: net/minecraft/network/protocol/game/ServerboundClientCommandPacket/m_5797_ (Lnet/minecraft/network/protocol/game/ServerGamePacketListener;)V net/minecraft/network/protocol/game/ServerboundClientCommandPacket/handle (Lnet/minecraft/network/protocol/game/ServerGamePacketListener;)V +MD: net/minecraft/network/protocol/game/ServerboundClientCommandPacket$Action/ ()V net/minecraft/network/protocol/game/ServerboundClientCommandPacket$Action/ ()V +MD: net/minecraft/network/protocol/game/ServerboundClientCommandPacket$Action/ (Ljava/lang/String;I)V net/minecraft/network/protocol/game/ServerboundClientCommandPacket$Action/ (Ljava/lang/String;I)V +MD: net/minecraft/network/protocol/game/ServerboundClientCommandPacket$Action/m_179548_ ()[Lnet/minecraft/network/protocol/game/ServerboundClientCommandPacket$Action; net/minecraft/network/protocol/game/ServerboundClientCommandPacket$Action/$values ()[Lnet/minecraft/network/protocol/game/ServerboundClientCommandPacket$Action; +MD: net/minecraft/network/protocol/game/ServerboundClientCommandPacket$Action/valueOf (Ljava/lang/String;)Lnet/minecraft/network/protocol/game/ServerboundClientCommandPacket$Action; net/minecraft/network/protocol/game/ServerboundClientCommandPacket$Action/valueOf (Ljava/lang/String;)Lnet/minecraft/network/protocol/game/ServerboundClientCommandPacket$Action; +MD: net/minecraft/network/protocol/game/ServerboundClientCommandPacket$Action/values ()[Lnet/minecraft/network/protocol/game/ServerboundClientCommandPacket$Action; net/minecraft/network/protocol/game/ServerboundClientCommandPacket$Action/values ()[Lnet/minecraft/network/protocol/game/ServerboundClientCommandPacket$Action; +MD: net/minecraft/network/protocol/game/ServerboundClientInformationPacket/ (Ljava/lang/String;ILnet/minecraft/world/entity/player/ChatVisiblity;ZILnet/minecraft/world/entity/HumanoidArm;ZZ)V net/minecraft/network/protocol/game/ServerboundClientInformationPacket/ (Ljava/lang/String;ILnet/minecraft/world/entity/player/ChatVisiblity;ZILnet/minecraft/world/entity/HumanoidArm;ZZ)V +MD: net/minecraft/network/protocol/game/ServerboundClientInformationPacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ServerboundClientInformationPacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ServerboundClientInformationPacket/equals (Ljava/lang/Object;)Z net/minecraft/network/protocol/game/ServerboundClientInformationPacket/equals (Ljava/lang/Object;)Z +MD: net/minecraft/network/protocol/game/ServerboundClientInformationPacket/f_133863_ ()Ljava/lang/String; net/minecraft/network/protocol/game/ServerboundClientInformationPacket/language ()Ljava/lang/String; +MD: net/minecraft/network/protocol/game/ServerboundClientInformationPacket/f_133864_ ()I net/minecraft/network/protocol/game/ServerboundClientInformationPacket/viewDistance ()I +MD: net/minecraft/network/protocol/game/ServerboundClientInformationPacket/f_133865_ ()Lnet/minecraft/world/entity/player/ChatVisiblity; net/minecraft/network/protocol/game/ServerboundClientInformationPacket/chatVisibility ()Lnet/minecraft/world/entity/player/ChatVisiblity; +MD: net/minecraft/network/protocol/game/ServerboundClientInformationPacket/f_133866_ ()Z net/minecraft/network/protocol/game/ServerboundClientInformationPacket/chatColors ()Z +MD: net/minecraft/network/protocol/game/ServerboundClientInformationPacket/f_133867_ ()I net/minecraft/network/protocol/game/ServerboundClientInformationPacket/modelCustomisation ()I +MD: net/minecraft/network/protocol/game/ServerboundClientInformationPacket/f_133868_ ()Lnet/minecraft/world/entity/HumanoidArm; net/minecraft/network/protocol/game/ServerboundClientInformationPacket/mainHand ()Lnet/minecraft/world/entity/HumanoidArm; +MD: net/minecraft/network/protocol/game/ServerboundClientInformationPacket/f_179550_ ()Z net/minecraft/network/protocol/game/ServerboundClientInformationPacket/textFilteringEnabled ()Z +MD: net/minecraft/network/protocol/game/ServerboundClientInformationPacket/f_195812_ ()Z net/minecraft/network/protocol/game/ServerboundClientInformationPacket/allowsListing ()Z +MD: net/minecraft/network/protocol/game/ServerboundClientInformationPacket/hashCode ()I net/minecraft/network/protocol/game/ServerboundClientInformationPacket/hashCode ()I +MD: net/minecraft/network/protocol/game/ServerboundClientInformationPacket/m_5779_ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ServerboundClientInformationPacket/write (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ServerboundClientInformationPacket/m_5797_ (Lnet/minecraft/network/protocol/game/ServerGamePacketListener;)V net/minecraft/network/protocol/game/ServerboundClientInformationPacket/handle (Lnet/minecraft/network/protocol/game/ServerGamePacketListener;)V +MD: net/minecraft/network/protocol/game/ServerboundClientInformationPacket/m_5797_ (Lnet/minecraft/network/PacketListener;)V net/minecraft/network/protocol/game/ServerboundClientInformationPacket/handle (Lnet/minecraft/network/PacketListener;)V +MD: net/minecraft/network/protocol/game/ServerboundClientInformationPacket/toString ()Ljava/lang/String; net/minecraft/network/protocol/game/ServerboundClientInformationPacket/toString ()Ljava/lang/String; +MD: net/minecraft/network/protocol/game/ServerboundCommandSuggestionPacket/ (ILjava/lang/String;)V net/minecraft/network/protocol/game/ServerboundCommandSuggestionPacket/ (ILjava/lang/String;)V +MD: net/minecraft/network/protocol/game/ServerboundCommandSuggestionPacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ServerboundCommandSuggestionPacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ServerboundCommandSuggestionPacket/m_133901_ ()I net/minecraft/network/protocol/game/ServerboundCommandSuggestionPacket/getId ()I +MD: net/minecraft/network/protocol/game/ServerboundCommandSuggestionPacket/m_133904_ ()Ljava/lang/String; net/minecraft/network/protocol/game/ServerboundCommandSuggestionPacket/getCommand ()Ljava/lang/String; +MD: net/minecraft/network/protocol/game/ServerboundCommandSuggestionPacket/m_5779_ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ServerboundCommandSuggestionPacket/write (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ServerboundCommandSuggestionPacket/m_5797_ (Lnet/minecraft/network/PacketListener;)V net/minecraft/network/protocol/game/ServerboundCommandSuggestionPacket/handle (Lnet/minecraft/network/PacketListener;)V +MD: net/minecraft/network/protocol/game/ServerboundCommandSuggestionPacket/m_5797_ (Lnet/minecraft/network/protocol/game/ServerGamePacketListener;)V net/minecraft/network/protocol/game/ServerboundCommandSuggestionPacket/handle (Lnet/minecraft/network/protocol/game/ServerGamePacketListener;)V +MD: net/minecraft/network/protocol/game/ServerboundContainerButtonClickPacket/ (II)V net/minecraft/network/protocol/game/ServerboundContainerButtonClickPacket/ (II)V +MD: net/minecraft/network/protocol/game/ServerboundContainerButtonClickPacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ServerboundContainerButtonClickPacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ServerboundContainerButtonClickPacket/m_133935_ ()I net/minecraft/network/protocol/game/ServerboundContainerButtonClickPacket/getContainerId ()I +MD: net/minecraft/network/protocol/game/ServerboundContainerButtonClickPacket/m_133938_ ()I net/minecraft/network/protocol/game/ServerboundContainerButtonClickPacket/getButtonId ()I +MD: net/minecraft/network/protocol/game/ServerboundContainerButtonClickPacket/m_5779_ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ServerboundContainerButtonClickPacket/write (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ServerboundContainerButtonClickPacket/m_5797_ (Lnet/minecraft/network/PacketListener;)V net/minecraft/network/protocol/game/ServerboundContainerButtonClickPacket/handle (Lnet/minecraft/network/PacketListener;)V +MD: net/minecraft/network/protocol/game/ServerboundContainerButtonClickPacket/m_5797_ (Lnet/minecraft/network/protocol/game/ServerGamePacketListener;)V net/minecraft/network/protocol/game/ServerboundContainerButtonClickPacket/handle (Lnet/minecraft/network/protocol/game/ServerGamePacketListener;)V +MD: net/minecraft/network/protocol/game/ServerboundContainerClickPacket/ (IIIILnet/minecraft/world/inventory/ClickType;Lnet/minecraft/world/item/ItemStack;Lit/unimi/dsi/fastutil/ints/Int2ObjectMap;)V net/minecraft/network/protocol/game/ServerboundContainerClickPacket/ (IIIILnet/minecraft/world/inventory/ClickType;Lnet/minecraft/world/item/ItemStack;Lit/unimi/dsi/fastutil/ints/Int2ObjectMap;)V +MD: net/minecraft/network/protocol/game/ServerboundContainerClickPacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ServerboundContainerClickPacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ServerboundContainerClickPacket/m_133959_ ()I net/minecraft/network/protocol/game/ServerboundContainerClickPacket/getContainerId ()I +MD: net/minecraft/network/protocol/game/ServerboundContainerClickPacket/m_133962_ ()I net/minecraft/network/protocol/game/ServerboundContainerClickPacket/getSlotNum ()I +MD: net/minecraft/network/protocol/game/ServerboundContainerClickPacket/m_133963_ ()I net/minecraft/network/protocol/game/ServerboundContainerClickPacket/getButtonNum ()I +MD: net/minecraft/network/protocol/game/ServerboundContainerClickPacket/m_133966_ ()Lnet/minecraft/world/inventory/ClickType; net/minecraft/network/protocol/game/ServerboundContainerClickPacket/getClickType ()Lnet/minecraft/world/inventory/ClickType; +MD: net/minecraft/network/protocol/game/ServerboundContainerClickPacket/m_179579_ (Lnet/minecraft/network/FriendlyByteBuf;)Ljava/lang/Integer; net/minecraft/network/protocol/game/ServerboundContainerClickPacket/lambda$new$0 (Lnet/minecraft/network/FriendlyByteBuf;)Ljava/lang/Integer; +MD: net/minecraft/network/protocol/game/ServerboundContainerClickPacket/m_179581_ ()Lnet/minecraft/world/item/ItemStack; net/minecraft/network/protocol/game/ServerboundContainerClickPacket/getCarriedItem ()Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/network/protocol/game/ServerboundContainerClickPacket/m_179582_ ()Lit/unimi/dsi/fastutil/ints/Int2ObjectMap; net/minecraft/network/protocol/game/ServerboundContainerClickPacket/getChangedSlots ()Lit/unimi/dsi/fastutil/ints/Int2ObjectMap; +MD: net/minecraft/network/protocol/game/ServerboundContainerClickPacket/m_182741_ ()I net/minecraft/network/protocol/game/ServerboundContainerClickPacket/getStateId ()I +MD: net/minecraft/network/protocol/game/ServerboundContainerClickPacket/m_5779_ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ServerboundContainerClickPacket/write (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ServerboundContainerClickPacket/m_5797_ (Lnet/minecraft/network/protocol/game/ServerGamePacketListener;)V net/minecraft/network/protocol/game/ServerboundContainerClickPacket/handle (Lnet/minecraft/network/protocol/game/ServerGamePacketListener;)V +MD: net/minecraft/network/protocol/game/ServerboundContainerClickPacket/m_5797_ (Lnet/minecraft/network/PacketListener;)V net/minecraft/network/protocol/game/ServerboundContainerClickPacket/handle (Lnet/minecraft/network/PacketListener;)V +MD: net/minecraft/network/protocol/game/ServerboundContainerClosePacket/ (I)V net/minecraft/network/protocol/game/ServerboundContainerClosePacket/ (I)V +MD: net/minecraft/network/protocol/game/ServerboundContainerClosePacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ServerboundContainerClosePacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ServerboundContainerClosePacket/m_179585_ ()I net/minecraft/network/protocol/game/ServerboundContainerClosePacket/getContainerId ()I +MD: net/minecraft/network/protocol/game/ServerboundContainerClosePacket/m_5779_ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ServerboundContainerClosePacket/write (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ServerboundContainerClosePacket/m_5797_ (Lnet/minecraft/network/PacketListener;)V net/minecraft/network/protocol/game/ServerboundContainerClosePacket/handle (Lnet/minecraft/network/PacketListener;)V +MD: net/minecraft/network/protocol/game/ServerboundContainerClosePacket/m_5797_ (Lnet/minecraft/network/protocol/game/ServerGamePacketListener;)V net/minecraft/network/protocol/game/ServerboundContainerClosePacket/handle (Lnet/minecraft/network/protocol/game/ServerGamePacketListener;)V +MD: net/minecraft/network/protocol/game/ServerboundCustomPayloadPacket/ ()V net/minecraft/network/protocol/game/ServerboundCustomPayloadPacket/ ()V +MD: net/minecraft/network/protocol/game/ServerboundCustomPayloadPacket/ (Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ServerboundCustomPayloadPacket/ (Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ServerboundCustomPayloadPacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ServerboundCustomPayloadPacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ServerboundCustomPayloadPacket/m_179589_ ()Lnet/minecraft/resources/ResourceLocation; net/minecraft/network/protocol/game/ServerboundCustomPayloadPacket/getIdentifier ()Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/network/protocol/game/ServerboundCustomPayloadPacket/m_179590_ ()Lnet/minecraft/network/FriendlyByteBuf; net/minecraft/network/protocol/game/ServerboundCustomPayloadPacket/getData ()Lnet/minecraft/network/FriendlyByteBuf; +MD: net/minecraft/network/protocol/game/ServerboundCustomPayloadPacket/m_5779_ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ServerboundCustomPayloadPacket/write (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ServerboundCustomPayloadPacket/m_5797_ (Lnet/minecraft/network/PacketListener;)V net/minecraft/network/protocol/game/ServerboundCustomPayloadPacket/handle (Lnet/minecraft/network/PacketListener;)V +MD: net/minecraft/network/protocol/game/ServerboundCustomPayloadPacket/m_5797_ (Lnet/minecraft/network/protocol/game/ServerGamePacketListener;)V net/minecraft/network/protocol/game/ServerboundCustomPayloadPacket/handle (Lnet/minecraft/network/protocol/game/ServerGamePacketListener;)V +MD: net/minecraft/network/protocol/game/ServerboundEditBookPacket/ (ILjava/util/List;Ljava/util/Optional;)V net/minecraft/network/protocol/game/ServerboundEditBookPacket/ (ILjava/util/List;Ljava/util/Optional;)V +MD: net/minecraft/network/protocol/game/ServerboundEditBookPacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ServerboundEditBookPacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ServerboundEditBookPacket/m_134013_ ()I net/minecraft/network/protocol/game/ServerboundEditBookPacket/getSlot ()I +MD: net/minecraft/network/protocol/game/ServerboundEditBookPacket/m_182752_ (Lnet/minecraft/network/FriendlyByteBuf;Ljava/lang/String;)V net/minecraft/network/protocol/game/ServerboundEditBookPacket/lambda$write$3 (Lnet/minecraft/network/FriendlyByteBuf;Ljava/lang/String;)V +MD: net/minecraft/network/protocol/game/ServerboundEditBookPacket/m_182755_ ()Ljava/util/List; net/minecraft/network/protocol/game/ServerboundEditBookPacket/getPages ()Ljava/util/List; +MD: net/minecraft/network/protocol/game/ServerboundEditBookPacket/m_182756_ (Lnet/minecraft/network/FriendlyByteBuf;)Ljava/lang/String; net/minecraft/network/protocol/game/ServerboundEditBookPacket/lambda$new$1 (Lnet/minecraft/network/FriendlyByteBuf;)Ljava/lang/String; +MD: net/minecraft/network/protocol/game/ServerboundEditBookPacket/m_182758_ (Lnet/minecraft/network/FriendlyByteBuf;Ljava/lang/String;)V net/minecraft/network/protocol/game/ServerboundEditBookPacket/lambda$write$2 (Lnet/minecraft/network/FriendlyByteBuf;Ljava/lang/String;)V +MD: net/minecraft/network/protocol/game/ServerboundEditBookPacket/m_182761_ ()Ljava/util/Optional; net/minecraft/network/protocol/game/ServerboundEditBookPacket/getTitle ()Ljava/util/Optional; +MD: net/minecraft/network/protocol/game/ServerboundEditBookPacket/m_182762_ (Lnet/minecraft/network/FriendlyByteBuf;)Ljava/lang/String; net/minecraft/network/protocol/game/ServerboundEditBookPacket/lambda$new$0 (Lnet/minecraft/network/FriendlyByteBuf;)Ljava/lang/String; +MD: net/minecraft/network/protocol/game/ServerboundEditBookPacket/m_5779_ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ServerboundEditBookPacket/write (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ServerboundEditBookPacket/m_5797_ (Lnet/minecraft/network/PacketListener;)V net/minecraft/network/protocol/game/ServerboundEditBookPacket/handle (Lnet/minecraft/network/PacketListener;)V +MD: net/minecraft/network/protocol/game/ServerboundEditBookPacket/m_5797_ (Lnet/minecraft/network/protocol/game/ServerGamePacketListener;)V net/minecraft/network/protocol/game/ServerboundEditBookPacket/handle (Lnet/minecraft/network/protocol/game/ServerGamePacketListener;)V +MD: net/minecraft/network/protocol/game/ServerboundEntityTagQuery/ (II)V net/minecraft/network/protocol/game/ServerboundEntityTagQuery/ (II)V +MD: net/minecraft/network/protocol/game/ServerboundEntityTagQuery/ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ServerboundEntityTagQuery/ (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ServerboundEntityTagQuery/m_134026_ ()I net/minecraft/network/protocol/game/ServerboundEntityTagQuery/getTransactionId ()I +MD: net/minecraft/network/protocol/game/ServerboundEntityTagQuery/m_134029_ ()I net/minecraft/network/protocol/game/ServerboundEntityTagQuery/getEntityId ()I +MD: net/minecraft/network/protocol/game/ServerboundEntityTagQuery/m_5779_ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ServerboundEntityTagQuery/write (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ServerboundEntityTagQuery/m_5797_ (Lnet/minecraft/network/PacketListener;)V net/minecraft/network/protocol/game/ServerboundEntityTagQuery/handle (Lnet/minecraft/network/PacketListener;)V +MD: net/minecraft/network/protocol/game/ServerboundEntityTagQuery/m_5797_ (Lnet/minecraft/network/protocol/game/ServerGamePacketListener;)V net/minecraft/network/protocol/game/ServerboundEntityTagQuery/handle (Lnet/minecraft/network/protocol/game/ServerGamePacketListener;)V +MD: net/minecraft/network/protocol/game/ServerboundInteractPacket/ ()V net/minecraft/network/protocol/game/ServerboundInteractPacket/ ()V +MD: net/minecraft/network/protocol/game/ServerboundInteractPacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ServerboundInteractPacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ServerboundInteractPacket/ (IZLnet/minecraft/network/protocol/game/ServerboundInteractPacket$Action;)V net/minecraft/network/protocol/game/ServerboundInteractPacket/ (IZLnet/minecraft/network/protocol/game/ServerboundInteractPacket$Action;)V +MD: net/minecraft/network/protocol/game/ServerboundInteractPacket/m_134061_ ()Z net/minecraft/network/protocol/game/ServerboundInteractPacket/isUsingSecondaryAction ()Z +MD: net/minecraft/network/protocol/game/ServerboundInteractPacket/m_179603_ (Lnet/minecraft/server/level/ServerLevel;)Lnet/minecraft/world/entity/Entity; net/minecraft/network/protocol/game/ServerboundInteractPacket/getTarget (Lnet/minecraft/server/level/ServerLevel;)Lnet/minecraft/world/entity/Entity; +MD: net/minecraft/network/protocol/game/ServerboundInteractPacket/m_179605_ (Lnet/minecraft/world/entity/Entity;Z)Lnet/minecraft/network/protocol/game/ServerboundInteractPacket; net/minecraft/network/protocol/game/ServerboundInteractPacket/createAttackPacket (Lnet/minecraft/world/entity/Entity;Z)Lnet/minecraft/network/protocol/game/ServerboundInteractPacket; +MD: net/minecraft/network/protocol/game/ServerboundInteractPacket/m_179608_ (Lnet/minecraft/world/entity/Entity;ZLnet/minecraft/world/InteractionHand;)Lnet/minecraft/network/protocol/game/ServerboundInteractPacket; net/minecraft/network/protocol/game/ServerboundInteractPacket/createInteractionPacket (Lnet/minecraft/world/entity/Entity;ZLnet/minecraft/world/InteractionHand;)Lnet/minecraft/network/protocol/game/ServerboundInteractPacket; +MD: net/minecraft/network/protocol/game/ServerboundInteractPacket/m_179612_ (Lnet/minecraft/world/entity/Entity;ZLnet/minecraft/world/InteractionHand;Lnet/minecraft/world/phys/Vec3;)Lnet/minecraft/network/protocol/game/ServerboundInteractPacket; net/minecraft/network/protocol/game/ServerboundInteractPacket/createInteractionPacket (Lnet/minecraft/world/entity/Entity;ZLnet/minecraft/world/InteractionHand;Lnet/minecraft/world/phys/Vec3;)Lnet/minecraft/network/protocol/game/ServerboundInteractPacket; +MD: net/minecraft/network/protocol/game/ServerboundInteractPacket/m_179617_ (Lnet/minecraft/network/protocol/game/ServerboundInteractPacket$Handler;)V net/minecraft/network/protocol/game/ServerboundInteractPacket/dispatch (Lnet/minecraft/network/protocol/game/ServerboundInteractPacket$Handler;)V +MD: net/minecraft/network/protocol/game/ServerboundInteractPacket/m_5779_ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ServerboundInteractPacket/write (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ServerboundInteractPacket/m_5797_ (Lnet/minecraft/network/PacketListener;)V net/minecraft/network/protocol/game/ServerboundInteractPacket/handle (Lnet/minecraft/network/PacketListener;)V +MD: net/minecraft/network/protocol/game/ServerboundInteractPacket/m_5797_ (Lnet/minecraft/network/protocol/game/ServerGamePacketListener;)V net/minecraft/network/protocol/game/ServerboundInteractPacket/handle (Lnet/minecraft/network/protocol/game/ServerGamePacketListener;)V +MD: net/minecraft/network/protocol/game/ServerboundInteractPacket$1/ ()V net/minecraft/network/protocol/game/ServerboundInteractPacket$1/ ()V +MD: net/minecraft/network/protocol/game/ServerboundInteractPacket$1/m_142249_ ()Lnet/minecraft/network/protocol/game/ServerboundInteractPacket$ActionType; net/minecraft/network/protocol/game/ServerboundInteractPacket$1/getType ()Lnet/minecraft/network/protocol/game/ServerboundInteractPacket$ActionType; +MD: net/minecraft/network/protocol/game/ServerboundInteractPacket$1/m_142450_ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ServerboundInteractPacket$1/write (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ServerboundInteractPacket$1/m_142457_ (Lnet/minecraft/network/protocol/game/ServerboundInteractPacket$Handler;)V net/minecraft/network/protocol/game/ServerboundInteractPacket$1/dispatch (Lnet/minecraft/network/protocol/game/ServerboundInteractPacket$Handler;)V +MD: net/minecraft/network/protocol/game/ServerboundInteractPacket$Action/m_142249_ ()Lnet/minecraft/network/protocol/game/ServerboundInteractPacket$ActionType; net/minecraft/network/protocol/game/ServerboundInteractPacket$Action/getType ()Lnet/minecraft/network/protocol/game/ServerboundInteractPacket$ActionType; +MD: net/minecraft/network/protocol/game/ServerboundInteractPacket$Action/m_142450_ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ServerboundInteractPacket$Action/write (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ServerboundInteractPacket$Action/m_142457_ (Lnet/minecraft/network/protocol/game/ServerboundInteractPacket$Handler;)V net/minecraft/network/protocol/game/ServerboundInteractPacket$Action/dispatch (Lnet/minecraft/network/protocol/game/ServerboundInteractPacket$Handler;)V +MD: net/minecraft/network/protocol/game/ServerboundInteractPacket$ActionType/ ()V net/minecraft/network/protocol/game/ServerboundInteractPacket$ActionType/ ()V +MD: net/minecraft/network/protocol/game/ServerboundInteractPacket$ActionType/ (Ljava/lang/String;ILjava/util/function/Function;)V net/minecraft/network/protocol/game/ServerboundInteractPacket$ActionType/ (Ljava/lang/String;ILjava/util/function/Function;)V +MD: net/minecraft/network/protocol/game/ServerboundInteractPacket$ActionType/m_179637_ ()[Lnet/minecraft/network/protocol/game/ServerboundInteractPacket$ActionType; net/minecraft/network/protocol/game/ServerboundInteractPacket$ActionType/$values ()[Lnet/minecraft/network/protocol/game/ServerboundInteractPacket$ActionType; +MD: net/minecraft/network/protocol/game/ServerboundInteractPacket$ActionType/m_179638_ (Lnet/minecraft/network/FriendlyByteBuf;)Lnet/minecraft/network/protocol/game/ServerboundInteractPacket$Action; net/minecraft/network/protocol/game/ServerboundInteractPacket$ActionType/lambda$static$0 (Lnet/minecraft/network/FriendlyByteBuf;)Lnet/minecraft/network/protocol/game/ServerboundInteractPacket$Action; +MD: net/minecraft/network/protocol/game/ServerboundInteractPacket$ActionType/valueOf (Ljava/lang/String;)Lnet/minecraft/network/protocol/game/ServerboundInteractPacket$ActionType; net/minecraft/network/protocol/game/ServerboundInteractPacket$ActionType/valueOf (Ljava/lang/String;)Lnet/minecraft/network/protocol/game/ServerboundInteractPacket$ActionType; +MD: net/minecraft/network/protocol/game/ServerboundInteractPacket$ActionType/values ()[Lnet/minecraft/network/protocol/game/ServerboundInteractPacket$ActionType; net/minecraft/network/protocol/game/ServerboundInteractPacket$ActionType/values ()[Lnet/minecraft/network/protocol/game/ServerboundInteractPacket$ActionType; +MD: net/minecraft/network/protocol/game/ServerboundInteractPacket$Handler/m_141994_ ()V net/minecraft/network/protocol/game/ServerboundInteractPacket$Handler/onAttack ()V +MD: net/minecraft/network/protocol/game/ServerboundInteractPacket$Handler/m_142143_ (Lnet/minecraft/world/InteractionHand;Lnet/minecraft/world/phys/Vec3;)V net/minecraft/network/protocol/game/ServerboundInteractPacket$Handler/onInteraction (Lnet/minecraft/world/InteractionHand;Lnet/minecraft/world/phys/Vec3;)V +MD: net/minecraft/network/protocol/game/ServerboundInteractPacket$Handler/m_142299_ (Lnet/minecraft/world/InteractionHand;)V net/minecraft/network/protocol/game/ServerboundInteractPacket$Handler/onInteraction (Lnet/minecraft/world/InteractionHand;)V +MD: net/minecraft/network/protocol/game/ServerboundInteractPacket$InteractionAction/ (Lnet/minecraft/world/InteractionHand;)V net/minecraft/network/protocol/game/ServerboundInteractPacket$InteractionAction/ (Lnet/minecraft/world/InteractionHand;)V +MD: net/minecraft/network/protocol/game/ServerboundInteractPacket$InteractionAction/ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ServerboundInteractPacket$InteractionAction/ (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ServerboundInteractPacket$InteractionAction/m_142249_ ()Lnet/minecraft/network/protocol/game/ServerboundInteractPacket$ActionType; net/minecraft/network/protocol/game/ServerboundInteractPacket$InteractionAction/getType ()Lnet/minecraft/network/protocol/game/ServerboundInteractPacket$ActionType; +MD: net/minecraft/network/protocol/game/ServerboundInteractPacket$InteractionAction/m_142450_ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ServerboundInteractPacket$InteractionAction/write (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ServerboundInteractPacket$InteractionAction/m_142457_ (Lnet/minecraft/network/protocol/game/ServerboundInteractPacket$Handler;)V net/minecraft/network/protocol/game/ServerboundInteractPacket$InteractionAction/dispatch (Lnet/minecraft/network/protocol/game/ServerboundInteractPacket$Handler;)V +MD: net/minecraft/network/protocol/game/ServerboundInteractPacket$InteractionAtLocationAction/ (Lnet/minecraft/world/InteractionHand;Lnet/minecraft/world/phys/Vec3;)V net/minecraft/network/protocol/game/ServerboundInteractPacket$InteractionAtLocationAction/ (Lnet/minecraft/world/InteractionHand;Lnet/minecraft/world/phys/Vec3;)V +MD: net/minecraft/network/protocol/game/ServerboundInteractPacket$InteractionAtLocationAction/ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ServerboundInteractPacket$InteractionAtLocationAction/ (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ServerboundInteractPacket$InteractionAtLocationAction/m_142249_ ()Lnet/minecraft/network/protocol/game/ServerboundInteractPacket$ActionType; net/minecraft/network/protocol/game/ServerboundInteractPacket$InteractionAtLocationAction/getType ()Lnet/minecraft/network/protocol/game/ServerboundInteractPacket$ActionType; +MD: net/minecraft/network/protocol/game/ServerboundInteractPacket$InteractionAtLocationAction/m_142450_ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ServerboundInteractPacket$InteractionAtLocationAction/write (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ServerboundInteractPacket$InteractionAtLocationAction/m_142457_ (Lnet/minecraft/network/protocol/game/ServerboundInteractPacket$Handler;)V net/minecraft/network/protocol/game/ServerboundInteractPacket$InteractionAtLocationAction/dispatch (Lnet/minecraft/network/protocol/game/ServerboundInteractPacket$Handler;)V +MD: net/minecraft/network/protocol/game/ServerboundJigsawGeneratePacket/ (Lnet/minecraft/core/BlockPos;IZ)V net/minecraft/network/protocol/game/ServerboundJigsawGeneratePacket/ (Lnet/minecraft/core/BlockPos;IZ)V +MD: net/minecraft/network/protocol/game/ServerboundJigsawGeneratePacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ServerboundJigsawGeneratePacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ServerboundJigsawGeneratePacket/m_134087_ ()Lnet/minecraft/core/BlockPos; net/minecraft/network/protocol/game/ServerboundJigsawGeneratePacket/getPos ()Lnet/minecraft/core/BlockPos; +MD: net/minecraft/network/protocol/game/ServerboundJigsawGeneratePacket/m_134090_ ()I net/minecraft/network/protocol/game/ServerboundJigsawGeneratePacket/levels ()I +MD: net/minecraft/network/protocol/game/ServerboundJigsawGeneratePacket/m_134091_ ()Z net/minecraft/network/protocol/game/ServerboundJigsawGeneratePacket/keepJigsaws ()Z +MD: net/minecraft/network/protocol/game/ServerboundJigsawGeneratePacket/m_5779_ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ServerboundJigsawGeneratePacket/write (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ServerboundJigsawGeneratePacket/m_5797_ (Lnet/minecraft/network/PacketListener;)V net/minecraft/network/protocol/game/ServerboundJigsawGeneratePacket/handle (Lnet/minecraft/network/PacketListener;)V +MD: net/minecraft/network/protocol/game/ServerboundJigsawGeneratePacket/m_5797_ (Lnet/minecraft/network/protocol/game/ServerGamePacketListener;)V net/minecraft/network/protocol/game/ServerboundJigsawGeneratePacket/handle (Lnet/minecraft/network/protocol/game/ServerGamePacketListener;)V +MD: net/minecraft/network/protocol/game/ServerboundKeepAlivePacket/ (J)V net/minecraft/network/protocol/game/ServerboundKeepAlivePacket/ (J)V +MD: net/minecraft/network/protocol/game/ServerboundKeepAlivePacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ServerboundKeepAlivePacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ServerboundKeepAlivePacket/m_134102_ ()J net/minecraft/network/protocol/game/ServerboundKeepAlivePacket/getId ()J +MD: net/minecraft/network/protocol/game/ServerboundKeepAlivePacket/m_5779_ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ServerboundKeepAlivePacket/write (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ServerboundKeepAlivePacket/m_5797_ (Lnet/minecraft/network/PacketListener;)V net/minecraft/network/protocol/game/ServerboundKeepAlivePacket/handle (Lnet/minecraft/network/PacketListener;)V +MD: net/minecraft/network/protocol/game/ServerboundKeepAlivePacket/m_5797_ (Lnet/minecraft/network/protocol/game/ServerGamePacketListener;)V net/minecraft/network/protocol/game/ServerboundKeepAlivePacket/handle (Lnet/minecraft/network/protocol/game/ServerGamePacketListener;)V +MD: net/minecraft/network/protocol/game/ServerboundLockDifficultyPacket/ (Z)V net/minecraft/network/protocol/game/ServerboundLockDifficultyPacket/ (Z)V +MD: net/minecraft/network/protocol/game/ServerboundLockDifficultyPacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ServerboundLockDifficultyPacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ServerboundLockDifficultyPacket/m_134115_ ()Z net/minecraft/network/protocol/game/ServerboundLockDifficultyPacket/isLocked ()Z +MD: net/minecraft/network/protocol/game/ServerboundLockDifficultyPacket/m_5779_ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ServerboundLockDifficultyPacket/write (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ServerboundLockDifficultyPacket/m_5797_ (Lnet/minecraft/network/PacketListener;)V net/minecraft/network/protocol/game/ServerboundLockDifficultyPacket/handle (Lnet/minecraft/network/PacketListener;)V +MD: net/minecraft/network/protocol/game/ServerboundLockDifficultyPacket/m_5797_ (Lnet/minecraft/network/protocol/game/ServerGamePacketListener;)V net/minecraft/network/protocol/game/ServerboundLockDifficultyPacket/handle (Lnet/minecraft/network/protocol/game/ServerGamePacketListener;)V +MD: net/minecraft/network/protocol/game/ServerboundMovePlayerPacket/ (DDDFFZZZ)V net/minecraft/network/protocol/game/ServerboundMovePlayerPacket/ (DDDFFZZZ)V +MD: net/minecraft/network/protocol/game/ServerboundMovePlayerPacket/m_134129_ (D)D net/minecraft/network/protocol/game/ServerboundMovePlayerPacket/getX (D)D +MD: net/minecraft/network/protocol/game/ServerboundMovePlayerPacket/m_134131_ (F)F net/minecraft/network/protocol/game/ServerboundMovePlayerPacket/getYRot (F)F +MD: net/minecraft/network/protocol/game/ServerboundMovePlayerPacket/m_134139_ ()Z net/minecraft/network/protocol/game/ServerboundMovePlayerPacket/isOnGround ()Z +MD: net/minecraft/network/protocol/game/ServerboundMovePlayerPacket/m_134140_ (D)D net/minecraft/network/protocol/game/ServerboundMovePlayerPacket/getY (D)D +MD: net/minecraft/network/protocol/game/ServerboundMovePlayerPacket/m_134142_ (F)F net/minecraft/network/protocol/game/ServerboundMovePlayerPacket/getXRot (F)F +MD: net/minecraft/network/protocol/game/ServerboundMovePlayerPacket/m_134146_ (D)D net/minecraft/network/protocol/game/ServerboundMovePlayerPacket/getZ (D)D +MD: net/minecraft/network/protocol/game/ServerboundMovePlayerPacket/m_179683_ ()Z net/minecraft/network/protocol/game/ServerboundMovePlayerPacket/hasPosition ()Z +MD: net/minecraft/network/protocol/game/ServerboundMovePlayerPacket/m_179684_ ()Z net/minecraft/network/protocol/game/ServerboundMovePlayerPacket/hasRotation ()Z +MD: net/minecraft/network/protocol/game/ServerboundMovePlayerPacket/m_5797_ (Lnet/minecraft/network/PacketListener;)V net/minecraft/network/protocol/game/ServerboundMovePlayerPacket/handle (Lnet/minecraft/network/PacketListener;)V +MD: net/minecraft/network/protocol/game/ServerboundMovePlayerPacket/m_5797_ (Lnet/minecraft/network/protocol/game/ServerGamePacketListener;)V net/minecraft/network/protocol/game/ServerboundMovePlayerPacket/handle (Lnet/minecraft/network/protocol/game/ServerGamePacketListener;)V +MD: net/minecraft/network/protocol/game/ServerboundMovePlayerPacket$Pos/ (DDDZ)V net/minecraft/network/protocol/game/ServerboundMovePlayerPacket$Pos/ (DDDZ)V +MD: net/minecraft/network/protocol/game/ServerboundMovePlayerPacket$Pos/m_179685_ (Lnet/minecraft/network/FriendlyByteBuf;)Lnet/minecraft/network/protocol/game/ServerboundMovePlayerPacket$Pos; net/minecraft/network/protocol/game/ServerboundMovePlayerPacket$Pos/read (Lnet/minecraft/network/FriendlyByteBuf;)Lnet/minecraft/network/protocol/game/ServerboundMovePlayerPacket$Pos; +MD: net/minecraft/network/protocol/game/ServerboundMovePlayerPacket$Pos/m_5779_ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ServerboundMovePlayerPacket$Pos/write (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ServerboundMovePlayerPacket$Pos/m_5797_ (Lnet/minecraft/network/PacketListener;)V net/minecraft/network/protocol/game/ServerboundMovePlayerPacket$Pos/handle (Lnet/minecraft/network/PacketListener;)V +MD: net/minecraft/network/protocol/game/ServerboundMovePlayerPacket$PosRot/ (DDDFFZ)V net/minecraft/network/protocol/game/ServerboundMovePlayerPacket$PosRot/ (DDDFFZ)V +MD: net/minecraft/network/protocol/game/ServerboundMovePlayerPacket$PosRot/m_179687_ (Lnet/minecraft/network/FriendlyByteBuf;)Lnet/minecraft/network/protocol/game/ServerboundMovePlayerPacket$PosRot; net/minecraft/network/protocol/game/ServerboundMovePlayerPacket$PosRot/read (Lnet/minecraft/network/FriendlyByteBuf;)Lnet/minecraft/network/protocol/game/ServerboundMovePlayerPacket$PosRot; +MD: net/minecraft/network/protocol/game/ServerboundMovePlayerPacket$PosRot/m_5779_ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ServerboundMovePlayerPacket$PosRot/write (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ServerboundMovePlayerPacket$PosRot/m_5797_ (Lnet/minecraft/network/PacketListener;)V net/minecraft/network/protocol/game/ServerboundMovePlayerPacket$PosRot/handle (Lnet/minecraft/network/PacketListener;)V +MD: net/minecraft/network/protocol/game/ServerboundMovePlayerPacket$Rot/ (FFZ)V net/minecraft/network/protocol/game/ServerboundMovePlayerPacket$Rot/ (FFZ)V +MD: net/minecraft/network/protocol/game/ServerboundMovePlayerPacket$Rot/m_179689_ (Lnet/minecraft/network/FriendlyByteBuf;)Lnet/minecraft/network/protocol/game/ServerboundMovePlayerPacket$Rot; net/minecraft/network/protocol/game/ServerboundMovePlayerPacket$Rot/read (Lnet/minecraft/network/FriendlyByteBuf;)Lnet/minecraft/network/protocol/game/ServerboundMovePlayerPacket$Rot; +MD: net/minecraft/network/protocol/game/ServerboundMovePlayerPacket$Rot/m_5779_ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ServerboundMovePlayerPacket$Rot/write (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ServerboundMovePlayerPacket$Rot/m_5797_ (Lnet/minecraft/network/PacketListener;)V net/minecraft/network/protocol/game/ServerboundMovePlayerPacket$Rot/handle (Lnet/minecraft/network/PacketListener;)V +MD: net/minecraft/network/protocol/game/ServerboundMovePlayerPacket$StatusOnly/ (Z)V net/minecraft/network/protocol/game/ServerboundMovePlayerPacket$StatusOnly/ (Z)V +MD: net/minecraft/network/protocol/game/ServerboundMovePlayerPacket$StatusOnly/m_179697_ (Lnet/minecraft/network/FriendlyByteBuf;)Lnet/minecraft/network/protocol/game/ServerboundMovePlayerPacket$StatusOnly; net/minecraft/network/protocol/game/ServerboundMovePlayerPacket$StatusOnly/read (Lnet/minecraft/network/FriendlyByteBuf;)Lnet/minecraft/network/protocol/game/ServerboundMovePlayerPacket$StatusOnly; +MD: net/minecraft/network/protocol/game/ServerboundMovePlayerPacket$StatusOnly/m_5779_ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ServerboundMovePlayerPacket$StatusOnly/write (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ServerboundMovePlayerPacket$StatusOnly/m_5797_ (Lnet/minecraft/network/PacketListener;)V net/minecraft/network/protocol/game/ServerboundMovePlayerPacket$StatusOnly/handle (Lnet/minecraft/network/PacketListener;)V +MD: net/minecraft/network/protocol/game/ServerboundMoveVehiclePacket/ (Lnet/minecraft/world/entity/Entity;)V net/minecraft/network/protocol/game/ServerboundMoveVehiclePacket/ (Lnet/minecraft/world/entity/Entity;)V +MD: net/minecraft/network/protocol/game/ServerboundMoveVehiclePacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ServerboundMoveVehiclePacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ServerboundMoveVehiclePacket/m_134199_ ()D net/minecraft/network/protocol/game/ServerboundMoveVehiclePacket/getX ()D +MD: net/minecraft/network/protocol/game/ServerboundMoveVehiclePacket/m_134202_ ()D net/minecraft/network/protocol/game/ServerboundMoveVehiclePacket/getY ()D +MD: net/minecraft/network/protocol/game/ServerboundMoveVehiclePacket/m_134203_ ()D net/minecraft/network/protocol/game/ServerboundMoveVehiclePacket/getZ ()D +MD: net/minecraft/network/protocol/game/ServerboundMoveVehiclePacket/m_134204_ ()F net/minecraft/network/protocol/game/ServerboundMoveVehiclePacket/getYRot ()F +MD: net/minecraft/network/protocol/game/ServerboundMoveVehiclePacket/m_134205_ ()F net/minecraft/network/protocol/game/ServerboundMoveVehiclePacket/getXRot ()F +MD: net/minecraft/network/protocol/game/ServerboundMoveVehiclePacket/m_5779_ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ServerboundMoveVehiclePacket/write (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ServerboundMoveVehiclePacket/m_5797_ (Lnet/minecraft/network/PacketListener;)V net/minecraft/network/protocol/game/ServerboundMoveVehiclePacket/handle (Lnet/minecraft/network/PacketListener;)V +MD: net/minecraft/network/protocol/game/ServerboundMoveVehiclePacket/m_5797_ (Lnet/minecraft/network/protocol/game/ServerGamePacketListener;)V net/minecraft/network/protocol/game/ServerboundMoveVehiclePacket/handle (Lnet/minecraft/network/protocol/game/ServerGamePacketListener;)V +MD: net/minecraft/network/protocol/game/ServerboundPaddleBoatPacket/ (ZZ)V net/minecraft/network/protocol/game/ServerboundPaddleBoatPacket/ (ZZ)V +MD: net/minecraft/network/protocol/game/ServerboundPaddleBoatPacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ServerboundPaddleBoatPacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ServerboundPaddleBoatPacket/m_134218_ ()Z net/minecraft/network/protocol/game/ServerboundPaddleBoatPacket/getLeft ()Z +MD: net/minecraft/network/protocol/game/ServerboundPaddleBoatPacket/m_134221_ ()Z net/minecraft/network/protocol/game/ServerboundPaddleBoatPacket/getRight ()Z +MD: net/minecraft/network/protocol/game/ServerboundPaddleBoatPacket/m_5779_ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ServerboundPaddleBoatPacket/write (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ServerboundPaddleBoatPacket/m_5797_ (Lnet/minecraft/network/PacketListener;)V net/minecraft/network/protocol/game/ServerboundPaddleBoatPacket/handle (Lnet/minecraft/network/PacketListener;)V +MD: net/minecraft/network/protocol/game/ServerboundPaddleBoatPacket/m_5797_ (Lnet/minecraft/network/protocol/game/ServerGamePacketListener;)V net/minecraft/network/protocol/game/ServerboundPaddleBoatPacket/handle (Lnet/minecraft/network/protocol/game/ServerGamePacketListener;)V +MD: net/minecraft/network/protocol/game/ServerboundPickItemPacket/ (I)V net/minecraft/network/protocol/game/ServerboundPickItemPacket/ (I)V +MD: net/minecraft/network/protocol/game/ServerboundPickItemPacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ServerboundPickItemPacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ServerboundPickItemPacket/m_134232_ ()I net/minecraft/network/protocol/game/ServerboundPickItemPacket/getSlot ()I +MD: net/minecraft/network/protocol/game/ServerboundPickItemPacket/m_5779_ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ServerboundPickItemPacket/write (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ServerboundPickItemPacket/m_5797_ (Lnet/minecraft/network/PacketListener;)V net/minecraft/network/protocol/game/ServerboundPickItemPacket/handle (Lnet/minecraft/network/PacketListener;)V +MD: net/minecraft/network/protocol/game/ServerboundPickItemPacket/m_5797_ (Lnet/minecraft/network/protocol/game/ServerGamePacketListener;)V net/minecraft/network/protocol/game/ServerboundPickItemPacket/handle (Lnet/minecraft/network/protocol/game/ServerGamePacketListener;)V +MD: net/minecraft/network/protocol/game/ServerboundPlaceRecipePacket/ (ILnet/minecraft/world/item/crafting/Recipe;Z)V net/minecraft/network/protocol/game/ServerboundPlaceRecipePacket/ (ILnet/minecraft/world/item/crafting/Recipe;Z)V +MD: net/minecraft/network/protocol/game/ServerboundPlaceRecipePacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ServerboundPlaceRecipePacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ServerboundPlaceRecipePacket/m_134249_ ()I net/minecraft/network/protocol/game/ServerboundPlaceRecipePacket/getContainerId ()I +MD: net/minecraft/network/protocol/game/ServerboundPlaceRecipePacket/m_134252_ ()Lnet/minecraft/resources/ResourceLocation; net/minecraft/network/protocol/game/ServerboundPlaceRecipePacket/getRecipe ()Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/network/protocol/game/ServerboundPlaceRecipePacket/m_134253_ ()Z net/minecraft/network/protocol/game/ServerboundPlaceRecipePacket/isShiftDown ()Z +MD: net/minecraft/network/protocol/game/ServerboundPlaceRecipePacket/m_5779_ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ServerboundPlaceRecipePacket/write (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ServerboundPlaceRecipePacket/m_5797_ (Lnet/minecraft/network/PacketListener;)V net/minecraft/network/protocol/game/ServerboundPlaceRecipePacket/handle (Lnet/minecraft/network/PacketListener;)V +MD: net/minecraft/network/protocol/game/ServerboundPlaceRecipePacket/m_5797_ (Lnet/minecraft/network/protocol/game/ServerGamePacketListener;)V net/minecraft/network/protocol/game/ServerboundPlaceRecipePacket/handle (Lnet/minecraft/network/protocol/game/ServerGamePacketListener;)V +MD: net/minecraft/network/protocol/game/ServerboundPlayerAbilitiesPacket/ (Lnet/minecraft/world/entity/player/Abilities;)V net/minecraft/network/protocol/game/ServerboundPlayerAbilitiesPacket/ (Lnet/minecraft/world/entity/player/Abilities;)V +MD: net/minecraft/network/protocol/game/ServerboundPlayerAbilitiesPacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ServerboundPlayerAbilitiesPacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ServerboundPlayerAbilitiesPacket/m_134264_ ()Z net/minecraft/network/protocol/game/ServerboundPlayerAbilitiesPacket/isFlying ()Z +MD: net/minecraft/network/protocol/game/ServerboundPlayerAbilitiesPacket/m_5779_ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ServerboundPlayerAbilitiesPacket/write (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ServerboundPlayerAbilitiesPacket/m_5797_ (Lnet/minecraft/network/PacketListener;)V net/minecraft/network/protocol/game/ServerboundPlayerAbilitiesPacket/handle (Lnet/minecraft/network/PacketListener;)V +MD: net/minecraft/network/protocol/game/ServerboundPlayerAbilitiesPacket/m_5797_ (Lnet/minecraft/network/protocol/game/ServerGamePacketListener;)V net/minecraft/network/protocol/game/ServerboundPlayerAbilitiesPacket/handle (Lnet/minecraft/network/protocol/game/ServerGamePacketListener;)V +MD: net/minecraft/network/protocol/game/ServerboundPlayerActionPacket/ (Lnet/minecraft/network/protocol/game/ServerboundPlayerActionPacket$Action;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Direction;I)V net/minecraft/network/protocol/game/ServerboundPlayerActionPacket/ (Lnet/minecraft/network/protocol/game/ServerboundPlayerActionPacket$Action;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Direction;I)V +MD: net/minecraft/network/protocol/game/ServerboundPlayerActionPacket/ (Lnet/minecraft/network/protocol/game/ServerboundPlayerActionPacket$Action;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Direction;)V net/minecraft/network/protocol/game/ServerboundPlayerActionPacket/ (Lnet/minecraft/network/protocol/game/ServerboundPlayerActionPacket$Action;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Direction;)V +MD: net/minecraft/network/protocol/game/ServerboundPlayerActionPacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ServerboundPlayerActionPacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ServerboundPlayerActionPacket/m_134281_ ()Lnet/minecraft/core/BlockPos; net/minecraft/network/protocol/game/ServerboundPlayerActionPacket/getPos ()Lnet/minecraft/core/BlockPos; +MD: net/minecraft/network/protocol/game/ServerboundPlayerActionPacket/m_134284_ ()Lnet/minecraft/core/Direction; net/minecraft/network/protocol/game/ServerboundPlayerActionPacket/getDirection ()Lnet/minecraft/core/Direction; +MD: net/minecraft/network/protocol/game/ServerboundPlayerActionPacket/m_134285_ ()Lnet/minecraft/network/protocol/game/ServerboundPlayerActionPacket$Action; net/minecraft/network/protocol/game/ServerboundPlayerActionPacket/getAction ()Lnet/minecraft/network/protocol/game/ServerboundPlayerActionPacket$Action; +MD: net/minecraft/network/protocol/game/ServerboundPlayerActionPacket/m_237987_ ()I net/minecraft/network/protocol/game/ServerboundPlayerActionPacket/getSequence ()I +MD: net/minecraft/network/protocol/game/ServerboundPlayerActionPacket/m_5779_ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ServerboundPlayerActionPacket/write (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ServerboundPlayerActionPacket/m_5797_ (Lnet/minecraft/network/PacketListener;)V net/minecraft/network/protocol/game/ServerboundPlayerActionPacket/handle (Lnet/minecraft/network/PacketListener;)V +MD: net/minecraft/network/protocol/game/ServerboundPlayerActionPacket/m_5797_ (Lnet/minecraft/network/protocol/game/ServerGamePacketListener;)V net/minecraft/network/protocol/game/ServerboundPlayerActionPacket/handle (Lnet/minecraft/network/protocol/game/ServerGamePacketListener;)V +MD: net/minecraft/network/protocol/game/ServerboundPlayerActionPacket$Action/ ()V net/minecraft/network/protocol/game/ServerboundPlayerActionPacket$Action/ ()V +MD: net/minecraft/network/protocol/game/ServerboundPlayerActionPacket$Action/ (Ljava/lang/String;I)V net/minecraft/network/protocol/game/ServerboundPlayerActionPacket$Action/ (Ljava/lang/String;I)V +MD: net/minecraft/network/protocol/game/ServerboundPlayerActionPacket$Action/m_179712_ ()[Lnet/minecraft/network/protocol/game/ServerboundPlayerActionPacket$Action; net/minecraft/network/protocol/game/ServerboundPlayerActionPacket$Action/$values ()[Lnet/minecraft/network/protocol/game/ServerboundPlayerActionPacket$Action; +MD: net/minecraft/network/protocol/game/ServerboundPlayerActionPacket$Action/valueOf (Ljava/lang/String;)Lnet/minecraft/network/protocol/game/ServerboundPlayerActionPacket$Action; net/minecraft/network/protocol/game/ServerboundPlayerActionPacket$Action/valueOf (Ljava/lang/String;)Lnet/minecraft/network/protocol/game/ServerboundPlayerActionPacket$Action; +MD: net/minecraft/network/protocol/game/ServerboundPlayerActionPacket$Action/values ()[Lnet/minecraft/network/protocol/game/ServerboundPlayerActionPacket$Action; net/minecraft/network/protocol/game/ServerboundPlayerActionPacket$Action/values ()[Lnet/minecraft/network/protocol/game/ServerboundPlayerActionPacket$Action; +MD: net/minecraft/network/protocol/game/ServerboundPlayerCommandPacket/ (Lnet/minecraft/world/entity/Entity;Lnet/minecraft/network/protocol/game/ServerboundPlayerCommandPacket$Action;I)V net/minecraft/network/protocol/game/ServerboundPlayerCommandPacket/ (Lnet/minecraft/world/entity/Entity;Lnet/minecraft/network/protocol/game/ServerboundPlayerCommandPacket$Action;I)V +MD: net/minecraft/network/protocol/game/ServerboundPlayerCommandPacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ServerboundPlayerCommandPacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ServerboundPlayerCommandPacket/ (Lnet/minecraft/world/entity/Entity;Lnet/minecraft/network/protocol/game/ServerboundPlayerCommandPacket$Action;)V net/minecraft/network/protocol/game/ServerboundPlayerCommandPacket/ (Lnet/minecraft/world/entity/Entity;Lnet/minecraft/network/protocol/game/ServerboundPlayerCommandPacket$Action;)V +MD: net/minecraft/network/protocol/game/ServerboundPlayerCommandPacket/m_134320_ ()Lnet/minecraft/network/protocol/game/ServerboundPlayerCommandPacket$Action; net/minecraft/network/protocol/game/ServerboundPlayerCommandPacket/getAction ()Lnet/minecraft/network/protocol/game/ServerboundPlayerCommandPacket$Action; +MD: net/minecraft/network/protocol/game/ServerboundPlayerCommandPacket/m_134321_ ()I net/minecraft/network/protocol/game/ServerboundPlayerCommandPacket/getData ()I +MD: net/minecraft/network/protocol/game/ServerboundPlayerCommandPacket/m_179715_ ()I net/minecraft/network/protocol/game/ServerboundPlayerCommandPacket/getId ()I +MD: net/minecraft/network/protocol/game/ServerboundPlayerCommandPacket/m_5779_ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ServerboundPlayerCommandPacket/write (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ServerboundPlayerCommandPacket/m_5797_ (Lnet/minecraft/network/PacketListener;)V net/minecraft/network/protocol/game/ServerboundPlayerCommandPacket/handle (Lnet/minecraft/network/PacketListener;)V +MD: net/minecraft/network/protocol/game/ServerboundPlayerCommandPacket/m_5797_ (Lnet/minecraft/network/protocol/game/ServerGamePacketListener;)V net/minecraft/network/protocol/game/ServerboundPlayerCommandPacket/handle (Lnet/minecraft/network/protocol/game/ServerGamePacketListener;)V +MD: net/minecraft/network/protocol/game/ServerboundPlayerCommandPacket$Action/ ()V net/minecraft/network/protocol/game/ServerboundPlayerCommandPacket$Action/ ()V +MD: net/minecraft/network/protocol/game/ServerboundPlayerCommandPacket$Action/ (Ljava/lang/String;I)V net/minecraft/network/protocol/game/ServerboundPlayerCommandPacket$Action/ (Ljava/lang/String;I)V +MD: net/minecraft/network/protocol/game/ServerboundPlayerCommandPacket$Action/m_179716_ ()[Lnet/minecraft/network/protocol/game/ServerboundPlayerCommandPacket$Action; net/minecraft/network/protocol/game/ServerboundPlayerCommandPacket$Action/$values ()[Lnet/minecraft/network/protocol/game/ServerboundPlayerCommandPacket$Action; +MD: net/minecraft/network/protocol/game/ServerboundPlayerCommandPacket$Action/valueOf (Ljava/lang/String;)Lnet/minecraft/network/protocol/game/ServerboundPlayerCommandPacket$Action; net/minecraft/network/protocol/game/ServerboundPlayerCommandPacket$Action/valueOf (Ljava/lang/String;)Lnet/minecraft/network/protocol/game/ServerboundPlayerCommandPacket$Action; +MD: net/minecraft/network/protocol/game/ServerboundPlayerCommandPacket$Action/values ()[Lnet/minecraft/network/protocol/game/ServerboundPlayerCommandPacket$Action; net/minecraft/network/protocol/game/ServerboundPlayerCommandPacket$Action/values ()[Lnet/minecraft/network/protocol/game/ServerboundPlayerCommandPacket$Action; +MD: net/minecraft/network/protocol/game/ServerboundPlayerInputPacket/ (FFZZ)V net/minecraft/network/protocol/game/ServerboundPlayerInputPacket/ (FFZZ)V +MD: net/minecraft/network/protocol/game/ServerboundPlayerInputPacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ServerboundPlayerInputPacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ServerboundPlayerInputPacket/m_134355_ ()F net/minecraft/network/protocol/game/ServerboundPlayerInputPacket/getXxa ()F +MD: net/minecraft/network/protocol/game/ServerboundPlayerInputPacket/m_134358_ ()F net/minecraft/network/protocol/game/ServerboundPlayerInputPacket/getZza ()F +MD: net/minecraft/network/protocol/game/ServerboundPlayerInputPacket/m_134359_ ()Z net/minecraft/network/protocol/game/ServerboundPlayerInputPacket/isJumping ()Z +MD: net/minecraft/network/protocol/game/ServerboundPlayerInputPacket/m_134360_ ()Z net/minecraft/network/protocol/game/ServerboundPlayerInputPacket/isShiftKeyDown ()Z +MD: net/minecraft/network/protocol/game/ServerboundPlayerInputPacket/m_5779_ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ServerboundPlayerInputPacket/write (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ServerboundPlayerInputPacket/m_5797_ (Lnet/minecraft/network/PacketListener;)V net/minecraft/network/protocol/game/ServerboundPlayerInputPacket/handle (Lnet/minecraft/network/PacketListener;)V +MD: net/minecraft/network/protocol/game/ServerboundPlayerInputPacket/m_5797_ (Lnet/minecraft/network/protocol/game/ServerGamePacketListener;)V net/minecraft/network/protocol/game/ServerboundPlayerInputPacket/handle (Lnet/minecraft/network/protocol/game/ServerGamePacketListener;)V +MD: net/minecraft/network/protocol/game/ServerboundPongPacket/ (I)V net/minecraft/network/protocol/game/ServerboundPongPacket/ (I)V +MD: net/minecraft/network/protocol/game/ServerboundPongPacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ServerboundPongPacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ServerboundPongPacket/m_179732_ ()I net/minecraft/network/protocol/game/ServerboundPongPacket/getId ()I +MD: net/minecraft/network/protocol/game/ServerboundPongPacket/m_5779_ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ServerboundPongPacket/write (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ServerboundPongPacket/m_5797_ (Lnet/minecraft/network/PacketListener;)V net/minecraft/network/protocol/game/ServerboundPongPacket/handle (Lnet/minecraft/network/PacketListener;)V +MD: net/minecraft/network/protocol/game/ServerboundPongPacket/m_5797_ (Lnet/minecraft/network/protocol/game/ServerGamePacketListener;)V net/minecraft/network/protocol/game/ServerboundPongPacket/handle (Lnet/minecraft/network/protocol/game/ServerGamePacketListener;)V +MD: net/minecraft/network/protocol/game/ServerboundRecipeBookChangeSettingsPacket/ (Lnet/minecraft/world/inventory/RecipeBookType;ZZ)V net/minecraft/network/protocol/game/ServerboundRecipeBookChangeSettingsPacket/ (Lnet/minecraft/world/inventory/RecipeBookType;ZZ)V +MD: net/minecraft/network/protocol/game/ServerboundRecipeBookChangeSettingsPacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ServerboundRecipeBookChangeSettingsPacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ServerboundRecipeBookChangeSettingsPacket/m_134375_ ()Lnet/minecraft/world/inventory/RecipeBookType; net/minecraft/network/protocol/game/ServerboundRecipeBookChangeSettingsPacket/getBookType ()Lnet/minecraft/world/inventory/RecipeBookType; +MD: net/minecraft/network/protocol/game/ServerboundRecipeBookChangeSettingsPacket/m_134378_ ()Z net/minecraft/network/protocol/game/ServerboundRecipeBookChangeSettingsPacket/isOpen ()Z +MD: net/minecraft/network/protocol/game/ServerboundRecipeBookChangeSettingsPacket/m_134379_ ()Z net/minecraft/network/protocol/game/ServerboundRecipeBookChangeSettingsPacket/isFiltering ()Z +MD: net/minecraft/network/protocol/game/ServerboundRecipeBookChangeSettingsPacket/m_5779_ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ServerboundRecipeBookChangeSettingsPacket/write (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ServerboundRecipeBookChangeSettingsPacket/m_5797_ (Lnet/minecraft/network/PacketListener;)V net/minecraft/network/protocol/game/ServerboundRecipeBookChangeSettingsPacket/handle (Lnet/minecraft/network/PacketListener;)V +MD: net/minecraft/network/protocol/game/ServerboundRecipeBookChangeSettingsPacket/m_5797_ (Lnet/minecraft/network/protocol/game/ServerGamePacketListener;)V net/minecraft/network/protocol/game/ServerboundRecipeBookChangeSettingsPacket/handle (Lnet/minecraft/network/protocol/game/ServerGamePacketListener;)V +MD: net/minecraft/network/protocol/game/ServerboundRecipeBookSeenRecipePacket/ (Lnet/minecraft/world/item/crafting/Recipe;)V net/minecraft/network/protocol/game/ServerboundRecipeBookSeenRecipePacket/ (Lnet/minecraft/world/item/crafting/Recipe;)V +MD: net/minecraft/network/protocol/game/ServerboundRecipeBookSeenRecipePacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ServerboundRecipeBookSeenRecipePacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ServerboundRecipeBookSeenRecipePacket/m_134390_ ()Lnet/minecraft/resources/ResourceLocation; net/minecraft/network/protocol/game/ServerboundRecipeBookSeenRecipePacket/getRecipe ()Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/network/protocol/game/ServerboundRecipeBookSeenRecipePacket/m_5779_ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ServerboundRecipeBookSeenRecipePacket/write (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ServerboundRecipeBookSeenRecipePacket/m_5797_ (Lnet/minecraft/network/PacketListener;)V net/minecraft/network/protocol/game/ServerboundRecipeBookSeenRecipePacket/handle (Lnet/minecraft/network/PacketListener;)V +MD: net/minecraft/network/protocol/game/ServerboundRecipeBookSeenRecipePacket/m_5797_ (Lnet/minecraft/network/protocol/game/ServerGamePacketListener;)V net/minecraft/network/protocol/game/ServerboundRecipeBookSeenRecipePacket/handle (Lnet/minecraft/network/protocol/game/ServerGamePacketListener;)V +MD: net/minecraft/network/protocol/game/ServerboundRenameItemPacket/ (Ljava/lang/String;)V net/minecraft/network/protocol/game/ServerboundRenameItemPacket/ (Ljava/lang/String;)V +MD: net/minecraft/network/protocol/game/ServerboundRenameItemPacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ServerboundRenameItemPacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ServerboundRenameItemPacket/m_134403_ ()Ljava/lang/String; net/minecraft/network/protocol/game/ServerboundRenameItemPacket/getName ()Ljava/lang/String; +MD: net/minecraft/network/protocol/game/ServerboundRenameItemPacket/m_5779_ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ServerboundRenameItemPacket/write (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ServerboundRenameItemPacket/m_5797_ (Lnet/minecraft/network/PacketListener;)V net/minecraft/network/protocol/game/ServerboundRenameItemPacket/handle (Lnet/minecraft/network/PacketListener;)V +MD: net/minecraft/network/protocol/game/ServerboundRenameItemPacket/m_5797_ (Lnet/minecraft/network/protocol/game/ServerGamePacketListener;)V net/minecraft/network/protocol/game/ServerboundRenameItemPacket/handle (Lnet/minecraft/network/protocol/game/ServerGamePacketListener;)V +MD: net/minecraft/network/protocol/game/ServerboundResourcePackPacket/ (Lnet/minecraft/network/protocol/game/ServerboundResourcePackPacket$Action;)V net/minecraft/network/protocol/game/ServerboundResourcePackPacket/ (Lnet/minecraft/network/protocol/game/ServerboundResourcePackPacket$Action;)V +MD: net/minecraft/network/protocol/game/ServerboundResourcePackPacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ServerboundResourcePackPacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ServerboundResourcePackPacket/m_179741_ ()Lnet/minecraft/network/protocol/game/ServerboundResourcePackPacket$Action; net/minecraft/network/protocol/game/ServerboundResourcePackPacket/getAction ()Lnet/minecraft/network/protocol/game/ServerboundResourcePackPacket$Action; +MD: net/minecraft/network/protocol/game/ServerboundResourcePackPacket/m_5779_ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ServerboundResourcePackPacket/write (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ServerboundResourcePackPacket/m_5797_ (Lnet/minecraft/network/PacketListener;)V net/minecraft/network/protocol/game/ServerboundResourcePackPacket/handle (Lnet/minecraft/network/PacketListener;)V +MD: net/minecraft/network/protocol/game/ServerboundResourcePackPacket/m_5797_ (Lnet/minecraft/network/protocol/game/ServerGamePacketListener;)V net/minecraft/network/protocol/game/ServerboundResourcePackPacket/handle (Lnet/minecraft/network/protocol/game/ServerGamePacketListener;)V +MD: net/minecraft/network/protocol/game/ServerboundResourcePackPacket$Action/ ()V net/minecraft/network/protocol/game/ServerboundResourcePackPacket$Action/ ()V +MD: net/minecraft/network/protocol/game/ServerboundResourcePackPacket$Action/ (Ljava/lang/String;I)V net/minecraft/network/protocol/game/ServerboundResourcePackPacket$Action/ (Ljava/lang/String;I)V +MD: net/minecraft/network/protocol/game/ServerboundResourcePackPacket$Action/m_179742_ ()[Lnet/minecraft/network/protocol/game/ServerboundResourcePackPacket$Action; net/minecraft/network/protocol/game/ServerboundResourcePackPacket$Action/$values ()[Lnet/minecraft/network/protocol/game/ServerboundResourcePackPacket$Action; +MD: net/minecraft/network/protocol/game/ServerboundResourcePackPacket$Action/valueOf (Ljava/lang/String;)Lnet/minecraft/network/protocol/game/ServerboundResourcePackPacket$Action; net/minecraft/network/protocol/game/ServerboundResourcePackPacket$Action/valueOf (Ljava/lang/String;)Lnet/minecraft/network/protocol/game/ServerboundResourcePackPacket$Action; +MD: net/minecraft/network/protocol/game/ServerboundResourcePackPacket$Action/values ()[Lnet/minecraft/network/protocol/game/ServerboundResourcePackPacket$Action; net/minecraft/network/protocol/game/ServerboundResourcePackPacket$Action/values ()[Lnet/minecraft/network/protocol/game/ServerboundResourcePackPacket$Action; +MD: net/minecraft/network/protocol/game/ServerboundSeenAdvancementsPacket/ (Lnet/minecraft/network/protocol/game/ServerboundSeenAdvancementsPacket$Action;Lnet/minecraft/resources/ResourceLocation;)V net/minecraft/network/protocol/game/ServerboundSeenAdvancementsPacket/ (Lnet/minecraft/network/protocol/game/ServerboundSeenAdvancementsPacket$Action;Lnet/minecraft/resources/ResourceLocation;)V +MD: net/minecraft/network/protocol/game/ServerboundSeenAdvancementsPacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ServerboundSeenAdvancementsPacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ServerboundSeenAdvancementsPacket/m_134442_ (Lnet/minecraft/advancements/Advancement;)Lnet/minecraft/network/protocol/game/ServerboundSeenAdvancementsPacket; net/minecraft/network/protocol/game/ServerboundSeenAdvancementsPacket/openedTab (Lnet/minecraft/advancements/Advancement;)Lnet/minecraft/network/protocol/game/ServerboundSeenAdvancementsPacket; +MD: net/minecraft/network/protocol/game/ServerboundSeenAdvancementsPacket/m_134444_ ()Lnet/minecraft/network/protocol/game/ServerboundSeenAdvancementsPacket; net/minecraft/network/protocol/game/ServerboundSeenAdvancementsPacket/closedScreen ()Lnet/minecraft/network/protocol/game/ServerboundSeenAdvancementsPacket; +MD: net/minecraft/network/protocol/game/ServerboundSeenAdvancementsPacket/m_134447_ ()Lnet/minecraft/network/protocol/game/ServerboundSeenAdvancementsPacket$Action; net/minecraft/network/protocol/game/ServerboundSeenAdvancementsPacket/getAction ()Lnet/minecraft/network/protocol/game/ServerboundSeenAdvancementsPacket$Action; +MD: net/minecraft/network/protocol/game/ServerboundSeenAdvancementsPacket/m_134448_ ()Lnet/minecraft/resources/ResourceLocation; net/minecraft/network/protocol/game/ServerboundSeenAdvancementsPacket/getTab ()Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/network/protocol/game/ServerboundSeenAdvancementsPacket/m_5779_ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ServerboundSeenAdvancementsPacket/write (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ServerboundSeenAdvancementsPacket/m_5797_ (Lnet/minecraft/network/PacketListener;)V net/minecraft/network/protocol/game/ServerboundSeenAdvancementsPacket/handle (Lnet/minecraft/network/PacketListener;)V +MD: net/minecraft/network/protocol/game/ServerboundSeenAdvancementsPacket/m_5797_ (Lnet/minecraft/network/protocol/game/ServerGamePacketListener;)V net/minecraft/network/protocol/game/ServerboundSeenAdvancementsPacket/handle (Lnet/minecraft/network/protocol/game/ServerGamePacketListener;)V +MD: net/minecraft/network/protocol/game/ServerboundSeenAdvancementsPacket$Action/ ()V net/minecraft/network/protocol/game/ServerboundSeenAdvancementsPacket$Action/ ()V +MD: net/minecraft/network/protocol/game/ServerboundSeenAdvancementsPacket$Action/ (Ljava/lang/String;I)V net/minecraft/network/protocol/game/ServerboundSeenAdvancementsPacket$Action/ (Ljava/lang/String;I)V +MD: net/minecraft/network/protocol/game/ServerboundSeenAdvancementsPacket$Action/m_179745_ ()[Lnet/minecraft/network/protocol/game/ServerboundSeenAdvancementsPacket$Action; net/minecraft/network/protocol/game/ServerboundSeenAdvancementsPacket$Action/$values ()[Lnet/minecraft/network/protocol/game/ServerboundSeenAdvancementsPacket$Action; +MD: net/minecraft/network/protocol/game/ServerboundSeenAdvancementsPacket$Action/valueOf (Ljava/lang/String;)Lnet/minecraft/network/protocol/game/ServerboundSeenAdvancementsPacket$Action; net/minecraft/network/protocol/game/ServerboundSeenAdvancementsPacket$Action/valueOf (Ljava/lang/String;)Lnet/minecraft/network/protocol/game/ServerboundSeenAdvancementsPacket$Action; +MD: net/minecraft/network/protocol/game/ServerboundSeenAdvancementsPacket$Action/values ()[Lnet/minecraft/network/protocol/game/ServerboundSeenAdvancementsPacket$Action; net/minecraft/network/protocol/game/ServerboundSeenAdvancementsPacket$Action/values ()[Lnet/minecraft/network/protocol/game/ServerboundSeenAdvancementsPacket$Action; +MD: net/minecraft/network/protocol/game/ServerboundSelectTradePacket/ (I)V net/minecraft/network/protocol/game/ServerboundSelectTradePacket/ (I)V +MD: net/minecraft/network/protocol/game/ServerboundSelectTradePacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ServerboundSelectTradePacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ServerboundSelectTradePacket/m_134469_ ()I net/minecraft/network/protocol/game/ServerboundSelectTradePacket/getItem ()I +MD: net/minecraft/network/protocol/game/ServerboundSelectTradePacket/m_5779_ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ServerboundSelectTradePacket/write (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ServerboundSelectTradePacket/m_5797_ (Lnet/minecraft/network/PacketListener;)V net/minecraft/network/protocol/game/ServerboundSelectTradePacket/handle (Lnet/minecraft/network/PacketListener;)V +MD: net/minecraft/network/protocol/game/ServerboundSelectTradePacket/m_5797_ (Lnet/minecraft/network/protocol/game/ServerGamePacketListener;)V net/minecraft/network/protocol/game/ServerboundSelectTradePacket/handle (Lnet/minecraft/network/protocol/game/ServerGamePacketListener;)V +MD: net/minecraft/network/protocol/game/ServerboundSetBeaconPacket/ (Ljava/util/Optional;Ljava/util/Optional;)V net/minecraft/network/protocol/game/ServerboundSetBeaconPacket/ (Ljava/util/Optional;Ljava/util/Optional;)V +MD: net/minecraft/network/protocol/game/ServerboundSetBeaconPacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ServerboundSetBeaconPacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ServerboundSetBeaconPacket/m_237994_ ()Ljava/util/Optional; net/minecraft/network/protocol/game/ServerboundSetBeaconPacket/getPrimary ()Ljava/util/Optional; +MD: net/minecraft/network/protocol/game/ServerboundSetBeaconPacket/m_238000_ ()Ljava/util/Optional; net/minecraft/network/protocol/game/ServerboundSetBeaconPacket/getSecondary ()Ljava/util/Optional; +MD: net/minecraft/network/protocol/game/ServerboundSetBeaconPacket/m_257126_ (Lnet/minecraft/network/FriendlyByteBuf;)Lnet/minecraft/world/effect/MobEffect; net/minecraft/network/protocol/game/ServerboundSetBeaconPacket/lambda$new$0 (Lnet/minecraft/network/FriendlyByteBuf;)Lnet/minecraft/world/effect/MobEffect; +MD: net/minecraft/network/protocol/game/ServerboundSetBeaconPacket/m_257127_ (Lnet/minecraft/network/FriendlyByteBuf;)Lnet/minecraft/world/effect/MobEffect; net/minecraft/network/protocol/game/ServerboundSetBeaconPacket/lambda$new$1 (Lnet/minecraft/network/FriendlyByteBuf;)Lnet/minecraft/world/effect/MobEffect; +MD: net/minecraft/network/protocol/game/ServerboundSetBeaconPacket/m_257128_ (Lnet/minecraft/network/FriendlyByteBuf;Lnet/minecraft/world/effect/MobEffect;)V net/minecraft/network/protocol/game/ServerboundSetBeaconPacket/lambda$write$2 (Lnet/minecraft/network/FriendlyByteBuf;Lnet/minecraft/world/effect/MobEffect;)V +MD: net/minecraft/network/protocol/game/ServerboundSetBeaconPacket/m_257129_ (Lnet/minecraft/network/FriendlyByteBuf;Lnet/minecraft/world/effect/MobEffect;)V net/minecraft/network/protocol/game/ServerboundSetBeaconPacket/lambda$write$3 (Lnet/minecraft/network/FriendlyByteBuf;Lnet/minecraft/world/effect/MobEffect;)V +MD: net/minecraft/network/protocol/game/ServerboundSetBeaconPacket/m_5779_ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ServerboundSetBeaconPacket/write (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ServerboundSetBeaconPacket/m_5797_ (Lnet/minecraft/network/PacketListener;)V net/minecraft/network/protocol/game/ServerboundSetBeaconPacket/handle (Lnet/minecraft/network/PacketListener;)V +MD: net/minecraft/network/protocol/game/ServerboundSetBeaconPacket/m_5797_ (Lnet/minecraft/network/protocol/game/ServerGamePacketListener;)V net/minecraft/network/protocol/game/ServerboundSetBeaconPacket/handle (Lnet/minecraft/network/protocol/game/ServerGamePacketListener;)V +MD: net/minecraft/network/protocol/game/ServerboundSetCarriedItemPacket/ (I)V net/minecraft/network/protocol/game/ServerboundSetCarriedItemPacket/ (I)V +MD: net/minecraft/network/protocol/game/ServerboundSetCarriedItemPacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ServerboundSetCarriedItemPacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ServerboundSetCarriedItemPacket/m_134498_ ()I net/minecraft/network/protocol/game/ServerboundSetCarriedItemPacket/getSlot ()I +MD: net/minecraft/network/protocol/game/ServerboundSetCarriedItemPacket/m_5779_ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ServerboundSetCarriedItemPacket/write (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ServerboundSetCarriedItemPacket/m_5797_ (Lnet/minecraft/network/PacketListener;)V net/minecraft/network/protocol/game/ServerboundSetCarriedItemPacket/handle (Lnet/minecraft/network/PacketListener;)V +MD: net/minecraft/network/protocol/game/ServerboundSetCarriedItemPacket/m_5797_ (Lnet/minecraft/network/protocol/game/ServerGamePacketListener;)V net/minecraft/network/protocol/game/ServerboundSetCarriedItemPacket/handle (Lnet/minecraft/network/protocol/game/ServerGamePacketListener;)V +MD: net/minecraft/network/protocol/game/ServerboundSetCommandBlockPacket/ (Lnet/minecraft/core/BlockPos;Ljava/lang/String;Lnet/minecraft/world/level/block/entity/CommandBlockEntity$Mode;ZZZ)V net/minecraft/network/protocol/game/ServerboundSetCommandBlockPacket/ (Lnet/minecraft/core/BlockPos;Ljava/lang/String;Lnet/minecraft/world/level/block/entity/CommandBlockEntity$Mode;ZZZ)V +MD: net/minecraft/network/protocol/game/ServerboundSetCommandBlockPacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ServerboundSetCommandBlockPacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ServerboundSetCommandBlockPacket/m_134521_ ()Lnet/minecraft/core/BlockPos; net/minecraft/network/protocol/game/ServerboundSetCommandBlockPacket/getPos ()Lnet/minecraft/core/BlockPos; +MD: net/minecraft/network/protocol/game/ServerboundSetCommandBlockPacket/m_134524_ ()Ljava/lang/String; net/minecraft/network/protocol/game/ServerboundSetCommandBlockPacket/getCommand ()Ljava/lang/String; +MD: net/minecraft/network/protocol/game/ServerboundSetCommandBlockPacket/m_134525_ ()Z net/minecraft/network/protocol/game/ServerboundSetCommandBlockPacket/isTrackOutput ()Z +MD: net/minecraft/network/protocol/game/ServerboundSetCommandBlockPacket/m_134526_ ()Z net/minecraft/network/protocol/game/ServerboundSetCommandBlockPacket/isConditional ()Z +MD: net/minecraft/network/protocol/game/ServerboundSetCommandBlockPacket/m_134527_ ()Z net/minecraft/network/protocol/game/ServerboundSetCommandBlockPacket/isAutomatic ()Z +MD: net/minecraft/network/protocol/game/ServerboundSetCommandBlockPacket/m_134528_ ()Lnet/minecraft/world/level/block/entity/CommandBlockEntity$Mode; net/minecraft/network/protocol/game/ServerboundSetCommandBlockPacket/getMode ()Lnet/minecraft/world/level/block/entity/CommandBlockEntity$Mode; +MD: net/minecraft/network/protocol/game/ServerboundSetCommandBlockPacket/m_5779_ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ServerboundSetCommandBlockPacket/write (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ServerboundSetCommandBlockPacket/m_5797_ (Lnet/minecraft/network/PacketListener;)V net/minecraft/network/protocol/game/ServerboundSetCommandBlockPacket/handle (Lnet/minecraft/network/PacketListener;)V +MD: net/minecraft/network/protocol/game/ServerboundSetCommandBlockPacket/m_5797_ (Lnet/minecraft/network/protocol/game/ServerGamePacketListener;)V net/minecraft/network/protocol/game/ServerboundSetCommandBlockPacket/handle (Lnet/minecraft/network/protocol/game/ServerGamePacketListener;)V +MD: net/minecraft/network/protocol/game/ServerboundSetCommandMinecartPacket/ (ILjava/lang/String;Z)V net/minecraft/network/protocol/game/ServerboundSetCommandMinecartPacket/ (ILjava/lang/String;Z)V +MD: net/minecraft/network/protocol/game/ServerboundSetCommandMinecartPacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ServerboundSetCommandMinecartPacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ServerboundSetCommandMinecartPacket/m_134537_ (Lnet/minecraft/world/level/Level;)Lnet/minecraft/world/level/BaseCommandBlock; net/minecraft/network/protocol/game/ServerboundSetCommandMinecartPacket/getCommandBlock (Lnet/minecraft/world/level/Level;)Lnet/minecraft/world/level/BaseCommandBlock; +MD: net/minecraft/network/protocol/game/ServerboundSetCommandMinecartPacket/m_134545_ ()Ljava/lang/String; net/minecraft/network/protocol/game/ServerboundSetCommandMinecartPacket/getCommand ()Ljava/lang/String; +MD: net/minecraft/network/protocol/game/ServerboundSetCommandMinecartPacket/m_134548_ ()Z net/minecraft/network/protocol/game/ServerboundSetCommandMinecartPacket/isTrackOutput ()Z +MD: net/minecraft/network/protocol/game/ServerboundSetCommandMinecartPacket/m_5779_ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ServerboundSetCommandMinecartPacket/write (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ServerboundSetCommandMinecartPacket/m_5797_ (Lnet/minecraft/network/PacketListener;)V net/minecraft/network/protocol/game/ServerboundSetCommandMinecartPacket/handle (Lnet/minecraft/network/PacketListener;)V +MD: net/minecraft/network/protocol/game/ServerboundSetCommandMinecartPacket/m_5797_ (Lnet/minecraft/network/protocol/game/ServerGamePacketListener;)V net/minecraft/network/protocol/game/ServerboundSetCommandMinecartPacket/handle (Lnet/minecraft/network/protocol/game/ServerGamePacketListener;)V +MD: net/minecraft/network/protocol/game/ServerboundSetCreativeModeSlotPacket/ (ILnet/minecraft/world/item/ItemStack;)V net/minecraft/network/protocol/game/ServerboundSetCreativeModeSlotPacket/ (ILnet/minecraft/world/item/ItemStack;)V +MD: net/minecraft/network/protocol/game/ServerboundSetCreativeModeSlotPacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ServerboundSetCreativeModeSlotPacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ServerboundSetCreativeModeSlotPacket/m_134561_ ()I net/minecraft/network/protocol/game/ServerboundSetCreativeModeSlotPacket/getSlotNum ()I +MD: net/minecraft/network/protocol/game/ServerboundSetCreativeModeSlotPacket/m_134564_ ()Lnet/minecraft/world/item/ItemStack; net/minecraft/network/protocol/game/ServerboundSetCreativeModeSlotPacket/getItem ()Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/network/protocol/game/ServerboundSetCreativeModeSlotPacket/m_5779_ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ServerboundSetCreativeModeSlotPacket/write (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ServerboundSetCreativeModeSlotPacket/m_5797_ (Lnet/minecraft/network/PacketListener;)V net/minecraft/network/protocol/game/ServerboundSetCreativeModeSlotPacket/handle (Lnet/minecraft/network/PacketListener;)V +MD: net/minecraft/network/protocol/game/ServerboundSetCreativeModeSlotPacket/m_5797_ (Lnet/minecraft/network/protocol/game/ServerGamePacketListener;)V net/minecraft/network/protocol/game/ServerboundSetCreativeModeSlotPacket/handle (Lnet/minecraft/network/protocol/game/ServerGamePacketListener;)V +MD: net/minecraft/network/protocol/game/ServerboundSetJigsawBlockPacket/ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/resources/ResourceLocation;Ljava/lang/String;Lnet/minecraft/world/level/block/entity/JigsawBlockEntity$JointType;)V net/minecraft/network/protocol/game/ServerboundSetJigsawBlockPacket/ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/resources/ResourceLocation;Ljava/lang/String;Lnet/minecraft/world/level/block/entity/JigsawBlockEntity$JointType;)V +MD: net/minecraft/network/protocol/game/ServerboundSetJigsawBlockPacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ServerboundSetJigsawBlockPacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ServerboundSetJigsawBlockPacket/m_134585_ ()Lnet/minecraft/core/BlockPos; net/minecraft/network/protocol/game/ServerboundSetJigsawBlockPacket/getPos ()Lnet/minecraft/core/BlockPos; +MD: net/minecraft/network/protocol/game/ServerboundSetJigsawBlockPacket/m_134588_ ()Lnet/minecraft/resources/ResourceLocation; net/minecraft/network/protocol/game/ServerboundSetJigsawBlockPacket/getName ()Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/network/protocol/game/ServerboundSetJigsawBlockPacket/m_134589_ ()Lnet/minecraft/resources/ResourceLocation; net/minecraft/network/protocol/game/ServerboundSetJigsawBlockPacket/getTarget ()Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/network/protocol/game/ServerboundSetJigsawBlockPacket/m_134590_ ()Lnet/minecraft/resources/ResourceLocation; net/minecraft/network/protocol/game/ServerboundSetJigsawBlockPacket/getPool ()Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/network/protocol/game/ServerboundSetJigsawBlockPacket/m_134591_ ()Ljava/lang/String; net/minecraft/network/protocol/game/ServerboundSetJigsawBlockPacket/getFinalState ()Ljava/lang/String; +MD: net/minecraft/network/protocol/game/ServerboundSetJigsawBlockPacket/m_134592_ ()Lnet/minecraft/world/level/block/entity/JigsawBlockEntity$JointType; net/minecraft/network/protocol/game/ServerboundSetJigsawBlockPacket/getJoint ()Lnet/minecraft/world/level/block/entity/JigsawBlockEntity$JointType; +MD: net/minecraft/network/protocol/game/ServerboundSetJigsawBlockPacket/m_5779_ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ServerboundSetJigsawBlockPacket/write (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ServerboundSetJigsawBlockPacket/m_5797_ (Lnet/minecraft/network/PacketListener;)V net/minecraft/network/protocol/game/ServerboundSetJigsawBlockPacket/handle (Lnet/minecraft/network/PacketListener;)V +MD: net/minecraft/network/protocol/game/ServerboundSetJigsawBlockPacket/m_5797_ (Lnet/minecraft/network/protocol/game/ServerGamePacketListener;)V net/minecraft/network/protocol/game/ServerboundSetJigsawBlockPacket/handle (Lnet/minecraft/network/protocol/game/ServerGamePacketListener;)V +MD: net/minecraft/network/protocol/game/ServerboundSetStructureBlockPacket/ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/entity/StructureBlockEntity$UpdateType;Lnet/minecraft/world/level/block/state/properties/StructureMode;Ljava/lang/String;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Vec3i;Lnet/minecraft/world/level/block/Mirror;Lnet/minecraft/world/level/block/Rotation;Ljava/lang/String;ZZZFJ)V net/minecraft/network/protocol/game/ServerboundSetStructureBlockPacket/ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/entity/StructureBlockEntity$UpdateType;Lnet/minecraft/world/level/block/state/properties/StructureMode;Ljava/lang/String;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Vec3i;Lnet/minecraft/world/level/block/Mirror;Lnet/minecraft/world/level/block/Rotation;Ljava/lang/String;ZZZFJ)V +MD: net/minecraft/network/protocol/game/ServerboundSetStructureBlockPacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ServerboundSetStructureBlockPacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ServerboundSetStructureBlockPacket/m_134629_ ()Lnet/minecraft/core/BlockPos; net/minecraft/network/protocol/game/ServerboundSetStructureBlockPacket/getPos ()Lnet/minecraft/core/BlockPos; +MD: net/minecraft/network/protocol/game/ServerboundSetStructureBlockPacket/m_134632_ ()Lnet/minecraft/world/level/block/entity/StructureBlockEntity$UpdateType; net/minecraft/network/protocol/game/ServerboundSetStructureBlockPacket/getUpdateType ()Lnet/minecraft/world/level/block/entity/StructureBlockEntity$UpdateType; +MD: net/minecraft/network/protocol/game/ServerboundSetStructureBlockPacket/m_134633_ ()Lnet/minecraft/world/level/block/state/properties/StructureMode; net/minecraft/network/protocol/game/ServerboundSetStructureBlockPacket/getMode ()Lnet/minecraft/world/level/block/state/properties/StructureMode; +MD: net/minecraft/network/protocol/game/ServerboundSetStructureBlockPacket/m_134634_ ()Ljava/lang/String; net/minecraft/network/protocol/game/ServerboundSetStructureBlockPacket/getName ()Ljava/lang/String; +MD: net/minecraft/network/protocol/game/ServerboundSetStructureBlockPacket/m_134635_ ()Lnet/minecraft/core/BlockPos; net/minecraft/network/protocol/game/ServerboundSetStructureBlockPacket/getOffset ()Lnet/minecraft/core/BlockPos; +MD: net/minecraft/network/protocol/game/ServerboundSetStructureBlockPacket/m_134637_ ()Lnet/minecraft/world/level/block/Mirror; net/minecraft/network/protocol/game/ServerboundSetStructureBlockPacket/getMirror ()Lnet/minecraft/world/level/block/Mirror; +MD: net/minecraft/network/protocol/game/ServerboundSetStructureBlockPacket/m_134638_ ()Lnet/minecraft/world/level/block/Rotation; net/minecraft/network/protocol/game/ServerboundSetStructureBlockPacket/getRotation ()Lnet/minecraft/world/level/block/Rotation; +MD: net/minecraft/network/protocol/game/ServerboundSetStructureBlockPacket/m_134639_ ()Ljava/lang/String; net/minecraft/network/protocol/game/ServerboundSetStructureBlockPacket/getData ()Ljava/lang/String; +MD: net/minecraft/network/protocol/game/ServerboundSetStructureBlockPacket/m_134640_ ()Z net/minecraft/network/protocol/game/ServerboundSetStructureBlockPacket/isIgnoreEntities ()Z +MD: net/minecraft/network/protocol/game/ServerboundSetStructureBlockPacket/m_134641_ ()Z net/minecraft/network/protocol/game/ServerboundSetStructureBlockPacket/isShowAir ()Z +MD: net/minecraft/network/protocol/game/ServerboundSetStructureBlockPacket/m_134642_ ()Z net/minecraft/network/protocol/game/ServerboundSetStructureBlockPacket/isShowBoundingBox ()Z +MD: net/minecraft/network/protocol/game/ServerboundSetStructureBlockPacket/m_134643_ ()F net/minecraft/network/protocol/game/ServerboundSetStructureBlockPacket/getIntegrity ()F +MD: net/minecraft/network/protocol/game/ServerboundSetStructureBlockPacket/m_134644_ ()J net/minecraft/network/protocol/game/ServerboundSetStructureBlockPacket/getSeed ()J +MD: net/minecraft/network/protocol/game/ServerboundSetStructureBlockPacket/m_179787_ ()Lnet/minecraft/core/Vec3i; net/minecraft/network/protocol/game/ServerboundSetStructureBlockPacket/getSize ()Lnet/minecraft/core/Vec3i; +MD: net/minecraft/network/protocol/game/ServerboundSetStructureBlockPacket/m_5779_ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ServerboundSetStructureBlockPacket/write (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ServerboundSetStructureBlockPacket/m_5797_ (Lnet/minecraft/network/protocol/game/ServerGamePacketListener;)V net/minecraft/network/protocol/game/ServerboundSetStructureBlockPacket/handle (Lnet/minecraft/network/protocol/game/ServerGamePacketListener;)V +MD: net/minecraft/network/protocol/game/ServerboundSetStructureBlockPacket/m_5797_ (Lnet/minecraft/network/PacketListener;)V net/minecraft/network/protocol/game/ServerboundSetStructureBlockPacket/handle (Lnet/minecraft/network/PacketListener;)V +MD: net/minecraft/network/protocol/game/ServerboundSignUpdatePacket/ (Lnet/minecraft/core/BlockPos;ZLjava/lang/String;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;)V net/minecraft/network/protocol/game/ServerboundSignUpdatePacket/ (Lnet/minecraft/core/BlockPos;ZLjava/lang/String;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;)V +MD: net/minecraft/network/protocol/game/ServerboundSignUpdatePacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ServerboundSignUpdatePacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ServerboundSignUpdatePacket/m_134660_ ()Lnet/minecraft/core/BlockPos; net/minecraft/network/protocol/game/ServerboundSignUpdatePacket/getPos ()Lnet/minecraft/core/BlockPos; +MD: net/minecraft/network/protocol/game/ServerboundSignUpdatePacket/m_134663_ ()[Ljava/lang/String; net/minecraft/network/protocol/game/ServerboundSignUpdatePacket/getLines ()[Ljava/lang/String; +MD: net/minecraft/network/protocol/game/ServerboundSignUpdatePacket/m_276788_ ()Z net/minecraft/network/protocol/game/ServerboundSignUpdatePacket/isFrontText ()Z +MD: net/minecraft/network/protocol/game/ServerboundSignUpdatePacket/m_5779_ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ServerboundSignUpdatePacket/write (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ServerboundSignUpdatePacket/m_5797_ (Lnet/minecraft/network/PacketListener;)V net/minecraft/network/protocol/game/ServerboundSignUpdatePacket/handle (Lnet/minecraft/network/PacketListener;)V +MD: net/minecraft/network/protocol/game/ServerboundSignUpdatePacket/m_5797_ (Lnet/minecraft/network/protocol/game/ServerGamePacketListener;)V net/minecraft/network/protocol/game/ServerboundSignUpdatePacket/handle (Lnet/minecraft/network/protocol/game/ServerGamePacketListener;)V +MD: net/minecraft/network/protocol/game/ServerboundSwingPacket/ (Lnet/minecraft/world/InteractionHand;)V net/minecraft/network/protocol/game/ServerboundSwingPacket/ (Lnet/minecraft/world/InteractionHand;)V +MD: net/minecraft/network/protocol/game/ServerboundSwingPacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ServerboundSwingPacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ServerboundSwingPacket/m_134674_ ()Lnet/minecraft/world/InteractionHand; net/minecraft/network/protocol/game/ServerboundSwingPacket/getHand ()Lnet/minecraft/world/InteractionHand; +MD: net/minecraft/network/protocol/game/ServerboundSwingPacket/m_5779_ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ServerboundSwingPacket/write (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ServerboundSwingPacket/m_5797_ (Lnet/minecraft/network/PacketListener;)V net/minecraft/network/protocol/game/ServerboundSwingPacket/handle (Lnet/minecraft/network/PacketListener;)V +MD: net/minecraft/network/protocol/game/ServerboundSwingPacket/m_5797_ (Lnet/minecraft/network/protocol/game/ServerGamePacketListener;)V net/minecraft/network/protocol/game/ServerboundSwingPacket/handle (Lnet/minecraft/network/protocol/game/ServerGamePacketListener;)V +MD: net/minecraft/network/protocol/game/ServerboundTeleportToEntityPacket/ (Ljava/util/UUID;)V net/minecraft/network/protocol/game/ServerboundTeleportToEntityPacket/ (Ljava/util/UUID;)V +MD: net/minecraft/network/protocol/game/ServerboundTeleportToEntityPacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ServerboundTeleportToEntityPacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ServerboundTeleportToEntityPacket/m_134681_ (Lnet/minecraft/server/level/ServerLevel;)Lnet/minecraft/world/entity/Entity; net/minecraft/network/protocol/game/ServerboundTeleportToEntityPacket/getEntity (Lnet/minecraft/server/level/ServerLevel;)Lnet/minecraft/world/entity/Entity; +MD: net/minecraft/network/protocol/game/ServerboundTeleportToEntityPacket/m_5779_ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ServerboundTeleportToEntityPacket/write (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ServerboundTeleportToEntityPacket/m_5797_ (Lnet/minecraft/network/PacketListener;)V net/minecraft/network/protocol/game/ServerboundTeleportToEntityPacket/handle (Lnet/minecraft/network/PacketListener;)V +MD: net/minecraft/network/protocol/game/ServerboundTeleportToEntityPacket/m_5797_ (Lnet/minecraft/network/protocol/game/ServerGamePacketListener;)V net/minecraft/network/protocol/game/ServerboundTeleportToEntityPacket/handle (Lnet/minecraft/network/protocol/game/ServerGamePacketListener;)V +MD: net/minecraft/network/protocol/game/ServerboundUseItemOnPacket/ (Lnet/minecraft/world/InteractionHand;Lnet/minecraft/world/phys/BlockHitResult;I)V net/minecraft/network/protocol/game/ServerboundUseItemOnPacket/ (Lnet/minecraft/world/InteractionHand;Lnet/minecraft/world/phys/BlockHitResult;I)V +MD: net/minecraft/network/protocol/game/ServerboundUseItemOnPacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ServerboundUseItemOnPacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ServerboundUseItemOnPacket/m_134703_ ()Lnet/minecraft/world/InteractionHand; net/minecraft/network/protocol/game/ServerboundUseItemOnPacket/getHand ()Lnet/minecraft/world/InteractionHand; +MD: net/minecraft/network/protocol/game/ServerboundUseItemOnPacket/m_134706_ ()Lnet/minecraft/world/phys/BlockHitResult; net/minecraft/network/protocol/game/ServerboundUseItemOnPacket/getHitResult ()Lnet/minecraft/world/phys/BlockHitResult; +MD: net/minecraft/network/protocol/game/ServerboundUseItemOnPacket/m_238008_ ()I net/minecraft/network/protocol/game/ServerboundUseItemOnPacket/getSequence ()I +MD: net/minecraft/network/protocol/game/ServerboundUseItemOnPacket/m_5779_ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ServerboundUseItemOnPacket/write (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ServerboundUseItemOnPacket/m_5797_ (Lnet/minecraft/network/PacketListener;)V net/minecraft/network/protocol/game/ServerboundUseItemOnPacket/handle (Lnet/minecraft/network/PacketListener;)V +MD: net/minecraft/network/protocol/game/ServerboundUseItemOnPacket/m_5797_ (Lnet/minecraft/network/protocol/game/ServerGamePacketListener;)V net/minecraft/network/protocol/game/ServerboundUseItemOnPacket/handle (Lnet/minecraft/network/protocol/game/ServerGamePacketListener;)V +MD: net/minecraft/network/protocol/game/ServerboundUseItemPacket/ (Lnet/minecraft/world/InteractionHand;I)V net/minecraft/network/protocol/game/ServerboundUseItemPacket/ (Lnet/minecraft/world/InteractionHand;I)V +MD: net/minecraft/network/protocol/game/ServerboundUseItemPacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ServerboundUseItemPacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ServerboundUseItemPacket/m_134717_ ()Lnet/minecraft/world/InteractionHand; net/minecraft/network/protocol/game/ServerboundUseItemPacket/getHand ()Lnet/minecraft/world/InteractionHand; +MD: net/minecraft/network/protocol/game/ServerboundUseItemPacket/m_238013_ ()I net/minecraft/network/protocol/game/ServerboundUseItemPacket/getSequence ()I +MD: net/minecraft/network/protocol/game/ServerboundUseItemPacket/m_5779_ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/game/ServerboundUseItemPacket/write (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/game/ServerboundUseItemPacket/m_5797_ (Lnet/minecraft/network/PacketListener;)V net/minecraft/network/protocol/game/ServerboundUseItemPacket/handle (Lnet/minecraft/network/PacketListener;)V +MD: net/minecraft/network/protocol/game/ServerboundUseItemPacket/m_5797_ (Lnet/minecraft/network/protocol/game/ServerGamePacketListener;)V net/minecraft/network/protocol/game/ServerboundUseItemPacket/handle (Lnet/minecraft/network/protocol/game/ServerGamePacketListener;)V +MD: net/minecraft/network/protocol/game/VecDeltaCodec/ ()V net/minecraft/network/protocol/game/VecDeltaCodec/ ()V +MD: net/minecraft/network/protocol/game/VecDeltaCodec/m_238017_ (D)J net/minecraft/network/protocol/game/VecDeltaCodec/encode (D)J +MD: net/minecraft/network/protocol/game/VecDeltaCodec/m_238019_ (J)D net/minecraft/network/protocol/game/VecDeltaCodec/decode (J)D +MD: net/minecraft/network/protocol/game/VecDeltaCodec/m_238021_ (JJJ)Lnet/minecraft/world/phys/Vec3; net/minecraft/network/protocol/game/VecDeltaCodec/decode (JJJ)Lnet/minecraft/world/phys/Vec3; +MD: net/minecraft/network/protocol/game/VecDeltaCodec/m_238025_ (Lnet/minecraft/world/phys/Vec3;)J net/minecraft/network/protocol/game/VecDeltaCodec/encodeX (Lnet/minecraft/world/phys/Vec3;)J +MD: net/minecraft/network/protocol/game/VecDeltaCodec/m_238027_ (Lnet/minecraft/world/phys/Vec3;)J net/minecraft/network/protocol/game/VecDeltaCodec/encodeY (Lnet/minecraft/world/phys/Vec3;)J +MD: net/minecraft/network/protocol/game/VecDeltaCodec/m_238029_ (Lnet/minecraft/world/phys/Vec3;)J net/minecraft/network/protocol/game/VecDeltaCodec/encodeZ (Lnet/minecraft/world/phys/Vec3;)J +MD: net/minecraft/network/protocol/game/VecDeltaCodec/m_238031_ (Lnet/minecraft/world/phys/Vec3;)Lnet/minecraft/world/phys/Vec3; net/minecraft/network/protocol/game/VecDeltaCodec/delta (Lnet/minecraft/world/phys/Vec3;)Lnet/minecraft/world/phys/Vec3; +MD: net/minecraft/network/protocol/game/VecDeltaCodec/m_238033_ (Lnet/minecraft/world/phys/Vec3;)V net/minecraft/network/protocol/game/VecDeltaCodec/setBase (Lnet/minecraft/world/phys/Vec3;)V +MD: net/minecraft/network/protocol/handshake/ClientIntentionPacket/ (Ljava/lang/String;ILnet/minecraft/network/ConnectionProtocol;)V net/minecraft/network/protocol/handshake/ClientIntentionPacket/ (Ljava/lang/String;ILnet/minecraft/network/ConnectionProtocol;)V +MD: net/minecraft/network/protocol/handshake/ClientIntentionPacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/handshake/ClientIntentionPacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/handshake/ClientIntentionPacket/m_134735_ ()Lnet/minecraft/network/ConnectionProtocol; net/minecraft/network/protocol/handshake/ClientIntentionPacket/getIntention ()Lnet/minecraft/network/ConnectionProtocol; +MD: net/minecraft/network/protocol/handshake/ClientIntentionPacket/m_134738_ ()I net/minecraft/network/protocol/handshake/ClientIntentionPacket/getProtocolVersion ()I +MD: net/minecraft/network/protocol/handshake/ClientIntentionPacket/m_179802_ ()Ljava/lang/String; net/minecraft/network/protocol/handshake/ClientIntentionPacket/getHostName ()Ljava/lang/String; +MD: net/minecraft/network/protocol/handshake/ClientIntentionPacket/m_179803_ ()I net/minecraft/network/protocol/handshake/ClientIntentionPacket/getPort ()I +MD: net/minecraft/network/protocol/handshake/ClientIntentionPacket/m_5779_ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/handshake/ClientIntentionPacket/write (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/handshake/ClientIntentionPacket/m_5797_ (Lnet/minecraft/network/PacketListener;)V net/minecraft/network/protocol/handshake/ClientIntentionPacket/handle (Lnet/minecraft/network/PacketListener;)V +MD: net/minecraft/network/protocol/handshake/ClientIntentionPacket/m_5797_ (Lnet/minecraft/network/protocol/handshake/ServerHandshakePacketListener;)V net/minecraft/network/protocol/handshake/ClientIntentionPacket/handle (Lnet/minecraft/network/protocol/handshake/ServerHandshakePacketListener;)V +MD: net/minecraft/network/protocol/handshake/ServerHandshakePacketListener/m_7322_ (Lnet/minecraft/network/protocol/handshake/ClientIntentionPacket;)V net/minecraft/network/protocol/handshake/ServerHandshakePacketListener/handleIntention (Lnet/minecraft/network/protocol/handshake/ClientIntentionPacket;)V +MD: net/minecraft/network/protocol/login/ClientLoginPacketListener/m_5693_ (Lnet/minecraft/network/protocol/login/ClientboundLoginCompressionPacket;)V net/minecraft/network/protocol/login/ClientLoginPacketListener/handleCompression (Lnet/minecraft/network/protocol/login/ClientboundLoginCompressionPacket;)V +MD: net/minecraft/network/protocol/login/ClientLoginPacketListener/m_5800_ (Lnet/minecraft/network/protocol/login/ClientboundLoginDisconnectPacket;)V net/minecraft/network/protocol/login/ClientLoginPacketListener/handleDisconnect (Lnet/minecraft/network/protocol/login/ClientboundLoginDisconnectPacket;)V +MD: net/minecraft/network/protocol/login/ClientLoginPacketListener/m_7056_ (Lnet/minecraft/network/protocol/login/ClientboundGameProfilePacket;)V net/minecraft/network/protocol/login/ClientLoginPacketListener/handleGameProfile (Lnet/minecraft/network/protocol/login/ClientboundGameProfilePacket;)V +MD: net/minecraft/network/protocol/login/ClientLoginPacketListener/m_7254_ (Lnet/minecraft/network/protocol/login/ClientboundCustomQueryPacket;)V net/minecraft/network/protocol/login/ClientLoginPacketListener/handleCustomQuery (Lnet/minecraft/network/protocol/login/ClientboundCustomQueryPacket;)V +MD: net/minecraft/network/protocol/login/ClientLoginPacketListener/m_7318_ (Lnet/minecraft/network/protocol/login/ClientboundHelloPacket;)V net/minecraft/network/protocol/login/ClientLoginPacketListener/handleHello (Lnet/minecraft/network/protocol/login/ClientboundHelloPacket;)V +MD: net/minecraft/network/protocol/login/ClientboundCustomQueryPacket/ (ILnet/minecraft/resources/ResourceLocation;Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/login/ClientboundCustomQueryPacket/ (ILnet/minecraft/resources/ResourceLocation;Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/login/ClientboundCustomQueryPacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/login/ClientboundCustomQueryPacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/login/ClientboundCustomQueryPacket/m_134755_ ()I net/minecraft/network/protocol/login/ClientboundCustomQueryPacket/getTransactionId ()I +MD: net/minecraft/network/protocol/login/ClientboundCustomQueryPacket/m_179811_ ()Lnet/minecraft/resources/ResourceLocation; net/minecraft/network/protocol/login/ClientboundCustomQueryPacket/getIdentifier ()Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/network/protocol/login/ClientboundCustomQueryPacket/m_179812_ ()Lnet/minecraft/network/FriendlyByteBuf; net/minecraft/network/protocol/login/ClientboundCustomQueryPacket/getData ()Lnet/minecraft/network/FriendlyByteBuf; +MD: net/minecraft/network/protocol/login/ClientboundCustomQueryPacket/m_5779_ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/login/ClientboundCustomQueryPacket/write (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/login/ClientboundCustomQueryPacket/m_5797_ (Lnet/minecraft/network/PacketListener;)V net/minecraft/network/protocol/login/ClientboundCustomQueryPacket/handle (Lnet/minecraft/network/PacketListener;)V +MD: net/minecraft/network/protocol/login/ClientboundCustomQueryPacket/m_5797_ (Lnet/minecraft/network/protocol/login/ClientLoginPacketListener;)V net/minecraft/network/protocol/login/ClientboundCustomQueryPacket/handle (Lnet/minecraft/network/protocol/login/ClientLoginPacketListener;)V +MD: net/minecraft/network/protocol/login/ClientboundGameProfilePacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/login/ClientboundGameProfilePacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/login/ClientboundGameProfilePacket/ (Lcom/mojang/authlib/GameProfile;)V net/minecraft/network/protocol/login/ClientboundGameProfilePacket/ (Lcom/mojang/authlib/GameProfile;)V +MD: net/minecraft/network/protocol/login/ClientboundGameProfilePacket/m_134774_ ()Lcom/mojang/authlib/GameProfile; net/minecraft/network/protocol/login/ClientboundGameProfilePacket/getGameProfile ()Lcom/mojang/authlib/GameProfile; +MD: net/minecraft/network/protocol/login/ClientboundGameProfilePacket/m_5779_ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/login/ClientboundGameProfilePacket/write (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/login/ClientboundGameProfilePacket/m_5797_ (Lnet/minecraft/network/PacketListener;)V net/minecraft/network/protocol/login/ClientboundGameProfilePacket/handle (Lnet/minecraft/network/PacketListener;)V +MD: net/minecraft/network/protocol/login/ClientboundGameProfilePacket/m_5797_ (Lnet/minecraft/network/protocol/login/ClientLoginPacketListener;)V net/minecraft/network/protocol/login/ClientboundGameProfilePacket/handle (Lnet/minecraft/network/protocol/login/ClientLoginPacketListener;)V +MD: net/minecraft/network/protocol/login/ClientboundHelloPacket/ (Ljava/lang/String;[B[B)V net/minecraft/network/protocol/login/ClientboundHelloPacket/ (Ljava/lang/String;[B[B)V +MD: net/minecraft/network/protocol/login/ClientboundHelloPacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/login/ClientboundHelloPacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/login/ClientboundHelloPacket/m_134791_ ()Ljava/lang/String; net/minecraft/network/protocol/login/ClientboundHelloPacket/getServerId ()Ljava/lang/String; +MD: net/minecraft/network/protocol/login/ClientboundHelloPacket/m_134794_ ()Ljava/security/PublicKey; net/minecraft/network/protocol/login/ClientboundHelloPacket/getPublicKey ()Ljava/security/PublicKey; +MD: net/minecraft/network/protocol/login/ClientboundHelloPacket/m_252784_ ()[B net/minecraft/network/protocol/login/ClientboundHelloPacket/getChallenge ()[B +MD: net/minecraft/network/protocol/login/ClientboundHelloPacket/m_5779_ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/login/ClientboundHelloPacket/write (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/login/ClientboundHelloPacket/m_5797_ (Lnet/minecraft/network/PacketListener;)V net/minecraft/network/protocol/login/ClientboundHelloPacket/handle (Lnet/minecraft/network/PacketListener;)V +MD: net/minecraft/network/protocol/login/ClientboundHelloPacket/m_5797_ (Lnet/minecraft/network/protocol/login/ClientLoginPacketListener;)V net/minecraft/network/protocol/login/ClientboundHelloPacket/handle (Lnet/minecraft/network/protocol/login/ClientLoginPacketListener;)V +MD: net/minecraft/network/protocol/login/ClientboundLoginCompressionPacket/ (I)V net/minecraft/network/protocol/login/ClientboundLoginCompressionPacket/ (I)V +MD: net/minecraft/network/protocol/login/ClientboundLoginCompressionPacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/login/ClientboundLoginCompressionPacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/login/ClientboundLoginCompressionPacket/m_134806_ ()I net/minecraft/network/protocol/login/ClientboundLoginCompressionPacket/getCompressionThreshold ()I +MD: net/minecraft/network/protocol/login/ClientboundLoginCompressionPacket/m_5779_ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/login/ClientboundLoginCompressionPacket/write (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/login/ClientboundLoginCompressionPacket/m_5797_ (Lnet/minecraft/network/PacketListener;)V net/minecraft/network/protocol/login/ClientboundLoginCompressionPacket/handle (Lnet/minecraft/network/PacketListener;)V +MD: net/minecraft/network/protocol/login/ClientboundLoginCompressionPacket/m_5797_ (Lnet/minecraft/network/protocol/login/ClientLoginPacketListener;)V net/minecraft/network/protocol/login/ClientboundLoginCompressionPacket/handle (Lnet/minecraft/network/protocol/login/ClientLoginPacketListener;)V +MD: net/minecraft/network/protocol/login/ClientboundLoginDisconnectPacket/ (Lnet/minecraft/network/chat/Component;)V net/minecraft/network/protocol/login/ClientboundLoginDisconnectPacket/ (Lnet/minecraft/network/chat/Component;)V +MD: net/minecraft/network/protocol/login/ClientboundLoginDisconnectPacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/login/ClientboundLoginDisconnectPacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/login/ClientboundLoginDisconnectPacket/m_134819_ ()Lnet/minecraft/network/chat/Component; net/minecraft/network/protocol/login/ClientboundLoginDisconnectPacket/getReason ()Lnet/minecraft/network/chat/Component; +MD: net/minecraft/network/protocol/login/ClientboundLoginDisconnectPacket/m_5779_ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/login/ClientboundLoginDisconnectPacket/write (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/login/ClientboundLoginDisconnectPacket/m_5797_ (Lnet/minecraft/network/PacketListener;)V net/minecraft/network/protocol/login/ClientboundLoginDisconnectPacket/handle (Lnet/minecraft/network/PacketListener;)V +MD: net/minecraft/network/protocol/login/ClientboundLoginDisconnectPacket/m_5797_ (Lnet/minecraft/network/protocol/login/ClientLoginPacketListener;)V net/minecraft/network/protocol/login/ClientboundLoginDisconnectPacket/handle (Lnet/minecraft/network/protocol/login/ClientLoginPacketListener;)V +MD: net/minecraft/network/protocol/login/ServerLoginPacketListener/m_5990_ (Lnet/minecraft/network/protocol/login/ServerboundHelloPacket;)V net/minecraft/network/protocol/login/ServerLoginPacketListener/handleHello (Lnet/minecraft/network/protocol/login/ServerboundHelloPacket;)V +MD: net/minecraft/network/protocol/login/ServerLoginPacketListener/m_7223_ (Lnet/minecraft/network/protocol/login/ServerboundCustomQueryPacket;)V net/minecraft/network/protocol/login/ServerLoginPacketListener/handleCustomQueryPacket (Lnet/minecraft/network/protocol/login/ServerboundCustomQueryPacket;)V +MD: net/minecraft/network/protocol/login/ServerLoginPacketListener/m_8072_ (Lnet/minecraft/network/protocol/login/ServerboundKeyPacket;)V net/minecraft/network/protocol/login/ServerLoginPacketListener/handleKey (Lnet/minecraft/network/protocol/login/ServerboundKeyPacket;)V +MD: net/minecraft/network/protocol/login/ServerboundCustomQueryPacket/ (ILnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/login/ServerboundCustomQueryPacket/ (ILnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/login/ServerboundCustomQueryPacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/login/ServerboundCustomQueryPacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/login/ServerboundCustomQueryPacket/m_179824_ ()I net/minecraft/network/protocol/login/ServerboundCustomQueryPacket/getTransactionId ()I +MD: net/minecraft/network/protocol/login/ServerboundCustomQueryPacket/m_179825_ ()Lnet/minecraft/network/FriendlyByteBuf; net/minecraft/network/protocol/login/ServerboundCustomQueryPacket/getData ()Lnet/minecraft/network/FriendlyByteBuf; +MD: net/minecraft/network/protocol/login/ServerboundCustomQueryPacket/m_238035_ (Lnet/minecraft/network/FriendlyByteBuf;Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/login/ServerboundCustomQueryPacket/lambda$write$1 (Lnet/minecraft/network/FriendlyByteBuf;Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/login/ServerboundCustomQueryPacket/m_238038_ (Lnet/minecraft/network/FriendlyByteBuf;)Lnet/minecraft/network/FriendlyByteBuf; net/minecraft/network/protocol/login/ServerboundCustomQueryPacket/lambda$new$0 (Lnet/minecraft/network/FriendlyByteBuf;)Lnet/minecraft/network/FriendlyByteBuf; +MD: net/minecraft/network/protocol/login/ServerboundCustomQueryPacket/m_5779_ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/login/ServerboundCustomQueryPacket/write (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/login/ServerboundCustomQueryPacket/m_5797_ (Lnet/minecraft/network/PacketListener;)V net/minecraft/network/protocol/login/ServerboundCustomQueryPacket/handle (Lnet/minecraft/network/PacketListener;)V +MD: net/minecraft/network/protocol/login/ServerboundCustomQueryPacket/m_5797_ (Lnet/minecraft/network/protocol/login/ServerLoginPacketListener;)V net/minecraft/network/protocol/login/ServerboundCustomQueryPacket/handle (Lnet/minecraft/network/protocol/login/ServerLoginPacketListener;)V +MD: net/minecraft/network/protocol/login/ServerboundHelloPacket/ (Ljava/lang/String;Ljava/util/Optional;)V net/minecraft/network/protocol/login/ServerboundHelloPacket/ (Ljava/lang/String;Ljava/util/Optional;)V +MD: net/minecraft/network/protocol/login/ServerboundHelloPacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/login/ServerboundHelloPacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/login/ServerboundHelloPacket/equals (Ljava/lang/Object;)Z net/minecraft/network/protocol/login/ServerboundHelloPacket/equals (Ljava/lang/Object;)Z +MD: net/minecraft/network/protocol/login/ServerboundHelloPacket/f_238040_ ()Ljava/lang/String; net/minecraft/network/protocol/login/ServerboundHelloPacket/name ()Ljava/lang/String; +MD: net/minecraft/network/protocol/login/ServerboundHelloPacket/f_240375_ ()Ljava/util/Optional; net/minecraft/network/protocol/login/ServerboundHelloPacket/profileId ()Ljava/util/Optional; +MD: net/minecraft/network/protocol/login/ServerboundHelloPacket/hashCode ()I net/minecraft/network/protocol/login/ServerboundHelloPacket/hashCode ()I +MD: net/minecraft/network/protocol/login/ServerboundHelloPacket/m_5779_ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/login/ServerboundHelloPacket/write (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/login/ServerboundHelloPacket/m_5797_ (Lnet/minecraft/network/PacketListener;)V net/minecraft/network/protocol/login/ServerboundHelloPacket/handle (Lnet/minecraft/network/PacketListener;)V +MD: net/minecraft/network/protocol/login/ServerboundHelloPacket/m_5797_ (Lnet/minecraft/network/protocol/login/ServerLoginPacketListener;)V net/minecraft/network/protocol/login/ServerboundHelloPacket/handle (Lnet/minecraft/network/protocol/login/ServerLoginPacketListener;)V +MD: net/minecraft/network/protocol/login/ServerboundHelloPacket/toString ()Ljava/lang/String; net/minecraft/network/protocol/login/ServerboundHelloPacket/toString ()Ljava/lang/String; +MD: net/minecraft/network/protocol/login/ServerboundKeyPacket/ (Ljavax/crypto/SecretKey;Ljava/security/PublicKey;[B)V net/minecraft/network/protocol/login/ServerboundKeyPacket/ (Ljavax/crypto/SecretKey;Ljava/security/PublicKey;[B)V +MD: net/minecraft/network/protocol/login/ServerboundKeyPacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/login/ServerboundKeyPacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/login/ServerboundKeyPacket/m_134859_ (Ljava/security/PrivateKey;)Ljavax/crypto/SecretKey; net/minecraft/network/protocol/login/ServerboundKeyPacket/getSecretKey (Ljava/security/PrivateKey;)Ljavax/crypto/SecretKey; +MD: net/minecraft/network/protocol/login/ServerboundKeyPacket/m_253194_ ([BLjava/security/PrivateKey;)Z net/minecraft/network/protocol/login/ServerboundKeyPacket/isChallengeValid ([BLjava/security/PrivateKey;)Z +MD: net/minecraft/network/protocol/login/ServerboundKeyPacket/m_5779_ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/login/ServerboundKeyPacket/write (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/login/ServerboundKeyPacket/m_5797_ (Lnet/minecraft/network/PacketListener;)V net/minecraft/network/protocol/login/ServerboundKeyPacket/handle (Lnet/minecraft/network/PacketListener;)V +MD: net/minecraft/network/protocol/login/ServerboundKeyPacket/m_5797_ (Lnet/minecraft/network/protocol/login/ServerLoginPacketListener;)V net/minecraft/network/protocol/login/ServerboundKeyPacket/handle (Lnet/minecraft/network/protocol/login/ServerLoginPacketListener;)V +MD: net/minecraft/network/protocol/status/ClientStatusPacketListener/m_6440_ (Lnet/minecraft/network/protocol/status/ClientboundStatusResponsePacket;)V net/minecraft/network/protocol/status/ClientStatusPacketListener/handleStatusResponse (Lnet/minecraft/network/protocol/status/ClientboundStatusResponsePacket;)V +MD: net/minecraft/network/protocol/status/ClientStatusPacketListener/m_7017_ (Lnet/minecraft/network/protocol/status/ClientboundPongResponsePacket;)V net/minecraft/network/protocol/status/ClientStatusPacketListener/handlePongResponse (Lnet/minecraft/network/protocol/status/ClientboundPongResponsePacket;)V +MD: net/minecraft/network/protocol/status/ClientboundPongResponsePacket/ (J)V net/minecraft/network/protocol/status/ClientboundPongResponsePacket/ (J)V +MD: net/minecraft/network/protocol/status/ClientboundPongResponsePacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/status/ClientboundPongResponsePacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/status/ClientboundPongResponsePacket/m_179832_ ()J net/minecraft/network/protocol/status/ClientboundPongResponsePacket/getTime ()J +MD: net/minecraft/network/protocol/status/ClientboundPongResponsePacket/m_5779_ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/status/ClientboundPongResponsePacket/write (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/status/ClientboundPongResponsePacket/m_5797_ (Lnet/minecraft/network/PacketListener;)V net/minecraft/network/protocol/status/ClientboundPongResponsePacket/handle (Lnet/minecraft/network/PacketListener;)V +MD: net/minecraft/network/protocol/status/ClientboundPongResponsePacket/m_5797_ (Lnet/minecraft/network/protocol/status/ClientStatusPacketListener;)V net/minecraft/network/protocol/status/ClientboundPongResponsePacket/handle (Lnet/minecraft/network/protocol/status/ClientStatusPacketListener;)V +MD: net/minecraft/network/protocol/status/ClientboundStatusResponsePacket/ (Lnet/minecraft/network/protocol/status/ServerStatus;)V net/minecraft/network/protocol/status/ClientboundStatusResponsePacket/ (Lnet/minecraft/network/protocol/status/ServerStatus;)V +MD: net/minecraft/network/protocol/status/ClientboundStatusResponsePacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/status/ClientboundStatusResponsePacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/status/ClientboundStatusResponsePacket/equals (Ljava/lang/Object;)Z net/minecraft/network/protocol/status/ClientboundStatusResponsePacket/equals (Ljava/lang/Object;)Z +MD: net/minecraft/network/protocol/status/ClientboundStatusResponsePacket/f_134886_ ()Lnet/minecraft/network/protocol/status/ServerStatus; net/minecraft/network/protocol/status/ClientboundStatusResponsePacket/status ()Lnet/minecraft/network/protocol/status/ServerStatus; +MD: net/minecraft/network/protocol/status/ClientboundStatusResponsePacket/hashCode ()I net/minecraft/network/protocol/status/ClientboundStatusResponsePacket/hashCode ()I +MD: net/minecraft/network/protocol/status/ClientboundStatusResponsePacket/m_5779_ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/status/ClientboundStatusResponsePacket/write (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/status/ClientboundStatusResponsePacket/m_5797_ (Lnet/minecraft/network/PacketListener;)V net/minecraft/network/protocol/status/ClientboundStatusResponsePacket/handle (Lnet/minecraft/network/PacketListener;)V +MD: net/minecraft/network/protocol/status/ClientboundStatusResponsePacket/m_5797_ (Lnet/minecraft/network/protocol/status/ClientStatusPacketListener;)V net/minecraft/network/protocol/status/ClientboundStatusResponsePacket/handle (Lnet/minecraft/network/protocol/status/ClientStatusPacketListener;)V +MD: net/minecraft/network/protocol/status/ClientboundStatusResponsePacket/toString ()Ljava/lang/String; net/minecraft/network/protocol/status/ClientboundStatusResponsePacket/toString ()Ljava/lang/String; +MD: net/minecraft/network/protocol/status/ServerStatus/ ()V net/minecraft/network/protocol/status/ServerStatus/ ()V +MD: net/minecraft/network/protocol/status/ServerStatus/ (Lnet/minecraft/network/chat/Component;Ljava/util/Optional;Ljava/util/Optional;Ljava/util/Optional;Z)V net/minecraft/network/protocol/status/ServerStatus/ (Lnet/minecraft/network/chat/Component;Ljava/util/Optional;Ljava/util/Optional;Ljava/util/Optional;Z)V +MD: net/minecraft/network/protocol/status/ServerStatus/equals (Ljava/lang/Object;)Z net/minecraft/network/protocol/status/ServerStatus/equals (Ljava/lang/Object;)Z +MD: net/minecraft/network/protocol/status/ServerStatus/f_134900_ ()Lnet/minecraft/network/chat/Component; net/minecraft/network/protocol/status/ServerStatus/description ()Lnet/minecraft/network/chat/Component; +MD: net/minecraft/network/protocol/status/ServerStatus/f_134901_ ()Ljava/util/Optional; net/minecraft/network/protocol/status/ServerStatus/players ()Ljava/util/Optional; +MD: net/minecraft/network/protocol/status/ServerStatus/f_134902_ ()Ljava/util/Optional; net/minecraft/network/protocol/status/ServerStatus/version ()Ljava/util/Optional; +MD: net/minecraft/network/protocol/status/ServerStatus/f_134903_ ()Ljava/util/Optional; net/minecraft/network/protocol/status/ServerStatus/favicon ()Ljava/util/Optional; +MD: net/minecraft/network/protocol/status/ServerStatus/f_242955_ ()Z net/minecraft/network/protocol/status/ServerStatus/enforcesSecureChat ()Z +MD: net/minecraft/network/protocol/status/ServerStatus/hashCode ()I net/minecraft/network/protocol/status/ServerStatus/hashCode ()I +MD: net/minecraft/network/protocol/status/ServerStatus/m_271955_ (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/network/protocol/status/ServerStatus/lambda$static$0 (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/network/protocol/status/ServerStatus/toString ()Ljava/lang/String; net/minecraft/network/protocol/status/ServerStatus/toString ()Ljava/lang/String; +MD: net/minecraft/network/protocol/status/ServerStatus$Favicon/ ()V net/minecraft/network/protocol/status/ServerStatus$Favicon/ ()V +MD: net/minecraft/network/protocol/status/ServerStatus$Favicon/ ([B)V net/minecraft/network/protocol/status/ServerStatus$Favicon/ ([B)V +MD: net/minecraft/network/protocol/status/ServerStatus$Favicon/equals (Ljava/lang/Object;)Z net/minecraft/network/protocol/status/ServerStatus$Favicon/equals (Ljava/lang/Object;)Z +MD: net/minecraft/network/protocol/status/ServerStatus$Favicon/f_271462_ ()[B net/minecraft/network/protocol/status/ServerStatus$Favicon/iconBytes ()[B +MD: net/minecraft/network/protocol/status/ServerStatus$Favicon/hashCode ()I net/minecraft/network/protocol/status/ServerStatus$Favicon/hashCode ()I +MD: net/minecraft/network/protocol/status/ServerStatus$Favicon/m_271771_ (Lnet/minecraft/network/protocol/status/ServerStatus$Favicon;)Ljava/lang/String; net/minecraft/network/protocol/status/ServerStatus$Favicon/lambda$static$3 (Lnet/minecraft/network/protocol/status/ServerStatus$Favicon;)Ljava/lang/String; +MD: net/minecraft/network/protocol/status/ServerStatus$Favicon/m_274066_ (Ljava/lang/String;)Lcom/mojang/serialization/DataResult; net/minecraft/network/protocol/status/ServerStatus$Favicon/lambda$static$2 (Ljava/lang/String;)Lcom/mojang/serialization/DataResult; +MD: net/minecraft/network/protocol/status/ServerStatus$Favicon/m_274067_ ()Ljava/lang/String; net/minecraft/network/protocol/status/ServerStatus$Favicon/lambda$static$0 ()Ljava/lang/String; +MD: net/minecraft/network/protocol/status/ServerStatus$Favicon/m_274068_ ()Ljava/lang/String; net/minecraft/network/protocol/status/ServerStatus$Favicon/lambda$static$1 ()Ljava/lang/String; +MD: net/minecraft/network/protocol/status/ServerStatus$Favicon/toString ()Ljava/lang/String; net/minecraft/network/protocol/status/ServerStatus$Favicon/toString ()Ljava/lang/String; +MD: net/minecraft/network/protocol/status/ServerStatus$Players/ ()V net/minecraft/network/protocol/status/ServerStatus$Players/ ()V +MD: net/minecraft/network/protocol/status/ServerStatus$Players/ (IILjava/util/List;)V net/minecraft/network/protocol/status/ServerStatus$Players/ (IILjava/util/List;)V +MD: net/minecraft/network/protocol/status/ServerStatus$Players/equals (Ljava/lang/Object;)Z net/minecraft/network/protocol/status/ServerStatus$Players/equals (Ljava/lang/Object;)Z +MD: net/minecraft/network/protocol/status/ServerStatus$Players/f_134919_ ()Ljava/util/List; net/minecraft/network/protocol/status/ServerStatus$Players/sample ()Ljava/util/List; +MD: net/minecraft/network/protocol/status/ServerStatus$Players/f_271178_ ()I net/minecraft/network/protocol/status/ServerStatus$Players/online ()I +MD: net/minecraft/network/protocol/status/ServerStatus$Players/f_271503_ ()I net/minecraft/network/protocol/status/ServerStatus$Players/max ()I +MD: net/minecraft/network/protocol/status/ServerStatus$Players/hashCode ()I net/minecraft/network/protocol/status/ServerStatus$Players/hashCode ()I +MD: net/minecraft/network/protocol/status/ServerStatus$Players/m_271836_ (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/network/protocol/status/ServerStatus$Players/lambda$static$1 (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/network/protocol/status/ServerStatus$Players/m_271848_ (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/network/protocol/status/ServerStatus$Players/lambda$static$0 (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/network/protocol/status/ServerStatus$Players/toString ()Ljava/lang/String; net/minecraft/network/protocol/status/ServerStatus$Players/toString ()Ljava/lang/String; +MD: net/minecraft/network/protocol/status/ServerStatus$Version/ ()V net/minecraft/network/protocol/status/ServerStatus$Version/ ()V +MD: net/minecraft/network/protocol/status/ServerStatus$Version/ (Ljava/lang/String;I)V net/minecraft/network/protocol/status/ServerStatus$Version/ (Ljava/lang/String;I)V +MD: net/minecraft/network/protocol/status/ServerStatus$Version/equals (Ljava/lang/Object;)Z net/minecraft/network/protocol/status/ServerStatus$Version/equals (Ljava/lang/Object;)Z +MD: net/minecraft/network/protocol/status/ServerStatus$Version/f_134962_ ()Ljava/lang/String; net/minecraft/network/protocol/status/ServerStatus$Version/name ()Ljava/lang/String; +MD: net/minecraft/network/protocol/status/ServerStatus$Version/f_134963_ ()I net/minecraft/network/protocol/status/ServerStatus$Version/protocol ()I +MD: net/minecraft/network/protocol/status/ServerStatus$Version/hashCode ()I net/minecraft/network/protocol/status/ServerStatus$Version/hashCode ()I +MD: net/minecraft/network/protocol/status/ServerStatus$Version/m_271745_ (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/network/protocol/status/ServerStatus$Version/lambda$static$0 (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/network/protocol/status/ServerStatus$Version/m_272202_ ()Lnet/minecraft/network/protocol/status/ServerStatus$Version; net/minecraft/network/protocol/status/ServerStatus$Version/current ()Lnet/minecraft/network/protocol/status/ServerStatus$Version; +MD: net/minecraft/network/protocol/status/ServerStatus$Version/toString ()Ljava/lang/String; net/minecraft/network/protocol/status/ServerStatus$Version/toString ()Ljava/lang/String; +MD: net/minecraft/network/protocol/status/ServerStatusPacketListener/m_6733_ (Lnet/minecraft/network/protocol/status/ServerboundStatusRequestPacket;)V net/minecraft/network/protocol/status/ServerStatusPacketListener/handleStatusRequest (Lnet/minecraft/network/protocol/status/ServerboundStatusRequestPacket;)V +MD: net/minecraft/network/protocol/status/ServerStatusPacketListener/m_7883_ (Lnet/minecraft/network/protocol/status/ServerboundPingRequestPacket;)V net/minecraft/network/protocol/status/ServerStatusPacketListener/handlePingRequest (Lnet/minecraft/network/protocol/status/ServerboundPingRequestPacket;)V +MD: net/minecraft/network/protocol/status/ServerboundPingRequestPacket/ (J)V net/minecraft/network/protocol/status/ServerboundPingRequestPacket/ (J)V +MD: net/minecraft/network/protocol/status/ServerboundPingRequestPacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/status/ServerboundPingRequestPacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/status/ServerboundPingRequestPacket/m_134998_ ()J net/minecraft/network/protocol/status/ServerboundPingRequestPacket/getTime ()J +MD: net/minecraft/network/protocol/status/ServerboundPingRequestPacket/m_5779_ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/status/ServerboundPingRequestPacket/write (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/status/ServerboundPingRequestPacket/m_5797_ (Lnet/minecraft/network/PacketListener;)V net/minecraft/network/protocol/status/ServerboundPingRequestPacket/handle (Lnet/minecraft/network/PacketListener;)V +MD: net/minecraft/network/protocol/status/ServerboundPingRequestPacket/m_5797_ (Lnet/minecraft/network/protocol/status/ServerStatusPacketListener;)V net/minecraft/network/protocol/status/ServerboundPingRequestPacket/handle (Lnet/minecraft/network/protocol/status/ServerStatusPacketListener;)V +MD: net/minecraft/network/protocol/status/ServerboundStatusRequestPacket/ ()V net/minecraft/network/protocol/status/ServerboundStatusRequestPacket/ ()V +MD: net/minecraft/network/protocol/status/ServerboundStatusRequestPacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/status/ServerboundStatusRequestPacket/ (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/status/ServerboundStatusRequestPacket/m_5779_ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/protocol/status/ServerboundStatusRequestPacket/write (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/protocol/status/ServerboundStatusRequestPacket/m_5797_ (Lnet/minecraft/network/PacketListener;)V net/minecraft/network/protocol/status/ServerboundStatusRequestPacket/handle (Lnet/minecraft/network/PacketListener;)V +MD: net/minecraft/network/protocol/status/ServerboundStatusRequestPacket/m_5797_ (Lnet/minecraft/network/protocol/status/ServerStatusPacketListener;)V net/minecraft/network/protocol/status/ServerboundStatusRequestPacket/handle (Lnet/minecraft/network/protocol/status/ServerStatusPacketListener;)V +MD: net/minecraft/network/syncher/EntityDataAccessor/ (ILnet/minecraft/network/syncher/EntityDataSerializer;)V net/minecraft/network/syncher/EntityDataAccessor/ (ILnet/minecraft/network/syncher/EntityDataSerializer;)V +MD: net/minecraft/network/syncher/EntityDataAccessor/equals (Ljava/lang/Object;)Z net/minecraft/network/syncher/EntityDataAccessor/equals (Ljava/lang/Object;)Z +MD: net/minecraft/network/syncher/EntityDataAccessor/hashCode ()I net/minecraft/network/syncher/EntityDataAccessor/hashCode ()I +MD: net/minecraft/network/syncher/EntityDataAccessor/m_135015_ ()I net/minecraft/network/syncher/EntityDataAccessor/getId ()I +MD: net/minecraft/network/syncher/EntityDataAccessor/m_135016_ ()Lnet/minecraft/network/syncher/EntityDataSerializer; net/minecraft/network/syncher/EntityDataAccessor/getSerializer ()Lnet/minecraft/network/syncher/EntityDataSerializer; +MD: net/minecraft/network/syncher/EntityDataAccessor/toString ()Ljava/lang/String; net/minecraft/network/syncher/EntityDataAccessor/toString ()Ljava/lang/String; +MD: net/minecraft/network/syncher/EntityDataSerializer/m_135021_ (I)Lnet/minecraft/network/syncher/EntityDataAccessor; net/minecraft/network/syncher/EntityDataSerializer/createAccessor (I)Lnet/minecraft/network/syncher/EntityDataAccessor; +MD: net/minecraft/network/syncher/EntityDataSerializer/m_238081_ (Lnet/minecraft/core/IdMap;)Lnet/minecraft/network/syncher/EntityDataSerializer; net/minecraft/network/syncher/EntityDataSerializer/simpleId (Lnet/minecraft/core/IdMap;)Lnet/minecraft/network/syncher/EntityDataSerializer; +MD: net/minecraft/network/syncher/EntityDataSerializer/m_238083_ (Lnet/minecraft/core/IdMap;Lnet/minecraft/network/FriendlyByteBuf;)Ljava/lang/Object; net/minecraft/network/syncher/EntityDataSerializer/lambda$simpleId$2 (Lnet/minecraft/core/IdMap;Lnet/minecraft/network/FriendlyByteBuf;)Ljava/lang/Object; +MD: net/minecraft/network/syncher/EntityDataSerializer/m_238086_ (Lnet/minecraft/core/IdMap;Lnet/minecraft/network/FriendlyByteBuf;Ljava/lang/Object;)V net/minecraft/network/syncher/EntityDataSerializer/lambda$simpleId$1 (Lnet/minecraft/core/IdMap;Lnet/minecraft/network/FriendlyByteBuf;Ljava/lang/Object;)V +MD: net/minecraft/network/syncher/EntityDataSerializer/m_238090_ (Ljava/lang/Class;)Lnet/minecraft/network/syncher/EntityDataSerializer; net/minecraft/network/syncher/EntityDataSerializer/simpleEnum (Ljava/lang/Class;)Lnet/minecraft/network/syncher/EntityDataSerializer; +MD: net/minecraft/network/syncher/EntityDataSerializer/m_238092_ (Ljava/lang/Class;Lnet/minecraft/network/FriendlyByteBuf;)Ljava/lang/Enum; net/minecraft/network/syncher/EntityDataSerializer/lambda$simpleEnum$0 (Ljava/lang/Class;Lnet/minecraft/network/FriendlyByteBuf;)Ljava/lang/Enum; +MD: net/minecraft/network/syncher/EntityDataSerializer/m_238095_ (Lnet/minecraft/network/FriendlyByteBuf$Writer;Lnet/minecraft/network/FriendlyByteBuf$Reader;)Lnet/minecraft/network/syncher/EntityDataSerializer; net/minecraft/network/syncher/EntityDataSerializer/simple (Lnet/minecraft/network/FriendlyByteBuf$Writer;Lnet/minecraft/network/FriendlyByteBuf$Reader;)Lnet/minecraft/network/syncher/EntityDataSerializer; +MD: net/minecraft/network/syncher/EntityDataSerializer/m_238098_ (Lnet/minecraft/network/FriendlyByteBuf$Writer;Lnet/minecraft/network/FriendlyByteBuf$Reader;)Lnet/minecraft/network/syncher/EntityDataSerializer; net/minecraft/network/syncher/EntityDataSerializer/optional (Lnet/minecraft/network/FriendlyByteBuf$Writer;Lnet/minecraft/network/FriendlyByteBuf$Reader;)Lnet/minecraft/network/syncher/EntityDataSerializer; +MD: net/minecraft/network/syncher/EntityDataSerializer/m_6709_ (Lnet/minecraft/network/FriendlyByteBuf;)Ljava/lang/Object; net/minecraft/network/syncher/EntityDataSerializer/read (Lnet/minecraft/network/FriendlyByteBuf;)Ljava/lang/Object; +MD: net/minecraft/network/syncher/EntityDataSerializer/m_6856_ (Lnet/minecraft/network/FriendlyByteBuf;Ljava/lang/Object;)V net/minecraft/network/syncher/EntityDataSerializer/write (Lnet/minecraft/network/FriendlyByteBuf;Ljava/lang/Object;)V +MD: net/minecraft/network/syncher/EntityDataSerializer/m_7020_ (Ljava/lang/Object;)Ljava/lang/Object; net/minecraft/network/syncher/EntityDataSerializer/copy (Ljava/lang/Object;)Ljava/lang/Object; +MD: net/minecraft/network/syncher/EntityDataSerializer$1/ (Lnet/minecraft/network/FriendlyByteBuf$Writer;Lnet/minecraft/network/FriendlyByteBuf$Reader;)V net/minecraft/network/syncher/EntityDataSerializer$1/ (Lnet/minecraft/network/FriendlyByteBuf$Writer;Lnet/minecraft/network/FriendlyByteBuf$Reader;)V +MD: net/minecraft/network/syncher/EntityDataSerializer$1/m_6709_ (Lnet/minecraft/network/FriendlyByteBuf;)Ljava/lang/Object; net/minecraft/network/syncher/EntityDataSerializer$1/read (Lnet/minecraft/network/FriendlyByteBuf;)Ljava/lang/Object; +MD: net/minecraft/network/syncher/EntityDataSerializer$1/m_6856_ (Lnet/minecraft/network/FriendlyByteBuf;Ljava/lang/Object;)V net/minecraft/network/syncher/EntityDataSerializer$1/write (Lnet/minecraft/network/FriendlyByteBuf;Ljava/lang/Object;)V +MD: net/minecraft/network/syncher/EntityDataSerializer$ForValueType/m_7020_ (Ljava/lang/Object;)Ljava/lang/Object; net/minecraft/network/syncher/EntityDataSerializer$ForValueType/copy (Ljava/lang/Object;)Ljava/lang/Object; +MD: net/minecraft/network/syncher/EntityDataSerializers/ ()V net/minecraft/network/syncher/EntityDataSerializers/ ()V +MD: net/minecraft/network/syncher/EntityDataSerializers/ ()V net/minecraft/network/syncher/EntityDataSerializers/ ()V +MD: net/minecraft/network/syncher/EntityDataSerializers/m_135048_ (I)Lnet/minecraft/network/syncher/EntityDataSerializer; net/minecraft/network/syncher/EntityDataSerializers/getSerializer (I)Lnet/minecraft/network/syncher/EntityDataSerializer; +MD: net/minecraft/network/syncher/EntityDataSerializers/m_135050_ (Lnet/minecraft/network/syncher/EntityDataSerializer;)V net/minecraft/network/syncher/EntityDataSerializers/registerSerializer (Lnet/minecraft/network/syncher/EntityDataSerializer;)V +MD: net/minecraft/network/syncher/EntityDataSerializers/m_135052_ (Lnet/minecraft/network/syncher/EntityDataSerializer;)I net/minecraft/network/syncher/EntityDataSerializers/getSerializedId (Lnet/minecraft/network/syncher/EntityDataSerializer;)I +MD: net/minecraft/network/syncher/EntityDataSerializers/m_238117_ (Lnet/minecraft/network/FriendlyByteBuf;Ljava/lang/Byte;)V net/minecraft/network/syncher/EntityDataSerializers/lambda$static$0 (Lnet/minecraft/network/FriendlyByteBuf;Ljava/lang/Byte;)V +MD: net/minecraft/network/syncher/EntityDataSerializers$1/ ()V net/minecraft/network/syncher/EntityDataSerializers$1/ ()V +MD: net/minecraft/network/syncher/EntityDataSerializers$1/m_6709_ (Lnet/minecraft/network/FriendlyByteBuf;)Lnet/minecraft/world/item/ItemStack; net/minecraft/network/syncher/EntityDataSerializers$1/read (Lnet/minecraft/network/FriendlyByteBuf;)Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/network/syncher/EntityDataSerializers$1/m_6709_ (Lnet/minecraft/network/FriendlyByteBuf;)Ljava/lang/Object; net/minecraft/network/syncher/EntityDataSerializers$1/read (Lnet/minecraft/network/FriendlyByteBuf;)Ljava/lang/Object; +MD: net/minecraft/network/syncher/EntityDataSerializers$1/m_6856_ (Lnet/minecraft/network/FriendlyByteBuf;Ljava/lang/Object;)V net/minecraft/network/syncher/EntityDataSerializers$1/write (Lnet/minecraft/network/FriendlyByteBuf;Ljava/lang/Object;)V +MD: net/minecraft/network/syncher/EntityDataSerializers$1/m_6856_ (Lnet/minecraft/network/FriendlyByteBuf;Lnet/minecraft/world/item/ItemStack;)V net/minecraft/network/syncher/EntityDataSerializers$1/write (Lnet/minecraft/network/FriendlyByteBuf;Lnet/minecraft/world/item/ItemStack;)V +MD: net/minecraft/network/syncher/EntityDataSerializers$1/m_7020_ (Lnet/minecraft/world/item/ItemStack;)Lnet/minecraft/world/item/ItemStack; net/minecraft/network/syncher/EntityDataSerializers$1/copy (Lnet/minecraft/world/item/ItemStack;)Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/network/syncher/EntityDataSerializers$1/m_7020_ (Ljava/lang/Object;)Ljava/lang/Object; net/minecraft/network/syncher/EntityDataSerializers$1/copy (Ljava/lang/Object;)Ljava/lang/Object; +MD: net/minecraft/network/syncher/EntityDataSerializers$2/ ()V net/minecraft/network/syncher/EntityDataSerializers$2/ ()V +MD: net/minecraft/network/syncher/EntityDataSerializers$2/m_6709_ (Lnet/minecraft/network/FriendlyByteBuf;)Ljava/util/Optional; net/minecraft/network/syncher/EntityDataSerializers$2/read (Lnet/minecraft/network/FriendlyByteBuf;)Ljava/util/Optional; +MD: net/minecraft/network/syncher/EntityDataSerializers$2/m_6709_ (Lnet/minecraft/network/FriendlyByteBuf;)Ljava/lang/Object; net/minecraft/network/syncher/EntityDataSerializers$2/read (Lnet/minecraft/network/FriendlyByteBuf;)Ljava/lang/Object; +MD: net/minecraft/network/syncher/EntityDataSerializers$2/m_6856_ (Lnet/minecraft/network/FriendlyByteBuf;Ljava/lang/Object;)V net/minecraft/network/syncher/EntityDataSerializers$2/write (Lnet/minecraft/network/FriendlyByteBuf;Ljava/lang/Object;)V +MD: net/minecraft/network/syncher/EntityDataSerializers$2/m_6856_ (Lnet/minecraft/network/FriendlyByteBuf;Ljava/util/Optional;)V net/minecraft/network/syncher/EntityDataSerializers$2/write (Lnet/minecraft/network/FriendlyByteBuf;Ljava/util/Optional;)V +MD: net/minecraft/network/syncher/EntityDataSerializers$3/ ()V net/minecraft/network/syncher/EntityDataSerializers$3/ ()V +MD: net/minecraft/network/syncher/EntityDataSerializers$3/m_238135_ (Lnet/minecraft/network/FriendlyByteBuf;Lnet/minecraft/core/particles/ParticleType;)Lnet/minecraft/core/particles/ParticleOptions; net/minecraft/network/syncher/EntityDataSerializers$3/readParticle (Lnet/minecraft/network/FriendlyByteBuf;Lnet/minecraft/core/particles/ParticleType;)Lnet/minecraft/core/particles/ParticleOptions; +MD: net/minecraft/network/syncher/EntityDataSerializers$3/m_6709_ (Lnet/minecraft/network/FriendlyByteBuf;)Lnet/minecraft/core/particles/ParticleOptions; net/minecraft/network/syncher/EntityDataSerializers$3/read (Lnet/minecraft/network/FriendlyByteBuf;)Lnet/minecraft/core/particles/ParticleOptions; +MD: net/minecraft/network/syncher/EntityDataSerializers$3/m_6709_ (Lnet/minecraft/network/FriendlyByteBuf;)Ljava/lang/Object; net/minecraft/network/syncher/EntityDataSerializers$3/read (Lnet/minecraft/network/FriendlyByteBuf;)Ljava/lang/Object; +MD: net/minecraft/network/syncher/EntityDataSerializers$3/m_6856_ (Lnet/minecraft/network/FriendlyByteBuf;Ljava/lang/Object;)V net/minecraft/network/syncher/EntityDataSerializers$3/write (Lnet/minecraft/network/FriendlyByteBuf;Ljava/lang/Object;)V +MD: net/minecraft/network/syncher/EntityDataSerializers$3/m_6856_ (Lnet/minecraft/network/FriendlyByteBuf;Lnet/minecraft/core/particles/ParticleOptions;)V net/minecraft/network/syncher/EntityDataSerializers$3/write (Lnet/minecraft/network/FriendlyByteBuf;Lnet/minecraft/core/particles/ParticleOptions;)V +MD: net/minecraft/network/syncher/EntityDataSerializers$4/ ()V net/minecraft/network/syncher/EntityDataSerializers$4/ ()V +MD: net/minecraft/network/syncher/EntityDataSerializers$4/m_6709_ (Lnet/minecraft/network/FriendlyByteBuf;)Lnet/minecraft/core/Rotations; net/minecraft/network/syncher/EntityDataSerializers$4/read (Lnet/minecraft/network/FriendlyByteBuf;)Lnet/minecraft/core/Rotations; +MD: net/minecraft/network/syncher/EntityDataSerializers$4/m_6709_ (Lnet/minecraft/network/FriendlyByteBuf;)Ljava/lang/Object; net/minecraft/network/syncher/EntityDataSerializers$4/read (Lnet/minecraft/network/FriendlyByteBuf;)Ljava/lang/Object; +MD: net/minecraft/network/syncher/EntityDataSerializers$4/m_6856_ (Lnet/minecraft/network/FriendlyByteBuf;Ljava/lang/Object;)V net/minecraft/network/syncher/EntityDataSerializers$4/write (Lnet/minecraft/network/FriendlyByteBuf;Ljava/lang/Object;)V +MD: net/minecraft/network/syncher/EntityDataSerializers$4/m_6856_ (Lnet/minecraft/network/FriendlyByteBuf;Lnet/minecraft/core/Rotations;)V net/minecraft/network/syncher/EntityDataSerializers$4/write (Lnet/minecraft/network/FriendlyByteBuf;Lnet/minecraft/core/Rotations;)V +MD: net/minecraft/network/syncher/EntityDataSerializers$5/ ()V net/minecraft/network/syncher/EntityDataSerializers$5/ ()V +MD: net/minecraft/network/syncher/EntityDataSerializers$5/m_6709_ (Lnet/minecraft/network/FriendlyByteBuf;)Lnet/minecraft/nbt/CompoundTag; net/minecraft/network/syncher/EntityDataSerializers$5/read (Lnet/minecraft/network/FriendlyByteBuf;)Lnet/minecraft/nbt/CompoundTag; +MD: net/minecraft/network/syncher/EntityDataSerializers$5/m_6709_ (Lnet/minecraft/network/FriendlyByteBuf;)Ljava/lang/Object; net/minecraft/network/syncher/EntityDataSerializers$5/read (Lnet/minecraft/network/FriendlyByteBuf;)Ljava/lang/Object; +MD: net/minecraft/network/syncher/EntityDataSerializers$5/m_6856_ (Lnet/minecraft/network/FriendlyByteBuf;Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/network/syncher/EntityDataSerializers$5/write (Lnet/minecraft/network/FriendlyByteBuf;Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/network/syncher/EntityDataSerializers$5/m_6856_ (Lnet/minecraft/network/FriendlyByteBuf;Ljava/lang/Object;)V net/minecraft/network/syncher/EntityDataSerializers$5/write (Lnet/minecraft/network/FriendlyByteBuf;Ljava/lang/Object;)V +MD: net/minecraft/network/syncher/EntityDataSerializers$5/m_7020_ (Ljava/lang/Object;)Ljava/lang/Object; net/minecraft/network/syncher/EntityDataSerializers$5/copy (Ljava/lang/Object;)Ljava/lang/Object; +MD: net/minecraft/network/syncher/EntityDataSerializers$5/m_7020_ (Lnet/minecraft/nbt/CompoundTag;)Lnet/minecraft/nbt/CompoundTag; net/minecraft/network/syncher/EntityDataSerializers$5/copy (Lnet/minecraft/nbt/CompoundTag;)Lnet/minecraft/nbt/CompoundTag; +MD: net/minecraft/network/syncher/EntityDataSerializers$6/ ()V net/minecraft/network/syncher/EntityDataSerializers$6/ ()V +MD: net/minecraft/network/syncher/EntityDataSerializers$6/m_6709_ (Lnet/minecraft/network/FriendlyByteBuf;)Lnet/minecraft/world/entity/npc/VillagerData; net/minecraft/network/syncher/EntityDataSerializers$6/read (Lnet/minecraft/network/FriendlyByteBuf;)Lnet/minecraft/world/entity/npc/VillagerData; +MD: net/minecraft/network/syncher/EntityDataSerializers$6/m_6709_ (Lnet/minecraft/network/FriendlyByteBuf;)Ljava/lang/Object; net/minecraft/network/syncher/EntityDataSerializers$6/read (Lnet/minecraft/network/FriendlyByteBuf;)Ljava/lang/Object; +MD: net/minecraft/network/syncher/EntityDataSerializers$6/m_6856_ (Lnet/minecraft/network/FriendlyByteBuf;Ljava/lang/Object;)V net/minecraft/network/syncher/EntityDataSerializers$6/write (Lnet/minecraft/network/FriendlyByteBuf;Ljava/lang/Object;)V +MD: net/minecraft/network/syncher/EntityDataSerializers$6/m_6856_ (Lnet/minecraft/network/FriendlyByteBuf;Lnet/minecraft/world/entity/npc/VillagerData;)V net/minecraft/network/syncher/EntityDataSerializers$6/write (Lnet/minecraft/network/FriendlyByteBuf;Lnet/minecraft/world/entity/npc/VillagerData;)V +MD: net/minecraft/network/syncher/EntityDataSerializers$7/ ()V net/minecraft/network/syncher/EntityDataSerializers$7/ ()V +MD: net/minecraft/network/syncher/EntityDataSerializers$7/m_6709_ (Lnet/minecraft/network/FriendlyByteBuf;)Ljava/util/OptionalInt; net/minecraft/network/syncher/EntityDataSerializers$7/read (Lnet/minecraft/network/FriendlyByteBuf;)Ljava/util/OptionalInt; +MD: net/minecraft/network/syncher/EntityDataSerializers$7/m_6709_ (Lnet/minecraft/network/FriendlyByteBuf;)Ljava/lang/Object; net/minecraft/network/syncher/EntityDataSerializers$7/read (Lnet/minecraft/network/FriendlyByteBuf;)Ljava/lang/Object; +MD: net/minecraft/network/syncher/EntityDataSerializers$7/m_6856_ (Lnet/minecraft/network/FriendlyByteBuf;Ljava/util/OptionalInt;)V net/minecraft/network/syncher/EntityDataSerializers$7/write (Lnet/minecraft/network/FriendlyByteBuf;Ljava/util/OptionalInt;)V +MD: net/minecraft/network/syncher/EntityDataSerializers$7/m_6856_ (Lnet/minecraft/network/FriendlyByteBuf;Ljava/lang/Object;)V net/minecraft/network/syncher/EntityDataSerializers$7/write (Lnet/minecraft/network/FriendlyByteBuf;Ljava/lang/Object;)V +MD: net/minecraft/network/syncher/SynchedEntityData/ ()V net/minecraft/network/syncher/SynchedEntityData/ ()V +MD: net/minecraft/network/syncher/SynchedEntityData/ (Lnet/minecraft/world/entity/Entity;)V net/minecraft/network/syncher/SynchedEntityData/ (Lnet/minecraft/world/entity/Entity;)V +MD: net/minecraft/network/syncher/SynchedEntityData/m_135352_ ()Z net/minecraft/network/syncher/SynchedEntityData/isDirty ()Z +MD: net/minecraft/network/syncher/SynchedEntityData/m_135353_ (Ljava/lang/Class;Lnet/minecraft/network/syncher/EntityDataSerializer;)Lnet/minecraft/network/syncher/EntityDataAccessor; net/minecraft/network/syncher/SynchedEntityData/defineId (Ljava/lang/Class;Lnet/minecraft/network/syncher/EntityDataSerializer;)Lnet/minecraft/network/syncher/EntityDataAccessor; +MD: net/minecraft/network/syncher/SynchedEntityData/m_135356_ (Ljava/util/List;)V net/minecraft/network/syncher/SynchedEntityData/assignValues (Ljava/util/List;)V +MD: net/minecraft/network/syncher/SynchedEntityData/m_135370_ (Lnet/minecraft/network/syncher/EntityDataAccessor;)Ljava/lang/Object; net/minecraft/network/syncher/SynchedEntityData/get (Lnet/minecraft/network/syncher/EntityDataAccessor;)Ljava/lang/Object; +MD: net/minecraft/network/syncher/SynchedEntityData/m_135372_ (Lnet/minecraft/network/syncher/EntityDataAccessor;Ljava/lang/Object;)V net/minecraft/network/syncher/SynchedEntityData/define (Lnet/minecraft/network/syncher/EntityDataAccessor;Ljava/lang/Object;)V +MD: net/minecraft/network/syncher/SynchedEntityData/m_135375_ (Lnet/minecraft/network/syncher/SynchedEntityData$DataItem;Lnet/minecraft/network/syncher/SynchedEntityData$DataValue;)V net/minecraft/network/syncher/SynchedEntityData/assignValue (Lnet/minecraft/network/syncher/SynchedEntityData$DataItem;Lnet/minecraft/network/syncher/SynchedEntityData$DataValue;)V +MD: net/minecraft/network/syncher/SynchedEntityData/m_135378_ ()Ljava/util/List; net/minecraft/network/syncher/SynchedEntityData/packDirty ()Ljava/util/List; +MD: net/minecraft/network/syncher/SynchedEntityData/m_135379_ (Lnet/minecraft/network/syncher/EntityDataAccessor;)Lnet/minecraft/network/syncher/SynchedEntityData$DataItem; net/minecraft/network/syncher/SynchedEntityData/getItem (Lnet/minecraft/network/syncher/EntityDataAccessor;)Lnet/minecraft/network/syncher/SynchedEntityData$DataItem; +MD: net/minecraft/network/syncher/SynchedEntityData/m_135381_ (Lnet/minecraft/network/syncher/EntityDataAccessor;Ljava/lang/Object;)V net/minecraft/network/syncher/SynchedEntityData/set (Lnet/minecraft/network/syncher/EntityDataAccessor;Ljava/lang/Object;)V +MD: net/minecraft/network/syncher/SynchedEntityData/m_135385_ (Lnet/minecraft/network/syncher/EntityDataAccessor;Ljava/lang/Object;)V net/minecraft/network/syncher/SynchedEntityData/createDataItem (Lnet/minecraft/network/syncher/EntityDataAccessor;Ljava/lang/Object;)V +MD: net/minecraft/network/syncher/SynchedEntityData/m_135388_ ()Z net/minecraft/network/syncher/SynchedEntityData/isEmpty ()Z +MD: net/minecraft/network/syncher/SynchedEntityData/m_252804_ ()Ljava/util/List; net/minecraft/network/syncher/SynchedEntityData/getNonDefaultValues ()Ljava/util/List; +MD: net/minecraft/network/syncher/SynchedEntityData/m_276349_ (Lnet/minecraft/network/syncher/EntityDataAccessor;Ljava/lang/Object;Z)V net/minecraft/network/syncher/SynchedEntityData/set (Lnet/minecraft/network/syncher/EntityDataAccessor;Ljava/lang/Object;Z)V +MD: net/minecraft/network/syncher/SynchedEntityData/m_285897_ (Lnet/minecraft/network/syncher/EntityDataAccessor;)Z net/minecraft/network/syncher/SynchedEntityData/hasItem (Lnet/minecraft/network/syncher/EntityDataAccessor;)Z +MD: net/minecraft/network/syncher/SynchedEntityData$DataItem/ (Lnet/minecraft/network/syncher/EntityDataAccessor;Ljava/lang/Object;)V net/minecraft/network/syncher/SynchedEntityData$DataItem/ (Lnet/minecraft/network/syncher/EntityDataAccessor;Ljava/lang/Object;)V +MD: net/minecraft/network/syncher/SynchedEntityData$DataItem/m_135396_ ()Lnet/minecraft/network/syncher/EntityDataAccessor; net/minecraft/network/syncher/SynchedEntityData$DataItem/getAccessor ()Lnet/minecraft/network/syncher/EntityDataAccessor; +MD: net/minecraft/network/syncher/SynchedEntityData$DataItem/m_135397_ (Ljava/lang/Object;)V net/minecraft/network/syncher/SynchedEntityData$DataItem/setValue (Ljava/lang/Object;)V +MD: net/minecraft/network/syncher/SynchedEntityData$DataItem/m_135401_ (Z)V net/minecraft/network/syncher/SynchedEntityData$DataItem/setDirty (Z)V +MD: net/minecraft/network/syncher/SynchedEntityData$DataItem/m_135403_ ()Ljava/lang/Object; net/minecraft/network/syncher/SynchedEntityData$DataItem/getValue ()Ljava/lang/Object; +MD: net/minecraft/network/syncher/SynchedEntityData$DataItem/m_135406_ ()Z net/minecraft/network/syncher/SynchedEntityData$DataItem/isDirty ()Z +MD: net/minecraft/network/syncher/SynchedEntityData$DataItem/m_252838_ ()Z net/minecraft/network/syncher/SynchedEntityData$DataItem/isSetToDefault ()Z +MD: net/minecraft/network/syncher/SynchedEntityData$DataItem/m_253123_ ()Lnet/minecraft/network/syncher/SynchedEntityData$DataValue; net/minecraft/network/syncher/SynchedEntityData$DataItem/value ()Lnet/minecraft/network/syncher/SynchedEntityData$DataValue; +MD: net/minecraft/network/syncher/SynchedEntityData$DataValue/ (ILnet/minecraft/network/syncher/EntityDataSerializer;Ljava/lang/Object;)V net/minecraft/network/syncher/SynchedEntityData$DataValue/ (ILnet/minecraft/network/syncher/EntityDataSerializer;Ljava/lang/Object;)V +MD: net/minecraft/network/syncher/SynchedEntityData$DataValue/equals (Ljava/lang/Object;)Z net/minecraft/network/syncher/SynchedEntityData$DataValue/equals (Ljava/lang/Object;)Z +MD: net/minecraft/network/syncher/SynchedEntityData$DataValue/f_252469_ ()I net/minecraft/network/syncher/SynchedEntityData$DataValue/id ()I +MD: net/minecraft/network/syncher/SynchedEntityData$DataValue/f_252511_ ()Lnet/minecraft/network/syncher/EntityDataSerializer; net/minecraft/network/syncher/SynchedEntityData$DataValue/serializer ()Lnet/minecraft/network/syncher/EntityDataSerializer; +MD: net/minecraft/network/syncher/SynchedEntityData$DataValue/f_252525_ ()Ljava/lang/Object; net/minecraft/network/syncher/SynchedEntityData$DataValue/value ()Ljava/lang/Object; +MD: net/minecraft/network/syncher/SynchedEntityData$DataValue/hashCode ()I net/minecraft/network/syncher/SynchedEntityData$DataValue/hashCode ()I +MD: net/minecraft/network/syncher/SynchedEntityData$DataValue/m_252847_ (Lnet/minecraft/network/syncher/EntityDataAccessor;Ljava/lang/Object;)Lnet/minecraft/network/syncher/SynchedEntityData$DataValue; net/minecraft/network/syncher/SynchedEntityData$DataValue/create (Lnet/minecraft/network/syncher/EntityDataAccessor;Ljava/lang/Object;)Lnet/minecraft/network/syncher/SynchedEntityData$DataValue; +MD: net/minecraft/network/syncher/SynchedEntityData$DataValue/m_252860_ (Lnet/minecraft/network/FriendlyByteBuf;I)Lnet/minecraft/network/syncher/SynchedEntityData$DataValue; net/minecraft/network/syncher/SynchedEntityData$DataValue/read (Lnet/minecraft/network/FriendlyByteBuf;I)Lnet/minecraft/network/syncher/SynchedEntityData$DataValue; +MD: net/minecraft/network/syncher/SynchedEntityData$DataValue/m_252897_ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/network/syncher/SynchedEntityData$DataValue/write (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/network/syncher/SynchedEntityData$DataValue/m_252951_ (Lnet/minecraft/network/FriendlyByteBuf;ILnet/minecraft/network/syncher/EntityDataSerializer;)Lnet/minecraft/network/syncher/SynchedEntityData$DataValue; net/minecraft/network/syncher/SynchedEntityData$DataValue/read (Lnet/minecraft/network/FriendlyByteBuf;ILnet/minecraft/network/syncher/EntityDataSerializer;)Lnet/minecraft/network/syncher/SynchedEntityData$DataValue; +MD: net/minecraft/network/syncher/SynchedEntityData$DataValue/toString ()Ljava/lang/String; net/minecraft/network/syncher/SynchedEntityData$DataValue/toString ()Ljava/lang/String; +MD: net/minecraft/realms/DisconnectedRealmsScreen/ (Lnet/minecraft/client/gui/screens/Screen;Lnet/minecraft/network/chat/Component;Lnet/minecraft/network/chat/Component;)V net/minecraft/realms/DisconnectedRealmsScreen/ (Lnet/minecraft/client/gui/screens/Screen;Lnet/minecraft/network/chat/Component;Lnet/minecraft/network/chat/Component;)V +MD: net/minecraft/realms/DisconnectedRealmsScreen/m_120661_ (Lnet/minecraft/client/Minecraft;Lnet/minecraft/client/gui/components/Button;)V net/minecraft/realms/DisconnectedRealmsScreen/lambda$init$0 (Lnet/minecraft/client/Minecraft;Lnet/minecraft/client/gui/components/Button;)V +MD: net/minecraft/realms/DisconnectedRealmsScreen/m_142562_ ()Lnet/minecraft/network/chat/Component; net/minecraft/realms/DisconnectedRealmsScreen/getNarrationMessage ()Lnet/minecraft/network/chat/Component; +MD: net/minecraft/realms/DisconnectedRealmsScreen/m_7379_ ()V net/minecraft/realms/DisconnectedRealmsScreen/onClose ()V +MD: net/minecraft/realms/DisconnectedRealmsScreen/m_7856_ ()V net/minecraft/realms/DisconnectedRealmsScreen/init ()V +MD: net/minecraft/realms/DisconnectedRealmsScreen/m_88315_ (Lnet/minecraft/client/gui/GuiGraphics;IIF)V net/minecraft/realms/DisconnectedRealmsScreen/render (Lnet/minecraft/client/gui/GuiGraphics;IIF)V +MD: net/minecraft/realms/RealmsConnect/ ()V net/minecraft/realms/RealmsConnect/ ()V +MD: net/minecraft/realms/RealmsConnect/ (Lnet/minecraft/client/gui/screens/Screen;)V net/minecraft/realms/RealmsConnect/ (Lnet/minecraft/client/gui/screens/Screen;)V +MD: net/minecraft/realms/RealmsConnect/m_120694_ ()V net/minecraft/realms/RealmsConnect/abort ()V +MD: net/minecraft/realms/RealmsConnect/m_120704_ ()V net/minecraft/realms/RealmsConnect/tick ()V +MD: net/minecraft/realms/RealmsConnect/m_175031_ (Lcom/mojang/realmsclient/dto/RealmsServer;Lnet/minecraft/client/multiplayer/resolver/ServerAddress;)V net/minecraft/realms/RealmsConnect/connect (Lcom/mojang/realmsclient/dto/RealmsServer;Lnet/minecraft/client/multiplayer/resolver/ServerAddress;)V +MD: net/minecraft/realms/RealmsConnect$1/ (Lnet/minecraft/realms/RealmsConnect;Ljava/lang/String;Ljava/lang/String;ILnet/minecraft/client/Minecraft;Lcom/mojang/realmsclient/dto/RealmsServer;)V net/minecraft/realms/RealmsConnect$1/ (Lnet/minecraft/realms/RealmsConnect;Ljava/lang/String;Ljava/lang/String;ILnet/minecraft/client/Minecraft;Lcom/mojang/realmsclient/dto/RealmsServer;)V +MD: net/minecraft/realms/RealmsConnect$1/m_120725_ (Lnet/minecraft/network/chat/Component;)V net/minecraft/realms/RealmsConnect$1/lambda$run$0 (Lnet/minecraft/network/chat/Component;)V +MD: net/minecraft/realms/RealmsConnect$1/m_120727_ (Lnet/minecraft/client/Minecraft;Lnet/minecraft/realms/DisconnectedRealmsScreen;)V net/minecraft/realms/RealmsConnect$1/lambda$run$1 (Lnet/minecraft/client/Minecraft;Lnet/minecraft/realms/DisconnectedRealmsScreen;)V +MD: net/minecraft/realms/RealmsConnect$1/run ()V net/minecraft/realms/RealmsConnect$1/run ()V +MD: net/minecraft/realms/RealmsLabel/ (Lnet/minecraft/network/chat/Component;III)V net/minecraft/realms/RealmsLabel/ (Lnet/minecraft/network/chat/Component;III)V +MD: net/minecraft/realms/RealmsLabel/m_175034_ ()Lnet/minecraft/network/chat/Component; net/minecraft/realms/RealmsLabel/getText ()Lnet/minecraft/network/chat/Component; +MD: net/minecraft/realms/RealmsLabel/m_88315_ (Lnet/minecraft/client/gui/GuiGraphics;IIF)V net/minecraft/realms/RealmsLabel/render (Lnet/minecraft/client/gui/GuiGraphics;IIF)V +MD: net/minecraft/realms/RealmsObjectSelectionList/ (IIIII)V net/minecraft/realms/RealmsObjectSelectionList/ (IIIII)V +MD: net/minecraft/realms/RealmsObjectSelectionList/m_120767_ (I)V net/minecraft/realms/RealmsObjectSelectionList/setSelectedItem (I)V +MD: net/minecraft/realms/RealmsObjectSelectionList/m_5747_ ()I net/minecraft/realms/RealmsObjectSelectionList/getRowLeft ()I +MD: net/minecraft/realms/RealmsObjectSelectionList/m_5756_ ()I net/minecraft/realms/RealmsObjectSelectionList/getScrollbarPosition ()I +MD: net/minecraft/realms/RealmsObjectSelectionList/m_5759_ ()I net/minecraft/realms/RealmsObjectSelectionList/getRowWidth ()I +MD: net/minecraft/realms/RealmsObjectSelectionList/m_5773_ ()I net/minecraft/realms/RealmsObjectSelectionList/getItemCount ()I +MD: net/minecraft/realms/RealmsObjectSelectionList/m_5775_ ()I net/minecraft/realms/RealmsObjectSelectionList/getMaxPosition ()I +MD: net/minecraft/realms/RealmsObjectSelectionList/m_5988_ (Ljava/util/Collection;)V net/minecraft/realms/RealmsObjectSelectionList/replaceEntries (Ljava/util/Collection;)V +MD: net/minecraft/realms/RealmsObjectSelectionList/m_7085_ (Lnet/minecraft/client/gui/components/ObjectSelectionList$Entry;)I net/minecraft/realms/RealmsObjectSelectionList/addEntry (Lnet/minecraft/client/gui/components/ObjectSelectionList$Entry;)I +MD: net/minecraft/realms/RealmsObjectSelectionList/m_7085_ (Lnet/minecraft/client/gui/components/AbstractSelectionList$Entry;)I net/minecraft/realms/RealmsObjectSelectionList/addEntry (Lnet/minecraft/client/gui/components/AbstractSelectionList$Entry;)I +MD: net/minecraft/realms/RealmsObjectSelectionList/m_7109_ (I)V net/minecraft/realms/RealmsObjectSelectionList/selectItem (I)V +MD: net/minecraft/realms/RealmsObjectSelectionList/m_7178_ ()V net/minecraft/realms/RealmsObjectSelectionList/clear ()V +MD: net/minecraft/realms/RealmsObjectSelectionList/m_7610_ (I)I net/minecraft/realms/RealmsObjectSelectionList/getRowTop (I)I +MD: net/minecraft/realms/RealmsObjectSelectionList/m_7980_ (IIDDII)V net/minecraft/realms/RealmsObjectSelectionList/itemClicked (IIDDII)V +MD: net/minecraft/realms/RealmsScreen/ (Lnet/minecraft/network/chat/Component;)V net/minecraft/realms/RealmsScreen/ (Lnet/minecraft/network/chat/Component;)V +MD: net/minecraft/realms/RealmsScreen/m_120774_ (I)I net/minecraft/realms/RealmsScreen/row (I)I +MD: net/minecraft/realms/RealmsScreen/m_175073_ (Lnet/minecraft/realms/RealmsLabel;)Lnet/minecraft/realms/RealmsLabel; net/minecraft/realms/RealmsScreen/addLabel (Lnet/minecraft/realms/RealmsLabel;)Lnet/minecraft/realms/RealmsLabel; +MD: net/minecraft/realms/RealmsScreen/m_175075_ ()Lnet/minecraft/network/chat/Component; net/minecraft/realms/RealmsScreen/createLabelNarration ()Lnet/minecraft/network/chat/Component; +MD: net/minecraft/realms/RepeatedNarrator/ (Ljava/time/Duration;)V net/minecraft/realms/RepeatedNarrator/ (Ljava/time/Duration;)V +MD: net/minecraft/realms/RepeatedNarrator/m_175078_ (Lnet/minecraft/network/chat/Component;Lnet/minecraft/realms/RepeatedNarrator$Params;)Lnet/minecraft/realms/RepeatedNarrator$Params; net/minecraft/realms/RepeatedNarrator/lambda$narrate$0 (Lnet/minecraft/network/chat/Component;Lnet/minecraft/realms/RepeatedNarrator$Params;)Lnet/minecraft/realms/RepeatedNarrator$Params; +MD: net/minecraft/realms/RepeatedNarrator/m_240428_ (Lnet/minecraft/client/GameNarrator;Lnet/minecraft/network/chat/Component;)V net/minecraft/realms/RepeatedNarrator/narrate (Lnet/minecraft/client/GameNarrator;Lnet/minecraft/network/chat/Component;)V +MD: net/minecraft/realms/RepeatedNarrator$Params/ (Lnet/minecraft/network/chat/Component;Lcom/google/common/util/concurrent/RateLimiter;)V net/minecraft/realms/RepeatedNarrator$Params/ (Lnet/minecraft/network/chat/Component;Lcom/google/common/util/concurrent/RateLimiter;)V +MD: net/minecraft/recipebook/PlaceRecipe/m_135408_ (IIILnet/minecraft/world/item/crafting/Recipe;Ljava/util/Iterator;I)V net/minecraft/recipebook/PlaceRecipe/placeRecipe (IIILnet/minecraft/world/item/crafting/Recipe;Ljava/util/Iterator;I)V +MD: net/minecraft/recipebook/PlaceRecipe/m_5817_ (Ljava/util/Iterator;IIII)V net/minecraft/recipebook/PlaceRecipe/addItemToSlot (Ljava/util/Iterator;IIII)V +MD: net/minecraft/recipebook/ServerPlaceRecipe/ ()V net/minecraft/recipebook/ServerPlaceRecipe/ ()V +MD: net/minecraft/recipebook/ServerPlaceRecipe/ (Lnet/minecraft/world/inventory/RecipeBookMenu;)V net/minecraft/recipebook/ServerPlaceRecipe/ (Lnet/minecraft/world/inventory/RecipeBookMenu;)V +MD: net/minecraft/recipebook/ServerPlaceRecipe/m_135434_ (Lnet/minecraft/server/level/ServerPlayer;Lnet/minecraft/world/item/crafting/Recipe;Z)V net/minecraft/recipebook/ServerPlaceRecipe/recipeClicked (Lnet/minecraft/server/level/ServerPlayer;Lnet/minecraft/world/item/crafting/Recipe;Z)V +MD: net/minecraft/recipebook/ServerPlaceRecipe/m_135438_ (Lnet/minecraft/world/inventory/Slot;Lnet/minecraft/world/item/ItemStack;)V net/minecraft/recipebook/ServerPlaceRecipe/moveItemToGrid (Lnet/minecraft/world/inventory/Slot;Lnet/minecraft/world/item/ItemStack;)V +MD: net/minecraft/recipebook/ServerPlaceRecipe/m_135449_ (ZIZ)I net/minecraft/recipebook/ServerPlaceRecipe/getStackSize (ZIZ)I +MD: net/minecraft/recipebook/ServerPlaceRecipe/m_135453_ ()Z net/minecraft/recipebook/ServerPlaceRecipe/testClearGrid ()Z +MD: net/minecraft/recipebook/ServerPlaceRecipe/m_135454_ ()I net/minecraft/recipebook/ServerPlaceRecipe/getAmountOfFreeSlotsInInventory ()I +MD: net/minecraft/recipebook/ServerPlaceRecipe/m_179844_ ()V net/minecraft/recipebook/ServerPlaceRecipe/clearGrid ()V +MD: net/minecraft/recipebook/ServerPlaceRecipe/m_5817_ (Ljava/util/Iterator;IIII)V net/minecraft/recipebook/ServerPlaceRecipe/addItemToSlot (Ljava/util/Iterator;IIII)V +MD: net/minecraft/recipebook/ServerPlaceRecipe/m_6024_ (Lnet/minecraft/world/item/crafting/Recipe;Z)V net/minecraft/recipebook/ServerPlaceRecipe/handleRecipeClicked (Lnet/minecraft/world/item/crafting/Recipe;Z)V +MD: net/minecraft/resources/DelegatingOps/ (Lcom/mojang/serialization/DynamicOps;)V net/minecraft/resources/DelegatingOps/ (Lcom/mojang/serialization/DynamicOps;)V +MD: net/minecraft/resources/DelegatingOps/compressMaps ()Z net/minecraft/resources/DelegatingOps/compressMaps ()Z +MD: net/minecraft/resources/DelegatingOps/convertTo (Lcom/mojang/serialization/DynamicOps;Ljava/lang/Object;)Ljava/lang/Object; net/minecraft/resources/DelegatingOps/convertTo (Lcom/mojang/serialization/DynamicOps;Ljava/lang/Object;)Ljava/lang/Object; +MD: net/minecraft/resources/DelegatingOps/createBoolean (Z)Ljava/lang/Object; net/minecraft/resources/DelegatingOps/createBoolean (Z)Ljava/lang/Object; +MD: net/minecraft/resources/DelegatingOps/createByte (B)Ljava/lang/Object; net/minecraft/resources/DelegatingOps/createByte (B)Ljava/lang/Object; +MD: net/minecraft/resources/DelegatingOps/createByteList (Ljava/nio/ByteBuffer;)Ljava/lang/Object; net/minecraft/resources/DelegatingOps/createByteList (Ljava/nio/ByteBuffer;)Ljava/lang/Object; +MD: net/minecraft/resources/DelegatingOps/createDouble (D)Ljava/lang/Object; net/minecraft/resources/DelegatingOps/createDouble (D)Ljava/lang/Object; +MD: net/minecraft/resources/DelegatingOps/createFloat (F)Ljava/lang/Object; net/minecraft/resources/DelegatingOps/createFloat (F)Ljava/lang/Object; +MD: net/minecraft/resources/DelegatingOps/createInt (I)Ljava/lang/Object; net/minecraft/resources/DelegatingOps/createInt (I)Ljava/lang/Object; +MD: net/minecraft/resources/DelegatingOps/createIntList (Ljava/util/stream/IntStream;)Ljava/lang/Object; net/minecraft/resources/DelegatingOps/createIntList (Ljava/util/stream/IntStream;)Ljava/lang/Object; +MD: net/minecraft/resources/DelegatingOps/createList (Ljava/util/stream/Stream;)Ljava/lang/Object; net/minecraft/resources/DelegatingOps/createList (Ljava/util/stream/Stream;)Ljava/lang/Object; +MD: net/minecraft/resources/DelegatingOps/createLong (J)Ljava/lang/Object; net/minecraft/resources/DelegatingOps/createLong (J)Ljava/lang/Object; +MD: net/minecraft/resources/DelegatingOps/createLongList (Ljava/util/stream/LongStream;)Ljava/lang/Object; net/minecraft/resources/DelegatingOps/createLongList (Ljava/util/stream/LongStream;)Ljava/lang/Object; +MD: net/minecraft/resources/DelegatingOps/createMap (Ljava/util/stream/Stream;)Ljava/lang/Object; net/minecraft/resources/DelegatingOps/createMap (Ljava/util/stream/Stream;)Ljava/lang/Object; +MD: net/minecraft/resources/DelegatingOps/createNumeric (Ljava/lang/Number;)Ljava/lang/Object; net/minecraft/resources/DelegatingOps/createNumeric (Ljava/lang/Number;)Ljava/lang/Object; +MD: net/minecraft/resources/DelegatingOps/createShort (S)Ljava/lang/Object; net/minecraft/resources/DelegatingOps/createShort (S)Ljava/lang/Object; +MD: net/minecraft/resources/DelegatingOps/createString (Ljava/lang/String;)Ljava/lang/Object; net/minecraft/resources/DelegatingOps/createString (Ljava/lang/String;)Ljava/lang/Object; +MD: net/minecraft/resources/DelegatingOps/empty ()Ljava/lang/Object; net/minecraft/resources/DelegatingOps/empty ()Ljava/lang/Object; +MD: net/minecraft/resources/DelegatingOps/getBooleanValue (Ljava/lang/Object;)Lcom/mojang/serialization/DataResult; net/minecraft/resources/DelegatingOps/getBooleanValue (Ljava/lang/Object;)Lcom/mojang/serialization/DataResult; +MD: net/minecraft/resources/DelegatingOps/getByteBuffer (Ljava/lang/Object;)Lcom/mojang/serialization/DataResult; net/minecraft/resources/DelegatingOps/getByteBuffer (Ljava/lang/Object;)Lcom/mojang/serialization/DataResult; +MD: net/minecraft/resources/DelegatingOps/getIntStream (Ljava/lang/Object;)Lcom/mojang/serialization/DataResult; net/minecraft/resources/DelegatingOps/getIntStream (Ljava/lang/Object;)Lcom/mojang/serialization/DataResult; +MD: net/minecraft/resources/DelegatingOps/getList (Ljava/lang/Object;)Lcom/mojang/serialization/DataResult; net/minecraft/resources/DelegatingOps/getList (Ljava/lang/Object;)Lcom/mojang/serialization/DataResult; +MD: net/minecraft/resources/DelegatingOps/getLongStream (Ljava/lang/Object;)Lcom/mojang/serialization/DataResult; net/minecraft/resources/DelegatingOps/getLongStream (Ljava/lang/Object;)Lcom/mojang/serialization/DataResult; +MD: net/minecraft/resources/DelegatingOps/getMap (Ljava/lang/Object;)Lcom/mojang/serialization/DataResult; net/minecraft/resources/DelegatingOps/getMap (Ljava/lang/Object;)Lcom/mojang/serialization/DataResult; +MD: net/minecraft/resources/DelegatingOps/getMapEntries (Ljava/lang/Object;)Lcom/mojang/serialization/DataResult; net/minecraft/resources/DelegatingOps/getMapEntries (Ljava/lang/Object;)Lcom/mojang/serialization/DataResult; +MD: net/minecraft/resources/DelegatingOps/getMapValues (Ljava/lang/Object;)Lcom/mojang/serialization/DataResult; net/minecraft/resources/DelegatingOps/getMapValues (Ljava/lang/Object;)Lcom/mojang/serialization/DataResult; +MD: net/minecraft/resources/DelegatingOps/getNumberValue (Ljava/lang/Object;)Lcom/mojang/serialization/DataResult; net/minecraft/resources/DelegatingOps/getNumberValue (Ljava/lang/Object;)Lcom/mojang/serialization/DataResult; +MD: net/minecraft/resources/DelegatingOps/getStream (Ljava/lang/Object;)Lcom/mojang/serialization/DataResult; net/minecraft/resources/DelegatingOps/getStream (Ljava/lang/Object;)Lcom/mojang/serialization/DataResult; +MD: net/minecraft/resources/DelegatingOps/getStringValue (Ljava/lang/Object;)Lcom/mojang/serialization/DataResult; net/minecraft/resources/DelegatingOps/getStringValue (Ljava/lang/Object;)Lcom/mojang/serialization/DataResult; +MD: net/minecraft/resources/DelegatingOps/listBuilder ()Lcom/mojang/serialization/ListBuilder; net/minecraft/resources/DelegatingOps/listBuilder ()Lcom/mojang/serialization/ListBuilder; +MD: net/minecraft/resources/DelegatingOps/mapBuilder ()Lcom/mojang/serialization/RecordBuilder; net/minecraft/resources/DelegatingOps/mapBuilder ()Lcom/mojang/serialization/RecordBuilder; +MD: net/minecraft/resources/DelegatingOps/mergeToList (Ljava/lang/Object;Ljava/lang/Object;)Lcom/mojang/serialization/DataResult; net/minecraft/resources/DelegatingOps/mergeToList (Ljava/lang/Object;Ljava/lang/Object;)Lcom/mojang/serialization/DataResult; +MD: net/minecraft/resources/DelegatingOps/mergeToList (Ljava/lang/Object;Ljava/util/List;)Lcom/mojang/serialization/DataResult; net/minecraft/resources/DelegatingOps/mergeToList (Ljava/lang/Object;Ljava/util/List;)Lcom/mojang/serialization/DataResult; +MD: net/minecraft/resources/DelegatingOps/mergeToMap (Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;)Lcom/mojang/serialization/DataResult; net/minecraft/resources/DelegatingOps/mergeToMap (Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;)Lcom/mojang/serialization/DataResult; +MD: net/minecraft/resources/DelegatingOps/mergeToMap (Ljava/lang/Object;Lcom/mojang/serialization/MapLike;)Lcom/mojang/serialization/DataResult; net/minecraft/resources/DelegatingOps/mergeToMap (Ljava/lang/Object;Lcom/mojang/serialization/MapLike;)Lcom/mojang/serialization/DataResult; +MD: net/minecraft/resources/DelegatingOps/remove (Ljava/lang/Object;Ljava/lang/String;)Ljava/lang/Object; net/minecraft/resources/DelegatingOps/remove (Ljava/lang/Object;Ljava/lang/String;)Ljava/lang/Object; +MD: net/minecraft/resources/FileToIdConverter/ (Ljava/lang/String;Ljava/lang/String;)V net/minecraft/resources/FileToIdConverter/ (Ljava/lang/String;Ljava/lang/String;)V +MD: net/minecraft/resources/FileToIdConverter/m_245273_ (Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/resources/FileToIdConverter/fileToId (Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/resources/FileToIdConverter/m_245698_ (Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/resources/FileToIdConverter/idToFile (Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/resources/FileToIdConverter/m_246145_ (Lnet/minecraft/resources/ResourceLocation;)Z net/minecraft/resources/FileToIdConverter/lambda$listMatchingResources$0 (Lnet/minecraft/resources/ResourceLocation;)Z +MD: net/minecraft/resources/FileToIdConverter/m_246568_ (Ljava/lang/String;)Lnet/minecraft/resources/FileToIdConverter; net/minecraft/resources/FileToIdConverter/json (Ljava/lang/String;)Lnet/minecraft/resources/FileToIdConverter; +MD: net/minecraft/resources/FileToIdConverter/m_246659_ (Lnet/minecraft/resources/ResourceLocation;)Z net/minecraft/resources/FileToIdConverter/lambda$listMatchingResourceStacks$1 (Lnet/minecraft/resources/ResourceLocation;)Z +MD: net/minecraft/resources/FileToIdConverter/m_246760_ (Lnet/minecraft/server/packs/resources/ResourceManager;)Ljava/util/Map; net/minecraft/resources/FileToIdConverter/listMatchingResourceStacks (Lnet/minecraft/server/packs/resources/ResourceManager;)Ljava/util/Map; +MD: net/minecraft/resources/FileToIdConverter/m_247457_ (Lnet/minecraft/server/packs/resources/ResourceManager;)Ljava/util/Map; net/minecraft/resources/FileToIdConverter/listMatchingResources (Lnet/minecraft/server/packs/resources/ResourceManager;)Ljava/util/Map; +MD: net/minecraft/resources/HolderSetCodec/ (Lnet/minecraft/resources/ResourceKey;Lcom/mojang/serialization/Codec;Z)V net/minecraft/resources/HolderSetCodec/ (Lnet/minecraft/resources/ResourceKey;Lcom/mojang/serialization/Codec;Z)V +MD: net/minecraft/resources/HolderSetCodec/decode (Lcom/mojang/serialization/DynamicOps;Ljava/lang/Object;)Lcom/mojang/serialization/DataResult; net/minecraft/resources/HolderSetCodec/decode (Lcom/mojang/serialization/DynamicOps;Ljava/lang/Object;)Lcom/mojang/serialization/DataResult; +MD: net/minecraft/resources/HolderSetCodec/encode (Lnet/minecraft/core/HolderSet;Lcom/mojang/serialization/DynamicOps;Ljava/lang/Object;)Lcom/mojang/serialization/DataResult; net/minecraft/resources/HolderSetCodec/encode (Lnet/minecraft/core/HolderSet;Lcom/mojang/serialization/DynamicOps;Ljava/lang/Object;)Lcom/mojang/serialization/DataResult; +MD: net/minecraft/resources/HolderSetCodec/encode (Ljava/lang/Object;Lcom/mojang/serialization/DynamicOps;Ljava/lang/Object;)Lcom/mojang/serialization/DataResult; net/minecraft/resources/HolderSetCodec/encode (Ljava/lang/Object;Lcom/mojang/serialization/DynamicOps;Ljava/lang/Object;)Lcom/mojang/serialization/DataResult; +MD: net/minecraft/resources/HolderSetCodec/m_206663_ (Lcom/mojang/datafixers/util/Either;)Ljava/util/List; net/minecraft/resources/HolderSetCodec/lambda$homogenousList$1 (Lcom/mojang/datafixers/util/Either;)Ljava/util/List; +MD: net/minecraft/resources/HolderSetCodec/m_206665_ (Lcom/mojang/datafixers/util/Pair;)Lcom/mojang/serialization/DataResult; net/minecraft/resources/HolderSetCodec/lambda$decodeWithoutRegistry$7 (Lcom/mojang/datafixers/util/Pair;)Lcom/mojang/serialization/DataResult; +MD: net/minecraft/resources/HolderSetCodec/m_206667_ (Lcom/mojang/serialization/Codec;Z)Lcom/mojang/serialization/Codec; net/minecraft/resources/HolderSetCodec/homogenousList (Lcom/mojang/serialization/Codec;Z)Lcom/mojang/serialization/Codec; +MD: net/minecraft/resources/HolderSetCodec/m_206670_ (Lcom/mojang/serialization/DynamicOps;Ljava/lang/Object;)Lcom/mojang/serialization/DataResult; net/minecraft/resources/HolderSetCodec/decodeWithoutRegistry (Lcom/mojang/serialization/DynamicOps;Ljava/lang/Object;)Lcom/mojang/serialization/DataResult; +MD: net/minecraft/resources/HolderSetCodec/m_206677_ (Lnet/minecraft/core/HolderGetter;Lcom/mojang/datafixers/util/Either;)Lnet/minecraft/core/HolderSet; net/minecraft/resources/HolderSetCodec/lambda$decode$3 (Lnet/minecraft/core/HolderGetter;Lcom/mojang/datafixers/util/Either;)Lnet/minecraft/core/HolderSet; +MD: net/minecraft/resources/HolderSetCodec/m_206680_ (Lnet/minecraft/core/HolderGetter;Lcom/mojang/datafixers/util/Pair;)Lcom/mojang/datafixers/util/Pair; net/minecraft/resources/HolderSetCodec/lambda$decode$4 (Lnet/minecraft/core/HolderGetter;Lcom/mojang/datafixers/util/Pair;)Lcom/mojang/datafixers/util/Pair; +MD: net/minecraft/resources/HolderSetCodec/m_206683_ (Ljava/util/List;)Lcom/mojang/datafixers/util/Either; net/minecraft/resources/HolderSetCodec/lambda$homogenousList$2 (Ljava/util/List;)Lcom/mojang/datafixers/util/Either; +MD: net/minecraft/resources/HolderSetCodec/m_206685_ (Lnet/minecraft/resources/ResourceKey;Lcom/mojang/serialization/Codec;Z)Lcom/mojang/serialization/Codec; net/minecraft/resources/HolderSetCodec/create (Lnet/minecraft/resources/ResourceKey;Lcom/mojang/serialization/Codec;Z)Lcom/mojang/serialization/Codec; +MD: net/minecraft/resources/HolderSetCodec/m_206689_ (Lnet/minecraft/core/HolderSet;Lcom/mojang/serialization/DynamicOps;Ljava/lang/Object;)Lcom/mojang/serialization/DataResult; net/minecraft/resources/HolderSetCodec/encodeWithoutRegistry (Lnet/minecraft/core/HolderSet;Lcom/mojang/serialization/DynamicOps;Ljava/lang/Object;)Lcom/mojang/serialization/DataResult; +MD: net/minecraft/resources/HolderSetCodec/m_206693_ (Ljava/util/List;)Ljava/util/List; net/minecraft/resources/HolderSetCodec/lambda$homogenousList$0 (Ljava/util/List;)Ljava/util/List; +MD: net/minecraft/resources/HolderSetCodec/m_274069_ (Lnet/minecraft/core/HolderSet;)Ljava/lang/String; net/minecraft/resources/HolderSetCodec/lambda$encode$5 (Lnet/minecraft/core/HolderSet;)Ljava/lang/String; +MD: net/minecraft/resources/HolderSetCodec/m_274070_ (Lnet/minecraft/core/Holder;)Ljava/lang/String; net/minecraft/resources/HolderSetCodec/lambda$decodeWithoutRegistry$6 (Lnet/minecraft/core/Holder;)Ljava/lang/String; +MD: net/minecraft/resources/RegistryDataLoader/ ()V net/minecraft/resources/RegistryDataLoader/ ()V +MD: net/minecraft/resources/RegistryDataLoader/ ()V net/minecraft/resources/RegistryDataLoader/ ()V +MD: net/minecraft/resources/RegistryDataLoader/m_245166_ (Ljava/io/PrintWriter;Ljava/util/Map$Entry;)V net/minecraft/resources/RegistryDataLoader/lambda$logErrors$8 (Ljava/io/PrintWriter;Ljava/util/Map$Entry;)V +MD: net/minecraft/resources/RegistryDataLoader/m_245333_ (Ljava/util/Map$Entry;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/resources/RegistryDataLoader/lambda$logErrors$5 (Ljava/util/Map$Entry;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/resources/RegistryDataLoader/m_245344_ (Ljava/lang/String;)V net/minecraft/resources/RegistryDataLoader/lambda$loadRegistryContents$9 (Ljava/lang/String;)V +MD: net/minecraft/resources/RegistryDataLoader/m_245594_ (Ljava/util/Map;Lnet/minecraft/resources/RegistryDataLoader$RegistryData;)Lcom/mojang/datafixers/util/Pair; net/minecraft/resources/RegistryDataLoader/lambda$load$0 (Ljava/util/Map;Lnet/minecraft/resources/RegistryDataLoader$RegistryData;)Lcom/mojang/datafixers/util/Pair; +MD: net/minecraft/resources/RegistryDataLoader/m_245896_ (Ljava/util/Map;)V net/minecraft/resources/RegistryDataLoader/logErrors (Ljava/util/Map;)V +MD: net/minecraft/resources/RegistryDataLoader/m_246019_ (Ljava/io/PrintWriter;Ljava/util/Map$Entry;)V net/minecraft/resources/RegistryDataLoader/lambda$logErrors$7 (Ljava/io/PrintWriter;Ljava/util/Map$Entry;)V +MD: net/minecraft/resources/RegistryDataLoader/m_246181_ (Ljava/util/Map$Entry;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/resources/RegistryDataLoader/lambda$logErrors$6 (Ljava/util/Map$Entry;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/resources/RegistryDataLoader/m_246502_ (Lnet/minecraft/resources/ResourceLocation;)Ljava/lang/String; net/minecraft/resources/RegistryDataLoader/registryDirPath (Lnet/minecraft/resources/ResourceLocation;)Ljava/lang/String; +MD: net/minecraft/resources/RegistryDataLoader/m_247207_ (Lnet/minecraft/server/packs/resources/ResourceManager;Lnet/minecraft/core/RegistryAccess;Ljava/util/List;)Lnet/minecraft/core/RegistryAccess$Frozen; net/minecraft/resources/RegistryDataLoader/load (Lnet/minecraft/server/packs/resources/ResourceManager;Lnet/minecraft/core/RegistryAccess;Ljava/util/List;)Lnet/minecraft/core/RegistryAccess$Frozen; +MD: net/minecraft/resources/RegistryDataLoader/m_254784_ (Ljava/util/Map;Lnet/minecraft/core/RegistryAccess$RegistryEntry;)V net/minecraft/resources/RegistryDataLoader/lambda$createContext$3 (Ljava/util/Map;Lnet/minecraft/core/RegistryAccess$RegistryEntry;)V +MD: net/minecraft/resources/RegistryDataLoader/m_254785_ (Lnet/minecraft/server/packs/resources/ResourceManager;Lnet/minecraft/resources/RegistryOps$RegistryInfoLookup;Lcom/mojang/datafixers/util/Pair;)V net/minecraft/resources/RegistryDataLoader/lambda$load$1 (Lnet/minecraft/server/packs/resources/ResourceManager;Lnet/minecraft/resources/RegistryOps$RegistryInfoLookup;Lcom/mojang/datafixers/util/Pair;)V +MD: net/minecraft/resources/RegistryDataLoader/m_255016_ (Lnet/minecraft/core/Registry;)Lnet/minecraft/resources/RegistryOps$RegistryInfo; net/minecraft/resources/RegistryDataLoader/createInfoForContextRegistry (Lnet/minecraft/core/Registry;)Lnet/minecraft/resources/RegistryOps$RegistryInfo; +MD: net/minecraft/resources/RegistryDataLoader/m_255048_ (Lnet/minecraft/resources/RegistryOps$RegistryInfoLookup;Lnet/minecraft/server/packs/resources/ResourceManager;Lnet/minecraft/resources/ResourceKey;Lnet/minecraft/core/WritableRegistry;Lcom/mojang/serialization/Decoder;Ljava/util/Map;)V net/minecraft/resources/RegistryDataLoader/loadRegistryContents (Lnet/minecraft/resources/RegistryOps$RegistryInfoLookup;Lnet/minecraft/server/packs/resources/ResourceManager;Lnet/minecraft/resources/ResourceKey;Lnet/minecraft/core/WritableRegistry;Lcom/mojang/serialization/Decoder;Ljava/util/Map;)V +MD: net/minecraft/resources/RegistryDataLoader/m_255259_ (Lnet/minecraft/core/WritableRegistry;)Lnet/minecraft/resources/RegistryOps$RegistryInfo; net/minecraft/resources/RegistryDataLoader/createInfoForNewRegistry (Lnet/minecraft/core/WritableRegistry;)Lnet/minecraft/resources/RegistryOps$RegistryInfo; +MD: net/minecraft/resources/RegistryDataLoader/m_255261_ (Lnet/minecraft/core/RegistryAccess;Ljava/util/List;)Lnet/minecraft/resources/RegistryOps$RegistryInfoLookup; net/minecraft/resources/RegistryDataLoader/createContext (Lnet/minecraft/core/RegistryAccess;Ljava/util/List;)Lnet/minecraft/resources/RegistryOps$RegistryInfoLookup; +MD: net/minecraft/resources/RegistryDataLoader/m_257130_ (Ljava/util/Map;Lcom/mojang/datafixers/util/Pair;)V net/minecraft/resources/RegistryDataLoader/lambda$createContext$4 (Ljava/util/Map;Lcom/mojang/datafixers/util/Pair;)V +MD: net/minecraft/resources/RegistryDataLoader/m_257131_ (Ljava/util/Map;Lcom/mojang/datafixers/util/Pair;)V net/minecraft/resources/RegistryDataLoader/lambda$load$2 (Ljava/util/Map;Lcom/mojang/datafixers/util/Pair;)V +MD: net/minecraft/resources/RegistryDataLoader$1/ (Ljava/util/Map;)V net/minecraft/resources/RegistryDataLoader$1/ (Ljava/util/Map;)V +MD: net/minecraft/resources/RegistryDataLoader$1/m_254838_ (Lnet/minecraft/resources/ResourceKey;)Ljava/util/Optional; net/minecraft/resources/RegistryDataLoader$1/lookup (Lnet/minecraft/resources/ResourceKey;)Ljava/util/Optional; +MD: net/minecraft/resources/RegistryDataLoader$Loader/m_245441_ (Lnet/minecraft/server/packs/resources/ResourceManager;Lnet/minecraft/resources/RegistryOps$RegistryInfoLookup;)V net/minecraft/resources/RegistryDataLoader$Loader/load (Lnet/minecraft/server/packs/resources/ResourceManager;Lnet/minecraft/resources/RegistryOps$RegistryInfoLookup;)V +MD: net/minecraft/resources/RegistryDataLoader$RegistryData/ (Lnet/minecraft/resources/ResourceKey;Lcom/mojang/serialization/Codec;)V net/minecraft/resources/RegistryDataLoader$RegistryData/ (Lnet/minecraft/resources/ResourceKey;Lcom/mojang/serialization/Codec;)V +MD: net/minecraft/resources/RegistryDataLoader$RegistryData/equals (Ljava/lang/Object;)Z net/minecraft/resources/RegistryDataLoader$RegistryData/equals (Ljava/lang/Object;)Z +MD: net/minecraft/resources/RegistryDataLoader$RegistryData/f_243794_ ()Lnet/minecraft/resources/ResourceKey; net/minecraft/resources/RegistryDataLoader$RegistryData/key ()Lnet/minecraft/resources/ResourceKey; +MD: net/minecraft/resources/RegistryDataLoader$RegistryData/f_244580_ ()Lcom/mojang/serialization/Codec; net/minecraft/resources/RegistryDataLoader$RegistryData/elementCodec ()Lcom/mojang/serialization/Codec; +MD: net/minecraft/resources/RegistryDataLoader$RegistryData/hashCode ()I net/minecraft/resources/RegistryDataLoader$RegistryData/hashCode ()I +MD: net/minecraft/resources/RegistryDataLoader$RegistryData/m_245364_ (Lcom/mojang/serialization/Lifecycle;Ljava/util/Map;)Lcom/mojang/datafixers/util/Pair; net/minecraft/resources/RegistryDataLoader$RegistryData/create (Lcom/mojang/serialization/Lifecycle;Ljava/util/Map;)Lcom/mojang/datafixers/util/Pair; +MD: net/minecraft/resources/RegistryDataLoader$RegistryData/m_254786_ (Lnet/minecraft/core/WritableRegistry;Ljava/util/Map;Lnet/minecraft/server/packs/resources/ResourceManager;Lnet/minecraft/resources/RegistryOps$RegistryInfoLookup;)V net/minecraft/resources/RegistryDataLoader$RegistryData/lambda$create$0 (Lnet/minecraft/core/WritableRegistry;Ljava/util/Map;Lnet/minecraft/server/packs/resources/ResourceManager;Lnet/minecraft/resources/RegistryOps$RegistryInfoLookup;)V +MD: net/minecraft/resources/RegistryDataLoader$RegistryData/toString ()Ljava/lang/String; net/minecraft/resources/RegistryDataLoader$RegistryData/toString ()Ljava/lang/String; +MD: net/minecraft/resources/RegistryFileCodec/ (Lnet/minecraft/resources/ResourceKey;Lcom/mojang/serialization/Codec;Z)V net/minecraft/resources/RegistryFileCodec/ (Lnet/minecraft/resources/ResourceKey;Lcom/mojang/serialization/Codec;Z)V +MD: net/minecraft/resources/RegistryFileCodec/decode (Lcom/mojang/serialization/DynamicOps;Ljava/lang/Object;)Lcom/mojang/serialization/DataResult; net/minecraft/resources/RegistryFileCodec/decode (Lcom/mojang/serialization/DynamicOps;Ljava/lang/Object;)Lcom/mojang/serialization/DataResult; +MD: net/minecraft/resources/RegistryFileCodec/encode (Lnet/minecraft/core/Holder;Lcom/mojang/serialization/DynamicOps;Ljava/lang/Object;)Lcom/mojang/serialization/DataResult; net/minecraft/resources/RegistryFileCodec/encode (Lnet/minecraft/core/Holder;Lcom/mojang/serialization/DynamicOps;Ljava/lang/Object;)Lcom/mojang/serialization/DataResult; +MD: net/minecraft/resources/RegistryFileCodec/encode (Ljava/lang/Object;Lcom/mojang/serialization/DynamicOps;Ljava/lang/Object;)Lcom/mojang/serialization/DataResult; net/minecraft/resources/RegistryFileCodec/encode (Ljava/lang/Object;Lcom/mojang/serialization/DynamicOps;Ljava/lang/Object;)Lcom/mojang/serialization/DataResult; +MD: net/minecraft/resources/RegistryFileCodec/m_135589_ (Lnet/minecraft/resources/ResourceKey;Lcom/mojang/serialization/Codec;)Lnet/minecraft/resources/RegistryFileCodec; net/minecraft/resources/RegistryFileCodec/create (Lnet/minecraft/resources/ResourceKey;Lcom/mojang/serialization/Codec;)Lnet/minecraft/resources/RegistryFileCodec; +MD: net/minecraft/resources/RegistryFileCodec/m_135592_ (Lnet/minecraft/resources/ResourceKey;Lcom/mojang/serialization/Codec;Z)Lnet/minecraft/resources/RegistryFileCodec; net/minecraft/resources/RegistryFileCodec/create (Lnet/minecraft/resources/ResourceKey;Lcom/mojang/serialization/Codec;Z)Lnet/minecraft/resources/RegistryFileCodec; +MD: net/minecraft/resources/RegistryFileCodec/m_206704_ (Lcom/mojang/datafixers/util/Pair;Lnet/minecraft/core/Holder$Reference;)Lcom/mojang/datafixers/util/Pair; net/minecraft/resources/RegistryFileCodec/lambda$decode$8 (Lcom/mojang/datafixers/util/Pair;Lnet/minecraft/core/Holder$Reference;)Lcom/mojang/datafixers/util/Pair; +MD: net/minecraft/resources/RegistryFileCodec/m_206707_ (Lcom/mojang/serialization/DynamicOps;Ljava/lang/Object;Ljava/lang/Object;)Lcom/mojang/serialization/DataResult; net/minecraft/resources/RegistryFileCodec/lambda$encode$2 (Lcom/mojang/serialization/DynamicOps;Ljava/lang/Object;Ljava/lang/Object;)Lcom/mojang/serialization/DataResult; +MD: net/minecraft/resources/RegistryFileCodec/m_206711_ (Lcom/mojang/serialization/DynamicOps;Ljava/lang/Object;Lnet/minecraft/resources/ResourceKey;)Lcom/mojang/serialization/DataResult; net/minecraft/resources/RegistryFileCodec/lambda$encode$1 (Lcom/mojang/serialization/DynamicOps;Ljava/lang/Object;Lnet/minecraft/resources/ResourceKey;)Lcom/mojang/serialization/DataResult; +MD: net/minecraft/resources/RegistryFileCodec/m_206719_ (Lcom/mojang/datafixers/util/Pair;)Lcom/mojang/datafixers/util/Pair; net/minecraft/resources/RegistryFileCodec/lambda$decode$5 (Lcom/mojang/datafixers/util/Pair;)Lcom/mojang/datafixers/util/Pair; +MD: net/minecraft/resources/RegistryFileCodec/m_214211_ (Lcom/mojang/datafixers/util/Pair;)Lcom/mojang/datafixers/util/Pair; net/minecraft/resources/RegistryFileCodec/lambda$decode$9 (Lcom/mojang/datafixers/util/Pair;)Lcom/mojang/datafixers/util/Pair; +MD: net/minecraft/resources/RegistryFileCodec/m_274071_ ()Ljava/lang/String; net/minecraft/resources/RegistryFileCodec/lambda$decode$4 ()Ljava/lang/String; +MD: net/minecraft/resources/RegistryFileCodec/m_274072_ (Lnet/minecraft/resources/ResourceKey;)Ljava/lang/String; net/minecraft/resources/RegistryFileCodec/lambda$decode$6 (Lnet/minecraft/resources/ResourceKey;)Ljava/lang/String; +MD: net/minecraft/resources/RegistryFileCodec/m_274073_ ()Ljava/lang/String; net/minecraft/resources/RegistryFileCodec/lambda$decode$3 ()Ljava/lang/String; +MD: net/minecraft/resources/RegistryFileCodec/m_274074_ (Lnet/minecraft/resources/ResourceKey;)Lcom/mojang/serialization/DataResult; net/minecraft/resources/RegistryFileCodec/lambda$decode$7 (Lnet/minecraft/resources/ResourceKey;)Lcom/mojang/serialization/DataResult; +MD: net/minecraft/resources/RegistryFileCodec/m_274075_ (Lnet/minecraft/core/Holder;)Ljava/lang/String; net/minecraft/resources/RegistryFileCodec/lambda$encode$0 (Lnet/minecraft/core/Holder;)Ljava/lang/String; +MD: net/minecraft/resources/RegistryFileCodec/toString ()Ljava/lang/String; net/minecraft/resources/RegistryFileCodec/toString ()Ljava/lang/String; +MD: net/minecraft/resources/RegistryFixedCodec/ (Lnet/minecraft/resources/ResourceKey;)V net/minecraft/resources/RegistryFixedCodec/ (Lnet/minecraft/resources/ResourceKey;)V +MD: net/minecraft/resources/RegistryFixedCodec/decode (Lcom/mojang/serialization/DynamicOps;Ljava/lang/Object;)Lcom/mojang/serialization/DataResult; net/minecraft/resources/RegistryFixedCodec/decode (Lcom/mojang/serialization/DynamicOps;Ljava/lang/Object;)Lcom/mojang/serialization/DataResult; +MD: net/minecraft/resources/RegistryFixedCodec/encode (Lnet/minecraft/core/Holder;Lcom/mojang/serialization/DynamicOps;Ljava/lang/Object;)Lcom/mojang/serialization/DataResult; net/minecraft/resources/RegistryFixedCodec/encode (Lnet/minecraft/core/Holder;Lcom/mojang/serialization/DynamicOps;Ljava/lang/Object;)Lcom/mojang/serialization/DataResult; +MD: net/minecraft/resources/RegistryFixedCodec/encode (Ljava/lang/Object;Lcom/mojang/serialization/DynamicOps;Ljava/lang/Object;)Lcom/mojang/serialization/DataResult; net/minecraft/resources/RegistryFixedCodec/encode (Ljava/lang/Object;Lcom/mojang/serialization/DynamicOps;Ljava/lang/Object;)Lcom/mojang/serialization/DataResult; +MD: net/minecraft/resources/RegistryFixedCodec/m_206724_ (Lcom/mojang/serialization/DynamicOps;Ljava/lang/Object;Lnet/minecraft/resources/ResourceKey;)Lcom/mojang/serialization/DataResult; net/minecraft/resources/RegistryFixedCodec/lambda$encode$1 (Lcom/mojang/serialization/DynamicOps;Ljava/lang/Object;Lnet/minecraft/resources/ResourceKey;)Lcom/mojang/serialization/DataResult; +MD: net/minecraft/resources/RegistryFixedCodec/m_206740_ (Lnet/minecraft/resources/ResourceKey;)Lnet/minecraft/resources/RegistryFixedCodec; net/minecraft/resources/RegistryFixedCodec/create (Lnet/minecraft/resources/ResourceKey;)Lnet/minecraft/resources/RegistryFixedCodec; +MD: net/minecraft/resources/RegistryFixedCodec/m_214216_ (Lcom/mojang/datafixers/util/Pair;Lnet/minecraft/core/Holder$Reference;)Lcom/mojang/datafixers/util/Pair; net/minecraft/resources/RegistryFixedCodec/lambda$decode$7 (Lcom/mojang/datafixers/util/Pair;Lnet/minecraft/core/Holder$Reference;)Lcom/mojang/datafixers/util/Pair; +MD: net/minecraft/resources/RegistryFixedCodec/m_254788_ (Ljava/util/Optional;Lcom/mojang/datafixers/util/Pair;)Lcom/mojang/serialization/DataResult; net/minecraft/resources/RegistryFixedCodec/lambda$decode$8 (Ljava/util/Optional;Lcom/mojang/datafixers/util/Pair;)Lcom/mojang/serialization/DataResult; +MD: net/minecraft/resources/RegistryFixedCodec/m_274076_ (Lnet/minecraft/resources/ResourceLocation;)Lcom/mojang/serialization/DataResult; net/minecraft/resources/RegistryFixedCodec/lambda$decode$6 (Lnet/minecraft/resources/ResourceLocation;)Lcom/mojang/serialization/DataResult; +MD: net/minecraft/resources/RegistryFixedCodec/m_274077_ (Lnet/minecraft/resources/ResourceLocation;)Ljava/lang/String; net/minecraft/resources/RegistryFixedCodec/lambda$decode$5 (Lnet/minecraft/resources/ResourceLocation;)Ljava/lang/String; +MD: net/minecraft/resources/RegistryFixedCodec/m_274078_ ()Ljava/lang/String; net/minecraft/resources/RegistryFixedCodec/lambda$encode$4 ()Ljava/lang/String; +MD: net/minecraft/resources/RegistryFixedCodec/m_274079_ ()Ljava/lang/String; net/minecraft/resources/RegistryFixedCodec/lambda$decode$9 ()Ljava/lang/String; +MD: net/minecraft/resources/RegistryFixedCodec/m_274080_ (Lnet/minecraft/core/Holder;)Ljava/lang/String; net/minecraft/resources/RegistryFixedCodec/lambda$encode$0 (Lnet/minecraft/core/Holder;)Ljava/lang/String; +MD: net/minecraft/resources/RegistryFixedCodec/m_274081_ (Ljava/lang/Object;)Lcom/mojang/serialization/DataResult; net/minecraft/resources/RegistryFixedCodec/lambda$encode$3 (Ljava/lang/Object;)Lcom/mojang/serialization/DataResult; +MD: net/minecraft/resources/RegistryFixedCodec/m_274082_ ()Ljava/lang/String; net/minecraft/resources/RegistryFixedCodec/lambda$encode$2 ()Ljava/lang/String; +MD: net/minecraft/resources/RegistryFixedCodec/toString ()Ljava/lang/String; net/minecraft/resources/RegistryFixedCodec/toString ()Ljava/lang/String; +MD: net/minecraft/resources/RegistryOps/ (Lcom/mojang/serialization/DynamicOps;Lnet/minecraft/resources/RegistryOps$RegistryInfoLookup;)V net/minecraft/resources/RegistryOps/ (Lcom/mojang/serialization/DynamicOps;Lnet/minecraft/resources/RegistryOps$RegistryInfoLookup;)V +MD: net/minecraft/resources/RegistryOps/m_254790_ (Lnet/minecraft/resources/ResourceKey;Lnet/minecraft/resources/RegistryOps$RegistryInfo;)Ljava/util/Optional; net/minecraft/resources/RegistryOps/lambda$retrieveElement$6 (Lnet/minecraft/resources/ResourceKey;Lnet/minecraft/resources/RegistryOps$RegistryInfo;)Ljava/util/Optional; +MD: net/minecraft/resources/RegistryOps/m_254793_ (Ljava/lang/Object;)Lnet/minecraft/core/Holder$Reference; net/minecraft/resources/RegistryOps/lambda$retrieveElement$11 (Ljava/lang/Object;)Lnet/minecraft/core/Holder$Reference; +MD: net/minecraft/resources/RegistryOps/m_254795_ (Ljava/lang/Object;)Lnet/minecraft/core/HolderGetter; net/minecraft/resources/RegistryOps/lambda$retrieveGetter$5 (Ljava/lang/Object;)Lnet/minecraft/core/HolderGetter; +MD: net/minecraft/resources/RegistryOps/m_254796_ (Lnet/minecraft/resources/RegistryOps$RegistryInfo;)Lcom/mojang/serialization/DataResult; net/minecraft/resources/RegistryOps/lambda$retrieveGetter$0 (Lnet/minecraft/resources/RegistryOps$RegistryInfo;)Lcom/mojang/serialization/DataResult; +MD: net/minecraft/resources/RegistryOps/m_254866_ (Lnet/minecraft/resources/ResourceKey;)Lcom/mojang/serialization/codecs/RecordCodecBuilder; net/minecraft/resources/RegistryOps/retrieveElement (Lnet/minecraft/resources/ResourceKey;)Lcom/mojang/serialization/codecs/RecordCodecBuilder; +MD: net/minecraft/resources/RegistryOps/m_255006_ (Lnet/minecraft/resources/ResourceKey;)Ljava/util/Optional; net/minecraft/resources/RegistryOps/getter (Lnet/minecraft/resources/ResourceKey;)Ljava/util/Optional; +MD: net/minecraft/resources/RegistryOps/m_255056_ (Lnet/minecraft/resources/ResourceKey;)Ljava/util/Optional; net/minecraft/resources/RegistryOps/owner (Lnet/minecraft/resources/ResourceKey;)Ljava/util/Optional; +MD: net/minecraft/resources/RegistryOps/m_255058_ (Lcom/mojang/serialization/DynamicOps;Lnet/minecraft/core/HolderLookup$Provider;)Lnet/minecraft/resources/RegistryOps; net/minecraft/resources/RegistryOps/create (Lcom/mojang/serialization/DynamicOps;Lnet/minecraft/core/HolderLookup$Provider;)Lnet/minecraft/resources/RegistryOps; +MD: net/minecraft/resources/RegistryOps/m_255060_ (Lcom/mojang/serialization/DynamicOps;Lnet/minecraft/resources/RegistryOps$RegistryInfoLookup;)Lnet/minecraft/resources/RegistryOps; net/minecraft/resources/RegistryOps/create (Lcom/mojang/serialization/DynamicOps;Lnet/minecraft/resources/RegistryOps$RegistryInfoLookup;)Lnet/minecraft/resources/RegistryOps; +MD: net/minecraft/resources/RegistryOps/m_255175_ (Lnet/minecraft/resources/ResourceKey;)Lcom/mojang/serialization/codecs/RecordCodecBuilder; net/minecraft/resources/RegistryOps/retrieveGetter (Lnet/minecraft/resources/ResourceKey;)Lcom/mojang/serialization/codecs/RecordCodecBuilder; +MD: net/minecraft/resources/RegistryOps/m_255214_ (Lnet/minecraft/resources/RegistryOps$RegistryInfoLookup;)Lnet/minecraft/resources/RegistryOps$RegistryInfoLookup; net/minecraft/resources/RegistryOps/memoizeLookup (Lnet/minecraft/resources/RegistryOps$RegistryInfoLookup;)Lnet/minecraft/resources/RegistryOps$RegistryInfoLookup; +MD: net/minecraft/resources/RegistryOps/m_274083_ ()Ljava/lang/String; net/minecraft/resources/RegistryOps/lambda$retrieveGetter$3 ()Ljava/lang/String; +MD: net/minecraft/resources/RegistryOps/m_274084_ (Lnet/minecraft/resources/ResourceKey;)Ljava/lang/String; net/minecraft/resources/RegistryOps/lambda$retrieveGetter$1 (Lnet/minecraft/resources/ResourceKey;)Ljava/lang/String; +MD: net/minecraft/resources/RegistryOps/m_274085_ (Lnet/minecraft/resources/ResourceKey;Lnet/minecraft/resources/ResourceKey;Lcom/mojang/serialization/DynamicOps;)Lcom/mojang/serialization/DataResult; net/minecraft/resources/RegistryOps/lambda$retrieveElement$10 (Lnet/minecraft/resources/ResourceKey;Lnet/minecraft/resources/ResourceKey;Lcom/mojang/serialization/DynamicOps;)Lcom/mojang/serialization/DataResult; +MD: net/minecraft/resources/RegistryOps/m_274086_ (Lnet/minecraft/resources/ResourceKey;)Ljava/lang/String; net/minecraft/resources/RegistryOps/lambda$retrieveElement$7 (Lnet/minecraft/resources/ResourceKey;)Ljava/lang/String; +MD: net/minecraft/resources/RegistryOps/m_274087_ (Lnet/minecraft/resources/ResourceKey;Lcom/mojang/serialization/DynamicOps;)Lcom/mojang/serialization/DataResult; net/minecraft/resources/RegistryOps/lambda$retrieveGetter$4 (Lnet/minecraft/resources/ResourceKey;Lcom/mojang/serialization/DynamicOps;)Lcom/mojang/serialization/DataResult; +MD: net/minecraft/resources/RegistryOps/m_274088_ (Lnet/minecraft/resources/ResourceKey;)Lcom/mojang/serialization/DataResult; net/minecraft/resources/RegistryOps/lambda$retrieveGetter$2 (Lnet/minecraft/resources/ResourceKey;)Lcom/mojang/serialization/DataResult; +MD: net/minecraft/resources/RegistryOps/m_274089_ ()Ljava/lang/String; net/minecraft/resources/RegistryOps/lambda$retrieveElement$9 ()Ljava/lang/String; +MD: net/minecraft/resources/RegistryOps/m_274090_ (Lnet/minecraft/resources/ResourceKey;)Lcom/mojang/serialization/DataResult; net/minecraft/resources/RegistryOps/lambda$retrieveElement$8 (Lnet/minecraft/resources/ResourceKey;)Lcom/mojang/serialization/DataResult; +MD: net/minecraft/resources/RegistryOps$1/ (Lnet/minecraft/resources/RegistryOps$RegistryInfoLookup;)V net/minecraft/resources/RegistryOps$1/ (Lnet/minecraft/resources/RegistryOps$RegistryInfoLookup;)V +MD: net/minecraft/resources/RegistryOps$1/m_254838_ (Lnet/minecraft/resources/ResourceKey;)Ljava/util/Optional; net/minecraft/resources/RegistryOps$1/lookup (Lnet/minecraft/resources/ResourceKey;)Ljava/util/Optional; +MD: net/minecraft/resources/RegistryOps$2/ (Lnet/minecraft/core/HolderLookup$Provider;)V net/minecraft/resources/RegistryOps$2/ (Lnet/minecraft/core/HolderLookup$Provider;)V +MD: net/minecraft/resources/RegistryOps$2/m_254838_ (Lnet/minecraft/resources/ResourceKey;)Ljava/util/Optional; net/minecraft/resources/RegistryOps$2/lookup (Lnet/minecraft/resources/ResourceKey;)Ljava/util/Optional; +MD: net/minecraft/resources/RegistryOps$2/m_257132_ (Lnet/minecraft/core/HolderLookup$RegistryLookup;)Lnet/minecraft/resources/RegistryOps$RegistryInfo; net/minecraft/resources/RegistryOps$2/lambda$lookup$0 (Lnet/minecraft/core/HolderLookup$RegistryLookup;)Lnet/minecraft/resources/RegistryOps$RegistryInfo; +MD: net/minecraft/resources/RegistryOps$RegistryInfo/ (Lnet/minecraft/core/HolderOwner;Lnet/minecraft/core/HolderGetter;Lcom/mojang/serialization/Lifecycle;)V net/minecraft/resources/RegistryOps$RegistryInfo/ (Lnet/minecraft/core/HolderOwner;Lnet/minecraft/core/HolderGetter;Lcom/mojang/serialization/Lifecycle;)V +MD: net/minecraft/resources/RegistryOps$RegistryInfo/equals (Ljava/lang/Object;)Z net/minecraft/resources/RegistryOps$RegistryInfo/equals (Ljava/lang/Object;)Z +MD: net/minecraft/resources/RegistryOps$RegistryInfo/f_254675_ ()Lnet/minecraft/core/HolderOwner; net/minecraft/resources/RegistryOps$RegistryInfo/owner ()Lnet/minecraft/core/HolderOwner; +MD: net/minecraft/resources/RegistryOps$RegistryInfo/f_254724_ ()Lnet/minecraft/core/HolderGetter; net/minecraft/resources/RegistryOps$RegistryInfo/getter ()Lnet/minecraft/core/HolderGetter; +MD: net/minecraft/resources/RegistryOps$RegistryInfo/f_254751_ ()Lcom/mojang/serialization/Lifecycle; net/minecraft/resources/RegistryOps$RegistryInfo/elementsLifecycle ()Lcom/mojang/serialization/Lifecycle; +MD: net/minecraft/resources/RegistryOps$RegistryInfo/hashCode ()I net/minecraft/resources/RegistryOps$RegistryInfo/hashCode ()I +MD: net/minecraft/resources/RegistryOps$RegistryInfo/toString ()Ljava/lang/String; net/minecraft/resources/RegistryOps$RegistryInfo/toString ()Ljava/lang/String; +MD: net/minecraft/resources/RegistryOps$RegistryInfoLookup/m_254838_ (Lnet/minecraft/resources/ResourceKey;)Ljava/util/Optional; net/minecraft/resources/RegistryOps$RegistryInfoLookup/lookup (Lnet/minecraft/resources/ResourceKey;)Ljava/util/Optional; +MD: net/minecraft/resources/ResourceKey/ ()V net/minecraft/resources/ResourceKey/ ()V +MD: net/minecraft/resources/ResourceKey/ (Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/resources/ResourceLocation;)V net/minecraft/resources/ResourceKey/ (Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/resources/ResourceLocation;)V +MD: net/minecraft/resources/ResourceKey/m_135782_ ()Lnet/minecraft/resources/ResourceLocation; net/minecraft/resources/ResourceKey/location ()Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/resources/ResourceKey/m_135783_ (Lnet/minecraft/resources/ResourceKey;)Z net/minecraft/resources/ResourceKey/isFor (Lnet/minecraft/resources/ResourceKey;)Z +MD: net/minecraft/resources/ResourceKey/m_135785_ (Lnet/minecraft/resources/ResourceKey;Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/resources/ResourceKey; net/minecraft/resources/ResourceKey/create (Lnet/minecraft/resources/ResourceKey;Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/resources/ResourceKey; +MD: net/minecraft/resources/ResourceKey/m_135788_ (Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/resources/ResourceKey; net/minecraft/resources/ResourceKey/createRegistryKey (Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/resources/ResourceKey; +MD: net/minecraft/resources/ResourceKey/m_135790_ (Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/resources/ResourceKey; net/minecraft/resources/ResourceKey/create (Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/resources/ResourceKey; +MD: net/minecraft/resources/ResourceKey/m_195966_ (Lnet/minecraft/resources/ResourceKey;)Lcom/mojang/serialization/Codec; net/minecraft/resources/ResourceKey/codec (Lnet/minecraft/resources/ResourceKey;)Lcom/mojang/serialization/Codec; +MD: net/minecraft/resources/ResourceKey/m_195975_ (Lnet/minecraft/resources/ResourceKey;)Ljava/util/Optional; net/minecraft/resources/ResourceKey/cast (Lnet/minecraft/resources/ResourceKey;)Ljava/util/Optional; +MD: net/minecraft/resources/ResourceKey/m_195977_ (Lnet/minecraft/resources/ResourceKey;Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/resources/ResourceKey; net/minecraft/resources/ResourceKey/lambda$codec$0 (Lnet/minecraft/resources/ResourceKey;Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/resources/ResourceKey; +MD: net/minecraft/resources/ResourceKey/m_211136_ ()Lnet/minecraft/resources/ResourceLocation; net/minecraft/resources/ResourceKey/registry ()Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/resources/ResourceKey/m_257133_ (Lnet/minecraft/resources/ResourceKey$InternKey;)Lnet/minecraft/resources/ResourceKey; net/minecraft/resources/ResourceKey/lambda$create$1 (Lnet/minecraft/resources/ResourceKey$InternKey;)Lnet/minecraft/resources/ResourceKey; +MD: net/minecraft/resources/ResourceKey/toString ()Ljava/lang/String; net/minecraft/resources/ResourceKey/toString ()Ljava/lang/String; +MD: net/minecraft/resources/ResourceKey$InternKey/ (Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/resources/ResourceLocation;)V net/minecraft/resources/ResourceKey$InternKey/ (Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/resources/ResourceLocation;)V +MD: net/minecraft/resources/ResourceKey$InternKey/equals (Ljava/lang/Object;)Z net/minecraft/resources/ResourceKey$InternKey/equals (Ljava/lang/Object;)Z +MD: net/minecraft/resources/ResourceKey$InternKey/f_256880_ ()Lnet/minecraft/resources/ResourceLocation; net/minecraft/resources/ResourceKey$InternKey/registry ()Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/resources/ResourceKey$InternKey/f_257046_ ()Lnet/minecraft/resources/ResourceLocation; net/minecraft/resources/ResourceKey$InternKey/location ()Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/resources/ResourceKey$InternKey/hashCode ()I net/minecraft/resources/ResourceKey$InternKey/hashCode ()I +MD: net/minecraft/resources/ResourceKey$InternKey/toString ()Ljava/lang/String; net/minecraft/resources/ResourceKey$InternKey/toString ()Ljava/lang/String; +MD: net/minecraft/resources/ResourceLocation/ ()V net/minecraft/resources/ResourceLocation/ ()V +MD: net/minecraft/resources/ResourceLocation/ (Ljava/lang/String;Ljava/lang/String;Lnet/minecraft/resources/ResourceLocation$Dummy;)V net/minecraft/resources/ResourceLocation/ (Ljava/lang/String;Ljava/lang/String;Lnet/minecraft/resources/ResourceLocation$Dummy;)V +MD: net/minecraft/resources/ResourceLocation/ ([Ljava/lang/String;)V net/minecraft/resources/ResourceLocation/ ([Ljava/lang/String;)V +MD: net/minecraft/resources/ResourceLocation/ (Ljava/lang/String;Ljava/lang/String;)V net/minecraft/resources/ResourceLocation/ (Ljava/lang/String;Ljava/lang/String;)V +MD: net/minecraft/resources/ResourceLocation/ (Ljava/lang/String;)V net/minecraft/resources/ResourceLocation/ (Ljava/lang/String;)V +MD: net/minecraft/resources/ResourceLocation/compareTo (Lnet/minecraft/resources/ResourceLocation;)I net/minecraft/resources/ResourceLocation/compareTo (Lnet/minecraft/resources/ResourceLocation;)I +MD: net/minecraft/resources/ResourceLocation/compareTo (Ljava/lang/Object;)I net/minecraft/resources/ResourceLocation/compareTo (Ljava/lang/Object;)I +MD: net/minecraft/resources/ResourceLocation/equals (Ljava/lang/Object;)Z net/minecraft/resources/ResourceLocation/equals (Ljava/lang/Object;)Z +MD: net/minecraft/resources/ResourceLocation/hashCode ()I net/minecraft/resources/ResourceLocation/hashCode ()I +MD: net/minecraft/resources/ResourceLocation/m_135815_ ()Ljava/lang/String; net/minecraft/resources/ResourceLocation/getPath ()Ljava/lang/String; +MD: net/minecraft/resources/ResourceLocation/m_135816_ (C)Z net/minecraft/resources/ResourceLocation/isAllowedInResourceLocation (C)Z +MD: net/minecraft/resources/ResourceLocation/m_135818_ (Lcom/mojang/brigadier/StringReader;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/resources/ResourceLocation/read (Lcom/mojang/brigadier/StringReader;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/resources/ResourceLocation/m_135820_ (Ljava/lang/String;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/resources/ResourceLocation/tryParse (Ljava/lang/String;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/resources/ResourceLocation/m_135822_ (Ljava/lang/String;C)Lnet/minecraft/resources/ResourceLocation; net/minecraft/resources/ResourceLocation/of (Ljava/lang/String;C)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/resources/ResourceLocation/m_135827_ ()Ljava/lang/String; net/minecraft/resources/ResourceLocation/getNamespace ()Ljava/lang/String; +MD: net/minecraft/resources/ResourceLocation/m_135828_ (C)Z net/minecraft/resources/ResourceLocation/validPathChar (C)Z +MD: net/minecraft/resources/ResourceLocation/m_135830_ (Ljava/lang/String;)Z net/minecraft/resources/ResourceLocation/isValidResourceLocation (Ljava/lang/String;)Z +MD: net/minecraft/resources/ResourceLocation/m_135832_ (Ljava/lang/String;C)[Ljava/lang/String; net/minecraft/resources/ResourceLocation/decompose (Ljava/lang/String;C)[Ljava/lang/String; +MD: net/minecraft/resources/ResourceLocation/m_135835_ (C)Z net/minecraft/resources/ResourceLocation/validNamespaceChar (C)Z +MD: net/minecraft/resources/ResourceLocation/m_135837_ (Ljava/lang/String;)Lcom/mojang/serialization/DataResult; net/minecraft/resources/ResourceLocation/read (Ljava/lang/String;)Lcom/mojang/serialization/DataResult; +MD: net/minecraft/resources/ResourceLocation/m_135841_ (Ljava/lang/String;)Z net/minecraft/resources/ResourceLocation/isValidPath (Ljava/lang/String;)Z +MD: net/minecraft/resources/ResourceLocation/m_135843_ (Ljava/lang/String;)Z net/minecraft/resources/ResourceLocation/isValidNamespace (Ljava/lang/String;)Z +MD: net/minecraft/resources/ResourceLocation/m_179910_ ()Ljava/lang/String; net/minecraft/resources/ResourceLocation/toDebugFileName ()Ljava/lang/String; +MD: net/minecraft/resources/ResourceLocation/m_214293_ (Ljava/lang/String;Ljava/lang/String;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/resources/ResourceLocation/tryBuild (Ljava/lang/String;Ljava/lang/String;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/resources/ResourceLocation/m_214296_ (Ljava/lang/String;)Ljava/lang/String; net/minecraft/resources/ResourceLocation/toLanguageKey (Ljava/lang/String;)Ljava/lang/String; +MD: net/minecraft/resources/ResourceLocation/m_214298_ ()Ljava/lang/String; net/minecraft/resources/ResourceLocation/toLanguageKey ()Ljava/lang/String; +MD: net/minecraft/resources/ResourceLocation/m_214299_ ()Ljava/lang/String; net/minecraft/resources/ResourceLocation/toShortLanguageKey ()Ljava/lang/String; +MD: net/minecraft/resources/ResourceLocation/m_245185_ (Ljava/lang/String;Ljava/lang/String;)Ljava/lang/String; net/minecraft/resources/ResourceLocation/assertValidPath (Ljava/lang/String;Ljava/lang/String;)Ljava/lang/String; +MD: net/minecraft/resources/ResourceLocation/m_245413_ (Ljava/lang/String;Ljava/lang/String;)Ljava/lang/String; net/minecraft/resources/ResourceLocation/assertValidNamespace (Ljava/lang/String;Ljava/lang/String;)Ljava/lang/String; +MD: net/minecraft/resources/ResourceLocation/m_246208_ (Ljava/lang/String;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/resources/ResourceLocation/withPrefix (Ljava/lang/String;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/resources/ResourceLocation/m_247266_ (Ljava/util/function/UnaryOperator;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/resources/ResourceLocation/withPath (Ljava/util/function/UnaryOperator;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/resources/ResourceLocation/m_247449_ (Ljava/lang/String;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/resources/ResourceLocation/withPath (Ljava/lang/String;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/resources/ResourceLocation/m_266382_ (Ljava/lang/String;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/resources/ResourceLocation/withSuffix (Ljava/lang/String;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/resources/ResourceLocation/m_269108_ (Ljava/lang/String;Ljava/lang/String;)Ljava/lang/String; net/minecraft/resources/ResourceLocation/toLanguageKey (Ljava/lang/String;Ljava/lang/String;)Ljava/lang/String; +MD: net/minecraft/resources/ResourceLocation/m_274447_ (Ljava/lang/String;Lnet/minecraft/ResourceLocationException;)Ljava/lang/String; net/minecraft/resources/ResourceLocation/lambda$read$0 (Ljava/lang/String;Lnet/minecraft/ResourceLocationException;)Ljava/lang/String; +MD: net/minecraft/resources/ResourceLocation/toString ()Ljava/lang/String; net/minecraft/resources/ResourceLocation/toString ()Ljava/lang/String; +MD: net/minecraft/resources/ResourceLocation$Serializer/ ()V net/minecraft/resources/ResourceLocation$Serializer/ ()V +MD: net/minecraft/resources/ResourceLocation$Serializer/deserialize (Lcom/google/gson/JsonElement;Ljava/lang/reflect/Type;Lcom/google/gson/JsonDeserializationContext;)Ljava/lang/Object; net/minecraft/resources/ResourceLocation$Serializer/deserialize (Lcom/google/gson/JsonElement;Ljava/lang/reflect/Type;Lcom/google/gson/JsonDeserializationContext;)Ljava/lang/Object; +MD: net/minecraft/resources/ResourceLocation$Serializer/deserialize (Lcom/google/gson/JsonElement;Ljava/lang/reflect/Type;Lcom/google/gson/JsonDeserializationContext;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/resources/ResourceLocation$Serializer/deserialize (Lcom/google/gson/JsonElement;Ljava/lang/reflect/Type;Lcom/google/gson/JsonDeserializationContext;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/resources/ResourceLocation$Serializer/serialize (Ljava/lang/Object;Ljava/lang/reflect/Type;Lcom/google/gson/JsonSerializationContext;)Lcom/google/gson/JsonElement; net/minecraft/resources/ResourceLocation$Serializer/serialize (Ljava/lang/Object;Ljava/lang/reflect/Type;Lcom/google/gson/JsonSerializationContext;)Lcom/google/gson/JsonElement; +MD: net/minecraft/resources/ResourceLocation$Serializer/serialize (Lnet/minecraft/resources/ResourceLocation;Ljava/lang/reflect/Type;Lcom/google/gson/JsonSerializationContext;)Lcom/google/gson/JsonElement; net/minecraft/resources/ResourceLocation$Serializer/serialize (Lnet/minecraft/resources/ResourceLocation;Ljava/lang/reflect/Type;Lcom/google/gson/JsonSerializationContext;)Lcom/google/gson/JsonElement; +MD: net/minecraft/server/Bootstrap/ ()V net/minecraft/server/Bootstrap/ ()V +MD: net/minecraft/server/Bootstrap/ ()V net/minecraft/server/Bootstrap/ ()V +MD: net/minecraft/server/Bootstrap/m_135870_ ()V net/minecraft/server/Bootstrap/bootStrap ()V +MD: net/minecraft/server/Bootstrap/m_135871_ (Ljava/lang/Iterable;Ljava/util/function/Function;Ljava/util/Set;)V net/minecraft/server/Bootstrap/checkTranslations (Ljava/lang/Iterable;Ljava/util/function/Function;Ljava/util/Set;)V +MD: net/minecraft/server/Bootstrap/m_135875_ (Ljava/lang/String;)V net/minecraft/server/Bootstrap/realStdoutPrintln (Ljava/lang/String;)V +MD: net/minecraft/server/Bootstrap/m_135877_ (Ljava/util/Set;)V net/minecraft/server/Bootstrap/checkGameruleTranslations (Ljava/util/Set;)V +MD: net/minecraft/server/Bootstrap/m_135879_ (Ljava/util/function/Function;Lnet/minecraft/locale/Language;Ljava/util/Set;Ljava/lang/Object;)V net/minecraft/server/Bootstrap/lambda$checkTranslations$0 (Ljava/util/function/Function;Lnet/minecraft/locale/Language;Ljava/util/Set;Ljava/lang/Object;)V +MD: net/minecraft/server/Bootstrap/m_135884_ (Lnet/minecraft/resources/ResourceLocation;)Ljava/lang/String; net/minecraft/server/Bootstrap/lambda$getMissingTranslations$1 (Lnet/minecraft/resources/ResourceLocation;)Ljava/lang/String; +MD: net/minecraft/server/Bootstrap/m_135886_ ()Ljava/util/Set; net/minecraft/server/Bootstrap/getMissingTranslations ()Ljava/util/Set; +MD: net/minecraft/server/Bootstrap/m_135889_ ()V net/minecraft/server/Bootstrap/validate ()V +MD: net/minecraft/server/Bootstrap/m_135890_ ()V net/minecraft/server/Bootstrap/wrapStreams ()V +MD: net/minecraft/server/Bootstrap/m_179912_ (Ljava/util/function/Supplier;)V net/minecraft/server/Bootstrap/checkBootstrapCalled (Ljava/util/function/Supplier;)V +MD: net/minecraft/server/Bootstrap/m_179914_ (Ljava/lang/String;)V net/minecraft/server/Bootstrap/lambda$validate$3 (Ljava/lang/String;)V +MD: net/minecraft/server/Bootstrap/m_179916_ (Ljava/util/function/Supplier;)Ljava/lang/RuntimeException; net/minecraft/server/Bootstrap/createBootstrapException (Ljava/util/function/Supplier;)Ljava/lang/RuntimeException; +MD: net/minecraft/server/Bootstrap/m_179918_ ()Ljava/lang/String; net/minecraft/server/Bootstrap/lambda$validate$2 ()Ljava/lang/String; +MD: net/minecraft/server/Bootstrap$1/ (Lnet/minecraft/locale/Language;Ljava/util/Set;)V net/minecraft/server/Bootstrap$1/ (Lnet/minecraft/locale/Language;Ljava/util/Set;)V +MD: net/minecraft/server/Bootstrap$1/m_6889_ (Lnet/minecraft/world/level/GameRules$Key;Lnet/minecraft/world/level/GameRules$Type;)V net/minecraft/server/Bootstrap$1/visit (Lnet/minecraft/world/level/GameRules$Key;Lnet/minecraft/world/level/GameRules$Type;)V +MD: net/minecraft/server/ChainedJsonException/ (Ljava/lang/String;)V net/minecraft/server/ChainedJsonException/ (Ljava/lang/String;)V +MD: net/minecraft/server/ChainedJsonException/ (Ljava/lang/String;Ljava/lang/Throwable;)V net/minecraft/server/ChainedJsonException/ (Ljava/lang/String;Ljava/lang/Throwable;)V +MD: net/minecraft/server/ChainedJsonException/getMessage ()Ljava/lang/String; net/minecraft/server/ChainedJsonException/getMessage ()Ljava/lang/String; +MD: net/minecraft/server/ChainedJsonException/m_135906_ (Ljava/lang/Exception;)Lnet/minecraft/server/ChainedJsonException; net/minecraft/server/ChainedJsonException/forException (Ljava/lang/Exception;)Lnet/minecraft/server/ChainedJsonException; +MD: net/minecraft/server/ChainedJsonException/m_135908_ (Ljava/lang/String;)V net/minecraft/server/ChainedJsonException/prependJsonKey (Ljava/lang/String;)V +MD: net/minecraft/server/ChainedJsonException/m_135910_ (Ljava/lang/String;)V net/minecraft/server/ChainedJsonException/setFilenameAndFlush (Ljava/lang/String;)V +MD: net/minecraft/server/ChainedJsonException$Entry/ ()V net/minecraft/server/ChainedJsonException$Entry/ ()V +MD: net/minecraft/server/ChainedJsonException$Entry/m_135918_ (Ljava/lang/String;)V net/minecraft/server/ChainedJsonException$Entry/addJsonKey (Ljava/lang/String;)V +MD: net/minecraft/server/ChainedJsonException$Entry/m_135923_ ()Ljava/lang/String; net/minecraft/server/ChainedJsonException$Entry/getJsonKeys ()Ljava/lang/String; +MD: net/minecraft/server/ChainedJsonException$Entry/m_179919_ ()Ljava/lang/String; net/minecraft/server/ChainedJsonException$Entry/getFilename ()Ljava/lang/String; +MD: net/minecraft/server/ChainedJsonException$Entry/toString ()Ljava/lang/String; net/minecraft/server/ChainedJsonException$Entry/toString ()Ljava/lang/String; +MD: net/minecraft/server/ConsoleInput/ (Ljava/lang/String;Lnet/minecraft/commands/CommandSourceStack;)V net/minecraft/server/ConsoleInput/ (Ljava/lang/String;Lnet/minecraft/commands/CommandSourceStack;)V +MD: net/minecraft/server/DebugLoggedPrintStream/ ()V net/minecraft/server/DebugLoggedPrintStream/ ()V +MD: net/minecraft/server/DebugLoggedPrintStream/ (Ljava/lang/String;Ljava/io/OutputStream;)V net/minecraft/server/DebugLoggedPrintStream/ (Ljava/lang/String;Ljava/io/OutputStream;)V +MD: net/minecraft/server/DebugLoggedPrintStream/m_6812_ (Ljava/lang/String;)V net/minecraft/server/DebugLoggedPrintStream/logLine (Ljava/lang/String;)V +MD: net/minecraft/server/Eula/ ()V net/minecraft/server/Eula/ ()V +MD: net/minecraft/server/Eula/ (Ljava/nio/file/Path;)V net/minecraft/server/Eula/ (Ljava/nio/file/Path;)V +MD: net/minecraft/server/Eula/m_135944_ ()Z net/minecraft/server/Eula/hasAgreedToEULA ()Z +MD: net/minecraft/server/Eula/m_135945_ ()Z net/minecraft/server/Eula/readFile ()Z +MD: net/minecraft/server/Eula/m_135946_ ()V net/minecraft/server/Eula/saveDefaults ()V +MD: net/minecraft/server/LoggedPrintStream/ ()V net/minecraft/server/LoggedPrintStream/ ()V +MD: net/minecraft/server/LoggedPrintStream/ (Ljava/lang/String;Ljava/io/OutputStream;)V net/minecraft/server/LoggedPrintStream/ (Ljava/lang/String;Ljava/io/OutputStream;)V +MD: net/minecraft/server/LoggedPrintStream/m_6812_ (Ljava/lang/String;)V net/minecraft/server/LoggedPrintStream/logLine (Ljava/lang/String;)V +MD: net/minecraft/server/LoggedPrintStream/println (Ljava/lang/Object;)V net/minecraft/server/LoggedPrintStream/println (Ljava/lang/Object;)V +MD: net/minecraft/server/LoggedPrintStream/println (Ljava/lang/String;)V net/minecraft/server/LoggedPrintStream/println (Ljava/lang/String;)V +MD: net/minecraft/server/Main/ ()V net/minecraft/server/Main/ ()V +MD: net/minecraft/server/Main/ ()V net/minecraft/server/Main/ ()V +MD: net/minecraft/server/Main/m_195488_ (Lnet/minecraft/world/level/storage/LevelStorageSource$LevelStorageAccess;Lcom/mojang/datafixers/DataFixer;ZLjava/util/function/BooleanSupplier;Lnet/minecraft/core/Registry;)V net/minecraft/server/Main/forceUpgrade (Lnet/minecraft/world/level/storage/LevelStorageSource$LevelStorageAccess;Lcom/mojang/datafixers/DataFixer;ZLjava/util/function/BooleanSupplier;Lnet/minecraft/core/Registry;)V +MD: net/minecraft/server/Main/m_206518_ ()Z net/minecraft/server/Main/lambda$main$2 ()Z +MD: net/minecraft/server/Main/m_236697_ (Lnet/minecraft/world/level/storage/LevelStorageSource$LevelStorageAccess;Lnet/minecraft/server/packs/repository/PackRepository;Lnet/minecraft/server/WorldStem;Lnet/minecraft/server/dedicated/DedicatedServerSettings;Lnet/minecraft/server/Services;Ljoptsimple/OptionSet;Ljoptsimple/OptionSpec;Ljoptsimple/OptionSpec;Ljoptsimple/OptionSpec;Ljoptsimple/OptionSpec;Ljoptsimple/OptionSpec;Ljoptsimple/OptionSpec;Ljava/lang/Thread;)Lnet/minecraft/server/dedicated/DedicatedServer; net/minecraft/server/Main/lambda$main$3 (Lnet/minecraft/world/level/storage/LevelStorageSource$LevelStorageAccess;Lnet/minecraft/server/packs/repository/PackRepository;Lnet/minecraft/server/WorldStem;Lnet/minecraft/server/dedicated/DedicatedServerSettings;Lnet/minecraft/server/Services;Ljoptsimple/OptionSet;Ljoptsimple/OptionSpec;Ljoptsimple/OptionSpec;Ljoptsimple/OptionSpec;Ljoptsimple/OptionSpec;Ljoptsimple/OptionSpec;Ljoptsimple/OptionSpec;Ljava/lang/Thread;)Lnet/minecraft/server/dedicated/DedicatedServer; +MD: net/minecraft/server/Main/m_244799_ (Lnet/minecraft/world/level/storage/LevelStorageSource$LevelStorageAccess;Ljoptsimple/OptionSet;Ljoptsimple/OptionSpec;Lnet/minecraft/server/dedicated/DedicatedServerSettings;Ljoptsimple/OptionSpec;Lnet/minecraft/server/WorldLoader$DataLoadContext;)Lnet/minecraft/server/WorldLoader$DataLoadOutput; net/minecraft/server/Main/lambda$main$0 (Lnet/minecraft/world/level/storage/LevelStorageSource$LevelStorageAccess;Ljoptsimple/OptionSet;Ljoptsimple/OptionSpec;Lnet/minecraft/server/dedicated/DedicatedServerSettings;Ljoptsimple/OptionSpec;Lnet/minecraft/server/WorldLoader$DataLoadContext;)Lnet/minecraft/server/WorldLoader$DataLoadOutput; +MD: net/minecraft/server/Main/m_244800_ (Lnet/minecraft/server/WorldLoader$InitConfig;Lnet/minecraft/world/level/storage/LevelStorageSource$LevelStorageAccess;Ljoptsimple/OptionSet;Ljoptsimple/OptionSpec;Lnet/minecraft/server/dedicated/DedicatedServerSettings;Ljoptsimple/OptionSpec;Ljava/util/concurrent/Executor;)Ljava/util/concurrent/CompletableFuture; net/minecraft/server/Main/lambda$main$1 (Lnet/minecraft/server/WorldLoader$InitConfig;Lnet/minecraft/world/level/storage/LevelStorageSource$LevelStorageAccess;Ljoptsimple/OptionSet;Ljoptsimple/OptionSpec;Lnet/minecraft/server/dedicated/DedicatedServerSettings;Ljoptsimple/OptionSpec;Ljava/util/concurrent/Executor;)Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/server/Main/m_245383_ (Lnet/minecraft/server/dedicated/DedicatedServerProperties;Lnet/minecraft/world/level/storage/LevelStorageSource$LevelStorageAccess;ZLnet/minecraft/server/packs/repository/PackRepository;)Lnet/minecraft/server/WorldLoader$InitConfig; net/minecraft/server/Main/loadOrCreateConfig (Lnet/minecraft/server/dedicated/DedicatedServerProperties;Lnet/minecraft/world/level/storage/LevelStorageSource$LevelStorageAccess;ZLnet/minecraft/server/packs/repository/PackRepository;)Lnet/minecraft/server/WorldLoader$InitConfig; +MD: net/minecraft/server/Main/m_269308_ (Ljava/nio/file/Path;)V net/minecraft/server/Main/writePidFile (Ljava/nio/file/Path;)V +MD: net/minecraft/server/Main/main ([Ljava/lang/String;)V net/minecraft/server/Main/main ([Ljava/lang/String;)V +MD: net/minecraft/server/Main$1/ (Ljava/lang/String;Lnet/minecraft/server/dedicated/DedicatedServer;)V net/minecraft/server/Main$1/ (Ljava/lang/String;Lnet/minecraft/server/dedicated/DedicatedServer;)V +MD: net/minecraft/server/Main$1/run ()V net/minecraft/server/Main$1/run ()V +MD: net/minecraft/server/MinecraftServer/ ()V net/minecraft/server/MinecraftServer/ ()V +MD: net/minecraft/server/MinecraftServer/ (Ljava/lang/Thread;Lnet/minecraft/world/level/storage/LevelStorageSource$LevelStorageAccess;Lnet/minecraft/server/packs/repository/PackRepository;Lnet/minecraft/server/WorldStem;Ljava/net/Proxy;Lcom/mojang/datafixers/DataFixer;Lnet/minecraft/server/Services;Lnet/minecraft/server/level/progress/ChunkProgressListenerFactory;)V net/minecraft/server/MinecraftServer/ (Ljava/lang/Thread;Lnet/minecraft/world/level/storage/LevelStorageSource$LevelStorageAccess;Lnet/minecraft/server/packs/repository/PackRepository;Lnet/minecraft/server/WorldStem;Ljava/net/Proxy;Lcom/mojang/datafixers/DataFixer;Lnet/minecraft/server/Services;Lnet/minecraft/server/level/progress/ChunkProgressListenerFactory;)V +MD: net/minecraft/server/MinecraftServer/close ()V net/minecraft/server/MinecraftServer/close ()V +MD: net/minecraft/server/MinecraftServer/getServerModName ()Ljava/lang/String; net/minecraft/server/MinecraftServer/getServerModName ()Ljava/lang/String; +MD: net/minecraft/server/MinecraftServer/m_129782_ ()Z net/minecraft/server/MinecraftServer/isShutdown ()Z +MD: net/minecraft/server/MinecraftServer/m_129783_ ()Lnet/minecraft/server/level/ServerLevel; net/minecraft/server/MinecraftServer/overworld ()Lnet/minecraft/server/level/ServerLevel; +MD: net/minecraft/server/MinecraftServer/m_129784_ ()Ljava/util/Set; net/minecraft/server/MinecraftServer/levelKeys ()Ljava/util/Set; +MD: net/minecraft/server/MinecraftServer/m_129785_ ()Ljava/lang/Iterable; net/minecraft/server/MinecraftServer/getAllLevels ()Ljava/lang/Iterable; +MD: net/minecraft/server/MinecraftServer/m_129790_ ()Ljava/security/KeyPair; net/minecraft/server/MinecraftServer/getKeyPair ()Ljava/security/KeyPair; +MD: net/minecraft/server/MinecraftServer/m_129792_ ()Z net/minecraft/server/MinecraftServer/isSingleplayer ()Z +MD: net/minecraft/server/MinecraftServer/m_129793_ ()V net/minecraft/server/MinecraftServer/initializeKeyPair ()V +MD: net/minecraft/server/MinecraftServer/m_129794_ ()Z net/minecraft/server/MinecraftServer/isDemo ()Z +MD: net/minecraft/server/MinecraftServer/m_129797_ ()Z net/minecraft/server/MinecraftServer/usesAuthentication ()Z +MD: net/minecraft/server/MinecraftServer/m_129798_ ()Z net/minecraft/server/MinecraftServer/getPreventProxyConnections ()Z +MD: net/minecraft/server/MinecraftServer/m_129799_ ()Z net/minecraft/server/MinecraftServer/isPvpAllowed ()Z +MD: net/minecraft/server/MinecraftServer/m_129801_ (I)V net/minecraft/server/MinecraftServer/setPort (I)V +MD: net/minecraft/server/MinecraftServer/m_129803_ (Lnet/minecraft/server/level/ServerLevel;)I net/minecraft/server/MinecraftServer/getSpawnRadius (Lnet/minecraft/server/level/ServerLevel;)I +MD: net/minecraft/server/MinecraftServer/m_129815_ (Lnet/minecraft/server/level/progress/ChunkProgressListener;)V net/minecraft/server/MinecraftServer/createLevels (Lnet/minecraft/server/level/progress/ChunkProgressListener;)V +MD: net/minecraft/server/MinecraftServer/m_129817_ (Lnet/minecraft/server/packs/repository/PackRepository;)Lnet/minecraft/world/level/DataPackConfig; net/minecraft/server/MinecraftServer/getSelectedPacks (Lnet/minecraft/server/packs/repository/PackRepository;)Lnet/minecraft/world/level/DataPackConfig; +MD: net/minecraft/server/MinecraftServer/m_129823_ (Lnet/minecraft/server/players/PlayerList;)V net/minecraft/server/MinecraftServer/setPlayerList (Lnet/minecraft/server/players/PlayerList;)V +MD: net/minecraft/server/MinecraftServer/m_129827_ (Lnet/minecraft/world/Difficulty;Z)V net/minecraft/server/MinecraftServer/setDifficulty (Lnet/minecraft/world/Difficulty;Z)V +MD: net/minecraft/server/MinecraftServer/m_129841_ (Lnet/minecraft/world/level/storage/DimensionDataStorage;)V net/minecraft/server/MinecraftServer/readScoreboard (Lnet/minecraft/world/level/storage/DimensionDataStorage;)V +MD: net/minecraft/server/MinecraftServer/m_129843_ (Lnet/minecraft/world/level/storage/LevelResource;)Ljava/nio/file/Path; net/minecraft/server/MinecraftServer/getWorldPath (Lnet/minecraft/world/level/storage/LevelResource;)Ljava/nio/file/Path; +MD: net/minecraft/server/MinecraftServer/m_129847_ (Lnet/minecraft/world/level/storage/WorldData;)V net/minecraft/server/MinecraftServer/setupDebugLevel (Lnet/minecraft/world/level/storage/WorldData;)V +MD: net/minecraft/server/MinecraftServer/m_129849_ (Lnet/minecraft/commands/CommandSourceStack;)V net/minecraft/server/MinecraftServer/kickUnlistedPlayers (Lnet/minecraft/commands/CommandSourceStack;)V +MD: net/minecraft/server/MinecraftServer/m_129859_ (Ljava/nio/file/Path;)V net/minecraft/server/MinecraftServer/saveDebugReport (Ljava/nio/file/Path;)V +MD: net/minecraft/server/MinecraftServer/m_129861_ (Ljava/util/Collection;)Ljava/util/concurrent/CompletableFuture; net/minecraft/server/MinecraftServer/reloadResources (Ljava/util/Collection;)Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/server/MinecraftServer/m_129872_ (Ljava/util/function/Function;)Lnet/minecraft/server/MinecraftServer; net/minecraft/server/MinecraftServer/spin (Ljava/util/function/Function;)Lnet/minecraft/server/MinecraftServer; +MD: net/minecraft/server/MinecraftServer/m_129880_ (Lnet/minecraft/resources/ResourceKey;)Lnet/minecraft/server/level/ServerLevel; net/minecraft/server/MinecraftServer/getLevel (Lnet/minecraft/resources/ResourceKey;)Lnet/minecraft/server/level/ServerLevel; +MD: net/minecraft/server/MinecraftServer/m_129885_ (ZZZ)Z net/minecraft/server/MinecraftServer/saveAllChunks (ZZZ)Z +MD: net/minecraft/server/MinecraftServer/m_129889_ ()Lnet/minecraft/server/ServerAdvancementManager; net/minecraft/server/MinecraftServer/getAdvancements ()Lnet/minecraft/server/ServerAdvancementManager; +MD: net/minecraft/server/MinecraftServer/m_129890_ ()Lnet/minecraft/server/ServerFunctionManager; net/minecraft/server/MinecraftServer/getFunctions ()Lnet/minecraft/server/ServerFunctionManager; +MD: net/minecraft/server/MinecraftServer/m_129891_ ()Lnet/minecraft/server/packs/repository/PackRepository; net/minecraft/server/MinecraftServer/getPackRepository ()Lnet/minecraft/server/packs/repository/PackRepository; +MD: net/minecraft/server/MinecraftServer/m_129892_ ()Lnet/minecraft/commands/Commands; net/minecraft/server/MinecraftServer/getCommands ()Lnet/minecraft/commands/Commands; +MD: net/minecraft/server/MinecraftServer/m_129893_ ()Lnet/minecraft/commands/CommandSourceStack; net/minecraft/server/MinecraftServer/createCommandSourceStack ()Lnet/minecraft/commands/CommandSourceStack; +MD: net/minecraft/server/MinecraftServer/m_129894_ ()Lnet/minecraft/world/item/crafting/RecipeManager; net/minecraft/server/MinecraftServer/getRecipeManager ()Lnet/minecraft/world/item/crafting/RecipeManager; +MD: net/minecraft/server/MinecraftServer/m_129896_ ()Lnet/minecraft/server/ServerScoreboard; net/minecraft/server/MinecraftServer/getScoreboard ()Lnet/minecraft/server/ServerScoreboard; +MD: net/minecraft/server/MinecraftServer/m_129897_ ()Lnet/minecraft/world/level/storage/CommandStorage; net/minecraft/server/MinecraftServer/getCommandStorage ()Lnet/minecraft/world/level/storage/CommandStorage; +MD: net/minecraft/server/MinecraftServer/m_129900_ ()Lnet/minecraft/world/level/GameRules; net/minecraft/server/MinecraftServer/getGameRules ()Lnet/minecraft/world/level/GameRules; +MD: net/minecraft/server/MinecraftServer/m_129901_ ()Lnet/minecraft/server/bossevents/CustomBossEvents; net/minecraft/server/MinecraftServer/getCustomBossEvents ()Lnet/minecraft/server/bossevents/CustomBossEvents; +MD: net/minecraft/server/MinecraftServer/m_129902_ ()Z net/minecraft/server/MinecraftServer/isEnforceWhitelist ()Z +MD: net/minecraft/server/MinecraftServer/m_129903_ ()F net/minecraft/server/MinecraftServer/getAverageTickTime ()F +MD: net/minecraft/server/MinecraftServer/m_129904_ ()Lnet/minecraft/util/FrameTimer; net/minecraft/server/MinecraftServer/getFrameTimer ()Lnet/minecraft/util/FrameTimer; +MD: net/minecraft/server/MinecraftServer/m_129905_ ()Lnet/minecraft/util/profiling/ProfilerFiller; net/minecraft/server/MinecraftServer/getProfiler ()Lnet/minecraft/util/profiling/ProfilerFiller; +MD: net/minecraft/server/MinecraftServer/m_129910_ ()Lnet/minecraft/world/level/storage/WorldData; net/minecraft/server/MinecraftServer/getWorldData ()Lnet/minecraft/world/level/storage/WorldData; +MD: net/minecraft/server/MinecraftServer/m_129913_ (Ljava/lang/String;)V net/minecraft/server/MinecraftServer/setLocalIp (Ljava/lang/String;)V +MD: net/minecraft/server/MinecraftServer/m_129915_ ()Z net/minecraft/server/MinecraftServer/isFlightAllowed ()Z +MD: net/minecraft/server/MinecraftServer/m_129916_ ()Ljava/lang/String; net/minecraft/server/MinecraftServer/getMotd ()Ljava/lang/String; +MD: net/minecraft/server/MinecraftServer/m_129918_ ()Z net/minecraft/server/MinecraftServer/isStopped ()Z +MD: net/minecraft/server/MinecraftServer/m_129919_ ()Lnet/minecraft/server/network/ServerConnectionListener; net/minecraft/server/MinecraftServer/getConnection ()Lnet/minecraft/server/network/ServerConnectionListener; +MD: net/minecraft/server/MinecraftServer/m_129920_ ()Z net/minecraft/server/MinecraftServer/isReady ()Z +MD: net/minecraft/server/MinecraftServer/m_129921_ ()I net/minecraft/server/MinecraftServer/getTickCount ()I +MD: net/minecraft/server/MinecraftServer/m_129924_ ()I net/minecraft/server/MinecraftServer/getPlayerIdleTimeout ()I +MD: net/minecraft/server/MinecraftServer/m_129925_ ()Lcom/mojang/authlib/minecraft/MinecraftSessionService; net/minecraft/server/MinecraftServer/getSessionService ()Lcom/mojang/authlib/minecraft/MinecraftSessionService; +MD: net/minecraft/server/MinecraftServer/m_129926_ ()Lcom/mojang/authlib/GameProfileRepository; net/minecraft/server/MinecraftServer/getProfileRepository ()Lcom/mojang/authlib/GameProfileRepository; +MD: net/minecraft/server/MinecraftServer/m_129927_ ()Lnet/minecraft/server/players/GameProfileCache; net/minecraft/server/MinecraftServer/getProfileCache ()Lnet/minecraft/server/players/GameProfileCache; +MD: net/minecraft/server/MinecraftServer/m_129928_ ()Lnet/minecraft/network/protocol/status/ServerStatus; net/minecraft/server/MinecraftServer/getStatus ()Lnet/minecraft/network/protocol/status/ServerStatus; +MD: net/minecraft/server/MinecraftServer/m_129929_ ()V net/minecraft/server/MinecraftServer/invalidateStatus ()V +MD: net/minecraft/server/MinecraftServer/m_129932_ ()J net/minecraft/server/MinecraftServer/getNextTickTime ()J +MD: net/minecraft/server/MinecraftServer/m_129933_ ()Lcom/mojang/datafixers/DataFixer; net/minecraft/server/MinecraftServer/getFixerUpper ()Lcom/mojang/datafixers/DataFixer; +MD: net/minecraft/server/MinecraftServer/m_129938_ (Lnet/minecraft/server/level/ServerPlayer;)V net/minecraft/server/MinecraftServer/sendDifficultyUpdate (Lnet/minecraft/server/level/ServerPlayer;)V +MD: net/minecraft/server/MinecraftServer/m_129940_ (Lnet/minecraft/server/level/progress/ChunkProgressListener;)V net/minecraft/server/MinecraftServer/prepareLevels (Lnet/minecraft/server/level/progress/ChunkProgressListener;)V +MD: net/minecraft/server/MinecraftServer/m_129944_ (Lcom/mojang/authlib/GameProfile;)I net/minecraft/server/MinecraftServer/getProfilePermissions (Lcom/mojang/authlib/GameProfile;)I +MD: net/minecraft/server/MinecraftServer/m_129946_ (Ljava/lang/Runnable;)V net/minecraft/server/MinecraftServer/addTickable (Ljava/lang/Runnable;)V +MD: net/minecraft/server/MinecraftServer/m_129948_ (Ljava/lang/String;)V net/minecraft/server/MinecraftServer/setId (Ljava/lang/String;)V +MD: net/minecraft/server/MinecraftServer/m_129950_ (Ljava/nio/file/Path;)V net/minecraft/server/MinecraftServer/dumpMiscStats (Ljava/nio/file/Path;)V +MD: net/minecraft/server/MinecraftServer/m_129958_ (Z)V net/minecraft/server/MinecraftServer/setDifficultyLocked (Z)V +MD: net/minecraft/server/MinecraftServer/m_129960_ ()Z net/minecraft/server/MinecraftServer/haveTime ()Z +MD: net/minecraft/server/MinecraftServer/m_129961_ ()Z net/minecraft/server/MinecraftServer/pollTaskInternal ()Z +MD: net/minecraft/server/MinecraftServer/m_129962_ ()V net/minecraft/server/MinecraftServer/updateMobSpawningFlags ()V +MD: net/minecraft/server/MinecraftServer/m_129971_ (Ljava/lang/String;)Ljava/io/File; net/minecraft/server/MinecraftServer/getFile (Ljava/lang/String;)Ljava/io/File; +MD: net/minecraft/server/MinecraftServer/m_129975_ (Z)V net/minecraft/server/MinecraftServer/setDemo (Z)V +MD: net/minecraft/server/MinecraftServer/m_129983_ (Ljava/nio/file/Path;)V net/minecraft/server/MinecraftServer/dumpGameRules (Ljava/nio/file/Path;)V +MD: net/minecraft/server/MinecraftServer/m_129985_ (Z)V net/minecraft/server/MinecraftServer/setUsesAuthentication (Z)V +MD: net/minecraft/server/MinecraftServer/m_129989_ (Ljava/lang/String;)V net/minecraft/server/MinecraftServer/setMotd (Ljava/lang/String;)V +MD: net/minecraft/server/MinecraftServer/m_129991_ (Ljava/nio/file/Path;)V net/minecraft/server/MinecraftServer/dumpClasspath (Ljava/nio/file/Path;)V +MD: net/minecraft/server/MinecraftServer/m_129993_ (Z)V net/minecraft/server/MinecraftServer/setPreventProxyConnections (Z)V +MD: net/minecraft/server/MinecraftServer/m_129995_ (Ljava/nio/file/Path;)V net/minecraft/server/MinecraftServer/dumpThreads (Ljava/nio/file/Path;)V +MD: net/minecraft/server/MinecraftServer/m_129997_ (Z)V net/minecraft/server/MinecraftServer/setPvpAllowed (Z)V +MD: net/minecraft/server/MinecraftServer/m_129999_ (Z)V net/minecraft/server/MinecraftServer/setFlightAllowed (Z)V +MD: net/minecraft/server/MinecraftServer/m_130004_ (Z)V net/minecraft/server/MinecraftServer/setEnforceWhitelist (Z)V +MD: net/minecraft/server/MinecraftServer/m_130006_ ()V net/minecraft/server/MinecraftServer/loadLevel ()V +MD: net/minecraft/server/MinecraftServer/m_130008_ ()Lnet/minecraft/world/level/GameType; net/minecraft/server/MinecraftServer/getDefaultGameType ()Lnet/minecraft/world/level/GameType; +MD: net/minecraft/server/MinecraftServer/m_130009_ ()Ljava/lang/String; net/minecraft/server/MinecraftServer/getLocalIp ()Ljava/lang/String; +MD: net/minecraft/server/MinecraftServer/m_130010_ ()Z net/minecraft/server/MinecraftServer/isRunning ()Z +MD: net/minecraft/server/MinecraftServer/m_130011_ ()V net/minecraft/server/MinecraftServer/runServer ()V +MD: net/minecraft/server/MinecraftServer/m_130012_ ()V net/minecraft/server/MinecraftServer/waitUntilNextTick ()V +MD: net/minecraft/server/MinecraftServer/m_142116_ (Ljava/nio/file/Path;)V net/minecraft/server/MinecraftServer/dumpServerProperties (Ljava/nio/file/Path;)V +MD: net/minecraft/server/MinecraftServer/m_142205_ ()Z net/minecraft/server/MinecraftServer/isResourcePackRequired ()Z +MD: net/minecraft/server/MinecraftServer/m_142359_ ()Lnet/minecraft/world/level/GameType; net/minecraft/server/MinecraftServer/getForcedGameType ()Lnet/minecraft/world/level/GameType; +MD: net/minecraft/server/MinecraftServer/m_142424_ (Lnet/minecraft/SystemReport;)Lnet/minecraft/SystemReport; net/minecraft/server/MinecraftServer/fillServerSystemReport (Lnet/minecraft/SystemReport;)Lnet/minecraft/SystemReport; +MD: net/minecraft/server/MinecraftServer/m_177896_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/level/storage/ServerLevelData;ZZ)V net/minecraft/server/MinecraftServer/setInitialSpawn (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/level/storage/ServerLevelData;ZZ)V +MD: net/minecraft/server/MinecraftServer/m_177908_ (Ljava/lang/Thread;Ljava/lang/Throwable;)V net/minecraft/server/MinecraftServer/lambda$spin$3 (Ljava/lang/Thread;Ljava/lang/Throwable;)V +MD: net/minecraft/server/MinecraftServer/m_177923_ (Ljava/util/function/Consumer;Ljava/util/function/Consumer;)V net/minecraft/server/MinecraftServer/startRecordingMetrics (Ljava/util/function/Consumer;Ljava/util/function/Consumer;)V +MD: net/minecraft/server/MinecraftServer/m_177927_ ()Z net/minecraft/server/MinecraftServer/isRecordingMetrics ()Z +MD: net/minecraft/server/MinecraftServer/m_177928_ ()V net/minecraft/server/MinecraftServer/stopRecordingMetrics ()V +MD: net/minecraft/server/MinecraftServer/m_177929_ ()V net/minecraft/server/MinecraftServer/finishRecordingMetrics ()V +MD: net/minecraft/server/MinecraftServer/m_177930_ ()Ljava/net/Proxy; net/minecraft/server/MinecraftServer/getProxy ()Ljava/net/Proxy; +MD: net/minecraft/server/MinecraftServer/m_177933_ (Lnet/minecraft/server/level/ServerPlayer;)Lnet/minecraft/server/level/ServerPlayerGameMode; net/minecraft/server/MinecraftServer/createGameModeForPlayer (Lnet/minecraft/server/level/ServerPlayer;)Lnet/minecraft/server/level/ServerPlayerGameMode; +MD: net/minecraft/server/MinecraftServer/m_177935_ (Lnet/minecraft/SystemReport;)Lnet/minecraft/SystemReport; net/minecraft/server/MinecraftServer/fillSystemReport (Lnet/minecraft/SystemReport;)Lnet/minecraft/SystemReport; +MD: net/minecraft/server/MinecraftServer/m_177941_ ()Lnet/minecraft/server/packs/resources/ResourceManager; net/minecraft/server/MinecraftServer/getResourceManager ()Lnet/minecraft/server/packs/resources/ResourceManager; +MD: net/minecraft/server/MinecraftServer/m_177942_ ()Z net/minecraft/server/MinecraftServer/isTimeProfilerRunning ()Z +MD: net/minecraft/server/MinecraftServer/m_177943_ ()V net/minecraft/server/MinecraftServer/startTimeProfiler ()V +MD: net/minecraft/server/MinecraftServer/m_177944_ ()Lnet/minecraft/util/profiling/ProfileResults; net/minecraft/server/MinecraftServer/stopTimeProfiler ()Lnet/minecraft/util/profiling/ProfileResults; +MD: net/minecraft/server/MinecraftServer/m_177945_ ()V net/minecraft/server/MinecraftServer/startMetricsRecordingTick ()V +MD: net/minecraft/server/MinecraftServer/m_177946_ ()V net/minecraft/server/MinecraftServer/endMetricsRecordingTick ()V +MD: net/minecraft/server/MinecraftServer/m_177947_ ()Ljava/lang/String; net/minecraft/server/MinecraftServer/lambda$fillSystemReport$14 ()Ljava/lang/String; +MD: net/minecraft/server/MinecraftServer/m_177953_ (Ljava/nio/file/Path;)V net/minecraft/server/MinecraftServer/lambda$new$1 (Ljava/nio/file/Path;)V +MD: net/minecraft/server/MinecraftServer/m_182649_ ()Ljava/util/Optional; net/minecraft/server/MinecraftServer/getWorldScreenshotFile ()Ljava/util/Optional; +MD: net/minecraft/server/MinecraftServer/m_183306_ ()Z net/minecraft/server/MinecraftServer/hidesOnlinePlayers ()Z +MD: net/minecraft/server/MinecraftServer/m_183471_ ()Lnet/minecraft/util/ModCheck; net/minecraft/server/MinecraftServer/getModdedStatus ()Lnet/minecraft/util/ModCheck; +MD: net/minecraft/server/MinecraftServer/m_195514_ (ZZZ)Z net/minecraft/server/MinecraftServer/saveEverything (ZZZ)Z +MD: net/minecraft/server/MinecraftServer/m_195518_ ()Z net/minecraft/server/MinecraftServer/isCurrentlySaving ()Z +MD: net/minecraft/server/MinecraftServer/m_195521_ (Ljava/nio/file/Path;)V net/minecraft/server/MinecraftServer/dumpNativeModules (Ljava/nio/file/Path;)V +MD: net/minecraft/server/MinecraftServer/m_200002_ ()Ljava/lang/String; net/minecraft/server/MinecraftServer/lambda$fillSystemReport$15 ()Ljava/lang/String; +MD: net/minecraft/server/MinecraftServer/m_201446_ (Ljava/lang/Runnable;)V net/minecraft/server/MinecraftServer/executeIfPossible (Ljava/lang/Runnable;)V +MD: net/minecraft/server/MinecraftServer/m_202471_ ()Z net/minecraft/server/MinecraftServer/lambda$stopServer$7 ()Z +MD: net/minecraft/server/MinecraftServer/m_202475_ ()Ljava/lang/String; net/minecraft/server/MinecraftServer/lambda$fillSystemReport$19 ()Ljava/lang/String; +MD: net/minecraft/server/MinecraftServer/m_202478_ (Lnet/minecraft/server/level/ServerLevel;)Z net/minecraft/server/MinecraftServer/lambda$stopServer$6 (Lnet/minecraft/server/level/ServerLevel;)Z +MD: net/minecraft/server/MinecraftServer/m_202479_ (Ljava/nio/file/Path;)V net/minecraft/server/MinecraftServer/lambda$startMetricsRecordingTick$29 (Ljava/nio/file/Path;)V +MD: net/minecraft/server/MinecraftServer/m_206568_ (Ljava/lang/Throwable;)Lnet/minecraft/CrashReport; net/minecraft/server/MinecraftServer/constructOrExtractCrashReport (Ljava/lang/Throwable;)Lnet/minecraft/CrashReport; +MD: net/minecraft/server/MinecraftServer/m_206579_ ()Lnet/minecraft/core/RegistryAccess$Frozen; net/minecraft/server/MinecraftServer/registryAccess ()Lnet/minecraft/core/RegistryAccess$Frozen; +MD: net/minecraft/server/MinecraftServer/m_206580_ (Ljava/util/concurrent/atomic/AtomicReference;)V net/minecraft/server/MinecraftServer/lambda$spin$2 (Ljava/util/concurrent/atomic/AtomicReference;)V +MD: net/minecraft/server/MinecraftServer/m_212902_ (Lnet/minecraft/server/packs/resources/CloseableResourceManager;Lnet/minecraft/server/ReloadableServerResources;)Lnet/minecraft/server/MinecraftServer$ReloadableResources; net/minecraft/server/MinecraftServer/lambda$reloadResources$23 (Lnet/minecraft/server/packs/resources/CloseableResourceManager;Lnet/minecraft/server/ReloadableServerResources;)Lnet/minecraft/server/MinecraftServer$ReloadableResources; +MD: net/minecraft/server/MinecraftServer/m_212905_ (Ljava/util/Collection;)Lcom/google/common/collect/ImmutableList; net/minecraft/server/MinecraftServer/lambda$reloadResources$21 (Ljava/util/Collection;)Lcom/google/common/collect/ImmutableList; +MD: net/minecraft/server/MinecraftServer/m_212909_ (Lnet/minecraft/util/NativeModuleLister$NativeModuleInfo;)Ljava/lang/String; net/minecraft/server/MinecraftServer/lambda$dumpNativeModules$27 (Lnet/minecraft/util/NativeModuleLister$NativeModuleInfo;)Ljava/lang/String; +MD: net/minecraft/server/MinecraftServer/m_212914_ (Ljava/util/Collection;Ljava/lang/String;)Z net/minecraft/server/MinecraftServer/lambda$getSelectedPacks$26 (Ljava/util/Collection;Ljava/lang/String;)Z +MD: net/minecraft/server/MinecraftServer/m_212917_ (Lnet/minecraft/server/packs/resources/CloseableResourceManager;Lnet/minecraft/server/ReloadableServerResources;Ljava/lang/Throwable;)V net/minecraft/server/MinecraftServer/lambda$reloadResources$22 (Lnet/minecraft/server/packs/resources/CloseableResourceManager;Lnet/minecraft/server/ReloadableServerResources;Ljava/lang/Throwable;)V +MD: net/minecraft/server/MinecraftServer/m_212920_ (Ljava/util/function/Consumer;Lnet/minecraft/util/profiling/ProfileResults;)V net/minecraft/server/MinecraftServer/lambda$startRecordingMetrics$30 (Ljava/util/function/Consumer;Lnet/minecraft/util/profiling/ProfileResults;)V +MD: net/minecraft/server/MinecraftServer/m_212923_ (Lnet/minecraft/util/profiling/ProfileResults;)V net/minecraft/server/MinecraftServer/lambda$new$0 (Lnet/minecraft/util/profiling/ProfileResults;)V +MD: net/minecraft/server/MinecraftServer/m_212925_ ()Ljava/lang/String; net/minecraft/server/MinecraftServer/lambda$fillSystemReport$20 ()Ljava/lang/String; +MD: net/minecraft/server/MinecraftServer/m_212926_ (Ljava/nio/file/Path;)V net/minecraft/server/MinecraftServer/lambda$startMetricsRecordingTick$28 (Ljava/nio/file/Path;)V +MD: net/minecraft/server/MinecraftServer/m_213846_ (Lnet/minecraft/network/chat/Component;)V net/minecraft/server/MinecraftServer/sendSystemMessage (Lnet/minecraft/network/chat/Component;)V +MD: net/minecraft/server/MinecraftServer/m_213994_ ()I net/minecraft/server/MinecraftServer/getMaxChainedNeighborUpdates ()I +MD: net/minecraft/server/MinecraftServer/m_214005_ ()Z net/minecraft/server/MinecraftServer/enforceSecureProfile ()Z +MD: net/minecraft/server/MinecraftServer/m_214042_ ()Ljava/util/Optional; net/minecraft/server/MinecraftServer/getServerResourcePack ()Ljava/util/Optional; +MD: net/minecraft/server/MinecraftServer/m_236731_ ()Lcom/mojang/authlib/GameProfile; net/minecraft/server/MinecraftServer/getSingleplayerProfile ()Lcom/mojang/authlib/GameProfile; +MD: net/minecraft/server/MinecraftServer/m_236737_ ()V net/minecraft/server/MinecraftServer/cancelRecordingMetrics ()V +MD: net/minecraft/server/MinecraftServer/m_236738_ ()Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager; net/minecraft/server/MinecraftServer/getStructureManager ()Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager; +MD: net/minecraft/server/MinecraftServer/m_236740_ (Lcom/mojang/authlib/GameProfile;)V net/minecraft/server/MinecraftServer/setSingleplayerProfile (Lcom/mojang/authlib/GameProfile;)V +MD: net/minecraft/server/MinecraftServer/m_236742_ ()Lnet/minecraft/network/chat/ChatDecorator; net/minecraft/server/MinecraftServer/getChatDecorator ()Lnet/minecraft/network/chat/ChatDecorator; +MD: net/minecraft/server/MinecraftServer/m_238924_ ()Z net/minecraft/server/MinecraftServer/lambda$waitUntilNextTick$8 ()Z +MD: net/minecraft/server/MinecraftServer/m_241158_ (Lnet/minecraft/network/chat/Component;Lnet/minecraft/network/chat/ChatType$Bound;Ljava/lang/String;)V net/minecraft/server/MinecraftServer/logChatMessage (Lnet/minecraft/network/chat/Component;Lnet/minecraft/network/chat/ChatType$Bound;Ljava/lang/String;)V +MD: net/minecraft/server/MinecraftServer/m_244801_ (Lnet/minecraft/server/packs/repository/Pack;)Ljava/lang/String; net/minecraft/server/MinecraftServer/lambda$fillSystemReport$16 (Lnet/minecraft/server/packs/repository/Pack;)Ljava/lang/String; +MD: net/minecraft/server/MinecraftServer/m_244802_ ()Ljava/lang/String; net/minecraft/server/MinecraftServer/lambda$fillSystemReport$17 ()Ljava/lang/String; +MD: net/minecraft/server/MinecraftServer/m_244804_ (Ljava/util/Collection;Lnet/minecraft/server/MinecraftServer$ReloadableResources;)V net/minecraft/server/MinecraftServer/lambda$reloadResources$25 (Ljava/util/Collection;Lnet/minecraft/server/MinecraftServer$ReloadableResources;)V +MD: net/minecraft/server/MinecraftServer/m_244805_ (Lnet/minecraft/core/RegistryAccess$Frozen;Lcom/google/common/collect/ImmutableList;)Ljava/util/concurrent/CompletionStage; net/minecraft/server/MinecraftServer/lambda$reloadResources$24 (Lnet/minecraft/core/RegistryAccess$Frozen;Lcom/google/common/collect/ImmutableList;)Ljava/util/concurrent/CompletionStage; +MD: net/minecraft/server/MinecraftServer/m_244806_ ()Ljava/lang/String; net/minecraft/server/MinecraftServer/lambda$fillSystemReport$18 ()Ljava/lang/String; +MD: net/minecraft/server/MinecraftServer/m_246048_ (Lnet/minecraft/server/packs/repository/PackRepository;Lnet/minecraft/world/level/DataPackConfig;ZLnet/minecraft/world/flag/FeatureFlagSet;)Lnet/minecraft/world/level/WorldDataConfiguration; net/minecraft/server/MinecraftServer/configurePackRepository (Lnet/minecraft/server/packs/repository/PackRepository;Lnet/minecraft/world/level/DataPackConfig;ZLnet/minecraft/world/flag/FeatureFlagSet;)Lnet/minecraft/world/level/WorldDataConfiguration; +MD: net/minecraft/server/MinecraftServer/m_247573_ ()Lnet/minecraft/core/LayeredRegistryAccess; net/minecraft/server/MinecraftServer/registries ()Lnet/minecraft/core/LayeredRegistryAccess; +MD: net/minecraft/server/MinecraftServer/m_257134_ (Lnet/minecraft/core/Registry;)Ljava/util/Optional; net/minecraft/server/MinecraftServer/lambda$setInitialSpawn$4 (Lnet/minecraft/core/Registry;)Ljava/util/Optional; +MD: net/minecraft/server/MinecraftServer/m_263900_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/server/level/ServerChunkCache;Lnet/minecraft/world/level/storage/ServerLevelData;Lnet/minecraft/core/Holder$Reference;)V net/minecraft/server/MinecraftServer/lambda$setInitialSpawn$5 (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/server/level/ServerChunkCache;Lnet/minecraft/world/level/storage/ServerLevelData;Lnet/minecraft/core/Holder$Reference;)V +MD: net/minecraft/server/MinecraftServer/m_271592_ (Ljava/nio/file/Path;)Z net/minecraft/server/MinecraftServer/lambda$loadStatusIcon$10 (Ljava/nio/file/Path;)Z +MD: net/minecraft/server/MinecraftServer/m_271593_ (Ljava/nio/file/Path;)Ljava/util/Optional; net/minecraft/server/MinecraftServer/lambda$loadStatusIcon$12 (Ljava/nio/file/Path;)Ljava/util/Optional; +MD: net/minecraft/server/MinecraftServer/m_271594_ (Ljava/nio/file/Path;)Z net/minecraft/server/MinecraftServer/lambda$loadStatusIcon$9 (Ljava/nio/file/Path;)Z +MD: net/minecraft/server/MinecraftServer/m_271595_ ()Ljava/util/Optional; net/minecraft/server/MinecraftServer/lambda$loadStatusIcon$11 ()Ljava/util/Optional; +MD: net/minecraft/server/MinecraftServer/m_271961_ ()Lnet/minecraft/network/protocol/status/ServerStatus$Players; net/minecraft/server/MinecraftServer/buildPlayerStatus ()Lnet/minecraft/network/protocol/status/ServerStatus$Players; +MD: net/minecraft/server/MinecraftServer/m_271988_ ()Lnet/minecraft/network/protocol/status/ServerStatus; net/minecraft/server/MinecraftServer/buildServerStatus ()Lnet/minecraft/network/protocol/status/ServerStatus; +MD: net/minecraft/server/MinecraftServer/m_272273_ ()Ljava/util/Optional; net/minecraft/server/MinecraftServer/loadStatusIcon ()Ljava/util/Optional; +MD: net/minecraft/server/MinecraftServer/m_276346_ (Lnet/minecraft/server/level/ServerLevel;)V net/minecraft/server/MinecraftServer/synchronizeTime (Lnet/minecraft/server/level/ServerLevel;)V +MD: net/minecraft/server/MinecraftServer/m_276350_ ()V net/minecraft/server/MinecraftServer/forceTimeSynchronization ()V +MD: net/minecraft/server/MinecraftServer/m_278653_ ()Lnet/minecraft/world/level/storage/loot/LootDataManager; net/minecraft/server/MinecraftServer/getLootData ()Lnet/minecraft/world/level/storage/loot/LootDataManager; +MD: net/minecraft/server/MinecraftServer/m_284385_ ()Lnet/minecraft/util/SignatureValidator; net/minecraft/server/MinecraftServer/getProfileKeySignatureValidator ()Lnet/minecraft/util/SignatureValidator; +MD: net/minecraft/server/MinecraftServer/m_287809_ (Lnet/minecraft/server/level/ServerLevel;)Ljava/lang/String; net/minecraft/server/MinecraftServer/lambda$tickChildren$13 (Lnet/minecraft/server/level/ServerLevel;)Ljava/lang/String; +MD: net/minecraft/server/MinecraftServer/m_5660_ ()Z net/minecraft/server/MinecraftServer/scheduleExecutables ()Z +MD: net/minecraft/server/MinecraftServer/m_5703_ (Ljava/util/function/BooleanSupplier;)V net/minecraft/server/MinecraftServer/tickChildren (Ljava/util/function/BooleanSupplier;)V +MD: net/minecraft/server/MinecraftServer/m_5705_ (Ljava/util/function/BooleanSupplier;)V net/minecraft/server/MinecraftServer/tickServer (Ljava/util/function/BooleanSupplier;)V +MD: net/minecraft/server/MinecraftServer/m_6102_ ()Z net/minecraft/server/MinecraftServer/shouldInformAdmins ()Z +MD: net/minecraft/server/MinecraftServer/m_6237_ ()Ljava/io/File; net/minecraft/server/MinecraftServer/getServerDirectory ()Ljava/io/File; +MD: net/minecraft/server/MinecraftServer/m_6304_ ()Ljava/lang/Thread; net/minecraft/server/MinecraftServer/getRunningThread ()Ljava/lang/Thread; +MD: net/minecraft/server/MinecraftServer/m_6328_ ()I net/minecraft/server/MinecraftServer/getCompressionThreshold ()I +MD: net/minecraft/server/MinecraftServer/m_6329_ ()I net/minecraft/server/MinecraftServer/getAbsoluteMaxWorldSize ()I +MD: net/minecraft/server/MinecraftServer/m_6362_ (Ljava/lang/Runnable;)Z net/minecraft/server/MinecraftServer/shouldRun (Ljava/lang/Runnable;)Z +MD: net/minecraft/server/MinecraftServer/m_6362_ (Lnet/minecraft/server/TickTask;)Z net/minecraft/server/MinecraftServer/shouldRun (Lnet/minecraft/server/TickTask;)Z +MD: net/minecraft/server/MinecraftServer/m_6365_ ()Z net/minecraft/server/MinecraftServer/forceSynchronousWrites ()Z +MD: net/minecraft/server/MinecraftServer/m_6367_ (Ljava/lang/Runnable;)V net/minecraft/server/MinecraftServer/doRunTask (Ljava/lang/Runnable;)V +MD: net/minecraft/server/MinecraftServer/m_6367_ (Lnet/minecraft/server/TickTask;)V net/minecraft/server/MinecraftServer/doRunTask (Lnet/minecraft/server/TickTask;)V +MD: net/minecraft/server/MinecraftServer/m_6370_ ()Z net/minecraft/server/MinecraftServer/hasGui ()Z +MD: net/minecraft/server/MinecraftServer/m_6373_ ()Z net/minecraft/server/MinecraftServer/repliesToStatus ()Z +MD: net/minecraft/server/MinecraftServer/m_6396_ ()I net/minecraft/server/MinecraftServer/getSpawnProtectionRadius ()I +MD: net/minecraft/server/MinecraftServer/m_6681_ (Ljava/lang/Runnable;)Ljava/lang/Runnable; net/minecraft/server/MinecraftServer/wrapRunnable (Ljava/lang/Runnable;)Ljava/lang/Runnable; +MD: net/minecraft/server/MinecraftServer/m_6681_ (Ljava/lang/Runnable;)Lnet/minecraft/server/TickTask; net/minecraft/server/MinecraftServer/wrapRunnable (Ljava/lang/Runnable;)Lnet/minecraft/server/TickTask; +MD: net/minecraft/server/MinecraftServer/m_6846_ ()Lnet/minecraft/server/players/PlayerList; net/minecraft/server/MinecraftServer/getPlayerList ()Lnet/minecraft/server/players/PlayerList; +MD: net/minecraft/server/MinecraftServer/m_6982_ ()Z net/minecraft/server/MinecraftServer/isDedicatedServer ()Z +MD: net/minecraft/server/MinecraftServer/m_6983_ ()Z net/minecraft/server/MinecraftServer/shouldRconBroadcast ()Z +MD: net/minecraft/server/MinecraftServer/m_6988_ ()V net/minecraft/server/MinecraftServer/onServerExit ()V +MD: net/minecraft/server/MinecraftServer/m_6992_ ()Z net/minecraft/server/MinecraftServer/isPublished ()Z +MD: net/minecraft/server/MinecraftServer/m_6993_ ()Z net/minecraft/server/MinecraftServer/isCommandBlockEnabled ()Z +MD: net/minecraft/server/MinecraftServer/m_6994_ ()Z net/minecraft/server/MinecraftServer/isEpollEnabled ()Z +MD: net/minecraft/server/MinecraftServer/m_6997_ ()Z net/minecraft/server/MinecraftServer/areNpcsEnabled ()Z +MD: net/minecraft/server/MinecraftServer/m_6998_ ()Z net/minecraft/server/MinecraftServer/isSpawningAnimals ()Z +MD: net/minecraft/server/MinecraftServer/m_6999_ ()Z net/minecraft/server/MinecraftServer/acceptsSuccess ()Z +MD: net/minecraft/server/MinecraftServer/m_7004_ ()Z net/minecraft/server/MinecraftServer/isSpawningMonsters ()Z +MD: net/minecraft/server/MinecraftServer/m_7010_ ()I net/minecraft/server/MinecraftServer/getPort ()I +MD: net/minecraft/server/MinecraftServer/m_7022_ ()I net/minecraft/server/MinecraftServer/getOperatorUserPermissionLevel ()I +MD: net/minecraft/server/MinecraftServer/m_7028_ ()Z net/minecraft/server/MinecraftServer/acceptsFailure ()Z +MD: net/minecraft/server/MinecraftServer/m_7032_ ()I net/minecraft/server/MinecraftServer/getRateLimitPacketsPerSecond ()I +MD: net/minecraft/server/MinecraftServer/m_7034_ ()I net/minecraft/server/MinecraftServer/getFunctionCompilationLevel ()I +MD: net/minecraft/server/MinecraftServer/m_7035_ ()Z net/minecraft/server/MinecraftServer/isHardcore ()Z +MD: net/minecraft/server/MinecraftServer/m_7038_ ()Z net/minecraft/server/MinecraftServer/initServer ()Z +MD: net/minecraft/server/MinecraftServer/m_7041_ ()V net/minecraft/server/MinecraftServer/stopServer ()V +MD: net/minecraft/server/MinecraftServer/m_7044_ ()V net/minecraft/server/MinecraftServer/forceDifficulty ()V +MD: net/minecraft/server/MinecraftServer/m_7079_ ()Z net/minecraft/server/MinecraftServer/isNetherEnabled ()Z +MD: net/minecraft/server/MinecraftServer/m_7186_ (I)I net/minecraft/server/MinecraftServer/getScaledTrackingDistance (I)I +MD: net/minecraft/server/MinecraftServer/m_7196_ (I)V net/minecraft/server/MinecraftServer/setPlayerIdleTimeout (I)V +MD: net/minecraft/server/MinecraftServer/m_7245_ ()Z net/minecraft/server/MinecraftServer/pollTask ()Z +MD: net/minecraft/server/MinecraftServer/m_7268_ (Lnet/minecraft/CrashReport;)V net/minecraft/server/MinecraftServer/onServerCrash (Lnet/minecraft/CrashReport;)V +MD: net/minecraft/server/MinecraftServer/m_7386_ (Lnet/minecraft/world/level/GameType;ZI)Z net/minecraft/server/MinecraftServer/publishServer (Lnet/minecraft/world/level/GameType;ZI)Z +MD: net/minecraft/server/MinecraftServer/m_7416_ ()I net/minecraft/server/MinecraftServer/getPlayerCount ()I +MD: net/minecraft/server/MinecraftServer/m_7418_ ()I net/minecraft/server/MinecraftServer/getMaxPlayers ()I +MD: net/minecraft/server/MinecraftServer/m_7570_ (Z)V net/minecraft/server/MinecraftServer/halt (Z)V +MD: net/minecraft/server/MinecraftServer/m_7630_ ()Ljava/lang/String; net/minecraft/server/MinecraftServer/getServerVersion ()Ljava/lang/String; +MD: net/minecraft/server/MinecraftServer/m_7641_ ()[Ljava/lang/String; net/minecraft/server/MinecraftServer/getPlayerNames ()[Ljava/lang/String; +MD: net/minecraft/server/MinecraftServer/m_7762_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/player/Player;)Z net/minecraft/server/MinecraftServer/isUnderSpawnProtection (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/player/Player;)Z +MD: net/minecraft/server/MinecraftServer/m_7779_ (Lcom/mojang/authlib/GameProfile;)Z net/minecraft/server/MinecraftServer/isSingleplayerOwner (Lcom/mojang/authlib/GameProfile;)Z +MD: net/minecraft/server/MinecraftServer/m_7835_ (Lnet/minecraft/world/level/GameType;)V net/minecraft/server/MinecraftServer/setDefaultGameType (Lnet/minecraft/world/level/GameType;)V +MD: net/minecraft/server/MinecraftServer/m_7950_ (Lnet/minecraft/server/level/ServerPlayer;)Lnet/minecraft/server/network/TextFilter; net/minecraft/server/MinecraftServer/createTextFilterForPlayer (Lnet/minecraft/server/level/ServerPlayer;)Lnet/minecraft/server/network/TextFilter; +MD: net/minecraft/server/MinecraftServer$1/ (Lnet/minecraft/server/MinecraftServer;Ljava/util/List;Lnet/minecraft/world/level/GameRules;)V net/minecraft/server/MinecraftServer$1/ (Lnet/minecraft/server/MinecraftServer;Ljava/util/List;Lnet/minecraft/world/level/GameRules;)V +MD: net/minecraft/server/MinecraftServer$1/m_6889_ (Lnet/minecraft/world/level/GameRules$Key;Lnet/minecraft/world/level/GameRules$Type;)V net/minecraft/server/MinecraftServer$1/visit (Lnet/minecraft/world/level/GameRules$Key;Lnet/minecraft/world/level/GameRules$Type;)V +MD: net/minecraft/server/MinecraftServer$ReloadableResources/ (Lnet/minecraft/server/packs/resources/CloseableResourceManager;Lnet/minecraft/server/ReloadableServerResources;)V net/minecraft/server/MinecraftServer$ReloadableResources/ (Lnet/minecraft/server/packs/resources/CloseableResourceManager;Lnet/minecraft/server/ReloadableServerResources;)V +MD: net/minecraft/server/MinecraftServer$ReloadableResources/close ()V net/minecraft/server/MinecraftServer$ReloadableResources/close ()V +MD: net/minecraft/server/MinecraftServer$ReloadableResources/equals (Ljava/lang/Object;)Z net/minecraft/server/MinecraftServer$ReloadableResources/equals (Ljava/lang/Object;)Z +MD: net/minecraft/server/MinecraftServer$ReloadableResources/f_206584_ ()Lnet/minecraft/server/packs/resources/CloseableResourceManager; net/minecraft/server/MinecraftServer$ReloadableResources/resourceManager ()Lnet/minecraft/server/packs/resources/CloseableResourceManager; +MD: net/minecraft/server/MinecraftServer$ReloadableResources/f_206585_ ()Lnet/minecraft/server/ReloadableServerResources; net/minecraft/server/MinecraftServer$ReloadableResources/managers ()Lnet/minecraft/server/ReloadableServerResources; +MD: net/minecraft/server/MinecraftServer$ReloadableResources/hashCode ()I net/minecraft/server/MinecraftServer$ReloadableResources/hashCode ()I +MD: net/minecraft/server/MinecraftServer$ReloadableResources/toString ()Ljava/lang/String; net/minecraft/server/MinecraftServer$ReloadableResources/toString ()Ljava/lang/String; +MD: net/minecraft/server/MinecraftServer$ServerResourcePackInfo/ (Ljava/lang/String;Ljava/lang/String;ZLnet/minecraft/network/chat/Component;)V net/minecraft/server/MinecraftServer$ServerResourcePackInfo/ (Ljava/lang/String;Ljava/lang/String;ZLnet/minecraft/network/chat/Component;)V +MD: net/minecraft/server/MinecraftServer$ServerResourcePackInfo/equals (Ljava/lang/Object;)Z net/minecraft/server/MinecraftServer$ServerResourcePackInfo/equals (Ljava/lang/Object;)Z +MD: net/minecraft/server/MinecraftServer$ServerResourcePackInfo/f_236743_ ()Ljava/lang/String; net/minecraft/server/MinecraftServer$ServerResourcePackInfo/url ()Ljava/lang/String; +MD: net/minecraft/server/MinecraftServer$ServerResourcePackInfo/f_236744_ ()Ljava/lang/String; net/minecraft/server/MinecraftServer$ServerResourcePackInfo/hash ()Ljava/lang/String; +MD: net/minecraft/server/MinecraftServer$ServerResourcePackInfo/f_236745_ ()Z net/minecraft/server/MinecraftServer$ServerResourcePackInfo/isRequired ()Z +MD: net/minecraft/server/MinecraftServer$ServerResourcePackInfo/f_236746_ ()Lnet/minecraft/network/chat/Component; net/minecraft/server/MinecraftServer$ServerResourcePackInfo/prompt ()Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/MinecraftServer$ServerResourcePackInfo/hashCode ()I net/minecraft/server/MinecraftServer$ServerResourcePackInfo/hashCode ()I +MD: net/minecraft/server/MinecraftServer$ServerResourcePackInfo/toString ()Ljava/lang/String; net/minecraft/server/MinecraftServer$ServerResourcePackInfo/toString ()Ljava/lang/String; +MD: net/minecraft/server/MinecraftServer$TimeProfiler/ (JI)V net/minecraft/server/MinecraftServer$TimeProfiler/ (JI)V +MD: net/minecraft/server/MinecraftServer$TimeProfiler/m_177960_ (JI)Lnet/minecraft/util/profiling/ProfileResults; net/minecraft/server/MinecraftServer$TimeProfiler/stop (JI)Lnet/minecraft/util/profiling/ProfileResults; +MD: net/minecraft/server/MinecraftServer$TimeProfiler$1/ (Lnet/minecraft/server/MinecraftServer$TimeProfiler;JI)V net/minecraft/server/MinecraftServer$TimeProfiler$1/ (Lnet/minecraft/server/MinecraftServer$TimeProfiler;JI)V +MD: net/minecraft/server/MinecraftServer$TimeProfiler$1/m_142368_ ()Ljava/lang/String; net/minecraft/server/MinecraftServer$TimeProfiler$1/getProfilerResults ()Ljava/lang/String; +MD: net/minecraft/server/MinecraftServer$TimeProfiler$1/m_142444_ (Ljava/nio/file/Path;)Z net/minecraft/server/MinecraftServer$TimeProfiler$1/saveResults (Ljava/nio/file/Path;)Z +MD: net/minecraft/server/MinecraftServer$TimeProfiler$1/m_6412_ (Ljava/lang/String;)Ljava/util/List; net/minecraft/server/MinecraftServer$TimeProfiler$1/getTimes (Ljava/lang/String;)Ljava/util/List; +MD: net/minecraft/server/MinecraftServer$TimeProfiler$1/m_7229_ ()J net/minecraft/server/MinecraftServer$TimeProfiler$1/getStartTimeNano ()J +MD: net/minecraft/server/MinecraftServer$TimeProfiler$1/m_7230_ ()I net/minecraft/server/MinecraftServer$TimeProfiler$1/getStartTimeTicks ()I +MD: net/minecraft/server/MinecraftServer$TimeProfiler$1/m_7236_ ()J net/minecraft/server/MinecraftServer$TimeProfiler$1/getEndTimeNano ()J +MD: net/minecraft/server/MinecraftServer$TimeProfiler$1/m_7317_ ()I net/minecraft/server/MinecraftServer$TimeProfiler$1/getEndTimeTicks ()I +MD: net/minecraft/server/PlayerAdvancements/ ()V net/minecraft/server/PlayerAdvancements/ ()V +MD: net/minecraft/server/PlayerAdvancements/ (Lcom/mojang/datafixers/DataFixer;Lnet/minecraft/server/players/PlayerList;Lnet/minecraft/server/ServerAdvancementManager;Ljava/nio/file/Path;Lnet/minecraft/server/level/ServerPlayer;)V net/minecraft/server/PlayerAdvancements/ (Lcom/mojang/datafixers/DataFixer;Lnet/minecraft/server/players/PlayerList;Lnet/minecraft/server/ServerAdvancementManager;Ljava/nio/file/Path;Lnet/minecraft/server/level/ServerPlayer;)V +MD: net/minecraft/server/PlayerAdvancements/m_135978_ ()V net/minecraft/server/PlayerAdvancements/stopListening ()V +MD: net/minecraft/server/PlayerAdvancements/m_135979_ (Lnet/minecraft/server/level/ServerPlayer;)V net/minecraft/server/PlayerAdvancements/setPlayer (Lnet/minecraft/server/level/ServerPlayer;)V +MD: net/minecraft/server/PlayerAdvancements/m_135981_ (Lnet/minecraft/server/ServerAdvancementManager;)V net/minecraft/server/PlayerAdvancements/reload (Lnet/minecraft/server/ServerAdvancementManager;)V +MD: net/minecraft/server/PlayerAdvancements/m_135983_ (Lnet/minecraft/advancements/Advancement;)V net/minecraft/server/PlayerAdvancements/setSelectedTab (Lnet/minecraft/advancements/Advancement;)V +MD: net/minecraft/server/PlayerAdvancements/m_135985_ (Lnet/minecraft/advancements/Advancement;Lnet/minecraft/advancements/AdvancementProgress;)V net/minecraft/server/PlayerAdvancements/startProgress (Lnet/minecraft/advancements/Advancement;Lnet/minecraft/advancements/AdvancementProgress;)V +MD: net/minecraft/server/PlayerAdvancements/m_135988_ (Lnet/minecraft/advancements/Advancement;Ljava/lang/String;)Z net/minecraft/server/PlayerAdvancements/award (Lnet/minecraft/advancements/Advancement;Ljava/lang/String;)Z +MD: net/minecraft/server/PlayerAdvancements/m_135991_ ()V net/minecraft/server/PlayerAdvancements/save ()V +MD: net/minecraft/server/PlayerAdvancements/m_135992_ (Lnet/minecraft/server/level/ServerPlayer;)V net/minecraft/server/PlayerAdvancements/flushDirty (Lnet/minecraft/server/level/ServerPlayer;)V +MD: net/minecraft/server/PlayerAdvancements/m_135994_ (Lnet/minecraft/server/ServerAdvancementManager;)V net/minecraft/server/PlayerAdvancements/registerListeners (Lnet/minecraft/server/ServerAdvancementManager;)V +MD: net/minecraft/server/PlayerAdvancements/m_135996_ (Lnet/minecraft/advancements/Advancement;)Lnet/minecraft/advancements/AdvancementProgress; net/minecraft/server/PlayerAdvancements/getOrStartProgress (Lnet/minecraft/advancements/Advancement;)Lnet/minecraft/advancements/AdvancementProgress; +MD: net/minecraft/server/PlayerAdvancements/m_135998_ (Lnet/minecraft/advancements/Advancement;Ljava/lang/String;)Z net/minecraft/server/PlayerAdvancements/revoke (Lnet/minecraft/advancements/Advancement;Ljava/lang/String;)Z +MD: net/minecraft/server/PlayerAdvancements/m_136002_ (Lnet/minecraft/server/ServerAdvancementManager;)V net/minecraft/server/PlayerAdvancements/checkForAutomaticTriggers (Lnet/minecraft/server/ServerAdvancementManager;)V +MD: net/minecraft/server/PlayerAdvancements/m_136004_ (Lnet/minecraft/advancements/Advancement;)V net/minecraft/server/PlayerAdvancements/registerListeners (Lnet/minecraft/advancements/Advancement;)V +MD: net/minecraft/server/PlayerAdvancements/m_136006_ (Lnet/minecraft/server/ServerAdvancementManager;)V net/minecraft/server/PlayerAdvancements/load (Lnet/minecraft/server/ServerAdvancementManager;)V +MD: net/minecraft/server/PlayerAdvancements/m_136008_ (Lnet/minecraft/advancements/Advancement;)V net/minecraft/server/PlayerAdvancements/unregisterListeners (Lnet/minecraft/advancements/Advancement;)V +MD: net/minecraft/server/PlayerAdvancements/m_264255_ (Lnet/minecraft/server/ServerAdvancementManager;Ljava/util/Map$Entry;)V net/minecraft/server/PlayerAdvancements/lambda$load$0 (Lnet/minecraft/server/ServerAdvancementManager;Ljava/util/Map$Entry;)V +MD: net/minecraft/server/PlayerAdvancements/m_264265_ (Lnet/minecraft/advancements/Advancement;Ljava/util/Set;Ljava/util/Set;)V net/minecraft/server/PlayerAdvancements/updateTreeVisibility (Lnet/minecraft/advancements/Advancement;Ljava/util/Set;Ljava/util/Set;)V +MD: net/minecraft/server/PlayerAdvancements/m_264320_ (Ljava/util/Set;Ljava/util/Set;Lnet/minecraft/advancements/Advancement;Z)V net/minecraft/server/PlayerAdvancements/lambda$updateTreeVisibility$2 (Ljava/util/Set;Ljava/util/Set;Lnet/minecraft/advancements/Advancement;Z)V +MD: net/minecraft/server/PlayerAdvancements/m_264423_ (Lnet/minecraft/advancements/Advancement;)V net/minecraft/server/PlayerAdvancements/markForVisibilityUpdate (Lnet/minecraft/advancements/Advancement;)V +MD: net/minecraft/server/PlayerAdvancements/m_264523_ (Lnet/minecraft/advancements/Advancement;)Z net/minecraft/server/PlayerAdvancements/lambda$updateTreeVisibility$1 (Lnet/minecraft/advancements/Advancement;)Z +MD: net/minecraft/server/PlayerAdvancements$1/ ()V net/minecraft/server/PlayerAdvancements$1/ ()V +MD: net/minecraft/server/RegistryLayer/ ()V net/minecraft/server/RegistryLayer/ ()V +MD: net/minecraft/server/RegistryLayer/ (Ljava/lang/String;I)V net/minecraft/server/RegistryLayer/ (Ljava/lang/String;I)V +MD: net/minecraft/server/RegistryLayer/m_245849_ ()Lnet/minecraft/core/LayeredRegistryAccess; net/minecraft/server/RegistryLayer/createRegistryAccess ()Lnet/minecraft/core/LayeredRegistryAccess; +MD: net/minecraft/server/RegistryLayer/m_247136_ ()[Lnet/minecraft/server/RegistryLayer; net/minecraft/server/RegistryLayer/$values ()[Lnet/minecraft/server/RegistryLayer; +MD: net/minecraft/server/RegistryLayer/valueOf (Ljava/lang/String;)Lnet/minecraft/server/RegistryLayer; net/minecraft/server/RegistryLayer/valueOf (Ljava/lang/String;)Lnet/minecraft/server/RegistryLayer; +MD: net/minecraft/server/RegistryLayer/values ()[Lnet/minecraft/server/RegistryLayer; net/minecraft/server/RegistryLayer/values ()[Lnet/minecraft/server/RegistryLayer; +MD: net/minecraft/server/ReloadableServerResources/ ()V net/minecraft/server/ReloadableServerResources/ ()V +MD: net/minecraft/server/ReloadableServerResources/ (Lnet/minecraft/core/RegistryAccess$Frozen;Lnet/minecraft/world/flag/FeatureFlagSet;Lnet/minecraft/commands/Commands$CommandSelection;I)V net/minecraft/server/ReloadableServerResources/ (Lnet/minecraft/core/RegistryAccess$Frozen;Lnet/minecraft/world/flag/FeatureFlagSet;Lnet/minecraft/commands/Commands$CommandSelection;I)V +MD: net/minecraft/server/ReloadableServerResources/m_206860_ ()Lnet/minecraft/server/ServerFunctionLibrary; net/minecraft/server/ReloadableServerResources/getFunctionLibrary ()Lnet/minecraft/server/ServerFunctionLibrary; +MD: net/minecraft/server/ReloadableServerResources/m_206868_ (Lnet/minecraft/core/RegistryAccess;)V net/minecraft/server/ReloadableServerResources/updateRegistryTags (Lnet/minecraft/core/RegistryAccess;)V +MD: net/minecraft/server/ReloadableServerResources/m_206870_ (Lnet/minecraft/core/RegistryAccess;Lnet/minecraft/tags/TagManager$LoadResult;)V net/minecraft/server/ReloadableServerResources/updateRegistryTags (Lnet/minecraft/core/RegistryAccess;Lnet/minecraft/tags/TagManager$LoadResult;)V +MD: net/minecraft/server/ReloadableServerResources/m_206887_ ()Lnet/minecraft/world/item/crafting/RecipeManager; net/minecraft/server/ReloadableServerResources/getRecipeManager ()Lnet/minecraft/world/item/crafting/RecipeManager; +MD: net/minecraft/server/ReloadableServerResources/m_206888_ ()Lnet/minecraft/commands/Commands; net/minecraft/server/ReloadableServerResources/getCommands ()Lnet/minecraft/commands/Commands; +MD: net/minecraft/server/ReloadableServerResources/m_206889_ ()Lnet/minecraft/server/ServerAdvancementManager; net/minecraft/server/ReloadableServerResources/getAdvancements ()Lnet/minecraft/server/ServerAdvancementManager; +MD: net/minecraft/server/ReloadableServerResources/m_206890_ ()Ljava/util/List; net/minecraft/server/ReloadableServerResources/listeners ()Ljava/util/List; +MD: net/minecraft/server/ReloadableServerResources/m_214301_ (Lnet/minecraft/resources/ResourceKey;Ljava/util/Map$Entry;)Lnet/minecraft/tags/TagKey; net/minecraft/server/ReloadableServerResources/lambda$updateRegistryTags$3 (Lnet/minecraft/resources/ResourceKey;Ljava/util/Map$Entry;)Lnet/minecraft/tags/TagKey; +MD: net/minecraft/server/ReloadableServerResources/m_214304_ (Lnet/minecraft/server/ReloadableServerResources;Ljava/lang/Object;)Lnet/minecraft/server/ReloadableServerResources; net/minecraft/server/ReloadableServerResources/lambda$loadResources$1 (Lnet/minecraft/server/ReloadableServerResources;Ljava/lang/Object;)Lnet/minecraft/server/ReloadableServerResources; +MD: net/minecraft/server/ReloadableServerResources/m_214311_ (Ljava/util/Map$Entry;)Ljava/util/List; net/minecraft/server/ReloadableServerResources/lambda$updateRegistryTags$4 (Ljava/util/Map$Entry;)Ljava/util/List; +MD: net/minecraft/server/ReloadableServerResources/m_214313_ (Lnet/minecraft/core/RegistryAccess;Lnet/minecraft/tags/TagManager$LoadResult;)V net/minecraft/server/ReloadableServerResources/lambda$updateRegistryTags$2 (Lnet/minecraft/core/RegistryAccess;Lnet/minecraft/tags/TagManager$LoadResult;)V +MD: net/minecraft/server/ReloadableServerResources/m_247740_ (Lnet/minecraft/server/packs/resources/ResourceManager;Lnet/minecraft/core/RegistryAccess$Frozen;Lnet/minecraft/world/flag/FeatureFlagSet;Lnet/minecraft/commands/Commands$CommandSelection;ILjava/util/concurrent/Executor;Ljava/util/concurrent/Executor;)Ljava/util/concurrent/CompletableFuture; net/minecraft/server/ReloadableServerResources/loadResources (Lnet/minecraft/server/packs/resources/ResourceManager;Lnet/minecraft/core/RegistryAccess$Frozen;Lnet/minecraft/world/flag/FeatureFlagSet;Lnet/minecraft/commands/Commands$CommandSelection;ILjava/util/concurrent/Executor;Ljava/util/concurrent/Executor;)Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/server/ReloadableServerResources/m_254799_ (Lnet/minecraft/server/ReloadableServerResources;Ljava/lang/Object;Ljava/lang/Throwable;)V net/minecraft/server/ReloadableServerResources/lambda$loadResources$0 (Lnet/minecraft/server/ReloadableServerResources;Ljava/lang/Object;Ljava/lang/Throwable;)V +MD: net/minecraft/server/ReloadableServerResources/m_278801_ ()Lnet/minecraft/world/level/storage/loot/LootDataManager; net/minecraft/server/ReloadableServerResources/getLootData ()Lnet/minecraft/world/level/storage/loot/LootDataManager; +MD: net/minecraft/server/RunningOnDifferentThreadException/ ()V net/minecraft/server/RunningOnDifferentThreadException/ ()V +MD: net/minecraft/server/RunningOnDifferentThreadException/ ()V net/minecraft/server/RunningOnDifferentThreadException/ ()V +MD: net/minecraft/server/RunningOnDifferentThreadException/fillInStackTrace ()Ljava/lang/Throwable; net/minecraft/server/RunningOnDifferentThreadException/fillInStackTrace ()Ljava/lang/Throwable; +MD: net/minecraft/server/ServerAdvancementManager/ ()V net/minecraft/server/ServerAdvancementManager/ ()V +MD: net/minecraft/server/ServerAdvancementManager/ (Lnet/minecraft/world/level/storage/loot/LootDataManager;)V net/minecraft/server/ServerAdvancementManager/ (Lnet/minecraft/world/level/storage/loot/LootDataManager;)V +MD: net/minecraft/server/ServerAdvancementManager/m_136028_ ()Ljava/util/Collection; net/minecraft/server/ServerAdvancementManager/getAllAdvancements ()Ljava/util/Collection; +MD: net/minecraft/server/ServerAdvancementManager/m_136041_ (Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/advancements/Advancement; net/minecraft/server/ServerAdvancementManager/getAdvancement (Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/advancements/Advancement; +MD: net/minecraft/server/ServerAdvancementManager/m_278533_ (Ljava/util/Map;Lnet/minecraft/resources/ResourceLocation;Lcom/google/gson/JsonElement;)V net/minecraft/server/ServerAdvancementManager/lambda$apply$0 (Ljava/util/Map;Lnet/minecraft/resources/ResourceLocation;Lcom/google/gson/JsonElement;)V +MD: net/minecraft/server/ServerAdvancementManager/m_5787_ (Ljava/util/Map;Lnet/minecraft/server/packs/resources/ResourceManager;Lnet/minecraft/util/profiling/ProfilerFiller;)V net/minecraft/server/ServerAdvancementManager/apply (Ljava/util/Map;Lnet/minecraft/server/packs/resources/ResourceManager;Lnet/minecraft/util/profiling/ProfilerFiller;)V +MD: net/minecraft/server/ServerAdvancementManager/m_5787_ (Ljava/lang/Object;Lnet/minecraft/server/packs/resources/ResourceManager;Lnet/minecraft/util/profiling/ProfilerFiller;)V net/minecraft/server/ServerAdvancementManager/apply (Ljava/lang/Object;Lnet/minecraft/server/packs/resources/ResourceManager;Lnet/minecraft/util/profiling/ProfilerFiller;)V +MD: net/minecraft/server/ServerFunctionLibrary/ ()V net/minecraft/server/ServerFunctionLibrary/ ()V +MD: net/minecraft/server/ServerFunctionLibrary/ (ILcom/mojang/brigadier/CommandDispatcher;)V net/minecraft/server/ServerFunctionLibrary/ (ILcom/mojang/brigadier/CommandDispatcher;)V +MD: net/minecraft/server/ServerFunctionLibrary/m_136055_ ()Ljava/util/Map; net/minecraft/server/ServerFunctionLibrary/getFunctions ()Ljava/util/Map; +MD: net/minecraft/server/ServerFunctionLibrary/m_136089_ (Lnet/minecraft/resources/ResourceLocation;)Ljava/util/Optional; net/minecraft/server/ServerFunctionLibrary/getFunction (Lnet/minecraft/resources/ResourceLocation;)Ljava/util/Optional; +MD: net/minecraft/server/ServerFunctionLibrary/m_179939_ (Lcom/google/common/collect/ImmutableMap$Builder;Lnet/minecraft/resources/ResourceLocation;Ljava/util/concurrent/CompletableFuture;)V net/minecraft/server/ServerFunctionLibrary/lambda$reload$6 (Lcom/google/common/collect/ImmutableMap$Builder;Lnet/minecraft/resources/ResourceLocation;Ljava/util/concurrent/CompletableFuture;)V +MD: net/minecraft/server/ServerFunctionLibrary/m_179943_ (Lcom/mojang/datafixers/util/Pair;)V net/minecraft/server/ServerFunctionLibrary/lambda$reload$7 (Lcom/mojang/datafixers/util/Pair;)V +MD: net/minecraft/server/ServerFunctionLibrary/m_179947_ (Ljava/util/Map;Ljava/lang/Void;Ljava/lang/Throwable;)Ljava/util/Map; net/minecraft/server/ServerFunctionLibrary/lambda$reload$3 (Ljava/util/Map;Ljava/lang/Void;Ljava/lang/Throwable;)Ljava/util/Map; +MD: net/minecraft/server/ServerFunctionLibrary/m_179951_ (Lnet/minecraft/resources/ResourceLocation;Lcom/google/common/collect/ImmutableMap$Builder;Lnet/minecraft/commands/CommandFunction;Ljava/lang/Throwable;)Ljava/lang/Object; net/minecraft/server/ServerFunctionLibrary/lambda$reload$5 (Lnet/minecraft/resources/ResourceLocation;Lcom/google/common/collect/ImmutableMap$Builder;Lnet/minecraft/commands/CommandFunction;Ljava/lang/Throwable;)Ljava/lang/Object; +MD: net/minecraft/server/ServerFunctionLibrary/m_179956_ (Lnet/minecraft/server/packs/resources/ResourceManager;)Ljava/util/Map; net/minecraft/server/ServerFunctionLibrary/lambda$reload$0 (Lnet/minecraft/server/packs/resources/ResourceManager;)Ljava/util/Map; +MD: net/minecraft/server/ServerFunctionLibrary/m_206891_ ()Ljava/lang/Iterable; net/minecraft/server/ServerFunctionLibrary/getAvailableTags ()Ljava/lang/Iterable; +MD: net/minecraft/server/ServerFunctionLibrary/m_214316_ (Lnet/minecraft/server/packs/resources/Resource;)Ljava/util/List; net/minecraft/server/ServerFunctionLibrary/readLines (Lnet/minecraft/server/packs/resources/Resource;)Ljava/util/List; +MD: net/minecraft/server/ServerFunctionLibrary/m_214320_ (Ljava/util/Map$Entry;Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/commands/CommandSourceStack;)Lnet/minecraft/commands/CommandFunction; net/minecraft/server/ServerFunctionLibrary/lambda$reload$2 (Ljava/util/Map$Entry;Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/commands/CommandSourceStack;)Lnet/minecraft/commands/CommandFunction; +MD: net/minecraft/server/ServerFunctionLibrary/m_214327_ (Lnet/minecraft/resources/ResourceLocation;)Ljava/util/Collection; net/minecraft/server/ServerFunctionLibrary/getTag (Lnet/minecraft/resources/ResourceLocation;)Ljava/util/Collection; +MD: net/minecraft/server/ServerFunctionLibrary/m_244807_ (Lnet/minecraft/server/packs/resources/ResourceManager;)Ljava/util/Map; net/minecraft/server/ServerFunctionLibrary/lambda$reload$1 (Lnet/minecraft/server/packs/resources/ResourceManager;)Ljava/util/Map; +MD: net/minecraft/server/ServerFunctionLibrary/m_244808_ (Ljava/util/concurrent/Executor;Ljava/util/Map;)Ljava/util/concurrent/CompletionStage; net/minecraft/server/ServerFunctionLibrary/lambda$reload$4 (Ljava/util/concurrent/Executor;Ljava/util/Map;)Ljava/util/concurrent/CompletionStage; +MD: net/minecraft/server/ServerFunctionLibrary/m_5540_ (Lnet/minecraft/server/packs/resources/PreparableReloadListener$PreparationBarrier;Lnet/minecraft/server/packs/resources/ResourceManager;Lnet/minecraft/util/profiling/ProfilerFiller;Lnet/minecraft/util/profiling/ProfilerFiller;Ljava/util/concurrent/Executor;Ljava/util/concurrent/Executor;)Ljava/util/concurrent/CompletableFuture; net/minecraft/server/ServerFunctionLibrary/reload (Lnet/minecraft/server/packs/resources/PreparableReloadListener$PreparationBarrier;Lnet/minecraft/server/packs/resources/ResourceManager;Lnet/minecraft/util/profiling/ProfilerFiller;Lnet/minecraft/util/profiling/ProfilerFiller;Ljava/util/concurrent/Executor;Ljava/util/concurrent/Executor;)Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/server/ServerFunctionManager/ ()V net/minecraft/server/ServerFunctionManager/ ()V +MD: net/minecraft/server/ServerFunctionManager/ (Lnet/minecraft/server/MinecraftServer;Lnet/minecraft/server/ServerFunctionLibrary;)V net/minecraft/server/ServerFunctionManager/ (Lnet/minecraft/server/MinecraftServer;Lnet/minecraft/server/ServerFunctionLibrary;)V +MD: net/minecraft/server/ServerFunctionManager/m_136112_ (Lnet/minecraft/commands/CommandFunction;Lnet/minecraft/commands/CommandSourceStack;)I net/minecraft/server/ServerFunctionManager/execute (Lnet/minecraft/commands/CommandFunction;Lnet/minecraft/commands/CommandSourceStack;)I +MD: net/minecraft/server/ServerFunctionManager/m_136115_ (Ljava/util/Collection;Lnet/minecraft/resources/ResourceLocation;)V net/minecraft/server/ServerFunctionManager/executeTagFunctions (Ljava/util/Collection;Lnet/minecraft/resources/ResourceLocation;)V +MD: net/minecraft/server/ServerFunctionManager/m_136118_ (Lnet/minecraft/resources/ResourceLocation;)Ljava/util/Optional; net/minecraft/server/ServerFunctionManager/get (Lnet/minecraft/resources/ResourceLocation;)Ljava/util/Optional; +MD: net/minecraft/server/ServerFunctionManager/m_136120_ (Lnet/minecraft/server/ServerFunctionLibrary;)V net/minecraft/server/ServerFunctionManager/replaceLibrary (Lnet/minecraft/server/ServerFunctionLibrary;)V +MD: net/minecraft/server/ServerFunctionManager/m_136122_ ()I net/minecraft/server/ServerFunctionManager/getCommandLimit ()I +MD: net/minecraft/server/ServerFunctionManager/m_136125_ (Lnet/minecraft/server/ServerFunctionLibrary;)V net/minecraft/server/ServerFunctionManager/postReload (Lnet/minecraft/server/ServerFunctionLibrary;)V +MD: net/minecraft/server/ServerFunctionManager/m_136127_ ()Lcom/mojang/brigadier/CommandDispatcher; net/minecraft/server/ServerFunctionManager/getDispatcher ()Lcom/mojang/brigadier/CommandDispatcher; +MD: net/minecraft/server/ServerFunctionManager/m_136128_ ()V net/minecraft/server/ServerFunctionManager/tick ()V +MD: net/minecraft/server/ServerFunctionManager/m_136129_ ()Lnet/minecraft/commands/CommandSourceStack; net/minecraft/server/ServerFunctionManager/getGameLoopSender ()Lnet/minecraft/commands/CommandSourceStack; +MD: net/minecraft/server/ServerFunctionManager/m_136130_ ()Ljava/lang/Iterable; net/minecraft/server/ServerFunctionManager/getFunctionNames ()Ljava/lang/Iterable; +MD: net/minecraft/server/ServerFunctionManager/m_136131_ ()Ljava/lang/Iterable; net/minecraft/server/ServerFunctionManager/getTagNames ()Ljava/lang/Iterable; +MD: net/minecraft/server/ServerFunctionManager/m_179960_ (Lnet/minecraft/commands/CommandFunction;Lnet/minecraft/commands/CommandSourceStack;Lnet/minecraft/server/ServerFunctionManager$TraceCallbacks;)I net/minecraft/server/ServerFunctionManager/execute (Lnet/minecraft/commands/CommandFunction;Lnet/minecraft/commands/CommandSourceStack;Lnet/minecraft/server/ServerFunctionManager$TraceCallbacks;)I +MD: net/minecraft/server/ServerFunctionManager/m_214331_ (Lnet/minecraft/resources/ResourceLocation;)Ljava/util/Collection; net/minecraft/server/ServerFunctionManager/getTag (Lnet/minecraft/resources/ResourceLocation;)Ljava/util/Collection; +MD: net/minecraft/server/ServerFunctionManager$ExecutionContext/ (Lnet/minecraft/server/ServerFunctionManager;Lnet/minecraft/server/ServerFunctionManager$TraceCallbacks;)V net/minecraft/server/ServerFunctionManager$ExecutionContext/ (Lnet/minecraft/server/ServerFunctionManager;Lnet/minecraft/server/ServerFunctionManager$TraceCallbacks;)V +MD: net/minecraft/server/ServerFunctionManager$ExecutionContext/m_179972_ (Lnet/minecraft/commands/CommandFunction;Lnet/minecraft/commands/CommandSourceStack;)V net/minecraft/server/ServerFunctionManager$ExecutionContext/delayFunctionCall (Lnet/minecraft/commands/CommandFunction;Lnet/minecraft/commands/CommandSourceStack;)V +MD: net/minecraft/server/ServerFunctionManager$ExecutionContext/m_179975_ (Ljava/lang/String;)V net/minecraft/server/ServerFunctionManager$ExecutionContext/reportError (Ljava/lang/String;)V +MD: net/minecraft/server/ServerFunctionManager$ExecutionContext/m_179977_ (Lnet/minecraft/commands/CommandFunction;Lnet/minecraft/commands/CommandSourceStack;)I net/minecraft/server/ServerFunctionManager$ExecutionContext/runTopCommand (Lnet/minecraft/commands/CommandFunction;Lnet/minecraft/commands/CommandSourceStack;)I +MD: net/minecraft/server/ServerFunctionManager$ExecutionContext/m_280539_ (Lnet/minecraft/commands/CommandSourceStack;)Lnet/minecraft/commands/CommandSourceStack; net/minecraft/server/ServerFunctionManager$ExecutionContext/wrapSender (Lnet/minecraft/commands/CommandSourceStack;)Lnet/minecraft/commands/CommandSourceStack; +MD: net/minecraft/server/ServerFunctionManager$ExecutionContext$AbortingReturnValueConsumer/ (Lnet/minecraft/server/ServerFunctionManager$ExecutionContext;Ljava/util/function/IntConsumer;)V net/minecraft/server/ServerFunctionManager$ExecutionContext$AbortingReturnValueConsumer/ (Lnet/minecraft/server/ServerFunctionManager$ExecutionContext;Ljava/util/function/IntConsumer;)V +MD: net/minecraft/server/ServerFunctionManager$ExecutionContext$AbortingReturnValueConsumer/accept (I)V net/minecraft/server/ServerFunctionManager$ExecutionContext$AbortingReturnValueConsumer/accept (I)V +MD: net/minecraft/server/ServerFunctionManager$QueuedCommand/ (Lnet/minecraft/commands/CommandSourceStack;ILnet/minecraft/commands/CommandFunction$Entry;)V net/minecraft/server/ServerFunctionManager$QueuedCommand/ (Lnet/minecraft/commands/CommandSourceStack;ILnet/minecraft/commands/CommandFunction$Entry;)V +MD: net/minecraft/server/ServerFunctionManager$QueuedCommand/m_179985_ (Lnet/minecraft/server/ServerFunctionManager;Ljava/util/Deque;ILnet/minecraft/server/ServerFunctionManager$TraceCallbacks;)V net/minecraft/server/ServerFunctionManager$QueuedCommand/execute (Lnet/minecraft/server/ServerFunctionManager;Ljava/util/Deque;ILnet/minecraft/server/ServerFunctionManager$TraceCallbacks;)V +MD: net/minecraft/server/ServerFunctionManager$QueuedCommand/toString ()Ljava/lang/String; net/minecraft/server/ServerFunctionManager$QueuedCommand/toString ()Ljava/lang/String; +MD: net/minecraft/server/ServerFunctionManager$TraceCallbacks/m_142147_ (ILnet/minecraft/resources/ResourceLocation;I)V net/minecraft/server/ServerFunctionManager$TraceCallbacks/onCall (ILnet/minecraft/resources/ResourceLocation;I)V +MD: net/minecraft/server/ServerFunctionManager$TraceCallbacks/m_142255_ (ILjava/lang/String;)V net/minecraft/server/ServerFunctionManager$TraceCallbacks/onError (ILjava/lang/String;)V +MD: net/minecraft/server/ServerFunctionManager$TraceCallbacks/m_142256_ (ILjava/lang/String;)V net/minecraft/server/ServerFunctionManager$TraceCallbacks/onCommand (ILjava/lang/String;)V +MD: net/minecraft/server/ServerFunctionManager$TraceCallbacks/m_142279_ (ILjava/lang/String;I)V net/minecraft/server/ServerFunctionManager$TraceCallbacks/onReturn (ILjava/lang/String;I)V +MD: net/minecraft/server/ServerInterface/m_6866_ ()Ljava/lang/String; net/minecraft/server/ServerInterface/getServerIp ()Ljava/lang/String; +MD: net/minecraft/server/ServerInterface/m_6995_ ()Ljava/lang/String; net/minecraft/server/ServerInterface/getServerName ()Ljava/lang/String; +MD: net/minecraft/server/ServerInterface/m_7123_ ()Ljava/lang/String; net/minecraft/server/ServerInterface/getLevelIdName ()Ljava/lang/String; +MD: net/minecraft/server/ServerInterface/m_7138_ ()Ljava/lang/String; net/minecraft/server/ServerInterface/getPluginNames ()Ljava/lang/String; +MD: net/minecraft/server/ServerInterface/m_7261_ (Ljava/lang/String;)Ljava/lang/String; net/minecraft/server/ServerInterface/runCommand (Ljava/lang/String;)Ljava/lang/String; +MD: net/minecraft/server/ServerInterface/m_7416_ ()I net/minecraft/server/ServerInterface/getPlayerCount ()I +MD: net/minecraft/server/ServerInterface/m_7418_ ()I net/minecraft/server/ServerInterface/getMaxPlayers ()I +MD: net/minecraft/server/ServerInterface/m_7448_ ()I net/minecraft/server/ServerInterface/getServerPort ()I +MD: net/minecraft/server/ServerInterface/m_7630_ ()Ljava/lang/String; net/minecraft/server/ServerInterface/getServerVersion ()Ljava/lang/String; +MD: net/minecraft/server/ServerInterface/m_7641_ ()[Ljava/lang/String; net/minecraft/server/ServerInterface/getPlayerNames ()[Ljava/lang/String; +MD: net/minecraft/server/ServerInterface/m_7913_ ()Lnet/minecraft/server/dedicated/DedicatedServerProperties; net/minecraft/server/ServerInterface/getProperties ()Lnet/minecraft/server/dedicated/DedicatedServerProperties; +MD: net/minecraft/server/ServerScoreboard/ (Lnet/minecraft/server/MinecraftServer;)V net/minecraft/server/ServerScoreboard/ (Lnet/minecraft/server/MinecraftServer;)V +MD: net/minecraft/server/ServerScoreboard/m_136207_ (Ljava/lang/Runnable;)V net/minecraft/server/ServerScoreboard/addDirtyListener (Ljava/lang/Runnable;)V +MD: net/minecraft/server/ServerScoreboard/m_136217_ ()V net/minecraft/server/ServerScoreboard/setDirty ()V +MD: net/minecraft/server/ServerScoreboard/m_136229_ (Lnet/minecraft/world/scores/Objective;)Ljava/util/List; net/minecraft/server/ServerScoreboard/getStartTrackingPackets (Lnet/minecraft/world/scores/Objective;)Ljava/util/List; +MD: net/minecraft/server/ServerScoreboard/m_136231_ (Lnet/minecraft/world/scores/Objective;)V net/minecraft/server/ServerScoreboard/startTrackingObjective (Lnet/minecraft/world/scores/Objective;)V +MD: net/minecraft/server/ServerScoreboard/m_136233_ (Lnet/minecraft/world/scores/Objective;)Ljava/util/List; net/minecraft/server/ServerScoreboard/getStopTrackingPackets (Lnet/minecraft/world/scores/Objective;)Ljava/util/List; +MD: net/minecraft/server/ServerScoreboard/m_136235_ (Lnet/minecraft/world/scores/Objective;)V net/minecraft/server/ServerScoreboard/stopTrackingObjective (Lnet/minecraft/world/scores/Objective;)V +MD: net/minecraft/server/ServerScoreboard/m_136237_ (Lnet/minecraft/world/scores/Objective;)I net/minecraft/server/ServerScoreboard/getObjectiveDisplaySlotCount (Lnet/minecraft/world/scores/Objective;)I +MD: net/minecraft/server/ServerScoreboard/m_180013_ (Lnet/minecraft/nbt/CompoundTag;)Lnet/minecraft/world/scores/ScoreboardSaveData; net/minecraft/server/ServerScoreboard/createData (Lnet/minecraft/nbt/CompoundTag;)Lnet/minecraft/world/scores/ScoreboardSaveData; +MD: net/minecraft/server/ServerScoreboard/m_180015_ ()Lnet/minecraft/world/scores/ScoreboardSaveData; net/minecraft/server/ServerScoreboard/createData ()Lnet/minecraft/world/scores/ScoreboardSaveData; +MD: net/minecraft/server/ServerScoreboard/m_5734_ (Lnet/minecraft/world/scores/Score;)V net/minecraft/server/ServerScoreboard/onScoreChanged (Lnet/minecraft/world/scores/Score;)V +MD: net/minecraft/server/ServerScoreboard/m_5973_ (Ljava/lang/String;Lnet/minecraft/world/scores/Objective;)V net/minecraft/server/ServerScoreboard/onPlayerScoreRemoved (Ljava/lang/String;Lnet/minecraft/world/scores/Objective;)V +MD: net/minecraft/server/ServerScoreboard/m_6519_ (Ljava/lang/String;Lnet/minecraft/world/scores/PlayerTeam;)V net/minecraft/server/ServerScoreboard/removePlayerFromTeam (Ljava/lang/String;Lnet/minecraft/world/scores/PlayerTeam;)V +MD: net/minecraft/server/ServerScoreboard/m_6546_ (Ljava/lang/String;Lnet/minecraft/world/scores/PlayerTeam;)Z net/minecraft/server/ServerScoreboard/addPlayerToTeam (Ljava/lang/String;Lnet/minecraft/world/scores/PlayerTeam;)Z +MD: net/minecraft/server/ServerScoreboard/m_7091_ (Lnet/minecraft/world/scores/Objective;)V net/minecraft/server/ServerScoreboard/onObjectiveChanged (Lnet/minecraft/world/scores/Objective;)V +MD: net/minecraft/server/ServerScoreboard/m_7092_ (Lnet/minecraft/world/scores/Objective;)V net/minecraft/server/ServerScoreboard/onObjectiveAdded (Lnet/minecraft/world/scores/Objective;)V +MD: net/minecraft/server/ServerScoreboard/m_7093_ (Lnet/minecraft/world/scores/Objective;)V net/minecraft/server/ServerScoreboard/onObjectiveRemoved (Lnet/minecraft/world/scores/Objective;)V +MD: net/minecraft/server/ServerScoreboard/m_7136_ (ILnet/minecraft/world/scores/Objective;)V net/minecraft/server/ServerScoreboard/setDisplayObjective (ILnet/minecraft/world/scores/Objective;)V +MD: net/minecraft/server/ServerScoreboard/m_7182_ (Ljava/lang/String;)V net/minecraft/server/ServerScoreboard/onPlayerRemoved (Ljava/lang/String;)V +MD: net/minecraft/server/ServerScoreboard/m_7644_ (Lnet/minecraft/world/scores/PlayerTeam;)V net/minecraft/server/ServerScoreboard/onTeamRemoved (Lnet/minecraft/world/scores/PlayerTeam;)V +MD: net/minecraft/server/ServerScoreboard/m_7645_ (Lnet/minecraft/world/scores/PlayerTeam;)V net/minecraft/server/ServerScoreboard/onTeamChanged (Lnet/minecraft/world/scores/PlayerTeam;)V +MD: net/minecraft/server/ServerScoreboard/m_7650_ (Lnet/minecraft/world/scores/PlayerTeam;)V net/minecraft/server/ServerScoreboard/onTeamAdded (Lnet/minecraft/world/scores/PlayerTeam;)V +MD: net/minecraft/server/ServerScoreboard$Method/ ()V net/minecraft/server/ServerScoreboard$Method/ ()V +MD: net/minecraft/server/ServerScoreboard$Method/ (Ljava/lang/String;I)V net/minecraft/server/ServerScoreboard$Method/ (Ljava/lang/String;I)V +MD: net/minecraft/server/ServerScoreboard$Method/m_180016_ ()[Lnet/minecraft/server/ServerScoreboard$Method; net/minecraft/server/ServerScoreboard$Method/$values ()[Lnet/minecraft/server/ServerScoreboard$Method; +MD: net/minecraft/server/ServerScoreboard$Method/valueOf (Ljava/lang/String;)Lnet/minecraft/server/ServerScoreboard$Method; net/minecraft/server/ServerScoreboard$Method/valueOf (Ljava/lang/String;)Lnet/minecraft/server/ServerScoreboard$Method; +MD: net/minecraft/server/ServerScoreboard$Method/values ()[Lnet/minecraft/server/ServerScoreboard$Method; net/minecraft/server/ServerScoreboard$Method/values ()[Lnet/minecraft/server/ServerScoreboard$Method; +MD: net/minecraft/server/Services/ (Lcom/mojang/authlib/minecraft/MinecraftSessionService;Lcom/mojang/authlib/yggdrasil/ServicesKeySet;Lcom/mojang/authlib/GameProfileRepository;Lnet/minecraft/server/players/GameProfileCache;)V net/minecraft/server/Services/ (Lcom/mojang/authlib/minecraft/MinecraftSessionService;Lcom/mojang/authlib/yggdrasil/ServicesKeySet;Lcom/mojang/authlib/GameProfileRepository;Lnet/minecraft/server/players/GameProfileCache;)V +MD: net/minecraft/server/Services/equals (Ljava/lang/Object;)Z net/minecraft/server/Services/equals (Ljava/lang/Object;)Z +MD: net/minecraft/server/Services/f_214333_ ()Lcom/mojang/authlib/minecraft/MinecraftSessionService; net/minecraft/server/Services/sessionService ()Lcom/mojang/authlib/minecraft/MinecraftSessionService; +MD: net/minecraft/server/Services/f_214335_ ()Lcom/mojang/authlib/GameProfileRepository; net/minecraft/server/Services/profileRepository ()Lcom/mojang/authlib/GameProfileRepository; +MD: net/minecraft/server/Services/f_214336_ ()Lnet/minecraft/server/players/GameProfileCache; net/minecraft/server/Services/profileCache ()Lnet/minecraft/server/players/GameProfileCache; +MD: net/minecraft/server/Services/f_283795_ ()Lcom/mojang/authlib/yggdrasil/ServicesKeySet; net/minecraft/server/Services/servicesKeySet ()Lcom/mojang/authlib/yggdrasil/ServicesKeySet; +MD: net/minecraft/server/Services/hashCode ()I net/minecraft/server/Services/hashCode ()I +MD: net/minecraft/server/Services/m_214344_ (Lcom/mojang/authlib/yggdrasil/YggdrasilAuthenticationService;Ljava/io/File;)Lnet/minecraft/server/Services; net/minecraft/server/Services/create (Lcom/mojang/authlib/yggdrasil/YggdrasilAuthenticationService;Ljava/io/File;)Lnet/minecraft/server/Services; +MD: net/minecraft/server/Services/m_284133_ ()Lnet/minecraft/util/SignatureValidator; net/minecraft/server/Services/profileKeySignatureValidator ()Lnet/minecraft/util/SignatureValidator; +MD: net/minecraft/server/Services/toString ()Ljava/lang/String; net/minecraft/server/Services/toString ()Ljava/lang/String; +MD: net/minecraft/server/TickTask/ (ILjava/lang/Runnable;)V net/minecraft/server/TickTask/ (ILjava/lang/Runnable;)V +MD: net/minecraft/server/TickTask/m_136254_ ()I net/minecraft/server/TickTask/getTick ()I +MD: net/minecraft/server/TickTask/run ()V net/minecraft/server/TickTask/run ()V +MD: net/minecraft/server/WorldLoader/ ()V net/minecraft/server/WorldLoader/ ()V +MD: net/minecraft/server/WorldLoader/ ()V net/minecraft/server/WorldLoader/ ()V +MD: net/minecraft/server/WorldLoader/m_214362_ (Lnet/minecraft/server/WorldLoader$InitConfig;Lnet/minecraft/server/WorldLoader$WorldDataSupplier;Lnet/minecraft/server/WorldLoader$ResultFactory;Ljava/util/concurrent/Executor;Ljava/util/concurrent/Executor;)Ljava/util/concurrent/CompletableFuture; net/minecraft/server/WorldLoader/load (Lnet/minecraft/server/WorldLoader$InitConfig;Lnet/minecraft/server/WorldLoader$WorldDataSupplier;Lnet/minecraft/server/WorldLoader$ResultFactory;Ljava/util/concurrent/Executor;Ljava/util/concurrent/Executor;)Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/server/WorldLoader/m_214368_ (Lnet/minecraft/server/packs/resources/CloseableResourceManager;Lnet/minecraft/server/ReloadableServerResources;Ljava/lang/Throwable;)V net/minecraft/server/WorldLoader/lambda$load$0 (Lnet/minecraft/server/packs/resources/CloseableResourceManager;Lnet/minecraft/server/ReloadableServerResources;Ljava/lang/Throwable;)V +MD: net/minecraft/server/WorldLoader/m_244809_ (Lnet/minecraft/core/RegistryAccess$Frozen;Lnet/minecraft/server/WorldLoader$ResultFactory;Lnet/minecraft/server/packs/resources/CloseableResourceManager;Lnet/minecraft/core/LayeredRegistryAccess;Lnet/minecraft/server/WorldLoader$DataLoadOutput;Lnet/minecraft/server/ReloadableServerResources;)Ljava/lang/Object; net/minecraft/server/WorldLoader/lambda$load$1 (Lnet/minecraft/core/RegistryAccess$Frozen;Lnet/minecraft/server/WorldLoader$ResultFactory;Lnet/minecraft/server/packs/resources/CloseableResourceManager;Lnet/minecraft/core/LayeredRegistryAccess;Lnet/minecraft/server/WorldLoader$DataLoadOutput;Lnet/minecraft/server/ReloadableServerResources;)Ljava/lang/Object; +MD: net/minecraft/server/WorldLoader/m_245736_ (Lnet/minecraft/server/packs/resources/ResourceManager;Lnet/minecraft/core/LayeredRegistryAccess;Lnet/minecraft/server/RegistryLayer;Ljava/util/List;)Lnet/minecraft/core/LayeredRegistryAccess; net/minecraft/server/WorldLoader/loadAndReplaceLayer (Lnet/minecraft/server/packs/resources/ResourceManager;Lnet/minecraft/core/LayeredRegistryAccess;Lnet/minecraft/server/RegistryLayer;Ljava/util/List;)Lnet/minecraft/core/LayeredRegistryAccess; +MD: net/minecraft/server/WorldLoader/m_246152_ (Lnet/minecraft/server/packs/resources/ResourceManager;Lnet/minecraft/core/LayeredRegistryAccess;Lnet/minecraft/server/RegistryLayer;Ljava/util/List;)Lnet/minecraft/core/RegistryAccess$Frozen; net/minecraft/server/WorldLoader/loadLayer (Lnet/minecraft/server/packs/resources/ResourceManager;Lnet/minecraft/core/LayeredRegistryAccess;Lnet/minecraft/server/RegistryLayer;Ljava/util/List;)Lnet/minecraft/core/RegistryAccess$Frozen; +MD: net/minecraft/server/WorldLoader$DataLoadContext/ (Lnet/minecraft/server/packs/resources/ResourceManager;Lnet/minecraft/world/level/WorldDataConfiguration;Lnet/minecraft/core/RegistryAccess$Frozen;Lnet/minecraft/core/RegistryAccess$Frozen;)V net/minecraft/server/WorldLoader$DataLoadContext/ (Lnet/minecraft/server/packs/resources/ResourceManager;Lnet/minecraft/world/level/WorldDataConfiguration;Lnet/minecraft/core/RegistryAccess$Frozen;Lnet/minecraft/core/RegistryAccess$Frozen;)V +MD: net/minecraft/server/WorldLoader$DataLoadContext/equals (Ljava/lang/Object;)Z net/minecraft/server/WorldLoader$DataLoadContext/equals (Ljava/lang/Object;)Z +MD: net/minecraft/server/WorldLoader$DataLoadContext/f_243759_ ()Lnet/minecraft/core/RegistryAccess$Frozen; net/minecraft/server/WorldLoader$DataLoadContext/datapackDimensions ()Lnet/minecraft/core/RegistryAccess$Frozen; +MD: net/minecraft/server/WorldLoader$DataLoadContext/f_244104_ ()Lnet/minecraft/core/RegistryAccess$Frozen; net/minecraft/server/WorldLoader$DataLoadContext/datapackWorldgen ()Lnet/minecraft/core/RegistryAccess$Frozen; +MD: net/minecraft/server/WorldLoader$DataLoadContext/f_244127_ ()Lnet/minecraft/world/level/WorldDataConfiguration; net/minecraft/server/WorldLoader$DataLoadContext/dataConfiguration ()Lnet/minecraft/world/level/WorldDataConfiguration; +MD: net/minecraft/server/WorldLoader$DataLoadContext/f_244187_ ()Lnet/minecraft/server/packs/resources/ResourceManager; net/minecraft/server/WorldLoader$DataLoadContext/resources ()Lnet/minecraft/server/packs/resources/ResourceManager; +MD: net/minecraft/server/WorldLoader$DataLoadContext/hashCode ()I net/minecraft/server/WorldLoader$DataLoadContext/hashCode ()I +MD: net/minecraft/server/WorldLoader$DataLoadContext/toString ()Ljava/lang/String; net/minecraft/server/WorldLoader$DataLoadContext/toString ()Ljava/lang/String; +MD: net/minecraft/server/WorldLoader$DataLoadOutput/ (Ljava/lang/Object;Lnet/minecraft/core/RegistryAccess$Frozen;)V net/minecraft/server/WorldLoader$DataLoadOutput/ (Ljava/lang/Object;Lnet/minecraft/core/RegistryAccess$Frozen;)V +MD: net/minecraft/server/WorldLoader$DataLoadOutput/equals (Ljava/lang/Object;)Z net/minecraft/server/WorldLoader$DataLoadOutput/equals (Ljava/lang/Object;)Z +MD: net/minecraft/server/WorldLoader$DataLoadOutput/f_244143_ ()Lnet/minecraft/core/RegistryAccess$Frozen; net/minecraft/server/WorldLoader$DataLoadOutput/finalDimensions ()Lnet/minecraft/core/RegistryAccess$Frozen; +MD: net/minecraft/server/WorldLoader$DataLoadOutput/f_244458_ ()Ljava/lang/Object; net/minecraft/server/WorldLoader$DataLoadOutput/cookie ()Ljava/lang/Object; +MD: net/minecraft/server/WorldLoader$DataLoadOutput/hashCode ()I net/minecraft/server/WorldLoader$DataLoadOutput/hashCode ()I +MD: net/minecraft/server/WorldLoader$DataLoadOutput/toString ()Ljava/lang/String; net/minecraft/server/WorldLoader$DataLoadOutput/toString ()Ljava/lang/String; +MD: net/minecraft/server/WorldLoader$InitConfig/ (Lnet/minecraft/server/WorldLoader$PackConfig;Lnet/minecraft/commands/Commands$CommandSelection;I)V net/minecraft/server/WorldLoader$InitConfig/ (Lnet/minecraft/server/WorldLoader$PackConfig;Lnet/minecraft/commands/Commands$CommandSelection;I)V +MD: net/minecraft/server/WorldLoader$InitConfig/equals (Ljava/lang/Object;)Z net/minecraft/server/WorldLoader$InitConfig/equals (Ljava/lang/Object;)Z +MD: net/minecraft/server/WorldLoader$InitConfig/f_214378_ ()Lnet/minecraft/server/WorldLoader$PackConfig; net/minecraft/server/WorldLoader$InitConfig/packConfig ()Lnet/minecraft/server/WorldLoader$PackConfig; +MD: net/minecraft/server/WorldLoader$InitConfig/f_214379_ ()Lnet/minecraft/commands/Commands$CommandSelection; net/minecraft/server/WorldLoader$InitConfig/commandSelection ()Lnet/minecraft/commands/Commands$CommandSelection; +MD: net/minecraft/server/WorldLoader$InitConfig/f_214380_ ()I net/minecraft/server/WorldLoader$InitConfig/functionCompilationLevel ()I +MD: net/minecraft/server/WorldLoader$InitConfig/hashCode ()I net/minecraft/server/WorldLoader$InitConfig/hashCode ()I +MD: net/minecraft/server/WorldLoader$InitConfig/toString ()Ljava/lang/String; net/minecraft/server/WorldLoader$InitConfig/toString ()Ljava/lang/String; +MD: net/minecraft/server/WorldLoader$PackConfig/ (Lnet/minecraft/server/packs/repository/PackRepository;Lnet/minecraft/world/level/WorldDataConfiguration;ZZ)V net/minecraft/server/WorldLoader$PackConfig/ (Lnet/minecraft/server/packs/repository/PackRepository;Lnet/minecraft/world/level/WorldDataConfiguration;ZZ)V +MD: net/minecraft/server/WorldLoader$PackConfig/equals (Ljava/lang/Object;)Z net/minecraft/server/WorldLoader$PackConfig/equals (Ljava/lang/Object;)Z +MD: net/minecraft/server/WorldLoader$PackConfig/f_214392_ ()Lnet/minecraft/server/packs/repository/PackRepository; net/minecraft/server/WorldLoader$PackConfig/packRepository ()Lnet/minecraft/server/packs/repository/PackRepository; +MD: net/minecraft/server/WorldLoader$PackConfig/f_214394_ ()Z net/minecraft/server/WorldLoader$PackConfig/safeMode ()Z +MD: net/minecraft/server/WorldLoader$PackConfig/f_244133_ ()Z net/minecraft/server/WorldLoader$PackConfig/initMode ()Z +MD: net/minecraft/server/WorldLoader$PackConfig/f_244366_ ()Lnet/minecraft/world/level/WorldDataConfiguration; net/minecraft/server/WorldLoader$PackConfig/initialDataConfig ()Lnet/minecraft/world/level/WorldDataConfiguration; +MD: net/minecraft/server/WorldLoader$PackConfig/hashCode ()I net/minecraft/server/WorldLoader$PackConfig/hashCode ()I +MD: net/minecraft/server/WorldLoader$PackConfig/m_214399_ ()Lcom/mojang/datafixers/util/Pair; net/minecraft/server/WorldLoader$PackConfig/createResourceManager ()Lcom/mojang/datafixers/util/Pair; +MD: net/minecraft/server/WorldLoader$PackConfig/toString ()Ljava/lang/String; net/minecraft/server/WorldLoader$PackConfig/toString ()Ljava/lang/String; +MD: net/minecraft/server/WorldLoader$ResultFactory/m_214407_ (Lnet/minecraft/server/packs/resources/CloseableResourceManager;Lnet/minecraft/server/ReloadableServerResources;Lnet/minecraft/core/LayeredRegistryAccess;Ljava/lang/Object;)Ljava/lang/Object; net/minecraft/server/WorldLoader$ResultFactory/create (Lnet/minecraft/server/packs/resources/CloseableResourceManager;Lnet/minecraft/server/ReloadableServerResources;Lnet/minecraft/core/LayeredRegistryAccess;Ljava/lang/Object;)Ljava/lang/Object; +MD: net/minecraft/server/WorldLoader$WorldDataSupplier/m_214412_ (Lnet/minecraft/server/WorldLoader$DataLoadContext;)Lnet/minecraft/server/WorldLoader$DataLoadOutput; net/minecraft/server/WorldLoader$WorldDataSupplier/get (Lnet/minecraft/server/WorldLoader$DataLoadContext;)Lnet/minecraft/server/WorldLoader$DataLoadOutput; +MD: net/minecraft/server/WorldStem/ (Lnet/minecraft/server/packs/resources/CloseableResourceManager;Lnet/minecraft/server/ReloadableServerResources;Lnet/minecraft/core/LayeredRegistryAccess;Lnet/minecraft/world/level/storage/WorldData;)V net/minecraft/server/WorldStem/ (Lnet/minecraft/server/packs/resources/CloseableResourceManager;Lnet/minecraft/server/ReloadableServerResources;Lnet/minecraft/core/LayeredRegistryAccess;Lnet/minecraft/world/level/storage/WorldData;)V +MD: net/minecraft/server/WorldStem/close ()V net/minecraft/server/WorldStem/close ()V +MD: net/minecraft/server/WorldStem/equals (Ljava/lang/Object;)Z net/minecraft/server/WorldStem/equals (Ljava/lang/Object;)Z +MD: net/minecraft/server/WorldStem/f_206892_ ()Lnet/minecraft/server/packs/resources/CloseableResourceManager; net/minecraft/server/WorldStem/resourceManager ()Lnet/minecraft/server/packs/resources/CloseableResourceManager; +MD: net/minecraft/server/WorldStem/f_206893_ ()Lnet/minecraft/server/ReloadableServerResources; net/minecraft/server/WorldStem/dataPackResources ()Lnet/minecraft/server/ReloadableServerResources; +MD: net/minecraft/server/WorldStem/f_206895_ ()Lnet/minecraft/world/level/storage/WorldData; net/minecraft/server/WorldStem/worldData ()Lnet/minecraft/world/level/storage/WorldData; +MD: net/minecraft/server/WorldStem/f_244542_ ()Lnet/minecraft/core/LayeredRegistryAccess; net/minecraft/server/WorldStem/registries ()Lnet/minecraft/core/LayeredRegistryAccess; +MD: net/minecraft/server/WorldStem/hashCode ()I net/minecraft/server/WorldStem/hashCode ()I +MD: net/minecraft/server/WorldStem/toString ()Ljava/lang/String; net/minecraft/server/WorldStem/toString ()Ljava/lang/String; +MD: net/minecraft/server/advancements/AdvancementVisibilityEvaluator/ ()V net/minecraft/server/advancements/AdvancementVisibilityEvaluator/ ()V +MD: net/minecraft/server/advancements/AdvancementVisibilityEvaluator/m_264099_ (Lnet/minecraft/advancements/Advancement;Ljava/util/function/Predicate;Lnet/minecraft/server/advancements/AdvancementVisibilityEvaluator$Output;)V net/minecraft/server/advancements/AdvancementVisibilityEvaluator/evaluateVisibility (Lnet/minecraft/advancements/Advancement;Ljava/util/function/Predicate;Lnet/minecraft/server/advancements/AdvancementVisibilityEvaluator$Output;)V +MD: net/minecraft/server/advancements/AdvancementVisibilityEvaluator/m_264309_ (Lit/unimi/dsi/fastutil/Stack;)Z net/minecraft/server/advancements/AdvancementVisibilityEvaluator/evaluateVisiblityForUnfinishedNode (Lit/unimi/dsi/fastutil/Stack;)Z +MD: net/minecraft/server/advancements/AdvancementVisibilityEvaluator/m_264339_ (Lnet/minecraft/advancements/Advancement;Z)Lnet/minecraft/server/advancements/AdvancementVisibilityEvaluator$VisibilityRule; net/minecraft/server/advancements/AdvancementVisibilityEvaluator/evaluateVisibilityRule (Lnet/minecraft/advancements/Advancement;Z)Lnet/minecraft/server/advancements/AdvancementVisibilityEvaluator$VisibilityRule; +MD: net/minecraft/server/advancements/AdvancementVisibilityEvaluator/m_264402_ (Lnet/minecraft/advancements/Advancement;Lit/unimi/dsi/fastutil/Stack;Ljava/util/function/Predicate;Lnet/minecraft/server/advancements/AdvancementVisibilityEvaluator$Output;)Z net/minecraft/server/advancements/AdvancementVisibilityEvaluator/evaluateVisibility (Lnet/minecraft/advancements/Advancement;Lit/unimi/dsi/fastutil/Stack;Ljava/util/function/Predicate;Lnet/minecraft/server/advancements/AdvancementVisibilityEvaluator$Output;)Z +MD: net/minecraft/server/advancements/AdvancementVisibilityEvaluator$Output/m_264135_ (Lnet/minecraft/advancements/Advancement;Z)V net/minecraft/server/advancements/AdvancementVisibilityEvaluator$Output/accept (Lnet/minecraft/advancements/Advancement;Z)V +MD: net/minecraft/server/advancements/AdvancementVisibilityEvaluator$VisibilityRule/ ()V net/minecraft/server/advancements/AdvancementVisibilityEvaluator$VisibilityRule/ ()V +MD: net/minecraft/server/advancements/AdvancementVisibilityEvaluator$VisibilityRule/ (Ljava/lang/String;I)V net/minecraft/server/advancements/AdvancementVisibilityEvaluator$VisibilityRule/ (Ljava/lang/String;I)V +MD: net/minecraft/server/advancements/AdvancementVisibilityEvaluator$VisibilityRule/m_264245_ ()[Lnet/minecraft/server/advancements/AdvancementVisibilityEvaluator$VisibilityRule; net/minecraft/server/advancements/AdvancementVisibilityEvaluator$VisibilityRule/$values ()[Lnet/minecraft/server/advancements/AdvancementVisibilityEvaluator$VisibilityRule; +MD: net/minecraft/server/advancements/AdvancementVisibilityEvaluator$VisibilityRule/valueOf (Ljava/lang/String;)Lnet/minecraft/server/advancements/AdvancementVisibilityEvaluator$VisibilityRule; net/minecraft/server/advancements/AdvancementVisibilityEvaluator$VisibilityRule/valueOf (Ljava/lang/String;)Lnet/minecraft/server/advancements/AdvancementVisibilityEvaluator$VisibilityRule; +MD: net/minecraft/server/advancements/AdvancementVisibilityEvaluator$VisibilityRule/values ()[Lnet/minecraft/server/advancements/AdvancementVisibilityEvaluator$VisibilityRule; net/minecraft/server/advancements/AdvancementVisibilityEvaluator$VisibilityRule/values ()[Lnet/minecraft/server/advancements/AdvancementVisibilityEvaluator$VisibilityRule; +MD: net/minecraft/server/bossevents/CustomBossEvent/ (Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/network/chat/Component;)V net/minecraft/server/bossevents/CustomBossEvent/ (Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/network/chat/Component;)V +MD: net/minecraft/server/bossevents/CustomBossEvent/m_136263_ ()Lnet/minecraft/resources/ResourceLocation; net/minecraft/server/bossevents/CustomBossEvent/getTextId ()Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/server/bossevents/CustomBossEvent/m_136264_ (I)V net/minecraft/server/bossevents/CustomBossEvent/setValue (I)V +MD: net/minecraft/server/bossevents/CustomBossEvent/m_136268_ (Ljava/util/Collection;)Z net/minecraft/server/bossevents/CustomBossEvent/setPlayers (Ljava/util/Collection;)Z +MD: net/minecraft/server/bossevents/CustomBossEvent/m_136270_ (Ljava/util/UUID;)V net/minecraft/server/bossevents/CustomBossEvent/addOfflinePlayer (Ljava/util/UUID;)V +MD: net/minecraft/server/bossevents/CustomBossEvent/m_136272_ (Lnet/minecraft/nbt/CompoundTag;Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/server/bossevents/CustomBossEvent; net/minecraft/server/bossevents/CustomBossEvent/load (Lnet/minecraft/nbt/CompoundTag;Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/server/bossevents/CustomBossEvent; +MD: net/minecraft/server/bossevents/CustomBossEvent/m_136275_ (Lnet/minecraft/network/chat/Style;)Lnet/minecraft/network/chat/Style; net/minecraft/server/bossevents/CustomBossEvent/lambda$getDisplayName$0 (Lnet/minecraft/network/chat/Style;)Lnet/minecraft/network/chat/Style; +MD: net/minecraft/server/bossevents/CustomBossEvent/m_136278_ (I)V net/minecraft/server/bossevents/CustomBossEvent/setMax (I)V +MD: net/minecraft/server/bossevents/CustomBossEvent/m_136282_ ()I net/minecraft/server/bossevents/CustomBossEvent/getValue ()I +MD: net/minecraft/server/bossevents/CustomBossEvent/m_136283_ (Lnet/minecraft/server/level/ServerPlayer;)V net/minecraft/server/bossevents/CustomBossEvent/onPlayerConnect (Lnet/minecraft/server/level/ServerPlayer;)V +MD: net/minecraft/server/bossevents/CustomBossEvent/m_136285_ ()I net/minecraft/server/bossevents/CustomBossEvent/getMax ()I +MD: net/minecraft/server/bossevents/CustomBossEvent/m_136286_ (Lnet/minecraft/server/level/ServerPlayer;)V net/minecraft/server/bossevents/CustomBossEvent/onPlayerDisconnect (Lnet/minecraft/server/level/ServerPlayer;)V +MD: net/minecraft/server/bossevents/CustomBossEvent/m_136288_ ()Lnet/minecraft/network/chat/Component; net/minecraft/server/bossevents/CustomBossEvent/getDisplayName ()Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/bossevents/CustomBossEvent/m_136289_ ()Lnet/minecraft/nbt/CompoundTag; net/minecraft/server/bossevents/CustomBossEvent/save ()Lnet/minecraft/nbt/CompoundTag; +MD: net/minecraft/server/bossevents/CustomBossEvent/m_6539_ (Lnet/minecraft/server/level/ServerPlayer;)V net/minecraft/server/bossevents/CustomBossEvent/removePlayer (Lnet/minecraft/server/level/ServerPlayer;)V +MD: net/minecraft/server/bossevents/CustomBossEvent/m_6543_ (Lnet/minecraft/server/level/ServerPlayer;)V net/minecraft/server/bossevents/CustomBossEvent/addPlayer (Lnet/minecraft/server/level/ServerPlayer;)V +MD: net/minecraft/server/bossevents/CustomBossEvent/m_7706_ ()V net/minecraft/server/bossevents/CustomBossEvent/removeAllPlayers ()V +MD: net/minecraft/server/bossevents/CustomBossEvents/ ()V net/minecraft/server/bossevents/CustomBossEvents/ ()V +MD: net/minecraft/server/bossevents/CustomBossEvents/m_136292_ ()Ljava/util/Collection; net/minecraft/server/bossevents/CustomBossEvents/getIds ()Ljava/util/Collection; +MD: net/minecraft/server/bossevents/CustomBossEvents/m_136293_ (Lnet/minecraft/server/level/ServerPlayer;)V net/minecraft/server/bossevents/CustomBossEvents/onPlayerConnect (Lnet/minecraft/server/level/ServerPlayer;)V +MD: net/minecraft/server/bossevents/CustomBossEvents/m_136295_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/server/bossevents/CustomBossEvents/load (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/server/bossevents/CustomBossEvents/m_136297_ (Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/server/bossevents/CustomBossEvent; net/minecraft/server/bossevents/CustomBossEvents/get (Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/server/bossevents/CustomBossEvent; +MD: net/minecraft/server/bossevents/CustomBossEvents/m_136299_ (Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/network/chat/Component;)Lnet/minecraft/server/bossevents/CustomBossEvent; net/minecraft/server/bossevents/CustomBossEvents/create (Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/network/chat/Component;)Lnet/minecraft/server/bossevents/CustomBossEvent; +MD: net/minecraft/server/bossevents/CustomBossEvents/m_136302_ (Lnet/minecraft/server/bossevents/CustomBossEvent;)V net/minecraft/server/bossevents/CustomBossEvents/remove (Lnet/minecraft/server/bossevents/CustomBossEvent;)V +MD: net/minecraft/server/bossevents/CustomBossEvents/m_136304_ ()Ljava/util/Collection; net/minecraft/server/bossevents/CustomBossEvents/getEvents ()Ljava/util/Collection; +MD: net/minecraft/server/bossevents/CustomBossEvents/m_136305_ (Lnet/minecraft/server/level/ServerPlayer;)V net/minecraft/server/bossevents/CustomBossEvents/onPlayerDisconnect (Lnet/minecraft/server/level/ServerPlayer;)V +MD: net/minecraft/server/bossevents/CustomBossEvents/m_136307_ ()Lnet/minecraft/nbt/CompoundTag; net/minecraft/server/bossevents/CustomBossEvents/save ()Lnet/minecraft/nbt/CompoundTag; +MD: net/minecraft/server/chase/ChaseClient/ ()V net/minecraft/server/chase/ChaseClient/ ()V +MD: net/minecraft/server/chase/ChaseClient/ (Ljava/lang/String;ILnet/minecraft/server/MinecraftServer;)V net/minecraft/server/chase/ChaseClient/ (Ljava/lang/String;ILnet/minecraft/server/MinecraftServer;)V +MD: net/minecraft/server/chase/ChaseClient/m_195993_ ()V net/minecraft/server/chase/ChaseClient/start ()V +MD: net/minecraft/server/chase/ChaseClient/m_195994_ (Ljava/lang/String;)V net/minecraft/server/chase/ChaseClient/handleMessage (Ljava/lang/String;)V +MD: net/minecraft/server/chase/ChaseClient/m_195996_ (Ljava/util/Scanner;)V net/minecraft/server/chase/ChaseClient/handleTeleport (Ljava/util/Scanner;)V +MD: net/minecraft/server/chase/ChaseClient/m_195998_ (Lnet/minecraft/server/chase/ChaseClient$TeleportTarget;)V net/minecraft/server/chase/ChaseClient/lambda$handleTeleport$0 (Lnet/minecraft/server/chase/ChaseClient$TeleportTarget;)V +MD: net/minecraft/server/chase/ChaseClient/m_196000_ ()V net/minecraft/server/chase/ChaseClient/stop ()V +MD: net/minecraft/server/chase/ChaseClient/m_196001_ (Ljava/lang/String;)V net/minecraft/server/chase/ChaseClient/executeCommand (Ljava/lang/String;)V +MD: net/minecraft/server/chase/ChaseClient/m_196003_ (Ljava/util/Scanner;)Ljava/util/Optional; net/minecraft/server/chase/ChaseClient/parseTarget (Ljava/util/Scanner;)Ljava/util/Optional; +MD: net/minecraft/server/chase/ChaseClient/m_196005_ ()V net/minecraft/server/chase/ChaseClient/run ()V +MD: net/minecraft/server/chase/ChaseClient/m_196006_ (Ljava/lang/String;)V net/minecraft/server/chase/ChaseClient/lambda$executeCommand$1 (Ljava/lang/String;)V +MD: net/minecraft/server/chase/ChaseClient$TeleportTarget/ (Lnet/minecraft/resources/ResourceKey;Lnet/minecraft/world/phys/Vec3;Lnet/minecraft/world/phys/Vec2;)V net/minecraft/server/chase/ChaseClient$TeleportTarget/ (Lnet/minecraft/resources/ResourceKey;Lnet/minecraft/world/phys/Vec3;Lnet/minecraft/world/phys/Vec2;)V +MD: net/minecraft/server/chase/ChaseClient$TeleportTarget/equals (Ljava/lang/Object;)Z net/minecraft/server/chase/ChaseClient$TeleportTarget/equals (Ljava/lang/Object;)Z +MD: net/minecraft/server/chase/ChaseClient$TeleportTarget/f_196008_ ()Lnet/minecraft/resources/ResourceKey; net/minecraft/server/chase/ChaseClient$TeleportTarget/level ()Lnet/minecraft/resources/ResourceKey; +MD: net/minecraft/server/chase/ChaseClient$TeleportTarget/f_196009_ ()Lnet/minecraft/world/phys/Vec3; net/minecraft/server/chase/ChaseClient$TeleportTarget/pos ()Lnet/minecraft/world/phys/Vec3; +MD: net/minecraft/server/chase/ChaseClient$TeleportTarget/f_196010_ ()Lnet/minecraft/world/phys/Vec2; net/minecraft/server/chase/ChaseClient$TeleportTarget/rot ()Lnet/minecraft/world/phys/Vec2; +MD: net/minecraft/server/chase/ChaseClient$TeleportTarget/hashCode ()I net/minecraft/server/chase/ChaseClient$TeleportTarget/hashCode ()I +MD: net/minecraft/server/chase/ChaseClient$TeleportTarget/toString ()Ljava/lang/String; net/minecraft/server/chase/ChaseClient$TeleportTarget/toString ()Ljava/lang/String; +MD: net/minecraft/server/chase/ChaseServer/ ()V net/minecraft/server/chase/ChaseServer/ ()V +MD: net/minecraft/server/chase/ChaseServer/ (Ljava/lang/String;ILnet/minecraft/server/players/PlayerList;I)V net/minecraft/server/chase/ChaseServer/ (Ljava/lang/String;ILnet/minecraft/server/players/PlayerList;I)V +MD: net/minecraft/server/chase/ChaseServer/m_196036_ ()V net/minecraft/server/chase/ChaseServer/start ()V +MD: net/minecraft/server/chase/ChaseServer/m_196037_ (Ljava/net/Socket;[B)V net/minecraft/server/chase/ChaseServer/lambda$runSender$0 (Ljava/net/Socket;[B)V +MD: net/minecraft/server/chase/ChaseServer/m_196040_ ()V net/minecraft/server/chase/ChaseServer/stop ()V +MD: net/minecraft/server/chase/ChaseServer/m_196041_ ()V net/minecraft/server/chase/ChaseServer/runSender ()V +MD: net/minecraft/server/chase/ChaseServer/m_196042_ ()V net/minecraft/server/chase/ChaseServer/runAcceptor ()V +MD: net/minecraft/server/chase/ChaseServer/m_196043_ ()Lnet/minecraft/server/chase/ChaseServer$PlayerPosition; net/minecraft/server/chase/ChaseServer/getPlayerPosition ()Lnet/minecraft/server/chase/ChaseServer$PlayerPosition; +MD: net/minecraft/server/chase/ChaseServer$PlayerPosition/ (Ljava/lang/String;DDDFF)V net/minecraft/server/chase/ChaseServer$PlayerPosition/ (Ljava/lang/String;DDDFF)V +MD: net/minecraft/server/chase/ChaseServer$PlayerPosition/equals (Ljava/lang/Object;)Z net/minecraft/server/chase/ChaseServer$PlayerPosition/equals (Ljava/lang/Object;)Z +MD: net/minecraft/server/chase/ChaseServer$PlayerPosition/f_196044_ ()Ljava/lang/String; net/minecraft/server/chase/ChaseServer$PlayerPosition/dimensionName ()Ljava/lang/String; +MD: net/minecraft/server/chase/ChaseServer$PlayerPosition/f_196045_ ()D net/minecraft/server/chase/ChaseServer$PlayerPosition/x ()D +MD: net/minecraft/server/chase/ChaseServer$PlayerPosition/f_196046_ ()D net/minecraft/server/chase/ChaseServer$PlayerPosition/y ()D +MD: net/minecraft/server/chase/ChaseServer$PlayerPosition/f_196047_ ()D net/minecraft/server/chase/ChaseServer$PlayerPosition/z ()D +MD: net/minecraft/server/chase/ChaseServer$PlayerPosition/f_196048_ ()F net/minecraft/server/chase/ChaseServer$PlayerPosition/yRot ()F +MD: net/minecraft/server/chase/ChaseServer$PlayerPosition/f_196049_ ()F net/minecraft/server/chase/ChaseServer$PlayerPosition/xRot ()F +MD: net/minecraft/server/chase/ChaseServer$PlayerPosition/hashCode ()I net/minecraft/server/chase/ChaseServer$PlayerPosition/hashCode ()I +MD: net/minecraft/server/chase/ChaseServer$PlayerPosition/m_196065_ ()Ljava/lang/String; net/minecraft/server/chase/ChaseServer$PlayerPosition/format ()Ljava/lang/String; +MD: net/minecraft/server/chase/ChaseServer$PlayerPosition/toString ()Ljava/lang/String; net/minecraft/server/chase/ChaseServer$PlayerPosition/toString ()Ljava/lang/String; +MD: net/minecraft/server/commands/AdvancementCommands/ ()V net/minecraft/server/commands/AdvancementCommands/ ()V +MD: net/minecraft/server/commands/AdvancementCommands/ ()V net/minecraft/server/commands/AdvancementCommands/ ()V +MD: net/minecraft/server/commands/AdvancementCommands/m_136310_ (Lcom/mojang/brigadier/CommandDispatcher;)V net/minecraft/server/commands/AdvancementCommands/register (Lcom/mojang/brigadier/CommandDispatcher;)V +MD: net/minecraft/server/commands/AdvancementCommands/m_136312_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/AdvancementCommands/lambda$register$15 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/AdvancementCommands/m_136314_ (Lcom/mojang/brigadier/context/CommandContext;Lcom/mojang/brigadier/suggestion/SuggestionsBuilder;)Ljava/util/concurrent/CompletableFuture; net/minecraft/server/commands/AdvancementCommands/lambda$register$10 (Lcom/mojang/brigadier/context/CommandContext;Lcom/mojang/brigadier/suggestion/SuggestionsBuilder;)Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/server/commands/AdvancementCommands/m_136317_ (Lnet/minecraft/commands/CommandSourceStack;)Z net/minecraft/server/commands/AdvancementCommands/lambda$register$1 (Lnet/minecraft/commands/CommandSourceStack;)Z +MD: net/minecraft/server/commands/AdvancementCommands/m_136319_ (Lnet/minecraft/commands/CommandSourceStack;Ljava/util/Collection;Lnet/minecraft/server/commands/AdvancementCommands$Action;Ljava/util/Collection;)I net/minecraft/server/commands/AdvancementCommands/perform (Lnet/minecraft/commands/CommandSourceStack;Ljava/util/Collection;Lnet/minecraft/server/commands/AdvancementCommands$Action;Ljava/util/Collection;)I +MD: net/minecraft/server/commands/AdvancementCommands/m_136324_ (Lnet/minecraft/commands/CommandSourceStack;Ljava/util/Collection;Lnet/minecraft/server/commands/AdvancementCommands$Action;Lnet/minecraft/advancements/Advancement;Ljava/lang/String;)I net/minecraft/server/commands/AdvancementCommands/performCriterion (Lnet/minecraft/commands/CommandSourceStack;Ljava/util/Collection;Lnet/minecraft/server/commands/AdvancementCommands$Action;Lnet/minecraft/advancements/Advancement;Ljava/lang/String;)I +MD: net/minecraft/server/commands/AdvancementCommands/m_136330_ (Lnet/minecraft/advancements/Advancement;Ljava/util/List;)V net/minecraft/server/commands/AdvancementCommands/addChildren (Lnet/minecraft/advancements/Advancement;Ljava/util/List;)V +MD: net/minecraft/server/commands/AdvancementCommands/m_136333_ (Lnet/minecraft/advancements/Advancement;Lnet/minecraft/server/commands/AdvancementCommands$Mode;)Ljava/util/List; net/minecraft/server/commands/AdvancementCommands/getAdvancements (Lnet/minecraft/advancements/Advancement;Lnet/minecraft/server/commands/AdvancementCommands$Mode;)Ljava/util/List; +MD: net/minecraft/server/commands/AdvancementCommands/m_136336_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/AdvancementCommands/lambda$register$14 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/AdvancementCommands/m_136338_ (Lcom/mojang/brigadier/context/CommandContext;Lcom/mojang/brigadier/suggestion/SuggestionsBuilder;)Ljava/util/concurrent/CompletableFuture; net/minecraft/server/commands/AdvancementCommands/lambda$register$3 (Lcom/mojang/brigadier/context/CommandContext;Lcom/mojang/brigadier/suggestion/SuggestionsBuilder;)Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/server/commands/AdvancementCommands/m_136341_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/AdvancementCommands/lambda$register$13 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/AdvancementCommands/m_136343_ (Lcom/mojang/brigadier/context/CommandContext;Lcom/mojang/brigadier/suggestion/SuggestionsBuilder;)Ljava/util/concurrent/CompletableFuture; net/minecraft/server/commands/AdvancementCommands/lambda$static$0 (Lcom/mojang/brigadier/context/CommandContext;Lcom/mojang/brigadier/suggestion/SuggestionsBuilder;)Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/server/commands/AdvancementCommands/m_136346_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/AdvancementCommands/lambda$register$12 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/AdvancementCommands/m_136348_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/AdvancementCommands/lambda$register$11 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/AdvancementCommands/m_136350_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/AdvancementCommands/lambda$register$9 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/AdvancementCommands/m_136352_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/AdvancementCommands/lambda$register$8 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/AdvancementCommands/m_136354_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/AdvancementCommands/lambda$register$7 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/AdvancementCommands/m_136356_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/AdvancementCommands/lambda$register$6 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/AdvancementCommands/m_136358_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/AdvancementCommands/lambda$register$5 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/AdvancementCommands/m_136360_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/AdvancementCommands/lambda$register$4 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/AdvancementCommands/m_136362_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/AdvancementCommands/lambda$register$2 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/AdvancementCommands/m_287811_ (Lnet/minecraft/server/commands/AdvancementCommands$Action;Ljava/util/Collection;Ljava/util/Collection;)Lnet/minecraft/network/chat/Component; net/minecraft/server/commands/AdvancementCommands/lambda$perform$17 (Lnet/minecraft/server/commands/AdvancementCommands$Action;Ljava/util/Collection;Ljava/util/Collection;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/commands/AdvancementCommands/m_287814_ (Lnet/minecraft/server/commands/AdvancementCommands$Action;Ljava/lang/String;Lnet/minecraft/advancements/Advancement;Ljava/util/Collection;)Lnet/minecraft/network/chat/Component; net/minecraft/server/commands/AdvancementCommands/lambda$performCriterion$21 (Lnet/minecraft/server/commands/AdvancementCommands$Action;Ljava/lang/String;Lnet/minecraft/advancements/Advancement;Ljava/util/Collection;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/commands/AdvancementCommands/m_287815_ (Lnet/minecraft/server/commands/AdvancementCommands$Action;Ljava/util/Collection;Ljava/util/Collection;)Lnet/minecraft/network/chat/Component; net/minecraft/server/commands/AdvancementCommands/lambda$perform$19 (Lnet/minecraft/server/commands/AdvancementCommands$Action;Ljava/util/Collection;Ljava/util/Collection;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/commands/AdvancementCommands/m_289057_ (Lnet/minecraft/server/commands/AdvancementCommands$Action;Ljava/util/Collection;Ljava/util/Collection;)Lnet/minecraft/network/chat/Component; net/minecraft/server/commands/AdvancementCommands/lambda$perform$18 (Lnet/minecraft/server/commands/AdvancementCommands$Action;Ljava/util/Collection;Ljava/util/Collection;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/commands/AdvancementCommands/m_289058_ (Lnet/minecraft/server/commands/AdvancementCommands$Action;Ljava/lang/String;Lnet/minecraft/advancements/Advancement;Ljava/util/Collection;)Lnet/minecraft/network/chat/Component; net/minecraft/server/commands/AdvancementCommands/lambda$performCriterion$20 (Lnet/minecraft/server/commands/AdvancementCommands$Action;Ljava/lang/String;Lnet/minecraft/advancements/Advancement;Ljava/util/Collection;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/commands/AdvancementCommands/m_289059_ (Lnet/minecraft/server/commands/AdvancementCommands$Action;Ljava/util/Collection;Ljava/util/Collection;)Lnet/minecraft/network/chat/Component; net/minecraft/server/commands/AdvancementCommands/lambda$perform$16 (Lnet/minecraft/server/commands/AdvancementCommands$Action;Ljava/util/Collection;Ljava/util/Collection;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/commands/AdvancementCommands$Action/ ()V net/minecraft/server/commands/AdvancementCommands$Action/ ()V +MD: net/minecraft/server/commands/AdvancementCommands$Action/ (Ljava/lang/String;ILjava/lang/String;)V net/minecraft/server/commands/AdvancementCommands$Action/ (Ljava/lang/String;ILjava/lang/String;)V +MD: net/minecraft/server/commands/AdvancementCommands$Action/m_136378_ ()Ljava/lang/String; net/minecraft/server/commands/AdvancementCommands$Action/getKey ()Ljava/lang/String; +MD: net/minecraft/server/commands/AdvancementCommands$Action/m_136379_ (Lnet/minecraft/server/level/ServerPlayer;Ljava/lang/Iterable;)I net/minecraft/server/commands/AdvancementCommands$Action/perform (Lnet/minecraft/server/level/ServerPlayer;Ljava/lang/Iterable;)I +MD: net/minecraft/server/commands/AdvancementCommands$Action/m_180018_ ()[Lnet/minecraft/server/commands/AdvancementCommands$Action; net/minecraft/server/commands/AdvancementCommands$Action/$values ()[Lnet/minecraft/server/commands/AdvancementCommands$Action; +MD: net/minecraft/server/commands/AdvancementCommands$Action/m_5753_ (Lnet/minecraft/server/level/ServerPlayer;Lnet/minecraft/advancements/Advancement;Ljava/lang/String;)Z net/minecraft/server/commands/AdvancementCommands$Action/performCriterion (Lnet/minecraft/server/level/ServerPlayer;Lnet/minecraft/advancements/Advancement;Ljava/lang/String;)Z +MD: net/minecraft/server/commands/AdvancementCommands$Action/m_6070_ (Lnet/minecraft/server/level/ServerPlayer;Lnet/minecraft/advancements/Advancement;)Z net/minecraft/server/commands/AdvancementCommands$Action/perform (Lnet/minecraft/server/level/ServerPlayer;Lnet/minecraft/advancements/Advancement;)Z +MD: net/minecraft/server/commands/AdvancementCommands$Action/valueOf (Ljava/lang/String;)Lnet/minecraft/server/commands/AdvancementCommands$Action; net/minecraft/server/commands/AdvancementCommands$Action/valueOf (Ljava/lang/String;)Lnet/minecraft/server/commands/AdvancementCommands$Action; +MD: net/minecraft/server/commands/AdvancementCommands$Action/values ()[Lnet/minecraft/server/commands/AdvancementCommands$Action; net/minecraft/server/commands/AdvancementCommands$Action/values ()[Lnet/minecraft/server/commands/AdvancementCommands$Action; +MD: net/minecraft/server/commands/AdvancementCommands$Action$1/ (Ljava/lang/String;ILjava/lang/String;)V net/minecraft/server/commands/AdvancementCommands$Action$1/ (Ljava/lang/String;ILjava/lang/String;)V +MD: net/minecraft/server/commands/AdvancementCommands$Action$1/m_5753_ (Lnet/minecraft/server/level/ServerPlayer;Lnet/minecraft/advancements/Advancement;Ljava/lang/String;)Z net/minecraft/server/commands/AdvancementCommands$Action$1/performCriterion (Lnet/minecraft/server/level/ServerPlayer;Lnet/minecraft/advancements/Advancement;Ljava/lang/String;)Z +MD: net/minecraft/server/commands/AdvancementCommands$Action$1/m_6070_ (Lnet/minecraft/server/level/ServerPlayer;Lnet/minecraft/advancements/Advancement;)Z net/minecraft/server/commands/AdvancementCommands$Action$1/perform (Lnet/minecraft/server/level/ServerPlayer;Lnet/minecraft/advancements/Advancement;)Z +MD: net/minecraft/server/commands/AdvancementCommands$Action$2/ (Ljava/lang/String;ILjava/lang/String;)V net/minecraft/server/commands/AdvancementCommands$Action$2/ (Ljava/lang/String;ILjava/lang/String;)V +MD: net/minecraft/server/commands/AdvancementCommands$Action$2/m_5753_ (Lnet/minecraft/server/level/ServerPlayer;Lnet/minecraft/advancements/Advancement;Ljava/lang/String;)Z net/minecraft/server/commands/AdvancementCommands$Action$2/performCriterion (Lnet/minecraft/server/level/ServerPlayer;Lnet/minecraft/advancements/Advancement;Ljava/lang/String;)Z +MD: net/minecraft/server/commands/AdvancementCommands$Action$2/m_6070_ (Lnet/minecraft/server/level/ServerPlayer;Lnet/minecraft/advancements/Advancement;)Z net/minecraft/server/commands/AdvancementCommands$Action$2/perform (Lnet/minecraft/server/level/ServerPlayer;Lnet/minecraft/advancements/Advancement;)Z +MD: net/minecraft/server/commands/AdvancementCommands$Mode/ ()V net/minecraft/server/commands/AdvancementCommands$Mode/ ()V +MD: net/minecraft/server/commands/AdvancementCommands$Mode/ (Ljava/lang/String;IZZ)V net/minecraft/server/commands/AdvancementCommands$Mode/ (Ljava/lang/String;IZZ)V +MD: net/minecraft/server/commands/AdvancementCommands$Mode/m_180019_ ()[Lnet/minecraft/server/commands/AdvancementCommands$Mode; net/minecraft/server/commands/AdvancementCommands$Mode/$values ()[Lnet/minecraft/server/commands/AdvancementCommands$Mode; +MD: net/minecraft/server/commands/AdvancementCommands$Mode/valueOf (Ljava/lang/String;)Lnet/minecraft/server/commands/AdvancementCommands$Mode; net/minecraft/server/commands/AdvancementCommands$Mode/valueOf (Ljava/lang/String;)Lnet/minecraft/server/commands/AdvancementCommands$Mode; +MD: net/minecraft/server/commands/AdvancementCommands$Mode/values ()[Lnet/minecraft/server/commands/AdvancementCommands$Mode; net/minecraft/server/commands/AdvancementCommands$Mode/values ()[Lnet/minecraft/server/commands/AdvancementCommands$Mode; +MD: net/minecraft/server/commands/AttributeCommand/ ()V net/minecraft/server/commands/AttributeCommand/ ()V +MD: net/minecraft/server/commands/AttributeCommand/ ()V net/minecraft/server/commands/AttributeCommand/ ()V +MD: net/minecraft/server/commands/AttributeCommand/m_136439_ (Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/world/entity/LivingEntity; net/minecraft/server/commands/AttributeCommand/getLivingEntity (Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/world/entity/LivingEntity; +MD: net/minecraft/server/commands/AttributeCommand/m_136458_ (Lnet/minecraft/commands/CommandSourceStack;Lnet/minecraft/world/entity/Entity;Lnet/minecraft/core/Holder;Ljava/util/UUID;)I net/minecraft/server/commands/AttributeCommand/removeModifier (Lnet/minecraft/commands/CommandSourceStack;Lnet/minecraft/world/entity/Entity;Lnet/minecraft/core/Holder;Ljava/util/UUID;)I +MD: net/minecraft/server/commands/AttributeCommand/m_136463_ (Lnet/minecraft/commands/CommandSourceStack;Lnet/minecraft/world/entity/Entity;Lnet/minecraft/core/Holder;Ljava/util/UUID;D)I net/minecraft/server/commands/AttributeCommand/getAttributeModifier (Lnet/minecraft/commands/CommandSourceStack;Lnet/minecraft/world/entity/Entity;Lnet/minecraft/core/Holder;Ljava/util/UUID;D)I +MD: net/minecraft/server/commands/AttributeCommand/m_136469_ (Lnet/minecraft/commands/CommandSourceStack;Lnet/minecraft/world/entity/Entity;Lnet/minecraft/core/Holder;Ljava/util/UUID;Ljava/lang/String;DLnet/minecraft/world/entity/ai/attributes/AttributeModifier$Operation;)I net/minecraft/server/commands/AttributeCommand/addModifier (Lnet/minecraft/commands/CommandSourceStack;Lnet/minecraft/world/entity/Entity;Lnet/minecraft/core/Holder;Ljava/util/UUID;Ljava/lang/String;DLnet/minecraft/world/entity/ai/attributes/AttributeModifier$Operation;)I +MD: net/minecraft/server/commands/AttributeCommand/m_136496_ (Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;)Lcom/mojang/brigadier/Message; net/minecraft/server/commands/AttributeCommand/lambda$static$3 (Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;)Lcom/mojang/brigadier/Message; +MD: net/minecraft/server/commands/AttributeCommand/m_212440_ (Lnet/minecraft/commands/CommandSourceStack;)Z net/minecraft/server/commands/AttributeCommand/lambda$register$4 (Lnet/minecraft/commands/CommandSourceStack;)Z +MD: net/minecraft/server/commands/AttributeCommand/m_212442_ (Ljava/lang/Object;)Lcom/mojang/brigadier/Message; net/minecraft/server/commands/AttributeCommand/lambda$static$0 (Ljava/lang/Object;)Lcom/mojang/brigadier/Message; +MD: net/minecraft/server/commands/AttributeCommand/m_212444_ (Ljava/lang/Object;Ljava/lang/Object;)Lcom/mojang/brigadier/Message; net/minecraft/server/commands/AttributeCommand/lambda$static$1 (Ljava/lang/Object;Ljava/lang/Object;)Lcom/mojang/brigadier/Message; +MD: net/minecraft/server/commands/AttributeCommand/m_212447_ (Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;)Lcom/mojang/brigadier/Message; net/minecraft/server/commands/AttributeCommand/lambda$static$2 (Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;)Lcom/mojang/brigadier/Message; +MD: net/minecraft/server/commands/AttributeCommand/m_244810_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/AttributeCommand/lambda$register$7 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/AttributeCommand/m_244811_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/AttributeCommand/lambda$register$13 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/AttributeCommand/m_244812_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/AttributeCommand/lambda$register$6 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/AttributeCommand/m_244813_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/AttributeCommand/lambda$register$10 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/AttributeCommand/m_244814_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/AttributeCommand/lambda$register$9 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/AttributeCommand/m_244815_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/AttributeCommand/lambda$register$11 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/AttributeCommand/m_244816_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/AttributeCommand/lambda$register$12 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/AttributeCommand/m_244817_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/AttributeCommand/lambda$register$5 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/AttributeCommand/m_244818_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/AttributeCommand/lambda$register$14 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/AttributeCommand/m_244819_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/AttributeCommand/lambda$register$15 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/AttributeCommand/m_244820_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/AttributeCommand/lambda$register$8 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/AttributeCommand/m_245112_ (Lnet/minecraft/world/entity/Entity;Lnet/minecraft/core/Holder;)Lnet/minecraft/world/entity/LivingEntity; net/minecraft/server/commands/AttributeCommand/getEntityWithAttribute (Lnet/minecraft/world/entity/Entity;Lnet/minecraft/core/Holder;)Lnet/minecraft/world/entity/LivingEntity; +MD: net/minecraft/server/commands/AttributeCommand/m_245136_ (Lnet/minecraft/commands/CommandSourceStack;Lnet/minecraft/world/entity/Entity;Lnet/minecraft/core/Holder;D)I net/minecraft/server/commands/AttributeCommand/setAttributeBase (Lnet/minecraft/commands/CommandSourceStack;Lnet/minecraft/world/entity/Entity;Lnet/minecraft/core/Holder;D)I +MD: net/minecraft/server/commands/AttributeCommand/m_245835_ (Lcom/mojang/brigadier/CommandDispatcher;Lnet/minecraft/commands/CommandBuildContext;)V net/minecraft/server/commands/AttributeCommand/register (Lcom/mojang/brigadier/CommandDispatcher;Lnet/minecraft/commands/CommandBuildContext;)V +MD: net/minecraft/server/commands/AttributeCommand/m_246137_ (Lnet/minecraft/commands/CommandSourceStack;Lnet/minecraft/world/entity/Entity;Lnet/minecraft/core/Holder;D)I net/minecraft/server/commands/AttributeCommand/getAttributeBase (Lnet/minecraft/commands/CommandSourceStack;Lnet/minecraft/world/entity/Entity;Lnet/minecraft/core/Holder;D)I +MD: net/minecraft/server/commands/AttributeCommand/m_246653_ (Lnet/minecraft/world/entity/Entity;Lnet/minecraft/core/Holder;)Lnet/minecraft/world/entity/ai/attributes/AttributeInstance; net/minecraft/server/commands/AttributeCommand/getAttributeInstance (Lnet/minecraft/world/entity/Entity;Lnet/minecraft/core/Holder;)Lnet/minecraft/world/entity/ai/attributes/AttributeInstance; +MD: net/minecraft/server/commands/AttributeCommand/m_247618_ (Lnet/minecraft/core/Holder;)Lnet/minecraft/network/chat/Component; net/minecraft/server/commands/AttributeCommand/getAttributeDescription (Lnet/minecraft/core/Holder;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/commands/AttributeCommand/m_247645_ (Lnet/minecraft/commands/CommandSourceStack;Lnet/minecraft/world/entity/Entity;Lnet/minecraft/core/Holder;D)I net/minecraft/server/commands/AttributeCommand/getAttributeValue (Lnet/minecraft/commands/CommandSourceStack;Lnet/minecraft/world/entity/Entity;Lnet/minecraft/core/Holder;D)I +MD: net/minecraft/server/commands/AttributeCommand/m_287816_ (Ljava/util/UUID;Lnet/minecraft/core/Holder;Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/network/chat/Component; net/minecraft/server/commands/AttributeCommand/lambda$removeModifier$21 (Ljava/util/UUID;Lnet/minecraft/core/Holder;Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/commands/AttributeCommand/m_287817_ (Ljava/util/UUID;Lnet/minecraft/core/Holder;Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/network/chat/Component; net/minecraft/server/commands/AttributeCommand/lambda$addModifier$20 (Ljava/util/UUID;Lnet/minecraft/core/Holder;Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/commands/AttributeCommand/m_287818_ (Lnet/minecraft/core/Holder;Lnet/minecraft/world/entity/Entity;D)Lnet/minecraft/network/chat/Component; net/minecraft/server/commands/AttributeCommand/lambda$getAttributeValue$16 (Lnet/minecraft/core/Holder;Lnet/minecraft/world/entity/Entity;D)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/commands/AttributeCommand/m_287819_ (Lnet/minecraft/core/Holder;Lnet/minecraft/world/entity/Entity;D)Lnet/minecraft/network/chat/Component; net/minecraft/server/commands/AttributeCommand/lambda$setAttributeBase$19 (Lnet/minecraft/core/Holder;Lnet/minecraft/world/entity/Entity;D)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/commands/AttributeCommand/m_287820_ (Ljava/util/UUID;Lnet/minecraft/core/Holder;Lnet/minecraft/world/entity/Entity;D)Lnet/minecraft/network/chat/Component; net/minecraft/server/commands/AttributeCommand/lambda$getAttributeModifier$18 (Ljava/util/UUID;Lnet/minecraft/core/Holder;Lnet/minecraft/world/entity/Entity;D)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/commands/AttributeCommand/m_287821_ (Lnet/minecraft/core/Holder;Lnet/minecraft/world/entity/Entity;D)Lnet/minecraft/network/chat/Component; net/minecraft/server/commands/AttributeCommand/lambda$getAttributeBase$17 (Lnet/minecraft/core/Holder;Lnet/minecraft/world/entity/Entity;D)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/commands/BanIpCommands/ ()V net/minecraft/server/commands/BanIpCommands/ ()V +MD: net/minecraft/server/commands/BanIpCommands/ ()V net/minecraft/server/commands/BanIpCommands/ ()V +MD: net/minecraft/server/commands/BanIpCommands/m_136527_ (Lcom/mojang/brigadier/CommandDispatcher;)V net/minecraft/server/commands/BanIpCommands/register (Lcom/mojang/brigadier/CommandDispatcher;)V +MD: net/minecraft/server/commands/BanIpCommands/m_136529_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/BanIpCommands/lambda$register$2 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/BanIpCommands/m_136531_ (Lnet/minecraft/commands/CommandSourceStack;)Z net/minecraft/server/commands/BanIpCommands/lambda$register$0 (Lnet/minecraft/commands/CommandSourceStack;)Z +MD: net/minecraft/server/commands/BanIpCommands/m_136533_ (Lnet/minecraft/commands/CommandSourceStack;Ljava/lang/String;Lnet/minecraft/network/chat/Component;)I net/minecraft/server/commands/BanIpCommands/banIpOrName (Lnet/minecraft/commands/CommandSourceStack;Ljava/lang/String;Lnet/minecraft/network/chat/Component;)I +MD: net/minecraft/server/commands/BanIpCommands/m_136537_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/BanIpCommands/lambda$register$1 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/BanIpCommands/m_136539_ (Lnet/minecraft/commands/CommandSourceStack;Ljava/lang/String;Lnet/minecraft/network/chat/Component;)I net/minecraft/server/commands/BanIpCommands/banIp (Lnet/minecraft/commands/CommandSourceStack;Ljava/lang/String;Lnet/minecraft/network/chat/Component;)I +MD: net/minecraft/server/commands/BanIpCommands/m_287822_ (Ljava/util/List;)Lnet/minecraft/network/chat/Component; net/minecraft/server/commands/BanIpCommands/lambda$banIp$4 (Ljava/util/List;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/commands/BanIpCommands/m_287823_ (Ljava/lang/String;Lnet/minecraft/server/players/IpBanListEntry;)Lnet/minecraft/network/chat/Component; net/minecraft/server/commands/BanIpCommands/lambda$banIp$3 (Ljava/lang/String;Lnet/minecraft/server/players/IpBanListEntry;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/commands/BanListCommands/ ()V net/minecraft/server/commands/BanListCommands/ ()V +MD: net/minecraft/server/commands/BanListCommands/m_136543_ (Lcom/mojang/brigadier/CommandDispatcher;)V net/minecraft/server/commands/BanListCommands/register (Lcom/mojang/brigadier/CommandDispatcher;)V +MD: net/minecraft/server/commands/BanListCommands/m_136545_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/BanListCommands/lambda$register$3 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/BanListCommands/m_136547_ (Lnet/minecraft/commands/CommandSourceStack;)Z net/minecraft/server/commands/BanListCommands/lambda$register$0 (Lnet/minecraft/commands/CommandSourceStack;)Z +MD: net/minecraft/server/commands/BanListCommands/m_136549_ (Lnet/minecraft/commands/CommandSourceStack;Ljava/util/Collection;)I net/minecraft/server/commands/BanListCommands/showList (Lnet/minecraft/commands/CommandSourceStack;Ljava/util/Collection;)I +MD: net/minecraft/server/commands/BanListCommands/m_136552_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/BanListCommands/lambda$register$2 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/BanListCommands/m_136554_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/BanListCommands/lambda$register$1 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/BanListCommands/m_287824_ (Lnet/minecraft/server/players/BanListEntry;)Lnet/minecraft/network/chat/Component; net/minecraft/server/commands/BanListCommands/lambda$showList$6 (Lnet/minecraft/server/players/BanListEntry;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/commands/BanListCommands/m_287825_ ()Lnet/minecraft/network/chat/Component; net/minecraft/server/commands/BanListCommands/lambda$showList$4 ()Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/commands/BanListCommands/m_287826_ (Ljava/util/Collection;)Lnet/minecraft/network/chat/Component; net/minecraft/server/commands/BanListCommands/lambda$showList$5 (Ljava/util/Collection;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/commands/BanPlayerCommands/ ()V net/minecraft/server/commands/BanPlayerCommands/ ()V +MD: net/minecraft/server/commands/BanPlayerCommands/ ()V net/minecraft/server/commands/BanPlayerCommands/ ()V +MD: net/minecraft/server/commands/BanPlayerCommands/m_136558_ (Lcom/mojang/brigadier/CommandDispatcher;)V net/minecraft/server/commands/BanPlayerCommands/register (Lcom/mojang/brigadier/CommandDispatcher;)V +MD: net/minecraft/server/commands/BanPlayerCommands/m_136560_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/BanPlayerCommands/lambda$register$2 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/BanPlayerCommands/m_136562_ (Lnet/minecraft/commands/CommandSourceStack;)Z net/minecraft/server/commands/BanPlayerCommands/lambda$register$0 (Lnet/minecraft/commands/CommandSourceStack;)Z +MD: net/minecraft/server/commands/BanPlayerCommands/m_136564_ (Lnet/minecraft/commands/CommandSourceStack;Ljava/util/Collection;Lnet/minecraft/network/chat/Component;)I net/minecraft/server/commands/BanPlayerCommands/banPlayers (Lnet/minecraft/commands/CommandSourceStack;Ljava/util/Collection;Lnet/minecraft/network/chat/Component;)I +MD: net/minecraft/server/commands/BanPlayerCommands/m_136568_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/BanPlayerCommands/lambda$register$1 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/BanPlayerCommands/m_287827_ (Lcom/mojang/authlib/GameProfile;Lnet/minecraft/server/players/UserBanListEntry;)Lnet/minecraft/network/chat/Component; net/minecraft/server/commands/BanPlayerCommands/lambda$banPlayers$3 (Lcom/mojang/authlib/GameProfile;Lnet/minecraft/server/players/UserBanListEntry;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/commands/BossBarCommands/ ()V net/minecraft/server/commands/BossBarCommands/ ()V +MD: net/minecraft/server/commands/BossBarCommands/ ()V net/minecraft/server/commands/BossBarCommands/ ()V +MD: net/minecraft/server/commands/BossBarCommands/m_136582_ (Lcom/mojang/brigadier/CommandDispatcher;)V net/minecraft/server/commands/BossBarCommands/register (Lcom/mojang/brigadier/CommandDispatcher;)V +MD: net/minecraft/server/commands/BossBarCommands/m_136584_ (Lcom/mojang/brigadier/context/CommandContext;)Lnet/minecraft/server/bossevents/CustomBossEvent; net/minecraft/server/commands/BossBarCommands/getBossBar (Lcom/mojang/brigadier/context/CommandContext;)Lnet/minecraft/server/bossevents/CustomBossEvent; +MD: net/minecraft/server/commands/BossBarCommands/m_136586_ (Lcom/mojang/brigadier/context/CommandContext;Lcom/mojang/brigadier/suggestion/SuggestionsBuilder;)Ljava/util/concurrent/CompletableFuture; net/minecraft/server/commands/BossBarCommands/lambda$static$2 (Lcom/mojang/brigadier/context/CommandContext;Lcom/mojang/brigadier/suggestion/SuggestionsBuilder;)Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/server/commands/BossBarCommands/m_136589_ (Lnet/minecraft/commands/CommandSourceStack;)I net/minecraft/server/commands/BossBarCommands/listBars (Lnet/minecraft/commands/CommandSourceStack;)I +MD: net/minecraft/server/commands/BossBarCommands/m_136591_ (Lnet/minecraft/commands/CommandSourceStack;Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/network/chat/Component;)I net/minecraft/server/commands/BossBarCommands/createBar (Lnet/minecraft/commands/CommandSourceStack;Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/network/chat/Component;)I +MD: net/minecraft/server/commands/BossBarCommands/m_136595_ (Lnet/minecraft/commands/CommandSourceStack;Lnet/minecraft/server/bossevents/CustomBossEvent;)I net/minecraft/server/commands/BossBarCommands/getValue (Lnet/minecraft/commands/CommandSourceStack;Lnet/minecraft/server/bossevents/CustomBossEvent;)I +MD: net/minecraft/server/commands/BossBarCommands/m_136598_ (Lnet/minecraft/commands/CommandSourceStack;Lnet/minecraft/server/bossevents/CustomBossEvent;I)I net/minecraft/server/commands/BossBarCommands/setValue (Lnet/minecraft/commands/CommandSourceStack;Lnet/minecraft/server/bossevents/CustomBossEvent;I)I +MD: net/minecraft/server/commands/BossBarCommands/m_136602_ (Lnet/minecraft/commands/CommandSourceStack;Lnet/minecraft/server/bossevents/CustomBossEvent;Lnet/minecraft/world/BossEvent$BossBarColor;)I net/minecraft/server/commands/BossBarCommands/setColor (Lnet/minecraft/commands/CommandSourceStack;Lnet/minecraft/server/bossevents/CustomBossEvent;Lnet/minecraft/world/BossEvent$BossBarColor;)I +MD: net/minecraft/server/commands/BossBarCommands/m_136606_ (Lnet/minecraft/commands/CommandSourceStack;Lnet/minecraft/server/bossevents/CustomBossEvent;Lnet/minecraft/world/BossEvent$BossBarOverlay;)I net/minecraft/server/commands/BossBarCommands/setStyle (Lnet/minecraft/commands/CommandSourceStack;Lnet/minecraft/server/bossevents/CustomBossEvent;Lnet/minecraft/world/BossEvent$BossBarOverlay;)I +MD: net/minecraft/server/commands/BossBarCommands/m_136610_ (Lnet/minecraft/commands/CommandSourceStack;Lnet/minecraft/server/bossevents/CustomBossEvent;Ljava/util/Collection;)I net/minecraft/server/commands/BossBarCommands/setPlayers (Lnet/minecraft/commands/CommandSourceStack;Lnet/minecraft/server/bossevents/CustomBossEvent;Ljava/util/Collection;)I +MD: net/minecraft/server/commands/BossBarCommands/m_136614_ (Lnet/minecraft/commands/CommandSourceStack;Lnet/minecraft/server/bossevents/CustomBossEvent;Lnet/minecraft/network/chat/Component;)I net/minecraft/server/commands/BossBarCommands/setName (Lnet/minecraft/commands/CommandSourceStack;Lnet/minecraft/server/bossevents/CustomBossEvent;Lnet/minecraft/network/chat/Component;)I +MD: net/minecraft/server/commands/BossBarCommands/m_136618_ (Lnet/minecraft/commands/CommandSourceStack;Lnet/minecraft/server/bossevents/CustomBossEvent;Z)I net/minecraft/server/commands/BossBarCommands/setVisible (Lnet/minecraft/commands/CommandSourceStack;Lnet/minecraft/server/bossevents/CustomBossEvent;Z)I +MD: net/minecraft/server/commands/BossBarCommands/m_136622_ (Ljava/lang/Object;)Lcom/mojang/brigadier/Message; net/minecraft/server/commands/BossBarCommands/lambda$static$1 (Ljava/lang/Object;)Lcom/mojang/brigadier/Message; +MD: net/minecraft/server/commands/BossBarCommands/m_136624_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/BossBarCommands/lambda$register$28 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/BossBarCommands/m_136626_ (Lnet/minecraft/commands/CommandSourceStack;)Z net/minecraft/server/commands/BossBarCommands/lambda$register$3 (Lnet/minecraft/commands/CommandSourceStack;)Z +MD: net/minecraft/server/commands/BossBarCommands/m_136628_ (Lnet/minecraft/commands/CommandSourceStack;Lnet/minecraft/server/bossevents/CustomBossEvent;)I net/minecraft/server/commands/BossBarCommands/getMax (Lnet/minecraft/commands/CommandSourceStack;Lnet/minecraft/server/bossevents/CustomBossEvent;)I +MD: net/minecraft/server/commands/BossBarCommands/m_136631_ (Lnet/minecraft/commands/CommandSourceStack;Lnet/minecraft/server/bossevents/CustomBossEvent;I)I net/minecraft/server/commands/BossBarCommands/setMax (Lnet/minecraft/commands/CommandSourceStack;Lnet/minecraft/server/bossevents/CustomBossEvent;I)I +MD: net/minecraft/server/commands/BossBarCommands/m_136635_ (Ljava/lang/Object;)Lcom/mojang/brigadier/Message; net/minecraft/server/commands/BossBarCommands/lambda$static$0 (Ljava/lang/Object;)Lcom/mojang/brigadier/Message; +MD: net/minecraft/server/commands/BossBarCommands/m_136637_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/BossBarCommands/lambda$register$27 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/BossBarCommands/m_136639_ (Lnet/minecraft/commands/CommandSourceStack;Lnet/minecraft/server/bossevents/CustomBossEvent;)I net/minecraft/server/commands/BossBarCommands/getVisible (Lnet/minecraft/commands/CommandSourceStack;Lnet/minecraft/server/bossevents/CustomBossEvent;)I +MD: net/minecraft/server/commands/BossBarCommands/m_136642_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/BossBarCommands/lambda$register$26 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/BossBarCommands/m_136644_ (Lnet/minecraft/commands/CommandSourceStack;Lnet/minecraft/server/bossevents/CustomBossEvent;)I net/minecraft/server/commands/BossBarCommands/getPlayers (Lnet/minecraft/commands/CommandSourceStack;Lnet/minecraft/server/bossevents/CustomBossEvent;)I +MD: net/minecraft/server/commands/BossBarCommands/m_136647_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/BossBarCommands/lambda$register$25 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/BossBarCommands/m_136649_ (Lnet/minecraft/commands/CommandSourceStack;Lnet/minecraft/server/bossevents/CustomBossEvent;)I net/minecraft/server/commands/BossBarCommands/removeBar (Lnet/minecraft/commands/CommandSourceStack;Lnet/minecraft/server/bossevents/CustomBossEvent;)I +MD: net/minecraft/server/commands/BossBarCommands/m_136652_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/BossBarCommands/lambda$register$24 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/BossBarCommands/m_136654_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/BossBarCommands/lambda$register$23 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/BossBarCommands/m_136656_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/BossBarCommands/lambda$register$22 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/BossBarCommands/m_136658_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/BossBarCommands/lambda$register$21 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/BossBarCommands/m_136660_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/BossBarCommands/lambda$register$20 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/BossBarCommands/m_136662_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/BossBarCommands/lambda$register$19 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/BossBarCommands/m_136664_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/BossBarCommands/lambda$register$18 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/BossBarCommands/m_136666_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/BossBarCommands/lambda$register$17 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/BossBarCommands/m_136668_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/BossBarCommands/lambda$register$16 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/BossBarCommands/m_136670_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/BossBarCommands/lambda$register$15 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/BossBarCommands/m_136672_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/BossBarCommands/lambda$register$14 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/BossBarCommands/m_136674_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/BossBarCommands/lambda$register$13 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/BossBarCommands/m_136676_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/BossBarCommands/lambda$register$12 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/BossBarCommands/m_136678_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/BossBarCommands/lambda$register$11 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/BossBarCommands/m_136680_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/BossBarCommands/lambda$register$10 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/BossBarCommands/m_136682_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/BossBarCommands/lambda$register$9 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/BossBarCommands/m_136684_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/BossBarCommands/lambda$register$8 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/BossBarCommands/m_136686_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/BossBarCommands/lambda$register$7 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/BossBarCommands/m_136688_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/BossBarCommands/lambda$register$6 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/BossBarCommands/m_136690_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/BossBarCommands/lambda$register$5 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/BossBarCommands/m_136692_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/BossBarCommands/lambda$register$4 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/BossBarCommands/m_287828_ (Ljava/util/Collection;)Lnet/minecraft/network/chat/Component; net/minecraft/server/commands/BossBarCommands/lambda$listBars$45 (Ljava/util/Collection;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/commands/BossBarCommands/m_287829_ (Lnet/minecraft/server/bossevents/CustomBossEvent;)Lnet/minecraft/network/chat/Component; net/minecraft/server/commands/BossBarCommands/lambda$getVisible$31 (Lnet/minecraft/server/bossevents/CustomBossEvent;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/commands/BossBarCommands/m_287830_ (Lnet/minecraft/server/bossevents/CustomBossEvent;)Lnet/minecraft/network/chat/Component; net/minecraft/server/commands/BossBarCommands/lambda$setVisible$36 (Lnet/minecraft/server/bossevents/CustomBossEvent;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/commands/BossBarCommands/m_287831_ (Lnet/minecraft/server/bossevents/CustomBossEvent;)Lnet/minecraft/network/chat/Component; net/minecraft/server/commands/BossBarCommands/lambda$setColor$39 (Lnet/minecraft/server/bossevents/CustomBossEvent;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/commands/BossBarCommands/m_287832_ (Lnet/minecraft/server/bossevents/CustomBossEvent;)Lnet/minecraft/network/chat/Component; net/minecraft/server/commands/BossBarCommands/lambda$createBar$46 (Lnet/minecraft/server/bossevents/CustomBossEvent;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/commands/BossBarCommands/m_287833_ (Lnet/minecraft/server/bossevents/CustomBossEvent;Ljava/util/Collection;)Lnet/minecraft/network/chat/Component; net/minecraft/server/commands/BossBarCommands/lambda$setPlayers$43 (Lnet/minecraft/server/bossevents/CustomBossEvent;Ljava/util/Collection;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/commands/BossBarCommands/m_287834_ (Lnet/minecraft/server/bossevents/CustomBossEvent;)Lnet/minecraft/network/chat/Component; net/minecraft/server/commands/BossBarCommands/lambda$removeBar$47 (Lnet/minecraft/server/bossevents/CustomBossEvent;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/commands/BossBarCommands/m_287835_ ()Lnet/minecraft/network/chat/Component; net/minecraft/server/commands/BossBarCommands/lambda$listBars$44 ()Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/commands/BossBarCommands/m_287836_ (Lnet/minecraft/server/bossevents/CustomBossEvent;)Lnet/minecraft/network/chat/Component; net/minecraft/server/commands/BossBarCommands/lambda$setStyle$40 (Lnet/minecraft/server/bossevents/CustomBossEvent;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/commands/BossBarCommands/m_287837_ (Lnet/minecraft/server/bossevents/CustomBossEvent;)Lnet/minecraft/network/chat/Component; net/minecraft/server/commands/BossBarCommands/lambda$setVisible$35 (Lnet/minecraft/server/bossevents/CustomBossEvent;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/commands/BossBarCommands/m_287838_ (Lnet/minecraft/server/bossevents/CustomBossEvent;)Lnet/minecraft/network/chat/Component; net/minecraft/server/commands/BossBarCommands/lambda$getMax$30 (Lnet/minecraft/server/bossevents/CustomBossEvent;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/commands/BossBarCommands/m_287839_ (Lnet/minecraft/server/bossevents/CustomBossEvent;)Lnet/minecraft/network/chat/Component; net/minecraft/server/commands/BossBarCommands/lambda$getPlayers$34 (Lnet/minecraft/server/bossevents/CustomBossEvent;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/commands/BossBarCommands/m_287840_ (Lnet/minecraft/server/bossevents/CustomBossEvent;I)Lnet/minecraft/network/chat/Component; net/minecraft/server/commands/BossBarCommands/lambda$setValue$37 (Lnet/minecraft/server/bossevents/CustomBossEvent;I)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/commands/BossBarCommands/m_287841_ (Lnet/minecraft/server/bossevents/CustomBossEvent;)Lnet/minecraft/network/chat/Component; net/minecraft/server/commands/BossBarCommands/lambda$getValue$29 (Lnet/minecraft/server/bossevents/CustomBossEvent;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/commands/BossBarCommands/m_287842_ (Lnet/minecraft/server/bossevents/CustomBossEvent;)Lnet/minecraft/network/chat/Component; net/minecraft/server/commands/BossBarCommands/lambda$getVisible$32 (Lnet/minecraft/server/bossevents/CustomBossEvent;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/commands/BossBarCommands/m_287843_ (Lnet/minecraft/server/bossevents/CustomBossEvent;I)Lnet/minecraft/network/chat/Component; net/minecraft/server/commands/BossBarCommands/lambda$setMax$38 (Lnet/minecraft/server/bossevents/CustomBossEvent;I)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/commands/BossBarCommands/m_287844_ (Lnet/minecraft/server/bossevents/CustomBossEvent;)Lnet/minecraft/network/chat/Component; net/minecraft/server/commands/BossBarCommands/lambda$setName$41 (Lnet/minecraft/server/bossevents/CustomBossEvent;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/commands/BossBarCommands/m_287845_ (Lnet/minecraft/server/bossevents/CustomBossEvent;)Lnet/minecraft/network/chat/Component; net/minecraft/server/commands/BossBarCommands/lambda$getPlayers$33 (Lnet/minecraft/server/bossevents/CustomBossEvent;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/commands/BossBarCommands/m_287846_ (Lnet/minecraft/server/bossevents/CustomBossEvent;)Lnet/minecraft/network/chat/Component; net/minecraft/server/commands/BossBarCommands/lambda$setPlayers$42 (Lnet/minecraft/server/bossevents/CustomBossEvent;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/commands/ChaseCommand/ ()V net/minecraft/server/commands/ChaseCommand/ ()V +MD: net/minecraft/server/commands/ChaseCommand/ ()V net/minecraft/server/commands/ChaseCommand/ ()V +MD: net/minecraft/server/commands/ChaseCommand/m_196077_ (Lcom/mojang/brigadier/CommandDispatcher;)V net/minecraft/server/commands/ChaseCommand/register (Lcom/mojang/brigadier/CommandDispatcher;)V +MD: net/minecraft/server/commands/ChaseCommand/m_196079_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/ChaseCommand/lambda$register$6 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/ChaseCommand/m_196081_ (Lnet/minecraft/commands/CommandSourceStack;)I net/minecraft/server/commands/ChaseCommand/stop (Lnet/minecraft/commands/CommandSourceStack;)I +MD: net/minecraft/server/commands/ChaseCommand/m_196083_ (Lnet/minecraft/commands/CommandSourceStack;Ljava/lang/String;I)I net/minecraft/server/commands/ChaseCommand/lead (Lnet/minecraft/commands/CommandSourceStack;Ljava/lang/String;I)I +MD: net/minecraft/server/commands/ChaseCommand/m_196087_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/ChaseCommand/lambda$register$5 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/ChaseCommand/m_196089_ (Lnet/minecraft/commands/CommandSourceStack;)Z net/minecraft/server/commands/ChaseCommand/alreadyRunning (Lnet/minecraft/commands/CommandSourceStack;)Z +MD: net/minecraft/server/commands/ChaseCommand/m_196091_ (Lnet/minecraft/commands/CommandSourceStack;Ljava/lang/String;I)I net/minecraft/server/commands/ChaseCommand/follow (Lnet/minecraft/commands/CommandSourceStack;Ljava/lang/String;I)I +MD: net/minecraft/server/commands/ChaseCommand/m_196095_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/ChaseCommand/lambda$register$4 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/ChaseCommand/m_196097_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/ChaseCommand/lambda$register$3 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/ChaseCommand/m_196099_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/ChaseCommand/lambda$register$2 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/ChaseCommand/m_196101_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/ChaseCommand/lambda$register$1 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/ChaseCommand/m_196103_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/ChaseCommand/lambda$register$0 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/ChaseCommand/m_287847_ ()Lnet/minecraft/network/chat/Component; net/minecraft/server/commands/ChaseCommand/lambda$stop$8 ()Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/commands/ChaseCommand/m_287848_ (I)Lnet/minecraft/network/chat/Component; net/minecraft/server/commands/ChaseCommand/lambda$lead$9 (I)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/commands/ChaseCommand/m_287849_ ()Lnet/minecraft/network/chat/Component; net/minecraft/server/commands/ChaseCommand/lambda$stop$7 ()Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/commands/ChaseCommand/m_287850_ (Ljava/lang/String;I)Lnet/minecraft/network/chat/Component; net/minecraft/server/commands/ChaseCommand/lambda$follow$10 (Ljava/lang/String;I)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/commands/ClearInventoryCommands/ ()V net/minecraft/server/commands/ClearInventoryCommands/ ()V +MD: net/minecraft/server/commands/ClearInventoryCommands/ ()V net/minecraft/server/commands/ClearInventoryCommands/ ()V +MD: net/minecraft/server/commands/ClearInventoryCommands/m_136701_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/ClearInventoryCommands/lambda$register$8 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/ClearInventoryCommands/m_136703_ (Lnet/minecraft/commands/CommandSourceStack;)Z net/minecraft/server/commands/ClearInventoryCommands/lambda$register$2 (Lnet/minecraft/commands/CommandSourceStack;)Z +MD: net/minecraft/server/commands/ClearInventoryCommands/m_136705_ (Lnet/minecraft/commands/CommandSourceStack;Ljava/util/Collection;Ljava/util/function/Predicate;I)I net/minecraft/server/commands/ClearInventoryCommands/clearInventory (Lnet/minecraft/commands/CommandSourceStack;Ljava/util/Collection;Ljava/util/function/Predicate;I)I +MD: net/minecraft/server/commands/ClearInventoryCommands/m_136710_ (Ljava/lang/Object;)Lcom/mojang/brigadier/Message; net/minecraft/server/commands/ClearInventoryCommands/lambda$static$1 (Ljava/lang/Object;)Lcom/mojang/brigadier/Message; +MD: net/minecraft/server/commands/ClearInventoryCommands/m_136714_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/ClearInventoryCommands/lambda$register$7 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/ClearInventoryCommands/m_136716_ (Ljava/lang/Object;)Lcom/mojang/brigadier/Message; net/minecraft/server/commands/ClearInventoryCommands/lambda$static$0 (Ljava/lang/Object;)Lcom/mojang/brigadier/Message; +MD: net/minecraft/server/commands/ClearInventoryCommands/m_136718_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/ClearInventoryCommands/lambda$register$6 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/ClearInventoryCommands/m_136720_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/ClearInventoryCommands/lambda$register$4 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/ClearInventoryCommands/m_180026_ (Lnet/minecraft/world/item/ItemStack;)Z net/minecraft/server/commands/ClearInventoryCommands/lambda$register$5 (Lnet/minecraft/world/item/ItemStack;)Z +MD: net/minecraft/server/commands/ClearInventoryCommands/m_180028_ (Lnet/minecraft/world/item/ItemStack;)Z net/minecraft/server/commands/ClearInventoryCommands/lambda$register$3 (Lnet/minecraft/world/item/ItemStack;)Z +MD: net/minecraft/server/commands/ClearInventoryCommands/m_214420_ (Lcom/mojang/brigadier/CommandDispatcher;Lnet/minecraft/commands/CommandBuildContext;)V net/minecraft/server/commands/ClearInventoryCommands/register (Lcom/mojang/brigadier/CommandDispatcher;Lnet/minecraft/commands/CommandBuildContext;)V +MD: net/minecraft/server/commands/ClearInventoryCommands/m_287852_ (ILjava/util/Collection;)Lnet/minecraft/network/chat/Component; net/minecraft/server/commands/ClearInventoryCommands/lambda$clearInventory$10 (ILjava/util/Collection;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/commands/ClearInventoryCommands/m_287854_ (ILjava/util/Collection;)Lnet/minecraft/network/chat/Component; net/minecraft/server/commands/ClearInventoryCommands/lambda$clearInventory$12 (ILjava/util/Collection;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/commands/ClearInventoryCommands/m_289060_ (ILjava/util/Collection;)Lnet/minecraft/network/chat/Component; net/minecraft/server/commands/ClearInventoryCommands/lambda$clearInventory$9 (ILjava/util/Collection;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/commands/ClearInventoryCommands/m_289061_ (ILjava/util/Collection;)Lnet/minecraft/network/chat/Component; net/minecraft/server/commands/ClearInventoryCommands/lambda$clearInventory$11 (ILjava/util/Collection;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/commands/CloneCommands/ ()V net/minecraft/server/commands/CloneCommands/ ()V +MD: net/minecraft/server/commands/CloneCommands/ ()V net/minecraft/server/commands/CloneCommands/ ()V +MD: net/minecraft/server/commands/CloneCommands/m_136733_ (Lnet/minecraft/commands/CommandSourceStack;)Z net/minecraft/server/commands/CloneCommands/lambda$register$2 (Lnet/minecraft/commands/CommandSourceStack;)Z +MD: net/minecraft/server/commands/CloneCommands/m_136742_ (Ljava/lang/Object;Ljava/lang/Object;)Lcom/mojang/brigadier/Message; net/minecraft/server/commands/CloneCommands/lambda$static$0 (Ljava/lang/Object;Ljava/lang/Object;)Lcom/mojang/brigadier/Message; +MD: net/minecraft/server/commands/CloneCommands/m_180032_ (Lnet/minecraft/world/level/block/state/pattern/BlockInWorld;)Z net/minecraft/server/commands/CloneCommands/lambda$destinationAndModeSuffix$10 (Lnet/minecraft/world/level/block/state/pattern/BlockInWorld;)Z +MD: net/minecraft/server/commands/CloneCommands/m_180038_ (Lnet/minecraft/world/level/block/state/pattern/BlockInWorld;)Z net/minecraft/server/commands/CloneCommands/lambda$destinationAndModeSuffix$14 (Lnet/minecraft/world/level/block/state/pattern/BlockInWorld;)Z +MD: net/minecraft/server/commands/CloneCommands/m_180040_ (Lnet/minecraft/world/level/block/state/pattern/BlockInWorld;)Z net/minecraft/server/commands/CloneCommands/lambda$destinationAndModeSuffix$12 (Lnet/minecraft/world/level/block/state/pattern/BlockInWorld;)Z +MD: net/minecraft/server/commands/CloneCommands/m_214423_ (Lcom/mojang/brigadier/CommandDispatcher;Lnet/minecraft/commands/CommandBuildContext;)V net/minecraft/server/commands/CloneCommands/register (Lcom/mojang/brigadier/CommandDispatcher;Lnet/minecraft/commands/CommandBuildContext;)V +MD: net/minecraft/server/commands/CloneCommands/m_263901_ (Lnet/minecraft/server/commands/CloneCommands$CommandFunction;Lnet/minecraft/server/commands/CloneCommands$CommandFunction;Lnet/minecraft/server/commands/CloneCommands$CommandFunction;Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/CloneCommands/lambda$destinationAndModeSuffix$19 (Lnet/minecraft/server/commands/CloneCommands$CommandFunction;Lnet/minecraft/server/commands/CloneCommands$CommandFunction;Lnet/minecraft/server/commands/CloneCommands$CommandFunction;Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/CloneCommands/m_263902_ (Lnet/minecraft/server/commands/CloneCommands$CommandFunction;Lcom/mojang/brigadier/context/CommandContext;)Lnet/minecraft/server/commands/CloneCommands$DimensionAndPosition; net/minecraft/server/commands/CloneCommands/lambda$destinationAndModeSuffix$8 (Lnet/minecraft/server/commands/CloneCommands$CommandFunction;Lcom/mojang/brigadier/context/CommandContext;)Lnet/minecraft/server/commands/CloneCommands$DimensionAndPosition; +MD: net/minecraft/server/commands/CloneCommands/m_263903_ (Lnet/minecraft/server/commands/CloneCommands$CommandFunction;Lcom/mojang/brigadier/context/CommandContext;)Lnet/minecraft/server/commands/CloneCommands$DimensionAndPosition; net/minecraft/server/commands/CloneCommands/lambda$destinationAndModeSuffix$7 (Lnet/minecraft/server/commands/CloneCommands$CommandFunction;Lcom/mojang/brigadier/context/CommandContext;)Lnet/minecraft/server/commands/CloneCommands$DimensionAndPosition; +MD: net/minecraft/server/commands/CloneCommands/m_263904_ (Lcom/mojang/brigadier/context/CommandContext;)Ljava/util/function/Predicate; net/minecraft/server/commands/CloneCommands/lambda$destinationAndModeSuffix$13 (Lcom/mojang/brigadier/context/CommandContext;)Ljava/util/function/Predicate; +MD: net/minecraft/server/commands/CloneCommands/m_263905_ (Lnet/minecraft/server/commands/CloneCommands$CommandFunction;Lnet/minecraft/server/commands/CloneCommands$CommandFunction;Lnet/minecraft/server/commands/CloneCommands$CommandFunction;Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/CloneCommands/lambda$destinationAndModeSuffix$17 (Lnet/minecraft/server/commands/CloneCommands$CommandFunction;Lnet/minecraft/server/commands/CloneCommands$CommandFunction;Lnet/minecraft/server/commands/CloneCommands$CommandFunction;Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/CloneCommands/m_263906_ (Lcom/mojang/brigadier/context/CommandContext;)Lnet/minecraft/server/level/ServerLevel; net/minecraft/server/commands/CloneCommands/lambda$register$4 (Lcom/mojang/brigadier/context/CommandContext;)Lnet/minecraft/server/level/ServerLevel; +MD: net/minecraft/server/commands/CloneCommands/m_263907_ (Lcom/mojang/brigadier/context/CommandContext;)Ljava/util/function/Predicate; net/minecraft/server/commands/CloneCommands/lambda$destinationAndModeSuffix$16 (Lcom/mojang/brigadier/context/CommandContext;)Ljava/util/function/Predicate; +MD: net/minecraft/server/commands/CloneCommands/m_263908_ (Lcom/mojang/brigadier/context/CommandContext;)Ljava/util/function/Predicate; net/minecraft/server/commands/CloneCommands/lambda$destinationAndModeSuffix$18 (Lcom/mojang/brigadier/context/CommandContext;)Ljava/util/function/Predicate; +MD: net/minecraft/server/commands/CloneCommands/m_263909_ (Lnet/minecraft/server/commands/CloneCommands$CommandFunction;Lnet/minecraft/server/commands/CloneCommands$CommandFunction;Lnet/minecraft/server/commands/CloneCommands$CommandFunction;Lnet/minecraft/server/commands/CloneCommands$CommandFunction;Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/CloneCommands/lambda$wrapWithCloneMode$22 (Lnet/minecraft/server/commands/CloneCommands$CommandFunction;Lnet/minecraft/server/commands/CloneCommands$CommandFunction;Lnet/minecraft/server/commands/CloneCommands$CommandFunction;Lnet/minecraft/server/commands/CloneCommands$CommandFunction;Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/CloneCommands/m_263910_ (Lcom/mojang/brigadier/context/CommandContext;)Lnet/minecraft/server/level/ServerLevel; net/minecraft/server/commands/CloneCommands/lambda$beginEndDestinationAndModeSuffix$5 (Lcom/mojang/brigadier/context/CommandContext;)Lnet/minecraft/server/level/ServerLevel; +MD: net/minecraft/server/commands/CloneCommands/m_263911_ (Lnet/minecraft/server/commands/CloneCommands$CommandFunction;Lnet/minecraft/server/commands/CloneCommands$CommandFunction;Lnet/minecraft/server/commands/CloneCommands$CommandFunction;Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/CloneCommands/lambda$destinationAndModeSuffix$15 (Lnet/minecraft/server/commands/CloneCommands$CommandFunction;Lnet/minecraft/server/commands/CloneCommands$CommandFunction;Lnet/minecraft/server/commands/CloneCommands$CommandFunction;Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/CloneCommands/m_263912_ (Lcom/mojang/brigadier/context/CommandContext;)Lnet/minecraft/server/level/ServerLevel; net/minecraft/server/commands/CloneCommands/lambda$beginEndDestinationAndModeSuffix$6 (Lcom/mojang/brigadier/context/CommandContext;)Lnet/minecraft/server/level/ServerLevel; +MD: net/minecraft/server/commands/CloneCommands/m_263913_ (Lcom/mojang/brigadier/context/CommandContext;)Lnet/minecraft/server/level/ServerLevel; net/minecraft/server/commands/CloneCommands/lambda$register$3 (Lcom/mojang/brigadier/context/CommandContext;)Lnet/minecraft/server/level/ServerLevel; +MD: net/minecraft/server/commands/CloneCommands/m_263914_ (Lnet/minecraft/server/commands/CloneCommands$CommandFunction;Lnet/minecraft/server/commands/CloneCommands$CommandFunction;Lnet/minecraft/server/commands/CloneCommands$CommandFunction;Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/CloneCommands/lambda$destinationAndModeSuffix$11 (Lnet/minecraft/server/commands/CloneCommands$CommandFunction;Lnet/minecraft/server/commands/CloneCommands$CommandFunction;Lnet/minecraft/server/commands/CloneCommands$CommandFunction;Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/CloneCommands/m_263915_ (Lnet/minecraft/server/commands/CloneCommands$CommandFunction;Lnet/minecraft/server/commands/CloneCommands$CommandFunction;Lnet/minecraft/server/commands/CloneCommands$CommandFunction;Lnet/minecraft/server/commands/CloneCommands$CommandFunction;Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/CloneCommands/lambda$wrapWithCloneMode$21 (Lnet/minecraft/server/commands/CloneCommands$CommandFunction;Lnet/minecraft/server/commands/CloneCommands$CommandFunction;Lnet/minecraft/server/commands/CloneCommands$CommandFunction;Lnet/minecraft/server/commands/CloneCommands$CommandFunction;Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/CloneCommands/m_263916_ (Lnet/minecraft/server/commands/CloneCommands$CommandFunction;Lcom/mojang/brigadier/context/CommandContext;)Lnet/minecraft/server/commands/CloneCommands$DimensionAndPosition; net/minecraft/server/commands/CloneCommands/lambda$destinationAndModeSuffix$9 (Lnet/minecraft/server/commands/CloneCommands$CommandFunction;Lcom/mojang/brigadier/context/CommandContext;)Lnet/minecraft/server/commands/CloneCommands$DimensionAndPosition; +MD: net/minecraft/server/commands/CloneCommands/m_263917_ (Lnet/minecraft/server/commands/CloneCommands$CommandFunction;Lnet/minecraft/server/commands/CloneCommands$CommandFunction;Lnet/minecraft/server/commands/CloneCommands$CommandFunction;Lnet/minecraft/server/commands/CloneCommands$CommandFunction;Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/CloneCommands/lambda$wrapWithCloneMode$20 (Lnet/minecraft/server/commands/CloneCommands$CommandFunction;Lnet/minecraft/server/commands/CloneCommands$CommandFunction;Lnet/minecraft/server/commands/CloneCommands$CommandFunction;Lnet/minecraft/server/commands/CloneCommands$CommandFunction;Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/CloneCommands/m_264087_ (Lnet/minecraft/commands/CommandSourceStack;Lnet/minecraft/server/commands/CloneCommands$DimensionAndPosition;Lnet/minecraft/server/commands/CloneCommands$DimensionAndPosition;Lnet/minecraft/server/commands/CloneCommands$DimensionAndPosition;Ljava/util/function/Predicate;Lnet/minecraft/server/commands/CloneCommands$Mode;)I net/minecraft/server/commands/CloneCommands/clone (Lnet/minecraft/commands/CommandSourceStack;Lnet/minecraft/server/commands/CloneCommands$DimensionAndPosition;Lnet/minecraft/server/commands/CloneCommands$DimensionAndPosition;Lnet/minecraft/server/commands/CloneCommands$DimensionAndPosition;Ljava/util/function/Predicate;Lnet/minecraft/server/commands/CloneCommands$Mode;)I +MD: net/minecraft/server/commands/CloneCommands/m_264123_ (Lnet/minecraft/server/commands/CloneCommands$CommandFunction;Lnet/minecraft/server/commands/CloneCommands$CommandFunction;Lnet/minecraft/server/commands/CloneCommands$CommandFunction;Lnet/minecraft/server/commands/CloneCommands$CommandFunction;Lcom/mojang/brigadier/builder/ArgumentBuilder;)Lcom/mojang/brigadier/builder/ArgumentBuilder; net/minecraft/server/commands/CloneCommands/wrapWithCloneMode (Lnet/minecraft/server/commands/CloneCommands$CommandFunction;Lnet/minecraft/server/commands/CloneCommands$CommandFunction;Lnet/minecraft/server/commands/CloneCommands$CommandFunction;Lnet/minecraft/server/commands/CloneCommands$CommandFunction;Lcom/mojang/brigadier/builder/ArgumentBuilder;)Lcom/mojang/brigadier/builder/ArgumentBuilder; +MD: net/minecraft/server/commands/CloneCommands/m_264459_ (Lnet/minecraft/commands/CommandBuildContext;Lnet/minecraft/server/commands/CloneCommands$CommandFunction;Lnet/minecraft/server/commands/CloneCommands$CommandFunction;)Lcom/mojang/brigadier/builder/ArgumentBuilder; net/minecraft/server/commands/CloneCommands/destinationAndModeSuffix (Lnet/minecraft/commands/CommandBuildContext;Lnet/minecraft/server/commands/CloneCommands$CommandFunction;Lnet/minecraft/server/commands/CloneCommands$CommandFunction;)Lcom/mojang/brigadier/builder/ArgumentBuilder; +MD: net/minecraft/server/commands/CloneCommands/m_264501_ (Lnet/minecraft/commands/CommandBuildContext;Lnet/minecraft/server/commands/CloneCommands$CommandFunction;)Lcom/mojang/brigadier/builder/ArgumentBuilder; net/minecraft/server/commands/CloneCommands/beginEndDestinationAndModeSuffix (Lnet/minecraft/commands/CommandBuildContext;Lnet/minecraft/server/commands/CloneCommands$CommandFunction;)Lcom/mojang/brigadier/builder/ArgumentBuilder; +MD: net/minecraft/server/commands/CloneCommands/m_264576_ (Lcom/mojang/brigadier/context/CommandContext;Lnet/minecraft/server/level/ServerLevel;Ljava/lang/String;)Lnet/minecraft/server/commands/CloneCommands$DimensionAndPosition; net/minecraft/server/commands/CloneCommands/getLoadedDimensionAndPosition (Lcom/mojang/brigadier/context/CommandContext;Lnet/minecraft/server/level/ServerLevel;Ljava/lang/String;)Lnet/minecraft/server/commands/CloneCommands$DimensionAndPosition; +MD: net/minecraft/server/commands/CloneCommands/m_283988_ (Lnet/minecraft/world/level/block/state/pattern/BlockInWorld;)Z net/minecraft/server/commands/CloneCommands/lambda$static$1 (Lnet/minecraft/world/level/block/state/pattern/BlockInWorld;)Z +MD: net/minecraft/server/commands/CloneCommands/m_287855_ (I)Lnet/minecraft/network/chat/Component; net/minecraft/server/commands/CloneCommands/lambda$clone$23 (I)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/commands/CloneCommands$CloneBlockInfo/ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/server/commands/CloneCommands$CloneBlockInfo/ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/server/commands/CloneCommands$CommandFunction/m_264253_ (Ljava/lang/Object;)Ljava/lang/Object; net/minecraft/server/commands/CloneCommands$CommandFunction/apply (Ljava/lang/Object;)Ljava/lang/Object; +MD: net/minecraft/server/commands/CloneCommands$DimensionAndPosition/ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;)V net/minecraft/server/commands/CloneCommands$DimensionAndPosition/ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/server/commands/CloneCommands$DimensionAndPosition/equals (Ljava/lang/Object;)Z net/minecraft/server/commands/CloneCommands$DimensionAndPosition/equals (Ljava/lang/Object;)Z +MD: net/minecraft/server/commands/CloneCommands$DimensionAndPosition/f_263735_ ()Lnet/minecraft/server/level/ServerLevel; net/minecraft/server/commands/CloneCommands$DimensionAndPosition/dimension ()Lnet/minecraft/server/level/ServerLevel; +MD: net/minecraft/server/commands/CloneCommands$DimensionAndPosition/f_263824_ ()Lnet/minecraft/core/BlockPos; net/minecraft/server/commands/CloneCommands$DimensionAndPosition/position ()Lnet/minecraft/core/BlockPos; +MD: net/minecraft/server/commands/CloneCommands$DimensionAndPosition/hashCode ()I net/minecraft/server/commands/CloneCommands$DimensionAndPosition/hashCode ()I +MD: net/minecraft/server/commands/CloneCommands$DimensionAndPosition/toString ()Ljava/lang/String; net/minecraft/server/commands/CloneCommands$DimensionAndPosition/toString ()Ljava/lang/String; +MD: net/minecraft/server/commands/CloneCommands$Mode/ ()V net/minecraft/server/commands/CloneCommands$Mode/ ()V +MD: net/minecraft/server/commands/CloneCommands$Mode/ (Ljava/lang/String;IZ)V net/minecraft/server/commands/CloneCommands$Mode/ (Ljava/lang/String;IZ)V +MD: net/minecraft/server/commands/CloneCommands$Mode/m_136796_ ()Z net/minecraft/server/commands/CloneCommands$Mode/canOverlap ()Z +MD: net/minecraft/server/commands/CloneCommands$Mode/m_180042_ ()[Lnet/minecraft/server/commands/CloneCommands$Mode; net/minecraft/server/commands/CloneCommands$Mode/$values ()[Lnet/minecraft/server/commands/CloneCommands$Mode; +MD: net/minecraft/server/commands/CloneCommands$Mode/valueOf (Ljava/lang/String;)Lnet/minecraft/server/commands/CloneCommands$Mode; net/minecraft/server/commands/CloneCommands$Mode/valueOf (Ljava/lang/String;)Lnet/minecraft/server/commands/CloneCommands$Mode; +MD: net/minecraft/server/commands/CloneCommands$Mode/values ()[Lnet/minecraft/server/commands/CloneCommands$Mode; net/minecraft/server/commands/CloneCommands$Mode/values ()[Lnet/minecraft/server/commands/CloneCommands$Mode; +MD: net/minecraft/server/commands/DamageCommand/ ()V net/minecraft/server/commands/DamageCommand/ ()V +MD: net/minecraft/server/commands/DamageCommand/ ()V net/minecraft/server/commands/DamageCommand/ ()V +MD: net/minecraft/server/commands/DamageCommand/m_269006_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/DamageCommand/lambda$register$4 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/DamageCommand/m_269051_ (Lnet/minecraft/commands/CommandSourceStack;)Z net/minecraft/server/commands/DamageCommand/lambda$register$0 (Lnet/minecraft/commands/CommandSourceStack;)Z +MD: net/minecraft/server/commands/DamageCommand/m_269127_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/DamageCommand/lambda$register$2 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/DamageCommand/m_269241_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/DamageCommand/lambda$register$3 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/DamageCommand/m_269331_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/DamageCommand/lambda$register$5 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/DamageCommand/m_269337_ (Lcom/mojang/brigadier/CommandDispatcher;Lnet/minecraft/commands/CommandBuildContext;)V net/minecraft/server/commands/DamageCommand/register (Lcom/mojang/brigadier/CommandDispatcher;Lnet/minecraft/commands/CommandBuildContext;)V +MD: net/minecraft/server/commands/DamageCommand/m_269485_ (Lnet/minecraft/commands/CommandSourceStack;Lnet/minecraft/world/entity/Entity;FLnet/minecraft/world/damagesource/DamageSource;)I net/minecraft/server/commands/DamageCommand/damage (Lnet/minecraft/commands/CommandSourceStack;Lnet/minecraft/world/entity/Entity;FLnet/minecraft/world/damagesource/DamageSource;)I +MD: net/minecraft/server/commands/DamageCommand/m_287856_ (FLnet/minecraft/world/entity/Entity;)Lnet/minecraft/network/chat/Component; net/minecraft/server/commands/DamageCommand/lambda$damage$6 (FLnet/minecraft/world/entity/Entity;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/commands/DamageCommand/m_287857_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/DamageCommand/lambda$register$1 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/DataPackCommand/ ()V net/minecraft/server/commands/DataPackCommand/ ()V +MD: net/minecraft/server/commands/DataPackCommand/ ()V net/minecraft/server/commands/DataPackCommand/ ()V +MD: net/minecraft/server/commands/DataPackCommand/m_136806_ (Lnet/minecraft/server/packs/repository/Pack;)Lnet/minecraft/network/chat/Component; net/minecraft/server/commands/DataPackCommand/lambda$listEnabledPacks$30 (Lnet/minecraft/server/packs/repository/Pack;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/commands/DataPackCommand/m_136808_ (Lcom/mojang/brigadier/CommandDispatcher;)V net/minecraft/server/commands/DataPackCommand/register (Lcom/mojang/brigadier/CommandDispatcher;)V +MD: net/minecraft/server/commands/DataPackCommand/m_136810_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/DataPackCommand/lambda$register$22 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/DataPackCommand/m_136815_ (Lcom/mojang/brigadier/context/CommandContext;Ljava/lang/String;Z)Lnet/minecraft/server/packs/repository/Pack; net/minecraft/server/commands/DataPackCommand/getPack (Lcom/mojang/brigadier/context/CommandContext;Ljava/lang/String;Z)Lnet/minecraft/server/packs/repository/Pack; +MD: net/minecraft/server/commands/DataPackCommand/m_136823_ (Lnet/minecraft/commands/CommandSourceStack;)I net/minecraft/server/commands/DataPackCommand/listPacks (Lnet/minecraft/commands/CommandSourceStack;)I +MD: net/minecraft/server/commands/DataPackCommand/m_136825_ (Lnet/minecraft/commands/CommandSourceStack;Lnet/minecraft/server/packs/repository/Pack;)I net/minecraft/server/commands/DataPackCommand/disablePack (Lnet/minecraft/commands/CommandSourceStack;Lnet/minecraft/server/packs/repository/Pack;)I +MD: net/minecraft/server/commands/DataPackCommand/m_136828_ (Lnet/minecraft/commands/CommandSourceStack;Lnet/minecraft/server/packs/repository/Pack;Lnet/minecraft/server/commands/DataPackCommand$Inserter;)I net/minecraft/server/commands/DataPackCommand/enablePack (Lnet/minecraft/commands/CommandSourceStack;Lnet/minecraft/server/packs/repository/Pack;Lnet/minecraft/server/commands/DataPackCommand$Inserter;)I +MD: net/minecraft/server/commands/DataPackCommand/m_136832_ (Ljava/lang/Object;)Lcom/mojang/brigadier/Message; net/minecraft/server/commands/DataPackCommand/lambda$static$2 (Ljava/lang/Object;)Lcom/mojang/brigadier/Message; +MD: net/minecraft/server/commands/DataPackCommand/m_136834_ (Ljava/util/Collection;Ljava/lang/String;)Z net/minecraft/server/commands/DataPackCommand/lambda$static$6 (Ljava/util/Collection;Ljava/lang/String;)Z +MD: net/minecraft/server/commands/DataPackCommand/m_136843_ (Lnet/minecraft/server/packs/repository/Pack;)Lnet/minecraft/network/chat/Component; net/minecraft/server/commands/DataPackCommand/lambda$listAvailablePacks$27 (Lnet/minecraft/server/packs/repository/Pack;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/commands/DataPackCommand/m_136845_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/DataPackCommand/lambda$register$21 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/DataPackCommand/m_136847_ (Lcom/mojang/brigadier/context/CommandContext;Lcom/mojang/brigadier/suggestion/SuggestionsBuilder;)Ljava/util/concurrent/CompletableFuture; net/minecraft/server/commands/DataPackCommand/lambda$static$4 (Lcom/mojang/brigadier/context/CommandContext;Lcom/mojang/brigadier/suggestion/SuggestionsBuilder;)Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/server/commands/DataPackCommand/m_136854_ (Lnet/minecraft/commands/CommandSourceStack;)I net/minecraft/server/commands/DataPackCommand/listAvailablePacks (Lnet/minecraft/commands/CommandSourceStack;)I +MD: net/minecraft/server/commands/DataPackCommand/m_136856_ (Ljava/lang/Object;)Lcom/mojang/brigadier/Message; net/minecraft/server/commands/DataPackCommand/lambda$static$1 (Ljava/lang/Object;)Lcom/mojang/brigadier/Message; +MD: net/minecraft/server/commands/DataPackCommand/m_136863_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/DataPackCommand/lambda$register$20 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/DataPackCommand/m_136865_ (Lnet/minecraft/commands/CommandSourceStack;)I net/minecraft/server/commands/DataPackCommand/listEnabledPacks (Lnet/minecraft/commands/CommandSourceStack;)I +MD: net/minecraft/server/commands/DataPackCommand/m_136867_ (Ljava/lang/Object;)Lcom/mojang/brigadier/Message; net/minecraft/server/commands/DataPackCommand/lambda$static$0 (Ljava/lang/Object;)Lcom/mojang/brigadier/Message; +MD: net/minecraft/server/commands/DataPackCommand/m_136869_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/DataPackCommand/lambda$register$19 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/DataPackCommand/m_136871_ (Lnet/minecraft/commands/CommandSourceStack;)Z net/minecraft/server/commands/DataPackCommand/lambda$register$8 (Lnet/minecraft/commands/CommandSourceStack;)Z +MD: net/minecraft/server/commands/DataPackCommand/m_136873_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/DataPackCommand/lambda$register$16 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/DataPackCommand/m_136875_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/DataPackCommand/lambda$register$11 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/DataPackCommand/m_136877_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/DataPackCommand/lambda$register$15 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/DataPackCommand/m_136879_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/DataPackCommand/lambda$register$13 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/DataPackCommand/m_136881_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/DataPackCommand/lambda$register$18 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/DataPackCommand/m_180044_ (Lcom/mojang/brigadier/context/CommandContext;Ljava/util/List;Lnet/minecraft/server/packs/repository/Pack;)V net/minecraft/server/commands/DataPackCommand/lambda$register$14 (Lcom/mojang/brigadier/context/CommandContext;Ljava/util/List;Lnet/minecraft/server/packs/repository/Pack;)V +MD: net/minecraft/server/commands/DataPackCommand/m_180051_ (Ljava/util/List;Lnet/minecraft/server/packs/repository/Pack;)V net/minecraft/server/commands/DataPackCommand/lambda$register$17 (Ljava/util/List;Lnet/minecraft/server/packs/repository/Pack;)V +MD: net/minecraft/server/commands/DataPackCommand/m_180054_ (Lcom/mojang/brigadier/context/CommandContext;Ljava/util/List;Lnet/minecraft/server/packs/repository/Pack;)V net/minecraft/server/commands/DataPackCommand/lambda$register$12 (Lcom/mojang/brigadier/context/CommandContext;Ljava/util/List;Lnet/minecraft/server/packs/repository/Pack;)V +MD: net/minecraft/server/commands/DataPackCommand/m_180058_ (Ljava/util/List;Lnet/minecraft/server/packs/repository/Pack;)V net/minecraft/server/commands/DataPackCommand/lambda$register$10 (Ljava/util/List;Lnet/minecraft/server/packs/repository/Pack;)V +MD: net/minecraft/server/commands/DataPackCommand/m_180061_ (Lnet/minecraft/server/packs/repository/Pack;)Lnet/minecraft/server/packs/repository/Pack; net/minecraft/server/commands/DataPackCommand/lambda$register$9 (Lnet/minecraft/server/packs/repository/Pack;)Lnet/minecraft/server/packs/repository/Pack; +MD: net/minecraft/server/commands/DataPackCommand/m_244821_ (Lcom/mojang/brigadier/context/CommandContext;Lcom/mojang/brigadier/suggestion/SuggestionsBuilder;)Ljava/util/concurrent/CompletableFuture; net/minecraft/server/commands/DataPackCommand/lambda$static$7 (Lcom/mojang/brigadier/context/CommandContext;Lcom/mojang/brigadier/suggestion/SuggestionsBuilder;)Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/server/commands/DataPackCommand/m_244822_ (Lnet/minecraft/world/flag/FeatureFlagSet;Lnet/minecraft/server/packs/repository/Pack;)Z net/minecraft/server/commands/DataPackCommand/lambda$static$5 (Lnet/minecraft/world/flag/FeatureFlagSet;Lnet/minecraft/server/packs/repository/Pack;)Z +MD: net/minecraft/server/commands/DataPackCommand/m_244823_ (Ljava/lang/Object;Ljava/lang/Object;)Lcom/mojang/brigadier/Message; net/minecraft/server/commands/DataPackCommand/lambda$static$3 (Ljava/lang/Object;Ljava/lang/Object;)Lcom/mojang/brigadier/Message; +MD: net/minecraft/server/commands/DataPackCommand/m_244824_ (Ljava/util/Collection;Lnet/minecraft/world/flag/FeatureFlagSet;Lnet/minecraft/server/packs/repository/Pack;)Z net/minecraft/server/commands/DataPackCommand/lambda$listAvailablePacks$25 (Ljava/util/Collection;Lnet/minecraft/world/flag/FeatureFlagSet;Lnet/minecraft/server/packs/repository/Pack;)Z +MD: net/minecraft/server/commands/DataPackCommand/m_287858_ (Ljava/util/List;)Lnet/minecraft/network/chat/Component; net/minecraft/server/commands/DataPackCommand/lambda$listAvailablePacks$28 (Ljava/util/List;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/commands/DataPackCommand/m_287859_ (Lnet/minecraft/server/packs/repository/Pack;)Lnet/minecraft/network/chat/Component; net/minecraft/server/commands/DataPackCommand/lambda$disablePack$24 (Lnet/minecraft/server/packs/repository/Pack;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/commands/DataPackCommand/m_287860_ ()Lnet/minecraft/network/chat/Component; net/minecraft/server/commands/DataPackCommand/lambda$listAvailablePacks$26 ()Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/commands/DataPackCommand/m_287861_ (Lnet/minecraft/server/packs/repository/Pack;)Lnet/minecraft/network/chat/Component; net/minecraft/server/commands/DataPackCommand/lambda$enablePack$23 (Lnet/minecraft/server/packs/repository/Pack;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/commands/DataPackCommand/m_287862_ ()Lnet/minecraft/network/chat/Component; net/minecraft/server/commands/DataPackCommand/lambda$listEnabledPacks$29 ()Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/commands/DataPackCommand/m_287863_ (Ljava/util/Collection;)Lnet/minecraft/network/chat/Component; net/minecraft/server/commands/DataPackCommand/lambda$listEnabledPacks$31 (Ljava/util/Collection;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/commands/DataPackCommand$Inserter/m_136883_ (Ljava/util/List;Lnet/minecraft/server/packs/repository/Pack;)V net/minecraft/server/commands/DataPackCommand$Inserter/apply (Ljava/util/List;Lnet/minecraft/server/packs/repository/Pack;)V +MD: net/minecraft/server/commands/DeOpCommands/ ()V net/minecraft/server/commands/DeOpCommands/ ()V +MD: net/minecraft/server/commands/DeOpCommands/ ()V net/minecraft/server/commands/DeOpCommands/ ()V +MD: net/minecraft/server/commands/DeOpCommands/m_136888_ (Lcom/mojang/brigadier/CommandDispatcher;)V net/minecraft/server/commands/DeOpCommands/register (Lcom/mojang/brigadier/CommandDispatcher;)V +MD: net/minecraft/server/commands/DeOpCommands/m_136890_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/DeOpCommands/lambda$register$2 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/DeOpCommands/m_136892_ (Lcom/mojang/brigadier/context/CommandContext;Lcom/mojang/brigadier/suggestion/SuggestionsBuilder;)Ljava/util/concurrent/CompletableFuture; net/minecraft/server/commands/DeOpCommands/lambda$register$1 (Lcom/mojang/brigadier/context/CommandContext;Lcom/mojang/brigadier/suggestion/SuggestionsBuilder;)Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/server/commands/DeOpCommands/m_136895_ (Lnet/minecraft/commands/CommandSourceStack;)Z net/minecraft/server/commands/DeOpCommands/lambda$register$0 (Lnet/minecraft/commands/CommandSourceStack;)Z +MD: net/minecraft/server/commands/DeOpCommands/m_136897_ (Lnet/minecraft/commands/CommandSourceStack;Ljava/util/Collection;)I net/minecraft/server/commands/DeOpCommands/deopPlayers (Lnet/minecraft/commands/CommandSourceStack;Ljava/util/Collection;)I +MD: net/minecraft/server/commands/DeOpCommands/m_287864_ (Ljava/util/Collection;)Lnet/minecraft/network/chat/Component; net/minecraft/server/commands/DeOpCommands/lambda$deopPlayers$3 (Ljava/util/Collection;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/commands/DebugCommand/ ()V net/minecraft/server/commands/DebugCommand/ ()V +MD: net/minecraft/server/commands/DebugCommand/ ()V net/minecraft/server/commands/DebugCommand/ ()V +MD: net/minecraft/server/commands/DebugCommand/m_136905_ (Lcom/mojang/brigadier/CommandDispatcher;)V net/minecraft/server/commands/DebugCommand/register (Lcom/mojang/brigadier/CommandDispatcher;)V +MD: net/minecraft/server/commands/DebugCommand/m_136907_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/DebugCommand/lambda$register$4 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/DebugCommand/m_136909_ (Lnet/minecraft/commands/CommandSourceStack;)I net/minecraft/server/commands/DebugCommand/start (Lnet/minecraft/commands/CommandSourceStack;)I +MD: net/minecraft/server/commands/DebugCommand/m_136915_ (Lnet/minecraft/commands/CommandSourceStack;)I net/minecraft/server/commands/DebugCommand/stop (Lnet/minecraft/commands/CommandSourceStack;)I +MD: net/minecraft/server/commands/DebugCommand/m_136917_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/DebugCommand/lambda$register$2 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/DebugCommand/m_180065_ (Lnet/minecraft/commands/CommandSourceStack;Ljava/util/Collection;)I net/minecraft/server/commands/DebugCommand/traceFunction (Lnet/minecraft/commands/CommandSourceStack;Ljava/util/Collection;)I +MD: net/minecraft/server/commands/DebugCommand/m_180068_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/DebugCommand/lambda$register$1 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/DebugCommand/m_180070_ (Lnet/minecraft/commands/CommandSourceStack;)Z net/minecraft/server/commands/DebugCommand/lambda$register$3 (Lnet/minecraft/commands/CommandSourceStack;)Z +MD: net/minecraft/server/commands/DebugCommand/m_180072_ (Lnet/minecraft/commands/CommandSourceStack;)Z net/minecraft/server/commands/DebugCommand/lambda$register$0 (Lnet/minecraft/commands/CommandSourceStack;)Z +MD: net/minecraft/server/commands/DebugCommand/m_287865_ (ILjava/util/Collection;Ljava/lang/String;)Lnet/minecraft/network/chat/Component; net/minecraft/server/commands/DebugCommand/lambda$traceFunction$8 (ILjava/util/Collection;Ljava/lang/String;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/commands/DebugCommand/m_287866_ ()Lnet/minecraft/network/chat/Component; net/minecraft/server/commands/DebugCommand/lambda$start$5 ()Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/commands/DebugCommand/m_287867_ (ILjava/util/Collection;Ljava/lang/String;)Lnet/minecraft/network/chat/Component; net/minecraft/server/commands/DebugCommand/lambda$traceFunction$7 (ILjava/util/Collection;Ljava/lang/String;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/commands/DebugCommand/m_287868_ (DLnet/minecraft/util/profiling/ProfileResults;D)Lnet/minecraft/network/chat/Component; net/minecraft/server/commands/DebugCommand/lambda$stop$6 (DLnet/minecraft/util/profiling/ProfileResults;D)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/commands/DebugCommand$Tracer/ (Ljava/io/PrintWriter;)V net/minecraft/server/commands/DebugCommand$Tracer/ (Ljava/io/PrintWriter;)V +MD: net/minecraft/server/commands/DebugCommand$Tracer/m_142147_ (ILnet/minecraft/resources/ResourceLocation;I)V net/minecraft/server/commands/DebugCommand$Tracer/onCall (ILnet/minecraft/resources/ResourceLocation;I)V +MD: net/minecraft/server/commands/DebugCommand$Tracer/m_142255_ (ILjava/lang/String;)V net/minecraft/server/commands/DebugCommand$Tracer/onError (ILjava/lang/String;)V +MD: net/minecraft/server/commands/DebugCommand$Tracer/m_142256_ (ILjava/lang/String;)V net/minecraft/server/commands/DebugCommand$Tracer/onCommand (ILjava/lang/String;)V +MD: net/minecraft/server/commands/DebugCommand$Tracer/m_142279_ (ILjava/lang/String;I)V net/minecraft/server/commands/DebugCommand$Tracer/onReturn (ILjava/lang/String;I)V +MD: net/minecraft/server/commands/DebugCommand$Tracer/m_142559_ ()Z net/minecraft/server/commands/DebugCommand$Tracer/alwaysAccepts ()Z +MD: net/minecraft/server/commands/DebugCommand$Tracer/m_180081_ (I)V net/minecraft/server/commands/DebugCommand$Tracer/indentAndSave (I)V +MD: net/minecraft/server/commands/DebugCommand$Tracer/m_180097_ (I)V net/minecraft/server/commands/DebugCommand$Tracer/printIndent (I)V +MD: net/minecraft/server/commands/DebugCommand$Tracer/m_180103_ ()V net/minecraft/server/commands/DebugCommand$Tracer/newLine ()V +MD: net/minecraft/server/commands/DebugCommand$Tracer/m_213846_ (Lnet/minecraft/network/chat/Component;)V net/minecraft/server/commands/DebugCommand$Tracer/sendSystemMessage (Lnet/minecraft/network/chat/Component;)V +MD: net/minecraft/server/commands/DebugCommand$Tracer/m_6102_ ()Z net/minecraft/server/commands/DebugCommand$Tracer/shouldInformAdmins ()Z +MD: net/minecraft/server/commands/DebugCommand$Tracer/m_6999_ ()Z net/minecraft/server/commands/DebugCommand$Tracer/acceptsSuccess ()Z +MD: net/minecraft/server/commands/DebugCommand$Tracer/m_7028_ ()Z net/minecraft/server/commands/DebugCommand$Tracer/acceptsFailure ()Z +MD: net/minecraft/server/commands/DebugMobSpawningCommand/ ()V net/minecraft/server/commands/DebugMobSpawningCommand/ ()V +MD: net/minecraft/server/commands/DebugMobSpawningCommand/m_180107_ (Lnet/minecraft/world/entity/MobCategory;Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/DebugMobSpawningCommand/lambda$register$1 (Lnet/minecraft/world/entity/MobCategory;Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/DebugMobSpawningCommand/m_180110_ (Lcom/mojang/brigadier/CommandDispatcher;)V net/minecraft/server/commands/DebugMobSpawningCommand/register (Lcom/mojang/brigadier/CommandDispatcher;)V +MD: net/minecraft/server/commands/DebugMobSpawningCommand/m_180112_ (Lnet/minecraft/commands/CommandSourceStack;)Z net/minecraft/server/commands/DebugMobSpawningCommand/lambda$register$0 (Lnet/minecraft/commands/CommandSourceStack;)Z +MD: net/minecraft/server/commands/DebugMobSpawningCommand/m_180114_ (Lnet/minecraft/commands/CommandSourceStack;Lnet/minecraft/world/entity/MobCategory;Lnet/minecraft/core/BlockPos;)I net/minecraft/server/commands/DebugMobSpawningCommand/spawnMobs (Lnet/minecraft/commands/CommandSourceStack;Lnet/minecraft/world/entity/MobCategory;Lnet/minecraft/core/BlockPos;)I +MD: net/minecraft/server/commands/DebugPathCommand/ ()V net/minecraft/server/commands/DebugPathCommand/ ()V +MD: net/minecraft/server/commands/DebugPathCommand/ ()V net/minecraft/server/commands/DebugPathCommand/ ()V +MD: net/minecraft/server/commands/DebugPathCommand/m_180123_ (Lcom/mojang/brigadier/CommandDispatcher;)V net/minecraft/server/commands/DebugPathCommand/register (Lcom/mojang/brigadier/CommandDispatcher;)V +MD: net/minecraft/server/commands/DebugPathCommand/m_180125_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/DebugPathCommand/lambda$register$1 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/DebugPathCommand/m_180127_ (Lnet/minecraft/commands/CommandSourceStack;)Z net/minecraft/server/commands/DebugPathCommand/lambda$register$0 (Lnet/minecraft/commands/CommandSourceStack;)Z +MD: net/minecraft/server/commands/DebugPathCommand/m_180129_ (Lnet/minecraft/commands/CommandSourceStack;Lnet/minecraft/core/BlockPos;)I net/minecraft/server/commands/DebugPathCommand/fillBlocks (Lnet/minecraft/commands/CommandSourceStack;Lnet/minecraft/core/BlockPos;)I +MD: net/minecraft/server/commands/DebugPathCommand/m_287869_ ()Lnet/minecraft/network/chat/Component; net/minecraft/server/commands/DebugPathCommand/lambda$fillBlocks$2 ()Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/commands/DefaultGameModeCommands/ ()V net/minecraft/server/commands/DefaultGameModeCommands/ ()V +MD: net/minecraft/server/commands/DefaultGameModeCommands/m_136926_ (Lcom/mojang/brigadier/CommandDispatcher;)V net/minecraft/server/commands/DefaultGameModeCommands/register (Lcom/mojang/brigadier/CommandDispatcher;)V +MD: net/minecraft/server/commands/DefaultGameModeCommands/m_136928_ (Lnet/minecraft/commands/CommandSourceStack;)Z net/minecraft/server/commands/DefaultGameModeCommands/lambda$register$0 (Lnet/minecraft/commands/CommandSourceStack;)Z +MD: net/minecraft/server/commands/DefaultGameModeCommands/m_136930_ (Lnet/minecraft/commands/CommandSourceStack;Lnet/minecraft/world/level/GameType;)I net/minecraft/server/commands/DefaultGameModeCommands/setMode (Lnet/minecraft/commands/CommandSourceStack;Lnet/minecraft/world/level/GameType;)I +MD: net/minecraft/server/commands/DefaultGameModeCommands/m_257135_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/DefaultGameModeCommands/lambda$register$1 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/DefaultGameModeCommands/m_287870_ (Lnet/minecraft/world/level/GameType;)Lnet/minecraft/network/chat/Component; net/minecraft/server/commands/DefaultGameModeCommands/lambda$setMode$2 (Lnet/minecraft/world/level/GameType;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/commands/DifficultyCommand/ ()V net/minecraft/server/commands/DifficultyCommand/ ()V +MD: net/minecraft/server/commands/DifficultyCommand/ ()V net/minecraft/server/commands/DifficultyCommand/ ()V +MD: net/minecraft/server/commands/DifficultyCommand/m_136935_ (Lnet/minecraft/world/Difficulty;Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/DifficultyCommand/lambda$register$1 (Lnet/minecraft/world/Difficulty;Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/DifficultyCommand/m_136938_ (Lcom/mojang/brigadier/CommandDispatcher;)V net/minecraft/server/commands/DifficultyCommand/register (Lcom/mojang/brigadier/CommandDispatcher;)V +MD: net/minecraft/server/commands/DifficultyCommand/m_136942_ (Lnet/minecraft/commands/CommandSourceStack;)Z net/minecraft/server/commands/DifficultyCommand/lambda$register$2 (Lnet/minecraft/commands/CommandSourceStack;)Z +MD: net/minecraft/server/commands/DifficultyCommand/m_136944_ (Lnet/minecraft/commands/CommandSourceStack;Lnet/minecraft/world/Difficulty;)I net/minecraft/server/commands/DifficultyCommand/setDifficulty (Lnet/minecraft/commands/CommandSourceStack;Lnet/minecraft/world/Difficulty;)I +MD: net/minecraft/server/commands/DifficultyCommand/m_136947_ (Ljava/lang/Object;)Lcom/mojang/brigadier/Message; net/minecraft/server/commands/DifficultyCommand/lambda$static$0 (Ljava/lang/Object;)Lcom/mojang/brigadier/Message; +MD: net/minecraft/server/commands/DifficultyCommand/m_287871_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/DifficultyCommand/lambda$register$4 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/DifficultyCommand/m_287872_ (Lnet/minecraft/world/Difficulty;)Lnet/minecraft/network/chat/Component; net/minecraft/server/commands/DifficultyCommand/lambda$register$3 (Lnet/minecraft/world/Difficulty;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/commands/DifficultyCommand/m_287873_ (Lnet/minecraft/world/Difficulty;)Lnet/minecraft/network/chat/Component; net/minecraft/server/commands/DifficultyCommand/lambda$setDifficulty$5 (Lnet/minecraft/world/Difficulty;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/commands/EffectCommands/ ()V net/minecraft/server/commands/EffectCommands/ ()V +MD: net/minecraft/server/commands/EffectCommands/ ()V net/minecraft/server/commands/EffectCommands/ ()V +MD: net/minecraft/server/commands/EffectCommands/m_136953_ (Lcom/mojang/brigadier/CommandDispatcher;Lnet/minecraft/commands/CommandBuildContext;)V net/minecraft/server/commands/EffectCommands/register (Lcom/mojang/brigadier/CommandDispatcher;Lnet/minecraft/commands/CommandBuildContext;)V +MD: net/minecraft/server/commands/EffectCommands/m_136957_ (Lnet/minecraft/commands/CommandSourceStack;)Z net/minecraft/server/commands/EffectCommands/lambda$register$0 (Lnet/minecraft/commands/CommandSourceStack;)Z +MD: net/minecraft/server/commands/EffectCommands/m_136959_ (Lnet/minecraft/commands/CommandSourceStack;Ljava/util/Collection;)I net/minecraft/server/commands/EffectCommands/clearEffects (Lnet/minecraft/commands/CommandSourceStack;Ljava/util/Collection;)I +MD: net/minecraft/server/commands/EffectCommands/m_136981_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/EffectCommands/lambda$register$2 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/EffectCommands/m_136983_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/EffectCommands/lambda$register$1 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/EffectCommands/m_244826_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/EffectCommands/lambda$register$6 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/EffectCommands/m_244827_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/EffectCommands/lambda$register$5 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/EffectCommands/m_244828_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/EffectCommands/lambda$register$7 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/EffectCommands/m_244829_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/EffectCommands/lambda$register$3 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/EffectCommands/m_244830_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/EffectCommands/lambda$register$4 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/EffectCommands/m_246113_ (Lnet/minecraft/commands/CommandSourceStack;Ljava/util/Collection;Lnet/minecraft/core/Holder;)I net/minecraft/server/commands/EffectCommands/clearEffect (Lnet/minecraft/commands/CommandSourceStack;Ljava/util/Collection;Lnet/minecraft/core/Holder;)I +MD: net/minecraft/server/commands/EffectCommands/m_247240_ (Lnet/minecraft/commands/CommandSourceStack;Ljava/util/Collection;Lnet/minecraft/core/Holder;Ljava/lang/Integer;IZ)I net/minecraft/server/commands/EffectCommands/giveEffect (Lnet/minecraft/commands/CommandSourceStack;Ljava/util/Collection;Lnet/minecraft/core/Holder;Ljava/lang/Integer;IZ)I +MD: net/minecraft/server/commands/EffectCommands/m_267546_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/EffectCommands/lambda$register$8 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/EffectCommands/m_267547_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/EffectCommands/lambda$register$9 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/EffectCommands/m_267548_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/EffectCommands/lambda$register$10 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/EffectCommands/m_287874_ (Lnet/minecraft/world/effect/MobEffect;Ljava/util/Collection;I)Lnet/minecraft/network/chat/Component; net/minecraft/server/commands/EffectCommands/lambda$giveEffect$12 (Lnet/minecraft/world/effect/MobEffect;Ljava/util/Collection;I)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/commands/EffectCommands/m_287875_ (Ljava/util/Collection;)Lnet/minecraft/network/chat/Component; net/minecraft/server/commands/EffectCommands/lambda$clearEffects$14 (Ljava/util/Collection;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/commands/EffectCommands/m_287876_ (Lnet/minecraft/world/effect/MobEffect;Ljava/util/Collection;I)Lnet/minecraft/network/chat/Component; net/minecraft/server/commands/EffectCommands/lambda$giveEffect$11 (Lnet/minecraft/world/effect/MobEffect;Ljava/util/Collection;I)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/commands/EffectCommands/m_287877_ (Lnet/minecraft/world/effect/MobEffect;Ljava/util/Collection;)Lnet/minecraft/network/chat/Component; net/minecraft/server/commands/EffectCommands/lambda$clearEffect$15 (Lnet/minecraft/world/effect/MobEffect;Ljava/util/Collection;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/commands/EffectCommands/m_287878_ (Ljava/util/Collection;)Lnet/minecraft/network/chat/Component; net/minecraft/server/commands/EffectCommands/lambda$clearEffects$13 (Ljava/util/Collection;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/commands/EffectCommands/m_287879_ (Lnet/minecraft/world/effect/MobEffect;Ljava/util/Collection;)Lnet/minecraft/network/chat/Component; net/minecraft/server/commands/EffectCommands/lambda$clearEffect$16 (Lnet/minecraft/world/effect/MobEffect;Ljava/util/Collection;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/commands/EmoteCommands/ ()V net/minecraft/server/commands/EmoteCommands/ ()V +MD: net/minecraft/server/commands/EmoteCommands/m_136985_ (Lcom/mojang/brigadier/CommandDispatcher;)V net/minecraft/server/commands/EmoteCommands/register (Lcom/mojang/brigadier/CommandDispatcher;)V +MD: net/minecraft/server/commands/EmoteCommands/m_244831_ (Lcom/mojang/brigadier/context/CommandContext;Lnet/minecraft/network/chat/PlayerChatMessage;)V net/minecraft/server/commands/EmoteCommands/lambda$register$0 (Lcom/mojang/brigadier/context/CommandContext;Lnet/minecraft/network/chat/PlayerChatMessage;)V +MD: net/minecraft/server/commands/EmoteCommands/m_244832_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/EmoteCommands/lambda$register$1 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/EnchantCommand/ ()V net/minecraft/server/commands/EnchantCommand/ ()V +MD: net/minecraft/server/commands/EnchantCommand/ ()V net/minecraft/server/commands/EnchantCommand/ ()V +MD: net/minecraft/server/commands/EnchantCommand/m_137012_ (Lnet/minecraft/commands/CommandSourceStack;)Z net/minecraft/server/commands/EnchantCommand/lambda$register$4 (Lnet/minecraft/commands/CommandSourceStack;)Z +MD: net/minecraft/server/commands/EnchantCommand/m_137019_ (Ljava/lang/Object;)Lcom/mojang/brigadier/Message; net/minecraft/server/commands/EnchantCommand/lambda$static$2 (Ljava/lang/Object;)Lcom/mojang/brigadier/Message; +MD: net/minecraft/server/commands/EnchantCommand/m_137021_ (Ljava/lang/Object;Ljava/lang/Object;)Lcom/mojang/brigadier/Message; net/minecraft/server/commands/EnchantCommand/lambda$static$3 (Ljava/lang/Object;Ljava/lang/Object;)Lcom/mojang/brigadier/Message; +MD: net/minecraft/server/commands/EnchantCommand/m_137026_ (Ljava/lang/Object;)Lcom/mojang/brigadier/Message; net/minecraft/server/commands/EnchantCommand/lambda$static$1 (Ljava/lang/Object;)Lcom/mojang/brigadier/Message; +MD: net/minecraft/server/commands/EnchantCommand/m_137028_ (Ljava/lang/Object;)Lcom/mojang/brigadier/Message; net/minecraft/server/commands/EnchantCommand/lambda$static$0 (Ljava/lang/Object;)Lcom/mojang/brigadier/Message; +MD: net/minecraft/server/commands/EnchantCommand/m_244833_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/EnchantCommand/lambda$register$5 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/EnchantCommand/m_244834_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/EnchantCommand/lambda$register$6 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/EnchantCommand/m_245923_ (Lcom/mojang/brigadier/CommandDispatcher;Lnet/minecraft/commands/CommandBuildContext;)V net/minecraft/server/commands/EnchantCommand/register (Lcom/mojang/brigadier/CommandDispatcher;Lnet/minecraft/commands/CommandBuildContext;)V +MD: net/minecraft/server/commands/EnchantCommand/m_246270_ (Lnet/minecraft/commands/CommandSourceStack;Ljava/util/Collection;Lnet/minecraft/core/Holder;I)I net/minecraft/server/commands/EnchantCommand/enchant (Lnet/minecraft/commands/CommandSourceStack;Ljava/util/Collection;Lnet/minecraft/core/Holder;I)I +MD: net/minecraft/server/commands/EnchantCommand/m_287880_ (Lnet/minecraft/world/item/enchantment/Enchantment;ILjava/util/Collection;)Lnet/minecraft/network/chat/Component; net/minecraft/server/commands/EnchantCommand/lambda$enchant$8 (Lnet/minecraft/world/item/enchantment/Enchantment;ILjava/util/Collection;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/commands/EnchantCommand/m_287881_ (Lnet/minecraft/world/item/enchantment/Enchantment;ILjava/util/Collection;)Lnet/minecraft/network/chat/Component; net/minecraft/server/commands/EnchantCommand/lambda$enchant$7 (Lnet/minecraft/world/item/enchantment/Enchantment;ILjava/util/Collection;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/commands/ExecuteCommand/ ()V net/minecraft/server/commands/ExecuteCommand/ ()V +MD: net/minecraft/server/commands/ExecuteCommand/ ()V net/minecraft/server/commands/ExecuteCommand/ ()V +MD: net/minecraft/server/commands/ExecuteCommand/m_137036_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;Z)Ljava/util/OptionalInt; net/minecraft/server/commands/ExecuteCommand/checkRegions (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;Z)Ljava/util/OptionalInt; +MD: net/minecraft/server/commands/ExecuteCommand/m_137044_ (Lcom/mojang/brigadier/ResultConsumer;Lcom/mojang/brigadier/ResultConsumer;)Lcom/mojang/brigadier/ResultConsumer; net/minecraft/server/commands/ExecuteCommand/lambda$static$3 (Lcom/mojang/brigadier/ResultConsumer;Lcom/mojang/brigadier/ResultConsumer;)Lcom/mojang/brigadier/ResultConsumer; +MD: net/minecraft/server/commands/ExecuteCommand/m_137053_ (Lcom/mojang/brigadier/context/CommandContext;)Z net/minecraft/server/commands/ExecuteCommand/lambda$addConditionals$55 (Lcom/mojang/brigadier/context/CommandContext;)Z +MD: net/minecraft/server/commands/ExecuteCommand/m_137058_ (Lcom/mojang/brigadier/context/CommandContext;Lnet/minecraft/advancements/critereon/MinMaxBounds$Ints;)Z net/minecraft/server/commands/ExecuteCommand/checkScore (Lcom/mojang/brigadier/context/CommandContext;Lnet/minecraft/advancements/critereon/MinMaxBounds$Ints;)Z +MD: net/minecraft/server/commands/ExecuteCommand/m_137064_ (Lcom/mojang/brigadier/context/CommandContext;Ljava/util/function/BiPredicate;)Z net/minecraft/server/commands/ExecuteCommand/checkScore (Lcom/mojang/brigadier/context/CommandContext;Ljava/util/function/BiPredicate;)Z +MD: net/minecraft/server/commands/ExecuteCommand/m_137067_ (Lcom/mojang/brigadier/context/CommandContext;Z)I net/minecraft/server/commands/ExecuteCommand/checkIfRegions (Lcom/mojang/brigadier/context/CommandContext;Z)I +MD: net/minecraft/server/commands/ExecuteCommand/m_137070_ (Lcom/mojang/brigadier/context/CommandContext;ZZ)Ljava/util/Collection; net/minecraft/server/commands/ExecuteCommand/expect (Lcom/mojang/brigadier/context/CommandContext;ZZ)Ljava/util/Collection; +MD: net/minecraft/server/commands/ExecuteCommand/m_137074_ (Lcom/mojang/brigadier/tree/CommandNode;Lcom/mojang/brigadier/builder/ArgumentBuilder;ZLnet/minecraft/server/commands/ExecuteCommand$CommandPredicate;)Lcom/mojang/brigadier/builder/ArgumentBuilder; net/minecraft/server/commands/ExecuteCommand/addConditional (Lcom/mojang/brigadier/tree/CommandNode;Lcom/mojang/brigadier/builder/ArgumentBuilder;ZLnet/minecraft/server/commands/ExecuteCommand$CommandPredicate;)Lcom/mojang/brigadier/builder/ArgumentBuilder; +MD: net/minecraft/server/commands/ExecuteCommand/m_137079_ (Lcom/mojang/brigadier/tree/CommandNode;Lcom/mojang/brigadier/builder/ArgumentBuilder;ZZ)Lcom/mojang/brigadier/builder/ArgumentBuilder; net/minecraft/server/commands/ExecuteCommand/addIfBlocksConditional (Lcom/mojang/brigadier/tree/CommandNode;Lcom/mojang/brigadier/builder/ArgumentBuilder;ZZ)Lcom/mojang/brigadier/builder/ArgumentBuilder; +MD: net/minecraft/server/commands/ExecuteCommand/m_137088_ (Lcom/mojang/brigadier/tree/CommandNode;ZLnet/minecraft/server/commands/data/DataCommands$DataProvider;Lcom/mojang/brigadier/builder/ArgumentBuilder;)Lcom/mojang/brigadier/builder/ArgumentBuilder; net/minecraft/server/commands/ExecuteCommand/lambda$addConditionals$58 (Lcom/mojang/brigadier/tree/CommandNode;ZLnet/minecraft/server/commands/data/DataCommands$DataProvider;Lcom/mojang/brigadier/builder/ArgumentBuilder;)Lcom/mojang/brigadier/builder/ArgumentBuilder; +MD: net/minecraft/server/commands/ExecuteCommand/m_137093_ (Lcom/mojang/brigadier/tree/LiteralCommandNode;Lcom/mojang/brigadier/builder/LiteralArgumentBuilder;Z)Lcom/mojang/brigadier/builder/ArgumentBuilder; net/minecraft/server/commands/ExecuteCommand/wrapStores (Lcom/mojang/brigadier/tree/LiteralCommandNode;Lcom/mojang/brigadier/builder/LiteralArgumentBuilder;Z)Lcom/mojang/brigadier/builder/ArgumentBuilder; +MD: net/minecraft/server/commands/ExecuteCommand/m_137097_ (Lcom/mojang/brigadier/tree/LiteralCommandNode;Lnet/minecraft/server/commands/data/DataCommands$DataProvider;ZLcom/mojang/brigadier/builder/ArgumentBuilder;)Lcom/mojang/brigadier/builder/ArgumentBuilder; net/minecraft/server/commands/ExecuteCommand/lambda$wrapStores$35 (Lcom/mojang/brigadier/tree/LiteralCommandNode;Lnet/minecraft/server/commands/data/DataCommands$DataProvider;ZLcom/mojang/brigadier/builder/ArgumentBuilder;)Lcom/mojang/brigadier/builder/ArgumentBuilder; +MD: net/minecraft/server/commands/ExecuteCommand/m_137102_ (Lnet/minecraft/commands/CommandSourceStack;)Z net/minecraft/server/commands/ExecuteCommand/lambda$register$6 (Lnet/minecraft/commands/CommandSourceStack;)Z +MD: net/minecraft/server/commands/ExecuteCommand/m_137104_ (Lnet/minecraft/commands/CommandSourceStack;Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;)Z net/minecraft/server/commands/ExecuteCommand/checkCustomPredicate (Lnet/minecraft/commands/CommandSourceStack;Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;)Z +MD: net/minecraft/server/commands/ExecuteCommand/m_137107_ (Lnet/minecraft/commands/CommandSourceStack;Ljava/util/Collection;Lnet/minecraft/world/scores/Objective;Z)Lnet/minecraft/commands/CommandSourceStack; net/minecraft/server/commands/ExecuteCommand/storeValue (Lnet/minecraft/commands/CommandSourceStack;Ljava/util/Collection;Lnet/minecraft/world/scores/Objective;Z)Lnet/minecraft/commands/CommandSourceStack; +MD: net/minecraft/server/commands/ExecuteCommand/m_137112_ (Lnet/minecraft/commands/CommandSourceStack;Lnet/minecraft/server/bossevents/CustomBossEvent;ZZ)Lnet/minecraft/commands/CommandSourceStack; net/minecraft/server/commands/ExecuteCommand/storeValue (Lnet/minecraft/commands/CommandSourceStack;Lnet/minecraft/server/bossevents/CustomBossEvent;ZZ)Lnet/minecraft/commands/CommandSourceStack; +MD: net/minecraft/server/commands/ExecuteCommand/m_137117_ (Lnet/minecraft/commands/CommandSourceStack;Lnet/minecraft/server/commands/data/DataAccessor;Lnet/minecraft/commands/arguments/NbtPathArgument$NbtPath;Ljava/util/function/IntFunction;Z)Lnet/minecraft/commands/CommandSourceStack; net/minecraft/server/commands/ExecuteCommand/storeData (Lnet/minecraft/commands/CommandSourceStack;Lnet/minecraft/server/commands/data/DataAccessor;Lnet/minecraft/commands/arguments/NbtPathArgument$NbtPath;Ljava/util/function/IntFunction;Z)Lnet/minecraft/commands/CommandSourceStack; +MD: net/minecraft/server/commands/ExecuteCommand/m_137126_ (Ljava/lang/Object;)Lcom/mojang/brigadier/Message; net/minecraft/server/commands/ExecuteCommand/lambda$static$1 (Ljava/lang/Object;)Lcom/mojang/brigadier/Message; +MD: net/minecraft/server/commands/ExecuteCommand/m_137128_ (Ljava/lang/Object;Ljava/lang/Object;)Lcom/mojang/brigadier/Message; net/minecraft/server/commands/ExecuteCommand/lambda$static$0 (Ljava/lang/Object;Ljava/lang/Object;)Lcom/mojang/brigadier/Message; +MD: net/minecraft/server/commands/ExecuteCommand/m_137131_ (Ljava/util/Collection;Lnet/minecraft/world/scores/Scoreboard;Lnet/minecraft/world/scores/Objective;ZLcom/mojang/brigadier/context/CommandContext;ZI)V net/minecraft/server/commands/ExecuteCommand/lambda$storeValue$36 (Ljava/util/Collection;Lnet/minecraft/world/scores/Scoreboard;Lnet/minecraft/world/scores/Objective;ZLcom/mojang/brigadier/context/CommandContext;ZI)V +MD: net/minecraft/server/commands/ExecuteCommand/m_137145_ (Lnet/minecraft/server/commands/data/DataAccessor;Lnet/minecraft/commands/arguments/NbtPathArgument$NbtPath;)I net/minecraft/server/commands/ExecuteCommand/checkMatchingData (Lnet/minecraft/server/commands/data/DataAccessor;Lnet/minecraft/commands/arguments/NbtPathArgument$NbtPath;)I +MD: net/minecraft/server/commands/ExecuteCommand/m_137163_ (ZLcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/ExecuteCommand/lambda$addIfBlocksConditional$68 (ZLcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/ExecuteCommand/m_137166_ (ZLnet/minecraft/server/commands/ExecuteCommand$CommandNumericPredicate;)Lcom/mojang/brigadier/Command; net/minecraft/server/commands/ExecuteCommand/createNumericConditionalHandler (ZLnet/minecraft/server/commands/ExecuteCommand$CommandNumericPredicate;)Lcom/mojang/brigadier/Command; +MD: net/minecraft/server/commands/ExecuteCommand/m_137177_ (ZZLcom/mojang/brigadier/context/CommandContext;)Ljava/util/Collection; net/minecraft/server/commands/ExecuteCommand/lambda$addIfBlocksConditional$66 (ZZLcom/mojang/brigadier/context/CommandContext;)Ljava/util/Collection; +MD: net/minecraft/server/commands/ExecuteCommand/m_137181_ (ZZLnet/minecraft/server/bossevents/CustomBossEvent;Lcom/mojang/brigadier/context/CommandContext;ZI)V net/minecraft/server/commands/ExecuteCommand/lambda$storeValue$37 (ZZLnet/minecraft/server/bossevents/CustomBossEvent;Lcom/mojang/brigadier/context/CommandContext;ZI)V +MD: net/minecraft/server/commands/ExecuteCommand/m_137188_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/ExecuteCommand/lambda$addConditionals$54 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/ExecuteCommand/m_137193_ (Lcom/mojang/brigadier/context/CommandContext;Z)I net/minecraft/server/commands/ExecuteCommand/checkUnlessRegions (Lcom/mojang/brigadier/context/CommandContext;Z)I +MD: net/minecraft/server/commands/ExecuteCommand/m_137196_ (Lnet/minecraft/commands/CommandSourceStack;)Z net/minecraft/server/commands/ExecuteCommand/lambda$register$5 (Lnet/minecraft/commands/CommandSourceStack;)Z +MD: net/minecraft/server/commands/ExecuteCommand/m_137208_ (ZLcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/ExecuteCommand/lambda$addIfBlocksConditional$67 (ZLcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/ExecuteCommand/m_137211_ (ZLnet/minecraft/server/commands/ExecuteCommand$CommandPredicate;Lcom/mojang/brigadier/context/CommandContext;)Ljava/util/Collection; net/minecraft/server/commands/ExecuteCommand/lambda$addConditional$63 (ZLnet/minecraft/server/commands/ExecuteCommand$CommandPredicate;Lcom/mojang/brigadier/context/CommandContext;)Ljava/util/Collection; +MD: net/minecraft/server/commands/ExecuteCommand/m_137215_ (Lcom/mojang/brigadier/context/CommandContext;)Z net/minecraft/server/commands/ExecuteCommand/lambda$addConditionals$52 (Lcom/mojang/brigadier/context/CommandContext;)Z +MD: net/minecraft/server/commands/ExecuteCommand/m_137220_ (Lcom/mojang/brigadier/context/CommandContext;Z)Ljava/util/OptionalInt; net/minecraft/server/commands/ExecuteCommand/checkRegions (Lcom/mojang/brigadier/context/CommandContext;Z)Ljava/util/OptionalInt; +MD: net/minecraft/server/commands/ExecuteCommand/m_137230_ (ZLcom/mojang/brigadier/context/CommandContext;)Ljava/util/Collection; net/minecraft/server/commands/ExecuteCommand/lambda$addConditionals$53 (ZLcom/mojang/brigadier/context/CommandContext;)Ljava/util/Collection; +MD: net/minecraft/server/commands/ExecuteCommand/m_137233_ (Lcom/mojang/brigadier/context/CommandContext;)Z net/minecraft/server/commands/ExecuteCommand/lambda$addConditionals$51 (Lcom/mojang/brigadier/context/CommandContext;)Z +MD: net/minecraft/server/commands/ExecuteCommand/m_137245_ (ZLcom/mojang/brigadier/context/CommandContext;)Lnet/minecraft/commands/CommandSourceStack; net/minecraft/server/commands/ExecuteCommand/lambda$wrapStores$22 (ZLcom/mojang/brigadier/context/CommandContext;)Lnet/minecraft/commands/CommandSourceStack; +MD: net/minecraft/server/commands/ExecuteCommand/m_137248_ (Lcom/mojang/brigadier/context/CommandContext;)Z net/minecraft/server/commands/ExecuteCommand/lambda$addConditionals$49 (Lcom/mojang/brigadier/context/CommandContext;)Z +MD: net/minecraft/server/commands/ExecuteCommand/m_137257_ (ZLcom/mojang/brigadier/context/CommandContext;)Lnet/minecraft/commands/CommandSourceStack; net/minecraft/server/commands/ExecuteCommand/lambda$wrapStores$21 (ZLcom/mojang/brigadier/context/CommandContext;)Lnet/minecraft/commands/CommandSourceStack; +MD: net/minecraft/server/commands/ExecuteCommand/m_137260_ (Lcom/mojang/brigadier/context/CommandContext;)Z net/minecraft/server/commands/ExecuteCommand/lambda$addConditionals$47 (Lcom/mojang/brigadier/context/CommandContext;)Z +MD: net/minecraft/server/commands/ExecuteCommand/m_137269_ (ZLcom/mojang/brigadier/context/CommandContext;)Lnet/minecraft/commands/CommandSourceStack; net/minecraft/server/commands/ExecuteCommand/lambda$wrapStores$20 (ZLcom/mojang/brigadier/context/CommandContext;)Lnet/minecraft/commands/CommandSourceStack; +MD: net/minecraft/server/commands/ExecuteCommand/m_137272_ (Lcom/mojang/brigadier/context/CommandContext;)Z net/minecraft/server/commands/ExecuteCommand/lambda$addConditionals$45 (Lcom/mojang/brigadier/context/CommandContext;)Z +MD: net/minecraft/server/commands/ExecuteCommand/m_137274_ (Lcom/mojang/brigadier/context/CommandContext;)Z net/minecraft/server/commands/ExecuteCommand/lambda$addConditionals$43 (Lcom/mojang/brigadier/context/CommandContext;)Z +MD: net/minecraft/server/commands/ExecuteCommand/m_137276_ (Lcom/mojang/brigadier/context/CommandContext;)Z net/minecraft/server/commands/ExecuteCommand/lambda$addConditionals$39 (Lcom/mojang/brigadier/context/CommandContext;)Z +MD: net/minecraft/server/commands/ExecuteCommand/m_137278_ (Lcom/mojang/brigadier/context/CommandContext;)Lnet/minecraft/commands/CommandSourceStack; net/minecraft/server/commands/ExecuteCommand/lambda$register$18 (Lcom/mojang/brigadier/context/CommandContext;)Lnet/minecraft/commands/CommandSourceStack; +MD: net/minecraft/server/commands/ExecuteCommand/m_137280_ (Lcom/mojang/brigadier/context/CommandContext;)Lnet/minecraft/commands/CommandSourceStack; net/minecraft/server/commands/ExecuteCommand/lambda$register$17 (Lcom/mojang/brigadier/context/CommandContext;)Lnet/minecraft/commands/CommandSourceStack; +MD: net/minecraft/server/commands/ExecuteCommand/m_137282_ (Lcom/mojang/brigadier/context/CommandContext;)Lnet/minecraft/commands/CommandSourceStack; net/minecraft/server/commands/ExecuteCommand/lambda$register$16 (Lcom/mojang/brigadier/context/CommandContext;)Lnet/minecraft/commands/CommandSourceStack; +MD: net/minecraft/server/commands/ExecuteCommand/m_137284_ (Lcom/mojang/brigadier/context/CommandContext;)Lnet/minecraft/commands/CommandSourceStack; net/minecraft/server/commands/ExecuteCommand/lambda$register$15 (Lcom/mojang/brigadier/context/CommandContext;)Lnet/minecraft/commands/CommandSourceStack; +MD: net/minecraft/server/commands/ExecuteCommand/m_137286_ (Lcom/mojang/brigadier/context/CommandContext;)Ljava/util/Collection; net/minecraft/server/commands/ExecuteCommand/lambda$register$14 (Lcom/mojang/brigadier/context/CommandContext;)Ljava/util/Collection; +MD: net/minecraft/server/commands/ExecuteCommand/m_137288_ (Lcom/mojang/brigadier/context/CommandContext;)Ljava/util/Collection; net/minecraft/server/commands/ExecuteCommand/lambda$register$13 (Lcom/mojang/brigadier/context/CommandContext;)Ljava/util/Collection; +MD: net/minecraft/server/commands/ExecuteCommand/m_137290_ (Lcom/mojang/brigadier/context/CommandContext;)Lnet/minecraft/commands/CommandSourceStack; net/minecraft/server/commands/ExecuteCommand/lambda$register$12 (Lcom/mojang/brigadier/context/CommandContext;)Lnet/minecraft/commands/CommandSourceStack; +MD: net/minecraft/server/commands/ExecuteCommand/m_137292_ (Lcom/mojang/brigadier/context/CommandContext;)Ljava/util/Collection; net/minecraft/server/commands/ExecuteCommand/lambda$register$10 (Lcom/mojang/brigadier/context/CommandContext;)Ljava/util/Collection; +MD: net/minecraft/server/commands/ExecuteCommand/m_137294_ (Lcom/mojang/brigadier/context/CommandContext;)Lnet/minecraft/commands/CommandSourceStack; net/minecraft/server/commands/ExecuteCommand/lambda$register$9 (Lcom/mojang/brigadier/context/CommandContext;)Lnet/minecraft/commands/CommandSourceStack; +MD: net/minecraft/server/commands/ExecuteCommand/m_137298_ (Lcom/mojang/brigadier/context/CommandContext;)Ljava/util/Collection; net/minecraft/server/commands/ExecuteCommand/lambda$register$7 (Lcom/mojang/brigadier/context/CommandContext;)Ljava/util/Collection; +MD: net/minecraft/server/commands/ExecuteCommand/m_180150_ (Lnet/minecraft/server/commands/data/DataCommands$DataProvider;Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/ExecuteCommand/lambda$addConditionals$57 (Lnet/minecraft/server/commands/data/DataCommands$DataProvider;Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/ExecuteCommand/m_180153_ (Lnet/minecraft/server/commands/data/DataCommands$DataProvider;ZLcom/mojang/brigadier/context/CommandContext;)Lnet/minecraft/commands/CommandSourceStack; net/minecraft/server/commands/ExecuteCommand/lambda$wrapStores$34 (Lnet/minecraft/server/commands/data/DataCommands$DataProvider;ZLcom/mojang/brigadier/context/CommandContext;)Lnet/minecraft/commands/CommandSourceStack; +MD: net/minecraft/server/commands/ExecuteCommand/m_180157_ (Lcom/mojang/brigadier/ResultConsumer;Lcom/mojang/brigadier/ResultConsumer;Lcom/mojang/brigadier/context/CommandContext;ZI)V net/minecraft/server/commands/ExecuteCommand/lambda$static$2 (Lcom/mojang/brigadier/ResultConsumer;Lcom/mojang/brigadier/ResultConsumer;Lcom/mojang/brigadier/context/CommandContext;ZI)V +MD: net/minecraft/server/commands/ExecuteCommand/m_180163_ (Lcom/mojang/brigadier/context/CommandContext;I)Lnet/minecraft/nbt/Tag; net/minecraft/server/commands/ExecuteCommand/lambda$wrapStores$33 (Lcom/mojang/brigadier/context/CommandContext;I)Lnet/minecraft/nbt/Tag; +MD: net/minecraft/server/commands/ExecuteCommand/m_180166_ (Ljava/lang/Integer;Ljava/lang/Integer;)Z net/minecraft/server/commands/ExecuteCommand/lambda$addConditionals$50 (Ljava/lang/Integer;Ljava/lang/Integer;)Z +MD: net/minecraft/server/commands/ExecuteCommand/m_180172_ (ZLnet/minecraft/server/commands/data/DataCommands$DataProvider;Lcom/mojang/brigadier/context/CommandContext;)Ljava/util/Collection; net/minecraft/server/commands/ExecuteCommand/lambda$addConditionals$56 (ZLnet/minecraft/server/commands/data/DataCommands$DataProvider;Lcom/mojang/brigadier/context/CommandContext;)Ljava/util/Collection; +MD: net/minecraft/server/commands/ExecuteCommand/m_180176_ (Lnet/minecraft/server/commands/data/DataCommands$DataProvider;ZLcom/mojang/brigadier/context/CommandContext;)Lnet/minecraft/commands/CommandSourceStack; net/minecraft/server/commands/ExecuteCommand/lambda$wrapStores$32 (Lnet/minecraft/server/commands/data/DataCommands$DataProvider;ZLcom/mojang/brigadier/context/CommandContext;)Lnet/minecraft/commands/CommandSourceStack; +MD: net/minecraft/server/commands/ExecuteCommand/m_180180_ (Lcom/mojang/brigadier/context/CommandContext;I)Lnet/minecraft/nbt/Tag; net/minecraft/server/commands/ExecuteCommand/lambda$wrapStores$31 (Lcom/mojang/brigadier/context/CommandContext;I)Lnet/minecraft/nbt/Tag; +MD: net/minecraft/server/commands/ExecuteCommand/m_180183_ (Ljava/lang/Integer;Ljava/lang/Integer;)Z net/minecraft/server/commands/ExecuteCommand/lambda$addConditionals$48 (Ljava/lang/Integer;Ljava/lang/Integer;)Z +MD: net/minecraft/server/commands/ExecuteCommand/m_180186_ (Lnet/minecraft/server/commands/data/DataCommands$DataProvider;ZLcom/mojang/brigadier/context/CommandContext;)Lnet/minecraft/commands/CommandSourceStack; net/minecraft/server/commands/ExecuteCommand/lambda$wrapStores$30 (Lnet/minecraft/server/commands/data/DataCommands$DataProvider;ZLcom/mojang/brigadier/context/CommandContext;)Lnet/minecraft/commands/CommandSourceStack; +MD: net/minecraft/server/commands/ExecuteCommand/m_180190_ (Lcom/mojang/brigadier/context/CommandContext;I)Lnet/minecraft/nbt/Tag; net/minecraft/server/commands/ExecuteCommand/lambda$wrapStores$29 (Lcom/mojang/brigadier/context/CommandContext;I)Lnet/minecraft/nbt/Tag; +MD: net/minecraft/server/commands/ExecuteCommand/m_180193_ (Ljava/lang/Integer;Ljava/lang/Integer;)Z net/minecraft/server/commands/ExecuteCommand/lambda$addConditionals$46 (Ljava/lang/Integer;Ljava/lang/Integer;)Z +MD: net/minecraft/server/commands/ExecuteCommand/m_180196_ (Lnet/minecraft/server/commands/data/DataCommands$DataProvider;ZLcom/mojang/brigadier/context/CommandContext;)Lnet/minecraft/commands/CommandSourceStack; net/minecraft/server/commands/ExecuteCommand/lambda$wrapStores$28 (Lnet/minecraft/server/commands/data/DataCommands$DataProvider;ZLcom/mojang/brigadier/context/CommandContext;)Lnet/minecraft/commands/CommandSourceStack; +MD: net/minecraft/server/commands/ExecuteCommand/m_180200_ (Lcom/mojang/brigadier/context/CommandContext;I)Lnet/minecraft/nbt/Tag; net/minecraft/server/commands/ExecuteCommand/lambda$wrapStores$27 (Lcom/mojang/brigadier/context/CommandContext;I)Lnet/minecraft/nbt/Tag; +MD: net/minecraft/server/commands/ExecuteCommand/m_180203_ (Ljava/lang/Integer;Ljava/lang/Integer;)Z net/minecraft/server/commands/ExecuteCommand/lambda$addConditionals$44 (Ljava/lang/Integer;Ljava/lang/Integer;)Z +MD: net/minecraft/server/commands/ExecuteCommand/m_180206_ (Lnet/minecraft/server/commands/data/DataCommands$DataProvider;ZLcom/mojang/brigadier/context/CommandContext;)Lnet/minecraft/commands/CommandSourceStack; net/minecraft/server/commands/ExecuteCommand/lambda$wrapStores$26 (Lnet/minecraft/server/commands/data/DataCommands$DataProvider;ZLcom/mojang/brigadier/context/CommandContext;)Lnet/minecraft/commands/CommandSourceStack; +MD: net/minecraft/server/commands/ExecuteCommand/m_180210_ (Lcom/mojang/brigadier/context/CommandContext;I)Lnet/minecraft/nbt/Tag; net/minecraft/server/commands/ExecuteCommand/lambda$wrapStores$25 (Lcom/mojang/brigadier/context/CommandContext;I)Lnet/minecraft/nbt/Tag; +MD: net/minecraft/server/commands/ExecuteCommand/m_180213_ (Lnet/minecraft/server/commands/data/DataCommands$DataProvider;ZLcom/mojang/brigadier/context/CommandContext;)Lnet/minecraft/commands/CommandSourceStack; net/minecraft/server/commands/ExecuteCommand/lambda$wrapStores$24 (Lnet/minecraft/server/commands/data/DataCommands$DataProvider;ZLcom/mojang/brigadier/context/CommandContext;)Lnet/minecraft/commands/CommandSourceStack; +MD: net/minecraft/server/commands/ExecuteCommand/m_180217_ (Lcom/mojang/brigadier/context/CommandContext;I)Lnet/minecraft/nbt/Tag; net/minecraft/server/commands/ExecuteCommand/lambda$wrapStores$23 (Lcom/mojang/brigadier/context/CommandContext;I)Lnet/minecraft/nbt/Tag; +MD: net/minecraft/server/commands/ExecuteCommand/m_214434_ (Lcom/mojang/brigadier/CommandDispatcher;Lnet/minecraft/commands/CommandBuildContext;)V net/minecraft/server/commands/ExecuteCommand/register (Lcom/mojang/brigadier/CommandDispatcher;Lnet/minecraft/commands/CommandBuildContext;)V +MD: net/minecraft/server/commands/ExecuteCommand/m_214437_ (Lcom/mojang/brigadier/tree/CommandNode;Lcom/mojang/brigadier/builder/LiteralArgumentBuilder;ZLnet/minecraft/commands/CommandBuildContext;)Lcom/mojang/brigadier/builder/ArgumentBuilder; net/minecraft/server/commands/ExecuteCommand/addConditionals (Lcom/mojang/brigadier/tree/CommandNode;Lcom/mojang/brigadier/builder/LiteralArgumentBuilder;ZLnet/minecraft/commands/CommandBuildContext;)Lcom/mojang/brigadier/builder/ArgumentBuilder; +MD: net/minecraft/server/commands/ExecuteCommand/m_263149_ (Lnet/minecraft/server/commands/data/DataAccessor;ZLnet/minecraft/commands/arguments/NbtPathArgument$NbtPath;Ljava/util/function/IntFunction;Lcom/mojang/brigadier/context/CommandContext;ZI)V net/minecraft/server/commands/ExecuteCommand/lambda$storeData$38 (Lnet/minecraft/server/commands/data/DataAccessor;ZLnet/minecraft/commands/arguments/NbtPathArgument$NbtPath;Ljava/util/function/IntFunction;Lcom/mojang/brigadier/context/CommandContext;ZI)V +MD: net/minecraft/server/commands/ExecuteCommand/m_263918_ (Lnet/minecraft/commands/CommandSourceStack;Lnet/minecraft/world/entity/Entity;)Ljava/util/List; net/minecraft/server/commands/ExecuteCommand/lambda$expandOneToOneEntityRelation$72 (Lnet/minecraft/commands/CommandSourceStack;Lnet/minecraft/world/entity/Entity;)Ljava/util/List; +MD: net/minecraft/server/commands/ExecuteCommand/m_263919_ (Lnet/minecraft/world/entity/Entity;)Ljava/util/Optional; net/minecraft/server/commands/ExecuteCommand/lambda$createRelationOperations$80 (Lnet/minecraft/world/entity/Entity;)Ljava/util/Optional; +MD: net/minecraft/server/commands/ExecuteCommand/m_263920_ (Lnet/minecraft/world/entity/Entity;)Ljava/util/stream/Stream; net/minecraft/server/commands/ExecuteCommand/lambda$createRelationOperations$83 (Lnet/minecraft/world/entity/Entity;)Ljava/util/stream/Stream; +MD: net/minecraft/server/commands/ExecuteCommand/m_263922_ (Ljava/util/function/Function;Lcom/mojang/brigadier/context/CommandContext;)Ljava/util/Collection; net/minecraft/server/commands/ExecuteCommand/lambda$expandOneToManyEntityRelation$75 (Ljava/util/function/Function;Lcom/mojang/brigadier/context/CommandContext;)Ljava/util/Collection; +MD: net/minecraft/server/commands/ExecuteCommand/m_263924_ (Lnet/minecraft/world/entity/Entity;)Ljava/util/Optional; net/minecraft/server/commands/ExecuteCommand/lambda$createRelationOperations$77 (Lnet/minecraft/world/entity/Entity;)Ljava/util/Optional; +MD: net/minecraft/server/commands/ExecuteCommand/m_263925_ (Lnet/minecraft/world/entity/Entity;)Z net/minecraft/server/commands/ExecuteCommand/lambda$expandOneToOneEntityRelation$71 (Lnet/minecraft/world/entity/Entity;)Z +MD: net/minecraft/server/commands/ExecuteCommand/m_263926_ (Lnet/minecraft/world/entity/Entity;)Z net/minecraft/server/commands/ExecuteCommand/lambda$expandOneToManyEntityRelation$74 (Lnet/minecraft/world/entity/Entity;)Z +MD: net/minecraft/server/commands/ExecuteCommand/m_263927_ (Ljava/util/function/Function;Lcom/mojang/brigadier/context/CommandContext;)Ljava/util/Collection; net/minecraft/server/commands/ExecuteCommand/lambda$expandOneToOneEntityRelation$73 (Ljava/util/function/Function;Lcom/mojang/brigadier/context/CommandContext;)Ljava/util/Collection; +MD: net/minecraft/server/commands/ExecuteCommand/m_263930_ (Lcom/mojang/brigadier/context/CommandContext;)Z net/minecraft/server/commands/ExecuteCommand/lambda$addConditionals$42 (Lcom/mojang/brigadier/context/CommandContext;)Z +MD: net/minecraft/server/commands/ExecuteCommand/m_264124_ (Lcom/mojang/brigadier/tree/CommandNode;Lcom/mojang/brigadier/builder/LiteralArgumentBuilder;)Lcom/mojang/brigadier/builder/LiteralArgumentBuilder; net/minecraft/server/commands/ExecuteCommand/createRelationOperations (Lcom/mojang/brigadier/tree/CommandNode;Lcom/mojang/brigadier/builder/LiteralArgumentBuilder;)Lcom/mojang/brigadier/builder/LiteralArgumentBuilder; +MD: net/minecraft/server/commands/ExecuteCommand/m_264155_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;)Z net/minecraft/server/commands/ExecuteCommand/isChunkLoaded (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/server/commands/ExecuteCommand/m_264350_ (Ljava/util/function/Function;)Lcom/mojang/brigadier/RedirectModifier; net/minecraft/server/commands/ExecuteCommand/expandOneToManyEntityRelation (Ljava/util/function/Function;)Lcom/mojang/brigadier/RedirectModifier; +MD: net/minecraft/server/commands/ExecuteCommand/m_264445_ (Ljava/util/function/Function;)Lcom/mojang/brigadier/RedirectModifier; net/minecraft/server/commands/ExecuteCommand/expandOneToOneEntityRelation (Ljava/util/function/Function;)Lcom/mojang/brigadier/RedirectModifier; +MD: net/minecraft/server/commands/ExecuteCommand/m_266134_ (Lnet/minecraft/world/entity/Entity;)Ljava/util/Optional; net/minecraft/server/commands/ExecuteCommand/lambda$createRelationOperations$82 (Lnet/minecraft/world/entity/Entity;)Ljava/util/Optional; +MD: net/minecraft/server/commands/ExecuteCommand/m_268838_ (Lcom/mojang/brigadier/context/CommandContext;)Z net/minecraft/server/commands/ExecuteCommand/lambda$addConditionals$41 (Lcom/mojang/brigadier/context/CommandContext;)Z +MD: net/minecraft/server/commands/ExecuteCommand/m_268839_ (Lnet/minecraft/world/entity/Entity;)Ljava/util/Optional; net/minecraft/server/commands/ExecuteCommand/lambda$createRelationOperations$76 (Lnet/minecraft/world/entity/Entity;)Ljava/util/Optional; +MD: net/minecraft/server/commands/ExecuteCommand/m_268840_ (Lcom/mojang/brigadier/context/CommandContext;)Lnet/minecraft/commands/CommandSourceStack; net/minecraft/server/commands/ExecuteCommand/lambda$register$19 (Lcom/mojang/brigadier/context/CommandContext;)Lnet/minecraft/commands/CommandSourceStack; +MD: net/minecraft/server/commands/ExecuteCommand/m_269381_ (Lnet/minecraft/commands/CommandSourceStack;Lnet/minecraft/core/Holder$Reference;)Lnet/minecraft/commands/CommandSourceStack; net/minecraft/server/commands/ExecuteCommand/spawnEntityAndRedirect (Lnet/minecraft/commands/CommandSourceStack;Lnet/minecraft/core/Holder$Reference;)Lnet/minecraft/commands/CommandSourceStack; +MD: net/minecraft/server/commands/ExecuteCommand/m_271596_ (Lnet/minecraft/world/entity/Entity;)Ljava/util/Optional; net/minecraft/server/commands/ExecuteCommand/lambda$createRelationOperations$79 (Lnet/minecraft/world/entity/Entity;)Ljava/util/Optional; +MD: net/minecraft/server/commands/ExecuteCommand/m_271597_ (Lnet/minecraft/world/entity/Entity;)Ljava/util/Optional; net/minecraft/server/commands/ExecuteCommand/lambda$createRelationOperations$78 (Lnet/minecraft/world/entity/Entity;)Ljava/util/Optional; +MD: net/minecraft/server/commands/ExecuteCommand/m_274091_ (Lcom/mojang/brigadier/context/CommandContext;)Lnet/minecraft/commands/CommandSourceStack; net/minecraft/server/commands/ExecuteCommand/lambda$register$11 (Lcom/mojang/brigadier/context/CommandContext;)Lnet/minecraft/commands/CommandSourceStack; +MD: net/minecraft/server/commands/ExecuteCommand/m_274092_ (Lnet/minecraft/world/entity/Entity;)Ljava/util/Optional; net/minecraft/server/commands/ExecuteCommand/lambda$createRelationOperations$81 (Lnet/minecraft/world/entity/Entity;)Ljava/util/Optional; +MD: net/minecraft/server/commands/ExecuteCommand/m_276724_ (Lcom/mojang/brigadier/context/CommandContext;)Z net/minecraft/server/commands/ExecuteCommand/lambda$addConditionals$40 (Lcom/mojang/brigadier/context/CommandContext;)Z +MD: net/minecraft/server/commands/ExecuteCommand/m_278534_ (Lcom/mojang/brigadier/context/CommandContext;Lcom/mojang/brigadier/suggestion/SuggestionsBuilder;)Ljava/util/concurrent/CompletableFuture; net/minecraft/server/commands/ExecuteCommand/lambda$static$4 (Lcom/mojang/brigadier/context/CommandContext;Lcom/mojang/brigadier/suggestion/SuggestionsBuilder;)Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/server/commands/ExecuteCommand/m_283989_ (Lcom/mojang/brigadier/context/CommandContext;)Ljava/util/Collection; net/minecraft/server/commands/ExecuteCommand/lambda$register$8 (Lcom/mojang/brigadier/context/CommandContext;)Ljava/util/Collection; +MD: net/minecraft/server/commands/ExecuteCommand/m_287882_ (I)Lnet/minecraft/network/chat/Component; net/minecraft/server/commands/ExecuteCommand/lambda$createNumericConditionalHandler$59 (I)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/commands/ExecuteCommand/m_287883_ (Ljava/util/OptionalInt;)Lnet/minecraft/network/chat/Component; net/minecraft/server/commands/ExecuteCommand/lambda$checkIfRegions$69 (Ljava/util/OptionalInt;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/commands/ExecuteCommand/m_287884_ (Lnet/minecraft/server/commands/ExecuteCommand$CommandNumericPredicate;Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/ExecuteCommand/lambda$createNumericConditionalHandler$60 (Lnet/minecraft/server/commands/ExecuteCommand$CommandNumericPredicate;Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/ExecuteCommand/m_287885_ ()Lnet/minecraft/network/chat/Component; net/minecraft/server/commands/ExecuteCommand/lambda$checkUnlessRegions$70 ()Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/commands/ExecuteCommand/m_287886_ ()Lnet/minecraft/network/chat/Component; net/minecraft/server/commands/ExecuteCommand/lambda$createNumericConditionalHandler$61 ()Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/commands/ExecuteCommand/m_287887_ ()Lnet/minecraft/network/chat/Component; net/minecraft/server/commands/ExecuteCommand/lambda$addConditional$64 ()Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/commands/ExecuteCommand/m_287888_ (Lnet/minecraft/server/commands/ExecuteCommand$CommandNumericPredicate;Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/ExecuteCommand/lambda$createNumericConditionalHandler$62 (Lnet/minecraft/server/commands/ExecuteCommand$CommandNumericPredicate;Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/ExecuteCommand/m_287889_ (ZLnet/minecraft/server/commands/ExecuteCommand$CommandPredicate;Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/ExecuteCommand/lambda$addConditional$65 (ZLnet/minecraft/server/commands/ExecuteCommand$CommandPredicate;Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/ExecuteCommand$CommandNumericPredicate/m_137300_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/ExecuteCommand$CommandNumericPredicate/test (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/ExecuteCommand$CommandPredicate/m_137302_ (Lcom/mojang/brigadier/context/CommandContext;)Z net/minecraft/server/commands/ExecuteCommand$CommandPredicate/test (Lcom/mojang/brigadier/context/CommandContext;)Z +MD: net/minecraft/server/commands/ExperienceCommand/ ()V net/minecraft/server/commands/ExperienceCommand/ ()V +MD: net/minecraft/server/commands/ExperienceCommand/ ()V net/minecraft/server/commands/ExperienceCommand/ ()V +MD: net/minecraft/server/commands/ExperienceCommand/m_137306_ (Lcom/mojang/brigadier/CommandDispatcher;)V net/minecraft/server/commands/ExperienceCommand/register (Lcom/mojang/brigadier/CommandDispatcher;)V +MD: net/minecraft/server/commands/ExperienceCommand/m_137308_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/ExperienceCommand/lambda$register$8 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/ExperienceCommand/m_137310_ (Lnet/minecraft/commands/CommandSourceStack;)Z net/minecraft/server/commands/ExperienceCommand/lambda$register$9 (Lnet/minecraft/commands/CommandSourceStack;)Z +MD: net/minecraft/server/commands/ExperienceCommand/m_137312_ (Lnet/minecraft/commands/CommandSourceStack;Lnet/minecraft/server/level/ServerPlayer;Lnet/minecraft/server/commands/ExperienceCommand$Type;)I net/minecraft/server/commands/ExperienceCommand/queryExperience (Lnet/minecraft/commands/CommandSourceStack;Lnet/minecraft/server/level/ServerPlayer;Lnet/minecraft/server/commands/ExperienceCommand$Type;)I +MD: net/minecraft/server/commands/ExperienceCommand/m_137316_ (Lnet/minecraft/commands/CommandSourceStack;Ljava/util/Collection;ILnet/minecraft/server/commands/ExperienceCommand$Type;)I net/minecraft/server/commands/ExperienceCommand/addExperience (Lnet/minecraft/commands/CommandSourceStack;Ljava/util/Collection;ILnet/minecraft/server/commands/ExperienceCommand$Type;)I +MD: net/minecraft/server/commands/ExperienceCommand/m_137321_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/ExperienceCommand/lambda$register$7 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/ExperienceCommand/m_137323_ (Lnet/minecraft/commands/CommandSourceStack;)Z net/minecraft/server/commands/ExperienceCommand/lambda$register$0 (Lnet/minecraft/commands/CommandSourceStack;)Z +MD: net/minecraft/server/commands/ExperienceCommand/m_137325_ (Lnet/minecraft/commands/CommandSourceStack;Ljava/util/Collection;ILnet/minecraft/server/commands/ExperienceCommand$Type;)I net/minecraft/server/commands/ExperienceCommand/setExperience (Lnet/minecraft/commands/CommandSourceStack;Ljava/util/Collection;ILnet/minecraft/server/commands/ExperienceCommand$Type;)I +MD: net/minecraft/server/commands/ExperienceCommand/m_137330_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/ExperienceCommand/lambda$register$6 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/ExperienceCommand/m_137332_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/ExperienceCommand/lambda$register$5 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/ExperienceCommand/m_137334_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/ExperienceCommand/lambda$register$4 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/ExperienceCommand/m_137336_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/ExperienceCommand/lambda$register$3 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/ExperienceCommand/m_137338_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/ExperienceCommand/lambda$register$2 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/ExperienceCommand/m_137340_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/ExperienceCommand/lambda$register$1 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/ExperienceCommand/m_287891_ (Lnet/minecraft/server/commands/ExperienceCommand$Type;ILjava/util/Collection;)Lnet/minecraft/network/chat/Component; net/minecraft/server/commands/ExperienceCommand/lambda$setExperience$14 (Lnet/minecraft/server/commands/ExperienceCommand$Type;ILjava/util/Collection;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/commands/ExperienceCommand/m_287893_ (Lnet/minecraft/server/commands/ExperienceCommand$Type;ILjava/util/Collection;)Lnet/minecraft/network/chat/Component; net/minecraft/server/commands/ExperienceCommand/lambda$addExperience$12 (Lnet/minecraft/server/commands/ExperienceCommand$Type;ILjava/util/Collection;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/commands/ExperienceCommand/m_289062_ (Lnet/minecraft/server/commands/ExperienceCommand$Type;ILjava/util/Collection;)Lnet/minecraft/network/chat/Component; net/minecraft/server/commands/ExperienceCommand/lambda$setExperience$13 (Lnet/minecraft/server/commands/ExperienceCommand$Type;ILjava/util/Collection;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/commands/ExperienceCommand/m_289063_ (Lnet/minecraft/server/commands/ExperienceCommand$Type;Lnet/minecraft/server/level/ServerPlayer;I)Lnet/minecraft/network/chat/Component; net/minecraft/server/commands/ExperienceCommand/lambda$queryExperience$10 (Lnet/minecraft/server/commands/ExperienceCommand$Type;Lnet/minecraft/server/level/ServerPlayer;I)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/commands/ExperienceCommand/m_289064_ (Lnet/minecraft/server/commands/ExperienceCommand$Type;ILjava/util/Collection;)Lnet/minecraft/network/chat/Component; net/minecraft/server/commands/ExperienceCommand/lambda$addExperience$11 (Lnet/minecraft/server/commands/ExperienceCommand$Type;ILjava/util/Collection;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/commands/ExperienceCommand$Type/ ()V net/minecraft/server/commands/ExperienceCommand$Type/ ()V +MD: net/minecraft/server/commands/ExperienceCommand$Type/ (Ljava/lang/String;ILjava/lang/String;Ljava/util/function/BiConsumer;Ljava/util/function/BiPredicate;Ljava/util/function/ToIntFunction;)V net/minecraft/server/commands/ExperienceCommand$Type/ (Ljava/lang/String;ILjava/lang/String;Ljava/util/function/BiConsumer;Ljava/util/function/BiPredicate;Ljava/util/function/ToIntFunction;)V +MD: net/minecraft/server/commands/ExperienceCommand$Type/m_137359_ (Lnet/minecraft/server/level/ServerPlayer;Ljava/lang/Integer;)Z net/minecraft/server/commands/ExperienceCommand$Type/lambda$static$2 (Lnet/minecraft/server/level/ServerPlayer;Ljava/lang/Integer;)Z +MD: net/minecraft/server/commands/ExperienceCommand$Type/m_180221_ ()[Lnet/minecraft/server/commands/ExperienceCommand$Type; net/minecraft/server/commands/ExperienceCommand$Type/$values ()[Lnet/minecraft/server/commands/ExperienceCommand$Type; +MD: net/minecraft/server/commands/ExperienceCommand$Type/m_287030_ (Lnet/minecraft/server/level/ServerPlayer;)I net/minecraft/server/commands/ExperienceCommand$Type/lambda$static$3 (Lnet/minecraft/server/level/ServerPlayer;)I +MD: net/minecraft/server/commands/ExperienceCommand$Type/m_289065_ (Lnet/minecraft/server/level/ServerPlayer;)I net/minecraft/server/commands/ExperienceCommand$Type/lambda$static$1 (Lnet/minecraft/server/level/ServerPlayer;)I +MD: net/minecraft/server/commands/ExperienceCommand$Type/m_289066_ (Lnet/minecraft/server/level/ServerPlayer;Ljava/lang/Integer;)Z net/minecraft/server/commands/ExperienceCommand$Type/lambda$static$0 (Lnet/minecraft/server/level/ServerPlayer;Ljava/lang/Integer;)Z +MD: net/minecraft/server/commands/ExperienceCommand$Type/valueOf (Ljava/lang/String;)Lnet/minecraft/server/commands/ExperienceCommand$Type; net/minecraft/server/commands/ExperienceCommand$Type/valueOf (Ljava/lang/String;)Lnet/minecraft/server/commands/ExperienceCommand$Type; +MD: net/minecraft/server/commands/ExperienceCommand$Type/values ()[Lnet/minecraft/server/commands/ExperienceCommand$Type; net/minecraft/server/commands/ExperienceCommand$Type/values ()[Lnet/minecraft/server/commands/ExperienceCommand$Type; +MD: net/minecraft/server/commands/FillBiomeCommand/ ()V net/minecraft/server/commands/FillBiomeCommand/ ()V +MD: net/minecraft/server/commands/FillBiomeCommand/ ()V net/minecraft/server/commands/FillBiomeCommand/ ()V +MD: net/minecraft/server/commands/FillBiomeCommand/m_260812_ (Lnet/minecraft/core/BlockPos;)Lnet/minecraft/core/BlockPos; net/minecraft/server/commands/FillBiomeCommand/quantize (Lnet/minecraft/core/BlockPos;)Lnet/minecraft/core/BlockPos; +MD: net/minecraft/server/commands/FillBiomeCommand/m_260845_ (Lcom/mojang/brigadier/CommandDispatcher;Lnet/minecraft/commands/CommandBuildContext;)V net/minecraft/server/commands/FillBiomeCommand/register (Lcom/mojang/brigadier/CommandDispatcher;Lnet/minecraft/commands/CommandBuildContext;)V +MD: net/minecraft/server/commands/FillBiomeCommand/m_261155_ (Ljava/lang/Object;Ljava/lang/Object;)Lcom/mojang/brigadier/Message; net/minecraft/server/commands/FillBiomeCommand/lambda$static$0 (Ljava/lang/Object;Ljava/lang/Object;)Lcom/mojang/brigadier/Message; +MD: net/minecraft/server/commands/FillBiomeCommand/m_261188_ (I)I net/minecraft/server/commands/FillBiomeCommand/quantize (I)I +MD: net/minecraft/server/commands/FillBiomeCommand/m_261268_ (Lnet/minecraft/commands/CommandSourceStack;)Z net/minecraft/server/commands/FillBiomeCommand/lambda$register$1 (Lnet/minecraft/commands/CommandSourceStack;)Z +MD: net/minecraft/server/commands/FillBiomeCommand/m_262349_ (Lnet/minecraft/core/Holder;)Z net/minecraft/server/commands/FillBiomeCommand/lambda$register$2 (Lnet/minecraft/core/Holder;)Z +MD: net/minecraft/server/commands/FillBiomeCommand/m_262350_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/FillBiomeCommand/lambda$register$4 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/FillBiomeCommand/m_262351_ (Lnet/minecraft/world/level/chunk/ChunkAccess;Lnet/minecraft/world/level/levelgen/structure/BoundingBox;Ljava/util/function/Predicate;Lorg/apache/commons/lang3/mutable/MutableInt;Lnet/minecraft/core/Holder;IIILnet/minecraft/world/level/biome/Climate$Sampler;)Lnet/minecraft/core/Holder; net/minecraft/server/commands/FillBiomeCommand/lambda$makeResolver$5 (Lnet/minecraft/world/level/chunk/ChunkAccess;Lnet/minecraft/world/level/levelgen/structure/BoundingBox;Ljava/util/function/Predicate;Lorg/apache/commons/lang3/mutable/MutableInt;Lnet/minecraft/core/Holder;IIILnet/minecraft/world/level/biome/Climate$Sampler;)Lnet/minecraft/core/Holder; +MD: net/minecraft/server/commands/FillBiomeCommand/m_262352_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/FillBiomeCommand/lambda$register$3 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/FillBiomeCommand/m_262439_ (Lorg/apache/commons/lang3/mutable/MutableInt;Lnet/minecraft/world/level/chunk/ChunkAccess;Lnet/minecraft/world/level/levelgen/structure/BoundingBox;Lnet/minecraft/core/Holder;Ljava/util/function/Predicate;)Lnet/minecraft/world/level/biome/BiomeResolver; net/minecraft/server/commands/FillBiomeCommand/makeResolver (Lorg/apache/commons/lang3/mutable/MutableInt;Lnet/minecraft/world/level/chunk/ChunkAccess;Lnet/minecraft/world/level/levelgen/structure/BoundingBox;Lnet/minecraft/core/Holder;Ljava/util/function/Predicate;)Lnet/minecraft/world/level/biome/BiomeResolver; +MD: net/minecraft/server/commands/FillBiomeCommand/m_262457_ (Lnet/minecraft/commands/CommandSourceStack;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Holder$Reference;Ljava/util/function/Predicate;)I net/minecraft/server/commands/FillBiomeCommand/fill (Lnet/minecraft/commands/CommandSourceStack;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Holder$Reference;Ljava/util/function/Predicate;)I +MD: net/minecraft/server/commands/FillBiomeCommand/m_287897_ (Lorg/apache/commons/lang3/mutable/MutableInt;Lnet/minecraft/world/level/levelgen/structure/BoundingBox;)Lnet/minecraft/network/chat/Component; net/minecraft/server/commands/FillBiomeCommand/lambda$fill$6 (Lorg/apache/commons/lang3/mutable/MutableInt;Lnet/minecraft/world/level/levelgen/structure/BoundingBox;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/commands/FillCommand/ ()V net/minecraft/server/commands/FillCommand/ ()V +MD: net/minecraft/server/commands/FillCommand/ ()V net/minecraft/server/commands/FillCommand/ ()V +MD: net/minecraft/server/commands/FillCommand/m_137381_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/FillCommand/lambda$register$9 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/FillCommand/m_137383_ (Lnet/minecraft/commands/CommandSourceStack;)Z net/minecraft/server/commands/FillCommand/lambda$register$1 (Lnet/minecraft/commands/CommandSourceStack;)Z +MD: net/minecraft/server/commands/FillCommand/m_137385_ (Lnet/minecraft/commands/CommandSourceStack;Lnet/minecraft/world/level/levelgen/structure/BoundingBox;Lnet/minecraft/commands/arguments/blocks/BlockInput;Lnet/minecraft/server/commands/FillCommand$Mode;Ljava/util/function/Predicate;)I net/minecraft/server/commands/FillCommand/fillBlocks (Lnet/minecraft/commands/CommandSourceStack;Lnet/minecraft/world/level/levelgen/structure/BoundingBox;Lnet/minecraft/commands/arguments/blocks/BlockInput;Lnet/minecraft/server/commands/FillCommand$Mode;Ljava/util/function/Predicate;)I +MD: net/minecraft/server/commands/FillCommand/m_137391_ (Ljava/lang/Object;Ljava/lang/Object;)Lcom/mojang/brigadier/Message; net/minecraft/server/commands/FillCommand/lambda$static$0 (Ljava/lang/Object;Ljava/lang/Object;)Lcom/mojang/brigadier/Message; +MD: net/minecraft/server/commands/FillCommand/m_137394_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/FillCommand/lambda$register$8 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/FillCommand/m_137396_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/FillCommand/lambda$register$7 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/FillCommand/m_137398_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/FillCommand/lambda$register$6 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/FillCommand/m_137400_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/FillCommand/lambda$register$4 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/FillCommand/m_137402_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/FillCommand/lambda$register$3 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/FillCommand/m_137404_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/FillCommand/lambda$register$2 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/FillCommand/m_180224_ (Lnet/minecraft/world/level/block/state/pattern/BlockInWorld;)Z net/minecraft/server/commands/FillCommand/lambda$register$5 (Lnet/minecraft/world/level/block/state/pattern/BlockInWorld;)Z +MD: net/minecraft/server/commands/FillCommand/m_214442_ (Lcom/mojang/brigadier/CommandDispatcher;Lnet/minecraft/commands/CommandBuildContext;)V net/minecraft/server/commands/FillCommand/register (Lcom/mojang/brigadier/CommandDispatcher;Lnet/minecraft/commands/CommandBuildContext;)V +MD: net/minecraft/server/commands/FillCommand/m_287898_ (I)Lnet/minecraft/network/chat/Component; net/minecraft/server/commands/FillCommand/lambda$fillBlocks$10 (I)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/commands/FillCommand$Mode/ ()V net/minecraft/server/commands/FillCommand$Mode/ ()V +MD: net/minecraft/server/commands/FillCommand$Mode/ (Ljava/lang/String;ILnet/minecraft/server/commands/SetBlockCommand$Filter;)V net/minecraft/server/commands/FillCommand$Mode/ (Ljava/lang/String;ILnet/minecraft/server/commands/SetBlockCommand$Filter;)V +MD: net/minecraft/server/commands/FillCommand$Mode/m_137417_ (Lnet/minecraft/world/level/levelgen/structure/BoundingBox;Lnet/minecraft/core/BlockPos;Lnet/minecraft/commands/arguments/blocks/BlockInput;Lnet/minecraft/server/level/ServerLevel;)Lnet/minecraft/commands/arguments/blocks/BlockInput; net/minecraft/server/commands/FillCommand$Mode/lambda$static$3 (Lnet/minecraft/world/level/levelgen/structure/BoundingBox;Lnet/minecraft/core/BlockPos;Lnet/minecraft/commands/arguments/blocks/BlockInput;Lnet/minecraft/server/level/ServerLevel;)Lnet/minecraft/commands/arguments/blocks/BlockInput; +MD: net/minecraft/server/commands/FillCommand$Mode/m_137422_ (Lnet/minecraft/world/level/levelgen/structure/BoundingBox;Lnet/minecraft/core/BlockPos;Lnet/minecraft/commands/arguments/blocks/BlockInput;Lnet/minecraft/server/level/ServerLevel;)Lnet/minecraft/commands/arguments/blocks/BlockInput; net/minecraft/server/commands/FillCommand$Mode/lambda$static$2 (Lnet/minecraft/world/level/levelgen/structure/BoundingBox;Lnet/minecraft/core/BlockPos;Lnet/minecraft/commands/arguments/blocks/BlockInput;Lnet/minecraft/server/level/ServerLevel;)Lnet/minecraft/commands/arguments/blocks/BlockInput; +MD: net/minecraft/server/commands/FillCommand$Mode/m_137427_ (Lnet/minecraft/world/level/levelgen/structure/BoundingBox;Lnet/minecraft/core/BlockPos;Lnet/minecraft/commands/arguments/blocks/BlockInput;Lnet/minecraft/server/level/ServerLevel;)Lnet/minecraft/commands/arguments/blocks/BlockInput; net/minecraft/server/commands/FillCommand$Mode/lambda$static$1 (Lnet/minecraft/world/level/levelgen/structure/BoundingBox;Lnet/minecraft/core/BlockPos;Lnet/minecraft/commands/arguments/blocks/BlockInput;Lnet/minecraft/server/level/ServerLevel;)Lnet/minecraft/commands/arguments/blocks/BlockInput; +MD: net/minecraft/server/commands/FillCommand$Mode/m_137432_ (Lnet/minecraft/world/level/levelgen/structure/BoundingBox;Lnet/minecraft/core/BlockPos;Lnet/minecraft/commands/arguments/blocks/BlockInput;Lnet/minecraft/server/level/ServerLevel;)Lnet/minecraft/commands/arguments/blocks/BlockInput; net/minecraft/server/commands/FillCommand$Mode/lambda$static$0 (Lnet/minecraft/world/level/levelgen/structure/BoundingBox;Lnet/minecraft/core/BlockPos;Lnet/minecraft/commands/arguments/blocks/BlockInput;Lnet/minecraft/server/level/ServerLevel;)Lnet/minecraft/commands/arguments/blocks/BlockInput; +MD: net/minecraft/server/commands/FillCommand$Mode/m_180226_ ()[Lnet/minecraft/server/commands/FillCommand$Mode; net/minecraft/server/commands/FillCommand$Mode/$values ()[Lnet/minecraft/server/commands/FillCommand$Mode; +MD: net/minecraft/server/commands/FillCommand$Mode/valueOf (Ljava/lang/String;)Lnet/minecraft/server/commands/FillCommand$Mode; net/minecraft/server/commands/FillCommand$Mode/valueOf (Ljava/lang/String;)Lnet/minecraft/server/commands/FillCommand$Mode; +MD: net/minecraft/server/commands/FillCommand$Mode/values ()[Lnet/minecraft/server/commands/FillCommand$Mode; net/minecraft/server/commands/FillCommand$Mode/values ()[Lnet/minecraft/server/commands/FillCommand$Mode; +MD: net/minecraft/server/commands/ForceLoadCommand/ ()V net/minecraft/server/commands/ForceLoadCommand/ ()V +MD: net/minecraft/server/commands/ForceLoadCommand/ ()V net/minecraft/server/commands/ForceLoadCommand/ ()V +MD: net/minecraft/server/commands/ForceLoadCommand/m_137673_ (Lnet/minecraft/server/level/ServerLevel;J)V net/minecraft/server/commands/ForceLoadCommand/lambda$removeAll$13 (Lnet/minecraft/server/level/ServerLevel;J)V +MD: net/minecraft/server/commands/ForceLoadCommand/m_137676_ (Lcom/mojang/brigadier/CommandDispatcher;)V net/minecraft/server/commands/ForceLoadCommand/register (Lcom/mojang/brigadier/CommandDispatcher;)V +MD: net/minecraft/server/commands/ForceLoadCommand/m_137678_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/ForceLoadCommand/lambda$register$9 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/ForceLoadCommand/m_137680_ (Lnet/minecraft/commands/CommandSourceStack;)I net/minecraft/server/commands/ForceLoadCommand/listForceLoad (Lnet/minecraft/commands/CommandSourceStack;)I +MD: net/minecraft/server/commands/ForceLoadCommand/m_137682_ (Lnet/minecraft/commands/CommandSourceStack;Lnet/minecraft/server/level/ColumnPos;)I net/minecraft/server/commands/ForceLoadCommand/queryForceLoad (Lnet/minecraft/commands/CommandSourceStack;Lnet/minecraft/server/level/ColumnPos;)I +MD: net/minecraft/server/commands/ForceLoadCommand/m_137685_ (Lnet/minecraft/commands/CommandSourceStack;Lnet/minecraft/server/level/ColumnPos;Lnet/minecraft/server/level/ColumnPos;Z)I net/minecraft/server/commands/ForceLoadCommand/changeForceLoad (Lnet/minecraft/commands/CommandSourceStack;Lnet/minecraft/server/level/ColumnPos;Lnet/minecraft/server/level/ColumnPos;Z)I +MD: net/minecraft/server/commands/ForceLoadCommand/m_137690_ (Ljava/lang/Object;Ljava/lang/Object;)Lcom/mojang/brigadier/Message; net/minecraft/server/commands/ForceLoadCommand/lambda$static$1 (Ljava/lang/Object;Ljava/lang/Object;)Lcom/mojang/brigadier/Message; +MD: net/minecraft/server/commands/ForceLoadCommand/m_137693_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/ForceLoadCommand/lambda$register$8 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/ForceLoadCommand/m_137695_ (Lnet/minecraft/commands/CommandSourceStack;)I net/minecraft/server/commands/ForceLoadCommand/removeAll (Lnet/minecraft/commands/CommandSourceStack;)I +MD: net/minecraft/server/commands/ForceLoadCommand/m_137697_ (Ljava/lang/Object;Ljava/lang/Object;)Lcom/mojang/brigadier/Message; net/minecraft/server/commands/ForceLoadCommand/lambda$static$0 (Ljava/lang/Object;Ljava/lang/Object;)Lcom/mojang/brigadier/Message; +MD: net/minecraft/server/commands/ForceLoadCommand/m_137700_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/ForceLoadCommand/lambda$register$7 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/ForceLoadCommand/m_137702_ (Lnet/minecraft/commands/CommandSourceStack;)Z net/minecraft/server/commands/ForceLoadCommand/lambda$register$2 (Lnet/minecraft/commands/CommandSourceStack;)Z +MD: net/minecraft/server/commands/ForceLoadCommand/m_137704_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/ForceLoadCommand/lambda$register$6 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/ForceLoadCommand/m_137706_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/ForceLoadCommand/lambda$register$5 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/ForceLoadCommand/m_137708_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/ForceLoadCommand/lambda$register$4 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/ForceLoadCommand/m_137710_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/ForceLoadCommand/lambda$register$3 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/ForceLoadCommand/m_287899_ (ZLnet/minecraft/world/level/ChunkPos;Lnet/minecraft/resources/ResourceKey;)Lnet/minecraft/network/chat/Component; net/minecraft/server/commands/ForceLoadCommand/lambda$changeForceLoad$15 (ZLnet/minecraft/world/level/ChunkPos;Lnet/minecraft/resources/ResourceKey;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/commands/ForceLoadCommand/m_287900_ (Lnet/minecraft/world/level/ChunkPos;Lnet/minecraft/resources/ResourceKey;)Lnet/minecraft/network/chat/Component; net/minecraft/server/commands/ForceLoadCommand/lambda$queryForceLoad$10 (Lnet/minecraft/world/level/ChunkPos;Lnet/minecraft/resources/ResourceKey;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/commands/ForceLoadCommand/m_287901_ (Lnet/minecraft/resources/ResourceKey;Ljava/lang/String;)Lnet/minecraft/network/chat/Component; net/minecraft/server/commands/ForceLoadCommand/lambda$listForceLoad$11 (Lnet/minecraft/resources/ResourceKey;Ljava/lang/String;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/commands/ForceLoadCommand/m_287902_ (ZLnet/minecraft/world/level/ChunkPos;Lnet/minecraft/resources/ResourceKey;Lnet/minecraft/world/level/ChunkPos;Lnet/minecraft/world/level/ChunkPos;)Lnet/minecraft/network/chat/Component; net/minecraft/server/commands/ForceLoadCommand/lambda$changeForceLoad$16 (ZLnet/minecraft/world/level/ChunkPos;Lnet/minecraft/resources/ResourceKey;Lnet/minecraft/world/level/ChunkPos;Lnet/minecraft/world/level/ChunkPos;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/commands/ForceLoadCommand/m_287903_ (Lnet/minecraft/resources/ResourceKey;)Lnet/minecraft/network/chat/Component; net/minecraft/server/commands/ForceLoadCommand/lambda$removeAll$14 (Lnet/minecraft/resources/ResourceKey;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/commands/ForceLoadCommand/m_287904_ (ILnet/minecraft/resources/ResourceKey;Ljava/lang/String;)Lnet/minecraft/network/chat/Component; net/minecraft/server/commands/ForceLoadCommand/lambda$listForceLoad$12 (ILnet/minecraft/resources/ResourceKey;Ljava/lang/String;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/commands/FunctionCommand/ ()V net/minecraft/server/commands/FunctionCommand/ ()V +MD: net/minecraft/server/commands/FunctionCommand/ ()V net/minecraft/server/commands/FunctionCommand/ ()V +MD: net/minecraft/server/commands/FunctionCommand/m_137714_ (Lcom/mojang/brigadier/CommandDispatcher;)V net/minecraft/server/commands/FunctionCommand/register (Lcom/mojang/brigadier/CommandDispatcher;)V +MD: net/minecraft/server/commands/FunctionCommand/m_137716_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/FunctionCommand/lambda$register$2 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/FunctionCommand/m_137718_ (Lcom/mojang/brigadier/context/CommandContext;Lcom/mojang/brigadier/suggestion/SuggestionsBuilder;)Ljava/util/concurrent/CompletableFuture; net/minecraft/server/commands/FunctionCommand/lambda$static$0 (Lcom/mojang/brigadier/context/CommandContext;Lcom/mojang/brigadier/suggestion/SuggestionsBuilder;)Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/server/commands/FunctionCommand/m_137721_ (Lnet/minecraft/commands/CommandSourceStack;)Z net/minecraft/server/commands/FunctionCommand/lambda$register$1 (Lnet/minecraft/commands/CommandSourceStack;)Z +MD: net/minecraft/server/commands/FunctionCommand/m_137723_ (Lnet/minecraft/commands/CommandSourceStack;Ljava/util/Collection;)I net/minecraft/server/commands/FunctionCommand/runFunction (Lnet/minecraft/commands/CommandSourceStack;Ljava/util/Collection;)I +MD: net/minecraft/server/commands/FunctionCommand/m_279881_ (Lorg/apache/commons/lang3/mutable/MutableObject;I)V net/minecraft/server/commands/FunctionCommand/lambda$runFunction$3 (Lorg/apache/commons/lang3/mutable/MutableObject;I)V +MD: net/minecraft/server/commands/FunctionCommand/m_287905_ (ILjava/util/Collection;)Lnet/minecraft/network/chat/Component; net/minecraft/server/commands/FunctionCommand/lambda$runFunction$4 (ILjava/util/Collection;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/commands/FunctionCommand/m_287906_ (ILjava/util/Collection;)Lnet/minecraft/network/chat/Component; net/minecraft/server/commands/FunctionCommand/lambda$runFunction$5 (ILjava/util/Collection;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/commands/FunctionCommand/m_287907_ (ILjava/util/Collection;)Lnet/minecraft/network/chat/Component; net/minecraft/server/commands/FunctionCommand/lambda$runFunction$7 (ILjava/util/Collection;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/commands/FunctionCommand/m_287908_ (Ljava/util/Collection;)Lnet/minecraft/network/chat/Component; net/minecraft/server/commands/FunctionCommand/lambda$runFunction$6 (Ljava/util/Collection;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/commands/GameModeCommand/ ()V net/minecraft/server/commands/GameModeCommand/ ()V +MD: net/minecraft/server/commands/GameModeCommand/m_137729_ (Lcom/mojang/brigadier/CommandDispatcher;)V net/minecraft/server/commands/GameModeCommand/register (Lcom/mojang/brigadier/CommandDispatcher;)V +MD: net/minecraft/server/commands/GameModeCommand/m_137731_ (Lcom/mojang/brigadier/context/CommandContext;Ljava/util/Collection;Lnet/minecraft/world/level/GameType;)I net/minecraft/server/commands/GameModeCommand/setMode (Lcom/mojang/brigadier/context/CommandContext;Ljava/util/Collection;Lnet/minecraft/world/level/GameType;)I +MD: net/minecraft/server/commands/GameModeCommand/m_137735_ (Lnet/minecraft/commands/CommandSourceStack;)Z net/minecraft/server/commands/GameModeCommand/lambda$register$0 (Lnet/minecraft/commands/CommandSourceStack;)Z +MD: net/minecraft/server/commands/GameModeCommand/m_137737_ (Lnet/minecraft/commands/CommandSourceStack;Lnet/minecraft/server/level/ServerPlayer;Lnet/minecraft/world/level/GameType;)V net/minecraft/server/commands/GameModeCommand/logGamemodeChange (Lnet/minecraft/commands/CommandSourceStack;Lnet/minecraft/server/level/ServerPlayer;Lnet/minecraft/world/level/GameType;)V +MD: net/minecraft/server/commands/GameModeCommand/m_257136_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/GameModeCommand/lambda$register$1 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/GameModeCommand/m_257137_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/GameModeCommand/lambda$register$2 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/GameModeCommand/m_287910_ (Lnet/minecraft/network/chat/Component;)Lnet/minecraft/network/chat/Component; net/minecraft/server/commands/GameModeCommand/lambda$logGamemodeChange$3 (Lnet/minecraft/network/chat/Component;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/commands/GameModeCommand/m_289067_ (Lnet/minecraft/server/level/ServerPlayer;Lnet/minecraft/network/chat/Component;)Lnet/minecraft/network/chat/Component; net/minecraft/server/commands/GameModeCommand/lambda$logGamemodeChange$4 (Lnet/minecraft/server/level/ServerPlayer;Lnet/minecraft/network/chat/Component;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/commands/GameRuleCommand/ ()V net/minecraft/server/commands/GameRuleCommand/ ()V +MD: net/minecraft/server/commands/GameRuleCommand/m_137744_ (Lcom/mojang/brigadier/CommandDispatcher;)V net/minecraft/server/commands/GameRuleCommand/register (Lcom/mojang/brigadier/CommandDispatcher;)V +MD: net/minecraft/server/commands/GameRuleCommand/m_137749_ (Lnet/minecraft/commands/CommandSourceStack;)Z net/minecraft/server/commands/GameRuleCommand/lambda$register$0 (Lnet/minecraft/commands/CommandSourceStack;)Z +MD: net/minecraft/server/commands/GameRuleCommand/m_137754_ (Lcom/mojang/brigadier/context/CommandContext;Lnet/minecraft/world/level/GameRules$Key;)I net/minecraft/server/commands/GameRuleCommand/setRule (Lcom/mojang/brigadier/context/CommandContext;Lnet/minecraft/world/level/GameRules$Key;)I +MD: net/minecraft/server/commands/GameRuleCommand/m_137757_ (Lnet/minecraft/commands/CommandSourceStack;Lnet/minecraft/world/level/GameRules$Key;)I net/minecraft/server/commands/GameRuleCommand/queryRule (Lnet/minecraft/commands/CommandSourceStack;Lnet/minecraft/world/level/GameRules$Key;)I +MD: net/minecraft/server/commands/GameRuleCommand/m_287911_ (Lnet/minecraft/world/level/GameRules$Key;Lnet/minecraft/world/level/GameRules$Value;)Lnet/minecraft/network/chat/Component; net/minecraft/server/commands/GameRuleCommand/lambda$setRule$1 (Lnet/minecraft/world/level/GameRules$Key;Lnet/minecraft/world/level/GameRules$Value;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/commands/GameRuleCommand/m_287912_ (Lnet/minecraft/world/level/GameRules$Key;Lnet/minecraft/world/level/GameRules$Value;)Lnet/minecraft/network/chat/Component; net/minecraft/server/commands/GameRuleCommand/lambda$queryRule$2 (Lnet/minecraft/world/level/GameRules$Key;Lnet/minecraft/world/level/GameRules$Value;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/commands/GameRuleCommand$1/ (Lcom/mojang/brigadier/builder/LiteralArgumentBuilder;)V net/minecraft/server/commands/GameRuleCommand$1/ (Lcom/mojang/brigadier/builder/LiteralArgumentBuilder;)V +MD: net/minecraft/server/commands/GameRuleCommand$1/m_137766_ (Lnet/minecraft/world/level/GameRules$Key;Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/GameRuleCommand$1/lambda$visit$1 (Lnet/minecraft/world/level/GameRules$Key;Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/GameRuleCommand$1/m_137769_ (Lnet/minecraft/world/level/GameRules$Key;Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/GameRuleCommand$1/lambda$visit$0 (Lnet/minecraft/world/level/GameRules$Key;Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/GameRuleCommand$1/m_6889_ (Lnet/minecraft/world/level/GameRules$Key;Lnet/minecraft/world/level/GameRules$Type;)V net/minecraft/server/commands/GameRuleCommand$1/visit (Lnet/minecraft/world/level/GameRules$Key;Lnet/minecraft/world/level/GameRules$Type;)V +MD: net/minecraft/server/commands/GiveCommand/ ()V net/minecraft/server/commands/GiveCommand/ ()V +MD: net/minecraft/server/commands/GiveCommand/m_137774_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/GiveCommand/lambda$register$2 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/GiveCommand/m_137776_ (Lnet/minecraft/commands/CommandSourceStack;)Z net/minecraft/server/commands/GiveCommand/lambda$register$0 (Lnet/minecraft/commands/CommandSourceStack;)Z +MD: net/minecraft/server/commands/GiveCommand/m_137778_ (Lnet/minecraft/commands/CommandSourceStack;Lnet/minecraft/commands/arguments/item/ItemInput;Ljava/util/Collection;I)I net/minecraft/server/commands/GiveCommand/giveItem (Lnet/minecraft/commands/CommandSourceStack;Lnet/minecraft/commands/arguments/item/ItemInput;Ljava/util/Collection;I)I +MD: net/minecraft/server/commands/GiveCommand/m_137783_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/GiveCommand/lambda$register$1 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/GiveCommand/m_214445_ (Lcom/mojang/brigadier/CommandDispatcher;Lnet/minecraft/commands/CommandBuildContext;)V net/minecraft/server/commands/GiveCommand/register (Lcom/mojang/brigadier/CommandDispatcher;Lnet/minecraft/commands/CommandBuildContext;)V +MD: net/minecraft/server/commands/GiveCommand/m_287913_ (ILnet/minecraft/world/item/ItemStack;Ljava/util/Collection;)Lnet/minecraft/network/chat/Component; net/minecraft/server/commands/GiveCommand/lambda$giveItem$4 (ILnet/minecraft/world/item/ItemStack;Ljava/util/Collection;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/commands/GiveCommand/m_289068_ (ILnet/minecraft/world/item/ItemStack;Ljava/util/Collection;)Lnet/minecraft/network/chat/Component; net/minecraft/server/commands/GiveCommand/lambda$giveItem$3 (ILnet/minecraft/world/item/ItemStack;Ljava/util/Collection;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/commands/HelpCommand/ ()V net/minecraft/server/commands/HelpCommand/ ()V +MD: net/minecraft/server/commands/HelpCommand/ ()V net/minecraft/server/commands/HelpCommand/ ()V +MD: net/minecraft/server/commands/HelpCommand/m_137787_ (Lcom/mojang/brigadier/CommandDispatcher;)V net/minecraft/server/commands/HelpCommand/register (Lcom/mojang/brigadier/CommandDispatcher;)V +MD: net/minecraft/server/commands/HelpCommand/m_287915_ (Lcom/mojang/brigadier/ParseResults;Ljava/lang/String;)Lnet/minecraft/network/chat/Component; net/minecraft/server/commands/HelpCommand/lambda$register$2 (Lcom/mojang/brigadier/ParseResults;Ljava/lang/String;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/commands/HelpCommand/m_287916_ (Ljava/lang/String;)Lnet/minecraft/network/chat/Component; net/minecraft/server/commands/HelpCommand/lambda$register$0 (Ljava/lang/String;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/commands/HelpCommand/m_287917_ (Lcom/mojang/brigadier/CommandDispatcher;Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/HelpCommand/lambda$register$3 (Lcom/mojang/brigadier/CommandDispatcher;Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/HelpCommand/m_287918_ (Lcom/mojang/brigadier/CommandDispatcher;Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/HelpCommand/lambda$register$1 (Lcom/mojang/brigadier/CommandDispatcher;Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/ItemCommands/ ()V net/minecraft/server/commands/ItemCommands/ ()V +MD: net/minecraft/server/commands/ItemCommands/ ()V net/minecraft/server/commands/ItemCommands/ ()V +MD: net/minecraft/server/commands/ItemCommands/m_180245_ (Lnet/minecraft/world/entity/Entity;I)Lnet/minecraft/world/item/ItemStack; net/minecraft/server/commands/ItemCommands/getEntityItem (Lnet/minecraft/world/entity/Entity;I)Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/server/commands/ItemCommands/m_180250_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/ItemCommands/lambda$register$21 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/ItemCommands/m_180255_ (Lnet/minecraft/commands/CommandSourceStack;)Z net/minecraft/server/commands/ItemCommands/lambda$register$7 (Lnet/minecraft/commands/CommandSourceStack;)Z +MD: net/minecraft/server/commands/ItemCommands/m_180257_ (Lnet/minecraft/commands/CommandSourceStack;Lnet/minecraft/world/entity/Entity;ILnet/minecraft/core/BlockPos;I)I net/minecraft/server/commands/ItemCommands/entityToBlock (Lnet/minecraft/commands/CommandSourceStack;Lnet/minecraft/world/entity/Entity;ILnet/minecraft/core/BlockPos;I)I +MD: net/minecraft/server/commands/ItemCommands/m_180263_ (Lnet/minecraft/commands/CommandSourceStack;Lnet/minecraft/world/entity/Entity;ILnet/minecraft/core/BlockPos;ILnet/minecraft/world/level/storage/loot/functions/LootItemFunction;)I net/minecraft/server/commands/ItemCommands/entityToBlock (Lnet/minecraft/commands/CommandSourceStack;Lnet/minecraft/world/entity/Entity;ILnet/minecraft/core/BlockPos;ILnet/minecraft/world/level/storage/loot/functions/LootItemFunction;)I +MD: net/minecraft/server/commands/ItemCommands/m_180270_ (Lnet/minecraft/commands/CommandSourceStack;Lnet/minecraft/world/entity/Entity;ILjava/util/Collection;I)I net/minecraft/server/commands/ItemCommands/entityToEntities (Lnet/minecraft/commands/CommandSourceStack;Lnet/minecraft/world/entity/Entity;ILjava/util/Collection;I)I +MD: net/minecraft/server/commands/ItemCommands/m_180276_ (Lnet/minecraft/commands/CommandSourceStack;Lnet/minecraft/world/entity/Entity;ILjava/util/Collection;ILnet/minecraft/world/level/storage/loot/functions/LootItemFunction;)I net/minecraft/server/commands/ItemCommands/entityToEntities (Lnet/minecraft/commands/CommandSourceStack;Lnet/minecraft/world/entity/Entity;ILjava/util/Collection;ILnet/minecraft/world/level/storage/loot/functions/LootItemFunction;)I +MD: net/minecraft/server/commands/ItemCommands/m_180283_ (Lnet/minecraft/commands/CommandSourceStack;Lnet/minecraft/world/level/storage/loot/functions/LootItemFunction;Lnet/minecraft/world/item/ItemStack;)Lnet/minecraft/world/item/ItemStack; net/minecraft/server/commands/ItemCommands/applyModifier (Lnet/minecraft/commands/CommandSourceStack;Lnet/minecraft/world/level/storage/loot/functions/LootItemFunction;Lnet/minecraft/world/item/ItemStack;)Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/server/commands/ItemCommands/m_180287_ (Lnet/minecraft/commands/CommandSourceStack;Lnet/minecraft/core/BlockPos;I)Lnet/minecraft/world/item/ItemStack; net/minecraft/server/commands/ItemCommands/getBlockItem (Lnet/minecraft/commands/CommandSourceStack;Lnet/minecraft/core/BlockPos;I)Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/server/commands/ItemCommands/m_180291_ (Lnet/minecraft/commands/CommandSourceStack;Lnet/minecraft/core/BlockPos;ILnet/minecraft/world/item/ItemStack;)I net/minecraft/server/commands/ItemCommands/setBlockItem (Lnet/minecraft/commands/CommandSourceStack;Lnet/minecraft/core/BlockPos;ILnet/minecraft/world/item/ItemStack;)I +MD: net/minecraft/server/commands/ItemCommands/m_180296_ (Lnet/minecraft/commands/CommandSourceStack;Lnet/minecraft/core/BlockPos;ILnet/minecraft/world/level/storage/loot/functions/LootItemFunction;)I net/minecraft/server/commands/ItemCommands/modifyBlockItem (Lnet/minecraft/commands/CommandSourceStack;Lnet/minecraft/core/BlockPos;ILnet/minecraft/world/level/storage/loot/functions/LootItemFunction;)I +MD: net/minecraft/server/commands/ItemCommands/m_180301_ (Lnet/minecraft/commands/CommandSourceStack;Lnet/minecraft/core/BlockPos;ILnet/minecraft/core/BlockPos;I)I net/minecraft/server/commands/ItemCommands/blockToBlock (Lnet/minecraft/commands/CommandSourceStack;Lnet/minecraft/core/BlockPos;ILnet/minecraft/core/BlockPos;I)I +MD: net/minecraft/server/commands/ItemCommands/m_180307_ (Lnet/minecraft/commands/CommandSourceStack;Lnet/minecraft/core/BlockPos;ILnet/minecraft/core/BlockPos;ILnet/minecraft/world/level/storage/loot/functions/LootItemFunction;)I net/minecraft/server/commands/ItemCommands/blockToBlock (Lnet/minecraft/commands/CommandSourceStack;Lnet/minecraft/core/BlockPos;ILnet/minecraft/core/BlockPos;ILnet/minecraft/world/level/storage/loot/functions/LootItemFunction;)I +MD: net/minecraft/server/commands/ItemCommands/m_180314_ (Lnet/minecraft/commands/CommandSourceStack;Lnet/minecraft/core/BlockPos;ILjava/util/Collection;I)I net/minecraft/server/commands/ItemCommands/blockToEntities (Lnet/minecraft/commands/CommandSourceStack;Lnet/minecraft/core/BlockPos;ILjava/util/Collection;I)I +MD: net/minecraft/server/commands/ItemCommands/m_180320_ (Lnet/minecraft/commands/CommandSourceStack;Lnet/minecraft/core/BlockPos;ILjava/util/Collection;ILnet/minecraft/world/level/storage/loot/functions/LootItemFunction;)I net/minecraft/server/commands/ItemCommands/blockToEntities (Lnet/minecraft/commands/CommandSourceStack;Lnet/minecraft/core/BlockPos;ILjava/util/Collection;ILnet/minecraft/world/level/storage/loot/functions/LootItemFunction;)I +MD: net/minecraft/server/commands/ItemCommands/m_180327_ (Lnet/minecraft/commands/CommandSourceStack;Lnet/minecraft/core/BlockPos;Lcom/mojang/brigadier/exceptions/Dynamic3CommandExceptionType;)Lnet/minecraft/world/Container; net/minecraft/server/commands/ItemCommands/getContainer (Lnet/minecraft/commands/CommandSourceStack;Lnet/minecraft/core/BlockPos;Lcom/mojang/brigadier/exceptions/Dynamic3CommandExceptionType;)Lnet/minecraft/world/Container; +MD: net/minecraft/server/commands/ItemCommands/m_180331_ (Lnet/minecraft/commands/CommandSourceStack;Ljava/util/Collection;ILnet/minecraft/world/item/ItemStack;)I net/minecraft/server/commands/ItemCommands/setEntityItem (Lnet/minecraft/commands/CommandSourceStack;Ljava/util/Collection;ILnet/minecraft/world/item/ItemStack;)I +MD: net/minecraft/server/commands/ItemCommands/m_180336_ (Lnet/minecraft/commands/CommandSourceStack;Ljava/util/Collection;ILnet/minecraft/world/level/storage/loot/functions/LootItemFunction;)I net/minecraft/server/commands/ItemCommands/modifyEntityItem (Lnet/minecraft/commands/CommandSourceStack;Ljava/util/Collection;ILnet/minecraft/world/level/storage/loot/functions/LootItemFunction;)I +MD: net/minecraft/server/commands/ItemCommands/m_180341_ (Ljava/lang/Object;)Lcom/mojang/brigadier/Message; net/minecraft/server/commands/ItemCommands/lambda$static$4 (Ljava/lang/Object;)Lcom/mojang/brigadier/Message; +MD: net/minecraft/server/commands/ItemCommands/m_180343_ (Ljava/lang/Object;Ljava/lang/Object;)Lcom/mojang/brigadier/Message; net/minecraft/server/commands/ItemCommands/lambda$static$5 (Ljava/lang/Object;Ljava/lang/Object;)Lcom/mojang/brigadier/Message; +MD: net/minecraft/server/commands/ItemCommands/m_180346_ (Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;)Lcom/mojang/brigadier/Message; net/minecraft/server/commands/ItemCommands/lambda$static$1 (Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;)Lcom/mojang/brigadier/Message; +MD: net/minecraft/server/commands/ItemCommands/m_180350_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/ItemCommands/lambda$register$20 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/ItemCommands/m_180352_ (Ljava/lang/Object;)Lcom/mojang/brigadier/Message; net/minecraft/server/commands/ItemCommands/lambda$static$3 (Ljava/lang/Object;)Lcom/mojang/brigadier/Message; +MD: net/minecraft/server/commands/ItemCommands/m_180354_ (Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;)Lcom/mojang/brigadier/Message; net/minecraft/server/commands/ItemCommands/lambda$static$0 (Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;)Lcom/mojang/brigadier/Message; +MD: net/minecraft/server/commands/ItemCommands/m_180358_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/ItemCommands/lambda$register$19 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/ItemCommands/m_180360_ (Ljava/lang/Object;)Lcom/mojang/brigadier/Message; net/minecraft/server/commands/ItemCommands/lambda$static$2 (Ljava/lang/Object;)Lcom/mojang/brigadier/Message; +MD: net/minecraft/server/commands/ItemCommands/m_180362_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/ItemCommands/lambda$register$18 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/ItemCommands/m_180364_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/ItemCommands/lambda$register$17 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/ItemCommands/m_180366_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/ItemCommands/lambda$register$16 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/ItemCommands/m_180368_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/ItemCommands/lambda$register$15 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/ItemCommands/m_180370_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/ItemCommands/lambda$register$14 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/ItemCommands/m_180372_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/ItemCommands/lambda$register$13 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/ItemCommands/m_180374_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/ItemCommands/lambda$register$12 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/ItemCommands/m_180376_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/ItemCommands/lambda$register$11 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/ItemCommands/m_180378_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/ItemCommands/lambda$register$10 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/ItemCommands/m_180380_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/ItemCommands/lambda$register$9 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/ItemCommands/m_180382_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/ItemCommands/lambda$register$8 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/ItemCommands/m_214448_ (Lcom/mojang/brigadier/CommandDispatcher;Lnet/minecraft/commands/CommandBuildContext;)V net/minecraft/server/commands/ItemCommands/register (Lcom/mojang/brigadier/CommandDispatcher;Lnet/minecraft/commands/CommandBuildContext;)V +MD: net/minecraft/server/commands/ItemCommands/m_278537_ (Lcom/mojang/brigadier/context/CommandContext;Lcom/mojang/brigadier/suggestion/SuggestionsBuilder;)Ljava/util/concurrent/CompletableFuture; net/minecraft/server/commands/ItemCommands/lambda$static$6 (Lcom/mojang/brigadier/context/CommandContext;Lcom/mojang/brigadier/suggestion/SuggestionsBuilder;)Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/server/commands/ItemCommands/m_287919_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/item/ItemStack;)Lnet/minecraft/network/chat/Component; net/minecraft/server/commands/ItemCommands/lambda$modifyBlockItem$22 (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/item/ItemStack;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/commands/ItemCommands/m_287920_ (Ljava/util/Map;)Lnet/minecraft/network/chat/Component; net/minecraft/server/commands/ItemCommands/lambda$modifyEntityItem$24 (Ljava/util/Map;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/commands/ItemCommands/m_287921_ (Ljava/util/List;Lnet/minecraft/world/item/ItemStack;)Lnet/minecraft/network/chat/Component; net/minecraft/server/commands/ItemCommands/lambda$setEntityItem$27 (Ljava/util/List;Lnet/minecraft/world/item/ItemStack;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/commands/ItemCommands/m_287922_ (Ljava/util/Map$Entry;)Lnet/minecraft/network/chat/Component; net/minecraft/server/commands/ItemCommands/lambda$modifyEntityItem$23 (Ljava/util/Map$Entry;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/commands/ItemCommands/m_287923_ (Ljava/util/List;Lnet/minecraft/world/item/ItemStack;)Lnet/minecraft/network/chat/Component; net/minecraft/server/commands/ItemCommands/lambda$setEntityItem$26 (Ljava/util/List;Lnet/minecraft/world/item/ItemStack;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/commands/ItemCommands/m_287924_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/item/ItemStack;)Lnet/minecraft/network/chat/Component; net/minecraft/server/commands/ItemCommands/lambda$setBlockItem$25 (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/item/ItemStack;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/commands/JfrCommand/ ()V net/minecraft/server/commands/JfrCommand/ ()V +MD: net/minecraft/server/commands/JfrCommand/ ()V net/minecraft/server/commands/JfrCommand/ ()V +MD: net/minecraft/server/commands/JfrCommand/m_183645_ (Lcom/mojang/brigadier/CommandDispatcher;)V net/minecraft/server/commands/JfrCommand/register (Lcom/mojang/brigadier/CommandDispatcher;)V +MD: net/minecraft/server/commands/JfrCommand/m_183647_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/JfrCommand/lambda$register$3 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/JfrCommand/m_183649_ (Lnet/minecraft/commands/CommandSourceStack;)I net/minecraft/server/commands/JfrCommand/startJfr (Lnet/minecraft/commands/CommandSourceStack;)I +MD: net/minecraft/server/commands/JfrCommand/m_183651_ (Ljava/lang/Object;)Lcom/mojang/brigadier/Message; net/minecraft/server/commands/JfrCommand/lambda$static$0 (Ljava/lang/Object;)Lcom/mojang/brigadier/Message; +MD: net/minecraft/server/commands/JfrCommand/m_183653_ (Ljava/nio/file/Path;Lnet/minecraft/network/chat/Style;)Lnet/minecraft/network/chat/Style; net/minecraft/server/commands/JfrCommand/lambda$stopJfr$5 (Ljava/nio/file/Path;Lnet/minecraft/network/chat/Style;)Lnet/minecraft/network/chat/Style; +MD: net/minecraft/server/commands/JfrCommand/m_183656_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/JfrCommand/lambda$register$2 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/JfrCommand/m_183658_ (Lnet/minecraft/commands/CommandSourceStack;)I net/minecraft/server/commands/JfrCommand/stopJfr (Lnet/minecraft/commands/CommandSourceStack;)I +MD: net/minecraft/server/commands/JfrCommand/m_183660_ (Lnet/minecraft/commands/CommandSourceStack;)Z net/minecraft/server/commands/JfrCommand/lambda$register$1 (Lnet/minecraft/commands/CommandSourceStack;)Z +MD: net/minecraft/server/commands/JfrCommand/m_287925_ (Lnet/minecraft/network/chat/Component;)Lnet/minecraft/network/chat/Component; net/minecraft/server/commands/JfrCommand/lambda$stopJfr$6 (Lnet/minecraft/network/chat/Component;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/commands/JfrCommand/m_287926_ ()Lnet/minecraft/network/chat/Component; net/minecraft/server/commands/JfrCommand/lambda$startJfr$4 ()Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/commands/KickCommand/ ()V net/minecraft/server/commands/KickCommand/ ()V +MD: net/minecraft/server/commands/KickCommand/m_137795_ (Lcom/mojang/brigadier/CommandDispatcher;)V net/minecraft/server/commands/KickCommand/register (Lcom/mojang/brigadier/CommandDispatcher;)V +MD: net/minecraft/server/commands/KickCommand/m_137797_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/KickCommand/lambda$register$2 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/KickCommand/m_137799_ (Lnet/minecraft/commands/CommandSourceStack;)Z net/minecraft/server/commands/KickCommand/lambda$register$0 (Lnet/minecraft/commands/CommandSourceStack;)Z +MD: net/minecraft/server/commands/KickCommand/m_137801_ (Lnet/minecraft/commands/CommandSourceStack;Ljava/util/Collection;Lnet/minecraft/network/chat/Component;)I net/minecraft/server/commands/KickCommand/kickPlayers (Lnet/minecraft/commands/CommandSourceStack;Ljava/util/Collection;Lnet/minecraft/network/chat/Component;)I +MD: net/minecraft/server/commands/KickCommand/m_137805_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/KickCommand/lambda$register$1 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/KickCommand/m_289069_ (Lnet/minecraft/server/level/ServerPlayer;Lnet/minecraft/network/chat/Component;)Lnet/minecraft/network/chat/Component; net/minecraft/server/commands/KickCommand/lambda$kickPlayers$3 (Lnet/minecraft/server/level/ServerPlayer;Lnet/minecraft/network/chat/Component;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/commands/KillCommand/ ()V net/minecraft/server/commands/KillCommand/ ()V +MD: net/minecraft/server/commands/KillCommand/m_137807_ (Lcom/mojang/brigadier/CommandDispatcher;)V net/minecraft/server/commands/KillCommand/register (Lcom/mojang/brigadier/CommandDispatcher;)V +MD: net/minecraft/server/commands/KillCommand/m_137809_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/KillCommand/lambda$register$2 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/KillCommand/m_137811_ (Lnet/minecraft/commands/CommandSourceStack;)Z net/minecraft/server/commands/KillCommand/lambda$register$0 (Lnet/minecraft/commands/CommandSourceStack;)Z +MD: net/minecraft/server/commands/KillCommand/m_137813_ (Lnet/minecraft/commands/CommandSourceStack;Ljava/util/Collection;)I net/minecraft/server/commands/KillCommand/kill (Lnet/minecraft/commands/CommandSourceStack;Ljava/util/Collection;)I +MD: net/minecraft/server/commands/KillCommand/m_137816_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/KillCommand/lambda$register$1 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/KillCommand/m_287928_ (Ljava/util/Collection;)Lnet/minecraft/network/chat/Component; net/minecraft/server/commands/KillCommand/lambda$kill$3 (Ljava/util/Collection;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/commands/KillCommand/m_287929_ (Ljava/util/Collection;)Lnet/minecraft/network/chat/Component; net/minecraft/server/commands/KillCommand/lambda$kill$4 (Ljava/util/Collection;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/commands/ListPlayersCommand/ ()V net/minecraft/server/commands/ListPlayersCommand/ ()V +MD: net/minecraft/server/commands/ListPlayersCommand/m_137820_ (Lcom/mojang/brigadier/CommandDispatcher;)V net/minecraft/server/commands/ListPlayersCommand/register (Lcom/mojang/brigadier/CommandDispatcher;)V +MD: net/minecraft/server/commands/ListPlayersCommand/m_137822_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/ListPlayersCommand/lambda$register$1 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/ListPlayersCommand/m_137824_ (Lnet/minecraft/commands/CommandSourceStack;)I net/minecraft/server/commands/ListPlayersCommand/listPlayers (Lnet/minecraft/commands/CommandSourceStack;)I +MD: net/minecraft/server/commands/ListPlayersCommand/m_137826_ (Lnet/minecraft/commands/CommandSourceStack;Ljava/util/function/Function;)I net/minecraft/server/commands/ListPlayersCommand/format (Lnet/minecraft/commands/CommandSourceStack;Ljava/util/function/Function;)I +MD: net/minecraft/server/commands/ListPlayersCommand/m_137829_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/ListPlayersCommand/lambda$register$0 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/ListPlayersCommand/m_137831_ (Lnet/minecraft/commands/CommandSourceStack;)I net/minecraft/server/commands/ListPlayersCommand/listPlayersWithUuids (Lnet/minecraft/commands/CommandSourceStack;)I +MD: net/minecraft/server/commands/ListPlayersCommand/m_287930_ (Ljava/util/List;Lnet/minecraft/server/players/PlayerList;Lnet/minecraft/network/chat/Component;)Lnet/minecraft/network/chat/Component; net/minecraft/server/commands/ListPlayersCommand/lambda$format$3 (Ljava/util/List;Lnet/minecraft/server/players/PlayerList;Lnet/minecraft/network/chat/Component;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/commands/ListPlayersCommand/m_289070_ (Lnet/minecraft/server/level/ServerPlayer;)Lnet/minecraft/network/chat/Component; net/minecraft/server/commands/ListPlayersCommand/lambda$listPlayersWithUuids$2 (Lnet/minecraft/server/level/ServerPlayer;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/commands/LocateCommand/ ()V net/minecraft/server/commands/LocateCommand/ ()V +MD: net/minecraft/server/commands/LocateCommand/ ()V net/minecraft/server/commands/LocateCommand/ ()V +MD: net/minecraft/server/commands/LocateCommand/m_137853_ (IIII)F net/minecraft/server/commands/LocateCommand/dist (IIII)F +MD: net/minecraft/server/commands/LocateCommand/m_201830_ (Ljava/lang/Object;)Lcom/mojang/brigadier/Message; net/minecraft/server/commands/LocateCommand/lambda$static$0 (Ljava/lang/Object;)Lcom/mojang/brigadier/Message; +MD: net/minecraft/server/commands/LocateCommand/m_207533_ (Ljava/lang/Object;)Lcom/mojang/brigadier/Message; net/minecraft/server/commands/LocateCommand/lambda$static$1 (Ljava/lang/Object;)Lcom/mojang/brigadier/Message; +MD: net/minecraft/server/commands/LocateCommand/m_214462_ (Lnet/minecraft/resources/ResourceKey;)Ljava/lang/String; net/minecraft/server/commands/LocateCommand/lambda$showLocateResult$14 (Lnet/minecraft/resources/ResourceKey;)Ljava/lang/String; +MD: net/minecraft/server/commands/LocateCommand/m_214469_ (Lnet/minecraft/commands/CommandSourceStack;)Z net/minecraft/server/commands/LocateCommand/lambda$register$4 (Lnet/minecraft/commands/CommandSourceStack;)Z +MD: net/minecraft/server/commands/LocateCommand/m_214471_ (Lnet/minecraft/commands/CommandSourceStack;Lnet/minecraft/commands/arguments/ResourceOrTagKeyArgument$Result;)I net/minecraft/server/commands/LocateCommand/locateStructure (Lnet/minecraft/commands/CommandSourceStack;Lnet/minecraft/commands/arguments/ResourceOrTagKeyArgument$Result;)I +MD: net/minecraft/server/commands/LocateCommand/m_214486_ (Lnet/minecraft/core/BlockPos;Ljava/lang/String;Lnet/minecraft/network/chat/Style;)Lnet/minecraft/network/chat/Style; net/minecraft/server/commands/LocateCommand/lambda$showLocateResult$16 (Lnet/minecraft/core/BlockPos;Ljava/lang/String;Lnet/minecraft/network/chat/Style;)Lnet/minecraft/network/chat/Style; +MD: net/minecraft/server/commands/LocateCommand/m_214490_ (Lnet/minecraft/core/Holder;)Lnet/minecraft/core/HolderSet$Direct; net/minecraft/server/commands/LocateCommand/lambda$getHolders$8 (Lnet/minecraft/core/Holder;)Lnet/minecraft/core/HolderSet$Direct; +MD: net/minecraft/server/commands/LocateCommand/m_214497_ (Lnet/minecraft/resources/ResourceKey;)Ljava/lang/String; net/minecraft/server/commands/LocateCommand/lambda$getElementName$11 (Lnet/minecraft/resources/ResourceKey;)Ljava/lang/String; +MD: net/minecraft/server/commands/LocateCommand/m_214511_ (Ljava/lang/Object;)Lcom/mojang/brigadier/Message; net/minecraft/server/commands/LocateCommand/lambda$static$3 (Ljava/lang/Object;)Lcom/mojang/brigadier/Message; +MD: net/minecraft/server/commands/LocateCommand/m_214513_ (Ljava/lang/Object;)Lcom/mojang/brigadier/Message; net/minecraft/server/commands/LocateCommand/lambda$static$2 (Ljava/lang/Object;)Lcom/mojang/brigadier/Message; +MD: net/minecraft/server/commands/LocateCommand/m_244840_ (Lnet/minecraft/commands/arguments/ResourceOrTagKeyArgument$Result;)Lcom/mojang/brigadier/exceptions/CommandSyntaxException; net/minecraft/server/commands/LocateCommand/lambda$locateStructure$10 (Lnet/minecraft/commands/arguments/ResourceOrTagKeyArgument$Result;)Lcom/mojang/brigadier/exceptions/CommandSyntaxException; +MD: net/minecraft/server/commands/LocateCommand/m_244842_ (Lnet/minecraft/commands/arguments/ResourceOrTagArgument$Result;Lcom/mojang/datafixers/util/Pair;Lnet/minecraft/core/HolderSet$Named;)Ljava/lang/String; net/minecraft/server/commands/LocateCommand/lambda$showLocateResult$13 (Lnet/minecraft/commands/arguments/ResourceOrTagArgument$Result;Lcom/mojang/datafixers/util/Pair;Lnet/minecraft/core/HolderSet$Named;)Ljava/lang/String; +MD: net/minecraft/server/commands/LocateCommand/m_244843_ (Lcom/mojang/datafixers/util/Pair;Lnet/minecraft/tags/TagKey;)Ljava/lang/String; net/minecraft/server/commands/LocateCommand/lambda$showLocateResult$15 (Lcom/mojang/datafixers/util/Pair;Lnet/minecraft/tags/TagKey;)Ljava/lang/String; +MD: net/minecraft/server/commands/LocateCommand/m_244844_ (Lnet/minecraft/commands/arguments/ResourceOrTagArgument$Result;Lnet/minecraft/core/Holder$Reference;)Ljava/lang/String; net/minecraft/server/commands/LocateCommand/lambda$showLocateResult$12 (Lnet/minecraft/commands/arguments/ResourceOrTagArgument$Result;Lnet/minecraft/core/Holder$Reference;)Ljava/lang/String; +MD: net/minecraft/server/commands/LocateCommand/m_245206_ (Lnet/minecraft/commands/CommandSourceStack;Lnet/minecraft/commands/arguments/ResourceOrTagArgument$Result;)I net/minecraft/server/commands/LocateCommand/locatePoi (Lnet/minecraft/commands/CommandSourceStack;Lnet/minecraft/commands/arguments/ResourceOrTagArgument$Result;)I +MD: net/minecraft/server/commands/LocateCommand/m_245526_ (Lnet/minecraft/commands/arguments/ResourceOrTagKeyArgument$Result;Lnet/minecraft/core/Registry;)Ljava/util/Optional; net/minecraft/server/commands/LocateCommand/getHolders (Lnet/minecraft/commands/arguments/ResourceOrTagKeyArgument$Result;Lnet/minecraft/core/Registry;)Ljava/util/Optional; +MD: net/minecraft/server/commands/LocateCommand/m_245548_ (Lcom/mojang/datafixers/util/Pair;)Ljava/lang/String; net/minecraft/server/commands/LocateCommand/getElementName (Lcom/mojang/datafixers/util/Pair;)Ljava/lang/String; +MD: net/minecraft/server/commands/LocateCommand/m_246116_ (Lcom/mojang/brigadier/CommandDispatcher;Lnet/minecraft/commands/CommandBuildContext;)V net/minecraft/server/commands/LocateCommand/register (Lcom/mojang/brigadier/CommandDispatcher;Lnet/minecraft/commands/CommandBuildContext;)V +MD: net/minecraft/server/commands/LocateCommand/m_247543_ (Lnet/minecraft/commands/CommandSourceStack;Lnet/minecraft/commands/arguments/ResourceOrTagArgument$Result;)I net/minecraft/server/commands/LocateCommand/locateBiome (Lnet/minecraft/commands/CommandSourceStack;Lnet/minecraft/commands/arguments/ResourceOrTagArgument$Result;)I +MD: net/minecraft/server/commands/LocateCommand/m_257138_ (Lnet/minecraft/core/Registry;Lnet/minecraft/resources/ResourceKey;)Ljava/util/Optional; net/minecraft/server/commands/LocateCommand/lambda$getHolders$9 (Lnet/minecraft/core/Registry;Lnet/minecraft/resources/ResourceKey;)Ljava/util/Optional; +MD: net/minecraft/server/commands/LocateCommand/m_257139_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/LocateCommand/lambda$register$6 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/LocateCommand/m_257140_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/LocateCommand/lambda$register$5 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/LocateCommand/m_257141_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/LocateCommand/lambda$register$7 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/LocateCommand/m_262810_ (Lnet/minecraft/commands/CommandSourceStack;Lnet/minecraft/commands/arguments/ResourceOrTagKeyArgument$Result;Lnet/minecraft/core/BlockPos;Lcom/mojang/datafixers/util/Pair;Ljava/lang/String;ZLjava/time/Duration;)I net/minecraft/server/commands/LocateCommand/showLocateResult (Lnet/minecraft/commands/CommandSourceStack;Lnet/minecraft/commands/arguments/ResourceOrTagKeyArgument$Result;Lnet/minecraft/core/BlockPos;Lcom/mojang/datafixers/util/Pair;Ljava/lang/String;ZLjava/time/Duration;)I +MD: net/minecraft/server/commands/LocateCommand/m_262830_ (Lnet/minecraft/commands/CommandSourceStack;Lnet/minecraft/commands/arguments/ResourceOrTagArgument$Result;Lnet/minecraft/core/BlockPos;Lcom/mojang/datafixers/util/Pair;Ljava/lang/String;ZLjava/time/Duration;)I net/minecraft/server/commands/LocateCommand/showLocateResult (Lnet/minecraft/commands/CommandSourceStack;Lnet/minecraft/commands/arguments/ResourceOrTagArgument$Result;Lnet/minecraft/core/BlockPos;Lcom/mojang/datafixers/util/Pair;Ljava/lang/String;ZLjava/time/Duration;)I +MD: net/minecraft/server/commands/LocateCommand/m_262858_ (Lnet/minecraft/commands/CommandSourceStack;Lnet/minecraft/core/BlockPos;Lcom/mojang/datafixers/util/Pair;Ljava/lang/String;ZLjava/lang/String;Ljava/time/Duration;)I net/minecraft/server/commands/LocateCommand/showLocateResult (Lnet/minecraft/commands/CommandSourceStack;Lnet/minecraft/core/BlockPos;Lcom/mojang/datafixers/util/Pair;Ljava/lang/String;ZLjava/lang/String;Ljava/time/Duration;)I +MD: net/minecraft/server/commands/LocateCommand/m_287932_ (Ljava/lang/String;Ljava/lang/String;Lnet/minecraft/network/chat/Component;I)Lnet/minecraft/network/chat/Component; net/minecraft/server/commands/LocateCommand/lambda$showLocateResult$17 (Ljava/lang/String;Ljava/lang/String;Lnet/minecraft/network/chat/Component;I)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/commands/LootCommand/ ()V net/minecraft/server/commands/LootCommand/ ()V +MD: net/minecraft/server/commands/LootCommand/ ()V net/minecraft/server/commands/LootCommand/ ()V +MD: net/minecraft/server/commands/LootCommand/m_137881_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/phys/Vec3;Lnet/minecraft/world/item/ItemStack;)V net/minecraft/server/commands/LootCommand/lambda$dropInWorld$22 (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/phys/Vec3;Lnet/minecraft/world/item/ItemStack;)V +MD: net/minecraft/server/commands/LootCommand/m_137885_ (Lnet/minecraft/world/Container;Lnet/minecraft/world/item/ItemStack;)Z net/minecraft/server/commands/LootCommand/distributeToContainer (Lnet/minecraft/world/Container;Lnet/minecraft/world/item/ItemStack;)Z +MD: net/minecraft/server/commands/LootCommand/m_137888_ (Lnet/minecraft/world/entity/Entity;Ljava/util/List;IILjava/util/List;)V net/minecraft/server/commands/LootCommand/setSlots (Lnet/minecraft/world/entity/Entity;Ljava/util/List;IILjava/util/List;)V +MD: net/minecraft/server/commands/LootCommand/m_137894_ (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/item/ItemStack;)Z net/minecraft/server/commands/LootCommand/canMergeItems (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/item/ItemStack;)Z +MD: net/minecraft/server/commands/LootCommand/m_137902_ (Lcom/mojang/brigadier/builder/ArgumentBuilder;Lnet/minecraft/server/commands/LootCommand$TailProvider;)Lcom/mojang/brigadier/builder/ArgumentBuilder; net/minecraft/server/commands/LootCommand/addTargets (Lcom/mojang/brigadier/builder/ArgumentBuilder;Lnet/minecraft/server/commands/LootCommand$TailProvider;)Lcom/mojang/brigadier/builder/ArgumentBuilder; +MD: net/minecraft/server/commands/LootCommand/m_137905_ (Lcom/mojang/brigadier/context/CommandContext;Lnet/minecraft/world/entity/Entity;Lnet/minecraft/server/commands/LootCommand$DropConsumer;)I net/minecraft/server/commands/LootCommand/dropKillLoot (Lcom/mojang/brigadier/context/CommandContext;Lnet/minecraft/world/entity/Entity;Lnet/minecraft/server/commands/LootCommand$DropConsumer;)I +MD: net/minecraft/server/commands/LootCommand/m_137912_ (Lcom/mojang/brigadier/context/CommandContext;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/server/commands/LootCommand$DropConsumer;)I net/minecraft/server/commands/LootCommand/dropBlockLoot (Lcom/mojang/brigadier/context/CommandContext;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/server/commands/LootCommand$DropConsumer;)I +MD: net/minecraft/server/commands/LootCommand/m_137917_ (Lcom/mojang/brigadier/context/CommandContext;Ljava/util/List;Lnet/minecraft/server/commands/LootCommand$Callback;)I net/minecraft/server/commands/LootCommand/lambda$addTargets$21 (Lcom/mojang/brigadier/context/CommandContext;Ljava/util/List;Lnet/minecraft/server/commands/LootCommand$Callback;)I +MD: net/minecraft/server/commands/LootCommand/m_137926_ (Lcom/mojang/brigadier/context/CommandContext;Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/server/commands/LootCommand$DropConsumer;)I net/minecraft/server/commands/LootCommand/dropFishingLoot (Lcom/mojang/brigadier/context/CommandContext;Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/server/commands/LootCommand$DropConsumer;)I +MD: net/minecraft/server/commands/LootCommand/m_137932_ (Lcom/mojang/brigadier/context/CommandContext;Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/server/commands/LootCommand$DropConsumer;)I net/minecraft/server/commands/LootCommand/dropChestLoot (Lcom/mojang/brigadier/context/CommandContext;Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/server/commands/LootCommand$DropConsumer;)I +MD: net/minecraft/server/commands/LootCommand/m_137936_ (Lnet/minecraft/commands/CommandSourceStack;)Z net/minecraft/server/commands/LootCommand/lambda$register$3 (Lnet/minecraft/commands/CommandSourceStack;)Z +MD: net/minecraft/server/commands/LootCommand/m_137938_ (Lnet/minecraft/commands/CommandSourceStack;Lnet/minecraft/world/entity/EquipmentSlot;)Lnet/minecraft/world/item/ItemStack; net/minecraft/server/commands/LootCommand/getSourceHandItem (Lnet/minecraft/commands/CommandSourceStack;Lnet/minecraft/world/entity/EquipmentSlot;)Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/server/commands/LootCommand/m_137945_ (Lnet/minecraft/commands/CommandSourceStack;Lnet/minecraft/world/phys/Vec3;Ljava/util/List;Lnet/minecraft/server/commands/LootCommand$Callback;)I net/minecraft/server/commands/LootCommand/dropInWorld (Lnet/minecraft/commands/CommandSourceStack;Lnet/minecraft/world/phys/Vec3;Ljava/util/List;Lnet/minecraft/server/commands/LootCommand$Callback;)I +MD: net/minecraft/server/commands/LootCommand/m_137950_ (Lnet/minecraft/commands/CommandSourceStack;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/Container; net/minecraft/server/commands/LootCommand/getContainer (Lnet/minecraft/commands/CommandSourceStack;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/Container; +MD: net/minecraft/server/commands/LootCommand/m_137953_ (Lnet/minecraft/commands/CommandSourceStack;Lnet/minecraft/core/BlockPos;IILjava/util/List;Lnet/minecraft/server/commands/LootCommand$Callback;)I net/minecraft/server/commands/LootCommand/blockReplace (Lnet/minecraft/commands/CommandSourceStack;Lnet/minecraft/core/BlockPos;IILjava/util/List;Lnet/minecraft/server/commands/LootCommand$Callback;)I +MD: net/minecraft/server/commands/LootCommand/m_137960_ (Lnet/minecraft/commands/CommandSourceStack;Lnet/minecraft/core/BlockPos;Ljava/util/List;Lnet/minecraft/server/commands/LootCommand$Callback;)I net/minecraft/server/commands/LootCommand/blockDistribute (Lnet/minecraft/commands/CommandSourceStack;Lnet/minecraft/core/BlockPos;Ljava/util/List;Lnet/minecraft/server/commands/LootCommand$Callback;)I +MD: net/minecraft/server/commands/LootCommand/m_137965_ (Lnet/minecraft/commands/CommandSourceStack;Ljava/util/List;)V net/minecraft/server/commands/LootCommand/callback (Lnet/minecraft/commands/CommandSourceStack;Ljava/util/List;)V +MD: net/minecraft/server/commands/LootCommand/m_137968_ (Lnet/minecraft/commands/CommandSourceStack;Ljava/util/List;Lnet/minecraft/resources/ResourceLocation;)V net/minecraft/server/commands/LootCommand/callback (Lnet/minecraft/commands/CommandSourceStack;Ljava/util/List;Lnet/minecraft/resources/ResourceLocation;)V +MD: net/minecraft/server/commands/LootCommand/m_137972_ (Lnet/minecraft/commands/CommandSourceStack;Lnet/minecraft/resources/ResourceLocation;Ljava/util/List;)V net/minecraft/server/commands/LootCommand/lambda$dropKillLoot$28 (Lnet/minecraft/commands/CommandSourceStack;Lnet/minecraft/resources/ResourceLocation;Ljava/util/List;)V +MD: net/minecraft/server/commands/LootCommand/m_137976_ (Ljava/lang/Object;)Lcom/mojang/brigadier/Message; net/minecraft/server/commands/LootCommand/lambda$static$2 (Ljava/lang/Object;)Lcom/mojang/brigadier/Message; +MD: net/minecraft/server/commands/LootCommand/m_137978_ (Ljava/util/Collection;IILjava/util/List;Lnet/minecraft/server/commands/LootCommand$Callback;)I net/minecraft/server/commands/LootCommand/entityReplace (Ljava/util/Collection;IILjava/util/List;Lnet/minecraft/server/commands/LootCommand$Callback;)I +MD: net/minecraft/server/commands/LootCommand/m_137984_ (Ljava/util/Collection;Ljava/util/List;Lnet/minecraft/server/commands/LootCommand$Callback;)I net/minecraft/server/commands/LootCommand/playerGive (Ljava/util/Collection;Ljava/util/List;Lnet/minecraft/server/commands/LootCommand$Callback;)I +MD: net/minecraft/server/commands/LootCommand/m_137991_ (Lcom/mojang/brigadier/context/CommandContext;Ljava/util/List;Lnet/minecraft/server/commands/LootCommand$Callback;)I net/minecraft/server/commands/LootCommand/lambda$addTargets$20 (Lcom/mojang/brigadier/context/CommandContext;Ljava/util/List;Lnet/minecraft/server/commands/LootCommand$Callback;)I +MD: net/minecraft/server/commands/LootCommand/m_137995_ (Lnet/minecraft/commands/CommandSourceStack;Ljava/util/List;)V net/minecraft/server/commands/LootCommand/lambda$drop$29 (Lnet/minecraft/commands/CommandSourceStack;Ljava/util/List;)V +MD: net/minecraft/server/commands/LootCommand/m_137998_ (Ljava/lang/Object;)Lcom/mojang/brigadier/Message; net/minecraft/server/commands/LootCommand/lambda$static$1 (Ljava/lang/Object;)Lcom/mojang/brigadier/Message; +MD: net/minecraft/server/commands/LootCommand/m_138003_ (Lcom/mojang/brigadier/context/CommandContext;Ljava/util/List;Lnet/minecraft/server/commands/LootCommand$Callback;)I net/minecraft/server/commands/LootCommand/lambda$addTargets$19 (Lcom/mojang/brigadier/context/CommandContext;Ljava/util/List;Lnet/minecraft/server/commands/LootCommand$Callback;)I +MD: net/minecraft/server/commands/LootCommand/m_138010_ (Lcom/mojang/brigadier/context/CommandContext;Ljava/util/List;Lnet/minecraft/server/commands/LootCommand$Callback;)I net/minecraft/server/commands/LootCommand/lambda$addTargets$18 (Lcom/mojang/brigadier/context/CommandContext;Ljava/util/List;Lnet/minecraft/server/commands/LootCommand$Callback;)I +MD: net/minecraft/server/commands/LootCommand/m_138017_ (Lcom/mojang/brigadier/context/CommandContext;Ljava/util/List;Lnet/minecraft/server/commands/LootCommand$Callback;)I net/minecraft/server/commands/LootCommand/lambda$addTargets$17 (Lcom/mojang/brigadier/context/CommandContext;Ljava/util/List;Lnet/minecraft/server/commands/LootCommand$Callback;)I +MD: net/minecraft/server/commands/LootCommand/m_138024_ (Lcom/mojang/brigadier/context/CommandContext;Ljava/util/List;Lnet/minecraft/server/commands/LootCommand$Callback;)I net/minecraft/server/commands/LootCommand/lambda$addTargets$16 (Lcom/mojang/brigadier/context/CommandContext;Ljava/util/List;Lnet/minecraft/server/commands/LootCommand$Callback;)I +MD: net/minecraft/server/commands/LootCommand/m_138031_ (Lcom/mojang/brigadier/context/CommandContext;Ljava/util/List;Lnet/minecraft/server/commands/LootCommand$Callback;)I net/minecraft/server/commands/LootCommand/lambda$addTargets$15 (Lcom/mojang/brigadier/context/CommandContext;Ljava/util/List;Lnet/minecraft/server/commands/LootCommand$Callback;)I +MD: net/minecraft/server/commands/LootCommand/m_180392_ (Lnet/minecraft/server/commands/LootCommand$DropConsumer;Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/LootCommand/lambda$register$13 (Lnet/minecraft/server/commands/LootCommand$DropConsumer;Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/LootCommand/m_180395_ (Lnet/minecraft/server/commands/LootCommand$DropConsumer;Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/LootCommand/lambda$register$12 (Lnet/minecraft/server/commands/LootCommand$DropConsumer;Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/LootCommand/m_180398_ (Lnet/minecraft/server/commands/LootCommand$DropConsumer;Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/LootCommand/lambda$register$11 (Lnet/minecraft/server/commands/LootCommand$DropConsumer;Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/LootCommand/m_180401_ (Lnet/minecraft/server/commands/LootCommand$DropConsumer;Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/LootCommand/lambda$register$10 (Lnet/minecraft/server/commands/LootCommand$DropConsumer;Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/LootCommand/m_180404_ (Lnet/minecraft/server/commands/LootCommand$DropConsumer;Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/LootCommand/lambda$register$9 (Lnet/minecraft/server/commands/LootCommand$DropConsumer;Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/LootCommand/m_180407_ (Lnet/minecraft/server/commands/LootCommand$DropConsumer;Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/LootCommand/lambda$register$8 (Lnet/minecraft/server/commands/LootCommand$DropConsumer;Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/LootCommand/m_180410_ (Lnet/minecraft/server/commands/LootCommand$DropConsumer;Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/LootCommand/lambda$register$7 (Lnet/minecraft/server/commands/LootCommand$DropConsumer;Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/LootCommand/m_180413_ (Lnet/minecraft/server/commands/LootCommand$DropConsumer;Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/LootCommand/lambda$register$6 (Lnet/minecraft/server/commands/LootCommand$DropConsumer;Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/LootCommand/m_180416_ (Lnet/minecraft/server/commands/LootCommand$DropConsumer;Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/LootCommand/lambda$register$5 (Lnet/minecraft/server/commands/LootCommand$DropConsumer;Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/LootCommand/m_180419_ (Lnet/minecraft/server/commands/LootCommand$DropConsumer;Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/LootCommand/lambda$register$4 (Lnet/minecraft/server/commands/LootCommand$DropConsumer;Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/LootCommand/m_214515_ (Lcom/mojang/brigadier/CommandDispatcher;Lnet/minecraft/commands/CommandBuildContext;)V net/minecraft/server/commands/LootCommand/register (Lcom/mojang/brigadier/CommandDispatcher;Lnet/minecraft/commands/CommandBuildContext;)V +MD: net/minecraft/server/commands/LootCommand/m_214518_ (Lnet/minecraft/commands/CommandBuildContext;Lcom/mojang/brigadier/builder/ArgumentBuilder;Lnet/minecraft/server/commands/LootCommand$DropConsumer;)Lcom/mojang/brigadier/builder/ArgumentBuilder; net/minecraft/server/commands/LootCommand/lambda$register$14 (Lnet/minecraft/commands/CommandBuildContext;Lcom/mojang/brigadier/builder/ArgumentBuilder;Lnet/minecraft/server/commands/LootCommand$DropConsumer;)Lcom/mojang/brigadier/builder/ArgumentBuilder; +MD: net/minecraft/server/commands/LootCommand/m_278539_ (Lnet/minecraft/commands/CommandSourceStack;Lnet/minecraft/world/level/block/state/BlockState;Ljava/util/List;)V net/minecraft/server/commands/LootCommand/lambda$dropBlockLoot$27 (Lnet/minecraft/commands/CommandSourceStack;Lnet/minecraft/world/level/block/state/BlockState;Ljava/util/List;)V +MD: net/minecraft/server/commands/LootCommand/m_278540_ (Lcom/mojang/brigadier/context/CommandContext;Lcom/mojang/brigadier/suggestion/SuggestionsBuilder;)Ljava/util/concurrent/CompletableFuture; net/minecraft/server/commands/LootCommand/lambda$static$0 (Lcom/mojang/brigadier/context/CommandContext;Lcom/mojang/brigadier/suggestion/SuggestionsBuilder;)Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/server/commands/LootCommand/m_287198_ (Lcom/mojang/brigadier/context/CommandContext;Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/world/level/storage/loot/LootParams;Lnet/minecraft/server/commands/LootCommand$DropConsumer;)I net/minecraft/server/commands/LootCommand/drop (Lcom/mojang/brigadier/context/CommandContext;Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/world/level/storage/loot/LootParams;Lnet/minecraft/server/commands/LootCommand$DropConsumer;)I +MD: net/minecraft/server/commands/LootCommand/m_287933_ (Lnet/minecraft/world/item/ItemStack;)Lnet/minecraft/network/chat/Component; net/minecraft/server/commands/LootCommand/lambda$callback$23 (Lnet/minecraft/world/item/ItemStack;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/commands/LootCommand/m_287934_ (Ljava/util/List;)Lnet/minecraft/network/chat/Component; net/minecraft/server/commands/LootCommand/lambda$callback$24 (Ljava/util/List;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/commands/LootCommand/m_287935_ (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/network/chat/Component; net/minecraft/server/commands/LootCommand/lambda$callback$25 (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/commands/LootCommand/m_287936_ (Ljava/util/List;Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/network/chat/Component; net/minecraft/server/commands/LootCommand/lambda$callback$26 (Ljava/util/List;Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/commands/LootCommand$Callback/m_138047_ (Ljava/util/List;)V net/minecraft/server/commands/LootCommand$Callback/accept (Ljava/util/List;)V +MD: net/minecraft/server/commands/LootCommand$DropConsumer/m_138049_ (Lcom/mojang/brigadier/context/CommandContext;Ljava/util/List;Lnet/minecraft/server/commands/LootCommand$Callback;)I net/minecraft/server/commands/LootCommand$DropConsumer/accept (Lcom/mojang/brigadier/context/CommandContext;Ljava/util/List;Lnet/minecraft/server/commands/LootCommand$Callback;)I +MD: net/minecraft/server/commands/LootCommand$TailProvider/m_138053_ (Lcom/mojang/brigadier/builder/ArgumentBuilder;Lnet/minecraft/server/commands/LootCommand$DropConsumer;)Lcom/mojang/brigadier/builder/ArgumentBuilder; net/minecraft/server/commands/LootCommand$TailProvider/construct (Lcom/mojang/brigadier/builder/ArgumentBuilder;Lnet/minecraft/server/commands/LootCommand$DropConsumer;)Lcom/mojang/brigadier/builder/ArgumentBuilder; +MD: net/minecraft/server/commands/MsgCommand/ ()V net/minecraft/server/commands/MsgCommand/ ()V +MD: net/minecraft/server/commands/MsgCommand/m_138060_ (Lcom/mojang/brigadier/CommandDispatcher;)V net/minecraft/server/commands/MsgCommand/register (Lcom/mojang/brigadier/CommandDispatcher;)V +MD: net/minecraft/server/commands/MsgCommand/m_244847_ (Lcom/mojang/brigadier/context/CommandContext;Ljava/util/Collection;Lnet/minecraft/network/chat/PlayerChatMessage;)V net/minecraft/server/commands/MsgCommand/lambda$register$0 (Lcom/mojang/brigadier/context/CommandContext;Ljava/util/Collection;Lnet/minecraft/network/chat/PlayerChatMessage;)V +MD: net/minecraft/server/commands/MsgCommand/m_244848_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/MsgCommand/lambda$register$1 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/MsgCommand/m_246972_ (Lnet/minecraft/commands/CommandSourceStack;Ljava/util/Collection;Lnet/minecraft/network/chat/PlayerChatMessage;)V net/minecraft/server/commands/MsgCommand/sendMessage (Lnet/minecraft/commands/CommandSourceStack;Ljava/util/Collection;Lnet/minecraft/network/chat/PlayerChatMessage;)V +MD: net/minecraft/server/commands/OpCommand/ ()V net/minecraft/server/commands/OpCommand/ ()V +MD: net/minecraft/server/commands/OpCommand/ ()V net/minecraft/server/commands/OpCommand/ ()V +MD: net/minecraft/server/commands/OpCommand/m_138079_ (Lcom/mojang/brigadier/CommandDispatcher;)V net/minecraft/server/commands/OpCommand/register (Lcom/mojang/brigadier/CommandDispatcher;)V +MD: net/minecraft/server/commands/OpCommand/m_138081_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/OpCommand/lambda$register$4 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/OpCommand/m_138083_ (Lcom/mojang/brigadier/context/CommandContext;Lcom/mojang/brigadier/suggestion/SuggestionsBuilder;)Ljava/util/concurrent/CompletableFuture; net/minecraft/server/commands/OpCommand/lambda$register$3 (Lcom/mojang/brigadier/context/CommandContext;Lcom/mojang/brigadier/suggestion/SuggestionsBuilder;)Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/server/commands/OpCommand/m_138086_ (Lnet/minecraft/commands/CommandSourceStack;)Z net/minecraft/server/commands/OpCommand/lambda$register$0 (Lnet/minecraft/commands/CommandSourceStack;)Z +MD: net/minecraft/server/commands/OpCommand/m_138088_ (Lnet/minecraft/commands/CommandSourceStack;Ljava/util/Collection;)I net/minecraft/server/commands/OpCommand/opPlayers (Lnet/minecraft/commands/CommandSourceStack;Ljava/util/Collection;)I +MD: net/minecraft/server/commands/OpCommand/m_287939_ (Ljava/util/Collection;)Lnet/minecraft/network/chat/Component; net/minecraft/server/commands/OpCommand/lambda$opPlayers$5 (Ljava/util/Collection;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/commands/OpCommand/m_289071_ (Lnet/minecraft/server/level/ServerPlayer;)Ljava/lang/String; net/minecraft/server/commands/OpCommand/lambda$register$2 (Lnet/minecraft/server/level/ServerPlayer;)Ljava/lang/String; +MD: net/minecraft/server/commands/OpCommand/m_289072_ (Lnet/minecraft/server/players/PlayerList;Lnet/minecraft/server/level/ServerPlayer;)Z net/minecraft/server/commands/OpCommand/lambda$register$1 (Lnet/minecraft/server/players/PlayerList;Lnet/minecraft/server/level/ServerPlayer;)Z +MD: net/minecraft/server/commands/PardonCommand/ ()V net/minecraft/server/commands/PardonCommand/ ()V +MD: net/minecraft/server/commands/PardonCommand/ ()V net/minecraft/server/commands/PardonCommand/ ()V +MD: net/minecraft/server/commands/PardonCommand/m_138093_ (Lcom/mojang/brigadier/CommandDispatcher;)V net/minecraft/server/commands/PardonCommand/register (Lcom/mojang/brigadier/CommandDispatcher;)V +MD: net/minecraft/server/commands/PardonCommand/m_138095_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/PardonCommand/lambda$register$2 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/PardonCommand/m_138097_ (Lcom/mojang/brigadier/context/CommandContext;Lcom/mojang/brigadier/suggestion/SuggestionsBuilder;)Ljava/util/concurrent/CompletableFuture; net/minecraft/server/commands/PardonCommand/lambda$register$1 (Lcom/mojang/brigadier/context/CommandContext;Lcom/mojang/brigadier/suggestion/SuggestionsBuilder;)Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/server/commands/PardonCommand/m_138100_ (Lnet/minecraft/commands/CommandSourceStack;)Z net/minecraft/server/commands/PardonCommand/lambda$register$0 (Lnet/minecraft/commands/CommandSourceStack;)Z +MD: net/minecraft/server/commands/PardonCommand/m_138102_ (Lnet/minecraft/commands/CommandSourceStack;Ljava/util/Collection;)I net/minecraft/server/commands/PardonCommand/pardonPlayers (Lnet/minecraft/commands/CommandSourceStack;Ljava/util/Collection;)I +MD: net/minecraft/server/commands/PardonCommand/m_287940_ (Lcom/mojang/authlib/GameProfile;)Lnet/minecraft/network/chat/Component; net/minecraft/server/commands/PardonCommand/lambda$pardonPlayers$3 (Lcom/mojang/authlib/GameProfile;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/commands/PardonIpCommand/ ()V net/minecraft/server/commands/PardonIpCommand/ ()V +MD: net/minecraft/server/commands/PardonIpCommand/ ()V net/minecraft/server/commands/PardonIpCommand/ ()V +MD: net/minecraft/server/commands/PardonIpCommand/m_138108_ (Lcom/mojang/brigadier/CommandDispatcher;)V net/minecraft/server/commands/PardonIpCommand/register (Lcom/mojang/brigadier/CommandDispatcher;)V +MD: net/minecraft/server/commands/PardonIpCommand/m_138110_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/PardonIpCommand/lambda$register$2 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/PardonIpCommand/m_138112_ (Lcom/mojang/brigadier/context/CommandContext;Lcom/mojang/brigadier/suggestion/SuggestionsBuilder;)Ljava/util/concurrent/CompletableFuture; net/minecraft/server/commands/PardonIpCommand/lambda$register$1 (Lcom/mojang/brigadier/context/CommandContext;Lcom/mojang/brigadier/suggestion/SuggestionsBuilder;)Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/server/commands/PardonIpCommand/m_138115_ (Lnet/minecraft/commands/CommandSourceStack;)Z net/minecraft/server/commands/PardonIpCommand/lambda$register$0 (Lnet/minecraft/commands/CommandSourceStack;)Z +MD: net/minecraft/server/commands/PardonIpCommand/m_138117_ (Lnet/minecraft/commands/CommandSourceStack;Ljava/lang/String;)I net/minecraft/server/commands/PardonIpCommand/unban (Lnet/minecraft/commands/CommandSourceStack;Ljava/lang/String;)I +MD: net/minecraft/server/commands/PardonIpCommand/m_287941_ (Ljava/lang/String;)Lnet/minecraft/network/chat/Component; net/minecraft/server/commands/PardonIpCommand/lambda$unban$3 (Ljava/lang/String;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/commands/ParticleCommand/ ()V net/minecraft/server/commands/ParticleCommand/ ()V +MD: net/minecraft/server/commands/ParticleCommand/ ()V net/minecraft/server/commands/ParticleCommand/ ()V +MD: net/minecraft/server/commands/ParticleCommand/m_138122_ (Lcom/mojang/brigadier/CommandDispatcher;Lnet/minecraft/commands/CommandBuildContext;)V net/minecraft/server/commands/ParticleCommand/register (Lcom/mojang/brigadier/CommandDispatcher;Lnet/minecraft/commands/CommandBuildContext;)V +MD: net/minecraft/server/commands/ParticleCommand/m_138124_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/ParticleCommand/lambda$register$7 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/ParticleCommand/m_138126_ (Lnet/minecraft/commands/CommandSourceStack;)Z net/minecraft/server/commands/ParticleCommand/lambda$register$0 (Lnet/minecraft/commands/CommandSourceStack;)Z +MD: net/minecraft/server/commands/ParticleCommand/m_138128_ (Lnet/minecraft/commands/CommandSourceStack;Lnet/minecraft/core/particles/ParticleOptions;Lnet/minecraft/world/phys/Vec3;Lnet/minecraft/world/phys/Vec3;FIZLjava/util/Collection;)I net/minecraft/server/commands/ParticleCommand/sendParticles (Lnet/minecraft/commands/CommandSourceStack;Lnet/minecraft/core/particles/ParticleOptions;Lnet/minecraft/world/phys/Vec3;Lnet/minecraft/world/phys/Vec3;FIZLjava/util/Collection;)I +MD: net/minecraft/server/commands/ParticleCommand/m_138137_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/ParticleCommand/lambda$register$6 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/ParticleCommand/m_138139_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/ParticleCommand/lambda$register$5 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/ParticleCommand/m_138141_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/ParticleCommand/lambda$register$4 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/ParticleCommand/m_138143_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/ParticleCommand/lambda$register$3 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/ParticleCommand/m_138145_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/ParticleCommand/lambda$register$2 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/ParticleCommand/m_138147_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/ParticleCommand/lambda$register$1 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/ParticleCommand/m_287942_ (Lnet/minecraft/core/particles/ParticleOptions;)Lnet/minecraft/network/chat/Component; net/minecraft/server/commands/ParticleCommand/lambda$sendParticles$8 (Lnet/minecraft/core/particles/ParticleOptions;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/commands/PerfCommand/ ()V net/minecraft/server/commands/PerfCommand/ ()V +MD: net/minecraft/server/commands/PerfCommand/ ()V net/minecraft/server/commands/PerfCommand/ ()V +MD: net/minecraft/server/commands/PerfCommand/m_180437_ (Lcom/mojang/brigadier/CommandDispatcher;)V net/minecraft/server/commands/PerfCommand/register (Lcom/mojang/brigadier/CommandDispatcher;)V +MD: net/minecraft/server/commands/PerfCommand/m_180439_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/PerfCommand/lambda$register$2 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/PerfCommand/m_180441_ (Lnet/minecraft/commands/CommandSourceStack;)I net/minecraft/server/commands/PerfCommand/startProfilingDedicatedServer (Lnet/minecraft/commands/CommandSourceStack;)I +MD: net/minecraft/server/commands/PerfCommand/m_180443_ (Lnet/minecraft/commands/CommandSourceStack;Lnet/minecraft/util/profiling/ProfileResults;)V net/minecraft/server/commands/PerfCommand/whenStopped (Lnet/minecraft/commands/CommandSourceStack;Lnet/minecraft/util/profiling/ProfileResults;)V +MD: net/minecraft/server/commands/PerfCommand/m_180446_ (Lnet/minecraft/commands/CommandSourceStack;Ljava/nio/file/Path;Lnet/minecraft/server/MinecraftServer;)V net/minecraft/server/commands/PerfCommand/saveResults (Lnet/minecraft/commands/CommandSourceStack;Ljava/nio/file/Path;Lnet/minecraft/server/MinecraftServer;)V +MD: net/minecraft/server/commands/PerfCommand/m_180450_ (Lnet/minecraft/commands/CommandSourceStack;Lnet/minecraft/server/MinecraftServer;Ljava/nio/file/Path;)V net/minecraft/server/commands/PerfCommand/lambda$startProfilingDedicatedServer$4 (Lnet/minecraft/commands/CommandSourceStack;Lnet/minecraft/server/MinecraftServer;Ljava/nio/file/Path;)V +MD: net/minecraft/server/commands/PerfCommand/m_180454_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/PerfCommand/lambda$register$1 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/PerfCommand/m_180456_ (Lnet/minecraft/commands/CommandSourceStack;)I net/minecraft/server/commands/PerfCommand/stopProfilingDedicatedServer (Lnet/minecraft/commands/CommandSourceStack;)I +MD: net/minecraft/server/commands/PerfCommand/m_180458_ (Lnet/minecraft/commands/CommandSourceStack;Lnet/minecraft/util/profiling/ProfileResults;)V net/minecraft/server/commands/PerfCommand/lambda$startProfilingDedicatedServer$3 (Lnet/minecraft/commands/CommandSourceStack;Lnet/minecraft/util/profiling/ProfileResults;)V +MD: net/minecraft/server/commands/PerfCommand/m_180461_ (Lnet/minecraft/commands/CommandSourceStack;)Z net/minecraft/server/commands/PerfCommand/lambda$register$0 (Lnet/minecraft/commands/CommandSourceStack;)Z +MD: net/minecraft/server/commands/PerfCommand/m_287943_ (DI)Lnet/minecraft/network/chat/Component; net/minecraft/server/commands/PerfCommand/lambda$whenStopped$7 (DI)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/commands/PerfCommand/m_287944_ (Ljava/lang/String;)Lnet/minecraft/network/chat/Component; net/minecraft/server/commands/PerfCommand/lambda$saveResults$6 (Ljava/lang/String;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/commands/PerfCommand/m_287945_ ()Lnet/minecraft/network/chat/Component; net/minecraft/server/commands/PerfCommand/lambda$startProfilingDedicatedServer$5 ()Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/commands/PlaceCommand/ ()V net/minecraft/server/commands/PlaceCommand/ ()V +MD: net/minecraft/server/commands/PlaceCommand/ ()V net/minecraft/server/commands/PlaceCommand/ ()V +MD: net/minecraft/server/commands/PlaceCommand/m_214540_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/level/ChunkPos;)Z net/minecraft/server/commands/PlaceCommand/lambda$checkLoaded$21 (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/level/ChunkPos;)Z +MD: net/minecraft/server/commands/PlaceCommand/m_214543_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/level/ChunkPos;Lnet/minecraft/world/level/ChunkPos;)V net/minecraft/server/commands/PlaceCommand/checkLoaded (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/level/ChunkPos;Lnet/minecraft/world/level/ChunkPos;)V +MD: net/minecraft/server/commands/PlaceCommand/m_214547_ (Lcom/mojang/brigadier/CommandDispatcher;)V net/minecraft/server/commands/PlaceCommand/register (Lcom/mojang/brigadier/CommandDispatcher;)V +MD: net/minecraft/server/commands/PlaceCommand/m_214549_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/PlaceCommand/lambda$register$14 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/PlaceCommand/m_214551_ (Lcom/mojang/brigadier/context/CommandContext;Lcom/mojang/brigadier/suggestion/SuggestionsBuilder;)Ljava/util/concurrent/CompletableFuture; net/minecraft/server/commands/PlaceCommand/lambda$static$1 (Lcom/mojang/brigadier/context/CommandContext;Lcom/mojang/brigadier/suggestion/SuggestionsBuilder;)Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/server/commands/PlaceCommand/m_214559_ (Lnet/minecraft/commands/CommandSourceStack;)Z net/minecraft/server/commands/PlaceCommand/lambda$register$2 (Lnet/minecraft/commands/CommandSourceStack;)Z +MD: net/minecraft/server/commands/PlaceCommand/m_214561_ (Lnet/minecraft/commands/CommandSourceStack;Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/Rotation;Lnet/minecraft/world/level/block/Mirror;FI)I net/minecraft/server/commands/PlaceCommand/placeTemplate (Lnet/minecraft/commands/CommandSourceStack;Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/Rotation;Lnet/minecraft/world/level/block/Mirror;FI)I +MD: net/minecraft/server/commands/PlaceCommand/m_214569_ (Lnet/minecraft/commands/CommandSourceStack;Lnet/minecraft/core/Holder;Lnet/minecraft/resources/ResourceLocation;ILnet/minecraft/core/BlockPos;)I net/minecraft/server/commands/PlaceCommand/placeJigsaw (Lnet/minecraft/commands/CommandSourceStack;Lnet/minecraft/core/Holder;Lnet/minecraft/resources/ResourceLocation;ILnet/minecraft/core/BlockPos;)I +MD: net/minecraft/server/commands/PlaceCommand/m_214575_ (Lnet/minecraft/commands/CommandSourceStack;Lnet/minecraft/core/Holder$Reference;Lnet/minecraft/core/BlockPos;)I net/minecraft/server/commands/PlaceCommand/placeFeature (Lnet/minecraft/commands/CommandSourceStack;Lnet/minecraft/core/Holder$Reference;Lnet/minecraft/core/BlockPos;)I +MD: net/minecraft/server/commands/PlaceCommand/m_214579_ (Lnet/minecraft/core/Holder;)Z net/minecraft/server/commands/PlaceCommand/lambda$placeStructure$17 (Lnet/minecraft/core/Holder;)Z +MD: net/minecraft/server/commands/PlaceCommand/m_214581_ (Ljava/lang/Object;)Lcom/mojang/brigadier/Message; net/minecraft/server/commands/PlaceCommand/lambda$static$0 (Ljava/lang/Object;)Lcom/mojang/brigadier/Message; +MD: net/minecraft/server/commands/PlaceCommand/m_214585_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/PlaceCommand/lambda$register$13 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/PlaceCommand/m_214587_ (Lnet/minecraft/commands/CommandSourceStack;Lnet/minecraft/core/Holder$Reference;Lnet/minecraft/core/BlockPos;)I net/minecraft/server/commands/PlaceCommand/placeStructure (Lnet/minecraft/commands/CommandSourceStack;Lnet/minecraft/core/Holder$Reference;Lnet/minecraft/core/BlockPos;)I +MD: net/minecraft/server/commands/PlaceCommand/m_214591_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/PlaceCommand/lambda$register$12 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/PlaceCommand/m_214593_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/PlaceCommand/lambda$register$11 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/PlaceCommand/m_214595_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/PlaceCommand/lambda$register$10 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/PlaceCommand/m_244852_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/PlaceCommand/lambda$register$4 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/PlaceCommand/m_244856_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/PlaceCommand/lambda$register$6 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/PlaceCommand/m_244857_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/PlaceCommand/lambda$register$8 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/PlaceCommand/m_274099_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/PlaceCommand/lambda$register$3 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/PlaceCommand/m_274100_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/PlaceCommand/lambda$register$5 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/PlaceCommand/m_274101_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/PlaceCommand/lambda$register$7 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/PlaceCommand/m_274102_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/PlaceCommand/lambda$register$9 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/PlaceCommand/m_287947_ (Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/network/chat/Component; net/minecraft/server/commands/PlaceCommand/lambda$placeTemplate$20 (Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/commands/PlaceCommand/m_287948_ (Ljava/lang/String;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/network/chat/Component; net/minecraft/server/commands/PlaceCommand/lambda$placeFeature$15 (Ljava/lang/String;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/commands/PlaceCommand/m_287949_ (Lnet/minecraft/core/BlockPos;)Lnet/minecraft/network/chat/Component; net/minecraft/server/commands/PlaceCommand/lambda$placeJigsaw$16 (Lnet/minecraft/core/BlockPos;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/commands/PlaceCommand/m_287950_ (Ljava/lang/String;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/network/chat/Component; net/minecraft/server/commands/PlaceCommand/lambda$placeStructure$19 (Ljava/lang/String;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/commands/PlaceCommand/m_289073_ (Lnet/minecraft/world/level/levelgen/structure/StructureStart;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/level/chunk/ChunkGenerator;Lnet/minecraft/world/level/ChunkPos;)V net/minecraft/server/commands/PlaceCommand/lambda$placeStructure$18 (Lnet/minecraft/world/level/levelgen/structure/StructureStart;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/level/chunk/ChunkGenerator;Lnet/minecraft/world/level/ChunkPos;)V +MD: net/minecraft/server/commands/PlaySoundCommand/ ()V net/minecraft/server/commands/PlaySoundCommand/ ()V +MD: net/minecraft/server/commands/PlaySoundCommand/ ()V net/minecraft/server/commands/PlaySoundCommand/ ()V +MD: net/minecraft/server/commands/PlaySoundCommand/m_138151_ (Lnet/minecraft/sounds/SoundSource;)Lcom/mojang/brigadier/builder/LiteralArgumentBuilder; net/minecraft/server/commands/PlaySoundCommand/source (Lnet/minecraft/sounds/SoundSource;)Lcom/mojang/brigadier/builder/LiteralArgumentBuilder; +MD: net/minecraft/server/commands/PlaySoundCommand/m_138153_ (Lnet/minecraft/sounds/SoundSource;Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/PlaySoundCommand/lambda$source$5 (Lnet/minecraft/sounds/SoundSource;Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/PlaySoundCommand/m_138156_ (Lcom/mojang/brigadier/CommandDispatcher;)V net/minecraft/server/commands/PlaySoundCommand/register (Lcom/mojang/brigadier/CommandDispatcher;)V +MD: net/minecraft/server/commands/PlaySoundCommand/m_138158_ (Lnet/minecraft/commands/CommandSourceStack;)Z net/minecraft/server/commands/PlaySoundCommand/lambda$register$0 (Lnet/minecraft/commands/CommandSourceStack;)Z +MD: net/minecraft/server/commands/PlaySoundCommand/m_138160_ (Lnet/minecraft/commands/CommandSourceStack;Ljava/util/Collection;Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/sounds/SoundSource;Lnet/minecraft/world/phys/Vec3;FFF)I net/minecraft/server/commands/PlaySoundCommand/playSound (Lnet/minecraft/commands/CommandSourceStack;Ljava/util/Collection;Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/sounds/SoundSource;Lnet/minecraft/world/phys/Vec3;FFF)I +MD: net/minecraft/server/commands/PlaySoundCommand/m_138169_ (Lnet/minecraft/sounds/SoundSource;Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/PlaySoundCommand/lambda$source$4 (Lnet/minecraft/sounds/SoundSource;Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/PlaySoundCommand/m_138172_ (Lnet/minecraft/sounds/SoundSource;Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/PlaySoundCommand/lambda$source$3 (Lnet/minecraft/sounds/SoundSource;Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/PlaySoundCommand/m_138175_ (Lnet/minecraft/sounds/SoundSource;Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/PlaySoundCommand/lambda$source$2 (Lnet/minecraft/sounds/SoundSource;Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/PlaySoundCommand/m_138178_ (Lnet/minecraft/sounds/SoundSource;Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/PlaySoundCommand/lambda$source$1 (Lnet/minecraft/sounds/SoundSource;Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/PlaySoundCommand/m_287951_ (Lnet/minecraft/resources/ResourceLocation;Ljava/util/Collection;)Lnet/minecraft/network/chat/Component; net/minecraft/server/commands/PlaySoundCommand/lambda$playSound$7 (Lnet/minecraft/resources/ResourceLocation;Ljava/util/Collection;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/commands/PlaySoundCommand/m_289074_ (Lnet/minecraft/resources/ResourceLocation;Ljava/util/Collection;)Lnet/minecraft/network/chat/Component; net/minecraft/server/commands/PlaySoundCommand/lambda$playSound$6 (Lnet/minecraft/resources/ResourceLocation;Ljava/util/Collection;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/commands/PublishCommand/ ()V net/minecraft/server/commands/PublishCommand/ ()V +MD: net/minecraft/server/commands/PublishCommand/ ()V net/minecraft/server/commands/PublishCommand/ ()V +MD: net/minecraft/server/commands/PublishCommand/m_138184_ (Lcom/mojang/brigadier/CommandDispatcher;)V net/minecraft/server/commands/PublishCommand/register (Lcom/mojang/brigadier/CommandDispatcher;)V +MD: net/minecraft/server/commands/PublishCommand/m_138188_ (Lnet/minecraft/commands/CommandSourceStack;)Z net/minecraft/server/commands/PublishCommand/lambda$register$1 (Lnet/minecraft/commands/CommandSourceStack;)Z +MD: net/minecraft/server/commands/PublishCommand/m_138193_ (Ljava/lang/Object;)Lcom/mojang/brigadier/Message; net/minecraft/server/commands/PublishCommand/lambda$static$0 (Ljava/lang/Object;)Lcom/mojang/brigadier/Message; +MD: net/minecraft/server/commands/PublishCommand/m_257142_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/PublishCommand/lambda$register$2 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/PublishCommand/m_257143_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/PublishCommand/lambda$register$3 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/PublishCommand/m_257144_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/PublishCommand/lambda$register$4 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/PublishCommand/m_257145_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/PublishCommand/lambda$register$5 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/PublishCommand/m_257556_ (I)Lnet/minecraft/network/chat/MutableComponent; net/minecraft/server/commands/PublishCommand/getSuccessMessage (I)Lnet/minecraft/network/chat/MutableComponent; +MD: net/minecraft/server/commands/PublishCommand/m_257944_ (Lnet/minecraft/commands/CommandSourceStack;IZLnet/minecraft/world/level/GameType;)I net/minecraft/server/commands/PublishCommand/publish (Lnet/minecraft/commands/CommandSourceStack;IZLnet/minecraft/world/level/GameType;)I +MD: net/minecraft/server/commands/PublishCommand/m_287953_ (I)Lnet/minecraft/network/chat/Component; net/minecraft/server/commands/PublishCommand/lambda$publish$6 (I)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/commands/RaidCommand/ ()V net/minecraft/server/commands/RaidCommand/ ()V +MD: net/minecraft/server/commands/RaidCommand/m_180466_ (Lnet/minecraft/server/level/ServerPlayer;)Lnet/minecraft/world/entity/raid/Raid; net/minecraft/server/commands/RaidCommand/getRaid (Lnet/minecraft/server/level/ServerPlayer;)Lnet/minecraft/world/entity/raid/Raid; +MD: net/minecraft/server/commands/RaidCommand/m_180468_ (Lcom/mojang/brigadier/CommandDispatcher;)V net/minecraft/server/commands/RaidCommand/register (Lcom/mojang/brigadier/CommandDispatcher;)V +MD: net/minecraft/server/commands/RaidCommand/m_180470_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/RaidCommand/lambda$register$7 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/RaidCommand/m_180472_ (Lnet/minecraft/commands/CommandSourceStack;)I net/minecraft/server/commands/RaidCommand/glow (Lnet/minecraft/commands/CommandSourceStack;)I +MD: net/minecraft/server/commands/RaidCommand/m_180474_ (Lnet/minecraft/commands/CommandSourceStack;I)I net/minecraft/server/commands/RaidCommand/setBadOmenLevel (Lnet/minecraft/commands/CommandSourceStack;I)I +MD: net/minecraft/server/commands/RaidCommand/m_180477_ (Lnet/minecraft/commands/CommandSourceStack;Lnet/minecraft/network/chat/Component;)I net/minecraft/server/commands/RaidCommand/playSound (Lnet/minecraft/commands/CommandSourceStack;Lnet/minecraft/network/chat/Component;)I +MD: net/minecraft/server/commands/RaidCommand/m_180480_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/RaidCommand/lambda$register$6 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/RaidCommand/m_180482_ (Lnet/minecraft/commands/CommandSourceStack;)I net/minecraft/server/commands/RaidCommand/spawnLeader (Lnet/minecraft/commands/CommandSourceStack;)I +MD: net/minecraft/server/commands/RaidCommand/m_180484_ (Lnet/minecraft/commands/CommandSourceStack;I)I net/minecraft/server/commands/RaidCommand/start (Lnet/minecraft/commands/CommandSourceStack;I)I +MD: net/minecraft/server/commands/RaidCommand/m_180487_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/RaidCommand/lambda$register$5 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/RaidCommand/m_180489_ (Lnet/minecraft/commands/CommandSourceStack;)I net/minecraft/server/commands/RaidCommand/stop (Lnet/minecraft/commands/CommandSourceStack;)I +MD: net/minecraft/server/commands/RaidCommand/m_180491_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/RaidCommand/lambda$register$4 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/RaidCommand/m_180493_ (Lnet/minecraft/commands/CommandSourceStack;)I net/minecraft/server/commands/RaidCommand/check (Lnet/minecraft/commands/CommandSourceStack;)I +MD: net/minecraft/server/commands/RaidCommand/m_180495_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/RaidCommand/lambda$register$3 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/RaidCommand/m_180497_ (Lnet/minecraft/commands/CommandSourceStack;)Z net/minecraft/server/commands/RaidCommand/lambda$register$0 (Lnet/minecraft/commands/CommandSourceStack;)Z +MD: net/minecraft/server/commands/RaidCommand/m_180499_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/RaidCommand/lambda$register$2 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/RaidCommand/m_180501_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/RaidCommand/lambda$register$1 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/RaidCommand/m_287954_ ()Lnet/minecraft/network/chat/Component; net/minecraft/server/commands/RaidCommand/lambda$spawnLeader$9 ()Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/commands/RaidCommand/m_287955_ ()Lnet/minecraft/network/chat/Component; net/minecraft/server/commands/RaidCommand/lambda$stop$11 ()Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/commands/RaidCommand/m_287956_ (Ljava/lang/StringBuilder;)Lnet/minecraft/network/chat/Component; net/minecraft/server/commands/RaidCommand/lambda$check$12 (Ljava/lang/StringBuilder;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/commands/RaidCommand/m_287957_ (Ljava/lang/StringBuilder;)Lnet/minecraft/network/chat/Component; net/minecraft/server/commands/RaidCommand/lambda$check$13 (Ljava/lang/StringBuilder;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/commands/RaidCommand/m_287958_ (II)Lnet/minecraft/network/chat/Component; net/minecraft/server/commands/RaidCommand/lambda$setBadOmenLevel$8 (II)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/commands/RaidCommand/m_287959_ ()Lnet/minecraft/network/chat/Component; net/minecraft/server/commands/RaidCommand/lambda$start$10 ()Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/commands/RecipeCommand/ ()V net/minecraft/server/commands/RecipeCommand/ ()V +MD: net/minecraft/server/commands/RecipeCommand/ ()V net/minecraft/server/commands/RecipeCommand/ ()V +MD: net/minecraft/server/commands/RecipeCommand/m_138200_ (Lcom/mojang/brigadier/CommandDispatcher;)V net/minecraft/server/commands/RecipeCommand/register (Lcom/mojang/brigadier/CommandDispatcher;)V +MD: net/minecraft/server/commands/RecipeCommand/m_138202_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/RecipeCommand/lambda$register$4 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/RecipeCommand/m_138204_ (Lnet/minecraft/commands/CommandSourceStack;)Z net/minecraft/server/commands/RecipeCommand/lambda$register$0 (Lnet/minecraft/commands/CommandSourceStack;)Z +MD: net/minecraft/server/commands/RecipeCommand/m_138206_ (Lnet/minecraft/commands/CommandSourceStack;Ljava/util/Collection;Ljava/util/Collection;)I net/minecraft/server/commands/RecipeCommand/giveRecipes (Lnet/minecraft/commands/CommandSourceStack;Ljava/util/Collection;Ljava/util/Collection;)I +MD: net/minecraft/server/commands/RecipeCommand/m_138210_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/RecipeCommand/lambda$register$3 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/RecipeCommand/m_138212_ (Lnet/minecraft/commands/CommandSourceStack;Ljava/util/Collection;Ljava/util/Collection;)I net/minecraft/server/commands/RecipeCommand/takeRecipes (Lnet/minecraft/commands/CommandSourceStack;Ljava/util/Collection;Ljava/util/Collection;)I +MD: net/minecraft/server/commands/RecipeCommand/m_138216_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/RecipeCommand/lambda$register$2 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/RecipeCommand/m_138218_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/RecipeCommand/lambda$register$1 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/RecipeCommand/m_287962_ (Ljava/util/Collection;Ljava/util/Collection;)Lnet/minecraft/network/chat/Component; net/minecraft/server/commands/RecipeCommand/lambda$giveRecipes$6 (Ljava/util/Collection;Ljava/util/Collection;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/commands/RecipeCommand/m_287963_ (Ljava/util/Collection;Ljava/util/Collection;)Lnet/minecraft/network/chat/Component; net/minecraft/server/commands/RecipeCommand/lambda$takeRecipes$8 (Ljava/util/Collection;Ljava/util/Collection;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/commands/RecipeCommand/m_289075_ (Ljava/util/Collection;Ljava/util/Collection;)Lnet/minecraft/network/chat/Component; net/minecraft/server/commands/RecipeCommand/lambda$takeRecipes$7 (Ljava/util/Collection;Ljava/util/Collection;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/commands/RecipeCommand/m_289076_ (Ljava/util/Collection;Ljava/util/Collection;)Lnet/minecraft/network/chat/Component; net/minecraft/server/commands/RecipeCommand/lambda$giveRecipes$5 (Ljava/util/Collection;Ljava/util/Collection;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/commands/ReloadCommand/ ()V net/minecraft/server/commands/ReloadCommand/ ()V +MD: net/minecraft/server/commands/ReloadCommand/ ()V net/minecraft/server/commands/ReloadCommand/ ()V +MD: net/minecraft/server/commands/ReloadCommand/m_138222_ (Lnet/minecraft/server/packs/repository/PackRepository;Lnet/minecraft/world/level/storage/WorldData;Ljava/util/Collection;)Ljava/util/Collection; net/minecraft/server/commands/ReloadCommand/discoverNewPacks (Lnet/minecraft/server/packs/repository/PackRepository;Lnet/minecraft/world/level/storage/WorldData;Ljava/util/Collection;)Ljava/util/Collection; +MD: net/minecraft/server/commands/ReloadCommand/m_138226_ (Lcom/mojang/brigadier/CommandDispatcher;)V net/minecraft/server/commands/ReloadCommand/register (Lcom/mojang/brigadier/CommandDispatcher;)V +MD: net/minecraft/server/commands/ReloadCommand/m_138230_ (Lnet/minecraft/commands/CommandSourceStack;)Z net/minecraft/server/commands/ReloadCommand/lambda$register$1 (Lnet/minecraft/commands/CommandSourceStack;)Z +MD: net/minecraft/server/commands/ReloadCommand/m_138232_ (Lnet/minecraft/commands/CommandSourceStack;Ljava/lang/Throwable;)Ljava/lang/Void; net/minecraft/server/commands/ReloadCommand/lambda$reloadPacks$0 (Lnet/minecraft/commands/CommandSourceStack;Ljava/lang/Throwable;)Ljava/lang/Void; +MD: net/minecraft/server/commands/ReloadCommand/m_138235_ (Ljava/util/Collection;Lnet/minecraft/commands/CommandSourceStack;)V net/minecraft/server/commands/ReloadCommand/reloadPacks (Ljava/util/Collection;Lnet/minecraft/commands/CommandSourceStack;)V +MD: net/minecraft/server/commands/ReloadCommand/m_287964_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/ReloadCommand/lambda$register$3 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/ReloadCommand/m_287965_ ()Lnet/minecraft/network/chat/Component; net/minecraft/server/commands/ReloadCommand/lambda$register$2 ()Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/commands/ResetChunksCommand/ ()V net/minecraft/server/commands/ResetChunksCommand/ ()V +MD: net/minecraft/server/commands/ResetChunksCommand/ ()V net/minecraft/server/commands/ResetChunksCommand/ ()V +MD: net/minecraft/server/commands/ResetChunksCommand/m_183665_ ()Lcom/mojang/datafixers/util/Unit; net/minecraft/server/commands/ResetChunksCommand/lambda$resetChunks$4 ()Lcom/mojang/datafixers/util/Unit; +MD: net/minecraft/server/commands/ResetChunksCommand/m_183666_ (Lcom/mojang/brigadier/CommandDispatcher;)V net/minecraft/server/commands/ResetChunksCommand/register (Lcom/mojang/brigadier/CommandDispatcher;)V +MD: net/minecraft/server/commands/ResetChunksCommand/m_183668_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/ResetChunksCommand/lambda$register$3 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/ResetChunksCommand/m_183670_ (Lnet/minecraft/world/level/chunk/ChunkAccess;)V net/minecraft/server/commands/ResetChunksCommand/lambda$resetChunks$6 (Lnet/minecraft/world/level/chunk/ChunkAccess;)V +MD: net/minecraft/server/commands/ResetChunksCommand/m_183679_ (Lnet/minecraft/world/level/chunk/ChunkStatus;Lcom/mojang/datafixers/util/Either;)Lcom/mojang/datafixers/util/Unit; net/minecraft/server/commands/ResetChunksCommand/lambda$resetChunks$7 (Lnet/minecraft/world/level/chunk/ChunkStatus;Lcom/mojang/datafixers/util/Either;)Lcom/mojang/datafixers/util/Unit; +MD: net/minecraft/server/commands/ResetChunksCommand/m_183682_ (Lnet/minecraft/commands/CommandSourceStack;)Z net/minecraft/server/commands/ResetChunksCommand/lambda$register$0 (Lnet/minecraft/commands/CommandSourceStack;)Z +MD: net/minecraft/server/commands/ResetChunksCommand/m_183684_ (Lnet/minecraft/commands/CommandSourceStack;IZ)I net/minecraft/server/commands/ResetChunksCommand/resetChunks (Lnet/minecraft/commands/CommandSourceStack;IZ)I +MD: net/minecraft/server/commands/ResetChunksCommand/m_183688_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/ResetChunksCommand/lambda$register$2 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/ResetChunksCommand/m_183690_ (Lnet/minecraft/world/level/chunk/ChunkAccess;)Ljava/util/concurrent/CompletableFuture; net/minecraft/server/commands/ResetChunksCommand/lambda$resetChunks$5 (Lnet/minecraft/world/level/chunk/ChunkAccess;)Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/server/commands/ResetChunksCommand/m_183692_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/ResetChunksCommand/lambda$register$1 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/ResetChunksCommand/m_279885_ (Lnet/minecraft/world/level/chunk/ChunkStatus;Lnet/minecraft/util/thread/ProcessorMailbox;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/server/level/ServerChunkCache;Ljava/util/List;Lcom/mojang/datafixers/util/Unit;)Ljava/util/concurrent/CompletionStage; net/minecraft/server/commands/ResetChunksCommand/lambda$resetChunks$8 (Lnet/minecraft/world/level/chunk/ChunkStatus;Lnet/minecraft/util/thread/ProcessorMailbox;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/server/level/ServerChunkCache;Ljava/util/List;Lcom/mojang/datafixers/util/Unit;)Ljava/util/concurrent/CompletionStage; +MD: net/minecraft/server/commands/ResetChunksCommand/m_287966_ (IJ)Lnet/minecraft/network/chat/Component; net/minecraft/server/commands/ResetChunksCommand/lambda$resetChunks$9 (IJ)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/commands/ReturnCommand/ ()V net/minecraft/server/commands/ReturnCommand/ ()V +MD: net/minecraft/server/commands/ReturnCommand/m_280144_ (Lnet/minecraft/commands/CommandSourceStack;I)I net/minecraft/server/commands/ReturnCommand/setReturn (Lnet/minecraft/commands/CommandSourceStack;I)I +MD: net/minecraft/server/commands/ReturnCommand/m_280209_ (Lcom/mojang/brigadier/CommandDispatcher;)V net/minecraft/server/commands/ReturnCommand/register (Lcom/mojang/brigadier/CommandDispatcher;)V +MD: net/minecraft/server/commands/ReturnCommand/m_280303_ (Lnet/minecraft/commands/CommandSourceStack;)Z net/minecraft/server/commands/ReturnCommand/lambda$register$0 (Lnet/minecraft/commands/CommandSourceStack;)Z +MD: net/minecraft/server/commands/ReturnCommand/m_280383_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/ReturnCommand/lambda$register$1 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/RideCommand/ ()V net/minecraft/server/commands/RideCommand/ ()V +MD: net/minecraft/server/commands/RideCommand/ ()V net/minecraft/server/commands/RideCommand/ ()V +MD: net/minecraft/server/commands/RideCommand/m_264204_ (Lnet/minecraft/commands/CommandSourceStack;)Z net/minecraft/server/commands/RideCommand/lambda$register$3 (Lnet/minecraft/commands/CommandSourceStack;)Z +MD: net/minecraft/server/commands/RideCommand/m_264225_ (Lnet/minecraft/commands/CommandSourceStack;Lnet/minecraft/world/entity/Entity;)I net/minecraft/server/commands/RideCommand/dismount (Lnet/minecraft/commands/CommandSourceStack;Lnet/minecraft/world/entity/Entity;)I +MD: net/minecraft/server/commands/RideCommand/m_264235_ (Ljava/lang/Object;)Lcom/mojang/brigadier/Message; net/minecraft/server/commands/RideCommand/lambda$static$0 (Ljava/lang/Object;)Lcom/mojang/brigadier/Message; +MD: net/minecraft/server/commands/RideCommand/m_264241_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/RideCommand/lambda$register$5 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/RideCommand/m_264259_ (Lnet/minecraft/world/entity/Entity;Lnet/minecraft/world/entity/Entity;)Z net/minecraft/server/commands/RideCommand/lambda$mount$6 (Lnet/minecraft/world/entity/Entity;Lnet/minecraft/world/entity/Entity;)Z +MD: net/minecraft/server/commands/RideCommand/m_264291_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/RideCommand/lambda$register$4 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/RideCommand/m_264485_ (Ljava/lang/Object;Ljava/lang/Object;)Lcom/mojang/brigadier/Message; net/minecraft/server/commands/RideCommand/lambda$static$2 (Ljava/lang/Object;Ljava/lang/Object;)Lcom/mojang/brigadier/Message; +MD: net/minecraft/server/commands/RideCommand/m_264511_ (Lnet/minecraft/commands/CommandSourceStack;Lnet/minecraft/world/entity/Entity;Lnet/minecraft/world/entity/Entity;)I net/minecraft/server/commands/RideCommand/mount (Lnet/minecraft/commands/CommandSourceStack;Lnet/minecraft/world/entity/Entity;Lnet/minecraft/world/entity/Entity;)I +MD: net/minecraft/server/commands/RideCommand/m_264607_ (Lcom/mojang/brigadier/CommandDispatcher;)V net/minecraft/server/commands/RideCommand/register (Lcom/mojang/brigadier/CommandDispatcher;)V +MD: net/minecraft/server/commands/RideCommand/m_264633_ (Ljava/lang/Object;Ljava/lang/Object;)Lcom/mojang/brigadier/Message; net/minecraft/server/commands/RideCommand/lambda$static$1 (Ljava/lang/Object;Ljava/lang/Object;)Lcom/mojang/brigadier/Message; +MD: net/minecraft/server/commands/RideCommand/m_287967_ (Lnet/minecraft/world/entity/Entity;Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/network/chat/Component; net/minecraft/server/commands/RideCommand/lambda$dismount$8 (Lnet/minecraft/world/entity/Entity;Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/commands/RideCommand/m_287968_ (Lnet/minecraft/world/entity/Entity;Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/network/chat/Component; net/minecraft/server/commands/RideCommand/lambda$mount$7 (Lnet/minecraft/world/entity/Entity;Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/commands/SaveAllCommand/ ()V net/minecraft/server/commands/SaveAllCommand/ ()V +MD: net/minecraft/server/commands/SaveAllCommand/ ()V net/minecraft/server/commands/SaveAllCommand/ ()V +MD: net/minecraft/server/commands/SaveAllCommand/m_138271_ (Lcom/mojang/brigadier/CommandDispatcher;)V net/minecraft/server/commands/SaveAllCommand/register (Lcom/mojang/brigadier/CommandDispatcher;)V +MD: net/minecraft/server/commands/SaveAllCommand/m_138273_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/SaveAllCommand/lambda$register$2 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/SaveAllCommand/m_138275_ (Lnet/minecraft/commands/CommandSourceStack;)Z net/minecraft/server/commands/SaveAllCommand/lambda$register$0 (Lnet/minecraft/commands/CommandSourceStack;)Z +MD: net/minecraft/server/commands/SaveAllCommand/m_138277_ (Lnet/minecraft/commands/CommandSourceStack;Z)I net/minecraft/server/commands/SaveAllCommand/saveAll (Lnet/minecraft/commands/CommandSourceStack;Z)I +MD: net/minecraft/server/commands/SaveAllCommand/m_138280_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/SaveAllCommand/lambda$register$1 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/SaveAllCommand/m_287969_ ()Lnet/minecraft/network/chat/Component; net/minecraft/server/commands/SaveAllCommand/lambda$saveAll$3 ()Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/commands/SaveAllCommand/m_287970_ ()Lnet/minecraft/network/chat/Component; net/minecraft/server/commands/SaveAllCommand/lambda$saveAll$4 ()Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/commands/SaveOffCommand/ ()V net/minecraft/server/commands/SaveOffCommand/ ()V +MD: net/minecraft/server/commands/SaveOffCommand/ ()V net/minecraft/server/commands/SaveOffCommand/ ()V +MD: net/minecraft/server/commands/SaveOffCommand/m_138284_ (Lcom/mojang/brigadier/CommandDispatcher;)V net/minecraft/server/commands/SaveOffCommand/register (Lcom/mojang/brigadier/CommandDispatcher;)V +MD: net/minecraft/server/commands/SaveOffCommand/m_138286_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/SaveOffCommand/lambda$register$2 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/SaveOffCommand/m_138288_ (Lnet/minecraft/commands/CommandSourceStack;)Z net/minecraft/server/commands/SaveOffCommand/lambda$register$0 (Lnet/minecraft/commands/CommandSourceStack;)Z +MD: net/minecraft/server/commands/SaveOffCommand/m_287971_ ()Lnet/minecraft/network/chat/Component; net/minecraft/server/commands/SaveOffCommand/lambda$register$1 ()Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/commands/SaveOnCommand/ ()V net/minecraft/server/commands/SaveOnCommand/ ()V +MD: net/minecraft/server/commands/SaveOnCommand/ ()V net/minecraft/server/commands/SaveOnCommand/ ()V +MD: net/minecraft/server/commands/SaveOnCommand/m_138292_ (Lcom/mojang/brigadier/CommandDispatcher;)V net/minecraft/server/commands/SaveOnCommand/register (Lcom/mojang/brigadier/CommandDispatcher;)V +MD: net/minecraft/server/commands/SaveOnCommand/m_138294_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/SaveOnCommand/lambda$register$2 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/SaveOnCommand/m_138296_ (Lnet/minecraft/commands/CommandSourceStack;)Z net/minecraft/server/commands/SaveOnCommand/lambda$register$0 (Lnet/minecraft/commands/CommandSourceStack;)Z +MD: net/minecraft/server/commands/SaveOnCommand/m_287972_ ()Lnet/minecraft/network/chat/Component; net/minecraft/server/commands/SaveOnCommand/lambda$register$1 ()Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/commands/SayCommand/ ()V net/minecraft/server/commands/SayCommand/ ()V +MD: net/minecraft/server/commands/SayCommand/m_138409_ (Lcom/mojang/brigadier/CommandDispatcher;)V net/minecraft/server/commands/SayCommand/register (Lcom/mojang/brigadier/CommandDispatcher;)V +MD: net/minecraft/server/commands/SayCommand/m_138413_ (Lnet/minecraft/commands/CommandSourceStack;)Z net/minecraft/server/commands/SayCommand/lambda$register$0 (Lnet/minecraft/commands/CommandSourceStack;)Z +MD: net/minecraft/server/commands/SayCommand/m_244858_ (Lcom/mojang/brigadier/context/CommandContext;Lnet/minecraft/network/chat/PlayerChatMessage;)V net/minecraft/server/commands/SayCommand/lambda$register$1 (Lcom/mojang/brigadier/context/CommandContext;Lnet/minecraft/network/chat/PlayerChatMessage;)V +MD: net/minecraft/server/commands/SayCommand/m_244859_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/SayCommand/lambda$register$2 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/ScheduleCommand/ ()V net/minecraft/server/commands/ScheduleCommand/ ()V +MD: net/minecraft/server/commands/ScheduleCommand/ ()V net/minecraft/server/commands/ScheduleCommand/ ()V +MD: net/minecraft/server/commands/ScheduleCommand/m_138419_ (Lcom/mojang/brigadier/CommandDispatcher;)V net/minecraft/server/commands/ScheduleCommand/register (Lcom/mojang/brigadier/CommandDispatcher;)V +MD: net/minecraft/server/commands/ScheduleCommand/m_138421_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/ScheduleCommand/lambda$register$6 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/ScheduleCommand/m_138423_ (Lcom/mojang/brigadier/context/CommandContext;Lcom/mojang/brigadier/suggestion/SuggestionsBuilder;)Ljava/util/concurrent/CompletableFuture; net/minecraft/server/commands/ScheduleCommand/lambda$static$1 (Lcom/mojang/brigadier/context/CommandContext;Lcom/mojang/brigadier/suggestion/SuggestionsBuilder;)Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/server/commands/ScheduleCommand/m_138426_ (Lnet/minecraft/commands/CommandSourceStack;)Z net/minecraft/server/commands/ScheduleCommand/lambda$register$2 (Lnet/minecraft/commands/CommandSourceStack;)Z +MD: net/minecraft/server/commands/ScheduleCommand/m_138428_ (Lnet/minecraft/commands/CommandSourceStack;Lcom/mojang/datafixers/util/Pair;IZ)I net/minecraft/server/commands/ScheduleCommand/schedule (Lnet/minecraft/commands/CommandSourceStack;Lcom/mojang/datafixers/util/Pair;IZ)I +MD: net/minecraft/server/commands/ScheduleCommand/m_138433_ (Lnet/minecraft/commands/CommandSourceStack;Ljava/lang/String;)I net/minecraft/server/commands/ScheduleCommand/remove (Lnet/minecraft/commands/CommandSourceStack;Ljava/lang/String;)I +MD: net/minecraft/server/commands/ScheduleCommand/m_138436_ (Ljava/lang/Object;)Lcom/mojang/brigadier/Message; net/minecraft/server/commands/ScheduleCommand/lambda$static$0 (Ljava/lang/Object;)Lcom/mojang/brigadier/Message; +MD: net/minecraft/server/commands/ScheduleCommand/m_138454_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/ScheduleCommand/lambda$register$5 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/ScheduleCommand/m_138456_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/ScheduleCommand/lambda$register$4 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/ScheduleCommand/m_138458_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/ScheduleCommand/lambda$register$3 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/ScheduleCommand/m_287973_ (Lnet/minecraft/resources/ResourceLocation;ZLnet/minecraft/world/level/timers/TimerQueue;JLnet/minecraft/commands/CommandSourceStack;ILnet/minecraft/commands/CommandFunction;)V net/minecraft/server/commands/ScheduleCommand/lambda$schedule$8 (Lnet/minecraft/resources/ResourceLocation;ZLnet/minecraft/world/level/timers/TimerQueue;JLnet/minecraft/commands/CommandSourceStack;ILnet/minecraft/commands/CommandFunction;)V +MD: net/minecraft/server/commands/ScheduleCommand/m_287974_ (Lnet/minecraft/resources/ResourceLocation;ZLnet/minecraft/world/level/timers/TimerQueue;JLnet/minecraft/commands/CommandSourceStack;ILjava/util/Collection;)V net/minecraft/server/commands/ScheduleCommand/lambda$schedule$10 (Lnet/minecraft/resources/ResourceLocation;ZLnet/minecraft/world/level/timers/TimerQueue;JLnet/minecraft/commands/CommandSourceStack;ILjava/util/Collection;)V +MD: net/minecraft/server/commands/ScheduleCommand/m_287975_ (Lnet/minecraft/resources/ResourceLocation;IJ)Lnet/minecraft/network/chat/Component; net/minecraft/server/commands/ScheduleCommand/lambda$schedule$9 (Lnet/minecraft/resources/ResourceLocation;IJ)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/commands/ScheduleCommand/m_287976_ (Lnet/minecraft/resources/ResourceLocation;IJ)Lnet/minecraft/network/chat/Component; net/minecraft/server/commands/ScheduleCommand/lambda$schedule$7 (Lnet/minecraft/resources/ResourceLocation;IJ)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/commands/ScheduleCommand/m_287977_ (ILjava/lang/String;)Lnet/minecraft/network/chat/Component; net/minecraft/server/commands/ScheduleCommand/lambda$remove$11 (ILjava/lang/String;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/commands/ScoreboardCommand/ ()V net/minecraft/server/commands/ScoreboardCommand/ ()V +MD: net/minecraft/server/commands/ScoreboardCommand/ ()V net/minecraft/server/commands/ScoreboardCommand/ ()V +MD: net/minecraft/server/commands/ScoreboardCommand/m_138467_ ()Lcom/mojang/brigadier/builder/LiteralArgumentBuilder; net/minecraft/server/commands/ScoreboardCommand/createRenderTypeModify ()Lcom/mojang/brigadier/builder/LiteralArgumentBuilder; +MD: net/minecraft/server/commands/ScoreboardCommand/m_138468_ (Lcom/mojang/brigadier/CommandDispatcher;)V net/minecraft/server/commands/ScoreboardCommand/register (Lcom/mojang/brigadier/CommandDispatcher;)V +MD: net/minecraft/server/commands/ScoreboardCommand/m_138470_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/ScoreboardCommand/lambda$register$19 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/ScoreboardCommand/m_138472_ (Lcom/mojang/brigadier/context/CommandContext;Lcom/mojang/brigadier/suggestion/SuggestionsBuilder;)Ljava/util/concurrent/CompletableFuture; net/minecraft/server/commands/ScoreboardCommand/lambda$register$17 (Lcom/mojang/brigadier/context/CommandContext;Lcom/mojang/brigadier/suggestion/SuggestionsBuilder;)Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/server/commands/ScoreboardCommand/m_138475_ (Lnet/minecraft/commands/CommandSourceStack;)I net/minecraft/server/commands/ScoreboardCommand/listTrackedPlayers (Lnet/minecraft/commands/CommandSourceStack;)I +MD: net/minecraft/server/commands/ScoreboardCommand/m_138477_ (Lnet/minecraft/commands/CommandSourceStack;I)I net/minecraft/server/commands/ScoreboardCommand/clearDisplaySlot (Lnet/minecraft/commands/CommandSourceStack;I)I +MD: net/minecraft/server/commands/ScoreboardCommand/m_138480_ (Lnet/minecraft/commands/CommandSourceStack;ILnet/minecraft/world/scores/Objective;)I net/minecraft/server/commands/ScoreboardCommand/setDisplaySlot (Lnet/minecraft/commands/CommandSourceStack;ILnet/minecraft/world/scores/Objective;)I +MD: net/minecraft/server/commands/ScoreboardCommand/m_138484_ (Lnet/minecraft/commands/CommandSourceStack;Lnet/minecraft/world/scores/Objective;)I net/minecraft/server/commands/ScoreboardCommand/removeObjective (Lnet/minecraft/commands/CommandSourceStack;Lnet/minecraft/world/scores/Objective;)I +MD: net/minecraft/server/commands/ScoreboardCommand/m_138487_ (Lnet/minecraft/commands/CommandSourceStack;Lnet/minecraft/world/scores/Objective;Lnet/minecraft/world/scores/criteria/ObjectiveCriteria$RenderType;)I net/minecraft/server/commands/ScoreboardCommand/setRenderType (Lnet/minecraft/commands/CommandSourceStack;Lnet/minecraft/world/scores/Objective;Lnet/minecraft/world/scores/criteria/ObjectiveCriteria$RenderType;)I +MD: net/minecraft/server/commands/ScoreboardCommand/m_138491_ (Lnet/minecraft/commands/CommandSourceStack;Lnet/minecraft/world/scores/Objective;Lnet/minecraft/network/chat/Component;)I net/minecraft/server/commands/ScoreboardCommand/setDisplayName (Lnet/minecraft/commands/CommandSourceStack;Lnet/minecraft/world/scores/Objective;Lnet/minecraft/network/chat/Component;)I +MD: net/minecraft/server/commands/ScoreboardCommand/m_138495_ (Lnet/minecraft/commands/CommandSourceStack;Ljava/lang/String;)I net/minecraft/server/commands/ScoreboardCommand/listTrackedPlayerScores (Lnet/minecraft/commands/CommandSourceStack;Ljava/lang/String;)I +MD: net/minecraft/server/commands/ScoreboardCommand/m_138498_ (Lnet/minecraft/commands/CommandSourceStack;Ljava/lang/String;Lnet/minecraft/world/scores/Objective;)I net/minecraft/server/commands/ScoreboardCommand/getScore (Lnet/minecraft/commands/CommandSourceStack;Ljava/lang/String;Lnet/minecraft/world/scores/Objective;)I +MD: net/minecraft/server/commands/ScoreboardCommand/m_138502_ (Lnet/minecraft/commands/CommandSourceStack;Ljava/lang/String;Lnet/minecraft/world/scores/criteria/ObjectiveCriteria;Lnet/minecraft/network/chat/Component;)I net/minecraft/server/commands/ScoreboardCommand/addObjective (Lnet/minecraft/commands/CommandSourceStack;Ljava/lang/String;Lnet/minecraft/world/scores/criteria/ObjectiveCriteria;Lnet/minecraft/network/chat/Component;)I +MD: net/minecraft/server/commands/ScoreboardCommand/m_138507_ (Lnet/minecraft/commands/CommandSourceStack;Ljava/util/Collection;)I net/minecraft/server/commands/ScoreboardCommand/resetScores (Lnet/minecraft/commands/CommandSourceStack;Ljava/util/Collection;)I +MD: net/minecraft/server/commands/ScoreboardCommand/m_138510_ (Lnet/minecraft/commands/CommandSourceStack;Ljava/util/Collection;Lcom/mojang/brigadier/suggestion/SuggestionsBuilder;)Ljava/util/concurrent/CompletableFuture; net/minecraft/server/commands/ScoreboardCommand/suggestTriggers (Lnet/minecraft/commands/CommandSourceStack;Ljava/util/Collection;Lcom/mojang/brigadier/suggestion/SuggestionsBuilder;)Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/server/commands/ScoreboardCommand/m_138514_ (Lnet/minecraft/commands/CommandSourceStack;Ljava/util/Collection;Lnet/minecraft/world/scores/Objective;)I net/minecraft/server/commands/ScoreboardCommand/enableTrigger (Lnet/minecraft/commands/CommandSourceStack;Ljava/util/Collection;Lnet/minecraft/world/scores/Objective;)I +MD: net/minecraft/server/commands/ScoreboardCommand/m_138518_ (Lnet/minecraft/commands/CommandSourceStack;Ljava/util/Collection;Lnet/minecraft/world/scores/Objective;I)I net/minecraft/server/commands/ScoreboardCommand/setScore (Lnet/minecraft/commands/CommandSourceStack;Ljava/util/Collection;Lnet/minecraft/world/scores/Objective;I)I +MD: net/minecraft/server/commands/ScoreboardCommand/m_138523_ (Lnet/minecraft/commands/CommandSourceStack;Ljava/util/Collection;Lnet/minecraft/world/scores/Objective;Lnet/minecraft/commands/arguments/OperationArgument$Operation;Ljava/util/Collection;Lnet/minecraft/world/scores/Objective;)I net/minecraft/server/commands/ScoreboardCommand/performOperation (Lnet/minecraft/commands/CommandSourceStack;Ljava/util/Collection;Lnet/minecraft/world/scores/Objective;Lnet/minecraft/commands/arguments/OperationArgument$Operation;Ljava/util/Collection;Lnet/minecraft/world/scores/Objective;)I +MD: net/minecraft/server/commands/ScoreboardCommand/m_138530_ (Lnet/minecraft/world/scores/criteria/ObjectiveCriteria$RenderType;Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/ScoreboardCommand/lambda$createRenderTypeModify$20 (Lnet/minecraft/world/scores/criteria/ObjectiveCriteria$RenderType;Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/ScoreboardCommand/m_138533_ (Ljava/lang/Object;Ljava/lang/Object;)Lcom/mojang/brigadier/Message; net/minecraft/server/commands/ScoreboardCommand/lambda$static$0 (Ljava/lang/Object;Ljava/lang/Object;)Lcom/mojang/brigadier/Message; +MD: net/minecraft/server/commands/ScoreboardCommand/m_138536_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/ScoreboardCommand/lambda$register$18 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/ScoreboardCommand/m_138538_ (Lnet/minecraft/commands/CommandSourceStack;)I net/minecraft/server/commands/ScoreboardCommand/listObjectives (Lnet/minecraft/commands/CommandSourceStack;)I +MD: net/minecraft/server/commands/ScoreboardCommand/m_138540_ (Lnet/minecraft/commands/CommandSourceStack;Ljava/util/Collection;Lnet/minecraft/world/scores/Objective;)I net/minecraft/server/commands/ScoreboardCommand/resetScore (Lnet/minecraft/commands/CommandSourceStack;Ljava/util/Collection;Lnet/minecraft/world/scores/Objective;)I +MD: net/minecraft/server/commands/ScoreboardCommand/m_138544_ (Lnet/minecraft/commands/CommandSourceStack;Ljava/util/Collection;Lnet/minecraft/world/scores/Objective;I)I net/minecraft/server/commands/ScoreboardCommand/addScore (Lnet/minecraft/commands/CommandSourceStack;Ljava/util/Collection;Lnet/minecraft/world/scores/Objective;I)I +MD: net/minecraft/server/commands/ScoreboardCommand/m_138549_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/ScoreboardCommand/lambda$register$16 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/ScoreboardCommand/m_138551_ (Lnet/minecraft/commands/CommandSourceStack;)Z net/minecraft/server/commands/ScoreboardCommand/lambda$register$1 (Lnet/minecraft/commands/CommandSourceStack;)Z +MD: net/minecraft/server/commands/ScoreboardCommand/m_138553_ (Lnet/minecraft/commands/CommandSourceStack;Ljava/util/Collection;Lnet/minecraft/world/scores/Objective;I)I net/minecraft/server/commands/ScoreboardCommand/removeScore (Lnet/minecraft/commands/CommandSourceStack;Ljava/util/Collection;Lnet/minecraft/world/scores/Objective;I)I +MD: net/minecraft/server/commands/ScoreboardCommand/m_138558_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/ScoreboardCommand/lambda$register$15 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/ScoreboardCommand/m_138560_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/ScoreboardCommand/lambda$register$14 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/ScoreboardCommand/m_138562_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/ScoreboardCommand/lambda$register$13 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/ScoreboardCommand/m_138564_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/ScoreboardCommand/lambda$register$12 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/ScoreboardCommand/m_138566_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/ScoreboardCommand/lambda$register$11 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/ScoreboardCommand/m_138568_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/ScoreboardCommand/lambda$register$10 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/ScoreboardCommand/m_138570_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/ScoreboardCommand/lambda$register$9 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/ScoreboardCommand/m_138572_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/ScoreboardCommand/lambda$register$8 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/ScoreboardCommand/m_138574_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/ScoreboardCommand/lambda$register$7 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/ScoreboardCommand/m_138576_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/ScoreboardCommand/lambda$register$6 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/ScoreboardCommand/m_138578_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/ScoreboardCommand/lambda$register$5 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/ScoreboardCommand/m_138580_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/ScoreboardCommand/lambda$register$4 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/ScoreboardCommand/m_138582_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/ScoreboardCommand/lambda$register$3 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/ScoreboardCommand/m_138584_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/ScoreboardCommand/lambda$register$2 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/ScoreboardCommand/m_287978_ (Lnet/minecraft/world/scores/Objective;Ljava/util/Collection;)Lnet/minecraft/network/chat/Component; net/minecraft/server/commands/ScoreboardCommand/lambda$enableTrigger$24 (Lnet/minecraft/world/scores/Objective;Ljava/util/Collection;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/commands/ScoreboardCommand/m_287979_ (Lnet/minecraft/world/scores/Objective;)Lnet/minecraft/network/chat/Component; net/minecraft/server/commands/ScoreboardCommand/lambda$setRenderType$44 (Lnet/minecraft/world/scores/Objective;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/commands/ScoreboardCommand/m_287980_ (Ljava/lang/String;)Lnet/minecraft/network/chat/Component; net/minecraft/server/commands/ScoreboardCommand/lambda$listTrackedPlayerScores$38 (Ljava/lang/String;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/commands/ScoreboardCommand/m_287981_ (Lnet/minecraft/world/scores/Objective;)Lnet/minecraft/network/chat/Component; net/minecraft/server/commands/ScoreboardCommand/lambda$setDisplayName$43 (Lnet/minecraft/world/scores/Objective;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/commands/ScoreboardCommand/m_287982_ (ILnet/minecraft/world/scores/Objective;Ljava/util/Collection;I)Lnet/minecraft/network/chat/Component; net/minecraft/server/commands/ScoreboardCommand/lambda$addScore$32 (ILnet/minecraft/world/scores/Objective;Ljava/util/Collection;I)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/commands/ScoreboardCommand/m_287983_ (ILnet/minecraft/world/scores/Objective;Ljava/util/Collection;)Lnet/minecraft/network/chat/Component; net/minecraft/server/commands/ScoreboardCommand/lambda$addScore$33 (ILnet/minecraft/world/scores/Objective;Ljava/util/Collection;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/commands/ScoreboardCommand/m_287984_ (ILnet/minecraft/world/scores/Objective;Ljava/util/Collection;)Lnet/minecraft/network/chat/Component; net/minecraft/server/commands/ScoreboardCommand/lambda$removeScore$35 (ILnet/minecraft/world/scores/Objective;Ljava/util/Collection;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/commands/ScoreboardCommand/m_287985_ ()Lnet/minecraft/network/chat/Component; net/minecraft/server/commands/ScoreboardCommand/lambda$listTrackedPlayers$36 ()Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/commands/ScoreboardCommand/m_287986_ (I)Lnet/minecraft/network/chat/Component; net/minecraft/server/commands/ScoreboardCommand/lambda$clearDisplaySlot$41 (I)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/commands/ScoreboardCommand/m_287987_ (Lnet/minecraft/world/scores/Objective;Ljava/util/Collection;)Lnet/minecraft/network/chat/Component; net/minecraft/server/commands/ScoreboardCommand/lambda$enableTrigger$25 (Lnet/minecraft/world/scores/Objective;Ljava/util/Collection;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/commands/ScoreboardCommand/m_287988_ (Ljava/lang/String;Lnet/minecraft/world/scores/Score;Lnet/minecraft/world/scores/Objective;)Lnet/minecraft/network/chat/Component; net/minecraft/server/commands/ScoreboardCommand/lambda$getScore$21 (Ljava/lang/String;Lnet/minecraft/world/scores/Score;Lnet/minecraft/world/scores/Objective;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/commands/ScoreboardCommand/m_287989_ (Ljava/util/Collection;)Lnet/minecraft/network/chat/Component; net/minecraft/server/commands/ScoreboardCommand/lambda$listTrackedPlayers$37 (Ljava/util/Collection;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/commands/ScoreboardCommand/m_287990_ (Lnet/minecraft/world/scores/Objective;Ljava/util/Collection;)Lnet/minecraft/network/chat/Component; net/minecraft/server/commands/ScoreboardCommand/lambda$resetScore$29 (Lnet/minecraft/world/scores/Objective;Ljava/util/Collection;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/commands/ScoreboardCommand/m_287991_ (ILnet/minecraft/world/scores/Objective;Ljava/util/Collection;I)Lnet/minecraft/network/chat/Component; net/minecraft/server/commands/ScoreboardCommand/lambda$removeScore$34 (ILnet/minecraft/world/scores/Objective;Ljava/util/Collection;I)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/commands/ScoreboardCommand/m_287992_ (Ljava/lang/String;Ljava/util/Map;)Lnet/minecraft/network/chat/Component; net/minecraft/server/commands/ScoreboardCommand/lambda$listTrackedPlayerScores$39 (Ljava/lang/String;Ljava/util/Map;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/commands/ScoreboardCommand/m_287993_ (Lnet/minecraft/world/scores/Objective;Ljava/util/Collection;I)Lnet/minecraft/network/chat/Component; net/minecraft/server/commands/ScoreboardCommand/lambda$performOperation$22 (Lnet/minecraft/world/scores/Objective;Ljava/util/Collection;I)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/commands/ScoreboardCommand/m_287994_ (Lnet/minecraft/world/scores/Objective;Ljava/util/Collection;I)Lnet/minecraft/network/chat/Component; net/minecraft/server/commands/ScoreboardCommand/lambda$setScore$31 (Lnet/minecraft/world/scores/Objective;Ljava/util/Collection;I)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/commands/ScoreboardCommand/m_287995_ (Ljava/util/Map$Entry;)Lnet/minecraft/network/chat/Component; net/minecraft/server/commands/ScoreboardCommand/lambda$listTrackedPlayerScores$40 (Ljava/util/Map$Entry;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/commands/ScoreboardCommand/m_287996_ (Lnet/minecraft/world/scores/Objective;Ljava/util/Collection;)Lnet/minecraft/network/chat/Component; net/minecraft/server/commands/ScoreboardCommand/lambda$resetScore$28 (Lnet/minecraft/world/scores/Objective;Ljava/util/Collection;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/commands/ScoreboardCommand/m_287997_ (Ljava/util/Collection;)Lnet/minecraft/network/chat/Component; net/minecraft/server/commands/ScoreboardCommand/lambda$resetScores$27 (Ljava/util/Collection;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/commands/ScoreboardCommand/m_287998_ (Lnet/minecraft/world/scores/Objective;)Lnet/minecraft/network/chat/Component; net/minecraft/server/commands/ScoreboardCommand/lambda$removeObjective$45 (Lnet/minecraft/world/scores/Objective;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/commands/ScoreboardCommand/m_287999_ (Lnet/minecraft/world/scores/Objective;Ljava/util/Collection;)Lnet/minecraft/network/chat/Component; net/minecraft/server/commands/ScoreboardCommand/lambda$performOperation$23 (Lnet/minecraft/world/scores/Objective;Ljava/util/Collection;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/commands/ScoreboardCommand/m_288000_ (Lnet/minecraft/world/scores/Objective;)Lnet/minecraft/network/chat/Component; net/minecraft/server/commands/ScoreboardCommand/lambda$addObjective$46 (Lnet/minecraft/world/scores/Objective;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/commands/ScoreboardCommand/m_288001_ (Ljava/util/Collection;)Lnet/minecraft/network/chat/Component; net/minecraft/server/commands/ScoreboardCommand/lambda$listObjectives$48 (Ljava/util/Collection;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/commands/ScoreboardCommand/m_288002_ ()Lnet/minecraft/network/chat/Component; net/minecraft/server/commands/ScoreboardCommand/lambda$listObjectives$47 ()Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/commands/ScoreboardCommand/m_288003_ (ILnet/minecraft/world/scores/Objective;)Lnet/minecraft/network/chat/Component; net/minecraft/server/commands/ScoreboardCommand/lambda$setDisplaySlot$42 (ILnet/minecraft/world/scores/Objective;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/commands/ScoreboardCommand/m_288004_ (Lnet/minecraft/world/scores/Objective;Ljava/util/Collection;I)Lnet/minecraft/network/chat/Component; net/minecraft/server/commands/ScoreboardCommand/lambda$setScore$30 (Lnet/minecraft/world/scores/Objective;Ljava/util/Collection;I)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/commands/ScoreboardCommand/m_288005_ (Ljava/util/Collection;)Lnet/minecraft/network/chat/Component; net/minecraft/server/commands/ScoreboardCommand/lambda$resetScores$26 (Ljava/util/Collection;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/commands/SeedCommand/ ()V net/minecraft/server/commands/SeedCommand/ ()V +MD: net/minecraft/server/commands/SeedCommand/m_138589_ (Lcom/mojang/brigadier/CommandDispatcher;Z)V net/minecraft/server/commands/SeedCommand/register (Lcom/mojang/brigadier/CommandDispatcher;Z)V +MD: net/minecraft/server/commands/SeedCommand/m_138594_ (ZLnet/minecraft/commands/CommandSourceStack;)Z net/minecraft/server/commands/SeedCommand/lambda$register$0 (ZLnet/minecraft/commands/CommandSourceStack;)Z +MD: net/minecraft/server/commands/SeedCommand/m_288006_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/SeedCommand/lambda$register$2 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/SeedCommand/m_288007_ (Lnet/minecraft/network/chat/Component;)Lnet/minecraft/network/chat/Component; net/minecraft/server/commands/SeedCommand/lambda$register$1 (Lnet/minecraft/network/chat/Component;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/commands/SetBlockCommand/ ()V net/minecraft/server/commands/SetBlockCommand/ ()V +MD: net/minecraft/server/commands/SetBlockCommand/ ()V net/minecraft/server/commands/SetBlockCommand/ ()V +MD: net/minecraft/server/commands/SetBlockCommand/m_138603_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/SetBlockCommand/lambda$register$5 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/SetBlockCommand/m_138605_ (Lnet/minecraft/commands/CommandSourceStack;)Z net/minecraft/server/commands/SetBlockCommand/lambda$register$0 (Lnet/minecraft/commands/CommandSourceStack;)Z +MD: net/minecraft/server/commands/SetBlockCommand/m_138607_ (Lnet/minecraft/commands/CommandSourceStack;Lnet/minecraft/core/BlockPos;Lnet/minecraft/commands/arguments/blocks/BlockInput;Lnet/minecraft/server/commands/SetBlockCommand$Mode;Ljava/util/function/Predicate;)I net/minecraft/server/commands/SetBlockCommand/setBlock (Lnet/minecraft/commands/CommandSourceStack;Lnet/minecraft/core/BlockPos;Lnet/minecraft/commands/arguments/blocks/BlockInput;Lnet/minecraft/server/commands/SetBlockCommand$Mode;Ljava/util/function/Predicate;)I +MD: net/minecraft/server/commands/SetBlockCommand/m_138613_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/SetBlockCommand/lambda$register$4 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/SetBlockCommand/m_138615_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/SetBlockCommand/lambda$register$2 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/SetBlockCommand/m_138617_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/SetBlockCommand/lambda$register$1 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/SetBlockCommand/m_180516_ (Lnet/minecraft/world/level/block/state/pattern/BlockInWorld;)Z net/minecraft/server/commands/SetBlockCommand/lambda$register$3 (Lnet/minecraft/world/level/block/state/pattern/BlockInWorld;)Z +MD: net/minecraft/server/commands/SetBlockCommand/m_214730_ (Lcom/mojang/brigadier/CommandDispatcher;Lnet/minecraft/commands/CommandBuildContext;)V net/minecraft/server/commands/SetBlockCommand/register (Lcom/mojang/brigadier/CommandDispatcher;Lnet/minecraft/commands/CommandBuildContext;)V +MD: net/minecraft/server/commands/SetBlockCommand/m_288008_ (Lnet/minecraft/core/BlockPos;)Lnet/minecraft/network/chat/Component; net/minecraft/server/commands/SetBlockCommand/lambda$setBlock$6 (Lnet/minecraft/core/BlockPos;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/commands/SetBlockCommand$Filter/m_138619_ (Lnet/minecraft/world/level/levelgen/structure/BoundingBox;Lnet/minecraft/core/BlockPos;Lnet/minecraft/commands/arguments/blocks/BlockInput;Lnet/minecraft/server/level/ServerLevel;)Lnet/minecraft/commands/arguments/blocks/BlockInput; net/minecraft/server/commands/SetBlockCommand$Filter/filter (Lnet/minecraft/world/level/levelgen/structure/BoundingBox;Lnet/minecraft/core/BlockPos;Lnet/minecraft/commands/arguments/blocks/BlockInput;Lnet/minecraft/server/level/ServerLevel;)Lnet/minecraft/commands/arguments/blocks/BlockInput; +MD: net/minecraft/server/commands/SetBlockCommand$Mode/ ()V net/minecraft/server/commands/SetBlockCommand$Mode/ ()V +MD: net/minecraft/server/commands/SetBlockCommand$Mode/ (Ljava/lang/String;I)V net/minecraft/server/commands/SetBlockCommand$Mode/ (Ljava/lang/String;I)V +MD: net/minecraft/server/commands/SetBlockCommand$Mode/m_180518_ ()[Lnet/minecraft/server/commands/SetBlockCommand$Mode; net/minecraft/server/commands/SetBlockCommand$Mode/$values ()[Lnet/minecraft/server/commands/SetBlockCommand$Mode; +MD: net/minecraft/server/commands/SetBlockCommand$Mode/valueOf (Ljava/lang/String;)Lnet/minecraft/server/commands/SetBlockCommand$Mode; net/minecraft/server/commands/SetBlockCommand$Mode/valueOf (Ljava/lang/String;)Lnet/minecraft/server/commands/SetBlockCommand$Mode; +MD: net/minecraft/server/commands/SetBlockCommand$Mode/values ()[Lnet/minecraft/server/commands/SetBlockCommand$Mode; net/minecraft/server/commands/SetBlockCommand$Mode/values ()[Lnet/minecraft/server/commands/SetBlockCommand$Mode; +MD: net/minecraft/server/commands/SetPlayerIdleTimeoutCommand/ ()V net/minecraft/server/commands/SetPlayerIdleTimeoutCommand/ ()V +MD: net/minecraft/server/commands/SetPlayerIdleTimeoutCommand/m_138634_ (Lcom/mojang/brigadier/CommandDispatcher;)V net/minecraft/server/commands/SetPlayerIdleTimeoutCommand/register (Lcom/mojang/brigadier/CommandDispatcher;)V +MD: net/minecraft/server/commands/SetPlayerIdleTimeoutCommand/m_138636_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/SetPlayerIdleTimeoutCommand/lambda$register$1 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/SetPlayerIdleTimeoutCommand/m_138638_ (Lnet/minecraft/commands/CommandSourceStack;)Z net/minecraft/server/commands/SetPlayerIdleTimeoutCommand/lambda$register$0 (Lnet/minecraft/commands/CommandSourceStack;)Z +MD: net/minecraft/server/commands/SetPlayerIdleTimeoutCommand/m_138640_ (Lnet/minecraft/commands/CommandSourceStack;I)I net/minecraft/server/commands/SetPlayerIdleTimeoutCommand/setIdleTimeout (Lnet/minecraft/commands/CommandSourceStack;I)I +MD: net/minecraft/server/commands/SetPlayerIdleTimeoutCommand/m_288009_ (I)Lnet/minecraft/network/chat/Component; net/minecraft/server/commands/SetPlayerIdleTimeoutCommand/lambda$setIdleTimeout$2 (I)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/commands/SetSpawnCommand/ ()V net/minecraft/server/commands/SetSpawnCommand/ ()V +MD: net/minecraft/server/commands/SetSpawnCommand/m_138643_ (Lcom/mojang/brigadier/CommandDispatcher;)V net/minecraft/server/commands/SetSpawnCommand/register (Lcom/mojang/brigadier/CommandDispatcher;)V +MD: net/minecraft/server/commands/SetSpawnCommand/m_138645_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/SetSpawnCommand/lambda$register$4 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/SetSpawnCommand/m_138647_ (Lnet/minecraft/commands/CommandSourceStack;)Z net/minecraft/server/commands/SetSpawnCommand/lambda$register$0 (Lnet/minecraft/commands/CommandSourceStack;)Z +MD: net/minecraft/server/commands/SetSpawnCommand/m_138649_ (Lnet/minecraft/commands/CommandSourceStack;Ljava/util/Collection;Lnet/minecraft/core/BlockPos;F)I net/minecraft/server/commands/SetSpawnCommand/setSpawn (Lnet/minecraft/commands/CommandSourceStack;Ljava/util/Collection;Lnet/minecraft/core/BlockPos;F)I +MD: net/minecraft/server/commands/SetSpawnCommand/m_138654_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/SetSpawnCommand/lambda$register$3 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/SetSpawnCommand/m_274103_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/SetSpawnCommand/lambda$register$1 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/SetSpawnCommand/m_274104_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/SetSpawnCommand/lambda$register$2 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/SetSpawnCommand/m_288010_ (Lnet/minecraft/core/BlockPos;FLjava/lang/String;Ljava/util/Collection;)Lnet/minecraft/network/chat/Component; net/minecraft/server/commands/SetSpawnCommand/lambda$setSpawn$6 (Lnet/minecraft/core/BlockPos;FLjava/lang/String;Ljava/util/Collection;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/commands/SetSpawnCommand/m_288011_ (Lnet/minecraft/core/BlockPos;FLjava/lang/String;Ljava/util/Collection;)Lnet/minecraft/network/chat/Component; net/minecraft/server/commands/SetSpawnCommand/lambda$setSpawn$5 (Lnet/minecraft/core/BlockPos;FLjava/lang/String;Ljava/util/Collection;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/commands/SetWorldSpawnCommand/ ()V net/minecraft/server/commands/SetWorldSpawnCommand/ ()V +MD: net/minecraft/server/commands/SetWorldSpawnCommand/m_138660_ (Lcom/mojang/brigadier/CommandDispatcher;)V net/minecraft/server/commands/SetWorldSpawnCommand/register (Lcom/mojang/brigadier/CommandDispatcher;)V +MD: net/minecraft/server/commands/SetWorldSpawnCommand/m_138662_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/SetWorldSpawnCommand/lambda$register$3 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/SetWorldSpawnCommand/m_138664_ (Lnet/minecraft/commands/CommandSourceStack;)Z net/minecraft/server/commands/SetWorldSpawnCommand/lambda$register$0 (Lnet/minecraft/commands/CommandSourceStack;)Z +MD: net/minecraft/server/commands/SetWorldSpawnCommand/m_138666_ (Lnet/minecraft/commands/CommandSourceStack;Lnet/minecraft/core/BlockPos;F)I net/minecraft/server/commands/SetWorldSpawnCommand/setSpawn (Lnet/minecraft/commands/CommandSourceStack;Lnet/minecraft/core/BlockPos;F)I +MD: net/minecraft/server/commands/SetWorldSpawnCommand/m_138670_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/SetWorldSpawnCommand/lambda$register$2 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/SetWorldSpawnCommand/m_274105_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/SetWorldSpawnCommand/lambda$register$1 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/SetWorldSpawnCommand/m_288012_ (Lnet/minecraft/core/BlockPos;F)Lnet/minecraft/network/chat/Component; net/minecraft/server/commands/SetWorldSpawnCommand/lambda$setSpawn$4 (Lnet/minecraft/core/BlockPos;F)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/commands/SpawnArmorTrimsCommand/ ()V net/minecraft/server/commands/SpawnArmorTrimsCommand/ ()V +MD: net/minecraft/server/commands/SpawnArmorTrimsCommand/ ()V net/minecraft/server/commands/SpawnArmorTrimsCommand/ ()V +MD: net/minecraft/server/commands/SpawnArmorTrimsCommand/m_266184_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/SpawnArmorTrimsCommand/lambda$register$2 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/SpawnArmorTrimsCommand/m_266243_ (Ljava/util/HashMap;)V net/minecraft/server/commands/SpawnArmorTrimsCommand/lambda$static$0 (Ljava/util/HashMap;)V +MD: net/minecraft/server/commands/SpawnArmorTrimsCommand/m_266283_ (Lcom/mojang/brigadier/CommandDispatcher;)V net/minecraft/server/commands/SpawnArmorTrimsCommand/register (Lcom/mojang/brigadier/CommandDispatcher;)V +MD: net/minecraft/server/commands/SpawnArmorTrimsCommand/m_266431_ (Lnet/minecraft/core/NonNullList;Lnet/minecraft/core/Registry;Lnet/minecraft/core/Registry;Lnet/minecraft/world/item/armortrim/TrimPattern;Lnet/minecraft/world/item/armortrim/TrimMaterial;)V net/minecraft/server/commands/SpawnArmorTrimsCommand/lambda$spawnArmorTrims$5 (Lnet/minecraft/core/NonNullList;Lnet/minecraft/core/Registry;Lnet/minecraft/core/Registry;Lnet/minecraft/world/item/armortrim/TrimPattern;Lnet/minecraft/world/item/armortrim/TrimMaterial;)V +MD: net/minecraft/server/commands/SpawnArmorTrimsCommand/m_266467_ (Lnet/minecraft/core/Registry;Lnet/minecraft/core/NonNullList;Lnet/minecraft/core/Registry;Lnet/minecraft/world/item/armortrim/TrimPattern;)V net/minecraft/server/commands/SpawnArmorTrimsCommand/lambda$spawnArmorTrims$6 (Lnet/minecraft/core/Registry;Lnet/minecraft/core/NonNullList;Lnet/minecraft/core/Registry;Lnet/minecraft/world/item/armortrim/TrimPattern;)V +MD: net/minecraft/server/commands/SpawnArmorTrimsCommand/m_266547_ (Lnet/minecraft/core/Registry;Lnet/minecraft/world/item/armortrim/TrimMaterial;)Ljava/lang/Integer; net/minecraft/server/commands/SpawnArmorTrimsCommand/lambda$spawnArmorTrims$4 (Lnet/minecraft/core/Registry;Lnet/minecraft/world/item/armortrim/TrimMaterial;)Ljava/lang/Integer; +MD: net/minecraft/server/commands/SpawnArmorTrimsCommand/m_266582_ (Lnet/minecraft/core/Registry;Lnet/minecraft/world/item/armortrim/TrimPattern;)Ljava/lang/Integer; net/minecraft/server/commands/SpawnArmorTrimsCommand/lambda$spawnArmorTrims$3 (Lnet/minecraft/core/Registry;Lnet/minecraft/world/item/armortrim/TrimPattern;)Ljava/lang/Integer; +MD: net/minecraft/server/commands/SpawnArmorTrimsCommand/m_266585_ (Lnet/minecraft/commands/CommandSourceStack;Lnet/minecraft/world/entity/player/Player;)I net/minecraft/server/commands/SpawnArmorTrimsCommand/spawnArmorTrims (Lnet/minecraft/commands/CommandSourceStack;Lnet/minecraft/world/entity/player/Player;)I +MD: net/minecraft/server/commands/SpawnArmorTrimsCommand/m_276726_ (Lnet/minecraft/commands/CommandSourceStack;)Z net/minecraft/server/commands/SpawnArmorTrimsCommand/lambda$register$1 (Lnet/minecraft/commands/CommandSourceStack;)Z +MD: net/minecraft/server/commands/SpawnArmorTrimsCommand/m_288013_ ()Lnet/minecraft/network/chat/Component; net/minecraft/server/commands/SpawnArmorTrimsCommand/lambda$spawnArmorTrims$7 ()Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/commands/SpectateCommand/ ()V net/minecraft/server/commands/SpectateCommand/ ()V +MD: net/minecraft/server/commands/SpectateCommand/ ()V net/minecraft/server/commands/SpectateCommand/ ()V +MD: net/minecraft/server/commands/SpectateCommand/m_138677_ (Lcom/mojang/brigadier/CommandDispatcher;)V net/minecraft/server/commands/SpectateCommand/register (Lcom/mojang/brigadier/CommandDispatcher;)V +MD: net/minecraft/server/commands/SpectateCommand/m_138679_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/SpectateCommand/lambda$register$4 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/SpectateCommand/m_138681_ (Lnet/minecraft/commands/CommandSourceStack;)Z net/minecraft/server/commands/SpectateCommand/lambda$register$1 (Lnet/minecraft/commands/CommandSourceStack;)Z +MD: net/minecraft/server/commands/SpectateCommand/m_138683_ (Lnet/minecraft/commands/CommandSourceStack;Lnet/minecraft/world/entity/Entity;Lnet/minecraft/server/level/ServerPlayer;)I net/minecraft/server/commands/SpectateCommand/spectate (Lnet/minecraft/commands/CommandSourceStack;Lnet/minecraft/world/entity/Entity;Lnet/minecraft/server/level/ServerPlayer;)I +MD: net/minecraft/server/commands/SpectateCommand/m_138687_ (Ljava/lang/Object;)Lcom/mojang/brigadier/Message; net/minecraft/server/commands/SpectateCommand/lambda$static$0 (Ljava/lang/Object;)Lcom/mojang/brigadier/Message; +MD: net/minecraft/server/commands/SpectateCommand/m_138689_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/SpectateCommand/lambda$register$3 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/SpectateCommand/m_138691_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/SpectateCommand/lambda$register$2 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/SpectateCommand/m_288014_ (Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/network/chat/Component; net/minecraft/server/commands/SpectateCommand/lambda$spectate$5 (Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/commands/SpectateCommand/m_288015_ ()Lnet/minecraft/network/chat/Component; net/minecraft/server/commands/SpectateCommand/lambda$spectate$6 ()Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/commands/SpreadPlayersCommand/ ()V net/minecraft/server/commands/SpreadPlayersCommand/ ()V +MD: net/minecraft/server/commands/SpreadPlayersCommand/ ()V net/minecraft/server/commands/SpreadPlayersCommand/ ()V +MD: net/minecraft/server/commands/SpreadPlayersCommand/m_138696_ (Lcom/mojang/brigadier/CommandDispatcher;)V net/minecraft/server/commands/SpreadPlayersCommand/register (Lcom/mojang/brigadier/CommandDispatcher;)V +MD: net/minecraft/server/commands/SpreadPlayersCommand/m_138702_ (Lnet/minecraft/commands/CommandSourceStack;Lnet/minecraft/world/phys/Vec2;FFIZLjava/util/Collection;)I net/minecraft/server/commands/SpreadPlayersCommand/spreadPlayers (Lnet/minecraft/commands/CommandSourceStack;Lnet/minecraft/world/phys/Vec2;FFIZLjava/util/Collection;)I +MD: net/minecraft/server/commands/SpreadPlayersCommand/m_138722_ (Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;)Lcom/mojang/brigadier/Message; net/minecraft/server/commands/SpreadPlayersCommand/lambda$static$1 (Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;)Lcom/mojang/brigadier/Message; +MD: net/minecraft/server/commands/SpreadPlayersCommand/m_138727_ (Ljava/util/Collection;)I net/minecraft/server/commands/SpreadPlayersCommand/getNumberOfTeams (Ljava/util/Collection;)I +MD: net/minecraft/server/commands/SpreadPlayersCommand/m_138729_ (Ljava/util/Collection;Lnet/minecraft/server/level/ServerLevel;[Lnet/minecraft/server/commands/SpreadPlayersCommand$Position;IZ)D net/minecraft/server/commands/SpreadPlayersCommand/setPlayerPositions (Ljava/util/Collection;Lnet/minecraft/server/level/ServerLevel;[Lnet/minecraft/server/commands/SpreadPlayersCommand$Position;IZ)D +MD: net/minecraft/server/commands/SpreadPlayersCommand/m_138744_ (Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;)Lcom/mojang/brigadier/Message; net/minecraft/server/commands/SpreadPlayersCommand/lambda$static$0 (Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;)Lcom/mojang/brigadier/Message; +MD: net/minecraft/server/commands/SpreadPlayersCommand/m_201849_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/SpreadPlayersCommand/lambda$register$5 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/SpreadPlayersCommand/m_201851_ (Lnet/minecraft/commands/CommandSourceStack;)Z net/minecraft/server/commands/SpreadPlayersCommand/lambda$register$3 (Lnet/minecraft/commands/CommandSourceStack;)Z +MD: net/minecraft/server/commands/SpreadPlayersCommand/m_201853_ (Ljava/lang/Object;Ljava/lang/Object;)Lcom/mojang/brigadier/Message; net/minecraft/server/commands/SpreadPlayersCommand/lambda$static$2 (Ljava/lang/Object;Ljava/lang/Object;)Lcom/mojang/brigadier/Message; +MD: net/minecraft/server/commands/SpreadPlayersCommand/m_214733_ (Lnet/minecraft/util/RandomSource;IDDDD)[Lnet/minecraft/server/commands/SpreadPlayersCommand$Position; net/minecraft/server/commands/SpreadPlayersCommand/createInitialPositions (Lnet/minecraft/util/RandomSource;IDDDD)[Lnet/minecraft/server/commands/SpreadPlayersCommand$Position; +MD: net/minecraft/server/commands/SpreadPlayersCommand/m_214740_ (Lnet/minecraft/world/phys/Vec2;DLnet/minecraft/server/level/ServerLevel;Lnet/minecraft/util/RandomSource;DDDDI[Lnet/minecraft/server/commands/SpreadPlayersCommand$Position;Z)V net/minecraft/server/commands/SpreadPlayersCommand/spreadPositions (Lnet/minecraft/world/phys/Vec2;DLnet/minecraft/server/level/ServerLevel;Lnet/minecraft/util/RandomSource;DDDDI[Lnet/minecraft/server/commands/SpreadPlayersCommand$Position;Z)V +MD: net/minecraft/server/commands/SpreadPlayersCommand/m_288016_ (Z[Lnet/minecraft/server/commands/SpreadPlayersCommand$Position;Lnet/minecraft/world/phys/Vec2;D)Lnet/minecraft/network/chat/Component; net/minecraft/server/commands/SpreadPlayersCommand/lambda$spreadPlayers$6 (Z[Lnet/minecraft/server/commands/SpreadPlayersCommand$Position;Lnet/minecraft/world/phys/Vec2;D)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/commands/SpreadPlayersCommand/m_288017_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/SpreadPlayersCommand/lambda$register$4 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/SpreadPlayersCommand$Position/ ()V net/minecraft/server/commands/SpreadPlayersCommand$Position/ ()V +MD: net/minecraft/server/commands/SpreadPlayersCommand$Position/m_138752_ ()V net/minecraft/server/commands/SpreadPlayersCommand$Position/normalize ()V +MD: net/minecraft/server/commands/SpreadPlayersCommand$Position/m_138753_ (DDDD)Z net/minecraft/server/commands/SpreadPlayersCommand$Position/clamp (DDDD)Z +MD: net/minecraft/server/commands/SpreadPlayersCommand$Position/m_138758_ (Lnet/minecraft/world/level/BlockGetter;I)I net/minecraft/server/commands/SpreadPlayersCommand$Position/getSpawnY (Lnet/minecraft/world/level/BlockGetter;I)I +MD: net/minecraft/server/commands/SpreadPlayersCommand$Position/m_138767_ (Lnet/minecraft/server/commands/SpreadPlayersCommand$Position;)D net/minecraft/server/commands/SpreadPlayersCommand$Position/dist (Lnet/minecraft/server/commands/SpreadPlayersCommand$Position;)D +MD: net/minecraft/server/commands/SpreadPlayersCommand$Position/m_138773_ (Lnet/minecraft/world/level/BlockGetter;I)Z net/minecraft/server/commands/SpreadPlayersCommand$Position/isSafe (Lnet/minecraft/world/level/BlockGetter;I)Z +MD: net/minecraft/server/commands/SpreadPlayersCommand$Position/m_138776_ (Lnet/minecraft/server/commands/SpreadPlayersCommand$Position;)V net/minecraft/server/commands/SpreadPlayersCommand$Position/moveAway (Lnet/minecraft/server/commands/SpreadPlayersCommand$Position;)V +MD: net/minecraft/server/commands/SpreadPlayersCommand$Position/m_180525_ ()D net/minecraft/server/commands/SpreadPlayersCommand$Position/getLength ()D +MD: net/minecraft/server/commands/SpreadPlayersCommand$Position/m_214752_ (Lnet/minecraft/util/RandomSource;DDDD)V net/minecraft/server/commands/SpreadPlayersCommand$Position/randomize (Lnet/minecraft/util/RandomSource;DDDD)V +MD: net/minecraft/server/commands/StopCommand/ ()V net/minecraft/server/commands/StopCommand/ ()V +MD: net/minecraft/server/commands/StopCommand/m_138785_ (Lcom/mojang/brigadier/CommandDispatcher;)V net/minecraft/server/commands/StopCommand/register (Lcom/mojang/brigadier/CommandDispatcher;)V +MD: net/minecraft/server/commands/StopCommand/m_138789_ (Lnet/minecraft/commands/CommandSourceStack;)Z net/minecraft/server/commands/StopCommand/lambda$register$0 (Lnet/minecraft/commands/CommandSourceStack;)Z +MD: net/minecraft/server/commands/StopCommand/m_288018_ ()Lnet/minecraft/network/chat/Component; net/minecraft/server/commands/StopCommand/lambda$register$1 ()Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/commands/StopCommand/m_288019_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/StopCommand/lambda$register$2 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/StopSoundCommand/ ()V net/minecraft/server/commands/StopSoundCommand/ ()V +MD: net/minecraft/server/commands/StopSoundCommand/m_138791_ (Lnet/minecraft/sounds/SoundSource;Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/StopSoundCommand/lambda$register$3 (Lnet/minecraft/sounds/SoundSource;Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/StopSoundCommand/m_138794_ (Lcom/mojang/brigadier/CommandDispatcher;)V net/minecraft/server/commands/StopSoundCommand/register (Lcom/mojang/brigadier/CommandDispatcher;)V +MD: net/minecraft/server/commands/StopSoundCommand/m_138796_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/StopSoundCommand/lambda$register$1 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/StopSoundCommand/m_138798_ (Lnet/minecraft/commands/CommandSourceStack;)Z net/minecraft/server/commands/StopSoundCommand/lambda$register$4 (Lnet/minecraft/commands/CommandSourceStack;)Z +MD: net/minecraft/server/commands/StopSoundCommand/m_138800_ (Lnet/minecraft/commands/CommandSourceStack;Ljava/util/Collection;Lnet/minecraft/sounds/SoundSource;Lnet/minecraft/resources/ResourceLocation;)I net/minecraft/server/commands/StopSoundCommand/stopSound (Lnet/minecraft/commands/CommandSourceStack;Ljava/util/Collection;Lnet/minecraft/sounds/SoundSource;Lnet/minecraft/resources/ResourceLocation;)I +MD: net/minecraft/server/commands/StopSoundCommand/m_138805_ (Lnet/minecraft/sounds/SoundSource;Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/StopSoundCommand/lambda$register$2 (Lnet/minecraft/sounds/SoundSource;Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/StopSoundCommand/m_138808_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/StopSoundCommand/lambda$register$0 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/StopSoundCommand/m_288020_ (Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/network/chat/Component; net/minecraft/server/commands/StopSoundCommand/lambda$stopSound$7 (Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/commands/StopSoundCommand/m_288021_ ()Lnet/minecraft/network/chat/Component; net/minecraft/server/commands/StopSoundCommand/lambda$stopSound$8 ()Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/commands/StopSoundCommand/m_288022_ (Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/sounds/SoundSource;)Lnet/minecraft/network/chat/Component; net/minecraft/server/commands/StopSoundCommand/lambda$stopSound$5 (Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/sounds/SoundSource;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/commands/StopSoundCommand/m_288023_ (Lnet/minecraft/sounds/SoundSource;)Lnet/minecraft/network/chat/Component; net/minecraft/server/commands/StopSoundCommand/lambda$stopSound$6 (Lnet/minecraft/sounds/SoundSource;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/commands/SummonCommand/ ()V net/minecraft/server/commands/SummonCommand/ ()V +MD: net/minecraft/server/commands/SummonCommand/ ()V net/minecraft/server/commands/SummonCommand/ ()V +MD: net/minecraft/server/commands/SummonCommand/m_138818_ (Lnet/minecraft/commands/CommandSourceStack;)Z net/minecraft/server/commands/SummonCommand/lambda$register$0 (Lnet/minecraft/commands/CommandSourceStack;)Z +MD: net/minecraft/server/commands/SummonCommand/m_138826_ (Lnet/minecraft/world/phys/Vec3;Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/world/entity/Entity; net/minecraft/server/commands/SummonCommand/lambda$createEntity$4 (Lnet/minecraft/world/phys/Vec3;Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/world/entity/Entity; +MD: net/minecraft/server/commands/SummonCommand/m_244861_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/SummonCommand/lambda$register$2 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/SummonCommand/m_244862_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/SummonCommand/lambda$register$3 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/SummonCommand/m_244863_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/SummonCommand/lambda$register$1 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/SummonCommand/m_245828_ (Lnet/minecraft/commands/CommandSourceStack;Lnet/minecraft/core/Holder$Reference;Lnet/minecraft/world/phys/Vec3;Lnet/minecraft/nbt/CompoundTag;Z)I net/minecraft/server/commands/SummonCommand/spawnEntity (Lnet/minecraft/commands/CommandSourceStack;Lnet/minecraft/core/Holder$Reference;Lnet/minecraft/world/phys/Vec3;Lnet/minecraft/nbt/CompoundTag;Z)I +MD: net/minecraft/server/commands/SummonCommand/m_246670_ (Lcom/mojang/brigadier/CommandDispatcher;Lnet/minecraft/commands/CommandBuildContext;)V net/minecraft/server/commands/SummonCommand/register (Lcom/mojang/brigadier/CommandDispatcher;Lnet/minecraft/commands/CommandBuildContext;)V +MD: net/minecraft/server/commands/SummonCommand/m_269066_ (Lnet/minecraft/commands/CommandSourceStack;Lnet/minecraft/core/Holder$Reference;Lnet/minecraft/world/phys/Vec3;Lnet/minecraft/nbt/CompoundTag;Z)Lnet/minecraft/world/entity/Entity; net/minecraft/server/commands/SummonCommand/createEntity (Lnet/minecraft/commands/CommandSourceStack;Lnet/minecraft/core/Holder$Reference;Lnet/minecraft/world/phys/Vec3;Lnet/minecraft/nbt/CompoundTag;Z)Lnet/minecraft/world/entity/Entity; +MD: net/minecraft/server/commands/SummonCommand/m_288024_ (Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/network/chat/Component; net/minecraft/server/commands/SummonCommand/lambda$spawnEntity$5 (Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/commands/TagCommand/ ()V net/minecraft/server/commands/TagCommand/ ()V +MD: net/minecraft/server/commands/TagCommand/ ()V net/minecraft/server/commands/TagCommand/ ()V +MD: net/minecraft/server/commands/TagCommand/m_138836_ (Lcom/mojang/brigadier/CommandDispatcher;)V net/minecraft/server/commands/TagCommand/register (Lcom/mojang/brigadier/CommandDispatcher;)V +MD: net/minecraft/server/commands/TagCommand/m_138838_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/TagCommand/lambda$register$4 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/TagCommand/m_138840_ (Lcom/mojang/brigadier/context/CommandContext;Lcom/mojang/brigadier/suggestion/SuggestionsBuilder;)Ljava/util/concurrent/CompletableFuture; net/minecraft/server/commands/TagCommand/lambda$register$2 (Lcom/mojang/brigadier/context/CommandContext;Lcom/mojang/brigadier/suggestion/SuggestionsBuilder;)Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/server/commands/TagCommand/m_138843_ (Lnet/minecraft/commands/CommandSourceStack;)Z net/minecraft/server/commands/TagCommand/lambda$register$0 (Lnet/minecraft/commands/CommandSourceStack;)Z +MD: net/minecraft/server/commands/TagCommand/m_138845_ (Lnet/minecraft/commands/CommandSourceStack;Ljava/util/Collection;)I net/minecraft/server/commands/TagCommand/listTags (Lnet/minecraft/commands/CommandSourceStack;Ljava/util/Collection;)I +MD: net/minecraft/server/commands/TagCommand/m_138848_ (Lnet/minecraft/commands/CommandSourceStack;Ljava/util/Collection;Ljava/lang/String;)I net/minecraft/server/commands/TagCommand/addTag (Lnet/minecraft/commands/CommandSourceStack;Ljava/util/Collection;Ljava/lang/String;)I +MD: net/minecraft/server/commands/TagCommand/m_138852_ (Ljava/util/Collection;)Ljava/util/Collection; net/minecraft/server/commands/TagCommand/getTags (Ljava/util/Collection;)Ljava/util/Collection; +MD: net/minecraft/server/commands/TagCommand/m_138854_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/TagCommand/lambda$register$3 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/TagCommand/m_138856_ (Lnet/minecraft/commands/CommandSourceStack;Ljava/util/Collection;Ljava/lang/String;)I net/minecraft/server/commands/TagCommand/removeTag (Lnet/minecraft/commands/CommandSourceStack;Ljava/util/Collection;Ljava/lang/String;)I +MD: net/minecraft/server/commands/TagCommand/m_138860_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/TagCommand/lambda$register$1 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/TagCommand/m_288025_ (Ljava/lang/String;Ljava/util/Collection;)Lnet/minecraft/network/chat/Component; net/minecraft/server/commands/TagCommand/lambda$addTag$5 (Ljava/lang/String;Ljava/util/Collection;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/commands/TagCommand/m_288026_ (Ljava/util/Collection;Ljava/util/Set;)Lnet/minecraft/network/chat/Component; net/minecraft/server/commands/TagCommand/lambda$listTags$12 (Ljava/util/Collection;Ljava/util/Set;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/commands/TagCommand/m_288027_ (Lnet/minecraft/world/entity/Entity;Ljava/util/Set;)Lnet/minecraft/network/chat/Component; net/minecraft/server/commands/TagCommand/lambda$listTags$10 (Lnet/minecraft/world/entity/Entity;Ljava/util/Set;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/commands/TagCommand/m_288028_ (Ljava/lang/String;Ljava/util/Collection;)Lnet/minecraft/network/chat/Component; net/minecraft/server/commands/TagCommand/lambda$addTag$6 (Ljava/lang/String;Ljava/util/Collection;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/commands/TagCommand/m_288029_ (Ljava/util/Collection;)Lnet/minecraft/network/chat/Component; net/minecraft/server/commands/TagCommand/lambda$listTags$11 (Ljava/util/Collection;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/commands/TagCommand/m_288030_ (Ljava/lang/String;Ljava/util/Collection;)Lnet/minecraft/network/chat/Component; net/minecraft/server/commands/TagCommand/lambda$removeTag$8 (Ljava/lang/String;Ljava/util/Collection;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/commands/TagCommand/m_288031_ (Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/network/chat/Component; net/minecraft/server/commands/TagCommand/lambda$listTags$9 (Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/commands/TagCommand/m_288032_ (Ljava/lang/String;Ljava/util/Collection;)Lnet/minecraft/network/chat/Component; net/minecraft/server/commands/TagCommand/lambda$removeTag$7 (Ljava/lang/String;Ljava/util/Collection;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/commands/TeamCommand/ ()V net/minecraft/server/commands/TeamCommand/ ()V +MD: net/minecraft/server/commands/TeamCommand/ ()V net/minecraft/server/commands/TeamCommand/ ()V +MD: net/minecraft/server/commands/TeamCommand/m_138875_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/TeamCommand/lambda$register$2 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/TeamCommand/m_138877_ (Lcom/mojang/brigadier/CommandDispatcher;)V net/minecraft/server/commands/TeamCommand/register (Lcom/mojang/brigadier/CommandDispatcher;)V +MD: net/minecraft/server/commands/TeamCommand/m_138881_ (Lnet/minecraft/commands/CommandSourceStack;)I net/minecraft/server/commands/TeamCommand/listTeams (Lnet/minecraft/commands/CommandSourceStack;)I +MD: net/minecraft/server/commands/TeamCommand/m_138883_ (Lnet/minecraft/commands/CommandSourceStack;Lnet/minecraft/world/scores/PlayerTeam;)I net/minecraft/server/commands/TeamCommand/emptyTeam (Lnet/minecraft/commands/CommandSourceStack;Lnet/minecraft/world/scores/PlayerTeam;)I +MD: net/minecraft/server/commands/TeamCommand/m_138886_ (Lnet/minecraft/commands/CommandSourceStack;Lnet/minecraft/world/scores/PlayerTeam;Lnet/minecraft/world/scores/Team$CollisionRule;)I net/minecraft/server/commands/TeamCommand/setCollision (Lnet/minecraft/commands/CommandSourceStack;Lnet/minecraft/world/scores/PlayerTeam;Lnet/minecraft/world/scores/Team$CollisionRule;)I +MD: net/minecraft/server/commands/TeamCommand/m_138890_ (Lnet/minecraft/commands/CommandSourceStack;Lnet/minecraft/world/scores/PlayerTeam;Lnet/minecraft/world/scores/Team$Visibility;)I net/minecraft/server/commands/TeamCommand/setNametagVisibility (Lnet/minecraft/commands/CommandSourceStack;Lnet/minecraft/world/scores/PlayerTeam;Lnet/minecraft/world/scores/Team$Visibility;)I +MD: net/minecraft/server/commands/TeamCommand/m_138894_ (Lnet/minecraft/commands/CommandSourceStack;Lnet/minecraft/world/scores/PlayerTeam;Ljava/util/Collection;)I net/minecraft/server/commands/TeamCommand/joinTeam (Lnet/minecraft/commands/CommandSourceStack;Lnet/minecraft/world/scores/PlayerTeam;Ljava/util/Collection;)I +MD: net/minecraft/server/commands/TeamCommand/m_138898_ (Lnet/minecraft/commands/CommandSourceStack;Lnet/minecraft/world/scores/PlayerTeam;Lnet/minecraft/ChatFormatting;)I net/minecraft/server/commands/TeamCommand/setColor (Lnet/minecraft/commands/CommandSourceStack;Lnet/minecraft/world/scores/PlayerTeam;Lnet/minecraft/ChatFormatting;)I +MD: net/minecraft/server/commands/TeamCommand/m_138902_ (Lnet/minecraft/commands/CommandSourceStack;Lnet/minecraft/world/scores/PlayerTeam;Lnet/minecraft/network/chat/Component;)I net/minecraft/server/commands/TeamCommand/setDisplayName (Lnet/minecraft/commands/CommandSourceStack;Lnet/minecraft/world/scores/PlayerTeam;Lnet/minecraft/network/chat/Component;)I +MD: net/minecraft/server/commands/TeamCommand/m_138906_ (Lnet/minecraft/commands/CommandSourceStack;Lnet/minecraft/world/scores/PlayerTeam;Z)I net/minecraft/server/commands/TeamCommand/setFriendlySight (Lnet/minecraft/commands/CommandSourceStack;Lnet/minecraft/world/scores/PlayerTeam;Z)I +MD: net/minecraft/server/commands/TeamCommand/m_138910_ (Lnet/minecraft/commands/CommandSourceStack;Ljava/lang/String;)I net/minecraft/server/commands/TeamCommand/createTeam (Lnet/minecraft/commands/CommandSourceStack;Ljava/lang/String;)I +MD: net/minecraft/server/commands/TeamCommand/m_138913_ (Lnet/minecraft/commands/CommandSourceStack;Ljava/lang/String;Lnet/minecraft/network/chat/Component;)I net/minecraft/server/commands/TeamCommand/createTeam (Lnet/minecraft/commands/CommandSourceStack;Ljava/lang/String;Lnet/minecraft/network/chat/Component;)I +MD: net/minecraft/server/commands/TeamCommand/m_138917_ (Lnet/minecraft/commands/CommandSourceStack;Ljava/util/Collection;)I net/minecraft/server/commands/TeamCommand/leaveTeam (Lnet/minecraft/commands/CommandSourceStack;Ljava/util/Collection;)I +MD: net/minecraft/server/commands/TeamCommand/m_138922_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/TeamCommand/lambda$register$27 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/TeamCommand/m_138926_ (Lnet/minecraft/commands/CommandSourceStack;Lnet/minecraft/world/scores/PlayerTeam;)I net/minecraft/server/commands/TeamCommand/deleteTeam (Lnet/minecraft/commands/CommandSourceStack;Lnet/minecraft/world/scores/PlayerTeam;)I +MD: net/minecraft/server/commands/TeamCommand/m_138929_ (Lnet/minecraft/commands/CommandSourceStack;Lnet/minecraft/world/scores/PlayerTeam;Lnet/minecraft/world/scores/Team$Visibility;)I net/minecraft/server/commands/TeamCommand/setDeathMessageVisibility (Lnet/minecraft/commands/CommandSourceStack;Lnet/minecraft/world/scores/PlayerTeam;Lnet/minecraft/world/scores/Team$Visibility;)I +MD: net/minecraft/server/commands/TeamCommand/m_138933_ (Lnet/minecraft/commands/CommandSourceStack;Lnet/minecraft/world/scores/PlayerTeam;Lnet/minecraft/network/chat/Component;)I net/minecraft/server/commands/TeamCommand/setPrefix (Lnet/minecraft/commands/CommandSourceStack;Lnet/minecraft/world/scores/PlayerTeam;Lnet/minecraft/network/chat/Component;)I +MD: net/minecraft/server/commands/TeamCommand/m_138937_ (Lnet/minecraft/commands/CommandSourceStack;Lnet/minecraft/world/scores/PlayerTeam;Z)I net/minecraft/server/commands/TeamCommand/setFriendlyFire (Lnet/minecraft/commands/CommandSourceStack;Lnet/minecraft/world/scores/PlayerTeam;Z)I +MD: net/minecraft/server/commands/TeamCommand/m_138941_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/TeamCommand/lambda$register$26 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/TeamCommand/m_138943_ (Lnet/minecraft/commands/CommandSourceStack;Lnet/minecraft/world/scores/PlayerTeam;)I net/minecraft/server/commands/TeamCommand/listMembers (Lnet/minecraft/commands/CommandSourceStack;Lnet/minecraft/world/scores/PlayerTeam;)I +MD: net/minecraft/server/commands/TeamCommand/m_138946_ (Lnet/minecraft/commands/CommandSourceStack;Lnet/minecraft/world/scores/PlayerTeam;Lnet/minecraft/network/chat/Component;)I net/minecraft/server/commands/TeamCommand/setSuffix (Lnet/minecraft/commands/CommandSourceStack;Lnet/minecraft/world/scores/PlayerTeam;Lnet/minecraft/network/chat/Component;)I +MD: net/minecraft/server/commands/TeamCommand/m_138950_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/TeamCommand/lambda$register$25 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/TeamCommand/m_138952_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/TeamCommand/lambda$register$24 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/TeamCommand/m_138954_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/TeamCommand/lambda$register$23 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/TeamCommand/m_138956_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/TeamCommand/lambda$register$22 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/TeamCommand/m_138958_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/TeamCommand/lambda$register$21 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/TeamCommand/m_138960_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/TeamCommand/lambda$register$20 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/TeamCommand/m_138962_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/TeamCommand/lambda$register$19 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/TeamCommand/m_138964_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/TeamCommand/lambda$register$18 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/TeamCommand/m_138966_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/TeamCommand/lambda$register$17 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/TeamCommand/m_138968_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/TeamCommand/lambda$register$16 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/TeamCommand/m_138970_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/TeamCommand/lambda$register$15 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/TeamCommand/m_138972_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/TeamCommand/lambda$register$14 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/TeamCommand/m_138974_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/TeamCommand/lambda$register$13 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/TeamCommand/m_138976_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/TeamCommand/lambda$register$12 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/TeamCommand/m_138978_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/TeamCommand/lambda$register$11 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/TeamCommand/m_138980_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/TeamCommand/lambda$register$10 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/TeamCommand/m_138982_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/TeamCommand/lambda$register$9 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/TeamCommand/m_138984_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/TeamCommand/lambda$register$8 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/TeamCommand/m_138986_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/TeamCommand/lambda$register$7 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/TeamCommand/m_138988_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/TeamCommand/lambda$register$6 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/TeamCommand/m_138990_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/TeamCommand/lambda$register$5 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/TeamCommand/m_138992_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/TeamCommand/lambda$register$4 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/TeamCommand/m_138994_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/TeamCommand/lambda$register$3 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/TeamCommand/m_183710_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/TeamCommand/lambda$register$1 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/TeamCommand/m_183712_ (Lnet/minecraft/commands/CommandSourceStack;)Z net/minecraft/server/commands/TeamCommand/lambda$register$0 (Lnet/minecraft/commands/CommandSourceStack;)Z +MD: net/minecraft/server/commands/TeamCommand/m_288033_ (Lnet/minecraft/world/scores/PlayerTeam;Ljava/util/Collection;)Lnet/minecraft/network/chat/Component; net/minecraft/server/commands/TeamCommand/lambda$listMembers$43 (Lnet/minecraft/world/scores/PlayerTeam;Ljava/util/Collection;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/commands/TeamCommand/m_288034_ (Lnet/minecraft/world/scores/PlayerTeam;Lnet/minecraft/world/scores/Team$Visibility;)Lnet/minecraft/network/chat/Component; net/minecraft/server/commands/TeamCommand/lambda$setNametagVisibility$32 (Lnet/minecraft/world/scores/PlayerTeam;Lnet/minecraft/world/scores/Team$Visibility;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/commands/TeamCommand/m_288035_ (Lnet/minecraft/world/scores/PlayerTeam;)Lnet/minecraft/network/chat/Component; net/minecraft/server/commands/TeamCommand/lambda$createTeam$41 (Lnet/minecraft/world/scores/PlayerTeam;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/commands/TeamCommand/m_288036_ (Ljava/util/Collection;)Lnet/minecraft/network/chat/Component; net/minecraft/server/commands/TeamCommand/lambda$listTeams$45 (Ljava/util/Collection;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/commands/TeamCommand/m_288037_ (Lnet/minecraft/network/chat/Component;)Lnet/minecraft/network/chat/Component; net/minecraft/server/commands/TeamCommand/lambda$setPrefix$46 (Lnet/minecraft/network/chat/Component;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/commands/TeamCommand/m_288038_ (Lnet/minecraft/world/scores/PlayerTeam;Lnet/minecraft/world/scores/Team$CollisionRule;)Lnet/minecraft/network/chat/Component; net/minecraft/server/commands/TeamCommand/lambda$setCollision$34 (Lnet/minecraft/world/scores/PlayerTeam;Lnet/minecraft/world/scores/Team$CollisionRule;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/commands/TeamCommand/m_288039_ (Lnet/minecraft/world/scores/PlayerTeam;)Lnet/minecraft/network/chat/Component; net/minecraft/server/commands/TeamCommand/lambda$setDisplayName$37 (Lnet/minecraft/world/scores/PlayerTeam;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/commands/TeamCommand/m_288040_ (Lnet/minecraft/world/scores/PlayerTeam;)Lnet/minecraft/network/chat/Component; net/minecraft/server/commands/TeamCommand/lambda$listMembers$42 (Lnet/minecraft/world/scores/PlayerTeam;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/commands/TeamCommand/m_288041_ (Lnet/minecraft/world/scores/PlayerTeam;)Lnet/minecraft/network/chat/Component; net/minecraft/server/commands/TeamCommand/lambda$deleteTeam$40 (Lnet/minecraft/world/scores/PlayerTeam;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/commands/TeamCommand/m_288042_ (Ljava/util/Collection;)Lnet/minecraft/network/chat/Component; net/minecraft/server/commands/TeamCommand/lambda$leaveTeam$28 (Ljava/util/Collection;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/commands/TeamCommand/m_288043_ (Ljava/util/Collection;Lnet/minecraft/world/scores/PlayerTeam;)Lnet/minecraft/network/chat/Component; net/minecraft/server/commands/TeamCommand/lambda$joinTeam$31 (Ljava/util/Collection;Lnet/minecraft/world/scores/PlayerTeam;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/commands/TeamCommand/m_288044_ (Lnet/minecraft/network/chat/Component;)Lnet/minecraft/network/chat/Component; net/minecraft/server/commands/TeamCommand/lambda$setSuffix$47 (Lnet/minecraft/network/chat/Component;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/commands/TeamCommand/m_288045_ (Ljava/util/Collection;Lnet/minecraft/world/scores/PlayerTeam;)Lnet/minecraft/network/chat/Component; net/minecraft/server/commands/TeamCommand/lambda$emptyTeam$39 (Ljava/util/Collection;Lnet/minecraft/world/scores/PlayerTeam;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/commands/TeamCommand/m_288046_ (Lnet/minecraft/world/scores/PlayerTeam;Lnet/minecraft/ChatFormatting;)Lnet/minecraft/network/chat/Component; net/minecraft/server/commands/TeamCommand/lambda$setColor$38 (Lnet/minecraft/world/scores/PlayerTeam;Lnet/minecraft/ChatFormatting;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/commands/TeamCommand/m_288047_ (Ljava/util/Collection;)Lnet/minecraft/network/chat/Component; net/minecraft/server/commands/TeamCommand/lambda$leaveTeam$29 (Ljava/util/Collection;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/commands/TeamCommand/m_288048_ (Ljava/util/Collection;Lnet/minecraft/world/scores/PlayerTeam;)Lnet/minecraft/network/chat/Component; net/minecraft/server/commands/TeamCommand/lambda$joinTeam$30 (Ljava/util/Collection;Lnet/minecraft/world/scores/PlayerTeam;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/commands/TeamCommand/m_288049_ ()Lnet/minecraft/network/chat/Component; net/minecraft/server/commands/TeamCommand/lambda$listTeams$44 ()Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/commands/TeamCommand/m_288050_ (ZLnet/minecraft/world/scores/PlayerTeam;)Lnet/minecraft/network/chat/Component; net/minecraft/server/commands/TeamCommand/lambda$setFriendlySight$35 (ZLnet/minecraft/world/scores/PlayerTeam;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/commands/TeamCommand/m_288051_ (ZLnet/minecraft/world/scores/PlayerTeam;)Lnet/minecraft/network/chat/Component; net/minecraft/server/commands/TeamCommand/lambda$setFriendlyFire$36 (ZLnet/minecraft/world/scores/PlayerTeam;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/commands/TeamCommand/m_288052_ (Lnet/minecraft/world/scores/PlayerTeam;Lnet/minecraft/world/scores/Team$Visibility;)Lnet/minecraft/network/chat/Component; net/minecraft/server/commands/TeamCommand/lambda$setDeathMessageVisibility$33 (Lnet/minecraft/world/scores/PlayerTeam;Lnet/minecraft/world/scores/Team$Visibility;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/commands/TeamMsgCommand/ ()V net/minecraft/server/commands/TeamMsgCommand/ ()V +MD: net/minecraft/server/commands/TeamMsgCommand/ ()V net/minecraft/server/commands/TeamMsgCommand/ ()V +MD: net/minecraft/server/commands/TeamMsgCommand/m_138999_ (Lcom/mojang/brigadier/CommandDispatcher;)V net/minecraft/server/commands/TeamMsgCommand/register (Lcom/mojang/brigadier/CommandDispatcher;)V +MD: net/minecraft/server/commands/TeamMsgCommand/m_244864_ (Lnet/minecraft/commands/CommandSourceStack;Lnet/minecraft/world/entity/Entity;Lnet/minecraft/world/scores/PlayerTeam;Ljava/util/List;Lnet/minecraft/network/chat/PlayerChatMessage;)V net/minecraft/server/commands/TeamMsgCommand/lambda$register$1 (Lnet/minecraft/commands/CommandSourceStack;Lnet/minecraft/world/entity/Entity;Lnet/minecraft/world/scores/PlayerTeam;Ljava/util/List;Lnet/minecraft/network/chat/PlayerChatMessage;)V +MD: net/minecraft/server/commands/TeamMsgCommand/m_244866_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/TeamMsgCommand/lambda$register$2 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/TeamMsgCommand/m_246910_ (Lnet/minecraft/commands/CommandSourceStack;Lnet/minecraft/world/entity/Entity;Lnet/minecraft/world/scores/PlayerTeam;Ljava/util/List;Lnet/minecraft/network/chat/PlayerChatMessage;)V net/minecraft/server/commands/TeamMsgCommand/sendMessage (Lnet/minecraft/commands/CommandSourceStack;Lnet/minecraft/world/entity/Entity;Lnet/minecraft/world/scores/PlayerTeam;Ljava/util/List;Lnet/minecraft/network/chat/PlayerChatMessage;)V +MD: net/minecraft/server/commands/TeamMsgCommand/m_288053_ (Lnet/minecraft/world/entity/Entity;Lnet/minecraft/world/scores/PlayerTeam;Lnet/minecraft/server/level/ServerPlayer;)Z net/minecraft/server/commands/TeamMsgCommand/lambda$register$0 (Lnet/minecraft/world/entity/Entity;Lnet/minecraft/world/scores/PlayerTeam;Lnet/minecraft/server/level/ServerPlayer;)Z +MD: net/minecraft/server/commands/TeleportCommand/ ()V net/minecraft/server/commands/TeleportCommand/ ()V +MD: net/minecraft/server/commands/TeleportCommand/ ()V net/minecraft/server/commands/TeleportCommand/ ()V +MD: net/minecraft/server/commands/TeleportCommand/m_139008_ (Lcom/mojang/brigadier/CommandDispatcher;)V net/minecraft/server/commands/TeleportCommand/register (Lcom/mojang/brigadier/CommandDispatcher;)V +MD: net/minecraft/server/commands/TeleportCommand/m_139010_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/TeleportCommand/lambda$register$8 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/TeleportCommand/m_139012_ (Lnet/minecraft/commands/CommandSourceStack;)Z net/minecraft/server/commands/TeleportCommand/lambda$register$9 (Lnet/minecraft/commands/CommandSourceStack;)Z +MD: net/minecraft/server/commands/TeleportCommand/m_139014_ (Lnet/minecraft/commands/CommandSourceStack;Lnet/minecraft/world/entity/Entity;Lnet/minecraft/server/level/ServerLevel;DDDLjava/util/Set;FFLnet/minecraft/server/commands/TeleportCommand$LookAt;)V net/minecraft/server/commands/TeleportCommand/performTeleport (Lnet/minecraft/commands/CommandSourceStack;Lnet/minecraft/world/entity/Entity;Lnet/minecraft/server/level/ServerLevel;DDDLjava/util/Set;FFLnet/minecraft/server/commands/TeleportCommand$LookAt;)V +MD: net/minecraft/server/commands/TeleportCommand/m_139025_ (Lnet/minecraft/commands/CommandSourceStack;Ljava/util/Collection;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/commands/arguments/coordinates/Coordinates;Lnet/minecraft/commands/arguments/coordinates/Coordinates;Lnet/minecraft/server/commands/TeleportCommand$LookAt;)I net/minecraft/server/commands/TeleportCommand/teleportToPos (Lnet/minecraft/commands/CommandSourceStack;Ljava/util/Collection;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/commands/arguments/coordinates/Coordinates;Lnet/minecraft/commands/arguments/coordinates/Coordinates;Lnet/minecraft/server/commands/TeleportCommand$LookAt;)I +MD: net/minecraft/server/commands/TeleportCommand/m_139032_ (Lnet/minecraft/commands/CommandSourceStack;Ljava/util/Collection;Lnet/minecraft/world/entity/Entity;)I net/minecraft/server/commands/TeleportCommand/teleportToEntity (Lnet/minecraft/commands/CommandSourceStack;Ljava/util/Collection;Lnet/minecraft/world/entity/Entity;)I +MD: net/minecraft/server/commands/TeleportCommand/m_139036_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/TeleportCommand/lambda$register$7 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/TeleportCommand/m_139038_ (Lnet/minecraft/commands/CommandSourceStack;)Z net/minecraft/server/commands/TeleportCommand/lambda$register$0 (Lnet/minecraft/commands/CommandSourceStack;)Z +MD: net/minecraft/server/commands/TeleportCommand/m_139040_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/TeleportCommand/lambda$register$6 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/TeleportCommand/m_139042_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/TeleportCommand/lambda$register$5 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/TeleportCommand/m_139044_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/TeleportCommand/lambda$register$4 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/TeleportCommand/m_139046_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/TeleportCommand/lambda$register$3 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/TeleportCommand/m_139048_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/TeleportCommand/lambda$register$2 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/TeleportCommand/m_139050_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/TeleportCommand/lambda$register$1 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/TeleportCommand/m_142775_ (D)Ljava/lang/String; net/minecraft/server/commands/TeleportCommand/formatDouble (D)Ljava/lang/String; +MD: net/minecraft/server/commands/TeleportCommand/m_288054_ (Ljava/util/Collection;Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/network/chat/Component; net/minecraft/server/commands/TeleportCommand/lambda$teleportToEntity$11 (Ljava/util/Collection;Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/commands/TeleportCommand/m_288055_ (Ljava/util/Collection;Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/network/chat/Component; net/minecraft/server/commands/TeleportCommand/lambda$teleportToEntity$10 (Ljava/util/Collection;Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/commands/TeleportCommand/m_288056_ (Ljava/util/Collection;Lnet/minecraft/world/phys/Vec3;)Lnet/minecraft/network/chat/Component; net/minecraft/server/commands/TeleportCommand/lambda$teleportToPos$13 (Ljava/util/Collection;Lnet/minecraft/world/phys/Vec3;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/commands/TeleportCommand/m_288057_ (Ljava/util/Collection;Lnet/minecraft/world/phys/Vec3;)Lnet/minecraft/network/chat/Component; net/minecraft/server/commands/TeleportCommand/lambda$teleportToPos$12 (Ljava/util/Collection;Lnet/minecraft/world/phys/Vec3;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/commands/TeleportCommand$LookAt/ (Lnet/minecraft/world/phys/Vec3;)V net/minecraft/server/commands/TeleportCommand$LookAt/ (Lnet/minecraft/world/phys/Vec3;)V +MD: net/minecraft/server/commands/TeleportCommand$LookAt/ (Lnet/minecraft/world/entity/Entity;Lnet/minecraft/commands/arguments/EntityAnchorArgument$Anchor;)V net/minecraft/server/commands/TeleportCommand$LookAt/ (Lnet/minecraft/world/entity/Entity;Lnet/minecraft/commands/arguments/EntityAnchorArgument$Anchor;)V +MD: net/minecraft/server/commands/TeleportCommand$LookAt/m_139060_ (Lnet/minecraft/commands/CommandSourceStack;Lnet/minecraft/world/entity/Entity;)V net/minecraft/server/commands/TeleportCommand$LookAt/perform (Lnet/minecraft/commands/CommandSourceStack;Lnet/minecraft/world/entity/Entity;)V +MD: net/minecraft/server/commands/TellRawCommand/ ()V net/minecraft/server/commands/TellRawCommand/ ()V +MD: net/minecraft/server/commands/TellRawCommand/m_139063_ (Lcom/mojang/brigadier/CommandDispatcher;)V net/minecraft/server/commands/TellRawCommand/register (Lcom/mojang/brigadier/CommandDispatcher;)V +MD: net/minecraft/server/commands/TellRawCommand/m_139067_ (Lnet/minecraft/commands/CommandSourceStack;)Z net/minecraft/server/commands/TellRawCommand/lambda$register$0 (Lnet/minecraft/commands/CommandSourceStack;)Z +MD: net/minecraft/server/commands/TellRawCommand/m_240394_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/TellRawCommand/lambda$register$1 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/TimeCommand/ ()V net/minecraft/server/commands/TimeCommand/ ()V +MD: net/minecraft/server/commands/TimeCommand/m_139069_ (Lnet/minecraft/server/level/ServerLevel;)I net/minecraft/server/commands/TimeCommand/getDayTime (Lnet/minecraft/server/level/ServerLevel;)I +MD: net/minecraft/server/commands/TimeCommand/m_139071_ (Lcom/mojang/brigadier/CommandDispatcher;)V net/minecraft/server/commands/TimeCommand/register (Lcom/mojang/brigadier/CommandDispatcher;)V +MD: net/minecraft/server/commands/TimeCommand/m_139075_ (Lnet/minecraft/commands/CommandSourceStack;)Z net/minecraft/server/commands/TimeCommand/lambda$register$0 (Lnet/minecraft/commands/CommandSourceStack;)Z +MD: net/minecraft/server/commands/TimeCommand/m_139077_ (Lnet/minecraft/commands/CommandSourceStack;I)I net/minecraft/server/commands/TimeCommand/setTime (Lnet/minecraft/commands/CommandSourceStack;I)I +MD: net/minecraft/server/commands/TimeCommand/m_139082_ (Lnet/minecraft/commands/CommandSourceStack;I)I net/minecraft/server/commands/TimeCommand/addTime (Lnet/minecraft/commands/CommandSourceStack;I)I +MD: net/minecraft/server/commands/TimeCommand/m_139085_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/TimeCommand/lambda$register$7 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/TimeCommand/m_139087_ (Lnet/minecraft/commands/CommandSourceStack;I)I net/minecraft/server/commands/TimeCommand/queryTime (Lnet/minecraft/commands/CommandSourceStack;I)I +MD: net/minecraft/server/commands/TimeCommand/m_139090_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/TimeCommand/lambda$register$6 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/TimeCommand/m_139092_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/TimeCommand/lambda$register$5 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/TimeCommand/m_139094_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/TimeCommand/lambda$register$4 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/TimeCommand/m_139096_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/TimeCommand/lambda$register$3 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/TimeCommand/m_139098_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/TimeCommand/lambda$register$2 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/TimeCommand/m_139100_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/TimeCommand/lambda$register$1 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/TimeCommand/m_288058_ (I)Lnet/minecraft/network/chat/Component; net/minecraft/server/commands/TimeCommand/lambda$queryTime$10 (I)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/commands/TimeCommand/m_288059_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/TimeCommand/lambda$register$9 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/TimeCommand/m_288060_ (I)Lnet/minecraft/network/chat/Component; net/minecraft/server/commands/TimeCommand/lambda$addTime$12 (I)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/commands/TimeCommand/m_288061_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/TimeCommand/lambda$register$8 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/TimeCommand/m_288062_ (I)Lnet/minecraft/network/chat/Component; net/minecraft/server/commands/TimeCommand/lambda$setTime$11 (I)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/commands/TitleCommand/ ()V net/minecraft/server/commands/TitleCommand/ ()V +MD: net/minecraft/server/commands/TitleCommand/m_139102_ (Lcom/mojang/brigadier/CommandDispatcher;)V net/minecraft/server/commands/TitleCommand/register (Lcom/mojang/brigadier/CommandDispatcher;)V +MD: net/minecraft/server/commands/TitleCommand/m_139104_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/TitleCommand/lambda$register$6 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/TitleCommand/m_139106_ (Lnet/minecraft/commands/CommandSourceStack;)Z net/minecraft/server/commands/TitleCommand/lambda$register$0 (Lnet/minecraft/commands/CommandSourceStack;)Z +MD: net/minecraft/server/commands/TitleCommand/m_139108_ (Lnet/minecraft/commands/CommandSourceStack;Ljava/util/Collection;)I net/minecraft/server/commands/TitleCommand/clearTitle (Lnet/minecraft/commands/CommandSourceStack;Ljava/util/Collection;)I +MD: net/minecraft/server/commands/TitleCommand/m_139111_ (Lnet/minecraft/commands/CommandSourceStack;Ljava/util/Collection;III)I net/minecraft/server/commands/TitleCommand/setTimes (Lnet/minecraft/commands/CommandSourceStack;Ljava/util/Collection;III)I +MD: net/minecraft/server/commands/TitleCommand/m_139122_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/TitleCommand/lambda$register$5 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/TitleCommand/m_139124_ (Lnet/minecraft/commands/CommandSourceStack;Ljava/util/Collection;)I net/minecraft/server/commands/TitleCommand/resetTitle (Lnet/minecraft/commands/CommandSourceStack;Ljava/util/Collection;)I +MD: net/minecraft/server/commands/TitleCommand/m_139127_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/TitleCommand/lambda$register$4 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/TitleCommand/m_139129_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/TitleCommand/lambda$register$3 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/TitleCommand/m_139131_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/TitleCommand/lambda$register$2 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/TitleCommand/m_139133_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/TitleCommand/lambda$register$1 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/TitleCommand/m_142780_ (Lnet/minecraft/commands/CommandSourceStack;Ljava/util/Collection;Lnet/minecraft/network/chat/Component;Ljava/lang/String;Ljava/util/function/Function;)I net/minecraft/server/commands/TitleCommand/showTitle (Lnet/minecraft/commands/CommandSourceStack;Ljava/util/Collection;Lnet/minecraft/network/chat/Component;Ljava/lang/String;Ljava/util/function/Function;)I +MD: net/minecraft/server/commands/TitleCommand/m_288063_ (Ljava/util/Collection;)Lnet/minecraft/network/chat/Component; net/minecraft/server/commands/TitleCommand/lambda$setTimes$14 (Ljava/util/Collection;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/commands/TitleCommand/m_288068_ (Ljava/util/Collection;)Lnet/minecraft/network/chat/Component; net/minecraft/server/commands/TitleCommand/lambda$resetTitle$10 (Ljava/util/Collection;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/commands/TitleCommand/m_288069_ (Ljava/util/Collection;)Lnet/minecraft/network/chat/Component; net/minecraft/server/commands/TitleCommand/lambda$clearTitle$8 (Ljava/util/Collection;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/commands/TitleCommand/m_288070_ (Ljava/lang/String;Ljava/util/Collection;)Lnet/minecraft/network/chat/Component; net/minecraft/server/commands/TitleCommand/lambda$showTitle$12 (Ljava/lang/String;Ljava/util/Collection;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/commands/TitleCommand/m_289077_ (Ljava/lang/String;Ljava/util/Collection;)Lnet/minecraft/network/chat/Component; net/minecraft/server/commands/TitleCommand/lambda$showTitle$11 (Ljava/lang/String;Ljava/util/Collection;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/commands/TitleCommand/m_289078_ (Ljava/util/Collection;)Lnet/minecraft/network/chat/Component; net/minecraft/server/commands/TitleCommand/lambda$clearTitle$7 (Ljava/util/Collection;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/commands/TitleCommand/m_289079_ (Ljava/util/Collection;)Lnet/minecraft/network/chat/Component; net/minecraft/server/commands/TitleCommand/lambda$setTimes$13 (Ljava/util/Collection;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/commands/TitleCommand/m_289080_ (Ljava/util/Collection;)Lnet/minecraft/network/chat/Component; net/minecraft/server/commands/TitleCommand/lambda$resetTitle$9 (Ljava/util/Collection;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/commands/TriggerCommand/ ()V net/minecraft/server/commands/TriggerCommand/ ()V +MD: net/minecraft/server/commands/TriggerCommand/ ()V net/minecraft/server/commands/TriggerCommand/ ()V +MD: net/minecraft/server/commands/TriggerCommand/m_139138_ (Lnet/minecraft/server/level/ServerPlayer;Lnet/minecraft/world/scores/Objective;)Lnet/minecraft/world/scores/Score; net/minecraft/server/commands/TriggerCommand/getScore (Lnet/minecraft/server/level/ServerPlayer;Lnet/minecraft/world/scores/Objective;)Lnet/minecraft/world/scores/Score; +MD: net/minecraft/server/commands/TriggerCommand/m_139141_ (Lcom/mojang/brigadier/CommandDispatcher;)V net/minecraft/server/commands/TriggerCommand/register (Lcom/mojang/brigadier/CommandDispatcher;)V +MD: net/minecraft/server/commands/TriggerCommand/m_139143_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/TriggerCommand/lambda$register$3 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/TriggerCommand/m_139145_ (Lcom/mojang/brigadier/context/CommandContext;Lcom/mojang/brigadier/suggestion/SuggestionsBuilder;)Ljava/util/concurrent/CompletableFuture; net/minecraft/server/commands/TriggerCommand/lambda$register$0 (Lcom/mojang/brigadier/context/CommandContext;Lcom/mojang/brigadier/suggestion/SuggestionsBuilder;)Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/server/commands/TriggerCommand/m_139148_ (Lnet/minecraft/commands/CommandSourceStack;Lcom/mojang/brigadier/suggestion/SuggestionsBuilder;)Ljava/util/concurrent/CompletableFuture; net/minecraft/server/commands/TriggerCommand/suggestObjectives (Lnet/minecraft/commands/CommandSourceStack;Lcom/mojang/brigadier/suggestion/SuggestionsBuilder;)Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/server/commands/TriggerCommand/m_139151_ (Lnet/minecraft/commands/CommandSourceStack;Lnet/minecraft/world/scores/Score;)I net/minecraft/server/commands/TriggerCommand/simpleTrigger (Lnet/minecraft/commands/CommandSourceStack;Lnet/minecraft/world/scores/Score;)I +MD: net/minecraft/server/commands/TriggerCommand/m_139154_ (Lnet/minecraft/commands/CommandSourceStack;Lnet/minecraft/world/scores/Score;I)I net/minecraft/server/commands/TriggerCommand/addValue (Lnet/minecraft/commands/CommandSourceStack;Lnet/minecraft/world/scores/Score;I)I +MD: net/minecraft/server/commands/TriggerCommand/m_139158_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/TriggerCommand/lambda$register$2 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/TriggerCommand/m_139160_ (Lnet/minecraft/commands/CommandSourceStack;Lnet/minecraft/world/scores/Score;I)I net/minecraft/server/commands/TriggerCommand/setValue (Lnet/minecraft/commands/CommandSourceStack;Lnet/minecraft/world/scores/Score;I)I +MD: net/minecraft/server/commands/TriggerCommand/m_139164_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/TriggerCommand/lambda$register$1 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/TriggerCommand/m_288071_ (Lnet/minecraft/world/scores/Score;I)Lnet/minecraft/network/chat/Component; net/minecraft/server/commands/TriggerCommand/lambda$setValue$5 (Lnet/minecraft/world/scores/Score;I)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/commands/TriggerCommand/m_288072_ (Lnet/minecraft/world/scores/Score;)Lnet/minecraft/network/chat/Component; net/minecraft/server/commands/TriggerCommand/lambda$simpleTrigger$6 (Lnet/minecraft/world/scores/Score;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/commands/TriggerCommand/m_288073_ (Lnet/minecraft/world/scores/Score;I)Lnet/minecraft/network/chat/Component; net/minecraft/server/commands/TriggerCommand/lambda$addValue$4 (Lnet/minecraft/world/scores/Score;I)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/commands/WardenSpawnTrackerCommand/ ()V net/minecraft/server/commands/WardenSpawnTrackerCommand/ ()V +MD: net/minecraft/server/commands/WardenSpawnTrackerCommand/m_214773_ (Lcom/mojang/brigadier/CommandDispatcher;)V net/minecraft/server/commands/WardenSpawnTrackerCommand/register (Lcom/mojang/brigadier/CommandDispatcher;)V +MD: net/minecraft/server/commands/WardenSpawnTrackerCommand/m_214775_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/WardenSpawnTrackerCommand/lambda$register$2 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/WardenSpawnTrackerCommand/m_214777_ (Lnet/minecraft/commands/CommandSourceStack;)Z net/minecraft/server/commands/WardenSpawnTrackerCommand/lambda$register$0 (Lnet/minecraft/commands/CommandSourceStack;)Z +MD: net/minecraft/server/commands/WardenSpawnTrackerCommand/m_214779_ (Lnet/minecraft/commands/CommandSourceStack;Ljava/util/Collection;)I net/minecraft/server/commands/WardenSpawnTrackerCommand/resetTracker (Lnet/minecraft/commands/CommandSourceStack;Ljava/util/Collection;)I +MD: net/minecraft/server/commands/WardenSpawnTrackerCommand/m_214782_ (Lnet/minecraft/commands/CommandSourceStack;Ljava/util/Collection;I)I net/minecraft/server/commands/WardenSpawnTrackerCommand/setWarningLevel (Lnet/minecraft/commands/CommandSourceStack;Ljava/util/Collection;I)I +MD: net/minecraft/server/commands/WardenSpawnTrackerCommand/m_214786_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/WardenSpawnTrackerCommand/lambda$register$1 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/WardenSpawnTrackerCommand/m_244869_ (ILnet/minecraft/world/entity/monster/warden/WardenSpawnTracker;)V net/minecraft/server/commands/WardenSpawnTrackerCommand/lambda$setWarningLevel$3 (ILnet/minecraft/world/entity/monster/warden/WardenSpawnTracker;)V +MD: net/minecraft/server/commands/WardenSpawnTrackerCommand/m_288074_ (Ljava/util/Collection;)Lnet/minecraft/network/chat/Component; net/minecraft/server/commands/WardenSpawnTrackerCommand/lambda$setWarningLevel$5 (Ljava/util/Collection;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/commands/WardenSpawnTrackerCommand/m_288075_ (Ljava/util/Collection;)Lnet/minecraft/network/chat/Component; net/minecraft/server/commands/WardenSpawnTrackerCommand/lambda$setWarningLevel$4 (Ljava/util/Collection;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/commands/WardenSpawnTrackerCommand/m_288076_ (Ljava/util/Collection;)Lnet/minecraft/network/chat/Component; net/minecraft/server/commands/WardenSpawnTrackerCommand/lambda$resetTracker$6 (Ljava/util/Collection;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/commands/WardenSpawnTrackerCommand/m_288077_ (Ljava/util/Collection;)Lnet/minecraft/network/chat/Component; net/minecraft/server/commands/WardenSpawnTrackerCommand/lambda$resetTracker$7 (Ljava/util/Collection;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/commands/WeatherCommand/ ()V net/minecraft/server/commands/WeatherCommand/ ()V +MD: net/minecraft/server/commands/WeatherCommand/m_139166_ (Lcom/mojang/brigadier/CommandDispatcher;)V net/minecraft/server/commands/WeatherCommand/register (Lcom/mojang/brigadier/CommandDispatcher;)V +MD: net/minecraft/server/commands/WeatherCommand/m_139170_ (Lnet/minecraft/commands/CommandSourceStack;)Z net/minecraft/server/commands/WeatherCommand/lambda$register$0 (Lnet/minecraft/commands/CommandSourceStack;)Z +MD: net/minecraft/server/commands/WeatherCommand/m_139172_ (Lnet/minecraft/commands/CommandSourceStack;I)I net/minecraft/server/commands/WeatherCommand/setClear (Lnet/minecraft/commands/CommandSourceStack;I)I +MD: net/minecraft/server/commands/WeatherCommand/m_139177_ (Lnet/minecraft/commands/CommandSourceStack;I)I net/minecraft/server/commands/WeatherCommand/setRain (Lnet/minecraft/commands/CommandSourceStack;I)I +MD: net/minecraft/server/commands/WeatherCommand/m_139182_ (Lnet/minecraft/commands/CommandSourceStack;I)I net/minecraft/server/commands/WeatherCommand/setThunder (Lnet/minecraft/commands/CommandSourceStack;I)I +MD: net/minecraft/server/commands/WeatherCommand/m_263940_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/WeatherCommand/lambda$register$6 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/WeatherCommand/m_263941_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/WeatherCommand/lambda$register$3 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/WeatherCommand/m_263942_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/WeatherCommand/lambda$register$1 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/WeatherCommand/m_263943_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/WeatherCommand/lambda$register$2 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/WeatherCommand/m_263944_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/WeatherCommand/lambda$register$5 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/WeatherCommand/m_263945_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/WeatherCommand/lambda$register$4 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/WeatherCommand/m_264595_ (Lnet/minecraft/commands/CommandSourceStack;ILnet/minecraft/util/valueproviders/IntProvider;)I net/minecraft/server/commands/WeatherCommand/getDuration (Lnet/minecraft/commands/CommandSourceStack;ILnet/minecraft/util/valueproviders/IntProvider;)I +MD: net/minecraft/server/commands/WeatherCommand/m_288078_ ()Lnet/minecraft/network/chat/Component; net/minecraft/server/commands/WeatherCommand/lambda$setClear$7 ()Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/commands/WeatherCommand/m_288079_ ()Lnet/minecraft/network/chat/Component; net/minecraft/server/commands/WeatherCommand/lambda$setRain$8 ()Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/commands/WeatherCommand/m_288080_ ()Lnet/minecraft/network/chat/Component; net/minecraft/server/commands/WeatherCommand/lambda$setThunder$9 ()Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/commands/WhitelistCommand/ ()V net/minecraft/server/commands/WhitelistCommand/ ()V +MD: net/minecraft/server/commands/WhitelistCommand/ ()V net/minecraft/server/commands/WhitelistCommand/ ()V +MD: net/minecraft/server/commands/WhitelistCommand/m_139201_ (Lcom/mojang/brigadier/CommandDispatcher;)V net/minecraft/server/commands/WhitelistCommand/register (Lcom/mojang/brigadier/CommandDispatcher;)V +MD: net/minecraft/server/commands/WhitelistCommand/m_139203_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/WhitelistCommand/lambda$register$10 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/WhitelistCommand/m_139205_ (Lcom/mojang/brigadier/context/CommandContext;Lcom/mojang/brigadier/suggestion/SuggestionsBuilder;)Ljava/util/concurrent/CompletableFuture; net/minecraft/server/commands/WhitelistCommand/lambda$register$8 (Lcom/mojang/brigadier/context/CommandContext;Lcom/mojang/brigadier/suggestion/SuggestionsBuilder;)Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/server/commands/WhitelistCommand/m_139208_ (Lnet/minecraft/commands/CommandSourceStack;)I net/minecraft/server/commands/WhitelistCommand/reload (Lnet/minecraft/commands/CommandSourceStack;)I +MD: net/minecraft/server/commands/WhitelistCommand/m_139210_ (Lnet/minecraft/commands/CommandSourceStack;Ljava/util/Collection;)I net/minecraft/server/commands/WhitelistCommand/addPlayers (Lnet/minecraft/commands/CommandSourceStack;Ljava/util/Collection;)I +MD: net/minecraft/server/commands/WhitelistCommand/m_139213_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/WhitelistCommand/lambda$register$9 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/WhitelistCommand/m_139215_ (Lcom/mojang/brigadier/context/CommandContext;Lcom/mojang/brigadier/suggestion/SuggestionsBuilder;)Ljava/util/concurrent/CompletableFuture; net/minecraft/server/commands/WhitelistCommand/lambda$register$6 (Lcom/mojang/brigadier/context/CommandContext;Lcom/mojang/brigadier/suggestion/SuggestionsBuilder;)Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/server/commands/WhitelistCommand/m_139218_ (Lnet/minecraft/commands/CommandSourceStack;)I net/minecraft/server/commands/WhitelistCommand/enableWhitelist (Lnet/minecraft/commands/CommandSourceStack;)I +MD: net/minecraft/server/commands/WhitelistCommand/m_139220_ (Lnet/minecraft/commands/CommandSourceStack;Ljava/util/Collection;)I net/minecraft/server/commands/WhitelistCommand/removePlayers (Lnet/minecraft/commands/CommandSourceStack;Ljava/util/Collection;)I +MD: net/minecraft/server/commands/WhitelistCommand/m_139223_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/WhitelistCommand/lambda$register$7 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/WhitelistCommand/m_139225_ (Lnet/minecraft/commands/CommandSourceStack;)I net/minecraft/server/commands/WhitelistCommand/disableWhitelist (Lnet/minecraft/commands/CommandSourceStack;)I +MD: net/minecraft/server/commands/WhitelistCommand/m_139227_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/WhitelistCommand/lambda$register$3 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/WhitelistCommand/m_139229_ (Lnet/minecraft/commands/CommandSourceStack;)I net/minecraft/server/commands/WhitelistCommand/showList (Lnet/minecraft/commands/CommandSourceStack;)I +MD: net/minecraft/server/commands/WhitelistCommand/m_139231_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/WhitelistCommand/lambda$register$2 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/WhitelistCommand/m_139233_ (Lnet/minecraft/commands/CommandSourceStack;)Z net/minecraft/server/commands/WhitelistCommand/lambda$register$0 (Lnet/minecraft/commands/CommandSourceStack;)Z +MD: net/minecraft/server/commands/WhitelistCommand/m_139235_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/WhitelistCommand/lambda$register$1 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/WhitelistCommand/m_288081_ (Lcom/mojang/authlib/GameProfile;)Lnet/minecraft/network/chat/Component; net/minecraft/server/commands/WhitelistCommand/lambda$removePlayers$13 (Lcom/mojang/authlib/GameProfile;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/commands/WhitelistCommand/m_288082_ ([Ljava/lang/String;)Lnet/minecraft/network/chat/Component; net/minecraft/server/commands/WhitelistCommand/lambda$showList$17 ([Ljava/lang/String;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/commands/WhitelistCommand/m_288084_ ()Lnet/minecraft/network/chat/Component; net/minecraft/server/commands/WhitelistCommand/lambda$showList$16 ()Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/commands/WhitelistCommand/m_288085_ (Lcom/mojang/authlib/GameProfile;)Lnet/minecraft/network/chat/Component; net/minecraft/server/commands/WhitelistCommand/lambda$addPlayers$12 (Lcom/mojang/authlib/GameProfile;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/commands/WhitelistCommand/m_288086_ ()Lnet/minecraft/network/chat/Component; net/minecraft/server/commands/WhitelistCommand/lambda$reload$11 ()Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/commands/WhitelistCommand/m_288087_ ()Lnet/minecraft/network/chat/Component; net/minecraft/server/commands/WhitelistCommand/lambda$disableWhitelist$15 ()Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/commands/WhitelistCommand/m_288088_ ()Lnet/minecraft/network/chat/Component; net/minecraft/server/commands/WhitelistCommand/lambda$enableWhitelist$14 ()Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/commands/WhitelistCommand/m_289081_ (Lnet/minecraft/server/players/PlayerList;Lnet/minecraft/server/level/ServerPlayer;)Z net/minecraft/server/commands/WhitelistCommand/lambda$register$4 (Lnet/minecraft/server/players/PlayerList;Lnet/minecraft/server/level/ServerPlayer;)Z +MD: net/minecraft/server/commands/WhitelistCommand/m_289082_ (Lnet/minecraft/server/level/ServerPlayer;)Ljava/lang/String; net/minecraft/server/commands/WhitelistCommand/lambda$register$5 (Lnet/minecraft/server/level/ServerPlayer;)Ljava/lang/String; +MD: net/minecraft/server/commands/WorldBorderCommand/ ()V net/minecraft/server/commands/WorldBorderCommand/ ()V +MD: net/minecraft/server/commands/WorldBorderCommand/ ()V net/minecraft/server/commands/WorldBorderCommand/ ()V +MD: net/minecraft/server/commands/WorldBorderCommand/m_139246_ (Lcom/mojang/brigadier/CommandDispatcher;)V net/minecraft/server/commands/WorldBorderCommand/register (Lcom/mojang/brigadier/CommandDispatcher;)V +MD: net/minecraft/server/commands/WorldBorderCommand/m_139248_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/WorldBorderCommand/lambda$register$10 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/WorldBorderCommand/m_139250_ (Lnet/minecraft/commands/CommandSourceStack;)I net/minecraft/server/commands/WorldBorderCommand/getSize (Lnet/minecraft/commands/CommandSourceStack;)I +MD: net/minecraft/server/commands/WorldBorderCommand/m_139252_ (Lnet/minecraft/commands/CommandSourceStack;DJ)I net/minecraft/server/commands/WorldBorderCommand/setSize (Lnet/minecraft/commands/CommandSourceStack;DJ)I +MD: net/minecraft/server/commands/WorldBorderCommand/m_139256_ (Lnet/minecraft/commands/CommandSourceStack;F)I net/minecraft/server/commands/WorldBorderCommand/setDamageBuffer (Lnet/minecraft/commands/CommandSourceStack;F)I +MD: net/minecraft/server/commands/WorldBorderCommand/m_139259_ (Lnet/minecraft/commands/CommandSourceStack;I)I net/minecraft/server/commands/WorldBorderCommand/setWarningTime (Lnet/minecraft/commands/CommandSourceStack;I)I +MD: net/minecraft/server/commands/WorldBorderCommand/m_139262_ (Lnet/minecraft/commands/CommandSourceStack;Lnet/minecraft/world/phys/Vec2;)I net/minecraft/server/commands/WorldBorderCommand/setCenter (Lnet/minecraft/commands/CommandSourceStack;Lnet/minecraft/world/phys/Vec2;)I +MD: net/minecraft/server/commands/WorldBorderCommand/m_139265_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/WorldBorderCommand/lambda$register$9 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/WorldBorderCommand/m_139267_ (Lnet/minecraft/commands/CommandSourceStack;)Z net/minecraft/server/commands/WorldBorderCommand/lambda$register$0 (Lnet/minecraft/commands/CommandSourceStack;)Z +MD: net/minecraft/server/commands/WorldBorderCommand/m_139269_ (Lnet/minecraft/commands/CommandSourceStack;F)I net/minecraft/server/commands/WorldBorderCommand/setDamageAmount (Lnet/minecraft/commands/CommandSourceStack;F)I +MD: net/minecraft/server/commands/WorldBorderCommand/m_139272_ (Lnet/minecraft/commands/CommandSourceStack;I)I net/minecraft/server/commands/WorldBorderCommand/setWarningDistance (Lnet/minecraft/commands/CommandSourceStack;I)I +MD: net/minecraft/server/commands/WorldBorderCommand/m_139275_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/WorldBorderCommand/lambda$register$8 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/WorldBorderCommand/m_139277_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/WorldBorderCommand/lambda$register$7 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/WorldBorderCommand/m_139279_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/WorldBorderCommand/lambda$register$6 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/WorldBorderCommand/m_139281_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/WorldBorderCommand/lambda$register$5 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/WorldBorderCommand/m_139283_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/WorldBorderCommand/lambda$register$4 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/WorldBorderCommand/m_139285_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/WorldBorderCommand/lambda$register$3 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/WorldBorderCommand/m_288090_ (Lnet/minecraft/world/phys/Vec2;)Lnet/minecraft/network/chat/Component; net/minecraft/server/commands/WorldBorderCommand/lambda$setCenter$16 (Lnet/minecraft/world/phys/Vec2;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/commands/WorldBorderCommand/m_288091_ (DJ)Lnet/minecraft/network/chat/Component; net/minecraft/server/commands/WorldBorderCommand/lambda$setSize$18 (DJ)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/commands/WorldBorderCommand/m_288092_ (I)Lnet/minecraft/network/chat/Component; net/minecraft/server/commands/WorldBorderCommand/lambda$setWarningDistance$14 (I)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/commands/WorldBorderCommand/m_288093_ (D)Lnet/minecraft/network/chat/Component; net/minecraft/server/commands/WorldBorderCommand/lambda$getSize$15 (D)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/commands/WorldBorderCommand/m_288094_ (I)Lnet/minecraft/network/chat/Component; net/minecraft/server/commands/WorldBorderCommand/lambda$setWarningTime$13 (I)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/commands/WorldBorderCommand/m_288095_ (F)Lnet/minecraft/network/chat/Component; net/minecraft/server/commands/WorldBorderCommand/lambda$setDamageBuffer$11 (F)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/commands/WorldBorderCommand/m_288096_ (D)Lnet/minecraft/network/chat/Component; net/minecraft/server/commands/WorldBorderCommand/lambda$setSize$19 (D)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/commands/WorldBorderCommand/m_288097_ (F)Lnet/minecraft/network/chat/Component; net/minecraft/server/commands/WorldBorderCommand/lambda$setDamageAmount$12 (F)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/commands/WorldBorderCommand/m_288098_ (DJ)Lnet/minecraft/network/chat/Component; net/minecraft/server/commands/WorldBorderCommand/lambda$setSize$17 (DJ)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/commands/WorldBorderCommand/m_289083_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/WorldBorderCommand/lambda$register$1 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/WorldBorderCommand/m_289084_ (Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/WorldBorderCommand/lambda$register$2 (Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/data/BlockDataAccessor/ ()V net/minecraft/server/commands/data/BlockDataAccessor/ ()V +MD: net/minecraft/server/commands/data/BlockDataAccessor/ (Lnet/minecraft/world/level/block/entity/BlockEntity;Lnet/minecraft/core/BlockPos;)V net/minecraft/server/commands/data/BlockDataAccessor/ (Lnet/minecraft/world/level/block/entity/BlockEntity;Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/server/commands/data/BlockDataAccessor/m_139304_ (Ljava/lang/String;)Lnet/minecraft/server/commands/data/DataCommands$DataProvider; net/minecraft/server/commands/data/BlockDataAccessor/lambda$static$0 (Ljava/lang/String;)Lnet/minecraft/server/commands/data/DataCommands$DataProvider; +MD: net/minecraft/server/commands/data/BlockDataAccessor/m_6066_ (Lnet/minecraft/commands/arguments/NbtPathArgument$NbtPath;DI)Lnet/minecraft/network/chat/Component; net/minecraft/server/commands/data/BlockDataAccessor/getPrintSuccess (Lnet/minecraft/commands/arguments/NbtPathArgument$NbtPath;DI)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/commands/data/BlockDataAccessor/m_6184_ ()Lnet/minecraft/nbt/CompoundTag; net/minecraft/server/commands/data/BlockDataAccessor/getData ()Lnet/minecraft/nbt/CompoundTag; +MD: net/minecraft/server/commands/data/BlockDataAccessor/m_6934_ ()Lnet/minecraft/network/chat/Component; net/minecraft/server/commands/data/BlockDataAccessor/getModifiedSuccess ()Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/commands/data/BlockDataAccessor/m_7603_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/server/commands/data/BlockDataAccessor/setData (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/server/commands/data/BlockDataAccessor/m_7624_ (Lnet/minecraft/nbt/Tag;)Lnet/minecraft/network/chat/Component; net/minecraft/server/commands/data/BlockDataAccessor/getPrintSuccess (Lnet/minecraft/nbt/Tag;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/commands/data/BlockDataAccessor$1/ (Ljava/lang/String;)V net/minecraft/server/commands/data/BlockDataAccessor$1/ (Ljava/lang/String;)V +MD: net/minecraft/server/commands/data/BlockDataAccessor$1/m_7018_ (Lcom/mojang/brigadier/context/CommandContext;)Lnet/minecraft/server/commands/data/DataAccessor; net/minecraft/server/commands/data/BlockDataAccessor$1/access (Lcom/mojang/brigadier/context/CommandContext;)Lnet/minecraft/server/commands/data/DataAccessor; +MD: net/minecraft/server/commands/data/BlockDataAccessor$1/m_7621_ (Lcom/mojang/brigadier/builder/ArgumentBuilder;Ljava/util/function/Function;)Lcom/mojang/brigadier/builder/ArgumentBuilder; net/minecraft/server/commands/data/BlockDataAccessor$1/wrap (Lcom/mojang/brigadier/builder/ArgumentBuilder;Ljava/util/function/Function;)Lcom/mojang/brigadier/builder/ArgumentBuilder; +MD: net/minecraft/server/commands/data/DataAccessor/m_6066_ (Lnet/minecraft/commands/arguments/NbtPathArgument$NbtPath;DI)Lnet/minecraft/network/chat/Component; net/minecraft/server/commands/data/DataAccessor/getPrintSuccess (Lnet/minecraft/commands/arguments/NbtPathArgument$NbtPath;DI)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/commands/data/DataAccessor/m_6184_ ()Lnet/minecraft/nbt/CompoundTag; net/minecraft/server/commands/data/DataAccessor/getData ()Lnet/minecraft/nbt/CompoundTag; +MD: net/minecraft/server/commands/data/DataAccessor/m_6934_ ()Lnet/minecraft/network/chat/Component; net/minecraft/server/commands/data/DataAccessor/getModifiedSuccess ()Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/commands/data/DataAccessor/m_7603_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/server/commands/data/DataAccessor/setData (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/server/commands/data/DataAccessor/m_7624_ (Lnet/minecraft/nbt/Tag;)Lnet/minecraft/network/chat/Component; net/minecraft/server/commands/data/DataAccessor/getPrintSuccess (Lnet/minecraft/nbt/Tag;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/commands/data/DataCommands/ ()V net/minecraft/server/commands/data/DataCommands/ ()V +MD: net/minecraft/server/commands/data/DataCommands/ ()V net/minecraft/server/commands/data/DataCommands/ ()V +MD: net/minecraft/server/commands/data/DataCommands/m_139365_ (Lcom/mojang/brigadier/CommandDispatcher;)V net/minecraft/server/commands/data/DataCommands/register (Lcom/mojang/brigadier/CommandDispatcher;)V +MD: net/minecraft/server/commands/data/DataCommands/m_139367_ (Lcom/mojang/brigadier/builder/ArgumentBuilder;Lnet/minecraft/server/commands/data/DataCommands$DataManipulatorDecorator;)V net/minecraft/server/commands/data/DataCommands/lambda$register$21 (Lcom/mojang/brigadier/builder/ArgumentBuilder;Lnet/minecraft/server/commands/data/DataCommands$DataManipulatorDecorator;)V +MD: net/minecraft/server/commands/data/DataCommands/m_139375_ (Lcom/mojang/brigadier/context/CommandContext;Lnet/minecraft/server/commands/data/DataCommands$DataProvider;Lnet/minecraft/server/commands/data/DataCommands$DataManipulator;Ljava/util/List;)I net/minecraft/server/commands/data/DataCommands/manipulateData (Lcom/mojang/brigadier/context/CommandContext;Lnet/minecraft/server/commands/data/DataCommands$DataProvider;Lnet/minecraft/server/commands/data/DataCommands$DataManipulator;Ljava/util/List;)I +MD: net/minecraft/server/commands/data/DataCommands/m_139380_ (Lnet/minecraft/commands/CommandSourceStack;)Z net/minecraft/server/commands/data/DataCommands/lambda$register$7 (Lnet/minecraft/commands/CommandSourceStack;)Z +MD: net/minecraft/server/commands/data/DataCommands/m_139382_ (Lnet/minecraft/commands/CommandSourceStack;Lnet/minecraft/server/commands/data/DataAccessor;)I net/minecraft/server/commands/data/DataCommands/getData (Lnet/minecraft/commands/CommandSourceStack;Lnet/minecraft/server/commands/data/DataAccessor;)I +MD: net/minecraft/server/commands/data/DataCommands/m_139385_ (Lnet/minecraft/commands/CommandSourceStack;Lnet/minecraft/server/commands/data/DataAccessor;Lnet/minecraft/commands/arguments/NbtPathArgument$NbtPath;)I net/minecraft/server/commands/data/DataCommands/removeData (Lnet/minecraft/commands/CommandSourceStack;Lnet/minecraft/server/commands/data/DataAccessor;Lnet/minecraft/commands/arguments/NbtPathArgument$NbtPath;)I +MD: net/minecraft/server/commands/data/DataCommands/m_139389_ (Lnet/minecraft/commands/CommandSourceStack;Lnet/minecraft/server/commands/data/DataAccessor;Lnet/minecraft/commands/arguments/NbtPathArgument$NbtPath;D)I net/minecraft/server/commands/data/DataCommands/getNumeric (Lnet/minecraft/commands/CommandSourceStack;Lnet/minecraft/server/commands/data/DataAccessor;Lnet/minecraft/commands/arguments/NbtPathArgument$NbtPath;D)I +MD: net/minecraft/server/commands/data/DataCommands/m_139394_ (Lnet/minecraft/commands/CommandSourceStack;Lnet/minecraft/server/commands/data/DataAccessor;Lnet/minecraft/nbt/CompoundTag;)I net/minecraft/server/commands/data/DataCommands/mergeData (Lnet/minecraft/commands/CommandSourceStack;Lnet/minecraft/server/commands/data/DataAccessor;Lnet/minecraft/nbt/CompoundTag;)I +MD: net/minecraft/server/commands/data/DataCommands/m_139398_ (Lnet/minecraft/commands/arguments/NbtPathArgument$NbtPath;Lnet/minecraft/server/commands/data/DataAccessor;)Lnet/minecraft/nbt/Tag; net/minecraft/server/commands/data/DataCommands/getSingleTag (Lnet/minecraft/commands/arguments/NbtPathArgument$NbtPath;Lnet/minecraft/server/commands/data/DataAccessor;)Lnet/minecraft/nbt/Tag; +MD: net/minecraft/server/commands/data/DataCommands/m_139403_ (Ljava/util/function/BiConsumer;)Lcom/mojang/brigadier/builder/ArgumentBuilder; net/minecraft/server/commands/data/DataCommands/decorateModification (Ljava/util/function/BiConsumer;)Lcom/mojang/brigadier/builder/ArgumentBuilder; +MD: net/minecraft/server/commands/data/DataCommands/m_139409_ (Ljava/util/function/Function;)Lnet/minecraft/server/commands/data/DataCommands$DataProvider; net/minecraft/server/commands/data/DataCommands/lambda$static$6 (Ljava/util/function/Function;)Lnet/minecraft/server/commands/data/DataCommands$DataProvider; +MD: net/minecraft/server/commands/data/DataCommands/m_139411_ (Lnet/minecraft/server/commands/data/DataCommands$DataProvider;Lcom/mojang/brigadier/builder/ArgumentBuilder;)Lcom/mojang/brigadier/builder/ArgumentBuilder; net/minecraft/server/commands/data/DataCommands/lambda$register$15 (Lnet/minecraft/server/commands/data/DataCommands$DataProvider;Lcom/mojang/brigadier/builder/ArgumentBuilder;)Lcom/mojang/brigadier/builder/ArgumentBuilder; +MD: net/minecraft/server/commands/data/DataCommands/m_139443_ (Lnet/minecraft/commands/CommandSourceStack;Lnet/minecraft/server/commands/data/DataAccessor;Lnet/minecraft/commands/arguments/NbtPathArgument$NbtPath;)I net/minecraft/server/commands/data/DataCommands/getData (Lnet/minecraft/commands/CommandSourceStack;Lnet/minecraft/server/commands/data/DataAccessor;Lnet/minecraft/commands/arguments/NbtPathArgument$NbtPath;)I +MD: net/minecraft/server/commands/data/DataCommands/m_139449_ (Ljava/util/function/Function;)Lnet/minecraft/server/commands/data/DataCommands$DataProvider; net/minecraft/server/commands/data/DataCommands/lambda$static$5 (Ljava/util/function/Function;)Lnet/minecraft/server/commands/data/DataCommands$DataProvider; +MD: net/minecraft/server/commands/data/DataCommands/m_139451_ (Lnet/minecraft/server/commands/data/DataCommands$DataProvider;Lcom/mojang/brigadier/builder/ArgumentBuilder;)Lcom/mojang/brigadier/builder/ArgumentBuilder; net/minecraft/server/commands/data/DataCommands/lambda$register$13 (Lnet/minecraft/server/commands/data/DataCommands$DataProvider;Lcom/mojang/brigadier/builder/ArgumentBuilder;)Lcom/mojang/brigadier/builder/ArgumentBuilder; +MD: net/minecraft/server/commands/data/DataCommands/m_139467_ (Ljava/lang/Object;)Lcom/mojang/brigadier/Message; net/minecraft/server/commands/data/DataCommands/lambda$static$2 (Ljava/lang/Object;)Lcom/mojang/brigadier/Message; +MD: net/minecraft/server/commands/data/DataCommands/m_139469_ (Lnet/minecraft/server/commands/data/DataCommands$DataProvider;Lcom/mojang/brigadier/builder/ArgumentBuilder;)Lcom/mojang/brigadier/builder/ArgumentBuilder; net/minecraft/server/commands/data/DataCommands/lambda$register$9 (Lnet/minecraft/server/commands/data/DataCommands$DataProvider;Lcom/mojang/brigadier/builder/ArgumentBuilder;)Lcom/mojang/brigadier/builder/ArgumentBuilder; +MD: net/minecraft/server/commands/data/DataCommands/m_139480_ (Ljava/lang/Object;)Lcom/mojang/brigadier/Message; net/minecraft/server/commands/data/DataCommands/lambda$static$1 (Ljava/lang/Object;)Lcom/mojang/brigadier/Message; +MD: net/minecraft/server/commands/data/DataCommands/m_139490_ (Ljava/lang/Object;)Lcom/mojang/brigadier/Message; net/minecraft/server/commands/data/DataCommands/lambda$static$0 (Ljava/lang/Object;)Lcom/mojang/brigadier/Message; +MD: net/minecraft/server/commands/data/DataCommands/m_142797_ (Lnet/minecraft/server/commands/data/DataCommands$DataProvider;Lnet/minecraft/server/commands/data/DataCommands$DataManipulator;)Lcom/mojang/brigadier/builder/ArgumentBuilder; net/minecraft/server/commands/data/DataCommands/lambda$decorateModification$37 (Lnet/minecraft/server/commands/data/DataCommands$DataProvider;Lnet/minecraft/server/commands/data/DataCommands$DataManipulator;)Lcom/mojang/brigadier/builder/ArgumentBuilder; +MD: net/minecraft/server/commands/data/DataCommands/m_142800_ (Lnet/minecraft/server/commands/data/DataCommands$DataProvider;Lnet/minecraft/server/commands/data/DataCommands$DataManipulator;Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/data/DataCommands/lambda$decorateModification$36 (Lnet/minecraft/server/commands/data/DataCommands$DataProvider;Lnet/minecraft/server/commands/data/DataCommands$DataManipulator;Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/data/DataCommands/m_142804_ (Lnet/minecraft/server/commands/data/DataCommands$DataProvider;Lnet/minecraft/server/commands/data/DataCommands$DataProvider;Lnet/minecraft/server/commands/data/DataCommands$DataManipulator;)Lcom/mojang/brigadier/builder/ArgumentBuilder; net/minecraft/server/commands/data/DataCommands/lambda$decorateModification$25 (Lnet/minecraft/server/commands/data/DataCommands$DataProvider;Lnet/minecraft/server/commands/data/DataCommands$DataProvider;Lnet/minecraft/server/commands/data/DataCommands$DataManipulator;)Lcom/mojang/brigadier/builder/ArgumentBuilder; +MD: net/minecraft/server/commands/data/DataCommands/m_142808_ (Lnet/minecraft/server/commands/data/DataCommands$DataProvider;Lnet/minecraft/server/commands/data/DataCommands$DataManipulator;Lnet/minecraft/server/commands/data/DataCommands$DataProvider;Lcom/mojang/brigadier/builder/ArgumentBuilder;)Lcom/mojang/brigadier/builder/ArgumentBuilder; net/minecraft/server/commands/data/DataCommands/lambda$decorateModification$24 (Lnet/minecraft/server/commands/data/DataCommands$DataProvider;Lnet/minecraft/server/commands/data/DataCommands$DataManipulator;Lnet/minecraft/server/commands/data/DataCommands$DataProvider;Lcom/mojang/brigadier/builder/ArgumentBuilder;)Lcom/mojang/brigadier/builder/ArgumentBuilder; +MD: net/minecraft/server/commands/data/DataCommands/m_142818_ (Lnet/minecraft/server/commands/data/DataCommands$DataProvider;Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/data/DataCommands/lambda$register$14 (Lnet/minecraft/server/commands/data/DataCommands$DataProvider;Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/data/DataCommands/m_142831_ (Lnet/minecraft/server/commands/data/DataCommands$DataProvider;Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/data/DataCommands/lambda$register$12 (Lnet/minecraft/server/commands/data/DataCommands$DataProvider;Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/data/DataCommands/m_142839_ (Lnet/minecraft/server/commands/data/DataCommands$DataProvider;Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/data/DataCommands/lambda$register$11 (Lnet/minecraft/server/commands/data/DataCommands$DataProvider;Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/data/DataCommands/m_142847_ (Lnet/minecraft/server/commands/data/DataCommands$DataProvider;Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/data/DataCommands/lambda$register$10 (Lnet/minecraft/server/commands/data/DataCommands$DataProvider;Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/data/DataCommands/m_142855_ (Lnet/minecraft/server/commands/data/DataCommands$DataProvider;Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/data/DataCommands/lambda$register$8 (Lnet/minecraft/server/commands/data/DataCommands$DataProvider;Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/data/DataCommands/m_263154_ (Lcom/mojang/brigadier/context/CommandContext;Lnet/minecraft/nbt/CompoundTag;Lnet/minecraft/commands/arguments/NbtPathArgument$NbtPath;Ljava/util/List;)I net/minecraft/server/commands/data/DataCommands/lambda$register$16 (Lcom/mojang/brigadier/context/CommandContext;Lnet/minecraft/nbt/CompoundTag;Lnet/minecraft/commands/arguments/NbtPathArgument$NbtPath;Ljava/util/List;)I +MD: net/minecraft/server/commands/data/DataCommands/m_263155_ (Lcom/mojang/brigadier/context/CommandContext;Lnet/minecraft/nbt/CompoundTag;Lnet/minecraft/commands/arguments/NbtPathArgument$NbtPath;Ljava/util/List;)I net/minecraft/server/commands/data/DataCommands/lambda$register$17 (Lcom/mojang/brigadier/context/CommandContext;Lnet/minecraft/nbt/CompoundTag;Lnet/minecraft/commands/arguments/NbtPathArgument$NbtPath;Ljava/util/List;)I +MD: net/minecraft/server/commands/data/DataCommands/m_263156_ (Lcom/mojang/brigadier/context/CommandContext;Lnet/minecraft/nbt/CompoundTag;Lnet/minecraft/commands/arguments/NbtPathArgument$NbtPath;Ljava/util/List;)I net/minecraft/server/commands/data/DataCommands/lambda$register$18 (Lcom/mojang/brigadier/context/CommandContext;Lnet/minecraft/nbt/CompoundTag;Lnet/minecraft/commands/arguments/NbtPathArgument$NbtPath;Ljava/util/List;)I +MD: net/minecraft/server/commands/data/DataCommands/m_263157_ (Lcom/mojang/brigadier/context/CommandContext;Lnet/minecraft/nbt/CompoundTag;Lnet/minecraft/commands/arguments/NbtPathArgument$NbtPath;Ljava/util/List;)I net/minecraft/server/commands/data/DataCommands/lambda$register$19 (Lcom/mojang/brigadier/context/CommandContext;Lnet/minecraft/nbt/CompoundTag;Lnet/minecraft/commands/arguments/NbtPathArgument$NbtPath;Ljava/util/List;)I +MD: net/minecraft/server/commands/data/DataCommands/m_263448_ (Lcom/mojang/brigadier/context/CommandContext;Lnet/minecraft/nbt/CompoundTag;Lnet/minecraft/commands/arguments/NbtPathArgument$NbtPath;Ljava/util/List;)I net/minecraft/server/commands/data/DataCommands/lambda$register$20 (Lcom/mojang/brigadier/context/CommandContext;Lnet/minecraft/nbt/CompoundTag;Lnet/minecraft/commands/arguments/NbtPathArgument$NbtPath;Ljava/util/List;)I +MD: net/minecraft/server/commands/data/DataCommands/m_263948_ (Ljava/lang/String;)Ljava/lang/String; net/minecraft/server/commands/data/DataCommands/lambda$decorateModification$26 (Ljava/lang/String;)Ljava/lang/String; +MD: net/minecraft/server/commands/data/DataCommands/m_263949_ (Ljava/util/function/BiConsumer;Lnet/minecraft/server/commands/data/DataCommands$DataProvider;Lcom/mojang/brigadier/builder/ArgumentBuilder;)Lcom/mojang/brigadier/builder/ArgumentBuilder; net/minecraft/server/commands/data/DataCommands/lambda$decorateModification$38 (Ljava/util/function/BiConsumer;Lnet/minecraft/server/commands/data/DataCommands$DataProvider;Lcom/mojang/brigadier/builder/ArgumentBuilder;)Lcom/mojang/brigadier/builder/ArgumentBuilder; +MD: net/minecraft/server/commands/data/DataCommands/m_263951_ (Ljava/lang/String;)Ljava/lang/String; net/minecraft/server/commands/data/DataCommands/lambda$decorateModification$28 (Ljava/lang/String;)Ljava/lang/String; +MD: net/minecraft/server/commands/data/DataCommands/m_263953_ (Lnet/minecraft/server/commands/data/DataCommands$DataProvider;Lnet/minecraft/server/commands/data/DataCommands$DataManipulator;Lnet/minecraft/server/commands/data/DataCommands$DataProvider;Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/data/DataCommands/lambda$decorateModification$22 (Lnet/minecraft/server/commands/data/DataCommands$DataProvider;Lnet/minecraft/server/commands/data/DataCommands$DataManipulator;Lnet/minecraft/server/commands/data/DataCommands$DataProvider;Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/data/DataCommands/m_263955_ (Lnet/minecraft/server/commands/data/DataCommands$DataProvider;Lnet/minecraft/server/commands/data/DataCommands$DataProvider;Lnet/minecraft/server/commands/data/DataCommands$DataManipulator;)Lcom/mojang/brigadier/builder/ArgumentBuilder; net/minecraft/server/commands/data/DataCommands/lambda$decorateModification$35 (Lnet/minecraft/server/commands/data/DataCommands$DataProvider;Lnet/minecraft/server/commands/data/DataCommands$DataProvider;Lnet/minecraft/server/commands/data/DataCommands$DataManipulator;)Lcom/mojang/brigadier/builder/ArgumentBuilder; +MD: net/minecraft/server/commands/data/DataCommands/m_263957_ (Lnet/minecraft/server/commands/data/DataCommands$DataProvider;Lnet/minecraft/server/commands/data/DataCommands$DataManipulator;Lnet/minecraft/server/commands/data/DataCommands$DataProvider;Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/data/DataCommands/lambda$decorateModification$23 (Lnet/minecraft/server/commands/data/DataCommands$DataProvider;Lnet/minecraft/server/commands/data/DataCommands$DataManipulator;Lnet/minecraft/server/commands/data/DataCommands$DataProvider;Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/data/DataCommands/m_263961_ (Ljava/lang/Object;)Lcom/mojang/brigadier/Message; net/minecraft/server/commands/data/DataCommands/lambda$static$3 (Ljava/lang/Object;)Lcom/mojang/brigadier/Message; +MD: net/minecraft/server/commands/data/DataCommands/m_264092_ (Lcom/mojang/brigadier/context/CommandContext;Lnet/minecraft/server/commands/data/DataCommands$DataProvider;)Ljava/util/List; net/minecraft/server/commands/data/DataCommands/getSingletonSource (Lcom/mojang/brigadier/context/CommandContext;Lnet/minecraft/server/commands/data/DataCommands$DataProvider;)Ljava/util/List; +MD: net/minecraft/server/commands/data/DataCommands/m_264549_ (Lcom/mojang/brigadier/context/CommandContext;Lnet/minecraft/server/commands/data/DataCommands$DataProvider;)Ljava/util/List; net/minecraft/server/commands/data/DataCommands/resolveSourcePath (Lcom/mojang/brigadier/context/CommandContext;Lnet/minecraft/server/commands/data/DataCommands$DataProvider;)Ljava/util/List; +MD: net/minecraft/server/commands/data/DataCommands/m_264579_ (Lnet/minecraft/nbt/Tag;)Ljava/lang/String; net/minecraft/server/commands/data/DataCommands/getAsText (Lnet/minecraft/nbt/Tag;)Ljava/lang/String; +MD: net/minecraft/server/commands/data/DataCommands/m_287040_ (Lcom/mojang/brigadier/context/CommandContext;Ljava/lang/String;)Ljava/lang/String; net/minecraft/server/commands/data/DataCommands/lambda$decorateModification$30 (Lcom/mojang/brigadier/context/CommandContext;Ljava/lang/String;)Ljava/lang/String; +MD: net/minecraft/server/commands/data/DataCommands/m_287041_ (Lnet/minecraft/server/commands/data/DataCommands$DataProvider;Lnet/minecraft/server/commands/data/DataCommands$DataManipulator;Lnet/minecraft/server/commands/data/DataCommands$DataProvider;Lcom/mojang/brigadier/builder/ArgumentBuilder;)Lcom/mojang/brigadier/builder/ArgumentBuilder; net/minecraft/server/commands/data/DataCommands/lambda$decorateModification$34 (Lnet/minecraft/server/commands/data/DataCommands$DataProvider;Lnet/minecraft/server/commands/data/DataCommands$DataManipulator;Lnet/minecraft/server/commands/data/DataCommands$DataProvider;Lcom/mojang/brigadier/builder/ArgumentBuilder;)Lcom/mojang/brigadier/builder/ArgumentBuilder; +MD: net/minecraft/server/commands/data/DataCommands/m_287042_ (Lcom/mojang/brigadier/context/CommandContext;Ljava/lang/String;)Ljava/lang/String; net/minecraft/server/commands/data/DataCommands/lambda$decorateModification$32 (Lcom/mojang/brigadier/context/CommandContext;Ljava/lang/String;)Ljava/lang/String; +MD: net/minecraft/server/commands/data/DataCommands/m_287144_ (II)I net/minecraft/server/commands/data/DataCommands/getOffset (II)I +MD: net/minecraft/server/commands/data/DataCommands/m_287230_ (Ljava/lang/String;I)Ljava/lang/String; net/minecraft/server/commands/data/DataCommands/substring (Ljava/lang/String;I)Ljava/lang/String; +MD: net/minecraft/server/commands/data/DataCommands/m_287271_ (Ljava/lang/String;II)Ljava/lang/String; net/minecraft/server/commands/data/DataCommands/substring (Ljava/lang/String;II)Ljava/lang/String; +MD: net/minecraft/server/commands/data/DataCommands/m_288099_ (Lnet/minecraft/server/commands/data/DataCommands$DataProvider;Lnet/minecraft/server/commands/data/DataCommands$DataManipulator;Lnet/minecraft/server/commands/data/DataCommands$DataProvider;Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/data/DataCommands/lambda$decorateModification$27 (Lnet/minecraft/server/commands/data/DataCommands$DataProvider;Lnet/minecraft/server/commands/data/DataCommands$DataManipulator;Lnet/minecraft/server/commands/data/DataCommands$DataProvider;Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/data/DataCommands/m_288100_ (Lnet/minecraft/server/commands/data/DataAccessor;)Lnet/minecraft/network/chat/Component; net/minecraft/server/commands/data/DataCommands/lambda$manipulateData$39 (Lnet/minecraft/server/commands/data/DataAccessor;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/commands/data/DataCommands/m_288101_ (Lnet/minecraft/server/commands/data/DataCommands$DataProvider;Lnet/minecraft/server/commands/data/DataCommands$DataManipulator;Lnet/minecraft/server/commands/data/DataCommands$DataProvider;Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/data/DataCommands/lambda$decorateModification$29 (Lnet/minecraft/server/commands/data/DataCommands$DataProvider;Lnet/minecraft/server/commands/data/DataCommands$DataManipulator;Lnet/minecraft/server/commands/data/DataCommands$DataProvider;Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/data/DataCommands/m_288102_ (Lnet/minecraft/server/commands/data/DataAccessor;)Lnet/minecraft/network/chat/Component; net/minecraft/server/commands/data/DataCommands/lambda$mergeData$44 (Lnet/minecraft/server/commands/data/DataAccessor;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/commands/data/DataCommands/m_288103_ (Lnet/minecraft/server/commands/data/DataAccessor;)Lnet/minecraft/network/chat/Component; net/minecraft/server/commands/data/DataCommands/lambda$removeData$40 (Lnet/minecraft/server/commands/data/DataAccessor;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/commands/data/DataCommands/m_288104_ (Ljava/lang/Object;Ljava/lang/Object;)Lcom/mojang/brigadier/Message; net/minecraft/server/commands/data/DataCommands/lambda$static$4 (Ljava/lang/Object;Ljava/lang/Object;)Lcom/mojang/brigadier/Message; +MD: net/minecraft/server/commands/data/DataCommands/m_288105_ (Lnet/minecraft/server/commands/data/DataAccessor;Lnet/minecraft/nbt/Tag;)Lnet/minecraft/network/chat/Component; net/minecraft/server/commands/data/DataCommands/lambda$getData$41 (Lnet/minecraft/server/commands/data/DataAccessor;Lnet/minecraft/nbt/Tag;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/commands/data/DataCommands/m_288106_ (Lnet/minecraft/server/commands/data/DataAccessor;Lnet/minecraft/nbt/CompoundTag;)Lnet/minecraft/network/chat/Component; net/minecraft/server/commands/data/DataCommands/lambda$getData$43 (Lnet/minecraft/server/commands/data/DataAccessor;Lnet/minecraft/nbt/CompoundTag;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/commands/data/DataCommands/m_288107_ (Lnet/minecraft/server/commands/data/DataCommands$DataProvider;Lnet/minecraft/server/commands/data/DataCommands$DataManipulator;Lnet/minecraft/server/commands/data/DataCommands$DataProvider;Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/data/DataCommands/lambda$decorateModification$33 (Lnet/minecraft/server/commands/data/DataCommands$DataProvider;Lnet/minecraft/server/commands/data/DataCommands$DataManipulator;Lnet/minecraft/server/commands/data/DataCommands$DataProvider;Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/data/DataCommands/m_288108_ (Lnet/minecraft/server/commands/data/DataCommands$DataProvider;Lnet/minecraft/server/commands/data/DataCommands$DataManipulator;Lnet/minecraft/server/commands/data/DataCommands$DataProvider;Lcom/mojang/brigadier/context/CommandContext;)I net/minecraft/server/commands/data/DataCommands/lambda$decorateModification$31 (Lnet/minecraft/server/commands/data/DataCommands$DataProvider;Lnet/minecraft/server/commands/data/DataCommands$DataManipulator;Lnet/minecraft/server/commands/data/DataCommands$DataProvider;Lcom/mojang/brigadier/context/CommandContext;)I +MD: net/minecraft/server/commands/data/DataCommands/m_288109_ (Lnet/minecraft/server/commands/data/DataAccessor;Lnet/minecraft/commands/arguments/NbtPathArgument$NbtPath;DI)Lnet/minecraft/network/chat/Component; net/minecraft/server/commands/data/DataCommands/lambda$getNumeric$42 (Lnet/minecraft/server/commands/data/DataAccessor;Lnet/minecraft/commands/arguments/NbtPathArgument$NbtPath;DI)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/commands/data/DataCommands/m_288215_ (Ljava/util/List;Lnet/minecraft/server/commands/data/DataCommands$StringProcessor;)Ljava/util/List; net/minecraft/server/commands/data/DataCommands/stringifyTagList (Ljava/util/List;Lnet/minecraft/server/commands/data/DataCommands$StringProcessor;)Ljava/util/List; +MD: net/minecraft/server/commands/data/DataCommands/m_288220_ (Ljava/lang/String;II)Ljava/lang/String; net/minecraft/server/commands/data/DataCommands/validatedSubstring (Ljava/lang/String;II)Ljava/lang/String; +MD: net/minecraft/server/commands/data/DataCommands$DataManipulator/m_139495_ (Lcom/mojang/brigadier/context/CommandContext;Lnet/minecraft/nbt/CompoundTag;Lnet/minecraft/commands/arguments/NbtPathArgument$NbtPath;Ljava/util/List;)I net/minecraft/server/commands/data/DataCommands$DataManipulator/modify (Lcom/mojang/brigadier/context/CommandContext;Lnet/minecraft/nbt/CompoundTag;Lnet/minecraft/commands/arguments/NbtPathArgument$NbtPath;Ljava/util/List;)I +MD: net/minecraft/server/commands/data/DataCommands$DataManipulatorDecorator/m_139500_ (Lnet/minecraft/server/commands/data/DataCommands$DataManipulator;)Lcom/mojang/brigadier/builder/ArgumentBuilder; net/minecraft/server/commands/data/DataCommands$DataManipulatorDecorator/create (Lnet/minecraft/server/commands/data/DataCommands$DataManipulator;)Lcom/mojang/brigadier/builder/ArgumentBuilder; +MD: net/minecraft/server/commands/data/DataCommands$DataProvider/m_7018_ (Lcom/mojang/brigadier/context/CommandContext;)Lnet/minecraft/server/commands/data/DataAccessor; net/minecraft/server/commands/data/DataCommands$DataProvider/access (Lcom/mojang/brigadier/context/CommandContext;)Lnet/minecraft/server/commands/data/DataAccessor; +MD: net/minecraft/server/commands/data/DataCommands$DataProvider/m_7621_ (Lcom/mojang/brigadier/builder/ArgumentBuilder;Ljava/util/function/Function;)Lcom/mojang/brigadier/builder/ArgumentBuilder; net/minecraft/server/commands/data/DataCommands$DataProvider/wrap (Lcom/mojang/brigadier/builder/ArgumentBuilder;Ljava/util/function/Function;)Lcom/mojang/brigadier/builder/ArgumentBuilder; +MD: net/minecraft/server/commands/data/DataCommands$StringProcessor/m_288227_ (Ljava/lang/String;)Ljava/lang/String; net/minecraft/server/commands/data/DataCommands$StringProcessor/process (Ljava/lang/String;)Ljava/lang/String; +MD: net/minecraft/server/commands/data/EntityDataAccessor/ ()V net/minecraft/server/commands/data/EntityDataAccessor/ ()V +MD: net/minecraft/server/commands/data/EntityDataAccessor/ (Lnet/minecraft/world/entity/Entity;)V net/minecraft/server/commands/data/EntityDataAccessor/ (Lnet/minecraft/world/entity/Entity;)V +MD: net/minecraft/server/commands/data/EntityDataAccessor/m_139516_ (Ljava/lang/String;)Lnet/minecraft/server/commands/data/DataCommands$DataProvider; net/minecraft/server/commands/data/EntityDataAccessor/lambda$static$0 (Ljava/lang/String;)Lnet/minecraft/server/commands/data/DataCommands$DataProvider; +MD: net/minecraft/server/commands/data/EntityDataAccessor/m_6066_ (Lnet/minecraft/commands/arguments/NbtPathArgument$NbtPath;DI)Lnet/minecraft/network/chat/Component; net/minecraft/server/commands/data/EntityDataAccessor/getPrintSuccess (Lnet/minecraft/commands/arguments/NbtPathArgument$NbtPath;DI)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/commands/data/EntityDataAccessor/m_6184_ ()Lnet/minecraft/nbt/CompoundTag; net/minecraft/server/commands/data/EntityDataAccessor/getData ()Lnet/minecraft/nbt/CompoundTag; +MD: net/minecraft/server/commands/data/EntityDataAccessor/m_6934_ ()Lnet/minecraft/network/chat/Component; net/minecraft/server/commands/data/EntityDataAccessor/getModifiedSuccess ()Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/commands/data/EntityDataAccessor/m_7603_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/server/commands/data/EntityDataAccessor/setData (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/server/commands/data/EntityDataAccessor/m_7624_ (Lnet/minecraft/nbt/Tag;)Lnet/minecraft/network/chat/Component; net/minecraft/server/commands/data/EntityDataAccessor/getPrintSuccess (Lnet/minecraft/nbt/Tag;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/commands/data/EntityDataAccessor$1/ (Ljava/lang/String;)V net/minecraft/server/commands/data/EntityDataAccessor$1/ (Ljava/lang/String;)V +MD: net/minecraft/server/commands/data/EntityDataAccessor$1/m_7018_ (Lcom/mojang/brigadier/context/CommandContext;)Lnet/minecraft/server/commands/data/DataAccessor; net/minecraft/server/commands/data/EntityDataAccessor$1/access (Lcom/mojang/brigadier/context/CommandContext;)Lnet/minecraft/server/commands/data/DataAccessor; +MD: net/minecraft/server/commands/data/EntityDataAccessor$1/m_7621_ (Lcom/mojang/brigadier/builder/ArgumentBuilder;Ljava/util/function/Function;)Lcom/mojang/brigadier/builder/ArgumentBuilder; net/minecraft/server/commands/data/EntityDataAccessor$1/wrap (Lcom/mojang/brigadier/builder/ArgumentBuilder;Ljava/util/function/Function;)Lcom/mojang/brigadier/builder/ArgumentBuilder; +MD: net/minecraft/server/commands/data/StorageDataAccessor/ ()V net/minecraft/server/commands/data/StorageDataAccessor/ ()V +MD: net/minecraft/server/commands/data/StorageDataAccessor/ (Lnet/minecraft/world/level/storage/CommandStorage;Lnet/minecraft/resources/ResourceLocation;)V net/minecraft/server/commands/data/StorageDataAccessor/ (Lnet/minecraft/world/level/storage/CommandStorage;Lnet/minecraft/resources/ResourceLocation;)V +MD: net/minecraft/server/commands/data/StorageDataAccessor/m_139546_ (Lcom/mojang/brigadier/context/CommandContext;Lcom/mojang/brigadier/suggestion/SuggestionsBuilder;)Ljava/util/concurrent/CompletableFuture; net/minecraft/server/commands/data/StorageDataAccessor/lambda$static$0 (Lcom/mojang/brigadier/context/CommandContext;Lcom/mojang/brigadier/suggestion/SuggestionsBuilder;)Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/server/commands/data/StorageDataAccessor/m_139553_ (Ljava/lang/String;)Lnet/minecraft/server/commands/data/DataCommands$DataProvider; net/minecraft/server/commands/data/StorageDataAccessor/lambda$static$1 (Ljava/lang/String;)Lnet/minecraft/server/commands/data/DataCommands$DataProvider; +MD: net/minecraft/server/commands/data/StorageDataAccessor/m_139560_ (Lcom/mojang/brigadier/context/CommandContext;)Lnet/minecraft/world/level/storage/CommandStorage; net/minecraft/server/commands/data/StorageDataAccessor/getGlobalTags (Lcom/mojang/brigadier/context/CommandContext;)Lnet/minecraft/world/level/storage/CommandStorage; +MD: net/minecraft/server/commands/data/StorageDataAccessor/m_6066_ (Lnet/minecraft/commands/arguments/NbtPathArgument$NbtPath;DI)Lnet/minecraft/network/chat/Component; net/minecraft/server/commands/data/StorageDataAccessor/getPrintSuccess (Lnet/minecraft/commands/arguments/NbtPathArgument$NbtPath;DI)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/commands/data/StorageDataAccessor/m_6184_ ()Lnet/minecraft/nbt/CompoundTag; net/minecraft/server/commands/data/StorageDataAccessor/getData ()Lnet/minecraft/nbt/CompoundTag; +MD: net/minecraft/server/commands/data/StorageDataAccessor/m_6934_ ()Lnet/minecraft/network/chat/Component; net/minecraft/server/commands/data/StorageDataAccessor/getModifiedSuccess ()Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/commands/data/StorageDataAccessor/m_7603_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/server/commands/data/StorageDataAccessor/setData (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/server/commands/data/StorageDataAccessor/m_7624_ (Lnet/minecraft/nbt/Tag;)Lnet/minecraft/network/chat/Component; net/minecraft/server/commands/data/StorageDataAccessor/getPrintSuccess (Lnet/minecraft/nbt/Tag;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/commands/data/StorageDataAccessor$1/ (Ljava/lang/String;)V net/minecraft/server/commands/data/StorageDataAccessor$1/ (Ljava/lang/String;)V +MD: net/minecraft/server/commands/data/StorageDataAccessor$1/m_7018_ (Lcom/mojang/brigadier/context/CommandContext;)Lnet/minecraft/server/commands/data/DataAccessor; net/minecraft/server/commands/data/StorageDataAccessor$1/access (Lcom/mojang/brigadier/context/CommandContext;)Lnet/minecraft/server/commands/data/DataAccessor; +MD: net/minecraft/server/commands/data/StorageDataAccessor$1/m_7621_ (Lcom/mojang/brigadier/builder/ArgumentBuilder;Ljava/util/function/Function;)Lcom/mojang/brigadier/builder/ArgumentBuilder; net/minecraft/server/commands/data/StorageDataAccessor$1/wrap (Lcom/mojang/brigadier/builder/ArgumentBuilder;Ljava/util/function/Function;)Lcom/mojang/brigadier/builder/ArgumentBuilder; +MD: net/minecraft/server/dedicated/DedicatedPlayerList/ ()V net/minecraft/server/dedicated/DedicatedPlayerList/ ()V +MD: net/minecraft/server/dedicated/DedicatedPlayerList/ (Lnet/minecraft/server/dedicated/DedicatedServer;Lnet/minecraft/core/LayeredRegistryAccess;Lnet/minecraft/world/level/storage/PlayerDataStorage;)V net/minecraft/server/dedicated/DedicatedPlayerList/ (Lnet/minecraft/server/dedicated/DedicatedServer;Lnet/minecraft/core/LayeredRegistryAccess;Lnet/minecraft/world/level/storage/PlayerDataStorage;)V +MD: net/minecraft/server/dedicated/DedicatedPlayerList/m_139577_ ()V net/minecraft/server/dedicated/DedicatedPlayerList/saveOps ()V +MD: net/minecraft/server/dedicated/DedicatedPlayerList/m_139578_ ()V net/minecraft/server/dedicated/DedicatedPlayerList/loadWhiteList ()V +MD: net/minecraft/server/dedicated/DedicatedPlayerList/m_139579_ ()V net/minecraft/server/dedicated/DedicatedPlayerList/saveWhiteList ()V +MD: net/minecraft/server/dedicated/DedicatedPlayerList/m_139593_ ()V net/minecraft/server/dedicated/DedicatedPlayerList/saveIpBanList ()V +MD: net/minecraft/server/dedicated/DedicatedPlayerList/m_139594_ ()V net/minecraft/server/dedicated/DedicatedPlayerList/saveUserBanList ()V +MD: net/minecraft/server/dedicated/DedicatedPlayerList/m_139595_ ()V net/minecraft/server/dedicated/DedicatedPlayerList/loadIpBanList ()V +MD: net/minecraft/server/dedicated/DedicatedPlayerList/m_139596_ ()V net/minecraft/server/dedicated/DedicatedPlayerList/loadUserBanList ()V +MD: net/minecraft/server/dedicated/DedicatedPlayerList/m_139597_ ()V net/minecraft/server/dedicated/DedicatedPlayerList/loadOps ()V +MD: net/minecraft/server/dedicated/DedicatedPlayerList/m_5749_ (Lcom/mojang/authlib/GameProfile;)V net/minecraft/server/dedicated/DedicatedPlayerList/op (Lcom/mojang/authlib/GameProfile;)V +MD: net/minecraft/server/dedicated/DedicatedPlayerList/m_5750_ (Lcom/mojang/authlib/GameProfile;)V net/minecraft/server/dedicated/DedicatedPlayerList/deop (Lcom/mojang/authlib/GameProfile;)V +MD: net/minecraft/server/dedicated/DedicatedPlayerList/m_5764_ (Lcom/mojang/authlib/GameProfile;)Z net/minecraft/server/dedicated/DedicatedPlayerList/isWhiteListed (Lcom/mojang/authlib/GameProfile;)Z +MD: net/minecraft/server/dedicated/DedicatedPlayerList/m_5765_ (Lcom/mojang/authlib/GameProfile;)Z net/minecraft/server/dedicated/DedicatedPlayerList/canBypassPlayerLimit (Lcom/mojang/authlib/GameProfile;)Z +MD: net/minecraft/server/dedicated/DedicatedPlayerList/m_6628_ (Z)V net/minecraft/server/dedicated/DedicatedPlayerList/setUsingWhiteList (Z)V +MD: net/minecraft/server/dedicated/DedicatedPlayerList/m_7542_ ()V net/minecraft/server/dedicated/DedicatedPlayerList/reloadWhiteList ()V +MD: net/minecraft/server/dedicated/DedicatedPlayerList/m_7873_ ()Lnet/minecraft/server/dedicated/DedicatedServer; net/minecraft/server/dedicated/DedicatedPlayerList/getServer ()Lnet/minecraft/server/dedicated/DedicatedServer; +MD: net/minecraft/server/dedicated/DedicatedPlayerList/m_7873_ ()Lnet/minecraft/server/MinecraftServer; net/minecraft/server/dedicated/DedicatedPlayerList/getServer ()Lnet/minecraft/server/MinecraftServer; +MD: net/minecraft/server/dedicated/DedicatedServer/ ()V net/minecraft/server/dedicated/DedicatedServer/ ()V +MD: net/minecraft/server/dedicated/DedicatedServer/ (Ljava/lang/Thread;Lnet/minecraft/world/level/storage/LevelStorageSource$LevelStorageAccess;Lnet/minecraft/server/packs/repository/PackRepository;Lnet/minecraft/server/WorldStem;Lnet/minecraft/server/dedicated/DedicatedServerSettings;Lcom/mojang/datafixers/DataFixer;Lnet/minecraft/server/Services;Lnet/minecraft/server/level/progress/ChunkProgressListenerFactory;)V net/minecraft/server/dedicated/DedicatedServer/ (Ljava/lang/Thread;Lnet/minecraft/world/level/storage/LevelStorageSource$LevelStorageAccess;Lnet/minecraft/server/packs/repository/PackRepository;Lnet/minecraft/server/WorldStem;Lnet/minecraft/server/dedicated/DedicatedServerSettings;Lcom/mojang/datafixers/DataFixer;Lnet/minecraft/server/Services;Lnet/minecraft/server/level/progress/ChunkProgressListenerFactory;)V +MD: net/minecraft/server/dedicated/DedicatedServer/m_139645_ (Ljava/lang/String;Lnet/minecraft/commands/CommandSourceStack;)V net/minecraft/server/dedicated/DedicatedServer/handleConsoleInput (Ljava/lang/String;Lnet/minecraft/commands/CommandSourceStack;)V +MD: net/minecraft/server/dedicated/DedicatedServer/m_139665_ ()V net/minecraft/server/dedicated/DedicatedServer/handleConsoleInputs ()V +MD: net/minecraft/server/dedicated/DedicatedServer/m_139667_ ()V net/minecraft/server/dedicated/DedicatedServer/showGui ()V +MD: net/minecraft/server/dedicated/DedicatedServer/m_139668_ ()Z net/minecraft/server/dedicated/DedicatedServer/convertOldUsers ()Z +MD: net/minecraft/server/dedicated/DedicatedServer/m_139669_ ()J net/minecraft/server/dedicated/DedicatedServer/getMaxTickLength ()J +MD: net/minecraft/server/dedicated/DedicatedServer/m_139671_ ()V net/minecraft/server/dedicated/DedicatedServer/waitForRetry ()V +MD: net/minecraft/server/dedicated/DedicatedServer/m_139688_ (Z)V net/minecraft/server/dedicated/DedicatedServer/storeUsingWhiteList (Z)V +MD: net/minecraft/server/dedicated/DedicatedServer/m_142116_ (Ljava/nio/file/Path;)V net/minecraft/server/dedicated/DedicatedServer/dumpServerProperties (Ljava/nio/file/Path;)V +MD: net/minecraft/server/dedicated/DedicatedServer/m_142359_ ()Lnet/minecraft/world/level/GameType; net/minecraft/server/dedicated/DedicatedServer/getForcedGameType ()Lnet/minecraft/world/level/GameType; +MD: net/minecraft/server/dedicated/DedicatedServer/m_142424_ (Lnet/minecraft/SystemReport;)Lnet/minecraft/SystemReport; net/minecraft/server/dedicated/DedicatedServer/fillServerSystemReport (Lnet/minecraft/SystemReport;)Lnet/minecraft/SystemReport; +MD: net/minecraft/server/dedicated/DedicatedServer/m_142876_ ()Ljava/lang/String; net/minecraft/server/dedicated/DedicatedServer/lambda$fillServerSystemReport$1 ()Ljava/lang/String; +MD: net/minecraft/server/dedicated/DedicatedServer/m_183306_ ()Z net/minecraft/server/dedicated/DedicatedServer/hidesOnlinePlayers ()Z +MD: net/minecraft/server/dedicated/DedicatedServer/m_213994_ ()I net/minecraft/server/dedicated/DedicatedServer/getMaxChainedNeighborUpdates ()I +MD: net/minecraft/server/dedicated/DedicatedServer/m_214005_ ()Z net/minecraft/server/dedicated/DedicatedServer/enforceSecureProfile ()Z +MD: net/minecraft/server/dedicated/DedicatedServer/m_214042_ ()Ljava/util/Optional; net/minecraft/server/dedicated/DedicatedServer/getServerResourcePack ()Ljava/util/Optional; +MD: net/minecraft/server/dedicated/DedicatedServer/m_276331_ ()Ljava/lang/String; net/minecraft/server/dedicated/DedicatedServer/lambda$fillServerSystemReport$0 ()Ljava/lang/String; +MD: net/minecraft/server/dedicated/DedicatedServer/m_276334_ (Ljava/lang/String;)V net/minecraft/server/dedicated/DedicatedServer/lambda$runCommand$3 (Ljava/lang/String;)V +MD: net/minecraft/server/dedicated/DedicatedServer/m_278545_ (ZLnet/minecraft/server/dedicated/DedicatedServerProperties;)Lnet/minecraft/server/dedicated/DedicatedServerProperties; net/minecraft/server/dedicated/DedicatedServer/lambda$storeUsingWhiteList$4 (ZLnet/minecraft/server/dedicated/DedicatedServerProperties;)Lnet/minecraft/server/dedicated/DedicatedServerProperties; +MD: net/minecraft/server/dedicated/DedicatedServer/m_278546_ (ILnet/minecraft/server/dedicated/DedicatedServerProperties;)Lnet/minecraft/server/dedicated/DedicatedServerProperties; net/minecraft/server/dedicated/DedicatedServer/lambda$setPlayerIdleTimeout$2 (ILnet/minecraft/server/dedicated/DedicatedServerProperties;)Lnet/minecraft/server/dedicated/DedicatedServerProperties; +MD: net/minecraft/server/dedicated/DedicatedServer/m_5703_ (Ljava/util/function/BooleanSupplier;)V net/minecraft/server/dedicated/DedicatedServer/tickChildren (Ljava/util/function/BooleanSupplier;)V +MD: net/minecraft/server/dedicated/DedicatedServer/m_6102_ ()Z net/minecraft/server/dedicated/DedicatedServer/shouldInformAdmins ()Z +MD: net/minecraft/server/dedicated/DedicatedServer/m_6328_ ()I net/minecraft/server/dedicated/DedicatedServer/getCompressionThreshold ()I +MD: net/minecraft/server/dedicated/DedicatedServer/m_6329_ ()I net/minecraft/server/dedicated/DedicatedServer/getAbsoluteMaxWorldSize ()I +MD: net/minecraft/server/dedicated/DedicatedServer/m_6365_ ()Z net/minecraft/server/dedicated/DedicatedServer/forceSynchronousWrites ()Z +MD: net/minecraft/server/dedicated/DedicatedServer/m_6370_ ()Z net/minecraft/server/dedicated/DedicatedServer/hasGui ()Z +MD: net/minecraft/server/dedicated/DedicatedServer/m_6373_ ()Z net/minecraft/server/dedicated/DedicatedServer/repliesToStatus ()Z +MD: net/minecraft/server/dedicated/DedicatedServer/m_6396_ ()I net/minecraft/server/dedicated/DedicatedServer/getSpawnProtectionRadius ()I +MD: net/minecraft/server/dedicated/DedicatedServer/m_6846_ ()Lnet/minecraft/server/players/PlayerList; net/minecraft/server/dedicated/DedicatedServer/getPlayerList ()Lnet/minecraft/server/players/PlayerList; +MD: net/minecraft/server/dedicated/DedicatedServer/m_6846_ ()Lnet/minecraft/server/dedicated/DedicatedPlayerList; net/minecraft/server/dedicated/DedicatedServer/getPlayerList ()Lnet/minecraft/server/dedicated/DedicatedPlayerList; +MD: net/minecraft/server/dedicated/DedicatedServer/m_6866_ ()Ljava/lang/String; net/minecraft/server/dedicated/DedicatedServer/getServerIp ()Ljava/lang/String; +MD: net/minecraft/server/dedicated/DedicatedServer/m_6982_ ()Z net/minecraft/server/dedicated/DedicatedServer/isDedicatedServer ()Z +MD: net/minecraft/server/dedicated/DedicatedServer/m_6983_ ()Z net/minecraft/server/dedicated/DedicatedServer/shouldRconBroadcast ()Z +MD: net/minecraft/server/dedicated/DedicatedServer/m_6988_ ()V net/minecraft/server/dedicated/DedicatedServer/onServerExit ()V +MD: net/minecraft/server/dedicated/DedicatedServer/m_6992_ ()Z net/minecraft/server/dedicated/DedicatedServer/isPublished ()Z +MD: net/minecraft/server/dedicated/DedicatedServer/m_6993_ ()Z net/minecraft/server/dedicated/DedicatedServer/isCommandBlockEnabled ()Z +MD: net/minecraft/server/dedicated/DedicatedServer/m_6994_ ()Z net/minecraft/server/dedicated/DedicatedServer/isEpollEnabled ()Z +MD: net/minecraft/server/dedicated/DedicatedServer/m_6995_ ()Ljava/lang/String; net/minecraft/server/dedicated/DedicatedServer/getServerName ()Ljava/lang/String; +MD: net/minecraft/server/dedicated/DedicatedServer/m_6997_ ()Z net/minecraft/server/dedicated/DedicatedServer/areNpcsEnabled ()Z +MD: net/minecraft/server/dedicated/DedicatedServer/m_6998_ ()Z net/minecraft/server/dedicated/DedicatedServer/isSpawningAnimals ()Z +MD: net/minecraft/server/dedicated/DedicatedServer/m_7004_ ()Z net/minecraft/server/dedicated/DedicatedServer/isSpawningMonsters ()Z +MD: net/minecraft/server/dedicated/DedicatedServer/m_7022_ ()I net/minecraft/server/dedicated/DedicatedServer/getOperatorUserPermissionLevel ()I +MD: net/minecraft/server/dedicated/DedicatedServer/m_7032_ ()I net/minecraft/server/dedicated/DedicatedServer/getRateLimitPacketsPerSecond ()I +MD: net/minecraft/server/dedicated/DedicatedServer/m_7034_ ()I net/minecraft/server/dedicated/DedicatedServer/getFunctionCompilationLevel ()I +MD: net/minecraft/server/dedicated/DedicatedServer/m_7035_ ()Z net/minecraft/server/dedicated/DedicatedServer/isHardcore ()Z +MD: net/minecraft/server/dedicated/DedicatedServer/m_7038_ ()Z net/minecraft/server/dedicated/DedicatedServer/initServer ()Z +MD: net/minecraft/server/dedicated/DedicatedServer/m_7041_ ()V net/minecraft/server/dedicated/DedicatedServer/stopServer ()V +MD: net/minecraft/server/dedicated/DedicatedServer/m_7044_ ()V net/minecraft/server/dedicated/DedicatedServer/forceDifficulty ()V +MD: net/minecraft/server/dedicated/DedicatedServer/m_7079_ ()Z net/minecraft/server/dedicated/DedicatedServer/isNetherEnabled ()Z +MD: net/minecraft/server/dedicated/DedicatedServer/m_7123_ ()Ljava/lang/String; net/minecraft/server/dedicated/DedicatedServer/getLevelIdName ()Ljava/lang/String; +MD: net/minecraft/server/dedicated/DedicatedServer/m_7138_ ()Ljava/lang/String; net/minecraft/server/dedicated/DedicatedServer/getPluginNames ()Ljava/lang/String; +MD: net/minecraft/server/dedicated/DedicatedServer/m_7186_ (I)I net/minecraft/server/dedicated/DedicatedServer/getScaledTrackingDistance (I)I +MD: net/minecraft/server/dedicated/DedicatedServer/m_7196_ (I)V net/minecraft/server/dedicated/DedicatedServer/setPlayerIdleTimeout (I)V +MD: net/minecraft/server/dedicated/DedicatedServer/m_7261_ (Ljava/lang/String;)Ljava/lang/String; net/minecraft/server/dedicated/DedicatedServer/runCommand (Ljava/lang/String;)Ljava/lang/String; +MD: net/minecraft/server/dedicated/DedicatedServer/m_7448_ ()I net/minecraft/server/dedicated/DedicatedServer/getServerPort ()I +MD: net/minecraft/server/dedicated/DedicatedServer/m_7762_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/player/Player;)Z net/minecraft/server/dedicated/DedicatedServer/isUnderSpawnProtection (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/player/Player;)Z +MD: net/minecraft/server/dedicated/DedicatedServer/m_7779_ (Lcom/mojang/authlib/GameProfile;)Z net/minecraft/server/dedicated/DedicatedServer/isSingleplayerOwner (Lcom/mojang/authlib/GameProfile;)Z +MD: net/minecraft/server/dedicated/DedicatedServer/m_7913_ ()Lnet/minecraft/server/dedicated/DedicatedServerProperties; net/minecraft/server/dedicated/DedicatedServer/getProperties ()Lnet/minecraft/server/dedicated/DedicatedServerProperties; +MD: net/minecraft/server/dedicated/DedicatedServer/m_7950_ (Lnet/minecraft/server/level/ServerPlayer;)Lnet/minecraft/server/network/TextFilter; net/minecraft/server/dedicated/DedicatedServer/createTextFilterForPlayer (Lnet/minecraft/server/level/ServerPlayer;)Lnet/minecraft/server/network/TextFilter; +MD: net/minecraft/server/dedicated/DedicatedServer$1/ (Lnet/minecraft/server/dedicated/DedicatedServer;Ljava/lang/String;)V net/minecraft/server/dedicated/DedicatedServer$1/ (Lnet/minecraft/server/dedicated/DedicatedServer;Ljava/lang/String;)V +MD: net/minecraft/server/dedicated/DedicatedServer$1/run ()V net/minecraft/server/dedicated/DedicatedServer$1/run ()V +MD: net/minecraft/server/dedicated/DedicatedServerProperties/ ()V net/minecraft/server/dedicated/DedicatedServerProperties/ ()V +MD: net/minecraft/server/dedicated/DedicatedServerProperties/ (Ljava/util/Properties;)V net/minecraft/server/dedicated/DedicatedServerProperties/ (Ljava/util/Properties;)V +MD: net/minecraft/server/dedicated/DedicatedServerProperties/m_139768_ (Ljava/lang/Integer;)Ljava/lang/Integer; net/minecraft/server/dedicated/DedicatedServerProperties/lambda$new$1 (Ljava/lang/Integer;)Ljava/lang/Integer; +MD: net/minecraft/server/dedicated/DedicatedServerProperties/m_139770_ (Ljava/lang/Integer;)Ljava/lang/Integer; net/minecraft/server/dedicated/DedicatedServerProperties/lambda$new$0 (Ljava/lang/Integer;)Ljava/lang/Integer; +MD: net/minecraft/server/dedicated/DedicatedServerProperties/m_180929_ (Ljava/nio/file/Path;)Lnet/minecraft/server/dedicated/DedicatedServerProperties; net/minecraft/server/dedicated/DedicatedServerProperties/fromFile (Ljava/nio/file/Path;)Lnet/minecraft/server/dedicated/DedicatedServerProperties; +MD: net/minecraft/server/dedicated/DedicatedServerProperties/m_211540_ (Ljava/lang/String;)Ljava/lang/String; net/minecraft/server/dedicated/DedicatedServerProperties/lambda$new$3 (Ljava/lang/String;)Ljava/lang/String; +MD: net/minecraft/server/dedicated/DedicatedServerProperties/m_211542_ (Ljava/lang/String;)Lcom/google/gson/JsonObject; net/minecraft/server/dedicated/DedicatedServerProperties/lambda$new$2 (Ljava/lang/String;)Lcom/google/gson/JsonObject; +MD: net/minecraft/server/dedicated/DedicatedServerProperties/m_214808_ (Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;ZLjava/lang/String;)Ljava/util/Optional; net/minecraft/server/dedicated/DedicatedServerProperties/getServerPackInfo (Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;ZLjava/lang/String;)Ljava/util/Optional; +MD: net/minecraft/server/dedicated/DedicatedServerProperties/m_214814_ (Ljava/lang/String;)Lnet/minecraft/network/chat/Component; net/minecraft/server/dedicated/DedicatedServerProperties/parseResourcePackPrompt (Ljava/lang/String;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/dedicated/DedicatedServerProperties/m_244875_ (Ljava/lang/String;Ljava/util/function/Consumer;)V net/minecraft/server/dedicated/DedicatedServerProperties/lambda$getFeatures$4 (Ljava/lang/String;Ljava/util/function/Consumer;)V +MD: net/minecraft/server/dedicated/DedicatedServerProperties/m_246391_ (Ljava/lang/String;)Lnet/minecraft/world/flag/FeatureFlagSet; net/minecraft/server/dedicated/DedicatedServerProperties/getFeatures (Ljava/lang/String;)Lnet/minecraft/world/flag/FeatureFlagSet; +MD: net/minecraft/server/dedicated/DedicatedServerProperties/m_246483_ (Lnet/minecraft/core/RegistryAccess;)Lnet/minecraft/world/level/levelgen/WorldDimensions; net/minecraft/server/dedicated/DedicatedServerProperties/createDimensions (Lnet/minecraft/core/RegistryAccess;)Lnet/minecraft/world/level/levelgen/WorldDimensions; +MD: net/minecraft/server/dedicated/DedicatedServerProperties/m_247013_ (Ljava/lang/String;Ljava/lang/String;)Lnet/minecraft/world/level/DataPackConfig; net/minecraft/server/dedicated/DedicatedServerProperties/getDatapackConfig (Ljava/lang/String;Ljava/lang/String;)Lnet/minecraft/world/level/DataPackConfig; +MD: net/minecraft/server/dedicated/DedicatedServerProperties/m_6764_ (Lnet/minecraft/core/RegistryAccess;Ljava/util/Properties;)Lnet/minecraft/server/dedicated/DedicatedServerProperties; net/minecraft/server/dedicated/DedicatedServerProperties/reload (Lnet/minecraft/core/RegistryAccess;Ljava/util/Properties;)Lnet/minecraft/server/dedicated/DedicatedServerProperties; +MD: net/minecraft/server/dedicated/DedicatedServerProperties/m_6764_ (Lnet/minecraft/core/RegistryAccess;Ljava/util/Properties;)Lnet/minecraft/server/dedicated/Settings; net/minecraft/server/dedicated/DedicatedServerProperties/reload (Lnet/minecraft/core/RegistryAccess;Ljava/util/Properties;)Lnet/minecraft/server/dedicated/Settings; +MD: net/minecraft/server/dedicated/DedicatedServerProperties$WorldDimensionData/ ()V net/minecraft/server/dedicated/DedicatedServerProperties$WorldDimensionData/ ()V +MD: net/minecraft/server/dedicated/DedicatedServerProperties$WorldDimensionData/ (Lcom/google/gson/JsonObject;Ljava/lang/String;)V net/minecraft/server/dedicated/DedicatedServerProperties$WorldDimensionData/ (Lcom/google/gson/JsonObject;Ljava/lang/String;)V +MD: net/minecraft/server/dedicated/DedicatedServerProperties$WorldDimensionData/equals (Ljava/lang/Object;)Z net/minecraft/server/dedicated/DedicatedServerProperties$WorldDimensionData/equals (Ljava/lang/Object;)Z +MD: net/minecraft/server/dedicated/DedicatedServerProperties$WorldDimensionData/f_243780_ ()Ljava/lang/String; net/minecraft/server/dedicated/DedicatedServerProperties$WorldDimensionData/levelType ()Ljava/lang/String; +MD: net/minecraft/server/dedicated/DedicatedServerProperties$WorldDimensionData/f_244404_ ()Lcom/google/gson/JsonObject; net/minecraft/server/dedicated/DedicatedServerProperties$WorldDimensionData/generatorSettings ()Lcom/google/gson/JsonObject; +MD: net/minecraft/server/dedicated/DedicatedServerProperties$WorldDimensionData/hashCode ()I net/minecraft/server/dedicated/DedicatedServerProperties$WorldDimensionData/hashCode ()I +MD: net/minecraft/server/dedicated/DedicatedServerProperties$WorldDimensionData/m_245481_ ()Ljava/util/Optional; net/minecraft/server/dedicated/DedicatedServerProperties$WorldDimensionData/lambda$create$3 ()Ljava/util/Optional; +MD: net/minecraft/server/dedicated/DedicatedServerProperties$WorldDimensionData/m_245759_ ()Ljava/lang/IllegalStateException; net/minecraft/server/dedicated/DedicatedServerProperties$WorldDimensionData/lambda$create$1 ()Ljava/lang/IllegalStateException; +MD: net/minecraft/server/dedicated/DedicatedServerProperties$WorldDimensionData/m_247373_ (Lnet/minecraft/core/RegistryAccess;)Lnet/minecraft/world/level/levelgen/WorldDimensions; net/minecraft/server/dedicated/DedicatedServerProperties$WorldDimensionData/create (Lnet/minecraft/core/RegistryAccess;)Lnet/minecraft/world/level/levelgen/WorldDimensions; +MD: net/minecraft/server/dedicated/DedicatedServerProperties$WorldDimensionData/m_247595_ (Lnet/minecraft/core/Holder$Reference;)Lnet/minecraft/core/Holder$Reference; net/minecraft/server/dedicated/DedicatedServerProperties$WorldDimensionData/lambda$create$4 (Lnet/minecraft/core/Holder$Reference;)Lnet/minecraft/core/Holder$Reference; +MD: net/minecraft/server/dedicated/DedicatedServerProperties$WorldDimensionData/m_257147_ (Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/resources/ResourceKey; net/minecraft/server/dedicated/DedicatedServerProperties$WorldDimensionData/lambda$create$2 (Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/resources/ResourceKey; +MD: net/minecraft/server/dedicated/DedicatedServerProperties$WorldDimensionData/m_257148_ (Lnet/minecraft/core/Registry;)Ljava/util/Optional; net/minecraft/server/dedicated/DedicatedServerProperties$WorldDimensionData/lambda$create$0 (Lnet/minecraft/core/Registry;)Ljava/util/Optional; +MD: net/minecraft/server/dedicated/DedicatedServerProperties$WorldDimensionData/toString ()Ljava/lang/String; net/minecraft/server/dedicated/DedicatedServerProperties$WorldDimensionData/toString ()Ljava/lang/String; +MD: net/minecraft/server/dedicated/DedicatedServerSettings/ (Ljava/nio/file/Path;)V net/minecraft/server/dedicated/DedicatedServerSettings/ (Ljava/nio/file/Path;)V +MD: net/minecraft/server/dedicated/DedicatedServerSettings/m_139777_ ()Lnet/minecraft/server/dedicated/DedicatedServerProperties; net/minecraft/server/dedicated/DedicatedServerSettings/getProperties ()Lnet/minecraft/server/dedicated/DedicatedServerProperties; +MD: net/minecraft/server/dedicated/DedicatedServerSettings/m_139778_ (Ljava/util/function/UnaryOperator;)Lnet/minecraft/server/dedicated/DedicatedServerSettings; net/minecraft/server/dedicated/DedicatedServerSettings/update (Ljava/util/function/UnaryOperator;)Lnet/minecraft/server/dedicated/DedicatedServerSettings; +MD: net/minecraft/server/dedicated/DedicatedServerSettings/m_139780_ ()V net/minecraft/server/dedicated/DedicatedServerSettings/forceSave ()V +MD: net/minecraft/server/dedicated/ServerWatchdog/ ()V net/minecraft/server/dedicated/ServerWatchdog/ ()V +MD: net/minecraft/server/dedicated/ServerWatchdog/ (Lnet/minecraft/server/dedicated/DedicatedServer;)V net/minecraft/server/dedicated/ServerWatchdog/ (Lnet/minecraft/server/dedicated/DedicatedServer;)V +MD: net/minecraft/server/dedicated/ServerWatchdog/m_139787_ ()V net/minecraft/server/dedicated/ServerWatchdog/exit ()V +MD: net/minecraft/server/dedicated/ServerWatchdog/m_276335_ ()Ljava/lang/String; net/minecraft/server/dedicated/ServerWatchdog/lambda$run$2 ()Ljava/lang/String; +MD: net/minecraft/server/dedicated/ServerWatchdog/m_278547_ ()Ljava/lang/String; net/minecraft/server/dedicated/ServerWatchdog/lambda$run$0 ()Ljava/lang/String; +MD: net/minecraft/server/dedicated/ServerWatchdog/m_288110_ (Lnet/minecraft/server/level/ServerLevel;)Ljava/lang/String; net/minecraft/server/dedicated/ServerWatchdog/lambda$run$1 (Lnet/minecraft/server/level/ServerLevel;)Ljava/lang/String; +MD: net/minecraft/server/dedicated/ServerWatchdog/run ()V net/minecraft/server/dedicated/ServerWatchdog/run ()V +MD: net/minecraft/server/dedicated/ServerWatchdog$1/ (Lnet/minecraft/server/dedicated/ServerWatchdog;)V net/minecraft/server/dedicated/ServerWatchdog$1/ (Lnet/minecraft/server/dedicated/ServerWatchdog;)V +MD: net/minecraft/server/dedicated/ServerWatchdog$1/run ()V net/minecraft/server/dedicated/ServerWatchdog$1/run ()V +MD: net/minecraft/server/dedicated/Settings/ ()V net/minecraft/server/dedicated/Settings/ ()V +MD: net/minecraft/server/dedicated/Settings/ (Ljava/util/Properties;)V net/minecraft/server/dedicated/Settings/ (Ljava/util/Properties;)V +MD: net/minecraft/server/dedicated/Settings/m_139802_ ()Ljava/util/Properties; net/minecraft/server/dedicated/Settings/cloneProperties ()Ljava/util/Properties; +MD: net/minecraft/server/dedicated/Settings/m_139803_ (Ljava/lang/String;)Ljava/lang/String; net/minecraft/server/dedicated/Settings/getLegacyString (Ljava/lang/String;)Ljava/lang/String; +MD: net/minecraft/server/dedicated/Settings/m_139805_ (Ljava/lang/String;I)I net/minecraft/server/dedicated/Settings/get (Ljava/lang/String;I)I +MD: net/minecraft/server/dedicated/Settings/m_139808_ (Ljava/lang/String;J)J net/minecraft/server/dedicated/Settings/get (Ljava/lang/String;J)J +MD: net/minecraft/server/dedicated/Settings/m_139811_ (Ljava/lang/String;Ljava/lang/String;)Ljava/lang/String; net/minecraft/server/dedicated/Settings/get (Ljava/lang/String;Ljava/lang/String;)Ljava/lang/String; +MD: net/minecraft/server/dedicated/Settings/m_139814_ (Ljava/lang/String;Ljava/util/function/Function;)Ljava/lang/Object; net/minecraft/server/dedicated/Settings/getLegacy (Ljava/lang/String;Ljava/util/function/Function;)Ljava/lang/Object; +MD: net/minecraft/server/dedicated/Settings/m_139817_ (Ljava/lang/String;Ljava/util/function/Function;Ljava/lang/Object;)Ljava/lang/Object; net/minecraft/server/dedicated/Settings/get (Ljava/lang/String;Ljava/util/function/Function;Ljava/lang/Object;)Ljava/lang/Object; +MD: net/minecraft/server/dedicated/Settings/m_139821_ (Ljava/lang/String;Ljava/util/function/Function;Ljava/util/function/Function;Ljava/lang/Object;)Ljava/lang/Object; net/minecraft/server/dedicated/Settings/get (Ljava/lang/String;Ljava/util/function/Function;Ljava/util/function/Function;Ljava/lang/Object;)Ljava/lang/Object; +MD: net/minecraft/server/dedicated/Settings/m_139826_ (Ljava/lang/String;Ljava/util/function/Function;Ljava/util/function/UnaryOperator;Ljava/util/function/Function;Ljava/lang/Object;)Ljava/lang/Object; net/minecraft/server/dedicated/Settings/get (Ljava/lang/String;Ljava/util/function/Function;Ljava/util/function/UnaryOperator;Ljava/util/function/Function;Ljava/lang/Object;)Ljava/lang/Object; +MD: net/minecraft/server/dedicated/Settings/m_139832_ (Ljava/lang/String;Ljava/util/function/UnaryOperator;I)I net/minecraft/server/dedicated/Settings/get (Ljava/lang/String;Ljava/util/function/UnaryOperator;I)I +MD: net/minecraft/server/dedicated/Settings/m_139836_ (Ljava/lang/String;Z)Z net/minecraft/server/dedicated/Settings/get (Ljava/lang/String;Z)Z +MD: net/minecraft/server/dedicated/Settings/m_139839_ (Ljava/nio/file/Path;)Ljava/util/Properties; net/minecraft/server/dedicated/Settings/loadFromFile (Ljava/nio/file/Path;)Ljava/util/Properties; +MD: net/minecraft/server/dedicated/Settings/m_139841_ (Ljava/util/function/Function;)Ljava/util/function/Function; net/minecraft/server/dedicated/Settings/wrapNumberDeserializer (Ljava/util/function/Function;)Ljava/util/function/Function; +MD: net/minecraft/server/dedicated/Settings/m_139843_ (Ljava/util/function/Function;Ljava/lang/String;)Ljava/lang/Number; net/minecraft/server/dedicated/Settings/lambda$wrapNumberDeserializer$0 (Ljava/util/function/Function;Ljava/lang/String;)Ljava/lang/Number; +MD: net/minecraft/server/dedicated/Settings/m_139846_ (Ljava/util/function/Function;Ljava/util/function/UnaryOperator;Ljava/lang/String;)Ljava/lang/Object; net/minecraft/server/dedicated/Settings/lambda$get$2 (Ljava/util/function/Function;Ljava/util/function/UnaryOperator;Ljava/lang/String;)Ljava/lang/Object; +MD: net/minecraft/server/dedicated/Settings/m_139850_ (Ljava/util/function/IntFunction;Ljava/util/function/Function;)Ljava/util/function/Function; net/minecraft/server/dedicated/Settings/dispatchNumberOrString (Ljava/util/function/IntFunction;Ljava/util/function/Function;)Ljava/util/function/Function; +MD: net/minecraft/server/dedicated/Settings/m_139853_ (Ljava/util/function/IntFunction;Ljava/util/function/Function;Ljava/lang/String;)Ljava/lang/Object; net/minecraft/server/dedicated/Settings/lambda$dispatchNumberOrString$1 (Ljava/util/function/IntFunction;Ljava/util/function/Function;Ljava/lang/String;)Ljava/lang/Object; +MD: net/minecraft/server/dedicated/Settings/m_139859_ (Ljava/lang/String;)Ljava/lang/Boolean; net/minecraft/server/dedicated/Settings/getLegacyBoolean (Ljava/lang/String;)Ljava/lang/Boolean; +MD: net/minecraft/server/dedicated/Settings/m_139861_ (Ljava/lang/String;I)Lnet/minecraft/server/dedicated/Settings$MutableValue; net/minecraft/server/dedicated/Settings/getMutable (Ljava/lang/String;I)Lnet/minecraft/server/dedicated/Settings$MutableValue; +MD: net/minecraft/server/dedicated/Settings/m_139864_ (Ljava/lang/String;Ljava/util/function/Function;Ljava/lang/Object;)Lnet/minecraft/server/dedicated/Settings$MutableValue; net/minecraft/server/dedicated/Settings/getMutable (Ljava/lang/String;Ljava/util/function/Function;Ljava/lang/Object;)Lnet/minecraft/server/dedicated/Settings$MutableValue; +MD: net/minecraft/server/dedicated/Settings/m_139868_ (Ljava/lang/String;Ljava/util/function/Function;Ljava/util/function/Function;Ljava/lang/Object;)Lnet/minecraft/server/dedicated/Settings$MutableValue; net/minecraft/server/dedicated/Settings/getMutable (Ljava/lang/String;Ljava/util/function/Function;Ljava/util/function/Function;Ljava/lang/Object;)Lnet/minecraft/server/dedicated/Settings$MutableValue; +MD: net/minecraft/server/dedicated/Settings/m_139873_ (Ljava/lang/String;Z)Lnet/minecraft/server/dedicated/Settings$MutableValue; net/minecraft/server/dedicated/Settings/getMutable (Ljava/lang/String;Z)Lnet/minecraft/server/dedicated/Settings$MutableValue; +MD: net/minecraft/server/dedicated/Settings/m_139876_ (Ljava/nio/file/Path;)V net/minecraft/server/dedicated/Settings/store (Ljava/nio/file/Path;)V +MD: net/minecraft/server/dedicated/Settings/m_139878_ (Ljava/lang/String;)Ljava/lang/String; net/minecraft/server/dedicated/Settings/getStringRaw (Ljava/lang/String;)Ljava/lang/String; +MD: net/minecraft/server/dedicated/Settings/m_6764_ (Lnet/minecraft/core/RegistryAccess;Ljava/util/Properties;)Lnet/minecraft/server/dedicated/Settings; net/minecraft/server/dedicated/Settings/reload (Lnet/minecraft/core/RegistryAccess;Ljava/util/Properties;)Lnet/minecraft/server/dedicated/Settings; +MD: net/minecraft/server/dedicated/Settings$MutableValue/ (Lnet/minecraft/server/dedicated/Settings;Ljava/lang/String;Ljava/lang/Object;Ljava/util/function/Function;)V net/minecraft/server/dedicated/Settings$MutableValue/ (Lnet/minecraft/server/dedicated/Settings;Ljava/lang/String;Ljava/lang/Object;Ljava/util/function/Function;)V +MD: net/minecraft/server/dedicated/Settings$MutableValue/get ()Ljava/lang/Object; net/minecraft/server/dedicated/Settings$MutableValue/get ()Ljava/lang/Object; +MD: net/minecraft/server/dedicated/Settings$MutableValue/m_139895_ (Lnet/minecraft/core/RegistryAccess;Ljava/lang/Object;)Lnet/minecraft/server/dedicated/Settings; net/minecraft/server/dedicated/Settings$MutableValue/update (Lnet/minecraft/core/RegistryAccess;Ljava/lang/Object;)Lnet/minecraft/server/dedicated/Settings; +MD: net/minecraft/server/gui/MinecraftServerGui/ ()V net/minecraft/server/gui/MinecraftServerGui/ ()V +MD: net/minecraft/server/gui/MinecraftServerGui/ (Lnet/minecraft/server/dedicated/DedicatedServer;)V net/minecraft/server/gui/MinecraftServerGui/ (Lnet/minecraft/server/dedicated/DedicatedServer;)V +MD: net/minecraft/server/gui/MinecraftServerGui/m_139908_ ()V net/minecraft/server/gui/MinecraftServerGui/start ()V +MD: net/minecraft/server/gui/MinecraftServerGui/m_139909_ (Ljava/lang/Runnable;)V net/minecraft/server/gui/MinecraftServerGui/addFinalizer (Ljava/lang/Runnable;)V +MD: net/minecraft/server/gui/MinecraftServerGui/m_139911_ (Ljavax/swing/JTextArea;Ljavax/swing/JScrollPane;)V net/minecraft/server/gui/MinecraftServerGui/lambda$buildChatPanel$1 (Ljavax/swing/JTextArea;Ljavax/swing/JScrollPane;)V +MD: net/minecraft/server/gui/MinecraftServerGui/m_139914_ (Ljavax/swing/JTextArea;Ljavax/swing/JScrollPane;Ljava/lang/String;)V net/minecraft/server/gui/MinecraftServerGui/print (Ljavax/swing/JTextArea;Ljavax/swing/JScrollPane;Ljava/lang/String;)V +MD: net/minecraft/server/gui/MinecraftServerGui/m_139921_ (Lnet/minecraft/server/dedicated/DedicatedServer;)Lnet/minecraft/server/gui/MinecraftServerGui; net/minecraft/server/gui/MinecraftServerGui/showFrameFor (Lnet/minecraft/server/dedicated/DedicatedServer;)Lnet/minecraft/server/gui/MinecraftServerGui; +MD: net/minecraft/server/gui/MinecraftServerGui/m_139925_ ()V net/minecraft/server/gui/MinecraftServerGui/close ()V +MD: net/minecraft/server/gui/MinecraftServerGui/m_139926_ (Ljavax/swing/JTextArea;Ljavax/swing/JScrollPane;Ljava/lang/String;)V net/minecraft/server/gui/MinecraftServerGui/lambda$print$2 (Ljavax/swing/JTextArea;Ljavax/swing/JScrollPane;Ljava/lang/String;)V +MD: net/minecraft/server/gui/MinecraftServerGui/m_139932_ ()Ljavax/swing/JComponent; net/minecraft/server/gui/MinecraftServerGui/buildInfoPanel ()Ljavax/swing/JComponent; +MD: net/minecraft/server/gui/MinecraftServerGui/m_139933_ ()Ljavax/swing/JComponent; net/minecraft/server/gui/MinecraftServerGui/buildPlayerPanel ()Ljavax/swing/JComponent; +MD: net/minecraft/server/gui/MinecraftServerGui/m_139934_ ()Ljavax/swing/JComponent; net/minecraft/server/gui/MinecraftServerGui/buildChatPanel ()Ljavax/swing/JComponent; +MD: net/minecraft/server/gui/MinecraftServerGui/m_139935_ ()V net/minecraft/server/gui/MinecraftServerGui/runFinalizers ()V +MD: net/minecraft/server/gui/MinecraftServerGui/m_276337_ (Ljavax/swing/JTextField;Ljava/awt/event/ActionEvent;)V net/minecraft/server/gui/MinecraftServerGui/lambda$buildChatPanel$0 (Ljavax/swing/JTextField;Ljava/awt/event/ActionEvent;)V +MD: net/minecraft/server/gui/MinecraftServerGui$1/ (Lnet/minecraft/server/gui/MinecraftServerGui;Ljavax/swing/JFrame;Lnet/minecraft/server/dedicated/DedicatedServer;)V net/minecraft/server/gui/MinecraftServerGui$1/ (Lnet/minecraft/server/gui/MinecraftServerGui;Ljavax/swing/JFrame;Lnet/minecraft/server/dedicated/DedicatedServer;)V +MD: net/minecraft/server/gui/MinecraftServerGui$1/windowClosing (Ljava/awt/event/WindowEvent;)V net/minecraft/server/gui/MinecraftServerGui$1/windowClosing (Ljava/awt/event/WindowEvent;)V +MD: net/minecraft/server/gui/MinecraftServerGui$2/ (Lnet/minecraft/server/gui/MinecraftServerGui;)V net/minecraft/server/gui/MinecraftServerGui$2/ (Lnet/minecraft/server/gui/MinecraftServerGui;)V +MD: net/minecraft/server/gui/MinecraftServerGui$2/focusGained (Ljava/awt/event/FocusEvent;)V net/minecraft/server/gui/MinecraftServerGui$2/focusGained (Ljava/awt/event/FocusEvent;)V +MD: net/minecraft/server/gui/PlayerListComponent/ (Lnet/minecraft/server/MinecraftServer;)V net/minecraft/server/gui/PlayerListComponent/ (Lnet/minecraft/server/MinecraftServer;)V +MD: net/minecraft/server/gui/PlayerListComponent/m_139954_ ()V net/minecraft/server/gui/PlayerListComponent/tick ()V +MD: net/minecraft/server/gui/StatsComponent/ ()V net/minecraft/server/gui/StatsComponent/ ()V +MD: net/minecraft/server/gui/StatsComponent/ (Lnet/minecraft/server/MinecraftServer;)V net/minecraft/server/gui/StatsComponent/ (Lnet/minecraft/server/MinecraftServer;)V +MD: net/minecraft/server/gui/StatsComponent/m_139964_ ()V net/minecraft/server/gui/StatsComponent/close ()V +MD: net/minecraft/server/gui/StatsComponent/m_139965_ (Ljava/awt/event/ActionEvent;)V net/minecraft/server/gui/StatsComponent/lambda$new$1 (Ljava/awt/event/ActionEvent;)V +MD: net/minecraft/server/gui/StatsComponent/m_139967_ (Ljava/text/DecimalFormat;)V net/minecraft/server/gui/StatsComponent/lambda$static$0 (Ljava/text/DecimalFormat;)V +MD: net/minecraft/server/gui/StatsComponent/m_139969_ ([J)D net/minecraft/server/gui/StatsComponent/getAverage ([J)D +MD: net/minecraft/server/gui/StatsComponent/m_139971_ ()V net/minecraft/server/gui/StatsComponent/tick ()V +MD: net/minecraft/server/gui/StatsComponent/paint (Ljava/awt/Graphics;)V net/minecraft/server/gui/StatsComponent/paint (Ljava/awt/Graphics;)V +MD: net/minecraft/server/level/BlockDestructionProgress/ (ILnet/minecraft/core/BlockPos;)V net/minecraft/server/level/BlockDestructionProgress/ (ILnet/minecraft/core/BlockPos;)V +MD: net/minecraft/server/level/BlockDestructionProgress/compareTo (Ljava/lang/Object;)I net/minecraft/server/level/BlockDestructionProgress/compareTo (Ljava/lang/Object;)I +MD: net/minecraft/server/level/BlockDestructionProgress/compareTo (Lnet/minecraft/server/level/BlockDestructionProgress;)I net/minecraft/server/level/BlockDestructionProgress/compareTo (Lnet/minecraft/server/level/BlockDestructionProgress;)I +MD: net/minecraft/server/level/BlockDestructionProgress/equals (Ljava/lang/Object;)Z net/minecraft/server/level/BlockDestructionProgress/equals (Ljava/lang/Object;)Z +MD: net/minecraft/server/level/BlockDestructionProgress/hashCode ()I net/minecraft/server/level/BlockDestructionProgress/hashCode ()I +MD: net/minecraft/server/level/BlockDestructionProgress/m_139981_ (I)V net/minecraft/server/level/BlockDestructionProgress/setProgress (I)V +MD: net/minecraft/server/level/BlockDestructionProgress/m_139985_ ()Lnet/minecraft/core/BlockPos; net/minecraft/server/level/BlockDestructionProgress/getPos ()Lnet/minecraft/core/BlockPos; +MD: net/minecraft/server/level/BlockDestructionProgress/m_139986_ (I)V net/minecraft/server/level/BlockDestructionProgress/updateTick (I)V +MD: net/minecraft/server/level/BlockDestructionProgress/m_139988_ ()I net/minecraft/server/level/BlockDestructionProgress/getProgress ()I +MD: net/minecraft/server/level/BlockDestructionProgress/m_139991_ ()I net/minecraft/server/level/BlockDestructionProgress/getUpdatedRenderTick ()I +MD: net/minecraft/server/level/BlockDestructionProgress/m_142980_ ()I net/minecraft/server/level/BlockDestructionProgress/getId ()I +MD: net/minecraft/server/level/ChunkHolder/ ()V net/minecraft/server/level/ChunkHolder/ ()V +MD: net/minecraft/server/level/ChunkHolder/ (Lnet/minecraft/world/level/ChunkPos;ILnet/minecraft/world/level/LevelHeightAccessor;Lnet/minecraft/world/level/lighting/LevelLightEngine;Lnet/minecraft/server/level/ChunkHolder$LevelChangeListener;Lnet/minecraft/server/level/ChunkHolder$PlayerProvider;)V net/minecraft/server/level/ChunkHolder/ (Lnet/minecraft/world/level/ChunkPos;ILnet/minecraft/world/level/LevelHeightAccessor;Lnet/minecraft/world/level/lighting/LevelLightEngine;Lnet/minecraft/server/level/ChunkHolder$LevelChangeListener;Lnet/minecraft/server/level/ChunkHolder$PlayerProvider;)V +MD: net/minecraft/server/level/ChunkHolder/m_140026_ ()Ljava/util/concurrent/CompletableFuture; net/minecraft/server/level/ChunkHolder/getTickingChunkFuture ()Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/server/level/ChunkHolder/m_140027_ (I)V net/minecraft/server/level/ChunkHolder/setTicketLevel (I)V +MD: net/minecraft/server/level/ChunkHolder/m_140036_ (Lnet/minecraft/world/level/LightLayer;I)V net/minecraft/server/level/ChunkHolder/sectionLightChanged (Lnet/minecraft/world/level/LightLayer;I)V +MD: net/minecraft/server/level/ChunkHolder/m_140047_ (Lnet/minecraft/world/level/chunk/ChunkStatus;)Ljava/util/concurrent/CompletableFuture; net/minecraft/server/level/ChunkHolder/getFutureIfPresentUnchecked (Lnet/minecraft/world/level/chunk/ChunkStatus;)Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/server/level/ChunkHolder/m_140049_ (Lnet/minecraft/world/level/chunk/ChunkStatus;Lnet/minecraft/server/level/ChunkMap;)Ljava/util/concurrent/CompletableFuture; net/minecraft/server/level/ChunkHolder/getOrScheduleFuture (Lnet/minecraft/world/level/chunk/ChunkStatus;Lnet/minecraft/server/level/ChunkMap;)Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/server/level/ChunkHolder/m_140052_ (Lnet/minecraft/world/level/chunk/ImposterProtoChunk;)V net/minecraft/server/level/ChunkHolder/replaceProtoChunk (Lnet/minecraft/world/level/chunk/ImposterProtoChunk;)V +MD: net/minecraft/server/level/ChunkHolder/m_140054_ (Lnet/minecraft/world/level/chunk/LevelChunk;)V net/minecraft/server/level/ChunkHolder/broadcastChanges (Lnet/minecraft/world/level/chunk/LevelChunk;)V +MD: net/minecraft/server/level/ChunkHolder/m_140056_ (Lnet/minecraft/core/BlockPos;)V net/minecraft/server/level/ChunkHolder/blockChanged (Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/server/level/ChunkHolder/m_140060_ (Lnet/minecraft/network/protocol/Packet;Lnet/minecraft/server/level/ServerPlayer;)V net/minecraft/server/level/ChunkHolder/lambda$broadcast$1 (Lnet/minecraft/network/protocol/Packet;Lnet/minecraft/server/level/ServerPlayer;)V +MD: net/minecraft/server/level/ChunkHolder/m_140073_ ()Ljava/util/concurrent/CompletableFuture; net/minecraft/server/level/ChunkHolder/getEntityTickingChunkFuture ()Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/server/level/ChunkHolder/m_140080_ (Lnet/minecraft/world/level/chunk/ChunkStatus;)Ljava/util/concurrent/CompletableFuture; net/minecraft/server/level/ChunkHolder/getFutureIfPresent (Lnet/minecraft/world/level/chunk/ChunkStatus;)Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/server/level/ChunkHolder/m_140082_ ()Ljava/util/concurrent/CompletableFuture; net/minecraft/server/level/ChunkHolder/getFullChunkFuture ()Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/server/level/ChunkHolder/m_140085_ ()Lnet/minecraft/world/level/chunk/LevelChunk; net/minecraft/server/level/ChunkHolder/getTickingChunk ()Lnet/minecraft/world/level/chunk/LevelChunk; +MD: net/minecraft/server/level/ChunkHolder/m_140086_ (I)V net/minecraft/server/level/ChunkHolder/setQueueLevel (I)V +MD: net/minecraft/server/level/ChunkHolder/m_140088_ ()Lnet/minecraft/world/level/chunk/ChunkStatus; net/minecraft/server/level/ChunkHolder/getLastAvailableStatus ()Lnet/minecraft/world/level/chunk/ChunkStatus; +MD: net/minecraft/server/level/ChunkHolder/m_140089_ ()Lnet/minecraft/world/level/chunk/ChunkAccess; net/minecraft/server/level/ChunkHolder/getLastAvailable ()Lnet/minecraft/world/level/chunk/ChunkAccess; +MD: net/minecraft/server/level/ChunkHolder/m_140090_ ()Ljava/util/concurrent/CompletableFuture; net/minecraft/server/level/ChunkHolder/getChunkToSave ()Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/server/level/ChunkHolder/m_140092_ ()Lnet/minecraft/world/level/ChunkPos; net/minecraft/server/level/ChunkHolder/getPos ()Lnet/minecraft/world/level/ChunkPos; +MD: net/minecraft/server/level/ChunkHolder/m_140093_ ()I net/minecraft/server/level/ChunkHolder/getTicketLevel ()I +MD: net/minecraft/server/level/ChunkHolder/m_140094_ ()I net/minecraft/server/level/ChunkHolder/getQueueLevel ()I +MD: net/minecraft/server/level/ChunkHolder/m_140095_ ()Z net/minecraft/server/level/ChunkHolder/wasAccessibleSinceLastSave ()Z +MD: net/minecraft/server/level/ChunkHolder/m_140096_ ()V net/minecraft/server/level/ChunkHolder/refreshAccessibility ()V +MD: net/minecraft/server/level/ChunkHolder/m_142998_ (Lnet/minecraft/server/level/ChunkMap;Ljava/util/concurrent/CompletableFuture;Ljava/util/concurrent/Executor;Lnet/minecraft/server/level/FullChunkStatus;)V net/minecraft/server/level/ChunkHolder/scheduleFullChunkPromotion (Lnet/minecraft/server/level/ChunkMap;Ljava/util/concurrent/CompletableFuture;Ljava/util/concurrent/Executor;Lnet/minecraft/server/level/FullChunkStatus;)V +MD: net/minecraft/server/level/ChunkHolder/m_143003_ (Lnet/minecraft/server/level/ChunkMap;Ljava/util/concurrent/Executor;)V net/minecraft/server/level/ChunkHolder/updateFutures (Lnet/minecraft/server/level/ChunkMap;Ljava/util/concurrent/Executor;)V +MD: net/minecraft/server/level/ChunkHolder/m_143017_ (Ljava/util/concurrent/CompletableFuture;Ljava/lang/String;)V net/minecraft/server/level/ChunkHolder/updateChunkToSave (Ljava/util/concurrent/CompletableFuture;Ljava/lang/String;)V +MD: net/minecraft/server/level/ChunkHolder/m_200405_ (Lnet/minecraft/world/level/chunk/ChunkAccess;)Lnet/minecraft/world/level/chunk/ChunkAccess; net/minecraft/server/level/ChunkHolder/lambda$updateChunkToSave$3 (Lnet/minecraft/world/level/chunk/ChunkAccess;)Lnet/minecraft/world/level/chunk/ChunkAccess; +MD: net/minecraft/server/level/ChunkHolder/m_200407_ (Lnet/minecraft/world/level/chunk/ChunkAccess;Lnet/minecraft/server/level/ChunkHolder$ChunkLoadingFailure;)Lnet/minecraft/world/level/chunk/ChunkAccess; net/minecraft/server/level/ChunkHolder/lambda$updateChunkToSave$4 (Lnet/minecraft/world/level/chunk/ChunkAccess;Lnet/minecraft/server/level/ChunkHolder$ChunkLoadingFailure;)Lnet/minecraft/world/level/chunk/ChunkAccess; +MD: net/minecraft/server/level/ChunkHolder/m_200410_ (Lnet/minecraft/world/level/chunk/ChunkAccess;Lcom/mojang/datafixers/util/Either;)Lnet/minecraft/world/level/chunk/ChunkAccess; net/minecraft/server/level/ChunkHolder/lambda$updateChunkToSave$5 (Lnet/minecraft/world/level/chunk/ChunkAccess;Lcom/mojang/datafixers/util/Either;)Lnet/minecraft/world/level/chunk/ChunkAccess; +MD: net/minecraft/server/level/ChunkHolder/m_200413_ (Lnet/minecraft/world/level/chunk/ChunkAccess;Ljava/lang/Object;)Lnet/minecraft/world/level/chunk/ChunkAccess; net/minecraft/server/level/ChunkHolder/lambda$addSaveDependency$2 (Lnet/minecraft/world/level/chunk/ChunkAccess;Ljava/lang/Object;)Lnet/minecraft/world/level/chunk/ChunkAccess; +MD: net/minecraft/server/level/ChunkHolder/m_200416_ (Ljava/lang/String;Ljava/util/concurrent/CompletableFuture;)V net/minecraft/server/level/ChunkHolder/addSaveDependency (Ljava/lang/String;Ljava/util/concurrent/CompletableFuture;)V +MD: net/minecraft/server/level/ChunkHolder/m_200419_ (Ljava/util/concurrent/CompletableFuture;Lcom/mojang/datafixers/util/Either;)V net/minecraft/server/level/ChunkHolder/lambda$scheduleFullChunkPromotion$8 (Ljava/util/concurrent/CompletableFuture;Lcom/mojang/datafixers/util/Either;)V +MD: net/minecraft/server/level/ChunkHolder/m_200422_ (Ljava/util/concurrent/CompletableFuture;Lnet/minecraft/world/level/chunk/LevelChunk;)V net/minecraft/server/level/ChunkHolder/lambda$scheduleFullChunkPromotion$7 (Ljava/util/concurrent/CompletableFuture;Lnet/minecraft/world/level/chunk/LevelChunk;)V +MD: net/minecraft/server/level/ChunkHolder/m_202980_ ()Ljava/util/List; net/minecraft/server/level/ChunkHolder/getAllFutures ()Ljava/util/List; +MD: net/minecraft/server/level/ChunkHolder/m_212234_ ()Lnet/minecraft/world/level/chunk/LevelChunk; net/minecraft/server/level/ChunkHolder/getFullChunk ()Lnet/minecraft/world/level/chunk/LevelChunk; +MD: net/minecraft/server/level/ChunkHolder/m_287043_ (Lnet/minecraft/server/level/ChunkMap;Lnet/minecraft/server/level/FullChunkStatus;)V net/minecraft/server/level/ChunkHolder/lambda$scheduleFullChunkPromotion$6 (Lnet/minecraft/server/level/ChunkMap;Lnet/minecraft/server/level/FullChunkStatus;)V +MD: net/minecraft/server/level/ChunkHolder/m_287189_ (Lnet/minecraft/server/level/ChunkMap;Lnet/minecraft/server/level/FullChunkStatus;)V net/minecraft/server/level/ChunkHolder/demoteFullChunk (Lnet/minecraft/server/level/ChunkMap;Lnet/minecraft/server/level/FullChunkStatus;)V +MD: net/minecraft/server/level/ChunkHolder/m_287213_ ()Lnet/minecraft/server/level/FullChunkStatus; net/minecraft/server/level/ChunkHolder/getFullStatus ()Lnet/minecraft/server/level/FullChunkStatus; +MD: net/minecraft/server/level/ChunkHolder/m_288111_ (Ljava/util/List;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V net/minecraft/server/level/ChunkHolder/lambda$broadcastChanges$0 (Ljava/util/List;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V +MD: net/minecraft/server/level/ChunkHolder/m_288202_ (Ljava/util/List;Lnet/minecraft/network/protocol/Packet;)V net/minecraft/server/level/ChunkHolder/broadcast (Ljava/util/List;Lnet/minecraft/network/protocol/Packet;)V +MD: net/minecraft/server/level/ChunkHolder/m_288223_ (Ljava/util/List;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;)V net/minecraft/server/level/ChunkHolder/broadcastBlockEntity (Ljava/util/List;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/server/level/ChunkHolder/m_288224_ (Ljava/util/List;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V net/minecraft/server/level/ChunkHolder/broadcastBlockEntityIfNeeded (Ljava/util/List;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V +MD: net/minecraft/server/level/ChunkHolder$1/ (Lnet/minecraft/server/level/ChunkHolder;)V net/minecraft/server/level/ChunkHolder$1/ (Lnet/minecraft/server/level/ChunkHolder;)V +MD: net/minecraft/server/level/ChunkHolder$1/toString ()Ljava/lang/String; net/minecraft/server/level/ChunkHolder$1/toString ()Ljava/lang/String; +MD: net/minecraft/server/level/ChunkHolder$ChunkLoadingFailure/ ()V net/minecraft/server/level/ChunkHolder$ChunkLoadingFailure/ ()V +MD: net/minecraft/server/level/ChunkHolder$ChunkLoadingFailure$1/ ()V net/minecraft/server/level/ChunkHolder$ChunkLoadingFailure$1/ ()V +MD: net/minecraft/server/level/ChunkHolder$ChunkLoadingFailure$1/toString ()Ljava/lang/String; net/minecraft/server/level/ChunkHolder$ChunkLoadingFailure$1/toString ()Ljava/lang/String; +MD: net/minecraft/server/level/ChunkHolder$ChunkSaveDebug/ (Ljava/lang/Thread;Ljava/util/concurrent/CompletableFuture;Ljava/lang/String;)V net/minecraft/server/level/ChunkHolder$ChunkSaveDebug/ (Ljava/lang/Thread;Ljava/util/concurrent/CompletableFuture;Ljava/lang/String;)V +MD: net/minecraft/server/level/ChunkHolder$LevelChangeListener/m_6250_ (Lnet/minecraft/world/level/ChunkPos;Ljava/util/function/IntSupplier;ILjava/util/function/IntConsumer;)V net/minecraft/server/level/ChunkHolder$LevelChangeListener/onLevelChange (Lnet/minecraft/world/level/ChunkPos;Ljava/util/function/IntSupplier;ILjava/util/function/IntConsumer;)V +MD: net/minecraft/server/level/ChunkHolder$PlayerProvider/m_183262_ (Lnet/minecraft/world/level/ChunkPos;Z)Ljava/util/List; net/minecraft/server/level/ChunkHolder$PlayerProvider/getPlayers (Lnet/minecraft/world/level/ChunkPos;Z)Ljava/util/List; +MD: net/minecraft/server/level/ChunkLevel/ ()V net/minecraft/server/level/ChunkLevel/ ()V +MD: net/minecraft/server/level/ChunkLevel/ ()V net/minecraft/server/level/ChunkLevel/ ()V +MD: net/minecraft/server/level/ChunkLevel/m_287141_ (Lnet/minecraft/world/level/chunk/ChunkStatus;)I net/minecraft/server/level/ChunkLevel/byStatus (Lnet/minecraft/world/level/chunk/ChunkStatus;)I +MD: net/minecraft/server/level/ChunkLevel/m_287154_ (Lnet/minecraft/server/level/FullChunkStatus;)I net/minecraft/server/level/ChunkLevel/byStatus (Lnet/minecraft/server/level/FullChunkStatus;)I +MD: net/minecraft/server/level/ChunkLevel/m_287155_ (I)Z net/minecraft/server/level/ChunkLevel/isEntityTicking (I)Z +MD: net/minecraft/server/level/ChunkLevel/m_287158_ (I)Lnet/minecraft/world/level/chunk/ChunkStatus; net/minecraft/server/level/ChunkLevel/generationStatus (I)Lnet/minecraft/world/level/chunk/ChunkStatus; +MD: net/minecraft/server/level/ChunkLevel/m_287217_ (I)Z net/minecraft/server/level/ChunkLevel/isLoaded (I)Z +MD: net/minecraft/server/level/ChunkLevel/m_287264_ (I)Lnet/minecraft/server/level/FullChunkStatus; net/minecraft/server/level/ChunkLevel/fullStatus (I)Lnet/minecraft/server/level/FullChunkStatus; +MD: net/minecraft/server/level/ChunkLevel/m_287283_ (I)Z net/minecraft/server/level/ChunkLevel/isBlockTicking (I)Z +MD: net/minecraft/server/level/ChunkLevel$1/ ()V net/minecraft/server/level/ChunkLevel$1/ ()V +MD: net/minecraft/server/level/ChunkMap/ ()V net/minecraft/server/level/ChunkMap/ ()V +MD: net/minecraft/server/level/ChunkMap/ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/level/storage/LevelStorageSource$LevelStorageAccess;Lcom/mojang/datafixers/DataFixer;Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager;Ljava/util/concurrent/Executor;Lnet/minecraft/util/thread/BlockableEventLoop;Lnet/minecraft/world/level/chunk/LightChunkGetter;Lnet/minecraft/world/level/chunk/ChunkGenerator;Lnet/minecraft/server/level/progress/ChunkProgressListener;Lnet/minecraft/world/level/entity/ChunkStatusUpdateListener;Ljava/util/function/Supplier;IZ)V net/minecraft/server/level/ChunkMap/ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/level/storage/LevelStorageSource$LevelStorageAccess;Lcom/mojang/datafixers/DataFixer;Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager;Ljava/util/concurrent/Executor;Lnet/minecraft/util/thread/BlockableEventLoop;Lnet/minecraft/world/level/chunk/LightChunkGetter;Lnet/minecraft/world/level/chunk/ChunkGenerator;Lnet/minecraft/server/level/progress/ChunkProgressListener;Lnet/minecraft/world/level/entity/ChunkStatusUpdateListener;Ljava/util/function/Supplier;IZ)V +MD: net/minecraft/server/level/ChunkMap/close ()V net/minecraft/server/level/ChunkMap/close ()V +MD: net/minecraft/server/level/ChunkMap/m_140166_ ()Lnet/minecraft/server/level/ThreadedLevelLightEngine; net/minecraft/server/level/ChunkMap/getLightEngine ()Lnet/minecraft/server/level/ThreadedLevelLightEngine; +MD: net/minecraft/server/level/ChunkMap/m_140167_ (I)V net/minecraft/server/level/ChunkMap/setViewDistance (I)V +MD: net/minecraft/server/level/ChunkMap/m_140174_ (J)Lnet/minecraft/server/level/ChunkHolder; net/minecraft/server/level/ChunkMap/getUpdatingChunkIfPresent (J)Lnet/minecraft/server/level/ChunkHolder; +MD: net/minecraft/server/level/ChunkMap/m_140176_ (JILnet/minecraft/server/level/ChunkHolder;I)Lnet/minecraft/server/level/ChunkHolder; net/minecraft/server/level/ChunkMap/updateChunkScheduling (JILnet/minecraft/server/level/ChunkHolder;I)Lnet/minecraft/server/level/ChunkHolder; +MD: net/minecraft/server/level/ChunkMap/m_140181_ (JLnet/minecraft/server/level/ChunkHolder;)V net/minecraft/server/level/ChunkMap/scheduleUnload (JLnet/minecraft/server/level/ChunkHolder;)V +MD: net/minecraft/server/level/ChunkMap/m_140184_ (Lnet/minecraft/server/level/ServerPlayer;)V net/minecraft/server/level/ChunkMap/move (Lnet/minecraft/server/level/ServerPlayer;)V +MD: net/minecraft/server/level/ChunkMap/m_140192_ (Lnet/minecraft/server/level/ServerPlayer;Z)V net/minecraft/server/level/ChunkMap/updatePlayerStatus (Lnet/minecraft/server/level/ServerPlayer;Z)V +MD: net/minecraft/server/level/ChunkMap/m_140199_ (Lnet/minecraft/world/entity/Entity;)V net/minecraft/server/level/ChunkMap/addEntity (Lnet/minecraft/world/entity/Entity;)V +MD: net/minecraft/server/level/ChunkMap/m_140201_ (Lnet/minecraft/world/entity/Entity;Lnet/minecraft/network/protocol/Packet;)V net/minecraft/server/level/ChunkMap/broadcast (Lnet/minecraft/world/entity/Entity;Lnet/minecraft/network/protocol/Packet;)V +MD: net/minecraft/server/level/ChunkMap/m_140204_ (Lnet/minecraft/world/level/ChunkPos;)Ljava/lang/String; net/minecraft/server/level/ChunkMap/getChunkDebugData (Lnet/minecraft/world/level/ChunkPos;)Ljava/lang/String; +MD: net/minecraft/server/level/ChunkMap/m_140226_ (Lnet/minecraft/world/level/ChunkPos;Lnet/minecraft/world/entity/Entity;)D net/minecraft/server/level/ChunkMap/euclideanDistanceSquared (Lnet/minecraft/world/level/ChunkPos;Lnet/minecraft/world/entity/Entity;)D +MD: net/minecraft/server/level/ChunkMap/m_140229_ (Lnet/minecraft/world/level/ChunkPos;Lnet/minecraft/world/level/chunk/ChunkStatus$ChunkType;)B net/minecraft/server/level/ChunkMap/markPosition (Lnet/minecraft/world/level/ChunkPos;Lnet/minecraft/world/level/chunk/ChunkStatus$ChunkType;)B +MD: net/minecraft/server/level/ChunkMap/m_140258_ (Lnet/minecraft/world/level/chunk/ChunkAccess;)Z net/minecraft/server/level/ChunkMap/save (Lnet/minecraft/world/level/chunk/ChunkAccess;)Z +MD: net/minecraft/server/level/ChunkMap/m_140262_ (Lnet/minecraft/world/level/chunk/ChunkStatus;I)Lnet/minecraft/world/level/chunk/ChunkStatus; net/minecraft/server/level/ChunkMap/getDependencyStatus (Lnet/minecraft/world/level/chunk/ChunkStatus;I)Lnet/minecraft/world/level/chunk/ChunkStatus; +MD: net/minecraft/server/level/ChunkMap/m_140274_ (Ljava/io/Writer;)V net/minecraft/server/level/ChunkMap/dumpChunks (Ljava/io/Writer;)V +MD: net/minecraft/server/level/ChunkMap/m_140278_ (Ljava/util/concurrent/CompletableFuture;)Ljava/lang/String; net/minecraft/server/level/ChunkMap/printFuture (Ljava/util/concurrent/CompletableFuture;)Ljava/lang/String; +MD: net/minecraft/server/level/ChunkMap/m_140280_ (Ljava/util/function/BooleanSupplier;)V net/minecraft/server/level/ChunkMap/tick (Ljava/util/function/BooleanSupplier;)V +MD: net/minecraft/server/level/ChunkMap/m_140292_ (Lnet/minecraft/server/level/ChunkHolder;Lnet/minecraft/world/level/chunk/ChunkStatus;)Ljava/util/concurrent/CompletableFuture; net/minecraft/server/level/ChunkMap/schedule (Lnet/minecraft/server/level/ChunkHolder;Lnet/minecraft/world/level/chunk/ChunkStatus;)Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/server/level/ChunkMap/m_140318_ (Z)V net/minecraft/server/level/ChunkMap/saveAllChunks (Z)V +MD: net/minecraft/server/level/ChunkMap/m_140324_ ()Z net/minecraft/server/level/ChunkMap/promoteChunkMap ()Z +MD: net/minecraft/server/level/ChunkMap/m_140327_ (J)Lnet/minecraft/server/level/ChunkHolder; net/minecraft/server/level/ChunkMap/getVisibleChunkIfPresent (J)Lnet/minecraft/server/level/ChunkHolder; +MD: net/minecraft/server/level/ChunkMap/m_140329_ (Lnet/minecraft/server/level/ServerPlayer;)Z net/minecraft/server/level/ChunkMap/skipPlayer (Lnet/minecraft/server/level/ServerPlayer;)Z +MD: net/minecraft/server/level/ChunkMap/m_140331_ (Lnet/minecraft/world/entity/Entity;)V net/minecraft/server/level/ChunkMap/removeEntity (Lnet/minecraft/world/entity/Entity;)V +MD: net/minecraft/server/level/ChunkMap/m_140333_ (Lnet/minecraft/world/entity/Entity;Lnet/minecraft/network/protocol/Packet;)V net/minecraft/server/level/ChunkMap/broadcastAndSend (Lnet/minecraft/world/entity/Entity;Lnet/minecraft/network/protocol/Packet;)V +MD: net/minecraft/server/level/ChunkMap/m_140353_ (Ljava/util/function/BooleanSupplier;)V net/minecraft/server/level/ChunkMap/processUnloads (Ljava/util/function/BooleanSupplier;)V +MD: net/minecraft/server/level/ChunkMap/m_140360_ (Lnet/minecraft/server/level/ChunkHolder;Lnet/minecraft/world/level/chunk/ChunkStatus;)Ljava/util/concurrent/CompletableFuture; net/minecraft/server/level/ChunkMap/scheduleChunkGeneration (Lnet/minecraft/server/level/ChunkHolder;Lnet/minecraft/world/level/chunk/ChunkStatus;)Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/server/level/ChunkMap/m_140368_ ()I net/minecraft/server/level/ChunkMap/getTickingGenerated ()I +MD: net/minecraft/server/level/ChunkMap/m_140371_ (J)Ljava/util/function/IntSupplier; net/minecraft/server/level/ChunkMap/getChunkQueueLevel (J)Ljava/util/function/IntSupplier; +MD: net/minecraft/server/level/ChunkMap/m_140373_ (Lnet/minecraft/server/level/ServerPlayer;)Lnet/minecraft/core/SectionPos; net/minecraft/server/level/ChunkMap/updatePlayerPos (Lnet/minecraft/server/level/ServerPlayer;)Lnet/minecraft/core/SectionPos; +MD: net/minecraft/server/level/ChunkMap/m_140375_ (Lnet/minecraft/world/level/ChunkPos;)V net/minecraft/server/level/ChunkMap/releaseLightTicket (Lnet/minecraft/world/level/ChunkPos;)V +MD: net/minecraft/server/level/ChunkMap/m_140383_ (Lnet/minecraft/server/level/ChunkHolder;)Ljava/util/concurrent/CompletableFuture; net/minecraft/server/level/ChunkMap/protoChunkToFullChunk (Lnet/minecraft/server/level/ChunkHolder;)Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/server/level/ChunkMap/m_140394_ ()I net/minecraft/server/level/ChunkMap/size ()I +MD: net/minecraft/server/level/ChunkMap/m_140416_ ()Ljava/lang/Iterable; net/minecraft/server/level/ChunkMap/getChunks ()Ljava/lang/Iterable; +MD: net/minecraft/server/level/ChunkMap/m_140417_ (Lnet/minecraft/world/level/ChunkPos;)Ljava/util/concurrent/CompletableFuture; net/minecraft/server/level/ChunkMap/scheduleChunkLoad (Lnet/minecraft/world/level/ChunkPos;)Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/server/level/ChunkMap/m_140421_ ()V net/minecraft/server/level/ChunkMap/tick ()V +MD: net/minecraft/server/level/ChunkMap/m_140422_ (Lnet/minecraft/world/level/ChunkPos;)V net/minecraft/server/level/ChunkMap/markPositionReplaceable (Lnet/minecraft/world/level/ChunkPos;)V +MD: net/minecraft/server/level/ChunkMap/m_140424_ ()Lnet/minecraft/world/entity/ai/village/poi/PoiManager; net/minecraft/server/level/ChunkMap/getPoiManager ()Lnet/minecraft/world/entity/ai/village/poi/PoiManager; +MD: net/minecraft/server/level/ChunkMap/m_140425_ (Lnet/minecraft/world/level/ChunkPos;)Z net/minecraft/server/level/ChunkMap/isExistingChunkFull (Lnet/minecraft/world/level/ChunkPos;)Z +MD: net/minecraft/server/level/ChunkMap/m_143053_ (Lnet/minecraft/server/level/ChunkHolder;)Ljava/util/concurrent/CompletableFuture; net/minecraft/server/level/ChunkMap/prepareTickingChunk (Lnet/minecraft/server/level/ChunkHolder;)Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/server/level/ChunkMap/m_143064_ (Lnet/minecraft/server/level/ServerLevel;Ljava/util/List;)V net/minecraft/server/level/ChunkMap/postLoadProtoChunk (Lnet/minecraft/server/level/ServerLevel;Ljava/util/List;)V +MD: net/minecraft/server/level/ChunkMap/m_143109_ (Lnet/minecraft/server/level/ChunkHolder;)Ljava/util/concurrent/CompletableFuture; net/minecraft/server/level/ChunkMap/prepareAccessibleChunk (Lnet/minecraft/server/level/ChunkHolder;)Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/server/level/ChunkMap/m_143145_ ()Lnet/minecraft/server/level/DistanceManager; net/minecraft/server/level/ChunkMap/getDistanceManager ()Lnet/minecraft/server/level/DistanceManager; +MD: net/minecraft/server/level/ChunkMap/m_182285_ ()Ljava/lang/String; net/minecraft/server/level/ChunkMap/getStorageName ()Ljava/lang/String; +MD: net/minecraft/server/level/ChunkMap/m_183262_ (Lnet/minecraft/world/level/ChunkPos;Z)Ljava/util/List; net/minecraft/server/level/ChunkMap/getPlayers (Lnet/minecraft/world/level/ChunkPos;Z)Ljava/util/List; +MD: net/minecraft/server/level/ChunkMap/m_183719_ ()Lnet/minecraft/world/level/chunk/ChunkGenerator; net/minecraft/server/level/ChunkMap/generator ()Lnet/minecraft/world/level/chunk/ChunkGenerator; +MD: net/minecraft/server/level/ChunkMap/m_183726_ (IIILjava/util/List;)Lcom/mojang/datafixers/util/Either; net/minecraft/server/level/ChunkMap/lambda$getChunkRangeFuture$4 (IIILjava/util/List;)Lcom/mojang/datafixers/util/Either; +MD: net/minecraft/server/level/ChunkMap/m_183751_ (Lnet/minecraft/server/level/ServerPlayer;Lnet/minecraft/world/level/ChunkPos;)Z net/minecraft/server/level/ChunkMap/playerIsCloseEnoughForSpawning (Lnet/minecraft/server/level/ServerPlayer;Lnet/minecraft/world/level/ChunkPos;)Z +MD: net/minecraft/server/level/ChunkMap/m_183754_ (Lnet/minecraft/server/level/ServerPlayer;Lnet/minecraft/world/level/ChunkPos;Lorg/apache/commons/lang3/mutable/MutableObject;ZZ)V net/minecraft/server/level/ChunkMap/updateChunkTracking (Lnet/minecraft/server/level/ServerPlayer;Lnet/minecraft/world/level/ChunkPos;Lorg/apache/commons/lang3/mutable/MutableObject;ZZ)V +MD: net/minecraft/server/level/ChunkMap/m_183760_ (Lnet/minecraft/server/level/ServerPlayer;Lorg/apache/commons/lang3/mutable/MutableObject;Lnet/minecraft/world/level/chunk/LevelChunk;)V net/minecraft/server/level/ChunkMap/playerLoadedChunk (Lnet/minecraft/server/level/ServerPlayer;Lorg/apache/commons/lang3/mutable/MutableObject;Lnet/minecraft/world/level/chunk/LevelChunk;)V +MD: net/minecraft/server/level/ChunkMap/m_183803_ (Lcom/google/gson/JsonElement;)Lcom/mojang/serialization/DataResult; net/minecraft/server/level/ChunkMap/lambda$debugReloadGenerator$0 (Lcom/google/gson/JsonElement;)Lcom/mojang/serialization/DataResult; +MD: net/minecraft/server/level/ChunkMap/m_183807_ (Lnet/minecraft/world/level/chunk/ChunkGenerator;)V net/minecraft/server/level/ChunkMap/lambda$debugReloadGenerator$1 (Lnet/minecraft/world/level/chunk/ChunkGenerator;)V +MD: net/minecraft/server/level/ChunkMap/m_183825_ ()V net/minecraft/server/level/ChunkMap/debugReloadGenerator ()V +MD: net/minecraft/server/level/ChunkMap/m_183828_ (IIIII)Z net/minecraft/server/level/ChunkMap/isChunkOnRangeBorder (IIIII)Z +MD: net/minecraft/server/level/ChunkMap/m_183872_ (J)I net/minecraft/server/level/ChunkMap/lambda$getChunkQueueLevel$2 (J)I +MD: net/minecraft/server/level/ChunkMap/m_183879_ (Lnet/minecraft/world/level/ChunkPos;)Z net/minecraft/server/level/ChunkMap/anyPlayerCloseEnoughForSpawning (Lnet/minecraft/world/level/ChunkPos;)Z +MD: net/minecraft/server/level/ChunkMap/m_183888_ (Lnet/minecraft/world/level/ChunkPos;)Ljava/util/List; net/minecraft/server/level/ChunkMap/getPlayersCloseForSpawning (Lnet/minecraft/world/level/ChunkPos;)Ljava/util/List; +MD: net/minecraft/server/level/ChunkMap/m_198874_ (Lnet/minecraft/server/level/ChunkHolder;)Z net/minecraft/server/level/ChunkMap/saveChunkIfNeeded (Lnet/minecraft/server/level/ChunkHolder;)Z +MD: net/minecraft/server/level/ChunkMap/m_200878_ (IIIII)Z net/minecraft/server/level/ChunkMap/isChunkInRange (IIIII)Z +MD: net/minecraft/server/level/ChunkMap/m_201907_ ()Z net/minecraft/server/level/ChunkMap/hasWork ()Z +MD: net/minecraft/server/level/ChunkMap/m_202994_ (Lnet/minecraft/server/level/ChunkHolder;Ljava/lang/Void;Ljava/lang/Throwable;)V net/minecraft/server/level/ChunkMap/lambda$scheduleUnload$15 (Lnet/minecraft/server/level/ChunkHolder;Ljava/lang/Void;Ljava/lang/Throwable;)V +MD: net/minecraft/server/level/ChunkMap/m_202998_ (Lnet/minecraft/server/level/ChunkHolder;Ljava/util/concurrent/CompletableFuture;JLnet/minecraft/world/level/chunk/ChunkAccess;)V net/minecraft/server/level/ChunkMap/lambda$scheduleUnload$14 (Lnet/minecraft/server/level/ChunkHolder;Ljava/util/concurrent/CompletableFuture;JLnet/minecraft/world/level/chunk/ChunkAccess;)V +MD: net/minecraft/server/level/ChunkMap/m_203049_ (Lorg/apache/commons/lang3/mutable/MutableBoolean;Lnet/minecraft/world/level/chunk/ChunkAccess;)V net/minecraft/server/level/ChunkMap/lambda$saveAllChunks$12 (Lorg/apache/commons/lang3/mutable/MutableBoolean;Lnet/minecraft/world/level/chunk/ChunkAccess;)V +MD: net/minecraft/server/level/ChunkMap/m_203077_ (I)Lnet/minecraft/world/level/chunk/ChunkStatus; net/minecraft/server/level/ChunkMap/lambda$prepareEntityTickingChunk$7 (I)Lnet/minecraft/world/level/chunk/ChunkStatus; +MD: net/minecraft/server/level/ChunkMap/m_203079_ (Lnet/minecraft/server/level/ChunkHolder;Lnet/minecraft/world/level/chunk/ChunkAccess;)Ljava/util/concurrent/CompletableFuture; net/minecraft/server/level/ChunkMap/lambda$schedule$16 (Lnet/minecraft/server/level/ChunkHolder;Lnet/minecraft/world/level/chunk/ChunkAccess;)Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/server/level/ChunkMap/m_203085_ (Lcom/mojang/datafixers/util/Either;)Lcom/mojang/datafixers/util/Either; net/minecraft/server/level/ChunkMap/lambda$prepareAccessibleChunk$49 (Lcom/mojang/datafixers/util/Either;)Lcom/mojang/datafixers/util/Either; +MD: net/minecraft/server/level/ChunkMap/m_203087_ (Lnet/minecraft/world/level/chunk/ChunkAccess;)Z net/minecraft/server/level/ChunkMap/lambda$saveAllChunks$11 (Lnet/minecraft/world/level/chunk/ChunkAccess;)Z +MD: net/minecraft/server/level/ChunkMap/m_203091_ (Ljava/util/List;)Lnet/minecraft/world/level/chunk/LevelChunk; net/minecraft/server/level/ChunkMap/lambda$prepareEntityTickingChunk$8 (Ljava/util/List;)Lnet/minecraft/world/level/chunk/LevelChunk; +MD: net/minecraft/server/level/ChunkMap/m_203101_ (Lnet/minecraft/server/level/ChunkHolder;)Lnet/minecraft/world/level/chunk/ChunkAccess; net/minecraft/server/level/ChunkMap/lambda$saveAllChunks$10 (Lnet/minecraft/server/level/ChunkHolder;)Lnet/minecraft/world/level/chunk/ChunkAccess; +MD: net/minecraft/server/level/ChunkMap/m_203109_ ()Z net/minecraft/server/level/ChunkMap/lambda$saveAllChunks$13 ()Z +MD: net/minecraft/server/level/ChunkMap/m_203751_ (Ljava/lang/IllegalStateException;Ljava/lang/String;)Lnet/minecraft/ReportedException; net/minecraft/server/level/ChunkMap/debugFuturesAndCreateReportedException (Ljava/lang/IllegalStateException;Ljava/lang/String;)Lnet/minecraft/ReportedException; +MD: net/minecraft/server/level/ChunkMap/m_203754_ (Ljava/lang/StringBuilder;Lnet/minecraft/server/level/ChunkHolder;)V net/minecraft/server/level/ChunkMap/lambda$debugFuturesAndCreateReportedException$6 (Ljava/lang/StringBuilder;Lnet/minecraft/server/level/ChunkHolder;)V +MD: net/minecraft/server/level/ChunkMap/m_203757_ (Ljava/lang/StringBuilder;Lnet/minecraft/server/level/ChunkHolder;Lcom/mojang/datafixers/util/Pair;)V net/minecraft/server/level/ChunkMap/lambda$debugFuturesAndCreateReportedException$5 (Ljava/lang/StringBuilder;Lnet/minecraft/server/level/ChunkHolder;Lcom/mojang/datafixers/util/Pair;)V +MD: net/minecraft/server/level/ChunkMap/m_212877_ (Lcom/mojang/datafixers/util/Either;)Lcom/mojang/datafixers/util/Either; net/minecraft/server/level/ChunkMap/lambda$prepareEntityTickingChunk$9 (Lcom/mojang/datafixers/util/Either;)Lcom/mojang/datafixers/util/Either; +MD: net/minecraft/server/level/ChunkMap/m_214849_ (Lnet/minecraft/server/level/ChunkHolder$ChunkLoadingFailure;)Ljava/lang/String; net/minecraft/server/level/ChunkMap/lambda$printFuture$57 (Lnet/minecraft/server/level/ChunkHolder$ChunkLoadingFailure;)Ljava/lang/String; +MD: net/minecraft/server/level/ChunkMap/m_214854_ (Lnet/minecraft/server/level/ChunkHolder;Lnet/minecraft/world/level/chunk/ChunkAccess;)Lnet/minecraft/world/level/chunk/ChunkAccess; net/minecraft/server/level/ChunkMap/lambda$protoChunkToFullChunk$34 (Lnet/minecraft/server/level/ChunkHolder;Lnet/minecraft/world/level/chunk/ChunkAccess;)Lnet/minecraft/world/level/chunk/ChunkAccess; +MD: net/minecraft/server/level/ChunkMap/m_214857_ (Lnet/minecraft/server/level/ChunkHolder;Ljava/lang/Runnable;)V net/minecraft/server/level/ChunkMap/lambda$prepareAccessibleChunk$50 (Lnet/minecraft/server/level/ChunkHolder;Ljava/lang/Runnable;)V +MD: net/minecraft/server/level/ChunkMap/m_214860_ (Lnet/minecraft/world/level/ChunkPos;ILorg/apache/commons/lang3/mutable/MutableObject;Lnet/minecraft/server/level/ServerPlayer;)V net/minecraft/server/level/ChunkMap/lambda$setViewDistance$51 (Lnet/minecraft/world/level/ChunkPos;ILorg/apache/commons/lang3/mutable/MutableObject;Lnet/minecraft/server/level/ServerPlayer;)V +MD: net/minecraft/server/level/ChunkMap/m_214865_ (Lnet/minecraft/world/level/ChunkPos;Lnet/minecraft/server/level/ChunkHolder$ChunkLoadingFailure;)Ljava/util/concurrent/CompletableFuture; net/minecraft/server/level/ChunkMap/lambda$scheduleChunkGeneration$28 (Lnet/minecraft/world/level/ChunkPos;Lnet/minecraft/server/level/ChunkHolder$ChunkLoadingFailure;)Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/server/level/ChunkMap/m_214868_ (Lnet/minecraft/world/level/ChunkPos;Lnet/minecraft/server/level/ChunkHolder;Lnet/minecraft/world/level/chunk/ChunkStatus;Ljava/util/concurrent/Executor;Lcom/mojang/datafixers/util/Either;)Ljava/util/concurrent/CompletionStage; net/minecraft/server/level/ChunkMap/lambda$scheduleChunkGeneration$29 (Lnet/minecraft/world/level/ChunkPos;Lnet/minecraft/server/level/ChunkHolder;Lnet/minecraft/world/level/chunk/ChunkStatus;Ljava/util/concurrent/Executor;Lcom/mojang/datafixers/util/Either;)Ljava/util/concurrent/CompletionStage; +MD: net/minecraft/server/level/ChunkMap/m_214880_ (Lnet/minecraft/server/level/ChunkHolder;Lcom/mojang/datafixers/util/Either;)V net/minecraft/server/level/ChunkMap/lambda$prepareTickingChunk$46 (Lnet/minecraft/server/level/ChunkHolder;Lcom/mojang/datafixers/util/Either;)V +MD: net/minecraft/server/level/ChunkMap/m_214886_ (Lnet/minecraft/world/level/ChunkPos;Ljava/lang/Throwable;)Lcom/mojang/datafixers/util/Either; net/minecraft/server/level/ChunkMap/lambda$scheduleChunkLoad$20 (Lnet/minecraft/world/level/ChunkPos;Ljava/lang/Throwable;)Lcom/mojang/datafixers/util/Either; +MD: net/minecraft/server/level/ChunkMap/m_214892_ (Lcom/mojang/datafixers/util/Either;)Lcom/mojang/datafixers/util/Either; net/minecraft/server/level/ChunkMap/lambda$getChunkRangeFuture$3 (Lcom/mojang/datafixers/util/Either;)Lcom/mojang/datafixers/util/Either; +MD: net/minecraft/server/level/ChunkMap/m_214896_ (Lnet/minecraft/world/level/chunk/LevelChunk;)Ljava/lang/String; net/minecraft/server/level/ChunkMap/lambda$printFuture$56 (Lnet/minecraft/world/level/chunk/LevelChunk;)Ljava/lang/String; +MD: net/minecraft/server/level/ChunkMap/m_214898_ (Lnet/minecraft/world/level/chunk/ProtoChunk;Lnet/minecraft/world/level/chunk/LevelChunk;)V net/minecraft/server/level/ChunkMap/lambda$protoChunkToFullChunk$32 (Lnet/minecraft/world/level/chunk/ProtoChunk;Lnet/minecraft/world/level/chunk/LevelChunk;)V +MD: net/minecraft/server/level/ChunkMap/m_214901_ (Ljava/lang/Throwable;Lnet/minecraft/world/level/ChunkPos;)Lcom/mojang/datafixers/util/Either; net/minecraft/server/level/ChunkMap/handleChunkLoadFailure (Ljava/lang/Throwable;Lnet/minecraft/world/level/ChunkPos;)Lcom/mojang/datafixers/util/Either; +MD: net/minecraft/server/level/ChunkMap/m_214904_ (Ljava/util/List;)Lnet/minecraft/world/level/chunk/LevelChunk; net/minecraft/server/level/ChunkMap/lambda$prepareAccessibleChunk$48 (Ljava/util/List;)Lnet/minecraft/world/level/chunk/LevelChunk; +MD: net/minecraft/server/level/ChunkMap/m_214906_ (Ljava/util/Optional;)Ljava/util/Optional; net/minecraft/server/level/ChunkMap/lambda$readChunk$58 (Ljava/util/Optional;)Ljava/util/Optional; +MD: net/minecraft/server/level/ChunkMap/m_214908_ (Lorg/apache/commons/lang3/mutable/MutableObject;Lnet/minecraft/world/level/chunk/LevelChunk;Lnet/minecraft/server/level/ServerPlayer;)V net/minecraft/server/level/ChunkMap/lambda$prepareTickingChunk$44 (Lorg/apache/commons/lang3/mutable/MutableObject;Lnet/minecraft/world/level/chunk/LevelChunk;Lnet/minecraft/server/level/ServerPlayer;)V +MD: net/minecraft/server/level/ChunkMap/m_214912_ (Lnet/minecraft/CrashReport;)V net/minecraft/server/level/ChunkMap/lambda$scheduleChunkGeneration$26 (Lnet/minecraft/CrashReport;)V +MD: net/minecraft/server/level/ChunkMap/m_214914_ ()Lnet/minecraft/world/level/levelgen/RandomState; net/minecraft/server/level/ChunkMap/randomState ()Lnet/minecraft/world/level/levelgen/RandomState; +MD: net/minecraft/server/level/ChunkMap/m_214915_ (I)Lnet/minecraft/world/level/chunk/ChunkStatus; net/minecraft/server/level/ChunkMap/lambda$prepareTickingChunk$37 (I)Lnet/minecraft/world/level/chunk/ChunkStatus; +MD: net/minecraft/server/level/ChunkMap/m_214917_ (Lnet/minecraft/server/level/ChunkHolder;Lnet/minecraft/world/level/chunk/ChunkAccess;)Ljava/util/concurrent/CompletableFuture; net/minecraft/server/level/ChunkMap/lambda$scheduleChunkGeneration$24 (Lnet/minecraft/server/level/ChunkHolder;Lnet/minecraft/world/level/chunk/ChunkAccess;)Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/server/level/ChunkMap/m_214920_ (Lnet/minecraft/server/level/ChunkHolder;Ljava/lang/Runnable;)V net/minecraft/server/level/ChunkMap/lambda$prepareTickingChunk$47 (Lnet/minecraft/server/level/ChunkHolder;Ljava/lang/Runnable;)V +MD: net/minecraft/server/level/ChunkMap/m_214923_ (Lnet/minecraft/world/level/ChunkPos;Ljava/util/Optional;)Ljava/util/Optional; net/minecraft/server/level/ChunkMap/lambda$scheduleChunkLoad$18 (Lnet/minecraft/world/level/ChunkPos;Ljava/util/Optional;)Ljava/util/Optional; +MD: net/minecraft/server/level/ChunkMap/m_214926_ (Lnet/minecraft/world/level/ChunkPos;Lnet/minecraft/nbt/CompoundTag;)Z net/minecraft/server/level/ChunkMap/lambda$scheduleChunkLoad$17 (Lnet/minecraft/world/level/ChunkPos;Lnet/minecraft/nbt/CompoundTag;)Z +MD: net/minecraft/server/level/ChunkMap/m_214929_ (Lcom/mojang/datafixers/util/Either;)Lcom/mojang/datafixers/util/Either; net/minecraft/server/level/ChunkMap/lambda$prepareTickingChunk$42 (Lcom/mojang/datafixers/util/Either;)Lcom/mojang/datafixers/util/Either; +MD: net/minecraft/server/level/ChunkMap/m_214931_ (Lnet/minecraft/world/level/chunk/ChunkAccess;)Ljava/util/Optional; net/minecraft/server/level/ChunkMap/lambda$dumpChunks$52 (Lnet/minecraft/world/level/chunk/ChunkAccess;)Ljava/util/Optional; +MD: net/minecraft/server/level/ChunkMap/m_214933_ (Lnet/minecraft/world/level/chunk/ChunkStatus;I)Lnet/minecraft/world/level/chunk/ChunkStatus; net/minecraft/server/level/ChunkMap/lambda$scheduleChunkGeneration$21 (Lnet/minecraft/world/level/chunk/ChunkStatus;I)Lnet/minecraft/world/level/chunk/ChunkStatus; +MD: net/minecraft/server/level/ChunkMap/m_214936_ (Lnet/minecraft/world/level/chunk/LevelChunk;)Ljava/lang/Integer; net/minecraft/server/level/ChunkMap/lambda$dumpChunks$55 (Lnet/minecraft/world/level/chunk/LevelChunk;)Ljava/lang/Integer; +MD: net/minecraft/server/level/ChunkMap/m_214938_ (Ljava/util/List;)Lnet/minecraft/world/level/chunk/LevelChunk; net/minecraft/server/level/ChunkMap/lambda$prepareTickingChunk$38 (Ljava/util/List;)Lnet/minecraft/world/level/chunk/LevelChunk; +MD: net/minecraft/server/level/ChunkMap/m_214940_ (Lnet/minecraft/nbt/CompoundTag;)Z net/minecraft/server/level/ChunkMap/isChunkDataValid (Lnet/minecraft/nbt/CompoundTag;)Z +MD: net/minecraft/server/level/ChunkMap/m_214942_ (Lnet/minecraft/server/level/ChunkHolder;Ljava/lang/Runnable;)V net/minecraft/server/level/ChunkMap/lambda$prepareTickingChunk$40 (Lnet/minecraft/server/level/ChunkHolder;Ljava/lang/Runnable;)V +MD: net/minecraft/server/level/ChunkMap/m_214945_ (Lnet/minecraft/world/level/chunk/LevelChunk;)Ljava/lang/Integer; net/minecraft/server/level/ChunkMap/lambda$dumpChunks$54 (Lnet/minecraft/world/level/chunk/LevelChunk;)Ljava/lang/Integer; +MD: net/minecraft/server/level/ChunkMap/m_214947_ (Lnet/minecraft/nbt/CompoundTag;)Lnet/minecraft/nbt/CompoundTag; net/minecraft/server/level/ChunkMap/upgradeChunkTag (Lnet/minecraft/nbt/CompoundTag;)Lnet/minecraft/nbt/CompoundTag; +MD: net/minecraft/server/level/ChunkMap/m_214949_ (Lnet/minecraft/server/level/ChunkHolder;Ljava/lang/Runnable;)V net/minecraft/server/level/ChunkMap/lambda$protoChunkToFullChunk$36 (Lnet/minecraft/server/level/ChunkHolder;Ljava/lang/Runnable;)V +MD: net/minecraft/server/level/ChunkMap/m_214952_ (Lnet/minecraft/world/level/chunk/LevelChunk;)Ljava/lang/Integer; net/minecraft/server/level/ChunkMap/lambda$dumpChunks$53 (Lnet/minecraft/world/level/chunk/LevelChunk;)Ljava/lang/Integer; +MD: net/minecraft/server/level/ChunkMap/m_214956_ (Lnet/minecraft/server/level/ChunkHolder;Ljava/lang/Runnable;)V net/minecraft/server/level/ChunkMap/lambda$scheduleChunkGeneration$23 (Lnet/minecraft/server/level/ChunkHolder;Ljava/lang/Runnable;)V +MD: net/minecraft/server/level/ChunkMap/m_214959_ (Lnet/minecraft/world/level/chunk/LevelChunk;)V net/minecraft/server/level/ChunkMap/lambda$prepareTickingChunk$41 (Lnet/minecraft/world/level/chunk/LevelChunk;)V +MD: net/minecraft/server/level/ChunkMap/m_214961_ (Lnet/minecraft/world/level/ChunkPos;)Lnet/minecraft/world/level/chunk/ChunkAccess; net/minecraft/server/level/ChunkMap/createEmptyChunk (Lnet/minecraft/world/level/ChunkPos;)Lnet/minecraft/world/level/chunk/ChunkAccess; +MD: net/minecraft/server/level/ChunkMap/m_214963_ (Lnet/minecraft/world/level/ChunkPos;)Ljava/util/concurrent/CompletableFuture; net/minecraft/server/level/ChunkMap/readChunk (Lnet/minecraft/world/level/ChunkPos;)Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/server/level/ChunkMap/m_214965_ (Lnet/minecraft/world/level/ChunkPos;)Ljava/lang/String; net/minecraft/server/level/ChunkMap/lambda$releaseLightTicket$31 (Lnet/minecraft/world/level/ChunkPos;)Ljava/lang/String; +MD: net/minecraft/server/level/ChunkMap/m_255435_ ()Lnet/minecraft/world/level/chunk/ChunkGeneratorStructureState; net/minecraft/server/level/ChunkMap/generatorState ()Lnet/minecraft/world/level/chunk/ChunkGeneratorStructureState; +MD: net/minecraft/server/level/ChunkMap/m_274108_ (Lnet/minecraft/server/level/ServerPlayer;)Ljava/util/List; net/minecraft/server/level/ChunkMap/lambda$resendBiomesForChunks$59 (Lnet/minecraft/server/level/ServerPlayer;)Ljava/util/List; +MD: net/minecraft/server/level/ChunkMap/m_274109_ (Lnet/minecraft/server/level/ServerPlayer;Ljava/util/List;)V net/minecraft/server/level/ChunkMap/lambda$resendBiomesForChunks$60 (Lnet/minecraft/server/level/ServerPlayer;Ljava/util/List;)V +MD: net/minecraft/server/level/ChunkMap/m_274524_ (Ljava/util/List;)V net/minecraft/server/level/ChunkMap/resendBiomesForChunks (Ljava/util/List;)V +MD: net/minecraft/server/level/ChunkMap/m_279889_ (Lcom/mojang/datafixers/util/Either;)Lcom/mojang/datafixers/util/Either; net/minecraft/server/level/ChunkMap/lambda$prepareTickingChunk$39 (Lcom/mojang/datafixers/util/Either;)Lcom/mojang/datafixers/util/Either; +MD: net/minecraft/server/level/ChunkMap/m_279890_ (Lnet/minecraft/server/level/ChunkHolder;Lnet/minecraft/world/level/chunk/ChunkAccess;)Ljava/util/concurrent/CompletableFuture; net/minecraft/server/level/ChunkMap/lambda$scheduleChunkGeneration$25 (Lnet/minecraft/server/level/ChunkHolder;Lnet/minecraft/world/level/chunk/ChunkAccess;)Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/server/level/ChunkMap/m_279891_ (Lnet/minecraft/world/level/ChunkPos;Lnet/minecraft/server/level/ChunkHolder;Lnet/minecraft/world/level/chunk/ChunkStatus;Ljava/util/concurrent/Executor;Ljava/util/List;)Ljava/util/concurrent/CompletableFuture; net/minecraft/server/level/ChunkMap/lambda$scheduleChunkGeneration$27 (Lnet/minecraft/world/level/ChunkPos;Lnet/minecraft/server/level/ChunkHolder;Lnet/minecraft/world/level/chunk/ChunkStatus;Ljava/util/concurrent/Executor;Ljava/util/List;)Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/server/level/ChunkMap/m_280208_ (Lnet/minecraft/server/level/ChunkHolder;)Ljava/util/concurrent/CompletableFuture; net/minecraft/server/level/ChunkMap/prepareEntityTickingChunk (Lnet/minecraft/server/level/ChunkHolder;)Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/server/level/ChunkMap/m_280541_ (Lnet/minecraft/server/level/ChunkHolder;ILjava/util/function/IntFunction;)Ljava/util/concurrent/CompletableFuture; net/minecraft/server/level/ChunkMap/getChunkRangeFuture (Lnet/minecraft/server/level/ChunkHolder;ILjava/util/function/IntFunction;)Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/server/level/ChunkMap/m_287044_ (Lnet/minecraft/server/level/ChunkHolder;Lcom/mojang/datafixers/util/Either;)Lcom/mojang/datafixers/util/Either; net/minecraft/server/level/ChunkMap/lambda$protoChunkToFullChunk$35 (Lnet/minecraft/server/level/ChunkHolder;Lcom/mojang/datafixers/util/Either;)Lcom/mojang/datafixers/util/Either; +MD: net/minecraft/server/level/ChunkMap/m_287045_ (Lcom/mojang/datafixers/util/Either;Ljava/lang/Throwable;)Ljava/lang/Object; net/minecraft/server/level/ChunkMap/lambda$prepareTickingChunk$43 (Lcom/mojang/datafixers/util/Either;Ljava/lang/Throwable;)Ljava/lang/Object; +MD: net/minecraft/server/level/ChunkMap/m_287046_ (Lnet/minecraft/world/level/ChunkPos;)V net/minecraft/server/level/ChunkMap/lambda$releaseLightTicket$30 (Lnet/minecraft/world/level/ChunkPos;)V +MD: net/minecraft/server/level/ChunkMap/m_287047_ (Lnet/minecraft/server/level/ChunkHolder;Lnet/minecraft/world/level/chunk/LevelChunk;)V net/minecraft/server/level/ChunkMap/lambda$prepareTickingChunk$45 (Lnet/minecraft/server/level/ChunkHolder;Lnet/minecraft/world/level/chunk/LevelChunk;)V +MD: net/minecraft/server/level/ChunkMap/m_287048_ (Lnet/minecraft/server/level/ChunkHolder;)Lnet/minecraft/server/level/FullChunkStatus; net/minecraft/server/level/ChunkMap/lambda$protoChunkToFullChunk$33 (Lnet/minecraft/server/level/ChunkHolder;)Lnet/minecraft/server/level/FullChunkStatus; +MD: net/minecraft/server/level/ChunkMap/m_287285_ (Lnet/minecraft/world/level/ChunkPos;Lnet/minecraft/server/level/FullChunkStatus;)V net/minecraft/server/level/ChunkMap/onFullChunkStatusChange (Lnet/minecraft/world/level/ChunkPos;Lnet/minecraft/server/level/FullChunkStatus;)V +MD: net/minecraft/server/level/ChunkMap/m_288112_ (Lnet/minecraft/world/level/ChunkPos;Ljava/util/Optional;)Lcom/mojang/datafixers/util/Either; net/minecraft/server/level/ChunkMap/lambda$scheduleChunkLoad$19 (Lnet/minecraft/world/level/ChunkPos;Ljava/util/Optional;)Lcom/mojang/datafixers/util/Either; +MD: net/minecraft/server/level/ChunkMap/m_289595_ (Lnet/minecraft/world/level/chunk/ChunkStatus;)Ljava/lang/String; net/minecraft/server/level/ChunkMap/lambda$scheduleChunkGeneration$22 (Lnet/minecraft/world/level/chunk/ChunkStatus;)Ljava/lang/String; +MD: net/minecraft/server/level/ChunkMap$1/ (Lnet/minecraft/server/level/ChunkMap;Lnet/minecraft/world/level/ChunkPos;)V net/minecraft/server/level/ChunkMap$1/ (Lnet/minecraft/server/level/ChunkMap;Lnet/minecraft/world/level/ChunkPos;)V +MD: net/minecraft/server/level/ChunkMap$1/toString ()Ljava/lang/String; net/minecraft/server/level/ChunkMap$1/toString ()Ljava/lang/String; +MD: net/minecraft/server/level/ChunkMap$2/ (Lnet/minecraft/server/level/ChunkMap;IIIILcom/mojang/datafixers/util/Either;)V net/minecraft/server/level/ChunkMap$2/ (Lnet/minecraft/server/level/ChunkMap;IIIILcom/mojang/datafixers/util/Either;)V +MD: net/minecraft/server/level/ChunkMap$2/toString ()Ljava/lang/String; net/minecraft/server/level/ChunkMap$2/toString ()Ljava/lang/String; +MD: net/minecraft/server/level/ChunkMap$DistanceManager/ (Lnet/minecraft/server/level/ChunkMap;Ljava/util/concurrent/Executor;Ljava/util/concurrent/Executor;)V net/minecraft/server/level/ChunkMap$DistanceManager/ (Lnet/minecraft/server/level/ChunkMap;Ljava/util/concurrent/Executor;Ljava/util/concurrent/Executor;)V +MD: net/minecraft/server/level/ChunkMap$DistanceManager/m_7009_ (J)Z net/minecraft/server/level/ChunkMap$DistanceManager/isChunkToRemove (J)Z +MD: net/minecraft/server/level/ChunkMap$DistanceManager/m_7288_ (JILnet/minecraft/server/level/ChunkHolder;I)Lnet/minecraft/server/level/ChunkHolder; net/minecraft/server/level/ChunkMap$DistanceManager/updateChunkScheduling (JILnet/minecraft/server/level/ChunkHolder;I)Lnet/minecraft/server/level/ChunkHolder; +MD: net/minecraft/server/level/ChunkMap$DistanceManager/m_7316_ (J)Lnet/minecraft/server/level/ChunkHolder; net/minecraft/server/level/ChunkMap$DistanceManager/getChunk (J)Lnet/minecraft/server/level/ChunkHolder; +MD: net/minecraft/server/level/ChunkMap$TrackedEntity/ (Lnet/minecraft/server/level/ChunkMap;Lnet/minecraft/world/entity/Entity;IIZ)V net/minecraft/server/level/ChunkMap$TrackedEntity/ (Lnet/minecraft/server/level/ChunkMap;Lnet/minecraft/world/entity/Entity;IIZ)V +MD: net/minecraft/server/level/ChunkMap$TrackedEntity/equals (Ljava/lang/Object;)Z net/minecraft/server/level/ChunkMap$TrackedEntity/equals (Ljava/lang/Object;)Z +MD: net/minecraft/server/level/ChunkMap$TrackedEntity/hashCode ()I net/minecraft/server/level/ChunkMap$TrackedEntity/hashCode ()I +MD: net/minecraft/server/level/ChunkMap$TrackedEntity/m_140482_ ()V net/minecraft/server/level/ChunkMap$TrackedEntity/broadcastRemoved ()V +MD: net/minecraft/server/level/ChunkMap$TrackedEntity/m_140483_ (I)I net/minecraft/server/level/ChunkMap$TrackedEntity/scaledRange (I)I +MD: net/minecraft/server/level/ChunkMap$TrackedEntity/m_140485_ (Lnet/minecraft/server/level/ServerPlayer;)V net/minecraft/server/level/ChunkMap$TrackedEntity/removePlayer (Lnet/minecraft/server/level/ServerPlayer;)V +MD: net/minecraft/server/level/ChunkMap$TrackedEntity/m_140487_ (Ljava/util/List;)V net/minecraft/server/level/ChunkMap$TrackedEntity/updatePlayers (Ljava/util/List;)V +MD: net/minecraft/server/level/ChunkMap$TrackedEntity/m_140489_ (Lnet/minecraft/network/protocol/Packet;)V net/minecraft/server/level/ChunkMap$TrackedEntity/broadcast (Lnet/minecraft/network/protocol/Packet;)V +MD: net/minecraft/server/level/ChunkMap$TrackedEntity/m_140496_ ()I net/minecraft/server/level/ChunkMap$TrackedEntity/getEffectiveRange ()I +MD: net/minecraft/server/level/ChunkMap$TrackedEntity/m_140497_ (Lnet/minecraft/server/level/ServerPlayer;)V net/minecraft/server/level/ChunkMap$TrackedEntity/updatePlayer (Lnet/minecraft/server/level/ServerPlayer;)V +MD: net/minecraft/server/level/ChunkMap$TrackedEntity/m_140499_ (Lnet/minecraft/network/protocol/Packet;)V net/minecraft/server/level/ChunkMap$TrackedEntity/broadcastAndSend (Lnet/minecraft/network/protocol/Packet;)V +MD: net/minecraft/server/level/ChunkTaskPriorityQueue/ ()V net/minecraft/server/level/ChunkTaskPriorityQueue/ ()V +MD: net/minecraft/server/level/ChunkTaskPriorityQueue/ (Ljava/lang/String;I)V net/minecraft/server/level/ChunkTaskPriorityQueue/ (Ljava/lang/String;I)V +MD: net/minecraft/server/level/ChunkTaskPriorityQueue/m_140518_ ()Ljava/util/stream/Stream; net/minecraft/server/level/ChunkTaskPriorityQueue/pop ()Ljava/util/stream/Stream; +MD: net/minecraft/server/level/ChunkTaskPriorityQueue/m_140519_ (I)Lit/unimi/dsi/fastutil/longs/Long2ObjectLinkedOpenHashMap; net/minecraft/server/level/ChunkTaskPriorityQueue/lambda$new$0 (I)Lit/unimi/dsi/fastutil/longs/Long2ObjectLinkedOpenHashMap; +MD: net/minecraft/server/level/ChunkTaskPriorityQueue/m_140521_ (ILnet/minecraft/world/level/ChunkPos;I)V net/minecraft/server/level/ChunkTaskPriorityQueue/resortChunkTasks (ILnet/minecraft/world/level/ChunkPos;I)V +MD: net/minecraft/server/level/ChunkTaskPriorityQueue/m_140525_ (J)Ljava/lang/Runnable; net/minecraft/server/level/ChunkTaskPriorityQueue/acquire (J)Ljava/lang/Runnable; +MD: net/minecraft/server/level/ChunkTaskPriorityQueue/m_140527_ (JLjava/util/Optional;)Lcom/mojang/datafixers/util/Either; net/minecraft/server/level/ChunkTaskPriorityQueue/lambda$pop$6 (JLjava/util/Optional;)Lcom/mojang/datafixers/util/Either; +MD: net/minecraft/server/level/ChunkTaskPriorityQueue/m_140530_ (JZ)V net/minecraft/server/level/ChunkTaskPriorityQueue/release (JZ)V +MD: net/minecraft/server/level/ChunkTaskPriorityQueue/m_140533_ (Ljava/util/Optional;)Z net/minecraft/server/level/ChunkTaskPriorityQueue/lambda$release$3 (Ljava/util/Optional;)Z +MD: net/minecraft/server/level/ChunkTaskPriorityQueue/m_140535_ (Ljava/util/Optional;JI)V net/minecraft/server/level/ChunkTaskPriorityQueue/submit (Ljava/util/Optional;JI)V +MD: net/minecraft/server/level/ChunkTaskPriorityQueue/m_140539_ ()Lit/unimi/dsi/fastutil/longs/LongSet; net/minecraft/server/level/ChunkTaskPriorityQueue/getAcquired ()Lit/unimi/dsi/fastutil/longs/LongSet; +MD: net/minecraft/server/level/ChunkTaskPriorityQueue/m_140542_ (J)V net/minecraft/server/level/ChunkTaskPriorityQueue/lambda$acquire$4 (J)V +MD: net/minecraft/server/level/ChunkTaskPriorityQueue/m_140544_ (J)Ljava/util/List; net/minecraft/server/level/ChunkTaskPriorityQueue/lambda$submit$2 (J)Ljava/util/List; +MD: net/minecraft/server/level/ChunkTaskPriorityQueue/m_140546_ (J)Ljava/util/List; net/minecraft/server/level/ChunkTaskPriorityQueue/lambda$resortChunkTasks$1 (J)Ljava/util/List; +MD: net/minecraft/server/level/ChunkTaskPriorityQueue/m_143149_ (J)Lcom/mojang/datafixers/util/Either; net/minecraft/server/level/ChunkTaskPriorityQueue/lambda$pop$5 (J)Lcom/mojang/datafixers/util/Either; +MD: net/minecraft/server/level/ChunkTaskPriorityQueue/m_201908_ ()Z net/minecraft/server/level/ChunkTaskPriorityQueue/hasWork ()Z +MD: net/minecraft/server/level/ChunkTaskPriorityQueue/toString ()Ljava/lang/String; net/minecraft/server/level/ChunkTaskPriorityQueue/toString ()Ljava/lang/String; +MD: net/minecraft/server/level/ChunkTaskPriorityQueueSorter/ ()V net/minecraft/server/level/ChunkTaskPriorityQueueSorter/ ()V +MD: net/minecraft/server/level/ChunkTaskPriorityQueueSorter/ (Ljava/util/List;Ljava/util/concurrent/Executor;I)V net/minecraft/server/level/ChunkTaskPriorityQueueSorter/ (Ljava/util/List;Ljava/util/concurrent/Executor;I)V +MD: net/minecraft/server/level/ChunkTaskPriorityQueueSorter/close ()V net/minecraft/server/level/ChunkTaskPriorityQueueSorter/close ()V +MD: net/minecraft/server/level/ChunkTaskPriorityQueueSorter/m_140558_ ()Ljava/lang/String; net/minecraft/server/level/ChunkTaskPriorityQueueSorter/getDebugStatus ()Ljava/lang/String; +MD: net/minecraft/server/level/ChunkTaskPriorityQueueSorter/m_140559_ (ILnet/minecraft/util/thread/ProcessorHandle;)Lnet/minecraft/server/level/ChunkTaskPriorityQueue; net/minecraft/server/level/ChunkTaskPriorityQueueSorter/lambda$new$0 (ILnet/minecraft/util/thread/ProcessorHandle;)Lnet/minecraft/server/level/ChunkTaskPriorityQueue; +MD: net/minecraft/server/level/ChunkTaskPriorityQueueSorter/m_140567_ (Lnet/minecraft/util/thread/ProcessorHandle;)Lnet/minecraft/util/thread/ProcessorHandle; net/minecraft/server/level/ChunkTaskPriorityQueueSorter/getReleaseProcessor (Lnet/minecraft/util/thread/ProcessorHandle;)Lnet/minecraft/util/thread/ProcessorHandle; +MD: net/minecraft/server/level/ChunkTaskPriorityQueueSorter/m_140569_ (Lnet/minecraft/util/thread/ProcessorHandle;JLjava/lang/Runnable;Z)V net/minecraft/server/level/ChunkTaskPriorityQueueSorter/release (Lnet/minecraft/util/thread/ProcessorHandle;JLjava/lang/Runnable;Z)V +MD: net/minecraft/server/level/ChunkTaskPriorityQueueSorter/m_140574_ (Lnet/minecraft/util/thread/ProcessorHandle;JZLjava/lang/Runnable;)V net/minecraft/server/level/ChunkTaskPriorityQueueSorter/lambda$release$11 (Lnet/minecraft/util/thread/ProcessorHandle;JZLjava/lang/Runnable;)V +MD: net/minecraft/server/level/ChunkTaskPriorityQueueSorter/m_140579_ (Lnet/minecraft/util/thread/ProcessorHandle;Lnet/minecraft/util/thread/ProcessorHandle;)Lnet/minecraft/util/thread/StrictQueue$IntRunnable; net/minecraft/server/level/ChunkTaskPriorityQueueSorter/lambda$getReleaseProcessor$8 (Lnet/minecraft/util/thread/ProcessorHandle;Lnet/minecraft/util/thread/ProcessorHandle;)Lnet/minecraft/util/thread/StrictQueue$IntRunnable; +MD: net/minecraft/server/level/ChunkTaskPriorityQueueSorter/m_140589_ (Lnet/minecraft/util/thread/ProcessorHandle;Ljava/util/function/Function;JLjava/util/function/IntSupplier;Z)V net/minecraft/server/level/ChunkTaskPriorityQueueSorter/submit (Lnet/minecraft/util/thread/ProcessorHandle;Ljava/util/function/Function;JLjava/util/function/IntSupplier;Z)V +MD: net/minecraft/server/level/ChunkTaskPriorityQueueSorter/m_140595_ (Lnet/minecraft/util/thread/ProcessorHandle;Ljava/util/function/IntSupplier;JLjava/util/function/Function;Z)V net/minecraft/server/level/ChunkTaskPriorityQueueSorter/lambda$submit$12 (Lnet/minecraft/util/thread/ProcessorHandle;Ljava/util/function/IntSupplier;JLjava/util/function/Function;Z)V +MD: net/minecraft/server/level/ChunkTaskPriorityQueueSorter/m_140604_ (Lnet/minecraft/util/thread/ProcessorHandle;Z)Lnet/minecraft/util/thread/ProcessorHandle; net/minecraft/server/level/ChunkTaskPriorityQueueSorter/getProcessor (Lnet/minecraft/util/thread/ProcessorHandle;Z)Lnet/minecraft/util/thread/ProcessorHandle; +MD: net/minecraft/server/level/ChunkTaskPriorityQueueSorter/m_140607_ (Lnet/minecraft/util/thread/ProcessorHandle;ZLnet/minecraft/util/thread/ProcessorHandle;)Lnet/minecraft/util/thread/StrictQueue$IntRunnable; net/minecraft/server/level/ChunkTaskPriorityQueueSorter/lambda$getProcessor$5 (Lnet/minecraft/util/thread/ProcessorHandle;ZLnet/minecraft/util/thread/ProcessorHandle;)Lnet/minecraft/util/thread/StrictQueue$IntRunnable; +MD: net/minecraft/server/level/ChunkTaskPriorityQueueSorter/m_140624_ (Ljava/lang/Runnable;JLjava/util/function/IntSupplier;)Lnet/minecraft/server/level/ChunkTaskPriorityQueueSorter$Message; net/minecraft/server/level/ChunkTaskPriorityQueueSorter/message (Ljava/lang/Runnable;JLjava/util/function/IntSupplier;)Lnet/minecraft/server/level/ChunkTaskPriorityQueueSorter$Message; +MD: net/minecraft/server/level/ChunkTaskPriorityQueueSorter/m_140628_ (Ljava/lang/Runnable;JZ)Lnet/minecraft/server/level/ChunkTaskPriorityQueueSorter$Release; net/minecraft/server/level/ChunkTaskPriorityQueueSorter/release (Ljava/lang/Runnable;JZ)Lnet/minecraft/server/level/ChunkTaskPriorityQueueSorter$Release; +MD: net/minecraft/server/level/ChunkTaskPriorityQueueSorter/m_140632_ (Ljava/lang/Runnable;Lnet/minecraft/util/thread/ProcessorHandle;)Ljava/lang/Runnable; net/minecraft/server/level/ChunkTaskPriorityQueueSorter/lambda$message$2 (Ljava/lang/Runnable;Lnet/minecraft/util/thread/ProcessorHandle;)Ljava/lang/Runnable; +MD: net/minecraft/server/level/ChunkTaskPriorityQueueSorter/m_140637_ (Ljava/util/function/IntSupplier;Lnet/minecraft/world/level/ChunkPos;ILjava/util/function/IntConsumer;)V net/minecraft/server/level/ChunkTaskPriorityQueueSorter/lambda$onLevelChange$10 (Ljava/util/function/IntSupplier;Lnet/minecraft/world/level/ChunkPos;ILjava/util/function/IntConsumer;)V +MD: net/minecraft/server/level/ChunkTaskPriorityQueueSorter/m_140642_ (Lnet/minecraft/server/level/ChunkHolder;Ljava/lang/Runnable;)Lnet/minecraft/server/level/ChunkTaskPriorityQueueSorter$Message; net/minecraft/server/level/ChunkTaskPriorityQueueSorter/message (Lnet/minecraft/server/level/ChunkHolder;Ljava/lang/Runnable;)Lnet/minecraft/server/level/ChunkTaskPriorityQueueSorter$Message; +MD: net/minecraft/server/level/ChunkTaskPriorityQueueSorter/m_140645_ (Lnet/minecraft/server/level/ChunkTaskPriorityQueue;Lnet/minecraft/util/thread/ProcessorHandle;)V net/minecraft/server/level/ChunkTaskPriorityQueueSorter/pollTask (Lnet/minecraft/server/level/ChunkTaskPriorityQueue;Lnet/minecraft/util/thread/ProcessorHandle;)V +MD: net/minecraft/server/level/ChunkTaskPriorityQueueSorter/m_140652_ (Lnet/minecraft/util/thread/ProcessorHandle;)Lnet/minecraft/server/level/ChunkTaskPriorityQueue; net/minecraft/server/level/ChunkTaskPriorityQueueSorter/getQueue (Lnet/minecraft/util/thread/ProcessorHandle;)Lnet/minecraft/server/level/ChunkTaskPriorityQueue; +MD: net/minecraft/server/level/ChunkTaskPriorityQueueSorter/m_143151_ (ILnet/minecraft/world/level/ChunkPos;ILnet/minecraft/server/level/ChunkTaskPriorityQueue;)V net/minecraft/server/level/ChunkTaskPriorityQueueSorter/lambda$onLevelChange$9 (ILnet/minecraft/world/level/ChunkPos;ILnet/minecraft/server/level/ChunkTaskPriorityQueue;)V +MD: net/minecraft/server/level/ChunkTaskPriorityQueueSorter/m_143156_ (Lnet/minecraft/server/level/ChunkHolder;Ljava/util/function/Function;)Lnet/minecraft/server/level/ChunkTaskPriorityQueueSorter$Message; net/minecraft/server/level/ChunkTaskPriorityQueueSorter/message (Lnet/minecraft/server/level/ChunkHolder;Ljava/util/function/Function;)Lnet/minecraft/server/level/ChunkTaskPriorityQueueSorter$Message; +MD: net/minecraft/server/level/ChunkTaskPriorityQueueSorter/m_143163_ (Lnet/minecraft/util/thread/ProcessorHandle;Lnet/minecraft/server/level/ChunkTaskPriorityQueueSorter$Release;)V net/minecraft/server/level/ChunkTaskPriorityQueueSorter/lambda$getReleaseProcessor$6 (Lnet/minecraft/util/thread/ProcessorHandle;Lnet/minecraft/server/level/ChunkTaskPriorityQueueSorter$Release;)V +MD: net/minecraft/server/level/ChunkTaskPriorityQueueSorter/m_143166_ (Lnet/minecraft/util/thread/ProcessorHandle;Lnet/minecraft/util/thread/ProcessorHandle;Z)V net/minecraft/server/level/ChunkTaskPriorityQueueSorter/lambda$getProcessor$4 (Lnet/minecraft/util/thread/ProcessorHandle;Lnet/minecraft/util/thread/ProcessorHandle;Z)V +MD: net/minecraft/server/level/ChunkTaskPriorityQueueSorter/m_143170_ (Lnet/minecraft/util/thread/ProcessorHandle;Lcom/mojang/datafixers/util/Either;)Ljava/util/concurrent/CompletableFuture; net/minecraft/server/level/ChunkTaskPriorityQueueSorter/lambda$pollTask$14 (Lnet/minecraft/util/thread/ProcessorHandle;Lcom/mojang/datafixers/util/Either;)Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/server/level/ChunkTaskPriorityQueueSorter/m_143173_ (Lnet/minecraft/util/thread/ProcessorHandle;ZLnet/minecraft/server/level/ChunkTaskPriorityQueueSorter$Message;)V net/minecraft/server/level/ChunkTaskPriorityQueueSorter/lambda$getProcessor$3 (Lnet/minecraft/util/thread/ProcessorHandle;ZLnet/minecraft/server/level/ChunkTaskPriorityQueueSorter$Message;)V +MD: net/minecraft/server/level/ChunkTaskPriorityQueueSorter/m_143179_ (Ljava/lang/Runnable;)Ljava/util/concurrent/CompletableFuture; net/minecraft/server/level/ChunkTaskPriorityQueueSorter/lambda$pollTask$13 (Ljava/lang/Runnable;)Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/server/level/ChunkTaskPriorityQueueSorter/m_143181_ (Ljava/util/function/Function;JLjava/util/function/IntSupplier;)Lnet/minecraft/server/level/ChunkTaskPriorityQueueSorter$Message; net/minecraft/server/level/ChunkTaskPriorityQueueSorter/message (Ljava/util/function/Function;JLjava/util/function/IntSupplier;)Lnet/minecraft/server/level/ChunkTaskPriorityQueueSorter$Message; +MD: net/minecraft/server/level/ChunkTaskPriorityQueueSorter/m_143185_ (Lnet/minecraft/util/thread/ProcessorHandle;Lnet/minecraft/util/thread/ProcessorHandle;)V net/minecraft/server/level/ChunkTaskPriorityQueueSorter/lambda$getReleaseProcessor$7 (Lnet/minecraft/util/thread/ProcessorHandle;Lnet/minecraft/util/thread/ProcessorHandle;)V +MD: net/minecraft/server/level/ChunkTaskPriorityQueueSorter/m_143188_ (Ljava/lang/Runnable;Lnet/minecraft/util/thread/ProcessorHandle;)V net/minecraft/server/level/ChunkTaskPriorityQueueSorter/lambda$message$1 (Ljava/lang/Runnable;Lnet/minecraft/util/thread/ProcessorHandle;)V +MD: net/minecraft/server/level/ChunkTaskPriorityQueueSorter/m_201909_ ()Z net/minecraft/server/level/ChunkTaskPriorityQueueSorter/hasWork ()Z +MD: net/minecraft/server/level/ChunkTaskPriorityQueueSorter/m_212889_ (I)[Ljava/util/concurrent/CompletableFuture; net/minecraft/server/level/ChunkTaskPriorityQueueSorter/lambda$pollTask$15 (I)[Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/server/level/ChunkTaskPriorityQueueSorter/m_212891_ (Lnet/minecraft/server/level/ChunkTaskPriorityQueue;Lnet/minecraft/util/thread/ProcessorHandle;Ljava/lang/Void;)V net/minecraft/server/level/ChunkTaskPriorityQueueSorter/lambda$pollTask$16 (Lnet/minecraft/server/level/ChunkTaskPriorityQueue;Lnet/minecraft/util/thread/ProcessorHandle;Ljava/lang/Void;)V +MD: net/minecraft/server/level/ChunkTaskPriorityQueueSorter/m_212895_ (Ljava/lang/Long;)Ljava/lang/String; net/minecraft/server/level/ChunkTaskPriorityQueueSorter/lambda$getDebugStatus$18 (Ljava/lang/Long;)Ljava/lang/String; +MD: net/minecraft/server/level/ChunkTaskPriorityQueueSorter/m_212897_ (Ljava/util/Map$Entry;)Ljava/lang/String; net/minecraft/server/level/ChunkTaskPriorityQueueSorter/lambda$getDebugStatus$19 (Ljava/util/Map$Entry;)Ljava/lang/String; +MD: net/minecraft/server/level/ChunkTaskPriorityQueueSorter/m_212899_ (Lnet/minecraft/server/level/ChunkTaskPriorityQueue;Lnet/minecraft/util/thread/ProcessorHandle;)V net/minecraft/server/level/ChunkTaskPriorityQueueSorter/lambda$pollTask$17 (Lnet/minecraft/server/level/ChunkTaskPriorityQueue;Lnet/minecraft/util/thread/ProcessorHandle;)V +MD: net/minecraft/server/level/ChunkTaskPriorityQueueSorter/m_6250_ (Lnet/minecraft/world/level/ChunkPos;Ljava/util/function/IntSupplier;ILjava/util/function/IntConsumer;)V net/minecraft/server/level/ChunkTaskPriorityQueueSorter/onLevelChange (Lnet/minecraft/world/level/ChunkPos;Ljava/util/function/IntSupplier;ILjava/util/function/IntConsumer;)V +MD: net/minecraft/server/level/ChunkTaskPriorityQueueSorter$Message/ (Ljava/util/function/Function;JLjava/util/function/IntSupplier;)V net/minecraft/server/level/ChunkTaskPriorityQueueSorter$Message/ (Ljava/util/function/Function;JLjava/util/function/IntSupplier;)V +MD: net/minecraft/server/level/ChunkTaskPriorityQueueSorter$Release/ (Ljava/lang/Runnable;JZ)V net/minecraft/server/level/ChunkTaskPriorityQueueSorter$Release/ (Ljava/lang/Runnable;JZ)V +MD: net/minecraft/server/level/ChunkTracker/ (III)V net/minecraft/server/level/ChunkTracker/ (III)V +MD: net/minecraft/server/level/ChunkTracker/m_140715_ (JIZ)V net/minecraft/server/level/ChunkTracker/update (JIZ)V +MD: net/minecraft/server/level/ChunkTracker/m_6163_ (J)Z net/minecraft/server/level/ChunkTracker/isSource (J)Z +MD: net/minecraft/server/level/ChunkTracker/m_6357_ (JJI)I net/minecraft/server/level/ChunkTracker/getComputedLevel (JJI)I +MD: net/minecraft/server/level/ChunkTracker/m_6359_ (JJI)I net/minecraft/server/level/ChunkTracker/computeLevelFromNeighbor (JJI)I +MD: net/minecraft/server/level/ChunkTracker/m_7031_ (J)I net/minecraft/server/level/ChunkTracker/getLevelFromSource (J)I +MD: net/minecraft/server/level/ChunkTracker/m_7900_ (JIZ)V net/minecraft/server/level/ChunkTracker/checkNeighborsAfterUpdate (JIZ)V +MD: net/minecraft/server/level/ColumnPos/ (II)V net/minecraft/server/level/ColumnPos/ (II)V +MD: net/minecraft/server/level/ColumnPos/equals (Ljava/lang/Object;)Z net/minecraft/server/level/ColumnPos/equals (Ljava/lang/Object;)Z +MD: net/minecraft/server/level/ColumnPos/f_140723_ ()I net/minecraft/server/level/ColumnPos/x ()I +MD: net/minecraft/server/level/ColumnPos/f_140724_ ()I net/minecraft/server/level/ColumnPos/z ()I +MD: net/minecraft/server/level/ColumnPos/hashCode ()I net/minecraft/server/level/ColumnPos/hashCode ()I +MD: net/minecraft/server/level/ColumnPos/m_143196_ ()Lnet/minecraft/world/level/ChunkPos; net/minecraft/server/level/ColumnPos/toChunkPos ()Lnet/minecraft/world/level/ChunkPos; +MD: net/minecraft/server/level/ColumnPos/m_143197_ (II)J net/minecraft/server/level/ColumnPos/asLong (II)J +MD: net/minecraft/server/level/ColumnPos/m_143200_ ()J net/minecraft/server/level/ColumnPos/toLong ()J +MD: net/minecraft/server/level/ColumnPos/m_214969_ (J)I net/minecraft/server/level/ColumnPos/getX (J)I +MD: net/minecraft/server/level/ColumnPos/m_214971_ (J)I net/minecraft/server/level/ColumnPos/getZ (J)I +MD: net/minecraft/server/level/ColumnPos/toString ()Ljava/lang/String; net/minecraft/server/level/ColumnPos/toString ()Ljava/lang/String; +MD: net/minecraft/server/level/DemoMode/ (Lnet/minecraft/server/level/ServerPlayer;)V net/minecraft/server/level/DemoMode/ (Lnet/minecraft/server/level/ServerPlayer;)V +MD: net/minecraft/server/level/DemoMode/m_140757_ ()V net/minecraft/server/level/DemoMode/outputDemoReminder ()V +MD: net/minecraft/server/level/DemoMode/m_214168_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/network/protocol/game/ServerboundPlayerActionPacket$Action;Lnet/minecraft/core/Direction;II)V net/minecraft/server/level/DemoMode/handleBlockBreakAction (Lnet/minecraft/core/BlockPos;Lnet/minecraft/network/protocol/game/ServerboundPlayerActionPacket$Action;Lnet/minecraft/core/Direction;II)V +MD: net/minecraft/server/level/DemoMode/m_6261_ (Lnet/minecraft/server/level/ServerPlayer;Lnet/minecraft/world/level/Level;Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/InteractionHand;)Lnet/minecraft/world/InteractionResult; net/minecraft/server/level/DemoMode/useItem (Lnet/minecraft/server/level/ServerPlayer;Lnet/minecraft/world/level/Level;Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/InteractionHand;)Lnet/minecraft/world/InteractionResult; +MD: net/minecraft/server/level/DemoMode/m_7179_ (Lnet/minecraft/server/level/ServerPlayer;Lnet/minecraft/world/level/Level;Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/InteractionHand;Lnet/minecraft/world/phys/BlockHitResult;)Lnet/minecraft/world/InteractionResult; net/minecraft/server/level/DemoMode/useItemOn (Lnet/minecraft/server/level/ServerPlayer;Lnet/minecraft/world/level/Level;Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/InteractionHand;Lnet/minecraft/world/phys/BlockHitResult;)Lnet/minecraft/world/InteractionResult; +MD: net/minecraft/server/level/DemoMode/m_7712_ ()V net/minecraft/server/level/DemoMode/tick ()V +MD: net/minecraft/server/level/DistanceManager/ ()V net/minecraft/server/level/DistanceManager/ ()V +MD: net/minecraft/server/level/DistanceManager/ (Ljava/util/concurrent/Executor;Ljava/util/concurrent/Executor;)V net/minecraft/server/level/DistanceManager/ (Ljava/util/concurrent/Executor;Ljava/util/concurrent/Executor;)V +MD: net/minecraft/server/level/DistanceManager/m_140776_ ()V net/minecraft/server/level/DistanceManager/purgeStaleTickets ()V +MD: net/minecraft/server/level/DistanceManager/m_140777_ (I)V net/minecraft/server/level/DistanceManager/updatePlayerTickets (I)V +MD: net/minecraft/server/level/DistanceManager/m_140784_ (JLnet/minecraft/server/level/Ticket;)V net/minecraft/server/level/DistanceManager/addTicket (JLnet/minecraft/server/level/Ticket;)V +MD: net/minecraft/server/level/DistanceManager/m_140792_ (Lnet/minecraft/server/level/TicketType;Lnet/minecraft/world/level/ChunkPos;ILjava/lang/Object;)V net/minecraft/server/level/DistanceManager/addTicket (Lnet/minecraft/server/level/TicketType;Lnet/minecraft/world/level/ChunkPos;ILjava/lang/Object;)V +MD: net/minecraft/server/level/DistanceManager/m_140797_ (Lnet/minecraft/util/SortedArraySet;)I net/minecraft/server/level/DistanceManager/getTicketLevelAt (Lnet/minecraft/util/SortedArraySet;)I +MD: net/minecraft/server/level/DistanceManager/m_140799_ (Lnet/minecraft/world/level/ChunkPos;Z)V net/minecraft/server/level/DistanceManager/updateChunkForced (Lnet/minecraft/world/level/ChunkPos;Z)V +MD: net/minecraft/server/level/DistanceManager/m_140802_ (Lnet/minecraft/core/SectionPos;Lnet/minecraft/server/level/ServerPlayer;)V net/minecraft/server/level/DistanceManager/addPlayer (Lnet/minecraft/core/SectionPos;Lnet/minecraft/server/level/ServerPlayer;)V +MD: net/minecraft/server/level/DistanceManager/m_140805_ (Lnet/minecraft/server/level/ChunkMap;)Z net/minecraft/server/level/DistanceManager/runAllUpdates (Lnet/minecraft/server/level/ChunkMap;)Z +MD: net/minecraft/server/level/DistanceManager/m_140816_ ()I net/minecraft/server/level/DistanceManager/getNaturalSpawnChunkCount ()I +MD: net/minecraft/server/level/DistanceManager/m_140818_ (JLnet/minecraft/server/level/Ticket;)V net/minecraft/server/level/DistanceManager/removeTicket (JLnet/minecraft/server/level/Ticket;)V +MD: net/minecraft/server/level/DistanceManager/m_140823_ (Lnet/minecraft/server/level/TicketType;Lnet/minecraft/world/level/ChunkPos;ILjava/lang/Object;)V net/minecraft/server/level/DistanceManager/removeTicket (Lnet/minecraft/server/level/TicketType;Lnet/minecraft/world/level/ChunkPos;ILjava/lang/Object;)V +MD: net/minecraft/server/level/DistanceManager/m_140828_ (Lnet/minecraft/core/SectionPos;Lnet/minecraft/server/level/ServerPlayer;)V net/minecraft/server/level/DistanceManager/removePlayer (Lnet/minecraft/core/SectionPos;Lnet/minecraft/server/level/ServerPlayer;)V +MD: net/minecraft/server/level/DistanceManager/m_140837_ ()Ljava/lang/String; net/minecraft/server/level/DistanceManager/getDebugStatus ()Ljava/lang/String; +MD: net/minecraft/server/level/DistanceManager/m_140838_ (J)Ljava/lang/String; net/minecraft/server/level/DistanceManager/getTicketDebugString (J)Ljava/lang/String; +MD: net/minecraft/server/level/DistanceManager/m_140840_ (Lnet/minecraft/server/level/TicketType;Lnet/minecraft/world/level/ChunkPos;ILjava/lang/Object;)V net/minecraft/server/level/DistanceManager/addRegionTicket (Lnet/minecraft/server/level/TicketType;Lnet/minecraft/world/level/ChunkPos;ILjava/lang/Object;)V +MD: net/minecraft/server/level/DistanceManager/m_140847_ (J)Z net/minecraft/server/level/DistanceManager/hasPlayersNearby (J)Z +MD: net/minecraft/server/level/DistanceManager/m_140849_ (Lnet/minecraft/server/level/TicketType;Lnet/minecraft/world/level/ChunkPos;ILjava/lang/Object;)V net/minecraft/server/level/DistanceManager/removeRegionTicket (Lnet/minecraft/server/level/TicketType;Lnet/minecraft/world/level/ChunkPos;ILjava/lang/Object;)V +MD: net/minecraft/server/level/DistanceManager/m_140857_ (J)Lnet/minecraft/util/SortedArraySet; net/minecraft/server/level/DistanceManager/getTickets (J)Lnet/minecraft/util/SortedArraySet; +MD: net/minecraft/server/level/DistanceManager/m_143207_ (Ljava/lang/String;)V net/minecraft/server/level/DistanceManager/dumpTickets (Ljava/lang/String;)V +MD: net/minecraft/server/level/DistanceManager/m_183903_ (JLcom/mojang/datafixers/util/Either;)V net/minecraft/server/level/DistanceManager/lambda$runAllUpdates$4 (JLcom/mojang/datafixers/util/Either;)V +MD: net/minecraft/server/level/DistanceManager/m_183906_ (Lnet/minecraft/server/level/ChunkMap;Lnet/minecraft/server/level/ChunkHolder;)V net/minecraft/server/level/DistanceManager/lambda$runAllUpdates$0 (Lnet/minecraft/server/level/ChunkMap;Lnet/minecraft/server/level/ChunkHolder;)V +MD: net/minecraft/server/level/DistanceManager/m_183909_ (Lnet/minecraft/server/level/Ticket;)Z net/minecraft/server/level/DistanceManager/lambda$runAllUpdates$1 (Lnet/minecraft/server/level/Ticket;)Z +MD: net/minecraft/server/level/DistanceManager/m_183911_ (I)V net/minecraft/server/level/DistanceManager/updateSimulationDistance (I)V +MD: net/minecraft/server/level/DistanceManager/m_183913_ (J)Z net/minecraft/server/level/DistanceManager/inEntityTickingRange (J)Z +MD: net/minecraft/server/level/DistanceManager/m_183915_ ()Lnet/minecraft/server/level/TickingTracker; net/minecraft/server/level/DistanceManager/tickingTracker ()Lnet/minecraft/server/level/TickingTracker; +MD: net/minecraft/server/level/DistanceManager/m_183916_ (J)Z net/minecraft/server/level/DistanceManager/inBlockTickingRange (J)Z +MD: net/minecraft/server/level/DistanceManager/m_183918_ ()I net/minecraft/server/level/DistanceManager/getPlayerTicketLevel ()I +MD: net/minecraft/server/level/DistanceManager/m_183919_ ()V net/minecraft/server/level/DistanceManager/lambda$runAllUpdates$2 ()V +MD: net/minecraft/server/level/DistanceManager/m_183920_ (J)Lit/unimi/dsi/fastutil/objects/ObjectSet; net/minecraft/server/level/DistanceManager/lambda$addPlayer$6 (J)Lit/unimi/dsi/fastutil/objects/ObjectSet; +MD: net/minecraft/server/level/DistanceManager/m_183922_ (J)Lnet/minecraft/util/SortedArraySet; net/minecraft/server/level/DistanceManager/lambda$getTickets$5 (J)Lnet/minecraft/util/SortedArraySet; +MD: net/minecraft/server/level/DistanceManager/m_183924_ (J)V net/minecraft/server/level/DistanceManager/lambda$runAllUpdates$3 (J)V +MD: net/minecraft/server/level/DistanceManager/m_201910_ ()V net/minecraft/server/level/DistanceManager/removeTicketsOnClosing ()V +MD: net/minecraft/server/level/DistanceManager/m_201911_ ()Z net/minecraft/server/level/DistanceManager/hasTickets ()Z +MD: net/minecraft/server/level/DistanceManager/m_7009_ (J)Z net/minecraft/server/level/DistanceManager/isChunkToRemove (J)Z +MD: net/minecraft/server/level/DistanceManager/m_7288_ (JILnet/minecraft/server/level/ChunkHolder;I)Lnet/minecraft/server/level/ChunkHolder; net/minecraft/server/level/DistanceManager/updateChunkScheduling (JILnet/minecraft/server/level/ChunkHolder;I)Lnet/minecraft/server/level/ChunkHolder; +MD: net/minecraft/server/level/DistanceManager/m_7316_ (J)Lnet/minecraft/server/level/ChunkHolder; net/minecraft/server/level/DistanceManager/getChunk (J)Lnet/minecraft/server/level/ChunkHolder; +MD: net/minecraft/server/level/DistanceManager$ChunkTicketTracker/ ()V net/minecraft/server/level/DistanceManager$ChunkTicketTracker/ ()V +MD: net/minecraft/server/level/DistanceManager$ChunkTicketTracker/ (Lnet/minecraft/server/level/DistanceManager;)V net/minecraft/server/level/DistanceManager$ChunkTicketTracker/ (Lnet/minecraft/server/level/DistanceManager;)V +MD: net/minecraft/server/level/DistanceManager$ChunkTicketTracker/m_140877_ (I)I net/minecraft/server/level/DistanceManager$ChunkTicketTracker/runDistanceUpdates (I)I +MD: net/minecraft/server/level/DistanceManager$ChunkTicketTracker/m_6172_ (J)I net/minecraft/server/level/DistanceManager$ChunkTicketTracker/getLevel (J)I +MD: net/minecraft/server/level/DistanceManager$ChunkTicketTracker/m_7031_ (J)I net/minecraft/server/level/DistanceManager$ChunkTicketTracker/getLevelFromSource (J)I +MD: net/minecraft/server/level/DistanceManager$ChunkTicketTracker/m_7351_ (JI)V net/minecraft/server/level/DistanceManager$ChunkTicketTracker/setLevel (JI)V +MD: net/minecraft/server/level/DistanceManager$FixedPlayerDistanceChunkTracker/ (Lnet/minecraft/server/level/DistanceManager;I)V net/minecraft/server/level/DistanceManager$FixedPlayerDistanceChunkTracker/ (Lnet/minecraft/server/level/DistanceManager;I)V +MD: net/minecraft/server/level/DistanceManager$FixedPlayerDistanceChunkTracker/m_140902_ (J)Z net/minecraft/server/level/DistanceManager$FixedPlayerDistanceChunkTracker/havePlayer (J)Z +MD: net/minecraft/server/level/DistanceManager$FixedPlayerDistanceChunkTracker/m_143212_ (Ljava/lang/String;)V net/minecraft/server/level/DistanceManager$FixedPlayerDistanceChunkTracker/dumpChunks (Ljava/lang/String;)V +MD: net/minecraft/server/level/DistanceManager$FixedPlayerDistanceChunkTracker/m_6172_ (J)I net/minecraft/server/level/DistanceManager$FixedPlayerDistanceChunkTracker/getLevel (J)I +MD: net/minecraft/server/level/DistanceManager$FixedPlayerDistanceChunkTracker/m_6410_ ()V net/minecraft/server/level/DistanceManager$FixedPlayerDistanceChunkTracker/runAllUpdates ()V +MD: net/minecraft/server/level/DistanceManager$FixedPlayerDistanceChunkTracker/m_7031_ (J)I net/minecraft/server/level/DistanceManager$FixedPlayerDistanceChunkTracker/getLevelFromSource (J)I +MD: net/minecraft/server/level/DistanceManager$FixedPlayerDistanceChunkTracker/m_7351_ (JI)V net/minecraft/server/level/DistanceManager$FixedPlayerDistanceChunkTracker/setLevel (JI)V +MD: net/minecraft/server/level/DistanceManager$FixedPlayerDistanceChunkTracker/m_8002_ (JII)V net/minecraft/server/level/DistanceManager$FixedPlayerDistanceChunkTracker/onLevelChange (JII)V +MD: net/minecraft/server/level/DistanceManager$PlayerTicketTracker/ (Lnet/minecraft/server/level/DistanceManager;I)V net/minecraft/server/level/DistanceManager$PlayerTicketTracker/ (Lnet/minecraft/server/level/DistanceManager;I)V +MD: net/minecraft/server/level/DistanceManager$PlayerTicketTracker/m_140912_ (I)V net/minecraft/server/level/DistanceManager$PlayerTicketTracker/updateViewDistance (I)V +MD: net/minecraft/server/level/DistanceManager$PlayerTicketTracker/m_140918_ (JIZZ)V net/minecraft/server/level/DistanceManager$PlayerTicketTracker/onLevelChange (JIZZ)V +MD: net/minecraft/server/level/DistanceManager$PlayerTicketTracker/m_140923_ (JLnet/minecraft/server/level/Ticket;)V net/minecraft/server/level/DistanceManager$PlayerTicketTracker/lambda$onLevelChange$5 (JLnet/minecraft/server/level/Ticket;)V +MD: net/minecraft/server/level/DistanceManager$PlayerTicketTracker/m_140926_ (JI)V net/minecraft/server/level/DistanceManager$PlayerTicketTracker/lambda$runAllUpdates$7 (JI)V +MD: net/minecraft/server/level/DistanceManager$PlayerTicketTracker/m_140932_ (I)Z net/minecraft/server/level/DistanceManager$PlayerTicketTracker/haveTicketFor (I)Z +MD: net/minecraft/server/level/DistanceManager$PlayerTicketTracker/m_140934_ (JLnet/minecraft/server/level/Ticket;)V net/minecraft/server/level/DistanceManager$PlayerTicketTracker/lambda$onLevelChange$2 (JLnet/minecraft/server/level/Ticket;)V +MD: net/minecraft/server/level/DistanceManager$PlayerTicketTracker/m_140938_ (I)I net/minecraft/server/level/DistanceManager$PlayerTicketTracker/lambda$onLevelChange$3 (I)I +MD: net/minecraft/server/level/DistanceManager$PlayerTicketTracker/m_140940_ (J)I net/minecraft/server/level/DistanceManager$PlayerTicketTracker/lambda$runAllUpdates$6 (J)I +MD: net/minecraft/server/level/DistanceManager$PlayerTicketTracker/m_143214_ (JLnet/minecraft/server/level/Ticket;)V net/minecraft/server/level/DistanceManager$PlayerTicketTracker/lambda$onLevelChange$4 (JLnet/minecraft/server/level/Ticket;)V +MD: net/minecraft/server/level/DistanceManager$PlayerTicketTracker/m_143217_ ()V net/minecraft/server/level/DistanceManager$PlayerTicketTracker/lambda$onLevelChange$0 ()V +MD: net/minecraft/server/level/DistanceManager$PlayerTicketTracker/m_143218_ (JLnet/minecraft/server/level/Ticket;)V net/minecraft/server/level/DistanceManager$PlayerTicketTracker/lambda$onLevelChange$1 (JLnet/minecraft/server/level/Ticket;)V +MD: net/minecraft/server/level/DistanceManager$PlayerTicketTracker/m_6410_ ()V net/minecraft/server/level/DistanceManager$PlayerTicketTracker/runAllUpdates ()V +MD: net/minecraft/server/level/DistanceManager$PlayerTicketTracker/m_8002_ (JII)V net/minecraft/server/level/DistanceManager$PlayerTicketTracker/onLevelChange (JII)V +MD: net/minecraft/server/level/FullChunkStatus/ ()V net/minecraft/server/level/FullChunkStatus/ ()V +MD: net/minecraft/server/level/FullChunkStatus/ (Ljava/lang/String;I)V net/minecraft/server/level/FullChunkStatus/ (Ljava/lang/String;I)V +MD: net/minecraft/server/level/FullChunkStatus/m_287205_ (Lnet/minecraft/server/level/FullChunkStatus;)Z net/minecraft/server/level/FullChunkStatus/isOrAfter (Lnet/minecraft/server/level/FullChunkStatus;)Z +MD: net/minecraft/server/level/FullChunkStatus/m_287208_ ()[Lnet/minecraft/server/level/FullChunkStatus; net/minecraft/server/level/FullChunkStatus/$values ()[Lnet/minecraft/server/level/FullChunkStatus; +MD: net/minecraft/server/level/FullChunkStatus/valueOf (Ljava/lang/String;)Lnet/minecraft/server/level/FullChunkStatus; net/minecraft/server/level/FullChunkStatus/valueOf (Ljava/lang/String;)Lnet/minecraft/server/level/FullChunkStatus; +MD: net/minecraft/server/level/FullChunkStatus/values ()[Lnet/minecraft/server/level/FullChunkStatus; net/minecraft/server/level/FullChunkStatus/values ()[Lnet/minecraft/server/level/FullChunkStatus; +MD: net/minecraft/server/level/PlayerMap/ ()V net/minecraft/server/level/PlayerMap/ ()V +MD: net/minecraft/server/level/PlayerMap/m_183926_ (J)Ljava/util/Set; net/minecraft/server/level/PlayerMap/getPlayers (J)Ljava/util/Set; +MD: net/minecraft/server/level/PlayerMap/m_8245_ (JJLnet/minecraft/server/level/ServerPlayer;)V net/minecraft/server/level/PlayerMap/updatePlayer (JJLnet/minecraft/server/level/ServerPlayer;)V +MD: net/minecraft/server/level/PlayerMap/m_8249_ (JLnet/minecraft/server/level/ServerPlayer;)V net/minecraft/server/level/PlayerMap/removePlayer (JLnet/minecraft/server/level/ServerPlayer;)V +MD: net/minecraft/server/level/PlayerMap/m_8252_ (JLnet/minecraft/server/level/ServerPlayer;Z)V net/minecraft/server/level/PlayerMap/addPlayer (JLnet/minecraft/server/level/ServerPlayer;Z)V +MD: net/minecraft/server/level/PlayerMap/m_8256_ (Lnet/minecraft/server/level/ServerPlayer;)V net/minecraft/server/level/PlayerMap/ignorePlayer (Lnet/minecraft/server/level/ServerPlayer;)V +MD: net/minecraft/server/level/PlayerMap/m_8258_ (Lnet/minecraft/server/level/ServerPlayer;)V net/minecraft/server/level/PlayerMap/unIgnorePlayer (Lnet/minecraft/server/level/ServerPlayer;)V +MD: net/minecraft/server/level/PlayerMap/m_8260_ (Lnet/minecraft/server/level/ServerPlayer;)Z net/minecraft/server/level/PlayerMap/ignoredOrUnknown (Lnet/minecraft/server/level/ServerPlayer;)Z +MD: net/minecraft/server/level/PlayerMap/m_8262_ (Lnet/minecraft/server/level/ServerPlayer;)Z net/minecraft/server/level/PlayerMap/ignored (Lnet/minecraft/server/level/ServerPlayer;)Z +MD: net/minecraft/server/level/PlayerRespawnLogic/ ()V net/minecraft/server/level/PlayerRespawnLogic/ ()V +MD: net/minecraft/server/level/PlayerRespawnLogic/m_183928_ (Lnet/minecraft/server/level/ServerLevel;II)Lnet/minecraft/core/BlockPos; net/minecraft/server/level/PlayerRespawnLogic/getOverworldRespawnPos (Lnet/minecraft/server/level/ServerLevel;II)Lnet/minecraft/core/BlockPos; +MD: net/minecraft/server/level/PlayerRespawnLogic/m_183932_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/level/ChunkPos;)Lnet/minecraft/core/BlockPos; net/minecraft/server/level/PlayerRespawnLogic/getSpawnPosInChunk (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/level/ChunkPos;)Lnet/minecraft/core/BlockPos; +MD: net/minecraft/server/level/SectionTracker/ (III)V net/minecraft/server/level/SectionTracker/ (III)V +MD: net/minecraft/server/level/SectionTracker/m_6357_ (JJI)I net/minecraft/server/level/SectionTracker/getComputedLevel (JJI)I +MD: net/minecraft/server/level/SectionTracker/m_6359_ (JJI)I net/minecraft/server/level/SectionTracker/computeLevelFromNeighbor (JJI)I +MD: net/minecraft/server/level/SectionTracker/m_7409_ (J)I net/minecraft/server/level/SectionTracker/getLevelFromSource (J)I +MD: net/minecraft/server/level/SectionTracker/m_7900_ (JIZ)V net/minecraft/server/level/SectionTracker/checkNeighborsAfterUpdate (JIZ)V +MD: net/minecraft/server/level/SectionTracker/m_8288_ (JIZ)V net/minecraft/server/level/SectionTracker/update (JIZ)V +MD: net/minecraft/server/level/ServerBossEvent/ (Lnet/minecraft/network/chat/Component;Lnet/minecraft/world/BossEvent$BossBarColor;Lnet/minecraft/world/BossEvent$BossBarOverlay;)V net/minecraft/server/level/ServerBossEvent/ (Lnet/minecraft/network/chat/Component;Lnet/minecraft/world/BossEvent$BossBarColor;Lnet/minecraft/world/BossEvent$BossBarOverlay;)V +MD: net/minecraft/server/level/ServerBossEvent/m_142711_ (F)V net/minecraft/server/level/ServerBossEvent/setProgress (F)V +MD: net/minecraft/server/level/ServerBossEvent/m_143224_ (Ljava/util/function/Function;)V net/minecraft/server/level/ServerBossEvent/broadcast (Ljava/util/function/Function;)V +MD: net/minecraft/server/level/ServerBossEvent/m_5648_ (Lnet/minecraft/world/BossEvent$BossBarOverlay;)V net/minecraft/server/level/ServerBossEvent/setOverlay (Lnet/minecraft/world/BossEvent$BossBarOverlay;)V +MD: net/minecraft/server/level/ServerBossEvent/m_6451_ (Lnet/minecraft/world/BossEvent$BossBarColor;)V net/minecraft/server/level/ServerBossEvent/setColor (Lnet/minecraft/world/BossEvent$BossBarColor;)V +MD: net/minecraft/server/level/ServerBossEvent/m_6456_ (Lnet/minecraft/network/chat/Component;)V net/minecraft/server/level/ServerBossEvent/setName (Lnet/minecraft/network/chat/Component;)V +MD: net/minecraft/server/level/ServerBossEvent/m_6539_ (Lnet/minecraft/server/level/ServerPlayer;)V net/minecraft/server/level/ServerBossEvent/removePlayer (Lnet/minecraft/server/level/ServerPlayer;)V +MD: net/minecraft/server/level/ServerBossEvent/m_6543_ (Lnet/minecraft/server/level/ServerPlayer;)V net/minecraft/server/level/ServerBossEvent/addPlayer (Lnet/minecraft/server/level/ServerPlayer;)V +MD: net/minecraft/server/level/ServerBossEvent/m_7003_ (Z)Lnet/minecraft/world/BossEvent; net/minecraft/server/level/ServerBossEvent/setDarkenScreen (Z)Lnet/minecraft/world/BossEvent; +MD: net/minecraft/server/level/ServerBossEvent/m_7005_ (Z)Lnet/minecraft/world/BossEvent; net/minecraft/server/level/ServerBossEvent/setPlayBossMusic (Z)Lnet/minecraft/world/BossEvent; +MD: net/minecraft/server/level/ServerBossEvent/m_7006_ (Z)Lnet/minecraft/world/BossEvent; net/minecraft/server/level/ServerBossEvent/setCreateWorldFog (Z)Lnet/minecraft/world/BossEvent; +MD: net/minecraft/server/level/ServerBossEvent/m_7706_ ()V net/minecraft/server/level/ServerBossEvent/removeAllPlayers ()V +MD: net/minecraft/server/level/ServerBossEvent/m_8321_ (Z)V net/minecraft/server/level/ServerBossEvent/setVisible (Z)V +MD: net/minecraft/server/level/ServerBossEvent/m_8323_ ()Z net/minecraft/server/level/ServerBossEvent/isVisible ()Z +MD: net/minecraft/server/level/ServerBossEvent/m_8324_ ()Ljava/util/Collection; net/minecraft/server/level/ServerBossEvent/getPlayers ()Ljava/util/Collection; +MD: net/minecraft/server/level/ServerChunkCache/ ()V net/minecraft/server/level/ServerChunkCache/ ()V +MD: net/minecraft/server/level/ServerChunkCache/ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/level/storage/LevelStorageSource$LevelStorageAccess;Lcom/mojang/datafixers/DataFixer;Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager;Ljava/util/concurrent/Executor;Lnet/minecraft/world/level/chunk/ChunkGenerator;IIZLnet/minecraft/server/level/progress/ChunkProgressListener;Lnet/minecraft/world/level/entity/ChunkStatusUpdateListener;Ljava/util/function/Supplier;)V net/minecraft/server/level/ServerChunkCache/ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/level/storage/LevelStorageSource$LevelStorageAccess;Lcom/mojang/datafixers/DataFixer;Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager;Ljava/util/concurrent/Executor;Lnet/minecraft/world/level/chunk/ChunkGenerator;IIZLnet/minecraft/server/level/progress/ChunkProgressListener;Lnet/minecraft/world/level/entity/ChunkStatusUpdateListener;Ljava/util/function/Supplier;)V +MD: net/minecraft/server/level/ServerChunkCache/close ()V net/minecraft/server/level/ServerChunkCache/close ()V +MD: net/minecraft/server/level/ServerChunkCache/m_143239_ (J)Z net/minecraft/server/level/ServerChunkCache/isPositionTicking (J)Z +MD: net/minecraft/server/level/ServerChunkCache/m_184021_ (Lnet/minecraft/server/level/ServerChunkCache$ChunkAndHolder;)V net/minecraft/server/level/ServerChunkCache/lambda$tickChunks$5 (Lnet/minecraft/server/level/ServerChunkCache$ChunkAndHolder;)V +MD: net/minecraft/server/level/ServerChunkCache/m_184023_ (Lnet/minecraft/core/SectionPos;Lnet/minecraft/world/level/LightLayer;)V net/minecraft/server/level/ServerChunkCache/lambda$onLightUpdate$6 (Lnet/minecraft/core/SectionPos;Lnet/minecraft/world/level/LightLayer;)V +MD: net/minecraft/server/level/ServerChunkCache/m_184026_ (I)V net/minecraft/server/level/ServerChunkCache/setSimulationDistance (I)V +MD: net/minecraft/server/level/ServerChunkCache/m_196555_ ()Lnet/minecraft/world/level/chunk/storage/ChunkScanAccess; net/minecraft/server/level/ServerChunkCache/chunkScanner ()Lnet/minecraft/world/level/chunk/storage/ChunkScanAccess; +MD: net/minecraft/server/level/ServerChunkCache/m_201698_ (Ljava/util/function/BooleanSupplier;Z)V net/minecraft/server/level/ServerChunkCache/tick (Ljava/util/function/BooleanSupplier;Z)V +MD: net/minecraft/server/level/ServerChunkCache/m_201915_ ()V net/minecraft/server/level/ServerChunkCache/removeTicketsOnClosing ()V +MD: net/minecraft/server/level/ServerChunkCache/m_214994_ ()Lnet/minecraft/world/level/levelgen/RandomState; net/minecraft/server/level/ServerChunkCache/randomState ()Lnet/minecraft/world/level/levelgen/RandomState; +MD: net/minecraft/server/level/ServerChunkCache/m_255415_ ()Lnet/minecraft/world/level/chunk/ChunkGeneratorStructureState; net/minecraft/server/level/ServerChunkCache/getGeneratorState ()Lnet/minecraft/world/level/chunk/ChunkGeneratorStructureState; +MD: net/minecraft/server/level/ServerChunkCache/m_5563_ (II)Z net/minecraft/server/level/ServerChunkCache/hasChunk (II)Z +MD: net/minecraft/server/level/ServerChunkCache/m_6196_ (II)Lnet/minecraft/world/level/chunk/LightChunk; net/minecraft/server/level/ServerChunkCache/getChunkForLighting (II)Lnet/minecraft/world/level/chunk/LightChunk; +MD: net/minecraft/server/level/ServerChunkCache/m_6506_ (Lnet/minecraft/world/level/LightLayer;Lnet/minecraft/core/SectionPos;)V net/minecraft/server/level/ServerChunkCache/onLightUpdate (Lnet/minecraft/world/level/LightLayer;Lnet/minecraft/core/SectionPos;)V +MD: net/minecraft/server/level/ServerChunkCache/m_6692_ (Lnet/minecraft/world/level/ChunkPos;Z)V net/minecraft/server/level/ServerChunkCache/updateChunkForced (Lnet/minecraft/world/level/ChunkPos;Z)V +MD: net/minecraft/server/level/ServerChunkCache/m_6707_ (ZZ)V net/minecraft/server/level/ServerChunkCache/setSpawnSettings (ZZ)V +MD: net/minecraft/server/level/ServerChunkCache/m_6754_ ()Ljava/lang/String; net/minecraft/server/level/ServerChunkCache/gatherStats ()Ljava/lang/String; +MD: net/minecraft/server/level/ServerChunkCache/m_7131_ (II)Lnet/minecraft/world/level/chunk/LevelChunk; net/minecraft/server/level/ServerChunkCache/getChunkNow (II)Lnet/minecraft/world/level/chunk/LevelChunk; +MD: net/minecraft/server/level/ServerChunkCache/m_7587_ (IILnet/minecraft/world/level/chunk/ChunkStatus;Z)Lnet/minecraft/world/level/chunk/ChunkAccess; net/minecraft/server/level/ServerChunkCache/getChunk (IILnet/minecraft/world/level/chunk/ChunkStatus;Z)Lnet/minecraft/world/level/chunk/ChunkAccess; +MD: net/minecraft/server/level/ServerChunkCache/m_7653_ ()Lnet/minecraft/world/level/BlockGetter; net/minecraft/server/level/ServerChunkCache/getLevel ()Lnet/minecraft/world/level/BlockGetter; +MD: net/minecraft/server/level/ServerChunkCache/m_7653_ ()Lnet/minecraft/world/level/Level; net/minecraft/server/level/ServerChunkCache/getLevel ()Lnet/minecraft/world/level/Level; +MD: net/minecraft/server/level/ServerChunkCache/m_7827_ ()Lnet/minecraft/world/level/lighting/LevelLightEngine; net/minecraft/server/level/ServerChunkCache/getLightEngine ()Lnet/minecraft/world/level/lighting/LevelLightEngine; +MD: net/minecraft/server/level/ServerChunkCache/m_7827_ ()Lnet/minecraft/server/level/ThreadedLevelLightEngine; net/minecraft/server/level/ServerChunkCache/getLightEngine ()Lnet/minecraft/server/level/ThreadedLevelLightEngine; +MD: net/minecraft/server/level/ServerChunkCache/m_8354_ (I)V net/minecraft/server/level/ServerChunkCache/setViewDistance (I)V +MD: net/minecraft/server/level/ServerChunkCache/m_8364_ (J)Lnet/minecraft/server/level/ChunkHolder; net/minecraft/server/level/ServerChunkCache/getVisibleChunkIfPresent (J)Lnet/minecraft/server/level/ChunkHolder; +MD: net/minecraft/server/level/ServerChunkCache/m_8366_ (JLnet/minecraft/world/level/chunk/ChunkAccess;Lnet/minecraft/world/level/chunk/ChunkStatus;)V net/minecraft/server/level/ServerChunkCache/storeInCache (JLnet/minecraft/world/level/chunk/ChunkAccess;Lnet/minecraft/world/level/chunk/ChunkStatus;)V +MD: net/minecraft/server/level/ServerChunkCache/m_8370_ (JLjava/util/function/Consumer;)V net/minecraft/server/level/ServerChunkCache/getFullChunk (JLjava/util/function/Consumer;)V +MD: net/minecraft/server/level/ServerChunkCache/m_8385_ (Lnet/minecraft/server/level/ServerPlayer;)V net/minecraft/server/level/ServerChunkCache/move (Lnet/minecraft/server/level/ServerPlayer;)V +MD: net/minecraft/server/level/ServerChunkCache/m_8387_ (Lnet/minecraft/server/level/TicketType;Lnet/minecraft/world/level/ChunkPos;ILjava/lang/Object;)V net/minecraft/server/level/ServerChunkCache/addRegionTicket (Lnet/minecraft/server/level/TicketType;Lnet/minecraft/world/level/ChunkPos;ILjava/lang/Object;)V +MD: net/minecraft/server/level/ServerChunkCache/m_8394_ (Lnet/minecraft/world/entity/Entity;Lnet/minecraft/network/protocol/Packet;)V net/minecraft/server/level/ServerChunkCache/broadcastAndSend (Lnet/minecraft/world/entity/Entity;Lnet/minecraft/network/protocol/Packet;)V +MD: net/minecraft/server/level/ServerChunkCache/m_8405_ (Lnet/minecraft/world/level/chunk/ChunkAccess;)Lnet/minecraft/world/level/chunk/ChunkAccess; net/minecraft/server/level/ServerChunkCache/lambda$getChunk$1 (Lnet/minecraft/world/level/chunk/ChunkAccess;)Lnet/minecraft/world/level/chunk/ChunkAccess; +MD: net/minecraft/server/level/ServerChunkCache/m_8412_ (Ljava/util/concurrent/CompletableFuture;)Ljava/util/concurrent/CompletionStage; net/minecraft/server/level/ServerChunkCache/lambda$getChunkFuture$4 (Ljava/util/concurrent/CompletableFuture;)Ljava/util/concurrent/CompletionStage; +MD: net/minecraft/server/level/ServerChunkCache/m_8416_ (Lnet/minecraft/server/level/ChunkHolder;I)Z net/minecraft/server/level/ServerChunkCache/chunkAbsent (Lnet/minecraft/server/level/ChunkHolder;I)Z +MD: net/minecraft/server/level/ServerChunkCache/m_8419_ (Z)V net/minecraft/server/level/ServerChunkCache/save (Z)V +MD: net/minecraft/server/level/ServerChunkCache/m_8421_ (ZLnet/minecraft/server/level/ChunkHolder$ChunkLoadingFailure;)Lnet/minecraft/world/level/chunk/ChunkAccess; net/minecraft/server/level/ServerChunkCache/lambda$getChunk$2 (ZLnet/minecraft/server/level/ChunkHolder$ChunkLoadingFailure;)Lnet/minecraft/world/level/chunk/ChunkAccess; +MD: net/minecraft/server/level/ServerChunkCache/m_8427_ ()I net/minecraft/server/level/ServerChunkCache/getTickingGenerated ()I +MD: net/minecraft/server/level/ServerChunkCache/m_8431_ (IILnet/minecraft/world/level/chunk/ChunkStatus;Z)Ljava/util/concurrent/CompletableFuture; net/minecraft/server/level/ServerChunkCache/getChunkFuture (IILnet/minecraft/world/level/chunk/ChunkStatus;Z)Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/server/level/ServerChunkCache/m_8438_ (Lnet/minecraft/server/level/TicketType;Lnet/minecraft/world/level/ChunkPos;ILjava/lang/Object;)V net/minecraft/server/level/ServerChunkCache/removeRegionTicket (Lnet/minecraft/server/level/TicketType;Lnet/minecraft/world/level/ChunkPos;ILjava/lang/Object;)V +MD: net/minecraft/server/level/ServerChunkCache/m_8443_ (Lnet/minecraft/world/entity/Entity;)V net/minecraft/server/level/ServerChunkCache/removeEntity (Lnet/minecraft/world/entity/Entity;)V +MD: net/minecraft/server/level/ServerChunkCache/m_8445_ (Lnet/minecraft/world/entity/Entity;Lnet/minecraft/network/protocol/Packet;)V net/minecraft/server/level/ServerChunkCache/broadcast (Lnet/minecraft/world/entity/Entity;Lnet/minecraft/network/protocol/Packet;)V +MD: net/minecraft/server/level/ServerChunkCache/m_8448_ (Lnet/minecraft/world/level/ChunkPos;)Ljava/lang/String; net/minecraft/server/level/ServerChunkCache/getChunkDebugData (Lnet/minecraft/world/level/ChunkPos;)Ljava/lang/String; +MD: net/minecraft/server/level/ServerChunkCache/m_8450_ (Lnet/minecraft/core/BlockPos;)V net/minecraft/server/level/ServerChunkCache/blockChanged (Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/server/level/ServerChunkCache/m_8456_ (IILnet/minecraft/world/level/chunk/ChunkStatus;Z)Ljava/util/concurrent/CompletableFuture; net/minecraft/server/level/ServerChunkCache/getChunkFutureMainThread (IILnet/minecraft/world/level/chunk/ChunkStatus;Z)Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/server/level/ServerChunkCache/m_8463_ (Lnet/minecraft/world/entity/Entity;)V net/minecraft/server/level/ServerChunkCache/addEntity (Lnet/minecraft/world/entity/Entity;)V +MD: net/minecraft/server/level/ServerChunkCache/m_8466_ ()Z net/minecraft/server/level/ServerChunkCache/pollTask ()Z +MD: net/minecraft/server/level/ServerChunkCache/m_8467_ (IILnet/minecraft/world/level/chunk/ChunkStatus;Z)Ljava/util/concurrent/CompletableFuture; net/minecraft/server/level/ServerChunkCache/lambda$getChunkFuture$3 (IILnet/minecraft/world/level/chunk/ChunkStatus;Z)Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/server/level/ServerChunkCache/m_8475_ (IILnet/minecraft/world/level/chunk/ChunkStatus;Z)Lnet/minecraft/world/level/chunk/ChunkAccess; net/minecraft/server/level/ServerChunkCache/lambda$getChunk$0 (IILnet/minecraft/world/level/chunk/ChunkStatus;Z)Lnet/minecraft/world/level/chunk/ChunkAccess; +MD: net/minecraft/server/level/ServerChunkCache/m_8480_ ()I net/minecraft/server/level/ServerChunkCache/getPendingTasksCount ()I +MD: net/minecraft/server/level/ServerChunkCache/m_8481_ ()Lnet/minecraft/world/level/chunk/ChunkGenerator; net/minecraft/server/level/ServerChunkCache/getGenerator ()Lnet/minecraft/world/level/chunk/ChunkGenerator; +MD: net/minecraft/server/level/ServerChunkCache/m_8482_ ()I net/minecraft/server/level/ServerChunkCache/getLoadedChunksCount ()I +MD: net/minecraft/server/level/ServerChunkCache/m_8483_ ()Lnet/minecraft/world/level/storage/DimensionDataStorage; net/minecraft/server/level/ServerChunkCache/getDataStorage ()Lnet/minecraft/world/level/storage/DimensionDataStorage; +MD: net/minecraft/server/level/ServerChunkCache/m_8484_ ()Lnet/minecraft/world/entity/ai/village/poi/PoiManager; net/minecraft/server/level/ServerChunkCache/getPoiManager ()Lnet/minecraft/world/entity/ai/village/poi/PoiManager; +MD: net/minecraft/server/level/ServerChunkCache/m_8485_ ()Lnet/minecraft/world/level/NaturalSpawner$SpawnState; net/minecraft/server/level/ServerChunkCache/getLastSpawnState ()Lnet/minecraft/world/level/NaturalSpawner$SpawnState; +MD: net/minecraft/server/level/ServerChunkCache/m_8488_ ()V net/minecraft/server/level/ServerChunkCache/clearCache ()V +MD: net/minecraft/server/level/ServerChunkCache/m_8489_ ()Z net/minecraft/server/level/ServerChunkCache/runDistanceManagerUpdates ()Z +MD: net/minecraft/server/level/ServerChunkCache/m_8490_ ()V net/minecraft/server/level/ServerChunkCache/tickChunks ()V +MD: net/minecraft/server/level/ServerChunkCache$ChunkAndHolder/ (Lnet/minecraft/world/level/chunk/LevelChunk;Lnet/minecraft/server/level/ChunkHolder;)V net/minecraft/server/level/ServerChunkCache$ChunkAndHolder/ (Lnet/minecraft/world/level/chunk/LevelChunk;Lnet/minecraft/server/level/ChunkHolder;)V +MD: net/minecraft/server/level/ServerChunkCache$ChunkAndHolder/equals (Ljava/lang/Object;)Z net/minecraft/server/level/ServerChunkCache$ChunkAndHolder/equals (Ljava/lang/Object;)Z +MD: net/minecraft/server/level/ServerChunkCache$ChunkAndHolder/f_184028_ ()Lnet/minecraft/world/level/chunk/LevelChunk; net/minecraft/server/level/ServerChunkCache$ChunkAndHolder/chunk ()Lnet/minecraft/world/level/chunk/LevelChunk; +MD: net/minecraft/server/level/ServerChunkCache$ChunkAndHolder/f_184029_ ()Lnet/minecraft/server/level/ChunkHolder; net/minecraft/server/level/ServerChunkCache$ChunkAndHolder/holder ()Lnet/minecraft/server/level/ChunkHolder; +MD: net/minecraft/server/level/ServerChunkCache$ChunkAndHolder/hashCode ()I net/minecraft/server/level/ServerChunkCache$ChunkAndHolder/hashCode ()I +MD: net/minecraft/server/level/ServerChunkCache$ChunkAndHolder/toString ()Ljava/lang/String; net/minecraft/server/level/ServerChunkCache$ChunkAndHolder/toString ()Ljava/lang/String; +MD: net/minecraft/server/level/ServerChunkCache$MainThreadExecutor/ (Lnet/minecraft/server/level/ServerChunkCache;Lnet/minecraft/world/level/Level;)V net/minecraft/server/level/ServerChunkCache$MainThreadExecutor/ (Lnet/minecraft/server/level/ServerChunkCache;Lnet/minecraft/world/level/Level;)V +MD: net/minecraft/server/level/ServerChunkCache$MainThreadExecutor/m_5660_ ()Z net/minecraft/server/level/ServerChunkCache$MainThreadExecutor/scheduleExecutables ()Z +MD: net/minecraft/server/level/ServerChunkCache$MainThreadExecutor/m_6304_ ()Ljava/lang/Thread; net/minecraft/server/level/ServerChunkCache$MainThreadExecutor/getRunningThread ()Ljava/lang/Thread; +MD: net/minecraft/server/level/ServerChunkCache$MainThreadExecutor/m_6362_ (Ljava/lang/Runnable;)Z net/minecraft/server/level/ServerChunkCache$MainThreadExecutor/shouldRun (Ljava/lang/Runnable;)Z +MD: net/minecraft/server/level/ServerChunkCache$MainThreadExecutor/m_6367_ (Ljava/lang/Runnable;)V net/minecraft/server/level/ServerChunkCache$MainThreadExecutor/doRunTask (Ljava/lang/Runnable;)V +MD: net/minecraft/server/level/ServerChunkCache$MainThreadExecutor/m_6681_ (Ljava/lang/Runnable;)Ljava/lang/Runnable; net/minecraft/server/level/ServerChunkCache$MainThreadExecutor/wrapRunnable (Ljava/lang/Runnable;)Ljava/lang/Runnable; +MD: net/minecraft/server/level/ServerChunkCache$MainThreadExecutor/m_7245_ ()Z net/minecraft/server/level/ServerChunkCache$MainThreadExecutor/pollTask ()Z +MD: net/minecraft/server/level/ServerEntity/ ()V net/minecraft/server/level/ServerEntity/ ()V +MD: net/minecraft/server/level/ServerEntity/ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/Entity;IZLjava/util/function/Consumer;)V net/minecraft/server/level/ServerEntity/ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/Entity;IZLjava/util/function/Consumer;)V +MD: net/minecraft/server/level/ServerEntity/m_274361_ (Ljava/util/List;Lnet/minecraft/world/entity/Entity;)Z net/minecraft/server/level/ServerEntity/lambda$removedPassengers$1 (Ljava/util/List;Lnet/minecraft/world/entity/Entity;)Z +MD: net/minecraft/server/level/ServerEntity/m_277180_ (Ljava/util/List;Ljava/util/List;)Ljava/util/stream/Stream; net/minecraft/server/level/ServerEntity/removedPassengers (Ljava/util/List;Ljava/util/List;)Ljava/util/stream/Stream; +MD: net/minecraft/server/level/ServerEntity/m_289085_ (Lnet/minecraft/world/entity/Entity;)V net/minecraft/server/level/ServerEntity/lambda$sendChanges$0 (Lnet/minecraft/world/entity/Entity;)V +MD: net/minecraft/server/level/ServerEntity/m_289200_ (Lnet/minecraft/server/level/ServerPlayer;Ljava/util/function/Consumer;)V net/minecraft/server/level/ServerEntity/sendPairingData (Lnet/minecraft/server/level/ServerPlayer;Ljava/util/function/Consumer;)V +MD: net/minecraft/server/level/ServerEntity/m_8533_ ()V net/minecraft/server/level/ServerEntity/sendChanges ()V +MD: net/minecraft/server/level/ServerEntity/m_8534_ (Lnet/minecraft/server/level/ServerPlayer;)V net/minecraft/server/level/ServerEntity/removePairing (Lnet/minecraft/server/level/ServerPlayer;)V +MD: net/minecraft/server/level/ServerEntity/m_8538_ (Lnet/minecraft/network/protocol/Packet;)V net/minecraft/server/level/ServerEntity/broadcastAndSend (Lnet/minecraft/network/protocol/Packet;)V +MD: net/minecraft/server/level/ServerEntity/m_8541_ (Lnet/minecraft/server/level/ServerPlayer;)V net/minecraft/server/level/ServerEntity/addPairing (Lnet/minecraft/server/level/ServerPlayer;)V +MD: net/minecraft/server/level/ServerEntity/m_8543_ ()V net/minecraft/server/level/ServerEntity/sendDirtyEntityData ()V +MD: net/minecraft/server/level/ServerLevel/ ()V net/minecraft/server/level/ServerLevel/ ()V +MD: net/minecraft/server/level/ServerLevel/ (Lnet/minecraft/server/MinecraftServer;Ljava/util/concurrent/Executor;Lnet/minecraft/world/level/storage/LevelStorageSource$LevelStorageAccess;Lnet/minecraft/world/level/storage/ServerLevelData;Lnet/minecraft/resources/ResourceKey;Lnet/minecraft/world/level/dimension/LevelStem;Lnet/minecraft/server/level/progress/ChunkProgressListener;ZJLjava/util/List;ZLnet/minecraft/world/RandomSequences;)V net/minecraft/server/level/ServerLevel/ (Lnet/minecraft/server/MinecraftServer;Ljava/util/concurrent/Executor;Lnet/minecraft/world/level/storage/LevelStorageSource$LevelStorageAccess;Lnet/minecraft/world/level/storage/ServerLevelData;Lnet/minecraft/resources/ResourceKey;Lnet/minecraft/world/level/dimension/LevelStem;Lnet/minecraft/server/level/progress/ChunkProgressListener;ZJLjava/util/List;ZLnet/minecraft/world/RandomSequences;)V +MD: net/minecraft/server/level/ServerLevel/close ()V net/minecraft/server/level/ServerLevel/close ()V +MD: net/minecraft/server/level/ServerLevel/m_142325_ (Ljava/lang/String;Lnet/minecraft/world/level/saveddata/maps/MapItemSavedData;)V net/minecraft/server/level/ServerLevel/setMapData (Ljava/lang/String;Lnet/minecraft/world/level/saveddata/maps/MapItemSavedData;)V +MD: net/minecraft/server/level/ServerLevel/m_142646_ ()Lnet/minecraft/world/level/entity/LevelEntityGetter; net/minecraft/server/level/ServerLevel/getEntities ()Lnet/minecraft/world/level/entity/LevelEntityGetter; +MD: net/minecraft/server/level/ServerLevel/m_143248_ (Lnet/minecraft/core/BlockPos;)Ljava/util/Optional; net/minecraft/server/level/ServerLevel/findLightningRod (Lnet/minecraft/core/BlockPos;)Ljava/util/Optional; +MD: net/minecraft/server/level/ServerLevel/m_143261_ (Lnet/minecraft/server/level/ServerPlayer;Lnet/minecraft/world/entity/Entity$RemovalReason;)V net/minecraft/server/level/ServerLevel/removePlayerImmediately (Lnet/minecraft/server/level/ServerPlayer;Lnet/minecraft/world/entity/Entity$RemovalReason;)V +MD: net/minecraft/server/level/ServerLevel/m_143280_ (Lnet/minecraft/world/level/entity/EntityTypeTest;Ljava/util/function/Predicate;)Ljava/util/List; net/minecraft/server/level/ServerLevel/getEntities (Lnet/minecraft/world/level/entity/EntityTypeTest;Ljava/util/function/Predicate;)Ljava/util/List; +MD: net/minecraft/server/level/ServerLevel/m_143288_ (Lnet/minecraft/core/BlockPos;)Lnet/minecraft/core/BlockPos; net/minecraft/server/level/ServerLevel/findLightningTargetAround (Lnet/minecraft/core/BlockPos;)Lnet/minecraft/core/BlockPos; +MD: net/minecraft/server/level/ServerLevel/m_143299_ (Ljava/io/Writer;)V net/minecraft/server/level/ServerLevel/dumpBlockEntityTickers (Ljava/io/Writer;)V +MD: net/minecraft/server/level/ServerLevel/m_143301_ (Ljava/lang/Iterable;Ljava/util/function/Function;)Ljava/lang/String; net/minecraft/server/level/ServerLevel/getTypeCount (Ljava/lang/Iterable;Ljava/util/function/Function;)Ljava/lang/String; +MD: net/minecraft/server/level/ServerLevel/m_143311_ (Ljava/util/stream/Stream;)V net/minecraft/server/level/ServerLevel/addLegacyChunkEntities (Ljava/util/stream/Stream;)V +MD: net/minecraft/server/level/ServerLevel/m_143315_ ()V net/minecraft/server/level/ServerLevel/announceSleepStatus ()V +MD: net/minecraft/server/level/ServerLevel/m_143317_ (I)Lnet/minecraft/world/entity/Entity; net/minecraft/server/level/ServerLevel/getEntityOrPart (I)Lnet/minecraft/world/entity/Entity; +MD: net/minecraft/server/level/ServerLevel/m_143319_ (J)Z net/minecraft/server/level/ServerLevel/areEntitiesLoaded (J)Z +MD: net/minecraft/server/level/ServerLevel/m_143327_ (Ljava/util/stream/Stream;)V net/minecraft/server/level/ServerLevel/addWorldGenChunkEntities (Ljava/util/stream/Stream;)V +MD: net/minecraft/server/level/ServerLevel/m_143333_ ()Z net/minecraft/server/level/ServerLevel/canSleepThroughNights ()Z +MD: net/minecraft/server/level/ServerLevel/m_143334_ (Lnet/minecraft/world/entity/Entity;)V net/minecraft/server/level/ServerLevel/addDuringTeleport (Lnet/minecraft/world/entity/Entity;)V +MD: net/minecraft/server/level/ServerLevel/m_143340_ (Lnet/minecraft/core/BlockPos;)Z net/minecraft/server/level/ServerLevel/isPositionEntityTicking (Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/server/level/ServerLevel/m_143342_ (Lnet/minecraft/world/entity/Entity;)Z net/minecraft/server/level/ServerLevel/shouldDiscardEntity (Lnet/minecraft/world/entity/Entity;)Z +MD: net/minecraft/server/level/ServerLevel/m_143344_ ()I net/minecraft/server/level/ServerLevel/getLogicalHeight ()I +MD: net/minecraft/server/level/ServerLevel/m_183324_ ()Lnet/minecraft/world/ticks/LevelTicks; net/minecraft/server/level/ServerLevel/getFluidTicks ()Lnet/minecraft/world/ticks/LevelTicks; +MD: net/minecraft/server/level/ServerLevel/m_183324_ ()Lnet/minecraft/world/ticks/LevelTickAccess; net/minecraft/server/level/ServerLevel/getFluidTicks ()Lnet/minecraft/world/ticks/LevelTickAccess; +MD: net/minecraft/server/level/ServerLevel/m_183326_ ()Lnet/minecraft/world/ticks/LevelTickAccess; net/minecraft/server/level/ServerLevel/getBlockTicks ()Lnet/minecraft/world/ticks/LevelTickAccess; +MD: net/minecraft/server/level/ServerLevel/m_183326_ ()Lnet/minecraft/world/ticks/LevelTicks; net/minecraft/server/level/ServerLevel/getBlockTicks ()Lnet/minecraft/world/ticks/LevelTicks; +MD: net/minecraft/server/level/ServerLevel/m_183438_ (J)Z net/minecraft/server/level/ServerLevel/shouldTickBlocksAt (J)Z +MD: net/minecraft/server/level/ServerLevel/m_184052_ (Lnet/minecraft/core/BlockPos;)Lnet/minecraft/core/BlockPos; net/minecraft/server/level/ServerLevel/lambda$findLightningRod$10 (Lnet/minecraft/core/BlockPos;)Lnet/minecraft/core/BlockPos; +MD: net/minecraft/server/level/ServerLevel/m_184054_ (Lnet/minecraft/core/BlockPos;)Z net/minecraft/server/level/ServerLevel/lambda$findLightningRod$9 (Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/server/level/ServerLevel/m_184063_ (Lnet/minecraft/util/profiling/ProfilerFiller;Lnet/minecraft/world/entity/Entity;)V net/minecraft/server/level/ServerLevel/lambda$tick$6 (Lnet/minecraft/util/profiling/ProfilerFiller;Lnet/minecraft/world/entity/Entity;)V +MD: net/minecraft/server/level/ServerLevel/m_184076_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/material/Fluid;)V net/minecraft/server/level/ServerLevel/tickFluid (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/material/Fluid;)V +MD: net/minecraft/server/level/ServerLevel/m_184092_ (Lnet/minecraft/server/MinecraftServer;)Lnet/minecraft/world/level/storage/DimensionDataStorage; net/minecraft/server/level/ServerLevel/lambda$new$0 (Lnet/minecraft/server/MinecraftServer;)Lnet/minecraft/world/level/storage/DimensionDataStorage; +MD: net/minecraft/server/level/ServerLevel/m_184094_ (Lnet/minecraft/nbt/CompoundTag;)Lnet/minecraft/world/entity/raid/Raids; net/minecraft/server/level/ServerLevel/lambda$new$1 (Lnet/minecraft/nbt/CompoundTag;)Lnet/minecraft/world/entity/raid/Raids; +MD: net/minecraft/server/level/ServerLevel/m_184096_ ()V net/minecraft/server/level/ServerLevel/advanceWeatherCycle ()V +MD: net/minecraft/server/level/ServerLevel/m_184097_ ()V net/minecraft/server/level/ServerLevel/resetWeatherCycle ()V +MD: net/minecraft/server/level/ServerLevel/m_184098_ ()Lnet/minecraft/world/entity/raid/Raids; net/minecraft/server/level/ServerLevel/lambda$new$2 ()Lnet/minecraft/world/entity/raid/Raids; +MD: net/minecraft/server/level/ServerLevel/m_184099_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;)V net/minecraft/server/level/ServerLevel/lambda$makeObsidianPlatform$23 (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/server/level/ServerLevel/m_184102_ (Lnet/minecraft/world/level/chunk/LevelChunk;)V net/minecraft/server/level/ServerLevel/startTickingChunk (Lnet/minecraft/world/level/chunk/LevelChunk;)V +MD: net/minecraft/server/level/ServerLevel/m_184110_ (J)Z net/minecraft/server/level/ServerLevel/isPositionTickingWithEntitiesLoaded (J)Z +MD: net/minecraft/server/level/ServerLevel/m_184112_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/Block;)V net/minecraft/server/level/ServerLevel/tickBlock (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/Block;)V +MD: net/minecraft/server/level/ServerLevel/m_184115_ (Lnet/minecraft/server/level/ServerPlayer;)V net/minecraft/server/level/ServerLevel/lambda$wakeUpAllPlayers$7 (Lnet/minecraft/server/level/ServerPlayer;)V +MD: net/minecraft/server/level/ServerLevel/m_196557_ (Lnet/minecraft/world/level/chunk/ChunkAccess;)V net/minecraft/server/level/ServerLevel/onStructureStartsAvailable (Lnet/minecraft/world/level/chunk/ChunkAccess;)V +MD: net/minecraft/server/level/ServerLevel/m_201916_ (Lnet/minecraft/world/level/ChunkPos;)Z net/minecraft/server/level/ServerLevel/isNaturalSpawningAllowed (Lnet/minecraft/world/level/ChunkPos;)Z +MD: net/minecraft/server/level/ServerLevel/m_201918_ (Lnet/minecraft/core/BlockPos;)Z net/minecraft/server/level/ServerLevel/isNaturalSpawningAllowed (Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/server/level/ServerLevel/m_203675_ (III)Lnet/minecraft/core/Holder; net/minecraft/server/level/ServerLevel/getUncachedNoiseBiome (III)Lnet/minecraft/core/Holder; +MD: net/minecraft/server/level/ServerLevel/m_207559_ (Lnet/minecraft/core/BlockPos;)V net/minecraft/server/level/ServerLevel/lambda$onBlockStateChange$15 (Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/server/level/ServerLevel/m_207566_ (Lnet/minecraft/world/level/levelgen/structure/BoundingBox;Lnet/minecraft/world/level/BlockEventData;)Z net/minecraft/server/level/ServerLevel/lambda$clearBlockEvents$19 (Lnet/minecraft/world/level/levelgen/structure/BoundingBox;Lnet/minecraft/world/level/BlockEventData;)Z +MD: net/minecraft/server/level/ServerLevel/m_207569_ (Lit/unimi/dsi/fastutil/objects/Object2IntMap$Entry;)Ljava/lang/String; net/minecraft/server/level/ServerLevel/lambda$getTypeCount$21 (Lit/unimi/dsi/fastutil/objects/Object2IntMap$Entry;)Ljava/lang/String; +MD: net/minecraft/server/level/ServerLevel/m_207576_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;)V net/minecraft/server/level/ServerLevel/lambda$makeObsidianPlatform$22 (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/server/level/ServerLevel/m_207579_ (Lnet/minecraft/world/level/chunk/ChunkAccess;)V net/minecraft/server/level/ServerLevel/lambda$onStructureStartsAvailable$24 (Lnet/minecraft/world/level/chunk/ChunkAccess;)V +MD: net/minecraft/server/level/ServerLevel/m_213890_ (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/entity/Entity;Lnet/minecraft/core/Holder;Lnet/minecraft/sounds/SoundSource;FFJ)V net/minecraft/server/level/ServerLevel/playSeededSound (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/entity/Entity;Lnet/minecraft/core/Holder;Lnet/minecraft/sounds/SoundSource;FFJ)V +MD: net/minecraft/server/level/ServerLevel/m_213960_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/Block;Lnet/minecraft/core/BlockPos;Z)V net/minecraft/server/level/ServerLevel/neighborChanged (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/Block;Lnet/minecraft/core/BlockPos;Z)V +MD: net/minecraft/server/level/ServerLevel/m_214171_ (Lnet/minecraft/world/level/gameevent/GameEvent;Lnet/minecraft/world/phys/Vec3;Lnet/minecraft/world/level/gameevent/GameEvent$Context;)V net/minecraft/server/level/ServerLevel/gameEvent (Lnet/minecraft/world/level/gameevent/GameEvent;Lnet/minecraft/world/phys/Vec3;Lnet/minecraft/world/level/gameevent/GameEvent$Context;)V +MD: net/minecraft/server/level/ServerLevel/m_215010_ ()Lnet/minecraft/world/level/StructureManager; net/minecraft/server/level/ServerLevel/structureManager ()Lnet/minecraft/world/level/StructureManager; +MD: net/minecraft/server/level/ServerLevel/m_215011_ (Lnet/minecraft/tags/TagKey;Lnet/minecraft/core/BlockPos;IZ)Lnet/minecraft/core/BlockPos; net/minecraft/server/level/ServerLevel/findNearestMapStructure (Lnet/minecraft/tags/TagKey;Lnet/minecraft/core/BlockPos;IZ)Lnet/minecraft/core/BlockPos; +MD: net/minecraft/server/level/ServerLevel/m_215055_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Holder;)V net/minecraft/server/level/ServerLevel/lambda$onBlockStateChange$18 (Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Holder;)V +MD: net/minecraft/server/level/ServerLevel/m_215058_ (Lnet/minecraft/core/Holder;)Z net/minecraft/server/level/ServerLevel/lambda$findLightningRod$8 (Lnet/minecraft/core/Holder;)Z +MD: net/minecraft/server/level/ServerLevel/m_215069_ (Ljava/util/function/Predicate;Lnet/minecraft/core/BlockPos;III)Lcom/mojang/datafixers/util/Pair; net/minecraft/server/level/ServerLevel/findClosestBiome3d (Ljava/util/function/Predicate;Lnet/minecraft/core/BlockPos;III)Lcom/mojang/datafixers/util/Pair; +MD: net/minecraft/server/level/ServerLevel/m_215076_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Holder;)V net/minecraft/server/level/ServerLevel/lambda$onBlockStateChange$17 (Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Holder;)V +MD: net/minecraft/server/level/ServerLevel/m_215079_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Holder;)V net/minecraft/server/level/ServerLevel/lambda$onBlockStateChange$16 (Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Holder;)V +MD: net/minecraft/server/level/ServerLevel/m_215082_ ()Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager; net/minecraft/server/level/ServerLevel/getStructureManager ()Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager; +MD: net/minecraft/server/level/ServerLevel/m_246046_ ()Lnet/minecraft/world/flag/FeatureFlagSet; net/minecraft/server/level/ServerLevel/enabledFeatures ()Lnet/minecraft/world/flag/FeatureFlagSet; +MD: net/minecraft/server/level/ServerLevel/m_254877_ (Lnet/minecraft/world/entity/Entity;Lnet/minecraft/world/damagesource/DamageSource;Lnet/minecraft/world/level/ExplosionDamageCalculator;DDDFZLnet/minecraft/world/level/Level$ExplosionInteraction;)Lnet/minecraft/world/level/Explosion; net/minecraft/server/level/ServerLevel/explode (Lnet/minecraft/world/entity/Entity;Lnet/minecraft/world/damagesource/DamageSource;Lnet/minecraft/world/level/ExplosionDamageCalculator;DDDFZLnet/minecraft/world/level/Level$ExplosionInteraction;)Lnet/minecraft/world/level/Explosion; +MD: net/minecraft/server/level/ServerLevel/m_257149_ (Lnet/minecraft/world/entity/Entity;)Ljava/lang/String; net/minecraft/server/level/ServerLevel/lambda$tickPassenger$13 (Lnet/minecraft/world/entity/Entity;)Ljava/lang/String; +MD: net/minecraft/server/level/ServerLevel/m_257150_ (Lnet/minecraft/world/entity/Entity;)Ljava/lang/String; net/minecraft/server/level/ServerLevel/lambda$tickNonPassenger$12 (Lnet/minecraft/world/entity/Entity;)Ljava/lang/String; +MD: net/minecraft/server/level/ServerLevel/m_257151_ (Lnet/minecraft/world/entity/Entity;)Ljava/lang/String; net/minecraft/server/level/ServerLevel/lambda$getWatchdogStats$20 (Lnet/minecraft/world/entity/Entity;)Ljava/lang/String; +MD: net/minecraft/server/level/ServerLevel/m_260780_ (Ljava/util/function/Predicate;Ljava/util/List;ILnet/minecraft/world/entity/Entity;)Lnet/minecraft/util/AbortableIterationConsumer$Continuation; net/minecraft/server/level/ServerLevel/lambda$getEntities$14 (Ljava/util/function/Predicate;Ljava/util/List;ILnet/minecraft/world/entity/Entity;)Lnet/minecraft/util/AbortableIterationConsumer$Continuation; +MD: net/minecraft/server/level/ServerLevel/m_260813_ (Lnet/minecraft/world/level/entity/EntityTypeTest;Ljava/util/function/Predicate;Ljava/util/List;)V net/minecraft/server/level/ServerLevel/getEntities (Lnet/minecraft/world/level/entity/EntityTypeTest;Ljava/util/function/Predicate;Ljava/util/List;)V +MD: net/minecraft/server/level/ServerLevel/m_261156_ (Ljava/util/function/Predicate;I)Ljava/util/List; net/minecraft/server/level/ServerLevel/getPlayers (Ljava/util/function/Predicate;I)Ljava/util/List; +MD: net/minecraft/server/level/ServerLevel/m_261178_ (Lnet/minecraft/world/level/entity/EntityTypeTest;Ljava/util/function/Predicate;Ljava/util/List;I)V net/minecraft/server/level/ServerLevel/getEntities (Lnet/minecraft/world/level/entity/EntityTypeTest;Ljava/util/function/Predicate;Ljava/util/List;I)V +MD: net/minecraft/server/level/ServerLevel/m_262808_ (Lnet/minecraft/world/entity/player/Player;DDDLnet/minecraft/core/Holder;Lnet/minecraft/sounds/SoundSource;FFJ)V net/minecraft/server/level/ServerLevel/playSeededSound (Lnet/minecraft/world/entity/player/Player;DDDLnet/minecraft/core/Holder;Lnet/minecraft/sounds/SoundSource;FFJ)V +MD: net/minecraft/server/level/ServerLevel/m_269196_ (Lnet/minecraft/world/entity/Entity;Lnet/minecraft/world/damagesource/DamageSource;)V net/minecraft/server/level/ServerLevel/broadcastDamageEvent (Lnet/minecraft/world/entity/Entity;Lnet/minecraft/world/damagesource/DamageSource;)V +MD: net/minecraft/server/level/ServerLevel/m_287051_ (J)Lnet/minecraft/world/RandomSequences; net/minecraft/server/level/ServerLevel/lambda$new$4 (J)Lnet/minecraft/world/RandomSequences; +MD: net/minecraft/server/level/ServerLevel/m_287052_ (JLnet/minecraft/nbt/CompoundTag;)Lnet/minecraft/world/RandomSequences; net/minecraft/server/level/ServerLevel/lambda$new$3 (JLnet/minecraft/nbt/CompoundTag;)Lnet/minecraft/world/RandomSequences; +MD: net/minecraft/server/level/ServerLevel/m_287143_ (Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/util/RandomSource; net/minecraft/server/level/ServerLevel/getRandomSequence (Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/util/RandomSource; +MD: net/minecraft/server/level/ServerLevel/m_287200_ (Lnet/minecraft/world/level/dimension/end/EndDragonFight;)V net/minecraft/server/level/ServerLevel/setDragonFight (Lnet/minecraft/world/level/dimension/end/EndDragonFight;)V +MD: net/minecraft/server/level/ServerLevel/m_288114_ (J)Lnet/minecraft/world/RandomSequences; net/minecraft/server/level/ServerLevel/lambda$new$5 (J)Lnet/minecraft/world/RandomSequences; +MD: net/minecraft/server/level/ServerLevel/m_288231_ ()Lnet/minecraft/world/RandomSequences; net/minecraft/server/level/ServerLevel/getRandomSequences ()Lnet/minecraft/world/RandomSequences; +MD: net/minecraft/server/level/ServerLevel/m_289086_ (Lnet/minecraft/world/entity/LivingEntity;)Z net/minecraft/server/level/ServerLevel/lambda$findLightningTargetAround$11 (Lnet/minecraft/world/entity/LivingEntity;)Z +MD: net/minecraft/server/level/ServerLevel/m_46464_ ()Ljava/lang/String; net/minecraft/server/level/ServerLevel/gatherChunkSourceStats ()Ljava/lang/String; +MD: net/minecraft/server/level/ServerLevel/m_46586_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/Block;Lnet/minecraft/core/BlockPos;)V net/minecraft/server/level/ServerLevel/neighborChanged (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/Block;Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/server/level/ServerLevel/m_46590_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/Block;Lnet/minecraft/core/Direction;)V net/minecraft/server/level/ServerLevel/updateNeighborsAtExceptFromFacing (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/Block;Lnet/minecraft/core/Direction;)V +MD: net/minecraft/server/level/ServerLevel/m_46672_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/Block;)V net/minecraft/server/level/ServerLevel/updateNeighborsAt (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/Block;)V +MD: net/minecraft/server/level/ServerLevel/m_5898_ (Lnet/minecraft/world/entity/player/Player;ILnet/minecraft/core/BlockPos;I)V net/minecraft/server/level/ServerLevel/levelEvent (Lnet/minecraft/world/entity/player/Player;ILnet/minecraft/core/BlockPos;I)V +MD: net/minecraft/server/level/ServerLevel/m_6018_ ()Lnet/minecraft/server/level/ServerLevel; net/minecraft/server/level/ServerLevel/getLevel ()Lnet/minecraft/server/level/ServerLevel; +MD: net/minecraft/server/level/ServerLevel/m_6188_ ()Lnet/minecraft/world/scores/Scoreboard; net/minecraft/server/level/ServerLevel/getScoreboard ()Lnet/minecraft/world/scores/Scoreboard; +MD: net/minecraft/server/level/ServerLevel/m_6188_ ()Lnet/minecraft/server/ServerScoreboard; net/minecraft/server/level/ServerLevel/getScoreboard ()Lnet/minecraft/server/ServerScoreboard; +MD: net/minecraft/server/level/ServerLevel/m_6289_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/Block;)V net/minecraft/server/level/ServerLevel/blockUpdated (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/Block;)V +MD: net/minecraft/server/level/ServerLevel/m_6559_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/state/BlockState;)V net/minecraft/server/level/ServerLevel/onBlockStateChange (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/state/BlockState;)V +MD: net/minecraft/server/level/ServerLevel/m_6798_ (ILnet/minecraft/core/BlockPos;I)V net/minecraft/server/level/ServerLevel/globalLevelEvent (ILnet/minecraft/core/BlockPos;I)V +MD: net/minecraft/server/level/ServerLevel/m_6801_ (ILnet/minecraft/core/BlockPos;I)V net/minecraft/server/level/ServerLevel/destroyBlockProgress (ILnet/minecraft/core/BlockPos;I)V +MD: net/minecraft/server/level/ServerLevel/m_6815_ (I)Lnet/minecraft/world/entity/Entity; net/minecraft/server/level/ServerLevel/getEntity (I)Lnet/minecraft/world/entity/Entity; +MD: net/minecraft/server/level/ServerLevel/m_6907_ ()Ljava/util/List; net/minecraft/server/level/ServerLevel/players ()Ljava/util/List; +MD: net/minecraft/server/level/ServerLevel/m_7260_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/state/BlockState;I)V net/minecraft/server/level/ServerLevel/sendBlockUpdated (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/state/BlockState;I)V +MD: net/minecraft/server/level/ServerLevel/m_7328_ ()J net/minecraft/server/level/ServerLevel/getSeed ()J +MD: net/minecraft/server/level/ServerLevel/m_7354_ ()I net/minecraft/server/level/ServerLevel/getFreeMapId ()I +MD: net/minecraft/server/level/ServerLevel/m_7441_ ()Z net/minecraft/server/level/ServerLevel/noSave ()Z +MD: net/minecraft/server/level/ServerLevel/m_7465_ ()Lnet/minecraft/world/item/crafting/RecipeManager; net/minecraft/server/level/ServerLevel/getRecipeManager ()Lnet/minecraft/world/item/crafting/RecipeManager; +MD: net/minecraft/server/level/ServerLevel/m_7489_ (Ljava/lang/String;)Lnet/minecraft/world/level/saveddata/maps/MapItemSavedData; net/minecraft/server/level/ServerLevel/getMapData (Ljava/lang/String;)Lnet/minecraft/world/level/saveddata/maps/MapItemSavedData; +MD: net/minecraft/server/level/ServerLevel/m_7605_ (Lnet/minecraft/world/entity/Entity;B)V net/minecraft/server/level/ServerLevel/broadcastEntityEvent (Lnet/minecraft/world/entity/Entity;B)V +MD: net/minecraft/server/level/ServerLevel/m_7654_ ()Lnet/minecraft/server/MinecraftServer; net/minecraft/server/level/ServerLevel/getServer ()Lnet/minecraft/server/MinecraftServer; +MD: net/minecraft/server/level/ServerLevel/m_7696_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/Block;II)V net/minecraft/server/level/ServerLevel/blockEvent (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/Block;II)V +MD: net/minecraft/server/level/ServerLevel/m_7717_ (Lnet/minecraft/core/Direction;Z)F net/minecraft/server/level/ServerLevel/getShade (Lnet/minecraft/core/Direction;Z)F +MD: net/minecraft/server/level/ServerLevel/m_7726_ ()Lnet/minecraft/world/level/chunk/ChunkSource; net/minecraft/server/level/ServerLevel/getChunkSource ()Lnet/minecraft/world/level/chunk/ChunkSource; +MD: net/minecraft/server/level/ServerLevel/m_7726_ ()Lnet/minecraft/server/level/ServerChunkCache; net/minecraft/server/level/ServerLevel/getChunkSource ()Lnet/minecraft/server/level/ServerChunkCache; +MD: net/minecraft/server/level/ServerLevel/m_7966_ (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/core/BlockPos;)Z net/minecraft/server/level/ServerLevel/mayInteract (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/server/level/ServerLevel/m_7967_ (Lnet/minecraft/world/entity/Entity;)Z net/minecraft/server/level/ServerLevel/addFreshEntity (Lnet/minecraft/world/entity/Entity;)Z +MD: net/minecraft/server/level/ServerLevel/m_8583_ ()Ljava/lang/Iterable; net/minecraft/server/level/ServerLevel/getAllEntities ()Ljava/lang/Iterable; +MD: net/minecraft/server/level/ServerLevel/m_8584_ ()Z net/minecraft/server/level/ServerLevel/isFlat ()Z +MD: net/minecraft/server/level/ServerLevel/m_8586_ ()Lnet/minecraft/world/level/dimension/end/EndDragonFight; net/minecraft/server/level/ServerLevel/getDragonFight ()Lnet/minecraft/world/level/dimension/end/EndDragonFight; +MD: net/minecraft/server/level/ServerLevel/m_8590_ ()Ljava/lang/String; net/minecraft/server/level/ServerLevel/getWatchdogStats ()Ljava/lang/String; +MD: net/minecraft/server/level/ServerLevel/m_8602_ (IIZ)Z net/minecraft/server/level/ServerLevel/setChunkForced (IIZ)Z +MD: net/minecraft/server/level/ServerLevel/m_8606_ (IIZZ)V net/minecraft/server/level/ServerLevel/setWeatherParameters (IIZZ)V +MD: net/minecraft/server/level/ServerLevel/m_8615_ (J)V net/minecraft/server/level/ServerLevel/setDayTime (J)V +MD: net/minecraft/server/level/ServerLevel/m_8617_ (Lnet/minecraft/server/level/ServerLevel;)V net/minecraft/server/level/ServerLevel/makeObsidianPlatform (Lnet/minecraft/server/level/ServerLevel;)V +MD: net/minecraft/server/level/ServerLevel/m_8622_ (Lnet/minecraft/server/level/ServerPlayer;)V net/minecraft/server/level/ServerLevel/addDuringCommandTeleport (Lnet/minecraft/server/level/ServerPlayer;)V +MD: net/minecraft/server/level/ServerLevel/m_8624_ (Lnet/minecraft/server/level/ServerPlayer;Lnet/minecraft/core/particles/ParticleOptions;ZDDDIDDDD)Z net/minecraft/server/level/ServerLevel/sendParticles (Lnet/minecraft/server/level/ServerPlayer;Lnet/minecraft/core/particles/ParticleOptions;ZDDDIDDDD)Z +MD: net/minecraft/server/level/ServerLevel/m_8636_ (Lnet/minecraft/server/level/ServerPlayer;ZDDDLnet/minecraft/network/protocol/Packet;)Z net/minecraft/server/level/ServerLevel/sendParticles (Lnet/minecraft/server/level/ServerPlayer;ZDDDLnet/minecraft/network/protocol/Packet;)Z +MD: net/minecraft/server/level/ServerLevel/m_8643_ (Lnet/minecraft/util/ProgressListener;ZZ)V net/minecraft/server/level/ServerLevel/save (Lnet/minecraft/util/ProgressListener;ZZ)V +MD: net/minecraft/server/level/ServerLevel/m_8647_ (Lnet/minecraft/world/entity/Entity;)V net/minecraft/server/level/ServerLevel/tickNonPassenger (Lnet/minecraft/world/entity/Entity;)V +MD: net/minecraft/server/level/ServerLevel/m_8662_ (Lnet/minecraft/world/entity/Entity;Lnet/minecraft/world/entity/Entity;)V net/minecraft/server/level/ServerLevel/tickPassenger (Lnet/minecraft/world/entity/Entity;Lnet/minecraft/world/entity/Entity;)V +MD: net/minecraft/server/level/ServerLevel/m_8670_ (Lnet/minecraft/world/entity/ai/village/ReputationEventType;Lnet/minecraft/world/entity/Entity;Lnet/minecraft/world/entity/ReputationEventHandler;)V net/minecraft/server/level/ServerLevel/onReputationEvent (Lnet/minecraft/world/entity/ai/village/ReputationEventType;Lnet/minecraft/world/entity/Entity;Lnet/minecraft/world/entity/ReputationEventHandler;)V +MD: net/minecraft/server/level/ServerLevel/m_8698_ (Lnet/minecraft/world/level/BlockEventData;)Z net/minecraft/server/level/ServerLevel/doBlockEvent (Lnet/minecraft/world/level/BlockEventData;)Z +MD: net/minecraft/server/level/ServerLevel/m_8712_ (Lnet/minecraft/world/level/chunk/LevelChunk;)V net/minecraft/server/level/ServerLevel/unload (Lnet/minecraft/world/level/chunk/LevelChunk;)V +MD: net/minecraft/server/level/ServerLevel/m_8714_ (Lnet/minecraft/world/level/chunk/LevelChunk;I)V net/minecraft/server/level/ServerLevel/tickChunk (Lnet/minecraft/world/level/chunk/LevelChunk;I)V +MD: net/minecraft/server/level/ServerLevel/m_8722_ (Lnet/minecraft/world/level/levelgen/structure/BoundingBox;)V net/minecraft/server/level/ServerLevel/clearBlockEvents (Lnet/minecraft/world/level/levelgen/structure/BoundingBox;)V +MD: net/minecraft/server/level/ServerLevel/m_8733_ (Lnet/minecraft/core/BlockPos;F)V net/minecraft/server/level/ServerLevel/setDefaultSpawnPos (Lnet/minecraft/core/BlockPos;F)V +MD: net/minecraft/server/level/ServerLevel/m_8736_ (Lnet/minecraft/core/BlockPos;I)Z net/minecraft/server/level/ServerLevel/isCloseToVillage (Lnet/minecraft/core/BlockPos;I)Z +MD: net/minecraft/server/level/ServerLevel/m_8762_ (Lnet/minecraft/core/SectionPos;)Z net/minecraft/server/level/ServerLevel/isVillage (Lnet/minecraft/core/SectionPos;)Z +MD: net/minecraft/server/level/ServerLevel/m_8767_ (Lnet/minecraft/core/particles/ParticleOptions;DDDIDDDD)I net/minecraft/server/level/ServerLevel/sendParticles (Lnet/minecraft/core/particles/ParticleOptions;DDDIDDDD)I +MD: net/minecraft/server/level/ServerLevel/m_8781_ (Ljava/io/Writer;Ljava/lang/Iterable;)V net/minecraft/server/level/ServerLevel/dumpEntities (Ljava/io/Writer;Ljava/lang/Iterable;)V +MD: net/minecraft/server/level/ServerLevel/m_8786_ (Ljava/nio/file/Path;)V net/minecraft/server/level/ServerLevel/saveDebugReport (Ljava/nio/file/Path;)V +MD: net/minecraft/server/level/ServerLevel/m_8791_ (Ljava/util/UUID;)Lnet/minecraft/world/entity/Entity; net/minecraft/server/level/ServerLevel/getEntity (Ljava/util/UUID;)Lnet/minecraft/world/entity/Entity; +MD: net/minecraft/server/level/ServerLevel/m_8793_ (Ljava/util/function/BooleanSupplier;)V net/minecraft/server/level/ServerLevel/tick (Ljava/util/function/BooleanSupplier;)V +MD: net/minecraft/server/level/ServerLevel/m_8795_ (Ljava/util/function/Predicate;)Ljava/util/List; net/minecraft/server/level/ServerLevel/getPlayers (Ljava/util/function/Predicate;)Ljava/util/List; +MD: net/minecraft/server/level/ServerLevel/m_8799_ (ZZ)V net/minecraft/server/level/ServerLevel/tickCustomSpawners (ZZ)V +MD: net/minecraft/server/level/ServerLevel/m_8802_ (Lnet/minecraft/core/BlockPos;)Z net/minecraft/server/level/ServerLevel/isVillage (Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/server/level/ServerLevel/m_8804_ ()V net/minecraft/server/level/ServerLevel/wakeUpAllPlayers ()V +MD: net/minecraft/server/level/ServerLevel/m_8806_ ()V net/minecraft/server/level/ServerLevel/saveLevelData ()V +MD: net/minecraft/server/level/ServerLevel/m_8807_ ()V net/minecraft/server/level/ServerLevel/runBlockEvents ()V +MD: net/minecraft/server/level/ServerLevel/m_8809_ ()V net/minecraft/server/level/ServerLevel/tickTime ()V +MD: net/minecraft/server/level/ServerLevel/m_8817_ (Lnet/minecraft/server/level/ServerPlayer;)V net/minecraft/server/level/ServerLevel/addDuringPortalTeleport (Lnet/minecraft/server/level/ServerPlayer;)V +MD: net/minecraft/server/level/ServerLevel/m_8828_ (Lnet/minecraft/core/SectionPos;)I net/minecraft/server/level/ServerLevel/sectionsToVillage (Lnet/minecraft/core/SectionPos;)I +MD: net/minecraft/server/level/ServerLevel/m_8832_ (Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/entity/raid/Raid; net/minecraft/server/level/ServerLevel/getRaidAt (Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/entity/raid/Raid; +MD: net/minecraft/server/level/ServerLevel/m_8834_ (Lnet/minecraft/server/level/ServerPlayer;)V net/minecraft/server/level/ServerLevel/addNewPlayer (Lnet/minecraft/server/level/ServerPlayer;)V +MD: net/minecraft/server/level/ServerLevel/m_8843_ (Lnet/minecraft/core/BlockPos;)Z net/minecraft/server/level/ServerLevel/isRaided (Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/server/level/ServerLevel/m_8845_ (Lnet/minecraft/server/level/ServerPlayer;)V net/minecraft/server/level/ServerLevel/addRespawnedPlayer (Lnet/minecraft/server/level/ServerPlayer;)V +MD: net/minecraft/server/level/ServerLevel/m_8847_ (Lnet/minecraft/world/entity/Entity;)Z net/minecraft/server/level/ServerLevel/addWithUUID (Lnet/minecraft/world/entity/Entity;)Z +MD: net/minecraft/server/level/ServerLevel/m_8853_ (Lnet/minecraft/server/level/ServerPlayer;)V net/minecraft/server/level/ServerLevel/addPlayer (Lnet/minecraft/server/level/ServerPlayer;)V +MD: net/minecraft/server/level/ServerLevel/m_8857_ ()Ljava/util/List; net/minecraft/server/level/ServerLevel/getDragons ()Ljava/util/List; +MD: net/minecraft/server/level/ServerLevel/m_8860_ (Lnet/minecraft/world/entity/Entity;)Z net/minecraft/server/level/ServerLevel/tryAddFreshEntityWithPassengers (Lnet/minecraft/world/entity/Entity;)Z +MD: net/minecraft/server/level/ServerLevel/m_8871_ ()Lnet/minecraft/world/level/portal/PortalForcer; net/minecraft/server/level/ServerLevel/getPortalForcer ()Lnet/minecraft/world/level/portal/PortalForcer; +MD: net/minecraft/server/level/ServerLevel/m_8872_ (Lnet/minecraft/world/entity/Entity;)Z net/minecraft/server/level/ServerLevel/addEntity (Lnet/minecraft/world/entity/Entity;)Z +MD: net/minecraft/server/level/ServerLevel/m_8874_ ()Z net/minecraft/server/level/ServerLevel/isHandlingTick ()Z +MD: net/minecraft/server/level/ServerLevel/m_8878_ ()V net/minecraft/server/level/ServerLevel/updateSleepingPlayerList ()V +MD: net/minecraft/server/level/ServerLevel/m_8886_ ()V net/minecraft/server/level/ServerLevel/resetEmptyTime ()V +MD: net/minecraft/server/level/ServerLevel/m_8890_ ()Lnet/minecraft/server/level/ServerPlayer; net/minecraft/server/level/ServerLevel/getRandomPlayer ()Lnet/minecraft/server/level/ServerPlayer; +MD: net/minecraft/server/level/ServerLevel/m_8895_ ()Lnet/minecraft/world/level/storage/DimensionDataStorage; net/minecraft/server/level/ServerLevel/getDataStorage ()Lnet/minecraft/world/level/storage/DimensionDataStorage; +MD: net/minecraft/server/level/ServerLevel/m_8902_ ()Lit/unimi/dsi/fastutil/longs/LongSet; net/minecraft/server/level/ServerLevel/getForcedChunks ()Lit/unimi/dsi/fastutil/longs/LongSet; +MD: net/minecraft/server/level/ServerLevel/m_8904_ ()Lnet/minecraft/world/entity/ai/village/poi/PoiManager; net/minecraft/server/level/ServerLevel/getPoiManager ()Lnet/minecraft/world/entity/ai/village/poi/PoiManager; +MD: net/minecraft/server/level/ServerLevel/m_8905_ ()Lnet/minecraft/world/entity/raid/Raids; net/minecraft/server/level/ServerLevel/getRaids ()Lnet/minecraft/world/entity/raid/Raids; +MD: net/minecraft/server/level/ServerLevel/toString ()Ljava/lang/String; net/minecraft/server/level/ServerLevel/toString ()Ljava/lang/String; +MD: net/minecraft/server/level/ServerLevel$EntityCallbacks/ (Lnet/minecraft/server/level/ServerLevel;)V net/minecraft/server/level/ServerLevel$EntityCallbacks/ (Lnet/minecraft/server/level/ServerLevel;)V +MD: net/minecraft/server/level/ServerLevel$EntityCallbacks/m_141981_ (Ljava/lang/Object;)V net/minecraft/server/level/ServerLevel$EntityCallbacks/onTrackingEnd (Ljava/lang/Object;)V +MD: net/minecraft/server/level/ServerLevel$EntityCallbacks/m_141981_ (Lnet/minecraft/world/entity/Entity;)V net/minecraft/server/level/ServerLevel$EntityCallbacks/onTrackingEnd (Lnet/minecraft/world/entity/Entity;)V +MD: net/minecraft/server/level/ServerLevel$EntityCallbacks/m_141983_ (Ljava/lang/Object;)V net/minecraft/server/level/ServerLevel$EntityCallbacks/onTickingEnd (Ljava/lang/Object;)V +MD: net/minecraft/server/level/ServerLevel$EntityCallbacks/m_141983_ (Lnet/minecraft/world/entity/Entity;)V net/minecraft/server/level/ServerLevel$EntityCallbacks/onTickingEnd (Lnet/minecraft/world/entity/Entity;)V +MD: net/minecraft/server/level/ServerLevel$EntityCallbacks/m_141985_ (Ljava/lang/Object;)V net/minecraft/server/level/ServerLevel$EntityCallbacks/onTrackingStart (Ljava/lang/Object;)V +MD: net/minecraft/server/level/ServerLevel$EntityCallbacks/m_141985_ (Lnet/minecraft/world/entity/Entity;)V net/minecraft/server/level/ServerLevel$EntityCallbacks/onTrackingStart (Lnet/minecraft/world/entity/Entity;)V +MD: net/minecraft/server/level/ServerLevel$EntityCallbacks/m_141986_ (Lnet/minecraft/world/entity/Entity;)V net/minecraft/server/level/ServerLevel$EntityCallbacks/onDestroyed (Lnet/minecraft/world/entity/Entity;)V +MD: net/minecraft/server/level/ServerLevel$EntityCallbacks/m_141986_ (Ljava/lang/Object;)V net/minecraft/server/level/ServerLevel$EntityCallbacks/onDestroyed (Ljava/lang/Object;)V +MD: net/minecraft/server/level/ServerLevel$EntityCallbacks/m_141987_ (Lnet/minecraft/world/entity/Entity;)V net/minecraft/server/level/ServerLevel$EntityCallbacks/onTickingStart (Lnet/minecraft/world/entity/Entity;)V +MD: net/minecraft/server/level/ServerLevel$EntityCallbacks/m_141987_ (Ljava/lang/Object;)V net/minecraft/server/level/ServerLevel$EntityCallbacks/onTickingStart (Ljava/lang/Object;)V +MD: net/minecraft/server/level/ServerLevel$EntityCallbacks/m_141989_ (Ljava/lang/Object;)V net/minecraft/server/level/ServerLevel$EntityCallbacks/onCreated (Ljava/lang/Object;)V +MD: net/minecraft/server/level/ServerLevel$EntityCallbacks/m_141989_ (Lnet/minecraft/world/entity/Entity;)V net/minecraft/server/level/ServerLevel$EntityCallbacks/onCreated (Lnet/minecraft/world/entity/Entity;)V +MD: net/minecraft/server/level/ServerLevel$EntityCallbacks/m_214006_ (Ljava/lang/Object;)V net/minecraft/server/level/ServerLevel$EntityCallbacks/onSectionChange (Ljava/lang/Object;)V +MD: net/minecraft/server/level/ServerLevel$EntityCallbacks/m_214006_ (Lnet/minecraft/world/entity/Entity;)V net/minecraft/server/level/ServerLevel$EntityCallbacks/onSectionChange (Lnet/minecraft/world/entity/Entity;)V +MD: net/minecraft/server/level/ServerPlayer/ ()V net/minecraft/server/level/ServerPlayer/ ()V +MD: net/minecraft/server/level/ServerPlayer/ (Lnet/minecraft/server/MinecraftServer;Lnet/minecraft/server/level/ServerLevel;Lcom/mojang/authlib/GameProfile;)V net/minecraft/server/level/ServerPlayer/ (Lnet/minecraft/server/MinecraftServer;Lnet/minecraft/server/level/ServerLevel;Lcom/mojang/authlib/GameProfile;)V +MD: net/minecraft/server/level/ServerPlayer/m_141973_ (Lnet/minecraft/world/effect/MobEffectInstance;ZLnet/minecraft/world/entity/Entity;)V net/minecraft/server/level/ServerPlayer/onEffectUpdated (Lnet/minecraft/world/effect/MobEffectInstance;ZLnet/minecraft/world/entity/Entity;)V +MD: net/minecraft/server/level/ServerPlayer/m_142098_ (DDD)V net/minecraft/server/level/ServerPlayer/dismountTo (DDD)V +MD: net/minecraft/server/level/ServerPlayer/m_142106_ (Lnet/minecraft/world/item/ItemStack;)V net/minecraft/server/level/ServerPlayer/updateUsingItem (Lnet/minecraft/world/item/ItemStack;)V +MD: net/minecraft/server/level/ServerPlayer/m_142265_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;)Z net/minecraft/server/level/ServerPlayer/mayInteract (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/server/level/ServerPlayer/m_142540_ (Lnet/minecraft/world/effect/MobEffectInstance;Lnet/minecraft/world/entity/Entity;)V net/minecraft/server/level/ServerPlayer/onEffectAdded (Lnet/minecraft/world/effect/MobEffectInstance;Lnet/minecraft/world/entity/Entity;)V +MD: net/minecraft/server/level/ServerPlayer/m_143387_ ()Z net/minecraft/server/level/ServerPlayer/isTextFilteringEnabled ()Z +MD: net/minecraft/server/level/ServerPlayer/m_143399_ (Lnet/minecraft/world/inventory/AbstractContainerMenu;)V net/minecraft/server/level/ServerPlayer/initMenu (Lnet/minecraft/world/inventory/AbstractContainerMenu;)V +MD: net/minecraft/server/level/ServerPlayer/m_143403_ (Lnet/minecraft/world/level/GameType;)Z net/minecraft/server/level/ServerPlayer/setGameMode (Lnet/minecraft/world/level/GameType;)Z +MD: net/minecraft/server/level/ServerPlayer/m_143408_ (Ljava/lang/String;Ljava/lang/String;ZLnet/minecraft/network/chat/Component;)V net/minecraft/server/level/ServerPlayer/sendTexturePack (Ljava/lang/String;Ljava/lang/String;ZLnet/minecraft/network/chat/Component;)V +MD: net/minecraft/server/level/ServerPlayer/m_143413_ (Lnet/minecraft/nbt/CompoundTag;Ljava/lang/String;)Lnet/minecraft/world/level/GameType; net/minecraft/server/level/ServerPlayer/readPlayerMode (Lnet/minecraft/nbt/CompoundTag;Ljava/lang/String;)Lnet/minecraft/world/level/GameType; +MD: net/minecraft/server/level/ServerPlayer/m_143418_ (Lnet/minecraft/network/chat/Component;Lnet/minecraft/network/chat/Style;)Lnet/minecraft/network/chat/Style; net/minecraft/server/level/ServerPlayer/lambda$die$4 (Lnet/minecraft/network/chat/Component;Lnet/minecraft/network/chat/Style;)Lnet/minecraft/network/chat/Style; +MD: net/minecraft/server/level/ServerPlayer/m_143421_ (Lnet/minecraft/server/level/ServerPlayer;)Z net/minecraft/server/level/ServerPlayer/shouldFilterMessageTo (Lnet/minecraft/server/level/ServerPlayer;)Z +MD: net/minecraft/server/level/ServerPlayer/m_143423_ (Lnet/minecraft/world/level/GameType;)Lnet/minecraft/world/level/GameType; net/minecraft/server/level/ServerPlayer/calculateGameModeForNewPlayer (Lnet/minecraft/world/level/GameType;)Lnet/minecraft/world/level/GameType; +MD: net/minecraft/server/level/ServerPlayer/m_143427_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/server/level/ServerPlayer/loadGameTypes (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/server/level/ServerPlayer/m_143429_ ()V net/minecraft/server/level/ServerPlayer/initInventoryMenu ()V +MD: net/minecraft/server/level/ServerPlayer/m_143430_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/server/level/ServerPlayer/storeGameTypes (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/server/level/ServerPlayer/m_143432_ ()Z net/minecraft/server/level/ServerPlayer/canChatInColor ()Z +MD: net/minecraft/server/level/ServerPlayer/m_182294_ (Z)Z net/minecraft/server/level/ServerPlayer/drop (Z)Z +MD: net/minecraft/server/level/ServerPlayer/m_183318_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;ZLnet/minecraft/world/level/border/WorldBorder;)Ljava/util/Optional; net/minecraft/server/level/ServerPlayer/getExitPortal (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;ZLnet/minecraft/world/level/border/WorldBorder;)Ljava/util/Optional; +MD: net/minecraft/server/level/ServerPlayer/m_183634_ ()V net/minecraft/server/level/ServerPlayer/resetFallDistance ()V +MD: net/minecraft/server/level/ServerPlayer/m_184128_ ()Z net/minecraft/server/level/ServerPlayer/allowsListing ()Z +MD: net/minecraft/server/level/ServerPlayer/m_184135_ (Lnet/minecraft/world/level/ChunkPos;Lnet/minecraft/network/protocol/Packet;)V net/minecraft/server/level/ServerPlayer/trackChunk (Lnet/minecraft/world/level/ChunkPos;Lnet/minecraft/network/protocol/Packet;)V +MD: net/minecraft/server/level/ServerPlayer/m_184139_ ()V net/minecraft/server/level/ServerPlayer/trackStartFallingPosition ()V +MD: net/minecraft/server/level/ServerPlayer/m_184140_ ()V net/minecraft/server/level/ServerPlayer/trackEnteredOrExitedLavaOnVehicle ()V +MD: net/minecraft/server/level/ServerPlayer/m_21053_ (Lnet/minecraft/world/entity/item/ItemEntity;)V net/minecraft/server/level/ServerPlayer/onItemPickup (Lnet/minecraft/world/entity/item/ItemEntity;)V +MD: net/minecraft/server/level/ServerPlayer/m_213846_ (Lnet/minecraft/network/chat/Component;)V net/minecraft/server/level/ServerPlayer/sendSystemMessage (Lnet/minecraft/network/chat/Component;)V +MD: net/minecraft/server/level/ServerPlayer/m_215109_ (Lnet/minecraft/network/protocol/status/ServerStatus;)V net/minecraft/server/level/ServerPlayer/sendServerStatus (Lnet/minecraft/network/protocol/status/ServerStatus;)V +MD: net/minecraft/server/level/ServerPlayer/m_240399_ (Z)Z net/minecraft/server/level/ServerPlayer/acceptsSystemMessages (Z)Z +MD: net/minecraft/server/level/ServerPlayer/m_240418_ (Lnet/minecraft/network/chat/Component;Z)V net/minecraft/server/level/ServerPlayer/sendSystemMessage (Lnet/minecraft/network/chat/Component;Z)V +MD: net/minecraft/server/level/ServerPlayer/m_240422_ ()Z net/minecraft/server/level/ServerPlayer/acceptsChatMessages ()Z +MD: net/minecraft/server/level/ServerPlayer/m_243040_ (Lnet/minecraft/network/chat/Component;)Lnet/minecraft/network/protocol/Packet; net/minecraft/server/level/ServerPlayer/lambda$sendSystemMessage$11 (Lnet/minecraft/network/chat/Component;)Lnet/minecraft/network/protocol/Packet; +MD: net/minecraft/server/level/ServerPlayer/m_244881_ (Lnet/minecraft/world/entity/monster/warden/WardenSpawnTracker;)V net/minecraft/server/level/ServerPlayer/lambda$readAdditionalSaveData$0 (Lnet/minecraft/world/entity/monster/warden/WardenSpawnTracker;)V +MD: net/minecraft/server/level/ServerPlayer/m_244882_ (Lnet/minecraft/nbt/CompoundTag;Lnet/minecraft/nbt/Tag;)V net/minecraft/server/level/ServerPlayer/lambda$addAdditionalSaveData$2 (Lnet/minecraft/nbt/CompoundTag;Lnet/minecraft/nbt/Tag;)V +MD: net/minecraft/server/level/ServerPlayer/m_245069_ (Lnet/minecraft/network/chat/OutgoingChatMessage;ZLnet/minecraft/network/chat/ChatType$Bound;)V net/minecraft/server/level/ServerPlayer/sendChatMessage (Lnet/minecraft/network/chat/OutgoingChatMessage;ZLnet/minecraft/network/chat/ChatType$Bound;)V +MD: net/minecraft/server/level/ServerPlayer/m_245217_ ()Ljava/util/Optional; net/minecraft/server/level/ServerPlayer/getWardenSpawnTracker ()Ljava/util/Optional; +MD: net/minecraft/server/level/ServerPlayer/m_246404_ ()Lnet/minecraft/network/chat/RemoteChatSession; net/minecraft/server/level/ServerPlayer/getChatSession ()Lnet/minecraft/network/chat/RemoteChatSession; +MD: net/minecraft/server/level/ServerPlayer/m_246847_ (DDD)V net/minecraft/server/level/ServerPlayer/teleportRelative (DDD)V +MD: net/minecraft/server/level/ServerPlayer/m_252981_ (Lnet/minecraft/network/chat/RemoteChatSession;)V net/minecraft/server/level/ServerPlayer/setChatSession (Lnet/minecraft/network/chat/RemoteChatSession;)V +MD: net/minecraft/server/level/ServerPlayer/m_264318_ (Lnet/minecraft/server/level/ServerLevel;DDDLjava/util/Set;FF)Z net/minecraft/server/level/ServerPlayer/teleportTo (Lnet/minecraft/server/level/ServerLevel;DDDLjava/util/Set;FF)Z +MD: net/minecraft/server/level/ServerPlayer/m_269405_ (DD)V net/minecraft/server/level/ServerPlayer/indicateDamage (DD)V +MD: net/minecraft/server/level/ServerPlayer/m_280300_ (Lnet/minecraft/world/item/crafting/Recipe;Ljava/util/List;)V net/minecraft/server/level/ServerPlayer/triggerRecipeCrafted (Lnet/minecraft/world/item/crafting/Recipe;Ljava/util/List;)V +MD: net/minecraft/server/level/ServerPlayer/m_284127_ (Lnet/minecraft/server/level/ServerLevel;)V net/minecraft/server/level/ServerPlayer/setServerLevel (Lnet/minecraft/server/level/ServerLevel;)V +MD: net/minecraft/server/level/ServerPlayer/m_284548_ ()Lnet/minecraft/server/level/ServerLevel; net/minecraft/server/level/ServerPlayer/serverLevel ()Lnet/minecraft/server/level/ServerLevel; +MD: net/minecraft/server/level/ServerPlayer/m_287054_ (Lnet/minecraft/world/entity/player/Inventory;I)V net/minecraft/server/level/ServerPlayer/lambda$drop$12 (Lnet/minecraft/world/entity/player/Inventory;I)V +MD: net/minecraft/server/level/ServerPlayer/m_289087_ (Lnet/minecraft/network/chat/Component;)Lnet/minecraft/network/protocol/Packet; net/minecraft/server/level/ServerPlayer/lambda$die$5 (Lnet/minecraft/network/chat/Component;)Lnet/minecraft/network/protocol/Packet; +MD: net/minecraft/server/level/ServerPlayer/m_289599_ (DDDZ)V net/minecraft/server/level/ServerPlayer/doCheckFallDamage (DDDZ)V +MD: net/minecraft/server/level/ServerPlayer/m_5489_ (Lnet/minecraft/server/level/ServerLevel;)Lnet/minecraft/world/entity/Entity; net/minecraft/server/level/ServerPlayer/changeDimension (Lnet/minecraft/server/level/ServerLevel;)Lnet/minecraft/world/entity/Entity; +MD: net/minecraft/server/level/ServerPlayer/m_5654_ ()Lnet/minecraft/network/protocol/Packet; net/minecraft/server/level/ServerPlayer/getAddEntityPacket ()Lnet/minecraft/network/protocol/Packet; +MD: net/minecraft/server/level/ServerPlayer/m_5661_ (Lnet/minecraft/network/chat/Component;Z)V net/minecraft/server/level/ServerPlayer/displayClientMessage (Lnet/minecraft/network/chat/Component;Z)V +MD: net/minecraft/server/level/ServerPlayer/m_5700_ (Lnet/minecraft/world/entity/Entity;)V net/minecraft/server/level/ServerPlayer/magicCrit (Lnet/minecraft/world/entity/Entity;)V +MD: net/minecraft/server/level/ServerPlayer/m_5704_ (Lnet/minecraft/world/entity/Entity;)V net/minecraft/server/level/ServerPlayer/crit (Lnet/minecraft/world/entity/Entity;)V +MD: net/minecraft/server/level/ServerPlayer/m_5706_ (Lnet/minecraft/world/entity/Entity;)V net/minecraft/server/level/ServerPlayer/attack (Lnet/minecraft/world/entity/Entity;)V +MD: net/minecraft/server/level/ServerPlayer/m_5802_ (Lnet/minecraft/core/BlockPos;)V net/minecraft/server/level/ServerPlayer/startSleeping (Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/server/level/ServerPlayer/m_5806_ (Lnet/minecraft/core/BlockPos;)V net/minecraft/server/level/ServerPlayer/onChangedBlock (Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/server/level/ServerPlayer/m_5833_ ()Z net/minecraft/server/level/ServerPlayer/isSpectator ()Z +MD: net/minecraft/server/level/ServerPlayer/m_5893_ (Lnet/minecraft/world/MenuProvider;)Ljava/util/OptionalInt; net/minecraft/server/level/ServerPlayer/openMenu (Lnet/minecraft/world/MenuProvider;)Ljava/util/OptionalInt; +MD: net/minecraft/server/level/ServerPlayer/m_5993_ (Lnet/minecraft/world/entity/Entity;ILnet/minecraft/world/damagesource/DamageSource;)V net/minecraft/server/level/ServerPlayer/awardKillScore (Lnet/minecraft/world/entity/Entity;ILnet/minecraft/world/damagesource/DamageSource;)V +MD: net/minecraft/server/level/ServerPlayer/m_6021_ (DDD)V net/minecraft/server/level/ServerPlayer/teleportTo (DDD)V +MD: net/minecraft/server/level/ServerPlayer/m_6027_ (DDD)V net/minecraft/server/level/ServerPlayer/moveTo (DDD)V +MD: net/minecraft/server/level/ServerPlayer/m_6145_ (ZZ)V net/minecraft/server/level/ServerPlayer/stopSleepInBed (ZZ)V +MD: net/minecraft/server/level/ServerPlayer/m_6278_ (Lnet/minecraft/stats/Stat;I)V net/minecraft/server/level/ServerPlayer/awardStat (Lnet/minecraft/stats/Stat;I)V +MD: net/minecraft/server/level/ServerPlayer/m_6330_ (Lnet/minecraft/sounds/SoundEvent;Lnet/minecraft/sounds/SoundSource;FF)V net/minecraft/server/level/ServerPlayer/playNotifySound (Lnet/minecraft/sounds/SoundEvent;Lnet/minecraft/sounds/SoundSource;FF)V +MD: net/minecraft/server/level/ServerPlayer/m_6459_ (Lnet/minecraft/server/level/ServerPlayer;)Z net/minecraft/server/level/ServerPlayer/broadcastToPlayer (Lnet/minecraft/server/level/ServerPlayer;)Z +MD: net/minecraft/server/level/ServerPlayer/m_6469_ (Lnet/minecraft/world/damagesource/DamageSource;F)Z net/minecraft/server/level/ServerPlayer/hurt (Lnet/minecraft/world/damagesource/DamageSource;F)Z +MD: net/minecraft/server/level/ServerPlayer/m_6658_ (Lnet/minecraft/world/entity/animal/horse/AbstractHorse;Lnet/minecraft/world/Container;)V net/minecraft/server/level/ServerPlayer/openHorseInventory (Lnet/minecraft/world/entity/animal/horse/AbstractHorse;Lnet/minecraft/world/Container;)V +MD: net/minecraft/server/level/ServerPlayer/m_6667_ (Lnet/minecraft/world/damagesource/DamageSource;)V net/minecraft/server/level/ServerPlayer/die (Lnet/minecraft/world/damagesource/DamageSource;)V +MD: net/minecraft/server/level/ServerPlayer/m_6673_ (Lnet/minecraft/world/damagesource/DamageSource;)Z net/minecraft/server/level/ServerPlayer/isInvulnerableTo (Lnet/minecraft/world/damagesource/DamageSource;)Z +MD: net/minecraft/server/level/ServerPlayer/m_6674_ (Lnet/minecraft/world/InteractionHand;)V net/minecraft/server/level/ServerPlayer/swing (Lnet/minecraft/world/InteractionHand;)V +MD: net/minecraft/server/level/ServerPlayer/m_6749_ (I)V net/minecraft/server/level/ServerPlayer/giveExperienceLevels (I)V +MD: net/minecraft/server/level/ServerPlayer/m_6756_ (I)V net/minecraft/server/level/ServerPlayer/giveExperiencePoints (I)V +MD: net/minecraft/server/level/ServerPlayer/m_6763_ (Lnet/minecraft/world/level/block/state/BlockState;)V net/minecraft/server/level/ServerPlayer/onInsideBlock (Lnet/minecraft/world/level/block/state/BlockState;)V +MD: net/minecraft/server/level/ServerPlayer/m_6885_ ()V net/minecraft/server/level/ServerPlayer/onUpdateAbilities ()V +MD: net/minecraft/server/level/ServerPlayer/m_6915_ ()V net/minecraft/server/level/ServerPlayer/closeContainer ()V +MD: net/minecraft/server/level/ServerPlayer/m_6986_ (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/InteractionHand;)V net/minecraft/server/level/ServerPlayer/openItemGui (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/InteractionHand;)V +MD: net/minecraft/server/level/ServerPlayer/m_7099_ (Lnet/minecraft/world/entity/player/Player;)Z net/minecraft/server/level/ServerPlayer/canHarmPlayer (Lnet/minecraft/world/entity/player/Player;)Z +MD: net/minecraft/server/level/ServerPlayer/m_7166_ (Lnet/minecraft/stats/Stat;)V net/minecraft/server/level/ServerPlayer/resetStat (Lnet/minecraft/stats/Stat;)V +MD: net/minecraft/server/level/ServerPlayer/m_7197_ (Lnet/minecraft/world/item/ItemStack;ZZ)Lnet/minecraft/world/entity/item/ItemEntity; net/minecraft/server/level/ServerPlayer/drop (Lnet/minecraft/world/item/ItemStack;ZZ)Lnet/minecraft/world/entity/item/ItemEntity; +MD: net/minecraft/server/level/ServerPlayer/m_7279_ (Ljava/util/Collection;)I net/minecraft/server/level/ServerPlayer/resetRecipes (Ljava/util/Collection;)I +MD: net/minecraft/server/level/ServerPlayer/m_7281_ (Ljava/util/Collection;)I net/minecraft/server/level/ServerPlayer/awardRecipes (Ljava/util/Collection;)I +MD: net/minecraft/server/level/ServerPlayer/m_7285_ (Lnet/minecraft/world/effect/MobEffectInstance;)V net/minecraft/server/level/ServerPlayer/onEffectRemoved (Lnet/minecraft/world/effect/MobEffectInstance;)V +MD: net/minecraft/server/level/ServerPlayer/m_7378_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/server/level/ServerPlayer/readAdditionalSaveData (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/server/level/ServerPlayer/m_7380_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/server/level/ServerPlayer/addAdditionalSaveData (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/server/level/ServerPlayer/m_7408_ (Lnet/minecraft/world/item/ItemStack;I)V net/minecraft/server/level/ServerPlayer/onEnchantmentPerformed (Lnet/minecraft/world/item/ItemStack;I)V +MD: net/minecraft/server/level/ServerPlayer/m_7478_ ()Lnet/minecraft/world/item/ItemCooldowns; net/minecraft/server/level/ServerPlayer/createItemCooldowns ()Lnet/minecraft/world/item/ItemCooldowns; +MD: net/minecraft/server/level/ServerPlayer/m_7500_ ()Z net/minecraft/server/level/ServerPlayer/isCreative ()Z +MD: net/minecraft/server/level/ServerPlayer/m_7618_ (Lnet/minecraft/commands/arguments/EntityAnchorArgument$Anchor;Lnet/minecraft/world/phys/Vec3;)V net/minecraft/server/level/ServerPlayer/lookAt (Lnet/minecraft/commands/arguments/EntityAnchorArgument$Anchor;Lnet/minecraft/world/phys/Vec3;)V +MD: net/minecraft/server/level/ServerPlayer/m_7662_ (ILnet/minecraft/world/item/trading/MerchantOffers;IIZZ)V net/minecraft/server/level/ServerPlayer/sendMerchantOffers (ILnet/minecraft/world/item/trading/MerchantOffers;IIZZ)V +MD: net/minecraft/server/level/ServerPlayer/m_7698_ (Lnet/minecraft/world/level/block/entity/CommandBlockEntity;)V net/minecraft/server/level/ServerPlayer/openCommandBlock (Lnet/minecraft/world/level/block/entity/CommandBlockEntity;)V +MD: net/minecraft/server/level/ServerPlayer/m_7720_ (Lnet/minecraft/core/BlockPos;)Lcom/mojang/datafixers/util/Either; net/minecraft/server/level/ServerPlayer/startSleepInBed (Lnet/minecraft/core/BlockPos;)Lcom/mojang/datafixers/util/Either; +MD: net/minecraft/server/level/ServerPlayer/m_7739_ (Lnet/minecraft/world/level/block/entity/SignBlockEntity;Z)V net/minecraft/server/level/ServerPlayer/openTextEdit (Lnet/minecraft/world/level/block/entity/SignBlockEntity;Z)V +MD: net/minecraft/server/level/ServerPlayer/m_7840_ (DZLnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/BlockPos;)V net/minecraft/server/level/ServerPlayer/checkFallDamage (DZLnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/server/level/ServerPlayer/m_7902_ ([Lnet/minecraft/resources/ResourceLocation;)V net/minecraft/server/level/ServerPlayer/awardRecipesByKey ([Lnet/minecraft/resources/ResourceLocation;)V +MD: net/minecraft/server/level/ServerPlayer/m_7937_ (Lnet/minecraft/server/level/ServerLevel;)Lnet/minecraft/world/level/portal/PortalInfo; net/minecraft/server/level/ServerPlayer/findDimensionEntryPoint (Lnet/minecraft/server/level/ServerLevel;)Lnet/minecraft/world/level/portal/PortalInfo; +MD: net/minecraft/server/level/ServerPlayer/m_7938_ (Lnet/minecraft/world/entity/Entity;I)V net/minecraft/server/level/ServerPlayer/take (Lnet/minecraft/world/entity/Entity;I)V +MD: net/minecraft/server/level/ServerPlayer/m_7998_ (Lnet/minecraft/world/entity/Entity;Z)Z net/minecraft/server/level/ServerPlayer/startRiding (Lnet/minecraft/world/entity/Entity;Z)Z +MD: net/minecraft/server/level/ServerPlayer/m_8021_ ()V net/minecraft/server/level/ServerPlayer/processPortalCooldown ()V +MD: net/minecraft/server/level/ServerPlayer/m_8034_ ()V net/minecraft/server/level/ServerPlayer/updateInvisibilityStatus ()V +MD: net/minecraft/server/level/ServerPlayer/m_8088_ ()I net/minecraft/server/level/ServerPlayer/getPermissionLevel ()I +MD: net/minecraft/server/level/ServerPlayer/m_8095_ ()V net/minecraft/server/level/ServerPlayer/completeUsingItem ()V +MD: net/minecraft/server/level/ServerPlayer/m_8098_ ()V net/minecraft/server/level/ServerPlayer/onLeaveCombat ()V +MD: net/minecraft/server/level/ServerPlayer/m_8108_ ()V net/minecraft/server/level/ServerPlayer/onEnterCombat ()V +MD: net/minecraft/server/level/ServerPlayer/m_8119_ ()V net/minecraft/server/level/ServerPlayer/tick ()V +MD: net/minecraft/server/level/ServerPlayer/m_8127_ ()V net/minecraft/server/level/ServerPlayer/stopRiding ()V +MD: net/minecraft/server/level/ServerPlayer/m_8951_ ()Lnet/minecraft/stats/ServerStatsCounter; net/minecraft/server/level/ServerPlayer/getStats ()Lnet/minecraft/stats/ServerStatsCounter; +MD: net/minecraft/server/level/ServerPlayer/m_8952_ ()Lnet/minecraft/stats/ServerRecipeBook; net/minecraft/server/level/ServerPlayer/getRecipeBook ()Lnet/minecraft/stats/ServerRecipeBook; +MD: net/minecraft/server/level/ServerPlayer/m_8954_ ()Lnet/minecraft/world/entity/Entity; net/minecraft/server/level/ServerPlayer/getCamera ()Lnet/minecraft/world/entity/Entity; +MD: net/minecraft/server/level/ServerPlayer/m_8956_ ()J net/minecraft/server/level/ServerPlayer/getLastActionTime ()J +MD: net/minecraft/server/level/ServerPlayer/m_8957_ ()Lnet/minecraft/network/chat/Component; net/minecraft/server/level/ServerPlayer/getTabListDisplayName ()Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/level/ServerPlayer/m_8958_ ()Z net/minecraft/server/level/ServerPlayer/isChangingDimension ()Z +MD: net/minecraft/server/level/ServerPlayer/m_8959_ ()V net/minecraft/server/level/ServerPlayer/hasChangedDimension ()V +MD: net/minecraft/server/level/ServerPlayer/m_8960_ ()Lnet/minecraft/server/PlayerAdvancements; net/minecraft/server/level/ServerPlayer/getAdvancements ()Lnet/minecraft/server/PlayerAdvancements; +MD: net/minecraft/server/level/ServerPlayer/m_8961_ ()Lnet/minecraft/core/BlockPos; net/minecraft/server/level/ServerPlayer/getRespawnPosition ()Lnet/minecraft/core/BlockPos; +MD: net/minecraft/server/level/ServerPlayer/m_8962_ ()F net/minecraft/server/level/ServerPlayer/getRespawnAngle ()F +MD: net/minecraft/server/level/ServerPlayer/m_8963_ ()Lnet/minecraft/resources/ResourceKey; net/minecraft/server/level/ServerPlayer/getRespawnDimension ()Lnet/minecraft/resources/ResourceKey; +MD: net/minecraft/server/level/ServerPlayer/m_8964_ ()Z net/minecraft/server/level/ServerPlayer/isRespawnForced ()Z +MD: net/minecraft/server/level/ServerPlayer/m_8965_ ()Lnet/minecraft/core/SectionPos; net/minecraft/server/level/ServerPlayer/getLastSectionPos ()Lnet/minecraft/core/SectionPos; +MD: net/minecraft/server/level/ServerPlayer/m_8967_ ()Lnet/minecraft/server/network/TextFilter; net/minecraft/server/level/ServerPlayer/getTextFilter ()Lnet/minecraft/server/network/TextFilter; +MD: net/minecraft/server/level/ServerPlayer/m_8980_ (FFZZ)V net/minecraft/server/level/ServerPlayer/setPlayerInput (FFZZ)V +MD: net/minecraft/server/level/ServerPlayer/m_8985_ (I)V net/minecraft/server/level/ServerPlayer/setExperiencePoints (I)V +MD: net/minecraft/server/level/ServerPlayer/m_8994_ (ILnet/minecraft/world/scores/Score;)V net/minecraft/server/level/ServerPlayer/lambda$awardStat$10 (ILnet/minecraft/world/scores/Score;)V +MD: net/minecraft/server/level/ServerPlayer/m_8999_ (Lnet/minecraft/server/level/ServerLevel;DDDFF)V net/minecraft/server/level/ServerPlayer/teleportTo (Lnet/minecraft/server/level/ServerLevel;DDDFF)V +MD: net/minecraft/server/level/ServerPlayer/m_9006_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;)V net/minecraft/server/level/ServerPlayer/createEndPlatform (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/server/level/ServerPlayer/m_9015_ (Lnet/minecraft/server/level/ServerPlayer;Z)V net/minecraft/server/level/ServerPlayer/restoreFrom (Lnet/minecraft/server/level/ServerPlayer;Z)V +MD: net/minecraft/server/level/ServerPlayer/m_9028_ (Lnet/minecraft/util/Unit;)V net/minecraft/server/level/ServerPlayer/lambda$startSleepInBed$9 (Lnet/minecraft/util/Unit;)V +MD: net/minecraft/server/level/ServerPlayer/m_9056_ (Lnet/minecraft/world/entity/Mob;)V net/minecraft/server/level/ServerPlayer/lambda$tellNeutralMobsThatIDied$7 (Lnet/minecraft/world/entity/Mob;)V +MD: net/minecraft/server/level/ServerPlayer/m_9061_ (Lnet/minecraft/world/entity/monster/Monster;)Z net/minecraft/server/level/ServerPlayer/lambda$startSleepInBed$8 (Lnet/minecraft/world/entity/monster/Monster;)Z +MD: net/minecraft/server/level/ServerPlayer/m_9088_ (Lnet/minecraft/world/level/ChunkPos;)V net/minecraft/server/level/ServerPlayer/untrackChunk (Lnet/minecraft/world/level/ChunkPos;)V +MD: net/minecraft/server/level/ServerPlayer/m_9104_ (Lnet/minecraft/world/scores/criteria/ObjectiveCriteria;I)V net/minecraft/server/level/ServerPlayer/updateScoreForCriteria (Lnet/minecraft/world/scores/criteria/ObjectiveCriteria;I)V +MD: net/minecraft/server/level/ServerPlayer/m_9107_ (Lnet/minecraft/commands/arguments/EntityAnchorArgument$Anchor;Lnet/minecraft/world/entity/Entity;Lnet/minecraft/commands/arguments/EntityAnchorArgument$Anchor;)V net/minecraft/server/level/ServerPlayer/lookAt (Lnet/minecraft/commands/arguments/EntityAnchorArgument$Anchor;Lnet/minecraft/world/entity/Entity;Lnet/minecraft/commands/arguments/EntityAnchorArgument$Anchor;)V +MD: net/minecraft/server/level/ServerPlayer/m_9116_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Direction;)Z net/minecraft/server/level/ServerPlayer/bedInRange (Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Direction;)Z +MD: net/minecraft/server/level/ServerPlayer/m_9119_ (Lnet/minecraft/core/SectionPos;)V net/minecraft/server/level/ServerPlayer/setLastSectionPos (Lnet/minecraft/core/SectionPos;)V +MD: net/minecraft/server/level/ServerPlayer/m_9124_ (Ljava/lang/String;Ljava/lang/String;[Lnet/minecraft/world/scores/criteria/ObjectiveCriteria;)V net/minecraft/server/level/ServerPlayer/handleTeamKill (Ljava/lang/String;Ljava/lang/String;[Lnet/minecraft/world/scores/criteria/ObjectiveCriteria;)V +MD: net/minecraft/server/level/ServerPlayer/m_9132_ (Lnet/minecraft/nbt/CompoundTag;Lnet/minecraft/nbt/Tag;)V net/minecraft/server/level/ServerPlayer/lambda$addAdditionalSaveData$1 (Lnet/minecraft/nbt/CompoundTag;Lnet/minecraft/nbt/Tag;)V +MD: net/minecraft/server/level/ServerPlayer/m_9156_ (Lnet/minecraft/network/protocol/game/ServerboundClientInformationPacket;)V net/minecraft/server/level/ServerPlayer/updateOptions (Lnet/minecraft/network/protocol/game/ServerboundClientInformationPacket;)V +MD: net/minecraft/server/level/ServerPlayer/m_9158_ (Lnet/minecraft/resources/ResourceKey;Lnet/minecraft/core/BlockPos;FZZ)V net/minecraft/server/level/ServerPlayer/setRespawnPosition (Lnet/minecraft/resources/ResourceKey;Lnet/minecraft/core/BlockPos;FZZ)V +MD: net/minecraft/server/level/ServerPlayer/m_9174_ (I)V net/minecraft/server/level/ServerPlayer/setExperienceLevels (I)V +MD: net/minecraft/server/level/ServerPlayer/m_9176_ (ILnet/minecraft/world/scores/Score;)V net/minecraft/server/level/ServerPlayer/lambda$updateScoreForCriteria$3 (ILnet/minecraft/world/scores/Score;)V +MD: net/minecraft/server/level/ServerPlayer/m_9187_ (Lnet/minecraft/world/entity/Mob;)Z net/minecraft/server/level/ServerPlayer/lambda$tellNeutralMobsThatIDied$6 (Lnet/minecraft/world/entity/Mob;)Z +MD: net/minecraft/server/level/ServerPlayer/m_9191_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Direction;)Z net/minecraft/server/level/ServerPlayer/bedBlocked (Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Direction;)Z +MD: net/minecraft/server/level/ServerPlayer/m_9201_ (Lnet/minecraft/server/level/ServerLevel;)V net/minecraft/server/level/ServerPlayer/fudgeSpawnLocation (Lnet/minecraft/server/level/ServerLevel;)V +MD: net/minecraft/server/level/ServerPlayer/m_9209_ (Lnet/minecraft/server/level/ServerLevel;)V net/minecraft/server/level/ServerPlayer/triggerDimensionChangeTriggers (Lnet/minecraft/server/level/ServerLevel;)V +MD: net/minecraft/server/level/ServerPlayer/m_9213_ (Lnet/minecraft/world/entity/Entity;)V net/minecraft/server/level/ServerPlayer/setCamera (Lnet/minecraft/world/entity/Entity;)V +MD: net/minecraft/server/level/ServerPlayer/m_9215_ ()V net/minecraft/server/level/ServerPlayer/tellNeutralMobsThatIDied ()V +MD: net/minecraft/server/level/ServerPlayer/m_9216_ ()Z net/minecraft/server/level/ServerPlayer/isPvpAllowed ()Z +MD: net/minecraft/server/level/ServerPlayer/m_9217_ ()V net/minecraft/server/level/ServerPlayer/nextContainerCounter ()V +MD: net/minecraft/server/level/ServerPlayer/m_9222_ (Lnet/minecraft/core/BlockPos;)Z net/minecraft/server/level/ServerPlayer/isReachableBedBlock (Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/server/level/ServerPlayer/m_9230_ ()V net/minecraft/server/level/ServerPlayer/doCloseContainer ()V +MD: net/minecraft/server/level/ServerPlayer/m_9231_ ()V net/minecraft/server/level/ServerPlayer/disconnect ()V +MD: net/minecraft/server/level/ServerPlayer/m_9232_ ()Z net/minecraft/server/level/ServerPlayer/hasDisconnected ()Z +MD: net/minecraft/server/level/ServerPlayer/m_9233_ ()V net/minecraft/server/level/ServerPlayer/resetSentInfo ()V +MD: net/minecraft/server/level/ServerPlayer/m_9237_ (I)I net/minecraft/server/level/ServerPlayer/getCoprime (I)I +MD: net/minecraft/server/level/ServerPlayer/m_9239_ ()Ljava/lang/String; net/minecraft/server/level/ServerPlayer/getIpAddress ()Ljava/lang/String; +MD: net/minecraft/server/level/ServerPlayer/m_9240_ ()V net/minecraft/server/level/ServerPlayer/doTick ()V +MD: net/minecraft/server/level/ServerPlayer/m_9241_ ()Lnet/minecraft/world/entity/player/ChatVisiblity; net/minecraft/server/level/ServerPlayer/getChatVisibility ()Lnet/minecraft/world/entity/player/ChatVisiblity; +MD: net/minecraft/server/level/ServerPlayer/m_9243_ ()V net/minecraft/server/level/ServerPlayer/resetLastActionTime ()V +MD: net/minecraft/server/level/ServerPlayer$1/ (Lnet/minecraft/server/level/ServerPlayer;)V net/minecraft/server/level/ServerPlayer$1/ (Lnet/minecraft/server/level/ServerPlayer;)V +MD: net/minecraft/server/level/ServerPlayer$1/m_142074_ (Lnet/minecraft/world/inventory/AbstractContainerMenu;ILnet/minecraft/world/item/ItemStack;)V net/minecraft/server/level/ServerPlayer$1/sendSlotChange (Lnet/minecraft/world/inventory/AbstractContainerMenu;ILnet/minecraft/world/item/ItemStack;)V +MD: net/minecraft/server/level/ServerPlayer$1/m_142145_ (Lnet/minecraft/world/inventory/AbstractContainerMenu;II)V net/minecraft/server/level/ServerPlayer$1/sendDataChange (Lnet/minecraft/world/inventory/AbstractContainerMenu;II)V +MD: net/minecraft/server/level/ServerPlayer$1/m_142529_ (Lnet/minecraft/world/inventory/AbstractContainerMenu;Lnet/minecraft/world/item/ItemStack;)V net/minecraft/server/level/ServerPlayer$1/sendCarriedChange (Lnet/minecraft/world/inventory/AbstractContainerMenu;Lnet/minecraft/world/item/ItemStack;)V +MD: net/minecraft/server/level/ServerPlayer$1/m_142589_ (Lnet/minecraft/world/inventory/AbstractContainerMenu;Lnet/minecraft/core/NonNullList;Lnet/minecraft/world/item/ItemStack;[I)V net/minecraft/server/level/ServerPlayer$1/sendInitialData (Lnet/minecraft/world/inventory/AbstractContainerMenu;Lnet/minecraft/core/NonNullList;Lnet/minecraft/world/item/ItemStack;[I)V +MD: net/minecraft/server/level/ServerPlayer$1/m_143454_ (Lnet/minecraft/world/inventory/AbstractContainerMenu;II)V net/minecraft/server/level/ServerPlayer$1/broadcastDataValue (Lnet/minecraft/world/inventory/AbstractContainerMenu;II)V +MD: net/minecraft/server/level/ServerPlayer$2/ (Lnet/minecraft/server/level/ServerPlayer;)V net/minecraft/server/level/ServerPlayer$2/ (Lnet/minecraft/server/level/ServerPlayer;)V +MD: net/minecraft/server/level/ServerPlayer$2/m_142153_ (Lnet/minecraft/world/inventory/AbstractContainerMenu;II)V net/minecraft/server/level/ServerPlayer$2/dataChanged (Lnet/minecraft/world/inventory/AbstractContainerMenu;II)V +MD: net/minecraft/server/level/ServerPlayer$2/m_7934_ (Lnet/minecraft/world/inventory/AbstractContainerMenu;ILnet/minecraft/world/item/ItemStack;)V net/minecraft/server/level/ServerPlayer$2/slotChanged (Lnet/minecraft/world/inventory/AbstractContainerMenu;ILnet/minecraft/world/item/ItemStack;)V +MD: net/minecraft/server/level/ServerPlayerGameMode/ ()V net/minecraft/server/level/ServerPlayerGameMode/ ()V +MD: net/minecraft/server/level/ServerPlayerGameMode/ (Lnet/minecraft/server/level/ServerPlayer;)V net/minecraft/server/level/ServerPlayerGameMode/ (Lnet/minecraft/server/level/ServerPlayer;)V +MD: net/minecraft/server/level/ServerPlayerGameMode/m_143473_ (Lnet/minecraft/world/level/GameType;)Z net/minecraft/server/level/ServerPlayerGameMode/changeGameModeForPlayer (Lnet/minecraft/world/level/GameType;)Z +MD: net/minecraft/server/level/ServerPlayerGameMode/m_214168_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/network/protocol/game/ServerboundPlayerActionPacket$Action;Lnet/minecraft/core/Direction;II)V net/minecraft/server/level/ServerPlayerGameMode/handleBlockBreakAction (Lnet/minecraft/core/BlockPos;Lnet/minecraft/network/protocol/game/ServerboundPlayerActionPacket$Action;Lnet/minecraft/core/Direction;II)V +MD: net/minecraft/server/level/ServerPlayerGameMode/m_215116_ (Lnet/minecraft/core/BlockPos;ILjava/lang/String;)V net/minecraft/server/level/ServerPlayerGameMode/destroyAndAck (Lnet/minecraft/core/BlockPos;ILjava/lang/String;)V +MD: net/minecraft/server/level/ServerPlayerGameMode/m_215125_ (Lnet/minecraft/core/BlockPos;ZILjava/lang/String;)V net/minecraft/server/level/ServerPlayerGameMode/debugLogging (Lnet/minecraft/core/BlockPos;ZILjava/lang/String;)V +MD: net/minecraft/server/level/ServerPlayerGameMode/m_6261_ (Lnet/minecraft/server/level/ServerPlayer;Lnet/minecraft/world/level/Level;Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/InteractionHand;)Lnet/minecraft/world/InteractionResult; net/minecraft/server/level/ServerPlayerGameMode/useItem (Lnet/minecraft/server/level/ServerPlayer;Lnet/minecraft/world/level/Level;Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/InteractionHand;)Lnet/minecraft/world/InteractionResult; +MD: net/minecraft/server/level/ServerPlayerGameMode/m_7179_ (Lnet/minecraft/server/level/ServerPlayer;Lnet/minecraft/world/level/Level;Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/InteractionHand;Lnet/minecraft/world/phys/BlockHitResult;)Lnet/minecraft/world/InteractionResult; net/minecraft/server/level/ServerPlayerGameMode/useItemOn (Lnet/minecraft/server/level/ServerPlayer;Lnet/minecraft/world/level/Level;Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/InteractionHand;Lnet/minecraft/world/phys/BlockHitResult;)Lnet/minecraft/world/InteractionResult; +MD: net/minecraft/server/level/ServerPlayerGameMode/m_7712_ ()V net/minecraft/server/level/ServerPlayerGameMode/tick ()V +MD: net/minecraft/server/level/ServerPlayerGameMode/m_9260_ (Lnet/minecraft/server/level/ServerLevel;)V net/minecraft/server/level/ServerPlayerGameMode/setLevel (Lnet/minecraft/server/level/ServerLevel;)V +MD: net/minecraft/server/level/ServerPlayerGameMode/m_9273_ (Lnet/minecraft/world/level/GameType;Lnet/minecraft/world/level/GameType;)V net/minecraft/server/level/ServerPlayerGameMode/setGameModeForPlayer (Lnet/minecraft/world/level/GameType;Lnet/minecraft/world/level/GameType;)V +MD: net/minecraft/server/level/ServerPlayerGameMode/m_9276_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/BlockPos;I)F net/minecraft/server/level/ServerPlayerGameMode/incrementDestroyProgress (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/BlockPos;I)F +MD: net/minecraft/server/level/ServerPlayerGameMode/m_9280_ (Lnet/minecraft/core/BlockPos;)Z net/minecraft/server/level/ServerPlayerGameMode/destroyBlock (Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/server/level/ServerPlayerGameMode/m_9290_ ()Lnet/minecraft/world/level/GameType; net/minecraft/server/level/ServerPlayerGameMode/getGameModeForPlayer ()Lnet/minecraft/world/level/GameType; +MD: net/minecraft/server/level/ServerPlayerGameMode/m_9293_ ()Lnet/minecraft/world/level/GameType; net/minecraft/server/level/ServerPlayerGameMode/getPreviousGameModeForPlayer ()Lnet/minecraft/world/level/GameType; +MD: net/minecraft/server/level/ServerPlayerGameMode/m_9294_ ()Z net/minecraft/server/level/ServerPlayerGameMode/isSurvival ()Z +MD: net/minecraft/server/level/ServerPlayerGameMode/m_9295_ ()Z net/minecraft/server/level/ServerPlayerGameMode/isCreative ()Z +MD: net/minecraft/server/level/ThreadedLevelLightEngine/ ()V net/minecraft/server/level/ThreadedLevelLightEngine/ ()V +MD: net/minecraft/server/level/ThreadedLevelLightEngine/ (Lnet/minecraft/world/level/chunk/LightChunkGetter;Lnet/minecraft/server/level/ChunkMap;ZLnet/minecraft/util/thread/ProcessorMailbox;Lnet/minecraft/util/thread/ProcessorHandle;)V net/minecraft/server/level/ThreadedLevelLightEngine/ (Lnet/minecraft/world/level/chunk/LightChunkGetter;Lnet/minecraft/server/level/ChunkMap;ZLnet/minecraft/util/thread/ProcessorMailbox;Lnet/minecraft/util/thread/ProcessorHandle;)V +MD: net/minecraft/server/level/ThreadedLevelLightEngine/close ()V net/minecraft/server/level/ThreadedLevelLightEngine/close ()V +MD: net/minecraft/server/level/ThreadedLevelLightEngine/m_142519_ (Lnet/minecraft/world/level/ChunkPos;)V net/minecraft/server/level/ThreadedLevelLightEngine/propagateLightSources (Lnet/minecraft/world/level/ChunkPos;)V +MD: net/minecraft/server/level/ThreadedLevelLightEngine/m_215133_ (Lnet/minecraft/world/level/ChunkPos;Ljava/lang/Runnable;)V net/minecraft/server/level/ThreadedLevelLightEngine/lambda$initializeLight$22 (Lnet/minecraft/world/level/ChunkPos;Ljava/lang/Runnable;)V +MD: net/minecraft/server/level/ThreadedLevelLightEngine/m_215148_ (Lnet/minecraft/core/SectionPos;)Ljava/lang/String; net/minecraft/server/level/ThreadedLevelLightEngine/lambda$queueSectionData$14 (Lnet/minecraft/core/SectionPos;)Ljava/lang/String; +MD: net/minecraft/server/level/ThreadedLevelLightEngine/m_215153_ (Lnet/minecraft/world/level/ChunkPos;Z)Ljava/lang/String; net/minecraft/server/level/ThreadedLevelLightEngine/lambda$setLightEnabled$11 (Lnet/minecraft/world/level/ChunkPos;Z)Ljava/lang/String; +MD: net/minecraft/server/level/ThreadedLevelLightEngine/m_215156_ ()V net/minecraft/server/level/ThreadedLevelLightEngine/lambda$tryScheduleUpdate$27 ()V +MD: net/minecraft/server/level/ThreadedLevelLightEngine/m_279897_ (Lnet/minecraft/world/level/chunk/ChunkAccess;Lnet/minecraft/world/level/ChunkPos;)Lnet/minecraft/world/level/chunk/ChunkAccess; net/minecraft/server/level/ThreadedLevelLightEngine/lambda$lightChunk$25 (Lnet/minecraft/world/level/chunk/ChunkAccess;Lnet/minecraft/world/level/ChunkPos;)Lnet/minecraft/world/level/chunk/ChunkAccess; +MD: net/minecraft/server/level/ThreadedLevelLightEngine/m_279898_ (Lnet/minecraft/world/level/ChunkPos;Ljava/lang/Runnable;)V net/minecraft/server/level/ThreadedLevelLightEngine/lambda$lightChunk$26 (Lnet/minecraft/world/level/ChunkPos;Ljava/lang/Runnable;)V +MD: net/minecraft/server/level/ThreadedLevelLightEngine/m_283997_ (ZLnet/minecraft/world/level/ChunkPos;)V net/minecraft/server/level/ThreadedLevelLightEngine/lambda$lightChunk$23 (ZLnet/minecraft/world/level/ChunkPos;)V +MD: net/minecraft/server/level/ThreadedLevelLightEngine/m_283998_ (Lnet/minecraft/world/level/ChunkPos;Z)V net/minecraft/server/level/ThreadedLevelLightEngine/lambda$setLightEnabled$10 (Lnet/minecraft/world/level/ChunkPos;Z)V +MD: net/minecraft/server/level/ThreadedLevelLightEngine/m_283999_ (Lnet/minecraft/world/level/ChunkPos;)Ljava/lang/String; net/minecraft/server/level/ThreadedLevelLightEngine/lambda$updateChunkStatus$4 (Lnet/minecraft/world/level/ChunkPos;)Ljava/lang/String; +MD: net/minecraft/server/level/ThreadedLevelLightEngine/m_284000_ (Lnet/minecraft/world/level/LightLayer;Lnet/minecraft/core/SectionPos;Lnet/minecraft/world/level/chunk/DataLayer;)V net/minecraft/server/level/ThreadedLevelLightEngine/lambda$queueSectionData$13 (Lnet/minecraft/world/level/LightLayer;Lnet/minecraft/core/SectionPos;Lnet/minecraft/world/level/chunk/DataLayer;)V +MD: net/minecraft/server/level/ThreadedLevelLightEngine/m_284001_ (Lnet/minecraft/world/level/ChunkPos;)V net/minecraft/server/level/ThreadedLevelLightEngine/lambda$propagateLightSources$8 (Lnet/minecraft/world/level/ChunkPos;)V +MD: net/minecraft/server/level/ThreadedLevelLightEngine/m_284002_ (Lnet/minecraft/server/level/ThreadedLevelLightEngine$TaskType;Ljava/lang/Runnable;)V net/minecraft/server/level/ThreadedLevelLightEngine/lambda$addTask$15 (Lnet/minecraft/server/level/ThreadedLevelLightEngine$TaskType;Ljava/lang/Runnable;)V +MD: net/minecraft/server/level/ThreadedLevelLightEngine/m_284003_ (Lnet/minecraft/world/level/ChunkPos;ZLnet/minecraft/world/level/chunk/ChunkAccess;)Lnet/minecraft/world/level/chunk/ChunkAccess; net/minecraft/server/level/ThreadedLevelLightEngine/lambda$initializeLight$21 (Lnet/minecraft/world/level/ChunkPos;ZLnet/minecraft/world/level/chunk/ChunkAccess;)Lnet/minecraft/world/level/chunk/ChunkAccess; +MD: net/minecraft/server/level/ThreadedLevelLightEngine/m_284126_ (Lnet/minecraft/world/level/LightLayer;Lnet/minecraft/core/SectionPos;Lnet/minecraft/world/level/chunk/DataLayer;)V net/minecraft/server/level/ThreadedLevelLightEngine/queueSectionData (Lnet/minecraft/world/level/LightLayer;Lnet/minecraft/core/SectionPos;Lnet/minecraft/world/level/chunk/DataLayer;)V +MD: net/minecraft/server/level/ThreadedLevelLightEngine/m_284138_ (Lnet/minecraft/world/level/chunk/ChunkAccess;Z)Ljava/util/concurrent/CompletableFuture; net/minecraft/server/level/ThreadedLevelLightEngine/initializeLight (Lnet/minecraft/world/level/chunk/ChunkAccess;Z)Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/server/level/ThreadedLevelLightEngine/m_288117_ (Lnet/minecraft/world/level/chunk/ChunkAccess;Lnet/minecraft/world/level/ChunkPos;)V net/minecraft/server/level/ThreadedLevelLightEngine/lambda$initializeLight$19 (Lnet/minecraft/world/level/chunk/ChunkAccess;Lnet/minecraft/world/level/ChunkPos;)V +MD: net/minecraft/server/level/ThreadedLevelLightEngine/m_6191_ (Lnet/minecraft/core/SectionPos;Z)V net/minecraft/server/level/ThreadedLevelLightEngine/updateSectionStatus (Lnet/minecraft/core/SectionPos;Z)V +MD: net/minecraft/server/level/ThreadedLevelLightEngine/m_6462_ (Lnet/minecraft/world/level/ChunkPos;Z)V net/minecraft/server/level/ThreadedLevelLightEngine/retainData (Lnet/minecraft/world/level/ChunkPos;Z)V +MD: net/minecraft/server/level/ThreadedLevelLightEngine/m_7174_ (Lnet/minecraft/core/BlockPos;)V net/minecraft/server/level/ThreadedLevelLightEngine/checkBlock (Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/server/level/ThreadedLevelLightEngine/m_9312_ (IILnet/minecraft/server/level/ThreadedLevelLightEngine$TaskType;Ljava/lang/Runnable;)V net/minecraft/server/level/ThreadedLevelLightEngine/addTask (IILnet/minecraft/server/level/ThreadedLevelLightEngine$TaskType;Ljava/lang/Runnable;)V +MD: net/minecraft/server/level/ThreadedLevelLightEngine/m_9317_ (IILjava/util/function/IntSupplier;Lnet/minecraft/server/level/ThreadedLevelLightEngine$TaskType;Ljava/lang/Runnable;)V net/minecraft/server/level/ThreadedLevelLightEngine/addTask (IILjava/util/function/IntSupplier;Lnet/minecraft/server/level/ThreadedLevelLightEngine$TaskType;Ljava/lang/Runnable;)V +MD: net/minecraft/server/level/ThreadedLevelLightEngine/m_9323_ ()I net/minecraft/server/level/ThreadedLevelLightEngine/runLightUpdates ()I +MD: net/minecraft/server/level/ThreadedLevelLightEngine/m_9330_ (Lnet/minecraft/world/level/ChunkPos;)V net/minecraft/server/level/ThreadedLevelLightEngine/updateChunkStatus (Lnet/minecraft/world/level/ChunkPos;)V +MD: net/minecraft/server/level/ThreadedLevelLightEngine/m_9335_ (Lnet/minecraft/world/level/ChunkPos;Z)V net/minecraft/server/level/ThreadedLevelLightEngine/setLightEnabled (Lnet/minecraft/world/level/ChunkPos;Z)V +MD: net/minecraft/server/level/ThreadedLevelLightEngine/m_9353_ (Lnet/minecraft/world/level/chunk/ChunkAccess;Z)Ljava/util/concurrent/CompletableFuture; net/minecraft/server/level/ThreadedLevelLightEngine/lightChunk (Lnet/minecraft/world/level/chunk/ChunkAccess;Z)Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/server/level/ThreadedLevelLightEngine/m_9361_ (Lnet/minecraft/world/level/ChunkPos;)Ljava/lang/String; net/minecraft/server/level/ThreadedLevelLightEngine/lambda$initializeLight$20 (Lnet/minecraft/world/level/ChunkPos;)Ljava/lang/String; +MD: net/minecraft/server/level/ThreadedLevelLightEngine/m_9366_ ()V net/minecraft/server/level/ThreadedLevelLightEngine/runUpdate ()V +MD: net/minecraft/server/level/ThreadedLevelLightEngine/m_9367_ (Lnet/minecraft/world/level/ChunkPos;)Ljava/lang/String; net/minecraft/server/level/ThreadedLevelLightEngine/lambda$propagateLightSources$9 (Lnet/minecraft/world/level/ChunkPos;)Ljava/lang/String; +MD: net/minecraft/server/level/ThreadedLevelLightEngine/m_9377_ (Lnet/minecraft/core/BlockPos;)Ljava/lang/String; net/minecraft/server/level/ThreadedLevelLightEngine/lambda$checkBlock$1 (Lnet/minecraft/core/BlockPos;)Ljava/lang/String; +MD: net/minecraft/server/level/ThreadedLevelLightEngine/m_9379_ (Lnet/minecraft/core/SectionPos;Z)Ljava/lang/String; net/minecraft/server/level/ThreadedLevelLightEngine/lambda$updateSectionStatus$7 (Lnet/minecraft/core/SectionPos;Z)Ljava/lang/String; +MD: net/minecraft/server/level/ThreadedLevelLightEngine/m_9383_ (Lnet/minecraft/world/level/ChunkPos;)Ljava/lang/String; net/minecraft/server/level/ThreadedLevelLightEngine/lambda$retainData$18 (Lnet/minecraft/world/level/ChunkPos;)Ljava/lang/String; +MD: net/minecraft/server/level/ThreadedLevelLightEngine/m_9388_ (Lnet/minecraft/core/BlockPos;)V net/minecraft/server/level/ThreadedLevelLightEngine/lambda$checkBlock$0 (Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/server/level/ThreadedLevelLightEngine/m_9390_ (Lnet/minecraft/core/SectionPos;Z)V net/minecraft/server/level/ThreadedLevelLightEngine/lambda$updateSectionStatus$6 (Lnet/minecraft/core/SectionPos;Z)V +MD: net/minecraft/server/level/ThreadedLevelLightEngine/m_9394_ ()I net/minecraft/server/level/ThreadedLevelLightEngine/lambda$retainData$16 ()I +MD: net/minecraft/server/level/ThreadedLevelLightEngine/m_9395_ (Lnet/minecraft/world/level/ChunkPos;)V net/minecraft/server/level/ThreadedLevelLightEngine/lambda$updateChunkStatus$3 (Lnet/minecraft/world/level/ChunkPos;)V +MD: net/minecraft/server/level/ThreadedLevelLightEngine/m_9397_ (Lnet/minecraft/world/level/ChunkPos;Z)V net/minecraft/server/level/ThreadedLevelLightEngine/lambda$retainData$17 (Lnet/minecraft/world/level/ChunkPos;Z)V +MD: net/minecraft/server/level/ThreadedLevelLightEngine/m_9400_ ()I net/minecraft/server/level/ThreadedLevelLightEngine/lambda$queueSectionData$12 ()I +MD: net/minecraft/server/level/ThreadedLevelLightEngine/m_9401_ (Lnet/minecraft/world/level/ChunkPos;Z)Ljava/lang/String; net/minecraft/server/level/ThreadedLevelLightEngine/lambda$lightChunk$24 (Lnet/minecraft/world/level/ChunkPos;Z)Ljava/lang/String; +MD: net/minecraft/server/level/ThreadedLevelLightEngine/m_9404_ ()I net/minecraft/server/level/ThreadedLevelLightEngine/lambda$updateSectionStatus$5 ()I +MD: net/minecraft/server/level/ThreadedLevelLightEngine/m_9408_ ()I net/minecraft/server/level/ThreadedLevelLightEngine/lambda$updateChunkStatus$2 ()I +MD: net/minecraft/server/level/ThreadedLevelLightEngine/m_9409_ ()V net/minecraft/server/level/ThreadedLevelLightEngine/tryScheduleUpdate ()V +MD: net/minecraft/server/level/ThreadedLevelLightEngine$TaskType/ ()V net/minecraft/server/level/ThreadedLevelLightEngine$TaskType/ ()V +MD: net/minecraft/server/level/ThreadedLevelLightEngine$TaskType/ (Ljava/lang/String;I)V net/minecraft/server/level/ThreadedLevelLightEngine$TaskType/ (Ljava/lang/String;I)V +MD: net/minecraft/server/level/ThreadedLevelLightEngine$TaskType/m_143478_ ()[Lnet/minecraft/server/level/ThreadedLevelLightEngine$TaskType; net/minecraft/server/level/ThreadedLevelLightEngine$TaskType/$values ()[Lnet/minecraft/server/level/ThreadedLevelLightEngine$TaskType; +MD: net/minecraft/server/level/ThreadedLevelLightEngine$TaskType/valueOf (Ljava/lang/String;)Lnet/minecraft/server/level/ThreadedLevelLightEngine$TaskType; net/minecraft/server/level/ThreadedLevelLightEngine$TaskType/valueOf (Ljava/lang/String;)Lnet/minecraft/server/level/ThreadedLevelLightEngine$TaskType; +MD: net/minecraft/server/level/ThreadedLevelLightEngine$TaskType/values ()[Lnet/minecraft/server/level/ThreadedLevelLightEngine$TaskType; net/minecraft/server/level/ThreadedLevelLightEngine$TaskType/values ()[Lnet/minecraft/server/level/ThreadedLevelLightEngine$TaskType; +MD: net/minecraft/server/level/Ticket/ (Lnet/minecraft/server/level/TicketType;ILjava/lang/Object;)V net/minecraft/server/level/Ticket/ (Lnet/minecraft/server/level/TicketType;ILjava/lang/Object;)V +MD: net/minecraft/server/level/Ticket/compareTo (Lnet/minecraft/server/level/Ticket;)I net/minecraft/server/level/Ticket/compareTo (Lnet/minecraft/server/level/Ticket;)I +MD: net/minecraft/server/level/Ticket/compareTo (Ljava/lang/Object;)I net/minecraft/server/level/Ticket/compareTo (Ljava/lang/Object;)I +MD: net/minecraft/server/level/Ticket/equals (Ljava/lang/Object;)Z net/minecraft/server/level/Ticket/equals (Ljava/lang/Object;)Z +MD: net/minecraft/server/level/Ticket/hashCode ()I net/minecraft/server/level/Ticket/hashCode ()I +MD: net/minecraft/server/level/Ticket/m_9428_ ()Lnet/minecraft/server/level/TicketType; net/minecraft/server/level/Ticket/getType ()Lnet/minecraft/server/level/TicketType; +MD: net/minecraft/server/level/Ticket/m_9429_ (J)V net/minecraft/server/level/Ticket/setCreatedTick (J)V +MD: net/minecraft/server/level/Ticket/m_9433_ ()I net/minecraft/server/level/Ticket/getTicketLevel ()I +MD: net/minecraft/server/level/Ticket/m_9434_ (J)Z net/minecraft/server/level/Ticket/timedOut (J)Z +MD: net/minecraft/server/level/Ticket/toString ()Ljava/lang/String; net/minecraft/server/level/Ticket/toString ()Ljava/lang/String; +MD: net/minecraft/server/level/TicketType/ ()V net/minecraft/server/level/TicketType/ ()V +MD: net/minecraft/server/level/TicketType/ (Ljava/lang/String;Ljava/util/Comparator;J)V net/minecraft/server/level/TicketType/ (Ljava/lang/String;Ljava/util/Comparator;J)V +MD: net/minecraft/server/level/TicketType/m_9458_ ()Ljava/util/Comparator; net/minecraft/server/level/TicketType/getComparator ()Ljava/util/Comparator; +MD: net/minecraft/server/level/TicketType/m_9459_ (Lnet/minecraft/util/Unit;Lnet/minecraft/util/Unit;)I net/minecraft/server/level/TicketType/lambda$static$1 (Lnet/minecraft/util/Unit;Lnet/minecraft/util/Unit;)I +MD: net/minecraft/server/level/TicketType/m_9462_ (Ljava/lang/String;Ljava/util/Comparator;)Lnet/minecraft/server/level/TicketType; net/minecraft/server/level/TicketType/create (Ljava/lang/String;Ljava/util/Comparator;)Lnet/minecraft/server/level/TicketType; +MD: net/minecraft/server/level/TicketType/m_9465_ (Ljava/lang/String;Ljava/util/Comparator;I)Lnet/minecraft/server/level/TicketType; net/minecraft/server/level/TicketType/create (Ljava/lang/String;Ljava/util/Comparator;I)Lnet/minecraft/server/level/TicketType; +MD: net/minecraft/server/level/TicketType/m_9469_ ()J net/minecraft/server/level/TicketType/timeout ()J +MD: net/minecraft/server/level/TicketType/m_9470_ (Lnet/minecraft/util/Unit;Lnet/minecraft/util/Unit;)I net/minecraft/server/level/TicketType/lambda$static$0 (Lnet/minecraft/util/Unit;Lnet/minecraft/util/Unit;)I +MD: net/minecraft/server/level/TicketType/toString ()Ljava/lang/String; net/minecraft/server/level/TicketType/toString ()Ljava/lang/String; +MD: net/minecraft/server/level/TickingTracker/ ()V net/minecraft/server/level/TickingTracker/ ()V +MD: net/minecraft/server/level/TickingTracker/m_184145_ ()V net/minecraft/server/level/TickingTracker/runAllUpdates ()V +MD: net/minecraft/server/level/TickingTracker/m_184146_ (I)V net/minecraft/server/level/TickingTracker/replacePlayerTicketsLevel (I)V +MD: net/minecraft/server/level/TickingTracker/m_184151_ (JLnet/minecraft/server/level/Ticket;)V net/minecraft/server/level/TickingTracker/addTicket (JLnet/minecraft/server/level/Ticket;)V +MD: net/minecraft/server/level/TickingTracker/m_184154_ (Lnet/minecraft/server/level/TicketType;Lnet/minecraft/world/level/ChunkPos;ILjava/lang/Object;)V net/minecraft/server/level/TickingTracker/addTicket (Lnet/minecraft/server/level/TicketType;Lnet/minecraft/world/level/ChunkPos;ILjava/lang/Object;)V +MD: net/minecraft/server/level/TickingTracker/m_184159_ (Lnet/minecraft/util/SortedArraySet;)I net/minecraft/server/level/TickingTracker/getTicketLevelAt (Lnet/minecraft/util/SortedArraySet;)I +MD: net/minecraft/server/level/TickingTracker/m_184161_ (Lnet/minecraft/world/level/ChunkPos;)I net/minecraft/server/level/TickingTracker/getLevel (Lnet/minecraft/world/level/ChunkPos;)I +MD: net/minecraft/server/level/TickingTracker/m_184165_ (JLnet/minecraft/server/level/Ticket;)V net/minecraft/server/level/TickingTracker/removeTicket (JLnet/minecraft/server/level/Ticket;)V +MD: net/minecraft/server/level/TickingTracker/m_184168_ (Lnet/minecraft/server/level/TicketType;Lnet/minecraft/world/level/ChunkPos;ILjava/lang/Object;)V net/minecraft/server/level/TickingTracker/removeTicket (Lnet/minecraft/server/level/TicketType;Lnet/minecraft/world/level/ChunkPos;ILjava/lang/Object;)V +MD: net/minecraft/server/level/TickingTracker/m_184175_ (J)Ljava/lang/String; net/minecraft/server/level/TickingTracker/getTicketDebugString (J)Ljava/lang/String; +MD: net/minecraft/server/level/TickingTracker/m_184177_ (J)Lnet/minecraft/util/SortedArraySet; net/minecraft/server/level/TickingTracker/getTickets (J)Lnet/minecraft/util/SortedArraySet; +MD: net/minecraft/server/level/TickingTracker/m_184179_ (J)Lnet/minecraft/util/SortedArraySet; net/minecraft/server/level/TickingTracker/lambda$getTickets$0 (J)Lnet/minecraft/util/SortedArraySet; +MD: net/minecraft/server/level/TickingTracker/m_6172_ (J)I net/minecraft/server/level/TickingTracker/getLevel (J)I +MD: net/minecraft/server/level/TickingTracker/m_7031_ (J)I net/minecraft/server/level/TickingTracker/getLevelFromSource (J)I +MD: net/minecraft/server/level/TickingTracker/m_7351_ (JI)V net/minecraft/server/level/TickingTracker/setLevel (JI)V +MD: net/minecraft/server/level/WorldGenRegion/ ()V net/minecraft/server/level/WorldGenRegion/ ()V +MD: net/minecraft/server/level/WorldGenRegion/ (Lnet/minecraft/server/level/ServerLevel;Ljava/util/List;Lnet/minecraft/world/level/chunk/ChunkStatus;I)V net/minecraft/server/level/WorldGenRegion/ (Lnet/minecraft/server/level/ServerLevel;Ljava/util/List;Lnet/minecraft/world/level/chunk/ChunkStatus;I)V +MD: net/minecraft/server/level/WorldGenRegion/m_141928_ ()I net/minecraft/server/level/WorldGenRegion/getHeight ()I +MD: net/minecraft/server/level/WorldGenRegion/m_141937_ ()I net/minecraft/server/level/WorldGenRegion/getMinBuildHeight ()I +MD: net/minecraft/server/level/WorldGenRegion/m_142425_ (Lnet/minecraft/world/level/entity/EntityTypeTest;Lnet/minecraft/world/phys/AABB;Ljava/util/function/Predicate;)Ljava/util/List; net/minecraft/server/level/WorldGenRegion/getEntities (Lnet/minecraft/world/level/entity/EntityTypeTest;Lnet/minecraft/world/phys/AABB;Ljava/util/function/Predicate;)Ljava/util/List; +MD: net/minecraft/server/level/WorldGenRegion/m_142433_ (Lnet/minecraft/core/BlockPos;Ljava/util/function/Predicate;)Z net/minecraft/server/level/WorldGenRegion/isFluidAtPosition (Lnet/minecraft/core/BlockPos;Ljava/util/function/Predicate;)Z +MD: net/minecraft/server/level/WorldGenRegion/m_143488_ ()Lnet/minecraft/world/level/ChunkPos; net/minecraft/server/level/WorldGenRegion/getCenter ()Lnet/minecraft/world/level/ChunkPos; +MD: net/minecraft/server/level/WorldGenRegion/m_143497_ (Ljava/util/function/Supplier;)V net/minecraft/server/level/WorldGenRegion/setCurrentlyGenerating (Ljava/util/function/Supplier;)V +MD: net/minecraft/server/level/WorldGenRegion/m_180807_ (Lnet/minecraft/core/BlockPos;)Z net/minecraft/server/level/WorldGenRegion/ensureCanWrite (Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/server/level/WorldGenRegion/m_183324_ ()Lnet/minecraft/world/ticks/LevelTickAccess; net/minecraft/server/level/WorldGenRegion/getFluidTicks ()Lnet/minecraft/world/ticks/LevelTickAccess; +MD: net/minecraft/server/level/WorldGenRegion/m_183326_ ()Lnet/minecraft/world/ticks/LevelTickAccess; net/minecraft/server/level/WorldGenRegion/getBlockTicks ()Lnet/minecraft/world/ticks/LevelTickAccess; +MD: net/minecraft/server/level/WorldGenRegion/m_183596_ ()J net/minecraft/server/level/WorldGenRegion/nextSubTickCount ()J +MD: net/minecraft/server/level/WorldGenRegion/m_203675_ (III)Lnet/minecraft/core/Holder; net/minecraft/server/level/WorldGenRegion/getUncachedNoiseBiome (III)Lnet/minecraft/core/Holder; +MD: net/minecraft/server/level/WorldGenRegion/m_213780_ ()Lnet/minecraft/util/RandomSource; net/minecraft/server/level/WorldGenRegion/getRandom ()Lnet/minecraft/util/RandomSource; +MD: net/minecraft/server/level/WorldGenRegion/m_214171_ (Lnet/minecraft/world/level/gameevent/GameEvent;Lnet/minecraft/world/phys/Vec3;Lnet/minecraft/world/level/gameevent/GameEvent$Context;)V net/minecraft/server/level/WorldGenRegion/gameEvent (Lnet/minecraft/world/level/gameevent/GameEvent;Lnet/minecraft/world/phys/Vec3;Lnet/minecraft/world/level/gameevent/GameEvent$Context;)V +MD: net/minecraft/server/level/WorldGenRegion/m_215159_ (Lnet/minecraft/world/level/ChunkPos;I)Z net/minecraft/server/level/WorldGenRegion/isOldChunkAround (Lnet/minecraft/world/level/ChunkPos;I)Z +MD: net/minecraft/server/level/WorldGenRegion/m_246046_ ()Lnet/minecraft/world/flag/FeatureFlagSet; net/minecraft/server/level/WorldGenRegion/enabledFeatures ()Lnet/minecraft/world/flag/FeatureFlagSet; +MD: net/minecraft/server/level/WorldGenRegion/m_276730_ (Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/ticks/TickContainerAccess; net/minecraft/server/level/WorldGenRegion/lambda$new$0 (Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/ticks/TickContainerAccess; +MD: net/minecraft/server/level/WorldGenRegion/m_276731_ (Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/ticks/TickContainerAccess; net/minecraft/server/level/WorldGenRegion/lambda$new$1 (Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/ticks/TickContainerAccess; +MD: net/minecraft/server/level/WorldGenRegion/m_5518_ ()Lnet/minecraft/world/level/lighting/LevelLightEngine; net/minecraft/server/level/WorldGenRegion/getLightEngine ()Lnet/minecraft/world/level/lighting/LevelLightEngine; +MD: net/minecraft/server/level/WorldGenRegion/m_5594_ (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/core/BlockPos;Lnet/minecraft/sounds/SoundEvent;Lnet/minecraft/sounds/SoundSource;FF)V net/minecraft/server/level/WorldGenRegion/playSound (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/core/BlockPos;Lnet/minecraft/sounds/SoundEvent;Lnet/minecraft/sounds/SoundSource;FF)V +MD: net/minecraft/server/level/WorldGenRegion/m_5736_ ()I net/minecraft/server/level/WorldGenRegion/getSeaLevel ()I +MD: net/minecraft/server/level/WorldGenRegion/m_5776_ ()Z net/minecraft/server/level/WorldGenRegion/isClientSide ()Z +MD: net/minecraft/server/level/WorldGenRegion/m_5788_ (DDDDLjava/util/function/Predicate;)Lnet/minecraft/world/entity/player/Player; net/minecraft/server/level/WorldGenRegion/getNearestPlayer (DDDDLjava/util/function/Predicate;)Lnet/minecraft/world/entity/player/Player; +MD: net/minecraft/server/level/WorldGenRegion/m_5898_ (Lnet/minecraft/world/entity/player/Player;ILnet/minecraft/core/BlockPos;I)V net/minecraft/server/level/WorldGenRegion/levelEvent (Lnet/minecraft/world/entity/player/Player;ILnet/minecraft/core/BlockPos;I)V +MD: net/minecraft/server/level/WorldGenRegion/m_6018_ ()Lnet/minecraft/server/level/ServerLevel; net/minecraft/server/level/WorldGenRegion/getLevel ()Lnet/minecraft/server/level/ServerLevel; +MD: net/minecraft/server/level/WorldGenRegion/m_6042_ ()Lnet/minecraft/world/level/dimension/DimensionType; net/minecraft/server/level/WorldGenRegion/dimensionType ()Lnet/minecraft/world/level/dimension/DimensionType; +MD: net/minecraft/server/level/WorldGenRegion/m_6106_ ()Lnet/minecraft/world/level/storage/LevelData; net/minecraft/server/level/WorldGenRegion/getLevelData ()Lnet/minecraft/world/level/storage/LevelData; +MD: net/minecraft/server/level/WorldGenRegion/m_6249_ (Lnet/minecraft/world/entity/Entity;Lnet/minecraft/world/phys/AABB;Ljava/util/function/Predicate;)Ljava/util/List; net/minecraft/server/level/WorldGenRegion/getEntities (Lnet/minecraft/world/entity/Entity;Lnet/minecraft/world/phys/AABB;Ljava/util/function/Predicate;)Ljava/util/List; +MD: net/minecraft/server/level/WorldGenRegion/m_6325_ (II)Lnet/minecraft/world/level/chunk/ChunkAccess; net/minecraft/server/level/WorldGenRegion/getChunk (II)Lnet/minecraft/world/level/chunk/ChunkAccess; +MD: net/minecraft/server/level/WorldGenRegion/m_6425_ (Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/material/FluidState; net/minecraft/server/level/WorldGenRegion/getFluidState (Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/material/FluidState; +MD: net/minecraft/server/level/WorldGenRegion/m_6436_ (Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/DifficultyInstance; net/minecraft/server/level/WorldGenRegion/getCurrentDifficultyAt (Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/DifficultyInstance; +MD: net/minecraft/server/level/WorldGenRegion/m_6522_ (IILnet/minecraft/world/level/chunk/ChunkStatus;Z)Lnet/minecraft/world/level/chunk/ChunkAccess; net/minecraft/server/level/WorldGenRegion/getChunk (IILnet/minecraft/world/level/chunk/ChunkStatus;Z)Lnet/minecraft/world/level/chunk/ChunkAccess; +MD: net/minecraft/server/level/WorldGenRegion/m_6857_ ()Lnet/minecraft/world/level/border/WorldBorder; net/minecraft/server/level/WorldGenRegion/getWorldBorder ()Lnet/minecraft/world/level/border/WorldBorder; +MD: net/minecraft/server/level/WorldGenRegion/m_6907_ ()Ljava/util/List; net/minecraft/server/level/WorldGenRegion/players ()Ljava/util/List; +MD: net/minecraft/server/level/WorldGenRegion/m_6924_ (Lnet/minecraft/world/level/levelgen/Heightmap$Types;II)I net/minecraft/server/level/WorldGenRegion/getHeight (Lnet/minecraft/world/level/levelgen/Heightmap$Types;II)I +MD: net/minecraft/server/level/WorldGenRegion/m_6933_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;II)Z net/minecraft/server/level/WorldGenRegion/setBlock (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;II)Z +MD: net/minecraft/server/level/WorldGenRegion/m_7062_ ()Lnet/minecraft/world/level/biome/BiomeManager; net/minecraft/server/level/WorldGenRegion/getBiomeManager ()Lnet/minecraft/world/level/biome/BiomeManager; +MD: net/minecraft/server/level/WorldGenRegion/m_7106_ (Lnet/minecraft/core/particles/ParticleOptions;DDDDDD)V net/minecraft/server/level/WorldGenRegion/addParticle (Lnet/minecraft/core/particles/ParticleOptions;DDDDDD)V +MD: net/minecraft/server/level/WorldGenRegion/m_7232_ (II)Z net/minecraft/server/level/WorldGenRegion/hasChunk (II)Z +MD: net/minecraft/server/level/WorldGenRegion/m_7328_ ()J net/minecraft/server/level/WorldGenRegion/getSeed ()J +MD: net/minecraft/server/level/WorldGenRegion/m_7433_ (Lnet/minecraft/core/BlockPos;Ljava/util/function/Predicate;)Z net/minecraft/server/level/WorldGenRegion/isStateAtPosition (Lnet/minecraft/core/BlockPos;Ljava/util/function/Predicate;)Z +MD: net/minecraft/server/level/WorldGenRegion/m_7445_ ()I net/minecraft/server/level/WorldGenRegion/getSkyDarken ()I +MD: net/minecraft/server/level/WorldGenRegion/m_7471_ (Lnet/minecraft/core/BlockPos;Z)Z net/minecraft/server/level/WorldGenRegion/removeBlock (Lnet/minecraft/core/BlockPos;Z)Z +MD: net/minecraft/server/level/WorldGenRegion/m_7654_ ()Lnet/minecraft/server/MinecraftServer; net/minecraft/server/level/WorldGenRegion/getServer ()Lnet/minecraft/server/MinecraftServer; +MD: net/minecraft/server/level/WorldGenRegion/m_7702_ (Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/entity/BlockEntity; net/minecraft/server/level/WorldGenRegion/getBlockEntity (Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/entity/BlockEntity; +MD: net/minecraft/server/level/WorldGenRegion/m_7717_ (Lnet/minecraft/core/Direction;Z)F net/minecraft/server/level/WorldGenRegion/getShade (Lnet/minecraft/core/Direction;Z)F +MD: net/minecraft/server/level/WorldGenRegion/m_7726_ ()Lnet/minecraft/world/level/chunk/ChunkSource; net/minecraft/server/level/WorldGenRegion/getChunkSource ()Lnet/minecraft/world/level/chunk/ChunkSource; +MD: net/minecraft/server/level/WorldGenRegion/m_7740_ (Lnet/minecraft/core/BlockPos;ZLnet/minecraft/world/entity/Entity;I)Z net/minecraft/server/level/WorldGenRegion/destroyBlock (Lnet/minecraft/core/BlockPos;ZLnet/minecraft/world/entity/Entity;I)Z +MD: net/minecraft/server/level/WorldGenRegion/m_7967_ (Lnet/minecraft/world/entity/Entity;)Z net/minecraft/server/level/WorldGenRegion/addFreshEntity (Lnet/minecraft/world/entity/Entity;)Z +MD: net/minecraft/server/level/WorldGenRegion/m_8055_ (Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/server/level/WorldGenRegion/getBlockState (Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/server/level/WorldGenRegion/m_9591_ (Lnet/minecraft/core/BlockPos;)V net/minecraft/server/level/WorldGenRegion/markPosForPostprocessing (Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/server/level/WorldGenRegion/m_9598_ ()Lnet/minecraft/core/RegistryAccess; net/minecraft/server/level/WorldGenRegion/registryAccess ()Lnet/minecraft/core/RegistryAccess; +MD: net/minecraft/server/level/progress/ChunkProgressListener/m_5511_ (Lnet/minecraft/world/level/ChunkPos;Lnet/minecraft/world/level/chunk/ChunkStatus;)V net/minecraft/server/level/progress/ChunkProgressListener/onStatusChange (Lnet/minecraft/world/level/ChunkPos;Lnet/minecraft/world/level/chunk/ChunkStatus;)V +MD: net/minecraft/server/level/progress/ChunkProgressListener/m_7646_ ()V net/minecraft/server/level/progress/ChunkProgressListener/stop ()V +MD: net/minecraft/server/level/progress/ChunkProgressListener/m_7647_ (Lnet/minecraft/world/level/ChunkPos;)V net/minecraft/server/level/progress/ChunkProgressListener/updateSpawnPos (Lnet/minecraft/world/level/ChunkPos;)V +MD: net/minecraft/server/level/progress/ChunkProgressListener/m_9662_ ()V net/minecraft/server/level/progress/ChunkProgressListener/start ()V +MD: net/minecraft/server/level/progress/ChunkProgressListenerFactory/m_9620_ (I)Lnet/minecraft/server/level/progress/ChunkProgressListener; net/minecraft/server/level/progress/ChunkProgressListenerFactory/create (I)Lnet/minecraft/server/level/progress/ChunkProgressListener; +MD: net/minecraft/server/level/progress/LoggerChunkProgressListener/ ()V net/minecraft/server/level/progress/LoggerChunkProgressListener/ ()V +MD: net/minecraft/server/level/progress/LoggerChunkProgressListener/ (I)V net/minecraft/server/level/progress/LoggerChunkProgressListener/ (I)V +MD: net/minecraft/server/level/progress/LoggerChunkProgressListener/m_5511_ (Lnet/minecraft/world/level/ChunkPos;Lnet/minecraft/world/level/chunk/ChunkStatus;)V net/minecraft/server/level/progress/LoggerChunkProgressListener/onStatusChange (Lnet/minecraft/world/level/ChunkPos;Lnet/minecraft/world/level/chunk/ChunkStatus;)V +MD: net/minecraft/server/level/progress/LoggerChunkProgressListener/m_7646_ ()V net/minecraft/server/level/progress/LoggerChunkProgressListener/stop ()V +MD: net/minecraft/server/level/progress/LoggerChunkProgressListener/m_7647_ (Lnet/minecraft/world/level/ChunkPos;)V net/minecraft/server/level/progress/LoggerChunkProgressListener/updateSpawnPos (Lnet/minecraft/world/level/ChunkPos;)V +MD: net/minecraft/server/level/progress/LoggerChunkProgressListener/m_9636_ ()I net/minecraft/server/level/progress/LoggerChunkProgressListener/getProgress ()I +MD: net/minecraft/server/level/progress/LoggerChunkProgressListener/m_9662_ ()V net/minecraft/server/level/progress/LoggerChunkProgressListener/start ()V +MD: net/minecraft/server/level/progress/ProcessorChunkProgressListener/ (Lnet/minecraft/server/level/progress/ChunkProgressListener;Ljava/util/concurrent/Executor;)V net/minecraft/server/level/progress/ProcessorChunkProgressListener/ (Lnet/minecraft/server/level/progress/ChunkProgressListener;Ljava/util/concurrent/Executor;)V +MD: net/minecraft/server/level/progress/ProcessorChunkProgressListener/m_143583_ (Lnet/minecraft/server/level/progress/ChunkProgressListener;Ljava/util/concurrent/Executor;)Lnet/minecraft/server/level/progress/ProcessorChunkProgressListener; net/minecraft/server/level/progress/ProcessorChunkProgressListener/createStarted (Lnet/minecraft/server/level/progress/ChunkProgressListener;Ljava/util/concurrent/Executor;)Lnet/minecraft/server/level/progress/ProcessorChunkProgressListener; +MD: net/minecraft/server/level/progress/ProcessorChunkProgressListener/m_5511_ (Lnet/minecraft/world/level/ChunkPos;Lnet/minecraft/world/level/chunk/ChunkStatus;)V net/minecraft/server/level/progress/ProcessorChunkProgressListener/onStatusChange (Lnet/minecraft/world/level/ChunkPos;Lnet/minecraft/world/level/chunk/ChunkStatus;)V +MD: net/minecraft/server/level/progress/ProcessorChunkProgressListener/m_7646_ ()V net/minecraft/server/level/progress/ProcessorChunkProgressListener/stop ()V +MD: net/minecraft/server/level/progress/ProcessorChunkProgressListener/m_7647_ (Lnet/minecraft/world/level/ChunkPos;)V net/minecraft/server/level/progress/ProcessorChunkProgressListener/updateSpawnPos (Lnet/minecraft/world/level/ChunkPos;)V +MD: net/minecraft/server/level/progress/ProcessorChunkProgressListener/m_9648_ (Lnet/minecraft/world/level/ChunkPos;)V net/minecraft/server/level/progress/ProcessorChunkProgressListener/lambda$updateSpawnPos$0 (Lnet/minecraft/world/level/ChunkPos;)V +MD: net/minecraft/server/level/progress/ProcessorChunkProgressListener/m_9650_ (Lnet/minecraft/world/level/ChunkPos;Lnet/minecraft/world/level/chunk/ChunkStatus;)V net/minecraft/server/level/progress/ProcessorChunkProgressListener/lambda$onStatusChange$1 (Lnet/minecraft/world/level/ChunkPos;Lnet/minecraft/world/level/chunk/ChunkStatus;)V +MD: net/minecraft/server/level/progress/ProcessorChunkProgressListener/m_9662_ ()V net/minecraft/server/level/progress/ProcessorChunkProgressListener/start ()V +MD: net/minecraft/server/level/progress/StoringChunkProgressListener/ (I)V net/minecraft/server/level/progress/StoringChunkProgressListener/ (I)V +MD: net/minecraft/server/level/progress/StoringChunkProgressListener/m_5511_ (Lnet/minecraft/world/level/ChunkPos;Lnet/minecraft/world/level/chunk/ChunkStatus;)V net/minecraft/server/level/progress/StoringChunkProgressListener/onStatusChange (Lnet/minecraft/world/level/ChunkPos;Lnet/minecraft/world/level/chunk/ChunkStatus;)V +MD: net/minecraft/server/level/progress/StoringChunkProgressListener/m_7646_ ()V net/minecraft/server/level/progress/StoringChunkProgressListener/stop ()V +MD: net/minecraft/server/level/progress/StoringChunkProgressListener/m_7647_ (Lnet/minecraft/world/level/ChunkPos;)V net/minecraft/server/level/progress/StoringChunkProgressListener/updateSpawnPos (Lnet/minecraft/world/level/ChunkPos;)V +MD: net/minecraft/server/level/progress/StoringChunkProgressListener/m_9662_ ()V net/minecraft/server/level/progress/StoringChunkProgressListener/start ()V +MD: net/minecraft/server/level/progress/StoringChunkProgressListener/m_9663_ (II)Lnet/minecraft/world/level/chunk/ChunkStatus; net/minecraft/server/level/progress/StoringChunkProgressListener/getStatus (II)Lnet/minecraft/world/level/chunk/ChunkStatus; +MD: net/minecraft/server/level/progress/StoringChunkProgressListener/m_9672_ ()I net/minecraft/server/level/progress/StoringChunkProgressListener/getFullDiameter ()I +MD: net/minecraft/server/level/progress/StoringChunkProgressListener/m_9673_ ()I net/minecraft/server/level/progress/StoringChunkProgressListener/getDiameter ()I +MD: net/minecraft/server/level/progress/StoringChunkProgressListener/m_9674_ ()I net/minecraft/server/level/progress/StoringChunkProgressListener/getProgress ()I +MD: net/minecraft/server/network/FilteredText/ ()V net/minecraft/server/network/FilteredText/ ()V +MD: net/minecraft/server/network/FilteredText/ (Ljava/lang/String;Lnet/minecraft/network/chat/FilterMask;)V net/minecraft/server/network/FilteredText/ (Ljava/lang/String;Lnet/minecraft/network/chat/FilterMask;)V +MD: net/minecraft/server/network/FilteredText/equals (Ljava/lang/Object;)Z net/minecraft/server/network/FilteredText/equals (Ljava/lang/Object;)Z +MD: net/minecraft/server/network/FilteredText/f_215168_ ()Ljava/lang/String; net/minecraft/server/network/FilteredText/raw ()Ljava/lang/String; +MD: net/minecraft/server/network/FilteredText/f_243010_ ()Lnet/minecraft/network/chat/FilterMask; net/minecraft/server/network/FilteredText/mask ()Lnet/minecraft/network/chat/FilterMask; +MD: net/minecraft/server/network/FilteredText/hashCode ()I net/minecraft/server/network/FilteredText/hashCode ()I +MD: net/minecraft/server/network/FilteredText/m_215174_ ()Z net/minecraft/server/network/FilteredText/isFiltered ()Z +MD: net/minecraft/server/network/FilteredText/m_243054_ (Ljava/lang/String;)Lnet/minecraft/server/network/FilteredText; net/minecraft/server/network/FilteredText/passThrough (Ljava/lang/String;)Lnet/minecraft/server/network/FilteredText; +MD: net/minecraft/server/network/FilteredText/m_243090_ ()Ljava/lang/String; net/minecraft/server/network/FilteredText/filtered ()Ljava/lang/String; +MD: net/minecraft/server/network/FilteredText/m_243113_ ()Ljava/lang/String; net/minecraft/server/network/FilteredText/filteredOrEmpty ()Ljava/lang/String; +MD: net/minecraft/server/network/FilteredText/m_243131_ (Ljava/lang/String;)Lnet/minecraft/server/network/FilteredText; net/minecraft/server/network/FilteredText/fullyFiltered (Ljava/lang/String;)Lnet/minecraft/server/network/FilteredText; +MD: net/minecraft/server/network/FilteredText/toString ()Ljava/lang/String; net/minecraft/server/network/FilteredText/toString ()Ljava/lang/String; +MD: net/minecraft/server/network/LegacyQueryHandler/ ()V net/minecraft/server/network/LegacyQueryHandler/ ()V +MD: net/minecraft/server/network/LegacyQueryHandler/ (Lnet/minecraft/server/network/ServerConnectionListener;)V net/minecraft/server/network/LegacyQueryHandler/ (Lnet/minecraft/server/network/ServerConnectionListener;)V +MD: net/minecraft/server/network/LegacyQueryHandler/channelRead (Lio/netty/channel/ChannelHandlerContext;Ljava/lang/Object;)V net/minecraft/server/network/LegacyQueryHandler/channelRead (Lio/netty/channel/ChannelHandlerContext;Ljava/lang/Object;)V +MD: net/minecraft/server/network/LegacyQueryHandler/m_9680_ (Lio/netty/channel/ChannelHandlerContext;Lio/netty/buffer/ByteBuf;)V net/minecraft/server/network/LegacyQueryHandler/sendFlushAndClose (Lio/netty/channel/ChannelHandlerContext;Lio/netty/buffer/ByteBuf;)V +MD: net/minecraft/server/network/LegacyQueryHandler/m_9683_ (Ljava/lang/String;)Lio/netty/buffer/ByteBuf; net/minecraft/server/network/LegacyQueryHandler/createReply (Ljava/lang/String;)Lio/netty/buffer/ByteBuf; +MD: net/minecraft/server/network/MemoryServerHandshakePacketListenerImpl/ (Lnet/minecraft/server/MinecraftServer;Lnet/minecraft/network/Connection;)V net/minecraft/server/network/MemoryServerHandshakePacketListenerImpl/ (Lnet/minecraft/server/MinecraftServer;Lnet/minecraft/network/Connection;)V +MD: net/minecraft/server/network/MemoryServerHandshakePacketListenerImpl/m_6198_ ()Z net/minecraft/server/network/MemoryServerHandshakePacketListenerImpl/isAcceptingMessages ()Z +MD: net/minecraft/server/network/MemoryServerHandshakePacketListenerImpl/m_7026_ (Lnet/minecraft/network/chat/Component;)V net/minecraft/server/network/MemoryServerHandshakePacketListenerImpl/onDisconnect (Lnet/minecraft/network/chat/Component;)V +MD: net/minecraft/server/network/MemoryServerHandshakePacketListenerImpl/m_7322_ (Lnet/minecraft/network/protocol/handshake/ClientIntentionPacket;)V net/minecraft/server/network/MemoryServerHandshakePacketListenerImpl/handleIntention (Lnet/minecraft/network/protocol/handshake/ClientIntentionPacket;)V +MD: net/minecraft/server/network/ServerConnectionListener/ ()V net/minecraft/server/network/ServerConnectionListener/ ()V +MD: net/minecraft/server/network/ServerConnectionListener/ (Lnet/minecraft/server/MinecraftServer;)V net/minecraft/server/network/ServerConnectionListener/ (Lnet/minecraft/server/MinecraftServer;)V +MD: net/minecraft/server/network/ServerConnectionListener/m_184193_ ()Ljava/util/List; net/minecraft/server/network/ServerConnectionListener/getConnections ()Ljava/util/List; +MD: net/minecraft/server/network/ServerConnectionListener/m_9708_ ()Ljava/net/SocketAddress; net/minecraft/server/network/ServerConnectionListener/startMemoryChannel ()Ljava/net/SocketAddress; +MD: net/minecraft/server/network/ServerConnectionListener/m_9711_ (Ljava/net/InetAddress;I)V net/minecraft/server/network/ServerConnectionListener/startTcpServerListener (Ljava/net/InetAddress;I)V +MD: net/minecraft/server/network/ServerConnectionListener/m_9714_ (Lnet/minecraft/network/Connection;Lnet/minecraft/network/chat/Component;)V net/minecraft/server/network/ServerConnectionListener/lambda$tick$2 (Lnet/minecraft/network/Connection;Lnet/minecraft/network/chat/Component;)V +MD: net/minecraft/server/network/ServerConnectionListener/m_9718_ ()V net/minecraft/server/network/ServerConnectionListener/stop ()V +MD: net/minecraft/server/network/ServerConnectionListener/m_9721_ ()V net/minecraft/server/network/ServerConnectionListener/tick ()V +MD: net/minecraft/server/network/ServerConnectionListener/m_9722_ ()Lnet/minecraft/server/MinecraftServer; net/minecraft/server/network/ServerConnectionListener/getServer ()Lnet/minecraft/server/MinecraftServer; +MD: net/minecraft/server/network/ServerConnectionListener/m_9723_ ()Lio/netty/channel/epoll/EpollEventLoopGroup; net/minecraft/server/network/ServerConnectionListener/lambda$static$1 ()Lio/netty/channel/epoll/EpollEventLoopGroup; +MD: net/minecraft/server/network/ServerConnectionListener/m_9724_ ()Lio/netty/channel/nio/NioEventLoopGroup; net/minecraft/server/network/ServerConnectionListener/lambda$static$0 ()Lio/netty/channel/nio/NioEventLoopGroup; +MD: net/minecraft/server/network/ServerConnectionListener$1/ (Lnet/minecraft/server/network/ServerConnectionListener;)V net/minecraft/server/network/ServerConnectionListener$1/ (Lnet/minecraft/server/network/ServerConnectionListener;)V +MD: net/minecraft/server/network/ServerConnectionListener$1/initChannel (Lio/netty/channel/Channel;)V net/minecraft/server/network/ServerConnectionListener$1/initChannel (Lio/netty/channel/Channel;)V +MD: net/minecraft/server/network/ServerConnectionListener$2/ (Lnet/minecraft/server/network/ServerConnectionListener;)V net/minecraft/server/network/ServerConnectionListener$2/ (Lnet/minecraft/server/network/ServerConnectionListener;)V +MD: net/minecraft/server/network/ServerConnectionListener$2/initChannel (Lio/netty/channel/Channel;)V net/minecraft/server/network/ServerConnectionListener$2/initChannel (Lio/netty/channel/Channel;)V +MD: net/minecraft/server/network/ServerConnectionListener$LatencySimulator/ ()V net/minecraft/server/network/ServerConnectionListener$LatencySimulator/ ()V +MD: net/minecraft/server/network/ServerConnectionListener$LatencySimulator/ (II)V net/minecraft/server/network/ServerConnectionListener$LatencySimulator/ (II)V +MD: net/minecraft/server/network/ServerConnectionListener$LatencySimulator/channelRead (Lio/netty/channel/ChannelHandlerContext;Ljava/lang/Object;)V net/minecraft/server/network/ServerConnectionListener$LatencySimulator/channelRead (Lio/netty/channel/ChannelHandlerContext;Ljava/lang/Object;)V +MD: net/minecraft/server/network/ServerConnectionListener$LatencySimulator/m_143595_ (Lio/netty/channel/ChannelHandlerContext;Ljava/lang/Object;)V net/minecraft/server/network/ServerConnectionListener$LatencySimulator/delayDownstream (Lio/netty/channel/ChannelHandlerContext;Ljava/lang/Object;)V +MD: net/minecraft/server/network/ServerConnectionListener$LatencySimulator/m_143598_ (Lio/netty/util/Timeout;)V net/minecraft/server/network/ServerConnectionListener$LatencySimulator/onTimeout (Lio/netty/util/Timeout;)V +MD: net/minecraft/server/network/ServerConnectionListener$LatencySimulator$DelayedMessage/ (Lio/netty/channel/ChannelHandlerContext;Ljava/lang/Object;)V net/minecraft/server/network/ServerConnectionListener$LatencySimulator$DelayedMessage/ (Lio/netty/channel/ChannelHandlerContext;Ljava/lang/Object;)V +MD: net/minecraft/server/network/ServerGamePacketListenerImpl/ ()V net/minecraft/server/network/ServerGamePacketListenerImpl/ ()V +MD: net/minecraft/server/network/ServerGamePacketListenerImpl/ (Lnet/minecraft/server/MinecraftServer;Lnet/minecraft/network/Connection;Lnet/minecraft/server/level/ServerPlayer;)V net/minecraft/server/network/ServerGamePacketListenerImpl/ (Lnet/minecraft/server/MinecraftServer;Lnet/minecraft/network/Connection;Lnet/minecraft/server/level/ServerPlayer;)V +MD: net/minecraft/server/network/ServerGamePacketListenerImpl/m_142110_ (Lnet/minecraft/network/protocol/game/ServerboundPongPacket;)V net/minecraft/server/network/ServerGamePacketListenerImpl/handlePong (Lnet/minecraft/network/protocol/game/ServerboundPongPacket;)V +MD: net/minecraft/server/network/ServerGamePacketListenerImpl/m_142253_ ()Lnet/minecraft/server/level/ServerPlayer; net/minecraft/server/network/ServerGamePacketListenerImpl/getPlayer ()Lnet/minecraft/server/level/ServerPlayer; +MD: net/minecraft/server/network/ServerGamePacketListenerImpl/m_143609_ (D)D net/minecraft/server/network/ServerGamePacketListenerImpl/clampHorizontal (D)D +MD: net/minecraft/server/network/ServerGamePacketListenerImpl/m_143625_ (ILjava/util/List;)V net/minecraft/server/network/ServerGamePacketListenerImpl/lambda$handleEditBook$4 (ILjava/util/List;)V +MD: net/minecraft/server/network/ServerGamePacketListenerImpl/m_143634_ (Ljava/util/List;Ljava/util/function/UnaryOperator;Lnet/minecraft/world/item/ItemStack;)V net/minecraft/server/network/ServerGamePacketListenerImpl/updateBookPages (Ljava/util/List;Ljava/util/function/UnaryOperator;Lnet/minecraft/world/item/ItemStack;)V +MD: net/minecraft/server/network/ServerGamePacketListenerImpl/m_143653_ (D)D net/minecraft/server/network/ServerGamePacketListenerImpl/clampVertical (D)D +MD: net/minecraft/server/network/ServerGamePacketListenerImpl/m_143658_ (Lnet/minecraft/network/protocol/Packet;)Ljava/lang/String; net/minecraft/server/network/ServerGamePacketListenerImpl/lambda$send$7 (Lnet/minecraft/network/protocol/Packet;)Ljava/lang/String; +MD: net/minecraft/server/network/ServerGamePacketListenerImpl/m_143663_ (DDDFF)Z net/minecraft/server/network/ServerGamePacketListenerImpl/containsInvalidValues (DDDFF)Z +MD: net/minecraft/server/network/ServerGamePacketListenerImpl/m_184201_ (Lnet/minecraft/network/protocol/game/ServerboundCommandSuggestionPacket;Lcom/mojang/brigadier/suggestion/Suggestions;)V net/minecraft/server/network/ServerGamePacketListenerImpl/lambda$handleCustomCommandSuggestions$2 (Lnet/minecraft/network/protocol/game/ServerboundCommandSuggestionPacket;Lcom/mojang/brigadier/suggestion/Suggestions;)V +MD: net/minecraft/server/network/ServerGamePacketListenerImpl/m_214047_ (Lnet/minecraft/network/protocol/game/ServerboundChatCommandPacket;)V net/minecraft/server/network/ServerGamePacketListenerImpl/handleChatCommand (Lnet/minecraft/network/protocol/game/ServerboundChatCommandPacket;)V +MD: net/minecraft/server/network/ServerGamePacketListenerImpl/m_215201_ (I)V net/minecraft/server/network/ServerGamePacketListenerImpl/ackBlockChangesUpTo (I)V +MD: net/minecraft/server/network/ServerGamePacketListenerImpl/m_215203_ (ILjava/util/List;)V net/minecraft/server/network/ServerGamePacketListenerImpl/lambda$handleEditBook$3 (ILjava/util/List;)V +MD: net/minecraft/server/network/ServerGamePacketListenerImpl/m_215208_ (Lnet/minecraft/server/network/FilteredText;Ljava/util/List;I)V net/minecraft/server/network/ServerGamePacketListenerImpl/signBook (Lnet/minecraft/server/network/FilteredText;Ljava/util/List;I)V +MD: net/minecraft/server/network/ServerGamePacketListenerImpl/m_215214_ (Ljava/lang/String;)Z net/minecraft/server/network/ServerGamePacketListenerImpl/isChatMessageIllegal (Ljava/lang/String;)Z +MD: net/minecraft/server/network/ServerGamePacketListenerImpl/m_215236_ (Ljava/time/Instant;)Z net/minecraft/server/network/ServerGamePacketListenerImpl/updateChatOrder (Ljava/time/Instant;)Z +MD: net/minecraft/server/network/ServerGamePacketListenerImpl/m_215243_ (Lnet/minecraft/network/protocol/game/ServerboundSignUpdatePacket;Ljava/util/List;)V net/minecraft/server/network/ServerGamePacketListenerImpl/lambda$handleSignUpdate$14 (Lnet/minecraft/network/protocol/game/ServerboundSignUpdatePacket;Ljava/util/List;)V +MD: net/minecraft/server/network/ServerGamePacketListenerImpl/m_215251_ ()V net/minecraft/server/network/ServerGamePacketListenerImpl/detectRateSpam ()V +MD: net/minecraft/server/network/ServerGamePacketListenerImpl/m_238207_ (Ljava/lang/String;)Ljava/lang/String; net/minecraft/server/network/ServerGamePacketListenerImpl/lambda$signBook$5 (Ljava/lang/String;)Ljava/lang/String; +MD: net/minecraft/server/network/ServerGamePacketListenerImpl/m_241885_ (Lnet/minecraft/network/protocol/game/ServerboundChatAckPacket;)V net/minecraft/server/network/ServerGamePacketListenerImpl/handleChatAck (Lnet/minecraft/network/protocol/game/ServerboundChatAckPacket;)V +MD: net/minecraft/server/network/ServerGamePacketListenerImpl/m_241992_ (Lnet/minecraft/network/chat/PlayerChatMessage;)V net/minecraft/server/network/ServerGamePacketListenerImpl/addPendingMessage (Lnet/minecraft/network/chat/PlayerChatMessage;)V +MD: net/minecraft/server/network/ServerGamePacketListenerImpl/m_242538_ (Lnet/minecraft/commands/CommandSigningContext;Lnet/minecraft/commands/CommandSourceStack;)Lnet/minecraft/commands/CommandSourceStack; net/minecraft/server/network/ServerGamePacketListenerImpl/lambda$performChatCommand$12 (Lnet/minecraft/commands/CommandSigningContext;Lnet/minecraft/commands/CommandSourceStack;)Lnet/minecraft/commands/CommandSourceStack; +MD: net/minecraft/server/network/ServerGamePacketListenerImpl/m_242658_ (Ljava/lang/String;)Lcom/mojang/brigadier/ParseResults; net/minecraft/server/network/ServerGamePacketListenerImpl/parseCommand (Ljava/lang/String;)Lcom/mojang/brigadier/ParseResults; +MD: net/minecraft/server/network/ServerGamePacketListenerImpl/m_243045_ (Ljava/util/function/UnaryOperator;Lnet/minecraft/server/network/FilteredText;)Lnet/minecraft/nbt/StringTag; net/minecraft/server/network/ServerGamePacketListenerImpl/lambda$updateBookPages$6 (Ljava/util/function/UnaryOperator;Lnet/minecraft/server/network/FilteredText;)Lnet/minecraft/nbt/StringTag; +MD: net/minecraft/server/network/ServerGamePacketListenerImpl/m_243065_ (Ljava/util/List;)Ljava/util/concurrent/CompletableFuture; net/minecraft/server/network/ServerGamePacketListenerImpl/filterTextPacket (Ljava/util/List;)Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/server/network/ServerGamePacketListenerImpl/m_243080_ (Ljava/lang/Object;Ljava/util/function/BiFunction;)Ljava/util/concurrent/CompletableFuture; net/minecraft/server/network/ServerGamePacketListenerImpl/filterTextPacket (Ljava/lang/Object;Ljava/util/function/BiFunction;)Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/server/network/ServerGamePacketListenerImpl/m_243086_ (Lnet/minecraft/network/chat/PlayerChatMessage;)V net/minecraft/server/network/ServerGamePacketListenerImpl/broadcastChatMessage (Lnet/minecraft/network/chat/PlayerChatMessage;)V +MD: net/minecraft/server/network/ServerGamePacketListenerImpl/m_243119_ (Lnet/minecraft/network/protocol/Packet;Lnet/minecraft/network/PacketSendListener;)V net/minecraft/server/network/ServerGamePacketListenerImpl/send (Lnet/minecraft/network/protocol/Packet;Lnet/minecraft/network/PacketSendListener;)V +MD: net/minecraft/server/network/ServerGamePacketListenerImpl/m_243132_ (Ljava/lang/String;)Ljava/util/concurrent/CompletableFuture; net/minecraft/server/network/ServerGamePacketListenerImpl/filterTextPacket (Ljava/lang/String;)Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/server/network/ServerGamePacketListenerImpl/m_244884_ (Ljava/util/concurrent/CompletableFuture;Ljava/util/concurrent/CompletableFuture;Lnet/minecraft/network/chat/PlayerChatMessage;Ljava/util/concurrent/Executor;)Ljava/util/concurrent/CompletableFuture; net/minecraft/server/network/ServerGamePacketListenerImpl/lambda$handleChat$9 (Ljava/util/concurrent/CompletableFuture;Ljava/util/concurrent/CompletableFuture;Lnet/minecraft/network/chat/PlayerChatMessage;Ljava/util/concurrent/Executor;)Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/server/network/ServerGamePacketListenerImpl/m_244885_ (Lnet/minecraft/network/protocol/game/ServerboundChatCommandPacket;Ljava/util/Optional;)V net/minecraft/server/network/ServerGamePacketListenerImpl/lambda$handleChatCommand$11 (Lnet/minecraft/network/protocol/game/ServerboundChatCommandPacket;Ljava/util/Optional;)V +MD: net/minecraft/server/network/ServerGamePacketListenerImpl/m_244886_ (Lnet/minecraft/network/chat/PlayerChatMessage;Ljava/util/concurrent/CompletableFuture;Ljava/util/concurrent/CompletableFuture;Ljava/lang/Void;)V net/minecraft/server/network/ServerGamePacketListenerImpl/lambda$handleChat$8 (Lnet/minecraft/network/chat/PlayerChatMessage;Ljava/util/concurrent/CompletableFuture;Ljava/util/concurrent/CompletableFuture;Ljava/lang/Void;)V +MD: net/minecraft/server/network/ServerGamePacketListenerImpl/m_244887_ (Lnet/minecraft/network/protocol/game/ServerboundChatPacket;Ljava/util/Optional;)V net/minecraft/server/network/ServerGamePacketListenerImpl/lambda$handleChat$10 (Lnet/minecraft/network/protocol/game/ServerboundChatPacket;Ljava/util/Optional;)V +MD: net/minecraft/server/network/ServerGamePacketListenerImpl/m_245431_ (Lnet/minecraft/network/chat/PlayerChatMessage;Lnet/minecraft/network/chat/ChatType$Bound;)V net/minecraft/server/network/ServerGamePacketListenerImpl/sendPlayerChatMessage (Lnet/minecraft/network/chat/PlayerChatMessage;Lnet/minecraft/network/chat/ChatType$Bound;)V +MD: net/minecraft/server/network/ServerGamePacketListenerImpl/m_245578_ (Lnet/minecraft/network/chat/LastSeenMessages$Update;)Ljava/util/Optional; net/minecraft/server/network/ServerGamePacketListenerImpl/unpackAndApplyLastSeen (Lnet/minecraft/network/chat/LastSeenMessages$Update;)Ljava/util/Optional; +MD: net/minecraft/server/network/ServerGamePacketListenerImpl/m_245903_ (Lnet/minecraft/network/chat/Component;Lnet/minecraft/network/chat/ChatType$Bound;)V net/minecraft/server/network/ServerGamePacketListenerImpl/sendDisguisedChatMessage (Lnet/minecraft/network/chat/Component;Lnet/minecraft/network/chat/ChatType$Bound;)V +MD: net/minecraft/server/network/ServerGamePacketListenerImpl/m_246206_ (Lnet/minecraft/network/protocol/game/ServerboundChatCommandPacket;Lnet/minecraft/network/chat/SignableCommand;Lnet/minecraft/network/chat/LastSeenMessages;)Ljava/util/Map; net/minecraft/server/network/ServerGamePacketListenerImpl/collectSignedArguments (Lnet/minecraft/network/protocol/game/ServerboundChatCommandPacket;Lnet/minecraft/network/chat/SignableCommand;Lnet/minecraft/network/chat/LastSeenMessages;)Ljava/util/Map; +MD: net/minecraft/server/network/ServerGamePacketListenerImpl/m_246889_ (Lnet/minecraft/network/chat/SignedMessageChain$DecodeException;)V net/minecraft/server/network/ServerGamePacketListenerImpl/handleMessageDecodeFailure (Lnet/minecraft/network/chat/SignedMessageChain$DecodeException;)V +MD: net/minecraft/server/network/ServerGamePacketListenerImpl/m_246958_ (Lnet/minecraft/network/protocol/game/ServerboundChatCommandPacket;Lnet/minecraft/network/chat/LastSeenMessages;)V net/minecraft/server/network/ServerGamePacketListenerImpl/performChatCommand (Lnet/minecraft/network/protocol/game/ServerboundChatCommandPacket;Lnet/minecraft/network/chat/LastSeenMessages;)V +MD: net/minecraft/server/network/ServerGamePacketListenerImpl/m_247189_ (Ljava/lang/String;Ljava/time/Instant;Lnet/minecraft/network/chat/LastSeenMessages$Update;)Ljava/util/Optional; net/minecraft/server/network/ServerGamePacketListenerImpl/tryHandleChat (Ljava/lang/String;Ljava/time/Instant;Lnet/minecraft/network/chat/LastSeenMessages$Update;)Ljava/util/Optional; +MD: net/minecraft/server/network/ServerGamePacketListenerImpl/m_247340_ (Lnet/minecraft/network/protocol/game/ServerboundChatPacket;Lnet/minecraft/network/chat/LastSeenMessages;)Lnet/minecraft/network/chat/PlayerChatMessage; net/minecraft/server/network/ServerGamePacketListenerImpl/getSignedMessage (Lnet/minecraft/network/protocol/game/ServerboundChatPacket;Lnet/minecraft/network/chat/LastSeenMessages;)Lnet/minecraft/network/chat/PlayerChatMessage; +MD: net/minecraft/server/network/ServerGamePacketListenerImpl/m_252662_ (Lnet/minecraft/network/chat/RemoteChatSession;Ljava/util/concurrent/Executor;)Ljava/util/concurrent/CompletableFuture; net/minecraft/server/network/ServerGamePacketListenerImpl/lambda$resetPlayerChatState$15 (Lnet/minecraft/network/chat/RemoteChatSession;Ljava/util/concurrent/Executor;)Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/server/network/ServerGamePacketListenerImpl/m_252797_ (Lnet/minecraft/network/protocol/game/ServerboundChatSessionUpdatePacket;)V net/minecraft/server/network/ServerGamePacketListenerImpl/handleChatSessionUpdate (Lnet/minecraft/network/protocol/game/ServerboundChatSessionUpdatePacket;)V +MD: net/minecraft/server/network/ServerGamePacketListenerImpl/m_253005_ (Lnet/minecraft/network/chat/RemoteChatSession;)V net/minecraft/server/network/ServerGamePacketListenerImpl/resetPlayerChatState (Lnet/minecraft/network/chat/RemoteChatSession;)V +MD: net/minecraft/server/network/ServerGamePacketListenerImpl/m_263968_ (Ljava/lang/Object;)Ljava/lang/Object; net/minecraft/server/network/ServerGamePacketListenerImpl/lambda$filterTextPacket$1 (Ljava/lang/Object;)Ljava/lang/Object; +MD: net/minecraft/server/network/ServerGamePacketListenerImpl/m_264262_ ()Ljava/net/SocketAddress; net/minecraft/server/network/ServerGamePacketListenerImpl/getRemoteAddress ()Ljava/net/SocketAddress; +MD: net/minecraft/server/network/ServerGamePacketListenerImpl/m_287055_ (Lnet/minecraft/network/protocol/game/ServerboundPlaceRecipePacket;Lnet/minecraft/world/item/crafting/Recipe;)V net/minecraft/server/network/ServerGamePacketListenerImpl/lambda$handlePlaceRecipe$13 (Lnet/minecraft/network/protocol/game/ServerboundPlaceRecipePacket;Lnet/minecraft/world/item/crafting/Recipe;)V +MD: net/minecraft/server/network/ServerGamePacketListenerImpl/m_288208_ (Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/world/phys/AABB;DDD)Z net/minecraft/server/network/ServerGamePacketListenerImpl/isPlayerCollidingWithAnythingNew (Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/world/phys/AABB;DDD)Z +MD: net/minecraft/server/network/ServerGamePacketListenerImpl/m_5527_ (Lnet/minecraft/network/protocol/game/ServerboundSignUpdatePacket;)V net/minecraft/server/network/ServerGamePacketListenerImpl/handleSignUpdate (Lnet/minecraft/network/protocol/game/ServerboundSignUpdatePacket;)V +MD: net/minecraft/server/network/ServerGamePacketListenerImpl/m_5591_ (Lnet/minecraft/network/protocol/game/ServerboundRenameItemPacket;)V net/minecraft/server/network/ServerGamePacketListenerImpl/handleRenameItem (Lnet/minecraft/network/protocol/game/ServerboundRenameItemPacket;)V +MD: net/minecraft/server/network/ServerGamePacketListenerImpl/m_5617_ (Lnet/minecraft/network/protocol/game/ServerboundClientInformationPacket;)V net/minecraft/server/network/ServerGamePacketListenerImpl/handleClientInformation (Lnet/minecraft/network/protocol/game/ServerboundClientInformationPacket;)V +MD: net/minecraft/server/network/ServerGamePacketListenerImpl/m_5659_ (Lnet/minecraft/network/protocol/game/ServerboundMoveVehiclePacket;)V net/minecraft/server/network/ServerGamePacketListenerImpl/handleMoveVehicle (Lnet/minecraft/network/protocol/game/ServerboundMoveVehiclePacket;)V +MD: net/minecraft/server/network/ServerGamePacketListenerImpl/m_5681_ (Lnet/minecraft/network/protocol/game/ServerboundPlayerCommandPacket;)V net/minecraft/server/network/ServerGamePacketListenerImpl/handlePlayerCommand (Lnet/minecraft/network/protocol/game/ServerboundPlayerCommandPacket;)V +MD: net/minecraft/server/network/ServerGamePacketListenerImpl/m_5683_ (Lnet/minecraft/network/protocol/game/ServerboundKeepAlivePacket;)V net/minecraft/server/network/ServerGamePacketListenerImpl/handleKeepAlive (Lnet/minecraft/network/protocol/game/ServerboundKeepAlivePacket;)V +MD: net/minecraft/server/network/ServerGamePacketListenerImpl/m_5712_ (Lnet/minecraft/network/protocol/game/ServerboundSetBeaconPacket;)V net/minecraft/server/network/ServerGamePacketListenerImpl/handleSetBeaconPacket (Lnet/minecraft/network/protocol/game/ServerboundSetBeaconPacket;)V +MD: net/minecraft/server/network/ServerGamePacketListenerImpl/m_5760_ (Lnet/minecraft/network/protocol/game/ServerboundUseItemPacket;)V net/minecraft/server/network/ServerGamePacketListenerImpl/handleUseItem (Lnet/minecraft/network/protocol/game/ServerboundUseItemPacket;)V +MD: net/minecraft/server/network/ServerGamePacketListenerImpl/m_5914_ (Lnet/minecraft/network/protocol/game/ServerboundContainerClickPacket;)V net/minecraft/server/network/ServerGamePacketListenerImpl/handleContainerClick (Lnet/minecraft/network/protocol/game/ServerboundContainerClickPacket;)V +MD: net/minecraft/server/network/ServerGamePacketListenerImpl/m_5918_ (Lnet/minecraft/network/protocol/game/ServerboundPlayerInputPacket;)V net/minecraft/server/network/ServerGamePacketListenerImpl/handlePlayerInput (Lnet/minecraft/network/protocol/game/ServerboundPlayerInputPacket;)V +MD: net/minecraft/server/network/ServerGamePacketListenerImpl/m_5938_ (Lnet/minecraft/network/protocol/game/ServerboundPaddleBoatPacket;)V net/minecraft/server/network/ServerGamePacketListenerImpl/handlePaddleBoat (Lnet/minecraft/network/protocol/game/ServerboundPaddleBoatPacket;)V +MD: net/minecraft/server/network/ServerGamePacketListenerImpl/m_5964_ (Lnet/minecraft/network/protocol/game/ServerboundSetCreativeModeSlotPacket;)V net/minecraft/server/network/ServerGamePacketListenerImpl/handleSetCreativeModeSlot (Lnet/minecraft/network/protocol/game/ServerboundSetCreativeModeSlotPacket;)V +MD: net/minecraft/server/network/ServerGamePacketListenerImpl/m_6198_ ()Z net/minecraft/server/network/ServerGamePacketListenerImpl/isAcceptingMessages ()Z +MD: net/minecraft/server/network/ServerGamePacketListenerImpl/m_6272_ (Lnet/minecraft/network/protocol/game/ServerboundClientCommandPacket;)V net/minecraft/server/network/ServerGamePacketListenerImpl/handleClientCommand (Lnet/minecraft/network/protocol/game/ServerboundClientCommandPacket;)V +MD: net/minecraft/server/network/ServerGamePacketListenerImpl/m_6321_ (Lnet/minecraft/network/protocol/game/ServerboundSelectTradePacket;)V net/minecraft/server/network/ServerGamePacketListenerImpl/handleSelectTrade (Lnet/minecraft/network/protocol/game/ServerboundSelectTradePacket;)V +MD: net/minecraft/server/network/ServerGamePacketListenerImpl/m_6371_ (Lnet/minecraft/network/protocol/game/ServerboundUseItemOnPacket;)V net/minecraft/server/network/ServerGamePacketListenerImpl/handleUseItemOn (Lnet/minecraft/network/protocol/game/ServerboundUseItemOnPacket;)V +MD: net/minecraft/server/network/ServerGamePacketListenerImpl/m_6449_ (Lnet/minecraft/network/protocol/game/ServerboundJigsawGeneratePacket;)V net/minecraft/server/network/ServerGamePacketListenerImpl/handleJigsawGenerate (Lnet/minecraft/network/protocol/game/ServerboundJigsawGeneratePacket;)V +MD: net/minecraft/server/network/ServerGamePacketListenerImpl/m_6557_ (Lnet/minecraft/network/protocol/game/ServerboundContainerButtonClickPacket;)V net/minecraft/server/network/ServerGamePacketListenerImpl/handleContainerButtonClick (Lnet/minecraft/network/protocol/game/ServerboundContainerButtonClickPacket;)V +MD: net/minecraft/server/network/ServerGamePacketListenerImpl/m_6629_ (Lnet/minecraft/network/protocol/game/ServerboundSetCommandMinecartPacket;)V net/minecraft/server/network/ServerGamePacketListenerImpl/handleSetCommandMinecart (Lnet/minecraft/network/protocol/game/ServerboundSetCommandMinecartPacket;)V +MD: net/minecraft/server/network/ServerGamePacketListenerImpl/m_6780_ (Lnet/minecraft/network/protocol/game/ServerboundBlockEntityTagQuery;)V net/minecraft/server/network/ServerGamePacketListenerImpl/handleBlockEntityTagQuery (Lnet/minecraft/network/protocol/game/ServerboundBlockEntityTagQuery;)V +MD: net/minecraft/server/network/ServerGamePacketListenerImpl/m_6828_ (Lnet/minecraft/network/protocol/game/ServerboundPlayerAbilitiesPacket;)V net/minecraft/server/network/ServerGamePacketListenerImpl/handlePlayerAbilities (Lnet/minecraft/network/protocol/game/ServerboundPlayerAbilitiesPacket;)V +MD: net/minecraft/server/network/ServerGamePacketListenerImpl/m_6829_ (Lnet/minecraft/network/protocol/game/ServerboundEditBookPacket;)V net/minecraft/server/network/ServerGamePacketListenerImpl/handleEditBook (Lnet/minecraft/network/protocol/game/ServerboundEditBookPacket;)V +MD: net/minecraft/server/network/ServerGamePacketListenerImpl/m_6936_ (Lnet/minecraft/network/protocol/game/ServerboundTeleportToEntityPacket;)V net/minecraft/server/network/ServerGamePacketListenerImpl/handleTeleportToEntityPacket (Lnet/minecraft/network/protocol/game/ServerboundTeleportToEntityPacket;)V +MD: net/minecraft/server/network/ServerGamePacketListenerImpl/m_6946_ (Lnet/minecraft/network/protocol/game/ServerboundInteractPacket;)V net/minecraft/server/network/ServerGamePacketListenerImpl/handleInteract (Lnet/minecraft/network/protocol/game/ServerboundInteractPacket;)V +MD: net/minecraft/server/network/ServerGamePacketListenerImpl/m_6947_ (Lnet/minecraft/network/protocol/game/ServerboundSeenAdvancementsPacket;)V net/minecraft/server/network/ServerGamePacketListenerImpl/handleSeenAdvancements (Lnet/minecraft/network/protocol/game/ServerboundSeenAdvancementsPacket;)V +MD: net/minecraft/server/network/ServerGamePacketListenerImpl/m_7026_ (Lnet/minecraft/network/chat/Component;)V net/minecraft/server/network/ServerGamePacketListenerImpl/onDisconnect (Lnet/minecraft/network/chat/Component;)V +MD: net/minecraft/server/network/ServerGamePacketListenerImpl/m_7185_ (Lnet/minecraft/network/protocol/game/ServerboundMovePlayerPacket;)V net/minecraft/server/network/ServerGamePacketListenerImpl/handleMovePlayer (Lnet/minecraft/network/protocol/game/ServerboundMovePlayerPacket;)V +MD: net/minecraft/server/network/ServerGamePacketListenerImpl/m_7191_ (Lnet/minecraft/network/protocol/game/ServerboundPlaceRecipePacket;)V net/minecraft/server/network/ServerGamePacketListenerImpl/handlePlaceRecipe (Lnet/minecraft/network/protocol/game/ServerboundPlaceRecipePacket;)V +MD: net/minecraft/server/network/ServerGamePacketListenerImpl/m_7192_ (Lnet/minecraft/network/protocol/game/ServerboundSetCommandBlockPacket;)V net/minecraft/server/network/ServerGamePacketListenerImpl/handleSetCommandBlock (Lnet/minecraft/network/protocol/game/ServerboundSetCommandBlockPacket;)V +MD: net/minecraft/server/network/ServerGamePacketListenerImpl/m_7376_ (Lnet/minecraft/network/protocol/game/ServerboundAcceptTeleportationPacket;)V net/minecraft/server/network/ServerGamePacketListenerImpl/handleAcceptTeleportPacket (Lnet/minecraft/network/protocol/game/ServerboundAcceptTeleportationPacket;)V +MD: net/minecraft/server/network/ServerGamePacketListenerImpl/m_7388_ (Lnet/minecraft/network/protocol/game/ServerboundChatPacket;)V net/minecraft/server/network/ServerGamePacketListenerImpl/handleChat (Lnet/minecraft/network/protocol/game/ServerboundChatPacket;)V +MD: net/minecraft/server/network/ServerGamePacketListenerImpl/m_7411_ (Lnet/minecraft/network/protocol/game/ServerboundRecipeBookSeenRecipePacket;)V net/minecraft/server/network/ServerGamePacketListenerImpl/handleRecipeBookSeenRecipePacket (Lnet/minecraft/network/protocol/game/ServerboundRecipeBookSeenRecipePacket;)V +MD: net/minecraft/server/network/ServerGamePacketListenerImpl/m_7423_ (Lnet/minecraft/network/protocol/game/ServerboundCustomPayloadPacket;)V net/minecraft/server/network/ServerGamePacketListenerImpl/handleCustomPayload (Lnet/minecraft/network/protocol/game/ServerboundCustomPayloadPacket;)V +MD: net/minecraft/server/network/ServerGamePacketListenerImpl/m_7424_ (Lnet/minecraft/network/protocol/game/ServerboundSetStructureBlockPacket;)V net/minecraft/server/network/ServerGamePacketListenerImpl/handleSetStructureBlock (Lnet/minecraft/network/protocol/game/ServerboundSetStructureBlockPacket;)V +MD: net/minecraft/server/network/ServerGamePacketListenerImpl/m_7477_ (Lnet/minecraft/network/protocol/game/ServerboundChangeDifficultyPacket;)V net/minecraft/server/network/ServerGamePacketListenerImpl/handleChangeDifficulty (Lnet/minecraft/network/protocol/game/ServerboundChangeDifficultyPacket;)V +MD: net/minecraft/server/network/ServerGamePacketListenerImpl/m_7502_ (Lnet/minecraft/network/protocol/game/ServerboundPlayerActionPacket;)V net/minecraft/server/network/ServerGamePacketListenerImpl/handlePlayerAction (Lnet/minecraft/network/protocol/game/ServerboundPlayerActionPacket;)V +MD: net/minecraft/server/network/ServerGamePacketListenerImpl/m_7529_ (Lnet/minecraft/network/protocol/game/ServerboundResourcePackPacket;)V net/minecraft/server/network/ServerGamePacketListenerImpl/handleResourcePackResponse (Lnet/minecraft/network/protocol/game/ServerboundResourcePackPacket;)V +MD: net/minecraft/server/network/ServerGamePacketListenerImpl/m_7548_ (Lnet/minecraft/network/protocol/game/ServerboundEntityTagQuery;)V net/minecraft/server/network/ServerGamePacketListenerImpl/handleEntityTagQuery (Lnet/minecraft/network/protocol/game/ServerboundEntityTagQuery;)V +MD: net/minecraft/server/network/ServerGamePacketListenerImpl/m_7728_ (Lnet/minecraft/network/protocol/game/ServerboundLockDifficultyPacket;)V net/minecraft/server/network/ServerGamePacketListenerImpl/handleLockDifficulty (Lnet/minecraft/network/protocol/game/ServerboundLockDifficultyPacket;)V +MD: net/minecraft/server/network/ServerGamePacketListenerImpl/m_7741_ (Lnet/minecraft/network/protocol/game/ServerboundCommandSuggestionPacket;)V net/minecraft/server/network/ServerGamePacketListenerImpl/handleCustomCommandSuggestions (Lnet/minecraft/network/protocol/game/ServerboundCommandSuggestionPacket;)V +MD: net/minecraft/server/network/ServerGamePacketListenerImpl/m_7798_ (Lnet/minecraft/network/protocol/game/ServerboundSetCarriedItemPacket;)V net/minecraft/server/network/ServerGamePacketListenerImpl/handleSetCarriedItem (Lnet/minecraft/network/protocol/game/ServerboundSetCarriedItemPacket;)V +MD: net/minecraft/server/network/ServerGamePacketListenerImpl/m_7951_ (Lnet/minecraft/network/protocol/game/ServerboundContainerClosePacket;)V net/minecraft/server/network/ServerGamePacketListenerImpl/handleContainerClose (Lnet/minecraft/network/protocol/game/ServerboundContainerClosePacket;)V +MD: net/minecraft/server/network/ServerGamePacketListenerImpl/m_7953_ (Lnet/minecraft/network/protocol/game/ServerboundSwingPacket;)V net/minecraft/server/network/ServerGamePacketListenerImpl/handleAnimate (Lnet/minecraft/network/protocol/game/ServerboundSwingPacket;)V +MD: net/minecraft/server/network/ServerGamePacketListenerImpl/m_7965_ (Lnet/minecraft/network/protocol/game/ServerboundPickItemPacket;)V net/minecraft/server/network/ServerGamePacketListenerImpl/handlePickItem (Lnet/minecraft/network/protocol/game/ServerboundPickItemPacket;)V +MD: net/minecraft/server/network/ServerGamePacketListenerImpl/m_7982_ (Lnet/minecraft/network/protocol/game/ServerboundRecipeBookChangeSettingsPacket;)V net/minecraft/server/network/ServerGamePacketListenerImpl/handleRecipeBookChangeSettingsPacket (Lnet/minecraft/network/protocol/game/ServerboundRecipeBookChangeSettingsPacket;)V +MD: net/minecraft/server/network/ServerGamePacketListenerImpl/m_8019_ (Lnet/minecraft/network/protocol/game/ServerboundSetJigsawBlockPacket;)V net/minecraft/server/network/ServerGamePacketListenerImpl/handleSetJigsawBlock (Lnet/minecraft/network/protocol/game/ServerboundSetJigsawBlockPacket;)V +MD: net/minecraft/server/network/ServerGamePacketListenerImpl/m_9774_ (DDDFF)V net/minecraft/server/network/ServerGamePacketListenerImpl/teleport (DDDFF)V +MD: net/minecraft/server/network/ServerGamePacketListenerImpl/m_9780_ (DDDFFLjava/util/Set;)V net/minecraft/server/network/ServerGamePacketListenerImpl/teleport (DDDFFLjava/util/Set;)V +MD: net/minecraft/server/network/ServerGamePacketListenerImpl/m_9790_ (Lnet/minecraft/server/level/ServerPlayer;Lnet/minecraft/world/item/ItemStack;)Z net/minecraft/server/network/ServerGamePacketListenerImpl/wasBlockPlacementAttempt (Lnet/minecraft/server/level/ServerPlayer;Lnet/minecraft/world/item/ItemStack;)Z +MD: net/minecraft/server/network/ServerGamePacketListenerImpl/m_9793_ (Lnet/minecraft/world/entity/Entity;)Z net/minecraft/server/network/ServerGamePacketListenerImpl/noBlocksAround (Lnet/minecraft/world/entity/Entity;)Z +MD: net/minecraft/server/network/ServerGamePacketListenerImpl/m_9812_ (Ljava/util/List;I)V net/minecraft/server/network/ServerGamePacketListenerImpl/updateBookContents (Ljava/util/List;I)V +MD: net/minecraft/server/network/ServerGamePacketListenerImpl/m_9826_ (Lnet/minecraft/network/chat/Component;)V net/minecraft/server/network/ServerGamePacketListenerImpl/lambda$disconnect$0 (Lnet/minecraft/network/chat/Component;)V +MD: net/minecraft/server/network/ServerGamePacketListenerImpl/m_9829_ (Lnet/minecraft/network/protocol/Packet;)V net/minecraft/server/network/ServerGamePacketListenerImpl/send (Lnet/minecraft/network/protocol/Packet;)V +MD: net/minecraft/server/network/ServerGamePacketListenerImpl/m_9922_ (Lnet/minecraft/network/protocol/game/ServerboundSignUpdatePacket;Ljava/util/List;)V net/minecraft/server/network/ServerGamePacketListenerImpl/updateSignText (Lnet/minecraft/network/protocol/game/ServerboundSignUpdatePacket;Ljava/util/List;)V +MD: net/minecraft/server/network/ServerGamePacketListenerImpl/m_9933_ ()V net/minecraft/server/network/ServerGamePacketListenerImpl/tick ()V +MD: net/minecraft/server/network/ServerGamePacketListenerImpl/m_9942_ (Lnet/minecraft/network/chat/Component;)V net/minecraft/server/network/ServerGamePacketListenerImpl/disconnect (Lnet/minecraft/network/chat/Component;)V +MD: net/minecraft/server/network/ServerGamePacketListenerImpl/m_9953_ ()V net/minecraft/server/network/ServerGamePacketListenerImpl/resetPosition ()V +MD: net/minecraft/server/network/ServerGamePacketListenerImpl/m_9956_ ()Z net/minecraft/server/network/ServerGamePacketListenerImpl/isSingleplayerOwner ()Z +MD: net/minecraft/server/network/ServerGamePacketListenerImpl$1/ (Lnet/minecraft/server/network/ServerGamePacketListenerImpl;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/Entity;)V net/minecraft/server/network/ServerGamePacketListenerImpl$1/ (Lnet/minecraft/server/network/ServerGamePacketListenerImpl;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/Entity;)V +MD: net/minecraft/server/network/ServerGamePacketListenerImpl$1/m_141994_ ()V net/minecraft/server/network/ServerGamePacketListenerImpl$1/onAttack ()V +MD: net/minecraft/server/network/ServerGamePacketListenerImpl$1/m_142143_ (Lnet/minecraft/world/InteractionHand;Lnet/minecraft/world/phys/Vec3;)V net/minecraft/server/network/ServerGamePacketListenerImpl$1/onInteraction (Lnet/minecraft/world/InteractionHand;Lnet/minecraft/world/phys/Vec3;)V +MD: net/minecraft/server/network/ServerGamePacketListenerImpl$1/m_142299_ (Lnet/minecraft/world/InteractionHand;)V net/minecraft/server/network/ServerGamePacketListenerImpl$1/onInteraction (Lnet/minecraft/world/InteractionHand;)V +MD: net/minecraft/server/network/ServerGamePacketListenerImpl$1/m_143678_ (Lnet/minecraft/world/InteractionHand;Lnet/minecraft/server/network/ServerGamePacketListenerImpl$EntityInteraction;)V net/minecraft/server/network/ServerGamePacketListenerImpl$1/performInteraction (Lnet/minecraft/world/InteractionHand;Lnet/minecraft/server/network/ServerGamePacketListenerImpl$EntityInteraction;)V +MD: net/minecraft/server/network/ServerGamePacketListenerImpl$1/m_143684_ (Lnet/minecraft/world/phys/Vec3;Lnet/minecraft/server/level/ServerPlayer;Lnet/minecraft/world/entity/Entity;Lnet/minecraft/world/InteractionHand;)Lnet/minecraft/world/InteractionResult; net/minecraft/server/network/ServerGamePacketListenerImpl$1/lambda$onInteraction$0 (Lnet/minecraft/world/phys/Vec3;Lnet/minecraft/server/level/ServerPlayer;Lnet/minecraft/world/entity/Entity;Lnet/minecraft/world/InteractionHand;)Lnet/minecraft/world/InteractionResult; +MD: net/minecraft/server/network/ServerGamePacketListenerImpl$2/ ()V net/minecraft/server/network/ServerGamePacketListenerImpl$2/ ()V +MD: net/minecraft/server/network/ServerGamePacketListenerImpl$EntityInteraction/m_143694_ (Lnet/minecraft/server/level/ServerPlayer;Lnet/minecraft/world/entity/Entity;Lnet/minecraft/world/InteractionHand;)Lnet/minecraft/world/InteractionResult; net/minecraft/server/network/ServerGamePacketListenerImpl$EntityInteraction/run (Lnet/minecraft/server/level/ServerPlayer;Lnet/minecraft/world/entity/Entity;Lnet/minecraft/world/InteractionHand;)Lnet/minecraft/world/InteractionResult; +MD: net/minecraft/server/network/ServerHandshakePacketListenerImpl/ ()V net/minecraft/server/network/ServerHandshakePacketListenerImpl/ ()V +MD: net/minecraft/server/network/ServerHandshakePacketListenerImpl/ (Lnet/minecraft/server/MinecraftServer;Lnet/minecraft/network/Connection;)V net/minecraft/server/network/ServerHandshakePacketListenerImpl/ (Lnet/minecraft/server/MinecraftServer;Lnet/minecraft/network/Connection;)V +MD: net/minecraft/server/network/ServerHandshakePacketListenerImpl/m_6198_ ()Z net/minecraft/server/network/ServerHandshakePacketListenerImpl/isAcceptingMessages ()Z +MD: net/minecraft/server/network/ServerHandshakePacketListenerImpl/m_7026_ (Lnet/minecraft/network/chat/Component;)V net/minecraft/server/network/ServerHandshakePacketListenerImpl/onDisconnect (Lnet/minecraft/network/chat/Component;)V +MD: net/minecraft/server/network/ServerHandshakePacketListenerImpl/m_7322_ (Lnet/minecraft/network/protocol/handshake/ClientIntentionPacket;)V net/minecraft/server/network/ServerHandshakePacketListenerImpl/handleIntention (Lnet/minecraft/network/protocol/handshake/ClientIntentionPacket;)V +MD: net/minecraft/server/network/ServerHandshakePacketListenerImpl$1/ ()V net/minecraft/server/network/ServerHandshakePacketListenerImpl$1/ ()V +MD: net/minecraft/server/network/ServerLoginPacketListenerImpl/ ()V net/minecraft/server/network/ServerLoginPacketListenerImpl/ ()V +MD: net/minecraft/server/network/ServerLoginPacketListenerImpl/ (Lnet/minecraft/server/MinecraftServer;Lnet/minecraft/network/Connection;)V net/minecraft/server/network/ServerLoginPacketListenerImpl/ (Lnet/minecraft/server/MinecraftServer;Lnet/minecraft/network/Connection;)V +MD: net/minecraft/server/network/ServerLoginPacketListenerImpl/m_10038_ (Lcom/mojang/authlib/GameProfile;)Lcom/mojang/authlib/GameProfile; net/minecraft/server/network/ServerLoginPacketListenerImpl/createFakeProfile (Lcom/mojang/authlib/GameProfile;)Lcom/mojang/authlib/GameProfile; +MD: net/minecraft/server/network/ServerLoginPacketListenerImpl/m_10040_ ()V net/minecraft/server/network/ServerLoginPacketListenerImpl/lambda$handleAcceptedLogin$0 ()V +MD: net/minecraft/server/network/ServerLoginPacketListenerImpl/m_10053_ (Lnet/minecraft/network/chat/Component;)V net/minecraft/server/network/ServerLoginPacketListenerImpl/disconnect (Lnet/minecraft/network/chat/Component;)V +MD: net/minecraft/server/network/ServerLoginPacketListenerImpl/m_10055_ ()V net/minecraft/server/network/ServerLoginPacketListenerImpl/handleAcceptedLogin ()V +MD: net/minecraft/server/network/ServerLoginPacketListenerImpl/m_10056_ ()Ljava/lang/String; net/minecraft/server/network/ServerLoginPacketListenerImpl/getUserName ()Ljava/lang/String; +MD: net/minecraft/server/network/ServerLoginPacketListenerImpl/m_143699_ (Lnet/minecraft/server/level/ServerPlayer;)V net/minecraft/server/network/ServerLoginPacketListenerImpl/placeNewPlayer (Lnet/minecraft/server/level/ServerPlayer;)V +MD: net/minecraft/server/network/ServerLoginPacketListenerImpl/m_203790_ (I)Z net/minecraft/server/network/ServerLoginPacketListenerImpl/lambda$isValidUsername$1 (I)Z +MD: net/minecraft/server/network/ServerLoginPacketListenerImpl/m_203792_ (Ljava/lang/String;)Z net/minecraft/server/network/ServerLoginPacketListenerImpl/isValidUsername (Ljava/lang/String;)Z +MD: net/minecraft/server/network/ServerLoginPacketListenerImpl/m_5990_ (Lnet/minecraft/network/protocol/login/ServerboundHelloPacket;)V net/minecraft/server/network/ServerLoginPacketListenerImpl/handleHello (Lnet/minecraft/network/protocol/login/ServerboundHelloPacket;)V +MD: net/minecraft/server/network/ServerLoginPacketListenerImpl/m_6198_ ()Z net/minecraft/server/network/ServerLoginPacketListenerImpl/isAcceptingMessages ()Z +MD: net/minecraft/server/network/ServerLoginPacketListenerImpl/m_7026_ (Lnet/minecraft/network/chat/Component;)V net/minecraft/server/network/ServerLoginPacketListenerImpl/onDisconnect (Lnet/minecraft/network/chat/Component;)V +MD: net/minecraft/server/network/ServerLoginPacketListenerImpl/m_7223_ (Lnet/minecraft/network/protocol/login/ServerboundCustomQueryPacket;)V net/minecraft/server/network/ServerLoginPacketListenerImpl/handleCustomQueryPacket (Lnet/minecraft/network/protocol/login/ServerboundCustomQueryPacket;)V +MD: net/minecraft/server/network/ServerLoginPacketListenerImpl/m_8072_ (Lnet/minecraft/network/protocol/login/ServerboundKeyPacket;)V net/minecraft/server/network/ServerLoginPacketListenerImpl/handleKey (Lnet/minecraft/network/protocol/login/ServerboundKeyPacket;)V +MD: net/minecraft/server/network/ServerLoginPacketListenerImpl/m_9933_ ()V net/minecraft/server/network/ServerLoginPacketListenerImpl/tick ()V +MD: net/minecraft/server/network/ServerLoginPacketListenerImpl$1/ (Lnet/minecraft/server/network/ServerLoginPacketListenerImpl;Ljava/lang/String;Ljava/lang/String;)V net/minecraft/server/network/ServerLoginPacketListenerImpl$1/ (Lnet/minecraft/server/network/ServerLoginPacketListenerImpl;Ljava/lang/String;Ljava/lang/String;)V +MD: net/minecraft/server/network/ServerLoginPacketListenerImpl$1/m_10064_ ()Ljava/net/InetAddress; net/minecraft/server/network/ServerLoginPacketListenerImpl$1/getAddress ()Ljava/net/InetAddress; +MD: net/minecraft/server/network/ServerLoginPacketListenerImpl$1/run ()V net/minecraft/server/network/ServerLoginPacketListenerImpl$1/run ()V +MD: net/minecraft/server/network/ServerLoginPacketListenerImpl$State/ ()V net/minecraft/server/network/ServerLoginPacketListenerImpl$State/ ()V +MD: net/minecraft/server/network/ServerLoginPacketListenerImpl$State/ (Ljava/lang/String;I)V net/minecraft/server/network/ServerLoginPacketListenerImpl$State/ (Ljava/lang/String;I)V +MD: net/minecraft/server/network/ServerLoginPacketListenerImpl$State/m_143701_ ()[Lnet/minecraft/server/network/ServerLoginPacketListenerImpl$State; net/minecraft/server/network/ServerLoginPacketListenerImpl$State/$values ()[Lnet/minecraft/server/network/ServerLoginPacketListenerImpl$State; +MD: net/minecraft/server/network/ServerLoginPacketListenerImpl$State/valueOf (Ljava/lang/String;)Lnet/minecraft/server/network/ServerLoginPacketListenerImpl$State; net/minecraft/server/network/ServerLoginPacketListenerImpl$State/valueOf (Ljava/lang/String;)Lnet/minecraft/server/network/ServerLoginPacketListenerImpl$State; +MD: net/minecraft/server/network/ServerLoginPacketListenerImpl$State/values ()[Lnet/minecraft/server/network/ServerLoginPacketListenerImpl$State; net/minecraft/server/network/ServerLoginPacketListenerImpl$State/values ()[Lnet/minecraft/server/network/ServerLoginPacketListenerImpl$State; +MD: net/minecraft/server/network/ServerPlayerConnection/m_142253_ ()Lnet/minecraft/server/level/ServerPlayer; net/minecraft/server/network/ServerPlayerConnection/getPlayer ()Lnet/minecraft/server/level/ServerPlayer; +MD: net/minecraft/server/network/ServerPlayerConnection/m_9829_ (Lnet/minecraft/network/protocol/Packet;)V net/minecraft/server/network/ServerPlayerConnection/send (Lnet/minecraft/network/protocol/Packet;)V +MD: net/minecraft/server/network/ServerStatusPacketListenerImpl/ ()V net/minecraft/server/network/ServerStatusPacketListenerImpl/ ()V +MD: net/minecraft/server/network/ServerStatusPacketListenerImpl/ (Lnet/minecraft/network/protocol/status/ServerStatus;Lnet/minecraft/network/Connection;)V net/minecraft/server/network/ServerStatusPacketListenerImpl/ (Lnet/minecraft/network/protocol/status/ServerStatus;Lnet/minecraft/network/Connection;)V +MD: net/minecraft/server/network/ServerStatusPacketListenerImpl/m_6198_ ()Z net/minecraft/server/network/ServerStatusPacketListenerImpl/isAcceptingMessages ()Z +MD: net/minecraft/server/network/ServerStatusPacketListenerImpl/m_6733_ (Lnet/minecraft/network/protocol/status/ServerboundStatusRequestPacket;)V net/minecraft/server/network/ServerStatusPacketListenerImpl/handleStatusRequest (Lnet/minecraft/network/protocol/status/ServerboundStatusRequestPacket;)V +MD: net/minecraft/server/network/ServerStatusPacketListenerImpl/m_7026_ (Lnet/minecraft/network/chat/Component;)V net/minecraft/server/network/ServerStatusPacketListenerImpl/onDisconnect (Lnet/minecraft/network/chat/Component;)V +MD: net/minecraft/server/network/ServerStatusPacketListenerImpl/m_7883_ (Lnet/minecraft/network/protocol/status/ServerboundPingRequestPacket;)V net/minecraft/server/network/ServerStatusPacketListenerImpl/handlePingRequest (Lnet/minecraft/network/protocol/status/ServerboundPingRequestPacket;)V +MD: net/minecraft/server/network/TextFilter/ ()V net/minecraft/server/network/TextFilter/ ()V +MD: net/minecraft/server/network/TextFilter/m_5925_ (Ljava/util/List;)Ljava/util/concurrent/CompletableFuture; net/minecraft/server/network/TextFilter/processMessageBundle (Ljava/util/List;)Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/server/network/TextFilter/m_6770_ (Ljava/lang/String;)Ljava/util/concurrent/CompletableFuture; net/minecraft/server/network/TextFilter/processStreamMessage (Ljava/lang/String;)Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/server/network/TextFilter/m_7670_ ()V net/minecraft/server/network/TextFilter/leave ()V +MD: net/minecraft/server/network/TextFilter/m_7674_ ()V net/minecraft/server/network/TextFilter/join ()V +MD: net/minecraft/server/network/TextFilter$1/ ()V net/minecraft/server/network/TextFilter$1/ ()V +MD: net/minecraft/server/network/TextFilter$1/m_5925_ (Ljava/util/List;)Ljava/util/concurrent/CompletableFuture; net/minecraft/server/network/TextFilter$1/processMessageBundle (Ljava/util/List;)Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/server/network/TextFilter$1/m_6770_ (Ljava/lang/String;)Ljava/util/concurrent/CompletableFuture; net/minecraft/server/network/TextFilter$1/processStreamMessage (Ljava/lang/String;)Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/server/network/TextFilter$1/m_7670_ ()V net/minecraft/server/network/TextFilter$1/leave ()V +MD: net/minecraft/server/network/TextFilter$1/m_7674_ ()V net/minecraft/server/network/TextFilter$1/join ()V +MD: net/minecraft/server/network/TextFilterClient/ ()V net/minecraft/server/network/TextFilterClient/ ()V +MD: net/minecraft/server/network/TextFilterClient/ (Ljava/net/URL;Lnet/minecraft/server/network/TextFilterClient$MessageEncoder;Ljava/net/URL;Lnet/minecraft/server/network/TextFilterClient$JoinOrLeaveEncoder;Ljava/net/URL;Lnet/minecraft/server/network/TextFilterClient$JoinOrLeaveEncoder;Ljava/lang/String;Lnet/minecraft/server/network/TextFilterClient$IgnoreStrategy;I)V net/minecraft/server/network/TextFilterClient/ (Ljava/net/URL;Lnet/minecraft/server/network/TextFilterClient$MessageEncoder;Ljava/net/URL;Lnet/minecraft/server/network/TextFilterClient$JoinOrLeaveEncoder;Ljava/net/URL;Lnet/minecraft/server/network/TextFilterClient$JoinOrLeaveEncoder;Ljava/lang/String;Lnet/minecraft/server/network/TextFilterClient$IgnoreStrategy;I)V +MD: net/minecraft/server/network/TextFilterClient/close ()V net/minecraft/server/network/TextFilterClient/close ()V +MD: net/minecraft/server/network/TextFilterClient/m_10127_ (Lcom/google/gson/JsonObject;Ljava/net/URL;)Lcom/google/gson/JsonObject; net/minecraft/server/network/TextFilterClient/processRequestResponse (Lcom/google/gson/JsonObject;Ljava/net/URL;)Lcom/google/gson/JsonObject; +MD: net/minecraft/server/network/TextFilterClient/m_10134_ (Lcom/mojang/authlib/GameProfile;)Lnet/minecraft/server/network/TextFilter; net/minecraft/server/network/TextFilterClient/createContext (Lcom/mojang/authlib/GameProfile;)Lnet/minecraft/server/network/TextFilter; +MD: net/minecraft/server/network/TextFilterClient/m_10136_ (Lcom/mojang/authlib/GameProfile;Ljava/lang/String;Lnet/minecraft/server/network/TextFilterClient$IgnoreStrategy;Ljava/util/concurrent/Executor;)Ljava/util/concurrent/CompletableFuture; net/minecraft/server/network/TextFilterClient/requestMessageProcessing (Lcom/mojang/authlib/GameProfile;Ljava/lang/String;Lnet/minecraft/server/network/TextFilterClient$IgnoreStrategy;Ljava/util/concurrent/Executor;)Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/server/network/TextFilterClient/m_10145_ (Ljava/io/InputStream;)V net/minecraft/server/network/TextFilterClient/drainStream (Ljava/io/InputStream;)V +MD: net/minecraft/server/network/TextFilterClient/m_10147_ (Ljava/lang/Runnable;)Ljava/lang/Thread; net/minecraft/server/network/TextFilterClient/lambda$static$0 (Ljava/lang/Runnable;)Ljava/lang/Thread; +MD: net/minecraft/server/network/TextFilterClient/m_10151_ (Lcom/google/gson/JsonObject;Ljava/net/URL;)V net/minecraft/server/network/TextFilterClient/processRequest (Lcom/google/gson/JsonObject;Ljava/net/URL;)V +MD: net/minecraft/server/network/TextFilterClient/m_10156_ (Lcom/google/gson/JsonObject;Ljava/net/URL;)Ljava/net/HttpURLConnection; net/minecraft/server/network/TextFilterClient/makeRequest (Lcom/google/gson/JsonObject;Ljava/net/URL;)Ljava/net/HttpURLConnection; +MD: net/minecraft/server/network/TextFilterClient/m_143736_ (Ljava/lang/String;)Lnet/minecraft/server/network/TextFilterClient; net/minecraft/server/network/TextFilterClient/createFromConfig (Ljava/lang/String;)Lnet/minecraft/server/network/TextFilterClient; +MD: net/minecraft/server/network/TextFilterClient/m_212245_ (Ljava/net/URI;Lcom/google/gson/JsonObject;Ljava/lang/String;Ljava/lang/String;)Ljava/net/URL; net/minecraft/server/network/TextFilterClient/getEndpoint (Ljava/net/URI;Lcom/google/gson/JsonObject;Ljava/lang/String;Ljava/lang/String;)Ljava/net/URL; +MD: net/minecraft/server/network/TextFilterClient/m_215290_ (Lnet/minecraft/server/network/TextFilterClient$JoinOrLeaveEncoder;Lcom/mojang/authlib/GameProfile;Ljava/net/URL;)V net/minecraft/server/network/TextFilterClient/lambda$processJoinOrLeave$4 (Lnet/minecraft/server/network/TextFilterClient$JoinOrLeaveEncoder;Lcom/mojang/authlib/GameProfile;Ljava/net/URL;)V +MD: net/minecraft/server/network/TextFilterClient/m_215294_ (Lcom/google/gson/JsonObject;Ljava/lang/String;Ljava/lang/String;)Ljava/lang/String; net/minecraft/server/network/TextFilterClient/getEndpointFromConfig (Lcom/google/gson/JsonObject;Ljava/lang/String;Ljava/lang/String;)Ljava/lang/String; +MD: net/minecraft/server/network/TextFilterClient/m_215302_ (Lcom/mojang/authlib/GameProfile;Ljava/net/URL;Lnet/minecraft/server/network/TextFilterClient$JoinOrLeaveEncoder;Ljava/util/concurrent/Executor;)V net/minecraft/server/network/TextFilterClient/processJoinOrLeave (Lcom/mojang/authlib/GameProfile;Ljava/net/URL;Lnet/minecraft/server/network/TextFilterClient$JoinOrLeaveEncoder;Ljava/util/concurrent/Executor;)V +MD: net/minecraft/server/network/TextFilterClient/m_215307_ (Ljava/lang/String;Ljava/lang/String;Lcom/mojang/authlib/GameProfile;)Lcom/google/gson/JsonObject; net/minecraft/server/network/TextFilterClient/lambda$createFromConfig$1 (Ljava/lang/String;Ljava/lang/String;Lcom/mojang/authlib/GameProfile;)Lcom/google/gson/JsonObject; +MD: net/minecraft/server/network/TextFilterClient/m_238210_ (ILjava/lang/String;Ljava/lang/String;Lcom/mojang/authlib/GameProfile;Ljava/lang/String;)Lcom/google/gson/JsonObject; net/minecraft/server/network/TextFilterClient/lambda$createFromConfig$2 (ILjava/lang/String;Ljava/lang/String;Lcom/mojang/authlib/GameProfile;Ljava/lang/String;)Lcom/google/gson/JsonObject; +MD: net/minecraft/server/network/TextFilterClient/m_238216_ (Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Lcom/mojang/authlib/GameProfile;Ljava/lang/String;)Lcom/google/gson/JsonObject; net/minecraft/server/network/TextFilterClient/lambda$createFromConfig$3 (Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Lcom/mojang/authlib/GameProfile;Ljava/lang/String;)Lcom/google/gson/JsonObject; +MD: net/minecraft/server/network/TextFilterClient/m_243047_ (Lcom/mojang/authlib/GameProfile;Ljava/lang/String;Lnet/minecraft/server/network/TextFilterClient$IgnoreStrategy;)Lnet/minecraft/server/network/FilteredText; net/minecraft/server/network/TextFilterClient/lambda$requestMessageProcessing$5 (Lcom/mojang/authlib/GameProfile;Ljava/lang/String;Lnet/minecraft/server/network/TextFilterClient$IgnoreStrategy;)Lnet/minecraft/server/network/FilteredText; +MD: net/minecraft/server/network/TextFilterClient/m_243083_ (Ljava/lang/String;Lcom/google/gson/JsonArray;Lnet/minecraft/server/network/TextFilterClient$IgnoreStrategy;)Lnet/minecraft/network/chat/FilterMask; net/minecraft/server/network/TextFilterClient/parseMask (Ljava/lang/String;Lcom/google/gson/JsonArray;Lnet/minecraft/server/network/TextFilterClient$IgnoreStrategy;)Lnet/minecraft/network/chat/FilterMask; +MD: net/minecraft/server/network/TextFilterClient$IgnoreStrategy/ ()V net/minecraft/server/network/TextFilterClient$IgnoreStrategy/ ()V +MD: net/minecraft/server/network/TextFilterClient$IgnoreStrategy/m_10165_ (Ljava/lang/String;I)Z net/minecraft/server/network/TextFilterClient$IgnoreStrategy/lambda$static$1 (Ljava/lang/String;I)Z +MD: net/minecraft/server/network/TextFilterClient$IgnoreStrategy/m_10168_ (Ljava/lang/String;I)Z net/minecraft/server/network/TextFilterClient$IgnoreStrategy/lambda$static$0 (Ljava/lang/String;I)Z +MD: net/minecraft/server/network/TextFilterClient$IgnoreStrategy/m_10171_ (Ljava/lang/String;I)Z net/minecraft/server/network/TextFilterClient$IgnoreStrategy/shouldIgnore (Ljava/lang/String;I)Z +MD: net/minecraft/server/network/TextFilterClient$IgnoreStrategy/m_143738_ (I)Lnet/minecraft/server/network/TextFilterClient$IgnoreStrategy; net/minecraft/server/network/TextFilterClient$IgnoreStrategy/ignoreOverThreshold (I)Lnet/minecraft/server/network/TextFilterClient$IgnoreStrategy; +MD: net/minecraft/server/network/TextFilterClient$IgnoreStrategy/m_143740_ (ILjava/lang/String;I)Z net/minecraft/server/network/TextFilterClient$IgnoreStrategy/lambda$ignoreOverThreshold$2 (ILjava/lang/String;I)Z +MD: net/minecraft/server/network/TextFilterClient$IgnoreStrategy/m_143744_ (I)Lnet/minecraft/server/network/TextFilterClient$IgnoreStrategy; net/minecraft/server/network/TextFilterClient$IgnoreStrategy/select (I)Lnet/minecraft/server/network/TextFilterClient$IgnoreStrategy; +MD: net/minecraft/server/network/TextFilterClient$JoinOrLeaveEncoder/m_215317_ (Lcom/mojang/authlib/GameProfile;)Lcom/google/gson/JsonObject; net/minecraft/server/network/TextFilterClient$JoinOrLeaveEncoder/encode (Lcom/mojang/authlib/GameProfile;)Lcom/google/gson/JsonObject; +MD: net/minecraft/server/network/TextFilterClient$MessageEncoder/m_215319_ (Lcom/mojang/authlib/GameProfile;Ljava/lang/String;)Lcom/google/gson/JsonObject; net/minecraft/server/network/TextFilterClient$MessageEncoder/encode (Lcom/mojang/authlib/GameProfile;Ljava/lang/String;)Lcom/google/gson/JsonObject; +MD: net/minecraft/server/network/TextFilterClient$PlayerContext/ (Lnet/minecraft/server/network/TextFilterClient;Lcom/mojang/authlib/GameProfile;)V net/minecraft/server/network/TextFilterClient$PlayerContext/ (Lnet/minecraft/server/network/TextFilterClient;Lcom/mojang/authlib/GameProfile;)V +MD: net/minecraft/server/network/TextFilterClient$PlayerContext/m_10194_ (Ljava/lang/String;)Ljava/util/concurrent/CompletableFuture; net/minecraft/server/network/TextFilterClient$PlayerContext/lambda$processMessageBundle$0 (Ljava/lang/String;)Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/server/network/TextFilterClient$PlayerContext/m_143746_ (Ljava/lang/Throwable;)Ljava/util/List; net/minecraft/server/network/TextFilterClient$PlayerContext/lambda$processMessageBundle$1 (Ljava/lang/Throwable;)Ljava/util/List; +MD: net/minecraft/server/network/TextFilterClient$PlayerContext/m_5925_ (Ljava/util/List;)Ljava/util/concurrent/CompletableFuture; net/minecraft/server/network/TextFilterClient$PlayerContext/processMessageBundle (Ljava/util/List;)Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/server/network/TextFilterClient$PlayerContext/m_6770_ (Ljava/lang/String;)Ljava/util/concurrent/CompletableFuture; net/minecraft/server/network/TextFilterClient$PlayerContext/processStreamMessage (Ljava/lang/String;)Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/server/network/TextFilterClient$PlayerContext/m_7670_ ()V net/minecraft/server/network/TextFilterClient$PlayerContext/leave ()V +MD: net/minecraft/server/network/TextFilterClient$PlayerContext/m_7674_ ()V net/minecraft/server/network/TextFilterClient$PlayerContext/join ()V +MD: net/minecraft/server/network/TextFilterClient$RequestFailedException/ (Ljava/lang/String;)V net/minecraft/server/network/TextFilterClient$RequestFailedException/ (Ljava/lang/String;)V +MD: net/minecraft/server/packs/AbstractPackResources/ ()V net/minecraft/server/packs/AbstractPackResources/ ()V +MD: net/minecraft/server/packs/AbstractPackResources/ (Ljava/lang/String;Z)V net/minecraft/server/packs/AbstractPackResources/ (Ljava/lang/String;Z)V +MD: net/minecraft/server/packs/AbstractPackResources/m_10214_ (Lnet/minecraft/server/packs/metadata/MetadataSectionSerializer;Ljava/io/InputStream;)Ljava/lang/Object; net/minecraft/server/packs/AbstractPackResources/getMetadataFromStream (Lnet/minecraft/server/packs/metadata/MetadataSectionSerializer;Ljava/io/InputStream;)Ljava/lang/Object; +MD: net/minecraft/server/packs/AbstractPackResources/m_246538_ ()Z net/minecraft/server/packs/AbstractPackResources/isBuiltin ()Z +MD: net/minecraft/server/packs/AbstractPackResources/m_5542_ ()Ljava/lang/String; net/minecraft/server/packs/AbstractPackResources/packId ()Ljava/lang/String; +MD: net/minecraft/server/packs/AbstractPackResources/m_5550_ (Lnet/minecraft/server/packs/metadata/MetadataSectionSerializer;)Ljava/lang/Object; net/minecraft/server/packs/AbstractPackResources/getMetadataSection (Lnet/minecraft/server/packs/metadata/MetadataSectionSerializer;)Ljava/lang/Object; +MD: net/minecraft/server/packs/BuiltInMetadata/ ()V net/minecraft/server/packs/BuiltInMetadata/ ()V +MD: net/minecraft/server/packs/BuiltInMetadata/ (Ljava/util/Map;)V net/minecraft/server/packs/BuiltInMetadata/ (Ljava/util/Map;)V +MD: net/minecraft/server/packs/BuiltInMetadata/m_245257_ (Lnet/minecraft/server/packs/metadata/MetadataSectionSerializer;Ljava/lang/Object;Lnet/minecraft/server/packs/metadata/MetadataSectionSerializer;Ljava/lang/Object;)Lnet/minecraft/server/packs/BuiltInMetadata; net/minecraft/server/packs/BuiltInMetadata/of (Lnet/minecraft/server/packs/metadata/MetadataSectionSerializer;Ljava/lang/Object;Lnet/minecraft/server/packs/metadata/MetadataSectionSerializer;Ljava/lang/Object;)Lnet/minecraft/server/packs/BuiltInMetadata; +MD: net/minecraft/server/packs/BuiltInMetadata/m_245920_ (Lnet/minecraft/server/packs/metadata/MetadataSectionSerializer;)Ljava/lang/Object; net/minecraft/server/packs/BuiltInMetadata/get (Lnet/minecraft/server/packs/metadata/MetadataSectionSerializer;)Ljava/lang/Object; +MD: net/minecraft/server/packs/BuiltInMetadata/m_246355_ ()Lnet/minecraft/server/packs/BuiltInMetadata; net/minecraft/server/packs/BuiltInMetadata/of ()Lnet/minecraft/server/packs/BuiltInMetadata; +MD: net/minecraft/server/packs/BuiltInMetadata/m_246652_ (Lnet/minecraft/server/packs/metadata/MetadataSectionSerializer;Ljava/lang/Object;)Lnet/minecraft/server/packs/BuiltInMetadata; net/minecraft/server/packs/BuiltInMetadata/of (Lnet/minecraft/server/packs/metadata/MetadataSectionSerializer;Ljava/lang/Object;)Lnet/minecraft/server/packs/BuiltInMetadata; +MD: net/minecraft/server/packs/FeatureFlagsMetadataSection/ ()V net/minecraft/server/packs/FeatureFlagsMetadataSection/ ()V +MD: net/minecraft/server/packs/FeatureFlagsMetadataSection/ (Lnet/minecraft/world/flag/FeatureFlagSet;)V net/minecraft/server/packs/FeatureFlagsMetadataSection/ (Lnet/minecraft/world/flag/FeatureFlagSet;)V +MD: net/minecraft/server/packs/FeatureFlagsMetadataSection/equals (Ljava/lang/Object;)Z net/minecraft/server/packs/FeatureFlagsMetadataSection/equals (Ljava/lang/Object;)Z +MD: net/minecraft/server/packs/FeatureFlagsMetadataSection/f_244197_ ()Lnet/minecraft/world/flag/FeatureFlagSet; net/minecraft/server/packs/FeatureFlagsMetadataSection/flags ()Lnet/minecraft/world/flag/FeatureFlagSet; +MD: net/minecraft/server/packs/FeatureFlagsMetadataSection/hashCode ()I net/minecraft/server/packs/FeatureFlagsMetadataSection/hashCode ()I +MD: net/minecraft/server/packs/FeatureFlagsMetadataSection/m_246586_ (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/server/packs/FeatureFlagsMetadataSection/lambda$static$0 (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/server/packs/FeatureFlagsMetadataSection/toString ()Ljava/lang/String; net/minecraft/server/packs/FeatureFlagsMetadataSection/toString ()Ljava/lang/String; +MD: net/minecraft/server/packs/FilePackResources/ ()V net/minecraft/server/packs/FilePackResources/ ()V +MD: net/minecraft/server/packs/FilePackResources/ (Ljava/lang/String;Ljava/io/File;Z)V net/minecraft/server/packs/FilePackResources/ (Ljava/lang/String;Ljava/io/File;Z)V +MD: net/minecraft/server/packs/FilePackResources/close ()V net/minecraft/server/packs/FilePackResources/close ()V +MD: net/minecraft/server/packs/FilePackResources/finalize ()V net/minecraft/server/packs/FilePackResources/finalize ()V +MD: net/minecraft/server/packs/FilePackResources/m_10247_ ()Ljava/util/zip/ZipFile; net/minecraft/server/packs/FilePackResources/getOrCreateZipFile ()Ljava/util/zip/ZipFile; +MD: net/minecraft/server/packs/FilePackResources/m_214146_ (Lnet/minecraft/server/packs/PackType;Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/server/packs/resources/IoSupplier; net/minecraft/server/packs/FilePackResources/getResource (Lnet/minecraft/server/packs/PackType;Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/server/packs/resources/IoSupplier; +MD: net/minecraft/server/packs/FilePackResources/m_245721_ (Lnet/minecraft/server/packs/PackType;Lnet/minecraft/resources/ResourceLocation;)Ljava/lang/String; net/minecraft/server/packs/FilePackResources/getPathFromLocation (Lnet/minecraft/server/packs/PackType;Lnet/minecraft/resources/ResourceLocation;)Ljava/lang/String; +MD: net/minecraft/server/packs/FilePackResources/m_247280_ (Ljava/lang/String;)Lnet/minecraft/server/packs/resources/IoSupplier; net/minecraft/server/packs/FilePackResources/getResource (Ljava/lang/String;)Lnet/minecraft/server/packs/resources/IoSupplier; +MD: net/minecraft/server/packs/FilePackResources/m_5698_ (Lnet/minecraft/server/packs/PackType;)Ljava/util/Set; net/minecraft/server/packs/FilePackResources/getNamespaces (Lnet/minecraft/server/packs/PackType;)Ljava/util/Set; +MD: net/minecraft/server/packs/FilePackResources/m_8017_ ([Ljava/lang/String;)Lnet/minecraft/server/packs/resources/IoSupplier; net/minecraft/server/packs/FilePackResources/getRootResource ([Ljava/lang/String;)Lnet/minecraft/server/packs/resources/IoSupplier; +MD: net/minecraft/server/packs/FilePackResources/m_8031_ (Lnet/minecraft/server/packs/PackType;Ljava/lang/String;Ljava/lang/String;Lnet/minecraft/server/packs/PackResources$ResourceOutput;)V net/minecraft/server/packs/FilePackResources/listResources (Lnet/minecraft/server/packs/PackType;Ljava/lang/String;Ljava/lang/String;Lnet/minecraft/server/packs/PackResources$ResourceOutput;)V +MD: net/minecraft/server/packs/PackResources/close ()V net/minecraft/server/packs/PackResources/close ()V +MD: net/minecraft/server/packs/PackResources/m_214146_ (Lnet/minecraft/server/packs/PackType;Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/server/packs/resources/IoSupplier; net/minecraft/server/packs/PackResources/getResource (Lnet/minecraft/server/packs/PackType;Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/server/packs/resources/IoSupplier; +MD: net/minecraft/server/packs/PackResources/m_246538_ ()Z net/minecraft/server/packs/PackResources/isBuiltin ()Z +MD: net/minecraft/server/packs/PackResources/m_5542_ ()Ljava/lang/String; net/minecraft/server/packs/PackResources/packId ()Ljava/lang/String; +MD: net/minecraft/server/packs/PackResources/m_5550_ (Lnet/minecraft/server/packs/metadata/MetadataSectionSerializer;)Ljava/lang/Object; net/minecraft/server/packs/PackResources/getMetadataSection (Lnet/minecraft/server/packs/metadata/MetadataSectionSerializer;)Ljava/lang/Object; +MD: net/minecraft/server/packs/PackResources/m_5698_ (Lnet/minecraft/server/packs/PackType;)Ljava/util/Set; net/minecraft/server/packs/PackResources/getNamespaces (Lnet/minecraft/server/packs/PackType;)Ljava/util/Set; +MD: net/minecraft/server/packs/PackResources/m_8017_ ([Ljava/lang/String;)Lnet/minecraft/server/packs/resources/IoSupplier; net/minecraft/server/packs/PackResources/getRootResource ([Ljava/lang/String;)Lnet/minecraft/server/packs/resources/IoSupplier; +MD: net/minecraft/server/packs/PackResources/m_8031_ (Lnet/minecraft/server/packs/PackType;Ljava/lang/String;Ljava/lang/String;Lnet/minecraft/server/packs/PackResources$ResourceOutput;)V net/minecraft/server/packs/PackResources/listResources (Lnet/minecraft/server/packs/PackType;Ljava/lang/String;Ljava/lang/String;Lnet/minecraft/server/packs/PackResources$ResourceOutput;)V +MD: net/minecraft/server/packs/PackType/ ()V net/minecraft/server/packs/PackType/ ()V +MD: net/minecraft/server/packs/PackType/ (Ljava/lang/String;ILjava/lang/String;)V net/minecraft/server/packs/PackType/ (Ljava/lang/String;ILjava/lang/String;)V +MD: net/minecraft/server/packs/PackType/m_10305_ ()Ljava/lang/String; net/minecraft/server/packs/PackType/getDirectory ()Ljava/lang/String; +MD: net/minecraft/server/packs/PackType/m_143758_ ()[Lnet/minecraft/server/packs/PackType; net/minecraft/server/packs/PackType/$values ()[Lnet/minecraft/server/packs/PackType; +MD: net/minecraft/server/packs/PackType/valueOf (Ljava/lang/String;)Lnet/minecraft/server/packs/PackType; net/minecraft/server/packs/PackType/valueOf (Ljava/lang/String;)Lnet/minecraft/server/packs/PackType; +MD: net/minecraft/server/packs/PackType/values ()[Lnet/minecraft/server/packs/PackType; net/minecraft/server/packs/PackType/values ()[Lnet/minecraft/server/packs/PackType; +MD: net/minecraft/server/packs/PathPackResources/ ()V net/minecraft/server/packs/PathPackResources/ ()V +MD: net/minecraft/server/packs/PathPackResources/ (Ljava/lang/String;Ljava/nio/file/Path;Z)V net/minecraft/server/packs/PathPackResources/ (Ljava/lang/String;Ljava/nio/file/Path;Z)V +MD: net/minecraft/server/packs/PathPackResources/close ()V net/minecraft/server/packs/PathPackResources/close ()V +MD: net/minecraft/server/packs/PathPackResources/m_214146_ (Lnet/minecraft/server/packs/PackType;Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/server/packs/resources/IoSupplier; net/minecraft/server/packs/PathPackResources/getResource (Lnet/minecraft/server/packs/PackType;Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/server/packs/resources/IoSupplier; +MD: net/minecraft/server/packs/PathPackResources/m_245378_ (Lnet/minecraft/server/packs/PackType;Ljava/lang/String;Lnet/minecraft/server/packs/PackResources$ResourceOutput;Ljava/util/List;)V net/minecraft/server/packs/PathPackResources/lambda$listResources$2 (Lnet/minecraft/server/packs/PackType;Ljava/lang/String;Lnet/minecraft/server/packs/PackResources$ResourceOutput;Ljava/util/List;)V +MD: net/minecraft/server/packs/PathPackResources/m_245898_ (Ljava/nio/file/Path;Ljava/util/List;)Lnet/minecraft/server/packs/resources/IoSupplier; net/minecraft/server/packs/PathPackResources/lambda$getResource$0 (Ljava/nio/file/Path;Ljava/util/List;)Lnet/minecraft/server/packs/resources/IoSupplier; +MD: net/minecraft/server/packs/PathPackResources/m_246537_ (Lnet/minecraft/resources/ResourceLocation;Lcom/mojang/serialization/DataResult$PartialResult;)Lnet/minecraft/server/packs/resources/IoSupplier; net/minecraft/server/packs/PathPackResources/lambda$getResource$1 (Lnet/minecraft/resources/ResourceLocation;Lcom/mojang/serialization/DataResult$PartialResult;)Lnet/minecraft/server/packs/resources/IoSupplier; +MD: net/minecraft/server/packs/PathPackResources/m_246877_ (Ljava/nio/file/Path;)Z net/minecraft/server/packs/PathPackResources/validatePath (Ljava/nio/file/Path;)Z +MD: net/minecraft/server/packs/PathPackResources/m_246914_ (Ljava/lang/String;Ljava/nio/file/Path;Ljava/util/List;Lnet/minecraft/server/packs/PackResources$ResourceOutput;)V net/minecraft/server/packs/PathPackResources/listPath (Ljava/lang/String;Ljava/nio/file/Path;Ljava/util/List;Lnet/minecraft/server/packs/PackResources$ResourceOutput;)V +MD: net/minecraft/server/packs/PathPackResources/m_246950_ (Ljava/lang/String;Lcom/mojang/serialization/DataResult$PartialResult;)V net/minecraft/server/packs/PathPackResources/lambda$listResources$3 (Ljava/lang/String;Lcom/mojang/serialization/DataResult$PartialResult;)V +MD: net/minecraft/server/packs/PathPackResources/m_246992_ (Ljava/nio/file/Path;)Lnet/minecraft/server/packs/resources/IoSupplier; net/minecraft/server/packs/PathPackResources/returnFileIfExists (Ljava/nio/file/Path;)Lnet/minecraft/server/packs/resources/IoSupplier; +MD: net/minecraft/server/packs/PathPackResources/m_247113_ (Lnet/minecraft/resources/ResourceLocation;Ljava/nio/file/Path;)Lnet/minecraft/server/packs/resources/IoSupplier; net/minecraft/server/packs/PathPackResources/getResource (Lnet/minecraft/resources/ResourceLocation;Ljava/nio/file/Path;)Lnet/minecraft/server/packs/resources/IoSupplier; +MD: net/minecraft/server/packs/PathPackResources/m_247260_ (Ljava/nio/file/Path;Ljava/nio/file/attribute/BasicFileAttributes;)Z net/minecraft/server/packs/PathPackResources/lambda$listPath$4 (Ljava/nio/file/Path;Ljava/nio/file/attribute/BasicFileAttributes;)Z +MD: net/minecraft/server/packs/PathPackResources/m_247327_ (Ljava/nio/file/Path;Ljava/lang/String;Lnet/minecraft/server/packs/PackResources$ResourceOutput;Ljava/nio/file/Path;)V net/minecraft/server/packs/PathPackResources/lambda$listPath$5 (Ljava/nio/file/Path;Ljava/lang/String;Lnet/minecraft/server/packs/PackResources$ResourceOutput;Ljava/nio/file/Path;)V +MD: net/minecraft/server/packs/PathPackResources/m_5698_ (Lnet/minecraft/server/packs/PackType;)Ljava/util/Set; net/minecraft/server/packs/PathPackResources/getNamespaces (Lnet/minecraft/server/packs/PackType;)Ljava/util/Set; +MD: net/minecraft/server/packs/PathPackResources/m_8017_ ([Ljava/lang/String;)Lnet/minecraft/server/packs/resources/IoSupplier; net/minecraft/server/packs/PathPackResources/getRootResource ([Ljava/lang/String;)Lnet/minecraft/server/packs/resources/IoSupplier; +MD: net/minecraft/server/packs/PathPackResources/m_8031_ (Lnet/minecraft/server/packs/PackType;Ljava/lang/String;Ljava/lang/String;Lnet/minecraft/server/packs/PackResources$ResourceOutput;)V net/minecraft/server/packs/PathPackResources/listResources (Lnet/minecraft/server/packs/PackType;Ljava/lang/String;Ljava/lang/String;Lnet/minecraft/server/packs/PackResources$ResourceOutput;)V +MD: net/minecraft/server/packs/VanillaPackResources/ ()V net/minecraft/server/packs/VanillaPackResources/ ()V +MD: net/minecraft/server/packs/VanillaPackResources/ (Lnet/minecraft/server/packs/BuiltInMetadata;Ljava/util/Set;Ljava/util/List;Ljava/util/Map;)V net/minecraft/server/packs/VanillaPackResources/ (Lnet/minecraft/server/packs/BuiltInMetadata;Ljava/util/Set;Ljava/util/List;Ljava/util/Map;)V +MD: net/minecraft/server/packs/VanillaPackResources/close ()V net/minecraft/server/packs/VanillaPackResources/close ()V +MD: net/minecraft/server/packs/VanillaPackResources/m_214146_ (Lnet/minecraft/server/packs/PackType;Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/server/packs/resources/IoSupplier; net/minecraft/server/packs/VanillaPackResources/getResource (Lnet/minecraft/server/packs/PackType;Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/server/packs/resources/IoSupplier; +MD: net/minecraft/server/packs/VanillaPackResources/m_215363_ ()Lnet/minecraft/server/packs/resources/ResourceProvider; net/minecraft/server/packs/VanillaPackResources/asProvider ()Lnet/minecraft/server/packs/resources/ResourceProvider; +MD: net/minecraft/server/packs/VanillaPackResources/m_244888_ (Lnet/minecraft/server/packs/resources/IoSupplier;)Lnet/minecraft/server/packs/resources/Resource; net/minecraft/server/packs/VanillaPackResources/lambda$asProvider$6 (Lnet/minecraft/server/packs/resources/IoSupplier;)Lnet/minecraft/server/packs/resources/Resource; +MD: net/minecraft/server/packs/VanillaPackResources/m_244889_ (Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/server/packs/PackType;Ljava/util/List;)Lnet/minecraft/server/packs/resources/IoSupplier; net/minecraft/server/packs/VanillaPackResources/lambda$getResource$4 (Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/server/packs/PackType;Ljava/util/List;)Lnet/minecraft/server/packs/resources/IoSupplier; +MD: net/minecraft/server/packs/VanillaPackResources/m_244890_ (Lnet/minecraft/server/packs/PackType;Lnet/minecraft/server/packs/PackResources$ResourceOutput;Ljava/lang/String;Ljava/util/List;)V net/minecraft/server/packs/VanillaPackResources/lambda$listResources$2 (Lnet/minecraft/server/packs/PackType;Lnet/minecraft/server/packs/PackResources$ResourceOutput;Ljava/lang/String;Ljava/util/List;)V +MD: net/minecraft/server/packs/VanillaPackResources/m_244891_ (Lnet/minecraft/resources/ResourceLocation;Lcom/mojang/serialization/DataResult$PartialResult;)Lnet/minecraft/server/packs/resources/IoSupplier; net/minecraft/server/packs/VanillaPackResources/lambda$getResource$5 (Lnet/minecraft/resources/ResourceLocation;Lcom/mojang/serialization/DataResult$PartialResult;)Lnet/minecraft/server/packs/resources/IoSupplier; +MD: net/minecraft/server/packs/VanillaPackResources/m_244892_ (Lnet/minecraft/resources/ResourceLocation;Lcom/mojang/serialization/DataResult$PartialResult;)V net/minecraft/server/packs/VanillaPackResources/lambda$listRawPaths$1 (Lnet/minecraft/resources/ResourceLocation;Lcom/mojang/serialization/DataResult$PartialResult;)V +MD: net/minecraft/server/packs/VanillaPackResources/m_244893_ (Ljava/lang/String;Lcom/mojang/serialization/DataResult$PartialResult;)V net/minecraft/server/packs/VanillaPackResources/lambda$listResources$3 (Ljava/lang/String;Lcom/mojang/serialization/DataResult$PartialResult;)V +MD: net/minecraft/server/packs/VanillaPackResources/m_244894_ (Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/server/packs/PackType;Ljava/util/function/Consumer;Ljava/util/List;)V net/minecraft/server/packs/VanillaPackResources/lambda$listRawPaths$0 (Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/server/packs/PackType;Ljava/util/function/Consumer;Ljava/util/List;)V +MD: net/minecraft/server/packs/VanillaPackResources/m_244895_ (Lnet/minecraft/resources/ResourceLocation;)Ljava/util/Optional; net/minecraft/server/packs/VanillaPackResources/lambda$asProvider$7 (Lnet/minecraft/resources/ResourceLocation;)Ljava/util/Optional; +MD: net/minecraft/server/packs/VanillaPackResources/m_245163_ (Lnet/minecraft/server/packs/PackType;Lnet/minecraft/resources/ResourceLocation;Ljava/util/function/Consumer;)V net/minecraft/server/packs/VanillaPackResources/listRawPaths (Lnet/minecraft/server/packs/PackType;Lnet/minecraft/resources/ResourceLocation;Ljava/util/function/Consumer;)V +MD: net/minecraft/server/packs/VanillaPackResources/m_246310_ (Lnet/minecraft/server/packs/PackResources$ResourceOutput;Ljava/lang/String;Ljava/nio/file/Path;Ljava/util/List;)V net/minecraft/server/packs/VanillaPackResources/getResources (Lnet/minecraft/server/packs/PackResources$ResourceOutput;Ljava/lang/String;Ljava/nio/file/Path;Ljava/util/List;)V +MD: net/minecraft/server/packs/VanillaPackResources/m_246538_ ()Z net/minecraft/server/packs/VanillaPackResources/isBuiltin ()Z +MD: net/minecraft/server/packs/VanillaPackResources/m_5542_ ()Ljava/lang/String; net/minecraft/server/packs/VanillaPackResources/packId ()Ljava/lang/String; +MD: net/minecraft/server/packs/VanillaPackResources/m_5550_ (Lnet/minecraft/server/packs/metadata/MetadataSectionSerializer;)Ljava/lang/Object; net/minecraft/server/packs/VanillaPackResources/getMetadataSection (Lnet/minecraft/server/packs/metadata/MetadataSectionSerializer;)Ljava/lang/Object; +MD: net/minecraft/server/packs/VanillaPackResources/m_5698_ (Lnet/minecraft/server/packs/PackType;)Ljava/util/Set; net/minecraft/server/packs/VanillaPackResources/getNamespaces (Lnet/minecraft/server/packs/PackType;)Ljava/util/Set; +MD: net/minecraft/server/packs/VanillaPackResources/m_8017_ ([Ljava/lang/String;)Lnet/minecraft/server/packs/resources/IoSupplier; net/minecraft/server/packs/VanillaPackResources/getRootResource ([Ljava/lang/String;)Lnet/minecraft/server/packs/resources/IoSupplier; +MD: net/minecraft/server/packs/VanillaPackResources/m_8031_ (Lnet/minecraft/server/packs/PackType;Ljava/lang/String;Ljava/lang/String;Lnet/minecraft/server/packs/PackResources$ResourceOutput;)V net/minecraft/server/packs/VanillaPackResources/listResources (Lnet/minecraft/server/packs/PackType;Ljava/lang/String;Ljava/lang/String;Lnet/minecraft/server/packs/PackResources$ResourceOutput;)V +MD: net/minecraft/server/packs/VanillaPackResourcesBuilder/ ()V net/minecraft/server/packs/VanillaPackResourcesBuilder/ ()V +MD: net/minecraft/server/packs/VanillaPackResourcesBuilder/ ()V net/minecraft/server/packs/VanillaPackResourcesBuilder/ ()V +MD: net/minecraft/server/packs/VanillaPackResourcesBuilder/m_245153_ (Lnet/minecraft/server/packs/PackType;Ljava/nio/file/Path;)V net/minecraft/server/packs/VanillaPackResourcesBuilder/lambda$pushJarResources$3 (Lnet/minecraft/server/packs/PackType;Ljava/nio/file/Path;)V +MD: net/minecraft/server/packs/VanillaPackResourcesBuilder/m_245371_ ([Ljava/lang/String;)Lnet/minecraft/server/packs/VanillaPackResourcesBuilder; net/minecraft/server/packs/VanillaPackResourcesBuilder/exposeNamespace ([Ljava/lang/String;)Lnet/minecraft/server/packs/VanillaPackResourcesBuilder; +MD: net/minecraft/server/packs/VanillaPackResourcesBuilder/m_245487_ (Ljava/nio/file/Path;)V net/minecraft/server/packs/VanillaPackResourcesBuilder/pushRootPath (Ljava/nio/file/Path;)V +MD: net/minecraft/server/packs/VanillaPackResourcesBuilder/m_245630_ (Ljava/nio/file/Path;)Lnet/minecraft/server/packs/VanillaPackResourcesBuilder; net/minecraft/server/packs/VanillaPackResourcesBuilder/pushUniversalPath (Ljava/nio/file/Path;)Lnet/minecraft/server/packs/VanillaPackResourcesBuilder; +MD: net/minecraft/server/packs/VanillaPackResourcesBuilder/m_245772_ ()Lnet/minecraft/server/packs/VanillaPackResources; net/minecraft/server/packs/VanillaPackResourcesBuilder/build ()Lnet/minecraft/server/packs/VanillaPackResources; +MD: net/minecraft/server/packs/VanillaPackResourcesBuilder/m_245913_ (Lnet/minecraft/server/packs/BuiltInMetadata;)Lnet/minecraft/server/packs/VanillaPackResourcesBuilder; net/minecraft/server/packs/VanillaPackResourcesBuilder/setMetadata (Lnet/minecraft/server/packs/BuiltInMetadata;)Lnet/minecraft/server/packs/VanillaPackResourcesBuilder; +MD: net/minecraft/server/packs/VanillaPackResourcesBuilder/m_246045_ (Ljava/net/URI;)Ljava/nio/file/Path; net/minecraft/server/packs/VanillaPackResourcesBuilder/safeGetPath (Ljava/net/URI;)Ljava/nio/file/Path; +MD: net/minecraft/server/packs/VanillaPackResourcesBuilder/m_246191_ (Lnet/minecraft/server/packs/PackType;)Ljava/util/Set; net/minecraft/server/packs/VanillaPackResourcesBuilder/lambda$pushPathForType$2 (Lnet/minecraft/server/packs/PackType;)Ljava/util/Set; +MD: net/minecraft/server/packs/VanillaPackResourcesBuilder/m_246275_ (Lnet/minecraft/server/packs/PackType;Ljava/nio/file/Path;)Lnet/minecraft/server/packs/VanillaPackResourcesBuilder; net/minecraft/server/packs/VanillaPackResourcesBuilder/pushAssetPath (Lnet/minecraft/server/packs/PackType;Ljava/nio/file/Path;)Lnet/minecraft/server/packs/VanillaPackResourcesBuilder; +MD: net/minecraft/server/packs/VanillaPackResourcesBuilder/m_246356_ (Lnet/minecraft/server/packs/PackType;Ljava/nio/file/Path;)V net/minecraft/server/packs/VanillaPackResourcesBuilder/pushPathForType (Lnet/minecraft/server/packs/PackType;Ljava/nio/file/Path;)V +MD: net/minecraft/server/packs/VanillaPackResourcesBuilder/m_246373_ ()Lnet/minecraft/server/packs/VanillaPackResourcesBuilder; net/minecraft/server/packs/VanillaPackResourcesBuilder/pushJarResources ()Lnet/minecraft/server/packs/VanillaPackResourcesBuilder; +MD: net/minecraft/server/packs/VanillaPackResourcesBuilder/m_246513_ (Lnet/minecraft/server/packs/PackType;Ljava/lang/Class;)Lnet/minecraft/server/packs/VanillaPackResourcesBuilder; net/minecraft/server/packs/VanillaPackResourcesBuilder/pushClasspathResources (Lnet/minecraft/server/packs/PackType;Ljava/lang/Class;)Lnet/minecraft/server/packs/VanillaPackResourcesBuilder; +MD: net/minecraft/server/packs/VanillaPackResourcesBuilder/m_246520_ ()Lcom/google/common/collect/ImmutableMap; net/minecraft/server/packs/VanillaPackResourcesBuilder/lambda$static$1 ()Lcom/google/common/collect/ImmutableMap; +MD: net/minecraft/server/packs/VanillaPackResourcesBuilder/m_246678_ ()Lnet/minecraft/server/packs/VanillaPackResourcesBuilder; net/minecraft/server/packs/VanillaPackResourcesBuilder/applyDevelopmentConfig ()Lnet/minecraft/server/packs/VanillaPackResourcesBuilder; +MD: net/minecraft/server/packs/VanillaPackResourcesBuilder/m_247040_ (Ljava/nio/file/Path;)Z net/minecraft/server/packs/VanillaPackResourcesBuilder/validateDirPath (Ljava/nio/file/Path;)Z +MD: net/minecraft/server/packs/VanillaPackResourcesBuilder/m_247168_ (Lnet/minecraft/server/packs/VanillaPackResourcesBuilder;)V net/minecraft/server/packs/VanillaPackResourcesBuilder/lambda$static$0 (Lnet/minecraft/server/packs/VanillaPackResourcesBuilder;)V +MD: net/minecraft/server/packs/VanillaPackResourcesBuilder/m_247634_ (Ljava/util/Collection;)Ljava/util/List; net/minecraft/server/packs/VanillaPackResourcesBuilder/copyAndReverse (Ljava/util/Collection;)Ljava/util/List; +MD: net/minecraft/server/packs/linkfs/DummyFileAttributes/ ()V net/minecraft/server/packs/linkfs/DummyFileAttributes/ ()V +MD: net/minecraft/server/packs/linkfs/DummyFileAttributes/ ()V net/minecraft/server/packs/linkfs/DummyFileAttributes/ ()V +MD: net/minecraft/server/packs/linkfs/DummyFileAttributes/creationTime ()Ljava/nio/file/attribute/FileTime; net/minecraft/server/packs/linkfs/DummyFileAttributes/creationTime ()Ljava/nio/file/attribute/FileTime; +MD: net/minecraft/server/packs/linkfs/DummyFileAttributes/fileKey ()Ljava/lang/Object; net/minecraft/server/packs/linkfs/DummyFileAttributes/fileKey ()Ljava/lang/Object; +MD: net/minecraft/server/packs/linkfs/DummyFileAttributes/isOther ()Z net/minecraft/server/packs/linkfs/DummyFileAttributes/isOther ()Z +MD: net/minecraft/server/packs/linkfs/DummyFileAttributes/isSymbolicLink ()Z net/minecraft/server/packs/linkfs/DummyFileAttributes/isSymbolicLink ()Z +MD: net/minecraft/server/packs/linkfs/DummyFileAttributes/lastAccessTime ()Ljava/nio/file/attribute/FileTime; net/minecraft/server/packs/linkfs/DummyFileAttributes/lastAccessTime ()Ljava/nio/file/attribute/FileTime; +MD: net/minecraft/server/packs/linkfs/DummyFileAttributes/lastModifiedTime ()Ljava/nio/file/attribute/FileTime; net/minecraft/server/packs/linkfs/DummyFileAttributes/lastModifiedTime ()Ljava/nio/file/attribute/FileTime; +MD: net/minecraft/server/packs/linkfs/DummyFileAttributes/size ()J net/minecraft/server/packs/linkfs/DummyFileAttributes/size ()J +MD: net/minecraft/server/packs/linkfs/LinkFSFileStore/ (Ljava/lang/String;)V net/minecraft/server/packs/linkfs/LinkFSFileStore/ (Ljava/lang/String;)V +MD: net/minecraft/server/packs/linkfs/LinkFSFileStore/getAttribute (Ljava/lang/String;)Ljava/lang/Object; net/minecraft/server/packs/linkfs/LinkFSFileStore/getAttribute (Ljava/lang/String;)Ljava/lang/Object; +MD: net/minecraft/server/packs/linkfs/LinkFSFileStore/getFileStoreAttributeView (Ljava/lang/Class;)Ljava/nio/file/attribute/FileStoreAttributeView; net/minecraft/server/packs/linkfs/LinkFSFileStore/getFileStoreAttributeView (Ljava/lang/Class;)Ljava/nio/file/attribute/FileStoreAttributeView; +MD: net/minecraft/server/packs/linkfs/LinkFSFileStore/getTotalSpace ()J net/minecraft/server/packs/linkfs/LinkFSFileStore/getTotalSpace ()J +MD: net/minecraft/server/packs/linkfs/LinkFSFileStore/getUnallocatedSpace ()J net/minecraft/server/packs/linkfs/LinkFSFileStore/getUnallocatedSpace ()J +MD: net/minecraft/server/packs/linkfs/LinkFSFileStore/getUsableSpace ()J net/minecraft/server/packs/linkfs/LinkFSFileStore/getUsableSpace ()J +MD: net/minecraft/server/packs/linkfs/LinkFSFileStore/isReadOnly ()Z net/minecraft/server/packs/linkfs/LinkFSFileStore/isReadOnly ()Z +MD: net/minecraft/server/packs/linkfs/LinkFSFileStore/name ()Ljava/lang/String; net/minecraft/server/packs/linkfs/LinkFSFileStore/name ()Ljava/lang/String; +MD: net/minecraft/server/packs/linkfs/LinkFSFileStore/supportsFileAttributeView (Ljava/lang/Class;)Z net/minecraft/server/packs/linkfs/LinkFSFileStore/supportsFileAttributeView (Ljava/lang/Class;)Z +MD: net/minecraft/server/packs/linkfs/LinkFSFileStore/supportsFileAttributeView (Ljava/lang/String;)Z net/minecraft/server/packs/linkfs/LinkFSFileStore/supportsFileAttributeView (Ljava/lang/String;)Z +MD: net/minecraft/server/packs/linkfs/LinkFSFileStore/type ()Ljava/lang/String; net/minecraft/server/packs/linkfs/LinkFSFileStore/type ()Ljava/lang/String; +MD: net/minecraft/server/packs/linkfs/LinkFSPath/ ()V net/minecraft/server/packs/linkfs/LinkFSPath/ ()V +MD: net/minecraft/server/packs/linkfs/LinkFSPath/ (Lnet/minecraft/server/packs/linkfs/LinkFileSystem;Ljava/lang/String;Lnet/minecraft/server/packs/linkfs/LinkFSPath;Lnet/minecraft/server/packs/linkfs/PathContents;)V net/minecraft/server/packs/linkfs/LinkFSPath/ (Lnet/minecraft/server/packs/linkfs/LinkFileSystem;Ljava/lang/String;Lnet/minecraft/server/packs/linkfs/LinkFSPath;Lnet/minecraft/server/packs/linkfs/PathContents;)V +MD: net/minecraft/server/packs/linkfs/LinkFSPath/compareTo (Ljava/lang/Object;)I net/minecraft/server/packs/linkfs/LinkFSPath/compareTo (Ljava/lang/Object;)I +MD: net/minecraft/server/packs/linkfs/LinkFSPath/compareTo (Ljava/nio/file/Path;)I net/minecraft/server/packs/linkfs/LinkFSPath/compareTo (Ljava/nio/file/Path;)I +MD: net/minecraft/server/packs/linkfs/LinkFSPath/endsWith (Ljava/nio/file/Path;)Z net/minecraft/server/packs/linkfs/LinkFSPath/endsWith (Ljava/nio/file/Path;)Z +MD: net/minecraft/server/packs/linkfs/LinkFSPath/equals (Ljava/lang/Object;)Z net/minecraft/server/packs/linkfs/LinkFSPath/equals (Ljava/lang/Object;)Z +MD: net/minecraft/server/packs/linkfs/LinkFSPath/getFileName ()Lnet/minecraft/server/packs/linkfs/LinkFSPath; net/minecraft/server/packs/linkfs/LinkFSPath/getFileName ()Lnet/minecraft/server/packs/linkfs/LinkFSPath; +MD: net/minecraft/server/packs/linkfs/LinkFSPath/getFileName ()Ljava/nio/file/Path; net/minecraft/server/packs/linkfs/LinkFSPath/getFileName ()Ljava/nio/file/Path; +MD: net/minecraft/server/packs/linkfs/LinkFSPath/getFileSystem ()Lnet/minecraft/server/packs/linkfs/LinkFileSystem; net/minecraft/server/packs/linkfs/LinkFSPath/getFileSystem ()Lnet/minecraft/server/packs/linkfs/LinkFileSystem; +MD: net/minecraft/server/packs/linkfs/LinkFSPath/getFileSystem ()Ljava/nio/file/FileSystem; net/minecraft/server/packs/linkfs/LinkFSPath/getFileSystem ()Ljava/nio/file/FileSystem; +MD: net/minecraft/server/packs/linkfs/LinkFSPath/getName (I)Ljava/nio/file/Path; net/minecraft/server/packs/linkfs/LinkFSPath/getName (I)Ljava/nio/file/Path; +MD: net/minecraft/server/packs/linkfs/LinkFSPath/getName (I)Lnet/minecraft/server/packs/linkfs/LinkFSPath; net/minecraft/server/packs/linkfs/LinkFSPath/getName (I)Lnet/minecraft/server/packs/linkfs/LinkFSPath; +MD: net/minecraft/server/packs/linkfs/LinkFSPath/getNameCount ()I net/minecraft/server/packs/linkfs/LinkFSPath/getNameCount ()I +MD: net/minecraft/server/packs/linkfs/LinkFSPath/getParent ()Ljava/nio/file/Path; net/minecraft/server/packs/linkfs/LinkFSPath/getParent ()Ljava/nio/file/Path; +MD: net/minecraft/server/packs/linkfs/LinkFSPath/getParent ()Lnet/minecraft/server/packs/linkfs/LinkFSPath; net/minecraft/server/packs/linkfs/LinkFSPath/getParent ()Lnet/minecraft/server/packs/linkfs/LinkFSPath; +MD: net/minecraft/server/packs/linkfs/LinkFSPath/getRoot ()Ljava/nio/file/Path; net/minecraft/server/packs/linkfs/LinkFSPath/getRoot ()Ljava/nio/file/Path; +MD: net/minecraft/server/packs/linkfs/LinkFSPath/getRoot ()Lnet/minecraft/server/packs/linkfs/LinkFSPath; net/minecraft/server/packs/linkfs/LinkFSPath/getRoot ()Lnet/minecraft/server/packs/linkfs/LinkFSPath; +MD: net/minecraft/server/packs/linkfs/LinkFSPath/hashCode ()I net/minecraft/server/packs/linkfs/LinkFSPath/hashCode ()I +MD: net/minecraft/server/packs/linkfs/LinkFSPath/isAbsolute ()Z net/minecraft/server/packs/linkfs/LinkFSPath/isAbsolute ()Z +MD: net/minecraft/server/packs/linkfs/LinkFSPath/m_245177_ ()Lnet/minecraft/server/packs/linkfs/PathContents$DirectoryContents; net/minecraft/server/packs/linkfs/LinkFSPath/getDirectoryContents ()Lnet/minecraft/server/packs/linkfs/PathContents$DirectoryContents; +MD: net/minecraft/server/packs/linkfs/LinkFSPath/m_245307_ (Lnet/minecraft/server/packs/linkfs/LinkFSPath;Ljava/lang/String;)Lnet/minecraft/server/packs/linkfs/LinkFSPath; net/minecraft/server/packs/linkfs/LinkFSPath/createRelativePath (Lnet/minecraft/server/packs/linkfs/LinkFSPath;Ljava/lang/String;)Lnet/minecraft/server/packs/linkfs/LinkFSPath; +MD: net/minecraft/server/packs/linkfs/LinkFSPath/m_245626_ ()Z net/minecraft/server/packs/linkfs/LinkFSPath/exists ()Z +MD: net/minecraft/server/packs/linkfs/LinkFSPath/m_245789_ (Lnet/minecraft/server/packs/linkfs/PathContents;)Z net/minecraft/server/packs/linkfs/LinkFSPath/isRelativeOrMissing (Lnet/minecraft/server/packs/linkfs/PathContents;)Z +MD: net/minecraft/server/packs/linkfs/LinkFSPath/m_245921_ ()Ljava/lang/String; net/minecraft/server/packs/linkfs/LinkFSPath/pathToString ()Ljava/lang/String; +MD: net/minecraft/server/packs/linkfs/LinkFSPath/m_246014_ (Ljava/util/List;)Lnet/minecraft/server/packs/linkfs/LinkFSPath; net/minecraft/server/packs/linkfs/LinkFSPath/resolve (Ljava/util/List;)Lnet/minecraft/server/packs/linkfs/LinkFSPath; +MD: net/minecraft/server/packs/linkfs/LinkFSPath/m_246027_ (Ljava/nio/file/Path;)Lnet/minecraft/server/packs/linkfs/LinkFSPath; net/minecraft/server/packs/linkfs/LinkFSPath/toLinkPath (Ljava/nio/file/Path;)Lnet/minecraft/server/packs/linkfs/LinkFSPath; +MD: net/minecraft/server/packs/linkfs/LinkFSPath/m_246070_ ()Ljava/util/List; net/minecraft/server/packs/linkfs/LinkFSPath/pathToRoot ()Ljava/util/List; +MD: net/minecraft/server/packs/linkfs/LinkFSPath/m_246308_ ()Ljava/nio/file/attribute/BasicFileAttributes; net/minecraft/server/packs/linkfs/LinkFSPath/getBasicAttributes ()Ljava/nio/file/attribute/BasicFileAttributes; +MD: net/minecraft/server/packs/linkfs/LinkFSPath/m_246418_ ()Z net/minecraft/server/packs/linkfs/LinkFSPath/hasRealContents ()Z +MD: net/minecraft/server/packs/linkfs/LinkFSPath/m_246530_ ()Ljava/nio/file/attribute/BasicFileAttributeView; net/minecraft/server/packs/linkfs/LinkFSPath/getBasicAttributeView ()Ljava/nio/file/attribute/BasicFileAttributeView; +MD: net/minecraft/server/packs/linkfs/LinkFSPath/m_247488_ ()Ljava/nio/file/Path; net/minecraft/server/packs/linkfs/LinkFSPath/getTargetPath ()Ljava/nio/file/Path; +MD: net/minecraft/server/packs/linkfs/LinkFSPath/m_247714_ (Ljava/lang/String;)Lnet/minecraft/server/packs/linkfs/LinkFSPath; net/minecraft/server/packs/linkfs/LinkFSPath/resolveName (Ljava/lang/String;)Lnet/minecraft/server/packs/linkfs/LinkFSPath; +MD: net/minecraft/server/packs/linkfs/LinkFSPath/normalize ()Lnet/minecraft/server/packs/linkfs/LinkFSPath; net/minecraft/server/packs/linkfs/LinkFSPath/normalize ()Lnet/minecraft/server/packs/linkfs/LinkFSPath; +MD: net/minecraft/server/packs/linkfs/LinkFSPath/normalize ()Ljava/nio/file/Path; net/minecraft/server/packs/linkfs/LinkFSPath/normalize ()Ljava/nio/file/Path; +MD: net/minecraft/server/packs/linkfs/LinkFSPath/register (Ljava/nio/file/WatchService;[Ljava/nio/file/WatchEvent$Kind;[Ljava/nio/file/WatchEvent$Modifier;)Ljava/nio/file/WatchKey; net/minecraft/server/packs/linkfs/LinkFSPath/register (Ljava/nio/file/WatchService;[Ljava/nio/file/WatchEvent$Kind;[Ljava/nio/file/WatchEvent$Modifier;)Ljava/nio/file/WatchKey; +MD: net/minecraft/server/packs/linkfs/LinkFSPath/relativize (Ljava/nio/file/Path;)Lnet/minecraft/server/packs/linkfs/LinkFSPath; net/minecraft/server/packs/linkfs/LinkFSPath/relativize (Ljava/nio/file/Path;)Lnet/minecraft/server/packs/linkfs/LinkFSPath; +MD: net/minecraft/server/packs/linkfs/LinkFSPath/relativize (Ljava/nio/file/Path;)Ljava/nio/file/Path; net/minecraft/server/packs/linkfs/LinkFSPath/relativize (Ljava/nio/file/Path;)Ljava/nio/file/Path; +MD: net/minecraft/server/packs/linkfs/LinkFSPath/resolve (Ljava/nio/file/Path;)Lnet/minecraft/server/packs/linkfs/LinkFSPath; net/minecraft/server/packs/linkfs/LinkFSPath/resolve (Ljava/nio/file/Path;)Lnet/minecraft/server/packs/linkfs/LinkFSPath; +MD: net/minecraft/server/packs/linkfs/LinkFSPath/resolve (Ljava/nio/file/Path;)Ljava/nio/file/Path; net/minecraft/server/packs/linkfs/LinkFSPath/resolve (Ljava/nio/file/Path;)Ljava/nio/file/Path; +MD: net/minecraft/server/packs/linkfs/LinkFSPath/startsWith (Ljava/nio/file/Path;)Z net/minecraft/server/packs/linkfs/LinkFSPath/startsWith (Ljava/nio/file/Path;)Z +MD: net/minecraft/server/packs/linkfs/LinkFSPath/subpath (II)Ljava/nio/file/Path; net/minecraft/server/packs/linkfs/LinkFSPath/subpath (II)Ljava/nio/file/Path; +MD: net/minecraft/server/packs/linkfs/LinkFSPath/subpath (II)Lnet/minecraft/server/packs/linkfs/LinkFSPath; net/minecraft/server/packs/linkfs/LinkFSPath/subpath (II)Lnet/minecraft/server/packs/linkfs/LinkFSPath; +MD: net/minecraft/server/packs/linkfs/LinkFSPath/toAbsolutePath ()Lnet/minecraft/server/packs/linkfs/LinkFSPath; net/minecraft/server/packs/linkfs/LinkFSPath/toAbsolutePath ()Lnet/minecraft/server/packs/linkfs/LinkFSPath; +MD: net/minecraft/server/packs/linkfs/LinkFSPath/toAbsolutePath ()Ljava/nio/file/Path; net/minecraft/server/packs/linkfs/LinkFSPath/toAbsolutePath ()Ljava/nio/file/Path; +MD: net/minecraft/server/packs/linkfs/LinkFSPath/toFile ()Ljava/io/File; net/minecraft/server/packs/linkfs/LinkFSPath/toFile ()Ljava/io/File; +MD: net/minecraft/server/packs/linkfs/LinkFSPath/toRealPath ([Ljava/nio/file/LinkOption;)Lnet/minecraft/server/packs/linkfs/LinkFSPath; net/minecraft/server/packs/linkfs/LinkFSPath/toRealPath ([Ljava/nio/file/LinkOption;)Lnet/minecraft/server/packs/linkfs/LinkFSPath; +MD: net/minecraft/server/packs/linkfs/LinkFSPath/toRealPath ([Ljava/nio/file/LinkOption;)Ljava/nio/file/Path; net/minecraft/server/packs/linkfs/LinkFSPath/toRealPath ([Ljava/nio/file/LinkOption;)Ljava/nio/file/Path; +MD: net/minecraft/server/packs/linkfs/LinkFSPath/toString ()Ljava/lang/String; net/minecraft/server/packs/linkfs/LinkFSPath/toString ()Ljava/lang/String; +MD: net/minecraft/server/packs/linkfs/LinkFSPath/toUri ()Ljava/net/URI; net/minecraft/server/packs/linkfs/LinkFSPath/toUri ()Ljava/net/URI; +MD: net/minecraft/server/packs/linkfs/LinkFSPath$1/ ()V net/minecraft/server/packs/linkfs/LinkFSPath$1/ ()V +MD: net/minecraft/server/packs/linkfs/LinkFSPath$1/isDirectory ()Z net/minecraft/server/packs/linkfs/LinkFSPath$1/isDirectory ()Z +MD: net/minecraft/server/packs/linkfs/LinkFSPath$1/isRegularFile ()Z net/minecraft/server/packs/linkfs/LinkFSPath$1/isRegularFile ()Z +MD: net/minecraft/server/packs/linkfs/LinkFSPath$2/ ()V net/minecraft/server/packs/linkfs/LinkFSPath$2/ ()V +MD: net/minecraft/server/packs/linkfs/LinkFSPath$2/isDirectory ()Z net/minecraft/server/packs/linkfs/LinkFSPath$2/isDirectory ()Z +MD: net/minecraft/server/packs/linkfs/LinkFSPath$2/isRegularFile ()Z net/minecraft/server/packs/linkfs/LinkFSPath$2/isRegularFile ()Z +MD: net/minecraft/server/packs/linkfs/LinkFSPath$3/ (Lnet/minecraft/server/packs/linkfs/LinkFSPath;)V net/minecraft/server/packs/linkfs/LinkFSPath$3/ (Lnet/minecraft/server/packs/linkfs/LinkFSPath;)V +MD: net/minecraft/server/packs/linkfs/LinkFSPath$3/name ()Ljava/lang/String; net/minecraft/server/packs/linkfs/LinkFSPath$3/name ()Ljava/lang/String; +MD: net/minecraft/server/packs/linkfs/LinkFSPath$3/readAttributes ()Ljava/nio/file/attribute/BasicFileAttributes; net/minecraft/server/packs/linkfs/LinkFSPath$3/readAttributes ()Ljava/nio/file/attribute/BasicFileAttributes; +MD: net/minecraft/server/packs/linkfs/LinkFSPath$3/setTimes (Ljava/nio/file/attribute/FileTime;Ljava/nio/file/attribute/FileTime;Ljava/nio/file/attribute/FileTime;)V net/minecraft/server/packs/linkfs/LinkFSPath$3/setTimes (Ljava/nio/file/attribute/FileTime;Ljava/nio/file/attribute/FileTime;Ljava/nio/file/attribute/FileTime;)V +MD: net/minecraft/server/packs/linkfs/LinkFSProvider/ ()V net/minecraft/server/packs/linkfs/LinkFSProvider/ ()V +MD: net/minecraft/server/packs/linkfs/LinkFSProvider/checkAccess (Ljava/nio/file/Path;[Ljava/nio/file/AccessMode;)V net/minecraft/server/packs/linkfs/LinkFSProvider/checkAccess (Ljava/nio/file/Path;[Ljava/nio/file/AccessMode;)V +MD: net/minecraft/server/packs/linkfs/LinkFSProvider/copy (Ljava/nio/file/Path;Ljava/nio/file/Path;[Ljava/nio/file/CopyOption;)V net/minecraft/server/packs/linkfs/LinkFSProvider/copy (Ljava/nio/file/Path;Ljava/nio/file/Path;[Ljava/nio/file/CopyOption;)V +MD: net/minecraft/server/packs/linkfs/LinkFSProvider/createDirectory (Ljava/nio/file/Path;[Ljava/nio/file/attribute/FileAttribute;)V net/minecraft/server/packs/linkfs/LinkFSProvider/createDirectory (Ljava/nio/file/Path;[Ljava/nio/file/attribute/FileAttribute;)V +MD: net/minecraft/server/packs/linkfs/LinkFSProvider/delete (Ljava/nio/file/Path;)V net/minecraft/server/packs/linkfs/LinkFSProvider/delete (Ljava/nio/file/Path;)V +MD: net/minecraft/server/packs/linkfs/LinkFSProvider/getFileAttributeView (Ljava/nio/file/Path;Ljava/lang/Class;[Ljava/nio/file/LinkOption;)Ljava/nio/file/attribute/FileAttributeView; net/minecraft/server/packs/linkfs/LinkFSProvider/getFileAttributeView (Ljava/nio/file/Path;Ljava/lang/Class;[Ljava/nio/file/LinkOption;)Ljava/nio/file/attribute/FileAttributeView; +MD: net/minecraft/server/packs/linkfs/LinkFSProvider/getFileStore (Ljava/nio/file/Path;)Ljava/nio/file/FileStore; net/minecraft/server/packs/linkfs/LinkFSProvider/getFileStore (Ljava/nio/file/Path;)Ljava/nio/file/FileStore; +MD: net/minecraft/server/packs/linkfs/LinkFSProvider/getFileSystem (Ljava/net/URI;)Ljava/nio/file/FileSystem; net/minecraft/server/packs/linkfs/LinkFSProvider/getFileSystem (Ljava/net/URI;)Ljava/nio/file/FileSystem; +MD: net/minecraft/server/packs/linkfs/LinkFSProvider/getPath (Ljava/net/URI;)Ljava/nio/file/Path; net/minecraft/server/packs/linkfs/LinkFSProvider/getPath (Ljava/net/URI;)Ljava/nio/file/Path; +MD: net/minecraft/server/packs/linkfs/LinkFSProvider/getScheme ()Ljava/lang/String; net/minecraft/server/packs/linkfs/LinkFSProvider/getScheme ()Ljava/lang/String; +MD: net/minecraft/server/packs/linkfs/LinkFSProvider/isHidden (Ljava/nio/file/Path;)Z net/minecraft/server/packs/linkfs/LinkFSProvider/isHidden (Ljava/nio/file/Path;)Z +MD: net/minecraft/server/packs/linkfs/LinkFSProvider/isSameFile (Ljava/nio/file/Path;Ljava/nio/file/Path;)Z net/minecraft/server/packs/linkfs/LinkFSProvider/isSameFile (Ljava/nio/file/Path;Ljava/nio/file/Path;)Z +MD: net/minecraft/server/packs/linkfs/LinkFSProvider/m_245446_ (Ljava/nio/file/Path;)Lnet/minecraft/server/packs/linkfs/LinkFSPath; net/minecraft/server/packs/linkfs/LinkFSProvider/toLinkPath (Ljava/nio/file/Path;)Lnet/minecraft/server/packs/linkfs/LinkFSPath; +MD: net/minecraft/server/packs/linkfs/LinkFSProvider/move (Ljava/nio/file/Path;Ljava/nio/file/Path;[Ljava/nio/file/CopyOption;)V net/minecraft/server/packs/linkfs/LinkFSProvider/move (Ljava/nio/file/Path;Ljava/nio/file/Path;[Ljava/nio/file/CopyOption;)V +MD: net/minecraft/server/packs/linkfs/LinkFSProvider/newByteChannel (Ljava/nio/file/Path;Ljava/util/Set;[Ljava/nio/file/attribute/FileAttribute;)Ljava/nio/channels/SeekableByteChannel; net/minecraft/server/packs/linkfs/LinkFSProvider/newByteChannel (Ljava/nio/file/Path;Ljava/util/Set;[Ljava/nio/file/attribute/FileAttribute;)Ljava/nio/channels/SeekableByteChannel; +MD: net/minecraft/server/packs/linkfs/LinkFSProvider/newDirectoryStream (Ljava/nio/file/Path;Ljava/nio/file/DirectoryStream$Filter;)Ljava/nio/file/DirectoryStream; net/minecraft/server/packs/linkfs/LinkFSProvider/newDirectoryStream (Ljava/nio/file/Path;Ljava/nio/file/DirectoryStream$Filter;)Ljava/nio/file/DirectoryStream; +MD: net/minecraft/server/packs/linkfs/LinkFSProvider/newFileSystem (Ljava/net/URI;Ljava/util/Map;)Ljava/nio/file/FileSystem; net/minecraft/server/packs/linkfs/LinkFSProvider/newFileSystem (Ljava/net/URI;Ljava/util/Map;)Ljava/nio/file/FileSystem; +MD: net/minecraft/server/packs/linkfs/LinkFSProvider/readAttributes (Ljava/nio/file/Path;Ljava/lang/Class;[Ljava/nio/file/LinkOption;)Ljava/nio/file/attribute/BasicFileAttributes; net/minecraft/server/packs/linkfs/LinkFSProvider/readAttributes (Ljava/nio/file/Path;Ljava/lang/Class;[Ljava/nio/file/LinkOption;)Ljava/nio/file/attribute/BasicFileAttributes; +MD: net/minecraft/server/packs/linkfs/LinkFSProvider/readAttributes (Ljava/nio/file/Path;Ljava/lang/String;[Ljava/nio/file/LinkOption;)Ljava/util/Map; net/minecraft/server/packs/linkfs/LinkFSProvider/readAttributes (Ljava/nio/file/Path;Ljava/lang/String;[Ljava/nio/file/LinkOption;)Ljava/util/Map; +MD: net/minecraft/server/packs/linkfs/LinkFSProvider/setAttribute (Ljava/nio/file/Path;Ljava/lang/String;Ljava/lang/Object;[Ljava/nio/file/LinkOption;)V net/minecraft/server/packs/linkfs/LinkFSProvider/setAttribute (Ljava/nio/file/Path;Ljava/lang/String;Ljava/lang/Object;[Ljava/nio/file/LinkOption;)V +MD: net/minecraft/server/packs/linkfs/LinkFSProvider$1/ (Lnet/minecraft/server/packs/linkfs/LinkFSProvider;Lnet/minecraft/server/packs/linkfs/PathContents$DirectoryContents;Ljava/nio/file/DirectoryStream$Filter;)V net/minecraft/server/packs/linkfs/LinkFSProvider$1/ (Lnet/minecraft/server/packs/linkfs/LinkFSProvider;Lnet/minecraft/server/packs/linkfs/PathContents$DirectoryContents;Ljava/nio/file/DirectoryStream$Filter;)V +MD: net/minecraft/server/packs/linkfs/LinkFSProvider$1/close ()V net/minecraft/server/packs/linkfs/LinkFSProvider$1/close ()V +MD: net/minecraft/server/packs/linkfs/LinkFSProvider$1/iterator ()Ljava/util/Iterator; net/minecraft/server/packs/linkfs/LinkFSProvider$1/iterator ()Ljava/util/Iterator; +MD: net/minecraft/server/packs/linkfs/LinkFSProvider$1/m_246573_ (Lnet/minecraft/server/packs/linkfs/LinkFSPath;)Ljava/nio/file/Path; net/minecraft/server/packs/linkfs/LinkFSProvider$1/lambda$iterator$1 (Lnet/minecraft/server/packs/linkfs/LinkFSPath;)Ljava/nio/file/Path; +MD: net/minecraft/server/packs/linkfs/LinkFSProvider$1/m_247708_ (Ljava/nio/file/DirectoryStream$Filter;Lnet/minecraft/server/packs/linkfs/LinkFSPath;)Z net/minecraft/server/packs/linkfs/LinkFSProvider$1/lambda$iterator$0 (Ljava/nio/file/DirectoryStream$Filter;Lnet/minecraft/server/packs/linkfs/LinkFSPath;)Z +MD: net/minecraft/server/packs/linkfs/LinkFSProvider$2/ ()V net/minecraft/server/packs/linkfs/LinkFSProvider$2/ ()V +MD: net/minecraft/server/packs/linkfs/LinkFileSystem/ ()V net/minecraft/server/packs/linkfs/LinkFileSystem/ ()V +MD: net/minecraft/server/packs/linkfs/LinkFileSystem/ (Ljava/lang/String;Lnet/minecraft/server/packs/linkfs/LinkFileSystem$DirectoryEntry;)V net/minecraft/server/packs/linkfs/LinkFileSystem/ (Ljava/lang/String;Lnet/minecraft/server/packs/linkfs/LinkFileSystem$DirectoryEntry;)V +MD: net/minecraft/server/packs/linkfs/LinkFileSystem/close ()V net/minecraft/server/packs/linkfs/LinkFileSystem/close ()V +MD: net/minecraft/server/packs/linkfs/LinkFileSystem/getFileStores ()Ljava/lang/Iterable; net/minecraft/server/packs/linkfs/LinkFileSystem/getFileStores ()Ljava/lang/Iterable; +MD: net/minecraft/server/packs/linkfs/LinkFileSystem/getPath (Ljava/lang/String;[Ljava/lang/String;)Ljava/nio/file/Path; net/minecraft/server/packs/linkfs/LinkFileSystem/getPath (Ljava/lang/String;[Ljava/lang/String;)Ljava/nio/file/Path; +MD: net/minecraft/server/packs/linkfs/LinkFileSystem/getPathMatcher (Ljava/lang/String;)Ljava/nio/file/PathMatcher; net/minecraft/server/packs/linkfs/LinkFileSystem/getPathMatcher (Ljava/lang/String;)Ljava/nio/file/PathMatcher; +MD: net/minecraft/server/packs/linkfs/LinkFileSystem/getRootDirectories ()Ljava/lang/Iterable; net/minecraft/server/packs/linkfs/LinkFileSystem/getRootDirectories ()Ljava/lang/Iterable; +MD: net/minecraft/server/packs/linkfs/LinkFileSystem/getSeparator ()Ljava/lang/String; net/minecraft/server/packs/linkfs/LinkFileSystem/getSeparator ()Ljava/lang/String; +MD: net/minecraft/server/packs/linkfs/LinkFileSystem/getUserPrincipalLookupService ()Ljava/nio/file/attribute/UserPrincipalLookupService; net/minecraft/server/packs/linkfs/LinkFileSystem/getUserPrincipalLookupService ()Ljava/nio/file/attribute/UserPrincipalLookupService; +MD: net/minecraft/server/packs/linkfs/LinkFileSystem/isOpen ()Z net/minecraft/server/packs/linkfs/LinkFileSystem/isOpen ()Z +MD: net/minecraft/server/packs/linkfs/LinkFileSystem/isReadOnly ()Z net/minecraft/server/packs/linkfs/LinkFileSystem/isReadOnly ()Z +MD: net/minecraft/server/packs/linkfs/LinkFileSystem/m_245209_ ()Lnet/minecraft/server/packs/linkfs/LinkFileSystem$Builder; net/minecraft/server/packs/linkfs/LinkFileSystem/builder ()Lnet/minecraft/server/packs/linkfs/LinkFileSystem$Builder; +MD: net/minecraft/server/packs/linkfs/LinkFileSystem/m_246062_ (Lnet/minecraft/server/packs/linkfs/LinkFileSystem$DirectoryEntry;Lnet/minecraft/server/packs/linkfs/LinkFileSystem;Ljava/lang/String;Lnet/minecraft/server/packs/linkfs/LinkFSPath;)Lnet/minecraft/server/packs/linkfs/LinkFSPath; net/minecraft/server/packs/linkfs/LinkFileSystem/buildPath (Lnet/minecraft/server/packs/linkfs/LinkFileSystem$DirectoryEntry;Lnet/minecraft/server/packs/linkfs/LinkFileSystem;Ljava/lang/String;Lnet/minecraft/server/packs/linkfs/LinkFSPath;)Lnet/minecraft/server/packs/linkfs/LinkFSPath; +MD: net/minecraft/server/packs/linkfs/LinkFileSystem/m_246321_ (Lit/unimi/dsi/fastutil/objects/Object2ObjectOpenHashMap;Lnet/minecraft/server/packs/linkfs/LinkFileSystem;Lnet/minecraft/server/packs/linkfs/LinkFSPath;Ljava/lang/String;Lnet/minecraft/server/packs/linkfs/LinkFileSystem$DirectoryEntry;)V net/minecraft/server/packs/linkfs/LinkFileSystem/lambda$buildPath$1 (Lit/unimi/dsi/fastutil/objects/Object2ObjectOpenHashMap;Lnet/minecraft/server/packs/linkfs/LinkFileSystem;Lnet/minecraft/server/packs/linkfs/LinkFSPath;Ljava/lang/String;Lnet/minecraft/server/packs/linkfs/LinkFileSystem$DirectoryEntry;)V +MD: net/minecraft/server/packs/linkfs/LinkFileSystem/m_246857_ ()Ljava/nio/file/FileStore; net/minecraft/server/packs/linkfs/LinkFileSystem/store ()Ljava/nio/file/FileStore; +MD: net/minecraft/server/packs/linkfs/LinkFileSystem/m_247062_ ()Lnet/minecraft/server/packs/linkfs/LinkFSPath; net/minecraft/server/packs/linkfs/LinkFileSystem/rootPath ()Lnet/minecraft/server/packs/linkfs/LinkFSPath; +MD: net/minecraft/server/packs/linkfs/LinkFileSystem/m_247248_ (Lit/unimi/dsi/fastutil/objects/Object2ObjectOpenHashMap;Lnet/minecraft/server/packs/linkfs/LinkFileSystem;Lnet/minecraft/server/packs/linkfs/LinkFSPath;Ljava/lang/String;Ljava/nio/file/Path;)V net/minecraft/server/packs/linkfs/LinkFileSystem/lambda$buildPath$0 (Lit/unimi/dsi/fastutil/objects/Object2ObjectOpenHashMap;Lnet/minecraft/server/packs/linkfs/LinkFileSystem;Lnet/minecraft/server/packs/linkfs/LinkFSPath;Ljava/lang/String;Ljava/nio/file/Path;)V +MD: net/minecraft/server/packs/linkfs/LinkFileSystem/newWatchService ()Ljava/nio/file/WatchService; net/minecraft/server/packs/linkfs/LinkFileSystem/newWatchService ()Ljava/nio/file/WatchService; +MD: net/minecraft/server/packs/linkfs/LinkFileSystem/provider ()Ljava/nio/file/spi/FileSystemProvider; net/minecraft/server/packs/linkfs/LinkFileSystem/provider ()Ljava/nio/file/spi/FileSystemProvider; +MD: net/minecraft/server/packs/linkfs/LinkFileSystem/supportedFileAttributeViews ()Ljava/util/Set; net/minecraft/server/packs/linkfs/LinkFileSystem/supportedFileAttributeViews ()Ljava/util/Set; +MD: net/minecraft/server/packs/linkfs/LinkFileSystem$Builder/ ()V net/minecraft/server/packs/linkfs/LinkFileSystem$Builder/ ()V +MD: net/minecraft/server/packs/linkfs/LinkFileSystem$Builder/m_245751_ (Ljava/lang/String;)Lnet/minecraft/server/packs/linkfs/LinkFileSystem$DirectoryEntry; net/minecraft/server/packs/linkfs/LinkFileSystem$Builder/lambda$put$0 (Ljava/lang/String;)Lnet/minecraft/server/packs/linkfs/LinkFileSystem$DirectoryEntry; +MD: net/minecraft/server/packs/linkfs/LinkFileSystem$Builder/m_246585_ (Ljava/util/List;Ljava/nio/file/Path;)Lnet/minecraft/server/packs/linkfs/LinkFileSystem$Builder; net/minecraft/server/packs/linkfs/LinkFileSystem$Builder/put (Ljava/util/List;Ljava/nio/file/Path;)Lnet/minecraft/server/packs/linkfs/LinkFileSystem$Builder; +MD: net/minecraft/server/packs/linkfs/LinkFileSystem$Builder/m_246881_ (Ljava/util/List;Ljava/lang/String;Ljava/nio/file/Path;)Lnet/minecraft/server/packs/linkfs/LinkFileSystem$Builder; net/minecraft/server/packs/linkfs/LinkFileSystem$Builder/put (Ljava/util/List;Ljava/lang/String;Ljava/nio/file/Path;)Lnet/minecraft/server/packs/linkfs/LinkFileSystem$Builder; +MD: net/minecraft/server/packs/linkfs/LinkFileSystem$Builder/m_247661_ (Ljava/lang/String;)Ljava/nio/file/FileSystem; net/minecraft/server/packs/linkfs/LinkFileSystem$Builder/build (Ljava/lang/String;)Ljava/nio/file/FileSystem; +MD: net/minecraft/server/packs/linkfs/LinkFileSystem$DirectoryEntry/ (Ljava/util/Map;Ljava/util/Map;)V net/minecraft/server/packs/linkfs/LinkFileSystem$DirectoryEntry/ (Ljava/util/Map;Ljava/util/Map;)V +MD: net/minecraft/server/packs/linkfs/LinkFileSystem$DirectoryEntry/ ()V net/minecraft/server/packs/linkfs/LinkFileSystem$DirectoryEntry/ ()V +MD: net/minecraft/server/packs/linkfs/LinkFileSystem$DirectoryEntry/equals (Ljava/lang/Object;)Z net/minecraft/server/packs/linkfs/LinkFileSystem$DirectoryEntry/equals (Ljava/lang/Object;)Z +MD: net/minecraft/server/packs/linkfs/LinkFileSystem$DirectoryEntry/f_244268_ ()Ljava/util/Map; net/minecraft/server/packs/linkfs/LinkFileSystem$DirectoryEntry/children ()Ljava/util/Map; +MD: net/minecraft/server/packs/linkfs/LinkFileSystem$DirectoryEntry/f_244526_ ()Ljava/util/Map; net/minecraft/server/packs/linkfs/LinkFileSystem$DirectoryEntry/files ()Ljava/util/Map; +MD: net/minecraft/server/packs/linkfs/LinkFileSystem$DirectoryEntry/hashCode ()I net/minecraft/server/packs/linkfs/LinkFileSystem$DirectoryEntry/hashCode ()I +MD: net/minecraft/server/packs/linkfs/LinkFileSystem$DirectoryEntry/toString ()Ljava/lang/String; net/minecraft/server/packs/linkfs/LinkFileSystem$DirectoryEntry/toString ()Ljava/lang/String; +MD: net/minecraft/server/packs/linkfs/PathContents/ ()V net/minecraft/server/packs/linkfs/PathContents/ ()V +MD: net/minecraft/server/packs/linkfs/PathContents$1/ ()V net/minecraft/server/packs/linkfs/PathContents$1/ ()V +MD: net/minecraft/server/packs/linkfs/PathContents$1/toString ()Ljava/lang/String; net/minecraft/server/packs/linkfs/PathContents$1/toString ()Ljava/lang/String; +MD: net/minecraft/server/packs/linkfs/PathContents$2/ ()V net/minecraft/server/packs/linkfs/PathContents$2/ ()V +MD: net/minecraft/server/packs/linkfs/PathContents$2/toString ()Ljava/lang/String; net/minecraft/server/packs/linkfs/PathContents$2/toString ()Ljava/lang/String; +MD: net/minecraft/server/packs/linkfs/PathContents$DirectoryContents/ (Ljava/util/Map;)V net/minecraft/server/packs/linkfs/PathContents$DirectoryContents/ (Ljava/util/Map;)V +MD: net/minecraft/server/packs/linkfs/PathContents$DirectoryContents/equals (Ljava/lang/Object;)Z net/minecraft/server/packs/linkfs/PathContents$DirectoryContents/equals (Ljava/lang/Object;)Z +MD: net/minecraft/server/packs/linkfs/PathContents$DirectoryContents/f_243989_ ()Ljava/util/Map; net/minecraft/server/packs/linkfs/PathContents$DirectoryContents/children ()Ljava/util/Map; +MD: net/minecraft/server/packs/linkfs/PathContents$DirectoryContents/hashCode ()I net/minecraft/server/packs/linkfs/PathContents$DirectoryContents/hashCode ()I +MD: net/minecraft/server/packs/linkfs/PathContents$DirectoryContents/toString ()Ljava/lang/String; net/minecraft/server/packs/linkfs/PathContents$DirectoryContents/toString ()Ljava/lang/String; +MD: net/minecraft/server/packs/linkfs/PathContents$FileContents/ (Ljava/nio/file/Path;)V net/minecraft/server/packs/linkfs/PathContents$FileContents/ (Ljava/nio/file/Path;)V +MD: net/minecraft/server/packs/linkfs/PathContents$FileContents/equals (Ljava/lang/Object;)Z net/minecraft/server/packs/linkfs/PathContents$FileContents/equals (Ljava/lang/Object;)Z +MD: net/minecraft/server/packs/linkfs/PathContents$FileContents/f_244421_ ()Ljava/nio/file/Path; net/minecraft/server/packs/linkfs/PathContents$FileContents/contents ()Ljava/nio/file/Path; +MD: net/minecraft/server/packs/linkfs/PathContents$FileContents/hashCode ()I net/minecraft/server/packs/linkfs/PathContents$FileContents/hashCode ()I +MD: net/minecraft/server/packs/linkfs/PathContents$FileContents/toString ()Ljava/lang/String; net/minecraft/server/packs/linkfs/PathContents$FileContents/toString ()Ljava/lang/String; +MD: net/minecraft/server/packs/metadata/MetadataSectionSerializer/m_6322_ (Lcom/google/gson/JsonObject;)Ljava/lang/Object; net/minecraft/server/packs/metadata/MetadataSectionSerializer/fromJson (Lcom/google/gson/JsonObject;)Ljava/lang/Object; +MD: net/minecraft/server/packs/metadata/MetadataSectionSerializer/m_7991_ ()Ljava/lang/String; net/minecraft/server/packs/metadata/MetadataSectionSerializer/getMetadataSectionName ()Ljava/lang/String; +MD: net/minecraft/server/packs/metadata/MetadataSectionType/m_245060_ (Ljava/lang/String;Lcom/mojang/serialization/Codec;)Lnet/minecraft/server/packs/metadata/MetadataSectionType; net/minecraft/server/packs/metadata/MetadataSectionType/fromCodec (Ljava/lang/String;Lcom/mojang/serialization/Codec;)Lnet/minecraft/server/packs/metadata/MetadataSectionType; +MD: net/minecraft/server/packs/metadata/MetadataSectionType/m_245162_ (Ljava/lang/Object;)Lcom/google/gson/JsonObject; net/minecraft/server/packs/metadata/MetadataSectionType/toJson (Ljava/lang/Object;)Lcom/google/gson/JsonObject; +MD: net/minecraft/server/packs/metadata/MetadataSectionType$1/ (Ljava/lang/String;Lcom/mojang/serialization/Codec;)V net/minecraft/server/packs/metadata/MetadataSectionType$1/ (Ljava/lang/String;Lcom/mojang/serialization/Codec;)V +MD: net/minecraft/server/packs/metadata/MetadataSectionType$1/m_245162_ (Ljava/lang/Object;)Lcom/google/gson/JsonObject; net/minecraft/server/packs/metadata/MetadataSectionType$1/toJson (Ljava/lang/Object;)Lcom/google/gson/JsonObject; +MD: net/minecraft/server/packs/metadata/MetadataSectionType$1/m_246962_ (Ljava/lang/String;)V net/minecraft/server/packs/metadata/MetadataSectionType$1/lambda$fromJson$0 (Ljava/lang/String;)V +MD: net/minecraft/server/packs/metadata/MetadataSectionType$1/m_247635_ (Ljava/lang/String;)V net/minecraft/server/packs/metadata/MetadataSectionType$1/lambda$toJson$1 (Ljava/lang/String;)V +MD: net/minecraft/server/packs/metadata/MetadataSectionType$1/m_6322_ (Lcom/google/gson/JsonObject;)Ljava/lang/Object; net/minecraft/server/packs/metadata/MetadataSectionType$1/fromJson (Lcom/google/gson/JsonObject;)Ljava/lang/Object; +MD: net/minecraft/server/packs/metadata/MetadataSectionType$1/m_7991_ ()Ljava/lang/String; net/minecraft/server/packs/metadata/MetadataSectionType$1/getMetadataSectionName ()Ljava/lang/String; +MD: net/minecraft/server/packs/metadata/pack/PackMetadataSection/ ()V net/minecraft/server/packs/metadata/pack/PackMetadataSection/ ()V +MD: net/minecraft/server/packs/metadata/pack/PackMetadataSection/ (Lnet/minecraft/network/chat/Component;I)V net/minecraft/server/packs/metadata/pack/PackMetadataSection/ (Lnet/minecraft/network/chat/Component;I)V +MD: net/minecraft/server/packs/metadata/pack/PackMetadataSection/m_10373_ ()Lnet/minecraft/network/chat/Component; net/minecraft/server/packs/metadata/pack/PackMetadataSection/getDescription ()Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/packs/metadata/pack/PackMetadataSection/m_10374_ ()I net/minecraft/server/packs/metadata/pack/PackMetadataSection/getPackFormat ()I +MD: net/minecraft/server/packs/metadata/pack/PackMetadataSectionSerializer/ ()V net/minecraft/server/packs/metadata/pack/PackMetadataSectionSerializer/ ()V +MD: net/minecraft/server/packs/metadata/pack/PackMetadataSectionSerializer/m_245162_ (Ljava/lang/Object;)Lcom/google/gson/JsonObject; net/minecraft/server/packs/metadata/pack/PackMetadataSectionSerializer/toJson (Ljava/lang/Object;)Lcom/google/gson/JsonObject; +MD: net/minecraft/server/packs/metadata/pack/PackMetadataSectionSerializer/m_245162_ (Lnet/minecraft/server/packs/metadata/pack/PackMetadataSection;)Lcom/google/gson/JsonObject; net/minecraft/server/packs/metadata/pack/PackMetadataSectionSerializer/toJson (Lnet/minecraft/server/packs/metadata/pack/PackMetadataSection;)Lcom/google/gson/JsonObject; +MD: net/minecraft/server/packs/metadata/pack/PackMetadataSectionSerializer/m_6322_ (Lcom/google/gson/JsonObject;)Lnet/minecraft/server/packs/metadata/pack/PackMetadataSection; net/minecraft/server/packs/metadata/pack/PackMetadataSectionSerializer/fromJson (Lcom/google/gson/JsonObject;)Lnet/minecraft/server/packs/metadata/pack/PackMetadataSection; +MD: net/minecraft/server/packs/metadata/pack/PackMetadataSectionSerializer/m_6322_ (Lcom/google/gson/JsonObject;)Ljava/lang/Object; net/minecraft/server/packs/metadata/pack/PackMetadataSectionSerializer/fromJson (Lcom/google/gson/JsonObject;)Ljava/lang/Object; +MD: net/minecraft/server/packs/metadata/pack/PackMetadataSectionSerializer/m_7991_ ()Ljava/lang/String; net/minecraft/server/packs/metadata/pack/PackMetadataSectionSerializer/getMetadataSectionName ()Ljava/lang/String; +MD: net/minecraft/server/packs/repository/BuiltInPackSource/ ()V net/minecraft/server/packs/repository/BuiltInPackSource/ ()V +MD: net/minecraft/server/packs/repository/BuiltInPackSource/ (Lnet/minecraft/server/packs/PackType;Lnet/minecraft/server/packs/VanillaPackResources;Lnet/minecraft/resources/ResourceLocation;)V net/minecraft/server/packs/repository/BuiltInPackSource/ (Lnet/minecraft/server/packs/PackType;Lnet/minecraft/server/packs/VanillaPackResources;Lnet/minecraft/resources/ResourceLocation;)V +MD: net/minecraft/server/packs/repository/BuiltInPackSource/m_245111_ (Ljava/nio/file/Path;Ljava/util/function/BiConsumer;)V net/minecraft/server/packs/repository/BuiltInPackSource/discoverPacksInPath (Ljava/nio/file/Path;Ljava/util/function/BiConsumer;)V +MD: net/minecraft/server/packs/repository/BuiltInPackSource/m_245188_ (Ljava/util/function/Consumer;)V net/minecraft/server/packs/repository/BuiltInPackSource/listBundledPacks (Ljava/util/function/Consumer;)V +MD: net/minecraft/server/packs/repository/BuiltInPackSource/m_245328_ (Ljava/lang/String;)Lnet/minecraft/network/chat/Component; net/minecraft/server/packs/repository/BuiltInPackSource/getPackTitle (Ljava/lang/String;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/packs/repository/BuiltInPackSource/m_245382_ (Ljava/util/function/BiConsumer;)V net/minecraft/server/packs/repository/BuiltInPackSource/populatePackList (Ljava/util/function/BiConsumer;)V +MD: net/minecraft/server/packs/repository/BuiltInPackSource/m_245806_ (Lnet/minecraft/server/packs/PackResources;)Lnet/minecraft/server/packs/repository/Pack; net/minecraft/server/packs/repository/BuiltInPackSource/createVanillaPack (Lnet/minecraft/server/packs/PackResources;)Lnet/minecraft/server/packs/repository/Pack; +MD: net/minecraft/server/packs/repository/BuiltInPackSource/m_246068_ (Ljava/util/function/BiConsumer;Ljava/nio/file/Path;Lnet/minecraft/server/packs/repository/Pack$ResourcesSupplier;)V net/minecraft/server/packs/repository/BuiltInPackSource/lambda$discoverPacksInPath$3 (Ljava/util/function/BiConsumer;Ljava/nio/file/Path;Lnet/minecraft/server/packs/repository/Pack$ResourcesSupplier;)V +MD: net/minecraft/server/packs/repository/BuiltInPackSource/m_246091_ (Ljava/lang/String;Lnet/minecraft/server/packs/repository/Pack$ResourcesSupplier;Lnet/minecraft/network/chat/Component;)Lnet/minecraft/server/packs/repository/Pack; net/minecraft/server/packs/repository/BuiltInPackSource/createBuiltinPack (Ljava/lang/String;Lnet/minecraft/server/packs/repository/Pack$ResourcesSupplier;Lnet/minecraft/network/chat/Component;)Lnet/minecraft/server/packs/repository/Pack; +MD: net/minecraft/server/packs/repository/BuiltInPackSource/m_246851_ ()Lnet/minecraft/server/packs/VanillaPackResources; net/minecraft/server/packs/repository/BuiltInPackSource/getVanillaPack ()Lnet/minecraft/server/packs/VanillaPackResources; +MD: net/minecraft/server/packs/repository/BuiltInPackSource/m_246863_ (Ljava/util/function/Consumer;Ljava/lang/String;Ljava/util/function/Function;)V net/minecraft/server/packs/repository/BuiltInPackSource/lambda$listBundledPacks$0 (Ljava/util/function/Consumer;Ljava/lang/String;Ljava/util/function/Function;)V +MD: net/minecraft/server/packs/repository/BuiltInPackSource/m_247024_ (Lnet/minecraft/server/packs/repository/Pack$ResourcesSupplier;Ljava/lang/String;)Lnet/minecraft/server/packs/repository/Pack; net/minecraft/server/packs/repository/BuiltInPackSource/lambda$discoverPacksInPath$2 (Lnet/minecraft/server/packs/repository/Pack$ResourcesSupplier;Ljava/lang/String;)Lnet/minecraft/server/packs/repository/Pack; +MD: net/minecraft/server/packs/repository/BuiltInPackSource/m_247362_ (Ljava/util/function/BiConsumer;Ljava/nio/file/Path;)V net/minecraft/server/packs/repository/BuiltInPackSource/lambda$populatePackList$1 (Ljava/util/function/BiConsumer;Ljava/nio/file/Path;)V +MD: net/minecraft/server/packs/repository/BuiltInPackSource/m_247484_ (Ljava/nio/file/Path;)Ljava/lang/String; net/minecraft/server/packs/repository/BuiltInPackSource/pathToId (Ljava/nio/file/Path;)Ljava/lang/String; +MD: net/minecraft/server/packs/repository/BuiltInPackSource/m_7686_ (Ljava/util/function/Consumer;)V net/minecraft/server/packs/repository/BuiltInPackSource/loadPacks (Ljava/util/function/Consumer;)V +MD: net/minecraft/server/packs/repository/FolderRepositorySource/ ()V net/minecraft/server/packs/repository/FolderRepositorySource/ ()V +MD: net/minecraft/server/packs/repository/FolderRepositorySource/ (Ljava/nio/file/Path;Lnet/minecraft/server/packs/PackType;Lnet/minecraft/server/packs/repository/PackSource;)V net/minecraft/server/packs/repository/FolderRepositorySource/ (Ljava/nio/file/Path;Lnet/minecraft/server/packs/PackType;Lnet/minecraft/server/packs/repository/PackSource;)V +MD: net/minecraft/server/packs/repository/FolderRepositorySource/m_244897_ (Ljava/util/function/Consumer;Ljava/nio/file/Path;Lnet/minecraft/server/packs/repository/Pack$ResourcesSupplier;)V net/minecraft/server/packs/repository/FolderRepositorySource/lambda$loadPacks$0 (Ljava/util/function/Consumer;Ljava/nio/file/Path;Lnet/minecraft/server/packs/repository/Pack$ResourcesSupplier;)V +MD: net/minecraft/server/packs/repository/FolderRepositorySource/m_246927_ (Ljava/nio/file/Path;)Ljava/lang/String; net/minecraft/server/packs/repository/FolderRepositorySource/nameFromPath (Ljava/nio/file/Path;)Ljava/lang/String; +MD: net/minecraft/server/packs/repository/FolderRepositorySource/m_247293_ (Ljava/nio/file/Path;ZLjava/util/function/BiConsumer;)V net/minecraft/server/packs/repository/FolderRepositorySource/discoverPacks (Ljava/nio/file/Path;ZLjava/util/function/BiConsumer;)V +MD: net/minecraft/server/packs/repository/FolderRepositorySource/m_254800_ (Ljava/nio/file/Path;ZLjava/lang/String;)Lnet/minecraft/server/packs/PackResources; net/minecraft/server/packs/repository/FolderRepositorySource/lambda$detectPackResources$1 (Ljava/nio/file/Path;ZLjava/lang/String;)Lnet/minecraft/server/packs/PackResources; +MD: net/minecraft/server/packs/repository/FolderRepositorySource/m_254801_ (Ljava/io/File;ZLjava/lang/String;)Lnet/minecraft/server/packs/PackResources; net/minecraft/server/packs/repository/FolderRepositorySource/lambda$detectPackResources$2 (Ljava/io/File;ZLjava/lang/String;)Lnet/minecraft/server/packs/PackResources; +MD: net/minecraft/server/packs/repository/FolderRepositorySource/m_254985_ (Ljava/nio/file/Path;Z)Lnet/minecraft/server/packs/repository/Pack$ResourcesSupplier; net/minecraft/server/packs/repository/FolderRepositorySource/detectPackResources (Ljava/nio/file/Path;Z)Lnet/minecraft/server/packs/repository/Pack$ResourcesSupplier; +MD: net/minecraft/server/packs/repository/FolderRepositorySource/m_7686_ (Ljava/util/function/Consumer;)V net/minecraft/server/packs/repository/FolderRepositorySource/loadPacks (Ljava/util/function/Consumer;)V +MD: net/minecraft/server/packs/repository/Pack/ ()V net/minecraft/server/packs/repository/Pack/ ()V +MD: net/minecraft/server/packs/repository/Pack/ (Ljava/lang/String;ZLnet/minecraft/server/packs/repository/Pack$ResourcesSupplier;Lnet/minecraft/network/chat/Component;Lnet/minecraft/server/packs/repository/Pack$Info;Lnet/minecraft/server/packs/repository/PackCompatibility;Lnet/minecraft/server/packs/repository/Pack$Position;ZLnet/minecraft/server/packs/repository/PackSource;)V net/minecraft/server/packs/repository/Pack/ (Ljava/lang/String;ZLnet/minecraft/server/packs/repository/Pack$ResourcesSupplier;Lnet/minecraft/network/chat/Component;Lnet/minecraft/server/packs/repository/Pack$Info;Lnet/minecraft/server/packs/repository/PackCompatibility;Lnet/minecraft/server/packs/repository/Pack$Position;ZLnet/minecraft/server/packs/repository/PackSource;)V +MD: net/minecraft/server/packs/repository/Pack/equals (Ljava/lang/Object;)Z net/minecraft/server/packs/repository/Pack/equals (Ljava/lang/Object;)Z +MD: net/minecraft/server/packs/repository/Pack/hashCode ()I net/minecraft/server/packs/repository/Pack/hashCode ()I +MD: net/minecraft/server/packs/repository/Pack/m_10429_ ()Lnet/minecraft/network/chat/Component; net/minecraft/server/packs/repository/Pack/getTitle ()Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/packs/repository/Pack/m_10437_ (Z)Lnet/minecraft/network/chat/Component; net/minecraft/server/packs/repository/Pack/getChatLink (Z)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/packs/repository/Pack/m_10439_ (ZLnet/minecraft/network/chat/Style;)Lnet/minecraft/network/chat/Style; net/minecraft/server/packs/repository/Pack/lambda$getChatLink$0 (ZLnet/minecraft/network/chat/Style;)Lnet/minecraft/network/chat/Style; +MD: net/minecraft/server/packs/repository/Pack/m_10442_ ()Lnet/minecraft/network/chat/Component; net/minecraft/server/packs/repository/Pack/getDescription ()Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/packs/repository/Pack/m_10443_ ()Lnet/minecraft/server/packs/repository/PackCompatibility; net/minecraft/server/packs/repository/Pack/getCompatibility ()Lnet/minecraft/server/packs/repository/PackCompatibility; +MD: net/minecraft/server/packs/repository/Pack/m_10445_ ()Lnet/minecraft/server/packs/PackResources; net/minecraft/server/packs/repository/Pack/open ()Lnet/minecraft/server/packs/PackResources; +MD: net/minecraft/server/packs/repository/Pack/m_10446_ ()Ljava/lang/String; net/minecraft/server/packs/repository/Pack/getId ()Ljava/lang/String; +MD: net/minecraft/server/packs/repository/Pack/m_10449_ ()Z net/minecraft/server/packs/repository/Pack/isRequired ()Z +MD: net/minecraft/server/packs/repository/Pack/m_10450_ ()Z net/minecraft/server/packs/repository/Pack/isFixedPosition ()Z +MD: net/minecraft/server/packs/repository/Pack/m_10451_ ()Lnet/minecraft/server/packs/repository/Pack$Position; net/minecraft/server/packs/repository/Pack/getDefaultPosition ()Lnet/minecraft/server/packs/repository/Pack$Position; +MD: net/minecraft/server/packs/repository/Pack/m_10453_ ()Lnet/minecraft/server/packs/repository/PackSource; net/minecraft/server/packs/repository/Pack/getPackSource ()Lnet/minecraft/server/packs/repository/PackSource; +MD: net/minecraft/server/packs/repository/Pack/m_245429_ (Ljava/lang/String;Lnet/minecraft/network/chat/Component;ZLnet/minecraft/server/packs/repository/Pack$ResourcesSupplier;Lnet/minecraft/server/packs/PackType;Lnet/minecraft/server/packs/repository/Pack$Position;Lnet/minecraft/server/packs/repository/PackSource;)Lnet/minecraft/server/packs/repository/Pack; net/minecraft/server/packs/repository/Pack/readMetaAndCreate (Ljava/lang/String;Lnet/minecraft/network/chat/Component;ZLnet/minecraft/server/packs/repository/Pack$ResourcesSupplier;Lnet/minecraft/server/packs/PackType;Lnet/minecraft/server/packs/repository/Pack$Position;Lnet/minecraft/server/packs/repository/PackSource;)Lnet/minecraft/server/packs/repository/Pack; +MD: net/minecraft/server/packs/repository/Pack/m_245512_ (Ljava/lang/String;Lnet/minecraft/network/chat/Component;ZLnet/minecraft/server/packs/repository/Pack$ResourcesSupplier;Lnet/minecraft/server/packs/repository/Pack$Info;Lnet/minecraft/server/packs/PackType;Lnet/minecraft/server/packs/repository/Pack$Position;ZLnet/minecraft/server/packs/repository/PackSource;)Lnet/minecraft/server/packs/repository/Pack; net/minecraft/server/packs/repository/Pack/create (Ljava/lang/String;Lnet/minecraft/network/chat/Component;ZLnet/minecraft/server/packs/repository/Pack$ResourcesSupplier;Lnet/minecraft/server/packs/repository/Pack$Info;Lnet/minecraft/server/packs/PackType;Lnet/minecraft/server/packs/repository/Pack$Position;ZLnet/minecraft/server/packs/repository/PackSource;)Lnet/minecraft/server/packs/repository/Pack; +MD: net/minecraft/server/packs/repository/Pack/m_245532_ ()Lnet/minecraft/world/flag/FeatureFlagSet; net/minecraft/server/packs/repository/Pack/getRequestedFeatures ()Lnet/minecraft/world/flag/FeatureFlagSet; +MD: net/minecraft/server/packs/repository/Pack/m_246334_ (Ljava/lang/String;Lnet/minecraft/server/packs/repository/Pack$ResourcesSupplier;)Lnet/minecraft/server/packs/repository/Pack$Info; net/minecraft/server/packs/repository/Pack/readPackInfo (Ljava/lang/String;Lnet/minecraft/server/packs/repository/Pack$ResourcesSupplier;)Lnet/minecraft/server/packs/repository/Pack$Info; +MD: net/minecraft/server/packs/repository/Pack$Info/ (Lnet/minecraft/network/chat/Component;ILnet/minecraft/world/flag/FeatureFlagSet;)V net/minecraft/server/packs/repository/Pack$Info/ (Lnet/minecraft/network/chat/Component;ILnet/minecraft/world/flag/FeatureFlagSet;)V +MD: net/minecraft/server/packs/repository/Pack$Info/equals (Ljava/lang/Object;)Z net/minecraft/server/packs/repository/Pack$Info/equals (Ljava/lang/Object;)Z +MD: net/minecraft/server/packs/repository/Pack$Info/f_244041_ ()Lnet/minecraft/world/flag/FeatureFlagSet; net/minecraft/server/packs/repository/Pack$Info/requestedFeatures ()Lnet/minecraft/world/flag/FeatureFlagSet; +MD: net/minecraft/server/packs/repository/Pack$Info/f_244194_ ()I net/minecraft/server/packs/repository/Pack$Info/format ()I +MD: net/minecraft/server/packs/repository/Pack$Info/f_244592_ ()Lnet/minecraft/network/chat/Component; net/minecraft/server/packs/repository/Pack$Info/description ()Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/packs/repository/Pack$Info/hashCode ()I net/minecraft/server/packs/repository/Pack$Info/hashCode ()I +MD: net/minecraft/server/packs/repository/Pack$Info/m_246438_ (Lnet/minecraft/server/packs/PackType;)Lnet/minecraft/server/packs/repository/PackCompatibility; net/minecraft/server/packs/repository/Pack$Info/compatibility (Lnet/minecraft/server/packs/PackType;)Lnet/minecraft/server/packs/repository/PackCompatibility; +MD: net/minecraft/server/packs/repository/Pack$Info/toString ()Ljava/lang/String; net/minecraft/server/packs/repository/Pack$Info/toString ()Ljava/lang/String; +MD: net/minecraft/server/packs/repository/Pack$Position/ ()V net/minecraft/server/packs/repository/Pack$Position/ ()V +MD: net/minecraft/server/packs/repository/Pack$Position/ (Ljava/lang/String;I)V net/minecraft/server/packs/repository/Pack$Position/ (Ljava/lang/String;I)V +MD: net/minecraft/server/packs/repository/Pack$Position/m_10469_ ()Lnet/minecraft/server/packs/repository/Pack$Position; net/minecraft/server/packs/repository/Pack$Position/opposite ()Lnet/minecraft/server/packs/repository/Pack$Position; +MD: net/minecraft/server/packs/repository/Pack$Position/m_10470_ (Ljava/util/List;Ljava/lang/Object;Ljava/util/function/Function;Z)I net/minecraft/server/packs/repository/Pack$Position/insert (Ljava/util/List;Ljava/lang/Object;Ljava/util/function/Function;Z)I +MD: net/minecraft/server/packs/repository/Pack$Position/m_143881_ ()[Lnet/minecraft/server/packs/repository/Pack$Position; net/minecraft/server/packs/repository/Pack$Position/$values ()[Lnet/minecraft/server/packs/repository/Pack$Position; +MD: net/minecraft/server/packs/repository/Pack$Position/valueOf (Ljava/lang/String;)Lnet/minecraft/server/packs/repository/Pack$Position; net/minecraft/server/packs/repository/Pack$Position/valueOf (Ljava/lang/String;)Lnet/minecraft/server/packs/repository/Pack$Position; +MD: net/minecraft/server/packs/repository/Pack$Position/values ()[Lnet/minecraft/server/packs/repository/Pack$Position; net/minecraft/server/packs/repository/Pack$Position/values ()[Lnet/minecraft/server/packs/repository/Pack$Position; +MD: net/minecraft/server/packs/repository/Pack$ResourcesSupplier/m_247679_ (Ljava/lang/String;)Lnet/minecraft/server/packs/PackResources; net/minecraft/server/packs/repository/Pack$ResourcesSupplier/open (Ljava/lang/String;)Lnet/minecraft/server/packs/PackResources; +MD: net/minecraft/server/packs/repository/PackCompatibility/ ()V net/minecraft/server/packs/repository/PackCompatibility/ ()V +MD: net/minecraft/server/packs/repository/PackCompatibility/ (Ljava/lang/String;ILjava/lang/String;)V net/minecraft/server/packs/repository/PackCompatibility/ (Ljava/lang/String;ILjava/lang/String;)V +MD: net/minecraft/server/packs/repository/PackCompatibility/m_10489_ ()Z net/minecraft/server/packs/repository/PackCompatibility/isCompatible ()Z +MD: net/minecraft/server/packs/repository/PackCompatibility/m_10492_ ()Lnet/minecraft/network/chat/Component; net/minecraft/server/packs/repository/PackCompatibility/getDescription ()Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/packs/repository/PackCompatibility/m_10493_ ()Lnet/minecraft/network/chat/Component; net/minecraft/server/packs/repository/PackCompatibility/getConfirmation ()Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/packs/repository/PackCompatibility/m_143882_ (ILnet/minecraft/server/packs/PackType;)Lnet/minecraft/server/packs/repository/PackCompatibility; net/minecraft/server/packs/repository/PackCompatibility/forFormat (ILnet/minecraft/server/packs/PackType;)Lnet/minecraft/server/packs/repository/PackCompatibility; +MD: net/minecraft/server/packs/repository/PackCompatibility/m_143888_ ()[Lnet/minecraft/server/packs/repository/PackCompatibility; net/minecraft/server/packs/repository/PackCompatibility/$values ()[Lnet/minecraft/server/packs/repository/PackCompatibility; +MD: net/minecraft/server/packs/repository/PackCompatibility/valueOf (Ljava/lang/String;)Lnet/minecraft/server/packs/repository/PackCompatibility; net/minecraft/server/packs/repository/PackCompatibility/valueOf (Ljava/lang/String;)Lnet/minecraft/server/packs/repository/PackCompatibility; +MD: net/minecraft/server/packs/repository/PackCompatibility/values ()[Lnet/minecraft/server/packs/repository/PackCompatibility; net/minecraft/server/packs/repository/PackCompatibility/values ()[Lnet/minecraft/server/packs/repository/PackCompatibility; +MD: net/minecraft/server/packs/repository/PackRepository/ ([Lnet/minecraft/server/packs/repository/RepositorySource;)V net/minecraft/server/packs/repository/PackRepository/ ([Lnet/minecraft/server/packs/repository/RepositorySource;)V +MD: net/minecraft/server/packs/repository/PackRepository/m_10506_ ()V net/minecraft/server/packs/repository/PackRepository/reload ()V +MD: net/minecraft/server/packs/repository/PackRepository/m_10507_ (Ljava/lang/String;)Lnet/minecraft/server/packs/repository/Pack; net/minecraft/server/packs/repository/PackRepository/getPack (Ljava/lang/String;)Lnet/minecraft/server/packs/repository/Pack; +MD: net/minecraft/server/packs/repository/PackRepository/m_10509_ (Ljava/util/Collection;)V net/minecraft/server/packs/repository/PackRepository/setSelected (Ljava/util/Collection;)V +MD: net/minecraft/server/packs/repository/PackRepository/m_10514_ ()Ljava/util/Collection; net/minecraft/server/packs/repository/PackRepository/getAvailableIds ()Ljava/util/Collection; +MD: net/minecraft/server/packs/repository/PackRepository/m_10515_ (Ljava/lang/String;)Z net/minecraft/server/packs/repository/PackRepository/isAvailable (Ljava/lang/String;)Z +MD: net/minecraft/server/packs/repository/PackRepository/m_10517_ (Ljava/util/Collection;)Ljava/util/List; net/minecraft/server/packs/repository/PackRepository/rebuildSelected (Ljava/util/Collection;)Ljava/util/List; +MD: net/minecraft/server/packs/repository/PackRepository/m_10519_ ()Ljava/util/Collection; net/minecraft/server/packs/repository/PackRepository/getAvailablePacks ()Ljava/util/Collection; +MD: net/minecraft/server/packs/repository/PackRepository/m_10520_ (Ljava/util/Collection;)Ljava/util/stream/Stream; net/minecraft/server/packs/repository/PackRepository/getAvailablePacks (Ljava/util/Collection;)Ljava/util/stream/Stream; +MD: net/minecraft/server/packs/repository/PackRepository/m_10523_ ()Ljava/util/Collection; net/minecraft/server/packs/repository/PackRepository/getSelectedIds ()Ljava/util/Collection; +MD: net/minecraft/server/packs/repository/PackRepository/m_10524_ ()Ljava/util/Collection; net/minecraft/server/packs/repository/PackRepository/getSelectedPacks ()Ljava/util/Collection; +MD: net/minecraft/server/packs/repository/PackRepository/m_10525_ ()Ljava/util/List; net/minecraft/server/packs/repository/PackRepository/openAllSelected ()Ljava/util/List; +MD: net/minecraft/server/packs/repository/PackRepository/m_10526_ ()Ljava/util/Map; net/minecraft/server/packs/repository/PackRepository/discoverAvailable ()Ljava/util/Map; +MD: net/minecraft/server/packs/repository/PackRepository/m_143901_ (Ljava/util/Map;Lnet/minecraft/server/packs/repository/Pack;)V net/minecraft/server/packs/repository/PackRepository/lambda$discoverAvailable$0 (Ljava/util/Map;Lnet/minecraft/server/packs/repository/Pack;)V +MD: net/minecraft/server/packs/repository/PackRepository/m_245805_ ()Lnet/minecraft/world/flag/FeatureFlagSet; net/minecraft/server/packs/repository/PackRepository/getRequestedFeatureFlags ()Lnet/minecraft/world/flag/FeatureFlagSet; +MD: net/minecraft/server/packs/repository/PackRepository/m_275853_ (Ljava/lang/String;)Z net/minecraft/server/packs/repository/PackRepository/removePack (Ljava/lang/String;)Z +MD: net/minecraft/server/packs/repository/PackRepository/m_275855_ (Ljava/lang/String;)Z net/minecraft/server/packs/repository/PackRepository/addPack (Ljava/lang/String;)Z +MD: net/minecraft/server/packs/repository/PackSource/ ()V net/minecraft/server/packs/repository/PackSource/ ()V +MD: net/minecraft/server/packs/repository/PackSource/m_10533_ (Ljava/lang/String;)Ljava/util/function/UnaryOperator; net/minecraft/server/packs/repository/PackSource/decorateWithSource (Ljava/lang/String;)Ljava/util/function/UnaryOperator; +MD: net/minecraft/server/packs/repository/PackSource/m_10537_ (Lnet/minecraft/network/chat/Component;Lnet/minecraft/network/chat/Component;)Lnet/minecraft/network/chat/Component; net/minecraft/server/packs/repository/PackSource/lambda$decorateWithSource$0 (Lnet/minecraft/network/chat/Component;Lnet/minecraft/network/chat/Component;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/packs/repository/PackSource/m_10540_ (Lnet/minecraft/network/chat/Component;)Lnet/minecraft/network/chat/Component; net/minecraft/server/packs/repository/PackSource/decorate (Lnet/minecraft/network/chat/Component;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/packs/repository/PackSource/m_245251_ ()Z net/minecraft/server/packs/repository/PackSource/shouldAddAutomatically ()Z +MD: net/minecraft/server/packs/repository/PackSource/m_247176_ (Ljava/util/function/UnaryOperator;Z)Lnet/minecraft/server/packs/repository/PackSource; net/minecraft/server/packs/repository/PackSource/create (Ljava/util/function/UnaryOperator;Z)Lnet/minecraft/server/packs/repository/PackSource; +MD: net/minecraft/server/packs/repository/PackSource$1/ (Ljava/util/function/UnaryOperator;Z)V net/minecraft/server/packs/repository/PackSource$1/ (Ljava/util/function/UnaryOperator;Z)V +MD: net/minecraft/server/packs/repository/PackSource$1/m_10540_ (Lnet/minecraft/network/chat/Component;)Lnet/minecraft/network/chat/Component; net/minecraft/server/packs/repository/PackSource$1/decorate (Lnet/minecraft/network/chat/Component;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/packs/repository/PackSource$1/m_245251_ ()Z net/minecraft/server/packs/repository/PackSource$1/shouldAddAutomatically ()Z +MD: net/minecraft/server/packs/repository/RepositorySource/m_7686_ (Ljava/util/function/Consumer;)V net/minecraft/server/packs/repository/RepositorySource/loadPacks (Ljava/util/function/Consumer;)V +MD: net/minecraft/server/packs/repository/ServerPacksSource/ ()V net/minecraft/server/packs/repository/ServerPacksSource/ ()V +MD: net/minecraft/server/packs/repository/ServerPacksSource/ ()V net/minecraft/server/packs/repository/ServerPacksSource/ ()V +MD: net/minecraft/server/packs/repository/ServerPacksSource/m_244899_ (Lnet/minecraft/server/packs/PackResources;Ljava/lang/String;)Lnet/minecraft/server/packs/PackResources; net/minecraft/server/packs/repository/ServerPacksSource/lambda$createVanillaPack$0 (Lnet/minecraft/server/packs/PackResources;Ljava/lang/String;)Lnet/minecraft/server/packs/PackResources; +MD: net/minecraft/server/packs/repository/ServerPacksSource/m_245328_ (Ljava/lang/String;)Lnet/minecraft/network/chat/Component; net/minecraft/server/packs/repository/ServerPacksSource/getPackTitle (Ljava/lang/String;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/packs/repository/ServerPacksSource/m_245786_ (Ljava/nio/file/Path;)Lnet/minecraft/server/packs/repository/PackRepository; net/minecraft/server/packs/repository/ServerPacksSource/createPackRepository (Ljava/nio/file/Path;)Lnet/minecraft/server/packs/repository/PackRepository; +MD: net/minecraft/server/packs/repository/ServerPacksSource/m_245806_ (Lnet/minecraft/server/packs/PackResources;)Lnet/minecraft/server/packs/repository/Pack; net/minecraft/server/packs/repository/ServerPacksSource/createVanillaPack (Lnet/minecraft/server/packs/PackResources;)Lnet/minecraft/server/packs/repository/Pack; +MD: net/minecraft/server/packs/repository/ServerPacksSource/m_246091_ (Ljava/lang/String;Lnet/minecraft/server/packs/repository/Pack$ResourcesSupplier;Lnet/minecraft/network/chat/Component;)Lnet/minecraft/server/packs/repository/Pack; net/minecraft/server/packs/repository/ServerPacksSource/createBuiltinPack (Ljava/lang/String;Lnet/minecraft/server/packs/repository/Pack$ResourcesSupplier;Lnet/minecraft/network/chat/Component;)Lnet/minecraft/server/packs/repository/Pack; +MD: net/minecraft/server/packs/repository/ServerPacksSource/m_246173_ ()Lnet/minecraft/server/packs/VanillaPackResources; net/minecraft/server/packs/repository/ServerPacksSource/createVanillaPackSource ()Lnet/minecraft/server/packs/VanillaPackResources; +MD: net/minecraft/server/packs/repository/ServerPacksSource/m_247728_ (Lnet/minecraft/world/level/storage/LevelStorageSource$LevelStorageAccess;)Lnet/minecraft/server/packs/repository/PackRepository; net/minecraft/server/packs/repository/ServerPacksSource/createPackRepository (Lnet/minecraft/world/level/storage/LevelStorageSource$LevelStorageAccess;)Lnet/minecraft/server/packs/repository/PackRepository; +MD: net/minecraft/server/packs/resources/CloseableResourceManager/close ()V net/minecraft/server/packs/resources/CloseableResourceManager/close ()V +MD: net/minecraft/server/packs/resources/FallbackResourceManager/ ()V net/minecraft/server/packs/resources/FallbackResourceManager/ ()V +MD: net/minecraft/server/packs/resources/FallbackResourceManager/ (Lnet/minecraft/server/packs/PackType;Ljava/lang/String;)V net/minecraft/server/packs/resources/FallbackResourceManager/ (Lnet/minecraft/server/packs/PackType;Ljava/lang/String;)V +MD: net/minecraft/server/packs/resources/FallbackResourceManager/m_10624_ (Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/server/packs/resources/FallbackResourceManager/getMetadataLocation (Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/server/packs/resources/FallbackResourceManager/m_213713_ (Lnet/minecraft/resources/ResourceLocation;)Ljava/util/Optional; net/minecraft/server/packs/resources/FallbackResourceManager/getResource (Lnet/minecraft/resources/ResourceLocation;)Ljava/util/Optional; +MD: net/minecraft/server/packs/resources/FallbackResourceManager/m_213829_ (Lnet/minecraft/resources/ResourceLocation;)Ljava/util/List; net/minecraft/server/packs/resources/FallbackResourceManager/getResourceStack (Lnet/minecraft/resources/ResourceLocation;)Ljava/util/List; +MD: net/minecraft/server/packs/resources/FallbackResourceManager/m_214159_ (Ljava/lang/String;Ljava/util/function/Predicate;)Ljava/util/Map; net/minecraft/server/packs/resources/FallbackResourceManager/listResources (Ljava/lang/String;Ljava/util/function/Predicate;)Ljava/util/Map; +MD: net/minecraft/server/packs/resources/FallbackResourceManager/m_214160_ (Ljava/lang/String;Ljava/util/function/Predicate;)Ljava/util/Map; net/minecraft/server/packs/resources/FallbackResourceManager/listResourceStacks (Ljava/lang/String;Ljava/util/function/Predicate;)Ljava/util/Map; +MD: net/minecraft/server/packs/resources/FallbackResourceManager/m_215368_ (Lnet/minecraft/resources/ResourceLocation;I)Lnet/minecraft/server/packs/resources/IoSupplier; net/minecraft/server/packs/resources/FallbackResourceManager/createStackMetadataFinder (Lnet/minecraft/resources/ResourceLocation;I)Lnet/minecraft/server/packs/resources/IoSupplier; +MD: net/minecraft/server/packs/resources/FallbackResourceManager/m_215377_ (Lnet/minecraft/server/packs/PackResources;)V net/minecraft/server/packs/resources/FallbackResourceManager/push (Lnet/minecraft/server/packs/PackResources;)V +MD: net/minecraft/server/packs/resources/FallbackResourceManager/m_215382_ (Lnet/minecraft/server/packs/PackResources;Ljava/util/function/Predicate;)V net/minecraft/server/packs/resources/FallbackResourceManager/push (Lnet/minecraft/server/packs/PackResources;Ljava/util/function/Predicate;)V +MD: net/minecraft/server/packs/resources/FallbackResourceManager/m_215385_ (Lnet/minecraft/server/packs/resources/FallbackResourceManager$PackEntry;)Lnet/minecraft/server/packs/PackResources; net/minecraft/server/packs/resources/FallbackResourceManager/lambda$listPacks$7 (Lnet/minecraft/server/packs/resources/FallbackResourceManager$PackEntry;)Lnet/minecraft/server/packs/PackResources; +MD: net/minecraft/server/packs/resources/FallbackResourceManager/m_215387_ (Lnet/minecraft/server/packs/resources/FallbackResourceManager$PackEntry;Ljava/lang/String;Ljava/util/function/Predicate;Ljava/util/Map;)V net/minecraft/server/packs/resources/FallbackResourceManager/listPackResources (Lnet/minecraft/server/packs/resources/FallbackResourceManager$PackEntry;Ljava/lang/String;Ljava/util/function/Predicate;Ljava/util/Map;)V +MD: net/minecraft/server/packs/resources/FallbackResourceManager/m_215392_ (Lnet/minecraft/server/packs/resources/FallbackResourceManager$PackEntry;Ljava/util/Map;)V net/minecraft/server/packs/resources/FallbackResourceManager/applyPackFiltersToExistingResources (Lnet/minecraft/server/packs/resources/FallbackResourceManager$PackEntry;Ljava/util/Map;)V +MD: net/minecraft/server/packs/resources/FallbackResourceManager/m_215395_ (Ljava/lang/String;Lnet/minecraft/server/packs/PackResources;Ljava/util/function/Predicate;)V net/minecraft/server/packs/resources/FallbackResourceManager/pushInternal (Ljava/lang/String;Lnet/minecraft/server/packs/PackResources;Ljava/util/function/Predicate;)V +MD: net/minecraft/server/packs/resources/FallbackResourceManager/m_215399_ (Ljava/lang/String;Ljava/util/function/Predicate;)V net/minecraft/server/packs/resources/FallbackResourceManager/pushFilterOnly (Ljava/lang/String;Ljava/util/function/Predicate;)V +MD: net/minecraft/server/packs/resources/FallbackResourceManager/m_244900_ (Ljava/util/function/Predicate;Ljava/util/Map;Lnet/minecraft/server/packs/PackResources;ILjava/util/Map;Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/server/packs/resources/IoSupplier;)V net/minecraft/server/packs/resources/FallbackResourceManager/lambda$listResources$2 (Ljava/util/function/Predicate;Ljava/util/Map;Lnet/minecraft/server/packs/PackResources;ILjava/util/Map;Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/server/packs/resources/IoSupplier;)V +MD: net/minecraft/server/packs/resources/FallbackResourceManager/m_244901_ (Ljava/util/Map;Ljava/util/Map;Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/server/packs/resources/FallbackResourceManager$1ResourceWithSourceAndIndex;)V net/minecraft/server/packs/resources/FallbackResourceManager/lambda$listResources$3 (Ljava/util/Map;Ljava/util/Map;Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/server/packs/resources/FallbackResourceManager$1ResourceWithSourceAndIndex;)V +MD: net/minecraft/server/packs/resources/FallbackResourceManager/m_244902_ (Lnet/minecraft/server/packs/resources/IoSupplier;)Lnet/minecraft/server/packs/resources/ResourceMetadata; net/minecraft/server/packs/resources/FallbackResourceManager/lambda$convertToMetadata$5 (Lnet/minecraft/server/packs/resources/IoSupplier;)Lnet/minecraft/server/packs/resources/ResourceMetadata; +MD: net/minecraft/server/packs/resources/FallbackResourceManager/m_244903_ (Lnet/minecraft/server/packs/PackResources;Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/server/packs/resources/ResourceMetadata; net/minecraft/server/packs/resources/FallbackResourceManager/lambda$getResourceStack$1 (Lnet/minecraft/server/packs/PackResources;Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/server/packs/resources/ResourceMetadata; +MD: net/minecraft/server/packs/resources/FallbackResourceManager/m_244904_ (Ljava/util/function/Predicate;Ljava/util/Map;Lnet/minecraft/server/packs/PackResources;Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/server/packs/resources/IoSupplier;)V net/minecraft/server/packs/resources/FallbackResourceManager/lambda$listPackResources$6 (Ljava/util/function/Predicate;Ljava/util/Map;Lnet/minecraft/server/packs/PackResources;Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/server/packs/resources/IoSupplier;)V +MD: net/minecraft/server/packs/resources/FallbackResourceManager/m_244905_ (Lnet/minecraft/server/packs/resources/IoSupplier;Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/server/packs/PackResources;)Ljava/io/InputStream; net/minecraft/server/packs/resources/FallbackResourceManager/lambda$wrapForDebug$0 (Lnet/minecraft/server/packs/resources/IoSupplier;Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/server/packs/PackResources;)Ljava/io/InputStream; +MD: net/minecraft/server/packs/resources/FallbackResourceManager/m_244906_ (Lnet/minecraft/resources/ResourceLocation;I)Lnet/minecraft/server/packs/resources/ResourceMetadata; net/minecraft/server/packs/resources/FallbackResourceManager/lambda$createStackMetadataFinder$4 (Lnet/minecraft/resources/ResourceLocation;I)Lnet/minecraft/server/packs/resources/ResourceMetadata; +MD: net/minecraft/server/packs/resources/FallbackResourceManager/m_245103_ (Lnet/minecraft/resources/ResourceLocation;)Z net/minecraft/server/packs/resources/FallbackResourceManager/isMetadata (Lnet/minecraft/resources/ResourceLocation;)Z +MD: net/minecraft/server/packs/resources/FallbackResourceManager/m_245722_ (Lnet/minecraft/server/packs/resources/IoSupplier;)Lnet/minecraft/server/packs/resources/IoSupplier; net/minecraft/server/packs/resources/FallbackResourceManager/convertToMetadata (Lnet/minecraft/server/packs/resources/IoSupplier;)Lnet/minecraft/server/packs/resources/IoSupplier; +MD: net/minecraft/server/packs/resources/FallbackResourceManager/m_246164_ (Lnet/minecraft/server/packs/PackResources;Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/server/packs/resources/IoSupplier;Lnet/minecraft/server/packs/resources/IoSupplier;)Lnet/minecraft/server/packs/resources/Resource; net/minecraft/server/packs/resources/FallbackResourceManager/createResource (Lnet/minecraft/server/packs/PackResources;Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/server/packs/resources/IoSupplier;Lnet/minecraft/server/packs/resources/IoSupplier;)Lnet/minecraft/server/packs/resources/Resource; +MD: net/minecraft/server/packs/resources/FallbackResourceManager/m_246183_ (Lnet/minecraft/server/packs/resources/IoSupplier;)Lnet/minecraft/server/packs/resources/ResourceMetadata; net/minecraft/server/packs/resources/FallbackResourceManager/parseMetadata (Lnet/minecraft/server/packs/resources/IoSupplier;)Lnet/minecraft/server/packs/resources/ResourceMetadata; +MD: net/minecraft/server/packs/resources/FallbackResourceManager/m_246569_ (Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/server/packs/resources/FallbackResourceManager/getResourceLocationFromMetadata (Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/server/packs/resources/FallbackResourceManager/m_246574_ (Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/server/packs/PackResources;Lnet/minecraft/server/packs/resources/IoSupplier;)Lnet/minecraft/server/packs/resources/IoSupplier; net/minecraft/server/packs/resources/FallbackResourceManager/wrapForDebug (Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/server/packs/PackResources;Lnet/minecraft/server/packs/resources/IoSupplier;)Lnet/minecraft/server/packs/resources/IoSupplier; +MD: net/minecraft/server/packs/resources/FallbackResourceManager/m_7187_ ()Ljava/util/Set; net/minecraft/server/packs/resources/FallbackResourceManager/getNamespaces ()Ljava/util/Set; +MD: net/minecraft/server/packs/resources/FallbackResourceManager/m_7536_ ()Ljava/util/stream/Stream; net/minecraft/server/packs/resources/FallbackResourceManager/listPacks ()Ljava/util/stream/Stream; +MD: net/minecraft/server/packs/resources/FallbackResourceManager$1ResourceWithSourceAndIndex/ (Lnet/minecraft/server/packs/PackResources;Lnet/minecraft/server/packs/resources/IoSupplier;I)V net/minecraft/server/packs/resources/FallbackResourceManager$1ResourceWithSourceAndIndex/ (Lnet/minecraft/server/packs/PackResources;Lnet/minecraft/server/packs/resources/IoSupplier;I)V +MD: net/minecraft/server/packs/resources/FallbackResourceManager$1ResourceWithSourceAndIndex/equals (Ljava/lang/Object;)Z net/minecraft/server/packs/resources/FallbackResourceManager$1ResourceWithSourceAndIndex/equals (Ljava/lang/Object;)Z +MD: net/minecraft/server/packs/resources/FallbackResourceManager$1ResourceWithSourceAndIndex/f_243853_ ()Lnet/minecraft/server/packs/PackResources; net/minecraft/server/packs/resources/FallbackResourceManager$1ResourceWithSourceAndIndex/packResources ()Lnet/minecraft/server/packs/PackResources; +MD: net/minecraft/server/packs/resources/FallbackResourceManager$1ResourceWithSourceAndIndex/f_244005_ ()Lnet/minecraft/server/packs/resources/IoSupplier; net/minecraft/server/packs/resources/FallbackResourceManager$1ResourceWithSourceAndIndex/resource ()Lnet/minecraft/server/packs/resources/IoSupplier; +MD: net/minecraft/server/packs/resources/FallbackResourceManager$1ResourceWithSourceAndIndex/f_244110_ ()I net/minecraft/server/packs/resources/FallbackResourceManager$1ResourceWithSourceAndIndex/packIndex ()I +MD: net/minecraft/server/packs/resources/FallbackResourceManager$1ResourceWithSourceAndIndex/hashCode ()I net/minecraft/server/packs/resources/FallbackResourceManager$1ResourceWithSourceAndIndex/hashCode ()I +MD: net/minecraft/server/packs/resources/FallbackResourceManager$1ResourceWithSourceAndIndex/toString ()Ljava/lang/String; net/minecraft/server/packs/resources/FallbackResourceManager$1ResourceWithSourceAndIndex/toString ()Ljava/lang/String; +MD: net/minecraft/server/packs/resources/FallbackResourceManager$EntryStack/ (Lnet/minecraft/resources/ResourceLocation;)V net/minecraft/server/packs/resources/FallbackResourceManager$EntryStack/ (Lnet/minecraft/resources/ResourceLocation;)V +MD: net/minecraft/server/packs/resources/FallbackResourceManager$EntryStack/ (Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/resources/ResourceLocation;Ljava/util/List;Ljava/util/Map;)V net/minecraft/server/packs/resources/FallbackResourceManager$EntryStack/ (Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/resources/ResourceLocation;Ljava/util/List;Ljava/util/Map;)V +MD: net/minecraft/server/packs/resources/FallbackResourceManager$EntryStack/equals (Ljava/lang/Object;)Z net/minecraft/server/packs/resources/FallbackResourceManager$EntryStack/equals (Ljava/lang/Object;)Z +MD: net/minecraft/server/packs/resources/FallbackResourceManager$EntryStack/f_215420_ ()Lnet/minecraft/resources/ResourceLocation; net/minecraft/server/packs/resources/FallbackResourceManager$EntryStack/metadataLocation ()Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/server/packs/resources/FallbackResourceManager$EntryStack/f_243777_ ()Ljava/util/Map; net/minecraft/server/packs/resources/FallbackResourceManager$EntryStack/metaSources ()Ljava/util/Map; +MD: net/minecraft/server/packs/resources/FallbackResourceManager$EntryStack/f_244329_ ()Ljava/util/List; net/minecraft/server/packs/resources/FallbackResourceManager$EntryStack/fileSources ()Ljava/util/List; +MD: net/minecraft/server/packs/resources/FallbackResourceManager$EntryStack/f_244439_ ()Lnet/minecraft/resources/ResourceLocation; net/minecraft/server/packs/resources/FallbackResourceManager$EntryStack/fileLocation ()Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/server/packs/resources/FallbackResourceManager$EntryStack/hashCode ()I net/minecraft/server/packs/resources/FallbackResourceManager$EntryStack/hashCode ()I +MD: net/minecraft/server/packs/resources/FallbackResourceManager$EntryStack/toString ()Ljava/lang/String; net/minecraft/server/packs/resources/FallbackResourceManager$EntryStack/toString ()Ljava/lang/String; +MD: net/minecraft/server/packs/resources/FallbackResourceManager$LeakedResourceWarningInputStream/ (Ljava/io/InputStream;Lnet/minecraft/resources/ResourceLocation;Ljava/lang/String;)V net/minecraft/server/packs/resources/FallbackResourceManager$LeakedResourceWarningInputStream/ (Ljava/io/InputStream;Lnet/minecraft/resources/ResourceLocation;Ljava/lang/String;)V +MD: net/minecraft/server/packs/resources/FallbackResourceManager$LeakedResourceWarningInputStream/close ()V net/minecraft/server/packs/resources/FallbackResourceManager$LeakedResourceWarningInputStream/close ()V +MD: net/minecraft/server/packs/resources/FallbackResourceManager$LeakedResourceWarningInputStream/finalize ()V net/minecraft/server/packs/resources/FallbackResourceManager$LeakedResourceWarningInputStream/finalize ()V +MD: net/minecraft/server/packs/resources/FallbackResourceManager$LeakedResourceWarningInputStream/m_245902_ (Ljava/lang/Exception;Lnet/minecraft/resources/ResourceLocation;Ljava/lang/String;)Ljava/lang/String; net/minecraft/server/packs/resources/FallbackResourceManager$LeakedResourceWarningInputStream/lambda$new$0 (Ljava/lang/Exception;Lnet/minecraft/resources/ResourceLocation;Ljava/lang/String;)Ljava/lang/String; +MD: net/minecraft/server/packs/resources/FallbackResourceManager$PackEntry/ (Ljava/lang/String;Lnet/minecraft/server/packs/PackResources;Ljava/util/function/Predicate;)V net/minecraft/server/packs/resources/FallbackResourceManager$PackEntry/ (Ljava/lang/String;Lnet/minecraft/server/packs/PackResources;Ljava/util/function/Predicate;)V +MD: net/minecraft/server/packs/resources/FallbackResourceManager$PackEntry/equals (Ljava/lang/Object;)Z net/minecraft/server/packs/resources/FallbackResourceManager$PackEntry/equals (Ljava/lang/Object;)Z +MD: net/minecraft/server/packs/resources/FallbackResourceManager$PackEntry/f_215432_ ()Ljava/lang/String; net/minecraft/server/packs/resources/FallbackResourceManager$PackEntry/name ()Ljava/lang/String; +MD: net/minecraft/server/packs/resources/FallbackResourceManager$PackEntry/f_215433_ ()Lnet/minecraft/server/packs/PackResources; net/minecraft/server/packs/resources/FallbackResourceManager$PackEntry/resources ()Lnet/minecraft/server/packs/PackResources; +MD: net/minecraft/server/packs/resources/FallbackResourceManager$PackEntry/f_215434_ ()Ljava/util/function/Predicate; net/minecraft/server/packs/resources/FallbackResourceManager$PackEntry/filter ()Ljava/util/function/Predicate; +MD: net/minecraft/server/packs/resources/FallbackResourceManager$PackEntry/hashCode ()I net/minecraft/server/packs/resources/FallbackResourceManager$PackEntry/hashCode ()I +MD: net/minecraft/server/packs/resources/FallbackResourceManager$PackEntry/m_215440_ (Lnet/minecraft/resources/ResourceLocation;)Z net/minecraft/server/packs/resources/FallbackResourceManager$PackEntry/isFiltered (Lnet/minecraft/resources/ResourceLocation;)Z +MD: net/minecraft/server/packs/resources/FallbackResourceManager$PackEntry/m_215442_ (Ljava/util/Collection;)V net/minecraft/server/packs/resources/FallbackResourceManager$PackEntry/filterAll (Ljava/util/Collection;)V +MD: net/minecraft/server/packs/resources/FallbackResourceManager$PackEntry/toString ()Ljava/lang/String; net/minecraft/server/packs/resources/FallbackResourceManager$PackEntry/toString ()Ljava/lang/String; +MD: net/minecraft/server/packs/resources/FallbackResourceManager$ResourceWithSource/ (Lnet/minecraft/server/packs/PackResources;Lnet/minecraft/server/packs/resources/IoSupplier;)V net/minecraft/server/packs/resources/FallbackResourceManager$ResourceWithSource/ (Lnet/minecraft/server/packs/PackResources;Lnet/minecraft/server/packs/resources/IoSupplier;)V +MD: net/minecraft/server/packs/resources/FallbackResourceManager$ResourceWithSource/equals (Ljava/lang/Object;)Z net/minecraft/server/packs/resources/FallbackResourceManager$ResourceWithSource/equals (Ljava/lang/Object;)Z +MD: net/minecraft/server/packs/resources/FallbackResourceManager$ResourceWithSource/f_244214_ ()Lnet/minecraft/server/packs/PackResources; net/minecraft/server/packs/resources/FallbackResourceManager$ResourceWithSource/source ()Lnet/minecraft/server/packs/PackResources; +MD: net/minecraft/server/packs/resources/FallbackResourceManager$ResourceWithSource/f_244331_ ()Lnet/minecraft/server/packs/resources/IoSupplier; net/minecraft/server/packs/resources/FallbackResourceManager$ResourceWithSource/resource ()Lnet/minecraft/server/packs/resources/IoSupplier; +MD: net/minecraft/server/packs/resources/FallbackResourceManager$ResourceWithSource/hashCode ()I net/minecraft/server/packs/resources/FallbackResourceManager$ResourceWithSource/hashCode ()I +MD: net/minecraft/server/packs/resources/FallbackResourceManager$ResourceWithSource/toString ()Ljava/lang/String; net/minecraft/server/packs/resources/FallbackResourceManager$ResourceWithSource/toString ()Ljava/lang/String; +MD: net/minecraft/server/packs/resources/IoSupplier/m_246383_ (Ljava/nio/file/Path;)Ljava/io/InputStream; net/minecraft/server/packs/resources/IoSupplier/lambda$create$0 (Ljava/nio/file/Path;)Ljava/io/InputStream; +MD: net/minecraft/server/packs/resources/IoSupplier/m_246697_ (Ljava/nio/file/Path;)Lnet/minecraft/server/packs/resources/IoSupplier; net/minecraft/server/packs/resources/IoSupplier/create (Ljava/nio/file/Path;)Lnet/minecraft/server/packs/resources/IoSupplier; +MD: net/minecraft/server/packs/resources/IoSupplier/m_247178_ (Ljava/util/zip/ZipFile;Ljava/util/zip/ZipEntry;)Lnet/minecraft/server/packs/resources/IoSupplier; net/minecraft/server/packs/resources/IoSupplier/create (Ljava/util/zip/ZipFile;Ljava/util/zip/ZipEntry;)Lnet/minecraft/server/packs/resources/IoSupplier; +MD: net/minecraft/server/packs/resources/IoSupplier/m_247182_ (Ljava/util/zip/ZipFile;Ljava/util/zip/ZipEntry;)Ljava/io/InputStream; net/minecraft/server/packs/resources/IoSupplier/lambda$create$1 (Ljava/util/zip/ZipFile;Ljava/util/zip/ZipEntry;)Ljava/io/InputStream; +MD: net/minecraft/server/packs/resources/IoSupplier/m_247737_ ()Ljava/lang/Object; net/minecraft/server/packs/resources/IoSupplier/get ()Ljava/lang/Object; +MD: net/minecraft/server/packs/resources/MultiPackResourceManager/ ()V net/minecraft/server/packs/resources/MultiPackResourceManager/ ()V +MD: net/minecraft/server/packs/resources/MultiPackResourceManager/ (Lnet/minecraft/server/packs/PackType;Ljava/util/List;)V net/minecraft/server/packs/resources/MultiPackResourceManager/ (Lnet/minecraft/server/packs/PackType;Ljava/util/List;)V +MD: net/minecraft/server/packs/resources/MultiPackResourceManager/close ()V net/minecraft/server/packs/resources/MultiPackResourceManager/close ()V +MD: net/minecraft/server/packs/resources/MultiPackResourceManager/m_213713_ (Lnet/minecraft/resources/ResourceLocation;)Ljava/util/Optional; net/minecraft/server/packs/resources/MultiPackResourceManager/getResource (Lnet/minecraft/resources/ResourceLocation;)Ljava/util/Optional; +MD: net/minecraft/server/packs/resources/MultiPackResourceManager/m_213829_ (Lnet/minecraft/resources/ResourceLocation;)Ljava/util/List; net/minecraft/server/packs/resources/MultiPackResourceManager/getResourceStack (Lnet/minecraft/resources/ResourceLocation;)Ljava/util/List; +MD: net/minecraft/server/packs/resources/MultiPackResourceManager/m_214159_ (Ljava/lang/String;Ljava/util/function/Predicate;)Ljava/util/Map; net/minecraft/server/packs/resources/MultiPackResourceManager/listResources (Ljava/lang/String;Ljava/util/function/Predicate;)Ljava/util/Map; +MD: net/minecraft/server/packs/resources/MultiPackResourceManager/m_214160_ (Ljava/lang/String;Ljava/util/function/Predicate;)Ljava/util/Map; net/minecraft/server/packs/resources/MultiPackResourceManager/listResourceStacks (Ljava/lang/String;Ljava/util/function/Predicate;)Ljava/util/Map; +MD: net/minecraft/server/packs/resources/MultiPackResourceManager/m_215467_ (Lnet/minecraft/server/packs/PackResources;)Lnet/minecraft/server/packs/resources/ResourceFilterSection; net/minecraft/server/packs/resources/MultiPackResourceManager/getPackFilterSection (Lnet/minecraft/server/packs/PackResources;)Lnet/minecraft/server/packs/resources/ResourceFilterSection; +MD: net/minecraft/server/packs/resources/MultiPackResourceManager/m_215469_ (Lnet/minecraft/server/packs/PackType;Lnet/minecraft/server/packs/PackResources;)Ljava/util/stream/Stream; net/minecraft/server/packs/resources/MultiPackResourceManager/lambda$new$0 (Lnet/minecraft/server/packs/PackType;Lnet/minecraft/server/packs/PackResources;)Ljava/util/stream/Stream; +MD: net/minecraft/server/packs/resources/MultiPackResourceManager/m_215472_ (Lnet/minecraft/server/packs/resources/ResourceFilterSection;Lnet/minecraft/resources/ResourceLocation;)Z net/minecraft/server/packs/resources/MultiPackResourceManager/lambda$new$1 (Lnet/minecraft/server/packs/resources/ResourceFilterSection;Lnet/minecraft/resources/ResourceLocation;)Z +MD: net/minecraft/server/packs/resources/MultiPackResourceManager/m_247202_ (Ljava/lang/String;)V net/minecraft/server/packs/resources/MultiPackResourceManager/checkTrailingDirectoryPath (Ljava/lang/String;)V +MD: net/minecraft/server/packs/resources/MultiPackResourceManager/m_7187_ ()Ljava/util/Set; net/minecraft/server/packs/resources/MultiPackResourceManager/getNamespaces ()Ljava/util/Set; +MD: net/minecraft/server/packs/resources/MultiPackResourceManager/m_7536_ ()Ljava/util/stream/Stream; net/minecraft/server/packs/resources/MultiPackResourceManager/listPacks ()Ljava/util/stream/Stream; +MD: net/minecraft/server/packs/resources/PreparableReloadListener/m_5540_ (Lnet/minecraft/server/packs/resources/PreparableReloadListener$PreparationBarrier;Lnet/minecraft/server/packs/resources/ResourceManager;Lnet/minecraft/util/profiling/ProfilerFiller;Lnet/minecraft/util/profiling/ProfilerFiller;Ljava/util/concurrent/Executor;Ljava/util/concurrent/Executor;)Ljava/util/concurrent/CompletableFuture; net/minecraft/server/packs/resources/PreparableReloadListener/reload (Lnet/minecraft/server/packs/resources/PreparableReloadListener$PreparationBarrier;Lnet/minecraft/server/packs/resources/ResourceManager;Lnet/minecraft/util/profiling/ProfilerFiller;Lnet/minecraft/util/profiling/ProfilerFiller;Ljava/util/concurrent/Executor;Ljava/util/concurrent/Executor;)Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/server/packs/resources/PreparableReloadListener/m_7812_ ()Ljava/lang/String; net/minecraft/server/packs/resources/PreparableReloadListener/getName ()Ljava/lang/String; +MD: net/minecraft/server/packs/resources/PreparableReloadListener$PreparationBarrier/m_6769_ (Ljava/lang/Object;)Ljava/util/concurrent/CompletableFuture; net/minecraft/server/packs/resources/PreparableReloadListener$PreparationBarrier/wait (Ljava/lang/Object;)Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/server/packs/resources/ProfiledReloadInstance/ ()V net/minecraft/server/packs/resources/ProfiledReloadInstance/ ()V +MD: net/minecraft/server/packs/resources/ProfiledReloadInstance/ (Lnet/minecraft/server/packs/resources/ResourceManager;Ljava/util/List;Ljava/util/concurrent/Executor;Ljava/util/concurrent/Executor;Ljava/util/concurrent/CompletableFuture;)V net/minecraft/server/packs/resources/ProfiledReloadInstance/ (Lnet/minecraft/server/packs/resources/ResourceManager;Ljava/util/List;Ljava/util/concurrent/Executor;Ljava/util/concurrent/Executor;Ljava/util/concurrent/CompletableFuture;)V +MD: net/minecraft/server/packs/resources/ProfiledReloadInstance/m_10666_ (Ljava/util/concurrent/Executor;Lnet/minecraft/server/packs/resources/PreparableReloadListener$PreparationBarrier;Lnet/minecraft/server/packs/resources/ResourceManager;Lnet/minecraft/server/packs/resources/PreparableReloadListener;Ljava/util/concurrent/Executor;Ljava/util/concurrent/Executor;)Ljava/util/concurrent/CompletableFuture; net/minecraft/server/packs/resources/ProfiledReloadInstance/lambda$new$7 (Ljava/util/concurrent/Executor;Lnet/minecraft/server/packs/resources/PreparableReloadListener$PreparationBarrier;Lnet/minecraft/server/packs/resources/ResourceManager;Lnet/minecraft/server/packs/resources/PreparableReloadListener;Ljava/util/concurrent/Executor;Ljava/util/concurrent/Executor;)Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/server/packs/resources/ProfiledReloadInstance/m_143907_ (Lnet/minecraft/server/packs/resources/PreparableReloadListener;Lnet/minecraft/util/profiling/ActiveProfiler;Lnet/minecraft/util/profiling/ActiveProfiler;Ljava/util/concurrent/atomic/AtomicLong;Ljava/util/concurrent/atomic/AtomicLong;Ljava/lang/Void;)Lnet/minecraft/server/packs/resources/ProfiledReloadInstance$State; net/minecraft/server/packs/resources/ProfiledReloadInstance/lambda$new$6 (Lnet/minecraft/server/packs/resources/PreparableReloadListener;Lnet/minecraft/util/profiling/ActiveProfiler;Lnet/minecraft/util/profiling/ActiveProfiler;Ljava/util/concurrent/atomic/AtomicLong;Ljava/util/concurrent/atomic/AtomicLong;Ljava/lang/Void;)Lnet/minecraft/server/packs/resources/ProfiledReloadInstance$State; +MD: net/minecraft/server/packs/resources/ProfiledReloadInstance/m_143914_ (Ljava/lang/Runnable;Ljava/util/concurrent/atomic/AtomicLong;)V net/minecraft/server/packs/resources/ProfiledReloadInstance/lambda$new$4 (Ljava/lang/Runnable;Ljava/util/concurrent/atomic/AtomicLong;)V +MD: net/minecraft/server/packs/resources/ProfiledReloadInstance/m_143917_ (Ljava/util/concurrent/Executor;Ljava/util/concurrent/atomic/AtomicLong;Ljava/lang/Runnable;)V net/minecraft/server/packs/resources/ProfiledReloadInstance/lambda$new$5 (Ljava/util/concurrent/Executor;Ljava/util/concurrent/atomic/AtomicLong;Ljava/lang/Runnable;)V +MD: net/minecraft/server/packs/resources/ProfiledReloadInstance/m_143921_ (Ljava/lang/Runnable;Ljava/util/concurrent/atomic/AtomicLong;)V net/minecraft/server/packs/resources/ProfiledReloadInstance/lambda$new$2 (Ljava/lang/Runnable;Ljava/util/concurrent/atomic/AtomicLong;)V +MD: net/minecraft/server/packs/resources/ProfiledReloadInstance/m_143924_ (Ljava/util/concurrent/Executor;Ljava/util/concurrent/atomic/AtomicLong;Ljava/lang/Runnable;)V net/minecraft/server/packs/resources/ProfiledReloadInstance/lambda$new$3 (Ljava/util/concurrent/Executor;Ljava/util/concurrent/atomic/AtomicLong;Ljava/lang/Runnable;)V +MD: net/minecraft/server/packs/resources/ProfiledReloadInstance/m_143928_ ()I net/minecraft/server/packs/resources/ProfiledReloadInstance/lambda$new$1 ()I +MD: net/minecraft/server/packs/resources/ProfiledReloadInstance/m_143929_ ()I net/minecraft/server/packs/resources/ProfiledReloadInstance/lambda$new$0 ()I +MD: net/minecraft/server/packs/resources/ProfiledReloadInstance/m_215483_ (Ljava/util/List;)Ljava/util/List; net/minecraft/server/packs/resources/ProfiledReloadInstance/finish (Ljava/util/List;)Ljava/util/List; +MD: net/minecraft/server/packs/resources/ProfiledReloadInstance$State/ (Ljava/lang/String;Lnet/minecraft/util/profiling/ProfileResults;Lnet/minecraft/util/profiling/ProfileResults;Ljava/util/concurrent/atomic/AtomicLong;Ljava/util/concurrent/atomic/AtomicLong;)V net/minecraft/server/packs/resources/ProfiledReloadInstance$State/ (Ljava/lang/String;Lnet/minecraft/util/profiling/ProfileResults;Lnet/minecraft/util/profiling/ProfileResults;Ljava/util/concurrent/atomic/AtomicLong;Ljava/util/concurrent/atomic/AtomicLong;)V +MD: net/minecraft/server/packs/resources/ReloadInstance/m_7237_ ()Ljava/util/concurrent/CompletableFuture; net/minecraft/server/packs/resources/ReloadInstance/done ()Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/server/packs/resources/ReloadInstance/m_7746_ ()Z net/minecraft/server/packs/resources/ReloadInstance/isDone ()Z +MD: net/minecraft/server/packs/resources/ReloadInstance/m_7748_ ()V net/minecraft/server/packs/resources/ReloadInstance/checkExceptions ()V +MD: net/minecraft/server/packs/resources/ReloadInstance/m_7750_ ()F net/minecraft/server/packs/resources/ReloadInstance/getActualProgress ()F +MD: net/minecraft/server/packs/resources/ReloadableResourceManager/ ()V net/minecraft/server/packs/resources/ReloadableResourceManager/ ()V +MD: net/minecraft/server/packs/resources/ReloadableResourceManager/ (Lnet/minecraft/server/packs/PackType;)V net/minecraft/server/packs/resources/ReloadableResourceManager/ (Lnet/minecraft/server/packs/PackType;)V +MD: net/minecraft/server/packs/resources/ReloadableResourceManager/close ()V net/minecraft/server/packs/resources/ReloadableResourceManager/close ()V +MD: net/minecraft/server/packs/resources/ReloadableResourceManager/m_142463_ (Ljava/util/concurrent/Executor;Ljava/util/concurrent/Executor;Ljava/util/concurrent/CompletableFuture;Ljava/util/List;)Lnet/minecraft/server/packs/resources/ReloadInstance; net/minecraft/server/packs/resources/ReloadableResourceManager/createReload (Ljava/util/concurrent/Executor;Ljava/util/concurrent/Executor;Ljava/util/concurrent/CompletableFuture;Ljava/util/List;)Lnet/minecraft/server/packs/resources/ReloadInstance; +MD: net/minecraft/server/packs/resources/ReloadableResourceManager/m_203825_ (Ljava/util/List;)Ljava/lang/Object; net/minecraft/server/packs/resources/ReloadableResourceManager/lambda$createReload$0 (Ljava/util/List;)Ljava/lang/Object; +MD: net/minecraft/server/packs/resources/ReloadableResourceManager/m_213713_ (Lnet/minecraft/resources/ResourceLocation;)Ljava/util/Optional; net/minecraft/server/packs/resources/ReloadableResourceManager/getResource (Lnet/minecraft/resources/ResourceLocation;)Ljava/util/Optional; +MD: net/minecraft/server/packs/resources/ReloadableResourceManager/m_213829_ (Lnet/minecraft/resources/ResourceLocation;)Ljava/util/List; net/minecraft/server/packs/resources/ReloadableResourceManager/getResourceStack (Lnet/minecraft/resources/ResourceLocation;)Ljava/util/List; +MD: net/minecraft/server/packs/resources/ReloadableResourceManager/m_214159_ (Ljava/lang/String;Ljava/util/function/Predicate;)Ljava/util/Map; net/minecraft/server/packs/resources/ReloadableResourceManager/listResources (Ljava/lang/String;Ljava/util/function/Predicate;)Ljava/util/Map; +MD: net/minecraft/server/packs/resources/ReloadableResourceManager/m_214160_ (Ljava/lang/String;Ljava/util/function/Predicate;)Ljava/util/Map; net/minecraft/server/packs/resources/ReloadableResourceManager/listResourceStacks (Ljava/lang/String;Ljava/util/function/Predicate;)Ljava/util/Map; +MD: net/minecraft/server/packs/resources/ReloadableResourceManager/m_7187_ ()Ljava/util/Set; net/minecraft/server/packs/resources/ReloadableResourceManager/getNamespaces ()Ljava/util/Set; +MD: net/minecraft/server/packs/resources/ReloadableResourceManager/m_7217_ (Lnet/minecraft/server/packs/resources/PreparableReloadListener;)V net/minecraft/server/packs/resources/ReloadableResourceManager/registerReloadListener (Lnet/minecraft/server/packs/resources/PreparableReloadListener;)V +MD: net/minecraft/server/packs/resources/ReloadableResourceManager/m_7536_ ()Ljava/util/stream/Stream; net/minecraft/server/packs/resources/ReloadableResourceManager/listPacks ()Ljava/util/stream/Stream; +MD: net/minecraft/server/packs/resources/Resource/ (Lnet/minecraft/server/packs/PackResources;Lnet/minecraft/server/packs/resources/IoSupplier;Lnet/minecraft/server/packs/resources/IoSupplier;)V net/minecraft/server/packs/resources/Resource/ (Lnet/minecraft/server/packs/PackResources;Lnet/minecraft/server/packs/resources/IoSupplier;Lnet/minecraft/server/packs/resources/IoSupplier;)V +MD: net/minecraft/server/packs/resources/Resource/ (Lnet/minecraft/server/packs/PackResources;Lnet/minecraft/server/packs/resources/IoSupplier;)V net/minecraft/server/packs/resources/Resource/ (Lnet/minecraft/server/packs/PackResources;Lnet/minecraft/server/packs/resources/IoSupplier;)V +MD: net/minecraft/server/packs/resources/Resource/m_215506_ ()Ljava/lang/String; net/minecraft/server/packs/resources/Resource/sourcePackId ()Ljava/lang/String; +MD: net/minecraft/server/packs/resources/Resource/m_215507_ ()Ljava/io/InputStream; net/minecraft/server/packs/resources/Resource/open ()Ljava/io/InputStream; +MD: net/minecraft/server/packs/resources/Resource/m_215508_ ()Ljava/io/BufferedReader; net/minecraft/server/packs/resources/Resource/openAsReader ()Ljava/io/BufferedReader; +MD: net/minecraft/server/packs/resources/Resource/m_215509_ ()Lnet/minecraft/server/packs/resources/ResourceMetadata; net/minecraft/server/packs/resources/Resource/metadata ()Lnet/minecraft/server/packs/resources/ResourceMetadata; +MD: net/minecraft/server/packs/resources/Resource/m_247137_ ()Z net/minecraft/server/packs/resources/Resource/isBuiltin ()Z +MD: net/minecraft/server/packs/resources/Resource/m_247173_ ()Lnet/minecraft/server/packs/PackResources; net/minecraft/server/packs/resources/Resource/source ()Lnet/minecraft/server/packs/PackResources; +MD: net/minecraft/server/packs/resources/ResourceFilterSection/ ()V net/minecraft/server/packs/resources/ResourceFilterSection/ ()V +MD: net/minecraft/server/packs/resources/ResourceFilterSection/ (Ljava/util/List;)V net/minecraft/server/packs/resources/ResourceFilterSection/ (Ljava/util/List;)V +MD: net/minecraft/server/packs/resources/ResourceFilterSection/m_215519_ (Lnet/minecraft/server/packs/resources/ResourceFilterSection;)Ljava/util/List; net/minecraft/server/packs/resources/ResourceFilterSection/lambda$static$0 (Lnet/minecraft/server/packs/resources/ResourceFilterSection;)Ljava/util/List; +MD: net/minecraft/server/packs/resources/ResourceFilterSection/m_215523_ (Ljava/lang/String;)Z net/minecraft/server/packs/resources/ResourceFilterSection/isNamespaceFiltered (Ljava/lang/String;)Z +MD: net/minecraft/server/packs/resources/ResourceFilterSection/m_215528_ (Ljava/lang/String;)Z net/minecraft/server/packs/resources/ResourceFilterSection/isPathFiltered (Ljava/lang/String;)Z +MD: net/minecraft/server/packs/resources/ResourceFilterSection/m_260781_ (Ljava/lang/String;Lnet/minecraft/util/ResourceLocationPattern;)Z net/minecraft/server/packs/resources/ResourceFilterSection/lambda$isPathFiltered$3 (Ljava/lang/String;Lnet/minecraft/util/ResourceLocationPattern;)Z +MD: net/minecraft/server/packs/resources/ResourceFilterSection/m_260782_ (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/server/packs/resources/ResourceFilterSection/lambda$static$1 (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/server/packs/resources/ResourceFilterSection/m_260783_ (Ljava/lang/String;Lnet/minecraft/util/ResourceLocationPattern;)Z net/minecraft/server/packs/resources/ResourceFilterSection/lambda$isNamespaceFiltered$2 (Ljava/lang/String;Lnet/minecraft/util/ResourceLocationPattern;)Z +MD: net/minecraft/server/packs/resources/ResourceManager/m_213829_ (Lnet/minecraft/resources/ResourceLocation;)Ljava/util/List; net/minecraft/server/packs/resources/ResourceManager/getResourceStack (Lnet/minecraft/resources/ResourceLocation;)Ljava/util/List; +MD: net/minecraft/server/packs/resources/ResourceManager/m_214159_ (Ljava/lang/String;Ljava/util/function/Predicate;)Ljava/util/Map; net/minecraft/server/packs/resources/ResourceManager/listResources (Ljava/lang/String;Ljava/util/function/Predicate;)Ljava/util/Map; +MD: net/minecraft/server/packs/resources/ResourceManager/m_214160_ (Ljava/lang/String;Ljava/util/function/Predicate;)Ljava/util/Map; net/minecraft/server/packs/resources/ResourceManager/listResourceStacks (Ljava/lang/String;Ljava/util/function/Predicate;)Ljava/util/Map; +MD: net/minecraft/server/packs/resources/ResourceManager/m_7187_ ()Ljava/util/Set; net/minecraft/server/packs/resources/ResourceManager/getNamespaces ()Ljava/util/Set; +MD: net/minecraft/server/packs/resources/ResourceManager/m_7536_ ()Ljava/util/stream/Stream; net/minecraft/server/packs/resources/ResourceManager/listPacks ()Ljava/util/stream/Stream; +MD: net/minecraft/server/packs/resources/ResourceManager$Empty/ ()V net/minecraft/server/packs/resources/ResourceManager$Empty/ ()V +MD: net/minecraft/server/packs/resources/ResourceManager$Empty/ (Ljava/lang/String;I)V net/minecraft/server/packs/resources/ResourceManager$Empty/ (Ljava/lang/String;I)V +MD: net/minecraft/server/packs/resources/ResourceManager$Empty/m_143934_ ()[Lnet/minecraft/server/packs/resources/ResourceManager$Empty; net/minecraft/server/packs/resources/ResourceManager$Empty/$values ()[Lnet/minecraft/server/packs/resources/ResourceManager$Empty; +MD: net/minecraft/server/packs/resources/ResourceManager$Empty/m_213713_ (Lnet/minecraft/resources/ResourceLocation;)Ljava/util/Optional; net/minecraft/server/packs/resources/ResourceManager$Empty/getResource (Lnet/minecraft/resources/ResourceLocation;)Ljava/util/Optional; +MD: net/minecraft/server/packs/resources/ResourceManager$Empty/m_213829_ (Lnet/minecraft/resources/ResourceLocation;)Ljava/util/List; net/minecraft/server/packs/resources/ResourceManager$Empty/getResourceStack (Lnet/minecraft/resources/ResourceLocation;)Ljava/util/List; +MD: net/minecraft/server/packs/resources/ResourceManager$Empty/m_214159_ (Ljava/lang/String;Ljava/util/function/Predicate;)Ljava/util/Map; net/minecraft/server/packs/resources/ResourceManager$Empty/listResources (Ljava/lang/String;Ljava/util/function/Predicate;)Ljava/util/Map; +MD: net/minecraft/server/packs/resources/ResourceManager$Empty/m_214160_ (Ljava/lang/String;Ljava/util/function/Predicate;)Ljava/util/Map; net/minecraft/server/packs/resources/ResourceManager$Empty/listResourceStacks (Ljava/lang/String;Ljava/util/function/Predicate;)Ljava/util/Map; +MD: net/minecraft/server/packs/resources/ResourceManager$Empty/m_7187_ ()Ljava/util/Set; net/minecraft/server/packs/resources/ResourceManager$Empty/getNamespaces ()Ljava/util/Set; +MD: net/minecraft/server/packs/resources/ResourceManager$Empty/m_7536_ ()Ljava/util/stream/Stream; net/minecraft/server/packs/resources/ResourceManager$Empty/listPacks ()Ljava/util/stream/Stream; +MD: net/minecraft/server/packs/resources/ResourceManager$Empty/valueOf (Ljava/lang/String;)Lnet/minecraft/server/packs/resources/ResourceManager$Empty; net/minecraft/server/packs/resources/ResourceManager$Empty/valueOf (Ljava/lang/String;)Lnet/minecraft/server/packs/resources/ResourceManager$Empty; +MD: net/minecraft/server/packs/resources/ResourceManager$Empty/values ()[Lnet/minecraft/server/packs/resources/ResourceManager$Empty; net/minecraft/server/packs/resources/ResourceManager$Empty/values ()[Lnet/minecraft/server/packs/resources/ResourceManager$Empty; +MD: net/minecraft/server/packs/resources/ResourceManagerReloadListener/m_10759_ (Lnet/minecraft/util/profiling/ProfilerFiller;Lnet/minecraft/server/packs/resources/ResourceManager;)V net/minecraft/server/packs/resources/ResourceManagerReloadListener/lambda$reload$0 (Lnet/minecraft/util/profiling/ProfilerFiller;Lnet/minecraft/server/packs/resources/ResourceManager;)V +MD: net/minecraft/server/packs/resources/ResourceManagerReloadListener/m_5540_ (Lnet/minecraft/server/packs/resources/PreparableReloadListener$PreparationBarrier;Lnet/minecraft/server/packs/resources/ResourceManager;Lnet/minecraft/util/profiling/ProfilerFiller;Lnet/minecraft/util/profiling/ProfilerFiller;Ljava/util/concurrent/Executor;Ljava/util/concurrent/Executor;)Ljava/util/concurrent/CompletableFuture; net/minecraft/server/packs/resources/ResourceManagerReloadListener/reload (Lnet/minecraft/server/packs/resources/PreparableReloadListener$PreparationBarrier;Lnet/minecraft/server/packs/resources/ResourceManager;Lnet/minecraft/util/profiling/ProfilerFiller;Lnet/minecraft/util/profiling/ProfilerFiller;Ljava/util/concurrent/Executor;Ljava/util/concurrent/Executor;)Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/server/packs/resources/ResourceManagerReloadListener/m_6213_ (Lnet/minecraft/server/packs/resources/ResourceManager;)V net/minecraft/server/packs/resources/ResourceManagerReloadListener/onResourceManagerReload (Lnet/minecraft/server/packs/resources/ResourceManager;)V +MD: net/minecraft/server/packs/resources/ResourceMetadata/ ()V net/minecraft/server/packs/resources/ResourceMetadata/ ()V +MD: net/minecraft/server/packs/resources/ResourceMetadata/m_214059_ (Lnet/minecraft/server/packs/metadata/MetadataSectionSerializer;)Ljava/util/Optional; net/minecraft/server/packs/resources/ResourceMetadata/getSection (Lnet/minecraft/server/packs/metadata/MetadataSectionSerializer;)Ljava/util/Optional; +MD: net/minecraft/server/packs/resources/ResourceMetadata/m_215580_ (Ljava/io/InputStream;)Lnet/minecraft/server/packs/resources/ResourceMetadata; net/minecraft/server/packs/resources/ResourceMetadata/fromJsonStream (Ljava/io/InputStream;)Lnet/minecraft/server/packs/resources/ResourceMetadata; +MD: net/minecraft/server/packs/resources/ResourceMetadata/m_247596_ ()Lnet/minecraft/server/packs/resources/ResourceMetadata; net/minecraft/server/packs/resources/ResourceMetadata/lambda$static$0 ()Lnet/minecraft/server/packs/resources/ResourceMetadata; +MD: net/minecraft/server/packs/resources/ResourceMetadata$1/ ()V net/minecraft/server/packs/resources/ResourceMetadata$1/ ()V +MD: net/minecraft/server/packs/resources/ResourceMetadata$1/m_214059_ (Lnet/minecraft/server/packs/metadata/MetadataSectionSerializer;)Ljava/util/Optional; net/minecraft/server/packs/resources/ResourceMetadata$1/getSection (Lnet/minecraft/server/packs/metadata/MetadataSectionSerializer;)Ljava/util/Optional; +MD: net/minecraft/server/packs/resources/ResourceMetadata$2/ (Lcom/google/gson/JsonObject;)V net/minecraft/server/packs/resources/ResourceMetadata$2/ (Lcom/google/gson/JsonObject;)V +MD: net/minecraft/server/packs/resources/ResourceMetadata$2/m_214059_ (Lnet/minecraft/server/packs/metadata/MetadataSectionSerializer;)Ljava/util/Optional; net/minecraft/server/packs/resources/ResourceMetadata$2/getSection (Lnet/minecraft/server/packs/metadata/MetadataSectionSerializer;)Ljava/util/Optional; +MD: net/minecraft/server/packs/resources/ResourceProvider/m_213713_ (Lnet/minecraft/resources/ResourceLocation;)Ljava/util/Optional; net/minecraft/server/packs/resources/ResourceProvider/getResource (Lnet/minecraft/resources/ResourceLocation;)Ljava/util/Optional; +MD: net/minecraft/server/packs/resources/ResourceProvider/m_215590_ (Lnet/minecraft/resources/ResourceLocation;)Ljava/io/FileNotFoundException; net/minecraft/server/packs/resources/ResourceProvider/lambda$getResourceOrThrow$0 (Lnet/minecraft/resources/ResourceLocation;)Ljava/io/FileNotFoundException; +MD: net/minecraft/server/packs/resources/ResourceProvider/m_215593_ (Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/server/packs/resources/Resource; net/minecraft/server/packs/resources/ResourceProvider/getResourceOrThrow (Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/server/packs/resources/Resource; +MD: net/minecraft/server/packs/resources/ResourceProvider/m_215595_ (Lnet/minecraft/resources/ResourceLocation;)Ljava/io/InputStream; net/minecraft/server/packs/resources/ResourceProvider/open (Lnet/minecraft/resources/ResourceLocation;)Ljava/io/InputStream; +MD: net/minecraft/server/packs/resources/ResourceProvider/m_215597_ (Lnet/minecraft/resources/ResourceLocation;)Ljava/io/BufferedReader; net/minecraft/server/packs/resources/ResourceProvider/openAsReader (Lnet/minecraft/resources/ResourceLocation;)Ljava/io/BufferedReader; +MD: net/minecraft/server/packs/resources/ResourceProvider/m_244907_ (Ljava/util/Map;Lnet/minecraft/resources/ResourceLocation;)Ljava/util/Optional; net/minecraft/server/packs/resources/ResourceProvider/lambda$fromMap$1 (Ljava/util/Map;Lnet/minecraft/resources/ResourceLocation;)Ljava/util/Optional; +MD: net/minecraft/server/packs/resources/ResourceProvider/m_247621_ (Ljava/util/Map;)Lnet/minecraft/server/packs/resources/ResourceProvider; net/minecraft/server/packs/resources/ResourceProvider/fromMap (Ljava/util/Map;)Lnet/minecraft/server/packs/resources/ResourceProvider; +MD: net/minecraft/server/packs/resources/SimpleJsonResourceReloadListener/ ()V net/minecraft/server/packs/resources/SimpleJsonResourceReloadListener/ ()V +MD: net/minecraft/server/packs/resources/SimpleJsonResourceReloadListener/ (Lcom/google/gson/Gson;Ljava/lang/String;)V net/minecraft/server/packs/resources/SimpleJsonResourceReloadListener/ (Lcom/google/gson/Gson;Ljava/lang/String;)V +MD: net/minecraft/server/packs/resources/SimpleJsonResourceReloadListener/m_278771_ (Lnet/minecraft/server/packs/resources/ResourceManager;Ljava/lang/String;Lcom/google/gson/Gson;Ljava/util/Map;)V net/minecraft/server/packs/resources/SimpleJsonResourceReloadListener/scanDirectory (Lnet/minecraft/server/packs/resources/ResourceManager;Ljava/lang/String;Lcom/google/gson/Gson;Ljava/util/Map;)V +MD: net/minecraft/server/packs/resources/SimpleJsonResourceReloadListener/m_5944_ (Lnet/minecraft/server/packs/resources/ResourceManager;Lnet/minecraft/util/profiling/ProfilerFiller;)Ljava/util/Map; net/minecraft/server/packs/resources/SimpleJsonResourceReloadListener/prepare (Lnet/minecraft/server/packs/resources/ResourceManager;Lnet/minecraft/util/profiling/ProfilerFiller;)Ljava/util/Map; +MD: net/minecraft/server/packs/resources/SimpleJsonResourceReloadListener/m_5944_ (Lnet/minecraft/server/packs/resources/ResourceManager;Lnet/minecraft/util/profiling/ProfilerFiller;)Ljava/lang/Object; net/minecraft/server/packs/resources/SimpleJsonResourceReloadListener/prepare (Lnet/minecraft/server/packs/resources/ResourceManager;Lnet/minecraft/util/profiling/ProfilerFiller;)Ljava/lang/Object; +MD: net/minecraft/server/packs/resources/SimplePreparableReloadListener/ ()V net/minecraft/server/packs/resources/SimplePreparableReloadListener/ ()V +MD: net/minecraft/server/packs/resources/SimplePreparableReloadListener/m_10786_ (Lnet/minecraft/server/packs/resources/ResourceManager;Lnet/minecraft/util/profiling/ProfilerFiller;)Ljava/lang/Object; net/minecraft/server/packs/resources/SimplePreparableReloadListener/lambda$reload$0 (Lnet/minecraft/server/packs/resources/ResourceManager;Lnet/minecraft/util/profiling/ProfilerFiller;)Ljava/lang/Object; +MD: net/minecraft/server/packs/resources/SimplePreparableReloadListener/m_10789_ (Lnet/minecraft/server/packs/resources/ResourceManager;Lnet/minecraft/util/profiling/ProfilerFiller;Ljava/lang/Object;)V net/minecraft/server/packs/resources/SimplePreparableReloadListener/lambda$reload$1 (Lnet/minecraft/server/packs/resources/ResourceManager;Lnet/minecraft/util/profiling/ProfilerFiller;Ljava/lang/Object;)V +MD: net/minecraft/server/packs/resources/SimplePreparableReloadListener/m_5540_ (Lnet/minecraft/server/packs/resources/PreparableReloadListener$PreparationBarrier;Lnet/minecraft/server/packs/resources/ResourceManager;Lnet/minecraft/util/profiling/ProfilerFiller;Lnet/minecraft/util/profiling/ProfilerFiller;Ljava/util/concurrent/Executor;Ljava/util/concurrent/Executor;)Ljava/util/concurrent/CompletableFuture; net/minecraft/server/packs/resources/SimplePreparableReloadListener/reload (Lnet/minecraft/server/packs/resources/PreparableReloadListener$PreparationBarrier;Lnet/minecraft/server/packs/resources/ResourceManager;Lnet/minecraft/util/profiling/ProfilerFiller;Lnet/minecraft/util/profiling/ProfilerFiller;Ljava/util/concurrent/Executor;Ljava/util/concurrent/Executor;)Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/server/packs/resources/SimplePreparableReloadListener/m_5787_ (Ljava/lang/Object;Lnet/minecraft/server/packs/resources/ResourceManager;Lnet/minecraft/util/profiling/ProfilerFiller;)V net/minecraft/server/packs/resources/SimplePreparableReloadListener/apply (Ljava/lang/Object;Lnet/minecraft/server/packs/resources/ResourceManager;Lnet/minecraft/util/profiling/ProfilerFiller;)V +MD: net/minecraft/server/packs/resources/SimplePreparableReloadListener/m_5944_ (Lnet/minecraft/server/packs/resources/ResourceManager;Lnet/minecraft/util/profiling/ProfilerFiller;)Ljava/lang/Object; net/minecraft/server/packs/resources/SimplePreparableReloadListener/prepare (Lnet/minecraft/server/packs/resources/ResourceManager;Lnet/minecraft/util/profiling/ProfilerFiller;)Ljava/lang/Object; +MD: net/minecraft/server/packs/resources/SimpleReloadInstance/ (Ljava/util/concurrent/Executor;Ljava/util/concurrent/Executor;Lnet/minecraft/server/packs/resources/ResourceManager;Ljava/util/List;Lnet/minecraft/server/packs/resources/SimpleReloadInstance$StateFactory;Ljava/util/concurrent/CompletableFuture;)V net/minecraft/server/packs/resources/SimpleReloadInstance/ (Ljava/util/concurrent/Executor;Ljava/util/concurrent/Executor;Lnet/minecraft/server/packs/resources/ResourceManager;Ljava/util/List;Lnet/minecraft/server/packs/resources/SimpleReloadInstance$StateFactory;Ljava/util/concurrent/CompletableFuture;)V +MD: net/minecraft/server/packs/resources/SimpleReloadInstance/m_10815_ (Lnet/minecraft/server/packs/resources/ResourceManager;Ljava/util/List;Ljava/util/concurrent/Executor;Ljava/util/concurrent/Executor;Ljava/util/concurrent/CompletableFuture;)Lnet/minecraft/server/packs/resources/SimpleReloadInstance; net/minecraft/server/packs/resources/SimpleReloadInstance/of (Lnet/minecraft/server/packs/resources/ResourceManager;Ljava/util/List;Ljava/util/concurrent/Executor;Ljava/util/concurrent/Executor;Ljava/util/concurrent/CompletableFuture;)Lnet/minecraft/server/packs/resources/SimpleReloadInstance; +MD: net/minecraft/server/packs/resources/SimpleReloadInstance/m_10827_ (Ljava/util/concurrent/Executor;Lnet/minecraft/server/packs/resources/PreparableReloadListener$PreparationBarrier;Lnet/minecraft/server/packs/resources/ResourceManager;Lnet/minecraft/server/packs/resources/PreparableReloadListener;Ljava/util/concurrent/Executor;Ljava/util/concurrent/Executor;)Ljava/util/concurrent/CompletableFuture; net/minecraft/server/packs/resources/SimpleReloadInstance/lambda$of$0 (Ljava/util/concurrent/Executor;Lnet/minecraft/server/packs/resources/PreparableReloadListener$PreparationBarrier;Lnet/minecraft/server/packs/resources/ResourceManager;Lnet/minecraft/server/packs/resources/PreparableReloadListener;Ljava/util/concurrent/Executor;Ljava/util/concurrent/Executor;)Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/server/packs/resources/SimpleReloadInstance/m_10834_ (Ljava/util/concurrent/Executor;Ljava/lang/Runnable;)V net/minecraft/server/packs/resources/SimpleReloadInstance/lambda$new$4 (Ljava/util/concurrent/Executor;Ljava/lang/Runnable;)V +MD: net/minecraft/server/packs/resources/SimpleReloadInstance/m_10840_ (Ljava/util/concurrent/Executor;Ljava/lang/Runnable;)V net/minecraft/server/packs/resources/SimpleReloadInstance/lambda$new$2 (Ljava/util/concurrent/Executor;Ljava/lang/Runnable;)V +MD: net/minecraft/server/packs/resources/SimpleReloadInstance/m_143940_ (Ljava/lang/Runnable;)V net/minecraft/server/packs/resources/SimpleReloadInstance/lambda$new$3 (Ljava/lang/Runnable;)V +MD: net/minecraft/server/packs/resources/SimpleReloadInstance/m_143942_ (Ljava/lang/Runnable;)V net/minecraft/server/packs/resources/SimpleReloadInstance/lambda$new$1 (Ljava/lang/Runnable;)V +MD: net/minecraft/server/packs/resources/SimpleReloadInstance/m_203834_ (Lnet/minecraft/server/packs/resources/ResourceManager;Ljava/util/List;Ljava/util/concurrent/Executor;Ljava/util/concurrent/Executor;Ljava/util/concurrent/CompletableFuture;Z)Lnet/minecraft/server/packs/resources/ReloadInstance; net/minecraft/server/packs/resources/SimpleReloadInstance/create (Lnet/minecraft/server/packs/resources/ResourceManager;Ljava/util/List;Ljava/util/concurrent/Executor;Ljava/util/concurrent/Executor;Ljava/util/concurrent/CompletableFuture;Z)Lnet/minecraft/server/packs/resources/ReloadInstance; +MD: net/minecraft/server/packs/resources/SimpleReloadInstance/m_7237_ ()Ljava/util/concurrent/CompletableFuture; net/minecraft/server/packs/resources/SimpleReloadInstance/done ()Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/server/packs/resources/SimpleReloadInstance/m_7750_ ()F net/minecraft/server/packs/resources/SimpleReloadInstance/getActualProgress ()F +MD: net/minecraft/server/packs/resources/SimpleReloadInstance$1/ (Lnet/minecraft/server/packs/resources/SimpleReloadInstance;Ljava/util/concurrent/Executor;Lnet/minecraft/server/packs/resources/PreparableReloadListener;Ljava/util/concurrent/CompletableFuture;)V net/minecraft/server/packs/resources/SimpleReloadInstance$1/ (Lnet/minecraft/server/packs/resources/SimpleReloadInstance;Ljava/util/concurrent/Executor;Lnet/minecraft/server/packs/resources/PreparableReloadListener;Ljava/util/concurrent/CompletableFuture;)V +MD: net/minecraft/server/packs/resources/SimpleReloadInstance$1/m_10855_ (Lnet/minecraft/server/packs/resources/PreparableReloadListener;)V net/minecraft/server/packs/resources/SimpleReloadInstance$1/lambda$wait$0 (Lnet/minecraft/server/packs/resources/PreparableReloadListener;)V +MD: net/minecraft/server/packs/resources/SimpleReloadInstance$1/m_10859_ (Ljava/lang/Object;Lnet/minecraft/util/Unit;Ljava/lang/Object;)Ljava/lang/Object; net/minecraft/server/packs/resources/SimpleReloadInstance$1/lambda$wait$1 (Ljava/lang/Object;Lnet/minecraft/util/Unit;Ljava/lang/Object;)Ljava/lang/Object; +MD: net/minecraft/server/packs/resources/SimpleReloadInstance$1/m_6769_ (Ljava/lang/Object;)Ljava/util/concurrent/CompletableFuture; net/minecraft/server/packs/resources/SimpleReloadInstance$1/wait (Ljava/lang/Object;)Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/server/packs/resources/SimpleReloadInstance$StateFactory/m_10863_ (Lnet/minecraft/server/packs/resources/PreparableReloadListener$PreparationBarrier;Lnet/minecraft/server/packs/resources/ResourceManager;Lnet/minecraft/server/packs/resources/PreparableReloadListener;Ljava/util/concurrent/Executor;Ljava/util/concurrent/Executor;)Ljava/util/concurrent/CompletableFuture; net/minecraft/server/packs/resources/SimpleReloadInstance$StateFactory/create (Lnet/minecraft/server/packs/resources/PreparableReloadListener$PreparationBarrier;Lnet/minecraft/server/packs/resources/ResourceManager;Lnet/minecraft/server/packs/resources/PreparableReloadListener;Ljava/util/concurrent/Executor;Ljava/util/concurrent/Executor;)Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/server/players/BanListEntry/ ()V net/minecraft/server/players/BanListEntry/ ()V +MD: net/minecraft/server/players/BanListEntry/ (Ljava/lang/Object;Lcom/google/gson/JsonObject;)V net/minecraft/server/players/BanListEntry/ (Ljava/lang/Object;Lcom/google/gson/JsonObject;)V +MD: net/minecraft/server/players/BanListEntry/ (Ljava/lang/Object;Ljava/util/Date;Ljava/lang/String;Ljava/util/Date;Ljava/lang/String;)V net/minecraft/server/players/BanListEntry/ (Ljava/lang/Object;Ljava/util/Date;Ljava/lang/String;Ljava/util/Date;Ljava/lang/String;)V +MD: net/minecraft/server/players/BanListEntry/m_10960_ ()Ljava/lang/String; net/minecraft/server/players/BanListEntry/getSource ()Ljava/lang/String; +MD: net/minecraft/server/players/BanListEntry/m_10961_ ()Ljava/util/Date; net/minecraft/server/players/BanListEntry/getExpires ()Ljava/util/Date; +MD: net/minecraft/server/players/BanListEntry/m_10962_ ()Ljava/lang/String; net/minecraft/server/players/BanListEntry/getReason ()Ljava/lang/String; +MD: net/minecraft/server/players/BanListEntry/m_143954_ ()Ljava/util/Date; net/minecraft/server/players/BanListEntry/getCreated ()Ljava/util/Date; +MD: net/minecraft/server/players/BanListEntry/m_6009_ (Lcom/google/gson/JsonObject;)V net/minecraft/server/players/BanListEntry/serialize (Lcom/google/gson/JsonObject;)V +MD: net/minecraft/server/players/BanListEntry/m_7524_ ()Z net/minecraft/server/players/BanListEntry/hasExpired ()Z +MD: net/minecraft/server/players/BanListEntry/m_8003_ ()Lnet/minecraft/network/chat/Component; net/minecraft/server/players/BanListEntry/getDisplayName ()Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/players/GameProfileCache/ ()V net/minecraft/server/players/GameProfileCache/ ()V +MD: net/minecraft/server/players/GameProfileCache/ (Lcom/mojang/authlib/GameProfileRepository;Ljava/io/File;)V net/minecraft/server/players/GameProfileCache/ (Lcom/mojang/authlib/GameProfileRepository;Ljava/io/File;)V +MD: net/minecraft/server/players/GameProfileCache/m_10976_ ()Ljava/util/List; net/minecraft/server/players/GameProfileCache/load ()Ljava/util/List; +MD: net/minecraft/server/players/GameProfileCache/m_10977_ (I)Ljava/util/stream/Stream; net/minecraft/server/players/GameProfileCache/getTopMRUProfiles (I)Ljava/util/stream/Stream; +MD: net/minecraft/server/players/GameProfileCache/m_10979_ (Lnet/minecraft/server/players/GameProfileCache$GameProfileInfo;)V net/minecraft/server/players/GameProfileCache/safeAdd (Lnet/minecraft/server/players/GameProfileCache$GameProfileInfo;)V +MD: net/minecraft/server/players/GameProfileCache/m_10981_ (Lnet/minecraft/server/players/GameProfileCache$GameProfileInfo;Ljava/text/DateFormat;)Lcom/google/gson/JsonElement; net/minecraft/server/players/GameProfileCache/writeGameProfile (Lnet/minecraft/server/players/GameProfileCache$GameProfileInfo;Ljava/text/DateFormat;)Lcom/google/gson/JsonElement; +MD: net/minecraft/server/players/GameProfileCache/m_10988_ (Lcom/google/gson/JsonElement;Ljava/text/DateFormat;)Ljava/util/Optional; net/minecraft/server/players/GameProfileCache/readGameProfile (Lcom/google/gson/JsonElement;Ljava/text/DateFormat;)Ljava/util/Optional; +MD: net/minecraft/server/players/GameProfileCache/m_10991_ (Lcom/mojang/authlib/GameProfile;)V net/minecraft/server/players/GameProfileCache/add (Lcom/mojang/authlib/GameProfile;)V +MD: net/minecraft/server/players/GameProfileCache/m_10993_ (Lcom/mojang/authlib/GameProfileRepository;Ljava/lang/String;)Ljava/util/Optional; net/minecraft/server/players/GameProfileCache/lookupGameProfile (Lcom/mojang/authlib/GameProfileRepository;Ljava/lang/String;)Ljava/util/Optional; +MD: net/minecraft/server/players/GameProfileCache/m_10996_ (Ljava/lang/String;)Ljava/util/Optional; net/minecraft/server/players/GameProfileCache/get (Ljava/lang/String;)Ljava/util/Optional; +MD: net/minecraft/server/players/GameProfileCache/m_11002_ (Ljava/util/UUID;)Ljava/util/Optional; net/minecraft/server/players/GameProfileCache/get (Ljava/util/UUID;)Ljava/util/Optional; +MD: net/minecraft/server/players/GameProfileCache/m_11004_ (Z)V net/minecraft/server/players/GameProfileCache/setUsesAuthentication (Z)V +MD: net/minecraft/server/players/GameProfileCache/m_11006_ ()V net/minecraft/server/players/GameProfileCache/save ()V +MD: net/minecraft/server/players/GameProfileCache/m_11007_ ()Z net/minecraft/server/players/GameProfileCache/usesAuthentication ()Z +MD: net/minecraft/server/players/GameProfileCache/m_11008_ ()J net/minecraft/server/players/GameProfileCache/getNextOperation ()J +MD: net/minecraft/server/players/GameProfileCache/m_11009_ ()Ljava/text/DateFormat; net/minecraft/server/players/GameProfileCache/createDateFormat ()Ljava/text/DateFormat; +MD: net/minecraft/server/players/GameProfileCache/m_143959_ (Lcom/google/gson/JsonArray;Ljava/text/DateFormat;Lnet/minecraft/server/players/GameProfileCache$GameProfileInfo;)V net/minecraft/server/players/GameProfileCache/lambda$save$5 (Lcom/google/gson/JsonArray;Ljava/text/DateFormat;Lnet/minecraft/server/players/GameProfileCache$GameProfileInfo;)V +MD: net/minecraft/server/players/GameProfileCache/m_143963_ (Ljava/lang/String;Ljava/util/Optional;Ljava/lang/Throwable;)V net/minecraft/server/players/GameProfileCache/lambda$getAsync$2 (Ljava/lang/String;Ljava/util/Optional;Ljava/lang/Throwable;)V +MD: net/minecraft/server/players/GameProfileCache/m_143967_ (Ljava/lang/String;Ljava/util/function/Consumer;)V net/minecraft/server/players/GameProfileCache/getAsync (Ljava/lang/String;Ljava/util/function/Consumer;)V +MD: net/minecraft/server/players/GameProfileCache/m_143970_ (Ljava/text/DateFormat;Ljava/util/List;Lcom/google/gson/JsonElement;)V net/minecraft/server/players/GameProfileCache/lambda$load$4 (Ljava/text/DateFormat;Ljava/util/List;Lcom/google/gson/JsonElement;)V +MD: net/minecraft/server/players/GameProfileCache/m_143974_ (Ljava/util/concurrent/Executor;)V net/minecraft/server/players/GameProfileCache/setExecutor (Ljava/util/concurrent/Executor;)V +MD: net/minecraft/server/players/GameProfileCache/m_143976_ (Ljava/util/function/Consumer;Ljava/util/Optional;Ljava/lang/Throwable;)V net/minecraft/server/players/GameProfileCache/lambda$getAsync$3 (Ljava/util/function/Consumer;Ljava/util/Optional;Ljava/lang/Throwable;)V +MD: net/minecraft/server/players/GameProfileCache/m_143982_ (Ljava/util/function/Consumer;Ljava/util/Optional;Ljava/lang/Throwable;)V net/minecraft/server/players/GameProfileCache/lambda$getAsync$0 (Ljava/util/function/Consumer;Ljava/util/Optional;Ljava/lang/Throwable;)V +MD: net/minecraft/server/players/GameProfileCache/m_182318_ (Ljava/lang/String;)Ljava/util/Optional; net/minecraft/server/players/GameProfileCache/lambda$getAsync$1 (Ljava/lang/String;)Ljava/util/Optional; +MD: net/minecraft/server/players/GameProfileCache/m_196559_ ()V net/minecraft/server/players/GameProfileCache/clearExecutor ()V +MD: net/minecraft/server/players/GameProfileCache$1/ (Ljava/util/concurrent/atomic/AtomicReference;)V net/minecraft/server/players/GameProfileCache$1/ (Ljava/util/concurrent/atomic/AtomicReference;)V +MD: net/minecraft/server/players/GameProfileCache$1/onProfileLookupFailed (Lcom/mojang/authlib/GameProfile;Ljava/lang/Exception;)V net/minecraft/server/players/GameProfileCache$1/onProfileLookupFailed (Lcom/mojang/authlib/GameProfile;Ljava/lang/Exception;)V +MD: net/minecraft/server/players/GameProfileCache$1/onProfileLookupSucceeded (Lcom/mojang/authlib/GameProfile;)V net/minecraft/server/players/GameProfileCache$1/onProfileLookupSucceeded (Lcom/mojang/authlib/GameProfile;)V +MD: net/minecraft/server/players/GameProfileCache$GameProfileInfo/ (Lcom/mojang/authlib/GameProfile;Ljava/util/Date;)V net/minecraft/server/players/GameProfileCache$GameProfileInfo/ (Lcom/mojang/authlib/GameProfile;Ljava/util/Date;)V +MD: net/minecraft/server/players/GameProfileCache$GameProfileInfo/m_11028_ ()Lcom/mojang/authlib/GameProfile; net/minecraft/server/players/GameProfileCache$GameProfileInfo/getProfile ()Lcom/mojang/authlib/GameProfile; +MD: net/minecraft/server/players/GameProfileCache$GameProfileInfo/m_11029_ (J)V net/minecraft/server/players/GameProfileCache$GameProfileInfo/setLastAccess (J)V +MD: net/minecraft/server/players/GameProfileCache$GameProfileInfo/m_11033_ ()Ljava/util/Date; net/minecraft/server/players/GameProfileCache$GameProfileInfo/getExpirationDate ()Ljava/util/Date; +MD: net/minecraft/server/players/GameProfileCache$GameProfileInfo/m_11034_ ()J net/minecraft/server/players/GameProfileCache$GameProfileInfo/getLastAccess ()J +MD: net/minecraft/server/players/IpBanList/ (Ljava/io/File;)V net/minecraft/server/players/IpBanList/ (Ljava/io/File;)V +MD: net/minecraft/server/players/IpBanList/m_11039_ (Ljava/lang/String;)Z net/minecraft/server/players/IpBanList/isBanned (Ljava/lang/String;)Z +MD: net/minecraft/server/players/IpBanList/m_11041_ (Ljava/net/SocketAddress;)Z net/minecraft/server/players/IpBanList/isBanned (Ljava/net/SocketAddress;)Z +MD: net/minecraft/server/players/IpBanList/m_11043_ (Ljava/net/SocketAddress;)Lnet/minecraft/server/players/IpBanListEntry; net/minecraft/server/players/IpBanList/get (Ljava/net/SocketAddress;)Lnet/minecraft/server/players/IpBanListEntry; +MD: net/minecraft/server/players/IpBanList/m_11045_ (Ljava/net/SocketAddress;)Ljava/lang/String; net/minecraft/server/players/IpBanList/getIpFromAddress (Ljava/net/SocketAddress;)Ljava/lang/String; +MD: net/minecraft/server/players/IpBanList/m_6666_ (Lcom/google/gson/JsonObject;)Lnet/minecraft/server/players/StoredUserEntry; net/minecraft/server/players/IpBanList/createEntry (Lcom/google/gson/JsonObject;)Lnet/minecraft/server/players/StoredUserEntry; +MD: net/minecraft/server/players/IpBanListEntry/ (Ljava/lang/String;Ljava/util/Date;Ljava/lang/String;Ljava/util/Date;Ljava/lang/String;)V net/minecraft/server/players/IpBanListEntry/ (Ljava/lang/String;Ljava/util/Date;Ljava/lang/String;Ljava/util/Date;Ljava/lang/String;)V +MD: net/minecraft/server/players/IpBanListEntry/ (Ljava/lang/String;)V net/minecraft/server/players/IpBanListEntry/ (Ljava/lang/String;)V +MD: net/minecraft/server/players/IpBanListEntry/ (Lcom/google/gson/JsonObject;)V net/minecraft/server/players/IpBanListEntry/ (Lcom/google/gson/JsonObject;)V +MD: net/minecraft/server/players/IpBanListEntry/m_11059_ (Lcom/google/gson/JsonObject;)Ljava/lang/String; net/minecraft/server/players/IpBanListEntry/createIpInfo (Lcom/google/gson/JsonObject;)Ljava/lang/String; +MD: net/minecraft/server/players/IpBanListEntry/m_6009_ (Lcom/google/gson/JsonObject;)V net/minecraft/server/players/IpBanListEntry/serialize (Lcom/google/gson/JsonObject;)V +MD: net/minecraft/server/players/IpBanListEntry/m_8003_ ()Lnet/minecraft/network/chat/Component; net/minecraft/server/players/IpBanListEntry/getDisplayName ()Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/players/OldUsersConverter/ ()V net/minecraft/server/players/OldUsersConverter/ ()V +MD: net/minecraft/server/players/OldUsersConverter/ ()V net/minecraft/server/players/OldUsersConverter/ ()V +MD: net/minecraft/server/players/OldUsersConverter/m_11069_ (I)[Ljava/lang/String; net/minecraft/server/players/OldUsersConverter/lambda$lookupPlayers$1 (I)[Ljava/lang/String; +MD: net/minecraft/server/players/OldUsersConverter/m_11073_ (Ljava/io/File;Ljava/util/Map;)Ljava/util/List; net/minecraft/server/players/OldUsersConverter/readOldListFormat (Ljava/io/File;Ljava/util/Map;)Ljava/util/List; +MD: net/minecraft/server/players/OldUsersConverter/m_11076_ (Ljava/lang/String;)Z net/minecraft/server/players/OldUsersConverter/lambda$lookupPlayers$0 (Ljava/lang/String;)Z +MD: net/minecraft/server/players/OldUsersConverter/m_11081_ (Lnet/minecraft/server/MinecraftServer;)Z net/minecraft/server/players/OldUsersConverter/convertUserBanlist (Lnet/minecraft/server/MinecraftServer;)Z +MD: net/minecraft/server/players/OldUsersConverter/m_11083_ (Lnet/minecraft/server/MinecraftServer;Ljava/lang/String;)Ljava/util/UUID; net/minecraft/server/players/OldUsersConverter/convertMobOwnerIfNecessary (Lnet/minecraft/server/MinecraftServer;Ljava/lang/String;)Ljava/util/UUID; +MD: net/minecraft/server/players/OldUsersConverter/m_11086_ (Lnet/minecraft/server/MinecraftServer;Ljava/util/Collection;Lcom/mojang/authlib/ProfileLookupCallback;)V net/minecraft/server/players/OldUsersConverter/lookupPlayers (Lnet/minecraft/server/MinecraftServer;Ljava/util/Collection;Lcom/mojang/authlib/ProfileLookupCallback;)V +MD: net/minecraft/server/players/OldUsersConverter/m_11090_ (Lnet/minecraft/server/dedicated/DedicatedServer;)Z net/minecraft/server/players/OldUsersConverter/convertPlayers (Lnet/minecraft/server/dedicated/DedicatedServer;)Z +MD: net/minecraft/server/players/OldUsersConverter/m_11092_ ()Z net/minecraft/server/players/OldUsersConverter/areOldUserlistsRemoved ()Z +MD: net/minecraft/server/players/OldUsersConverter/m_11093_ (Ljava/io/File;)V net/minecraft/server/players/OldUsersConverter/ensureDirectoryExists (Ljava/io/File;)V +MD: net/minecraft/server/players/OldUsersConverter/m_11095_ (Ljava/lang/String;Ljava/util/Date;)Ljava/util/Date; net/minecraft/server/players/OldUsersConverter/parseDate (Ljava/lang/String;Ljava/util/Date;)Ljava/util/Date; +MD: net/minecraft/server/players/OldUsersConverter/m_11098_ (Lnet/minecraft/server/MinecraftServer;)Z net/minecraft/server/players/OldUsersConverter/convertIpBanlist (Lnet/minecraft/server/MinecraftServer;)Z +MD: net/minecraft/server/players/OldUsersConverter/m_11100_ (Ljava/io/File;)V net/minecraft/server/players/OldUsersConverter/renameOldFile (Ljava/io/File;)V +MD: net/minecraft/server/players/OldUsersConverter/m_11102_ (Lnet/minecraft/server/MinecraftServer;)Z net/minecraft/server/players/OldUsersConverter/convertOpsList (Lnet/minecraft/server/MinecraftServer;)Z +MD: net/minecraft/server/players/OldUsersConverter/m_11104_ (Lnet/minecraft/server/MinecraftServer;)Z net/minecraft/server/players/OldUsersConverter/convertWhiteList (Lnet/minecraft/server/MinecraftServer;)Z +MD: net/minecraft/server/players/OldUsersConverter/m_11106_ (Lnet/minecraft/server/MinecraftServer;)Z net/minecraft/server/players/OldUsersConverter/serverReadyAfterUserconversion (Lnet/minecraft/server/MinecraftServer;)Z +MD: net/minecraft/server/players/OldUsersConverter/m_11108_ (Lnet/minecraft/server/MinecraftServer;)Z net/minecraft/server/players/OldUsersConverter/areOldPlayersConverted (Lnet/minecraft/server/MinecraftServer;)Z +MD: net/minecraft/server/players/OldUsersConverter/m_11110_ (Lnet/minecraft/server/MinecraftServer;)Ljava/io/File; net/minecraft/server/players/OldUsersConverter/getWorldPlayersDirectory (Lnet/minecraft/server/MinecraftServer;)Ljava/io/File; +MD: net/minecraft/server/players/OldUsersConverter$1/ (Lnet/minecraft/server/MinecraftServer;Ljava/util/Map;Lnet/minecraft/server/players/UserBanList;)V net/minecraft/server/players/OldUsersConverter$1/ (Lnet/minecraft/server/MinecraftServer;Ljava/util/Map;Lnet/minecraft/server/players/UserBanList;)V +MD: net/minecraft/server/players/OldUsersConverter$1/onProfileLookupFailed (Lcom/mojang/authlib/GameProfile;Ljava/lang/Exception;)V net/minecraft/server/players/OldUsersConverter$1/onProfileLookupFailed (Lcom/mojang/authlib/GameProfile;Ljava/lang/Exception;)V +MD: net/minecraft/server/players/OldUsersConverter$1/onProfileLookupSucceeded (Lcom/mojang/authlib/GameProfile;)V net/minecraft/server/players/OldUsersConverter$1/onProfileLookupSucceeded (Lcom/mojang/authlib/GameProfile;)V +MD: net/minecraft/server/players/OldUsersConverter$2/ (Lnet/minecraft/server/MinecraftServer;Lnet/minecraft/server/players/ServerOpList;)V net/minecraft/server/players/OldUsersConverter$2/ (Lnet/minecraft/server/MinecraftServer;Lnet/minecraft/server/players/ServerOpList;)V +MD: net/minecraft/server/players/OldUsersConverter$2/onProfileLookupFailed (Lcom/mojang/authlib/GameProfile;Ljava/lang/Exception;)V net/minecraft/server/players/OldUsersConverter$2/onProfileLookupFailed (Lcom/mojang/authlib/GameProfile;Ljava/lang/Exception;)V +MD: net/minecraft/server/players/OldUsersConverter$2/onProfileLookupSucceeded (Lcom/mojang/authlib/GameProfile;)V net/minecraft/server/players/OldUsersConverter$2/onProfileLookupSucceeded (Lcom/mojang/authlib/GameProfile;)V +MD: net/minecraft/server/players/OldUsersConverter$3/ (Lnet/minecraft/server/MinecraftServer;Lnet/minecraft/server/players/UserWhiteList;)V net/minecraft/server/players/OldUsersConverter$3/ (Lnet/minecraft/server/MinecraftServer;Lnet/minecraft/server/players/UserWhiteList;)V +MD: net/minecraft/server/players/OldUsersConverter$3/onProfileLookupFailed (Lcom/mojang/authlib/GameProfile;Ljava/lang/Exception;)V net/minecraft/server/players/OldUsersConverter$3/onProfileLookupFailed (Lcom/mojang/authlib/GameProfile;Ljava/lang/Exception;)V +MD: net/minecraft/server/players/OldUsersConverter$3/onProfileLookupSucceeded (Lcom/mojang/authlib/GameProfile;)V net/minecraft/server/players/OldUsersConverter$3/onProfileLookupSucceeded (Lcom/mojang/authlib/GameProfile;)V +MD: net/minecraft/server/players/OldUsersConverter$4/ (Lnet/minecraft/server/MinecraftServer;Ljava/util/List;)V net/minecraft/server/players/OldUsersConverter$4/ (Lnet/minecraft/server/MinecraftServer;Ljava/util/List;)V +MD: net/minecraft/server/players/OldUsersConverter$4/onProfileLookupFailed (Lcom/mojang/authlib/GameProfile;Ljava/lang/Exception;)V net/minecraft/server/players/OldUsersConverter$4/onProfileLookupFailed (Lcom/mojang/authlib/GameProfile;Ljava/lang/Exception;)V +MD: net/minecraft/server/players/OldUsersConverter$4/onProfileLookupSucceeded (Lcom/mojang/authlib/GameProfile;)V net/minecraft/server/players/OldUsersConverter$4/onProfileLookupSucceeded (Lcom/mojang/authlib/GameProfile;)V +MD: net/minecraft/server/players/OldUsersConverter$5/ (Lnet/minecraft/server/dedicated/DedicatedServer;Ljava/io/File;Ljava/io/File;Ljava/io/File;[Ljava/lang/String;)V net/minecraft/server/players/OldUsersConverter$5/ (Lnet/minecraft/server/dedicated/DedicatedServer;Ljava/io/File;Ljava/io/File;Ljava/io/File;[Ljava/lang/String;)V +MD: net/minecraft/server/players/OldUsersConverter$5/m_11165_ (Lcom/mojang/authlib/GameProfile;)Ljava/lang/String; net/minecraft/server/players/OldUsersConverter$5/getFileNameForProfile (Lcom/mojang/authlib/GameProfile;)Ljava/lang/String; +MD: net/minecraft/server/players/OldUsersConverter$5/m_11167_ (Ljava/io/File;Ljava/lang/String;Ljava/lang/String;)V net/minecraft/server/players/OldUsersConverter$5/movePlayerFile (Ljava/io/File;Ljava/lang/String;Ljava/lang/String;)V +MD: net/minecraft/server/players/OldUsersConverter$5/onProfileLookupFailed (Lcom/mojang/authlib/GameProfile;Ljava/lang/Exception;)V net/minecraft/server/players/OldUsersConverter$5/onProfileLookupFailed (Lcom/mojang/authlib/GameProfile;Ljava/lang/Exception;)V +MD: net/minecraft/server/players/OldUsersConverter$5/onProfileLookupSucceeded (Lcom/mojang/authlib/GameProfile;)V net/minecraft/server/players/OldUsersConverter$5/onProfileLookupSucceeded (Lcom/mojang/authlib/GameProfile;)V +MD: net/minecraft/server/players/OldUsersConverter$ConversionError/ (Ljava/lang/String;)V net/minecraft/server/players/OldUsersConverter$ConversionError/ (Ljava/lang/String;)V +MD: net/minecraft/server/players/OldUsersConverter$ConversionError/ (Ljava/lang/String;Ljava/lang/Throwable;)V net/minecraft/server/players/OldUsersConverter$ConversionError/ (Ljava/lang/String;Ljava/lang/Throwable;)V +MD: net/minecraft/server/players/PlayerList/ ()V net/minecraft/server/players/PlayerList/ ()V +MD: net/minecraft/server/players/PlayerList/ (Lnet/minecraft/server/MinecraftServer;Lnet/minecraft/core/LayeredRegistryAccess;Lnet/minecraft/world/level/storage/PlayerDataStorage;I)V net/minecraft/server/players/PlayerList/ (Lnet/minecraft/server/MinecraftServer;Lnet/minecraft/core/LayeredRegistryAccess;Lnet/minecraft/world/level/storage/PlayerDataStorage;I)V +MD: net/minecraft/server/players/PlayerList/m_11217_ (I)V net/minecraft/server/players/PlayerList/setViewDistance (I)V +MD: net/minecraft/server/players/PlayerList/m_11224_ (Lnet/minecraft/server/level/ServerPlayer;)Lnet/minecraft/nbt/CompoundTag; net/minecraft/server/players/PlayerList/load (Lnet/minecraft/server/level/ServerPlayer;)Lnet/minecraft/nbt/CompoundTag; +MD: net/minecraft/server/players/PlayerList/m_11226_ (Lnet/minecraft/server/level/ServerPlayer;I)V net/minecraft/server/players/PlayerList/sendPlayerPermissionLevel (Lnet/minecraft/server/level/ServerPlayer;I)V +MD: net/minecraft/server/players/PlayerList/m_11229_ (Lnet/minecraft/server/level/ServerPlayer;Lnet/minecraft/server/level/ServerLevel;)V net/minecraft/server/players/PlayerList/sendLevelInfo (Lnet/minecraft/server/level/ServerPlayer;Lnet/minecraft/server/level/ServerLevel;)V +MD: net/minecraft/server/players/PlayerList/m_11236_ (Lnet/minecraft/server/level/ServerPlayer;Z)Lnet/minecraft/server/level/ServerPlayer; net/minecraft/server/players/PlayerList/respawn (Lnet/minecraft/server/level/ServerPlayer;Z)Lnet/minecraft/server/level/ServerPlayer; +MD: net/minecraft/server/players/PlayerList/m_11239_ (Lnet/minecraft/world/entity/player/Player;)Lnet/minecraft/stats/ServerStatsCounter; net/minecraft/server/players/PlayerList/getPlayerStats (Lnet/minecraft/world/entity/player/Player;)Lnet/minecraft/stats/ServerStatsCounter; +MD: net/minecraft/server/players/PlayerList/m_11241_ (Lnet/minecraft/world/entity/player/Player;DDDDLnet/minecraft/resources/ResourceKey;Lnet/minecraft/network/protocol/Packet;)V net/minecraft/server/players/PlayerList/broadcast (Lnet/minecraft/world/entity/player/Player;DDDDLnet/minecraft/resources/ResourceKey;Lnet/minecraft/network/protocol/Packet;)V +MD: net/minecraft/server/players/PlayerList/m_11255_ (Ljava/lang/String;)Lnet/minecraft/server/level/ServerPlayer; net/minecraft/server/players/PlayerList/getPlayerByName (Ljava/lang/String;)Lnet/minecraft/server/level/ServerPlayer; +MD: net/minecraft/server/players/PlayerList/m_11259_ (Ljava/util/UUID;)Lnet/minecraft/server/level/ServerPlayer; net/minecraft/server/players/PlayerList/getPlayer (Ljava/util/UUID;)Lnet/minecraft/server/level/ServerPlayer; +MD: net/minecraft/server/players/PlayerList/m_11261_ (Lnet/minecraft/network/Connection;Lnet/minecraft/server/level/ServerPlayer;)V net/minecraft/server/players/PlayerList/placeNewPlayer (Lnet/minecraft/network/Connection;Lnet/minecraft/server/level/ServerPlayer;)V +MD: net/minecraft/server/players/PlayerList/m_11268_ (Lnet/minecraft/network/protocol/Packet;)V net/minecraft/server/players/PlayerList/broadcastAll (Lnet/minecraft/network/protocol/Packet;)V +MD: net/minecraft/server/players/PlayerList/m_11270_ (Lnet/minecraft/network/protocol/Packet;Lnet/minecraft/resources/ResourceKey;)V net/minecraft/server/players/PlayerList/broadcastAll (Lnet/minecraft/network/protocol/Packet;Lnet/minecraft/resources/ResourceKey;)V +MD: net/minecraft/server/players/PlayerList/m_11273_ (Lnet/minecraft/server/ServerScoreboard;Lnet/minecraft/server/level/ServerPlayer;)V net/minecraft/server/players/PlayerList/updateEntireScoreboard (Lnet/minecraft/server/ServerScoreboard;Lnet/minecraft/server/level/ServerPlayer;)V +MD: net/minecraft/server/players/PlayerList/m_11282_ (Ljava/lang/String;)Ljava/util/List; net/minecraft/server/players/PlayerList/getPlayersWithAddress (Ljava/lang/String;)Ljava/util/List; +MD: net/minecraft/server/players/PlayerList/m_11284_ (Z)V net/minecraft/server/players/PlayerList/setAllowCheatsForAllPlayers (Z)V +MD: net/minecraft/server/players/PlayerList/m_11286_ (Lnet/minecraft/server/level/ServerPlayer;)V net/minecraft/server/players/PlayerList/remove (Lnet/minecraft/server/level/ServerPlayer;)V +MD: net/minecraft/server/players/PlayerList/m_11288_ ()V net/minecraft/server/players/PlayerList/tick ()V +MD: net/minecraft/server/players/PlayerList/m_11289_ (Lnet/minecraft/server/level/ServerPlayer;)V net/minecraft/server/players/PlayerList/sendPlayerPermissionLevel (Lnet/minecraft/server/level/ServerPlayer;)V +MD: net/minecraft/server/players/PlayerList/m_11291_ ()[Ljava/lang/String; net/minecraft/server/players/PlayerList/getPlayerNamesArray ()[Ljava/lang/String; +MD: net/minecraft/server/players/PlayerList/m_11292_ (Lnet/minecraft/server/level/ServerPlayer;)V net/minecraft/server/players/PlayerList/sendAllPlayerInfo (Lnet/minecraft/server/level/ServerPlayer;)V +MD: net/minecraft/server/players/PlayerList/m_11295_ ()Lnet/minecraft/server/players/UserBanList; net/minecraft/server/players/PlayerList/getBans ()Lnet/minecraft/server/players/UserBanList; +MD: net/minecraft/server/players/PlayerList/m_11296_ (Lnet/minecraft/server/level/ServerPlayer;)Lnet/minecraft/server/PlayerAdvancements; net/minecraft/server/players/PlayerList/getPlayerAdvancements (Lnet/minecraft/server/level/ServerPlayer;)Lnet/minecraft/server/PlayerAdvancements; +MD: net/minecraft/server/players/PlayerList/m_11299_ ()Lnet/minecraft/server/players/IpBanList; net/minecraft/server/players/PlayerList/getIpBans ()Lnet/minecraft/server/players/IpBanList; +MD: net/minecraft/server/players/PlayerList/m_11302_ ()V net/minecraft/server/players/PlayerList/saveAll ()V +MD: net/minecraft/server/players/PlayerList/m_11303_ (Lcom/mojang/authlib/GameProfile;)Z net/minecraft/server/players/PlayerList/isOp (Lcom/mojang/authlib/GameProfile;)Z +MD: net/minecraft/server/players/PlayerList/m_11305_ ()Lnet/minecraft/server/players/UserWhiteList; net/minecraft/server/players/PlayerList/getWhiteList ()Lnet/minecraft/server/players/UserWhiteList; +MD: net/minecraft/server/players/PlayerList/m_11306_ ()[Ljava/lang/String; net/minecraft/server/players/PlayerList/getWhiteListNames ()[Ljava/lang/String; +MD: net/minecraft/server/players/PlayerList/m_11307_ ()Lnet/minecraft/server/players/ServerOpList; net/minecraft/server/players/PlayerList/getOps ()Lnet/minecraft/server/players/ServerOpList; +MD: net/minecraft/server/players/PlayerList/m_11308_ ()[Ljava/lang/String; net/minecraft/server/players/PlayerList/getOpNames ()[Ljava/lang/String; +MD: net/minecraft/server/players/PlayerList/m_11309_ ()I net/minecraft/server/players/PlayerList/getPlayerCount ()I +MD: net/minecraft/server/players/PlayerList/m_11310_ ()I net/minecraft/server/players/PlayerList/getMaxPlayers ()I +MD: net/minecraft/server/players/PlayerList/m_11311_ ()Z net/minecraft/server/players/PlayerList/isUsingWhitelist ()Z +MD: net/minecraft/server/players/PlayerList/m_11312_ ()I net/minecraft/server/players/PlayerList/getViewDistance ()I +MD: net/minecraft/server/players/PlayerList/m_11313_ ()V net/minecraft/server/players/PlayerList/removeAll ()V +MD: net/minecraft/server/players/PlayerList/m_11314_ ()Ljava/util/List; net/minecraft/server/players/PlayerList/getPlayers ()Ljava/util/List; +MD: net/minecraft/server/players/PlayerList/m_11315_ ()V net/minecraft/server/players/PlayerList/reloadResources ()V +MD: net/minecraft/server/players/PlayerList/m_11316_ ()Z net/minecraft/server/players/PlayerList/isAllowCheatsForAllPlayers ()Z +MD: net/minecraft/server/players/PlayerList/m_184209_ (Lnet/minecraft/server/level/ServerLevel;)V net/minecraft/server/players/PlayerList/addWorldborderListener (Lnet/minecraft/server/level/ServerLevel;)V +MD: net/minecraft/server/players/PlayerList/m_184211_ (I)V net/minecraft/server/players/PlayerList/setSimulationDistance (I)V +MD: net/minecraft/server/players/PlayerList/m_184213_ ()I net/minecraft/server/players/PlayerList/getSimulationDistance ()I +MD: net/minecraft/server/players/PlayerList/m_215601_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/world/entity/Entity; net/minecraft/server/players/PlayerList/lambda$placeNewPlayer$1 (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/world/entity/Entity; +MD: net/minecraft/server/players/PlayerList/m_215604_ (Lnet/minecraft/server/level/ServerPlayer;Lnet/minecraft/server/MinecraftServer$ServerResourcePackInfo;)V net/minecraft/server/players/PlayerList/lambda$placeNewPlayer$0 (Lnet/minecraft/server/level/ServerPlayer;Lnet/minecraft/server/MinecraftServer$ServerResourcePackInfo;)V +MD: net/minecraft/server/players/PlayerList/m_215619_ (Lnet/minecraft/world/entity/Entity;)V net/minecraft/server/players/PlayerList/lambda$remove$2 (Lnet/minecraft/world/entity/Entity;)V +MD: net/minecraft/server/players/PlayerList/m_215621_ (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/network/chat/Component;)V net/minecraft/server/players/PlayerList/broadcastSystemToTeam (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/network/chat/Component;)V +MD: net/minecraft/server/players/PlayerList/m_215624_ (Lcom/mojang/authlib/GameProfile;)Lnet/minecraft/server/level/ServerPlayer; net/minecraft/server/players/PlayerList/getPlayerForLogin (Lcom/mojang/authlib/GameProfile;)Lnet/minecraft/server/level/ServerPlayer; +MD: net/minecraft/server/players/PlayerList/m_215637_ (Lnet/minecraft/network/chat/Component;Lnet/minecraft/server/level/ServerPlayer;)Lnet/minecraft/network/chat/Component; net/minecraft/server/players/PlayerList/lambda$broadcastSystemMessage$3 (Lnet/minecraft/network/chat/Component;Lnet/minecraft/server/level/ServerPlayer;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/players/PlayerList/m_215649_ (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/network/chat/Component;)V net/minecraft/server/players/PlayerList/broadcastSystemToAllExceptTeam (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/network/chat/Component;)V +MD: net/minecraft/server/players/PlayerList/m_240416_ (Lnet/minecraft/network/chat/Component;Z)V net/minecraft/server/players/PlayerList/broadcastSystemMessage (Lnet/minecraft/network/chat/Component;Z)V +MD: net/minecraft/server/players/PlayerList/m_240502_ (Lnet/minecraft/network/chat/Component;Ljava/util/function/Function;Z)V net/minecraft/server/players/PlayerList/broadcastSystemMessage (Lnet/minecraft/network/chat/Component;Ljava/util/function/Function;Z)V +MD: net/minecraft/server/players/PlayerList/m_243049_ (Lnet/minecraft/network/chat/PlayerChatMessage;Lnet/minecraft/server/level/ServerPlayer;Lnet/minecraft/network/chat/ChatType$Bound;)V net/minecraft/server/players/PlayerList/broadcastChatMessage (Lnet/minecraft/network/chat/PlayerChatMessage;Lnet/minecraft/server/level/ServerPlayer;Lnet/minecraft/network/chat/ChatType$Bound;)V +MD: net/minecraft/server/players/PlayerList/m_243063_ (Lnet/minecraft/network/chat/PlayerChatMessage;Lnet/minecraft/commands/CommandSourceStack;Lnet/minecraft/network/chat/ChatType$Bound;)V net/minecraft/server/players/PlayerList/broadcastChatMessage (Lnet/minecraft/network/chat/PlayerChatMessage;Lnet/minecraft/commands/CommandSourceStack;Lnet/minecraft/network/chat/ChatType$Bound;)V +MD: net/minecraft/server/players/PlayerList/m_245148_ (Lnet/minecraft/network/chat/PlayerChatMessage;Ljava/util/function/Predicate;Lnet/minecraft/server/level/ServerPlayer;Lnet/minecraft/network/chat/ChatType$Bound;)V net/minecraft/server/players/PlayerList/broadcastChatMessage (Lnet/minecraft/network/chat/PlayerChatMessage;Ljava/util/function/Predicate;Lnet/minecraft/server/level/ServerPlayer;Lnet/minecraft/network/chat/ChatType$Bound;)V +MD: net/minecraft/server/players/PlayerList/m_247528_ (Lnet/minecraft/network/chat/PlayerChatMessage;)Z net/minecraft/server/players/PlayerList/verifyChatTrusted (Lnet/minecraft/network/chat/PlayerChatMessage;)Z +MD: net/minecraft/server/players/PlayerList/m_5749_ (Lcom/mojang/authlib/GameProfile;)V net/minecraft/server/players/PlayerList/op (Lcom/mojang/authlib/GameProfile;)V +MD: net/minecraft/server/players/PlayerList/m_5750_ (Lcom/mojang/authlib/GameProfile;)V net/minecraft/server/players/PlayerList/deop (Lcom/mojang/authlib/GameProfile;)V +MD: net/minecraft/server/players/PlayerList/m_5764_ (Lcom/mojang/authlib/GameProfile;)Z net/minecraft/server/players/PlayerList/isWhiteListed (Lcom/mojang/authlib/GameProfile;)Z +MD: net/minecraft/server/players/PlayerList/m_5765_ (Lcom/mojang/authlib/GameProfile;)Z net/minecraft/server/players/PlayerList/canBypassPlayerLimit (Lcom/mojang/authlib/GameProfile;)Z +MD: net/minecraft/server/players/PlayerList/m_6418_ (Ljava/net/SocketAddress;Lcom/mojang/authlib/GameProfile;)Lnet/minecraft/network/chat/Component; net/minecraft/server/players/PlayerList/canPlayerLogin (Ljava/net/SocketAddress;Lcom/mojang/authlib/GameProfile;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/players/PlayerList/m_6628_ (Z)V net/minecraft/server/players/PlayerList/setUsingWhiteList (Z)V +MD: net/minecraft/server/players/PlayerList/m_6765_ (Lnet/minecraft/server/level/ServerPlayer;)V net/minecraft/server/players/PlayerList/save (Lnet/minecraft/server/level/ServerPlayer;)V +MD: net/minecraft/server/players/PlayerList/m_6960_ ()Lnet/minecraft/nbt/CompoundTag; net/minecraft/server/players/PlayerList/getSingleplayerData ()Lnet/minecraft/nbt/CompoundTag; +MD: net/minecraft/server/players/PlayerList/m_7542_ ()V net/minecraft/server/players/PlayerList/reloadWhiteList ()V +MD: net/minecraft/server/players/PlayerList/m_7873_ ()Lnet/minecraft/server/MinecraftServer; net/minecraft/server/players/PlayerList/getServer ()Lnet/minecraft/server/MinecraftServer; +MD: net/minecraft/server/players/PlayerList$1/ (Lnet/minecraft/server/players/PlayerList;)V net/minecraft/server/players/PlayerList$1/ (Lnet/minecraft/server/players/PlayerList;)V +MD: net/minecraft/server/players/PlayerList$1/m_5903_ (Lnet/minecraft/world/level/border/WorldBorder;I)V net/minecraft/server/players/PlayerList$1/onBorderSetWarningBlocks (Lnet/minecraft/world/level/border/WorldBorder;I)V +MD: net/minecraft/server/players/PlayerList$1/m_5904_ (Lnet/minecraft/world/level/border/WorldBorder;I)V net/minecraft/server/players/PlayerList$1/onBorderSetWarningTime (Lnet/minecraft/world/level/border/WorldBorder;I)V +MD: net/minecraft/server/players/PlayerList$1/m_6312_ (Lnet/minecraft/world/level/border/WorldBorder;D)V net/minecraft/server/players/PlayerList$1/onBorderSizeSet (Lnet/minecraft/world/level/border/WorldBorder;D)V +MD: net/minecraft/server/players/PlayerList$1/m_6313_ (Lnet/minecraft/world/level/border/WorldBorder;D)V net/minecraft/server/players/PlayerList$1/onBorderSetDamageSafeZOne (Lnet/minecraft/world/level/border/WorldBorder;D)V +MD: net/minecraft/server/players/PlayerList$1/m_6315_ (Lnet/minecraft/world/level/border/WorldBorder;D)V net/minecraft/server/players/PlayerList$1/onBorderSetDamagePerBlock (Lnet/minecraft/world/level/border/WorldBorder;D)V +MD: net/minecraft/server/players/PlayerList$1/m_6689_ (Lnet/minecraft/world/level/border/WorldBorder;DDJ)V net/minecraft/server/players/PlayerList$1/onBorderSizeLerping (Lnet/minecraft/world/level/border/WorldBorder;DDJ)V +MD: net/minecraft/server/players/PlayerList$1/m_7721_ (Lnet/minecraft/world/level/border/WorldBorder;DD)V net/minecraft/server/players/PlayerList$1/onBorderCenterSet (Lnet/minecraft/world/level/border/WorldBorder;DD)V +MD: net/minecraft/server/players/ServerOpList/ (Ljava/io/File;)V net/minecraft/server/players/ServerOpList/ (Ljava/io/File;)V +MD: net/minecraft/server/players/ServerOpList/m_11351_ (Lcom/mojang/authlib/GameProfile;)Z net/minecraft/server/players/ServerOpList/canBypassPlayerLimit (Lcom/mojang/authlib/GameProfile;)Z +MD: net/minecraft/server/players/ServerOpList/m_143996_ (I)[Ljava/lang/String; net/minecraft/server/players/ServerOpList/lambda$getUserList$0 (I)[Ljava/lang/String; +MD: net/minecraft/server/players/ServerOpList/m_5875_ ()[Ljava/lang/String; net/minecraft/server/players/ServerOpList/getUserList ()[Ljava/lang/String; +MD: net/minecraft/server/players/ServerOpList/m_5981_ (Ljava/lang/Object;)Ljava/lang/String; net/minecraft/server/players/ServerOpList/getKeyForUser (Ljava/lang/Object;)Ljava/lang/String; +MD: net/minecraft/server/players/ServerOpList/m_5981_ (Lcom/mojang/authlib/GameProfile;)Ljava/lang/String; net/minecraft/server/players/ServerOpList/getKeyForUser (Lcom/mojang/authlib/GameProfile;)Ljava/lang/String; +MD: net/minecraft/server/players/ServerOpList/m_6666_ (Lcom/google/gson/JsonObject;)Lnet/minecraft/server/players/StoredUserEntry; net/minecraft/server/players/ServerOpList/createEntry (Lcom/google/gson/JsonObject;)Lnet/minecraft/server/players/StoredUserEntry; +MD: net/minecraft/server/players/ServerOpListEntry/ (Lcom/google/gson/JsonObject;)V net/minecraft/server/players/ServerOpListEntry/ (Lcom/google/gson/JsonObject;)V +MD: net/minecraft/server/players/ServerOpListEntry/ (Lcom/mojang/authlib/GameProfile;IZ)V net/minecraft/server/players/ServerOpListEntry/ (Lcom/mojang/authlib/GameProfile;IZ)V +MD: net/minecraft/server/players/ServerOpListEntry/m_11363_ ()I net/minecraft/server/players/ServerOpListEntry/getLevel ()I +MD: net/minecraft/server/players/ServerOpListEntry/m_11366_ ()Z net/minecraft/server/players/ServerOpListEntry/getBypassesPlayerLimit ()Z +MD: net/minecraft/server/players/ServerOpListEntry/m_11367_ (Lcom/google/gson/JsonObject;)Lcom/mojang/authlib/GameProfile; net/minecraft/server/players/ServerOpListEntry/createGameProfile (Lcom/google/gson/JsonObject;)Lcom/mojang/authlib/GameProfile; +MD: net/minecraft/server/players/ServerOpListEntry/m_6009_ (Lcom/google/gson/JsonObject;)V net/minecraft/server/players/ServerOpListEntry/serialize (Lcom/google/gson/JsonObject;)V +MD: net/minecraft/server/players/SleepStatus/ ()V net/minecraft/server/players/SleepStatus/ ()V +MD: net/minecraft/server/players/SleepStatus/m_144001_ ()V net/minecraft/server/players/SleepStatus/removeAllSleepers ()V +MD: net/minecraft/server/players/SleepStatus/m_144002_ (I)Z net/minecraft/server/players/SleepStatus/areEnoughSleeping (I)Z +MD: net/minecraft/server/players/SleepStatus/m_144004_ (ILjava/util/List;)Z net/minecraft/server/players/SleepStatus/areEnoughDeepSleeping (ILjava/util/List;)Z +MD: net/minecraft/server/players/SleepStatus/m_144007_ (Ljava/util/List;)Z net/minecraft/server/players/SleepStatus/update (Ljava/util/List;)Z +MD: net/minecraft/server/players/SleepStatus/m_144009_ ()I net/minecraft/server/players/SleepStatus/amountSleeping ()I +MD: net/minecraft/server/players/SleepStatus/m_144010_ (I)I net/minecraft/server/players/SleepStatus/sleepersNeeded (I)I +MD: net/minecraft/server/players/StoredUserEntry/ (Ljava/lang/Object;)V net/minecraft/server/players/StoredUserEntry/ (Ljava/lang/Object;)V +MD: net/minecraft/server/players/StoredUserEntry/m_11373_ ()Ljava/lang/Object; net/minecraft/server/players/StoredUserEntry/getUser ()Ljava/lang/Object; +MD: net/minecraft/server/players/StoredUserEntry/m_6009_ (Lcom/google/gson/JsonObject;)V net/minecraft/server/players/StoredUserEntry/serialize (Lcom/google/gson/JsonObject;)V +MD: net/minecraft/server/players/StoredUserEntry/m_7524_ ()Z net/minecraft/server/players/StoredUserEntry/hasExpired ()Z +MD: net/minecraft/server/players/StoredUserList/ ()V net/minecraft/server/players/StoredUserList/ ()V +MD: net/minecraft/server/players/StoredUserList/ (Ljava/io/File;)V net/minecraft/server/players/StoredUserList/ (Ljava/io/File;)V +MD: net/minecraft/server/players/StoredUserList/m_11381_ (Lnet/minecraft/server/players/StoredUserEntry;)V net/minecraft/server/players/StoredUserList/add (Lnet/minecraft/server/players/StoredUserEntry;)V +MD: net/minecraft/server/players/StoredUserList/m_11385_ ()Ljava/io/File; net/minecraft/server/players/StoredUserList/getFile ()Ljava/io/File; +MD: net/minecraft/server/players/StoredUserList/m_11386_ (Lnet/minecraft/server/players/StoredUserEntry;)V net/minecraft/server/players/StoredUserList/remove (Lnet/minecraft/server/players/StoredUserEntry;)V +MD: net/minecraft/server/players/StoredUserList/m_11388_ (Ljava/lang/Object;)Lnet/minecraft/server/players/StoredUserEntry; net/minecraft/server/players/StoredUserList/get (Ljava/lang/Object;)Lnet/minecraft/server/players/StoredUserEntry; +MD: net/minecraft/server/players/StoredUserList/m_11390_ ()Z net/minecraft/server/players/StoredUserList/isEmpty ()Z +MD: net/minecraft/server/players/StoredUserList/m_11391_ (Lnet/minecraft/server/players/StoredUserEntry;)Lcom/google/gson/JsonObject; net/minecraft/server/players/StoredUserList/lambda$save$0 (Lnet/minecraft/server/players/StoredUserEntry;)Lcom/google/gson/JsonObject; +MD: net/minecraft/server/players/StoredUserList/m_11393_ (Ljava/lang/Object;)V net/minecraft/server/players/StoredUserList/remove (Ljava/lang/Object;)V +MD: net/minecraft/server/players/StoredUserList/m_11395_ ()Ljava/util/Collection; net/minecraft/server/players/StoredUserList/getEntries ()Ljava/util/Collection; +MD: net/minecraft/server/players/StoredUserList/m_11396_ (Ljava/lang/Object;)Z net/minecraft/server/players/StoredUserList/contains (Ljava/lang/Object;)Z +MD: net/minecraft/server/players/StoredUserList/m_11398_ ()V net/minecraft/server/players/StoredUserList/save ()V +MD: net/minecraft/server/players/StoredUserList/m_11399_ ()V net/minecraft/server/players/StoredUserList/load ()V +MD: net/minecraft/server/players/StoredUserList/m_11400_ ()V net/minecraft/server/players/StoredUserList/removeExpired ()V +MD: net/minecraft/server/players/StoredUserList/m_5875_ ()[Ljava/lang/String; net/minecraft/server/players/StoredUserList/getUserList ()[Ljava/lang/String; +MD: net/minecraft/server/players/StoredUserList/m_5981_ (Ljava/lang/Object;)Ljava/lang/String; net/minecraft/server/players/StoredUserList/getKeyForUser (Ljava/lang/Object;)Ljava/lang/String; +MD: net/minecraft/server/players/StoredUserList/m_6666_ (Lcom/google/gson/JsonObject;)Lnet/minecraft/server/players/StoredUserEntry; net/minecraft/server/players/StoredUserList/createEntry (Lcom/google/gson/JsonObject;)Lnet/minecraft/server/players/StoredUserEntry; +MD: net/minecraft/server/players/UserBanList/ (Ljava/io/File;)V net/minecraft/server/players/UserBanList/ (Ljava/io/File;)V +MD: net/minecraft/server/players/UserBanList/m_11406_ (Lcom/mojang/authlib/GameProfile;)Z net/minecraft/server/players/UserBanList/isBanned (Lcom/mojang/authlib/GameProfile;)Z +MD: net/minecraft/server/players/UserBanList/m_144012_ (I)[Ljava/lang/String; net/minecraft/server/players/UserBanList/lambda$getUserList$0 (I)[Ljava/lang/String; +MD: net/minecraft/server/players/UserBanList/m_5875_ ()[Ljava/lang/String; net/minecraft/server/players/UserBanList/getUserList ()[Ljava/lang/String; +MD: net/minecraft/server/players/UserBanList/m_5981_ (Ljava/lang/Object;)Ljava/lang/String; net/minecraft/server/players/UserBanList/getKeyForUser (Ljava/lang/Object;)Ljava/lang/String; +MD: net/minecraft/server/players/UserBanList/m_5981_ (Lcom/mojang/authlib/GameProfile;)Ljava/lang/String; net/minecraft/server/players/UserBanList/getKeyForUser (Lcom/mojang/authlib/GameProfile;)Ljava/lang/String; +MD: net/minecraft/server/players/UserBanList/m_6666_ (Lcom/google/gson/JsonObject;)Lnet/minecraft/server/players/StoredUserEntry; net/minecraft/server/players/UserBanList/createEntry (Lcom/google/gson/JsonObject;)Lnet/minecraft/server/players/StoredUserEntry; +MD: net/minecraft/server/players/UserBanListEntry/ (Lcom/mojang/authlib/GameProfile;Ljava/util/Date;Ljava/lang/String;Ljava/util/Date;Ljava/lang/String;)V net/minecraft/server/players/UserBanListEntry/ (Lcom/mojang/authlib/GameProfile;Ljava/util/Date;Ljava/lang/String;Ljava/util/Date;Ljava/lang/String;)V +MD: net/minecraft/server/players/UserBanListEntry/ (Lcom/google/gson/JsonObject;)V net/minecraft/server/players/UserBanListEntry/ (Lcom/google/gson/JsonObject;)V +MD: net/minecraft/server/players/UserBanListEntry/ (Lcom/mojang/authlib/GameProfile;)V net/minecraft/server/players/UserBanListEntry/ (Lcom/mojang/authlib/GameProfile;)V +MD: net/minecraft/server/players/UserBanListEntry/m_11445_ (Lcom/google/gson/JsonObject;)Lcom/mojang/authlib/GameProfile; net/minecraft/server/players/UserBanListEntry/createGameProfile (Lcom/google/gson/JsonObject;)Lcom/mojang/authlib/GameProfile; +MD: net/minecraft/server/players/UserBanListEntry/m_6009_ (Lcom/google/gson/JsonObject;)V net/minecraft/server/players/UserBanListEntry/serialize (Lcom/google/gson/JsonObject;)V +MD: net/minecraft/server/players/UserBanListEntry/m_8003_ ()Lnet/minecraft/network/chat/Component; net/minecraft/server/players/UserBanListEntry/getDisplayName ()Lnet/minecraft/network/chat/Component; +MD: net/minecraft/server/players/UserWhiteList/ (Ljava/io/File;)V net/minecraft/server/players/UserWhiteList/ (Ljava/io/File;)V +MD: net/minecraft/server/players/UserWhiteList/m_11453_ (Lcom/mojang/authlib/GameProfile;)Z net/minecraft/server/players/UserWhiteList/isWhiteListed (Lcom/mojang/authlib/GameProfile;)Z +MD: net/minecraft/server/players/UserWhiteList/m_144014_ (I)[Ljava/lang/String; net/minecraft/server/players/UserWhiteList/lambda$getUserList$0 (I)[Ljava/lang/String; +MD: net/minecraft/server/players/UserWhiteList/m_5875_ ()[Ljava/lang/String; net/minecraft/server/players/UserWhiteList/getUserList ()[Ljava/lang/String; +MD: net/minecraft/server/players/UserWhiteList/m_5981_ (Ljava/lang/Object;)Ljava/lang/String; net/minecraft/server/players/UserWhiteList/getKeyForUser (Ljava/lang/Object;)Ljava/lang/String; +MD: net/minecraft/server/players/UserWhiteList/m_5981_ (Lcom/mojang/authlib/GameProfile;)Ljava/lang/String; net/minecraft/server/players/UserWhiteList/getKeyForUser (Lcom/mojang/authlib/GameProfile;)Ljava/lang/String; +MD: net/minecraft/server/players/UserWhiteList/m_6666_ (Lcom/google/gson/JsonObject;)Lnet/minecraft/server/players/StoredUserEntry; net/minecraft/server/players/UserWhiteList/createEntry (Lcom/google/gson/JsonObject;)Lnet/minecraft/server/players/StoredUserEntry; +MD: net/minecraft/server/players/UserWhiteListEntry/ (Lcom/google/gson/JsonObject;)V net/minecraft/server/players/UserWhiteListEntry/ (Lcom/google/gson/JsonObject;)V +MD: net/minecraft/server/players/UserWhiteListEntry/ (Lcom/mojang/authlib/GameProfile;)V net/minecraft/server/players/UserWhiteListEntry/ (Lcom/mojang/authlib/GameProfile;)V +MD: net/minecraft/server/players/UserWhiteListEntry/m_11465_ (Lcom/google/gson/JsonObject;)Lcom/mojang/authlib/GameProfile; net/minecraft/server/players/UserWhiteListEntry/createGameProfile (Lcom/google/gson/JsonObject;)Lcom/mojang/authlib/GameProfile; +MD: net/minecraft/server/players/UserWhiteListEntry/m_6009_ (Lcom/google/gson/JsonObject;)V net/minecraft/server/players/UserWhiteListEntry/serialize (Lcom/google/gson/JsonObject;)V +MD: net/minecraft/server/rcon/NetworkDataOutputStream/ (I)V net/minecraft/server/rcon/NetworkDataOutputStream/ (I)V +MD: net/minecraft/server/rcon/NetworkDataOutputStream/m_11471_ ()[B net/minecraft/server/rcon/NetworkDataOutputStream/toByteArray ()[B +MD: net/minecraft/server/rcon/NetworkDataOutputStream/m_11472_ (I)V net/minecraft/server/rcon/NetworkDataOutputStream/write (I)V +MD: net/minecraft/server/rcon/NetworkDataOutputStream/m_11474_ (Ljava/lang/String;)V net/minecraft/server/rcon/NetworkDataOutputStream/writeString (Ljava/lang/String;)V +MD: net/minecraft/server/rcon/NetworkDataOutputStream/m_11476_ (S)V net/minecraft/server/rcon/NetworkDataOutputStream/writeShort (S)V +MD: net/minecraft/server/rcon/NetworkDataOutputStream/m_11478_ ([B)V net/minecraft/server/rcon/NetworkDataOutputStream/writeBytes ([B)V +MD: net/minecraft/server/rcon/NetworkDataOutputStream/m_11480_ ()V net/minecraft/server/rcon/NetworkDataOutputStream/reset ()V +MD: net/minecraft/server/rcon/NetworkDataOutputStream/m_144016_ (F)V net/minecraft/server/rcon/NetworkDataOutputStream/writeFloat (F)V +MD: net/minecraft/server/rcon/NetworkDataOutputStream/m_144018_ (I)V net/minecraft/server/rcon/NetworkDataOutputStream/writeInt (I)V +MD: net/minecraft/server/rcon/PktUtils/ ()V net/minecraft/server/rcon/PktUtils/ ()V +MD: net/minecraft/server/rcon/PktUtils/ ()V net/minecraft/server/rcon/PktUtils/ ()V +MD: net/minecraft/server/rcon/PktUtils/m_11483_ (B)Ljava/lang/String; net/minecraft/server/rcon/PktUtils/toHexString (B)Ljava/lang/String; +MD: net/minecraft/server/rcon/PktUtils/m_11485_ ([BI)I net/minecraft/server/rcon/PktUtils/intFromByteArray ([BI)I +MD: net/minecraft/server/rcon/PktUtils/m_11488_ ([BII)Ljava/lang/String; net/minecraft/server/rcon/PktUtils/stringFromByteArray ([BII)Ljava/lang/String; +MD: net/minecraft/server/rcon/PktUtils/m_11492_ ([BII)I net/minecraft/server/rcon/PktUtils/intFromByteArray ([BII)I +MD: net/minecraft/server/rcon/PktUtils/m_11496_ ([BII)I net/minecraft/server/rcon/PktUtils/intFromNetworkByteArray ([BII)I +MD: net/minecraft/server/rcon/RconConsoleSource/ ()V net/minecraft/server/rcon/RconConsoleSource/ ()V +MD: net/minecraft/server/rcon/RconConsoleSource/ (Lnet/minecraft/server/MinecraftServer;)V net/minecraft/server/rcon/RconConsoleSource/ (Lnet/minecraft/server/MinecraftServer;)V +MD: net/minecraft/server/rcon/RconConsoleSource/m_11512_ ()V net/minecraft/server/rcon/RconConsoleSource/prepareForCommand ()V +MD: net/minecraft/server/rcon/RconConsoleSource/m_11513_ ()Ljava/lang/String; net/minecraft/server/rcon/RconConsoleSource/getCommandResponse ()Ljava/lang/String; +MD: net/minecraft/server/rcon/RconConsoleSource/m_11514_ ()Lnet/minecraft/commands/CommandSourceStack; net/minecraft/server/rcon/RconConsoleSource/createCommandSourceStack ()Lnet/minecraft/commands/CommandSourceStack; +MD: net/minecraft/server/rcon/RconConsoleSource/m_213846_ (Lnet/minecraft/network/chat/Component;)V net/minecraft/server/rcon/RconConsoleSource/sendSystemMessage (Lnet/minecraft/network/chat/Component;)V +MD: net/minecraft/server/rcon/RconConsoleSource/m_6102_ ()Z net/minecraft/server/rcon/RconConsoleSource/shouldInformAdmins ()Z +MD: net/minecraft/server/rcon/RconConsoleSource/m_6999_ ()Z net/minecraft/server/rcon/RconConsoleSource/acceptsSuccess ()Z +MD: net/minecraft/server/rcon/RconConsoleSource/m_7028_ ()Z net/minecraft/server/rcon/RconConsoleSource/acceptsFailure ()Z +MD: net/minecraft/server/rcon/thread/GenericThread/ ()V net/minecraft/server/rcon/thread/GenericThread/ ()V +MD: net/minecraft/server/rcon/thread/GenericThread/ (Ljava/lang/String;)V net/minecraft/server/rcon/thread/GenericThread/ (Ljava/lang/String;)V +MD: net/minecraft/server/rcon/thread/GenericThread/m_11523_ ()Z net/minecraft/server/rcon/thread/GenericThread/isRunning ()Z +MD: net/minecraft/server/rcon/thread/GenericThread/m_7528_ ()Z net/minecraft/server/rcon/thread/GenericThread/start ()Z +MD: net/minecraft/server/rcon/thread/GenericThread/m_7530_ ()V net/minecraft/server/rcon/thread/GenericThread/stop ()V +MD: net/minecraft/server/rcon/thread/QueryThreadGs4/ ()V net/minecraft/server/rcon/thread/QueryThreadGs4/ ()V +MD: net/minecraft/server/rcon/thread/QueryThreadGs4/ (Lnet/minecraft/server/ServerInterface;I)V net/minecraft/server/rcon/thread/QueryThreadGs4/ (Lnet/minecraft/server/ServerInterface;I)V +MD: net/minecraft/server/rcon/thread/QueryThreadGs4/m_11544_ (JLnet/minecraft/server/rcon/thread/QueryThreadGs4$RequestChallenge;)Z net/minecraft/server/rcon/thread/QueryThreadGs4/lambda$pruneChallenges$0 (JLnet/minecraft/server/rcon/thread/QueryThreadGs4$RequestChallenge;)Z +MD: net/minecraft/server/rcon/thread/QueryThreadGs4/m_11547_ (Ljava/lang/Exception;)V net/minecraft/server/rcon/thread/QueryThreadGs4/recoverSocketError (Ljava/lang/Exception;)V +MD: net/minecraft/server/rcon/thread/QueryThreadGs4/m_11549_ (Ljava/net/DatagramPacket;)Z net/minecraft/server/rcon/thread/QueryThreadGs4/processPacket (Ljava/net/DatagramPacket;)Z +MD: net/minecraft/server/rcon/thread/QueryThreadGs4/m_11551_ (Ljava/net/SocketAddress;)[B net/minecraft/server/rcon/thread/QueryThreadGs4/getIdentBytes (Ljava/net/SocketAddress;)[B +MD: net/minecraft/server/rcon/thread/QueryThreadGs4/m_11553_ (Lnet/minecraft/server/ServerInterface;)Lnet/minecraft/server/rcon/thread/QueryThreadGs4; net/minecraft/server/rcon/thread/QueryThreadGs4/create (Lnet/minecraft/server/ServerInterface;)Lnet/minecraft/server/rcon/thread/QueryThreadGs4; +MD: net/minecraft/server/rcon/thread/QueryThreadGs4/m_11555_ ([BLjava/net/DatagramPacket;)V net/minecraft/server/rcon/thread/QueryThreadGs4/sendTo ([BLjava/net/DatagramPacket;)V +MD: net/minecraft/server/rcon/thread/QueryThreadGs4/m_11558_ (Ljava/net/DatagramPacket;)[B net/minecraft/server/rcon/thread/QueryThreadGs4/buildRuleResponse (Ljava/net/DatagramPacket;)[B +MD: net/minecraft/server/rcon/thread/QueryThreadGs4/m_11560_ (Ljava/net/DatagramPacket;)Ljava/lang/Boolean; net/minecraft/server/rcon/thread/QueryThreadGs4/validChallenge (Ljava/net/DatagramPacket;)Ljava/lang/Boolean; +MD: net/minecraft/server/rcon/thread/QueryThreadGs4/m_11562_ ()V net/minecraft/server/rcon/thread/QueryThreadGs4/pruneChallenges ()V +MD: net/minecraft/server/rcon/thread/QueryThreadGs4/m_11563_ (Ljava/net/DatagramPacket;)V net/minecraft/server/rcon/thread/QueryThreadGs4/sendChallenge (Ljava/net/DatagramPacket;)V +MD: net/minecraft/server/rcon/thread/QueryThreadGs4/m_11565_ ()Z net/minecraft/server/rcon/thread/QueryThreadGs4/initSocket ()Z +MD: net/minecraft/server/rcon/thread/QueryThreadGs4/m_7528_ ()Z net/minecraft/server/rcon/thread/QueryThreadGs4/start ()Z +MD: net/minecraft/server/rcon/thread/QueryThreadGs4/run ()V net/minecraft/server/rcon/thread/QueryThreadGs4/run ()V +MD: net/minecraft/server/rcon/thread/QueryThreadGs4$RequestChallenge/ (Ljava/net/DatagramPacket;)V net/minecraft/server/rcon/thread/QueryThreadGs4$RequestChallenge/ (Ljava/net/DatagramPacket;)V +MD: net/minecraft/server/rcon/thread/QueryThreadGs4$RequestChallenge/m_11574_ ()I net/minecraft/server/rcon/thread/QueryThreadGs4$RequestChallenge/getChallenge ()I +MD: net/minecraft/server/rcon/thread/QueryThreadGs4$RequestChallenge/m_11575_ (J)Ljava/lang/Boolean; net/minecraft/server/rcon/thread/QueryThreadGs4$RequestChallenge/before (J)Ljava/lang/Boolean; +MD: net/minecraft/server/rcon/thread/QueryThreadGs4$RequestChallenge/m_11577_ ()[B net/minecraft/server/rcon/thread/QueryThreadGs4$RequestChallenge/getChallengeBytes ()[B +MD: net/minecraft/server/rcon/thread/QueryThreadGs4$RequestChallenge/m_11578_ ()[B net/minecraft/server/rcon/thread/QueryThreadGs4$RequestChallenge/getIdentBytes ()[B +MD: net/minecraft/server/rcon/thread/QueryThreadGs4$RequestChallenge/m_144028_ ()Ljava/lang/String; net/minecraft/server/rcon/thread/QueryThreadGs4$RequestChallenge/getIdent ()Ljava/lang/String; +MD: net/minecraft/server/rcon/thread/RconClient/ ()V net/minecraft/server/rcon/thread/RconClient/ ()V +MD: net/minecraft/server/rcon/thread/RconClient/ (Lnet/minecraft/server/ServerInterface;Ljava/lang/String;Ljava/net/Socket;)V net/minecraft/server/rcon/thread/RconClient/ (Lnet/minecraft/server/ServerInterface;Ljava/lang/String;Ljava/net/Socket;)V +MD: net/minecraft/server/rcon/thread/RconClient/m_11590_ (IILjava/lang/String;)V net/minecraft/server/rcon/thread/RconClient/send (IILjava/lang/String;)V +MD: net/minecraft/server/rcon/thread/RconClient/m_11594_ (ILjava/lang/String;)V net/minecraft/server/rcon/thread/RconClient/sendCmdResponse (ILjava/lang/String;)V +MD: net/minecraft/server/rcon/thread/RconClient/m_11598_ ()V net/minecraft/server/rcon/thread/RconClient/sendAuthFailure ()V +MD: net/minecraft/server/rcon/thread/RconClient/m_11599_ ()V net/minecraft/server/rcon/thread/RconClient/closeSocket ()V +MD: net/minecraft/server/rcon/thread/RconClient/m_7530_ ()V net/minecraft/server/rcon/thread/RconClient/stop ()V +MD: net/minecraft/server/rcon/thread/RconClient/run ()V net/minecraft/server/rcon/thread/RconClient/run ()V +MD: net/minecraft/server/rcon/thread/RconThread/ ()V net/minecraft/server/rcon/thread/RconThread/ ()V +MD: net/minecraft/server/rcon/thread/RconThread/ (Lnet/minecraft/server/ServerInterface;Ljava/net/ServerSocket;Ljava/lang/String;)V net/minecraft/server/rcon/thread/RconThread/ (Lnet/minecraft/server/ServerInterface;Ljava/net/ServerSocket;Ljava/lang/String;)V +MD: net/minecraft/server/rcon/thread/RconThread/m_11611_ (Lnet/minecraft/server/rcon/thread/RconClient;)Z net/minecraft/server/rcon/thread/RconThread/lambda$clearClients$0 (Lnet/minecraft/server/rcon/thread/RconClient;)Z +MD: net/minecraft/server/rcon/thread/RconThread/m_11613_ (Ljava/net/ServerSocket;)V net/minecraft/server/rcon/thread/RconThread/closeSocket (Ljava/net/ServerSocket;)V +MD: net/minecraft/server/rcon/thread/RconThread/m_11615_ (Lnet/minecraft/server/ServerInterface;)Lnet/minecraft/server/rcon/thread/RconThread; net/minecraft/server/rcon/thread/RconThread/create (Lnet/minecraft/server/ServerInterface;)Lnet/minecraft/server/rcon/thread/RconThread; +MD: net/minecraft/server/rcon/thread/RconThread/m_11618_ ()V net/minecraft/server/rcon/thread/RconThread/clearClients ()V +MD: net/minecraft/server/rcon/thread/RconThread/m_7530_ ()V net/minecraft/server/rcon/thread/RconThread/stop ()V +MD: net/minecraft/server/rcon/thread/RconThread/run ()V net/minecraft/server/rcon/thread/RconThread/run ()V +MD: net/minecraft/sounds/Music/ ()V net/minecraft/sounds/Music/ ()V +MD: net/minecraft/sounds/Music/ (Lnet/minecraft/core/Holder;IIZ)V net/minecraft/sounds/Music/ (Lnet/minecraft/core/Holder;IIZ)V +MD: net/minecraft/sounds/Music/m_11636_ ()I net/minecraft/sounds/Music/getMinDelay ()I +MD: net/minecraft/sounds/Music/m_11639_ ()I net/minecraft/sounds/Music/getMaxDelay ()I +MD: net/minecraft/sounds/Music/m_11642_ ()Z net/minecraft/sounds/Music/replaceCurrentMusic ()Z +MD: net/minecraft/sounds/Music/m_144034_ (Lnet/minecraft/sounds/Music;)Ljava/lang/Boolean; net/minecraft/sounds/Music/lambda$static$3 (Lnet/minecraft/sounds/Music;)Ljava/lang/Boolean; +MD: net/minecraft/sounds/Music/m_144036_ (Lnet/minecraft/sounds/Music;)Ljava/lang/Integer; net/minecraft/sounds/Music/lambda$static$2 (Lnet/minecraft/sounds/Music;)Ljava/lang/Integer; +MD: net/minecraft/sounds/Music/m_144038_ (Lnet/minecraft/sounds/Music;)Ljava/lang/Integer; net/minecraft/sounds/Music/lambda$static$1 (Lnet/minecraft/sounds/Music;)Ljava/lang/Integer; +MD: net/minecraft/sounds/Music/m_263158_ (Lnet/minecraft/sounds/Music;)Lnet/minecraft/core/Holder; net/minecraft/sounds/Music/lambda$static$0 (Lnet/minecraft/sounds/Music;)Lnet/minecraft/core/Holder; +MD: net/minecraft/sounds/Music/m_263159_ (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/sounds/Music/lambda$static$4 (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/sounds/Music/m_263193_ ()Lnet/minecraft/core/Holder; net/minecraft/sounds/Music/getEvent ()Lnet/minecraft/core/Holder; +MD: net/minecraft/sounds/Musics/ ()V net/minecraft/sounds/Musics/ ()V +MD: net/minecraft/sounds/Musics/ ()V net/minecraft/sounds/Musics/ ()V +MD: net/minecraft/sounds/Musics/m_263184_ (Lnet/minecraft/core/Holder;)Lnet/minecraft/sounds/Music; net/minecraft/sounds/Musics/createGameMusic (Lnet/minecraft/core/Holder;)Lnet/minecraft/sounds/Music; +MD: net/minecraft/sounds/SoundEvent/ ()V net/minecraft/sounds/SoundEvent/ ()V +MD: net/minecraft/sounds/SoundEvent/ (Lnet/minecraft/resources/ResourceLocation;FZ)V net/minecraft/sounds/SoundEvent/ (Lnet/minecraft/resources/ResourceLocation;FZ)V +MD: net/minecraft/sounds/SoundEvent/m_11660_ ()Lnet/minecraft/resources/ResourceLocation; net/minecraft/sounds/SoundEvent/getLocation ()Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/sounds/SoundEvent/m_215668_ (F)F net/minecraft/sounds/SoundEvent/getRange (F)F +MD: net/minecraft/sounds/SoundEvent/m_262824_ (Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/sounds/SoundEvent; net/minecraft/sounds/SoundEvent/createVariableRangeEvent (Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/sounds/SoundEvent/m_262856_ (Lnet/minecraft/resources/ResourceLocation;F)Lnet/minecraft/sounds/SoundEvent; net/minecraft/sounds/SoundEvent/createFixedRangeEvent (Lnet/minecraft/resources/ResourceLocation;F)Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/sounds/SoundEvent/m_263192_ (Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/sounds/SoundEvent; net/minecraft/sounds/SoundEvent/lambda$create$2 (Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/sounds/SoundEvent/m_263201_ ()Ljava/util/Optional; net/minecraft/sounds/SoundEvent/fixedRange ()Ljava/util/Optional; +MD: net/minecraft/sounds/SoundEvent/m_263213_ (Lnet/minecraft/resources/ResourceLocation;Ljava/lang/Float;)Lnet/minecraft/sounds/SoundEvent; net/minecraft/sounds/SoundEvent/lambda$create$1 (Lnet/minecraft/resources/ResourceLocation;Ljava/lang/Float;)Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/sounds/SoundEvent/m_263214_ (Lnet/minecraft/network/FriendlyByteBuf;)Lnet/minecraft/sounds/SoundEvent; net/minecraft/sounds/SoundEvent/readFromNetwork (Lnet/minecraft/network/FriendlyByteBuf;)Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/sounds/SoundEvent/m_263227_ (Lnet/minecraft/resources/ResourceLocation;Ljava/util/Optional;)Lnet/minecraft/sounds/SoundEvent; net/minecraft/sounds/SoundEvent/create (Lnet/minecraft/resources/ResourceLocation;Ljava/util/Optional;)Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/sounds/SoundEvent/m_263231_ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/sounds/SoundEvent/writeToNetwork (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/sounds/SoundEvent/m_263241_ (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/sounds/SoundEvent/lambda$static$0 (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/sounds/SoundEvents/ ()V net/minecraft/sounds/SoundEvents/ ()V +MD: net/minecraft/sounds/SoundEvents/ ()V net/minecraft/sounds/SoundEvents/ ()V +MD: net/minecraft/sounds/SoundEvents/m_12656_ (Ljava/lang/String;)Lnet/minecraft/sounds/SoundEvent; net/minecraft/sounds/SoundEvents/register (Ljava/lang/String;)Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/sounds/SoundEvents/m_215782_ ()Lcom/google/common/collect/ImmutableList; net/minecraft/sounds/SoundEvents/registerGoatHornSoundVariants ()Lcom/google/common/collect/ImmutableList; +MD: net/minecraft/sounds/SoundEvents/m_263160_ (I)Lnet/minecraft/core/Holder$Reference; net/minecraft/sounds/SoundEvents/lambda$registerGoatHornSoundVariants$0 (I)Lnet/minecraft/core/Holder$Reference; +MD: net/minecraft/sounds/SoundEvents/m_263178_ (Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/core/Holder$Reference; net/minecraft/sounds/SoundEvents/registerForHolder (Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/core/Holder$Reference; +MD: net/minecraft/sounds/SoundEvents/m_263198_ (Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/resources/ResourceLocation;F)Lnet/minecraft/core/Holder; net/minecraft/sounds/SoundEvents/register (Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/resources/ResourceLocation;F)Lnet/minecraft/core/Holder; +MD: net/minecraft/sounds/SoundEvents/m_263204_ (Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/sounds/SoundEvent; net/minecraft/sounds/SoundEvents/register (Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/sounds/SoundEvents/m_263223_ (Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/core/Holder$Reference; net/minecraft/sounds/SoundEvents/registerForHolder (Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/core/Holder$Reference; +MD: net/minecraft/sounds/SoundEvents/m_263226_ (Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/sounds/SoundEvent; net/minecraft/sounds/SoundEvents/register (Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/sounds/SoundEvents/m_263237_ (Ljava/lang/String;)Lnet/minecraft/core/Holder$Reference; net/minecraft/sounds/SoundEvents/registerForHolder (Ljava/lang/String;)Lnet/minecraft/core/Holder$Reference; +MD: net/minecraft/sounds/SoundSource/ ()V net/minecraft/sounds/SoundSource/ ()V +MD: net/minecraft/sounds/SoundSource/ (Ljava/lang/String;ILjava/lang/String;)V net/minecraft/sounds/SoundSource/ (Ljava/lang/String;ILjava/lang/String;)V +MD: net/minecraft/sounds/SoundSource/m_12676_ ()Ljava/lang/String; net/minecraft/sounds/SoundSource/getName ()Ljava/lang/String; +MD: net/minecraft/sounds/SoundSource/m_144247_ ()[Lnet/minecraft/sounds/SoundSource; net/minecraft/sounds/SoundSource/$values ()[Lnet/minecraft/sounds/SoundSource; +MD: net/minecraft/sounds/SoundSource/valueOf (Ljava/lang/String;)Lnet/minecraft/sounds/SoundSource; net/minecraft/sounds/SoundSource/valueOf (Ljava/lang/String;)Lnet/minecraft/sounds/SoundSource; +MD: net/minecraft/sounds/SoundSource/values ()[Lnet/minecraft/sounds/SoundSource; net/minecraft/sounds/SoundSource/values ()[Lnet/minecraft/sounds/SoundSource; +MD: net/minecraft/stats/RecipeBook/ ()V net/minecraft/stats/RecipeBook/ ()V +MD: net/minecraft/stats/RecipeBook/m_12684_ ()Lnet/minecraft/stats/RecipeBookSettings; net/minecraft/stats/RecipeBook/getBookSettings ()Lnet/minecraft/stats/RecipeBookSettings; +MD: net/minecraft/stats/RecipeBook/m_12685_ (Lnet/minecraft/stats/RecipeBook;)V net/minecraft/stats/RecipeBook/copyOverData (Lnet/minecraft/stats/RecipeBook;)V +MD: net/minecraft/stats/RecipeBook/m_12687_ (Lnet/minecraft/stats/RecipeBookSettings;)V net/minecraft/stats/RecipeBook/setBookSettings (Lnet/minecraft/stats/RecipeBookSettings;)V +MD: net/minecraft/stats/RecipeBook/m_12689_ (Lnet/minecraft/world/inventory/RecipeBookMenu;)Z net/minecraft/stats/RecipeBook/isFiltering (Lnet/minecraft/world/inventory/RecipeBookMenu;)Z +MD: net/minecraft/stats/RecipeBook/m_12691_ (Lnet/minecraft/world/inventory/RecipeBookType;)Z net/minecraft/stats/RecipeBook/isOpen (Lnet/minecraft/world/inventory/RecipeBookType;)Z +MD: net/minecraft/stats/RecipeBook/m_12693_ (Lnet/minecraft/world/inventory/RecipeBookType;Z)V net/minecraft/stats/RecipeBook/setOpen (Lnet/minecraft/world/inventory/RecipeBookType;Z)V +MD: net/minecraft/stats/RecipeBook/m_12696_ (Lnet/minecraft/world/inventory/RecipeBookType;ZZ)V net/minecraft/stats/RecipeBook/setBookSetting (Lnet/minecraft/world/inventory/RecipeBookType;ZZ)V +MD: net/minecraft/stats/RecipeBook/m_12700_ (Lnet/minecraft/world/item/crafting/Recipe;)V net/minecraft/stats/RecipeBook/add (Lnet/minecraft/world/item/crafting/Recipe;)V +MD: net/minecraft/stats/RecipeBook/m_12702_ (Lnet/minecraft/resources/ResourceLocation;)V net/minecraft/stats/RecipeBook/add (Lnet/minecraft/resources/ResourceLocation;)V +MD: net/minecraft/stats/RecipeBook/m_12704_ (Lnet/minecraft/world/inventory/RecipeBookType;)Z net/minecraft/stats/RecipeBook/isFiltering (Lnet/minecraft/world/inventory/RecipeBookType;)Z +MD: net/minecraft/stats/RecipeBook/m_12706_ (Lnet/minecraft/world/inventory/RecipeBookType;Z)V net/minecraft/stats/RecipeBook/setFiltering (Lnet/minecraft/world/inventory/RecipeBookType;Z)V +MD: net/minecraft/stats/RecipeBook/m_12709_ (Lnet/minecraft/world/item/crafting/Recipe;)Z net/minecraft/stats/RecipeBook/contains (Lnet/minecraft/world/item/crafting/Recipe;)Z +MD: net/minecraft/stats/RecipeBook/m_12711_ (Lnet/minecraft/resources/ResourceLocation;)Z net/minecraft/stats/RecipeBook/contains (Lnet/minecraft/resources/ResourceLocation;)Z +MD: net/minecraft/stats/RecipeBook/m_12713_ (Lnet/minecraft/world/item/crafting/Recipe;)V net/minecraft/stats/RecipeBook/remove (Lnet/minecraft/world/item/crafting/Recipe;)V +MD: net/minecraft/stats/RecipeBook/m_12715_ (Lnet/minecraft/resources/ResourceLocation;)V net/minecraft/stats/RecipeBook/remove (Lnet/minecraft/resources/ResourceLocation;)V +MD: net/minecraft/stats/RecipeBook/m_12717_ (Lnet/minecraft/world/item/crafting/Recipe;)Z net/minecraft/stats/RecipeBook/willHighlight (Lnet/minecraft/world/item/crafting/Recipe;)Z +MD: net/minecraft/stats/RecipeBook/m_12719_ (Lnet/minecraft/resources/ResourceLocation;)V net/minecraft/stats/RecipeBook/addHighlight (Lnet/minecraft/resources/ResourceLocation;)V +MD: net/minecraft/stats/RecipeBook/m_12721_ (Lnet/minecraft/world/item/crafting/Recipe;)V net/minecraft/stats/RecipeBook/removeHighlight (Lnet/minecraft/world/item/crafting/Recipe;)V +MD: net/minecraft/stats/RecipeBook/m_12723_ (Lnet/minecraft/world/item/crafting/Recipe;)V net/minecraft/stats/RecipeBook/addHighlight (Lnet/minecraft/world/item/crafting/Recipe;)V +MD: net/minecraft/stats/RecipeBookSettings/ ()V net/minecraft/stats/RecipeBookSettings/ ()V +MD: net/minecraft/stats/RecipeBookSettings/ (Ljava/util/Map;)V net/minecraft/stats/RecipeBookSettings/ (Ljava/util/Map;)V +MD: net/minecraft/stats/RecipeBookSettings/ ()V net/minecraft/stats/RecipeBookSettings/ ()V +MD: net/minecraft/stats/RecipeBookSettings/equals (Ljava/lang/Object;)Z net/minecraft/stats/RecipeBookSettings/equals (Ljava/lang/Object;)Z +MD: net/minecraft/stats/RecipeBookSettings/hashCode ()I net/minecraft/stats/RecipeBookSettings/hashCode ()I +MD: net/minecraft/stats/RecipeBookSettings/m_12731_ ()Lnet/minecraft/stats/RecipeBookSettings; net/minecraft/stats/RecipeBookSettings/copy ()Lnet/minecraft/stats/RecipeBookSettings; +MD: net/minecraft/stats/RecipeBookSettings/m_12732_ (Lnet/minecraft/stats/RecipeBookSettings;)V net/minecraft/stats/RecipeBookSettings/replaceFrom (Lnet/minecraft/stats/RecipeBookSettings;)V +MD: net/minecraft/stats/RecipeBookSettings/m_12734_ (Lnet/minecraft/world/inventory/RecipeBookType;)Z net/minecraft/stats/RecipeBookSettings/isOpen (Lnet/minecraft/world/inventory/RecipeBookType;)Z +MD: net/minecraft/stats/RecipeBookSettings/m_12736_ (Lnet/minecraft/world/inventory/RecipeBookType;Z)V net/minecraft/stats/RecipeBookSettings/setOpen (Lnet/minecraft/world/inventory/RecipeBookType;Z)V +MD: net/minecraft/stats/RecipeBookSettings/m_12739_ (Ljava/util/EnumMap;)V net/minecraft/stats/RecipeBookSettings/lambda$new$0 (Ljava/util/EnumMap;)V +MD: net/minecraft/stats/RecipeBookSettings/m_12741_ (Lnet/minecraft/nbt/CompoundTag;)Lnet/minecraft/stats/RecipeBookSettings; net/minecraft/stats/RecipeBookSettings/read (Lnet/minecraft/nbt/CompoundTag;)Lnet/minecraft/stats/RecipeBookSettings; +MD: net/minecraft/stats/RecipeBookSettings/m_12743_ (Lnet/minecraft/nbt/CompoundTag;Lnet/minecraft/world/inventory/RecipeBookType;Lcom/mojang/datafixers/util/Pair;)V net/minecraft/stats/RecipeBookSettings/lambda$write$2 (Lnet/minecraft/nbt/CompoundTag;Lnet/minecraft/world/inventory/RecipeBookType;Lcom/mojang/datafixers/util/Pair;)V +MD: net/minecraft/stats/RecipeBookSettings/m_12747_ (Lnet/minecraft/nbt/CompoundTag;Ljava/util/Map;Lnet/minecraft/world/inventory/RecipeBookType;Lcom/mojang/datafixers/util/Pair;)V net/minecraft/stats/RecipeBookSettings/lambda$read$1 (Lnet/minecraft/nbt/CompoundTag;Ljava/util/Map;Lnet/minecraft/world/inventory/RecipeBookType;Lcom/mojang/datafixers/util/Pair;)V +MD: net/minecraft/stats/RecipeBookSettings/m_12752_ (Lnet/minecraft/network/FriendlyByteBuf;)Lnet/minecraft/stats/RecipeBookSettings; net/minecraft/stats/RecipeBookSettings/read (Lnet/minecraft/network/FriendlyByteBuf;)Lnet/minecraft/stats/RecipeBookSettings; +MD: net/minecraft/stats/RecipeBookSettings/m_12754_ (Lnet/minecraft/world/inventory/RecipeBookType;)Z net/minecraft/stats/RecipeBookSettings/isFiltering (Lnet/minecraft/world/inventory/RecipeBookType;)Z +MD: net/minecraft/stats/RecipeBookSettings/m_12756_ (Lnet/minecraft/world/inventory/RecipeBookType;Z)V net/minecraft/stats/RecipeBookSettings/setFiltering (Lnet/minecraft/world/inventory/RecipeBookType;Z)V +MD: net/minecraft/stats/RecipeBookSettings/m_12759_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/stats/RecipeBookSettings/write (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/stats/RecipeBookSettings/m_12761_ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/stats/RecipeBookSettings/write (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/stats/RecipeBookSettings$TypeSettings/ (ZZ)V net/minecraft/stats/RecipeBookSettings$TypeSettings/ (ZZ)V +MD: net/minecraft/stats/RecipeBookSettings$TypeSettings/equals (Ljava/lang/Object;)Z net/minecraft/stats/RecipeBookSettings$TypeSettings/equals (Ljava/lang/Object;)Z +MD: net/minecraft/stats/RecipeBookSettings$TypeSettings/hashCode ()I net/minecraft/stats/RecipeBookSettings$TypeSettings/hashCode ()I +MD: net/minecraft/stats/RecipeBookSettings$TypeSettings/m_12771_ ()Lnet/minecraft/stats/RecipeBookSettings$TypeSettings; net/minecraft/stats/RecipeBookSettings$TypeSettings/copy ()Lnet/minecraft/stats/RecipeBookSettings$TypeSettings; +MD: net/minecraft/stats/RecipeBookSettings$TypeSettings/toString ()Ljava/lang/String; net/minecraft/stats/RecipeBookSettings$TypeSettings/toString ()Ljava/lang/String; +MD: net/minecraft/stats/ServerRecipeBook/ ()V net/minecraft/stats/ServerRecipeBook/ ()V +MD: net/minecraft/stats/ServerRecipeBook/ ()V net/minecraft/stats/ServerRecipeBook/ ()V +MD: net/minecraft/stats/ServerRecipeBook/m_12789_ (Lnet/minecraft/server/level/ServerPlayer;)V net/minecraft/stats/ServerRecipeBook/sendInitialRecipeBook (Lnet/minecraft/server/level/ServerPlayer;)V +MD: net/minecraft/stats/ServerRecipeBook/m_12791_ (Ljava/util/Collection;Lnet/minecraft/server/level/ServerPlayer;)I net/minecraft/stats/ServerRecipeBook/addRecipes (Ljava/util/Collection;Lnet/minecraft/server/level/ServerPlayer;)I +MD: net/minecraft/stats/ServerRecipeBook/m_12794_ (Lnet/minecraft/nbt/CompoundTag;Lnet/minecraft/world/item/crafting/RecipeManager;)V net/minecraft/stats/ServerRecipeBook/fromNbt (Lnet/minecraft/nbt/CompoundTag;Lnet/minecraft/world/item/crafting/RecipeManager;)V +MD: net/minecraft/stats/ServerRecipeBook/m_12797_ (Lnet/minecraft/nbt/ListTag;Ljava/util/function/Consumer;Lnet/minecraft/world/item/crafting/RecipeManager;)V net/minecraft/stats/ServerRecipeBook/loadRecipes (Lnet/minecraft/nbt/ListTag;Ljava/util/function/Consumer;Lnet/minecraft/world/item/crafting/RecipeManager;)V +MD: net/minecraft/stats/ServerRecipeBook/m_12801_ (Lnet/minecraft/network/protocol/game/ClientboundRecipePacket$State;Lnet/minecraft/server/level/ServerPlayer;Ljava/util/List;)V net/minecraft/stats/ServerRecipeBook/sendRecipes (Lnet/minecraft/network/protocol/game/ClientboundRecipePacket$State;Lnet/minecraft/server/level/ServerPlayer;Ljava/util/List;)V +MD: net/minecraft/stats/ServerRecipeBook/m_12805_ ()Lnet/minecraft/nbt/CompoundTag; net/minecraft/stats/ServerRecipeBook/toNbt ()Lnet/minecraft/nbt/CompoundTag; +MD: net/minecraft/stats/ServerRecipeBook/m_12806_ (Ljava/util/Collection;Lnet/minecraft/server/level/ServerPlayer;)I net/minecraft/stats/ServerRecipeBook/removeRecipes (Ljava/util/Collection;Lnet/minecraft/server/level/ServerPlayer;)I +MD: net/minecraft/stats/ServerStatsCounter/ ()V net/minecraft/stats/ServerStatsCounter/ ()V +MD: net/minecraft/stats/ServerStatsCounter/ (Lnet/minecraft/server/MinecraftServer;Ljava/io/File;)V net/minecraft/stats/ServerStatsCounter/ (Lnet/minecraft/server/MinecraftServer;Ljava/io/File;)V +MD: net/minecraft/stats/ServerStatsCounter/m_12818_ ()V net/minecraft/stats/ServerStatsCounter/save ()V +MD: net/minecraft/stats/ServerStatsCounter/m_12819_ (Lnet/minecraft/server/level/ServerPlayer;)V net/minecraft/stats/ServerStatsCounter/sendStats (Lnet/minecraft/server/level/ServerPlayer;)V +MD: net/minecraft/stats/ServerStatsCounter/m_12821_ (Lnet/minecraft/stats/StatType;)Lcom/google/gson/JsonObject; net/minecraft/stats/ServerStatsCounter/lambda$toJson$4 (Lnet/minecraft/stats/StatType;)Lcom/google/gson/JsonObject; +MD: net/minecraft/stats/ServerStatsCounter/m_12823_ (Lnet/minecraft/stats/StatType;Ljava/lang/String;)Ljava/util/Optional; net/minecraft/stats/ServerStatsCounter/getStat (Lnet/minecraft/stats/StatType;Ljava/lang/String;)Ljava/util/Optional; +MD: net/minecraft/stats/ServerStatsCounter/m_12830_ (Lcom/google/gson/JsonObject;)Lnet/minecraft/nbt/CompoundTag; net/minecraft/stats/ServerStatsCounter/fromJson (Lcom/google/gson/JsonObject;)Lnet/minecraft/nbt/CompoundTag; +MD: net/minecraft/stats/ServerStatsCounter/m_12832_ (Lcom/mojang/datafixers/DataFixer;Ljava/lang/String;)V net/minecraft/stats/ServerStatsCounter/parseLocal (Lcom/mojang/datafixers/DataFixer;Ljava/lang/String;)V +MD: net/minecraft/stats/ServerStatsCounter/m_12835_ (Ljava/lang/String;)V net/minecraft/stats/ServerStatsCounter/lambda$parseLocal$3 (Ljava/lang/String;)V +MD: net/minecraft/stats/ServerStatsCounter/m_12841_ (Lnet/minecraft/nbt/CompoundTag;Ljava/lang/String;Lnet/minecraft/stats/StatType;)V net/minecraft/stats/ServerStatsCounter/lambda$parseLocal$2 (Lnet/minecraft/nbt/CompoundTag;Ljava/lang/String;Lnet/minecraft/stats/StatType;)V +MD: net/minecraft/stats/ServerStatsCounter/m_12845_ ()Ljava/lang/String; net/minecraft/stats/ServerStatsCounter/toJson ()Ljava/lang/String; +MD: net/minecraft/stats/ServerStatsCounter/m_12846_ (Lnet/minecraft/stats/Stat;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/stats/ServerStatsCounter/getKey (Lnet/minecraft/stats/Stat;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/stats/ServerStatsCounter/m_12850_ ()V net/minecraft/stats/ServerStatsCounter/markAllDirty ()V +MD: net/minecraft/stats/ServerStatsCounter/m_12851_ ()Ljava/util/Set; net/minecraft/stats/ServerStatsCounter/getDirty ()Ljava/util/Set; +MD: net/minecraft/stats/ServerStatsCounter/m_144249_ (Lnet/minecraft/nbt/CompoundTag;Ljava/lang/String;Lnet/minecraft/stats/Stat;)V net/minecraft/stats/ServerStatsCounter/lambda$parseLocal$0 (Lnet/minecraft/nbt/CompoundTag;Ljava/lang/String;Lnet/minecraft/stats/Stat;)V +MD: net/minecraft/stats/ServerStatsCounter/m_144253_ (Ljava/lang/String;)V net/minecraft/stats/ServerStatsCounter/lambda$parseLocal$1 (Ljava/lang/String;)V +MD: net/minecraft/stats/ServerStatsCounter/m_6085_ (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/stats/Stat;I)V net/minecraft/stats/ServerStatsCounter/setValue (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/stats/Stat;I)V +MD: net/minecraft/stats/Stat/ (Lnet/minecraft/stats/StatType;Ljava/lang/Object;Lnet/minecraft/stats/StatFormatter;)V net/minecraft/stats/Stat/ (Lnet/minecraft/stats/StatType;Ljava/lang/Object;Lnet/minecraft/stats/StatFormatter;)V +MD: net/minecraft/stats/Stat/equals (Ljava/lang/Object;)Z net/minecraft/stats/Stat/equals (Ljava/lang/Object;)Z +MD: net/minecraft/stats/Stat/hashCode ()I net/minecraft/stats/Stat/hashCode ()I +MD: net/minecraft/stats/Stat/m_12859_ ()Lnet/minecraft/stats/StatType; net/minecraft/stats/Stat/getType ()Lnet/minecraft/stats/StatType; +MD: net/minecraft/stats/Stat/m_12860_ (I)Ljava/lang/String; net/minecraft/stats/Stat/format (I)Ljava/lang/String; +MD: net/minecraft/stats/Stat/m_12862_ (Lnet/minecraft/stats/StatType;Ljava/lang/Object;)Ljava/lang/String; net/minecraft/stats/Stat/buildName (Lnet/minecraft/stats/StatType;Ljava/lang/Object;)Ljava/lang/String; +MD: net/minecraft/stats/Stat/m_12865_ (Lnet/minecraft/resources/ResourceLocation;)Ljava/lang/String; net/minecraft/stats/Stat/locationToKey (Lnet/minecraft/resources/ResourceLocation;)Ljava/lang/String; +MD: net/minecraft/stats/Stat/m_12867_ ()Ljava/lang/Object; net/minecraft/stats/Stat/getValue ()Ljava/lang/Object; +MD: net/minecraft/stats/Stat/toString ()Ljava/lang/String; net/minecraft/stats/Stat/toString ()Ljava/lang/String; +MD: net/minecraft/stats/StatFormatter/ ()V net/minecraft/stats/StatFormatter/ ()V +MD: net/minecraft/stats/StatFormatter/m_12878_ (I)Ljava/lang/String; net/minecraft/stats/StatFormatter/lambda$static$3 (I)Ljava/lang/String; +MD: net/minecraft/stats/StatFormatter/m_12880_ (Ljava/text/DecimalFormat;)V net/minecraft/stats/StatFormatter/lambda$static$0 (Ljava/text/DecimalFormat;)V +MD: net/minecraft/stats/StatFormatter/m_12882_ (I)Ljava/lang/String; net/minecraft/stats/StatFormatter/lambda$static$2 (I)Ljava/lang/String; +MD: net/minecraft/stats/StatFormatter/m_12884_ (I)Ljava/lang/String; net/minecraft/stats/StatFormatter/lambda$static$1 (I)Ljava/lang/String; +MD: net/minecraft/stats/StatFormatter/m_12886_ (I)Ljava/lang/String; net/minecraft/stats/StatFormatter/format (I)Ljava/lang/String; +MD: net/minecraft/stats/StatType/ (Lnet/minecraft/core/Registry;)V net/minecraft/stats/StatType/ (Lnet/minecraft/core/Registry;)V +MD: net/minecraft/stats/StatType/iterator ()Ljava/util/Iterator; net/minecraft/stats/StatType/iterator ()Ljava/util/Iterator; +MD: net/minecraft/stats/StatType/m_12893_ ()Lnet/minecraft/core/Registry; net/minecraft/stats/StatType/getRegistry ()Lnet/minecraft/core/Registry; +MD: net/minecraft/stats/StatType/m_12894_ (Lnet/minecraft/stats/StatFormatter;Ljava/lang/Object;)Lnet/minecraft/stats/Stat; net/minecraft/stats/StatType/lambda$get$0 (Lnet/minecraft/stats/StatFormatter;Ljava/lang/Object;)Lnet/minecraft/stats/Stat; +MD: net/minecraft/stats/StatType/m_12897_ (Ljava/lang/Object;)Z net/minecraft/stats/StatType/contains (Ljava/lang/Object;)Z +MD: net/minecraft/stats/StatType/m_12899_ (Ljava/lang/Object;Lnet/minecraft/stats/StatFormatter;)Lnet/minecraft/stats/Stat; net/minecraft/stats/StatType/get (Ljava/lang/Object;Lnet/minecraft/stats/StatFormatter;)Lnet/minecraft/stats/Stat; +MD: net/minecraft/stats/StatType/m_12902_ (Ljava/lang/Object;)Lnet/minecraft/stats/Stat; net/minecraft/stats/StatType/get (Ljava/lang/Object;)Lnet/minecraft/stats/Stat; +MD: net/minecraft/stats/StatType/m_12904_ ()Ljava/lang/String; net/minecraft/stats/StatType/getTranslationKey ()Ljava/lang/String; +MD: net/minecraft/stats/StatType/m_12905_ ()Lnet/minecraft/network/chat/Component; net/minecraft/stats/StatType/getDisplayName ()Lnet/minecraft/network/chat/Component; +MD: net/minecraft/stats/Stats/ ()V net/minecraft/stats/Stats/ ()V +MD: net/minecraft/stats/Stats/ ()V net/minecraft/stats/Stats/ ()V +MD: net/minecraft/stats/Stats/m_13007_ (Ljava/lang/String;Lnet/minecraft/stats/StatFormatter;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/stats/Stats/makeCustomStat (Ljava/lang/String;Lnet/minecraft/stats/StatFormatter;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/stats/Stats/m_13010_ (Ljava/lang/String;Lnet/minecraft/core/Registry;)Lnet/minecraft/stats/StatType; net/minecraft/stats/Stats/makeRegistryStatType (Ljava/lang/String;Lnet/minecraft/core/Registry;)Lnet/minecraft/stats/StatType; +MD: net/minecraft/stats/StatsCounter/ ()V net/minecraft/stats/StatsCounter/ ()V +MD: net/minecraft/stats/StatsCounter/m_13015_ (Lnet/minecraft/stats/Stat;)I net/minecraft/stats/StatsCounter/getValue (Lnet/minecraft/stats/Stat;)I +MD: net/minecraft/stats/StatsCounter/m_13017_ (Lnet/minecraft/stats/StatType;Ljava/lang/Object;)I net/minecraft/stats/StatsCounter/getValue (Lnet/minecraft/stats/StatType;Ljava/lang/Object;)I +MD: net/minecraft/stats/StatsCounter/m_13023_ (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/stats/Stat;I)V net/minecraft/stats/StatsCounter/increment (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/stats/Stat;I)V +MD: net/minecraft/stats/StatsCounter/m_6085_ (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/stats/Stat;I)V net/minecraft/stats/StatsCounter/setValue (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/stats/Stat;I)V +MD: net/minecraft/tags/BannerPatternTags/ ()V net/minecraft/tags/BannerPatternTags/ ()V +MD: net/minecraft/tags/BannerPatternTags/ ()V net/minecraft/tags/BannerPatternTags/ ()V +MD: net/minecraft/tags/BannerPatternTags/m_215797_ (Ljava/lang/String;)Lnet/minecraft/tags/TagKey; net/minecraft/tags/BannerPatternTags/create (Ljava/lang/String;)Lnet/minecraft/tags/TagKey; +MD: net/minecraft/tags/BiomeTags/ ()V net/minecraft/tags/BiomeTags/ ()V +MD: net/minecraft/tags/BiomeTags/ ()V net/minecraft/tags/BiomeTags/ ()V +MD: net/minecraft/tags/BiomeTags/m_207630_ (Ljava/lang/String;)Lnet/minecraft/tags/TagKey; net/minecraft/tags/BiomeTags/create (Ljava/lang/String;)Lnet/minecraft/tags/TagKey; +MD: net/minecraft/tags/BlockTags/ ()V net/minecraft/tags/BlockTags/ ()V +MD: net/minecraft/tags/BlockTags/ ()V net/minecraft/tags/BlockTags/ ()V +MD: net/minecraft/tags/BlockTags/m_203846_ (Ljava/lang/String;)Lnet/minecraft/tags/TagKey; net/minecraft/tags/BlockTags/create (Ljava/lang/String;)Lnet/minecraft/tags/TagKey; +MD: net/minecraft/tags/CatVariantTags/ ()V net/minecraft/tags/CatVariantTags/ ()V +MD: net/minecraft/tags/CatVariantTags/ ()V net/minecraft/tags/CatVariantTags/ ()V +MD: net/minecraft/tags/CatVariantTags/m_215845_ (Ljava/lang/String;)Lnet/minecraft/tags/TagKey; net/minecraft/tags/CatVariantTags/create (Ljava/lang/String;)Lnet/minecraft/tags/TagKey; +MD: net/minecraft/tags/DamageTypeTags/ ()V net/minecraft/tags/DamageTypeTags/ ()V +MD: net/minecraft/tags/DamageTypeTags/m_269529_ (Ljava/lang/String;)Lnet/minecraft/tags/TagKey; net/minecraft/tags/DamageTypeTags/create (Ljava/lang/String;)Lnet/minecraft/tags/TagKey; +MD: net/minecraft/tags/EntityTypeTags/ ()V net/minecraft/tags/EntityTypeTags/ ()V +MD: net/minecraft/tags/EntityTypeTags/ ()V net/minecraft/tags/EntityTypeTags/ ()V +MD: net/minecraft/tags/EntityTypeTags/m_203848_ (Ljava/lang/String;)Lnet/minecraft/tags/TagKey; net/minecraft/tags/EntityTypeTags/create (Ljava/lang/String;)Lnet/minecraft/tags/TagKey; +MD: net/minecraft/tags/FlatLevelGeneratorPresetTags/ ()V net/minecraft/tags/FlatLevelGeneratorPresetTags/ ()V +MD: net/minecraft/tags/FlatLevelGeneratorPresetTags/ ()V net/minecraft/tags/FlatLevelGeneratorPresetTags/ ()V +MD: net/minecraft/tags/FlatLevelGeneratorPresetTags/m_215851_ (Ljava/lang/String;)Lnet/minecraft/tags/TagKey; net/minecraft/tags/FlatLevelGeneratorPresetTags/create (Ljava/lang/String;)Lnet/minecraft/tags/TagKey; +MD: net/minecraft/tags/FluidTags/ ()V net/minecraft/tags/FluidTags/ ()V +MD: net/minecraft/tags/FluidTags/ ()V net/minecraft/tags/FluidTags/ ()V +MD: net/minecraft/tags/FluidTags/m_203850_ (Ljava/lang/String;)Lnet/minecraft/tags/TagKey; net/minecraft/tags/FluidTags/create (Ljava/lang/String;)Lnet/minecraft/tags/TagKey; +MD: net/minecraft/tags/GameEventTags/ ()V net/minecraft/tags/GameEventTags/ ()V +MD: net/minecraft/tags/GameEventTags/ ()V net/minecraft/tags/GameEventTags/ ()V +MD: net/minecraft/tags/GameEventTags/m_203852_ (Ljava/lang/String;)Lnet/minecraft/tags/TagKey; net/minecraft/tags/GameEventTags/create (Ljava/lang/String;)Lnet/minecraft/tags/TagKey; +MD: net/minecraft/tags/InstrumentTags/ ()V net/minecraft/tags/InstrumentTags/ ()V +MD: net/minecraft/tags/InstrumentTags/m_215860_ (Ljava/lang/String;)Lnet/minecraft/tags/TagKey; net/minecraft/tags/InstrumentTags/create (Ljava/lang/String;)Lnet/minecraft/tags/TagKey; +MD: net/minecraft/tags/ItemTags/ ()V net/minecraft/tags/ItemTags/ ()V +MD: net/minecraft/tags/ItemTags/ ()V net/minecraft/tags/ItemTags/ ()V +MD: net/minecraft/tags/ItemTags/m_203854_ (Ljava/lang/String;)Lnet/minecraft/tags/TagKey; net/minecraft/tags/ItemTags/bind (Ljava/lang/String;)Lnet/minecraft/tags/TagKey; +MD: net/minecraft/tags/PaintingVariantTags/ ()V net/minecraft/tags/PaintingVariantTags/ ()V +MD: net/minecraft/tags/PaintingVariantTags/ ()V net/minecraft/tags/PaintingVariantTags/ ()V +MD: net/minecraft/tags/PaintingVariantTags/m_215873_ (Ljava/lang/String;)Lnet/minecraft/tags/TagKey; net/minecraft/tags/PaintingVariantTags/create (Ljava/lang/String;)Lnet/minecraft/tags/TagKey; +MD: net/minecraft/tags/PoiTypeTags/ ()V net/minecraft/tags/PoiTypeTags/ ()V +MD: net/minecraft/tags/PoiTypeTags/ ()V net/minecraft/tags/PoiTypeTags/ ()V +MD: net/minecraft/tags/PoiTypeTags/m_215880_ (Ljava/lang/String;)Lnet/minecraft/tags/TagKey; net/minecraft/tags/PoiTypeTags/create (Ljava/lang/String;)Lnet/minecraft/tags/TagKey; +MD: net/minecraft/tags/StructureTags/ ()V net/minecraft/tags/StructureTags/ ()V +MD: net/minecraft/tags/StructureTags/m_215895_ (Ljava/lang/String;)Lnet/minecraft/tags/TagKey; net/minecraft/tags/StructureTags/create (Ljava/lang/String;)Lnet/minecraft/tags/TagKey; +MD: net/minecraft/tags/TagBuilder/ ()V net/minecraft/tags/TagBuilder/ ()V +MD: net/minecraft/tags/TagBuilder/m_215899_ ()Lnet/minecraft/tags/TagBuilder; net/minecraft/tags/TagBuilder/create ()Lnet/minecraft/tags/TagBuilder; +MD: net/minecraft/tags/TagBuilder/m_215900_ (Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/tags/TagBuilder; net/minecraft/tags/TagBuilder/addElement (Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/tags/TagBuilder; +MD: net/minecraft/tags/TagBuilder/m_215902_ (Lnet/minecraft/tags/TagEntry;)Lnet/minecraft/tags/TagBuilder; net/minecraft/tags/TagBuilder/add (Lnet/minecraft/tags/TagEntry;)Lnet/minecraft/tags/TagBuilder; +MD: net/minecraft/tags/TagBuilder/m_215904_ ()Ljava/util/List; net/minecraft/tags/TagBuilder/build ()Ljava/util/List; +MD: net/minecraft/tags/TagBuilder/m_215905_ (Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/tags/TagBuilder; net/minecraft/tags/TagBuilder/addOptionalElement (Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/tags/TagBuilder; +MD: net/minecraft/tags/TagBuilder/m_215907_ (Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/tags/TagBuilder; net/minecraft/tags/TagBuilder/addTag (Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/tags/TagBuilder; +MD: net/minecraft/tags/TagBuilder/m_215909_ (Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/tags/TagBuilder; net/minecraft/tags/TagBuilder/addOptionalTag (Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/tags/TagBuilder; +MD: net/minecraft/tags/TagEntry/ ()V net/minecraft/tags/TagEntry/ ()V +MD: net/minecraft/tags/TagEntry/ (Lnet/minecraft/util/ExtraCodecs$TagOrElementLocation;Z)V net/minecraft/tags/TagEntry/ (Lnet/minecraft/util/ExtraCodecs$TagOrElementLocation;Z)V +MD: net/minecraft/tags/TagEntry/ (Lnet/minecraft/resources/ResourceLocation;ZZ)V net/minecraft/tags/TagEntry/ (Lnet/minecraft/resources/ResourceLocation;ZZ)V +MD: net/minecraft/tags/TagEntry/m_215924_ ()Lnet/minecraft/util/ExtraCodecs$TagOrElementLocation; net/minecraft/tags/TagEntry/elementOrTag ()Lnet/minecraft/util/ExtraCodecs$TagOrElementLocation; +MD: net/minecraft/tags/TagEntry/m_215925_ (Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/tags/TagEntry; net/minecraft/tags/TagEntry/element (Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/tags/TagEntry; +MD: net/minecraft/tags/TagEntry/m_215927_ (Lnet/minecraft/tags/TagEntry$Lookup;Ljava/util/function/Consumer;)Z net/minecraft/tags/TagEntry/build (Lnet/minecraft/tags/TagEntry$Lookup;Ljava/util/function/Consumer;)Z +MD: net/minecraft/tags/TagEntry/m_215930_ (Lnet/minecraft/tags/TagEntry;)Lcom/mojang/datafixers/util/Either; net/minecraft/tags/TagEntry/lambda$static$5 (Lnet/minecraft/tags/TagEntry;)Lcom/mojang/datafixers/util/Either; +MD: net/minecraft/tags/TagEntry/m_215932_ (Lnet/minecraft/util/ExtraCodecs$TagOrElementLocation;)Lnet/minecraft/tags/TagEntry; net/minecraft/tags/TagEntry/lambda$static$2 (Lnet/minecraft/util/ExtraCodecs$TagOrElementLocation;)Lnet/minecraft/tags/TagEntry; +MD: net/minecraft/tags/TagEntry/m_215934_ (Lcom/mojang/datafixers/util/Either;)Lnet/minecraft/tags/TagEntry; net/minecraft/tags/TagEntry/lambda$static$4 (Lcom/mojang/datafixers/util/Either;)Lnet/minecraft/tags/TagEntry; +MD: net/minecraft/tags/TagEntry/m_215936_ (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/tags/TagEntry/lambda$static$1 (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/tags/TagEntry/m_215938_ (Ljava/util/function/Consumer;)V net/minecraft/tags/TagEntry/visitRequiredDependencies (Ljava/util/function/Consumer;)V +MD: net/minecraft/tags/TagEntry/m_215940_ (Ljava/util/function/Predicate;Ljava/util/function/Predicate;)Z net/minecraft/tags/TagEntry/verifyIfPresent (Ljava/util/function/Predicate;Ljava/util/function/Predicate;)Z +MD: net/minecraft/tags/TagEntry/m_215943_ (Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/tags/TagEntry; net/minecraft/tags/TagEntry/optionalElement (Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/tags/TagEntry; +MD: net/minecraft/tags/TagEntry/m_215945_ (Lnet/minecraft/tags/TagEntry;)Lnet/minecraft/tags/TagEntry; net/minecraft/tags/TagEntry/lambda$static$3 (Lnet/minecraft/tags/TagEntry;)Lnet/minecraft/tags/TagEntry; +MD: net/minecraft/tags/TagEntry/m_215947_ (Ljava/util/function/Consumer;)V net/minecraft/tags/TagEntry/visitOptionalDependencies (Ljava/util/function/Consumer;)V +MD: net/minecraft/tags/TagEntry/m_215949_ (Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/tags/TagEntry; net/minecraft/tags/TagEntry/tag (Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/tags/TagEntry; +MD: net/minecraft/tags/TagEntry/m_215951_ (Lnet/minecraft/tags/TagEntry;)Ljava/lang/Boolean; net/minecraft/tags/TagEntry/lambda$static$0 (Lnet/minecraft/tags/TagEntry;)Ljava/lang/Boolean; +MD: net/minecraft/tags/TagEntry/m_215953_ (Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/tags/TagEntry; net/minecraft/tags/TagEntry/optionalTag (Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/tags/TagEntry; +MD: net/minecraft/tags/TagEntry/toString ()Ljava/lang/String; net/minecraft/tags/TagEntry/toString ()Ljava/lang/String; +MD: net/minecraft/tags/TagEntry$Lookup/m_213619_ (Lnet/minecraft/resources/ResourceLocation;)Ljava/lang/Object; net/minecraft/tags/TagEntry$Lookup/element (Lnet/minecraft/resources/ResourceLocation;)Ljava/lang/Object; +MD: net/minecraft/tags/TagEntry$Lookup/m_214048_ (Lnet/minecraft/resources/ResourceLocation;)Ljava/util/Collection; net/minecraft/tags/TagEntry$Lookup/tag (Lnet/minecraft/resources/ResourceLocation;)Ljava/util/Collection; +MD: net/minecraft/tags/TagFile/ ()V net/minecraft/tags/TagFile/ ()V +MD: net/minecraft/tags/TagFile/ (Ljava/util/List;Z)V net/minecraft/tags/TagFile/ (Ljava/util/List;Z)V +MD: net/minecraft/tags/TagFile/equals (Ljava/lang/Object;)Z net/minecraft/tags/TagFile/equals (Ljava/lang/Object;)Z +MD: net/minecraft/tags/TagFile/f_215959_ ()Ljava/util/List; net/minecraft/tags/TagFile/entries ()Ljava/util/List; +MD: net/minecraft/tags/TagFile/f_215960_ ()Z net/minecraft/tags/TagFile/replace ()Z +MD: net/minecraft/tags/TagFile/hashCode ()I net/minecraft/tags/TagFile/hashCode ()I +MD: net/minecraft/tags/TagFile/m_215966_ (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/tags/TagFile/lambda$static$0 (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/tags/TagFile/toString ()Ljava/lang/String; net/minecraft/tags/TagFile/toString ()Ljava/lang/String; +MD: net/minecraft/tags/TagKey/ ()V net/minecraft/tags/TagKey/ ()V +MD: net/minecraft/tags/TagKey/ (Lnet/minecraft/resources/ResourceKey;Lnet/minecraft/resources/ResourceLocation;)V net/minecraft/tags/TagKey/ (Lnet/minecraft/resources/ResourceKey;Lnet/minecraft/resources/ResourceLocation;)V +MD: net/minecraft/tags/TagKey/equals (Ljava/lang/Object;)Z net/minecraft/tags/TagKey/equals (Ljava/lang/Object;)Z +MD: net/minecraft/tags/TagKey/f_203867_ ()Lnet/minecraft/resources/ResourceKey; net/minecraft/tags/TagKey/registry ()Lnet/minecraft/resources/ResourceKey; +MD: net/minecraft/tags/TagKey/f_203868_ ()Lnet/minecraft/resources/ResourceLocation; net/minecraft/tags/TagKey/location ()Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/tags/TagKey/hashCode ()I net/minecraft/tags/TagKey/hashCode ()I +MD: net/minecraft/tags/TagKey/m_203875_ (Lnet/minecraft/tags/TagKey;)Ljava/lang/String; net/minecraft/tags/TagKey/lambda$hashedCodec$4 (Lnet/minecraft/tags/TagKey;)Ljava/lang/String; +MD: net/minecraft/tags/TagKey/m_203877_ (Lnet/minecraft/resources/ResourceKey;)Lcom/mojang/serialization/Codec; net/minecraft/tags/TagKey/codec (Lnet/minecraft/resources/ResourceKey;)Lcom/mojang/serialization/Codec; +MD: net/minecraft/tags/TagKey/m_203882_ (Lnet/minecraft/resources/ResourceKey;Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/tags/TagKey; net/minecraft/tags/TagKey/create (Lnet/minecraft/resources/ResourceKey;Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/tags/TagKey; +MD: net/minecraft/tags/TagKey/m_203886_ (Lnet/minecraft/resources/ResourceKey;)Lcom/mojang/serialization/Codec; net/minecraft/tags/TagKey/hashedCodec (Lnet/minecraft/resources/ResourceKey;)Lcom/mojang/serialization/Codec; +MD: net/minecraft/tags/TagKey/m_203888_ (Lnet/minecraft/resources/ResourceKey;Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/tags/TagKey; net/minecraft/tags/TagKey/lambda$hashedCodec$1 (Lnet/minecraft/resources/ResourceKey;Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/tags/TagKey; +MD: net/minecraft/tags/TagKey/m_203891_ (Lnet/minecraft/resources/ResourceKey;Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/tags/TagKey; net/minecraft/tags/TagKey/lambda$codec$0 (Lnet/minecraft/resources/ResourceKey;Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/tags/TagKey; +MD: net/minecraft/tags/TagKey/m_207645_ (Lnet/minecraft/resources/ResourceKey;)Z net/minecraft/tags/TagKey/isFor (Lnet/minecraft/resources/ResourceKey;)Z +MD: net/minecraft/tags/TagKey/m_207647_ (Lnet/minecraft/resources/ResourceKey;)Ljava/util/Optional; net/minecraft/tags/TagKey/cast (Lnet/minecraft/resources/ResourceKey;)Ljava/util/Optional; +MD: net/minecraft/tags/TagKey/m_274114_ ()Ljava/lang/String; net/minecraft/tags/TagKey/lambda$hashedCodec$2 ()Ljava/lang/String; +MD: net/minecraft/tags/TagKey/m_274115_ (Lnet/minecraft/resources/ResourceKey;Ljava/lang/String;)Lcom/mojang/serialization/DataResult; net/minecraft/tags/TagKey/lambda$hashedCodec$3 (Lnet/minecraft/resources/ResourceKey;Ljava/lang/String;)Lcom/mojang/serialization/DataResult; +MD: net/minecraft/tags/TagKey/toString ()Ljava/lang/String; net/minecraft/tags/TagKey/toString ()Ljava/lang/String; +MD: net/minecraft/tags/TagLoader/ ()V net/minecraft/tags/TagLoader/ ()V +MD: net/minecraft/tags/TagLoader/ (Ljava/util/function/Function;Ljava/lang/String;)V net/minecraft/tags/TagLoader/ (Ljava/util/function/Function;Ljava/lang/String;)V +MD: net/minecraft/tags/TagLoader/m_144495_ (Lnet/minecraft/server/packs/resources/ResourceManager;)Ljava/util/Map; net/minecraft/tags/TagLoader/load (Lnet/minecraft/server/packs/resources/ResourceManager;)Ljava/util/Map; +MD: net/minecraft/tags/TagLoader/m_203898_ (Ljava/util/Map;)Ljava/util/Map; net/minecraft/tags/TagLoader/build (Ljava/util/Map;)Ljava/util/Map; +MD: net/minecraft/tags/TagLoader/m_203900_ (Lnet/minecraft/server/packs/resources/ResourceManager;)Ljava/util/Map; net/minecraft/tags/TagLoader/loadAndBuild (Lnet/minecraft/server/packs/resources/ResourceManager;)Ljava/util/Map; +MD: net/minecraft/tags/TagLoader/m_215973_ (Lnet/minecraft/resources/ResourceLocation;)Ljava/util/List; net/minecraft/tags/TagLoader/lambda$load$0 (Lnet/minecraft/resources/ResourceLocation;)Ljava/util/List; +MD: net/minecraft/tags/TagLoader/m_215975_ (Lnet/minecraft/resources/ResourceLocation;Ljava/util/Collection;)V net/minecraft/tags/TagLoader/lambda$build$3 (Lnet/minecraft/resources/ResourceLocation;Ljava/util/Collection;)V +MD: net/minecraft/tags/TagLoader/m_215978_ (Lnet/minecraft/tags/TagEntry$Lookup;Ljava/util/List;)Lcom/mojang/datafixers/util/Either; net/minecraft/tags/TagLoader/build (Lnet/minecraft/tags/TagEntry$Lookup;Ljava/util/List;)Lcom/mojang/datafixers/util/Either; +MD: net/minecraft/tags/TagLoader/m_215994_ (Ljava/util/List;Ljava/lang/String;Lnet/minecraft/tags/TagEntry;)V net/minecraft/tags/TagLoader/lambda$load$1 (Ljava/util/List;Ljava/lang/String;Lnet/minecraft/tags/TagEntry;)V +MD: net/minecraft/tags/TagLoader/m_215998_ (Ljava/util/Map;Lnet/minecraft/resources/ResourceLocation;Ljava/util/Collection;)V net/minecraft/tags/TagLoader/lambda$build$4 (Ljava/util/Map;Lnet/minecraft/resources/ResourceLocation;Ljava/util/Collection;)V +MD: net/minecraft/tags/TagLoader/m_284005_ (Lnet/minecraft/tags/TagEntry$Lookup;Ljava/util/Map;Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/tags/TagLoader$SortingEntry;)V net/minecraft/tags/TagLoader/lambda$build$5 (Lnet/minecraft/tags/TagEntry$Lookup;Ljava/util/Map;Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/tags/TagLoader$SortingEntry;)V +MD: net/minecraft/tags/TagLoader/m_284006_ (Lnet/minecraft/util/DependencySorter;Lnet/minecraft/resources/ResourceLocation;Ljava/util/List;)V net/minecraft/tags/TagLoader/lambda$build$2 (Lnet/minecraft/util/DependencySorter;Lnet/minecraft/resources/ResourceLocation;Ljava/util/List;)V +MD: net/minecraft/tags/TagLoader$1/ (Lnet/minecraft/tags/TagLoader;Ljava/util/Map;)V net/minecraft/tags/TagLoader$1/ (Lnet/minecraft/tags/TagLoader;Ljava/util/Map;)V +MD: net/minecraft/tags/TagLoader$1/m_213619_ (Lnet/minecraft/resources/ResourceLocation;)Ljava/lang/Object; net/minecraft/tags/TagLoader$1/element (Lnet/minecraft/resources/ResourceLocation;)Ljava/lang/Object; +MD: net/minecraft/tags/TagLoader$1/m_214048_ (Lnet/minecraft/resources/ResourceLocation;)Ljava/util/Collection; net/minecraft/tags/TagLoader$1/tag (Lnet/minecraft/resources/ResourceLocation;)Ljava/util/Collection; +MD: net/minecraft/tags/TagLoader$EntryWithSource/ (Lnet/minecraft/tags/TagEntry;Ljava/lang/String;)V net/minecraft/tags/TagLoader$EntryWithSource/ (Lnet/minecraft/tags/TagEntry;Ljava/lang/String;)V +MD: net/minecraft/tags/TagLoader$EntryWithSource/equals (Ljava/lang/Object;)Z net/minecraft/tags/TagLoader$EntryWithSource/equals (Ljava/lang/Object;)Z +MD: net/minecraft/tags/TagLoader$EntryWithSource/f_216042_ ()Lnet/minecraft/tags/TagEntry; net/minecraft/tags/TagLoader$EntryWithSource/entry ()Lnet/minecraft/tags/TagEntry; +MD: net/minecraft/tags/TagLoader$EntryWithSource/f_216043_ ()Ljava/lang/String; net/minecraft/tags/TagLoader$EntryWithSource/source ()Ljava/lang/String; +MD: net/minecraft/tags/TagLoader$EntryWithSource/hashCode ()I net/minecraft/tags/TagLoader$EntryWithSource/hashCode ()I +MD: net/minecraft/tags/TagLoader$EntryWithSource/toString ()Ljava/lang/String; net/minecraft/tags/TagLoader$EntryWithSource/toString ()Ljava/lang/String; +MD: net/minecraft/tags/TagLoader$SortingEntry/ (Ljava/util/List;)V net/minecraft/tags/TagLoader$SortingEntry/ (Ljava/util/List;)V +MD: net/minecraft/tags/TagLoader$SortingEntry/equals (Ljava/lang/Object;)Z net/minecraft/tags/TagLoader$SortingEntry/equals (Ljava/lang/Object;)Z +MD: net/minecraft/tags/TagLoader$SortingEntry/f_283922_ ()Ljava/util/List; net/minecraft/tags/TagLoader$SortingEntry/entries ()Ljava/util/List; +MD: net/minecraft/tags/TagLoader$SortingEntry/hashCode ()I net/minecraft/tags/TagLoader$SortingEntry/hashCode ()I +MD: net/minecraft/tags/TagLoader$SortingEntry/m_284213_ (Ljava/util/function/Consumer;)V net/minecraft/tags/TagLoader$SortingEntry/visitRequiredDependencies (Ljava/util/function/Consumer;)V +MD: net/minecraft/tags/TagLoader$SortingEntry/m_284267_ (Ljava/util/function/Consumer;Lnet/minecraft/tags/TagLoader$EntryWithSource;)V net/minecraft/tags/TagLoader$SortingEntry/lambda$visitOptionalDependencies$1 (Ljava/util/function/Consumer;Lnet/minecraft/tags/TagLoader$EntryWithSource;)V +MD: net/minecraft/tags/TagLoader$SortingEntry/m_284342_ (Ljava/util/function/Consumer;Lnet/minecraft/tags/TagLoader$EntryWithSource;)V net/minecraft/tags/TagLoader$SortingEntry/lambda$visitRequiredDependencies$0 (Ljava/util/function/Consumer;Lnet/minecraft/tags/TagLoader$EntryWithSource;)V +MD: net/minecraft/tags/TagLoader$SortingEntry/m_284346_ (Ljava/util/function/Consumer;)V net/minecraft/tags/TagLoader$SortingEntry/visitOptionalDependencies (Ljava/util/function/Consumer;)V +MD: net/minecraft/tags/TagLoader$SortingEntry/toString ()Ljava/lang/String; net/minecraft/tags/TagLoader$SortingEntry/toString ()Ljava/lang/String; +MD: net/minecraft/tags/TagManager/ ()V net/minecraft/tags/TagManager/ ()V +MD: net/minecraft/tags/TagManager/ (Lnet/minecraft/core/RegistryAccess;)V net/minecraft/tags/TagManager/ (Lnet/minecraft/core/RegistryAccess;)V +MD: net/minecraft/tags/TagManager/m_203904_ ()Ljava/util/List; net/minecraft/tags/TagManager/getResult ()Ljava/util/List; +MD: net/minecraft/tags/TagManager/m_203905_ (I)[Ljava/util/concurrent/CompletableFuture; net/minecraft/tags/TagManager/lambda$reload$1 (I)[Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/tags/TagManager/m_203907_ (Lnet/minecraft/server/packs/resources/ResourceManager;Ljava/util/concurrent/Executor;Lnet/minecraft/core/RegistryAccess$RegistryEntry;)Ljava/util/concurrent/CompletableFuture; net/minecraft/tags/TagManager/createLoader (Lnet/minecraft/server/packs/resources/ResourceManager;Ljava/util/concurrent/Executor;Lnet/minecraft/core/RegistryAccess$RegistryEntry;)Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/tags/TagManager/m_203915_ (Ljava/util/List;Ljava/lang/Void;)V net/minecraft/tags/TagManager/lambda$reload$2 (Ljava/util/List;Ljava/lang/Void;)V +MD: net/minecraft/tags/TagManager/m_203918_ (Lnet/minecraft/resources/ResourceKey;)Ljava/lang/String; net/minecraft/tags/TagManager/getTagDir (Lnet/minecraft/resources/ResourceKey;)Ljava/lang/String; +MD: net/minecraft/tags/TagManager/m_203920_ (Lnet/minecraft/resources/ResourceKey;Lnet/minecraft/tags/TagLoader;Lnet/minecraft/server/packs/resources/ResourceManager;)Lnet/minecraft/tags/TagManager$LoadResult; net/minecraft/tags/TagManager/lambda$createLoader$4 (Lnet/minecraft/resources/ResourceKey;Lnet/minecraft/tags/TagLoader;Lnet/minecraft/server/packs/resources/ResourceManager;)Lnet/minecraft/tags/TagManager$LoadResult; +MD: net/minecraft/tags/TagManager/m_203924_ (Lnet/minecraft/server/packs/resources/ResourceManager;Ljava/util/concurrent/Executor;Lnet/minecraft/core/RegistryAccess$RegistryEntry;)Ljava/util/concurrent/CompletableFuture; net/minecraft/tags/TagManager/lambda$reload$0 (Lnet/minecraft/server/packs/resources/ResourceManager;Ljava/util/concurrent/Executor;Lnet/minecraft/core/RegistryAccess$RegistryEntry;)Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/tags/TagManager/m_257152_ (Lnet/minecraft/core/Registry;Lnet/minecraft/resources/ResourceKey;Lnet/minecraft/resources/ResourceLocation;)Ljava/util/Optional; net/minecraft/tags/TagManager/lambda$createLoader$3 (Lnet/minecraft/core/Registry;Lnet/minecraft/resources/ResourceKey;Lnet/minecraft/resources/ResourceLocation;)Ljava/util/Optional; +MD: net/minecraft/tags/TagManager/m_5540_ (Lnet/minecraft/server/packs/resources/PreparableReloadListener$PreparationBarrier;Lnet/minecraft/server/packs/resources/ResourceManager;Lnet/minecraft/util/profiling/ProfilerFiller;Lnet/minecraft/util/profiling/ProfilerFiller;Ljava/util/concurrent/Executor;Ljava/util/concurrent/Executor;)Ljava/util/concurrent/CompletableFuture; net/minecraft/tags/TagManager/reload (Lnet/minecraft/server/packs/resources/PreparableReloadListener$PreparationBarrier;Lnet/minecraft/server/packs/resources/ResourceManager;Lnet/minecraft/util/profiling/ProfilerFiller;Lnet/minecraft/util/profiling/ProfilerFiller;Ljava/util/concurrent/Executor;Ljava/util/concurrent/Executor;)Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/tags/TagManager$LoadResult/ (Lnet/minecraft/resources/ResourceKey;Ljava/util/Map;)V net/minecraft/tags/TagManager$LoadResult/ (Lnet/minecraft/resources/ResourceKey;Ljava/util/Map;)V +MD: net/minecraft/tags/TagManager$LoadResult/equals (Ljava/lang/Object;)Z net/minecraft/tags/TagManager$LoadResult/equals (Ljava/lang/Object;)Z +MD: net/minecraft/tags/TagManager$LoadResult/f_203928_ ()Lnet/minecraft/resources/ResourceKey; net/minecraft/tags/TagManager$LoadResult/key ()Lnet/minecraft/resources/ResourceKey; +MD: net/minecraft/tags/TagManager$LoadResult/f_203929_ ()Ljava/util/Map; net/minecraft/tags/TagManager$LoadResult/tags ()Ljava/util/Map; +MD: net/minecraft/tags/TagManager$LoadResult/hashCode ()I net/minecraft/tags/TagManager$LoadResult/hashCode ()I +MD: net/minecraft/tags/TagManager$LoadResult/toString ()Ljava/lang/String; net/minecraft/tags/TagManager$LoadResult/toString ()Ljava/lang/String; +MD: net/minecraft/tags/TagNetworkSerialization/ ()V net/minecraft/tags/TagNetworkSerialization/ ()V +MD: net/minecraft/tags/TagNetworkSerialization/m_203940_ (Lcom/mojang/datafixers/util/Pair;)Z net/minecraft/tags/TagNetworkSerialization/lambda$serializeTagsToNetwork$1 (Lcom/mojang/datafixers/util/Pair;)Z +MD: net/minecraft/tags/TagNetworkSerialization/m_203942_ (Lnet/minecraft/core/Registry;)Lnet/minecraft/tags/TagNetworkSerialization$NetworkPayload; net/minecraft/tags/TagNetworkSerialization/serializeToNetwork (Lnet/minecraft/core/Registry;)Lnet/minecraft/tags/TagNetworkSerialization$NetworkPayload; +MD: net/minecraft/tags/TagNetworkSerialization/m_203944_ (Lnet/minecraft/core/Registry;Ljava/util/Map;Lcom/mojang/datafixers/util/Pair;)V net/minecraft/tags/TagNetworkSerialization/lambda$serializeToNetwork$2 (Lnet/minecraft/core/Registry;Ljava/util/Map;Lcom/mojang/datafixers/util/Pair;)V +MD: net/minecraft/tags/TagNetworkSerialization/m_203948_ (Lnet/minecraft/core/RegistryAccess$RegistryEntry;)Lcom/mojang/datafixers/util/Pair; net/minecraft/tags/TagNetworkSerialization/lambda$serializeTagsToNetwork$0 (Lnet/minecraft/core/RegistryAccess$RegistryEntry;)Lcom/mojang/datafixers/util/Pair; +MD: net/minecraft/tags/TagNetworkSerialization/m_203952_ (Lnet/minecraft/resources/ResourceKey;Lnet/minecraft/core/Registry;Lnet/minecraft/tags/TagNetworkSerialization$NetworkPayload;Lnet/minecraft/tags/TagNetworkSerialization$TagOutput;)V net/minecraft/tags/TagNetworkSerialization/deserializeTagsFromNetwork (Lnet/minecraft/resources/ResourceKey;Lnet/minecraft/core/Registry;Lnet/minecraft/tags/TagNetworkSerialization$NetworkPayload;Lnet/minecraft/tags/TagNetworkSerialization$TagOutput;)V +MD: net/minecraft/tags/TagNetworkSerialization/m_244908_ (Lnet/minecraft/resources/ResourceKey;Lnet/minecraft/core/Registry;Lnet/minecraft/tags/TagNetworkSerialization$TagOutput;Lnet/minecraft/resources/ResourceLocation;Lit/unimi/dsi/fastutil/ints/IntList;)V net/minecraft/tags/TagNetworkSerialization/lambda$deserializeTagsFromNetwork$3 (Lnet/minecraft/resources/ResourceKey;Lnet/minecraft/core/Registry;Lnet/minecraft/tags/TagNetworkSerialization$TagOutput;Lnet/minecraft/resources/ResourceLocation;Lit/unimi/dsi/fastutil/ints/IntList;)V +MD: net/minecraft/tags/TagNetworkSerialization/m_245799_ (Lnet/minecraft/core/LayeredRegistryAccess;)Ljava/util/Map; net/minecraft/tags/TagNetworkSerialization/serializeTagsToNetwork (Lnet/minecraft/core/LayeredRegistryAccess;)Ljava/util/Map; +MD: net/minecraft/tags/TagNetworkSerialization$NetworkPayload/ (Ljava/util/Map;)V net/minecraft/tags/TagNetworkSerialization$NetworkPayload/ (Ljava/util/Map;)V +MD: net/minecraft/tags/TagNetworkSerialization$NetworkPayload/m_203966_ ()Z net/minecraft/tags/TagNetworkSerialization$NetworkPayload/isEmpty ()Z +MD: net/minecraft/tags/TagNetworkSerialization$NetworkPayload/m_203967_ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/tags/TagNetworkSerialization$NetworkPayload/write (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/tags/TagNetworkSerialization$NetworkPayload/m_203969_ (Lnet/minecraft/network/FriendlyByteBuf;)Lnet/minecraft/tags/TagNetworkSerialization$NetworkPayload; net/minecraft/tags/TagNetworkSerialization$NetworkPayload/read (Lnet/minecraft/network/FriendlyByteBuf;)Lnet/minecraft/tags/TagNetworkSerialization$NetworkPayload; +MD: net/minecraft/tags/TagNetworkSerialization$TagOutput/m_203971_ (Lnet/minecraft/tags/TagKey;Ljava/util/List;)V net/minecraft/tags/TagNetworkSerialization$TagOutput/accept (Lnet/minecraft/tags/TagKey;Ljava/util/List;)V +MD: net/minecraft/tags/WorldPresetTags/ ()V net/minecraft/tags/WorldPresetTags/ ()V +MD: net/minecraft/tags/WorldPresetTags/ ()V net/minecraft/tags/WorldPresetTags/ ()V +MD: net/minecraft/tags/WorldPresetTags/m_216057_ (Ljava/lang/String;)Lnet/minecraft/tags/TagKey; net/minecraft/tags/WorldPresetTags/create (Ljava/lang/String;)Lnet/minecraft/tags/TagKey; +MD: net/minecraft/util/AbortableIterationConsumer/m_260908_ (Ljava/util/function/Consumer;)Lnet/minecraft/util/AbortableIterationConsumer; net/minecraft/util/AbortableIterationConsumer/forConsumer (Ljava/util/function/Consumer;)Lnet/minecraft/util/AbortableIterationConsumer; +MD: net/minecraft/util/AbortableIterationConsumer/m_260972_ (Ljava/lang/Object;)Lnet/minecraft/util/AbortableIterationConsumer$Continuation; net/minecraft/util/AbortableIterationConsumer/accept (Ljava/lang/Object;)Lnet/minecraft/util/AbortableIterationConsumer$Continuation; +MD: net/minecraft/util/AbortableIterationConsumer/m_261257_ (Ljava/util/function/Consumer;Ljava/lang/Object;)Lnet/minecraft/util/AbortableIterationConsumer$Continuation; net/minecraft/util/AbortableIterationConsumer/lambda$forConsumer$0 (Ljava/util/function/Consumer;Ljava/lang/Object;)Lnet/minecraft/util/AbortableIterationConsumer$Continuation; +MD: net/minecraft/util/AbortableIterationConsumer$Continuation/ ()V net/minecraft/util/AbortableIterationConsumer$Continuation/ ()V +MD: net/minecraft/util/AbortableIterationConsumer$Continuation/ (Ljava/lang/String;I)V net/minecraft/util/AbortableIterationConsumer$Continuation/ (Ljava/lang/String;I)V +MD: net/minecraft/util/AbortableIterationConsumer$Continuation/m_261079_ ()[Lnet/minecraft/util/AbortableIterationConsumer$Continuation; net/minecraft/util/AbortableIterationConsumer$Continuation/$values ()[Lnet/minecraft/util/AbortableIterationConsumer$Continuation; +MD: net/minecraft/util/AbortableIterationConsumer$Continuation/m_261146_ ()Z net/minecraft/util/AbortableIterationConsumer$Continuation/shouldAbort ()Z +MD: net/minecraft/util/AbortableIterationConsumer$Continuation/valueOf (Ljava/lang/String;)Lnet/minecraft/util/AbortableIterationConsumer$Continuation; net/minecraft/util/AbortableIterationConsumer$Continuation/valueOf (Ljava/lang/String;)Lnet/minecraft/util/AbortableIterationConsumer$Continuation; +MD: net/minecraft/util/AbortableIterationConsumer$Continuation/values ()[Lnet/minecraft/util/AbortableIterationConsumer$Continuation; net/minecraft/util/AbortableIterationConsumer$Continuation/values ()[Lnet/minecraft/util/AbortableIterationConsumer$Continuation; +MD: net/minecraft/util/BitStorage/m_13513_ ()[J net/minecraft/util/BitStorage/getRaw ()[J +MD: net/minecraft/util/BitStorage/m_13514_ (I)I net/minecraft/util/BitStorage/get (I)I +MD: net/minecraft/util/BitStorage/m_13516_ (II)I net/minecraft/util/BitStorage/getAndSet (II)I +MD: net/minecraft/util/BitStorage/m_13519_ (Ljava/util/function/IntConsumer;)V net/minecraft/util/BitStorage/getAll (Ljava/util/function/IntConsumer;)V +MD: net/minecraft/util/BitStorage/m_13521_ ()I net/minecraft/util/BitStorage/getSize ()I +MD: net/minecraft/util/BitStorage/m_13524_ (II)V net/minecraft/util/BitStorage/set (II)V +MD: net/minecraft/util/BitStorage/m_144604_ ()I net/minecraft/util/BitStorage/getBits ()I +MD: net/minecraft/util/BitStorage/m_197970_ ([I)V net/minecraft/util/BitStorage/unpack ([I)V +MD: net/minecraft/util/BitStorage/m_199833_ ()Lnet/minecraft/util/BitStorage; net/minecraft/util/BitStorage/copy ()Lnet/minecraft/util/BitStorage; +MD: net/minecraft/util/Brightness/ ()V net/minecraft/util/Brightness/ ()V +MD: net/minecraft/util/Brightness/ (II)V net/minecraft/util/Brightness/ (II)V +MD: net/minecraft/util/Brightness/equals (Ljava/lang/Object;)Z net/minecraft/util/Brightness/equals (Ljava/lang/Object;)Z +MD: net/minecraft/util/Brightness/f_268416_ ()I net/minecraft/util/Brightness/block ()I +MD: net/minecraft/util/Brightness/f_268420_ ()I net/minecraft/util/Brightness/sky ()I +MD: net/minecraft/util/Brightness/hashCode ()I net/minecraft/util/Brightness/hashCode ()I +MD: net/minecraft/util/Brightness/m_269373_ (I)Lnet/minecraft/util/Brightness; net/minecraft/util/Brightness/unpack (I)Lnet/minecraft/util/Brightness; +MD: net/minecraft/util/Brightness/m_269377_ (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/util/Brightness/lambda$static$0 (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/util/Brightness/m_269595_ ()I net/minecraft/util/Brightness/pack ()I +MD: net/minecraft/util/Brightness/toString ()Ljava/lang/String; net/minecraft/util/Brightness/toString ()Ljava/lang/String; +MD: net/minecraft/util/ByIdMap/ ()V net/minecraft/util/ByIdMap/ ()V +MD: net/minecraft/util/ByIdMap/m_262788_ (Ljava/util/function/ToIntFunction;[Ljava/lang/Object;)Ljava/util/function/IntFunction; net/minecraft/util/ByIdMap/createMap (Ljava/util/function/ToIntFunction;[Ljava/lang/Object;)Ljava/util/function/IntFunction; +MD: net/minecraft/util/ByIdMap/m_262799_ ([Ljava/lang/Object;II)Ljava/lang/Object; net/minecraft/util/ByIdMap/lambda$continuous$2 ([Ljava/lang/Object;II)Ljava/lang/Object; +MD: net/minecraft/util/ByIdMap/m_262806_ (Ljava/util/function/IntFunction;Ljava/lang/Object;I)Ljava/lang/Object; net/minecraft/util/ByIdMap/lambda$sparse$0 (Ljava/util/function/IntFunction;Ljava/lang/Object;I)Ljava/lang/Object; +MD: net/minecraft/util/ByIdMap/m_262816_ (I[Ljava/lang/Object;Ljava/lang/Object;I)Ljava/lang/Object; net/minecraft/util/ByIdMap/lambda$continuous$1 (I[Ljava/lang/Object;Ljava/lang/Object;I)Ljava/lang/Object; +MD: net/minecraft/util/ByIdMap/m_262839_ (Ljava/util/function/ToIntFunction;[Ljava/lang/Object;Lnet/minecraft/util/ByIdMap$OutOfBoundsStrategy;)Ljava/util/function/IntFunction; net/minecraft/util/ByIdMap/continuous (Ljava/util/function/ToIntFunction;[Ljava/lang/Object;Lnet/minecraft/util/ByIdMap$OutOfBoundsStrategy;)Ljava/util/function/IntFunction; +MD: net/minecraft/util/ByIdMap/m_262845_ (Ljava/util/function/ToIntFunction;[Ljava/lang/Object;Ljava/lang/Object;)Ljava/util/function/IntFunction; net/minecraft/util/ByIdMap/sparse (Ljava/util/function/ToIntFunction;[Ljava/lang/Object;Ljava/lang/Object;)Ljava/util/function/IntFunction; +MD: net/minecraft/util/ByIdMap/m_262853_ ([Ljava/lang/Object;II)Ljava/lang/Object; net/minecraft/util/ByIdMap/lambda$continuous$3 ([Ljava/lang/Object;II)Ljava/lang/Object; +MD: net/minecraft/util/ByIdMap/m_262859_ (Ljava/util/function/ToIntFunction;[Ljava/lang/Object;)[Ljava/lang/Object; net/minecraft/util/ByIdMap/createSortedArray (Ljava/util/function/ToIntFunction;[Ljava/lang/Object;)[Ljava/lang/Object; +MD: net/minecraft/util/ByIdMap$1/ ()V net/minecraft/util/ByIdMap$1/ ()V +MD: net/minecraft/util/ByIdMap$OutOfBoundsStrategy/ ()V net/minecraft/util/ByIdMap$OutOfBoundsStrategy/ ()V +MD: net/minecraft/util/ByIdMap$OutOfBoundsStrategy/ (Ljava/lang/String;I)V net/minecraft/util/ByIdMap$OutOfBoundsStrategy/ (Ljava/lang/String;I)V +MD: net/minecraft/util/ByIdMap$OutOfBoundsStrategy/m_262833_ ()[Lnet/minecraft/util/ByIdMap$OutOfBoundsStrategy; net/minecraft/util/ByIdMap$OutOfBoundsStrategy/$values ()[Lnet/minecraft/util/ByIdMap$OutOfBoundsStrategy; +MD: net/minecraft/util/ByIdMap$OutOfBoundsStrategy/valueOf (Ljava/lang/String;)Lnet/minecraft/util/ByIdMap$OutOfBoundsStrategy; net/minecraft/util/ByIdMap$OutOfBoundsStrategy/valueOf (Ljava/lang/String;)Lnet/minecraft/util/ByIdMap$OutOfBoundsStrategy; +MD: net/minecraft/util/ByIdMap$OutOfBoundsStrategy/values ()[Lnet/minecraft/util/ByIdMap$OutOfBoundsStrategy; net/minecraft/util/ByIdMap$OutOfBoundsStrategy/values ()[Lnet/minecraft/util/ByIdMap$OutOfBoundsStrategy; +MD: net/minecraft/util/ClassInstanceMultiMap/ (Ljava/lang/Class;)V net/minecraft/util/ClassInstanceMultiMap/ (Ljava/lang/Class;)V +MD: net/minecraft/util/ClassInstanceMultiMap/add (Ljava/lang/Object;)Z net/minecraft/util/ClassInstanceMultiMap/add (Ljava/lang/Object;)Z +MD: net/minecraft/util/ClassInstanceMultiMap/contains (Ljava/lang/Object;)Z net/minecraft/util/ClassInstanceMultiMap/contains (Ljava/lang/Object;)Z +MD: net/minecraft/util/ClassInstanceMultiMap/iterator ()Ljava/util/Iterator; net/minecraft/util/ClassInstanceMultiMap/iterator ()Ljava/util/Iterator; +MD: net/minecraft/util/ClassInstanceMultiMap/m_13532_ ()Ljava/util/List; net/minecraft/util/ClassInstanceMultiMap/getAllInstances ()Ljava/util/List; +MD: net/minecraft/util/ClassInstanceMultiMap/m_13533_ (Ljava/lang/Class;)Ljava/util/Collection; net/minecraft/util/ClassInstanceMultiMap/find (Ljava/lang/Class;)Ljava/util/Collection; +MD: net/minecraft/util/ClassInstanceMultiMap/m_13537_ (Ljava/lang/Class;)Ljava/util/List; net/minecraft/util/ClassInstanceMultiMap/lambda$find$0 (Ljava/lang/Class;)Ljava/util/List; +MD: net/minecraft/util/ClassInstanceMultiMap/remove (Ljava/lang/Object;)Z net/minecraft/util/ClassInstanceMultiMap/remove (Ljava/lang/Object;)Z +MD: net/minecraft/util/ClassInstanceMultiMap/size ()I net/minecraft/util/ClassInstanceMultiMap/size ()I +MD: net/minecraft/util/CommonColors/ ()V net/minecraft/util/CommonColors/ ()V +MD: net/minecraft/util/CommonLinks/ ()V net/minecraft/util/CommonLinks/ ()V +MD: net/minecraft/util/CommonLinks/m_276215_ (Ljava/lang/String;Ljava/lang/String;)Ljava/lang/String; net/minecraft/util/CommonLinks/extendRealms (Ljava/lang/String;Ljava/lang/String;)Ljava/lang/String; +MD: net/minecraft/util/CommonLinks/m_276218_ (Ljava/lang/String;Ljava/lang/String;Z)Ljava/lang/String; net/minecraft/util/CommonLinks/extendRealms (Ljava/lang/String;Ljava/lang/String;Z)Ljava/lang/String; +MD: net/minecraft/util/CrudeIncrementalIntIdentityHashBiMap/ ()V net/minecraft/util/CrudeIncrementalIntIdentityHashBiMap/ ()V +MD: net/minecraft/util/CrudeIncrementalIntIdentityHashBiMap/ (I)V net/minecraft/util/CrudeIncrementalIntIdentityHashBiMap/ (I)V +MD: net/minecraft/util/CrudeIncrementalIntIdentityHashBiMap/ ([Ljava/lang/Object;[I[Ljava/lang/Object;II)V net/minecraft/util/CrudeIncrementalIntIdentityHashBiMap/ ([Ljava/lang/Object;[I[Ljava/lang/Object;II)V +MD: net/minecraft/util/CrudeIncrementalIntIdentityHashBiMap/iterator ()Ljava/util/Iterator; net/minecraft/util/CrudeIncrementalIntIdentityHashBiMap/iterator ()Ljava/util/Iterator; +MD: net/minecraft/util/CrudeIncrementalIntIdentityHashBiMap/m_13554_ ()V net/minecraft/util/CrudeIncrementalIntIdentityHashBiMap/clear ()V +MD: net/minecraft/util/CrudeIncrementalIntIdentityHashBiMap/m_13559_ (Ljava/lang/Object;I)V net/minecraft/util/CrudeIncrementalIntIdentityHashBiMap/addMapping (Ljava/lang/Object;I)V +MD: net/minecraft/util/CrudeIncrementalIntIdentityHashBiMap/m_13562_ ()I net/minecraft/util/CrudeIncrementalIntIdentityHashBiMap/size ()I +MD: net/minecraft/util/CrudeIncrementalIntIdentityHashBiMap/m_13563_ (Ljava/lang/Object;I)I net/minecraft/util/CrudeIncrementalIntIdentityHashBiMap/indexOf (Ljava/lang/Object;I)I +MD: net/minecraft/util/CrudeIncrementalIntIdentityHashBiMap/m_13566_ ()I net/minecraft/util/CrudeIncrementalIntIdentityHashBiMap/nextId ()I +MD: net/minecraft/util/CrudeIncrementalIntIdentityHashBiMap/m_13567_ (I)I net/minecraft/util/CrudeIncrementalIntIdentityHashBiMap/getValue (I)I +MD: net/minecraft/util/CrudeIncrementalIntIdentityHashBiMap/m_13569_ (Ljava/lang/Object;)I net/minecraft/util/CrudeIncrementalIntIdentityHashBiMap/add (Ljava/lang/Object;)I +MD: net/minecraft/util/CrudeIncrementalIntIdentityHashBiMap/m_13571_ (I)V net/minecraft/util/CrudeIncrementalIntIdentityHashBiMap/grow (I)V +MD: net/minecraft/util/CrudeIncrementalIntIdentityHashBiMap/m_13573_ (Ljava/lang/Object;)I net/minecraft/util/CrudeIncrementalIntIdentityHashBiMap/hash (Ljava/lang/Object;)I +MD: net/minecraft/util/CrudeIncrementalIntIdentityHashBiMap/m_13575_ (I)I net/minecraft/util/CrudeIncrementalIntIdentityHashBiMap/findEmpty (I)I +MD: net/minecraft/util/CrudeIncrementalIntIdentityHashBiMap/m_144607_ (I)Z net/minecraft/util/CrudeIncrementalIntIdentityHashBiMap/contains (I)Z +MD: net/minecraft/util/CrudeIncrementalIntIdentityHashBiMap/m_144609_ (Ljava/lang/Object;)Z net/minecraft/util/CrudeIncrementalIntIdentityHashBiMap/contains (Ljava/lang/Object;)Z +MD: net/minecraft/util/CrudeIncrementalIntIdentityHashBiMap/m_184237_ (I)Lnet/minecraft/util/CrudeIncrementalIntIdentityHashBiMap; net/minecraft/util/CrudeIncrementalIntIdentityHashBiMap/create (I)Lnet/minecraft/util/CrudeIncrementalIntIdentityHashBiMap; +MD: net/minecraft/util/CrudeIncrementalIntIdentityHashBiMap/m_199846_ ()Lnet/minecraft/util/CrudeIncrementalIntIdentityHashBiMap; net/minecraft/util/CrudeIncrementalIntIdentityHashBiMap/copy ()Lnet/minecraft/util/CrudeIncrementalIntIdentityHashBiMap; +MD: net/minecraft/util/CrudeIncrementalIntIdentityHashBiMap/m_7447_ (Ljava/lang/Object;)I net/minecraft/util/CrudeIncrementalIntIdentityHashBiMap/getId (Ljava/lang/Object;)I +MD: net/minecraft/util/CrudeIncrementalIntIdentityHashBiMap/m_7942_ (I)Ljava/lang/Object; net/minecraft/util/CrudeIncrementalIntIdentityHashBiMap/byId (I)Ljava/lang/Object; +MD: net/minecraft/util/Crypt/ ()V net/minecraft/util/Crypt/ ()V +MD: net/minecraft/util/Crypt/ ()V net/minecraft/util/Crypt/ ()V +MD: net/minecraft/util/Crypt/m_13578_ ()Ljavax/crypto/SecretKey; net/minecraft/util/Crypt/generateSecretKey ()Ljavax/crypto/SecretKey; +MD: net/minecraft/util/Crypt/m_13579_ (ILjava/lang/String;Ljava/security/Key;)Ljavax/crypto/Cipher; net/minecraft/util/Crypt/setupCipher (ILjava/lang/String;Ljava/security/Key;)Ljavax/crypto/Cipher; +MD: net/minecraft/util/Crypt/m_13583_ (ILjava/security/Key;)Ljavax/crypto/Cipher; net/minecraft/util/Crypt/getCipher (ILjava/security/Key;)Ljavax/crypto/Cipher; +MD: net/minecraft/util/Crypt/m_13586_ (ILjava/security/Key;[B)[B net/minecraft/util/Crypt/cipherData (ILjava/security/Key;[B)[B +MD: net/minecraft/util/Crypt/m_13590_ (Ljava/lang/String;Ljava/security/PublicKey;Ljavax/crypto/SecretKey;)[B net/minecraft/util/Crypt/digestData (Ljava/lang/String;Ljava/security/PublicKey;Ljavax/crypto/SecretKey;)[B +MD: net/minecraft/util/Crypt/m_13594_ (Ljava/security/Key;[B)[B net/minecraft/util/Crypt/encryptUsingKey (Ljava/security/Key;[B)[B +MD: net/minecraft/util/Crypt/m_13597_ (Ljava/security/PrivateKey;[B)Ljavax/crypto/SecretKey; net/minecraft/util/Crypt/decryptByteToSecretKey (Ljava/security/PrivateKey;[B)Ljavax/crypto/SecretKey; +MD: net/minecraft/util/Crypt/m_13600_ ([B)Ljava/security/PublicKey; net/minecraft/util/Crypt/byteToPublicKey ([B)Ljava/security/PublicKey; +MD: net/minecraft/util/Crypt/m_13602_ ([[B)[B net/minecraft/util/Crypt/digestData ([[B)[B +MD: net/minecraft/util/Crypt/m_13604_ ()Ljava/security/KeyPair; net/minecraft/util/Crypt/generateKeyPair ()Ljava/security/KeyPair; +MD: net/minecraft/util/Crypt/m_13605_ (Ljava/security/Key;[B)[B net/minecraft/util/Crypt/decryptUsingKey (Ljava/security/Key;[B)[B +MD: net/minecraft/util/Crypt/m_216069_ (Ljava/lang/String;)Ljava/security/PrivateKey; net/minecraft/util/Crypt/stringToPemRsaPrivateKey (Ljava/lang/String;)Ljava/security/PrivateKey; +MD: net/minecraft/util/Crypt/m_216071_ (Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Lnet/minecraft/util/Crypt$ByteArrayToKeyFunction;)Ljava/security/Key; net/minecraft/util/Crypt/rsaStringToKey (Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Lnet/minecraft/util/Crypt$ByteArrayToKeyFunction;)Ljava/security/Key; +MD: net/minecraft/util/Crypt/m_216076_ (Ljava/security/PrivateKey;)Ljava/lang/String; net/minecraft/util/Crypt/pemRsaPrivateKeyToString (Ljava/security/PrivateKey;)Ljava/lang/String; +MD: net/minecraft/util/Crypt/m_216078_ (Ljava/security/PublicKey;)Ljava/lang/String; net/minecraft/util/Crypt/rsaPublicKeyToString (Ljava/security/PublicKey;)Ljava/lang/String; +MD: net/minecraft/util/Crypt/m_216080_ (Ljava/lang/String;)Ljava/security/PublicKey; net/minecraft/util/Crypt/stringToRsaPublicKey (Ljava/lang/String;)Ljava/security/PublicKey; +MD: net/minecraft/util/Crypt/m_216082_ ([B)Ljava/security/PrivateKey; net/minecraft/util/Crypt/byteToPrivateKey ([B)Ljava/security/PrivateKey; +MD: net/minecraft/util/Crypt/m_274116_ (Ljava/lang/String;)Lcom/mojang/serialization/DataResult; net/minecraft/util/Crypt/lambda$static$1 (Ljava/lang/String;)Lcom/mojang/serialization/DataResult; +MD: net/minecraft/util/Crypt/m_274117_ (Ljava/lang/String;)Lcom/mojang/serialization/DataResult; net/minecraft/util/Crypt/lambda$static$0 (Ljava/lang/String;)Lcom/mojang/serialization/DataResult; +MD: net/minecraft/util/Crypt$ByteArrayToKeyFunction/m_216088_ ([B)Ljava/security/Key; net/minecraft/util/Crypt$ByteArrayToKeyFunction/apply ([B)Ljava/security/Key; +MD: net/minecraft/util/Crypt$SaltSignaturePair/ ()V net/minecraft/util/Crypt$SaltSignaturePair/ ()V +MD: net/minecraft/util/Crypt$SaltSignaturePair/ (J[B)V net/minecraft/util/Crypt$SaltSignaturePair/ (J[B)V +MD: net/minecraft/util/Crypt$SaltSignaturePair/ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/util/Crypt$SaltSignaturePair/ (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/util/Crypt$SaltSignaturePair/equals (Ljava/lang/Object;)Z net/minecraft/util/Crypt$SaltSignaturePair/equals (Ljava/lang/Object;)Z +MD: net/minecraft/util/Crypt$SaltSignaturePair/f_216091_ ()J net/minecraft/util/Crypt$SaltSignaturePair/salt ()J +MD: net/minecraft/util/Crypt$SaltSignaturePair/f_216092_ ()[B net/minecraft/util/Crypt$SaltSignaturePair/signature ()[B +MD: net/minecraft/util/Crypt$SaltSignaturePair/hashCode ()I net/minecraft/util/Crypt$SaltSignaturePair/hashCode ()I +MD: net/minecraft/util/Crypt$SaltSignaturePair/m_216099_ ()Z net/minecraft/util/Crypt$SaltSignaturePair/isValid ()Z +MD: net/minecraft/util/Crypt$SaltSignaturePair/m_216100_ (Lnet/minecraft/network/FriendlyByteBuf;Lnet/minecraft/util/Crypt$SaltSignaturePair;)V net/minecraft/util/Crypt$SaltSignaturePair/write (Lnet/minecraft/network/FriendlyByteBuf;Lnet/minecraft/util/Crypt$SaltSignaturePair;)V +MD: net/minecraft/util/Crypt$SaltSignaturePair/m_216103_ ()[B net/minecraft/util/Crypt$SaltSignaturePair/saltAsBytes ()[B +MD: net/minecraft/util/Crypt$SaltSignaturePair/toString ()Ljava/lang/String; net/minecraft/util/Crypt$SaltSignaturePair/toString ()Ljava/lang/String; +MD: net/minecraft/util/Crypt$SaltSupplier/ ()V net/minecraft/util/Crypt$SaltSupplier/ ()V +MD: net/minecraft/util/Crypt$SaltSupplier/ ()V net/minecraft/util/Crypt$SaltSupplier/ ()V +MD: net/minecraft/util/Crypt$SaltSupplier/m_216113_ ()J net/minecraft/util/Crypt$SaltSupplier/getLong ()J +MD: net/minecraft/util/CryptException/ (Ljava/lang/Throwable;)V net/minecraft/util/CryptException/ (Ljava/lang/Throwable;)V +MD: net/minecraft/util/CsvOutput/ (Ljava/io/Writer;Ljava/util/List;)V net/minecraft/util/CsvOutput/ (Ljava/io/Writer;Ljava/util/List;)V +MD: net/minecraft/util/CsvOutput/m_13619_ ()Lnet/minecraft/util/CsvOutput$Builder; net/minecraft/util/CsvOutput/builder ()Lnet/minecraft/util/CsvOutput$Builder; +MD: net/minecraft/util/CsvOutput/m_13620_ (Ljava/lang/Object;)Ljava/lang/String; net/minecraft/util/CsvOutput/getStringValue (Ljava/lang/Object;)Ljava/lang/String; +MD: net/minecraft/util/CsvOutput/m_13622_ (Ljava/util/stream/Stream;)V net/minecraft/util/CsvOutput/writeLine (Ljava/util/stream/Stream;)V +MD: net/minecraft/util/CsvOutput/m_13624_ ([Ljava/lang/Object;)V net/minecraft/util/CsvOutput/writeRow ([Ljava/lang/Object;)V +MD: net/minecraft/util/CsvOutput$Builder/ ()V net/minecraft/util/CsvOutput$Builder/ ()V +MD: net/minecraft/util/CsvOutput$Builder/m_13628_ (Ljava/io/Writer;)Lnet/minecraft/util/CsvOutput; net/minecraft/util/CsvOutput$Builder/build (Ljava/io/Writer;)Lnet/minecraft/util/CsvOutput; +MD: net/minecraft/util/CsvOutput$Builder/m_13630_ (Ljava/lang/String;)Lnet/minecraft/util/CsvOutput$Builder; net/minecraft/util/CsvOutput$Builder/addColumn (Ljava/lang/String;)Lnet/minecraft/util/CsvOutput$Builder; +MD: net/minecraft/util/CubicSampler/ ()V net/minecraft/util/CubicSampler/ ()V +MD: net/minecraft/util/CubicSampler/ ()V net/minecraft/util/CubicSampler/ ()V +MD: net/minecraft/util/CubicSampler/m_130038_ (Lnet/minecraft/world/phys/Vec3;Lnet/minecraft/util/CubicSampler$Vec3Fetcher;)Lnet/minecraft/world/phys/Vec3; net/minecraft/util/CubicSampler/gaussianSampleVec3 (Lnet/minecraft/world/phys/Vec3;Lnet/minecraft/util/CubicSampler$Vec3Fetcher;)Lnet/minecraft/world/phys/Vec3; +MD: net/minecraft/util/CubicSampler$Vec3Fetcher/m_130041_ (III)Lnet/minecraft/world/phys/Vec3; net/minecraft/util/CubicSampler$Vec3Fetcher/fetch (III)Lnet/minecraft/world/phys/Vec3; +MD: net/minecraft/util/CubicSpline/m_183628_ ()Ljava/lang/String; net/minecraft/util/CubicSpline/parityString ()Ljava/lang/String; +MD: net/minecraft/util/CubicSpline/m_184239_ (F)Lnet/minecraft/util/CubicSpline; net/minecraft/util/CubicSpline/constant (F)Lnet/minecraft/util/CubicSpline; +MD: net/minecraft/util/CubicSpline/m_184241_ (FLnet/minecraft/util/CubicSpline;F)Lnet/minecraft/util/CubicSpline$1Point; net/minecraft/util/CubicSpline/lambda$codec$0 (FLnet/minecraft/util/CubicSpline;F)Lnet/minecraft/util/CubicSpline$1Point; +MD: net/minecraft/util/CubicSpline/m_184245_ (Lnet/minecraft/util/CubicSpline$Multipoint;)Ljava/lang/Record; net/minecraft/util/CubicSpline/lambda$codec$6 (Lnet/minecraft/util/CubicSpline$Multipoint;)Ljava/lang/Record; +MD: net/minecraft/util/CubicSpline/m_184247_ (Lnet/minecraft/util/CubicSpline$Multipoint;I)Lnet/minecraft/util/CubicSpline$1Point; net/minecraft/util/CubicSpline/lambda$codec$2 (Lnet/minecraft/util/CubicSpline$Multipoint;I)Lnet/minecraft/util/CubicSpline$1Point; +MD: net/minecraft/util/CubicSpline/m_184250_ (Lnet/minecraft/util/CubicSpline;)Lcom/mojang/datafixers/util/Either; net/minecraft/util/CubicSpline/lambda$codec$8 (Lnet/minecraft/util/CubicSpline;)Lcom/mojang/datafixers/util/Either; +MD: net/minecraft/util/CubicSpline/m_184252_ (Lnet/minecraft/util/ToFloatFunction;)Lnet/minecraft/util/CubicSpline$Builder; net/minecraft/util/CubicSpline/builder (Lnet/minecraft/util/ToFloatFunction;)Lnet/minecraft/util/CubicSpline$Builder; +MD: net/minecraft/util/CubicSpline/m_184254_ (Lnet/minecraft/util/ToFloatFunction;Lnet/minecraft/util/ToFloatFunction;)Lnet/minecraft/util/CubicSpline$Builder; net/minecraft/util/CubicSpline/builder (Lnet/minecraft/util/ToFloatFunction;Lnet/minecraft/util/ToFloatFunction;)Lnet/minecraft/util/CubicSpline$Builder; +MD: net/minecraft/util/CubicSpline/m_184257_ (Lnet/minecraft/util/ToFloatFunction;Ljava/util/List;)Lnet/minecraft/util/CubicSpline$Multipoint; net/minecraft/util/CubicSpline/lambda$codec$4 (Lnet/minecraft/util/ToFloatFunction;Ljava/util/List;)Lnet/minecraft/util/CubicSpline$Multipoint; +MD: net/minecraft/util/CubicSpline/m_184260_ (Lcom/mojang/datafixers/util/Either;)Lnet/minecraft/util/CubicSpline; net/minecraft/util/CubicSpline/lambda$codec$7 (Lcom/mojang/datafixers/util/Either;)Lnet/minecraft/util/CubicSpline; +MD: net/minecraft/util/CubicSpline/m_184262_ (Lcom/mojang/serialization/Codec;)Lcom/mojang/serialization/Codec; net/minecraft/util/CubicSpline/codec (Lcom/mojang/serialization/Codec;)Lcom/mojang/serialization/Codec; +MD: net/minecraft/util/CubicSpline/m_184264_ (Lcom/mojang/serialization/Codec;Lcom/mojang/serialization/Codec;Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/util/CubicSpline/lambda$codec$5 (Lcom/mojang/serialization/Codec;Lcom/mojang/serialization/Codec;Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/util/CubicSpline/m_184268_ (Lorg/apache/commons/lang3/mutable/MutableObject;Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/util/CubicSpline/lambda$codec$1 (Lorg/apache/commons/lang3/mutable/MutableObject;Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/util/CubicSpline/m_184271_ (Lnet/minecraft/util/CubicSpline$Multipoint;)Ljava/util/List; net/minecraft/util/CubicSpline/lambda$codec$3 (Lnet/minecraft/util/CubicSpline$Multipoint;)Ljava/util/List; +MD: net/minecraft/util/CubicSpline/m_211396_ (Lnet/minecraft/util/CubicSpline$CoordinateVisitor;)Lnet/minecraft/util/CubicSpline; net/minecraft/util/CubicSpline/mapAll (Lnet/minecraft/util/CubicSpline$CoordinateVisitor;)Lnet/minecraft/util/CubicSpline; +MD: net/minecraft/util/CubicSpline$1Point/ (FLnet/minecraft/util/CubicSpline;F)V net/minecraft/util/CubicSpline$1Point/ (FLnet/minecraft/util/CubicSpline;F)V +MD: net/minecraft/util/CubicSpline$1Point/equals (Ljava/lang/Object;)Z net/minecraft/util/CubicSpline$1Point/equals (Ljava/lang/Object;)Z +MD: net/minecraft/util/CubicSpline$1Point/f_184273_ ()F net/minecraft/util/CubicSpline$1Point/location ()F +MD: net/minecraft/util/CubicSpline$1Point/f_184274_ ()Lnet/minecraft/util/CubicSpline; net/minecraft/util/CubicSpline$1Point/value ()Lnet/minecraft/util/CubicSpline; +MD: net/minecraft/util/CubicSpline$1Point/f_184275_ ()F net/minecraft/util/CubicSpline$1Point/derivative ()F +MD: net/minecraft/util/CubicSpline$1Point/hashCode ()I net/minecraft/util/CubicSpline$1Point/hashCode ()I +MD: net/minecraft/util/CubicSpline$1Point/toString ()Ljava/lang/String; net/minecraft/util/CubicSpline$1Point/toString ()Ljava/lang/String; +MD: net/minecraft/util/CubicSpline$Builder/ (Lnet/minecraft/util/ToFloatFunction;Lnet/minecraft/util/ToFloatFunction;)V net/minecraft/util/CubicSpline$Builder/ (Lnet/minecraft/util/ToFloatFunction;Lnet/minecraft/util/ToFloatFunction;)V +MD: net/minecraft/util/CubicSpline$Builder/ (Lnet/minecraft/util/ToFloatFunction;)V net/minecraft/util/CubicSpline$Builder/ (Lnet/minecraft/util/ToFloatFunction;)V +MD: net/minecraft/util/CubicSpline$Builder/m_184297_ ()Lnet/minecraft/util/CubicSpline; net/minecraft/util/CubicSpline$Builder/build ()Lnet/minecraft/util/CubicSpline; +MD: net/minecraft/util/CubicSpline$Builder/m_184298_ (FFF)Lnet/minecraft/util/CubicSpline$Builder; net/minecraft/util/CubicSpline$Builder/addPoint (FFF)Lnet/minecraft/util/CubicSpline$Builder; +MD: net/minecraft/util/CubicSpline$Builder/m_184302_ (FLnet/minecraft/util/CubicSpline;F)Lnet/minecraft/util/CubicSpline$Builder; net/minecraft/util/CubicSpline$Builder/addPoint (FLnet/minecraft/util/CubicSpline;F)Lnet/minecraft/util/CubicSpline$Builder; +MD: net/minecraft/util/CubicSpline$Builder/m_216114_ (FF)Lnet/minecraft/util/CubicSpline$Builder; net/minecraft/util/CubicSpline$Builder/addPoint (FF)Lnet/minecraft/util/CubicSpline$Builder; +MD: net/minecraft/util/CubicSpline$Builder/m_216117_ (FLnet/minecraft/util/CubicSpline;)Lnet/minecraft/util/CubicSpline$Builder; net/minecraft/util/CubicSpline$Builder/addPoint (FLnet/minecraft/util/CubicSpline;)Lnet/minecraft/util/CubicSpline$Builder; +MD: net/minecraft/util/CubicSpline$Constant/ (F)V net/minecraft/util/CubicSpline$Constant/ (F)V +MD: net/minecraft/util/CubicSpline$Constant/equals (Ljava/lang/Object;)Z net/minecraft/util/CubicSpline$Constant/equals (Ljava/lang/Object;)Z +MD: net/minecraft/util/CubicSpline$Constant/f_184308_ ()F net/minecraft/util/CubicSpline$Constant/value ()F +MD: net/minecraft/util/CubicSpline$Constant/hashCode ()I net/minecraft/util/CubicSpline$Constant/hashCode ()I +MD: net/minecraft/util/CubicSpline$Constant/m_183321_ (Ljava/lang/Object;)F net/minecraft/util/CubicSpline$Constant/apply (Ljava/lang/Object;)F +MD: net/minecraft/util/CubicSpline$Constant/m_183628_ ()Ljava/lang/String; net/minecraft/util/CubicSpline$Constant/parityString ()Ljava/lang/String; +MD: net/minecraft/util/CubicSpline$Constant/m_211396_ (Lnet/minecraft/util/CubicSpline$CoordinateVisitor;)Lnet/minecraft/util/CubicSpline; net/minecraft/util/CubicSpline$Constant/mapAll (Lnet/minecraft/util/CubicSpline$CoordinateVisitor;)Lnet/minecraft/util/CubicSpline; +MD: net/minecraft/util/CubicSpline$Constant/m_213849_ ()F net/minecraft/util/CubicSpline$Constant/maxValue ()F +MD: net/minecraft/util/CubicSpline$Constant/m_213850_ ()F net/minecraft/util/CubicSpline$Constant/minValue ()F +MD: net/minecraft/util/CubicSpline$Constant/toString ()Ljava/lang/String; net/minecraft/util/CubicSpline$Constant/toString ()Ljava/lang/String; +MD: net/minecraft/util/CubicSpline$CoordinateVisitor/m_216122_ (Ljava/lang/Object;)Ljava/lang/Object; net/minecraft/util/CubicSpline$CoordinateVisitor/visit (Ljava/lang/Object;)Ljava/lang/Object; +MD: net/minecraft/util/CubicSpline$Multipoint/ (Lnet/minecraft/util/ToFloatFunction;[FLjava/util/List;[FFF)V net/minecraft/util/CubicSpline$Multipoint/ (Lnet/minecraft/util/ToFloatFunction;[FLjava/util/List;[FFF)V +MD: net/minecraft/util/CubicSpline$Multipoint/equals (Ljava/lang/Object;)Z net/minecraft/util/CubicSpline$Multipoint/equals (Ljava/lang/Object;)Z +MD: net/minecraft/util/CubicSpline$Multipoint/f_184319_ ()Lnet/minecraft/util/ToFloatFunction; net/minecraft/util/CubicSpline$Multipoint/coordinate ()Lnet/minecraft/util/ToFloatFunction; +MD: net/minecraft/util/CubicSpline$Multipoint/f_184320_ ()[F net/minecraft/util/CubicSpline$Multipoint/locations ()[F +MD: net/minecraft/util/CubicSpline$Multipoint/f_184321_ ()Ljava/util/List; net/minecraft/util/CubicSpline$Multipoint/values ()Ljava/util/List; +MD: net/minecraft/util/CubicSpline$Multipoint/f_184322_ ()[F net/minecraft/util/CubicSpline$Multipoint/derivatives ()[F +MD: net/minecraft/util/CubicSpline$Multipoint/hashCode ()I net/minecraft/util/CubicSpline$Multipoint/hashCode ()I +MD: net/minecraft/util/CubicSpline$Multipoint/m_183321_ (Ljava/lang/Object;)F net/minecraft/util/CubicSpline$Multipoint/apply (Ljava/lang/Object;)F +MD: net/minecraft/util/CubicSpline$Multipoint/m_183628_ ()Ljava/lang/String; net/minecraft/util/CubicSpline$Multipoint/parityString ()Ljava/lang/String; +MD: net/minecraft/util/CubicSpline$Multipoint/m_184329_ (D)Ljava/lang/String; net/minecraft/util/CubicSpline$Multipoint/lambda$toString$2 (D)Ljava/lang/String; +MD: net/minecraft/util/CubicSpline$Multipoint/m_184334_ ([F)Ljava/lang/String; net/minecraft/util/CubicSpline$Multipoint/toString ([F)Ljava/lang/String; +MD: net/minecraft/util/CubicSpline$Multipoint/m_184336_ ([FI)D net/minecraft/util/CubicSpline$Multipoint/lambda$toString$1 ([FI)D +MD: net/minecraft/util/CubicSpline$Multipoint/m_211396_ (Lnet/minecraft/util/CubicSpline$CoordinateVisitor;)Lnet/minecraft/util/CubicSpline; net/minecraft/util/CubicSpline$Multipoint/mapAll (Lnet/minecraft/util/CubicSpline$CoordinateVisitor;)Lnet/minecraft/util/CubicSpline; +MD: net/minecraft/util/CubicSpline$Multipoint/m_211586_ (Lnet/minecraft/util/CubicSpline$CoordinateVisitor;Lnet/minecraft/util/CubicSpline;)Lnet/minecraft/util/CubicSpline; net/minecraft/util/CubicSpline$Multipoint/lambda$mapAll$3 (Lnet/minecraft/util/CubicSpline$CoordinateVisitor;Lnet/minecraft/util/CubicSpline;)Lnet/minecraft/util/CubicSpline; +MD: net/minecraft/util/CubicSpline$Multipoint/m_213849_ ()F net/minecraft/util/CubicSpline$Multipoint/maxValue ()F +MD: net/minecraft/util/CubicSpline$Multipoint/m_213850_ ()F net/minecraft/util/CubicSpline$Multipoint/minValue ()F +MD: net/minecraft/util/CubicSpline$Multipoint/m_216133_ (F[FF[FI)F net/minecraft/util/CubicSpline$Multipoint/linearExtend (F[FF[FI)F +MD: net/minecraft/util/CubicSpline$Multipoint/m_216139_ (F[FI)Z net/minecraft/util/CubicSpline$Multipoint/lambda$findIntervalStart$0 (F[FI)Z +MD: net/minecraft/util/CubicSpline$Multipoint/m_216143_ (Lnet/minecraft/util/ToFloatFunction;[FLjava/util/List;[F)Lnet/minecraft/util/CubicSpline$Multipoint; net/minecraft/util/CubicSpline$Multipoint/create (Lnet/minecraft/util/ToFloatFunction;[FLjava/util/List;[F)Lnet/minecraft/util/CubicSpline$Multipoint; +MD: net/minecraft/util/CubicSpline$Multipoint/m_216148_ ([FF)I net/minecraft/util/CubicSpline$Multipoint/findIntervalStart ([FF)I +MD: net/minecraft/util/CubicSpline$Multipoint/m_216151_ ([FLjava/util/List;[F)V net/minecraft/util/CubicSpline$Multipoint/validateSizes ([FLjava/util/List;[F)V +MD: net/minecraft/util/CubicSpline$Multipoint/toString ()Ljava/lang/String; net/minecraft/util/CubicSpline$Multipoint/toString ()Ljava/lang/String; +MD: net/minecraft/util/DebugBuffer/ (I)V net/minecraft/util/DebugBuffer/ (I)V +MD: net/minecraft/util/DebugBuffer/m_144624_ ()Ljava/util/List; net/minecraft/util/DebugBuffer/dump ()Ljava/util/List; +MD: net/minecraft/util/DebugBuffer/m_144625_ (Ljava/lang/Object;)V net/minecraft/util/DebugBuffer/push (Ljava/lang/Object;)V +MD: net/minecraft/util/DependencySorter/ ()V net/minecraft/util/DependencySorter/ ()V +MD: net/minecraft/util/DependencySorter/m_284129_ (Lcom/google/common/collect/Multimap;Ljava/lang/Object;Ljava/lang/Object;)Z net/minecraft/util/DependencySorter/lambda$isCyclic$1 (Lcom/google/common/collect/Multimap;Ljava/lang/Object;Ljava/lang/Object;)Z +MD: net/minecraft/util/DependencySorter/m_284158_ (Lcom/google/common/collect/Multimap;Ljava/util/Set;Ljava/util/function/BiConsumer;Ljava/lang/Object;)V net/minecraft/util/DependencySorter/lambda$orderByDependencies$6 (Lcom/google/common/collect/Multimap;Ljava/util/Set;Ljava/util/function/BiConsumer;Ljava/lang/Object;)V +MD: net/minecraft/util/DependencySorter/m_284160_ (Lcom/google/common/collect/Multimap;Ljava/lang/Object;Lnet/minecraft/util/DependencySorter$Entry;)V net/minecraft/util/DependencySorter/lambda$orderByDependencies$5 (Lcom/google/common/collect/Multimap;Ljava/lang/Object;Lnet/minecraft/util/DependencySorter$Entry;)V +MD: net/minecraft/util/DependencySorter/m_284174_ (Lcom/google/common/collect/Multimap;Ljava/lang/Object;Ljava/lang/Object;)V net/minecraft/util/DependencySorter/lambda$orderByDependencies$4 (Lcom/google/common/collect/Multimap;Ljava/lang/Object;Ljava/lang/Object;)V +MD: net/minecraft/util/DependencySorter/m_284176_ (Ljava/lang/Object;Lnet/minecraft/util/DependencySorter$Entry;)Lnet/minecraft/util/DependencySorter; net/minecraft/util/DependencySorter/addEntry (Ljava/lang/Object;Lnet/minecraft/util/DependencySorter$Entry;)Lnet/minecraft/util/DependencySorter; +MD: net/minecraft/util/DependencySorter/m_284232_ (Lcom/google/common/collect/Multimap;Ljava/lang/Object;Ljava/lang/Object;)V net/minecraft/util/DependencySorter/addDependencyIfNotCyclic (Lcom/google/common/collect/Multimap;Ljava/lang/Object;Ljava/lang/Object;)V +MD: net/minecraft/util/DependencySorter/m_284372_ (Lcom/google/common/collect/Multimap;Ljava/util/Set;Ljava/lang/Object;Ljava/util/function/BiConsumer;)V net/minecraft/util/DependencySorter/visitDependenciesAndElement (Lcom/google/common/collect/Multimap;Ljava/util/Set;Ljava/lang/Object;Ljava/util/function/BiConsumer;)V +MD: net/minecraft/util/DependencySorter/m_284430_ (Ljava/util/function/BiConsumer;)V net/minecraft/util/DependencySorter/orderByDependencies (Ljava/util/function/BiConsumer;)V +MD: net/minecraft/util/DependencySorter/m_284431_ (Lcom/google/common/collect/Multimap;Ljava/lang/Object;Ljava/lang/Object;)V net/minecraft/util/DependencySorter/lambda$orderByDependencies$2 (Lcom/google/common/collect/Multimap;Ljava/lang/Object;Ljava/lang/Object;)V +MD: net/minecraft/util/DependencySorter/m_284473_ (Lcom/google/common/collect/Multimap;Ljava/util/Set;Ljava/util/function/BiConsumer;Ljava/lang/Object;)V net/minecraft/util/DependencySorter/lambda$visitDependenciesAndElement$0 (Lcom/google/common/collect/Multimap;Ljava/util/Set;Ljava/util/function/BiConsumer;Ljava/lang/Object;)V +MD: net/minecraft/util/DependencySorter/m_284553_ (Lcom/google/common/collect/Multimap;Ljava/lang/Object;Ljava/lang/Object;)Z net/minecraft/util/DependencySorter/isCyclic (Lcom/google/common/collect/Multimap;Ljava/lang/Object;Ljava/lang/Object;)Z +MD: net/minecraft/util/DependencySorter/m_284554_ (Lcom/google/common/collect/Multimap;Ljava/lang/Object;Lnet/minecraft/util/DependencySorter$Entry;)V net/minecraft/util/DependencySorter/lambda$orderByDependencies$3 (Lcom/google/common/collect/Multimap;Ljava/lang/Object;Lnet/minecraft/util/DependencySorter$Entry;)V +MD: net/minecraft/util/DependencySorter$Entry/m_284213_ (Ljava/util/function/Consumer;)V net/minecraft/util/DependencySorter$Entry/visitRequiredDependencies (Ljava/util/function/Consumer;)V +MD: net/minecraft/util/DependencySorter$Entry/m_284346_ (Ljava/util/function/Consumer;)V net/minecraft/util/DependencySorter$Entry/visitOptionalDependencies (Ljava/util/function/Consumer;)V +MD: net/minecraft/util/DirectoryLock/ ()V net/minecraft/util/DirectoryLock/ ()V +MD: net/minecraft/util/DirectoryLock/ (Ljava/nio/channels/FileChannel;Ljava/nio/channels/FileLock;)V net/minecraft/util/DirectoryLock/ (Ljava/nio/channels/FileChannel;Ljava/nio/channels/FileLock;)V +MD: net/minecraft/util/DirectoryLock/close ()V net/minecraft/util/DirectoryLock/close ()V +MD: net/minecraft/util/DirectoryLock/m_13639_ ()Z net/minecraft/util/DirectoryLock/isValid ()Z +MD: net/minecraft/util/DirectoryLock/m_13640_ (Ljava/nio/file/Path;)Lnet/minecraft/util/DirectoryLock; net/minecraft/util/DirectoryLock/create (Ljava/nio/file/Path;)Lnet/minecraft/util/DirectoryLock; +MD: net/minecraft/util/DirectoryLock/m_13642_ (Ljava/nio/file/Path;)Z net/minecraft/util/DirectoryLock/isLocked (Ljava/nio/file/Path;)Z +MD: net/minecraft/util/DirectoryLock$LockException/ (Ljava/nio/file/Path;Ljava/lang/String;)V net/minecraft/util/DirectoryLock$LockException/ (Ljava/nio/file/Path;Ljava/lang/String;)V +MD: net/minecraft/util/DirectoryLock$LockException/m_13648_ (Ljava/nio/file/Path;)Lnet/minecraft/util/DirectoryLock$LockException; net/minecraft/util/DirectoryLock$LockException/alreadyLocked (Ljava/nio/file/Path;)Lnet/minecraft/util/DirectoryLock$LockException; +MD: net/minecraft/util/ExceptionCollector/ ()V net/minecraft/util/ExceptionCollector/ ()V +MD: net/minecraft/util/ExceptionCollector/m_13652_ ()V net/minecraft/util/ExceptionCollector/throwIfPresent ()V +MD: net/minecraft/util/ExceptionCollector/m_13653_ (Ljava/lang/Throwable;)V net/minecraft/util/ExceptionCollector/add (Ljava/lang/Throwable;)V +MD: net/minecraft/util/ExtraCodecs/ ()V net/minecraft/util/ExtraCodecs/ ()V +MD: net/minecraft/util/ExtraCodecs/ ()V net/minecraft/util/ExtraCodecs/ ()V +MD: net/minecraft/util/ExtraCodecs/m_144633_ (IILjava/util/function/Function;)Lcom/mojang/serialization/Codec; net/minecraft/util/ExtraCodecs/intRangeWithMessage (IILjava/util/function/Function;)Lcom/mojang/serialization/Codec; +MD: net/minecraft/util/ExtraCodecs/m_144637_ (Lcom/mojang/serialization/Codec;)Lcom/mojang/serialization/Codec; net/minecraft/util/ExtraCodecs/nonEmptyList (Lcom/mojang/serialization/Codec;)Lcom/mojang/serialization/Codec; +MD: net/minecraft/util/ExtraCodecs/m_144639_ (Lcom/mojang/serialization/Codec;Lcom/mojang/serialization/Codec;)Lcom/mojang/serialization/Codec; net/minecraft/util/ExtraCodecs/xor (Lcom/mojang/serialization/Codec;Lcom/mojang/serialization/Codec;)Lcom/mojang/serialization/Codec; +MD: net/minecraft/util/ExtraCodecs/m_184350_ (FFLjava/util/function/Function;)Lcom/mojang/serialization/Codec; net/minecraft/util/ExtraCodecs/floatRangeMinExclusiveWithMessage (FFLjava/util/function/Function;)Lcom/mojang/serialization/Codec; +MD: net/minecraft/util/ExtraCodecs/m_184354_ (Lcom/mojang/datafixers/util/Either;)Ljava/lang/Object; net/minecraft/util/ExtraCodecs/lambda$intervalCodec$29 (Lcom/mojang/datafixers/util/Either;)Ljava/lang/Object; +MD: net/minecraft/util/ExtraCodecs/m_184356_ (Lcom/mojang/serialization/Codec;Ljava/lang/String;Ljava/lang/String;Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/util/ExtraCodecs/lambda$intervalCodec$24 (Lcom/mojang/serialization/Codec;Ljava/lang/String;Ljava/lang/String;Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/util/ExtraCodecs/m_184361_ (Lcom/mojang/serialization/Codec;Ljava/lang/String;Ljava/lang/String;Ljava/util/function/BiFunction;Ljava/util/function/Function;Ljava/util/function/Function;)Lcom/mojang/serialization/Codec; net/minecraft/util/ExtraCodecs/intervalCodec (Lcom/mojang/serialization/Codec;Ljava/lang/String;Ljava/lang/String;Ljava/util/function/BiFunction;Ljava/util/function/Function;Ljava/util/function/Function;)Lcom/mojang/serialization/Codec; +MD: net/minecraft/util/ExtraCodecs/m_184368_ (Lcom/mojang/serialization/Codec;Ljava/util/function/Function;Ljava/util/function/Function;)Lcom/mojang/serialization/Codec; net/minecraft/util/ExtraCodecs/overrideLifecycle (Lcom/mojang/serialization/Codec;Ljava/util/function/Function;Ljava/util/function/Function;)Lcom/mojang/serialization/Codec; +MD: net/minecraft/util/ExtraCodecs/m_184372_ (Ljava/lang/Integer;)Ljava/lang/String; net/minecraft/util/ExtraCodecs/lambda$static$46 (Ljava/lang/Integer;)Ljava/lang/String; +MD: net/minecraft/util/ExtraCodecs/m_184374_ (Ljava/lang/Object;)Ljava/lang/String; net/minecraft/util/ExtraCodecs/lambda$idResolverCodec$36 (Ljava/lang/Object;)Ljava/lang/String; +MD: net/minecraft/util/ExtraCodecs/m_184381_ (Ljava/lang/Object;)Lcom/mojang/serialization/Codec$ResultFunction; net/minecraft/util/ExtraCodecs/orElsePartial (Ljava/lang/Object;)Lcom/mojang/serialization/Codec$ResultFunction; +MD: net/minecraft/util/ExtraCodecs/m_184387_ (Ljava/util/function/BiFunction;Lcom/mojang/datafixers/util/Either;)Lcom/mojang/serialization/DataResult; net/minecraft/util/ExtraCodecs/lambda$intervalCodec$31 (Ljava/util/function/BiFunction;Lcom/mojang/datafixers/util/Either;)Lcom/mojang/serialization/DataResult; +MD: net/minecraft/util/ExtraCodecs/m_184390_ (Ljava/util/function/BiFunction;Lcom/mojang/datafixers/util/Pair;)Lcom/mojang/serialization/DataResult; net/minecraft/util/ExtraCodecs/lambda$intervalCodec$25 (Ljava/util/function/BiFunction;Lcom/mojang/datafixers/util/Pair;)Lcom/mojang/serialization/DataResult; +MD: net/minecraft/util/ExtraCodecs/m_184393_ (Ljava/util/function/BiFunction;Ljava/lang/Object;)Lcom/mojang/serialization/DataResult; net/minecraft/util/ExtraCodecs/lambda$intervalCodec$30 (Ljava/util/function/BiFunction;Ljava/lang/Object;)Lcom/mojang/serialization/DataResult; +MD: net/minecraft/util/ExtraCodecs/m_184396_ (Ljava/util/function/BiFunction;Ljava/util/List;)Lcom/mojang/serialization/DataResult; net/minecraft/util/ExtraCodecs/lambda$intervalCodec$22 (Ljava/util/function/BiFunction;Ljava/util/List;)Lcom/mojang/serialization/DataResult; +MD: net/minecraft/util/ExtraCodecs/m_184399_ (Ljava/util/function/Function;Ljava/lang/Object;)Lcom/mojang/serialization/DataResult; net/minecraft/util/ExtraCodecs/lambda$stringResolverCodec$43 (Ljava/util/function/Function;Ljava/lang/Object;)Lcom/mojang/serialization/DataResult; +MD: net/minecraft/util/ExtraCodecs/m_184402_ (Ljava/util/function/Function;Ljava/lang/String;)Lcom/mojang/serialization/DataResult; net/minecraft/util/ExtraCodecs/lambda$stringResolverCodec$40 (Ljava/util/function/Function;Ljava/lang/String;)Lcom/mojang/serialization/DataResult; +MD: net/minecraft/util/ExtraCodecs/m_184405_ (Ljava/util/function/Function;Ljava/util/function/Function;)Lcom/mojang/serialization/Codec; net/minecraft/util/ExtraCodecs/stringResolverCodec (Ljava/util/function/Function;Ljava/util/function/Function;)Lcom/mojang/serialization/Codec; +MD: net/minecraft/util/ExtraCodecs/m_184408_ (Ljava/util/function/Function;Ljava/util/function/Function;Ljava/lang/Object;)Lcom/mojang/datafixers/util/Either; net/minecraft/util/ExtraCodecs/lambda$intervalCodec$32 (Ljava/util/function/Function;Ljava/util/function/Function;Ljava/lang/Object;)Lcom/mojang/datafixers/util/Either; +MD: net/minecraft/util/ExtraCodecs/m_184412_ (Ljava/util/function/IntFunction;Ljava/lang/Integer;)Lcom/mojang/serialization/DataResult; net/minecraft/util/ExtraCodecs/lambda$idResolverCodec$35 (Ljava/util/function/IntFunction;Ljava/lang/Integer;)Lcom/mojang/serialization/DataResult; +MD: net/minecraft/util/ExtraCodecs/m_184415_ (Ljava/util/function/Supplier;)Lcom/mojang/serialization/Codec; net/minecraft/util/ExtraCodecs/lazyInitializedCodec (Ljava/util/function/Supplier;)Lcom/mojang/serialization/Codec; +MD: net/minecraft/util/ExtraCodecs/m_184421_ (Ljava/util/function/ToIntFunction;Ljava/util/function/IntFunction;I)Lcom/mojang/serialization/Codec; net/minecraft/util/ExtraCodecs/idResolverCodec (Ljava/util/function/ToIntFunction;Ljava/util/function/IntFunction;I)Lcom/mojang/serialization/Codec; +MD: net/minecraft/util/ExtraCodecs/m_184425_ (Lcom/mojang/serialization/Codec;Lcom/mojang/serialization/Codec;)Lcom/mojang/serialization/Codec; net/minecraft/util/ExtraCodecs/orCompressed (Lcom/mojang/serialization/Codec;Lcom/mojang/serialization/Codec;)Lcom/mojang/serialization/Codec; +MD: net/minecraft/util/ExtraCodecs/m_184428_ (Ljava/lang/Integer;)Ljava/lang/String; net/minecraft/util/ExtraCodecs/lambda$idResolverCodec$33 (Ljava/lang/Integer;)Ljava/lang/String; +MD: net/minecraft/util/ExtraCodecs/m_184443_ (Ljava/util/function/BiFunction;Ljava/util/List;)Lcom/mojang/serialization/DataResult; net/minecraft/util/ExtraCodecs/lambda$intervalCodec$21 (Ljava/util/function/BiFunction;Ljava/util/List;)Lcom/mojang/serialization/DataResult; +MD: net/minecraft/util/ExtraCodecs/m_184446_ (Ljava/util/function/Function;Ljava/util/function/Function;Ljava/lang/Object;)Lcom/mojang/datafixers/util/Pair; net/minecraft/util/ExtraCodecs/lambda$intervalCodec$26 (Ljava/util/function/Function;Ljava/util/function/Function;Ljava/lang/Object;)Lcom/mojang/datafixers/util/Pair; +MD: net/minecraft/util/ExtraCodecs/m_184454_ (Ljava/lang/Object;)Ljava/lang/Object; net/minecraft/util/ExtraCodecs/lambda$intervalCodec$28 (Ljava/lang/Object;)Ljava/lang/Object; +MD: net/minecraft/util/ExtraCodecs/m_184456_ (Ljava/util/function/Function;Ljava/util/function/Function;Ljava/lang/Object;)Ljava/util/List; net/minecraft/util/ExtraCodecs/lambda$intervalCodec$23 (Ljava/util/function/Function;Ljava/util/function/Function;Ljava/lang/Object;)Ljava/util/List; +MD: net/minecraft/util/ExtraCodecs/m_184460_ (Ljava/lang/Object;)Ljava/lang/Object; net/minecraft/util/ExtraCodecs/lambda$intervalCodec$27 (Ljava/lang/Object;)Ljava/lang/Object; +MD: net/minecraft/util/ExtraCodecs/m_203976_ (Ljava/util/function/Function;)Lcom/mojang/serialization/MapCodec; net/minecraft/util/ExtraCodecs/retrieveContext (Ljava/util/function/Function;)Lcom/mojang/serialization/MapCodec; +MD: net/minecraft/util/ExtraCodecs/m_203978_ (Ljava/util/function/Function;Ljava/util/Collection;)Lcom/mojang/serialization/DataResult; net/minecraft/util/ExtraCodecs/lambda$ensureHomogenous$57 (Ljava/util/function/Function;Ljava/util/Collection;)Lcom/mojang/serialization/DataResult; +MD: net/minecraft/util/ExtraCodecs/m_203982_ (Lcom/mojang/serialization/Codec;)Lcom/mojang/serialization/Codec; net/minecraft/util/ExtraCodecs/nonEmptyHolderSet (Lcom/mojang/serialization/Codec;)Lcom/mojang/serialization/Codec; +MD: net/minecraft/util/ExtraCodecs/m_203984_ (Ljava/util/function/Function;)Ljava/util/function/Function; net/minecraft/util/ExtraCodecs/ensureHomogenous (Ljava/util/function/Function;)Ljava/util/function/Function; +MD: net/minecraft/util/ExtraCodecs/m_216164_ (Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/util/ExtraCodecs$TagOrElementLocation; net/minecraft/util/ExtraCodecs/lambda$static$65 (Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/util/ExtraCodecs$TagOrElementLocation; +MD: net/minecraft/util/ExtraCodecs/m_216166_ (Lcom/mojang/serialization/MapCodec;)Lcom/mojang/serialization/MapCodec; net/minecraft/util/ExtraCodecs/asOptionalLong (Lcom/mojang/serialization/MapCodec;)Lcom/mojang/serialization/MapCodec; +MD: net/minecraft/util/ExtraCodecs/m_216168_ (Ljava/lang/String;)Lcom/mojang/serialization/DataResult; net/minecraft/util/ExtraCodecs/lambda$static$66 (Ljava/lang/String;)Lcom/mojang/serialization/DataResult; +MD: net/minecraft/util/ExtraCodecs/m_216170_ (Ljava/time/format/DateTimeFormatter;)Lcom/mojang/serialization/Codec; net/minecraft/util/ExtraCodecs/instantCodec (Ljava/time/format/DateTimeFormatter;)Lcom/mojang/serialization/Codec; +MD: net/minecraft/util/ExtraCodecs/m_216175_ (Ljava/util/Optional;)Ljava/util/OptionalLong; net/minecraft/util/ExtraCodecs/lambda$static$67 (Ljava/util/Optional;)Ljava/util/OptionalLong; +MD: net/minecraft/util/ExtraCodecs/m_216177_ (Ljava/util/OptionalLong;)Ljava/util/Optional; net/minecraft/util/ExtraCodecs/lambda$static$68 (Ljava/util/OptionalLong;)Ljava/util/Optional; +MD: net/minecraft/util/ExtraCodecs/m_216179_ ([B)Ljava/lang/String; net/minecraft/util/ExtraCodecs/lambda$static$63 ([B)Ljava/lang/String; +MD: net/minecraft/util/ExtraCodecs/m_216181_ (Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/util/ExtraCodecs$TagOrElementLocation; net/minecraft/util/ExtraCodecs/lambda$static$64 (Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/util/ExtraCodecs$TagOrElementLocation; +MD: net/minecraft/util/ExtraCodecs/m_216185_ (Lcom/mojang/serialization/Codec;)Lcom/mojang/serialization/Codec; net/minecraft/util/ExtraCodecs/catchDecoderException (Lcom/mojang/serialization/Codec;)Lcom/mojang/serialization/Codec; +MD: net/minecraft/util/ExtraCodecs/m_252663_ (Ljava/util/List;)Lorg/joml/Vector3f; net/minecraft/util/ExtraCodecs/lambda$static$6 (Ljava/util/List;)Lorg/joml/Vector3f; +MD: net/minecraft/util/ExtraCodecs/m_252664_ (Lcom/mojang/authlib/properties/Property;)Ljava/util/Optional; net/minecraft/util/ExtraCodecs/lambda$static$71 (Lcom/mojang/authlib/properties/Property;)Ljava/util/Optional; +MD: net/minecraft/util/ExtraCodecs/m_252665_ (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/util/ExtraCodecs/lambda$static$73 (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/util/ExtraCodecs/m_252666_ (Ljava/util/Optional;)Ljava/lang/String; net/minecraft/util/ExtraCodecs/lambda$static$80 (Ljava/util/Optional;)Ljava/lang/String; +MD: net/minecraft/util/ExtraCodecs/m_252667_ (Ljava/util/BitSet;)Ljava/util/stream/LongStream; net/minecraft/util/ExtraCodecs/lambda$static$70 (Ljava/util/BitSet;)Ljava/util/stream/LongStream; +MD: net/minecraft/util/ExtraCodecs/m_252668_ (Ljava/lang/String;Ljava/lang/String;Ljava/util/Optional;)Lcom/mojang/authlib/properties/Property; net/minecraft/util/ExtraCodecs/lambda$static$72 (Ljava/lang/String;Ljava/lang/String;Ljava/util/Optional;)Lcom/mojang/authlib/properties/Property; +MD: net/minecraft/util/ExtraCodecs/m_252669_ (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/util/ExtraCodecs/lambda$static$83 (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/util/ExtraCodecs/m_252671_ (Lcom/mojang/authlib/properties/PropertyMap;Ljava/lang/String;Ljava/util/List;)V net/minecraft/util/ExtraCodecs/lambda$static$74 (Lcom/mojang/authlib/properties/PropertyMap;Ljava/lang/String;Ljava/util/List;)V +MD: net/minecraft/util/ExtraCodecs/m_252672_ (Ljava/util/List;)Lcom/mojang/serialization/DataResult; net/minecraft/util/ExtraCodecs/lambda$static$7 (Ljava/util/List;)Lcom/mojang/serialization/DataResult; +MD: net/minecraft/util/ExtraCodecs/m_252674_ (Lcom/mojang/authlib/properties/PropertyMap;)Lcom/mojang/datafixers/util/Either; net/minecraft/util/ExtraCodecs/lambda$static$78 (Lcom/mojang/authlib/properties/PropertyMap;)Lcom/mojang/datafixers/util/Either; +MD: net/minecraft/util/ExtraCodecs/m_252675_ (Lcom/mojang/authlib/properties/PropertyMap;Ljava/util/Map;)V net/minecraft/util/ExtraCodecs/lambda$static$75 (Lcom/mojang/authlib/properties/PropertyMap;Ljava/util/Map;)V +MD: net/minecraft/util/ExtraCodecs/m_252676_ (Lcom/mojang/serialization/Dynamic;)Lcom/google/gson/JsonElement; net/minecraft/util/ExtraCodecs/lambda$static$0 (Lcom/mojang/serialization/Dynamic;)Lcom/google/gson/JsonElement; +MD: net/minecraft/util/ExtraCodecs/m_252677_ (Lcom/mojang/authlib/properties/PropertyMap;Ljava/util/List;)V net/minecraft/util/ExtraCodecs/lambda$static$76 (Lcom/mojang/authlib/properties/PropertyMap;Ljava/util/List;)V +MD: net/minecraft/util/ExtraCodecs/m_252678_ (Lcom/mojang/authlib/GameProfile;Ljava/lang/String;Lcom/mojang/authlib/properties/Property;)V net/minecraft/util/ExtraCodecs/lambda$static$81 (Lcom/mojang/authlib/GameProfile;Ljava/lang/String;Lcom/mojang/authlib/properties/Property;)V +MD: net/minecraft/util/ExtraCodecs/m_252679_ (Lcom/google/gson/JsonElement;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/ExtraCodecs/lambda$static$1 (Lcom/google/gson/JsonElement;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/ExtraCodecs/m_252680_ (Ljava/util/stream/LongStream;)Ljava/util/BitSet; net/minecraft/util/ExtraCodecs/lambda$static$69 (Ljava/util/stream/LongStream;)Ljava/util/BitSet; +MD: net/minecraft/util/ExtraCodecs/m_252681_ (Lcom/mojang/datafixers/util/Either;)Lcom/mojang/authlib/properties/PropertyMap; net/minecraft/util/ExtraCodecs/lambda$static$77 (Lcom/mojang/datafixers/util/Either;)Lcom/mojang/authlib/properties/PropertyMap; +MD: net/minecraft/util/ExtraCodecs/m_252683_ (Ljava/util/Optional;)Ljava/util/UUID; net/minecraft/util/ExtraCodecs/lambda$static$79 (Ljava/util/Optional;)Ljava/util/UUID; +MD: net/minecraft/util/ExtraCodecs/m_252684_ (Lcom/mojang/authlib/GameProfile;Lcom/mojang/authlib/properties/PropertyMap;)Lcom/mojang/authlib/GameProfile; net/minecraft/util/ExtraCodecs/lambda$static$82 (Lcom/mojang/authlib/GameProfile;Lcom/mojang/authlib/properties/PropertyMap;)Lcom/mojang/authlib/GameProfile; +MD: net/minecraft/util/ExtraCodecs/m_252819_ (Lcom/mojang/authlib/GameProfile;)Lcom/mojang/serialization/DataResult; net/minecraft/util/ExtraCodecs/mapGameProfileToIdName (Lcom/mojang/authlib/GameProfile;)Lcom/mojang/serialization/DataResult; +MD: net/minecraft/util/ExtraCodecs/m_252898_ (Lcom/mojang/datafixers/util/Pair;)Lcom/mojang/serialization/DataResult; net/minecraft/util/ExtraCodecs/mapIdNameToGameProfile (Lcom/mojang/datafixers/util/Pair;)Lcom/mojang/serialization/DataResult; +MD: net/minecraft/util/ExtraCodecs/m_264337_ (II)Lcom/mojang/serialization/Codec; net/minecraft/util/ExtraCodecs/sizeLimitedString (II)Lcom/mojang/serialization/Codec; +MD: net/minecraft/util/ExtraCodecs/m_264370_ (Lcom/mojang/serialization/Codec;Ljava/util/function/Function;)Lcom/mojang/serialization/Codec; net/minecraft/util/ExtraCodecs/validate (Lcom/mojang/serialization/Codec;Ljava/util/function/Function;)Lcom/mojang/serialization/Codec; +MD: net/minecraft/util/ExtraCodecs/m_268850_ (Ljava/util/List;)Lcom/mojang/serialization/DataResult; net/minecraft/util/ExtraCodecs/lambda$static$10 (Ljava/util/List;)Lcom/mojang/serialization/DataResult; +MD: net/minecraft/util/ExtraCodecs/m_268851_ (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/util/ExtraCodecs/lambda$static$14 (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/util/ExtraCodecs/m_268852_ (Lorg/joml/Matrix4f;)Ljava/util/List; net/minecraft/util/ExtraCodecs/lambda$static$20 (Lorg/joml/Matrix4f;)Ljava/util/List; +MD: net/minecraft/util/ExtraCodecs/m_268853_ (Lorg/joml/AxisAngle4f;)Ljava/lang/Float; net/minecraft/util/ExtraCodecs/lambda$static$12 (Lorg/joml/AxisAngle4f;)Ljava/lang/Float; +MD: net/minecraft/util/ExtraCodecs/m_268854_ (Ljava/util/List;)Lorg/joml/Matrix4f; net/minecraft/util/ExtraCodecs/lambda$static$18 (Ljava/util/List;)Lorg/joml/Matrix4f; +MD: net/minecraft/util/ExtraCodecs/m_268855_ (Lorg/joml/AxisAngle4f;)Lorg/joml/Vector3f; net/minecraft/util/ExtraCodecs/lambda$static$13 (Lorg/joml/AxisAngle4f;)Lorg/joml/Vector3f; +MD: net/minecraft/util/ExtraCodecs/m_268856_ (Lcom/mojang/datafixers/util/Either;)Lorg/joml/Quaternionf; net/minecraft/util/ExtraCodecs/lambda$static$17 (Lcom/mojang/datafixers/util/Either;)Lorg/joml/Quaternionf; +MD: net/minecraft/util/ExtraCodecs/m_268857_ (Lorg/joml/Quaternionf;)Ljava/util/List; net/minecraft/util/ExtraCodecs/lambda$static$11 (Lorg/joml/Quaternionf;)Ljava/util/List; +MD: net/minecraft/util/ExtraCodecs/m_268858_ (Lorg/joml/Quaternionf;)Lorg/joml/Quaternionf; net/minecraft/util/ExtraCodecs/lambda$static$15 (Lorg/joml/Quaternionf;)Lorg/joml/Quaternionf; +MD: net/minecraft/util/ExtraCodecs/m_268859_ (IILjava/lang/Integer;)Ljava/lang/String; net/minecraft/util/ExtraCodecs/lambda$intRange$48 (IILjava/lang/Integer;)Ljava/lang/String; +MD: net/minecraft/util/ExtraCodecs/m_268860_ (Ljava/util/List;)Lorg/joml/Quaternionf; net/minecraft/util/ExtraCodecs/lambda$static$9 (Ljava/util/List;)Lorg/joml/Quaternionf; +MD: net/minecraft/util/ExtraCodecs/m_268861_ (Lorg/joml/Quaternionf;)Lorg/joml/Quaternionf; net/minecraft/util/ExtraCodecs/lambda$static$16 (Lorg/joml/Quaternionf;)Lorg/joml/Quaternionf; +MD: net/minecraft/util/ExtraCodecs/m_268862_ (Lorg/joml/Vector3f;)Ljava/util/List; net/minecraft/util/ExtraCodecs/lambda$static$8 (Lorg/joml/Vector3f;)Ljava/util/List; +MD: net/minecraft/util/ExtraCodecs/m_268863_ (Ljava/util/List;)Lcom/mojang/serialization/DataResult; net/minecraft/util/ExtraCodecs/lambda$static$19 (Ljava/util/List;)Lcom/mojang/serialization/DataResult; +MD: net/minecraft/util/ExtraCodecs/m_269197_ (II)Lcom/mojang/serialization/Codec; net/minecraft/util/ExtraCodecs/intRange (II)Lcom/mojang/serialization/Codec; +MD: net/minecraft/util/ExtraCodecs/m_274118_ ()Ljava/lang/String; net/minecraft/util/ExtraCodecs/lambda$static$84 ()Ljava/lang/String; +MD: net/minecraft/util/ExtraCodecs/m_274119_ (Ljava/lang/Integer;)Ljava/lang/String; net/minecraft/util/ExtraCodecs/lambda$static$47 (Ljava/lang/Integer;)Ljava/lang/String; +MD: net/minecraft/util/ExtraCodecs/m_274120_ ()Ljava/lang/String; net/minecraft/util/ExtraCodecs/lambda$nonEmptyList$52 ()Ljava/lang/String; +MD: net/minecraft/util/ExtraCodecs/m_274121_ (Ljava/util/function/ToIntFunction;ILjava/lang/Object;)Lcom/mojang/serialization/DataResult; net/minecraft/util/ExtraCodecs/lambda$idResolverCodec$37 (Ljava/util/function/ToIntFunction;ILjava/lang/Object;)Lcom/mojang/serialization/DataResult; +MD: net/minecraft/util/ExtraCodecs/m_274122_ (Ljava/lang/Integer;)Lcom/mojang/serialization/DataResult; net/minecraft/util/ExtraCodecs/lambda$idResolverCodec$34 (Ljava/lang/Integer;)Lcom/mojang/serialization/DataResult; +MD: net/minecraft/util/ExtraCodecs/m_274123_ (Ljava/lang/String;)Lcom/mojang/serialization/DataResult; net/minecraft/util/ExtraCodecs/lambda$static$62 (Ljava/lang/String;)Lcom/mojang/serialization/DataResult; +MD: net/minecraft/util/ExtraCodecs/m_274124_ (Ljava/util/List;)Lcom/mojang/serialization/DataResult; net/minecraft/util/ExtraCodecs/lambda$nonEmptyList$53 (Ljava/util/List;)Lcom/mojang/serialization/DataResult; +MD: net/minecraft/util/ExtraCodecs/m_274125_ ()Ljava/lang/String; net/minecraft/util/ExtraCodecs/lambda$nonEmptyHolderSet$54 ()Ljava/lang/String; +MD: net/minecraft/util/ExtraCodecs/m_274126_ (Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/String; net/minecraft/util/ExtraCodecs/lambda$ensureHomogenous$56 (Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/String; +MD: net/minecraft/util/ExtraCodecs/m_274127_ (Ljava/lang/String;)Lcom/mojang/serialization/DataResult; net/minecraft/util/ExtraCodecs/lambda$static$59 (Ljava/lang/String;)Lcom/mojang/serialization/DataResult; +MD: net/minecraft/util/ExtraCodecs/m_274128_ (Ljava/lang/String;)Lcom/mojang/serialization/DataResult; net/minecraft/util/ExtraCodecs/lambda$static$85 (Ljava/lang/String;)Lcom/mojang/serialization/DataResult; +MD: net/minecraft/util/ExtraCodecs/m_274129_ (Lnet/minecraft/network/chat/Component;)Lcom/mojang/serialization/DataResult; net/minecraft/util/ExtraCodecs/lambda$static$3 (Lnet/minecraft/network/chat/Component;)Lcom/mojang/serialization/DataResult; +MD: net/minecraft/util/ExtraCodecs/m_274130_ (Lnet/minecraft/core/HolderSet;)Lcom/mojang/serialization/DataResult; net/minecraft/util/ExtraCodecs/lambda$nonEmptyHolderSet$55 (Lnet/minecraft/core/HolderSet;)Lcom/mojang/serialization/DataResult; +MD: net/minecraft/util/ExtraCodecs/m_274131_ (Lcom/google/gson/JsonElement;)Lcom/mojang/serialization/DataResult; net/minecraft/util/ExtraCodecs/lambda$static$2 (Lcom/google/gson/JsonElement;)Lcom/mojang/serialization/DataResult; +MD: net/minecraft/util/ExtraCodecs/m_274132_ (FFLjava/util/function/Function;Ljava/lang/Float;)Lcom/mojang/serialization/DataResult; net/minecraft/util/ExtraCodecs/lambda$floatRangeMinExclusiveWithMessage$50 (FFLjava/util/function/Function;Ljava/lang/Float;)Lcom/mojang/serialization/DataResult; +MD: net/minecraft/util/ExtraCodecs/m_274133_ (Ljava/lang/String;)Ljava/lang/String; net/minecraft/util/ExtraCodecs/lambda$stringResolverCodec$38 (Ljava/lang/String;)Ljava/lang/String; +MD: net/minecraft/util/ExtraCodecs/m_274134_ ()Ljava/lang/String; net/minecraft/util/ExtraCodecs/lambda$static$61 ()Ljava/lang/String; +MD: net/minecraft/util/ExtraCodecs/m_274135_ (Ljava/lang/String;)Lcom/mojang/serialization/DataResult; net/minecraft/util/ExtraCodecs/lambda$stringResolverCodec$39 (Ljava/lang/String;)Lcom/mojang/serialization/DataResult; +MD: net/minecraft/util/ExtraCodecs/m_274136_ (Ljava/lang/String;Ljava/util/regex/PatternSyntaxException;)Ljava/lang/String; net/minecraft/util/ExtraCodecs/lambda$static$58 (Ljava/lang/String;Ljava/util/regex/PatternSyntaxException;)Ljava/lang/String; +MD: net/minecraft/util/ExtraCodecs/m_274137_ (Ljava/lang/String;III)Ljava/lang/String; net/minecraft/util/ExtraCodecs/lambda$sizeLimitedString$88 (Ljava/lang/String;III)Ljava/lang/String; +MD: net/minecraft/util/ExtraCodecs/m_274138_ (Ljava/util/function/Function;Ljava/lang/Integer;)Ljava/lang/String; net/minecraft/util/ExtraCodecs/lambda$intRangeWithMessage$44 (Ljava/util/function/Function;Ljava/lang/Integer;)Ljava/lang/String; +MD: net/minecraft/util/ExtraCodecs/m_274139_ (Ljava/lang/Float;)Ljava/lang/String; net/minecraft/util/ExtraCodecs/lambda$static$51 (Ljava/lang/Float;)Ljava/lang/String; +MD: net/minecraft/util/ExtraCodecs/m_274140_ (IILjava/lang/String;)Lcom/mojang/serialization/DataResult; net/minecraft/util/ExtraCodecs/lambda$sizeLimitedString$90 (IILjava/lang/String;)Lcom/mojang/serialization/DataResult; +MD: net/minecraft/util/ExtraCodecs/m_274141_ (Ljava/time/format/DateTimeFormatter;Ljava/lang/String;)Lcom/mojang/serialization/DataResult; net/minecraft/util/ExtraCodecs/lambda$instantCodec$60 (Ljava/time/format/DateTimeFormatter;Ljava/lang/String;)Lcom/mojang/serialization/DataResult; +MD: net/minecraft/util/ExtraCodecs/m_274142_ (Ljava/util/function/Function;Ljava/lang/Float;)Ljava/lang/String; net/minecraft/util/ExtraCodecs/lambda$floatRangeMinExclusiveWithMessage$49 (Ljava/util/function/Function;Ljava/lang/Float;)Ljava/lang/String; +MD: net/minecraft/util/ExtraCodecs/m_274143_ (Ljava/lang/String;)Ljava/lang/String; net/minecraft/util/ExtraCodecs/lambda$static$86 (Ljava/lang/String;)Ljava/lang/String; +MD: net/minecraft/util/ExtraCodecs/m_274144_ (Ljava/lang/Object;)Lcom/mojang/serialization/DataResult; net/minecraft/util/ExtraCodecs/lambda$stringResolverCodec$42 (Ljava/lang/Object;)Lcom/mojang/serialization/DataResult; +MD: net/minecraft/util/ExtraCodecs/m_274145_ (IILjava/util/function/Function;Ljava/lang/Integer;)Lcom/mojang/serialization/DataResult; net/minecraft/util/ExtraCodecs/lambda$intRangeWithMessage$45 (IILjava/util/function/Function;Ljava/lang/Integer;)Lcom/mojang/serialization/DataResult; +MD: net/minecraft/util/ExtraCodecs/m_274146_ (Ljava/lang/String;III)Ljava/lang/String; net/minecraft/util/ExtraCodecs/lambda$sizeLimitedString$89 (Ljava/lang/String;III)Ljava/lang/String; +MD: net/minecraft/util/ExtraCodecs/m_276732_ (Ljava/lang/String;)Lcom/mojang/serialization/DataResult; net/minecraft/util/ExtraCodecs/lambda$static$4 (Ljava/lang/String;)Lcom/mojang/serialization/DataResult; +MD: net/minecraft/util/ExtraCodecs/m_276733_ (Lnet/minecraft/network/chat/Component;)Lcom/mojang/serialization/DataResult; net/minecraft/util/ExtraCodecs/lambda$static$5 (Lnet/minecraft/network/chat/Component;)Lcom/mojang/serialization/DataResult; +MD: net/minecraft/util/ExtraCodecs/m_284007_ (Ljava/lang/Object;)Ljava/lang/String; net/minecraft/util/ExtraCodecs/lambda$stringResolverCodec$41 (Ljava/lang/Object;)Ljava/lang/String; +MD: net/minecraft/util/ExtraCodecs/m_284008_ (Ljava/lang/String;)Lcom/mojang/serialization/DataResult; net/minecraft/util/ExtraCodecs/lambda$static$87 (Ljava/lang/String;)Lcom/mojang/serialization/DataResult; +MD: net/minecraft/util/ExtraCodecs/m_285994_ (Lcom/mojang/serialization/MapCodec;Ljava/util/function/Function;)Lcom/mojang/serialization/MapCodec; net/minecraft/util/ExtraCodecs/validate (Lcom/mojang/serialization/MapCodec;Ljava/util/function/Function;)Lcom/mojang/serialization/MapCodec; +MD: net/minecraft/util/ExtraCodecs$1/ (Ljava/lang/Object;)V net/minecraft/util/ExtraCodecs$1/ (Ljava/lang/Object;)V +MD: net/minecraft/util/ExtraCodecs$1/apply (Lcom/mojang/serialization/DynamicOps;Ljava/lang/Object;Lcom/mojang/serialization/DataResult;)Lcom/mojang/serialization/DataResult; net/minecraft/util/ExtraCodecs$1/apply (Lcom/mojang/serialization/DynamicOps;Ljava/lang/Object;Lcom/mojang/serialization/DataResult;)Lcom/mojang/serialization/DataResult; +MD: net/minecraft/util/ExtraCodecs$1/coApply (Lcom/mojang/serialization/DynamicOps;Ljava/lang/Object;Lcom/mojang/serialization/DataResult;)Lcom/mojang/serialization/DataResult; net/minecraft/util/ExtraCodecs$1/coApply (Lcom/mojang/serialization/DynamicOps;Ljava/lang/Object;Lcom/mojang/serialization/DataResult;)Lcom/mojang/serialization/DataResult; +MD: net/minecraft/util/ExtraCodecs$1/m_274425_ (Lorg/apache/commons/lang3/mutable/MutableObject;)Ljava/lang/String; net/minecraft/util/ExtraCodecs$1/lambda$apply$0 (Lorg/apache/commons/lang3/mutable/MutableObject;)Ljava/lang/String; +MD: net/minecraft/util/ExtraCodecs$1/toString ()Ljava/lang/String; net/minecraft/util/ExtraCodecs$1/toString ()Ljava/lang/String; +MD: net/minecraft/util/ExtraCodecs$1ContextRetrievalCodec/ (Ljava/util/function/Function;)V net/minecraft/util/ExtraCodecs$1ContextRetrievalCodec/ (Ljava/util/function/Function;)V +MD: net/minecraft/util/ExtraCodecs$1ContextRetrievalCodec/decode (Lcom/mojang/serialization/DynamicOps;Lcom/mojang/serialization/MapLike;)Lcom/mojang/serialization/DataResult; net/minecraft/util/ExtraCodecs$1ContextRetrievalCodec/decode (Lcom/mojang/serialization/DynamicOps;Lcom/mojang/serialization/MapLike;)Lcom/mojang/serialization/DataResult; +MD: net/minecraft/util/ExtraCodecs$1ContextRetrievalCodec/encode (Ljava/lang/Object;Lcom/mojang/serialization/DynamicOps;Lcom/mojang/serialization/RecordBuilder;)Lcom/mojang/serialization/RecordBuilder; net/minecraft/util/ExtraCodecs$1ContextRetrievalCodec/encode (Ljava/lang/Object;Lcom/mojang/serialization/DynamicOps;Lcom/mojang/serialization/RecordBuilder;)Lcom/mojang/serialization/RecordBuilder; +MD: net/minecraft/util/ExtraCodecs$1ContextRetrievalCodec/keys (Lcom/mojang/serialization/DynamicOps;)Ljava/util/stream/Stream; net/minecraft/util/ExtraCodecs$1ContextRetrievalCodec/keys (Lcom/mojang/serialization/DynamicOps;)Ljava/util/stream/Stream; +MD: net/minecraft/util/ExtraCodecs$1ContextRetrievalCodec/toString ()Ljava/lang/String; net/minecraft/util/ExtraCodecs$1ContextRetrievalCodec/toString ()Ljava/lang/String; +MD: net/minecraft/util/ExtraCodecs$2/ (Lcom/mojang/serialization/Codec;Lcom/mojang/serialization/Codec;)V net/minecraft/util/ExtraCodecs$2/ (Lcom/mojang/serialization/Codec;Lcom/mojang/serialization/Codec;)V +MD: net/minecraft/util/ExtraCodecs$2/decode (Lcom/mojang/serialization/DynamicOps;Ljava/lang/Object;)Lcom/mojang/serialization/DataResult; net/minecraft/util/ExtraCodecs$2/decode (Lcom/mojang/serialization/DynamicOps;Ljava/lang/Object;)Lcom/mojang/serialization/DataResult; +MD: net/minecraft/util/ExtraCodecs$2/encode (Ljava/lang/Object;Lcom/mojang/serialization/DynamicOps;Ljava/lang/Object;)Lcom/mojang/serialization/DataResult; net/minecraft/util/ExtraCodecs$2/encode (Ljava/lang/Object;Lcom/mojang/serialization/DynamicOps;Ljava/lang/Object;)Lcom/mojang/serialization/DataResult; +MD: net/minecraft/util/ExtraCodecs$2/toString ()Ljava/lang/String; net/minecraft/util/ExtraCodecs$2/toString ()Ljava/lang/String; +MD: net/minecraft/util/ExtraCodecs$3/ (Ljava/util/function/Function;Ljava/util/function/Function;)V net/minecraft/util/ExtraCodecs$3/ (Ljava/util/function/Function;Ljava/util/function/Function;)V +MD: net/minecraft/util/ExtraCodecs$3/apply (Lcom/mojang/serialization/DynamicOps;Ljava/lang/Object;Lcom/mojang/serialization/DataResult;)Lcom/mojang/serialization/DataResult; net/minecraft/util/ExtraCodecs$3/apply (Lcom/mojang/serialization/DynamicOps;Ljava/lang/Object;Lcom/mojang/serialization/DataResult;)Lcom/mojang/serialization/DataResult; +MD: net/minecraft/util/ExtraCodecs$3/coApply (Lcom/mojang/serialization/DynamicOps;Ljava/lang/Object;Lcom/mojang/serialization/DataResult;)Lcom/mojang/serialization/DataResult; net/minecraft/util/ExtraCodecs$3/coApply (Lcom/mojang/serialization/DynamicOps;Ljava/lang/Object;Lcom/mojang/serialization/DataResult;)Lcom/mojang/serialization/DataResult; +MD: net/minecraft/util/ExtraCodecs$3/m_184492_ (Lcom/mojang/serialization/DataResult;Ljava/util/function/Function;Lcom/mojang/datafixers/util/Pair;)Lcom/mojang/serialization/DataResult; net/minecraft/util/ExtraCodecs$3/lambda$apply$0 (Lcom/mojang/serialization/DataResult;Ljava/util/function/Function;Lcom/mojang/datafixers/util/Pair;)Lcom/mojang/serialization/DataResult; +MD: net/minecraft/util/ExtraCodecs$3/toString ()Ljava/lang/String; net/minecraft/util/ExtraCodecs$3/toString ()Ljava/lang/String; +MD: net/minecraft/util/ExtraCodecs$4/ (Lcom/mojang/serialization/Codec;)V net/minecraft/util/ExtraCodecs$4/ (Lcom/mojang/serialization/Codec;)V +MD: net/minecraft/util/ExtraCodecs$4/decode (Lcom/mojang/serialization/DynamicOps;Ljava/lang/Object;)Lcom/mojang/serialization/DataResult; net/minecraft/util/ExtraCodecs$4/decode (Lcom/mojang/serialization/DynamicOps;Ljava/lang/Object;)Lcom/mojang/serialization/DataResult; +MD: net/minecraft/util/ExtraCodecs$4/m_274404_ (Ljava/lang/Object;Ljava/lang/Exception;)Ljava/lang/String; net/minecraft/util/ExtraCodecs$4/lambda$decode$0 (Ljava/lang/Object;Ljava/lang/Exception;)Ljava/lang/String; +MD: net/minecraft/util/ExtraCodecs$EitherCodec/ (Lcom/mojang/serialization/Codec;Lcom/mojang/serialization/Codec;)V net/minecraft/util/ExtraCodecs$EitherCodec/ (Lcom/mojang/serialization/Codec;Lcom/mojang/serialization/Codec;)V +MD: net/minecraft/util/ExtraCodecs$EitherCodec/decode (Lcom/mojang/serialization/DynamicOps;Ljava/lang/Object;)Lcom/mojang/serialization/DataResult; net/minecraft/util/ExtraCodecs$EitherCodec/decode (Lcom/mojang/serialization/DynamicOps;Ljava/lang/Object;)Lcom/mojang/serialization/DataResult; +MD: net/minecraft/util/ExtraCodecs$EitherCodec/encode (Lcom/mojang/datafixers/util/Either;Lcom/mojang/serialization/DynamicOps;Ljava/lang/Object;)Lcom/mojang/serialization/DataResult; net/minecraft/util/ExtraCodecs$EitherCodec/encode (Lcom/mojang/datafixers/util/Either;Lcom/mojang/serialization/DynamicOps;Ljava/lang/Object;)Lcom/mojang/serialization/DataResult; +MD: net/minecraft/util/ExtraCodecs$EitherCodec/encode (Ljava/lang/Object;Lcom/mojang/serialization/DynamicOps;Ljava/lang/Object;)Lcom/mojang/serialization/DataResult; net/minecraft/util/ExtraCodecs$EitherCodec/encode (Ljava/lang/Object;Lcom/mojang/serialization/DynamicOps;Ljava/lang/Object;)Lcom/mojang/serialization/DataResult; +MD: net/minecraft/util/ExtraCodecs$EitherCodec/equals (Ljava/lang/Object;)Z net/minecraft/util/ExtraCodecs$EitherCodec/equals (Ljava/lang/Object;)Z +MD: net/minecraft/util/ExtraCodecs$EitherCodec/hashCode ()I net/minecraft/util/ExtraCodecs$EitherCodec/hashCode ()I +MD: net/minecraft/util/ExtraCodecs$EitherCodec/m_184514_ (Lcom/mojang/datafixers/util/Pair;)Lcom/mojang/datafixers/util/Pair; net/minecraft/util/ExtraCodecs$EitherCodec/lambda$decode$1 (Lcom/mojang/datafixers/util/Pair;)Lcom/mojang/datafixers/util/Pair; +MD: net/minecraft/util/ExtraCodecs$EitherCodec/m_184516_ (Lcom/mojang/datafixers/util/Pair;Lcom/mojang/datafixers/util/Pair;)Lcom/mojang/datafixers/util/Pair; net/minecraft/util/ExtraCodecs$EitherCodec/lambda$decode$2 (Lcom/mojang/datafixers/util/Pair;Lcom/mojang/datafixers/util/Pair;)Lcom/mojang/datafixers/util/Pair; +MD: net/minecraft/util/ExtraCodecs$EitherCodec/m_184519_ (Lcom/mojang/serialization/DynamicOps;Ljava/lang/Object;Ljava/lang/Object;)Lcom/mojang/serialization/DataResult; net/minecraft/util/ExtraCodecs$EitherCodec/lambda$encode$4 (Lcom/mojang/serialization/DynamicOps;Ljava/lang/Object;Ljava/lang/Object;)Lcom/mojang/serialization/DataResult; +MD: net/minecraft/util/ExtraCodecs$EitherCodec/m_184523_ (Lcom/mojang/datafixers/util/Pair;)Lcom/mojang/datafixers/util/Pair; net/minecraft/util/ExtraCodecs$EitherCodec/lambda$decode$0 (Lcom/mojang/datafixers/util/Pair;)Lcom/mojang/datafixers/util/Pair; +MD: net/minecraft/util/ExtraCodecs$EitherCodec/m_184525_ (Lcom/mojang/serialization/DynamicOps;Ljava/lang/Object;Ljava/lang/Object;)Lcom/mojang/serialization/DataResult; net/minecraft/util/ExtraCodecs$EitherCodec/lambda$encode$3 (Lcom/mojang/serialization/DynamicOps;Ljava/lang/Object;Ljava/lang/Object;)Lcom/mojang/serialization/DataResult; +MD: net/minecraft/util/ExtraCodecs$EitherCodec/toString ()Ljava/lang/String; net/minecraft/util/ExtraCodecs$EitherCodec/toString ()Ljava/lang/String; +MD: net/minecraft/util/ExtraCodecs$LazyInitializedCodec/ (Ljava/util/function/Supplier;)V net/minecraft/util/ExtraCodecs$LazyInitializedCodec/ (Ljava/util/function/Supplier;)V +MD: net/minecraft/util/ExtraCodecs$LazyInitializedCodec/decode (Lcom/mojang/serialization/DynamicOps;Ljava/lang/Object;)Lcom/mojang/serialization/DataResult; net/minecraft/util/ExtraCodecs$LazyInitializedCodec/decode (Lcom/mojang/serialization/DynamicOps;Ljava/lang/Object;)Lcom/mojang/serialization/DataResult; +MD: net/minecraft/util/ExtraCodecs$LazyInitializedCodec/encode (Ljava/lang/Object;Lcom/mojang/serialization/DynamicOps;Ljava/lang/Object;)Lcom/mojang/serialization/DataResult; net/minecraft/util/ExtraCodecs$LazyInitializedCodec/encode (Ljava/lang/Object;Lcom/mojang/serialization/DynamicOps;Ljava/lang/Object;)Lcom/mojang/serialization/DataResult; +MD: net/minecraft/util/ExtraCodecs$LazyInitializedCodec/equals (Ljava/lang/Object;)Z net/minecraft/util/ExtraCodecs$LazyInitializedCodec/equals (Ljava/lang/Object;)Z +MD: net/minecraft/util/ExtraCodecs$LazyInitializedCodec/f_184540_ ()Ljava/util/function/Supplier; net/minecraft/util/ExtraCodecs$LazyInitializedCodec/delegate ()Ljava/util/function/Supplier; +MD: net/minecraft/util/ExtraCodecs$LazyInitializedCodec/hashCode ()I net/minecraft/util/ExtraCodecs$LazyInitializedCodec/hashCode ()I +MD: net/minecraft/util/ExtraCodecs$LazyInitializedCodec/toString ()Ljava/lang/String; net/minecraft/util/ExtraCodecs$LazyInitializedCodec/toString ()Ljava/lang/String; +MD: net/minecraft/util/ExtraCodecs$TagOrElementLocation/ (Lnet/minecraft/resources/ResourceLocation;Z)V net/minecraft/util/ExtraCodecs$TagOrElementLocation/ (Lnet/minecraft/resources/ResourceLocation;Z)V +MD: net/minecraft/util/ExtraCodecs$TagOrElementLocation/equals (Ljava/lang/Object;)Z net/minecraft/util/ExtraCodecs$TagOrElementLocation/equals (Ljava/lang/Object;)Z +MD: net/minecraft/util/ExtraCodecs$TagOrElementLocation/f_216195_ ()Lnet/minecraft/resources/ResourceLocation; net/minecraft/util/ExtraCodecs$TagOrElementLocation/id ()Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/util/ExtraCodecs$TagOrElementLocation/f_216196_ ()Z net/minecraft/util/ExtraCodecs$TagOrElementLocation/tag ()Z +MD: net/minecraft/util/ExtraCodecs$TagOrElementLocation/hashCode ()I net/minecraft/util/ExtraCodecs$TagOrElementLocation/hashCode ()I +MD: net/minecraft/util/ExtraCodecs$TagOrElementLocation/m_216202_ ()Ljava/lang/String; net/minecraft/util/ExtraCodecs$TagOrElementLocation/decoratedId ()Ljava/lang/String; +MD: net/minecraft/util/ExtraCodecs$TagOrElementLocation/toString ()Ljava/lang/String; net/minecraft/util/ExtraCodecs$TagOrElementLocation/toString ()Ljava/lang/String; +MD: net/minecraft/util/ExtraCodecs$XorCodec/ (Lcom/mojang/serialization/Codec;Lcom/mojang/serialization/Codec;)V net/minecraft/util/ExtraCodecs$XorCodec/ (Lcom/mojang/serialization/Codec;Lcom/mojang/serialization/Codec;)V +MD: net/minecraft/util/ExtraCodecs$XorCodec/decode (Lcom/mojang/serialization/DynamicOps;Ljava/lang/Object;)Lcom/mojang/serialization/DataResult; net/minecraft/util/ExtraCodecs$XorCodec/decode (Lcom/mojang/serialization/DynamicOps;Ljava/lang/Object;)Lcom/mojang/serialization/DataResult; +MD: net/minecraft/util/ExtraCodecs$XorCodec/encode (Lcom/mojang/datafixers/util/Either;Lcom/mojang/serialization/DynamicOps;Ljava/lang/Object;)Lcom/mojang/serialization/DataResult; net/minecraft/util/ExtraCodecs$XorCodec/encode (Lcom/mojang/datafixers/util/Either;Lcom/mojang/serialization/DynamicOps;Ljava/lang/Object;)Lcom/mojang/serialization/DataResult; +MD: net/minecraft/util/ExtraCodecs$XorCodec/encode (Ljava/lang/Object;Lcom/mojang/serialization/DynamicOps;Ljava/lang/Object;)Lcom/mojang/serialization/DataResult; net/minecraft/util/ExtraCodecs$XorCodec/encode (Ljava/lang/Object;Lcom/mojang/serialization/DynamicOps;Ljava/lang/Object;)Lcom/mojang/serialization/DataResult; +MD: net/minecraft/util/ExtraCodecs$XorCodec/equals (Ljava/lang/Object;)Z net/minecraft/util/ExtraCodecs$XorCodec/equals (Ljava/lang/Object;)Z +MD: net/minecraft/util/ExtraCodecs$XorCodec/hashCode ()I net/minecraft/util/ExtraCodecs$XorCodec/hashCode ()I +MD: net/minecraft/util/ExtraCodecs$XorCodec/m_144666_ (Lcom/mojang/datafixers/util/Pair;)Lcom/mojang/datafixers/util/Pair; net/minecraft/util/ExtraCodecs$XorCodec/lambda$decode$1 (Lcom/mojang/datafixers/util/Pair;)Lcom/mojang/datafixers/util/Pair; +MD: net/minecraft/util/ExtraCodecs$XorCodec/m_144668_ (Lcom/mojang/serialization/DynamicOps;Ljava/lang/Object;Ljava/lang/Object;)Lcom/mojang/serialization/DataResult; net/minecraft/util/ExtraCodecs$XorCodec/lambda$encode$4 (Lcom/mojang/serialization/DynamicOps;Ljava/lang/Object;Ljava/lang/Object;)Lcom/mojang/serialization/DataResult; +MD: net/minecraft/util/ExtraCodecs$XorCodec/m_144672_ (Lcom/mojang/datafixers/util/Pair;)Lcom/mojang/datafixers/util/Pair; net/minecraft/util/ExtraCodecs$XorCodec/lambda$decode$0 (Lcom/mojang/datafixers/util/Pair;)Lcom/mojang/datafixers/util/Pair; +MD: net/minecraft/util/ExtraCodecs$XorCodec/m_144674_ (Lcom/mojang/serialization/DynamicOps;Ljava/lang/Object;Ljava/lang/Object;)Lcom/mojang/serialization/DataResult; net/minecraft/util/ExtraCodecs$XorCodec/lambda$encode$3 (Lcom/mojang/serialization/DynamicOps;Ljava/lang/Object;Ljava/lang/Object;)Lcom/mojang/serialization/DataResult; +MD: net/minecraft/util/ExtraCodecs$XorCodec/m_274147_ (Ljava/util/Optional;Ljava/util/Optional;)Ljava/lang/String; net/minecraft/util/ExtraCodecs$XorCodec/lambda$decode$2 (Ljava/util/Optional;Ljava/util/Optional;)Ljava/lang/String; +MD: net/minecraft/util/ExtraCodecs$XorCodec/toString ()Ljava/lang/String; net/minecraft/util/ExtraCodecs$XorCodec/toString ()Ljava/lang/String; +MD: net/minecraft/util/FastBufferedInputStream/ (Ljava/io/InputStream;I)V net/minecraft/util/FastBufferedInputStream/ (Ljava/io/InputStream;I)V +MD: net/minecraft/util/FastBufferedInputStream/ (Ljava/io/InputStream;)V net/minecraft/util/FastBufferedInputStream/ (Ljava/io/InputStream;)V +MD: net/minecraft/util/FastBufferedInputStream/available ()I net/minecraft/util/FastBufferedInputStream/available ()I +MD: net/minecraft/util/FastBufferedInputStream/close ()V net/minecraft/util/FastBufferedInputStream/close ()V +MD: net/minecraft/util/FastBufferedInputStream/m_196570_ ()I net/minecraft/util/FastBufferedInputStream/bytesInBuffer ()I +MD: net/minecraft/util/FastBufferedInputStream/m_196572_ ()V net/minecraft/util/FastBufferedInputStream/fill ()V +MD: net/minecraft/util/FastBufferedInputStream/read ([BII)I net/minecraft/util/FastBufferedInputStream/read ([BII)I +MD: net/minecraft/util/FastBufferedInputStream/read ()I net/minecraft/util/FastBufferedInputStream/read ()I +MD: net/minecraft/util/FastBufferedInputStream/skip (J)J net/minecraft/util/FastBufferedInputStream/skip (J)J +MD: net/minecraft/util/FastColor/ ()V net/minecraft/util/FastColor/ ()V +MD: net/minecraft/util/FastColor$ABGR32/ ()V net/minecraft/util/FastColor$ABGR32/ ()V +MD: net/minecraft/util/FastColor$ABGR32/m_266247_ (I)I net/minecraft/util/FastColor$ABGR32/blue (I)I +MD: net/minecraft/util/FastColor$ABGR32/m_266248_ (IIII)I net/minecraft/util/FastColor$ABGR32/color (IIII)I +MD: net/minecraft/util/FastColor$ABGR32/m_266313_ (I)I net/minecraft/util/FastColor$ABGR32/red (I)I +MD: net/minecraft/util/FastColor$ABGR32/m_266446_ (I)I net/minecraft/util/FastColor$ABGR32/green (I)I +MD: net/minecraft/util/FastColor$ABGR32/m_266498_ (II)I net/minecraft/util/FastColor$ABGR32/color (II)I +MD: net/minecraft/util/FastColor$ABGR32/m_266503_ (I)I net/minecraft/util/FastColor$ABGR32/alpha (I)I +MD: net/minecraft/util/FastColor$ABGR32/m_266533_ (I)I net/minecraft/util/FastColor$ABGR32/transparent (I)I +MD: net/minecraft/util/FastColor$ABGR32/m_267818_ (I)I net/minecraft/util/FastColor$ABGR32/opaque (I)I +MD: net/minecraft/util/FastColor$ARGB32/ ()V net/minecraft/util/FastColor$ARGB32/ ()V +MD: net/minecraft/util/FastColor$ARGB32/m_13655_ (I)I net/minecraft/util/FastColor$ARGB32/alpha (I)I +MD: net/minecraft/util/FastColor$ARGB32/m_13657_ (II)I net/minecraft/util/FastColor$ARGB32/multiply (II)I +MD: net/minecraft/util/FastColor$ARGB32/m_13660_ (IIII)I net/minecraft/util/FastColor$ARGB32/color (IIII)I +MD: net/minecraft/util/FastColor$ARGB32/m_13665_ (I)I net/minecraft/util/FastColor$ARGB32/red (I)I +MD: net/minecraft/util/FastColor$ARGB32/m_13667_ (I)I net/minecraft/util/FastColor$ARGB32/green (I)I +MD: net/minecraft/util/FastColor$ARGB32/m_13669_ (I)I net/minecraft/util/FastColor$ARGB32/blue (I)I +MD: net/minecraft/util/FastColor$ARGB32/m_269105_ (FII)I net/minecraft/util/FastColor$ARGB32/lerp (FII)I +MD: net/minecraft/util/FileZipper/ ()V net/minecraft/util/FileZipper/ ()V +MD: net/minecraft/util/FileZipper/ (Ljava/nio/file/Path;)V net/minecraft/util/FileZipper/ (Ljava/nio/file/Path;)V +MD: net/minecraft/util/FileZipper/close ()V net/minecraft/util/FileZipper/close ()V +MD: net/minecraft/util/FileZipper/m_144698_ (Ljava/nio/file/Path;)V net/minecraft/util/FileZipper/add (Ljava/nio/file/Path;)V +MD: net/minecraft/util/FileZipper/m_144700_ (Ljava/nio/file/Path;Ljava/io/File;)V net/minecraft/util/FileZipper/add (Ljava/nio/file/Path;Ljava/io/File;)V +MD: net/minecraft/util/FileZipper/m_144703_ (Ljava/nio/file/Path;Ljava/lang/String;)V net/minecraft/util/FileZipper/add (Ljava/nio/file/Path;Ljava/lang/String;)V +MD: net/minecraft/util/FileZipper/m_144706_ (Ljava/nio/file/Path;Ljava/nio/file/attribute/BasicFileAttributes;)Z net/minecraft/util/FileZipper/lambda$add$0 (Ljava/nio/file/Path;Ljava/nio/file/attribute/BasicFileAttributes;)Z +MD: net/minecraft/util/FormattedCharSequence/ ()V net/minecraft/util/FormattedCharSequence/ ()V +MD: net/minecraft/util/FormattedCharSequence/m_13693_ (ILnet/minecraft/network/chat/Style;)Lnet/minecraft/util/FormattedCharSequence; net/minecraft/util/FormattedCharSequence/codepoint (ILnet/minecraft/network/chat/Style;)Lnet/minecraft/util/FormattedCharSequence; +MD: net/minecraft/util/FormattedCharSequence/m_13696_ (Lnet/minecraft/util/FormattedCharSequence;Lnet/minecraft/util/FormattedCharSequence;)Lnet/minecraft/util/FormattedCharSequence; net/minecraft/util/FormattedCharSequence/composite (Lnet/minecraft/util/FormattedCharSequence;Lnet/minecraft/util/FormattedCharSequence;)Lnet/minecraft/util/FormattedCharSequence; +MD: net/minecraft/util/FormattedCharSequence/m_13699_ (Lnet/minecraft/util/FormattedCharSequence;Lnet/minecraft/util/FormattedCharSequence;Lnet/minecraft/util/FormattedCharSink;)Z net/minecraft/util/FormattedCharSequence/lambda$fromPair$7 (Lnet/minecraft/util/FormattedCharSequence;Lnet/minecraft/util/FormattedCharSequence;Lnet/minecraft/util/FormattedCharSink;)Z +MD: net/minecraft/util/FormattedCharSequence/m_13703_ (Lnet/minecraft/util/FormattedCharSink;)Z net/minecraft/util/FormattedCharSequence/lambda$static$0 (Lnet/minecraft/util/FormattedCharSink;)Z +MD: net/minecraft/util/FormattedCharSequence/m_13705_ (Lnet/minecraft/util/FormattedCharSink;Lit/unimi/dsi/fastutil/ints/Int2IntFunction;)Lnet/minecraft/util/FormattedCharSink; net/minecraft/util/FormattedCharSequence/decorateOutput (Lnet/minecraft/util/FormattedCharSink;Lit/unimi/dsi/fastutil/ints/Int2IntFunction;)Lnet/minecraft/util/FormattedCharSink; +MD: net/minecraft/util/FormattedCharSequence/m_13708_ (Lnet/minecraft/util/FormattedCharSink;Lit/unimi/dsi/fastutil/ints/Int2IntFunction;ILnet/minecraft/network/chat/Style;I)Z net/minecraft/util/FormattedCharSequence/lambda$decorateOutput$6 (Lnet/minecraft/util/FormattedCharSink;Lit/unimi/dsi/fastutil/ints/Int2IntFunction;ILnet/minecraft/network/chat/Style;I)Z +MD: net/minecraft/util/FormattedCharSequence/m_13714_ (Ljava/lang/String;Lnet/minecraft/network/chat/Style;)Lnet/minecraft/util/FormattedCharSequence; net/minecraft/util/FormattedCharSequence/forward (Ljava/lang/String;Lnet/minecraft/network/chat/Style;)Lnet/minecraft/util/FormattedCharSequence; +MD: net/minecraft/util/FormattedCharSequence/m_13717_ (Ljava/lang/String;Lnet/minecraft/network/chat/Style;Lit/unimi/dsi/fastutil/ints/Int2IntFunction;Lnet/minecraft/util/FormattedCharSink;)Z net/minecraft/util/FormattedCharSequence/lambda$backward$5 (Ljava/lang/String;Lnet/minecraft/network/chat/Style;Lit/unimi/dsi/fastutil/ints/Int2IntFunction;Lnet/minecraft/util/FormattedCharSink;)Z +MD: net/minecraft/util/FormattedCharSequence/m_13722_ (Ljava/util/List;)Lnet/minecraft/util/FormattedCharSequence; net/minecraft/util/FormattedCharSequence/composite (Ljava/util/List;)Lnet/minecraft/util/FormattedCharSequence; +MD: net/minecraft/util/FormattedCharSequence/m_13724_ (Ljava/util/List;Lnet/minecraft/util/FormattedCharSink;)Z net/minecraft/util/FormattedCharSequence/lambda$fromList$8 (Ljava/util/List;Lnet/minecraft/util/FormattedCharSink;)Z +MD: net/minecraft/util/FormattedCharSequence/m_13727_ (Lnet/minecraft/network/chat/Style;ILnet/minecraft/util/FormattedCharSink;)Z net/minecraft/util/FormattedCharSequence/lambda$codepoint$1 (Lnet/minecraft/network/chat/Style;ILnet/minecraft/util/FormattedCharSink;)Z +MD: net/minecraft/util/FormattedCharSequence/m_13731_ (Lnet/minecraft/util/FormattedCharSink;)Z net/minecraft/util/FormattedCharSequence/accept (Lnet/minecraft/util/FormattedCharSink;)Z +MD: net/minecraft/util/FormattedCharSequence/m_13733_ (Lnet/minecraft/util/FormattedCharSequence;Lnet/minecraft/util/FormattedCharSequence;)Lnet/minecraft/util/FormattedCharSequence; net/minecraft/util/FormattedCharSequence/fromPair (Lnet/minecraft/util/FormattedCharSequence;Lnet/minecraft/util/FormattedCharSequence;)Lnet/minecraft/util/FormattedCharSequence; +MD: net/minecraft/util/FormattedCharSequence/m_13736_ (Ljava/lang/String;Lnet/minecraft/network/chat/Style;Lnet/minecraft/util/FormattedCharSink;)Z net/minecraft/util/FormattedCharSequence/lambda$forward$2 (Ljava/lang/String;Lnet/minecraft/network/chat/Style;Lnet/minecraft/util/FormattedCharSink;)Z +MD: net/minecraft/util/FormattedCharSequence/m_13740_ (Ljava/lang/String;Lnet/minecraft/network/chat/Style;Lit/unimi/dsi/fastutil/ints/Int2IntFunction;)Lnet/minecraft/util/FormattedCharSequence; net/minecraft/util/FormattedCharSequence/backward (Ljava/lang/String;Lnet/minecraft/network/chat/Style;Lit/unimi/dsi/fastutil/ints/Int2IntFunction;)Lnet/minecraft/util/FormattedCharSequence; +MD: net/minecraft/util/FormattedCharSequence/m_13744_ (Ljava/util/List;)Lnet/minecraft/util/FormattedCharSequence; net/minecraft/util/FormattedCharSequence/fromList (Ljava/util/List;)Lnet/minecraft/util/FormattedCharSequence; +MD: net/minecraft/util/FormattedCharSequence/m_144710_ ()Lnet/minecraft/util/FormattedCharSequence; net/minecraft/util/FormattedCharSequence/composite ()Lnet/minecraft/util/FormattedCharSequence; +MD: net/minecraft/util/FormattedCharSequence/m_144711_ (Lnet/minecraft/util/FormattedCharSequence;)Lnet/minecraft/util/FormattedCharSequence; net/minecraft/util/FormattedCharSequence/composite (Lnet/minecraft/util/FormattedCharSequence;)Lnet/minecraft/util/FormattedCharSequence; +MD: net/minecraft/util/FormattedCharSequence/m_144713_ (Ljava/lang/String;Lnet/minecraft/network/chat/Style;Lnet/minecraft/util/FormattedCharSink;)Z net/minecraft/util/FormattedCharSequence/lambda$backward$4 (Ljava/lang/String;Lnet/minecraft/network/chat/Style;Lnet/minecraft/util/FormattedCharSink;)Z +MD: net/minecraft/util/FormattedCharSequence/m_144717_ (Ljava/lang/String;Lnet/minecraft/network/chat/Style;Lit/unimi/dsi/fastutil/ints/Int2IntFunction;)Lnet/minecraft/util/FormattedCharSequence; net/minecraft/util/FormattedCharSequence/forward (Ljava/lang/String;Lnet/minecraft/network/chat/Style;Lit/unimi/dsi/fastutil/ints/Int2IntFunction;)Lnet/minecraft/util/FormattedCharSequence; +MD: net/minecraft/util/FormattedCharSequence/m_144721_ ([Lnet/minecraft/util/FormattedCharSequence;)Lnet/minecraft/util/FormattedCharSequence; net/minecraft/util/FormattedCharSequence/composite ([Lnet/minecraft/util/FormattedCharSequence;)Lnet/minecraft/util/FormattedCharSequence; +MD: net/minecraft/util/FormattedCharSequence/m_144723_ (Ljava/lang/String;Lnet/minecraft/network/chat/Style;)Lnet/minecraft/util/FormattedCharSequence; net/minecraft/util/FormattedCharSequence/backward (Ljava/lang/String;Lnet/minecraft/network/chat/Style;)Lnet/minecraft/util/FormattedCharSequence; +MD: net/minecraft/util/FormattedCharSequence/m_144726_ (Ljava/lang/String;Lnet/minecraft/network/chat/Style;Lit/unimi/dsi/fastutil/ints/Int2IntFunction;Lnet/minecraft/util/FormattedCharSink;)Z net/minecraft/util/FormattedCharSequence/lambda$forward$3 (Ljava/lang/String;Lnet/minecraft/network/chat/Style;Lit/unimi/dsi/fastutil/ints/Int2IntFunction;Lnet/minecraft/util/FormattedCharSink;)Z +MD: net/minecraft/util/FormattedCharSink/m_6411_ (ILnet/minecraft/network/chat/Style;I)Z net/minecraft/util/FormattedCharSink/accept (ILnet/minecraft/network/chat/Style;I)Z +MD: net/minecraft/util/FrameTimer/ ()V net/minecraft/util/FrameTimer/ ()V +MD: net/minecraft/util/FrameTimer/m_13754_ ()I net/minecraft/util/FrameTimer/getLogStart ()I +MD: net/minecraft/util/FrameTimer/m_13755_ (J)V net/minecraft/util/FrameTimer/logFrameDuration (J)V +MD: net/minecraft/util/FrameTimer/m_13757_ (JII)I net/minecraft/util/FrameTimer/scaleSampleTo (JII)I +MD: net/minecraft/util/FrameTimer/m_13761_ ()I net/minecraft/util/FrameTimer/getLogEnd ()I +MD: net/minecraft/util/FrameTimer/m_13762_ (I)I net/minecraft/util/FrameTimer/wrapIndex (I)I +MD: net/minecraft/util/FrameTimer/m_13764_ ()[J net/minecraft/util/FrameTimer/getLog ()[J +MD: net/minecraft/util/FrameTimer/m_144732_ (I)J net/minecraft/util/FrameTimer/getAverageDuration (I)J +MD: net/minecraft/util/FrameTimer/m_144734_ (II)I net/minecraft/util/FrameTimer/scaleAverageDurationTo (II)I +MD: net/minecraft/util/FutureChain/ ()V net/minecraft/util/FutureChain/ ()V +MD: net/minecraft/util/FutureChain/ (Ljava/util/concurrent/Executor;)V net/minecraft/util/FutureChain/ (Ljava/util/concurrent/Executor;)V +MD: net/minecraft/util/FutureChain/close ()V net/minecraft/util/FutureChain/close ()V +MD: net/minecraft/util/FutureChain/m_241849_ (Lnet/minecraft/util/TaskChainer$DelayedTask;)V net/minecraft/util/FutureChain/append (Lnet/minecraft/util/TaskChainer$DelayedTask;)V +MD: net/minecraft/util/FutureChain/m_241881_ (Ljava/lang/Throwable;)Ljava/lang/Object; net/minecraft/util/FutureChain/lambda$append$2 (Ljava/lang/Throwable;)Ljava/lang/Object; +MD: net/minecraft/util/FutureChain/m_244909_ (Lnet/minecraft/util/TaskChainer$DelayedTask;Ljava/lang/Object;)Ljava/util/concurrent/CompletionStage; net/minecraft/util/FutureChain/lambda$append$1 (Lnet/minecraft/util/TaskChainer$DelayedTask;Ljava/lang/Object;)Ljava/util/concurrent/CompletionStage; +MD: net/minecraft/util/FutureChain/m_244910_ (Ljava/util/concurrent/Executor;Ljava/lang/Runnable;)V net/minecraft/util/FutureChain/lambda$new$0 (Ljava/util/concurrent/Executor;Ljava/lang/Runnable;)V +MD: net/minecraft/util/Graph/ ()V net/minecraft/util/Graph/ ()V +MD: net/minecraft/util/Graph/m_184556_ (Ljava/util/Map;Ljava/util/Set;Ljava/util/Set;Ljava/util/function/Consumer;Ljava/lang/Object;)Z net/minecraft/util/Graph/depthFirstSearch (Ljava/util/Map;Ljava/util/Set;Ljava/util/Set;Ljava/util/function/Consumer;Ljava/lang/Object;)Z +MD: net/minecraft/util/GsonHelper/ ()V net/minecraft/util/GsonHelper/ ()V +MD: net/minecraft/util/GsonHelper/ ()V net/minecraft/util/GsonHelper/ ()V +MD: net/minecraft/util/GsonHelper/m_13767_ (Lcom/google/gson/Gson;Ljava/io/Reader;Lcom/google/gson/reflect/TypeToken;)Ljava/lang/Object; net/minecraft/util/GsonHelper/fromJson (Lcom/google/gson/Gson;Ljava/io/Reader;Lcom/google/gson/reflect/TypeToken;)Ljava/lang/Object; +MD: net/minecraft/util/GsonHelper/m_13771_ (Lcom/google/gson/Gson;Ljava/io/Reader;Lcom/google/gson/reflect/TypeToken;Z)Ljava/lang/Object; net/minecraft/util/GsonHelper/fromNullableJson (Lcom/google/gson/Gson;Ljava/io/Reader;Lcom/google/gson/reflect/TypeToken;Z)Ljava/lang/Object; +MD: net/minecraft/util/GsonHelper/m_13776_ (Lcom/google/gson/Gson;Ljava/io/Reader;Ljava/lang/Class;)Ljava/lang/Object; net/minecraft/util/GsonHelper/fromJson (Lcom/google/gson/Gson;Ljava/io/Reader;Ljava/lang/Class;)Ljava/lang/Object; +MD: net/minecraft/util/GsonHelper/m_13780_ (Lcom/google/gson/Gson;Ljava/io/Reader;Ljava/lang/Class;Z)Ljava/lang/Object; net/minecraft/util/GsonHelper/fromNullableJson (Lcom/google/gson/Gson;Ljava/io/Reader;Ljava/lang/Class;Z)Ljava/lang/Object; +MD: net/minecraft/util/GsonHelper/m_13785_ (Lcom/google/gson/Gson;Ljava/lang/String;Lcom/google/gson/reflect/TypeToken;)Ljava/lang/Object; net/minecraft/util/GsonHelper/fromNullableJson (Lcom/google/gson/Gson;Ljava/lang/String;Lcom/google/gson/reflect/TypeToken;)Ljava/lang/Object; +MD: net/minecraft/util/GsonHelper/m_13789_ (Lcom/google/gson/Gson;Ljava/lang/String;Lcom/google/gson/reflect/TypeToken;Z)Ljava/lang/Object; net/minecraft/util/GsonHelper/fromNullableJson (Lcom/google/gson/Gson;Ljava/lang/String;Lcom/google/gson/reflect/TypeToken;Z)Ljava/lang/Object; +MD: net/minecraft/util/GsonHelper/m_13794_ (Lcom/google/gson/Gson;Ljava/lang/String;Ljava/lang/Class;)Ljava/lang/Object; net/minecraft/util/GsonHelper/fromJson (Lcom/google/gson/Gson;Ljava/lang/String;Ljava/lang/Class;)Ljava/lang/Object; +MD: net/minecraft/util/GsonHelper/m_13798_ (Lcom/google/gson/Gson;Ljava/lang/String;Ljava/lang/Class;Z)Ljava/lang/Object; net/minecraft/util/GsonHelper/fromNullableJson (Lcom/google/gson/Gson;Ljava/lang/String;Ljava/lang/Class;Z)Ljava/lang/Object; +MD: net/minecraft/util/GsonHelper/m_13803_ (Lcom/google/gson/JsonElement;)Z net/minecraft/util/GsonHelper/isStringValue (Lcom/google/gson/JsonElement;)Z +MD: net/minecraft/util/GsonHelper/m_13805_ (Lcom/google/gson/JsonElement;Ljava/lang/String;)Ljava/lang/String; net/minecraft/util/GsonHelper/convertToString (Lcom/google/gson/JsonElement;Ljava/lang/String;)Ljava/lang/String; +MD: net/minecraft/util/GsonHelper/m_13808_ (Lcom/google/gson/JsonElement;Ljava/lang/String;Lcom/google/gson/JsonDeserializationContext;Ljava/lang/Class;)Ljava/lang/Object; net/minecraft/util/GsonHelper/convertToObject (Lcom/google/gson/JsonElement;Ljava/lang/String;Lcom/google/gson/JsonDeserializationContext;Ljava/lang/Class;)Ljava/lang/Object; +MD: net/minecraft/util/GsonHelper/m_13813_ (Lcom/google/gson/JsonObject;Ljava/lang/String;)Z net/minecraft/util/GsonHelper/isStringValue (Lcom/google/gson/JsonObject;Ljava/lang/String;)Z +MD: net/minecraft/util/GsonHelper/m_13816_ (Lcom/google/gson/JsonObject;Ljava/lang/String;B)B net/minecraft/util/GsonHelper/getAsByte (Lcom/google/gson/JsonObject;Ljava/lang/String;B)B +MD: net/minecraft/util/GsonHelper/m_13820_ (Lcom/google/gson/JsonObject;Ljava/lang/String;F)F net/minecraft/util/GsonHelper/getAsFloat (Lcom/google/gson/JsonObject;Ljava/lang/String;F)F +MD: net/minecraft/util/GsonHelper/m_13824_ (Lcom/google/gson/JsonObject;Ljava/lang/String;I)I net/minecraft/util/GsonHelper/getAsInt (Lcom/google/gson/JsonObject;Ljava/lang/String;I)I +MD: net/minecraft/util/GsonHelper/m_13828_ (Lcom/google/gson/JsonObject;Ljava/lang/String;J)J net/minecraft/util/GsonHelper/getAsLong (Lcom/google/gson/JsonObject;Ljava/lang/String;J)J +MD: net/minecraft/util/GsonHelper/m_13832_ (Lcom/google/gson/JsonObject;Ljava/lang/String;Lcom/google/gson/JsonArray;)Lcom/google/gson/JsonArray; net/minecraft/util/GsonHelper/getAsJsonArray (Lcom/google/gson/JsonObject;Ljava/lang/String;Lcom/google/gson/JsonArray;)Lcom/google/gson/JsonArray; +MD: net/minecraft/util/GsonHelper/m_13836_ (Lcom/google/gson/JsonObject;Ljava/lang/String;Lcom/google/gson/JsonDeserializationContext;Ljava/lang/Class;)Ljava/lang/Object; net/minecraft/util/GsonHelper/getAsObject (Lcom/google/gson/JsonObject;Ljava/lang/String;Lcom/google/gson/JsonDeserializationContext;Ljava/lang/Class;)Ljava/lang/Object; +MD: net/minecraft/util/GsonHelper/m_13841_ (Lcom/google/gson/JsonObject;Ljava/lang/String;Lcom/google/gson/JsonObject;)Lcom/google/gson/JsonObject; net/minecraft/util/GsonHelper/getAsJsonObject (Lcom/google/gson/JsonObject;Ljava/lang/String;Lcom/google/gson/JsonObject;)Lcom/google/gson/JsonObject; +MD: net/minecraft/util/GsonHelper/m_13845_ (Lcom/google/gson/JsonObject;Ljava/lang/String;Ljava/lang/Object;Lcom/google/gson/JsonDeserializationContext;Ljava/lang/Class;)Ljava/lang/Object; net/minecraft/util/GsonHelper/getAsObject (Lcom/google/gson/JsonObject;Ljava/lang/String;Ljava/lang/Object;Lcom/google/gson/JsonDeserializationContext;Ljava/lang/Class;)Ljava/lang/Object; +MD: net/minecraft/util/GsonHelper/m_13851_ (Lcom/google/gson/JsonObject;Ljava/lang/String;Ljava/lang/String;)Ljava/lang/String; net/minecraft/util/GsonHelper/getAsString (Lcom/google/gson/JsonObject;Ljava/lang/String;Ljava/lang/String;)Ljava/lang/String; +MD: net/minecraft/util/GsonHelper/m_13855_ (Lcom/google/gson/JsonObject;Ljava/lang/String;Z)Z net/minecraft/util/GsonHelper/getAsBoolean (Lcom/google/gson/JsonObject;Ljava/lang/String;Z)Z +MD: net/minecraft/util/GsonHelper/m_13859_ (Ljava/io/Reader;)Lcom/google/gson/JsonObject; net/minecraft/util/GsonHelper/parse (Ljava/io/Reader;)Lcom/google/gson/JsonObject; +MD: net/minecraft/util/GsonHelper/m_13861_ (Ljava/io/Reader;Z)Lcom/google/gson/JsonObject; net/minecraft/util/GsonHelper/parse (Ljava/io/Reader;Z)Lcom/google/gson/JsonObject; +MD: net/minecraft/util/GsonHelper/m_13864_ (Ljava/lang/String;)Lcom/google/gson/JsonObject; net/minecraft/util/GsonHelper/parse (Ljava/lang/String;)Lcom/google/gson/JsonObject; +MD: net/minecraft/util/GsonHelper/m_13866_ (Ljava/lang/String;Ljava/lang/String;)Lcom/google/gson/JsonSyntaxException; net/minecraft/util/GsonHelper/lambda$convertToItem$0 (Ljava/lang/String;Ljava/lang/String;)Lcom/google/gson/JsonSyntaxException; +MD: net/minecraft/util/GsonHelper/m_13869_ (Ljava/lang/String;Z)Lcom/google/gson/JsonObject; net/minecraft/util/GsonHelper/parse (Ljava/lang/String;Z)Lcom/google/gson/JsonObject; +MD: net/minecraft/util/GsonHelper/m_13872_ (Lcom/google/gson/JsonElement;)Z net/minecraft/util/GsonHelper/isNumberValue (Lcom/google/gson/JsonElement;)Z +MD: net/minecraft/util/GsonHelper/m_13874_ (Lcom/google/gson/JsonElement;Ljava/lang/String;)Lnet/minecraft/world/item/Item; net/minecraft/util/GsonHelper/convertToItem (Lcom/google/gson/JsonElement;Ljava/lang/String;)Lnet/minecraft/world/item/Item; +MD: net/minecraft/util/GsonHelper/m_13877_ (Lcom/google/gson/JsonElement;Ljava/lang/String;)Z net/minecraft/util/GsonHelper/convertToBoolean (Lcom/google/gson/JsonElement;Ljava/lang/String;)Z +MD: net/minecraft/util/GsonHelper/m_13880_ (Lcom/google/gson/JsonObject;Ljava/lang/String;)Z net/minecraft/util/GsonHelper/isBooleanValue (Lcom/google/gson/JsonObject;Ljava/lang/String;)Z +MD: net/minecraft/util/GsonHelper/m_13883_ (Lcom/google/gson/JsonElement;)Ljava/lang/String; net/minecraft/util/GsonHelper/getType (Lcom/google/gson/JsonElement;)Ljava/lang/String; +MD: net/minecraft/util/GsonHelper/m_13885_ (Lcom/google/gson/JsonObject;Ljava/lang/String;)Z net/minecraft/util/GsonHelper/isArrayNode (Lcom/google/gson/JsonObject;Ljava/lang/String;)Z +MD: net/minecraft/util/GsonHelper/m_13888_ (Lcom/google/gson/JsonElement;Ljava/lang/String;)F net/minecraft/util/GsonHelper/convertToFloat (Lcom/google/gson/JsonElement;Ljava/lang/String;)F +MD: net/minecraft/util/GsonHelper/m_13891_ (Lcom/google/gson/JsonElement;Ljava/lang/String;)J net/minecraft/util/GsonHelper/convertToLong (Lcom/google/gson/JsonElement;Ljava/lang/String;)J +MD: net/minecraft/util/GsonHelper/m_13894_ (Lcom/google/gson/JsonObject;Ljava/lang/String;)Z net/minecraft/util/GsonHelper/isValidPrimitive (Lcom/google/gson/JsonObject;Ljava/lang/String;)Z +MD: net/minecraft/util/GsonHelper/m_13897_ (Lcom/google/gson/JsonElement;Ljava/lang/String;)I net/minecraft/util/GsonHelper/convertToInt (Lcom/google/gson/JsonElement;Ljava/lang/String;)I +MD: net/minecraft/util/GsonHelper/m_13900_ (Lcom/google/gson/JsonObject;Ljava/lang/String;)Z net/minecraft/util/GsonHelper/isValidNode (Lcom/google/gson/JsonObject;Ljava/lang/String;)Z +MD: net/minecraft/util/GsonHelper/m_13903_ (Lcom/google/gson/JsonElement;Ljava/lang/String;)B net/minecraft/util/GsonHelper/convertToByte (Lcom/google/gson/JsonElement;Ljava/lang/String;)B +MD: net/minecraft/util/GsonHelper/m_13906_ (Lcom/google/gson/JsonObject;Ljava/lang/String;)Ljava/lang/String; net/minecraft/util/GsonHelper/getAsString (Lcom/google/gson/JsonObject;Ljava/lang/String;)Ljava/lang/String; +MD: net/minecraft/util/GsonHelper/m_13909_ (Lcom/google/gson/JsonObject;Ljava/lang/String;)Lnet/minecraft/world/item/Item; net/minecraft/util/GsonHelper/getAsItem (Lcom/google/gson/JsonObject;Ljava/lang/String;)Lnet/minecraft/world/item/Item; +MD: net/minecraft/util/GsonHelper/m_13912_ (Lcom/google/gson/JsonObject;Ljava/lang/String;)Z net/minecraft/util/GsonHelper/getAsBoolean (Lcom/google/gson/JsonObject;Ljava/lang/String;)Z +MD: net/minecraft/util/GsonHelper/m_13915_ (Lcom/google/gson/JsonObject;Ljava/lang/String;)F net/minecraft/util/GsonHelper/getAsFloat (Lcom/google/gson/JsonObject;Ljava/lang/String;)F +MD: net/minecraft/util/GsonHelper/m_13918_ (Lcom/google/gson/JsonElement;Ljava/lang/String;)Lcom/google/gson/JsonObject; net/minecraft/util/GsonHelper/convertToJsonObject (Lcom/google/gson/JsonElement;Ljava/lang/String;)Lcom/google/gson/JsonObject; +MD: net/minecraft/util/GsonHelper/m_13921_ (Lcom/google/gson/JsonObject;Ljava/lang/String;)J net/minecraft/util/GsonHelper/getAsLong (Lcom/google/gson/JsonObject;Ljava/lang/String;)J +MD: net/minecraft/util/GsonHelper/m_13924_ (Lcom/google/gson/JsonElement;Ljava/lang/String;)Lcom/google/gson/JsonArray; net/minecraft/util/GsonHelper/convertToJsonArray (Lcom/google/gson/JsonElement;Ljava/lang/String;)Lcom/google/gson/JsonArray; +MD: net/minecraft/util/GsonHelper/m_13927_ (Lcom/google/gson/JsonObject;Ljava/lang/String;)I net/minecraft/util/GsonHelper/getAsInt (Lcom/google/gson/JsonObject;Ljava/lang/String;)I +MD: net/minecraft/util/GsonHelper/m_13930_ (Lcom/google/gson/JsonObject;Ljava/lang/String;)Lcom/google/gson/JsonObject; net/minecraft/util/GsonHelper/getAsJsonObject (Lcom/google/gson/JsonObject;Ljava/lang/String;)Lcom/google/gson/JsonObject; +MD: net/minecraft/util/GsonHelper/m_13933_ (Lcom/google/gson/JsonObject;Ljava/lang/String;)Lcom/google/gson/JsonArray; net/minecraft/util/GsonHelper/getAsJsonArray (Lcom/google/gson/JsonObject;Ljava/lang/String;)Lcom/google/gson/JsonArray; +MD: net/minecraft/util/GsonHelper/m_144738_ (Lcom/google/gson/JsonObject;Ljava/lang/String;C)C net/minecraft/util/GsonHelper/getAsCharacter (Lcom/google/gson/JsonObject;Ljava/lang/String;C)C +MD: net/minecraft/util/GsonHelper/m_144742_ (Lcom/google/gson/JsonObject;Ljava/lang/String;D)D net/minecraft/util/GsonHelper/getAsDouble (Lcom/google/gson/JsonObject;Ljava/lang/String;D)D +MD: net/minecraft/util/GsonHelper/m_144746_ (Lcom/google/gson/JsonObject;Ljava/lang/String;Lnet/minecraft/world/item/Item;)Lnet/minecraft/world/item/Item; net/minecraft/util/GsonHelper/getAsItem (Lcom/google/gson/JsonObject;Ljava/lang/String;Lnet/minecraft/world/item/Item;)Lnet/minecraft/world/item/Item; +MD: net/minecraft/util/GsonHelper/m_144750_ (Lcom/google/gson/JsonObject;Ljava/lang/String;Ljava/math/BigDecimal;)Ljava/math/BigDecimal; net/minecraft/util/GsonHelper/getAsBigDecimal (Lcom/google/gson/JsonObject;Ljava/lang/String;Ljava/math/BigDecimal;)Ljava/math/BigDecimal; +MD: net/minecraft/util/GsonHelper/m_144754_ (Lcom/google/gson/JsonObject;Ljava/lang/String;Ljava/math/BigInteger;)Ljava/math/BigInteger; net/minecraft/util/GsonHelper/getAsBigInteger (Lcom/google/gson/JsonObject;Ljava/lang/String;Ljava/math/BigInteger;)Ljava/math/BigInteger; +MD: net/minecraft/util/GsonHelper/m_144758_ (Lcom/google/gson/JsonObject;Ljava/lang/String;S)S net/minecraft/util/GsonHelper/getAsShort (Lcom/google/gson/JsonObject;Ljava/lang/String;S)S +MD: net/minecraft/util/GsonHelper/m_144762_ (Lcom/google/gson/JsonObject;Ljava/lang/String;)Z net/minecraft/util/GsonHelper/isNumberValue (Lcom/google/gson/JsonObject;Ljava/lang/String;)Z +MD: net/minecraft/util/GsonHelper/m_144765_ (Ljava/io/Reader;)Lcom/google/gson/JsonArray; net/minecraft/util/GsonHelper/parseArray (Ljava/io/Reader;)Lcom/google/gson/JsonArray; +MD: net/minecraft/util/GsonHelper/m_144767_ (Lcom/google/gson/JsonElement;)Z net/minecraft/util/GsonHelper/isBooleanValue (Lcom/google/gson/JsonElement;)Z +MD: net/minecraft/util/GsonHelper/m_144769_ (Lcom/google/gson/JsonElement;Ljava/lang/String;)D net/minecraft/util/GsonHelper/convertToDouble (Lcom/google/gson/JsonElement;Ljava/lang/String;)D +MD: net/minecraft/util/GsonHelper/m_144772_ (Lcom/google/gson/JsonObject;Ljava/lang/String;)Z net/minecraft/util/GsonHelper/isObjectNode (Lcom/google/gson/JsonObject;Ljava/lang/String;)Z +MD: net/minecraft/util/GsonHelper/m_144775_ (Lcom/google/gson/JsonElement;Ljava/lang/String;)C net/minecraft/util/GsonHelper/convertToCharacter (Lcom/google/gson/JsonElement;Ljava/lang/String;)C +MD: net/minecraft/util/GsonHelper/m_144778_ (Lcom/google/gson/JsonElement;Ljava/lang/String;)Ljava/math/BigDecimal; net/minecraft/util/GsonHelper/convertToBigDecimal (Lcom/google/gson/JsonElement;Ljava/lang/String;)Ljava/math/BigDecimal; +MD: net/minecraft/util/GsonHelper/m_144781_ (Lcom/google/gson/JsonElement;Ljava/lang/String;)Ljava/math/BigInteger; net/minecraft/util/GsonHelper/convertToBigInteger (Lcom/google/gson/JsonElement;Ljava/lang/String;)Ljava/math/BigInteger; +MD: net/minecraft/util/GsonHelper/m_144784_ (Lcom/google/gson/JsonObject;Ljava/lang/String;)D net/minecraft/util/GsonHelper/getAsDouble (Lcom/google/gson/JsonObject;Ljava/lang/String;)D +MD: net/minecraft/util/GsonHelper/m_144787_ (Lcom/google/gson/JsonElement;Ljava/lang/String;)S net/minecraft/util/GsonHelper/convertToShort (Lcom/google/gson/JsonElement;Ljava/lang/String;)S +MD: net/minecraft/util/GsonHelper/m_144790_ (Lcom/google/gson/JsonObject;Ljava/lang/String;)B net/minecraft/util/GsonHelper/getAsByte (Lcom/google/gson/JsonObject;Ljava/lang/String;)B +MD: net/minecraft/util/GsonHelper/m_144793_ (Lcom/google/gson/JsonObject;Ljava/lang/String;)C net/minecraft/util/GsonHelper/getAsCharacter (Lcom/google/gson/JsonObject;Ljava/lang/String;)C +MD: net/minecraft/util/GsonHelper/m_144796_ (Lcom/google/gson/JsonObject;Ljava/lang/String;)Ljava/math/BigDecimal; net/minecraft/util/GsonHelper/getAsBigDecimal (Lcom/google/gson/JsonObject;Ljava/lang/String;)Ljava/math/BigDecimal; +MD: net/minecraft/util/GsonHelper/m_144799_ (Lcom/google/gson/JsonObject;Ljava/lang/String;)Ljava/math/BigInteger; net/minecraft/util/GsonHelper/getAsBigInteger (Lcom/google/gson/JsonObject;Ljava/lang/String;)Ljava/math/BigInteger; +MD: net/minecraft/util/GsonHelper/m_144802_ (Lcom/google/gson/JsonObject;Ljava/lang/String;)S net/minecraft/util/GsonHelper/getAsShort (Lcom/google/gson/JsonObject;Ljava/lang/String;)S +MD: net/minecraft/util/GsonHelper/m_216207_ (Lcom/google/gson/stream/JsonWriter;Lcom/google/gson/JsonElement;Ljava/util/Comparator;)V net/minecraft/util/GsonHelper/writeValue (Lcom/google/gson/stream/JsonWriter;Lcom/google/gson/JsonElement;Ljava/util/Comparator;)V +MD: net/minecraft/util/GsonHelper/m_216211_ (Ljava/util/Collection;Ljava/util/Comparator;)Ljava/util/Collection; net/minecraft/util/GsonHelper/sortByKeyIfNeeded (Ljava/util/Collection;Ljava/util/Comparator;)Ljava/util/Collection; +MD: net/minecraft/util/GsonHelper/m_216214_ (Ljava/lang/String;)Lcom/google/gson/JsonArray; net/minecraft/util/GsonHelper/parseArray (Ljava/lang/String;)Lcom/google/gson/JsonArray; +MD: net/minecraft/util/GsonHelper/m_216216_ (Lcom/google/gson/JsonElement;)Ljava/lang/String; net/minecraft/util/GsonHelper/toStableString (Lcom/google/gson/JsonElement;)Ljava/lang/String; +MD: net/minecraft/util/GsonHelper/m_263457_ (Lcom/google/gson/Gson;Ljava/io/Reader;Lcom/google/gson/reflect/TypeToken;Z)Ljava/lang/Object; net/minecraft/util/GsonHelper/fromJson (Lcom/google/gson/Gson;Ljava/io/Reader;Lcom/google/gson/reflect/TypeToken;Z)Ljava/lang/Object; +MD: net/minecraft/util/GsonHelper/m_263467_ (Lcom/google/gson/Gson;Ljava/lang/String;Ljava/lang/Class;Z)Ljava/lang/Object; net/minecraft/util/GsonHelper/fromJson (Lcom/google/gson/Gson;Ljava/lang/String;Ljava/lang/Class;Z)Ljava/lang/Object; +MD: net/minecraft/util/GsonHelper/m_263475_ (Lcom/google/gson/Gson;Ljava/io/Reader;Ljava/lang/Class;Z)Ljava/lang/Object; net/minecraft/util/GsonHelper/fromJson (Lcom/google/gson/Gson;Ljava/io/Reader;Ljava/lang/Class;Z)Ljava/lang/Object; +MD: net/minecraft/util/GsonHelper/m_289747_ (Lcom/google/gson/JsonObject;Ljava/lang/String;)Lcom/google/gson/JsonElement; net/minecraft/util/GsonHelper/getNonNull (Lcom/google/gson/JsonObject;Ljava/lang/String;)Lcom/google/gson/JsonElement; +MD: net/minecraft/util/HttpUtil/ ()V net/minecraft/util/HttpUtil/ ()V +MD: net/minecraft/util/HttpUtil/ ()V net/minecraft/util/HttpUtil/ ()V +MD: net/minecraft/util/HttpUtil/m_13939_ ()I net/minecraft/util/HttpUtil/getAvailablePort ()I +MD: net/minecraft/util/HttpUtil/m_216218_ (Lnet/minecraft/util/ProgressListener;Ljava/net/URL;Ljava/net/Proxy;Ljava/util/Map;Ljava/io/File;I)Ljava/lang/Object; net/minecraft/util/HttpUtil/lambda$downloadTo$0 (Lnet/minecraft/util/ProgressListener;Ljava/net/URL;Ljava/net/Proxy;Ljava/util/Map;Ljava/io/File;I)Ljava/lang/Object; +MD: net/minecraft/util/HttpUtil/m_216225_ (Ljava/io/File;Ljava/net/URL;Ljava/util/Map;ILnet/minecraft/util/ProgressListener;Ljava/net/Proxy;)Ljava/util/concurrent/CompletableFuture; net/minecraft/util/HttpUtil/downloadTo (Ljava/io/File;Ljava/net/URL;Ljava/util/Map;ILnet/minecraft/util/ProgressListener;Ljava/net/Proxy;)Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/util/HttpUtil/m_257796_ (I)Z net/minecraft/util/HttpUtil/isPortAvailable (I)Z +MD: net/minecraft/util/InclusiveRange/ ()V net/minecraft/util/InclusiveRange/ ()V +MD: net/minecraft/util/InclusiveRange/ (Ljava/lang/Comparable;Ljava/lang/Comparable;)V net/minecraft/util/InclusiveRange/ (Ljava/lang/Comparable;Ljava/lang/Comparable;)V +MD: net/minecraft/util/InclusiveRange/equals (Ljava/lang/Object;)Z net/minecraft/util/InclusiveRange/equals (Ljava/lang/Object;)Z +MD: net/minecraft/util/InclusiveRange/f_184563_ ()Ljava/lang/Comparable; net/minecraft/util/InclusiveRange/minInclusive ()Ljava/lang/Comparable; +MD: net/minecraft/util/InclusiveRange/f_184564_ ()Ljava/lang/Comparable; net/minecraft/util/InclusiveRange/maxInclusive ()Ljava/lang/Comparable; +MD: net/minecraft/util/InclusiveRange/hashCode ()I net/minecraft/util/InclusiveRange/hashCode ()I +MD: net/minecraft/util/InclusiveRange/m_184570_ (Lnet/minecraft/util/InclusiveRange;)Z net/minecraft/util/InclusiveRange/contains (Lnet/minecraft/util/InclusiveRange;)Z +MD: net/minecraft/util/InclusiveRange/m_184572_ (Lcom/mojang/serialization/Codec;)Lcom/mojang/serialization/Codec; net/minecraft/util/InclusiveRange/codec (Lcom/mojang/serialization/Codec;)Lcom/mojang/serialization/Codec; +MD: net/minecraft/util/InclusiveRange/m_184574_ (Lcom/mojang/serialization/Codec;Ljava/lang/Comparable;Ljava/lang/Comparable;)Lcom/mojang/serialization/Codec; net/minecraft/util/InclusiveRange/codec (Lcom/mojang/serialization/Codec;Ljava/lang/Comparable;Ljava/lang/Comparable;)Lcom/mojang/serialization/Codec; +MD: net/minecraft/util/InclusiveRange/m_184578_ (Ljava/lang/Comparable;)Z net/minecraft/util/InclusiveRange/isValueInRange (Ljava/lang/Comparable;)Z +MD: net/minecraft/util/InclusiveRange/m_184580_ (Ljava/lang/Comparable;Ljava/lang/Comparable;)Lcom/mojang/serialization/DataResult; net/minecraft/util/InclusiveRange/create (Ljava/lang/Comparable;Ljava/lang/Comparable;)Lcom/mojang/serialization/DataResult; +MD: net/minecraft/util/InclusiveRange/m_274148_ (Ljava/lang/Comparable;Ljava/lang/Comparable;Lnet/minecraft/util/InclusiveRange;)Lcom/mojang/serialization/DataResult; net/minecraft/util/InclusiveRange/lambda$codec$2 (Ljava/lang/Comparable;Ljava/lang/Comparable;Lnet/minecraft/util/InclusiveRange;)Lcom/mojang/serialization/DataResult; +MD: net/minecraft/util/InclusiveRange/m_274149_ (Ljava/lang/Comparable;Lnet/minecraft/util/InclusiveRange;)Ljava/lang/String; net/minecraft/util/InclusiveRange/lambda$codec$1 (Ljava/lang/Comparable;Lnet/minecraft/util/InclusiveRange;)Ljava/lang/String; +MD: net/minecraft/util/InclusiveRange/m_274150_ ()Ljava/lang/String; net/minecraft/util/InclusiveRange/lambda$create$3 ()Ljava/lang/String; +MD: net/minecraft/util/InclusiveRange/m_274151_ (Ljava/lang/Comparable;Lnet/minecraft/util/InclusiveRange;)Ljava/lang/String; net/minecraft/util/InclusiveRange/lambda$codec$0 (Ljava/lang/Comparable;Lnet/minecraft/util/InclusiveRange;)Ljava/lang/String; +MD: net/minecraft/util/InclusiveRange/toString ()Ljava/lang/String; net/minecraft/util/InclusiveRange/toString ()Ljava/lang/String; +MD: net/minecraft/util/KeyDispatchDataCodec/ (Lcom/mojang/serialization/Codec;)V net/minecraft/util/KeyDispatchDataCodec/ (Lcom/mojang/serialization/Codec;)V +MD: net/minecraft/util/KeyDispatchDataCodec/equals (Ljava/lang/Object;)Z net/minecraft/util/KeyDispatchDataCodec/equals (Ljava/lang/Object;)Z +MD: net/minecraft/util/KeyDispatchDataCodec/f_216232_ ()Lcom/mojang/serialization/Codec; net/minecraft/util/KeyDispatchDataCodec/codec ()Lcom/mojang/serialization/Codec; +MD: net/minecraft/util/KeyDispatchDataCodec/hashCode ()I net/minecraft/util/KeyDispatchDataCodec/hashCode ()I +MD: net/minecraft/util/KeyDispatchDataCodec/m_216236_ (Lcom/mojang/serialization/Codec;)Lnet/minecraft/util/KeyDispatchDataCodec; net/minecraft/util/KeyDispatchDataCodec/of (Lcom/mojang/serialization/Codec;)Lnet/minecraft/util/KeyDispatchDataCodec; +MD: net/minecraft/util/KeyDispatchDataCodec/m_216238_ (Lcom/mojang/serialization/MapCodec;)Lnet/minecraft/util/KeyDispatchDataCodec; net/minecraft/util/KeyDispatchDataCodec/of (Lcom/mojang/serialization/MapCodec;)Lnet/minecraft/util/KeyDispatchDataCodec; +MD: net/minecraft/util/KeyDispatchDataCodec/toString ()Ljava/lang/String; net/minecraft/util/KeyDispatchDataCodec/toString ()Ljava/lang/String; +MD: net/minecraft/util/LazyLoadedValue/ (Ljava/util/function/Supplier;)V net/minecraft/util/LazyLoadedValue/ (Ljava/util/function/Supplier;)V +MD: net/minecraft/util/LazyLoadedValue/m_13971_ ()Ljava/lang/Object; net/minecraft/util/LazyLoadedValue/get ()Ljava/lang/Object; +MD: net/minecraft/util/LinearCongruentialGenerator/ ()V net/minecraft/util/LinearCongruentialGenerator/ ()V +MD: net/minecraft/util/LinearCongruentialGenerator/m_13972_ (JJ)J net/minecraft/util/LinearCongruentialGenerator/next (JJ)J +MD: net/minecraft/util/LowerCaseEnumTypeAdapterFactory/ ()V net/minecraft/util/LowerCaseEnumTypeAdapterFactory/ ()V +MD: net/minecraft/util/LowerCaseEnumTypeAdapterFactory/create (Lcom/google/gson/Gson;Lcom/google/gson/reflect/TypeToken;)Lcom/google/gson/TypeAdapter; net/minecraft/util/LowerCaseEnumTypeAdapterFactory/create (Lcom/google/gson/Gson;Lcom/google/gson/reflect/TypeToken;)Lcom/google/gson/TypeAdapter; +MD: net/minecraft/util/LowerCaseEnumTypeAdapterFactory/m_13979_ (Ljava/lang/Object;)Ljava/lang/String; net/minecraft/util/LowerCaseEnumTypeAdapterFactory/toLowercase (Ljava/lang/Object;)Ljava/lang/String; +MD: net/minecraft/util/LowerCaseEnumTypeAdapterFactory$1/ (Lnet/minecraft/util/LowerCaseEnumTypeAdapterFactory;Ljava/util/Map;)V net/minecraft/util/LowerCaseEnumTypeAdapterFactory$1/ (Lnet/minecraft/util/LowerCaseEnumTypeAdapterFactory;Ljava/util/Map;)V +MD: net/minecraft/util/LowerCaseEnumTypeAdapterFactory$1/read (Lcom/google/gson/stream/JsonReader;)Ljava/lang/Object; net/minecraft/util/LowerCaseEnumTypeAdapterFactory$1/read (Lcom/google/gson/stream/JsonReader;)Ljava/lang/Object; +MD: net/minecraft/util/LowerCaseEnumTypeAdapterFactory$1/write (Lcom/google/gson/stream/JsonWriter;Ljava/lang/Object;)V net/minecraft/util/LowerCaseEnumTypeAdapterFactory$1/write (Lcom/google/gson/stream/JsonWriter;Ljava/lang/Object;)V +MD: net/minecraft/util/MemoryReserve/ ()V net/minecraft/util/MemoryReserve/ ()V +MD: net/minecraft/util/MemoryReserve/ ()V net/minecraft/util/MemoryReserve/ ()V +MD: net/minecraft/util/MemoryReserve/m_182327_ ()V net/minecraft/util/MemoryReserve/allocate ()V +MD: net/minecraft/util/MemoryReserve/m_182328_ ()V net/minecraft/util/MemoryReserve/release ()V +MD: net/minecraft/util/ModCheck/ (Lnet/minecraft/util/ModCheck$Confidence;Ljava/lang/String;)V net/minecraft/util/ModCheck/ (Lnet/minecraft/util/ModCheck$Confidence;Ljava/lang/String;)V +MD: net/minecraft/util/ModCheck/equals (Ljava/lang/Object;)Z net/minecraft/util/ModCheck/equals (Ljava/lang/Object;)Z +MD: net/minecraft/util/ModCheck/f_184592_ ()Lnet/minecraft/util/ModCheck$Confidence; net/minecraft/util/ModCheck/confidence ()Lnet/minecraft/util/ModCheck$Confidence; +MD: net/minecraft/util/ModCheck/f_184593_ ()Ljava/lang/String; net/minecraft/util/ModCheck/description ()Ljava/lang/String; +MD: net/minecraft/util/ModCheck/hashCode ()I net/minecraft/util/ModCheck/hashCode ()I +MD: net/minecraft/util/ModCheck/m_184597_ ()Z net/minecraft/util/ModCheck/shouldReportAsModified ()Z +MD: net/minecraft/util/ModCheck/m_184598_ (Lnet/minecraft/util/ModCheck;)Lnet/minecraft/util/ModCheck; net/minecraft/util/ModCheck/merge (Lnet/minecraft/util/ModCheck;)Lnet/minecraft/util/ModCheck; +MD: net/minecraft/util/ModCheck/m_184600_ (Ljava/lang/String;Ljava/util/function/Supplier;Ljava/lang/String;Ljava/lang/Class;)Lnet/minecraft/util/ModCheck; net/minecraft/util/ModCheck/identify (Ljava/lang/String;Ljava/util/function/Supplier;Ljava/lang/String;Ljava/lang/Class;)Lnet/minecraft/util/ModCheck; +MD: net/minecraft/util/ModCheck/m_184605_ ()Ljava/lang/String; net/minecraft/util/ModCheck/fullDescription ()Ljava/lang/String; +MD: net/minecraft/util/ModCheck/toString ()Ljava/lang/String; net/minecraft/util/ModCheck/toString ()Ljava/lang/String; +MD: net/minecraft/util/ModCheck$Confidence/ ()V net/minecraft/util/ModCheck$Confidence/ ()V +MD: net/minecraft/util/ModCheck$Confidence/ (Ljava/lang/String;ILjava/lang/String;Z)V net/minecraft/util/ModCheck$Confidence/ (Ljava/lang/String;ILjava/lang/String;Z)V +MD: net/minecraft/util/ModCheck$Confidence/m_184624_ ()[Lnet/minecraft/util/ModCheck$Confidence; net/minecraft/util/ModCheck$Confidence/$values ()[Lnet/minecraft/util/ModCheck$Confidence; +MD: net/minecraft/util/ModCheck$Confidence/valueOf (Ljava/lang/String;)Lnet/minecraft/util/ModCheck$Confidence; net/minecraft/util/ModCheck$Confidence/valueOf (Ljava/lang/String;)Lnet/minecraft/util/ModCheck$Confidence; +MD: net/minecraft/util/ModCheck$Confidence/values ()[Lnet/minecraft/util/ModCheck$Confidence; net/minecraft/util/ModCheck$Confidence/values ()[Lnet/minecraft/util/ModCheck$Confidence; +MD: net/minecraft/util/Mth/ ()V net/minecraft/util/Mth/ ()V +MD: net/minecraft/util/Mth/ ()V net/minecraft/util/Mth/ ()V +MD: net/minecraft/util/Mth/m_14002_ ()Ljava/util/UUID; net/minecraft/util/Mth/createInsecureUUID ()Ljava/util/UUID; +MD: net/minecraft/util/Mth/m_14005_ (DD)D net/minecraft/util/Mth/absMax (DD)D +MD: net/minecraft/util/Mth/m_14008_ (DDD)D net/minecraft/util/Mth/clamp (DDD)D +MD: net/minecraft/util/Mth/m_14012_ (DDDDDD)D net/minecraft/util/Mth/lerp2 (DDDDDD)D +MD: net/minecraft/util/Mth/m_14019_ (DDDDDDDDDDD)D net/minecraft/util/Mth/lerp3 (DDDDDDDDDDD)D +MD: net/minecraft/util/Mth/m_14031_ (F)F net/minecraft/util/Mth/sin (F)F +MD: net/minecraft/util/Mth/m_14033_ (FF)Z net/minecraft/util/Mth/equal (FF)Z +MD: net/minecraft/util/Mth/m_14036_ (FFF)F net/minecraft/util/Mth/clamp (FFF)F +MD: net/minecraft/util/Mth/m_14040_ (I)I net/minecraft/util/Mth/abs (I)I +MD: net/minecraft/util/Mth/m_14042_ (II)I net/minecraft/util/Mth/floorDiv (II)I +MD: net/minecraft/util/Mth/m_14045_ (III)I net/minecraft/util/Mth/clamp (III)I +MD: net/minecraft/util/Mth/m_14049_ (IILjava/util/function/IntPredicate;)I net/minecraft/util/Mth/binarySearch (IILjava/util/function/IntPredicate;)I +MD: net/minecraft/util/Mth/m_14057_ (Lnet/minecraft/core/Vec3i;)J net/minecraft/util/Mth/getSeed (Lnet/minecraft/core/Vec3i;)J +MD: net/minecraft/util/Mth/m_14059_ (Ljava/lang/String;I)I net/minecraft/util/Mth/getInt (Ljava/lang/String;I)I +MD: net/minecraft/util/Mth/m_14076_ ([F)V net/minecraft/util/Mth/lambda$static$0 ([F)V +MD: net/minecraft/util/Mth/m_14082_ (DD)Z net/minecraft/util/Mth/equal (DD)Z +MD: net/minecraft/util/Mth/m_14085_ (DDD)D net/minecraft/util/Mth/clampedLerp (DDD)D +MD: net/minecraft/util/Mth/m_14089_ (F)F net/minecraft/util/Mth/cos (F)F +MD: net/minecraft/util/Mth/m_14091_ (FF)F net/minecraft/util/Mth/positiveModulo (FF)F +MD: net/minecraft/util/Mth/m_14094_ (FFF)F net/minecraft/util/Mth/rotateIfNecessary (FFF)F +MD: net/minecraft/util/Mth/m_14098_ (I)I net/minecraft/util/Mth/wrapDegrees (I)I +MD: net/minecraft/util/Mth/m_14100_ (II)I net/minecraft/util/Mth/positiveModulo (II)I +MD: net/minecraft/util/Mth/m_14107_ (D)I net/minecraft/util/Mth/floor (D)I +MD: net/minecraft/util/Mth/m_14109_ (DD)D net/minecraft/util/Mth/positiveModulo (DD)D +MD: net/minecraft/util/Mth/m_14112_ (DDD)D net/minecraft/util/Mth/inverseLerp (DDD)D +MD: net/minecraft/util/Mth/m_14116_ (F)F net/minecraft/util/Mth/sqrt (F)F +MD: net/minecraft/util/Mth/m_14118_ (FF)F net/minecraft/util/Mth/degreesDifference (FF)F +MD: net/minecraft/util/Mth/m_14121_ (FFF)F net/minecraft/util/Mth/approach (FFF)F +MD: net/minecraft/util/Mth/m_14125_ (I)I net/minecraft/util/Mth/smallestEncompassingPowerOfTwo (I)I +MD: net/minecraft/util/Mth/m_14130_ (III)J net/minecraft/util/Mth/getSeed (III)J +MD: net/minecraft/util/Mth/m_14134_ (D)J net/minecraft/util/Mth/lfloor (D)J +MD: net/minecraft/util/Mth/m_14136_ (DD)D net/minecraft/util/Mth/atan2 (DD)D +MD: net/minecraft/util/Mth/m_14139_ (DDD)D net/minecraft/util/Mth/lerp (DDD)D +MD: net/minecraft/util/Mth/m_14143_ (F)I net/minecraft/util/Mth/floor (F)I +MD: net/minecraft/util/Mth/m_14145_ (FF)F net/minecraft/util/Mth/degreesDifferenceAbs (FF)F +MD: net/minecraft/util/Mth/m_14148_ (FFF)F net/minecraft/util/Mth/approachDegrees (FFF)F +MD: net/minecraft/util/Mth/m_14152_ (I)Z net/minecraft/util/Mth/isPowerOfTwo (I)Z +MD: net/minecraft/util/Mth/m_14154_ (F)F net/minecraft/util/Mth/abs (F)F +MD: net/minecraft/util/Mth/m_14156_ (FF)F net/minecraft/util/Mth/triangleWave (FF)F +MD: net/minecraft/util/Mth/m_14159_ (FFF)I net/minecraft/util/Mth/color (FFF)I +MD: net/minecraft/util/Mth/m_14163_ (I)I net/minecraft/util/Mth/ceillog2 (I)I +MD: net/minecraft/util/Mth/m_14165_ (D)I net/minecraft/util/Mth/ceil (D)I +MD: net/minecraft/util/Mth/m_14167_ (F)I net/minecraft/util/Mth/ceil (F)I +MD: net/minecraft/util/Mth/m_14169_ (FFF)I net/minecraft/util/Mth/hsvToRgb (FFF)I +MD: net/minecraft/util/Mth/m_14173_ (I)I net/minecraft/util/Mth/log2 (I)I +MD: net/minecraft/util/Mth/m_14175_ (D)D net/minecraft/util/Mth/wrapDegrees (D)D +MD: net/minecraft/util/Mth/m_14177_ (F)F net/minecraft/util/Mth/wrapDegrees (F)F +MD: net/minecraft/util/Mth/m_14179_ (FFF)F net/minecraft/util/Mth/lerp (FFF)F +MD: net/minecraft/util/Mth/m_14183_ (I)I net/minecraft/util/Mth/murmurHash3Mixer (I)I +MD: net/minecraft/util/Mth/m_14185_ (D)D net/minecraft/util/Mth/frac (D)D +MD: net/minecraft/util/Mth/m_14187_ (F)F net/minecraft/util/Mth/frac (F)F +MD: net/minecraft/util/Mth/m_14189_ (FFF)F net/minecraft/util/Mth/rotLerp (FFF)F +MD: net/minecraft/util/Mth/m_14193_ (D)D net/minecraft/util/Mth/fastInvSqrt (D)D +MD: net/minecraft/util/Mth/m_14197_ (D)D net/minecraft/util/Mth/smoothstep (D)D +MD: net/minecraft/util/Mth/m_14199_ (F)F net/minecraft/util/Mth/fastInvCubeRoot (F)F +MD: net/minecraft/util/Mth/m_14205_ (D)I net/minecraft/util/Mth/sign (D)I +MD: net/minecraft/util/Mth/m_14207_ (F)F net/minecraft/util/Mth/square (F)F +MD: net/minecraft/util/Mth/m_144851_ (DDDDD)D net/minecraft/util/Mth/clampedMap (DDDDD)D +MD: net/minecraft/util/Mth/m_144888_ (Lnet/minecraft/world/phys/Vec3;Lnet/minecraft/world/phys/Vec3;Lnet/minecraft/world/phys/AABB;)Z net/minecraft/util/Mth/rayIntersectsAABB (Lnet/minecraft/world/phys/Vec3;Lnet/minecraft/world/phys/Vec3;Lnet/minecraft/world/phys/AABB;)Z +MD: net/minecraft/util/Mth/m_144914_ (DDDDD)D net/minecraft/util/Mth/map (DDDDD)D +MD: net/minecraft/util/Mth/m_144920_ (FFF)F net/minecraft/util/Mth/clampedLerp (FFF)F +MD: net/minecraft/util/Mth/m_144941_ (II)I net/minecraft/util/Mth/roundToward (II)I +MD: net/minecraft/util/Mth/m_144944_ (I)I net/minecraft/util/Mth/square (I)I +MD: net/minecraft/util/Mth/m_144946_ (D)D net/minecraft/util/Mth/smoothstepDerivative (D)D +MD: net/minecraft/util/Mth/m_144952_ (D)D net/minecraft/util/Mth/square (D)D +MD: net/minecraft/util/Mth/m_144954_ (D)D net/minecraft/util/Mth/wobble (D)D +MD: net/minecraft/util/Mth/m_184628_ (DI)I net/minecraft/util/Mth/quantize (DI)I +MD: net/minecraft/util/Mth/m_184631_ (FFFFF)F net/minecraft/util/Mth/clampedMap (FFFFF)F +MD: net/minecraft/util/Mth/m_184637_ (FFFFF)F net/minecraft/util/Mth/map (FFFFF)F +MD: net/minecraft/util/Mth/m_184643_ (J)J net/minecraft/util/Mth/square (J)J +MD: net/minecraft/util/Mth/m_184645_ (DD)D net/minecraft/util/Mth/length (DD)D +MD: net/minecraft/util/Mth/m_184648_ (DDD)D net/minecraft/util/Mth/length (DDD)D +MD: net/minecraft/util/Mth/m_184652_ (II)I net/minecraft/util/Mth/positiveCeilDiv (II)I +MD: net/minecraft/util/Mth/m_184655_ (FFF)F net/minecraft/util/Mth/inverseLerp (FFF)F +MD: net/minecraft/util/Mth/m_211589_ (DD)D net/minecraft/util/Mth/lengthSquared (DD)D +MD: net/minecraft/util/Mth/m_211592_ (DDD)D net/minecraft/util/Mth/lengthSquared (DDD)D +MD: net/minecraft/util/Mth/m_216244_ (FFFFF)F net/minecraft/util/Mth/catmullrom (FFFFF)F +MD: net/minecraft/util/Mth/m_216250_ (IIII)Ljava/util/stream/IntStream; net/minecraft/util/Mth/outFromOrigin (IIII)Ljava/util/stream/IntStream; +MD: net/minecraft/util/Mth/m_216255_ (IIIII)I net/minecraft/util/Mth/lambda$outFromOrigin$2 (IIIII)I +MD: net/minecraft/util/Mth/m_216261_ (Lnet/minecraft/util/RandomSource;)Ljava/util/UUID; net/minecraft/util/Mth/createInsecureUUID (Lnet/minecraft/util/RandomSource;)Ljava/util/UUID; +MD: net/minecraft/util/Mth/m_216263_ (Lnet/minecraft/util/RandomSource;DD)D net/minecraft/util/Mth/nextDouble (Lnet/minecraft/util/RandomSource;DD)D +MD: net/minecraft/util/Mth/m_216267_ (Lnet/minecraft/util/RandomSource;FF)F net/minecraft/util/Mth/nextFloat (Lnet/minecraft/util/RandomSource;FF)F +MD: net/minecraft/util/Mth/m_216271_ (Lnet/minecraft/util/RandomSource;II)I net/minecraft/util/Mth/nextInt (Lnet/minecraft/util/RandomSource;II)I +MD: net/minecraft/util/Mth/m_216278_ (IIII)Z net/minecraft/util/Mth/lambda$outFromOrigin$1 (IIII)Z +MD: net/minecraft/util/Mth/m_216283_ (Lnet/minecraft/util/RandomSource;FF)F net/minecraft/util/Mth/randomBetween (Lnet/minecraft/util/RandomSource;FF)F +MD: net/minecraft/util/Mth/m_216287_ (Lnet/minecraft/util/RandomSource;II)I net/minecraft/util/Mth/randomBetweenInclusive (Lnet/minecraft/util/RandomSource;II)I +MD: net/minecraft/util/Mth/m_216291_ (Lnet/minecraft/util/RandomSource;FF)F net/minecraft/util/Mth/normal (Lnet/minecraft/util/RandomSource;FF)F +MD: net/minecraft/util/Mth/m_216295_ (III)Ljava/util/stream/IntStream; net/minecraft/util/Mth/outFromOrigin (III)Ljava/util/stream/IntStream; +MD: net/minecraft/util/Mth/m_264536_ (F)F net/minecraft/util/Mth/invSqrt (F)F +MD: net/minecraft/util/Mth/m_264555_ (D)D net/minecraft/util/Mth/invSqrt (D)D +MD: net/minecraft/util/Mth/m_264612_ (II)Z net/minecraft/util/Mth/isMultipleOf (II)Z +MD: net/minecraft/util/Mth/m_269140_ (FII)I net/minecraft/util/Mth/lerpInt (FII)I +MD: net/minecraft/util/NativeModuleLister/ ()V net/minecraft/util/NativeModuleLister/ ()V +MD: net/minecraft/util/NativeModuleLister/ ()V net/minecraft/util/NativeModuleLister/ ()V +MD: net/minecraft/util/NativeModuleLister/m_184666_ ()Ljava/util/List; net/minecraft/util/NativeModuleLister/listModules ()Ljava/util/List; +MD: net/minecraft/util/NativeModuleLister/m_184667_ (Lnet/minecraft/util/NativeModuleLister$NativeModuleInfo;)Ljava/lang/String; net/minecraft/util/NativeModuleLister/lambda$addCrashSection$1 (Lnet/minecraft/util/NativeModuleLister$NativeModuleInfo;)Ljava/lang/String; +MD: net/minecraft/util/NativeModuleLister/m_184669_ (Lcom/sun/jna/Pointer;Ljava/lang/String;Lcom/sun/jna/ptr/IntByReference;)Lcom/sun/jna/Pointer; net/minecraft/util/NativeModuleLister/queryVersionValue (Lcom/sun/jna/Pointer;Ljava/lang/String;Lcom/sun/jna/ptr/IntByReference;)Lcom/sun/jna/Pointer; +MD: net/minecraft/util/NativeModuleLister/m_184673_ (Ljava/lang/String;)Ljava/util/Optional; net/minecraft/util/NativeModuleLister/tryGetVersion (Ljava/lang/String;)Ljava/util/Optional; +MD: net/minecraft/util/NativeModuleLister/m_184675_ (Ljava/lang/String;II)Ljava/lang/String; net/minecraft/util/NativeModuleLister/langTableKey (Ljava/lang/String;II)Ljava/lang/String; +MD: net/minecraft/util/NativeModuleLister/m_184679_ (Lnet/minecraft/CrashReportCategory;)V net/minecraft/util/NativeModuleLister/addCrashSection (Lnet/minecraft/CrashReportCategory;)V +MD: net/minecraft/util/NativeModuleLister/m_184681_ ([I)Ljava/util/OptionalInt; net/minecraft/util/NativeModuleLister/findLangAndCodepage ([I)Ljava/util/OptionalInt; +MD: net/minecraft/util/NativeModuleLister/m_184683_ ()Ljava/lang/String; net/minecraft/util/NativeModuleLister/lambda$addCrashSection$2 ()Ljava/lang/String; +MD: net/minecraft/util/NativeModuleLister/m_184684_ (Lnet/minecraft/util/NativeModuleLister$NativeModuleInfo;)Ljava/lang/String; net/minecraft/util/NativeModuleLister/lambda$addCrashSection$0 (Lnet/minecraft/util/NativeModuleLister$NativeModuleInfo;)Ljava/lang/String; +MD: net/minecraft/util/NativeModuleLister/m_184686_ (Lcom/sun/jna/Pointer;Ljava/lang/String;Lcom/sun/jna/ptr/IntByReference;)Ljava/lang/String; net/minecraft/util/NativeModuleLister/queryVersionString (Lcom/sun/jna/Pointer;Ljava/lang/String;Lcom/sun/jna/ptr/IntByReference;)Ljava/lang/String; +MD: net/minecraft/util/NativeModuleLister$NativeModuleInfo/ (Ljava/lang/String;Ljava/util/Optional;)V net/minecraft/util/NativeModuleLister$NativeModuleInfo/ (Ljava/lang/String;Ljava/util/Optional;)V +MD: net/minecraft/util/NativeModuleLister$NativeModuleInfo/m_184695_ (Lnet/minecraft/util/NativeModuleLister$NativeModuleVersion;)Ljava/lang/String; net/minecraft/util/NativeModuleLister$NativeModuleInfo/lambda$toString$0 (Lnet/minecraft/util/NativeModuleLister$NativeModuleVersion;)Ljava/lang/String; +MD: net/minecraft/util/NativeModuleLister$NativeModuleInfo/toString ()Ljava/lang/String; net/minecraft/util/NativeModuleLister$NativeModuleInfo/toString ()Ljava/lang/String; +MD: net/minecraft/util/NativeModuleLister$NativeModuleVersion/ (Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;)V net/minecraft/util/NativeModuleLister$NativeModuleVersion/ (Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;)V +MD: net/minecraft/util/NativeModuleLister$NativeModuleVersion/toString ()Ljava/lang/String; net/minecraft/util/NativeModuleLister$NativeModuleVersion/toString ()Ljava/lang/String; +MD: net/minecraft/util/OptionEnum/m_216301_ ()Lnet/minecraft/network/chat/Component; net/minecraft/util/OptionEnum/getCaption ()Lnet/minecraft/network/chat/Component; +MD: net/minecraft/util/OptionEnum/m_35965_ ()I net/minecraft/util/OptionEnum/getId ()I +MD: net/minecraft/util/OptionEnum/m_35968_ ()Ljava/lang/String; net/minecraft/util/OptionEnum/getKey ()Ljava/lang/String; +MD: net/minecraft/util/ParticleUtils/ ()V net/minecraft/util/ParticleUtils/ ()V +MD: net/minecraft/util/ParticleUtils/m_144967_ (Lnet/minecraft/core/Direction$Axis;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;DLnet/minecraft/core/particles/ParticleOptions;Lnet/minecraft/util/valueproviders/UniformInt;)V net/minecraft/util/ParticleUtils/spawnParticlesAlongAxis (Lnet/minecraft/core/Direction$Axis;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;DLnet/minecraft/core/particles/ParticleOptions;Lnet/minecraft/util/valueproviders/UniformInt;)V +MD: net/minecraft/util/ParticleUtils/m_216302_ (Lnet/minecraft/util/RandomSource;)Lnet/minecraft/world/phys/Vec3; net/minecraft/util/ParticleUtils/getRandomSpeedRanges (Lnet/minecraft/util/RandomSource;)Lnet/minecraft/world/phys/Vec3; +MD: net/minecraft/util/ParticleUtils/m_216304_ (Lnet/minecraft/world/level/Level;)Lnet/minecraft/world/phys/Vec3; net/minecraft/util/ParticleUtils/lambda$spawnParticlesOnBlockFaces$0 (Lnet/minecraft/world/level/Level;)Lnet/minecraft/world/phys/Vec3; +MD: net/minecraft/util/ParticleUtils/m_216306_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Direction;Lnet/minecraft/core/particles/ParticleOptions;Lnet/minecraft/world/phys/Vec3;D)V net/minecraft/util/ParticleUtils/spawnParticleOnFace (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Direction;Lnet/minecraft/core/particles/ParticleOptions;Lnet/minecraft/world/phys/Vec3;D)V +MD: net/minecraft/util/ParticleUtils/m_216313_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/particles/ParticleOptions;Lnet/minecraft/util/valueproviders/IntProvider;)V net/minecraft/util/ParticleUtils/spawnParticlesOnBlockFaces (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/particles/ParticleOptions;Lnet/minecraft/util/valueproviders/IntProvider;)V +MD: net/minecraft/util/ParticleUtils/m_216318_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/particles/ParticleOptions;Lnet/minecraft/util/valueproviders/IntProvider;Lnet/minecraft/core/Direction;Ljava/util/function/Supplier;D)V net/minecraft/util/ParticleUtils/spawnParticlesOnBlockFace (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/particles/ParticleOptions;Lnet/minecraft/util/valueproviders/IntProvider;Lnet/minecraft/core/Direction;Ljava/util/function/Supplier;D)V +MD: net/minecraft/util/ParticleUtils/m_272037_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/particles/ParticleOptions;)V net/minecraft/util/ParticleUtils/spawnParticleBelow (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/particles/ParticleOptions;)V +MD: net/minecraft/util/ProgressListener/m_6307_ (Lnet/minecraft/network/chat/Component;)V net/minecraft/util/ProgressListener/progressStage (Lnet/minecraft/network/chat/Component;)V +MD: net/minecraft/util/ProgressListener/m_6308_ (Lnet/minecraft/network/chat/Component;)V net/minecraft/util/ProgressListener/progressStart (Lnet/minecraft/network/chat/Component;)V +MD: net/minecraft/util/ProgressListener/m_6309_ (Lnet/minecraft/network/chat/Component;)V net/minecraft/util/ProgressListener/progressStartNoAbort (Lnet/minecraft/network/chat/Component;)V +MD: net/minecraft/util/ProgressListener/m_6952_ (I)V net/minecraft/util/ProgressListener/progressStagePercentage (I)V +MD: net/minecraft/util/ProgressListener/m_7730_ ()V net/minecraft/util/ProgressListener/stop ()V +MD: net/minecraft/util/RandomSource/m_188499_ ()Z net/minecraft/util/RandomSource/nextBoolean ()Z +MD: net/minecraft/util/RandomSource/m_188500_ ()D net/minecraft/util/RandomSource/nextDouble ()D +MD: net/minecraft/util/RandomSource/m_188501_ ()F net/minecraft/util/RandomSource/nextFloat ()F +MD: net/minecraft/util/RandomSource/m_188502_ ()I net/minecraft/util/RandomSource/nextInt ()I +MD: net/minecraft/util/RandomSource/m_188503_ (I)I net/minecraft/util/RandomSource/nextInt (I)I +MD: net/minecraft/util/RandomSource/m_188505_ ()J net/minecraft/util/RandomSource/nextLong ()J +MD: net/minecraft/util/RandomSource/m_188582_ ()Lnet/minecraft/world/level/levelgen/PositionalRandomFactory; net/minecraft/util/RandomSource/forkPositional ()Lnet/minecraft/world/level/levelgen/PositionalRandomFactory; +MD: net/minecraft/util/RandomSource/m_188583_ ()D net/minecraft/util/RandomSource/nextGaussian ()D +MD: net/minecraft/util/RandomSource/m_188584_ (J)V net/minecraft/util/RandomSource/setSeed (J)V +MD: net/minecraft/util/RandomSource/m_190110_ (I)V net/minecraft/util/RandomSource/consumeCount (I)V +MD: net/minecraft/util/RandomSource/m_213769_ ()Lnet/minecraft/util/RandomSource; net/minecraft/util/RandomSource/fork ()Lnet/minecraft/util/RandomSource; +MD: net/minecraft/util/RandomSource/m_216327_ ()Lnet/minecraft/util/RandomSource; net/minecraft/util/RandomSource/create ()Lnet/minecraft/util/RandomSource; +MD: net/minecraft/util/RandomSource/m_216328_ (DD)D net/minecraft/util/RandomSource/triangle (DD)D +MD: net/minecraft/util/RandomSource/m_216332_ (II)I net/minecraft/util/RandomSource/nextIntBetweenInclusive (II)I +MD: net/minecraft/util/RandomSource/m_216335_ (J)Lnet/minecraft/util/RandomSource; net/minecraft/util/RandomSource/create (J)Lnet/minecraft/util/RandomSource; +MD: net/minecraft/util/RandomSource/m_216337_ ()Lnet/minecraft/util/RandomSource; net/minecraft/util/RandomSource/createThreadSafe ()Lnet/minecraft/util/RandomSource; +MD: net/minecraft/util/RandomSource/m_216339_ (II)I net/minecraft/util/RandomSource/nextInt (II)I +MD: net/minecraft/util/RandomSource/m_216343_ ()Lnet/minecraft/util/RandomSource; net/minecraft/util/RandomSource/createNewThreadLocalInstance ()Lnet/minecraft/util/RandomSource; +MD: net/minecraft/util/ResourceLocationPattern/ ()V net/minecraft/util/ResourceLocationPattern/ ()V +MD: net/minecraft/util/ResourceLocationPattern/ (Ljava/util/Optional;Ljava/util/Optional;)V net/minecraft/util/ResourceLocationPattern/ (Ljava/util/Optional;Ljava/util/Optional;)V +MD: net/minecraft/util/ResourceLocationPattern/m_260867_ (Lnet/minecraft/util/ResourceLocationPattern;)Ljava/util/Optional; net/minecraft/util/ResourceLocationPattern/lambda$static$0 (Lnet/minecraft/util/ResourceLocationPattern;)Ljava/util/Optional; +MD: net/minecraft/util/ResourceLocationPattern/m_261035_ (Lnet/minecraft/resources/ResourceLocation;)Z net/minecraft/util/ResourceLocationPattern/lambda$new$5 (Lnet/minecraft/resources/ResourceLocation;)Z +MD: net/minecraft/util/ResourceLocationPattern/m_261037_ (Ljava/lang/String;)Z net/minecraft/util/ResourceLocationPattern/lambda$new$4 (Ljava/lang/String;)Z +MD: net/minecraft/util/ResourceLocationPattern/m_261081_ ()Ljava/util/function/Predicate; net/minecraft/util/ResourceLocationPattern/pathPredicate ()Ljava/util/function/Predicate; +MD: net/minecraft/util/ResourceLocationPattern/m_261148_ (Lnet/minecraft/util/ResourceLocationPattern;)Ljava/util/Optional; net/minecraft/util/ResourceLocationPattern/lambda$static$1 (Lnet/minecraft/util/ResourceLocationPattern;)Ljava/util/Optional; +MD: net/minecraft/util/ResourceLocationPattern/m_261163_ (Ljava/lang/String;)Z net/minecraft/util/ResourceLocationPattern/lambda$new$3 (Ljava/lang/String;)Z +MD: net/minecraft/util/ResourceLocationPattern/m_261176_ (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/util/ResourceLocationPattern/lambda$static$2 (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/util/ResourceLocationPattern/m_261275_ ()Ljava/util/function/Predicate; net/minecraft/util/ResourceLocationPattern/locationPredicate ()Ljava/util/function/Predicate; +MD: net/minecraft/util/ResourceLocationPattern/m_261304_ ()Ljava/util/function/Predicate; net/minecraft/util/ResourceLocationPattern/namespacePredicate ()Ljava/util/function/Predicate; +MD: net/minecraft/util/SegmentedAnglePrecision/ (I)V net/minecraft/util/SegmentedAnglePrecision/ (I)V +MD: net/minecraft/util/SegmentedAnglePrecision/m_264060_ (Lnet/minecraft/core/Direction;)I net/minecraft/util/SegmentedAnglePrecision/fromDirection (Lnet/minecraft/core/Direction;)I +MD: net/minecraft/util/SegmentedAnglePrecision/m_264138_ (I)F net/minecraft/util/SegmentedAnglePrecision/toDegrees (I)F +MD: net/minecraft/util/SegmentedAnglePrecision/m_264207_ (II)Z net/minecraft/util/SegmentedAnglePrecision/isSameAxis (II)Z +MD: net/minecraft/util/SegmentedAnglePrecision/m_264289_ (I)F net/minecraft/util/SegmentedAnglePrecision/toDegreesWithTurns (I)F +MD: net/minecraft/util/SegmentedAnglePrecision/m_264384_ (I)I net/minecraft/util/SegmentedAnglePrecision/normalize (I)I +MD: net/minecraft/util/SegmentedAnglePrecision/m_264419_ (F)I net/minecraft/util/SegmentedAnglePrecision/fromDegrees (F)I +MD: net/minecraft/util/SegmentedAnglePrecision/m_264451_ ()I net/minecraft/util/SegmentedAnglePrecision/getMask ()I +MD: net/minecraft/util/SegmentedAnglePrecision/m_264592_ (F)I net/minecraft/util/SegmentedAnglePrecision/fromDegreesWithTurns (F)I +MD: net/minecraft/util/SignatureUpdater/m_216344_ (Lnet/minecraft/util/SignatureUpdater$Output;)V net/minecraft/util/SignatureUpdater/update (Lnet/minecraft/util/SignatureUpdater$Output;)V +MD: net/minecraft/util/SignatureUpdater$Output/m_216346_ ([B)V net/minecraft/util/SignatureUpdater$Output/update ([B)V +MD: net/minecraft/util/SignatureValidator/ ()V net/minecraft/util/SignatureValidator/ ()V +MD: net/minecraft/util/SignatureValidator/m_216351_ (Lnet/minecraft/util/SignatureUpdater;[B)Z net/minecraft/util/SignatureValidator/lambda$static$0 (Lnet/minecraft/util/SignatureUpdater;[B)Z +MD: net/minecraft/util/SignatureValidator/m_216354_ (Lnet/minecraft/util/SignatureUpdater;[BLjava/security/Signature;)Z net/minecraft/util/SignatureValidator/verifySignature (Lnet/minecraft/util/SignatureUpdater;[BLjava/security/Signature;)Z +MD: net/minecraft/util/SignatureValidator/m_216360_ (Lnet/minecraft/util/SignatureUpdater;[BLcom/mojang/authlib/yggdrasil/ServicesKeyInfo;)Z net/minecraft/util/SignatureValidator/lambda$from$3 (Lnet/minecraft/util/SignatureUpdater;[BLcom/mojang/authlib/yggdrasil/ServicesKeyInfo;)Z +MD: net/minecraft/util/SignatureValidator/m_216364_ (Ljava/lang/String;Ljava/security/PublicKey;Lnet/minecraft/util/SignatureUpdater;[B)Z net/minecraft/util/SignatureValidator/lambda$from$2 (Ljava/lang/String;Ljava/security/PublicKey;Lnet/minecraft/util/SignatureUpdater;[B)Z +MD: net/minecraft/util/SignatureValidator/m_216369_ (Ljava/security/PublicKey;Ljava/lang/String;)Lnet/minecraft/util/SignatureValidator; net/minecraft/util/SignatureValidator/from (Ljava/security/PublicKey;Ljava/lang/String;)Lnet/minecraft/util/SignatureValidator; +MD: net/minecraft/util/SignatureValidator/m_216372_ ([BLnet/minecraft/util/SignatureUpdater$Output;)V net/minecraft/util/SignatureValidator/lambda$validate$1 ([BLnet/minecraft/util/SignatureUpdater$Output;)V +MD: net/minecraft/util/SignatureValidator/m_216375_ ([B[B)Z net/minecraft/util/SignatureValidator/validate ([B[B)Z +MD: net/minecraft/util/SignatureValidator/m_216378_ (Lnet/minecraft/util/SignatureUpdater;[B)Z net/minecraft/util/SignatureValidator/validate (Lnet/minecraft/util/SignatureUpdater;[B)Z +MD: net/minecraft/util/SignatureValidator/m_284009_ (Ljava/util/Collection;Lnet/minecraft/util/SignatureUpdater;[B)Z net/minecraft/util/SignatureValidator/lambda$from$4 (Ljava/util/Collection;Lnet/minecraft/util/SignatureUpdater;[B)Z +MD: net/minecraft/util/SignatureValidator/m_284488_ (Lcom/mojang/authlib/yggdrasil/ServicesKeySet;Lcom/mojang/authlib/yggdrasil/ServicesKeyType;)Lnet/minecraft/util/SignatureValidator; net/minecraft/util/SignatureValidator/from (Lcom/mojang/authlib/yggdrasil/ServicesKeySet;Lcom/mojang/authlib/yggdrasil/ServicesKeyType;)Lnet/minecraft/util/SignatureValidator; +MD: net/minecraft/util/Signer/ ()V net/minecraft/util/Signer/ ()V +MD: net/minecraft/util/Signer/m_216383_ (Ljava/lang/String;Ljava/security/PrivateKey;Lnet/minecraft/util/SignatureUpdater;)[B net/minecraft/util/Signer/lambda$from$1 (Ljava/lang/String;Ljava/security/PrivateKey;Lnet/minecraft/util/SignatureUpdater;)[B +MD: net/minecraft/util/Signer/m_216387_ (Ljava/security/PrivateKey;Ljava/lang/String;)Lnet/minecraft/util/Signer; net/minecraft/util/Signer/from (Ljava/security/PrivateKey;Ljava/lang/String;)Lnet/minecraft/util/Signer; +MD: net/minecraft/util/Signer/m_216390_ ([B)[B net/minecraft/util/Signer/sign ([B)[B +MD: net/minecraft/util/Signer/m_216392_ ([BLnet/minecraft/util/SignatureUpdater$Output;)V net/minecraft/util/Signer/lambda$sign$0 ([BLnet/minecraft/util/SignatureUpdater$Output;)V +MD: net/minecraft/util/Signer/m_216395_ (Lnet/minecraft/util/SignatureUpdater;)[B net/minecraft/util/Signer/sign (Lnet/minecraft/util/SignatureUpdater;)[B +MD: net/minecraft/util/SimpleBitStorage/ ()V net/minecraft/util/SimpleBitStorage/ ()V +MD: net/minecraft/util/SimpleBitStorage/ (II[J)V net/minecraft/util/SimpleBitStorage/ (II[J)V +MD: net/minecraft/util/SimpleBitStorage/ (II[I)V net/minecraft/util/SimpleBitStorage/ (II[I)V +MD: net/minecraft/util/SimpleBitStorage/ (II)V net/minecraft/util/SimpleBitStorage/ (II)V +MD: net/minecraft/util/SimpleBitStorage/m_13513_ ()[J net/minecraft/util/SimpleBitStorage/getRaw ()[J +MD: net/minecraft/util/SimpleBitStorage/m_13514_ (I)I net/minecraft/util/SimpleBitStorage/get (I)I +MD: net/minecraft/util/SimpleBitStorage/m_13516_ (II)I net/minecraft/util/SimpleBitStorage/getAndSet (II)I +MD: net/minecraft/util/SimpleBitStorage/m_13519_ (Ljava/util/function/IntConsumer;)V net/minecraft/util/SimpleBitStorage/getAll (Ljava/util/function/IntConsumer;)V +MD: net/minecraft/util/SimpleBitStorage/m_13521_ ()I net/minecraft/util/SimpleBitStorage/getSize ()I +MD: net/minecraft/util/SimpleBitStorage/m_13524_ (II)V net/minecraft/util/SimpleBitStorage/set (II)V +MD: net/minecraft/util/SimpleBitStorage/m_144604_ ()I net/minecraft/util/SimpleBitStorage/getBits ()I +MD: net/minecraft/util/SimpleBitStorage/m_184739_ (I)I net/minecraft/util/SimpleBitStorage/cellIndex (I)I +MD: net/minecraft/util/SimpleBitStorage/m_197970_ ([I)V net/minecraft/util/SimpleBitStorage/unpack ([I)V +MD: net/minecraft/util/SimpleBitStorage/m_199833_ ()Lnet/minecraft/util/BitStorage; net/minecraft/util/SimpleBitStorage/copy ()Lnet/minecraft/util/BitStorage; +MD: net/minecraft/util/SimpleBitStorage$InitializationException/ (Ljava/lang/String;)V net/minecraft/util/SimpleBitStorage$InitializationException/ (Ljava/lang/String;)V +MD: net/minecraft/util/SingleKeyCache/ (Ljava/util/function/Function;)V net/minecraft/util/SingleKeyCache/ (Ljava/util/function/Function;)V +MD: net/minecraft/util/SingleKeyCache/m_269185_ (Ljava/lang/Object;)Ljava/lang/Object; net/minecraft/util/SingleKeyCache/getValue (Ljava/lang/Object;)Ljava/lang/Object; +MD: net/minecraft/util/SmoothDouble/ ()V net/minecraft/util/SmoothDouble/ ()V +MD: net/minecraft/util/SmoothDouble/m_14236_ ()V net/minecraft/util/SmoothDouble/reset ()V +MD: net/minecraft/util/SmoothDouble/m_14237_ (DD)D net/minecraft/util/SmoothDouble/getNewDeltaValue (DD)D +MD: net/minecraft/util/SortedArraySet/ (ILjava/util/Comparator;)V net/minecraft/util/SortedArraySet/ (ILjava/util/Comparator;)V +MD: net/minecraft/util/SortedArraySet/add (Ljava/lang/Object;)Z net/minecraft/util/SortedArraySet/add (Ljava/lang/Object;)Z +MD: net/minecraft/util/SortedArraySet/clear ()V net/minecraft/util/SortedArraySet/clear ()V +MD: net/minecraft/util/SortedArraySet/contains (Ljava/lang/Object;)Z net/minecraft/util/SortedArraySet/contains (Ljava/lang/Object;)Z +MD: net/minecraft/util/SortedArraySet/equals (Ljava/lang/Object;)Z net/minecraft/util/SortedArraySet/equals (Ljava/lang/Object;)Z +MD: net/minecraft/util/SortedArraySet/iterator ()Ljava/util/Iterator; net/minecraft/util/SortedArraySet/iterator ()Ljava/util/Iterator; +MD: net/minecraft/util/SortedArraySet/m_14246_ (I)Lnet/minecraft/util/SortedArraySet; net/minecraft/util/SortedArraySet/create (I)Lnet/minecraft/util/SortedArraySet; +MD: net/minecraft/util/SortedArraySet/m_14253_ (Ljava/lang/Object;)Ljava/lang/Object; net/minecraft/util/SortedArraySet/addOrGet (Ljava/lang/Object;)Ljava/lang/Object; +MD: net/minecraft/util/SortedArraySet/m_14255_ (Ljava/lang/Object;I)V net/minecraft/util/SortedArraySet/addInternal (Ljava/lang/Object;I)V +MD: net/minecraft/util/SortedArraySet/m_14258_ ([Ljava/lang/Object;)[Ljava/lang/Object; net/minecraft/util/SortedArraySet/castRawArray ([Ljava/lang/Object;)[Ljava/lang/Object; +MD: net/minecraft/util/SortedArraySet/m_14262_ ()Ljava/lang/Object; net/minecraft/util/SortedArraySet/first ()Ljava/lang/Object; +MD: net/minecraft/util/SortedArraySet/m_14263_ (I)I net/minecraft/util/SortedArraySet/getInsertionPosition (I)I +MD: net/minecraft/util/SortedArraySet/m_14267_ (I)V net/minecraft/util/SortedArraySet/grow (I)V +MD: net/minecraft/util/SortedArraySet/m_14269_ (Ljava/lang/Object;)I net/minecraft/util/SortedArraySet/findIndex (Ljava/lang/Object;)I +MD: net/minecraft/util/SortedArraySet/m_14274_ (I)V net/minecraft/util/SortedArraySet/removeInternal (I)V +MD: net/minecraft/util/SortedArraySet/m_14276_ (I)Ljava/lang/Object; net/minecraft/util/SortedArraySet/getInternal (I)Ljava/lang/Object; +MD: net/minecraft/util/SortedArraySet/m_144975_ ()Lnet/minecraft/util/SortedArraySet; net/minecraft/util/SortedArraySet/create ()Lnet/minecraft/util/SortedArraySet; +MD: net/minecraft/util/SortedArraySet/m_144976_ (Ljava/util/Comparator;)Lnet/minecraft/util/SortedArraySet; net/minecraft/util/SortedArraySet/create (Ljava/util/Comparator;)Lnet/minecraft/util/SortedArraySet; +MD: net/minecraft/util/SortedArraySet/m_144978_ (Ljava/util/Comparator;I)Lnet/minecraft/util/SortedArraySet; net/minecraft/util/SortedArraySet/create (Ljava/util/Comparator;I)Lnet/minecraft/util/SortedArraySet; +MD: net/minecraft/util/SortedArraySet/m_144981_ (Ljava/lang/Object;)Ljava/lang/Object; net/minecraft/util/SortedArraySet/get (Ljava/lang/Object;)Ljava/lang/Object; +MD: net/minecraft/util/SortedArraySet/m_144983_ ()Ljava/lang/Object; net/minecraft/util/SortedArraySet/last ()Ljava/lang/Object; +MD: net/minecraft/util/SortedArraySet/remove (Ljava/lang/Object;)Z net/minecraft/util/SortedArraySet/remove (Ljava/lang/Object;)Z +MD: net/minecraft/util/SortedArraySet/size ()I net/minecraft/util/SortedArraySet/size ()I +MD: net/minecraft/util/SortedArraySet/toArray ([Ljava/lang/Object;)[Ljava/lang/Object; net/minecraft/util/SortedArraySet/toArray ([Ljava/lang/Object;)[Ljava/lang/Object; +MD: net/minecraft/util/SortedArraySet/toArray ()[Ljava/lang/Object; net/minecraft/util/SortedArraySet/toArray ()[Ljava/lang/Object; +MD: net/minecraft/util/SortedArraySet$ArrayIterator/ (Lnet/minecraft/util/SortedArraySet;)V net/minecraft/util/SortedArraySet$ArrayIterator/ (Lnet/minecraft/util/SortedArraySet;)V +MD: net/minecraft/util/SortedArraySet$ArrayIterator/hasNext ()Z net/minecraft/util/SortedArraySet$ArrayIterator/hasNext ()Z +MD: net/minecraft/util/SortedArraySet$ArrayIterator/next ()Ljava/lang/Object; net/minecraft/util/SortedArraySet$ArrayIterator/next ()Ljava/lang/Object; +MD: net/minecraft/util/SortedArraySet$ArrayIterator/remove ()V net/minecraft/util/SortedArraySet$ArrayIterator/remove ()V +MD: net/minecraft/util/SpawnUtil/ ()V net/minecraft/util/SpawnUtil/ ()V +MD: net/minecraft/util/SpawnUtil/m_216398_ (Lnet/minecraft/server/level/ServerLevel;ILnet/minecraft/core/BlockPos$MutableBlockPos;Lnet/minecraft/util/SpawnUtil$Strategy;)Z net/minecraft/util/SpawnUtil/moveToPossibleSpawnPosition (Lnet/minecraft/server/level/ServerLevel;ILnet/minecraft/core/BlockPos$MutableBlockPos;Lnet/minecraft/util/SpawnUtil$Strategy;)Z +MD: net/minecraft/util/SpawnUtil/m_216403_ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/entity/MobSpawnType;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;IIILnet/minecraft/util/SpawnUtil$Strategy;)Ljava/util/Optional; net/minecraft/util/SpawnUtil/trySpawnMob (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/entity/MobSpawnType;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;IIILnet/minecraft/util/SpawnUtil$Strategy;)Ljava/util/Optional; +MD: net/minecraft/util/SpawnUtil$Strategy/ ()V net/minecraft/util/SpawnUtil$Strategy/ ()V +MD: net/minecraft/util/SpawnUtil$Strategy/m_216415_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/util/SpawnUtil$Strategy/lambda$static$1 (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/util/SpawnUtil$Strategy/m_216427_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/util/SpawnUtil$Strategy/canSpawnOn (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/util/SpawnUtil$Strategy/m_289712_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/util/SpawnUtil$Strategy/lambda$static$0 (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/util/StringDecomposer/ ()V net/minecraft/util/StringDecomposer/ ()V +MD: net/minecraft/util/StringDecomposer/ ()V net/minecraft/util/StringDecomposer/ ()V +MD: net/minecraft/util/StringDecomposer/m_14300_ (Lnet/minecraft/util/FormattedCharSink;Lnet/minecraft/network/chat/Style;Ljava/lang/String;)Ljava/util/Optional; net/minecraft/util/StringDecomposer/lambda$iterateFormatted$0 (Lnet/minecraft/util/FormattedCharSink;Lnet/minecraft/network/chat/Style;Ljava/lang/String;)Ljava/util/Optional; +MD: net/minecraft/util/StringDecomposer/m_14304_ (Ljava/lang/String;)Ljava/lang/String; net/minecraft/util/StringDecomposer/filterBrokenSurrogates (Ljava/lang/String;)Ljava/lang/String; +MD: net/minecraft/util/StringDecomposer/m_14306_ (Ljava/lang/String;ILnet/minecraft/network/chat/Style;Lnet/minecraft/util/FormattedCharSink;)Z net/minecraft/util/StringDecomposer/iterateFormatted (Ljava/lang/String;ILnet/minecraft/network/chat/Style;Lnet/minecraft/util/FormattedCharSink;)Z +MD: net/minecraft/util/StringDecomposer/m_14311_ (Ljava/lang/String;ILnet/minecraft/network/chat/Style;Lnet/minecraft/network/chat/Style;Lnet/minecraft/util/FormattedCharSink;)Z net/minecraft/util/StringDecomposer/iterateFormatted (Ljava/lang/String;ILnet/minecraft/network/chat/Style;Lnet/minecraft/network/chat/Style;Lnet/minecraft/util/FormattedCharSink;)Z +MD: net/minecraft/util/StringDecomposer/m_14317_ (Ljava/lang/String;Lnet/minecraft/network/chat/Style;Lnet/minecraft/util/FormattedCharSink;)Z net/minecraft/util/StringDecomposer/iterate (Ljava/lang/String;Lnet/minecraft/network/chat/Style;Lnet/minecraft/util/FormattedCharSink;)Z +MD: net/minecraft/util/StringDecomposer/m_14321_ (Ljava/lang/StringBuilder;ILnet/minecraft/network/chat/Style;I)Z net/minecraft/util/StringDecomposer/lambda$getPlainText$2 (Ljava/lang/StringBuilder;ILnet/minecraft/network/chat/Style;I)Z +MD: net/minecraft/util/StringDecomposer/m_14326_ (Lnet/minecraft/network/chat/FormattedText;)Ljava/lang/String; net/minecraft/util/StringDecomposer/getPlainText (Lnet/minecraft/network/chat/FormattedText;)Ljava/lang/String; +MD: net/minecraft/util/StringDecomposer/m_14328_ (Lnet/minecraft/network/chat/FormattedText;Lnet/minecraft/network/chat/Style;Lnet/minecraft/util/FormattedCharSink;)Z net/minecraft/util/StringDecomposer/iterateFormatted (Lnet/minecraft/network/chat/FormattedText;Lnet/minecraft/network/chat/Style;Lnet/minecraft/util/FormattedCharSink;)Z +MD: net/minecraft/util/StringDecomposer/m_14332_ (Lnet/minecraft/network/chat/Style;Lnet/minecraft/util/FormattedCharSink;IC)Z net/minecraft/util/StringDecomposer/feedChar (Lnet/minecraft/network/chat/Style;Lnet/minecraft/util/FormattedCharSink;IC)Z +MD: net/minecraft/util/StringDecomposer/m_14337_ (Ljava/lang/String;Lnet/minecraft/network/chat/Style;Lnet/minecraft/util/FormattedCharSink;)Z net/minecraft/util/StringDecomposer/iterateBackwards (Ljava/lang/String;Lnet/minecraft/network/chat/Style;Lnet/minecraft/util/FormattedCharSink;)Z +MD: net/minecraft/util/StringDecomposer/m_14341_ (Ljava/lang/StringBuilder;ILnet/minecraft/network/chat/Style;I)Z net/minecraft/util/StringDecomposer/lambda$filterBrokenSurrogates$1 (Ljava/lang/StringBuilder;ILnet/minecraft/network/chat/Style;I)Z +MD: net/minecraft/util/StringDecomposer/m_14346_ (Ljava/lang/String;Lnet/minecraft/network/chat/Style;Lnet/minecraft/util/FormattedCharSink;)Z net/minecraft/util/StringDecomposer/iterateFormatted (Ljava/lang/String;Lnet/minecraft/network/chat/Style;Lnet/minecraft/util/FormattedCharSink;)Z +MD: net/minecraft/util/StringRepresentable/m_14357_ ([Lnet/minecraft/util/StringRepresentable;)Lcom/mojang/serialization/Keyable; net/minecraft/util/StringRepresentable/keys ([Lnet/minecraft/util/StringRepresentable;)Lcom/mojang/serialization/Keyable; +MD: net/minecraft/util/StringRepresentable/m_216434_ (Ljava/lang/String;)Ljava/lang/String; net/minecraft/util/StringRepresentable/lambda$fromEnum$0 (Ljava/lang/String;)Ljava/lang/String; +MD: net/minecraft/util/StringRepresentable/m_216436_ (Ljava/util/Map;Ljava/lang/String;)Ljava/lang/Enum; net/minecraft/util/StringRepresentable/lambda$fromEnumWithMapping$3 (Ljava/util/Map;Ljava/lang/String;)Ljava/lang/Enum; +MD: net/minecraft/util/StringRepresentable/m_216439_ (Ljava/util/function/Supplier;)Lnet/minecraft/util/StringRepresentable$EnumCodec; net/minecraft/util/StringRepresentable/fromEnum (Ljava/util/function/Supplier;)Lnet/minecraft/util/StringRepresentable$EnumCodec; +MD: net/minecraft/util/StringRepresentable/m_274152_ (Ljava/lang/Enum;)Ljava/lang/Enum; net/minecraft/util/StringRepresentable/lambda$fromEnumWithMapping$2 (Ljava/lang/Enum;)Ljava/lang/Enum; +MD: net/minecraft/util/StringRepresentable/m_274153_ (Ljava/util/function/Function;Ljava/lang/Enum;)Ljava/lang/String; net/minecraft/util/StringRepresentable/lambda$fromEnumWithMapping$1 (Ljava/util/function/Function;Ljava/lang/Enum;)Ljava/lang/String; +MD: net/minecraft/util/StringRepresentable/m_274154_ ([Ljava/lang/Enum;Ljava/util/function/Function;Ljava/lang/String;)Ljava/lang/Enum; net/minecraft/util/StringRepresentable/lambda$fromEnumWithMapping$4 ([Ljava/lang/Enum;Ljava/util/function/Function;Ljava/lang/String;)Ljava/lang/Enum; +MD: net/minecraft/util/StringRepresentable/m_274478_ (Ljava/util/function/Supplier;Ljava/util/function/Function;)Lnet/minecraft/util/StringRepresentable$EnumCodec; net/minecraft/util/StringRepresentable/fromEnumWithMapping (Ljava/util/function/Supplier;Ljava/util/function/Function;)Lnet/minecraft/util/StringRepresentable$EnumCodec; +MD: net/minecraft/util/StringRepresentable/m_7912_ ()Ljava/lang/String; net/minecraft/util/StringRepresentable/getSerializedName ()Ljava/lang/String; +MD: net/minecraft/util/StringRepresentable$1/ ([Lnet/minecraft/util/StringRepresentable;)V net/minecraft/util/StringRepresentable$1/ ([Lnet/minecraft/util/StringRepresentable;)V +MD: net/minecraft/util/StringRepresentable$1/keys (Lcom/mojang/serialization/DynamicOps;)Ljava/util/stream/Stream; net/minecraft/util/StringRepresentable$1/keys (Lcom/mojang/serialization/DynamicOps;)Ljava/util/stream/Stream; +MD: net/minecraft/util/StringRepresentable$EnumCodec/ ([Ljava/lang/Enum;Ljava/util/function/Function;)V net/minecraft/util/StringRepresentable$EnumCodec/ ([Ljava/lang/Enum;Ljava/util/function/Function;)V +MD: net/minecraft/util/StringRepresentable$EnumCodec/decode (Lcom/mojang/serialization/DynamicOps;Ljava/lang/Object;)Lcom/mojang/serialization/DataResult; net/minecraft/util/StringRepresentable$EnumCodec/decode (Lcom/mojang/serialization/DynamicOps;Ljava/lang/Object;)Lcom/mojang/serialization/DataResult; +MD: net/minecraft/util/StringRepresentable$EnumCodec/encode (Ljava/lang/Enum;Lcom/mojang/serialization/DynamicOps;Ljava/lang/Object;)Lcom/mojang/serialization/DataResult; net/minecraft/util/StringRepresentable$EnumCodec/encode (Ljava/lang/Enum;Lcom/mojang/serialization/DynamicOps;Ljava/lang/Object;)Lcom/mojang/serialization/DataResult; +MD: net/minecraft/util/StringRepresentable$EnumCodec/encode (Ljava/lang/Object;Lcom/mojang/serialization/DynamicOps;Ljava/lang/Object;)Lcom/mojang/serialization/DataResult; net/minecraft/util/StringRepresentable$EnumCodec/encode (Ljava/lang/Object;Lcom/mojang/serialization/DynamicOps;Ljava/lang/Object;)Lcom/mojang/serialization/DataResult; +MD: net/minecraft/util/StringRepresentable$EnumCodec/m_216453_ (Ljava/lang/Object;)I net/minecraft/util/StringRepresentable$EnumCodec/lambda$new$1 (Ljava/lang/Object;)I +MD: net/minecraft/util/StringRepresentable$EnumCodec/m_216455_ (Ljava/lang/String;)Ljava/lang/Enum; net/minecraft/util/StringRepresentable$EnumCodec/byName (Ljava/lang/String;)Ljava/lang/Enum; +MD: net/minecraft/util/StringRepresentable$EnumCodec/m_216457_ ([Ljava/lang/Enum;I)Ljava/lang/Enum; net/minecraft/util/StringRepresentable$EnumCodec/lambda$new$2 ([Ljava/lang/Enum;I)Ljava/lang/Enum; +MD: net/minecraft/util/StringRepresentable$EnumCodec/m_216460_ (Ljava/lang/Object;)Ljava/lang/String; net/minecraft/util/StringRepresentable$EnumCodec/lambda$new$0 (Ljava/lang/Object;)Ljava/lang/String; +MD: net/minecraft/util/StringRepresentable$EnumCodec/m_262792_ (Ljava/lang/String;Ljava/lang/Enum;)Ljava/lang/Enum; net/minecraft/util/StringRepresentable$EnumCodec/byName (Ljava/lang/String;Ljava/lang/Enum;)Ljava/lang/Enum; +MD: net/minecraft/util/StringUtil/ ()V net/minecraft/util/StringUtil/ ()V +MD: net/minecraft/util/StringUtil/ ()V net/minecraft/util/StringUtil/ ()V +MD: net/minecraft/util/StringUtil/m_14404_ (I)Ljava/lang/String; net/minecraft/util/StringUtil/formatTickDuration (I)Ljava/lang/String; +MD: net/minecraft/util/StringUtil/m_14406_ (Ljava/lang/String;)Ljava/lang/String; net/minecraft/util/StringUtil/stripColor (Ljava/lang/String;)Ljava/lang/String; +MD: net/minecraft/util/StringUtil/m_14408_ (Ljava/lang/String;)Z net/minecraft/util/StringUtil/isNullOrEmpty (Ljava/lang/String;)Z +MD: net/minecraft/util/StringUtil/m_144998_ (Ljava/lang/String;IZ)Ljava/lang/String; net/minecraft/util/StringUtil/truncateStringIfNecessary (Ljava/lang/String;IZ)Ljava/lang/String; +MD: net/minecraft/util/StringUtil/m_145002_ (Ljava/lang/String;)I net/minecraft/util/StringUtil/lineCount (Ljava/lang/String;)I +MD: net/minecraft/util/StringUtil/m_145004_ (Ljava/lang/String;)Z net/minecraft/util/StringUtil/endsWithNewLine (Ljava/lang/String;)Z +MD: net/minecraft/util/StringUtil/m_216469_ (Ljava/lang/String;)Ljava/lang/String; net/minecraft/util/StringUtil/trimChatMessage (Ljava/lang/String;)Ljava/lang/String; +MD: net/minecraft/util/TaskChainer/ ()V net/minecraft/util/TaskChainer/ ()V +MD: net/minecraft/util/TaskChainer/m_241791_ (Ljava/lang/Throwable;)Ljava/lang/Object; net/minecraft/util/TaskChainer/lambda$immediate$0 (Ljava/lang/Throwable;)Ljava/lang/Object; +MD: net/minecraft/util/TaskChainer/m_241849_ (Lnet/minecraft/util/TaskChainer$DelayedTask;)V net/minecraft/util/TaskChainer/append (Lnet/minecraft/util/TaskChainer$DelayedTask;)V +MD: net/minecraft/util/TaskChainer/m_244911_ (Ljava/util/concurrent/Executor;Lnet/minecraft/util/TaskChainer$DelayedTask;)V net/minecraft/util/TaskChainer/lambda$immediate$1 (Ljava/util/concurrent/Executor;Lnet/minecraft/util/TaskChainer$DelayedTask;)V +MD: net/minecraft/util/TaskChainer/m_247687_ (Ljava/util/concurrent/Executor;)Lnet/minecraft/util/TaskChainer; net/minecraft/util/TaskChainer/immediate (Ljava/util/concurrent/Executor;)Lnet/minecraft/util/TaskChainer; +MD: net/minecraft/util/TaskChainer$DelayedTask/m_245608_ (Ljava/util/concurrent/Executor;)Ljava/util/concurrent/CompletableFuture; net/minecraft/util/TaskChainer$DelayedTask/submit (Ljava/util/concurrent/Executor;)Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/util/ThreadingDetector/ ()V net/minecraft/util/ThreadingDetector/ ()V +MD: net/minecraft/util/ThreadingDetector/ (Ljava/lang/String;)V net/minecraft/util/ThreadingDetector/ (Ljava/lang/String;)V +MD: net/minecraft/util/ThreadingDetector/m_199416_ ()V net/minecraft/util/ThreadingDetector/checkAndLock ()V +MD: net/minecraft/util/ThreadingDetector/m_199417_ (Ljava/lang/String;Ljava/lang/Thread;)Lnet/minecraft/ReportedException; net/minecraft/util/ThreadingDetector/makeThreadingException (Ljava/lang/String;Ljava/lang/Thread;)Lnet/minecraft/ReportedException; +MD: net/minecraft/util/ThreadingDetector/m_199420_ (Ljava/lang/Thread;)Ljava/lang/String; net/minecraft/util/ThreadingDetector/stackTrace (Ljava/lang/Thread;)Ljava/lang/String; +MD: net/minecraft/util/ThreadingDetector/m_199422_ ()V net/minecraft/util/ThreadingDetector/checkAndUnlock ()V +MD: net/minecraft/util/TimeSource/m_239336_ (Ljava/util/concurrent/TimeUnit;)J net/minecraft/util/TimeSource/get (Ljava/util/concurrent/TimeUnit;)J +MD: net/minecraft/util/TimeSource$NanoTimeSource/m_239336_ (Ljava/util/concurrent/TimeUnit;)J net/minecraft/util/TimeSource$NanoTimeSource/get (Ljava/util/concurrent/TimeUnit;)J +MD: net/minecraft/util/TimeUtil/ ()V net/minecraft/util/TimeUtil/ ()V +MD: net/minecraft/util/TimeUtil/ ()V net/minecraft/util/TimeUtil/ ()V +MD: net/minecraft/util/TimeUtil/m_145020_ (II)Lnet/minecraft/util/valueproviders/UniformInt; net/minecraft/util/TimeUtil/rangeOfSeconds (II)Lnet/minecraft/util/valueproviders/UniformInt; +MD: net/minecraft/util/ToFloatFunction/ ()V net/minecraft/util/ToFloatFunction/ ()V +MD: net/minecraft/util/ToFloatFunction/m_183321_ (Ljava/lang/Object;)F net/minecraft/util/ToFloatFunction/apply (Ljava/lang/Object;)F +MD: net/minecraft/util/ToFloatFunction/m_213849_ ()F net/minecraft/util/ToFloatFunction/maxValue ()F +MD: net/minecraft/util/ToFloatFunction/m_213850_ ()F net/minecraft/util/ToFloatFunction/minValue ()F +MD: net/minecraft/util/ToFloatFunction/m_216473_ (F)F net/minecraft/util/ToFloatFunction/lambda$static$0 (F)F +MD: net/minecraft/util/ToFloatFunction/m_216475_ (Lit/unimi/dsi/fastutil/floats/Float2FloatFunction;)Lnet/minecraft/util/ToFloatFunction; net/minecraft/util/ToFloatFunction/createUnlimited (Lit/unimi/dsi/fastutil/floats/Float2FloatFunction;)Lnet/minecraft/util/ToFloatFunction; +MD: net/minecraft/util/ToFloatFunction/m_216477_ (Ljava/util/function/Function;)Lnet/minecraft/util/ToFloatFunction; net/minecraft/util/ToFloatFunction/comap (Ljava/util/function/Function;)Lnet/minecraft/util/ToFloatFunction; +MD: net/minecraft/util/ToFloatFunction$1/ (Lit/unimi/dsi/fastutil/floats/Float2FloatFunction;)V net/minecraft/util/ToFloatFunction$1/ (Lit/unimi/dsi/fastutil/floats/Float2FloatFunction;)V +MD: net/minecraft/util/ToFloatFunction$1/m_183321_ (Ljava/lang/Float;)F net/minecraft/util/ToFloatFunction$1/apply (Ljava/lang/Float;)F +MD: net/minecraft/util/ToFloatFunction$1/m_183321_ (Ljava/lang/Object;)F net/minecraft/util/ToFloatFunction$1/apply (Ljava/lang/Object;)F +MD: net/minecraft/util/ToFloatFunction$1/m_213849_ ()F net/minecraft/util/ToFloatFunction$1/maxValue ()F +MD: net/minecraft/util/ToFloatFunction$1/m_213850_ ()F net/minecraft/util/ToFloatFunction$1/minValue ()F +MD: net/minecraft/util/ToFloatFunction$2/ (Lnet/minecraft/util/ToFloatFunction;Lnet/minecraft/util/ToFloatFunction;Ljava/util/function/Function;)V net/minecraft/util/ToFloatFunction$2/ (Lnet/minecraft/util/ToFloatFunction;Lnet/minecraft/util/ToFloatFunction;Ljava/util/function/Function;)V +MD: net/minecraft/util/ToFloatFunction$2/m_183321_ (Ljava/lang/Object;)F net/minecraft/util/ToFloatFunction$2/apply (Ljava/lang/Object;)F +MD: net/minecraft/util/ToFloatFunction$2/m_213849_ ()F net/minecraft/util/ToFloatFunction$2/maxValue ()F +MD: net/minecraft/util/ToFloatFunction$2/m_213850_ ()F net/minecraft/util/ToFloatFunction$2/minValue ()F +MD: net/minecraft/util/Tuple/ (Ljava/lang/Object;Ljava/lang/Object;)V net/minecraft/util/Tuple/ (Ljava/lang/Object;Ljava/lang/Object;)V +MD: net/minecraft/util/Tuple/m_14418_ ()Ljava/lang/Object; net/minecraft/util/Tuple/getA ()Ljava/lang/Object; +MD: net/minecraft/util/Tuple/m_14419_ ()Ljava/lang/Object; net/minecraft/util/Tuple/getB ()Ljava/lang/Object; +MD: net/minecraft/util/Tuple/m_145023_ (Ljava/lang/Object;)V net/minecraft/util/Tuple/setA (Ljava/lang/Object;)V +MD: net/minecraft/util/Tuple/m_145025_ (Ljava/lang/Object;)V net/minecraft/util/Tuple/setB (Ljava/lang/Object;)V +MD: net/minecraft/util/Unit/ ()V net/minecraft/util/Unit/ ()V +MD: net/minecraft/util/Unit/ (Ljava/lang/String;I)V net/minecraft/util/Unit/ (Ljava/lang/String;I)V +MD: net/minecraft/util/Unit/m_145027_ ()[Lnet/minecraft/util/Unit; net/minecraft/util/Unit/$values ()[Lnet/minecraft/util/Unit; +MD: net/minecraft/util/Unit/valueOf (Ljava/lang/String;)Lnet/minecraft/util/Unit; net/minecraft/util/Unit/valueOf (Ljava/lang/String;)Lnet/minecraft/util/Unit; +MD: net/minecraft/util/Unit/values ()[Lnet/minecraft/util/Unit; net/minecraft/util/Unit/values ()[Lnet/minecraft/util/Unit; +MD: net/minecraft/util/ZeroBitStorage/ ()V net/minecraft/util/ZeroBitStorage/ ()V +MD: net/minecraft/util/ZeroBitStorage/ (I)V net/minecraft/util/ZeroBitStorage/ (I)V +MD: net/minecraft/util/ZeroBitStorage/m_13513_ ()[J net/minecraft/util/ZeroBitStorage/getRaw ()[J +MD: net/minecraft/util/ZeroBitStorage/m_13514_ (I)I net/minecraft/util/ZeroBitStorage/get (I)I +MD: net/minecraft/util/ZeroBitStorage/m_13516_ (II)I net/minecraft/util/ZeroBitStorage/getAndSet (II)I +MD: net/minecraft/util/ZeroBitStorage/m_13519_ (Ljava/util/function/IntConsumer;)V net/minecraft/util/ZeroBitStorage/getAll (Ljava/util/function/IntConsumer;)V +MD: net/minecraft/util/ZeroBitStorage/m_13521_ ()I net/minecraft/util/ZeroBitStorage/getSize ()I +MD: net/minecraft/util/ZeroBitStorage/m_13524_ (II)V net/minecraft/util/ZeroBitStorage/set (II)V +MD: net/minecraft/util/ZeroBitStorage/m_144604_ ()I net/minecraft/util/ZeroBitStorage/getBits ()I +MD: net/minecraft/util/ZeroBitStorage/m_197970_ ([I)V net/minecraft/util/ZeroBitStorage/unpack ([I)V +MD: net/minecraft/util/ZeroBitStorage/m_199833_ ()Lnet/minecraft/util/BitStorage; net/minecraft/util/ZeroBitStorage/copy ()Lnet/minecraft/util/BitStorage; +MD: net/minecraft/util/datafix/DataFixTypes/ ()V net/minecraft/util/datafix/DataFixTypes/ ()V +MD: net/minecraft/util/datafix/DataFixTypes/ (Ljava/lang/String;ILcom/mojang/datafixers/DSL$TypeReference;)V net/minecraft/util/datafix/DataFixTypes/ (Ljava/lang/String;ILcom/mojang/datafixers/DSL$TypeReference;)V +MD: net/minecraft/util/datafix/DataFixTypes/m_145042_ ()[Lnet/minecraft/util/datafix/DataFixTypes; net/minecraft/util/datafix/DataFixTypes/$values ()[Lnet/minecraft/util/datafix/DataFixTypes; +MD: net/minecraft/util/datafix/DataFixTypes/m_264080_ (Lcom/mojang/datafixers/DataFixer;Lcom/mojang/serialization/Dynamic;II)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/DataFixTypes/update (Lcom/mojang/datafixers/DataFixer;Lcom/mojang/serialization/Dynamic;II)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/DataFixTypes/m_264140_ (Lcom/mojang/datafixers/DataFixer;Lcom/mojang/serialization/Dynamic;I)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/DataFixTypes/updateToCurrentVersion (Lcom/mojang/datafixers/DataFixer;Lcom/mojang/serialization/Dynamic;I)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/DataFixTypes/m_264218_ (Lcom/mojang/datafixers/DataFixer;Lnet/minecraft/nbt/CompoundTag;I)Lnet/minecraft/nbt/CompoundTag; net/minecraft/util/datafix/DataFixTypes/updateToCurrentVersion (Lcom/mojang/datafixers/DataFixer;Lnet/minecraft/nbt/CompoundTag;I)Lnet/minecraft/nbt/CompoundTag; +MD: net/minecraft/util/datafix/DataFixTypes/m_264226_ (Lcom/mojang/datafixers/DataFixer;Lnet/minecraft/nbt/CompoundTag;II)Lnet/minecraft/nbt/CompoundTag; net/minecraft/util/datafix/DataFixTypes/update (Lcom/mojang/datafixers/DataFixer;Lnet/minecraft/nbt/CompoundTag;II)Lnet/minecraft/nbt/CompoundTag; +MD: net/minecraft/util/datafix/DataFixTypes/m_264580_ ()I net/minecraft/util/datafix/DataFixTypes/currentVersion ()I +MD: net/minecraft/util/datafix/DataFixTypes/valueOf (Ljava/lang/String;)Lnet/minecraft/util/datafix/DataFixTypes; net/minecraft/util/datafix/DataFixTypes/valueOf (Ljava/lang/String;)Lnet/minecraft/util/datafix/DataFixTypes; +MD: net/minecraft/util/datafix/DataFixTypes/values ()[Lnet/minecraft/util/datafix/DataFixTypes; net/minecraft/util/datafix/DataFixTypes/values ()[Lnet/minecraft/util/datafix/DataFixTypes; +MD: net/minecraft/util/datafix/DataFixers/ ()V net/minecraft/util/datafix/DataFixers/ ()V +MD: net/minecraft/util/datafix/DataFixers/ ()V net/minecraft/util/datafix/DataFixers/ ()V +MD: net/minecraft/util/datafix/DataFixers/m_14512_ ()Lcom/mojang/datafixers/DataFixer; net/minecraft/util/datafix/DataFixers/getDataFixer ()Lcom/mojang/datafixers/DataFixer; +MD: net/minecraft/util/datafix/DataFixers/m_14513_ (Lcom/mojang/datafixers/DataFixerBuilder;)V net/minecraft/util/datafix/DataFixers/addFixers (Lcom/mojang/datafixers/DataFixerBuilder;)V +MD: net/minecraft/util/datafix/DataFixers/m_14515_ (Ljava/lang/String;)Ljava/lang/String; net/minecraft/util/datafix/DataFixers/lambda$addFixers$2 (Ljava/lang/String;)Ljava/lang/String; +MD: net/minecraft/util/datafix/DataFixers/m_14517_ (Ljava/lang/String;Ljava/lang/String;)Ljava/util/function/UnaryOperator; net/minecraft/util/datafix/DataFixers/createRenamer (Ljava/lang/String;Ljava/lang/String;)Ljava/util/function/UnaryOperator; +MD: net/minecraft/util/datafix/DataFixers/m_14524_ (Ljava/util/Map;)Ljava/util/function/UnaryOperator; net/minecraft/util/datafix/DataFixers/createRenamer (Ljava/util/Map;)Ljava/util/function/UnaryOperator; +MD: net/minecraft/util/datafix/DataFixers/m_14530_ (Ljava/lang/String;)Ljava/lang/String; net/minecraft/util/datafix/DataFixers/lambda$addFixers$1 (Ljava/lang/String;)Ljava/lang/String; +MD: net/minecraft/util/datafix/DataFixers/m_14532_ (Ljava/lang/String;)Ljava/lang/String; net/minecraft/util/datafix/DataFixers/lambda$addFixers$0 (Ljava/lang/String;)Ljava/lang/String; +MD: net/minecraft/util/datafix/DataFixers/m_216515_ (Lcom/google/common/collect/ImmutableMap;Ljava/lang/String;)Ljava/lang/String; net/minecraft/util/datafix/DataFixers/lambda$addFixers$4 (Lcom/google/common/collect/ImmutableMap;Ljava/lang/String;)Ljava/lang/String; +MD: net/minecraft/util/datafix/DataFixers/m_216518_ (Lit/unimi/dsi/fastutil/ints/Int2ObjectOpenHashMap;)V net/minecraft/util/datafix/DataFixers/lambda$addFixers$5 (Lit/unimi/dsi/fastutil/ints/Int2ObjectOpenHashMap;)V +MD: net/minecraft/util/datafix/DataFixers/m_216520_ (Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;)Ljava/lang/String; net/minecraft/util/datafix/DataFixers/lambda$createRenamer$9 (Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;)Ljava/lang/String; +MD: net/minecraft/util/datafix/DataFixers/m_216524_ (Ljava/util/Map;Ljava/lang/String;)Ljava/lang/String; net/minecraft/util/datafix/DataFixers/lambda$createRenamer$8 (Ljava/util/Map;Ljava/lang/String;)Ljava/lang/String; +MD: net/minecraft/util/datafix/DataFixers/m_216527_ (Lit/unimi/dsi/fastutil/ints/Int2ObjectOpenHashMap;)V net/minecraft/util/datafix/DataFixers/lambda$addFixers$3 (Lit/unimi/dsi/fastutil/ints/Int2ObjectOpenHashMap;)V +MD: net/minecraft/util/datafix/DataFixers/m_216529_ (Ljava/util/Map;Ljava/lang/String;)Ljava/lang/String; net/minecraft/util/datafix/DataFixers/lambda$addFixers$6 (Ljava/util/Map;Ljava/lang/String;)Ljava/lang/String; +MD: net/minecraft/util/datafix/DataFixers/m_274588_ (Ljava/util/Set;)Lcom/mojang/datafixers/DataFixer; net/minecraft/util/datafix/DataFixers/createFixerUpper (Ljava/util/Set;)Lcom/mojang/datafixers/DataFixer; +MD: net/minecraft/util/datafix/DataFixers/m_279902_ (Ljava/lang/String;)Ljava/lang/String; net/minecraft/util/datafix/DataFixers/lambda$addFixers$7 (Ljava/lang/String;)Ljava/lang/String; +MD: net/minecraft/util/datafix/DataFixers$1/ (Lcom/mojang/datafixers/schemas/Schema;ZLjava/lang/String;Lcom/mojang/datafixers/DSL$TypeReference;Ljava/lang/String;)V net/minecraft/util/datafix/DataFixers$1/ (Lcom/mojang/datafixers/schemas/Schema;ZLjava/lang/String;Lcom/mojang/datafixers/DSL$TypeReference;Ljava/lang/String;)V +MD: net/minecraft/util/datafix/DataFixers$1/m_7504_ (Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; net/minecraft/util/datafix/DataFixers$1/fix (Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; +MD: net/minecraft/util/datafix/DataFixers$2/ (Lcom/mojang/datafixers/schemas/Schema;ZLjava/lang/String;Lcom/mojang/datafixers/DSL$TypeReference;Ljava/lang/String;)V net/minecraft/util/datafix/DataFixers$2/ (Lcom/mojang/datafixers/schemas/Schema;ZLjava/lang/String;Lcom/mojang/datafixers/DSL$TypeReference;Ljava/lang/String;)V +MD: net/minecraft/util/datafix/DataFixers$2/m_7504_ (Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; net/minecraft/util/datafix/DataFixers$2/fix (Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; +MD: net/minecraft/util/datafix/PackedBitStorage/ (II)V net/minecraft/util/datafix/PackedBitStorage/ (II)V +MD: net/minecraft/util/datafix/PackedBitStorage/ (II[J)V net/minecraft/util/datafix/PackedBitStorage/ (II[J)V +MD: net/minecraft/util/datafix/PackedBitStorage/m_14561_ ()[J net/minecraft/util/datafix/PackedBitStorage/getRaw ()[J +MD: net/minecraft/util/datafix/PackedBitStorage/m_14562_ (I)I net/minecraft/util/datafix/PackedBitStorage/get (I)I +MD: net/minecraft/util/datafix/PackedBitStorage/m_14564_ (II)V net/minecraft/util/datafix/PackedBitStorage/set (II)V +MD: net/minecraft/util/datafix/PackedBitStorage/m_14567_ ()I net/minecraft/util/datafix/PackedBitStorage/getBits ()I +MD: net/minecraft/util/datafix/fixes/AbstractArrowPickupFix/ (Lcom/mojang/datafixers/schemas/Schema;)V net/minecraft/util/datafix/fixes/AbstractArrowPickupFix/ (Lcom/mojang/datafixers/schemas/Schema;)V +MD: net/minecraft/util/datafix/fixes/AbstractArrowPickupFix/m_145047_ (Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; net/minecraft/util/datafix/fixes/AbstractArrowPickupFix/updateProjectiles (Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; +MD: net/minecraft/util/datafix/fixes/AbstractArrowPickupFix/m_145049_ (Lcom/mojang/datafixers/Typed;Ljava/lang/String;Ljava/util/function/Function;)Lcom/mojang/datafixers/Typed; net/minecraft/util/datafix/fixes/AbstractArrowPickupFix/updateEntity (Lcom/mojang/datafixers/Typed;Ljava/lang/String;Ljava/util/function/Function;)Lcom/mojang/datafixers/Typed; +MD: net/minecraft/util/datafix/fixes/AbstractArrowPickupFix/m_145053_ (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/AbstractArrowPickupFix/updatePickup (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/AbstractArrowPickupFix/m_145055_ (Ljava/util/function/Function;Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; net/minecraft/util/datafix/fixes/AbstractArrowPickupFix/lambda$updateEntity$0 (Ljava/util/function/Function;Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; +MD: net/minecraft/util/datafix/fixes/AbstractArrowPickupFix/makeRule ()Lcom/mojang/datafixers/TypeRewriteRule; net/minecraft/util/datafix/fixes/AbstractArrowPickupFix/makeRule ()Lcom/mojang/datafixers/TypeRewriteRule; +MD: net/minecraft/util/datafix/fixes/AbstractPoiSectionFix/ (Lcom/mojang/datafixers/schemas/Schema;Ljava/lang/String;)V net/minecraft/util/datafix/fixes/AbstractPoiSectionFix/ (Lcom/mojang/datafixers/schemas/Schema;Ljava/lang/String;)V +MD: net/minecraft/util/datafix/fixes/AbstractPoiSectionFix/m_213759_ (Ljava/util/stream/Stream;)Ljava/util/stream/Stream; net/minecraft/util/datafix/fixes/AbstractPoiSectionFix/processRecords (Ljava/util/stream/Stream;)Ljava/util/stream/Stream; +MD: net/minecraft/util/datafix/fixes/AbstractPoiSectionFix/m_216538_ (Lcom/mojang/datafixers/util/Pair;)Lcom/mojang/datafixers/util/Pair; net/minecraft/util/datafix/fixes/AbstractPoiSectionFix/lambda$cap$2 (Lcom/mojang/datafixers/util/Pair;)Lcom/mojang/datafixers/util/Pair; +MD: net/minecraft/util/datafix/fixes/AbstractPoiSectionFix/m_216540_ (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/AbstractPoiSectionFix/cap (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/AbstractPoiSectionFix/m_216542_ (Lcom/mojang/serialization/Dynamic;Ljava/util/stream/Stream;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/AbstractPoiSectionFix/lambda$processSectionRecords$4 (Lcom/mojang/serialization/Dynamic;Ljava/util/stream/Stream;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/AbstractPoiSectionFix/m_216545_ (Lcom/mojang/serialization/DynamicOps;)Ljava/util/function/Function; net/minecraft/util/datafix/fixes/AbstractPoiSectionFix/lambda$makeRule$1 (Lcom/mojang/serialization/DynamicOps;)Ljava/util/function/Function; +MD: net/minecraft/util/datafix/fixes/AbstractPoiSectionFix/m_216548_ (Lcom/mojang/datafixers/util/Pair;)Lcom/mojang/datafixers/util/Pair; net/minecraft/util/datafix/fixes/AbstractPoiSectionFix/lambda$makeRule$0 (Lcom/mojang/datafixers/util/Pair;)Lcom/mojang/datafixers/util/Pair; +MD: net/minecraft/util/datafix/fixes/AbstractPoiSectionFix/m_216550_ (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/AbstractPoiSectionFix/processSection (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/AbstractPoiSectionFix/m_216552_ (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/AbstractPoiSectionFix/processSectionRecords (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/AbstractPoiSectionFix/m_216554_ (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/AbstractPoiSectionFix/lambda$cap$3 (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/AbstractPoiSectionFix/makeRule ()Lcom/mojang/datafixers/TypeRewriteRule; net/minecraft/util/datafix/fixes/AbstractPoiSectionFix/makeRule ()Lcom/mojang/datafixers/TypeRewriteRule; +MD: net/minecraft/util/datafix/fixes/AbstractUUIDFix/ (Lcom/mojang/datafixers/schemas/Schema;Lcom/mojang/datafixers/DSL$TypeReference;)V net/minecraft/util/datafix/fixes/AbstractUUIDFix/ (Lcom/mojang/datafixers/schemas/Schema;Lcom/mojang/datafixers/DSL$TypeReference;)V +MD: net/minecraft/util/datafix/fixes/AbstractUUIDFix/m_14574_ (Lcom/mojang/datafixers/Typed;Ljava/lang/String;Ljava/util/function/Function;)Lcom/mojang/datafixers/Typed; net/minecraft/util/datafix/fixes/AbstractUUIDFix/updateNamedChoice (Lcom/mojang/datafixers/Typed;Ljava/lang/String;Ljava/util/function/Function;)Lcom/mojang/datafixers/Typed; +MD: net/minecraft/util/datafix/fixes/AbstractUUIDFix/m_14578_ (Lcom/mojang/serialization/Dynamic;)Ljava/util/Optional; net/minecraft/util/datafix/fixes/AbstractUUIDFix/createUUIDFromML (Lcom/mojang/serialization/Dynamic;)Ljava/util/Optional; +MD: net/minecraft/util/datafix/fixes/AbstractUUIDFix/m_14580_ (Lcom/mojang/serialization/Dynamic;JJ)Ljava/util/Optional; net/minecraft/util/datafix/fixes/AbstractUUIDFix/createUUIDTag (Lcom/mojang/serialization/Dynamic;JJ)Ljava/util/Optional; +MD: net/minecraft/util/datafix/fixes/AbstractUUIDFix/m_14584_ (Lcom/mojang/serialization/Dynamic;Lcom/mojang/serialization/Dynamic;)Ljava/util/Optional; net/minecraft/util/datafix/fixes/AbstractUUIDFix/lambda$createUUIDFromString$4 (Lcom/mojang/serialization/Dynamic;Lcom/mojang/serialization/Dynamic;)Ljava/util/Optional; +MD: net/minecraft/util/datafix/fixes/AbstractUUIDFix/m_14587_ (Lcom/mojang/serialization/Dynamic;Ljava/lang/String;)Ljava/util/Optional; net/minecraft/util/datafix/fixes/AbstractUUIDFix/createUUIDFromString (Lcom/mojang/serialization/Dynamic;Ljava/lang/String;)Ljava/util/Optional; +MD: net/minecraft/util/datafix/fixes/AbstractUUIDFix/m_14590_ (Lcom/mojang/serialization/Dynamic;Ljava/lang/String;Ljava/lang/String;)Ljava/util/Optional; net/minecraft/util/datafix/fixes/AbstractUUIDFix/replaceUUIDString (Lcom/mojang/serialization/Dynamic;Ljava/lang/String;Ljava/lang/String;)Ljava/util/Optional; +MD: net/minecraft/util/datafix/fixes/AbstractUUIDFix/m_14594_ (Lcom/mojang/serialization/Dynamic;Ljava/lang/String;Ljava/lang/String;Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/AbstractUUIDFix/lambda$replaceUUIDMLTag$2 (Lcom/mojang/serialization/Dynamic;Ljava/lang/String;Ljava/lang/String;Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/AbstractUUIDFix/m_14599_ (Lcom/mojang/serialization/Dynamic;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/AbstractUUIDFix/lambda$replaceUUIDLeastMost$3 (Lcom/mojang/serialization/Dynamic;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/AbstractUUIDFix/m_14605_ (Ljava/util/function/Function;Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; net/minecraft/util/datafix/fixes/AbstractUUIDFix/lambda$updateNamedChoice$0 (Ljava/util/function/Function;Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; +MD: net/minecraft/util/datafix/fixes/AbstractUUIDFix/m_14608_ (Lcom/mojang/serialization/Dynamic;Ljava/lang/String;Ljava/lang/String;)Ljava/util/Optional; net/minecraft/util/datafix/fixes/AbstractUUIDFix/replaceUUIDMLTag (Lcom/mojang/serialization/Dynamic;Ljava/lang/String;Ljava/lang/String;)Ljava/util/Optional; +MD: net/minecraft/util/datafix/fixes/AbstractUUIDFix/m_14612_ (Lcom/mojang/serialization/Dynamic;Ljava/lang/String;Ljava/lang/String;Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/AbstractUUIDFix/lambda$replaceUUIDString$1 (Lcom/mojang/serialization/Dynamic;Ljava/lang/String;Ljava/lang/String;Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/AbstractUUIDFix/m_14617_ (Lcom/mojang/serialization/Dynamic;Ljava/lang/String;Ljava/lang/String;)Ljava/util/Optional; net/minecraft/util/datafix/fixes/AbstractUUIDFix/replaceUUIDLeastMost (Lcom/mojang/serialization/Dynamic;Ljava/lang/String;Ljava/lang/String;)Ljava/util/Optional; +MD: net/minecraft/util/datafix/fixes/AbstractUUIDFix/m_14621_ (Lcom/mojang/serialization/Dynamic;Ljava/lang/String;Ljava/lang/String;)Ljava/util/Optional; net/minecraft/util/datafix/fixes/AbstractUUIDFix/createUUIDFromLongs (Lcom/mojang/serialization/Dynamic;Ljava/lang/String;Ljava/lang/String;)Ljava/util/Optional; +MD: net/minecraft/util/datafix/fixes/AddFlagIfNotPresentFix/ (Lcom/mojang/datafixers/schemas/Schema;Lcom/mojang/datafixers/DSL$TypeReference;Ljava/lang/String;Z)V net/minecraft/util/datafix/fixes/AddFlagIfNotPresentFix/ (Lcom/mojang/datafixers/schemas/Schema;Lcom/mojang/datafixers/DSL$TypeReference;Ljava/lang/String;Z)V +MD: net/minecraft/util/datafix/fixes/AddFlagIfNotPresentFix/m_184814_ (Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; net/minecraft/util/datafix/fixes/AddFlagIfNotPresentFix/lambda$makeRule$2 (Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; +MD: net/minecraft/util/datafix/fixes/AddFlagIfNotPresentFix/m_184816_ (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/AddFlagIfNotPresentFix/lambda$makeRule$1 (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/AddFlagIfNotPresentFix/m_184818_ (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/AddFlagIfNotPresentFix/lambda$makeRule$0 (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/AddFlagIfNotPresentFix/makeRule ()Lcom/mojang/datafixers/TypeRewriteRule; net/minecraft/util/datafix/fixes/AddFlagIfNotPresentFix/makeRule ()Lcom/mojang/datafixers/TypeRewriteRule; +MD: net/minecraft/util/datafix/fixes/AddNewChoices/ (Lcom/mojang/datafixers/schemas/Schema;Ljava/lang/String;Lcom/mojang/datafixers/DSL$TypeReference;)V net/minecraft/util/datafix/fixes/AddNewChoices/ (Lcom/mojang/datafixers/schemas/Schema;Ljava/lang/String;Lcom/mojang/datafixers/DSL$TypeReference;)V +MD: net/minecraft/util/datafix/fixes/AddNewChoices/m_14634_ (Lcom/mojang/datafixers/types/templates/TaggedChoice$TaggedChoiceType;Lcom/mojang/serialization/DynamicOps;)Ljava/util/function/Function; net/minecraft/util/datafix/fixes/AddNewChoices/lambda$cap$1 (Lcom/mojang/datafixers/types/templates/TaggedChoice$TaggedChoiceType;Lcom/mojang/serialization/DynamicOps;)Ljava/util/function/Function; +MD: net/minecraft/util/datafix/fixes/AddNewChoices/m_14637_ (Ljava/lang/String;Lcom/mojang/datafixers/types/templates/TaggedChoice$TaggedChoiceType;Lcom/mojang/datafixers/types/templates/TaggedChoice$TaggedChoiceType;)Lcom/mojang/datafixers/TypeRewriteRule; net/minecraft/util/datafix/fixes/AddNewChoices/cap (Ljava/lang/String;Lcom/mojang/datafixers/types/templates/TaggedChoice$TaggedChoiceType;Lcom/mojang/datafixers/types/templates/TaggedChoice$TaggedChoiceType;)Lcom/mojang/datafixers/TypeRewriteRule; +MD: net/minecraft/util/datafix/fixes/AddNewChoices/m_241757_ (Lcom/mojang/datafixers/types/templates/TaggedChoice$TaggedChoiceType;Lcom/mojang/datafixers/util/Pair;)Lcom/mojang/datafixers/util/Pair; net/minecraft/util/datafix/fixes/AddNewChoices/lambda$cap$0 (Lcom/mojang/datafixers/types/templates/TaggedChoice$TaggedChoiceType;Lcom/mojang/datafixers/util/Pair;)Lcom/mojang/datafixers/util/Pair; +MD: net/minecraft/util/datafix/fixes/AddNewChoices/makeRule ()Lcom/mojang/datafixers/TypeRewriteRule; net/minecraft/util/datafix/fixes/AddNewChoices/makeRule ()Lcom/mojang/datafixers/TypeRewriteRule; +MD: net/minecraft/util/datafix/fixes/AdvancementsFix/ ()V net/minecraft/util/datafix/fixes/AdvancementsFix/ ()V +MD: net/minecraft/util/datafix/fixes/AdvancementsFix/ (Lcom/mojang/datafixers/schemas/Schema;Z)V net/minecraft/util/datafix/fixes/AdvancementsFix/ (Lcom/mojang/datafixers/schemas/Schema;Z)V +MD: net/minecraft/util/datafix/fixes/AdvancementsFix/m_14647_ (Ljava/lang/String;)Ljava/lang/String; net/minecraft/util/datafix/fixes/AdvancementsFix/lambda$new$0 (Ljava/lang/String;)Ljava/lang/String; +MD: net/minecraft/util/datafix/fixes/AdvancementsRenameFix/ (Lcom/mojang/datafixers/schemas/Schema;ZLjava/lang/String;Ljava/util/function/Function;)V net/minecraft/util/datafix/fixes/AdvancementsRenameFix/ (Lcom/mojang/datafixers/schemas/Schema;ZLjava/lang/String;Ljava/util/function/Function;)V +MD: net/minecraft/util/datafix/fixes/AdvancementsRenameFix/m_145062_ (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/AdvancementsRenameFix/lambda$makeRule$2 (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/AdvancementsRenameFix/m_145064_ (Lcom/mojang/serialization/Dynamic;Lcom/mojang/datafixers/util/Pair;)Lcom/mojang/datafixers/util/Pair; net/minecraft/util/datafix/fixes/AdvancementsRenameFix/lambda$makeRule$1 (Lcom/mojang/serialization/Dynamic;Lcom/mojang/datafixers/util/Pair;)Lcom/mojang/datafixers/util/Pair; +MD: net/minecraft/util/datafix/fixes/AdvancementsRenameFix/m_145067_ (Lcom/mojang/serialization/Dynamic;Ljava/lang/String;Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/AdvancementsRenameFix/lambda$makeRule$0 (Lcom/mojang/serialization/Dynamic;Ljava/lang/String;Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/AdvancementsRenameFix/m_14656_ (Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; net/minecraft/util/datafix/fixes/AdvancementsRenameFix/lambda$makeRule$3 (Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; +MD: net/minecraft/util/datafix/fixes/AdvancementsRenameFix/makeRule ()Lcom/mojang/datafixers/TypeRewriteRule; net/minecraft/util/datafix/fixes/AdvancementsRenameFix/makeRule ()Lcom/mojang/datafixers/TypeRewriteRule; +MD: net/minecraft/util/datafix/fixes/AttributesRename/ ()V net/minecraft/util/datafix/fixes/AttributesRename/ ()V +MD: net/minecraft/util/datafix/fixes/AttributesRename/ (Lcom/mojang/datafixers/schemas/Schema;)V net/minecraft/util/datafix/fixes/AttributesRename/ (Lcom/mojang/datafixers/schemas/Schema;)V +MD: net/minecraft/util/datafix/fixes/AttributesRename/m_145071_ (Ljava/util/stream/Stream;)Ljava/util/stream/Stream; net/minecraft/util/datafix/fixes/AttributesRename/lambda$fixEntity$7 (Ljava/util/stream/Stream;)Ljava/util/stream/Stream; +MD: net/minecraft/util/datafix/fixes/AttributesRename/m_145073_ (Ljava/util/stream/Stream;)Ljava/util/stream/Stream; net/minecraft/util/datafix/fixes/AttributesRename/lambda$fixItemStackTag$3 (Ljava/util/stream/Stream;)Ljava/util/stream/Stream; +MD: net/minecraft/util/datafix/fixes/AttributesRename/m_145075_ (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/AttributesRename/lambda$fixEntity$8 (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/AttributesRename/m_145077_ (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/AttributesRename/lambda$fixEntity$6 (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/AttributesRename/m_145079_ (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/AttributesRename/lambda$fixItemStackTag$4 (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/AttributesRename/m_145081_ (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/AttributesRename/lambda$fixItemStackTag$2 (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/AttributesRename/m_14672_ (Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; net/minecraft/util/datafix/fixes/AttributesRename/lambda$makeRule$0 (Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; +MD: net/minecraft/util/datafix/fixes/AttributesRename/m_14675_ (Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; net/minecraft/util/datafix/fixes/AttributesRename/fixItemStackTag (Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; +MD: net/minecraft/util/datafix/fixes/AttributesRename/m_14677_ (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/AttributesRename/fixName (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/AttributesRename/m_14679_ (Ljava/lang/String;)Ljava/lang/String; net/minecraft/util/datafix/fixes/AttributesRename/lambda$fixName$1 (Ljava/lang/String;)Ljava/lang/String; +MD: net/minecraft/util/datafix/fixes/AttributesRename/m_14683_ (Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; net/minecraft/util/datafix/fixes/AttributesRename/fixEntity (Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; +MD: net/minecraft/util/datafix/fixes/AttributesRename/m_14685_ (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/AttributesRename/lambda$fixEntity$9 (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/AttributesRename/m_14693_ (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/AttributesRename/lambda$fixItemStackTag$5 (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/AttributesRename/makeRule ()Lcom/mojang/datafixers/TypeRewriteRule; net/minecraft/util/datafix/fixes/AttributesRename/makeRule ()Lcom/mojang/datafixers/TypeRewriteRule; +MD: net/minecraft/util/datafix/fixes/BedItemColorFix/ (Lcom/mojang/datafixers/schemas/Schema;Z)V net/minecraft/util/datafix/fixes/BedItemColorFix/ (Lcom/mojang/datafixers/schemas/Schema;Z)V +MD: net/minecraft/util/datafix/fixes/BedItemColorFix/m_14722_ (Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; net/minecraft/util/datafix/fixes/BedItemColorFix/lambda$makeRule$0 (Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; +MD: net/minecraft/util/datafix/fixes/BedItemColorFix/makeRule ()Lcom/mojang/datafixers/TypeRewriteRule; net/minecraft/util/datafix/fixes/BedItemColorFix/makeRule ()Lcom/mojang/datafixers/TypeRewriteRule; +MD: net/minecraft/util/datafix/fixes/BiomeFix/ ()V net/minecraft/util/datafix/fixes/BiomeFix/ ()V +MD: net/minecraft/util/datafix/fixes/BiomeFix/ ()V net/minecraft/util/datafix/fixes/BiomeFix/ ()V +MD: net/minecraft/util/datafix/fixes/BitStorageAlignFix/ (Lcom/mojang/datafixers/schemas/Schema;)V net/minecraft/util/datafix/fixes/BitStorageAlignFix/ (Lcom/mojang/datafixers/schemas/Schema;)V +MD: net/minecraft/util/datafix/fixes/BitStorageAlignFix/m_145098_ (ILcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/BitStorageAlignFix/lambda$updateSections$8 (ILcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/BitStorageAlignFix/m_145101_ (Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; net/minecraft/util/datafix/fixes/BitStorageAlignFix/lambda$updateSections$9 (Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; +MD: net/minecraft/util/datafix/fixes/BitStorageAlignFix/m_145104_ (Lcom/mojang/serialization/Dynamic;ILcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/BitStorageAlignFix/lambda$updateSections$7 (Lcom/mojang/serialization/Dynamic;ILcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/BitStorageAlignFix/m_145108_ (Lcom/mojang/serialization/Dynamic;Lcom/mojang/datafixers/util/Pair;)Lcom/mojang/datafixers/util/Pair; net/minecraft/util/datafix/fixes/BitStorageAlignFix/lambda$updateHeightmaps$3 (Lcom/mojang/serialization/Dynamic;Lcom/mojang/datafixers/util/Pair;)Lcom/mojang/datafixers/util/Pair; +MD: net/minecraft/util/datafix/fixes/BitStorageAlignFix/m_145111_ (Lcom/mojang/serialization/Dynamic;Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/BitStorageAlignFix/lambda$updateHeightmaps$4 (Lcom/mojang/serialization/Dynamic;Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/BitStorageAlignFix/m_145114_ (Ljava/util/List;)Ljava/lang/Integer; net/minecraft/util/datafix/fixes/BitStorageAlignFix/lambda$updateSections$6 (Ljava/util/List;)Ljava/lang/Integer; +MD: net/minecraft/util/datafix/fixes/BitStorageAlignFix/m_145116_ (Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; net/minecraft/util/datafix/fixes/BitStorageAlignFix/lambda$makeRule$0 (Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; +MD: net/minecraft/util/datafix/fixes/BitStorageAlignFix/m_145121_ (Lcom/mojang/serialization/Dynamic;Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/BitStorageAlignFix/lambda$updateHeightmaps$2 (Lcom/mojang/serialization/Dynamic;Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/BitStorageAlignFix/m_14737_ (II[J)[J net/minecraft/util/datafix/fixes/BitStorageAlignFix/addPadding (II[J)[J +MD: net/minecraft/util/datafix/fixes/BitStorageAlignFix/m_14744_ (Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; net/minecraft/util/datafix/fixes/BitStorageAlignFix/lambda$makeRule$1 (Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; +MD: net/minecraft/util/datafix/fixes/BitStorageAlignFix/m_14750_ (Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; net/minecraft/util/datafix/fixes/BitStorageAlignFix/updateSections (Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; +MD: net/minecraft/util/datafix/fixes/BitStorageAlignFix/m_14755_ (Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; net/minecraft/util/datafix/fixes/BitStorageAlignFix/lambda$updateSections$10 (Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; +MD: net/minecraft/util/datafix/fixes/BitStorageAlignFix/m_14762_ (Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; net/minecraft/util/datafix/fixes/BitStorageAlignFix/updateHeightmaps (Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; +MD: net/minecraft/util/datafix/fixes/BitStorageAlignFix/m_14764_ (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/BitStorageAlignFix/lambda$updateHeightmaps$5 (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/BitStorageAlignFix/m_14776_ (Lcom/mojang/serialization/Dynamic;Lcom/mojang/serialization/Dynamic;II)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/BitStorageAlignFix/updateBitStorage (Lcom/mojang/serialization/Dynamic;Lcom/mojang/serialization/Dynamic;II)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/BitStorageAlignFix/makeRule ()Lcom/mojang/datafixers/TypeRewriteRule; net/minecraft/util/datafix/fixes/BitStorageAlignFix/makeRule ()Lcom/mojang/datafixers/TypeRewriteRule; +MD: net/minecraft/util/datafix/fixes/BlendingDataFix/ ()V net/minecraft/util/datafix/fixes/BlendingDataFix/ ()V +MD: net/minecraft/util/datafix/fixes/BlendingDataFix/ (Lcom/mojang/datafixers/schemas/Schema;)V net/minecraft/util/datafix/fixes/BlendingDataFix/ (Lcom/mojang/datafixers/schemas/Schema;)V +MD: net/minecraft/util/datafix/fixes/BlendingDataFix/m_216562_ (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/BlendingDataFix/lambda$makeRule$0 (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/BlendingDataFix/m_216566_ (Lcom/mojang/serialization/Dynamic;II)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/BlendingDataFix/updateBlendingData (Lcom/mojang/serialization/Dynamic;II)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/BlendingDataFix/m_240249_ (Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; net/minecraft/util/datafix/fixes/BlendingDataFix/lambda$makeRule$1 (Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; +MD: net/minecraft/util/datafix/fixes/BlendingDataFix/m_240278_ (Lcom/mojang/serialization/Dynamic;Lcom/mojang/serialization/OptionalDynamic;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/BlendingDataFix/updateChunkTag (Lcom/mojang/serialization/Dynamic;Lcom/mojang/serialization/OptionalDynamic;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/BlendingDataFix/makeRule ()Lcom/mojang/datafixers/TypeRewriteRule; net/minecraft/util/datafix/fixes/BlendingDataFix/makeRule ()Lcom/mojang/datafixers/TypeRewriteRule; +MD: net/minecraft/util/datafix/fixes/BlendingDataRemoveFromNetherEndFix/ (Lcom/mojang/datafixers/schemas/Schema;)V net/minecraft/util/datafix/fixes/BlendingDataRemoveFromNetherEndFix/ (Lcom/mojang/datafixers/schemas/Schema;)V +MD: net/minecraft/util/datafix/fixes/BlendingDataRemoveFromNetherEndFix/m_240253_ (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/BlendingDataRemoveFromNetherEndFix/lambda$makeRule$0 (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/BlendingDataRemoveFromNetherEndFix/m_240285_ (Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; net/minecraft/util/datafix/fixes/BlendingDataRemoveFromNetherEndFix/lambda$makeRule$1 (Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; +MD: net/minecraft/util/datafix/fixes/BlendingDataRemoveFromNetherEndFix/m_240317_ (Lcom/mojang/serialization/Dynamic;Lcom/mojang/serialization/OptionalDynamic;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/BlendingDataRemoveFromNetherEndFix/updateChunkTag (Lcom/mojang/serialization/Dynamic;Lcom/mojang/serialization/OptionalDynamic;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/BlendingDataRemoveFromNetherEndFix/makeRule ()Lcom/mojang/datafixers/TypeRewriteRule; net/minecraft/util/datafix/fixes/BlendingDataRemoveFromNetherEndFix/makeRule ()Lcom/mojang/datafixers/TypeRewriteRule; +MD: net/minecraft/util/datafix/fixes/BlockEntityBannerColorFix/ (Lcom/mojang/datafixers/schemas/Schema;Z)V net/minecraft/util/datafix/fixes/BlockEntityBannerColorFix/ (Lcom/mojang/datafixers/schemas/Schema;Z)V +MD: net/minecraft/util/datafix/fixes/BlockEntityBannerColorFix/m_145124_ (Ljava/util/stream/Stream;)Ljava/util/stream/Stream; net/minecraft/util/datafix/fixes/BlockEntityBannerColorFix/lambda$fixTag$3 (Ljava/util/stream/Stream;)Ljava/util/stream/Stream; +MD: net/minecraft/util/datafix/fixes/BlockEntityBannerColorFix/m_145126_ (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/BlockEntityBannerColorFix/lambda$fixTag$2 (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/BlockEntityBannerColorFix/m_145128_ (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/BlockEntityBannerColorFix/lambda$fixTag$1 (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/BlockEntityBannerColorFix/m_14797_ (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/BlockEntityBannerColorFix/fixTag (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/BlockEntityBannerColorFix/m_14801_ (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/BlockEntityBannerColorFix/lambda$fixTag$4 (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/BlockEntityBannerColorFix/m_14807_ (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/BlockEntityBannerColorFix/lambda$fixTag$0 (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/BlockEntityBannerColorFix/m_7504_ (Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; net/minecraft/util/datafix/fixes/BlockEntityBannerColorFix/fix (Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; +MD: net/minecraft/util/datafix/fixes/BlockEntityBlockStateFix/ (Lcom/mojang/datafixers/schemas/Schema;Z)V net/minecraft/util/datafix/fixes/BlockEntityBlockStateFix/ (Lcom/mojang/datafixers/schemas/Schema;Z)V +MD: net/minecraft/util/datafix/fixes/BlockEntityBlockStateFix/m_14812_ ()Ljava/lang/IllegalStateException; net/minecraft/util/datafix/fixes/BlockEntityBlockStateFix/lambda$fix$1 ()Ljava/lang/IllegalStateException; +MD: net/minecraft/util/datafix/fixes/BlockEntityBlockStateFix/m_14815_ ()Ljava/lang/IllegalStateException; net/minecraft/util/datafix/fixes/BlockEntityBlockStateFix/lambda$fix$0 ()Ljava/lang/IllegalStateException; +MD: net/minecraft/util/datafix/fixes/BlockEntityBlockStateFix/m_7504_ (Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; net/minecraft/util/datafix/fixes/BlockEntityBlockStateFix/fix (Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; +MD: net/minecraft/util/datafix/fixes/BlockEntityCustomNameToComponentFix/ (Lcom/mojang/datafixers/schemas/Schema;Z)V net/minecraft/util/datafix/fixes/BlockEntityCustomNameToComponentFix/ (Lcom/mojang/datafixers/schemas/Schema;Z)V +MD: net/minecraft/util/datafix/fixes/BlockEntityCustomNameToComponentFix/m_145130_ (Lcom/mojang/datafixers/Typed;Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/BlockEntityCustomNameToComponentFix/lambda$makeRule$0 (Lcom/mojang/datafixers/Typed;Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/BlockEntityCustomNameToComponentFix/m_14819_ (Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; net/minecraft/util/datafix/fixes/BlockEntityCustomNameToComponentFix/lambda$makeRule$1 (Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; +MD: net/minecraft/util/datafix/fixes/BlockEntityCustomNameToComponentFix/makeRule ()Lcom/mojang/datafixers/TypeRewriteRule; net/minecraft/util/datafix/fixes/BlockEntityCustomNameToComponentFix/makeRule ()Lcom/mojang/datafixers/TypeRewriteRule; +MD: net/minecraft/util/datafix/fixes/BlockEntityIdFix/ ()V net/minecraft/util/datafix/fixes/BlockEntityIdFix/ ()V +MD: net/minecraft/util/datafix/fixes/BlockEntityIdFix/ (Lcom/mojang/datafixers/schemas/Schema;Z)V net/minecraft/util/datafix/fixes/BlockEntityIdFix/ (Lcom/mojang/datafixers/schemas/Schema;Z)V +MD: net/minecraft/util/datafix/fixes/BlockEntityIdFix/m_145134_ (Lcom/mojang/datafixers/util/Pair;)Lcom/mojang/datafixers/util/Pair; net/minecraft/util/datafix/fixes/BlockEntityIdFix/lambda$makeRule$2 (Lcom/mojang/datafixers/util/Pair;)Lcom/mojang/datafixers/util/Pair; +MD: net/minecraft/util/datafix/fixes/BlockEntityIdFix/m_145136_ (Ljava/lang/String;)Ljava/lang/String; net/minecraft/util/datafix/fixes/BlockEntityIdFix/lambda$makeRule$1 (Ljava/lang/String;)Ljava/lang/String; +MD: net/minecraft/util/datafix/fixes/BlockEntityIdFix/m_14834_ (Lcom/mojang/serialization/DynamicOps;)Ljava/util/function/Function; net/minecraft/util/datafix/fixes/BlockEntityIdFix/lambda$makeRule$3 (Lcom/mojang/serialization/DynamicOps;)Ljava/util/function/Function; +MD: net/minecraft/util/datafix/fixes/BlockEntityIdFix/m_14838_ (Ljava/util/HashMap;)V net/minecraft/util/datafix/fixes/BlockEntityIdFix/lambda$static$0 (Ljava/util/HashMap;)V +MD: net/minecraft/util/datafix/fixes/BlockEntityIdFix/makeRule ()Lcom/mojang/datafixers/TypeRewriteRule; net/minecraft/util/datafix/fixes/BlockEntityIdFix/makeRule ()Lcom/mojang/datafixers/TypeRewriteRule; +MD: net/minecraft/util/datafix/fixes/BlockEntityJukeboxFix/ (Lcom/mojang/datafixers/schemas/Schema;Z)V net/minecraft/util/datafix/fixes/BlockEntityJukeboxFix/ (Lcom/mojang/datafixers/schemas/Schema;Z)V +MD: net/minecraft/util/datafix/fixes/BlockEntityJukeboxFix/m_14844_ ()Ljava/lang/IllegalStateException; net/minecraft/util/datafix/fixes/BlockEntityJukeboxFix/lambda$fix$0 ()Ljava/lang/IllegalStateException; +MD: net/minecraft/util/datafix/fixes/BlockEntityJukeboxFix/m_7504_ (Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; net/minecraft/util/datafix/fixes/BlockEntityJukeboxFix/fix (Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; +MD: net/minecraft/util/datafix/fixes/BlockEntityKeepPacked/ (Lcom/mojang/datafixers/schemas/Schema;Z)V net/minecraft/util/datafix/fixes/BlockEntityKeepPacked/ (Lcom/mojang/datafixers/schemas/Schema;Z)V +MD: net/minecraft/util/datafix/fixes/BlockEntityKeepPacked/m_14852_ (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/BlockEntityKeepPacked/fixTag (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/BlockEntityKeepPacked/m_7504_ (Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; net/minecraft/util/datafix/fixes/BlockEntityKeepPacked/fix (Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; +MD: net/minecraft/util/datafix/fixes/BlockEntityRenameFix/ (Lcom/mojang/datafixers/schemas/Schema;Ljava/lang/String;Ljava/util/function/UnaryOperator;)V net/minecraft/util/datafix/fixes/BlockEntityRenameFix/ (Lcom/mojang/datafixers/schemas/Schema;Ljava/lang/String;Ljava/util/function/UnaryOperator;)V +MD: net/minecraft/util/datafix/fixes/BlockEntityRenameFix/m_276995_ (Lcom/mojang/datafixers/schemas/Schema;Ljava/lang/String;Ljava/util/function/UnaryOperator;)Lcom/mojang/datafixers/DataFix; net/minecraft/util/datafix/fixes/BlockEntityRenameFix/create (Lcom/mojang/datafixers/schemas/Schema;Ljava/lang/String;Ljava/util/function/UnaryOperator;)Lcom/mojang/datafixers/DataFix; +MD: net/minecraft/util/datafix/fixes/BlockEntityRenameFix/m_277018_ (Lcom/mojang/serialization/DynamicOps;)Ljava/util/function/Function; net/minecraft/util/datafix/fixes/BlockEntityRenameFix/lambda$makeRule$1 (Lcom/mojang/serialization/DynamicOps;)Ljava/util/function/Function; +MD: net/minecraft/util/datafix/fixes/BlockEntityRenameFix/m_277183_ (Lcom/mojang/datafixers/util/Pair;)Lcom/mojang/datafixers/util/Pair; net/minecraft/util/datafix/fixes/BlockEntityRenameFix/lambda$makeRule$0 (Lcom/mojang/datafixers/util/Pair;)Lcom/mojang/datafixers/util/Pair; +MD: net/minecraft/util/datafix/fixes/BlockEntityRenameFix/makeRule ()Lcom/mojang/datafixers/TypeRewriteRule; net/minecraft/util/datafix/fixes/BlockEntityRenameFix/makeRule ()Lcom/mojang/datafixers/TypeRewriteRule; +MD: net/minecraft/util/datafix/fixes/BlockEntityShulkerBoxColorFix/ (Lcom/mojang/datafixers/schemas/Schema;Z)V net/minecraft/util/datafix/fixes/BlockEntityShulkerBoxColorFix/ (Lcom/mojang/datafixers/schemas/Schema;Z)V +MD: net/minecraft/util/datafix/fixes/BlockEntityShulkerBoxColorFix/m_14859_ (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/BlockEntityShulkerBoxColorFix/lambda$fix$0 (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/BlockEntityShulkerBoxColorFix/m_7504_ (Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; net/minecraft/util/datafix/fixes/BlockEntityShulkerBoxColorFix/fix (Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; +MD: net/minecraft/util/datafix/fixes/BlockEntitySignDoubleSidedEditableTextFix/ (Lcom/mojang/datafixers/schemas/Schema;Ljava/lang/String;Ljava/lang/String;)V net/minecraft/util/datafix/fixes/BlockEntitySignDoubleSidedEditableTextFix/ (Lcom/mojang/datafixers/schemas/Schema;Ljava/lang/String;Ljava/lang/String;)V +MD: net/minecraft/util/datafix/fixes/BlockEntitySignDoubleSidedEditableTextFix/m_276764_ (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/BlockEntitySignDoubleSidedEditableTextFix/fixTag (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/BlockEntitySignDoubleSidedEditableTextFix/m_276919_ (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/BlockEntitySignDoubleSidedEditableTextFix/getEmptyTextList (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/BlockEntitySignDoubleSidedEditableTextFix/m_277057_ (Lcom/mojang/serialization/Dynamic;Ljava/lang/String;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/BlockEntitySignDoubleSidedEditableTextFix/getTextList (Lcom/mojang/serialization/Dynamic;Ljava/lang/String;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/BlockEntitySignDoubleSidedEditableTextFix/m_277204_ ()Ljava/lang/String; net/minecraft/util/datafix/fixes/BlockEntitySignDoubleSidedEditableTextFix/getEmptyComponent ()Ljava/lang/String; +MD: net/minecraft/util/datafix/fixes/BlockEntitySignDoubleSidedEditableTextFix/m_7504_ (Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; net/minecraft/util/datafix/fixes/BlockEntitySignDoubleSidedEditableTextFix/fix (Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; +MD: net/minecraft/util/datafix/fixes/BlockEntitySignTextStrictJsonFix/ ()V net/minecraft/util/datafix/fixes/BlockEntitySignTextStrictJsonFix/ ()V +MD: net/minecraft/util/datafix/fixes/BlockEntitySignTextStrictJsonFix/ (Lcom/mojang/datafixers/schemas/Schema;Z)V net/minecraft/util/datafix/fixes/BlockEntitySignTextStrictJsonFix/ (Lcom/mojang/datafixers/schemas/Schema;Z)V +MD: net/minecraft/util/datafix/fixes/BlockEntitySignTextStrictJsonFix/m_14868_ (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/BlockEntitySignTextStrictJsonFix/lambda$fix$0 (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/BlockEntitySignTextStrictJsonFix/m_14870_ (Lcom/mojang/serialization/Dynamic;Ljava/lang/String;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/BlockEntitySignTextStrictJsonFix/updateLine (Lcom/mojang/serialization/Dynamic;Ljava/lang/String;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/BlockEntitySignTextStrictJsonFix/m_7504_ (Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; net/minecraft/util/datafix/fixes/BlockEntitySignTextStrictJsonFix/fix (Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; +MD: net/minecraft/util/datafix/fixes/BlockEntitySignTextStrictJsonFix$1/ ()V net/minecraft/util/datafix/fixes/BlockEntitySignTextStrictJsonFix$1/ ()V +MD: net/minecraft/util/datafix/fixes/BlockEntitySignTextStrictJsonFix$1/deserialize (Lcom/google/gson/JsonElement;Ljava/lang/reflect/Type;Lcom/google/gson/JsonDeserializationContext;)Lnet/minecraft/network/chat/MutableComponent; net/minecraft/util/datafix/fixes/BlockEntitySignTextStrictJsonFix$1/deserialize (Lcom/google/gson/JsonElement;Ljava/lang/reflect/Type;Lcom/google/gson/JsonDeserializationContext;)Lnet/minecraft/network/chat/MutableComponent; +MD: net/minecraft/util/datafix/fixes/BlockEntitySignTextStrictJsonFix$1/deserialize (Lcom/google/gson/JsonElement;Ljava/lang/reflect/Type;Lcom/google/gson/JsonDeserializationContext;)Ljava/lang/Object; net/minecraft/util/datafix/fixes/BlockEntitySignTextStrictJsonFix$1/deserialize (Lcom/google/gson/JsonElement;Ljava/lang/reflect/Type;Lcom/google/gson/JsonDeserializationContext;)Ljava/lang/Object; +MD: net/minecraft/util/datafix/fixes/BlockEntityUUIDFix/ (Lcom/mojang/datafixers/schemas/Schema;)V net/minecraft/util/datafix/fixes/BlockEntityUUIDFix/ (Lcom/mojang/datafixers/schemas/Schema;)V +MD: net/minecraft/util/datafix/fixes/BlockEntityUUIDFix/m_14884_ (Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; net/minecraft/util/datafix/fixes/BlockEntityUUIDFix/lambda$makeRule$0 (Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; +MD: net/minecraft/util/datafix/fixes/BlockEntityUUIDFix/m_14886_ (Lcom/mojang/serialization/Dynamic;Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/BlockEntityUUIDFix/lambda$updateSkull$2 (Lcom/mojang/serialization/Dynamic;Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/BlockEntityUUIDFix/m_14889_ (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/BlockEntityUUIDFix/updateSkull (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/BlockEntityUUIDFix/m_14891_ (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/BlockEntityUUIDFix/updateConduit (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/BlockEntityUUIDFix/m_14893_ (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/BlockEntityUUIDFix/lambda$updateSkull$1 (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/BlockEntityUUIDFix/makeRule ()Lcom/mojang/datafixers/TypeRewriteRule; net/minecraft/util/datafix/fixes/BlockEntityUUIDFix/makeRule ()Lcom/mojang/datafixers/TypeRewriteRule; +MD: net/minecraft/util/datafix/fixes/BlockNameFlatteningFix/ (Lcom/mojang/datafixers/schemas/Schema;Z)V net/minecraft/util/datafix/fixes/BlockNameFlatteningFix/ (Lcom/mojang/datafixers/schemas/Schema;Z)V +MD: net/minecraft/util/datafix/fixes/BlockNameFlatteningFix/m_145138_ (Lcom/mojang/datafixers/util/Either;)Ljava/lang/String; net/minecraft/util/datafix/fixes/BlockNameFlatteningFix/lambda$makeRule$1 (Lcom/mojang/datafixers/util/Either;)Ljava/lang/String; +MD: net/minecraft/util/datafix/fixes/BlockNameFlatteningFix/m_145140_ (Lcom/mojang/datafixers/util/Pair;)Lcom/mojang/datafixers/util/Pair; net/minecraft/util/datafix/fixes/BlockNameFlatteningFix/lambda$makeRule$2 (Lcom/mojang/datafixers/util/Pair;)Lcom/mojang/datafixers/util/Pair; +MD: net/minecraft/util/datafix/fixes/BlockNameFlatteningFix/m_145142_ (Ljava/lang/String;)Ljava/lang/String; net/minecraft/util/datafix/fixes/BlockNameFlatteningFix/lambda$makeRule$0 (Ljava/lang/String;)Ljava/lang/String; +MD: net/minecraft/util/datafix/fixes/BlockNameFlatteningFix/m_14903_ (Lcom/mojang/serialization/DynamicOps;)Ljava/util/function/Function; net/minecraft/util/datafix/fixes/BlockNameFlatteningFix/lambda$makeRule$3 (Lcom/mojang/serialization/DynamicOps;)Ljava/util/function/Function; +MD: net/minecraft/util/datafix/fixes/BlockNameFlatteningFix/makeRule ()Lcom/mojang/datafixers/TypeRewriteRule; net/minecraft/util/datafix/fixes/BlockNameFlatteningFix/makeRule ()Lcom/mojang/datafixers/TypeRewriteRule; +MD: net/minecraft/util/datafix/fixes/BlockRenameFix/ (Lcom/mojang/datafixers/schemas/Schema;Ljava/lang/String;)V net/minecraft/util/datafix/fixes/BlockRenameFix/ (Lcom/mojang/datafixers/schemas/Schema;Ljava/lang/String;)V +MD: net/minecraft/util/datafix/fixes/BlockRenameFix/m_145144_ (Lcom/mojang/datafixers/util/Pair;)Lcom/mojang/datafixers/util/Pair; net/minecraft/util/datafix/fixes/BlockRenameFix/lambda$makeRule$0 (Lcom/mojang/datafixers/util/Pair;)Lcom/mojang/datafixers/util/Pair; +MD: net/minecraft/util/datafix/fixes/BlockRenameFix/m_145146_ (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/BlockRenameFix/lambda$makeRule$2 (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/BlockRenameFix/m_14912_ (Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; net/minecraft/util/datafix/fixes/BlockRenameFix/lambda$makeRule$3 (Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; +MD: net/minecraft/util/datafix/fixes/BlockRenameFix/m_14914_ (Lcom/mojang/datafixers/schemas/Schema;Ljava/lang/String;Ljava/util/function/Function;)Lcom/mojang/datafixers/DataFix; net/minecraft/util/datafix/fixes/BlockRenameFix/create (Lcom/mojang/datafixers/schemas/Schema;Ljava/lang/String;Ljava/util/function/Function;)Lcom/mojang/datafixers/DataFix; +MD: net/minecraft/util/datafix/fixes/BlockRenameFix/m_14922_ (Lcom/mojang/serialization/DynamicOps;)Ljava/util/function/Function; net/minecraft/util/datafix/fixes/BlockRenameFix/lambda$makeRule$1 (Lcom/mojang/serialization/DynamicOps;)Ljava/util/function/Function; +MD: net/minecraft/util/datafix/fixes/BlockRenameFix/m_7384_ (Ljava/lang/String;)Ljava/lang/String; net/minecraft/util/datafix/fixes/BlockRenameFix/fixBlock (Ljava/lang/String;)Ljava/lang/String; +MD: net/minecraft/util/datafix/fixes/BlockRenameFix/makeRule ()Lcom/mojang/datafixers/TypeRewriteRule; net/minecraft/util/datafix/fixes/BlockRenameFix/makeRule ()Lcom/mojang/datafixers/TypeRewriteRule; +MD: net/minecraft/util/datafix/fixes/BlockRenameFix$1/ (Lcom/mojang/datafixers/schemas/Schema;Ljava/lang/String;Ljava/util/function/Function;)V net/minecraft/util/datafix/fixes/BlockRenameFix$1/ (Lcom/mojang/datafixers/schemas/Schema;Ljava/lang/String;Ljava/util/function/Function;)V +MD: net/minecraft/util/datafix/fixes/BlockRenameFix$1/m_7384_ (Ljava/lang/String;)Ljava/lang/String; net/minecraft/util/datafix/fixes/BlockRenameFix$1/fixBlock (Ljava/lang/String;)Ljava/lang/String; +MD: net/minecraft/util/datafix/fixes/BlockRenameFixWithJigsaw/ (Lcom/mojang/datafixers/schemas/Schema;Ljava/lang/String;)V net/minecraft/util/datafix/fixes/BlockRenameFixWithJigsaw/ (Lcom/mojang/datafixers/schemas/Schema;Ljava/lang/String;)V +MD: net/minecraft/util/datafix/fixes/BlockRenameFixWithJigsaw/m_145152_ (Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/DSL$TypeReference;Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; net/minecraft/util/datafix/fixes/BlockRenameFixWithJigsaw/lambda$makeRule$4 (Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/DSL$TypeReference;Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; +MD: net/minecraft/util/datafix/fixes/BlockRenameFixWithJigsaw/m_145156_ (Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; net/minecraft/util/datafix/fixes/BlockRenameFixWithJigsaw/lambda$makeRule$3 (Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; +MD: net/minecraft/util/datafix/fixes/BlockRenameFixWithJigsaw/m_145158_ (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/BlockRenameFixWithJigsaw/lambda$makeRule$2 (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/BlockRenameFixWithJigsaw/m_145160_ (Lcom/mojang/serialization/Dynamic;Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/BlockRenameFixWithJigsaw/lambda$makeRule$1 (Lcom/mojang/serialization/Dynamic;Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/BlockRenameFixWithJigsaw/m_145163_ (Lcom/mojang/datafixers/schemas/Schema;Ljava/lang/String;Ljava/util/function/Function;)Lcom/mojang/datafixers/DataFix; net/minecraft/util/datafix/fixes/BlockRenameFixWithJigsaw/create (Lcom/mojang/datafixers/schemas/Schema;Ljava/lang/String;Ljava/util/function/Function;)Lcom/mojang/datafixers/DataFix; +MD: net/minecraft/util/datafix/fixes/BlockRenameFixWithJigsaw/m_145167_ (Ljava/lang/String;)Ljava/lang/String; net/minecraft/util/datafix/fixes/BlockRenameFixWithJigsaw/lambda$makeRule$0 (Ljava/lang/String;)Ljava/lang/String; +MD: net/minecraft/util/datafix/fixes/BlockRenameFixWithJigsaw/makeRule ()Lcom/mojang/datafixers/TypeRewriteRule; net/minecraft/util/datafix/fixes/BlockRenameFixWithJigsaw/makeRule ()Lcom/mojang/datafixers/TypeRewriteRule; +MD: net/minecraft/util/datafix/fixes/BlockRenameFixWithJigsaw$1/ (Lcom/mojang/datafixers/schemas/Schema;Ljava/lang/String;Ljava/util/function/Function;)V net/minecraft/util/datafix/fixes/BlockRenameFixWithJigsaw$1/ (Lcom/mojang/datafixers/schemas/Schema;Ljava/lang/String;Ljava/util/function/Function;)V +MD: net/minecraft/util/datafix/fixes/BlockRenameFixWithJigsaw$1/m_7384_ (Ljava/lang/String;)Ljava/lang/String; net/minecraft/util/datafix/fixes/BlockRenameFixWithJigsaw$1/fixBlock (Ljava/lang/String;)Ljava/lang/String; +MD: net/minecraft/util/datafix/fixes/BlockStateData/ ()V net/minecraft/util/datafix/fixes/BlockStateData/ ()V +MD: net/minecraft/util/datafix/fixes/BlockStateData/ ()V net/minecraft/util/datafix/fixes/BlockStateData/ ()V +MD: net/minecraft/util/datafix/fixes/BlockStateData/m_145179_ ()V net/minecraft/util/datafix/fixes/BlockStateData/bootstrap0 ()V +MD: net/minecraft/util/datafix/fixes/BlockStateData/m_145180_ ()V net/minecraft/util/datafix/fixes/BlockStateData/bootstrap1 ()V +MD: net/minecraft/util/datafix/fixes/BlockStateData/m_145181_ ()V net/minecraft/util/datafix/fixes/BlockStateData/bootstrap2 ()V +MD: net/minecraft/util/datafix/fixes/BlockStateData/m_145182_ ()V net/minecraft/util/datafix/fixes/BlockStateData/bootstrap3 ()V +MD: net/minecraft/util/datafix/fixes/BlockStateData/m_145183_ ()V net/minecraft/util/datafix/fixes/BlockStateData/bootstrap4 ()V +MD: net/minecraft/util/datafix/fixes/BlockStateData/m_145184_ ()V net/minecraft/util/datafix/fixes/BlockStateData/bootstrap5 ()V +MD: net/minecraft/util/datafix/fixes/BlockStateData/m_145185_ ()V net/minecraft/util/datafix/fixes/BlockStateData/bootstrap6 ()V +MD: net/minecraft/util/datafix/fixes/BlockStateData/m_145186_ ()V net/minecraft/util/datafix/fixes/BlockStateData/bootstrap7 ()V +MD: net/minecraft/util/datafix/fixes/BlockStateData/m_145187_ ()V net/minecraft/util/datafix/fixes/BlockStateData/bootstrap8 ()V +MD: net/minecraft/util/datafix/fixes/BlockStateData/m_145188_ ()V net/minecraft/util/datafix/fixes/BlockStateData/bootstrap9 ()V +MD: net/minecraft/util/datafix/fixes/BlockStateData/m_145189_ ()V net/minecraft/util/datafix/fixes/BlockStateData/bootstrap10 ()V +MD: net/minecraft/util/datafix/fixes/BlockStateData/m_145190_ ()V net/minecraft/util/datafix/fixes/BlockStateData/bootstrap11 ()V +MD: net/minecraft/util/datafix/fixes/BlockStateData/m_145191_ ()V net/minecraft/util/datafix/fixes/BlockStateData/bootstrap12 ()V +MD: net/minecraft/util/datafix/fixes/BlockStateData/m_145192_ ()V net/minecraft/util/datafix/fixes/BlockStateData/bootstrap13 ()V +MD: net/minecraft/util/datafix/fixes/BlockStateData/m_145193_ ()V net/minecraft/util/datafix/fixes/BlockStateData/bootstrap14 ()V +MD: net/minecraft/util/datafix/fixes/BlockStateData/m_145194_ ()V net/minecraft/util/datafix/fixes/BlockStateData/bootstrap15 ()V +MD: net/minecraft/util/datafix/fixes/BlockStateData/m_14939_ ()V net/minecraft/util/datafix/fixes/BlockStateData/finalizeMaps ()V +MD: net/minecraft/util/datafix/fixes/BlockStateData/m_14940_ (I)Ljava/lang/String; net/minecraft/util/datafix/fixes/BlockStateData/upgradeBlock (I)Ljava/lang/String; +MD: net/minecraft/util/datafix/fixes/BlockStateData/m_14942_ (ILjava/lang/String;[Ljava/lang/String;)V net/minecraft/util/datafix/fixes/BlockStateData/register (ILjava/lang/String;[Ljava/lang/String;)V +MD: net/minecraft/util/datafix/fixes/BlockStateData/m_14946_ (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/BlockStateData/upgradeBlockStateTag (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/BlockStateData/m_14948_ (Lit/unimi/dsi/fastutil/objects/Object2IntOpenHashMap;)V net/minecraft/util/datafix/fixes/BlockStateData/lambda$static$1 (Lit/unimi/dsi/fastutil/objects/Object2IntOpenHashMap;)V +MD: net/minecraft/util/datafix/fixes/BlockStateData/m_14950_ (Ljava/lang/String;)Ljava/lang/String; net/minecraft/util/datafix/fixes/BlockStateData/upgradeBlock (Ljava/lang/String;)Ljava/lang/String; +MD: net/minecraft/util/datafix/fixes/BlockStateData/m_14952_ (I)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/BlockStateData/getTag (I)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/BlockStateData/m_14954_ (Lit/unimi/dsi/fastutil/objects/Object2IntOpenHashMap;)V net/minecraft/util/datafix/fixes/BlockStateData/lambda$static$0 (Lit/unimi/dsi/fastutil/objects/Object2IntOpenHashMap;)V +MD: net/minecraft/util/datafix/fixes/BlockStateData/m_14956_ (Ljava/lang/String;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/BlockStateData/parse (Ljava/lang/String;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/BlockStateStructureTemplateFix/ (Lcom/mojang/datafixers/schemas/Schema;Z)V net/minecraft/util/datafix/fixes/BlockStateStructureTemplateFix/ (Lcom/mojang/datafixers/schemas/Schema;Z)V +MD: net/minecraft/util/datafix/fixes/BlockStateStructureTemplateFix/m_15003_ (Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; net/minecraft/util/datafix/fixes/BlockStateStructureTemplateFix/lambda$makeRule$0 (Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; +MD: net/minecraft/util/datafix/fixes/BlockStateStructureTemplateFix/makeRule ()Lcom/mojang/datafixers/TypeRewriteRule; net/minecraft/util/datafix/fixes/BlockStateStructureTemplateFix/makeRule ()Lcom/mojang/datafixers/TypeRewriteRule; +MD: net/minecraft/util/datafix/fixes/CatTypeFix/ (Lcom/mojang/datafixers/schemas/Schema;Z)V net/minecraft/util/datafix/fixes/CatTypeFix/ (Lcom/mojang/datafixers/schemas/Schema;Z)V +MD: net/minecraft/util/datafix/fixes/CatTypeFix/m_15011_ (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/CatTypeFix/fixTag (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/CatTypeFix/m_7504_ (Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; net/minecraft/util/datafix/fixes/CatTypeFix/fix (Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; +MD: net/minecraft/util/datafix/fixes/CauldronRenameFix/ (Lcom/mojang/datafixers/schemas/Schema;Z)V net/minecraft/util/datafix/fixes/CauldronRenameFix/ (Lcom/mojang/datafixers/schemas/Schema;Z)V +MD: net/minecraft/util/datafix/fixes/CauldronRenameFix/m_145198_ (Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; net/minecraft/util/datafix/fixes/CauldronRenameFix/lambda$makeRule$0 (Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; +MD: net/minecraft/util/datafix/fixes/CauldronRenameFix/m_145200_ (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/CauldronRenameFix/fix (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/CauldronRenameFix/makeRule ()Lcom/mojang/datafixers/TypeRewriteRule; net/minecraft/util/datafix/fixes/CauldronRenameFix/makeRule ()Lcom/mojang/datafixers/TypeRewriteRule; +MD: net/minecraft/util/datafix/fixes/CavesAndCliffsRenames/ ()V net/minecraft/util/datafix/fixes/CavesAndCliffsRenames/ ()V +MD: net/minecraft/util/datafix/fixes/CavesAndCliffsRenames/ ()V net/minecraft/util/datafix/fixes/CavesAndCliffsRenames/ ()V +MD: net/minecraft/util/datafix/fixes/ChunkBedBlockEntityInjecterFix/ (Lcom/mojang/datafixers/schemas/Schema;Z)V net/minecraft/util/datafix/fixes/ChunkBedBlockEntityInjecterFix/ (Lcom/mojang/datafixers/schemas/Schema;Z)V +MD: net/minecraft/util/datafix/fixes/ChunkBedBlockEntityInjecterFix/m_184827_ ()Ljava/lang/IllegalStateException; net/minecraft/util/datafix/fixes/ChunkBedBlockEntityInjecterFix/lambda$cap$3 ()Ljava/lang/IllegalStateException; +MD: net/minecraft/util/datafix/fixes/ChunkBedBlockEntityInjecterFix/m_184833_ (Lcom/mojang/datafixers/types/Type;Lcom/mojang/datafixers/types/templates/List$ListType;)Lcom/mojang/datafixers/TypeRewriteRule; net/minecraft/util/datafix/fixes/ChunkBedBlockEntityInjecterFix/cap (Lcom/mojang/datafixers/types/Type;Lcom/mojang/datafixers/types/templates/List$ListType;)Lcom/mojang/datafixers/TypeRewriteRule; +MD: net/minecraft/util/datafix/fixes/ChunkBedBlockEntityInjecterFix/m_184836_ (Lcom/mojang/datafixers/util/Pair;)Lcom/mojang/datafixers/util/Pair; net/minecraft/util/datafix/fixes/ChunkBedBlockEntityInjecterFix/lambda$cap$0 (Lcom/mojang/datafixers/util/Pair;)Lcom/mojang/datafixers/util/Pair; +MD: net/minecraft/util/datafix/fixes/ChunkBedBlockEntityInjecterFix/m_184840_ (Lcom/mojang/serialization/DynamicOps;)Ljava/util/function/Function; net/minecraft/util/datafix/fixes/ChunkBedBlockEntityInjecterFix/lambda$cap$1 (Lcom/mojang/serialization/DynamicOps;)Ljava/util/function/Function; +MD: net/minecraft/util/datafix/fixes/ChunkBedBlockEntityInjecterFix/m_274155_ (Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/types/Type;Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; net/minecraft/util/datafix/fixes/ChunkBedBlockEntityInjecterFix/lambda$cap$5 (Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/types/Type;Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; +MD: net/minecraft/util/datafix/fixes/ChunkBedBlockEntityInjecterFix/m_274156_ (Lcom/mojang/serialization/Dynamic;IIIIJ)Ljava/util/Map; net/minecraft/util/datafix/fixes/ChunkBedBlockEntityInjecterFix/lambda$cap$2 (Lcom/mojang/serialization/Dynamic;IIIIJ)Ljava/util/Map; +MD: net/minecraft/util/datafix/fixes/ChunkBedBlockEntityInjecterFix/m_274157_ (Ljava/util/List;Lcom/mojang/datafixers/types/Type;Lcom/mojang/serialization/Dynamic;Ljava/util/Map;)V net/minecraft/util/datafix/fixes/ChunkBedBlockEntityInjecterFix/lambda$cap$4 (Ljava/util/List;Lcom/mojang/datafixers/types/Type;Lcom/mojang/serialization/Dynamic;Ljava/util/Map;)V +MD: net/minecraft/util/datafix/fixes/ChunkBedBlockEntityInjecterFix/makeRule ()Lcom/mojang/datafixers/TypeRewriteRule; net/minecraft/util/datafix/fixes/ChunkBedBlockEntityInjecterFix/makeRule ()Lcom/mojang/datafixers/TypeRewriteRule; +MD: net/minecraft/util/datafix/fixes/ChunkBiomeFix/ (Lcom/mojang/datafixers/schemas/Schema;Z)V net/minecraft/util/datafix/fixes/ChunkBiomeFix/ (Lcom/mojang/datafixers/schemas/Schema;Z)V +MD: net/minecraft/util/datafix/fixes/ChunkBiomeFix/m_145203_ (Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; net/minecraft/util/datafix/fixes/ChunkBiomeFix/lambda$makeRule$1 (Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; +MD: net/minecraft/util/datafix/fixes/ChunkBiomeFix/m_145205_ (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/ChunkBiomeFix/lambda$makeRule$0 (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/ChunkBiomeFix/m_15016_ (Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; net/minecraft/util/datafix/fixes/ChunkBiomeFix/lambda$makeRule$2 (Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; +MD: net/minecraft/util/datafix/fixes/ChunkBiomeFix/makeRule ()Lcom/mojang/datafixers/TypeRewriteRule; net/minecraft/util/datafix/fixes/ChunkBiomeFix/makeRule ()Lcom/mojang/datafixers/TypeRewriteRule; +MD: net/minecraft/util/datafix/fixes/ChunkDeleteIgnoredLightDataFix/ (Lcom/mojang/datafixers/schemas/Schema;)V net/minecraft/util/datafix/fixes/ChunkDeleteIgnoredLightDataFix/ (Lcom/mojang/datafixers/schemas/Schema;)V +MD: net/minecraft/util/datafix/fixes/ChunkDeleteIgnoredLightDataFix/m_216573_ (Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; net/minecraft/util/datafix/fixes/ChunkDeleteIgnoredLightDataFix/lambda$makeRule$2 (Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; +MD: net/minecraft/util/datafix/fixes/ChunkDeleteIgnoredLightDataFix/m_216576_ (Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; net/minecraft/util/datafix/fixes/ChunkDeleteIgnoredLightDataFix/lambda$makeRule$1 (Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; +MD: net/minecraft/util/datafix/fixes/ChunkDeleteIgnoredLightDataFix/m_216578_ (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/ChunkDeleteIgnoredLightDataFix/lambda$makeRule$0 (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/ChunkDeleteIgnoredLightDataFix/makeRule ()Lcom/mojang/datafixers/TypeRewriteRule; net/minecraft/util/datafix/fixes/ChunkDeleteIgnoredLightDataFix/makeRule ()Lcom/mojang/datafixers/TypeRewriteRule; +MD: net/minecraft/util/datafix/fixes/ChunkDeleteLightFix/ (Lcom/mojang/datafixers/schemas/Schema;)V net/minecraft/util/datafix/fixes/ChunkDeleteLightFix/ (Lcom/mojang/datafixers/schemas/Schema;)V +MD: net/minecraft/util/datafix/fixes/ChunkDeleteLightFix/m_284405_ (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/ChunkDeleteLightFix/lambda$makeRule$0 (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/ChunkDeleteLightFix/m_284407_ (Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; net/minecraft/util/datafix/fixes/ChunkDeleteLightFix/lambda$makeRule$3 (Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; +MD: net/minecraft/util/datafix/fixes/ChunkDeleteLightFix/m_284479_ (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/ChunkDeleteLightFix/lambda$makeRule$1 (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/ChunkDeleteLightFix/m_284526_ (Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; net/minecraft/util/datafix/fixes/ChunkDeleteLightFix/lambda$makeRule$2 (Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; +MD: net/minecraft/util/datafix/fixes/ChunkDeleteLightFix/makeRule ()Lcom/mojang/datafixers/TypeRewriteRule; net/minecraft/util/datafix/fixes/ChunkDeleteLightFix/makeRule ()Lcom/mojang/datafixers/TypeRewriteRule; +MD: net/minecraft/util/datafix/fixes/ChunkHeightAndBiomeFix/ ()V net/minecraft/util/datafix/fixes/ChunkHeightAndBiomeFix/ ()V +MD: net/minecraft/util/datafix/fixes/ChunkHeightAndBiomeFix/ (Lcom/mojang/datafixers/schemas/Schema;)V net/minecraft/util/datafix/fixes/ChunkHeightAndBiomeFix/ (Lcom/mojang/datafixers/schemas/Schema;)V +MD: net/minecraft/util/datafix/fixes/ChunkHeightAndBiomeFix/m_184864_ ()Ljava/lang/IllegalStateException; net/minecraft/util/datafix/fixes/ChunkHeightAndBiomeFix/lambda$makeRule$7 ()Ljava/lang/IllegalStateException; +MD: net/minecraft/util/datafix/fixes/ChunkHeightAndBiomeFix/m_184865_ (I)I net/minecraft/util/datafix/fixes/ChunkHeightAndBiomeFix/ceillog2 (I)I +MD: net/minecraft/util/datafix/fixes/ChunkHeightAndBiomeFix/m_184874_ (Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/types/Type;Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/types/Type;Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; net/minecraft/util/datafix/fixes/ChunkHeightAndBiomeFix/lambda$makeRule$11 (Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/types/Type;Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/types/Type;Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; +MD: net/minecraft/util/datafix/fixes/ChunkHeightAndBiomeFix/m_184880_ (Lcom/mojang/datafixers/Typed;Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/types/Type;Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; net/minecraft/util/datafix/fixes/ChunkHeightAndBiomeFix/lambda$makeRule$10 (Lcom/mojang/datafixers/Typed;Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/types/Type;Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; +MD: net/minecraft/util/datafix/fixes/ChunkHeightAndBiomeFix/m_184885_ (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/ChunkHeightAndBiomeFix/updateHeightmaps (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/ChunkHeightAndBiomeFix/m_184887_ (Lcom/mojang/serialization/Dynamic;II)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/ChunkHeightAndBiomeFix/updateCarvingMasks (Lcom/mojang/serialization/Dynamic;II)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/ChunkHeightAndBiomeFix/m_184891_ (Lcom/mojang/serialization/Dynamic;Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/ChunkHeightAndBiomeFix/makePalettedContainer (Lcom/mojang/serialization/Dynamic;Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/ChunkHeightAndBiomeFix/m_184894_ (Lcom/mojang/serialization/Dynamic;Lit/unimi/dsi/fastutil/ints/Int2IntFunction;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/ChunkHeightAndBiomeFix/makeBiomeContainer (Lcom/mojang/serialization/Dynamic;Lit/unimi/dsi/fastutil/ints/Int2IntFunction;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/ChunkHeightAndBiomeFix/m_184900_ (Lcom/mojang/serialization/Dynamic;Ljava/lang/String;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/ChunkHeightAndBiomeFix/addPaddingEntries (Lcom/mojang/serialization/Dynamic;Ljava/lang/String;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/ChunkHeightAndBiomeFix/m_184903_ (Lcom/mojang/serialization/Dynamic;Ljava/util/Set;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/ChunkHeightAndBiomeFix/predictChunkStatusBeforeSurface (Lcom/mojang/serialization/Dynamic;Ljava/util/Set;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/ChunkHeightAndBiomeFix/m_184906_ (Lcom/mojang/serialization/Dynamic;ZILorg/apache/commons/lang3/mutable/MutableBoolean;)[Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/ChunkHeightAndBiomeFix/getBiomeContainers (Lcom/mojang/serialization/Dynamic;ZILorg/apache/commons/lang3/mutable/MutableBoolean;)[Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/ChunkHeightAndBiomeFix/m_184911_ (Lcom/mojang/serialization/Dynamic;ZZZLjava/util/function/Supplier;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/ChunkHeightAndBiomeFix/updateChunkTag (Lcom/mojang/serialization/Dynamic;ZZZLjava/util/function/Supplier;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/ChunkHeightAndBiomeFix/m_184917_ (Ljava/util/Set;Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/ChunkHeightAndBiomeFix/lambda$predictChunkStatusBeforeSurface$12 (Ljava/util/Set;Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/ChunkHeightAndBiomeFix/m_184920_ (Ljava/util/Set;Lcom/mojang/serialization/Dynamic;I[Lcom/mojang/serialization/Dynamic;Lit/unimi/dsi/fastutil/ints/IntSet;Lorg/apache/commons/lang3/mutable/MutableObject;Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/ChunkHeightAndBiomeFix/lambda$makeRule$6 (Ljava/util/Set;Lcom/mojang/serialization/Dynamic;I[Lcom/mojang/serialization/Dynamic;Lit/unimi/dsi/fastutil/ints/IntSet;Lorg/apache/commons/lang3/mutable/MutableObject;Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/ChunkHeightAndBiomeFix/m_184928_ (Ljava/util/Set;Lcom/mojang/serialization/Dynamic;I[Lcom/mojang/serialization/Dynamic;Lorg/apache/commons/lang3/mutable/MutableObject;Lcom/mojang/serialization/Dynamic;Lcom/mojang/datafixers/types/Type;Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; net/minecraft/util/datafix/fixes/ChunkHeightAndBiomeFix/lambda$makeRule$8 (Ljava/util/Set;Lcom/mojang/serialization/Dynamic;I[Lcom/mojang/serialization/Dynamic;Lorg/apache/commons/lang3/mutable/MutableObject;Lcom/mojang/serialization/Dynamic;Lcom/mojang/datafixers/types/Type;Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; +MD: net/minecraft/util/datafix/fixes/ChunkHeightAndBiomeFix/m_184937_ (Ljava/util/Set;Lcom/mojang/serialization/Dynamic;Lcom/mojang/serialization/Dynamic;)Ljava/util/Optional; net/minecraft/util/datafix/fixes/ChunkHeightAndBiomeFix/lambda$makeRule$4 (Ljava/util/Set;Lcom/mojang/serialization/Dynamic;Lcom/mojang/serialization/Dynamic;)Ljava/util/Optional; +MD: net/minecraft/util/datafix/fixes/ChunkHeightAndBiomeFix/m_184941_ (ZLjava/util/Set;Lorg/apache/commons/lang3/mutable/MutableBoolean;Ljava/lang/String;Lorg/apache/commons/lang3/mutable/MutableObject;Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/ChunkHeightAndBiomeFix/lambda$makeRule$9 (ZLjava/util/Set;Lorg/apache/commons/lang3/mutable/MutableBoolean;Ljava/lang/String;Lorg/apache/commons/lang3/mutable/MutableObject;Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/ChunkHeightAndBiomeFix/m_184948_ ([II)I net/minecraft/util/datafix/fixes/ChunkHeightAndBiomeFix/getOldBiome ([II)I +MD: net/minecraft/util/datafix/fixes/ChunkHeightAndBiomeFix/m_184951_ ([III)I net/minecraft/util/datafix/fixes/ChunkHeightAndBiomeFix/lambda$getBiomeContainers$14 ([III)I +MD: net/minecraft/util/datafix/fixes/ChunkHeightAndBiomeFix/m_184955_ ()Ljava/lang/IllegalStateException; net/minecraft/util/datafix/fixes/ChunkHeightAndBiomeFix/lambda$makeRule$1 ()Ljava/lang/IllegalStateException; +MD: net/minecraft/util/datafix/fixes/ChunkHeightAndBiomeFix/m_184956_ (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/ChunkHeightAndBiomeFix/getFixedHeightmap (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/ChunkHeightAndBiomeFix/m_184958_ (Lcom/mojang/serialization/Dynamic;Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/ChunkHeightAndBiomeFix/makeOptimizedPalettedContainer (Lcom/mojang/serialization/Dynamic;Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/ChunkHeightAndBiomeFix/m_184961_ ([II)I net/minecraft/util/datafix/fixes/ChunkHeightAndBiomeFix/lambda$getBiomeContainers$16 ([II)I +MD: net/minecraft/util/datafix/fixes/ChunkHeightAndBiomeFix/m_184964_ ([III)I net/minecraft/util/datafix/fixes/ChunkHeightAndBiomeFix/lambda$getBiomeContainers$13 ([III)I +MD: net/minecraft/util/datafix/fixes/ChunkHeightAndBiomeFix/m_184968_ ()Lnet/minecraft/util/datafix/fixes/ChunkProtoTickListFix$PoorMansPalettedContainer; net/minecraft/util/datafix/fixes/ChunkHeightAndBiomeFix/lambda$makeRule$0 ()Lnet/minecraft/util/datafix/fixes/ChunkProtoTickListFix$PoorMansPalettedContainer; +MD: net/minecraft/util/datafix/fixes/ChunkHeightAndBiomeFix/m_184969_ (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/ChunkHeightAndBiomeFix/makePalettedContainer (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/ChunkHeightAndBiomeFix/m_184971_ (Lcom/mojang/serialization/Dynamic;Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/ChunkHeightAndBiomeFix/lambda$makeRule$3 (Lcom/mojang/serialization/Dynamic;Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/ChunkHeightAndBiomeFix/m_184974_ ([II)I net/minecraft/util/datafix/fixes/ChunkHeightAndBiomeFix/lambda$getBiomeContainers$15 ([II)I +MD: net/minecraft/util/datafix/fixes/ChunkHeightAndBiomeFix/m_184979_ (Lcom/mojang/serialization/Dynamic;)Lnet/minecraft/util/datafix/fixes/ChunkProtoTickListFix$PoorMansPalettedContainer; net/minecraft/util/datafix/fixes/ChunkHeightAndBiomeFix/lambda$makeRule$5 (Lcom/mojang/serialization/Dynamic;)Lnet/minecraft/util/datafix/fixes/ChunkProtoTickListFix$PoorMansPalettedContainer; +MD: net/minecraft/util/datafix/fixes/ChunkHeightAndBiomeFix/m_184981_ (Lcom/mojang/serialization/Dynamic;)Ljava/lang/String; net/minecraft/util/datafix/fixes/ChunkHeightAndBiomeFix/lambda$makeRule$2 (Lcom/mojang/serialization/Dynamic;)Ljava/lang/String; +MD: net/minecraft/util/datafix/fixes/ChunkHeightAndBiomeFix/m_196583_ (IILcom/mojang/serialization/Dynamic;Lcom/mojang/datafixers/util/Pair;)Lcom/mojang/datafixers/util/Pair; net/minecraft/util/datafix/fixes/ChunkHeightAndBiomeFix/lambda$updateCarvingMasks$21 (IILcom/mojang/serialization/Dynamic;Lcom/mojang/datafixers/util/Pair;)Lcom/mojang/datafixers/util/Pair; +MD: net/minecraft/util/datafix/fixes/ChunkHeightAndBiomeFix/m_196588_ (J)J net/minecraft/util/datafix/fixes/ChunkHeightAndBiomeFix/lambda$getFixedHeightmap$23 (J)J +MD: net/minecraft/util/datafix/fixes/ChunkHeightAndBiomeFix/m_196590_ (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/ChunkHeightAndBiomeFix/shiftUpgradeData (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/ChunkHeightAndBiomeFix/m_196592_ (Lcom/mojang/serialization/Dynamic;Lcom/mojang/serialization/Dynamic;Ljava/util/List;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/ChunkHeightAndBiomeFix/padPaletteEntries (Lcom/mojang/serialization/Dynamic;Lcom/mojang/serialization/Dynamic;Ljava/util/List;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/ChunkHeightAndBiomeFix/m_196596_ (Lcom/mojang/serialization/Dynamic;Ljava/lang/Integer;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/ChunkHeightAndBiomeFix/lambda$makeBiomeContainer$24 (Lcom/mojang/serialization/Dynamic;Ljava/lang/Integer;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/ChunkHeightAndBiomeFix/m_196599_ (Ljava/util/Map;Lcom/mojang/serialization/Dynamic;Lcom/mojang/serialization/Dynamic;)V net/minecraft/util/datafix/fixes/ChunkHeightAndBiomeFix/lambda$shiftUpgradeData$18 (Ljava/util/Map;Lcom/mojang/serialization/Dynamic;Lcom/mojang/serialization/Dynamic;)V +MD: net/minecraft/util/datafix/fixes/ChunkHeightAndBiomeFix/m_196603_ (Ljava/util/Map;Lcom/mojang/serialization/Dynamic;Lcom/mojang/serialization/Dynamic;Ljava/lang/Integer;)V net/minecraft/util/datafix/fixes/ChunkHeightAndBiomeFix/lambda$shiftUpgradeData$17 (Ljava/util/Map;Lcom/mojang/serialization/Dynamic;Lcom/mojang/serialization/Dynamic;Ljava/lang/Integer;)V +MD: net/minecraft/util/datafix/fixes/ChunkHeightAndBiomeFix/m_196608_ (Ljava/util/Map;Ljava/util/Map;)V net/minecraft/util/datafix/fixes/ChunkHeightAndBiomeFix/lambda$shiftUpgradeData$19 (Ljava/util/Map;Ljava/util/Map;)V +MD: net/minecraft/util/datafix/fixes/ChunkHeightAndBiomeFix/m_196611_ (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/ChunkHeightAndBiomeFix/lambda$updateHeightmaps$22 (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/ChunkHeightAndBiomeFix/m_196613_ (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/ChunkHeightAndBiomeFix/lambda$shiftUpgradeData$20 (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/ChunkHeightAndBiomeFix/makeRule ()Lcom/mojang/datafixers/TypeRewriteRule; net/minecraft/util/datafix/fixes/ChunkHeightAndBiomeFix/makeRule ()Lcom/mojang/datafixers/TypeRewriteRule; +MD: net/minecraft/util/datafix/fixes/ChunkLightRemoveFix/ (Lcom/mojang/datafixers/schemas/Schema;Z)V net/minecraft/util/datafix/fixes/ChunkLightRemoveFix/ (Lcom/mojang/datafixers/schemas/Schema;Z)V +MD: net/minecraft/util/datafix/fixes/ChunkLightRemoveFix/m_145207_ (Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; net/minecraft/util/datafix/fixes/ChunkLightRemoveFix/lambda$makeRule$1 (Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; +MD: net/minecraft/util/datafix/fixes/ChunkLightRemoveFix/m_145209_ (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/ChunkLightRemoveFix/lambda$makeRule$0 (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/ChunkLightRemoveFix/m_15027_ (Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; net/minecraft/util/datafix/fixes/ChunkLightRemoveFix/lambda$makeRule$2 (Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; +MD: net/minecraft/util/datafix/fixes/ChunkLightRemoveFix/makeRule ()Lcom/mojang/datafixers/TypeRewriteRule; net/minecraft/util/datafix/fixes/ChunkLightRemoveFix/makeRule ()Lcom/mojang/datafixers/TypeRewriteRule; +MD: net/minecraft/util/datafix/fixes/ChunkPalettedStorageFix/ ()V net/minecraft/util/datafix/fixes/ChunkPalettedStorageFix/ ()V +MD: net/minecraft/util/datafix/fixes/ChunkPalettedStorageFix/ (Lcom/mojang/datafixers/schemas/Schema;Z)V net/minecraft/util/datafix/fixes/ChunkPalettedStorageFix/ (Lcom/mojang/datafixers/schemas/Schema;Z)V +MD: net/minecraft/util/datafix/fixes/ChunkPalettedStorageFix/m_15061_ (Lnet/minecraft/util/CrudeIncrementalIntIdentityHashBiMap;Lcom/mojang/serialization/Dynamic;)I net/minecraft/util/datafix/fixes/ChunkPalettedStorageFix/idFor (Lnet/minecraft/util/CrudeIncrementalIntIdentityHashBiMap;Lcom/mojang/serialization/Dynamic;)I +MD: net/minecraft/util/datafix/fixes/ChunkPalettedStorageFix/m_15064_ (Lcom/mojang/serialization/Dynamic;)Ljava/lang/String; net/minecraft/util/datafix/fixes/ChunkPalettedStorageFix/getName (Lcom/mojang/serialization/Dynamic;)Ljava/lang/String; +MD: net/minecraft/util/datafix/fixes/ChunkPalettedStorageFix/m_15066_ (Lcom/mojang/serialization/Dynamic;Ljava/lang/String;)Ljava/lang/String; net/minecraft/util/datafix/fixes/ChunkPalettedStorageFix/getProperty (Lcom/mojang/serialization/Dynamic;Ljava/lang/String;)Ljava/lang/String; +MD: net/minecraft/util/datafix/fixes/ChunkPalettedStorageFix/m_15069_ (Lit/unimi/dsi/fastutil/ints/Int2ObjectOpenHashMap;)V net/minecraft/util/datafix/fixes/ChunkPalettedStorageFix/lambda$static$4 (Lit/unimi/dsi/fastutil/ints/Int2ObjectOpenHashMap;)V +MD: net/minecraft/util/datafix/fixes/ChunkPalettedStorageFix/m_15071_ (Ljava/util/HashMap;)V net/minecraft/util/datafix/fixes/ChunkPalettedStorageFix/lambda$static$6 (Ljava/util/HashMap;)V +MD: net/minecraft/util/datafix/fixes/ChunkPalettedStorageFix/m_15073_ (Ljava/util/Map;ILjava/lang/String;)V net/minecraft/util/datafix/fixes/ChunkPalettedStorageFix/addBeds (Ljava/util/Map;ILjava/lang/String;)V +MD: net/minecraft/util/datafix/fixes/ChunkPalettedStorageFix/m_15077_ (Ljava/util/Map;ILjava/lang/String;Ljava/lang/String;)V net/minecraft/util/datafix/fixes/ChunkPalettedStorageFix/mapSkull (Ljava/util/Map;ILjava/lang/String;Ljava/lang/String;)V +MD: net/minecraft/util/datafix/fixes/ChunkPalettedStorageFix/m_15082_ (Ljava/util/Map;Ljava/lang/String;I)V net/minecraft/util/datafix/fixes/ChunkPalettedStorageFix/mapDoor (Ljava/util/Map;Ljava/lang/String;I)V +MD: net/minecraft/util/datafix/fixes/ChunkPalettedStorageFix/m_15086_ (ZZZZ)I net/minecraft/util/datafix/fixes/ChunkPalettedStorageFix/getSideMask (ZZZZ)I +MD: net/minecraft/util/datafix/fixes/ChunkPalettedStorageFix/m_15092_ (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/ChunkPalettedStorageFix/fix (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/ChunkPalettedStorageFix/m_15094_ (Ljava/util/HashMap;)V net/minecraft/util/datafix/fixes/ChunkPalettedStorageFix/lambda$static$5 (Ljava/util/HashMap;)V +MD: net/minecraft/util/datafix/fixes/ChunkPalettedStorageFix/m_15096_ (Ljava/util/Map;ILjava/lang/String;)V net/minecraft/util/datafix/fixes/ChunkPalettedStorageFix/addBanners (Ljava/util/Map;ILjava/lang/String;)V +MD: net/minecraft/util/datafix/fixes/ChunkPalettedStorageFix/m_15101_ (Ljava/util/HashMap;)V net/minecraft/util/datafix/fixes/ChunkPalettedStorageFix/lambda$static$3 (Ljava/util/HashMap;)V +MD: net/minecraft/util/datafix/fixes/ChunkPalettedStorageFix/m_15104_ (Ljava/util/HashMap;)V net/minecraft/util/datafix/fixes/ChunkPalettedStorageFix/lambda$static$2 (Ljava/util/HashMap;)V +MD: net/minecraft/util/datafix/fixes/ChunkPalettedStorageFix/m_15107_ (Ljava/util/HashMap;)V net/minecraft/util/datafix/fixes/ChunkPalettedStorageFix/lambda$static$1 (Ljava/util/HashMap;)V +MD: net/minecraft/util/datafix/fixes/ChunkPalettedStorageFix/m_15110_ (Ljava/util/HashMap;)V net/minecraft/util/datafix/fixes/ChunkPalettedStorageFix/lambda$static$0 (Ljava/util/HashMap;)V +MD: net/minecraft/util/datafix/fixes/ChunkPalettedStorageFix/makeRule ()Lcom/mojang/datafixers/TypeRewriteRule; net/minecraft/util/datafix/fixes/ChunkPalettedStorageFix/makeRule ()Lcom/mojang/datafixers/TypeRewriteRule; +MD: net/minecraft/util/datafix/fixes/ChunkPalettedStorageFix$1/ ()V net/minecraft/util/datafix/fixes/ChunkPalettedStorageFix$1/ ()V +MD: net/minecraft/util/datafix/fixes/ChunkPalettedStorageFix$DataLayer/ ([B)V net/minecraft/util/datafix/fixes/ChunkPalettedStorageFix$DataLayer/ ([B)V +MD: net/minecraft/util/datafix/fixes/ChunkPalettedStorageFix$DataLayer/ ()V net/minecraft/util/datafix/fixes/ChunkPalettedStorageFix$DataLayer/ ()V +MD: net/minecraft/util/datafix/fixes/ChunkPalettedStorageFix$DataLayer/m_15133_ (I)Z net/minecraft/util/datafix/fixes/ChunkPalettedStorageFix$DataLayer/isFirst (I)Z +MD: net/minecraft/util/datafix/fixes/ChunkPalettedStorageFix$DataLayer/m_15135_ (III)I net/minecraft/util/datafix/fixes/ChunkPalettedStorageFix$DataLayer/get (III)I +MD: net/minecraft/util/datafix/fixes/ChunkPalettedStorageFix$DataLayer/m_15139_ (I)I net/minecraft/util/datafix/fixes/ChunkPalettedStorageFix$DataLayer/getPosition (I)I +MD: net/minecraft/util/datafix/fixes/ChunkPalettedStorageFix$Direction/ ()V net/minecraft/util/datafix/fixes/ChunkPalettedStorageFix$Direction/ ()V +MD: net/minecraft/util/datafix/fixes/ChunkPalettedStorageFix$Direction/ (Ljava/lang/String;ILnet/minecraft/util/datafix/fixes/ChunkPalettedStorageFix$Direction$AxisDirection;Lnet/minecraft/util/datafix/fixes/ChunkPalettedStorageFix$Direction$Axis;)V net/minecraft/util/datafix/fixes/ChunkPalettedStorageFix$Direction/ (Ljava/lang/String;ILnet/minecraft/util/datafix/fixes/ChunkPalettedStorageFix$Direction$AxisDirection;Lnet/minecraft/util/datafix/fixes/ChunkPalettedStorageFix$Direction$Axis;)V +MD: net/minecraft/util/datafix/fixes/ChunkPalettedStorageFix$Direction/m_145222_ ()[Lnet/minecraft/util/datafix/fixes/ChunkPalettedStorageFix$Direction; net/minecraft/util/datafix/fixes/ChunkPalettedStorageFix$Direction/$values ()[Lnet/minecraft/util/datafix/fixes/ChunkPalettedStorageFix$Direction; +MD: net/minecraft/util/datafix/fixes/ChunkPalettedStorageFix$Direction/m_15156_ ()Lnet/minecraft/util/datafix/fixes/ChunkPalettedStorageFix$Direction$AxisDirection; net/minecraft/util/datafix/fixes/ChunkPalettedStorageFix$Direction/getAxisDirection ()Lnet/minecraft/util/datafix/fixes/ChunkPalettedStorageFix$Direction$AxisDirection; +MD: net/minecraft/util/datafix/fixes/ChunkPalettedStorageFix$Direction/m_15157_ ()Lnet/minecraft/util/datafix/fixes/ChunkPalettedStorageFix$Direction$Axis; net/minecraft/util/datafix/fixes/ChunkPalettedStorageFix$Direction/getAxis ()Lnet/minecraft/util/datafix/fixes/ChunkPalettedStorageFix$Direction$Axis; +MD: net/minecraft/util/datafix/fixes/ChunkPalettedStorageFix$Direction/valueOf (Ljava/lang/String;)Lnet/minecraft/util/datafix/fixes/ChunkPalettedStorageFix$Direction; net/minecraft/util/datafix/fixes/ChunkPalettedStorageFix$Direction/valueOf (Ljava/lang/String;)Lnet/minecraft/util/datafix/fixes/ChunkPalettedStorageFix$Direction; +MD: net/minecraft/util/datafix/fixes/ChunkPalettedStorageFix$Direction/values ()[Lnet/minecraft/util/datafix/fixes/ChunkPalettedStorageFix$Direction; net/minecraft/util/datafix/fixes/ChunkPalettedStorageFix$Direction/values ()[Lnet/minecraft/util/datafix/fixes/ChunkPalettedStorageFix$Direction; +MD: net/minecraft/util/datafix/fixes/ChunkPalettedStorageFix$Direction$Axis/ ()V net/minecraft/util/datafix/fixes/ChunkPalettedStorageFix$Direction$Axis/ ()V +MD: net/minecraft/util/datafix/fixes/ChunkPalettedStorageFix$Direction$Axis/ (Ljava/lang/String;I)V net/minecraft/util/datafix/fixes/ChunkPalettedStorageFix$Direction$Axis/ (Ljava/lang/String;I)V +MD: net/minecraft/util/datafix/fixes/ChunkPalettedStorageFix$Direction$Axis/m_145223_ ()[Lnet/minecraft/util/datafix/fixes/ChunkPalettedStorageFix$Direction$Axis; net/minecraft/util/datafix/fixes/ChunkPalettedStorageFix$Direction$Axis/$values ()[Lnet/minecraft/util/datafix/fixes/ChunkPalettedStorageFix$Direction$Axis; +MD: net/minecraft/util/datafix/fixes/ChunkPalettedStorageFix$Direction$Axis/valueOf (Ljava/lang/String;)Lnet/minecraft/util/datafix/fixes/ChunkPalettedStorageFix$Direction$Axis; net/minecraft/util/datafix/fixes/ChunkPalettedStorageFix$Direction$Axis/valueOf (Ljava/lang/String;)Lnet/minecraft/util/datafix/fixes/ChunkPalettedStorageFix$Direction$Axis; +MD: net/minecraft/util/datafix/fixes/ChunkPalettedStorageFix$Direction$Axis/values ()[Lnet/minecraft/util/datafix/fixes/ChunkPalettedStorageFix$Direction$Axis; net/minecraft/util/datafix/fixes/ChunkPalettedStorageFix$Direction$Axis/values ()[Lnet/minecraft/util/datafix/fixes/ChunkPalettedStorageFix$Direction$Axis; +MD: net/minecraft/util/datafix/fixes/ChunkPalettedStorageFix$Direction$AxisDirection/ ()V net/minecraft/util/datafix/fixes/ChunkPalettedStorageFix$Direction$AxisDirection/ ()V +MD: net/minecraft/util/datafix/fixes/ChunkPalettedStorageFix$Direction$AxisDirection/ (Ljava/lang/String;II)V net/minecraft/util/datafix/fixes/ChunkPalettedStorageFix$Direction$AxisDirection/ (Ljava/lang/String;II)V +MD: net/minecraft/util/datafix/fixes/ChunkPalettedStorageFix$Direction$AxisDirection/m_145224_ ()[Lnet/minecraft/util/datafix/fixes/ChunkPalettedStorageFix$Direction$AxisDirection; net/minecraft/util/datafix/fixes/ChunkPalettedStorageFix$Direction$AxisDirection/$values ()[Lnet/minecraft/util/datafix/fixes/ChunkPalettedStorageFix$Direction$AxisDirection; +MD: net/minecraft/util/datafix/fixes/ChunkPalettedStorageFix$Direction$AxisDirection/m_15181_ ()I net/minecraft/util/datafix/fixes/ChunkPalettedStorageFix$Direction$AxisDirection/getStep ()I +MD: net/minecraft/util/datafix/fixes/ChunkPalettedStorageFix$Direction$AxisDirection/valueOf (Ljava/lang/String;)Lnet/minecraft/util/datafix/fixes/ChunkPalettedStorageFix$Direction$AxisDirection; net/minecraft/util/datafix/fixes/ChunkPalettedStorageFix$Direction$AxisDirection/valueOf (Ljava/lang/String;)Lnet/minecraft/util/datafix/fixes/ChunkPalettedStorageFix$Direction$AxisDirection; +MD: net/minecraft/util/datafix/fixes/ChunkPalettedStorageFix$Direction$AxisDirection/values ()[Lnet/minecraft/util/datafix/fixes/ChunkPalettedStorageFix$Direction$AxisDirection; net/minecraft/util/datafix/fixes/ChunkPalettedStorageFix$Direction$AxisDirection/values ()[Lnet/minecraft/util/datafix/fixes/ChunkPalettedStorageFix$Direction$AxisDirection; +MD: net/minecraft/util/datafix/fixes/ChunkPalettedStorageFix$Section/ (Lcom/mojang/serialization/Dynamic;)V net/minecraft/util/datafix/fixes/ChunkPalettedStorageFix$Section/ (Lcom/mojang/serialization/Dynamic;)V +MD: net/minecraft/util/datafix/fixes/ChunkPalettedStorageFix$Section/m_15196_ ()Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/ChunkPalettedStorageFix$Section/write ()Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/ChunkPalettedStorageFix$Section/m_15197_ (I)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/ChunkPalettedStorageFix$Section/getBlock (I)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/ChunkPalettedStorageFix$Section/m_15199_ (II)V net/minecraft/util/datafix/fixes/ChunkPalettedStorageFix$Section/addFix (II)V +MD: net/minecraft/util/datafix/fixes/ChunkPalettedStorageFix$Section/m_15202_ (ILcom/mojang/serialization/Dynamic;)V net/minecraft/util/datafix/fixes/ChunkPalettedStorageFix$Section/setBlock (ILcom/mojang/serialization/Dynamic;)V +MD: net/minecraft/util/datafix/fixes/ChunkPalettedStorageFix$Section/m_15207_ (Ljava/nio/ByteBuffer;)Lnet/minecraft/util/datafix/fixes/ChunkPalettedStorageFix$DataLayer; net/minecraft/util/datafix/fixes/ChunkPalettedStorageFix$Section/lambda$upgrade$1 (Ljava/nio/ByteBuffer;)Lnet/minecraft/util/datafix/fixes/ChunkPalettedStorageFix$DataLayer; +MD: net/minecraft/util/datafix/fixes/ChunkPalettedStorageFix$Section/m_15209_ (I)I net/minecraft/util/datafix/fixes/ChunkPalettedStorageFix$Section/upgrade (I)I +MD: net/minecraft/util/datafix/fixes/ChunkPalettedStorageFix$Section/m_15213_ (Ljava/nio/ByteBuffer;)Lnet/minecraft/util/datafix/fixes/ChunkPalettedStorageFix$DataLayer; net/minecraft/util/datafix/fixes/ChunkPalettedStorageFix$Section/lambda$upgrade$0 (Ljava/nio/ByteBuffer;)Lnet/minecraft/util/datafix/fixes/ChunkPalettedStorageFix$DataLayer; +MD: net/minecraft/util/datafix/fixes/ChunkPalettedStorageFix$UpgradeChunk/ (Lcom/mojang/serialization/Dynamic;)V net/minecraft/util/datafix/fixes/ChunkPalettedStorageFix$UpgradeChunk/ (Lcom/mojang/serialization/Dynamic;)V +MD: net/minecraft/util/datafix/fixes/ChunkPalettedStorageFix$UpgradeChunk/m_145225_ (Lcom/mojang/serialization/Dynamic;)V net/minecraft/util/datafix/fixes/ChunkPalettedStorageFix$UpgradeChunk/lambda$new$2 (Lcom/mojang/serialization/Dynamic;)V +MD: net/minecraft/util/datafix/fixes/ChunkPalettedStorageFix$UpgradeChunk/m_145227_ (Lcom/mojang/serialization/Dynamic;)V net/minecraft/util/datafix/fixes/ChunkPalettedStorageFix$UpgradeChunk/lambda$new$0 (Lcom/mojang/serialization/Dynamic;)V +MD: net/minecraft/util/datafix/fixes/ChunkPalettedStorageFix$UpgradeChunk/m_15223_ ()Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/ChunkPalettedStorageFix$UpgradeChunk/write ()Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/ChunkPalettedStorageFix$UpgradeChunk/m_15224_ (I)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/ChunkPalettedStorageFix$UpgradeChunk/getBlock (I)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/ChunkPalettedStorageFix$UpgradeChunk/m_15226_ (ILnet/minecraft/util/datafix/fixes/ChunkPalettedStorageFix$Direction;)I net/minecraft/util/datafix/fixes/ChunkPalettedStorageFix$UpgradeChunk/relative (ILnet/minecraft/util/datafix/fixes/ChunkPalettedStorageFix$Direction;)I +MD: net/minecraft/util/datafix/fixes/ChunkPalettedStorageFix$UpgradeChunk/m_15229_ (ILcom/mojang/serialization/Dynamic;)V net/minecraft/util/datafix/fixes/ChunkPalettedStorageFix$UpgradeChunk/setBlock (ILcom/mojang/serialization/Dynamic;)V +MD: net/minecraft/util/datafix/fixes/ChunkPalettedStorageFix$UpgradeChunk/m_15234_ (Ljava/util/stream/Stream;)V net/minecraft/util/datafix/fixes/ChunkPalettedStorageFix$UpgradeChunk/lambda$new$3 (Ljava/util/stream/Stream;)V +MD: net/minecraft/util/datafix/fixes/ChunkPalettedStorageFix$UpgradeChunk/m_15236_ (I)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/ChunkPalettedStorageFix$UpgradeChunk/getBlockEntity (I)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/ChunkPalettedStorageFix$UpgradeChunk/m_15240_ (Ljava/util/stream/Stream;)V net/minecraft/util/datafix/fixes/ChunkPalettedStorageFix$UpgradeChunk/lambda$new$1 (Ljava/util/stream/Stream;)V +MD: net/minecraft/util/datafix/fixes/ChunkPalettedStorageFix$UpgradeChunk/m_15242_ (I)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/ChunkPalettedStorageFix$UpgradeChunk/removeBlockEntity (I)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/ChunkPalettedStorageFix$UpgradeChunk/m_15244_ (I)Lnet/minecraft/util/datafix/fixes/ChunkPalettedStorageFix$Section; net/minecraft/util/datafix/fixes/ChunkPalettedStorageFix$UpgradeChunk/getSection (I)Lnet/minecraft/util/datafix/fixes/ChunkPalettedStorageFix$Section; +MD: net/minecraft/util/datafix/fixes/ChunkProtoTickListFix/ ()V net/minecraft/util/datafix/fixes/ChunkProtoTickListFix/ ()V +MD: net/minecraft/util/datafix/fixes/ChunkProtoTickListFix/ (Lcom/mojang/datafixers/schemas/Schema;)V net/minecraft/util/datafix/fixes/ChunkProtoTickListFix/ (Lcom/mojang/datafixers/schemas/Schema;)V +MD: net/minecraft/util/datafix/fixes/ChunkProtoTickListFix/m_184989_ (BLcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/ChunkProtoTickListFix/lambda$makeRule$9 (BLcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/ChunkProtoTickListFix/m_184992_ (I)Z net/minecraft/util/datafix/fixes/ChunkProtoTickListFix/lambda$makeTickList$14 (I)Z +MD: net/minecraft/util/datafix/fixes/ChunkProtoTickListFix/m_184994_ (Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; net/minecraft/util/datafix/fixes/ChunkProtoTickListFix/lambda$makeRule$12 (Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; +MD: net/minecraft/util/datafix/fixes/ChunkProtoTickListFix/m_185003_ (Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; net/minecraft/util/datafix/fixes/ChunkProtoTickListFix/lambda$makeRule$11 (Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; +MD: net/minecraft/util/datafix/fixes/ChunkProtoTickListFix/m_185011_ (Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/OpticFinder;Lorg/apache/commons/lang3/mutable/MutableInt;Lcom/mojang/datafixers/OpticFinder;Lit/unimi/dsi/fastutil/ints/Int2ObjectMap;Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/Typed;)V net/minecraft/util/datafix/fixes/ChunkProtoTickListFix/lambda$makeRule$7 (Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/OpticFinder;Lorg/apache/commons/lang3/mutable/MutableInt;Lcom/mojang/datafixers/OpticFinder;Lit/unimi/dsi/fastutil/ints/Int2ObjectMap;Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/Typed;)V +MD: net/minecraft/util/datafix/fixes/ChunkProtoTickListFix/m_185019_ (Lcom/mojang/datafixers/OpticFinder;Lorg/apache/commons/lang3/mutable/MutableInt;Lcom/mojang/datafixers/OpticFinder;Lit/unimi/dsi/fastutil/ints/Int2ObjectMap;Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/Typed;)V net/minecraft/util/datafix/fixes/ChunkProtoTickListFix/lambda$makeRule$6 (Lcom/mojang/datafixers/OpticFinder;Lorg/apache/commons/lang3/mutable/MutableInt;Lcom/mojang/datafixers/OpticFinder;Lit/unimi/dsi/fastutil/ints/Int2ObjectMap;Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/Typed;)V +MD: net/minecraft/util/datafix/fixes/ChunkProtoTickListFix/m_185026_ (Lcom/mojang/datafixers/Typed;)Ljava/util/List; net/minecraft/util/datafix/fixes/ChunkProtoTickListFix/lambda$makeRule$3 (Lcom/mojang/datafixers/Typed;)Ljava/util/List; +MD: net/minecraft/util/datafix/fixes/ChunkProtoTickListFix/m_185028_ (Lcom/mojang/datafixers/Typed;Lcom/mojang/datafixers/OpticFinder;)Lnet/minecraft/util/datafix/fixes/ChunkProtoTickListFix$PoorMansPalettedContainer; net/minecraft/util/datafix/fixes/ChunkProtoTickListFix/lambda$makeRule$4 (Lcom/mojang/datafixers/Typed;Lcom/mojang/datafixers/OpticFinder;)Lnet/minecraft/util/datafix/fixes/ChunkProtoTickListFix$PoorMansPalettedContainer; +MD: net/minecraft/util/datafix/fixes/ChunkProtoTickListFix/m_185031_ (Lcom/mojang/serialization/Dynamic;)Ljava/lang/String; net/minecraft/util/datafix/fixes/ChunkProtoTickListFix/getBlock (Lcom/mojang/serialization/Dynamic;)Ljava/lang/String; +MD: net/minecraft/util/datafix/fixes/ChunkProtoTickListFix/m_185033_ (Lcom/mojang/serialization/Dynamic;Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/ChunkProtoTickListFix/lambda$makeRule$10 (Lcom/mojang/serialization/Dynamic;Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/ChunkProtoTickListFix/m_185036_ (Lcom/mojang/serialization/Dynamic;Lit/unimi/dsi/fastutil/ints/Int2ObjectMap;BIILjava/lang/String;Ljava/util/function/Function;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/ChunkProtoTickListFix/makeTickList (Lcom/mojang/serialization/Dynamic;Lit/unimi/dsi/fastutil/ints/Int2ObjectMap;BIILjava/lang/String;Ljava/util/function/Function;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/ChunkProtoTickListFix/m_185044_ (Lcom/mojang/serialization/Dynamic;Ljava/util/function/Supplier;IIIILjava/util/function/Function;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/ChunkProtoTickListFix/createTick (Lcom/mojang/serialization/Dynamic;Ljava/util/function/Supplier;IIIILjava/util/function/Function;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/ChunkProtoTickListFix/m_185052_ (Lcom/mojang/serialization/Dynamic;Ljava/util/function/Supplier;IIILjava/util/function/Function;I)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/ChunkProtoTickListFix/lambda$makeTickList$15 (Lcom/mojang/serialization/Dynamic;Ljava/util/function/Supplier;IIILjava/util/function/Function;I)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/ChunkProtoTickListFix/m_185060_ (Lit/unimi/dsi/fastutil/ints/Int2ObjectMap;ILcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/Typed;)V net/minecraft/util/datafix/fixes/ChunkProtoTickListFix/lambda$makeRule$5 (Lit/unimi/dsi/fastutil/ints/Int2ObjectMap;ILcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/Typed;)V +MD: net/minecraft/util/datafix/fixes/ChunkProtoTickListFix/m_185065_ (BLcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/ChunkProtoTickListFix/lambda$makeRule$8 (BLcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/ChunkProtoTickListFix/m_185068_ (Lcom/mojang/serialization/Dynamic;)Ljava/lang/String; net/minecraft/util/datafix/fixes/ChunkProtoTickListFix/getLiquid (Lcom/mojang/serialization/Dynamic;)Ljava/lang/String; +MD: net/minecraft/util/datafix/fixes/ChunkProtoTickListFix/m_185070_ (Lcom/mojang/serialization/Dynamic;Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/ChunkProtoTickListFix/lambda$makeRule$0 (Lcom/mojang/serialization/Dynamic;Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/ChunkProtoTickListFix/m_185073_ (Lcom/mojang/serialization/Dynamic;)I net/minecraft/util/datafix/fixes/ChunkProtoTickListFix/lambda$makeTickList$13 (Lcom/mojang/serialization/Dynamic;)I +MD: net/minecraft/util/datafix/fixes/ChunkProtoTickListFix/m_185075_ (Lcom/mojang/serialization/Dynamic;)Ljava/util/List; net/minecraft/util/datafix/fixes/ChunkProtoTickListFix/lambda$makeRule$2 (Lcom/mojang/serialization/Dynamic;)Ljava/util/List; +MD: net/minecraft/util/datafix/fixes/ChunkProtoTickListFix/m_185077_ (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/ChunkProtoTickListFix/lambda$makeRule$1 (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/ChunkProtoTickListFix/makeRule ()Lcom/mojang/datafixers/TypeRewriteRule; net/minecraft/util/datafix/fixes/ChunkProtoTickListFix/makeRule ()Lcom/mojang/datafixers/TypeRewriteRule; +MD: net/minecraft/util/datafix/fixes/ChunkProtoTickListFix$PoorMansPalettedContainer/ (Ljava/util/List;[J)V net/minecraft/util/datafix/fixes/ChunkProtoTickListFix$PoorMansPalettedContainer/ (Ljava/util/List;[J)V +MD: net/minecraft/util/datafix/fixes/ChunkProtoTickListFix$PoorMansPalettedContainer/m_185089_ ()Ljava/util/List; net/minecraft/util/datafix/fixes/ChunkProtoTickListFix$PoorMansPalettedContainer/palette ()Ljava/util/List; +MD: net/minecraft/util/datafix/fixes/ChunkProtoTickListFix$PoorMansPalettedContainer/m_185090_ (III)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/ChunkProtoTickListFix$PoorMansPalettedContainer/get (III)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/ChunkProtoTickListFix$PoorMansPalettedContainer/m_185094_ ()[J net/minecraft/util/datafix/fixes/ChunkProtoTickListFix$PoorMansPalettedContainer/data ()[J +MD: net/minecraft/util/datafix/fixes/ChunkProtoTickListFix$PoorMansPalettedContainer/m_185095_ (III)I net/minecraft/util/datafix/fixes/ChunkProtoTickListFix$PoorMansPalettedContainer/getIndex (III)I +MD: net/minecraft/util/datafix/fixes/ChunkRenamesFix/ (Lcom/mojang/datafixers/schemas/Schema;)V net/minecraft/util/datafix/fixes/ChunkRenamesFix/ (Lcom/mojang/datafixers/schemas/Schema;)V +MD: net/minecraft/util/datafix/fixes/ChunkRenamesFix/m_185106_ (Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; net/minecraft/util/datafix/fixes/ChunkRenamesFix/appendChunkName (Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; +MD: net/minecraft/util/datafix/fixes/ChunkRenamesFix/m_185108_ (Lcom/mojang/datafixers/Typed;Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/ChunkRenamesFix/mergeRemainders (Lcom/mojang/datafixers/Typed;Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/ChunkRenamesFix/m_185111_ (Lcom/mojang/datafixers/Typed;Ljava/lang/String;Ljava/lang/String;)Lcom/mojang/datafixers/Typed; net/minecraft/util/datafix/fixes/ChunkRenamesFix/renameField (Lcom/mojang/datafixers/Typed;Ljava/lang/String;Ljava/lang/String;)Lcom/mojang/datafixers/Typed; +MD: net/minecraft/util/datafix/fixes/ChunkRenamesFix/m_185115_ (Lcom/mojang/datafixers/Typed;Ljava/lang/String;Ljava/lang/String;Lcom/mojang/datafixers/types/Type;)Lcom/mojang/datafixers/Typed; net/minecraft/util/datafix/fixes/ChunkRenamesFix/renameFieldHelper (Lcom/mojang/datafixers/Typed;Ljava/lang/String;Ljava/lang/String;Lcom/mojang/datafixers/types/Type;)Lcom/mojang/datafixers/Typed; +MD: net/minecraft/util/datafix/fixes/ChunkRenamesFix/m_185127_ (Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; net/minecraft/util/datafix/fixes/ChunkRenamesFix/lambda$makeRule$0 (Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; +MD: net/minecraft/util/datafix/fixes/ChunkRenamesFix/m_199423_ (Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/types/Type;Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; net/minecraft/util/datafix/fixes/ChunkRenamesFix/lambda$makeRule$2 (Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/types/Type;Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; +MD: net/minecraft/util/datafix/fixes/ChunkRenamesFix/m_199428_ (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/ChunkRenamesFix/lambda$makeRule$1 (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/ChunkRenamesFix/m_199430_ (Lcom/mojang/serialization/DynamicOps;Lcom/mojang/serialization/Dynamic;Lcom/mojang/serialization/MapLike;)Lcom/mojang/serialization/DataResult; net/minecraft/util/datafix/fixes/ChunkRenamesFix/lambda$mergeRemainders$4 (Lcom/mojang/serialization/DynamicOps;Lcom/mojang/serialization/Dynamic;Lcom/mojang/serialization/MapLike;)Lcom/mojang/serialization/DataResult; +MD: net/minecraft/util/datafix/fixes/ChunkRenamesFix/m_199434_ (Lcom/mojang/serialization/DynamicOps;Ljava/lang/Object;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/ChunkRenamesFix/lambda$mergeRemainders$5 (Lcom/mojang/serialization/DynamicOps;Ljava/lang/Object;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/ChunkRenamesFix/m_199437_ (Ljava/lang/String;Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/ChunkRenamesFix/lambda$renameField$3 (Ljava/lang/String;Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/ChunkRenamesFix/makeRule ()Lcom/mojang/datafixers/TypeRewriteRule; net/minecraft/util/datafix/fixes/ChunkRenamesFix/makeRule ()Lcom/mojang/datafixers/TypeRewriteRule; +MD: net/minecraft/util/datafix/fixes/ChunkStatusFix/ (Lcom/mojang/datafixers/schemas/Schema;Z)V net/minecraft/util/datafix/fixes/ChunkStatusFix/ (Lcom/mojang/datafixers/schemas/Schema;Z)V +MD: net/minecraft/util/datafix/fixes/ChunkStatusFix/m_145229_ (Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; net/minecraft/util/datafix/fixes/ChunkStatusFix/lambda$makeRule$0 (Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; +MD: net/minecraft/util/datafix/fixes/ChunkStatusFix/m_15249_ (Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; net/minecraft/util/datafix/fixes/ChunkStatusFix/lambda$makeRule$1 (Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; +MD: net/minecraft/util/datafix/fixes/ChunkStatusFix/makeRule ()Lcom/mojang/datafixers/TypeRewriteRule; net/minecraft/util/datafix/fixes/ChunkStatusFix/makeRule ()Lcom/mojang/datafixers/TypeRewriteRule; +MD: net/minecraft/util/datafix/fixes/ChunkStatusFix2/ ()V net/minecraft/util/datafix/fixes/ChunkStatusFix2/ ()V +MD: net/minecraft/util/datafix/fixes/ChunkStatusFix2/ (Lcom/mojang/datafixers/schemas/Schema;Z)V net/minecraft/util/datafix/fixes/ChunkStatusFix2/ (Lcom/mojang/datafixers/schemas/Schema;Z)V +MD: net/minecraft/util/datafix/fixes/ChunkStatusFix2/m_145231_ (Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; net/minecraft/util/datafix/fixes/ChunkStatusFix2/lambda$makeRule$0 (Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; +MD: net/minecraft/util/datafix/fixes/ChunkStatusFix2/m_15260_ (Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; net/minecraft/util/datafix/fixes/ChunkStatusFix2/lambda$makeRule$1 (Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; +MD: net/minecraft/util/datafix/fixes/ChunkStatusFix2/makeRule ()Lcom/mojang/datafixers/TypeRewriteRule; net/minecraft/util/datafix/fixes/ChunkStatusFix2/makeRule ()Lcom/mojang/datafixers/TypeRewriteRule; +MD: net/minecraft/util/datafix/fixes/ChunkStructuresTemplateRenameFix/ ()V net/minecraft/util/datafix/fixes/ChunkStructuresTemplateRenameFix/ ()V +MD: net/minecraft/util/datafix/fixes/ChunkStructuresTemplateRenameFix/ (Lcom/mojang/datafixers/schemas/Schema;Z)V net/minecraft/util/datafix/fixes/ChunkStructuresTemplateRenameFix/ (Lcom/mojang/datafixers/schemas/Schema;Z)V +MD: net/minecraft/util/datafix/fixes/ChunkStructuresTemplateRenameFix/m_15280_ (Lcom/mojang/serialization/Dynamic;Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/ChunkStructuresTemplateRenameFix/fixTag (Lcom/mojang/serialization/Dynamic;Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/ChunkStructuresTemplateRenameFix/m_274158_ (Lcom/mojang/serialization/Dynamic;Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/ChunkStructuresTemplateRenameFix/lambda$fixChildren$1 (Lcom/mojang/serialization/Dynamic;Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/ChunkStructuresTemplateRenameFix/m_274159_ (Lcom/mojang/serialization/Dynamic;Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/ChunkStructuresTemplateRenameFix/lambda$fixChildren$2 (Lcom/mojang/serialization/Dynamic;Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/ChunkStructuresTemplateRenameFix/m_274160_ (Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; net/minecraft/util/datafix/fixes/ChunkStructuresTemplateRenameFix/lambda$makeRule$0 (Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; +MD: net/minecraft/util/datafix/fixes/ChunkStructuresTemplateRenameFix/m_274348_ (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/ChunkStructuresTemplateRenameFix/fixChildren (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/ChunkStructuresTemplateRenameFix/makeRule ()Lcom/mojang/datafixers/TypeRewriteRule; net/minecraft/util/datafix/fixes/ChunkStructuresTemplateRenameFix/makeRule ()Lcom/mojang/datafixers/TypeRewriteRule; +MD: net/minecraft/util/datafix/fixes/ChunkToProtochunkFix/ (Lcom/mojang/datafixers/schemas/Schema;Z)V net/minecraft/util/datafix/fixes/ChunkToProtochunkFix/ (Lcom/mojang/datafixers/schemas/Schema;Z)V +MD: net/minecraft/util/datafix/fixes/ChunkToProtochunkFix/m_15290_ (III)S net/minecraft/util/datafix/fixes/ChunkToProtochunkFix/packOffsetCoordinates (III)S +MD: net/minecraft/util/datafix/fixes/ChunkToProtochunkFix/m_199849_ (I)Lit/unimi/dsi/fastutil/shorts/ShortArrayList; net/minecraft/util/datafix/fixes/ChunkToProtochunkFix/lambda$repackTicks$3 (I)Lit/unimi/dsi/fastutil/shorts/ShortArrayList; +MD: net/minecraft/util/datafix/fixes/ChunkToProtochunkFix/m_199855_ (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/ChunkToProtochunkFix/fixChunkData (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/ChunkToProtochunkFix/m_199857_ (Lcom/mojang/serialization/Dynamic;I)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/ChunkToProtochunkFix/lambda$repackTicks$5 (Lcom/mojang/serialization/Dynamic;I)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/ChunkToProtochunkFix/m_199860_ (Lcom/mojang/serialization/Dynamic;Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/ChunkToProtochunkFix/lambda$repackBiomes$2 (Lcom/mojang/serialization/Dynamic;Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/ChunkToProtochunkFix/m_199863_ (Lcom/mojang/serialization/Dynamic;Lit/unimi/dsi/fastutil/shorts/ShortList;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/ChunkToProtochunkFix/lambda$repackTicks$6 (Lcom/mojang/serialization/Dynamic;Lit/unimi/dsi/fastutil/shorts/ShortList;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/ChunkToProtochunkFix/m_199866_ (Lcom/mojang/serialization/Dynamic;Ljava/nio/ByteBuffer;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/ChunkToProtochunkFix/lambda$repackBiomes$1 (Lcom/mojang/serialization/Dynamic;Ljava/nio/ByteBuffer;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/ChunkToProtochunkFix/m_199869_ (Lcom/mojang/serialization/Dynamic;Ljava/util/stream/Stream;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/ChunkToProtochunkFix/lambda$repackTicks$7 (Lcom/mojang/serialization/Dynamic;Ljava/util/stream/Stream;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/ChunkToProtochunkFix/m_199872_ (Ljava/util/List;Lcom/mojang/serialization/Dynamic;)V net/minecraft/util/datafix/fixes/ChunkToProtochunkFix/lambda$repackTicks$4 (Ljava/util/List;Lcom/mojang/serialization/Dynamic;)V +MD: net/minecraft/util/datafix/fixes/ChunkToProtochunkFix/m_199879_ (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/ChunkToProtochunkFix/repackBiomes (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/ChunkToProtochunkFix/m_199881_ (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/ChunkToProtochunkFix/repackTicks (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/ChunkToProtochunkFix/m_199885_ (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/ChunkToProtochunkFix/lambda$makeRule$0 (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/ChunkToProtochunkFix/makeRule ()Lcom/mojang/datafixers/TypeRewriteRule; net/minecraft/util/datafix/fixes/ChunkToProtochunkFix/makeRule ()Lcom/mojang/datafixers/TypeRewriteRule; +MD: net/minecraft/util/datafix/fixes/ColorlessShulkerEntityFix/ (Lcom/mojang/datafixers/schemas/Schema;Z)V net/minecraft/util/datafix/fixes/ColorlessShulkerEntityFix/ (Lcom/mojang/datafixers/schemas/Schema;Z)V +MD: net/minecraft/util/datafix/fixes/ColorlessShulkerEntityFix/m_15319_ (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/ColorlessShulkerEntityFix/lambda$fix$0 (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/ColorlessShulkerEntityFix/m_7504_ (Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; net/minecraft/util/datafix/fixes/ColorlessShulkerEntityFix/fix (Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; +MD: net/minecraft/util/datafix/fixes/CriteriaRenameFix/ (Lcom/mojang/datafixers/schemas/Schema;Ljava/lang/String;Ljava/lang/String;Ljava/util/function/UnaryOperator;)V net/minecraft/util/datafix/fixes/CriteriaRenameFix/ (Lcom/mojang/datafixers/schemas/Schema;Ljava/lang/String;Ljava/lang/String;Ljava/util/function/UnaryOperator;)V +MD: net/minecraft/util/datafix/fixes/CriteriaRenameFix/m_216589_ (Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; net/minecraft/util/datafix/fixes/CriteriaRenameFix/lambda$makeRule$0 (Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; +MD: net/minecraft/util/datafix/fixes/CriteriaRenameFix/m_216591_ (Lcom/mojang/datafixers/util/Pair;)Lcom/mojang/datafixers/util/Pair; net/minecraft/util/datafix/fixes/CriteriaRenameFix/lambda$fixAdvancements$3 (Lcom/mojang/datafixers/util/Pair;)Lcom/mojang/datafixers/util/Pair; +MD: net/minecraft/util/datafix/fixes/CriteriaRenameFix/m_216593_ (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/CriteriaRenameFix/fixAdvancements (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/CriteriaRenameFix/m_216595_ (Lcom/mojang/serialization/Dynamic;Ljava/lang/String;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/CriteriaRenameFix/lambda$fixAdvancements$1 (Lcom/mojang/serialization/Dynamic;Ljava/lang/String;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/CriteriaRenameFix/m_216598_ (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/CriteriaRenameFix/lambda$fixAdvancements$5 (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/CriteriaRenameFix/m_216600_ (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/CriteriaRenameFix/lambda$fixAdvancements$4 (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/CriteriaRenameFix/m_216602_ (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/CriteriaRenameFix/lambda$fixAdvancements$2 (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/CriteriaRenameFix/makeRule ()Lcom/mojang/datafixers/TypeRewriteRule; net/minecraft/util/datafix/fixes/CriteriaRenameFix/makeRule ()Lcom/mojang/datafixers/TypeRewriteRule; +MD: net/minecraft/util/datafix/fixes/DecoratedPotFieldRenameFix/ (Lcom/mojang/datafixers/schemas/Schema;)V net/minecraft/util/datafix/fixes/DecoratedPotFieldRenameFix/ (Lcom/mojang/datafixers/schemas/Schema;)V +MD: net/minecraft/util/datafix/fixes/DecoratedPotFieldRenameFix/makeRule ()Lcom/mojang/datafixers/TypeRewriteRule; net/minecraft/util/datafix/fixes/DecoratedPotFieldRenameFix/makeRule ()Lcom/mojang/datafixers/TypeRewriteRule; +MD: net/minecraft/util/datafix/fixes/DyeItemRenameFix/ ()V net/minecraft/util/datafix/fixes/DyeItemRenameFix/ ()V +MD: net/minecraft/util/datafix/fixes/DyeItemRenameFix/ ()V net/minecraft/util/datafix/fixes/DyeItemRenameFix/ ()V +MD: net/minecraft/util/datafix/fixes/EffectDurationFix/ ()V net/minecraft/util/datafix/fixes/EffectDurationFix/ ()V +MD: net/minecraft/util/datafix/fixes/EffectDurationFix/ (Lcom/mojang/datafixers/schemas/Schema;)V net/minecraft/util/datafix/fixes/EffectDurationFix/ (Lcom/mojang/datafixers/schemas/Schema;)V +MD: net/minecraft/util/datafix/fixes/EffectDurationFix/m_267624_ (Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; net/minecraft/util/datafix/fixes/EffectDurationFix/lambda$makeRule$1 (Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; +MD: net/minecraft/util/datafix/fixes/EffectDurationFix/m_267632_ (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/EffectDurationFix/updateEntity (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/EffectDurationFix/m_267642_ (Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; net/minecraft/util/datafix/fixes/EffectDurationFix/lambda$makeRule$2 (Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; +MD: net/minecraft/util/datafix/fixes/EffectDurationFix/m_267655_ (Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; net/minecraft/util/datafix/fixes/EffectDurationFix/lambda$makeRule$0 (Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; +MD: net/minecraft/util/datafix/fixes/EffectDurationFix/m_267663_ (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/EffectDurationFix/fix (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/EffectDurationFix/m_267672_ (Lcom/mojang/serialization/Dynamic;Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/EffectDurationFix/lambda$fixEffect$3 (Lcom/mojang/serialization/Dynamic;Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/EffectDurationFix/m_267829_ (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/EffectDurationFix/fixEffect (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/EffectDurationFix/makeRule ()Lcom/mojang/datafixers/TypeRewriteRule; net/minecraft/util/datafix/fixes/EffectDurationFix/makeRule ()Lcom/mojang/datafixers/TypeRewriteRule; +MD: net/minecraft/util/datafix/fixes/EntityArmorStandSilentFix/ (Lcom/mojang/datafixers/schemas/Schema;Z)V net/minecraft/util/datafix/fixes/EntityArmorStandSilentFix/ (Lcom/mojang/datafixers/schemas/Schema;Z)V +MD: net/minecraft/util/datafix/fixes/EntityArmorStandSilentFix/m_15328_ (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/EntityArmorStandSilentFix/fixTag (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/EntityArmorStandSilentFix/m_7504_ (Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; net/minecraft/util/datafix/fixes/EntityArmorStandSilentFix/fix (Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; +MD: net/minecraft/util/datafix/fixes/EntityBlockStateFix/ ()V net/minecraft/util/datafix/fixes/EntityBlockStateFix/ ()V +MD: net/minecraft/util/datafix/fixes/EntityBlockStateFix/ (Lcom/mojang/datafixers/schemas/Schema;Z)V net/minecraft/util/datafix/fixes/EntityBlockStateFix/ (Lcom/mojang/datafixers/schemas/Schema;Z)V +MD: net/minecraft/util/datafix/fixes/EntityBlockStateFix/m_145261_ (Lcom/mojang/datafixers/util/Pair;)Ljava/lang/Integer; net/minecraft/util/datafix/fixes/EntityBlockStateFix/lambda$updateFallingBlock$7 (Lcom/mojang/datafixers/util/Pair;)Ljava/lang/Integer; +MD: net/minecraft/util/datafix/fixes/EntityBlockStateFix/m_145263_ (Lcom/mojang/serialization/Dynamic;)Ljava/lang/Integer; net/minecraft/util/datafix/fixes/EntityBlockStateFix/lambda$updateFallingBlock$8 (Lcom/mojang/serialization/Dynamic;)Ljava/lang/Integer; +MD: net/minecraft/util/datafix/fixes/EntityBlockStateFix/m_145265_ (Lcom/mojang/serialization/Dynamic;Lcom/mojang/datafixers/util/Unit;)Ljava/lang/Integer; net/minecraft/util/datafix/fixes/EntityBlockStateFix/lambda$updateFallingBlock$9 (Lcom/mojang/serialization/Dynamic;Lcom/mojang/datafixers/util/Unit;)Ljava/lang/Integer; +MD: net/minecraft/util/datafix/fixes/EntityBlockStateFix/m_145268_ (Ljava/lang/Integer;)Ljava/lang/Integer; net/minecraft/util/datafix/fixes/EntityBlockStateFix/lambda$updateBlockToBlockState$11 (Ljava/lang/Integer;)Ljava/lang/Integer; +MD: net/minecraft/util/datafix/fixes/EntityBlockStateFix/m_145270_ (Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; net/minecraft/util/datafix/fixes/EntityBlockStateFix/lambda$makeRule$4 (Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; +MD: net/minecraft/util/datafix/fixes/EntityBlockStateFix/m_145272_ (Ljava/lang/Integer;)Ljava/lang/Integer; net/minecraft/util/datafix/fixes/EntityBlockStateFix/lambda$updateFallingBlock$6 (Ljava/lang/Integer;)Ljava/lang/Integer; +MD: net/minecraft/util/datafix/fixes/EntityBlockStateFix/m_15335_ (Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; net/minecraft/util/datafix/fixes/EntityBlockStateFix/updateFallingBlock (Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; +MD: net/minecraft/util/datafix/fixes/EntityBlockStateFix/m_15337_ (Lcom/mojang/datafixers/Typed;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;)Lcom/mojang/datafixers/Typed; net/minecraft/util/datafix/fixes/EntityBlockStateFix/updateBlockToBlockState (Lcom/mojang/datafixers/Typed;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;)Lcom/mojang/datafixers/Typed; +MD: net/minecraft/util/datafix/fixes/EntityBlockStateFix/m_15342_ (Lcom/mojang/datafixers/Typed;Ljava/lang/String;Ljava/util/function/Function;)Lcom/mojang/datafixers/Typed; net/minecraft/util/datafix/fixes/EntityBlockStateFix/updateEntity (Lcom/mojang/datafixers/Typed;Ljava/lang/String;Ljava/util/function/Function;)Lcom/mojang/datafixers/Typed; +MD: net/minecraft/util/datafix/fixes/EntityBlockStateFix/m_15346_ (Lcom/mojang/datafixers/types/Type;Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; net/minecraft/util/datafix/fixes/EntityBlockStateFix/lambda$makeRule$3 (Lcom/mojang/datafixers/types/Type;Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; +MD: net/minecraft/util/datafix/fixes/EntityBlockStateFix/m_15353_ (Lcom/mojang/serialization/Dynamic;Lcom/mojang/datafixers/util/Either;)Lcom/mojang/datafixers/util/Either; net/minecraft/util/datafix/fixes/EntityBlockStateFix/lambda$updateFallingBlock$10 (Lcom/mojang/serialization/Dynamic;Lcom/mojang/datafixers/util/Either;)Lcom/mojang/datafixers/util/Either; +MD: net/minecraft/util/datafix/fixes/EntityBlockStateFix/m_15359_ (Lcom/mojang/serialization/Dynamic;Ljava/lang/String;Lcom/mojang/datafixers/util/Pair;)Lcom/mojang/datafixers/util/Pair; net/minecraft/util/datafix/fixes/EntityBlockStateFix/lambda$updateBlockToBlockState$12 (Lcom/mojang/serialization/Dynamic;Ljava/lang/String;Lcom/mojang/datafixers/util/Pair;)Lcom/mojang/datafixers/util/Pair; +MD: net/minecraft/util/datafix/fixes/EntityBlockStateFix/m_15365_ (Ljava/lang/String;)I net/minecraft/util/datafix/fixes/EntityBlockStateFix/getBlockId (Ljava/lang/String;)I +MD: net/minecraft/util/datafix/fixes/EntityBlockStateFix/m_15367_ (Ljava/util/HashMap;)V net/minecraft/util/datafix/fixes/EntityBlockStateFix/lambda$static$0 (Ljava/util/HashMap;)V +MD: net/minecraft/util/datafix/fixes/EntityBlockStateFix/m_15369_ (Ljava/util/function/Function;Ljava/util/function/Function;Ljava/util/function/Function;Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; net/minecraft/util/datafix/fixes/EntityBlockStateFix/lambda$makeRule$5 (Ljava/util/function/Function;Ljava/util/function/Function;Ljava/util/function/Function;Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; +MD: net/minecraft/util/datafix/fixes/EntityBlockStateFix/m_15378_ (Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; net/minecraft/util/datafix/fixes/EntityBlockStateFix/lambda$makeRule$2 (Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; +MD: net/minecraft/util/datafix/fixes/EntityBlockStateFix/m_15380_ (Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; net/minecraft/util/datafix/fixes/EntityBlockStateFix/lambda$makeRule$1 (Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; +MD: net/minecraft/util/datafix/fixes/EntityBlockStateFix/makeRule ()Lcom/mojang/datafixers/TypeRewriteRule; net/minecraft/util/datafix/fixes/EntityBlockStateFix/makeRule ()Lcom/mojang/datafixers/TypeRewriteRule; +MD: net/minecraft/util/datafix/fixes/EntityBrushableBlockFieldsRenameFix/ (Lcom/mojang/datafixers/schemas/Schema;)V net/minecraft/util/datafix/fixes/EntityBrushableBlockFieldsRenameFix/ (Lcom/mojang/datafixers/schemas/Schema;)V +MD: net/minecraft/util/datafix/fixes/EntityBrushableBlockFieldsRenameFix/m_276801_ (Lcom/mojang/serialization/Dynamic;Ljava/lang/String;Ljava/lang/String;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/EntityBrushableBlockFieldsRenameFix/renameField (Lcom/mojang/serialization/Dynamic;Ljava/lang/String;Ljava/lang/String;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/EntityBrushableBlockFieldsRenameFix/m_276826_ (Lcom/mojang/serialization/Dynamic;Ljava/lang/String;Ljava/lang/String;Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/EntityBrushableBlockFieldsRenameFix/lambda$renameField$0 (Lcom/mojang/serialization/Dynamic;Ljava/lang/String;Ljava/lang/String;Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/EntityBrushableBlockFieldsRenameFix/m_276988_ (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/EntityBrushableBlockFieldsRenameFix/fixTag (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/EntityBrushableBlockFieldsRenameFix/m_7504_ (Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; net/minecraft/util/datafix/fixes/EntityBrushableBlockFieldsRenameFix/fix (Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; +MD: net/minecraft/util/datafix/fixes/EntityCatSplitFix/ (Lcom/mojang/datafixers/schemas/Schema;Z)V net/minecraft/util/datafix/fixes/EntityCatSplitFix/ (Lcom/mojang/datafixers/schemas/Schema;Z)V +MD: net/minecraft/util/datafix/fixes/EntityCatSplitFix/m_6942_ (Ljava/lang/String;Lcom/mojang/serialization/Dynamic;)Lcom/mojang/datafixers/util/Pair; net/minecraft/util/datafix/fixes/EntityCatSplitFix/getNewNameAndTag (Ljava/lang/String;Lcom/mojang/serialization/Dynamic;)Lcom/mojang/datafixers/util/Pair; +MD: net/minecraft/util/datafix/fixes/EntityCodSalmonFix/ ()V net/minecraft/util/datafix/fixes/EntityCodSalmonFix/ ()V +MD: net/minecraft/util/datafix/fixes/EntityCodSalmonFix/ (Lcom/mojang/datafixers/schemas/Schema;Z)V net/minecraft/util/datafix/fixes/EntityCodSalmonFix/ (Lcom/mojang/datafixers/schemas/Schema;Z)V +MD: net/minecraft/util/datafix/fixes/EntityCodSalmonFix/m_7476_ (Ljava/lang/String;)Ljava/lang/String; net/minecraft/util/datafix/fixes/EntityCodSalmonFix/rename (Ljava/lang/String;)Ljava/lang/String; +MD: net/minecraft/util/datafix/fixes/EntityCustomNameToComponentFix/ (Lcom/mojang/datafixers/schemas/Schema;Z)V net/minecraft/util/datafix/fixes/EntityCustomNameToComponentFix/ (Lcom/mojang/datafixers/schemas/Schema;Z)V +MD: net/minecraft/util/datafix/fixes/EntityCustomNameToComponentFix/m_145274_ (Lcom/mojang/datafixers/Typed;Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/EntityCustomNameToComponentFix/lambda$makeRule$0 (Lcom/mojang/datafixers/Typed;Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/EntityCustomNameToComponentFix/m_15400_ (Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; net/minecraft/util/datafix/fixes/EntityCustomNameToComponentFix/lambda$makeRule$1 (Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; +MD: net/minecraft/util/datafix/fixes/EntityCustomNameToComponentFix/m_15407_ (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/EntityCustomNameToComponentFix/fixTagCustomName (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/EntityCustomNameToComponentFix/makeRule ()Lcom/mojang/datafixers/TypeRewriteRule; net/minecraft/util/datafix/fixes/EntityCustomNameToComponentFix/makeRule ()Lcom/mojang/datafixers/TypeRewriteRule; +MD: net/minecraft/util/datafix/fixes/EntityElderGuardianSplitFix/ (Lcom/mojang/datafixers/schemas/Schema;Z)V net/minecraft/util/datafix/fixes/EntityElderGuardianSplitFix/ (Lcom/mojang/datafixers/schemas/Schema;Z)V +MD: net/minecraft/util/datafix/fixes/EntityElderGuardianSplitFix/m_6942_ (Ljava/lang/String;Lcom/mojang/serialization/Dynamic;)Lcom/mojang/datafixers/util/Pair; net/minecraft/util/datafix/fixes/EntityElderGuardianSplitFix/getNewNameAndTag (Ljava/lang/String;Lcom/mojang/serialization/Dynamic;)Lcom/mojang/datafixers/util/Pair; +MD: net/minecraft/util/datafix/fixes/EntityEquipmentToArmorAndHandFix/ (Lcom/mojang/datafixers/schemas/Schema;Z)V net/minecraft/util/datafix/fixes/EntityEquipmentToArmorAndHandFix/ (Lcom/mojang/datafixers/schemas/Schema;Z)V +MD: net/minecraft/util/datafix/fixes/EntityEquipmentToArmorAndHandFix/m_145278_ ()Ljava/lang/IllegalStateException; net/minecraft/util/datafix/fixes/EntityEquipmentToArmorAndHandFix/lambda$cap$0 ()Ljava/lang/IllegalStateException; +MD: net/minecraft/util/datafix/fixes/EntityEquipmentToArmorAndHandFix/m_145279_ (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/EntityEquipmentToArmorAndHandFix/lambda$cap$1 (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/EntityEquipmentToArmorAndHandFix/m_15420_ (Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/types/Type;Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/types/Type;Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; net/minecraft/util/datafix/fixes/EntityEquipmentToArmorAndHandFix/lambda$cap$2 (Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/types/Type;Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/types/Type;Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; +MD: net/minecraft/util/datafix/fixes/EntityEquipmentToArmorAndHandFix/m_15426_ (Lcom/mojang/datafixers/types/Type;)Lcom/mojang/datafixers/TypeRewriteRule; net/minecraft/util/datafix/fixes/EntityEquipmentToArmorAndHandFix/cap (Lcom/mojang/datafixers/types/Type;)Lcom/mojang/datafixers/TypeRewriteRule; +MD: net/minecraft/util/datafix/fixes/EntityEquipmentToArmorAndHandFix/makeRule ()Lcom/mojang/datafixers/TypeRewriteRule; net/minecraft/util/datafix/fixes/EntityEquipmentToArmorAndHandFix/makeRule ()Lcom/mojang/datafixers/TypeRewriteRule; +MD: net/minecraft/util/datafix/fixes/EntityGoatMissingStateFix/ (Lcom/mojang/datafixers/schemas/Schema;)V net/minecraft/util/datafix/fixes/EntityGoatMissingStateFix/ (Lcom/mojang/datafixers/schemas/Schema;)V +MD: net/minecraft/util/datafix/fixes/EntityGoatMissingStateFix/m_238369_ (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/EntityGoatMissingStateFix/lambda$fix$0 (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/EntityGoatMissingStateFix/m_7504_ (Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; net/minecraft/util/datafix/fixes/EntityGoatMissingStateFix/fix (Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; +MD: net/minecraft/util/datafix/fixes/EntityHealthFix/ ()V net/minecraft/util/datafix/fixes/EntityHealthFix/ ()V +MD: net/minecraft/util/datafix/fixes/EntityHealthFix/ (Lcom/mojang/datafixers/schemas/Schema;Z)V net/minecraft/util/datafix/fixes/EntityHealthFix/ (Lcom/mojang/datafixers/schemas/Schema;Z)V +MD: net/minecraft/util/datafix/fixes/EntityHealthFix/m_15436_ (Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; net/minecraft/util/datafix/fixes/EntityHealthFix/lambda$makeRule$0 (Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; +MD: net/minecraft/util/datafix/fixes/EntityHealthFix/m_15438_ (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/EntityHealthFix/fixTag (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/EntityHealthFix/makeRule ()Lcom/mojang/datafixers/TypeRewriteRule; net/minecraft/util/datafix/fixes/EntityHealthFix/makeRule ()Lcom/mojang/datafixers/TypeRewriteRule; +MD: net/minecraft/util/datafix/fixes/EntityHorseSaddleFix/ (Lcom/mojang/datafixers/schemas/Schema;Z)V net/minecraft/util/datafix/fixes/EntityHorseSaddleFix/ (Lcom/mojang/datafixers/schemas/Schema;Z)V +MD: net/minecraft/util/datafix/fixes/EntityHorseSaddleFix/m_7504_ (Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; net/minecraft/util/datafix/fixes/EntityHorseSaddleFix/fix (Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; +MD: net/minecraft/util/datafix/fixes/EntityHorseSplitFix/ (Lcom/mojang/datafixers/schemas/Schema;Z)V net/minecraft/util/datafix/fixes/EntityHorseSplitFix/ (Lcom/mojang/datafixers/schemas/Schema;Z)V +MD: net/minecraft/util/datafix/fixes/EntityHorseSplitFix/m_15449_ ()Ljava/lang/IllegalStateException; net/minecraft/util/datafix/fixes/EntityHorseSplitFix/lambda$fix$0 ()Ljava/lang/IllegalStateException; +MD: net/minecraft/util/datafix/fixes/EntityHorseSplitFix/m_6911_ (Ljava/lang/String;Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/util/Pair; net/minecraft/util/datafix/fixes/EntityHorseSplitFix/fix (Ljava/lang/String;Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/util/Pair; +MD: net/minecraft/util/datafix/fixes/EntityIdFix/ ()V net/minecraft/util/datafix/fixes/EntityIdFix/ ()V +MD: net/minecraft/util/datafix/fixes/EntityIdFix/ (Lcom/mojang/datafixers/schemas/Schema;Z)V net/minecraft/util/datafix/fixes/EntityIdFix/ (Lcom/mojang/datafixers/schemas/Schema;Z)V +MD: net/minecraft/util/datafix/fixes/EntityIdFix/m_145281_ (Lcom/mojang/datafixers/util/Pair;)Lcom/mojang/datafixers/util/Pair; net/minecraft/util/datafix/fixes/EntityIdFix/lambda$makeRule$2 (Lcom/mojang/datafixers/util/Pair;)Lcom/mojang/datafixers/util/Pair; +MD: net/minecraft/util/datafix/fixes/EntityIdFix/m_145283_ (Ljava/lang/String;)Ljava/lang/String; net/minecraft/util/datafix/fixes/EntityIdFix/lambda$makeRule$1 (Ljava/lang/String;)Ljava/lang/String; +MD: net/minecraft/util/datafix/fixes/EntityIdFix/m_15460_ (Lcom/mojang/serialization/DynamicOps;)Ljava/util/function/Function; net/minecraft/util/datafix/fixes/EntityIdFix/lambda$makeRule$3 (Lcom/mojang/serialization/DynamicOps;)Ljava/util/function/Function; +MD: net/minecraft/util/datafix/fixes/EntityIdFix/m_15464_ (Ljava/util/HashMap;)V net/minecraft/util/datafix/fixes/EntityIdFix/lambda$static$0 (Ljava/util/HashMap;)V +MD: net/minecraft/util/datafix/fixes/EntityIdFix/makeRule ()Lcom/mojang/datafixers/TypeRewriteRule; net/minecraft/util/datafix/fixes/EntityIdFix/makeRule ()Lcom/mojang/datafixers/TypeRewriteRule; +MD: net/minecraft/util/datafix/fixes/EntityItemFrameDirectionFix/ (Lcom/mojang/datafixers/schemas/Schema;Z)V net/minecraft/util/datafix/fixes/EntityItemFrameDirectionFix/ (Lcom/mojang/datafixers/schemas/Schema;Z)V +MD: net/minecraft/util/datafix/fixes/EntityItemFrameDirectionFix/m_15470_ (B)B net/minecraft/util/datafix/fixes/EntityItemFrameDirectionFix/direction2dTo3d (B)B +MD: net/minecraft/util/datafix/fixes/EntityItemFrameDirectionFix/m_15474_ (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/EntityItemFrameDirectionFix/fixTag (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/EntityItemFrameDirectionFix/m_7504_ (Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; net/minecraft/util/datafix/fixes/EntityItemFrameDirectionFix/fix (Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; +MD: net/minecraft/util/datafix/fixes/EntityMinecartIdentifiersFix/ ()V net/minecraft/util/datafix/fixes/EntityMinecartIdentifiersFix/ ()V +MD: net/minecraft/util/datafix/fixes/EntityMinecartIdentifiersFix/ (Lcom/mojang/datafixers/schemas/Schema;Z)V net/minecraft/util/datafix/fixes/EntityMinecartIdentifiersFix/ (Lcom/mojang/datafixers/schemas/Schema;Z)V +MD: net/minecraft/util/datafix/fixes/EntityMinecartIdentifiersFix/m_145285_ ()Ljava/lang/IllegalStateException; net/minecraft/util/datafix/fixes/EntityMinecartIdentifiersFix/lambda$makeRule$1 ()Ljava/lang/IllegalStateException; +MD: net/minecraft/util/datafix/fixes/EntityMinecartIdentifiersFix/m_145286_ (Lcom/mojang/datafixers/types/templates/TaggedChoice$TaggedChoiceType;Lcom/mojang/serialization/DynamicOps;Lcom/mojang/datafixers/types/templates/TaggedChoice$TaggedChoiceType;Lcom/mojang/datafixers/util/Pair;)Lcom/mojang/datafixers/util/Pair; net/minecraft/util/datafix/fixes/EntityMinecartIdentifiersFix/lambda$makeRule$2 (Lcom/mojang/datafixers/types/templates/TaggedChoice$TaggedChoiceType;Lcom/mojang/serialization/DynamicOps;Lcom/mojang/datafixers/types/templates/TaggedChoice$TaggedChoiceType;Lcom/mojang/datafixers/util/Pair;)Lcom/mojang/datafixers/util/Pair; +MD: net/minecraft/util/datafix/fixes/EntityMinecartIdentifiersFix/m_145291_ (Lcom/mojang/datafixers/types/templates/TaggedChoice$TaggedChoiceType;Ljava/lang/String;Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/DataResult; net/minecraft/util/datafix/fixes/EntityMinecartIdentifiersFix/lambda$makeRule$0 (Lcom/mojang/datafixers/types/templates/TaggedChoice$TaggedChoiceType;Ljava/lang/String;Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/DataResult; +MD: net/minecraft/util/datafix/fixes/EntityMinecartIdentifiersFix/m_15482_ (Lcom/mojang/datafixers/types/templates/TaggedChoice$TaggedChoiceType;Lcom/mojang/datafixers/types/templates/TaggedChoice$TaggedChoiceType;Lcom/mojang/serialization/DynamicOps;)Ljava/util/function/Function; net/minecraft/util/datafix/fixes/EntityMinecartIdentifiersFix/lambda$makeRule$3 (Lcom/mojang/datafixers/types/templates/TaggedChoice$TaggedChoiceType;Lcom/mojang/datafixers/types/templates/TaggedChoice$TaggedChoiceType;Lcom/mojang/serialization/DynamicOps;)Ljava/util/function/Function; +MD: net/minecraft/util/datafix/fixes/EntityMinecartIdentifiersFix/makeRule ()Lcom/mojang/datafixers/TypeRewriteRule; net/minecraft/util/datafix/fixes/EntityMinecartIdentifiersFix/makeRule ()Lcom/mojang/datafixers/TypeRewriteRule; +MD: net/minecraft/util/datafix/fixes/EntityPaintingFieldsRenameFix/ (Lcom/mojang/datafixers/schemas/Schema;)V net/minecraft/util/datafix/fixes/EntityPaintingFieldsRenameFix/ (Lcom/mojang/datafixers/schemas/Schema;)V +MD: net/minecraft/util/datafix/fixes/EntityPaintingFieldsRenameFix/m_216609_ (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/EntityPaintingFieldsRenameFix/fixTag (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/EntityPaintingFieldsRenameFix/m_216611_ (Lcom/mojang/serialization/Dynamic;Ljava/lang/String;Ljava/lang/String;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/EntityPaintingFieldsRenameFix/renameField (Lcom/mojang/serialization/Dynamic;Ljava/lang/String;Ljava/lang/String;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/EntityPaintingFieldsRenameFix/m_216615_ (Lcom/mojang/serialization/Dynamic;Ljava/lang/String;Ljava/lang/String;Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/EntityPaintingFieldsRenameFix/lambda$renameField$0 (Lcom/mojang/serialization/Dynamic;Ljava/lang/String;Ljava/lang/String;Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/EntityPaintingFieldsRenameFix/m_7504_ (Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; net/minecraft/util/datafix/fixes/EntityPaintingFieldsRenameFix/fix (Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; +MD: net/minecraft/util/datafix/fixes/EntityPaintingItemFrameDirectionFix/ ()V net/minecraft/util/datafix/fixes/EntityPaintingItemFrameDirectionFix/ ()V +MD: net/minecraft/util/datafix/fixes/EntityPaintingItemFrameDirectionFix/ (Lcom/mojang/datafixers/schemas/Schema;Z)V net/minecraft/util/datafix/fixes/EntityPaintingItemFrameDirectionFix/ (Lcom/mojang/datafixers/schemas/Schema;Z)V +MD: net/minecraft/util/datafix/fixes/EntityPaintingItemFrameDirectionFix/m_145295_ (Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; net/minecraft/util/datafix/fixes/EntityPaintingItemFrameDirectionFix/lambda$makeRule$4 (Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; +MD: net/minecraft/util/datafix/fixes/EntityPaintingItemFrameDirectionFix/m_145297_ (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/EntityPaintingItemFrameDirectionFix/lambda$makeRule$3 (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/EntityPaintingItemFrameDirectionFix/m_145299_ (Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; net/minecraft/util/datafix/fixes/EntityPaintingItemFrameDirectionFix/lambda$makeRule$1 (Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; +MD: net/minecraft/util/datafix/fixes/EntityPaintingItemFrameDirectionFix/m_145301_ (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/EntityPaintingItemFrameDirectionFix/lambda$makeRule$0 (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/EntityPaintingItemFrameDirectionFix/m_15501_ (Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/types/Type;Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; net/minecraft/util/datafix/fixes/EntityPaintingItemFrameDirectionFix/lambda$makeRule$5 (Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/types/Type;Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; +MD: net/minecraft/util/datafix/fixes/EntityPaintingItemFrameDirectionFix/m_15509_ (Lcom/mojang/serialization/Dynamic;ZZ)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/EntityPaintingItemFrameDirectionFix/doFix (Lcom/mojang/serialization/Dynamic;ZZ)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/EntityPaintingItemFrameDirectionFix/m_15513_ (Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/types/Type;Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; net/minecraft/util/datafix/fixes/EntityPaintingItemFrameDirectionFix/lambda$makeRule$2 (Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/types/Type;Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; +MD: net/minecraft/util/datafix/fixes/EntityPaintingItemFrameDirectionFix/makeRule ()Lcom/mojang/datafixers/TypeRewriteRule; net/minecraft/util/datafix/fixes/EntityPaintingItemFrameDirectionFix/makeRule ()Lcom/mojang/datafixers/TypeRewriteRule; +MD: net/minecraft/util/datafix/fixes/EntityPaintingMotiveFix/ ()V net/minecraft/util/datafix/fixes/EntityPaintingMotiveFix/ ()V +MD: net/minecraft/util/datafix/fixes/EntityPaintingMotiveFix/ (Lcom/mojang/datafixers/schemas/Schema;Z)V net/minecraft/util/datafix/fixes/EntityPaintingMotiveFix/ (Lcom/mojang/datafixers/schemas/Schema;Z)V +MD: net/minecraft/util/datafix/fixes/EntityPaintingMotiveFix/m_15529_ (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/EntityPaintingMotiveFix/fixTag (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/EntityPaintingMotiveFix/m_15531_ (Ljava/util/HashMap;)V net/minecraft/util/datafix/fixes/EntityPaintingMotiveFix/lambda$static$0 (Ljava/util/HashMap;)V +MD: net/minecraft/util/datafix/fixes/EntityPaintingMotiveFix/m_7504_ (Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; net/minecraft/util/datafix/fixes/EntityPaintingMotiveFix/fix (Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; +MD: net/minecraft/util/datafix/fixes/EntityProjectileOwnerFix/ (Lcom/mojang/datafixers/schemas/Schema;)V net/minecraft/util/datafix/fixes/EntityProjectileOwnerFix/ (Lcom/mojang/datafixers/schemas/Schema;)V +MD: net/minecraft/util/datafix/fixes/EntityProjectileOwnerFix/m_15559_ (JJ)[I net/minecraft/util/datafix/fixes/EntityProjectileOwnerFix/createUUIDArray (JJ)[I +MD: net/minecraft/util/datafix/fixes/EntityProjectileOwnerFix/m_15562_ (Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; net/minecraft/util/datafix/fixes/EntityProjectileOwnerFix/updateProjectiles (Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; +MD: net/minecraft/util/datafix/fixes/EntityProjectileOwnerFix/m_15564_ (Lcom/mojang/datafixers/Typed;Ljava/lang/String;Ljava/util/function/Function;)Lcom/mojang/datafixers/Typed; net/minecraft/util/datafix/fixes/EntityProjectileOwnerFix/updateEntity (Lcom/mojang/datafixers/Typed;Ljava/lang/String;Ljava/util/function/Function;)Lcom/mojang/datafixers/Typed; +MD: net/minecraft/util/datafix/fixes/EntityProjectileOwnerFix/m_15568_ (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/EntityProjectileOwnerFix/updateOwnerArrow (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/EntityProjectileOwnerFix/m_15570_ (Lcom/mojang/serialization/Dynamic;JJ)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/EntityProjectileOwnerFix/setUUID (Lcom/mojang/serialization/Dynamic;JJ)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/EntityProjectileOwnerFix/m_15574_ (Ljava/util/function/Function;Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; net/minecraft/util/datafix/fixes/EntityProjectileOwnerFix/lambda$updateEntity$0 (Ljava/util/function/Function;Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; +MD: net/minecraft/util/datafix/fixes/EntityProjectileOwnerFix/m_15577_ (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/EntityProjectileOwnerFix/updateOwnerLlamaSpit (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/EntityProjectileOwnerFix/m_15579_ (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/EntityProjectileOwnerFix/updateItemPotion (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/EntityProjectileOwnerFix/m_15581_ (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/EntityProjectileOwnerFix/updateOwnerThrowable (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/EntityProjectileOwnerFix/makeRule ()Lcom/mojang/datafixers/TypeRewriteRule; net/minecraft/util/datafix/fixes/EntityProjectileOwnerFix/makeRule ()Lcom/mojang/datafixers/TypeRewriteRule; +MD: net/minecraft/util/datafix/fixes/EntityPufferfishRenameFix/ ()V net/minecraft/util/datafix/fixes/EntityPufferfishRenameFix/ ()V +MD: net/minecraft/util/datafix/fixes/EntityPufferfishRenameFix/ (Lcom/mojang/datafixers/schemas/Schema;Z)V net/minecraft/util/datafix/fixes/EntityPufferfishRenameFix/ (Lcom/mojang/datafixers/schemas/Schema;Z)V +MD: net/minecraft/util/datafix/fixes/EntityPufferfishRenameFix/m_7476_ (Ljava/lang/String;)Ljava/lang/String; net/minecraft/util/datafix/fixes/EntityPufferfishRenameFix/rename (Ljava/lang/String;)Ljava/lang/String; +MD: net/minecraft/util/datafix/fixes/EntityRavagerRenameFix/ ()V net/minecraft/util/datafix/fixes/EntityRavagerRenameFix/ ()V +MD: net/minecraft/util/datafix/fixes/EntityRavagerRenameFix/ (Lcom/mojang/datafixers/schemas/Schema;Z)V net/minecraft/util/datafix/fixes/EntityRavagerRenameFix/ (Lcom/mojang/datafixers/schemas/Schema;Z)V +MD: net/minecraft/util/datafix/fixes/EntityRavagerRenameFix/m_7476_ (Ljava/lang/String;)Ljava/lang/String; net/minecraft/util/datafix/fixes/EntityRavagerRenameFix/rename (Ljava/lang/String;)Ljava/lang/String; +MD: net/minecraft/util/datafix/fixes/EntityRedundantChanceTagsFix/ ()V net/minecraft/util/datafix/fixes/EntityRedundantChanceTagsFix/ ()V +MD: net/minecraft/util/datafix/fixes/EntityRedundantChanceTagsFix/ (Lcom/mojang/datafixers/schemas/Schema;Z)V net/minecraft/util/datafix/fixes/EntityRedundantChanceTagsFix/ (Lcom/mojang/datafixers/schemas/Schema;Z)V +MD: net/minecraft/util/datafix/fixes/EntityRedundantChanceTagsFix/m_145303_ (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/EntityRedundantChanceTagsFix/lambda$makeRule$0 (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/EntityRedundantChanceTagsFix/m_145305_ (Ljava/lang/Float;)Z net/minecraft/util/datafix/fixes/EntityRedundantChanceTagsFix/lambda$isZeroList$2 (Ljava/lang/Float;)Z +MD: net/minecraft/util/datafix/fixes/EntityRedundantChanceTagsFix/m_15603_ (ILjava/util/List;)Ljava/lang/Boolean; net/minecraft/util/datafix/fixes/EntityRedundantChanceTagsFix/lambda$isZeroList$3 (ILjava/util/List;)Ljava/lang/Boolean; +MD: net/minecraft/util/datafix/fixes/EntityRedundantChanceTagsFix/m_15606_ (Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; net/minecraft/util/datafix/fixes/EntityRedundantChanceTagsFix/lambda$makeRule$1 (Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; +MD: net/minecraft/util/datafix/fixes/EntityRedundantChanceTagsFix/m_15610_ (Lcom/mojang/serialization/OptionalDynamic;I)Z net/minecraft/util/datafix/fixes/EntityRedundantChanceTagsFix/isZeroList (Lcom/mojang/serialization/OptionalDynamic;I)Z +MD: net/minecraft/util/datafix/fixes/EntityRedundantChanceTagsFix/makeRule ()Lcom/mojang/datafixers/TypeRewriteRule; net/minecraft/util/datafix/fixes/EntityRedundantChanceTagsFix/makeRule ()Lcom/mojang/datafixers/TypeRewriteRule; +MD: net/minecraft/util/datafix/fixes/EntityRenameFix/ (Ljava/lang/String;Lcom/mojang/datafixers/schemas/Schema;Z)V net/minecraft/util/datafix/fixes/EntityRenameFix/ (Ljava/lang/String;Lcom/mojang/datafixers/schemas/Schema;Z)V +MD: net/minecraft/util/datafix/fixes/EntityRenameFix/m_15621_ (Lcom/mojang/datafixers/types/templates/TaggedChoice$TaggedChoiceType;Lcom/mojang/datafixers/types/templates/TaggedChoice$TaggedChoiceType;Lcom/mojang/serialization/DynamicOps;)Ljava/util/function/Function; net/minecraft/util/datafix/fixes/EntityRenameFix/lambda$makeRule$1 (Lcom/mojang/datafixers/types/templates/TaggedChoice$TaggedChoiceType;Lcom/mojang/datafixers/types/templates/TaggedChoice$TaggedChoiceType;Lcom/mojang/serialization/DynamicOps;)Ljava/util/function/Function; +MD: net/minecraft/util/datafix/fixes/EntityRenameFix/m_15630_ (Ljava/lang/Object;Lcom/mojang/serialization/DynamicOps;Lcom/mojang/datafixers/types/Type;)Lcom/mojang/datafixers/Typed; net/minecraft/util/datafix/fixes/EntityRenameFix/getEntity (Ljava/lang/Object;Lcom/mojang/serialization/DynamicOps;Lcom/mojang/datafixers/types/Type;)Lcom/mojang/datafixers/Typed; +MD: net/minecraft/util/datafix/fixes/EntityRenameFix/m_241758_ (Lcom/mojang/datafixers/types/templates/TaggedChoice$TaggedChoiceType;Lcom/mojang/serialization/DynamicOps;Lcom/mojang/datafixers/types/templates/TaggedChoice$TaggedChoiceType;Lcom/mojang/datafixers/util/Pair;)Lcom/mojang/datafixers/util/Pair; net/minecraft/util/datafix/fixes/EntityRenameFix/lambda$makeRule$0 (Lcom/mojang/datafixers/types/templates/TaggedChoice$TaggedChoiceType;Lcom/mojang/serialization/DynamicOps;Lcom/mojang/datafixers/types/templates/TaggedChoice$TaggedChoiceType;Lcom/mojang/datafixers/util/Pair;)Lcom/mojang/datafixers/util/Pair; +MD: net/minecraft/util/datafix/fixes/EntityRenameFix/m_6911_ (Ljava/lang/String;Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/util/Pair; net/minecraft/util/datafix/fixes/EntityRenameFix/fix (Ljava/lang/String;Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/util/Pair; +MD: net/minecraft/util/datafix/fixes/EntityRenameFix/makeRule ()Lcom/mojang/datafixers/TypeRewriteRule; net/minecraft/util/datafix/fixes/EntityRenameFix/makeRule ()Lcom/mojang/datafixers/TypeRewriteRule; +MD: net/minecraft/util/datafix/fixes/EntityRidingToPassengersFix/ (Lcom/mojang/datafixers/schemas/Schema;Z)V net/minecraft/util/datafix/fixes/EntityRidingToPassengersFix/ (Lcom/mojang/datafixers/schemas/Schema;Z)V +MD: net/minecraft/util/datafix/fixes/EntityRidingToPassengersFix/m_145312_ ()Ljava/lang/IllegalStateException; net/minecraft/util/datafix/fixes/EntityRidingToPassengersFix/lambda$cap$4 ()Ljava/lang/IllegalStateException; +MD: net/minecraft/util/datafix/fixes/EntityRidingToPassengersFix/m_145313_ (Lcom/mojang/datafixers/types/Type;Lcom/mojang/serialization/DynamicOps;Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/types/Type;Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/util/Pair;)Lcom/mojang/datafixers/util/Pair; net/minecraft/util/datafix/fixes/EntityRidingToPassengersFix/lambda$cap$5 (Lcom/mojang/datafixers/types/Type;Lcom/mojang/serialization/DynamicOps;Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/types/Type;Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/util/Pair;)Lcom/mojang/datafixers/util/Pair; +MD: net/minecraft/util/datafix/fixes/EntityRidingToPassengersFix/m_145321_ (Lcom/mojang/datafixers/types/Type;Lcom/mojang/serialization/DynamicOps;Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/util/Pair;)Lcom/mojang/datafixers/util/Either; net/minecraft/util/datafix/fixes/EntityRidingToPassengersFix/lambda$cap$2 (Lcom/mojang/datafixers/types/Type;Lcom/mojang/serialization/DynamicOps;Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/util/Pair;)Lcom/mojang/datafixers/util/Either; +MD: net/minecraft/util/datafix/fixes/EntityRidingToPassengersFix/m_145327_ ()Ljava/lang/IllegalStateException; net/minecraft/util/datafix/fixes/EntityRidingToPassengersFix/lambda$cap$3 ()Ljava/lang/IllegalStateException; +MD: net/minecraft/util/datafix/fixes/EntityRidingToPassengersFix/m_145328_ ()Ljava/lang/IllegalStateException; net/minecraft/util/datafix/fixes/EntityRidingToPassengersFix/lambda$cap$1 ()Ljava/lang/IllegalStateException; +MD: net/minecraft/util/datafix/fixes/EntityRidingToPassengersFix/m_145329_ ()Ljava/lang/IllegalStateException; net/minecraft/util/datafix/fixes/EntityRidingToPassengersFix/lambda$cap$0 ()Ljava/lang/IllegalStateException; +MD: net/minecraft/util/datafix/fixes/EntityRidingToPassengersFix/m_15641_ (Lcom/mojang/datafixers/schemas/Schema;Lcom/mojang/datafixers/schemas/Schema;Lcom/mojang/datafixers/types/Type;Lcom/mojang/datafixers/types/Type;Lcom/mojang/datafixers/types/Type;)Lcom/mojang/datafixers/TypeRewriteRule; net/minecraft/util/datafix/fixes/EntityRidingToPassengersFix/cap (Lcom/mojang/datafixers/schemas/Schema;Lcom/mojang/datafixers/schemas/Schema;Lcom/mojang/datafixers/types/Type;Lcom/mojang/datafixers/types/Type;Lcom/mojang/datafixers/types/Type;)Lcom/mojang/datafixers/TypeRewriteRule; +MD: net/minecraft/util/datafix/fixes/EntityRidingToPassengersFix/m_15647_ (Lcom/mojang/datafixers/types/Type;Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/types/Type;Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/serialization/DynamicOps;)Ljava/util/function/Function; net/minecraft/util/datafix/fixes/EntityRidingToPassengersFix/lambda$cap$6 (Lcom/mojang/datafixers/types/Type;Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/types/Type;Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/serialization/DynamicOps;)Ljava/util/function/Function; +MD: net/minecraft/util/datafix/fixes/EntityRidingToPassengersFix/makeRule ()Lcom/mojang/datafixers/TypeRewriteRule; net/minecraft/util/datafix/fixes/EntityRidingToPassengersFix/makeRule ()Lcom/mojang/datafixers/TypeRewriteRule; +MD: net/minecraft/util/datafix/fixes/EntityShulkerColorFix/ (Lcom/mojang/datafixers/schemas/Schema;Z)V net/minecraft/util/datafix/fixes/EntityShulkerColorFix/ (Lcom/mojang/datafixers/schemas/Schema;Z)V +MD: net/minecraft/util/datafix/fixes/EntityShulkerColorFix/m_15677_ (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/EntityShulkerColorFix/fixTag (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/EntityShulkerColorFix/m_7504_ (Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; net/minecraft/util/datafix/fixes/EntityShulkerColorFix/fix (Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; +MD: net/minecraft/util/datafix/fixes/EntityShulkerRotationFix/ (Lcom/mojang/datafixers/schemas/Schema;)V net/minecraft/util/datafix/fixes/EntityShulkerRotationFix/ (Lcom/mojang/datafixers/schemas/Schema;)V +MD: net/minecraft/util/datafix/fixes/EntityShulkerRotationFix/m_15683_ (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/EntityShulkerRotationFix/fixTag (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/EntityShulkerRotationFix/m_15685_ (Lcom/mojang/serialization/Dynamic;)Ljava/lang/Double; net/minecraft/util/datafix/fixes/EntityShulkerRotationFix/lambda$fixTag$0 (Lcom/mojang/serialization/Dynamic;)Ljava/lang/Double; +MD: net/minecraft/util/datafix/fixes/EntityShulkerRotationFix/m_7504_ (Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; net/minecraft/util/datafix/fixes/EntityShulkerRotationFix/fix (Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; +MD: net/minecraft/util/datafix/fixes/EntitySkeletonSplitFix/ (Lcom/mojang/datafixers/schemas/Schema;Z)V net/minecraft/util/datafix/fixes/EntitySkeletonSplitFix/ (Lcom/mojang/datafixers/schemas/Schema;Z)V +MD: net/minecraft/util/datafix/fixes/EntitySkeletonSplitFix/m_6942_ (Ljava/lang/String;Lcom/mojang/serialization/Dynamic;)Lcom/mojang/datafixers/util/Pair; net/minecraft/util/datafix/fixes/EntitySkeletonSplitFix/getNewNameAndTag (Ljava/lang/String;Lcom/mojang/serialization/Dynamic;)Lcom/mojang/datafixers/util/Pair; +MD: net/minecraft/util/datafix/fixes/EntityStringUuidFix/ (Lcom/mojang/datafixers/schemas/Schema;Z)V net/minecraft/util/datafix/fixes/EntityStringUuidFix/ (Lcom/mojang/datafixers/schemas/Schema;Z)V +MD: net/minecraft/util/datafix/fixes/EntityStringUuidFix/m_145330_ (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/EntityStringUuidFix/lambda$makeRule$0 (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/EntityStringUuidFix/m_15696_ (Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; net/minecraft/util/datafix/fixes/EntityStringUuidFix/lambda$makeRule$1 (Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; +MD: net/minecraft/util/datafix/fixes/EntityStringUuidFix/makeRule ()Lcom/mojang/datafixers/TypeRewriteRule; net/minecraft/util/datafix/fixes/EntityStringUuidFix/makeRule ()Lcom/mojang/datafixers/TypeRewriteRule; +MD: net/minecraft/util/datafix/fixes/EntityTheRenameningFix/ ()V net/minecraft/util/datafix/fixes/EntityTheRenameningFix/ ()V +MD: net/minecraft/util/datafix/fixes/EntityTheRenameningFix/ (Lcom/mojang/datafixers/schemas/Schema;Z)V net/minecraft/util/datafix/fixes/EntityTheRenameningFix/ (Lcom/mojang/datafixers/schemas/Schema;Z)V +MD: net/minecraft/util/datafix/fixes/EntityTheRenameningFix/m_7476_ (Ljava/lang/String;)Ljava/lang/String; net/minecraft/util/datafix/fixes/EntityTheRenameningFix/rename (Ljava/lang/String;)Ljava/lang/String; +MD: net/minecraft/util/datafix/fixes/EntityTippedArrowFix/ (Lcom/mojang/datafixers/schemas/Schema;Z)V net/minecraft/util/datafix/fixes/EntityTippedArrowFix/ (Lcom/mojang/datafixers/schemas/Schema;Z)V +MD: net/minecraft/util/datafix/fixes/EntityTippedArrowFix/m_7476_ (Ljava/lang/String;)Ljava/lang/String; net/minecraft/util/datafix/fixes/EntityTippedArrowFix/rename (Ljava/lang/String;)Ljava/lang/String; +MD: net/minecraft/util/datafix/fixes/EntityUUIDFix/ ()V net/minecraft/util/datafix/fixes/EntityUUIDFix/ ()V +MD: net/minecraft/util/datafix/fixes/EntityUUIDFix/ (Lcom/mojang/datafixers/schemas/Schema;)V net/minecraft/util/datafix/fixes/EntityUUIDFix/ (Lcom/mojang/datafixers/schemas/Schema;)V +MD: net/minecraft/util/datafix/fixes/EntityUUIDFix/m_145333_ (Lcom/mojang/serialization/Dynamic;Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/EntityUUIDFix/lambda$updateLivingEntity$11 (Lcom/mojang/serialization/Dynamic;Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/EntityUUIDFix/m_145336_ (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/EntityUUIDFix/lambda$updateLivingEntity$12 (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/EntityUUIDFix/m_145338_ (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/EntityUUIDFix/lambda$updateLivingEntity$10 (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/EntityUUIDFix/m_145340_ (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/EntityUUIDFix/lambda$updateFox$6 (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/EntityUUIDFix/m_145342_ (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/EntityUUIDFix/lambda$updateFox$5 (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/EntityUUIDFix/m_145344_ (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/EntityUUIDFix/lambda$updatePiglin$3 (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/EntityUUIDFix/m_145346_ (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/EntityUUIDFix/lambda$updatePiglin$2 (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/EntityUUIDFix/m_145348_ (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/EntityUUIDFix/lambda$updatePiglin$1 (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/EntityUUIDFix/m_15724_ (Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; net/minecraft/util/datafix/fixes/EntityUUIDFix/lambda$makeRule$0 (Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; +MD: net/minecraft/util/datafix/fixes/EntityUUIDFix/m_15726_ (Lcom/mojang/serialization/Dynamic;Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/EntityUUIDFix/lambda$updateProjectile$14 (Lcom/mojang/serialization/Dynamic;Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/EntityUUIDFix/m_15729_ (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/EntityUUIDFix/updateLivingEntity (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/EntityUUIDFix/m_15731_ (Lcom/mojang/serialization/Dynamic;Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/EntityUUIDFix/lambda$updateLivingEntity$13 (Lcom/mojang/serialization/Dynamic;Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/EntityUUIDFix/m_15734_ (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/EntityUUIDFix/updateEntityUUID (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/EntityUUIDFix/m_15739_ (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/EntityUUIDFix/updatePiglin (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/EntityUUIDFix/m_15741_ (Lcom/mojang/serialization/Dynamic;Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/EntityUUIDFix/lambda$updateFox$8 (Lcom/mojang/serialization/Dynamic;Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/EntityUUIDFix/m_15744_ (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/EntityUUIDFix/updateEvokerFangs (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/EntityUUIDFix/m_15746_ (Lcom/mojang/serialization/Dynamic;Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/EntityUUIDFix/lambda$updateFox$7 (Lcom/mojang/serialization/Dynamic;Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/EntityUUIDFix/m_15749_ (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/EntityUUIDFix/updateZombieVillager (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/EntityUUIDFix/m_15751_ (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/EntityUUIDFix/updateAreaEffectCloud (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/EntityUUIDFix/m_15753_ (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/EntityUUIDFix/updateShulkerBullet (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/EntityUUIDFix/m_15755_ (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/EntityUUIDFix/updateItem (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/EntityUUIDFix/m_15757_ (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/EntityUUIDFix/updateFox (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/EntityUUIDFix/m_15759_ (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/EntityUUIDFix/updateHurtBy (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/EntityUUIDFix/m_15761_ (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/EntityUUIDFix/updateAnimalOwner (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/EntityUUIDFix/m_15763_ (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/EntityUUIDFix/updateAnimal (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/EntityUUIDFix/m_15766_ (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/EntityUUIDFix/updateMob (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/EntityUUIDFix/m_15768_ (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/EntityUUIDFix/updateProjectile (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/EntityUUIDFix/m_15774_ (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/EntityUUIDFix/lambda$updateMob$9 (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/EntityUUIDFix/m_15780_ (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/EntityUUIDFix/lambda$updatePiglin$4 (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/EntityUUIDFix/makeRule ()Lcom/mojang/datafixers/TypeRewriteRule; net/minecraft/util/datafix/fixes/EntityUUIDFix/makeRule ()Lcom/mojang/datafixers/TypeRewriteRule; +MD: net/minecraft/util/datafix/fixes/EntityVariantFix/ (Lcom/mojang/datafixers/schemas/Schema;Ljava/lang/String;Lcom/mojang/datafixers/DSL$TypeReference;Ljava/lang/String;Ljava/lang/String;Ljava/util/function/IntFunction;)V net/minecraft/util/datafix/fixes/EntityVariantFix/ (Lcom/mojang/datafixers/schemas/Schema;Ljava/lang/String;Lcom/mojang/datafixers/DSL$TypeReference;Ljava/lang/String;Ljava/lang/String;Ljava/util/function/IntFunction;)V +MD: net/minecraft/util/datafix/fixes/EntityVariantFix/m_216631_ (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/EntityVariantFix/lambda$fix$5 (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/EntityVariantFix/m_216633_ (Lcom/mojang/serialization/Dynamic;Ljava/lang/Number;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/EntityVariantFix/lambda$fix$3 (Lcom/mojang/serialization/Dynamic;Ljava/lang/Number;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/EntityVariantFix/m_216636_ (Lcom/mojang/serialization/Dynamic;Ljava/lang/String;Ljava/lang/String;Ljava/util/function/Function;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/EntityVariantFix/updateAndRename (Lcom/mojang/serialization/Dynamic;Ljava/lang/String;Ljava/lang/String;Ljava/util/function/Function;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/EntityVariantFix/m_216641_ (Lcom/mojang/serialization/Dynamic;Ljava/util/function/Function;Ljava/lang/String;Ljava/lang/String;Ljava/lang/Object;)Ljava/lang/Object; net/minecraft/util/datafix/fixes/EntityVariantFix/lambda$updateAndRename$2 (Lcom/mojang/serialization/Dynamic;Ljava/util/function/Function;Ljava/lang/String;Ljava/lang/String;Ljava/lang/Object;)Ljava/lang/Object; +MD: net/minecraft/util/datafix/fixes/EntityVariantFix/m_216647_ (Lcom/mojang/serialization/DynamicOps;Ljava/lang/Object;Ljava/lang/String;Ljava/util/function/Function;Ljava/lang/Object;)Ljava/lang/Object; net/minecraft/util/datafix/fixes/EntityVariantFix/lambda$updateAndRename$1 (Lcom/mojang/serialization/DynamicOps;Ljava/lang/Object;Ljava/lang/String;Ljava/util/function/Function;Ljava/lang/Object;)Ljava/lang/Object; +MD: net/minecraft/util/datafix/fixes/EntityVariantFix/m_216653_ (Ljava/util/function/Function;Lcom/mojang/serialization/DynamicOps;Ljava/lang/Object;)Ljava/lang/Object; net/minecraft/util/datafix/fixes/EntityVariantFix/lambda$updateAndRename$0 (Ljava/util/function/Function;Lcom/mojang/serialization/DynamicOps;Ljava/lang/Object;)Ljava/lang/Object; +MD: net/minecraft/util/datafix/fixes/EntityVariantFix/m_216657_ (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/EntityVariantFix/lambda$fix$4 (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/EntityVariantFix/m_7504_ (Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; net/minecraft/util/datafix/fixes/EntityVariantFix/fix (Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; +MD: net/minecraft/util/datafix/fixes/EntityWolfColorFix/ (Lcom/mojang/datafixers/schemas/Schema;Z)V net/minecraft/util/datafix/fixes/EntityWolfColorFix/ (Lcom/mojang/datafixers/schemas/Schema;Z)V +MD: net/minecraft/util/datafix/fixes/EntityWolfColorFix/m_15793_ (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/EntityWolfColorFix/fixTag (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/EntityWolfColorFix/m_15795_ (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/EntityWolfColorFix/lambda$fixTag$0 (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/EntityWolfColorFix/m_7504_ (Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; net/minecraft/util/datafix/fixes/EntityWolfColorFix/fix (Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; +MD: net/minecraft/util/datafix/fixes/EntityZombieSplitFix/ (Lcom/mojang/datafixers/schemas/Schema;Z)V net/minecraft/util/datafix/fixes/EntityZombieSplitFix/ (Lcom/mojang/datafixers/schemas/Schema;Z)V +MD: net/minecraft/util/datafix/fixes/EntityZombieSplitFix/m_6942_ (Ljava/lang/String;Lcom/mojang/serialization/Dynamic;)Lcom/mojang/datafixers/util/Pair; net/minecraft/util/datafix/fixes/EntityZombieSplitFix/getNewNameAndTag (Ljava/lang/String;Lcom/mojang/serialization/Dynamic;)Lcom/mojang/datafixers/util/Pair; +MD: net/minecraft/util/datafix/fixes/EntityZombieVillagerTypeFix/ ()V net/minecraft/util/datafix/fixes/EntityZombieVillagerTypeFix/ ()V +MD: net/minecraft/util/datafix/fixes/EntityZombieVillagerTypeFix/ (Lcom/mojang/datafixers/schemas/Schema;Z)V net/minecraft/util/datafix/fixes/EntityZombieVillagerTypeFix/ (Lcom/mojang/datafixers/schemas/Schema;Z)V +MD: net/minecraft/util/datafix/fixes/EntityZombieVillagerTypeFix/m_15808_ (I)I net/minecraft/util/datafix/fixes/EntityZombieVillagerTypeFix/getVillagerProfession (I)I +MD: net/minecraft/util/datafix/fixes/EntityZombieVillagerTypeFix/m_15812_ (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/EntityZombieVillagerTypeFix/fixTag (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/EntityZombieVillagerTypeFix/m_7504_ (Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; net/minecraft/util/datafix/fixes/EntityZombieVillagerTypeFix/fix (Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; +MD: net/minecraft/util/datafix/fixes/EntityZombifiedPiglinRenameFix/ ()V net/minecraft/util/datafix/fixes/EntityZombifiedPiglinRenameFix/ ()V +MD: net/minecraft/util/datafix/fixes/EntityZombifiedPiglinRenameFix/ (Lcom/mojang/datafixers/schemas/Schema;)V net/minecraft/util/datafix/fixes/EntityZombifiedPiglinRenameFix/ (Lcom/mojang/datafixers/schemas/Schema;)V +MD: net/minecraft/util/datafix/fixes/EntityZombifiedPiglinRenameFix/m_7476_ (Ljava/lang/String;)Ljava/lang/String; net/minecraft/util/datafix/fixes/EntityZombifiedPiglinRenameFix/rename (Ljava/lang/String;)Ljava/lang/String; +MD: net/minecraft/util/datafix/fixes/FeatureFlagRemoveFix/ (Lcom/mojang/datafixers/schemas/Schema;Ljava/lang/String;Ljava/util/Set;)V net/minecraft/util/datafix/fixes/FeatureFlagRemoveFix/ (Lcom/mojang/datafixers/schemas/Schema;Ljava/lang/String;Ljava/util/Set;)V +MD: net/minecraft/util/datafix/fixes/FeatureFlagRemoveFix/m_276796_ (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/FeatureFlagRemoveFix/fixTag (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/FeatureFlagRemoveFix/m_276829_ (Ljava/util/List;Lcom/mojang/serialization/Dynamic;Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/FeatureFlagRemoveFix/lambda$fixTag$3 (Ljava/util/List;Lcom/mojang/serialization/Dynamic;Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/FeatureFlagRemoveFix/m_276899_ (Ljava/util/List;Lcom/mojang/serialization/Dynamic;Lcom/mojang/serialization/Dynamic;)Z net/minecraft/util/datafix/fixes/FeatureFlagRemoveFix/lambda$fixTag$1 (Ljava/util/List;Lcom/mojang/serialization/Dynamic;Lcom/mojang/serialization/Dynamic;)Z +MD: net/minecraft/util/datafix/fixes/FeatureFlagRemoveFix/m_277022_ (Ljava/util/List;Lcom/mojang/serialization/Dynamic;Ljava/util/stream/Stream;)Ljava/util/stream/Stream; net/minecraft/util/datafix/fixes/FeatureFlagRemoveFix/lambda$fixTag$2 (Ljava/util/List;Lcom/mojang/serialization/Dynamic;Ljava/util/stream/Stream;)Ljava/util/stream/Stream; +MD: net/minecraft/util/datafix/fixes/FeatureFlagRemoveFix/m_277036_ (Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; net/minecraft/util/datafix/fixes/FeatureFlagRemoveFix/lambda$makeRule$0 (Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; +MD: net/minecraft/util/datafix/fixes/FeatureFlagRemoveFix/makeRule ()Lcom/mojang/datafixers/TypeRewriteRule; net/minecraft/util/datafix/fixes/FeatureFlagRemoveFix/makeRule ()Lcom/mojang/datafixers/TypeRewriteRule; +MD: net/minecraft/util/datafix/fixes/FilteredBooksFix/ (Lcom/mojang/datafixers/schemas/Schema;)V net/minecraft/util/datafix/fixes/FilteredBooksFix/ (Lcom/mojang/datafixers/schemas/Schema;)V +MD: net/minecraft/util/datafix/fixes/FilteredBooksFix/m_213922_ (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/FilteredBooksFix/fixItemStackTag (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/FilteredBooksFix/m_216663_ (Ljava/lang/String;)Z net/minecraft/util/datafix/fixes/FilteredBooksFix/lambda$new$0 (Ljava/lang/String;)Z +MD: net/minecraft/util/datafix/fixes/FilteredSignsFix/ (Lcom/mojang/datafixers/schemas/Schema;)V net/minecraft/util/datafix/fixes/FilteredSignsFix/ (Lcom/mojang/datafixers/schemas/Schema;)V +MD: net/minecraft/util/datafix/fixes/FilteredSignsFix/m_216669_ (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/FilteredSignsFix/lambda$fix$0 (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/FilteredSignsFix/m_7504_ (Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; net/minecraft/util/datafix/fixes/FilteredSignsFix/fix (Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; +MD: net/minecraft/util/datafix/fixes/ForcePoiRebuild/ (Lcom/mojang/datafixers/schemas/Schema;Z)V net/minecraft/util/datafix/fixes/ForcePoiRebuild/ (Lcom/mojang/datafixers/schemas/Schema;Z)V +MD: net/minecraft/util/datafix/fixes/ForcePoiRebuild/m_145351_ (Lcom/mojang/datafixers/util/Pair;)Lcom/mojang/datafixers/util/Pair; net/minecraft/util/datafix/fixes/ForcePoiRebuild/lambda$cap$3 (Lcom/mojang/datafixers/util/Pair;)Lcom/mojang/datafixers/util/Pair; +MD: net/minecraft/util/datafix/fixes/ForcePoiRebuild/m_145353_ (Lcom/mojang/datafixers/util/Pair;)Lcom/mojang/datafixers/util/Pair; net/minecraft/util/datafix/fixes/ForcePoiRebuild/lambda$makeRule$0 (Lcom/mojang/datafixers/util/Pair;)Lcom/mojang/datafixers/util/Pair; +MD: net/minecraft/util/datafix/fixes/ForcePoiRebuild/m_145355_ (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/ForcePoiRebuild/lambda$cap$2 (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/ForcePoiRebuild/m_15825_ (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/ForcePoiRebuild/cap (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/ForcePoiRebuild/m_15827_ (Lcom/mojang/serialization/DynamicOps;)Ljava/util/function/Function; net/minecraft/util/datafix/fixes/ForcePoiRebuild/lambda$makeRule$1 (Lcom/mojang/serialization/DynamicOps;)Ljava/util/function/Function; +MD: net/minecraft/util/datafix/fixes/ForcePoiRebuild/m_15831_ (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/ForcePoiRebuild/lambda$cap$4 (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/ForcePoiRebuild/makeRule ()Lcom/mojang/datafixers/TypeRewriteRule; net/minecraft/util/datafix/fixes/ForcePoiRebuild/makeRule ()Lcom/mojang/datafixers/TypeRewriteRule; +MD: net/minecraft/util/datafix/fixes/FurnaceRecipeFix/ (Lcom/mojang/datafixers/schemas/Schema;Z)V net/minecraft/util/datafix/fixes/FurnaceRecipeFix/ (Lcom/mojang/datafixers/schemas/Schema;Z)V +MD: net/minecraft/util/datafix/fixes/FurnaceRecipeFix/m_145357_ (Ljava/util/List;ILcom/mojang/datafixers/util/Pair;)V net/minecraft/util/datafix/fixes/FurnaceRecipeFix/lambda$updateFurnaceContents$4 (Ljava/util/List;ILcom/mojang/datafixers/util/Pair;)V +MD: net/minecraft/util/datafix/fixes/FurnaceRecipeFix/m_145361_ (Lcom/mojang/datafixers/types/Type;Lcom/mojang/datafixers/types/Type;Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; net/minecraft/util/datafix/fixes/FurnaceRecipeFix/lambda$cap$2 (Lcom/mojang/datafixers/types/Type;Lcom/mojang/datafixers/types/Type;Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; +MD: net/minecraft/util/datafix/fixes/FurnaceRecipeFix/m_145365_ (Lcom/mojang/datafixers/types/Type;Lcom/mojang/datafixers/types/Type;Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; net/minecraft/util/datafix/fixes/FurnaceRecipeFix/lambda$cap$1 (Lcom/mojang/datafixers/types/Type;Lcom/mojang/datafixers/types/Type;Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; +MD: net/minecraft/util/datafix/fixes/FurnaceRecipeFix/m_145369_ (Lcom/mojang/datafixers/types/Type;Lcom/mojang/datafixers/types/Type;Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; net/minecraft/util/datafix/fixes/FurnaceRecipeFix/lambda$cap$0 (Lcom/mojang/datafixers/types/Type;Lcom/mojang/datafixers/types/Type;Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; +MD: net/minecraft/util/datafix/fixes/FurnaceRecipeFix/m_15839_ (Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/types/Type;Lcom/mojang/datafixers/types/Type;Lcom/mojang/datafixers/types/Type;Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/types/Type;Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/types/Type;Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; net/minecraft/util/datafix/fixes/FurnaceRecipeFix/lambda$cap$3 (Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/types/Type;Lcom/mojang/datafixers/types/Type;Lcom/mojang/datafixers/types/Type;Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/types/Type;Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/types/Type;Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; +MD: net/minecraft/util/datafix/fixes/FurnaceRecipeFix/m_15849_ (Lcom/mojang/datafixers/types/Type;)Lcom/mojang/datafixers/TypeRewriteRule; net/minecraft/util/datafix/fixes/FurnaceRecipeFix/cap (Lcom/mojang/datafixers/types/Type;)Lcom/mojang/datafixers/TypeRewriteRule; +MD: net/minecraft/util/datafix/fixes/FurnaceRecipeFix/m_15851_ (Lcom/mojang/datafixers/types/Type;Lcom/mojang/datafixers/types/Type;Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; net/minecraft/util/datafix/fixes/FurnaceRecipeFix/updateFurnaceContents (Lcom/mojang/datafixers/types/Type;Lcom/mojang/datafixers/types/Type;Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; +MD: net/minecraft/util/datafix/fixes/FurnaceRecipeFix/m_15855_ (Lcom/mojang/datafixers/types/Type;Ljava/util/List;ILcom/mojang/serialization/Dynamic;)V net/minecraft/util/datafix/fixes/FurnaceRecipeFix/lambda$updateFurnaceContents$5 (Lcom/mojang/datafixers/types/Type;Ljava/util/List;ILcom/mojang/serialization/Dynamic;)V +MD: net/minecraft/util/datafix/fixes/FurnaceRecipeFix/makeRule ()Lcom/mojang/datafixers/TypeRewriteRule; net/minecraft/util/datafix/fixes/FurnaceRecipeFix/makeRule ()Lcom/mojang/datafixers/TypeRewriteRule; +MD: net/minecraft/util/datafix/fixes/GoatHornIdFix/ ()V net/minecraft/util/datafix/fixes/GoatHornIdFix/ ()V +MD: net/minecraft/util/datafix/fixes/GoatHornIdFix/ (Lcom/mojang/datafixers/schemas/Schema;)V net/minecraft/util/datafix/fixes/GoatHornIdFix/ (Lcom/mojang/datafixers/schemas/Schema;)V +MD: net/minecraft/util/datafix/fixes/GoatHornIdFix/m_213922_ (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/GoatHornIdFix/fixItemStackTag (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/GoatHornIdFix/m_216677_ (Ljava/lang/String;)Z net/minecraft/util/datafix/fixes/GoatHornIdFix/lambda$new$0 (Ljava/lang/String;)Z +MD: net/minecraft/util/datafix/fixes/GossipUUIDFix/ (Lcom/mojang/datafixers/schemas/Schema;Ljava/lang/String;)V net/minecraft/util/datafix/fixes/GossipUUIDFix/ (Lcom/mojang/datafixers/schemas/Schema;Ljava/lang/String;)V +MD: net/minecraft/util/datafix/fixes/GossipUUIDFix/m_145373_ (Ljava/util/stream/Stream;)Ljava/util/stream/Stream; net/minecraft/util/datafix/fixes/GossipUUIDFix/lambda$fix$1 (Ljava/util/stream/Stream;)Ljava/util/stream/Stream; +MD: net/minecraft/util/datafix/fixes/GossipUUIDFix/m_145375_ (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/GossipUUIDFix/lambda$fix$2 (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/GossipUUIDFix/m_145377_ (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/GossipUUIDFix/lambda$fix$0 (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/GossipUUIDFix/m_15882_ (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/GossipUUIDFix/lambda$fix$3 (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/GossipUUIDFix/m_7504_ (Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; net/minecraft/util/datafix/fixes/GossipUUIDFix/fix (Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; +MD: net/minecraft/util/datafix/fixes/HeightmapRenamingFix/ (Lcom/mojang/datafixers/schemas/Schema;Z)V net/minecraft/util/datafix/fixes/HeightmapRenamingFix/ (Lcom/mojang/datafixers/schemas/Schema;Z)V +MD: net/minecraft/util/datafix/fixes/HeightmapRenamingFix/m_145379_ (Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; net/minecraft/util/datafix/fixes/HeightmapRenamingFix/lambda$makeRule$0 (Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; +MD: net/minecraft/util/datafix/fixes/HeightmapRenamingFix/m_15893_ (Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; net/minecraft/util/datafix/fixes/HeightmapRenamingFix/lambda$makeRule$1 (Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; +MD: net/minecraft/util/datafix/fixes/HeightmapRenamingFix/m_15898_ (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/HeightmapRenamingFix/fix (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/HeightmapRenamingFix/makeRule ()Lcom/mojang/datafixers/TypeRewriteRule; net/minecraft/util/datafix/fixes/HeightmapRenamingFix/makeRule ()Lcom/mojang/datafixers/TypeRewriteRule; +MD: net/minecraft/util/datafix/fixes/IglooMetadataRemovalFix/ (Lcom/mojang/datafixers/schemas/Schema;Z)V net/minecraft/util/datafix/fixes/IglooMetadataRemovalFix/ (Lcom/mojang/datafixers/schemas/Schema;Z)V +MD: net/minecraft/util/datafix/fixes/IglooMetadataRemovalFix/m_145381_ (Lcom/mojang/serialization/Dynamic;)Z net/minecraft/util/datafix/fixes/IglooMetadataRemovalFix/lambda$removeIglooPieces$2 (Lcom/mojang/serialization/Dynamic;)Z +MD: net/minecraft/util/datafix/fixes/IglooMetadataRemovalFix/m_15904_ (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/IglooMetadataRemovalFix/fixTag (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/IglooMetadataRemovalFix/m_15906_ (Ljava/util/stream/Stream;)Ljava/util/stream/Stream; net/minecraft/util/datafix/fixes/IglooMetadataRemovalFix/lambda$removeIglooPieces$3 (Ljava/util/stream/Stream;)Ljava/util/stream/Stream; +MD: net/minecraft/util/datafix/fixes/IglooMetadataRemovalFix/m_15908_ (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/IglooMetadataRemovalFix/removeIglooPieces (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/IglooMetadataRemovalFix/m_15910_ (Ljava/util/stream/Stream;)Ljava/lang/Boolean; net/minecraft/util/datafix/fixes/IglooMetadataRemovalFix/lambda$fixTag$1 (Ljava/util/stream/Stream;)Ljava/lang/Boolean; +MD: net/minecraft/util/datafix/fixes/IglooMetadataRemovalFix/m_15912_ (Lcom/mojang/serialization/Dynamic;)Z net/minecraft/util/datafix/fixes/IglooMetadataRemovalFix/isIglooPiece (Lcom/mojang/serialization/Dynamic;)Z +MD: net/minecraft/util/datafix/fixes/IglooMetadataRemovalFix/m_274161_ (Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; net/minecraft/util/datafix/fixes/IglooMetadataRemovalFix/lambda$makeRule$0 (Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; +MD: net/minecraft/util/datafix/fixes/IglooMetadataRemovalFix/makeRule ()Lcom/mojang/datafixers/TypeRewriteRule; net/minecraft/util/datafix/fixes/IglooMetadataRemovalFix/makeRule ()Lcom/mojang/datafixers/TypeRewriteRule; +MD: net/minecraft/util/datafix/fixes/ItemBannerColorFix/ (Lcom/mojang/datafixers/schemas/Schema;Z)V net/minecraft/util/datafix/fixes/ItemBannerColorFix/ (Lcom/mojang/datafixers/schemas/Schema;Z)V +MD: net/minecraft/util/datafix/fixes/ItemBannerColorFix/m_15920_ (Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; net/minecraft/util/datafix/fixes/ItemBannerColorFix/lambda$makeRule$0 (Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; +MD: net/minecraft/util/datafix/fixes/ItemBannerColorFix/makeRule ()Lcom/mojang/datafixers/TypeRewriteRule; net/minecraft/util/datafix/fixes/ItemBannerColorFix/makeRule ()Lcom/mojang/datafixers/TypeRewriteRule; +MD: net/minecraft/util/datafix/fixes/ItemCustomNameToComponentFix/ (Lcom/mojang/datafixers/schemas/Schema;Z)V net/minecraft/util/datafix/fixes/ItemCustomNameToComponentFix/ (Lcom/mojang/datafixers/schemas/Schema;Z)V +MD: net/minecraft/util/datafix/fixes/ItemCustomNameToComponentFix/m_145383_ (Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; net/minecraft/util/datafix/fixes/ItemCustomNameToComponentFix/lambda$makeRule$0 (Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; +MD: net/minecraft/util/datafix/fixes/ItemCustomNameToComponentFix/m_15929_ (Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; net/minecraft/util/datafix/fixes/ItemCustomNameToComponentFix/lambda$makeRule$1 (Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; +MD: net/minecraft/util/datafix/fixes/ItemCustomNameToComponentFix/m_15934_ (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/ItemCustomNameToComponentFix/fixTag (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/ItemCustomNameToComponentFix/makeRule ()Lcom/mojang/datafixers/TypeRewriteRule; net/minecraft/util/datafix/fixes/ItemCustomNameToComponentFix/makeRule ()Lcom/mojang/datafixers/TypeRewriteRule; +MD: net/minecraft/util/datafix/fixes/ItemIdFix/ ()V net/minecraft/util/datafix/fixes/ItemIdFix/ ()V +MD: net/minecraft/util/datafix/fixes/ItemIdFix/ (Lcom/mojang/datafixers/schemas/Schema;Z)V net/minecraft/util/datafix/fixes/ItemIdFix/ (Lcom/mojang/datafixers/schemas/Schema;Z)V +MD: net/minecraft/util/datafix/fixes/ItemIdFix/m_145385_ (Lcom/mojang/datafixers/util/Either;)Lcom/mojang/datafixers/util/Pair; net/minecraft/util/datafix/fixes/ItemIdFix/lambda$makeRule$3 (Lcom/mojang/datafixers/util/Either;)Lcom/mojang/datafixers/util/Pair; +MD: net/minecraft/util/datafix/fixes/ItemIdFix/m_145387_ (Lcom/mojang/datafixers/util/Pair;)Lcom/mojang/datafixers/util/Pair; net/minecraft/util/datafix/fixes/ItemIdFix/lambda$makeRule$2 (Lcom/mojang/datafixers/util/Pair;)Lcom/mojang/datafixers/util/Pair; +MD: net/minecraft/util/datafix/fixes/ItemIdFix/m_145389_ (Ljava/lang/Integer;)Lcom/mojang/datafixers/util/Pair; net/minecraft/util/datafix/fixes/ItemIdFix/lambda$makeRule$1 (Ljava/lang/Integer;)Lcom/mojang/datafixers/util/Pair; +MD: net/minecraft/util/datafix/fixes/ItemIdFix/m_15942_ (I)Ljava/lang/String; net/minecraft/util/datafix/fixes/ItemIdFix/getItem (I)Ljava/lang/String; +MD: net/minecraft/util/datafix/fixes/ItemIdFix/m_15944_ (Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/types/Type;Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; net/minecraft/util/datafix/fixes/ItemIdFix/lambda$makeRule$4 (Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/types/Type;Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; +MD: net/minecraft/util/datafix/fixes/ItemIdFix/m_15952_ (Lit/unimi/dsi/fastutil/ints/Int2ObjectOpenHashMap;)V net/minecraft/util/datafix/fixes/ItemIdFix/lambda$static$0 (Lit/unimi/dsi/fastutil/ints/Int2ObjectOpenHashMap;)V +MD: net/minecraft/util/datafix/fixes/ItemIdFix/makeRule ()Lcom/mojang/datafixers/TypeRewriteRule; net/minecraft/util/datafix/fixes/ItemIdFix/makeRule ()Lcom/mojang/datafixers/TypeRewriteRule; +MD: net/minecraft/util/datafix/fixes/ItemLoreFix/ (Lcom/mojang/datafixers/schemas/Schema;Z)V net/minecraft/util/datafix/fixes/ItemLoreFix/ (Lcom/mojang/datafixers/schemas/Schema;Z)V +MD: net/minecraft/util/datafix/fixes/ItemLoreFix/m_145391_ (Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; net/minecraft/util/datafix/fixes/ItemLoreFix/lambda$makeRule$3 (Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; +MD: net/minecraft/util/datafix/fixes/ItemLoreFix/m_145393_ (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/ItemLoreFix/lambda$makeRule$2 (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/ItemLoreFix/m_145395_ (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/ItemLoreFix/lambda$makeRule$1 (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/ItemLoreFix/m_145397_ (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/ItemLoreFix/lambda$makeRule$0 (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/ItemLoreFix/m_15960_ (Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; net/minecraft/util/datafix/fixes/ItemLoreFix/lambda$makeRule$4 (Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; +MD: net/minecraft/util/datafix/fixes/ItemLoreFix/m_15965_ (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/ItemLoreFix/lambda$fixLoreList$5 (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/ItemLoreFix/m_15967_ (Ljava/lang/String;)Ljava/lang/String; net/minecraft/util/datafix/fixes/ItemLoreFix/fixLoreEntry (Ljava/lang/String;)Ljava/lang/String; +MD: net/minecraft/util/datafix/fixes/ItemLoreFix/m_15969_ (Ljava/util/stream/Stream;)Ljava/util/stream/Stream; net/minecraft/util/datafix/fixes/ItemLoreFix/fixLoreList (Ljava/util/stream/Stream;)Ljava/util/stream/Stream; +MD: net/minecraft/util/datafix/fixes/ItemLoreFix/makeRule ()Lcom/mojang/datafixers/TypeRewriteRule; net/minecraft/util/datafix/fixes/ItemLoreFix/makeRule ()Lcom/mojang/datafixers/TypeRewriteRule; +MD: net/minecraft/util/datafix/fixes/ItemPotionFix/ ()V net/minecraft/util/datafix/fixes/ItemPotionFix/ ()V +MD: net/minecraft/util/datafix/fixes/ItemPotionFix/ (Lcom/mojang/datafixers/schemas/Schema;Z)V net/minecraft/util/datafix/fixes/ItemPotionFix/ (Lcom/mojang/datafixers/schemas/Schema;Z)V +MD: net/minecraft/util/datafix/fixes/ItemPotionFix/m_15992_ (Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; net/minecraft/util/datafix/fixes/ItemPotionFix/lambda$makeRule$1 (Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; +MD: net/minecraft/util/datafix/fixes/ItemPotionFix/m_15996_ ([Ljava/lang/String;)V net/minecraft/util/datafix/fixes/ItemPotionFix/lambda$static$0 ([Ljava/lang/String;)V +MD: net/minecraft/util/datafix/fixes/ItemPotionFix/makeRule ()Lcom/mojang/datafixers/TypeRewriteRule; net/minecraft/util/datafix/fixes/ItemPotionFix/makeRule ()Lcom/mojang/datafixers/TypeRewriteRule; +MD: net/minecraft/util/datafix/fixes/ItemRemoveBlockEntityTagFix/ (Lcom/mojang/datafixers/schemas/Schema;ZLjava/util/Set;)V net/minecraft/util/datafix/fixes/ItemRemoveBlockEntityTagFix/ (Lcom/mojang/datafixers/schemas/Schema;ZLjava/util/Set;)V +MD: net/minecraft/util/datafix/fixes/ItemRemoveBlockEntityTagFix/m_242604_ (Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; net/minecraft/util/datafix/fixes/ItemRemoveBlockEntityTagFix/lambda$makeRule$0 (Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; +MD: net/minecraft/util/datafix/fixes/ItemRemoveBlockEntityTagFix/makeRule ()Lcom/mojang/datafixers/TypeRewriteRule; net/minecraft/util/datafix/fixes/ItemRemoveBlockEntityTagFix/makeRule ()Lcom/mojang/datafixers/TypeRewriteRule; +MD: net/minecraft/util/datafix/fixes/ItemRenameFix/ (Lcom/mojang/datafixers/schemas/Schema;Ljava/lang/String;)V net/minecraft/util/datafix/fixes/ItemRenameFix/ (Lcom/mojang/datafixers/schemas/Schema;Ljava/lang/String;)V +MD: net/minecraft/util/datafix/fixes/ItemRenameFix/m_145401_ (Lcom/mojang/datafixers/util/Pair;)Lcom/mojang/datafixers/util/Pair; net/minecraft/util/datafix/fixes/ItemRenameFix/lambda$makeRule$0 (Lcom/mojang/datafixers/util/Pair;)Lcom/mojang/datafixers/util/Pair; +MD: net/minecraft/util/datafix/fixes/ItemRenameFix/m_16003_ (Lcom/mojang/datafixers/schemas/Schema;Ljava/lang/String;Ljava/util/function/Function;)Lcom/mojang/datafixers/DataFix; net/minecraft/util/datafix/fixes/ItemRenameFix/create (Lcom/mojang/datafixers/schemas/Schema;Ljava/lang/String;Ljava/util/function/Function;)Lcom/mojang/datafixers/DataFix; +MD: net/minecraft/util/datafix/fixes/ItemRenameFix/m_16009_ (Lcom/mojang/serialization/DynamicOps;)Ljava/util/function/Function; net/minecraft/util/datafix/fixes/ItemRenameFix/lambda$makeRule$1 (Lcom/mojang/serialization/DynamicOps;)Ljava/util/function/Function; +MD: net/minecraft/util/datafix/fixes/ItemRenameFix/m_7348_ (Ljava/lang/String;)Ljava/lang/String; net/minecraft/util/datafix/fixes/ItemRenameFix/fixItem (Ljava/lang/String;)Ljava/lang/String; +MD: net/minecraft/util/datafix/fixes/ItemRenameFix/makeRule ()Lcom/mojang/datafixers/TypeRewriteRule; net/minecraft/util/datafix/fixes/ItemRenameFix/makeRule ()Lcom/mojang/datafixers/TypeRewriteRule; +MD: net/minecraft/util/datafix/fixes/ItemRenameFix$1/ (Lcom/mojang/datafixers/schemas/Schema;Ljava/lang/String;Ljava/util/function/Function;)V net/minecraft/util/datafix/fixes/ItemRenameFix$1/ (Lcom/mojang/datafixers/schemas/Schema;Ljava/lang/String;Ljava/util/function/Function;)V +MD: net/minecraft/util/datafix/fixes/ItemRenameFix$1/m_7348_ (Ljava/lang/String;)Ljava/lang/String; net/minecraft/util/datafix/fixes/ItemRenameFix$1/fixItem (Ljava/lang/String;)Ljava/lang/String; +MD: net/minecraft/util/datafix/fixes/ItemShulkerBoxColorFix/ ()V net/minecraft/util/datafix/fixes/ItemShulkerBoxColorFix/ ()V +MD: net/minecraft/util/datafix/fixes/ItemShulkerBoxColorFix/ (Lcom/mojang/datafixers/schemas/Schema;Z)V net/minecraft/util/datafix/fixes/ItemShulkerBoxColorFix/ (Lcom/mojang/datafixers/schemas/Schema;Z)V +MD: net/minecraft/util/datafix/fixes/ItemShulkerBoxColorFix/m_16025_ (Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; net/minecraft/util/datafix/fixes/ItemShulkerBoxColorFix/lambda$makeRule$0 (Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; +MD: net/minecraft/util/datafix/fixes/ItemShulkerBoxColorFix/makeRule ()Lcom/mojang/datafixers/TypeRewriteRule; net/minecraft/util/datafix/fixes/ItemShulkerBoxColorFix/makeRule ()Lcom/mojang/datafixers/TypeRewriteRule; +MD: net/minecraft/util/datafix/fixes/ItemSpawnEggFix/ ()V net/minecraft/util/datafix/fixes/ItemSpawnEggFix/ ()V +MD: net/minecraft/util/datafix/fixes/ItemSpawnEggFix/ (Lcom/mojang/datafixers/schemas/Schema;Z)V net/minecraft/util/datafix/fixes/ItemSpawnEggFix/ (Lcom/mojang/datafixers/schemas/Schema;Z)V +MD: net/minecraft/util/datafix/fixes/ItemSpawnEggFix/m_145403_ ()Ljava/lang/IllegalStateException; net/minecraft/util/datafix/fixes/ItemSpawnEggFix/lambda$makeRule$5 ()Ljava/lang/IllegalStateException; +MD: net/minecraft/util/datafix/fixes/ItemSpawnEggFix/m_145404_ (Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/Typed;)Ljava/util/Optional; net/minecraft/util/datafix/fixes/ItemSpawnEggFix/lambda$makeRule$3 (Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/Typed;)Ljava/util/Optional; +MD: net/minecraft/util/datafix/fixes/ItemSpawnEggFix/m_145407_ (Lcom/mojang/datafixers/types/Type;Lcom/mojang/serialization/Dynamic;Ljava/lang/String;Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/DataResult; net/minecraft/util/datafix/fixes/ItemSpawnEggFix/lambda$makeRule$4 (Lcom/mojang/datafixers/types/Type;Lcom/mojang/serialization/Dynamic;Ljava/lang/String;Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/DataResult; +MD: net/minecraft/util/datafix/fixes/ItemSpawnEggFix/m_145412_ (Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/Typed;)Ljava/util/Optional; net/minecraft/util/datafix/fixes/ItemSpawnEggFix/lambda$makeRule$2 (Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/Typed;)Ljava/util/Optional; +MD: net/minecraft/util/datafix/fixes/ItemSpawnEggFix/m_145415_ (Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/Typed;)Ljava/util/Optional; net/minecraft/util/datafix/fixes/ItemSpawnEggFix/lambda$makeRule$1 (Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/Typed;)Ljava/util/Optional; +MD: net/minecraft/util/datafix/fixes/ItemSpawnEggFix/m_16037_ (Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/types/Type;Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; net/minecraft/util/datafix/fixes/ItemSpawnEggFix/lambda$makeRule$6 (Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/types/Type;Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; +MD: net/minecraft/util/datafix/fixes/ItemSpawnEggFix/m_16053_ ([Ljava/lang/String;)V net/minecraft/util/datafix/fixes/ItemSpawnEggFix/lambda$static$0 ([Ljava/lang/String;)V +MD: net/minecraft/util/datafix/fixes/ItemSpawnEggFix/makeRule ()Lcom/mojang/datafixers/TypeRewriteRule; net/minecraft/util/datafix/fixes/ItemSpawnEggFix/makeRule ()Lcom/mojang/datafixers/TypeRewriteRule; +MD: net/minecraft/util/datafix/fixes/ItemStackEnchantmentNamesFix/ ()V net/minecraft/util/datafix/fixes/ItemStackEnchantmentNamesFix/ ()V +MD: net/minecraft/util/datafix/fixes/ItemStackEnchantmentNamesFix/ (Lcom/mojang/datafixers/schemas/Schema;Z)V net/minecraft/util/datafix/fixes/ItemStackEnchantmentNamesFix/ (Lcom/mojang/datafixers/schemas/Schema;Z)V +MD: net/minecraft/util/datafix/fixes/ItemStackEnchantmentNamesFix/m_145418_ (Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; net/minecraft/util/datafix/fixes/ItemStackEnchantmentNamesFix/lambda$makeRule$1 (Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; +MD: net/minecraft/util/datafix/fixes/ItemStackEnchantmentNamesFix/m_145420_ (Ljava/util/stream/Stream;)Ljava/util/stream/Stream; net/minecraft/util/datafix/fixes/ItemStackEnchantmentNamesFix/lambda$fixTag$6 (Ljava/util/stream/Stream;)Ljava/util/stream/Stream; +MD: net/minecraft/util/datafix/fixes/ItemStackEnchantmentNamesFix/m_145422_ (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/ItemStackEnchantmentNamesFix/lambda$fixTag$5 (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/ItemStackEnchantmentNamesFix/m_145424_ (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/ItemStackEnchantmentNamesFix/lambda$fixTag$3 (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/ItemStackEnchantmentNamesFix/m_16067_ (Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; net/minecraft/util/datafix/fixes/ItemStackEnchantmentNamesFix/lambda$makeRule$2 (Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; +MD: net/minecraft/util/datafix/fixes/ItemStackEnchantmentNamesFix/m_16072_ (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/ItemStackEnchantmentNamesFix/fixTag (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/ItemStackEnchantmentNamesFix/m_16074_ (Lit/unimi/dsi/fastutil/ints/Int2ObjectOpenHashMap;)V net/minecraft/util/datafix/fixes/ItemStackEnchantmentNamesFix/lambda$static$0 (Lit/unimi/dsi/fastutil/ints/Int2ObjectOpenHashMap;)V +MD: net/minecraft/util/datafix/fixes/ItemStackEnchantmentNamesFix/m_16078_ (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/ItemStackEnchantmentNamesFix/lambda$fixTag$7 (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/ItemStackEnchantmentNamesFix/m_16080_ (Ljava/util/stream/Stream;)Ljava/util/stream/Stream; net/minecraft/util/datafix/fixes/ItemStackEnchantmentNamesFix/lambda$fixTag$4 (Ljava/util/stream/Stream;)Ljava/util/stream/Stream; +MD: net/minecraft/util/datafix/fixes/ItemStackEnchantmentNamesFix/makeRule ()Lcom/mojang/datafixers/TypeRewriteRule; net/minecraft/util/datafix/fixes/ItemStackEnchantmentNamesFix/makeRule ()Lcom/mojang/datafixers/TypeRewriteRule; +MD: net/minecraft/util/datafix/fixes/ItemStackMapIdFix/ (Lcom/mojang/datafixers/schemas/Schema;Z)V net/minecraft/util/datafix/fixes/ItemStackMapIdFix/ (Lcom/mojang/datafixers/schemas/Schema;Z)V +MD: net/minecraft/util/datafix/fixes/ItemStackMapIdFix/m_16090_ (Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; net/minecraft/util/datafix/fixes/ItemStackMapIdFix/lambda$makeRule$0 (Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; +MD: net/minecraft/util/datafix/fixes/ItemStackMapIdFix/makeRule ()Lcom/mojang/datafixers/TypeRewriteRule; net/minecraft/util/datafix/fixes/ItemStackMapIdFix/makeRule ()Lcom/mojang/datafixers/TypeRewriteRule; +MD: net/minecraft/util/datafix/fixes/ItemStackSpawnEggFix/ ()V net/minecraft/util/datafix/fixes/ItemStackSpawnEggFix/ ()V +MD: net/minecraft/util/datafix/fixes/ItemStackSpawnEggFix/ (Lcom/mojang/datafixers/schemas/Schema;ZLjava/lang/String;)V net/minecraft/util/datafix/fixes/ItemStackSpawnEggFix/ (Lcom/mojang/datafixers/schemas/Schema;ZLjava/lang/String;)V +MD: net/minecraft/util/datafix/fixes/ItemStackSpawnEggFix/m_16100_ (Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; net/minecraft/util/datafix/fixes/ItemStackSpawnEggFix/lambda$makeRule$1 (Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; +MD: net/minecraft/util/datafix/fixes/ItemStackSpawnEggFix/m_260784_ (Ljava/util/HashMap;)V net/minecraft/util/datafix/fixes/ItemStackSpawnEggFix/lambda$static$0 (Ljava/util/HashMap;)V +MD: net/minecraft/util/datafix/fixes/ItemStackSpawnEggFix/makeRule ()Lcom/mojang/datafixers/TypeRewriteRule; net/minecraft/util/datafix/fixes/ItemStackSpawnEggFix/makeRule ()Lcom/mojang/datafixers/TypeRewriteRule; +MD: net/minecraft/util/datafix/fixes/ItemStackTagFix/ (Lcom/mojang/datafixers/schemas/Schema;Ljava/lang/String;Ljava/util/function/Predicate;)V net/minecraft/util/datafix/fixes/ItemStackTagFix/ (Lcom/mojang/datafixers/schemas/Schema;Ljava/lang/String;Ljava/util/function/Predicate;)V +MD: net/minecraft/util/datafix/fixes/ItemStackTagFix/m_213922_ (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/ItemStackTagFix/fixItemStackTag (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/ItemStackTagFix/m_216685_ (Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; net/minecraft/util/datafix/fixes/ItemStackTagFix/lambda$makeRule$1 (Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; +MD: net/minecraft/util/datafix/fixes/ItemStackTagFix/m_216689_ (Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; net/minecraft/util/datafix/fixes/ItemStackTagFix/lambda$makeRule$0 (Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; +MD: net/minecraft/util/datafix/fixes/ItemStackTagFix/makeRule ()Lcom/mojang/datafixers/TypeRewriteRule; net/minecraft/util/datafix/fixes/ItemStackTagFix/makeRule ()Lcom/mojang/datafixers/TypeRewriteRule; +MD: net/minecraft/util/datafix/fixes/ItemStackTheFlatteningFix/ ()V net/minecraft/util/datafix/fixes/ItemStackTheFlatteningFix/ ()V +MD: net/minecraft/util/datafix/fixes/ItemStackTheFlatteningFix/ (Lcom/mojang/datafixers/schemas/Schema;Z)V net/minecraft/util/datafix/fixes/ItemStackTheFlatteningFix/ (Lcom/mojang/datafixers/schemas/Schema;Z)V +MD: net/minecraft/util/datafix/fixes/ItemStackTheFlatteningFix/m_16116_ (Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; net/minecraft/util/datafix/fixes/ItemStackTheFlatteningFix/lambda$makeRule$2 (Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; +MD: net/minecraft/util/datafix/fixes/ItemStackTheFlatteningFix/m_16120_ (Ljava/lang/String;)Ljava/lang/String; net/minecraft/util/datafix/fixes/ItemStackTheFlatteningFix/lambda$static$1 (Ljava/lang/String;)Ljava/lang/String; +MD: net/minecraft/util/datafix/fixes/ItemStackTheFlatteningFix/m_16122_ (Ljava/lang/String;I)Ljava/lang/String; net/minecraft/util/datafix/fixes/ItemStackTheFlatteningFix/updateItem (Ljava/lang/String;I)Ljava/lang/String; +MD: net/minecraft/util/datafix/fixes/ItemStackTheFlatteningFix/m_16125_ (Ljava/util/HashMap;)V net/minecraft/util/datafix/fixes/ItemStackTheFlatteningFix/lambda$static$0 (Ljava/util/HashMap;)V +MD: net/minecraft/util/datafix/fixes/ItemStackTheFlatteningFix/makeRule ()Lcom/mojang/datafixers/TypeRewriteRule; net/minecraft/util/datafix/fixes/ItemStackTheFlatteningFix/makeRule ()Lcom/mojang/datafixers/TypeRewriteRule; +MD: net/minecraft/util/datafix/fixes/ItemStackUUIDFix/ (Lcom/mojang/datafixers/schemas/Schema;)V net/minecraft/util/datafix/fixes/ItemStackUUIDFix/ (Lcom/mojang/datafixers/schemas/Schema;)V +MD: net/minecraft/util/datafix/fixes/ItemStackUUIDFix/m_145426_ (Lcom/mojang/datafixers/Typed;Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; net/minecraft/util/datafix/fixes/ItemStackUUIDFix/lambda$makeRule$2 (Lcom/mojang/datafixers/Typed;Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; +MD: net/minecraft/util/datafix/fixes/ItemStackUUIDFix/m_145430_ (Lcom/mojang/datafixers/Typed;Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/ItemStackUUIDFix/lambda$makeRule$1 (Lcom/mojang/datafixers/Typed;Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/ItemStackUUIDFix/m_145434_ (Lcom/mojang/datafixers/util/Pair;)Ljava/lang/Boolean; net/minecraft/util/datafix/fixes/ItemStackUUIDFix/lambda$makeRule$0 (Lcom/mojang/datafixers/util/Pair;)Ljava/lang/Boolean; +MD: net/minecraft/util/datafix/fixes/ItemStackUUIDFix/m_145436_ (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/ItemStackUUIDFix/lambda$updateAttributeModifiers$4 (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/ItemStackUUIDFix/m_16130_ (Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; net/minecraft/util/datafix/fixes/ItemStackUUIDFix/lambda$makeRule$3 (Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; +MD: net/minecraft/util/datafix/fixes/ItemStackUUIDFix/m_16143_ (Lcom/mojang/serialization/Dynamic;Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/ItemStackUUIDFix/lambda$updateAttributeModifiers$5 (Lcom/mojang/serialization/Dynamic;Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/ItemStackUUIDFix/m_16146_ (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/ItemStackUUIDFix/updateAttributeModifiers (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/ItemStackUUIDFix/m_16148_ (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/ItemStackUUIDFix/updateSkullOwner (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/ItemStackUUIDFix/m_16150_ (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/ItemStackUUIDFix/lambda$updateSkullOwner$6 (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/ItemStackUUIDFix/makeRule ()Lcom/mojang/datafixers/TypeRewriteRule; net/minecraft/util/datafix/fixes/ItemStackUUIDFix/makeRule ()Lcom/mojang/datafixers/TypeRewriteRule; +MD: net/minecraft/util/datafix/fixes/ItemWaterPotionFix/ (Lcom/mojang/datafixers/schemas/Schema;Z)V net/minecraft/util/datafix/fixes/ItemWaterPotionFix/ (Lcom/mojang/datafixers/schemas/Schema;Z)V +MD: net/minecraft/util/datafix/fixes/ItemWaterPotionFix/m_16158_ (Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; net/minecraft/util/datafix/fixes/ItemWaterPotionFix/lambda$makeRule$0 (Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; +MD: net/minecraft/util/datafix/fixes/ItemWaterPotionFix/makeRule ()Lcom/mojang/datafixers/TypeRewriteRule; net/minecraft/util/datafix/fixes/ItemWaterPotionFix/makeRule ()Lcom/mojang/datafixers/TypeRewriteRule; +MD: net/minecraft/util/datafix/fixes/ItemWrittenBookPagesStrictJsonFix/ (Lcom/mojang/datafixers/schemas/Schema;Z)V net/minecraft/util/datafix/fixes/ItemWrittenBookPagesStrictJsonFix/ (Lcom/mojang/datafixers/schemas/Schema;Z)V +MD: net/minecraft/util/datafix/fixes/ItemWrittenBookPagesStrictJsonFix/m_145438_ (Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; net/minecraft/util/datafix/fixes/ItemWrittenBookPagesStrictJsonFix/lambda$makeRule$3 (Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; +MD: net/minecraft/util/datafix/fixes/ItemWrittenBookPagesStrictJsonFix/m_145440_ (Ljava/util/stream/Stream;)Ljava/util/stream/Stream; net/minecraft/util/datafix/fixes/ItemWrittenBookPagesStrictJsonFix/lambda$fixTag$1 (Ljava/util/stream/Stream;)Ljava/util/stream/Stream; +MD: net/minecraft/util/datafix/fixes/ItemWrittenBookPagesStrictJsonFix/m_145442_ (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/ItemWrittenBookPagesStrictJsonFix/lambda$fixTag$0 (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/ItemWrittenBookPagesStrictJsonFix/m_16166_ (Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; net/minecraft/util/datafix/fixes/ItemWrittenBookPagesStrictJsonFix/lambda$makeRule$4 (Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; +MD: net/minecraft/util/datafix/fixes/ItemWrittenBookPagesStrictJsonFix/m_16171_ (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/ItemWrittenBookPagesStrictJsonFix/fixTag (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/ItemWrittenBookPagesStrictJsonFix/m_16173_ (Lcom/mojang/serialization/Dynamic;Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/ItemWrittenBookPagesStrictJsonFix/lambda$fixTag$2 (Lcom/mojang/serialization/Dynamic;Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/ItemWrittenBookPagesStrictJsonFix/makeRule ()Lcom/mojang/datafixers/TypeRewriteRule; net/minecraft/util/datafix/fixes/ItemWrittenBookPagesStrictJsonFix/makeRule ()Lcom/mojang/datafixers/TypeRewriteRule; +MD: net/minecraft/util/datafix/fixes/JigsawPropertiesFix/ (Lcom/mojang/datafixers/schemas/Schema;Z)V net/minecraft/util/datafix/fixes/JigsawPropertiesFix/ (Lcom/mojang/datafixers/schemas/Schema;Z)V +MD: net/minecraft/util/datafix/fixes/JigsawPropertiesFix/m_16186_ (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/JigsawPropertiesFix/fixTag (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/JigsawPropertiesFix/m_7504_ (Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; net/minecraft/util/datafix/fixes/JigsawPropertiesFix/fix (Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; +MD: net/minecraft/util/datafix/fixes/JigsawRotationFix/ ()V net/minecraft/util/datafix/fixes/JigsawRotationFix/ ()V +MD: net/minecraft/util/datafix/fixes/JigsawRotationFix/ (Lcom/mojang/datafixers/schemas/Schema;Z)V net/minecraft/util/datafix/fixes/JigsawRotationFix/ (Lcom/mojang/datafixers/schemas/Schema;Z)V +MD: net/minecraft/util/datafix/fixes/JigsawRotationFix/m_16193_ (Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; net/minecraft/util/datafix/fixes/JigsawRotationFix/lambda$makeRule$1 (Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; +MD: net/minecraft/util/datafix/fixes/JigsawRotationFix/m_16195_ (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/JigsawRotationFix/fix (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/JigsawRotationFix/m_16197_ (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/JigsawRotationFix/lambda$fix$0 (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/JigsawRotationFix/makeRule ()Lcom/mojang/datafixers/TypeRewriteRule; net/minecraft/util/datafix/fixes/JigsawRotationFix/makeRule ()Lcom/mojang/datafixers/TypeRewriteRule; +MD: net/minecraft/util/datafix/fixes/LeavesFix/ ()V net/minecraft/util/datafix/fixes/LeavesFix/ ()V +MD: net/minecraft/util/datafix/fixes/LeavesFix/ (Lcom/mojang/datafixers/schemas/Schema;Z)V net/minecraft/util/datafix/fixes/LeavesFix/ (Lcom/mojang/datafixers/schemas/Schema;Z)V +MD: net/minecraft/util/datafix/fixes/LeavesFix/m_145456_ (Lnet/minecraft/util/datafix/fixes/LeavesFix$LeavesSection;)Lnet/minecraft/util/datafix/fixes/LeavesFix$LeavesSection; net/minecraft/util/datafix/fixes/LeavesFix/lambda$makeRule$2 (Lnet/minecraft/util/datafix/fixes/LeavesFix$LeavesSection;)Lnet/minecraft/util/datafix/fixes/LeavesFix$LeavesSection; +MD: net/minecraft/util/datafix/fixes/LeavesFix/m_145458_ (Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; net/minecraft/util/datafix/fixes/LeavesFix/lambda$makeRule$6 (Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; +MD: net/minecraft/util/datafix/fixes/LeavesFix/m_145462_ (Lcom/mojang/datafixers/OpticFinder;[ILcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; net/minecraft/util/datafix/fixes/LeavesFix/lambda$makeRule$4 (Lcom/mojang/datafixers/OpticFinder;[ILcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; +MD: net/minecraft/util/datafix/fixes/LeavesFix/m_145466_ (Lcom/mojang/datafixers/Typed;)Lnet/minecraft/util/datafix/fixes/LeavesFix$LeavesSection; net/minecraft/util/datafix/fixes/LeavesFix/lambda$makeRule$1 (Lcom/mojang/datafixers/Typed;)Lnet/minecraft/util/datafix/fixes/LeavesFix$LeavesSection; +MD: net/minecraft/util/datafix/fixes/LeavesFix/m_145468_ (Lit/unimi/dsi/fastutil/ints/Int2ObjectMap;Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; net/minecraft/util/datafix/fixes/LeavesFix/lambda$makeRule$3 (Lit/unimi/dsi/fastutil/ints/Int2ObjectMap;Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; +MD: net/minecraft/util/datafix/fixes/LeavesFix/m_145471_ ([ILcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/LeavesFix/lambda$makeRule$5 ([ILcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/LeavesFix/m_16208_ (I)I net/minecraft/util/datafix/fixes/LeavesFix/getX (I)I +MD: net/minecraft/util/datafix/fixes/LeavesFix/m_16210_ (III)I net/minecraft/util/datafix/fixes/LeavesFix/getIndex (III)I +MD: net/minecraft/util/datafix/fixes/LeavesFix/m_16216_ (Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; net/minecraft/util/datafix/fixes/LeavesFix/lambda$makeRule$7 (Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; +MD: net/minecraft/util/datafix/fixes/LeavesFix/m_16234_ (Lit/unimi/dsi/fastutil/objects/Object2IntOpenHashMap;)V net/minecraft/util/datafix/fixes/LeavesFix/lambda$static$0 (Lit/unimi/dsi/fastutil/objects/Object2IntOpenHashMap;)V +MD: net/minecraft/util/datafix/fixes/LeavesFix/m_16236_ (ZZZZ)I net/minecraft/util/datafix/fixes/LeavesFix/getSideMask (ZZZZ)I +MD: net/minecraft/util/datafix/fixes/LeavesFix/m_16245_ (I)I net/minecraft/util/datafix/fixes/LeavesFix/getY (I)I +MD: net/minecraft/util/datafix/fixes/LeavesFix/m_16247_ (I)I net/minecraft/util/datafix/fixes/LeavesFix/getZ (I)I +MD: net/minecraft/util/datafix/fixes/LeavesFix/makeRule ()Lcom/mojang/datafixers/TypeRewriteRule; net/minecraft/util/datafix/fixes/LeavesFix/makeRule ()Lcom/mojang/datafixers/TypeRewriteRule; +MD: net/minecraft/util/datafix/fixes/LeavesFix$LeavesSection/ (Lcom/mojang/datafixers/Typed;Lcom/mojang/datafixers/schemas/Schema;)V net/minecraft/util/datafix/fixes/LeavesFix$LeavesSection/ (Lcom/mojang/datafixers/Typed;Lcom/mojang/datafixers/schemas/Schema;)V +MD: net/minecraft/util/datafix/fixes/LeavesFix$LeavesSection/m_16257_ (I)Z net/minecraft/util/datafix/fixes/LeavesFix$LeavesSection/isLog (I)Z +MD: net/minecraft/util/datafix/fixes/LeavesFix$LeavesSection/m_16259_ (III)V net/minecraft/util/datafix/fixes/LeavesFix$LeavesSection/setDistance (III)V +MD: net/minecraft/util/datafix/fixes/LeavesFix$LeavesSection/m_16271_ (Lcom/mojang/serialization/Dynamic;Ljava/lang/String;ZI)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/LeavesFix$LeavesSection/makeLeafTag (Lcom/mojang/serialization/Dynamic;Ljava/lang/String;ZI)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/LeavesFix$LeavesSection/m_16276_ (I)Z net/minecraft/util/datafix/fixes/LeavesFix$LeavesSection/isLeaf (I)Z +MD: net/minecraft/util/datafix/fixes/LeavesFix$LeavesSection/m_16278_ (I)I net/minecraft/util/datafix/fixes/LeavesFix$LeavesSection/getDistance (I)I +MD: net/minecraft/util/datafix/fixes/LeavesFix$LeavesSection/m_7969_ ()Z net/minecraft/util/datafix/fixes/LeavesFix$LeavesSection/skippable ()Z +MD: net/minecraft/util/datafix/fixes/LeavesFix$Section/ (Lcom/mojang/datafixers/Typed;Lcom/mojang/datafixers/schemas/Schema;)V net/minecraft/util/datafix/fixes/LeavesFix$Section/ (Lcom/mojang/datafixers/Typed;Lcom/mojang/datafixers/schemas/Schema;)V +MD: net/minecraft/util/datafix/fixes/LeavesFix$Section/m_16288_ (Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; net/minecraft/util/datafix/fixes/LeavesFix$Section/write (Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; +MD: net/minecraft/util/datafix/fixes/LeavesFix$Section/m_16290_ (Lcom/mojang/serialization/Dynamic;)V net/minecraft/util/datafix/fixes/LeavesFix$Section/readStorage (Lcom/mojang/serialization/Dynamic;)V +MD: net/minecraft/util/datafix/fixes/LeavesFix$Section/m_16292_ (Ljava/lang/String;ZI)I net/minecraft/util/datafix/fixes/LeavesFix$Section/getStateId (Ljava/lang/String;ZI)I +MD: net/minecraft/util/datafix/fixes/LeavesFix$Section/m_16296_ (Ljava/util/List;)Ljava/util/List; net/minecraft/util/datafix/fixes/LeavesFix$Section/lambda$new$0 (Ljava/util/List;)Ljava/util/List; +MD: net/minecraft/util/datafix/fixes/LeavesFix$Section/m_16298_ ()Z net/minecraft/util/datafix/fixes/LeavesFix$Section/isSkippable ()Z +MD: net/minecraft/util/datafix/fixes/LeavesFix$Section/m_16299_ (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/datafixers/util/Pair; net/minecraft/util/datafix/fixes/LeavesFix$Section/lambda$write$2 (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/datafixers/util/Pair; +MD: net/minecraft/util/datafix/fixes/LeavesFix$Section/m_16301_ ()I net/minecraft/util/datafix/fixes/LeavesFix$Section/getIndex ()I +MD: net/minecraft/util/datafix/fixes/LeavesFix$Section/m_16302_ (I)I net/minecraft/util/datafix/fixes/LeavesFix$Section/getBlock (I)I +MD: net/minecraft/util/datafix/fixes/LeavesFix$Section/m_16304_ (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/LeavesFix$Section/lambda$write$1 (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/LeavesFix$Section/m_7969_ ()Z net/minecraft/util/datafix/fixes/LeavesFix$Section/skippable ()Z +MD: net/minecraft/util/datafix/fixes/LegacyDragonFightFix/ (Lcom/mojang/datafixers/schemas/Schema;)V net/minecraft/util/datafix/fixes/LegacyDragonFightFix/ (Lcom/mojang/datafixers/schemas/Schema;)V +MD: net/minecraft/util/datafix/fixes/LegacyDragonFightFix/m_289720_ (Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; net/minecraft/util/datafix/fixes/LegacyDragonFightFix/lambda$makeRule$1 (Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; +MD: net/minecraft/util/datafix/fixes/LegacyDragonFightFix/m_289728_ (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/LegacyDragonFightFix/lambda$makeRule$0 (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/LegacyDragonFightFix/makeRule ()Lcom/mojang/datafixers/TypeRewriteRule; net/minecraft/util/datafix/fixes/LegacyDragonFightFix/makeRule ()Lcom/mojang/datafixers/TypeRewriteRule; +MD: net/minecraft/util/datafix/fixes/LevelDataGeneratorOptionsFix/ ()V net/minecraft/util/datafix/fixes/LevelDataGeneratorOptionsFix/ ()V +MD: net/minecraft/util/datafix/fixes/LevelDataGeneratorOptionsFix/ (Lcom/mojang/datafixers/schemas/Schema;Z)V net/minecraft/util/datafix/fixes/LevelDataGeneratorOptionsFix/ (Lcom/mojang/datafixers/schemas/Schema;Z)V +MD: net/minecraft/util/datafix/fixes/LevelDataGeneratorOptionsFix/m_145481_ ()Ljava/lang/IllegalStateException; net/minecraft/util/datafix/fixes/LevelDataGeneratorOptionsFix/lambda$makeRule$2 ()Ljava/lang/IllegalStateException; +MD: net/minecraft/util/datafix/fixes/LevelDataGeneratorOptionsFix/m_145482_ (Lcom/mojang/datafixers/types/Type;Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/DataResult; net/minecraft/util/datafix/fixes/LevelDataGeneratorOptionsFix/lambda$makeRule$1 (Lcom/mojang/datafixers/types/Type;Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/DataResult; +MD: net/minecraft/util/datafix/fixes/LevelDataGeneratorOptionsFix/m_145485_ (Lcom/mojang/serialization/DynamicOps;Ljava/util/Map$Entry;)Lcom/mojang/datafixers/util/Pair; net/minecraft/util/datafix/fixes/LevelDataGeneratorOptionsFix/lambda$convert$5 (Lcom/mojang/serialization/DynamicOps;Ljava/util/Map$Entry;)Lcom/mojang/datafixers/util/Pair; +MD: net/minecraft/util/datafix/fixes/LevelDataGeneratorOptionsFix/m_16312_ (Lcom/mojang/datafixers/types/Type;Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; net/minecraft/util/datafix/fixes/LevelDataGeneratorOptionsFix/lambda$makeRule$3 (Lcom/mojang/datafixers/types/Type;Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; +MD: net/minecraft/util/datafix/fixes/LevelDataGeneratorOptionsFix/m_16318_ (Lcom/mojang/serialization/DynamicOps;Lcom/mojang/datafixers/util/Pair;)Ljava/lang/Object; net/minecraft/util/datafix/fixes/LevelDataGeneratorOptionsFix/lambda$convert$4 (Lcom/mojang/serialization/DynamicOps;Lcom/mojang/datafixers/util/Pair;)Ljava/lang/Object; +MD: net/minecraft/util/datafix/fixes/LevelDataGeneratorOptionsFix/m_16321_ (Lcom/mojang/serialization/DynamicOps;Ljava/util/Map$Entry;)Lcom/mojang/datafixers/util/Pair; net/minecraft/util/datafix/fixes/LevelDataGeneratorOptionsFix/lambda$convert$6 (Lcom/mojang/serialization/DynamicOps;Ljava/util/Map$Entry;)Lcom/mojang/datafixers/util/Pair; +MD: net/minecraft/util/datafix/fixes/LevelDataGeneratorOptionsFix/m_16324_ (Ljava/lang/String;)Lcom/mojang/datafixers/util/Pair; net/minecraft/util/datafix/fixes/LevelDataGeneratorOptionsFix/getLayerInfoFromString (Ljava/lang/String;)Lcom/mojang/datafixers/util/Pair; +MD: net/minecraft/util/datafix/fixes/LevelDataGeneratorOptionsFix/m_16326_ (Ljava/lang/String;Lcom/mojang/serialization/DynamicOps;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/LevelDataGeneratorOptionsFix/convert (Ljava/lang/String;Lcom/mojang/serialization/DynamicOps;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/LevelDataGeneratorOptionsFix/m_16329_ (Ljava/util/HashMap;)V net/minecraft/util/datafix/fixes/LevelDataGeneratorOptionsFix/lambda$static$0 (Ljava/util/HashMap;)V +MD: net/minecraft/util/datafix/fixes/LevelDataGeneratorOptionsFix/m_16334_ (Ljava/lang/String;)Ljava/util/List; net/minecraft/util/datafix/fixes/LevelDataGeneratorOptionsFix/getLayersInfoFromString (Ljava/lang/String;)Ljava/util/List; +MD: net/minecraft/util/datafix/fixes/LevelDataGeneratorOptionsFix/makeRule ()Lcom/mojang/datafixers/TypeRewriteRule; net/minecraft/util/datafix/fixes/LevelDataGeneratorOptionsFix/makeRule ()Lcom/mojang/datafixers/TypeRewriteRule; +MD: net/minecraft/util/datafix/fixes/LevelFlatGeneratorInfoFix/ ()V net/minecraft/util/datafix/fixes/LevelFlatGeneratorInfoFix/ ()V +MD: net/minecraft/util/datafix/fixes/LevelFlatGeneratorInfoFix/ (Lcom/mojang/datafixers/schemas/Schema;Z)V net/minecraft/util/datafix/fixes/LevelFlatGeneratorInfoFix/ (Lcom/mojang/datafixers/schemas/Schema;Z)V +MD: net/minecraft/util/datafix/fixes/LevelFlatGeneratorInfoFix/m_16346_ (Lcom/google/common/base/Splitter;ILjava/lang/String;)Ljava/lang/String; net/minecraft/util/datafix/fixes/LevelFlatGeneratorInfoFix/lambda$fixString$2 (Lcom/google/common/base/Splitter;ILjava/lang/String;)Ljava/lang/String; +MD: net/minecraft/util/datafix/fixes/LevelFlatGeneratorInfoFix/m_16350_ (Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; net/minecraft/util/datafix/fixes/LevelFlatGeneratorInfoFix/lambda$makeRule$0 (Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; +MD: net/minecraft/util/datafix/fixes/LevelFlatGeneratorInfoFix/m_16352_ (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/LevelFlatGeneratorInfoFix/fix (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/LevelFlatGeneratorInfoFix/m_16354_ (Ljava/lang/String;)Ljava/lang/String; net/minecraft/util/datafix/fixes/LevelFlatGeneratorInfoFix/fixString (Ljava/lang/String;)Ljava/lang/String; +MD: net/minecraft/util/datafix/fixes/LevelFlatGeneratorInfoFix/m_16356_ (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/LevelFlatGeneratorInfoFix/lambda$fix$1 (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/LevelFlatGeneratorInfoFix/makeRule ()Lcom/mojang/datafixers/TypeRewriteRule; net/minecraft/util/datafix/fixes/LevelFlatGeneratorInfoFix/makeRule ()Lcom/mojang/datafixers/TypeRewriteRule; +MD: net/minecraft/util/datafix/fixes/LevelUUIDFix/ ()V net/minecraft/util/datafix/fixes/LevelUUIDFix/ ()V +MD: net/minecraft/util/datafix/fixes/LevelUUIDFix/ (Lcom/mojang/datafixers/schemas/Schema;)V net/minecraft/util/datafix/fixes/LevelUUIDFix/ (Lcom/mojang/datafixers/schemas/Schema;)V +MD: net/minecraft/util/datafix/fixes/LevelUUIDFix/m_145490_ (Lcom/mojang/datafixers/util/Pair;)Lcom/mojang/datafixers/util/Pair; net/minecraft/util/datafix/fixes/LevelUUIDFix/lambda$updateCustomBossEvents$11 (Lcom/mojang/datafixers/util/Pair;)Lcom/mojang/datafixers/util/Pair; +MD: net/minecraft/util/datafix/fixes/LevelUUIDFix/m_145492_ (Lcom/mojang/serialization/Dynamic;Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/LevelUUIDFix/lambda$updateCustomBossEvents$9 (Lcom/mojang/serialization/Dynamic;Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/LevelUUIDFix/m_145495_ (Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; net/minecraft/util/datafix/fixes/LevelUUIDFix/lambda$makeRule$1 (Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; +MD: net/minecraft/util/datafix/fixes/LevelUUIDFix/m_145497_ (Lcom/mojang/datafixers/util/Pair;)Lcom/mojang/datafixers/util/Pair; net/minecraft/util/datafix/fixes/LevelUUIDFix/lambda$updateDragonFight$5 (Lcom/mojang/datafixers/util/Pair;)Lcom/mojang/datafixers/util/Pair; +MD: net/minecraft/util/datafix/fixes/LevelUUIDFix/m_145499_ (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/LevelUUIDFix/lambda$updateCustomBossEvents$10 (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/LevelUUIDFix/m_145501_ (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/LevelUUIDFix/lambda$updateCustomBossEvents$8 (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/LevelUUIDFix/m_145503_ (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/LevelUUIDFix/lambda$updateCustomBossEvents$7 (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/LevelUUIDFix/m_145505_ (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/LevelUUIDFix/lambda$updateDragonFight$4 (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/LevelUUIDFix/m_145507_ (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/LevelUUIDFix/lambda$updateDragonFight$3 (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/LevelUUIDFix/m_145509_ (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/LevelUUIDFix/lambda$makeRule$0 (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/LevelUUIDFix/m_16361_ (Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; net/minecraft/util/datafix/fixes/LevelUUIDFix/lambda$makeRule$2 (Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; +MD: net/minecraft/util/datafix/fixes/LevelUUIDFix/m_16372_ (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/LevelUUIDFix/updateWanderingTrader (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/LevelUUIDFix/m_16374_ (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/LevelUUIDFix/updateDragonFight (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/LevelUUIDFix/m_16376_ (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/LevelUUIDFix/updateCustomBossEvents (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/LevelUUIDFix/m_16378_ (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/LevelUUIDFix/lambda$updateCustomBossEvents$12 (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/LevelUUIDFix/m_16386_ (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/LevelUUIDFix/lambda$updateDragonFight$6 (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/LevelUUIDFix/makeRule ()Lcom/mojang/datafixers/TypeRewriteRule; net/minecraft/util/datafix/fixes/LevelUUIDFix/makeRule ()Lcom/mojang/datafixers/TypeRewriteRule; +MD: net/minecraft/util/datafix/fixes/MapIdFix/ (Lcom/mojang/datafixers/schemas/Schema;Z)V net/minecraft/util/datafix/fixes/MapIdFix/ (Lcom/mojang/datafixers/schemas/Schema;Z)V +MD: net/minecraft/util/datafix/fixes/MapIdFix/m_145511_ (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/MapIdFix/lambda$makeRule$0 (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/MapIdFix/m_16398_ (Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; net/minecraft/util/datafix/fixes/MapIdFix/lambda$makeRule$1 (Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; +MD: net/minecraft/util/datafix/fixes/MapIdFix/makeRule ()Lcom/mojang/datafixers/TypeRewriteRule; net/minecraft/util/datafix/fixes/MapIdFix/makeRule ()Lcom/mojang/datafixers/TypeRewriteRule; +MD: net/minecraft/util/datafix/fixes/MemoryExpiryDataFix/ (Lcom/mojang/datafixers/schemas/Schema;Ljava/lang/String;)V net/minecraft/util/datafix/fixes/MemoryExpiryDataFix/ (Lcom/mojang/datafixers/schemas/Schema;Ljava/lang/String;)V +MD: net/minecraft/util/datafix/fixes/MemoryExpiryDataFix/m_16409_ (Lcom/mojang/datafixers/util/Pair;)Lcom/mojang/datafixers/util/Pair; net/minecraft/util/datafix/fixes/MemoryExpiryDataFix/updateMemoryEntry (Lcom/mojang/datafixers/util/Pair;)Lcom/mojang/datafixers/util/Pair; +MD: net/minecraft/util/datafix/fixes/MemoryExpiryDataFix/m_16411_ (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/MemoryExpiryDataFix/fixTag (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/MemoryExpiryDataFix/m_16413_ (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/MemoryExpiryDataFix/updateBrain (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/MemoryExpiryDataFix/m_16415_ (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/MemoryExpiryDataFix/updateMemories (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/MemoryExpiryDataFix/m_16417_ (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/MemoryExpiryDataFix/wrapMemoryValue (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/MemoryExpiryDataFix/m_7504_ (Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; net/minecraft/util/datafix/fixes/MemoryExpiryDataFix/fix (Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; +MD: net/minecraft/util/datafix/fixes/MissingDimensionFix/ (Lcom/mojang/datafixers/schemas/Schema;Z)V net/minecraft/util/datafix/fixes/MissingDimensionFix/ (Lcom/mojang/datafixers/schemas/Schema;Z)V +MD: net/minecraft/util/datafix/fixes/MissingDimensionFix/m_145513_ (Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/Typed;Lcom/mojang/datafixers/types/templates/CompoundList$CompoundListType;Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; net/minecraft/util/datafix/fixes/MissingDimensionFix/lambda$makeRule$1 (Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/Typed;Lcom/mojang/datafixers/types/templates/CompoundList$CompoundListType;Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; +MD: net/minecraft/util/datafix/fixes/MissingDimensionFix/m_145518_ (Lcom/mojang/datafixers/Typed;Lcom/mojang/datafixers/types/templates/CompoundList$CompoundListType;Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; net/minecraft/util/datafix/fixes/MissingDimensionFix/lambda$makeRule$0 (Lcom/mojang/datafixers/Typed;Lcom/mojang/datafixers/types/templates/CompoundList$CompoundListType;Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; +MD: net/minecraft/util/datafix/fixes/MissingDimensionFix/m_16422_ (Lcom/mojang/datafixers/FieldFinder;Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/types/templates/CompoundList$CompoundListType;Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; net/minecraft/util/datafix/fixes/MissingDimensionFix/lambda$makeRule$2 (Lcom/mojang/datafixers/FieldFinder;Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/types/templates/CompoundList$CompoundListType;Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; +MD: net/minecraft/util/datafix/fixes/MissingDimensionFix/m_16436_ (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/MissingDimensionFix/recreateSettings (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/MissingDimensionFix/m_16438_ (Ljava/lang/String;Lcom/mojang/datafixers/types/Type;)Lcom/mojang/datafixers/types/Type; net/minecraft/util/datafix/fixes/MissingDimensionFix/fields (Ljava/lang/String;Lcom/mojang/datafixers/types/Type;)Lcom/mojang/datafixers/types/Type; +MD: net/minecraft/util/datafix/fixes/MissingDimensionFix/m_16441_ (Ljava/lang/String;Lcom/mojang/datafixers/types/Type;Ljava/lang/String;Lcom/mojang/datafixers/types/Type;)Lcom/mojang/datafixers/types/Type; net/minecraft/util/datafix/fixes/MissingDimensionFix/optionalFields (Ljava/lang/String;Lcom/mojang/datafixers/types/Type;Ljava/lang/String;Lcom/mojang/datafixers/types/Type;)Lcom/mojang/datafixers/types/Type; +MD: net/minecraft/util/datafix/fixes/MissingDimensionFix/m_16446_ (Ljava/lang/String;Lcom/mojang/datafixers/types/Type;)Lcom/mojang/datafixers/types/Type; net/minecraft/util/datafix/fixes/MissingDimensionFix/optionalFields (Ljava/lang/String;Lcom/mojang/datafixers/types/Type;)Lcom/mojang/datafixers/types/Type; +MD: net/minecraft/util/datafix/fixes/MissingDimensionFix/m_185130_ (Lcom/mojang/datafixers/schemas/Schema;)Lcom/mojang/datafixers/types/Type; net/minecraft/util/datafix/fixes/MissingDimensionFix/flatType (Lcom/mojang/datafixers/schemas/Schema;)Lcom/mojang/datafixers/types/Type; +MD: net/minecraft/util/datafix/fixes/MissingDimensionFix/makeRule ()Lcom/mojang/datafixers/TypeRewriteRule; net/minecraft/util/datafix/fixes/MissingDimensionFix/makeRule ()Lcom/mojang/datafixers/TypeRewriteRule; +MD: net/minecraft/util/datafix/fixes/MobSpawnerEntityIdentifiersFix/ (Lcom/mojang/datafixers/schemas/Schema;Z)V net/minecraft/util/datafix/fixes/MobSpawnerEntityIdentifiersFix/ (Lcom/mojang/datafixers/schemas/Schema;Z)V +MD: net/minecraft/util/datafix/fixes/MobSpawnerEntityIdentifiersFix/m_16453_ (Lcom/mojang/datafixers/types/Type;Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; net/minecraft/util/datafix/fixes/MobSpawnerEntityIdentifiersFix/lambda$makeRule$1 (Lcom/mojang/datafixers/types/Type;Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; +MD: net/minecraft/util/datafix/fixes/MobSpawnerEntityIdentifiersFix/m_16456_ (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/MobSpawnerEntityIdentifiersFix/fix (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/MobSpawnerEntityIdentifiersFix/m_16458_ (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/MobSpawnerEntityIdentifiersFix/lambda$fix$0 (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/MobSpawnerEntityIdentifiersFix/makeRule ()Lcom/mojang/datafixers/TypeRewriteRule; net/minecraft/util/datafix/fixes/MobSpawnerEntityIdentifiersFix/makeRule ()Lcom/mojang/datafixers/TypeRewriteRule; +MD: net/minecraft/util/datafix/fixes/NamedEntityFix/ (Lcom/mojang/datafixers/schemas/Schema;ZLjava/lang/String;Lcom/mojang/datafixers/DSL$TypeReference;Ljava/lang/String;)V net/minecraft/util/datafix/fixes/NamedEntityFix/ (Lcom/mojang/datafixers/schemas/Schema;ZLjava/lang/String;Lcom/mojang/datafixers/DSL$TypeReference;Ljava/lang/String;)V +MD: net/minecraft/util/datafix/fixes/NamedEntityFix/m_16470_ (Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; net/minecraft/util/datafix/fixes/NamedEntityFix/lambda$makeRule$0 (Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; +MD: net/minecraft/util/datafix/fixes/NamedEntityFix/m_7504_ (Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; net/minecraft/util/datafix/fixes/NamedEntityFix/fix (Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; +MD: net/minecraft/util/datafix/fixes/NamedEntityFix/makeRule ()Lcom/mojang/datafixers/TypeRewriteRule; net/minecraft/util/datafix/fixes/NamedEntityFix/makeRule ()Lcom/mojang/datafixers/TypeRewriteRule; +MD: net/minecraft/util/datafix/fixes/NamespacedTypeRenameFix/ (Lcom/mojang/datafixers/schemas/Schema;Ljava/lang/String;Lcom/mojang/datafixers/DSL$TypeReference;Ljava/util/function/UnaryOperator;)V net/minecraft/util/datafix/fixes/NamespacedTypeRenameFix/ (Lcom/mojang/datafixers/schemas/Schema;Ljava/lang/String;Lcom/mojang/datafixers/DSL$TypeReference;Ljava/util/function/UnaryOperator;)V +MD: net/minecraft/util/datafix/fixes/NamespacedTypeRenameFix/m_276795_ (Lcom/mojang/datafixers/util/Pair;)Lcom/mojang/datafixers/util/Pair; net/minecraft/util/datafix/fixes/NamespacedTypeRenameFix/lambda$makeRule$0 (Lcom/mojang/datafixers/util/Pair;)Lcom/mojang/datafixers/util/Pair; +MD: net/minecraft/util/datafix/fixes/NamespacedTypeRenameFix/m_277048_ (Lcom/mojang/serialization/DynamicOps;)Ljava/util/function/Function; net/minecraft/util/datafix/fixes/NamespacedTypeRenameFix/lambda$makeRule$1 (Lcom/mojang/serialization/DynamicOps;)Ljava/util/function/Function; +MD: net/minecraft/util/datafix/fixes/NamespacedTypeRenameFix/makeRule ()Lcom/mojang/datafixers/TypeRewriteRule; net/minecraft/util/datafix/fixes/NamespacedTypeRenameFix/makeRule ()Lcom/mojang/datafixers/TypeRewriteRule; +MD: net/minecraft/util/datafix/fixes/NewVillageFix/ (Lcom/mojang/datafixers/schemas/Schema;Z)V net/minecraft/util/datafix/fixes/NewVillageFix/ (Lcom/mojang/datafixers/schemas/Schema;Z)V +MD: net/minecraft/util/datafix/fixes/NewVillageFix/m_145522_ (Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; net/minecraft/util/datafix/fixes/NewVillageFix/lambda$cap$9 (Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; +MD: net/minecraft/util/datafix/fixes/NewVillageFix/m_145527_ (Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; net/minecraft/util/datafix/fixes/NewVillageFix/lambda$cap$8 (Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; +MD: net/minecraft/util/datafix/fixes/NewVillageFix/m_145531_ (Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; net/minecraft/util/datafix/fixes/NewVillageFix/lambda$cap$4 (Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; +MD: net/minecraft/util/datafix/fixes/NewVillageFix/m_145534_ (Lcom/mojang/datafixers/util/Pair;)Lcom/mojang/datafixers/util/Pair; net/minecraft/util/datafix/fixes/NewVillageFix/lambda$cap$2 (Lcom/mojang/datafixers/util/Pair;)Lcom/mojang/datafixers/util/Pair; +MD: net/minecraft/util/datafix/fixes/NewVillageFix/m_145536_ (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/NewVillageFix/lambda$cap$12 (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/NewVillageFix/m_145538_ (Lcom/mojang/serialization/Dynamic;Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/NewVillageFix/lambda$cap$5 (Lcom/mojang/serialization/Dynamic;Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/NewVillageFix/m_145541_ (Ljava/lang/String;)Ljava/lang/String; net/minecraft/util/datafix/fixes/NewVillageFix/lambda$cap$1 (Ljava/lang/String;)Ljava/lang/String; +MD: net/minecraft/util/datafix/fixes/NewVillageFix/m_145543_ (Ljava/util/List;)Ljava/util/List; net/minecraft/util/datafix/fixes/NewVillageFix/lambda$cap$3 (Ljava/util/List;)Ljava/util/List; +MD: net/minecraft/util/datafix/fixes/NewVillageFix/m_145545_ (Lcom/mojang/datafixers/util/Pair;)Z net/minecraft/util/datafix/fixes/NewVillageFix/lambda$cap$0 (Lcom/mojang/datafixers/util/Pair;)Z +MD: net/minecraft/util/datafix/fixes/NewVillageFix/m_145547_ (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/NewVillageFix/lambda$cap$11 (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/NewVillageFix/m_145549_ (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/NewVillageFix/lambda$cap$7 (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/NewVillageFix/m_145551_ (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/NewVillageFix/lambda$cap$6 (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/NewVillageFix/m_16478_ (Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; net/minecraft/util/datafix/fixes/NewVillageFix/lambda$cap$10 (Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; +MD: net/minecraft/util/datafix/fixes/NewVillageFix/m_16496_ (Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; net/minecraft/util/datafix/fixes/NewVillageFix/lambda$cap$13 (Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; +MD: net/minecraft/util/datafix/fixes/NewVillageFix/m_16498_ (Lcom/mojang/datafixers/types/templates/CompoundList$CompoundListType;)Lcom/mojang/datafixers/TypeRewriteRule; net/minecraft/util/datafix/fixes/NewVillageFix/cap (Lcom/mojang/datafixers/types/templates/CompoundList$CompoundListType;)Lcom/mojang/datafixers/TypeRewriteRule; +MD: net/minecraft/util/datafix/fixes/NewVillageFix/makeRule ()Lcom/mojang/datafixers/TypeRewriteRule; net/minecraft/util/datafix/fixes/NewVillageFix/makeRule ()Lcom/mojang/datafixers/TypeRewriteRule; +MD: net/minecraft/util/datafix/fixes/ObjectiveDisplayNameFix/ (Lcom/mojang/datafixers/schemas/Schema;Z)V net/minecraft/util/datafix/fixes/ObjectiveDisplayNameFix/ (Lcom/mojang/datafixers/schemas/Schema;Z)V +MD: net/minecraft/util/datafix/fixes/ObjectiveDisplayNameFix/m_145555_ (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/ObjectiveDisplayNameFix/lambda$makeRule$2 (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/ObjectiveDisplayNameFix/m_145557_ (Lcom/mojang/serialization/Dynamic;Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/ObjectiveDisplayNameFix/lambda$makeRule$1 (Lcom/mojang/serialization/Dynamic;Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/ObjectiveDisplayNameFix/m_145560_ (Ljava/lang/String;)Ljava/lang/String; net/minecraft/util/datafix/fixes/ObjectiveDisplayNameFix/lambda$makeRule$0 (Ljava/lang/String;)Ljava/lang/String; +MD: net/minecraft/util/datafix/fixes/ObjectiveDisplayNameFix/m_181038_ (Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; net/minecraft/util/datafix/fixes/ObjectiveDisplayNameFix/lambda$makeRule$3 (Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; +MD: net/minecraft/util/datafix/fixes/ObjectiveDisplayNameFix/makeRule ()Lcom/mojang/datafixers/TypeRewriteRule; net/minecraft/util/datafix/fixes/ObjectiveDisplayNameFix/makeRule ()Lcom/mojang/datafixers/TypeRewriteRule; +MD: net/minecraft/util/datafix/fixes/ObjectiveRenderTypeFix/ (Lcom/mojang/datafixers/schemas/Schema;Z)V net/minecraft/util/datafix/fixes/ObjectiveRenderTypeFix/ (Lcom/mojang/datafixers/schemas/Schema;Z)V +MD: net/minecraft/util/datafix/fixes/ObjectiveRenderTypeFix/m_181040_ (Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; net/minecraft/util/datafix/fixes/ObjectiveRenderTypeFix/lambda$makeRule$1 (Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; +MD: net/minecraft/util/datafix/fixes/ObjectiveRenderTypeFix/m_262778_ (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/ObjectiveRenderTypeFix/lambda$makeRule$0 (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/ObjectiveRenderTypeFix/m_262826_ (Ljava/lang/String;)Ljava/lang/String; net/minecraft/util/datafix/fixes/ObjectiveRenderTypeFix/getRenderType (Ljava/lang/String;)Ljava/lang/String; +MD: net/minecraft/util/datafix/fixes/ObjectiveRenderTypeFix/makeRule ()Lcom/mojang/datafixers/TypeRewriteRule; net/minecraft/util/datafix/fixes/ObjectiveRenderTypeFix/makeRule ()Lcom/mojang/datafixers/TypeRewriteRule; +MD: net/minecraft/util/datafix/fixes/OminousBannerBlockEntityRenameFix/ (Lcom/mojang/datafixers/schemas/Schema;Z)V net/minecraft/util/datafix/fixes/OminousBannerBlockEntityRenameFix/ (Lcom/mojang/datafixers/schemas/Schema;Z)V +MD: net/minecraft/util/datafix/fixes/OminousBannerBlockEntityRenameFix/m_16552_ (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/OminousBannerBlockEntityRenameFix/fixTag (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/OminousBannerBlockEntityRenameFix/m_7504_ (Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; net/minecraft/util/datafix/fixes/OminousBannerBlockEntityRenameFix/fix (Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; +MD: net/minecraft/util/datafix/fixes/OminousBannerRenameFix/ (Lcom/mojang/datafixers/schemas/Schema;)V net/minecraft/util/datafix/fixes/OminousBannerRenameFix/ (Lcom/mojang/datafixers/schemas/Schema;)V +MD: net/minecraft/util/datafix/fixes/OminousBannerRenameFix/m_213922_ (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/OminousBannerRenameFix/fixItemStackTag (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/OminousBannerRenameFix/m_216697_ (Ljava/lang/String;)Z net/minecraft/util/datafix/fixes/OminousBannerRenameFix/lambda$new$0 (Ljava/lang/String;)Z +MD: net/minecraft/util/datafix/fixes/OptionsAccessibilityOnboardFix/ (Lcom/mojang/datafixers/schemas/Schema;)V net/minecraft/util/datafix/fixes/OptionsAccessibilityOnboardFix/ (Lcom/mojang/datafixers/schemas/Schema;)V +MD: net/minecraft/util/datafix/fixes/OptionsAccessibilityOnboardFix/m_264351_ (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/OptionsAccessibilityOnboardFix/lambda$makeRule$0 (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/OptionsAccessibilityOnboardFix/m_264368_ (Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; net/minecraft/util/datafix/fixes/OptionsAccessibilityOnboardFix/lambda$makeRule$1 (Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; +MD: net/minecraft/util/datafix/fixes/OptionsAccessibilityOnboardFix/makeRule ()Lcom/mojang/datafixers/TypeRewriteRule; net/minecraft/util/datafix/fixes/OptionsAccessibilityOnboardFix/makeRule ()Lcom/mojang/datafixers/TypeRewriteRule; +MD: net/minecraft/util/datafix/fixes/OptionsAddTextBackgroundFix/ (Lcom/mojang/datafixers/schemas/Schema;Z)V net/minecraft/util/datafix/fixes/OptionsAddTextBackgroundFix/ (Lcom/mojang/datafixers/schemas/Schema;Z)V +MD: net/minecraft/util/datafix/fixes/OptionsAddTextBackgroundFix/m_145566_ (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/OptionsAddTextBackgroundFix/lambda$makeRule$1 (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/OptionsAddTextBackgroundFix/m_145568_ (Lcom/mojang/serialization/Dynamic;Ljava/lang/String;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/OptionsAddTextBackgroundFix/lambda$makeRule$0 (Lcom/mojang/serialization/Dynamic;Ljava/lang/String;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/OptionsAddTextBackgroundFix/m_16609_ (Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; net/minecraft/util/datafix/fixes/OptionsAddTextBackgroundFix/lambda$makeRule$2 (Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; +MD: net/minecraft/util/datafix/fixes/OptionsAddTextBackgroundFix/m_16616_ (Ljava/lang/String;)D net/minecraft/util/datafix/fixes/OptionsAddTextBackgroundFix/calculateBackground (Ljava/lang/String;)D +MD: net/minecraft/util/datafix/fixes/OptionsAddTextBackgroundFix/makeRule ()Lcom/mojang/datafixers/TypeRewriteRule; net/minecraft/util/datafix/fixes/OptionsAddTextBackgroundFix/makeRule ()Lcom/mojang/datafixers/TypeRewriteRule; +MD: net/minecraft/util/datafix/fixes/OptionsAmbientOcclusionFix/ (Lcom/mojang/datafixers/schemas/Schema;)V net/minecraft/util/datafix/fixes/OptionsAmbientOcclusionFix/ (Lcom/mojang/datafixers/schemas/Schema;)V +MD: net/minecraft/util/datafix/fixes/OptionsAmbientOcclusionFix/m_263452_ (Ljava/lang/String;)Ljava/lang/String; net/minecraft/util/datafix/fixes/OptionsAmbientOcclusionFix/updateValue (Ljava/lang/String;)Ljava/lang/String; +MD: net/minecraft/util/datafix/fixes/OptionsAmbientOcclusionFix/m_263463_ (Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; net/minecraft/util/datafix/fixes/OptionsAmbientOcclusionFix/lambda$makeRule$2 (Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; +MD: net/minecraft/util/datafix/fixes/OptionsAmbientOcclusionFix/m_263472_ (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/OptionsAmbientOcclusionFix/lambda$makeRule$1 (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/OptionsAmbientOcclusionFix/m_263474_ (Lcom/mojang/serialization/Dynamic;Ljava/lang/String;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/OptionsAmbientOcclusionFix/lambda$makeRule$0 (Lcom/mojang/serialization/Dynamic;Ljava/lang/String;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/OptionsAmbientOcclusionFix/makeRule ()Lcom/mojang/datafixers/TypeRewriteRule; net/minecraft/util/datafix/fixes/OptionsAmbientOcclusionFix/makeRule ()Lcom/mojang/datafixers/TypeRewriteRule; +MD: net/minecraft/util/datafix/fixes/OptionsForceVBOFix/ (Lcom/mojang/datafixers/schemas/Schema;Z)V net/minecraft/util/datafix/fixes/OptionsForceVBOFix/ (Lcom/mojang/datafixers/schemas/Schema;Z)V +MD: net/minecraft/util/datafix/fixes/OptionsForceVBOFix/m_145571_ (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/OptionsForceVBOFix/lambda$makeRule$0 (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/OptionsForceVBOFix/m_16622_ (Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; net/minecraft/util/datafix/fixes/OptionsForceVBOFix/lambda$makeRule$1 (Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; +MD: net/minecraft/util/datafix/fixes/OptionsForceVBOFix/makeRule ()Lcom/mojang/datafixers/TypeRewriteRule; net/minecraft/util/datafix/fixes/OptionsForceVBOFix/makeRule ()Lcom/mojang/datafixers/TypeRewriteRule; +MD: net/minecraft/util/datafix/fixes/OptionsKeyLwjgl3Fix/ ()V net/minecraft/util/datafix/fixes/OptionsKeyLwjgl3Fix/ ()V +MD: net/minecraft/util/datafix/fixes/OptionsKeyLwjgl3Fix/ (Lcom/mojang/datafixers/schemas/Schema;Z)V net/minecraft/util/datafix/fixes/OptionsKeyLwjgl3Fix/ (Lcom/mojang/datafixers/schemas/Schema;Z)V +MD: net/minecraft/util/datafix/fixes/OptionsKeyLwjgl3Fix/m_145574_ (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/OptionsKeyLwjgl3Fix/lambda$makeRule$3 (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/OptionsKeyLwjgl3Fix/m_145576_ (Lcom/mojang/serialization/Dynamic;Ljava/util/Map;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/OptionsKeyLwjgl3Fix/lambda$makeRule$2 (Lcom/mojang/serialization/Dynamic;Ljava/util/Map;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/OptionsKeyLwjgl3Fix/m_145579_ (Ljava/util/Map$Entry;)Lcom/mojang/datafixers/util/Pair; net/minecraft/util/datafix/fixes/OptionsKeyLwjgl3Fix/lambda$makeRule$1 (Ljava/util/Map$Entry;)Lcom/mojang/datafixers/util/Pair; +MD: net/minecraft/util/datafix/fixes/OptionsKeyLwjgl3Fix/m_16632_ (Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; net/minecraft/util/datafix/fixes/OptionsKeyLwjgl3Fix/lambda$makeRule$4 (Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; +MD: net/minecraft/util/datafix/fixes/OptionsKeyLwjgl3Fix/m_16639_ (Lit/unimi/dsi/fastutil/ints/Int2ObjectOpenHashMap;)V net/minecraft/util/datafix/fixes/OptionsKeyLwjgl3Fix/lambda$static$0 (Lit/unimi/dsi/fastutil/ints/Int2ObjectOpenHashMap;)V +MD: net/minecraft/util/datafix/fixes/OptionsKeyLwjgl3Fix/makeRule ()Lcom/mojang/datafixers/TypeRewriteRule; net/minecraft/util/datafix/fixes/OptionsKeyLwjgl3Fix/makeRule ()Lcom/mojang/datafixers/TypeRewriteRule; +MD: net/minecraft/util/datafix/fixes/OptionsKeyTranslationFix/ (Lcom/mojang/datafixers/schemas/Schema;Z)V net/minecraft/util/datafix/fixes/OptionsKeyTranslationFix/ (Lcom/mojang/datafixers/schemas/Schema;Z)V +MD: net/minecraft/util/datafix/fixes/OptionsKeyTranslationFix/m_145581_ (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/OptionsKeyTranslationFix/lambda$makeRule$2 (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/OptionsKeyTranslationFix/m_145583_ (Lcom/mojang/serialization/Dynamic;Ljava/util/Map$Entry;)Lcom/mojang/datafixers/util/Pair; net/minecraft/util/datafix/fixes/OptionsKeyTranslationFix/lambda$makeRule$0 (Lcom/mojang/serialization/Dynamic;Ljava/util/Map$Entry;)Lcom/mojang/datafixers/util/Pair; +MD: net/minecraft/util/datafix/fixes/OptionsKeyTranslationFix/m_145586_ (Lcom/mojang/serialization/Dynamic;Ljava/util/Map;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/OptionsKeyTranslationFix/lambda$makeRule$1 (Lcom/mojang/serialization/Dynamic;Ljava/util/Map;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/OptionsKeyTranslationFix/m_16647_ (Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; net/minecraft/util/datafix/fixes/OptionsKeyTranslationFix/lambda$makeRule$3 (Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; +MD: net/minecraft/util/datafix/fixes/OptionsKeyTranslationFix/makeRule ()Lcom/mojang/datafixers/TypeRewriteRule; net/minecraft/util/datafix/fixes/OptionsKeyTranslationFix/makeRule ()Lcom/mojang/datafixers/TypeRewriteRule; +MD: net/minecraft/util/datafix/fixes/OptionsLowerCaseLanguageFix/ (Lcom/mojang/datafixers/schemas/Schema;Z)V net/minecraft/util/datafix/fixes/OptionsLowerCaseLanguageFix/ (Lcom/mojang/datafixers/schemas/Schema;Z)V +MD: net/minecraft/util/datafix/fixes/OptionsLowerCaseLanguageFix/m_145589_ (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/OptionsLowerCaseLanguageFix/lambda$makeRule$0 (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/OptionsLowerCaseLanguageFix/m_16661_ (Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; net/minecraft/util/datafix/fixes/OptionsLowerCaseLanguageFix/lambda$makeRule$1 (Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; +MD: net/minecraft/util/datafix/fixes/OptionsLowerCaseLanguageFix/makeRule ()Lcom/mojang/datafixers/TypeRewriteRule; net/minecraft/util/datafix/fixes/OptionsLowerCaseLanguageFix/makeRule ()Lcom/mojang/datafixers/TypeRewriteRule; +MD: net/minecraft/util/datafix/fixes/OptionsProgrammerArtFix/ (Lcom/mojang/datafixers/schemas/Schema;)V net/minecraft/util/datafix/fixes/OptionsProgrammerArtFix/ (Lcom/mojang/datafixers/schemas/Schema;)V +MD: net/minecraft/util/datafix/fixes/OptionsProgrammerArtFix/m_245414_ (Lcom/mojang/serialization/Dynamic;Ljava/lang/String;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/OptionsProgrammerArtFix/lambda$fixList$2 (Lcom/mojang/serialization/Dynamic;Ljava/lang/String;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/OptionsProgrammerArtFix/m_245596_ (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/OptionsProgrammerArtFix/fixList (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/OptionsProgrammerArtFix/m_246725_ (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/OptionsProgrammerArtFix/lambda$makeRule$0 (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/OptionsProgrammerArtFix/m_247308_ (Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; net/minecraft/util/datafix/fixes/OptionsProgrammerArtFix/lambda$makeRule$1 (Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; +MD: net/minecraft/util/datafix/fixes/OptionsProgrammerArtFix/makeRule ()Lcom/mojang/datafixers/TypeRewriteRule; net/minecraft/util/datafix/fixes/OptionsProgrammerArtFix/makeRule ()Lcom/mojang/datafixers/TypeRewriteRule; +MD: net/minecraft/util/datafix/fixes/OptionsRenameFieldFix/ (Lcom/mojang/datafixers/schemas/Schema;ZLjava/lang/String;Ljava/lang/String;Ljava/lang/String;)V net/minecraft/util/datafix/fixes/OptionsRenameFieldFix/ (Lcom/mojang/datafixers/schemas/Schema;ZLjava/lang/String;Ljava/lang/String;Ljava/lang/String;)V +MD: net/minecraft/util/datafix/fixes/OptionsRenameFieldFix/m_145591_ (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/OptionsRenameFieldFix/lambda$makeRule$1 (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/OptionsRenameFieldFix/m_145593_ (Lcom/mojang/serialization/Dynamic;Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/OptionsRenameFieldFix/lambda$makeRule$0 (Lcom/mojang/serialization/Dynamic;Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/OptionsRenameFieldFix/m_16675_ (Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; net/minecraft/util/datafix/fixes/OptionsRenameFieldFix/lambda$makeRule$2 (Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; +MD: net/minecraft/util/datafix/fixes/OptionsRenameFieldFix/makeRule ()Lcom/mojang/datafixers/TypeRewriteRule; net/minecraft/util/datafix/fixes/OptionsRenameFieldFix/makeRule ()Lcom/mojang/datafixers/TypeRewriteRule; +MD: net/minecraft/util/datafix/fixes/OverreachingTickFix/ (Lcom/mojang/datafixers/schemas/Schema;)V net/minecraft/util/datafix/fixes/OverreachingTickFix/ (Lcom/mojang/datafixers/schemas/Schema;)V +MD: net/minecraft/util/datafix/fixes/OverreachingTickFix/m_207655_ (IILcom/mojang/serialization/Dynamic;)Z net/minecraft/util/datafix/fixes/OverreachingTickFix/lambda$extractOverreachingTicks$2 (IILcom/mojang/serialization/Dynamic;)Z +MD: net/minecraft/util/datafix/fixes/OverreachingTickFix/m_207659_ (Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; net/minecraft/util/datafix/fixes/OverreachingTickFix/lambda$makeRule$1 (Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; +MD: net/minecraft/util/datafix/fixes/OverreachingTickFix/m_207662_ (Lcom/mojang/serialization/Dynamic;IILjava/util/Optional;Ljava/lang/String;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/OverreachingTickFix/extractOverreachingTicks (Lcom/mojang/serialization/Dynamic;IILjava/util/Optional;Ljava/lang/String;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/OverreachingTickFix/m_207668_ (Ljava/util/Optional;Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/OverreachingTickFix/lambda$makeRule$0 (Ljava/util/Optional;Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/OverreachingTickFix/makeRule ()Lcom/mojang/datafixers/TypeRewriteRule; net/minecraft/util/datafix/fixes/OverreachingTickFix/makeRule ()Lcom/mojang/datafixers/TypeRewriteRule; +MD: net/minecraft/util/datafix/fixes/PlayerUUIDFix/ (Lcom/mojang/datafixers/schemas/Schema;)V net/minecraft/util/datafix/fixes/PlayerUUIDFix/ (Lcom/mojang/datafixers/schemas/Schema;)V +MD: net/minecraft/util/datafix/fixes/PlayerUUIDFix/m_145596_ (Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; net/minecraft/util/datafix/fixes/PlayerUUIDFix/lambda$makeRule$1 (Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; +MD: net/minecraft/util/datafix/fixes/PlayerUUIDFix/m_145598_ (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/PlayerUUIDFix/lambda$makeRule$2 (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/PlayerUUIDFix/m_145600_ (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/PlayerUUIDFix/lambda$makeRule$0 (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/PlayerUUIDFix/m_16685_ (Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; net/minecraft/util/datafix/fixes/PlayerUUIDFix/lambda$makeRule$3 (Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; +MD: net/minecraft/util/datafix/fixes/PlayerUUIDFix/makeRule ()Lcom/mojang/datafixers/TypeRewriteRule; net/minecraft/util/datafix/fixes/PlayerUUIDFix/makeRule ()Lcom/mojang/datafixers/TypeRewriteRule; +MD: net/minecraft/util/datafix/fixes/PoiTypeRemoveFix/ (Lcom/mojang/datafixers/schemas/Schema;Ljava/lang/String;Ljava/util/function/Predicate;)V net/minecraft/util/datafix/fixes/PoiTypeRemoveFix/ (Lcom/mojang/datafixers/schemas/Schema;Ljava/lang/String;Ljava/util/function/Predicate;)V +MD: net/minecraft/util/datafix/fixes/PoiTypeRemoveFix/m_213759_ (Ljava/util/stream/Stream;)Ljava/util/stream/Stream; net/minecraft/util/datafix/fixes/PoiTypeRemoveFix/processRecords (Ljava/util/stream/Stream;)Ljava/util/stream/Stream; +MD: net/minecraft/util/datafix/fixes/PoiTypeRemoveFix/m_216704_ (Lcom/mojang/serialization/Dynamic;)Z net/minecraft/util/datafix/fixes/PoiTypeRemoveFix/shouldKeepRecord (Lcom/mojang/serialization/Dynamic;)Z +MD: net/minecraft/util/datafix/fixes/PoiTypeRenameFix/ (Lcom/mojang/datafixers/schemas/Schema;Ljava/lang/String;Ljava/util/function/Function;)V net/minecraft/util/datafix/fixes/PoiTypeRenameFix/ (Lcom/mojang/datafixers/schemas/Schema;Ljava/lang/String;Ljava/util/function/Function;)V +MD: net/minecraft/util/datafix/fixes/PoiTypeRenameFix/m_213759_ (Ljava/util/stream/Stream;)Ljava/util/stream/Stream; net/minecraft/util/datafix/fixes/PoiTypeRenameFix/processRecords (Ljava/util/stream/Stream;)Ljava/util/stream/Stream; +MD: net/minecraft/util/datafix/fixes/PoiTypeRenameFix/m_216713_ (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/PoiTypeRenameFix/lambda$processRecords$1 (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/PoiTypeRenameFix/m_216717_ (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/PoiTypeRenameFix/lambda$processRecords$0 (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/RecipesFix/ ()V net/minecraft/util/datafix/fixes/RecipesFix/ ()V +MD: net/minecraft/util/datafix/fixes/RecipesFix/ ()V net/minecraft/util/datafix/fixes/RecipesFix/ ()V +MD: net/minecraft/util/datafix/fixes/RecipesRenameningFix/ ()V net/minecraft/util/datafix/fixes/RecipesRenameningFix/ ()V +MD: net/minecraft/util/datafix/fixes/RecipesRenameningFix/ ()V net/minecraft/util/datafix/fixes/RecipesRenameningFix/ ()V +MD: net/minecraft/util/datafix/fixes/RedstoneWireConnectionsFix/ (Lcom/mojang/datafixers/schemas/Schema;)V net/minecraft/util/datafix/fixes/RedstoneWireConnectionsFix/ (Lcom/mojang/datafixers/schemas/Schema;)V +MD: net/minecraft/util/datafix/fixes/RedstoneWireConnectionsFix/m_145616_ (Ljava/lang/String;Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/RedstoneWireConnectionsFix/lambda$updateRedstoneConnections$4 (Ljava/lang/String;Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/RedstoneWireConnectionsFix/m_145619_ (Ljava/lang/String;Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/RedstoneWireConnectionsFix/lambda$updateRedstoneConnections$3 (Ljava/lang/String;Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/RedstoneWireConnectionsFix/m_145622_ (Ljava/lang/String;Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/RedstoneWireConnectionsFix/lambda$updateRedstoneConnections$2 (Ljava/lang/String;Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/RedstoneWireConnectionsFix/m_145625_ (Ljava/lang/String;Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/RedstoneWireConnectionsFix/lambda$updateRedstoneConnections$1 (Ljava/lang/String;Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/RedstoneWireConnectionsFix/m_16750_ (Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; net/minecraft/util/datafix/fixes/RedstoneWireConnectionsFix/lambda$makeRule$0 (Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; +MD: net/minecraft/util/datafix/fixes/RedstoneWireConnectionsFix/m_16752_ (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/RedstoneWireConnectionsFix/updateRedstoneConnections (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/RedstoneWireConnectionsFix/m_16754_ (Ljava/lang/String;)Z net/minecraft/util/datafix/fixes/RedstoneWireConnectionsFix/isConnected (Ljava/lang/String;)Z +MD: net/minecraft/util/datafix/fixes/RedstoneWireConnectionsFix/m_16759_ (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/RedstoneWireConnectionsFix/lambda$updateRedstoneConnections$5 (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/RedstoneWireConnectionsFix/makeRule ()Lcom/mojang/datafixers/TypeRewriteRule; net/minecraft/util/datafix/fixes/RedstoneWireConnectionsFix/makeRule ()Lcom/mojang/datafixers/TypeRewriteRule; +MD: net/minecraft/util/datafix/fixes/References/ ()V net/minecraft/util/datafix/fixes/References/ ()V +MD: net/minecraft/util/datafix/fixes/References/ ()V net/minecraft/util/datafix/fixes/References/ ()V +MD: net/minecraft/util/datafix/fixes/References/m_145630_ ()Ljava/lang/String; net/minecraft/util/datafix/fixes/References/lambda$static$25 ()Ljava/lang/String; +MD: net/minecraft/util/datafix/fixes/References/m_16797_ ()Ljava/lang/String; net/minecraft/util/datafix/fixes/References/lambda$static$24 ()Ljava/lang/String; +MD: net/minecraft/util/datafix/fixes/References/m_16798_ ()Ljava/lang/String; net/minecraft/util/datafix/fixes/References/lambda$static$23 ()Ljava/lang/String; +MD: net/minecraft/util/datafix/fixes/References/m_16799_ ()Ljava/lang/String; net/minecraft/util/datafix/fixes/References/lambda$static$22 ()Ljava/lang/String; +MD: net/minecraft/util/datafix/fixes/References/m_16800_ ()Ljava/lang/String; net/minecraft/util/datafix/fixes/References/lambda$static$21 ()Ljava/lang/String; +MD: net/minecraft/util/datafix/fixes/References/m_16801_ ()Ljava/lang/String; net/minecraft/util/datafix/fixes/References/lambda$static$20 ()Ljava/lang/String; +MD: net/minecraft/util/datafix/fixes/References/m_16802_ ()Ljava/lang/String; net/minecraft/util/datafix/fixes/References/lambda$static$19 ()Ljava/lang/String; +MD: net/minecraft/util/datafix/fixes/References/m_16803_ ()Ljava/lang/String; net/minecraft/util/datafix/fixes/References/lambda$static$18 ()Ljava/lang/String; +MD: net/minecraft/util/datafix/fixes/References/m_16804_ ()Ljava/lang/String; net/minecraft/util/datafix/fixes/References/lambda$static$17 ()Ljava/lang/String; +MD: net/minecraft/util/datafix/fixes/References/m_16805_ ()Ljava/lang/String; net/minecraft/util/datafix/fixes/References/lambda$static$16 ()Ljava/lang/String; +MD: net/minecraft/util/datafix/fixes/References/m_16806_ ()Ljava/lang/String; net/minecraft/util/datafix/fixes/References/lambda$static$15 ()Ljava/lang/String; +MD: net/minecraft/util/datafix/fixes/References/m_16807_ ()Ljava/lang/String; net/minecraft/util/datafix/fixes/References/lambda$static$14 ()Ljava/lang/String; +MD: net/minecraft/util/datafix/fixes/References/m_16808_ ()Ljava/lang/String; net/minecraft/util/datafix/fixes/References/lambda$static$13 ()Ljava/lang/String; +MD: net/minecraft/util/datafix/fixes/References/m_16809_ ()Ljava/lang/String; net/minecraft/util/datafix/fixes/References/lambda$static$12 ()Ljava/lang/String; +MD: net/minecraft/util/datafix/fixes/References/m_16810_ ()Ljava/lang/String; net/minecraft/util/datafix/fixes/References/lambda$static$11 ()Ljava/lang/String; +MD: net/minecraft/util/datafix/fixes/References/m_16811_ ()Ljava/lang/String; net/minecraft/util/datafix/fixes/References/lambda$static$10 ()Ljava/lang/String; +MD: net/minecraft/util/datafix/fixes/References/m_16812_ ()Ljava/lang/String; net/minecraft/util/datafix/fixes/References/lambda$static$8 ()Ljava/lang/String; +MD: net/minecraft/util/datafix/fixes/References/m_16813_ ()Ljava/lang/String; net/minecraft/util/datafix/fixes/References/lambda$static$7 ()Ljava/lang/String; +MD: net/minecraft/util/datafix/fixes/References/m_16814_ ()Ljava/lang/String; net/minecraft/util/datafix/fixes/References/lambda$static$6 ()Ljava/lang/String; +MD: net/minecraft/util/datafix/fixes/References/m_16815_ ()Ljava/lang/String; net/minecraft/util/datafix/fixes/References/lambda$static$5 ()Ljava/lang/String; +MD: net/minecraft/util/datafix/fixes/References/m_16816_ ()Ljava/lang/String; net/minecraft/util/datafix/fixes/References/lambda$static$4 ()Ljava/lang/String; +MD: net/minecraft/util/datafix/fixes/References/m_16817_ ()Ljava/lang/String; net/minecraft/util/datafix/fixes/References/lambda$static$3 ()Ljava/lang/String; +MD: net/minecraft/util/datafix/fixes/References/m_16818_ ()Ljava/lang/String; net/minecraft/util/datafix/fixes/References/lambda$static$27 ()Ljava/lang/String; +MD: net/minecraft/util/datafix/fixes/References/m_16819_ ()Ljava/lang/String; net/minecraft/util/datafix/fixes/References/lambda$static$2 ()Ljava/lang/String; +MD: net/minecraft/util/datafix/fixes/References/m_16820_ ()Ljava/lang/String; net/minecraft/util/datafix/fixes/References/lambda$static$1 ()Ljava/lang/String; +MD: net/minecraft/util/datafix/fixes/References/m_16821_ ()Ljava/lang/String; net/minecraft/util/datafix/fixes/References/lambda$static$0 ()Ljava/lang/String; +MD: net/minecraft/util/datafix/fixes/References/m_216720_ ()Ljava/lang/String; net/minecraft/util/datafix/fixes/References/lambda$static$26 ()Ljava/lang/String; +MD: net/minecraft/util/datafix/fixes/References/m_276734_ ()Ljava/lang/String; net/minecraft/util/datafix/fixes/References/lambda$static$9 ()Ljava/lang/String; +MD: net/minecraft/util/datafix/fixes/RemapChunkStatusFix/ (Lcom/mojang/datafixers/schemas/Schema;Ljava/lang/String;Ljava/util/function/UnaryOperator;)V net/minecraft/util/datafix/fixes/RemapChunkStatusFix/ (Lcom/mojang/datafixers/schemas/Schema;Ljava/lang/String;Ljava/util/function/UnaryOperator;)V +MD: net/minecraft/util/datafix/fixes/RemapChunkStatusFix/m_280033_ (Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; net/minecraft/util/datafix/fixes/RemapChunkStatusFix/lambda$makeRule$2 (Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; +MD: net/minecraft/util/datafix/fixes/RemapChunkStatusFix/m_280232_ (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/RemapChunkStatusFix/lambda$makeRule$0 (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/RemapChunkStatusFix/m_280394_ (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/RemapChunkStatusFix/fixStatus (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/RemapChunkStatusFix/m_284011_ (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/RemapChunkStatusFix/lambda$makeRule$1 (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/RemapChunkStatusFix/makeRule ()Lcom/mojang/datafixers/TypeRewriteRule; net/minecraft/util/datafix/fixes/RemapChunkStatusFix/makeRule ()Lcom/mojang/datafixers/TypeRewriteRule; +MD: net/minecraft/util/datafix/fixes/RemoveGolemGossipFix/ (Lcom/mojang/datafixers/schemas/Schema;Z)V net/minecraft/util/datafix/fixes/RemoveGolemGossipFix/ (Lcom/mojang/datafixers/schemas/Schema;Z)V +MD: net/minecraft/util/datafix/fixes/RemoveGolemGossipFix/m_145631_ (Lcom/mojang/serialization/Dynamic;)Z net/minecraft/util/datafix/fixes/RemoveGolemGossipFix/lambda$fixValue$0 (Lcom/mojang/serialization/Dynamic;)Z +MD: net/minecraft/util/datafix/fixes/RemoveGolemGossipFix/m_16827_ (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/RemoveGolemGossipFix/fixValue (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/RemoveGolemGossipFix/m_16829_ (Lcom/mojang/serialization/Dynamic;Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/RemoveGolemGossipFix/lambda$fixValue$1 (Lcom/mojang/serialization/Dynamic;Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/RemoveGolemGossipFix/m_7504_ (Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; net/minecraft/util/datafix/fixes/RemoveGolemGossipFix/fix (Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; +MD: net/minecraft/util/datafix/fixes/RenamedCoralFansFix/ ()V net/minecraft/util/datafix/fixes/RenamedCoralFansFix/ ()V +MD: net/minecraft/util/datafix/fixes/RenamedCoralFansFix/ ()V net/minecraft/util/datafix/fixes/RenamedCoralFansFix/ ()V +MD: net/minecraft/util/datafix/fixes/RenamedCoralFix/ ()V net/minecraft/util/datafix/fixes/RenamedCoralFix/ ()V +MD: net/minecraft/util/datafix/fixes/RenamedCoralFix/ ()V net/minecraft/util/datafix/fixes/RenamedCoralFix/ ()V +MD: net/minecraft/util/datafix/fixes/ReorganizePoi/ (Lcom/mojang/datafixers/schemas/Schema;Z)V net/minecraft/util/datafix/fixes/ReorganizePoi/ (Lcom/mojang/datafixers/schemas/Schema;Z)V +MD: net/minecraft/util/datafix/fixes/ReorganizePoi/m_145639_ (Lcom/mojang/datafixers/util/Pair;)Lcom/mojang/datafixers/util/Pair; net/minecraft/util/datafix/fixes/ReorganizePoi/lambda$makeRule$0 (Lcom/mojang/datafixers/util/Pair;)Lcom/mojang/datafixers/util/Pair; +MD: net/minecraft/util/datafix/fixes/ReorganizePoi/m_16857_ (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/ReorganizePoi/cap (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/ReorganizePoi/m_16859_ (Lcom/mojang/serialization/DynamicOps;)Ljava/util/function/Function; net/minecraft/util/datafix/fixes/ReorganizePoi/lambda$makeRule$1 (Lcom/mojang/serialization/DynamicOps;)Ljava/util/function/Function; +MD: net/minecraft/util/datafix/fixes/ReorganizePoi/makeRule ()Lcom/mojang/datafixers/TypeRewriteRule; net/minecraft/util/datafix/fixes/ReorganizePoi/makeRule ()Lcom/mojang/datafixers/TypeRewriteRule; +MD: net/minecraft/util/datafix/fixes/SavedDataFeaturePoolElementFix/ ()V net/minecraft/util/datafix/fixes/SavedDataFeaturePoolElementFix/ ()V +MD: net/minecraft/util/datafix/fixes/SavedDataFeaturePoolElementFix/ (Lcom/mojang/datafixers/schemas/Schema;)V net/minecraft/util/datafix/fixes/SavedDataFeaturePoolElementFix/ (Lcom/mojang/datafixers/schemas/Schema;)V +MD: net/minecraft/util/datafix/fixes/SavedDataFeaturePoolElementFix/m_145647_ (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/SavedDataFeaturePoolElementFix/fixFeature (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/SavedDataFeaturePoolElementFix/m_145649_ (Lcom/mojang/serialization/Dynamic;[Ljava/lang/String;)Lcom/mojang/serialization/OptionalDynamic; net/minecraft/util/datafix/fixes/SavedDataFeaturePoolElementFix/get (Lcom/mojang/serialization/Dynamic;[Ljava/lang/String;)Lcom/mojang/serialization/OptionalDynamic; +MD: net/minecraft/util/datafix/fixes/SavedDataFeaturePoolElementFix/m_145652_ (Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;)Ljava/util/Optional; net/minecraft/util/datafix/fixes/SavedDataFeaturePoolElementFix/getReplacement (Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;)Ljava/util/Optional; +MD: net/minecraft/util/datafix/fixes/SavedDataFeaturePoolElementFix/m_145660_ (Ljava/util/stream/Stream;)Ljava/util/stream/Stream; net/minecraft/util/datafix/fixes/SavedDataFeaturePoolElementFix/updateChildren (Ljava/util/stream/Stream;)Ljava/util/stream/Stream; +MD: net/minecraft/util/datafix/fixes/SavedDataFeaturePoolElementFix/m_145662_ (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/SavedDataFeaturePoolElementFix/fixTag (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/SavedDataFeaturePoolElementFix/m_145664_ (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/SavedDataFeaturePoolElementFix/updateChildren (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/SavedDataFeaturePoolElementFix/m_145666_ (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/SavedDataFeaturePoolElementFix/lambda$updateChildren$1 (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/SavedDataFeaturePoolElementFix/m_145668_ (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/SavedDataFeaturePoolElementFix/lambda$updateChildren$0 (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/SavedDataFeaturePoolElementFix/m_274162_ (I)Ljava/lang/String; net/minecraft/util/datafix/fixes/SavedDataFeaturePoolElementFix/lambda$get$2 (I)Ljava/lang/String; +MD: net/minecraft/util/datafix/fixes/SavedDataFeaturePoolElementFix/makeRule ()Lcom/mojang/datafixers/TypeRewriteRule; net/minecraft/util/datafix/fixes/SavedDataFeaturePoolElementFix/makeRule ()Lcom/mojang/datafixers/TypeRewriteRule; +MD: net/minecraft/util/datafix/fixes/SavedDataUUIDFix/ ()V net/minecraft/util/datafix/fixes/SavedDataUUIDFix/ ()V +MD: net/minecraft/util/datafix/fixes/SavedDataUUIDFix/ (Lcom/mojang/datafixers/schemas/Schema;)V net/minecraft/util/datafix/fixes/SavedDataUUIDFix/ (Lcom/mojang/datafixers/schemas/Schema;)V +MD: net/minecraft/util/datafix/fixes/SavedDataUUIDFix/m_145671_ (Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; net/minecraft/util/datafix/fixes/SavedDataUUIDFix/lambda$makeRule$6 (Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; +MD: net/minecraft/util/datafix/fixes/SavedDataUUIDFix/m_145673_ (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/SavedDataUUIDFix/lambda$makeRule$5 (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/SavedDataUUIDFix/m_145675_ (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/SavedDataUUIDFix/lambda$makeRule$4 (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/SavedDataUUIDFix/m_145677_ (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/SavedDataUUIDFix/lambda$makeRule$3 (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/SavedDataUUIDFix/m_145679_ (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/SavedDataUUIDFix/lambda$makeRule$2 (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/SavedDataUUIDFix/m_145681_ (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/SavedDataUUIDFix/lambda$makeRule$1 (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/SavedDataUUIDFix/m_145683_ (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/SavedDataUUIDFix/lambda$makeRule$0 (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/SavedDataUUIDFix/m_16864_ (Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; net/minecraft/util/datafix/fixes/SavedDataUUIDFix/lambda$makeRule$7 (Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; +MD: net/minecraft/util/datafix/fixes/SavedDataUUIDFix/makeRule ()Lcom/mojang/datafixers/TypeRewriteRule; net/minecraft/util/datafix/fixes/SavedDataUUIDFix/makeRule ()Lcom/mojang/datafixers/TypeRewriteRule; +MD: net/minecraft/util/datafix/fixes/SimpleEntityRenameFix/ (Ljava/lang/String;Lcom/mojang/datafixers/schemas/Schema;Z)V net/minecraft/util/datafix/fixes/SimpleEntityRenameFix/ (Ljava/lang/String;Lcom/mojang/datafixers/schemas/Schema;Z)V +MD: net/minecraft/util/datafix/fixes/SimpleEntityRenameFix/m_6911_ (Ljava/lang/String;Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/util/Pair; net/minecraft/util/datafix/fixes/SimpleEntityRenameFix/fix (Ljava/lang/String;Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/util/Pair; +MD: net/minecraft/util/datafix/fixes/SimpleEntityRenameFix/m_6942_ (Ljava/lang/String;Lcom/mojang/serialization/Dynamic;)Lcom/mojang/datafixers/util/Pair; net/minecraft/util/datafix/fixes/SimpleEntityRenameFix/getNewNameAndTag (Ljava/lang/String;Lcom/mojang/serialization/Dynamic;)Lcom/mojang/datafixers/util/Pair; +MD: net/minecraft/util/datafix/fixes/SimplestEntityRenameFix/ (Ljava/lang/String;Lcom/mojang/datafixers/schemas/Schema;Z)V net/minecraft/util/datafix/fixes/SimplestEntityRenameFix/ (Ljava/lang/String;Lcom/mojang/datafixers/schemas/Schema;Z)V +MD: net/minecraft/util/datafix/fixes/SimplestEntityRenameFix/m_145685_ (Lcom/mojang/datafixers/types/templates/TaggedChoice$TaggedChoiceType;Lcom/mojang/datafixers/types/templates/TaggedChoice$TaggedChoiceType;Lcom/mojang/datafixers/util/Pair;)Lcom/mojang/datafixers/util/Pair; net/minecraft/util/datafix/fixes/SimplestEntityRenameFix/lambda$makeRule$1 (Lcom/mojang/datafixers/types/templates/TaggedChoice$TaggedChoiceType;Lcom/mojang/datafixers/types/templates/TaggedChoice$TaggedChoiceType;Lcom/mojang/datafixers/util/Pair;)Lcom/mojang/datafixers/util/Pair; +MD: net/minecraft/util/datafix/fixes/SimplestEntityRenameFix/m_145693_ (Lcom/mojang/datafixers/util/Pair;)Lcom/mojang/datafixers/util/Pair; net/minecraft/util/datafix/fixes/SimplestEntityRenameFix/lambda$makeRule$3 (Lcom/mojang/datafixers/util/Pair;)Lcom/mojang/datafixers/util/Pair; +MD: net/minecraft/util/datafix/fixes/SimplestEntityRenameFix/m_16918_ (Lcom/mojang/datafixers/types/templates/TaggedChoice$TaggedChoiceType;Lcom/mojang/datafixers/types/templates/TaggedChoice$TaggedChoiceType;Lcom/mojang/serialization/DynamicOps;)Ljava/util/function/Function; net/minecraft/util/datafix/fixes/SimplestEntityRenameFix/lambda$makeRule$2 (Lcom/mojang/datafixers/types/templates/TaggedChoice$TaggedChoiceType;Lcom/mojang/datafixers/types/templates/TaggedChoice$TaggedChoiceType;Lcom/mojang/serialization/DynamicOps;)Ljava/util/function/Function; +MD: net/minecraft/util/datafix/fixes/SimplestEntityRenameFix/m_16928_ (Lcom/mojang/serialization/DynamicOps;)Ljava/util/function/Function; net/minecraft/util/datafix/fixes/SimplestEntityRenameFix/lambda$makeRule$4 (Lcom/mojang/serialization/DynamicOps;)Ljava/util/function/Function; +MD: net/minecraft/util/datafix/fixes/SimplestEntityRenameFix/m_241759_ (Lcom/mojang/datafixers/types/templates/TaggedChoice$TaggedChoiceType;Lcom/mojang/datafixers/types/templates/TaggedChoice$TaggedChoiceType;Ljava/lang/String;)Ljava/lang/String; net/minecraft/util/datafix/fixes/SimplestEntityRenameFix/lambda$makeRule$0 (Lcom/mojang/datafixers/types/templates/TaggedChoice$TaggedChoiceType;Lcom/mojang/datafixers/types/templates/TaggedChoice$TaggedChoiceType;Ljava/lang/String;)Ljava/lang/String; +MD: net/minecraft/util/datafix/fixes/SimplestEntityRenameFix/m_7476_ (Ljava/lang/String;)Ljava/lang/String; net/minecraft/util/datafix/fixes/SimplestEntityRenameFix/rename (Ljava/lang/String;)Ljava/lang/String; +MD: net/minecraft/util/datafix/fixes/SimplestEntityRenameFix/makeRule ()Lcom/mojang/datafixers/TypeRewriteRule; net/minecraft/util/datafix/fixes/SimplestEntityRenameFix/makeRule ()Lcom/mojang/datafixers/TypeRewriteRule; +MD: net/minecraft/util/datafix/fixes/SpawnerDataFix/ (Lcom/mojang/datafixers/schemas/Schema;)V net/minecraft/util/datafix/fixes/SpawnerDataFix/ (Lcom/mojang/datafixers/schemas/Schema;)V +MD: net/minecraft/util/datafix/fixes/SpawnerDataFix/m_185134_ (Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/types/Type;Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/types/Type;Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; net/minecraft/util/datafix/fixes/SpawnerDataFix/lambda$makeRule$2 (Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/types/Type;Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/types/Type;Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; +MD: net/minecraft/util/datafix/fixes/SpawnerDataFix/m_185140_ (Lcom/mojang/datafixers/types/Type;Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; net/minecraft/util/datafix/fixes/SpawnerDataFix/wrapEntityToSpawnData (Lcom/mojang/datafixers/types/Type;Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; +MD: net/minecraft/util/datafix/fixes/SpawnerDataFix/m_185143_ (Lcom/mojang/serialization/DynamicOps;Ljava/lang/Object;)Lcom/mojang/datafixers/util/Pair; net/minecraft/util/datafix/fixes/SpawnerDataFix/lambda$wrapSpawnPotentialsToWeightedEntries$3 (Lcom/mojang/serialization/DynamicOps;Ljava/lang/Object;)Lcom/mojang/datafixers/util/Pair; +MD: net/minecraft/util/datafix/fixes/SpawnerDataFix/m_185146_ (Lcom/mojang/datafixers/types/Type;Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; net/minecraft/util/datafix/fixes/SpawnerDataFix/wrapSpawnPotentialsToWeightedEntries (Lcom/mojang/datafixers/types/Type;Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; +MD: net/minecraft/util/datafix/fixes/SpawnerDataFix/m_185149_ (Lcom/mojang/datafixers/types/Type;Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; net/minecraft/util/datafix/fixes/SpawnerDataFix/lambda$makeRule$1 (Lcom/mojang/datafixers/types/Type;Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; +MD: net/minecraft/util/datafix/fixes/SpawnerDataFix/m_185152_ (Lcom/mojang/datafixers/types/Type;Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; net/minecraft/util/datafix/fixes/SpawnerDataFix/lambda$makeRule$0 (Lcom/mojang/datafixers/types/Type;Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; +MD: net/minecraft/util/datafix/fixes/SpawnerDataFix/makeRule ()Lcom/mojang/datafixers/TypeRewriteRule; net/minecraft/util/datafix/fixes/SpawnerDataFix/makeRule ()Lcom/mojang/datafixers/TypeRewriteRule; +MD: net/minecraft/util/datafix/fixes/StatsCounterFix/ ()V net/minecraft/util/datafix/fixes/StatsCounterFix/ ()V +MD: net/minecraft/util/datafix/fixes/StatsCounterFix/ (Lcom/mojang/datafixers/schemas/Schema;Z)V net/minecraft/util/datafix/fixes/StatsCounterFix/ (Lcom/mojang/datafixers/schemas/Schema;Z)V +MD: net/minecraft/util/datafix/fixes/StatsCounterFix/m_145698_ ()Ljava/lang/IllegalStateException; net/minecraft/util/datafix/fixes/StatsCounterFix/lambda$makeRule$1 ()Ljava/lang/IllegalStateException; +MD: net/minecraft/util/datafix/fixes/StatsCounterFix/m_145699_ (Lcom/mojang/serialization/Dynamic;Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/StatsCounterFix/lambda$makeRule$0 (Lcom/mojang/serialization/Dynamic;Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/StatsCounterFix/m_16942_ (Lcom/mojang/datafixers/types/Type;Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; net/minecraft/util/datafix/fixes/StatsCounterFix/lambda$makeRule$2 (Lcom/mojang/datafixers/types/Type;Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; +MD: net/minecraft/util/datafix/fixes/StatsCounterFix/m_16948_ (Ljava/lang/String;)Ljava/lang/String; net/minecraft/util/datafix/fixes/StatsCounterFix/upgradeItem (Ljava/lang/String;)Ljava/lang/String; +MD: net/minecraft/util/datafix/fixes/StatsCounterFix/m_16950_ (Ljava/lang/String;)Ljava/lang/String; net/minecraft/util/datafix/fixes/StatsCounterFix/upgradeBlock (Ljava/lang/String;)Ljava/lang/String; +MD: net/minecraft/util/datafix/fixes/StatsCounterFix/makeRule ()Lcom/mojang/datafixers/TypeRewriteRule; net/minecraft/util/datafix/fixes/StatsCounterFix/makeRule ()Lcom/mojang/datafixers/TypeRewriteRule; +MD: net/minecraft/util/datafix/fixes/StatsRenameFix/ (Lcom/mojang/datafixers/schemas/Schema;Ljava/lang/String;Ljava/util/Map;)V net/minecraft/util/datafix/fixes/StatsRenameFix/ (Lcom/mojang/datafixers/schemas/Schema;Ljava/lang/String;Ljava/util/Map;)V +MD: net/minecraft/util/datafix/fixes/StatsRenameFix/m_181042_ ()Lcom/mojang/datafixers/TypeRewriteRule; net/minecraft/util/datafix/fixes/StatsRenameFix/createCriteriaRule ()Lcom/mojang/datafixers/TypeRewriteRule; +MD: net/minecraft/util/datafix/fixes/StatsRenameFix/m_181043_ (Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; net/minecraft/util/datafix/fixes/StatsRenameFix/lambda$createStatRule$8 (Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; +MD: net/minecraft/util/datafix/fixes/StatsRenameFix/m_181048_ (Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; net/minecraft/util/datafix/fixes/StatsRenameFix/lambda$createStatRule$7 (Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; +MD: net/minecraft/util/datafix/fixes/StatsRenameFix/m_181052_ (Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; net/minecraft/util/datafix/fixes/StatsRenameFix/lambda$createStatRule$6 (Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; +MD: net/minecraft/util/datafix/fixes/StatsRenameFix/m_181055_ (Ljava/lang/String;)Ljava/lang/String; net/minecraft/util/datafix/fixes/StatsRenameFix/lambda$createStatRule$5 (Ljava/lang/String;)Ljava/lang/String; +MD: net/minecraft/util/datafix/fixes/StatsRenameFix/m_181057_ ()Lcom/mojang/datafixers/TypeRewriteRule; net/minecraft/util/datafix/fixes/StatsRenameFix/createStatRule ()Lcom/mojang/datafixers/TypeRewriteRule; +MD: net/minecraft/util/datafix/fixes/StatsRenameFix/m_181058_ (Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; net/minecraft/util/datafix/fixes/StatsRenameFix/lambda$createCriteriaRule$4 (Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; +MD: net/minecraft/util/datafix/fixes/StatsRenameFix/m_181063_ (Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; net/minecraft/util/datafix/fixes/StatsRenameFix/lambda$createCriteriaRule$3 (Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; +MD: net/minecraft/util/datafix/fixes/StatsRenameFix/m_181067_ (Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; net/minecraft/util/datafix/fixes/StatsRenameFix/lambda$createCriteriaRule$2 (Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; +MD: net/minecraft/util/datafix/fixes/StatsRenameFix/m_181070_ (Ljava/lang/String;)Ljava/lang/String; net/minecraft/util/datafix/fixes/StatsRenameFix/lambda$createCriteriaRule$1 (Ljava/lang/String;)Ljava/lang/String; +MD: net/minecraft/util/datafix/fixes/StatsRenameFix/m_181072_ ()Ljava/lang/IllegalStateException; net/minecraft/util/datafix/fixes/StatsRenameFix/lambda$createCriteriaRule$0 ()Ljava/lang/IllegalStateException; +MD: net/minecraft/util/datafix/fixes/StatsRenameFix/makeRule ()Lcom/mojang/datafixers/TypeRewriteRule; net/minecraft/util/datafix/fixes/StatsRenameFix/makeRule ()Lcom/mojang/datafixers/TypeRewriteRule; +MD: net/minecraft/util/datafix/fixes/StriderGravityFix/ (Lcom/mojang/datafixers/schemas/Schema;Z)V net/minecraft/util/datafix/fixes/StriderGravityFix/ (Lcom/mojang/datafixers/schemas/Schema;Z)V +MD: net/minecraft/util/datafix/fixes/StriderGravityFix/m_16958_ (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/StriderGravityFix/fixTag (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/StriderGravityFix/m_7504_ (Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; net/minecraft/util/datafix/fixes/StriderGravityFix/fix (Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; +MD: net/minecraft/util/datafix/fixes/StructureReferenceCountFix/ (Lcom/mojang/datafixers/schemas/Schema;Z)V net/minecraft/util/datafix/fixes/StructureReferenceCountFix/ (Lcom/mojang/datafixers/schemas/Schema;Z)V +MD: net/minecraft/util/datafix/fixes/StructureReferenceCountFix/m_145723_ (Ljava/lang/Integer;)Z net/minecraft/util/datafix/fixes/StructureReferenceCountFix/lambda$setCountToAtLeastOne$1 (Ljava/lang/Integer;)Z +MD: net/minecraft/util/datafix/fixes/StructureReferenceCountFix/m_16963_ (Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; net/minecraft/util/datafix/fixes/StructureReferenceCountFix/lambda$makeRule$0 (Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; +MD: net/minecraft/util/datafix/fixes/StructureReferenceCountFix/m_16965_ (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/StructureReferenceCountFix/setCountToAtLeastOne (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/StructureReferenceCountFix/m_16969_ (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/StructureReferenceCountFix/lambda$setCountToAtLeastOne$2 (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/StructureReferenceCountFix/makeRule ()Lcom/mojang/datafixers/TypeRewriteRule; net/minecraft/util/datafix/fixes/StructureReferenceCountFix/makeRule ()Lcom/mojang/datafixers/TypeRewriteRule; +MD: net/minecraft/util/datafix/fixes/StructureSettingsFlattenFix/ (Lcom/mojang/datafixers/schemas/Schema;)V net/minecraft/util/datafix/fixes/StructureSettingsFlattenFix/ (Lcom/mojang/datafixers/schemas/Schema;)V +MD: net/minecraft/util/datafix/fixes/StructureSettingsFlattenFix/m_204001_ (Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; net/minecraft/util/datafix/fixes/StructureSettingsFlattenFix/lambda$makeRule$1 (Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; +MD: net/minecraft/util/datafix/fixes/StructureSettingsFlattenFix/m_204004_ (Lcom/mojang/datafixers/util/Pair;)Lcom/mojang/datafixers/util/Pair; net/minecraft/util/datafix/fixes/StructureSettingsFlattenFix/fixDimension (Lcom/mojang/datafixers/util/Pair;)Lcom/mojang/datafixers/util/Pair; +MD: net/minecraft/util/datafix/fixes/StructureSettingsFlattenFix/m_204006_ (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/StructureSettingsFlattenFix/fixStructures (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/StructureSettingsFlattenFix/m_204008_ (Lcom/mojang/serialization/Dynamic;Lcom/mojang/datafixers/util/Pair;)Lcom/mojang/datafixers/util/Pair; net/minecraft/util/datafix/fixes/StructureSettingsFlattenFix/lambda$fixStructures$5 (Lcom/mojang/serialization/Dynamic;Lcom/mojang/datafixers/util/Pair;)Lcom/mojang/datafixers/util/Pair; +MD: net/minecraft/util/datafix/fixes/StructureSettingsFlattenFix/m_204011_ (Lcom/mojang/serialization/Dynamic;Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/StructureSettingsFlattenFix/lambda$fixStructures$4 (Lcom/mojang/serialization/Dynamic;Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/StructureSettingsFlattenFix/m_204014_ (Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; net/minecraft/util/datafix/fixes/StructureSettingsFlattenFix/lambda$makeRule$0 (Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; +MD: net/minecraft/util/datafix/fixes/StructureSettingsFlattenFix/m_204017_ (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/StructureSettingsFlattenFix/lambda$fixDimension$3 (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/StructureSettingsFlattenFix/m_204019_ (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/StructureSettingsFlattenFix/lambda$fixDimension$2 (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/StructureSettingsFlattenFix/m_207672_ (Lcom/mojang/serialization/Dynamic;Lcom/mojang/serialization/Dynamic;Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/StructureSettingsFlattenFix/lambda$fixStructures$6 (Lcom/mojang/serialization/Dynamic;Lcom/mojang/serialization/Dynamic;Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/StructureSettingsFlattenFix/makeRule ()Lcom/mojang/datafixers/TypeRewriteRule; net/minecraft/util/datafix/fixes/StructureSettingsFlattenFix/makeRule ()Lcom/mojang/datafixers/TypeRewriteRule; +MD: net/minecraft/util/datafix/fixes/StructuresBecomeConfiguredFix/ ()V net/minecraft/util/datafix/fixes/StructuresBecomeConfiguredFix/ ()V +MD: net/minecraft/util/datafix/fixes/StructuresBecomeConfiguredFix/ (Lcom/mojang/datafixers/schemas/Schema;)V net/minecraft/util/datafix/fixes/StructuresBecomeConfiguredFix/ (Lcom/mojang/datafixers/schemas/Schema;)V +MD: net/minecraft/util/datafix/fixes/StructuresBecomeConfiguredFix/m_207680_ (Lnet/minecraft/util/datafix/fixes/StructuresBecomeConfiguredFix$Conversion;Lit/unimi/dsi/fastutil/objects/Object2IntArrayMap;Lcom/mojang/serialization/Dynamic;)V net/minecraft/util/datafix/fixes/StructuresBecomeConfiguredFix/lambda$guessConfiguration$9 (Lnet/minecraft/util/datafix/fixes/StructuresBecomeConfiguredFix$Conversion;Lit/unimi/dsi/fastutil/objects/Object2IntArrayMap;Lcom/mojang/serialization/Dynamic;)V +MD: net/minecraft/util/datafix/fixes/StructuresBecomeConfiguredFix/m_207684_ (Lcom/mojang/datafixers/util/Pair;Lcom/mojang/serialization/Dynamic;)Lcom/mojang/datafixers/util/Pair; net/minecraft/util/datafix/fixes/StructuresBecomeConfiguredFix/updateStart (Lcom/mojang/datafixers/util/Pair;Lcom/mojang/serialization/Dynamic;)Lcom/mojang/datafixers/util/Pair; +MD: net/minecraft/util/datafix/fixes/StructuresBecomeConfiguredFix/m_207687_ (Lcom/mojang/datafixers/util/Pair;Lcom/mojang/serialization/Dynamic;Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/StructuresBecomeConfiguredFix/lambda$updateReference$7 (Lcom/mojang/datafixers/util/Pair;Lcom/mojang/serialization/Dynamic;Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/StructuresBecomeConfiguredFix/m_207691_ (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/StructuresBecomeConfiguredFix/fix (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/StructuresBecomeConfiguredFix/m_207693_ (Lcom/mojang/serialization/Dynamic;Lnet/minecraft/util/datafix/fixes/StructuresBecomeConfiguredFix$Conversion;)Ljava/util/Optional; net/minecraft/util/datafix/fixes/StructuresBecomeConfiguredFix/guessConfiguration (Lcom/mojang/serialization/Dynamic;Lnet/minecraft/util/datafix/fixes/StructuresBecomeConfiguredFix$Conversion;)Ljava/util/Optional; +MD: net/minecraft/util/datafix/fixes/StructuresBecomeConfiguredFix/m_207696_ (Lcom/mojang/serialization/Dynamic;Lcom/mojang/datafixers/util/Pair;)Lcom/mojang/datafixers/util/Pair; net/minecraft/util/datafix/fixes/StructuresBecomeConfiguredFix/lambda$updateReferences$6 (Lcom/mojang/serialization/Dynamic;Lcom/mojang/datafixers/util/Pair;)Lcom/mojang/datafixers/util/Pair; +MD: net/minecraft/util/datafix/fixes/StructuresBecomeConfiguredFix/m_207699_ (Lcom/mojang/serialization/Dynamic;Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/StructuresBecomeConfiguredFix/updateStarts (Lcom/mojang/serialization/Dynamic;Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/StructuresBecomeConfiguredFix/m_207702_ (Ljava/util/List;Lcom/mojang/serialization/Dynamic;Lcom/mojang/serialization/Dynamic;)V net/minecraft/util/datafix/fixes/StructuresBecomeConfiguredFix/lambda$updateReferences$5 (Ljava/util/List;Lcom/mojang/serialization/Dynamic;Lcom/mojang/serialization/Dynamic;)V +MD: net/minecraft/util/datafix/fixes/StructuresBecomeConfiguredFix/m_207706_ (Lnet/minecraft/util/datafix/fixes/StructuresBecomeConfiguredFix$Conversion;Lit/unimi/dsi/fastutil/objects/Object2IntArrayMap;Lcom/mojang/serialization/Dynamic;)V net/minecraft/util/datafix/fixes/StructuresBecomeConfiguredFix/lambda$guessConfiguration$8 (Lnet/minecraft/util/datafix/fixes/StructuresBecomeConfiguredFix$Conversion;Lit/unimi/dsi/fastutil/objects/Object2IntArrayMap;Lcom/mojang/serialization/Dynamic;)V +MD: net/minecraft/util/datafix/fixes/StructuresBecomeConfiguredFix/m_207710_ (Lcom/mojang/datafixers/util/Pair;Lcom/mojang/serialization/Dynamic;)Lcom/mojang/datafixers/util/Pair; net/minecraft/util/datafix/fixes/StructuresBecomeConfiguredFix/updateReference (Lcom/mojang/datafixers/util/Pair;Lcom/mojang/serialization/Dynamic;)Lcom/mojang/datafixers/util/Pair; +MD: net/minecraft/util/datafix/fixes/StructuresBecomeConfiguredFix/m_207713_ (Lcom/mojang/serialization/Dynamic;Lcom/mojang/datafixers/util/Pair;)Lcom/mojang/datafixers/util/Pair; net/minecraft/util/datafix/fixes/StructuresBecomeConfiguredFix/lambda$updateStarts$4 (Lcom/mojang/serialization/Dynamic;Lcom/mojang/datafixers/util/Pair;)Lcom/mojang/datafixers/util/Pair; +MD: net/minecraft/util/datafix/fixes/StructuresBecomeConfiguredFix/m_207716_ (Lcom/mojang/serialization/Dynamic;Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/StructuresBecomeConfiguredFix/updateReferences (Lcom/mojang/serialization/Dynamic;Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/StructuresBecomeConfiguredFix/m_207719_ (Ljava/util/List;Lcom/mojang/serialization/Dynamic;Lcom/mojang/serialization/Dynamic;)V net/minecraft/util/datafix/fixes/StructuresBecomeConfiguredFix/lambda$updateStarts$3 (Ljava/util/List;Lcom/mojang/serialization/Dynamic;Lcom/mojang/serialization/Dynamic;)V +MD: net/minecraft/util/datafix/fixes/StructuresBecomeConfiguredFix/m_207723_ (Lcom/mojang/datafixers/util/Pair;Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/StructuresBecomeConfiguredFix/findUpdatedStructureType (Lcom/mojang/datafixers/util/Pair;Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/StructuresBecomeConfiguredFix/m_207726_ (Lcom/mojang/serialization/Dynamic;Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/StructuresBecomeConfiguredFix/lambda$fix$2 (Lcom/mojang/serialization/Dynamic;Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/StructuresBecomeConfiguredFix/m_207729_ (Lcom/mojang/serialization/Dynamic;Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/StructuresBecomeConfiguredFix/lambda$fix$1 (Lcom/mojang/serialization/Dynamic;Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/StructuresBecomeConfiguredFix/m_207732_ (Lcom/mojang/serialization/Dynamic;Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/StructuresBecomeConfiguredFix/lambda$fix$0 (Lcom/mojang/serialization/Dynamic;Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/StructuresBecomeConfiguredFix/makeRule ()Lcom/mojang/datafixers/TypeRewriteRule; net/minecraft/util/datafix/fixes/StructuresBecomeConfiguredFix/makeRule ()Lcom/mojang/datafixers/TypeRewriteRule; +MD: net/minecraft/util/datafix/fixes/StructuresBecomeConfiguredFix$Conversion/ (Ljava/util/Map;Ljava/lang/String;)V net/minecraft/util/datafix/fixes/StructuresBecomeConfiguredFix$Conversion/ (Ljava/util/Map;Ljava/lang/String;)V +MD: net/minecraft/util/datafix/fixes/StructuresBecomeConfiguredFix$Conversion/equals (Ljava/lang/Object;)Z net/minecraft/util/datafix/fixes/StructuresBecomeConfiguredFix$Conversion/equals (Ljava/lang/Object;)Z +MD: net/minecraft/util/datafix/fixes/StructuresBecomeConfiguredFix$Conversion/f_207736_ ()Ljava/util/Map; net/minecraft/util/datafix/fixes/StructuresBecomeConfiguredFix$Conversion/biomeMapping ()Ljava/util/Map; +MD: net/minecraft/util/datafix/fixes/StructuresBecomeConfiguredFix$Conversion/f_207737_ ()Ljava/lang/String; net/minecraft/util/datafix/fixes/StructuresBecomeConfiguredFix$Conversion/fallback ()Ljava/lang/String; +MD: net/minecraft/util/datafix/fixes/StructuresBecomeConfiguredFix$Conversion/hashCode ()I net/minecraft/util/datafix/fixes/StructuresBecomeConfiguredFix$Conversion/hashCode ()I +MD: net/minecraft/util/datafix/fixes/StructuresBecomeConfiguredFix$Conversion/m_207742_ (Lcom/google/common/collect/ImmutableMap$Builder;Ljava/util/Map$Entry;Ljava/lang/String;)V net/minecraft/util/datafix/fixes/StructuresBecomeConfiguredFix$Conversion/lambda$unpack$0 (Lcom/google/common/collect/ImmutableMap$Builder;Ljava/util/Map$Entry;Ljava/lang/String;)V +MD: net/minecraft/util/datafix/fixes/StructuresBecomeConfiguredFix$Conversion/m_207746_ (Ljava/lang/String;)Lnet/minecraft/util/datafix/fixes/StructuresBecomeConfiguredFix$Conversion; net/minecraft/util/datafix/fixes/StructuresBecomeConfiguredFix$Conversion/trivial (Ljava/lang/String;)Lnet/minecraft/util/datafix/fixes/StructuresBecomeConfiguredFix$Conversion; +MD: net/minecraft/util/datafix/fixes/StructuresBecomeConfiguredFix$Conversion/m_207748_ (Ljava/util/Map;)Ljava/util/Map; net/minecraft/util/datafix/fixes/StructuresBecomeConfiguredFix$Conversion/unpack (Ljava/util/Map;)Ljava/util/Map; +MD: net/minecraft/util/datafix/fixes/StructuresBecomeConfiguredFix$Conversion/m_207750_ (Ljava/util/Map;Ljava/lang/String;)Lnet/minecraft/util/datafix/fixes/StructuresBecomeConfiguredFix$Conversion; net/minecraft/util/datafix/fixes/StructuresBecomeConfiguredFix$Conversion/biomeMapped (Ljava/util/Map;Ljava/lang/String;)Lnet/minecraft/util/datafix/fixes/StructuresBecomeConfiguredFix$Conversion; +MD: net/minecraft/util/datafix/fixes/StructuresBecomeConfiguredFix$Conversion/toString ()Ljava/lang/String; net/minecraft/util/datafix/fixes/StructuresBecomeConfiguredFix$Conversion/toString ()Ljava/lang/String; +MD: net/minecraft/util/datafix/fixes/TeamDisplayNameFix/ (Lcom/mojang/datafixers/schemas/Schema;Z)V net/minecraft/util/datafix/fixes/TeamDisplayNameFix/ (Lcom/mojang/datafixers/schemas/Schema;Z)V +MD: net/minecraft/util/datafix/fixes/TeamDisplayNameFix/m_145725_ (Lcom/mojang/datafixers/util/Pair;)Lcom/mojang/datafixers/util/Pair; net/minecraft/util/datafix/fixes/TeamDisplayNameFix/lambda$makeRule$3 (Lcom/mojang/datafixers/util/Pair;)Lcom/mojang/datafixers/util/Pair; +MD: net/minecraft/util/datafix/fixes/TeamDisplayNameFix/m_145727_ (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/TeamDisplayNameFix/lambda$makeRule$2 (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/TeamDisplayNameFix/m_145729_ (Lcom/mojang/serialization/Dynamic;Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/TeamDisplayNameFix/lambda$makeRule$1 (Lcom/mojang/serialization/Dynamic;Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/TeamDisplayNameFix/m_145732_ (Ljava/lang/String;)Ljava/lang/String; net/minecraft/util/datafix/fixes/TeamDisplayNameFix/lambda$makeRule$0 (Ljava/lang/String;)Ljava/lang/String; +MD: net/minecraft/util/datafix/fixes/TeamDisplayNameFix/m_17010_ (Lcom/mojang/serialization/DynamicOps;)Ljava/util/function/Function; net/minecraft/util/datafix/fixes/TeamDisplayNameFix/lambda$makeRule$4 (Lcom/mojang/serialization/DynamicOps;)Ljava/util/function/Function; +MD: net/minecraft/util/datafix/fixes/TeamDisplayNameFix/makeRule ()Lcom/mojang/datafixers/TypeRewriteRule; net/minecraft/util/datafix/fixes/TeamDisplayNameFix/makeRule ()Lcom/mojang/datafixers/TypeRewriteRule; +MD: net/minecraft/util/datafix/fixes/TrappedChestBlockEntityFix/ ()V net/minecraft/util/datafix/fixes/TrappedChestBlockEntityFix/ ()V +MD: net/minecraft/util/datafix/fixes/TrappedChestBlockEntityFix/ (Lcom/mojang/datafixers/schemas/Schema;Z)V net/minecraft/util/datafix/fixes/TrappedChestBlockEntityFix/ (Lcom/mojang/datafixers/schemas/Schema;Z)V +MD: net/minecraft/util/datafix/fixes/TrappedChestBlockEntityFix/m_145736_ (IILit/unimi/dsi/fastutil/ints/IntSet;Lcom/mojang/datafixers/types/templates/TaggedChoice$TaggedChoiceType;Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; net/minecraft/util/datafix/fixes/TrappedChestBlockEntityFix/lambda$makeRule$2 (IILit/unimi/dsi/fastutil/ints/IntSet;Lcom/mojang/datafixers/types/templates/TaggedChoice$TaggedChoiceType;Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; +MD: net/minecraft/util/datafix/fixes/TrappedChestBlockEntityFix/m_145742_ (Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; net/minecraft/util/datafix/fixes/TrappedChestBlockEntityFix/lambda$makeRule$4 (Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; +MD: net/minecraft/util/datafix/fixes/TrappedChestBlockEntityFix/m_145747_ (Lcom/mojang/datafixers/types/templates/TaggedChoice$TaggedChoiceType;IILit/unimi/dsi/fastutil/ints/IntSet;Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; net/minecraft/util/datafix/fixes/TrappedChestBlockEntityFix/lambda$makeRule$3 (Lcom/mojang/datafixers/types/templates/TaggedChoice$TaggedChoiceType;IILit/unimi/dsi/fastutil/ints/IntSet;Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; +MD: net/minecraft/util/datafix/fixes/TrappedChestBlockEntityFix/m_145753_ (Lcom/mojang/datafixers/util/Pair;)Lcom/mojang/datafixers/util/Pair; net/minecraft/util/datafix/fixes/TrappedChestBlockEntityFix/lambda$makeRule$1 (Lcom/mojang/datafixers/util/Pair;)Lcom/mojang/datafixers/util/Pair; +MD: net/minecraft/util/datafix/fixes/TrappedChestBlockEntityFix/m_145755_ (Ljava/lang/String;)Ljava/lang/String; net/minecraft/util/datafix/fixes/TrappedChestBlockEntityFix/lambda$makeRule$0 (Ljava/lang/String;)Ljava/lang/String; +MD: net/minecraft/util/datafix/fixes/TrappedChestBlockEntityFix/m_17026_ (Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; net/minecraft/util/datafix/fixes/TrappedChestBlockEntityFix/lambda$makeRule$5 (Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; +MD: net/minecraft/util/datafix/fixes/TrappedChestBlockEntityFix/makeRule ()Lcom/mojang/datafixers/TypeRewriteRule; net/minecraft/util/datafix/fixes/TrappedChestBlockEntityFix/makeRule ()Lcom/mojang/datafixers/TypeRewriteRule; +MD: net/minecraft/util/datafix/fixes/TrappedChestBlockEntityFix$TrappedChestSection/ (Lcom/mojang/datafixers/Typed;Lcom/mojang/datafixers/schemas/Schema;)V net/minecraft/util/datafix/fixes/TrappedChestBlockEntityFix$TrappedChestSection/ (Lcom/mojang/datafixers/Typed;Lcom/mojang/datafixers/schemas/Schema;)V +MD: net/minecraft/util/datafix/fixes/TrappedChestBlockEntityFix$TrappedChestSection/m_17053_ (I)Z net/minecraft/util/datafix/fixes/TrappedChestBlockEntityFix$TrappedChestSection/isTrappedChest (I)Z +MD: net/minecraft/util/datafix/fixes/TrappedChestBlockEntityFix$TrappedChestSection/m_7969_ ()Z net/minecraft/util/datafix/fixes/TrappedChestBlockEntityFix$TrappedChestSection/skippable ()Z +MD: net/minecraft/util/datafix/fixes/VariantRenameFix/ (Lcom/mojang/datafixers/schemas/Schema;Ljava/lang/String;Lcom/mojang/datafixers/DSL$TypeReference;Ljava/lang/String;Ljava/util/Map;)V net/minecraft/util/datafix/fixes/VariantRenameFix/ (Lcom/mojang/datafixers/schemas/Schema;Ljava/lang/String;Lcom/mojang/datafixers/DSL$TypeReference;Ljava/lang/String;Ljava/util/Map;)V +MD: net/minecraft/util/datafix/fixes/VariantRenameFix/m_216749_ (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/VariantRenameFix/lambda$fix$2 (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/VariantRenameFix/m_216751_ (Lcom/mojang/serialization/Dynamic;Ljava/lang/String;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/VariantRenameFix/lambda$fix$0 (Lcom/mojang/serialization/Dynamic;Ljava/lang/String;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/VariantRenameFix/m_216754_ (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/VariantRenameFix/lambda$fix$1 (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/VariantRenameFix/m_7504_ (Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; net/minecraft/util/datafix/fixes/VariantRenameFix/fix (Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; +MD: net/minecraft/util/datafix/fixes/VillagerDataFix/ (Lcom/mojang/datafixers/schemas/Schema;Ljava/lang/String;)V net/minecraft/util/datafix/fixes/VillagerDataFix/ (Lcom/mojang/datafixers/schemas/Schema;Ljava/lang/String;)V +MD: net/minecraft/util/datafix/fixes/VillagerDataFix/m_17058_ (II)Ljava/lang/String; net/minecraft/util/datafix/fixes/VillagerDataFix/upgradeData (II)Ljava/lang/String; +MD: net/minecraft/util/datafix/fixes/VillagerDataFix/m_7504_ (Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; net/minecraft/util/datafix/fixes/VillagerDataFix/fix (Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; +MD: net/minecraft/util/datafix/fixes/VillagerFollowRangeFix/ (Lcom/mojang/datafixers/schemas/Schema;)V net/minecraft/util/datafix/fixes/VillagerFollowRangeFix/ (Lcom/mojang/datafixers/schemas/Schema;)V +MD: net/minecraft/util/datafix/fixes/VillagerFollowRangeFix/m_145759_ (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/VillagerFollowRangeFix/lambda$fixValue$0 (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/VillagerFollowRangeFix/m_17067_ (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/VillagerFollowRangeFix/fixValue (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/VillagerFollowRangeFix/m_17069_ (Lcom/mojang/serialization/Dynamic;Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/VillagerFollowRangeFix/lambda$fixValue$1 (Lcom/mojang/serialization/Dynamic;Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/VillagerFollowRangeFix/m_7504_ (Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; net/minecraft/util/datafix/fixes/VillagerFollowRangeFix/fix (Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; +MD: net/minecraft/util/datafix/fixes/VillagerRebuildLevelAndXpFix/ ()V net/minecraft/util/datafix/fixes/VillagerRebuildLevelAndXpFix/ ()V +MD: net/minecraft/util/datafix/fixes/VillagerRebuildLevelAndXpFix/ (Lcom/mojang/datafixers/schemas/Schema;Z)V net/minecraft/util/datafix/fixes/VillagerRebuildLevelAndXpFix/ (Lcom/mojang/datafixers/schemas/Schema;Z)V +MD: net/minecraft/util/datafix/fixes/VillagerRebuildLevelAndXpFix/m_145762_ (Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; net/minecraft/util/datafix/fixes/VillagerRebuildLevelAndXpFix/lambda$makeRule$2 (Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; +MD: net/minecraft/util/datafix/fixes/VillagerRebuildLevelAndXpFix/m_145767_ (Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/Typed;)Ljava/lang/Integer; net/minecraft/util/datafix/fixes/VillagerRebuildLevelAndXpFix/lambda$makeRule$1 (Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/Typed;)Ljava/lang/Integer; +MD: net/minecraft/util/datafix/fixes/VillagerRebuildLevelAndXpFix/m_145770_ (Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/Typed;)Ljava/util/Optional; net/minecraft/util/datafix/fixes/VillagerRebuildLevelAndXpFix/lambda$makeRule$0 (Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/Typed;)Ljava/util/Optional; +MD: net/minecraft/util/datafix/fixes/VillagerRebuildLevelAndXpFix/m_145773_ (ILcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/VillagerRebuildLevelAndXpFix/lambda$addLevel$4 (ILcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/VillagerRebuildLevelAndXpFix/m_17079_ (I)I net/minecraft/util/datafix/fixes/VillagerRebuildLevelAndXpFix/getMinXpPerLevel (I)I +MD: net/minecraft/util/datafix/fixes/VillagerRebuildLevelAndXpFix/m_17081_ (ILcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/VillagerRebuildLevelAndXpFix/lambda$addXpFromLevel$6 (ILcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/VillagerRebuildLevelAndXpFix/m_17092_ (Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/types/Type;Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; net/minecraft/util/datafix/fixes/VillagerRebuildLevelAndXpFix/lambda$makeRule$3 (Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/types/Type;Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; +MD: net/minecraft/util/datafix/fixes/VillagerRebuildLevelAndXpFix/m_17099_ (Lcom/mojang/datafixers/Typed;I)Lcom/mojang/datafixers/Typed; net/minecraft/util/datafix/fixes/VillagerRebuildLevelAndXpFix/addLevel (Lcom/mojang/datafixers/Typed;I)Lcom/mojang/datafixers/Typed; +MD: net/minecraft/util/datafix/fixes/VillagerRebuildLevelAndXpFix/m_17102_ (ILcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/VillagerRebuildLevelAndXpFix/lambda$addLevel$5 (ILcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/VillagerRebuildLevelAndXpFix/m_17108_ (Lcom/mojang/datafixers/Typed;I)Lcom/mojang/datafixers/Typed; net/minecraft/util/datafix/fixes/VillagerRebuildLevelAndXpFix/addXpFromLevel (Lcom/mojang/datafixers/Typed;I)Lcom/mojang/datafixers/Typed; +MD: net/minecraft/util/datafix/fixes/VillagerRebuildLevelAndXpFix/makeRule ()Lcom/mojang/datafixers/TypeRewriteRule; net/minecraft/util/datafix/fixes/VillagerRebuildLevelAndXpFix/makeRule ()Lcom/mojang/datafixers/TypeRewriteRule; +MD: net/minecraft/util/datafix/fixes/VillagerTradeFix/ (Lcom/mojang/datafixers/schemas/Schema;Z)V net/minecraft/util/datafix/fixes/VillagerTradeFix/ (Lcom/mojang/datafixers/schemas/Schema;Z)V +MD: net/minecraft/util/datafix/fixes/VillagerTradeFix/m_145776_ (Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/OpticFinder;Ljava/util/function/Function;Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; net/minecraft/util/datafix/fixes/VillagerTradeFix/lambda$fix$2 (Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/OpticFinder;Ljava/util/function/Function;Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; +MD: net/minecraft/util/datafix/fixes/VillagerTradeFix/m_145783_ (Lcom/mojang/datafixers/OpticFinder;Ljava/util/function/Function;Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; net/minecraft/util/datafix/fixes/VillagerTradeFix/lambda$fix$1 (Lcom/mojang/datafixers/OpticFinder;Ljava/util/function/Function;Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; +MD: net/minecraft/util/datafix/fixes/VillagerTradeFix/m_145789_ (Ljava/lang/String;)Ljava/lang/String; net/minecraft/util/datafix/fixes/VillagerTradeFix/lambda$updateItemStack$4 (Ljava/lang/String;)Ljava/lang/String; +MD: net/minecraft/util/datafix/fixes/VillagerTradeFix/m_17118_ (Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/OpticFinder;Ljava/util/function/Function;Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; net/minecraft/util/datafix/fixes/VillagerTradeFix/lambda$fix$3 (Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/OpticFinder;Ljava/util/function/Function;Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; +MD: net/minecraft/util/datafix/fixes/VillagerTradeFix/m_17133_ (Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; net/minecraft/util/datafix/fixes/VillagerTradeFix/updateItemStack (Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; +MD: net/minecraft/util/datafix/fixes/VillagerTradeFix/m_17144_ (Lcom/mojang/datafixers/util/Pair;)Lcom/mojang/datafixers/util/Pair; net/minecraft/util/datafix/fixes/VillagerTradeFix/lambda$updateItemStack$5 (Lcom/mojang/datafixers/util/Pair;)Lcom/mojang/datafixers/util/Pair; +MD: net/minecraft/util/datafix/fixes/VillagerTradeFix/m_17148_ (Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; net/minecraft/util/datafix/fixes/VillagerTradeFix/lambda$fix$0 (Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; +MD: net/minecraft/util/datafix/fixes/VillagerTradeFix/m_7504_ (Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; net/minecraft/util/datafix/fixes/VillagerTradeFix/fix (Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; +MD: net/minecraft/util/datafix/fixes/WallPropertyFix/ ()V net/minecraft/util/datafix/fixes/WallPropertyFix/ ()V +MD: net/minecraft/util/datafix/fixes/WallPropertyFix/ (Lcom/mojang/datafixers/schemas/Schema;Z)V net/minecraft/util/datafix/fixes/WallPropertyFix/ (Lcom/mojang/datafixers/schemas/Schema;Z)V +MD: net/minecraft/util/datafix/fixes/WallPropertyFix/m_17156_ (Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; net/minecraft/util/datafix/fixes/WallPropertyFix/lambda$makeRule$0 (Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; +MD: net/minecraft/util/datafix/fixes/WallPropertyFix/m_17158_ (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/WallPropertyFix/upgradeBlockStateTag (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/WallPropertyFix/m_17160_ (Lcom/mojang/serialization/Dynamic;Ljava/lang/String;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/WallPropertyFix/fixWallProperty (Lcom/mojang/serialization/Dynamic;Ljava/lang/String;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/WallPropertyFix/m_17163_ (Ljava/lang/String;)Ljava/lang/String; net/minecraft/util/datafix/fixes/WallPropertyFix/mapProperty (Ljava/lang/String;)Ljava/lang/String; +MD: net/minecraft/util/datafix/fixes/WallPropertyFix/m_17165_ (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/WallPropertyFix/lambda$upgradeBlockStateTag$2 (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/WallPropertyFix/m_17167_ (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/WallPropertyFix/lambda$fixWallProperty$1 (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/WallPropertyFix/makeRule ()Lcom/mojang/datafixers/TypeRewriteRule; net/minecraft/util/datafix/fixes/WallPropertyFix/makeRule ()Lcom/mojang/datafixers/TypeRewriteRule; +MD: net/minecraft/util/datafix/fixes/WeaponSmithChestLootTableFix/ (Lcom/mojang/datafixers/schemas/Schema;Z)V net/minecraft/util/datafix/fixes/WeaponSmithChestLootTableFix/ (Lcom/mojang/datafixers/schemas/Schema;Z)V +MD: net/minecraft/util/datafix/fixes/WeaponSmithChestLootTableFix/m_203115_ (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/WeaponSmithChestLootTableFix/lambda$fix$0 (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/WeaponSmithChestLootTableFix/m_7504_ (Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; net/minecraft/util/datafix/fixes/WeaponSmithChestLootTableFix/fix (Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; +MD: net/minecraft/util/datafix/fixes/WorldGenSettingsDisallowOldCustomWorldsFix/ (Lcom/mojang/datafixers/schemas/Schema;)V net/minecraft/util/datafix/fixes/WorldGenSettingsDisallowOldCustomWorldsFix/ (Lcom/mojang/datafixers/schemas/Schema;)V +MD: net/minecraft/util/datafix/fixes/WorldGenSettingsDisallowOldCustomWorldsFix/m_185158_ (Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; net/minecraft/util/datafix/fixes/WorldGenSettingsDisallowOldCustomWorldsFix/lambda$makeRule$4 (Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; +MD: net/minecraft/util/datafix/fixes/WorldGenSettingsDisallowOldCustomWorldsFix/m_185161_ (Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; net/minecraft/util/datafix/fixes/WorldGenSettingsDisallowOldCustomWorldsFix/lambda$makeRule$3 (Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; +MD: net/minecraft/util/datafix/fixes/WorldGenSettingsDisallowOldCustomWorldsFix/m_185163_ (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/DataResult; net/minecraft/util/datafix/fixes/WorldGenSettingsDisallowOldCustomWorldsFix/lambda$makeRule$2 (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/DataResult; +MD: net/minecraft/util/datafix/fixes/WorldGenSettingsDisallowOldCustomWorldsFix/m_185165_ (Lcom/mojang/serialization/Dynamic;Lcom/mojang/serialization/Dynamic;)V net/minecraft/util/datafix/fixes/WorldGenSettingsDisallowOldCustomWorldsFix/lambda$makeRule$0 (Lcom/mojang/serialization/Dynamic;Lcom/mojang/serialization/Dynamic;)V +MD: net/minecraft/util/datafix/fixes/WorldGenSettingsDisallowOldCustomWorldsFix/m_185168_ (Ljava/util/Map;)Ljava/util/Map; net/minecraft/util/datafix/fixes/WorldGenSettingsDisallowOldCustomWorldsFix/lambda$makeRule$1 (Ljava/util/Map;)Ljava/util/Map; +MD: net/minecraft/util/datafix/fixes/WorldGenSettingsDisallowOldCustomWorldsFix/makeRule ()Lcom/mojang/datafixers/TypeRewriteRule; net/minecraft/util/datafix/fixes/WorldGenSettingsDisallowOldCustomWorldsFix/makeRule ()Lcom/mojang/datafixers/TypeRewriteRule; +MD: net/minecraft/util/datafix/fixes/WorldGenSettingsFix/ ()V net/minecraft/util/datafix/fixes/WorldGenSettingsFix/ ()V +MD: net/minecraft/util/datafix/fixes/WorldGenSettingsFix/ (Lcom/mojang/datafixers/schemas/Schema;)V net/minecraft/util/datafix/fixes/WorldGenSettingsFix/ (Lcom/mojang/datafixers/schemas/Schema;)V +MD: net/minecraft/util/datafix/fixes/WorldGenSettingsFix/m_145800_ (Lcom/mojang/serialization/Dynamic;Lorg/apache/commons/lang3/mutable/MutableBoolean;Lorg/apache/commons/lang3/mutable/MutableInt;Lorg/apache/commons/lang3/mutable/MutableInt;Lorg/apache/commons/lang3/mutable/MutableInt;Ljava/util/Map;Lcom/mojang/serialization/Dynamic;Lcom/mojang/serialization/Dynamic;)V net/minecraft/util/datafix/fixes/WorldGenSettingsFix/lambda$fixFlatStructures$7 (Lcom/mojang/serialization/Dynamic;Lorg/apache/commons/lang3/mutable/MutableBoolean;Lorg/apache/commons/lang3/mutable/MutableInt;Lorg/apache/commons/lang3/mutable/MutableInt;Lorg/apache/commons/lang3/mutable/MutableInt;Ljava/util/Map;Lcom/mojang/serialization/Dynamic;Lcom/mojang/serialization/Dynamic;)V +MD: net/minecraft/util/datafix/fixes/WorldGenSettingsFix/m_145809_ (Lcom/mojang/serialization/Dynamic;Lorg/apache/commons/lang3/mutable/MutableBoolean;Lorg/apache/commons/lang3/mutable/MutableInt;Lorg/apache/commons/lang3/mutable/MutableInt;Lorg/apache/commons/lang3/mutable/MutableInt;Ljava/util/Map;Ljava/util/Map;)V net/minecraft/util/datafix/fixes/WorldGenSettingsFix/lambda$fixFlatStructures$8 (Lcom/mojang/serialization/Dynamic;Lorg/apache/commons/lang3/mutable/MutableBoolean;Lorg/apache/commons/lang3/mutable/MutableInt;Lorg/apache/commons/lang3/mutable/MutableInt;Lorg/apache/commons/lang3/mutable/MutableInt;Ljava/util/Map;Ljava/util/Map;)V +MD: net/minecraft/util/datafix/fixes/WorldGenSettingsFix/m_145817_ (Lorg/apache/commons/lang3/mutable/MutableBoolean;Lorg/apache/commons/lang3/mutable/MutableInt;Lorg/apache/commons/lang3/mutable/MutableInt;Lorg/apache/commons/lang3/mutable/MutableInt;Ljava/util/Map;Lcom/mojang/serialization/Dynamic;Lcom/mojang/serialization/Dynamic;)V net/minecraft/util/datafix/fixes/WorldGenSettingsFix/lambda$fixFlatStructures$9 (Lorg/apache/commons/lang3/mutable/MutableBoolean;Lorg/apache/commons/lang3/mutable/MutableInt;Lorg/apache/commons/lang3/mutable/MutableInt;Lorg/apache/commons/lang3/mutable/MutableInt;Ljava/util/Map;Lcom/mojang/serialization/Dynamic;Lcom/mojang/serialization/Dynamic;)V +MD: net/minecraft/util/datafix/fixes/WorldGenSettingsFix/m_17174_ (JLcom/mojang/serialization/DynamicLike;Lcom/mojang/serialization/Dynamic;Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/WorldGenSettingsFix/noise (JLcom/mojang/serialization/DynamicLike;Lcom/mojang/serialization/Dynamic;Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/WorldGenSettingsFix/m_17179_ (Lcom/google/common/collect/ImmutableMap$Builder;Lcom/mojang/serialization/DynamicOps;Ljava/lang/String;)V net/minecraft/util/datafix/fixes/WorldGenSettingsFix/lambda$fix$6 (Lcom/google/common/collect/ImmutableMap$Builder;Lcom/mojang/serialization/DynamicOps;Ljava/lang/String;)V +MD: net/minecraft/util/datafix/fixes/WorldGenSettingsFix/m_17183_ (Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; net/minecraft/util/datafix/fixes/WorldGenSettingsFix/lambda$makeRule$0 (Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; +MD: net/minecraft/util/datafix/fixes/WorldGenSettingsFix/m_17185_ (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/WorldGenSettingsFix/fix (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/WorldGenSettingsFix/m_17187_ (Lcom/mojang/serialization/Dynamic;J)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/WorldGenSettingsFix/defaultOverworld (Lcom/mojang/serialization/Dynamic;J)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/WorldGenSettingsFix/m_17190_ (Lcom/mojang/serialization/Dynamic;JLcom/mojang/serialization/Dynamic;Z)Ljava/lang/Object; net/minecraft/util/datafix/fixes/WorldGenSettingsFix/vanillaLevels (Lcom/mojang/serialization/Dynamic;JLcom/mojang/serialization/Dynamic;Z)Ljava/lang/Object; +MD: net/minecraft/util/datafix/fixes/WorldGenSettingsFix/m_17195_ (Lcom/mojang/serialization/Dynamic;JZZ)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/WorldGenSettingsFix/vanillaBiomeSource (Lcom/mojang/serialization/Dynamic;JZZ)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/WorldGenSettingsFix/m_17217_ (Lcom/mojang/serialization/DynamicOps;Lcom/mojang/serialization/OptionalDynamic;)Ljava/util/Map; net/minecraft/util/datafix/fixes/WorldGenSettingsFix/fixFlatStructures (Lcom/mojang/serialization/DynamicOps;Lcom/mojang/serialization/OptionalDynamic;)Ljava/util/Map; +MD: net/minecraft/util/datafix/fixes/WorldGenSettingsFix/m_17220_ (Lcom/mojang/serialization/DynamicOps;Ljava/util/Map$Entry;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/WorldGenSettingsFix/lambda$fixFlatStructures$12 (Lcom/mojang/serialization/DynamicOps;Ljava/util/Map$Entry;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/WorldGenSettingsFix/m_17223_ (Lcom/mojang/serialization/OptionalDynamic;Ljava/util/Map$Entry;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/WorldGenSettingsFix/lambda$fixFlatStructures$11 (Lcom/mojang/serialization/OptionalDynamic;Ljava/util/Map$Entry;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/WorldGenSettingsFix/m_17226_ (Ljava/lang/String;)Ljava/lang/String; net/minecraft/util/datafix/fixes/WorldGenSettingsFix/lambda$fix$1 (Ljava/lang/String;)Ljava/lang/String; +MD: net/minecraft/util/datafix/fixes/WorldGenSettingsFix/m_17228_ (Ljava/lang/String;I)I net/minecraft/util/datafix/fixes/WorldGenSettingsFix/getInt (Ljava/lang/String;I)I +MD: net/minecraft/util/datafix/fixes/WorldGenSettingsFix/m_17231_ (Ljava/lang/String;II)I net/minecraft/util/datafix/fixes/WorldGenSettingsFix/getInt (Ljava/lang/String;II)I +MD: net/minecraft/util/datafix/fixes/WorldGenSettingsFix/m_17235_ (Ljava/util/Map;Ljava/lang/String;Ljava/lang/String;I)V net/minecraft/util/datafix/fixes/WorldGenSettingsFix/setSpacing (Ljava/util/Map;Ljava/lang/String;Ljava/lang/String;I)V +MD: net/minecraft/util/datafix/fixes/WorldGenSettingsFix/m_17240_ (Ljava/util/Optional;Lcom/mojang/serialization/Dynamic;)Ljava/util/Optional; net/minecraft/util/datafix/fixes/WorldGenSettingsFix/lambda$fix$2 (Ljava/util/Optional;Lcom/mojang/serialization/Dynamic;)Ljava/util/Optional; +MD: net/minecraft/util/datafix/fixes/WorldGenSettingsFix/m_17251_ (Lorg/apache/commons/lang3/mutable/MutableBoolean;Lorg/apache/commons/lang3/mutable/MutableInt;Lorg/apache/commons/lang3/mutable/MutableInt;Lorg/apache/commons/lang3/mutable/MutableInt;Ljava/util/Map;Ljava/util/Map;)V net/minecraft/util/datafix/fixes/WorldGenSettingsFix/lambda$fixFlatStructures$10 (Lorg/apache/commons/lang3/mutable/MutableBoolean;Lorg/apache/commons/lang3/mutable/MutableInt;Lorg/apache/commons/lang3/mutable/MutableInt;Lorg/apache/commons/lang3/mutable/MutableInt;Ljava/util/Map;Ljava/util/Map;)V +MD: net/minecraft/util/datafix/fixes/WorldGenSettingsFix/m_17258_ (Lcom/mojang/serialization/Dynamic;)Ljava/util/Optional; net/minecraft/util/datafix/fixes/WorldGenSettingsFix/lambda$fix$5 (Lcom/mojang/serialization/Dynamic;)Ljava/util/Optional; +MD: net/minecraft/util/datafix/fixes/WorldGenSettingsFix/m_17260_ (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/WorldGenSettingsFix/lambda$fix$4 (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/WorldGenSettingsFix/m_17262_ (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/WorldGenSettingsFix/lambda$fix$3 (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/WorldGenSettingsFix/makeRule ()Lcom/mojang/datafixers/TypeRewriteRule; net/minecraft/util/datafix/fixes/WorldGenSettingsFix/makeRule ()Lcom/mojang/datafixers/TypeRewriteRule; +MD: net/minecraft/util/datafix/fixes/WorldGenSettingsFix$StructureFeatureConfiguration/ ()V net/minecraft/util/datafix/fixes/WorldGenSettingsFix$StructureFeatureConfiguration/ ()V +MD: net/minecraft/util/datafix/fixes/WorldGenSettingsFix$StructureFeatureConfiguration/ (III)V net/minecraft/util/datafix/fixes/WorldGenSettingsFix$StructureFeatureConfiguration/ (III)V +MD: net/minecraft/util/datafix/fixes/WorldGenSettingsFix$StructureFeatureConfiguration/m_145825_ (Lnet/minecraft/util/datafix/fixes/WorldGenSettingsFix$StructureFeatureConfiguration;)Ljava/lang/Integer; net/minecraft/util/datafix/fixes/WorldGenSettingsFix$StructureFeatureConfiguration/lambda$static$2 (Lnet/minecraft/util/datafix/fixes/WorldGenSettingsFix$StructureFeatureConfiguration;)Ljava/lang/Integer; +MD: net/minecraft/util/datafix/fixes/WorldGenSettingsFix$StructureFeatureConfiguration/m_145827_ (Lnet/minecraft/util/datafix/fixes/WorldGenSettingsFix$StructureFeatureConfiguration;)Ljava/lang/Integer; net/minecraft/util/datafix/fixes/WorldGenSettingsFix$StructureFeatureConfiguration/lambda$static$1 (Lnet/minecraft/util/datafix/fixes/WorldGenSettingsFix$StructureFeatureConfiguration;)Ljava/lang/Integer; +MD: net/minecraft/util/datafix/fixes/WorldGenSettingsFix$StructureFeatureConfiguration/m_145829_ (Lnet/minecraft/util/datafix/fixes/WorldGenSettingsFix$StructureFeatureConfiguration;)Ljava/lang/Integer; net/minecraft/util/datafix/fixes/WorldGenSettingsFix$StructureFeatureConfiguration/lambda$static$0 (Lnet/minecraft/util/datafix/fixes/WorldGenSettingsFix$StructureFeatureConfiguration;)Ljava/lang/Integer; +MD: net/minecraft/util/datafix/fixes/WorldGenSettingsFix$StructureFeatureConfiguration/m_17276_ (Lcom/mojang/serialization/DynamicOps;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/WorldGenSettingsFix$StructureFeatureConfiguration/serialize (Lcom/mojang/serialization/DynamicOps;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/WorldGenSettingsFix$StructureFeatureConfiguration/m_17278_ (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/util/datafix/fixes/WorldGenSettingsFix$StructureFeatureConfiguration/lambda$static$3 (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/util/datafix/fixes/WorldGenSettingsHeightAndBiomeFix/ (Lcom/mojang/datafixers/schemas/Schema;)V net/minecraft/util/datafix/fixes/WorldGenSettingsHeightAndBiomeFix/ (Lcom/mojang/datafixers/schemas/Schema;)V +MD: net/minecraft/util/datafix/fixes/WorldGenSettingsHeightAndBiomeFix/m_185175_ ()Ljava/lang/IllegalStateException; net/minecraft/util/datafix/fixes/WorldGenSettingsHeightAndBiomeFix/lambda$makeRule$7 ()Ljava/lang/IllegalStateException; +MD: net/minecraft/util/datafix/fixes/WorldGenSettingsHeightAndBiomeFix/m_185176_ (Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/types/Type;Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; net/minecraft/util/datafix/fixes/WorldGenSettingsHeightAndBiomeFix/lambda$makeRule$9 (Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/types/Type;Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; +MD: net/minecraft/util/datafix/fixes/WorldGenSettingsHeightAndBiomeFix/m_185180_ (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/WorldGenSettingsHeightAndBiomeFix/updateLayers (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/WorldGenSettingsHeightAndBiomeFix/m_185182_ (ZLorg/apache/commons/lang3/mutable/MutableBoolean;Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/WorldGenSettingsHeightAndBiomeFix/lambda$makeRule$2 (ZLorg/apache/commons/lang3/mutable/MutableBoolean;Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/WorldGenSettingsHeightAndBiomeFix/m_185186_ (ZZLcom/mojang/datafixers/types/Type;Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; net/minecraft/util/datafix/fixes/WorldGenSettingsHeightAndBiomeFix/lambda$makeRule$8 (ZZLcom/mojang/datafixers/types/Type;Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; +MD: net/minecraft/util/datafix/fixes/WorldGenSettingsHeightAndBiomeFix/m_185191_ (ZZLcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/WorldGenSettingsHeightAndBiomeFix/lambda$makeRule$6 (ZZLcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/WorldGenSettingsHeightAndBiomeFix/m_185195_ ()Ljava/lang/IllegalStateException; net/minecraft/util/datafix/fixes/WorldGenSettingsHeightAndBiomeFix/lambda$makeRule$1 ()Ljava/lang/IllegalStateException; +MD: net/minecraft/util/datafix/fixes/WorldGenSettingsHeightAndBiomeFix/m_185196_ (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/WorldGenSettingsHeightAndBiomeFix/lambda$makeRule$4 (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/WorldGenSettingsHeightAndBiomeFix/m_185198_ (ZZLcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/WorldGenSettingsHeightAndBiomeFix/lambda$makeRule$5 (ZZLcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/WorldGenSettingsHeightAndBiomeFix/m_185202_ (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/WorldGenSettingsHeightAndBiomeFix/lambda$makeRule$3 (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/WorldGenSettingsHeightAndBiomeFix/m_185204_ (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/WorldGenSettingsHeightAndBiomeFix/lambda$makeRule$0 (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/WorldGenSettingsHeightAndBiomeFix/makeRule ()Lcom/mojang/datafixers/TypeRewriteRule; net/minecraft/util/datafix/fixes/WorldGenSettingsHeightAndBiomeFix/makeRule ()Lcom/mojang/datafixers/TypeRewriteRule; +MD: net/minecraft/util/datafix/fixes/WriteAndReadFix/ (Lcom/mojang/datafixers/schemas/Schema;Ljava/lang/String;Lcom/mojang/datafixers/DSL$TypeReference;)V net/minecraft/util/datafix/fixes/WriteAndReadFix/ (Lcom/mojang/datafixers/schemas/Schema;Ljava/lang/String;Lcom/mojang/datafixers/DSL$TypeReference;)V +MD: net/minecraft/util/datafix/fixes/WriteAndReadFix/makeRule ()Lcom/mojang/datafixers/TypeRewriteRule; net/minecraft/util/datafix/fixes/WriteAndReadFix/makeRule ()Lcom/mojang/datafixers/TypeRewriteRule; +MD: net/minecraft/util/datafix/fixes/ZombieVillagerRebuildXpFix/ (Lcom/mojang/datafixers/schemas/Schema;Z)V net/minecraft/util/datafix/fixes/ZombieVillagerRebuildXpFix/ (Lcom/mojang/datafixers/schemas/Schema;Z)V +MD: net/minecraft/util/datafix/fixes/ZombieVillagerRebuildXpFix/m_17302_ (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/fixes/ZombieVillagerRebuildXpFix/lambda$fix$0 (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/fixes/ZombieVillagerRebuildXpFix/m_7504_ (Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; net/minecraft/util/datafix/fixes/ZombieVillagerRebuildXpFix/fix (Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; +MD: net/minecraft/util/datafix/schemas/NamespacedSchema/ ()V net/minecraft/util/datafix/schemas/NamespacedSchema/ ()V +MD: net/minecraft/util/datafix/schemas/NamespacedSchema/ (ILcom/mojang/datafixers/schemas/Schema;)V net/minecraft/util/datafix/schemas/NamespacedSchema/ (ILcom/mojang/datafixers/schemas/Schema;)V +MD: net/minecraft/util/datafix/schemas/NamespacedSchema/getChoiceType (Lcom/mojang/datafixers/DSL$TypeReference;Ljava/lang/String;)Lcom/mojang/datafixers/types/Type; net/minecraft/util/datafix/schemas/NamespacedSchema/getChoiceType (Lcom/mojang/datafixers/DSL$TypeReference;Ljava/lang/String;)Lcom/mojang/datafixers/types/Type; +MD: net/minecraft/util/datafix/schemas/NamespacedSchema/m_17310_ ()Lcom/mojang/datafixers/types/Type; net/minecraft/util/datafix/schemas/NamespacedSchema/namespacedString ()Lcom/mojang/datafixers/types/Type; +MD: net/minecraft/util/datafix/schemas/NamespacedSchema/m_17311_ (Ljava/lang/String;)Ljava/lang/String; net/minecraft/util/datafix/schemas/NamespacedSchema/ensureNamespaced (Ljava/lang/String;)Ljava/lang/String; +MD: net/minecraft/util/datafix/schemas/NamespacedSchema$1/ ()V net/minecraft/util/datafix/schemas/NamespacedSchema$1/ ()V +MD: net/minecraft/util/datafix/schemas/NamespacedSchema$1/read (Lcom/mojang/serialization/DynamicOps;Ljava/lang/Object;)Lcom/mojang/serialization/DataResult; net/minecraft/util/datafix/schemas/NamespacedSchema$1/read (Lcom/mojang/serialization/DynamicOps;Ljava/lang/Object;)Lcom/mojang/serialization/DataResult; +MD: net/minecraft/util/datafix/schemas/NamespacedSchema$1/toString ()Ljava/lang/String; net/minecraft/util/datafix/schemas/NamespacedSchema$1/toString ()Ljava/lang/String; +MD: net/minecraft/util/datafix/schemas/NamespacedSchema$1/write (Lcom/mojang/serialization/DynamicOps;Ljava/lang/Object;)Ljava/lang/Object; net/minecraft/util/datafix/schemas/NamespacedSchema$1/write (Lcom/mojang/serialization/DynamicOps;Ljava/lang/Object;)Ljava/lang/Object; +MD: net/minecraft/util/datafix/schemas/NamespacedSchema$1/write (Lcom/mojang/serialization/DynamicOps;Ljava/lang/String;)Ljava/lang/Object; net/minecraft/util/datafix/schemas/NamespacedSchema$1/write (Lcom/mojang/serialization/DynamicOps;Ljava/lang/String;)Ljava/lang/Object; +MD: net/minecraft/util/datafix/schemas/V100/ (ILcom/mojang/datafixers/schemas/Schema;)V net/minecraft/util/datafix/schemas/V100/ (ILcom/mojang/datafixers/schemas/Schema;)V +MD: net/minecraft/util/datafix/schemas/V100/m_17330_ (Lcom/mojang/datafixers/schemas/Schema;)Lcom/mojang/datafixers/types/templates/TypeTemplate; net/minecraft/util/datafix/schemas/V100/equipment (Lcom/mojang/datafixers/schemas/Schema;)Lcom/mojang/datafixers/types/templates/TypeTemplate; +MD: net/minecraft/util/datafix/schemas/V100/m_17332_ (Lcom/mojang/datafixers/schemas/Schema;Ljava/lang/String;)Lcom/mojang/datafixers/types/templates/TypeTemplate; net/minecraft/util/datafix/schemas/V100/lambda$registerEntities$3 (Lcom/mojang/datafixers/schemas/Schema;Ljava/lang/String;)Lcom/mojang/datafixers/types/templates/TypeTemplate; +MD: net/minecraft/util/datafix/schemas/V100/m_17335_ (Lcom/mojang/datafixers/schemas/Schema;Ljava/util/Map;Ljava/lang/String;)V net/minecraft/util/datafix/schemas/V100/registerMob (Lcom/mojang/datafixers/schemas/Schema;Ljava/util/Map;Ljava/lang/String;)V +MD: net/minecraft/util/datafix/schemas/V100/m_17339_ (Lcom/mojang/datafixers/schemas/Schema;)Lcom/mojang/datafixers/types/templates/TypeTemplate; net/minecraft/util/datafix/schemas/V100/lambda$registerTypes$4 (Lcom/mojang/datafixers/schemas/Schema;)Lcom/mojang/datafixers/types/templates/TypeTemplate; +MD: net/minecraft/util/datafix/schemas/V100/m_17341_ (Lcom/mojang/datafixers/schemas/Schema;Ljava/lang/String;)Lcom/mojang/datafixers/types/templates/TypeTemplate; net/minecraft/util/datafix/schemas/V100/lambda$registerEntities$2 (Lcom/mojang/datafixers/schemas/Schema;Ljava/lang/String;)Lcom/mojang/datafixers/types/templates/TypeTemplate; +MD: net/minecraft/util/datafix/schemas/V100/m_17344_ (Lcom/mojang/datafixers/schemas/Schema;)Lcom/mojang/datafixers/types/templates/TypeTemplate; net/minecraft/util/datafix/schemas/V100/lambda$registerMob$0 (Lcom/mojang/datafixers/schemas/Schema;)Lcom/mojang/datafixers/types/templates/TypeTemplate; +MD: net/minecraft/util/datafix/schemas/V100/m_17346_ (Lcom/mojang/datafixers/schemas/Schema;Ljava/lang/String;)Lcom/mojang/datafixers/types/templates/TypeTemplate; net/minecraft/util/datafix/schemas/V100/lambda$registerEntities$1 (Lcom/mojang/datafixers/schemas/Schema;Ljava/lang/String;)Lcom/mojang/datafixers/types/templates/TypeTemplate; +MD: net/minecraft/util/datafix/schemas/V100/registerEntities (Lcom/mojang/datafixers/schemas/Schema;)Ljava/util/Map; net/minecraft/util/datafix/schemas/V100/registerEntities (Lcom/mojang/datafixers/schemas/Schema;)Ljava/util/Map; +MD: net/minecraft/util/datafix/schemas/V100/registerTypes (Lcom/mojang/datafixers/schemas/Schema;Ljava/util/Map;Ljava/util/Map;)V net/minecraft/util/datafix/schemas/V100/registerTypes (Lcom/mojang/datafixers/schemas/Schema;Ljava/util/Map;Ljava/util/Map;)V +MD: net/minecraft/util/datafix/schemas/V102/ (ILcom/mojang/datafixers/schemas/Schema;)V net/minecraft/util/datafix/schemas/V102/ (ILcom/mojang/datafixers/schemas/Schema;)V +MD: net/minecraft/util/datafix/schemas/V102/m_17358_ (Lcom/mojang/datafixers/schemas/Schema;)Lcom/mojang/datafixers/types/templates/TypeTemplate; net/minecraft/util/datafix/schemas/V102/lambda$registerTypes$0 (Lcom/mojang/datafixers/schemas/Schema;)Lcom/mojang/datafixers/types/templates/TypeTemplate; +MD: net/minecraft/util/datafix/schemas/V102/registerTypes (Lcom/mojang/datafixers/schemas/Schema;Ljava/util/Map;Ljava/util/Map;)V net/minecraft/util/datafix/schemas/V102/registerTypes (Lcom/mojang/datafixers/schemas/Schema;Ljava/util/Map;Ljava/util/Map;)V +MD: net/minecraft/util/datafix/schemas/V1022/ (ILcom/mojang/datafixers/schemas/Schema;)V net/minecraft/util/datafix/schemas/V1022/ (ILcom/mojang/datafixers/schemas/Schema;)V +MD: net/minecraft/util/datafix/schemas/V1022/m_17367_ ()Lcom/mojang/datafixers/types/templates/TypeTemplate; net/minecraft/util/datafix/schemas/V1022/lambda$registerTypes$0 ()Lcom/mojang/datafixers/types/templates/TypeTemplate; +MD: net/minecraft/util/datafix/schemas/V1022/m_17368_ (Lcom/mojang/datafixers/schemas/Schema;)Lcom/mojang/datafixers/types/templates/TypeTemplate; net/minecraft/util/datafix/schemas/V1022/lambda$registerTypes$2 (Lcom/mojang/datafixers/schemas/Schema;)Lcom/mojang/datafixers/types/templates/TypeTemplate; +MD: net/minecraft/util/datafix/schemas/V1022/m_17370_ (Lcom/mojang/datafixers/schemas/Schema;)Lcom/mojang/datafixers/types/templates/TypeTemplate; net/minecraft/util/datafix/schemas/V1022/lambda$registerTypes$1 (Lcom/mojang/datafixers/schemas/Schema;)Lcom/mojang/datafixers/types/templates/TypeTemplate; +MD: net/minecraft/util/datafix/schemas/V1022/registerTypes (Lcom/mojang/datafixers/schemas/Schema;Ljava/util/Map;Ljava/util/Map;)V net/minecraft/util/datafix/schemas/V1022/registerTypes (Lcom/mojang/datafixers/schemas/Schema;Ljava/util/Map;Ljava/util/Map;)V +MD: net/minecraft/util/datafix/schemas/V106/ (ILcom/mojang/datafixers/schemas/Schema;)V net/minecraft/util/datafix/schemas/V106/ (ILcom/mojang/datafixers/schemas/Schema;)V +MD: net/minecraft/util/datafix/schemas/V106/m_17379_ (Lcom/mojang/datafixers/schemas/Schema;)Lcom/mojang/datafixers/types/templates/TypeTemplate; net/minecraft/util/datafix/schemas/V106/lambda$registerTypes$0 (Lcom/mojang/datafixers/schemas/Schema;)Lcom/mojang/datafixers/types/templates/TypeTemplate; +MD: net/minecraft/util/datafix/schemas/V106/registerTypes (Lcom/mojang/datafixers/schemas/Schema;Ljava/util/Map;Ljava/util/Map;)V net/minecraft/util/datafix/schemas/V106/registerTypes (Lcom/mojang/datafixers/schemas/Schema;Ljava/util/Map;Ljava/util/Map;)V +MD: net/minecraft/util/datafix/schemas/V107/ (ILcom/mojang/datafixers/schemas/Schema;)V net/minecraft/util/datafix/schemas/V107/ (ILcom/mojang/datafixers/schemas/Schema;)V +MD: net/minecraft/util/datafix/schemas/V107/registerEntities (Lcom/mojang/datafixers/schemas/Schema;)Ljava/util/Map; net/minecraft/util/datafix/schemas/V107/registerEntities (Lcom/mojang/datafixers/schemas/Schema;)Ljava/util/Map; +MD: net/minecraft/util/datafix/schemas/V1125/ (ILcom/mojang/datafixers/schemas/Schema;)V net/minecraft/util/datafix/schemas/V1125/ (ILcom/mojang/datafixers/schemas/Schema;)V +MD: net/minecraft/util/datafix/schemas/V1125/m_17393_ (Lcom/mojang/datafixers/schemas/Schema;)Lcom/mojang/datafixers/types/templates/TypeTemplate; net/minecraft/util/datafix/schemas/V1125/lambda$registerTypes$0 (Lcom/mojang/datafixers/schemas/Schema;)Lcom/mojang/datafixers/types/templates/TypeTemplate; +MD: net/minecraft/util/datafix/schemas/V1125/m_17395_ ()Lcom/mojang/datafixers/types/templates/TypeTemplate; net/minecraft/util/datafix/schemas/V1125/lambda$registerTypes$2 ()Lcom/mojang/datafixers/types/templates/TypeTemplate; +MD: net/minecraft/util/datafix/schemas/V1125/m_17396_ ()Lcom/mojang/datafixers/types/templates/TypeTemplate; net/minecraft/util/datafix/schemas/V1125/lambda$registerTypes$1 ()Lcom/mojang/datafixers/types/templates/TypeTemplate; +MD: net/minecraft/util/datafix/schemas/V1125/registerBlockEntities (Lcom/mojang/datafixers/schemas/Schema;)Ljava/util/Map; net/minecraft/util/datafix/schemas/V1125/registerBlockEntities (Lcom/mojang/datafixers/schemas/Schema;)Ljava/util/Map; +MD: net/minecraft/util/datafix/schemas/V1125/registerTypes (Lcom/mojang/datafixers/schemas/Schema;Ljava/util/Map;Ljava/util/Map;)V net/minecraft/util/datafix/schemas/V1125/registerTypes (Lcom/mojang/datafixers/schemas/Schema;Ljava/util/Map;Ljava/util/Map;)V +MD: net/minecraft/util/datafix/schemas/V135/ (ILcom/mojang/datafixers/schemas/Schema;)V net/minecraft/util/datafix/schemas/V135/ (ILcom/mojang/datafixers/schemas/Schema;)V +MD: net/minecraft/util/datafix/schemas/V135/m_17406_ (Lcom/mojang/datafixers/schemas/Schema;)Lcom/mojang/datafixers/types/templates/TypeTemplate; net/minecraft/util/datafix/schemas/V135/lambda$registerTypes$1 (Lcom/mojang/datafixers/schemas/Schema;)Lcom/mojang/datafixers/types/templates/TypeTemplate; +MD: net/minecraft/util/datafix/schemas/V135/m_17408_ (Lcom/mojang/datafixers/schemas/Schema;)Lcom/mojang/datafixers/types/templates/TypeTemplate; net/minecraft/util/datafix/schemas/V135/lambda$registerTypes$0 (Lcom/mojang/datafixers/schemas/Schema;)Lcom/mojang/datafixers/types/templates/TypeTemplate; +MD: net/minecraft/util/datafix/schemas/V135/registerTypes (Lcom/mojang/datafixers/schemas/Schema;Ljava/util/Map;Ljava/util/Map;)V net/minecraft/util/datafix/schemas/V135/registerTypes (Lcom/mojang/datafixers/schemas/Schema;Ljava/util/Map;Ljava/util/Map;)V +MD: net/minecraft/util/datafix/schemas/V143/ (ILcom/mojang/datafixers/schemas/Schema;)V net/minecraft/util/datafix/schemas/V143/ (ILcom/mojang/datafixers/schemas/Schema;)V +MD: net/minecraft/util/datafix/schemas/V143/registerEntities (Lcom/mojang/datafixers/schemas/Schema;)Ljava/util/Map; net/minecraft/util/datafix/schemas/V143/registerEntities (Lcom/mojang/datafixers/schemas/Schema;)Ljava/util/Map; +MD: net/minecraft/util/datafix/schemas/V1451/ (ILcom/mojang/datafixers/schemas/Schema;)V net/minecraft/util/datafix/schemas/V1451/ (ILcom/mojang/datafixers/schemas/Schema;)V +MD: net/minecraft/util/datafix/schemas/V1451/m_17422_ (Lcom/mojang/datafixers/schemas/Schema;)Lcom/mojang/datafixers/types/templates/TypeTemplate; net/minecraft/util/datafix/schemas/V1451/lambda$registerBlockEntities$0 (Lcom/mojang/datafixers/schemas/Schema;)Lcom/mojang/datafixers/types/templates/TypeTemplate; +MD: net/minecraft/util/datafix/schemas/V1451/registerBlockEntities (Lcom/mojang/datafixers/schemas/Schema;)Ljava/util/Map; net/minecraft/util/datafix/schemas/V1451/registerBlockEntities (Lcom/mojang/datafixers/schemas/Schema;)Ljava/util/Map; +MD: net/minecraft/util/datafix/schemas/V1451_1/ (ILcom/mojang/datafixers/schemas/Schema;)V net/minecraft/util/datafix/schemas/V1451_1/ (ILcom/mojang/datafixers/schemas/Schema;)V +MD: net/minecraft/util/datafix/schemas/V1451_1/m_17429_ (Lcom/mojang/datafixers/schemas/Schema;)Lcom/mojang/datafixers/types/templates/TypeTemplate; net/minecraft/util/datafix/schemas/V1451_1/lambda$registerTypes$0 (Lcom/mojang/datafixers/schemas/Schema;)Lcom/mojang/datafixers/types/templates/TypeTemplate; +MD: net/minecraft/util/datafix/schemas/V1451_1/registerTypes (Lcom/mojang/datafixers/schemas/Schema;Ljava/util/Map;Ljava/util/Map;)V net/minecraft/util/datafix/schemas/V1451_1/registerTypes (Lcom/mojang/datafixers/schemas/Schema;Ljava/util/Map;Ljava/util/Map;)V +MD: net/minecraft/util/datafix/schemas/V1451_2/ (ILcom/mojang/datafixers/schemas/Schema;)V net/minecraft/util/datafix/schemas/V1451_2/ (ILcom/mojang/datafixers/schemas/Schema;)V +MD: net/minecraft/util/datafix/schemas/V1451_2/m_17438_ (Lcom/mojang/datafixers/schemas/Schema;Ljava/lang/String;)Lcom/mojang/datafixers/types/templates/TypeTemplate; net/minecraft/util/datafix/schemas/V1451_2/lambda$registerBlockEntities$0 (Lcom/mojang/datafixers/schemas/Schema;Ljava/lang/String;)Lcom/mojang/datafixers/types/templates/TypeTemplate; +MD: net/minecraft/util/datafix/schemas/V1451_2/registerBlockEntities (Lcom/mojang/datafixers/schemas/Schema;)Ljava/util/Map; net/minecraft/util/datafix/schemas/V1451_2/registerBlockEntities (Lcom/mojang/datafixers/schemas/Schema;)Ljava/util/Map; +MD: net/minecraft/util/datafix/schemas/V1451_3/ (ILcom/mojang/datafixers/schemas/Schema;)V net/minecraft/util/datafix/schemas/V1451_3/ (ILcom/mojang/datafixers/schemas/Schema;)V +MD: net/minecraft/util/datafix/schemas/V1451_3/m_17446_ (Lcom/mojang/datafixers/schemas/Schema;)Lcom/mojang/datafixers/types/templates/TypeTemplate; net/minecraft/util/datafix/schemas/V1451_3/lambda$registerEntities$11 (Lcom/mojang/datafixers/schemas/Schema;)Lcom/mojang/datafixers/types/templates/TypeTemplate; +MD: net/minecraft/util/datafix/schemas/V1451_3/m_17448_ (Lcom/mojang/datafixers/schemas/Schema;Ljava/lang/String;)Lcom/mojang/datafixers/types/templates/TypeTemplate; net/minecraft/util/datafix/schemas/V1451_3/lambda$registerEntities$0 (Lcom/mojang/datafixers/schemas/Schema;Ljava/lang/String;)Lcom/mojang/datafixers/types/templates/TypeTemplate; +MD: net/minecraft/util/datafix/schemas/V1451_3/m_17451_ (Lcom/mojang/datafixers/schemas/Schema;)Lcom/mojang/datafixers/types/templates/TypeTemplate; net/minecraft/util/datafix/schemas/V1451_3/lambda$registerEntities$10 (Lcom/mojang/datafixers/schemas/Schema;)Lcom/mojang/datafixers/types/templates/TypeTemplate; +MD: net/minecraft/util/datafix/schemas/V1451_3/m_17453_ (Lcom/mojang/datafixers/schemas/Schema;)Lcom/mojang/datafixers/types/templates/TypeTemplate; net/minecraft/util/datafix/schemas/V1451_3/lambda$registerEntities$9 (Lcom/mojang/datafixers/schemas/Schema;)Lcom/mojang/datafixers/types/templates/TypeTemplate; +MD: net/minecraft/util/datafix/schemas/V1451_3/m_17455_ (Lcom/mojang/datafixers/schemas/Schema;)Lcom/mojang/datafixers/types/templates/TypeTemplate; net/minecraft/util/datafix/schemas/V1451_3/lambda$registerEntities$8 (Lcom/mojang/datafixers/schemas/Schema;)Lcom/mojang/datafixers/types/templates/TypeTemplate; +MD: net/minecraft/util/datafix/schemas/V1451_3/m_17457_ (Lcom/mojang/datafixers/schemas/Schema;)Lcom/mojang/datafixers/types/templates/TypeTemplate; net/minecraft/util/datafix/schemas/V1451_3/lambda$registerEntities$7 (Lcom/mojang/datafixers/schemas/Schema;)Lcom/mojang/datafixers/types/templates/TypeTemplate; +MD: net/minecraft/util/datafix/schemas/V1451_3/m_17459_ (Lcom/mojang/datafixers/schemas/Schema;)Lcom/mojang/datafixers/types/templates/TypeTemplate; net/minecraft/util/datafix/schemas/V1451_3/lambda$registerEntities$6 (Lcom/mojang/datafixers/schemas/Schema;)Lcom/mojang/datafixers/types/templates/TypeTemplate; +MD: net/minecraft/util/datafix/schemas/V1451_3/m_17461_ (Lcom/mojang/datafixers/schemas/Schema;)Lcom/mojang/datafixers/types/templates/TypeTemplate; net/minecraft/util/datafix/schemas/V1451_3/lambda$registerEntities$5 (Lcom/mojang/datafixers/schemas/Schema;)Lcom/mojang/datafixers/types/templates/TypeTemplate; +MD: net/minecraft/util/datafix/schemas/V1451_3/m_17463_ (Lcom/mojang/datafixers/schemas/Schema;)Lcom/mojang/datafixers/types/templates/TypeTemplate; net/minecraft/util/datafix/schemas/V1451_3/lambda$registerEntities$4 (Lcom/mojang/datafixers/schemas/Schema;)Lcom/mojang/datafixers/types/templates/TypeTemplate; +MD: net/minecraft/util/datafix/schemas/V1451_3/m_17465_ (Lcom/mojang/datafixers/schemas/Schema;)Lcom/mojang/datafixers/types/templates/TypeTemplate; net/minecraft/util/datafix/schemas/V1451_3/lambda$registerEntities$3 (Lcom/mojang/datafixers/schemas/Schema;)Lcom/mojang/datafixers/types/templates/TypeTemplate; +MD: net/minecraft/util/datafix/schemas/V1451_3/m_17467_ (Lcom/mojang/datafixers/schemas/Schema;)Lcom/mojang/datafixers/types/templates/TypeTemplate; net/minecraft/util/datafix/schemas/V1451_3/lambda$registerEntities$2 (Lcom/mojang/datafixers/schemas/Schema;)Lcom/mojang/datafixers/types/templates/TypeTemplate; +MD: net/minecraft/util/datafix/schemas/V1451_3/m_17469_ (Lcom/mojang/datafixers/schemas/Schema;)Lcom/mojang/datafixers/types/templates/TypeTemplate; net/minecraft/util/datafix/schemas/V1451_3/lambda$registerEntities$1 (Lcom/mojang/datafixers/schemas/Schema;)Lcom/mojang/datafixers/types/templates/TypeTemplate; +MD: net/minecraft/util/datafix/schemas/V1451_3/registerEntities (Lcom/mojang/datafixers/schemas/Schema;)Ljava/util/Map; net/minecraft/util/datafix/schemas/V1451_3/registerEntities (Lcom/mojang/datafixers/schemas/Schema;)Ljava/util/Map; +MD: net/minecraft/util/datafix/schemas/V1451_4/ (ILcom/mojang/datafixers/schemas/Schema;)V net/minecraft/util/datafix/schemas/V1451_4/ (ILcom/mojang/datafixers/schemas/Schema;)V +MD: net/minecraft/util/datafix/schemas/V1451_4/m_17521_ ()Lcom/mojang/datafixers/types/templates/TypeTemplate; net/minecraft/util/datafix/schemas/V1451_4/lambda$registerTypes$0 ()Lcom/mojang/datafixers/types/templates/TypeTemplate; +MD: net/minecraft/util/datafix/schemas/V1451_4/registerTypes (Lcom/mojang/datafixers/schemas/Schema;Ljava/util/Map;Ljava/util/Map;)V net/minecraft/util/datafix/schemas/V1451_4/registerTypes (Lcom/mojang/datafixers/schemas/Schema;Ljava/util/Map;Ljava/util/Map;)V +MD: net/minecraft/util/datafix/schemas/V1451_5/ (ILcom/mojang/datafixers/schemas/Schema;)V net/minecraft/util/datafix/schemas/V1451_5/ (ILcom/mojang/datafixers/schemas/Schema;)V +MD: net/minecraft/util/datafix/schemas/V1451_5/registerBlockEntities (Lcom/mojang/datafixers/schemas/Schema;)Ljava/util/Map; net/minecraft/util/datafix/schemas/V1451_5/registerBlockEntities (Lcom/mojang/datafixers/schemas/Schema;)Ljava/util/Map; +MD: net/minecraft/util/datafix/schemas/V1451_6/ ()V net/minecraft/util/datafix/schemas/V1451_6/ ()V +MD: net/minecraft/util/datafix/schemas/V1451_6/ (ILcom/mojang/datafixers/schemas/Schema;)V net/minecraft/util/datafix/schemas/V1451_6/ (ILcom/mojang/datafixers/schemas/Schema;)V +MD: net/minecraft/util/datafix/schemas/V1451_6/m_17534_ (Lcom/mojang/datafixers/schemas/Schema;)Lcom/mojang/datafixers/types/templates/TypeTemplate; net/minecraft/util/datafix/schemas/V1451_6/lambda$registerTypes$0 (Lcom/mojang/datafixers/schemas/Schema;)Lcom/mojang/datafixers/types/templates/TypeTemplate; +MD: net/minecraft/util/datafix/schemas/V1451_6/m_17536_ (Lcom/mojang/datafixers/schemas/Schema;Ljava/util/function/Supplier;)Lcom/mojang/datafixers/types/templates/TypeTemplate; net/minecraft/util/datafix/schemas/V1451_6/lambda$registerTypes$1 (Lcom/mojang/datafixers/schemas/Schema;Ljava/util/function/Supplier;)Lcom/mojang/datafixers/types/templates/TypeTemplate; +MD: net/minecraft/util/datafix/schemas/V1451_6/m_181077_ (Lcom/mojang/datafixers/schemas/Schema;)Ljava/util/Map; net/minecraft/util/datafix/schemas/V1451_6/createCriterionTypes (Lcom/mojang/datafixers/schemas/Schema;)Ljava/util/Map; +MD: net/minecraft/util/datafix/schemas/V1451_6/m_181079_ (Ljava/util/Map;)Lcom/mojang/datafixers/types/templates/TypeTemplate; net/minecraft/util/datafix/schemas/V1451_6/lambda$registerTypes$2 (Ljava/util/Map;)Lcom/mojang/datafixers/types/templates/TypeTemplate; +MD: net/minecraft/util/datafix/schemas/V1451_6/m_181081_ ()Lcom/mojang/datafixers/types/templates/TypeTemplate; net/minecraft/util/datafix/schemas/V1451_6/lambda$createCriterionTypes$7 ()Lcom/mojang/datafixers/types/templates/TypeTemplate; +MD: net/minecraft/util/datafix/schemas/V1451_6/m_181082_ (Lcom/mojang/datafixers/schemas/Schema;)Lcom/mojang/datafixers/types/templates/TypeTemplate; net/minecraft/util/datafix/schemas/V1451_6/lambda$createCriterionTypes$5 (Lcom/mojang/datafixers/schemas/Schema;)Lcom/mojang/datafixers/types/templates/TypeTemplate; +MD: net/minecraft/util/datafix/schemas/V1451_6/m_181084_ ()Lcom/mojang/datafixers/types/templates/TypeTemplate; net/minecraft/util/datafix/schemas/V1451_6/lambda$createCriterionTypes$6 ()Lcom/mojang/datafixers/types/templates/TypeTemplate; +MD: net/minecraft/util/datafix/schemas/V1451_6/m_181085_ (Lcom/mojang/datafixers/schemas/Schema;)Lcom/mojang/datafixers/types/templates/TypeTemplate; net/minecraft/util/datafix/schemas/V1451_6/lambda$createCriterionTypes$4 (Lcom/mojang/datafixers/schemas/Schema;)Lcom/mojang/datafixers/types/templates/TypeTemplate; +MD: net/minecraft/util/datafix/schemas/V1451_6/m_181087_ (Lcom/mojang/datafixers/schemas/Schema;)Lcom/mojang/datafixers/types/templates/TypeTemplate; net/minecraft/util/datafix/schemas/V1451_6/lambda$createCriterionTypes$3 (Lcom/mojang/datafixers/schemas/Schema;)Lcom/mojang/datafixers/types/templates/TypeTemplate; +MD: net/minecraft/util/datafix/schemas/V1451_6/registerTypes (Lcom/mojang/datafixers/schemas/Schema;Ljava/util/Map;Ljava/util/Map;)V net/minecraft/util/datafix/schemas/V1451_6/registerTypes (Lcom/mojang/datafixers/schemas/Schema;Ljava/util/Map;Ljava/util/Map;)V +MD: net/minecraft/util/datafix/schemas/V1451_6$1/ ()V net/minecraft/util/datafix/schemas/V1451_6$1/ ()V +MD: net/minecraft/util/datafix/schemas/V1451_6$1/apply (Lcom/mojang/serialization/DynamicOps;Ljava/lang/Object;)Ljava/lang/Object; net/minecraft/util/datafix/schemas/V1451_6$1/apply (Lcom/mojang/serialization/DynamicOps;Ljava/lang/Object;)Ljava/lang/Object; +MD: net/minecraft/util/datafix/schemas/V1451_6$1/m_181090_ (Lcom/mojang/serialization/Dynamic;Lcom/mojang/datafixers/util/Pair;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/schemas/V1451_6$1/lambda$apply$1 (Lcom/mojang/serialization/Dynamic;Lcom/mojang/datafixers/util/Pair;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/schemas/V1451_6$1/m_181093_ (Ljava/lang/String;)Lcom/mojang/datafixers/util/Pair; net/minecraft/util/datafix/schemas/V1451_6$1/lambda$apply$0 (Ljava/lang/String;)Lcom/mojang/datafixers/util/Pair; +MD: net/minecraft/util/datafix/schemas/V1451_6$2/ ()V net/minecraft/util/datafix/schemas/V1451_6$2/ ()V +MD: net/minecraft/util/datafix/schemas/V1451_6$2/apply (Lcom/mojang/serialization/DynamicOps;Ljava/lang/Object;)Ljava/lang/Object; net/minecraft/util/datafix/schemas/V1451_6$2/apply (Lcom/mojang/serialization/DynamicOps;Ljava/lang/Object;)Ljava/lang/Object; +MD: net/minecraft/util/datafix/schemas/V1451_6$2/m_181099_ (Lcom/mojang/serialization/Dynamic;Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/schemas/V1451_6$2/lambda$apply$1 (Lcom/mojang/serialization/Dynamic;Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/schemas/V1451_6$2/m_181102_ (Ljava/lang/String;)Ljava/lang/String; net/minecraft/util/datafix/schemas/V1451_6$2/packWithDot (Ljava/lang/String;)Ljava/lang/String; +MD: net/minecraft/util/datafix/schemas/V1451_6$2/m_181107_ (Lcom/mojang/serialization/Dynamic;Lcom/mojang/serialization/Dynamic;)Ljava/util/Optional; net/minecraft/util/datafix/schemas/V1451_6$2/lambda$apply$0 (Lcom/mojang/serialization/Dynamic;Lcom/mojang/serialization/Dynamic;)Ljava/util/Optional; +MD: net/minecraft/util/datafix/schemas/V1460/ (ILcom/mojang/datafixers/schemas/Schema;)V net/minecraft/util/datafix/schemas/V1460/ (ILcom/mojang/datafixers/schemas/Schema;)V +MD: net/minecraft/util/datafix/schemas/V1460/m_17555_ (Lcom/mojang/datafixers/schemas/Schema;)Lcom/mojang/datafixers/types/templates/TypeTemplate; net/minecraft/util/datafix/schemas/V1460/lambda$registerTypes$42 (Lcom/mojang/datafixers/schemas/Schema;)Lcom/mojang/datafixers/types/templates/TypeTemplate; +MD: net/minecraft/util/datafix/schemas/V1460/m_17557_ (Lcom/mojang/datafixers/schemas/Schema;Ljava/lang/String;)Lcom/mojang/datafixers/types/templates/TypeTemplate; net/minecraft/util/datafix/schemas/V1460/lambda$registerBlockEntities$26 (Lcom/mojang/datafixers/schemas/Schema;Ljava/lang/String;)Lcom/mojang/datafixers/types/templates/TypeTemplate; +MD: net/minecraft/util/datafix/schemas/V1460/m_17560_ (Lcom/mojang/datafixers/schemas/Schema;Ljava/util/Map;Ljava/lang/String;)V net/minecraft/util/datafix/schemas/V1460/registerMob (Lcom/mojang/datafixers/schemas/Schema;Ljava/util/Map;Ljava/lang/String;)V +MD: net/minecraft/util/datafix/schemas/V1460/m_17564_ (Lcom/mojang/datafixers/schemas/Schema;Ljava/util/function/Supplier;)Lcom/mojang/datafixers/types/templates/TypeTemplate; net/minecraft/util/datafix/schemas/V1460/lambda$registerTypes$39 (Lcom/mojang/datafixers/schemas/Schema;Ljava/util/function/Supplier;)Lcom/mojang/datafixers/types/templates/TypeTemplate; +MD: net/minecraft/util/datafix/schemas/V1460/m_17567_ (Ljava/util/Map;)Lcom/mojang/datafixers/types/templates/TypeTemplate; net/minecraft/util/datafix/schemas/V1460/lambda$registerTypes$32 (Ljava/util/Map;)Lcom/mojang/datafixers/types/templates/TypeTemplate; +MD: net/minecraft/util/datafix/schemas/V1460/m_17569_ ()Lcom/mojang/datafixers/types/templates/TypeTemplate; net/minecraft/util/datafix/schemas/V1460/lambda$registerTypes$44 ()Lcom/mojang/datafixers/types/templates/TypeTemplate; +MD: net/minecraft/util/datafix/schemas/V1460/m_17572_ (Lcom/mojang/datafixers/schemas/Schema;Ljava/lang/String;)Lcom/mojang/datafixers/types/templates/TypeTemplate; net/minecraft/util/datafix/schemas/V1460/lambda$registerBlockEntities$25 (Lcom/mojang/datafixers/schemas/Schema;Ljava/lang/String;)Lcom/mojang/datafixers/types/templates/TypeTemplate; +MD: net/minecraft/util/datafix/schemas/V1460/m_17575_ (Lcom/mojang/datafixers/schemas/Schema;Ljava/util/Map;Ljava/lang/String;)V net/minecraft/util/datafix/schemas/V1460/registerInventory (Lcom/mojang/datafixers/schemas/Schema;Ljava/util/Map;Ljava/lang/String;)V +MD: net/minecraft/util/datafix/schemas/V1460/m_17579_ (Ljava/util/Map;)Lcom/mojang/datafixers/types/templates/TypeTemplate; net/minecraft/util/datafix/schemas/V1460/lambda$registerTypes$30 (Ljava/util/Map;)Lcom/mojang/datafixers/types/templates/TypeTemplate; +MD: net/minecraft/util/datafix/schemas/V1460/m_17584_ (Lcom/mojang/datafixers/schemas/Schema;Ljava/lang/String;)Lcom/mojang/datafixers/types/templates/TypeTemplate; net/minecraft/util/datafix/schemas/V1460/lambda$registerBlockEntities$24 (Lcom/mojang/datafixers/schemas/Schema;Ljava/lang/String;)Lcom/mojang/datafixers/types/templates/TypeTemplate; +MD: net/minecraft/util/datafix/schemas/V1460/m_17587_ ()Lcom/mojang/datafixers/types/templates/TypeTemplate; net/minecraft/util/datafix/schemas/V1460/lambda$registerTypes$37 ()Lcom/mojang/datafixers/types/templates/TypeTemplate; +MD: net/minecraft/util/datafix/schemas/V1460/m_17588_ (Lcom/mojang/datafixers/schemas/Schema;)Lcom/mojang/datafixers/types/templates/TypeTemplate; net/minecraft/util/datafix/schemas/V1460/lambda$registerTypes$40 (Lcom/mojang/datafixers/schemas/Schema;)Lcom/mojang/datafixers/types/templates/TypeTemplate; +MD: net/minecraft/util/datafix/schemas/V1460/m_17590_ (Lcom/mojang/datafixers/schemas/Schema;Ljava/lang/String;)Lcom/mojang/datafixers/types/templates/TypeTemplate; net/minecraft/util/datafix/schemas/V1460/lambda$registerEntities$23 (Lcom/mojang/datafixers/schemas/Schema;Ljava/lang/String;)Lcom/mojang/datafixers/types/templates/TypeTemplate; +MD: net/minecraft/util/datafix/schemas/V1460/m_17593_ ()Lcom/mojang/datafixers/types/templates/TypeTemplate; net/minecraft/util/datafix/schemas/V1460/lambda$registerTypes$36 ()Lcom/mojang/datafixers/types/templates/TypeTemplate; +MD: net/minecraft/util/datafix/schemas/V1460/m_17594_ (Lcom/mojang/datafixers/schemas/Schema;)Lcom/mojang/datafixers/types/templates/TypeTemplate; net/minecraft/util/datafix/schemas/V1460/lambda$registerTypes$38 (Lcom/mojang/datafixers/schemas/Schema;)Lcom/mojang/datafixers/types/templates/TypeTemplate; +MD: net/minecraft/util/datafix/schemas/V1460/m_17596_ (Lcom/mojang/datafixers/schemas/Schema;Ljava/lang/String;)Lcom/mojang/datafixers/types/templates/TypeTemplate; net/minecraft/util/datafix/schemas/V1460/lambda$registerEntities$22 (Lcom/mojang/datafixers/schemas/Schema;Ljava/lang/String;)Lcom/mojang/datafixers/types/templates/TypeTemplate; +MD: net/minecraft/util/datafix/schemas/V1460/m_17599_ ()Lcom/mojang/datafixers/types/templates/TypeTemplate; net/minecraft/util/datafix/schemas/V1460/lambda$registerTypes$27 ()Lcom/mojang/datafixers/types/templates/TypeTemplate; +MD: net/minecraft/util/datafix/schemas/V1460/m_17600_ (Lcom/mojang/datafixers/schemas/Schema;)Lcom/mojang/datafixers/types/templates/TypeTemplate; net/minecraft/util/datafix/schemas/V1460/lambda$registerTypes$35 (Lcom/mojang/datafixers/schemas/Schema;)Lcom/mojang/datafixers/types/templates/TypeTemplate; +MD: net/minecraft/util/datafix/schemas/V1460/m_17602_ (Lcom/mojang/datafixers/schemas/Schema;Ljava/lang/String;)Lcom/mojang/datafixers/types/templates/TypeTemplate; net/minecraft/util/datafix/schemas/V1460/lambda$registerEntities$21 (Lcom/mojang/datafixers/schemas/Schema;Ljava/lang/String;)Lcom/mojang/datafixers/types/templates/TypeTemplate; +MD: net/minecraft/util/datafix/schemas/V1460/m_17605_ (Lcom/mojang/datafixers/schemas/Schema;)Lcom/mojang/datafixers/types/templates/TypeTemplate; net/minecraft/util/datafix/schemas/V1460/lambda$registerTypes$34 (Lcom/mojang/datafixers/schemas/Schema;)Lcom/mojang/datafixers/types/templates/TypeTemplate; +MD: net/minecraft/util/datafix/schemas/V1460/m_17607_ (Lcom/mojang/datafixers/schemas/Schema;Ljava/lang/String;)Lcom/mojang/datafixers/types/templates/TypeTemplate; net/minecraft/util/datafix/schemas/V1460/lambda$registerEntities$20 (Lcom/mojang/datafixers/schemas/Schema;Ljava/lang/String;)Lcom/mojang/datafixers/types/templates/TypeTemplate; +MD: net/minecraft/util/datafix/schemas/V1460/m_17610_ (Lcom/mojang/datafixers/schemas/Schema;)Lcom/mojang/datafixers/types/templates/TypeTemplate; net/minecraft/util/datafix/schemas/V1460/lambda$registerTypes$33 (Lcom/mojang/datafixers/schemas/Schema;)Lcom/mojang/datafixers/types/templates/TypeTemplate; +MD: net/minecraft/util/datafix/schemas/V1460/m_17612_ (Lcom/mojang/datafixers/schemas/Schema;Ljava/lang/String;)Lcom/mojang/datafixers/types/templates/TypeTemplate; net/minecraft/util/datafix/schemas/V1460/lambda$registerEntities$19 (Lcom/mojang/datafixers/schemas/Schema;Ljava/lang/String;)Lcom/mojang/datafixers/types/templates/TypeTemplate; +MD: net/minecraft/util/datafix/schemas/V1460/m_17615_ (Lcom/mojang/datafixers/schemas/Schema;)Lcom/mojang/datafixers/types/templates/TypeTemplate; net/minecraft/util/datafix/schemas/V1460/lambda$registerTypes$31 (Lcom/mojang/datafixers/schemas/Schema;)Lcom/mojang/datafixers/types/templates/TypeTemplate; +MD: net/minecraft/util/datafix/schemas/V1460/m_17617_ (Lcom/mojang/datafixers/schemas/Schema;Ljava/lang/String;)Lcom/mojang/datafixers/types/templates/TypeTemplate; net/minecraft/util/datafix/schemas/V1460/lambda$registerEntities$18 (Lcom/mojang/datafixers/schemas/Schema;Ljava/lang/String;)Lcom/mojang/datafixers/types/templates/TypeTemplate; +MD: net/minecraft/util/datafix/schemas/V1460/m_17620_ (Lcom/mojang/datafixers/schemas/Schema;)Lcom/mojang/datafixers/types/templates/TypeTemplate; net/minecraft/util/datafix/schemas/V1460/lambda$registerTypes$29 (Lcom/mojang/datafixers/schemas/Schema;)Lcom/mojang/datafixers/types/templates/TypeTemplate; +MD: net/minecraft/util/datafix/schemas/V1460/m_17622_ (Lcom/mojang/datafixers/schemas/Schema;Ljava/lang/String;)Lcom/mojang/datafixers/types/templates/TypeTemplate; net/minecraft/util/datafix/schemas/V1460/lambda$registerEntities$17 (Lcom/mojang/datafixers/schemas/Schema;Ljava/lang/String;)Lcom/mojang/datafixers/types/templates/TypeTemplate; +MD: net/minecraft/util/datafix/schemas/V1460/m_17625_ (Lcom/mojang/datafixers/schemas/Schema;)Lcom/mojang/datafixers/types/templates/TypeTemplate; net/minecraft/util/datafix/schemas/V1460/lambda$registerTypes$28 (Lcom/mojang/datafixers/schemas/Schema;)Lcom/mojang/datafixers/types/templates/TypeTemplate; +MD: net/minecraft/util/datafix/schemas/V1460/m_17627_ (Lcom/mojang/datafixers/schemas/Schema;Ljava/lang/String;)Lcom/mojang/datafixers/types/templates/TypeTemplate; net/minecraft/util/datafix/schemas/V1460/lambda$registerEntities$16 (Lcom/mojang/datafixers/schemas/Schema;Ljava/lang/String;)Lcom/mojang/datafixers/types/templates/TypeTemplate; +MD: net/minecraft/util/datafix/schemas/V1460/m_17630_ (Lcom/mojang/datafixers/schemas/Schema;)Lcom/mojang/datafixers/types/templates/TypeTemplate; net/minecraft/util/datafix/schemas/V1460/lambda$registerInventory$1 (Lcom/mojang/datafixers/schemas/Schema;)Lcom/mojang/datafixers/types/templates/TypeTemplate; +MD: net/minecraft/util/datafix/schemas/V1460/m_17632_ (Lcom/mojang/datafixers/schemas/Schema;Ljava/lang/String;)Lcom/mojang/datafixers/types/templates/TypeTemplate; net/minecraft/util/datafix/schemas/V1460/lambda$registerEntities$15 (Lcom/mojang/datafixers/schemas/Schema;Ljava/lang/String;)Lcom/mojang/datafixers/types/templates/TypeTemplate; +MD: net/minecraft/util/datafix/schemas/V1460/m_17635_ (Lcom/mojang/datafixers/schemas/Schema;)Lcom/mojang/datafixers/types/templates/TypeTemplate; net/minecraft/util/datafix/schemas/V1460/lambda$registerMob$0 (Lcom/mojang/datafixers/schemas/Schema;)Lcom/mojang/datafixers/types/templates/TypeTemplate; +MD: net/minecraft/util/datafix/schemas/V1460/m_17637_ (Lcom/mojang/datafixers/schemas/Schema;Ljava/lang/String;)Lcom/mojang/datafixers/types/templates/TypeTemplate; net/minecraft/util/datafix/schemas/V1460/lambda$registerEntities$14 (Lcom/mojang/datafixers/schemas/Schema;Ljava/lang/String;)Lcom/mojang/datafixers/types/templates/TypeTemplate; +MD: net/minecraft/util/datafix/schemas/V1460/m_17640_ (Lcom/mojang/datafixers/schemas/Schema;Ljava/lang/String;)Lcom/mojang/datafixers/types/templates/TypeTemplate; net/minecraft/util/datafix/schemas/V1460/lambda$registerEntities$13 (Lcom/mojang/datafixers/schemas/Schema;Ljava/lang/String;)Lcom/mojang/datafixers/types/templates/TypeTemplate; +MD: net/minecraft/util/datafix/schemas/V1460/m_17643_ (Lcom/mojang/datafixers/schemas/Schema;Ljava/lang/String;)Lcom/mojang/datafixers/types/templates/TypeTemplate; net/minecraft/util/datafix/schemas/V1460/lambda$registerEntities$12 (Lcom/mojang/datafixers/schemas/Schema;Ljava/lang/String;)Lcom/mojang/datafixers/types/templates/TypeTemplate; +MD: net/minecraft/util/datafix/schemas/V1460/m_17646_ (Lcom/mojang/datafixers/schemas/Schema;Ljava/lang/String;)Lcom/mojang/datafixers/types/templates/TypeTemplate; net/minecraft/util/datafix/schemas/V1460/lambda$registerEntities$11 (Lcom/mojang/datafixers/schemas/Schema;Ljava/lang/String;)Lcom/mojang/datafixers/types/templates/TypeTemplate; +MD: net/minecraft/util/datafix/schemas/V1460/m_17649_ (Lcom/mojang/datafixers/schemas/Schema;Ljava/lang/String;)Lcom/mojang/datafixers/types/templates/TypeTemplate; net/minecraft/util/datafix/schemas/V1460/lambda$registerEntities$10 (Lcom/mojang/datafixers/schemas/Schema;Ljava/lang/String;)Lcom/mojang/datafixers/types/templates/TypeTemplate; +MD: net/minecraft/util/datafix/schemas/V1460/m_17652_ (Lcom/mojang/datafixers/schemas/Schema;Ljava/lang/String;)Lcom/mojang/datafixers/types/templates/TypeTemplate; net/minecraft/util/datafix/schemas/V1460/lambda$registerEntities$9 (Lcom/mojang/datafixers/schemas/Schema;Ljava/lang/String;)Lcom/mojang/datafixers/types/templates/TypeTemplate; +MD: net/minecraft/util/datafix/schemas/V1460/m_17663_ (Lcom/mojang/datafixers/schemas/Schema;Ljava/lang/String;)Lcom/mojang/datafixers/types/templates/TypeTemplate; net/minecraft/util/datafix/schemas/V1460/lambda$registerEntities$8 (Lcom/mojang/datafixers/schemas/Schema;Ljava/lang/String;)Lcom/mojang/datafixers/types/templates/TypeTemplate; +MD: net/minecraft/util/datafix/schemas/V1460/m_17666_ (Lcom/mojang/datafixers/schemas/Schema;Ljava/lang/String;)Lcom/mojang/datafixers/types/templates/TypeTemplate; net/minecraft/util/datafix/schemas/V1460/lambda$registerEntities$7 (Lcom/mojang/datafixers/schemas/Schema;Ljava/lang/String;)Lcom/mojang/datafixers/types/templates/TypeTemplate; +MD: net/minecraft/util/datafix/schemas/V1460/m_17669_ (Lcom/mojang/datafixers/schemas/Schema;Ljava/lang/String;)Lcom/mojang/datafixers/types/templates/TypeTemplate; net/minecraft/util/datafix/schemas/V1460/lambda$registerEntities$6 (Lcom/mojang/datafixers/schemas/Schema;Ljava/lang/String;)Lcom/mojang/datafixers/types/templates/TypeTemplate; +MD: net/minecraft/util/datafix/schemas/V1460/m_17672_ (Lcom/mojang/datafixers/schemas/Schema;Ljava/lang/String;)Lcom/mojang/datafixers/types/templates/TypeTemplate; net/minecraft/util/datafix/schemas/V1460/lambda$registerEntities$5 (Lcom/mojang/datafixers/schemas/Schema;Ljava/lang/String;)Lcom/mojang/datafixers/types/templates/TypeTemplate; +MD: net/minecraft/util/datafix/schemas/V1460/m_17675_ (Lcom/mojang/datafixers/schemas/Schema;Ljava/lang/String;)Lcom/mojang/datafixers/types/templates/TypeTemplate; net/minecraft/util/datafix/schemas/V1460/lambda$registerEntities$4 (Lcom/mojang/datafixers/schemas/Schema;Ljava/lang/String;)Lcom/mojang/datafixers/types/templates/TypeTemplate; +MD: net/minecraft/util/datafix/schemas/V1460/m_17678_ (Lcom/mojang/datafixers/schemas/Schema;Ljava/lang/String;)Lcom/mojang/datafixers/types/templates/TypeTemplate; net/minecraft/util/datafix/schemas/V1460/lambda$registerEntities$3 (Lcom/mojang/datafixers/schemas/Schema;Ljava/lang/String;)Lcom/mojang/datafixers/types/templates/TypeTemplate; +MD: net/minecraft/util/datafix/schemas/V1460/m_17681_ (Lcom/mojang/datafixers/schemas/Schema;Ljava/lang/String;)Lcom/mojang/datafixers/types/templates/TypeTemplate; net/minecraft/util/datafix/schemas/V1460/lambda$registerEntities$2 (Lcom/mojang/datafixers/schemas/Schema;Ljava/lang/String;)Lcom/mojang/datafixers/types/templates/TypeTemplate; +MD: net/minecraft/util/datafix/schemas/V1460/m_181110_ (Lcom/mojang/datafixers/schemas/Schema;)Lcom/mojang/datafixers/types/templates/TypeTemplate; net/minecraft/util/datafix/schemas/V1460/lambda$registerTypes$46 (Lcom/mojang/datafixers/schemas/Schema;)Lcom/mojang/datafixers/types/templates/TypeTemplate; +MD: net/minecraft/util/datafix/schemas/V1460/m_181112_ (Ljava/util/Map;)Lcom/mojang/datafixers/types/templates/TypeTemplate; net/minecraft/util/datafix/schemas/V1460/lambda$registerTypes$41 (Ljava/util/Map;)Lcom/mojang/datafixers/types/templates/TypeTemplate; +MD: net/minecraft/util/datafix/schemas/V1460/m_181114_ ()Lcom/mojang/datafixers/types/templates/TypeTemplate; net/minecraft/util/datafix/schemas/V1460/lambda$registerTypes$45 ()Lcom/mojang/datafixers/types/templates/TypeTemplate; +MD: net/minecraft/util/datafix/schemas/V1460/m_181115_ (Lcom/mojang/datafixers/schemas/Schema;)Lcom/mojang/datafixers/types/templates/TypeTemplate; net/minecraft/util/datafix/schemas/V1460/lambda$registerTypes$43 (Lcom/mojang/datafixers/schemas/Schema;)Lcom/mojang/datafixers/types/templates/TypeTemplate; +MD: net/minecraft/util/datafix/schemas/V1460/registerBlockEntities (Lcom/mojang/datafixers/schemas/Schema;)Ljava/util/Map; net/minecraft/util/datafix/schemas/V1460/registerBlockEntities (Lcom/mojang/datafixers/schemas/Schema;)Ljava/util/Map; +MD: net/minecraft/util/datafix/schemas/V1460/registerEntities (Lcom/mojang/datafixers/schemas/Schema;)Ljava/util/Map; net/minecraft/util/datafix/schemas/V1460/registerEntities (Lcom/mojang/datafixers/schemas/Schema;)Ljava/util/Map; +MD: net/minecraft/util/datafix/schemas/V1460/registerTypes (Lcom/mojang/datafixers/schemas/Schema;Ljava/util/Map;Ljava/util/Map;)V net/minecraft/util/datafix/schemas/V1460/registerTypes (Lcom/mojang/datafixers/schemas/Schema;Ljava/util/Map;Ljava/util/Map;)V +MD: net/minecraft/util/datafix/schemas/V1466/ (ILcom/mojang/datafixers/schemas/Schema;)V net/minecraft/util/datafix/schemas/V1466/ (ILcom/mojang/datafixers/schemas/Schema;)V +MD: net/minecraft/util/datafix/schemas/V1466/m_17689_ (Lcom/mojang/datafixers/schemas/Schema;)Lcom/mojang/datafixers/types/templates/TypeTemplate; net/minecraft/util/datafix/schemas/V1466/lambda$registerTypes$0 (Lcom/mojang/datafixers/schemas/Schema;)Lcom/mojang/datafixers/types/templates/TypeTemplate; +MD: net/minecraft/util/datafix/schemas/V1466/registerBlockEntities (Lcom/mojang/datafixers/schemas/Schema;)Ljava/util/Map; net/minecraft/util/datafix/schemas/V1466/registerBlockEntities (Lcom/mojang/datafixers/schemas/Schema;)Ljava/util/Map; +MD: net/minecraft/util/datafix/schemas/V1466/registerTypes (Lcom/mojang/datafixers/schemas/Schema;Ljava/util/Map;Ljava/util/Map;)V net/minecraft/util/datafix/schemas/V1466/registerTypes (Lcom/mojang/datafixers/schemas/Schema;Ljava/util/Map;Ljava/util/Map;)V +MD: net/minecraft/util/datafix/schemas/V1470/ (ILcom/mojang/datafixers/schemas/Schema;)V net/minecraft/util/datafix/schemas/V1470/ (ILcom/mojang/datafixers/schemas/Schema;)V +MD: net/minecraft/util/datafix/schemas/V1470/m_17700_ (Lcom/mojang/datafixers/schemas/Schema;)Lcom/mojang/datafixers/types/templates/TypeTemplate; net/minecraft/util/datafix/schemas/V1470/lambda$registerMob$0 (Lcom/mojang/datafixers/schemas/Schema;)Lcom/mojang/datafixers/types/templates/TypeTemplate; +MD: net/minecraft/util/datafix/schemas/V1470/m_17702_ (Lcom/mojang/datafixers/schemas/Schema;Ljava/lang/String;)Lcom/mojang/datafixers/types/templates/TypeTemplate; net/minecraft/util/datafix/schemas/V1470/lambda$registerEntities$1 (Lcom/mojang/datafixers/schemas/Schema;Ljava/lang/String;)Lcom/mojang/datafixers/types/templates/TypeTemplate; +MD: net/minecraft/util/datafix/schemas/V1470/m_17705_ (Lcom/mojang/datafixers/schemas/Schema;Ljava/util/Map;Ljava/lang/String;)V net/minecraft/util/datafix/schemas/V1470/registerMob (Lcom/mojang/datafixers/schemas/Schema;Ljava/util/Map;Ljava/lang/String;)V +MD: net/minecraft/util/datafix/schemas/V1470/registerEntities (Lcom/mojang/datafixers/schemas/Schema;)Ljava/util/Map; net/minecraft/util/datafix/schemas/V1470/registerEntities (Lcom/mojang/datafixers/schemas/Schema;)Ljava/util/Map; +MD: net/minecraft/util/datafix/schemas/V1481/ (ILcom/mojang/datafixers/schemas/Schema;)V net/minecraft/util/datafix/schemas/V1481/ (ILcom/mojang/datafixers/schemas/Schema;)V +MD: net/minecraft/util/datafix/schemas/V1481/registerBlockEntities (Lcom/mojang/datafixers/schemas/Schema;)Ljava/util/Map; net/minecraft/util/datafix/schemas/V1481/registerBlockEntities (Lcom/mojang/datafixers/schemas/Schema;)Ljava/util/Map; +MD: net/minecraft/util/datafix/schemas/V1483/ (ILcom/mojang/datafixers/schemas/Schema;)V net/minecraft/util/datafix/schemas/V1483/ (ILcom/mojang/datafixers/schemas/Schema;)V +MD: net/minecraft/util/datafix/schemas/V1483/registerEntities (Lcom/mojang/datafixers/schemas/Schema;)Ljava/util/Map; net/minecraft/util/datafix/schemas/V1483/registerEntities (Lcom/mojang/datafixers/schemas/Schema;)Ljava/util/Map; +MD: net/minecraft/util/datafix/schemas/V1486/ (ILcom/mojang/datafixers/schemas/Schema;)V net/minecraft/util/datafix/schemas/V1486/ (ILcom/mojang/datafixers/schemas/Schema;)V +MD: net/minecraft/util/datafix/schemas/V1486/registerEntities (Lcom/mojang/datafixers/schemas/Schema;)Ljava/util/Map; net/minecraft/util/datafix/schemas/V1486/registerEntities (Lcom/mojang/datafixers/schemas/Schema;)Ljava/util/Map; +MD: net/minecraft/util/datafix/schemas/V1510/ (ILcom/mojang/datafixers/schemas/Schema;)V net/minecraft/util/datafix/schemas/V1510/ (ILcom/mojang/datafixers/schemas/Schema;)V +MD: net/minecraft/util/datafix/schemas/V1510/registerEntities (Lcom/mojang/datafixers/schemas/Schema;)Ljava/util/Map; net/minecraft/util/datafix/schemas/V1510/registerEntities (Lcom/mojang/datafixers/schemas/Schema;)Ljava/util/Map; +MD: net/minecraft/util/datafix/schemas/V1800/ (ILcom/mojang/datafixers/schemas/Schema;)V net/minecraft/util/datafix/schemas/V1800/ (ILcom/mojang/datafixers/schemas/Schema;)V +MD: net/minecraft/util/datafix/schemas/V1800/m_17734_ (Lcom/mojang/datafixers/schemas/Schema;)Lcom/mojang/datafixers/types/templates/TypeTemplate; net/minecraft/util/datafix/schemas/V1800/lambda$registerEntities$0 (Lcom/mojang/datafixers/schemas/Schema;)Lcom/mojang/datafixers/types/templates/TypeTemplate; +MD: net/minecraft/util/datafix/schemas/V1800/m_17736_ (Lcom/mojang/datafixers/schemas/Schema;Ljava/lang/String;)Lcom/mojang/datafixers/types/templates/TypeTemplate; net/minecraft/util/datafix/schemas/V1800/lambda$registerEntities$1 (Lcom/mojang/datafixers/schemas/Schema;Ljava/lang/String;)Lcom/mojang/datafixers/types/templates/TypeTemplate; +MD: net/minecraft/util/datafix/schemas/V1800/registerEntities (Lcom/mojang/datafixers/schemas/Schema;)Ljava/util/Map; net/minecraft/util/datafix/schemas/V1800/registerEntities (Lcom/mojang/datafixers/schemas/Schema;)Ljava/util/Map; +MD: net/minecraft/util/datafix/schemas/V1801/ (ILcom/mojang/datafixers/schemas/Schema;)V net/minecraft/util/datafix/schemas/V1801/ (ILcom/mojang/datafixers/schemas/Schema;)V +MD: net/minecraft/util/datafix/schemas/V1801/m_17748_ (Lcom/mojang/datafixers/schemas/Schema;)Lcom/mojang/datafixers/types/templates/TypeTemplate; net/minecraft/util/datafix/schemas/V1801/lambda$registerEntities$0 (Lcom/mojang/datafixers/schemas/Schema;)Lcom/mojang/datafixers/types/templates/TypeTemplate; +MD: net/minecraft/util/datafix/schemas/V1801/registerEntities (Lcom/mojang/datafixers/schemas/Schema;)Ljava/util/Map; net/minecraft/util/datafix/schemas/V1801/registerEntities (Lcom/mojang/datafixers/schemas/Schema;)Ljava/util/Map; +MD: net/minecraft/util/datafix/schemas/V1904/ (ILcom/mojang/datafixers/schemas/Schema;)V net/minecraft/util/datafix/schemas/V1904/ (ILcom/mojang/datafixers/schemas/Schema;)V +MD: net/minecraft/util/datafix/schemas/V1904/m_17759_ (Lcom/mojang/datafixers/schemas/Schema;)Lcom/mojang/datafixers/types/templates/TypeTemplate; net/minecraft/util/datafix/schemas/V1904/lambda$registerEntities$0 (Lcom/mojang/datafixers/schemas/Schema;)Lcom/mojang/datafixers/types/templates/TypeTemplate; +MD: net/minecraft/util/datafix/schemas/V1904/registerEntities (Lcom/mojang/datafixers/schemas/Schema;)Ljava/util/Map; net/minecraft/util/datafix/schemas/V1904/registerEntities (Lcom/mojang/datafixers/schemas/Schema;)Ljava/util/Map; +MD: net/minecraft/util/datafix/schemas/V1906/ (ILcom/mojang/datafixers/schemas/Schema;)V net/minecraft/util/datafix/schemas/V1906/ (ILcom/mojang/datafixers/schemas/Schema;)V +MD: net/minecraft/util/datafix/schemas/V1906/m_17770_ (Lcom/mojang/datafixers/schemas/Schema;)Lcom/mojang/datafixers/types/templates/TypeTemplate; net/minecraft/util/datafix/schemas/V1906/lambda$registerInventory$1 (Lcom/mojang/datafixers/schemas/Schema;)Lcom/mojang/datafixers/types/templates/TypeTemplate; +MD: net/minecraft/util/datafix/schemas/V1906/m_17772_ (Lcom/mojang/datafixers/schemas/Schema;Ljava/lang/String;)Lcom/mojang/datafixers/types/templates/TypeTemplate; net/minecraft/util/datafix/schemas/V1906/lambda$registerBlockEntities$0 (Lcom/mojang/datafixers/schemas/Schema;Ljava/lang/String;)Lcom/mojang/datafixers/types/templates/TypeTemplate; +MD: net/minecraft/util/datafix/schemas/V1906/m_17775_ (Lcom/mojang/datafixers/schemas/Schema;Ljava/util/Map;Ljava/lang/String;)V net/minecraft/util/datafix/schemas/V1906/registerInventory (Lcom/mojang/datafixers/schemas/Schema;Ljava/util/Map;Ljava/lang/String;)V +MD: net/minecraft/util/datafix/schemas/V1906/registerBlockEntities (Lcom/mojang/datafixers/schemas/Schema;)Ljava/util/Map; net/minecraft/util/datafix/schemas/V1906/registerBlockEntities (Lcom/mojang/datafixers/schemas/Schema;)Ljava/util/Map; +MD: net/minecraft/util/datafix/schemas/V1909/ (ILcom/mojang/datafixers/schemas/Schema;)V net/minecraft/util/datafix/schemas/V1909/ (ILcom/mojang/datafixers/schemas/Schema;)V +MD: net/minecraft/util/datafix/schemas/V1909/registerBlockEntities (Lcom/mojang/datafixers/schemas/Schema;)Ljava/util/Map; net/minecraft/util/datafix/schemas/V1909/registerBlockEntities (Lcom/mojang/datafixers/schemas/Schema;)Ljava/util/Map; +MD: net/minecraft/util/datafix/schemas/V1920/ (ILcom/mojang/datafixers/schemas/Schema;)V net/minecraft/util/datafix/schemas/V1920/ (ILcom/mojang/datafixers/schemas/Schema;)V +MD: net/minecraft/util/datafix/schemas/V1920/m_17789_ (Lcom/mojang/datafixers/schemas/Schema;)Lcom/mojang/datafixers/types/templates/TypeTemplate; net/minecraft/util/datafix/schemas/V1920/lambda$registerInventory$0 (Lcom/mojang/datafixers/schemas/Schema;)Lcom/mojang/datafixers/types/templates/TypeTemplate; +MD: net/minecraft/util/datafix/schemas/V1920/m_17791_ (Lcom/mojang/datafixers/schemas/Schema;Ljava/util/Map;Ljava/lang/String;)V net/minecraft/util/datafix/schemas/V1920/registerInventory (Lcom/mojang/datafixers/schemas/Schema;Ljava/util/Map;Ljava/lang/String;)V +MD: net/minecraft/util/datafix/schemas/V1920/registerBlockEntities (Lcom/mojang/datafixers/schemas/Schema;)Ljava/util/Map; net/minecraft/util/datafix/schemas/V1920/registerBlockEntities (Lcom/mojang/datafixers/schemas/Schema;)Ljava/util/Map; +MD: net/minecraft/util/datafix/schemas/V1928/ (ILcom/mojang/datafixers/schemas/Schema;)V net/minecraft/util/datafix/schemas/V1928/ (ILcom/mojang/datafixers/schemas/Schema;)V +MD: net/minecraft/util/datafix/schemas/V1928/m_17800_ (Lcom/mojang/datafixers/schemas/Schema;)Lcom/mojang/datafixers/types/templates/TypeTemplate; net/minecraft/util/datafix/schemas/V1928/equipment (Lcom/mojang/datafixers/schemas/Schema;)Lcom/mojang/datafixers/types/templates/TypeTemplate; +MD: net/minecraft/util/datafix/schemas/V1928/m_17802_ (Lcom/mojang/datafixers/schemas/Schema;Ljava/util/Map;Ljava/lang/String;)V net/minecraft/util/datafix/schemas/V1928/registerMob (Lcom/mojang/datafixers/schemas/Schema;Ljava/util/Map;Ljava/lang/String;)V +MD: net/minecraft/util/datafix/schemas/V1928/m_17806_ (Lcom/mojang/datafixers/schemas/Schema;)Lcom/mojang/datafixers/types/templates/TypeTemplate; net/minecraft/util/datafix/schemas/V1928/lambda$registerMob$0 (Lcom/mojang/datafixers/schemas/Schema;)Lcom/mojang/datafixers/types/templates/TypeTemplate; +MD: net/minecraft/util/datafix/schemas/V1928/registerEntities (Lcom/mojang/datafixers/schemas/Schema;)Ljava/util/Map; net/minecraft/util/datafix/schemas/V1928/registerEntities (Lcom/mojang/datafixers/schemas/Schema;)Ljava/util/Map; +MD: net/minecraft/util/datafix/schemas/V1929/ (ILcom/mojang/datafixers/schemas/Schema;)V net/minecraft/util/datafix/schemas/V1929/ (ILcom/mojang/datafixers/schemas/Schema;)V +MD: net/minecraft/util/datafix/schemas/V1929/m_17813_ (Lcom/mojang/datafixers/schemas/Schema;Ljava/lang/String;)Lcom/mojang/datafixers/types/templates/TypeTemplate; net/minecraft/util/datafix/schemas/V1929/lambda$registerEntities$1 (Lcom/mojang/datafixers/schemas/Schema;Ljava/lang/String;)Lcom/mojang/datafixers/types/templates/TypeTemplate; +MD: net/minecraft/util/datafix/schemas/V1929/m_17816_ (Lcom/mojang/datafixers/schemas/Schema;Ljava/lang/String;)Lcom/mojang/datafixers/types/templates/TypeTemplate; net/minecraft/util/datafix/schemas/V1929/lambda$registerEntities$0 (Lcom/mojang/datafixers/schemas/Schema;Ljava/lang/String;)Lcom/mojang/datafixers/types/templates/TypeTemplate; +MD: net/minecraft/util/datafix/schemas/V1929/registerEntities (Lcom/mojang/datafixers/schemas/Schema;)Ljava/util/Map; net/minecraft/util/datafix/schemas/V1929/registerEntities (Lcom/mojang/datafixers/schemas/Schema;)Ljava/util/Map; +MD: net/minecraft/util/datafix/schemas/V1931/ (ILcom/mojang/datafixers/schemas/Schema;)V net/minecraft/util/datafix/schemas/V1931/ (ILcom/mojang/datafixers/schemas/Schema;)V +MD: net/minecraft/util/datafix/schemas/V1931/m_17824_ (Lcom/mojang/datafixers/schemas/Schema;)Lcom/mojang/datafixers/types/templates/TypeTemplate; net/minecraft/util/datafix/schemas/V1931/lambda$registerEntities$0 (Lcom/mojang/datafixers/schemas/Schema;)Lcom/mojang/datafixers/types/templates/TypeTemplate; +MD: net/minecraft/util/datafix/schemas/V1931/registerEntities (Lcom/mojang/datafixers/schemas/Schema;)Ljava/util/Map; net/minecraft/util/datafix/schemas/V1931/registerEntities (Lcom/mojang/datafixers/schemas/Schema;)Ljava/util/Map; +MD: net/minecraft/util/datafix/schemas/V2100/ (ILcom/mojang/datafixers/schemas/Schema;)V net/minecraft/util/datafix/schemas/V2100/ (ILcom/mojang/datafixers/schemas/Schema;)V +MD: net/minecraft/util/datafix/schemas/V2100/m_17835_ (Lcom/mojang/datafixers/schemas/Schema;)Lcom/mojang/datafixers/types/templates/TypeTemplate; net/minecraft/util/datafix/schemas/V2100/lambda$registerBlockEntities$1 (Lcom/mojang/datafixers/schemas/Schema;)Lcom/mojang/datafixers/types/templates/TypeTemplate; +MD: net/minecraft/util/datafix/schemas/V2100/m_17837_ (Lcom/mojang/datafixers/schemas/Schema;Ljava/util/Map;Ljava/lang/String;)V net/minecraft/util/datafix/schemas/V2100/registerMob (Lcom/mojang/datafixers/schemas/Schema;Ljava/util/Map;Ljava/lang/String;)V +MD: net/minecraft/util/datafix/schemas/V2100/m_17841_ (Lcom/mojang/datafixers/schemas/Schema;)Lcom/mojang/datafixers/types/templates/TypeTemplate; net/minecraft/util/datafix/schemas/V2100/lambda$registerMob$0 (Lcom/mojang/datafixers/schemas/Schema;)Lcom/mojang/datafixers/types/templates/TypeTemplate; +MD: net/minecraft/util/datafix/schemas/V2100/registerBlockEntities (Lcom/mojang/datafixers/schemas/Schema;)Ljava/util/Map; net/minecraft/util/datafix/schemas/V2100/registerBlockEntities (Lcom/mojang/datafixers/schemas/Schema;)Ljava/util/Map; +MD: net/minecraft/util/datafix/schemas/V2100/registerEntities (Lcom/mojang/datafixers/schemas/Schema;)Ljava/util/Map; net/minecraft/util/datafix/schemas/V2100/registerEntities (Lcom/mojang/datafixers/schemas/Schema;)Ljava/util/Map; +MD: net/minecraft/util/datafix/schemas/V2501/ (ILcom/mojang/datafixers/schemas/Schema;)V net/minecraft/util/datafix/schemas/V2501/ (ILcom/mojang/datafixers/schemas/Schema;)V +MD: net/minecraft/util/datafix/schemas/V2501/m_17850_ (Lcom/mojang/datafixers/schemas/Schema;)Lcom/mojang/datafixers/types/templates/TypeTemplate; net/minecraft/util/datafix/schemas/V2501/lambda$registerFurnace$0 (Lcom/mojang/datafixers/schemas/Schema;)Lcom/mojang/datafixers/types/templates/TypeTemplate; +MD: net/minecraft/util/datafix/schemas/V2501/m_17852_ (Lcom/mojang/datafixers/schemas/Schema;Ljava/util/Map;Ljava/lang/String;)V net/minecraft/util/datafix/schemas/V2501/registerFurnace (Lcom/mojang/datafixers/schemas/Schema;Ljava/util/Map;Ljava/lang/String;)V +MD: net/minecraft/util/datafix/schemas/V2501/registerBlockEntities (Lcom/mojang/datafixers/schemas/Schema;)Ljava/util/Map; net/minecraft/util/datafix/schemas/V2501/registerBlockEntities (Lcom/mojang/datafixers/schemas/Schema;)Ljava/util/Map; +MD: net/minecraft/util/datafix/schemas/V2502/ (ILcom/mojang/datafixers/schemas/Schema;)V net/minecraft/util/datafix/schemas/V2502/ (ILcom/mojang/datafixers/schemas/Schema;)V +MD: net/minecraft/util/datafix/schemas/V2502/m_17861_ (Lcom/mojang/datafixers/schemas/Schema;)Lcom/mojang/datafixers/types/templates/TypeTemplate; net/minecraft/util/datafix/schemas/V2502/lambda$registerEntities$0 (Lcom/mojang/datafixers/schemas/Schema;)Lcom/mojang/datafixers/types/templates/TypeTemplate; +MD: net/minecraft/util/datafix/schemas/V2502/registerEntities (Lcom/mojang/datafixers/schemas/Schema;)Ljava/util/Map; net/minecraft/util/datafix/schemas/V2502/registerEntities (Lcom/mojang/datafixers/schemas/Schema;)Ljava/util/Map; +MD: net/minecraft/util/datafix/schemas/V2505/ (ILcom/mojang/datafixers/schemas/Schema;)V net/minecraft/util/datafix/schemas/V2505/ (ILcom/mojang/datafixers/schemas/Schema;)V +MD: net/minecraft/util/datafix/schemas/V2505/m_17872_ (Lcom/mojang/datafixers/schemas/Schema;)Lcom/mojang/datafixers/types/templates/TypeTemplate; net/minecraft/util/datafix/schemas/V2505/lambda$registerEntities$0 (Lcom/mojang/datafixers/schemas/Schema;)Lcom/mojang/datafixers/types/templates/TypeTemplate; +MD: net/minecraft/util/datafix/schemas/V2505/registerEntities (Lcom/mojang/datafixers/schemas/Schema;)Ljava/util/Map; net/minecraft/util/datafix/schemas/V2505/registerEntities (Lcom/mojang/datafixers/schemas/Schema;)Ljava/util/Map; +MD: net/minecraft/util/datafix/schemas/V2509/ (ILcom/mojang/datafixers/schemas/Schema;)V net/minecraft/util/datafix/schemas/V2509/ (ILcom/mojang/datafixers/schemas/Schema;)V +MD: net/minecraft/util/datafix/schemas/V2509/m_17883_ (Lcom/mojang/datafixers/schemas/Schema;)Lcom/mojang/datafixers/types/templates/TypeTemplate; net/minecraft/util/datafix/schemas/V2509/lambda$registerEntities$0 (Lcom/mojang/datafixers/schemas/Schema;)Lcom/mojang/datafixers/types/templates/TypeTemplate; +MD: net/minecraft/util/datafix/schemas/V2509/registerEntities (Lcom/mojang/datafixers/schemas/Schema;)Ljava/util/Map; net/minecraft/util/datafix/schemas/V2509/registerEntities (Lcom/mojang/datafixers/schemas/Schema;)Ljava/util/Map; +MD: net/minecraft/util/datafix/schemas/V2519/ (ILcom/mojang/datafixers/schemas/Schema;)V net/minecraft/util/datafix/schemas/V2519/ (ILcom/mojang/datafixers/schemas/Schema;)V +MD: net/minecraft/util/datafix/schemas/V2519/m_17894_ (Lcom/mojang/datafixers/schemas/Schema;)Lcom/mojang/datafixers/types/templates/TypeTemplate; net/minecraft/util/datafix/schemas/V2519/lambda$registerEntities$0 (Lcom/mojang/datafixers/schemas/Schema;)Lcom/mojang/datafixers/types/templates/TypeTemplate; +MD: net/minecraft/util/datafix/schemas/V2519/registerEntities (Lcom/mojang/datafixers/schemas/Schema;)Ljava/util/Map; net/minecraft/util/datafix/schemas/V2519/registerEntities (Lcom/mojang/datafixers/schemas/Schema;)Ljava/util/Map; +MD: net/minecraft/util/datafix/schemas/V2522/ (ILcom/mojang/datafixers/schemas/Schema;)V net/minecraft/util/datafix/schemas/V2522/ (ILcom/mojang/datafixers/schemas/Schema;)V +MD: net/minecraft/util/datafix/schemas/V2522/m_17935_ (Lcom/mojang/datafixers/schemas/Schema;)Lcom/mojang/datafixers/types/templates/TypeTemplate; net/minecraft/util/datafix/schemas/V2522/lambda$registerEntities$0 (Lcom/mojang/datafixers/schemas/Schema;)Lcom/mojang/datafixers/types/templates/TypeTemplate; +MD: net/minecraft/util/datafix/schemas/V2522/registerEntities (Lcom/mojang/datafixers/schemas/Schema;)Ljava/util/Map; net/minecraft/util/datafix/schemas/V2522/registerEntities (Lcom/mojang/datafixers/schemas/Schema;)Ljava/util/Map; +MD: net/minecraft/util/datafix/schemas/V2551/ (ILcom/mojang/datafixers/schemas/Schema;)V net/minecraft/util/datafix/schemas/V2551/ (ILcom/mojang/datafixers/schemas/Schema;)V +MD: net/minecraft/util/datafix/schemas/V2551/m_145834_ (Lcom/mojang/datafixers/schemas/Schema;)Lcom/mojang/datafixers/types/templates/TypeTemplate; net/minecraft/util/datafix/schemas/V2551/lambda$registerTypes$4 (Lcom/mojang/datafixers/schemas/Schema;)Lcom/mojang/datafixers/types/templates/TypeTemplate; +MD: net/minecraft/util/datafix/schemas/V2551/m_145836_ (Lcom/mojang/datafixers/schemas/Schema;)Lcom/mojang/datafixers/types/templates/TypeTemplate; net/minecraft/util/datafix/schemas/V2551/lambda$registerTypes$3 (Lcom/mojang/datafixers/schemas/Schema;)Lcom/mojang/datafixers/types/templates/TypeTemplate; +MD: net/minecraft/util/datafix/schemas/V2551/m_145838_ (Lcom/mojang/datafixers/schemas/Schema;)Lcom/mojang/datafixers/types/templates/TypeTemplate; net/minecraft/util/datafix/schemas/V2551/lambda$registerTypes$2 (Lcom/mojang/datafixers/schemas/Schema;)Lcom/mojang/datafixers/types/templates/TypeTemplate; +MD: net/minecraft/util/datafix/schemas/V2551/m_145840_ (Lcom/mojang/datafixers/schemas/Schema;)Lcom/mojang/datafixers/types/templates/TypeTemplate; net/minecraft/util/datafix/schemas/V2551/lambda$registerTypes$1 (Lcom/mojang/datafixers/schemas/Schema;)Lcom/mojang/datafixers/types/templates/TypeTemplate; +MD: net/minecraft/util/datafix/schemas/V2551/m_145842_ (Lcom/mojang/datafixers/schemas/Schema;)Lcom/mojang/datafixers/types/templates/TypeTemplate; net/minecraft/util/datafix/schemas/V2551/lambda$registerTypes$0 (Lcom/mojang/datafixers/schemas/Schema;)Lcom/mojang/datafixers/types/templates/TypeTemplate; +MD: net/minecraft/util/datafix/schemas/V2551/m_17946_ (Lcom/mojang/datafixers/schemas/Schema;)Lcom/mojang/datafixers/types/templates/TypeTemplate; net/minecraft/util/datafix/schemas/V2551/lambda$registerTypes$5 (Lcom/mojang/datafixers/schemas/Schema;)Lcom/mojang/datafixers/types/templates/TypeTemplate; +MD: net/minecraft/util/datafix/schemas/V2551/registerTypes (Lcom/mojang/datafixers/schemas/Schema;Ljava/util/Map;Ljava/util/Map;)V net/minecraft/util/datafix/schemas/V2551/registerTypes (Lcom/mojang/datafixers/schemas/Schema;Ljava/util/Map;Ljava/util/Map;)V +MD: net/minecraft/util/datafix/schemas/V2568/ (ILcom/mojang/datafixers/schemas/Schema;)V net/minecraft/util/datafix/schemas/V2568/ (ILcom/mojang/datafixers/schemas/Schema;)V +MD: net/minecraft/util/datafix/schemas/V2568/m_17965_ (Lcom/mojang/datafixers/schemas/Schema;)Lcom/mojang/datafixers/types/templates/TypeTemplate; net/minecraft/util/datafix/schemas/V2568/lambda$registerEntities$0 (Lcom/mojang/datafixers/schemas/Schema;)Lcom/mojang/datafixers/types/templates/TypeTemplate; +MD: net/minecraft/util/datafix/schemas/V2568/registerEntities (Lcom/mojang/datafixers/schemas/Schema;)Ljava/util/Map; net/minecraft/util/datafix/schemas/V2568/registerEntities (Lcom/mojang/datafixers/schemas/Schema;)Ljava/util/Map; +MD: net/minecraft/util/datafix/schemas/V2571/ (ILcom/mojang/datafixers/schemas/Schema;)V net/minecraft/util/datafix/schemas/V2571/ (ILcom/mojang/datafixers/schemas/Schema;)V +MD: net/minecraft/util/datafix/schemas/V2571/m_145847_ (Lcom/mojang/datafixers/schemas/Schema;)Lcom/mojang/datafixers/types/templates/TypeTemplate; net/minecraft/util/datafix/schemas/V2571/lambda$registerEntities$0 (Lcom/mojang/datafixers/schemas/Schema;)Lcom/mojang/datafixers/types/templates/TypeTemplate; +MD: net/minecraft/util/datafix/schemas/V2571/registerEntities (Lcom/mojang/datafixers/schemas/Schema;)Ljava/util/Map; net/minecraft/util/datafix/schemas/V2571/registerEntities (Lcom/mojang/datafixers/schemas/Schema;)Ljava/util/Map; +MD: net/minecraft/util/datafix/schemas/V2684/ (ILcom/mojang/datafixers/schemas/Schema;)V net/minecraft/util/datafix/schemas/V2684/ (ILcom/mojang/datafixers/schemas/Schema;)V +MD: net/minecraft/util/datafix/schemas/V2684/m_216756_ (Lcom/mojang/datafixers/schemas/Schema;)Lcom/mojang/datafixers/types/templates/TypeTemplate; net/minecraft/util/datafix/schemas/V2684/lambda$registerBlockEntities$1 (Lcom/mojang/datafixers/schemas/Schema;)Lcom/mojang/datafixers/types/templates/TypeTemplate; +MD: net/minecraft/util/datafix/schemas/V2684/m_216758_ ()Lcom/mojang/datafixers/types/templates/TypeTemplate; net/minecraft/util/datafix/schemas/V2684/lambda$registerTypes$0 ()Lcom/mojang/datafixers/types/templates/TypeTemplate; +MD: net/minecraft/util/datafix/schemas/V2684/registerBlockEntities (Lcom/mojang/datafixers/schemas/Schema;)Ljava/util/Map; net/minecraft/util/datafix/schemas/V2684/registerBlockEntities (Lcom/mojang/datafixers/schemas/Schema;)Ljava/util/Map; +MD: net/minecraft/util/datafix/schemas/V2684/registerTypes (Lcom/mojang/datafixers/schemas/Schema;Ljava/util/Map;Ljava/util/Map;)V net/minecraft/util/datafix/schemas/V2684/registerTypes (Lcom/mojang/datafixers/schemas/Schema;Ljava/util/Map;Ljava/util/Map;)V +MD: net/minecraft/util/datafix/schemas/V2686/ (ILcom/mojang/datafixers/schemas/Schema;)V net/minecraft/util/datafix/schemas/V2686/ (ILcom/mojang/datafixers/schemas/Schema;)V +MD: net/minecraft/util/datafix/schemas/V2686/m_145863_ (Lcom/mojang/datafixers/schemas/Schema;)Lcom/mojang/datafixers/types/templates/TypeTemplate; net/minecraft/util/datafix/schemas/V2686/lambda$registerEntities$0 (Lcom/mojang/datafixers/schemas/Schema;)Lcom/mojang/datafixers/types/templates/TypeTemplate; +MD: net/minecraft/util/datafix/schemas/V2686/registerEntities (Lcom/mojang/datafixers/schemas/Schema;)Ljava/util/Map; net/minecraft/util/datafix/schemas/V2686/registerEntities (Lcom/mojang/datafixers/schemas/Schema;)Ljava/util/Map; +MD: net/minecraft/util/datafix/schemas/V2688/ (ILcom/mojang/datafixers/schemas/Schema;)V net/minecraft/util/datafix/schemas/V2688/ (ILcom/mojang/datafixers/schemas/Schema;)V +MD: net/minecraft/util/datafix/schemas/V2688/m_145874_ (Lcom/mojang/datafixers/schemas/Schema;)Lcom/mojang/datafixers/types/templates/TypeTemplate; net/minecraft/util/datafix/schemas/V2688/lambda$registerEntities$0 (Lcom/mojang/datafixers/schemas/Schema;)Lcom/mojang/datafixers/types/templates/TypeTemplate; +MD: net/minecraft/util/datafix/schemas/V2688/m_263974_ (Lcom/mojang/datafixers/schemas/Schema;Ljava/lang/String;)Lcom/mojang/datafixers/types/templates/TypeTemplate; net/minecraft/util/datafix/schemas/V2688/lambda$registerEntities$1 (Lcom/mojang/datafixers/schemas/Schema;Ljava/lang/String;)Lcom/mojang/datafixers/types/templates/TypeTemplate; +MD: net/minecraft/util/datafix/schemas/V2688/registerEntities (Lcom/mojang/datafixers/schemas/Schema;)Ljava/util/Map; net/minecraft/util/datafix/schemas/V2688/registerEntities (Lcom/mojang/datafixers/schemas/Schema;)Ljava/util/Map; +MD: net/minecraft/util/datafix/schemas/V2704/ (ILcom/mojang/datafixers/schemas/Schema;)V net/minecraft/util/datafix/schemas/V2704/ (ILcom/mojang/datafixers/schemas/Schema;)V +MD: net/minecraft/util/datafix/schemas/V2704/m_145885_ (Lcom/mojang/datafixers/schemas/Schema;)Lcom/mojang/datafixers/types/templates/TypeTemplate; net/minecraft/util/datafix/schemas/V2704/lambda$registerEntities$0 (Lcom/mojang/datafixers/schemas/Schema;)Lcom/mojang/datafixers/types/templates/TypeTemplate; +MD: net/minecraft/util/datafix/schemas/V2704/registerEntities (Lcom/mojang/datafixers/schemas/Schema;)Ljava/util/Map; net/minecraft/util/datafix/schemas/V2704/registerEntities (Lcom/mojang/datafixers/schemas/Schema;)Ljava/util/Map; +MD: net/minecraft/util/datafix/schemas/V2707/ (ILcom/mojang/datafixers/schemas/Schema;)V net/minecraft/util/datafix/schemas/V2707/ (ILcom/mojang/datafixers/schemas/Schema;)V +MD: net/minecraft/util/datafix/schemas/V2707/registerEntities (Lcom/mojang/datafixers/schemas/Schema;)Ljava/util/Map; net/minecraft/util/datafix/schemas/V2707/registerEntities (Lcom/mojang/datafixers/schemas/Schema;)Ljava/util/Map; +MD: net/minecraft/util/datafix/schemas/V2831/ (ILcom/mojang/datafixers/schemas/Schema;)V net/minecraft/util/datafix/schemas/V2831/ (ILcom/mojang/datafixers/schemas/Schema;)V +MD: net/minecraft/util/datafix/schemas/V2831/m_185210_ (Lcom/mojang/datafixers/schemas/Schema;)Lcom/mojang/datafixers/types/templates/TypeTemplate; net/minecraft/util/datafix/schemas/V2831/lambda$registerTypes$0 (Lcom/mojang/datafixers/schemas/Schema;)Lcom/mojang/datafixers/types/templates/TypeTemplate; +MD: net/minecraft/util/datafix/schemas/V2831/registerTypes (Lcom/mojang/datafixers/schemas/Schema;Ljava/util/Map;Ljava/util/Map;)V net/minecraft/util/datafix/schemas/V2831/registerTypes (Lcom/mojang/datafixers/schemas/Schema;Ljava/util/Map;Ljava/util/Map;)V +MD: net/minecraft/util/datafix/schemas/V2832/ (ILcom/mojang/datafixers/schemas/Schema;)V net/minecraft/util/datafix/schemas/V2832/ (ILcom/mojang/datafixers/schemas/Schema;)V +MD: net/minecraft/util/datafix/schemas/V2832/m_185219_ (Lcom/mojang/datafixers/schemas/Schema;)Lcom/mojang/datafixers/types/templates/TypeTemplate; net/minecraft/util/datafix/schemas/V2832/lambda$registerTypes$7 (Lcom/mojang/datafixers/schemas/Schema;)Lcom/mojang/datafixers/types/templates/TypeTemplate; +MD: net/minecraft/util/datafix/schemas/V2832/m_185221_ (Lcom/mojang/datafixers/schemas/Schema;)Lcom/mojang/datafixers/types/templates/TypeTemplate; net/minecraft/util/datafix/schemas/V2832/lambda$registerTypes$6 (Lcom/mojang/datafixers/schemas/Schema;)Lcom/mojang/datafixers/types/templates/TypeTemplate; +MD: net/minecraft/util/datafix/schemas/V2832/m_185223_ (Lcom/mojang/datafixers/schemas/Schema;)Lcom/mojang/datafixers/types/templates/TypeTemplate; net/minecraft/util/datafix/schemas/V2832/lambda$registerTypes$5 (Lcom/mojang/datafixers/schemas/Schema;)Lcom/mojang/datafixers/types/templates/TypeTemplate; +MD: net/minecraft/util/datafix/schemas/V2832/m_185227_ (Lcom/mojang/datafixers/schemas/Schema;)Lcom/mojang/datafixers/types/templates/TypeTemplate; net/minecraft/util/datafix/schemas/V2832/lambda$registerTypes$3 (Lcom/mojang/datafixers/schemas/Schema;)Lcom/mojang/datafixers/types/templates/TypeTemplate; +MD: net/minecraft/util/datafix/schemas/V2832/m_185229_ (Lcom/mojang/datafixers/schemas/Schema;)Lcom/mojang/datafixers/types/templates/TypeTemplate; net/minecraft/util/datafix/schemas/V2832/lambda$registerTypes$2 (Lcom/mojang/datafixers/schemas/Schema;)Lcom/mojang/datafixers/types/templates/TypeTemplate; +MD: net/minecraft/util/datafix/schemas/V2832/m_185231_ (Lcom/mojang/datafixers/schemas/Schema;)Lcom/mojang/datafixers/types/templates/TypeTemplate; net/minecraft/util/datafix/schemas/V2832/lambda$registerTypes$0 (Lcom/mojang/datafixers/schemas/Schema;)Lcom/mojang/datafixers/types/templates/TypeTemplate; +MD: net/minecraft/util/datafix/schemas/V2832/m_276735_ (Lcom/mojang/datafixers/schemas/Schema;)Lcom/mojang/datafixers/types/templates/TypeTemplate; net/minecraft/util/datafix/schemas/V2832/lambda$registerTypes$4 (Lcom/mojang/datafixers/schemas/Schema;)Lcom/mojang/datafixers/types/templates/TypeTemplate; +MD: net/minecraft/util/datafix/schemas/V2832/m_276736_ ()Lcom/mojang/datafixers/types/templates/TypeTemplate; net/minecraft/util/datafix/schemas/V2832/lambda$registerTypes$1 ()Lcom/mojang/datafixers/types/templates/TypeTemplate; +MD: net/minecraft/util/datafix/schemas/V2832/registerTypes (Lcom/mojang/datafixers/schemas/Schema;Ljava/util/Map;Ljava/util/Map;)V net/minecraft/util/datafix/schemas/V2832/registerTypes (Lcom/mojang/datafixers/schemas/Schema;Ljava/util/Map;Ljava/util/Map;)V +MD: net/minecraft/util/datafix/schemas/V2842/ (ILcom/mojang/datafixers/schemas/Schema;)V net/minecraft/util/datafix/schemas/V2842/ (ILcom/mojang/datafixers/schemas/Schema;)V +MD: net/minecraft/util/datafix/schemas/V2842/m_185240_ (Lcom/mojang/datafixers/schemas/Schema;)Lcom/mojang/datafixers/types/templates/TypeTemplate; net/minecraft/util/datafix/schemas/V2842/lambda$registerTypes$0 (Lcom/mojang/datafixers/schemas/Schema;)Lcom/mojang/datafixers/types/templates/TypeTemplate; +MD: net/minecraft/util/datafix/schemas/V2842/registerTypes (Lcom/mojang/datafixers/schemas/Schema;Ljava/util/Map;Ljava/util/Map;)V net/minecraft/util/datafix/schemas/V2842/registerTypes (Lcom/mojang/datafixers/schemas/Schema;Ljava/util/Map;Ljava/util/Map;)V +MD: net/minecraft/util/datafix/schemas/V3076/ (ILcom/mojang/datafixers/schemas/Schema;)V net/minecraft/util/datafix/schemas/V3076/ (ILcom/mojang/datafixers/schemas/Schema;)V +MD: net/minecraft/util/datafix/schemas/V3076/registerBlockEntities (Lcom/mojang/datafixers/schemas/Schema;)Ljava/util/Map; net/minecraft/util/datafix/schemas/V3076/registerBlockEntities (Lcom/mojang/datafixers/schemas/Schema;)Ljava/util/Map; +MD: net/minecraft/util/datafix/schemas/V3078/ (ILcom/mojang/datafixers/schemas/Schema;)V net/minecraft/util/datafix/schemas/V3078/ (ILcom/mojang/datafixers/schemas/Schema;)V +MD: net/minecraft/util/datafix/schemas/V3078/m_216771_ (Lcom/mojang/datafixers/schemas/Schema;)Lcom/mojang/datafixers/types/templates/TypeTemplate; net/minecraft/util/datafix/schemas/V3078/lambda$registerBlockEntities$1 (Lcom/mojang/datafixers/schemas/Schema;)Lcom/mojang/datafixers/types/templates/TypeTemplate; +MD: net/minecraft/util/datafix/schemas/V3078/m_216773_ (Lcom/mojang/datafixers/schemas/Schema;Ljava/util/Map;Ljava/lang/String;)V net/minecraft/util/datafix/schemas/V3078/registerMob (Lcom/mojang/datafixers/schemas/Schema;Ljava/util/Map;Ljava/lang/String;)V +MD: net/minecraft/util/datafix/schemas/V3078/m_216777_ (Lcom/mojang/datafixers/schemas/Schema;)Lcom/mojang/datafixers/types/templates/TypeTemplate; net/minecraft/util/datafix/schemas/V3078/lambda$registerMob$0 (Lcom/mojang/datafixers/schemas/Schema;)Lcom/mojang/datafixers/types/templates/TypeTemplate; +MD: net/minecraft/util/datafix/schemas/V3078/registerBlockEntities (Lcom/mojang/datafixers/schemas/Schema;)Ljava/util/Map; net/minecraft/util/datafix/schemas/V3078/registerBlockEntities (Lcom/mojang/datafixers/schemas/Schema;)Ljava/util/Map; +MD: net/minecraft/util/datafix/schemas/V3078/registerEntities (Lcom/mojang/datafixers/schemas/Schema;)Ljava/util/Map; net/minecraft/util/datafix/schemas/V3078/registerEntities (Lcom/mojang/datafixers/schemas/Schema;)Ljava/util/Map; +MD: net/minecraft/util/datafix/schemas/V3081/ (ILcom/mojang/datafixers/schemas/Schema;)V net/minecraft/util/datafix/schemas/V3081/ (ILcom/mojang/datafixers/schemas/Schema;)V +MD: net/minecraft/util/datafix/schemas/V3081/m_263975_ (Lcom/mojang/datafixers/schemas/Schema;)Lcom/mojang/datafixers/types/templates/TypeTemplate; net/minecraft/util/datafix/schemas/V3081/lambda$registerEntities$0 (Lcom/mojang/datafixers/schemas/Schema;)Lcom/mojang/datafixers/types/templates/TypeTemplate; +MD: net/minecraft/util/datafix/schemas/V3081/registerEntities (Lcom/mojang/datafixers/schemas/Schema;)Ljava/util/Map; net/minecraft/util/datafix/schemas/V3081/registerEntities (Lcom/mojang/datafixers/schemas/Schema;)Ljava/util/Map; +MD: net/minecraft/util/datafix/schemas/V3082/ (ILcom/mojang/datafixers/schemas/Schema;)V net/minecraft/util/datafix/schemas/V3082/ (ILcom/mojang/datafixers/schemas/Schema;)V +MD: net/minecraft/util/datafix/schemas/V3082/m_216799_ (Lcom/mojang/datafixers/schemas/Schema;Ljava/lang/String;)Lcom/mojang/datafixers/types/templates/TypeTemplate; net/minecraft/util/datafix/schemas/V3082/lambda$registerEntities$0 (Lcom/mojang/datafixers/schemas/Schema;Ljava/lang/String;)Lcom/mojang/datafixers/types/templates/TypeTemplate; +MD: net/minecraft/util/datafix/schemas/V3082/registerEntities (Lcom/mojang/datafixers/schemas/Schema;)Ljava/util/Map; net/minecraft/util/datafix/schemas/V3082/registerEntities (Lcom/mojang/datafixers/schemas/Schema;)Ljava/util/Map; +MD: net/minecraft/util/datafix/schemas/V3083/ (ILcom/mojang/datafixers/schemas/Schema;)V net/minecraft/util/datafix/schemas/V3083/ (ILcom/mojang/datafixers/schemas/Schema;)V +MD: net/minecraft/util/datafix/schemas/V3083/m_216807_ (Lcom/mojang/datafixers/schemas/Schema;)Lcom/mojang/datafixers/types/templates/TypeTemplate; net/minecraft/util/datafix/schemas/V3083/lambda$registerMob$0 (Lcom/mojang/datafixers/schemas/Schema;)Lcom/mojang/datafixers/types/templates/TypeTemplate; +MD: net/minecraft/util/datafix/schemas/V3083/m_216809_ (Lcom/mojang/datafixers/schemas/Schema;Ljava/util/Map;Ljava/lang/String;)V net/minecraft/util/datafix/schemas/V3083/registerMob (Lcom/mojang/datafixers/schemas/Schema;Ljava/util/Map;Ljava/lang/String;)V +MD: net/minecraft/util/datafix/schemas/V3083/registerEntities (Lcom/mojang/datafixers/schemas/Schema;)Ljava/util/Map; net/minecraft/util/datafix/schemas/V3083/registerEntities (Lcom/mojang/datafixers/schemas/Schema;)Ljava/util/Map; +MD: net/minecraft/util/datafix/schemas/V3202/ (ILcom/mojang/datafixers/schemas/Schema;)V net/minecraft/util/datafix/schemas/V3202/ (ILcom/mojang/datafixers/schemas/Schema;)V +MD: net/minecraft/util/datafix/schemas/V3202/registerBlockEntities (Lcom/mojang/datafixers/schemas/Schema;)Ljava/util/Map; net/minecraft/util/datafix/schemas/V3202/registerBlockEntities (Lcom/mojang/datafixers/schemas/Schema;)Ljava/util/Map; +MD: net/minecraft/util/datafix/schemas/V3203/ (ILcom/mojang/datafixers/schemas/Schema;)V net/minecraft/util/datafix/schemas/V3203/ (ILcom/mojang/datafixers/schemas/Schema;)V +MD: net/minecraft/util/datafix/schemas/V3203/m_264622_ (Lcom/mojang/datafixers/schemas/Schema;)Lcom/mojang/datafixers/types/templates/TypeTemplate; net/minecraft/util/datafix/schemas/V3203/lambda$registerEntities$0 (Lcom/mojang/datafixers/schemas/Schema;)Lcom/mojang/datafixers/types/templates/TypeTemplate; +MD: net/minecraft/util/datafix/schemas/V3203/registerEntities (Lcom/mojang/datafixers/schemas/Schema;)Ljava/util/Map; net/minecraft/util/datafix/schemas/V3203/registerEntities (Lcom/mojang/datafixers/schemas/Schema;)Ljava/util/Map; +MD: net/minecraft/util/datafix/schemas/V3204/ (ILcom/mojang/datafixers/schemas/Schema;)V net/minecraft/util/datafix/schemas/V3204/ (ILcom/mojang/datafixers/schemas/Schema;)V +MD: net/minecraft/util/datafix/schemas/V3204/m_264581_ (Lcom/mojang/datafixers/schemas/Schema;)Lcom/mojang/datafixers/types/templates/TypeTemplate; net/minecraft/util/datafix/schemas/V3204/lambda$registerBlockEntities$0 (Lcom/mojang/datafixers/schemas/Schema;)Lcom/mojang/datafixers/types/templates/TypeTemplate; +MD: net/minecraft/util/datafix/schemas/V3204/registerBlockEntities (Lcom/mojang/datafixers/schemas/Schema;)Ljava/util/Map; net/minecraft/util/datafix/schemas/V3204/registerBlockEntities (Lcom/mojang/datafixers/schemas/Schema;)Ljava/util/Map; +MD: net/minecraft/util/datafix/schemas/V3325/ (ILcom/mojang/datafixers/schemas/Schema;)V net/minecraft/util/datafix/schemas/V3325/ (ILcom/mojang/datafixers/schemas/Schema;)V +MD: net/minecraft/util/datafix/schemas/V3325/m_269107_ (Lcom/mojang/datafixers/schemas/Schema;Ljava/lang/String;)Lcom/mojang/datafixers/types/templates/TypeTemplate; net/minecraft/util/datafix/schemas/V3325/lambda$registerEntities$1 (Lcom/mojang/datafixers/schemas/Schema;Ljava/lang/String;)Lcom/mojang/datafixers/types/templates/TypeTemplate; +MD: net/minecraft/util/datafix/schemas/V3325/m_269160_ (Lcom/mojang/datafixers/schemas/Schema;Ljava/lang/String;)Lcom/mojang/datafixers/types/templates/TypeTemplate; net/minecraft/util/datafix/schemas/V3325/lambda$registerEntities$0 (Lcom/mojang/datafixers/schemas/Schema;Ljava/lang/String;)Lcom/mojang/datafixers/types/templates/TypeTemplate; +MD: net/minecraft/util/datafix/schemas/V3325/registerEntities (Lcom/mojang/datafixers/schemas/Schema;)Ljava/util/Map; net/minecraft/util/datafix/schemas/V3325/registerEntities (Lcom/mojang/datafixers/schemas/Schema;)Ljava/util/Map; +MD: net/minecraft/util/datafix/schemas/V3326/ (ILcom/mojang/datafixers/schemas/Schema;)V net/minecraft/util/datafix/schemas/V3326/ (ILcom/mojang/datafixers/schemas/Schema;)V +MD: net/minecraft/util/datafix/schemas/V3326/m_271879_ (Lcom/mojang/datafixers/schemas/Schema;)Lcom/mojang/datafixers/types/templates/TypeTemplate; net/minecraft/util/datafix/schemas/V3326/lambda$registerEntities$0 (Lcom/mojang/datafixers/schemas/Schema;)Lcom/mojang/datafixers/types/templates/TypeTemplate; +MD: net/minecraft/util/datafix/schemas/V3326/registerEntities (Lcom/mojang/datafixers/schemas/Schema;)Ljava/util/Map; net/minecraft/util/datafix/schemas/V3326/registerEntities (Lcom/mojang/datafixers/schemas/Schema;)Ljava/util/Map; +MD: net/minecraft/util/datafix/schemas/V3327/ (ILcom/mojang/datafixers/schemas/Schema;)V net/minecraft/util/datafix/schemas/V3327/ (ILcom/mojang/datafixers/schemas/Schema;)V +MD: net/minecraft/util/datafix/schemas/V3327/m_271945_ (Lcom/mojang/datafixers/schemas/Schema;)Lcom/mojang/datafixers/types/templates/TypeTemplate; net/minecraft/util/datafix/schemas/V3327/lambda$registerBlockEntities$0 (Lcom/mojang/datafixers/schemas/Schema;)Lcom/mojang/datafixers/types/templates/TypeTemplate; +MD: net/minecraft/util/datafix/schemas/V3327/m_272152_ (Lcom/mojang/datafixers/schemas/Schema;)Lcom/mojang/datafixers/types/templates/TypeTemplate; net/minecraft/util/datafix/schemas/V3327/lambda$registerBlockEntities$1 (Lcom/mojang/datafixers/schemas/Schema;)Lcom/mojang/datafixers/types/templates/TypeTemplate; +MD: net/minecraft/util/datafix/schemas/V3327/registerBlockEntities (Lcom/mojang/datafixers/schemas/Schema;)Ljava/util/Map; net/minecraft/util/datafix/schemas/V3327/registerBlockEntities (Lcom/mojang/datafixers/schemas/Schema;)Ljava/util/Map; +MD: net/minecraft/util/datafix/schemas/V3328/ (ILcom/mojang/datafixers/schemas/Schema;)V net/minecraft/util/datafix/schemas/V3328/ (ILcom/mojang/datafixers/schemas/Schema;)V +MD: net/minecraft/util/datafix/schemas/V3328/registerEntities (Lcom/mojang/datafixers/schemas/Schema;)Ljava/util/Map; net/minecraft/util/datafix/schemas/V3328/registerEntities (Lcom/mojang/datafixers/schemas/Schema;)Ljava/util/Map; +MD: net/minecraft/util/datafix/schemas/V3438/ (ILcom/mojang/datafixers/schemas/Schema;)V net/minecraft/util/datafix/schemas/V3438/ (ILcom/mojang/datafixers/schemas/Schema;)V +MD: net/minecraft/util/datafix/schemas/V3438/registerBlockEntities (Lcom/mojang/datafixers/schemas/Schema;)Ljava/util/Map; net/minecraft/util/datafix/schemas/V3438/registerBlockEntities (Lcom/mojang/datafixers/schemas/Schema;)Ljava/util/Map; +MD: net/minecraft/util/datafix/schemas/V3448/ (ILcom/mojang/datafixers/schemas/Schema;)V net/minecraft/util/datafix/schemas/V3448/ (ILcom/mojang/datafixers/schemas/Schema;)V +MD: net/minecraft/util/datafix/schemas/V3448/m_280566_ (Lcom/mojang/datafixers/schemas/Schema;)Lcom/mojang/datafixers/types/templates/TypeTemplate; net/minecraft/util/datafix/schemas/V3448/lambda$registerBlockEntities$0 (Lcom/mojang/datafixers/schemas/Schema;)Lcom/mojang/datafixers/types/templates/TypeTemplate; +MD: net/minecraft/util/datafix/schemas/V3448/registerBlockEntities (Lcom/mojang/datafixers/schemas/Schema;)Ljava/util/Map; net/minecraft/util/datafix/schemas/V3448/registerBlockEntities (Lcom/mojang/datafixers/schemas/Schema;)Ljava/util/Map; +MD: net/minecraft/util/datafix/schemas/V501/ (ILcom/mojang/datafixers/schemas/Schema;)V net/minecraft/util/datafix/schemas/V501/ (ILcom/mojang/datafixers/schemas/Schema;)V +MD: net/minecraft/util/datafix/schemas/V501/m_17976_ (Lcom/mojang/datafixers/schemas/Schema;)Lcom/mojang/datafixers/types/templates/TypeTemplate; net/minecraft/util/datafix/schemas/V501/lambda$registerEntities$0 (Lcom/mojang/datafixers/schemas/Schema;)Lcom/mojang/datafixers/types/templates/TypeTemplate; +MD: net/minecraft/util/datafix/schemas/V501/registerEntities (Lcom/mojang/datafixers/schemas/Schema;)Ljava/util/Map; net/minecraft/util/datafix/schemas/V501/registerEntities (Lcom/mojang/datafixers/schemas/Schema;)Ljava/util/Map; +MD: net/minecraft/util/datafix/schemas/V700/ (ILcom/mojang/datafixers/schemas/Schema;)V net/minecraft/util/datafix/schemas/V700/ (ILcom/mojang/datafixers/schemas/Schema;)V +MD: net/minecraft/util/datafix/schemas/V700/m_17987_ (Lcom/mojang/datafixers/schemas/Schema;)Lcom/mojang/datafixers/types/templates/TypeTemplate; net/minecraft/util/datafix/schemas/V700/lambda$registerEntities$0 (Lcom/mojang/datafixers/schemas/Schema;)Lcom/mojang/datafixers/types/templates/TypeTemplate; +MD: net/minecraft/util/datafix/schemas/V700/registerEntities (Lcom/mojang/datafixers/schemas/Schema;)Ljava/util/Map; net/minecraft/util/datafix/schemas/V700/registerEntities (Lcom/mojang/datafixers/schemas/Schema;)Ljava/util/Map; +MD: net/minecraft/util/datafix/schemas/V701/ (ILcom/mojang/datafixers/schemas/Schema;)V net/minecraft/util/datafix/schemas/V701/ (ILcom/mojang/datafixers/schemas/Schema;)V +MD: net/minecraft/util/datafix/schemas/V701/m_17998_ (Lcom/mojang/datafixers/schemas/Schema;)Lcom/mojang/datafixers/types/templates/TypeTemplate; net/minecraft/util/datafix/schemas/V701/lambda$registerMob$0 (Lcom/mojang/datafixers/schemas/Schema;)Lcom/mojang/datafixers/types/templates/TypeTemplate; +MD: net/minecraft/util/datafix/schemas/V701/m_18000_ (Lcom/mojang/datafixers/schemas/Schema;Ljava/util/Map;Ljava/lang/String;)V net/minecraft/util/datafix/schemas/V701/registerMob (Lcom/mojang/datafixers/schemas/Schema;Ljava/util/Map;Ljava/lang/String;)V +MD: net/minecraft/util/datafix/schemas/V701/registerEntities (Lcom/mojang/datafixers/schemas/Schema;)Ljava/util/Map; net/minecraft/util/datafix/schemas/V701/registerEntities (Lcom/mojang/datafixers/schemas/Schema;)Ljava/util/Map; +MD: net/minecraft/util/datafix/schemas/V702/ (ILcom/mojang/datafixers/schemas/Schema;)V net/minecraft/util/datafix/schemas/V702/ (ILcom/mojang/datafixers/schemas/Schema;)V +MD: net/minecraft/util/datafix/schemas/V702/m_18009_ (Lcom/mojang/datafixers/schemas/Schema;)Lcom/mojang/datafixers/types/templates/TypeTemplate; net/minecraft/util/datafix/schemas/V702/lambda$registerMob$0 (Lcom/mojang/datafixers/schemas/Schema;)Lcom/mojang/datafixers/types/templates/TypeTemplate; +MD: net/minecraft/util/datafix/schemas/V702/m_18011_ (Lcom/mojang/datafixers/schemas/Schema;Ljava/util/Map;Ljava/lang/String;)V net/minecraft/util/datafix/schemas/V702/registerMob (Lcom/mojang/datafixers/schemas/Schema;Ljava/util/Map;Ljava/lang/String;)V +MD: net/minecraft/util/datafix/schemas/V702/registerEntities (Lcom/mojang/datafixers/schemas/Schema;)Ljava/util/Map; net/minecraft/util/datafix/schemas/V702/registerEntities (Lcom/mojang/datafixers/schemas/Schema;)Ljava/util/Map; +MD: net/minecraft/util/datafix/schemas/V703/ (ILcom/mojang/datafixers/schemas/Schema;)V net/minecraft/util/datafix/schemas/V703/ (ILcom/mojang/datafixers/schemas/Schema;)V +MD: net/minecraft/util/datafix/schemas/V703/m_18020_ (Lcom/mojang/datafixers/schemas/Schema;)Lcom/mojang/datafixers/types/templates/TypeTemplate; net/minecraft/util/datafix/schemas/V703/lambda$registerEntities$4 (Lcom/mojang/datafixers/schemas/Schema;)Lcom/mojang/datafixers/types/templates/TypeTemplate; +MD: net/minecraft/util/datafix/schemas/V703/m_18022_ (Lcom/mojang/datafixers/schemas/Schema;)Lcom/mojang/datafixers/types/templates/TypeTemplate; net/minecraft/util/datafix/schemas/V703/lambda$registerEntities$3 (Lcom/mojang/datafixers/schemas/Schema;)Lcom/mojang/datafixers/types/templates/TypeTemplate; +MD: net/minecraft/util/datafix/schemas/V703/m_18024_ (Lcom/mojang/datafixers/schemas/Schema;)Lcom/mojang/datafixers/types/templates/TypeTemplate; net/minecraft/util/datafix/schemas/V703/lambda$registerEntities$2 (Lcom/mojang/datafixers/schemas/Schema;)Lcom/mojang/datafixers/types/templates/TypeTemplate; +MD: net/minecraft/util/datafix/schemas/V703/m_18026_ (Lcom/mojang/datafixers/schemas/Schema;)Lcom/mojang/datafixers/types/templates/TypeTemplate; net/minecraft/util/datafix/schemas/V703/lambda$registerEntities$1 (Lcom/mojang/datafixers/schemas/Schema;)Lcom/mojang/datafixers/types/templates/TypeTemplate; +MD: net/minecraft/util/datafix/schemas/V703/m_18028_ (Lcom/mojang/datafixers/schemas/Schema;)Lcom/mojang/datafixers/types/templates/TypeTemplate; net/minecraft/util/datafix/schemas/V703/lambda$registerEntities$0 (Lcom/mojang/datafixers/schemas/Schema;)Lcom/mojang/datafixers/types/templates/TypeTemplate; +MD: net/minecraft/util/datafix/schemas/V703/registerEntities (Lcom/mojang/datafixers/schemas/Schema;)Ljava/util/Map; net/minecraft/util/datafix/schemas/V703/registerEntities (Lcom/mojang/datafixers/schemas/Schema;)Ljava/util/Map; +MD: net/minecraft/util/datafix/schemas/V704/ ()V net/minecraft/util/datafix/schemas/V704/ ()V +MD: net/minecraft/util/datafix/schemas/V704/ (ILcom/mojang/datafixers/schemas/Schema;)V net/minecraft/util/datafix/schemas/V704/ (ILcom/mojang/datafixers/schemas/Schema;)V +MD: net/minecraft/util/datafix/schemas/V704/getChoiceType (Lcom/mojang/datafixers/DSL$TypeReference;Ljava/lang/String;)Lcom/mojang/datafixers/types/Type; net/minecraft/util/datafix/schemas/V704/getChoiceType (Lcom/mojang/datafixers/DSL$TypeReference;Ljava/lang/String;)Lcom/mojang/datafixers/types/Type; +MD: net/minecraft/util/datafix/schemas/V704/m_18038_ (Lcom/mojang/datafixers/schemas/Schema;)Lcom/mojang/datafixers/types/templates/TypeTemplate; net/minecraft/util/datafix/schemas/V704/lambda$registerTypes$5 (Lcom/mojang/datafixers/schemas/Schema;)Lcom/mojang/datafixers/types/templates/TypeTemplate; +MD: net/minecraft/util/datafix/schemas/V704/m_18040_ (Lcom/mojang/datafixers/schemas/Schema;Ljava/lang/String;)Lcom/mojang/datafixers/types/templates/TypeTemplate; net/minecraft/util/datafix/schemas/V704/lambda$registerBlockEntities$3 (Lcom/mojang/datafixers/schemas/Schema;Ljava/lang/String;)Lcom/mojang/datafixers/types/templates/TypeTemplate; +MD: net/minecraft/util/datafix/schemas/V704/m_18043_ (Lcom/mojang/datafixers/schemas/Schema;Ljava/util/Map;Ljava/lang/String;)V net/minecraft/util/datafix/schemas/V704/registerInventory (Lcom/mojang/datafixers/schemas/Schema;Ljava/util/Map;Ljava/lang/String;)V +MD: net/minecraft/util/datafix/schemas/V704/m_18049_ (Ljava/util/Map;)Lcom/mojang/datafixers/types/templates/TypeTemplate; net/minecraft/util/datafix/schemas/V704/lambda$registerTypes$4 (Ljava/util/Map;)Lcom/mojang/datafixers/types/templates/TypeTemplate; +MD: net/minecraft/util/datafix/schemas/V704/m_18051_ (Lcom/mojang/datafixers/schemas/Schema;)Lcom/mojang/datafixers/types/templates/TypeTemplate; net/minecraft/util/datafix/schemas/V704/lambda$registerInventory$0 (Lcom/mojang/datafixers/schemas/Schema;)Lcom/mojang/datafixers/types/templates/TypeTemplate; +MD: net/minecraft/util/datafix/schemas/V704/m_18053_ (Lcom/mojang/datafixers/schemas/Schema;Ljava/lang/String;)Lcom/mojang/datafixers/types/templates/TypeTemplate; net/minecraft/util/datafix/schemas/V704/lambda$registerBlockEntities$2 (Lcom/mojang/datafixers/schemas/Schema;Ljava/lang/String;)Lcom/mojang/datafixers/types/templates/TypeTemplate; +MD: net/minecraft/util/datafix/schemas/V704/m_18056_ (Lcom/mojang/datafixers/schemas/Schema;Ljava/lang/String;)Lcom/mojang/datafixers/types/templates/TypeTemplate; net/minecraft/util/datafix/schemas/V704/lambda$registerBlockEntities$1 (Lcom/mojang/datafixers/schemas/Schema;Ljava/lang/String;)Lcom/mojang/datafixers/types/templates/TypeTemplate; +MD: net/minecraft/util/datafix/schemas/V704/m_279903_ ()Lcom/google/common/collect/ImmutableMap; net/minecraft/util/datafix/schemas/V704/lambda$static$6 ()Lcom/google/common/collect/ImmutableMap; +MD: net/minecraft/util/datafix/schemas/V704/registerBlockEntities (Lcom/mojang/datafixers/schemas/Schema;)Ljava/util/Map; net/minecraft/util/datafix/schemas/V704/registerBlockEntities (Lcom/mojang/datafixers/schemas/Schema;)Ljava/util/Map; +MD: net/minecraft/util/datafix/schemas/V704/registerTypes (Lcom/mojang/datafixers/schemas/Schema;Ljava/util/Map;Ljava/util/Map;)V net/minecraft/util/datafix/schemas/V704/registerTypes (Lcom/mojang/datafixers/schemas/Schema;Ljava/util/Map;Ljava/util/Map;)V +MD: net/minecraft/util/datafix/schemas/V704$1/ ()V net/minecraft/util/datafix/schemas/V704$1/ ()V +MD: net/minecraft/util/datafix/schemas/V704$1/apply (Lcom/mojang/serialization/DynamicOps;Ljava/lang/Object;)Ljava/lang/Object; net/minecraft/util/datafix/schemas/V704$1/apply (Lcom/mojang/serialization/DynamicOps;Ljava/lang/Object;)Ljava/lang/Object; +MD: net/minecraft/util/datafix/schemas/V705/ ()V net/minecraft/util/datafix/schemas/V705/ ()V +MD: net/minecraft/util/datafix/schemas/V705/ (ILcom/mojang/datafixers/schemas/Schema;)V net/minecraft/util/datafix/schemas/V705/ (ILcom/mojang/datafixers/schemas/Schema;)V +MD: net/minecraft/util/datafix/schemas/V705/m_18077_ (Lcom/mojang/datafixers/schemas/Schema;)Lcom/mojang/datafixers/types/templates/TypeTemplate; net/minecraft/util/datafix/schemas/V705/lambda$registerTypes$25 (Lcom/mojang/datafixers/schemas/Schema;)Lcom/mojang/datafixers/types/templates/TypeTemplate; +MD: net/minecraft/util/datafix/schemas/V705/m_18079_ (Lcom/mojang/datafixers/schemas/Schema;Ljava/lang/String;)Lcom/mojang/datafixers/types/templates/TypeTemplate; net/minecraft/util/datafix/schemas/V705/lambda$registerEntities$23 (Lcom/mojang/datafixers/schemas/Schema;Ljava/lang/String;)Lcom/mojang/datafixers/types/templates/TypeTemplate; +MD: net/minecraft/util/datafix/schemas/V705/m_18082_ (Lcom/mojang/datafixers/schemas/Schema;Ljava/util/Map;Ljava/lang/String;)V net/minecraft/util/datafix/schemas/V705/registerMob (Lcom/mojang/datafixers/schemas/Schema;Ljava/util/Map;Ljava/lang/String;)V +MD: net/minecraft/util/datafix/schemas/V705/m_18086_ (Ljava/util/Map;)Lcom/mojang/datafixers/types/templates/TypeTemplate; net/minecraft/util/datafix/schemas/V705/lambda$registerTypes$24 (Ljava/util/Map;)Lcom/mojang/datafixers/types/templates/TypeTemplate; +MD: net/minecraft/util/datafix/schemas/V705/m_18088_ (Lcom/mojang/datafixers/schemas/Schema;)Lcom/mojang/datafixers/types/templates/TypeTemplate; net/minecraft/util/datafix/schemas/V705/lambda$registerThrowableProjectile$1 (Lcom/mojang/datafixers/schemas/Schema;)Lcom/mojang/datafixers/types/templates/TypeTemplate; +MD: net/minecraft/util/datafix/schemas/V705/m_18090_ (Lcom/mojang/datafixers/schemas/Schema;Ljava/lang/String;)Lcom/mojang/datafixers/types/templates/TypeTemplate; net/minecraft/util/datafix/schemas/V705/lambda$registerEntities$22 (Lcom/mojang/datafixers/schemas/Schema;Ljava/lang/String;)Lcom/mojang/datafixers/types/templates/TypeTemplate; +MD: net/minecraft/util/datafix/schemas/V705/m_18093_ (Lcom/mojang/datafixers/schemas/Schema;Ljava/util/Map;Ljava/lang/String;)V net/minecraft/util/datafix/schemas/V705/registerThrowableProjectile (Lcom/mojang/datafixers/schemas/Schema;Ljava/util/Map;Ljava/lang/String;)V +MD: net/minecraft/util/datafix/schemas/V705/m_18097_ (Lcom/mojang/datafixers/schemas/Schema;)Lcom/mojang/datafixers/types/templates/TypeTemplate; net/minecraft/util/datafix/schemas/V705/lambda$registerMob$0 (Lcom/mojang/datafixers/schemas/Schema;)Lcom/mojang/datafixers/types/templates/TypeTemplate; +MD: net/minecraft/util/datafix/schemas/V705/m_18099_ (Lcom/mojang/datafixers/schemas/Schema;Ljava/lang/String;)Lcom/mojang/datafixers/types/templates/TypeTemplate; net/minecraft/util/datafix/schemas/V705/lambda$registerEntities$21 (Lcom/mojang/datafixers/schemas/Schema;Ljava/lang/String;)Lcom/mojang/datafixers/types/templates/TypeTemplate; +MD: net/minecraft/util/datafix/schemas/V705/m_18102_ (Lcom/mojang/datafixers/schemas/Schema;Ljava/lang/String;)Lcom/mojang/datafixers/types/templates/TypeTemplate; net/minecraft/util/datafix/schemas/V705/lambda$registerEntities$20 (Lcom/mojang/datafixers/schemas/Schema;Ljava/lang/String;)Lcom/mojang/datafixers/types/templates/TypeTemplate; +MD: net/minecraft/util/datafix/schemas/V705/m_18105_ (Lcom/mojang/datafixers/schemas/Schema;Ljava/lang/String;)Lcom/mojang/datafixers/types/templates/TypeTemplate; net/minecraft/util/datafix/schemas/V705/lambda$registerEntities$19 (Lcom/mojang/datafixers/schemas/Schema;Ljava/lang/String;)Lcom/mojang/datafixers/types/templates/TypeTemplate; +MD: net/minecraft/util/datafix/schemas/V705/m_18108_ (Lcom/mojang/datafixers/schemas/Schema;Ljava/lang/String;)Lcom/mojang/datafixers/types/templates/TypeTemplate; net/minecraft/util/datafix/schemas/V705/lambda$registerEntities$18 (Lcom/mojang/datafixers/schemas/Schema;Ljava/lang/String;)Lcom/mojang/datafixers/types/templates/TypeTemplate; +MD: net/minecraft/util/datafix/schemas/V705/m_18111_ (Lcom/mojang/datafixers/schemas/Schema;Ljava/lang/String;)Lcom/mojang/datafixers/types/templates/TypeTemplate; net/minecraft/util/datafix/schemas/V705/lambda$registerEntities$17 (Lcom/mojang/datafixers/schemas/Schema;Ljava/lang/String;)Lcom/mojang/datafixers/types/templates/TypeTemplate; +MD: net/minecraft/util/datafix/schemas/V705/m_18114_ (Lcom/mojang/datafixers/schemas/Schema;Ljava/lang/String;)Lcom/mojang/datafixers/types/templates/TypeTemplate; net/minecraft/util/datafix/schemas/V705/lambda$registerEntities$16 (Lcom/mojang/datafixers/schemas/Schema;Ljava/lang/String;)Lcom/mojang/datafixers/types/templates/TypeTemplate; +MD: net/minecraft/util/datafix/schemas/V705/m_18117_ (Lcom/mojang/datafixers/schemas/Schema;Ljava/lang/String;)Lcom/mojang/datafixers/types/templates/TypeTemplate; net/minecraft/util/datafix/schemas/V705/lambda$registerEntities$15 (Lcom/mojang/datafixers/schemas/Schema;Ljava/lang/String;)Lcom/mojang/datafixers/types/templates/TypeTemplate; +MD: net/minecraft/util/datafix/schemas/V705/m_18120_ (Lcom/mojang/datafixers/schemas/Schema;Ljava/lang/String;)Lcom/mojang/datafixers/types/templates/TypeTemplate; net/minecraft/util/datafix/schemas/V705/lambda$registerEntities$14 (Lcom/mojang/datafixers/schemas/Schema;Ljava/lang/String;)Lcom/mojang/datafixers/types/templates/TypeTemplate; +MD: net/minecraft/util/datafix/schemas/V705/m_18123_ (Lcom/mojang/datafixers/schemas/Schema;Ljava/lang/String;)Lcom/mojang/datafixers/types/templates/TypeTemplate; net/minecraft/util/datafix/schemas/V705/lambda$registerEntities$13 (Lcom/mojang/datafixers/schemas/Schema;Ljava/lang/String;)Lcom/mojang/datafixers/types/templates/TypeTemplate; +MD: net/minecraft/util/datafix/schemas/V705/m_18126_ (Lcom/mojang/datafixers/schemas/Schema;Ljava/lang/String;)Lcom/mojang/datafixers/types/templates/TypeTemplate; net/minecraft/util/datafix/schemas/V705/lambda$registerEntities$12 (Lcom/mojang/datafixers/schemas/Schema;Ljava/lang/String;)Lcom/mojang/datafixers/types/templates/TypeTemplate; +MD: net/minecraft/util/datafix/schemas/V705/m_18129_ (Lcom/mojang/datafixers/schemas/Schema;Ljava/lang/String;)Lcom/mojang/datafixers/types/templates/TypeTemplate; net/minecraft/util/datafix/schemas/V705/lambda$registerEntities$11 (Lcom/mojang/datafixers/schemas/Schema;Ljava/lang/String;)Lcom/mojang/datafixers/types/templates/TypeTemplate; +MD: net/minecraft/util/datafix/schemas/V705/m_18132_ (Lcom/mojang/datafixers/schemas/Schema;Ljava/lang/String;)Lcom/mojang/datafixers/types/templates/TypeTemplate; net/minecraft/util/datafix/schemas/V705/lambda$registerEntities$10 (Lcom/mojang/datafixers/schemas/Schema;Ljava/lang/String;)Lcom/mojang/datafixers/types/templates/TypeTemplate; +MD: net/minecraft/util/datafix/schemas/V705/m_18135_ (Lcom/mojang/datafixers/schemas/Schema;Ljava/lang/String;)Lcom/mojang/datafixers/types/templates/TypeTemplate; net/minecraft/util/datafix/schemas/V705/lambda$registerEntities$9 (Lcom/mojang/datafixers/schemas/Schema;Ljava/lang/String;)Lcom/mojang/datafixers/types/templates/TypeTemplate; +MD: net/minecraft/util/datafix/schemas/V705/m_18138_ (Lcom/mojang/datafixers/schemas/Schema;Ljava/lang/String;)Lcom/mojang/datafixers/types/templates/TypeTemplate; net/minecraft/util/datafix/schemas/V705/lambda$registerEntities$8 (Lcom/mojang/datafixers/schemas/Schema;Ljava/lang/String;)Lcom/mojang/datafixers/types/templates/TypeTemplate; +MD: net/minecraft/util/datafix/schemas/V705/m_18141_ (Lcom/mojang/datafixers/schemas/Schema;Ljava/lang/String;)Lcom/mojang/datafixers/types/templates/TypeTemplate; net/minecraft/util/datafix/schemas/V705/lambda$registerEntities$7 (Lcom/mojang/datafixers/schemas/Schema;Ljava/lang/String;)Lcom/mojang/datafixers/types/templates/TypeTemplate; +MD: net/minecraft/util/datafix/schemas/V705/m_18144_ (Lcom/mojang/datafixers/schemas/Schema;Ljava/lang/String;)Lcom/mojang/datafixers/types/templates/TypeTemplate; net/minecraft/util/datafix/schemas/V705/lambda$registerEntities$6 (Lcom/mojang/datafixers/schemas/Schema;Ljava/lang/String;)Lcom/mojang/datafixers/types/templates/TypeTemplate; +MD: net/minecraft/util/datafix/schemas/V705/m_18153_ (Lcom/mojang/datafixers/schemas/Schema;Ljava/lang/String;)Lcom/mojang/datafixers/types/templates/TypeTemplate; net/minecraft/util/datafix/schemas/V705/lambda$registerEntities$5 (Lcom/mojang/datafixers/schemas/Schema;Ljava/lang/String;)Lcom/mojang/datafixers/types/templates/TypeTemplate; +MD: net/minecraft/util/datafix/schemas/V705/m_18156_ (Lcom/mojang/datafixers/schemas/Schema;Ljava/lang/String;)Lcom/mojang/datafixers/types/templates/TypeTemplate; net/minecraft/util/datafix/schemas/V705/lambda$registerEntities$4 (Lcom/mojang/datafixers/schemas/Schema;Ljava/lang/String;)Lcom/mojang/datafixers/types/templates/TypeTemplate; +MD: net/minecraft/util/datafix/schemas/V705/m_18159_ (Lcom/mojang/datafixers/schemas/Schema;Ljava/lang/String;)Lcom/mojang/datafixers/types/templates/TypeTemplate; net/minecraft/util/datafix/schemas/V705/lambda$registerEntities$3 (Lcom/mojang/datafixers/schemas/Schema;Ljava/lang/String;)Lcom/mojang/datafixers/types/templates/TypeTemplate; +MD: net/minecraft/util/datafix/schemas/V705/m_18162_ (Lcom/mojang/datafixers/schemas/Schema;Ljava/lang/String;)Lcom/mojang/datafixers/types/templates/TypeTemplate; net/minecraft/util/datafix/schemas/V705/lambda$registerEntities$2 (Lcom/mojang/datafixers/schemas/Schema;Ljava/lang/String;)Lcom/mojang/datafixers/types/templates/TypeTemplate; +MD: net/minecraft/util/datafix/schemas/V705/registerEntities (Lcom/mojang/datafixers/schemas/Schema;)Ljava/util/Map; net/minecraft/util/datafix/schemas/V705/registerEntities (Lcom/mojang/datafixers/schemas/Schema;)Ljava/util/Map; +MD: net/minecraft/util/datafix/schemas/V705/registerTypes (Lcom/mojang/datafixers/schemas/Schema;Ljava/util/Map;Ljava/util/Map;)V net/minecraft/util/datafix/schemas/V705/registerTypes (Lcom/mojang/datafixers/schemas/Schema;Ljava/util/Map;Ljava/util/Map;)V +MD: net/minecraft/util/datafix/schemas/V705$1/ ()V net/minecraft/util/datafix/schemas/V705$1/ ()V +MD: net/minecraft/util/datafix/schemas/V705$1/apply (Lcom/mojang/serialization/DynamicOps;Ljava/lang/Object;)Ljava/lang/Object; net/minecraft/util/datafix/schemas/V705$1/apply (Lcom/mojang/serialization/DynamicOps;Ljava/lang/Object;)Ljava/lang/Object; +MD: net/minecraft/util/datafix/schemas/V808/ (ILcom/mojang/datafixers/schemas/Schema;)V net/minecraft/util/datafix/schemas/V808/ (ILcom/mojang/datafixers/schemas/Schema;)V +MD: net/minecraft/util/datafix/schemas/V808/m_18172_ (Lcom/mojang/datafixers/schemas/Schema;)Lcom/mojang/datafixers/types/templates/TypeTemplate; net/minecraft/util/datafix/schemas/V808/lambda$registerInventory$0 (Lcom/mojang/datafixers/schemas/Schema;)Lcom/mojang/datafixers/types/templates/TypeTemplate; +MD: net/minecraft/util/datafix/schemas/V808/m_18174_ (Lcom/mojang/datafixers/schemas/Schema;Ljava/util/Map;Ljava/lang/String;)V net/minecraft/util/datafix/schemas/V808/registerInventory (Lcom/mojang/datafixers/schemas/Schema;Ljava/util/Map;Ljava/lang/String;)V +MD: net/minecraft/util/datafix/schemas/V808/registerBlockEntities (Lcom/mojang/datafixers/schemas/Schema;)Ljava/util/Map; net/minecraft/util/datafix/schemas/V808/registerBlockEntities (Lcom/mojang/datafixers/schemas/Schema;)Ljava/util/Map; +MD: net/minecraft/util/datafix/schemas/V99/ ()V net/minecraft/util/datafix/schemas/V99/ ()V +MD: net/minecraft/util/datafix/schemas/V99/ (ILcom/mojang/datafixers/schemas/Schema;)V net/minecraft/util/datafix/schemas/V99/ (ILcom/mojang/datafixers/schemas/Schema;)V +MD: net/minecraft/util/datafix/schemas/V99/m_145905_ (Lcom/mojang/serialization/Dynamic;Ljava/lang/String;Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/schemas/V99/lambda$addNames$35 (Lcom/mojang/serialization/Dynamic;Ljava/lang/String;Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/schemas/V99/m_145909_ (Lcom/mojang/serialization/Dynamic;Ljava/util/Map;Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/schemas/V99/lambda$addNames$34 (Lcom/mojang/serialization/Dynamic;Ljava/util/Map;Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/schemas/V99/m_145913_ (Lcom/mojang/serialization/Dynamic;Ljava/util/Map;Ljava/lang/String;Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; net/minecraft/util/datafix/schemas/V99/lambda$addNames$36 (Lcom/mojang/serialization/Dynamic;Ljava/util/Map;Ljava/lang/String;Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/util/datafix/schemas/V99/m_145918_ (Ljava/util/HashMap;)V net/minecraft/util/datafix/schemas/V99/lambda$static$33 (Ljava/util/HashMap;)V +MD: net/minecraft/util/datafix/schemas/V99/m_145920_ (Lcom/mojang/datafixers/schemas/Schema;)Lcom/mojang/datafixers/types/templates/TypeTemplate; net/minecraft/util/datafix/schemas/V99/lambda$registerTypes$32 (Lcom/mojang/datafixers/schemas/Schema;)Lcom/mojang/datafixers/types/templates/TypeTemplate; +MD: net/minecraft/util/datafix/schemas/V99/m_18188_ (Lcom/mojang/datafixers/schemas/Schema;)Lcom/mojang/datafixers/types/templates/TypeTemplate; net/minecraft/util/datafix/schemas/V99/equipment (Lcom/mojang/datafixers/schemas/Schema;)Lcom/mojang/datafixers/types/templates/TypeTemplate; +MD: net/minecraft/util/datafix/schemas/V99/m_18190_ (Lcom/mojang/datafixers/schemas/Schema;Ljava/lang/String;)Lcom/mojang/datafixers/types/templates/TypeTemplate; net/minecraft/util/datafix/schemas/V99/lambda$registerBlockEntities$21 (Lcom/mojang/datafixers/schemas/Schema;Ljava/lang/String;)Lcom/mojang/datafixers/types/templates/TypeTemplate; +MD: net/minecraft/util/datafix/schemas/V99/m_18193_ (Lcom/mojang/datafixers/schemas/Schema;Ljava/util/Map;Ljava/lang/String;)V net/minecraft/util/datafix/schemas/V99/registerMob (Lcom/mojang/datafixers/schemas/Schema;Ljava/util/Map;Ljava/lang/String;)V +MD: net/minecraft/util/datafix/schemas/V99/m_18205_ (Lcom/mojang/serialization/Dynamic;Ljava/util/Map;Ljava/lang/String;)Ljava/lang/Object; net/minecraft/util/datafix/schemas/V99/addNames (Lcom/mojang/serialization/Dynamic;Ljava/util/Map;Ljava/lang/String;)Ljava/lang/Object; +MD: net/minecraft/util/datafix/schemas/V99/m_18216_ (Ljava/util/Map;)Lcom/mojang/datafixers/types/templates/TypeTemplate; net/minecraft/util/datafix/schemas/V99/lambda$registerTypes$27 (Ljava/util/Map;)Lcom/mojang/datafixers/types/templates/TypeTemplate; +MD: net/minecraft/util/datafix/schemas/V99/m_18218_ ()Lcom/mojang/datafixers/types/templates/TypeTemplate; net/minecraft/util/datafix/schemas/V99/lambda$registerTypes$30 ()Lcom/mojang/datafixers/types/templates/TypeTemplate; +MD: net/minecraft/util/datafix/schemas/V99/m_18219_ (Lcom/mojang/datafixers/schemas/Schema;)Lcom/mojang/datafixers/types/templates/TypeTemplate; net/minecraft/util/datafix/schemas/V99/lambda$registerTypes$31 (Lcom/mojang/datafixers/schemas/Schema;)Lcom/mojang/datafixers/types/templates/TypeTemplate; +MD: net/minecraft/util/datafix/schemas/V99/m_18221_ (Lcom/mojang/datafixers/schemas/Schema;Ljava/lang/String;)Lcom/mojang/datafixers/types/templates/TypeTemplate; net/minecraft/util/datafix/schemas/V99/lambda$registerBlockEntities$20 (Lcom/mojang/datafixers/schemas/Schema;Ljava/lang/String;)Lcom/mojang/datafixers/types/templates/TypeTemplate; +MD: net/minecraft/util/datafix/schemas/V99/m_18224_ (Lcom/mojang/datafixers/schemas/Schema;Ljava/util/Map;Ljava/lang/String;)V net/minecraft/util/datafix/schemas/V99/registerThrowableProjectile (Lcom/mojang/datafixers/schemas/Schema;Ljava/util/Map;Ljava/lang/String;)V +MD: net/minecraft/util/datafix/schemas/V99/m_18228_ (Ljava/util/Map;)Lcom/mojang/datafixers/types/templates/TypeTemplate; net/minecraft/util/datafix/schemas/V99/lambda$registerTypes$24 (Ljava/util/Map;)Lcom/mojang/datafixers/types/templates/TypeTemplate; +MD: net/minecraft/util/datafix/schemas/V99/m_18230_ ()Lcom/mojang/datafixers/types/templates/TypeTemplate; net/minecraft/util/datafix/schemas/V99/lambda$registerTypes$29 ()Lcom/mojang/datafixers/types/templates/TypeTemplate; +MD: net/minecraft/util/datafix/schemas/V99/m_18231_ (Lcom/mojang/datafixers/schemas/Schema;)Lcom/mojang/datafixers/types/templates/TypeTemplate; net/minecraft/util/datafix/schemas/V99/lambda$registerTypes$28 (Lcom/mojang/datafixers/schemas/Schema;)Lcom/mojang/datafixers/types/templates/TypeTemplate; +MD: net/minecraft/util/datafix/schemas/V99/m_18233_ (Lcom/mojang/datafixers/schemas/Schema;Ljava/lang/String;)Lcom/mojang/datafixers/types/templates/TypeTemplate; net/minecraft/util/datafix/schemas/V99/lambda$registerBlockEntities$19 (Lcom/mojang/datafixers/schemas/Schema;Ljava/lang/String;)Lcom/mojang/datafixers/types/templates/TypeTemplate; +MD: net/minecraft/util/datafix/schemas/V99/m_18236_ (Lcom/mojang/datafixers/schemas/Schema;Ljava/util/Map;Ljava/lang/String;)V net/minecraft/util/datafix/schemas/V99/registerMinecart (Lcom/mojang/datafixers/schemas/Schema;Ljava/util/Map;Ljava/lang/String;)V +MD: net/minecraft/util/datafix/schemas/V99/m_18240_ ()Lcom/mojang/datafixers/types/templates/TypeTemplate; net/minecraft/util/datafix/schemas/V99/lambda$registerTypes$26 ()Lcom/mojang/datafixers/types/templates/TypeTemplate; +MD: net/minecraft/util/datafix/schemas/V99/m_18241_ (Lcom/mojang/datafixers/schemas/Schema;)Lcom/mojang/datafixers/types/templates/TypeTemplate; net/minecraft/util/datafix/schemas/V99/lambda$registerTypes$25 (Lcom/mojang/datafixers/schemas/Schema;)Lcom/mojang/datafixers/types/templates/TypeTemplate; +MD: net/minecraft/util/datafix/schemas/V99/m_18243_ (Lcom/mojang/datafixers/schemas/Schema;Ljava/lang/String;)Lcom/mojang/datafixers/types/templates/TypeTemplate; net/minecraft/util/datafix/schemas/V99/lambda$registerEntities$18 (Lcom/mojang/datafixers/schemas/Schema;Ljava/lang/String;)Lcom/mojang/datafixers/types/templates/TypeTemplate; +MD: net/minecraft/util/datafix/schemas/V99/m_18246_ (Lcom/mojang/datafixers/schemas/Schema;Ljava/util/Map;Ljava/lang/String;)V net/minecraft/util/datafix/schemas/V99/registerInventory (Lcom/mojang/datafixers/schemas/Schema;Ljava/util/Map;Ljava/lang/String;)V +MD: net/minecraft/util/datafix/schemas/V99/m_18250_ (Lcom/mojang/datafixers/schemas/Schema;)Lcom/mojang/datafixers/types/templates/TypeTemplate; net/minecraft/util/datafix/schemas/V99/lambda$registerTypes$23 (Lcom/mojang/datafixers/schemas/Schema;)Lcom/mojang/datafixers/types/templates/TypeTemplate; +MD: net/minecraft/util/datafix/schemas/V99/m_18252_ (Lcom/mojang/datafixers/schemas/Schema;Ljava/lang/String;)Lcom/mojang/datafixers/types/templates/TypeTemplate; net/minecraft/util/datafix/schemas/V99/lambda$registerEntities$17 (Lcom/mojang/datafixers/schemas/Schema;Ljava/lang/String;)Lcom/mojang/datafixers/types/templates/TypeTemplate; +MD: net/minecraft/util/datafix/schemas/V99/m_18255_ (Lcom/mojang/datafixers/schemas/Schema;)Lcom/mojang/datafixers/types/templates/TypeTemplate; net/minecraft/util/datafix/schemas/V99/lambda$registerTypes$22 (Lcom/mojang/datafixers/schemas/Schema;)Lcom/mojang/datafixers/types/templates/TypeTemplate; +MD: net/minecraft/util/datafix/schemas/V99/m_18257_ (Lcom/mojang/datafixers/schemas/Schema;Ljava/lang/String;)Lcom/mojang/datafixers/types/templates/TypeTemplate; net/minecraft/util/datafix/schemas/V99/lambda$registerEntities$16 (Lcom/mojang/datafixers/schemas/Schema;Ljava/lang/String;)Lcom/mojang/datafixers/types/templates/TypeTemplate; +MD: net/minecraft/util/datafix/schemas/V99/m_18260_ (Lcom/mojang/datafixers/schemas/Schema;)Lcom/mojang/datafixers/types/templates/TypeTemplate; net/minecraft/util/datafix/schemas/V99/lambda$registerEntities$14 (Lcom/mojang/datafixers/schemas/Schema;)Lcom/mojang/datafixers/types/templates/TypeTemplate; +MD: net/minecraft/util/datafix/schemas/V99/m_18262_ (Lcom/mojang/datafixers/schemas/Schema;Ljava/lang/String;)Lcom/mojang/datafixers/types/templates/TypeTemplate; net/minecraft/util/datafix/schemas/V99/lambda$registerEntities$15 (Lcom/mojang/datafixers/schemas/Schema;Ljava/lang/String;)Lcom/mojang/datafixers/types/templates/TypeTemplate; +MD: net/minecraft/util/datafix/schemas/V99/m_18265_ (Lcom/mojang/datafixers/schemas/Schema;)Lcom/mojang/datafixers/types/templates/TypeTemplate; net/minecraft/util/datafix/schemas/V99/lambda$registerEntities$12 (Lcom/mojang/datafixers/schemas/Schema;)Lcom/mojang/datafixers/types/templates/TypeTemplate; +MD: net/minecraft/util/datafix/schemas/V99/m_18267_ (Lcom/mojang/datafixers/schemas/Schema;Ljava/lang/String;)Lcom/mojang/datafixers/types/templates/TypeTemplate; net/minecraft/util/datafix/schemas/V99/lambda$registerEntities$13 (Lcom/mojang/datafixers/schemas/Schema;Ljava/lang/String;)Lcom/mojang/datafixers/types/templates/TypeTemplate; +MD: net/minecraft/util/datafix/schemas/V99/m_18270_ (Lcom/mojang/datafixers/schemas/Schema;)Lcom/mojang/datafixers/types/templates/TypeTemplate; net/minecraft/util/datafix/schemas/V99/lambda$registerInventory$3 (Lcom/mojang/datafixers/schemas/Schema;)Lcom/mojang/datafixers/types/templates/TypeTemplate; +MD: net/minecraft/util/datafix/schemas/V99/m_18272_ (Lcom/mojang/datafixers/schemas/Schema;Ljava/lang/String;)Lcom/mojang/datafixers/types/templates/TypeTemplate; net/minecraft/util/datafix/schemas/V99/lambda$registerEntities$11 (Lcom/mojang/datafixers/schemas/Schema;Ljava/lang/String;)Lcom/mojang/datafixers/types/templates/TypeTemplate; +MD: net/minecraft/util/datafix/schemas/V99/m_18275_ (Lcom/mojang/datafixers/schemas/Schema;)Lcom/mojang/datafixers/types/templates/TypeTemplate; net/minecraft/util/datafix/schemas/V99/lambda$registerMinecart$2 (Lcom/mojang/datafixers/schemas/Schema;)Lcom/mojang/datafixers/types/templates/TypeTemplate; +MD: net/minecraft/util/datafix/schemas/V99/m_18277_ (Lcom/mojang/datafixers/schemas/Schema;Ljava/lang/String;)Lcom/mojang/datafixers/types/templates/TypeTemplate; net/minecraft/util/datafix/schemas/V99/lambda$registerEntities$10 (Lcom/mojang/datafixers/schemas/Schema;Ljava/lang/String;)Lcom/mojang/datafixers/types/templates/TypeTemplate; +MD: net/minecraft/util/datafix/schemas/V99/m_18280_ (Lcom/mojang/datafixers/schemas/Schema;)Lcom/mojang/datafixers/types/templates/TypeTemplate; net/minecraft/util/datafix/schemas/V99/lambda$registerThrowableProjectile$1 (Lcom/mojang/datafixers/schemas/Schema;)Lcom/mojang/datafixers/types/templates/TypeTemplate; +MD: net/minecraft/util/datafix/schemas/V99/m_18282_ (Lcom/mojang/datafixers/schemas/Schema;Ljava/lang/String;)Lcom/mojang/datafixers/types/templates/TypeTemplate; net/minecraft/util/datafix/schemas/V99/lambda$registerEntities$9 (Lcom/mojang/datafixers/schemas/Schema;Ljava/lang/String;)Lcom/mojang/datafixers/types/templates/TypeTemplate; +MD: net/minecraft/util/datafix/schemas/V99/m_18285_ (Lcom/mojang/datafixers/schemas/Schema;)Lcom/mojang/datafixers/types/templates/TypeTemplate; net/minecraft/util/datafix/schemas/V99/lambda$registerMob$0 (Lcom/mojang/datafixers/schemas/Schema;)Lcom/mojang/datafixers/types/templates/TypeTemplate; +MD: net/minecraft/util/datafix/schemas/V99/m_18287_ (Lcom/mojang/datafixers/schemas/Schema;Ljava/lang/String;)Lcom/mojang/datafixers/types/templates/TypeTemplate; net/minecraft/util/datafix/schemas/V99/lambda$registerEntities$8 (Lcom/mojang/datafixers/schemas/Schema;Ljava/lang/String;)Lcom/mojang/datafixers/types/templates/TypeTemplate; +MD: net/minecraft/util/datafix/schemas/V99/m_18290_ (Lcom/mojang/datafixers/schemas/Schema;Ljava/lang/String;)Lcom/mojang/datafixers/types/templates/TypeTemplate; net/minecraft/util/datafix/schemas/V99/lambda$registerEntities$7 (Lcom/mojang/datafixers/schemas/Schema;Ljava/lang/String;)Lcom/mojang/datafixers/types/templates/TypeTemplate; +MD: net/minecraft/util/datafix/schemas/V99/m_18293_ (Lcom/mojang/datafixers/schemas/Schema;Ljava/lang/String;)Lcom/mojang/datafixers/types/templates/TypeTemplate; net/minecraft/util/datafix/schemas/V99/lambda$registerEntities$6 (Lcom/mojang/datafixers/schemas/Schema;Ljava/lang/String;)Lcom/mojang/datafixers/types/templates/TypeTemplate; +MD: net/minecraft/util/datafix/schemas/V99/m_18296_ (Lcom/mojang/datafixers/schemas/Schema;Ljava/lang/String;)Lcom/mojang/datafixers/types/templates/TypeTemplate; net/minecraft/util/datafix/schemas/V99/lambda$registerEntities$5 (Lcom/mojang/datafixers/schemas/Schema;Ljava/lang/String;)Lcom/mojang/datafixers/types/templates/TypeTemplate; +MD: net/minecraft/util/datafix/schemas/V99/m_18299_ (Lcom/mojang/datafixers/schemas/Schema;Ljava/lang/String;)Lcom/mojang/datafixers/types/templates/TypeTemplate; net/minecraft/util/datafix/schemas/V99/lambda$registerEntities$4 (Lcom/mojang/datafixers/schemas/Schema;Ljava/lang/String;)Lcom/mojang/datafixers/types/templates/TypeTemplate; +MD: net/minecraft/util/datafix/schemas/V99/registerBlockEntities (Lcom/mojang/datafixers/schemas/Schema;)Ljava/util/Map; net/minecraft/util/datafix/schemas/V99/registerBlockEntities (Lcom/mojang/datafixers/schemas/Schema;)Ljava/util/Map; +MD: net/minecraft/util/datafix/schemas/V99/registerEntities (Lcom/mojang/datafixers/schemas/Schema;)Ljava/util/Map; net/minecraft/util/datafix/schemas/V99/registerEntities (Lcom/mojang/datafixers/schemas/Schema;)Ljava/util/Map; +MD: net/minecraft/util/datafix/schemas/V99/registerTypes (Lcom/mojang/datafixers/schemas/Schema;Ljava/util/Map;Ljava/util/Map;)V net/minecraft/util/datafix/schemas/V99/registerTypes (Lcom/mojang/datafixers/schemas/Schema;Ljava/util/Map;Ljava/util/Map;)V +MD: net/minecraft/util/datafix/schemas/V99$1/ ()V net/minecraft/util/datafix/schemas/V99$1/ ()V +MD: net/minecraft/util/datafix/schemas/V99$1/apply (Lcom/mojang/serialization/DynamicOps;Ljava/lang/Object;)Ljava/lang/Object; net/minecraft/util/datafix/schemas/V99$1/apply (Lcom/mojang/serialization/DynamicOps;Ljava/lang/Object;)Ljava/lang/Object; +MD: net/minecraft/util/eventlog/EventLogDirectory/ ()V net/minecraft/util/eventlog/EventLogDirectory/ ()V +MD: net/minecraft/util/eventlog/EventLogDirectory/ (Ljava/nio/file/Path;Ljava/lang/String;)V net/minecraft/util/eventlog/EventLogDirectory/ (Ljava/nio/file/Path;Ljava/lang/String;)V +MD: net/minecraft/util/eventlog/EventLogDirectory/m_260828_ (Ljava/nio/file/Path;Ljava/nio/file/Path;)V net/minecraft/util/eventlog/EventLogDirectory/tryCompress (Ljava/nio/file/Path;Ljava/nio/file/Path;)V +MD: net/minecraft/util/eventlog/EventLogDirectory/m_260829_ (Ljava/nio/file/Path;)Lnet/minecraft/util/eventlog/EventLogDirectory$File; net/minecraft/util/eventlog/EventLogDirectory/parseFile (Ljava/nio/file/Path;)Lnet/minecraft/util/eventlog/EventLogDirectory$File; +MD: net/minecraft/util/eventlog/EventLogDirectory/m_260952_ (Ljava/nio/file/Path;Ljava/lang/String;)Lnet/minecraft/util/eventlog/EventLogDirectory; net/minecraft/util/eventlog/EventLogDirectory/open (Ljava/nio/file/Path;Ljava/lang/String;)Lnet/minecraft/util/eventlog/EventLogDirectory; +MD: net/minecraft/util/eventlog/EventLogDirectory/m_261046_ (Ljava/time/LocalDate;)Lnet/minecraft/util/eventlog/EventLogDirectory$RawFile; net/minecraft/util/eventlog/EventLogDirectory/createNewFile (Ljava/time/LocalDate;)Lnet/minecraft/util/eventlog/EventLogDirectory$RawFile; +MD: net/minecraft/util/eventlog/EventLogDirectory/m_261134_ ()Lnet/minecraft/util/eventlog/EventLogDirectory$FileList; net/minecraft/util/eventlog/EventLogDirectory/listFiles ()Lnet/minecraft/util/eventlog/EventLogDirectory$FileList; +MD: net/minecraft/util/eventlog/EventLogDirectory/m_261201_ (Ljava/nio/channels/ReadableByteChannel;Ljava/nio/file/Path;)V net/minecraft/util/eventlog/EventLogDirectory/writeCompressed (Ljava/nio/channels/ReadableByteChannel;Ljava/nio/file/Path;)V +MD: net/minecraft/util/eventlog/EventLogDirectory/m_261272_ (Ljava/nio/file/Path;)Z net/minecraft/util/eventlog/EventLogDirectory/lambda$listFiles$0 (Ljava/nio/file/Path;)Z +MD: net/minecraft/util/eventlog/EventLogDirectory$CompressedFile/ (Ljava/nio/file/Path;Lnet/minecraft/util/eventlog/EventLogDirectory$FileId;)V net/minecraft/util/eventlog/EventLogDirectory$CompressedFile/ (Ljava/nio/file/Path;Lnet/minecraft/util/eventlog/EventLogDirectory$FileId;)V +MD: net/minecraft/util/eventlog/EventLogDirectory$CompressedFile/equals (Ljava/lang/Object;)Z net/minecraft/util/eventlog/EventLogDirectory$CompressedFile/equals (Ljava/lang/Object;)Z +MD: net/minecraft/util/eventlog/EventLogDirectory$CompressedFile/hashCode ()I net/minecraft/util/eventlog/EventLogDirectory$CompressedFile/hashCode ()I +MD: net/minecraft/util/eventlog/EventLogDirectory$CompressedFile/m_260796_ ()Lnet/minecraft/util/eventlog/EventLogDirectory$FileId; net/minecraft/util/eventlog/EventLogDirectory$CompressedFile/id ()Lnet/minecraft/util/eventlog/EventLogDirectory$FileId; +MD: net/minecraft/util/eventlog/EventLogDirectory$CompressedFile/m_260857_ ()Lnet/minecraft/util/eventlog/EventLogDirectory$CompressedFile; net/minecraft/util/eventlog/EventLogDirectory$CompressedFile/compress ()Lnet/minecraft/util/eventlog/EventLogDirectory$CompressedFile; +MD: net/minecraft/util/eventlog/EventLogDirectory$CompressedFile/m_261064_ ()Ljava/io/Reader; net/minecraft/util/eventlog/EventLogDirectory$CompressedFile/openReader ()Ljava/io/Reader; +MD: net/minecraft/util/eventlog/EventLogDirectory$CompressedFile/m_261161_ ()Ljava/nio/file/Path; net/minecraft/util/eventlog/EventLogDirectory$CompressedFile/path ()Ljava/nio/file/Path; +MD: net/minecraft/util/eventlog/EventLogDirectory$CompressedFile/toString ()Ljava/lang/String; net/minecraft/util/eventlog/EventLogDirectory$CompressedFile/toString ()Ljava/lang/String; +MD: net/minecraft/util/eventlog/EventLogDirectory$File/m_260796_ ()Lnet/minecraft/util/eventlog/EventLogDirectory$FileId; net/minecraft/util/eventlog/EventLogDirectory$File/id ()Lnet/minecraft/util/eventlog/EventLogDirectory$FileId; +MD: net/minecraft/util/eventlog/EventLogDirectory$File/m_260857_ ()Lnet/minecraft/util/eventlog/EventLogDirectory$CompressedFile; net/minecraft/util/eventlog/EventLogDirectory$File/compress ()Lnet/minecraft/util/eventlog/EventLogDirectory$CompressedFile; +MD: net/minecraft/util/eventlog/EventLogDirectory$File/m_261064_ ()Ljava/io/Reader; net/minecraft/util/eventlog/EventLogDirectory$File/openReader ()Ljava/io/Reader; +MD: net/minecraft/util/eventlog/EventLogDirectory$File/m_261161_ ()Ljava/nio/file/Path; net/minecraft/util/eventlog/EventLogDirectory$File/path ()Ljava/nio/file/Path; +MD: net/minecraft/util/eventlog/EventLogDirectory$FileId/ ()V net/minecraft/util/eventlog/EventLogDirectory$FileId/ ()V +MD: net/minecraft/util/eventlog/EventLogDirectory$FileId/ (Ljava/time/LocalDate;I)V net/minecraft/util/eventlog/EventLogDirectory$FileId/ (Ljava/time/LocalDate;I)V +MD: net/minecraft/util/eventlog/EventLogDirectory$FileId/equals (Ljava/lang/Object;)Z net/minecraft/util/eventlog/EventLogDirectory$FileId/equals (Ljava/lang/Object;)Z +MD: net/minecraft/util/eventlog/EventLogDirectory$FileId/f_260602_ ()I net/minecraft/util/eventlog/EventLogDirectory$FileId/index ()I +MD: net/minecraft/util/eventlog/EventLogDirectory$FileId/f_260711_ ()Ljava/time/LocalDate; net/minecraft/util/eventlog/EventLogDirectory$FileId/date ()Ljava/time/LocalDate; +MD: net/minecraft/util/eventlog/EventLogDirectory$FileId/hashCode ()I net/minecraft/util/eventlog/EventLogDirectory$FileId/hashCode ()I +MD: net/minecraft/util/eventlog/EventLogDirectory$FileId/m_260977_ (Ljava/lang/String;)Lnet/minecraft/util/eventlog/EventLogDirectory$FileId; net/minecraft/util/eventlog/EventLogDirectory$FileId/parse (Ljava/lang/String;)Lnet/minecraft/util/eventlog/EventLogDirectory$FileId; +MD: net/minecraft/util/eventlog/EventLogDirectory$FileId/m_261263_ (Ljava/lang/String;)Ljava/lang/String; net/minecraft/util/eventlog/EventLogDirectory$FileId/toFileName (Ljava/lang/String;)Ljava/lang/String; +MD: net/minecraft/util/eventlog/EventLogDirectory$FileId/toString ()Ljava/lang/String; net/minecraft/util/eventlog/EventLogDirectory$FileId/toString ()Ljava/lang/String; +MD: net/minecraft/util/eventlog/EventLogDirectory$FileList/ (Ljava/util/List;)V net/minecraft/util/eventlog/EventLogDirectory$FileList/ (Ljava/util/List;)V +MD: net/minecraft/util/eventlog/EventLogDirectory$FileList/iterator ()Ljava/util/Iterator; net/minecraft/util/eventlog/EventLogDirectory$FileList/iterator ()Ljava/util/Iterator; +MD: net/minecraft/util/eventlog/EventLogDirectory$FileList/m_260823_ (ILjava/time/LocalDate;Lnet/minecraft/util/eventlog/EventLogDirectory$File;)Z net/minecraft/util/eventlog/EventLogDirectory$FileList/lambda$prune$0 (ILjava/time/LocalDate;Lnet/minecraft/util/eventlog/EventLogDirectory$File;)Z +MD: net/minecraft/util/eventlog/EventLogDirectory$FileList/m_260849_ ()Ljava/util/stream/Stream; net/minecraft/util/eventlog/EventLogDirectory$FileList/stream ()Ljava/util/stream/Stream; +MD: net/minecraft/util/eventlog/EventLogDirectory$FileList/m_261047_ ()Ljava/util/Set; net/minecraft/util/eventlog/EventLogDirectory$FileList/ids ()Ljava/util/Set; +MD: net/minecraft/util/eventlog/EventLogDirectory$FileList/m_261127_ ()Lnet/minecraft/util/eventlog/EventLogDirectory$FileList; net/minecraft/util/eventlog/EventLogDirectory$FileList/compressAll ()Lnet/minecraft/util/eventlog/EventLogDirectory$FileList; +MD: net/minecraft/util/eventlog/EventLogDirectory$FileList/m_261245_ (Ljava/time/LocalDate;I)Lnet/minecraft/util/eventlog/EventLogDirectory$FileList; net/minecraft/util/eventlog/EventLogDirectory$FileList/prune (Ljava/time/LocalDate;I)Lnet/minecraft/util/eventlog/EventLogDirectory$FileList; +MD: net/minecraft/util/eventlog/EventLogDirectory$RawFile/ (Ljava/nio/file/Path;Lnet/minecraft/util/eventlog/EventLogDirectory$FileId;)V net/minecraft/util/eventlog/EventLogDirectory$RawFile/ (Ljava/nio/file/Path;Lnet/minecraft/util/eventlog/EventLogDirectory$FileId;)V +MD: net/minecraft/util/eventlog/EventLogDirectory$RawFile/equals (Ljava/lang/Object;)Z net/minecraft/util/eventlog/EventLogDirectory$RawFile/equals (Ljava/lang/Object;)Z +MD: net/minecraft/util/eventlog/EventLogDirectory$RawFile/hashCode ()I net/minecraft/util/eventlog/EventLogDirectory$RawFile/hashCode ()I +MD: net/minecraft/util/eventlog/EventLogDirectory$RawFile/m_260796_ ()Lnet/minecraft/util/eventlog/EventLogDirectory$FileId; net/minecraft/util/eventlog/EventLogDirectory$RawFile/id ()Lnet/minecraft/util/eventlog/EventLogDirectory$FileId; +MD: net/minecraft/util/eventlog/EventLogDirectory$RawFile/m_260857_ ()Lnet/minecraft/util/eventlog/EventLogDirectory$CompressedFile; net/minecraft/util/eventlog/EventLogDirectory$RawFile/compress ()Lnet/minecraft/util/eventlog/EventLogDirectory$CompressedFile; +MD: net/minecraft/util/eventlog/EventLogDirectory$RawFile/m_261064_ ()Ljava/io/Reader; net/minecraft/util/eventlog/EventLogDirectory$RawFile/openReader ()Ljava/io/Reader; +MD: net/minecraft/util/eventlog/EventLogDirectory$RawFile/m_261161_ ()Ljava/nio/file/Path; net/minecraft/util/eventlog/EventLogDirectory$RawFile/path ()Ljava/nio/file/Path; +MD: net/minecraft/util/eventlog/EventLogDirectory$RawFile/m_261200_ ()Ljava/nio/channels/FileChannel; net/minecraft/util/eventlog/EventLogDirectory$RawFile/openChannel ()Ljava/nio/channels/FileChannel; +MD: net/minecraft/util/eventlog/EventLogDirectory$RawFile/toString ()Ljava/lang/String; net/minecraft/util/eventlog/EventLogDirectory$RawFile/toString ()Ljava/lang/String; +MD: net/minecraft/util/eventlog/JsonEventLog/ ()V net/minecraft/util/eventlog/JsonEventLog/ ()V +MD: net/minecraft/util/eventlog/JsonEventLog/ (Lcom/mojang/serialization/Codec;Ljava/nio/channels/FileChannel;)V net/minecraft/util/eventlog/JsonEventLog/ (Lcom/mojang/serialization/Codec;Ljava/nio/channels/FileChannel;)V +MD: net/minecraft/util/eventlog/JsonEventLog/close ()V net/minecraft/util/eventlog/JsonEventLog/close ()V +MD: net/minecraft/util/eventlog/JsonEventLog/m_260800_ ()V net/minecraft/util/eventlog/JsonEventLog/releaseReference ()V +MD: net/minecraft/util/eventlog/JsonEventLog/m_260847_ (Lcom/mojang/serialization/Codec;Ljava/nio/file/Path;)Lnet/minecraft/util/eventlog/JsonEventLog; net/minecraft/util/eventlog/JsonEventLog/open (Lcom/mojang/serialization/Codec;Ljava/nio/file/Path;)Lnet/minecraft/util/eventlog/JsonEventLog; +MD: net/minecraft/util/eventlog/JsonEventLog/m_260901_ (Ljava/lang/Object;)V net/minecraft/util/eventlog/JsonEventLog/write (Ljava/lang/Object;)V +MD: net/minecraft/util/eventlog/JsonEventLog/m_260942_ ()Lnet/minecraft/util/eventlog/JsonEventLogReader; net/minecraft/util/eventlog/JsonEventLog/openReader ()Lnet/minecraft/util/eventlog/JsonEventLogReader; +MD: net/minecraft/util/eventlog/JsonEventLog$1/ (Lnet/minecraft/util/eventlog/JsonEventLog;Lnet/minecraft/util/eventlog/JsonEventLogReader;)V net/minecraft/util/eventlog/JsonEventLog$1/ (Lnet/minecraft/util/eventlog/JsonEventLog;Lnet/minecraft/util/eventlog/JsonEventLogReader;)V +MD: net/minecraft/util/eventlog/JsonEventLog$1/close ()V net/minecraft/util/eventlog/JsonEventLog$1/close ()V +MD: net/minecraft/util/eventlog/JsonEventLog$1/m_261203_ ()Ljava/lang/Object; net/minecraft/util/eventlog/JsonEventLog$1/next ()Ljava/lang/Object; +MD: net/minecraft/util/eventlog/JsonEventLogReader/m_261203_ ()Ljava/lang/Object; net/minecraft/util/eventlog/JsonEventLogReader/next ()Ljava/lang/Object; +MD: net/minecraft/util/eventlog/JsonEventLogReader/m_261256_ (Lcom/mojang/serialization/Codec;Ljava/io/Reader;)Lnet/minecraft/util/eventlog/JsonEventLogReader; net/minecraft/util/eventlog/JsonEventLogReader/create (Lcom/mojang/serialization/Codec;Ljava/io/Reader;)Lnet/minecraft/util/eventlog/JsonEventLogReader; +MD: net/minecraft/util/eventlog/JsonEventLogReader$1/ (Lcom/google/gson/stream/JsonReader;Lcom/mojang/serialization/Codec;)V net/minecraft/util/eventlog/JsonEventLogReader$1/ (Lcom/google/gson/stream/JsonReader;Lcom/mojang/serialization/Codec;)V +MD: net/minecraft/util/eventlog/JsonEventLogReader$1/close ()V net/minecraft/util/eventlog/JsonEventLogReader$1/close ()V +MD: net/minecraft/util/eventlog/JsonEventLogReader$1/m_261203_ ()Ljava/lang/Object; net/minecraft/util/eventlog/JsonEventLogReader$1/next ()Ljava/lang/Object; +MD: net/minecraft/util/monitoring/jmx/MinecraftServerStatistics/ ()V net/minecraft/util/monitoring/jmx/MinecraftServerStatistics/ ()V +MD: net/minecraft/util/monitoring/jmx/MinecraftServerStatistics/ (Lnet/minecraft/server/MinecraftServer;)V net/minecraft/util/monitoring/jmx/MinecraftServerStatistics/ (Lnet/minecraft/server/MinecraftServer;)V +MD: net/minecraft/util/monitoring/jmx/MinecraftServerStatistics/getAttribute (Ljava/lang/String;)Ljava/lang/Object; net/minecraft/util/monitoring/jmx/MinecraftServerStatistics/getAttribute (Ljava/lang/String;)Ljava/lang/Object; +MD: net/minecraft/util/monitoring/jmx/MinecraftServerStatistics/getAttributes ([Ljava/lang/String;)Ljavax/management/AttributeList; net/minecraft/util/monitoring/jmx/MinecraftServerStatistics/getAttributes ([Ljava/lang/String;)Ljavax/management/AttributeList; +MD: net/minecraft/util/monitoring/jmx/MinecraftServerStatistics/getMBeanInfo ()Ljavax/management/MBeanInfo; net/minecraft/util/monitoring/jmx/MinecraftServerStatistics/getMBeanInfo ()Ljavax/management/MBeanInfo; +MD: net/minecraft/util/monitoring/jmx/MinecraftServerStatistics/invoke (Ljava/lang/String;[Ljava/lang/Object;[Ljava/lang/String;)Ljava/lang/Object; net/minecraft/util/monitoring/jmx/MinecraftServerStatistics/invoke (Ljava/lang/String;[Ljava/lang/Object;[Ljava/lang/String;)Ljava/lang/Object; +MD: net/minecraft/util/monitoring/jmx/MinecraftServerStatistics/m_145922_ (I)[Ljavax/management/MBeanAttributeInfo; net/minecraft/util/monitoring/jmx/MinecraftServerStatistics/lambda$new$1 (I)[Ljavax/management/MBeanAttributeInfo; +MD: net/minecraft/util/monitoring/jmx/MinecraftServerStatistics/m_145924_ (Lnet/minecraft/util/monitoring/jmx/MinecraftServerStatistics$AttributeDescription;)Ljavax/management/Attribute; net/minecraft/util/monitoring/jmx/MinecraftServerStatistics/lambda$getAttributes$2 (Lnet/minecraft/util/monitoring/jmx/MinecraftServerStatistics$AttributeDescription;)Ljavax/management/Attribute; +MD: net/minecraft/util/monitoring/jmx/MinecraftServerStatistics/m_18321_ ()F net/minecraft/util/monitoring/jmx/MinecraftServerStatistics/getAverageTickTime ()F +MD: net/minecraft/util/monitoring/jmx/MinecraftServerStatistics/m_18328_ (Lnet/minecraft/server/MinecraftServer;)V net/minecraft/util/monitoring/jmx/MinecraftServerStatistics/registerJmxMonitoring (Lnet/minecraft/server/MinecraftServer;)V +MD: net/minecraft/util/monitoring/jmx/MinecraftServerStatistics/m_18330_ ()[J net/minecraft/util/monitoring/jmx/MinecraftServerStatistics/getTickTimes ()[J +MD: net/minecraft/util/monitoring/jmx/MinecraftServerStatistics/m_18331_ (Lnet/minecraft/util/monitoring/jmx/MinecraftServerStatistics$AttributeDescription;)Ljava/lang/String; net/minecraft/util/monitoring/jmx/MinecraftServerStatistics/lambda$new$0 (Lnet/minecraft/util/monitoring/jmx/MinecraftServerStatistics$AttributeDescription;)Ljava/lang/String; +MD: net/minecraft/util/monitoring/jmx/MinecraftServerStatistics/setAttribute (Ljavax/management/Attribute;)V net/minecraft/util/monitoring/jmx/MinecraftServerStatistics/setAttribute (Ljavax/management/Attribute;)V +MD: net/minecraft/util/monitoring/jmx/MinecraftServerStatistics/setAttributes (Ljavax/management/AttributeList;)Ljavax/management/AttributeList; net/minecraft/util/monitoring/jmx/MinecraftServerStatistics/setAttributes (Ljavax/management/AttributeList;)Ljavax/management/AttributeList; +MD: net/minecraft/util/monitoring/jmx/MinecraftServerStatistics$AttributeDescription/ (Ljava/lang/String;Ljava/util/function/Supplier;Ljava/lang/String;Ljava/lang/Class;)V net/minecraft/util/monitoring/jmx/MinecraftServerStatistics$AttributeDescription/ (Ljava/lang/String;Ljava/util/function/Supplier;Ljava/lang/String;Ljava/lang/Class;)V +MD: net/minecraft/util/monitoring/jmx/MinecraftServerStatistics$AttributeDescription/m_18361_ ()Ljavax/management/MBeanAttributeInfo; net/minecraft/util/monitoring/jmx/MinecraftServerStatistics$AttributeDescription/asMBeanAttributeInfo ()Ljavax/management/MBeanAttributeInfo; +MD: net/minecraft/util/profiling/ActiveProfiler/ ()V net/minecraft/util/profiling/ActiveProfiler/ ()V +MD: net/minecraft/util/profiling/ActiveProfiler/ (Ljava/util/function/LongSupplier;Ljava/util/function/IntSupplier;Z)V net/minecraft/util/profiling/ActiveProfiler/ (Ljava/util/function/LongSupplier;Ljava/util/function/IntSupplier;Z)V +MD: net/minecraft/util/profiling/ActiveProfiler/m_142259_ (Lnet/minecraft/util/profiling/metrics/MetricCategory;)V net/minecraft/util/profiling/ActiveProfiler/markForCharting (Lnet/minecraft/util/profiling/metrics/MetricCategory;)V +MD: net/minecraft/util/profiling/ActiveProfiler/m_142431_ (Ljava/lang/String;)Lnet/minecraft/util/profiling/ActiveProfiler$PathEntry; net/minecraft/util/profiling/ActiveProfiler/getEntry (Ljava/lang/String;)Lnet/minecraft/util/profiling/ActiveProfiler$PathEntry; +MD: net/minecraft/util/profiling/ActiveProfiler/m_142579_ ()Ljava/util/Set; net/minecraft/util/profiling/ActiveProfiler/getChartedPaths ()Ljava/util/Set; +MD: net/minecraft/util/profiling/ActiveProfiler/m_183275_ (Ljava/lang/String;I)V net/minecraft/util/profiling/ActiveProfiler/incrementCounter (Ljava/lang/String;I)V +MD: net/minecraft/util/profiling/ActiveProfiler/m_183536_ (Ljava/util/function/Supplier;I)V net/minecraft/util/profiling/ActiveProfiler/incrementCounter (Ljava/util/function/Supplier;I)V +MD: net/minecraft/util/profiling/ActiveProfiler/m_18387_ (J)Ljava/lang/Object; net/minecraft/util/profiling/ActiveProfiler/lambda$pop$2 (J)Ljava/lang/Object; +MD: net/minecraft/util/profiling/ActiveProfiler/m_18404_ (Ljava/lang/String;)Lnet/minecraft/util/profiling/ActiveProfiler$PathEntry; net/minecraft/util/profiling/ActiveProfiler/lambda$getCurrentEntry$3 (Ljava/lang/String;)Lnet/minecraft/util/profiling/ActiveProfiler$PathEntry; +MD: net/minecraft/util/profiling/ActiveProfiler/m_18406_ ()Lnet/minecraft/util/profiling/ActiveProfiler$PathEntry; net/minecraft/util/profiling/ActiveProfiler/getCurrentEntry ()Lnet/minecraft/util/profiling/ActiveProfiler$PathEntry; +MD: net/minecraft/util/profiling/ActiveProfiler/m_18407_ ()Ljava/lang/Object; net/minecraft/util/profiling/ActiveProfiler/lambda$pop$1 ()Ljava/lang/Object; +MD: net/minecraft/util/profiling/ActiveProfiler/m_18408_ ()Ljava/lang/Object; net/minecraft/util/profiling/ActiveProfiler/lambda$endTick$0 ()Ljava/lang/Object; +MD: net/minecraft/util/profiling/ActiveProfiler/m_5948_ ()Lnet/minecraft/util/profiling/ProfileResults; net/minecraft/util/profiling/ActiveProfiler/getResults ()Lnet/minecraft/util/profiling/ProfileResults; +MD: net/minecraft/util/profiling/ActiveProfiler/m_6180_ (Ljava/lang/String;)V net/minecraft/util/profiling/ActiveProfiler/push (Ljava/lang/String;)V +MD: net/minecraft/util/profiling/ActiveProfiler/m_6182_ (Ljava/lang/String;)V net/minecraft/util/profiling/ActiveProfiler/popPush (Ljava/lang/String;)V +MD: net/minecraft/util/profiling/ActiveProfiler/m_6521_ (Ljava/util/function/Supplier;)V net/minecraft/util/profiling/ActiveProfiler/push (Ljava/util/function/Supplier;)V +MD: net/minecraft/util/profiling/ActiveProfiler/m_6523_ (Ljava/util/function/Supplier;)V net/minecraft/util/profiling/ActiveProfiler/popPush (Ljava/util/function/Supplier;)V +MD: net/minecraft/util/profiling/ActiveProfiler/m_7238_ ()V net/minecraft/util/profiling/ActiveProfiler/pop ()V +MD: net/minecraft/util/profiling/ActiveProfiler/m_7241_ ()V net/minecraft/util/profiling/ActiveProfiler/endTick ()V +MD: net/minecraft/util/profiling/ActiveProfiler/m_7242_ ()V net/minecraft/util/profiling/ActiveProfiler/startTick ()V +MD: net/minecraft/util/profiling/ActiveProfiler$PathEntry/ ()V net/minecraft/util/profiling/ActiveProfiler$PathEntry/ ()V +MD: net/minecraft/util/profiling/ActiveProfiler$PathEntry/m_142752_ ()J net/minecraft/util/profiling/ActiveProfiler$PathEntry/getMaxDuration ()J +MD: net/minecraft/util/profiling/ActiveProfiler$PathEntry/m_7234_ ()J net/minecraft/util/profiling/ActiveProfiler$PathEntry/getCount ()J +MD: net/minecraft/util/profiling/ActiveProfiler$PathEntry/m_7235_ ()J net/minecraft/util/profiling/ActiveProfiler$PathEntry/getDuration ()J +MD: net/minecraft/util/profiling/ActiveProfiler$PathEntry/m_7446_ ()Lit/unimi/dsi/fastutil/objects/Object2LongMap; net/minecraft/util/profiling/ActiveProfiler$PathEntry/getCounters ()Lit/unimi/dsi/fastutil/objects/Object2LongMap; +MD: net/minecraft/util/profiling/ContinuousProfiler/ (Ljava/util/function/LongSupplier;Ljava/util/function/IntSupplier;)V net/minecraft/util/profiling/ContinuousProfiler/ (Ljava/util/function/LongSupplier;Ljava/util/function/IntSupplier;)V +MD: net/minecraft/util/profiling/ContinuousProfiler/m_18436_ ()Z net/minecraft/util/profiling/ContinuousProfiler/isEnabled ()Z +MD: net/minecraft/util/profiling/ContinuousProfiler/m_18437_ ()V net/minecraft/util/profiling/ContinuousProfiler/disable ()V +MD: net/minecraft/util/profiling/ContinuousProfiler/m_18438_ ()V net/minecraft/util/profiling/ContinuousProfiler/enable ()V +MD: net/minecraft/util/profiling/ContinuousProfiler/m_18439_ ()Lnet/minecraft/util/profiling/ProfilerFiller; net/minecraft/util/profiling/ContinuousProfiler/getFiller ()Lnet/minecraft/util/profiling/ProfilerFiller; +MD: net/minecraft/util/profiling/ContinuousProfiler/m_18440_ ()Lnet/minecraft/util/profiling/ProfileResults; net/minecraft/util/profiling/ContinuousProfiler/getResults ()Lnet/minecraft/util/profiling/ProfileResults; +MD: net/minecraft/util/profiling/EmptyProfileResults/ ()V net/minecraft/util/profiling/EmptyProfileResults/ ()V +MD: net/minecraft/util/profiling/EmptyProfileResults/ ()V net/minecraft/util/profiling/EmptyProfileResults/ ()V +MD: net/minecraft/util/profiling/EmptyProfileResults/m_142368_ ()Ljava/lang/String; net/minecraft/util/profiling/EmptyProfileResults/getProfilerResults ()Ljava/lang/String; +MD: net/minecraft/util/profiling/EmptyProfileResults/m_142444_ (Ljava/nio/file/Path;)Z net/minecraft/util/profiling/EmptyProfileResults/saveResults (Ljava/nio/file/Path;)Z +MD: net/minecraft/util/profiling/EmptyProfileResults/m_6412_ (Ljava/lang/String;)Ljava/util/List; net/minecraft/util/profiling/EmptyProfileResults/getTimes (Ljava/lang/String;)Ljava/util/List; +MD: net/minecraft/util/profiling/EmptyProfileResults/m_7229_ ()J net/minecraft/util/profiling/EmptyProfileResults/getStartTimeNano ()J +MD: net/minecraft/util/profiling/EmptyProfileResults/m_7230_ ()I net/minecraft/util/profiling/EmptyProfileResults/getStartTimeTicks ()I +MD: net/minecraft/util/profiling/EmptyProfileResults/m_7236_ ()J net/minecraft/util/profiling/EmptyProfileResults/getEndTimeNano ()J +MD: net/minecraft/util/profiling/EmptyProfileResults/m_7317_ ()I net/minecraft/util/profiling/EmptyProfileResults/getEndTimeTicks ()I +MD: net/minecraft/util/profiling/FilledProfileResults/ ()V net/minecraft/util/profiling/FilledProfileResults/ ()V +MD: net/minecraft/util/profiling/FilledProfileResults/ (Ljava/util/Map;JIJI)V net/minecraft/util/profiling/FilledProfileResults/ (Ljava/util/Map;JIJI)V +MD: net/minecraft/util/profiling/FilledProfileResults/m_142368_ ()Ljava/lang/String; net/minecraft/util/profiling/FilledProfileResults/getProfilerResults ()Ljava/lang/String; +MD: net/minecraft/util/profiling/FilledProfileResults/m_142444_ (Ljava/nio/file/Path;)Z net/minecraft/util/profiling/FilledProfileResults/saveResults (Ljava/nio/file/Path;)Z +MD: net/minecraft/util/profiling/FilledProfileResults/m_145941_ (Ljava/util/Map;Ljava/util/List;Ljava/lang/String;Ljava/lang/Long;)V net/minecraft/util/profiling/FilledProfileResults/lambda$getCounterValues$2 (Ljava/util/Map;Ljava/util/List;Ljava/lang/String;Ljava/lang/Long;)V +MD: net/minecraft/util/profiling/FilledProfileResults/m_145946_ (Ljava/lang/String;)Lnet/minecraft/util/profiling/FilledProfileResults$CounterCollector; net/minecraft/util/profiling/FilledProfileResults/lambda$getCounterValues$1 (Ljava/lang/String;)Lnet/minecraft/util/profiling/FilledProfileResults$CounterCollector; +MD: net/minecraft/util/profiling/FilledProfileResults/m_18470_ (IILjava/lang/StringBuilder;Ljava/util/Map$Entry;)V net/minecraft/util/profiling/FilledProfileResults/lambda$appendCounterResults$5 (IILjava/lang/StringBuilder;Ljava/util/Map$Entry;)V +MD: net/minecraft/util/profiling/FilledProfileResults/m_18475_ (ILjava/lang/String;Lnet/minecraft/util/profiling/FilledProfileResults$CounterCollector;ILjava/lang/StringBuilder;)V net/minecraft/util/profiling/FilledProfileResults/appendCounterResults (ILjava/lang/String;Lnet/minecraft/util/profiling/FilledProfileResults$CounterCollector;ILjava/lang/StringBuilder;)V +MD: net/minecraft/util/profiling/FilledProfileResults/m_18481_ (ILjava/lang/String;Ljava/lang/StringBuilder;)V net/minecraft/util/profiling/FilledProfileResults/appendProfilerResults (ILjava/lang/String;Ljava/lang/StringBuilder;)V +MD: net/minecraft/util/profiling/FilledProfileResults/m_18485_ (JI)Ljava/lang/String; net/minecraft/util/profiling/FilledProfileResults/getProfilerResults (JI)Ljava/lang/String; +MD: net/minecraft/util/profiling/FilledProfileResults/m_18488_ (Lnet/minecraft/util/profiling/FilledProfileResults$CounterCollector;)J net/minecraft/util/profiling/FilledProfileResults/lambda$static$0 (Lnet/minecraft/util/profiling/FilledProfileResults$CounterCollector;)J +MD: net/minecraft/util/profiling/FilledProfileResults/m_18494_ (Ljava/lang/String;Ljava/lang/String;)Z net/minecraft/util/profiling/FilledProfileResults/isDirectChild (Ljava/lang/String;Ljava/lang/String;)Z +MD: net/minecraft/util/profiling/FilledProfileResults/m_18497_ (Ljava/lang/StringBuilder;I)Ljava/lang/StringBuilder; net/minecraft/util/profiling/FilledProfileResults/indentLine (Ljava/lang/StringBuilder;I)Ljava/lang/StringBuilder; +MD: net/minecraft/util/profiling/FilledProfileResults/m_18500_ (Ljava/lang/StringBuilder;ILjava/lang/String;Lnet/minecraft/util/profiling/FilledProfileResults$CounterCollector;)V net/minecraft/util/profiling/FilledProfileResults/lambda$appendCounters$6 (Ljava/lang/StringBuilder;ILjava/lang/String;Lnet/minecraft/util/profiling/FilledProfileResults$CounterCollector;)V +MD: net/minecraft/util/profiling/FilledProfileResults/m_18505_ (Ljava/lang/StringBuilder;ILjava/lang/String;Ljava/lang/Long;)V net/minecraft/util/profiling/FilledProfileResults/lambda$appendProfilerResults$4 (Ljava/lang/StringBuilder;ILjava/lang/String;Ljava/lang/Long;)V +MD: net/minecraft/util/profiling/FilledProfileResults/m_18510_ (Ljava/util/Map;Ljava/lang/String;Lnet/minecraft/util/profiling/ProfilerPathEntry;)V net/minecraft/util/profiling/FilledProfileResults/lambda$getCounterValues$3 (Ljava/util/Map;Ljava/lang/String;Lnet/minecraft/util/profiling/ProfilerPathEntry;)V +MD: net/minecraft/util/profiling/FilledProfileResults/m_18514_ (Ljava/util/Map;Ljava/lang/StringBuilder;I)V net/minecraft/util/profiling/FilledProfileResults/appendCounters (Ljava/util/Map;Ljava/lang/StringBuilder;I)V +MD: net/minecraft/util/profiling/FilledProfileResults/m_18525_ (Ljava/lang/String;)Lnet/minecraft/util/profiling/ProfilerPathEntry; net/minecraft/util/profiling/FilledProfileResults/getEntry (Ljava/lang/String;)Lnet/minecraft/util/profiling/ProfilerPathEntry; +MD: net/minecraft/util/profiling/FilledProfileResults/m_18531_ ()Ljava/util/Map; net/minecraft/util/profiling/FilledProfileResults/getCounterValues ()Ljava/util/Map; +MD: net/minecraft/util/profiling/FilledProfileResults/m_18532_ ()Ljava/lang/String; net/minecraft/util/profiling/FilledProfileResults/getComment ()Ljava/lang/String; +MD: net/minecraft/util/profiling/FilledProfileResults/m_6412_ (Ljava/lang/String;)Ljava/util/List; net/minecraft/util/profiling/FilledProfileResults/getTimes (Ljava/lang/String;)Ljava/util/List; +MD: net/minecraft/util/profiling/FilledProfileResults/m_7229_ ()J net/minecraft/util/profiling/FilledProfileResults/getStartTimeNano ()J +MD: net/minecraft/util/profiling/FilledProfileResults/m_7230_ ()I net/minecraft/util/profiling/FilledProfileResults/getStartTimeTicks ()I +MD: net/minecraft/util/profiling/FilledProfileResults/m_7236_ ()J net/minecraft/util/profiling/FilledProfileResults/getEndTimeNano ()J +MD: net/minecraft/util/profiling/FilledProfileResults/m_7315_ ()I net/minecraft/util/profiling/FilledProfileResults/getTickDuration ()I +MD: net/minecraft/util/profiling/FilledProfileResults/m_7317_ ()I net/minecraft/util/profiling/FilledProfileResults/getEndTimeTicks ()I +MD: net/minecraft/util/profiling/FilledProfileResults$1/ ()V net/minecraft/util/profiling/FilledProfileResults$1/ ()V +MD: net/minecraft/util/profiling/FilledProfileResults$1/m_142752_ ()J net/minecraft/util/profiling/FilledProfileResults$1/getMaxDuration ()J +MD: net/minecraft/util/profiling/FilledProfileResults$1/m_7234_ ()J net/minecraft/util/profiling/FilledProfileResults$1/getCount ()J +MD: net/minecraft/util/profiling/FilledProfileResults$1/m_7235_ ()J net/minecraft/util/profiling/FilledProfileResults$1/getDuration ()J +MD: net/minecraft/util/profiling/FilledProfileResults$1/m_7446_ ()Lit/unimi/dsi/fastutil/objects/Object2LongMap; net/minecraft/util/profiling/FilledProfileResults$1/getCounters ()Lit/unimi/dsi/fastutil/objects/Object2LongMap; +MD: net/minecraft/util/profiling/FilledProfileResults$CounterCollector/ ()V net/minecraft/util/profiling/FilledProfileResults$CounterCollector/ ()V +MD: net/minecraft/util/profiling/FilledProfileResults$CounterCollector/m_18545_ (Ljava/lang/String;)Lnet/minecraft/util/profiling/FilledProfileResults$CounterCollector; net/minecraft/util/profiling/FilledProfileResults$CounterCollector/lambda$addValue$0 (Ljava/lang/String;)Lnet/minecraft/util/profiling/FilledProfileResults$CounterCollector; +MD: net/minecraft/util/profiling/FilledProfileResults$CounterCollector/m_18547_ (Ljava/util/Iterator;J)V net/minecraft/util/profiling/FilledProfileResults$CounterCollector/addValue (Ljava/util/Iterator;J)V +MD: net/minecraft/util/profiling/InactiveProfiler/ ()V net/minecraft/util/profiling/InactiveProfiler/ ()V +MD: net/minecraft/util/profiling/InactiveProfiler/ ()V net/minecraft/util/profiling/InactiveProfiler/ ()V +MD: net/minecraft/util/profiling/InactiveProfiler/m_142259_ (Lnet/minecraft/util/profiling/metrics/MetricCategory;)V net/minecraft/util/profiling/InactiveProfiler/markForCharting (Lnet/minecraft/util/profiling/metrics/MetricCategory;)V +MD: net/minecraft/util/profiling/InactiveProfiler/m_142431_ (Ljava/lang/String;)Lnet/minecraft/util/profiling/ActiveProfiler$PathEntry; net/minecraft/util/profiling/InactiveProfiler/getEntry (Ljava/lang/String;)Lnet/minecraft/util/profiling/ActiveProfiler$PathEntry; +MD: net/minecraft/util/profiling/InactiveProfiler/m_142579_ ()Ljava/util/Set; net/minecraft/util/profiling/InactiveProfiler/getChartedPaths ()Ljava/util/Set; +MD: net/minecraft/util/profiling/InactiveProfiler/m_183275_ (Ljava/lang/String;I)V net/minecraft/util/profiling/InactiveProfiler/incrementCounter (Ljava/lang/String;I)V +MD: net/minecraft/util/profiling/InactiveProfiler/m_183536_ (Ljava/util/function/Supplier;I)V net/minecraft/util/profiling/InactiveProfiler/incrementCounter (Ljava/util/function/Supplier;I)V +MD: net/minecraft/util/profiling/InactiveProfiler/m_5948_ ()Lnet/minecraft/util/profiling/ProfileResults; net/minecraft/util/profiling/InactiveProfiler/getResults ()Lnet/minecraft/util/profiling/ProfileResults; +MD: net/minecraft/util/profiling/InactiveProfiler/m_6180_ (Ljava/lang/String;)V net/minecraft/util/profiling/InactiveProfiler/push (Ljava/lang/String;)V +MD: net/minecraft/util/profiling/InactiveProfiler/m_6182_ (Ljava/lang/String;)V net/minecraft/util/profiling/InactiveProfiler/popPush (Ljava/lang/String;)V +MD: net/minecraft/util/profiling/InactiveProfiler/m_6521_ (Ljava/util/function/Supplier;)V net/minecraft/util/profiling/InactiveProfiler/push (Ljava/util/function/Supplier;)V +MD: net/minecraft/util/profiling/InactiveProfiler/m_6523_ (Ljava/util/function/Supplier;)V net/minecraft/util/profiling/InactiveProfiler/popPush (Ljava/util/function/Supplier;)V +MD: net/minecraft/util/profiling/InactiveProfiler/m_7238_ ()V net/minecraft/util/profiling/InactiveProfiler/pop ()V +MD: net/minecraft/util/profiling/InactiveProfiler/m_7241_ ()V net/minecraft/util/profiling/InactiveProfiler/endTick ()V +MD: net/minecraft/util/profiling/InactiveProfiler/m_7242_ ()V net/minecraft/util/profiling/InactiveProfiler/startTick ()V +MD: net/minecraft/util/profiling/ProfileCollector/m_142431_ (Ljava/lang/String;)Lnet/minecraft/util/profiling/ActiveProfiler$PathEntry; net/minecraft/util/profiling/ProfileCollector/getEntry (Ljava/lang/String;)Lnet/minecraft/util/profiling/ActiveProfiler$PathEntry; +MD: net/minecraft/util/profiling/ProfileCollector/m_142579_ ()Ljava/util/Set; net/minecraft/util/profiling/ProfileCollector/getChartedPaths ()Ljava/util/Set; +MD: net/minecraft/util/profiling/ProfileCollector/m_5948_ ()Lnet/minecraft/util/profiling/ProfileResults; net/minecraft/util/profiling/ProfileCollector/getResults ()Lnet/minecraft/util/profiling/ProfileResults; +MD: net/minecraft/util/profiling/ProfileResults/m_142368_ ()Ljava/lang/String; net/minecraft/util/profiling/ProfileResults/getProfilerResults ()Ljava/lang/String; +MD: net/minecraft/util/profiling/ProfileResults/m_142444_ (Ljava/nio/file/Path;)Z net/minecraft/util/profiling/ProfileResults/saveResults (Ljava/nio/file/Path;)Z +MD: net/minecraft/util/profiling/ProfileResults/m_18575_ (Ljava/lang/String;)Ljava/lang/String; net/minecraft/util/profiling/ProfileResults/demanglePath (Ljava/lang/String;)Ljava/lang/String; +MD: net/minecraft/util/profiling/ProfileResults/m_18577_ ()J net/minecraft/util/profiling/ProfileResults/getNanoDuration ()J +MD: net/minecraft/util/profiling/ProfileResults/m_6412_ (Ljava/lang/String;)Ljava/util/List; net/minecraft/util/profiling/ProfileResults/getTimes (Ljava/lang/String;)Ljava/util/List; +MD: net/minecraft/util/profiling/ProfileResults/m_7229_ ()J net/minecraft/util/profiling/ProfileResults/getStartTimeNano ()J +MD: net/minecraft/util/profiling/ProfileResults/m_7230_ ()I net/minecraft/util/profiling/ProfileResults/getStartTimeTicks ()I +MD: net/minecraft/util/profiling/ProfileResults/m_7236_ ()J net/minecraft/util/profiling/ProfileResults/getEndTimeNano ()J +MD: net/minecraft/util/profiling/ProfileResults/m_7315_ ()I net/minecraft/util/profiling/ProfileResults/getTickDuration ()I +MD: net/minecraft/util/profiling/ProfileResults/m_7317_ ()I net/minecraft/util/profiling/ProfileResults/getEndTimeTicks ()I +MD: net/minecraft/util/profiling/ProfilerFiller/m_142259_ (Lnet/minecraft/util/profiling/metrics/MetricCategory;)V net/minecraft/util/profiling/ProfilerFiller/markForCharting (Lnet/minecraft/util/profiling/metrics/MetricCategory;)V +MD: net/minecraft/util/profiling/ProfilerFiller/m_183275_ (Ljava/lang/String;I)V net/minecraft/util/profiling/ProfilerFiller/incrementCounter (Ljava/lang/String;I)V +MD: net/minecraft/util/profiling/ProfilerFiller/m_183536_ (Ljava/util/function/Supplier;I)V net/minecraft/util/profiling/ProfilerFiller/incrementCounter (Ljava/util/function/Supplier;I)V +MD: net/minecraft/util/profiling/ProfilerFiller/m_18578_ (Lnet/minecraft/util/profiling/ProfilerFiller;Lnet/minecraft/util/profiling/ProfilerFiller;)Lnet/minecraft/util/profiling/ProfilerFiller; net/minecraft/util/profiling/ProfilerFiller/tee (Lnet/minecraft/util/profiling/ProfilerFiller;Lnet/minecraft/util/profiling/ProfilerFiller;)Lnet/minecraft/util/profiling/ProfilerFiller; +MD: net/minecraft/util/profiling/ProfilerFiller/m_6174_ (Ljava/lang/String;)V net/minecraft/util/profiling/ProfilerFiller/incrementCounter (Ljava/lang/String;)V +MD: net/minecraft/util/profiling/ProfilerFiller/m_6180_ (Ljava/lang/String;)V net/minecraft/util/profiling/ProfilerFiller/push (Ljava/lang/String;)V +MD: net/minecraft/util/profiling/ProfilerFiller/m_6182_ (Ljava/lang/String;)V net/minecraft/util/profiling/ProfilerFiller/popPush (Ljava/lang/String;)V +MD: net/minecraft/util/profiling/ProfilerFiller/m_6521_ (Ljava/util/function/Supplier;)V net/minecraft/util/profiling/ProfilerFiller/push (Ljava/util/function/Supplier;)V +MD: net/minecraft/util/profiling/ProfilerFiller/m_6523_ (Ljava/util/function/Supplier;)V net/minecraft/util/profiling/ProfilerFiller/popPush (Ljava/util/function/Supplier;)V +MD: net/minecraft/util/profiling/ProfilerFiller/m_6525_ (Ljava/util/function/Supplier;)V net/minecraft/util/profiling/ProfilerFiller/incrementCounter (Ljava/util/function/Supplier;)V +MD: net/minecraft/util/profiling/ProfilerFiller/m_7238_ ()V net/minecraft/util/profiling/ProfilerFiller/pop ()V +MD: net/minecraft/util/profiling/ProfilerFiller/m_7241_ ()V net/minecraft/util/profiling/ProfilerFiller/endTick ()V +MD: net/minecraft/util/profiling/ProfilerFiller/m_7242_ ()V net/minecraft/util/profiling/ProfilerFiller/startTick ()V +MD: net/minecraft/util/profiling/ProfilerFiller$1/ (Lnet/minecraft/util/profiling/ProfilerFiller;Lnet/minecraft/util/profiling/ProfilerFiller;)V net/minecraft/util/profiling/ProfilerFiller$1/ (Lnet/minecraft/util/profiling/ProfilerFiller;Lnet/minecraft/util/profiling/ProfilerFiller;)V +MD: net/minecraft/util/profiling/ProfilerFiller$1/m_142259_ (Lnet/minecraft/util/profiling/metrics/MetricCategory;)V net/minecraft/util/profiling/ProfilerFiller$1/markForCharting (Lnet/minecraft/util/profiling/metrics/MetricCategory;)V +MD: net/minecraft/util/profiling/ProfilerFiller$1/m_183275_ (Ljava/lang/String;I)V net/minecraft/util/profiling/ProfilerFiller$1/incrementCounter (Ljava/lang/String;I)V +MD: net/minecraft/util/profiling/ProfilerFiller$1/m_183536_ (Ljava/util/function/Supplier;I)V net/minecraft/util/profiling/ProfilerFiller$1/incrementCounter (Ljava/util/function/Supplier;I)V +MD: net/minecraft/util/profiling/ProfilerFiller$1/m_6180_ (Ljava/lang/String;)V net/minecraft/util/profiling/ProfilerFiller$1/push (Ljava/lang/String;)V +MD: net/minecraft/util/profiling/ProfilerFiller$1/m_6182_ (Ljava/lang/String;)V net/minecraft/util/profiling/ProfilerFiller$1/popPush (Ljava/lang/String;)V +MD: net/minecraft/util/profiling/ProfilerFiller$1/m_6521_ (Ljava/util/function/Supplier;)V net/minecraft/util/profiling/ProfilerFiller$1/push (Ljava/util/function/Supplier;)V +MD: net/minecraft/util/profiling/ProfilerFiller$1/m_6523_ (Ljava/util/function/Supplier;)V net/minecraft/util/profiling/ProfilerFiller$1/popPush (Ljava/util/function/Supplier;)V +MD: net/minecraft/util/profiling/ProfilerFiller$1/m_7238_ ()V net/minecraft/util/profiling/ProfilerFiller$1/pop ()V +MD: net/minecraft/util/profiling/ProfilerFiller$1/m_7241_ ()V net/minecraft/util/profiling/ProfilerFiller$1/endTick ()V +MD: net/minecraft/util/profiling/ProfilerFiller$1/m_7242_ ()V net/minecraft/util/profiling/ProfilerFiller$1/startTick ()V +MD: net/minecraft/util/profiling/ProfilerPathEntry/m_142752_ ()J net/minecraft/util/profiling/ProfilerPathEntry/getMaxDuration ()J +MD: net/minecraft/util/profiling/ProfilerPathEntry/m_7234_ ()J net/minecraft/util/profiling/ProfilerPathEntry/getCount ()J +MD: net/minecraft/util/profiling/ProfilerPathEntry/m_7235_ ()J net/minecraft/util/profiling/ProfilerPathEntry/getDuration ()J +MD: net/minecraft/util/profiling/ProfilerPathEntry/m_7446_ ()Lit/unimi/dsi/fastutil/objects/Object2LongMap; net/minecraft/util/profiling/ProfilerPathEntry/getCounters ()Lit/unimi/dsi/fastutil/objects/Object2LongMap; +MD: net/minecraft/util/profiling/ResultField/ (Ljava/lang/String;DDJ)V net/minecraft/util/profiling/ResultField/ (Ljava/lang/String;DDJ)V +MD: net/minecraft/util/profiling/ResultField/compareTo (Lnet/minecraft/util/profiling/ResultField;)I net/minecraft/util/profiling/ResultField/compareTo (Lnet/minecraft/util/profiling/ResultField;)I +MD: net/minecraft/util/profiling/ResultField/compareTo (Ljava/lang/Object;)I net/minecraft/util/profiling/ResultField/compareTo (Ljava/lang/Object;)I +MD: net/minecraft/util/profiling/ResultField/m_18616_ ()I net/minecraft/util/profiling/ResultField/getColor ()I +MD: net/minecraft/util/profiling/SingleTickProfiler/ ()V net/minecraft/util/profiling/SingleTickProfiler/ ()V +MD: net/minecraft/util/profiling/SingleTickProfiler/ (Ljava/util/function/LongSupplier;Ljava/lang/String;J)V net/minecraft/util/profiling/SingleTickProfiler/ (Ljava/util/function/LongSupplier;Ljava/lang/String;J)V +MD: net/minecraft/util/profiling/SingleTickProfiler/m_18628_ ()Lnet/minecraft/util/profiling/ProfilerFiller; net/minecraft/util/profiling/SingleTickProfiler/startTick ()Lnet/minecraft/util/profiling/ProfilerFiller; +MD: net/minecraft/util/profiling/SingleTickProfiler/m_18629_ (Lnet/minecraft/util/profiling/ProfilerFiller;Lnet/minecraft/util/profiling/SingleTickProfiler;)Lnet/minecraft/util/profiling/ProfilerFiller; net/minecraft/util/profiling/SingleTickProfiler/decorateFiller (Lnet/minecraft/util/profiling/ProfilerFiller;Lnet/minecraft/util/profiling/SingleTickProfiler;)Lnet/minecraft/util/profiling/ProfilerFiller; +MD: net/minecraft/util/profiling/SingleTickProfiler/m_18632_ (Ljava/lang/String;)Lnet/minecraft/util/profiling/SingleTickProfiler; net/minecraft/util/profiling/SingleTickProfiler/createTickProfiler (Ljava/lang/String;)Lnet/minecraft/util/profiling/SingleTickProfiler; +MD: net/minecraft/util/profiling/SingleTickProfiler/m_18634_ ()V net/minecraft/util/profiling/SingleTickProfiler/endTick ()V +MD: net/minecraft/util/profiling/SingleTickProfiler/m_18635_ ()I net/minecraft/util/profiling/SingleTickProfiler/lambda$startTick$0 ()I +MD: net/minecraft/util/profiling/jfr/Environment/ ()V net/minecraft/util/profiling/jfr/Environment/ ()V +MD: net/minecraft/util/profiling/jfr/Environment/ (Ljava/lang/String;ILjava/lang/String;)V net/minecraft/util/profiling/jfr/Environment/ (Ljava/lang/String;ILjava/lang/String;)V +MD: net/minecraft/util/profiling/jfr/Environment/m_185277_ ()Ljava/lang/String; net/minecraft/util/profiling/jfr/Environment/getDescription ()Ljava/lang/String; +MD: net/minecraft/util/profiling/jfr/Environment/m_185278_ (Lnet/minecraft/server/MinecraftServer;)Lnet/minecraft/util/profiling/jfr/Environment; net/minecraft/util/profiling/jfr/Environment/from (Lnet/minecraft/server/MinecraftServer;)Lnet/minecraft/util/profiling/jfr/Environment; +MD: net/minecraft/util/profiling/jfr/Environment/m_185280_ ()[Lnet/minecraft/util/profiling/jfr/Environment; net/minecraft/util/profiling/jfr/Environment/$values ()[Lnet/minecraft/util/profiling/jfr/Environment; +MD: net/minecraft/util/profiling/jfr/Environment/valueOf (Ljava/lang/String;)Lnet/minecraft/util/profiling/jfr/Environment; net/minecraft/util/profiling/jfr/Environment/valueOf (Ljava/lang/String;)Lnet/minecraft/util/profiling/jfr/Environment; +MD: net/minecraft/util/profiling/jfr/Environment/values ()[Lnet/minecraft/util/profiling/jfr/Environment; net/minecraft/util/profiling/jfr/Environment/values ()[Lnet/minecraft/util/profiling/jfr/Environment; +MD: net/minecraft/util/profiling/jfr/JfrProfiler/ ()V net/minecraft/util/profiling/jfr/JfrProfiler/ ()V +MD: net/minecraft/util/profiling/jfr/JfrProfiler/ ()V net/minecraft/util/profiling/jfr/JfrProfiler/ ()V +MD: net/minecraft/util/profiling/jfr/JfrProfiler/m_183243_ ()Ljava/nio/file/Path; net/minecraft/util/profiling/jfr/JfrProfiler/stop ()Ljava/nio/file/Path; +MD: net/minecraft/util/profiling/jfr/JfrProfiler/m_183425_ (Lnet/minecraft/util/profiling/jfr/Environment;)Z net/minecraft/util/profiling/jfr/JfrProfiler/start (Lnet/minecraft/util/profiling/jfr/Environment;)Z +MD: net/minecraft/util/profiling/jfr/JfrProfiler/m_183494_ ()Lnet/minecraft/util/profiling/jfr/callback/ProfiledDuration; net/minecraft/util/profiling/jfr/JfrProfiler/onWorldLoadedStarted ()Lnet/minecraft/util/profiling/jfr/callback/ProfiledDuration; +MD: net/minecraft/util/profiling/jfr/JfrProfiler/m_183508_ (IILjava/net/SocketAddress;I)V net/minecraft/util/profiling/jfr/JfrProfiler/onPacketSent (IILjava/net/SocketAddress;I)V +MD: net/minecraft/util/profiling/jfr/JfrProfiler/m_183510_ (IILjava/net/SocketAddress;I)V net/minecraft/util/profiling/jfr/JfrProfiler/onPacketReceived (IILjava/net/SocketAddress;I)V +MD: net/minecraft/util/profiling/jfr/JfrProfiler/m_183559_ (Lnet/minecraft/world/level/ChunkPos;Lnet/minecraft/resources/ResourceKey;Ljava/lang/String;)Lnet/minecraft/util/profiling/jfr/callback/ProfiledDuration; net/minecraft/util/profiling/jfr/JfrProfiler/onChunkGenerate (Lnet/minecraft/world/level/ChunkPos;Lnet/minecraft/resources/ResourceKey;Ljava/lang/String;)Lnet/minecraft/util/profiling/jfr/callback/ProfiledDuration; +MD: net/minecraft/util/profiling/jfr/JfrProfiler/m_183597_ (F)V net/minecraft/util/profiling/jfr/JfrProfiler/onServerTick (F)V +MD: net/minecraft/util/profiling/jfr/JfrProfiler/m_183608_ ()Z net/minecraft/util/profiling/jfr/JfrProfiler/isRunning ()Z +MD: net/minecraft/util/profiling/jfr/JfrProfiler/m_183609_ ()Z net/minecraft/util/profiling/jfr/JfrProfiler/isAvailable ()Z +MD: net/minecraft/util/profiling/jfr/JfrProfiler/m_185298_ ()Lnet/minecraft/util/profiling/jfr/JfrProfiler; net/minecraft/util/profiling/jfr/JfrProfiler/getInstance ()Lnet/minecraft/util/profiling/jfr/JfrProfiler; +MD: net/minecraft/util/profiling/jfr/JfrProfiler/m_185316_ (Ljava/io/Reader;Lnet/minecraft/util/profiling/jfr/Environment;)Z net/minecraft/util/profiling/jfr/JfrProfiler/start (Ljava/io/Reader;Lnet/minecraft/util/profiling/jfr/Environment;)Z +MD: net/minecraft/util/profiling/jfr/JfrProfiler/m_185319_ (Ljava/net/SocketAddress;)Lnet/minecraft/util/profiling/jfr/event/NetworkSummaryEvent$SumAggregation; net/minecraft/util/profiling/jfr/JfrProfiler/networkStatFor (Ljava/net/SocketAddress;)Lnet/minecraft/util/profiling/jfr/event/NetworkSummaryEvent$SumAggregation; +MD: net/minecraft/util/profiling/jfr/JfrProfiler/m_185330_ ()V net/minecraft/util/profiling/jfr/JfrProfiler/setupSummaryListener ()V +MD: net/minecraft/util/profiling/jfr/JfrProfiler/m_185331_ ()V net/minecraft/util/profiling/jfr/JfrProfiler/lambda$new$1 ()V +MD: net/minecraft/util/profiling/jfr/JfrProfiler/m_185332_ ()V net/minecraft/util/profiling/jfr/JfrProfiler/lambda$new$0 ()V +MD: net/minecraft/util/profiling/jfr/JfrProfiler/m_242540_ (Lnet/minecraft/util/profiling/jfr/Environment;Ljava/lang/String;Ljdk/jfr/Recording;)V net/minecraft/util/profiling/jfr/JfrProfiler/lambda$start$2 (Lnet/minecraft/util/profiling/jfr/Environment;Ljava/lang/String;Ljdk/jfr/Recording;)V +MD: net/minecraft/util/profiling/jfr/JfrProfiler$1/ (Lnet/minecraft/util/profiling/jfr/JfrProfiler;)V net/minecraft/util/profiling/jfr/JfrProfiler$1/ (Lnet/minecraft/util/profiling/jfr/JfrProfiler;)V +MD: net/minecraft/util/profiling/jfr/JfrProfiler$1/m_185337_ ()V net/minecraft/util/profiling/jfr/JfrProfiler$1/lambda$$0 ()V +MD: net/minecraft/util/profiling/jfr/JfrProfiler$1/recordingStateChanged (Ljdk/jfr/Recording;)V net/minecraft/util/profiling/jfr/JfrProfiler$1/recordingStateChanged (Ljdk/jfr/Recording;)V +MD: net/minecraft/util/profiling/jfr/JvmProfiler/ ()V net/minecraft/util/profiling/jfr/JvmProfiler/ ()V +MD: net/minecraft/util/profiling/jfr/JvmProfiler/m_183243_ ()Ljava/nio/file/Path; net/minecraft/util/profiling/jfr/JvmProfiler/stop ()Ljava/nio/file/Path; +MD: net/minecraft/util/profiling/jfr/JvmProfiler/m_183425_ (Lnet/minecraft/util/profiling/jfr/Environment;)Z net/minecraft/util/profiling/jfr/JvmProfiler/start (Lnet/minecraft/util/profiling/jfr/Environment;)Z +MD: net/minecraft/util/profiling/jfr/JvmProfiler/m_183494_ ()Lnet/minecraft/util/profiling/jfr/callback/ProfiledDuration; net/minecraft/util/profiling/jfr/JvmProfiler/onWorldLoadedStarted ()Lnet/minecraft/util/profiling/jfr/callback/ProfiledDuration; +MD: net/minecraft/util/profiling/jfr/JvmProfiler/m_183508_ (IILjava/net/SocketAddress;I)V net/minecraft/util/profiling/jfr/JvmProfiler/onPacketSent (IILjava/net/SocketAddress;I)V +MD: net/minecraft/util/profiling/jfr/JvmProfiler/m_183510_ (IILjava/net/SocketAddress;I)V net/minecraft/util/profiling/jfr/JvmProfiler/onPacketReceived (IILjava/net/SocketAddress;I)V +MD: net/minecraft/util/profiling/jfr/JvmProfiler/m_183559_ (Lnet/minecraft/world/level/ChunkPos;Lnet/minecraft/resources/ResourceKey;Ljava/lang/String;)Lnet/minecraft/util/profiling/jfr/callback/ProfiledDuration; net/minecraft/util/profiling/jfr/JvmProfiler/onChunkGenerate (Lnet/minecraft/world/level/ChunkPos;Lnet/minecraft/resources/ResourceKey;Ljava/lang/String;)Lnet/minecraft/util/profiling/jfr/callback/ProfiledDuration; +MD: net/minecraft/util/profiling/jfr/JvmProfiler/m_183597_ (F)V net/minecraft/util/profiling/jfr/JvmProfiler/onServerTick (F)V +MD: net/minecraft/util/profiling/jfr/JvmProfiler/m_183608_ ()Z net/minecraft/util/profiling/jfr/JvmProfiler/isRunning ()Z +MD: net/minecraft/util/profiling/jfr/JvmProfiler/m_183609_ ()Z net/minecraft/util/profiling/jfr/JvmProfiler/isAvailable ()Z +MD: net/minecraft/util/profiling/jfr/JvmProfiler$NoOpProfiler/ ()V net/minecraft/util/profiling/jfr/JvmProfiler$NoOpProfiler/ ()V +MD: net/minecraft/util/profiling/jfr/JvmProfiler$NoOpProfiler/ ()V net/minecraft/util/profiling/jfr/JvmProfiler$NoOpProfiler/ ()V +MD: net/minecraft/util/profiling/jfr/JvmProfiler$NoOpProfiler/m_183243_ ()Ljava/nio/file/Path; net/minecraft/util/profiling/jfr/JvmProfiler$NoOpProfiler/stop ()Ljava/nio/file/Path; +MD: net/minecraft/util/profiling/jfr/JvmProfiler$NoOpProfiler/m_183425_ (Lnet/minecraft/util/profiling/jfr/Environment;)Z net/minecraft/util/profiling/jfr/JvmProfiler$NoOpProfiler/start (Lnet/minecraft/util/profiling/jfr/Environment;)Z +MD: net/minecraft/util/profiling/jfr/JvmProfiler$NoOpProfiler/m_183494_ ()Lnet/minecraft/util/profiling/jfr/callback/ProfiledDuration; net/minecraft/util/profiling/jfr/JvmProfiler$NoOpProfiler/onWorldLoadedStarted ()Lnet/minecraft/util/profiling/jfr/callback/ProfiledDuration; +MD: net/minecraft/util/profiling/jfr/JvmProfiler$NoOpProfiler/m_183508_ (IILjava/net/SocketAddress;I)V net/minecraft/util/profiling/jfr/JvmProfiler$NoOpProfiler/onPacketSent (IILjava/net/SocketAddress;I)V +MD: net/minecraft/util/profiling/jfr/JvmProfiler$NoOpProfiler/m_183510_ (IILjava/net/SocketAddress;I)V net/minecraft/util/profiling/jfr/JvmProfiler$NoOpProfiler/onPacketReceived (IILjava/net/SocketAddress;I)V +MD: net/minecraft/util/profiling/jfr/JvmProfiler$NoOpProfiler/m_183559_ (Lnet/minecraft/world/level/ChunkPos;Lnet/minecraft/resources/ResourceKey;Ljava/lang/String;)Lnet/minecraft/util/profiling/jfr/callback/ProfiledDuration; net/minecraft/util/profiling/jfr/JvmProfiler$NoOpProfiler/onChunkGenerate (Lnet/minecraft/world/level/ChunkPos;Lnet/minecraft/resources/ResourceKey;Ljava/lang/String;)Lnet/minecraft/util/profiling/jfr/callback/ProfiledDuration; +MD: net/minecraft/util/profiling/jfr/JvmProfiler$NoOpProfiler/m_183597_ (F)V net/minecraft/util/profiling/jfr/JvmProfiler$NoOpProfiler/onServerTick (F)V +MD: net/minecraft/util/profiling/jfr/JvmProfiler$NoOpProfiler/m_183608_ ()Z net/minecraft/util/profiling/jfr/JvmProfiler$NoOpProfiler/isRunning ()Z +MD: net/minecraft/util/profiling/jfr/JvmProfiler$NoOpProfiler/m_183609_ ()Z net/minecraft/util/profiling/jfr/JvmProfiler$NoOpProfiler/isAvailable ()Z +MD: net/minecraft/util/profiling/jfr/JvmProfiler$NoOpProfiler/m_185359_ ()V net/minecraft/util/profiling/jfr/JvmProfiler$NoOpProfiler/lambda$static$0 ()V +MD: net/minecraft/util/profiling/jfr/Percentiles/ ()V net/minecraft/util/profiling/jfr/Percentiles/ ()V +MD: net/minecraft/util/profiling/jfr/Percentiles/ ()V net/minecraft/util/profiling/jfr/Percentiles/ ()V +MD: net/minecraft/util/profiling/jfr/Percentiles/m_185385_ (Ljava/util/Map;)Ljava/util/Map; net/minecraft/util/profiling/jfr/Percentiles/sorted (Ljava/util/Map;)Ljava/util/Map; +MD: net/minecraft/util/profiling/jfr/Percentiles/m_185387_ (Ljava/util/Map;Lit/unimi/dsi/fastutil/ints/Int2DoubleRBTreeMap;)V net/minecraft/util/profiling/jfr/Percentiles/lambda$sorted$0 (Ljava/util/Map;Lit/unimi/dsi/fastutil/ints/Int2DoubleRBTreeMap;)V +MD: net/minecraft/util/profiling/jfr/Percentiles/m_185390_ ([D)Ljava/util/Map; net/minecraft/util/profiling/jfr/Percentiles/evaluate ([D)Ljava/util/Map; +MD: net/minecraft/util/profiling/jfr/Percentiles/m_185392_ ([J)Ljava/util/Map; net/minecraft/util/profiling/jfr/Percentiles/evaluate ([J)Ljava/util/Map; +MD: net/minecraft/util/profiling/jfr/SummaryReporter/ ()V net/minecraft/util/profiling/jfr/SummaryReporter/ ()V +MD: net/minecraft/util/profiling/jfr/SummaryReporter/ (Ljava/lang/Runnable;)V net/minecraft/util/profiling/jfr/SummaryReporter/ (Ljava/lang/Runnable;)V +MD: net/minecraft/util/profiling/jfr/SummaryReporter/m_185400_ (Ljava/nio/file/Path;)V net/minecraft/util/profiling/jfr/SummaryReporter/recordingStopped (Ljava/nio/file/Path;)V +MD: net/minecraft/util/profiling/jfr/SummaryReporter/m_185407_ ()Ljava/lang/String; net/minecraft/util/profiling/jfr/SummaryReporter/lambda$recordingStopped$3 ()Ljava/lang/String; +MD: net/minecraft/util/profiling/jfr/SummaryReporter/m_185408_ (Ljava/nio/file/Path;)Ljava/lang/String; net/minecraft/util/profiling/jfr/SummaryReporter/lambda$recordingStopped$2 (Ljava/nio/file/Path;)Ljava/lang/String; +MD: net/minecraft/util/profiling/jfr/SummaryReporter/m_185410_ ()Ljava/lang/String; net/minecraft/util/profiling/jfr/SummaryReporter/lambda$recordingStopped$1 ()Ljava/lang/String; +MD: net/minecraft/util/profiling/jfr/SummaryReporter/m_185411_ (Ljava/nio/file/Path;)Ljava/lang/String; net/minecraft/util/profiling/jfr/SummaryReporter/lambda$recordingStopped$0 (Ljava/nio/file/Path;)Ljava/lang/String; +MD: net/minecraft/util/profiling/jfr/SummaryReporter/m_201932_ (Ljava/util/function/Supplier;)V net/minecraft/util/profiling/jfr/SummaryReporter/infoWithFallback (Ljava/util/function/Supplier;)V +MD: net/minecraft/util/profiling/jfr/SummaryReporter/m_201934_ (Ljava/util/function/Supplier;Ljava/lang/Throwable;)V net/minecraft/util/profiling/jfr/SummaryReporter/warnWithFallback (Ljava/util/function/Supplier;Ljava/lang/Throwable;)V +MD: net/minecraft/util/profiling/jfr/callback/ProfiledDuration/m_185413_ ()V net/minecraft/util/profiling/jfr/callback/ProfiledDuration/finish ()V +MD: net/minecraft/util/profiling/jfr/event/ChunkGenerationEvent/ ()V net/minecraft/util/profiling/jfr/event/ChunkGenerationEvent/ ()V +MD: net/minecraft/util/profiling/jfr/event/ChunkGenerationEvent/ (Lnet/minecraft/world/level/ChunkPos;Lnet/minecraft/resources/ResourceKey;Ljava/lang/String;)V net/minecraft/util/profiling/jfr/event/ChunkGenerationEvent/ (Lnet/minecraft/world/level/ChunkPos;Lnet/minecraft/resources/ResourceKey;Ljava/lang/String;)V +MD: net/minecraft/util/profiling/jfr/event/ChunkGenerationEvent$Fields/ ()V net/minecraft/util/profiling/jfr/event/ChunkGenerationEvent$Fields/ ()V +MD: net/minecraft/util/profiling/jfr/event/NetworkSummaryEvent/ ()V net/minecraft/util/profiling/jfr/event/NetworkSummaryEvent/ ()V +MD: net/minecraft/util/profiling/jfr/event/NetworkSummaryEvent/ (Ljava/lang/String;)V net/minecraft/util/profiling/jfr/event/NetworkSummaryEvent/ (Ljava/lang/String;)V +MD: net/minecraft/util/profiling/jfr/event/NetworkSummaryEvent$Fields/ ()V net/minecraft/util/profiling/jfr/event/NetworkSummaryEvent$Fields/ ()V +MD: net/minecraft/util/profiling/jfr/event/NetworkSummaryEvent$SumAggregation/ (Ljava/lang/String;)V net/minecraft/util/profiling/jfr/event/NetworkSummaryEvent$SumAggregation/ (Ljava/lang/String;)V +MD: net/minecraft/util/profiling/jfr/event/NetworkSummaryEvent$SumAggregation/m_195576_ ()V net/minecraft/util/profiling/jfr/event/NetworkSummaryEvent$SumAggregation/commitEvent ()V +MD: net/minecraft/util/profiling/jfr/event/NetworkSummaryEvent$SumAggregation/m_195577_ (I)V net/minecraft/util/profiling/jfr/event/NetworkSummaryEvent$SumAggregation/trackSentPacket (I)V +MD: net/minecraft/util/profiling/jfr/event/NetworkSummaryEvent$SumAggregation/m_195579_ (I)V net/minecraft/util/profiling/jfr/event/NetworkSummaryEvent$SumAggregation/trackReceivedPacket (I)V +MD: net/minecraft/util/profiling/jfr/event/PacketEvent/ (IILjava/net/SocketAddress;I)V net/minecraft/util/profiling/jfr/event/PacketEvent/ (IILjava/net/SocketAddress;I)V +MD: net/minecraft/util/profiling/jfr/event/PacketEvent$Fields/ ()V net/minecraft/util/profiling/jfr/event/PacketEvent$Fields/ ()V +MD: net/minecraft/util/profiling/jfr/event/PacketReceivedEvent/ ()V net/minecraft/util/profiling/jfr/event/PacketReceivedEvent/ ()V +MD: net/minecraft/util/profiling/jfr/event/PacketReceivedEvent/ (IILjava/net/SocketAddress;I)V net/minecraft/util/profiling/jfr/event/PacketReceivedEvent/ (IILjava/net/SocketAddress;I)V +MD: net/minecraft/util/profiling/jfr/event/PacketSentEvent/ ()V net/minecraft/util/profiling/jfr/event/PacketSentEvent/ ()V +MD: net/minecraft/util/profiling/jfr/event/PacketSentEvent/ (IILjava/net/SocketAddress;I)V net/minecraft/util/profiling/jfr/event/PacketSentEvent/ (IILjava/net/SocketAddress;I)V +MD: net/minecraft/util/profiling/jfr/event/ServerTickTimeEvent/ ()V net/minecraft/util/profiling/jfr/event/ServerTickTimeEvent/ ()V +MD: net/minecraft/util/profiling/jfr/event/ServerTickTimeEvent/ (F)V net/minecraft/util/profiling/jfr/event/ServerTickTimeEvent/ (F)V +MD: net/minecraft/util/profiling/jfr/event/ServerTickTimeEvent$Fields/ ()V net/minecraft/util/profiling/jfr/event/ServerTickTimeEvent$Fields/ ()V +MD: net/minecraft/util/profiling/jfr/event/WorldLoadFinishedEvent/ ()V net/minecraft/util/profiling/jfr/event/WorldLoadFinishedEvent/ ()V +MD: net/minecraft/util/profiling/jfr/event/WorldLoadFinishedEvent/ ()V net/minecraft/util/profiling/jfr/event/WorldLoadFinishedEvent/ ()V +MD: net/minecraft/util/profiling/jfr/parse/JfrStatsParser/ (Ljava/util/stream/Stream;)V net/minecraft/util/profiling/jfr/parse/JfrStatsParser/ (Ljava/util/stream/Stream;)V +MD: net/minecraft/util/profiling/jfr/parse/JfrStatsParser/m_185444_ ()Lnet/minecraft/util/profiling/jfr/parse/JfrStatsResult; net/minecraft/util/profiling/jfr/parse/JfrStatsParser/results ()Lnet/minecraft/util/profiling/jfr/parse/JfrStatsResult; +MD: net/minecraft/util/profiling/jfr/parse/JfrStatsParser/m_185445_ (Lnet/minecraft/util/profiling/jfr/stats/NetworkPacketSummary$PacketIdentification;)Lnet/minecraft/util/profiling/jfr/parse/JfrStatsParser$MutableCountAndSize; net/minecraft/util/profiling/jfr/parse/JfrStatsParser/lambda$incrementPacket$1 (Lnet/minecraft/util/profiling/jfr/stats/NetworkPacketSummary$PacketIdentification;)Lnet/minecraft/util/profiling/jfr/parse/JfrStatsParser$MutableCountAndSize; +MD: net/minecraft/util/profiling/jfr/parse/JfrStatsParser/m_185447_ (Ljava/nio/file/Path;)Lnet/minecraft/util/profiling/jfr/parse/JfrStatsResult; net/minecraft/util/profiling/jfr/parse/JfrStatsParser/parse (Ljava/nio/file/Path;)Lnet/minecraft/util/profiling/jfr/parse/JfrStatsResult; +MD: net/minecraft/util/profiling/jfr/parse/JfrStatsParser/m_185449_ (Ljava/time/Duration;Ljava/util/Map;)Lnet/minecraft/util/profiling/jfr/stats/NetworkPacketSummary; net/minecraft/util/profiling/jfr/parse/JfrStatsParser/collectPacketStats (Ljava/time/Duration;Ljava/util/Map;)Lnet/minecraft/util/profiling/jfr/stats/NetworkPacketSummary; +MD: net/minecraft/util/profiling/jfr/parse/JfrStatsParser/m_185452_ (Ljava/util/Map$Entry;)Lcom/mojang/datafixers/util/Pair; net/minecraft/util/profiling/jfr/parse/JfrStatsParser/lambda$collectPacketStats$2 (Ljava/util/Map$Entry;)Lcom/mojang/datafixers/util/Pair; +MD: net/minecraft/util/profiling/jfr/parse/JfrStatsParser/m_185454_ (Ljava/util/stream/Stream;)V net/minecraft/util/profiling/jfr/parse/JfrStatsParser/capture (Ljava/util/stream/Stream;)V +MD: net/minecraft/util/profiling/jfr/parse/JfrStatsParser/m_185456_ (Ljdk/jfr/consumer/RecordedEvent;)V net/minecraft/util/profiling/jfr/parse/JfrStatsParser/lambda$capture$0 (Ljdk/jfr/consumer/RecordedEvent;)V +MD: net/minecraft/util/profiling/jfr/parse/JfrStatsParser/m_185458_ (Ljdk/jfr/consumer/RecordedEvent;ILjava/util/Map;)V net/minecraft/util/profiling/jfr/parse/JfrStatsParser/incrementPacket (Ljdk/jfr/consumer/RecordedEvent;ILjava/util/Map;)V +MD: net/minecraft/util/profiling/jfr/parse/JfrStatsParser/m_185462_ (Ljdk/jfr/consumer/RecordedEvent;Ljava/util/List;Ljava/lang/String;)V net/minecraft/util/profiling/jfr/parse/JfrStatsParser/appendFileIO (Ljdk/jfr/consumer/RecordedEvent;Ljava/util/List;Ljava/lang/String;)V +MD: net/minecraft/util/profiling/jfr/parse/JfrStatsParser$1/ (Ljdk/jfr/consumer/RecordingFile;)V net/minecraft/util/profiling/jfr/parse/JfrStatsParser$1/ (Ljdk/jfr/consumer/RecordingFile;)V +MD: net/minecraft/util/profiling/jfr/parse/JfrStatsParser$1/hasNext ()Z net/minecraft/util/profiling/jfr/parse/JfrStatsParser$1/hasNext ()Z +MD: net/minecraft/util/profiling/jfr/parse/JfrStatsParser$1/next ()Ljava/lang/Object; net/minecraft/util/profiling/jfr/parse/JfrStatsParser$1/next ()Ljava/lang/Object; +MD: net/minecraft/util/profiling/jfr/parse/JfrStatsParser$1/next ()Ljdk/jfr/consumer/RecordedEvent; net/minecraft/util/profiling/jfr/parse/JfrStatsParser$1/next ()Ljdk/jfr/consumer/RecordedEvent; +MD: net/minecraft/util/profiling/jfr/parse/JfrStatsParser$MutableCountAndSize/ ()V net/minecraft/util/profiling/jfr/parse/JfrStatsParser$MutableCountAndSize/ ()V +MD: net/minecraft/util/profiling/jfr/parse/JfrStatsParser$MutableCountAndSize/m_185475_ ()Lnet/minecraft/util/profiling/jfr/stats/NetworkPacketSummary$PacketCountAndSize; net/minecraft/util/profiling/jfr/parse/JfrStatsParser$MutableCountAndSize/toCountAndSize ()Lnet/minecraft/util/profiling/jfr/stats/NetworkPacketSummary$PacketCountAndSize; +MD: net/minecraft/util/profiling/jfr/parse/JfrStatsParser$MutableCountAndSize/m_185476_ (I)V net/minecraft/util/profiling/jfr/parse/JfrStatsParser$MutableCountAndSize/increment (I)V +MD: net/minecraft/util/profiling/jfr/parse/JfrStatsResult/ (Ljava/time/Instant;Ljava/time/Instant;Ljava/time/Duration;Ljava/time/Duration;Ljava/util/List;Ljava/util/List;Lnet/minecraft/util/profiling/jfr/stats/GcHeapStat$Summary;Lnet/minecraft/util/profiling/jfr/stats/ThreadAllocationStat$Summary;Lnet/minecraft/util/profiling/jfr/stats/NetworkPacketSummary;Lnet/minecraft/util/profiling/jfr/stats/NetworkPacketSummary;Lnet/minecraft/util/profiling/jfr/stats/FileIOStat$Summary;Lnet/minecraft/util/profiling/jfr/stats/FileIOStat$Summary;Ljava/util/List;)V net/minecraft/util/profiling/jfr/parse/JfrStatsResult/ (Ljava/time/Instant;Ljava/time/Instant;Ljava/time/Duration;Ljava/time/Duration;Ljava/util/List;Ljava/util/List;Lnet/minecraft/util/profiling/jfr/stats/GcHeapStat$Summary;Lnet/minecraft/util/profiling/jfr/stats/ThreadAllocationStat$Summary;Lnet/minecraft/util/profiling/jfr/stats/NetworkPacketSummary;Lnet/minecraft/util/profiling/jfr/stats/NetworkPacketSummary;Lnet/minecraft/util/profiling/jfr/stats/FileIOStat$Summary;Lnet/minecraft/util/profiling/jfr/stats/FileIOStat$Summary;Ljava/util/List;)V +MD: net/minecraft/util/profiling/jfr/parse/JfrStatsResult/equals (Ljava/lang/Object;)Z net/minecraft/util/profiling/jfr/parse/JfrStatsResult/equals (Ljava/lang/Object;)Z +MD: net/minecraft/util/profiling/jfr/parse/JfrStatsResult/f_185478_ ()Ljava/time/Instant; net/minecraft/util/profiling/jfr/parse/JfrStatsResult/recordingStarted ()Ljava/time/Instant; +MD: net/minecraft/util/profiling/jfr/parse/JfrStatsResult/f_185479_ ()Ljava/time/Instant; net/minecraft/util/profiling/jfr/parse/JfrStatsResult/recordingEnded ()Ljava/time/Instant; +MD: net/minecraft/util/profiling/jfr/parse/JfrStatsResult/f_185480_ ()Ljava/time/Duration; net/minecraft/util/profiling/jfr/parse/JfrStatsResult/recordingDuration ()Ljava/time/Duration; +MD: net/minecraft/util/profiling/jfr/parse/JfrStatsResult/f_185481_ ()Ljava/time/Duration; net/minecraft/util/profiling/jfr/parse/JfrStatsResult/worldCreationDuration ()Ljava/time/Duration; +MD: net/minecraft/util/profiling/jfr/parse/JfrStatsResult/f_185482_ ()Ljava/util/List; net/minecraft/util/profiling/jfr/parse/JfrStatsResult/tickTimes ()Ljava/util/List; +MD: net/minecraft/util/profiling/jfr/parse/JfrStatsResult/f_185483_ ()Ljava/util/List; net/minecraft/util/profiling/jfr/parse/JfrStatsResult/cpuLoadStats ()Ljava/util/List; +MD: net/minecraft/util/profiling/jfr/parse/JfrStatsResult/f_185484_ ()Lnet/minecraft/util/profiling/jfr/stats/GcHeapStat$Summary; net/minecraft/util/profiling/jfr/parse/JfrStatsResult/heapSummary ()Lnet/minecraft/util/profiling/jfr/stats/GcHeapStat$Summary; +MD: net/minecraft/util/profiling/jfr/parse/JfrStatsResult/f_185485_ ()Lnet/minecraft/util/profiling/jfr/stats/ThreadAllocationStat$Summary; net/minecraft/util/profiling/jfr/parse/JfrStatsResult/threadAllocationSummary ()Lnet/minecraft/util/profiling/jfr/stats/ThreadAllocationStat$Summary; +MD: net/minecraft/util/profiling/jfr/parse/JfrStatsResult/f_185486_ ()Lnet/minecraft/util/profiling/jfr/stats/NetworkPacketSummary; net/minecraft/util/profiling/jfr/parse/JfrStatsResult/receivedPacketsSummary ()Lnet/minecraft/util/profiling/jfr/stats/NetworkPacketSummary; +MD: net/minecraft/util/profiling/jfr/parse/JfrStatsResult/f_185487_ ()Lnet/minecraft/util/profiling/jfr/stats/NetworkPacketSummary; net/minecraft/util/profiling/jfr/parse/JfrStatsResult/sentPacketsSummary ()Lnet/minecraft/util/profiling/jfr/stats/NetworkPacketSummary; +MD: net/minecraft/util/profiling/jfr/parse/JfrStatsResult/f_185488_ ()Lnet/minecraft/util/profiling/jfr/stats/FileIOStat$Summary; net/minecraft/util/profiling/jfr/parse/JfrStatsResult/fileWrites ()Lnet/minecraft/util/profiling/jfr/stats/FileIOStat$Summary; +MD: net/minecraft/util/profiling/jfr/parse/JfrStatsResult/f_185489_ ()Lnet/minecraft/util/profiling/jfr/stats/FileIOStat$Summary; net/minecraft/util/profiling/jfr/parse/JfrStatsResult/fileReads ()Lnet/minecraft/util/profiling/jfr/stats/FileIOStat$Summary; +MD: net/minecraft/util/profiling/jfr/parse/JfrStatsResult/f_185490_ ()Ljava/util/List; net/minecraft/util/profiling/jfr/parse/JfrStatsResult/chunkGenStats ()Ljava/util/List; +MD: net/minecraft/util/profiling/jfr/parse/JfrStatsResult/hashCode ()I net/minecraft/util/profiling/jfr/parse/JfrStatsResult/hashCode ()I +MD: net/minecraft/util/profiling/jfr/parse/JfrStatsResult/m_185505_ ()Ljava/util/List; net/minecraft/util/profiling/jfr/parse/JfrStatsResult/chunkGenSummary ()Ljava/util/List; +MD: net/minecraft/util/profiling/jfr/parse/JfrStatsResult/m_185506_ (Lcom/mojang/datafixers/util/Pair;)Ljava/time/Duration; net/minecraft/util/profiling/jfr/parse/JfrStatsResult/lambda$chunkGenSummary$1 (Lcom/mojang/datafixers/util/Pair;)Ljava/time/Duration; +MD: net/minecraft/util/profiling/jfr/parse/JfrStatsResult/m_185508_ (Ljava/util/Map$Entry;)Lcom/mojang/datafixers/util/Pair; net/minecraft/util/profiling/jfr/parse/JfrStatsResult/lambda$chunkGenSummary$0 (Ljava/util/Map$Entry;)Lcom/mojang/datafixers/util/Pair; +MD: net/minecraft/util/profiling/jfr/parse/JfrStatsResult/m_185510_ ()Ljava/lang/String; net/minecraft/util/profiling/jfr/parse/JfrStatsResult/asJson ()Ljava/lang/String; +MD: net/minecraft/util/profiling/jfr/parse/JfrStatsResult/toString ()Ljava/lang/String; net/minecraft/util/profiling/jfr/parse/JfrStatsResult/toString ()Ljava/lang/String; +MD: net/minecraft/util/profiling/jfr/serialize/JfrResultJsonSerializer/ ()V net/minecraft/util/profiling/jfr/serialize/JfrResultJsonSerializer/ ()V +MD: net/minecraft/util/profiling/jfr/serialize/JfrResultJsonSerializer/m_185535_ (Lnet/minecraft/util/profiling/jfr/parse/JfrStatsResult;)Ljava/lang/String; net/minecraft/util/profiling/jfr/serialize/JfrResultJsonSerializer/format (Lnet/minecraft/util/profiling/jfr/parse/JfrStatsResult;)Ljava/lang/String; +MD: net/minecraft/util/profiling/jfr/serialize/JfrResultJsonSerializer/m_185537_ (Lnet/minecraft/util/profiling/jfr/stats/ChunkGenStat;)Lcom/google/gson/JsonElement; net/minecraft/util/profiling/jfr/serialize/JfrResultJsonSerializer/lambda$chunkGen$4 (Lnet/minecraft/util/profiling/jfr/stats/ChunkGenStat;)Lcom/google/gson/JsonElement; +MD: net/minecraft/util/profiling/jfr/serialize/JfrResultJsonSerializer/m_185539_ (Lnet/minecraft/util/profiling/jfr/stats/FileIOStat$Summary;)Lcom/google/gson/JsonElement; net/minecraft/util/profiling/jfr/serialize/JfrResultJsonSerializer/fileIoSummary (Lnet/minecraft/util/profiling/jfr/stats/FileIOStat$Summary;)Lcom/google/gson/JsonElement; +MD: net/minecraft/util/profiling/jfr/serialize/JfrResultJsonSerializer/m_185541_ (Lnet/minecraft/util/profiling/jfr/stats/GcHeapStat$Summary;)Lcom/google/gson/JsonElement; net/minecraft/util/profiling/jfr/serialize/JfrResultJsonSerializer/heap (Lnet/minecraft/util/profiling/jfr/stats/GcHeapStat$Summary;)Lcom/google/gson/JsonElement; +MD: net/minecraft/util/profiling/jfr/serialize/JfrResultJsonSerializer/m_185543_ (Lnet/minecraft/util/profiling/jfr/stats/NetworkPacketSummary;)Lcom/google/gson/JsonElement; net/minecraft/util/profiling/jfr/serialize/JfrResultJsonSerializer/packets (Lnet/minecraft/util/profiling/jfr/stats/NetworkPacketSummary;)Lcom/google/gson/JsonElement; +MD: net/minecraft/util/profiling/jfr/serialize/JfrResultJsonSerializer/m_185545_ (Lnet/minecraft/util/profiling/jfr/stats/ThreadAllocationStat$Summary;)Lcom/google/gson/JsonElement; net/minecraft/util/profiling/jfr/serialize/JfrResultJsonSerializer/threadAllocations (Lnet/minecraft/util/profiling/jfr/stats/ThreadAllocationStat$Summary;)Lcom/google/gson/JsonElement; +MD: net/minecraft/util/profiling/jfr/serialize/JfrResultJsonSerializer/m_185547_ (Lnet/minecraft/util/profiling/jfr/stats/TickTimeStat;)D net/minecraft/util/profiling/jfr/serialize/JfrResultJsonSerializer/lambda$serverTicks$7 (Lnet/minecraft/util/profiling/jfr/stats/TickTimeStat;)D +MD: net/minecraft/util/profiling/jfr/serialize/JfrResultJsonSerializer/m_185549_ (Lcom/google/gson/JsonArray;Lcom/mojang/datafixers/util/Pair;)V net/minecraft/util/profiling/jfr/serialize/JfrResultJsonSerializer/lambda$packets$10 (Lcom/google/gson/JsonArray;Lcom/mojang/datafixers/util/Pair;)V +MD: net/minecraft/util/profiling/jfr/serialize/JfrResultJsonSerializer/m_185552_ (Lcom/google/gson/JsonArray;Ljava/lang/String;Ljava/lang/Double;)V net/minecraft/util/profiling/jfr/serialize/JfrResultJsonSerializer/lambda$threadAllocations$6 (Lcom/google/gson/JsonArray;Ljava/lang/String;Ljava/lang/Double;)V +MD: net/minecraft/util/profiling/jfr/serialize/JfrResultJsonSerializer/m_185556_ (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonArray;)V net/minecraft/util/profiling/jfr/serialize/JfrResultJsonSerializer/lambda$chunkGen$1 (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonArray;)V +MD: net/minecraft/util/profiling/jfr/serialize/JfrResultJsonSerializer/m_185559_ (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonObject;)V net/minecraft/util/profiling/jfr/serialize/JfrResultJsonSerializer/lambda$chunkGen$2 (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonObject;)V +MD: net/minecraft/util/profiling/jfr/serialize/JfrResultJsonSerializer/m_185562_ (Lcom/google/gson/JsonObject;Ljava/lang/Integer;Ljava/lang/Double;)V net/minecraft/util/profiling/jfr/serialize/JfrResultJsonSerializer/lambda$serverTicks$8 (Lcom/google/gson/JsonObject;Ljava/lang/Integer;Ljava/lang/Double;)V +MD: net/minecraft/util/profiling/jfr/serialize/JfrResultJsonSerializer/m_185566_ (Lcom/mojang/datafixers/util/Pair;)D net/minecraft/util/profiling/jfr/serialize/JfrResultJsonSerializer/lambda$chunkGen$0 (Lcom/mojang/datafixers/util/Pair;)D +MD: net/minecraft/util/profiling/jfr/serialize/JfrResultJsonSerializer/m_185568_ (Ljava/lang/String;Ljava/lang/Double;Lcom/google/gson/JsonObject;)V net/minecraft/util/profiling/jfr/serialize/JfrResultJsonSerializer/lambda$threadAllocations$5 (Ljava/lang/String;Ljava/lang/Double;Lcom/google/gson/JsonObject;)V +MD: net/minecraft/util/profiling/jfr/serialize/JfrResultJsonSerializer/m_185572_ (Ljava/util/List;)Lcom/google/gson/JsonElement; net/minecraft/util/profiling/jfr/serialize/JfrResultJsonSerializer/chunkGen (Ljava/util/List;)Lcom/google/gson/JsonElement; +MD: net/minecraft/util/profiling/jfr/serialize/JfrResultJsonSerializer/m_185574_ (Ljava/util/List;Ljava/util/function/ToDoubleFunction;)Lcom/google/gson/JsonObject; net/minecraft/util/profiling/jfr/serialize/JfrResultJsonSerializer/lambda$cpu$11 (Ljava/util/List;Ljava/util/function/ToDoubleFunction;)Lcom/google/gson/JsonObject; +MD: net/minecraft/util/profiling/jfr/serialize/JfrResultJsonSerializer/m_185577_ (Lnet/minecraft/util/profiling/jfr/parse/JfrStatsResult;)Lcom/google/gson/JsonElement; net/minecraft/util/profiling/jfr/serialize/JfrResultJsonSerializer/fileIO (Lnet/minecraft/util/profiling/jfr/parse/JfrStatsResult;)Lcom/google/gson/JsonElement; +MD: net/minecraft/util/profiling/jfr/serialize/JfrResultJsonSerializer/m_185579_ (Lcom/google/gson/JsonArray;Lcom/mojang/datafixers/util/Pair;)V net/minecraft/util/profiling/jfr/serialize/JfrResultJsonSerializer/lambda$fileIoSummary$9 (Lcom/google/gson/JsonArray;Lcom/mojang/datafixers/util/Pair;)V +MD: net/minecraft/util/profiling/jfr/serialize/JfrResultJsonSerializer/m_185582_ (Lcom/google/gson/JsonObject;Ljava/lang/Integer;Ljava/lang/Double;)V net/minecraft/util/profiling/jfr/serialize/JfrResultJsonSerializer/lambda$chunkGen$3 (Lcom/google/gson/JsonObject;Ljava/lang/Integer;Ljava/lang/Double;)V +MD: net/minecraft/util/profiling/jfr/serialize/JfrResultJsonSerializer/m_185586_ (Ljava/util/List;)Lcom/google/gson/JsonElement; net/minecraft/util/profiling/jfr/serialize/JfrResultJsonSerializer/serverTicks (Ljava/util/List;)Lcom/google/gson/JsonElement; +MD: net/minecraft/util/profiling/jfr/serialize/JfrResultJsonSerializer/m_185588_ (Lnet/minecraft/util/profiling/jfr/parse/JfrStatsResult;)Lcom/google/gson/JsonElement; net/minecraft/util/profiling/jfr/serialize/JfrResultJsonSerializer/network (Lnet/minecraft/util/profiling/jfr/parse/JfrStatsResult;)Lcom/google/gson/JsonElement; +MD: net/minecraft/util/profiling/jfr/serialize/JfrResultJsonSerializer/m_185590_ (Ljava/util/List;)Lcom/google/gson/JsonElement; net/minecraft/util/profiling/jfr/serialize/JfrResultJsonSerializer/cpu (Ljava/util/List;)Lcom/google/gson/JsonElement; +MD: net/minecraft/util/profiling/jfr/stats/ChunkGenStat/ (Ljava/time/Duration;Lnet/minecraft/world/level/ChunkPos;Lnet/minecraft/server/level/ColumnPos;Lnet/minecraft/world/level/chunk/ChunkStatus;Ljava/lang/String;)V net/minecraft/util/profiling/jfr/stats/ChunkGenStat/ (Ljava/time/Duration;Lnet/minecraft/world/level/ChunkPos;Lnet/minecraft/server/level/ColumnPos;Lnet/minecraft/world/level/chunk/ChunkStatus;Ljava/lang/String;)V +MD: net/minecraft/util/profiling/jfr/stats/ChunkGenStat/equals (Ljava/lang/Object;)Z net/minecraft/util/profiling/jfr/stats/ChunkGenStat/equals (Ljava/lang/Object;)Z +MD: net/minecraft/util/profiling/jfr/stats/ChunkGenStat/f_185593_ ()Lnet/minecraft/world/level/ChunkPos; net/minecraft/util/profiling/jfr/stats/ChunkGenStat/chunkPos ()Lnet/minecraft/world/level/ChunkPos; +MD: net/minecraft/util/profiling/jfr/stats/ChunkGenStat/f_185594_ ()Lnet/minecraft/server/level/ColumnPos; net/minecraft/util/profiling/jfr/stats/ChunkGenStat/worldPos ()Lnet/minecraft/server/level/ColumnPos; +MD: net/minecraft/util/profiling/jfr/stats/ChunkGenStat/f_185595_ ()Lnet/minecraft/world/level/chunk/ChunkStatus; net/minecraft/util/profiling/jfr/stats/ChunkGenStat/status ()Lnet/minecraft/world/level/chunk/ChunkStatus; +MD: net/minecraft/util/profiling/jfr/stats/ChunkGenStat/f_185596_ ()Ljava/lang/String; net/minecraft/util/profiling/jfr/stats/ChunkGenStat/level ()Ljava/lang/String; +MD: net/minecraft/util/profiling/jfr/stats/ChunkGenStat/hashCode ()I net/minecraft/util/profiling/jfr/stats/ChunkGenStat/hashCode ()I +MD: net/minecraft/util/profiling/jfr/stats/ChunkGenStat/m_183571_ ()Ljava/time/Duration; net/minecraft/util/profiling/jfr/stats/ChunkGenStat/duration ()Ljava/time/Duration; +MD: net/minecraft/util/profiling/jfr/stats/ChunkGenStat/m_185604_ (Ljdk/jfr/consumer/RecordedEvent;)Lnet/minecraft/util/profiling/jfr/stats/ChunkGenStat; net/minecraft/util/profiling/jfr/stats/ChunkGenStat/from (Ljdk/jfr/consumer/RecordedEvent;)Lnet/minecraft/util/profiling/jfr/stats/ChunkGenStat; +MD: net/minecraft/util/profiling/jfr/stats/ChunkGenStat/toString ()Ljava/lang/String; net/minecraft/util/profiling/jfr/stats/ChunkGenStat/toString ()Ljava/lang/String; +MD: net/minecraft/util/profiling/jfr/stats/CpuLoadStat/ (DDD)V net/minecraft/util/profiling/jfr/stats/CpuLoadStat/ (DDD)V +MD: net/minecraft/util/profiling/jfr/stats/CpuLoadStat/equals (Ljava/lang/Object;)Z net/minecraft/util/profiling/jfr/stats/CpuLoadStat/equals (Ljava/lang/Object;)Z +MD: net/minecraft/util/profiling/jfr/stats/CpuLoadStat/f_185614_ ()D net/minecraft/util/profiling/jfr/stats/CpuLoadStat/jvm ()D +MD: net/minecraft/util/profiling/jfr/stats/CpuLoadStat/f_185615_ ()D net/minecraft/util/profiling/jfr/stats/CpuLoadStat/userJvm ()D +MD: net/minecraft/util/profiling/jfr/stats/CpuLoadStat/f_185616_ ()D net/minecraft/util/profiling/jfr/stats/CpuLoadStat/system ()D +MD: net/minecraft/util/profiling/jfr/stats/CpuLoadStat/hashCode ()I net/minecraft/util/profiling/jfr/stats/CpuLoadStat/hashCode ()I +MD: net/minecraft/util/profiling/jfr/stats/CpuLoadStat/m_185622_ (Ljdk/jfr/consumer/RecordedEvent;)Lnet/minecraft/util/profiling/jfr/stats/CpuLoadStat; net/minecraft/util/profiling/jfr/stats/CpuLoadStat/from (Ljdk/jfr/consumer/RecordedEvent;)Lnet/minecraft/util/profiling/jfr/stats/CpuLoadStat; +MD: net/minecraft/util/profiling/jfr/stats/CpuLoadStat/toString ()Ljava/lang/String; net/minecraft/util/profiling/jfr/stats/CpuLoadStat/toString ()Ljava/lang/String; +MD: net/minecraft/util/profiling/jfr/stats/FileIOStat/ (Ljava/time/Duration;Ljava/lang/String;J)V net/minecraft/util/profiling/jfr/stats/FileIOStat/ (Ljava/time/Duration;Ljava/lang/String;J)V +MD: net/minecraft/util/profiling/jfr/stats/FileIOStat/equals (Ljava/lang/Object;)Z net/minecraft/util/profiling/jfr/stats/FileIOStat/equals (Ljava/lang/Object;)Z +MD: net/minecraft/util/profiling/jfr/stats/FileIOStat/f_185630_ ()Ljava/time/Duration; net/minecraft/util/profiling/jfr/stats/FileIOStat/duration ()Ljava/time/Duration; +MD: net/minecraft/util/profiling/jfr/stats/FileIOStat/f_185631_ ()Ljava/lang/String; net/minecraft/util/profiling/jfr/stats/FileIOStat/path ()Ljava/lang/String; +MD: net/minecraft/util/profiling/jfr/stats/FileIOStat/f_185632_ ()J net/minecraft/util/profiling/jfr/stats/FileIOStat/bytes ()J +MD: net/minecraft/util/profiling/jfr/stats/FileIOStat/hashCode ()I net/minecraft/util/profiling/jfr/stats/FileIOStat/hashCode ()I +MD: net/minecraft/util/profiling/jfr/stats/FileIOStat/m_185638_ (Lnet/minecraft/util/profiling/jfr/stats/FileIOStat;)J net/minecraft/util/profiling/jfr/stats/FileIOStat/lambda$summary$3 (Lnet/minecraft/util/profiling/jfr/stats/FileIOStat;)J +MD: net/minecraft/util/profiling/jfr/stats/FileIOStat/m_185640_ (Ljava/time/Duration;Ljava/util/List;)Lnet/minecraft/util/profiling/jfr/stats/FileIOStat$Summary; net/minecraft/util/profiling/jfr/stats/FileIOStat/summary (Ljava/time/Duration;Ljava/util/List;)Lnet/minecraft/util/profiling/jfr/stats/FileIOStat$Summary; +MD: net/minecraft/util/profiling/jfr/stats/FileIOStat/m_185643_ (Ljava/util/Map$Entry;)Lcom/mojang/datafixers/util/Pair; net/minecraft/util/profiling/jfr/stats/FileIOStat/lambda$summary$4 (Ljava/util/Map$Entry;)Lcom/mojang/datafixers/util/Pair; +MD: net/minecraft/util/profiling/jfr/stats/FileIOStat/m_185646_ (Lnet/minecraft/util/profiling/jfr/stats/FileIOStat;)Ljava/lang/String; net/minecraft/util/profiling/jfr/stats/FileIOStat/lambda$summary$2 (Lnet/minecraft/util/profiling/jfr/stats/FileIOStat;)Ljava/lang/String; +MD: net/minecraft/util/profiling/jfr/stats/FileIOStat/m_185649_ (Lnet/minecraft/util/profiling/jfr/stats/FileIOStat;)Z net/minecraft/util/profiling/jfr/stats/FileIOStat/lambda$summary$1 (Lnet/minecraft/util/profiling/jfr/stats/FileIOStat;)Z +MD: net/minecraft/util/profiling/jfr/stats/FileIOStat/m_185651_ (Lnet/minecraft/util/profiling/jfr/stats/FileIOStat;)J net/minecraft/util/profiling/jfr/stats/FileIOStat/lambda$summary$0 (Lnet/minecraft/util/profiling/jfr/stats/FileIOStat;)J +MD: net/minecraft/util/profiling/jfr/stats/FileIOStat/toString ()Ljava/lang/String; net/minecraft/util/profiling/jfr/stats/FileIOStat/toString ()Ljava/lang/String; +MD: net/minecraft/util/profiling/jfr/stats/FileIOStat$Summary/ (JDJDLjava/time/Duration;Ljava/util/List;)V net/minecraft/util/profiling/jfr/stats/FileIOStat$Summary/ (JDJDLjava/time/Duration;Ljava/util/List;)V +MD: net/minecraft/util/profiling/jfr/stats/FileIOStat$Summary/equals (Ljava/lang/Object;)Z net/minecraft/util/profiling/jfr/stats/FileIOStat$Summary/equals (Ljava/lang/Object;)Z +MD: net/minecraft/util/profiling/jfr/stats/FileIOStat$Summary/f_185657_ ()J net/minecraft/util/profiling/jfr/stats/FileIOStat$Summary/totalBytes ()J +MD: net/minecraft/util/profiling/jfr/stats/FileIOStat$Summary/f_185658_ ()D net/minecraft/util/profiling/jfr/stats/FileIOStat$Summary/bytesPerSecond ()D +MD: net/minecraft/util/profiling/jfr/stats/FileIOStat$Summary/f_185659_ ()J net/minecraft/util/profiling/jfr/stats/FileIOStat$Summary/counts ()J +MD: net/minecraft/util/profiling/jfr/stats/FileIOStat$Summary/f_185660_ ()D net/minecraft/util/profiling/jfr/stats/FileIOStat$Summary/countsPerSecond ()D +MD: net/minecraft/util/profiling/jfr/stats/FileIOStat$Summary/f_185661_ ()Ljava/time/Duration; net/minecraft/util/profiling/jfr/stats/FileIOStat$Summary/timeSpentInIO ()Ljava/time/Duration; +MD: net/minecraft/util/profiling/jfr/stats/FileIOStat$Summary/f_185662_ ()Ljava/util/List; net/minecraft/util/profiling/jfr/stats/FileIOStat$Summary/topTenContributorsByTotalBytes ()Ljava/util/List; +MD: net/minecraft/util/profiling/jfr/stats/FileIOStat$Summary/hashCode ()I net/minecraft/util/profiling/jfr/stats/FileIOStat$Summary/hashCode ()I +MD: net/minecraft/util/profiling/jfr/stats/FileIOStat$Summary/toString ()Ljava/lang/String; net/minecraft/util/profiling/jfr/stats/FileIOStat$Summary/toString ()Ljava/lang/String; +MD: net/minecraft/util/profiling/jfr/stats/GcHeapStat/ (Ljava/time/Instant;JLnet/minecraft/util/profiling/jfr/stats/GcHeapStat$Timing;)V net/minecraft/util/profiling/jfr/stats/GcHeapStat/ (Ljava/time/Instant;JLnet/minecraft/util/profiling/jfr/stats/GcHeapStat$Timing;)V +MD: net/minecraft/util/profiling/jfr/stats/GcHeapStat/equals (Ljava/lang/Object;)Z net/minecraft/util/profiling/jfr/stats/GcHeapStat/equals (Ljava/lang/Object;)Z +MD: net/minecraft/util/profiling/jfr/stats/GcHeapStat/f_185680_ ()Ljava/time/Instant; net/minecraft/util/profiling/jfr/stats/GcHeapStat/timestamp ()Ljava/time/Instant; +MD: net/minecraft/util/profiling/jfr/stats/GcHeapStat/f_185681_ ()J net/minecraft/util/profiling/jfr/stats/GcHeapStat/heapUsed ()J +MD: net/minecraft/util/profiling/jfr/stats/GcHeapStat/f_185682_ ()Lnet/minecraft/util/profiling/jfr/stats/GcHeapStat$Timing; net/minecraft/util/profiling/jfr/stats/GcHeapStat/timing ()Lnet/minecraft/util/profiling/jfr/stats/GcHeapStat$Timing; +MD: net/minecraft/util/profiling/jfr/stats/GcHeapStat/hashCode ()I net/minecraft/util/profiling/jfr/stats/GcHeapStat/hashCode ()I +MD: net/minecraft/util/profiling/jfr/stats/GcHeapStat/m_185688_ (Lnet/minecraft/util/profiling/jfr/stats/GcHeapStat;)Lnet/minecraft/util/profiling/jfr/stats/GcHeapStat$Timing; net/minecraft/util/profiling/jfr/stats/GcHeapStat/lambda$calculateAllocationRatePerSecond$0 (Lnet/minecraft/util/profiling/jfr/stats/GcHeapStat;)Lnet/minecraft/util/profiling/jfr/stats/GcHeapStat$Timing; +MD: net/minecraft/util/profiling/jfr/stats/GcHeapStat/m_185690_ (Ljava/time/Duration;Ljava/util/List;Ljava/time/Duration;I)Lnet/minecraft/util/profiling/jfr/stats/GcHeapStat$Summary; net/minecraft/util/profiling/jfr/stats/GcHeapStat/summary (Ljava/time/Duration;Ljava/util/List;Ljava/time/Duration;I)Lnet/minecraft/util/profiling/jfr/stats/GcHeapStat$Summary; +MD: net/minecraft/util/profiling/jfr/stats/GcHeapStat/m_185695_ (Ljava/util/List;)D net/minecraft/util/profiling/jfr/stats/GcHeapStat/calculateAllocationRatePerSecond (Ljava/util/List;)D +MD: net/minecraft/util/profiling/jfr/stats/GcHeapStat/m_185697_ (Ljdk/jfr/consumer/RecordedEvent;)Lnet/minecraft/util/profiling/jfr/stats/GcHeapStat; net/minecraft/util/profiling/jfr/stats/GcHeapStat/from (Ljdk/jfr/consumer/RecordedEvent;)Lnet/minecraft/util/profiling/jfr/stats/GcHeapStat; +MD: net/minecraft/util/profiling/jfr/stats/GcHeapStat/toString ()Ljava/lang/String; net/minecraft/util/profiling/jfr/stats/GcHeapStat/toString ()Ljava/lang/String; +MD: net/minecraft/util/profiling/jfr/stats/GcHeapStat$Summary/ (Ljava/time/Duration;Ljava/time/Duration;ID)V net/minecraft/util/profiling/jfr/stats/GcHeapStat$Summary/ (Ljava/time/Duration;Ljava/time/Duration;ID)V +MD: net/minecraft/util/profiling/jfr/stats/GcHeapStat$Summary/equals (Ljava/lang/Object;)Z net/minecraft/util/profiling/jfr/stats/GcHeapStat$Summary/equals (Ljava/lang/Object;)Z +MD: net/minecraft/util/profiling/jfr/stats/GcHeapStat$Summary/f_185705_ ()Ljava/time/Duration; net/minecraft/util/profiling/jfr/stats/GcHeapStat$Summary/duration ()Ljava/time/Duration; +MD: net/minecraft/util/profiling/jfr/stats/GcHeapStat$Summary/f_185706_ ()Ljava/time/Duration; net/minecraft/util/profiling/jfr/stats/GcHeapStat$Summary/gcTotalDuration ()Ljava/time/Duration; +MD: net/minecraft/util/profiling/jfr/stats/GcHeapStat$Summary/f_185707_ ()I net/minecraft/util/profiling/jfr/stats/GcHeapStat$Summary/totalGCs ()I +MD: net/minecraft/util/profiling/jfr/stats/GcHeapStat$Summary/f_185708_ ()D net/minecraft/util/profiling/jfr/stats/GcHeapStat$Summary/allocationRateBytesPerSecond ()D +MD: net/minecraft/util/profiling/jfr/stats/GcHeapStat$Summary/hashCode ()I net/minecraft/util/profiling/jfr/stats/GcHeapStat$Summary/hashCode ()I +MD: net/minecraft/util/profiling/jfr/stats/GcHeapStat$Summary/m_185714_ ()F net/minecraft/util/profiling/jfr/stats/GcHeapStat$Summary/gcOverHead ()F +MD: net/minecraft/util/profiling/jfr/stats/GcHeapStat$Summary/toString ()Ljava/lang/String; net/minecraft/util/profiling/jfr/stats/GcHeapStat$Summary/toString ()Ljava/lang/String; +MD: net/minecraft/util/profiling/jfr/stats/GcHeapStat$Timing/ ()V net/minecraft/util/profiling/jfr/stats/GcHeapStat$Timing/ ()V +MD: net/minecraft/util/profiling/jfr/stats/GcHeapStat$Timing/ (Ljava/lang/String;I)V net/minecraft/util/profiling/jfr/stats/GcHeapStat$Timing/ (Ljava/lang/String;I)V +MD: net/minecraft/util/profiling/jfr/stats/GcHeapStat$Timing/m_185730_ ()[Lnet/minecraft/util/profiling/jfr/stats/GcHeapStat$Timing; net/minecraft/util/profiling/jfr/stats/GcHeapStat$Timing/$values ()[Lnet/minecraft/util/profiling/jfr/stats/GcHeapStat$Timing; +MD: net/minecraft/util/profiling/jfr/stats/GcHeapStat$Timing/valueOf (Ljava/lang/String;)Lnet/minecraft/util/profiling/jfr/stats/GcHeapStat$Timing; net/minecraft/util/profiling/jfr/stats/GcHeapStat$Timing/valueOf (Ljava/lang/String;)Lnet/minecraft/util/profiling/jfr/stats/GcHeapStat$Timing; +MD: net/minecraft/util/profiling/jfr/stats/GcHeapStat$Timing/values ()[Lnet/minecraft/util/profiling/jfr/stats/GcHeapStat$Timing; net/minecraft/util/profiling/jfr/stats/GcHeapStat$Timing/values ()[Lnet/minecraft/util/profiling/jfr/stats/GcHeapStat$Timing; +MD: net/minecraft/util/profiling/jfr/stats/NetworkPacketSummary/ (Ljava/time/Duration;Ljava/util/List;)V net/minecraft/util/profiling/jfr/stats/NetworkPacketSummary/ (Ljava/time/Duration;Ljava/util/List;)V +MD: net/minecraft/util/profiling/jfr/stats/NetworkPacketSummary/m_185740_ ()D net/minecraft/util/profiling/jfr/stats/NetworkPacketSummary/getCountsPerSecond ()D +MD: net/minecraft/util/profiling/jfr/stats/NetworkPacketSummary/m_185741_ ()D net/minecraft/util/profiling/jfr/stats/NetworkPacketSummary/getSizePerSecond ()D +MD: net/minecraft/util/profiling/jfr/stats/NetworkPacketSummary/m_185742_ ()J net/minecraft/util/profiling/jfr/stats/NetworkPacketSummary/getTotalCount ()J +MD: net/minecraft/util/profiling/jfr/stats/NetworkPacketSummary/m_185743_ ()J net/minecraft/util/profiling/jfr/stats/NetworkPacketSummary/getTotalSize ()J +MD: net/minecraft/util/profiling/jfr/stats/NetworkPacketSummary/m_185744_ ()Ljava/util/List; net/minecraft/util/profiling/jfr/stats/NetworkPacketSummary/largestSizeContributors ()Ljava/util/List; +MD: net/minecraft/util/profiling/jfr/stats/NetworkPacketSummary/m_185745_ ()Lnet/minecraft/util/profiling/jfr/stats/NetworkPacketSummary$PacketCountAndSize; net/minecraft/util/profiling/jfr/stats/NetworkPacketSummary/lambda$new$0 ()Lnet/minecraft/util/profiling/jfr/stats/NetworkPacketSummary$PacketCountAndSize; +MD: net/minecraft/util/profiling/jfr/stats/NetworkPacketSummary$PacketCountAndSize/ ()V net/minecraft/util/profiling/jfr/stats/NetworkPacketSummary$PacketCountAndSize/ ()V +MD: net/minecraft/util/profiling/jfr/stats/NetworkPacketSummary$PacketCountAndSize/ (JJ)V net/minecraft/util/profiling/jfr/stats/NetworkPacketSummary$PacketCountAndSize/ (JJ)V +MD: net/minecraft/util/profiling/jfr/stats/NetworkPacketSummary$PacketCountAndSize/equals (Ljava/lang/Object;)Z net/minecraft/util/profiling/jfr/stats/NetworkPacketSummary$PacketCountAndSize/equals (Ljava/lang/Object;)Z +MD: net/minecraft/util/profiling/jfr/stats/NetworkPacketSummary$PacketCountAndSize/f_185746_ ()J net/minecraft/util/profiling/jfr/stats/NetworkPacketSummary$PacketCountAndSize/totalCount ()J +MD: net/minecraft/util/profiling/jfr/stats/NetworkPacketSummary$PacketCountAndSize/f_185747_ ()J net/minecraft/util/profiling/jfr/stats/NetworkPacketSummary$PacketCountAndSize/totalSize ()J +MD: net/minecraft/util/profiling/jfr/stats/NetworkPacketSummary$PacketCountAndSize/hashCode ()I net/minecraft/util/profiling/jfr/stats/NetworkPacketSummary$PacketCountAndSize/hashCode ()I +MD: net/minecraft/util/profiling/jfr/stats/NetworkPacketSummary$PacketCountAndSize/m_185754_ (Lnet/minecraft/util/profiling/jfr/stats/NetworkPacketSummary$PacketCountAndSize;)Lnet/minecraft/util/profiling/jfr/stats/NetworkPacketSummary$PacketCountAndSize; net/minecraft/util/profiling/jfr/stats/NetworkPacketSummary$PacketCountAndSize/add (Lnet/minecraft/util/profiling/jfr/stats/NetworkPacketSummary$PacketCountAndSize;)Lnet/minecraft/util/profiling/jfr/stats/NetworkPacketSummary$PacketCountAndSize; +MD: net/minecraft/util/profiling/jfr/stats/NetworkPacketSummary$PacketCountAndSize/toString ()Ljava/lang/String; net/minecraft/util/profiling/jfr/stats/NetworkPacketSummary$PacketCountAndSize/toString ()Ljava/lang/String; +MD: net/minecraft/util/profiling/jfr/stats/NetworkPacketSummary$PacketIdentification/ ()V net/minecraft/util/profiling/jfr/stats/NetworkPacketSummary$PacketIdentification/ ()V +MD: net/minecraft/util/profiling/jfr/stats/NetworkPacketSummary$PacketIdentification/ (Lnet/minecraft/network/protocol/PacketFlow;II)V net/minecraft/util/profiling/jfr/stats/NetworkPacketSummary$PacketIdentification/ (Lnet/minecraft/network/protocol/PacketFlow;II)V +MD: net/minecraft/util/profiling/jfr/stats/NetworkPacketSummary$PacketIdentification/equals (Ljava/lang/Object;)Z net/minecraft/util/profiling/jfr/stats/NetworkPacketSummary$PacketIdentification/equals (Ljava/lang/Object;)Z +MD: net/minecraft/util/profiling/jfr/stats/NetworkPacketSummary$PacketIdentification/f_185761_ ()Lnet/minecraft/network/protocol/PacketFlow; net/minecraft/util/profiling/jfr/stats/NetworkPacketSummary$PacketIdentification/direction ()Lnet/minecraft/network/protocol/PacketFlow; +MD: net/minecraft/util/profiling/jfr/stats/NetworkPacketSummary$PacketIdentification/f_185762_ ()I net/minecraft/util/profiling/jfr/stats/NetworkPacketSummary$PacketIdentification/protocolId ()I +MD: net/minecraft/util/profiling/jfr/stats/NetworkPacketSummary$PacketIdentification/f_185763_ ()I net/minecraft/util/profiling/jfr/stats/NetworkPacketSummary$PacketIdentification/packetId ()I +MD: net/minecraft/util/profiling/jfr/stats/NetworkPacketSummary$PacketIdentification/hashCode ()I net/minecraft/util/profiling/jfr/stats/NetworkPacketSummary$PacketIdentification/hashCode ()I +MD: net/minecraft/util/profiling/jfr/stats/NetworkPacketSummary$PacketIdentification/m_185770_ ()Ljava/lang/String; net/minecraft/util/profiling/jfr/stats/NetworkPacketSummary$PacketIdentification/packetName ()Ljava/lang/String; +MD: net/minecraft/util/profiling/jfr/stats/NetworkPacketSummary$PacketIdentification/m_185771_ (Lcom/google/common/collect/ImmutableMap$Builder;Lnet/minecraft/network/protocol/PacketFlow;Lnet/minecraft/network/ConnectionProtocol;Ljava/lang/Integer;Ljava/lang/Class;)V net/minecraft/util/profiling/jfr/stats/NetworkPacketSummary$PacketIdentification/lambda$static$0 (Lcom/google/common/collect/ImmutableMap$Builder;Lnet/minecraft/network/protocol/PacketFlow;Lnet/minecraft/network/ConnectionProtocol;Ljava/lang/Integer;Ljava/lang/Class;)V +MD: net/minecraft/util/profiling/jfr/stats/NetworkPacketSummary$PacketIdentification/m_185777_ (Ljdk/jfr/consumer/RecordedEvent;)Lnet/minecraft/util/profiling/jfr/stats/NetworkPacketSummary$PacketIdentification; net/minecraft/util/profiling/jfr/stats/NetworkPacketSummary$PacketIdentification/from (Ljdk/jfr/consumer/RecordedEvent;)Lnet/minecraft/util/profiling/jfr/stats/NetworkPacketSummary$PacketIdentification; +MD: net/minecraft/util/profiling/jfr/stats/NetworkPacketSummary$PacketIdentification/toString ()Ljava/lang/String; net/minecraft/util/profiling/jfr/stats/NetworkPacketSummary$PacketIdentification/toString ()Ljava/lang/String; +MD: net/minecraft/util/profiling/jfr/stats/ThreadAllocationStat/ (Ljava/time/Instant;Ljava/lang/String;J)V net/minecraft/util/profiling/jfr/stats/ThreadAllocationStat/ (Ljava/time/Instant;Ljava/lang/String;J)V +MD: net/minecraft/util/profiling/jfr/stats/ThreadAllocationStat/equals (Ljava/lang/Object;)Z net/minecraft/util/profiling/jfr/stats/ThreadAllocationStat/equals (Ljava/lang/Object;)Z +MD: net/minecraft/util/profiling/jfr/stats/ThreadAllocationStat/f_185786_ ()Ljava/time/Instant; net/minecraft/util/profiling/jfr/stats/ThreadAllocationStat/timestamp ()Ljava/time/Instant; +MD: net/minecraft/util/profiling/jfr/stats/ThreadAllocationStat/f_185787_ ()Ljava/lang/String; net/minecraft/util/profiling/jfr/stats/ThreadAllocationStat/threadName ()Ljava/lang/String; +MD: net/minecraft/util/profiling/jfr/stats/ThreadAllocationStat/f_185788_ ()J net/minecraft/util/profiling/jfr/stats/ThreadAllocationStat/totalBytes ()J +MD: net/minecraft/util/profiling/jfr/stats/ThreadAllocationStat/hashCode ()I net/minecraft/util/profiling/jfr/stats/ThreadAllocationStat/hashCode ()I +MD: net/minecraft/util/profiling/jfr/stats/ThreadAllocationStat/m_185795_ (Lnet/minecraft/util/profiling/jfr/stats/ThreadAllocationStat;)Ljava/lang/String; net/minecraft/util/profiling/jfr/stats/ThreadAllocationStat/lambda$summary$0 (Lnet/minecraft/util/profiling/jfr/stats/ThreadAllocationStat;)Ljava/lang/String; +MD: net/minecraft/util/profiling/jfr/stats/ThreadAllocationStat/m_185797_ (Ljava/util/List;)Lnet/minecraft/util/profiling/jfr/stats/ThreadAllocationStat$Summary; net/minecraft/util/profiling/jfr/stats/ThreadAllocationStat/summary (Ljava/util/List;)Lnet/minecraft/util/profiling/jfr/stats/ThreadAllocationStat$Summary; +MD: net/minecraft/util/profiling/jfr/stats/ThreadAllocationStat/m_185799_ (Ljava/util/Map;Ljava/lang/String;Ljava/util/List;)V net/minecraft/util/profiling/jfr/stats/ThreadAllocationStat/lambda$summary$1 (Ljava/util/Map;Ljava/lang/String;Ljava/util/List;)V +MD: net/minecraft/util/profiling/jfr/stats/ThreadAllocationStat/m_185803_ (Ljdk/jfr/consumer/RecordedEvent;)Lnet/minecraft/util/profiling/jfr/stats/ThreadAllocationStat; net/minecraft/util/profiling/jfr/stats/ThreadAllocationStat/from (Ljdk/jfr/consumer/RecordedEvent;)Lnet/minecraft/util/profiling/jfr/stats/ThreadAllocationStat; +MD: net/minecraft/util/profiling/jfr/stats/ThreadAllocationStat/toString ()Ljava/lang/String; net/minecraft/util/profiling/jfr/stats/ThreadAllocationStat/toString ()Ljava/lang/String; +MD: net/minecraft/util/profiling/jfr/stats/ThreadAllocationStat$Summary/ (Ljava/util/Map;)V net/minecraft/util/profiling/jfr/stats/ThreadAllocationStat$Summary/ (Ljava/util/Map;)V +MD: net/minecraft/util/profiling/jfr/stats/ThreadAllocationStat$Summary/equals (Ljava/lang/Object;)Z net/minecraft/util/profiling/jfr/stats/ThreadAllocationStat$Summary/equals (Ljava/lang/Object;)Z +MD: net/minecraft/util/profiling/jfr/stats/ThreadAllocationStat$Summary/f_185811_ ()Ljava/util/Map; net/minecraft/util/profiling/jfr/stats/ThreadAllocationStat$Summary/allocationsPerSecondByThread ()Ljava/util/Map; +MD: net/minecraft/util/profiling/jfr/stats/ThreadAllocationStat$Summary/hashCode ()I net/minecraft/util/profiling/jfr/stats/ThreadAllocationStat$Summary/hashCode ()I +MD: net/minecraft/util/profiling/jfr/stats/ThreadAllocationStat$Summary/toString ()Ljava/lang/String; net/minecraft/util/profiling/jfr/stats/ThreadAllocationStat$Summary/toString ()Ljava/lang/String; +MD: net/minecraft/util/profiling/jfr/stats/TickTimeStat/ (Ljava/time/Instant;Ljava/time/Duration;)V net/minecraft/util/profiling/jfr/stats/TickTimeStat/ (Ljava/time/Instant;Ljava/time/Duration;)V +MD: net/minecraft/util/profiling/jfr/stats/TickTimeStat/equals (Ljava/lang/Object;)Z net/minecraft/util/profiling/jfr/stats/TickTimeStat/equals (Ljava/lang/Object;)Z +MD: net/minecraft/util/profiling/jfr/stats/TickTimeStat/f_185819_ ()Ljava/time/Instant; net/minecraft/util/profiling/jfr/stats/TickTimeStat/timestamp ()Ljava/time/Instant; +MD: net/minecraft/util/profiling/jfr/stats/TickTimeStat/f_185820_ ()Ljava/time/Duration; net/minecraft/util/profiling/jfr/stats/TickTimeStat/currentAverage ()Ljava/time/Duration; +MD: net/minecraft/util/profiling/jfr/stats/TickTimeStat/hashCode ()I net/minecraft/util/profiling/jfr/stats/TickTimeStat/hashCode ()I +MD: net/minecraft/util/profiling/jfr/stats/TickTimeStat/m_185825_ (Ljdk/jfr/consumer/RecordedEvent;)Lnet/minecraft/util/profiling/jfr/stats/TickTimeStat; net/minecraft/util/profiling/jfr/stats/TickTimeStat/from (Ljdk/jfr/consumer/RecordedEvent;)Lnet/minecraft/util/profiling/jfr/stats/TickTimeStat; +MD: net/minecraft/util/profiling/jfr/stats/TickTimeStat/toString ()Ljava/lang/String; net/minecraft/util/profiling/jfr/stats/TickTimeStat/toString ()Ljava/lang/String; +MD: net/minecraft/util/profiling/jfr/stats/TimeStamped/m_185832_ ()Ljava/time/Instant; net/minecraft/util/profiling/jfr/stats/TimeStamped/getTimestamp ()Ljava/time/Instant; +MD: net/minecraft/util/profiling/jfr/stats/TimedStat/m_183571_ ()Ljava/time/Duration; net/minecraft/util/profiling/jfr/stats/TimedStat/duration ()Ljava/time/Duration; +MD: net/minecraft/util/profiling/jfr/stats/TimedStatSummary/ (Lnet/minecraft/util/profiling/jfr/stats/TimedStat;Lnet/minecraft/util/profiling/jfr/stats/TimedStat;Lnet/minecraft/util/profiling/jfr/stats/TimedStat;ILjava/util/Map;Ljava/time/Duration;)V net/minecraft/util/profiling/jfr/stats/TimedStatSummary/ (Lnet/minecraft/util/profiling/jfr/stats/TimedStat;Lnet/minecraft/util/profiling/jfr/stats/TimedStat;Lnet/minecraft/util/profiling/jfr/stats/TimedStat;ILjava/util/Map;Ljava/time/Duration;)V +MD: net/minecraft/util/profiling/jfr/stats/TimedStatSummary/equals (Ljava/lang/Object;)Z net/minecraft/util/profiling/jfr/stats/TimedStatSummary/equals (Ljava/lang/Object;)Z +MD: net/minecraft/util/profiling/jfr/stats/TimedStatSummary/f_185833_ ()Lnet/minecraft/util/profiling/jfr/stats/TimedStat; net/minecraft/util/profiling/jfr/stats/TimedStatSummary/fastest ()Lnet/minecraft/util/profiling/jfr/stats/TimedStat; +MD: net/minecraft/util/profiling/jfr/stats/TimedStatSummary/f_185834_ ()Lnet/minecraft/util/profiling/jfr/stats/TimedStat; net/minecraft/util/profiling/jfr/stats/TimedStatSummary/slowest ()Lnet/minecraft/util/profiling/jfr/stats/TimedStat; +MD: net/minecraft/util/profiling/jfr/stats/TimedStatSummary/f_185835_ ()Lnet/minecraft/util/profiling/jfr/stats/TimedStat; net/minecraft/util/profiling/jfr/stats/TimedStatSummary/secondSlowest ()Lnet/minecraft/util/profiling/jfr/stats/TimedStat; +MD: net/minecraft/util/profiling/jfr/stats/TimedStatSummary/f_185836_ ()I net/minecraft/util/profiling/jfr/stats/TimedStatSummary/count ()I +MD: net/minecraft/util/profiling/jfr/stats/TimedStatSummary/f_185837_ ()Ljava/util/Map; net/minecraft/util/profiling/jfr/stats/TimedStatSummary/percentilesNanos ()Ljava/util/Map; +MD: net/minecraft/util/profiling/jfr/stats/TimedStatSummary/f_185838_ ()Ljava/time/Duration; net/minecraft/util/profiling/jfr/stats/TimedStatSummary/totalDuration ()Ljava/time/Duration; +MD: net/minecraft/util/profiling/jfr/stats/TimedStatSummary/hashCode ()I net/minecraft/util/profiling/jfr/stats/TimedStatSummary/hashCode ()I +MD: net/minecraft/util/profiling/jfr/stats/TimedStatSummary/m_185847_ (Lnet/minecraft/util/profiling/jfr/stats/TimedStat;)J net/minecraft/util/profiling/jfr/stats/TimedStatSummary/lambda$summary$0 (Lnet/minecraft/util/profiling/jfr/stats/TimedStat;)J +MD: net/minecraft/util/profiling/jfr/stats/TimedStatSummary/m_185849_ (Ljava/util/List;)Lnet/minecraft/util/profiling/jfr/stats/TimedStatSummary; net/minecraft/util/profiling/jfr/stats/TimedStatSummary/summary (Ljava/util/List;)Lnet/minecraft/util/profiling/jfr/stats/TimedStatSummary; +MD: net/minecraft/util/profiling/jfr/stats/TimedStatSummary/toString ()Ljava/lang/String; net/minecraft/util/profiling/jfr/stats/TimedStatSummary/toString ()Ljava/lang/String; +MD: net/minecraft/util/profiling/metrics/MetricCategory/ ()V net/minecraft/util/profiling/metrics/MetricCategory/ ()V +MD: net/minecraft/util/profiling/metrics/MetricCategory/ (Ljava/lang/String;ILjava/lang/String;)V net/minecraft/util/profiling/metrics/MetricCategory/ (Ljava/lang/String;ILjava/lang/String;)V +MD: net/minecraft/util/profiling/metrics/MetricCategory/m_145981_ ()Ljava/lang/String; net/minecraft/util/profiling/metrics/MetricCategory/getDescription ()Ljava/lang/String; +MD: net/minecraft/util/profiling/metrics/MetricCategory/m_145982_ ()[Lnet/minecraft/util/profiling/metrics/MetricCategory; net/minecraft/util/profiling/metrics/MetricCategory/$values ()[Lnet/minecraft/util/profiling/metrics/MetricCategory; +MD: net/minecraft/util/profiling/metrics/MetricCategory/valueOf (Ljava/lang/String;)Lnet/minecraft/util/profiling/metrics/MetricCategory; net/minecraft/util/profiling/metrics/MetricCategory/valueOf (Ljava/lang/String;)Lnet/minecraft/util/profiling/metrics/MetricCategory; +MD: net/minecraft/util/profiling/metrics/MetricCategory/values ()[Lnet/minecraft/util/profiling/metrics/MetricCategory; net/minecraft/util/profiling/metrics/MetricCategory/values ()[Lnet/minecraft/util/profiling/metrics/MetricCategory; +MD: net/minecraft/util/profiling/metrics/MetricSampler/ (Ljava/lang/String;Lnet/minecraft/util/profiling/metrics/MetricCategory;Ljava/util/function/DoubleSupplier;Ljava/lang/Runnable;Lnet/minecraft/util/profiling/metrics/MetricSampler$ThresholdTest;)V net/minecraft/util/profiling/metrics/MetricSampler/ (Ljava/lang/String;Lnet/minecraft/util/profiling/metrics/MetricCategory;Ljava/util/function/DoubleSupplier;Ljava/lang/Runnable;Lnet/minecraft/util/profiling/metrics/MetricSampler$ThresholdTest;)V +MD: net/minecraft/util/profiling/metrics/MetricSampler/equals (Ljava/lang/Object;)Z net/minecraft/util/profiling/metrics/MetricSampler/equals (Ljava/lang/Object;)Z +MD: net/minecraft/util/profiling/metrics/MetricSampler/hashCode ()I net/minecraft/util/profiling/metrics/MetricSampler/hashCode ()I +MD: net/minecraft/util/profiling/metrics/MetricSampler/m_146001_ ()V net/minecraft/util/profiling/metrics/MetricSampler/onStartTick ()V +MD: net/minecraft/util/profiling/metrics/MetricSampler/m_146002_ (I)V net/minecraft/util/profiling/metrics/MetricSampler/onEndTick (I)V +MD: net/minecraft/util/profiling/metrics/MetricSampler/m_146004_ (Ljava/lang/String;Lnet/minecraft/util/profiling/metrics/MetricCategory;Ljava/lang/Object;Ljava/util/function/ToDoubleFunction;)Lnet/minecraft/util/profiling/metrics/MetricSampler; net/minecraft/util/profiling/metrics/MetricSampler/create (Ljava/lang/String;Lnet/minecraft/util/profiling/metrics/MetricCategory;Ljava/lang/Object;Ljava/util/function/ToDoubleFunction;)Lnet/minecraft/util/profiling/metrics/MetricSampler; +MD: net/minecraft/util/profiling/metrics/MetricSampler/m_146009_ (Ljava/lang/String;Lnet/minecraft/util/profiling/metrics/MetricCategory;Ljava/util/function/DoubleSupplier;)Lnet/minecraft/util/profiling/metrics/MetricSampler; net/minecraft/util/profiling/metrics/MetricSampler/create (Ljava/lang/String;Lnet/minecraft/util/profiling/metrics/MetricCategory;Ljava/util/function/DoubleSupplier;)Lnet/minecraft/util/profiling/metrics/MetricSampler; +MD: net/minecraft/util/profiling/metrics/MetricSampler/m_146013_ (Ljava/lang/String;Lnet/minecraft/util/profiling/metrics/MetricCategory;Ljava/util/function/ToDoubleFunction;Ljava/lang/Object;)Lnet/minecraft/util/profiling/metrics/MetricSampler$MetricSamplerBuilder; net/minecraft/util/profiling/metrics/MetricSampler/builder (Ljava/lang/String;Lnet/minecraft/util/profiling/metrics/MetricCategory;Ljava/util/function/ToDoubleFunction;Ljava/lang/Object;)Lnet/minecraft/util/profiling/metrics/MetricSampler$MetricSamplerBuilder; +MD: net/minecraft/util/profiling/metrics/MetricSampler/m_146018_ ()V net/minecraft/util/profiling/metrics/MetricSampler/onFinished ()V +MD: net/minecraft/util/profiling/metrics/MetricSampler/m_146019_ ()Ljava/util/function/DoubleSupplier; net/minecraft/util/profiling/metrics/MetricSampler/getSampler ()Ljava/util/function/DoubleSupplier; +MD: net/minecraft/util/profiling/metrics/MetricSampler/m_146020_ ()Ljava/lang/String; net/minecraft/util/profiling/metrics/MetricSampler/getName ()Ljava/lang/String; +MD: net/minecraft/util/profiling/metrics/MetricSampler/m_146021_ ()Lnet/minecraft/util/profiling/metrics/MetricCategory; net/minecraft/util/profiling/metrics/MetricSampler/getCategory ()Lnet/minecraft/util/profiling/metrics/MetricCategory; +MD: net/minecraft/util/profiling/metrics/MetricSampler/m_146024_ ()Lnet/minecraft/util/profiling/metrics/MetricSampler$SamplerResult; net/minecraft/util/profiling/metrics/MetricSampler/result ()Lnet/minecraft/util/profiling/metrics/MetricSampler$SamplerResult; +MD: net/minecraft/util/profiling/metrics/MetricSampler/m_146025_ ()Z net/minecraft/util/profiling/metrics/MetricSampler/triggersThreshold ()Z +MD: net/minecraft/util/profiling/metrics/MetricSampler/m_146026_ ()V net/minecraft/util/profiling/metrics/MetricSampler/verifyRunning ()V +MD: net/minecraft/util/profiling/metrics/MetricSampler$MetricSamplerBuilder/ (Ljava/lang/String;Lnet/minecraft/util/profiling/metrics/MetricCategory;Ljava/util/function/ToDoubleFunction;Ljava/lang/Object;)V net/minecraft/util/profiling/metrics/MetricSampler$MetricSamplerBuilder/ (Ljava/lang/String;Lnet/minecraft/util/profiling/metrics/MetricCategory;Ljava/util/function/ToDoubleFunction;Ljava/lang/Object;)V +MD: net/minecraft/util/profiling/metrics/MetricSampler$MetricSamplerBuilder/m_146039_ ()Lnet/minecraft/util/profiling/metrics/MetricSampler; net/minecraft/util/profiling/metrics/MetricSampler$MetricSamplerBuilder/build ()Lnet/minecraft/util/profiling/metrics/MetricSampler; +MD: net/minecraft/util/profiling/metrics/MetricSampler$MetricSamplerBuilder/m_146040_ (Lnet/minecraft/util/profiling/metrics/MetricSampler$ThresholdTest;)Lnet/minecraft/util/profiling/metrics/MetricSampler$MetricSamplerBuilder; net/minecraft/util/profiling/metrics/MetricSampler$MetricSamplerBuilder/withThresholdAlert (Lnet/minecraft/util/profiling/metrics/MetricSampler$ThresholdTest;)Lnet/minecraft/util/profiling/metrics/MetricSampler$MetricSamplerBuilder; +MD: net/minecraft/util/profiling/metrics/MetricSampler$MetricSamplerBuilder/m_146042_ (Ljava/util/function/Consumer;)Lnet/minecraft/util/profiling/metrics/MetricSampler$MetricSamplerBuilder; net/minecraft/util/profiling/metrics/MetricSampler$MetricSamplerBuilder/withBeforeTick (Ljava/util/function/Consumer;)Lnet/minecraft/util/profiling/metrics/MetricSampler$MetricSamplerBuilder; +MD: net/minecraft/util/profiling/metrics/MetricSampler$MetricSamplerBuilder/m_146044_ (Ljava/util/function/ToDoubleFunction;Ljava/lang/Object;)D net/minecraft/util/profiling/metrics/MetricSampler$MetricSamplerBuilder/lambda$new$0 (Ljava/util/function/ToDoubleFunction;Ljava/lang/Object;)D +MD: net/minecraft/util/profiling/metrics/MetricSampler$MetricSamplerBuilder/m_146047_ (Ljava/util/function/Consumer;)V net/minecraft/util/profiling/metrics/MetricSampler$MetricSamplerBuilder/lambda$withBeforeTick$1 (Ljava/util/function/Consumer;)V +MD: net/minecraft/util/profiling/metrics/MetricSampler$SamplerResult/ (IILit/unimi/dsi/fastutil/ints/Int2DoubleMap;)V net/minecraft/util/profiling/metrics/MetricSampler$SamplerResult/ (IILit/unimi/dsi/fastutil/ints/Int2DoubleMap;)V +MD: net/minecraft/util/profiling/metrics/MetricSampler$SamplerResult/m_146056_ ()I net/minecraft/util/profiling/metrics/MetricSampler$SamplerResult/getFirstTick ()I +MD: net/minecraft/util/profiling/metrics/MetricSampler$SamplerResult/m_146057_ (I)D net/minecraft/util/profiling/metrics/MetricSampler$SamplerResult/valueAtTick (I)D +MD: net/minecraft/util/profiling/metrics/MetricSampler$SamplerResult/m_146059_ ()I net/minecraft/util/profiling/metrics/MetricSampler$SamplerResult/getLastTick ()I +MD: net/minecraft/util/profiling/metrics/MetricSampler$ThresholdTest/m_142488_ (D)Z net/minecraft/util/profiling/metrics/MetricSampler$ThresholdTest/test (D)Z +MD: net/minecraft/util/profiling/metrics/MetricSampler$ValueIncreasedByPercentage/ (F)V net/minecraft/util/profiling/metrics/MetricSampler$ValueIncreasedByPercentage/ (F)V +MD: net/minecraft/util/profiling/metrics/MetricSampler$ValueIncreasedByPercentage/m_142488_ (D)Z net/minecraft/util/profiling/metrics/MetricSampler$ValueIncreasedByPercentage/test (D)Z +MD: net/minecraft/util/profiling/metrics/MetricsRegistry/ ()V net/minecraft/util/profiling/metrics/MetricsRegistry/ ()V +MD: net/minecraft/util/profiling/metrics/MetricsRegistry/ ()V net/minecraft/util/profiling/metrics/MetricsRegistry/ ()V +MD: net/minecraft/util/profiling/metrics/MetricsRegistry/m_146071_ ()Ljava/util/List; net/minecraft/util/profiling/metrics/MetricsRegistry/getRegisteredSamplers ()Ljava/util/List; +MD: net/minecraft/util/profiling/metrics/MetricsRegistry/m_146072_ (Lnet/minecraft/util/profiling/metrics/ProfilerMeasured;)V net/minecraft/util/profiling/metrics/MetricsRegistry/add (Lnet/minecraft/util/profiling/metrics/ProfilerMeasured;)V +MD: net/minecraft/util/profiling/metrics/MetricsRegistry/m_146074_ (Ljava/util/Map$Entry;)Lnet/minecraft/util/profiling/metrics/MetricSampler; net/minecraft/util/profiling/metrics/MetricsRegistry/lambda$aggregateDuplicates$1 (Ljava/util/Map$Entry;)Lnet/minecraft/util/profiling/metrics/MetricSampler; +MD: net/minecraft/util/profiling/metrics/MetricsRegistry/m_146076_ (Ljava/util/Map;)Ljava/util/List; net/minecraft/util/profiling/metrics/MetricsRegistry/aggregateDuplicates (Ljava/util/Map;)Ljava/util/List; +MD: net/minecraft/util/profiling/metrics/MetricsRegistry/m_146078_ (Lnet/minecraft/util/profiling/metrics/ProfilerMeasured;)Ljava/util/stream/Stream; net/minecraft/util/profiling/metrics/MetricsRegistry/lambda$getRegisteredSamplers$0 (Lnet/minecraft/util/profiling/metrics/ProfilerMeasured;)Ljava/util/stream/Stream; +MD: net/minecraft/util/profiling/metrics/MetricsRegistry$AggregatedMetricSampler/ (Ljava/lang/String;Ljava/util/List;)V net/minecraft/util/profiling/metrics/MetricsRegistry$AggregatedMetricSampler/ (Ljava/lang/String;Ljava/util/List;)V +MD: net/minecraft/util/profiling/metrics/MetricsRegistry$AggregatedMetricSampler/equals (Ljava/lang/Object;)Z net/minecraft/util/profiling/metrics/MetricsRegistry$AggregatedMetricSampler/equals (Ljava/lang/Object;)Z +MD: net/minecraft/util/profiling/metrics/MetricsRegistry$AggregatedMetricSampler/hashCode ()I net/minecraft/util/profiling/metrics/MetricsRegistry$AggregatedMetricSampler/hashCode ()I +MD: net/minecraft/util/profiling/metrics/MetricsRegistry$AggregatedMetricSampler/m_146084_ (DLnet/minecraft/util/profiling/metrics/MetricSampler;)Z net/minecraft/util/profiling/metrics/MetricsRegistry$AggregatedMetricSampler/lambda$thresholdTest$2 (DLnet/minecraft/util/profiling/metrics/MetricSampler;)Z +MD: net/minecraft/util/profiling/metrics/MetricsRegistry$AggregatedMetricSampler/m_146087_ (Ljava/util/List;)Lnet/minecraft/util/profiling/metrics/MetricSampler$ThresholdTest; net/minecraft/util/profiling/metrics/MetricsRegistry$AggregatedMetricSampler/thresholdTest (Ljava/util/List;)Lnet/minecraft/util/profiling/metrics/MetricSampler$ThresholdTest; +MD: net/minecraft/util/profiling/metrics/MetricsRegistry$AggregatedMetricSampler/m_146089_ (Ljava/util/List;D)Z net/minecraft/util/profiling/metrics/MetricsRegistry$AggregatedMetricSampler/lambda$thresholdTest$3 (Ljava/util/List;D)Z +MD: net/minecraft/util/profiling/metrics/MetricsRegistry$AggregatedMetricSampler/m_146092_ (Ljava/util/List;)V net/minecraft/util/profiling/metrics/MetricsRegistry$AggregatedMetricSampler/beforeTick (Ljava/util/List;)V +MD: net/minecraft/util/profiling/metrics/MetricsRegistry$AggregatedMetricSampler/m_146094_ (Ljava/util/List;)D net/minecraft/util/profiling/metrics/MetricsRegistry$AggregatedMetricSampler/averageValueFromDelegates (Ljava/util/List;)D +MD: net/minecraft/util/profiling/metrics/MetricsRegistry$AggregatedMetricSampler/m_146096_ (Ljava/util/List;)V net/minecraft/util/profiling/metrics/MetricsRegistry$AggregatedMetricSampler/lambda$new$1 (Ljava/util/List;)V +MD: net/minecraft/util/profiling/metrics/MetricsRegistry$AggregatedMetricSampler/m_146098_ (Ljava/util/List;)D net/minecraft/util/profiling/metrics/MetricsRegistry$AggregatedMetricSampler/lambda$new$0 (Ljava/util/List;)D +MD: net/minecraft/util/profiling/metrics/MetricsSamplerProvider/m_142531_ (Ljava/util/function/Supplier;)Ljava/util/Set; net/minecraft/util/profiling/metrics/MetricsSamplerProvider/samplers (Ljava/util/function/Supplier;)Ljava/util/Set; +MD: net/minecraft/util/profiling/metrics/ProfilerMeasured/m_142754_ ()Ljava/util/List; net/minecraft/util/profiling/metrics/ProfilerMeasured/profiledMetrics ()Ljava/util/List; +MD: net/minecraft/util/profiling/metrics/profiling/ActiveMetricsRecorder/ ()V net/minecraft/util/profiling/metrics/profiling/ActiveMetricsRecorder/ ()V +MD: net/minecraft/util/profiling/metrics/profiling/ActiveMetricsRecorder/ (Lnet/minecraft/util/profiling/metrics/MetricsSamplerProvider;Ljava/util/function/LongSupplier;Ljava/util/concurrent/Executor;Lnet/minecraft/util/profiling/metrics/storage/MetricsPersister;Ljava/util/function/Consumer;Ljava/util/function/Consumer;)V net/minecraft/util/profiling/metrics/profiling/ActiveMetricsRecorder/ (Lnet/minecraft/util/profiling/metrics/MetricsSamplerProvider;Ljava/util/function/LongSupplier;Ljava/util/concurrent/Executor;Lnet/minecraft/util/profiling/metrics/storage/MetricsPersister;Ljava/util/function/Consumer;Ljava/util/function/Consumer;)V +MD: net/minecraft/util/profiling/metrics/profiling/ActiveMetricsRecorder/m_142610_ ()Lnet/minecraft/util/profiling/ProfilerFiller; net/minecraft/util/profiling/metrics/profiling/ActiveMetricsRecorder/getProfiler ()Lnet/minecraft/util/profiling/ProfilerFiller; +MD: net/minecraft/util/profiling/metrics/profiling/ActiveMetricsRecorder/m_142758_ ()V net/minecraft/util/profiling/metrics/profiling/ActiveMetricsRecorder/endTick ()V +MD: net/minecraft/util/profiling/metrics/profiling/ActiveMetricsRecorder/m_142759_ ()V net/minecraft/util/profiling/metrics/profiling/ActiveMetricsRecorder/startTick ()V +MD: net/minecraft/util/profiling/metrics/profiling/ActiveMetricsRecorder/m_142760_ ()V net/minecraft/util/profiling/metrics/profiling/ActiveMetricsRecorder/end ()V +MD: net/minecraft/util/profiling/metrics/profiling/ActiveMetricsRecorder/m_142763_ ()Z net/minecraft/util/profiling/metrics/profiling/ActiveMetricsRecorder/isRecording ()Z +MD: net/minecraft/util/profiling/metrics/profiling/ActiveMetricsRecorder/m_146128_ (Lnet/minecraft/util/profiling/ProfileResults;)V net/minecraft/util/profiling/metrics/profiling/ActiveMetricsRecorder/scheduleSaveResults (Lnet/minecraft/util/profiling/ProfileResults;)V +MD: net/minecraft/util/profiling/metrics/profiling/ActiveMetricsRecorder/m_146130_ (Lnet/minecraft/util/profiling/metrics/MetricSampler;)Ljava/util/List; net/minecraft/util/profiling/metrics/profiling/ActiveMetricsRecorder/lambda$endTick$3 (Lnet/minecraft/util/profiling/metrics/MetricSampler;)Ljava/util/List; +MD: net/minecraft/util/profiling/metrics/profiling/ActiveMetricsRecorder/m_146132_ (Lnet/minecraft/util/profiling/metrics/MetricsSamplerProvider;Ljava/util/function/LongSupplier;Ljava/util/concurrent/Executor;Lnet/minecraft/util/profiling/metrics/storage/MetricsPersister;Ljava/util/function/Consumer;Ljava/util/function/Consumer;)Lnet/minecraft/util/profiling/metrics/profiling/ActiveMetricsRecorder; net/minecraft/util/profiling/metrics/profiling/ActiveMetricsRecorder/createStarted (Lnet/minecraft/util/profiling/metrics/MetricsSamplerProvider;Ljava/util/function/LongSupplier;Ljava/util/concurrent/Executor;Lnet/minecraft/util/profiling/metrics/storage/MetricsPersister;Ljava/util/function/Consumer;Ljava/util/function/Consumer;)Lnet/minecraft/util/profiling/metrics/profiling/ActiveMetricsRecorder; +MD: net/minecraft/util/profiling/metrics/profiling/ActiveMetricsRecorder/m_146139_ (Ljava/util/HashSet;Lnet/minecraft/util/profiling/ProfileResults;)V net/minecraft/util/profiling/metrics/profiling/ActiveMetricsRecorder/lambda$scheduleSaveResults$5 (Ljava/util/HashSet;Lnet/minecraft/util/profiling/ProfileResults;)V +MD: net/minecraft/util/profiling/metrics/profiling/ActiveMetricsRecorder/m_146142_ (Ljava/util/function/Consumer;)V net/minecraft/util/profiling/metrics/profiling/ActiveMetricsRecorder/registerGlobalCompletionCallback (Ljava/util/function/Consumer;)V +MD: net/minecraft/util/profiling/metrics/profiling/ActiveMetricsRecorder/m_146148_ ()V net/minecraft/util/profiling/metrics/profiling/ActiveMetricsRecorder/verifyStarted ()V +MD: net/minecraft/util/profiling/metrics/profiling/ActiveMetricsRecorder/m_146149_ ()I net/minecraft/util/profiling/metrics/profiling/ActiveMetricsRecorder/lambda$endTick$4 ()I +MD: net/minecraft/util/profiling/metrics/profiling/ActiveMetricsRecorder/m_146150_ ()Lnet/minecraft/util/profiling/ProfileCollector; net/minecraft/util/profiling/metrics/profiling/ActiveMetricsRecorder/lambda$startTick$2 ()Lnet/minecraft/util/profiling/ProfileCollector; +MD: net/minecraft/util/profiling/metrics/profiling/ActiveMetricsRecorder/m_146151_ ()I net/minecraft/util/profiling/metrics/profiling/ActiveMetricsRecorder/lambda$new$1 ()I +MD: net/minecraft/util/profiling/metrics/profiling/ActiveMetricsRecorder/m_146152_ ()I net/minecraft/util/profiling/metrics/profiling/ActiveMetricsRecorder/lambda$new$0 ()I +MD: net/minecraft/util/profiling/metrics/profiling/ActiveMetricsRecorder/m_213832_ ()V net/minecraft/util/profiling/metrics/profiling/ActiveMetricsRecorder/cancel ()V +MD: net/minecraft/util/profiling/metrics/profiling/ActiveMetricsRecorder/m_216816_ (Ljava/util/Collection;)V net/minecraft/util/profiling/metrics/profiling/ActiveMetricsRecorder/cleanup (Ljava/util/Collection;)V +MD: net/minecraft/util/profiling/metrics/profiling/InactiveMetricsRecorder/ ()V net/minecraft/util/profiling/metrics/profiling/InactiveMetricsRecorder/ ()V +MD: net/minecraft/util/profiling/metrics/profiling/InactiveMetricsRecorder/ ()V net/minecraft/util/profiling/metrics/profiling/InactiveMetricsRecorder/ ()V +MD: net/minecraft/util/profiling/metrics/profiling/InactiveMetricsRecorder/m_142610_ ()Lnet/minecraft/util/profiling/ProfilerFiller; net/minecraft/util/profiling/metrics/profiling/InactiveMetricsRecorder/getProfiler ()Lnet/minecraft/util/profiling/ProfilerFiller; +MD: net/minecraft/util/profiling/metrics/profiling/InactiveMetricsRecorder/m_142758_ ()V net/minecraft/util/profiling/metrics/profiling/InactiveMetricsRecorder/endTick ()V +MD: net/minecraft/util/profiling/metrics/profiling/InactiveMetricsRecorder/m_142759_ ()V net/minecraft/util/profiling/metrics/profiling/InactiveMetricsRecorder/startTick ()V +MD: net/minecraft/util/profiling/metrics/profiling/InactiveMetricsRecorder/m_142760_ ()V net/minecraft/util/profiling/metrics/profiling/InactiveMetricsRecorder/end ()V +MD: net/minecraft/util/profiling/metrics/profiling/InactiveMetricsRecorder/m_142763_ ()Z net/minecraft/util/profiling/metrics/profiling/InactiveMetricsRecorder/isRecording ()Z +MD: net/minecraft/util/profiling/metrics/profiling/InactiveMetricsRecorder/m_213832_ ()V net/minecraft/util/profiling/metrics/profiling/InactiveMetricsRecorder/cancel ()V +MD: net/minecraft/util/profiling/metrics/profiling/MetricsRecorder/m_142610_ ()Lnet/minecraft/util/profiling/ProfilerFiller; net/minecraft/util/profiling/metrics/profiling/MetricsRecorder/getProfiler ()Lnet/minecraft/util/profiling/ProfilerFiller; +MD: net/minecraft/util/profiling/metrics/profiling/MetricsRecorder/m_142758_ ()V net/minecraft/util/profiling/metrics/profiling/MetricsRecorder/endTick ()V +MD: net/minecraft/util/profiling/metrics/profiling/MetricsRecorder/m_142759_ ()V net/minecraft/util/profiling/metrics/profiling/MetricsRecorder/startTick ()V +MD: net/minecraft/util/profiling/metrics/profiling/MetricsRecorder/m_142760_ ()V net/minecraft/util/profiling/metrics/profiling/MetricsRecorder/end ()V +MD: net/minecraft/util/profiling/metrics/profiling/MetricsRecorder/m_142763_ ()Z net/minecraft/util/profiling/metrics/profiling/MetricsRecorder/isRecording ()Z +MD: net/minecraft/util/profiling/metrics/profiling/MetricsRecorder/m_213832_ ()V net/minecraft/util/profiling/metrics/profiling/MetricsRecorder/cancel ()V +MD: net/minecraft/util/profiling/metrics/profiling/ProfilerSamplerAdapter/ ()V net/minecraft/util/profiling/metrics/profiling/ProfilerSamplerAdapter/ ()V +MD: net/minecraft/util/profiling/metrics/profiling/ProfilerSamplerAdapter/m_146163_ (Ljava/util/function/Supplier;)Ljava/util/Set; net/minecraft/util/profiling/metrics/profiling/ProfilerSamplerAdapter/newSamplersFoundInProfiler (Ljava/util/function/Supplier;)Ljava/util/Set; +MD: net/minecraft/util/profiling/metrics/profiling/ProfilerSamplerAdapter/m_146165_ (Ljava/util/function/Supplier;Ljava/lang/String;)D net/minecraft/util/profiling/metrics/profiling/ProfilerSamplerAdapter/lambda$samplerForProfilingPath$2 (Ljava/util/function/Supplier;Ljava/lang/String;)D +MD: net/minecraft/util/profiling/metrics/profiling/ProfilerSamplerAdapter/m_146168_ (Ljava/util/function/Supplier;Ljava/lang/String;Lnet/minecraft/util/profiling/metrics/MetricCategory;)Lnet/minecraft/util/profiling/metrics/MetricSampler; net/minecraft/util/profiling/metrics/profiling/ProfilerSamplerAdapter/samplerForProfilingPath (Ljava/util/function/Supplier;Ljava/lang/String;Lnet/minecraft/util/profiling/metrics/MetricCategory;)Lnet/minecraft/util/profiling/metrics/MetricSampler; +MD: net/minecraft/util/profiling/metrics/profiling/ProfilerSamplerAdapter/m_146172_ (Ljava/util/function/Supplier;Lorg/apache/commons/lang3/tuple/Pair;)Lnet/minecraft/util/profiling/metrics/MetricSampler; net/minecraft/util/profiling/metrics/profiling/ProfilerSamplerAdapter/lambda$newSamplersFoundInProfiler$1 (Ljava/util/function/Supplier;Lorg/apache/commons/lang3/tuple/Pair;)Lnet/minecraft/util/profiling/metrics/MetricSampler; +MD: net/minecraft/util/profiling/metrics/profiling/ProfilerSamplerAdapter/m_146175_ (Lorg/apache/commons/lang3/tuple/Pair;)Z net/minecraft/util/profiling/metrics/profiling/ProfilerSamplerAdapter/lambda$newSamplersFoundInProfiler$0 (Lorg/apache/commons/lang3/tuple/Pair;)Z +MD: net/minecraft/util/profiling/metrics/profiling/ServerMetricsSamplersProvider/ ()V net/minecraft/util/profiling/metrics/profiling/ServerMetricsSamplersProvider/ ()V +MD: net/minecraft/util/profiling/metrics/profiling/ServerMetricsSamplersProvider/ (Ljava/util/function/LongSupplier;Z)V net/minecraft/util/profiling/metrics/profiling/ServerMetricsSamplersProvider/ (Ljava/util/function/LongSupplier;Z)V +MD: net/minecraft/util/profiling/metrics/profiling/ServerMetricsSamplersProvider/m_142531_ (Ljava/util/function/Supplier;)Ljava/util/Set; net/minecraft/util/profiling/metrics/profiling/ServerMetricsSamplersProvider/samplers (Ljava/util/function/Supplier;)Ljava/util/Set; +MD: net/minecraft/util/profiling/metrics/profiling/ServerMetricsSamplersProvider/m_146182_ ()Ljava/util/Set; net/minecraft/util/profiling/metrics/profiling/ServerMetricsSamplersProvider/runtimeIndependentSamplers ()Ljava/util/Set; +MD: net/minecraft/util/profiling/metrics/profiling/ServerMetricsSamplersProvider/m_146183_ (Lnet/minecraft/util/profiling/metrics/profiling/ServerMetricsSamplersProvider$CpuStats;I)Lnet/minecraft/util/profiling/metrics/MetricSampler; net/minecraft/util/profiling/metrics/profiling/ServerMetricsSamplersProvider/lambda$runtimeIndependentSamplers$1 (Lnet/minecraft/util/profiling/metrics/profiling/ServerMetricsSamplersProvider$CpuStats;I)Lnet/minecraft/util/profiling/metrics/MetricSampler; +MD: net/minecraft/util/profiling/metrics/profiling/ServerMetricsSamplersProvider/m_146186_ (Lcom/google/common/base/Stopwatch;)D net/minecraft/util/profiling/metrics/profiling/ServerMetricsSamplersProvider/lambda$tickTimeSampler$3 (Lcom/google/common/base/Stopwatch;)D +MD: net/minecraft/util/profiling/metrics/profiling/ServerMetricsSamplersProvider/m_146188_ (Ljava/util/function/LongSupplier;)Lnet/minecraft/util/profiling/metrics/MetricSampler; net/minecraft/util/profiling/metrics/profiling/ServerMetricsSamplersProvider/tickTimeSampler (Ljava/util/function/LongSupplier;)Lnet/minecraft/util/profiling/metrics/MetricSampler; +MD: net/minecraft/util/profiling/metrics/profiling/ServerMetricsSamplersProvider/m_146192_ ()D net/minecraft/util/profiling/metrics/profiling/ServerMetricsSamplersProvider/lambda$runtimeIndependentSamplers$2 ()D +MD: net/minecraft/util/profiling/metrics/profiling/ServerMetricsSamplersProvider/m_146193_ (Lnet/minecraft/util/profiling/metrics/profiling/ServerMetricsSamplersProvider$CpuStats;I)D net/minecraft/util/profiling/metrics/profiling/ServerMetricsSamplersProvider/lambda$runtimeIndependentSamplers$0 (Lnet/minecraft/util/profiling/metrics/profiling/ServerMetricsSamplersProvider$CpuStats;I)D +MD: net/minecraft/util/profiling/metrics/profiling/ServerMetricsSamplersProvider$1/ (Ljava/util/function/LongSupplier;)V net/minecraft/util/profiling/metrics/profiling/ServerMetricsSamplersProvider$1/ (Ljava/util/function/LongSupplier;)V +MD: net/minecraft/util/profiling/metrics/profiling/ServerMetricsSamplersProvider$1/read ()J net/minecraft/util/profiling/metrics/profiling/ServerMetricsSamplersProvider$1/read ()J +MD: net/minecraft/util/profiling/metrics/profiling/ServerMetricsSamplersProvider$CpuStats/ ()V net/minecraft/util/profiling/metrics/profiling/ServerMetricsSamplersProvider$CpuStats/ ()V +MD: net/minecraft/util/profiling/metrics/profiling/ServerMetricsSamplersProvider$CpuStats/m_146207_ (I)D net/minecraft/util/profiling/metrics/profiling/ServerMetricsSamplersProvider$CpuStats/loadForCpu (I)D +MD: net/minecraft/util/profiling/metrics/storage/MetricsPersister/ ()V net/minecraft/util/profiling/metrics/storage/MetricsPersister/ ()V +MD: net/minecraft/util/profiling/metrics/storage/MetricsPersister/ (Ljava/lang/String;)V net/minecraft/util/profiling/metrics/storage/MetricsPersister/ (Ljava/lang/String;)V +MD: net/minecraft/util/profiling/metrics/storage/MetricsPersister/m_146218_ (I)[Ljava/lang/String; net/minecraft/util/profiling/metrics/storage/MetricsPersister/lambda$saveCategory$2 (I)[Ljava/lang/String; +MD: net/minecraft/util/profiling/metrics/storage/MetricsPersister/m_146220_ (ILnet/minecraft/util/profiling/metrics/MetricSampler$SamplerResult;)Ljava/lang/String; net/minecraft/util/profiling/metrics/storage/MetricsPersister/lambda$saveCategory$1 (ILnet/minecraft/util/profiling/metrics/MetricSampler$SamplerResult;)Ljava/lang/String; +MD: net/minecraft/util/profiling/metrics/storage/MetricsPersister/m_146223_ (Lnet/minecraft/util/profiling/ProfileResults;Ljava/nio/file/Path;)V net/minecraft/util/profiling/metrics/storage/MetricsPersister/saveProfilingTaskExecutionResult (Lnet/minecraft/util/profiling/ProfileResults;Ljava/nio/file/Path;)V +MD: net/minecraft/util/profiling/metrics/storage/MetricsPersister/m_146226_ (Lnet/minecraft/util/profiling/metrics/MetricCategory;Ljava/util/List;Ljava/nio/file/Path;)V net/minecraft/util/profiling/metrics/storage/MetricsPersister/saveCategory (Lnet/minecraft/util/profiling/metrics/MetricCategory;Ljava/util/List;Ljava/nio/file/Path;)V +MD: net/minecraft/util/profiling/metrics/storage/MetricsPersister/m_146230_ (Ljava/nio/file/Path;Lnet/minecraft/util/profiling/metrics/MetricCategory;Ljava/util/List;)V net/minecraft/util/profiling/metrics/storage/MetricsPersister/lambda$saveMetrics$0 (Ljava/nio/file/Path;Lnet/minecraft/util/profiling/metrics/MetricCategory;Ljava/util/List;)V +MD: net/minecraft/util/profiling/metrics/storage/MetricsPersister/m_146234_ (Ljava/time/format/DateTimeFormatter;Ljava/nio/file/Path;Lnet/minecraft/util/profiling/metrics/MetricSampler;Lnet/minecraft/util/profiling/metrics/storage/RecordedDeviation;)V net/minecraft/util/profiling/metrics/storage/MetricsPersister/lambda$saveDeviations$3 (Ljava/time/format/DateTimeFormatter;Ljava/nio/file/Path;Lnet/minecraft/util/profiling/metrics/MetricSampler;Lnet/minecraft/util/profiling/metrics/storage/RecordedDeviation;)V +MD: net/minecraft/util/profiling/metrics/storage/MetricsPersister/m_146239_ (Ljava/time/format/DateTimeFormatter;Ljava/nio/file/Path;Lnet/minecraft/util/profiling/metrics/MetricSampler;Ljava/util/List;)V net/minecraft/util/profiling/metrics/storage/MetricsPersister/lambda$saveDeviations$4 (Ljava/time/format/DateTimeFormatter;Ljava/nio/file/Path;Lnet/minecraft/util/profiling/metrics/MetricSampler;Ljava/util/List;)V +MD: net/minecraft/util/profiling/metrics/storage/MetricsPersister/m_146244_ (Ljava/util/Map;Ljava/nio/file/Path;)V net/minecraft/util/profiling/metrics/storage/MetricsPersister/saveDeviations (Ljava/util/Map;Ljava/nio/file/Path;)V +MD: net/minecraft/util/profiling/metrics/storage/MetricsPersister/m_146247_ (Ljava/util/Set;Ljava/nio/file/Path;)V net/minecraft/util/profiling/metrics/storage/MetricsPersister/saveMetrics (Ljava/util/Set;Ljava/nio/file/Path;)V +MD: net/minecraft/util/profiling/metrics/storage/MetricsPersister/m_146250_ (Ljava/util/Set;Ljava/util/Map;Lnet/minecraft/util/profiling/ProfileResults;)Ljava/nio/file/Path; net/minecraft/util/profiling/metrics/storage/MetricsPersister/saveReports (Ljava/util/Set;Ljava/util/Map;Lnet/minecraft/util/profiling/ProfileResults;)Ljava/nio/file/Path; +MD: net/minecraft/util/profiling/metrics/storage/RecordedDeviation/ (Ljava/time/Instant;ILnet/minecraft/util/profiling/ProfileResults;)V net/minecraft/util/profiling/metrics/storage/RecordedDeviation/ (Ljava/time/Instant;ILnet/minecraft/util/profiling/ProfileResults;)V +MD: net/minecraft/util/random/SimpleWeightedRandomList/ (Ljava/util/List;)V net/minecraft/util/random/SimpleWeightedRandomList/ (Ljava/util/List;)V +MD: net/minecraft/util/random/SimpleWeightedRandomList/m_146263_ ()Lnet/minecraft/util/random/SimpleWeightedRandomList$Builder; net/minecraft/util/random/SimpleWeightedRandomList/builder ()Lnet/minecraft/util/random/SimpleWeightedRandomList$Builder; +MD: net/minecraft/util/random/SimpleWeightedRandomList/m_146264_ (Lcom/mojang/serialization/Codec;)Lcom/mojang/serialization/Codec; net/minecraft/util/random/SimpleWeightedRandomList/wrappedCodec (Lcom/mojang/serialization/Codec;)Lcom/mojang/serialization/Codec; +MD: net/minecraft/util/random/SimpleWeightedRandomList/m_185860_ (Lcom/mojang/serialization/Codec;)Lcom/mojang/serialization/Codec; net/minecraft/util/random/SimpleWeightedRandomList/wrappedCodecAllowingEmpty (Lcom/mojang/serialization/Codec;)Lcom/mojang/serialization/Codec; +MD: net/minecraft/util/random/SimpleWeightedRandomList/m_185862_ (Ljava/lang/Object;)Lnet/minecraft/util/random/SimpleWeightedRandomList; net/minecraft/util/random/SimpleWeightedRandomList/single (Ljava/lang/Object;)Lnet/minecraft/util/random/SimpleWeightedRandomList; +MD: net/minecraft/util/random/SimpleWeightedRandomList/m_185864_ ()Lnet/minecraft/util/random/SimpleWeightedRandomList; net/minecraft/util/random/SimpleWeightedRandomList/empty ()Lnet/minecraft/util/random/SimpleWeightedRandomList; +MD: net/minecraft/util/random/SimpleWeightedRandomList/m_216820_ (Lnet/minecraft/util/RandomSource;)Ljava/util/Optional; net/minecraft/util/random/SimpleWeightedRandomList/getRandomValue (Lnet/minecraft/util/RandomSource;)Ljava/util/Optional; +MD: net/minecraft/util/random/SimpleWeightedRandomList$Builder/ ()V net/minecraft/util/random/SimpleWeightedRandomList$Builder/ ()V +MD: net/minecraft/util/random/SimpleWeightedRandomList$Builder/m_146270_ ()Lnet/minecraft/util/random/SimpleWeightedRandomList; net/minecraft/util/random/SimpleWeightedRandomList$Builder/build ()Lnet/minecraft/util/random/SimpleWeightedRandomList; +MD: net/minecraft/util/random/SimpleWeightedRandomList$Builder/m_146271_ (Ljava/lang/Object;I)Lnet/minecraft/util/random/SimpleWeightedRandomList$Builder; net/minecraft/util/random/SimpleWeightedRandomList$Builder/add (Ljava/lang/Object;I)Lnet/minecraft/util/random/SimpleWeightedRandomList$Builder; +MD: net/minecraft/util/random/Weight/ ()V net/minecraft/util/random/Weight/ ()V +MD: net/minecraft/util/random/Weight/ (I)V net/minecraft/util/random/Weight/ (I)V +MD: net/minecraft/util/random/Weight/equals (Ljava/lang/Object;)Z net/minecraft/util/random/Weight/equals (Ljava/lang/Object;)Z +MD: net/minecraft/util/random/Weight/hashCode ()I net/minecraft/util/random/Weight/hashCode ()I +MD: net/minecraft/util/random/Weight/m_146281_ ()I net/minecraft/util/random/Weight/asInt ()I +MD: net/minecraft/util/random/Weight/m_146282_ (I)Lnet/minecraft/util/random/Weight; net/minecraft/util/random/Weight/of (I)Lnet/minecraft/util/random/Weight; +MD: net/minecraft/util/random/Weight/m_146284_ (I)V net/minecraft/util/random/Weight/validateWeight (I)V +MD: net/minecraft/util/random/Weight/toString ()Ljava/lang/String; net/minecraft/util/random/Weight/toString ()Ljava/lang/String; +MD: net/minecraft/util/random/WeightedEntry/m_142631_ ()Lnet/minecraft/util/random/Weight; net/minecraft/util/random/WeightedEntry/getWeight ()Lnet/minecraft/util/random/Weight; +MD: net/minecraft/util/random/WeightedEntry/m_146290_ (Ljava/lang/Object;I)Lnet/minecraft/util/random/WeightedEntry$Wrapper; net/minecraft/util/random/WeightedEntry/wrap (Ljava/lang/Object;I)Lnet/minecraft/util/random/WeightedEntry$Wrapper; +MD: net/minecraft/util/random/WeightedEntry$IntrusiveBase/ (Lnet/minecraft/util/random/Weight;)V net/minecraft/util/random/WeightedEntry$IntrusiveBase/ (Lnet/minecraft/util/random/Weight;)V +MD: net/minecraft/util/random/WeightedEntry$IntrusiveBase/ (I)V net/minecraft/util/random/WeightedEntry$IntrusiveBase/ (I)V +MD: net/minecraft/util/random/WeightedEntry$IntrusiveBase/m_142631_ ()Lnet/minecraft/util/random/Weight; net/minecraft/util/random/WeightedEntry$IntrusiveBase/getWeight ()Lnet/minecraft/util/random/Weight; +MD: net/minecraft/util/random/WeightedEntry$Wrapper/ (Ljava/lang/Object;Lnet/minecraft/util/random/Weight;)V net/minecraft/util/random/WeightedEntry$Wrapper/ (Ljava/lang/Object;Lnet/minecraft/util/random/Weight;)V +MD: net/minecraft/util/random/WeightedEntry$Wrapper/m_142631_ ()Lnet/minecraft/util/random/Weight; net/minecraft/util/random/WeightedEntry$Wrapper/getWeight ()Lnet/minecraft/util/random/Weight; +MD: net/minecraft/util/random/WeightedEntry$Wrapper/m_146305_ (Lcom/mojang/serialization/Codec;)Lcom/mojang/serialization/Codec; net/minecraft/util/random/WeightedEntry$Wrapper/codec (Lcom/mojang/serialization/Codec;)Lcom/mojang/serialization/Codec; +MD: net/minecraft/util/random/WeightedEntry$Wrapper/m_146307_ (Lcom/mojang/serialization/Codec;Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/util/random/WeightedEntry$Wrapper/lambda$codec$0 (Lcom/mojang/serialization/Codec;Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/util/random/WeightedEntry$Wrapper/m_146310_ ()Ljava/lang/Object; net/minecraft/util/random/WeightedEntry$Wrapper/getData ()Ljava/lang/Object; +MD: net/minecraft/util/random/WeightedRandom/ ()V net/minecraft/util/random/WeightedRandom/ ()V +MD: net/minecraft/util/random/WeightedRandom/m_146312_ (Ljava/util/List;)I net/minecraft/util/random/WeightedRandom/getTotalWeight (Ljava/util/List;)I +MD: net/minecraft/util/random/WeightedRandom/m_146314_ (Ljava/util/List;I)Ljava/util/Optional; net/minecraft/util/random/WeightedRandom/getWeightedItem (Ljava/util/List;I)Ljava/util/Optional; +MD: net/minecraft/util/random/WeightedRandom/m_216822_ (Lnet/minecraft/util/RandomSource;Ljava/util/List;)Ljava/util/Optional; net/minecraft/util/random/WeightedRandom/getRandomItem (Lnet/minecraft/util/RandomSource;Ljava/util/List;)Ljava/util/Optional; +MD: net/minecraft/util/random/WeightedRandom/m_216825_ (Lnet/minecraft/util/RandomSource;Ljava/util/List;I)Ljava/util/Optional; net/minecraft/util/random/WeightedRandom/getRandomItem (Lnet/minecraft/util/RandomSource;Ljava/util/List;I)Ljava/util/Optional; +MD: net/minecraft/util/random/WeightedRandomList/ (Ljava/util/List;)V net/minecraft/util/random/WeightedRandomList/ (Ljava/util/List;)V +MD: net/minecraft/util/random/WeightedRandomList/m_146328_ (Ljava/util/List;)Lnet/minecraft/util/random/WeightedRandomList; net/minecraft/util/random/WeightedRandomList/create (Ljava/util/List;)Lnet/minecraft/util/random/WeightedRandomList; +MD: net/minecraft/util/random/WeightedRandomList/m_146330_ ([Lnet/minecraft/util/random/WeightedEntry;)Lnet/minecraft/util/random/WeightedRandomList; net/minecraft/util/random/WeightedRandomList/create ([Lnet/minecraft/util/random/WeightedEntry;)Lnet/minecraft/util/random/WeightedRandomList; +MD: net/minecraft/util/random/WeightedRandomList/m_146332_ ()Lnet/minecraft/util/random/WeightedRandomList; net/minecraft/util/random/WeightedRandomList/create ()Lnet/minecraft/util/random/WeightedRandomList; +MD: net/minecraft/util/random/WeightedRandomList/m_146333_ (Lcom/mojang/serialization/Codec;)Lcom/mojang/serialization/Codec; net/minecraft/util/random/WeightedRandomList/codec (Lcom/mojang/serialization/Codec;)Lcom/mojang/serialization/Codec; +MD: net/minecraft/util/random/WeightedRandomList/m_146337_ ()Z net/minecraft/util/random/WeightedRandomList/isEmpty ()Z +MD: net/minecraft/util/random/WeightedRandomList/m_146338_ ()Ljava/util/List; net/minecraft/util/random/WeightedRandomList/unwrap ()Ljava/util/List; +MD: net/minecraft/util/random/WeightedRandomList/m_216829_ (Lnet/minecraft/util/RandomSource;)Ljava/util/Optional; net/minecraft/util/random/WeightedRandomList/getRandom (Lnet/minecraft/util/RandomSource;)Ljava/util/Optional; +MD: net/minecraft/util/thread/BlockableEventLoop/ ()V net/minecraft/util/thread/BlockableEventLoop/ ()V +MD: net/minecraft/util/thread/BlockableEventLoop/ (Ljava/lang/String;)V net/minecraft/util/thread/BlockableEventLoop/ (Ljava/lang/String;)V +MD: net/minecraft/util/thread/BlockableEventLoop/execute (Ljava/lang/Runnable;)V net/minecraft/util/thread/BlockableEventLoop/execute (Ljava/lang/Runnable;)V +MD: net/minecraft/util/thread/BlockableEventLoop/m_142754_ ()Ljava/util/List; net/minecraft/util/thread/BlockableEventLoop/profiledMetrics ()Ljava/util/List; +MD: net/minecraft/util/thread/BlockableEventLoop/m_18689_ (Ljava/lang/Runnable;)Ljava/util/concurrent/CompletableFuture; net/minecraft/util/thread/BlockableEventLoop/submitAsync (Ljava/lang/Runnable;)Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/util/thread/BlockableEventLoop/m_18691_ (Ljava/util/function/Supplier;)Ljava/util/concurrent/CompletableFuture; net/minecraft/util/thread/BlockableEventLoop/submit (Ljava/util/function/Supplier;)Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/util/thread/BlockableEventLoop/m_18693_ (Ljava/lang/Runnable;)Ljava/lang/Void; net/minecraft/util/thread/BlockableEventLoop/lambda$submitAsync$0 (Ljava/lang/Runnable;)Ljava/lang/Void; +MD: net/minecraft/util/thread/BlockableEventLoop/m_18695_ ()Z net/minecraft/util/thread/BlockableEventLoop/isSameThread ()Z +MD: net/minecraft/util/thread/BlockableEventLoop/m_18696_ ()I net/minecraft/util/thread/BlockableEventLoop/getPendingTasksCount ()I +MD: net/minecraft/util/thread/BlockableEventLoop/m_18698_ ()V net/minecraft/util/thread/BlockableEventLoop/dropAllTasks ()V +MD: net/minecraft/util/thread/BlockableEventLoop/m_18699_ ()V net/minecraft/util/thread/BlockableEventLoop/runAllTasks ()V +MD: net/minecraft/util/thread/BlockableEventLoop/m_18701_ (Ljava/util/function/BooleanSupplier;)V net/minecraft/util/thread/BlockableEventLoop/managedBlock (Ljava/util/function/BooleanSupplier;)V +MD: net/minecraft/util/thread/BlockableEventLoop/m_18707_ (Ljava/lang/Runnable;)Ljava/util/concurrent/CompletableFuture; net/minecraft/util/thread/BlockableEventLoop/submit (Ljava/lang/Runnable;)Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/util/thread/BlockableEventLoop/m_18709_ (Ljava/lang/Runnable;)V net/minecraft/util/thread/BlockableEventLoop/executeBlocking (Ljava/lang/Runnable;)V +MD: net/minecraft/util/thread/BlockableEventLoop/m_201446_ (Ljava/lang/Runnable;)V net/minecraft/util/thread/BlockableEventLoop/executeIfPossible (Ljava/lang/Runnable;)V +MD: net/minecraft/util/thread/BlockableEventLoop/m_5660_ ()Z net/minecraft/util/thread/BlockableEventLoop/scheduleExecutables ()Z +MD: net/minecraft/util/thread/BlockableEventLoop/m_5667_ ()V net/minecraft/util/thread/BlockableEventLoop/waitForTasks ()V +MD: net/minecraft/util/thread/BlockableEventLoop/m_6304_ ()Ljava/lang/Thread; net/minecraft/util/thread/BlockableEventLoop/getRunningThread ()Ljava/lang/Thread; +MD: net/minecraft/util/thread/BlockableEventLoop/m_6362_ (Ljava/lang/Runnable;)Z net/minecraft/util/thread/BlockableEventLoop/shouldRun (Ljava/lang/Runnable;)Z +MD: net/minecraft/util/thread/BlockableEventLoop/m_6367_ (Ljava/lang/Runnable;)V net/minecraft/util/thread/BlockableEventLoop/doRunTask (Ljava/lang/Runnable;)V +MD: net/minecraft/util/thread/BlockableEventLoop/m_6681_ (Ljava/lang/Runnable;)Ljava/lang/Runnable; net/minecraft/util/thread/BlockableEventLoop/wrapRunnable (Ljava/lang/Runnable;)Ljava/lang/Runnable; +MD: net/minecraft/util/thread/BlockableEventLoop/m_6937_ (Ljava/lang/Object;)V net/minecraft/util/thread/BlockableEventLoop/tell (Ljava/lang/Object;)V +MD: net/minecraft/util/thread/BlockableEventLoop/m_6937_ (Ljava/lang/Runnable;)V net/minecraft/util/thread/BlockableEventLoop/tell (Ljava/lang/Runnable;)V +MD: net/minecraft/util/thread/BlockableEventLoop/m_7245_ ()Z net/minecraft/util/thread/BlockableEventLoop/pollTask ()Z +MD: net/minecraft/util/thread/BlockableEventLoop/m_7326_ ()Ljava/lang/String; net/minecraft/util/thread/BlockableEventLoop/name ()Ljava/lang/String; +MD: net/minecraft/util/thread/NamedThreadFactory/ ()V net/minecraft/util/thread/NamedThreadFactory/ ()V +MD: net/minecraft/util/thread/NamedThreadFactory/ (Ljava/lang/String;)V net/minecraft/util/thread/NamedThreadFactory/ (Ljava/lang/String;)V +MD: net/minecraft/util/thread/NamedThreadFactory/m_146347_ (Ljava/lang/Runnable;Ljava/lang/Thread;Ljava/lang/Throwable;)V net/minecraft/util/thread/NamedThreadFactory/lambda$newThread$0 (Ljava/lang/Runnable;Ljava/lang/Thread;Ljava/lang/Throwable;)V +MD: net/minecraft/util/thread/NamedThreadFactory/newThread (Ljava/lang/Runnable;)Ljava/lang/Thread; net/minecraft/util/thread/NamedThreadFactory/newThread (Ljava/lang/Runnable;)Ljava/lang/Thread; +MD: net/minecraft/util/thread/ProcessorHandle/close ()V net/minecraft/util/thread/ProcessorHandle/close ()V +MD: net/minecraft/util/thread/ProcessorHandle/m_18714_ (Ljava/lang/String;Ljava/util/function/Consumer;)Lnet/minecraft/util/thread/ProcessorHandle; net/minecraft/util/thread/ProcessorHandle/of (Ljava/lang/String;Ljava/util/function/Consumer;)Lnet/minecraft/util/thread/ProcessorHandle; +MD: net/minecraft/util/thread/ProcessorHandle/m_18717_ (Ljava/util/concurrent/CompletableFuture;Lcom/mojang/datafixers/util/Either;)V net/minecraft/util/thread/ProcessorHandle/lambda$askEither$0 (Ljava/util/concurrent/CompletableFuture;Lcom/mojang/datafixers/util/Either;)V +MD: net/minecraft/util/thread/ProcessorHandle/m_18720_ (Ljava/util/function/Function;)Ljava/util/concurrent/CompletableFuture; net/minecraft/util/thread/ProcessorHandle/ask (Ljava/util/function/Function;)Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/util/thread/ProcessorHandle/m_18722_ (Ljava/util/function/Function;)Ljava/util/concurrent/CompletableFuture; net/minecraft/util/thread/ProcessorHandle/askEither (Ljava/util/function/Function;)Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/util/thread/ProcessorHandle/m_6937_ (Ljava/lang/Object;)V net/minecraft/util/thread/ProcessorHandle/tell (Ljava/lang/Object;)V +MD: net/minecraft/util/thread/ProcessorHandle/m_7326_ ()Ljava/lang/String; net/minecraft/util/thread/ProcessorHandle/name ()Ljava/lang/String; +MD: net/minecraft/util/thread/ProcessorHandle$1/ (Ljava/lang/String;Ljava/util/function/Consumer;)V net/minecraft/util/thread/ProcessorHandle$1/ (Ljava/lang/String;Ljava/util/function/Consumer;)V +MD: net/minecraft/util/thread/ProcessorHandle$1/m_6937_ (Ljava/lang/Object;)V net/minecraft/util/thread/ProcessorHandle$1/tell (Ljava/lang/Object;)V +MD: net/minecraft/util/thread/ProcessorHandle$1/m_7326_ ()Ljava/lang/String; net/minecraft/util/thread/ProcessorHandle$1/name ()Ljava/lang/String; +MD: net/minecraft/util/thread/ProcessorHandle$1/toString ()Ljava/lang/String; net/minecraft/util/thread/ProcessorHandle$1/toString ()Ljava/lang/String; +MD: net/minecraft/util/thread/ProcessorMailbox/ ()V net/minecraft/util/thread/ProcessorMailbox/ ()V +MD: net/minecraft/util/thread/ProcessorMailbox/ (Lnet/minecraft/util/thread/StrictQueue;Ljava/util/concurrent/Executor;Ljava/lang/String;)V net/minecraft/util/thread/ProcessorMailbox/ (Lnet/minecraft/util/thread/StrictQueue;Ljava/util/concurrent/Executor;Ljava/lang/String;)V +MD: net/minecraft/util/thread/ProcessorMailbox/close ()V net/minecraft/util/thread/ProcessorMailbox/close ()V +MD: net/minecraft/util/thread/ProcessorMailbox/m_142754_ ()Ljava/util/List; net/minecraft/util/thread/ProcessorMailbox/profiledMetrics ()Ljava/util/List; +MD: net/minecraft/util/thread/ProcessorMailbox/m_146355_ ()I net/minecraft/util/thread/ProcessorMailbox/size ()I +MD: net/minecraft/util/thread/ProcessorMailbox/m_182329_ ()V net/minecraft/util/thread/ProcessorMailbox/runAll ()V +MD: net/minecraft/util/thread/ProcessorMailbox/m_182330_ (I)Z net/minecraft/util/thread/ProcessorMailbox/lambda$runAll$1 (I)Z +MD: net/minecraft/util/thread/ProcessorMailbox/m_18744_ ()Z net/minecraft/util/thread/ProcessorMailbox/setAsScheduled ()Z +MD: net/minecraft/util/thread/ProcessorMailbox/m_18745_ (I)Z net/minecraft/util/thread/ProcessorMailbox/lambda$run$0 (I)Z +MD: net/minecraft/util/thread/ProcessorMailbox/m_18747_ (Lit/unimi/dsi/fastutil/ints/Int2BooleanFunction;)I net/minecraft/util/thread/ProcessorMailbox/pollUntil (Lit/unimi/dsi/fastutil/ints/Int2BooleanFunction;)I +MD: net/minecraft/util/thread/ProcessorMailbox/m_18751_ (Ljava/util/concurrent/Executor;Ljava/lang/String;)Lnet/minecraft/util/thread/ProcessorMailbox; net/minecraft/util/thread/ProcessorMailbox/create (Ljava/util/concurrent/Executor;Ljava/lang/String;)Lnet/minecraft/util/thread/ProcessorMailbox; +MD: net/minecraft/util/thread/ProcessorMailbox/m_18754_ ()V net/minecraft/util/thread/ProcessorMailbox/setAsIdle ()V +MD: net/minecraft/util/thread/ProcessorMailbox/m_18756_ ()Z net/minecraft/util/thread/ProcessorMailbox/canBeScheduled ()Z +MD: net/minecraft/util/thread/ProcessorMailbox/m_18758_ ()Z net/minecraft/util/thread/ProcessorMailbox/shouldProcess ()Z +MD: net/minecraft/util/thread/ProcessorMailbox/m_18759_ ()Z net/minecraft/util/thread/ProcessorMailbox/pollTask ()Z +MD: net/minecraft/util/thread/ProcessorMailbox/m_18760_ ()V net/minecraft/util/thread/ProcessorMailbox/registerForExecution ()V +MD: net/minecraft/util/thread/ProcessorMailbox/m_201938_ ()Z net/minecraft/util/thread/ProcessorMailbox/hasWork ()Z +MD: net/minecraft/util/thread/ProcessorMailbox/m_6937_ (Ljava/lang/Object;)V net/minecraft/util/thread/ProcessorMailbox/tell (Ljava/lang/Object;)V +MD: net/minecraft/util/thread/ProcessorMailbox/m_7326_ ()Ljava/lang/String; net/minecraft/util/thread/ProcessorMailbox/name ()Ljava/lang/String; +MD: net/minecraft/util/thread/ProcessorMailbox/run ()V net/minecraft/util/thread/ProcessorMailbox/run ()V +MD: net/minecraft/util/thread/ProcessorMailbox/toString ()Ljava/lang/String; net/minecraft/util/thread/ProcessorMailbox/toString ()Ljava/lang/String; +MD: net/minecraft/util/thread/ReentrantBlockableEventLoop/ (Ljava/lang/String;)V net/minecraft/util/thread/ReentrantBlockableEventLoop/ (Ljava/lang/String;)V +MD: net/minecraft/util/thread/ReentrantBlockableEventLoop/m_18767_ ()Z net/minecraft/util/thread/ReentrantBlockableEventLoop/runningTask ()Z +MD: net/minecraft/util/thread/ReentrantBlockableEventLoop/m_5660_ ()Z net/minecraft/util/thread/ReentrantBlockableEventLoop/scheduleExecutables ()Z +MD: net/minecraft/util/thread/ReentrantBlockableEventLoop/m_6367_ (Ljava/lang/Runnable;)V net/minecraft/util/thread/ReentrantBlockableEventLoop/doRunTask (Ljava/lang/Runnable;)V +MD: net/minecraft/util/thread/StrictQueue/m_142732_ ()I net/minecraft/util/thread/StrictQueue/size ()I +MD: net/minecraft/util/thread/StrictQueue/m_6610_ ()Ljava/lang/Object; net/minecraft/util/thread/StrictQueue/pop ()Ljava/lang/Object; +MD: net/minecraft/util/thread/StrictQueue/m_6944_ (Ljava/lang/Object;)Z net/minecraft/util/thread/StrictQueue/push (Ljava/lang/Object;)Z +MD: net/minecraft/util/thread/StrictQueue/m_7263_ ()Z net/minecraft/util/thread/StrictQueue/isEmpty ()Z +MD: net/minecraft/util/thread/StrictQueue$FixedPriorityQueue/ (I)V net/minecraft/util/thread/StrictQueue$FixedPriorityQueue/ (I)V +MD: net/minecraft/util/thread/StrictQueue$FixedPriorityQueue/m_142732_ ()I net/minecraft/util/thread/StrictQueue$FixedPriorityQueue/size ()I +MD: net/minecraft/util/thread/StrictQueue$FixedPriorityQueue/m_6610_ ()Ljava/lang/Runnable; net/minecraft/util/thread/StrictQueue$FixedPriorityQueue/pop ()Ljava/lang/Runnable; +MD: net/minecraft/util/thread/StrictQueue$FixedPriorityQueue/m_6610_ ()Ljava/lang/Object; net/minecraft/util/thread/StrictQueue$FixedPriorityQueue/pop ()Ljava/lang/Object; +MD: net/minecraft/util/thread/StrictQueue$FixedPriorityQueue/m_6944_ (Lnet/minecraft/util/thread/StrictQueue$IntRunnable;)Z net/minecraft/util/thread/StrictQueue$FixedPriorityQueue/push (Lnet/minecraft/util/thread/StrictQueue$IntRunnable;)Z +MD: net/minecraft/util/thread/StrictQueue$FixedPriorityQueue/m_6944_ (Ljava/lang/Object;)Z net/minecraft/util/thread/StrictQueue$FixedPriorityQueue/push (Ljava/lang/Object;)Z +MD: net/minecraft/util/thread/StrictQueue$FixedPriorityQueue/m_7263_ ()Z net/minecraft/util/thread/StrictQueue$FixedPriorityQueue/isEmpty ()Z +MD: net/minecraft/util/thread/StrictQueue$IntRunnable/ (ILjava/lang/Runnable;)V net/minecraft/util/thread/StrictQueue$IntRunnable/ (ILjava/lang/Runnable;)V +MD: net/minecraft/util/thread/StrictQueue$IntRunnable/m_18788_ ()I net/minecraft/util/thread/StrictQueue$IntRunnable/getPriority ()I +MD: net/minecraft/util/thread/StrictQueue$IntRunnable/run ()V net/minecraft/util/thread/StrictQueue$IntRunnable/run ()V +MD: net/minecraft/util/thread/StrictQueue$QueueStrictQueue/ (Ljava/util/Queue;)V net/minecraft/util/thread/StrictQueue$QueueStrictQueue/ (Ljava/util/Queue;)V +MD: net/minecraft/util/thread/StrictQueue$QueueStrictQueue/m_142732_ ()I net/minecraft/util/thread/StrictQueue$QueueStrictQueue/size ()I +MD: net/minecraft/util/thread/StrictQueue$QueueStrictQueue/m_6610_ ()Ljava/lang/Object; net/minecraft/util/thread/StrictQueue$QueueStrictQueue/pop ()Ljava/lang/Object; +MD: net/minecraft/util/thread/StrictQueue$QueueStrictQueue/m_6944_ (Ljava/lang/Object;)Z net/minecraft/util/thread/StrictQueue$QueueStrictQueue/push (Ljava/lang/Object;)Z +MD: net/minecraft/util/thread/StrictQueue$QueueStrictQueue/m_7263_ ()Z net/minecraft/util/thread/StrictQueue$QueueStrictQueue/isEmpty ()Z +MD: net/minecraft/util/valueproviders/BiasedToBottomInt/ ()V net/minecraft/util/valueproviders/BiasedToBottomInt/ ()V +MD: net/minecraft/util/valueproviders/BiasedToBottomInt/ (II)V net/minecraft/util/valueproviders/BiasedToBottomInt/ (II)V +MD: net/minecraft/util/valueproviders/BiasedToBottomInt/m_141948_ ()Lnet/minecraft/util/valueproviders/IntProviderType; net/minecraft/util/valueproviders/BiasedToBottomInt/getType ()Lnet/minecraft/util/valueproviders/IntProviderType; +MD: net/minecraft/util/valueproviders/BiasedToBottomInt/m_142737_ ()I net/minecraft/util/valueproviders/BiasedToBottomInt/getMaxValue ()I +MD: net/minecraft/util/valueproviders/BiasedToBottomInt/m_142739_ ()I net/minecraft/util/valueproviders/BiasedToBottomInt/getMinValue ()I +MD: net/minecraft/util/valueproviders/BiasedToBottomInt/m_146367_ (II)Lnet/minecraft/util/valueproviders/BiasedToBottomInt; net/minecraft/util/valueproviders/BiasedToBottomInt/of (II)Lnet/minecraft/util/valueproviders/BiasedToBottomInt; +MD: net/minecraft/util/valueproviders/BiasedToBottomInt/m_146372_ (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/util/valueproviders/BiasedToBottomInt/lambda$static$2 (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/util/valueproviders/BiasedToBottomInt/m_146377_ (Lnet/minecraft/util/valueproviders/BiasedToBottomInt;)Ljava/lang/Integer; net/minecraft/util/valueproviders/BiasedToBottomInt/lambda$static$1 (Lnet/minecraft/util/valueproviders/BiasedToBottomInt;)Ljava/lang/Integer; +MD: net/minecraft/util/valueproviders/BiasedToBottomInt/m_146380_ (Lnet/minecraft/util/valueproviders/BiasedToBottomInt;)Ljava/lang/Integer; net/minecraft/util/valueproviders/BiasedToBottomInt/lambda$static$0 (Lnet/minecraft/util/valueproviders/BiasedToBottomInt;)Ljava/lang/Integer; +MD: net/minecraft/util/valueproviders/BiasedToBottomInt/m_214085_ (Lnet/minecraft/util/RandomSource;)I net/minecraft/util/valueproviders/BiasedToBottomInt/sample (Lnet/minecraft/util/RandomSource;)I +MD: net/minecraft/util/valueproviders/BiasedToBottomInt/m_274163_ (Lnet/minecraft/util/valueproviders/BiasedToBottomInt;)Lcom/mojang/serialization/DataResult; net/minecraft/util/valueproviders/BiasedToBottomInt/lambda$static$4 (Lnet/minecraft/util/valueproviders/BiasedToBottomInt;)Lcom/mojang/serialization/DataResult; +MD: net/minecraft/util/valueproviders/BiasedToBottomInt/m_274164_ (Lnet/minecraft/util/valueproviders/BiasedToBottomInt;)Ljava/lang/String; net/minecraft/util/valueproviders/BiasedToBottomInt/lambda$static$3 (Lnet/minecraft/util/valueproviders/BiasedToBottomInt;)Ljava/lang/String; +MD: net/minecraft/util/valueproviders/BiasedToBottomInt/toString ()Ljava/lang/String; net/minecraft/util/valueproviders/BiasedToBottomInt/toString ()Ljava/lang/String; +MD: net/minecraft/util/valueproviders/ClampedInt/ ()V net/minecraft/util/valueproviders/ClampedInt/ ()V +MD: net/minecraft/util/valueproviders/ClampedInt/ (Lnet/minecraft/util/valueproviders/IntProvider;II)V net/minecraft/util/valueproviders/ClampedInt/ (Lnet/minecraft/util/valueproviders/IntProvider;II)V +MD: net/minecraft/util/valueproviders/ClampedInt/m_141948_ ()Lnet/minecraft/util/valueproviders/IntProviderType; net/minecraft/util/valueproviders/ClampedInt/getType ()Lnet/minecraft/util/valueproviders/IntProviderType; +MD: net/minecraft/util/valueproviders/ClampedInt/m_142737_ ()I net/minecraft/util/valueproviders/ClampedInt/getMaxValue ()I +MD: net/minecraft/util/valueproviders/ClampedInt/m_142739_ ()I net/minecraft/util/valueproviders/ClampedInt/getMinValue ()I +MD: net/minecraft/util/valueproviders/ClampedInt/m_146395_ (Lnet/minecraft/util/valueproviders/IntProvider;II)Lnet/minecraft/util/valueproviders/ClampedInt; net/minecraft/util/valueproviders/ClampedInt/of (Lnet/minecraft/util/valueproviders/IntProvider;II)Lnet/minecraft/util/valueproviders/ClampedInt; +MD: net/minecraft/util/valueproviders/ClampedInt/m_146399_ (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/util/valueproviders/ClampedInt/lambda$static$3 (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/util/valueproviders/ClampedInt/m_146404_ (Lnet/minecraft/util/valueproviders/ClampedInt;)Ljava/lang/Integer; net/minecraft/util/valueproviders/ClampedInt/lambda$static$2 (Lnet/minecraft/util/valueproviders/ClampedInt;)Ljava/lang/Integer; +MD: net/minecraft/util/valueproviders/ClampedInt/m_146407_ (Lnet/minecraft/util/valueproviders/ClampedInt;)Ljava/lang/Integer; net/minecraft/util/valueproviders/ClampedInt/lambda$static$1 (Lnet/minecraft/util/valueproviders/ClampedInt;)Ljava/lang/Integer; +MD: net/minecraft/util/valueproviders/ClampedInt/m_146409_ (Lnet/minecraft/util/valueproviders/ClampedInt;)Lnet/minecraft/util/valueproviders/IntProvider; net/minecraft/util/valueproviders/ClampedInt/lambda$static$0 (Lnet/minecraft/util/valueproviders/ClampedInt;)Lnet/minecraft/util/valueproviders/IntProvider; +MD: net/minecraft/util/valueproviders/ClampedInt/m_214085_ (Lnet/minecraft/util/RandomSource;)I net/minecraft/util/valueproviders/ClampedInt/sample (Lnet/minecraft/util/RandomSource;)I +MD: net/minecraft/util/valueproviders/ClampedInt/m_274165_ (Lnet/minecraft/util/valueproviders/ClampedInt;)Lcom/mojang/serialization/DataResult; net/minecraft/util/valueproviders/ClampedInt/lambda$static$5 (Lnet/minecraft/util/valueproviders/ClampedInt;)Lcom/mojang/serialization/DataResult; +MD: net/minecraft/util/valueproviders/ClampedInt/m_274166_ (Lnet/minecraft/util/valueproviders/ClampedInt;)Ljava/lang/String; net/minecraft/util/valueproviders/ClampedInt/lambda$static$4 (Lnet/minecraft/util/valueproviders/ClampedInt;)Ljava/lang/String; +MD: net/minecraft/util/valueproviders/ClampedNormalFloat/ ()V net/minecraft/util/valueproviders/ClampedNormalFloat/ ()V +MD: net/minecraft/util/valueproviders/ClampedNormalFloat/ (FFFF)V net/minecraft/util/valueproviders/ClampedNormalFloat/ (FFFF)V +MD: net/minecraft/util/valueproviders/ClampedNormalFloat/m_141961_ ()Lnet/minecraft/util/valueproviders/FloatProviderType; net/minecraft/util/valueproviders/ClampedNormalFloat/getType ()Lnet/minecraft/util/valueproviders/FloatProviderType; +MD: net/minecraft/util/valueproviders/ClampedNormalFloat/m_142734_ ()F net/minecraft/util/valueproviders/ClampedNormalFloat/getMaxValue ()F +MD: net/minecraft/util/valueproviders/ClampedNormalFloat/m_142735_ ()F net/minecraft/util/valueproviders/ClampedNormalFloat/getMinValue ()F +MD: net/minecraft/util/valueproviders/ClampedNormalFloat/m_146423_ (FFFF)Lnet/minecraft/util/valueproviders/ClampedNormalFloat; net/minecraft/util/valueproviders/ClampedNormalFloat/of (FFFF)Lnet/minecraft/util/valueproviders/ClampedNormalFloat; +MD: net/minecraft/util/valueproviders/ClampedNormalFloat/m_146430_ (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/util/valueproviders/ClampedNormalFloat/lambda$static$4 (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/util/valueproviders/ClampedNormalFloat/m_146441_ (Lnet/minecraft/util/valueproviders/ClampedNormalFloat;)Ljava/lang/Float; net/minecraft/util/valueproviders/ClampedNormalFloat/lambda$static$3 (Lnet/minecraft/util/valueproviders/ClampedNormalFloat;)Ljava/lang/Float; +MD: net/minecraft/util/valueproviders/ClampedNormalFloat/m_146444_ (Lnet/minecraft/util/valueproviders/ClampedNormalFloat;)Ljava/lang/Float; net/minecraft/util/valueproviders/ClampedNormalFloat/lambda$static$2 (Lnet/minecraft/util/valueproviders/ClampedNormalFloat;)Ljava/lang/Float; +MD: net/minecraft/util/valueproviders/ClampedNormalFloat/m_146446_ (Lnet/minecraft/util/valueproviders/ClampedNormalFloat;)Ljava/lang/Float; net/minecraft/util/valueproviders/ClampedNormalFloat/lambda$static$1 (Lnet/minecraft/util/valueproviders/ClampedNormalFloat;)Ljava/lang/Float; +MD: net/minecraft/util/valueproviders/ClampedNormalFloat/m_146448_ (Lnet/minecraft/util/valueproviders/ClampedNormalFloat;)Ljava/lang/Float; net/minecraft/util/valueproviders/ClampedNormalFloat/lambda$static$0 (Lnet/minecraft/util/valueproviders/ClampedNormalFloat;)Ljava/lang/Float; +MD: net/minecraft/util/valueproviders/ClampedNormalFloat/m_214084_ (Lnet/minecraft/util/RandomSource;)F net/minecraft/util/valueproviders/ClampedNormalFloat/sample (Lnet/minecraft/util/RandomSource;)F +MD: net/minecraft/util/valueproviders/ClampedNormalFloat/m_216837_ (Lnet/minecraft/util/RandomSource;FFFF)F net/minecraft/util/valueproviders/ClampedNormalFloat/sample (Lnet/minecraft/util/RandomSource;FFFF)F +MD: net/minecraft/util/valueproviders/ClampedNormalFloat/m_274167_ (Lnet/minecraft/util/valueproviders/ClampedNormalFloat;)Ljava/lang/String; net/minecraft/util/valueproviders/ClampedNormalFloat/lambda$static$5 (Lnet/minecraft/util/valueproviders/ClampedNormalFloat;)Ljava/lang/String; +MD: net/minecraft/util/valueproviders/ClampedNormalFloat/m_274168_ (Lnet/minecraft/util/valueproviders/ClampedNormalFloat;)Lcom/mojang/serialization/DataResult; net/minecraft/util/valueproviders/ClampedNormalFloat/lambda$static$6 (Lnet/minecraft/util/valueproviders/ClampedNormalFloat;)Lcom/mojang/serialization/DataResult; +MD: net/minecraft/util/valueproviders/ClampedNormalFloat/toString ()Ljava/lang/String; net/minecraft/util/valueproviders/ClampedNormalFloat/toString ()Ljava/lang/String; +MD: net/minecraft/util/valueproviders/ClampedNormalInt/ ()V net/minecraft/util/valueproviders/ClampedNormalInt/ ()V +MD: net/minecraft/util/valueproviders/ClampedNormalInt/ (FFII)V net/minecraft/util/valueproviders/ClampedNormalInt/ (FFII)V +MD: net/minecraft/util/valueproviders/ClampedNormalInt/m_141948_ ()Lnet/minecraft/util/valueproviders/IntProviderType; net/minecraft/util/valueproviders/ClampedNormalInt/getType ()Lnet/minecraft/util/valueproviders/IntProviderType; +MD: net/minecraft/util/valueproviders/ClampedNormalInt/m_142737_ ()I net/minecraft/util/valueproviders/ClampedNormalInt/getMaxValue ()I +MD: net/minecraft/util/valueproviders/ClampedNormalInt/m_142739_ ()I net/minecraft/util/valueproviders/ClampedNormalInt/getMinValue ()I +MD: net/minecraft/util/valueproviders/ClampedNormalInt/m_185879_ (FFII)Lnet/minecraft/util/valueproviders/ClampedNormalInt; net/minecraft/util/valueproviders/ClampedNormalInt/of (FFII)Lnet/minecraft/util/valueproviders/ClampedNormalInt; +MD: net/minecraft/util/valueproviders/ClampedNormalInt/m_185886_ (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/util/valueproviders/ClampedNormalInt/lambda$static$4 (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/util/valueproviders/ClampedNormalInt/m_185897_ (Lnet/minecraft/util/valueproviders/ClampedNormalInt;)Ljava/lang/Integer; net/minecraft/util/valueproviders/ClampedNormalInt/lambda$static$3 (Lnet/minecraft/util/valueproviders/ClampedNormalInt;)Ljava/lang/Integer; +MD: net/minecraft/util/valueproviders/ClampedNormalInt/m_185900_ (Lnet/minecraft/util/valueproviders/ClampedNormalInt;)Ljava/lang/Integer; net/minecraft/util/valueproviders/ClampedNormalInt/lambda$static$2 (Lnet/minecraft/util/valueproviders/ClampedNormalInt;)Ljava/lang/Integer; +MD: net/minecraft/util/valueproviders/ClampedNormalInt/m_185902_ (Lnet/minecraft/util/valueproviders/ClampedNormalInt;)Ljava/lang/Float; net/minecraft/util/valueproviders/ClampedNormalInt/lambda$static$1 (Lnet/minecraft/util/valueproviders/ClampedNormalInt;)Ljava/lang/Float; +MD: net/minecraft/util/valueproviders/ClampedNormalInt/m_185904_ (Lnet/minecraft/util/valueproviders/ClampedNormalInt;)Ljava/lang/Float; net/minecraft/util/valueproviders/ClampedNormalInt/lambda$static$0 (Lnet/minecraft/util/valueproviders/ClampedNormalInt;)Ljava/lang/Float; +MD: net/minecraft/util/valueproviders/ClampedNormalInt/m_214085_ (Lnet/minecraft/util/RandomSource;)I net/minecraft/util/valueproviders/ClampedNormalInt/sample (Lnet/minecraft/util/RandomSource;)I +MD: net/minecraft/util/valueproviders/ClampedNormalInt/m_216845_ (Lnet/minecraft/util/RandomSource;FFFF)I net/minecraft/util/valueproviders/ClampedNormalInt/sample (Lnet/minecraft/util/RandomSource;FFFF)I +MD: net/minecraft/util/valueproviders/ClampedNormalInt/m_274169_ (Lnet/minecraft/util/valueproviders/ClampedNormalInt;)Ljava/lang/String; net/minecraft/util/valueproviders/ClampedNormalInt/lambda$static$5 (Lnet/minecraft/util/valueproviders/ClampedNormalInt;)Ljava/lang/String; +MD: net/minecraft/util/valueproviders/ClampedNormalInt/m_274170_ (Lnet/minecraft/util/valueproviders/ClampedNormalInt;)Lcom/mojang/serialization/DataResult; net/minecraft/util/valueproviders/ClampedNormalInt/lambda$static$6 (Lnet/minecraft/util/valueproviders/ClampedNormalInt;)Lcom/mojang/serialization/DataResult; +MD: net/minecraft/util/valueproviders/ClampedNormalInt/toString ()Ljava/lang/String; net/minecraft/util/valueproviders/ClampedNormalInt/toString ()Ljava/lang/String; +MD: net/minecraft/util/valueproviders/ConstantFloat/ ()V net/minecraft/util/valueproviders/ConstantFloat/ ()V +MD: net/minecraft/util/valueproviders/ConstantFloat/ (F)V net/minecraft/util/valueproviders/ConstantFloat/ (F)V +MD: net/minecraft/util/valueproviders/ConstantFloat/m_141961_ ()Lnet/minecraft/util/valueproviders/FloatProviderType; net/minecraft/util/valueproviders/ConstantFloat/getType ()Lnet/minecraft/util/valueproviders/FloatProviderType; +MD: net/minecraft/util/valueproviders/ConstantFloat/m_142734_ ()F net/minecraft/util/valueproviders/ConstantFloat/getMaxValue ()F +MD: net/minecraft/util/valueproviders/ConstantFloat/m_142735_ ()F net/minecraft/util/valueproviders/ConstantFloat/getMinValue ()F +MD: net/minecraft/util/valueproviders/ConstantFloat/m_146458_ (F)Lnet/minecraft/util/valueproviders/ConstantFloat; net/minecraft/util/valueproviders/ConstantFloat/of (F)Lnet/minecraft/util/valueproviders/ConstantFloat; +MD: net/minecraft/util/valueproviders/ConstantFloat/m_146460_ (Lnet/minecraft/util/valueproviders/ConstantFloat;)Lcom/mojang/datafixers/util/Either; net/minecraft/util/valueproviders/ConstantFloat/lambda$static$4 (Lnet/minecraft/util/valueproviders/ConstantFloat;)Lcom/mojang/datafixers/util/Either; +MD: net/minecraft/util/valueproviders/ConstantFloat/m_146462_ (Lcom/mojang/datafixers/util/Either;)Lnet/minecraft/util/valueproviders/ConstantFloat; net/minecraft/util/valueproviders/ConstantFloat/lambda$static$3 (Lcom/mojang/datafixers/util/Either;)Lnet/minecraft/util/valueproviders/ConstantFloat; +MD: net/minecraft/util/valueproviders/ConstantFloat/m_146464_ (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/util/valueproviders/ConstantFloat/lambda$static$1 (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/util/valueproviders/ConstantFloat/m_146469_ (Lnet/minecraft/util/valueproviders/ConstantFloat;)Lnet/minecraft/util/valueproviders/ConstantFloat; net/minecraft/util/valueproviders/ConstantFloat/lambda$static$2 (Lnet/minecraft/util/valueproviders/ConstantFloat;)Lnet/minecraft/util/valueproviders/ConstantFloat; +MD: net/minecraft/util/valueproviders/ConstantFloat/m_146472_ (Lnet/minecraft/util/valueproviders/ConstantFloat;)Ljava/lang/Float; net/minecraft/util/valueproviders/ConstantFloat/lambda$static$0 (Lnet/minecraft/util/valueproviders/ConstantFloat;)Ljava/lang/Float; +MD: net/minecraft/util/valueproviders/ConstantFloat/m_146474_ ()F net/minecraft/util/valueproviders/ConstantFloat/getValue ()F +MD: net/minecraft/util/valueproviders/ConstantFloat/m_214084_ (Lnet/minecraft/util/RandomSource;)F net/minecraft/util/valueproviders/ConstantFloat/sample (Lnet/minecraft/util/RandomSource;)F +MD: net/minecraft/util/valueproviders/ConstantFloat/toString ()Ljava/lang/String; net/minecraft/util/valueproviders/ConstantFloat/toString ()Ljava/lang/String; +MD: net/minecraft/util/valueproviders/ConstantInt/ ()V net/minecraft/util/valueproviders/ConstantInt/ ()V +MD: net/minecraft/util/valueproviders/ConstantInt/ (I)V net/minecraft/util/valueproviders/ConstantInt/ (I)V +MD: net/minecraft/util/valueproviders/ConstantInt/m_141948_ ()Lnet/minecraft/util/valueproviders/IntProviderType; net/minecraft/util/valueproviders/ConstantInt/getType ()Lnet/minecraft/util/valueproviders/IntProviderType; +MD: net/minecraft/util/valueproviders/ConstantInt/m_142737_ ()I net/minecraft/util/valueproviders/ConstantInt/getMaxValue ()I +MD: net/minecraft/util/valueproviders/ConstantInt/m_142739_ ()I net/minecraft/util/valueproviders/ConstantInt/getMinValue ()I +MD: net/minecraft/util/valueproviders/ConstantInt/m_146483_ (I)Lnet/minecraft/util/valueproviders/ConstantInt; net/minecraft/util/valueproviders/ConstantInt/of (I)Lnet/minecraft/util/valueproviders/ConstantInt; +MD: net/minecraft/util/valueproviders/ConstantInt/m_146485_ (Lnet/minecraft/util/valueproviders/ConstantInt;)Lcom/mojang/datafixers/util/Either; net/minecraft/util/valueproviders/ConstantInt/lambda$static$4 (Lnet/minecraft/util/valueproviders/ConstantInt;)Lcom/mojang/datafixers/util/Either; +MD: net/minecraft/util/valueproviders/ConstantInt/m_146487_ (Lcom/mojang/datafixers/util/Either;)Lnet/minecraft/util/valueproviders/ConstantInt; net/minecraft/util/valueproviders/ConstantInt/lambda$static$3 (Lcom/mojang/datafixers/util/Either;)Lnet/minecraft/util/valueproviders/ConstantInt; +MD: net/minecraft/util/valueproviders/ConstantInt/m_146489_ (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/util/valueproviders/ConstantInt/lambda$static$1 (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/util/valueproviders/ConstantInt/m_146494_ (Lnet/minecraft/util/valueproviders/ConstantInt;)Lnet/minecraft/util/valueproviders/ConstantInt; net/minecraft/util/valueproviders/ConstantInt/lambda$static$2 (Lnet/minecraft/util/valueproviders/ConstantInt;)Lnet/minecraft/util/valueproviders/ConstantInt; +MD: net/minecraft/util/valueproviders/ConstantInt/m_146497_ (Lnet/minecraft/util/valueproviders/ConstantInt;)Ljava/lang/Integer; net/minecraft/util/valueproviders/ConstantInt/lambda$static$0 (Lnet/minecraft/util/valueproviders/ConstantInt;)Ljava/lang/Integer; +MD: net/minecraft/util/valueproviders/ConstantInt/m_146499_ ()I net/minecraft/util/valueproviders/ConstantInt/getValue ()I +MD: net/minecraft/util/valueproviders/ConstantInt/m_214085_ (Lnet/minecraft/util/RandomSource;)I net/minecraft/util/valueproviders/ConstantInt/sample (Lnet/minecraft/util/RandomSource;)I +MD: net/minecraft/util/valueproviders/ConstantInt/toString ()Ljava/lang/String; net/minecraft/util/valueproviders/ConstantInt/toString ()Ljava/lang/String; +MD: net/minecraft/util/valueproviders/FloatProvider/ ()V net/minecraft/util/valueproviders/FloatProvider/ ()V +MD: net/minecraft/util/valueproviders/FloatProvider/ ()V net/minecraft/util/valueproviders/FloatProvider/ ()V +MD: net/minecraft/util/valueproviders/FloatProvider/m_141961_ ()Lnet/minecraft/util/valueproviders/FloatProviderType; net/minecraft/util/valueproviders/FloatProvider/getType ()Lnet/minecraft/util/valueproviders/FloatProviderType; +MD: net/minecraft/util/valueproviders/FloatProvider/m_142734_ ()F net/minecraft/util/valueproviders/FloatProvider/getMaxValue ()F +MD: net/minecraft/util/valueproviders/FloatProvider/m_142735_ ()F net/minecraft/util/valueproviders/FloatProvider/getMinValue ()F +MD: net/minecraft/util/valueproviders/FloatProvider/m_146505_ (FF)Lcom/mojang/serialization/Codec; net/minecraft/util/valueproviders/FloatProvider/codec (FF)Lcom/mojang/serialization/Codec; +MD: net/minecraft/util/valueproviders/FloatProvider/m_146512_ (Lnet/minecraft/util/valueproviders/FloatProvider;)Lcom/mojang/datafixers/util/Either; net/minecraft/util/valueproviders/FloatProvider/lambda$static$2 (Lnet/minecraft/util/valueproviders/FloatProvider;)Lcom/mojang/datafixers/util/Either; +MD: net/minecraft/util/valueproviders/FloatProvider/m_146514_ (Lcom/mojang/datafixers/util/Either;)Lnet/minecraft/util/valueproviders/FloatProvider; net/minecraft/util/valueproviders/FloatProvider/lambda$static$1 (Lcom/mojang/datafixers/util/Either;)Lnet/minecraft/util/valueproviders/FloatProvider; +MD: net/minecraft/util/valueproviders/FloatProvider/m_146517_ (Lnet/minecraft/util/valueproviders/FloatProvider;)Lnet/minecraft/util/valueproviders/FloatProvider; net/minecraft/util/valueproviders/FloatProvider/lambda$static$0 (Lnet/minecraft/util/valueproviders/FloatProvider;)Lnet/minecraft/util/valueproviders/FloatProvider; +MD: net/minecraft/util/valueproviders/FloatProvider/m_274171_ (FLnet/minecraft/util/valueproviders/FloatProvider;)Ljava/lang/String; net/minecraft/util/valueproviders/FloatProvider/lambda$codec$4 (FLnet/minecraft/util/valueproviders/FloatProvider;)Ljava/lang/String; +MD: net/minecraft/util/valueproviders/FloatProvider/m_274172_ (FFLnet/minecraft/util/valueproviders/FloatProvider;)Lcom/mojang/serialization/DataResult; net/minecraft/util/valueproviders/FloatProvider/lambda$codec$5 (FFLnet/minecraft/util/valueproviders/FloatProvider;)Lcom/mojang/serialization/DataResult; +MD: net/minecraft/util/valueproviders/FloatProvider/m_274173_ (FLnet/minecraft/util/valueproviders/FloatProvider;)Ljava/lang/String; net/minecraft/util/valueproviders/FloatProvider/lambda$codec$3 (FLnet/minecraft/util/valueproviders/FloatProvider;)Ljava/lang/String; +MD: net/minecraft/util/valueproviders/FloatProviderType/ ()V net/minecraft/util/valueproviders/FloatProviderType/ ()V +MD: net/minecraft/util/valueproviders/FloatProviderType/m_146524_ (Lcom/mojang/serialization/Codec;)Lcom/mojang/serialization/Codec; net/minecraft/util/valueproviders/FloatProviderType/lambda$register$0 (Lcom/mojang/serialization/Codec;)Lcom/mojang/serialization/Codec; +MD: net/minecraft/util/valueproviders/FloatProviderType/m_146526_ (Ljava/lang/String;Lcom/mojang/serialization/Codec;)Lnet/minecraft/util/valueproviders/FloatProviderType; net/minecraft/util/valueproviders/FloatProviderType/register (Ljava/lang/String;Lcom/mojang/serialization/Codec;)Lnet/minecraft/util/valueproviders/FloatProviderType; +MD: net/minecraft/util/valueproviders/FloatProviderType/m_146529_ ()Lcom/mojang/serialization/Codec; net/minecraft/util/valueproviders/FloatProviderType/codec ()Lcom/mojang/serialization/Codec; +MD: net/minecraft/util/valueproviders/IntProvider/ ()V net/minecraft/util/valueproviders/IntProvider/ ()V +MD: net/minecraft/util/valueproviders/IntProvider/ ()V net/minecraft/util/valueproviders/IntProvider/ ()V +MD: net/minecraft/util/valueproviders/IntProvider/m_141948_ ()Lnet/minecraft/util/valueproviders/IntProviderType; net/minecraft/util/valueproviders/IntProvider/getType ()Lnet/minecraft/util/valueproviders/IntProviderType; +MD: net/minecraft/util/valueproviders/IntProvider/m_142737_ ()I net/minecraft/util/valueproviders/IntProvider/getMaxValue ()I +MD: net/minecraft/util/valueproviders/IntProvider/m_142739_ ()I net/minecraft/util/valueproviders/IntProvider/getMinValue ()I +MD: net/minecraft/util/valueproviders/IntProvider/m_146540_ (Lnet/minecraft/util/valueproviders/IntProvider;)Lcom/mojang/datafixers/util/Either; net/minecraft/util/valueproviders/IntProvider/lambda$static$2 (Lnet/minecraft/util/valueproviders/IntProvider;)Lcom/mojang/datafixers/util/Either; +MD: net/minecraft/util/valueproviders/IntProvider/m_146542_ (Lcom/mojang/datafixers/util/Either;)Lnet/minecraft/util/valueproviders/IntProvider; net/minecraft/util/valueproviders/IntProvider/lambda$static$1 (Lcom/mojang/datafixers/util/Either;)Lnet/minecraft/util/valueproviders/IntProvider; +MD: net/minecraft/util/valueproviders/IntProvider/m_146545_ (II)Lcom/mojang/serialization/Codec; net/minecraft/util/valueproviders/IntProvider/codec (II)Lcom/mojang/serialization/Codec; +MD: net/minecraft/util/valueproviders/IntProvider/m_146548_ (Lnet/minecraft/util/valueproviders/IntProvider;)Lnet/minecraft/util/valueproviders/IntProvider; net/minecraft/util/valueproviders/IntProvider/lambda$static$0 (Lnet/minecraft/util/valueproviders/IntProvider;)Lnet/minecraft/util/valueproviders/IntProvider; +MD: net/minecraft/util/valueproviders/IntProvider/m_214085_ (Lnet/minecraft/util/RandomSource;)I net/minecraft/util/valueproviders/IntProvider/sample (Lnet/minecraft/util/RandomSource;)I +MD: net/minecraft/util/valueproviders/IntProvider/m_272161_ (IILcom/mojang/serialization/Codec;)Lcom/mojang/serialization/Codec; net/minecraft/util/valueproviders/IntProvider/codec (IILcom/mojang/serialization/Codec;)Lcom/mojang/serialization/Codec; +MD: net/minecraft/util/valueproviders/IntProvider/m_274174_ (ILnet/minecraft/util/valueproviders/IntProvider;)Ljava/lang/String; net/minecraft/util/valueproviders/IntProvider/lambda$codec$3 (ILnet/minecraft/util/valueproviders/IntProvider;)Ljava/lang/String; +MD: net/minecraft/util/valueproviders/IntProvider/m_274175_ (ILnet/minecraft/util/valueproviders/IntProvider;)Ljava/lang/String; net/minecraft/util/valueproviders/IntProvider/lambda$codec$4 (ILnet/minecraft/util/valueproviders/IntProvider;)Ljava/lang/String; +MD: net/minecraft/util/valueproviders/IntProvider/m_274176_ (IILnet/minecraft/util/valueproviders/IntProvider;)Lcom/mojang/serialization/DataResult; net/minecraft/util/valueproviders/IntProvider/lambda$codec$5 (IILnet/minecraft/util/valueproviders/IntProvider;)Lcom/mojang/serialization/DataResult; +MD: net/minecraft/util/valueproviders/IntProviderType/ ()V net/minecraft/util/valueproviders/IntProviderType/ ()V +MD: net/minecraft/util/valueproviders/IntProviderType/m_146555_ (Lcom/mojang/serialization/Codec;)Lcom/mojang/serialization/Codec; net/minecraft/util/valueproviders/IntProviderType/lambda$register$0 (Lcom/mojang/serialization/Codec;)Lcom/mojang/serialization/Codec; +MD: net/minecraft/util/valueproviders/IntProviderType/m_146557_ (Ljava/lang/String;Lcom/mojang/serialization/Codec;)Lnet/minecraft/util/valueproviders/IntProviderType; net/minecraft/util/valueproviders/IntProviderType/register (Ljava/lang/String;Lcom/mojang/serialization/Codec;)Lnet/minecraft/util/valueproviders/IntProviderType; +MD: net/minecraft/util/valueproviders/IntProviderType/m_146560_ ()Lcom/mojang/serialization/Codec; net/minecraft/util/valueproviders/IntProviderType/codec ()Lcom/mojang/serialization/Codec; +MD: net/minecraft/util/valueproviders/MultipliedFloats/ ([Lnet/minecraft/util/valueproviders/SampledFloat;)V net/minecraft/util/valueproviders/MultipliedFloats/ ([Lnet/minecraft/util/valueproviders/SampledFloat;)V +MD: net/minecraft/util/valueproviders/MultipliedFloats/m_214084_ (Lnet/minecraft/util/RandomSource;)F net/minecraft/util/valueproviders/MultipliedFloats/sample (Lnet/minecraft/util/RandomSource;)F +MD: net/minecraft/util/valueproviders/MultipliedFloats/toString ()Ljava/lang/String; net/minecraft/util/valueproviders/MultipliedFloats/toString ()Ljava/lang/String; +MD: net/minecraft/util/valueproviders/SampledFloat/m_214084_ (Lnet/minecraft/util/RandomSource;)F net/minecraft/util/valueproviders/SampledFloat/sample (Lnet/minecraft/util/RandomSource;)F +MD: net/minecraft/util/valueproviders/TrapezoidFloat/ ()V net/minecraft/util/valueproviders/TrapezoidFloat/ ()V +MD: net/minecraft/util/valueproviders/TrapezoidFloat/ (FFF)V net/minecraft/util/valueproviders/TrapezoidFloat/ (FFF)V +MD: net/minecraft/util/valueproviders/TrapezoidFloat/m_141961_ ()Lnet/minecraft/util/valueproviders/FloatProviderType; net/minecraft/util/valueproviders/TrapezoidFloat/getType ()Lnet/minecraft/util/valueproviders/FloatProviderType; +MD: net/minecraft/util/valueproviders/TrapezoidFloat/m_142734_ ()F net/minecraft/util/valueproviders/TrapezoidFloat/getMaxValue ()F +MD: net/minecraft/util/valueproviders/TrapezoidFloat/m_142735_ ()F net/minecraft/util/valueproviders/TrapezoidFloat/getMinValue ()F +MD: net/minecraft/util/valueproviders/TrapezoidFloat/m_146571_ (FFF)Lnet/minecraft/util/valueproviders/TrapezoidFloat; net/minecraft/util/valueproviders/TrapezoidFloat/of (FFF)Lnet/minecraft/util/valueproviders/TrapezoidFloat; +MD: net/minecraft/util/valueproviders/TrapezoidFloat/m_146577_ (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/util/valueproviders/TrapezoidFloat/lambda$static$3 (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/util/valueproviders/TrapezoidFloat/m_146582_ (Lnet/minecraft/util/valueproviders/TrapezoidFloat;)Ljava/lang/Float; net/minecraft/util/valueproviders/TrapezoidFloat/lambda$static$2 (Lnet/minecraft/util/valueproviders/TrapezoidFloat;)Ljava/lang/Float; +MD: net/minecraft/util/valueproviders/TrapezoidFloat/m_146585_ (Lnet/minecraft/util/valueproviders/TrapezoidFloat;)Ljava/lang/Float; net/minecraft/util/valueproviders/TrapezoidFloat/lambda$static$1 (Lnet/minecraft/util/valueproviders/TrapezoidFloat;)Ljava/lang/Float; +MD: net/minecraft/util/valueproviders/TrapezoidFloat/m_146587_ (Lnet/minecraft/util/valueproviders/TrapezoidFloat;)Ljava/lang/Float; net/minecraft/util/valueproviders/TrapezoidFloat/lambda$static$0 (Lnet/minecraft/util/valueproviders/TrapezoidFloat;)Ljava/lang/Float; +MD: net/minecraft/util/valueproviders/TrapezoidFloat/m_214084_ (Lnet/minecraft/util/RandomSource;)F net/minecraft/util/valueproviders/TrapezoidFloat/sample (Lnet/minecraft/util/RandomSource;)F +MD: net/minecraft/util/valueproviders/TrapezoidFloat/m_274177_ (Lnet/minecraft/util/valueproviders/TrapezoidFloat;)Ljava/lang/String; net/minecraft/util/valueproviders/TrapezoidFloat/lambda$static$4 (Lnet/minecraft/util/valueproviders/TrapezoidFloat;)Ljava/lang/String; +MD: net/minecraft/util/valueproviders/TrapezoidFloat/m_274178_ (Lnet/minecraft/util/valueproviders/TrapezoidFloat;)Lcom/mojang/serialization/DataResult; net/minecraft/util/valueproviders/TrapezoidFloat/lambda$static$6 (Lnet/minecraft/util/valueproviders/TrapezoidFloat;)Lcom/mojang/serialization/DataResult; +MD: net/minecraft/util/valueproviders/TrapezoidFloat/m_274179_ (Lnet/minecraft/util/valueproviders/TrapezoidFloat;)Ljava/lang/String; net/minecraft/util/valueproviders/TrapezoidFloat/lambda$static$5 (Lnet/minecraft/util/valueproviders/TrapezoidFloat;)Ljava/lang/String; +MD: net/minecraft/util/valueproviders/TrapezoidFloat/toString ()Ljava/lang/String; net/minecraft/util/valueproviders/TrapezoidFloat/toString ()Ljava/lang/String; +MD: net/minecraft/util/valueproviders/UniformFloat/ ()V net/minecraft/util/valueproviders/UniformFloat/ ()V +MD: net/minecraft/util/valueproviders/UniformFloat/ (FF)V net/minecraft/util/valueproviders/UniformFloat/ (FF)V +MD: net/minecraft/util/valueproviders/UniformFloat/m_141961_ ()Lnet/minecraft/util/valueproviders/FloatProviderType; net/minecraft/util/valueproviders/UniformFloat/getType ()Lnet/minecraft/util/valueproviders/FloatProviderType; +MD: net/minecraft/util/valueproviders/UniformFloat/m_142734_ ()F net/minecraft/util/valueproviders/UniformFloat/getMaxValue ()F +MD: net/minecraft/util/valueproviders/UniformFloat/m_142735_ ()F net/minecraft/util/valueproviders/UniformFloat/getMinValue ()F +MD: net/minecraft/util/valueproviders/UniformFloat/m_146600_ (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/util/valueproviders/UniformFloat/lambda$static$2 (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/util/valueproviders/UniformFloat/m_146605_ (FF)Lnet/minecraft/util/valueproviders/UniformFloat; net/minecraft/util/valueproviders/UniformFloat/of (FF)Lnet/minecraft/util/valueproviders/UniformFloat; +MD: net/minecraft/util/valueproviders/UniformFloat/m_146608_ (Lnet/minecraft/util/valueproviders/UniformFloat;)Ljava/lang/Float; net/minecraft/util/valueproviders/UniformFloat/lambda$static$1 (Lnet/minecraft/util/valueproviders/UniformFloat;)Ljava/lang/Float; +MD: net/minecraft/util/valueproviders/UniformFloat/m_146611_ (Lnet/minecraft/util/valueproviders/UniformFloat;)Ljava/lang/Float; net/minecraft/util/valueproviders/UniformFloat/lambda$static$0 (Lnet/minecraft/util/valueproviders/UniformFloat;)Ljava/lang/Float; +MD: net/minecraft/util/valueproviders/UniformFloat/m_214084_ (Lnet/minecraft/util/RandomSource;)F net/minecraft/util/valueproviders/UniformFloat/sample (Lnet/minecraft/util/RandomSource;)F +MD: net/minecraft/util/valueproviders/UniformFloat/m_274180_ (Lnet/minecraft/util/valueproviders/UniformFloat;)Ljava/lang/String; net/minecraft/util/valueproviders/UniformFloat/lambda$static$3 (Lnet/minecraft/util/valueproviders/UniformFloat;)Ljava/lang/String; +MD: net/minecraft/util/valueproviders/UniformFloat/m_274181_ (Lnet/minecraft/util/valueproviders/UniformFloat;)Lcom/mojang/serialization/DataResult; net/minecraft/util/valueproviders/UniformFloat/lambda$static$4 (Lnet/minecraft/util/valueproviders/UniformFloat;)Lcom/mojang/serialization/DataResult; +MD: net/minecraft/util/valueproviders/UniformFloat/toString ()Ljava/lang/String; net/minecraft/util/valueproviders/UniformFloat/toString ()Ljava/lang/String; +MD: net/minecraft/util/valueproviders/UniformInt/ ()V net/minecraft/util/valueproviders/UniformInt/ ()V +MD: net/minecraft/util/valueproviders/UniformInt/ (II)V net/minecraft/util/valueproviders/UniformInt/ (II)V +MD: net/minecraft/util/valueproviders/UniformInt/m_141948_ ()Lnet/minecraft/util/valueproviders/IntProviderType; net/minecraft/util/valueproviders/UniformInt/getType ()Lnet/minecraft/util/valueproviders/IntProviderType; +MD: net/minecraft/util/valueproviders/UniformInt/m_142737_ ()I net/minecraft/util/valueproviders/UniformInt/getMaxValue ()I +MD: net/minecraft/util/valueproviders/UniformInt/m_142739_ ()I net/minecraft/util/valueproviders/UniformInt/getMinValue ()I +MD: net/minecraft/util/valueproviders/UniformInt/m_146622_ (II)Lnet/minecraft/util/valueproviders/UniformInt; net/minecraft/util/valueproviders/UniformInt/of (II)Lnet/minecraft/util/valueproviders/UniformInt; +MD: net/minecraft/util/valueproviders/UniformInt/m_146627_ (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/util/valueproviders/UniformInt/lambda$static$2 (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/util/valueproviders/UniformInt/m_146632_ (Lnet/minecraft/util/valueproviders/UniformInt;)Ljava/lang/Integer; net/minecraft/util/valueproviders/UniformInt/lambda$static$1 (Lnet/minecraft/util/valueproviders/UniformInt;)Ljava/lang/Integer; +MD: net/minecraft/util/valueproviders/UniformInt/m_146635_ (Lnet/minecraft/util/valueproviders/UniformInt;)Ljava/lang/Integer; net/minecraft/util/valueproviders/UniformInt/lambda$static$0 (Lnet/minecraft/util/valueproviders/UniformInt;)Ljava/lang/Integer; +MD: net/minecraft/util/valueproviders/UniformInt/m_214085_ (Lnet/minecraft/util/RandomSource;)I net/minecraft/util/valueproviders/UniformInt/sample (Lnet/minecraft/util/RandomSource;)I +MD: net/minecraft/util/valueproviders/UniformInt/m_274182_ (Lnet/minecraft/util/valueproviders/UniformInt;)Lcom/mojang/serialization/DataResult; net/minecraft/util/valueproviders/UniformInt/lambda$static$4 (Lnet/minecraft/util/valueproviders/UniformInt;)Lcom/mojang/serialization/DataResult; +MD: net/minecraft/util/valueproviders/UniformInt/m_274183_ (Lnet/minecraft/util/valueproviders/UniformInt;)Ljava/lang/String; net/minecraft/util/valueproviders/UniformInt/lambda$static$3 (Lnet/minecraft/util/valueproviders/UniformInt;)Ljava/lang/String; +MD: net/minecraft/util/valueproviders/UniformInt/toString ()Ljava/lang/String; net/minecraft/util/valueproviders/UniformInt/toString ()Ljava/lang/String; +MD: net/minecraft/util/valueproviders/WeightedListInt/ ()V net/minecraft/util/valueproviders/WeightedListInt/ ()V +MD: net/minecraft/util/valueproviders/WeightedListInt/ (Lnet/minecraft/util/random/SimpleWeightedRandomList;)V net/minecraft/util/valueproviders/WeightedListInt/ (Lnet/minecraft/util/random/SimpleWeightedRandomList;)V +MD: net/minecraft/util/valueproviders/WeightedListInt/m_141948_ ()Lnet/minecraft/util/valueproviders/IntProviderType; net/minecraft/util/valueproviders/WeightedListInt/getType ()Lnet/minecraft/util/valueproviders/IntProviderType; +MD: net/minecraft/util/valueproviders/WeightedListInt/m_142737_ ()I net/minecraft/util/valueproviders/WeightedListInt/getMaxValue ()I +MD: net/minecraft/util/valueproviders/WeightedListInt/m_142739_ ()I net/minecraft/util/valueproviders/WeightedListInt/getMinValue ()I +MD: net/minecraft/util/valueproviders/WeightedListInt/m_185917_ (Lnet/minecraft/util/valueproviders/WeightedListInt;)Lnet/minecraft/util/random/SimpleWeightedRandomList; net/minecraft/util/valueproviders/WeightedListInt/lambda$static$0 (Lnet/minecraft/util/valueproviders/WeightedListInt;)Lnet/minecraft/util/random/SimpleWeightedRandomList; +MD: net/minecraft/util/valueproviders/WeightedListInt/m_185919_ (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/util/valueproviders/WeightedListInt/lambda$static$1 (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/util/valueproviders/WeightedListInt/m_214085_ (Lnet/minecraft/util/RandomSource;)I net/minecraft/util/valueproviders/WeightedListInt/sample (Lnet/minecraft/util/RandomSource;)I +MD: net/minecraft/util/worldupdate/WorldUpgrader/ ()V net/minecraft/util/worldupdate/WorldUpgrader/ ()V +MD: net/minecraft/util/worldupdate/WorldUpgrader/ (Lnet/minecraft/world/level/storage/LevelStorageSource$LevelStorageAccess;Lcom/mojang/datafixers/DataFixer;Lnet/minecraft/core/Registry;Z)V net/minecraft/util/worldupdate/WorldUpgrader/ (Lnet/minecraft/world/level/storage/LevelStorageSource$LevelStorageAccess;Lcom/mojang/datafixers/DataFixer;Lnet/minecraft/core/Registry;Z)V +MD: net/minecraft/util/worldupdate/WorldUpgrader/m_18820_ ()V net/minecraft/util/worldupdate/WorldUpgrader/cancel ()V +MD: net/minecraft/util/worldupdate/WorldUpgrader/m_18821_ (Ljava/io/File;Ljava/lang/String;)Z net/minecraft/util/worldupdate/WorldUpgrader/lambda$getAllChunkPos$2 (Ljava/io/File;Ljava/lang/String;)Z +MD: net/minecraft/util/worldupdate/WorldUpgrader/m_18824_ (Ljava/lang/Thread;Ljava/lang/Throwable;)V net/minecraft/util/worldupdate/WorldUpgrader/lambda$new$0 (Ljava/lang/Thread;Ljava/lang/Throwable;)V +MD: net/minecraft/util/worldupdate/WorldUpgrader/m_18827_ (Lnet/minecraft/resources/ResourceKey;)F net/minecraft/util/worldupdate/WorldUpgrader/dimensionProgress (Lnet/minecraft/resources/ResourceKey;)F +MD: net/minecraft/util/worldupdate/WorldUpgrader/m_18829_ ()Z net/minecraft/util/worldupdate/WorldUpgrader/isFinished ()Z +MD: net/minecraft/util/worldupdate/WorldUpgrader/m_18830_ (Lnet/minecraft/resources/ResourceKey;)Ljava/util/List; net/minecraft/util/worldupdate/WorldUpgrader/getAllChunkPos (Lnet/minecraft/resources/ResourceKey;)Ljava/util/List; +MD: net/minecraft/util/worldupdate/WorldUpgrader/m_18833_ ()F net/minecraft/util/worldupdate/WorldUpgrader/getProgress ()F +MD: net/minecraft/util/worldupdate/WorldUpgrader/m_18834_ ()I net/minecraft/util/worldupdate/WorldUpgrader/getTotalChunks ()I +MD: net/minecraft/util/worldupdate/WorldUpgrader/m_18835_ ()I net/minecraft/util/worldupdate/WorldUpgrader/getConverted ()I +MD: net/minecraft/util/worldupdate/WorldUpgrader/m_18836_ ()I net/minecraft/util/worldupdate/WorldUpgrader/getSkipped ()I +MD: net/minecraft/util/worldupdate/WorldUpgrader/m_18837_ ()Lnet/minecraft/network/chat/Component; net/minecraft/util/worldupdate/WorldUpgrader/getStatus ()Lnet/minecraft/network/chat/Component; +MD: net/minecraft/util/worldupdate/WorldUpgrader/m_18838_ ()V net/minecraft/util/worldupdate/WorldUpgrader/work ()V +MD: net/minecraft/util/worldupdate/WorldUpgrader/m_18839_ ()Lnet/minecraft/world/level/storage/DimensionDataStorage; net/minecraft/util/worldupdate/WorldUpgrader/lambda$work$1 ()Lnet/minecraft/world/level/storage/DimensionDataStorage; +MD: net/minecraft/util/worldupdate/WorldUpgrader/m_246941_ ()Ljava/util/Set; net/minecraft/util/worldupdate/WorldUpgrader/levels ()Ljava/util/Set; +MD: net/minecraft/world/BossEvent/ (Ljava/util/UUID;Lnet/minecraft/network/chat/Component;Lnet/minecraft/world/BossEvent$BossBarColor;Lnet/minecraft/world/BossEvent$BossBarOverlay;)V net/minecraft/world/BossEvent/ (Ljava/util/UUID;Lnet/minecraft/network/chat/Component;Lnet/minecraft/world/BossEvent$BossBarColor;Lnet/minecraft/world/BossEvent$BossBarOverlay;)V +MD: net/minecraft/world/BossEvent/m_142711_ (F)V net/minecraft/world/BossEvent/setProgress (F)V +MD: net/minecraft/world/BossEvent/m_142717_ ()F net/minecraft/world/BossEvent/getProgress ()F +MD: net/minecraft/world/BossEvent/m_18860_ ()Ljava/util/UUID; net/minecraft/world/BossEvent/getId ()Ljava/util/UUID; +MD: net/minecraft/world/BossEvent/m_18861_ ()Lnet/minecraft/network/chat/Component; net/minecraft/world/BossEvent/getName ()Lnet/minecraft/network/chat/Component; +MD: net/minecraft/world/BossEvent/m_18862_ ()Lnet/minecraft/world/BossEvent$BossBarColor; net/minecraft/world/BossEvent/getColor ()Lnet/minecraft/world/BossEvent$BossBarColor; +MD: net/minecraft/world/BossEvent/m_18863_ ()Lnet/minecraft/world/BossEvent$BossBarOverlay; net/minecraft/world/BossEvent/getOverlay ()Lnet/minecraft/world/BossEvent$BossBarOverlay; +MD: net/minecraft/world/BossEvent/m_18864_ ()Z net/minecraft/world/BossEvent/shouldDarkenScreen ()Z +MD: net/minecraft/world/BossEvent/m_18865_ ()Z net/minecraft/world/BossEvent/shouldPlayBossMusic ()Z +MD: net/minecraft/world/BossEvent/m_18866_ ()Z net/minecraft/world/BossEvent/shouldCreateWorldFog ()Z +MD: net/minecraft/world/BossEvent/m_5648_ (Lnet/minecraft/world/BossEvent$BossBarOverlay;)V net/minecraft/world/BossEvent/setOverlay (Lnet/minecraft/world/BossEvent$BossBarOverlay;)V +MD: net/minecraft/world/BossEvent/m_6451_ (Lnet/minecraft/world/BossEvent$BossBarColor;)V net/minecraft/world/BossEvent/setColor (Lnet/minecraft/world/BossEvent$BossBarColor;)V +MD: net/minecraft/world/BossEvent/m_6456_ (Lnet/minecraft/network/chat/Component;)V net/minecraft/world/BossEvent/setName (Lnet/minecraft/network/chat/Component;)V +MD: net/minecraft/world/BossEvent/m_7003_ (Z)Lnet/minecraft/world/BossEvent; net/minecraft/world/BossEvent/setDarkenScreen (Z)Lnet/minecraft/world/BossEvent; +MD: net/minecraft/world/BossEvent/m_7005_ (Z)Lnet/minecraft/world/BossEvent; net/minecraft/world/BossEvent/setPlayBossMusic (Z)Lnet/minecraft/world/BossEvent; +MD: net/minecraft/world/BossEvent/m_7006_ (Z)Lnet/minecraft/world/BossEvent; net/minecraft/world/BossEvent/setCreateWorldFog (Z)Lnet/minecraft/world/BossEvent; +MD: net/minecraft/world/BossEvent$BossBarColor/ ()V net/minecraft/world/BossEvent$BossBarColor/ ()V +MD: net/minecraft/world/BossEvent$BossBarColor/ (Ljava/lang/String;ILjava/lang/String;Lnet/minecraft/ChatFormatting;)V net/minecraft/world/BossEvent$BossBarColor/ (Ljava/lang/String;ILjava/lang/String;Lnet/minecraft/ChatFormatting;)V +MD: net/minecraft/world/BossEvent$BossBarColor/m_146640_ ()[Lnet/minecraft/world/BossEvent$BossBarColor; net/minecraft/world/BossEvent$BossBarColor/$values ()[Lnet/minecraft/world/BossEvent$BossBarColor; +MD: net/minecraft/world/BossEvent$BossBarColor/m_18883_ ()Lnet/minecraft/ChatFormatting; net/minecraft/world/BossEvent$BossBarColor/getFormatting ()Lnet/minecraft/ChatFormatting; +MD: net/minecraft/world/BossEvent$BossBarColor/m_18884_ (Ljava/lang/String;)Lnet/minecraft/world/BossEvent$BossBarColor; net/minecraft/world/BossEvent$BossBarColor/byName (Ljava/lang/String;)Lnet/minecraft/world/BossEvent$BossBarColor; +MD: net/minecraft/world/BossEvent$BossBarColor/m_18886_ ()Ljava/lang/String; net/minecraft/world/BossEvent$BossBarColor/getName ()Ljava/lang/String; +MD: net/minecraft/world/BossEvent$BossBarColor/valueOf (Ljava/lang/String;)Lnet/minecraft/world/BossEvent$BossBarColor; net/minecraft/world/BossEvent$BossBarColor/valueOf (Ljava/lang/String;)Lnet/minecraft/world/BossEvent$BossBarColor; +MD: net/minecraft/world/BossEvent$BossBarColor/values ()[Lnet/minecraft/world/BossEvent$BossBarColor; net/minecraft/world/BossEvent$BossBarColor/values ()[Lnet/minecraft/world/BossEvent$BossBarColor; +MD: net/minecraft/world/BossEvent$BossBarOverlay/ ()V net/minecraft/world/BossEvent$BossBarOverlay/ ()V +MD: net/minecraft/world/BossEvent$BossBarOverlay/ (Ljava/lang/String;ILjava/lang/String;)V net/minecraft/world/BossEvent$BossBarOverlay/ (Ljava/lang/String;ILjava/lang/String;)V +MD: net/minecraft/world/BossEvent$BossBarOverlay/m_146641_ ()[Lnet/minecraft/world/BossEvent$BossBarOverlay; net/minecraft/world/BossEvent$BossBarOverlay/$values ()[Lnet/minecraft/world/BossEvent$BossBarOverlay; +MD: net/minecraft/world/BossEvent$BossBarOverlay/m_18902_ ()Ljava/lang/String; net/minecraft/world/BossEvent$BossBarOverlay/getName ()Ljava/lang/String; +MD: net/minecraft/world/BossEvent$BossBarOverlay/m_18903_ (Ljava/lang/String;)Lnet/minecraft/world/BossEvent$BossBarOverlay; net/minecraft/world/BossEvent$BossBarOverlay/byName (Ljava/lang/String;)Lnet/minecraft/world/BossEvent$BossBarOverlay; +MD: net/minecraft/world/BossEvent$BossBarOverlay/valueOf (Ljava/lang/String;)Lnet/minecraft/world/BossEvent$BossBarOverlay; net/minecraft/world/BossEvent$BossBarOverlay/valueOf (Ljava/lang/String;)Lnet/minecraft/world/BossEvent$BossBarOverlay; +MD: net/minecraft/world/BossEvent$BossBarOverlay/values ()[Lnet/minecraft/world/BossEvent$BossBarOverlay; net/minecraft/world/BossEvent$BossBarOverlay/values ()[Lnet/minecraft/world/BossEvent$BossBarOverlay; +MD: net/minecraft/world/Clearable/m_18908_ (Ljava/lang/Object;)V net/minecraft/world/Clearable/tryClear (Ljava/lang/Object;)V +MD: net/minecraft/world/Clearable/m_6211_ ()V net/minecraft/world/Clearable/clearContent ()V +MD: net/minecraft/world/CompoundContainer/ (Lnet/minecraft/world/Container;Lnet/minecraft/world/Container;)V net/minecraft/world/CompoundContainer/ (Lnet/minecraft/world/Container;Lnet/minecraft/world/Container;)V +MD: net/minecraft/world/CompoundContainer/m_18927_ (Lnet/minecraft/world/Container;)Z net/minecraft/world/CompoundContainer/contains (Lnet/minecraft/world/Container;)Z +MD: net/minecraft/world/CompoundContainer/m_5785_ (Lnet/minecraft/world/entity/player/Player;)V net/minecraft/world/CompoundContainer/stopOpen (Lnet/minecraft/world/entity/player/Player;)V +MD: net/minecraft/world/CompoundContainer/m_5856_ (Lnet/minecraft/world/entity/player/Player;)V net/minecraft/world/CompoundContainer/startOpen (Lnet/minecraft/world/entity/player/Player;)V +MD: net/minecraft/world/CompoundContainer/m_6211_ ()V net/minecraft/world/CompoundContainer/clearContent ()V +MD: net/minecraft/world/CompoundContainer/m_6542_ (Lnet/minecraft/world/entity/player/Player;)Z net/minecraft/world/CompoundContainer/stillValid (Lnet/minecraft/world/entity/player/Player;)Z +MD: net/minecraft/world/CompoundContainer/m_6596_ ()V net/minecraft/world/CompoundContainer/setChanged ()V +MD: net/minecraft/world/CompoundContainer/m_6643_ ()I net/minecraft/world/CompoundContainer/getContainerSize ()I +MD: net/minecraft/world/CompoundContainer/m_6836_ (ILnet/minecraft/world/item/ItemStack;)V net/minecraft/world/CompoundContainer/setItem (ILnet/minecraft/world/item/ItemStack;)V +MD: net/minecraft/world/CompoundContainer/m_6893_ ()I net/minecraft/world/CompoundContainer/getMaxStackSize ()I +MD: net/minecraft/world/CompoundContainer/m_7013_ (ILnet/minecraft/world/item/ItemStack;)Z net/minecraft/world/CompoundContainer/canPlaceItem (ILnet/minecraft/world/item/ItemStack;)Z +MD: net/minecraft/world/CompoundContainer/m_7407_ (II)Lnet/minecraft/world/item/ItemStack; net/minecraft/world/CompoundContainer/removeItem (II)Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/CompoundContainer/m_7983_ ()Z net/minecraft/world/CompoundContainer/isEmpty ()Z +MD: net/minecraft/world/CompoundContainer/m_8016_ (I)Lnet/minecraft/world/item/ItemStack; net/minecraft/world/CompoundContainer/removeItemNoUpdate (I)Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/CompoundContainer/m_8020_ (I)Lnet/minecraft/world/item/ItemStack; net/minecraft/world/CompoundContainer/getItem (I)Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/Container/m_18947_ (Lnet/minecraft/world/item/Item;)I net/minecraft/world/Container/countItem (Lnet/minecraft/world/item/Item;)I +MD: net/minecraft/world/Container/m_18949_ (Ljava/util/Set;)Z net/minecraft/world/Container/hasAnyOf (Ljava/util/Set;)Z +MD: net/minecraft/world/Container/m_216871_ (Ljava/util/Set;Lnet/minecraft/world/item/ItemStack;)Z net/minecraft/world/Container/lambda$hasAnyOf$0 (Ljava/util/Set;Lnet/minecraft/world/item/ItemStack;)Z +MD: net/minecraft/world/Container/m_216874_ (Ljava/util/function/Predicate;)Z net/minecraft/world/Container/hasAnyMatching (Ljava/util/function/Predicate;)Z +MD: net/minecraft/world/Container/m_271806_ (Lnet/minecraft/world/level/block/entity/BlockEntity;Lnet/minecraft/world/entity/player/Player;I)Z net/minecraft/world/Container/stillValidBlockEntity (Lnet/minecraft/world/level/block/entity/BlockEntity;Lnet/minecraft/world/entity/player/Player;I)Z +MD: net/minecraft/world/Container/m_271862_ (Lnet/minecraft/world/Container;ILnet/minecraft/world/item/ItemStack;)Z net/minecraft/world/Container/canTakeItem (Lnet/minecraft/world/Container;ILnet/minecraft/world/item/ItemStack;)Z +MD: net/minecraft/world/Container/m_272074_ (Lnet/minecraft/world/level/block/entity/BlockEntity;Lnet/minecraft/world/entity/player/Player;)Z net/minecraft/world/Container/stillValidBlockEntity (Lnet/minecraft/world/level/block/entity/BlockEntity;Lnet/minecraft/world/entity/player/Player;)Z +MD: net/minecraft/world/Container/m_5785_ (Lnet/minecraft/world/entity/player/Player;)V net/minecraft/world/Container/stopOpen (Lnet/minecraft/world/entity/player/Player;)V +MD: net/minecraft/world/Container/m_5856_ (Lnet/minecraft/world/entity/player/Player;)V net/minecraft/world/Container/startOpen (Lnet/minecraft/world/entity/player/Player;)V +MD: net/minecraft/world/Container/m_6542_ (Lnet/minecraft/world/entity/player/Player;)Z net/minecraft/world/Container/stillValid (Lnet/minecraft/world/entity/player/Player;)Z +MD: net/minecraft/world/Container/m_6596_ ()V net/minecraft/world/Container/setChanged ()V +MD: net/minecraft/world/Container/m_6643_ ()I net/minecraft/world/Container/getContainerSize ()I +MD: net/minecraft/world/Container/m_6836_ (ILnet/minecraft/world/item/ItemStack;)V net/minecraft/world/Container/setItem (ILnet/minecraft/world/item/ItemStack;)V +MD: net/minecraft/world/Container/m_6893_ ()I net/minecraft/world/Container/getMaxStackSize ()I +MD: net/minecraft/world/Container/m_7013_ (ILnet/minecraft/world/item/ItemStack;)Z net/minecraft/world/Container/canPlaceItem (ILnet/minecraft/world/item/ItemStack;)Z +MD: net/minecraft/world/Container/m_7407_ (II)Lnet/minecraft/world/item/ItemStack; net/minecraft/world/Container/removeItem (II)Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/Container/m_7983_ ()Z net/minecraft/world/Container/isEmpty ()Z +MD: net/minecraft/world/Container/m_8016_ (I)Lnet/minecraft/world/item/ItemStack; net/minecraft/world/Container/removeItemNoUpdate (I)Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/Container/m_8020_ (I)Lnet/minecraft/world/item/ItemStack; net/minecraft/world/Container/getItem (I)Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/ContainerHelper/ ()V net/minecraft/world/ContainerHelper/ ()V +MD: net/minecraft/world/ContainerHelper/m_18956_ (Lnet/minecraft/world/Container;Ljava/util/function/Predicate;IZ)I net/minecraft/world/ContainerHelper/clearOrCountMatchingItems (Lnet/minecraft/world/Container;Ljava/util/function/Predicate;IZ)I +MD: net/minecraft/world/ContainerHelper/m_18961_ (Lnet/minecraft/world/item/ItemStack;Ljava/util/function/Predicate;IZ)I net/minecraft/world/ContainerHelper/clearOrCountMatchingItems (Lnet/minecraft/world/item/ItemStack;Ljava/util/function/Predicate;IZ)I +MD: net/minecraft/world/ContainerHelper/m_18966_ (Ljava/util/List;I)Lnet/minecraft/world/item/ItemStack; net/minecraft/world/ContainerHelper/takeItem (Ljava/util/List;I)Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/ContainerHelper/m_18969_ (Ljava/util/List;II)Lnet/minecraft/world/item/ItemStack; net/minecraft/world/ContainerHelper/removeItem (Ljava/util/List;II)Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/ContainerHelper/m_18973_ (Lnet/minecraft/nbt/CompoundTag;Lnet/minecraft/core/NonNullList;)Lnet/minecraft/nbt/CompoundTag; net/minecraft/world/ContainerHelper/saveAllItems (Lnet/minecraft/nbt/CompoundTag;Lnet/minecraft/core/NonNullList;)Lnet/minecraft/nbt/CompoundTag; +MD: net/minecraft/world/ContainerHelper/m_18976_ (Lnet/minecraft/nbt/CompoundTag;Lnet/minecraft/core/NonNullList;Z)Lnet/minecraft/nbt/CompoundTag; net/minecraft/world/ContainerHelper/saveAllItems (Lnet/minecraft/nbt/CompoundTag;Lnet/minecraft/core/NonNullList;Z)Lnet/minecraft/nbt/CompoundTag; +MD: net/minecraft/world/ContainerHelper/m_18980_ (Lnet/minecraft/nbt/CompoundTag;Lnet/minecraft/core/NonNullList;)V net/minecraft/world/ContainerHelper/loadAllItems (Lnet/minecraft/nbt/CompoundTag;Lnet/minecraft/core/NonNullList;)V +MD: net/minecraft/world/ContainerListener/m_5757_ (Lnet/minecraft/world/Container;)V net/minecraft/world/ContainerListener/containerChanged (Lnet/minecraft/world/Container;)V +MD: net/minecraft/world/Containers/ ()V net/minecraft/world/Containers/ ()V +MD: net/minecraft/world/Containers/m_18986_ (Lnet/minecraft/world/level/Level;DDDLnet/minecraft/world/Container;)V net/minecraft/world/Containers/dropContents (Lnet/minecraft/world/level/Level;DDDLnet/minecraft/world/Container;)V +MD: net/minecraft/world/Containers/m_18992_ (Lnet/minecraft/world/level/Level;DDDLnet/minecraft/world/item/ItemStack;)V net/minecraft/world/Containers/dropItemStack (Lnet/minecraft/world/level/Level;DDDLnet/minecraft/world/item/ItemStack;)V +MD: net/minecraft/world/Containers/m_18998_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/entity/Entity;Lnet/minecraft/world/Container;)V net/minecraft/world/Containers/dropContents (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/entity/Entity;Lnet/minecraft/world/Container;)V +MD: net/minecraft/world/Containers/m_19002_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/Container;)V net/minecraft/world/Containers/dropContents (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/Container;)V +MD: net/minecraft/world/Containers/m_19006_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/item/ItemStack;)V net/minecraft/world/Containers/lambda$dropContents$0 (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/item/ItemStack;)V +MD: net/minecraft/world/Containers/m_19010_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/NonNullList;)V net/minecraft/world/Containers/dropContents (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/NonNullList;)V +MD: net/minecraft/world/Difficulty/ ()V net/minecraft/world/Difficulty/ ()V +MD: net/minecraft/world/Difficulty/ (Ljava/lang/String;IILjava/lang/String;)V net/minecraft/world/Difficulty/ (Ljava/lang/String;IILjava/lang/String;)V +MD: net/minecraft/world/Difficulty/m_146645_ ()[Lnet/minecraft/world/Difficulty; net/minecraft/world/Difficulty/$values ()[Lnet/minecraft/world/Difficulty; +MD: net/minecraft/world/Difficulty/m_19028_ ()I net/minecraft/world/Difficulty/getId ()I +MD: net/minecraft/world/Difficulty/m_19029_ (I)Lnet/minecraft/world/Difficulty; net/minecraft/world/Difficulty/byId (I)Lnet/minecraft/world/Difficulty; +MD: net/minecraft/world/Difficulty/m_19031_ (Ljava/lang/String;)Lnet/minecraft/world/Difficulty; net/minecraft/world/Difficulty/byName (Ljava/lang/String;)Lnet/minecraft/world/Difficulty; +MD: net/minecraft/world/Difficulty/m_19033_ ()Lnet/minecraft/network/chat/Component; net/minecraft/world/Difficulty/getDisplayName ()Lnet/minecraft/network/chat/Component; +MD: net/minecraft/world/Difficulty/m_19036_ ()Ljava/lang/String; net/minecraft/world/Difficulty/getKey ()Ljava/lang/String; +MD: net/minecraft/world/Difficulty/m_267622_ ()Lnet/minecraft/network/chat/Component; net/minecraft/world/Difficulty/getInfo ()Lnet/minecraft/network/chat/Component; +MD: net/minecraft/world/Difficulty/m_7912_ ()Ljava/lang/String; net/minecraft/world/Difficulty/getSerializedName ()Ljava/lang/String; +MD: net/minecraft/world/Difficulty/valueOf (Ljava/lang/String;)Lnet/minecraft/world/Difficulty; net/minecraft/world/Difficulty/valueOf (Ljava/lang/String;)Lnet/minecraft/world/Difficulty; +MD: net/minecraft/world/Difficulty/values ()[Lnet/minecraft/world/Difficulty; net/minecraft/world/Difficulty/values ()[Lnet/minecraft/world/Difficulty; +MD: net/minecraft/world/DifficultyInstance/ (Lnet/minecraft/world/Difficulty;JJF)V net/minecraft/world/DifficultyInstance/ (Lnet/minecraft/world/Difficulty;JJF)V +MD: net/minecraft/world/DifficultyInstance/m_146649_ ()Z net/minecraft/world/DifficultyInstance/isHard ()Z +MD: net/minecraft/world/DifficultyInstance/m_19048_ ()Lnet/minecraft/world/Difficulty; net/minecraft/world/DifficultyInstance/getDifficulty ()Lnet/minecraft/world/Difficulty; +MD: net/minecraft/world/DifficultyInstance/m_19049_ (F)Z net/minecraft/world/DifficultyInstance/isHarderThan (F)Z +MD: net/minecraft/world/DifficultyInstance/m_19051_ (Lnet/minecraft/world/Difficulty;JJF)F net/minecraft/world/DifficultyInstance/calculateDifficulty (Lnet/minecraft/world/Difficulty;JJF)F +MD: net/minecraft/world/DifficultyInstance/m_19056_ ()F net/minecraft/world/DifficultyInstance/getEffectiveDifficulty ()F +MD: net/minecraft/world/DifficultyInstance/m_19057_ ()F net/minecraft/world/DifficultyInstance/getSpecialMultiplier ()F +MD: net/minecraft/world/InteractionHand/ ()V net/minecraft/world/InteractionHand/ ()V +MD: net/minecraft/world/InteractionHand/ (Ljava/lang/String;I)V net/minecraft/world/InteractionHand/ (Ljava/lang/String;I)V +MD: net/minecraft/world/InteractionHand/m_146650_ ()[Lnet/minecraft/world/InteractionHand; net/minecraft/world/InteractionHand/$values ()[Lnet/minecraft/world/InteractionHand; +MD: net/minecraft/world/InteractionHand/valueOf (Ljava/lang/String;)Lnet/minecraft/world/InteractionHand; net/minecraft/world/InteractionHand/valueOf (Ljava/lang/String;)Lnet/minecraft/world/InteractionHand; +MD: net/minecraft/world/InteractionHand/values ()[Lnet/minecraft/world/InteractionHand; net/minecraft/world/InteractionHand/values ()[Lnet/minecraft/world/InteractionHand; +MD: net/minecraft/world/InteractionResult/ ()V net/minecraft/world/InteractionResult/ ()V +MD: net/minecraft/world/InteractionResult/ (Ljava/lang/String;I)V net/minecraft/world/InteractionResult/ (Ljava/lang/String;I)V +MD: net/minecraft/world/InteractionResult/m_146666_ ()Z net/minecraft/world/InteractionResult/shouldAwardStats ()Z +MD: net/minecraft/world/InteractionResult/m_146667_ ()[Lnet/minecraft/world/InteractionResult; net/minecraft/world/InteractionResult/$values ()[Lnet/minecraft/world/InteractionResult; +MD: net/minecraft/world/InteractionResult/m_19077_ ()Z net/minecraft/world/InteractionResult/consumesAction ()Z +MD: net/minecraft/world/InteractionResult/m_19078_ (Z)Lnet/minecraft/world/InteractionResult; net/minecraft/world/InteractionResult/sidedSuccess (Z)Lnet/minecraft/world/InteractionResult; +MD: net/minecraft/world/InteractionResult/m_19080_ ()Z net/minecraft/world/InteractionResult/shouldSwing ()Z +MD: net/minecraft/world/InteractionResult/valueOf (Ljava/lang/String;)Lnet/minecraft/world/InteractionResult; net/minecraft/world/InteractionResult/valueOf (Ljava/lang/String;)Lnet/minecraft/world/InteractionResult; +MD: net/minecraft/world/InteractionResult/values ()[Lnet/minecraft/world/InteractionResult; net/minecraft/world/InteractionResult/values ()[Lnet/minecraft/world/InteractionResult; +MD: net/minecraft/world/InteractionResultHolder/ (Lnet/minecraft/world/InteractionResult;Ljava/lang/Object;)V net/minecraft/world/InteractionResultHolder/ (Lnet/minecraft/world/InteractionResult;Ljava/lang/Object;)V +MD: net/minecraft/world/InteractionResultHolder/m_19089_ ()Lnet/minecraft/world/InteractionResult; net/minecraft/world/InteractionResultHolder/getResult ()Lnet/minecraft/world/InteractionResult; +MD: net/minecraft/world/InteractionResultHolder/m_19090_ (Ljava/lang/Object;)Lnet/minecraft/world/InteractionResultHolder; net/minecraft/world/InteractionResultHolder/success (Ljava/lang/Object;)Lnet/minecraft/world/InteractionResultHolder; +MD: net/minecraft/world/InteractionResultHolder/m_19092_ (Ljava/lang/Object;Z)Lnet/minecraft/world/InteractionResultHolder; net/minecraft/world/InteractionResultHolder/sidedSuccess (Ljava/lang/Object;Z)Lnet/minecraft/world/InteractionResultHolder; +MD: net/minecraft/world/InteractionResultHolder/m_19095_ ()Ljava/lang/Object; net/minecraft/world/InteractionResultHolder/getObject ()Ljava/lang/Object; +MD: net/minecraft/world/InteractionResultHolder/m_19096_ (Ljava/lang/Object;)Lnet/minecraft/world/InteractionResultHolder; net/minecraft/world/InteractionResultHolder/consume (Ljava/lang/Object;)Lnet/minecraft/world/InteractionResultHolder; +MD: net/minecraft/world/InteractionResultHolder/m_19098_ (Ljava/lang/Object;)Lnet/minecraft/world/InteractionResultHolder; net/minecraft/world/InteractionResultHolder/pass (Ljava/lang/Object;)Lnet/minecraft/world/InteractionResultHolder; +MD: net/minecraft/world/InteractionResultHolder/m_19100_ (Ljava/lang/Object;)Lnet/minecraft/world/InteractionResultHolder; net/minecraft/world/InteractionResultHolder/fail (Ljava/lang/Object;)Lnet/minecraft/world/InteractionResultHolder; +MD: net/minecraft/world/LockCode/ ()V net/minecraft/world/LockCode/ ()V +MD: net/minecraft/world/LockCode/ (Ljava/lang/String;)V net/minecraft/world/LockCode/ (Ljava/lang/String;)V +MD: net/minecraft/world/LockCode/m_19107_ (Lnet/minecraft/world/item/ItemStack;)Z net/minecraft/world/LockCode/unlocksWith (Lnet/minecraft/world/item/ItemStack;)Z +MD: net/minecraft/world/LockCode/m_19109_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/LockCode/addToTag (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/LockCode/m_19111_ (Lnet/minecraft/nbt/CompoundTag;)Lnet/minecraft/world/LockCode; net/minecraft/world/LockCode/fromTag (Lnet/minecraft/nbt/CompoundTag;)Lnet/minecraft/world/LockCode; +MD: net/minecraft/world/MenuProvider/m_5446_ ()Lnet/minecraft/network/chat/Component; net/minecraft/world/MenuProvider/getDisplayName ()Lnet/minecraft/network/chat/Component; +MD: net/minecraft/world/Nameable/m_5446_ ()Lnet/minecraft/network/chat/Component; net/minecraft/world/Nameable/getDisplayName ()Lnet/minecraft/network/chat/Component; +MD: net/minecraft/world/Nameable/m_7755_ ()Lnet/minecraft/network/chat/Component; net/minecraft/world/Nameable/getName ()Lnet/minecraft/network/chat/Component; +MD: net/minecraft/world/Nameable/m_7770_ ()Lnet/minecraft/network/chat/Component; net/minecraft/world/Nameable/getCustomName ()Lnet/minecraft/network/chat/Component; +MD: net/minecraft/world/Nameable/m_8077_ ()Z net/minecraft/world/Nameable/hasCustomName ()Z +MD: net/minecraft/world/RandomSequence/ ()V net/minecraft/world/RandomSequence/ ()V +MD: net/minecraft/world/RandomSequence/ (JLnet/minecraft/resources/ResourceLocation;)V net/minecraft/world/RandomSequence/ (JLnet/minecraft/resources/ResourceLocation;)V +MD: net/minecraft/world/RandomSequence/ (Lnet/minecraft/world/level/levelgen/XoroshiroRandomSource;)V net/minecraft/world/RandomSequence/ (Lnet/minecraft/world/level/levelgen/XoroshiroRandomSource;)V +MD: net/minecraft/world/RandomSequence/m_287174_ (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/world/RandomSequence/lambda$static$1 (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/world/RandomSequence/m_287244_ ()Lnet/minecraft/util/RandomSource; net/minecraft/world/RandomSequence/random ()Lnet/minecraft/util/RandomSource; +MD: net/minecraft/world/RandomSequence/m_287250_ (Lnet/minecraft/world/RandomSequence;)Lnet/minecraft/world/level/levelgen/XoroshiroRandomSource; net/minecraft/world/RandomSequence/lambda$static$0 (Lnet/minecraft/world/RandomSequence;)Lnet/minecraft/world/level/levelgen/XoroshiroRandomSource; +MD: net/minecraft/world/RandomSequence/m_288221_ (Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/world/level/levelgen/RandomSupport$Seed128bit; net/minecraft/world/RandomSequence/seedForKey (Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/world/level/levelgen/RandomSupport$Seed128bit; +MD: net/minecraft/world/RandomSequence/m_289190_ (JLnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/world/level/levelgen/XoroshiroRandomSource; net/minecraft/world/RandomSequence/createSequence (JLnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/world/level/levelgen/XoroshiroRandomSource; +MD: net/minecraft/world/RandomSequences/ ()V net/minecraft/world/RandomSequences/ ()V +MD: net/minecraft/world/RandomSequences/ (J)V net/minecraft/world/RandomSequences/ (J)V +MD: net/minecraft/world/RandomSequences/m_287137_ (Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/world/RandomSequence; net/minecraft/world/RandomSequences/lambda$get$0 (Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/world/RandomSequence; +MD: net/minecraft/world/RandomSequences/m_287187_ (JLnet/minecraft/nbt/CompoundTag;)Lnet/minecraft/world/RandomSequences; net/minecraft/world/RandomSequences/load (JLnet/minecraft/nbt/CompoundTag;)Lnet/minecraft/world/RandomSequences; +MD: net/minecraft/world/RandomSequences/m_287279_ (Lnet/minecraft/nbt/CompoundTag;Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/world/RandomSequence;)V net/minecraft/world/RandomSequences/lambda$save$1 (Lnet/minecraft/nbt/CompoundTag;Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/world/RandomSequence;)V +MD: net/minecraft/world/RandomSequences/m_287292_ (Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/util/RandomSource; net/minecraft/world/RandomSequences/get (Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/util/RandomSource; +MD: net/minecraft/world/RandomSequences/m_7176_ (Lnet/minecraft/nbt/CompoundTag;)Lnet/minecraft/nbt/CompoundTag; net/minecraft/world/RandomSequences/save (Lnet/minecraft/nbt/CompoundTag;)Lnet/minecraft/nbt/CompoundTag; +MD: net/minecraft/world/RandomSequences$1/ (Lnet/minecraft/world/RandomSequences;Lnet/minecraft/util/RandomSource;)V net/minecraft/world/RandomSequences$1/ (Lnet/minecraft/world/RandomSequences;Lnet/minecraft/util/RandomSource;)V +MD: net/minecraft/world/RandomSequences$1/m_188499_ ()Z net/minecraft/world/RandomSequences$1/nextBoolean ()Z +MD: net/minecraft/world/RandomSequences$1/m_188500_ ()D net/minecraft/world/RandomSequences$1/nextDouble ()D +MD: net/minecraft/world/RandomSequences$1/m_188501_ ()F net/minecraft/world/RandomSequences$1/nextFloat ()F +MD: net/minecraft/world/RandomSequences$1/m_188502_ ()I net/minecraft/world/RandomSequences$1/nextInt ()I +MD: net/minecraft/world/RandomSequences$1/m_188503_ (I)I net/minecraft/world/RandomSequences$1/nextInt (I)I +MD: net/minecraft/world/RandomSequences$1/m_188505_ ()J net/minecraft/world/RandomSequences$1/nextLong ()J +MD: net/minecraft/world/RandomSequences$1/m_188582_ ()Lnet/minecraft/world/level/levelgen/PositionalRandomFactory; net/minecraft/world/RandomSequences$1/forkPositional ()Lnet/minecraft/world/level/levelgen/PositionalRandomFactory; +MD: net/minecraft/world/RandomSequences$1/m_188583_ ()D net/minecraft/world/RandomSequences$1/nextGaussian ()D +MD: net/minecraft/world/RandomSequences$1/m_188584_ (J)V net/minecraft/world/RandomSequences$1/setSeed (J)V +MD: net/minecraft/world/RandomSequences$1/m_213769_ ()Lnet/minecraft/util/RandomSource; net/minecraft/world/RandomSequences$1/fork ()Lnet/minecraft/util/RandomSource; +MD: net/minecraft/world/SimpleContainer/ (I)V net/minecraft/world/SimpleContainer/ (I)V +MD: net/minecraft/world/SimpleContainer/ ([Lnet/minecraft/world/item/ItemStack;)V net/minecraft/world/SimpleContainer/ ([Lnet/minecraft/world/item/ItemStack;)V +MD: net/minecraft/world/SimpleContainer/m_19164_ (Lnet/minecraft/world/ContainerListener;)V net/minecraft/world/SimpleContainer/addListener (Lnet/minecraft/world/ContainerListener;)V +MD: net/minecraft/world/SimpleContainer/m_19170_ (Lnet/minecraft/world/item/Item;I)Lnet/minecraft/world/item/ItemStack; net/minecraft/world/SimpleContainer/removeItemType (Lnet/minecraft/world/item/Item;I)Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/SimpleContainer/m_19173_ (Lnet/minecraft/world/item/ItemStack;)Lnet/minecraft/world/item/ItemStack; net/minecraft/world/SimpleContainer/addItem (Lnet/minecraft/world/item/ItemStack;)Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/SimpleContainer/m_19181_ (Lnet/minecraft/world/ContainerListener;)V net/minecraft/world/SimpleContainer/removeListener (Lnet/minecraft/world/ContainerListener;)V +MD: net/minecraft/world/SimpleContainer/m_19183_ (Lnet/minecraft/world/item/ItemStack;)Z net/minecraft/world/SimpleContainer/canAddItem (Lnet/minecraft/world/item/ItemStack;)Z +MD: net/minecraft/world/SimpleContainer/m_19185_ (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/item/ItemStack;)V net/minecraft/world/SimpleContainer/moveItemsBetweenStacks (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/item/ItemStack;)V +MD: net/minecraft/world/SimpleContainer/m_19189_ (Lnet/minecraft/world/item/ItemStack;)V net/minecraft/world/SimpleContainer/moveItemToEmptySlots (Lnet/minecraft/world/item/ItemStack;)V +MD: net/minecraft/world/SimpleContainer/m_19191_ (Lnet/minecraft/world/item/ItemStack;)V net/minecraft/world/SimpleContainer/moveItemToOccupiedSlotsWithSameType (Lnet/minecraft/world/item/ItemStack;)V +MD: net/minecraft/world/SimpleContainer/m_19193_ (Lnet/minecraft/world/item/ItemStack;)Z net/minecraft/world/SimpleContainer/lambda$toString$1 (Lnet/minecraft/world/item/ItemStack;)Z +MD: net/minecraft/world/SimpleContainer/m_19195_ ()Ljava/util/List; net/minecraft/world/SimpleContainer/removeAllItems ()Ljava/util/List; +MD: net/minecraft/world/SimpleContainer/m_19196_ (Lnet/minecraft/world/item/ItemStack;)Z net/minecraft/world/SimpleContainer/lambda$removeAllItems$0 (Lnet/minecraft/world/item/ItemStack;)Z +MD: net/minecraft/world/SimpleContainer/m_5809_ (Lnet/minecraft/world/entity/player/StackedContents;)V net/minecraft/world/SimpleContainer/fillStackedContents (Lnet/minecraft/world/entity/player/StackedContents;)V +MD: net/minecraft/world/SimpleContainer/m_6211_ ()V net/minecraft/world/SimpleContainer/clearContent ()V +MD: net/minecraft/world/SimpleContainer/m_6542_ (Lnet/minecraft/world/entity/player/Player;)Z net/minecraft/world/SimpleContainer/stillValid (Lnet/minecraft/world/entity/player/Player;)Z +MD: net/minecraft/world/SimpleContainer/m_6596_ ()V net/minecraft/world/SimpleContainer/setChanged ()V +MD: net/minecraft/world/SimpleContainer/m_6643_ ()I net/minecraft/world/SimpleContainer/getContainerSize ()I +MD: net/minecraft/world/SimpleContainer/m_6836_ (ILnet/minecraft/world/item/ItemStack;)V net/minecraft/world/SimpleContainer/setItem (ILnet/minecraft/world/item/ItemStack;)V +MD: net/minecraft/world/SimpleContainer/m_7407_ (II)Lnet/minecraft/world/item/ItemStack; net/minecraft/world/SimpleContainer/removeItem (II)Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/SimpleContainer/m_7797_ (Lnet/minecraft/nbt/ListTag;)V net/minecraft/world/SimpleContainer/fromTag (Lnet/minecraft/nbt/ListTag;)V +MD: net/minecraft/world/SimpleContainer/m_7927_ ()Lnet/minecraft/nbt/ListTag; net/minecraft/world/SimpleContainer/createTag ()Lnet/minecraft/nbt/ListTag; +MD: net/minecraft/world/SimpleContainer/m_7983_ ()Z net/minecraft/world/SimpleContainer/isEmpty ()Z +MD: net/minecraft/world/SimpleContainer/m_8016_ (I)Lnet/minecraft/world/item/ItemStack; net/minecraft/world/SimpleContainer/removeItemNoUpdate (I)Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/SimpleContainer/m_8020_ (I)Lnet/minecraft/world/item/ItemStack; net/minecraft/world/SimpleContainer/getItem (I)Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/SimpleContainer/toString ()Ljava/lang/String; net/minecraft/world/SimpleContainer/toString ()Ljava/lang/String; +MD: net/minecraft/world/SimpleMenuProvider/ (Lnet/minecraft/world/inventory/MenuConstructor;Lnet/minecraft/network/chat/Component;)V net/minecraft/world/SimpleMenuProvider/ (Lnet/minecraft/world/inventory/MenuConstructor;Lnet/minecraft/network/chat/Component;)V +MD: net/minecraft/world/SimpleMenuProvider/m_5446_ ()Lnet/minecraft/network/chat/Component; net/minecraft/world/SimpleMenuProvider/getDisplayName ()Lnet/minecraft/network/chat/Component; +MD: net/minecraft/world/SimpleMenuProvider/m_7208_ (ILnet/minecraft/world/entity/player/Inventory;Lnet/minecraft/world/entity/player/Player;)Lnet/minecraft/world/inventory/AbstractContainerMenu; net/minecraft/world/SimpleMenuProvider/createMenu (ILnet/minecraft/world/entity/player/Inventory;Lnet/minecraft/world/entity/player/Player;)Lnet/minecraft/world/inventory/AbstractContainerMenu; +MD: net/minecraft/world/WorldlyContainer/m_7071_ (Lnet/minecraft/core/Direction;)[I net/minecraft/world/WorldlyContainer/getSlotsForFace (Lnet/minecraft/core/Direction;)[I +MD: net/minecraft/world/WorldlyContainer/m_7155_ (ILnet/minecraft/world/item/ItemStack;Lnet/minecraft/core/Direction;)Z net/minecraft/world/WorldlyContainer/canPlaceItemThroughFace (ILnet/minecraft/world/item/ItemStack;Lnet/minecraft/core/Direction;)Z +MD: net/minecraft/world/WorldlyContainer/m_7157_ (ILnet/minecraft/world/item/ItemStack;Lnet/minecraft/core/Direction;)Z net/minecraft/world/WorldlyContainer/canTakeItemThroughFace (ILnet/minecraft/world/item/ItemStack;Lnet/minecraft/core/Direction;)Z +MD: net/minecraft/world/WorldlyContainerHolder/m_5840_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/WorldlyContainer; net/minecraft/world/WorldlyContainerHolder/getContainer (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/WorldlyContainer; +MD: net/minecraft/world/damagesource/CombatEntry/ (Lnet/minecraft/world/damagesource/DamageSource;FLnet/minecraft/world/damagesource/FallLocation;F)V net/minecraft/world/damagesource/CombatEntry/ (Lnet/minecraft/world/damagesource/DamageSource;FLnet/minecraft/world/damagesource/FallLocation;F)V +MD: net/minecraft/world/damagesource/CombatEntry/equals (Ljava/lang/Object;)Z net/minecraft/world/damagesource/CombatEntry/equals (Ljava/lang/Object;)Z +MD: net/minecraft/world/damagesource/CombatEntry/f_19250_ ()Lnet/minecraft/world/damagesource/DamageSource; net/minecraft/world/damagesource/CombatEntry/source ()Lnet/minecraft/world/damagesource/DamageSource; +MD: net/minecraft/world/damagesource/CombatEntry/f_19252_ ()F net/minecraft/world/damagesource/CombatEntry/damage ()F +MD: net/minecraft/world/damagesource/CombatEntry/f_19255_ ()F net/minecraft/world/damagesource/CombatEntry/fallDistance ()F +MD: net/minecraft/world/damagesource/CombatEntry/f_289042_ ()Lnet/minecraft/world/damagesource/FallLocation; net/minecraft/world/damagesource/CombatEntry/fallLocation ()Lnet/minecraft/world/damagesource/FallLocation; +MD: net/minecraft/world/damagesource/CombatEntry/hashCode ()I net/minecraft/world/damagesource/CombatEntry/hashCode ()I +MD: net/minecraft/world/damagesource/CombatEntry/toString ()Ljava/lang/String; net/minecraft/world/damagesource/CombatEntry/toString ()Ljava/lang/String; +MD: net/minecraft/world/damagesource/CombatRules/ ()V net/minecraft/world/damagesource/CombatRules/ ()V +MD: net/minecraft/world/damagesource/CombatRules/m_19269_ (FF)F net/minecraft/world/damagesource/CombatRules/getDamageAfterMagicAbsorb (FF)F +MD: net/minecraft/world/damagesource/CombatRules/m_19272_ (FFF)F net/minecraft/world/damagesource/CombatRules/getDamageAfterAbsorb (FFF)F +MD: net/minecraft/world/damagesource/CombatTracker/ ()V net/minecraft/world/damagesource/CombatTracker/ ()V +MD: net/minecraft/world/damagesource/CombatTracker/ (Lnet/minecraft/world/entity/LivingEntity;)V net/minecraft/world/damagesource/CombatTracker/ (Lnet/minecraft/world/entity/LivingEntity;)V +MD: net/minecraft/world/damagesource/CombatTracker/m_19293_ ()Lnet/minecraft/network/chat/Component; net/minecraft/world/damagesource/CombatTracker/getDeathMessage ()Lnet/minecraft/network/chat/Component; +MD: net/minecraft/world/damagesource/CombatTracker/m_19295_ ()I net/minecraft/world/damagesource/CombatTracker/getCombatDuration ()I +MD: net/minecraft/world/damagesource/CombatTracker/m_19296_ ()V net/minecraft/world/damagesource/CombatTracker/recheckStatus ()V +MD: net/minecraft/world/damagesource/CombatTracker/m_19298_ ()Lnet/minecraft/world/damagesource/CombatEntry; net/minecraft/world/damagesource/CombatTracker/getMostSignificantFall ()Lnet/minecraft/world/damagesource/CombatEntry; +MD: net/minecraft/world/damagesource/CombatTracker/m_289194_ (Lnet/minecraft/world/damagesource/DamageSource;F)V net/minecraft/world/damagesource/CombatTracker/recordDamage (Lnet/minecraft/world/damagesource/DamageSource;F)V +MD: net/minecraft/world/damagesource/CombatTracker/m_289206_ (Lnet/minecraft/world/entity/Entity;Lnet/minecraft/network/chat/Component;Ljava/lang/String;Ljava/lang/String;)Lnet/minecraft/network/chat/Component; net/minecraft/world/damagesource/CombatTracker/getMessageForAssistedFall (Lnet/minecraft/world/entity/Entity;Lnet/minecraft/network/chat/Component;Ljava/lang/String;Ljava/lang/String;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/world/damagesource/CombatTracker/m_289212_ (Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/network/chat/Component; net/minecraft/world/damagesource/CombatTracker/getDisplayName (Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/world/damagesource/CombatTracker/m_289215_ (Lnet/minecraft/world/damagesource/CombatEntry;Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/network/chat/Component; net/minecraft/world/damagesource/CombatTracker/getFallMessage (Lnet/minecraft/world/damagesource/CombatEntry;Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/world/damagesource/CombatTracker/m_289225_ (Lnet/minecraft/world/damagesource/DamageSource;)Z net/minecraft/world/damagesource/CombatTracker/shouldEnterCombat (Lnet/minecraft/world/damagesource/DamageSource;)Z +MD: net/minecraft/world/damagesource/DamageEffects/ ()V net/minecraft/world/damagesource/DamageEffects/ ()V +MD: net/minecraft/world/damagesource/DamageEffects/ (Ljava/lang/String;ILjava/lang/String;Lnet/minecraft/sounds/SoundEvent;)V net/minecraft/world/damagesource/DamageEffects/ (Ljava/lang/String;ILjava/lang/String;Lnet/minecraft/sounds/SoundEvent;)V +MD: net/minecraft/world/damagesource/DamageEffects/m_269345_ ()[Lnet/minecraft/world/damagesource/DamageEffects; net/minecraft/world/damagesource/DamageEffects/$values ()[Lnet/minecraft/world/damagesource/DamageEffects; +MD: net/minecraft/world/damagesource/DamageEffects/m_269402_ ()Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/damagesource/DamageEffects/sound ()Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/damagesource/DamageEffects/m_7912_ ()Ljava/lang/String; net/minecraft/world/damagesource/DamageEffects/getSerializedName ()Ljava/lang/String; +MD: net/minecraft/world/damagesource/DamageEffects/valueOf (Ljava/lang/String;)Lnet/minecraft/world/damagesource/DamageEffects; net/minecraft/world/damagesource/DamageEffects/valueOf (Ljava/lang/String;)Lnet/minecraft/world/damagesource/DamageEffects; +MD: net/minecraft/world/damagesource/DamageEffects/values ()[Lnet/minecraft/world/damagesource/DamageEffects; net/minecraft/world/damagesource/DamageEffects/values ()[Lnet/minecraft/world/damagesource/DamageEffects; +MD: net/minecraft/world/damagesource/DamageScaling/ ()V net/minecraft/world/damagesource/DamageScaling/ ()V +MD: net/minecraft/world/damagesource/DamageScaling/ (Ljava/lang/String;ILjava/lang/String;)V net/minecraft/world/damagesource/DamageScaling/ (Ljava/lang/String;ILjava/lang/String;)V +MD: net/minecraft/world/damagesource/DamageScaling/m_269458_ ()[Lnet/minecraft/world/damagesource/DamageScaling; net/minecraft/world/damagesource/DamageScaling/$values ()[Lnet/minecraft/world/damagesource/DamageScaling; +MD: net/minecraft/world/damagesource/DamageScaling/m_7912_ ()Ljava/lang/String; net/minecraft/world/damagesource/DamageScaling/getSerializedName ()Ljava/lang/String; +MD: net/minecraft/world/damagesource/DamageScaling/valueOf (Ljava/lang/String;)Lnet/minecraft/world/damagesource/DamageScaling; net/minecraft/world/damagesource/DamageScaling/valueOf (Ljava/lang/String;)Lnet/minecraft/world/damagesource/DamageScaling; +MD: net/minecraft/world/damagesource/DamageScaling/values ()[Lnet/minecraft/world/damagesource/DamageScaling; net/minecraft/world/damagesource/DamageScaling/values ()[Lnet/minecraft/world/damagesource/DamageScaling; +MD: net/minecraft/world/damagesource/DamageSource/ (Lnet/minecraft/core/Holder;Lnet/minecraft/world/entity/Entity;Lnet/minecraft/world/entity/Entity;Lnet/minecraft/world/phys/Vec3;)V net/minecraft/world/damagesource/DamageSource/ (Lnet/minecraft/core/Holder;Lnet/minecraft/world/entity/Entity;Lnet/minecraft/world/entity/Entity;Lnet/minecraft/world/phys/Vec3;)V +MD: net/minecraft/world/damagesource/DamageSource/ (Lnet/minecraft/core/Holder;)V net/minecraft/world/damagesource/DamageSource/ (Lnet/minecraft/core/Holder;)V +MD: net/minecraft/world/damagesource/DamageSource/ (Lnet/minecraft/core/Holder;Lnet/minecraft/world/entity/Entity;Lnet/minecraft/world/entity/Entity;)V net/minecraft/world/damagesource/DamageSource/ (Lnet/minecraft/core/Holder;Lnet/minecraft/world/entity/Entity;Lnet/minecraft/world/entity/Entity;)V +MD: net/minecraft/world/damagesource/DamageSource/ (Lnet/minecraft/core/Holder;Lnet/minecraft/world/phys/Vec3;)V net/minecraft/world/damagesource/DamageSource/ (Lnet/minecraft/core/Holder;Lnet/minecraft/world/phys/Vec3;)V +MD: net/minecraft/world/damagesource/DamageSource/ (Lnet/minecraft/core/Holder;Lnet/minecraft/world/entity/Entity;)V net/minecraft/world/damagesource/DamageSource/ (Lnet/minecraft/core/Holder;Lnet/minecraft/world/entity/Entity;)V +MD: net/minecraft/world/damagesource/DamageSource/m_19377_ ()F net/minecraft/world/damagesource/DamageSource/getFoodExhaustion ()F +MD: net/minecraft/world/damagesource/DamageSource/m_19385_ ()Ljava/lang/String; net/minecraft/world/damagesource/DamageSource/getMsgId ()Ljava/lang/String; +MD: net/minecraft/world/damagesource/DamageSource/m_19390_ ()Z net/minecraft/world/damagesource/DamageSource/isCreativePlayer ()Z +MD: net/minecraft/world/damagesource/DamageSource/m_269014_ ()Z net/minecraft/world/damagesource/DamageSource/isIndirect ()Z +MD: net/minecraft/world/damagesource/DamageSource/m_269150_ ()Lnet/minecraft/core/Holder; net/minecraft/world/damagesource/DamageSource/typeHolder ()Lnet/minecraft/core/Holder; +MD: net/minecraft/world/damagesource/DamageSource/m_269181_ ()Lnet/minecraft/world/phys/Vec3; net/minecraft/world/damagesource/DamageSource/sourcePositionRaw ()Lnet/minecraft/world/phys/Vec3; +MD: net/minecraft/world/damagesource/DamageSource/m_269415_ ()Lnet/minecraft/world/damagesource/DamageType; net/minecraft/world/damagesource/DamageSource/type ()Lnet/minecraft/world/damagesource/DamageType; +MD: net/minecraft/world/damagesource/DamageSource/m_269533_ (Lnet/minecraft/tags/TagKey;)Z net/minecraft/world/damagesource/DamageSource/is (Lnet/minecraft/tags/TagKey;)Z +MD: net/minecraft/world/damagesource/DamageSource/m_276093_ (Lnet/minecraft/resources/ResourceKey;)Z net/minecraft/world/damagesource/DamageSource/is (Lnet/minecraft/resources/ResourceKey;)Z +MD: net/minecraft/world/damagesource/DamageSource/m_6157_ (Lnet/minecraft/world/entity/LivingEntity;)Lnet/minecraft/network/chat/Component; net/minecraft/world/damagesource/DamageSource/getLocalizedDeathMessage (Lnet/minecraft/world/entity/LivingEntity;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/world/damagesource/DamageSource/m_7270_ ()Lnet/minecraft/world/phys/Vec3; net/minecraft/world/damagesource/DamageSource/getSourcePosition ()Lnet/minecraft/world/phys/Vec3; +MD: net/minecraft/world/damagesource/DamageSource/m_7639_ ()Lnet/minecraft/world/entity/Entity; net/minecraft/world/damagesource/DamageSource/getEntity ()Lnet/minecraft/world/entity/Entity; +MD: net/minecraft/world/damagesource/DamageSource/m_7640_ ()Lnet/minecraft/world/entity/Entity; net/minecraft/world/damagesource/DamageSource/getDirectEntity ()Lnet/minecraft/world/entity/Entity; +MD: net/minecraft/world/damagesource/DamageSource/m_7986_ ()Z net/minecraft/world/damagesource/DamageSource/scalesWithDifficulty ()Z +MD: net/minecraft/world/damagesource/DamageSource/toString ()Ljava/lang/String; net/minecraft/world/damagesource/DamageSource/toString ()Ljava/lang/String; +MD: net/minecraft/world/damagesource/DamageSource$1/ ()V net/minecraft/world/damagesource/DamageSource$1/ ()V +MD: net/minecraft/world/damagesource/DamageSources/ (Lnet/minecraft/core/RegistryAccess;)V net/minecraft/world/damagesource/DamageSources/ (Lnet/minecraft/core/RegistryAccess;)V +MD: net/minecraft/world/damagesource/DamageSources/m_268989_ ()Lnet/minecraft/world/damagesource/DamageSource; net/minecraft/world/damagesource/DamageSources/fall ()Lnet/minecraft/world/damagesource/DamageSource; +MD: net/minecraft/world/damagesource/DamageSources/m_268994_ (Lnet/minecraft/world/entity/projectile/FireworkRocketEntity;Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/world/damagesource/DamageSource; net/minecraft/world/damagesource/DamageSources/fireworks (Lnet/minecraft/world/entity/projectile/FireworkRocketEntity;Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/world/damagesource/DamageSource; +MD: net/minecraft/world/damagesource/DamageSources/m_268998_ (Lnet/minecraft/resources/ResourceKey;Lnet/minecraft/world/entity/Entity;Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/world/damagesource/DamageSource; net/minecraft/world/damagesource/DamageSources/source (Lnet/minecraft/resources/ResourceKey;Lnet/minecraft/world/entity/Entity;Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/world/damagesource/DamageSource; +MD: net/minecraft/world/damagesource/DamageSources/m_269036_ (Lnet/minecraft/world/entity/Entity;Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/world/damagesource/DamageSource; net/minecraft/world/damagesource/DamageSources/explosion (Lnet/minecraft/world/entity/Entity;Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/world/damagesource/DamageSource; +MD: net/minecraft/world/damagesource/DamageSources/m_269047_ ()Lnet/minecraft/world/damagesource/DamageSource; net/minecraft/world/damagesource/DamageSources/hotFloor ()Lnet/minecraft/world/damagesource/DamageSource; +MD: net/minecraft/world/damagesource/DamageSources/m_269063_ ()Lnet/minecraft/world/damagesource/DamageSource; net/minecraft/world/damagesource/DamageSources/drown ()Lnet/minecraft/world/damagesource/DamageSource; +MD: net/minecraft/world/damagesource/DamageSources/m_269064_ ()Lnet/minecraft/world/damagesource/DamageSource; net/minecraft/world/damagesource/DamageSources/starve ()Lnet/minecraft/world/damagesource/DamageSource; +MD: net/minecraft/world/damagesource/DamageSources/m_269075_ (Lnet/minecraft/world/entity/player/Player;)Lnet/minecraft/world/damagesource/DamageSource; net/minecraft/world/damagesource/DamageSources/playerAttack (Lnet/minecraft/world/entity/player/Player;)Lnet/minecraft/world/damagesource/DamageSource; +MD: net/minecraft/world/damagesource/DamageSources/m_269079_ (Lnet/minecraft/resources/ResourceKey;)Lnet/minecraft/world/damagesource/DamageSource; net/minecraft/world/damagesource/DamageSources/source (Lnet/minecraft/resources/ResourceKey;)Lnet/minecraft/world/damagesource/DamageSource; +MD: net/minecraft/world/damagesource/DamageSources/m_269093_ (Lnet/minecraft/world/level/Explosion;)Lnet/minecraft/world/damagesource/DamageSource; net/minecraft/world/damagesource/DamageSources/explosion (Lnet/minecraft/world/level/Explosion;)Lnet/minecraft/world/damagesource/DamageSource; +MD: net/minecraft/world/damagesource/DamageSources/m_269103_ (Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/world/damagesource/DamageSource; net/minecraft/world/damagesource/DamageSources/fallingStalactite (Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/world/damagesource/DamageSource; +MD: net/minecraft/world/damagesource/DamageSources/m_269104_ (Lnet/minecraft/world/entity/Entity;Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/world/damagesource/DamageSource; net/minecraft/world/damagesource/DamageSources/indirectMagic (Lnet/minecraft/world/entity/Entity;Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/world/damagesource/DamageSource; +MD: net/minecraft/world/damagesource/DamageSources/m_269109_ ()Lnet/minecraft/world/damagesource/DamageSource; net/minecraft/world/damagesource/DamageSources/freeze ()Lnet/minecraft/world/damagesource/DamageSource; +MD: net/minecraft/world/damagesource/DamageSources/m_269230_ (Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/world/damagesource/DamageSource; net/minecraft/world/damagesource/DamageSources/anvil (Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/world/damagesource/DamageSource; +MD: net/minecraft/world/damagesource/DamageSources/m_269233_ ()Lnet/minecraft/world/damagesource/DamageSource; net/minecraft/world/damagesource/DamageSources/lava ()Lnet/minecraft/world/damagesource/DamageSource; +MD: net/minecraft/world/damagesource/DamageSources/m_269251_ ()Lnet/minecraft/world/damagesource/DamageSource; net/minecraft/world/damagesource/DamageSources/wither ()Lnet/minecraft/world/damagesource/DamageSource; +MD: net/minecraft/world/damagesource/DamageSources/m_269254_ ()Lnet/minecraft/world/damagesource/DamageSource; net/minecraft/world/damagesource/DamageSources/dragonBreath ()Lnet/minecraft/world/damagesource/DamageSource; +MD: net/minecraft/world/damagesource/DamageSources/m_269264_ ()Lnet/minecraft/world/damagesource/DamageSource; net/minecraft/world/damagesource/DamageSources/generic ()Lnet/minecraft/world/damagesource/DamageSource; +MD: net/minecraft/world/damagesource/DamageSources/m_269285_ (Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/world/damagesource/DamageSource; net/minecraft/world/damagesource/DamageSources/sonicBoom (Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/world/damagesource/DamageSource; +MD: net/minecraft/world/damagesource/DamageSources/m_269298_ (Lnet/minecraft/resources/ResourceKey;Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/world/damagesource/DamageSource; net/minecraft/world/damagesource/DamageSources/source (Lnet/minecraft/resources/ResourceKey;Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/world/damagesource/DamageSource; +MD: net/minecraft/world/damagesource/DamageSources/m_269299_ (Lnet/minecraft/world/entity/Entity;Lnet/minecraft/world/entity/LivingEntity;)Lnet/minecraft/world/damagesource/DamageSource; net/minecraft/world/damagesource/DamageSources/mobProjectile (Lnet/minecraft/world/entity/Entity;Lnet/minecraft/world/entity/LivingEntity;)Lnet/minecraft/world/damagesource/DamageSource; +MD: net/minecraft/world/damagesource/DamageSources/m_269318_ ()Lnet/minecraft/world/damagesource/DamageSource; net/minecraft/world/damagesource/DamageSources/inWall ()Lnet/minecraft/world/damagesource/DamageSource; +MD: net/minecraft/world/damagesource/DamageSources/m_269325_ ()Lnet/minecraft/world/damagesource/DamageSource; net/minecraft/world/damagesource/DamageSources/cactus ()Lnet/minecraft/world/damagesource/DamageSource; +MD: net/minecraft/world/damagesource/DamageSources/m_269333_ (Lnet/minecraft/world/entity/LivingEntity;)Lnet/minecraft/world/damagesource/DamageSource; net/minecraft/world/damagesource/DamageSources/mobAttack (Lnet/minecraft/world/entity/LivingEntity;)Lnet/minecraft/world/damagesource/DamageSource; +MD: net/minecraft/world/damagesource/DamageSources/m_269341_ ()Lnet/minecraft/world/damagesource/DamageSource; net/minecraft/world/damagesource/DamageSources/fellOutOfWorld ()Lnet/minecraft/world/damagesource/DamageSource; +MD: net/minecraft/world/damagesource/DamageSources/m_269354_ ()Lnet/minecraft/world/damagesource/DamageSource; net/minecraft/world/damagesource/DamageSources/cramming ()Lnet/minecraft/world/damagesource/DamageSource; +MD: net/minecraft/world/damagesource/DamageSources/m_269364_ (Lnet/minecraft/world/entity/LivingEntity;)Lnet/minecraft/world/damagesource/DamageSource; net/minecraft/world/damagesource/DamageSources/noAggroMobAttack (Lnet/minecraft/world/entity/LivingEntity;)Lnet/minecraft/world/damagesource/DamageSource; +MD: net/minecraft/world/damagesource/DamageSources/m_269374_ (Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/world/damagesource/DamageSource; net/minecraft/world/damagesource/DamageSources/thorns (Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/world/damagesource/DamageSource; +MD: net/minecraft/world/damagesource/DamageSources/m_269383_ (Lnet/minecraft/world/entity/projectile/WitherSkull;Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/world/damagesource/DamageSource; net/minecraft/world/damagesource/DamageSources/witherSkull (Lnet/minecraft/world/entity/projectile/WitherSkull;Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/world/damagesource/DamageSource; +MD: net/minecraft/world/damagesource/DamageSources/m_269387_ ()Lnet/minecraft/world/damagesource/DamageSource; net/minecraft/world/damagesource/DamageSources/inFire ()Lnet/minecraft/world/damagesource/DamageSource; +MD: net/minecraft/world/damagesource/DamageSources/m_269390_ (Lnet/minecraft/world/entity/Entity;Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/world/damagesource/DamageSource; net/minecraft/world/damagesource/DamageSources/thrown (Lnet/minecraft/world/entity/Entity;Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/world/damagesource/DamageSource; +MD: net/minecraft/world/damagesource/DamageSources/m_269396_ (Lnet/minecraft/world/entity/LivingEntity;)Lnet/minecraft/world/damagesource/DamageSource; net/minecraft/world/damagesource/DamageSources/sting (Lnet/minecraft/world/entity/LivingEntity;)Lnet/minecraft/world/damagesource/DamageSource; +MD: net/minecraft/world/damagesource/DamageSources/m_269418_ (Lnet/minecraft/world/entity/projectile/AbstractArrow;Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/world/damagesource/DamageSource; net/minecraft/world/damagesource/DamageSources/arrow (Lnet/minecraft/world/entity/projectile/AbstractArrow;Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/world/damagesource/DamageSource; +MD: net/minecraft/world/damagesource/DamageSources/m_269425_ ()Lnet/minecraft/world/damagesource/DamageSource; net/minecraft/world/damagesource/DamageSources/magic ()Lnet/minecraft/world/damagesource/DamageSource; +MD: net/minecraft/world/damagesource/DamageSources/m_269453_ (Lnet/minecraft/world/entity/projectile/Fireball;Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/world/damagesource/DamageSource; net/minecraft/world/damagesource/DamageSources/fireball (Lnet/minecraft/world/entity/projectile/Fireball;Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/world/damagesource/DamageSource; +MD: net/minecraft/world/damagesource/DamageSources/m_269483_ ()Lnet/minecraft/world/damagesource/DamageSource; net/minecraft/world/damagesource/DamageSources/dryOut ()Lnet/minecraft/world/damagesource/DamageSource; +MD: net/minecraft/world/damagesource/DamageSources/m_269488_ (Lnet/minecraft/world/phys/Vec3;)Lnet/minecraft/world/damagesource/DamageSource; net/minecraft/world/damagesource/DamageSources/badRespawnPointExplosion (Lnet/minecraft/world/phys/Vec3;)Lnet/minecraft/world/damagesource/DamageSource; +MD: net/minecraft/world/damagesource/DamageSources/m_269515_ ()Lnet/minecraft/world/damagesource/DamageSource; net/minecraft/world/damagesource/DamageSources/flyIntoWall ()Lnet/minecraft/world/damagesource/DamageSource; +MD: net/minecraft/world/damagesource/DamageSources/m_269525_ (Lnet/minecraft/world/entity/Entity;Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/world/damagesource/DamageSource; net/minecraft/world/damagesource/DamageSources/trident (Lnet/minecraft/world/entity/Entity;Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/world/damagesource/DamageSource; +MD: net/minecraft/world/damagesource/DamageSources/m_269548_ ()Lnet/minecraft/world/damagesource/DamageSource; net/minecraft/world/damagesource/DamageSources/lightningBolt ()Lnet/minecraft/world/damagesource/DamageSource; +MD: net/minecraft/world/damagesource/DamageSources/m_269549_ ()Lnet/minecraft/world/damagesource/DamageSource; net/minecraft/world/damagesource/DamageSources/onFire ()Lnet/minecraft/world/damagesource/DamageSource; +MD: net/minecraft/world/damagesource/DamageSources/m_269555_ ()Lnet/minecraft/world/damagesource/DamageSource; net/minecraft/world/damagesource/DamageSources/sweetBerryBush ()Lnet/minecraft/world/damagesource/DamageSource; +MD: net/minecraft/world/damagesource/DamageSources/m_269564_ (Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/world/damagesource/DamageSource; net/minecraft/world/damagesource/DamageSources/fallingBlock (Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/world/damagesource/DamageSource; +MD: net/minecraft/world/damagesource/DamageSources/m_269571_ ()Lnet/minecraft/world/damagesource/DamageSource; net/minecraft/world/damagesource/DamageSources/stalagmite ()Lnet/minecraft/world/damagesource/DamageSource; +MD: net/minecraft/world/damagesource/DamageSources/m_287172_ ()Lnet/minecraft/world/damagesource/DamageSource; net/minecraft/world/damagesource/DamageSources/genericKill ()Lnet/minecraft/world/damagesource/DamageSource; +MD: net/minecraft/world/damagesource/DamageSources/m_287287_ ()Lnet/minecraft/world/damagesource/DamageSource; net/minecraft/world/damagesource/DamageSources/outOfBorder ()Lnet/minecraft/world/damagesource/DamageSource; +MD: net/minecraft/world/damagesource/DamageType/ ()V net/minecraft/world/damagesource/DamageType/ ()V +MD: net/minecraft/world/damagesource/DamageType/ (Ljava/lang/String;FLnet/minecraft/world/damagesource/DamageEffects;)V net/minecraft/world/damagesource/DamageType/ (Ljava/lang/String;FLnet/minecraft/world/damagesource/DamageEffects;)V +MD: net/minecraft/world/damagesource/DamageType/ (Ljava/lang/String;Lnet/minecraft/world/damagesource/DamageScaling;FLnet/minecraft/world/damagesource/DamageEffects;)V net/minecraft/world/damagesource/DamageType/ (Ljava/lang/String;Lnet/minecraft/world/damagesource/DamageScaling;FLnet/minecraft/world/damagesource/DamageEffects;)V +MD: net/minecraft/world/damagesource/DamageType/ (Ljava/lang/String;Lnet/minecraft/world/damagesource/DamageScaling;F)V net/minecraft/world/damagesource/DamageType/ (Ljava/lang/String;Lnet/minecraft/world/damagesource/DamageScaling;F)V +MD: net/minecraft/world/damagesource/DamageType/ (Ljava/lang/String;Lnet/minecraft/world/damagesource/DamageScaling;FLnet/minecraft/world/damagesource/DamageEffects;Lnet/minecraft/world/damagesource/DeathMessageType;)V net/minecraft/world/damagesource/DamageType/ (Ljava/lang/String;Lnet/minecraft/world/damagesource/DamageScaling;FLnet/minecraft/world/damagesource/DamageEffects;Lnet/minecraft/world/damagesource/DeathMessageType;)V +MD: net/minecraft/world/damagesource/DamageType/ (Ljava/lang/String;F)V net/minecraft/world/damagesource/DamageType/ (Ljava/lang/String;F)V +MD: net/minecraft/world/damagesource/DamageType/equals (Ljava/lang/Object;)Z net/minecraft/world/damagesource/DamageType/equals (Ljava/lang/Object;)Z +MD: net/minecraft/world/damagesource/DamageType/f_268472_ ()Lnet/minecraft/world/damagesource/DeathMessageType; net/minecraft/world/damagesource/DamageType/deathMessageType ()Lnet/minecraft/world/damagesource/DeathMessageType; +MD: net/minecraft/world/damagesource/DamageType/f_268501_ ()Lnet/minecraft/world/damagesource/DamageScaling; net/minecraft/world/damagesource/DamageType/scaling ()Lnet/minecraft/world/damagesource/DamageScaling; +MD: net/minecraft/world/damagesource/DamageType/f_268663_ ()F net/minecraft/world/damagesource/DamageType/exhaustion ()F +MD: net/minecraft/world/damagesource/DamageType/f_268677_ ()Ljava/lang/String; net/minecraft/world/damagesource/DamageType/msgId ()Ljava/lang/String; +MD: net/minecraft/world/damagesource/DamageType/f_268686_ ()Lnet/minecraft/world/damagesource/DamageEffects; net/minecraft/world/damagesource/DamageType/effects ()Lnet/minecraft/world/damagesource/DamageEffects; +MD: net/minecraft/world/damagesource/DamageType/hashCode ()I net/minecraft/world/damagesource/DamageType/hashCode ()I +MD: net/minecraft/world/damagesource/DamageType/m_269293_ (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/world/damagesource/DamageType/lambda$static$0 (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/world/damagesource/DamageType/toString ()Ljava/lang/String; net/minecraft/world/damagesource/DamageType/toString ()Ljava/lang/String; +MD: net/minecraft/world/damagesource/DamageTypes/ ()V net/minecraft/world/damagesource/DamageTypes/ ()V +MD: net/minecraft/world/damagesource/DamageTypes/m_269594_ (Lnet/minecraft/data/worldgen/BootstapContext;)V net/minecraft/world/damagesource/DamageTypes/bootstrap (Lnet/minecraft/data/worldgen/BootstapContext;)V +MD: net/minecraft/world/damagesource/DeathMessageType/ ()V net/minecraft/world/damagesource/DeathMessageType/ ()V +MD: net/minecraft/world/damagesource/DeathMessageType/ (Ljava/lang/String;ILjava/lang/String;)V net/minecraft/world/damagesource/DeathMessageType/ (Ljava/lang/String;ILjava/lang/String;)V +MD: net/minecraft/world/damagesource/DeathMessageType/m_269013_ ()[Lnet/minecraft/world/damagesource/DeathMessageType; net/minecraft/world/damagesource/DeathMessageType/$values ()[Lnet/minecraft/world/damagesource/DeathMessageType; +MD: net/minecraft/world/damagesource/DeathMessageType/m_7912_ ()Ljava/lang/String; net/minecraft/world/damagesource/DeathMessageType/getSerializedName ()Ljava/lang/String; +MD: net/minecraft/world/damagesource/DeathMessageType/valueOf (Ljava/lang/String;)Lnet/minecraft/world/damagesource/DeathMessageType; net/minecraft/world/damagesource/DeathMessageType/valueOf (Ljava/lang/String;)Lnet/minecraft/world/damagesource/DeathMessageType; +MD: net/minecraft/world/damagesource/DeathMessageType/values ()[Lnet/minecraft/world/damagesource/DeathMessageType; net/minecraft/world/damagesource/DeathMessageType/values ()[Lnet/minecraft/world/damagesource/DeathMessageType; +MD: net/minecraft/world/damagesource/FallLocation/ ()V net/minecraft/world/damagesource/FallLocation/ ()V +MD: net/minecraft/world/damagesource/FallLocation/ (Ljava/lang/String;)V net/minecraft/world/damagesource/FallLocation/ (Ljava/lang/String;)V +MD: net/minecraft/world/damagesource/FallLocation/equals (Ljava/lang/Object;)Z net/minecraft/world/damagesource/FallLocation/equals (Ljava/lang/Object;)Z +MD: net/minecraft/world/damagesource/FallLocation/f_289026_ ()Ljava/lang/String; net/minecraft/world/damagesource/FallLocation/id ()Ljava/lang/String; +MD: net/minecraft/world/damagesource/FallLocation/hashCode ()I net/minecraft/world/damagesource/FallLocation/hashCode ()I +MD: net/minecraft/world/damagesource/FallLocation/m_289192_ ()Ljava/lang/String; net/minecraft/world/damagesource/FallLocation/languageKey ()Ljava/lang/String; +MD: net/minecraft/world/damagesource/FallLocation/m_289203_ (Lnet/minecraft/world/entity/LivingEntity;)Lnet/minecraft/world/damagesource/FallLocation; net/minecraft/world/damagesource/FallLocation/getCurrentFallLocation (Lnet/minecraft/world/entity/LivingEntity;)Lnet/minecraft/world/damagesource/FallLocation; +MD: net/minecraft/world/damagesource/FallLocation/m_289230_ (Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/damagesource/FallLocation; net/minecraft/world/damagesource/FallLocation/blockToFallLocation (Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/damagesource/FallLocation; +MD: net/minecraft/world/damagesource/FallLocation/toString ()Ljava/lang/String; net/minecraft/world/damagesource/FallLocation/toString ()Ljava/lang/String; +MD: net/minecraft/world/effect/AbsoptionMobEffect/ (Lnet/minecraft/world/effect/MobEffectCategory;I)V net/minecraft/world/effect/AbsoptionMobEffect/ (Lnet/minecraft/world/effect/MobEffectCategory;I)V +MD: net/minecraft/world/effect/AbsoptionMobEffect/m_6385_ (Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/entity/ai/attributes/AttributeMap;I)V net/minecraft/world/effect/AbsoptionMobEffect/addAttributeModifiers (Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/entity/ai/attributes/AttributeMap;I)V +MD: net/minecraft/world/effect/AbsoptionMobEffect/m_6386_ (Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/entity/ai/attributes/AttributeMap;I)V net/minecraft/world/effect/AbsoptionMobEffect/removeAttributeModifiers (Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/entity/ai/attributes/AttributeMap;I)V +MD: net/minecraft/world/effect/AttackDamageMobEffect/ (Lnet/minecraft/world/effect/MobEffectCategory;ID)V net/minecraft/world/effect/AttackDamageMobEffect/ (Lnet/minecraft/world/effect/MobEffectCategory;ID)V +MD: net/minecraft/world/effect/AttackDamageMobEffect/m_7048_ (ILnet/minecraft/world/entity/ai/attributes/AttributeModifier;)D net/minecraft/world/effect/AttackDamageMobEffect/getAttributeModifierValue (ILnet/minecraft/world/entity/ai/attributes/AttributeModifier;)D +MD: net/minecraft/world/effect/HealthBoostMobEffect/ (Lnet/minecraft/world/effect/MobEffectCategory;I)V net/minecraft/world/effect/HealthBoostMobEffect/ (Lnet/minecraft/world/effect/MobEffectCategory;I)V +MD: net/minecraft/world/effect/HealthBoostMobEffect/m_6386_ (Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/entity/ai/attributes/AttributeMap;I)V net/minecraft/world/effect/HealthBoostMobEffect/removeAttributeModifiers (Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/entity/ai/attributes/AttributeMap;I)V +MD: net/minecraft/world/effect/InstantenousMobEffect/ (Lnet/minecraft/world/effect/MobEffectCategory;I)V net/minecraft/world/effect/InstantenousMobEffect/ (Lnet/minecraft/world/effect/MobEffectCategory;I)V +MD: net/minecraft/world/effect/InstantenousMobEffect/m_6584_ (II)Z net/minecraft/world/effect/InstantenousMobEffect/isDurationEffectTick (II)Z +MD: net/minecraft/world/effect/InstantenousMobEffect/m_8093_ ()Z net/minecraft/world/effect/InstantenousMobEffect/isInstantenous ()Z +MD: net/minecraft/world/effect/MobEffect/ (Lnet/minecraft/world/effect/MobEffectCategory;I)V net/minecraft/world/effect/MobEffect/ (Lnet/minecraft/world/effect/MobEffectCategory;I)V +MD: net/minecraft/world/effect/MobEffect/m_19453_ (I)Lnet/minecraft/world/effect/MobEffect; net/minecraft/world/effect/MobEffect/byId (I)Lnet/minecraft/world/effect/MobEffect; +MD: net/minecraft/world/effect/MobEffect/m_19459_ (Lnet/minecraft/world/effect/MobEffect;)I net/minecraft/world/effect/MobEffect/getId (Lnet/minecraft/world/effect/MobEffect;)I +MD: net/minecraft/world/effect/MobEffect/m_19461_ (Lnet/minecraft/world/entity/Entity;Lnet/minecraft/world/entity/Entity;Lnet/minecraft/world/entity/LivingEntity;ID)V net/minecraft/world/effect/MobEffect/applyInstantenousEffect (Lnet/minecraft/world/entity/Entity;Lnet/minecraft/world/entity/Entity;Lnet/minecraft/world/entity/LivingEntity;ID)V +MD: net/minecraft/world/effect/MobEffect/m_19472_ (Lnet/minecraft/world/entity/ai/attributes/Attribute;Ljava/lang/String;DLnet/minecraft/world/entity/ai/attributes/AttributeModifier$Operation;)Lnet/minecraft/world/effect/MobEffect; net/minecraft/world/effect/MobEffect/addAttributeModifier (Lnet/minecraft/world/entity/ai/attributes/Attribute;Ljava/lang/String;DLnet/minecraft/world/entity/ai/attributes/AttributeModifier$Operation;)Lnet/minecraft/world/effect/MobEffect; +MD: net/minecraft/world/effect/MobEffect/m_19477_ ()Ljava/lang/String; net/minecraft/world/effect/MobEffect/getOrCreateDescriptionId ()Ljava/lang/String; +MD: net/minecraft/world/effect/MobEffect/m_19481_ ()Ljava/lang/String; net/minecraft/world/effect/MobEffect/getDescriptionId ()Ljava/lang/String; +MD: net/minecraft/world/effect/MobEffect/m_19482_ ()Lnet/minecraft/network/chat/Component; net/minecraft/world/effect/MobEffect/getDisplayName ()Lnet/minecraft/network/chat/Component; +MD: net/minecraft/world/effect/MobEffect/m_19483_ ()Lnet/minecraft/world/effect/MobEffectCategory; net/minecraft/world/effect/MobEffect/getCategory ()Lnet/minecraft/world/effect/MobEffectCategory; +MD: net/minecraft/world/effect/MobEffect/m_19484_ ()I net/minecraft/world/effect/MobEffect/getColor ()I +MD: net/minecraft/world/effect/MobEffect/m_19485_ ()Ljava/util/Map; net/minecraft/world/effect/MobEffect/getAttributeModifiers ()Ljava/util/Map; +MD: net/minecraft/world/effect/MobEffect/m_19486_ ()Z net/minecraft/world/effect/MobEffect/isBeneficial ()Z +MD: net/minecraft/world/effect/MobEffect/m_216879_ (Ljava/util/function/Supplier;)Lnet/minecraft/world/effect/MobEffect; net/minecraft/world/effect/MobEffect/setFactorDataFactory (Ljava/util/function/Supplier;)Lnet/minecraft/world/effect/MobEffect; +MD: net/minecraft/world/effect/MobEffect/m_216881_ ()Ljava/util/Optional; net/minecraft/world/effect/MobEffect/createFactorData ()Ljava/util/Optional; +MD: net/minecraft/world/effect/MobEffect/m_216882_ (Lnet/minecraft/world/effect/MobEffect;)I net/minecraft/world/effect/MobEffect/getIdFromNullable (Lnet/minecraft/world/effect/MobEffect;)I +MD: net/minecraft/world/effect/MobEffect/m_216884_ ()Lnet/minecraft/world/effect/MobEffectInstance$FactorData; net/minecraft/world/effect/MobEffect/lambda$new$0 ()Lnet/minecraft/world/effect/MobEffectInstance$FactorData; +MD: net/minecraft/world/effect/MobEffect/m_6385_ (Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/entity/ai/attributes/AttributeMap;I)V net/minecraft/world/effect/MobEffect/addAttributeModifiers (Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/entity/ai/attributes/AttributeMap;I)V +MD: net/minecraft/world/effect/MobEffect/m_6386_ (Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/entity/ai/attributes/AttributeMap;I)V net/minecraft/world/effect/MobEffect/removeAttributeModifiers (Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/entity/ai/attributes/AttributeMap;I)V +MD: net/minecraft/world/effect/MobEffect/m_6584_ (II)Z net/minecraft/world/effect/MobEffect/isDurationEffectTick (II)Z +MD: net/minecraft/world/effect/MobEffect/m_6742_ (Lnet/minecraft/world/entity/LivingEntity;I)V net/minecraft/world/effect/MobEffect/applyEffectTick (Lnet/minecraft/world/entity/LivingEntity;I)V +MD: net/minecraft/world/effect/MobEffect/m_7048_ (ILnet/minecraft/world/entity/ai/attributes/AttributeModifier;)D net/minecraft/world/effect/MobEffect/getAttributeModifierValue (ILnet/minecraft/world/entity/ai/attributes/AttributeModifier;)D +MD: net/minecraft/world/effect/MobEffect/m_8093_ ()Z net/minecraft/world/effect/MobEffect/isInstantenous ()Z +MD: net/minecraft/world/effect/MobEffectCategory/ ()V net/minecraft/world/effect/MobEffectCategory/ ()V +MD: net/minecraft/world/effect/MobEffectCategory/ (Ljava/lang/String;ILnet/minecraft/ChatFormatting;)V net/minecraft/world/effect/MobEffectCategory/ (Ljava/lang/String;ILnet/minecraft/ChatFormatting;)V +MD: net/minecraft/world/effect/MobEffectCategory/m_146709_ ()[Lnet/minecraft/world/effect/MobEffectCategory; net/minecraft/world/effect/MobEffectCategory/$values ()[Lnet/minecraft/world/effect/MobEffectCategory; +MD: net/minecraft/world/effect/MobEffectCategory/m_19497_ ()Lnet/minecraft/ChatFormatting; net/minecraft/world/effect/MobEffectCategory/getTooltipFormatting ()Lnet/minecraft/ChatFormatting; +MD: net/minecraft/world/effect/MobEffectCategory/valueOf (Ljava/lang/String;)Lnet/minecraft/world/effect/MobEffectCategory; net/minecraft/world/effect/MobEffectCategory/valueOf (Ljava/lang/String;)Lnet/minecraft/world/effect/MobEffectCategory; +MD: net/minecraft/world/effect/MobEffectCategory/values ()[Lnet/minecraft/world/effect/MobEffectCategory; net/minecraft/world/effect/MobEffectCategory/values ()[Lnet/minecraft/world/effect/MobEffectCategory; +MD: net/minecraft/world/effect/MobEffectInstance/ ()V net/minecraft/world/effect/MobEffectInstance/ ()V +MD: net/minecraft/world/effect/MobEffectInstance/ (Lnet/minecraft/world/effect/MobEffect;IIZZZLnet/minecraft/world/effect/MobEffectInstance;Ljava/util/Optional;)V net/minecraft/world/effect/MobEffectInstance/ (Lnet/minecraft/world/effect/MobEffect;IIZZZLnet/minecraft/world/effect/MobEffectInstance;Ljava/util/Optional;)V +MD: net/minecraft/world/effect/MobEffectInstance/ (Lnet/minecraft/world/effect/MobEffect;II)V net/minecraft/world/effect/MobEffectInstance/ (Lnet/minecraft/world/effect/MobEffect;II)V +MD: net/minecraft/world/effect/MobEffectInstance/ (Lnet/minecraft/world/effect/MobEffect;IIZZZ)V net/minecraft/world/effect/MobEffectInstance/ (Lnet/minecraft/world/effect/MobEffect;IIZZZ)V +MD: net/minecraft/world/effect/MobEffectInstance/ (Lnet/minecraft/world/effect/MobEffect;I)V net/minecraft/world/effect/MobEffectInstance/ (Lnet/minecraft/world/effect/MobEffect;I)V +MD: net/minecraft/world/effect/MobEffectInstance/ (Lnet/minecraft/world/effect/MobEffect;IIZZ)V net/minecraft/world/effect/MobEffectInstance/ (Lnet/minecraft/world/effect/MobEffect;IIZZ)V +MD: net/minecraft/world/effect/MobEffectInstance/ (Lnet/minecraft/world/effect/MobEffect;)V net/minecraft/world/effect/MobEffectInstance/ (Lnet/minecraft/world/effect/MobEffect;)V +MD: net/minecraft/world/effect/MobEffectInstance/ (Lnet/minecraft/world/effect/MobEffectInstance;)V net/minecraft/world/effect/MobEffectInstance/ (Lnet/minecraft/world/effect/MobEffectInstance;)V +MD: net/minecraft/world/effect/MobEffectInstance/compareTo (Ljava/lang/Object;)I net/minecraft/world/effect/MobEffectInstance/compareTo (Ljava/lang/Object;)I +MD: net/minecraft/world/effect/MobEffectInstance/compareTo (Lnet/minecraft/world/effect/MobEffectInstance;)I net/minecraft/world/effect/MobEffectInstance/compareTo (Lnet/minecraft/world/effect/MobEffectInstance;)I +MD: net/minecraft/world/effect/MobEffectInstance/equals (Ljava/lang/Object;)Z net/minecraft/world/effect/MobEffectInstance/equals (Ljava/lang/Object;)Z +MD: net/minecraft/world/effect/MobEffectInstance/hashCode ()I net/minecraft/world/effect/MobEffectInstance/hashCode ()I +MD: net/minecraft/world/effect/MobEffectInstance/m_19544_ ()Lnet/minecraft/world/effect/MobEffect; net/minecraft/world/effect/MobEffectInstance/getEffect ()Lnet/minecraft/world/effect/MobEffect; +MD: net/minecraft/world/effect/MobEffectInstance/m_19545_ (Lnet/minecraft/world/effect/MobEffect;Lnet/minecraft/nbt/CompoundTag;)Lnet/minecraft/world/effect/MobEffectInstance; net/minecraft/world/effect/MobEffectInstance/loadSpecifiedEffect (Lnet/minecraft/world/effect/MobEffect;Lnet/minecraft/nbt/CompoundTag;)Lnet/minecraft/world/effect/MobEffectInstance; +MD: net/minecraft/world/effect/MobEffectInstance/m_19548_ (Lnet/minecraft/world/effect/MobEffectInstance;)V net/minecraft/world/effect/MobEffectInstance/setDetailsFrom (Lnet/minecraft/world/effect/MobEffectInstance;)V +MD: net/minecraft/world/effect/MobEffectInstance/m_19550_ (Lnet/minecraft/world/entity/LivingEntity;)V net/minecraft/world/effect/MobEffectInstance/applyEffect (Lnet/minecraft/world/entity/LivingEntity;)V +MD: net/minecraft/world/effect/MobEffectInstance/m_19552_ (Lnet/minecraft/world/entity/LivingEntity;Ljava/lang/Runnable;)Z net/minecraft/world/effect/MobEffectInstance/tick (Lnet/minecraft/world/entity/LivingEntity;Ljava/lang/Runnable;)Z +MD: net/minecraft/world/effect/MobEffectInstance/m_19555_ (Lnet/minecraft/nbt/CompoundTag;)Lnet/minecraft/nbt/CompoundTag; net/minecraft/world/effect/MobEffectInstance/save (Lnet/minecraft/nbt/CompoundTag;)Lnet/minecraft/nbt/CompoundTag; +MD: net/minecraft/world/effect/MobEffectInstance/m_19557_ ()I net/minecraft/world/effect/MobEffectInstance/getDuration ()I +MD: net/minecraft/world/effect/MobEffectInstance/m_19558_ (Lnet/minecraft/world/effect/MobEffectInstance;)Z net/minecraft/world/effect/MobEffectInstance/update (Lnet/minecraft/world/effect/MobEffectInstance;)Z +MD: net/minecraft/world/effect/MobEffectInstance/m_19560_ (Lnet/minecraft/nbt/CompoundTag;)Lnet/minecraft/world/effect/MobEffectInstance; net/minecraft/world/effect/MobEffectInstance/load (Lnet/minecraft/nbt/CompoundTag;)Lnet/minecraft/world/effect/MobEffectInstance; +MD: net/minecraft/world/effect/MobEffectInstance/m_19564_ ()I net/minecraft/world/effect/MobEffectInstance/getAmplifier ()I +MD: net/minecraft/world/effect/MobEffectInstance/m_19567_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/effect/MobEffectInstance/writeDetailsTo (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/effect/MobEffectInstance/m_19571_ ()Z net/minecraft/world/effect/MobEffectInstance/isAmbient ()Z +MD: net/minecraft/world/effect/MobEffectInstance/m_19572_ ()Z net/minecraft/world/effect/MobEffectInstance/isVisible ()Z +MD: net/minecraft/world/effect/MobEffectInstance/m_19575_ ()Z net/minecraft/world/effect/MobEffectInstance/showIcon ()Z +MD: net/minecraft/world/effect/MobEffectInstance/m_19576_ ()Ljava/lang/String; net/minecraft/world/effect/MobEffectInstance/getDescriptionId ()Ljava/lang/String; +MD: net/minecraft/world/effect/MobEffectInstance/m_19579_ ()I net/minecraft/world/effect/MobEffectInstance/tickDownDuration ()I +MD: net/minecraft/world/effect/MobEffectInstance/m_216895_ ()Ljava/util/Optional; net/minecraft/world/effect/MobEffectInstance/getFactorData ()Ljava/util/Optional; +MD: net/minecraft/world/effect/MobEffectInstance/m_216901_ (Lnet/minecraft/nbt/CompoundTag;Lnet/minecraft/world/effect/MobEffectInstance$FactorData;)V net/minecraft/world/effect/MobEffectInstance/lambda$writeDetailsTo$3 (Lnet/minecraft/nbt/CompoundTag;Lnet/minecraft/world/effect/MobEffectInstance$FactorData;)V +MD: net/minecraft/world/effect/MobEffectInstance/m_216904_ (Lnet/minecraft/nbt/CompoundTag;Lnet/minecraft/nbt/Tag;)V net/minecraft/world/effect/MobEffectInstance/lambda$writeDetailsTo$2 (Lnet/minecraft/nbt/CompoundTag;Lnet/minecraft/nbt/Tag;)V +MD: net/minecraft/world/effect/MobEffectInstance/m_267553_ (I)I net/minecraft/world/effect/MobEffectInstance/lambda$tickDownDuration$1 (I)I +MD: net/minecraft/world/effect/MobEffectInstance/m_267554_ (Lnet/minecraft/world/effect/MobEffectInstance$FactorData;)V net/minecraft/world/effect/MobEffectInstance/lambda$tick$0 (Lnet/minecraft/world/effect/MobEffectInstance$FactorData;)V +MD: net/minecraft/world/effect/MobEffectInstance/m_267577_ ()Z net/minecraft/world/effect/MobEffectInstance/isInfiniteDuration ()Z +MD: net/minecraft/world/effect/MobEffectInstance/m_267633_ (I)Z net/minecraft/world/effect/MobEffectInstance/endsWithin (I)Z +MD: net/minecraft/world/effect/MobEffectInstance/m_267670_ (Lnet/minecraft/world/effect/MobEffectInstance;)Z net/minecraft/world/effect/MobEffectInstance/isShorterDurationThan (Lnet/minecraft/world/effect/MobEffectInstance;)Z +MD: net/minecraft/world/effect/MobEffectInstance/m_267696_ (Lit/unimi/dsi/fastutil/ints/Int2IntFunction;)I net/minecraft/world/effect/MobEffectInstance/mapDuration (Lit/unimi/dsi/fastutil/ints/Int2IntFunction;)I +MD: net/minecraft/world/effect/MobEffectInstance/m_267725_ ()Z net/minecraft/world/effect/MobEffectInstance/hasRemainingDuration ()Z +MD: net/minecraft/world/effect/MobEffectInstance/m_267740_ ()Ljava/lang/String; net/minecraft/world/effect/MobEffectInstance/describeDuration ()Ljava/lang/String; +MD: net/minecraft/world/effect/MobEffectInstance/toString ()Ljava/lang/String; net/minecraft/world/effect/MobEffectInstance/toString ()Ljava/lang/String; +MD: net/minecraft/world/effect/MobEffectInstance$FactorData/ ()V net/minecraft/world/effect/MobEffectInstance$FactorData/ ()V +MD: net/minecraft/world/effect/MobEffectInstance$FactorData/ (I)V net/minecraft/world/effect/MobEffectInstance$FactorData/ (I)V +MD: net/minecraft/world/effect/MobEffectInstance$FactorData/ (IFFFIFZ)V net/minecraft/world/effect/MobEffectInstance$FactorData/ (IFFFIFZ)V +MD: net/minecraft/world/effect/MobEffectInstance$FactorData/m_216928_ (Lnet/minecraft/world/effect/MobEffectInstance$FactorData;)Ljava/lang/Boolean; net/minecraft/world/effect/MobEffectInstance$FactorData/lambda$static$6 (Lnet/minecraft/world/effect/MobEffectInstance$FactorData;)Ljava/lang/Boolean; +MD: net/minecraft/world/effect/MobEffectInstance$FactorData/m_216932_ (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/world/effect/MobEffectInstance$FactorData/lambda$static$7 (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/world/effect/MobEffectInstance$FactorData/m_216934_ (Lnet/minecraft/world/effect/MobEffectInstance$FactorData;)Ljava/lang/Float; net/minecraft/world/effect/MobEffectInstance$FactorData/lambda$static$5 (Lnet/minecraft/world/effect/MobEffectInstance$FactorData;)Ljava/lang/Float; +MD: net/minecraft/world/effect/MobEffectInstance$FactorData/m_216938_ (Lnet/minecraft/world/effect/MobEffectInstance$FactorData;)Ljava/lang/Float; net/minecraft/world/effect/MobEffectInstance$FactorData/lambda$static$3 (Lnet/minecraft/world/effect/MobEffectInstance$FactorData;)Ljava/lang/Float; +MD: net/minecraft/world/effect/MobEffectInstance$FactorData/m_216940_ (Lnet/minecraft/world/effect/MobEffectInstance$FactorData;)Ljava/lang/Float; net/minecraft/world/effect/MobEffectInstance$FactorData/lambda$static$2 (Lnet/minecraft/world/effect/MobEffectInstance$FactorData;)Ljava/lang/Float; +MD: net/minecraft/world/effect/MobEffectInstance$FactorData/m_216942_ (Lnet/minecraft/world/effect/MobEffectInstance$FactorData;)Ljava/lang/Float; net/minecraft/world/effect/MobEffectInstance$FactorData/lambda$static$1 (Lnet/minecraft/world/effect/MobEffectInstance$FactorData;)Ljava/lang/Float; +MD: net/minecraft/world/effect/MobEffectInstance$FactorData/m_216944_ (Lnet/minecraft/world/effect/MobEffectInstance$FactorData;)Ljava/lang/Integer; net/minecraft/world/effect/MobEffectInstance$FactorData/lambda$static$0 (Lnet/minecraft/world/effect/MobEffectInstance$FactorData;)Ljava/lang/Integer; +MD: net/minecraft/world/effect/MobEffectInstance$FactorData/m_238413_ (Lnet/minecraft/world/entity/LivingEntity;F)F net/minecraft/world/effect/MobEffectInstance$FactorData/getFactor (Lnet/minecraft/world/entity/LivingEntity;F)F +MD: net/minecraft/world/effect/MobEffectInstance$FactorData/m_267555_ (Lnet/minecraft/world/effect/MobEffectInstance$FactorData;)Ljava/lang/Integer; net/minecraft/world/effect/MobEffectInstance$FactorData/lambda$static$4 (Lnet/minecraft/world/effect/MobEffectInstance$FactorData;)Ljava/lang/Integer; +MD: net/minecraft/world/effect/MobEffectInstance$FactorData/m_267690_ (Lnet/minecraft/world/effect/MobEffectInstance;)V net/minecraft/world/effect/MobEffectInstance$FactorData/tick (Lnet/minecraft/world/effect/MobEffectInstance;)V +MD: net/minecraft/world/effect/MobEffectUtil/ ()V net/minecraft/world/effect/MobEffectUtil/ ()V +MD: net/minecraft/world/effect/MobEffectUtil/m_19584_ (Lnet/minecraft/world/entity/LivingEntity;)Z net/minecraft/world/effect/MobEffectUtil/hasDigSpeed (Lnet/minecraft/world/entity/LivingEntity;)Z +MD: net/minecraft/world/effect/MobEffectUtil/m_19586_ (Lnet/minecraft/world/entity/LivingEntity;)I net/minecraft/world/effect/MobEffectUtil/getDigSpeedAmplification (Lnet/minecraft/world/entity/LivingEntity;)I +MD: net/minecraft/world/effect/MobEffectUtil/m_19588_ (Lnet/minecraft/world/entity/LivingEntity;)Z net/minecraft/world/effect/MobEffectUtil/hasWaterBreathing (Lnet/minecraft/world/entity/LivingEntity;)Z +MD: net/minecraft/world/effect/MobEffectUtil/m_216946_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/Entity;Lnet/minecraft/world/phys/Vec3;DLnet/minecraft/world/effect/MobEffectInstance;I)Ljava/util/List; net/minecraft/world/effect/MobEffectUtil/addEffectToPlayersAround (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/Entity;Lnet/minecraft/world/phys/Vec3;DLnet/minecraft/world/effect/MobEffectInstance;I)Ljava/util/List; +MD: net/minecraft/world/effect/MobEffectUtil/m_238229_ (Lnet/minecraft/world/effect/MobEffectInstance;Lnet/minecraft/world/entity/Entity;Lnet/minecraft/server/level/ServerPlayer;)V net/minecraft/world/effect/MobEffectUtil/lambda$addEffectToPlayersAround$1 (Lnet/minecraft/world/effect/MobEffectInstance;Lnet/minecraft/world/entity/Entity;Lnet/minecraft/server/level/ServerPlayer;)V +MD: net/minecraft/world/effect/MobEffectUtil/m_267556_ (Lnet/minecraft/world/entity/Entity;Lnet/minecraft/world/phys/Vec3;DLnet/minecraft/world/effect/MobEffect;Lnet/minecraft/world/effect/MobEffectInstance;ILnet/minecraft/server/level/ServerPlayer;)Z net/minecraft/world/effect/MobEffectUtil/lambda$addEffectToPlayersAround$0 (Lnet/minecraft/world/entity/Entity;Lnet/minecraft/world/phys/Vec3;DLnet/minecraft/world/effect/MobEffect;Lnet/minecraft/world/effect/MobEffectInstance;ILnet/minecraft/server/level/ServerPlayer;)Z +MD: net/minecraft/world/effect/MobEffectUtil/m_267641_ (Lnet/minecraft/world/effect/MobEffectInstance;F)Lnet/minecraft/network/chat/Component; net/minecraft/world/effect/MobEffectUtil/formatDuration (Lnet/minecraft/world/effect/MobEffectInstance;F)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/world/effect/MobEffects/ ()V net/minecraft/world/effect/MobEffects/ ()V +MD: net/minecraft/world/effect/MobEffects/ ()V net/minecraft/world/effect/MobEffects/ ()V +MD: net/minecraft/world/effect/MobEffects/m_19623_ (ILjava/lang/String;Lnet/minecraft/world/effect/MobEffect;)Lnet/minecraft/world/effect/MobEffect; net/minecraft/world/effect/MobEffects/register (ILjava/lang/String;Lnet/minecraft/world/effect/MobEffect;)Lnet/minecraft/world/effect/MobEffect; +MD: net/minecraft/world/effect/MobEffects/m_216966_ ()Lnet/minecraft/world/effect/MobEffectInstance$FactorData; net/minecraft/world/effect/MobEffects/lambda$static$0 ()Lnet/minecraft/world/effect/MobEffectInstance$FactorData; +MD: net/minecraft/world/effect/MobEffects$1/ (Lnet/minecraft/world/effect/MobEffectCategory;I)V net/minecraft/world/effect/MobEffects$1/ (Lnet/minecraft/world/effect/MobEffectCategory;I)V +MD: net/minecraft/world/effect/MobEffects$1/m_6584_ (II)Z net/minecraft/world/effect/MobEffects$1/isDurationEffectTick (II)Z +MD: net/minecraft/world/effect/MobEffects$1/m_6742_ (Lnet/minecraft/world/entity/LivingEntity;I)V net/minecraft/world/effect/MobEffects$1/applyEffectTick (Lnet/minecraft/world/entity/LivingEntity;I)V +MD: net/minecraft/world/entity/AgeableMob/ ()V net/minecraft/world/entity/AgeableMob/ ()V +MD: net/minecraft/world/entity/AgeableMob/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V net/minecraft/world/entity/AgeableMob/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V +MD: net/minecraft/world/entity/AgeableMob/m_142606_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/AgeableMob;)Lnet/minecraft/world/entity/AgeableMob; net/minecraft/world/entity/AgeableMob/getBreedOffspring (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/AgeableMob;)Lnet/minecraft/world/entity/AgeableMob; +MD: net/minecraft/world/entity/AgeableMob/m_146740_ (IZ)V net/minecraft/world/entity/AgeableMob/ageUp (IZ)V +MD: net/minecraft/world/entity/AgeableMob/m_146758_ (I)V net/minecraft/world/entity/AgeableMob/ageUp (I)V +MD: net/minecraft/world/entity/AgeableMob/m_146762_ (I)V net/minecraft/world/entity/AgeableMob/setAge (I)V +MD: net/minecraft/world/entity/AgeableMob/m_146764_ ()I net/minecraft/world/entity/AgeableMob/getAge ()I +MD: net/minecraft/world/entity/AgeableMob/m_216967_ (I)I net/minecraft/world/entity/AgeableMob/getSpeedUpSecondsWhenFeeding (I)I +MD: net/minecraft/world/entity/AgeableMob/m_30232_ ()V net/minecraft/world/entity/AgeableMob/ageBoundaryReached ()V +MD: net/minecraft/world/entity/AgeableMob/m_35506_ ()Z net/minecraft/world/entity/AgeableMob/canBreed ()Z +MD: net/minecraft/world/entity/AgeableMob/m_6162_ ()Z net/minecraft/world/entity/AgeableMob/isBaby ()Z +MD: net/minecraft/world/entity/AgeableMob/m_6518_ (Lnet/minecraft/world/level/ServerLevelAccessor;Lnet/minecraft/world/DifficultyInstance;Lnet/minecraft/world/entity/MobSpawnType;Lnet/minecraft/world/entity/SpawnGroupData;Lnet/minecraft/nbt/CompoundTag;)Lnet/minecraft/world/entity/SpawnGroupData; net/minecraft/world/entity/AgeableMob/finalizeSpawn (Lnet/minecraft/world/level/ServerLevelAccessor;Lnet/minecraft/world/DifficultyInstance;Lnet/minecraft/world/entity/MobSpawnType;Lnet/minecraft/world/entity/SpawnGroupData;Lnet/minecraft/nbt/CompoundTag;)Lnet/minecraft/world/entity/SpawnGroupData; +MD: net/minecraft/world/entity/AgeableMob/m_6863_ (Z)V net/minecraft/world/entity/AgeableMob/setBaby (Z)V +MD: net/minecraft/world/entity/AgeableMob/m_7350_ (Lnet/minecraft/network/syncher/EntityDataAccessor;)V net/minecraft/world/entity/AgeableMob/onSyncedDataUpdated (Lnet/minecraft/network/syncher/EntityDataAccessor;)V +MD: net/minecraft/world/entity/AgeableMob/m_7378_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/entity/AgeableMob/readAdditionalSaveData (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/entity/AgeableMob/m_7380_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/entity/AgeableMob/addAdditionalSaveData (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/entity/AgeableMob/m_8097_ ()V net/minecraft/world/entity/AgeableMob/defineSynchedData ()V +MD: net/minecraft/world/entity/AgeableMob/m_8107_ ()V net/minecraft/world/entity/AgeableMob/aiStep ()V +MD: net/minecraft/world/entity/AgeableMob$AgeableMobGroupData/ (ZF)V net/minecraft/world/entity/AgeableMob$AgeableMobGroupData/ (ZF)V +MD: net/minecraft/world/entity/AgeableMob$AgeableMobGroupData/ (Z)V net/minecraft/world/entity/AgeableMob$AgeableMobGroupData/ (Z)V +MD: net/minecraft/world/entity/AgeableMob$AgeableMobGroupData/ (F)V net/minecraft/world/entity/AgeableMob$AgeableMobGroupData/ (F)V +MD: net/minecraft/world/entity/AgeableMob$AgeableMobGroupData/m_146777_ ()I net/minecraft/world/entity/AgeableMob$AgeableMobGroupData/getGroupSize ()I +MD: net/minecraft/world/entity/AgeableMob$AgeableMobGroupData/m_146778_ ()V net/minecraft/world/entity/AgeableMob$AgeableMobGroupData/increaseGroupSizeByOne ()V +MD: net/minecraft/world/entity/AgeableMob$AgeableMobGroupData/m_146779_ ()Z net/minecraft/world/entity/AgeableMob$AgeableMobGroupData/isShouldSpawnBaby ()Z +MD: net/minecraft/world/entity/AgeableMob$AgeableMobGroupData/m_146780_ ()F net/minecraft/world/entity/AgeableMob$AgeableMobGroupData/getBabySpawnChance ()F +MD: net/minecraft/world/entity/AnimationState/ ()V net/minecraft/world/entity/AnimationState/ ()V +MD: net/minecraft/world/entity/AnimationState/m_216973_ ()V net/minecraft/world/entity/AnimationState/stop ()V +MD: net/minecraft/world/entity/AnimationState/m_216974_ (FF)V net/minecraft/world/entity/AnimationState/updateTime (FF)V +MD: net/minecraft/world/entity/AnimationState/m_216977_ (I)V net/minecraft/world/entity/AnimationState/start (I)V +MD: net/minecraft/world/entity/AnimationState/m_216979_ (Ljava/util/function/Consumer;)V net/minecraft/world/entity/AnimationState/ifStarted (Ljava/util/function/Consumer;)V +MD: net/minecraft/world/entity/AnimationState/m_216981_ ()J net/minecraft/world/entity/AnimationState/getAccumulatedTime ()J +MD: net/minecraft/world/entity/AnimationState/m_216982_ (I)V net/minecraft/world/entity/AnimationState/startIfStopped (I)V +MD: net/minecraft/world/entity/AnimationState/m_216984_ ()Z net/minecraft/world/entity/AnimationState/isStarted ()Z +MD: net/minecraft/world/entity/AnimationState/m_246184_ (ZI)V net/minecraft/world/entity/AnimationState/animateWhen (ZI)V +MD: net/minecraft/world/entity/AreaEffectCloud/ ()V net/minecraft/world/entity/AreaEffectCloud/ ()V +MD: net/minecraft/world/entity/AreaEffectCloud/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V net/minecraft/world/entity/AreaEffectCloud/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V +MD: net/minecraft/world/entity/AreaEffectCloud/ (Lnet/minecraft/world/level/Level;DDD)V net/minecraft/world/entity/AreaEffectCloud/ (Lnet/minecraft/world/level/Level;DDD)V +MD: net/minecraft/world/entity/AreaEffectCloud/m_146785_ (I)V net/minecraft/world/entity/AreaEffectCloud/setDurationOnUse (I)V +MD: net/minecraft/world/entity/AreaEffectCloud/m_146787_ ()F net/minecraft/world/entity/AreaEffectCloud/getRadiusOnUse ()F +MD: net/minecraft/world/entity/AreaEffectCloud/m_146788_ ()F net/minecraft/world/entity/AreaEffectCloud/getRadiusPerTick ()F +MD: net/minecraft/world/entity/AreaEffectCloud/m_146789_ ()I net/minecraft/world/entity/AreaEffectCloud/getDurationOnUse ()I +MD: net/minecraft/world/entity/AreaEffectCloud/m_146790_ ()I net/minecraft/world/entity/AreaEffectCloud/getWaitTime ()I +MD: net/minecraft/world/entity/AreaEffectCloud/m_146791_ ()Lnet/minecraft/world/item/alchemy/Potion; net/minecraft/world/entity/AreaEffectCloud/getPotion ()Lnet/minecraft/world/item/alchemy/Potion; +MD: net/minecraft/world/entity/AreaEffectCloud/m_19712_ (F)V net/minecraft/world/entity/AreaEffectCloud/setRadius (F)V +MD: net/minecraft/world/entity/AreaEffectCloud/m_19714_ (I)V net/minecraft/world/entity/AreaEffectCloud/setFixedColor (I)V +MD: net/minecraft/world/entity/AreaEffectCloud/m_19716_ (Lnet/minecraft/world/effect/MobEffectInstance;)V net/minecraft/world/entity/AreaEffectCloud/addEffect (Lnet/minecraft/world/effect/MobEffectInstance;)V +MD: net/minecraft/world/entity/AreaEffectCloud/m_19718_ (Lnet/minecraft/world/entity/LivingEntity;)V net/minecraft/world/entity/AreaEffectCloud/setOwner (Lnet/minecraft/world/entity/LivingEntity;)V +MD: net/minecraft/world/entity/AreaEffectCloud/m_19722_ (Lnet/minecraft/world/item/alchemy/Potion;)V net/minecraft/world/entity/AreaEffectCloud/setPotion (Lnet/minecraft/world/item/alchemy/Potion;)V +MD: net/minecraft/world/entity/AreaEffectCloud/m_19724_ (Lnet/minecraft/core/particles/ParticleOptions;)V net/minecraft/world/entity/AreaEffectCloud/setParticle (Lnet/minecraft/core/particles/ParticleOptions;)V +MD: net/minecraft/world/entity/AreaEffectCloud/m_19730_ (Z)V net/minecraft/world/entity/AreaEffectCloud/setWaiting (Z)V +MD: net/minecraft/world/entity/AreaEffectCloud/m_19732_ (F)V net/minecraft/world/entity/AreaEffectCloud/setRadiusOnUse (F)V +MD: net/minecraft/world/entity/AreaEffectCloud/m_19734_ (I)V net/minecraft/world/entity/AreaEffectCloud/setDuration (I)V +MD: net/minecraft/world/entity/AreaEffectCloud/m_19738_ (F)V net/minecraft/world/entity/AreaEffectCloud/setRadiusPerTick (F)V +MD: net/minecraft/world/entity/AreaEffectCloud/m_19740_ (I)V net/minecraft/world/entity/AreaEffectCloud/setWaitTime (I)V +MD: net/minecraft/world/entity/AreaEffectCloud/m_19743_ ()F net/minecraft/world/entity/AreaEffectCloud/getRadius ()F +MD: net/minecraft/world/entity/AreaEffectCloud/m_19744_ ()I net/minecraft/world/entity/AreaEffectCloud/getColor ()I +MD: net/minecraft/world/entity/AreaEffectCloud/m_19745_ ()Lnet/minecraft/core/particles/ParticleOptions; net/minecraft/world/entity/AreaEffectCloud/getParticle ()Lnet/minecraft/core/particles/ParticleOptions; +MD: net/minecraft/world/entity/AreaEffectCloud/m_19747_ ()Z net/minecraft/world/entity/AreaEffectCloud/isWaiting ()Z +MD: net/minecraft/world/entity/AreaEffectCloud/m_19748_ ()I net/minecraft/world/entity/AreaEffectCloud/getDuration ()I +MD: net/minecraft/world/entity/AreaEffectCloud/m_19749_ ()Lnet/minecraft/world/entity/Entity; net/minecraft/world/entity/AreaEffectCloud/getOwner ()Lnet/minecraft/world/entity/Entity; +MD: net/minecraft/world/entity/AreaEffectCloud/m_19749_ ()Lnet/minecraft/world/entity/LivingEntity; net/minecraft/world/entity/AreaEffectCloud/getOwner ()Lnet/minecraft/world/entity/LivingEntity; +MD: net/minecraft/world/entity/AreaEffectCloud/m_19750_ ()V net/minecraft/world/entity/AreaEffectCloud/updateColor ()V +MD: net/minecraft/world/entity/AreaEffectCloud/m_267557_ (I)I net/minecraft/world/entity/AreaEffectCloud/lambda$tick$1 (I)I +MD: net/minecraft/world/entity/AreaEffectCloud/m_287056_ (Ljava/util/Map$Entry;)Z net/minecraft/world/entity/AreaEffectCloud/lambda$tick$0 (Ljava/util/Map$Entry;)Z +MD: net/minecraft/world/entity/AreaEffectCloud/m_6210_ ()V net/minecraft/world/entity/AreaEffectCloud/refreshDimensions ()V +MD: net/minecraft/world/entity/AreaEffectCloud/m_6972_ (Lnet/minecraft/world/entity/Pose;)Lnet/minecraft/world/entity/EntityDimensions; net/minecraft/world/entity/AreaEffectCloud/getDimensions (Lnet/minecraft/world/entity/Pose;)Lnet/minecraft/world/entity/EntityDimensions; +MD: net/minecraft/world/entity/AreaEffectCloud/m_7350_ (Lnet/minecraft/network/syncher/EntityDataAccessor;)V net/minecraft/world/entity/AreaEffectCloud/onSyncedDataUpdated (Lnet/minecraft/network/syncher/EntityDataAccessor;)V +MD: net/minecraft/world/entity/AreaEffectCloud/m_7378_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/entity/AreaEffectCloud/readAdditionalSaveData (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/entity/AreaEffectCloud/m_7380_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/entity/AreaEffectCloud/addAdditionalSaveData (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/entity/AreaEffectCloud/m_7752_ ()Lnet/minecraft/world/level/material/PushReaction; net/minecraft/world/entity/AreaEffectCloud/getPistonPushReaction ()Lnet/minecraft/world/level/material/PushReaction; +MD: net/minecraft/world/entity/AreaEffectCloud/m_8097_ ()V net/minecraft/world/entity/AreaEffectCloud/defineSynchedData ()V +MD: net/minecraft/world/entity/AreaEffectCloud/m_8119_ ()V net/minecraft/world/entity/AreaEffectCloud/tick ()V +MD: net/minecraft/world/entity/Attackable/m_271686_ ()Lnet/minecraft/world/entity/LivingEntity; net/minecraft/world/entity/Attackable/getLastAttacker ()Lnet/minecraft/world/entity/LivingEntity; +MD: net/minecraft/world/entity/Display/ ()V net/minecraft/world/entity/Display/ ()V +MD: net/minecraft/world/entity/Display/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V net/minecraft/world/entity/Display/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V +MD: net/minecraft/world/entity/Display/m_146922_ (F)V net/minecraft/world/entity/Display/setYRot (F)V +MD: net/minecraft/world/entity/Display/m_146926_ (F)V net/minecraft/world/entity/Display/setXRot (F)V +MD: net/minecraft/world/entity/Display/m_19876_ ()I net/minecraft/world/entity/Display/getTeamColor ()I +MD: net/minecraft/world/entity/Display/m_269003_ (Lcom/mojang/datafixers/util/Pair;)V net/minecraft/world/entity/Display/lambda$readAdditionalSaveData$1 (Lcom/mojang/datafixers/util/Pair;)V +MD: net/minecraft/world/entity/Display/m_269026_ (I)V net/minecraft/world/entity/Display/setGlowColorOverride (I)V +MD: net/minecraft/world/entity/Display/m_269034_ ()I net/minecraft/world/entity/Display/getGlowColorOverride ()I +MD: net/minecraft/world/entity/Display/m_269041_ ()I net/minecraft/world/entity/Display/getPackedBrightnessOverride ()I +MD: net/minecraft/world/entity/Display/m_269044_ (Lnet/minecraft/nbt/CompoundTag;Lnet/minecraft/nbt/Tag;)V net/minecraft/world/entity/Display/lambda$addAdditionalSaveData$4 (Lnet/minecraft/nbt/CompoundTag;Lnet/minecraft/nbt/Tag;)V +MD: net/minecraft/world/entity/Display/m_269081_ ()F net/minecraft/world/entity/Display/getViewRange ()F +MD: net/minecraft/world/entity/Display/m_269087_ (F)V net/minecraft/world/entity/Display/setHeight (F)V +MD: net/minecraft/world/entity/Display/m_269102_ ()Lnet/minecraft/util/Brightness; net/minecraft/world/entity/Display/getBrightnessOverride ()Lnet/minecraft/util/Brightness; +MD: net/minecraft/world/entity/Display/m_269155_ ()F net/minecraft/world/entity/Display/getShadowStrength ()F +MD: net/minecraft/world/entity/Display/m_269190_ ()Lorg/joml/Quaternionf; net/minecraft/world/entity/Display/orientation ()Lorg/joml/Quaternionf; +MD: net/minecraft/world/entity/Display/m_269214_ (Lcom/mojang/math/Transformation;)V net/minecraft/world/entity/Display/setTransformation (Lcom/mojang/math/Transformation;)V +MD: net/minecraft/world/entity/Display/m_269215_ (F)V net/minecraft/world/entity/Display/setViewRange (F)V +MD: net/minecraft/world/entity/Display/m_269218_ ()Lnet/minecraft/world/entity/Display$BillboardConstraints; net/minecraft/world/entity/Display/getBillboardConstraints ()Lnet/minecraft/world/entity/Display$BillboardConstraints; +MD: net/minecraft/world/entity/Display/m_269228_ (F)V net/minecraft/world/entity/Display/setShadowStrength (F)V +MD: net/minecraft/world/entity/Display/m_269245_ (Lnet/minecraft/nbt/CompoundTag;Lnet/minecraft/nbt/Tag;)V net/minecraft/world/entity/Display/lambda$addAdditionalSaveData$3 (Lnet/minecraft/nbt/CompoundTag;Lnet/minecraft/nbt/Tag;)V +MD: net/minecraft/world/entity/Display/m_269261_ (Lcom/mojang/datafixers/util/Pair;)V net/minecraft/world/entity/Display/lambda$readAdditionalSaveData$2 (Lcom/mojang/datafixers/util/Pair;)V +MD: net/minecraft/world/entity/Display/m_269265_ (Lnet/minecraft/nbt/CompoundTag;Lnet/minecraft/nbt/Tag;)V net/minecraft/world/entity/Display/lambda$addAdditionalSaveData$5 (Lnet/minecraft/nbt/CompoundTag;Lnet/minecraft/nbt/Tag;)V +MD: net/minecraft/world/entity/Display/m_269272_ ()I net/minecraft/world/entity/Display/getInterpolationDuration ()I +MD: net/minecraft/world/entity/Display/m_269279_ (Lcom/mojang/datafixers/util/Pair;)V net/minecraft/world/entity/Display/lambda$readAdditionalSaveData$0 (Lcom/mojang/datafixers/util/Pair;)V +MD: net/minecraft/world/entity/Display/m_269317_ (I)V net/minecraft/world/entity/Display/setInterpolationDuration (I)V +MD: net/minecraft/world/entity/Display/m_269361_ ()V net/minecraft/world/entity/Display/updateCulling ()V +MD: net/minecraft/world/entity/Display/m_269410_ ()F net/minecraft/world/entity/Display/getHeight ()F +MD: net/minecraft/world/entity/Display/m_269417_ ()V net/minecraft/world/entity/Display/updateOrientation ()V +MD: net/minecraft/world/entity/Display/m_269423_ (Lnet/minecraft/world/entity/Display$BillboardConstraints;)V net/minecraft/world/entity/Display/setBillboardConstraints (Lnet/minecraft/world/entity/Display$BillboardConstraints;)V +MD: net/minecraft/world/entity/Display/m_269441_ (F)V net/minecraft/world/entity/Display/setWidth (F)V +MD: net/minecraft/world/entity/Display/m_269448_ (Lnet/minecraft/network/syncher/SynchedEntityData;)Lcom/mojang/math/Transformation; net/minecraft/world/entity/Display/createTransformation (Lnet/minecraft/network/syncher/SynchedEntityData;)Lcom/mojang/math/Transformation; +MD: net/minecraft/world/entity/Display/m_269459_ ()F net/minecraft/world/entity/Display/getShadowRadius ()F +MD: net/minecraft/world/entity/Display/m_269526_ (F)V net/minecraft/world/entity/Display/setShadowRadius (F)V +MD: net/minecraft/world/entity/Display/m_269558_ ()F net/minecraft/world/entity/Display/getWidth ()F +MD: net/minecraft/world/entity/Display/m_269586_ (Lnet/minecraft/util/Brightness;)V net/minecraft/world/entity/Display/setBrightnessOverride (Lnet/minecraft/util/Brightness;)V +MD: net/minecraft/world/entity/Display/m_272147_ (F)F net/minecraft/world/entity/Display/calculateInterpolationProgress (F)F +MD: net/minecraft/world/entity/Display/m_276345_ (I)V net/minecraft/world/entity/Display/setInterpolationDelay (I)V +MD: net/minecraft/world/entity/Display/m_276347_ ()I net/minecraft/world/entity/Display/getInterpolationDelay ()I +MD: net/minecraft/world/entity/Display/m_276825_ (ZF)V net/minecraft/world/entity/Display/updateRenderSubState (ZF)V +MD: net/minecraft/world/entity/Display/m_276844_ ()Lnet/minecraft/world/entity/Display$RenderState; net/minecraft/world/entity/Display/renderState ()Lnet/minecraft/world/entity/Display$RenderState; +MD: net/minecraft/world/entity/Display/m_277098_ (Lnet/minecraft/world/entity/Display$RenderState;F)Lnet/minecraft/world/entity/Display$RenderState; net/minecraft/world/entity/Display/createInterpolatedRenderState (Lnet/minecraft/world/entity/Display$RenderState;F)Lnet/minecraft/world/entity/Display$RenderState; +MD: net/minecraft/world/entity/Display/m_277152_ ()Lnet/minecraft/world/entity/Display$RenderState; net/minecraft/world/entity/Display/createFreshRenderState ()Lnet/minecraft/world/entity/Display$RenderState; +MD: net/minecraft/world/entity/Display/m_5654_ ()Lnet/minecraft/network/protocol/Packet; net/minecraft/world/entity/Display/getAddEntityPacket ()Lnet/minecraft/network/protocol/Packet; +MD: net/minecraft/world/entity/Display/m_6034_ (DDD)V net/minecraft/world/entity/Display/setPos (DDD)V +MD: net/minecraft/world/entity/Display/m_6090_ ()Z net/minecraft/world/entity/Display/isIgnoringBlockTriggers ()Z +MD: net/minecraft/world/entity/Display/m_6783_ (D)Z net/minecraft/world/entity/Display/shouldRenderAtSqrDistance (D)Z +MD: net/minecraft/world/entity/Display/m_6921_ ()Lnet/minecraft/world/phys/AABB; net/minecraft/world/entity/Display/getBoundingBoxForCulling ()Lnet/minecraft/world/phys/AABB; +MD: net/minecraft/world/entity/Display/m_7350_ (Lnet/minecraft/network/syncher/EntityDataAccessor;)V net/minecraft/world/entity/Display/onSyncedDataUpdated (Lnet/minecraft/network/syncher/EntityDataAccessor;)V +MD: net/minecraft/world/entity/Display/m_7378_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/entity/Display/readAdditionalSaveData (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/entity/Display/m_7380_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/entity/Display/addAdditionalSaveData (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/entity/Display/m_7752_ ()Lnet/minecraft/world/level/material/PushReaction; net/minecraft/world/entity/Display/getPistonPushReaction ()Lnet/minecraft/world/level/material/PushReaction; +MD: net/minecraft/world/entity/Display/m_8097_ ()V net/minecraft/world/entity/Display/defineSynchedData ()V +MD: net/minecraft/world/entity/Display/m_8119_ ()V net/minecraft/world/entity/Display/tick ()V +MD: net/minecraft/world/entity/Display$1/ ()V net/minecraft/world/entity/Display$1/ ()V +MD: net/minecraft/world/entity/Display$BillboardConstraints/ ()V net/minecraft/world/entity/Display$BillboardConstraints/ ()V +MD: net/minecraft/world/entity/Display$BillboardConstraints/ (Ljava/lang/String;IBLjava/lang/String;)V net/minecraft/world/entity/Display$BillboardConstraints/ (Ljava/lang/String;IBLjava/lang/String;)V +MD: net/minecraft/world/entity/Display$BillboardConstraints/m_269016_ ()B net/minecraft/world/entity/Display$BillboardConstraints/getId ()B +MD: net/minecraft/world/entity/Display$BillboardConstraints/m_269521_ ()[Lnet/minecraft/world/entity/Display$BillboardConstraints; net/minecraft/world/entity/Display$BillboardConstraints/$values ()[Lnet/minecraft/world/entity/Display$BillboardConstraints; +MD: net/minecraft/world/entity/Display$BillboardConstraints/m_7912_ ()Ljava/lang/String; net/minecraft/world/entity/Display$BillboardConstraints/getSerializedName ()Ljava/lang/String; +MD: net/minecraft/world/entity/Display$BillboardConstraints/valueOf (Ljava/lang/String;)Lnet/minecraft/world/entity/Display$BillboardConstraints; net/minecraft/world/entity/Display$BillboardConstraints/valueOf (Ljava/lang/String;)Lnet/minecraft/world/entity/Display$BillboardConstraints; +MD: net/minecraft/world/entity/Display$BillboardConstraints/values ()[Lnet/minecraft/world/entity/Display$BillboardConstraints; net/minecraft/world/entity/Display$BillboardConstraints/values ()[Lnet/minecraft/world/entity/Display$BillboardConstraints; +MD: net/minecraft/world/entity/Display$BlockDisplay/ ()V net/minecraft/world/entity/Display$BlockDisplay/ ()V +MD: net/minecraft/world/entity/Display$BlockDisplay/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V net/minecraft/world/entity/Display$BlockDisplay/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V +MD: net/minecraft/world/entity/Display$BlockDisplay/m_269134_ ()Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/entity/Display$BlockDisplay/getBlockState ()Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/entity/Display$BlockDisplay/m_269329_ (Lnet/minecraft/world/level/block/state/BlockState;)V net/minecraft/world/entity/Display$BlockDisplay/setBlockState (Lnet/minecraft/world/level/block/state/BlockState;)V +MD: net/minecraft/world/entity/Display$BlockDisplay/m_276825_ (ZF)V net/minecraft/world/entity/Display$BlockDisplay/updateRenderSubState (ZF)V +MD: net/minecraft/world/entity/Display$BlockDisplay/m_276881_ ()Lnet/minecraft/world/entity/Display$BlockDisplay$BlockRenderState; net/minecraft/world/entity/Display$BlockDisplay/blockRenderState ()Lnet/minecraft/world/entity/Display$BlockDisplay$BlockRenderState; +MD: net/minecraft/world/entity/Display$BlockDisplay/m_7350_ (Lnet/minecraft/network/syncher/EntityDataAccessor;)V net/minecraft/world/entity/Display$BlockDisplay/onSyncedDataUpdated (Lnet/minecraft/network/syncher/EntityDataAccessor;)V +MD: net/minecraft/world/entity/Display$BlockDisplay/m_7378_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/entity/Display$BlockDisplay/readAdditionalSaveData (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/entity/Display$BlockDisplay/m_7380_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/entity/Display$BlockDisplay/addAdditionalSaveData (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/entity/Display$BlockDisplay/m_8097_ ()V net/minecraft/world/entity/Display$BlockDisplay/defineSynchedData ()V +MD: net/minecraft/world/entity/Display$BlockDisplay$BlockRenderState/ (Lnet/minecraft/world/level/block/state/BlockState;)V net/minecraft/world/entity/Display$BlockDisplay$BlockRenderState/ (Lnet/minecraft/world/level/block/state/BlockState;)V +MD: net/minecraft/world/entity/Display$BlockDisplay$BlockRenderState/equals (Ljava/lang/Object;)Z net/minecraft/world/entity/Display$BlockDisplay$BlockRenderState/equals (Ljava/lang/Object;)Z +MD: net/minecraft/world/entity/Display$BlockDisplay$BlockRenderState/f_276526_ ()Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/entity/Display$BlockDisplay$BlockRenderState/blockState ()Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/entity/Display$BlockDisplay$BlockRenderState/hashCode ()I net/minecraft/world/entity/Display$BlockDisplay$BlockRenderState/hashCode ()I +MD: net/minecraft/world/entity/Display$BlockDisplay$BlockRenderState/toString ()Ljava/lang/String; net/minecraft/world/entity/Display$BlockDisplay$BlockRenderState/toString ()Ljava/lang/String; +MD: net/minecraft/world/entity/Display$ColorInterpolator/ (II)V net/minecraft/world/entity/Display$ColorInterpolator/ (II)V +MD: net/minecraft/world/entity/Display$ColorInterpolator/equals (Ljava/lang/Object;)Z net/minecraft/world/entity/Display$ColorInterpolator/equals (Ljava/lang/Object;)Z +MD: net/minecraft/world/entity/Display$ColorInterpolator/f_276509_ ()I net/minecraft/world/entity/Display$ColorInterpolator/current ()I +MD: net/minecraft/world/entity/Display$ColorInterpolator/f_276650_ ()I net/minecraft/world/entity/Display$ColorInterpolator/previous ()I +MD: net/minecraft/world/entity/Display$ColorInterpolator/hashCode ()I net/minecraft/world/entity/Display$ColorInterpolator/hashCode ()I +MD: net/minecraft/world/entity/Display$ColorInterpolator/m_269120_ (F)I net/minecraft/world/entity/Display$ColorInterpolator/get (F)I +MD: net/minecraft/world/entity/Display$ColorInterpolator/toString ()Ljava/lang/String; net/minecraft/world/entity/Display$ColorInterpolator/toString ()Ljava/lang/String; +MD: net/minecraft/world/entity/Display$FloatInterpolator/m_269229_ (F)F net/minecraft/world/entity/Display$FloatInterpolator/get (F)F +MD: net/minecraft/world/entity/Display$FloatInterpolator/m_276789_ (FF)F net/minecraft/world/entity/Display$FloatInterpolator/lambda$constant$0 (FF)F +MD: net/minecraft/world/entity/Display$FloatInterpolator/m_277016_ (F)Lnet/minecraft/world/entity/Display$FloatInterpolator; net/minecraft/world/entity/Display$FloatInterpolator/constant (F)Lnet/minecraft/world/entity/Display$FloatInterpolator; +MD: net/minecraft/world/entity/Display$GenericInterpolator/m_269136_ (F)Ljava/lang/Object; net/minecraft/world/entity/Display$GenericInterpolator/get (F)Ljava/lang/Object; +MD: net/minecraft/world/entity/Display$GenericInterpolator/m_276793_ (Ljava/lang/Object;F)Ljava/lang/Object; net/minecraft/world/entity/Display$GenericInterpolator/lambda$constant$0 (Ljava/lang/Object;F)Ljava/lang/Object; +MD: net/minecraft/world/entity/Display$GenericInterpolator/m_277024_ (Ljava/lang/Object;)Lnet/minecraft/world/entity/Display$GenericInterpolator; net/minecraft/world/entity/Display$GenericInterpolator/constant (Ljava/lang/Object;)Lnet/minecraft/world/entity/Display$GenericInterpolator; +MD: net/minecraft/world/entity/Display$IntInterpolator/m_269120_ (F)I net/minecraft/world/entity/Display$IntInterpolator/get (F)I +MD: net/minecraft/world/entity/Display$IntInterpolator/m_276859_ (I)Lnet/minecraft/world/entity/Display$IntInterpolator; net/minecraft/world/entity/Display$IntInterpolator/constant (I)Lnet/minecraft/world/entity/Display$IntInterpolator; +MD: net/minecraft/world/entity/Display$IntInterpolator/m_276992_ (IF)I net/minecraft/world/entity/Display$IntInterpolator/lambda$constant$0 (IF)I +MD: net/minecraft/world/entity/Display$ItemDisplay/ ()V net/minecraft/world/entity/Display$ItemDisplay/ ()V +MD: net/minecraft/world/entity/Display$ItemDisplay/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V net/minecraft/world/entity/Display$ItemDisplay/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V +MD: net/minecraft/world/entity/Display$ItemDisplay/m_141942_ (I)Lnet/minecraft/world/entity/SlotAccess; net/minecraft/world/entity/Display$ItemDisplay/getSlot (I)Lnet/minecraft/world/entity/SlotAccess; +MD: net/minecraft/world/entity/Display$ItemDisplay/m_269028_ (Lnet/minecraft/world/item/ItemDisplayContext;)V net/minecraft/world/entity/Display$ItemDisplay/setItemTransform (Lnet/minecraft/world/item/ItemDisplayContext;)V +MD: net/minecraft/world/entity/Display$ItemDisplay/m_269045_ (Lnet/minecraft/nbt/CompoundTag;Lnet/minecraft/nbt/Tag;)V net/minecraft/world/entity/Display$ItemDisplay/lambda$addAdditionalSaveData$1 (Lnet/minecraft/nbt/CompoundTag;Lnet/minecraft/nbt/Tag;)V +MD: net/minecraft/world/entity/Display$ItemDisplay/m_269144_ (Lcom/mojang/datafixers/util/Pair;)V net/minecraft/world/entity/Display$ItemDisplay/lambda$readAdditionalSaveData$0 (Lcom/mojang/datafixers/util/Pair;)V +MD: net/minecraft/world/entity/Display$ItemDisplay/m_269362_ (Lnet/minecraft/world/item/ItemStack;)V net/minecraft/world/entity/Display$ItemDisplay/setItemStack (Lnet/minecraft/world/item/ItemStack;)V +MD: net/minecraft/world/entity/Display$ItemDisplay/m_269386_ ()Lnet/minecraft/world/item/ItemDisplayContext; net/minecraft/world/entity/Display$ItemDisplay/getItemTransform ()Lnet/minecraft/world/item/ItemDisplayContext; +MD: net/minecraft/world/entity/Display$ItemDisplay/m_269568_ ()Lnet/minecraft/world/item/ItemStack; net/minecraft/world/entity/Display$ItemDisplay/getItemStack ()Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/entity/Display$ItemDisplay/m_276825_ (ZF)V net/minecraft/world/entity/Display$ItemDisplay/updateRenderSubState (ZF)V +MD: net/minecraft/world/entity/Display$ItemDisplay/m_277122_ ()Lnet/minecraft/world/entity/Display$ItemDisplay$ItemRenderState; net/minecraft/world/entity/Display$ItemDisplay/itemRenderState ()Lnet/minecraft/world/entity/Display$ItemDisplay$ItemRenderState; +MD: net/minecraft/world/entity/Display$ItemDisplay/m_7350_ (Lnet/minecraft/network/syncher/EntityDataAccessor;)V net/minecraft/world/entity/Display$ItemDisplay/onSyncedDataUpdated (Lnet/minecraft/network/syncher/EntityDataAccessor;)V +MD: net/minecraft/world/entity/Display$ItemDisplay/m_7378_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/entity/Display$ItemDisplay/readAdditionalSaveData (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/entity/Display$ItemDisplay/m_7380_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/entity/Display$ItemDisplay/addAdditionalSaveData (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/entity/Display$ItemDisplay/m_8097_ ()V net/minecraft/world/entity/Display$ItemDisplay/defineSynchedData ()V +MD: net/minecraft/world/entity/Display$ItemDisplay$1/ (Lnet/minecraft/world/entity/Display$ItemDisplay;)V net/minecraft/world/entity/Display$ItemDisplay$1/ (Lnet/minecraft/world/entity/Display$ItemDisplay;)V +MD: net/minecraft/world/entity/Display$ItemDisplay$1/m_142104_ (Lnet/minecraft/world/item/ItemStack;)Z net/minecraft/world/entity/Display$ItemDisplay$1/set (Lnet/minecraft/world/item/ItemStack;)Z +MD: net/minecraft/world/entity/Display$ItemDisplay$1/m_142196_ ()Lnet/minecraft/world/item/ItemStack; net/minecraft/world/entity/Display$ItemDisplay$1/get ()Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/entity/Display$ItemDisplay$ItemRenderState/ (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/item/ItemDisplayContext;)V net/minecraft/world/entity/Display$ItemDisplay$ItemRenderState/ (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/item/ItemDisplayContext;)V +MD: net/minecraft/world/entity/Display$ItemDisplay$ItemRenderState/equals (Ljava/lang/Object;)Z net/minecraft/world/entity/Display$ItemDisplay$ItemRenderState/equals (Ljava/lang/Object;)Z +MD: net/minecraft/world/entity/Display$ItemDisplay$ItemRenderState/f_276600_ ()Lnet/minecraft/world/item/ItemStack; net/minecraft/world/entity/Display$ItemDisplay$ItemRenderState/itemStack ()Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/entity/Display$ItemDisplay$ItemRenderState/f_276629_ ()Lnet/minecraft/world/item/ItemDisplayContext; net/minecraft/world/entity/Display$ItemDisplay$ItemRenderState/itemTransform ()Lnet/minecraft/world/item/ItemDisplayContext; +MD: net/minecraft/world/entity/Display$ItemDisplay$ItemRenderState/hashCode ()I net/minecraft/world/entity/Display$ItemDisplay$ItemRenderState/hashCode ()I +MD: net/minecraft/world/entity/Display$ItemDisplay$ItemRenderState/toString ()Ljava/lang/String; net/minecraft/world/entity/Display$ItemDisplay$ItemRenderState/toString ()Ljava/lang/String; +MD: net/minecraft/world/entity/Display$LinearFloatInterpolator/ (FF)V net/minecraft/world/entity/Display$LinearFloatInterpolator/ (FF)V +MD: net/minecraft/world/entity/Display$LinearFloatInterpolator/equals (Ljava/lang/Object;)Z net/minecraft/world/entity/Display$LinearFloatInterpolator/equals (Ljava/lang/Object;)Z +MD: net/minecraft/world/entity/Display$LinearFloatInterpolator/f_276496_ ()F net/minecraft/world/entity/Display$LinearFloatInterpolator/previous ()F +MD: net/minecraft/world/entity/Display$LinearFloatInterpolator/f_276689_ ()F net/minecraft/world/entity/Display$LinearFloatInterpolator/current ()F +MD: net/minecraft/world/entity/Display$LinearFloatInterpolator/hashCode ()I net/minecraft/world/entity/Display$LinearFloatInterpolator/hashCode ()I +MD: net/minecraft/world/entity/Display$LinearFloatInterpolator/m_269229_ (F)F net/minecraft/world/entity/Display$LinearFloatInterpolator/get (F)F +MD: net/minecraft/world/entity/Display$LinearFloatInterpolator/toString ()Ljava/lang/String; net/minecraft/world/entity/Display$LinearFloatInterpolator/toString ()Ljava/lang/String; +MD: net/minecraft/world/entity/Display$LinearIntInterpolator/ (II)V net/minecraft/world/entity/Display$LinearIntInterpolator/ (II)V +MD: net/minecraft/world/entity/Display$LinearIntInterpolator/equals (Ljava/lang/Object;)Z net/minecraft/world/entity/Display$LinearIntInterpolator/equals (Ljava/lang/Object;)Z +MD: net/minecraft/world/entity/Display$LinearIntInterpolator/f_276492_ ()I net/minecraft/world/entity/Display$LinearIntInterpolator/current ()I +MD: net/minecraft/world/entity/Display$LinearIntInterpolator/f_276498_ ()I net/minecraft/world/entity/Display$LinearIntInterpolator/previous ()I +MD: net/minecraft/world/entity/Display$LinearIntInterpolator/hashCode ()I net/minecraft/world/entity/Display$LinearIntInterpolator/hashCode ()I +MD: net/minecraft/world/entity/Display$LinearIntInterpolator/m_269120_ (F)I net/minecraft/world/entity/Display$LinearIntInterpolator/get (F)I +MD: net/minecraft/world/entity/Display$LinearIntInterpolator/toString ()Ljava/lang/String; net/minecraft/world/entity/Display$LinearIntInterpolator/toString ()Ljava/lang/String; +MD: net/minecraft/world/entity/Display$RenderState/ (Lnet/minecraft/world/entity/Display$GenericInterpolator;Lnet/minecraft/world/entity/Display$BillboardConstraints;ILnet/minecraft/world/entity/Display$FloatInterpolator;Lnet/minecraft/world/entity/Display$FloatInterpolator;I)V net/minecraft/world/entity/Display$RenderState/ (Lnet/minecraft/world/entity/Display$GenericInterpolator;Lnet/minecraft/world/entity/Display$BillboardConstraints;ILnet/minecraft/world/entity/Display$FloatInterpolator;Lnet/minecraft/world/entity/Display$FloatInterpolator;I)V +MD: net/minecraft/world/entity/Display$RenderState/equals (Ljava/lang/Object;)Z net/minecraft/world/entity/Display$RenderState/equals (Ljava/lang/Object;)Z +MD: net/minecraft/world/entity/Display$RenderState/f_276438_ ()I net/minecraft/world/entity/Display$RenderState/brightnessOverride ()I +MD: net/minecraft/world/entity/Display$RenderState/f_276486_ ()I net/minecraft/world/entity/Display$RenderState/glowColorOverride ()I +MD: net/minecraft/world/entity/Display$RenderState/f_276506_ ()Lnet/minecraft/world/entity/Display$BillboardConstraints; net/minecraft/world/entity/Display$RenderState/billboardConstraints ()Lnet/minecraft/world/entity/Display$BillboardConstraints; +MD: net/minecraft/world/entity/Display$RenderState/f_276585_ ()Lnet/minecraft/world/entity/Display$GenericInterpolator; net/minecraft/world/entity/Display$RenderState/transformation ()Lnet/minecraft/world/entity/Display$GenericInterpolator; +MD: net/minecraft/world/entity/Display$RenderState/f_276607_ ()Lnet/minecraft/world/entity/Display$FloatInterpolator; net/minecraft/world/entity/Display$RenderState/shadowRadius ()Lnet/minecraft/world/entity/Display$FloatInterpolator; +MD: net/minecraft/world/entity/Display$RenderState/f_276693_ ()Lnet/minecraft/world/entity/Display$FloatInterpolator; net/minecraft/world/entity/Display$RenderState/shadowStrength ()Lnet/minecraft/world/entity/Display$FloatInterpolator; +MD: net/minecraft/world/entity/Display$RenderState/hashCode ()I net/minecraft/world/entity/Display$RenderState/hashCode ()I +MD: net/minecraft/world/entity/Display$RenderState/toString ()Ljava/lang/String; net/minecraft/world/entity/Display$RenderState/toString ()Ljava/lang/String; +MD: net/minecraft/world/entity/Display$TextDisplay/ ()V net/minecraft/world/entity/Display$TextDisplay/ ()V +MD: net/minecraft/world/entity/Display$TextDisplay/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V net/minecraft/world/entity/Display$TextDisplay/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V +MD: net/minecraft/world/entity/Display$TextDisplay/m_269000_ ()Lnet/minecraft/network/chat/Component; net/minecraft/world/entity/Display$TextDisplay/getText ()Lnet/minecraft/network/chat/Component; +MD: net/minecraft/world/entity/Display$TextDisplay/m_269001_ (I)V net/minecraft/world/entity/Display$TextDisplay/setBackgroundColor (I)V +MD: net/minecraft/world/entity/Display$TextDisplay/m_269007_ (B)V net/minecraft/world/entity/Display$TextDisplay/setTextOpacity (B)V +MD: net/minecraft/world/entity/Display$TextDisplay/m_269024_ (BLnet/minecraft/nbt/CompoundTag;Ljava/lang/String;B)B net/minecraft/world/entity/Display$TextDisplay/loadFlag (BLnet/minecraft/nbt/CompoundTag;Ljava/lang/String;B)B +MD: net/minecraft/world/entity/Display$TextDisplay/m_269037_ (Lnet/minecraft/network/chat/Component;)V net/minecraft/world/entity/Display$TextDisplay/setText (Lnet/minecraft/network/chat/Component;)V +MD: net/minecraft/world/entity/Display$TextDisplay/m_269174_ (I)V net/minecraft/world/entity/Display$TextDisplay/setLineWidth (I)V +MD: net/minecraft/world/entity/Display$TextDisplay/m_269180_ ()B net/minecraft/world/entity/Display$TextDisplay/getTextOpacity ()B +MD: net/minecraft/world/entity/Display$TextDisplay/m_269327_ ()B net/minecraft/world/entity/Display$TextDisplay/getFlags ()B +MD: net/minecraft/world/entity/Display$TextDisplay/m_269343_ (Lnet/minecraft/world/entity/Display$TextDisplay$LineSplitter;)Lnet/minecraft/world/entity/Display$TextDisplay$CachedInfo; net/minecraft/world/entity/Display$TextDisplay/cacheDisplay (Lnet/minecraft/world/entity/Display$TextDisplay$LineSplitter;)Lnet/minecraft/world/entity/Display$TextDisplay$CachedInfo; +MD: net/minecraft/world/entity/Display$TextDisplay/m_269352_ (Lnet/minecraft/nbt/CompoundTag;Lnet/minecraft/nbt/Tag;)V net/minecraft/world/entity/Display$TextDisplay/lambda$addAdditionalSaveData$0 (Lnet/minecraft/nbt/CompoundTag;Lnet/minecraft/nbt/Tag;)V +MD: net/minecraft/world/entity/Display$TextDisplay/m_269375_ ()I net/minecraft/world/entity/Display$TextDisplay/getBackgroundColor ()I +MD: net/minecraft/world/entity/Display$TextDisplay/m_269384_ (B)Lnet/minecraft/world/entity/Display$TextDisplay$Align; net/minecraft/world/entity/Display$TextDisplay/getAlign (B)Lnet/minecraft/world/entity/Display$TextDisplay$Align; +MD: net/minecraft/world/entity/Display$TextDisplay/m_269407_ (BLnet/minecraft/nbt/CompoundTag;Ljava/lang/String;B)V net/minecraft/world/entity/Display$TextDisplay/storeFlag (BLnet/minecraft/nbt/CompoundTag;Ljava/lang/String;B)V +MD: net/minecraft/world/entity/Display$TextDisplay/m_269517_ ()I net/minecraft/world/entity/Display$TextDisplay/getLineWidth ()I +MD: net/minecraft/world/entity/Display$TextDisplay/m_269559_ (B)V net/minecraft/world/entity/Display$TextDisplay/setFlags (B)V +MD: net/minecraft/world/entity/Display$TextDisplay/m_276825_ (ZF)V net/minecraft/world/entity/Display$TextDisplay/updateRenderSubState (ZF)V +MD: net/minecraft/world/entity/Display$TextDisplay/m_276848_ (Lnet/minecraft/world/entity/Display$TextDisplay$TextRenderState;F)Lnet/minecraft/world/entity/Display$TextDisplay$TextRenderState; net/minecraft/world/entity/Display$TextDisplay/createInterpolatedTextRenderState (Lnet/minecraft/world/entity/Display$TextDisplay$TextRenderState;F)Lnet/minecraft/world/entity/Display$TextDisplay$TextRenderState; +MD: net/minecraft/world/entity/Display$TextDisplay/m_276914_ ()Lnet/minecraft/world/entity/Display$TextDisplay$TextRenderState; net/minecraft/world/entity/Display$TextDisplay/createFreshTextRenderState ()Lnet/minecraft/world/entity/Display$TextDisplay$TextRenderState; +MD: net/minecraft/world/entity/Display$TextDisplay/m_277174_ ()Lnet/minecraft/world/entity/Display$TextDisplay$TextRenderState; net/minecraft/world/entity/Display$TextDisplay/textRenderState ()Lnet/minecraft/world/entity/Display$TextDisplay$TextRenderState; +MD: net/minecraft/world/entity/Display$TextDisplay/m_7350_ (Lnet/minecraft/network/syncher/EntityDataAccessor;)V net/minecraft/world/entity/Display$TextDisplay/onSyncedDataUpdated (Lnet/minecraft/network/syncher/EntityDataAccessor;)V +MD: net/minecraft/world/entity/Display$TextDisplay/m_7378_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/entity/Display$TextDisplay/readAdditionalSaveData (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/entity/Display$TextDisplay/m_7380_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/entity/Display$TextDisplay/addAdditionalSaveData (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/entity/Display$TextDisplay/m_8097_ ()V net/minecraft/world/entity/Display$TextDisplay/defineSynchedData ()V +MD: net/minecraft/world/entity/Display$TextDisplay$Align/ ()V net/minecraft/world/entity/Display$TextDisplay$Align/ ()V +MD: net/minecraft/world/entity/Display$TextDisplay$Align/ (Ljava/lang/String;ILjava/lang/String;)V net/minecraft/world/entity/Display$TextDisplay$Align/ (Ljava/lang/String;ILjava/lang/String;)V +MD: net/minecraft/world/entity/Display$TextDisplay$Align/m_269578_ ()[Lnet/minecraft/world/entity/Display$TextDisplay$Align; net/minecraft/world/entity/Display$TextDisplay$Align/$values ()[Lnet/minecraft/world/entity/Display$TextDisplay$Align; +MD: net/minecraft/world/entity/Display$TextDisplay$Align/m_7912_ ()Ljava/lang/String; net/minecraft/world/entity/Display$TextDisplay$Align/getSerializedName ()Ljava/lang/String; +MD: net/minecraft/world/entity/Display$TextDisplay$Align/valueOf (Ljava/lang/String;)Lnet/minecraft/world/entity/Display$TextDisplay$Align; net/minecraft/world/entity/Display$TextDisplay$Align/valueOf (Ljava/lang/String;)Lnet/minecraft/world/entity/Display$TextDisplay$Align; +MD: net/minecraft/world/entity/Display$TextDisplay$Align/values ()[Lnet/minecraft/world/entity/Display$TextDisplay$Align; net/minecraft/world/entity/Display$TextDisplay$Align/values ()[Lnet/minecraft/world/entity/Display$TextDisplay$Align; +MD: net/minecraft/world/entity/Display$TextDisplay$CachedInfo/ (Ljava/util/List;I)V net/minecraft/world/entity/Display$TextDisplay$CachedInfo/ (Ljava/util/List;I)V +MD: net/minecraft/world/entity/Display$TextDisplay$CachedInfo/equals (Ljava/lang/Object;)Z net/minecraft/world/entity/Display$TextDisplay$CachedInfo/equals (Ljava/lang/Object;)Z +MD: net/minecraft/world/entity/Display$TextDisplay$CachedInfo/f_268557_ ()I net/minecraft/world/entity/Display$TextDisplay$CachedInfo/width ()I +MD: net/minecraft/world/entity/Display$TextDisplay$CachedInfo/f_268675_ ()Ljava/util/List; net/minecraft/world/entity/Display$TextDisplay$CachedInfo/lines ()Ljava/util/List; +MD: net/minecraft/world/entity/Display$TextDisplay$CachedInfo/hashCode ()I net/minecraft/world/entity/Display$TextDisplay$CachedInfo/hashCode ()I +MD: net/minecraft/world/entity/Display$TextDisplay$CachedInfo/toString ()Ljava/lang/String; net/minecraft/world/entity/Display$TextDisplay$CachedInfo/toString ()Ljava/lang/String; +MD: net/minecraft/world/entity/Display$TextDisplay$CachedLine/ (Lnet/minecraft/util/FormattedCharSequence;I)V net/minecraft/world/entity/Display$TextDisplay$CachedLine/ (Lnet/minecraft/util/FormattedCharSequence;I)V +MD: net/minecraft/world/entity/Display$TextDisplay$CachedLine/equals (Ljava/lang/Object;)Z net/minecraft/world/entity/Display$TextDisplay$CachedLine/equals (Ljava/lang/Object;)Z +MD: net/minecraft/world/entity/Display$TextDisplay$CachedLine/f_268443_ ()I net/minecraft/world/entity/Display$TextDisplay$CachedLine/width ()I +MD: net/minecraft/world/entity/Display$TextDisplay$CachedLine/f_268516_ ()Lnet/minecraft/util/FormattedCharSequence; net/minecraft/world/entity/Display$TextDisplay$CachedLine/contents ()Lnet/minecraft/util/FormattedCharSequence; +MD: net/minecraft/world/entity/Display$TextDisplay$CachedLine/hashCode ()I net/minecraft/world/entity/Display$TextDisplay$CachedLine/hashCode ()I +MD: net/minecraft/world/entity/Display$TextDisplay$CachedLine/toString ()Ljava/lang/String; net/minecraft/world/entity/Display$TextDisplay$CachedLine/toString ()Ljava/lang/String; +MD: net/minecraft/world/entity/Display$TextDisplay$LineSplitter/m_269487_ (Lnet/minecraft/network/chat/Component;I)Lnet/minecraft/world/entity/Display$TextDisplay$CachedInfo; net/minecraft/world/entity/Display$TextDisplay$LineSplitter/split (Lnet/minecraft/network/chat/Component;I)Lnet/minecraft/world/entity/Display$TextDisplay$CachedInfo; +MD: net/minecraft/world/entity/Display$TextDisplay$TextRenderState/ (Lnet/minecraft/network/chat/Component;ILnet/minecraft/world/entity/Display$IntInterpolator;Lnet/minecraft/world/entity/Display$IntInterpolator;B)V net/minecraft/world/entity/Display$TextDisplay$TextRenderState/ (Lnet/minecraft/network/chat/Component;ILnet/minecraft/world/entity/Display$IntInterpolator;Lnet/minecraft/world/entity/Display$IntInterpolator;B)V +MD: net/minecraft/world/entity/Display$TextDisplay$TextRenderState/equals (Ljava/lang/Object;)Z net/minecraft/world/entity/Display$TextDisplay$TextRenderState/equals (Ljava/lang/Object;)Z +MD: net/minecraft/world/entity/Display$TextDisplay$TextRenderState/f_276477_ ()Lnet/minecraft/network/chat/Component; net/minecraft/world/entity/Display$TextDisplay$TextRenderState/text ()Lnet/minecraft/network/chat/Component; +MD: net/minecraft/world/entity/Display$TextDisplay$TextRenderState/f_276556_ ()B net/minecraft/world/entity/Display$TextDisplay$TextRenderState/flags ()B +MD: net/minecraft/world/entity/Display$TextDisplay$TextRenderState/f_276562_ ()Lnet/minecraft/world/entity/Display$IntInterpolator; net/minecraft/world/entity/Display$TextDisplay$TextRenderState/backgroundColor ()Lnet/minecraft/world/entity/Display$IntInterpolator; +MD: net/minecraft/world/entity/Display$TextDisplay$TextRenderState/f_276579_ ()Lnet/minecraft/world/entity/Display$IntInterpolator; net/minecraft/world/entity/Display$TextDisplay$TextRenderState/textOpacity ()Lnet/minecraft/world/entity/Display$IntInterpolator; +MD: net/minecraft/world/entity/Display$TextDisplay$TextRenderState/f_276622_ ()I net/minecraft/world/entity/Display$TextDisplay$TextRenderState/lineWidth ()I +MD: net/minecraft/world/entity/Display$TextDisplay$TextRenderState/hashCode ()I net/minecraft/world/entity/Display$TextDisplay$TextRenderState/hashCode ()I +MD: net/minecraft/world/entity/Display$TextDisplay$TextRenderState/toString ()Ljava/lang/String; net/minecraft/world/entity/Display$TextDisplay$TextRenderState/toString ()Ljava/lang/String; +MD: net/minecraft/world/entity/Display$TransformationInterpolator/ (Lcom/mojang/math/Transformation;Lcom/mojang/math/Transformation;)V net/minecraft/world/entity/Display$TransformationInterpolator/ (Lcom/mojang/math/Transformation;Lcom/mojang/math/Transformation;)V +MD: net/minecraft/world/entity/Display$TransformationInterpolator/equals (Ljava/lang/Object;)Z net/minecraft/world/entity/Display$TransformationInterpolator/equals (Ljava/lang/Object;)Z +MD: net/minecraft/world/entity/Display$TransformationInterpolator/f_276610_ ()Lcom/mojang/math/Transformation; net/minecraft/world/entity/Display$TransformationInterpolator/current ()Lcom/mojang/math/Transformation; +MD: net/minecraft/world/entity/Display$TransformationInterpolator/f_276675_ ()Lcom/mojang/math/Transformation; net/minecraft/world/entity/Display$TransformationInterpolator/previous ()Lcom/mojang/math/Transformation; +MD: net/minecraft/world/entity/Display$TransformationInterpolator/hashCode ()I net/minecraft/world/entity/Display$TransformationInterpolator/hashCode ()I +MD: net/minecraft/world/entity/Display$TransformationInterpolator/m_269136_ (F)Ljava/lang/Object; net/minecraft/world/entity/Display$TransformationInterpolator/get (F)Ljava/lang/Object; +MD: net/minecraft/world/entity/Display$TransformationInterpolator/m_269136_ (F)Lcom/mojang/math/Transformation; net/minecraft/world/entity/Display$TransformationInterpolator/get (F)Lcom/mojang/math/Transformation; +MD: net/minecraft/world/entity/Display$TransformationInterpolator/toString ()Ljava/lang/String; net/minecraft/world/entity/Display$TransformationInterpolator/toString ()Ljava/lang/String; +MD: net/minecraft/world/entity/Entity/ ()V net/minecraft/world/entity/Entity/ ()V +MD: net/minecraft/world/entity/Entity/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V net/minecraft/world/entity/Entity/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V +MD: net/minecraft/world/entity/Entity/equals (Ljava/lang/Object;)Z net/minecraft/world/entity/Entity/equals (Ljava/lang/Object;)Z +MD: net/minecraft/world/entity/Entity/hashCode ()I net/minecraft/world/entity/Entity/hashCode ()I +MD: net/minecraft/world/entity/Entity/m_141942_ (I)Lnet/minecraft/world/entity/SlotAccess; net/minecraft/world/entity/Entity/getSlot (I)Lnet/minecraft/world/entity/SlotAccess; +MD: net/minecraft/world/entity/Entity/m_141960_ (Lnet/minecraft/world/level/entity/EntityInLevelCallback;)V net/minecraft/world/entity/Entity/setLevelCallback (Lnet/minecraft/world/level/entity/EntityInLevelCallback;)V +MD: net/minecraft/world/entity/Entity/m_141965_ (Lnet/minecraft/network/protocol/game/ClientboundAddEntityPacket;)V net/minecraft/world/entity/Entity/recreateFromPacket (Lnet/minecraft/network/protocol/game/ClientboundAddEntityPacket;)V +MD: net/minecraft/world/entity/Entity/m_142036_ ()V net/minecraft/world/entity/Entity/onClientRemoval ()V +MD: net/minecraft/world/entity/Entity/m_142038_ ()Z net/minecraft/world/entity/Entity/isCurrentlyGlowing ()Z +MD: net/minecraft/world/entity/Entity/m_142039_ ()Z net/minecraft/world/entity/Entity/isFlapping ()Z +MD: net/minecraft/world/entity/Entity/m_142043_ ()V net/minecraft/world/entity/Entity/onFlap ()V +MD: net/minecraft/world/entity/Entity/m_142079_ ()Z net/minecraft/world/entity/Entity/canFreeze ()Z +MD: net/minecraft/world/entity/Entity/m_142098_ (DDD)V net/minecraft/world/entity/Entity/dismountTo (DDD)V +MD: net/minecraft/world/entity/Entity/m_142242_ ()Lnet/minecraft/world/phys/AABB; net/minecraft/world/entity/Entity/makeBoundingBox ()Lnet/minecraft/world/phys/AABB; +MD: net/minecraft/world/entity/Entity/m_142265_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/entity/Entity/mayInteract (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/entity/Entity/m_142319_ ()Lnet/minecraft/world/entity/Entity$MovementEmission; net/minecraft/world/entity/Entity/getMovementEmission ()Lnet/minecraft/world/entity/Entity$MovementEmission; +MD: net/minecraft/world/entity/Entity/m_142340_ ()Lnet/minecraft/world/item/ItemStack; net/minecraft/world/entity/Entity/getPickResult ()Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/entity/Entity/m_142389_ ()Z net/minecraft/world/entity/Entity/isAlwaysTicking ()Z +MD: net/minecraft/world/entity/Entity/m_142391_ ()Z net/minecraft/world/entity/Entity/shouldBeSaved ()Z +MD: net/minecraft/world/entity/Entity/m_142429_ ()Ljava/util/stream/Stream; net/minecraft/world/entity/Entity/getPassengersAndSelf ()Ljava/util/stream/Stream; +MD: net/minecraft/world/entity/Entity/m_142467_ (Lnet/minecraft/world/entity/Entity$RemovalReason;)V net/minecraft/world/entity/Entity/setRemoved (Lnet/minecraft/world/entity/Entity$RemovalReason;)V +MD: net/minecraft/world/entity/Entity/m_142535_ (FFLnet/minecraft/world/damagesource/DamageSource;)Z net/minecraft/world/entity/Entity/causeFallDamage (FFLnet/minecraft/world/damagesource/DamageSource;)Z +MD: net/minecraft/world/entity/Entity/m_142687_ (Lnet/minecraft/world/entity/Entity$RemovalReason;)V net/minecraft/world/entity/Entity/remove (Lnet/minecraft/world/entity/Entity$RemovalReason;)V +MD: net/minecraft/world/entity/Entity/m_146850_ (Lnet/minecraft/world/level/gameevent/GameEvent;)V net/minecraft/world/entity/Entity/gameEvent (Lnet/minecraft/world/level/gameevent/GameEvent;)V +MD: net/minecraft/world/entity/Entity/m_146852_ (Lnet/minecraft/world/level/gameevent/GameEvent;Lnet/minecraft/world/entity/Entity;)V net/minecraft/world/entity/Entity/gameEvent (Lnet/minecraft/world/level/gameevent/GameEvent;Lnet/minecraft/world/entity/Entity;)V +MD: net/minecraft/world/entity/Entity/m_146862_ (Ljava/util/function/Predicate;)Z net/minecraft/world/entity/Entity/hasPassenger (Ljava/util/function/Predicate;)Z +MD: net/minecraft/world/entity/Entity/m_146867_ ()V net/minecraft/world/entity/Entity/setOldPosAndRot ()V +MD: net/minecraft/world/entity/Entity/m_146868_ (Z)V net/minecraft/world/entity/Entity/setSharedFlagOnFire (Z)V +MD: net/minecraft/world/entity/Entity/m_146870_ ()V net/minecraft/world/entity/Entity/discard ()V +MD: net/minecraft/world/entity/Entity/m_146871_ ()V net/minecraft/world/entity/Entity/checkBelowWorld ()V +MD: net/minecraft/world/entity/Entity/m_146872_ ()V net/minecraft/world/entity/Entity/tryCheckInsideBlocks ()V +MD: net/minecraft/world/entity/Entity/m_146873_ ()V net/minecraft/world/entity/Entity/playEntityOnFireExtinguishedSound ()V +MD: net/minecraft/world/entity/Entity/m_146874_ ()V net/minecraft/world/entity/Entity/processFlappingMovement ()V +MD: net/minecraft/world/entity/Entity/m_146884_ (Lnet/minecraft/world/phys/Vec3;)V net/minecraft/world/entity/Entity/setPos (Lnet/minecraft/world/phys/Vec3;)V +MD: net/minecraft/world/entity/Entity/m_146886_ ()Z net/minecraft/world/entity/Entity/hasGlowingTag ()Z +MD: net/minecraft/world/entity/Entity/m_146888_ ()I net/minecraft/world/entity/Entity/getTicksFrozen ()I +MD: net/minecraft/world/entity/Entity/m_146889_ ()F net/minecraft/world/entity/Entity/getPercentFrozen ()F +MD: net/minecraft/world/entity/Entity/m_146890_ ()Z net/minecraft/world/entity/Entity/isFullyFrozen ()Z +MD: net/minecraft/world/entity/Entity/m_146891_ ()I net/minecraft/world/entity/Entity/getTicksRequiredToFreeze ()I +MD: net/minecraft/world/entity/Entity/m_146892_ ()Lnet/minecraft/world/phys/Vec3; net/minecraft/world/entity/Entity/getEyePosition ()Lnet/minecraft/world/phys/Vec3; +MD: net/minecraft/world/entity/Entity/m_146895_ ()Lnet/minecraft/world/entity/Entity; net/minecraft/world/entity/Entity/getFirstPassenger ()Lnet/minecraft/world/entity/Entity; +MD: net/minecraft/world/entity/Entity/m_146897_ ()Ljava/lang/Iterable; net/minecraft/world/entity/Entity/getIndirectPassengers ()Ljava/lang/Iterable; +MD: net/minecraft/world/entity/Entity/m_146898_ ()Z net/minecraft/world/entity/Entity/hasExactlyOnePlayerPassenger ()Z +MD: net/minecraft/world/entity/Entity/m_146899_ ()Z net/minecraft/world/entity/Entity/touchingUnloadedChunk ()Z +MD: net/minecraft/world/entity/Entity/m_146900_ ()Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/entity/Entity/getFeetBlockState ()Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/entity/Entity/m_146902_ ()Lnet/minecraft/world/level/ChunkPos; net/minecraft/world/entity/Entity/chunkPosition ()Lnet/minecraft/world/level/ChunkPos; +MD: net/minecraft/world/entity/Entity/m_146903_ ()I net/minecraft/world/entity/Entity/getBlockX ()I +MD: net/minecraft/world/entity/Entity/m_146904_ ()I net/minecraft/world/entity/Entity/getBlockY ()I +MD: net/minecraft/world/entity/Entity/m_146907_ ()I net/minecraft/world/entity/Entity/getBlockZ ()I +MD: net/minecraft/world/entity/Entity/m_146908_ ()F net/minecraft/world/entity/Entity/getYRot ()F +MD: net/minecraft/world/entity/Entity/m_146909_ ()F net/minecraft/world/entity/Entity/getXRot ()F +MD: net/minecraft/world/entity/Entity/m_146911_ ()Lnet/minecraft/world/entity/Entity$RemovalReason; net/minecraft/world/entity/Entity/getRemovalReason ()Lnet/minecraft/world/entity/Entity$RemovalReason; +MD: net/minecraft/world/entity/Entity/m_146912_ ()V net/minecraft/world/entity/Entity/unsetRemoved ()V +MD: net/minecraft/world/entity/Entity/m_146915_ (Z)V net/minecraft/world/entity/Entity/setGlowingTag (Z)V +MD: net/minecraft/world/entity/Entity/m_146917_ (I)V net/minecraft/world/entity/Entity/setTicksFrozen (I)V +MD: net/minecraft/world/entity/Entity/m_146920_ ()Ljava/util/stream/Stream; net/minecraft/world/entity/Entity/getIndirectPassengersStream ()Ljava/util/stream/Stream; +MD: net/minecraft/world/entity/Entity/m_146922_ (F)V net/minecraft/world/entity/Entity/setYRot (F)V +MD: net/minecraft/world/entity/Entity/m_146924_ (Z)V net/minecraft/world/entity/Entity/setIsInPowderSnow (Z)V +MD: net/minecraft/world/entity/Entity/m_146926_ (F)V net/minecraft/world/entity/Entity/setXRot (F)V +MD: net/minecraft/world/entity/Entity/m_146929_ ()Ljava/lang/String; net/minecraft/world/entity/Entity/lambda$fillCrashReportCategory$11 ()Ljava/lang/String; +MD: net/minecraft/world/entity/Entity/m_146930_ ()Ljava/lang/String; net/minecraft/world/entity/Entity/lambda$fillCrashReportCategory$10 ()Ljava/lang/String; +MD: net/minecraft/world/entity/Entity/m_183318_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;ZLnet/minecraft/world/level/border/WorldBorder;)Ljava/util/Optional; net/minecraft/world/entity/Entity/getExitPortal (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;ZLnet/minecraft/world/level/border/WorldBorder;)Ljava/util/Optional; +MD: net/minecraft/world/entity/Entity/m_183634_ ()V net/minecraft/world/entity/Entity/resetFallDistance ()V +MD: net/minecraft/world/entity/Entity/m_185942_ (Lnet/minecraft/world/entity/Entity;)Z net/minecraft/world/entity/Entity/lambda$hasExactlyOnePlayerPassenger$16 (Lnet/minecraft/world/entity/Entity;)Z +MD: net/minecraft/world/entity/Entity/m_185954_ (Lnet/minecraft/world/entity/EntityDimensions;Lnet/minecraft/world/phys/Vec3;)V net/minecraft/world/entity/Entity/lambda$refreshDimensions$14 (Lnet/minecraft/world/entity/EntityDimensions;Lnet/minecraft/world/phys/Vec3;)V +MD: net/minecraft/world/entity/Entity/m_185974_ (Lnet/minecraft/network/chat/Style;)Lnet/minecraft/network/chat/Style; net/minecraft/world/entity/Entity/lambda$getDisplayName$12 (Lnet/minecraft/network/chat/Style;)Lnet/minecraft/network/chat/Style; +MD: net/minecraft/world/entity/Entity/m_185976_ (Lnet/minecraft/world/entity/Entity;)V net/minecraft/world/entity/Entity/lambda$teleportPassengers$13 (Lnet/minecraft/world/entity/Entity;)V +MD: net/minecraft/world/entity/Entity/m_185978_ (Lnet/minecraft/world/entity/Entity;Lnet/minecraft/world/entity/Entity;)Z net/minecraft/world/entity/Entity/lambda$removePassenger$5 (Lnet/minecraft/world/entity/Entity;Lnet/minecraft/world/entity/Entity;)Z +MD: net/minecraft/world/entity/Entity/m_185981_ (Lnet/minecraft/world/entity/Entity;)V net/minecraft/world/entity/Entity/lambda$startRiding$4 (Lnet/minecraft/world/entity/Entity;)V +MD: net/minecraft/world/entity/Entity/m_185983_ (Lnet/minecraft/world/entity/Entity;)Z net/minecraft/world/entity/Entity/lambda$startRiding$3 (Lnet/minecraft/world/entity/Entity;)Z +MD: net/minecraft/world/entity/Entity/m_185985_ ()Ljava/util/Iterator; net/minecraft/world/entity/Entity/lambda$getIndirectPassengers$15 ()Ljava/util/Iterator; +MD: net/minecraft/world/entity/Entity/m_185986_ ()Ljava/lang/String; net/minecraft/world/entity/Entity/lambda$fillCrashReportCategory$8 ()Ljava/lang/String; +MD: net/minecraft/world/entity/Entity/m_196406_ (Lnet/minecraft/world/phys/Vec3;)Z net/minecraft/world/entity/Entity/isHorizontalCollisionMinor (Lnet/minecraft/world/phys/Vec3;)Z +MD: net/minecraft/world/entity/Entity/m_19876_ ()I net/minecraft/world/entity/Entity/getTeamColor ()I +MD: net/minecraft/world/entity/Entity/m_19877_ ()V net/minecraft/world/entity/Entity/unRide ()V +MD: net/minecraft/world/entity/Entity/m_19879_ ()I net/minecraft/world/entity/Entity/getId ()I +MD: net/minecraft/world/entity/Entity/m_19880_ ()Ljava/util/Set; net/minecraft/world/entity/Entity/getTags ()Ljava/util/Set; +MD: net/minecraft/world/entity/Entity/m_19884_ (DD)V net/minecraft/world/entity/Entity/turn (DD)V +MD: net/minecraft/world/entity/Entity/m_198894_ (Lnet/minecraft/world/entity/Entity;Lnet/minecraft/world/phys/Vec3;Lnet/minecraft/world/phys/AABB;Lnet/minecraft/world/level/Level;Ljava/util/List;)Lnet/minecraft/world/phys/Vec3; net/minecraft/world/entity/Entity/collideBoundingBox (Lnet/minecraft/world/entity/Entity;Lnet/minecraft/world/phys/Vec3;Lnet/minecraft/world/phys/AABB;Lnet/minecraft/world/level/Level;Ljava/util/List;)Lnet/minecraft/world/phys/Vec3; +MD: net/minecraft/world/entity/Entity/m_198900_ (Lnet/minecraft/world/phys/Vec3;Lnet/minecraft/world/phys/AABB;Ljava/util/List;)Lnet/minecraft/world/phys/Vec3; net/minecraft/world/entity/Entity/collideWithShapes (Lnet/minecraft/world/phys/Vec3;Lnet/minecraft/world/phys/AABB;Ljava/util/List;)Lnet/minecraft/world/phys/Vec3; +MD: net/minecraft/world/entity/Entity/m_19890_ (DDDFF)V net/minecraft/world/entity/Entity/absMoveTo (DDDFF)V +MD: net/minecraft/world/entity/Entity/m_19903_ (DDF)Lnet/minecraft/world/phys/Vec3; net/minecraft/world/entity/Entity/getCollisionHorizontalEscapeVector (DDF)Lnet/minecraft/world/phys/Vec3; +MD: net/minecraft/world/entity/Entity/m_19907_ (DFZ)Lnet/minecraft/world/phys/HitResult; net/minecraft/world/entity/Entity/pick (DFZ)Lnet/minecraft/world/phys/HitResult; +MD: net/minecraft/world/entity/Entity/m_19915_ (FF)V net/minecraft/world/entity/Entity/setRot (FF)V +MD: net/minecraft/world/entity/Entity/m_19920_ (FLnet/minecraft/world/phys/Vec3;)V net/minecraft/world/entity/Entity/moveRelative (FLnet/minecraft/world/phys/Vec3;)V +MD: net/minecraft/world/entity/Entity/m_19950_ (Lnet/minecraft/world/entity/Entity;D)Z net/minecraft/world/entity/Entity/closerThan (Lnet/minecraft/world/entity/Entity;D)Z +MD: net/minecraft/world/entity/Entity/m_19956_ (Lnet/minecraft/world/entity/Entity;Lnet/minecraft/world/entity/Entity$MoveFunction;)V net/minecraft/world/entity/Entity/positionRider (Lnet/minecraft/world/entity/Entity;Lnet/minecraft/world/entity/Entity$MoveFunction;)V +MD: net/minecraft/world/entity/Entity/m_19970_ (Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/entity/Entity;)V net/minecraft/world/entity/Entity/doEnchantDamageEffects (Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/entity/Entity;)V +MD: net/minecraft/world/entity/Entity/m_19983_ (Lnet/minecraft/world/item/ItemStack;)Lnet/minecraft/world/entity/item/ItemEntity; net/minecraft/world/entity/Entity/spawnAtLocation (Lnet/minecraft/world/item/ItemStack;)Lnet/minecraft/world/entity/item/ItemEntity; +MD: net/minecraft/world/entity/Entity/m_19998_ (Lnet/minecraft/world/level/ItemLike;)Lnet/minecraft/world/entity/item/ItemEntity; net/minecraft/world/entity/Entity/spawnAtLocation (Lnet/minecraft/world/level/ItemLike;)Lnet/minecraft/world/entity/item/ItemEntity; +MD: net/minecraft/world/entity/Entity/m_20000_ (Lnet/minecraft/world/level/ItemLike;I)Lnet/minecraft/world/entity/item/ItemEntity; net/minecraft/world/entity/Entity/spawnAtLocation (Lnet/minecraft/world/level/ItemLike;I)Lnet/minecraft/world/entity/item/ItemEntity; +MD: net/minecraft/world/entity/Entity/m_20011_ (Lnet/minecraft/world/phys/AABB;)V net/minecraft/world/entity/Entity/setBoundingBox (Lnet/minecraft/world/phys/AABB;)V +MD: net/minecraft/world/entity/Entity/m_20015_ (Lnet/minecraft/world/phys/Vec3;FF)Lnet/minecraft/world/phys/Vec3; net/minecraft/world/entity/Entity/getInputVector (Lnet/minecraft/world/phys/Vec3;FF)Lnet/minecraft/world/phys/Vec3; +MD: net/minecraft/world/entity/Entity/m_20031_ (Lnet/minecraft/world/scores/Team;)Z net/minecraft/world/entity/Entity/isAlliedTo (Lnet/minecraft/world/scores/Team;)Z +MD: net/minecraft/world/entity/Entity/m_20035_ (Lnet/minecraft/core/BlockPos;FF)V net/minecraft/world/entity/Entity/moveTo (Lnet/minecraft/core/BlockPos;FF)V +MD: net/minecraft/world/entity/Entity/m_20039_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/world/entity/Entity/isColliding (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/world/entity/Entity/m_20042_ (Lnet/minecraft/core/Direction$Axis;D)D net/minecraft/world/entity/Entity/applyPistonMovementRestriction (Lnet/minecraft/core/Direction$Axis;D)D +MD: net/minecraft/world/entity/Entity/m_20049_ (Ljava/lang/String;)Z net/minecraft/world/entity/Entity/addTag (Ljava/lang/String;)Z +MD: net/minecraft/world/entity/Entity/m_20063_ ([D)Lnet/minecraft/nbt/ListTag; net/minecraft/world/entity/Entity/newDoubleList ([D)Lnet/minecraft/nbt/ListTag; +MD: net/minecraft/world/entity/Entity/m_20065_ ([F)Lnet/minecraft/nbt/ListTag; net/minecraft/world/entity/Entity/newFloatList ([F)Lnet/minecraft/nbt/ListTag; +MD: net/minecraft/world/entity/Entity/m_20067_ ()Z net/minecraft/world/entity/Entity/isSilent ()Z +MD: net/minecraft/world/entity/Entity/m_20068_ ()Z net/minecraft/world/entity/Entity/isNoGravity ()Z +MD: net/minecraft/world/entity/Entity/m_20069_ ()Z net/minecraft/world/entity/Entity/isInWater ()Z +MD: net/minecraft/world/entity/Entity/m_20070_ ()Z net/minecraft/world/entity/Entity/isInWaterOrRain ()Z +MD: net/minecraft/world/entity/Entity/m_20071_ ()Z net/minecraft/world/entity/Entity/isInWaterRainOrBubble ()Z +MD: net/minecraft/world/entity/Entity/m_20072_ ()Z net/minecraft/world/entity/Entity/isInWaterOrBubble ()Z +MD: net/minecraft/world/entity/Entity/m_20073_ ()Z net/minecraft/world/entity/Entity/updateInWaterStateAndDoFluidPushing ()Z +MD: net/minecraft/world/entity/Entity/m_20074_ ()V net/minecraft/world/entity/Entity/updateInWaterStateAndDoWaterCurrentPushing ()V +MD: net/minecraft/world/entity/Entity/m_20075_ ()Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/entity/Entity/getBlockStateOn ()Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/entity/Entity/m_20076_ ()V net/minecraft/world/entity/Entity/spawnSprintParticle ()V +MD: net/minecraft/world/entity/Entity/m_20077_ ()Z net/minecraft/world/entity/Entity/isInLava ()Z +MD: net/minecraft/world/entity/Entity/m_20078_ ()Ljava/lang/String; net/minecraft/world/entity/Entity/getEncodeId ()Ljava/lang/String; +MD: net/minecraft/world/entity/Entity/m_20084_ (Ljava/util/UUID;)V net/minecraft/world/entity/Entity/setUUID (Ljava/util/UUID;)V +MD: net/minecraft/world/entity/Entity/m_20086_ (Lnet/minecraft/nbt/CompoundTag;)Z net/minecraft/world/entity/Entity/saveAsPassenger (Lnet/minecraft/nbt/CompoundTag;)Z +MD: net/minecraft/world/entity/Entity/m_20088_ ()Lnet/minecraft/network/syncher/SynchedEntityData; net/minecraft/world/entity/Entity/getEntityData ()Lnet/minecraft/network/syncher/SynchedEntityData; +MD: net/minecraft/world/entity/Entity/m_20089_ ()Lnet/minecraft/world/entity/Pose; net/minecraft/world/entity/Entity/getPose ()Lnet/minecraft/world/entity/Pose; +MD: net/minecraft/world/entity/Entity/m_20090_ ()V net/minecraft/world/entity/Entity/reapplyPosition ()V +MD: net/minecraft/world/entity/Entity/m_20091_ ()V net/minecraft/world/entity/Entity/setPortalCooldown ()V +MD: net/minecraft/world/entity/Entity/m_20092_ ()Z net/minecraft/world/entity/Entity/isOnPortalCooldown ()Z +MD: net/minecraft/world/entity/Entity/m_20093_ ()V net/minecraft/world/entity/Entity/lavaHurt ()V +MD: net/minecraft/world/entity/Entity/m_20094_ ()I net/minecraft/world/entity/Entity/getRemainingFireTicks ()I +MD: net/minecraft/world/entity/Entity/m_20095_ ()V net/minecraft/world/entity/Entity/clearFire ()V +MD: net/minecraft/world/entity/Entity/m_20096_ ()Z net/minecraft/world/entity/Entity/onGround ()Z +MD: net/minecraft/world/entity/Entity/m_20097_ ()Lnet/minecraft/core/BlockPos; net/minecraft/world/entity/Entity/getOnPos ()Lnet/minecraft/core/BlockPos; +MD: net/minecraft/world/entity/Entity/m_20098_ ()F net/minecraft/world/entity/Entity/getBlockJumpFactor ()F +MD: net/minecraft/world/entity/Entity/m_20099_ ()Lnet/minecraft/core/BlockPos; net/minecraft/world/entity/Entity/getBlockPosBelowThatAffectsMyMovement ()Lnet/minecraft/core/BlockPos; +MD: net/minecraft/world/entity/Entity/m_20101_ ()V net/minecraft/world/entity/Entity/checkInsideBlocks ()V +MD: net/minecraft/world/entity/Entity/m_20103_ (D)V net/minecraft/world/entity/Entity/setViewScale (D)V +MD: net/minecraft/world/entity/Entity/m_20115_ (IZ)V net/minecraft/world/entity/Entity/setSharedFlag (IZ)V +MD: net/minecraft/world/entity/Entity/m_20124_ (Lnet/minecraft/world/entity/Pose;)V net/minecraft/world/entity/Entity/setPose (Lnet/minecraft/world/entity/Pose;)V +MD: net/minecraft/world/entity/Entity/m_20126_ (Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/world/entity/Entity/lambda$move$0 (Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/world/entity/Entity/m_20131_ (Lnet/minecraft/world/phys/AABB;)Z net/minecraft/world/entity/Entity/isFree (Lnet/minecraft/world/phys/AABB;)Z +MD: net/minecraft/world/entity/Entity/m_20133_ (Lnet/minecraft/world/phys/Vec3;)Lnet/minecraft/world/phys/Vec3; net/minecraft/world/entity/Entity/limitPistonMovement (Lnet/minecraft/world/phys/Vec3;)Lnet/minecraft/world/phys/Vec3; +MD: net/minecraft/world/entity/Entity/m_20137_ (Ljava/lang/String;)Z net/minecraft/world/entity/Entity/removeTag (Ljava/lang/String;)Z +MD: net/minecraft/world/entity/Entity/m_20140_ (Lnet/minecraft/network/chat/Component;)Lnet/minecraft/network/chat/Component; net/minecraft/world/entity/Entity/removeAction (Lnet/minecraft/network/chat/Component;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/world/entity/Entity/m_20142_ ()Z net/minecraft/world/entity/Entity/isSprinting ()Z +MD: net/minecraft/world/entity/Entity/m_20143_ ()Z net/minecraft/world/entity/Entity/isVisuallyCrawling ()Z +MD: net/minecraft/world/entity/Entity/m_20145_ ()Z net/minecraft/world/entity/Entity/isInvisible ()Z +MD: net/minecraft/world/entity/Entity/m_20146_ ()I net/minecraft/world/entity/Entity/getAirSupply ()I +MD: net/minecraft/world/entity/Entity/m_20147_ ()Z net/minecraft/world/entity/Entity/isInvulnerable ()Z +MD: net/minecraft/world/entity/Entity/m_20148_ ()Ljava/util/UUID; net/minecraft/world/entity/Entity/getUUID ()Ljava/util/UUID; +MD: net/minecraft/world/entity/Entity/m_20149_ ()Ljava/lang/String; net/minecraft/world/entity/Entity/getStringUUID ()Ljava/lang/String; +MD: net/minecraft/world/entity/Entity/m_20150_ ()D net/minecraft/world/entity/Entity/getViewScale ()D +MD: net/minecraft/world/entity/Entity/m_20151_ ()Z net/minecraft/world/entity/Entity/isCustomNameVisible ()Z +MD: net/minecraft/world/entity/Entity/m_20152_ ()Z net/minecraft/world/entity/Entity/showVehicleHealth ()Z +MD: net/minecraft/world/entity/Entity/m_20153_ ()V net/minecraft/world/entity/Entity/ejectPassengers ()V +MD: net/minecraft/world/entity/Entity/m_20154_ ()Lnet/minecraft/world/phys/Vec3; net/minecraft/world/entity/Entity/getLookAngle ()Lnet/minecraft/world/phys/Vec3; +MD: net/minecraft/world/entity/Entity/m_20155_ ()Lnet/minecraft/world/phys/Vec2; net/minecraft/world/entity/Entity/getRotationVector ()Lnet/minecraft/world/phys/Vec2; +MD: net/minecraft/world/entity/Entity/m_20156_ ()Lnet/minecraft/world/phys/Vec3; net/minecraft/world/entity/Entity/getForward ()Lnet/minecraft/world/phys/Vec3; +MD: net/minecraft/world/entity/Entity/m_20157_ ()V net/minecraft/world/entity/Entity/handleNetherPortal ()V +MD: net/minecraft/world/entity/Entity/m_20158_ ()Ljava/lang/Iterable; net/minecraft/world/entity/Entity/getAllSlots ()Ljava/lang/Iterable; +MD: net/minecraft/world/entity/Entity/m_20159_ ()Z net/minecraft/world/entity/Entity/isPassenger ()Z +MD: net/minecraft/world/entity/Entity/m_20160_ ()Z net/minecraft/world/entity/Entity/isVehicle ()Z +MD: net/minecraft/world/entity/Entity/m_20161_ ()Z net/minecraft/world/entity/Entity/isSteppingCarefully ()Z +MD: net/minecraft/world/entity/Entity/m_20162_ ()Z net/minecraft/world/entity/Entity/isSuppressingBounce ()Z +MD: net/minecraft/world/entity/Entity/m_20163_ ()Z net/minecraft/world/entity/Entity/isDiscrete ()Z +MD: net/minecraft/world/entity/Entity/m_20164_ ()Z net/minecraft/world/entity/Entity/isDescending ()Z +MD: net/minecraft/world/entity/Entity/m_20165_ (D)D net/minecraft/world/entity/Entity/getX (D)D +MD: net/minecraft/world/entity/Entity/m_20171_ (FF)Lnet/minecraft/world/phys/Vec3; net/minecraft/world/entity/Entity/calculateViewVector (FF)Lnet/minecraft/world/phys/Vec3; +MD: net/minecraft/world/entity/Entity/m_20175_ (Lnet/minecraft/world/entity/Pose;)Z net/minecraft/world/entity/Entity/canEnterPose (Lnet/minecraft/world/entity/Pose;)Z +MD: net/minecraft/world/entity/Entity/m_20177_ (Lnet/minecraft/world/entity/player/Player;)Z net/minecraft/world/entity/Entity/isInvisibleTo (Lnet/minecraft/world/entity/player/Player;)Z +MD: net/minecraft/world/entity/Entity/m_20182_ ()Lnet/minecraft/world/phys/Vec3; net/minecraft/world/entity/Entity/position ()Lnet/minecraft/world/phys/Vec3; +MD: net/minecraft/world/entity/Entity/m_20183_ ()Lnet/minecraft/core/BlockPos; net/minecraft/world/entity/Entity/blockPosition ()Lnet/minecraft/core/BlockPos; +MD: net/minecraft/world/entity/Entity/m_20184_ ()Lnet/minecraft/world/phys/Vec3; net/minecraft/world/entity/Entity/getDeltaMovement ()Lnet/minecraft/world/phys/Vec3; +MD: net/minecraft/world/entity/Entity/m_20185_ ()D net/minecraft/world/entity/Entity/getX ()D +MD: net/minecraft/world/entity/Entity/m_20186_ ()D net/minecraft/world/entity/Entity/getY ()D +MD: net/minecraft/world/entity/Entity/m_20187_ ()D net/minecraft/world/entity/Entity/getRandomY ()D +MD: net/minecraft/world/entity/Entity/m_20188_ ()D net/minecraft/world/entity/Entity/getEyeY ()D +MD: net/minecraft/world/entity/Entity/m_20189_ ()D net/minecraft/world/entity/Entity/getZ ()D +MD: net/minecraft/world/entity/Entity/m_20190_ ()Lnet/minecraft/network/chat/HoverEvent; net/minecraft/world/entity/Entity/createHoverEvent ()Lnet/minecraft/network/chat/HoverEvent; +MD: net/minecraft/world/entity/Entity/m_20191_ ()Lnet/minecraft/world/phys/AABB; net/minecraft/world/entity/Entity/getBoundingBox ()Lnet/minecraft/world/phys/AABB; +MD: net/minecraft/world/entity/Entity/m_20192_ ()F net/minecraft/world/entity/Entity/getEyeHeight ()F +MD: net/minecraft/world/entity/Entity/m_20193_ ()Lnet/minecraft/world/level/Level; net/minecraft/world/entity/Entity/getCommandSenderWorld ()Lnet/minecraft/world/level/Level; +MD: net/minecraft/world/entity/Entity/m_201940_ (Lnet/minecraft/world/phys/AABB;Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/entity/Entity/lambda$isInWall$2 (Lnet/minecraft/world/phys/AABB;Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/entity/Entity/m_20194_ ()Lnet/minecraft/server/MinecraftServer; net/minecraft/world/entity/Entity/getServer ()Lnet/minecraft/server/MinecraftServer; +MD: net/minecraft/world/entity/Entity/m_20197_ ()Ljava/util/List; net/minecraft/world/entity/Entity/getPassengers ()Ljava/util/List; +MD: net/minecraft/world/entity/Entity/m_20199_ ()Ljava/util/stream/Stream; net/minecraft/world/entity/Entity/getSelfAndPassengers ()Ljava/util/stream/Stream; +MD: net/minecraft/world/entity/Entity/m_20201_ ()Lnet/minecraft/world/entity/Entity; net/minecraft/world/entity/Entity/getRootVehicle ()Lnet/minecraft/world/entity/Entity; +MD: net/minecraft/world/entity/Entity/m_20202_ ()Lnet/minecraft/world/entity/Entity; net/minecraft/world/entity/Entity/getVehicle ()Lnet/minecraft/world/entity/Entity; +MD: net/minecraft/world/entity/Entity/m_20203_ ()Lnet/minecraft/commands/CommandSourceStack; net/minecraft/world/entity/Entity/createCommandSourceStack ()Lnet/minecraft/commands/CommandSourceStack; +MD: net/minecraft/world/entity/Entity/m_20204_ ()D net/minecraft/world/entity/Entity/getFluidJumpThreshold ()D +MD: net/minecraft/world/entity/Entity/m_20205_ ()F net/minecraft/world/entity/Entity/getBbWidth ()F +MD: net/minecraft/world/entity/Entity/m_20206_ ()F net/minecraft/world/entity/Entity/getBbHeight ()F +MD: net/minecraft/world/entity/Entity/m_20208_ (D)D net/minecraft/world/entity/Entity/getRandomX (D)D +MD: net/minecraft/world/entity/Entity/m_20214_ (FF)Lnet/minecraft/world/phys/Vec3; net/minecraft/world/entity/Entity/calculateUpVector (FF)Lnet/minecraft/world/phys/Vec3; +MD: net/minecraft/world/entity/Entity/m_20217_ (Lnet/minecraft/world/entity/Pose;)Lnet/minecraft/world/phys/AABB; net/minecraft/world/entity/Entity/getBoundingBoxForPose (Lnet/minecraft/world/entity/Pose;)Lnet/minecraft/world/phys/AABB; +MD: net/minecraft/world/entity/Entity/m_20219_ (Lnet/minecraft/world/phys/Vec3;)V net/minecraft/world/entity/Entity/moveTo (Lnet/minecraft/world/phys/Vec3;)V +MD: net/minecraft/world/entity/Entity/m_20221_ (Lnet/minecraft/core/BlockPos;)V net/minecraft/world/entity/Entity/handleInsidePortal (Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/world/entity/Entity/m_20223_ (Lnet/minecraft/nbt/CompoundTag;)Z net/minecraft/world/entity/Entity/save (Lnet/minecraft/nbt/CompoundTag;)Z +MD: net/minecraft/world/entity/Entity/m_20225_ (Z)V net/minecraft/world/entity/Entity/setSilent (Z)V +MD: net/minecraft/world/entity/Entity/m_20227_ (D)D net/minecraft/world/entity/Entity/getY (D)D +MD: net/minecraft/world/entity/Entity/m_20229_ (DDD)Z net/minecraft/world/entity/Entity/isFree (DDD)Z +MD: net/minecraft/world/entity/Entity/m_20234_ (I)V net/minecraft/world/entity/Entity/setId (I)V +MD: net/minecraft/world/entity/Entity/m_20236_ (Lnet/minecraft/world/entity/Pose;)F net/minecraft/world/entity/Entity/getEyeHeight (Lnet/minecraft/world/entity/Pose;)F +MD: net/minecraft/world/entity/Entity/m_20238_ (Lnet/minecraft/world/phys/Vec3;)D net/minecraft/world/entity/Entity/distanceToSqr (Lnet/minecraft/world/phys/Vec3;)D +MD: net/minecraft/world/entity/Entity/m_20240_ (Lnet/minecraft/nbt/CompoundTag;)Lnet/minecraft/nbt/CompoundTag; net/minecraft/world/entity/Entity/saveWithoutId (Lnet/minecraft/nbt/CompoundTag;)Lnet/minecraft/nbt/CompoundTag; +MD: net/minecraft/world/entity/Entity/m_20242_ (Z)V net/minecraft/world/entity/Entity/setNoGravity (Z)V +MD: net/minecraft/world/entity/Entity/m_20246_ (D)D net/minecraft/world/entity/Entity/getZ (D)D +MD: net/minecraft/world/entity/Entity/m_20248_ (DDD)V net/minecraft/world/entity/Entity/absMoveTo (DDD)V +MD: net/minecraft/world/entity/Entity/m_20252_ (F)Lnet/minecraft/world/phys/Vec3; net/minecraft/world/entity/Entity/getViewVector (F)Lnet/minecraft/world/phys/Vec3; +MD: net/minecraft/world/entity/Entity/m_20254_ (I)V net/minecraft/world/entity/Entity/setSecondsOnFire (I)V +MD: net/minecraft/world/entity/Entity/m_20256_ (Lnet/minecraft/world/phys/Vec3;)V net/minecraft/world/entity/Entity/setDeltaMovement (Lnet/minecraft/world/phys/Vec3;)V +MD: net/minecraft/world/entity/Entity/m_20258_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/entity/Entity/load (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/entity/Entity/m_20260_ (Z)V net/minecraft/world/entity/Entity/setShiftKeyDown (Z)V +MD: net/minecraft/world/entity/Entity/m_20262_ (D)D net/minecraft/world/entity/Entity/getRandomZ (D)D +MD: net/minecraft/world/entity/Entity/m_20270_ (Lnet/minecraft/world/entity/Entity;)F net/minecraft/world/entity/Entity/distanceTo (Lnet/minecraft/world/entity/Entity;)F +MD: net/minecraft/world/entity/Entity/m_20272_ (Lnet/minecraft/world/phys/Vec3;)Lnet/minecraft/world/phys/Vec3; net/minecraft/world/entity/Entity/collide (Lnet/minecraft/world/phys/Vec3;)Lnet/minecraft/world/phys/Vec3; +MD: net/minecraft/world/entity/Entity/m_20275_ (DDD)D net/minecraft/world/entity/Entity/distanceToSqr (DDD)D +MD: net/minecraft/world/entity/Entity/m_20280_ (Lnet/minecraft/world/entity/Entity;)D net/minecraft/world/entity/Entity/distanceToSqr (Lnet/minecraft/world/entity/Entity;)D +MD: net/minecraft/world/entity/Entity/m_20282_ (Z)V net/minecraft/world/entity/Entity/setSwimming (Z)V +MD: net/minecraft/world/entity/Entity/m_20285_ ()Z net/minecraft/world/entity/Entity/isInRain ()Z +MD: net/minecraft/world/entity/Entity/m_20289_ (F)Lnet/minecraft/world/phys/Vec3; net/minecraft/world/entity/Entity/getUpVector (F)Lnet/minecraft/world/phys/Vec3; +MD: net/minecraft/world/entity/Entity/m_20291_ (I)Z net/minecraft/world/entity/Entity/getSharedFlag (I)Z +MD: net/minecraft/world/entity/Entity/m_20299_ (F)Lnet/minecraft/world/phys/Vec3; net/minecraft/world/entity/Entity/getEyePosition (F)Lnet/minecraft/world/phys/Vec3; +MD: net/minecraft/world/entity/Entity/m_20301_ (I)V net/minecraft/world/entity/Entity/setAirSupply (I)V +MD: net/minecraft/world/entity/Entity/m_20305_ ()Z net/minecraft/world/entity/Entity/isInBubbleColumn ()Z +MD: net/minecraft/world/entity/Entity/m_20310_ (I)Z net/minecraft/world/entity/Entity/hasPermissions (I)Z +MD: net/minecraft/world/entity/Entity/m_203117_ ()Z net/minecraft/world/entity/Entity/isFreezing ()Z +MD: net/minecraft/world/entity/Entity/m_20314_ (DDD)V net/minecraft/world/entity/Entity/moveTowardsClosestSpace (DDD)V +MD: net/minecraft/world/entity/Entity/m_20318_ (F)Lnet/minecraft/world/phys/Vec3; net/minecraft/world/entity/Entity/getPosition (F)Lnet/minecraft/world/phys/Vec3; +MD: net/minecraft/world/entity/Entity/m_20321_ (Z)V net/minecraft/world/entity/Entity/onInsideBubbleColumn (Z)V +MD: net/minecraft/world/entity/Entity/m_20323_ ()V net/minecraft/world/entity/Entity/updateFluidOnEyes ()V +MD: net/minecraft/world/entity/Entity/m_20324_ (DDD)V net/minecraft/world/entity/Entity/teleportToWithTicket (DDD)V +MD: net/minecraft/world/entity/Entity/m_20329_ (Lnet/minecraft/world/entity/Entity;)Z net/minecraft/world/entity/Entity/startRiding (Lnet/minecraft/world/entity/Entity;)Z +MD: net/minecraft/world/entity/Entity/m_20331_ (Z)V net/minecraft/world/entity/Entity/setInvulnerable (Z)V +MD: net/minecraft/world/entity/Entity/m_20333_ ()Ljava/lang/String; net/minecraft/world/entity/Entity/lambda$fillCrashReportCategory$9 ()Ljava/lang/String; +MD: net/minecraft/world/entity/Entity/m_20334_ (DDD)V net/minecraft/world/entity/Entity/setDeltaMovement (DDD)V +MD: net/minecraft/world/entity/Entity/m_20340_ (Z)V net/minecraft/world/entity/Entity/setCustomNameVisible (Z)V +MD: net/minecraft/world/entity/Entity/m_20343_ (DDD)V net/minecraft/world/entity/Entity/setPosRaw (DDD)V +MD: net/minecraft/world/entity/Entity/m_20348_ (Lnet/minecraft/world/entity/Entity;)V net/minecraft/world/entity/Entity/addPassenger (Lnet/minecraft/world/entity/Entity;)V +MD: net/minecraft/world/entity/Entity/m_20351_ (Lnet/minecraft/world/entity/Entity;)V net/minecraft/world/entity/Entity/removePassenger (Lnet/minecraft/world/entity/Entity;)V +MD: net/minecraft/world/entity/Entity/m_20359_ (Lnet/minecraft/world/entity/Entity;)V net/minecraft/world/entity/Entity/copyPosition (Lnet/minecraft/world/entity/Entity;)V +MD: net/minecraft/world/entity/Entity/m_20361_ (Lnet/minecraft/world/entity/Entity;)V net/minecraft/world/entity/Entity/restoreFrom (Lnet/minecraft/world/entity/Entity;)V +MD: net/minecraft/world/entity/Entity/m_20363_ (Lnet/minecraft/world/entity/Entity;)Z net/minecraft/world/entity/Entity/hasPassenger (Lnet/minecraft/world/entity/Entity;)Z +MD: net/minecraft/world/entity/Entity/m_20365_ (Lnet/minecraft/world/entity/Entity;)Z net/minecraft/world/entity/Entity/isPassengerOfSameVehicle (Lnet/minecraft/world/entity/Entity;)Z +MD: net/minecraft/world/entity/Entity/m_20367_ (Lnet/minecraft/world/entity/Entity;)Z net/minecraft/world/entity/Entity/hasIndirectPassenger (Lnet/minecraft/world/entity/Entity;)Z +MD: net/minecraft/world/entity/Entity/m_204029_ (Lnet/minecraft/tags/TagKey;)Z net/minecraft/world/entity/Entity/isEyeInFluid (Lnet/minecraft/tags/TagKey;)Z +MD: net/minecraft/world/entity/Entity/m_204031_ (Lnet/minecraft/tags/TagKey;D)Z net/minecraft/world/entity/Entity/updateFluidHeightAndDoFluidPushing (Lnet/minecraft/tags/TagKey;D)Z +MD: net/minecraft/world/entity/Entity/m_204034_ (Lnet/minecraft/world/item/Item;)Lnet/minecraft/world/phys/Vec3; net/minecraft/world/entity/Entity/getHandHoldingItemAngle (Lnet/minecraft/world/item/Item;)Lnet/minecraft/world/phys/Vec3; +MD: net/minecraft/world/entity/Entity/m_204036_ (Lnet/minecraft/tags/TagKey;)D net/minecraft/world/entity/Entity/getFluidHeight (Lnet/minecraft/tags/TagKey;)D +MD: net/minecraft/world/entity/Entity/m_213651_ (Ljava/util/function/BiConsumer;)V net/minecraft/world/entity/Entity/updateDynamicGameEventListener (Ljava/util/function/BiConsumer;)V +MD: net/minecraft/world/entity/Entity/m_213816_ ()F net/minecraft/world/entity/Entity/getVisualRotationYInDegrees ()F +MD: net/minecraft/world/entity/Entity/m_213846_ (Lnet/minecraft/network/chat/Component;)V net/minecraft/world/entity/Entity/sendSystemMessage (Lnet/minecraft/network/chat/Component;)V +MD: net/minecraft/world/entity/Entity/m_213854_ ()Z net/minecraft/world/entity/Entity/dampensVibrations ()Z +MD: net/minecraft/world/entity/Entity/m_213856_ ()F net/minecraft/world/entity/Entity/getLightLevelDependentMagicValue ()F +MD: net/minecraft/world/entity/Entity/m_213870_ ()Lnet/minecraft/world/phys/Vec3; net/minecraft/world/entity/Entity/trackingPosition ()Lnet/minecraft/world/phys/Vec3; +MD: net/minecraft/world/entity/Entity/m_213877_ ()Z net/minecraft/world/entity/Entity/isRemoved ()Z +MD: net/minecraft/world/entity/Entity/m_214076_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;)Z net/minecraft/world/entity/Entity/killedEntity (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;)Z +MD: net/minecraft/world/entity/Entity/m_21515_ ()Z net/minecraft/world/entity/Entity/isEffectiveAi ()Z +MD: net/minecraft/world/entity/Entity/m_216986_ (F)Lnet/minecraft/core/BlockPos; net/minecraft/world/entity/Entity/getOnPos (F)Lnet/minecraft/core/BlockPos; +MD: net/minecraft/world/entity/Entity/m_216990_ (Lnet/minecraft/sounds/SoundEvent;)V net/minecraft/world/entity/Entity/playSound (Lnet/minecraft/sounds/SoundEvent;)V +MD: net/minecraft/world/entity/Entity/m_216992_ (Lnet/minecraft/world/entity/Entity;DD)Z net/minecraft/world/entity/Entity/closerThan (Lnet/minecraft/world/entity/Entity;DD)Z +MD: net/minecraft/world/entity/Entity/m_216999_ ()Lnet/minecraft/core/BlockPos; net/minecraft/world/entity/Entity/getOnPosLegacy ()Lnet/minecraft/core/BlockPos; +MD: net/minecraft/world/entity/Entity/m_217001_ ()Lnet/minecraft/network/protocol/game/VecDeltaCodec; net/minecraft/world/entity/Entity/getPositionCodec ()Lnet/minecraft/network/protocol/game/VecDeltaCodec; +MD: net/minecraft/world/entity/Entity/m_217002_ ()Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/entity/Entity/getBlockStateOnLegacy ()Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/entity/Entity/m_217003_ (Lnet/minecraft/world/entity/Pose;)Z net/minecraft/world/entity/Entity/hasPose (Lnet/minecraft/world/entity/Pose;)Z +MD: net/minecraft/world/entity/Entity/m_217005_ ()Z net/minecraft/world/entity/Entity/hasControllingPassenger ()Z +MD: net/minecraft/world/entity/Entity/m_217006_ (DDD)V net/minecraft/world/entity/Entity/syncPacketPositionCodec (DDD)V +MD: net/minecraft/world/entity/Entity/m_245125_ ()V net/minecraft/world/entity/Entity/checkSlowFallDistance ()V +MD: net/minecraft/world/entity/Entity/m_245894_ (F)Lnet/minecraft/world/phys/Vec3; net/minecraft/world/entity/Entity/getLeashOffset (F)Lnet/minecraft/world/phys/Vec3; +MD: net/minecraft/world/entity/Entity/m_246847_ (DDD)V net/minecraft/world/entity/Entity/teleportRelative (DDD)V +MD: net/minecraft/world/entity/Entity/m_246865_ (Lnet/minecraft/world/phys/Vec3;)V net/minecraft/world/entity/Entity/addDeltaMovement (Lnet/minecraft/world/phys/Vec3;)V +MD: net/minecraft/world/entity/Entity/m_252801_ ()V net/minecraft/world/entity/Entity/fixupDimensions ()V +MD: net/minecraft/world/entity/Entity/m_252836_ ()V net/minecraft/world/entity/Entity/extinguishFire ()V +MD: net/minecraft/world/entity/Entity/m_257153_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/BlockUtil$FoundRectangle;)Lnet/minecraft/world/level/portal/PortalInfo; net/minecraft/world/entity/Entity/lambda$findDimensionEntryPoint$7 (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/BlockUtil$FoundRectangle;)Lnet/minecraft/world/level/portal/PortalInfo; +MD: net/minecraft/world/entity/Entity/m_264318_ (Lnet/minecraft/server/level/ServerLevel;DDDLjava/util/Set;FF)Z net/minecraft/world/entity/Entity/teleportTo (Lnet/minecraft/server/level/ServerLevel;DDDLjava/util/Set;FF)Z +MD: net/minecraft/world/entity/Entity/m_264410_ ()Z net/minecraft/world/entity/Entity/canSprint ()Z +MD: net/minecraft/world/entity/Entity/m_269011_ ()Z net/minecraft/world/entity/Entity/couldAcceptPassenger ()Z +MD: net/minecraft/world/entity/Entity/m_269138_ (Lnet/minecraft/world/damagesource/DamageSource;)V net/minecraft/world/entity/Entity/handleDamageEvent (Lnet/minecraft/world/damagesource/DamageSource;)V +MD: net/minecraft/world/entity/Entity/m_269291_ ()Lnet/minecraft/world/damagesource/DamageSources; net/minecraft/world/entity/Entity/damageSources ()Lnet/minecraft/world/damagesource/DamageSources; +MD: net/minecraft/world/entity/Entity/m_269505_ (Ljava/util/List;)V net/minecraft/world/entity/Entity/onSyncedDataUpdated (Ljava/util/List;)V +MD: net/minecraft/world/entity/Entity/m_271807_ ()Z net/minecraft/world/entity/Entity/canBeHitByProjectile ()Z +MD: net/minecraft/world/entity/Entity/m_274367_ (F)V net/minecraft/world/entity/Entity/setMaxUpStep (F)V +MD: net/minecraft/world/entity/Entity/m_274421_ ()F net/minecraft/world/entity/Entity/maxUpStep ()F +MD: net/minecraft/world/entity/Entity/m_275832_ ()Lnet/minecraft/world/entity/Entity; net/minecraft/world/entity/Entity/getControlledVehicle ()Lnet/minecraft/world/entity/Entity; +MD: net/minecraft/world/entity/Entity/m_275843_ ()Z net/minecraft/world/entity/Entity/dismountsUnderwater ()Z +MD: net/minecraft/world/entity/Entity/m_276804_ ()V net/minecraft/world/entity/Entity/teleportPassengers ()V +MD: net/minecraft/world/entity/Entity/m_276951_ (Lnet/minecraft/core/BlockPos;)Lnet/minecraft/core/BlockPos; net/minecraft/world/entity/Entity/getPrimaryStepSoundBlockPos (Lnet/minecraft/core/BlockPos;)Lnet/minecraft/core/BlockPos; +MD: net/minecraft/world/entity/Entity/m_276961_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/state/BlockState;)V net/minecraft/world/entity/Entity/playCombinationStepSounds (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/state/BlockState;)V +MD: net/minecraft/world/entity/Entity/m_277063_ (Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/world/entity/Entity/shouldPlayAmethystStepSound (Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/world/entity/Entity/m_277116_ ()V net/minecraft/world/entity/Entity/playAmethystStepSound ()V +MD: net/minecraft/world/entity/Entity/m_278726_ ()F net/minecraft/world/entity/Entity/getNameTagOffsetY ()F +MD: net/minecraft/world/entity/Entity/m_280440_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V net/minecraft/world/entity/Entity/walkingStepSound (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V +MD: net/minecraft/world/entity/Entity/m_280447_ ()V net/minecraft/world/entity/Entity/waterSwimSound ()V +MD: net/minecraft/world/entity/Entity/m_280568_ (Lnet/minecraft/world/level/block/state/BlockState;)V net/minecraft/world/entity/Entity/playMuffledStepSound (Lnet/minecraft/world/level/block/state/BlockState;)V +MD: net/minecraft/world/entity/Entity/m_284013_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/entity/Entity/lambda$findDimensionEntryPoint$6 (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/entity/Entity/m_284535_ (Lnet/minecraft/world/level/Level;)V net/minecraft/world/entity/Entity/setLevel (Lnet/minecraft/world/level/Level;)V +MD: net/minecraft/world/entity/Entity/m_285720_ (Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/entity/Entity/lambda$checkFallDamage$1 (Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/entity/Entity/m_285776_ (Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/world/entity/Entity/isStateClimbable (Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/world/entity/Entity/m_286065_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;ZZLnet/minecraft/world/phys/Vec3;)Z net/minecraft/world/entity/Entity/vibrationAndSoundEffectsFromBlock (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;ZZLnet/minecraft/world/phys/Vec3;)Z +MD: net/minecraft/world/entity/Entity/m_287157_ ()I net/minecraft/world/entity/Entity/getPortalCooldown ()I +MD: net/minecraft/world/entity/Entity/m_287199_ (I)V net/minecraft/world/entity/Entity/setPortalCooldown (I)V +MD: net/minecraft/world/entity/Entity/m_287201_ (Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/entity/Entity/isSupportedBy (Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/entity/Entity/m_288188_ ()Z net/minecraft/world/entity/Entity/isOnRails ()Z +MD: net/minecraft/world/entity/Entity/m_289600_ (ZLnet/minecraft/world/phys/Vec3;)V net/minecraft/world/entity/Entity/checkSupportingBlock (ZLnet/minecraft/world/phys/Vec3;)V +MD: net/minecraft/world/entity/Entity/m_289603_ (ZLnet/minecraft/world/phys/Vec3;)V net/minecraft/world/entity/Entity/setOnGroundWithKnownMovement (ZLnet/minecraft/world/phys/Vec3;)V +MD: net/minecraft/world/entity/Entity/m_5446_ ()Lnet/minecraft/network/chat/Component; net/minecraft/world/entity/Entity/getDisplayName ()Lnet/minecraft/network/chat/Component; +MD: net/minecraft/world/entity/Entity/m_5489_ (Lnet/minecraft/server/level/ServerLevel;)Lnet/minecraft/world/entity/Entity; net/minecraft/world/entity/Entity/changeDimension (Lnet/minecraft/server/level/ServerLevel;)Lnet/minecraft/world/entity/Entity; +MD: net/minecraft/world/entity/Entity/m_5496_ (Lnet/minecraft/sounds/SoundEvent;FF)V net/minecraft/world/entity/Entity/playSound (Lnet/minecraft/sounds/SoundEvent;FF)V +MD: net/minecraft/world/entity/Entity/m_5501_ ()Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/Entity/getSwimSound ()Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/Entity/m_5508_ ()Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/Entity/getSwimHighSpeedSplashSound ()Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/Entity/m_5509_ ()Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/Entity/getSwimSplashSound ()Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/Entity/m_5552_ (Lnet/minecraft/world/item/ItemStack;F)Lnet/minecraft/world/entity/item/ItemEntity; net/minecraft/world/entity/Entity/spawnAtLocation (Lnet/minecraft/world/item/ItemStack;F)Lnet/minecraft/world/entity/item/ItemEntity; +MD: net/minecraft/world/entity/Entity/m_5616_ (F)V net/minecraft/world/entity/Entity/setYHeadRot (F)V +MD: net/minecraft/world/entity/Entity/m_5618_ (F)V net/minecraft/world/entity/Entity/setYBodyRot (F)V +MD: net/minecraft/world/entity/Entity/m_5625_ (F)V net/minecraft/world/entity/Entity/playSwimSound (F)V +MD: net/minecraft/world/entity/Entity/m_5647_ ()Lnet/minecraft/world/scores/Team; net/minecraft/world/entity/Entity/getTeam ()Lnet/minecraft/world/scores/Team; +MD: net/minecraft/world/entity/Entity/m_5654_ ()Lnet/minecraft/network/protocol/Packet; net/minecraft/world/entity/Entity/getAddEntityPacket ()Lnet/minecraft/network/protocol/Packet; +MD: net/minecraft/world/entity/Entity/m_5675_ (F)F net/minecraft/world/entity/Entity/getViewYRot (F)F +MD: net/minecraft/world/entity/Entity/m_5677_ ()Lnet/minecraft/network/chat/Component; net/minecraft/world/entity/Entity/getTypeName ()Lnet/minecraft/network/chat/Component; +MD: net/minecraft/world/entity/Entity/m_5686_ (F)F net/minecraft/world/entity/Entity/getViewXRot (F)F +MD: net/minecraft/world/entity/Entity/m_5720_ ()Lnet/minecraft/sounds/SoundSource; net/minecraft/world/entity/Entity/getSoundSource ()Lnet/minecraft/sounds/SoundSource; +MD: net/minecraft/world/entity/Entity/m_5763_ (Lnet/minecraft/world/phys/Vec3;Lnet/minecraft/world/entity/MoverType;)Lnet/minecraft/world/phys/Vec3; net/minecraft/world/entity/Entity/maybeBackOffFromEdge (Lnet/minecraft/world/phys/Vec3;Lnet/minecraft/world/entity/MoverType;)Lnet/minecraft/world/phys/Vec3; +MD: net/minecraft/world/entity/Entity/m_5825_ ()Z net/minecraft/world/entity/Entity/fireImmune ()Z +MD: net/minecraft/world/entity/Entity/m_5829_ ()Z net/minecraft/world/entity/Entity/canBeCollidedWith ()Z +MD: net/minecraft/world/entity/Entity/m_5830_ ()Z net/minecraft/world/entity/Entity/isInWall ()Z +MD: net/minecraft/world/entity/Entity/m_5833_ ()Z net/minecraft/world/entity/Entity/isSpectator ()Z +MD: net/minecraft/world/entity/Entity/m_5834_ ()V net/minecraft/world/entity/Entity/markHurt ()V +MD: net/minecraft/world/entity/Entity/m_5841_ ()V net/minecraft/world/entity/Entity/doWaterSplashEffect ()V +MD: net/minecraft/world/entity/Entity/m_5842_ ()Z net/minecraft/world/entity/Entity/isUnderWater ()Z +MD: net/minecraft/world/entity/Entity/m_5843_ ()Z net/minecraft/world/entity/Entity/canSpawnSprintParticle ()Z +MD: net/minecraft/world/entity/Entity/m_5844_ ()V net/minecraft/world/entity/Entity/updateSwimming ()V +MD: net/minecraft/world/entity/Entity/m_5993_ (Lnet/minecraft/world/entity/Entity;ILnet/minecraft/world/damagesource/DamageSource;)V net/minecraft/world/entity/Entity/awardKillScore (Lnet/minecraft/world/entity/Entity;ILnet/minecraft/world/damagesource/DamageSource;)V +MD: net/minecraft/world/entity/Entity/m_5997_ (DDD)V net/minecraft/world/entity/Entity/push (DDD)V +MD: net/minecraft/world/entity/Entity/m_6000_ (DDD)Z net/minecraft/world/entity/Entity/shouldRender (DDD)Z +MD: net/minecraft/world/entity/Entity/m_6001_ (DDD)V net/minecraft/world/entity/Entity/lerpMotion (DDD)V +MD: net/minecraft/world/entity/Entity/m_6021_ (DDD)V net/minecraft/world/entity/Entity/teleportTo (DDD)V +MD: net/minecraft/world/entity/Entity/m_6027_ (DDD)V net/minecraft/world/entity/Entity/moveTo (DDD)V +MD: net/minecraft/world/entity/Entity/m_6034_ (DDD)V net/minecraft/world/entity/Entity/setPos (DDD)V +MD: net/minecraft/world/entity/Entity/m_6038_ ()V net/minecraft/world/entity/Entity/removeVehicle ()V +MD: net/minecraft/world/entity/Entity/m_6041_ ()F net/minecraft/world/entity/Entity/getBlockSpeedFactor ()F +MD: net/minecraft/world/entity/Entity/m_6043_ ()V net/minecraft/world/entity/Entity/checkDespawn ()V +MD: net/minecraft/world/entity/Entity/m_6045_ ()I net/minecraft/world/entity/Entity/getDimensionChangingDelay ()I +MD: net/minecraft/world/entity/Entity/m_6047_ ()Z net/minecraft/world/entity/Entity/isCrouching ()Z +MD: net/minecraft/world/entity/Entity/m_6048_ ()D net/minecraft/world/entity/Entity/getPassengersRidingOffset ()D +MD: net/minecraft/world/entity/Entity/m_6049_ ()D net/minecraft/world/entity/Entity/getMyRidingOffset ()D +MD: net/minecraft/world/entity/Entity/m_6051_ ()Z net/minecraft/world/entity/Entity/displayFireAnimation ()Z +MD: net/minecraft/world/entity/Entity/m_6052_ ()Z net/minecraft/world/entity/Entity/shouldShowName ()Z +MD: net/minecraft/world/entity/Entity/m_6053_ (F)V net/minecraft/world/entity/Entity/animateHurt (F)V +MD: net/minecraft/world/entity/Entity/m_6056_ ()I net/minecraft/world/entity/Entity/getMaxFallDistance ()I +MD: net/minecraft/world/entity/Entity/m_6059_ ()F net/minecraft/world/entity/Entity/nextStep ()F +MD: net/minecraft/world/entity/Entity/m_6060_ ()Z net/minecraft/world/entity/Entity/isOnFire ()Z +MD: net/minecraft/world/entity/Entity/m_6062_ ()I net/minecraft/world/entity/Entity/getMaxAirSupply ()I +MD: net/minecraft/world/entity/Entity/m_6063_ ()Z net/minecraft/world/entity/Entity/isPushedByFluid ()Z +MD: net/minecraft/world/entity/Entity/m_6067_ ()Z net/minecraft/world/entity/Entity/isVisuallySwimming ()Z +MD: net/minecraft/world/entity/Entity/m_6069_ ()Z net/minecraft/world/entity/Entity/isSwimming ()Z +MD: net/minecraft/world/entity/Entity/m_6072_ ()Z net/minecraft/world/entity/Entity/canChangeDimensions ()Z +MD: net/minecraft/world/entity/Entity/m_6074_ ()V net/minecraft/world/entity/Entity/kill ()V +MD: net/minecraft/world/entity/Entity/m_6075_ ()V net/minecraft/world/entity/Entity/baseTick ()V +MD: net/minecraft/world/entity/Entity/m_6078_ ()I net/minecraft/world/entity/Entity/getPortalWaitTime ()I +MD: net/minecraft/world/entity/Entity/m_6080_ ()F net/minecraft/world/entity/Entity/getYHeadRot ()F +MD: net/minecraft/world/entity/Entity/m_6083_ ()V net/minecraft/world/entity/Entity/rideTick ()V +MD: net/minecraft/world/entity/Entity/m_6084_ ()Z net/minecraft/world/entity/Entity/isAlive ()Z +MD: net/minecraft/world/entity/Entity/m_6087_ ()Z net/minecraft/world/entity/Entity/isPickable ()Z +MD: net/minecraft/world/entity/Entity/m_6088_ ()V net/minecraft/world/entity/Entity/onBelowWorld ()V +MD: net/minecraft/world/entity/Entity/m_6089_ ()V net/minecraft/world/entity/Entity/removeAfterChangingDimensions ()V +MD: net/minecraft/world/entity/Entity/m_6090_ ()Z net/minecraft/world/entity/Entity/isIgnoringBlockTriggers ()Z +MD: net/minecraft/world/entity/Entity/m_6093_ ()Z net/minecraft/world/entity/Entity/repositionEntityAfterLoad ()Z +MD: net/minecraft/world/entity/Entity/m_6094_ ()Z net/minecraft/world/entity/Entity/isPushable ()Z +MD: net/minecraft/world/entity/Entity/m_6095_ ()Lnet/minecraft/world/entity/EntityType; net/minecraft/world/entity/Entity/getType ()Lnet/minecraft/world/entity/EntityType; +MD: net/minecraft/world/entity/Entity/m_6096_ (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;)Lnet/minecraft/world/InteractionResult; net/minecraft/world/entity/Entity/interact (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;)Lnet/minecraft/world/InteractionResult; +MD: net/minecraft/world/entity/Entity/m_6097_ ()Z net/minecraft/world/entity/Entity/isAttackable ()Z +MD: net/minecraft/world/entity/Entity/m_6101_ ()I net/minecraft/world/entity/Entity/getFireImmuneTicks ()I +MD: net/minecraft/world/entity/Entity/m_6102_ ()Z net/minecraft/world/entity/Entity/shouldInformAdmins ()Z +MD: net/minecraft/world/entity/Entity/m_6109_ ()Z net/minecraft/world/entity/Entity/isControlledByLocalInstance ()Z +MD: net/minecraft/world/entity/Entity/m_6123_ (Lnet/minecraft/world/entity/player/Player;)V net/minecraft/world/entity/Entity/playerTouch (Lnet/minecraft/world/entity/player/Player;)V +MD: net/minecraft/world/entity/Entity/m_6127_ ()Z net/minecraft/world/entity/Entity/onlyOpCanSetNbt ()Z +MD: net/minecraft/world/entity/Entity/m_6128_ ()Z net/minecraft/world/entity/Entity/ignoreExplosion ()Z +MD: net/minecraft/world/entity/Entity/m_6143_ ()F net/minecraft/world/entity/Entity/getPickRadius ()F +MD: net/minecraft/world/entity/Entity/m_6144_ ()Z net/minecraft/world/entity/Entity/isShiftKeyDown ()Z +MD: net/minecraft/world/entity/Entity/m_6167_ ()Ljava/lang/Iterable; net/minecraft/world/entity/Entity/getHandSlots ()Ljava/lang/Iterable; +MD: net/minecraft/world/entity/Entity/m_6168_ ()Ljava/lang/Iterable; net/minecraft/world/entity/Entity/getArmorSlots ()Ljava/lang/Iterable; +MD: net/minecraft/world/entity/Entity/m_6210_ ()V net/minecraft/world/entity/Entity/refreshDimensions ()V +MD: net/minecraft/world/entity/Entity/m_6302_ ()Ljava/lang/String; net/minecraft/world/entity/Entity/getScoreboardName ()Ljava/lang/String; +MD: net/minecraft/world/entity/Entity/m_6350_ ()Lnet/minecraft/core/Direction; net/minecraft/world/entity/Entity/getDirection ()Lnet/minecraft/core/Direction; +MD: net/minecraft/world/entity/Entity/m_6374_ ()Lnet/minecraft/core/Direction; net/minecraft/world/entity/Entity/getMotionDirection ()Lnet/minecraft/core/Direction; +MD: net/minecraft/world/entity/Entity/m_6380_ (Lnet/minecraft/world/entity/Pose;Lnet/minecraft/world/entity/EntityDimensions;)F net/minecraft/world/entity/Entity/getEyeHeight (Lnet/minecraft/world/entity/Pose;Lnet/minecraft/world/entity/EntityDimensions;)F +MD: net/minecraft/world/entity/Entity/m_6452_ (Lnet/minecraft/server/level/ServerPlayer;)V net/minecraft/world/entity/Entity/stopSeenByPlayer (Lnet/minecraft/server/level/ServerPlayer;)V +MD: net/minecraft/world/entity/Entity/m_6453_ (DDDFFIZ)V net/minecraft/world/entity/Entity/lerpTo (DDDFFIZ)V +MD: net/minecraft/world/entity/Entity/m_6457_ (Lnet/minecraft/server/level/ServerPlayer;)V net/minecraft/world/entity/Entity/startSeenByPlayer (Lnet/minecraft/server/level/ServerPlayer;)V +MD: net/minecraft/world/entity/Entity/m_6459_ (Lnet/minecraft/server/level/ServerPlayer;)Z net/minecraft/world/entity/Entity/broadcastToPlayer (Lnet/minecraft/server/level/ServerPlayer;)Z +MD: net/minecraft/world/entity/Entity/m_6469_ (Lnet/minecraft/world/damagesource/DamageSource;F)Z net/minecraft/world/entity/Entity/hurt (Lnet/minecraft/world/damagesource/DamageSource;F)Z +MD: net/minecraft/world/entity/Entity/m_6478_ (Lnet/minecraft/world/entity/MoverType;Lnet/minecraft/world/phys/Vec3;)V net/minecraft/world/entity/Entity/move (Lnet/minecraft/world/entity/MoverType;Lnet/minecraft/world/phys/Vec3;)V +MD: net/minecraft/world/entity/Entity/m_6541_ (FI)V net/minecraft/world/entity/Entity/lerpHeadTo (FI)V +MD: net/minecraft/world/entity/Entity/m_6593_ (Lnet/minecraft/network/chat/Component;)V net/minecraft/world/entity/Entity/setCustomName (Lnet/minecraft/network/chat/Component;)V +MD: net/minecraft/world/entity/Entity/m_6673_ (Lnet/minecraft/world/damagesource/DamageSource;)Z net/minecraft/world/entity/Entity/isInvulnerableTo (Lnet/minecraft/world/damagesource/DamageSource;)Z +MD: net/minecraft/world/entity/Entity/m_6688_ ()Lnet/minecraft/world/entity/LivingEntity; net/minecraft/world/entity/Entity/getControllingPassenger ()Lnet/minecraft/world/entity/LivingEntity; +MD: net/minecraft/world/entity/Entity/m_6763_ (Lnet/minecraft/world/level/block/state/BlockState;)V net/minecraft/world/entity/Entity/onInsideBlock (Lnet/minecraft/world/level/block/state/BlockState;)V +MD: net/minecraft/world/entity/Entity/m_6783_ (D)Z net/minecraft/world/entity/Entity/shouldRenderAtSqrDistance (D)Z +MD: net/minecraft/world/entity/Entity/m_6842_ (Z)V net/minecraft/world/entity/Entity/setInvisible (Z)V +MD: net/minecraft/world/entity/Entity/m_6845_ (Z)V net/minecraft/world/entity/Entity/onAboveBubbleCol (Z)V +MD: net/minecraft/world/entity/Entity/m_6853_ (Z)V net/minecraft/world/entity/Entity/setOnGround (Z)V +MD: net/minecraft/world/entity/Entity/m_6858_ (Z)V net/minecraft/world/entity/Entity/setSprinting (Z)V +MD: net/minecraft/world/entity/Entity/m_6921_ ()Lnet/minecraft/world/phys/AABB; net/minecraft/world/entity/Entity/getBoundingBoxForCulling ()Lnet/minecraft/world/phys/AABB; +MD: net/minecraft/world/entity/Entity/m_6961_ (Lnet/minecraft/world/level/block/Mirror;)F net/minecraft/world/entity/Entity/mirror (Lnet/minecraft/world/level/block/Mirror;)F +MD: net/minecraft/world/entity/Entity/m_6972_ (Lnet/minecraft/world/entity/Pose;)Lnet/minecraft/world/entity/EntityDimensions; net/minecraft/world/entity/Entity/getDimensions (Lnet/minecraft/world/entity/Pose;)Lnet/minecraft/world/entity/EntityDimensions; +MD: net/minecraft/world/entity/Entity/m_6999_ ()Z net/minecraft/world/entity/Entity/acceptsSuccess ()Z +MD: net/minecraft/world/entity/Entity/m_7028_ ()Z net/minecraft/world/entity/Entity/acceptsFailure ()Z +MD: net/minecraft/world/entity/Entity/m_7077_ (Lnet/minecraft/world/level/Explosion;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/material/FluidState;F)F net/minecraft/world/entity/Entity/getBlockExplosionResistance (Lnet/minecraft/world/level/Explosion;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/material/FluidState;F)F +MD: net/minecraft/world/entity/Entity/m_7111_ (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/phys/Vec3;Lnet/minecraft/world/InteractionHand;)Lnet/minecraft/world/InteractionResult; net/minecraft/world/entity/Entity/interactAt (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/phys/Vec3;Lnet/minecraft/world/InteractionHand;)Lnet/minecraft/world/InteractionResult; +MD: net/minecraft/world/entity/Entity/m_7306_ (Lnet/minecraft/world/entity/Entity;)Z net/minecraft/world/entity/Entity/is (Lnet/minecraft/world/entity/Entity;)Z +MD: net/minecraft/world/entity/Entity/m_7307_ (Lnet/minecraft/world/entity/Entity;)Z net/minecraft/world/entity/Entity/isAlliedTo (Lnet/minecraft/world/entity/Entity;)Z +MD: net/minecraft/world/entity/Entity/m_7310_ (Lnet/minecraft/world/entity/Entity;)Z net/minecraft/world/entity/Entity/canAddPassenger (Lnet/minecraft/world/entity/Entity;)Z +MD: net/minecraft/world/entity/Entity/m_7311_ (I)V net/minecraft/world/entity/Entity/setRemainingFireTicks (I)V +MD: net/minecraft/world/entity/Entity/m_7313_ (Lnet/minecraft/world/entity/Entity;)Z net/minecraft/world/entity/Entity/skipAttackInteraction (Lnet/minecraft/world/entity/Entity;)Z +MD: net/minecraft/world/entity/Entity/m_7332_ (Lnet/minecraft/world/entity/Entity;)V net/minecraft/world/entity/Entity/positionRider (Lnet/minecraft/world/entity/Entity;)V +MD: net/minecraft/world/entity/Entity/m_7334_ (Lnet/minecraft/world/entity/Entity;)V net/minecraft/world/entity/Entity/push (Lnet/minecraft/world/entity/Entity;)V +MD: net/minecraft/world/entity/Entity/m_7337_ (Lnet/minecraft/world/entity/Entity;)Z net/minecraft/world/entity/Entity/canCollideWith (Lnet/minecraft/world/entity/Entity;)Z +MD: net/minecraft/world/entity/Entity/m_7340_ (Lnet/minecraft/world/entity/Entity;)V net/minecraft/world/entity/Entity/onPassengerTurned (Lnet/minecraft/world/entity/Entity;)V +MD: net/minecraft/world/entity/Entity/m_7341_ (Lnet/minecraft/world/entity/Entity;)Z net/minecraft/world/entity/Entity/canRide (Lnet/minecraft/world/entity/Entity;)Z +MD: net/minecraft/world/entity/Entity/m_7349_ (Lnet/minecraft/world/level/Explosion;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;F)Z net/minecraft/world/entity/Entity/shouldBlockExplode (Lnet/minecraft/world/level/Explosion;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;F)Z +MD: net/minecraft/world/entity/Entity/m_7350_ (Lnet/minecraft/network/syncher/EntityDataAccessor;)V net/minecraft/world/entity/Entity/onSyncedDataUpdated (Lnet/minecraft/network/syncher/EntityDataAccessor;)V +MD: net/minecraft/world/entity/Entity/m_7355_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V net/minecraft/world/entity/Entity/playStepSound (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V +MD: net/minecraft/world/entity/Entity/m_7371_ (F)Lnet/minecraft/world/phys/Vec3; net/minecraft/world/entity/Entity/getLightProbePosition (F)Lnet/minecraft/world/phys/Vec3; +MD: net/minecraft/world/entity/Entity/m_7378_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/entity/Entity/readAdditionalSaveData (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/entity/Entity/m_7380_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/entity/Entity/addAdditionalSaveData (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/entity/Entity/m_7398_ (F)Lnet/minecraft/world/phys/Vec3; net/minecraft/world/entity/Entity/getRopeHoldPosition (F)Lnet/minecraft/world/phys/Vec3; +MD: net/minecraft/world/entity/Entity/m_7601_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/phys/Vec3;)V net/minecraft/world/entity/Entity/makeStuckInBlock (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/phys/Vec3;)V +MD: net/minecraft/world/entity/Entity/m_7618_ (Lnet/minecraft/commands/arguments/EntityAnchorArgument$Anchor;Lnet/minecraft/world/phys/Vec3;)V net/minecraft/world/entity/Entity/lookAt (Lnet/minecraft/commands/arguments/EntityAnchorArgument$Anchor;Lnet/minecraft/world/phys/Vec3;)V +MD: net/minecraft/world/entity/Entity/m_7643_ (Lnet/minecraft/core/Direction$Axis;Lnet/minecraft/BlockUtil$FoundRectangle;)Lnet/minecraft/world/phys/Vec3; net/minecraft/world/entity/Entity/getRelativePortalPosition (Lnet/minecraft/core/Direction$Axis;Lnet/minecraft/BlockUtil$FoundRectangle;)Lnet/minecraft/world/phys/Vec3; +MD: net/minecraft/world/entity/Entity/m_7678_ (DDDFF)V net/minecraft/world/entity/Entity/moveTo (DDDFF)V +MD: net/minecraft/world/entity/Entity/m_7688_ (Lnet/minecraft/world/entity/LivingEntity;)Lnet/minecraft/world/phys/Vec3; net/minecraft/world/entity/Entity/getDismountLocationForPassenger (Lnet/minecraft/world/entity/LivingEntity;)Lnet/minecraft/world/phys/Vec3; +MD: net/minecraft/world/entity/Entity/m_7752_ ()Lnet/minecraft/world/level/material/PushReaction; net/minecraft/world/entity/Entity/getPistonPushReaction ()Lnet/minecraft/world/level/material/PushReaction; +MD: net/minecraft/world/entity/Entity/m_7755_ ()Lnet/minecraft/network/chat/Component; net/minecraft/world/entity/Entity/getName ()Lnet/minecraft/network/chat/Component; +MD: net/minecraft/world/entity/Entity/m_7770_ ()Lnet/minecraft/network/chat/Component; net/minecraft/world/entity/Entity/getCustomName ()Lnet/minecraft/network/chat/Component; +MD: net/minecraft/world/entity/Entity/m_7822_ (B)V net/minecraft/world/entity/Entity/handleEntityEvent (B)V +MD: net/minecraft/world/entity/Entity/m_7840_ (DZLnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/BlockPos;)V net/minecraft/world/entity/Entity/checkFallDamage (DZLnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/world/entity/Entity/m_7890_ (Lnet/minecraft/world/level/block/Rotation;)F net/minecraft/world/entity/Entity/rotate (Lnet/minecraft/world/level/block/Rotation;)F +MD: net/minecraft/world/entity/Entity/m_7937_ (Lnet/minecraft/server/level/ServerLevel;)Lnet/minecraft/world/level/portal/PortalInfo; net/minecraft/world/entity/Entity/findDimensionEntryPoint (Lnet/minecraft/server/level/ServerLevel;)Lnet/minecraft/world/level/portal/PortalInfo; +MD: net/minecraft/world/entity/Entity/m_7939_ ()Lnet/minecraft/world/phys/Vec3; net/minecraft/world/entity/Entity/getLeashOffset ()Lnet/minecraft/world/phys/Vec3; +MD: net/minecraft/world/entity/Entity/m_7976_ (Lnet/minecraft/CrashReportCategory;)V net/minecraft/world/entity/Entity/fillCrashReportCategory (Lnet/minecraft/CrashReportCategory;)V +MD: net/minecraft/world/entity/Entity/m_7998_ (Lnet/minecraft/world/entity/Entity;Z)Z net/minecraft/world/entity/Entity/startRiding (Lnet/minecraft/world/entity/Entity;Z)Z +MD: net/minecraft/world/entity/Entity/m_8021_ ()V net/minecraft/world/entity/Entity/processPortalCooldown ()V +MD: net/minecraft/world/entity/Entity/m_8038_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LightningBolt;)V net/minecraft/world/entity/Entity/thunderHit (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LightningBolt;)V +MD: net/minecraft/world/entity/Entity/m_8061_ (Lnet/minecraft/world/entity/EquipmentSlot;Lnet/minecraft/world/item/ItemStack;)V net/minecraft/world/entity/Entity/setItemSlot (Lnet/minecraft/world/entity/EquipmentSlot;Lnet/minecraft/world/item/ItemStack;)V +MD: net/minecraft/world/entity/Entity/m_8077_ ()Z net/minecraft/world/entity/Entity/hasCustomName ()Z +MD: net/minecraft/world/entity/Entity/m_8088_ ()I net/minecraft/world/entity/Entity/getPermissionLevel ()I +MD: net/minecraft/world/entity/Entity/m_8097_ ()V net/minecraft/world/entity/Entity/defineSynchedData ()V +MD: net/minecraft/world/entity/Entity/m_8119_ ()V net/minecraft/world/entity/Entity/tick ()V +MD: net/minecraft/world/entity/Entity/m_8127_ ()V net/minecraft/world/entity/Entity/stopRiding ()V +MD: net/minecraft/world/entity/Entity/m_9236_ ()Lnet/minecraft/world/level/Level; net/minecraft/world/entity/Entity/level ()Lnet/minecraft/world/level/Level; +MD: net/minecraft/world/entity/Entity/toString ()Ljava/lang/String; net/minecraft/world/entity/Entity/toString ()Ljava/lang/String; +MD: net/minecraft/world/entity/Entity$1/ ()V net/minecraft/world/entity/Entity$1/ ()V +MD: net/minecraft/world/entity/Entity$MoveFunction/m_20372_ (Lnet/minecraft/world/entity/Entity;DDD)V net/minecraft/world/entity/Entity$MoveFunction/accept (Lnet/minecraft/world/entity/Entity;DDD)V +MD: net/minecraft/world/entity/Entity$MovementEmission/ ()V net/minecraft/world/entity/Entity$MovementEmission/ ()V +MD: net/minecraft/world/entity/Entity$MovementEmission/ (Ljava/lang/String;IZZ)V net/minecraft/world/entity/Entity$MovementEmission/ (Ljava/lang/String;IZZ)V +MD: net/minecraft/world/entity/Entity$MovementEmission/m_146944_ ()Z net/minecraft/world/entity/Entity$MovementEmission/emitsAnything ()Z +MD: net/minecraft/world/entity/Entity$MovementEmission/m_146945_ ()Z net/minecraft/world/entity/Entity$MovementEmission/emitsEvents ()Z +MD: net/minecraft/world/entity/Entity$MovementEmission/m_146946_ ()Z net/minecraft/world/entity/Entity$MovementEmission/emitsSounds ()Z +MD: net/minecraft/world/entity/Entity$MovementEmission/m_146947_ ()[Lnet/minecraft/world/entity/Entity$MovementEmission; net/minecraft/world/entity/Entity$MovementEmission/$values ()[Lnet/minecraft/world/entity/Entity$MovementEmission; +MD: net/minecraft/world/entity/Entity$MovementEmission/valueOf (Ljava/lang/String;)Lnet/minecraft/world/entity/Entity$MovementEmission; net/minecraft/world/entity/Entity$MovementEmission/valueOf (Ljava/lang/String;)Lnet/minecraft/world/entity/Entity$MovementEmission; +MD: net/minecraft/world/entity/Entity$MovementEmission/values ()[Lnet/minecraft/world/entity/Entity$MovementEmission; net/minecraft/world/entity/Entity$MovementEmission/values ()[Lnet/minecraft/world/entity/Entity$MovementEmission; +MD: net/minecraft/world/entity/Entity$RemovalReason/ ()V net/minecraft/world/entity/Entity$RemovalReason/ ()V +MD: net/minecraft/world/entity/Entity$RemovalReason/ (Ljava/lang/String;IZZ)V net/minecraft/world/entity/Entity$RemovalReason/ (Ljava/lang/String;IZZ)V +MD: net/minecraft/world/entity/Entity$RemovalReason/m_146965_ ()Z net/minecraft/world/entity/Entity$RemovalReason/shouldDestroy ()Z +MD: net/minecraft/world/entity/Entity$RemovalReason/m_146966_ ()Z net/minecraft/world/entity/Entity$RemovalReason/shouldSave ()Z +MD: net/minecraft/world/entity/Entity$RemovalReason/m_146967_ ()[Lnet/minecraft/world/entity/Entity$RemovalReason; net/minecraft/world/entity/Entity$RemovalReason/$values ()[Lnet/minecraft/world/entity/Entity$RemovalReason; +MD: net/minecraft/world/entity/Entity$RemovalReason/valueOf (Ljava/lang/String;)Lnet/minecraft/world/entity/Entity$RemovalReason; net/minecraft/world/entity/Entity$RemovalReason/valueOf (Ljava/lang/String;)Lnet/minecraft/world/entity/Entity$RemovalReason; +MD: net/minecraft/world/entity/Entity$RemovalReason/values ()[Lnet/minecraft/world/entity/Entity$RemovalReason; net/minecraft/world/entity/Entity$RemovalReason/values ()[Lnet/minecraft/world/entity/Entity$RemovalReason; +MD: net/minecraft/world/entity/EntityDimensions/ (FFZ)V net/minecraft/world/entity/EntityDimensions/ (FFZ)V +MD: net/minecraft/world/entity/EntityDimensions/m_20384_ (DDD)Lnet/minecraft/world/phys/AABB; net/minecraft/world/entity/EntityDimensions/makeBoundingBox (DDD)Lnet/minecraft/world/phys/AABB; +MD: net/minecraft/world/entity/EntityDimensions/m_20388_ (F)Lnet/minecraft/world/entity/EntityDimensions; net/minecraft/world/entity/EntityDimensions/scale (F)Lnet/minecraft/world/entity/EntityDimensions; +MD: net/minecraft/world/entity/EntityDimensions/m_20390_ (FF)Lnet/minecraft/world/entity/EntityDimensions; net/minecraft/world/entity/EntityDimensions/scale (FF)Lnet/minecraft/world/entity/EntityDimensions; +MD: net/minecraft/world/entity/EntityDimensions/m_20393_ (Lnet/minecraft/world/phys/Vec3;)Lnet/minecraft/world/phys/AABB; net/minecraft/world/entity/EntityDimensions/makeBoundingBox (Lnet/minecraft/world/phys/Vec3;)Lnet/minecraft/world/phys/AABB; +MD: net/minecraft/world/entity/EntityDimensions/m_20395_ (FF)Lnet/minecraft/world/entity/EntityDimensions; net/minecraft/world/entity/EntityDimensions/scalable (FF)Lnet/minecraft/world/entity/EntityDimensions; +MD: net/minecraft/world/entity/EntityDimensions/m_20398_ (FF)Lnet/minecraft/world/entity/EntityDimensions; net/minecraft/world/entity/EntityDimensions/fixed (FF)Lnet/minecraft/world/entity/EntityDimensions; +MD: net/minecraft/world/entity/EntityDimensions/toString ()Ljava/lang/String; net/minecraft/world/entity/EntityDimensions/toString ()Ljava/lang/String; +MD: net/minecraft/world/entity/EntityEvent/ ()V net/minecraft/world/entity/EntityEvent/ ()V +MD: net/minecraft/world/entity/EntitySelector/ ()V net/minecraft/world/entity/EntitySelector/ ()V +MD: net/minecraft/world/entity/EntitySelector/ ()V net/minecraft/world/entity/EntitySelector/ ()V +MD: net/minecraft/world/entity/EntitySelector/m_20410_ (DDDD)Ljava/util/function/Predicate; net/minecraft/world/entity/EntitySelector/withinDistance (DDDD)Ljava/util/function/Predicate; +MD: net/minecraft/world/entity/EntitySelector/m_20415_ (DDDDLnet/minecraft/world/entity/Entity;)Z net/minecraft/world/entity/EntitySelector/lambda$withinDistance$5 (DDDDLnet/minecraft/world/entity/Entity;)Z +MD: net/minecraft/world/entity/EntitySelector/m_20421_ (Lnet/minecraft/world/entity/Entity;)Ljava/util/function/Predicate; net/minecraft/world/entity/EntitySelector/pushableBy (Lnet/minecraft/world/entity/Entity;)Ljava/util/function/Predicate; +MD: net/minecraft/world/entity/EntitySelector/m_20423_ (Lnet/minecraft/world/entity/Entity;Lnet/minecraft/world/entity/Entity;)Z net/minecraft/world/entity/EntitySelector/lambda$notRiding$7 (Lnet/minecraft/world/entity/Entity;Lnet/minecraft/world/entity/Entity;)Z +MD: net/minecraft/world/entity/EntitySelector/m_20426_ (Lnet/minecraft/world/entity/Entity;Lnet/minecraft/world/scores/Team;Lnet/minecraft/world/scores/Team$CollisionRule;Lnet/minecraft/world/entity/Entity;)Z net/minecraft/world/entity/EntitySelector/lambda$pushableBy$6 (Lnet/minecraft/world/entity/Entity;Lnet/minecraft/world/scores/Team;Lnet/minecraft/world/scores/Team$CollisionRule;Lnet/minecraft/world/entity/Entity;)Z +MD: net/minecraft/world/entity/EntitySelector/m_20431_ (Lnet/minecraft/world/entity/Entity;)Ljava/util/function/Predicate; net/minecraft/world/entity/EntitySelector/notRiding (Lnet/minecraft/world/entity/Entity;)Ljava/util/function/Predicate; +MD: net/minecraft/world/entity/EntitySelector/m_20433_ (Lnet/minecraft/world/entity/Entity;)Z net/minecraft/world/entity/EntitySelector/lambda$static$4 (Lnet/minecraft/world/entity/Entity;)Z +MD: net/minecraft/world/entity/EntitySelector/m_20435_ (Lnet/minecraft/world/entity/Entity;)Z net/minecraft/world/entity/EntitySelector/lambda$static$3 (Lnet/minecraft/world/entity/Entity;)Z +MD: net/minecraft/world/entity/EntitySelector/m_20437_ (Lnet/minecraft/world/entity/Entity;)Z net/minecraft/world/entity/EntitySelector/lambda$static$2 (Lnet/minecraft/world/entity/Entity;)Z +MD: net/minecraft/world/entity/EntitySelector/m_20439_ (Lnet/minecraft/world/entity/Entity;)Z net/minecraft/world/entity/EntitySelector/lambda$static$1 (Lnet/minecraft/world/entity/Entity;)Z +MD: net/minecraft/world/entity/EntitySelector/m_20441_ (Lnet/minecraft/world/entity/Entity;)Z net/minecraft/world/entity/EntitySelector/lambda$static$0 (Lnet/minecraft/world/entity/Entity;)Z +MD: net/minecraft/world/entity/EntitySelector$MobCanWearArmorEntitySelector/ (Lnet/minecraft/world/item/ItemStack;)V net/minecraft/world/entity/EntitySelector$MobCanWearArmorEntitySelector/ (Lnet/minecraft/world/item/ItemStack;)V +MD: net/minecraft/world/entity/EntitySelector$MobCanWearArmorEntitySelector/test (Ljava/lang/Object;)Z net/minecraft/world/entity/EntitySelector$MobCanWearArmorEntitySelector/test (Ljava/lang/Object;)Z +MD: net/minecraft/world/entity/EntitySelector$MobCanWearArmorEntitySelector/test (Lnet/minecraft/world/entity/Entity;)Z net/minecraft/world/entity/EntitySelector$MobCanWearArmorEntitySelector/test (Lnet/minecraft/world/entity/Entity;)Z +MD: net/minecraft/world/entity/EntityType/ ()V net/minecraft/world/entity/EntityType/ ()V +MD: net/minecraft/world/entity/EntityType/ (Lnet/minecraft/world/entity/EntityType$EntityFactory;Lnet/minecraft/world/entity/MobCategory;ZZZZLcom/google/common/collect/ImmutableSet;Lnet/minecraft/world/entity/EntityDimensions;IILnet/minecraft/world/flag/FeatureFlagSet;)V net/minecraft/world/entity/EntityType/ (Lnet/minecraft/world/entity/EntityType$EntityFactory;Lnet/minecraft/world/entity/MobCategory;ZZZZLcom/google/common/collect/ImmutableSet;Lnet/minecraft/world/entity/EntityDimensions;IILnet/minecraft/world/flag/FeatureFlagSet;)V +MD: net/minecraft/world/entity/EntityType/m_141992_ (Ljava/lang/Object;)Ljava/lang/Object; net/minecraft/world/entity/EntityType/tryCast (Ljava/lang/Object;)Ljava/lang/Object; +MD: net/minecraft/world/entity/EntityType/m_141992_ (Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/world/entity/Entity; net/minecraft/world/entity/EntityType/tryCast (Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/world/entity/Entity; +MD: net/minecraft/world/entity/EntityType/m_142225_ ()Ljava/lang/Class; net/minecraft/world/entity/EntityType/getBaseClass ()Ljava/lang/Class; +MD: net/minecraft/world/entity/EntityType/m_147045_ (Ljava/util/List;Lnet/minecraft/world/level/Level;)Ljava/util/stream/Stream; net/minecraft/world/entity/EntityType/loadEntitiesRecursive (Ljava/util/List;Lnet/minecraft/world/level/Level;)Ljava/util/stream/Stream; +MD: net/minecraft/world/entity/EntityType/m_147048_ ()Ljava/lang/String; net/minecraft/world/entity/EntityType/toShortString ()Ljava/lang/String; +MD: net/minecraft/world/entity/EntityType/m_185988_ (Lnet/minecraft/nbt/CompoundTag;Lnet/minecraft/world/entity/Entity;)V net/minecraft/world/entity/EntityType/lambda$create$5 (Lnet/minecraft/nbt/CompoundTag;Lnet/minecraft/world/entity/Entity;)V +MD: net/minecraft/world/entity/EntityType/m_185991_ (Lnet/minecraft/nbt/CompoundTag;Lnet/minecraft/world/level/Level;Ljava/util/function/Function;Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/world/entity/Entity; net/minecraft/world/entity/EntityType/lambda$loadEntityRecursive$7 (Lnet/minecraft/nbt/CompoundTag;Lnet/minecraft/world/level/Level;Ljava/util/function/Function;Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/world/entity/Entity; +MD: net/minecraft/world/entity/EntityType/m_185996_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/entity/EntityType;)Lnet/minecraft/world/entity/Entity; net/minecraft/world/entity/EntityType/lambda$create$4 (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/entity/EntityType;)Lnet/minecraft/world/entity/Entity; +MD: net/minecraft/world/entity/EntityType/m_185999_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/entity/EntityType/lambda$create$6 (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/entity/EntityType/m_204039_ (Lnet/minecraft/tags/TagKey;)Z net/minecraft/world/entity/EntityType/is (Lnet/minecraft/tags/TagKey;)Z +MD: net/minecraft/world/entity/EntityType/m_204041_ ()Lnet/minecraft/core/Holder$Reference; net/minecraft/world/entity/EntityType/builtInRegistryHolder ()Lnet/minecraft/core/Holder$Reference; +MD: net/minecraft/world/entity/EntityType/m_20584_ ()Z net/minecraft/world/entity/EntityType/canSerialize ()Z +MD: net/minecraft/world/entity/EntityType/m_20585_ (DDD)Lnet/minecraft/world/phys/AABB; net/minecraft/world/entity/EntityType/getAABB (DDD)Lnet/minecraft/world/phys/AABB; +MD: net/minecraft/world/entity/EntityType/m_20592_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/MobSpawnType;ZZ)Lnet/minecraft/world/entity/Entity; net/minecraft/world/entity/EntityType/spawn (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/MobSpawnType;ZZ)Lnet/minecraft/world/entity/Entity; +MD: net/minecraft/world/entity/EntityType/m_20613_ (Lnet/minecraft/world/entity/EntityType;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/world/entity/EntityType/getKey (Lnet/minecraft/world/entity/EntityType;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/world/entity/EntityType/m_20615_ (Lnet/minecraft/world/level/Level;)Lnet/minecraft/world/entity/Entity; net/minecraft/world/entity/EntityType/create (Lnet/minecraft/world/level/Level;)Lnet/minecraft/world/entity/Entity; +MD: net/minecraft/world/entity/EntityType/m_20620_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/entity/Entity;Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/entity/EntityType/updateCustomEntityTag (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/entity/Entity;Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/entity/EntityType/m_20625_ (Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;ZLnet/minecraft/world/phys/AABB;)D net/minecraft/world/entity/EntityType/getYOffset (Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;ZLnet/minecraft/world/phys/AABB;)D +MD: net/minecraft/world/entity/EntityType/m_20630_ (Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/world/entity/EntityType/isBlockDangerous (Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/world/entity/EntityType/m_20632_ (Ljava/lang/String;)Ljava/util/Optional; net/minecraft/world/entity/EntityType/byString (Ljava/lang/String;)Ljava/util/Optional; +MD: net/minecraft/world/entity/EntityType/m_20634_ (Ljava/lang/String;Lnet/minecraft/world/entity/EntityType$Builder;)Lnet/minecraft/world/entity/EntityType; net/minecraft/world/entity/EntityType/register (Ljava/lang/String;Lnet/minecraft/world/entity/EntityType$Builder;)Lnet/minecraft/world/entity/EntityType; +MD: net/minecraft/world/entity/EntityType/m_20637_ (Lnet/minecraft/nbt/CompoundTag;)Ljava/util/Optional; net/minecraft/world/entity/EntityType/by (Lnet/minecraft/nbt/CompoundTag;)Ljava/util/Optional; +MD: net/minecraft/world/entity/EntityType/m_20642_ (Lnet/minecraft/nbt/CompoundTag;Lnet/minecraft/world/level/Level;)Ljava/util/Optional; net/minecraft/world/entity/EntityType/create (Lnet/minecraft/nbt/CompoundTag;Lnet/minecraft/world/level/Level;)Ljava/util/Optional; +MD: net/minecraft/world/entity/EntityType/m_20645_ (Lnet/minecraft/nbt/CompoundTag;Lnet/minecraft/world/level/Level;Ljava/util/function/Function;)Lnet/minecraft/world/entity/Entity; net/minecraft/world/entity/EntityType/loadEntityRecursive (Lnet/minecraft/nbt/CompoundTag;Lnet/minecraft/world/level/Level;Ljava/util/function/Function;)Lnet/minecraft/world/entity/Entity; +MD: net/minecraft/world/entity/EntityType/m_20654_ ()Z net/minecraft/world/entity/EntityType/canSummon ()Z +MD: net/minecraft/world/entity/EntityType/m_20669_ (Lnet/minecraft/nbt/CompoundTag;Lnet/minecraft/world/level/Level;)Ljava/util/Optional; net/minecraft/world/entity/EntityType/loadStaticEntity (Lnet/minecraft/nbt/CompoundTag;Lnet/minecraft/world/level/Level;)Ljava/util/Optional; +MD: net/minecraft/world/entity/EntityType/m_20672_ ()Z net/minecraft/world/entity/EntityType/fireImmune ()Z +MD: net/minecraft/world/entity/EntityType/m_20673_ ()Z net/minecraft/world/entity/EntityType/canSpawnFarFromPlayer ()Z +MD: net/minecraft/world/entity/EntityType/m_20674_ ()Lnet/minecraft/world/entity/MobCategory; net/minecraft/world/entity/EntityType/getCategory ()Lnet/minecraft/world/entity/MobCategory; +MD: net/minecraft/world/entity/EntityType/m_20675_ ()Ljava/lang/String; net/minecraft/world/entity/EntityType/getDescriptionId ()Ljava/lang/String; +MD: net/minecraft/world/entity/EntityType/m_20676_ ()Lnet/minecraft/network/chat/Component; net/minecraft/world/entity/EntityType/getDescription ()Lnet/minecraft/network/chat/Component; +MD: net/minecraft/world/entity/EntityType/m_20677_ ()Lnet/minecraft/resources/ResourceLocation; net/minecraft/world/entity/EntityType/getDefaultLootTable ()Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/world/entity/EntityType/m_20678_ ()F net/minecraft/world/entity/EntityType/getWidth ()F +MD: net/minecraft/world/entity/EntityType/m_20679_ ()F net/minecraft/world/entity/EntityType/getHeight ()F +MD: net/minecraft/world/entity/EntityType/m_20680_ ()Lnet/minecraft/world/entity/EntityDimensions; net/minecraft/world/entity/EntityType/getDimensions ()Lnet/minecraft/world/entity/EntityDimensions; +MD: net/minecraft/world/entity/EntityType/m_20681_ ()I net/minecraft/world/entity/EntityType/clientTrackingRange ()I +MD: net/minecraft/world/entity/EntityType/m_20682_ ()I net/minecraft/world/entity/EntityType/updateInterval ()I +MD: net/minecraft/world/entity/EntityType/m_20683_ ()Z net/minecraft/world/entity/EntityType/trackDeltas ()Z +MD: net/minecraft/world/entity/EntityType/m_245183_ ()Lnet/minecraft/world/flag/FeatureFlagSet; net/minecraft/world/entity/EntityType/requiredFeatures ()Lnet/minecraft/world/flag/FeatureFlagSet; +MD: net/minecraft/world/entity/EntityType/m_262353_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/nbt/CompoundTag;Lnet/minecraft/world/entity/Entity;)V net/minecraft/world/entity/EntityType/lambda$appendCustomEntityStackConfig$3 (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/nbt/CompoundTag;Lnet/minecraft/world/entity/Entity;)V +MD: net/minecraft/world/entity/EntityType/m_262354_ (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/entity/Entity;)V net/minecraft/world/entity/EntityType/lambda$appendCustomNameConfig$2 (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/entity/Entity;)V +MD: net/minecraft/world/entity/EntityType/m_262355_ (Lnet/minecraft/world/entity/Entity;)V net/minecraft/world/entity/EntityType/lambda$createDefaultStackConfig$1 (Lnet/minecraft/world/entity/Entity;)V +MD: net/minecraft/world/entity/EntityType/m_262451_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/nbt/CompoundTag;Ljava/util/function/Consumer;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/MobSpawnType;ZZ)Lnet/minecraft/world/entity/Entity; net/minecraft/world/entity/EntityType/create (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/nbt/CompoundTag;Ljava/util/function/Consumer;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/MobSpawnType;ZZ)Lnet/minecraft/world/entity/Entity; +MD: net/minecraft/world/entity/EntityType/m_262455_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/nbt/CompoundTag;Ljava/util/function/Consumer;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/MobSpawnType;ZZ)Lnet/minecraft/world/entity/Entity; net/minecraft/world/entity/EntityType/spawn (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/nbt/CompoundTag;Ljava/util/function/Consumer;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/MobSpawnType;ZZ)Lnet/minecraft/world/entity/Entity; +MD: net/minecraft/world/entity/EntityType/m_262496_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/MobSpawnType;)Lnet/minecraft/world/entity/Entity; net/minecraft/world/entity/EntityType/spawn (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/MobSpawnType;)Lnet/minecraft/world/entity/Entity; +MD: net/minecraft/world/entity/EntityType/m_263555_ (Lnet/minecraft/world/entity/Entity;)V net/minecraft/world/entity/EntityType/lambda$spawn$0 (Lnet/minecraft/world/entity/Entity;)V +MD: net/minecraft/world/entity/EntityType/m_263556_ (Ljava/util/function/Consumer;Lnet/minecraft/world/item/ItemStack;)Ljava/util/function/Consumer; net/minecraft/world/entity/EntityType/appendCustomNameConfig (Ljava/util/function/Consumer;Lnet/minecraft/world/item/ItemStack;)Ljava/util/function/Consumer; +MD: net/minecraft/world/entity/EntityType/m_263559_ (Ljava/util/function/Consumer;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/entity/player/Player;)Ljava/util/function/Consumer; net/minecraft/world/entity/EntityType/appendCustomEntityStackConfig (Ljava/util/function/Consumer;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/entity/player/Player;)Ljava/util/function/Consumer; +MD: net/minecraft/world/entity/EntityType/m_263562_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/entity/player/Player;)Ljava/util/function/Consumer; net/minecraft/world/entity/EntityType/createDefaultStackConfig (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/entity/player/Player;)Ljava/util/function/Consumer; +MD: net/minecraft/world/entity/EntityType/m_264081_ (Ljava/util/function/Consumer;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/entity/player/Player;)Ljava/util/function/Consumer; net/minecraft/world/entity/EntityType/appendDefaultStackConfig (Ljava/util/function/Consumer;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/entity/player/Player;)Ljava/util/function/Consumer; +MD: net/minecraft/world/entity/EntityType/toString ()Ljava/lang/String; net/minecraft/world/entity/EntityType/toString ()Ljava/lang/String; +MD: net/minecraft/world/entity/EntityType$1/ (Ljava/util/Spliterator;Lnet/minecraft/world/level/Level;Ljava/util/List;)V net/minecraft/world/entity/EntityType$1/ (Ljava/util/Spliterator;Lnet/minecraft/world/level/Level;Ljava/util/List;)V +MD: net/minecraft/world/entity/EntityType$1/characteristics ()I net/minecraft/world/entity/EntityType$1/characteristics ()I +MD: net/minecraft/world/entity/EntityType$1/estimateSize ()J net/minecraft/world/entity/EntityType$1/estimateSize ()J +MD: net/minecraft/world/entity/EntityType$1/m_147056_ (Lnet/minecraft/world/level/Level;Ljava/util/function/Consumer;Lnet/minecraft/nbt/Tag;)V net/minecraft/world/entity/EntityType$1/lambda$tryAdvance$1 (Lnet/minecraft/world/level/Level;Ljava/util/function/Consumer;Lnet/minecraft/nbt/Tag;)V +MD: net/minecraft/world/entity/EntityType$1/m_147060_ (Ljava/util/function/Consumer;Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/world/entity/Entity; net/minecraft/world/entity/EntityType$1/lambda$tryAdvance$0 (Ljava/util/function/Consumer;Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/world/entity/Entity; +MD: net/minecraft/world/entity/EntityType$1/tryAdvance (Ljava/util/function/Consumer;)Z net/minecraft/world/entity/EntityType$1/tryAdvance (Ljava/util/function/Consumer;)Z +MD: net/minecraft/world/entity/EntityType$1/trySplit ()Ljava/util/Spliterator; net/minecraft/world/entity/EntityType$1/trySplit ()Ljava/util/Spliterator; +MD: net/minecraft/world/entity/EntityType$Builder/ (Lnet/minecraft/world/entity/EntityType$EntityFactory;Lnet/minecraft/world/entity/MobCategory;)V net/minecraft/world/entity/EntityType$Builder/ (Lnet/minecraft/world/entity/EntityType$EntityFactory;Lnet/minecraft/world/entity/MobCategory;)V +MD: net/minecraft/world/entity/EntityType$Builder/m_20698_ ()Lnet/minecraft/world/entity/EntityType$Builder; net/minecraft/world/entity/EntityType$Builder/noSummon ()Lnet/minecraft/world/entity/EntityType$Builder; +MD: net/minecraft/world/entity/EntityType$Builder/m_20699_ (FF)Lnet/minecraft/world/entity/EntityType$Builder; net/minecraft/world/entity/EntityType$Builder/sized (FF)Lnet/minecraft/world/entity/EntityType$Builder; +MD: net/minecraft/world/entity/EntityType$Builder/m_20702_ (I)Lnet/minecraft/world/entity/EntityType$Builder; net/minecraft/world/entity/EntityType$Builder/clientTrackingRange (I)Lnet/minecraft/world/entity/EntityType$Builder; +MD: net/minecraft/world/entity/EntityType$Builder/m_20704_ (Lnet/minecraft/world/entity/EntityType$EntityFactory;Lnet/minecraft/world/entity/MobCategory;)Lnet/minecraft/world/entity/EntityType$Builder; net/minecraft/world/entity/EntityType$Builder/of (Lnet/minecraft/world/entity/EntityType$EntityFactory;Lnet/minecraft/world/entity/MobCategory;)Lnet/minecraft/world/entity/EntityType$Builder; +MD: net/minecraft/world/entity/EntityType$Builder/m_20707_ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)Lnet/minecraft/world/entity/Entity; net/minecraft/world/entity/EntityType$Builder/lambda$createNothing$0 (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)Lnet/minecraft/world/entity/Entity; +MD: net/minecraft/world/entity/EntityType$Builder/m_20710_ (Lnet/minecraft/world/entity/MobCategory;)Lnet/minecraft/world/entity/EntityType$Builder; net/minecraft/world/entity/EntityType$Builder/createNothing (Lnet/minecraft/world/entity/MobCategory;)Lnet/minecraft/world/entity/EntityType$Builder; +MD: net/minecraft/world/entity/EntityType$Builder/m_20712_ (Ljava/lang/String;)Lnet/minecraft/world/entity/EntityType; net/minecraft/world/entity/EntityType$Builder/build (Ljava/lang/String;)Lnet/minecraft/world/entity/EntityType; +MD: net/minecraft/world/entity/EntityType$Builder/m_20714_ ([Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/entity/EntityType$Builder; net/minecraft/world/entity/EntityType$Builder/immuneTo ([Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/entity/EntityType$Builder; +MD: net/minecraft/world/entity/EntityType$Builder/m_20716_ ()Lnet/minecraft/world/entity/EntityType$Builder; net/minecraft/world/entity/EntityType$Builder/noSave ()Lnet/minecraft/world/entity/EntityType$Builder; +MD: net/minecraft/world/entity/EntityType$Builder/m_20717_ (I)Lnet/minecraft/world/entity/EntityType$Builder; net/minecraft/world/entity/EntityType$Builder/updateInterval (I)Lnet/minecraft/world/entity/EntityType$Builder; +MD: net/minecraft/world/entity/EntityType$Builder/m_20719_ ()Lnet/minecraft/world/entity/EntityType$Builder; net/minecraft/world/entity/EntityType$Builder/fireImmune ()Lnet/minecraft/world/entity/EntityType$Builder; +MD: net/minecraft/world/entity/EntityType$Builder/m_20720_ ()Lnet/minecraft/world/entity/EntityType$Builder; net/minecraft/world/entity/EntityType$Builder/canSpawnFarFromPlayer ()Lnet/minecraft/world/entity/EntityType$Builder; +MD: net/minecraft/world/entity/EntityType$Builder/m_246346_ ([Lnet/minecraft/world/flag/FeatureFlag;)Lnet/minecraft/world/entity/EntityType$Builder; net/minecraft/world/entity/EntityType$Builder/requiredFeatures ([Lnet/minecraft/world/flag/FeatureFlag;)Lnet/minecraft/world/entity/EntityType$Builder; +MD: net/minecraft/world/entity/EntityType$EntityFactory/m_20721_ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)Lnet/minecraft/world/entity/Entity; net/minecraft/world/entity/EntityType$EntityFactory/create (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)Lnet/minecraft/world/entity/Entity; +MD: net/minecraft/world/entity/EquipmentSlot/ ()V net/minecraft/world/entity/EquipmentSlot/ ()V +MD: net/minecraft/world/entity/EquipmentSlot/ (Ljava/lang/String;ILnet/minecraft/world/entity/EquipmentSlot$Type;IILjava/lang/String;)V net/minecraft/world/entity/EquipmentSlot/ (Ljava/lang/String;ILnet/minecraft/world/entity/EquipmentSlot$Type;IILjava/lang/String;)V +MD: net/minecraft/world/entity/EquipmentSlot/m_147068_ (I)I net/minecraft/world/entity/EquipmentSlot/getIndex (I)I +MD: net/minecraft/world/entity/EquipmentSlot/m_147070_ ()[Lnet/minecraft/world/entity/EquipmentSlot; net/minecraft/world/entity/EquipmentSlot/$values ()[Lnet/minecraft/world/entity/EquipmentSlot; +MD: net/minecraft/world/entity/EquipmentSlot/m_20743_ ()Lnet/minecraft/world/entity/EquipmentSlot$Type; net/minecraft/world/entity/EquipmentSlot/getType ()Lnet/minecraft/world/entity/EquipmentSlot$Type; +MD: net/minecraft/world/entity/EquipmentSlot/m_20744_ (Lnet/minecraft/world/entity/EquipmentSlot$Type;I)Lnet/minecraft/world/entity/EquipmentSlot; net/minecraft/world/entity/EquipmentSlot/byTypeAndIndex (Lnet/minecraft/world/entity/EquipmentSlot$Type;I)Lnet/minecraft/world/entity/EquipmentSlot; +MD: net/minecraft/world/entity/EquipmentSlot/m_20747_ (Ljava/lang/String;)Lnet/minecraft/world/entity/EquipmentSlot; net/minecraft/world/entity/EquipmentSlot/byName (Ljava/lang/String;)Lnet/minecraft/world/entity/EquipmentSlot; +MD: net/minecraft/world/entity/EquipmentSlot/m_20749_ ()I net/minecraft/world/entity/EquipmentSlot/getIndex ()I +MD: net/minecraft/world/entity/EquipmentSlot/m_20750_ ()I net/minecraft/world/entity/EquipmentSlot/getFilterFlag ()I +MD: net/minecraft/world/entity/EquipmentSlot/m_20751_ ()Ljava/lang/String; net/minecraft/world/entity/EquipmentSlot/getName ()Ljava/lang/String; +MD: net/minecraft/world/entity/EquipmentSlot/m_254934_ ()Z net/minecraft/world/entity/EquipmentSlot/isArmor ()Z +MD: net/minecraft/world/entity/EquipmentSlot/valueOf (Ljava/lang/String;)Lnet/minecraft/world/entity/EquipmentSlot; net/minecraft/world/entity/EquipmentSlot/valueOf (Ljava/lang/String;)Lnet/minecraft/world/entity/EquipmentSlot; +MD: net/minecraft/world/entity/EquipmentSlot/values ()[Lnet/minecraft/world/entity/EquipmentSlot; net/minecraft/world/entity/EquipmentSlot/values ()[Lnet/minecraft/world/entity/EquipmentSlot; +MD: net/minecraft/world/entity/EquipmentSlot$Type/ ()V net/minecraft/world/entity/EquipmentSlot$Type/ ()V +MD: net/minecraft/world/entity/EquipmentSlot$Type/ (Ljava/lang/String;I)V net/minecraft/world/entity/EquipmentSlot$Type/ (Ljava/lang/String;I)V +MD: net/minecraft/world/entity/EquipmentSlot$Type/m_147071_ ()[Lnet/minecraft/world/entity/EquipmentSlot$Type; net/minecraft/world/entity/EquipmentSlot$Type/$values ()[Lnet/minecraft/world/entity/EquipmentSlot$Type; +MD: net/minecraft/world/entity/EquipmentSlot$Type/valueOf (Ljava/lang/String;)Lnet/minecraft/world/entity/EquipmentSlot$Type; net/minecraft/world/entity/EquipmentSlot$Type/valueOf (Ljava/lang/String;)Lnet/minecraft/world/entity/EquipmentSlot$Type; +MD: net/minecraft/world/entity/EquipmentSlot$Type/values ()[Lnet/minecraft/world/entity/EquipmentSlot$Type; net/minecraft/world/entity/EquipmentSlot$Type/values ()[Lnet/minecraft/world/entity/EquipmentSlot$Type; +MD: net/minecraft/world/entity/ExperienceOrb/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V net/minecraft/world/entity/ExperienceOrb/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V +MD: net/minecraft/world/entity/ExperienceOrb/ (Lnet/minecraft/world/level/Level;DDDI)V net/minecraft/world/entity/ExperienceOrb/ (Lnet/minecraft/world/level/Level;DDDI)V +MD: net/minecraft/world/entity/ExperienceOrb/m_142319_ ()Lnet/minecraft/world/entity/Entity$MovementEmission; net/minecraft/world/entity/ExperienceOrb/getMovementEmission ()Lnet/minecraft/world/entity/Entity$MovementEmission; +MD: net/minecraft/world/entity/ExperienceOrb/m_147078_ (IILnet/minecraft/world/entity/ExperienceOrb;)Z net/minecraft/world/entity/ExperienceOrb/lambda$tryMergeToExisting$0 (IILnet/minecraft/world/entity/ExperienceOrb;)Z +MD: net/minecraft/world/entity/ExperienceOrb/m_147082_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/phys/Vec3;I)V net/minecraft/world/entity/ExperienceOrb/award (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/phys/Vec3;I)V +MD: net/minecraft/world/entity/ExperienceOrb/m_147086_ (Lnet/minecraft/world/entity/ExperienceOrb;)Z net/minecraft/world/entity/ExperienceOrb/canMerge (Lnet/minecraft/world/entity/ExperienceOrb;)Z +MD: net/minecraft/world/entity/ExperienceOrb/m_147088_ (Lnet/minecraft/world/entity/ExperienceOrb;II)Z net/minecraft/world/entity/ExperienceOrb/canMerge (Lnet/minecraft/world/entity/ExperienceOrb;II)Z +MD: net/minecraft/world/entity/ExperienceOrb/m_147092_ (Lnet/minecraft/world/entity/player/Player;I)I net/minecraft/world/entity/ExperienceOrb/repairPlayerItems (Lnet/minecraft/world/entity/player/Player;I)I +MD: net/minecraft/world/entity/ExperienceOrb/m_147096_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/phys/Vec3;I)Z net/minecraft/world/entity/ExperienceOrb/tryMergeToExisting (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/phys/Vec3;I)Z +MD: net/minecraft/world/entity/ExperienceOrb/m_147100_ (Lnet/minecraft/world/entity/ExperienceOrb;)V net/minecraft/world/entity/ExperienceOrb/merge (Lnet/minecraft/world/entity/ExperienceOrb;)V +MD: net/minecraft/world/entity/ExperienceOrb/m_147103_ ()V net/minecraft/world/entity/ExperienceOrb/scanForEntities ()V +MD: net/minecraft/world/entity/ExperienceOrb/m_20099_ ()Lnet/minecraft/core/BlockPos; net/minecraft/world/entity/ExperienceOrb/getBlockPosBelowThatAffectsMyMovement ()Lnet/minecraft/core/BlockPos; +MD: net/minecraft/world/entity/ExperienceOrb/m_20782_ (I)I net/minecraft/world/entity/ExperienceOrb/getExperienceValue (I)I +MD: net/minecraft/world/entity/ExperienceOrb/m_20793_ (I)I net/minecraft/world/entity/ExperienceOrb/durabilityToXp (I)I +MD: net/minecraft/world/entity/ExperienceOrb/m_20798_ (I)I net/minecraft/world/entity/ExperienceOrb/xpToDurability (I)I +MD: net/minecraft/world/entity/ExperienceOrb/m_20801_ ()I net/minecraft/world/entity/ExperienceOrb/getValue ()I +MD: net/minecraft/world/entity/ExperienceOrb/m_20802_ ()I net/minecraft/world/entity/ExperienceOrb/getIcon ()I +MD: net/minecraft/world/entity/ExperienceOrb/m_20803_ ()V net/minecraft/world/entity/ExperienceOrb/setUnderwaterMovement ()V +MD: net/minecraft/world/entity/ExperienceOrb/m_5654_ ()Lnet/minecraft/network/protocol/Packet; net/minecraft/world/entity/ExperienceOrb/getAddEntityPacket ()Lnet/minecraft/network/protocol/Packet; +MD: net/minecraft/world/entity/ExperienceOrb/m_5720_ ()Lnet/minecraft/sounds/SoundSource; net/minecraft/world/entity/ExperienceOrb/getSoundSource ()Lnet/minecraft/sounds/SoundSource; +MD: net/minecraft/world/entity/ExperienceOrb/m_5841_ ()V net/minecraft/world/entity/ExperienceOrb/doWaterSplashEffect ()V +MD: net/minecraft/world/entity/ExperienceOrb/m_6097_ ()Z net/minecraft/world/entity/ExperienceOrb/isAttackable ()Z +MD: net/minecraft/world/entity/ExperienceOrb/m_6123_ (Lnet/minecraft/world/entity/player/Player;)V net/minecraft/world/entity/ExperienceOrb/playerTouch (Lnet/minecraft/world/entity/player/Player;)V +MD: net/minecraft/world/entity/ExperienceOrb/m_6469_ (Lnet/minecraft/world/damagesource/DamageSource;F)Z net/minecraft/world/entity/ExperienceOrb/hurt (Lnet/minecraft/world/damagesource/DamageSource;F)Z +MD: net/minecraft/world/entity/ExperienceOrb/m_7378_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/entity/ExperienceOrb/readAdditionalSaveData (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/entity/ExperienceOrb/m_7380_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/entity/ExperienceOrb/addAdditionalSaveData (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/entity/ExperienceOrb/m_8097_ ()V net/minecraft/world/entity/ExperienceOrb/defineSynchedData ()V +MD: net/minecraft/world/entity/ExperienceOrb/m_8119_ ()V net/minecraft/world/entity/ExperienceOrb/tick ()V +MD: net/minecraft/world/entity/FlyingMob/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V net/minecraft/world/entity/FlyingMob/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V +MD: net/minecraft/world/entity/FlyingMob/m_6147_ ()Z net/minecraft/world/entity/FlyingMob/onClimbable ()Z +MD: net/minecraft/world/entity/FlyingMob/m_7023_ (Lnet/minecraft/world/phys/Vec3;)V net/minecraft/world/entity/FlyingMob/travel (Lnet/minecraft/world/phys/Vec3;)V +MD: net/minecraft/world/entity/FlyingMob/m_7840_ (DZLnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/BlockPos;)V net/minecraft/world/entity/FlyingMob/checkFallDamage (DZLnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/world/entity/GlowSquid/ ()V net/minecraft/world/entity/GlowSquid/ ()V +MD: net/minecraft/world/entity/GlowSquid/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V net/minecraft/world/entity/GlowSquid/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V +MD: net/minecraft/world/entity/GlowSquid/m_142033_ ()Lnet/minecraft/core/particles/ParticleOptions; net/minecraft/world/entity/GlowSquid/getInkParticle ()Lnet/minecraft/core/particles/ParticleOptions; +MD: net/minecraft/world/entity/GlowSquid/m_142555_ ()Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/GlowSquid/getSquirtSound ()Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/GlowSquid/m_147119_ (I)V net/minecraft/world/entity/GlowSquid/setDarkTicks (I)V +MD: net/minecraft/world/entity/GlowSquid/m_147128_ ()I net/minecraft/world/entity/GlowSquid/getDarkTicksRemaining ()I +MD: net/minecraft/world/entity/GlowSquid/m_217017_ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/ServerLevelAccessor;Lnet/minecraft/world/entity/MobSpawnType;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)Z net/minecraft/world/entity/GlowSquid/checkGlowSquideSpawnRules (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/ServerLevelAccessor;Lnet/minecraft/world/entity/MobSpawnType;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)Z +MD: net/minecraft/world/entity/GlowSquid/m_5592_ ()Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/GlowSquid/getDeathSound ()Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/GlowSquid/m_6469_ (Lnet/minecraft/world/damagesource/DamageSource;F)Z net/minecraft/world/entity/GlowSquid/hurt (Lnet/minecraft/world/damagesource/DamageSource;F)Z +MD: net/minecraft/world/entity/GlowSquid/m_7378_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/entity/GlowSquid/readAdditionalSaveData (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/entity/GlowSquid/m_7380_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/entity/GlowSquid/addAdditionalSaveData (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/entity/GlowSquid/m_7515_ ()Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/GlowSquid/getAmbientSound ()Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/GlowSquid/m_7975_ (Lnet/minecraft/world/damagesource/DamageSource;)Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/GlowSquid/getHurtSound (Lnet/minecraft/world/damagesource/DamageSource;)Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/GlowSquid/m_8097_ ()V net/minecraft/world/entity/GlowSquid/defineSynchedData ()V +MD: net/minecraft/world/entity/GlowSquid/m_8107_ ()V net/minecraft/world/entity/GlowSquid/aiStep ()V +MD: net/minecraft/world/entity/HasCustomInventoryScreen/m_213583_ (Lnet/minecraft/world/entity/player/Player;)V net/minecraft/world/entity/HasCustomInventoryScreen/openCustomInventoryScreen (Lnet/minecraft/world/entity/player/Player;)V +MD: net/minecraft/world/entity/HumanoidArm/ ()V net/minecraft/world/entity/HumanoidArm/ ()V +MD: net/minecraft/world/entity/HumanoidArm/ (Ljava/lang/String;IILjava/lang/String;)V net/minecraft/world/entity/HumanoidArm/ (Ljava/lang/String;IILjava/lang/String;)V +MD: net/minecraft/world/entity/HumanoidArm/m_147131_ ()[Lnet/minecraft/world/entity/HumanoidArm; net/minecraft/world/entity/HumanoidArm/$values ()[Lnet/minecraft/world/entity/HumanoidArm; +MD: net/minecraft/world/entity/HumanoidArm/m_20828_ ()Lnet/minecraft/world/entity/HumanoidArm; net/minecraft/world/entity/HumanoidArm/getOpposite ()Lnet/minecraft/world/entity/HumanoidArm; +MD: net/minecraft/world/entity/HumanoidArm/m_35965_ ()I net/minecraft/world/entity/HumanoidArm/getId ()I +MD: net/minecraft/world/entity/HumanoidArm/m_35968_ ()Ljava/lang/String; net/minecraft/world/entity/HumanoidArm/getKey ()Ljava/lang/String; +MD: net/minecraft/world/entity/HumanoidArm/valueOf (Ljava/lang/String;)Lnet/minecraft/world/entity/HumanoidArm; net/minecraft/world/entity/HumanoidArm/valueOf (Ljava/lang/String;)Lnet/minecraft/world/entity/HumanoidArm; +MD: net/minecraft/world/entity/HumanoidArm/values ()[Lnet/minecraft/world/entity/HumanoidArm; net/minecraft/world/entity/HumanoidArm/values ()[Lnet/minecraft/world/entity/HumanoidArm; +MD: net/minecraft/world/entity/Interaction/ ()V net/minecraft/world/entity/Interaction/ ()V +MD: net/minecraft/world/entity/Interaction/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V net/minecraft/world/entity/Interaction/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V +MD: net/minecraft/world/entity/Interaction/m_142242_ ()Lnet/minecraft/world/phys/AABB; net/minecraft/world/entity/Interaction/makeBoundingBox ()Lnet/minecraft/world/phys/AABB; +MD: net/minecraft/world/entity/Interaction/m_271686_ ()Lnet/minecraft/world/entity/LivingEntity; net/minecraft/world/entity/Interaction/getLastAttacker ()Lnet/minecraft/world/entity/LivingEntity; +MD: net/minecraft/world/entity/Interaction/m_271717_ (Z)V net/minecraft/world/entity/Interaction/setResponse (Z)V +MD: net/minecraft/world/entity/Interaction/m_271718_ (Lnet/minecraft/nbt/CompoundTag;Lnet/minecraft/nbt/Tag;)V net/minecraft/world/entity/Interaction/lambda$addAdditionalSaveData$3 (Lnet/minecraft/nbt/CompoundTag;Lnet/minecraft/nbt/Tag;)V +MD: net/minecraft/world/entity/Interaction/m_271752_ (Lcom/mojang/datafixers/util/Pair;)V net/minecraft/world/entity/Interaction/lambda$readAdditionalSaveData$1 (Lcom/mojang/datafixers/util/Pair;)V +MD: net/minecraft/world/entity/Interaction/m_271772_ ()Lnet/minecraft/world/entity/EntityDimensions; net/minecraft/world/entity/Interaction/getDimensions ()Lnet/minecraft/world/entity/EntityDimensions; +MD: net/minecraft/world/entity/Interaction/m_271774_ (F)V net/minecraft/world/entity/Interaction/setHeight (F)V +MD: net/minecraft/world/entity/Interaction/m_271807_ ()Z net/minecraft/world/entity/Interaction/canBeHitByProjectile ()Z +MD: net/minecraft/world/entity/Interaction/m_271819_ ()Z net/minecraft/world/entity/Interaction/getResponse ()Z +MD: net/minecraft/world/entity/Interaction/m_271854_ (Lcom/mojang/datafixers/util/Pair;)V net/minecraft/world/entity/Interaction/lambda$readAdditionalSaveData$0 (Lcom/mojang/datafixers/util/Pair;)V +MD: net/minecraft/world/entity/Interaction/m_271858_ ()F net/minecraft/world/entity/Interaction/getHeight ()F +MD: net/minecraft/world/entity/Interaction/m_271873_ (Lnet/minecraft/nbt/CompoundTag;Lnet/minecraft/nbt/Tag;)V net/minecraft/world/entity/Interaction/lambda$addAdditionalSaveData$2 (Lnet/minecraft/nbt/CompoundTag;Lnet/minecraft/nbt/Tag;)V +MD: net/minecraft/world/entity/Interaction/m_272023_ ()F net/minecraft/world/entity/Interaction/getWidth ()F +MD: net/minecraft/world/entity/Interaction/m_272058_ (F)V net/minecraft/world/entity/Interaction/setWidth (F)V +MD: net/minecraft/world/entity/Interaction/m_5448_ ()Lnet/minecraft/world/entity/LivingEntity; net/minecraft/world/entity/Interaction/getTarget ()Lnet/minecraft/world/entity/LivingEntity; +MD: net/minecraft/world/entity/Interaction/m_6087_ ()Z net/minecraft/world/entity/Interaction/isPickable ()Z +MD: net/minecraft/world/entity/Interaction/m_6090_ ()Z net/minecraft/world/entity/Interaction/isIgnoringBlockTriggers ()Z +MD: net/minecraft/world/entity/Interaction/m_6096_ (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;)Lnet/minecraft/world/InteractionResult; net/minecraft/world/entity/Interaction/interact (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;)Lnet/minecraft/world/InteractionResult; +MD: net/minecraft/world/entity/Interaction/m_6972_ (Lnet/minecraft/world/entity/Pose;)Lnet/minecraft/world/entity/EntityDimensions; net/minecraft/world/entity/Interaction/getDimensions (Lnet/minecraft/world/entity/Pose;)Lnet/minecraft/world/entity/EntityDimensions; +MD: net/minecraft/world/entity/Interaction/m_7313_ (Lnet/minecraft/world/entity/Entity;)Z net/minecraft/world/entity/Interaction/skipAttackInteraction (Lnet/minecraft/world/entity/Entity;)Z +MD: net/minecraft/world/entity/Interaction/m_7350_ (Lnet/minecraft/network/syncher/EntityDataAccessor;)V net/minecraft/world/entity/Interaction/onSyncedDataUpdated (Lnet/minecraft/network/syncher/EntityDataAccessor;)V +MD: net/minecraft/world/entity/Interaction/m_7378_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/entity/Interaction/readAdditionalSaveData (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/entity/Interaction/m_7380_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/entity/Interaction/addAdditionalSaveData (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/entity/Interaction/m_7752_ ()Lnet/minecraft/world/level/material/PushReaction; net/minecraft/world/entity/Interaction/getPistonPushReaction ()Lnet/minecraft/world/level/material/PushReaction; +MD: net/minecraft/world/entity/Interaction/m_8097_ ()V net/minecraft/world/entity/Interaction/defineSynchedData ()V +MD: net/minecraft/world/entity/Interaction/m_8119_ ()V net/minecraft/world/entity/Interaction/tick ()V +MD: net/minecraft/world/entity/Interaction$PlayerAction/ ()V net/minecraft/world/entity/Interaction$PlayerAction/ ()V +MD: net/minecraft/world/entity/Interaction$PlayerAction/ (Ljava/util/UUID;J)V net/minecraft/world/entity/Interaction$PlayerAction/ (Ljava/util/UUID;J)V +MD: net/minecraft/world/entity/Interaction$PlayerAction/equals (Ljava/lang/Object;)Z net/minecraft/world/entity/Interaction$PlayerAction/equals (Ljava/lang/Object;)Z +MD: net/minecraft/world/entity/Interaction$PlayerAction/f_271379_ ()Ljava/util/UUID; net/minecraft/world/entity/Interaction$PlayerAction/player ()Ljava/util/UUID; +MD: net/minecraft/world/entity/Interaction$PlayerAction/f_271492_ ()J net/minecraft/world/entity/Interaction$PlayerAction/timestamp ()J +MD: net/minecraft/world/entity/Interaction$PlayerAction/hashCode ()I net/minecraft/world/entity/Interaction$PlayerAction/hashCode ()I +MD: net/minecraft/world/entity/Interaction$PlayerAction/m_272090_ (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/world/entity/Interaction$PlayerAction/lambda$static$0 (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/world/entity/Interaction$PlayerAction/toString ()Ljava/lang/String; net/minecraft/world/entity/Interaction$PlayerAction/toString ()Ljava/lang/String; +MD: net/minecraft/world/entity/ItemBasedSteering/ (Lnet/minecraft/network/syncher/SynchedEntityData;Lnet/minecraft/network/syncher/EntityDataAccessor;Lnet/minecraft/network/syncher/EntityDataAccessor;)V net/minecraft/world/entity/ItemBasedSteering/ (Lnet/minecraft/network/syncher/SynchedEntityData;Lnet/minecraft/network/syncher/EntityDataAccessor;Lnet/minecraft/network/syncher/EntityDataAccessor;)V +MD: net/minecraft/world/entity/ItemBasedSteering/m_20844_ ()V net/minecraft/world/entity/ItemBasedSteering/onSynced ()V +MD: net/minecraft/world/entity/ItemBasedSteering/m_20847_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/entity/ItemBasedSteering/addAdditionalSaveData (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/entity/ItemBasedSteering/m_20849_ (Z)V net/minecraft/world/entity/ItemBasedSteering/setSaddle (Z)V +MD: net/minecraft/world/entity/ItemBasedSteering/m_20851_ ()Z net/minecraft/world/entity/ItemBasedSteering/hasSaddle ()Z +MD: net/minecraft/world/entity/ItemBasedSteering/m_20852_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/entity/ItemBasedSteering/readAdditionalSaveData (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/entity/ItemBasedSteering/m_217032_ (Lnet/minecraft/util/RandomSource;)Z net/minecraft/world/entity/ItemBasedSteering/boost (Lnet/minecraft/util/RandomSource;)Z +MD: net/minecraft/world/entity/ItemBasedSteering/m_274397_ ()I net/minecraft/world/entity/ItemBasedSteering/boostTimeTotal ()I +MD: net/minecraft/world/entity/ItemBasedSteering/m_274439_ ()F net/minecraft/world/entity/ItemBasedSteering/boostFactor ()F +MD: net/minecraft/world/entity/ItemBasedSteering/m_274606_ ()V net/minecraft/world/entity/ItemBasedSteering/tickBoost ()V +MD: net/minecraft/world/entity/ItemSteerable/m_6746_ ()Z net/minecraft/world/entity/ItemSteerable/boost ()Z +MD: net/minecraft/world/entity/LerpingModel/m_142115_ ()Ljava/util/Map; net/minecraft/world/entity/LerpingModel/getModelRotationValues ()Ljava/util/Map; +MD: net/minecraft/world/entity/LightningBolt/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V net/minecraft/world/entity/LightningBolt/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V +MD: net/minecraft/world/entity/LightningBolt/m_147139_ (Lnet/minecraft/world/entity/Entity;)Z net/minecraft/world/entity/LightningBolt/lambda$tick$0 (Lnet/minecraft/world/entity/Entity;)Z +MD: net/minecraft/world/entity/LightningBolt/m_147141_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V net/minecraft/world/entity/LightningBolt/lambda$randomStepCleaningCopper$2 (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V +MD: net/minecraft/world/entity/LightningBolt/m_147145_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos$MutableBlockPos;I)V net/minecraft/world/entity/LightningBolt/randomWalkCleaningCopper (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos$MutableBlockPos;I)V +MD: net/minecraft/world/entity/LightningBolt/m_147150_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;)V net/minecraft/world/entity/LightningBolt/clearCopperOnLightningStrike (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/world/entity/LightningBolt/m_147153_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;)Ljava/util/Optional; net/minecraft/world/entity/LightningBolt/randomStepCleaningCopper (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;)Ljava/util/Optional; +MD: net/minecraft/world/entity/LightningBolt/m_147156_ (Lnet/minecraft/server/level/ServerPlayer;)Z net/minecraft/world/entity/LightningBolt/lambda$tick$1 (Lnet/minecraft/server/level/ServerPlayer;)Z +MD: net/minecraft/world/entity/LightningBolt/m_147158_ ()Lnet/minecraft/server/level/ServerPlayer; net/minecraft/world/entity/LightningBolt/getCause ()Lnet/minecraft/server/level/ServerPlayer; +MD: net/minecraft/world/entity/LightningBolt/m_147159_ ()I net/minecraft/world/entity/LightningBolt/getBlocksSetOnFire ()I +MD: net/minecraft/world/entity/LightningBolt/m_147160_ ()Ljava/util/stream/Stream; net/minecraft/world/entity/LightningBolt/getHitEntities ()Ljava/util/stream/Stream; +MD: net/minecraft/world/entity/LightningBolt/m_147161_ ()V net/minecraft/world/entity/LightningBolt/powerLightningRod ()V +MD: net/minecraft/world/entity/LightningBolt/m_147162_ ()Lnet/minecraft/core/BlockPos; net/minecraft/world/entity/LightningBolt/getStrikePosition ()Lnet/minecraft/core/BlockPos; +MD: net/minecraft/world/entity/LightningBolt/m_20870_ (I)V net/minecraft/world/entity/LightningBolt/spawnFire (I)V +MD: net/minecraft/world/entity/LightningBolt/m_20874_ (Z)V net/minecraft/world/entity/LightningBolt/setVisualOnly (Z)V +MD: net/minecraft/world/entity/LightningBolt/m_20879_ (Lnet/minecraft/server/level/ServerPlayer;)V net/minecraft/world/entity/LightningBolt/setCause (Lnet/minecraft/server/level/ServerPlayer;)V +MD: net/minecraft/world/entity/LightningBolt/m_5720_ ()Lnet/minecraft/sounds/SoundSource; net/minecraft/world/entity/LightningBolt/getSoundSource ()Lnet/minecraft/sounds/SoundSource; +MD: net/minecraft/world/entity/LightningBolt/m_6783_ (D)Z net/minecraft/world/entity/LightningBolt/shouldRenderAtSqrDistance (D)Z +MD: net/minecraft/world/entity/LightningBolt/m_7378_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/entity/LightningBolt/readAdditionalSaveData (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/entity/LightningBolt/m_7380_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/entity/LightningBolt/addAdditionalSaveData (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/entity/LightningBolt/m_8097_ ()V net/minecraft/world/entity/LightningBolt/defineSynchedData ()V +MD: net/minecraft/world/entity/LightningBolt/m_8119_ ()V net/minecraft/world/entity/LightningBolt/tick ()V +MD: net/minecraft/world/entity/LivingEntity/ ()V net/minecraft/world/entity/LivingEntity/ ()V +MD: net/minecraft/world/entity/LivingEntity/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V net/minecraft/world/entity/LivingEntity/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V +MD: net/minecraft/world/entity/LivingEntity/m_141942_ (I)Lnet/minecraft/world/entity/SlotAccess; net/minecraft/world/entity/LivingEntity/getSlot (I)Lnet/minecraft/world/entity/SlotAccess; +MD: net/minecraft/world/entity/LivingEntity/m_141965_ (Lnet/minecraft/network/protocol/game/ClientboundAddEntityPacket;)V net/minecraft/world/entity/LivingEntity/recreateFromPacket (Lnet/minecraft/network/protocol/game/ClientboundAddEntityPacket;)V +MD: net/minecraft/world/entity/LivingEntity/m_141973_ (Lnet/minecraft/world/effect/MobEffectInstance;ZLnet/minecraft/world/entity/Entity;)V net/minecraft/world/entity/LivingEntity/onEffectUpdated (Lnet/minecraft/world/effect/MobEffectInstance;ZLnet/minecraft/world/entity/Entity;)V +MD: net/minecraft/world/entity/LivingEntity/m_142038_ ()Z net/minecraft/world/entity/LivingEntity/isCurrentlyGlowing ()Z +MD: net/minecraft/world/entity/LivingEntity/m_142065_ ()Z net/minecraft/world/entity/LivingEntity/canBeSeenByAnyone ()Z +MD: net/minecraft/world/entity/LivingEntity/m_142066_ ()Z net/minecraft/world/entity/LivingEntity/canBeSeenAsEnemy ()Z +MD: net/minecraft/world/entity/LivingEntity/m_142079_ ()Z net/minecraft/world/entity/LivingEntity/canFreeze ()Z +MD: net/minecraft/world/entity/LivingEntity/m_142106_ (Lnet/minecraft/world/item/ItemStack;)V net/minecraft/world/entity/LivingEntity/updateUsingItem (Lnet/minecraft/world/item/ItemStack;)V +MD: net/minecraft/world/entity/LivingEntity/m_142535_ (FFLnet/minecraft/world/damagesource/DamageSource;)Z net/minecraft/world/entity/LivingEntity/causeFallDamage (FFLnet/minecraft/world/damagesource/DamageSource;)Z +MD: net/minecraft/world/entity/LivingEntity/m_142540_ (Lnet/minecraft/world/effect/MobEffectInstance;Lnet/minecraft/world/entity/Entity;)V net/minecraft/world/entity/LivingEntity/onEffectAdded (Lnet/minecraft/world/effect/MobEffectInstance;Lnet/minecraft/world/entity/Entity;)V +MD: net/minecraft/world/entity/LivingEntity/m_142582_ (Lnet/minecraft/world/entity/Entity;)Z net/minecraft/world/entity/LivingEntity/hasLineOfSight (Lnet/minecraft/world/entity/Entity;)Z +MD: net/minecraft/world/entity/LivingEntity/m_142642_ (Lnet/minecraft/world/damagesource/DamageSource;F)V net/minecraft/world/entity/LivingEntity/hurtHelmet (Lnet/minecraft/world/damagesource/DamageSource;F)V +MD: net/minecraft/world/entity/LivingEntity/m_142687_ (Lnet/minecraft/world/entity/Entity$RemovalReason;)V net/minecraft/world/entity/LivingEntity/remove (Lnet/minecraft/world/entity/Entity$RemovalReason;)V +MD: net/minecraft/world/entity/LivingEntity/m_147195_ (Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/entity/EquipmentSlot;)Lnet/minecraft/world/entity/SlotAccess; net/minecraft/world/entity/LivingEntity/createEquipmentSlotAccess (Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/entity/EquipmentSlot;)Lnet/minecraft/world/entity/SlotAccess; +MD: net/minecraft/world/entity/LivingEntity/m_147198_ (Lnet/minecraft/world/item/Item;Lnet/minecraft/world/item/ItemStack;)Z net/minecraft/world/entity/LivingEntity/lambda$isHolding$4 (Lnet/minecraft/world/item/Item;Lnet/minecraft/world/item/ItemStack;)Z +MD: net/minecraft/world/entity/LivingEntity/m_147202_ (Ljava/util/List;Lnet/minecraft/world/entity/EquipmentSlot;Lnet/minecraft/world/item/ItemStack;)V net/minecraft/world/entity/LivingEntity/lambda$handleEquipmentChanges$5 (Ljava/util/List;Lnet/minecraft/world/entity/EquipmentSlot;Lnet/minecraft/world/item/ItemStack;)V +MD: net/minecraft/world/entity/LivingEntity/m_147207_ (Lnet/minecraft/world/effect/MobEffectInstance;Lnet/minecraft/world/entity/Entity;)Z net/minecraft/world/entity/LivingEntity/addEffect (Lnet/minecraft/world/effect/MobEffectInstance;Lnet/minecraft/world/entity/Entity;)Z +MD: net/minecraft/world/entity/LivingEntity/m_147211_ (I)Lnet/minecraft/world/entity/EquipmentSlot; net/minecraft/world/entity/LivingEntity/getEquipmentSlot (I)Lnet/minecraft/world/entity/EquipmentSlot; +MD: net/minecraft/world/entity/LivingEntity/m_147215_ (Lnet/minecraft/world/effect/MobEffectInstance;Lnet/minecraft/world/entity/Entity;)V net/minecraft/world/entity/LivingEntity/forceAddEffect (Lnet/minecraft/world/effect/MobEffectInstance;Lnet/minecraft/world/entity/Entity;)V +MD: net/minecraft/world/entity/LivingEntity/m_147223_ ()Z net/minecraft/world/entity/LivingEntity/shouldDiscardFriction ()Z +MD: net/minecraft/world/entity/LivingEntity/m_147225_ ()V net/minecraft/world/entity/LivingEntity/removeFrost ()V +MD: net/minecraft/world/entity/LivingEntity/m_147226_ ()V net/minecraft/world/entity/LivingEntity/tryAddFrost ()V +MD: net/minecraft/world/entity/LivingEntity/m_147229_ (Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/phys/Vec3; net/minecraft/world/entity/LivingEntity/lambda$stopSleeping$8 (Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/phys/Vec3; +MD: net/minecraft/world/entity/LivingEntity/m_147231_ (Lnet/minecraft/world/entity/LivingEntity;)V net/minecraft/world/entity/LivingEntity/lambda$updateFallFlying$6 (Lnet/minecraft/world/entity/LivingEntity;)V +MD: net/minecraft/world/entity/LivingEntity/m_147233_ (Lnet/minecraft/world/item/ItemStack;)Lnet/minecraft/world/entity/EquipmentSlot; net/minecraft/world/entity/LivingEntity/getEquipmentSlotForItem (Lnet/minecraft/world/item/ItemStack;)Lnet/minecraft/world/entity/EquipmentSlot; +MD: net/minecraft/world/entity/LivingEntity/m_147239_ ()V net/minecraft/world/entity/LivingEntity/updateGlowingStatus ()V +MD: net/minecraft/world/entity/LivingEntity/m_147240_ (DDD)V net/minecraft/world/entity/LivingEntity/knockback (DDD)V +MD: net/minecraft/world/entity/LivingEntity/m_147244_ (Z)V net/minecraft/world/entity/LivingEntity/setDiscardFriction (Z)V +MD: net/minecraft/world/entity/LivingEntity/m_147246_ ()V net/minecraft/world/entity/LivingEntity/makePoofParticles ()V +MD: net/minecraft/world/entity/LivingEntity/m_181122_ (Lnet/minecraft/world/item/ItemStack;)V net/minecraft/world/entity/LivingEntity/verifyEquippedItem (Lnet/minecraft/world/item/ItemStack;)V +MD: net/minecraft/world/entity/LivingEntity/m_196493_ ()Lnet/minecraft/world/entity/LivingEntity$Fallsounds; net/minecraft/world/entity/LivingEntity/getFallSounds ()Lnet/minecraft/world/entity/LivingEntity$Fallsounds; +MD: net/minecraft/world/entity/LivingEntity/m_203347_ (Lnet/minecraft/tags/TagKey;)V net/minecraft/world/entity/LivingEntity/jumpInLiquid (Lnet/minecraft/tags/TagKey;)V +MD: net/minecraft/world/entity/LivingEntity/m_203441_ (Lnet/minecraft/world/level/material/FluidState;)Z net/minecraft/world/entity/LivingEntity/canStandOnFluid (Lnet/minecraft/world/level/material/FluidState;)Z +MD: net/minecraft/world/entity/LivingEntity/m_20968_ (Lnet/minecraft/world/entity/Entity;)D net/minecraft/world/entity/LivingEntity/getVisibilityPercent (Lnet/minecraft/world/entity/Entity;)D +MD: net/minecraft/world/entity/LivingEntity/m_20984_ (DDDZ)Z net/minecraft/world/entity/LivingEntity/randomTeleport (DDDZ)Z +MD: net/minecraft/world/entity/LivingEntity/m_20994_ (DZLnet/minecraft/world/phys/Vec3;)Lnet/minecraft/world/phys/Vec3; net/minecraft/world/entity/LivingEntity/getFluidFallingAdjustedMovement (DZLnet/minecraft/world/phys/Vec3;)Lnet/minecraft/world/phys/Vec3; +MD: net/minecraft/world/entity/LivingEntity/m_20998_ (F)F net/minecraft/world/entity/LivingEntity/getSwimAmount (F)F +MD: net/minecraft/world/entity/LivingEntity/m_21008_ (Lnet/minecraft/world/InteractionHand;Lnet/minecraft/world/item/ItemStack;)V net/minecraft/world/entity/LivingEntity/setItemInHand (Lnet/minecraft/world/InteractionHand;Lnet/minecraft/world/item/ItemStack;)V +MD: net/minecraft/world/entity/LivingEntity/m_21011_ (Lnet/minecraft/world/InteractionHand;Z)V net/minecraft/world/entity/LivingEntity/swing (Lnet/minecraft/world/InteractionHand;Z)V +MD: net/minecraft/world/entity/LivingEntity/m_21023_ (Lnet/minecraft/world/effect/MobEffect;)Z net/minecraft/world/entity/LivingEntity/hasEffect (Lnet/minecraft/world/effect/MobEffect;)Z +MD: net/minecraft/world/entity/LivingEntity/m_21028_ (Lnet/minecraft/world/entity/Entity;)V net/minecraft/world/entity/LivingEntity/dismountVehicle (Lnet/minecraft/world/entity/Entity;)V +MD: net/minecraft/world/entity/LivingEntity/m_21033_ (Lnet/minecraft/world/entity/EquipmentSlot;)Z net/minecraft/world/entity/LivingEntity/hasItemInSlot (Lnet/minecraft/world/entity/EquipmentSlot;)Z +MD: net/minecraft/world/entity/LivingEntity/m_21040_ (Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/entity/ai/targeting/TargetingConditions;)Z net/minecraft/world/entity/LivingEntity/canAttack (Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/entity/ai/targeting/TargetingConditions;)Z +MD: net/minecraft/world/entity/LivingEntity/m_21051_ (Lnet/minecraft/world/entity/ai/attributes/Attribute;)Lnet/minecraft/world/entity/ai/attributes/AttributeInstance; net/minecraft/world/entity/LivingEntity/getAttribute (Lnet/minecraft/world/entity/ai/attributes/Attribute;)Lnet/minecraft/world/entity/ai/attributes/AttributeInstance; +MD: net/minecraft/world/entity/LivingEntity/m_21053_ (Lnet/minecraft/world/entity/item/ItemEntity;)V net/minecraft/world/entity/LivingEntity/onItemPickup (Lnet/minecraft/world/entity/item/ItemEntity;)V +MD: net/minecraft/world/entity/LivingEntity/m_21055_ (Lnet/minecraft/world/item/Item;)Z net/minecraft/world/entity/LivingEntity/isHolding (Lnet/minecraft/world/item/Item;)Z +MD: net/minecraft/world/entity/LivingEntity/m_21060_ (Lnet/minecraft/world/item/ItemStack;I)V net/minecraft/world/entity/LivingEntity/spawnItemParticles (Lnet/minecraft/world/item/ItemStack;I)V +MD: net/minecraft/world/entity/LivingEntity/m_21063_ (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/level/Level;Lnet/minecraft/world/entity/LivingEntity;)V net/minecraft/world/entity/LivingEntity/addEatEffect (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/level/Level;Lnet/minecraft/world/entity/LivingEntity;)V +MD: net/minecraft/world/entity/LivingEntity/m_21071_ (Lnet/minecraft/world/phys/AABB;Lnet/minecraft/world/phys/AABB;)V net/minecraft/world/entity/LivingEntity/checkAutoSpinAttack (Lnet/minecraft/world/phys/AABB;Lnet/minecraft/world/phys/AABB;)V +MD: net/minecraft/world/entity/LivingEntity/m_21074_ (Lnet/minecraft/world/phys/Vec3;F)Lnet/minecraft/world/phys/Vec3; net/minecraft/world/entity/LivingEntity/handleRelativeFrictionAndCalculateMovement (Lnet/minecraft/world/phys/Vec3;F)Lnet/minecraft/world/phys/Vec3; +MD: net/minecraft/world/entity/LivingEntity/m_21080_ (Lnet/minecraft/core/BlockPos;)V net/minecraft/world/entity/LivingEntity/setPosToBed (Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/world/entity/LivingEntity/m_21091_ (Ljava/util/Map;)V net/minecraft/world/entity/LivingEntity/handleHandSwap (Ljava/util/Map;)V +MD: net/minecraft/world/entity/LivingEntity/m_21093_ (Ljava/util/function/Predicate;)Z net/minecraft/world/entity/LivingEntity/isHolding (Ljava/util/function/Predicate;)Z +MD: net/minecraft/world/entity/LivingEntity/m_21097_ (Lnet/minecraft/nbt/CompoundTag;Lnet/minecraft/core/BlockPos;)V net/minecraft/world/entity/LivingEntity/lambda$addAdditionalSaveData$1 (Lnet/minecraft/nbt/CompoundTag;Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/world/entity/LivingEntity/m_21100_ (Lnet/minecraft/nbt/CompoundTag;Lnet/minecraft/nbt/Tag;)V net/minecraft/world/entity/LivingEntity/lambda$addAdditionalSaveData$2 (Lnet/minecraft/nbt/CompoundTag;Lnet/minecraft/nbt/Tag;)V +MD: net/minecraft/world/entity/LivingEntity/m_21120_ (Lnet/minecraft/world/InteractionHand;)Lnet/minecraft/world/item/ItemStack; net/minecraft/world/entity/LivingEntity/getItemInHand (Lnet/minecraft/world/InteractionHand;)Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/entity/LivingEntity/m_21124_ (Lnet/minecraft/world/effect/MobEffect;)Lnet/minecraft/world/effect/MobEffectInstance; net/minecraft/world/entity/LivingEntity/getEffect (Lnet/minecraft/world/effect/MobEffect;)Lnet/minecraft/world/effect/MobEffectInstance; +MD: net/minecraft/world/entity/LivingEntity/m_21128_ (Lnet/minecraft/world/entity/EquipmentSlot;Lnet/minecraft/world/item/ItemStack;)V net/minecraft/world/entity/LivingEntity/setLastArmorItem (Lnet/minecraft/world/entity/EquipmentSlot;Lnet/minecraft/world/item/ItemStack;)V +MD: net/minecraft/world/entity/LivingEntity/m_21133_ (Lnet/minecraft/world/entity/ai/attributes/Attribute;)D net/minecraft/world/entity/LivingEntity/getAttributeValue (Lnet/minecraft/world/entity/ai/attributes/Attribute;)D +MD: net/minecraft/world/entity/LivingEntity/m_21137_ (Lnet/minecraft/world/item/ItemStack;I)V net/minecraft/world/entity/LivingEntity/triggerItemUseEffects (Lnet/minecraft/world/item/ItemStack;I)V +MD: net/minecraft/world/entity/LivingEntity/m_21142_ (Ljava/util/Map;)V net/minecraft/world/entity/LivingEntity/handleEquipmentChanges (Ljava/util/Map;)V +MD: net/minecraft/world/entity/LivingEntity/m_21153_ (F)V net/minecraft/world/entity/LivingEntity/setHealth (F)V +MD: net/minecraft/world/entity/LivingEntity/m_21155_ (IZ)V net/minecraft/world/entity/LivingEntity/setLivingEntityFlag (IZ)V +MD: net/minecraft/world/entity/LivingEntity/m_21161_ (Lnet/minecraft/world/damagesource/DamageSource;F)F net/minecraft/world/entity/LivingEntity/getDamageAfterArmorAbsorb (Lnet/minecraft/world/damagesource/DamageSource;F)F +MD: net/minecraft/world/entity/LivingEntity/m_21166_ (Lnet/minecraft/world/entity/EquipmentSlot;)V net/minecraft/world/entity/LivingEntity/broadcastBreakEvent (Lnet/minecraft/world/entity/EquipmentSlot;)V +MD: net/minecraft/world/entity/LivingEntity/m_21168_ (Lnet/minecraft/world/entity/EquipmentSlot;Lnet/minecraft/world/item/ItemStack;)V net/minecraft/world/entity/LivingEntity/setLastHandItem (Lnet/minecraft/world/entity/EquipmentSlot;Lnet/minecraft/world/item/ItemStack;)V +MD: net/minecraft/world/entity/LivingEntity/m_21172_ (Lnet/minecraft/world/entity/ai/attributes/Attribute;)D net/minecraft/world/entity/LivingEntity/getAttributeBaseValue (Lnet/minecraft/world/entity/ai/attributes/Attribute;)D +MD: net/minecraft/world/entity/LivingEntity/m_21176_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/world/entity/LivingEntity/trapdoorUsableAsLadder (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/world/entity/LivingEntity/m_21179_ (Ljava/util/Collection;)Z net/minecraft/world/entity/LivingEntity/areAllEffectsAmbient (Ljava/util/Collection;)Z +MD: net/minecraft/world/entity/LivingEntity/m_21183_ ()Lnet/minecraft/world/entity/ai/attributes/AttributeSupplier$Builder; net/minecraft/world/entity/LivingEntity/createLivingAttributes ()Lnet/minecraft/world/entity/ai/attributes/AttributeSupplier$Builder; +MD: net/minecraft/world/entity/LivingEntity/m_21184_ ()V net/minecraft/world/entity/LivingEntity/spawnSoulSpeedParticle ()V +MD: net/minecraft/world/entity/LivingEntity/m_21185_ ()V net/minecraft/world/entity/LivingEntity/removeSoulSpeed ()V +MD: net/minecraft/world/entity/LivingEntity/m_21186_ ()V net/minecraft/world/entity/LivingEntity/tryAddSoulSpeed ()V +MD: net/minecraft/world/entity/LivingEntity/m_21188_ ()Lnet/minecraft/world/entity/LivingEntity; net/minecraft/world/entity/LivingEntity/getLastHurtByMob ()Lnet/minecraft/world/entity/LivingEntity; +MD: net/minecraft/world/entity/LivingEntity/m_21190_ (Lnet/minecraft/world/InteractionHand;)V net/minecraft/world/entity/LivingEntity/broadcastBreakEvent (Lnet/minecraft/world/InteractionHand;)V +MD: net/minecraft/world/entity/LivingEntity/m_21195_ (Lnet/minecraft/world/effect/MobEffect;)Z net/minecraft/world/entity/LivingEntity/removeEffect (Lnet/minecraft/world/effect/MobEffect;)Z +MD: net/minecraft/world/entity/LivingEntity/m_21198_ (Lnet/minecraft/world/entity/EquipmentSlot;)Lnet/minecraft/world/item/ItemStack; net/minecraft/world/entity/LivingEntity/getLastArmorItem (Lnet/minecraft/world/entity/EquipmentSlot;)Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/entity/LivingEntity/m_21203_ ()V net/minecraft/world/entity/LivingEntity/updateSwingTime ()V +MD: net/minecraft/world/entity/LivingEntity/m_21204_ ()Lnet/minecraft/world/entity/ai/attributes/AttributeMap; net/minecraft/world/entity/LivingEntity/getAttributes ()Lnet/minecraft/world/entity/ai/attributes/AttributeMap; +MD: net/minecraft/world/entity/LivingEntity/m_21205_ ()Lnet/minecraft/world/item/ItemStack; net/minecraft/world/entity/LivingEntity/getMainHandItem ()Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/entity/LivingEntity/m_21206_ ()Lnet/minecraft/world/item/ItemStack; net/minecraft/world/entity/LivingEntity/getOffhandItem ()Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/entity/LivingEntity/m_21207_ ()F net/minecraft/world/entity/LivingEntity/getArmorCoverPercentage ()F +MD: net/minecraft/world/entity/LivingEntity/m_21208_ ()V net/minecraft/world/entity/LivingEntity/goDownInWater ()V +MD: net/minecraft/world/entity/LivingEntity/m_21209_ ()Z net/minecraft/world/entity/LivingEntity/isAutoSpinAttack ()Z +MD: net/minecraft/world/entity/LivingEntity/m_21210_ ()V net/minecraft/world/entity/LivingEntity/updateEffectVisibility ()V +MD: net/minecraft/world/entity/LivingEntity/m_21211_ ()Lnet/minecraft/world/item/ItemStack; net/minecraft/world/entity/LivingEntity/getUseItem ()Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/entity/LivingEntity/m_21212_ ()I net/minecraft/world/entity/LivingEntity/getUseItemRemainingTicks ()I +MD: net/minecraft/world/entity/LivingEntity/m_21213_ ()I net/minecraft/world/entity/LivingEntity/getLastHurtByMobTimestamp ()I +MD: net/minecraft/world/entity/LivingEntity/m_21214_ ()Lnet/minecraft/world/entity/LivingEntity; net/minecraft/world/entity/LivingEntity/getLastHurtMob ()Lnet/minecraft/world/entity/LivingEntity; +MD: net/minecraft/world/entity/LivingEntity/m_21215_ ()I net/minecraft/world/entity/LivingEntity/getLastHurtMobTimestamp ()I +MD: net/minecraft/world/entity/LivingEntity/m_21216_ ()I net/minecraft/world/entity/LivingEntity/getNoActionTime ()I +MD: net/minecraft/world/entity/LivingEntity/m_21217_ ()V net/minecraft/world/entity/LivingEntity/tickEffects ()V +MD: net/minecraft/world/entity/LivingEntity/m_21218_ ()V net/minecraft/world/entity/LivingEntity/removeEffectParticles ()V +MD: net/minecraft/world/entity/LivingEntity/m_21219_ ()Z net/minecraft/world/entity/LivingEntity/removeAllEffects ()Z +MD: net/minecraft/world/entity/LivingEntity/m_21220_ ()Ljava/util/Collection; net/minecraft/world/entity/LivingEntity/getActiveEffects ()Ljava/util/Collection; +MD: net/minecraft/world/entity/LivingEntity/m_21221_ ()Ljava/util/Map; net/minecraft/world/entity/LivingEntity/getActiveEffectsMap ()Ljava/util/Map; +MD: net/minecraft/world/entity/LivingEntity/m_21222_ ()Z net/minecraft/world/entity/LivingEntity/isInvertedHealAndHarm ()Z +MD: net/minecraft/world/entity/LivingEntity/m_21223_ ()F net/minecraft/world/entity/LivingEntity/getHealth ()F +MD: net/minecraft/world/entity/LivingEntity/m_21224_ ()Z net/minecraft/world/entity/LivingEntity/isDeadOrDying ()Z +MD: net/minecraft/world/entity/LivingEntity/m_21225_ ()Lnet/minecraft/world/damagesource/DamageSource; net/minecraft/world/entity/LivingEntity/getLastDamageSource ()Lnet/minecraft/world/damagesource/DamageSource; +MD: net/minecraft/world/entity/LivingEntity/m_21226_ ()V net/minecraft/world/entity/LivingEntity/dropExperience ()V +MD: net/minecraft/world/entity/LivingEntity/m_21227_ ()Ljava/util/Optional; net/minecraft/world/entity/LivingEntity/getLastClimbablePos ()Ljava/util/Optional; +MD: net/minecraft/world/entity/LivingEntity/m_21229_ ()V net/minecraft/world/entity/LivingEntity/playBlockFallSound ()V +MD: net/minecraft/world/entity/LivingEntity/m_21230_ ()I net/minecraft/world/entity/LivingEntity/getArmorValue ()I +MD: net/minecraft/world/entity/LivingEntity/m_21231_ ()Lnet/minecraft/world/damagesource/CombatTracker; net/minecraft/world/entity/LivingEntity/getCombatTracker ()Lnet/minecraft/world/damagesource/CombatTracker; +MD: net/minecraft/world/entity/LivingEntity/m_21232_ ()Lnet/minecraft/world/entity/LivingEntity; net/minecraft/world/entity/LivingEntity/getKillCredit ()Lnet/minecraft/world/entity/LivingEntity; +MD: net/minecraft/world/entity/LivingEntity/m_21233_ ()F net/minecraft/world/entity/LivingEntity/getMaxHealth ()F +MD: net/minecraft/world/entity/LivingEntity/m_21234_ ()I net/minecraft/world/entity/LivingEntity/getArrowCount ()I +MD: net/minecraft/world/entity/LivingEntity/m_21235_ ()I net/minecraft/world/entity/LivingEntity/getStingerCount ()I +MD: net/minecraft/world/entity/LivingEntity/m_21244_ (Lnet/minecraft/world/entity/EquipmentSlot;)Lnet/minecraft/world/item/ItemStack; net/minecraft/world/entity/LivingEntity/getLastHandItem (Lnet/minecraft/world/entity/EquipmentSlot;)Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/entity/LivingEntity/m_21250_ (Lnet/minecraft/core/BlockPos;)V net/minecraft/world/entity/LivingEntity/setSleepingPos (Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/world/entity/LivingEntity/m_21252_ ()I net/minecraft/world/entity/LivingEntity/getTicksUsingItem ()I +MD: net/minecraft/world/entity/LivingEntity/m_21253_ ()V net/minecraft/world/entity/LivingEntity/releaseUsingItem ()V +MD: net/minecraft/world/entity/LivingEntity/m_21254_ ()Z net/minecraft/world/entity/LivingEntity/isBlocking ()Z +MD: net/minecraft/world/entity/LivingEntity/m_21255_ ()Z net/minecraft/world/entity/LivingEntity/isFallFlying ()Z +MD: net/minecraft/world/entity/LivingEntity/m_21256_ ()I net/minecraft/world/entity/LivingEntity/getFallFlyingTicks ()I +MD: net/minecraft/world/entity/LivingEntity/m_21257_ ()Ljava/util/Optional; net/minecraft/world/entity/LivingEntity/getSleepingPos ()Ljava/util/Optional; +MD: net/minecraft/world/entity/LivingEntity/m_21258_ ()V net/minecraft/world/entity/LivingEntity/clearSleepingPos ()V +MD: net/minecraft/world/entity/LivingEntity/m_21259_ ()Lnet/minecraft/core/Direction; net/minecraft/world/entity/LivingEntity/getBedOrientation ()Lnet/minecraft/core/Direction; +MD: net/minecraft/world/entity/LivingEntity/m_21262_ (Lnet/minecraft/world/damagesource/DamageSource;)Z net/minecraft/world/entity/LivingEntity/checkTotemDeathProtection (Lnet/minecraft/world/damagesource/DamageSource;)Z +MD: net/minecraft/world/entity/LivingEntity/m_21264_ (Lnet/minecraft/world/effect/MobEffectInstance;)V net/minecraft/world/entity/LivingEntity/lambda$tickEffects$3 (Lnet/minecraft/world/effect/MobEffectInstance;)V +MD: net/minecraft/world/entity/LivingEntity/m_21266_ (Lnet/minecraft/world/entity/EquipmentSlot;)B net/minecraft/world/entity/LivingEntity/entityEventForEquipmentBreak (Lnet/minecraft/world/entity/EquipmentSlot;)B +MD: net/minecraft/world/entity/LivingEntity/m_21268_ (Lnet/minecraft/world/entity/LivingEntity;)V net/minecraft/world/entity/LivingEntity/createWitherRose (Lnet/minecraft/world/entity/LivingEntity;)V +MD: net/minecraft/world/entity/LivingEntity/m_21270_ (Lnet/minecraft/world/entity/Pose;)Lnet/minecraft/world/phys/AABB; net/minecraft/world/entity/LivingEntity/getLocalBoundsForPose (Lnet/minecraft/world/entity/Pose;)Lnet/minecraft/world/phys/AABB; +MD: net/minecraft/world/entity/LivingEntity/m_21275_ (Lnet/minecraft/world/damagesource/DamageSource;)Z net/minecraft/world/entity/LivingEntity/isDamageSourceBlocked (Lnet/minecraft/world/damagesource/DamageSource;)Z +MD: net/minecraft/world/entity/LivingEntity/m_21278_ (Lnet/minecraft/world/item/ItemStack;)V net/minecraft/world/entity/LivingEntity/breakItem (Lnet/minecraft/world/item/ItemStack;)V +MD: net/minecraft/world/entity/LivingEntity/m_21289_ (Lnet/minecraft/world/phys/Vec3;)Lnet/minecraft/world/phys/Vec3; net/minecraft/world/entity/LivingEntity/resetForwardDirectionOfRelativePortalPosition (Lnet/minecraft/world/phys/Vec3;)Lnet/minecraft/world/phys/Vec3; +MD: net/minecraft/world/entity/LivingEntity/m_21297_ (Lnet/minecraft/world/phys/Vec3;)Lnet/minecraft/world/phys/Vec3; net/minecraft/world/entity/LivingEntity/handleOnClimbable (Lnet/minecraft/world/phys/Vec3;)Lnet/minecraft/world/phys/Vec3; +MD: net/minecraft/world/entity/LivingEntity/m_21300_ (Lnet/minecraft/world/entity/LivingEntity;)V net/minecraft/world/entity/LivingEntity/lambda$tryAddSoulSpeed$0 (Lnet/minecraft/world/entity/LivingEntity;)V +MD: net/minecraft/world/entity/LivingEntity/m_21304_ ()I net/minecraft/world/entity/LivingEntity/getCurrentSwingDuration ()I +MD: net/minecraft/world/entity/LivingEntity/m_21310_ (I)V net/minecraft/world/entity/LivingEntity/setNoActionTime (I)V +MD: net/minecraft/world/entity/LivingEntity/m_21312_ ()V net/minecraft/world/entity/LivingEntity/swapHandItems ()V +MD: net/minecraft/world/entity/LivingEntity/m_21315_ ()V net/minecraft/world/entity/LivingEntity/detectEquipmentUpdates ()V +MD: net/minecraft/world/entity/LivingEntity/m_21317_ (I)V net/minecraft/world/entity/LivingEntity/setArrowCount (I)V +MD: net/minecraft/world/entity/LivingEntity/m_21319_ ()Ljava/util/Map; net/minecraft/world/entity/LivingEntity/collectEquipmentChanges ()Ljava/util/Map; +MD: net/minecraft/world/entity/LivingEntity/m_21321_ (I)V net/minecraft/world/entity/LivingEntity/setStingerCount (I)V +MD: net/minecraft/world/entity/LivingEntity/m_21323_ ()V net/minecraft/world/entity/LivingEntity/updateFallFlying ()V +MD: net/minecraft/world/entity/LivingEntity/m_21324_ (F)F net/minecraft/world/entity/LivingEntity/getAttackAnim (F)F +MD: net/minecraft/world/entity/LivingEntity/m_21329_ ()V net/minecraft/world/entity/LivingEntity/updatingUsingItem ()V +MD: net/minecraft/world/entity/LivingEntity/m_21330_ (F)F net/minecraft/world/entity/LivingEntity/getFrictionInfluencedSpeed (F)F +MD: net/minecraft/world/entity/LivingEntity/m_21332_ ()Z net/minecraft/world/entity/LivingEntity/shouldTriggerItemUseEffects ()Z +MD: net/minecraft/world/entity/LivingEntity/m_21333_ ()V net/minecraft/world/entity/LivingEntity/updateSwimAmount ()V +MD: net/minecraft/world/entity/LivingEntity/m_21334_ ()Z net/minecraft/world/entity/LivingEntity/checkBedExists ()Z +MD: net/minecraft/world/entity/LivingEntity/m_21335_ (Lnet/minecraft/world/entity/Entity;)V net/minecraft/world/entity/LivingEntity/setLastHurtMob (Lnet/minecraft/world/entity/Entity;)V +MD: net/minecraft/world/entity/LivingEntity/m_213772_ (Lnet/minecraft/world/entity/EquipmentSlot;)Z net/minecraft/world/entity/LivingEntity/doesEmitEquipEvent (Lnet/minecraft/world/entity/EquipmentSlot;)Z +MD: net/minecraft/world/entity/LivingEntity/m_213816_ ()F net/minecraft/world/entity/LivingEntity/getVisualRotationYInDegrees ()F +MD: net/minecraft/world/entity/LivingEntity/m_213824_ ()Z net/minecraft/world/entity/LivingEntity/canDisableShield ()Z +MD: net/minecraft/world/entity/LivingEntity/m_213860_ ()I net/minecraft/world/entity/LivingEntity/getExperienceReward ()I +MD: net/minecraft/world/entity/LivingEntity/m_217043_ ()Lnet/minecraft/util/RandomSource; net/minecraft/world/entity/LivingEntity/getRandom ()Lnet/minecraft/util/RandomSource; +MD: net/minecraft/world/entity/LivingEntity/m_217045_ ()V net/minecraft/world/entity/LivingEntity/skipDropExperience ()V +MD: net/minecraft/world/entity/LivingEntity/m_217046_ ()Z net/minecraft/world/entity/LivingEntity/wasExperienceConsumed ()Z +MD: net/minecraft/world/entity/LivingEntity/m_238392_ (Lnet/minecraft/world/entity/EquipmentSlot;Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/item/ItemStack;)V net/minecraft/world/entity/LivingEntity/onEquipItem (Lnet/minecraft/world/entity/EquipmentSlot;Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/item/ItemStack;)V +MD: net/minecraft/world/entity/LivingEntity/m_245547_ (Lnet/minecraft/world/entity/player/Player;)F net/minecraft/world/entity/LivingEntity/getRiddenSpeed (Lnet/minecraft/world/entity/player/Player;)F +MD: net/minecraft/world/entity/LivingEntity/m_245892_ (Lnet/minecraft/core/Holder;)D net/minecraft/world/entity/LivingEntity/getAttributeBaseValue (Lnet/minecraft/core/Holder;)D +MD: net/minecraft/world/entity/LivingEntity/m_246525_ (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/item/ItemStack;)Z net/minecraft/world/entity/LivingEntity/equipmentHasChanged (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/item/ItemStack;)Z +MD: net/minecraft/world/entity/LivingEntity/m_246858_ (Lnet/minecraft/core/Holder;)D net/minecraft/world/entity/LivingEntity/getAttributeValue (Lnet/minecraft/core/Holder;)D +MD: net/minecraft/world/entity/LivingEntity/m_260785_ (Lnet/minecraft/core/BlockPos;)V net/minecraft/world/entity/LivingEntity/lambda$stopSleeping$9 (Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/world/entity/LivingEntity/m_262803_ ()Lnet/minecraft/world/phys/Vec3; net/minecraft/world/entity/LivingEntity/getMeleeAttackReferencePosition ()Lnet/minecraft/world/phys/Vec3; +MD: net/minecraft/world/entity/LivingEntity/m_264297_ ()F net/minecraft/world/entity/LivingEntity/getHurtDir ()F +MD: net/minecraft/world/entity/LivingEntity/m_267651_ (Z)V net/minecraft/world/entity/LivingEntity/calculateEntityAnimation (Z)V +MD: net/minecraft/world/entity/LivingEntity/m_267689_ (F)V net/minecraft/world/entity/LivingEntity/updateWalkAnimation (F)V +MD: net/minecraft/world/entity/LivingEntity/m_268865_ (Lnet/minecraft/world/entity/EquipmentSlot;Lnet/minecraft/world/item/ItemStack;)Z net/minecraft/world/entity/LivingEntity/lambda$createEquipmentSlotAccess$10 (Lnet/minecraft/world/entity/EquipmentSlot;Lnet/minecraft/world/item/ItemStack;)Z +MD: net/minecraft/world/entity/LivingEntity/m_269138_ (Lnet/minecraft/world/damagesource/DamageSource;)V net/minecraft/world/entity/LivingEntity/handleDamageEvent (Lnet/minecraft/world/damagesource/DamageSource;)V +MD: net/minecraft/world/entity/LivingEntity/m_269405_ (DD)V net/minecraft/world/entity/LivingEntity/indicateDamage (DD)V +MD: net/minecraft/world/entity/LivingEntity/m_271686_ ()Lnet/minecraft/world/entity/LivingEntity; net/minecraft/world/entity/LivingEntity/getLastAttacker ()Lnet/minecraft/world/entity/LivingEntity; +MD: net/minecraft/world/entity/LivingEntity/m_274312_ (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/phys/Vec3;)Lnet/minecraft/world/phys/Vec3; net/minecraft/world/entity/LivingEntity/getRiddenInput (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/phys/Vec3;)Lnet/minecraft/world/phys/Vec3; +MD: net/minecraft/world/entity/LivingEntity/m_274421_ ()F net/minecraft/world/entity/LivingEntity/maxUpStep ()F +MD: net/minecraft/world/entity/LivingEntity/m_274460_ ()F net/minecraft/world/entity/LivingEntity/getFlyingSpeed ()F +MD: net/minecraft/world/entity/LivingEntity/m_274466_ (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/phys/Vec3;)V net/minecraft/world/entity/LivingEntity/travelRidden (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/phys/Vec3;)V +MD: net/minecraft/world/entity/LivingEntity/m_274498_ (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/phys/Vec3;)V net/minecraft/world/entity/LivingEntity/tickRidden (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/phys/Vec3;)V +MD: net/minecraft/world/entity/LivingEntity/m_285755_ ()F net/minecraft/world/entity/LivingEntity/getJumpBoostPower ()F +MD: net/minecraft/world/entity/LivingEntity/m_287233_ ()J net/minecraft/world/entity/LivingEntity/getLootTableSeed ()J +MD: net/minecraft/world/entity/LivingEntity/m_289088_ (Lnet/minecraft/core/BlockPos;)Ljava/lang/Boolean; net/minecraft/world/entity/LivingEntity/lambda$checkBedExists$7 (Lnet/minecraft/core/BlockPos;)Ljava/lang/Boolean; +MD: net/minecraft/world/entity/LivingEntity/m_289605_ (Lnet/minecraft/world/effect/MobEffectInstance;)V net/minecraft/world/entity/LivingEntity/sendEffectToPassengers (Lnet/minecraft/world/effect/MobEffectInstance;)V +MD: net/minecraft/world/entity/LivingEntity/m_5490_ ()Lnet/minecraft/world/entity/ai/Brain$Provider; net/minecraft/world/entity/LivingEntity/brainProvider ()Lnet/minecraft/world/entity/ai/Brain$Provider; +MD: net/minecraft/world/entity/LivingEntity/m_5584_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/item/ItemStack;)Lnet/minecraft/world/item/ItemStack; net/minecraft/world/entity/LivingEntity/eat (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/item/ItemStack;)Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/entity/LivingEntity/m_5592_ ()Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/LivingEntity/getDeathSound ()Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/LivingEntity/m_5616_ (F)V net/minecraft/world/entity/LivingEntity/setYHeadRot (F)V +MD: net/minecraft/world/entity/LivingEntity/m_5618_ (F)V net/minecraft/world/entity/LivingEntity/setYBodyRot (F)V +MD: net/minecraft/world/entity/LivingEntity/m_5632_ (FF)F net/minecraft/world/entity/LivingEntity/tickHeadTurn (FF)F +MD: net/minecraft/world/entity/LivingEntity/m_5634_ (F)V net/minecraft/world/entity/LivingEntity/heal (F)V +MD: net/minecraft/world/entity/LivingEntity/m_5639_ (FF)I net/minecraft/world/entity/LivingEntity/calculateFallDamage (FF)I +MD: net/minecraft/world/entity/LivingEntity/m_5675_ (F)F net/minecraft/world/entity/LivingEntity/getViewYRot (F)F +MD: net/minecraft/world/entity/LivingEntity/m_5737_ ()Lnet/minecraft/world/entity/HumanoidArm; net/minecraft/world/entity/LivingEntity/getMainArm ()Lnet/minecraft/world/entity/HumanoidArm; +MD: net/minecraft/world/entity/LivingEntity/m_5743_ ()Lnet/minecraft/resources/ResourceLocation; net/minecraft/world/entity/LivingEntity/getLootTable ()Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/world/entity/LivingEntity/m_5789_ ()Z net/minecraft/world/entity/LivingEntity/attackable ()Z +MD: net/minecraft/world/entity/LivingEntity/m_5791_ ()Z net/minecraft/world/entity/LivingEntity/isSuppressingSlidingDownLadder ()Z +MD: net/minecraft/world/entity/LivingEntity/m_5796_ ()V net/minecraft/world/entity/LivingEntity/stopSleeping ()V +MD: net/minecraft/world/entity/LivingEntity/m_5801_ ()Z net/minecraft/world/entity/LivingEntity/isAffectedByPotions ()Z +MD: net/minecraft/world/entity/LivingEntity/m_5802_ (Lnet/minecraft/core/BlockPos;)V net/minecraft/world/entity/LivingEntity/startSleeping (Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/world/entity/LivingEntity/m_5803_ ()Z net/minecraft/world/entity/LivingEntity/isSleeping ()Z +MD: net/minecraft/world/entity/LivingEntity/m_5806_ (Lnet/minecraft/core/BlockPos;)V net/minecraft/world/entity/LivingEntity/onChangedBlock (Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/world/entity/LivingEntity/m_5810_ ()V net/minecraft/world/entity/LivingEntity/stopUsingItem ()V +MD: net/minecraft/world/entity/LivingEntity/m_5830_ ()Z net/minecraft/world/entity/LivingEntity/isInWall ()Z +MD: net/minecraft/world/entity/LivingEntity/m_5896_ (I)Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/LivingEntity/getFallDamageSound (I)Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/LivingEntity/m_5907_ ()V net/minecraft/world/entity/LivingEntity/dropEquipment ()V +MD: net/minecraft/world/entity/LivingEntity/m_6039_ ()Z net/minecraft/world/entity/LivingEntity/canSpawnSoulSpeedParticle ()Z +MD: net/minecraft/world/entity/LivingEntity/m_6040_ ()Z net/minecraft/world/entity/LivingEntity/canBreatheUnderwater ()Z +MD: net/minecraft/world/entity/LivingEntity/m_6041_ ()F net/minecraft/world/entity/LivingEntity/getBlockSpeedFactor ()F +MD: net/minecraft/world/entity/LivingEntity/m_6046_ ()Z net/minecraft/world/entity/LivingEntity/onSoulSpeedBlock ()Z +MD: net/minecraft/world/entity/LivingEntity/m_6052_ ()Z net/minecraft/world/entity/LivingEntity/shouldShowName ()Z +MD: net/minecraft/world/entity/LivingEntity/m_6053_ (F)V net/minecraft/world/entity/LivingEntity/animateHurt (F)V +MD: net/minecraft/world/entity/LivingEntity/m_6067_ ()Z net/minecraft/world/entity/LivingEntity/isVisuallySwimming ()Z +MD: net/minecraft/world/entity/LivingEntity/m_6072_ ()Z net/minecraft/world/entity/LivingEntity/canChangeDimensions ()Z +MD: net/minecraft/world/entity/LivingEntity/m_6074_ ()V net/minecraft/world/entity/LivingEntity/kill ()V +MD: net/minecraft/world/entity/LivingEntity/m_6075_ ()V net/minecraft/world/entity/LivingEntity/baseTick ()V +MD: net/minecraft/world/entity/LivingEntity/m_6080_ ()F net/minecraft/world/entity/LivingEntity/getYHeadRot ()F +MD: net/minecraft/world/entity/LivingEntity/m_6083_ ()V net/minecraft/world/entity/LivingEntity/rideTick ()V +MD: net/minecraft/world/entity/LivingEntity/m_6084_ ()Z net/minecraft/world/entity/LivingEntity/isAlive ()Z +MD: net/minecraft/world/entity/LivingEntity/m_6087_ ()Z net/minecraft/world/entity/LivingEntity/isPickable ()Z +MD: net/minecraft/world/entity/LivingEntity/m_6088_ ()V net/minecraft/world/entity/LivingEntity/onBelowWorld ()V +MD: net/minecraft/world/entity/LivingEntity/m_6094_ ()Z net/minecraft/world/entity/LivingEntity/isPushable ()Z +MD: net/minecraft/world/entity/LivingEntity/m_6100_ ()F net/minecraft/world/entity/LivingEntity/getVoicePitch ()F +MD: net/minecraft/world/entity/LivingEntity/m_6103_ ()F net/minecraft/world/entity/LivingEntity/getAbsorptionAmount ()F +MD: net/minecraft/world/entity/LivingEntity/m_6107_ ()Z net/minecraft/world/entity/LivingEntity/isImmobile ()Z +MD: net/minecraft/world/entity/LivingEntity/m_6108_ ()F net/minecraft/world/entity/LivingEntity/getWaterSlowDown ()F +MD: net/minecraft/world/entity/LivingEntity/m_6113_ ()F net/minecraft/world/entity/LivingEntity/getSpeed ()F +MD: net/minecraft/world/entity/LivingEntity/m_6117_ ()Z net/minecraft/world/entity/LivingEntity/isUsingItem ()Z +MD: net/minecraft/world/entity/LivingEntity/m_6118_ ()F net/minecraft/world/entity/LivingEntity/getJumpPower ()F +MD: net/minecraft/world/entity/LivingEntity/m_6121_ ()F net/minecraft/world/entity/LivingEntity/getSoundVolume ()F +MD: net/minecraft/world/entity/LivingEntity/m_6124_ ()Z net/minecraft/world/entity/LivingEntity/isAlwaysExperienceDropper ()Z +MD: net/minecraft/world/entity/LivingEntity/m_6125_ ()Z net/minecraft/world/entity/LivingEntity/shouldDropLoot ()Z +MD: net/minecraft/world/entity/LivingEntity/m_6126_ ()Z net/minecraft/world/entity/LivingEntity/isSensitiveToWater ()Z +MD: net/minecraft/world/entity/LivingEntity/m_6129_ ()Z net/minecraft/world/entity/LivingEntity/isAffectedByFluids ()Z +MD: net/minecraft/world/entity/LivingEntity/m_6134_ ()F net/minecraft/world/entity/LivingEntity/getScale ()F +MD: net/minecraft/world/entity/LivingEntity/m_6135_ ()V net/minecraft/world/entity/LivingEntity/jumpFromGround ()V +MD: net/minecraft/world/entity/LivingEntity/m_6138_ ()V net/minecraft/world/entity/LivingEntity/pushEntities ()V +MD: net/minecraft/world/entity/LivingEntity/m_6140_ ()V net/minecraft/world/entity/LivingEntity/serverAiStep ()V +MD: net/minecraft/world/entity/LivingEntity/m_6147_ ()Z net/minecraft/world/entity/LivingEntity/onClimbable ()Z +MD: net/minecraft/world/entity/LivingEntity/m_6149_ ()Z net/minecraft/world/entity/LivingEntity/shouldDropExperience ()Z +MD: net/minecraft/world/entity/LivingEntity/m_6153_ ()V net/minecraft/world/entity/LivingEntity/tickDeath ()V +MD: net/minecraft/world/entity/LivingEntity/m_6162_ ()Z net/minecraft/world/entity/LivingEntity/isBaby ()Z +MD: net/minecraft/world/entity/LivingEntity/m_6168_ ()Ljava/lang/Iterable; net/minecraft/world/entity/LivingEntity/getArmorSlots ()Ljava/lang/Iterable; +MD: net/minecraft/world/entity/LivingEntity/m_6234_ (Lnet/minecraft/world/effect/MobEffect;)Lnet/minecraft/world/effect/MobEffectInstance; net/minecraft/world/entity/LivingEntity/removeEffectNoUpdate (Lnet/minecraft/world/effect/MobEffect;)Lnet/minecraft/world/effect/MobEffectInstance; +MD: net/minecraft/world/entity/LivingEntity/m_6274_ ()Lnet/minecraft/world/entity/ai/Brain; net/minecraft/world/entity/LivingEntity/getBrain ()Lnet/minecraft/world/entity/ai/Brain; +MD: net/minecraft/world/entity/LivingEntity/m_6298_ (Lnet/minecraft/world/item/ItemStack;)Lnet/minecraft/world/item/ItemStack; net/minecraft/world/entity/LivingEntity/getProjectile (Lnet/minecraft/world/item/ItemStack;)Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/entity/LivingEntity/m_6336_ ()Lnet/minecraft/world/entity/MobType; net/minecraft/world/entity/LivingEntity/getMobType ()Lnet/minecraft/world/entity/MobType; +MD: net/minecraft/world/entity/LivingEntity/m_6380_ (Lnet/minecraft/world/entity/Pose;Lnet/minecraft/world/entity/EntityDimensions;)F net/minecraft/world/entity/LivingEntity/getEyeHeight (Lnet/minecraft/world/entity/Pose;Lnet/minecraft/world/entity/EntityDimensions;)F +MD: net/minecraft/world/entity/LivingEntity/m_6431_ (Lnet/minecraft/world/entity/Pose;Lnet/minecraft/world/entity/EntityDimensions;)F net/minecraft/world/entity/LivingEntity/getStandingEyeHeight (Lnet/minecraft/world/entity/Pose;Lnet/minecraft/world/entity/EntityDimensions;)F +MD: net/minecraft/world/entity/LivingEntity/m_6453_ (DDDFFIZ)V net/minecraft/world/entity/LivingEntity/lerpTo (DDDFFIZ)V +MD: net/minecraft/world/entity/LivingEntity/m_6469_ (Lnet/minecraft/world/damagesource/DamageSource;F)Z net/minecraft/world/entity/LivingEntity/hurt (Lnet/minecraft/world/damagesource/DamageSource;F)Z +MD: net/minecraft/world/entity/LivingEntity/m_6472_ (Lnet/minecraft/world/damagesource/DamageSource;F)V net/minecraft/world/entity/LivingEntity/hurtArmor (Lnet/minecraft/world/damagesource/DamageSource;F)V +MD: net/minecraft/world/entity/LivingEntity/m_6475_ (Lnet/minecraft/world/damagesource/DamageSource;F)V net/minecraft/world/entity/LivingEntity/actuallyHurt (Lnet/minecraft/world/damagesource/DamageSource;F)V +MD: net/minecraft/world/entity/LivingEntity/m_6515_ (Lnet/minecraft/world/damagesource/DamageSource;F)F net/minecraft/world/entity/LivingEntity/getDamageAfterMagicAbsorb (Lnet/minecraft/world/damagesource/DamageSource;F)F +MD: net/minecraft/world/entity/LivingEntity/m_6541_ (FI)V net/minecraft/world/entity/LivingEntity/lerpHeadTo (FI)V +MD: net/minecraft/world/entity/LivingEntity/m_6549_ (Lnet/minecraft/world/entity/EntityType;)Z net/minecraft/world/entity/LivingEntity/canAttackType (Lnet/minecraft/world/entity/EntityType;)Z +MD: net/minecraft/world/entity/LivingEntity/m_6598_ (Lnet/minecraft/world/entity/player/Player;)V net/minecraft/world/entity/LivingEntity/setLastHurtByPlayer (Lnet/minecraft/world/entity/player/Player;)V +MD: net/minecraft/world/entity/LivingEntity/m_6667_ (Lnet/minecraft/world/damagesource/DamageSource;)V net/minecraft/world/entity/LivingEntity/die (Lnet/minecraft/world/damagesource/DamageSource;)V +MD: net/minecraft/world/entity/LivingEntity/m_6668_ (Lnet/minecraft/world/damagesource/DamageSource;)V net/minecraft/world/entity/LivingEntity/dropAllDeathLoot (Lnet/minecraft/world/damagesource/DamageSource;)V +MD: net/minecraft/world/entity/LivingEntity/m_6672_ (Lnet/minecraft/world/InteractionHand;)V net/minecraft/world/entity/LivingEntity/startUsingItem (Lnet/minecraft/world/InteractionHand;)V +MD: net/minecraft/world/entity/LivingEntity/m_6674_ (Lnet/minecraft/world/InteractionHand;)V net/minecraft/world/entity/LivingEntity/swing (Lnet/minecraft/world/InteractionHand;)V +MD: net/minecraft/world/entity/LivingEntity/m_6677_ (Lnet/minecraft/world/damagesource/DamageSource;)V net/minecraft/world/entity/LivingEntity/playHurtSound (Lnet/minecraft/world/damagesource/DamageSource;)V +MD: net/minecraft/world/entity/LivingEntity/m_6703_ (Lnet/minecraft/world/entity/LivingEntity;)V net/minecraft/world/entity/LivingEntity/setLastHurtByMob (Lnet/minecraft/world/entity/LivingEntity;)V +MD: net/minecraft/world/entity/LivingEntity/m_6727_ (Lnet/minecraft/world/entity/LivingEntity;)V net/minecraft/world/entity/LivingEntity/doAutoAttackOnTouch (Lnet/minecraft/world/entity/LivingEntity;)V +MD: net/minecraft/world/entity/LivingEntity/m_6728_ (Lnet/minecraft/world/entity/LivingEntity;)V net/minecraft/world/entity/LivingEntity/blockUsingShield (Lnet/minecraft/world/entity/LivingEntity;)V +MD: net/minecraft/world/entity/LivingEntity/m_6731_ (Lnet/minecraft/world/entity/LivingEntity;)V net/minecraft/world/entity/LivingEntity/blockedByShield (Lnet/minecraft/world/entity/LivingEntity;)V +MD: net/minecraft/world/entity/LivingEntity/m_6757_ (Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/world/entity/LivingEntity/shouldRemoveSoulSpeed (Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/world/entity/LivingEntity/m_6779_ (Lnet/minecraft/world/entity/LivingEntity;)Z net/minecraft/world/entity/LivingEntity/canAttack (Lnet/minecraft/world/entity/LivingEntity;)Z +MD: net/minecraft/world/entity/LivingEntity/m_6818_ (Lnet/minecraft/core/BlockPos;Z)V net/minecraft/world/entity/LivingEntity/setRecordPlayingNearby (Lnet/minecraft/core/BlockPos;Z)V +MD: net/minecraft/world/entity/LivingEntity/m_6844_ (Lnet/minecraft/world/entity/EquipmentSlot;)Lnet/minecraft/world/item/ItemStack; net/minecraft/world/entity/LivingEntity/getItemBySlot (Lnet/minecraft/world/entity/EquipmentSlot;)Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/entity/LivingEntity/m_6858_ (Z)V net/minecraft/world/entity/LivingEntity/setSprinting (Z)V +MD: net/minecraft/world/entity/LivingEntity/m_6862_ (Z)V net/minecraft/world/entity/LivingEntity/setJumping (Z)V +MD: net/minecraft/world/entity/LivingEntity/m_6921_ ()Lnet/minecraft/world/phys/AABB; net/minecraft/world/entity/LivingEntity/getBoundingBoxForCulling ()Lnet/minecraft/world/phys/AABB; +MD: net/minecraft/world/entity/LivingEntity/m_6972_ (Lnet/minecraft/world/entity/Pose;)Lnet/minecraft/world/entity/EntityDimensions; net/minecraft/world/entity/LivingEntity/getDimensions (Lnet/minecraft/world/entity/Pose;)Lnet/minecraft/world/entity/EntityDimensions; +MD: net/minecraft/world/entity/LivingEntity/m_7023_ (Lnet/minecraft/world/phys/Vec3;)V net/minecraft/world/entity/LivingEntity/travel (Lnet/minecraft/world/phys/Vec3;)V +MD: net/minecraft/world/entity/LivingEntity/m_7066_ (Lnet/minecraft/world/item/ItemStack;)Z net/minecraft/world/entity/LivingEntity/canTakeItem (Lnet/minecraft/world/item/ItemStack;)Z +MD: net/minecraft/world/entity/LivingEntity/m_7285_ (Lnet/minecraft/world/effect/MobEffectInstance;)V net/minecraft/world/entity/LivingEntity/onEffectRemoved (Lnet/minecraft/world/effect/MobEffectInstance;)V +MD: net/minecraft/world/entity/LivingEntity/m_7292_ (Lnet/minecraft/world/effect/MobEffectInstance;)Z net/minecraft/world/entity/LivingEntity/addEffect (Lnet/minecraft/world/effect/MobEffectInstance;)Z +MD: net/minecraft/world/entity/LivingEntity/m_7301_ (Lnet/minecraft/world/effect/MobEffectInstance;)Z net/minecraft/world/entity/LivingEntity/canBeAffected (Lnet/minecraft/world/effect/MobEffectInstance;)Z +MD: net/minecraft/world/entity/LivingEntity/m_7302_ (I)I net/minecraft/world/entity/LivingEntity/decreaseAirSupply (I)I +MD: net/minecraft/world/entity/LivingEntity/m_7305_ (I)I net/minecraft/world/entity/LivingEntity/increaseAirSupply (I)I +MD: net/minecraft/world/entity/LivingEntity/m_7324_ (Lnet/minecraft/world/entity/Entity;)V net/minecraft/world/entity/LivingEntity/doPush (Lnet/minecraft/world/entity/Entity;)V +MD: net/minecraft/world/entity/LivingEntity/m_7327_ (Lnet/minecraft/world/entity/Entity;)Z net/minecraft/world/entity/LivingEntity/doHurtTarget (Lnet/minecraft/world/entity/Entity;)Z +MD: net/minecraft/world/entity/LivingEntity/m_7334_ (Lnet/minecraft/world/entity/Entity;)V net/minecraft/world/entity/LivingEntity/push (Lnet/minecraft/world/entity/Entity;)V +MD: net/minecraft/world/entity/LivingEntity/m_7350_ (Lnet/minecraft/network/syncher/EntityDataAccessor;)V net/minecraft/world/entity/LivingEntity/onSyncedDataUpdated (Lnet/minecraft/network/syncher/EntityDataAccessor;)V +MD: net/minecraft/world/entity/LivingEntity/m_7378_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/entity/LivingEntity/readAdditionalSaveData (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/entity/LivingEntity/m_7380_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/entity/LivingEntity/addAdditionalSaveData (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/entity/LivingEntity/m_7431_ ()Lcom/google/common/collect/ImmutableList; net/minecraft/world/entity/LivingEntity/getDismountPoses ()Lcom/google/common/collect/ImmutableList; +MD: net/minecraft/world/entity/LivingEntity/m_7472_ (Lnet/minecraft/world/damagesource/DamageSource;IZ)V net/minecraft/world/entity/LivingEntity/dropCustomDeathLoot (Lnet/minecraft/world/damagesource/DamageSource;IZ)V +MD: net/minecraft/world/entity/LivingEntity/m_7618_ (Lnet/minecraft/commands/arguments/EntityAnchorArgument$Anchor;Lnet/minecraft/world/phys/Vec3;)V net/minecraft/world/entity/LivingEntity/lookAt (Lnet/minecraft/commands/arguments/EntityAnchorArgument$Anchor;Lnet/minecraft/world/phys/Vec3;)V +MD: net/minecraft/world/entity/LivingEntity/m_7625_ (Lnet/minecraft/world/damagesource/DamageSource;Z)V net/minecraft/world/entity/LivingEntity/dropFromLootTable (Lnet/minecraft/world/damagesource/DamageSource;Z)V +MD: net/minecraft/world/entity/LivingEntity/m_7643_ (Lnet/minecraft/core/Direction$Axis;Lnet/minecraft/BlockUtil$FoundRectangle;)Lnet/minecraft/world/phys/Vec3; net/minecraft/world/entity/LivingEntity/getRelativePortalPosition (Lnet/minecraft/core/Direction$Axis;Lnet/minecraft/BlockUtil$FoundRectangle;)Lnet/minecraft/world/phys/Vec3; +MD: net/minecraft/world/entity/LivingEntity/m_7655_ ()Lnet/minecraft/world/InteractionHand; net/minecraft/world/entity/LivingEntity/getUsedItemHand ()Lnet/minecraft/world/InteractionHand; +MD: net/minecraft/world/entity/LivingEntity/m_7822_ (B)V net/minecraft/world/entity/LivingEntity/handleEntityEvent (B)V +MD: net/minecraft/world/entity/LivingEntity/m_7838_ (Lnet/minecraft/world/item/ItemStack;)Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/LivingEntity/getDrinkingSound (Lnet/minecraft/world/item/ItemStack;)Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/LivingEntity/m_7840_ (DZLnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/BlockPos;)V net/minecraft/world/entity/LivingEntity/checkFallDamage (DZLnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/world/entity/LivingEntity/m_7866_ (Lnet/minecraft/world/item/ItemStack;)Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/LivingEntity/getEatingSound (Lnet/minecraft/world/item/ItemStack;)Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/LivingEntity/m_7909_ (F)V net/minecraft/world/entity/LivingEntity/hurtCurrentlyUsedShield (F)V +MD: net/minecraft/world/entity/LivingEntity/m_7910_ (F)V net/minecraft/world/entity/LivingEntity/setSpeed (F)V +MD: net/minecraft/world/entity/LivingEntity/m_7911_ (F)V net/minecraft/world/entity/LivingEntity/setAbsorptionAmount (F)V +MD: net/minecraft/world/entity/LivingEntity/m_7938_ (Lnet/minecraft/world/entity/Entity;I)V net/minecraft/world/entity/LivingEntity/take (Lnet/minecraft/world/entity/Entity;I)V +MD: net/minecraft/world/entity/LivingEntity/m_7975_ (Lnet/minecraft/world/damagesource/DamageSource;)Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/LivingEntity/getHurtSound (Lnet/minecraft/world/damagesource/DamageSource;)Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/LivingEntity/m_8034_ ()V net/minecraft/world/entity/LivingEntity/updateInvisibilityStatus ()V +MD: net/minecraft/world/entity/LivingEntity/m_8061_ (Lnet/minecraft/world/entity/EquipmentSlot;Lnet/minecraft/world/item/ItemStack;)V net/minecraft/world/entity/LivingEntity/setItemSlot (Lnet/minecraft/world/entity/EquipmentSlot;Lnet/minecraft/world/item/ItemStack;)V +MD: net/minecraft/world/entity/LivingEntity/m_8075_ (Lcom/mojang/serialization/Dynamic;)Lnet/minecraft/world/entity/ai/Brain; net/minecraft/world/entity/LivingEntity/makeBrain (Lcom/mojang/serialization/Dynamic;)Lnet/minecraft/world/entity/ai/Brain; +MD: net/minecraft/world/entity/LivingEntity/m_8095_ ()V net/minecraft/world/entity/LivingEntity/completeUsingItem ()V +MD: net/minecraft/world/entity/LivingEntity/m_8097_ ()V net/minecraft/world/entity/LivingEntity/defineSynchedData ()V +MD: net/minecraft/world/entity/LivingEntity/m_8098_ ()V net/minecraft/world/entity/LivingEntity/onLeaveCombat ()V +MD: net/minecraft/world/entity/LivingEntity/m_8107_ ()V net/minecraft/world/entity/LivingEntity/aiStep ()V +MD: net/minecraft/world/entity/LivingEntity/m_8108_ ()V net/minecraft/world/entity/LivingEntity/onEnterCombat ()V +MD: net/minecraft/world/entity/LivingEntity/m_8119_ ()V net/minecraft/world/entity/LivingEntity/tick ()V +MD: net/minecraft/world/entity/LivingEntity/m_8127_ ()V net/minecraft/world/entity/LivingEntity/stopRiding ()V +MD: net/minecraft/world/entity/LivingEntity$1/ ()V net/minecraft/world/entity/LivingEntity$1/ ()V +MD: net/minecraft/world/entity/LivingEntity$Fallsounds/ (Lnet/minecraft/sounds/SoundEvent;Lnet/minecraft/sounds/SoundEvent;)V net/minecraft/world/entity/LivingEntity$Fallsounds/ (Lnet/minecraft/sounds/SoundEvent;Lnet/minecraft/sounds/SoundEvent;)V +MD: net/minecraft/world/entity/LivingEntity$Fallsounds/equals (Ljava/lang/Object;)Z net/minecraft/world/entity/LivingEntity$Fallsounds/equals (Ljava/lang/Object;)Z +MD: net/minecraft/world/entity/LivingEntity$Fallsounds/f_196626_ ()Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/LivingEntity$Fallsounds/small ()Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/LivingEntity$Fallsounds/f_196627_ ()Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/LivingEntity$Fallsounds/big ()Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/LivingEntity$Fallsounds/hashCode ()I net/minecraft/world/entity/LivingEntity$Fallsounds/hashCode ()I +MD: net/minecraft/world/entity/LivingEntity$Fallsounds/toString ()Ljava/lang/String; net/minecraft/world/entity/LivingEntity$Fallsounds/toString ()Ljava/lang/String; +MD: net/minecraft/world/entity/Marker/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V net/minecraft/world/entity/Marker/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V +MD: net/minecraft/world/entity/Marker/m_20348_ (Lnet/minecraft/world/entity/Entity;)V net/minecraft/world/entity/Marker/addPassenger (Lnet/minecraft/world/entity/Entity;)V +MD: net/minecraft/world/entity/Marker/m_269011_ ()Z net/minecraft/world/entity/Marker/couldAcceptPassenger ()Z +MD: net/minecraft/world/entity/Marker/m_5654_ ()Lnet/minecraft/network/protocol/Packet; net/minecraft/world/entity/Marker/getAddEntityPacket ()Lnet/minecraft/network/protocol/Packet; +MD: net/minecraft/world/entity/Marker/m_6090_ ()Z net/minecraft/world/entity/Marker/isIgnoringBlockTriggers ()Z +MD: net/minecraft/world/entity/Marker/m_7310_ (Lnet/minecraft/world/entity/Entity;)Z net/minecraft/world/entity/Marker/canAddPassenger (Lnet/minecraft/world/entity/Entity;)Z +MD: net/minecraft/world/entity/Marker/m_7378_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/entity/Marker/readAdditionalSaveData (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/entity/Marker/m_7380_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/entity/Marker/addAdditionalSaveData (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/entity/Marker/m_7752_ ()Lnet/minecraft/world/level/material/PushReaction; net/minecraft/world/entity/Marker/getPistonPushReaction ()Lnet/minecraft/world/level/material/PushReaction; +MD: net/minecraft/world/entity/Marker/m_8097_ ()V net/minecraft/world/entity/Marker/defineSynchedData ()V +MD: net/minecraft/world/entity/Marker/m_8119_ ()V net/minecraft/world/entity/Marker/tick ()V +MD: net/minecraft/world/entity/Mob/ ()V net/minecraft/world/entity/Mob/ ()V +MD: net/minecraft/world/entity/Mob/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V net/minecraft/world/entity/Mob/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V +MD: net/minecraft/world/entity/Mob/m_142340_ ()Lnet/minecraft/world/item/ItemStack; net/minecraft/world/entity/Mob/getPickResult ()Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/entity/Mob/m_142593_ (Lnet/minecraft/world/entity/LivingEntity;)D net/minecraft/world/entity/Mob/getMeleeAttackRangeSqr (Lnet/minecraft/world/entity/LivingEntity;)D +MD: net/minecraft/world/entity/Mob/m_147271_ ()V net/minecraft/world/entity/Mob/clearRestriction ()V +MD: net/minecraft/world/entity/Mob/m_147272_ ()V net/minecraft/world/entity/Mob/removeFreeWill ()V +MD: net/minecraft/world/entity/Mob/m_203347_ (Lnet/minecraft/tags/TagKey;)V net/minecraft/world/entity/Mob/jumpInLiquid (Lnet/minecraft/tags/TagKey;)V +MD: net/minecraft/world/entity/Mob/m_213552_ ()Lnet/minecraft/core/Vec3i; net/minecraft/world/entity/Mob/getPickupReach ()Lnet/minecraft/core/Vec3i; +MD: net/minecraft/world/entity/Mob/m_21373_ ()V net/minecraft/world/entity/Mob/spawnAnim ()V +MD: net/minecraft/world/entity/Mob/m_21376_ (FFF)F net/minecraft/world/entity/Mob/rotlerp (FFF)F +MD: net/minecraft/world/entity/Mob/m_213860_ ()I net/minecraft/world/entity/Mob/getExperienceReward ()I +MD: net/minecraft/world/entity/Mob/m_21391_ (Lnet/minecraft/world/entity/Entity;FF)V net/minecraft/world/entity/Mob/lookAt (Lnet/minecraft/world/entity/Entity;FF)V +MD: net/minecraft/world/entity/Mob/m_213945_ (Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/DifficultyInstance;)V net/minecraft/world/entity/Mob/populateDefaultEquipmentSlots (Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/DifficultyInstance;)V +MD: net/minecraft/world/entity/Mob/m_213946_ (Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/DifficultyInstance;)V net/minecraft/world/entity/Mob/populateDefaultEquipmentEnchantments (Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/DifficultyInstance;)V +MD: net/minecraft/world/entity/Mob/m_21406_ (Lnet/minecraft/world/entity/EntityType;Z)Lnet/minecraft/world/entity/Mob; net/minecraft/world/entity/Mob/convertTo (Lnet/minecraft/world/entity/EntityType;Z)Lnet/minecraft/world/entity/Mob; +MD: net/minecraft/world/entity/Mob/m_214095_ (Lnet/minecraft/util/RandomSource;F)V net/minecraft/world/entity/Mob/enchantSpawnedWeapon (Lnet/minecraft/util/RandomSource;F)V +MD: net/minecraft/world/entity/Mob/m_21409_ (Lnet/minecraft/world/entity/EquipmentSlot;F)V net/minecraft/world/entity/Mob/setDropChance (Lnet/minecraft/world/entity/EquipmentSlot;F)V +MD: net/minecraft/world/entity/Mob/m_21412_ (Lnet/minecraft/world/entity/EquipmentSlot;I)Lnet/minecraft/world/item/Item; net/minecraft/world/entity/Mob/getEquipmentForSlot (Lnet/minecraft/world/entity/EquipmentSlot;I)Lnet/minecraft/world/item/Item; +MD: net/minecraft/world/entity/Mob/m_21424_ (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/item/ItemStack;)V net/minecraft/world/entity/Mob/maybeDisableShield (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/item/ItemStack;)V +MD: net/minecraft/world/entity/Mob/m_21439_ (Lnet/minecraft/world/level/pathfinder/BlockPathTypes;)F net/minecraft/world/entity/Mob/getPathfindingMalus (Lnet/minecraft/world/level/pathfinder/BlockPathTypes;)F +MD: net/minecraft/world/entity/Mob/m_21441_ (Lnet/minecraft/world/level/pathfinder/BlockPathTypes;F)V net/minecraft/world/entity/Mob/setPathfindingMalus (Lnet/minecraft/world/level/pathfinder/BlockPathTypes;F)V +MD: net/minecraft/world/entity/Mob/m_21444_ (Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/entity/Mob/isWithinRestriction (Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/entity/Mob/m_21446_ (Lnet/minecraft/core/BlockPos;I)V net/minecraft/world/entity/Mob/restrictTo (Lnet/minecraft/core/BlockPos;I)V +MD: net/minecraft/world/entity/Mob/m_21455_ (ZZ)V net/minecraft/world/entity/Mob/dropLeash (ZZ)V +MD: net/minecraft/world/entity/Mob/m_21463_ (Lnet/minecraft/world/entity/Entity;Z)V net/minecraft/world/entity/Mob/setLeashedTo (Lnet/minecraft/world/entity/Entity;Z)V +MD: net/minecraft/world/entity/Mob/m_21468_ (Lnet/minecraft/world/entity/EquipmentSlot;Lnet/minecraft/world/item/ItemStack;)V net/minecraft/world/entity/Mob/setItemSlotAndDropWhenKilled (Lnet/minecraft/world/entity/EquipmentSlot;Lnet/minecraft/world/item/ItemStack;)V +MD: net/minecraft/world/entity/Mob/m_21474_ (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/entity/Mob;)V net/minecraft/world/entity/Mob/lambda$checkAndHandleImportantInteractions$2 (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/entity/Mob;)V +MD: net/minecraft/world/entity/Mob/m_21477_ (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/item/ItemStack;)Z net/minecraft/world/entity/Mob/canReplaceEqualItem (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/item/ItemStack;)Z +MD: net/minecraft/world/entity/Mob/m_21499_ (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;)Lnet/minecraft/world/InteractionResult; net/minecraft/world/entity/Mob/checkAndHandleImportantInteractions (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;)Lnet/minecraft/world/InteractionResult; +MD: net/minecraft/world/entity/Mob/m_21502_ (Ljava/lang/String;)Z net/minecraft/world/entity/Mob/lambda$canReplaceEqualItem$1 (Ljava/lang/String;)Z +MD: net/minecraft/world/entity/Mob/m_21506_ (I)V net/minecraft/world/entity/Mob/setDelayedLeashHolderId (I)V +MD: net/minecraft/world/entity/Mob/m_21508_ (Lnet/minecraft/world/entity/EquipmentSlot;)V net/minecraft/world/entity/Mob/setGuaranteedDrop (Lnet/minecraft/world/entity/EquipmentSlot;)V +MD: net/minecraft/world/entity/Mob/m_21512_ (Ljava/lang/String;)Z net/minecraft/world/entity/Mob/lambda$canReplaceEqualItem$0 (Ljava/lang/String;)Z +MD: net/minecraft/world/entity/Mob/m_21515_ ()Z net/minecraft/world/entity/Mob/isEffectiveAi ()Z +MD: net/minecraft/world/entity/Mob/m_21519_ (Lnet/minecraft/world/entity/EquipmentSlot;)F net/minecraft/world/entity/Mob/getEquipmentDropChance (Lnet/minecraft/world/entity/EquipmentSlot;)F +MD: net/minecraft/world/entity/Mob/m_21523_ ()Z net/minecraft/world/entity/Mob/isLeashed ()Z +MD: net/minecraft/world/entity/Mob/m_21524_ ()Lnet/minecraft/world/entity/Entity; net/minecraft/world/entity/Mob/getLeashHolder ()Lnet/minecraft/world/entity/Entity; +MD: net/minecraft/world/entity/Mob/m_21525_ ()Z net/minecraft/world/entity/Mob/isNoAi ()Z +MD: net/minecraft/world/entity/Mob/m_21526_ ()Z net/minecraft/world/entity/Mob/isLeftHanded ()Z +MD: net/minecraft/world/entity/Mob/m_21527_ ()Z net/minecraft/world/entity/Mob/isSunBurnTick ()Z +MD: net/minecraft/world/entity/Mob/m_21528_ ()V net/minecraft/world/entity/Mob/restoreLeashFromSave ()V +MD: net/minecraft/world/entity/Mob/m_21529_ ()I net/minecraft/world/entity/Mob/getHeadRotSpeed ()I +MD: net/minecraft/world/entity/Mob/m_21530_ ()V net/minecraft/world/entity/Mob/setPersistenceRequired ()V +MD: net/minecraft/world/entity/Mob/m_21531_ ()Z net/minecraft/world/entity/Mob/canPickUpLoot ()Z +MD: net/minecraft/world/entity/Mob/m_21532_ ()Z net/minecraft/world/entity/Mob/isPersistenceRequired ()Z +MD: net/minecraft/world/entity/Mob/m_21533_ ()Z net/minecraft/world/entity/Mob/isWithinRestriction ()Z +MD: net/minecraft/world/entity/Mob/m_21534_ ()Lnet/minecraft/core/BlockPos; net/minecraft/world/entity/Mob/getRestrictCenter ()Lnet/minecraft/core/BlockPos; +MD: net/minecraft/world/entity/Mob/m_21535_ ()F net/minecraft/world/entity/Mob/getRestrictRadius ()F +MD: net/minecraft/world/entity/Mob/m_21536_ ()Z net/minecraft/world/entity/Mob/hasRestriction ()Z +MD: net/minecraft/world/entity/Mob/m_21551_ ()V net/minecraft/world/entity/Mob/resetAmbientSoundTime ()V +MD: net/minecraft/world/entity/Mob/m_21552_ ()Lnet/minecraft/world/entity/ai/attributes/AttributeSupplier$Builder; net/minecraft/world/entity/Mob/createMobAttributes ()Lnet/minecraft/world/entity/ai/attributes/AttributeSupplier$Builder; +MD: net/minecraft/world/entity/Mob/m_21553_ (Z)V net/minecraft/world/entity/Mob/setCanPickUpLoot (Z)V +MD: net/minecraft/world/entity/Mob/m_21557_ (Z)V net/minecraft/world/entity/Mob/setNoAi (Z)V +MD: net/minecraft/world/entity/Mob/m_21559_ (Z)V net/minecraft/world/entity/Mob/setLeftHanded (Z)V +MD: net/minecraft/world/entity/Mob/m_21561_ (Z)V net/minecraft/world/entity/Mob/setAggressive (Z)V +MD: net/minecraft/world/entity/Mob/m_21563_ ()Lnet/minecraft/world/entity/ai/control/LookControl; net/minecraft/world/entity/Mob/getLookControl ()Lnet/minecraft/world/entity/ai/control/LookControl; +MD: net/minecraft/world/entity/Mob/m_21564_ (F)V net/minecraft/world/entity/Mob/setZza (F)V +MD: net/minecraft/world/entity/Mob/m_21566_ ()Lnet/minecraft/world/entity/ai/control/MoveControl; net/minecraft/world/entity/Mob/getMoveControl ()Lnet/minecraft/world/entity/ai/control/MoveControl; +MD: net/minecraft/world/entity/Mob/m_21567_ (F)V net/minecraft/world/entity/Mob/setYya (F)V +MD: net/minecraft/world/entity/Mob/m_21569_ ()Lnet/minecraft/world/entity/ai/control/JumpControl; net/minecraft/world/entity/Mob/getJumpControl ()Lnet/minecraft/world/entity/ai/control/JumpControl; +MD: net/minecraft/world/entity/Mob/m_21570_ (F)V net/minecraft/world/entity/Mob/setXxa (F)V +MD: net/minecraft/world/entity/Mob/m_21573_ ()Lnet/minecraft/world/entity/ai/navigation/PathNavigation; net/minecraft/world/entity/Mob/getNavigation ()Lnet/minecraft/world/entity/ai/navigation/PathNavigation; +MD: net/minecraft/world/entity/Mob/m_21574_ ()Lnet/minecraft/world/entity/ai/sensing/Sensing; net/minecraft/world/entity/Mob/getSensing ()Lnet/minecraft/world/entity/ai/sensing/Sensing; +MD: net/minecraft/world/entity/Mob/m_217051_ (Lnet/minecraft/util/RandomSource;FLnet/minecraft/world/entity/EquipmentSlot;)V net/minecraft/world/entity/Mob/enchantSpawnedArmor (Lnet/minecraft/util/RandomSource;FLnet/minecraft/world/entity/EquipmentSlot;)V +MD: net/minecraft/world/entity/Mob/m_217057_ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/world/entity/MobSpawnType;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)Z net/minecraft/world/entity/Mob/checkMobSpawnRules (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/world/entity/MobSpawnType;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)Z +MD: net/minecraft/world/entity/Mob/m_217066_ (Lnet/minecraft/world/entity/LivingEntity;)Z net/minecraft/world/entity/Mob/isWithinMeleeAttackRange (Lnet/minecraft/world/entity/LivingEntity;)Z +MD: net/minecraft/world/entity/Mob/m_255207_ (Lnet/minecraft/world/item/ItemStack;)Lnet/minecraft/world/item/ItemStack; net/minecraft/world/entity/Mob/equipItemIfPossible (Lnet/minecraft/world/item/ItemStack;)Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/entity/Mob/m_262356_ (Lnet/minecraft/world/entity/ai/goal/Goal;)Z net/minecraft/world/entity/Mob/lambda$removeFreeWill$3 (Lnet/minecraft/world/entity/ai/goal/Goal;)Z +MD: net/minecraft/world/entity/Mob/m_262441_ (Ljava/util/function/Predicate;)V net/minecraft/world/entity/Mob/removeAllGoals (Ljava/util/function/Predicate;)V +MD: net/minecraft/world/entity/Mob/m_262793_ (Lnet/minecraft/world/entity/LivingEntity;)D net/minecraft/world/entity/Mob/getPerceivedTargetDistanceSquareForMeleeAttack (Lnet/minecraft/world/entity/LivingEntity;)D +MD: net/minecraft/world/entity/Mob/m_278552_ (Lnet/minecraft/world/item/ItemStack;)V net/minecraft/world/entity/Mob/lambda$removeAfterChangingDimensions$4 (Lnet/minecraft/world/item/ItemStack;)V +MD: net/minecraft/world/entity/Mob/m_284177_ ()V net/minecraft/world/entity/Mob/onPathfindingStart ()V +MD: net/minecraft/world/entity/Mob/m_284461_ ()V net/minecraft/world/entity/Mob/onPathfindingDone ()V +MD: net/minecraft/world/entity/Mob/m_287233_ ()J net/minecraft/world/entity/Mob/getLootTableSeed ()J +MD: net/minecraft/world/entity/Mob/m_5448_ ()Lnet/minecraft/world/entity/LivingEntity; net/minecraft/world/entity/Mob/getTarget ()Lnet/minecraft/world/entity/LivingEntity; +MD: net/minecraft/world/entity/Mob/m_5502_ (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/entity/Mob;)V net/minecraft/world/entity/Mob/onOffspringSpawnedFromEgg (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/entity/Mob;)V +MD: net/minecraft/world/entity/Mob/m_5545_ (Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/world/entity/MobSpawnType;)Z net/minecraft/world/entity/Mob/checkSpawnRules (Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/world/entity/MobSpawnType;)Z +MD: net/minecraft/world/entity/Mob/m_5632_ (FF)F net/minecraft/world/entity/Mob/tickHeadTurn (FF)F +MD: net/minecraft/world/entity/Mob/m_5737_ ()Lnet/minecraft/world/entity/HumanoidArm; net/minecraft/world/entity/Mob/getMainArm ()Lnet/minecraft/world/entity/HumanoidArm; +MD: net/minecraft/world/entity/Mob/m_5743_ ()Lnet/minecraft/resources/ResourceLocation; net/minecraft/world/entity/Mob/getLootTable ()Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/world/entity/Mob/m_5792_ ()I net/minecraft/world/entity/Mob/getMaxSpawnClusterSize ()I +MD: net/minecraft/world/entity/Mob/m_5886_ (Lnet/minecraft/world/item/ProjectileWeaponItem;)Z net/minecraft/world/entity/Mob/canFireProjectileWeapon (Lnet/minecraft/world/item/ProjectileWeaponItem;)Z +MD: net/minecraft/world/entity/Mob/m_5912_ ()Z net/minecraft/world/entity/Mob/isAggressive ()Z +MD: net/minecraft/world/entity/Mob/m_6037_ (Lnet/minecraft/world/level/Level;)Lnet/minecraft/world/entity/ai/navigation/PathNavigation; net/minecraft/world/entity/Mob/createNavigation (Lnet/minecraft/world/level/Level;)Lnet/minecraft/world/entity/ai/navigation/PathNavigation; +MD: net/minecraft/world/entity/Mob/m_6043_ ()V net/minecraft/world/entity/Mob/checkDespawn ()V +MD: net/minecraft/world/entity/Mob/m_6056_ ()I net/minecraft/world/entity/Mob/getMaxFallDistance ()I +MD: net/minecraft/world/entity/Mob/m_6071_ (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;)Lnet/minecraft/world/InteractionResult; net/minecraft/world/entity/Mob/mobInteract (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;)Lnet/minecraft/world/InteractionResult; +MD: net/minecraft/world/entity/Mob/m_6075_ ()V net/minecraft/world/entity/Mob/baseTick ()V +MD: net/minecraft/world/entity/Mob/m_6089_ ()V net/minecraft/world/entity/Mob/removeAfterChangingDimensions ()V +MD: net/minecraft/world/entity/Mob/m_6096_ (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;)Lnet/minecraft/world/InteractionResult; net/minecraft/world/entity/Mob/interact (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;)Lnet/minecraft/world/InteractionResult; +MD: net/minecraft/world/entity/Mob/m_6119_ ()V net/minecraft/world/entity/Mob/tickLeash ()V +MD: net/minecraft/world/entity/Mob/m_6140_ ()V net/minecraft/world/entity/Mob/serverAiStep ()V +MD: net/minecraft/world/entity/Mob/m_6167_ ()Ljava/lang/Iterable; net/minecraft/world/entity/Mob/getHandSlots ()Ljava/lang/Iterable; +MD: net/minecraft/world/entity/Mob/m_6168_ ()Ljava/lang/Iterable; net/minecraft/world/entity/Mob/getArmorSlots ()Ljava/lang/Iterable; +MD: net/minecraft/world/entity/Mob/m_6518_ (Lnet/minecraft/world/level/ServerLevelAccessor;Lnet/minecraft/world/DifficultyInstance;Lnet/minecraft/world/entity/MobSpawnType;Lnet/minecraft/world/entity/SpawnGroupData;Lnet/minecraft/nbt/CompoundTag;)Lnet/minecraft/world/entity/SpawnGroupData; net/minecraft/world/entity/Mob/finalizeSpawn (Lnet/minecraft/world/level/ServerLevelAccessor;Lnet/minecraft/world/DifficultyInstance;Lnet/minecraft/world/entity/MobSpawnType;Lnet/minecraft/world/entity/SpawnGroupData;Lnet/minecraft/nbt/CompoundTag;)Lnet/minecraft/world/entity/SpawnGroupData; +MD: net/minecraft/world/entity/Mob/m_6549_ (Lnet/minecraft/world/entity/EntityType;)Z net/minecraft/world/entity/Mob/canAttackType (Lnet/minecraft/world/entity/EntityType;)Z +MD: net/minecraft/world/entity/Mob/m_6573_ (Lnet/minecraft/world/entity/player/Player;)Z net/minecraft/world/entity/Mob/canBeLeashed (Lnet/minecraft/world/entity/player/Player;)Z +MD: net/minecraft/world/entity/Mob/m_6677_ (Lnet/minecraft/world/damagesource/DamageSource;)V net/minecraft/world/entity/Mob/playHurtSound (Lnet/minecraft/world/damagesource/DamageSource;)V +MD: net/minecraft/world/entity/Mob/m_6688_ ()Lnet/minecraft/world/entity/LivingEntity; net/minecraft/world/entity/Mob/getControllingPassenger ()Lnet/minecraft/world/entity/LivingEntity; +MD: net/minecraft/world/entity/Mob/m_6710_ (Lnet/minecraft/world/entity/LivingEntity;)V net/minecraft/world/entity/Mob/setTarget (Lnet/minecraft/world/entity/LivingEntity;)V +MD: net/minecraft/world/entity/Mob/m_6785_ (D)Z net/minecraft/world/entity/Mob/removeWhenFarAway (D)Z +MD: net/minecraft/world/entity/Mob/m_6844_ (Lnet/minecraft/world/entity/EquipmentSlot;)Lnet/minecraft/world/item/ItemStack; net/minecraft/world/entity/Mob/getItemBySlot (Lnet/minecraft/world/entity/EquipmentSlot;)Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/entity/Mob/m_6863_ (Z)V net/minecraft/world/entity/Mob/setBaby (Z)V +MD: net/minecraft/world/entity/Mob/m_6914_ (Lnet/minecraft/world/level/LevelReader;)Z net/minecraft/world/entity/Mob/checkSpawnObstruction (Lnet/minecraft/world/level/LevelReader;)Z +MD: net/minecraft/world/entity/Mob/m_7066_ (Lnet/minecraft/world/item/ItemStack;)Z net/minecraft/world/entity/Mob/canTakeItem (Lnet/minecraft/world/item/ItemStack;)Z +MD: net/minecraft/world/entity/Mob/m_7243_ (Lnet/minecraft/world/item/ItemStack;)Z net/minecraft/world/entity/Mob/wantsToPickUp (Lnet/minecraft/world/item/ItemStack;)Z +MD: net/minecraft/world/entity/Mob/m_7252_ (Lnet/minecraft/world/item/ItemStack;)Z net/minecraft/world/entity/Mob/canHoldItem (Lnet/minecraft/world/item/ItemStack;)Z +MD: net/minecraft/world/entity/Mob/m_7296_ (I)Z net/minecraft/world/entity/Mob/isMaxGroupSizeReached (I)Z +MD: net/minecraft/world/entity/Mob/m_7327_ (Lnet/minecraft/world/entity/Entity;)Z net/minecraft/world/entity/Mob/doHurtTarget (Lnet/minecraft/world/entity/Entity;)Z +MD: net/minecraft/world/entity/Mob/m_7378_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/entity/Mob/readAdditionalSaveData (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/entity/Mob/m_7380_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/entity/Mob/addAdditionalSaveData (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/entity/Mob/m_7472_ (Lnet/minecraft/world/damagesource/DamageSource;IZ)V net/minecraft/world/entity/Mob/dropCustomDeathLoot (Lnet/minecraft/world/damagesource/DamageSource;IZ)V +MD: net/minecraft/world/entity/Mob/m_7515_ ()Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/Mob/getAmbientSound ()Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/Mob/m_7560_ ()Lnet/minecraft/world/entity/ai/control/BodyRotationControl; net/minecraft/world/entity/Mob/createBodyControl ()Lnet/minecraft/world/entity/ai/control/BodyRotationControl; +MD: net/minecraft/world/entity/Mob/m_7581_ (Lnet/minecraft/world/entity/item/ItemEntity;)V net/minecraft/world/entity/Mob/pickUpItem (Lnet/minecraft/world/entity/item/ItemEntity;)V +MD: net/minecraft/world/entity/Mob/m_7582_ ()Lnet/minecraft/resources/ResourceLocation; net/minecraft/world/entity/Mob/getDefaultLootTable ()Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/world/entity/Mob/m_7625_ (Lnet/minecraft/world/damagesource/DamageSource;Z)V net/minecraft/world/entity/Mob/dropFromLootTable (Lnet/minecraft/world/damagesource/DamageSource;Z)V +MD: net/minecraft/world/entity/Mob/m_7808_ (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/item/ItemStack;)Z net/minecraft/world/entity/Mob/canReplaceCurrentItem (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/item/ItemStack;)Z +MD: net/minecraft/world/entity/Mob/m_7822_ (B)V net/minecraft/world/entity/Mob/handleEntityEvent (B)V +MD: net/minecraft/world/entity/Mob/m_7910_ (F)V net/minecraft/world/entity/Mob/setSpeed (F)V +MD: net/minecraft/world/entity/Mob/m_7998_ (Lnet/minecraft/world/entity/Entity;Z)Z net/minecraft/world/entity/Mob/startRiding (Lnet/minecraft/world/entity/Entity;Z)Z +MD: net/minecraft/world/entity/Mob/m_8022_ ()V net/minecraft/world/entity/Mob/updateControlFlags ()V +MD: net/minecraft/world/entity/Mob/m_8023_ ()Z net/minecraft/world/entity/Mob/requiresCustomPersistence ()Z +MD: net/minecraft/world/entity/Mob/m_8024_ ()V net/minecraft/world/entity/Mob/customServerAiStep ()V +MD: net/minecraft/world/entity/Mob/m_8025_ ()V net/minecraft/world/entity/Mob/sendDebugPackets ()V +MD: net/minecraft/world/entity/Mob/m_8028_ ()Z net/minecraft/world/entity/Mob/shouldDespawnInPeaceful ()Z +MD: net/minecraft/world/entity/Mob/m_8032_ ()V net/minecraft/world/entity/Mob/playAmbientSound ()V +MD: net/minecraft/world/entity/Mob/m_8035_ ()V net/minecraft/world/entity/Mob/ate ()V +MD: net/minecraft/world/entity/Mob/m_8061_ (Lnet/minecraft/world/entity/EquipmentSlot;Lnet/minecraft/world/item/ItemStack;)V net/minecraft/world/entity/Mob/setItemSlot (Lnet/minecraft/world/entity/EquipmentSlot;Lnet/minecraft/world/item/ItemStack;)V +MD: net/minecraft/world/entity/Mob/m_8085_ ()I net/minecraft/world/entity/Mob/getMaxHeadYRot ()I +MD: net/minecraft/world/entity/Mob/m_8091_ ()Z net/minecraft/world/entity/Mob/shouldPassengersInheritMalus ()Z +MD: net/minecraft/world/entity/Mob/m_8097_ ()V net/minecraft/world/entity/Mob/defineSynchedData ()V +MD: net/minecraft/world/entity/Mob/m_8099_ ()V net/minecraft/world/entity/Mob/registerGoals ()V +MD: net/minecraft/world/entity/Mob/m_8100_ ()I net/minecraft/world/entity/Mob/getAmbientSoundInterval ()I +MD: net/minecraft/world/entity/Mob/m_8107_ ()V net/minecraft/world/entity/Mob/aiStep ()V +MD: net/minecraft/world/entity/Mob/m_8119_ ()V net/minecraft/world/entity/Mob/tick ()V +MD: net/minecraft/world/entity/Mob/m_8132_ ()I net/minecraft/world/entity/Mob/getMaxHeadXRot ()I +MD: net/minecraft/world/entity/Mob$1/ ()V net/minecraft/world/entity/Mob$1/ ()V +MD: net/minecraft/world/entity/MobCategory/ ()V net/minecraft/world/entity/MobCategory/ ()V +MD: net/minecraft/world/entity/MobCategory/ (Ljava/lang/String;ILjava/lang/String;IZZI)V net/minecraft/world/entity/MobCategory/ (Ljava/lang/String;ILjava/lang/String;IZZI)V +MD: net/minecraft/world/entity/MobCategory/m_147275_ ()[Lnet/minecraft/world/entity/MobCategory; net/minecraft/world/entity/MobCategory/$values ()[Lnet/minecraft/world/entity/MobCategory; +MD: net/minecraft/world/entity/MobCategory/m_21607_ ()Ljava/lang/String; net/minecraft/world/entity/MobCategory/getName ()Ljava/lang/String; +MD: net/minecraft/world/entity/MobCategory/m_21608_ ()I net/minecraft/world/entity/MobCategory/getMaxInstancesPerChunk ()I +MD: net/minecraft/world/entity/MobCategory/m_21609_ ()Z net/minecraft/world/entity/MobCategory/isFriendly ()Z +MD: net/minecraft/world/entity/MobCategory/m_21610_ ()Z net/minecraft/world/entity/MobCategory/isPersistent ()Z +MD: net/minecraft/world/entity/MobCategory/m_21611_ ()I net/minecraft/world/entity/MobCategory/getDespawnDistance ()I +MD: net/minecraft/world/entity/MobCategory/m_21612_ ()I net/minecraft/world/entity/MobCategory/getNoDespawnDistance ()I +MD: net/minecraft/world/entity/MobCategory/m_7912_ ()Ljava/lang/String; net/minecraft/world/entity/MobCategory/getSerializedName ()Ljava/lang/String; +MD: net/minecraft/world/entity/MobCategory/valueOf (Ljava/lang/String;)Lnet/minecraft/world/entity/MobCategory; net/minecraft/world/entity/MobCategory/valueOf (Ljava/lang/String;)Lnet/minecraft/world/entity/MobCategory; +MD: net/minecraft/world/entity/MobCategory/values ()[Lnet/minecraft/world/entity/MobCategory; net/minecraft/world/entity/MobCategory/values ()[Lnet/minecraft/world/entity/MobCategory; +MD: net/minecraft/world/entity/MobSpawnType/ ()V net/minecraft/world/entity/MobSpawnType/ ()V +MD: net/minecraft/world/entity/MobSpawnType/ (Ljava/lang/String;I)V net/minecraft/world/entity/MobSpawnType/ (Ljava/lang/String;I)V +MD: net/minecraft/world/entity/MobSpawnType/m_147276_ ()[Lnet/minecraft/world/entity/MobSpawnType; net/minecraft/world/entity/MobSpawnType/$values ()[Lnet/minecraft/world/entity/MobSpawnType; +MD: net/minecraft/world/entity/MobSpawnType/valueOf (Ljava/lang/String;)Lnet/minecraft/world/entity/MobSpawnType; net/minecraft/world/entity/MobSpawnType/valueOf (Ljava/lang/String;)Lnet/minecraft/world/entity/MobSpawnType; +MD: net/minecraft/world/entity/MobSpawnType/values ()[Lnet/minecraft/world/entity/MobSpawnType; net/minecraft/world/entity/MobSpawnType/values ()[Lnet/minecraft/world/entity/MobSpawnType; +MD: net/minecraft/world/entity/MobType/ ()V net/minecraft/world/entity/MobType/ ()V +MD: net/minecraft/world/entity/MobType/ ()V net/minecraft/world/entity/MobType/ ()V +MD: net/minecraft/world/entity/MoverType/ ()V net/minecraft/world/entity/MoverType/ ()V +MD: net/minecraft/world/entity/MoverType/ (Ljava/lang/String;I)V net/minecraft/world/entity/MoverType/ (Ljava/lang/String;I)V +MD: net/minecraft/world/entity/MoverType/m_147277_ ()[Lnet/minecraft/world/entity/MoverType; net/minecraft/world/entity/MoverType/$values ()[Lnet/minecraft/world/entity/MoverType; +MD: net/minecraft/world/entity/MoverType/valueOf (Ljava/lang/String;)Lnet/minecraft/world/entity/MoverType; net/minecraft/world/entity/MoverType/valueOf (Ljava/lang/String;)Lnet/minecraft/world/entity/MoverType; +MD: net/minecraft/world/entity/MoverType/values ()[Lnet/minecraft/world/entity/MoverType; net/minecraft/world/entity/MoverType/values ()[Lnet/minecraft/world/entity/MoverType; +MD: net/minecraft/world/entity/NeutralMob/m_147285_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/entity/NeutralMob/readPersistentAngerSaveData (Lnet/minecraft/world/level/Level;Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/entity/NeutralMob/m_21188_ ()Lnet/minecraft/world/entity/LivingEntity; net/minecraft/world/entity/NeutralMob/getLastHurtByMob ()Lnet/minecraft/world/entity/LivingEntity; +MD: net/minecraft/world/entity/NeutralMob/m_21660_ ()Z net/minecraft/world/entity/NeutralMob/isAngry ()Z +MD: net/minecraft/world/entity/NeutralMob/m_21661_ ()V net/minecraft/world/entity/NeutralMob/forgetCurrentTargetAndRefreshUniversalAnger ()V +MD: net/minecraft/world/entity/NeutralMob/m_21662_ ()V net/minecraft/world/entity/NeutralMob/stopBeingAngry ()V +MD: net/minecraft/world/entity/NeutralMob/m_21666_ (Lnet/minecraft/server/level/ServerLevel;Z)V net/minecraft/world/entity/NeutralMob/updatePersistentAnger (Lnet/minecraft/server/level/ServerLevel;Z)V +MD: net/minecraft/world/entity/NeutralMob/m_21670_ (Lnet/minecraft/world/level/Level;)Z net/minecraft/world/entity/NeutralMob/isAngryAtAllPlayers (Lnet/minecraft/world/level/Level;)Z +MD: net/minecraft/world/entity/NeutralMob/m_21674_ (Lnet/minecraft/world/entity/LivingEntity;)Z net/minecraft/world/entity/NeutralMob/isAngryAt (Lnet/minecraft/world/entity/LivingEntity;)Z +MD: net/minecraft/world/entity/NeutralMob/m_21676_ (Lnet/minecraft/world/entity/player/Player;)V net/minecraft/world/entity/NeutralMob/playerDied (Lnet/minecraft/world/entity/player/Player;)V +MD: net/minecraft/world/entity/NeutralMob/m_21678_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/entity/NeutralMob/addPersistentAngerSaveData (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/entity/NeutralMob/m_5448_ ()Lnet/minecraft/world/entity/LivingEntity; net/minecraft/world/entity/NeutralMob/getTarget ()Lnet/minecraft/world/entity/LivingEntity; +MD: net/minecraft/world/entity/NeutralMob/m_6120_ ()Ljava/util/UUID; net/minecraft/world/entity/NeutralMob/getPersistentAngerTarget ()Ljava/util/UUID; +MD: net/minecraft/world/entity/NeutralMob/m_6598_ (Lnet/minecraft/world/entity/player/Player;)V net/minecraft/world/entity/NeutralMob/setLastHurtByPlayer (Lnet/minecraft/world/entity/player/Player;)V +MD: net/minecraft/world/entity/NeutralMob/m_6703_ (Lnet/minecraft/world/entity/LivingEntity;)V net/minecraft/world/entity/NeutralMob/setLastHurtByMob (Lnet/minecraft/world/entity/LivingEntity;)V +MD: net/minecraft/world/entity/NeutralMob/m_6710_ (Lnet/minecraft/world/entity/LivingEntity;)V net/minecraft/world/entity/NeutralMob/setTarget (Lnet/minecraft/world/entity/LivingEntity;)V +MD: net/minecraft/world/entity/NeutralMob/m_6779_ (Lnet/minecraft/world/entity/LivingEntity;)Z net/minecraft/world/entity/NeutralMob/canAttack (Lnet/minecraft/world/entity/LivingEntity;)Z +MD: net/minecraft/world/entity/NeutralMob/m_6784_ ()I net/minecraft/world/entity/NeutralMob/getRemainingPersistentAngerTime ()I +MD: net/minecraft/world/entity/NeutralMob/m_6825_ ()V net/minecraft/world/entity/NeutralMob/startPersistentAngerTimer ()V +MD: net/minecraft/world/entity/NeutralMob/m_6925_ (Ljava/util/UUID;)V net/minecraft/world/entity/NeutralMob/setPersistentAngerTarget (Ljava/util/UUID;)V +MD: net/minecraft/world/entity/NeutralMob/m_7870_ (I)V net/minecraft/world/entity/NeutralMob/setRemainingPersistentAngerTime (I)V +MD: net/minecraft/world/entity/OwnableEntity/m_21805_ ()Ljava/util/UUID; net/minecraft/world/entity/OwnableEntity/getOwnerUUID ()Ljava/util/UUID; +MD: net/minecraft/world/entity/OwnableEntity/m_269323_ ()Lnet/minecraft/world/entity/LivingEntity; net/minecraft/world/entity/OwnableEntity/getOwner ()Lnet/minecraft/world/entity/LivingEntity; +MD: net/minecraft/world/entity/OwnableEntity/m_9236_ ()Lnet/minecraft/world/level/EntityGetter; net/minecraft/world/entity/OwnableEntity/level ()Lnet/minecraft/world/level/EntityGetter; +MD: net/minecraft/world/entity/PathfinderMob/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V net/minecraft/world/entity/PathfinderMob/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V +MD: net/minecraft/world/entity/PathfinderMob/m_213814_ ()Z net/minecraft/world/entity/PathfinderMob/shouldStayCloseToLeashHolder ()Z +MD: net/minecraft/world/entity/PathfinderMob/m_21691_ ()Z net/minecraft/world/entity/PathfinderMob/isPathFinding ()Z +MD: net/minecraft/world/entity/PathfinderMob/m_21692_ (Lnet/minecraft/core/BlockPos;)F net/minecraft/world/entity/PathfinderMob/getWalkTargetValue (Lnet/minecraft/core/BlockPos;)F +MD: net/minecraft/world/entity/PathfinderMob/m_5545_ (Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/world/entity/MobSpawnType;)Z net/minecraft/world/entity/PathfinderMob/checkSpawnRules (Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/world/entity/MobSpawnType;)Z +MD: net/minecraft/world/entity/PathfinderMob/m_5610_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/LevelReader;)F net/minecraft/world/entity/PathfinderMob/getWalkTargetValue (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/LevelReader;)F +MD: net/minecraft/world/entity/PathfinderMob/m_5823_ ()D net/minecraft/world/entity/PathfinderMob/followLeashSpeed ()D +MD: net/minecraft/world/entity/PathfinderMob/m_6119_ ()V net/minecraft/world/entity/PathfinderMob/tickLeash ()V +MD: net/minecraft/world/entity/PathfinderMob/m_7880_ (F)V net/minecraft/world/entity/PathfinderMob/onLeashDistance (F)V +MD: net/minecraft/world/entity/PlayerRideableJumping/m_245614_ ()I net/minecraft/world/entity/PlayerRideableJumping/getJumpCooldown ()I +MD: net/minecraft/world/entity/PlayerRideableJumping/m_7132_ ()Z net/minecraft/world/entity/PlayerRideableJumping/canJump ()Z +MD: net/minecraft/world/entity/PlayerRideableJumping/m_7199_ (I)V net/minecraft/world/entity/PlayerRideableJumping/handleStartJump (I)V +MD: net/minecraft/world/entity/PlayerRideableJumping/m_7888_ (I)V net/minecraft/world/entity/PlayerRideableJumping/onPlayerJump (I)V +MD: net/minecraft/world/entity/PlayerRideableJumping/m_8012_ ()V net/minecraft/world/entity/PlayerRideableJumping/handleStopJump ()V +MD: net/minecraft/world/entity/Pose/ ()V net/minecraft/world/entity/Pose/ ()V +MD: net/minecraft/world/entity/Pose/ (Ljava/lang/String;I)V net/minecraft/world/entity/Pose/ (Ljava/lang/String;I)V +MD: net/minecraft/world/entity/Pose/m_147289_ ()[Lnet/minecraft/world/entity/Pose; net/minecraft/world/entity/Pose/$values ()[Lnet/minecraft/world/entity/Pose; +MD: net/minecraft/world/entity/Pose/valueOf (Ljava/lang/String;)Lnet/minecraft/world/entity/Pose; net/minecraft/world/entity/Pose/valueOf (Ljava/lang/String;)Lnet/minecraft/world/entity/Pose; +MD: net/minecraft/world/entity/Pose/values ()[Lnet/minecraft/world/entity/Pose; net/minecraft/world/entity/Pose/values ()[Lnet/minecraft/world/entity/Pose; +MD: net/minecraft/world/entity/PowerableMob/m_7090_ ()Z net/minecraft/world/entity/PowerableMob/isPowered ()Z +MD: net/minecraft/world/entity/RelativeMovement/ ()V net/minecraft/world/entity/RelativeMovement/ ()V +MD: net/minecraft/world/entity/RelativeMovement/ (Ljava/lang/String;II)V net/minecraft/world/entity/RelativeMovement/ (Ljava/lang/String;II)V +MD: net/minecraft/world/entity/RelativeMovement/m_264098_ (I)Ljava/util/Set; net/minecraft/world/entity/RelativeMovement/unpack (I)Ljava/util/Set; +MD: net/minecraft/world/entity/RelativeMovement/m_264160_ (Ljava/util/Set;)I net/minecraft/world/entity/RelativeMovement/pack (Ljava/util/Set;)I +MD: net/minecraft/world/entity/RelativeMovement/m_264202_ ()I net/minecraft/world/entity/RelativeMovement/getMask ()I +MD: net/minecraft/world/entity/RelativeMovement/m_264361_ ()[Lnet/minecraft/world/entity/RelativeMovement; net/minecraft/world/entity/RelativeMovement/$values ()[Lnet/minecraft/world/entity/RelativeMovement; +MD: net/minecraft/world/entity/RelativeMovement/m_264508_ (I)Z net/minecraft/world/entity/RelativeMovement/isSet (I)Z +MD: net/minecraft/world/entity/RelativeMovement/valueOf (Ljava/lang/String;)Lnet/minecraft/world/entity/RelativeMovement; net/minecraft/world/entity/RelativeMovement/valueOf (Ljava/lang/String;)Lnet/minecraft/world/entity/RelativeMovement; +MD: net/minecraft/world/entity/RelativeMovement/values ()[Lnet/minecraft/world/entity/RelativeMovement; net/minecraft/world/entity/RelativeMovement/values ()[Lnet/minecraft/world/entity/RelativeMovement; +MD: net/minecraft/world/entity/ReputationEventHandler/m_6814_ (Lnet/minecraft/world/entity/ai/village/ReputationEventType;Lnet/minecraft/world/entity/Entity;)V net/minecraft/world/entity/ReputationEventHandler/onReputationEventFrom (Lnet/minecraft/world/entity/ai/village/ReputationEventType;Lnet/minecraft/world/entity/Entity;)V +MD: net/minecraft/world/entity/RiderShieldingMount/m_262813_ ()D net/minecraft/world/entity/RiderShieldingMount/getRiderShieldingHeight ()D +MD: net/minecraft/world/entity/Saddleable/m_246265_ ()Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/Saddleable/getSaddleSoundEvent ()Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/Saddleable/m_5853_ (Lnet/minecraft/sounds/SoundSource;)V net/minecraft/world/entity/Saddleable/equipSaddle (Lnet/minecraft/sounds/SoundSource;)V +MD: net/minecraft/world/entity/Saddleable/m_6254_ ()Z net/minecraft/world/entity/Saddleable/isSaddled ()Z +MD: net/minecraft/world/entity/Saddleable/m_6741_ ()Z net/minecraft/world/entity/Saddleable/isSaddleable ()Z +MD: net/minecraft/world/entity/Shearable/m_5851_ (Lnet/minecraft/sounds/SoundSource;)V net/minecraft/world/entity/Shearable/shear (Lnet/minecraft/sounds/SoundSource;)V +MD: net/minecraft/world/entity/Shearable/m_6220_ ()Z net/minecraft/world/entity/Shearable/readyForShearing ()Z +MD: net/minecraft/world/entity/SlotAccess/ ()V net/minecraft/world/entity/SlotAccess/ ()V +MD: net/minecraft/world/entity/SlotAccess/m_142104_ (Lnet/minecraft/world/item/ItemStack;)Z net/minecraft/world/entity/SlotAccess/set (Lnet/minecraft/world/item/ItemStack;)Z +MD: net/minecraft/world/entity/SlotAccess/m_142196_ ()Lnet/minecraft/world/item/ItemStack; net/minecraft/world/entity/SlotAccess/get ()Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/entity/SlotAccess/m_147292_ (Lnet/minecraft/world/Container;I)Lnet/minecraft/world/entity/SlotAccess; net/minecraft/world/entity/SlotAccess/forContainer (Lnet/minecraft/world/Container;I)Lnet/minecraft/world/entity/SlotAccess; +MD: net/minecraft/world/entity/SlotAccess/m_147295_ (Lnet/minecraft/world/Container;ILjava/util/function/Predicate;)Lnet/minecraft/world/entity/SlotAccess; net/minecraft/world/entity/SlotAccess/forContainer (Lnet/minecraft/world/Container;ILjava/util/function/Predicate;)Lnet/minecraft/world/entity/SlotAccess; +MD: net/minecraft/world/entity/SlotAccess/m_147299_ (Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/entity/EquipmentSlot;)Lnet/minecraft/world/entity/SlotAccess; net/minecraft/world/entity/SlotAccess/forEquipmentSlot (Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/entity/EquipmentSlot;)Lnet/minecraft/world/entity/SlotAccess; +MD: net/minecraft/world/entity/SlotAccess/m_147302_ (Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/entity/EquipmentSlot;Ljava/util/function/Predicate;)Lnet/minecraft/world/entity/SlotAccess; net/minecraft/world/entity/SlotAccess/forEquipmentSlot (Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/entity/EquipmentSlot;Ljava/util/function/Predicate;)Lnet/minecraft/world/entity/SlotAccess; +MD: net/minecraft/world/entity/SlotAccess/m_147307_ (Lnet/minecraft/world/item/ItemStack;)Z net/minecraft/world/entity/SlotAccess/lambda$forEquipmentSlot$1 (Lnet/minecraft/world/item/ItemStack;)Z +MD: net/minecraft/world/entity/SlotAccess/m_147309_ (Lnet/minecraft/world/item/ItemStack;)Z net/minecraft/world/entity/SlotAccess/lambda$forContainer$0 (Lnet/minecraft/world/item/ItemStack;)Z +MD: net/minecraft/world/entity/SlotAccess$1/ ()V net/minecraft/world/entity/SlotAccess$1/ ()V +MD: net/minecraft/world/entity/SlotAccess$1/m_142104_ (Lnet/minecraft/world/item/ItemStack;)Z net/minecraft/world/entity/SlotAccess$1/set (Lnet/minecraft/world/item/ItemStack;)Z +MD: net/minecraft/world/entity/SlotAccess$1/m_142196_ ()Lnet/minecraft/world/item/ItemStack; net/minecraft/world/entity/SlotAccess$1/get ()Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/entity/SlotAccess$2/ (Lnet/minecraft/world/Container;ILjava/util/function/Predicate;)V net/minecraft/world/entity/SlotAccess$2/ (Lnet/minecraft/world/Container;ILjava/util/function/Predicate;)V +MD: net/minecraft/world/entity/SlotAccess$2/m_142104_ (Lnet/minecraft/world/item/ItemStack;)Z net/minecraft/world/entity/SlotAccess$2/set (Lnet/minecraft/world/item/ItemStack;)Z +MD: net/minecraft/world/entity/SlotAccess$2/m_142196_ ()Lnet/minecraft/world/item/ItemStack; net/minecraft/world/entity/SlotAccess$2/get ()Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/entity/SlotAccess$3/ (Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/entity/EquipmentSlot;Ljava/util/function/Predicate;)V net/minecraft/world/entity/SlotAccess$3/ (Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/entity/EquipmentSlot;Ljava/util/function/Predicate;)V +MD: net/minecraft/world/entity/SlotAccess$3/m_142104_ (Lnet/minecraft/world/item/ItemStack;)Z net/minecraft/world/entity/SlotAccess$3/set (Lnet/minecraft/world/item/ItemStack;)Z +MD: net/minecraft/world/entity/SlotAccess$3/m_142196_ ()Lnet/minecraft/world/item/ItemStack; net/minecraft/world/entity/SlotAccess$3/get ()Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/entity/SpawnPlacements/ ()V net/minecraft/world/entity/SpawnPlacements/ ()V +MD: net/minecraft/world/entity/SpawnPlacements/ ()V net/minecraft/world/entity/SpawnPlacements/ ()V +MD: net/minecraft/world/entity/SpawnPlacements/m_217074_ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/ServerLevelAccessor;Lnet/minecraft/world/entity/MobSpawnType;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)Z net/minecraft/world/entity/SpawnPlacements/checkSpawnRules (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/ServerLevelAccessor;Lnet/minecraft/world/entity/MobSpawnType;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)Z +MD: net/minecraft/world/entity/SpawnPlacements/m_21752_ (Lnet/minecraft/world/entity/EntityType;)Lnet/minecraft/world/entity/SpawnPlacements$Type; net/minecraft/world/entity/SpawnPlacements/getPlacementType (Lnet/minecraft/world/entity/EntityType;)Lnet/minecraft/world/entity/SpawnPlacements$Type; +MD: net/minecraft/world/entity/SpawnPlacements/m_21754_ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/entity/SpawnPlacements$Type;Lnet/minecraft/world/level/levelgen/Heightmap$Types;Lnet/minecraft/world/entity/SpawnPlacements$SpawnPredicate;)V net/minecraft/world/entity/SpawnPlacements/register (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/entity/SpawnPlacements$Type;Lnet/minecraft/world/level/levelgen/Heightmap$Types;Lnet/minecraft/world/entity/SpawnPlacements$SpawnPredicate;)V +MD: net/minecraft/world/entity/SpawnPlacements/m_21765_ (Lnet/minecraft/world/entity/EntityType;)Lnet/minecraft/world/level/levelgen/Heightmap$Types; net/minecraft/world/entity/SpawnPlacements/getHeightmapType (Lnet/minecraft/world/entity/EntityType;)Lnet/minecraft/world/level/levelgen/Heightmap$Types; +MD: net/minecraft/world/entity/SpawnPlacements$Data/ (Lnet/minecraft/world/level/levelgen/Heightmap$Types;Lnet/minecraft/world/entity/SpawnPlacements$Type;Lnet/minecraft/world/entity/SpawnPlacements$SpawnPredicate;)V net/minecraft/world/entity/SpawnPlacements$Data/ (Lnet/minecraft/world/level/levelgen/Heightmap$Types;Lnet/minecraft/world/entity/SpawnPlacements$Type;Lnet/minecraft/world/entity/SpawnPlacements$SpawnPredicate;)V +MD: net/minecraft/world/entity/SpawnPlacements$SpawnPredicate/m_217080_ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/ServerLevelAccessor;Lnet/minecraft/world/entity/MobSpawnType;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)Z net/minecraft/world/entity/SpawnPlacements$SpawnPredicate/test (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/ServerLevelAccessor;Lnet/minecraft/world/entity/MobSpawnType;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)Z +MD: net/minecraft/world/entity/SpawnPlacements$Type/ ()V net/minecraft/world/entity/SpawnPlacements$Type/ ()V +MD: net/minecraft/world/entity/SpawnPlacements$Type/ (Ljava/lang/String;I)V net/minecraft/world/entity/SpawnPlacements$Type/ (Ljava/lang/String;I)V +MD: net/minecraft/world/entity/SpawnPlacements$Type/m_147336_ ()[Lnet/minecraft/world/entity/SpawnPlacements$Type; net/minecraft/world/entity/SpawnPlacements$Type/$values ()[Lnet/minecraft/world/entity/SpawnPlacements$Type; +MD: net/minecraft/world/entity/SpawnPlacements$Type/valueOf (Ljava/lang/String;)Lnet/minecraft/world/entity/SpawnPlacements$Type; net/minecraft/world/entity/SpawnPlacements$Type/valueOf (Ljava/lang/String;)Lnet/minecraft/world/entity/SpawnPlacements$Type; +MD: net/minecraft/world/entity/SpawnPlacements$Type/values ()[Lnet/minecraft/world/entity/SpawnPlacements$Type; net/minecraft/world/entity/SpawnPlacements$Type/values ()[Lnet/minecraft/world/entity/SpawnPlacements$Type; +MD: net/minecraft/world/entity/TamableAnimal/ ()V net/minecraft/world/entity/TamableAnimal/ ()V +MD: net/minecraft/world/entity/TamableAnimal/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V net/minecraft/world/entity/TamableAnimal/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V +MD: net/minecraft/world/entity/TamableAnimal/m_21805_ ()Ljava/util/UUID; net/minecraft/world/entity/TamableAnimal/getOwnerUUID ()Ljava/util/UUID; +MD: net/minecraft/world/entity/TamableAnimal/m_21816_ (Ljava/util/UUID;)V net/minecraft/world/entity/TamableAnimal/setOwnerUUID (Ljava/util/UUID;)V +MD: net/minecraft/world/entity/TamableAnimal/m_21824_ ()Z net/minecraft/world/entity/TamableAnimal/isTame ()Z +MD: net/minecraft/world/entity/TamableAnimal/m_21825_ ()Z net/minecraft/world/entity/TamableAnimal/isInSittingPose ()Z +MD: net/minecraft/world/entity/TamableAnimal/m_21827_ ()Z net/minecraft/world/entity/TamableAnimal/isOrderedToSit ()Z +MD: net/minecraft/world/entity/TamableAnimal/m_21828_ (Lnet/minecraft/world/entity/player/Player;)V net/minecraft/world/entity/TamableAnimal/tame (Lnet/minecraft/world/entity/player/Player;)V +MD: net/minecraft/world/entity/TamableAnimal/m_21830_ (Lnet/minecraft/world/entity/LivingEntity;)Z net/minecraft/world/entity/TamableAnimal/isOwnedBy (Lnet/minecraft/world/entity/LivingEntity;)Z +MD: net/minecraft/world/entity/TamableAnimal/m_21834_ (Z)V net/minecraft/world/entity/TamableAnimal/spawnTamingParticles (Z)V +MD: net/minecraft/world/entity/TamableAnimal/m_21837_ (Z)V net/minecraft/world/entity/TamableAnimal/setInSittingPose (Z)V +MD: net/minecraft/world/entity/TamableAnimal/m_21839_ (Z)V net/minecraft/world/entity/TamableAnimal/setOrderedToSit (Z)V +MD: net/minecraft/world/entity/TamableAnimal/m_5647_ ()Lnet/minecraft/world/scores/Team; net/minecraft/world/entity/TamableAnimal/getTeam ()Lnet/minecraft/world/scores/Team; +MD: net/minecraft/world/entity/TamableAnimal/m_5849_ ()V net/minecraft/world/entity/TamableAnimal/reassessTameGoals ()V +MD: net/minecraft/world/entity/TamableAnimal/m_6573_ (Lnet/minecraft/world/entity/player/Player;)Z net/minecraft/world/entity/TamableAnimal/canBeLeashed (Lnet/minecraft/world/entity/player/Player;)Z +MD: net/minecraft/world/entity/TamableAnimal/m_6667_ (Lnet/minecraft/world/damagesource/DamageSource;)V net/minecraft/world/entity/TamableAnimal/die (Lnet/minecraft/world/damagesource/DamageSource;)V +MD: net/minecraft/world/entity/TamableAnimal/m_6779_ (Lnet/minecraft/world/entity/LivingEntity;)Z net/minecraft/world/entity/TamableAnimal/canAttack (Lnet/minecraft/world/entity/LivingEntity;)Z +MD: net/minecraft/world/entity/TamableAnimal/m_7105_ (Z)V net/minecraft/world/entity/TamableAnimal/setTame (Z)V +MD: net/minecraft/world/entity/TamableAnimal/m_7307_ (Lnet/minecraft/world/entity/Entity;)Z net/minecraft/world/entity/TamableAnimal/isAlliedTo (Lnet/minecraft/world/entity/Entity;)Z +MD: net/minecraft/world/entity/TamableAnimal/m_7378_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/entity/TamableAnimal/readAdditionalSaveData (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/entity/TamableAnimal/m_7380_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/entity/TamableAnimal/addAdditionalSaveData (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/entity/TamableAnimal/m_7757_ (Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/entity/LivingEntity;)Z net/minecraft/world/entity/TamableAnimal/wantsToAttack (Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/entity/LivingEntity;)Z +MD: net/minecraft/world/entity/TamableAnimal/m_7822_ (B)V net/minecraft/world/entity/TamableAnimal/handleEntityEvent (B)V +MD: net/minecraft/world/entity/TamableAnimal/m_8097_ ()V net/minecraft/world/entity/TamableAnimal/defineSynchedData ()V +MD: net/minecraft/world/entity/TamableAnimal/m_9236_ ()Lnet/minecraft/world/level/EntityGetter; net/minecraft/world/entity/TamableAnimal/level ()Lnet/minecraft/world/level/EntityGetter; +MD: net/minecraft/world/entity/Targeting/m_5448_ ()Lnet/minecraft/world/entity/LivingEntity; net/minecraft/world/entity/Targeting/getTarget ()Lnet/minecraft/world/entity/LivingEntity; +MD: net/minecraft/world/entity/TraceableEntity/m_19749_ ()Lnet/minecraft/world/entity/Entity; net/minecraft/world/entity/TraceableEntity/getOwner ()Lnet/minecraft/world/entity/Entity; +MD: net/minecraft/world/entity/VariantHolder/m_28464_ (Ljava/lang/Object;)V net/minecraft/world/entity/VariantHolder/setVariant (Ljava/lang/Object;)V +MD: net/minecraft/world/entity/VariantHolder/m_28554_ ()Ljava/lang/Object; net/minecraft/world/entity/VariantHolder/getVariant ()Ljava/lang/Object; +MD: net/minecraft/world/entity/WalkAnimationState/ ()V net/minecraft/world/entity/WalkAnimationState/ ()V +MD: net/minecraft/world/entity/WalkAnimationState/m_267566_ (FF)V net/minecraft/world/entity/WalkAnimationState/update (FF)V +MD: net/minecraft/world/entity/WalkAnimationState/m_267590_ (F)F net/minecraft/world/entity/WalkAnimationState/position (F)F +MD: net/minecraft/world/entity/WalkAnimationState/m_267711_ (F)F net/minecraft/world/entity/WalkAnimationState/speed (F)F +MD: net/minecraft/world/entity/WalkAnimationState/m_267731_ ()F net/minecraft/world/entity/WalkAnimationState/speed ()F +MD: net/minecraft/world/entity/WalkAnimationState/m_267756_ ()F net/minecraft/world/entity/WalkAnimationState/position ()F +MD: net/minecraft/world/entity/WalkAnimationState/m_267771_ (F)V net/minecraft/world/entity/WalkAnimationState/setSpeed (F)V +MD: net/minecraft/world/entity/WalkAnimationState/m_267780_ ()Z net/minecraft/world/entity/WalkAnimationState/isMoving ()Z +MD: net/minecraft/world/entity/ai/Brain/ ()V net/minecraft/world/entity/ai/Brain/ ()V +MD: net/minecraft/world/entity/ai/Brain/ (Ljava/util/Collection;Ljava/util/Collection;Lcom/google/common/collect/ImmutableList;Ljava/util/function/Supplier;)V net/minecraft/world/entity/ai/Brain/ (Ljava/util/Collection;Ljava/util/Collection;Lcom/google/common/collect/ImmutableList;Ljava/util/function/Supplier;)V +MD: net/minecraft/world/entity/ai/Brain/m_147339_ ()Ljava/util/Map; net/minecraft/world/entity/ai/Brain/getMemories ()Ljava/util/Map; +MD: net/minecraft/world/entity/ai/Brain/m_147340_ ()Ljava/util/Set; net/minecraft/world/entity/ai/Brain/getActiveActivities ()Ljava/util/Set; +MD: net/minecraft/world/entity/ai/Brain/m_147341_ (Lnet/minecraft/world/entity/ai/memory/MemoryModuleType;)J net/minecraft/world/entity/ai/Brain/getTimeUntilExpiry (Lnet/minecraft/world/entity/ai/memory/MemoryModuleType;)J +MD: net/minecraft/world/entity/ai/Brain/m_147343_ ()V net/minecraft/world/entity/ai/Brain/removeAllBehaviors ()V +MD: net/minecraft/world/entity/ai/Brain/m_21859_ (ILcom/google/common/collect/ImmutableList;)Lcom/google/common/collect/ImmutableList; net/minecraft/world/entity/ai/Brain/createPriorityPairs (ILcom/google/common/collect/ImmutableList;)Lcom/google/common/collect/ImmutableList; +MD: net/minecraft/world/entity/ai/Brain/m_21862_ (JJ)V net/minecraft/world/entity/ai/Brain/updateActivityFromSchedule (JJ)V +MD: net/minecraft/world/entity/ai/Brain/m_21865_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;)V net/minecraft/world/entity/ai/Brain/tick (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;)V +MD: net/minecraft/world/entity/ai/Brain/m_21874_ (Lnet/minecraft/world/entity/ai/memory/MemoryModuleType;)Z net/minecraft/world/entity/ai/Brain/hasMemoryValue (Lnet/minecraft/world/entity/ai/memory/MemoryModuleType;)Z +MD: net/minecraft/world/entity/ai/Brain/m_21876_ (Lnet/minecraft/world/entity/ai/memory/MemoryModuleType;Lnet/minecraft/world/entity/ai/memory/MemoryStatus;)Z net/minecraft/world/entity/ai/Brain/checkMemory (Lnet/minecraft/world/entity/ai/memory/MemoryModuleType;Lnet/minecraft/world/entity/ai/memory/MemoryStatus;)Z +MD: net/minecraft/world/entity/ai/Brain/m_21879_ (Lnet/minecraft/world/entity/ai/memory/MemoryModuleType;Ljava/lang/Object;)V net/minecraft/world/entity/ai/Brain/setMemory (Lnet/minecraft/world/entity/ai/memory/MemoryModuleType;Ljava/lang/Object;)V +MD: net/minecraft/world/entity/ai/Brain/m_21882_ (Lnet/minecraft/world/entity/ai/memory/MemoryModuleType;Ljava/lang/Object;J)V net/minecraft/world/entity/ai/Brain/setMemoryWithExpiry (Lnet/minecraft/world/entity/ai/memory/MemoryModuleType;Ljava/lang/Object;J)V +MD: net/minecraft/world/entity/ai/Brain/m_21886_ (Lnet/minecraft/world/entity/ai/memory/MemoryModuleType;Ljava/util/Optional;)V net/minecraft/world/entity/ai/Brain/setMemory (Lnet/minecraft/world/entity/ai/memory/MemoryModuleType;Ljava/util/Optional;)V +MD: net/minecraft/world/entity/ai/Brain/m_21889_ (Lnet/minecraft/world/entity/schedule/Activity;)V net/minecraft/world/entity/ai/Brain/setActiveActivityIfPossible (Lnet/minecraft/world/entity/schedule/Activity;)V +MD: net/minecraft/world/entity/ai/Brain/m_21891_ (Lnet/minecraft/world/entity/schedule/Activity;ILcom/google/common/collect/ImmutableList;)V net/minecraft/world/entity/ai/Brain/addActivity (Lnet/minecraft/world/entity/schedule/Activity;ILcom/google/common/collect/ImmutableList;)V +MD: net/minecraft/world/entity/ai/Brain/m_21895_ (Lnet/minecraft/world/entity/schedule/Activity;ILcom/google/common/collect/ImmutableList;Lnet/minecraft/world/entity/ai/memory/MemoryModuleType;)V net/minecraft/world/entity/ai/Brain/addActivityAndRemoveMemoryWhenStopped (Lnet/minecraft/world/entity/schedule/Activity;ILcom/google/common/collect/ImmutableList;Lnet/minecraft/world/entity/ai/memory/MemoryModuleType;)V +MD: net/minecraft/world/entity/ai/Brain/m_21900_ (Lnet/minecraft/world/entity/schedule/Activity;Lcom/google/common/collect/ImmutableList;)V net/minecraft/world/entity/ai/Brain/addActivity (Lnet/minecraft/world/entity/schedule/Activity;Lcom/google/common/collect/ImmutableList;)V +MD: net/minecraft/world/entity/ai/Brain/m_21903_ (Lnet/minecraft/world/entity/schedule/Activity;Lcom/google/common/collect/ImmutableList;Ljava/util/Set;)V net/minecraft/world/entity/ai/Brain/addActivityWithConditions (Lnet/minecraft/world/entity/schedule/Activity;Lcom/google/common/collect/ImmutableList;Ljava/util/Set;)V +MD: net/minecraft/world/entity/ai/Brain/m_21907_ (Lnet/minecraft/world/entity/schedule/Activity;Lcom/google/common/collect/ImmutableList;Ljava/util/Set;Ljava/util/Set;)V net/minecraft/world/entity/ai/Brain/addActivityAndRemoveMemoriesWhenStopped (Lnet/minecraft/world/entity/schedule/Activity;Lcom/google/common/collect/ImmutableList;Ljava/util/Set;Ljava/util/Set;)V +MD: net/minecraft/world/entity/ai/Brain/m_21912_ (Lnet/minecraft/world/entity/schedule/Schedule;)V net/minecraft/world/entity/ai/Brain/setSchedule (Lnet/minecraft/world/entity/schedule/Schedule;)V +MD: net/minecraft/world/entity/ai/Brain/m_21914_ (Lcom/mojang/serialization/DynamicOps;)Lcom/mojang/serialization/DataResult; net/minecraft/world/entity/ai/Brain/serializeStart (Lcom/mojang/serialization/DynamicOps;)Lcom/mojang/serialization/DataResult; +MD: net/minecraft/world/entity/ai/Brain/m_21916_ (Ljava/lang/Integer;)Ljava/util/Map; net/minecraft/world/entity/ai/Brain/lambda$addActivityAndRemoveMemoriesWhenStopped$3 (Ljava/lang/Integer;)Ljava/util/Map; +MD: net/minecraft/world/entity/ai/Brain/m_21918_ (Ljava/lang/Object;)Z net/minecraft/world/entity/ai/Brain/isEmptyCollection (Ljava/lang/Object;)Z +MD: net/minecraft/world/entity/ai/Brain/m_21920_ (Ljava/lang/Object;Ljava/lang/Object;)Z net/minecraft/world/entity/ai/Brain/lambda$isMemoryValue$2 (Ljava/lang/Object;Ljava/lang/Object;)Z +MD: net/minecraft/world/entity/ai/Brain/m_21923_ (Ljava/util/Collection;Ljava/util/Collection;)Lnet/minecraft/world/entity/ai/Brain$Provider; net/minecraft/world/entity/ai/Brain/provider (Ljava/util/Collection;Ljava/util/Collection;)Lnet/minecraft/world/entity/ai/Brain$Provider; +MD: net/minecraft/world/entity/ai/Brain/m_21926_ (Ljava/util/List;)V net/minecraft/world/entity/ai/Brain/setActiveActivityToFirstValid (Ljava/util/List;)V +MD: net/minecraft/world/entity/ai/Brain/m_21928_ (Ljava/util/Map$Entry;)Lnet/minecraft/world/entity/ai/Brain$MemoryValue; net/minecraft/world/entity/ai/Brain/lambda$memories$0 (Ljava/util/Map$Entry;)Lnet/minecraft/world/entity/ai/Brain$MemoryValue; +MD: net/minecraft/world/entity/ai/Brain/m_21930_ (Ljava/util/Set;)V net/minecraft/world/entity/ai/Brain/setCoreActivities (Ljava/util/Set;)V +MD: net/minecraft/world/entity/ai/Brain/m_21932_ ()Lnet/minecraft/world/entity/schedule/Schedule; net/minecraft/world/entity/ai/Brain/getSchedule ()Lnet/minecraft/world/entity/schedule/Schedule; +MD: net/minecraft/world/entity/ai/Brain/m_21933_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;)V net/minecraft/world/entity/ai/Brain/stopAll (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;)V +MD: net/minecraft/world/entity/ai/Brain/m_21936_ (Lnet/minecraft/world/entity/ai/memory/MemoryModuleType;)V net/minecraft/world/entity/ai/Brain/eraseMemory (Lnet/minecraft/world/entity/ai/memory/MemoryModuleType;)V +MD: net/minecraft/world/entity/ai/Brain/m_21938_ (Lnet/minecraft/world/entity/ai/memory/MemoryModuleType;Ljava/lang/Object;)Z net/minecraft/world/entity/ai/Brain/isMemoryValue (Lnet/minecraft/world/entity/ai/memory/MemoryModuleType;Ljava/lang/Object;)Z +MD: net/minecraft/world/entity/ai/Brain/m_21941_ (Lnet/minecraft/world/entity/ai/memory/MemoryModuleType;Ljava/util/Optional;)V net/minecraft/world/entity/ai/Brain/setMemoryInternal (Lnet/minecraft/world/entity/ai/memory/MemoryModuleType;Ljava/util/Optional;)V +MD: net/minecraft/world/entity/ai/Brain/m_21944_ (Lnet/minecraft/world/entity/schedule/Activity;)V net/minecraft/world/entity/ai/Brain/setDefaultActivity (Lnet/minecraft/world/entity/schedule/Activity;)V +MD: net/minecraft/world/entity/ai/Brain/m_21946_ (Ljava/util/Collection;Ljava/util/Collection;)Lcom/mojang/serialization/Codec; net/minecraft/world/entity/ai/Brain/codec (Ljava/util/Collection;Ljava/util/Collection;)Lcom/mojang/serialization/Codec; +MD: net/minecraft/world/entity/ai/Brain/m_21949_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;)V net/minecraft/world/entity/ai/Brain/tickSensors (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;)V +MD: net/minecraft/world/entity/ai/Brain/m_21952_ (Lnet/minecraft/world/entity/ai/memory/MemoryModuleType;)Ljava/util/Optional; net/minecraft/world/entity/ai/Brain/getMemory (Lnet/minecraft/world/entity/ai/memory/MemoryModuleType;)Ljava/util/Optional; +MD: net/minecraft/world/entity/ai/Brain/m_21954_ (Lnet/minecraft/world/entity/schedule/Activity;)Z net/minecraft/world/entity/ai/Brain/isActive (Lnet/minecraft/world/entity/schedule/Activity;)Z +MD: net/minecraft/world/entity/ai/Brain/m_21956_ ()Ljava/util/List; net/minecraft/world/entity/ai/Brain/getRunningBehaviors ()Ljava/util/List; +MD: net/minecraft/world/entity/ai/Brain/m_21957_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;)V net/minecraft/world/entity/ai/Brain/startEachNonRunningBehavior (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;)V +MD: net/minecraft/world/entity/ai/Brain/m_21960_ (Lnet/minecraft/world/entity/schedule/Activity;)V net/minecraft/world/entity/ai/Brain/setActiveActivity (Lnet/minecraft/world/entity/schedule/Activity;)V +MD: net/minecraft/world/entity/ai/Brain/m_21962_ ()V net/minecraft/world/entity/ai/Brain/useDefaultActivity ()V +MD: net/minecraft/world/entity/ai/Brain/m_21963_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;)V net/minecraft/world/entity/ai/Brain/tickEachRunningBehavior (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;)V +MD: net/minecraft/world/entity/ai/Brain/m_21966_ (Lnet/minecraft/world/entity/schedule/Activity;)V net/minecraft/world/entity/ai/Brain/eraseMemoriesForOtherActivitesThan (Lnet/minecraft/world/entity/schedule/Activity;)V +MD: net/minecraft/world/entity/ai/Brain/m_21968_ ()Ljava/util/Optional; net/minecraft/world/entity/ai/Brain/getActiveNonCoreActivity ()Ljava/util/Optional; +MD: net/minecraft/world/entity/ai/Brain/m_21969_ (Lnet/minecraft/world/entity/schedule/Activity;)Z net/minecraft/world/entity/ai/Brain/activityRequirementsAreMet (Lnet/minecraft/world/entity/schedule/Activity;)Z +MD: net/minecraft/world/entity/ai/Brain/m_21971_ (Lnet/minecraft/world/entity/schedule/Activity;)Ljava/util/Set; net/minecraft/world/entity/ai/Brain/lambda$addActivityAndRemoveMemoriesWhenStopped$4 (Lnet/minecraft/world/entity/schedule/Activity;)Ljava/util/Set; +MD: net/minecraft/world/entity/ai/Brain/m_21973_ ()Lnet/minecraft/world/entity/ai/Brain; net/minecraft/world/entity/ai/Brain/copyWithoutBehaviors ()Lnet/minecraft/world/entity/ai/Brain; +MD: net/minecraft/world/entity/ai/Brain/m_21975_ ()Ljava/util/stream/Stream; net/minecraft/world/entity/ai/Brain/memories ()Ljava/util/stream/Stream; +MD: net/minecraft/world/entity/ai/Brain/m_21976_ ()V net/minecraft/world/entity/ai/Brain/forgetOutdatedMemories ()V +MD: net/minecraft/world/entity/ai/Brain/m_257414_ (Lnet/minecraft/world/entity/ai/memory/MemoryModuleType;)Ljava/util/Optional; net/minecraft/world/entity/ai/Brain/getMemoryInternal (Lnet/minecraft/world/entity/ai/memory/MemoryModuleType;)Ljava/util/Optional; +MD: net/minecraft/world/entity/ai/Brain/m_276078_ (Lnet/minecraft/world/entity/ai/memory/MemoryModuleType;)V net/minecraft/world/entity/ai/Brain/lambda$clearMemories$1 (Lnet/minecraft/world/entity/ai/memory/MemoryModuleType;)V +MD: net/minecraft/world/entity/ai/Brain/m_276084_ ()V net/minecraft/world/entity/ai/Brain/clearMemories ()V +MD: net/minecraft/world/entity/ai/Brain$1/ (Ljava/util/Collection;Ljava/util/Collection;Lorg/apache/commons/lang3/mutable/MutableObject;)V net/minecraft/world/entity/ai/Brain$1/ (Ljava/util/Collection;Ljava/util/Collection;Lorg/apache/commons/lang3/mutable/MutableObject;)V +MD: net/minecraft/world/entity/ai/Brain$1/decode (Lcom/mojang/serialization/DynamicOps;Lcom/mojang/serialization/MapLike;)Lcom/mojang/serialization/DataResult; net/minecraft/world/entity/ai/Brain$1/decode (Lcom/mojang/serialization/DynamicOps;Lcom/mojang/serialization/MapLike;)Lcom/mojang/serialization/DataResult; +MD: net/minecraft/world/entity/ai/Brain$1/encode (Ljava/lang/Object;Lcom/mojang/serialization/DynamicOps;Lcom/mojang/serialization/RecordBuilder;)Lcom/mojang/serialization/RecordBuilder; net/minecraft/world/entity/ai/Brain$1/encode (Ljava/lang/Object;Lcom/mojang/serialization/DynamicOps;Lcom/mojang/serialization/RecordBuilder;)Lcom/mojang/serialization/RecordBuilder; +MD: net/minecraft/world/entity/ai/Brain$1/encode (Lnet/minecraft/world/entity/ai/Brain;Lcom/mojang/serialization/DynamicOps;Lcom/mojang/serialization/RecordBuilder;)Lcom/mojang/serialization/RecordBuilder; net/minecraft/world/entity/ai/Brain$1/encode (Lnet/minecraft/world/entity/ai/Brain;Lcom/mojang/serialization/DynamicOps;Lcom/mojang/serialization/RecordBuilder;)Lcom/mojang/serialization/RecordBuilder; +MD: net/minecraft/world/entity/ai/Brain$1/keys (Lcom/mojang/serialization/DynamicOps;)Ljava/util/stream/Stream; net/minecraft/world/entity/ai/Brain$1/keys (Lcom/mojang/serialization/DynamicOps;)Ljava/util/stream/Stream; +MD: net/minecraft/world/entity/ai/Brain$1/m_147347_ (Lcom/mojang/serialization/DynamicOps;Lcom/mojang/datafixers/util/Pair;Lnet/minecraft/world/entity/ai/memory/MemoryModuleType;)Lcom/mojang/serialization/DataResult; net/minecraft/world/entity/ai/Brain$1/lambda$decode$3 (Lcom/mojang/serialization/DynamicOps;Lcom/mojang/datafixers/util/Pair;Lnet/minecraft/world/entity/ai/memory/MemoryModuleType;)Lcom/mojang/serialization/DataResult; +MD: net/minecraft/world/entity/ai/Brain$1/m_21990_ (Lnet/minecraft/world/entity/ai/memory/MemoryModuleType;Lnet/minecraft/world/entity/ai/memory/ExpirableValue;)Lnet/minecraft/world/entity/ai/Brain$MemoryValue; net/minecraft/world/entity/ai/Brain$1/lambda$captureRead$8 (Lnet/minecraft/world/entity/ai/memory/MemoryModuleType;Lnet/minecraft/world/entity/ai/memory/ExpirableValue;)Lnet/minecraft/world/entity/ai/Brain$MemoryValue; +MD: net/minecraft/world/entity/ai/Brain$1/m_21996_ (Lnet/minecraft/world/entity/ai/memory/MemoryModuleType;Lcom/mojang/serialization/DynamicOps;Ljava/lang/Object;)Lcom/mojang/serialization/DataResult; net/minecraft/world/entity/ai/Brain$1/captureRead (Lnet/minecraft/world/entity/ai/memory/MemoryModuleType;Lcom/mojang/serialization/DynamicOps;Ljava/lang/Object;)Lcom/mojang/serialization/DataResult; +MD: net/minecraft/world/entity/ai/Brain$1/m_22004_ (Lcom/mojang/serialization/DynamicOps;Lcom/mojang/serialization/RecordBuilder;Lnet/minecraft/world/entity/ai/Brain$MemoryValue;)V net/minecraft/world/entity/ai/Brain$1/lambda$encode$9 (Lcom/mojang/serialization/DynamicOps;Lcom/mojang/serialization/RecordBuilder;Lnet/minecraft/world/entity/ai/Brain$MemoryValue;)V +MD: net/minecraft/world/entity/ai/Brain$1/m_22008_ (Lcom/mojang/serialization/DynamicOps;Ljava/lang/Object;Lcom/mojang/serialization/Codec;)Lcom/mojang/serialization/DataResult; net/minecraft/world/entity/ai/Brain$1/lambda$captureRead$7 (Lcom/mojang/serialization/DynamicOps;Ljava/lang/Object;Lcom/mojang/serialization/Codec;)Lcom/mojang/serialization/DataResult; +MD: net/minecraft/world/entity/ai/Brain$1/m_22016_ (Lcom/mojang/serialization/DynamicOps;Lnet/minecraft/resources/ResourceLocation;)Ljava/lang/Object; net/minecraft/world/entity/ai/Brain$1/lambda$keys$2 (Lcom/mojang/serialization/DynamicOps;Lnet/minecraft/resources/ResourceLocation;)Ljava/lang/Object; +MD: net/minecraft/world/entity/ai/Brain$1/m_22019_ (Lnet/minecraft/world/entity/ai/memory/MemoryModuleType;)Ljava/util/stream/Stream; net/minecraft/world/entity/ai/Brain$1/lambda$keys$1 (Lnet/minecraft/world/entity/ai/memory/MemoryModuleType;)Ljava/util/stream/Stream; +MD: net/minecraft/world/entity/ai/Brain$1/m_257154_ (Lcom/mojang/serialization/DynamicOps;Lorg/apache/commons/lang3/mutable/MutableObject;Lcom/mojang/datafixers/util/Pair;)V net/minecraft/world/entity/ai/Brain$1/lambda$decode$4 (Lcom/mojang/serialization/DynamicOps;Lorg/apache/commons/lang3/mutable/MutableObject;Lcom/mojang/datafixers/util/Pair;)V +MD: net/minecraft/world/entity/ai/Brain$1/m_257155_ (Lnet/minecraft/world/entity/ai/memory/MemoryModuleType;Lcom/mojang/serialization/Codec;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/world/entity/ai/Brain$1/lambda$keys$0 (Lnet/minecraft/world/entity/ai/memory/MemoryModuleType;Lcom/mojang/serialization/Codec;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/world/entity/ai/Brain$1/m_274185_ (Lnet/minecraft/world/entity/ai/memory/MemoryModuleType;)Ljava/lang/String; net/minecraft/world/entity/ai/Brain$1/lambda$captureRead$5 (Lnet/minecraft/world/entity/ai/memory/MemoryModuleType;)Ljava/lang/String; +MD: net/minecraft/world/entity/ai/Brain$1/m_274186_ (Lnet/minecraft/world/entity/ai/memory/MemoryModuleType;)Lcom/mojang/serialization/DataResult; net/minecraft/world/entity/ai/Brain$1/lambda$captureRead$6 (Lnet/minecraft/world/entity/ai/memory/MemoryModuleType;)Lcom/mojang/serialization/DataResult; +MD: net/minecraft/world/entity/ai/Brain$MemoryValue/ (Lnet/minecraft/world/entity/ai/memory/MemoryModuleType;Ljava/util/Optional;)V net/minecraft/world/entity/ai/Brain$MemoryValue/ (Lnet/minecraft/world/entity/ai/memory/MemoryModuleType;Ljava/util/Optional;)V +MD: net/minecraft/world/entity/ai/Brain$MemoryValue/m_22042_ (Lnet/minecraft/world/entity/ai/Brain;)V net/minecraft/world/entity/ai/Brain$MemoryValue/setMemoryInternal (Lnet/minecraft/world/entity/ai/Brain;)V +MD: net/minecraft/world/entity/ai/Brain$MemoryValue/m_22047_ (Lcom/mojang/serialization/DynamicOps;Lcom/mojang/serialization/RecordBuilder;)V net/minecraft/world/entity/ai/Brain$MemoryValue/serialize (Lcom/mojang/serialization/DynamicOps;Lcom/mojang/serialization/RecordBuilder;)V +MD: net/minecraft/world/entity/ai/Brain$MemoryValue/m_22050_ (Lcom/mojang/serialization/RecordBuilder;Lcom/mojang/serialization/DynamicOps;Lcom/mojang/serialization/Codec;)V net/minecraft/world/entity/ai/Brain$MemoryValue/lambda$serialize$1 (Lcom/mojang/serialization/RecordBuilder;Lcom/mojang/serialization/DynamicOps;Lcom/mojang/serialization/Codec;)V +MD: net/minecraft/world/entity/ai/Brain$MemoryValue/m_22059_ (Lnet/minecraft/world/entity/ai/memory/MemoryModuleType;Ljava/util/Optional;)Lnet/minecraft/world/entity/ai/Brain$MemoryValue; net/minecraft/world/entity/ai/Brain$MemoryValue/createUnchecked (Lnet/minecraft/world/entity/ai/memory/MemoryModuleType;Ljava/util/Optional;)Lnet/minecraft/world/entity/ai/Brain$MemoryValue; +MD: net/minecraft/world/entity/ai/Brain$MemoryValue/m_257156_ (Lcom/mojang/serialization/RecordBuilder;Lcom/mojang/serialization/DynamicOps;Lcom/mojang/serialization/Codec;Lnet/minecraft/world/entity/ai/memory/ExpirableValue;)V net/minecraft/world/entity/ai/Brain$MemoryValue/lambda$serialize$0 (Lcom/mojang/serialization/RecordBuilder;Lcom/mojang/serialization/DynamicOps;Lcom/mojang/serialization/Codec;Lnet/minecraft/world/entity/ai/memory/ExpirableValue;)V +MD: net/minecraft/world/entity/ai/Brain$Provider/ (Ljava/util/Collection;Ljava/util/Collection;)V net/minecraft/world/entity/ai/Brain$Provider/ (Ljava/util/Collection;Ljava/util/Collection;)V +MD: net/minecraft/world/entity/ai/Brain$Provider/m_147356_ ()Lcom/mojang/serialization/Codec; net/minecraft/world/entity/ai/Brain$Provider/lambda$makeBrain$0 ()Lcom/mojang/serialization/Codec; +MD: net/minecraft/world/entity/ai/Brain$Provider/m_22072_ ()Lnet/minecraft/world/entity/ai/Brain; net/minecraft/world/entity/ai/Brain$Provider/lambda$makeBrain$1 ()Lnet/minecraft/world/entity/ai/Brain; +MD: net/minecraft/world/entity/ai/Brain$Provider/m_22073_ (Lcom/mojang/serialization/Dynamic;)Lnet/minecraft/world/entity/ai/Brain; net/minecraft/world/entity/ai/Brain$Provider/makeBrain (Lcom/mojang/serialization/Dynamic;)Lnet/minecraft/world/entity/ai/Brain; +MD: net/minecraft/world/entity/ai/attributes/Attribute/ (Ljava/lang/String;D)V net/minecraft/world/entity/ai/attributes/Attribute/ (Ljava/lang/String;D)V +MD: net/minecraft/world/entity/ai/attributes/Attribute/m_22082_ ()D net/minecraft/world/entity/ai/attributes/Attribute/getDefaultValue ()D +MD: net/minecraft/world/entity/ai/attributes/Attribute/m_22084_ (Z)Lnet/minecraft/world/entity/ai/attributes/Attribute; net/minecraft/world/entity/ai/attributes/Attribute/setSyncable (Z)Lnet/minecraft/world/entity/ai/attributes/Attribute; +MD: net/minecraft/world/entity/ai/attributes/Attribute/m_22086_ ()Z net/minecraft/world/entity/ai/attributes/Attribute/isClientSyncable ()Z +MD: net/minecraft/world/entity/ai/attributes/Attribute/m_22087_ ()Ljava/lang/String; net/minecraft/world/entity/ai/attributes/Attribute/getDescriptionId ()Ljava/lang/String; +MD: net/minecraft/world/entity/ai/attributes/Attribute/m_6740_ (D)D net/minecraft/world/entity/ai/attributes/Attribute/sanitizeValue (D)D +MD: net/minecraft/world/entity/ai/attributes/AttributeInstance/ (Lnet/minecraft/world/entity/ai/attributes/Attribute;Ljava/util/function/Consumer;)V net/minecraft/world/entity/ai/attributes/AttributeInstance/ (Lnet/minecraft/world/entity/ai/attributes/Attribute;Ljava/util/function/Consumer;)V +MD: net/minecraft/world/entity/ai/attributes/AttributeInstance/m_22099_ ()Lnet/minecraft/world/entity/ai/attributes/Attribute; net/minecraft/world/entity/ai/attributes/AttributeInstance/getAttribute ()Lnet/minecraft/world/entity/ai/attributes/Attribute; +MD: net/minecraft/world/entity/ai/attributes/AttributeInstance/m_22100_ (D)V net/minecraft/world/entity/ai/attributes/AttributeInstance/setBaseValue (D)V +MD: net/minecraft/world/entity/ai/attributes/AttributeInstance/m_22102_ (Lnet/minecraft/world/entity/ai/attributes/AttributeInstance;)V net/minecraft/world/entity/ai/attributes/AttributeInstance/replaceFrom (Lnet/minecraft/world/entity/ai/attributes/AttributeInstance;)V +MD: net/minecraft/world/entity/ai/attributes/AttributeInstance/m_22104_ (Lnet/minecraft/world/entity/ai/attributes/AttributeModifier$Operation;)Ljava/util/Set; net/minecraft/world/entity/ai/attributes/AttributeInstance/getModifiers (Lnet/minecraft/world/entity/ai/attributes/AttributeModifier$Operation;)Ljava/util/Set; +MD: net/minecraft/world/entity/ai/attributes/AttributeInstance/m_22106_ (Lnet/minecraft/world/entity/ai/attributes/AttributeModifier$Operation;Ljava/util/Set;)V net/minecraft/world/entity/ai/attributes/AttributeInstance/lambda$replaceFrom$1 (Lnet/minecraft/world/entity/ai/attributes/AttributeModifier$Operation;Ljava/util/Set;)V +MD: net/minecraft/world/entity/ai/attributes/AttributeInstance/m_22109_ (Lnet/minecraft/world/entity/ai/attributes/AttributeModifier;)Z net/minecraft/world/entity/ai/attributes/AttributeInstance/hasModifier (Lnet/minecraft/world/entity/ai/attributes/AttributeModifier;)Z +MD: net/minecraft/world/entity/ai/attributes/AttributeInstance/m_22111_ (Ljava/util/UUID;)Lnet/minecraft/world/entity/ai/attributes/AttributeModifier; net/minecraft/world/entity/ai/attributes/AttributeInstance/getModifier (Ljava/util/UUID;)Lnet/minecraft/world/entity/ai/attributes/AttributeModifier; +MD: net/minecraft/world/entity/ai/attributes/AttributeInstance/m_22113_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/entity/ai/attributes/AttributeInstance/load (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/entity/ai/attributes/AttributeInstance/m_22115_ ()D net/minecraft/world/entity/ai/attributes/AttributeInstance/getBaseValue ()D +MD: net/minecraft/world/entity/ai/attributes/AttributeInstance/m_22116_ (Lnet/minecraft/world/entity/ai/attributes/AttributeModifier$Operation;)Ljava/util/Collection; net/minecraft/world/entity/ai/attributes/AttributeInstance/getModifiersOrEmpty (Lnet/minecraft/world/entity/ai/attributes/AttributeModifier$Operation;)Ljava/util/Collection; +MD: net/minecraft/world/entity/ai/attributes/AttributeInstance/m_22118_ (Lnet/minecraft/world/entity/ai/attributes/AttributeModifier;)V net/minecraft/world/entity/ai/attributes/AttributeInstance/addTransientModifier (Lnet/minecraft/world/entity/ai/attributes/AttributeModifier;)V +MD: net/minecraft/world/entity/ai/attributes/AttributeInstance/m_22120_ (Ljava/util/UUID;)V net/minecraft/world/entity/ai/attributes/AttributeInstance/removeModifier (Ljava/util/UUID;)V +MD: net/minecraft/world/entity/ai/attributes/AttributeInstance/m_22122_ ()Ljava/util/Set; net/minecraft/world/entity/ai/attributes/AttributeInstance/getModifiers ()Ljava/util/Set; +MD: net/minecraft/world/entity/ai/attributes/AttributeInstance/m_22123_ (Lnet/minecraft/world/entity/ai/attributes/AttributeModifier$Operation;)Ljava/util/Set; net/minecraft/world/entity/ai/attributes/AttributeInstance/lambda$getModifiers$0 (Lnet/minecraft/world/entity/ai/attributes/AttributeModifier$Operation;)Ljava/util/Set; +MD: net/minecraft/world/entity/ai/attributes/AttributeInstance/m_22125_ (Lnet/minecraft/world/entity/ai/attributes/AttributeModifier;)V net/minecraft/world/entity/ai/attributes/AttributeInstance/addPermanentModifier (Lnet/minecraft/world/entity/ai/attributes/AttributeModifier;)V +MD: net/minecraft/world/entity/ai/attributes/AttributeInstance/m_22127_ (Ljava/util/UUID;)Z net/minecraft/world/entity/ai/attributes/AttributeInstance/removePermanentModifier (Ljava/util/UUID;)Z +MD: net/minecraft/world/entity/ai/attributes/AttributeInstance/m_22129_ ()V net/minecraft/world/entity/ai/attributes/AttributeInstance/setDirty ()V +MD: net/minecraft/world/entity/ai/attributes/AttributeInstance/m_22130_ (Lnet/minecraft/world/entity/ai/attributes/AttributeModifier;)V net/minecraft/world/entity/ai/attributes/AttributeInstance/removeModifier (Lnet/minecraft/world/entity/ai/attributes/AttributeModifier;)V +MD: net/minecraft/world/entity/ai/attributes/AttributeInstance/m_22132_ ()V net/minecraft/world/entity/ai/attributes/AttributeInstance/removeModifiers ()V +MD: net/minecraft/world/entity/ai/attributes/AttributeInstance/m_22133_ (Lnet/minecraft/world/entity/ai/attributes/AttributeModifier;)V net/minecraft/world/entity/ai/attributes/AttributeInstance/addModifier (Lnet/minecraft/world/entity/ai/attributes/AttributeModifier;)V +MD: net/minecraft/world/entity/ai/attributes/AttributeInstance/m_22135_ ()D net/minecraft/world/entity/ai/attributes/AttributeInstance/getValue ()D +MD: net/minecraft/world/entity/ai/attributes/AttributeInstance/m_22136_ ()Lnet/minecraft/nbt/CompoundTag; net/minecraft/world/entity/ai/attributes/AttributeInstance/save ()Lnet/minecraft/nbt/CompoundTag; +MD: net/minecraft/world/entity/ai/attributes/AttributeInstance/m_22137_ ()D net/minecraft/world/entity/ai/attributes/AttributeInstance/calculateValue ()D +MD: net/minecraft/world/entity/ai/attributes/AttributeMap/ ()V net/minecraft/world/entity/ai/attributes/AttributeMap/ ()V +MD: net/minecraft/world/entity/ai/attributes/AttributeMap/ (Lnet/minecraft/world/entity/ai/attributes/AttributeSupplier;)V net/minecraft/world/entity/ai/attributes/AttributeMap/ (Lnet/minecraft/world/entity/ai/attributes/AttributeSupplier;)V +MD: net/minecraft/world/entity/ai/attributes/AttributeMap/m_22145_ ()Ljava/util/Set; net/minecraft/world/entity/ai/attributes/AttributeMap/getDirtyAttributes ()Ljava/util/Set; +MD: net/minecraft/world/entity/ai/attributes/AttributeMap/m_22146_ (Lnet/minecraft/world/entity/ai/attributes/Attribute;)Lnet/minecraft/world/entity/ai/attributes/AttributeInstance; net/minecraft/world/entity/ai/attributes/AttributeMap/getInstance (Lnet/minecraft/world/entity/ai/attributes/Attribute;)Lnet/minecraft/world/entity/ai/attributes/AttributeInstance; +MD: net/minecraft/world/entity/ai/attributes/AttributeMap/m_22148_ (Lnet/minecraft/world/entity/ai/attributes/Attribute;Lnet/minecraft/world/entity/ai/attributes/AttributeModifier;)V net/minecraft/world/entity/ai/attributes/AttributeMap/lambda$addTransientAttributeModifiers$3 (Lnet/minecraft/world/entity/ai/attributes/Attribute;Lnet/minecraft/world/entity/ai/attributes/AttributeModifier;)V +MD: net/minecraft/world/entity/ai/attributes/AttributeMap/m_22151_ (Lnet/minecraft/world/entity/ai/attributes/Attribute;Ljava/util/Collection;)V net/minecraft/world/entity/ai/attributes/AttributeMap/lambda$removeAttributeModifiers$2 (Lnet/minecraft/world/entity/ai/attributes/Attribute;Ljava/util/Collection;)V +MD: net/minecraft/world/entity/ai/attributes/AttributeMap/m_22154_ (Lnet/minecraft/world/entity/ai/attributes/Attribute;Ljava/util/UUID;)Z net/minecraft/world/entity/ai/attributes/AttributeMap/hasModifier (Lnet/minecraft/world/entity/ai/attributes/Attribute;Ljava/util/UUID;)Z +MD: net/minecraft/world/entity/ai/attributes/AttributeMap/m_22157_ (Lnet/minecraft/world/entity/ai/attributes/AttributeInstance;)V net/minecraft/world/entity/ai/attributes/AttributeMap/onAttributeModified (Lnet/minecraft/world/entity/ai/attributes/AttributeInstance;)V +MD: net/minecraft/world/entity/ai/attributes/AttributeMap/m_22159_ (Lnet/minecraft/world/entity/ai/attributes/AttributeMap;)V net/minecraft/world/entity/ai/attributes/AttributeMap/assignValues (Lnet/minecraft/world/entity/ai/attributes/AttributeMap;)V +MD: net/minecraft/world/entity/ai/attributes/AttributeMap/m_22161_ (Lcom/google/common/collect/Multimap;)V net/minecraft/world/entity/ai/attributes/AttributeMap/removeAttributeModifiers (Lcom/google/common/collect/Multimap;)V +MD: net/minecraft/world/entity/ai/attributes/AttributeMap/m_22163_ (Ljava/lang/String;)V net/minecraft/world/entity/ai/attributes/AttributeMap/lambda$load$6 (Ljava/lang/String;)V +MD: net/minecraft/world/entity/ai/attributes/AttributeMap/m_22165_ (Lnet/minecraft/nbt/CompoundTag;Lnet/minecraft/world/entity/ai/attributes/Attribute;)V net/minecraft/world/entity/ai/attributes/AttributeMap/lambda$load$5 (Lnet/minecraft/nbt/CompoundTag;Lnet/minecraft/world/entity/ai/attributes/Attribute;)V +MD: net/minecraft/world/entity/ai/attributes/AttributeMap/m_22168_ (Lnet/minecraft/nbt/ListTag;)V net/minecraft/world/entity/ai/attributes/AttributeMap/load (Lnet/minecraft/nbt/ListTag;)V +MD: net/minecraft/world/entity/ai/attributes/AttributeMap/m_22170_ ()Ljava/util/Collection; net/minecraft/world/entity/ai/attributes/AttributeMap/getSyncableAttributes ()Ljava/util/Collection; +MD: net/minecraft/world/entity/ai/attributes/AttributeMap/m_22171_ (Lnet/minecraft/world/entity/ai/attributes/Attribute;)Z net/minecraft/world/entity/ai/attributes/AttributeMap/hasAttribute (Lnet/minecraft/world/entity/ai/attributes/Attribute;)Z +MD: net/minecraft/world/entity/ai/attributes/AttributeMap/m_22173_ (Lnet/minecraft/world/entity/ai/attributes/Attribute;Ljava/util/UUID;)D net/minecraft/world/entity/ai/attributes/AttributeMap/getModifierValue (Lnet/minecraft/world/entity/ai/attributes/Attribute;Ljava/util/UUID;)D +MD: net/minecraft/world/entity/ai/attributes/AttributeMap/m_22176_ (Lnet/minecraft/world/entity/ai/attributes/AttributeInstance;)V net/minecraft/world/entity/ai/attributes/AttributeMap/lambda$assignValues$4 (Lnet/minecraft/world/entity/ai/attributes/AttributeInstance;)V +MD: net/minecraft/world/entity/ai/attributes/AttributeMap/m_22178_ (Lcom/google/common/collect/Multimap;)V net/minecraft/world/entity/ai/attributes/AttributeMap/addTransientAttributeModifiers (Lcom/google/common/collect/Multimap;)V +MD: net/minecraft/world/entity/ai/attributes/AttributeMap/m_22180_ ()Lnet/minecraft/nbt/ListTag; net/minecraft/world/entity/ai/attributes/AttributeMap/save ()Lnet/minecraft/nbt/ListTag; +MD: net/minecraft/world/entity/ai/attributes/AttributeMap/m_22181_ (Lnet/minecraft/world/entity/ai/attributes/Attribute;)D net/minecraft/world/entity/ai/attributes/AttributeMap/getValue (Lnet/minecraft/world/entity/ai/attributes/Attribute;)D +MD: net/minecraft/world/entity/ai/attributes/AttributeMap/m_22183_ (Lnet/minecraft/world/entity/ai/attributes/AttributeInstance;)Z net/minecraft/world/entity/ai/attributes/AttributeMap/lambda$getSyncableAttributes$0 (Lnet/minecraft/world/entity/ai/attributes/AttributeInstance;)Z +MD: net/minecraft/world/entity/ai/attributes/AttributeMap/m_22185_ (Lnet/minecraft/world/entity/ai/attributes/Attribute;)D net/minecraft/world/entity/ai/attributes/AttributeMap/getBaseValue (Lnet/minecraft/world/entity/ai/attributes/Attribute;)D +MD: net/minecraft/world/entity/ai/attributes/AttributeMap/m_22187_ (Lnet/minecraft/world/entity/ai/attributes/Attribute;)Lnet/minecraft/world/entity/ai/attributes/AttributeInstance; net/minecraft/world/entity/ai/attributes/AttributeMap/lambda$getInstance$1 (Lnet/minecraft/world/entity/ai/attributes/Attribute;)Lnet/minecraft/world/entity/ai/attributes/AttributeInstance; +MD: net/minecraft/world/entity/ai/attributes/AttributeMap/m_245160_ (Lnet/minecraft/core/Holder;Ljava/util/UUID;)Z net/minecraft/world/entity/ai/attributes/AttributeMap/hasModifier (Lnet/minecraft/core/Holder;Ljava/util/UUID;)Z +MD: net/minecraft/world/entity/ai/attributes/AttributeMap/m_246117_ (Lnet/minecraft/core/Holder;Ljava/util/UUID;)D net/minecraft/world/entity/ai/attributes/AttributeMap/getModifierValue (Lnet/minecraft/core/Holder;Ljava/util/UUID;)D +MD: net/minecraft/world/entity/ai/attributes/AttributeMap/m_246600_ (Lnet/minecraft/core/Holder;)Lnet/minecraft/world/entity/ai/attributes/AttributeInstance; net/minecraft/world/entity/ai/attributes/AttributeMap/getInstance (Lnet/minecraft/core/Holder;)Lnet/minecraft/world/entity/ai/attributes/AttributeInstance; +MD: net/minecraft/world/entity/ai/attributes/AttributeMap/m_247503_ (Lnet/minecraft/core/Holder;)Z net/minecraft/world/entity/ai/attributes/AttributeMap/hasAttribute (Lnet/minecraft/core/Holder;)Z +MD: net/minecraft/world/entity/ai/attributes/AttributeModifier/ ()V net/minecraft/world/entity/ai/attributes/AttributeModifier/ ()V +MD: net/minecraft/world/entity/ai/attributes/AttributeModifier/ (Ljava/util/UUID;Ljava/util/function/Supplier;DLnet/minecraft/world/entity/ai/attributes/AttributeModifier$Operation;)V net/minecraft/world/entity/ai/attributes/AttributeModifier/ (Ljava/util/UUID;Ljava/util/function/Supplier;DLnet/minecraft/world/entity/ai/attributes/AttributeModifier$Operation;)V +MD: net/minecraft/world/entity/ai/attributes/AttributeModifier/ (Ljava/lang/String;DLnet/minecraft/world/entity/ai/attributes/AttributeModifier$Operation;)V net/minecraft/world/entity/ai/attributes/AttributeModifier/ (Ljava/lang/String;DLnet/minecraft/world/entity/ai/attributes/AttributeModifier$Operation;)V +MD: net/minecraft/world/entity/ai/attributes/AttributeModifier/ (Ljava/util/UUID;Ljava/lang/String;DLnet/minecraft/world/entity/ai/attributes/AttributeModifier$Operation;)V net/minecraft/world/entity/ai/attributes/AttributeModifier/ (Ljava/util/UUID;Ljava/lang/String;DLnet/minecraft/world/entity/ai/attributes/AttributeModifier$Operation;)V +MD: net/minecraft/world/entity/ai/attributes/AttributeModifier/equals (Ljava/lang/Object;)Z net/minecraft/world/entity/ai/attributes/AttributeModifier/equals (Ljava/lang/Object;)Z +MD: net/minecraft/world/entity/ai/attributes/AttributeModifier/hashCode ()I net/minecraft/world/entity/ai/attributes/AttributeModifier/hashCode ()I +MD: net/minecraft/world/entity/ai/attributes/AttributeModifier/m_22209_ ()Ljava/util/UUID; net/minecraft/world/entity/ai/attributes/AttributeModifier/getId ()Ljava/util/UUID; +MD: net/minecraft/world/entity/ai/attributes/AttributeModifier/m_22210_ (Ljava/lang/String;)Ljava/lang/String; net/minecraft/world/entity/ai/attributes/AttributeModifier/lambda$new$1 (Ljava/lang/String;)Ljava/lang/String; +MD: net/minecraft/world/entity/ai/attributes/AttributeModifier/m_22212_ (Lnet/minecraft/nbt/CompoundTag;)Lnet/minecraft/world/entity/ai/attributes/AttributeModifier; net/minecraft/world/entity/ai/attributes/AttributeModifier/load (Lnet/minecraft/nbt/CompoundTag;)Lnet/minecraft/world/entity/ai/attributes/AttributeModifier; +MD: net/minecraft/world/entity/ai/attributes/AttributeModifier/m_22214_ ()Ljava/lang/String; net/minecraft/world/entity/ai/attributes/AttributeModifier/getName ()Ljava/lang/String; +MD: net/minecraft/world/entity/ai/attributes/AttributeModifier/m_22215_ (Ljava/lang/String;)Ljava/lang/String; net/minecraft/world/entity/ai/attributes/AttributeModifier/lambda$new$0 (Ljava/lang/String;)Ljava/lang/String; +MD: net/minecraft/world/entity/ai/attributes/AttributeModifier/m_22217_ ()Lnet/minecraft/world/entity/ai/attributes/AttributeModifier$Operation; net/minecraft/world/entity/ai/attributes/AttributeModifier/getOperation ()Lnet/minecraft/world/entity/ai/attributes/AttributeModifier$Operation; +MD: net/minecraft/world/entity/ai/attributes/AttributeModifier/m_22218_ ()D net/minecraft/world/entity/ai/attributes/AttributeModifier/getAmount ()D +MD: net/minecraft/world/entity/ai/attributes/AttributeModifier/m_22219_ ()Lnet/minecraft/nbt/CompoundTag; net/minecraft/world/entity/ai/attributes/AttributeModifier/save ()Lnet/minecraft/nbt/CompoundTag; +MD: net/minecraft/world/entity/ai/attributes/AttributeModifier/toString ()Ljava/lang/String; net/minecraft/world/entity/ai/attributes/AttributeModifier/toString ()Ljava/lang/String; +MD: net/minecraft/world/entity/ai/attributes/AttributeModifier$Operation/ ()V net/minecraft/world/entity/ai/attributes/AttributeModifier$Operation/ ()V +MD: net/minecraft/world/entity/ai/attributes/AttributeModifier$Operation/ (Ljava/lang/String;II)V net/minecraft/world/entity/ai/attributes/AttributeModifier$Operation/ (Ljava/lang/String;II)V +MD: net/minecraft/world/entity/ai/attributes/AttributeModifier$Operation/m_147358_ ()[Lnet/minecraft/world/entity/ai/attributes/AttributeModifier$Operation; net/minecraft/world/entity/ai/attributes/AttributeModifier$Operation/$values ()[Lnet/minecraft/world/entity/ai/attributes/AttributeModifier$Operation; +MD: net/minecraft/world/entity/ai/attributes/AttributeModifier$Operation/m_22235_ ()I net/minecraft/world/entity/ai/attributes/AttributeModifier$Operation/toValue ()I +MD: net/minecraft/world/entity/ai/attributes/AttributeModifier$Operation/m_22236_ (I)Lnet/minecraft/world/entity/ai/attributes/AttributeModifier$Operation; net/minecraft/world/entity/ai/attributes/AttributeModifier$Operation/fromValue (I)Lnet/minecraft/world/entity/ai/attributes/AttributeModifier$Operation; +MD: net/minecraft/world/entity/ai/attributes/AttributeModifier$Operation/valueOf (Ljava/lang/String;)Lnet/minecraft/world/entity/ai/attributes/AttributeModifier$Operation; net/minecraft/world/entity/ai/attributes/AttributeModifier$Operation/valueOf (Ljava/lang/String;)Lnet/minecraft/world/entity/ai/attributes/AttributeModifier$Operation; +MD: net/minecraft/world/entity/ai/attributes/AttributeModifier$Operation/values ()[Lnet/minecraft/world/entity/ai/attributes/AttributeModifier$Operation; net/minecraft/world/entity/ai/attributes/AttributeModifier$Operation/values ()[Lnet/minecraft/world/entity/ai/attributes/AttributeModifier$Operation; +MD: net/minecraft/world/entity/ai/attributes/AttributeSupplier/ (Ljava/util/Map;)V net/minecraft/world/entity/ai/attributes/AttributeSupplier/ (Ljava/util/Map;)V +MD: net/minecraft/world/entity/ai/attributes/AttributeSupplier/m_22244_ ()Lnet/minecraft/world/entity/ai/attributes/AttributeSupplier$Builder; net/minecraft/world/entity/ai/attributes/AttributeSupplier/builder ()Lnet/minecraft/world/entity/ai/attributes/AttributeSupplier$Builder; +MD: net/minecraft/world/entity/ai/attributes/AttributeSupplier/m_22245_ (Lnet/minecraft/world/entity/ai/attributes/Attribute;)D net/minecraft/world/entity/ai/attributes/AttributeSupplier/getValue (Lnet/minecraft/world/entity/ai/attributes/Attribute;)D +MD: net/minecraft/world/entity/ai/attributes/AttributeSupplier/m_22247_ (Lnet/minecraft/world/entity/ai/attributes/Attribute;Ljava/util/UUID;)D net/minecraft/world/entity/ai/attributes/AttributeSupplier/getModifierValue (Lnet/minecraft/world/entity/ai/attributes/Attribute;Ljava/util/UUID;)D +MD: net/minecraft/world/entity/ai/attributes/AttributeSupplier/m_22250_ (Ljava/util/function/Consumer;Lnet/minecraft/world/entity/ai/attributes/Attribute;)Lnet/minecraft/world/entity/ai/attributes/AttributeInstance; net/minecraft/world/entity/ai/attributes/AttributeSupplier/createInstance (Ljava/util/function/Consumer;Lnet/minecraft/world/entity/ai/attributes/Attribute;)Lnet/minecraft/world/entity/ai/attributes/AttributeInstance; +MD: net/minecraft/world/entity/ai/attributes/AttributeSupplier/m_22253_ (Lnet/minecraft/world/entity/ai/attributes/Attribute;)D net/minecraft/world/entity/ai/attributes/AttributeSupplier/getBaseValue (Lnet/minecraft/world/entity/ai/attributes/Attribute;)D +MD: net/minecraft/world/entity/ai/attributes/AttributeSupplier/m_22255_ (Lnet/minecraft/world/entity/ai/attributes/Attribute;Ljava/util/UUID;)Z net/minecraft/world/entity/ai/attributes/AttributeSupplier/hasModifier (Lnet/minecraft/world/entity/ai/attributes/Attribute;Ljava/util/UUID;)Z +MD: net/minecraft/world/entity/ai/attributes/AttributeSupplier/m_22258_ (Lnet/minecraft/world/entity/ai/attributes/Attribute;)Z net/minecraft/world/entity/ai/attributes/AttributeSupplier/hasAttribute (Lnet/minecraft/world/entity/ai/attributes/Attribute;)Z +MD: net/minecraft/world/entity/ai/attributes/AttributeSupplier/m_22260_ (Lnet/minecraft/world/entity/ai/attributes/Attribute;)Lnet/minecraft/world/entity/ai/attributes/AttributeInstance; net/minecraft/world/entity/ai/attributes/AttributeSupplier/getAttributeInstance (Lnet/minecraft/world/entity/ai/attributes/Attribute;)Lnet/minecraft/world/entity/ai/attributes/AttributeInstance; +MD: net/minecraft/world/entity/ai/attributes/AttributeSupplier$Builder/ ()V net/minecraft/world/entity/ai/attributes/AttributeSupplier$Builder/ ()V +MD: net/minecraft/world/entity/ai/attributes/AttributeSupplier$Builder/m_22265_ ()Lnet/minecraft/world/entity/ai/attributes/AttributeSupplier; net/minecraft/world/entity/ai/attributes/AttributeSupplier$Builder/build ()Lnet/minecraft/world/entity/ai/attributes/AttributeSupplier; +MD: net/minecraft/world/entity/ai/attributes/AttributeSupplier$Builder/m_22266_ (Lnet/minecraft/world/entity/ai/attributes/Attribute;)Lnet/minecraft/world/entity/ai/attributes/AttributeSupplier$Builder; net/minecraft/world/entity/ai/attributes/AttributeSupplier$Builder/add (Lnet/minecraft/world/entity/ai/attributes/Attribute;)Lnet/minecraft/world/entity/ai/attributes/AttributeSupplier$Builder; +MD: net/minecraft/world/entity/ai/attributes/AttributeSupplier$Builder/m_22268_ (Lnet/minecraft/world/entity/ai/attributes/Attribute;D)Lnet/minecraft/world/entity/ai/attributes/AttributeSupplier$Builder; net/minecraft/world/entity/ai/attributes/AttributeSupplier$Builder/add (Lnet/minecraft/world/entity/ai/attributes/Attribute;D)Lnet/minecraft/world/entity/ai/attributes/AttributeSupplier$Builder; +MD: net/minecraft/world/entity/ai/attributes/AttributeSupplier$Builder/m_22274_ (Lnet/minecraft/world/entity/ai/attributes/Attribute;)Lnet/minecraft/world/entity/ai/attributes/AttributeInstance; net/minecraft/world/entity/ai/attributes/AttributeSupplier$Builder/create (Lnet/minecraft/world/entity/ai/attributes/Attribute;)Lnet/minecraft/world/entity/ai/attributes/AttributeInstance; +MD: net/minecraft/world/entity/ai/attributes/AttributeSupplier$Builder/m_257157_ (Lnet/minecraft/world/entity/ai/attributes/Attribute;Lnet/minecraft/world/entity/ai/attributes/AttributeInstance;)V net/minecraft/world/entity/ai/attributes/AttributeSupplier$Builder/lambda$create$0 (Lnet/minecraft/world/entity/ai/attributes/Attribute;Lnet/minecraft/world/entity/ai/attributes/AttributeInstance;)V +MD: net/minecraft/world/entity/ai/attributes/Attributes/ ()V net/minecraft/world/entity/ai/attributes/Attributes/ ()V +MD: net/minecraft/world/entity/ai/attributes/Attributes/ ()V net/minecraft/world/entity/ai/attributes/Attributes/ ()V +MD: net/minecraft/world/entity/ai/attributes/Attributes/m_22290_ (Ljava/lang/String;Lnet/minecraft/world/entity/ai/attributes/Attribute;)Lnet/minecraft/world/entity/ai/attributes/Attribute; net/minecraft/world/entity/ai/attributes/Attributes/register (Ljava/lang/String;Lnet/minecraft/world/entity/ai/attributes/Attribute;)Lnet/minecraft/world/entity/ai/attributes/Attribute; +MD: net/minecraft/world/entity/ai/attributes/DefaultAttributes/ ()V net/minecraft/world/entity/ai/attributes/DefaultAttributes/ ()V +MD: net/minecraft/world/entity/ai/attributes/DefaultAttributes/ ()V net/minecraft/world/entity/ai/attributes/DefaultAttributes/ ()V +MD: net/minecraft/world/entity/ai/attributes/DefaultAttributes/m_22296_ ()V net/minecraft/world/entity/ai/attributes/DefaultAttributes/validate ()V +MD: net/minecraft/world/entity/ai/attributes/DefaultAttributes/m_22297_ (Lnet/minecraft/world/entity/EntityType;)Lnet/minecraft/world/entity/ai/attributes/AttributeSupplier; net/minecraft/world/entity/ai/attributes/DefaultAttributes/getSupplier (Lnet/minecraft/world/entity/EntityType;)Lnet/minecraft/world/entity/ai/attributes/AttributeSupplier; +MD: net/minecraft/world/entity/ai/attributes/DefaultAttributes/m_22299_ (Lnet/minecraft/resources/ResourceLocation;)V net/minecraft/world/entity/ai/attributes/DefaultAttributes/lambda$validate$2 (Lnet/minecraft/resources/ResourceLocation;)V +MD: net/minecraft/world/entity/ai/attributes/DefaultAttributes/m_22301_ (Lnet/minecraft/world/entity/EntityType;)Z net/minecraft/world/entity/ai/attributes/DefaultAttributes/hasSupplier (Lnet/minecraft/world/entity/EntityType;)Z +MD: net/minecraft/world/entity/ai/attributes/DefaultAttributes/m_22303_ (Lnet/minecraft/world/entity/EntityType;)Z net/minecraft/world/entity/ai/attributes/DefaultAttributes/lambda$validate$1 (Lnet/minecraft/world/entity/EntityType;)Z +MD: net/minecraft/world/entity/ai/attributes/DefaultAttributes/m_22305_ (Lnet/minecraft/world/entity/EntityType;)Z net/minecraft/world/entity/ai/attributes/DefaultAttributes/lambda$validate$0 (Lnet/minecraft/world/entity/EntityType;)Z +MD: net/minecraft/world/entity/ai/attributes/RangedAttribute/ (Ljava/lang/String;DDD)V net/minecraft/world/entity/ai/attributes/RangedAttribute/ (Ljava/lang/String;DDD)V +MD: net/minecraft/world/entity/ai/attributes/RangedAttribute/m_147361_ ()D net/minecraft/world/entity/ai/attributes/RangedAttribute/getMinValue ()D +MD: net/minecraft/world/entity/ai/attributes/RangedAttribute/m_147362_ ()D net/minecraft/world/entity/ai/attributes/RangedAttribute/getMaxValue ()D +MD: net/minecraft/world/entity/ai/attributes/RangedAttribute/m_6740_ (D)D net/minecraft/world/entity/ai/attributes/RangedAttribute/sanitizeValue (D)D +MD: net/minecraft/world/entity/ai/behavior/AcquirePoi/ ()V net/minecraft/world/entity/ai/behavior/AcquirePoi/ ()V +MD: net/minecraft/world/entity/ai/behavior/AcquirePoi/m_147366_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/PathfinderMob;Ljava/lang/Byte;)V net/minecraft/world/entity/ai/behavior/AcquirePoi/lambda$create$3 (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/PathfinderMob;Ljava/lang/Byte;)V +MD: net/minecraft/world/entity/ai/behavior/AcquirePoi/m_217097_ (Lnet/minecraft/world/entity/Mob;Ljava/util/Set;)Lnet/minecraft/world/level/pathfinder/Path; net/minecraft/world/entity/ai/behavior/AcquirePoi/findPathToPois (Lnet/minecraft/world/entity/Mob;Ljava/util/Set;)Lnet/minecraft/world/level/pathfinder/Path; +MD: net/minecraft/world/entity/ai/behavior/AcquirePoi/m_217106_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Holder;Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/entity/ai/behavior/AcquirePoi/lambda$create$2 (Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Holder;Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/entity/ai/behavior/AcquirePoi/m_22336_ (JLit/unimi/dsi/fastutil/longs/Long2ObjectMap$Entry;)Z net/minecraft/world/entity/ai/behavior/AcquirePoi/lambda$create$0 (JLit/unimi/dsi/fastutil/longs/Long2ObjectMap$Entry;)Z +MD: net/minecraft/world/entity/ai/behavior/AcquirePoi/m_257159_ (Lit/unimi/dsi/fastutil/longs/Long2ObjectMap;JLnet/minecraft/core/BlockPos;)Z net/minecraft/world/entity/ai/behavior/AcquirePoi/lambda$create$1 (Lit/unimi/dsi/fastutil/longs/Long2ObjectMap;JLnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/entity/ai/behavior/AcquirePoi/m_257160_ (Lnet/minecraft/world/entity/ai/memory/MemoryModuleType;Lnet/minecraft/world/entity/ai/behavior/OneShot;Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/world/entity/ai/behavior/AcquirePoi/lambda$create$10 (Lnet/minecraft/world/entity/ai/memory/MemoryModuleType;Lnet/minecraft/world/entity/ai/behavior/OneShot;Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/world/entity/ai/behavior/AcquirePoi/m_257161_ (Lnet/minecraft/world/entity/ai/memory/MemoryModuleType;ZLorg/apache/commons/lang3/mutable/MutableLong;Lit/unimi/dsi/fastutil/longs/Long2ObjectMap;Ljava/util/function/Predicate;Ljava/util/Optional;Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/world/entity/ai/behavior/AcquirePoi/lambda$create$8 (Lnet/minecraft/world/entity/ai/memory/MemoryModuleType;ZLorg/apache/commons/lang3/mutable/MutableLong;Lit/unimi/dsi/fastutil/longs/Long2ObjectMap;Ljava/util/function/Predicate;Ljava/util/Optional;Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/world/entity/ai/behavior/AcquirePoi/m_257163_ (ZLorg/apache/commons/lang3/mutable/MutableLong;Lit/unimi/dsi/fastutil/longs/Long2ObjectMap;Ljava/util/function/Predicate;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Ljava/util/Optional;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/PathfinderMob;J)Z net/minecraft/world/entity/ai/behavior/AcquirePoi/lambda$create$6 (ZLorg/apache/commons/lang3/mutable/MutableLong;Lit/unimi/dsi/fastutil/longs/Long2ObjectMap;Ljava/util/function/Predicate;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Ljava/util/Optional;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/PathfinderMob;J)Z +MD: net/minecraft/world/entity/ai/behavior/AcquirePoi/m_257164_ (ZLorg/apache/commons/lang3/mutable/MutableLong;Lit/unimi/dsi/fastutil/longs/Long2ObjectMap;Ljava/util/function/Predicate;Ljava/util/Optional;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;)Lnet/minecraft/world/entity/ai/behavior/declarative/Trigger; net/minecraft/world/entity/ai/behavior/AcquirePoi/lambda$create$7 (ZLorg/apache/commons/lang3/mutable/MutableLong;Lit/unimi/dsi/fastutil/longs/Long2ObjectMap;Ljava/util/function/Predicate;Ljava/util/Optional;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;)Lnet/minecraft/world/entity/ai/behavior/declarative/Trigger; +MD: net/minecraft/world/entity/ai/behavior/AcquirePoi/m_257165_ (Lnet/minecraft/world/entity/ai/behavior/OneShot;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;)Lnet/minecraft/world/entity/ai/behavior/declarative/Trigger; net/minecraft/world/entity/ai/behavior/AcquirePoi/lambda$create$9 (Lnet/minecraft/world/entity/ai/behavior/OneShot;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;)Lnet/minecraft/world/entity/ai/behavior/declarative/Trigger; +MD: net/minecraft/world/entity/ai/behavior/AcquirePoi/m_257613_ (Ljava/util/function/Predicate;Lnet/minecraft/world/entity/ai/memory/MemoryModuleType;ZLjava/util/Optional;)Lnet/minecraft/world/entity/ai/behavior/BehaviorControl; net/minecraft/world/entity/ai/behavior/AcquirePoi/create (Ljava/util/function/Predicate;Lnet/minecraft/world/entity/ai/memory/MemoryModuleType;ZLjava/util/Optional;)Lnet/minecraft/world/entity/ai/behavior/BehaviorControl; +MD: net/minecraft/world/entity/ai/behavior/AcquirePoi/m_258026_ (Ljava/util/function/Predicate;Lnet/minecraft/world/entity/ai/memory/MemoryModuleType;Lnet/minecraft/world/entity/ai/memory/MemoryModuleType;ZLjava/util/Optional;)Lnet/minecraft/world/entity/ai/behavior/BehaviorControl; net/minecraft/world/entity/ai/behavior/AcquirePoi/create (Ljava/util/function/Predicate;Lnet/minecraft/world/entity/ai/memory/MemoryModuleType;Lnet/minecraft/world/entity/ai/memory/MemoryModuleType;ZLjava/util/Optional;)Lnet/minecraft/world/entity/ai/behavior/BehaviorControl; +MD: net/minecraft/world/entity/ai/behavior/AcquirePoi/m_263976_ (Lnet/minecraft/server/level/ServerLevel;JJ)Lnet/minecraft/world/entity/ai/behavior/AcquirePoi$JitteredLinearRetry; net/minecraft/world/entity/ai/behavior/AcquirePoi/lambda$create$5 (Lnet/minecraft/server/level/ServerLevel;JJ)Lnet/minecraft/world/entity/ai/behavior/AcquirePoi$JitteredLinearRetry; +MD: net/minecraft/world/entity/ai/behavior/AcquirePoi/m_288119_ (Lnet/minecraft/world/entity/ai/village/poi/PoiManager;Ljava/util/function/Predicate;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/server/level/ServerLevel;Ljava/util/Optional;Lnet/minecraft/world/entity/PathfinderMob;Lit/unimi/dsi/fastutil/longs/Long2ObjectMap;Lnet/minecraft/core/Holder;)V net/minecraft/world/entity/ai/behavior/AcquirePoi/lambda$create$4 (Lnet/minecraft/world/entity/ai/village/poi/PoiManager;Ljava/util/function/Predicate;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/server/level/ServerLevel;Ljava/util/Optional;Lnet/minecraft/world/entity/PathfinderMob;Lit/unimi/dsi/fastutil/longs/Long2ObjectMap;Lnet/minecraft/core/Holder;)V +MD: net/minecraft/world/entity/ai/behavior/AcquirePoi$JitteredLinearRetry/ (Lnet/minecraft/util/RandomSource;J)V net/minecraft/world/entity/ai/behavior/AcquirePoi$JitteredLinearRetry/ (Lnet/minecraft/util/RandomSource;J)V +MD: net/minecraft/world/entity/ai/behavior/AcquirePoi$JitteredLinearRetry/m_22380_ (J)V net/minecraft/world/entity/ai/behavior/AcquirePoi$JitteredLinearRetry/markAttempt (J)V +MD: net/minecraft/world/entity/ai/behavior/AcquirePoi$JitteredLinearRetry/m_22382_ (J)Z net/minecraft/world/entity/ai/behavior/AcquirePoi$JitteredLinearRetry/isStillValid (J)Z +MD: net/minecraft/world/entity/ai/behavior/AcquirePoi$JitteredLinearRetry/m_22384_ (J)Z net/minecraft/world/entity/ai/behavior/AcquirePoi$JitteredLinearRetry/shouldRetry (J)Z +MD: net/minecraft/world/entity/ai/behavior/AcquirePoi$JitteredLinearRetry/toString ()Ljava/lang/String; net/minecraft/world/entity/ai/behavior/AcquirePoi$JitteredLinearRetry/toString ()Ljava/lang/String; +MD: net/minecraft/world/entity/ai/behavior/AnimalMakeLove/ (Lnet/minecraft/world/entity/EntityType;F)V net/minecraft/world/entity/ai/behavior/AnimalMakeLove/ (Lnet/minecraft/world/entity/EntityType;F)V +MD: net/minecraft/world/entity/ai/behavior/AnimalMakeLove/m_22409_ (Lnet/minecraft/world/entity/animal/Animal;)Lnet/minecraft/world/entity/animal/Animal; net/minecraft/world/entity/ai/behavior/AnimalMakeLove/getBreedTarget (Lnet/minecraft/world/entity/animal/Animal;)Lnet/minecraft/world/entity/animal/Animal; +MD: net/minecraft/world/entity/ai/behavior/AnimalMakeLove/m_22421_ (Lnet/minecraft/world/entity/animal/Animal;)Z net/minecraft/world/entity/ai/behavior/AnimalMakeLove/hasBreedTargetOfRightType (Lnet/minecraft/world/entity/animal/Animal;)Z +MD: net/minecraft/world/entity/ai/behavior/AnimalMakeLove/m_22431_ (Lnet/minecraft/world/entity/animal/Animal;)Ljava/util/Optional; net/minecraft/world/entity/ai/behavior/AnimalMakeLove/findValidBreedPartner (Lnet/minecraft/world/entity/animal/Animal;)Ljava/util/Optional; +MD: net/minecraft/world/entity/ai/behavior/AnimalMakeLove/m_289089_ (Lnet/minecraft/world/entity/animal/Animal;Lnet/minecraft/world/entity/LivingEntity;)Z net/minecraft/world/entity/ai/behavior/AnimalMakeLove/lambda$findValidBreedPartner$0 (Lnet/minecraft/world/entity/animal/Animal;Lnet/minecraft/world/entity/LivingEntity;)Z +MD: net/minecraft/world/entity/ai/behavior/AnimalMakeLove/m_6114_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;)Z net/minecraft/world/entity/ai/behavior/AnimalMakeLove/checkExtraStartConditions (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;)Z +MD: net/minecraft/world/entity/ai/behavior/AnimalMakeLove/m_6114_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/animal/Animal;)Z net/minecraft/world/entity/ai/behavior/AnimalMakeLove/checkExtraStartConditions (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/animal/Animal;)Z +MD: net/minecraft/world/entity/ai/behavior/AnimalMakeLove/m_6725_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)V net/minecraft/world/entity/ai/behavior/AnimalMakeLove/tick (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)V +MD: net/minecraft/world/entity/ai/behavior/AnimalMakeLove/m_6725_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/animal/Animal;J)V net/minecraft/world/entity/ai/behavior/AnimalMakeLove/tick (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/animal/Animal;J)V +MD: net/minecraft/world/entity/ai/behavior/AnimalMakeLove/m_6732_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)V net/minecraft/world/entity/ai/behavior/AnimalMakeLove/stop (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)V +MD: net/minecraft/world/entity/ai/behavior/AnimalMakeLove/m_6732_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/animal/Animal;J)V net/minecraft/world/entity/ai/behavior/AnimalMakeLove/stop (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/animal/Animal;J)V +MD: net/minecraft/world/entity/ai/behavior/AnimalMakeLove/m_6735_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/animal/Animal;J)V net/minecraft/world/entity/ai/behavior/AnimalMakeLove/start (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/animal/Animal;J)V +MD: net/minecraft/world/entity/ai/behavior/AnimalMakeLove/m_6735_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)V net/minecraft/world/entity/ai/behavior/AnimalMakeLove/start (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)V +MD: net/minecraft/world/entity/ai/behavior/AnimalMakeLove/m_6737_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)Z net/minecraft/world/entity/ai/behavior/AnimalMakeLove/canStillUse (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)Z +MD: net/minecraft/world/entity/ai/behavior/AnimalMakeLove/m_6737_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/animal/Animal;J)Z net/minecraft/world/entity/ai/behavior/AnimalMakeLove/canStillUse (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/animal/Animal;J)Z +MD: net/minecraft/world/entity/ai/behavior/AnimalPanic/ ()V net/minecraft/world/entity/ai/behavior/AnimalPanic/ ()V +MD: net/minecraft/world/entity/ai/behavior/AnimalPanic/ (FLjava/util/function/Predicate;)V net/minecraft/world/entity/ai/behavior/AnimalPanic/ (FLjava/util/function/Predicate;)V +MD: net/minecraft/world/entity/ai/behavior/AnimalPanic/ (F)V net/minecraft/world/entity/ai/behavior/AnimalPanic/ (F)V +MD: net/minecraft/world/entity/ai/behavior/AnimalPanic/m_196638_ (Lnet/minecraft/world/entity/PathfinderMob;Lnet/minecraft/server/level/ServerLevel;)Lnet/minecraft/world/phys/Vec3; net/minecraft/world/entity/ai/behavior/AnimalPanic/getPanicPos (Lnet/minecraft/world/entity/PathfinderMob;Lnet/minecraft/server/level/ServerLevel;)Lnet/minecraft/world/phys/Vec3; +MD: net/minecraft/world/entity/ai/behavior/AnimalPanic/m_196641_ (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/world/entity/Entity;)Ljava/util/Optional; net/minecraft/world/entity/ai/behavior/AnimalPanic/lookForWater (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/world/entity/Entity;)Ljava/util/Optional; +MD: net/minecraft/world/entity/ai/behavior/AnimalPanic/m_196644_ (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/entity/ai/behavior/AnimalPanic/lambda$lookForWater$1 (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/entity/ai/behavior/AnimalPanic/m_284016_ (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/entity/ai/behavior/AnimalPanic/lambda$lookForWater$2 (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/entity/ai/behavior/AnimalPanic/m_284017_ (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/entity/ai/behavior/AnimalPanic/lambda$lookForWater$3 (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/entity/ai/behavior/AnimalPanic/m_289090_ (Lnet/minecraft/world/entity/PathfinderMob;)Z net/minecraft/world/entity/ai/behavior/AnimalPanic/lambda$static$0 (Lnet/minecraft/world/entity/PathfinderMob;)Z +MD: net/minecraft/world/entity/ai/behavior/AnimalPanic/m_6114_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;)Z net/minecraft/world/entity/ai/behavior/AnimalPanic/checkExtraStartConditions (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;)Z +MD: net/minecraft/world/entity/ai/behavior/AnimalPanic/m_6114_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/PathfinderMob;)Z net/minecraft/world/entity/ai/behavior/AnimalPanic/checkExtraStartConditions (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/PathfinderMob;)Z +MD: net/minecraft/world/entity/ai/behavior/AnimalPanic/m_6725_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)V net/minecraft/world/entity/ai/behavior/AnimalPanic/tick (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)V +MD: net/minecraft/world/entity/ai/behavior/AnimalPanic/m_6725_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/PathfinderMob;J)V net/minecraft/world/entity/ai/behavior/AnimalPanic/tick (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/PathfinderMob;J)V +MD: net/minecraft/world/entity/ai/behavior/AnimalPanic/m_6732_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)V net/minecraft/world/entity/ai/behavior/AnimalPanic/stop (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)V +MD: net/minecraft/world/entity/ai/behavior/AnimalPanic/m_6732_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/PathfinderMob;J)V net/minecraft/world/entity/ai/behavior/AnimalPanic/stop (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/PathfinderMob;J)V +MD: net/minecraft/world/entity/ai/behavior/AnimalPanic/m_6735_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/PathfinderMob;J)V net/minecraft/world/entity/ai/behavior/AnimalPanic/start (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/PathfinderMob;J)V +MD: net/minecraft/world/entity/ai/behavior/AnimalPanic/m_6735_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)V net/minecraft/world/entity/ai/behavior/AnimalPanic/start (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)V +MD: net/minecraft/world/entity/ai/behavior/AnimalPanic/m_6737_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)Z net/minecraft/world/entity/ai/behavior/AnimalPanic/canStillUse (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)Z +MD: net/minecraft/world/entity/ai/behavior/AnimalPanic/m_6737_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/PathfinderMob;J)Z net/minecraft/world/entity/ai/behavior/AnimalPanic/canStillUse (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/PathfinderMob;J)Z +MD: net/minecraft/world/entity/ai/behavior/AssignProfessionFromJobSite/ ()V net/minecraft/world/entity/ai/behavior/AssignProfessionFromJobSite/ ()V +MD: net/minecraft/world/entity/ai/behavior/AssignProfessionFromJobSite/m_217123_ (Lnet/minecraft/core/Holder;Lnet/minecraft/world/entity/npc/VillagerProfession;)Z net/minecraft/world/entity/ai/behavior/AssignProfessionFromJobSite/lambda$create$1 (Lnet/minecraft/core/Holder;Lnet/minecraft/world/entity/npc/VillagerProfession;)Z +MD: net/minecraft/world/entity/ai/behavior/AssignProfessionFromJobSite/m_22461_ (Lnet/minecraft/world/entity/npc/Villager;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/npc/VillagerProfession;)V net/minecraft/world/entity/ai/behavior/AssignProfessionFromJobSite/lambda$create$3 (Lnet/minecraft/world/entity/npc/Villager;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/npc/VillagerProfession;)V +MD: net/minecraft/world/entity/ai/behavior/AssignProfessionFromJobSite/m_22465_ (Lnet/minecraft/core/GlobalPos;Lnet/minecraft/server/level/ServerLevel;)Ljava/util/Optional; net/minecraft/world/entity/ai/behavior/AssignProfessionFromJobSite/lambda$create$0 (Lnet/minecraft/core/GlobalPos;Lnet/minecraft/server/level/ServerLevel;)Ljava/util/Optional; +MD: net/minecraft/world/entity/ai/behavior/AssignProfessionFromJobSite/m_257166_ (Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;)Lnet/minecraft/world/entity/ai/behavior/declarative/Trigger; net/minecraft/world/entity/ai/behavior/AssignProfessionFromJobSite/lambda$create$5 (Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;)Lnet/minecraft/world/entity/ai/behavior/declarative/Trigger; +MD: net/minecraft/world/entity/ai/behavior/AssignProfessionFromJobSite/m_257167_ (Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/npc/Villager;J)Z net/minecraft/world/entity/ai/behavior/AssignProfessionFromJobSite/lambda$create$4 (Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/npc/Villager;J)Z +MD: net/minecraft/world/entity/ai/behavior/AssignProfessionFromJobSite/m_257168_ (Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/world/entity/ai/behavior/AssignProfessionFromJobSite/lambda$create$6 (Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/world/entity/ai/behavior/AssignProfessionFromJobSite/m_257169_ (Lnet/minecraft/core/Holder;)Ljava/util/Optional; net/minecraft/world/entity/ai/behavior/AssignProfessionFromJobSite/lambda$create$2 (Lnet/minecraft/core/Holder;)Ljava/util/Optional; +MD: net/minecraft/world/entity/ai/behavior/AssignProfessionFromJobSite/m_257634_ ()Lnet/minecraft/world/entity/ai/behavior/BehaviorControl; net/minecraft/world/entity/ai/behavior/AssignProfessionFromJobSite/create ()Lnet/minecraft/world/entity/ai/behavior/BehaviorControl; +MD: net/minecraft/world/entity/ai/behavior/BabyFollowAdult/ ()V net/minecraft/world/entity/ai/behavior/BabyFollowAdult/ ()V +MD: net/minecraft/world/entity/ai/behavior/BabyFollowAdult/m_147419_ (FLnet/minecraft/world/entity/LivingEntity;)Ljava/lang/Float; net/minecraft/world/entity/ai/behavior/BabyFollowAdult/lambda$create$0 (FLnet/minecraft/world/entity/LivingEntity;)Ljava/lang/Float; +MD: net/minecraft/world/entity/ai/behavior/BabyFollowAdult/m_257170_ (Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;Lnet/minecraft/util/valueproviders/UniformInt;Ljava/util/function/Function;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;)Lnet/minecraft/world/entity/ai/behavior/declarative/Trigger; net/minecraft/world/entity/ai/behavior/BabyFollowAdult/lambda$create$2 (Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;Lnet/minecraft/util/valueproviders/UniformInt;Ljava/util/function/Function;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;)Lnet/minecraft/world/entity/ai/behavior/declarative/Trigger; +MD: net/minecraft/world/entity/ai/behavior/BabyFollowAdult/m_257171_ (Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/util/valueproviders/UniformInt;Ljava/util/function/Function;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/AgeableMob;J)Z net/minecraft/world/entity/ai/behavior/BabyFollowAdult/lambda$create$1 (Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/util/valueproviders/UniformInt;Ljava/util/function/Function;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/AgeableMob;J)Z +MD: net/minecraft/world/entity/ai/behavior/BabyFollowAdult/m_257172_ (Lnet/minecraft/util/valueproviders/UniformInt;Ljava/util/function/Function;Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/world/entity/ai/behavior/BabyFollowAdult/lambda$create$3 (Lnet/minecraft/util/valueproviders/UniformInt;Ljava/util/function/Function;Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/world/entity/ai/behavior/BabyFollowAdult/m_257631_ (Lnet/minecraft/util/valueproviders/UniformInt;Ljava/util/function/Function;)Lnet/minecraft/world/entity/ai/behavior/OneShot; net/minecraft/world/entity/ai/behavior/BabyFollowAdult/create (Lnet/minecraft/util/valueproviders/UniformInt;Ljava/util/function/Function;)Lnet/minecraft/world/entity/ai/behavior/OneShot; +MD: net/minecraft/world/entity/ai/behavior/BabyFollowAdult/m_257685_ (Lnet/minecraft/util/valueproviders/UniformInt;F)Lnet/minecraft/world/entity/ai/behavior/OneShot; net/minecraft/world/entity/ai/behavior/BabyFollowAdult/create (Lnet/minecraft/util/valueproviders/UniformInt;F)Lnet/minecraft/world/entity/ai/behavior/OneShot; +MD: net/minecraft/world/entity/ai/behavior/BackUpIfTooClose/ ()V net/minecraft/world/entity/ai/behavior/BackUpIfTooClose/ ()V +MD: net/minecraft/world/entity/ai/behavior/BackUpIfTooClose/m_257486_ (Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;ILnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;FLnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/Mob;J)Z net/minecraft/world/entity/ai/behavior/BackUpIfTooClose/lambda$create$0 (Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;ILnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;FLnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/Mob;J)Z +MD: net/minecraft/world/entity/ai/behavior/BackUpIfTooClose/m_257511_ (IFLnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/world/entity/ai/behavior/BackUpIfTooClose/lambda$create$2 (IFLnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/world/entity/ai/behavior/BackUpIfTooClose/m_257668_ (Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;IFLnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;)Lnet/minecraft/world/entity/ai/behavior/declarative/Trigger; net/minecraft/world/entity/ai/behavior/BackUpIfTooClose/lambda$create$1 (Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;IFLnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;)Lnet/minecraft/world/entity/ai/behavior/declarative/Trigger; +MD: net/minecraft/world/entity/ai/behavior/BackUpIfTooClose/m_257698_ (IF)Lnet/minecraft/world/entity/ai/behavior/OneShot; net/minecraft/world/entity/ai/behavior/BackUpIfTooClose/create (IF)Lnet/minecraft/world/entity/ai/behavior/OneShot; +MD: net/minecraft/world/entity/ai/behavior/BecomePassiveIfMemoryPresent/ ()V net/minecraft/world/entity/ai/behavior/BecomePassiveIfMemoryPresent/ ()V +MD: net/minecraft/world/entity/ai/behavior/BecomePassiveIfMemoryPresent/m_257393_ (Lnet/minecraft/world/entity/ai/memory/MemoryModuleType;I)Lnet/minecraft/world/entity/ai/behavior/BehaviorControl; net/minecraft/world/entity/ai/behavior/BecomePassiveIfMemoryPresent/create (Lnet/minecraft/world/entity/ai/memory/MemoryModuleType;I)Lnet/minecraft/world/entity/ai/behavior/BehaviorControl; +MD: net/minecraft/world/entity/ai/behavior/BecomePassiveIfMemoryPresent/m_257592_ (Lnet/minecraft/world/entity/ai/memory/MemoryModuleType;)Ljava/lang/String; net/minecraft/world/entity/ai/behavior/BecomePassiveIfMemoryPresent/lambda$create$0 (Lnet/minecraft/world/entity/ai/memory/MemoryModuleType;)Ljava/lang/String; +MD: net/minecraft/world/entity/ai/behavior/BecomePassiveIfMemoryPresent/m_257748_ (ILnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;)Lnet/minecraft/world/entity/ai/behavior/declarative/Trigger; net/minecraft/world/entity/ai/behavior/BecomePassiveIfMemoryPresent/lambda$create$2 (ILnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;)Lnet/minecraft/world/entity/ai/behavior/declarative/Trigger; +MD: net/minecraft/world/entity/ai/behavior/BecomePassiveIfMemoryPresent/m_257872_ (Lnet/minecraft/world/entity/ai/memory/MemoryModuleType;ILnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/world/entity/ai/behavior/BecomePassiveIfMemoryPresent/lambda$create$3 (Lnet/minecraft/world/entity/ai/memory/MemoryModuleType;ILnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/world/entity/ai/behavior/BecomePassiveIfMemoryPresent/m_258050_ (Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;ILnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)Z net/minecraft/world/entity/ai/behavior/BecomePassiveIfMemoryPresent/lambda$create$1 (Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;ILnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)Z +MD: net/minecraft/world/entity/ai/behavior/Behavior/ (Ljava/util/Map;II)V net/minecraft/world/entity/ai/behavior/Behavior/ (Ljava/util/Map;II)V +MD: net/minecraft/world/entity/ai/behavior/Behavior/ (Ljava/util/Map;)V net/minecraft/world/entity/ai/behavior/Behavior/ (Ljava/util/Map;)V +MD: net/minecraft/world/entity/ai/behavior/Behavior/ (Ljava/util/Map;I)V net/minecraft/world/entity/ai/behavior/Behavior/ (Ljava/util/Map;I)V +MD: net/minecraft/world/entity/ai/behavior/Behavior/m_22536_ ()Lnet/minecraft/world/entity/ai/behavior/Behavior$Status; net/minecraft/world/entity/ai/behavior/Behavior/getStatus ()Lnet/minecraft/world/entity/ai/behavior/Behavior$Status; +MD: net/minecraft/world/entity/ai/behavior/Behavior/m_22543_ (Lnet/minecraft/world/entity/LivingEntity;)Z net/minecraft/world/entity/ai/behavior/Behavior/hasRequiredMemories (Lnet/minecraft/world/entity/LivingEntity;)Z +MD: net/minecraft/world/entity/ai/behavior/Behavior/m_22554_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)Z net/minecraft/world/entity/ai/behavior/Behavior/tryStart (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)Z +MD: net/minecraft/world/entity/ai/behavior/Behavior/m_22558_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)V net/minecraft/world/entity/ai/behavior/Behavior/tickOrStop (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)V +MD: net/minecraft/world/entity/ai/behavior/Behavior/m_22562_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)V net/minecraft/world/entity/ai/behavior/Behavior/doStop (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)V +MD: net/minecraft/world/entity/ai/behavior/Behavior/m_22566_ ()Ljava/lang/String; net/minecraft/world/entity/ai/behavior/Behavior/debugString ()Ljava/lang/String; +MD: net/minecraft/world/entity/ai/behavior/Behavior/m_6114_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;)Z net/minecraft/world/entity/ai/behavior/Behavior/checkExtraStartConditions (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;)Z +MD: net/minecraft/world/entity/ai/behavior/Behavior/m_6725_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)V net/minecraft/world/entity/ai/behavior/Behavior/tick (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)V +MD: net/minecraft/world/entity/ai/behavior/Behavior/m_6732_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)V net/minecraft/world/entity/ai/behavior/Behavior/stop (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)V +MD: net/minecraft/world/entity/ai/behavior/Behavior/m_6735_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)V net/minecraft/world/entity/ai/behavior/Behavior/start (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)V +MD: net/minecraft/world/entity/ai/behavior/Behavior/m_6737_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)Z net/minecraft/world/entity/ai/behavior/Behavior/canStillUse (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)Z +MD: net/minecraft/world/entity/ai/behavior/Behavior/m_7773_ (J)Z net/minecraft/world/entity/ai/behavior/Behavior/timedOut (J)Z +MD: net/minecraft/world/entity/ai/behavior/Behavior$Status/ ()V net/minecraft/world/entity/ai/behavior/Behavior$Status/ ()V +MD: net/minecraft/world/entity/ai/behavior/Behavior$Status/ (Ljava/lang/String;I)V net/minecraft/world/entity/ai/behavior/Behavior$Status/ (Ljava/lang/String;I)V +MD: net/minecraft/world/entity/ai/behavior/Behavior$Status/m_147432_ ()[Lnet/minecraft/world/entity/ai/behavior/Behavior$Status; net/minecraft/world/entity/ai/behavior/Behavior$Status/$values ()[Lnet/minecraft/world/entity/ai/behavior/Behavior$Status; +MD: net/minecraft/world/entity/ai/behavior/Behavior$Status/valueOf (Ljava/lang/String;)Lnet/minecraft/world/entity/ai/behavior/Behavior$Status; net/minecraft/world/entity/ai/behavior/Behavior$Status/valueOf (Ljava/lang/String;)Lnet/minecraft/world/entity/ai/behavior/Behavior$Status; +MD: net/minecraft/world/entity/ai/behavior/Behavior$Status/values ()[Lnet/minecraft/world/entity/ai/behavior/Behavior$Status; net/minecraft/world/entity/ai/behavior/Behavior$Status/values ()[Lnet/minecraft/world/entity/ai/behavior/Behavior$Status; +MD: net/minecraft/world/entity/ai/behavior/BehaviorControl/m_22536_ ()Lnet/minecraft/world/entity/ai/behavior/Behavior$Status; net/minecraft/world/entity/ai/behavior/BehaviorControl/getStatus ()Lnet/minecraft/world/entity/ai/behavior/Behavior$Status; +MD: net/minecraft/world/entity/ai/behavior/BehaviorControl/m_22554_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)Z net/minecraft/world/entity/ai/behavior/BehaviorControl/tryStart (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)Z +MD: net/minecraft/world/entity/ai/behavior/BehaviorControl/m_22558_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)V net/minecraft/world/entity/ai/behavior/BehaviorControl/tickOrStop (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)V +MD: net/minecraft/world/entity/ai/behavior/BehaviorControl/m_22562_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)V net/minecraft/world/entity/ai/behavior/BehaviorControl/doStop (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)V +MD: net/minecraft/world/entity/ai/behavior/BehaviorControl/m_22566_ ()Ljava/lang/String; net/minecraft/world/entity/ai/behavior/BehaviorControl/debugString ()Ljava/lang/String; +MD: net/minecraft/world/entity/ai/behavior/BehaviorUtils/ ()V net/minecraft/world/entity/ai/behavior/BehaviorUtils/ ()V +MD: net/minecraft/world/entity/ai/behavior/BehaviorUtils/m_147444_ (Lnet/minecraft/world/entity/PathfinderMob;II)Lnet/minecraft/world/phys/Vec3; net/minecraft/world/entity/ai/behavior/BehaviorUtils/getRandomSwimmablePos (Lnet/minecraft/world/entity/PathfinderMob;II)Lnet/minecraft/world/phys/Vec3; +MD: net/minecraft/world/entity/ai/behavior/BehaviorUtils/m_186014_ (Lnet/minecraft/server/level/ServerLevel;ILnet/minecraft/core/SectionPos;)Z net/minecraft/world/entity/ai/behavior/BehaviorUtils/lambda$findSectionClosestToVillage$2 (Lnet/minecraft/server/level/ServerLevel;ILnet/minecraft/core/SectionPos;)Z +MD: net/minecraft/world/entity/ai/behavior/BehaviorUtils/m_186018_ (Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/world/entity/LivingEntity; net/minecraft/world/entity/ai/behavior/BehaviorUtils/lambda$getLivingEntityFromUUIDMemory$4 (Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/world/entity/LivingEntity; +MD: net/minecraft/world/entity/ai/behavior/BehaviorUtils/m_186035_ (Lnet/minecraft/world/entity/ai/Brain;Lnet/minecraft/world/entity/LivingEntity;)Z net/minecraft/world/entity/ai/behavior/BehaviorUtils/lambda$targetIsValid$1 (Lnet/minecraft/world/entity/ai/Brain;Lnet/minecraft/world/entity/LivingEntity;)Z +MD: net/minecraft/world/entity/ai/behavior/BehaviorUtils/m_217126_ (Lnet/minecraft/world/entity/LivingEntity;)Z net/minecraft/world/entity/ai/behavior/BehaviorUtils/isBreeding (Lnet/minecraft/world/entity/LivingEntity;)Z +MD: net/minecraft/world/entity/ai/behavior/BehaviorUtils/m_217128_ (Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/entity/ai/behavior/PositionTracker;FI)V net/minecraft/world/entity/ai/behavior/BehaviorUtils/setWalkAndLookTargetMemories (Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/entity/ai/behavior/PositionTracker;FI)V +MD: net/minecraft/world/entity/ai/behavior/BehaviorUtils/m_217133_ (Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/phys/Vec3;Lnet/minecraft/world/phys/Vec3;F)V net/minecraft/world/entity/ai/behavior/BehaviorUtils/throwItem (Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/phys/Vec3;Lnet/minecraft/world/phys/Vec3;F)V +MD: net/minecraft/world/entity/ai/behavior/BehaviorUtils/m_22581_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/SectionPos;I)Lnet/minecraft/core/SectionPos; net/minecraft/world/entity/ai/behavior/BehaviorUtils/findSectionClosestToVillage (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/SectionPos;I)Lnet/minecraft/core/SectionPos; +MD: net/minecraft/world/entity/ai/behavior/BehaviorUtils/m_22590_ (Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/entity/Entity;FI)V net/minecraft/world/entity/ai/behavior/BehaviorUtils/setWalkAndLookTargetMemories (Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/entity/Entity;FI)V +MD: net/minecraft/world/entity/ai/behavior/BehaviorUtils/m_22595_ (Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/entity/LivingEntity;)V net/minecraft/world/entity/ai/behavior/BehaviorUtils/lookAtEntity (Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/entity/LivingEntity;)V +MD: net/minecraft/world/entity/ai/behavior/BehaviorUtils/m_22598_ (Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/entity/LivingEntity;D)Z net/minecraft/world/entity/ai/behavior/BehaviorUtils/isOtherTargetMuchFurtherAwayThanCurrentAttackTarget (Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/entity/LivingEntity;D)Z +MD: net/minecraft/world/entity/ai/behavior/BehaviorUtils/m_22602_ (Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/entity/LivingEntity;F)V net/minecraft/world/entity/ai/behavior/BehaviorUtils/lockGazeAndWalkToEachOther (Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/entity/LivingEntity;F)V +MD: net/minecraft/world/entity/ai/behavior/BehaviorUtils/m_22606_ (Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/entity/LivingEntity;)Lnet/minecraft/world/entity/LivingEntity; net/minecraft/world/entity/ai/behavior/BehaviorUtils/getTargetNearestMe (Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/entity/LivingEntity;)Lnet/minecraft/world/entity/LivingEntity; +MD: net/minecraft/world/entity/ai/behavior/BehaviorUtils/m_22610_ (Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/entity/ai/memory/MemoryModuleType;)Ljava/util/Optional; net/minecraft/world/entity/ai/behavior/BehaviorUtils/getLivingEntityFromUUIDMemory (Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/entity/ai/memory/MemoryModuleType;)Ljava/util/Optional; +MD: net/minecraft/world/entity/ai/behavior/BehaviorUtils/m_22613_ (Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/phys/Vec3;)V net/minecraft/world/entity/ai/behavior/BehaviorUtils/throwItem (Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/phys/Vec3;)V +MD: net/minecraft/world/entity/ai/behavior/BehaviorUtils/m_22617_ (Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/core/BlockPos;FI)V net/minecraft/world/entity/ai/behavior/BehaviorUtils/setWalkAndLookTargetMemories (Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/core/BlockPos;FI)V +MD: net/minecraft/world/entity/ai/behavior/BehaviorUtils/m_22625_ (Lnet/minecraft/world/entity/LivingEntity;Ljava/util/Optional;Lnet/minecraft/world/entity/LivingEntity;)Lnet/minecraft/world/entity/LivingEntity; net/minecraft/world/entity/ai/behavior/BehaviorUtils/getNearestTarget (Lnet/minecraft/world/entity/LivingEntity;Ljava/util/Optional;Lnet/minecraft/world/entity/LivingEntity;)Lnet/minecraft/world/entity/LivingEntity; +MD: net/minecraft/world/entity/ai/behavior/BehaviorUtils/m_22632_ (Lnet/minecraft/world/entity/Mob;Lnet/minecraft/world/entity/LivingEntity;I)Z net/minecraft/world/entity/ai/behavior/BehaviorUtils/isWithinAttackRange (Lnet/minecraft/world/entity/Mob;Lnet/minecraft/world/entity/LivingEntity;I)Z +MD: net/minecraft/world/entity/ai/behavior/BehaviorUtils/m_22636_ (Lnet/minecraft/world/entity/ai/Brain;Lnet/minecraft/world/entity/LivingEntity;)Z net/minecraft/world/entity/ai/behavior/BehaviorUtils/entityIsVisible (Lnet/minecraft/world/entity/ai/Brain;Lnet/minecraft/world/entity/LivingEntity;)Z +MD: net/minecraft/world/entity/ai/behavior/BehaviorUtils/m_22639_ (Lnet/minecraft/world/entity/ai/Brain;Lnet/minecraft/world/entity/ai/memory/MemoryModuleType;Lnet/minecraft/world/entity/EntityType;)Z net/minecraft/world/entity/ai/behavior/BehaviorUtils/targetIsValid (Lnet/minecraft/world/entity/ai/Brain;Lnet/minecraft/world/entity/ai/memory/MemoryModuleType;Lnet/minecraft/world/entity/EntityType;)Z +MD: net/minecraft/world/entity/ai/behavior/BehaviorUtils/m_22643_ (Lnet/minecraft/world/entity/ai/Brain;Lnet/minecraft/world/entity/ai/memory/MemoryModuleType;Ljava/util/function/Predicate;)Z net/minecraft/world/entity/ai/behavior/BehaviorUtils/targetIsValid (Lnet/minecraft/world/entity/ai/Brain;Lnet/minecraft/world/entity/ai/memory/MemoryModuleType;Ljava/util/function/Predicate;)Z +MD: net/minecraft/world/entity/ai/behavior/BehaviorUtils/m_22660_ (Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/entity/LivingEntity;F)V net/minecraft/world/entity/ai/behavior/BehaviorUtils/setWalkAndLookTargetMemoriesToEachOther (Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/entity/LivingEntity;F)V +MD: net/minecraft/world/entity/ai/behavior/BehaviorUtils/m_22667_ (Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/entity/LivingEntity;)Z net/minecraft/world/entity/ai/behavior/BehaviorUtils/canSee (Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/entity/LivingEntity;)Z +MD: net/minecraft/world/entity/ai/behavior/BehaviorUtils/m_22670_ (Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/entity/LivingEntity;)V net/minecraft/world/entity/ai/behavior/BehaviorUtils/lookAtEachOther (Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/entity/LivingEntity;)V +MD: net/minecraft/world/entity/ai/behavior/BehaviorUtils/m_289091_ (Lnet/minecraft/world/entity/LivingEntity;Ljava/util/UUID;)Lnet/minecraft/world/entity/Entity; net/minecraft/world/entity/ai/behavior/BehaviorUtils/lambda$getLivingEntityFromUUIDMemory$3 (Lnet/minecraft/world/entity/LivingEntity;Ljava/util/UUID;)Lnet/minecraft/world/entity/Entity; +MD: net/minecraft/world/entity/ai/behavior/BehaviorUtils/m_289092_ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/entity/LivingEntity;)Z net/minecraft/world/entity/ai/behavior/BehaviorUtils/lambda$targetIsValid$0 (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/entity/LivingEntity;)Z +MD: net/minecraft/world/entity/ai/behavior/BlockPosTracker/ (Lnet/minecraft/world/phys/Vec3;)V net/minecraft/world/entity/ai/behavior/BlockPosTracker/ (Lnet/minecraft/world/phys/Vec3;)V +MD: net/minecraft/world/entity/ai/behavior/BlockPosTracker/ (Lnet/minecraft/core/BlockPos;)V net/minecraft/world/entity/ai/behavior/BlockPosTracker/ (Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/world/entity/ai/behavior/BlockPosTracker/m_6675_ ()Lnet/minecraft/core/BlockPos; net/minecraft/world/entity/ai/behavior/BlockPosTracker/currentBlockPosition ()Lnet/minecraft/core/BlockPos; +MD: net/minecraft/world/entity/ai/behavior/BlockPosTracker/m_6826_ (Lnet/minecraft/world/entity/LivingEntity;)Z net/minecraft/world/entity/ai/behavior/BlockPosTracker/isVisibleBy (Lnet/minecraft/world/entity/LivingEntity;)Z +MD: net/minecraft/world/entity/ai/behavior/BlockPosTracker/m_7024_ ()Lnet/minecraft/world/phys/Vec3; net/minecraft/world/entity/ai/behavior/BlockPosTracker/currentPosition ()Lnet/minecraft/world/phys/Vec3; +MD: net/minecraft/world/entity/ai/behavior/BlockPosTracker/toString ()Ljava/lang/String; net/minecraft/world/entity/ai/behavior/BlockPosTracker/toString ()Ljava/lang/String; +MD: net/minecraft/world/entity/ai/behavior/CelebrateVillagersSurvivedRaid/ (II)V net/minecraft/world/entity/ai/behavior/CelebrateVillagersSurvivedRaid/ (II)V +MD: net/minecraft/world/entity/ai/behavior/CelebrateVillagersSurvivedRaid/m_22696_ (Lnet/minecraft/world/item/DyeColor;I)Lnet/minecraft/world/item/ItemStack; net/minecraft/world/entity/ai/behavior/CelebrateVillagersSurvivedRaid/getFirework (Lnet/minecraft/world/item/DyeColor;I)Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/entity/ai/behavior/CelebrateVillagersSurvivedRaid/m_6114_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;)Z net/minecraft/world/entity/ai/behavior/CelebrateVillagersSurvivedRaid/checkExtraStartConditions (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;)Z +MD: net/minecraft/world/entity/ai/behavior/CelebrateVillagersSurvivedRaid/m_6114_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/npc/Villager;)Z net/minecraft/world/entity/ai/behavior/CelebrateVillagersSurvivedRaid/checkExtraStartConditions (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/npc/Villager;)Z +MD: net/minecraft/world/entity/ai/behavior/CelebrateVillagersSurvivedRaid/m_6725_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)V net/minecraft/world/entity/ai/behavior/CelebrateVillagersSurvivedRaid/tick (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)V +MD: net/minecraft/world/entity/ai/behavior/CelebrateVillagersSurvivedRaid/m_6725_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/npc/Villager;J)V net/minecraft/world/entity/ai/behavior/CelebrateVillagersSurvivedRaid/tick (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/npc/Villager;J)V +MD: net/minecraft/world/entity/ai/behavior/CelebrateVillagersSurvivedRaid/m_6732_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)V net/minecraft/world/entity/ai/behavior/CelebrateVillagersSurvivedRaid/stop (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)V +MD: net/minecraft/world/entity/ai/behavior/CelebrateVillagersSurvivedRaid/m_6732_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/npc/Villager;J)V net/minecraft/world/entity/ai/behavior/CelebrateVillagersSurvivedRaid/stop (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/npc/Villager;J)V +MD: net/minecraft/world/entity/ai/behavior/CelebrateVillagersSurvivedRaid/m_6737_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/npc/Villager;J)Z net/minecraft/world/entity/ai/behavior/CelebrateVillagersSurvivedRaid/canStillUse (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/npc/Villager;J)Z +MD: net/minecraft/world/entity/ai/behavior/CelebrateVillagersSurvivedRaid/m_6737_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)Z net/minecraft/world/entity/ai/behavior/CelebrateVillagersSurvivedRaid/canStillUse (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)Z +MD: net/minecraft/world/entity/ai/behavior/CopyMemoryWithExpiry/ ()V net/minecraft/world/entity/ai/behavior/CopyMemoryWithExpiry/ ()V +MD: net/minecraft/world/entity/ai/behavior/CopyMemoryWithExpiry/m_257801_ (Ljava/util/function/Predicate;Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;Lnet/minecraft/util/valueproviders/UniformInt;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;)Lnet/minecraft/world/entity/ai/behavior/declarative/Trigger; net/minecraft/world/entity/ai/behavior/CopyMemoryWithExpiry/lambda$create$1 (Ljava/util/function/Predicate;Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;Lnet/minecraft/util/valueproviders/UniformInt;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;)Lnet/minecraft/world/entity/ai/behavior/declarative/Trigger; +MD: net/minecraft/world/entity/ai/behavior/CopyMemoryWithExpiry/m_257819_ (Ljava/util/function/Predicate;Lnet/minecraft/world/entity/ai/memory/MemoryModuleType;Lnet/minecraft/world/entity/ai/memory/MemoryModuleType;Lnet/minecraft/util/valueproviders/UniformInt;)Lnet/minecraft/world/entity/ai/behavior/BehaviorControl; net/minecraft/world/entity/ai/behavior/CopyMemoryWithExpiry/create (Ljava/util/function/Predicate;Lnet/minecraft/world/entity/ai/memory/MemoryModuleType;Lnet/minecraft/world/entity/ai/memory/MemoryModuleType;Lnet/minecraft/util/valueproviders/UniformInt;)Lnet/minecraft/world/entity/ai/behavior/BehaviorControl; +MD: net/minecraft/world/entity/ai/behavior/CopyMemoryWithExpiry/m_258042_ (Lnet/minecraft/world/entity/ai/memory/MemoryModuleType;Lnet/minecraft/world/entity/ai/memory/MemoryModuleType;Ljava/util/function/Predicate;Lnet/minecraft/util/valueproviders/UniformInt;Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/world/entity/ai/behavior/CopyMemoryWithExpiry/lambda$create$2 (Lnet/minecraft/world/entity/ai/memory/MemoryModuleType;Lnet/minecraft/world/entity/ai/memory/MemoryModuleType;Ljava/util/function/Predicate;Lnet/minecraft/util/valueproviders/UniformInt;Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/world/entity/ai/behavior/CopyMemoryWithExpiry/m_263977_ (Ljava/util/function/Predicate;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/util/valueproviders/UniformInt;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)Z net/minecraft/world/entity/ai/behavior/CopyMemoryWithExpiry/lambda$create$0 (Ljava/util/function/Predicate;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/util/valueproviders/UniformInt;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)Z +MD: net/minecraft/world/entity/ai/behavior/CountDownCooldownTicks/ (Lnet/minecraft/world/entity/ai/memory/MemoryModuleType;)V net/minecraft/world/entity/ai/behavior/CountDownCooldownTicks/ (Lnet/minecraft/world/entity/ai/memory/MemoryModuleType;)V +MD: net/minecraft/world/entity/ai/behavior/CountDownCooldownTicks/m_147465_ (Lnet/minecraft/world/entity/LivingEntity;)Ljava/util/Optional; net/minecraft/world/entity/ai/behavior/CountDownCooldownTicks/getCooldownTickMemory (Lnet/minecraft/world/entity/LivingEntity;)Ljava/util/Optional; +MD: net/minecraft/world/entity/ai/behavior/CountDownCooldownTicks/m_6725_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)V net/minecraft/world/entity/ai/behavior/CountDownCooldownTicks/tick (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)V +MD: net/minecraft/world/entity/ai/behavior/CountDownCooldownTicks/m_6732_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)V net/minecraft/world/entity/ai/behavior/CountDownCooldownTicks/stop (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)V +MD: net/minecraft/world/entity/ai/behavior/CountDownCooldownTicks/m_6737_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)Z net/minecraft/world/entity/ai/behavior/CountDownCooldownTicks/canStillUse (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)Z +MD: net/minecraft/world/entity/ai/behavior/CountDownCooldownTicks/m_7773_ (J)Z net/minecraft/world/entity/ai/behavior/CountDownCooldownTicks/timedOut (J)Z +MD: net/minecraft/world/entity/ai/behavior/Croak/ ()V net/minecraft/world/entity/ai/behavior/Croak/ ()V +MD: net/minecraft/world/entity/ai/behavior/Croak/m_6114_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/animal/frog/Frog;)Z net/minecraft/world/entity/ai/behavior/Croak/checkExtraStartConditions (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/animal/frog/Frog;)Z +MD: net/minecraft/world/entity/ai/behavior/Croak/m_6114_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;)Z net/minecraft/world/entity/ai/behavior/Croak/checkExtraStartConditions (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;)Z +MD: net/minecraft/world/entity/ai/behavior/Croak/m_6725_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)V net/minecraft/world/entity/ai/behavior/Croak/tick (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)V +MD: net/minecraft/world/entity/ai/behavior/Croak/m_6725_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/animal/frog/Frog;J)V net/minecraft/world/entity/ai/behavior/Croak/tick (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/animal/frog/Frog;J)V +MD: net/minecraft/world/entity/ai/behavior/Croak/m_6732_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)V net/minecraft/world/entity/ai/behavior/Croak/stop (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)V +MD: net/minecraft/world/entity/ai/behavior/Croak/m_6732_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/animal/frog/Frog;J)V net/minecraft/world/entity/ai/behavior/Croak/stop (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/animal/frog/Frog;J)V +MD: net/minecraft/world/entity/ai/behavior/Croak/m_6735_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/animal/frog/Frog;J)V net/minecraft/world/entity/ai/behavior/Croak/start (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/animal/frog/Frog;J)V +MD: net/minecraft/world/entity/ai/behavior/Croak/m_6735_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)V net/minecraft/world/entity/ai/behavior/Croak/start (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)V +MD: net/minecraft/world/entity/ai/behavior/Croak/m_6737_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/animal/frog/Frog;J)Z net/minecraft/world/entity/ai/behavior/Croak/canStillUse (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/animal/frog/Frog;J)Z +MD: net/minecraft/world/entity/ai/behavior/Croak/m_6737_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)Z net/minecraft/world/entity/ai/behavior/Croak/canStillUse (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)Z +MD: net/minecraft/world/entity/ai/behavior/CrossbowAttack/ ()V net/minecraft/world/entity/ai/behavior/CrossbowAttack/ ()V +MD: net/minecraft/world/entity/ai/behavior/CrossbowAttack/m_22784_ (Lnet/minecraft/world/entity/LivingEntity;)Lnet/minecraft/world/entity/LivingEntity; net/minecraft/world/entity/ai/behavior/CrossbowAttack/getAttackTarget (Lnet/minecraft/world/entity/LivingEntity;)Lnet/minecraft/world/entity/LivingEntity; +MD: net/minecraft/world/entity/ai/behavior/CrossbowAttack/m_22786_ (Lnet/minecraft/world/entity/Mob;Lnet/minecraft/world/entity/LivingEntity;)V net/minecraft/world/entity/ai/behavior/CrossbowAttack/crossbowAttack (Lnet/minecraft/world/entity/Mob;Lnet/minecraft/world/entity/LivingEntity;)V +MD: net/minecraft/world/entity/ai/behavior/CrossbowAttack/m_22797_ (Lnet/minecraft/world/entity/Mob;Lnet/minecraft/world/entity/LivingEntity;)V net/minecraft/world/entity/ai/behavior/CrossbowAttack/lookAtTarget (Lnet/minecraft/world/entity/Mob;Lnet/minecraft/world/entity/LivingEntity;)V +MD: net/minecraft/world/entity/ai/behavior/CrossbowAttack/m_6114_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;)Z net/minecraft/world/entity/ai/behavior/CrossbowAttack/checkExtraStartConditions (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;)Z +MD: net/minecraft/world/entity/ai/behavior/CrossbowAttack/m_6114_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/Mob;)Z net/minecraft/world/entity/ai/behavior/CrossbowAttack/checkExtraStartConditions (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/Mob;)Z +MD: net/minecraft/world/entity/ai/behavior/CrossbowAttack/m_6725_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/Mob;J)V net/minecraft/world/entity/ai/behavior/CrossbowAttack/tick (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/Mob;J)V +MD: net/minecraft/world/entity/ai/behavior/CrossbowAttack/m_6725_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)V net/minecraft/world/entity/ai/behavior/CrossbowAttack/tick (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)V +MD: net/minecraft/world/entity/ai/behavior/CrossbowAttack/m_6732_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/Mob;J)V net/minecraft/world/entity/ai/behavior/CrossbowAttack/stop (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/Mob;J)V +MD: net/minecraft/world/entity/ai/behavior/CrossbowAttack/m_6732_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)V net/minecraft/world/entity/ai/behavior/CrossbowAttack/stop (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)V +MD: net/minecraft/world/entity/ai/behavior/CrossbowAttack/m_6737_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)Z net/minecraft/world/entity/ai/behavior/CrossbowAttack/canStillUse (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)Z +MD: net/minecraft/world/entity/ai/behavior/CrossbowAttack/m_6737_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/Mob;J)Z net/minecraft/world/entity/ai/behavior/CrossbowAttack/canStillUse (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/Mob;J)Z +MD: net/minecraft/world/entity/ai/behavior/CrossbowAttack$CrossbowState/ ()V net/minecraft/world/entity/ai/behavior/CrossbowAttack$CrossbowState/ ()V +MD: net/minecraft/world/entity/ai/behavior/CrossbowAttack$CrossbowState/ (Ljava/lang/String;I)V net/minecraft/world/entity/ai/behavior/CrossbowAttack$CrossbowState/ (Ljava/lang/String;I)V +MD: net/minecraft/world/entity/ai/behavior/CrossbowAttack$CrossbowState/m_147480_ ()[Lnet/minecraft/world/entity/ai/behavior/CrossbowAttack$CrossbowState; net/minecraft/world/entity/ai/behavior/CrossbowAttack$CrossbowState/$values ()[Lnet/minecraft/world/entity/ai/behavior/CrossbowAttack$CrossbowState; +MD: net/minecraft/world/entity/ai/behavior/CrossbowAttack$CrossbowState/valueOf (Ljava/lang/String;)Lnet/minecraft/world/entity/ai/behavior/CrossbowAttack$CrossbowState; net/minecraft/world/entity/ai/behavior/CrossbowAttack$CrossbowState/valueOf (Ljava/lang/String;)Lnet/minecraft/world/entity/ai/behavior/CrossbowAttack$CrossbowState; +MD: net/minecraft/world/entity/ai/behavior/CrossbowAttack$CrossbowState/values ()[Lnet/minecraft/world/entity/ai/behavior/CrossbowAttack$CrossbowState; net/minecraft/world/entity/ai/behavior/CrossbowAttack$CrossbowState/values ()[Lnet/minecraft/world/entity/ai/behavior/CrossbowAttack$CrossbowState; +MD: net/minecraft/world/entity/ai/behavior/DismountOrSkipMounting/ ()V net/minecraft/world/entity/ai/behavior/DismountOrSkipMounting/ ()V +MD: net/minecraft/world/entity/ai/behavior/DismountOrSkipMounting/m_257447_ (Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/entity/Entity;I)Z net/minecraft/world/entity/ai/behavior/DismountOrSkipMounting/isVehicleValid (Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/entity/Entity;I)Z +MD: net/minecraft/world/entity/ai/behavior/DismountOrSkipMounting/m_257459_ (ILjava/util/function/BiPredicate;)Lnet/minecraft/world/entity/ai/behavior/BehaviorControl; net/minecraft/world/entity/ai/behavior/DismountOrSkipMounting/create (ILjava/util/function/BiPredicate;)Lnet/minecraft/world/entity/ai/behavior/BehaviorControl; +MD: net/minecraft/world/entity/ai/behavior/DismountOrSkipMounting/m_257527_ (Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;ILjava/util/function/BiPredicate;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;)Lnet/minecraft/world/entity/ai/behavior/declarative/Trigger; net/minecraft/world/entity/ai/behavior/DismountOrSkipMounting/lambda$create$1 (Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;ILjava/util/function/BiPredicate;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;)Lnet/minecraft/world/entity/ai/behavior/declarative/Trigger; +MD: net/minecraft/world/entity/ai/behavior/DismountOrSkipMounting/m_257906_ (ILjava/util/function/BiPredicate;Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/world/entity/ai/behavior/DismountOrSkipMounting/lambda$create$2 (ILjava/util/function/BiPredicate;Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/world/entity/ai/behavior/DismountOrSkipMounting/m_258045_ (Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;ILjava/util/function/BiPredicate;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)Z net/minecraft/world/entity/ai/behavior/DismountOrSkipMounting/lambda$create$0 (Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;ILjava/util/function/BiPredicate;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)Z +MD: net/minecraft/world/entity/ai/behavior/DoNothing/ (II)V net/minecraft/world/entity/ai/behavior/DoNothing/ (II)V +MD: net/minecraft/world/entity/ai/behavior/DoNothing/m_22536_ ()Lnet/minecraft/world/entity/ai/behavior/Behavior$Status; net/minecraft/world/entity/ai/behavior/DoNothing/getStatus ()Lnet/minecraft/world/entity/ai/behavior/Behavior$Status; +MD: net/minecraft/world/entity/ai/behavior/DoNothing/m_22554_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)Z net/minecraft/world/entity/ai/behavior/DoNothing/tryStart (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)Z +MD: net/minecraft/world/entity/ai/behavior/DoNothing/m_22558_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)V net/minecraft/world/entity/ai/behavior/DoNothing/tickOrStop (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)V +MD: net/minecraft/world/entity/ai/behavior/DoNothing/m_22562_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)V net/minecraft/world/entity/ai/behavior/DoNothing/doStop (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)V +MD: net/minecraft/world/entity/ai/behavior/DoNothing/m_22566_ ()Ljava/lang/String; net/minecraft/world/entity/ai/behavior/DoNothing/debugString ()Ljava/lang/String; +MD: net/minecraft/world/entity/ai/behavior/EntityTracker/ (Lnet/minecraft/world/entity/Entity;Z)V net/minecraft/world/entity/ai/behavior/EntityTracker/ (Lnet/minecraft/world/entity/Entity;Z)V +MD: net/minecraft/world/entity/ai/behavior/EntityTracker/m_147481_ ()Lnet/minecraft/world/entity/Entity; net/minecraft/world/entity/ai/behavior/EntityTracker/getEntity ()Lnet/minecraft/world/entity/Entity; +MD: net/minecraft/world/entity/ai/behavior/EntityTracker/m_6675_ ()Lnet/minecraft/core/BlockPos; net/minecraft/world/entity/ai/behavior/EntityTracker/currentBlockPosition ()Lnet/minecraft/core/BlockPos; +MD: net/minecraft/world/entity/ai/behavior/EntityTracker/m_6826_ (Lnet/minecraft/world/entity/LivingEntity;)Z net/minecraft/world/entity/ai/behavior/EntityTracker/isVisibleBy (Lnet/minecraft/world/entity/LivingEntity;)Z +MD: net/minecraft/world/entity/ai/behavior/EntityTracker/m_7024_ ()Lnet/minecraft/world/phys/Vec3; net/minecraft/world/entity/ai/behavior/EntityTracker/currentPosition ()Lnet/minecraft/world/phys/Vec3; +MD: net/minecraft/world/entity/ai/behavior/EntityTracker/toString ()Ljava/lang/String; net/minecraft/world/entity/ai/behavior/EntityTracker/toString ()Ljava/lang/String; +MD: net/minecraft/world/entity/ai/behavior/EraseMemoryIf/ ()V net/minecraft/world/entity/ai/behavior/EraseMemoryIf/ ()V +MD: net/minecraft/world/entity/ai/behavior/EraseMemoryIf/m_257665_ (Lnet/minecraft/world/entity/ai/memory/MemoryModuleType;Ljava/util/function/Predicate;Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/world/entity/ai/behavior/EraseMemoryIf/lambda$create$2 (Lnet/minecraft/world/entity/ai/memory/MemoryModuleType;Ljava/util/function/Predicate;Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/world/entity/ai/behavior/EraseMemoryIf/m_257682_ (Ljava/util/function/Predicate;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)Z net/minecraft/world/entity/ai/behavior/EraseMemoryIf/lambda$create$0 (Ljava/util/function/Predicate;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)Z +MD: net/minecraft/world/entity/ai/behavior/EraseMemoryIf/m_257964_ (Ljava/util/function/Predicate;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;)Lnet/minecraft/world/entity/ai/behavior/declarative/Trigger; net/minecraft/world/entity/ai/behavior/EraseMemoryIf/lambda$create$1 (Ljava/util/function/Predicate;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;)Lnet/minecraft/world/entity/ai/behavior/declarative/Trigger; +MD: net/minecraft/world/entity/ai/behavior/EraseMemoryIf/m_258093_ (Ljava/util/function/Predicate;Lnet/minecraft/world/entity/ai/memory/MemoryModuleType;)Lnet/minecraft/world/entity/ai/behavior/BehaviorControl; net/minecraft/world/entity/ai/behavior/EraseMemoryIf/create (Ljava/util/function/Predicate;Lnet/minecraft/world/entity/ai/memory/MemoryModuleType;)Lnet/minecraft/world/entity/ai/behavior/BehaviorControl; +MD: net/minecraft/world/entity/ai/behavior/FollowTemptation/ (Ljava/util/function/Function;Ljava/util/function/Function;)V net/minecraft/world/entity/ai/behavior/FollowTemptation/ (Ljava/util/function/Function;Ljava/util/function/Function;)V +MD: net/minecraft/world/entity/ai/behavior/FollowTemptation/ (Ljava/util/function/Function;)V net/minecraft/world/entity/ai/behavior/FollowTemptation/ (Ljava/util/function/Function;)V +MD: net/minecraft/world/entity/ai/behavior/FollowTemptation/m_147497_ (Lnet/minecraft/world/entity/PathfinderMob;)F net/minecraft/world/entity/ai/behavior/FollowTemptation/getSpeedModifier (Lnet/minecraft/world/entity/PathfinderMob;)F +MD: net/minecraft/world/entity/ai/behavior/FollowTemptation/m_147499_ ()Lcom/google/common/collect/ImmutableMap; net/minecraft/world/entity/ai/behavior/FollowTemptation/lambda$new$1 ()Lcom/google/common/collect/ImmutableMap; +MD: net/minecraft/world/entity/ai/behavior/FollowTemptation/m_147508_ (Lnet/minecraft/world/entity/PathfinderMob;)Ljava/util/Optional; net/minecraft/world/entity/ai/behavior/FollowTemptation/getTemptingPlayer (Lnet/minecraft/world/entity/PathfinderMob;)Ljava/util/Optional; +MD: net/minecraft/world/entity/ai/behavior/FollowTemptation/m_288122_ (Lnet/minecraft/world/entity/LivingEntity;)Ljava/lang/Double; net/minecraft/world/entity/ai/behavior/FollowTemptation/lambda$new$0 (Lnet/minecraft/world/entity/LivingEntity;)Ljava/lang/Double; +MD: net/minecraft/world/entity/ai/behavior/FollowTemptation/m_6725_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)V net/minecraft/world/entity/ai/behavior/FollowTemptation/tick (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)V +MD: net/minecraft/world/entity/ai/behavior/FollowTemptation/m_6725_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/PathfinderMob;J)V net/minecraft/world/entity/ai/behavior/FollowTemptation/tick (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/PathfinderMob;J)V +MD: net/minecraft/world/entity/ai/behavior/FollowTemptation/m_6732_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)V net/minecraft/world/entity/ai/behavior/FollowTemptation/stop (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)V +MD: net/minecraft/world/entity/ai/behavior/FollowTemptation/m_6732_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/PathfinderMob;J)V net/minecraft/world/entity/ai/behavior/FollowTemptation/stop (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/PathfinderMob;J)V +MD: net/minecraft/world/entity/ai/behavior/FollowTemptation/m_6735_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/PathfinderMob;J)V net/minecraft/world/entity/ai/behavior/FollowTemptation/start (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/PathfinderMob;J)V +MD: net/minecraft/world/entity/ai/behavior/FollowTemptation/m_6735_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)V net/minecraft/world/entity/ai/behavior/FollowTemptation/start (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)V +MD: net/minecraft/world/entity/ai/behavior/FollowTemptation/m_6737_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)Z net/minecraft/world/entity/ai/behavior/FollowTemptation/canStillUse (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)Z +MD: net/minecraft/world/entity/ai/behavior/FollowTemptation/m_6737_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/PathfinderMob;J)Z net/minecraft/world/entity/ai/behavior/FollowTemptation/canStillUse (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/PathfinderMob;J)Z +MD: net/minecraft/world/entity/ai/behavior/FollowTemptation/m_7773_ (J)Z net/minecraft/world/entity/ai/behavior/FollowTemptation/timedOut (J)Z +MD: net/minecraft/world/entity/ai/behavior/GateBehavior/ (Ljava/util/Map;Ljava/util/Set;Lnet/minecraft/world/entity/ai/behavior/GateBehavior$OrderPolicy;Lnet/minecraft/world/entity/ai/behavior/GateBehavior$RunningPolicy;Ljava/util/List;)V net/minecraft/world/entity/ai/behavior/GateBehavior/ (Ljava/util/Map;Ljava/util/Set;Lnet/minecraft/world/entity/ai/behavior/GateBehavior$OrderPolicy;Lnet/minecraft/world/entity/ai/behavior/GateBehavior$RunningPolicy;Ljava/util/List;)V +MD: net/minecraft/world/entity/ai/behavior/GateBehavior/m_22536_ ()Lnet/minecraft/world/entity/ai/behavior/Behavior$Status; net/minecraft/world/entity/ai/behavior/GateBehavior/getStatus ()Lnet/minecraft/world/entity/ai/behavior/Behavior$Status; +MD: net/minecraft/world/entity/ai/behavior/GateBehavior/m_22554_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)Z net/minecraft/world/entity/ai/behavior/GateBehavior/tryStart (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)Z +MD: net/minecraft/world/entity/ai/behavior/GateBehavior/m_22558_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)V net/minecraft/world/entity/ai/behavior/GateBehavior/tickOrStop (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)V +MD: net/minecraft/world/entity/ai/behavior/GateBehavior/m_22562_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)V net/minecraft/world/entity/ai/behavior/GateBehavior/doStop (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)V +MD: net/minecraft/world/entity/ai/behavior/GateBehavior/m_22566_ ()Ljava/lang/String; net/minecraft/world/entity/ai/behavior/GateBehavior/debugString ()Ljava/lang/String; +MD: net/minecraft/world/entity/ai/behavior/GateBehavior/m_257173_ (Lcom/mojang/datafixers/util/Pair;)V net/minecraft/world/entity/ai/behavior/GateBehavior/lambda$new$0 (Lcom/mojang/datafixers/util/Pair;)V +MD: net/minecraft/world/entity/ai/behavior/GateBehavior/m_257174_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;JLnet/minecraft/world/entity/ai/behavior/BehaviorControl;)V net/minecraft/world/entity/ai/behavior/GateBehavior/lambda$tickOrStop$2 (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;JLnet/minecraft/world/entity/ai/behavior/BehaviorControl;)V +MD: net/minecraft/world/entity/ai/behavior/GateBehavior/m_257175_ (Lnet/minecraft/world/entity/ai/behavior/BehaviorControl;)Z net/minecraft/world/entity/ai/behavior/GateBehavior/lambda$doStop$4 (Lnet/minecraft/world/entity/ai/behavior/BehaviorControl;)Z +MD: net/minecraft/world/entity/ai/behavior/GateBehavior/m_257176_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;JLnet/minecraft/world/entity/ai/behavior/BehaviorControl;)V net/minecraft/world/entity/ai/behavior/GateBehavior/lambda$doStop$5 (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;JLnet/minecraft/world/entity/ai/behavior/BehaviorControl;)V +MD: net/minecraft/world/entity/ai/behavior/GateBehavior/m_257177_ (Lnet/minecraft/world/entity/ai/behavior/BehaviorControl;)Z net/minecraft/world/entity/ai/behavior/GateBehavior/lambda$tickOrStop$1 (Lnet/minecraft/world/entity/ai/behavior/BehaviorControl;)Z +MD: net/minecraft/world/entity/ai/behavior/GateBehavior/m_257178_ (Lnet/minecraft/world/entity/ai/behavior/BehaviorControl;)Z net/minecraft/world/entity/ai/behavior/GateBehavior/lambda$toString$6 (Lnet/minecraft/world/entity/ai/behavior/BehaviorControl;)Z +MD: net/minecraft/world/entity/ai/behavior/GateBehavior/m_257179_ (Lnet/minecraft/world/entity/ai/behavior/BehaviorControl;)Z net/minecraft/world/entity/ai/behavior/GateBehavior/lambda$tickOrStop$3 (Lnet/minecraft/world/entity/ai/behavior/BehaviorControl;)Z +MD: net/minecraft/world/entity/ai/behavior/GateBehavior/m_257655_ (Lnet/minecraft/world/entity/LivingEntity;)Z net/minecraft/world/entity/ai/behavior/GateBehavior/hasRequiredMemories (Lnet/minecraft/world/entity/LivingEntity;)Z +MD: net/minecraft/world/entity/ai/behavior/GateBehavior/toString ()Ljava/lang/String; net/minecraft/world/entity/ai/behavior/GateBehavior/toString ()Ljava/lang/String; +MD: net/minecraft/world/entity/ai/behavior/GateBehavior$OrderPolicy/ ()V net/minecraft/world/entity/ai/behavior/GateBehavior$OrderPolicy/ ()V +MD: net/minecraft/world/entity/ai/behavior/GateBehavior$OrderPolicy/ (Ljava/lang/String;ILjava/util/function/Consumer;)V net/minecraft/world/entity/ai/behavior/GateBehavior$OrderPolicy/ (Ljava/lang/String;ILjava/util/function/Consumer;)V +MD: net/minecraft/world/entity/ai/behavior/GateBehavior$OrderPolicy/m_147526_ ()[Lnet/minecraft/world/entity/ai/behavior/GateBehavior$OrderPolicy; net/minecraft/world/entity/ai/behavior/GateBehavior$OrderPolicy/$values ()[Lnet/minecraft/world/entity/ai/behavior/GateBehavior$OrderPolicy; +MD: net/minecraft/world/entity/ai/behavior/GateBehavior$OrderPolicy/m_147527_ (Lnet/minecraft/world/entity/ai/behavior/ShufflingList;)V net/minecraft/world/entity/ai/behavior/GateBehavior$OrderPolicy/apply (Lnet/minecraft/world/entity/ai/behavior/ShufflingList;)V +MD: net/minecraft/world/entity/ai/behavior/GateBehavior$OrderPolicy/m_147529_ (Lnet/minecraft/world/entity/ai/behavior/ShufflingList;)V net/minecraft/world/entity/ai/behavior/GateBehavior$OrderPolicy/lambda$static$0 (Lnet/minecraft/world/entity/ai/behavior/ShufflingList;)V +MD: net/minecraft/world/entity/ai/behavior/GateBehavior$OrderPolicy/valueOf (Ljava/lang/String;)Lnet/minecraft/world/entity/ai/behavior/GateBehavior$OrderPolicy; net/minecraft/world/entity/ai/behavior/GateBehavior$OrderPolicy/valueOf (Ljava/lang/String;)Lnet/minecraft/world/entity/ai/behavior/GateBehavior$OrderPolicy; +MD: net/minecraft/world/entity/ai/behavior/GateBehavior$OrderPolicy/values ()[Lnet/minecraft/world/entity/ai/behavior/GateBehavior$OrderPolicy; net/minecraft/world/entity/ai/behavior/GateBehavior$OrderPolicy/values ()[Lnet/minecraft/world/entity/ai/behavior/GateBehavior$OrderPolicy; +MD: net/minecraft/world/entity/ai/behavior/GateBehavior$RunningPolicy/ ()V net/minecraft/world/entity/ai/behavior/GateBehavior$RunningPolicy/ ()V +MD: net/minecraft/world/entity/ai/behavior/GateBehavior$RunningPolicy/ (Ljava/lang/String;I)V net/minecraft/world/entity/ai/behavior/GateBehavior$RunningPolicy/ (Ljava/lang/String;I)V +MD: net/minecraft/world/entity/ai/behavior/GateBehavior$RunningPolicy/m_142144_ (Ljava/util/stream/Stream;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)V net/minecraft/world/entity/ai/behavior/GateBehavior$RunningPolicy/apply (Ljava/util/stream/Stream;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)V +MD: net/minecraft/world/entity/ai/behavior/GateBehavior$RunningPolicy/m_147531_ ()[Lnet/minecraft/world/entity/ai/behavior/GateBehavior$RunningPolicy; net/minecraft/world/entity/ai/behavior/GateBehavior$RunningPolicy/$values ()[Lnet/minecraft/world/entity/ai/behavior/GateBehavior$RunningPolicy; +MD: net/minecraft/world/entity/ai/behavior/GateBehavior$RunningPolicy/valueOf (Ljava/lang/String;)Lnet/minecraft/world/entity/ai/behavior/GateBehavior$RunningPolicy; net/minecraft/world/entity/ai/behavior/GateBehavior$RunningPolicy/valueOf (Ljava/lang/String;)Lnet/minecraft/world/entity/ai/behavior/GateBehavior$RunningPolicy; +MD: net/minecraft/world/entity/ai/behavior/GateBehavior$RunningPolicy/values ()[Lnet/minecraft/world/entity/ai/behavior/GateBehavior$RunningPolicy; net/minecraft/world/entity/ai/behavior/GateBehavior$RunningPolicy/values ()[Lnet/minecraft/world/entity/ai/behavior/GateBehavior$RunningPolicy; +MD: net/minecraft/world/entity/ai/behavior/GateBehavior$RunningPolicy$1/ (Ljava/lang/String;I)V net/minecraft/world/entity/ai/behavior/GateBehavior$RunningPolicy$1/ (Ljava/lang/String;I)V +MD: net/minecraft/world/entity/ai/behavior/GateBehavior$RunningPolicy$1/m_142144_ (Ljava/util/stream/Stream;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)V net/minecraft/world/entity/ai/behavior/GateBehavior$RunningPolicy$1/apply (Ljava/util/stream/Stream;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)V +MD: net/minecraft/world/entity/ai/behavior/GateBehavior$RunningPolicy$1/m_257180_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;JLnet/minecraft/world/entity/ai/behavior/BehaviorControl;)Z net/minecraft/world/entity/ai/behavior/GateBehavior$RunningPolicy$1/lambda$apply$1 (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;JLnet/minecraft/world/entity/ai/behavior/BehaviorControl;)Z +MD: net/minecraft/world/entity/ai/behavior/GateBehavior$RunningPolicy$1/m_257181_ (Lnet/minecraft/world/entity/ai/behavior/BehaviorControl;)Z net/minecraft/world/entity/ai/behavior/GateBehavior$RunningPolicy$1/lambda$apply$0 (Lnet/minecraft/world/entity/ai/behavior/BehaviorControl;)Z +MD: net/minecraft/world/entity/ai/behavior/GateBehavior$RunningPolicy$2/ (Ljava/lang/String;I)V net/minecraft/world/entity/ai/behavior/GateBehavior$RunningPolicy$2/ (Ljava/lang/String;I)V +MD: net/minecraft/world/entity/ai/behavior/GateBehavior$RunningPolicy$2/m_142144_ (Ljava/util/stream/Stream;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)V net/minecraft/world/entity/ai/behavior/GateBehavior$RunningPolicy$2/apply (Ljava/util/stream/Stream;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)V +MD: net/minecraft/world/entity/ai/behavior/GateBehavior$RunningPolicy$2/m_257182_ (Lnet/minecraft/world/entity/ai/behavior/BehaviorControl;)Z net/minecraft/world/entity/ai/behavior/GateBehavior$RunningPolicy$2/lambda$apply$0 (Lnet/minecraft/world/entity/ai/behavior/BehaviorControl;)Z +MD: net/minecraft/world/entity/ai/behavior/GateBehavior$RunningPolicy$2/m_257183_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;JLnet/minecraft/world/entity/ai/behavior/BehaviorControl;)V net/minecraft/world/entity/ai/behavior/GateBehavior$RunningPolicy$2/lambda$apply$1 (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;JLnet/minecraft/world/entity/ai/behavior/BehaviorControl;)V +MD: net/minecraft/world/entity/ai/behavior/GiveGiftToHero/ ()V net/minecraft/world/entity/ai/behavior/GiveGiftToHero/ ()V +MD: net/minecraft/world/entity/ai/behavior/GiveGiftToHero/ (I)V net/minecraft/world/entity/ai/behavior/GiveGiftToHero/ (I)V +MD: net/minecraft/world/entity/ai/behavior/GiveGiftToHero/m_22993_ (Lnet/minecraft/server/level/ServerLevel;)I net/minecraft/world/entity/ai/behavior/GiveGiftToHero/calculateTimeUntilNextGift (Lnet/minecraft/server/level/ServerLevel;)I +MD: net/minecraft/world/entity/ai/behavior/GiveGiftToHero/m_23009_ (Lnet/minecraft/world/entity/npc/Villager;)Ljava/util/List; net/minecraft/world/entity/ai/behavior/GiveGiftToHero/getItemToThrow (Lnet/minecraft/world/entity/npc/Villager;)Ljava/util/List; +MD: net/minecraft/world/entity/ai/behavior/GiveGiftToHero/m_23011_ (Lnet/minecraft/world/entity/npc/Villager;Lnet/minecraft/world/entity/LivingEntity;)V net/minecraft/world/entity/ai/behavior/GiveGiftToHero/throwGift (Lnet/minecraft/world/entity/npc/Villager;Lnet/minecraft/world/entity/LivingEntity;)V +MD: net/minecraft/world/entity/ai/behavior/GiveGiftToHero/m_23014_ (Lnet/minecraft/world/entity/npc/Villager;Lnet/minecraft/world/entity/player/Player;)Z net/minecraft/world/entity/ai/behavior/GiveGiftToHero/isWithinThrowingDistance (Lnet/minecraft/world/entity/npc/Villager;Lnet/minecraft/world/entity/player/Player;)Z +MD: net/minecraft/world/entity/ai/behavior/GiveGiftToHero/m_23017_ (Lnet/minecraft/world/entity/player/Player;)Z net/minecraft/world/entity/ai/behavior/GiveGiftToHero/isHero (Lnet/minecraft/world/entity/player/Player;)Z +MD: net/minecraft/world/entity/ai/behavior/GiveGiftToHero/m_23019_ (Ljava/util/HashMap;)V net/minecraft/world/entity/ai/behavior/GiveGiftToHero/lambda$static$0 (Ljava/util/HashMap;)V +MD: net/minecraft/world/entity/ai/behavior/GiveGiftToHero/m_23029_ (Lnet/minecraft/world/entity/npc/Villager;)Z net/minecraft/world/entity/ai/behavior/GiveGiftToHero/isHeroVisible (Lnet/minecraft/world/entity/npc/Villager;)Z +MD: net/minecraft/world/entity/ai/behavior/GiveGiftToHero/m_23039_ (Lnet/minecraft/world/entity/npc/Villager;)Ljava/util/Optional; net/minecraft/world/entity/ai/behavior/GiveGiftToHero/getNearestTargetableHero (Lnet/minecraft/world/entity/npc/Villager;)Ljava/util/Optional; +MD: net/minecraft/world/entity/ai/behavior/GiveGiftToHero/m_6114_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;)Z net/minecraft/world/entity/ai/behavior/GiveGiftToHero/checkExtraStartConditions (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;)Z +MD: net/minecraft/world/entity/ai/behavior/GiveGiftToHero/m_6114_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/npc/Villager;)Z net/minecraft/world/entity/ai/behavior/GiveGiftToHero/checkExtraStartConditions (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/npc/Villager;)Z +MD: net/minecraft/world/entity/ai/behavior/GiveGiftToHero/m_6725_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)V net/minecraft/world/entity/ai/behavior/GiveGiftToHero/tick (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)V +MD: net/minecraft/world/entity/ai/behavior/GiveGiftToHero/m_6725_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/npc/Villager;J)V net/minecraft/world/entity/ai/behavior/GiveGiftToHero/tick (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/npc/Villager;J)V +MD: net/minecraft/world/entity/ai/behavior/GiveGiftToHero/m_6732_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)V net/minecraft/world/entity/ai/behavior/GiveGiftToHero/stop (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)V +MD: net/minecraft/world/entity/ai/behavior/GiveGiftToHero/m_6732_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/npc/Villager;J)V net/minecraft/world/entity/ai/behavior/GiveGiftToHero/stop (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/npc/Villager;J)V +MD: net/minecraft/world/entity/ai/behavior/GiveGiftToHero/m_6735_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/npc/Villager;J)V net/minecraft/world/entity/ai/behavior/GiveGiftToHero/start (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/npc/Villager;J)V +MD: net/minecraft/world/entity/ai/behavior/GiveGiftToHero/m_6735_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)V net/minecraft/world/entity/ai/behavior/GiveGiftToHero/start (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)V +MD: net/minecraft/world/entity/ai/behavior/GiveGiftToHero/m_6737_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/npc/Villager;J)Z net/minecraft/world/entity/ai/behavior/GiveGiftToHero/canStillUse (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/npc/Villager;J)Z +MD: net/minecraft/world/entity/ai/behavior/GiveGiftToHero/m_6737_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)Z net/minecraft/world/entity/ai/behavior/GiveGiftToHero/canStillUse (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)Z +MD: net/minecraft/world/entity/ai/behavior/GoAndGiveItemsToTarget/ (Ljava/util/function/Function;FI)V net/minecraft/world/entity/ai/behavior/GoAndGiveItemsToTarget/ (Ljava/util/function/Function;FI)V +MD: net/minecraft/world/entity/ai/behavior/GoAndGiveItemsToTarget/m_217202_ (Lnet/minecraft/world/entity/LivingEntity;)Z net/minecraft/world/entity/ai/behavior/GoAndGiveItemsToTarget/canThrowItemToTarget (Lnet/minecraft/world/entity/LivingEntity;)Z +MD: net/minecraft/world/entity/ai/behavior/GoAndGiveItemsToTarget/m_217204_ (Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/entity/ai/behavior/PositionTracker;)V net/minecraft/world/entity/ai/behavior/GoAndGiveItemsToTarget/lambda$start$0 (Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/entity/ai/behavior/PositionTracker;)V +MD: net/minecraft/world/entity/ai/behavior/GoAndGiveItemsToTarget/m_217207_ (Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/phys/Vec3;)V net/minecraft/world/entity/ai/behavior/GoAndGiveItemsToTarget/throwItem (Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/phys/Vec3;)V +MD: net/minecraft/world/entity/ai/behavior/GoAndGiveItemsToTarget/m_217211_ (Lnet/minecraft/world/entity/ai/behavior/PositionTracker;)Lnet/minecraft/world/phys/Vec3; net/minecraft/world/entity/ai/behavior/GoAndGiveItemsToTarget/getThrowPosition (Lnet/minecraft/world/entity/ai/behavior/PositionTracker;)Lnet/minecraft/world/phys/Vec3; +MD: net/minecraft/world/entity/ai/behavior/GoAndGiveItemsToTarget/m_217213_ (Lnet/minecraft/world/entity/ai/behavior/PositionTracker;Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/server/level/ServerPlayer;)V net/minecraft/world/entity/ai/behavior/GoAndGiveItemsToTarget/triggerDropItemOnBlock (Lnet/minecraft/world/entity/ai/behavior/PositionTracker;Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/server/level/ServerPlayer;)V +MD: net/minecraft/world/entity/ai/behavior/GoAndGiveItemsToTarget/m_217221_ (Lnet/minecraft/world/entity/ai/behavior/PositionTracker;Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/server/level/ServerPlayer;)V net/minecraft/world/entity/ai/behavior/GoAndGiveItemsToTarget/lambda$tick$1 (Lnet/minecraft/world/entity/ai/behavior/PositionTracker;Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/server/level/ServerPlayer;)V +MD: net/minecraft/world/entity/ai/behavior/GoAndGiveItemsToTarget/m_6114_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;)Z net/minecraft/world/entity/ai/behavior/GoAndGiveItemsToTarget/checkExtraStartConditions (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;)Z +MD: net/minecraft/world/entity/ai/behavior/GoAndGiveItemsToTarget/m_6725_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)V net/minecraft/world/entity/ai/behavior/GoAndGiveItemsToTarget/tick (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)V +MD: net/minecraft/world/entity/ai/behavior/GoAndGiveItemsToTarget/m_6735_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)V net/minecraft/world/entity/ai/behavior/GoAndGiveItemsToTarget/start (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)V +MD: net/minecraft/world/entity/ai/behavior/GoAndGiveItemsToTarget/m_6737_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)Z net/minecraft/world/entity/ai/behavior/GoAndGiveItemsToTarget/canStillUse (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)Z +MD: net/minecraft/world/entity/ai/behavior/GoToClosestVillage/ ()V net/minecraft/world/entity/ai/behavior/GoToClosestVillage/ ()V +MD: net/minecraft/world/entity/ai/behavior/GoToClosestVillage/m_147552_ (Lnet/minecraft/world/entity/ai/village/poi/PoiManager;Lnet/minecraft/core/BlockPos;)D net/minecraft/world/entity/ai/behavior/GoToClosestVillage/lambda$create$0 (Lnet/minecraft/world/entity/ai/village/poi/PoiManager;Lnet/minecraft/core/BlockPos;)D +MD: net/minecraft/world/entity/ai/behavior/GoToClosestVillage/m_257184_ (FILnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/world/entity/ai/behavior/GoToClosestVillage/lambda$create$3 (FILnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/world/entity/ai/behavior/GoToClosestVillage/m_257186_ (FILnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;)Lnet/minecraft/world/entity/ai/behavior/declarative/Trigger; net/minecraft/world/entity/ai/behavior/GoToClosestVillage/lambda$create$2 (FILnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;)Lnet/minecraft/world/entity/ai/behavior/declarative/Trigger; +MD: net/minecraft/world/entity/ai/behavior/GoToClosestVillage/m_257375_ (FI)Lnet/minecraft/world/entity/ai/behavior/BehaviorControl; net/minecraft/world/entity/ai/behavior/GoToClosestVillage/create (FI)Lnet/minecraft/world/entity/ai/behavior/BehaviorControl; +MD: net/minecraft/world/entity/ai/behavior/GoToClosestVillage/m_274190_ (Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;FILnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/npc/Villager;J)Z net/minecraft/world/entity/ai/behavior/GoToClosestVillage/lambda$create$1 (Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;FILnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/npc/Villager;J)Z +MD: net/minecraft/world/entity/ai/behavior/GoToPotentialJobSite/ (F)V net/minecraft/world/entity/ai/behavior/GoToPotentialJobSite/ (F)V +MD: net/minecraft/world/entity/ai/behavior/GoToPotentialJobSite/m_217229_ (Lnet/minecraft/core/Holder;)Z net/minecraft/world/entity/ai/behavior/GoToPotentialJobSite/lambda$stop$1 (Lnet/minecraft/core/Holder;)Z +MD: net/minecraft/world/entity/ai/behavior/GoToPotentialJobSite/m_23109_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/GlobalPos;)V net/minecraft/world/entity/ai/behavior/GoToPotentialJobSite/lambda$stop$2 (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/GlobalPos;)V +MD: net/minecraft/world/entity/ai/behavior/GoToPotentialJobSite/m_23114_ (Lnet/minecraft/world/entity/schedule/Activity;)Ljava/lang/Boolean; net/minecraft/world/entity/ai/behavior/GoToPotentialJobSite/lambda$checkExtraStartConditions$0 (Lnet/minecraft/world/entity/schedule/Activity;)Ljava/lang/Boolean; +MD: net/minecraft/world/entity/ai/behavior/GoToPotentialJobSite/m_6114_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;)Z net/minecraft/world/entity/ai/behavior/GoToPotentialJobSite/checkExtraStartConditions (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;)Z +MD: net/minecraft/world/entity/ai/behavior/GoToPotentialJobSite/m_6114_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/npc/Villager;)Z net/minecraft/world/entity/ai/behavior/GoToPotentialJobSite/checkExtraStartConditions (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/npc/Villager;)Z +MD: net/minecraft/world/entity/ai/behavior/GoToPotentialJobSite/m_6725_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)V net/minecraft/world/entity/ai/behavior/GoToPotentialJobSite/tick (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)V +MD: net/minecraft/world/entity/ai/behavior/GoToPotentialJobSite/m_6725_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/npc/Villager;J)V net/minecraft/world/entity/ai/behavior/GoToPotentialJobSite/tick (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/npc/Villager;J)V +MD: net/minecraft/world/entity/ai/behavior/GoToPotentialJobSite/m_6732_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)V net/minecraft/world/entity/ai/behavior/GoToPotentialJobSite/stop (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)V +MD: net/minecraft/world/entity/ai/behavior/GoToPotentialJobSite/m_6732_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/npc/Villager;J)V net/minecraft/world/entity/ai/behavior/GoToPotentialJobSite/stop (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/npc/Villager;J)V +MD: net/minecraft/world/entity/ai/behavior/GoToPotentialJobSite/m_6737_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/npc/Villager;J)Z net/minecraft/world/entity/ai/behavior/GoToPotentialJobSite/canStillUse (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/npc/Villager;J)Z +MD: net/minecraft/world/entity/ai/behavior/GoToPotentialJobSite/m_6737_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)Z net/minecraft/world/entity/ai/behavior/GoToPotentialJobSite/canStillUse (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)Z +MD: net/minecraft/world/entity/ai/behavior/GoToTargetLocation/ ()V net/minecraft/world/entity/ai/behavior/GoToTargetLocation/ ()V +MD: net/minecraft/world/entity/ai/behavior/GoToTargetLocation/m_217246_ (Lnet/minecraft/util/RandomSource;)I net/minecraft/world/entity/ai/behavior/GoToTargetLocation/getRandomOffset (Lnet/minecraft/util/RandomSource;)I +MD: net/minecraft/world/entity/ai/behavior/GoToTargetLocation/m_217250_ (Lnet/minecraft/world/entity/Mob;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/core/BlockPos; net/minecraft/world/entity/ai/behavior/GoToTargetLocation/getNearbyPos (Lnet/minecraft/world/entity/Mob;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/core/BlockPos; +MD: net/minecraft/world/entity/ai/behavior/GoToTargetLocation/m_257423_ (Lnet/minecraft/world/entity/ai/memory/MemoryModuleType;IFLnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/world/entity/ai/behavior/GoToTargetLocation/lambda$create$2 (Lnet/minecraft/world/entity/ai/memory/MemoryModuleType;IFLnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/world/entity/ai/behavior/GoToTargetLocation/m_257680_ (Lnet/minecraft/world/entity/ai/memory/MemoryModuleType;IF)Lnet/minecraft/world/entity/ai/behavior/OneShot; net/minecraft/world/entity/ai/behavior/GoToTargetLocation/create (Lnet/minecraft/world/entity/ai/memory/MemoryModuleType;IF)Lnet/minecraft/world/entity/ai/behavior/OneShot; +MD: net/minecraft/world/entity/ai/behavior/GoToTargetLocation/m_258018_ (Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;IFLnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;)Lnet/minecraft/world/entity/ai/behavior/declarative/Trigger; net/minecraft/world/entity/ai/behavior/GoToTargetLocation/lambda$create$1 (Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;IFLnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;)Lnet/minecraft/world/entity/ai/behavior/declarative/Trigger; +MD: net/minecraft/world/entity/ai/behavior/GoToTargetLocation/m_289093_ (Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;IFLnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/Mob;J)Z net/minecraft/world/entity/ai/behavior/GoToTargetLocation/lambda$create$0 (Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;IFLnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/Mob;J)Z +MD: net/minecraft/world/entity/ai/behavior/GoToWantedItem/ ()V net/minecraft/world/entity/ai/behavior/GoToWantedItem/ ()V +MD: net/minecraft/world/entity/ai/behavior/GoToWantedItem/m_23157_ (Lnet/minecraft/world/entity/LivingEntity;)Z net/minecraft/world/entity/ai/behavior/GoToWantedItem/lambda$create$0 (Lnet/minecraft/world/entity/LivingEntity;)Z +MD: net/minecraft/world/entity/ai/behavior/GoToWantedItem/m_257187_ (ZLjava/util/function/Predicate;IFLnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/world/entity/ai/behavior/GoToWantedItem/lambda$create$3 (ZLjava/util/function/Predicate;IFLnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/world/entity/ai/behavior/GoToWantedItem/m_257188_ (Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Ljava/util/function/Predicate;IFLnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)Z net/minecraft/world/entity/ai/behavior/GoToWantedItem/lambda$create$1 (Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Ljava/util/function/Predicate;IFLnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)Z +MD: net/minecraft/world/entity/ai/behavior/GoToWantedItem/m_257189_ (Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;Ljava/util/function/Predicate;IFLnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;)Lnet/minecraft/world/entity/ai/behavior/declarative/Trigger; net/minecraft/world/entity/ai/behavior/GoToWantedItem/lambda$create$2 (Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;Ljava/util/function/Predicate;IFLnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;)Lnet/minecraft/world/entity/ai/behavior/declarative/Trigger; +MD: net/minecraft/world/entity/ai/behavior/GoToWantedItem/m_257526_ (FZI)Lnet/minecraft/world/entity/ai/behavior/BehaviorControl; net/minecraft/world/entity/ai/behavior/GoToWantedItem/create (FZI)Lnet/minecraft/world/entity/ai/behavior/BehaviorControl; +MD: net/minecraft/world/entity/ai/behavior/GoToWantedItem/m_257684_ (Ljava/util/function/Predicate;FZI)Lnet/minecraft/world/entity/ai/behavior/BehaviorControl; net/minecraft/world/entity/ai/behavior/GoToWantedItem/create (Ljava/util/function/Predicate;FZI)Lnet/minecraft/world/entity/ai/behavior/BehaviorControl; +MD: net/minecraft/world/entity/ai/behavior/HarvestFarmland/ ()V net/minecraft/world/entity/ai/behavior/HarvestFarmland/ ()V +MD: net/minecraft/world/entity/ai/behavior/HarvestFarmland/m_23164_ (Lnet/minecraft/server/level/ServerLevel;)Lnet/minecraft/core/BlockPos; net/minecraft/world/entity/ai/behavior/HarvestFarmland/getValidFarmland (Lnet/minecraft/server/level/ServerLevel;)Lnet/minecraft/core/BlockPos; +MD: net/minecraft/world/entity/ai/behavior/HarvestFarmland/m_23180_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/server/level/ServerLevel;)Z net/minecraft/world/entity/ai/behavior/HarvestFarmland/validPos (Lnet/minecraft/core/BlockPos;Lnet/minecraft/server/level/ServerLevel;)Z +MD: net/minecraft/world/entity/ai/behavior/HarvestFarmland/m_6114_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;)Z net/minecraft/world/entity/ai/behavior/HarvestFarmland/checkExtraStartConditions (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;)Z +MD: net/minecraft/world/entity/ai/behavior/HarvestFarmland/m_6114_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/npc/Villager;)Z net/minecraft/world/entity/ai/behavior/HarvestFarmland/checkExtraStartConditions (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/npc/Villager;)Z +MD: net/minecraft/world/entity/ai/behavior/HarvestFarmland/m_6725_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)V net/minecraft/world/entity/ai/behavior/HarvestFarmland/tick (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)V +MD: net/minecraft/world/entity/ai/behavior/HarvestFarmland/m_6725_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/npc/Villager;J)V net/minecraft/world/entity/ai/behavior/HarvestFarmland/tick (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/npc/Villager;J)V +MD: net/minecraft/world/entity/ai/behavior/HarvestFarmland/m_6732_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)V net/minecraft/world/entity/ai/behavior/HarvestFarmland/stop (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)V +MD: net/minecraft/world/entity/ai/behavior/HarvestFarmland/m_6732_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/npc/Villager;J)V net/minecraft/world/entity/ai/behavior/HarvestFarmland/stop (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/npc/Villager;J)V +MD: net/minecraft/world/entity/ai/behavior/HarvestFarmland/m_6735_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/npc/Villager;J)V net/minecraft/world/entity/ai/behavior/HarvestFarmland/start (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/npc/Villager;J)V +MD: net/minecraft/world/entity/ai/behavior/HarvestFarmland/m_6735_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)V net/minecraft/world/entity/ai/behavior/HarvestFarmland/start (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)V +MD: net/minecraft/world/entity/ai/behavior/HarvestFarmland/m_6737_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/npc/Villager;J)Z net/minecraft/world/entity/ai/behavior/HarvestFarmland/canStillUse (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/npc/Villager;J)Z +MD: net/minecraft/world/entity/ai/behavior/HarvestFarmland/m_6737_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)Z net/minecraft/world/entity/ai/behavior/HarvestFarmland/canStillUse (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)Z +MD: net/minecraft/world/entity/ai/behavior/InsideBrownianWalk/ ()V net/minecraft/world/entity/ai/behavior/InsideBrownianWalk/ ()V +MD: net/minecraft/world/entity/ai/behavior/InsideBrownianWalk/m_23224_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/PathfinderMob;Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/entity/ai/behavior/InsideBrownianWalk/lambda$create$2 (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/PathfinderMob;Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/entity/ai/behavior/InsideBrownianWalk/m_23228_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/entity/ai/behavior/InsideBrownianWalk/lambda$create$0 (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/entity/ai/behavior/InsideBrownianWalk/m_23234_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/PathfinderMob;Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/entity/ai/behavior/InsideBrownianWalk/lambda$create$1 (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/PathfinderMob;Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/entity/ai/behavior/InsideBrownianWalk/m_257190_ (Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;FLnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/PathfinderMob;J)Z net/minecraft/world/entity/ai/behavior/InsideBrownianWalk/lambda$create$4 (Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;FLnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/PathfinderMob;J)Z +MD: net/minecraft/world/entity/ai/behavior/InsideBrownianWalk/m_257191_ (FLnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;)Lnet/minecraft/world/entity/ai/behavior/declarative/Trigger; net/minecraft/world/entity/ai/behavior/InsideBrownianWalk/lambda$create$5 (FLnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;)Lnet/minecraft/world/entity/ai/behavior/declarative/Trigger; +MD: net/minecraft/world/entity/ai/behavior/InsideBrownianWalk/m_257192_ (FLnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/world/entity/ai/behavior/InsideBrownianWalk/lambda$create$6 (FLnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/world/entity/ai/behavior/InsideBrownianWalk/m_257193_ (Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;FLnet/minecraft/core/BlockPos;)V net/minecraft/world/entity/ai/behavior/InsideBrownianWalk/lambda$create$3 (Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;FLnet/minecraft/core/BlockPos;)V +MD: net/minecraft/world/entity/ai/behavior/InsideBrownianWalk/m_258053_ (F)Lnet/minecraft/world/entity/ai/behavior/BehaviorControl; net/minecraft/world/entity/ai/behavior/InsideBrownianWalk/create (F)Lnet/minecraft/world/entity/ai/behavior/BehaviorControl; +MD: net/minecraft/world/entity/ai/behavior/InteractWith/ ()V net/minecraft/world/entity/ai/behavior/InteractWith/ ()V +MD: net/minecraft/world/entity/ai/behavior/InteractWith/m_23284_ (Lnet/minecraft/world/entity/LivingEntity;)Z net/minecraft/world/entity/ai/behavior/InteractWith/lambda$of$1 (Lnet/minecraft/world/entity/LivingEntity;)Z +MD: net/minecraft/world/entity/ai/behavior/InteractWith/m_23286_ (Lnet/minecraft/world/entity/LivingEntity;)Z net/minecraft/world/entity/ai/behavior/InteractWith/lambda$of$0 (Lnet/minecraft/world/entity/LivingEntity;)Z +MD: net/minecraft/world/entity/ai/behavior/InteractWith/m_257194_ (Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Ljava/util/function/Predicate;Ljava/util/function/Predicate;ILnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;FILnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)Z net/minecraft/world/entity/ai/behavior/InteractWith/lambda$of$5 (Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Ljava/util/function/Predicate;Ljava/util/function/Predicate;ILnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;FILnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)Z +MD: net/minecraft/world/entity/ai/behavior/InteractWith/m_257195_ (Lnet/minecraft/world/entity/LivingEntity;ILjava/util/function/Predicate;Lnet/minecraft/world/entity/LivingEntity;)Z net/minecraft/world/entity/ai/behavior/InteractWith/lambda$of$3 (Lnet/minecraft/world/entity/LivingEntity;ILjava/util/function/Predicate;Lnet/minecraft/world/entity/LivingEntity;)Z +MD: net/minecraft/world/entity/ai/behavior/InteractWith/m_257196_ (Lnet/minecraft/world/entity/ai/memory/MemoryModuleType;Ljava/util/function/Predicate;Ljava/util/function/Predicate;IFILnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/world/entity/ai/behavior/InteractWith/lambda$of$7 (Lnet/minecraft/world/entity/ai/memory/MemoryModuleType;Ljava/util/function/Predicate;Ljava/util/function/Predicate;IFILnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/world/entity/ai/behavior/InteractWith/m_257197_ (Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;FILnet/minecraft/world/entity/LivingEntity;)V net/minecraft/world/entity/ai/behavior/InteractWith/lambda$of$4 (Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;FILnet/minecraft/world/entity/LivingEntity;)V +MD: net/minecraft/world/entity/ai/behavior/InteractWith/m_257198_ (Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;Ljava/util/function/Predicate;Ljava/util/function/Predicate;IFILnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;)Lnet/minecraft/world/entity/ai/behavior/declarative/Trigger; net/minecraft/world/entity/ai/behavior/InteractWith/lambda$of$6 (Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;Ljava/util/function/Predicate;Ljava/util/function/Predicate;IFILnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;)Lnet/minecraft/world/entity/ai/behavior/declarative/Trigger; +MD: net/minecraft/world/entity/ai/behavior/InteractWith/m_257746_ (Lnet/minecraft/world/entity/EntityType;ILjava/util/function/Predicate;Ljava/util/function/Predicate;Lnet/minecraft/world/entity/ai/memory/MemoryModuleType;FI)Lnet/minecraft/world/entity/ai/behavior/BehaviorControl; net/minecraft/world/entity/ai/behavior/InteractWith/of (Lnet/minecraft/world/entity/EntityType;ILjava/util/function/Predicate;Ljava/util/function/Predicate;Lnet/minecraft/world/entity/ai/memory/MemoryModuleType;FI)Lnet/minecraft/world/entity/ai/behavior/BehaviorControl; +MD: net/minecraft/world/entity/ai/behavior/InteractWith/m_258079_ (Lnet/minecraft/world/entity/EntityType;ILnet/minecraft/world/entity/ai/memory/MemoryModuleType;FI)Lnet/minecraft/world/entity/ai/behavior/BehaviorControl; net/minecraft/world/entity/ai/behavior/InteractWith/of (Lnet/minecraft/world/entity/EntityType;ILnet/minecraft/world/entity/ai/memory/MemoryModuleType;FI)Lnet/minecraft/world/entity/ai/behavior/BehaviorControl; +MD: net/minecraft/world/entity/ai/behavior/InteractWith/m_289094_ (Lnet/minecraft/world/entity/EntityType;Ljava/util/function/Predicate;Lnet/minecraft/world/entity/LivingEntity;)Z net/minecraft/world/entity/ai/behavior/InteractWith/lambda$of$2 (Lnet/minecraft/world/entity/EntityType;Ljava/util/function/Predicate;Lnet/minecraft/world/entity/LivingEntity;)Z +MD: net/minecraft/world/entity/ai/behavior/InteractWithDoor/ ()V net/minecraft/world/entity/ai/behavior/InteractWithDoor/ ()V +MD: net/minecraft/world/entity/ai/behavior/InteractWithDoor/m_201951_ (Lnet/minecraft/world/level/block/state/BlockBehaviour$BlockStateBase;)Z net/minecraft/world/entity/ai/behavior/InteractWithDoor/lambda$closeDoorsThatIHaveOpenedOrPassedThrough$6 (Lnet/minecraft/world/level/block/state/BlockBehaviour$BlockStateBase;)Z +MD: net/minecraft/world/entity/ai/behavior/InteractWithDoor/m_201956_ (Lnet/minecraft/world/level/block/state/BlockBehaviour$BlockStateBase;)Z net/minecraft/world/entity/ai/behavior/InteractWithDoor/lambda$create$1 (Lnet/minecraft/world/level/block/state/BlockBehaviour$BlockStateBase;)Z +MD: net/minecraft/world/entity/ai/behavior/InteractWithDoor/m_201958_ (Lnet/minecraft/world/level/block/state/BlockBehaviour$BlockStateBase;)Z net/minecraft/world/entity/ai/behavior/InteractWithDoor/lambda$create$0 (Lnet/minecraft/world/level/block/state/BlockBehaviour$BlockStateBase;)Z +MD: net/minecraft/world/entity/ai/behavior/InteractWithDoor/m_23307_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/core/GlobalPos;)Z net/minecraft/world/entity/ai/behavior/InteractWithDoor/isDoorTooFarAway (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/core/GlobalPos;)Z +MD: net/minecraft/world/entity/ai/behavior/InteractWithDoor/m_257200_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/level/pathfinder/Node;Lnet/minecraft/world/level/pathfinder/Node;Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Ljava/util/Set;)V net/minecraft/world/entity/ai/behavior/InteractWithDoor/lambda$create$2 (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/level/pathfinder/Node;Lnet/minecraft/world/level/pathfinder/Node;Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Ljava/util/Set;)V +MD: net/minecraft/world/entity/ai/behavior/InteractWithDoor/m_257201_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/LivingEntity;)Z net/minecraft/world/entity/ai/behavior/InteractWithDoor/lambda$areOtherMobsComingThroughDoor$9 (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/LivingEntity;)Z +MD: net/minecraft/world/entity/ai/behavior/InteractWithDoor/m_257203_ (Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;Lorg/apache/commons/lang3/mutable/MutableObject;Lorg/apache/commons/lang3/mutable/MutableInt;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;)Lnet/minecraft/world/entity/ai/behavior/declarative/Trigger; net/minecraft/world/entity/ai/behavior/InteractWithDoor/lambda$create$4 (Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;Lorg/apache/commons/lang3/mutable/MutableObject;Lorg/apache/commons/lang3/mutable/MutableInt;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;)Lnet/minecraft/world/entity/ai/behavior/declarative/Trigger; +MD: net/minecraft/world/entity/ai/behavior/InteractWithDoor/m_257204_ (Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lorg/apache/commons/lang3/mutable/MutableObject;Lorg/apache/commons/lang3/mutable/MutableInt;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)Z net/minecraft/world/entity/ai/behavior/InteractWithDoor/lambda$create$3 (Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lorg/apache/commons/lang3/mutable/MutableObject;Lorg/apache/commons/lang3/mutable/MutableInt;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)Z +MD: net/minecraft/world/entity/ai/behavior/InteractWithDoor/m_257205_ (Lorg/apache/commons/lang3/mutable/MutableObject;Lorg/apache/commons/lang3/mutable/MutableInt;Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/world/entity/ai/behavior/InteractWithDoor/lambda$create$5 (Lorg/apache/commons/lang3/mutable/MutableObject;Lorg/apache/commons/lang3/mutable/MutableInt;Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/world/entity/ai/behavior/InteractWithDoor/m_257369_ (Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/core/BlockPos;Ljava/util/Optional;)Z net/minecraft/world/entity/ai/behavior/InteractWithDoor/areOtherMobsComingThroughDoor (Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/core/BlockPos;Ljava/util/Optional;)Z +MD: net/minecraft/world/entity/ai/behavior/InteractWithDoor/m_257446_ (Lnet/minecraft/world/entity/ai/Brain;Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/entity/ai/behavior/InteractWithDoor/isMobComingThroughDoor (Lnet/minecraft/world/entity/ai/Brain;Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/entity/ai/behavior/InteractWithDoor/m_257893_ ()Lnet/minecraft/world/entity/ai/behavior/BehaviorControl; net/minecraft/world/entity/ai/behavior/InteractWithDoor/create ()Lnet/minecraft/world/entity/ai/behavior/BehaviorControl; +MD: net/minecraft/world/entity/ai/behavior/InteractWithDoor/m_258036_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/level/pathfinder/Node;Lnet/minecraft/world/level/pathfinder/Node;Ljava/util/Set;Ljava/util/Optional;)V net/minecraft/world/entity/ai/behavior/InteractWithDoor/closeDoorsThatIHaveOpenedOrPassedThrough (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/level/pathfinder/Node;Lnet/minecraft/world/level/pathfinder/Node;Ljava/util/Set;Ljava/util/Optional;)V +MD: net/minecraft/world/entity/ai/behavior/InteractWithDoor/m_260786_ (Lnet/minecraft/core/GlobalPos;Ljava/util/Set;)Ljava/util/Set; net/minecraft/world/entity/ai/behavior/InteractWithDoor/lambda$rememberDoorToClose$10 (Lnet/minecraft/core/GlobalPos;Ljava/util/Set;)Ljava/util/Set; +MD: net/minecraft/world/entity/ai/behavior/InteractWithDoor/m_260787_ (Lnet/minecraft/core/GlobalPos;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;)Ljava/util/Set; net/minecraft/world/entity/ai/behavior/InteractWithDoor/lambda$rememberDoorToClose$11 (Lnet/minecraft/core/GlobalPos;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;)Ljava/util/Set; +MD: net/minecraft/world/entity/ai/behavior/InteractWithDoor/m_261108_ (Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Ljava/util/Optional;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;)Ljava/util/Optional; net/minecraft/world/entity/ai/behavior/InteractWithDoor/rememberDoorToClose (Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Ljava/util/Optional;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;)Ljava/util/Optional; +MD: net/minecraft/world/entity/ai/behavior/InteractWithDoor/m_289095_ (Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/entity/LivingEntity;)Z net/minecraft/world/entity/ai/behavior/InteractWithDoor/lambda$areOtherMobsComingThroughDoor$7 (Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/entity/LivingEntity;)Z +MD: net/minecraft/world/entity/ai/behavior/InteractWithDoor/m_289096_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/LivingEntity;)Z net/minecraft/world/entity/ai/behavior/InteractWithDoor/lambda$areOtherMobsComingThroughDoor$8 (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/LivingEntity;)Z +MD: net/minecraft/world/entity/ai/behavior/JumpOnBed/ (F)V net/minecraft/world/entity/ai/behavior/JumpOnBed/ (F)V +MD: net/minecraft/world/entity/ai/behavior/JumpOnBed/m_23356_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/entity/ai/behavior/JumpOnBed/isBed (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/entity/ai/behavior/JumpOnBed/m_23359_ (Lnet/minecraft/world/entity/Mob;)Ljava/util/Optional; net/minecraft/world/entity/ai/behavior/JumpOnBed/getNearestBed (Lnet/minecraft/world/entity/Mob;)Ljava/util/Optional; +MD: net/minecraft/world/entity/ai/behavior/JumpOnBed/m_23361_ (Lnet/minecraft/world/entity/Mob;Lnet/minecraft/core/BlockPos;)V net/minecraft/world/entity/ai/behavior/JumpOnBed/startWalkingTowardsBed (Lnet/minecraft/world/entity/Mob;Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/world/entity/ai/behavior/JumpOnBed/m_23368_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/Mob;)Z net/minecraft/world/entity/ai/behavior/JumpOnBed/nearBed (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/Mob;)Z +MD: net/minecraft/world/entity/ai/behavior/JumpOnBed/m_23379_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/Mob;)Z net/minecraft/world/entity/ai/behavior/JumpOnBed/onOrOverBed (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/Mob;)Z +MD: net/minecraft/world/entity/ai/behavior/JumpOnBed/m_23390_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/Mob;)Z net/minecraft/world/entity/ai/behavior/JumpOnBed/onBedSurface (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/Mob;)Z +MD: net/minecraft/world/entity/ai/behavior/JumpOnBed/m_23397_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/Mob;)Z net/minecraft/world/entity/ai/behavior/JumpOnBed/tiredOfWalking (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/Mob;)Z +MD: net/minecraft/world/entity/ai/behavior/JumpOnBed/m_23400_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/Mob;)Z net/minecraft/world/entity/ai/behavior/JumpOnBed/tiredOfJumping (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/Mob;)Z +MD: net/minecraft/world/entity/ai/behavior/JumpOnBed/m_263980_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/Mob;Lnet/minecraft/core/BlockPos;)V net/minecraft/world/entity/ai/behavior/JumpOnBed/lambda$start$0 (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/Mob;Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/world/entity/ai/behavior/JumpOnBed/m_6114_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;)Z net/minecraft/world/entity/ai/behavior/JumpOnBed/checkExtraStartConditions (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;)Z +MD: net/minecraft/world/entity/ai/behavior/JumpOnBed/m_6114_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/Mob;)Z net/minecraft/world/entity/ai/behavior/JumpOnBed/checkExtraStartConditions (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/Mob;)Z +MD: net/minecraft/world/entity/ai/behavior/JumpOnBed/m_6725_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/Mob;J)V net/minecraft/world/entity/ai/behavior/JumpOnBed/tick (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/Mob;J)V +MD: net/minecraft/world/entity/ai/behavior/JumpOnBed/m_6725_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)V net/minecraft/world/entity/ai/behavior/JumpOnBed/tick (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)V +MD: net/minecraft/world/entity/ai/behavior/JumpOnBed/m_6732_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/Mob;J)V net/minecraft/world/entity/ai/behavior/JumpOnBed/stop (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/Mob;J)V +MD: net/minecraft/world/entity/ai/behavior/JumpOnBed/m_6732_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)V net/minecraft/world/entity/ai/behavior/JumpOnBed/stop (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)V +MD: net/minecraft/world/entity/ai/behavior/JumpOnBed/m_6735_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/Mob;J)V net/minecraft/world/entity/ai/behavior/JumpOnBed/start (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/Mob;J)V +MD: net/minecraft/world/entity/ai/behavior/JumpOnBed/m_6735_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)V net/minecraft/world/entity/ai/behavior/JumpOnBed/start (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)V +MD: net/minecraft/world/entity/ai/behavior/JumpOnBed/m_6737_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)Z net/minecraft/world/entity/ai/behavior/JumpOnBed/canStillUse (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)Z +MD: net/minecraft/world/entity/ai/behavior/JumpOnBed/m_6737_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/Mob;J)Z net/minecraft/world/entity/ai/behavior/JumpOnBed/canStillUse (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/Mob;J)Z +MD: net/minecraft/world/entity/ai/behavior/JumpOnBed/m_7773_ (J)Z net/minecraft/world/entity/ai/behavior/JumpOnBed/timedOut (J)Z +MD: net/minecraft/world/entity/ai/behavior/LocateHidingPlace/ ()V net/minecraft/world/entity/ai/behavior/LocateHidingPlace/ ()V +MD: net/minecraft/world/entity/ai/behavior/LocateHidingPlace/m_217255_ (Lnet/minecraft/core/Holder;)Z net/minecraft/world/entity/ai/behavior/LocateHidingPlace/lambda$create$3 (Lnet/minecraft/core/Holder;)Z +MD: net/minecraft/world/entity/ai/behavior/LocateHidingPlace/m_217257_ (Lnet/minecraft/core/Holder;)Z net/minecraft/world/entity/ai/behavior/LocateHidingPlace/lambda$create$0 (Lnet/minecraft/core/Holder;)Z +MD: net/minecraft/world/entity/ai/behavior/LocateHidingPlace/m_23420_ (Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/entity/ai/behavior/LocateHidingPlace/lambda$create$4 (Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/entity/ai/behavior/LocateHidingPlace/m_23424_ (Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/entity/ai/behavior/LocateHidingPlace/lambda$create$1 (Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/entity/ai/behavior/LocateHidingPlace/m_257208_ (IILnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;FLnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;)Lnet/minecraft/world/entity/ai/behavior/declarative/Trigger; net/minecraft/world/entity/ai/behavior/LocateHidingPlace/lambda$create$9 (IILnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;FLnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;)Lnet/minecraft/world/entity/ai/behavior/declarative/Trigger; +MD: net/minecraft/world/entity/ai/behavior/LocateHidingPlace/m_257210_ (IIFLnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/world/entity/ai/behavior/LocateHidingPlace/lambda$create$10 (IIFLnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/world/entity/ai/behavior/LocateHidingPlace/m_257213_ (Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;)Ljava/util/Optional; net/minecraft/world/entity/ai/behavior/LocateHidingPlace/lambda$create$6 (Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;)Ljava/util/Optional; +MD: net/minecraft/world/entity/ai/behavior/LocateHidingPlace/m_258090_ (IFI)Lnet/minecraft/world/entity/ai/behavior/OneShot; net/minecraft/world/entity/ai/behavior/LocateHidingPlace/create (IFI)Lnet/minecraft/world/entity/ai/behavior/OneShot; +MD: net/minecraft/world/entity/ai/behavior/LocateHidingPlace/m_289097_ (Lnet/minecraft/world/entity/LivingEntity;ILnet/minecraft/core/BlockPos;)Z net/minecraft/world/entity/ai/behavior/LocateHidingPlace/lambda$create$2 (Lnet/minecraft/world/entity/LivingEntity;ILnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/entity/ai/behavior/LocateHidingPlace/m_289098_ (IILnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;FLnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)Z net/minecraft/world/entity/ai/behavior/LocateHidingPlace/lambda$create$8 (IILnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;FLnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)Z +MD: net/minecraft/world/entity/ai/behavior/LocateHidingPlace/m_289099_ (Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;ILnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;FLnet/minecraft/core/BlockPos;)V net/minecraft/world/entity/ai/behavior/LocateHidingPlace/lambda$create$7 (Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;ILnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;FLnet/minecraft/core/BlockPos;)V +MD: net/minecraft/world/entity/ai/behavior/LocateHidingPlace/m_289100_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;I)Ljava/util/Optional; net/minecraft/world/entity/ai/behavior/LocateHidingPlace/lambda$create$5 (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;I)Ljava/util/Optional; +MD: net/minecraft/world/entity/ai/behavior/LongJumpMidJump/ (Lnet/minecraft/util/valueproviders/UniformInt;Lnet/minecraft/sounds/SoundEvent;)V net/minecraft/world/entity/ai/behavior/LongJumpMidJump/ (Lnet/minecraft/util/valueproviders/UniformInt;Lnet/minecraft/sounds/SoundEvent;)V +MD: net/minecraft/world/entity/ai/behavior/LongJumpMidJump/m_6732_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/Mob;J)V net/minecraft/world/entity/ai/behavior/LongJumpMidJump/stop (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/Mob;J)V +MD: net/minecraft/world/entity/ai/behavior/LongJumpMidJump/m_6732_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)V net/minecraft/world/entity/ai/behavior/LongJumpMidJump/stop (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)V +MD: net/minecraft/world/entity/ai/behavior/LongJumpMidJump/m_6735_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/Mob;J)V net/minecraft/world/entity/ai/behavior/LongJumpMidJump/start (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/Mob;J)V +MD: net/minecraft/world/entity/ai/behavior/LongJumpMidJump/m_6735_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)V net/minecraft/world/entity/ai/behavior/LongJumpMidJump/start (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)V +MD: net/minecraft/world/entity/ai/behavior/LongJumpMidJump/m_6737_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)Z net/minecraft/world/entity/ai/behavior/LongJumpMidJump/canStillUse (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)Z +MD: net/minecraft/world/entity/ai/behavior/LongJumpMidJump/m_6737_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/Mob;J)Z net/minecraft/world/entity/ai/behavior/LongJumpMidJump/canStillUse (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/Mob;J)Z +MD: net/minecraft/world/entity/ai/behavior/LongJumpToPreferredBlock/ (Lnet/minecraft/util/valueproviders/UniformInt;IIFLjava/util/function/Function;Lnet/minecraft/tags/TagKey;FLjava/util/function/BiPredicate;)V net/minecraft/world/entity/ai/behavior/LongJumpToPreferredBlock/ (Lnet/minecraft/util/valueproviders/UniformInt;IIFLjava/util/function/Function;Lnet/minecraft/tags/TagKey;FLjava/util/function/BiPredicate;)V +MD: net/minecraft/world/entity/ai/behavior/LongJumpToPreferredBlock/m_213675_ (Lnet/minecraft/server/level/ServerLevel;)Ljava/util/Optional; net/minecraft/world/entity/ai/behavior/LongJumpToPreferredBlock/getJumpCandidate (Lnet/minecraft/server/level/ServerLevel;)Ljava/util/Optional; +MD: net/minecraft/world/entity/ai/behavior/LongJumpToPreferredBlock/m_6735_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/Mob;J)V net/minecraft/world/entity/ai/behavior/LongJumpToPreferredBlock/start (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/Mob;J)V +MD: net/minecraft/world/entity/ai/behavior/LongJumpToPreferredBlock/m_6735_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)V net/minecraft/world/entity/ai/behavior/LongJumpToPreferredBlock/start (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)V +MD: net/minecraft/world/entity/ai/behavior/LongJumpToRandomPos/ ()V net/minecraft/world/entity/ai/behavior/LongJumpToRandomPos/ ()V +MD: net/minecraft/world/entity/ai/behavior/LongJumpToRandomPos/ (Lnet/minecraft/util/valueproviders/UniformInt;IIFLjava/util/function/Function;)V net/minecraft/world/entity/ai/behavior/LongJumpToRandomPos/ (Lnet/minecraft/util/valueproviders/UniformInt;IIFLjava/util/function/Function;)V +MD: net/minecraft/world/entity/ai/behavior/LongJumpToRandomPos/ (Lnet/minecraft/util/valueproviders/UniformInt;IIFLjava/util/function/Function;Ljava/util/function/BiPredicate;)V net/minecraft/world/entity/ai/behavior/LongJumpToRandomPos/ (Lnet/minecraft/util/valueproviders/UniformInt;IIFLjava/util/function/Function;Ljava/util/function/BiPredicate;)V +MD: net/minecraft/world/entity/ai/behavior/LongJumpToRandomPos/m_213675_ (Lnet/minecraft/server/level/ServerLevel;)Ljava/util/Optional; net/minecraft/world/entity/ai/behavior/LongJumpToRandomPos/getJumpCandidate (Lnet/minecraft/server/level/ServerLevel;)Ljava/util/Optional; +MD: net/minecraft/world/entity/ai/behavior/LongJumpToRandomPos/m_213828_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/Mob;Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/entity/ai/behavior/LongJumpToRandomPos/isAcceptableLandingPosition (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/Mob;Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/entity/ai/behavior/LongJumpToRandomPos/m_217303_ (Lnet/minecraft/world/entity/Mob;Lnet/minecraft/world/phys/Vec3;)Lnet/minecraft/world/phys/Vec3; net/minecraft/world/entity/ai/behavior/LongJumpToRandomPos/calculateOptimalJumpVector (Lnet/minecraft/world/entity/Mob;Lnet/minecraft/world/phys/Vec3;)Lnet/minecraft/world/phys/Vec3; +MD: net/minecraft/world/entity/ai/behavior/LongJumpToRandomPos/m_217306_ (Lnet/minecraft/world/entity/Mob;Lnet/minecraft/world/phys/Vec3;I)Lnet/minecraft/world/phys/Vec3; net/minecraft/world/entity/ai/behavior/LongJumpToRandomPos/calculateJumpVectorForAngle (Lnet/minecraft/world/entity/Mob;Lnet/minecraft/world/phys/Vec3;I)Lnet/minecraft/world/phys/Vec3; +MD: net/minecraft/world/entity/ai/behavior/LongJumpToRandomPos/m_217312_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/entity/ai/behavior/LongJumpToRandomPos$PossibleJump; net/minecraft/world/entity/ai/behavior/LongJumpToRandomPos/lambda$start$1 (Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/entity/ai/behavior/LongJumpToRandomPos$PossibleJump; +MD: net/minecraft/world/entity/ai/behavior/LongJumpToRandomPos/m_217315_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/entity/ai/behavior/LongJumpToRandomPos/lambda$start$0 (Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/entity/ai/behavior/LongJumpToRandomPos/m_217318_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/Mob;J)V net/minecraft/world/entity/ai/behavior/LongJumpToRandomPos/pickCandidate (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/Mob;J)V +MD: net/minecraft/world/entity/ai/behavior/LongJumpToRandomPos/m_245086_ (Lnet/minecraft/world/entity/Mob;Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/entity/ai/behavior/LongJumpToRandomPos/defaultAcceptableLandingSpot (Lnet/minecraft/world/entity/Mob;Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/entity/ai/behavior/LongJumpToRandomPos/m_247472_ (Lnet/minecraft/world/entity/Mob;Lnet/minecraft/world/entity/EntityDimensions;Lnet/minecraft/world/phys/Vec3;Lnet/minecraft/world/phys/Vec3;)Z net/minecraft/world/entity/ai/behavior/LongJumpToRandomPos/isClearTransition (Lnet/minecraft/world/entity/Mob;Lnet/minecraft/world/entity/EntityDimensions;Lnet/minecraft/world/phys/Vec3;Lnet/minecraft/world/phys/Vec3;)Z +MD: net/minecraft/world/entity/ai/behavior/LongJumpToRandomPos/m_6114_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;)Z net/minecraft/world/entity/ai/behavior/LongJumpToRandomPos/checkExtraStartConditions (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;)Z +MD: net/minecraft/world/entity/ai/behavior/LongJumpToRandomPos/m_6114_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/Mob;)Z net/minecraft/world/entity/ai/behavior/LongJumpToRandomPos/checkExtraStartConditions (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/Mob;)Z +MD: net/minecraft/world/entity/ai/behavior/LongJumpToRandomPos/m_6725_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/Mob;J)V net/minecraft/world/entity/ai/behavior/LongJumpToRandomPos/tick (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/Mob;J)V +MD: net/minecraft/world/entity/ai/behavior/LongJumpToRandomPos/m_6725_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)V net/minecraft/world/entity/ai/behavior/LongJumpToRandomPos/tick (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)V +MD: net/minecraft/world/entity/ai/behavior/LongJumpToRandomPos/m_6735_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/Mob;J)V net/minecraft/world/entity/ai/behavior/LongJumpToRandomPos/start (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/Mob;J)V +MD: net/minecraft/world/entity/ai/behavior/LongJumpToRandomPos/m_6735_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)V net/minecraft/world/entity/ai/behavior/LongJumpToRandomPos/start (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)V +MD: net/minecraft/world/entity/ai/behavior/LongJumpToRandomPos/m_6737_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)Z net/minecraft/world/entity/ai/behavior/LongJumpToRandomPos/canStillUse (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)Z +MD: net/minecraft/world/entity/ai/behavior/LongJumpToRandomPos/m_6737_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/Mob;J)Z net/minecraft/world/entity/ai/behavior/LongJumpToRandomPos/canStillUse (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/Mob;J)Z +MD: net/minecraft/world/entity/ai/behavior/LongJumpToRandomPos$PossibleJump/ (Lnet/minecraft/core/BlockPos;I)V net/minecraft/world/entity/ai/behavior/LongJumpToRandomPos$PossibleJump/ (Lnet/minecraft/core/BlockPos;I)V +MD: net/minecraft/world/entity/ai/behavior/LongJumpToRandomPos$PossibleJump/m_147693_ ()Lnet/minecraft/core/BlockPos; net/minecraft/world/entity/ai/behavior/LongJumpToRandomPos$PossibleJump/getJumpTarget ()Lnet/minecraft/core/BlockPos; +MD: net/minecraft/world/entity/ai/behavior/LookAndFollowTradingPlayerSink/ (F)V net/minecraft/world/entity/ai/behavior/LookAndFollowTradingPlayerSink/ (F)V +MD: net/minecraft/world/entity/ai/behavior/LookAndFollowTradingPlayerSink/m_23451_ (Lnet/minecraft/world/entity/npc/Villager;)V net/minecraft/world/entity/ai/behavior/LookAndFollowTradingPlayerSink/followPlayer (Lnet/minecraft/world/entity/npc/Villager;)V +MD: net/minecraft/world/entity/ai/behavior/LookAndFollowTradingPlayerSink/m_6114_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;)Z net/minecraft/world/entity/ai/behavior/LookAndFollowTradingPlayerSink/checkExtraStartConditions (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;)Z +MD: net/minecraft/world/entity/ai/behavior/LookAndFollowTradingPlayerSink/m_6114_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/npc/Villager;)Z net/minecraft/world/entity/ai/behavior/LookAndFollowTradingPlayerSink/checkExtraStartConditions (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/npc/Villager;)Z +MD: net/minecraft/world/entity/ai/behavior/LookAndFollowTradingPlayerSink/m_6725_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)V net/minecraft/world/entity/ai/behavior/LookAndFollowTradingPlayerSink/tick (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)V +MD: net/minecraft/world/entity/ai/behavior/LookAndFollowTradingPlayerSink/m_6725_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/npc/Villager;J)V net/minecraft/world/entity/ai/behavior/LookAndFollowTradingPlayerSink/tick (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/npc/Villager;J)V +MD: net/minecraft/world/entity/ai/behavior/LookAndFollowTradingPlayerSink/m_6732_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)V net/minecraft/world/entity/ai/behavior/LookAndFollowTradingPlayerSink/stop (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)V +MD: net/minecraft/world/entity/ai/behavior/LookAndFollowTradingPlayerSink/m_6732_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/npc/Villager;J)V net/minecraft/world/entity/ai/behavior/LookAndFollowTradingPlayerSink/stop (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/npc/Villager;J)V +MD: net/minecraft/world/entity/ai/behavior/LookAndFollowTradingPlayerSink/m_6735_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/npc/Villager;J)V net/minecraft/world/entity/ai/behavior/LookAndFollowTradingPlayerSink/start (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/npc/Villager;J)V +MD: net/minecraft/world/entity/ai/behavior/LookAndFollowTradingPlayerSink/m_6735_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)V net/minecraft/world/entity/ai/behavior/LookAndFollowTradingPlayerSink/start (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)V +MD: net/minecraft/world/entity/ai/behavior/LookAndFollowTradingPlayerSink/m_6737_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/npc/Villager;J)Z net/minecraft/world/entity/ai/behavior/LookAndFollowTradingPlayerSink/canStillUse (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/npc/Villager;J)Z +MD: net/minecraft/world/entity/ai/behavior/LookAndFollowTradingPlayerSink/m_6737_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)Z net/minecraft/world/entity/ai/behavior/LookAndFollowTradingPlayerSink/canStillUse (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)Z +MD: net/minecraft/world/entity/ai/behavior/LookAndFollowTradingPlayerSink/m_7773_ (J)Z net/minecraft/world/entity/ai/behavior/LookAndFollowTradingPlayerSink/timedOut (J)Z +MD: net/minecraft/world/entity/ai/behavior/LookAtTargetSink/ (II)V net/minecraft/world/entity/ai/behavior/LookAtTargetSink/ (II)V +MD: net/minecraft/world/entity/ai/behavior/LookAtTargetSink/m_23484_ (Lnet/minecraft/world/entity/Mob;Lnet/minecraft/world/entity/ai/behavior/PositionTracker;)V net/minecraft/world/entity/ai/behavior/LookAtTargetSink/lambda$tick$1 (Lnet/minecraft/world/entity/Mob;Lnet/minecraft/world/entity/ai/behavior/PositionTracker;)V +MD: net/minecraft/world/entity/ai/behavior/LookAtTargetSink/m_23495_ (Lnet/minecraft/world/entity/Mob;Lnet/minecraft/world/entity/ai/behavior/PositionTracker;)Z net/minecraft/world/entity/ai/behavior/LookAtTargetSink/lambda$canStillUse$0 (Lnet/minecraft/world/entity/Mob;Lnet/minecraft/world/entity/ai/behavior/PositionTracker;)Z +MD: net/minecraft/world/entity/ai/behavior/LookAtTargetSink/m_6725_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/Mob;J)V net/minecraft/world/entity/ai/behavior/LookAtTargetSink/tick (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/Mob;J)V +MD: net/minecraft/world/entity/ai/behavior/LookAtTargetSink/m_6725_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)V net/minecraft/world/entity/ai/behavior/LookAtTargetSink/tick (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)V +MD: net/minecraft/world/entity/ai/behavior/LookAtTargetSink/m_6732_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/Mob;J)V net/minecraft/world/entity/ai/behavior/LookAtTargetSink/stop (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/Mob;J)V +MD: net/minecraft/world/entity/ai/behavior/LookAtTargetSink/m_6732_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)V net/minecraft/world/entity/ai/behavior/LookAtTargetSink/stop (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)V +MD: net/minecraft/world/entity/ai/behavior/LookAtTargetSink/m_6737_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)Z net/minecraft/world/entity/ai/behavior/LookAtTargetSink/canStillUse (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)Z +MD: net/minecraft/world/entity/ai/behavior/LookAtTargetSink/m_6737_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/Mob;J)Z net/minecraft/world/entity/ai/behavior/LookAtTargetSink/canStillUse (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/Mob;J)Z +MD: net/minecraft/world/entity/ai/behavior/MeleeAttack/ ()V net/minecraft/world/entity/ai/behavior/MeleeAttack/ ()V +MD: net/minecraft/world/entity/ai/behavior/MeleeAttack/m_147695_ (Lnet/minecraft/world/entity/Mob;Lnet/minecraft/world/item/ItemStack;)Z net/minecraft/world/entity/ai/behavior/MeleeAttack/lambda$isHoldingUsableProjectileWeapon$3 (Lnet/minecraft/world/entity/Mob;Lnet/minecraft/world/item/ItemStack;)Z +MD: net/minecraft/world/entity/ai/behavior/MeleeAttack/m_23527_ (Lnet/minecraft/world/entity/Mob;)Z net/minecraft/world/entity/ai/behavior/MeleeAttack/isHoldingUsableProjectileWeapon (Lnet/minecraft/world/entity/Mob;)Z +MD: net/minecraft/world/entity/ai/behavior/MeleeAttack/m_257214_ (ILnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/world/entity/ai/behavior/MeleeAttack/lambda$create$2 (ILnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/world/entity/ai/behavior/MeleeAttack/m_257215_ (Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;ILnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;)Lnet/minecraft/world/entity/ai/behavior/declarative/Trigger; net/minecraft/world/entity/ai/behavior/MeleeAttack/lambda$create$1 (Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;ILnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;)Lnet/minecraft/world/entity/ai/behavior/declarative/Trigger; +MD: net/minecraft/world/entity/ai/behavior/MeleeAttack/m_257216_ (Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;ILnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/Mob;J)Z net/minecraft/world/entity/ai/behavior/MeleeAttack/lambda$create$0 (Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;ILnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/Mob;J)Z +MD: net/minecraft/world/entity/ai/behavior/MeleeAttack/m_257733_ (I)Lnet/minecraft/world/entity/ai/behavior/OneShot; net/minecraft/world/entity/ai/behavior/MeleeAttack/create (I)Lnet/minecraft/world/entity/ai/behavior/OneShot; +MD: net/minecraft/world/entity/ai/behavior/Mount/ ()V net/minecraft/world/entity/ai/behavior/Mount/ ()V +MD: net/minecraft/world/entity/ai/behavior/Mount/m_257464_ (Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;FLnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;)Lnet/minecraft/world/entity/ai/behavior/declarative/Trigger; net/minecraft/world/entity/ai/behavior/Mount/lambda$create$1 (Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;FLnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;)Lnet/minecraft/world/entity/ai/behavior/declarative/Trigger; +MD: net/minecraft/world/entity/ai/behavior/Mount/m_257489_ (Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;FLnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)Z net/minecraft/world/entity/ai/behavior/Mount/lambda$create$0 (Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;FLnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)Z +MD: net/minecraft/world/entity/ai/behavior/Mount/m_257518_ (F)Lnet/minecraft/world/entity/ai/behavior/BehaviorControl; net/minecraft/world/entity/ai/behavior/Mount/create (F)Lnet/minecraft/world/entity/ai/behavior/BehaviorControl; +MD: net/minecraft/world/entity/ai/behavior/Mount/m_257575_ (FLnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/world/entity/ai/behavior/Mount/lambda$create$2 (FLnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/world/entity/ai/behavior/MoveToSkySeeingSpot/ ()V net/minecraft/world/entity/ai/behavior/MoveToSkySeeingSpot/ ()V +MD: net/minecraft/world/entity/ai/behavior/MoveToSkySeeingSpot/m_23558_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/entity/ai/behavior/MoveToSkySeeingSpot/hasNoBlocksAbove (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/entity/ai/behavior/MoveToSkySeeingSpot/m_23564_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;)Lnet/minecraft/world/phys/Vec3; net/minecraft/world/entity/ai/behavior/MoveToSkySeeingSpot/getOutdoorPosition (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;)Lnet/minecraft/world/phys/Vec3; +MD: net/minecraft/world/entity/ai/behavior/MoveToSkySeeingSpot/m_257217_ (FLnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/world/entity/ai/behavior/MoveToSkySeeingSpot/lambda$create$3 (FLnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/world/entity/ai/behavior/MoveToSkySeeingSpot/m_257218_ (FLnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;)Lnet/minecraft/world/entity/ai/behavior/declarative/Trigger; net/minecraft/world/entity/ai/behavior/MoveToSkySeeingSpot/lambda$create$2 (FLnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;)Lnet/minecraft/world/entity/ai/behavior/declarative/Trigger; +MD: net/minecraft/world/entity/ai/behavior/MoveToSkySeeingSpot/m_257219_ (Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;FLnet/minecraft/world/phys/Vec3;)V net/minecraft/world/entity/ai/behavior/MoveToSkySeeingSpot/lambda$create$0 (Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;FLnet/minecraft/world/phys/Vec3;)V +MD: net/minecraft/world/entity/ai/behavior/MoveToSkySeeingSpot/m_257507_ (F)Lnet/minecraft/world/entity/ai/behavior/OneShot; net/minecraft/world/entity/ai/behavior/MoveToSkySeeingSpot/create (F)Lnet/minecraft/world/entity/ai/behavior/OneShot; +MD: net/minecraft/world/entity/ai/behavior/MoveToSkySeeingSpot/m_289101_ (Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;FLnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)Z net/minecraft/world/entity/ai/behavior/MoveToSkySeeingSpot/lambda$create$1 (Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;FLnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)Z +MD: net/minecraft/world/entity/ai/behavior/MoveToTargetSink/ (II)V net/minecraft/world/entity/ai/behavior/MoveToTargetSink/ (II)V +MD: net/minecraft/world/entity/ai/behavior/MoveToTargetSink/ ()V net/minecraft/world/entity/ai/behavior/MoveToTargetSink/ ()V +MD: net/minecraft/world/entity/ai/behavior/MoveToTargetSink/m_23589_ (Lnet/minecraft/world/entity/Mob;Lnet/minecraft/world/entity/ai/memory/WalkTarget;)Z net/minecraft/world/entity/ai/behavior/MoveToTargetSink/reachedTarget (Lnet/minecraft/world/entity/Mob;Lnet/minecraft/world/entity/ai/memory/WalkTarget;)Z +MD: net/minecraft/world/entity/ai/behavior/MoveToTargetSink/m_23592_ (Lnet/minecraft/world/entity/Mob;Lnet/minecraft/world/entity/ai/memory/WalkTarget;J)Z net/minecraft/world/entity/ai/behavior/MoveToTargetSink/tryComputePath (Lnet/minecraft/world/entity/Mob;Lnet/minecraft/world/entity/ai/memory/WalkTarget;J)Z +MD: net/minecraft/world/entity/ai/behavior/MoveToTargetSink/m_277150_ (Lnet/minecraft/world/entity/ai/memory/WalkTarget;)Z net/minecraft/world/entity/ai/behavior/MoveToTargetSink/isWalkTargetSpectator (Lnet/minecraft/world/entity/ai/memory/WalkTarget;)Z +MD: net/minecraft/world/entity/ai/behavior/MoveToTargetSink/m_6114_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;)Z net/minecraft/world/entity/ai/behavior/MoveToTargetSink/checkExtraStartConditions (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;)Z +MD: net/minecraft/world/entity/ai/behavior/MoveToTargetSink/m_6114_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/Mob;)Z net/minecraft/world/entity/ai/behavior/MoveToTargetSink/checkExtraStartConditions (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/Mob;)Z +MD: net/minecraft/world/entity/ai/behavior/MoveToTargetSink/m_6725_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/Mob;J)V net/minecraft/world/entity/ai/behavior/MoveToTargetSink/tick (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/Mob;J)V +MD: net/minecraft/world/entity/ai/behavior/MoveToTargetSink/m_6725_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)V net/minecraft/world/entity/ai/behavior/MoveToTargetSink/tick (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)V +MD: net/minecraft/world/entity/ai/behavior/MoveToTargetSink/m_6732_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/Mob;J)V net/minecraft/world/entity/ai/behavior/MoveToTargetSink/stop (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/Mob;J)V +MD: net/minecraft/world/entity/ai/behavior/MoveToTargetSink/m_6732_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)V net/minecraft/world/entity/ai/behavior/MoveToTargetSink/stop (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)V +MD: net/minecraft/world/entity/ai/behavior/MoveToTargetSink/m_6735_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/Mob;J)V net/minecraft/world/entity/ai/behavior/MoveToTargetSink/start (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/Mob;J)V +MD: net/minecraft/world/entity/ai/behavior/MoveToTargetSink/m_6735_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)V net/minecraft/world/entity/ai/behavior/MoveToTargetSink/start (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)V +MD: net/minecraft/world/entity/ai/behavior/MoveToTargetSink/m_6737_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)Z net/minecraft/world/entity/ai/behavior/MoveToTargetSink/canStillUse (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)Z +MD: net/minecraft/world/entity/ai/behavior/MoveToTargetSink/m_6737_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/Mob;J)Z net/minecraft/world/entity/ai/behavior/MoveToTargetSink/canStillUse (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/Mob;J)Z +MD: net/minecraft/world/entity/ai/behavior/OneShot/ ()V net/minecraft/world/entity/ai/behavior/OneShot/ ()V +MD: net/minecraft/world/entity/ai/behavior/OneShot/m_22536_ ()Lnet/minecraft/world/entity/ai/behavior/Behavior$Status; net/minecraft/world/entity/ai/behavior/OneShot/getStatus ()Lnet/minecraft/world/entity/ai/behavior/Behavior$Status; +MD: net/minecraft/world/entity/ai/behavior/OneShot/m_22554_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)Z net/minecraft/world/entity/ai/behavior/OneShot/tryStart (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)Z +MD: net/minecraft/world/entity/ai/behavior/OneShot/m_22558_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)V net/minecraft/world/entity/ai/behavior/OneShot/tickOrStop (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)V +MD: net/minecraft/world/entity/ai/behavior/OneShot/m_22562_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)V net/minecraft/world/entity/ai/behavior/OneShot/doStop (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)V +MD: net/minecraft/world/entity/ai/behavior/OneShot/m_22566_ ()Ljava/lang/String; net/minecraft/world/entity/ai/behavior/OneShot/debugString ()Ljava/lang/String; +MD: net/minecraft/world/entity/ai/behavior/PlayTagWithOtherKids/ ()V net/minecraft/world/entity/ai/behavior/PlayTagWithOtherKids/ ()V +MD: net/minecraft/world/entity/ai/behavior/PlayTagWithOtherKids/m_147706_ (Lnet/minecraft/world/entity/LivingEntity;Ljava/lang/Integer;)Ljava/lang/Integer; net/minecraft/world/entity/ai/behavior/PlayTagWithOtherKids/lambda$checkHowManyChasersEachFriendHas$6 (Lnet/minecraft/world/entity/LivingEntity;Ljava/lang/Integer;)Ljava/lang/Integer; +MD: net/minecraft/world/entity/ai/behavior/PlayTagWithOtherKids/m_23639_ (Lnet/minecraft/world/entity/LivingEntity;)Lnet/minecraft/world/entity/LivingEntity; net/minecraft/world/entity/ai/behavior/PlayTagWithOtherKids/whoAreYouChasing (Lnet/minecraft/world/entity/LivingEntity;)Lnet/minecraft/world/entity/LivingEntity; +MD: net/minecraft/world/entity/ai/behavior/PlayTagWithOtherKids/m_23641_ (Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/entity/LivingEntity;)Z net/minecraft/world/entity/ai/behavior/PlayTagWithOtherKids/isFriendChasingMe (Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/entity/LivingEntity;)Z +MD: net/minecraft/world/entity/ai/behavior/PlayTagWithOtherKids/m_23652_ (Ljava/util/Map$Entry;)Z net/minecraft/world/entity/ai/behavior/PlayTagWithOtherKids/lambda$findSomeoneBeingChased$5 (Ljava/util/Map$Entry;)Z +MD: net/minecraft/world/entity/ai/behavior/PlayTagWithOtherKids/m_23659_ (Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/entity/LivingEntity;)Z net/minecraft/world/entity/ai/behavior/PlayTagWithOtherKids/lambda$isFriendChasingMe$8 (Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/entity/LivingEntity;)Z +MD: net/minecraft/world/entity/ai/behavior/PlayTagWithOtherKids/m_23667_ (Lnet/minecraft/world/entity/LivingEntity;)Z net/minecraft/world/entity/ai/behavior/PlayTagWithOtherKids/isChasingSomeone (Lnet/minecraft/world/entity/LivingEntity;)Z +MD: net/minecraft/world/entity/ai/behavior/PlayTagWithOtherKids/m_257221_ (Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/LivingEntity;)V net/minecraft/world/entity/ai/behavior/PlayTagWithOtherKids/lambda$create$1 (Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/LivingEntity;)V +MD: net/minecraft/world/entity/ai/behavior/PlayTagWithOtherKids/m_257222_ (Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;)Lnet/minecraft/world/entity/ai/behavior/declarative/Trigger; net/minecraft/world/entity/ai/behavior/PlayTagWithOtherKids/lambda$create$3 (Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;)Lnet/minecraft/world/entity/ai/behavior/declarative/Trigger; +MD: net/minecraft/world/entity/ai/behavior/PlayTagWithOtherKids/m_257223_ (Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/world/entity/ai/behavior/PlayTagWithOtherKids/lambda$create$4 (Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/world/entity/ai/behavior/PlayTagWithOtherKids/m_257224_ (Ljava/util/Map;Lnet/minecraft/world/entity/LivingEntity;)V net/minecraft/world/entity/ai/behavior/PlayTagWithOtherKids/lambda$checkHowManyChasersEachFriendHas$7 (Ljava/util/Map;Lnet/minecraft/world/entity/LivingEntity;)V +MD: net/minecraft/world/entity/ai/behavior/PlayTagWithOtherKids/m_257226_ (Lnet/minecraft/world/entity/PathfinderMob;Lnet/minecraft/world/entity/LivingEntity;)Z net/minecraft/world/entity/ai/behavior/PlayTagWithOtherKids/lambda$create$0 (Lnet/minecraft/world/entity/PathfinderMob;Lnet/minecraft/world/entity/LivingEntity;)Z +MD: net/minecraft/world/entity/ai/behavior/PlayTagWithOtherKids/m_257585_ ()Lnet/minecraft/world/entity/ai/behavior/BehaviorControl; net/minecraft/world/entity/ai/behavior/PlayTagWithOtherKids/create ()Lnet/minecraft/world/entity/ai/behavior/BehaviorControl; +MD: net/minecraft/world/entity/ai/behavior/PlayTagWithOtherKids/m_257730_ (Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/LivingEntity;)V net/minecraft/world/entity/ai/behavior/PlayTagWithOtherKids/chaseKid (Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/LivingEntity;)V +MD: net/minecraft/world/entity/ai/behavior/PlayTagWithOtherKids/m_257810_ (Ljava/util/List;)Ljava/util/Optional; net/minecraft/world/entity/ai/behavior/PlayTagWithOtherKids/findSomeoneBeingChased (Ljava/util/List;)Ljava/util/Optional; +MD: net/minecraft/world/entity/ai/behavior/PlayTagWithOtherKids/m_257886_ (Ljava/util/List;)Ljava/util/Map; net/minecraft/world/entity/ai/behavior/PlayTagWithOtherKids/checkHowManyChasersEachFriendHas (Ljava/util/List;)Ljava/util/Map; +MD: net/minecraft/world/entity/ai/behavior/PlayTagWithOtherKids/m_274200_ (Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/PathfinderMob;J)Z net/minecraft/world/entity/ai/behavior/PlayTagWithOtherKids/lambda$create$2 (Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/PathfinderMob;J)Z +MD: net/minecraft/world/entity/ai/behavior/PoiCompetitorScan/ ()V net/minecraft/world/entity/ai/behavior/PoiCompetitorScan/ ()V +MD: net/minecraft/world/entity/ai/behavior/PoiCompetitorScan/m_217329_ (Lnet/minecraft/core/GlobalPos;Lnet/minecraft/core/Holder;Lnet/minecraft/world/entity/npc/Villager;)Z net/minecraft/world/entity/ai/behavior/PoiCompetitorScan/competesForSameJobsite (Lnet/minecraft/core/GlobalPos;Lnet/minecraft/core/Holder;Lnet/minecraft/world/entity/npc/Villager;)Z +MD: net/minecraft/world/entity/ai/behavior/PoiCompetitorScan/m_217333_ (Lnet/minecraft/core/Holder;Lnet/minecraft/world/entity/npc/VillagerProfession;)Z net/minecraft/world/entity/ai/behavior/PoiCompetitorScan/hasMatchingProfession (Lnet/minecraft/core/Holder;Lnet/minecraft/world/entity/npc/VillagerProfession;)Z +MD: net/minecraft/world/entity/ai/behavior/PoiCompetitorScan/m_23724_ (Lnet/minecraft/world/entity/npc/Villager;Lnet/minecraft/world/entity/npc/Villager;)Lnet/minecraft/world/entity/npc/Villager; net/minecraft/world/entity/ai/behavior/PoiCompetitorScan/selectWinner (Lnet/minecraft/world/entity/npc/Villager;Lnet/minecraft/world/entity/npc/Villager;)Lnet/minecraft/world/entity/npc/Villager; +MD: net/minecraft/world/entity/ai/behavior/PoiCompetitorScan/m_257227_ (Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/world/entity/ai/behavior/PoiCompetitorScan/lambda$create$6 (Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/world/entity/ai/behavior/PoiCompetitorScan/m_257228_ (Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/npc/Villager;J)Z net/minecraft/world/entity/ai/behavior/PoiCompetitorScan/lambda$create$4 (Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/npc/Villager;J)Z +MD: net/minecraft/world/entity/ai/behavior/PoiCompetitorScan/m_257229_ (Lnet/minecraft/world/entity/LivingEntity;)Lnet/minecraft/world/entity/npc/Villager; net/minecraft/world/entity/ai/behavior/PoiCompetitorScan/lambda$create$1 (Lnet/minecraft/world/entity/LivingEntity;)Lnet/minecraft/world/entity/npc/Villager; +MD: net/minecraft/world/entity/ai/behavior/PoiCompetitorScan/m_257230_ (Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/npc/Villager;Lnet/minecraft/core/GlobalPos;Lnet/minecraft/core/Holder;)V net/minecraft/world/entity/ai/behavior/PoiCompetitorScan/lambda$create$3 (Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/npc/Villager;Lnet/minecraft/core/GlobalPos;Lnet/minecraft/core/Holder;)V +MD: net/minecraft/world/entity/ai/behavior/PoiCompetitorScan/m_257231_ (Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;)Lnet/minecraft/world/entity/ai/behavior/declarative/Trigger; net/minecraft/world/entity/ai/behavior/PoiCompetitorScan/lambda$create$5 (Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;)Lnet/minecraft/world/entity/ai/behavior/declarative/Trigger; +MD: net/minecraft/world/entity/ai/behavior/PoiCompetitorScan/m_257232_ (Lnet/minecraft/world/entity/npc/Villager;Lnet/minecraft/world/entity/LivingEntity;)Z net/minecraft/world/entity/ai/behavior/PoiCompetitorScan/lambda$create$0 (Lnet/minecraft/world/entity/npc/Villager;Lnet/minecraft/world/entity/LivingEntity;)Z +MD: net/minecraft/world/entity/ai/behavior/PoiCompetitorScan/m_257233_ (Lnet/minecraft/core/GlobalPos;Lnet/minecraft/core/Holder;Lnet/minecraft/world/entity/npc/Villager;)Z net/minecraft/world/entity/ai/behavior/PoiCompetitorScan/lambda$create$2 (Lnet/minecraft/core/GlobalPos;Lnet/minecraft/core/Holder;Lnet/minecraft/world/entity/npc/Villager;)Z +MD: net/minecraft/world/entity/ai/behavior/PoiCompetitorScan/m_257502_ ()Lnet/minecraft/world/entity/ai/behavior/BehaviorControl; net/minecraft/world/entity/ai/behavior/PoiCompetitorScan/create ()Lnet/minecraft/world/entity/ai/behavior/BehaviorControl; +MD: net/minecraft/world/entity/ai/behavior/PositionTracker/m_6675_ ()Lnet/minecraft/core/BlockPos; net/minecraft/world/entity/ai/behavior/PositionTracker/currentBlockPosition ()Lnet/minecraft/core/BlockPos; +MD: net/minecraft/world/entity/ai/behavior/PositionTracker/m_6826_ (Lnet/minecraft/world/entity/LivingEntity;)Z net/minecraft/world/entity/ai/behavior/PositionTracker/isVisibleBy (Lnet/minecraft/world/entity/LivingEntity;)Z +MD: net/minecraft/world/entity/ai/behavior/PositionTracker/m_7024_ ()Lnet/minecraft/world/phys/Vec3; net/minecraft/world/entity/ai/behavior/PositionTracker/currentPosition ()Lnet/minecraft/world/phys/Vec3; +MD: net/minecraft/world/entity/ai/behavior/PrepareRamNearestTarget/ (Ljava/util/function/ToIntFunction;IIFLnet/minecraft/world/entity/ai/targeting/TargetingConditions;ILjava/util/function/Function;)V net/minecraft/world/entity/ai/behavior/PrepareRamNearestTarget/ (Ljava/util/function/ToIntFunction;IIFLnet/minecraft/world/entity/ai/targeting/TargetingConditions;ILjava/util/function/Function;)V +MD: net/minecraft/world/entity/ai/behavior/PrepareRamNearestTarget/m_147742_ (Lnet/minecraft/world/entity/PathfinderMob;Lnet/minecraft/world/entity/LivingEntity;)Ljava/util/Optional; net/minecraft/world/entity/ai/behavior/PrepareRamNearestTarget/calculateRammingStartPosition (Lnet/minecraft/world/entity/PathfinderMob;Lnet/minecraft/world/entity/LivingEntity;)Ljava/util/Optional; +MD: net/minecraft/world/entity/ai/behavior/PrepareRamNearestTarget/m_147745_ (Lnet/minecraft/world/entity/PathfinderMob;Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/entity/ai/behavior/PrepareRamNearestTarget/isWalkableBlock (Lnet/minecraft/world/entity/PathfinderMob;Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/entity/ai/behavior/PrepareRamNearestTarget/m_147751_ (Lnet/minecraft/world/entity/ai/navigation/PathNavigation;Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/entity/ai/behavior/PrepareRamNearestTarget/lambda$calculateRammingStartPosition$3 (Lnet/minecraft/world/entity/ai/navigation/PathNavigation;Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/entity/ai/behavior/PrepareRamNearestTarget/m_147754_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/phys/Vec3; net/minecraft/world/entity/ai/behavior/PrepareRamNearestTarget/getEdgeOfBlock (Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/phys/Vec3; +MD: net/minecraft/world/entity/ai/behavior/PrepareRamNearestTarget/m_147765_ (Lnet/minecraft/world/entity/PathfinderMob;Lnet/minecraft/world/entity/LivingEntity;)V net/minecraft/world/entity/ai/behavior/PrepareRamNearestTarget/chooseRamPosition (Lnet/minecraft/world/entity/PathfinderMob;Lnet/minecraft/world/entity/LivingEntity;)V +MD: net/minecraft/world/entity/ai/behavior/PrepareRamNearestTarget/m_147776_ (Lnet/minecraft/world/entity/PathfinderMob;Lnet/minecraft/world/entity/LivingEntity;)V net/minecraft/world/entity/ai/behavior/PrepareRamNearestTarget/lambda$start$2 (Lnet/minecraft/world/entity/PathfinderMob;Lnet/minecraft/world/entity/LivingEntity;)V +MD: net/minecraft/world/entity/ai/behavior/PrepareRamNearestTarget/m_147787_ (Lnet/minecraft/world/entity/PathfinderMob;Lnet/minecraft/world/entity/LivingEntity;)Z net/minecraft/world/entity/ai/behavior/PrepareRamNearestTarget/lambda$start$0 (Lnet/minecraft/world/entity/PathfinderMob;Lnet/minecraft/world/entity/LivingEntity;)Z +MD: net/minecraft/world/entity/ai/behavior/PrepareRamNearestTarget/m_186047_ (Lnet/minecraft/world/entity/PathfinderMob;Lnet/minecraft/world/entity/ai/memory/NearestVisibleLivingEntities;)Ljava/util/Optional; net/minecraft/world/entity/ai/behavior/PrepareRamNearestTarget/lambda$start$1 (Lnet/minecraft/world/entity/PathfinderMob;Lnet/minecraft/world/entity/ai/memory/NearestVisibleLivingEntities;)Ljava/util/Optional; +MD: net/minecraft/world/entity/ai/behavior/PrepareRamNearestTarget/m_289102_ (Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/entity/ai/behavior/PrepareRamNearestTarget$RamCandidate; net/minecraft/world/entity/ai/behavior/PrepareRamNearestTarget/lambda$chooseRamPosition$4 (Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/entity/ai/behavior/PrepareRamNearestTarget$RamCandidate; +MD: net/minecraft/world/entity/ai/behavior/PrepareRamNearestTarget/m_6725_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)V net/minecraft/world/entity/ai/behavior/PrepareRamNearestTarget/tick (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)V +MD: net/minecraft/world/entity/ai/behavior/PrepareRamNearestTarget/m_6725_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/PathfinderMob;J)V net/minecraft/world/entity/ai/behavior/PrepareRamNearestTarget/tick (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/PathfinderMob;J)V +MD: net/minecraft/world/entity/ai/behavior/PrepareRamNearestTarget/m_6732_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)V net/minecraft/world/entity/ai/behavior/PrepareRamNearestTarget/stop (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)V +MD: net/minecraft/world/entity/ai/behavior/PrepareRamNearestTarget/m_6732_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/PathfinderMob;J)V net/minecraft/world/entity/ai/behavior/PrepareRamNearestTarget/stop (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/PathfinderMob;J)V +MD: net/minecraft/world/entity/ai/behavior/PrepareRamNearestTarget/m_6735_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/PathfinderMob;J)V net/minecraft/world/entity/ai/behavior/PrepareRamNearestTarget/start (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/PathfinderMob;J)V +MD: net/minecraft/world/entity/ai/behavior/PrepareRamNearestTarget/m_6735_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)V net/minecraft/world/entity/ai/behavior/PrepareRamNearestTarget/start (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)V +MD: net/minecraft/world/entity/ai/behavior/PrepareRamNearestTarget/m_6737_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)Z net/minecraft/world/entity/ai/behavior/PrepareRamNearestTarget/canStillUse (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)Z +MD: net/minecraft/world/entity/ai/behavior/PrepareRamNearestTarget/m_6737_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/PathfinderMob;J)Z net/minecraft/world/entity/ai/behavior/PrepareRamNearestTarget/canStillUse (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/PathfinderMob;J)Z +MD: net/minecraft/world/entity/ai/behavior/PrepareRamNearestTarget$RamCandidate/ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/LivingEntity;)V net/minecraft/world/entity/ai/behavior/PrepareRamNearestTarget$RamCandidate/ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/LivingEntity;)V +MD: net/minecraft/world/entity/ai/behavior/PrepareRamNearestTarget$RamCandidate/m_147797_ ()Lnet/minecraft/core/BlockPos; net/minecraft/world/entity/ai/behavior/PrepareRamNearestTarget$RamCandidate/getStartPosition ()Lnet/minecraft/core/BlockPos; +MD: net/minecraft/world/entity/ai/behavior/PrepareRamNearestTarget$RamCandidate/m_147798_ ()Lnet/minecraft/core/BlockPos; net/minecraft/world/entity/ai/behavior/PrepareRamNearestTarget$RamCandidate/getTargetPosition ()Lnet/minecraft/core/BlockPos; +MD: net/minecraft/world/entity/ai/behavior/PrepareRamNearestTarget$RamCandidate/m_147799_ ()Lnet/minecraft/world/entity/LivingEntity; net/minecraft/world/entity/ai/behavior/PrepareRamNearestTarget$RamCandidate/getTarget ()Lnet/minecraft/world/entity/LivingEntity; +MD: net/minecraft/world/entity/ai/behavior/RamTarget/ (Ljava/util/function/Function;Lnet/minecraft/world/entity/ai/targeting/TargetingConditions;FLjava/util/function/ToDoubleFunction;Ljava/util/function/Function;Ljava/util/function/Function;)V net/minecraft/world/entity/ai/behavior/RamTarget/ (Ljava/util/function/Function;Lnet/minecraft/world/entity/ai/targeting/TargetingConditions;FLjava/util/function/ToDoubleFunction;Ljava/util/function/Function;Ljava/util/function/Function;)V +MD: net/minecraft/world/entity/ai/behavior/RamTarget/m_217355_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/animal/goat/Goat;)V net/minecraft/world/entity/ai/behavior/RamTarget/finishRam (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/animal/goat/Goat;)V +MD: net/minecraft/world/entity/ai/behavior/RamTarget/m_217362_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/animal/goat/Goat;)Z net/minecraft/world/entity/ai/behavior/RamTarget/hasRammedHornBreakingBlock (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/animal/goat/Goat;)Z +MD: net/minecraft/world/entity/ai/behavior/RamTarget/m_6114_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;)Z net/minecraft/world/entity/ai/behavior/RamTarget/checkExtraStartConditions (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;)Z +MD: net/minecraft/world/entity/ai/behavior/RamTarget/m_6114_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/animal/goat/Goat;)Z net/minecraft/world/entity/ai/behavior/RamTarget/checkExtraStartConditions (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/animal/goat/Goat;)Z +MD: net/minecraft/world/entity/ai/behavior/RamTarget/m_6725_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)V net/minecraft/world/entity/ai/behavior/RamTarget/tick (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)V +MD: net/minecraft/world/entity/ai/behavior/RamTarget/m_6725_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/animal/goat/Goat;J)V net/minecraft/world/entity/ai/behavior/RamTarget/tick (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/animal/goat/Goat;J)V +MD: net/minecraft/world/entity/ai/behavior/RamTarget/m_6735_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/animal/goat/Goat;J)V net/minecraft/world/entity/ai/behavior/RamTarget/start (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/animal/goat/Goat;J)V +MD: net/minecraft/world/entity/ai/behavior/RamTarget/m_6735_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)V net/minecraft/world/entity/ai/behavior/RamTarget/start (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)V +MD: net/minecraft/world/entity/ai/behavior/RamTarget/m_6737_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)Z net/minecraft/world/entity/ai/behavior/RamTarget/canStillUse (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)Z +MD: net/minecraft/world/entity/ai/behavior/RamTarget/m_6737_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/animal/goat/Goat;J)Z net/minecraft/world/entity/ai/behavior/RamTarget/canStillUse (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/animal/goat/Goat;J)Z +MD: net/minecraft/world/entity/ai/behavior/RandomLookAround/ (Lnet/minecraft/util/valueproviders/IntProvider;FFF)V net/minecraft/world/entity/ai/behavior/RandomLookAround/ (Lnet/minecraft/util/valueproviders/IntProvider;FFF)V +MD: net/minecraft/world/entity/ai/behavior/RandomLookAround/m_6735_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/Mob;J)V net/minecraft/world/entity/ai/behavior/RandomLookAround/start (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/Mob;J)V +MD: net/minecraft/world/entity/ai/behavior/RandomLookAround/m_6735_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)V net/minecraft/world/entity/ai/behavior/RandomLookAround/start (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)V +MD: net/minecraft/world/entity/ai/behavior/RandomStroll/ ()V net/minecraft/world/entity/ai/behavior/RandomStroll/ ()V +MD: net/minecraft/world/entity/ai/behavior/RandomStroll/ ()V net/minecraft/world/entity/ai/behavior/RandomStroll/ ()V +MD: net/minecraft/world/entity/ai/behavior/RandomStroll/m_257234_ (Ljava/util/function/Predicate;Ljava/util/function/Function;FLnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;)Lnet/minecraft/world/entity/ai/behavior/declarative/Trigger; net/minecraft/world/entity/ai/behavior/RandomStroll/lambda$strollFlyOrSwim$9 (Ljava/util/function/Predicate;Ljava/util/function/Function;FLnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;)Lnet/minecraft/world/entity/ai/behavior/declarative/Trigger; +MD: net/minecraft/world/entity/ai/behavior/RandomStroll/m_257235_ (Lnet/minecraft/world/entity/PathfinderMob;)Lnet/minecraft/world/phys/Vec3; net/minecraft/world/entity/ai/behavior/RandomStroll/lambda$stroll$0 (Lnet/minecraft/world/entity/PathfinderMob;)Lnet/minecraft/world/phys/Vec3; +MD: net/minecraft/world/entity/ai/behavior/RandomStroll/m_257236_ (Lnet/minecraft/world/entity/PathfinderMob;)Z net/minecraft/world/entity/ai/behavior/RandomStroll/lambda$fly$6 (Lnet/minecraft/world/entity/PathfinderMob;)Z +MD: net/minecraft/world/entity/ai/behavior/RandomStroll/m_257237_ (IILnet/minecraft/world/entity/PathfinderMob;)Lnet/minecraft/world/phys/Vec3; net/minecraft/world/entity/ai/behavior/RandomStroll/lambda$stroll$3 (IILnet/minecraft/world/entity/PathfinderMob;)Lnet/minecraft/world/phys/Vec3; +MD: net/minecraft/world/entity/ai/behavior/RandomStroll/m_257238_ (Ljava/util/function/Predicate;Ljava/util/function/Function;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;FLnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/PathfinderMob;J)Z net/minecraft/world/entity/ai/behavior/RandomStroll/lambda$strollFlyOrSwim$8 (Ljava/util/function/Predicate;Ljava/util/function/Function;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;FLnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/PathfinderMob;J)Z +MD: net/minecraft/world/entity/ai/behavior/RandomStroll/m_257240_ (Lnet/minecraft/world/entity/PathfinderMob;)Lnet/minecraft/world/phys/Vec3; net/minecraft/world/entity/ai/behavior/RandomStroll/lambda$fly$5 (Lnet/minecraft/world/entity/PathfinderMob;)Lnet/minecraft/world/phys/Vec3; +MD: net/minecraft/world/entity/ai/behavior/RandomStroll/m_257241_ (Lnet/minecraft/world/entity/PathfinderMob;)Z net/minecraft/world/entity/ai/behavior/RandomStroll/lambda$stroll$1 (Lnet/minecraft/world/entity/PathfinderMob;)Z +MD: net/minecraft/world/entity/ai/behavior/RandomStroll/m_257242_ (Lnet/minecraft/world/entity/PathfinderMob;)Z net/minecraft/world/entity/ai/behavior/RandomStroll/lambda$stroll$4 (Lnet/minecraft/world/entity/PathfinderMob;)Z +MD: net/minecraft/world/entity/ai/behavior/RandomStroll/m_257243_ (Ljava/util/function/Predicate;Ljava/util/function/Function;FLnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/world/entity/ai/behavior/RandomStroll/lambda$strollFlyOrSwim$10 (Ljava/util/function/Predicate;Ljava/util/function/Function;FLnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/world/entity/ai/behavior/RandomStroll/m_257244_ (FLnet/minecraft/world/phys/Vec3;)Lnet/minecraft/world/entity/ai/memory/WalkTarget; net/minecraft/world/entity/ai/behavior/RandomStroll/lambda$strollFlyOrSwim$7 (FLnet/minecraft/world/phys/Vec3;)Lnet/minecraft/world/entity/ai/memory/WalkTarget; +MD: net/minecraft/world/entity/ai/behavior/RandomStroll/m_257379_ (F)Lnet/minecraft/world/entity/ai/behavior/BehaviorControl; net/minecraft/world/entity/ai/behavior/RandomStroll/fly (F)Lnet/minecraft/world/entity/ai/behavior/BehaviorControl; +MD: net/minecraft/world/entity/ai/behavior/RandomStroll/m_257416_ (Lnet/minecraft/world/entity/PathfinderMob;)Lnet/minecraft/world/phys/Vec3; net/minecraft/world/entity/ai/behavior/RandomStroll/getTargetSwimPos (Lnet/minecraft/world/entity/PathfinderMob;)Lnet/minecraft/world/phys/Vec3; +MD: net/minecraft/world/entity/ai/behavior/RandomStroll/m_257629_ (FLjava/util/function/Function;Ljava/util/function/Predicate;)Lnet/minecraft/world/entity/ai/behavior/OneShot; net/minecraft/world/entity/ai/behavior/RandomStroll/strollFlyOrSwim (FLjava/util/function/Function;Ljava/util/function/Predicate;)Lnet/minecraft/world/entity/ai/behavior/OneShot; +MD: net/minecraft/world/entity/ai/behavior/RandomStroll/m_257751_ (F)Lnet/minecraft/world/entity/ai/behavior/BehaviorControl; net/minecraft/world/entity/ai/behavior/RandomStroll/swim (F)Lnet/minecraft/world/entity/ai/behavior/BehaviorControl; +MD: net/minecraft/world/entity/ai/behavior/RandomStroll/m_257798_ (FZ)Lnet/minecraft/world/entity/ai/behavior/OneShot; net/minecraft/world/entity/ai/behavior/RandomStroll/stroll (FZ)Lnet/minecraft/world/entity/ai/behavior/OneShot; +MD: net/minecraft/world/entity/ai/behavior/RandomStroll/m_257960_ (FII)Lnet/minecraft/world/entity/ai/behavior/BehaviorControl; net/minecraft/world/entity/ai/behavior/RandomStroll/stroll (FII)Lnet/minecraft/world/entity/ai/behavior/BehaviorControl; +MD: net/minecraft/world/entity/ai/behavior/RandomStroll/m_257965_ (F)Lnet/minecraft/world/entity/ai/behavior/OneShot; net/minecraft/world/entity/ai/behavior/RandomStroll/stroll (F)Lnet/minecraft/world/entity/ai/behavior/OneShot; +MD: net/minecraft/world/entity/ai/behavior/RandomStroll/m_257997_ (Lnet/minecraft/world/entity/PathfinderMob;II)Lnet/minecraft/world/phys/Vec3; net/minecraft/world/entity/ai/behavior/RandomStroll/getTargetFlyPos (Lnet/minecraft/world/entity/PathfinderMob;II)Lnet/minecraft/world/phys/Vec3; +MD: net/minecraft/world/entity/ai/behavior/RandomStroll/m_289103_ (Lnet/minecraft/world/entity/PathfinderMob;)Z net/minecraft/world/entity/ai/behavior/RandomStroll/lambda$stroll$2 (Lnet/minecraft/world/entity/PathfinderMob;)Z +MD: net/minecraft/world/entity/ai/behavior/ReactToBell/ ()V net/minecraft/world/entity/ai/behavior/ReactToBell/ ()V +MD: net/minecraft/world/entity/ai/behavior/ReactToBell/m_257653_ (Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/world/entity/ai/behavior/ReactToBell/lambda$create$2 (Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/world/entity/ai/behavior/ReactToBell/m_258068_ ()Lnet/minecraft/world/entity/ai/behavior/BehaviorControl; net/minecraft/world/entity/ai/behavior/ReactToBell/create ()Lnet/minecraft/world/entity/ai/behavior/BehaviorControl; +MD: net/minecraft/world/entity/ai/behavior/ReactToBell/m_258069_ (Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;)Lnet/minecraft/world/entity/ai/behavior/declarative/Trigger; net/minecraft/world/entity/ai/behavior/ReactToBell/lambda$create$1 (Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;)Lnet/minecraft/world/entity/ai/behavior/declarative/Trigger; +MD: net/minecraft/world/entity/ai/behavior/ReactToBell/m_289104_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)Z net/minecraft/world/entity/ai/behavior/ReactToBell/lambda$create$0 (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)Z +MD: net/minecraft/world/entity/ai/behavior/ResetProfession/ ()V net/minecraft/world/entity/ai/behavior/ResetProfession/ ()V +MD: net/minecraft/world/entity/ai/behavior/ResetProfession/m_257593_ ()Lnet/minecraft/world/entity/ai/behavior/BehaviorControl; net/minecraft/world/entity/ai/behavior/ResetProfession/create ()Lnet/minecraft/world/entity/ai/behavior/BehaviorControl; +MD: net/minecraft/world/entity/ai/behavior/ResetProfession/m_257917_ (Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;)Lnet/minecraft/world/entity/ai/behavior/declarative/Trigger; net/minecraft/world/entity/ai/behavior/ResetProfession/lambda$create$1 (Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;)Lnet/minecraft/world/entity/ai/behavior/declarative/Trigger; +MD: net/minecraft/world/entity/ai/behavior/ResetProfession/m_257921_ (Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/world/entity/ai/behavior/ResetProfession/lambda$create$2 (Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/world/entity/ai/behavior/ResetProfession/m_258077_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/npc/Villager;J)Z net/minecraft/world/entity/ai/behavior/ResetProfession/lambda$create$0 (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/npc/Villager;J)Z +MD: net/minecraft/world/entity/ai/behavior/ResetRaidStatus/ ()V net/minecraft/world/entity/ai/behavior/ResetRaidStatus/ ()V +MD: net/minecraft/world/entity/ai/behavior/ResetRaidStatus/m_257468_ ()Lnet/minecraft/world/entity/ai/behavior/BehaviorControl; net/minecraft/world/entity/ai/behavior/ResetRaidStatus/create ()Lnet/minecraft/world/entity/ai/behavior/BehaviorControl; +MD: net/minecraft/world/entity/ai/behavior/ResetRaidStatus/m_258019_ (Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/world/entity/ai/behavior/ResetRaidStatus/lambda$create$1 (Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/world/entity/ai/behavior/ResetRaidStatus/m_288132_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)Z net/minecraft/world/entity/ai/behavior/ResetRaidStatus/lambda$create$0 (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)Z +MD: net/minecraft/world/entity/ai/behavior/RingBell/ ()V net/minecraft/world/entity/ai/behavior/RingBell/ ()V +MD: net/minecraft/world/entity/ai/behavior/RingBell/m_257471_ ()Lnet/minecraft/world/entity/ai/behavior/BehaviorControl; net/minecraft/world/entity/ai/behavior/RingBell/create ()Lnet/minecraft/world/entity/ai/behavior/BehaviorControl; +MD: net/minecraft/world/entity/ai/behavior/RingBell/m_257542_ (Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/world/entity/ai/behavior/RingBell/lambda$create$2 (Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/world/entity/ai/behavior/RingBell/m_257770_ (Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)Z net/minecraft/world/entity/ai/behavior/RingBell/lambda$create$0 (Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)Z +MD: net/minecraft/world/entity/ai/behavior/RingBell/m_257803_ (Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;)Lnet/minecraft/world/entity/ai/behavior/declarative/Trigger; net/minecraft/world/entity/ai/behavior/RingBell/lambda$create$1 (Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;)Lnet/minecraft/world/entity/ai/behavior/declarative/Trigger; +MD: net/minecraft/world/entity/ai/behavior/RunOne/ (Ljava/util/Map;Ljava/util/List;)V net/minecraft/world/entity/ai/behavior/RunOne/ (Ljava/util/Map;Ljava/util/List;)V +MD: net/minecraft/world/entity/ai/behavior/RunOne/ (Ljava/util/List;)V net/minecraft/world/entity/ai/behavior/RunOne/ (Ljava/util/List;)V +MD: net/minecraft/world/entity/ai/behavior/SetClosestHomeAsWalkTarget/ ()V net/minecraft/world/entity/ai/behavior/SetClosestHomeAsWalkTarget/ ()V +MD: net/minecraft/world/entity/ai/behavior/SetClosestHomeAsWalkTarget/m_217371_ (Lnet/minecraft/core/Holder;)Z net/minecraft/world/entity/ai/behavior/SetClosestHomeAsWalkTarget/lambda$create$2 (Lnet/minecraft/core/Holder;)Z +MD: net/minecraft/world/entity/ai/behavior/SetClosestHomeAsWalkTarget/m_217375_ (Lnet/minecraft/core/Holder;)Z net/minecraft/world/entity/ai/behavior/SetClosestHomeAsWalkTarget/lambda$create$0 (Lnet/minecraft/core/Holder;)Z +MD: net/minecraft/world/entity/ai/behavior/SetClosestHomeAsWalkTarget/m_257245_ (Lorg/apache/commons/lang3/mutable/MutableLong;Lit/unimi/dsi/fastutil/longs/Long2LongMap;FLnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;)Lnet/minecraft/world/entity/ai/behavior/declarative/Trigger; net/minecraft/world/entity/ai/behavior/SetClosestHomeAsWalkTarget/lambda$create$5 (Lorg/apache/commons/lang3/mutable/MutableLong;Lit/unimi/dsi/fastutil/longs/Long2LongMap;FLnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;)Lnet/minecraft/world/entity/ai/behavior/declarative/Trigger; +MD: net/minecraft/world/entity/ai/behavior/SetClosestHomeAsWalkTarget/m_257246_ (Lorg/apache/commons/lang3/mutable/MutableLong;Lit/unimi/dsi/fastutil/longs/Long2LongMap$Entry;)Z net/minecraft/world/entity/ai/behavior/SetClosestHomeAsWalkTarget/lambda$create$3 (Lorg/apache/commons/lang3/mutable/MutableLong;Lit/unimi/dsi/fastutil/longs/Long2LongMap$Entry;)Z +MD: net/minecraft/world/entity/ai/behavior/SetClosestHomeAsWalkTarget/m_257247_ (Lorg/apache/commons/lang3/mutable/MutableLong;Lit/unimi/dsi/fastutil/longs/Long2LongMap;FLnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/world/entity/ai/behavior/SetClosestHomeAsWalkTarget/lambda$create$6 (Lorg/apache/commons/lang3/mutable/MutableLong;Lit/unimi/dsi/fastutil/longs/Long2LongMap;FLnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/world/entity/ai/behavior/SetClosestHomeAsWalkTarget/m_257248_ (Lorg/apache/commons/lang3/mutable/MutableLong;Lit/unimi/dsi/fastutil/longs/Long2LongMap;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;FLnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/PathfinderMob;J)Z net/minecraft/world/entity/ai/behavior/SetClosestHomeAsWalkTarget/lambda$create$4 (Lorg/apache/commons/lang3/mutable/MutableLong;Lit/unimi/dsi/fastutil/longs/Long2LongMap;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;FLnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/PathfinderMob;J)Z +MD: net/minecraft/world/entity/ai/behavior/SetClosestHomeAsWalkTarget/m_257249_ (Lit/unimi/dsi/fastutil/longs/Long2LongMap;Lorg/apache/commons/lang3/mutable/MutableInt;Lorg/apache/commons/lang3/mutable/MutableLong;Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/entity/ai/behavior/SetClosestHomeAsWalkTarget/lambda$create$1 (Lit/unimi/dsi/fastutil/longs/Long2LongMap;Lorg/apache/commons/lang3/mutable/MutableInt;Lorg/apache/commons/lang3/mutable/MutableLong;Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/entity/ai/behavior/SetClosestHomeAsWalkTarget/m_257524_ (F)Lnet/minecraft/world/entity/ai/behavior/BehaviorControl; net/minecraft/world/entity/ai/behavior/SetClosestHomeAsWalkTarget/create (F)Lnet/minecraft/world/entity/ai/behavior/BehaviorControl; +MD: net/minecraft/world/entity/ai/behavior/SetEntityLookTarget/ ()V net/minecraft/world/entity/ai/behavior/SetEntityLookTarget/ ()V +MD: net/minecraft/world/entity/ai/behavior/SetEntityLookTarget/m_23912_ (Lnet/minecraft/world/entity/LivingEntity;)Z net/minecraft/world/entity/ai/behavior/SetEntityLookTarget/lambda$create$2 (Lnet/minecraft/world/entity/LivingEntity;)Z +MD: net/minecraft/world/entity/ai/behavior/SetEntityLookTarget/m_257250_ (Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Ljava/util/function/Predicate;FLnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)Z net/minecraft/world/entity/ai/behavior/SetEntityLookTarget/lambda$create$4 (Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Ljava/util/function/Predicate;FLnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)Z +MD: net/minecraft/world/entity/ai/behavior/SetEntityLookTarget/m_257251_ (Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;Ljava/util/function/Predicate;FLnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;)Lnet/minecraft/world/entity/ai/behavior/declarative/Trigger; net/minecraft/world/entity/ai/behavior/SetEntityLookTarget/lambda$create$5 (Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;Ljava/util/function/Predicate;FLnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;)Lnet/minecraft/world/entity/ai/behavior/declarative/Trigger; +MD: net/minecraft/world/entity/ai/behavior/SetEntityLookTarget/m_257253_ (Ljava/util/function/Predicate;FLnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/world/entity/ai/behavior/SetEntityLookTarget/lambda$create$6 (Ljava/util/function/Predicate;FLnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/world/entity/ai/behavior/SetEntityLookTarget/m_257381_ (Lnet/minecraft/world/entity/MobCategory;F)Lnet/minecraft/world/entity/ai/behavior/BehaviorControl; net/minecraft/world/entity/ai/behavior/SetEntityLookTarget/create (Lnet/minecraft/world/entity/MobCategory;F)Lnet/minecraft/world/entity/ai/behavior/BehaviorControl; +MD: net/minecraft/world/entity/ai/behavior/SetEntityLookTarget/m_257660_ (F)Lnet/minecraft/world/entity/ai/behavior/OneShot; net/minecraft/world/entity/ai/behavior/SetEntityLookTarget/create (F)Lnet/minecraft/world/entity/ai/behavior/OneShot; +MD: net/minecraft/world/entity/ai/behavior/SetEntityLookTarget/m_257836_ (Ljava/util/function/Predicate;F)Lnet/minecraft/world/entity/ai/behavior/OneShot; net/minecraft/world/entity/ai/behavior/SetEntityLookTarget/create (Ljava/util/function/Predicate;F)Lnet/minecraft/world/entity/ai/behavior/OneShot; +MD: net/minecraft/world/entity/ai/behavior/SetEntityLookTarget/m_258096_ (Lnet/minecraft/world/entity/EntityType;F)Lnet/minecraft/world/entity/ai/behavior/OneShot; net/minecraft/world/entity/ai/behavior/SetEntityLookTarget/create (Lnet/minecraft/world/entity/EntityType;F)Lnet/minecraft/world/entity/ai/behavior/OneShot; +MD: net/minecraft/world/entity/ai/behavior/SetEntityLookTarget/m_263988_ (Lnet/minecraft/world/entity/LivingEntity;FLnet/minecraft/world/entity/LivingEntity;)Z net/minecraft/world/entity/ai/behavior/SetEntityLookTarget/lambda$create$3 (Lnet/minecraft/world/entity/LivingEntity;FLnet/minecraft/world/entity/LivingEntity;)Z +MD: net/minecraft/world/entity/ai/behavior/SetEntityLookTarget/m_289105_ (Lnet/minecraft/world/entity/MobCategory;Lnet/minecraft/world/entity/LivingEntity;)Z net/minecraft/world/entity/ai/behavior/SetEntityLookTarget/lambda$create$0 (Lnet/minecraft/world/entity/MobCategory;Lnet/minecraft/world/entity/LivingEntity;)Z +MD: net/minecraft/world/entity/ai/behavior/SetEntityLookTarget/m_289106_ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/entity/LivingEntity;)Z net/minecraft/world/entity/ai/behavior/SetEntityLookTarget/lambda$create$1 (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/entity/LivingEntity;)Z +MD: net/minecraft/world/entity/ai/behavior/SetEntityLookTargetSometimes/ ()V net/minecraft/world/entity/ai/behavior/SetEntityLookTargetSometimes/ ()V +MD: net/minecraft/world/entity/ai/behavior/SetEntityLookTargetSometimes/m_257458_ (FLnet/minecraft/util/valueproviders/UniformInt;)Lnet/minecraft/world/entity/ai/behavior/BehaviorControl; net/minecraft/world/entity/ai/behavior/SetEntityLookTargetSometimes/create (FLnet/minecraft/util/valueproviders/UniformInt;)Lnet/minecraft/world/entity/ai/behavior/BehaviorControl; +MD: net/minecraft/world/entity/ai/behavior/SetEntityLookTargetSometimes/m_257472_ (Lnet/minecraft/world/entity/EntityType;FLnet/minecraft/util/valueproviders/UniformInt;)Lnet/minecraft/world/entity/ai/behavior/BehaviorControl; net/minecraft/world/entity/ai/behavior/SetEntityLookTargetSometimes/create (Lnet/minecraft/world/entity/EntityType;FLnet/minecraft/util/valueproviders/UniformInt;)Lnet/minecraft/world/entity/ai/behavior/BehaviorControl; +MD: net/minecraft/world/entity/ai/behavior/SetEntityLookTargetSometimes/m_257641_ (Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;Ljava/util/function/Predicate;FLnet/minecraft/world/entity/ai/behavior/SetEntityLookTargetSometimes$Ticker;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;)Lnet/minecraft/world/entity/ai/behavior/declarative/Trigger; net/minecraft/world/entity/ai/behavior/SetEntityLookTargetSometimes/lambda$create$4 (Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;Ljava/util/function/Predicate;FLnet/minecraft/world/entity/ai/behavior/SetEntityLookTargetSometimes$Ticker;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;)Lnet/minecraft/world/entity/ai/behavior/declarative/Trigger; +MD: net/minecraft/world/entity/ai/behavior/SetEntityLookTargetSometimes/m_257679_ (Lnet/minecraft/world/entity/LivingEntity;FLnet/minecraft/world/entity/LivingEntity;)Z net/minecraft/world/entity/ai/behavior/SetEntityLookTargetSometimes/lambda$create$2 (Lnet/minecraft/world/entity/LivingEntity;FLnet/minecraft/world/entity/LivingEntity;)Z +MD: net/minecraft/world/entity/ai/behavior/SetEntityLookTargetSometimes/m_257724_ (FLnet/minecraft/util/valueproviders/UniformInt;Ljava/util/function/Predicate;)Lnet/minecraft/world/entity/ai/behavior/BehaviorControl; net/minecraft/world/entity/ai/behavior/SetEntityLookTargetSometimes/create (FLnet/minecraft/util/valueproviders/UniformInt;Ljava/util/function/Predicate;)Lnet/minecraft/world/entity/ai/behavior/BehaviorControl; +MD: net/minecraft/world/entity/ai/behavior/SetEntityLookTargetSometimes/m_257728_ (Lnet/minecraft/world/entity/LivingEntity;)Z net/minecraft/world/entity/ai/behavior/SetEntityLookTargetSometimes/lambda$create$0 (Lnet/minecraft/world/entity/LivingEntity;)Z +MD: net/minecraft/world/entity/ai/behavior/SetEntityLookTargetSometimes/m_257797_ (Ljava/util/function/Predicate;FLnet/minecraft/world/entity/ai/behavior/SetEntityLookTargetSometimes$Ticker;Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/world/entity/ai/behavior/SetEntityLookTargetSometimes/lambda$create$5 (Ljava/util/function/Predicate;FLnet/minecraft/world/entity/ai/behavior/SetEntityLookTargetSometimes$Ticker;Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/world/entity/ai/behavior/SetEntityLookTargetSometimes/m_263989_ (Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Ljava/util/function/Predicate;FLnet/minecraft/world/entity/ai/behavior/SetEntityLookTargetSometimes$Ticker;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)Z net/minecraft/world/entity/ai/behavior/SetEntityLookTargetSometimes/lambda$create$3 (Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Ljava/util/function/Predicate;FLnet/minecraft/world/entity/ai/behavior/SetEntityLookTargetSometimes$Ticker;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)Z +MD: net/minecraft/world/entity/ai/behavior/SetEntityLookTargetSometimes/m_289107_ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/entity/LivingEntity;)Z net/minecraft/world/entity/ai/behavior/SetEntityLookTargetSometimes/lambda$create$1 (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/entity/LivingEntity;)Z +MD: net/minecraft/world/entity/ai/behavior/SetEntityLookTargetSometimes$Ticker/ (Lnet/minecraft/util/valueproviders/UniformInt;)V net/minecraft/world/entity/ai/behavior/SetEntityLookTargetSometimes$Ticker/ (Lnet/minecraft/util/valueproviders/UniformInt;)V +MD: net/minecraft/world/entity/ai/behavior/SetEntityLookTargetSometimes$Ticker/m_257976_ (Lnet/minecraft/util/RandomSource;)Z net/minecraft/world/entity/ai/behavior/SetEntityLookTargetSometimes$Ticker/tickDownAndCheck (Lnet/minecraft/util/RandomSource;)Z +MD: net/minecraft/world/entity/ai/behavior/SetHiddenState/ ()V net/minecraft/world/entity/ai/behavior/SetHiddenState/ ()V +MD: net/minecraft/world/entity/ai/behavior/SetHiddenState/m_257559_ (Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;Lorg/apache/commons/lang3/mutable/MutableInt;IILnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;)Lnet/minecraft/world/entity/ai/behavior/declarative/Trigger; net/minecraft/world/entity/ai/behavior/SetHiddenState/lambda$create$1 (Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;Lorg/apache/commons/lang3/mutable/MutableInt;IILnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;)Lnet/minecraft/world/entity/ai/behavior/declarative/Trigger; +MD: net/minecraft/world/entity/ai/behavior/SetHiddenState/m_257686_ (Lorg/apache/commons/lang3/mutable/MutableInt;IILnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/world/entity/ai/behavior/SetHiddenState/lambda$create$2 (Lorg/apache/commons/lang3/mutable/MutableInt;IILnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/world/entity/ai/behavior/SetHiddenState/m_257713_ (II)Lnet/minecraft/world/entity/ai/behavior/BehaviorControl; net/minecraft/world/entity/ai/behavior/SetHiddenState/create (II)Lnet/minecraft/world/entity/ai/behavior/BehaviorControl; +MD: net/minecraft/world/entity/ai/behavior/SetHiddenState/m_288133_ (Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lorg/apache/commons/lang3/mutable/MutableInt;ILnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;ILnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)Z net/minecraft/world/entity/ai/behavior/SetHiddenState/lambda$create$0 (Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lorg/apache/commons/lang3/mutable/MutableInt;ILnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;ILnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)Z +MD: net/minecraft/world/entity/ai/behavior/SetLookAndInteract/ ()V net/minecraft/world/entity/ai/behavior/SetLookAndInteract/ ()V +MD: net/minecraft/world/entity/ai/behavior/SetLookAndInteract/m_257254_ (Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;ILnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)Z net/minecraft/world/entity/ai/behavior/SetLookAndInteract/lambda$create$1 (Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;ILnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)Z +MD: net/minecraft/world/entity/ai/behavior/SetLookAndInteract/m_257256_ (Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;ILnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;)Lnet/minecraft/world/entity/ai/behavior/declarative/Trigger; net/minecraft/world/entity/ai/behavior/SetLookAndInteract/lambda$create$2 (Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;ILnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;)Lnet/minecraft/world/entity/ai/behavior/declarative/Trigger; +MD: net/minecraft/world/entity/ai/behavior/SetLookAndInteract/m_257257_ (ILnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/world/entity/ai/behavior/SetLookAndInteract/lambda$create$3 (ILnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/world/entity/ai/behavior/SetLookAndInteract/m_257430_ (Lnet/minecraft/world/entity/EntityType;I)Lnet/minecraft/world/entity/ai/behavior/BehaviorControl; net/minecraft/world/entity/ai/behavior/SetLookAndInteract/create (Lnet/minecraft/world/entity/EntityType;I)Lnet/minecraft/world/entity/ai/behavior/BehaviorControl; +MD: net/minecraft/world/entity/ai/behavior/SetLookAndInteract/m_289108_ (Lnet/minecraft/world/entity/LivingEntity;ILnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/entity/LivingEntity;)Z net/minecraft/world/entity/ai/behavior/SetLookAndInteract/lambda$create$0 (Lnet/minecraft/world/entity/LivingEntity;ILnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/entity/LivingEntity;)Z +MD: net/minecraft/world/entity/ai/behavior/SetRaidStatus/ ()V net/minecraft/world/entity/ai/behavior/SetRaidStatus/ ()V +MD: net/minecraft/world/entity/ai/behavior/SetRaidStatus/m_257702_ (Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/world/entity/ai/behavior/SetRaidStatus/lambda$create$1 (Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/world/entity/ai/behavior/SetRaidStatus/m_257923_ ()Lnet/minecraft/world/entity/ai/behavior/BehaviorControl; net/minecraft/world/entity/ai/behavior/SetRaidStatus/create ()Lnet/minecraft/world/entity/ai/behavior/BehaviorControl; +MD: net/minecraft/world/entity/ai/behavior/SetRaidStatus/m_257925_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)Z net/minecraft/world/entity/ai/behavior/SetRaidStatus/lambda$create$0 (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)Z +MD: net/minecraft/world/entity/ai/behavior/SetWalkTargetAwayFrom/ ()V net/minecraft/world/entity/ai/behavior/SetWalkTargetAwayFrom/ ()V +MD: net/minecraft/world/entity/ai/behavior/SetWalkTargetAwayFrom/m_257370_ (Lnet/minecraft/world/entity/ai/memory/MemoryModuleType;FIZ)Lnet/minecraft/world/entity/ai/behavior/OneShot; net/minecraft/world/entity/ai/behavior/SetWalkTargetAwayFrom/entity (Lnet/minecraft/world/entity/ai/memory/MemoryModuleType;FIZ)Lnet/minecraft/world/entity/ai/behavior/OneShot; +MD: net/minecraft/world/entity/ai/behavior/SetWalkTargetAwayFrom/m_257383_ (Lnet/minecraft/world/entity/ai/memory/MemoryModuleType;ZLjava/util/function/Function;IFLnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/world/entity/ai/behavior/SetWalkTargetAwayFrom/lambda$create$2 (Lnet/minecraft/world/entity/ai/memory/MemoryModuleType;ZLjava/util/function/Function;IFLnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/world/entity/ai/behavior/SetWalkTargetAwayFrom/m_257620_ (Lnet/minecraft/world/entity/ai/memory/MemoryModuleType;FIZ)Lnet/minecraft/world/entity/ai/behavior/BehaviorControl; net/minecraft/world/entity/ai/behavior/SetWalkTargetAwayFrom/pos (Lnet/minecraft/world/entity/ai/memory/MemoryModuleType;FIZ)Lnet/minecraft/world/entity/ai/behavior/BehaviorControl; +MD: net/minecraft/world/entity/ai/behavior/SetWalkTargetAwayFrom/m_257681_ (Lnet/minecraft/world/entity/ai/memory/MemoryModuleType;FIZLjava/util/function/Function;)Lnet/minecraft/world/entity/ai/behavior/OneShot; net/minecraft/world/entity/ai/behavior/SetWalkTargetAwayFrom/create (Lnet/minecraft/world/entity/ai/memory/MemoryModuleType;FIZLjava/util/function/Function;)Lnet/minecraft/world/entity/ai/behavior/OneShot; +MD: net/minecraft/world/entity/ai/behavior/SetWalkTargetAwayFrom/m_257839_ (Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;ZLjava/util/function/Function;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;IFLnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/PathfinderMob;J)Z net/minecraft/world/entity/ai/behavior/SetWalkTargetAwayFrom/lambda$create$0 (Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;ZLjava/util/function/Function;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;IFLnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/PathfinderMob;J)Z +MD: net/minecraft/world/entity/ai/behavior/SetWalkTargetAwayFrom/m_257932_ (Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;ZLjava/util/function/Function;IFLnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;)Lnet/minecraft/world/entity/ai/behavior/declarative/Trigger; net/minecraft/world/entity/ai/behavior/SetWalkTargetAwayFrom/lambda$create$1 (Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;ZLjava/util/function/Function;IFLnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;)Lnet/minecraft/world/entity/ai/behavior/declarative/Trigger; +MD: net/minecraft/world/entity/ai/behavior/SetWalkTargetFromAttackTargetIfTargetOutOfReach/ ()V net/minecraft/world/entity/ai/behavior/SetWalkTargetFromAttackTargetIfTargetOutOfReach/ ()V +MD: net/minecraft/world/entity/ai/behavior/SetWalkTargetFromAttackTargetIfTargetOutOfReach/m_147906_ (FLnet/minecraft/world/entity/LivingEntity;)Ljava/lang/Float; net/minecraft/world/entity/ai/behavior/SetWalkTargetFromAttackTargetIfTargetOutOfReach/lambda$create$0 (FLnet/minecraft/world/entity/LivingEntity;)Ljava/lang/Float; +MD: net/minecraft/world/entity/ai/behavior/SetWalkTargetFromAttackTargetIfTargetOutOfReach/m_257258_ (Ljava/util/function/Function;Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/world/entity/ai/behavior/SetWalkTargetFromAttackTargetIfTargetOutOfReach/lambda$create$3 (Ljava/util/function/Function;Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/world/entity/ai/behavior/SetWalkTargetFromAttackTargetIfTargetOutOfReach/m_257259_ (Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Ljava/util/function/Function;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/Mob;J)Z net/minecraft/world/entity/ai/behavior/SetWalkTargetFromAttackTargetIfTargetOutOfReach/lambda$create$1 (Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Ljava/util/function/Function;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/Mob;J)Z +MD: net/minecraft/world/entity/ai/behavior/SetWalkTargetFromAttackTargetIfTargetOutOfReach/m_257260_ (Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;Ljava/util/function/Function;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;)Lnet/minecraft/world/entity/ai/behavior/declarative/Trigger; net/minecraft/world/entity/ai/behavior/SetWalkTargetFromAttackTargetIfTargetOutOfReach/lambda$create$2 (Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;Ljava/util/function/Function;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;)Lnet/minecraft/world/entity/ai/behavior/declarative/Trigger; +MD: net/minecraft/world/entity/ai/behavior/SetWalkTargetFromAttackTargetIfTargetOutOfReach/m_257469_ (F)Lnet/minecraft/world/entity/ai/behavior/BehaviorControl; net/minecraft/world/entity/ai/behavior/SetWalkTargetFromAttackTargetIfTargetOutOfReach/create (F)Lnet/minecraft/world/entity/ai/behavior/BehaviorControl; +MD: net/minecraft/world/entity/ai/behavior/SetWalkTargetFromAttackTargetIfTargetOutOfReach/m_257648_ (Ljava/util/function/Function;)Lnet/minecraft/world/entity/ai/behavior/BehaviorControl; net/minecraft/world/entity/ai/behavior/SetWalkTargetFromAttackTargetIfTargetOutOfReach/create (Ljava/util/function/Function;)Lnet/minecraft/world/entity/ai/behavior/BehaviorControl; +MD: net/minecraft/world/entity/ai/behavior/SetWalkTargetFromBlockMemory/ ()V net/minecraft/world/entity/ai/behavior/SetWalkTargetFromBlockMemory/ ()V +MD: net/minecraft/world/entity/ai/behavior/SetWalkTargetFromBlockMemory/m_257261_ (Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;ILnet/minecraft/world/entity/ai/memory/MemoryModuleType;IFILnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;)Lnet/minecraft/world/entity/ai/behavior/declarative/Trigger; net/minecraft/world/entity/ai/behavior/SetWalkTargetFromBlockMemory/lambda$create$1 (Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;ILnet/minecraft/world/entity/ai/memory/MemoryModuleType;IFILnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;)Lnet/minecraft/world/entity/ai/behavior/declarative/Trigger; +MD: net/minecraft/world/entity/ai/behavior/SetWalkTargetFromBlockMemory/m_257262_ (Lnet/minecraft/world/entity/ai/memory/MemoryModuleType;IIFILnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/world/entity/ai/behavior/SetWalkTargetFromBlockMemory/lambda$create$2 (Lnet/minecraft/world/entity/ai/memory/MemoryModuleType;IIFILnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/world/entity/ai/behavior/SetWalkTargetFromBlockMemory/m_257972_ (Lnet/minecraft/world/entity/ai/memory/MemoryModuleType;FIII)Lnet/minecraft/world/entity/ai/behavior/OneShot; net/minecraft/world/entity/ai/behavior/SetWalkTargetFromBlockMemory/create (Lnet/minecraft/world/entity/ai/memory/MemoryModuleType;FIII)Lnet/minecraft/world/entity/ai/behavior/OneShot; +MD: net/minecraft/world/entity/ai/behavior/SetWalkTargetFromBlockMemory/m_274208_ (Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;ILnet/minecraft/world/entity/ai/memory/MemoryModuleType;ILnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;FILnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/npc/Villager;J)Z net/minecraft/world/entity/ai/behavior/SetWalkTargetFromBlockMemory/lambda$create$0 (Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;ILnet/minecraft/world/entity/ai/memory/MemoryModuleType;ILnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;FILnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/npc/Villager;J)Z +MD: net/minecraft/world/entity/ai/behavior/SetWalkTargetFromLookTarget/ ()V net/minecraft/world/entity/ai/behavior/SetWalkTargetFromLookTarget/ ()V +MD: net/minecraft/world/entity/ai/behavior/SetWalkTargetFromLookTarget/m_182362_ (FLnet/minecraft/world/entity/LivingEntity;)Ljava/lang/Float; net/minecraft/world/entity/ai/behavior/SetWalkTargetFromLookTarget/lambda$create$1 (FLnet/minecraft/world/entity/LivingEntity;)Ljava/lang/Float; +MD: net/minecraft/world/entity/ai/behavior/SetWalkTargetFromLookTarget/m_182368_ (Lnet/minecraft/world/entity/LivingEntity;)Z net/minecraft/world/entity/ai/behavior/SetWalkTargetFromLookTarget/lambda$create$0 (Lnet/minecraft/world/entity/LivingEntity;)Z +MD: net/minecraft/world/entity/ai/behavior/SetWalkTargetFromLookTarget/m_257264_ (Ljava/util/function/Predicate;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Ljava/util/function/Function;ILnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)Z net/minecraft/world/entity/ai/behavior/SetWalkTargetFromLookTarget/lambda$create$2 (Ljava/util/function/Predicate;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Ljava/util/function/Function;ILnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)Z +MD: net/minecraft/world/entity/ai/behavior/SetWalkTargetFromLookTarget/m_257265_ (Ljava/util/function/Predicate;Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;Ljava/util/function/Function;ILnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;)Lnet/minecraft/world/entity/ai/behavior/declarative/Trigger; net/minecraft/world/entity/ai/behavior/SetWalkTargetFromLookTarget/lambda$create$3 (Ljava/util/function/Predicate;Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;Ljava/util/function/Function;ILnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;)Lnet/minecraft/world/entity/ai/behavior/declarative/Trigger; +MD: net/minecraft/world/entity/ai/behavior/SetWalkTargetFromLookTarget/m_257266_ (Ljava/util/function/Predicate;Ljava/util/function/Function;ILnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/world/entity/ai/behavior/SetWalkTargetFromLookTarget/lambda$create$4 (Ljava/util/function/Predicate;Ljava/util/function/Function;ILnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/world/entity/ai/behavior/SetWalkTargetFromLookTarget/m_257764_ (FI)Lnet/minecraft/world/entity/ai/behavior/OneShot; net/minecraft/world/entity/ai/behavior/SetWalkTargetFromLookTarget/create (FI)Lnet/minecraft/world/entity/ai/behavior/OneShot; +MD: net/minecraft/world/entity/ai/behavior/SetWalkTargetFromLookTarget/m_258011_ (Ljava/util/function/Predicate;Ljava/util/function/Function;I)Lnet/minecraft/world/entity/ai/behavior/OneShot; net/minecraft/world/entity/ai/behavior/SetWalkTargetFromLookTarget/create (Ljava/util/function/Predicate;Ljava/util/function/Function;I)Lnet/minecraft/world/entity/ai/behavior/OneShot; +MD: net/minecraft/world/entity/ai/behavior/ShowTradesToPlayer/ (II)V net/minecraft/world/entity/ai/behavior/ShowTradesToPlayer/ (II)V +MD: net/minecraft/world/entity/ai/behavior/ShowTradesToPlayer/m_182370_ (Lnet/minecraft/world/entity/npc/Villager;Lnet/minecraft/world/item/ItemStack;)V net/minecraft/world/entity/ai/behavior/ShowTradesToPlayer/displayAsHeldItem (Lnet/minecraft/world/entity/npc/Villager;Lnet/minecraft/world/item/ItemStack;)V +MD: net/minecraft/world/entity/ai/behavior/ShowTradesToPlayer/m_182373_ (Lnet/minecraft/world/entity/npc/Villager;)V net/minecraft/world/entity/ai/behavior/ShowTradesToPlayer/clearHeldItem (Lnet/minecraft/world/entity/npc/Villager;)V +MD: net/minecraft/world/entity/ai/behavior/ShowTradesToPlayer/m_24112_ (Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/entity/npc/Villager;)V net/minecraft/world/entity/ai/behavior/ShowTradesToPlayer/findItemsToDisplay (Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/entity/npc/Villager;)V +MD: net/minecraft/world/entity/ai/behavior/ShowTradesToPlayer/m_24115_ (Lnet/minecraft/world/entity/npc/Villager;)V net/minecraft/world/entity/ai/behavior/ShowTradesToPlayer/displayFirstItem (Lnet/minecraft/world/entity/npc/Villager;)V +MD: net/minecraft/world/entity/ai/behavior/ShowTradesToPlayer/m_24117_ (Lnet/minecraft/world/item/trading/MerchantOffer;)Z net/minecraft/world/entity/ai/behavior/ShowTradesToPlayer/playerItemStackMatchesCostOfOffer (Lnet/minecraft/world/item/trading/MerchantOffer;)Z +MD: net/minecraft/world/entity/ai/behavior/ShowTradesToPlayer/m_24127_ (Lnet/minecraft/world/entity/npc/Villager;)V net/minecraft/world/entity/ai/behavior/ShowTradesToPlayer/updateDisplayItems (Lnet/minecraft/world/entity/npc/Villager;)V +MD: net/minecraft/world/entity/ai/behavior/ShowTradesToPlayer/m_24137_ (Lnet/minecraft/world/entity/npc/Villager;)Lnet/minecraft/world/entity/LivingEntity; net/minecraft/world/entity/ai/behavior/ShowTradesToPlayer/lookAtTarget (Lnet/minecraft/world/entity/npc/Villager;)Lnet/minecraft/world/entity/LivingEntity; +MD: net/minecraft/world/entity/ai/behavior/ShowTradesToPlayer/m_24147_ (Lnet/minecraft/world/entity/npc/Villager;)V net/minecraft/world/entity/ai/behavior/ShowTradesToPlayer/displayCyclingItems (Lnet/minecraft/world/entity/npc/Villager;)V +MD: net/minecraft/world/entity/ai/behavior/ShowTradesToPlayer/m_6114_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;)Z net/minecraft/world/entity/ai/behavior/ShowTradesToPlayer/checkExtraStartConditions (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;)Z +MD: net/minecraft/world/entity/ai/behavior/ShowTradesToPlayer/m_6114_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/npc/Villager;)Z net/minecraft/world/entity/ai/behavior/ShowTradesToPlayer/checkExtraStartConditions (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/npc/Villager;)Z +MD: net/minecraft/world/entity/ai/behavior/ShowTradesToPlayer/m_6725_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)V net/minecraft/world/entity/ai/behavior/ShowTradesToPlayer/tick (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)V +MD: net/minecraft/world/entity/ai/behavior/ShowTradesToPlayer/m_6725_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/npc/Villager;J)V net/minecraft/world/entity/ai/behavior/ShowTradesToPlayer/tick (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/npc/Villager;J)V +MD: net/minecraft/world/entity/ai/behavior/ShowTradesToPlayer/m_6732_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)V net/minecraft/world/entity/ai/behavior/ShowTradesToPlayer/stop (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)V +MD: net/minecraft/world/entity/ai/behavior/ShowTradesToPlayer/m_6732_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/npc/Villager;J)V net/minecraft/world/entity/ai/behavior/ShowTradesToPlayer/stop (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/npc/Villager;J)V +MD: net/minecraft/world/entity/ai/behavior/ShowTradesToPlayer/m_6735_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/npc/Villager;J)V net/minecraft/world/entity/ai/behavior/ShowTradesToPlayer/start (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/npc/Villager;J)V +MD: net/minecraft/world/entity/ai/behavior/ShowTradesToPlayer/m_6735_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)V net/minecraft/world/entity/ai/behavior/ShowTradesToPlayer/start (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)V +MD: net/minecraft/world/entity/ai/behavior/ShowTradesToPlayer/m_6737_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/npc/Villager;J)Z net/minecraft/world/entity/ai/behavior/ShowTradesToPlayer/canStillUse (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/npc/Villager;J)Z +MD: net/minecraft/world/entity/ai/behavior/ShowTradesToPlayer/m_6737_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)Z net/minecraft/world/entity/ai/behavior/ShowTradesToPlayer/canStillUse (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)Z +MD: net/minecraft/world/entity/ai/behavior/ShufflingList/ ()V net/minecraft/world/entity/ai/behavior/ShufflingList/ ()V +MD: net/minecraft/world/entity/ai/behavior/ShufflingList/ (Ljava/util/List;)V net/minecraft/world/entity/ai/behavior/ShufflingList/ (Ljava/util/List;)V +MD: net/minecraft/world/entity/ai/behavior/ShufflingList/iterator ()Ljava/util/Iterator; net/minecraft/world/entity/ai/behavior/ShufflingList/iterator ()Ljava/util/Iterator; +MD: net/minecraft/world/entity/ai/behavior/ShufflingList/m_147922_ ()Lnet/minecraft/world/entity/ai/behavior/ShufflingList; net/minecraft/world/entity/ai/behavior/ShufflingList/shuffle ()Lnet/minecraft/world/entity/ai/behavior/ShufflingList; +MD: net/minecraft/world/entity/ai/behavior/ShufflingList/m_147923_ (Lnet/minecraft/world/entity/ai/behavior/ShufflingList$WeightedEntry;)V net/minecraft/world/entity/ai/behavior/ShufflingList/lambda$shuffle$1 (Lnet/minecraft/world/entity/ai/behavior/ShufflingList$WeightedEntry;)V +MD: net/minecraft/world/entity/ai/behavior/ShufflingList/m_147925_ (Lnet/minecraft/world/entity/ai/behavior/ShufflingList;)Ljava/util/List; net/minecraft/world/entity/ai/behavior/ShufflingList/lambda$codec$0 (Lnet/minecraft/world/entity/ai/behavior/ShufflingList;)Ljava/util/List; +MD: net/minecraft/world/entity/ai/behavior/ShufflingList/m_147927_ (Lcom/mojang/serialization/Codec;)Lcom/mojang/serialization/Codec; net/minecraft/world/entity/ai/behavior/ShufflingList/codec (Lcom/mojang/serialization/Codec;)Lcom/mojang/serialization/Codec; +MD: net/minecraft/world/entity/ai/behavior/ShufflingList/m_147929_ (Ljava/lang/Object;I)Lnet/minecraft/world/entity/ai/behavior/ShufflingList; net/minecraft/world/entity/ai/behavior/ShufflingList/add (Ljava/lang/Object;I)Lnet/minecraft/world/entity/ai/behavior/ShufflingList; +MD: net/minecraft/world/entity/ai/behavior/ShufflingList/m_147932_ ()Ljava/util/stream/Stream; net/minecraft/world/entity/ai/behavior/ShufflingList/stream ()Ljava/util/stream/Stream; +MD: net/minecraft/world/entity/ai/behavior/ShufflingList/toString ()Ljava/lang/String; net/minecraft/world/entity/ai/behavior/ShufflingList/toString ()Ljava/lang/String; +MD: net/minecraft/world/entity/ai/behavior/ShufflingList$WeightedEntry/ (Ljava/lang/Object;I)V net/minecraft/world/entity/ai/behavior/ShufflingList$WeightedEntry/ (Ljava/lang/Object;I)V +MD: net/minecraft/world/entity/ai/behavior/ShufflingList$WeightedEntry/m_147940_ ()Ljava/lang/Object; net/minecraft/world/entity/ai/behavior/ShufflingList$WeightedEntry/getData ()Ljava/lang/Object; +MD: net/minecraft/world/entity/ai/behavior/ShufflingList$WeightedEntry/m_147941_ (F)V net/minecraft/world/entity/ai/behavior/ShufflingList$WeightedEntry/setRandom (F)V +MD: net/minecraft/world/entity/ai/behavior/ShufflingList$WeightedEntry/m_147943_ (Lcom/mojang/serialization/Codec;)Lcom/mojang/serialization/Codec; net/minecraft/world/entity/ai/behavior/ShufflingList$WeightedEntry/codec (Lcom/mojang/serialization/Codec;)Lcom/mojang/serialization/Codec; +MD: net/minecraft/world/entity/ai/behavior/ShufflingList$WeightedEntry/m_147945_ ()I net/minecraft/world/entity/ai/behavior/ShufflingList$WeightedEntry/getWeight ()I +MD: net/minecraft/world/entity/ai/behavior/ShufflingList$WeightedEntry/m_147946_ ()D net/minecraft/world/entity/ai/behavior/ShufflingList$WeightedEntry/getRandWeight ()D +MD: net/minecraft/world/entity/ai/behavior/ShufflingList$WeightedEntry/toString ()Ljava/lang/String; net/minecraft/world/entity/ai/behavior/ShufflingList$WeightedEntry/toString ()Ljava/lang/String; +MD: net/minecraft/world/entity/ai/behavior/ShufflingList$WeightedEntry$1/ (Lcom/mojang/serialization/Codec;)V net/minecraft/world/entity/ai/behavior/ShufflingList$WeightedEntry$1/ (Lcom/mojang/serialization/Codec;)V +MD: net/minecraft/world/entity/ai/behavior/ShufflingList$WeightedEntry$1/decode (Lcom/mojang/serialization/DynamicOps;Ljava/lang/Object;)Lcom/mojang/serialization/DataResult; net/minecraft/world/entity/ai/behavior/ShufflingList$WeightedEntry$1/decode (Lcom/mojang/serialization/DynamicOps;Ljava/lang/Object;)Lcom/mojang/serialization/DataResult; +MD: net/minecraft/world/entity/ai/behavior/ShufflingList$WeightedEntry$1/encode (Ljava/lang/Object;Lcom/mojang/serialization/DynamicOps;Ljava/lang/Object;)Lcom/mojang/serialization/DataResult; net/minecraft/world/entity/ai/behavior/ShufflingList$WeightedEntry$1/encode (Ljava/lang/Object;Lcom/mojang/serialization/DynamicOps;Ljava/lang/Object;)Lcom/mojang/serialization/DataResult; +MD: net/minecraft/world/entity/ai/behavior/ShufflingList$WeightedEntry$1/encode (Lnet/minecraft/world/entity/ai/behavior/ShufflingList$WeightedEntry;Lcom/mojang/serialization/DynamicOps;Ljava/lang/Object;)Lcom/mojang/serialization/DataResult; net/minecraft/world/entity/ai/behavior/ShufflingList$WeightedEntry$1/encode (Lnet/minecraft/world/entity/ai/behavior/ShufflingList$WeightedEntry;Lcom/mojang/serialization/DynamicOps;Ljava/lang/Object;)Lcom/mojang/serialization/DataResult; +MD: net/minecraft/world/entity/ai/behavior/ShufflingList$WeightedEntry$1/m_147955_ (Lcom/mojang/serialization/Dynamic;Ljava/lang/Object;)Lnet/minecraft/world/entity/ai/behavior/ShufflingList$WeightedEntry; net/minecraft/world/entity/ai/behavior/ShufflingList$WeightedEntry$1/lambda$decode$0 (Lcom/mojang/serialization/Dynamic;Ljava/lang/Object;)Lnet/minecraft/world/entity/ai/behavior/ShufflingList$WeightedEntry; +MD: net/minecraft/world/entity/ai/behavior/ShufflingList$WeightedEntry$1/m_147958_ (Lcom/mojang/serialization/DynamicOps;Lnet/minecraft/world/entity/ai/behavior/ShufflingList$WeightedEntry;)Lcom/mojang/datafixers/util/Pair; net/minecraft/world/entity/ai/behavior/ShufflingList$WeightedEntry$1/lambda$decode$1 (Lcom/mojang/serialization/DynamicOps;Lnet/minecraft/world/entity/ai/behavior/ShufflingList$WeightedEntry;)Lcom/mojang/datafixers/util/Pair; +MD: net/minecraft/world/entity/ai/behavior/SleepInBed/ ()V net/minecraft/world/entity/ai/behavior/SleepInBed/ ()V +MD: net/minecraft/world/entity/ai/behavior/SleepInBed/m_6114_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;)Z net/minecraft/world/entity/ai/behavior/SleepInBed/checkExtraStartConditions (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;)Z +MD: net/minecraft/world/entity/ai/behavior/SleepInBed/m_6732_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)V net/minecraft/world/entity/ai/behavior/SleepInBed/stop (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)V +MD: net/minecraft/world/entity/ai/behavior/SleepInBed/m_6735_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)V net/minecraft/world/entity/ai/behavior/SleepInBed/start (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)V +MD: net/minecraft/world/entity/ai/behavior/SleepInBed/m_6737_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)Z net/minecraft/world/entity/ai/behavior/SleepInBed/canStillUse (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)Z +MD: net/minecraft/world/entity/ai/behavior/SleepInBed/m_7773_ (J)Z net/minecraft/world/entity/ai/behavior/SleepInBed/timedOut (J)Z +MD: net/minecraft/world/entity/ai/behavior/SocializeAtBell/ ()V net/minecraft/world/entity/ai/behavior/SocializeAtBell/ ()V +MD: net/minecraft/world/entity/ai/behavior/SocializeAtBell/m_257267_ (Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;)Lnet/minecraft/world/entity/ai/behavior/declarative/Trigger; net/minecraft/world/entity/ai/behavior/SocializeAtBell/lambda$create$4 (Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;)Lnet/minecraft/world/entity/ai/behavior/declarative/Trigger; +MD: net/minecraft/world/entity/ai/behavior/SocializeAtBell/m_257268_ (Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/world/entity/ai/behavior/SocializeAtBell/lambda$create$5 (Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/world/entity/ai/behavior/SocializeAtBell/m_257269_ (Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/LivingEntity;)V net/minecraft/world/entity/ai/behavior/SocializeAtBell/lambda$create$2 (Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/LivingEntity;)V +MD: net/minecraft/world/entity/ai/behavior/SocializeAtBell/m_257270_ (Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)Z net/minecraft/world/entity/ai/behavior/SocializeAtBell/lambda$create$3 (Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)Z +MD: net/minecraft/world/entity/ai/behavior/SocializeAtBell/m_257875_ ()Lnet/minecraft/world/entity/ai/behavior/OneShot; net/minecraft/world/entity/ai/behavior/SocializeAtBell/create ()Lnet/minecraft/world/entity/ai/behavior/OneShot; +MD: net/minecraft/world/entity/ai/behavior/SocializeAtBell/m_289109_ (Lnet/minecraft/world/entity/LivingEntity;)Z net/minecraft/world/entity/ai/behavior/SocializeAtBell/lambda$create$0 (Lnet/minecraft/world/entity/LivingEntity;)Z +MD: net/minecraft/world/entity/ai/behavior/SocializeAtBell/m_289110_ (Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/entity/LivingEntity;)Z net/minecraft/world/entity/ai/behavior/SocializeAtBell/lambda$create$1 (Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/entity/LivingEntity;)Z +MD: net/minecraft/world/entity/ai/behavior/StartAttacking/ ()V net/minecraft/world/entity/ai/behavior/StartAttacking/ ()V +MD: net/minecraft/world/entity/ai/behavior/StartAttacking/m_24211_ (Lnet/minecraft/world/entity/Mob;)Z net/minecraft/world/entity/ai/behavior/StartAttacking/lambda$create$0 (Lnet/minecraft/world/entity/Mob;)Z +MD: net/minecraft/world/entity/ai/behavior/StartAttacking/m_257271_ (Ljava/util/function/Predicate;Ljava/util/function/Function;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/Mob;J)Z net/minecraft/world/entity/ai/behavior/StartAttacking/lambda$create$1 (Ljava/util/function/Predicate;Ljava/util/function/Function;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/Mob;J)Z +MD: net/minecraft/world/entity/ai/behavior/StartAttacking/m_257272_ (Ljava/util/function/Predicate;Ljava/util/function/Function;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;)Lnet/minecraft/world/entity/ai/behavior/declarative/Trigger; net/minecraft/world/entity/ai/behavior/StartAttacking/lambda$create$2 (Ljava/util/function/Predicate;Ljava/util/function/Function;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;)Lnet/minecraft/world/entity/ai/behavior/declarative/Trigger; +MD: net/minecraft/world/entity/ai/behavior/StartAttacking/m_257273_ (Ljava/util/function/Predicate;Ljava/util/function/Function;Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/world/entity/ai/behavior/StartAttacking/lambda$create$3 (Ljava/util/function/Predicate;Ljava/util/function/Function;Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/world/entity/ai/behavior/StartAttacking/m_257710_ (Ljava/util/function/Function;)Lnet/minecraft/world/entity/ai/behavior/BehaviorControl; net/minecraft/world/entity/ai/behavior/StartAttacking/create (Ljava/util/function/Function;)Lnet/minecraft/world/entity/ai/behavior/BehaviorControl; +MD: net/minecraft/world/entity/ai/behavior/StartAttacking/m_257741_ (Ljava/util/function/Predicate;Ljava/util/function/Function;)Lnet/minecraft/world/entity/ai/behavior/BehaviorControl; net/minecraft/world/entity/ai/behavior/StartAttacking/create (Ljava/util/function/Predicate;Ljava/util/function/Function;)Lnet/minecraft/world/entity/ai/behavior/BehaviorControl; +MD: net/minecraft/world/entity/ai/behavior/StartCelebratingIfTargetDead/ ()V net/minecraft/world/entity/ai/behavior/StartCelebratingIfTargetDead/ ()V +MD: net/minecraft/world/entity/ai/behavior/StartCelebratingIfTargetDead/m_257496_ (ILjava/util/function/BiPredicate;)Lnet/minecraft/world/entity/ai/behavior/BehaviorControl; net/minecraft/world/entity/ai/behavior/StartCelebratingIfTargetDead/create (ILjava/util/function/BiPredicate;)Lnet/minecraft/world/entity/ai/behavior/BehaviorControl; +MD: net/minecraft/world/entity/ai/behavior/StartCelebratingIfTargetDead/m_257522_ (Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Ljava/util/function/BiPredicate;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;ILnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)Z net/minecraft/world/entity/ai/behavior/StartCelebratingIfTargetDead/lambda$create$0 (Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Ljava/util/function/BiPredicate;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;ILnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)Z +MD: net/minecraft/world/entity/ai/behavior/StartCelebratingIfTargetDead/m_257913_ (Ljava/util/function/BiPredicate;ILnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/world/entity/ai/behavior/StartCelebratingIfTargetDead/lambda$create$2 (Ljava/util/function/BiPredicate;ILnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/world/entity/ai/behavior/StartCelebratingIfTargetDead/m_258039_ (Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;Ljava/util/function/BiPredicate;ILnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;)Lnet/minecraft/world/entity/ai/behavior/declarative/Trigger; net/minecraft/world/entity/ai/behavior/StartCelebratingIfTargetDead/lambda$create$1 (Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;Ljava/util/function/BiPredicate;ILnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;)Lnet/minecraft/world/entity/ai/behavior/declarative/Trigger; +MD: net/minecraft/world/entity/ai/behavior/StayCloseToTarget/ ()V net/minecraft/world/entity/ai/behavior/StayCloseToTarget/ ()V +MD: net/minecraft/world/entity/ai/behavior/StayCloseToTarget/m_257896_ (Ljava/util/function/Function;Ljava/util/function/Predicate;ILnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;FILnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)Z net/minecraft/world/entity/ai/behavior/StayCloseToTarget/lambda$create$0 (Ljava/util/function/Function;Ljava/util/function/Predicate;ILnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;FILnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)Z +MD: net/minecraft/world/entity/ai/behavior/StayCloseToTarget/m_271617_ (Ljava/util/function/Function;Ljava/util/function/Predicate;IFILnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/world/entity/ai/behavior/StayCloseToTarget/lambda$create$2 (Ljava/util/function/Function;Ljava/util/function/Predicate;IFILnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/world/entity/ai/behavior/StayCloseToTarget/m_271618_ (Ljava/util/function/Function;Ljava/util/function/Predicate;IFILnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;)Lnet/minecraft/world/entity/ai/behavior/declarative/Trigger; net/minecraft/world/entity/ai/behavior/StayCloseToTarget/lambda$create$1 (Ljava/util/function/Function;Ljava/util/function/Predicate;IFILnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;)Lnet/minecraft/world/entity/ai/behavior/declarative/Trigger; +MD: net/minecraft/world/entity/ai/behavior/StayCloseToTarget/m_271742_ (Ljava/util/function/Function;Ljava/util/function/Predicate;IIF)Lnet/minecraft/world/entity/ai/behavior/BehaviorControl; net/minecraft/world/entity/ai/behavior/StayCloseToTarget/create (Ljava/util/function/Function;Ljava/util/function/Predicate;IIF)Lnet/minecraft/world/entity/ai/behavior/BehaviorControl; +MD: net/minecraft/world/entity/ai/behavior/StopAttackingIfTargetInvalid/ ()V net/minecraft/world/entity/ai/behavior/StopAttackingIfTargetInvalid/ ()V +MD: net/minecraft/world/entity/ai/behavior/StopAttackingIfTargetInvalid/m_147985_ (Lnet/minecraft/world/entity/LivingEntity;)Z net/minecraft/world/entity/ai/behavior/StopAttackingIfTargetInvalid/lambda$create$2 (Lnet/minecraft/world/entity/LivingEntity;)Z +MD: net/minecraft/world/entity/ai/behavior/StopAttackingIfTargetInvalid/m_147987_ (Lnet/minecraft/world/entity/LivingEntity;)Z net/minecraft/world/entity/ai/behavior/StopAttackingIfTargetInvalid/lambda$create$0 (Lnet/minecraft/world/entity/LivingEntity;)Z +MD: net/minecraft/world/entity/ai/behavior/StopAttackingIfTargetInvalid/m_217407_ (Lnet/minecraft/world/entity/Mob;Lnet/minecraft/world/entity/LivingEntity;)V net/minecraft/world/entity/ai/behavior/StopAttackingIfTargetInvalid/lambda$create$3 (Lnet/minecraft/world/entity/Mob;Lnet/minecraft/world/entity/LivingEntity;)V +MD: net/minecraft/world/entity/ai/behavior/StopAttackingIfTargetInvalid/m_217410_ (Lnet/minecraft/world/entity/Mob;Lnet/minecraft/world/entity/LivingEntity;)V net/minecraft/world/entity/ai/behavior/StopAttackingIfTargetInvalid/lambda$create$1 (Lnet/minecraft/world/entity/Mob;Lnet/minecraft/world/entity/LivingEntity;)V +MD: net/minecraft/world/entity/ai/behavior/StopAttackingIfTargetInvalid/m_257274_ (Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;ZLjava/util/function/Predicate;Ljava/util/function/BiConsumer;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;)Lnet/minecraft/world/entity/ai/behavior/declarative/Trigger; net/minecraft/world/entity/ai/behavior/StopAttackingIfTargetInvalid/lambda$create$5 (Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;ZLjava/util/function/Predicate;Ljava/util/function/BiConsumer;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;)Lnet/minecraft/world/entity/ai/behavior/declarative/Trigger; +MD: net/minecraft/world/entity/ai/behavior/StopAttackingIfTargetInvalid/m_257275_ (Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;ZLnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Ljava/util/function/Predicate;Ljava/util/function/BiConsumer;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/Mob;J)Z net/minecraft/world/entity/ai/behavior/StopAttackingIfTargetInvalid/lambda$create$4 (Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;ZLnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Ljava/util/function/Predicate;Ljava/util/function/BiConsumer;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/Mob;J)Z +MD: net/minecraft/world/entity/ai/behavior/StopAttackingIfTargetInvalid/m_257276_ (ZLjava/util/function/Predicate;Ljava/util/function/BiConsumer;Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/world/entity/ai/behavior/StopAttackingIfTargetInvalid/lambda$create$6 (ZLjava/util/function/Predicate;Ljava/util/function/BiConsumer;Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/world/entity/ai/behavior/StopAttackingIfTargetInvalid/m_257811_ (Ljava/util/function/Predicate;Ljava/util/function/BiConsumer;Z)Lnet/minecraft/world/entity/ai/behavior/BehaviorControl; net/minecraft/world/entity/ai/behavior/StopAttackingIfTargetInvalid/create (Ljava/util/function/Predicate;Ljava/util/function/BiConsumer;Z)Lnet/minecraft/world/entity/ai/behavior/BehaviorControl; +MD: net/minecraft/world/entity/ai/behavior/StopAttackingIfTargetInvalid/m_257822_ ()Lnet/minecraft/world/entity/ai/behavior/BehaviorControl; net/minecraft/world/entity/ai/behavior/StopAttackingIfTargetInvalid/create ()Lnet/minecraft/world/entity/ai/behavior/BehaviorControl; +MD: net/minecraft/world/entity/ai/behavior/StopAttackingIfTargetInvalid/m_257940_ (Ljava/util/function/BiConsumer;)Lnet/minecraft/world/entity/ai/behavior/BehaviorControl; net/minecraft/world/entity/ai/behavior/StopAttackingIfTargetInvalid/create (Ljava/util/function/BiConsumer;)Lnet/minecraft/world/entity/ai/behavior/BehaviorControl; +MD: net/minecraft/world/entity/ai/behavior/StopAttackingIfTargetInvalid/m_257990_ (Ljava/util/function/Predicate;)Lnet/minecraft/world/entity/ai/behavior/BehaviorControl; net/minecraft/world/entity/ai/behavior/StopAttackingIfTargetInvalid/create (Ljava/util/function/Predicate;)Lnet/minecraft/world/entity/ai/behavior/BehaviorControl; +MD: net/minecraft/world/entity/ai/behavior/StopAttackingIfTargetInvalid/m_258032_ (Lnet/minecraft/world/entity/LivingEntity;Ljava/util/Optional;)Z net/minecraft/world/entity/ai/behavior/StopAttackingIfTargetInvalid/isTiredOfTryingToReachTarget (Lnet/minecraft/world/entity/LivingEntity;Ljava/util/Optional;)Z +MD: net/minecraft/world/entity/ai/behavior/StopBeingAngryIfTargetDead/ ()V net/minecraft/world/entity/ai/behavior/StopBeingAngryIfTargetDead/ ()V +MD: net/minecraft/world/entity/ai/behavior/StopBeingAngryIfTargetDead/m_257277_ (Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/world/entity/LivingEntity; net/minecraft/world/entity/ai/behavior/StopBeingAngryIfTargetDead/lambda$create$0 (Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/world/entity/LivingEntity; +MD: net/minecraft/world/entity/ai/behavior/StopBeingAngryIfTargetDead/m_257279_ (Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)Z net/minecraft/world/entity/ai/behavior/StopBeingAngryIfTargetDead/lambda$create$3 (Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)Z +MD: net/minecraft/world/entity/ai/behavior/StopBeingAngryIfTargetDead/m_257280_ (Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/LivingEntity;)V net/minecraft/world/entity/ai/behavior/StopBeingAngryIfTargetDead/lambda$create$2 (Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/LivingEntity;)V +MD: net/minecraft/world/entity/ai/behavior/StopBeingAngryIfTargetDead/m_257281_ (Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;)Lnet/minecraft/world/entity/ai/behavior/declarative/Trigger; net/minecraft/world/entity/ai/behavior/StopBeingAngryIfTargetDead/lambda$create$4 (Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;)Lnet/minecraft/world/entity/ai/behavior/declarative/Trigger; +MD: net/minecraft/world/entity/ai/behavior/StopBeingAngryIfTargetDead/m_257282_ (Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/world/entity/ai/behavior/StopBeingAngryIfTargetDead/lambda$create$5 (Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/world/entity/ai/behavior/StopBeingAngryIfTargetDead/m_257993_ ()Lnet/minecraft/world/entity/ai/behavior/BehaviorControl; net/minecraft/world/entity/ai/behavior/StopBeingAngryIfTargetDead/create ()Lnet/minecraft/world/entity/ai/behavior/BehaviorControl; +MD: net/minecraft/world/entity/ai/behavior/StopBeingAngryIfTargetDead/m_289111_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;)Z net/minecraft/world/entity/ai/behavior/StopBeingAngryIfTargetDead/lambda$create$1 (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;)Z +MD: net/minecraft/world/entity/ai/behavior/StrollAroundPoi/ ()V net/minecraft/world/entity/ai/behavior/StrollAroundPoi/ ()V +MD: net/minecraft/world/entity/ai/behavior/StrollAroundPoi/m_257283_ (FLnet/minecraft/world/phys/Vec3;)Lnet/minecraft/world/entity/ai/memory/WalkTarget; net/minecraft/world/entity/ai/behavior/StrollAroundPoi/lambda$create$0 (FLnet/minecraft/world/phys/Vec3;)Lnet/minecraft/world/entity/ai/memory/WalkTarget; +MD: net/minecraft/world/entity/ai/behavior/StrollAroundPoi/m_257284_ (Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;ILorg/apache/commons/lang3/mutable/MutableLong;FLnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;)Lnet/minecraft/world/entity/ai/behavior/declarative/Trigger; net/minecraft/world/entity/ai/behavior/StrollAroundPoi/lambda$create$2 (Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;ILorg/apache/commons/lang3/mutable/MutableLong;FLnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;)Lnet/minecraft/world/entity/ai/behavior/declarative/Trigger; +MD: net/minecraft/world/entity/ai/behavior/StrollAroundPoi/m_257285_ (Lnet/minecraft/world/entity/ai/memory/MemoryModuleType;ILorg/apache/commons/lang3/mutable/MutableLong;FLnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/world/entity/ai/behavior/StrollAroundPoi/lambda$create$3 (Lnet/minecraft/world/entity/ai/memory/MemoryModuleType;ILorg/apache/commons/lang3/mutable/MutableLong;FLnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/world/entity/ai/behavior/StrollAroundPoi/m_257286_ (Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;ILorg/apache/commons/lang3/mutable/MutableLong;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;FLnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/PathfinderMob;J)Z net/minecraft/world/entity/ai/behavior/StrollAroundPoi/lambda$create$1 (Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;ILorg/apache/commons/lang3/mutable/MutableLong;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;FLnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/PathfinderMob;J)Z +MD: net/minecraft/world/entity/ai/behavior/StrollAroundPoi/m_257894_ (Lnet/minecraft/world/entity/ai/memory/MemoryModuleType;FI)Lnet/minecraft/world/entity/ai/behavior/OneShot; net/minecraft/world/entity/ai/behavior/StrollAroundPoi/create (Lnet/minecraft/world/entity/ai/memory/MemoryModuleType;FI)Lnet/minecraft/world/entity/ai/behavior/OneShot; +MD: net/minecraft/world/entity/ai/behavior/StrollToPoi/ ()V net/minecraft/world/entity/ai/behavior/StrollToPoi/ ()V +MD: net/minecraft/world/entity/ai/behavior/StrollToPoi/m_257287_ (Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;ILorg/apache/commons/lang3/mutable/MutableLong;FILnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;)Lnet/minecraft/world/entity/ai/behavior/declarative/Trigger; net/minecraft/world/entity/ai/behavior/StrollToPoi/lambda$create$1 (Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;ILorg/apache/commons/lang3/mutable/MutableLong;FILnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;)Lnet/minecraft/world/entity/ai/behavior/declarative/Trigger; +MD: net/minecraft/world/entity/ai/behavior/StrollToPoi/m_257288_ (Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;ILorg/apache/commons/lang3/mutable/MutableLong;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;FILnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/PathfinderMob;J)Z net/minecraft/world/entity/ai/behavior/StrollToPoi/lambda$create$0 (Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;ILorg/apache/commons/lang3/mutable/MutableLong;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;FILnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/PathfinderMob;J)Z +MD: net/minecraft/world/entity/ai/behavior/StrollToPoi/m_257289_ (Lnet/minecraft/world/entity/ai/memory/MemoryModuleType;ILorg/apache/commons/lang3/mutable/MutableLong;FILnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/world/entity/ai/behavior/StrollToPoi/lambda$create$2 (Lnet/minecraft/world/entity/ai/memory/MemoryModuleType;ILorg/apache/commons/lang3/mutable/MutableLong;FILnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/world/entity/ai/behavior/StrollToPoi/m_258086_ (Lnet/minecraft/world/entity/ai/memory/MemoryModuleType;FII)Lnet/minecraft/world/entity/ai/behavior/BehaviorControl; net/minecraft/world/entity/ai/behavior/StrollToPoi/create (Lnet/minecraft/world/entity/ai/memory/MemoryModuleType;FII)Lnet/minecraft/world/entity/ai/behavior/BehaviorControl; +MD: net/minecraft/world/entity/ai/behavior/StrollToPoiList/ ()V net/minecraft/world/entity/ai/behavior/StrollToPoiList/ ()V +MD: net/minecraft/world/entity/ai/behavior/StrollToPoiList/m_257368_ (Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;ILorg/apache/commons/lang3/mutable/MutableLong;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;FILnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/npc/Villager;J)Z net/minecraft/world/entity/ai/behavior/StrollToPoiList/lambda$create$0 (Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;ILorg/apache/commons/lang3/mutable/MutableLong;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;FILnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/npc/Villager;J)Z +MD: net/minecraft/world/entity/ai/behavior/StrollToPoiList/m_257487_ (Lnet/minecraft/world/entity/ai/memory/MemoryModuleType;FIILnet/minecraft/world/entity/ai/memory/MemoryModuleType;)Lnet/minecraft/world/entity/ai/behavior/BehaviorControl; net/minecraft/world/entity/ai/behavior/StrollToPoiList/create (Lnet/minecraft/world/entity/ai/memory/MemoryModuleType;FIILnet/minecraft/world/entity/ai/memory/MemoryModuleType;)Lnet/minecraft/world/entity/ai/behavior/BehaviorControl; +MD: net/minecraft/world/entity/ai/behavior/StrollToPoiList/m_257703_ (Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;ILorg/apache/commons/lang3/mutable/MutableLong;FILnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;)Lnet/minecraft/world/entity/ai/behavior/declarative/Trigger; net/minecraft/world/entity/ai/behavior/StrollToPoiList/lambda$create$1 (Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;ILorg/apache/commons/lang3/mutable/MutableLong;FILnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;)Lnet/minecraft/world/entity/ai/behavior/declarative/Trigger; +MD: net/minecraft/world/entity/ai/behavior/StrollToPoiList/m_257930_ (Lnet/minecraft/world/entity/ai/memory/MemoryModuleType;Lnet/minecraft/world/entity/ai/memory/MemoryModuleType;ILorg/apache/commons/lang3/mutable/MutableLong;FILnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/world/entity/ai/behavior/StrollToPoiList/lambda$create$2 (Lnet/minecraft/world/entity/ai/memory/MemoryModuleType;Lnet/minecraft/world/entity/ai/memory/MemoryModuleType;ILorg/apache/commons/lang3/mutable/MutableLong;FILnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/world/entity/ai/behavior/Swim/ (F)V net/minecraft/world/entity/ai/behavior/Swim/ (F)V +MD: net/minecraft/world/entity/ai/behavior/Swim/m_6114_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;)Z net/minecraft/world/entity/ai/behavior/Swim/checkExtraStartConditions (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;)Z +MD: net/minecraft/world/entity/ai/behavior/Swim/m_6114_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/Mob;)Z net/minecraft/world/entity/ai/behavior/Swim/checkExtraStartConditions (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/Mob;)Z +MD: net/minecraft/world/entity/ai/behavior/Swim/m_6725_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/Mob;J)V net/minecraft/world/entity/ai/behavior/Swim/tick (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/Mob;J)V +MD: net/minecraft/world/entity/ai/behavior/Swim/m_6725_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)V net/minecraft/world/entity/ai/behavior/Swim/tick (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)V +MD: net/minecraft/world/entity/ai/behavior/Swim/m_6737_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)Z net/minecraft/world/entity/ai/behavior/Swim/canStillUse (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)Z +MD: net/minecraft/world/entity/ai/behavior/Swim/m_6737_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/Mob;J)Z net/minecraft/world/entity/ai/behavior/Swim/canStillUse (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/Mob;J)Z +MD: net/minecraft/world/entity/ai/behavior/TradeWithVillager/ ()V net/minecraft/world/entity/ai/behavior/TradeWithVillager/ ()V +MD: net/minecraft/world/entity/ai/behavior/TradeWithVillager/m_24422_ (Lnet/minecraft/world/entity/npc/Villager;Lnet/minecraft/world/entity/npc/Villager;)Ljava/util/Set; net/minecraft/world/entity/ai/behavior/TradeWithVillager/figureOutWhatIAmWillingToTrade (Lnet/minecraft/world/entity/npc/Villager;Lnet/minecraft/world/entity/npc/Villager;)Ljava/util/Set; +MD: net/minecraft/world/entity/ai/behavior/TradeWithVillager/m_24425_ (Lnet/minecraft/world/entity/npc/Villager;Ljava/util/Set;Lnet/minecraft/world/entity/LivingEntity;)V net/minecraft/world/entity/ai/behavior/TradeWithVillager/throwHalfStack (Lnet/minecraft/world/entity/npc/Villager;Ljava/util/Set;Lnet/minecraft/world/entity/LivingEntity;)V +MD: net/minecraft/world/entity/ai/behavior/TradeWithVillager/m_24429_ (Lcom/google/common/collect/ImmutableSet;Lnet/minecraft/world/item/Item;)Z net/minecraft/world/entity/ai/behavior/TradeWithVillager/lambda$figureOutWhatIAmWillingToTrade$0 (Lcom/google/common/collect/ImmutableSet;Lnet/minecraft/world/item/Item;)Z +MD: net/minecraft/world/entity/ai/behavior/TradeWithVillager/m_6114_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;)Z net/minecraft/world/entity/ai/behavior/TradeWithVillager/checkExtraStartConditions (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;)Z +MD: net/minecraft/world/entity/ai/behavior/TradeWithVillager/m_6114_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/npc/Villager;)Z net/minecraft/world/entity/ai/behavior/TradeWithVillager/checkExtraStartConditions (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/npc/Villager;)Z +MD: net/minecraft/world/entity/ai/behavior/TradeWithVillager/m_6725_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)V net/minecraft/world/entity/ai/behavior/TradeWithVillager/tick (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)V +MD: net/minecraft/world/entity/ai/behavior/TradeWithVillager/m_6725_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/npc/Villager;J)V net/minecraft/world/entity/ai/behavior/TradeWithVillager/tick (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/npc/Villager;J)V +MD: net/minecraft/world/entity/ai/behavior/TradeWithVillager/m_6732_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)V net/minecraft/world/entity/ai/behavior/TradeWithVillager/stop (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)V +MD: net/minecraft/world/entity/ai/behavior/TradeWithVillager/m_6732_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/npc/Villager;J)V net/minecraft/world/entity/ai/behavior/TradeWithVillager/stop (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/npc/Villager;J)V +MD: net/minecraft/world/entity/ai/behavior/TradeWithVillager/m_6735_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/npc/Villager;J)V net/minecraft/world/entity/ai/behavior/TradeWithVillager/start (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/npc/Villager;J)V +MD: net/minecraft/world/entity/ai/behavior/TradeWithVillager/m_6735_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)V net/minecraft/world/entity/ai/behavior/TradeWithVillager/start (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)V +MD: net/minecraft/world/entity/ai/behavior/TradeWithVillager/m_6737_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/npc/Villager;J)Z net/minecraft/world/entity/ai/behavior/TradeWithVillager/canStillUse (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/npc/Villager;J)Z +MD: net/minecraft/world/entity/ai/behavior/TradeWithVillager/m_6737_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)Z net/minecraft/world/entity/ai/behavior/TradeWithVillager/canStillUse (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)Z +MD: net/minecraft/world/entity/ai/behavior/TriggerGate/ ()V net/minecraft/world/entity/ai/behavior/TriggerGate/ ()V +MD: net/minecraft/world/entity/ai/behavior/TriggerGate/m_257503_ (Ljava/util/List;)Lnet/minecraft/world/entity/ai/behavior/OneShot; net/minecraft/world/entity/ai/behavior/TriggerGate/triggerOneShuffled (Ljava/util/List;)Lnet/minecraft/world/entity/ai/behavior/OneShot; +MD: net/minecraft/world/entity/ai/behavior/TriggerGate/m_257533_ (Lnet/minecraft/world/entity/ai/behavior/ShufflingList;Lcom/mojang/datafixers/util/Pair;)V net/minecraft/world/entity/ai/behavior/TriggerGate/lambda$triggerGate$0 (Lnet/minecraft/world/entity/ai/behavior/ShufflingList;Lcom/mojang/datafixers/util/Pair;)V +MD: net/minecraft/world/entity/ai/behavior/TriggerGate/m_257729_ (Lnet/minecraft/world/entity/ai/behavior/GateBehavior$OrderPolicy;Lnet/minecraft/world/entity/ai/behavior/ShufflingList;Lnet/minecraft/world/entity/ai/behavior/GateBehavior$RunningPolicy;Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/world/entity/ai/behavior/TriggerGate/lambda$triggerGate$2 (Lnet/minecraft/world/entity/ai/behavior/GateBehavior$OrderPolicy;Lnet/minecraft/world/entity/ai/behavior/ShufflingList;Lnet/minecraft/world/entity/ai/behavior/GateBehavior$RunningPolicy;Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/world/entity/ai/behavior/TriggerGate/m_257776_ (Lnet/minecraft/world/entity/ai/behavior/GateBehavior$OrderPolicy;Lnet/minecraft/world/entity/ai/behavior/ShufflingList;Lnet/minecraft/world/entity/ai/behavior/GateBehavior$RunningPolicy;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)Z net/minecraft/world/entity/ai/behavior/TriggerGate/lambda$triggerGate$1 (Lnet/minecraft/world/entity/ai/behavior/GateBehavior$OrderPolicy;Lnet/minecraft/world/entity/ai/behavior/ShufflingList;Lnet/minecraft/world/entity/ai/behavior/GateBehavior$RunningPolicy;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)Z +MD: net/minecraft/world/entity/ai/behavior/TriggerGate/m_258009_ (Ljava/util/List;Lnet/minecraft/world/entity/ai/behavior/GateBehavior$OrderPolicy;Lnet/minecraft/world/entity/ai/behavior/GateBehavior$RunningPolicy;)Lnet/minecraft/world/entity/ai/behavior/OneShot; net/minecraft/world/entity/ai/behavior/TriggerGate/triggerGate (Ljava/util/List;Lnet/minecraft/world/entity/ai/behavior/GateBehavior$OrderPolicy;Lnet/minecraft/world/entity/ai/behavior/GateBehavior$RunningPolicy;)Lnet/minecraft/world/entity/ai/behavior/OneShot; +MD: net/minecraft/world/entity/ai/behavior/TryFindLand/ ()V net/minecraft/world/entity/ai/behavior/TryFindLand/ ()V +MD: net/minecraft/world/entity/ai/behavior/TryFindLand/m_257479_ (Lorg/apache/commons/lang3/mutable/MutableLong;IFLnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/world/entity/ai/behavior/TryFindLand/lambda$create$2 (Lorg/apache/commons/lang3/mutable/MutableLong;IFLnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/world/entity/ai/behavior/TryFindLand/m_257596_ (Lorg/apache/commons/lang3/mutable/MutableLong;IFLnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;)Lnet/minecraft/world/entity/ai/behavior/declarative/Trigger; net/minecraft/world/entity/ai/behavior/TryFindLand/lambda$create$1 (Lorg/apache/commons/lang3/mutable/MutableLong;IFLnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;)Lnet/minecraft/world/entity/ai/behavior/declarative/Trigger; +MD: net/minecraft/world/entity/ai/behavior/TryFindLand/m_257647_ (IF)Lnet/minecraft/world/entity/ai/behavior/BehaviorControl; net/minecraft/world/entity/ai/behavior/TryFindLand/create (IF)Lnet/minecraft/world/entity/ai/behavior/BehaviorControl; +MD: net/minecraft/world/entity/ai/behavior/TryFindLand/m_257862_ (Lorg/apache/commons/lang3/mutable/MutableLong;ILnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;FLnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/PathfinderMob;J)Z net/minecraft/world/entity/ai/behavior/TryFindLand/lambda$create$0 (Lorg/apache/commons/lang3/mutable/MutableLong;ILnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;FLnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/PathfinderMob;J)Z +MD: net/minecraft/world/entity/ai/behavior/TryFindLandNearWater/ ()V net/minecraft/world/entity/ai/behavior/TryFindLandNearWater/ ()V +MD: net/minecraft/world/entity/ai/behavior/TryFindLandNearWater/m_257445_ (Lorg/apache/commons/lang3/mutable/MutableLong;IFLnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/world/entity/ai/behavior/TryFindLandNearWater/lambda$create$2 (Lorg/apache/commons/lang3/mutable/MutableLong;IFLnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/world/entity/ai/behavior/TryFindLandNearWater/m_257557_ (IF)Lnet/minecraft/world/entity/ai/behavior/BehaviorControl; net/minecraft/world/entity/ai/behavior/TryFindLandNearWater/create (IF)Lnet/minecraft/world/entity/ai/behavior/BehaviorControl; +MD: net/minecraft/world/entity/ai/behavior/TryFindLandNearWater/m_257879_ (Lorg/apache/commons/lang3/mutable/MutableLong;IFLnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;)Lnet/minecraft/world/entity/ai/behavior/declarative/Trigger; net/minecraft/world/entity/ai/behavior/TryFindLandNearWater/lambda$create$1 (Lorg/apache/commons/lang3/mutable/MutableLong;IFLnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;)Lnet/minecraft/world/entity/ai/behavior/declarative/Trigger; +MD: net/minecraft/world/entity/ai/behavior/TryFindLandNearWater/m_257996_ (Lorg/apache/commons/lang3/mutable/MutableLong;ILnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;FLnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/PathfinderMob;J)Z net/minecraft/world/entity/ai/behavior/TryFindLandNearWater/lambda$create$0 (Lorg/apache/commons/lang3/mutable/MutableLong;ILnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;FLnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/PathfinderMob;J)Z +MD: net/minecraft/world/entity/ai/behavior/TryFindWater/ ()V net/minecraft/world/entity/ai/behavior/TryFindWater/ ()V +MD: net/minecraft/world/entity/ai/behavior/TryFindWater/m_257548_ (Lorg/apache/commons/lang3/mutable/MutableLong;ILnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;FLnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/PathfinderMob;J)Z net/minecraft/world/entity/ai/behavior/TryFindWater/lambda$create$0 (Lorg/apache/commons/lang3/mutable/MutableLong;ILnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;FLnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/PathfinderMob;J)Z +MD: net/minecraft/world/entity/ai/behavior/TryFindWater/m_257817_ (Lorg/apache/commons/lang3/mutable/MutableLong;IFLnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/world/entity/ai/behavior/TryFindWater/lambda$create$2 (Lorg/apache/commons/lang3/mutable/MutableLong;IFLnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/world/entity/ai/behavior/TryFindWater/m_257908_ (IF)Lnet/minecraft/world/entity/ai/behavior/BehaviorControl; net/minecraft/world/entity/ai/behavior/TryFindWater/create (IF)Lnet/minecraft/world/entity/ai/behavior/BehaviorControl; +MD: net/minecraft/world/entity/ai/behavior/TryFindWater/m_258071_ (Lorg/apache/commons/lang3/mutable/MutableLong;IFLnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;)Lnet/minecraft/world/entity/ai/behavior/declarative/Trigger; net/minecraft/world/entity/ai/behavior/TryFindWater/lambda$create$1 (Lorg/apache/commons/lang3/mutable/MutableLong;IFLnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;)Lnet/minecraft/world/entity/ai/behavior/declarative/Trigger; +MD: net/minecraft/world/entity/ai/behavior/TryLaySpawnOnWaterNearLand/ ()V net/minecraft/world/entity/ai/behavior/TryLaySpawnOnWaterNearLand/ ()V +MD: net/minecraft/world/entity/ai/behavior/TryLaySpawnOnWaterNearLand/m_257849_ (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/entity/ai/behavior/BehaviorControl; net/minecraft/world/entity/ai/behavior/TryLaySpawnOnWaterNearLand/create (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/entity/ai/behavior/BehaviorControl; +MD: net/minecraft/world/entity/ai/behavior/TryLaySpawnOnWaterNearLand/m_257870_ (Lnet/minecraft/world/level/block/Block;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;)Lnet/minecraft/world/entity/ai/behavior/declarative/Trigger; net/minecraft/world/entity/ai/behavior/TryLaySpawnOnWaterNearLand/lambda$create$1 (Lnet/minecraft/world/level/block/Block;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;)Lnet/minecraft/world/entity/ai/behavior/declarative/Trigger; +MD: net/minecraft/world/entity/ai/behavior/TryLaySpawnOnWaterNearLand/m_258016_ (Lnet/minecraft/world/level/block/Block;Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/world/entity/ai/behavior/TryLaySpawnOnWaterNearLand/lambda$create$2 (Lnet/minecraft/world/level/block/Block;Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/world/entity/ai/behavior/TryLaySpawnOnWaterNearLand/m_268890_ (Lnet/minecraft/world/level/block/Block;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)Z net/minecraft/world/entity/ai/behavior/TryLaySpawnOnWaterNearLand/lambda$create$0 (Lnet/minecraft/world/level/block/Block;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)Z +MD: net/minecraft/world/entity/ai/behavior/UpdateActivityFromSchedule/ ()V net/minecraft/world/entity/ai/behavior/UpdateActivityFromSchedule/ ()V +MD: net/minecraft/world/entity/ai/behavior/UpdateActivityFromSchedule/m_257835_ ()Lnet/minecraft/world/entity/ai/behavior/BehaviorControl; net/minecraft/world/entity/ai/behavior/UpdateActivityFromSchedule/create ()Lnet/minecraft/world/entity/ai/behavior/BehaviorControl; +MD: net/minecraft/world/entity/ai/behavior/UpdateActivityFromSchedule/m_258025_ (Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/world/entity/ai/behavior/UpdateActivityFromSchedule/lambda$create$1 (Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/world/entity/ai/behavior/UpdateActivityFromSchedule/m_288135_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)Z net/minecraft/world/entity/ai/behavior/UpdateActivityFromSchedule/lambda$create$0 (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)Z +MD: net/minecraft/world/entity/ai/behavior/UseBonemeal/ ()V net/minecraft/world/entity/ai/behavior/UseBonemeal/ ()V +MD: net/minecraft/world/entity/ai/behavior/UseBonemeal/m_24480_ (Lnet/minecraft/world/entity/npc/Villager;)V net/minecraft/world/entity/ai/behavior/UseBonemeal/setCurrentCropAsTarget (Lnet/minecraft/world/entity/npc/Villager;)V +MD: net/minecraft/world/entity/ai/behavior/UseBonemeal/m_24482_ (Lnet/minecraft/world/entity/npc/Villager;Lnet/minecraft/core/BlockPos;)V net/minecraft/world/entity/ai/behavior/UseBonemeal/lambda$setCurrentCropAsTarget$0 (Lnet/minecraft/world/entity/npc/Villager;Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/world/entity/ai/behavior/UseBonemeal/m_24485_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/server/level/ServerLevel;)Z net/minecraft/world/entity/ai/behavior/UseBonemeal/validPos (Lnet/minecraft/core/BlockPos;Lnet/minecraft/server/level/ServerLevel;)Z +MD: net/minecraft/world/entity/ai/behavior/UseBonemeal/m_24492_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/npc/Villager;)Ljava/util/Optional; net/minecraft/world/entity/ai/behavior/UseBonemeal/pickNextTarget (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/npc/Villager;)Ljava/util/Optional; +MD: net/minecraft/world/entity/ai/behavior/UseBonemeal/m_6114_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;)Z net/minecraft/world/entity/ai/behavior/UseBonemeal/checkExtraStartConditions (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;)Z +MD: net/minecraft/world/entity/ai/behavior/UseBonemeal/m_6114_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/npc/Villager;)Z net/minecraft/world/entity/ai/behavior/UseBonemeal/checkExtraStartConditions (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/npc/Villager;)Z +MD: net/minecraft/world/entity/ai/behavior/UseBonemeal/m_6725_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)V net/minecraft/world/entity/ai/behavior/UseBonemeal/tick (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)V +MD: net/minecraft/world/entity/ai/behavior/UseBonemeal/m_6725_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/npc/Villager;J)V net/minecraft/world/entity/ai/behavior/UseBonemeal/tick (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/npc/Villager;J)V +MD: net/minecraft/world/entity/ai/behavior/UseBonemeal/m_6732_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)V net/minecraft/world/entity/ai/behavior/UseBonemeal/stop (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)V +MD: net/minecraft/world/entity/ai/behavior/UseBonemeal/m_6732_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/npc/Villager;J)V net/minecraft/world/entity/ai/behavior/UseBonemeal/stop (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/npc/Villager;J)V +MD: net/minecraft/world/entity/ai/behavior/UseBonemeal/m_6735_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/npc/Villager;J)V net/minecraft/world/entity/ai/behavior/UseBonemeal/start (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/npc/Villager;J)V +MD: net/minecraft/world/entity/ai/behavior/UseBonemeal/m_6735_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)V net/minecraft/world/entity/ai/behavior/UseBonemeal/start (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)V +MD: net/minecraft/world/entity/ai/behavior/UseBonemeal/m_6737_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/npc/Villager;J)Z net/minecraft/world/entity/ai/behavior/UseBonemeal/canStillUse (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/npc/Villager;J)Z +MD: net/minecraft/world/entity/ai/behavior/UseBonemeal/m_6737_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)Z net/minecraft/world/entity/ai/behavior/UseBonemeal/canStillUse (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)Z +MD: net/minecraft/world/entity/ai/behavior/ValidateNearbyPoi/ ()V net/minecraft/world/entity/ai/behavior/ValidateNearbyPoi/ ()V +MD: net/minecraft/world/entity/ai/behavior/ValidateNearbyPoi/m_24530_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/LivingEntity;)Z net/minecraft/world/entity/ai/behavior/ValidateNearbyPoi/bedIsOccupied (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/LivingEntity;)Z +MD: net/minecraft/world/entity/ai/behavior/ValidateNearbyPoi/m_257806_ (Lnet/minecraft/world/entity/ai/memory/MemoryModuleType;Ljava/util/function/Predicate;Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/world/entity/ai/behavior/ValidateNearbyPoi/lambda$create$2 (Lnet/minecraft/world/entity/ai/memory/MemoryModuleType;Ljava/util/function/Predicate;Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/world/entity/ai/behavior/ValidateNearbyPoi/m_257857_ (Ljava/util/function/Predicate;Lnet/minecraft/world/entity/ai/memory/MemoryModuleType;)Lnet/minecraft/world/entity/ai/behavior/BehaviorControl; net/minecraft/world/entity/ai/behavior/ValidateNearbyPoi/create (Ljava/util/function/Predicate;Lnet/minecraft/world/entity/ai/memory/MemoryModuleType;)Lnet/minecraft/world/entity/ai/behavior/BehaviorControl; +MD: net/minecraft/world/entity/ai/behavior/ValidateNearbyPoi/m_257898_ (Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Ljava/util/function/Predicate;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)Z net/minecraft/world/entity/ai/behavior/ValidateNearbyPoi/lambda$create$0 (Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Ljava/util/function/Predicate;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)Z +MD: net/minecraft/world/entity/ai/behavior/ValidateNearbyPoi/m_257919_ (Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;Ljava/util/function/Predicate;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;)Lnet/minecraft/world/entity/ai/behavior/declarative/Trigger; net/minecraft/world/entity/ai/behavior/ValidateNearbyPoi/lambda$create$1 (Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;Ljava/util/function/Predicate;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;)Lnet/minecraft/world/entity/ai/behavior/declarative/Trigger; +MD: net/minecraft/world/entity/ai/behavior/VillageBoundRandomStroll/ ()V net/minecraft/world/entity/ai/behavior/VillageBoundRandomStroll/ ()V +MD: net/minecraft/world/entity/ai/behavior/VillageBoundRandomStroll/m_257290_ (IIFLnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;)Lnet/minecraft/world/entity/ai/behavior/declarative/Trigger; net/minecraft/world/entity/ai/behavior/VillageBoundRandomStroll/lambda$create$2 (IIFLnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;)Lnet/minecraft/world/entity/ai/behavior/declarative/Trigger; +MD: net/minecraft/world/entity/ai/behavior/VillageBoundRandomStroll/m_257291_ (FLnet/minecraft/world/phys/Vec3;)Lnet/minecraft/world/entity/ai/memory/WalkTarget; net/minecraft/world/entity/ai/behavior/VillageBoundRandomStroll/lambda$create$0 (FLnet/minecraft/world/phys/Vec3;)Lnet/minecraft/world/entity/ai/memory/WalkTarget; +MD: net/minecraft/world/entity/ai/behavior/VillageBoundRandomStroll/m_257292_ (IIFLnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/world/entity/ai/behavior/VillageBoundRandomStroll/lambda$create$3 (IIFLnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/world/entity/ai/behavior/VillageBoundRandomStroll/m_257293_ (IILnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;FLnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/PathfinderMob;J)Z net/minecraft/world/entity/ai/behavior/VillageBoundRandomStroll/lambda$create$1 (IILnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;FLnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/PathfinderMob;J)Z +MD: net/minecraft/world/entity/ai/behavior/VillageBoundRandomStroll/m_257910_ (F)Lnet/minecraft/world/entity/ai/behavior/OneShot; net/minecraft/world/entity/ai/behavior/VillageBoundRandomStroll/create (F)Lnet/minecraft/world/entity/ai/behavior/OneShot; +MD: net/minecraft/world/entity/ai/behavior/VillageBoundRandomStroll/m_258010_ (FII)Lnet/minecraft/world/entity/ai/behavior/OneShot; net/minecraft/world/entity/ai/behavior/VillageBoundRandomStroll/create (FII)Lnet/minecraft/world/entity/ai/behavior/OneShot; +MD: net/minecraft/world/entity/ai/behavior/VillagerCalmDown/ ()V net/minecraft/world/entity/ai/behavior/VillagerCalmDown/ ()V +MD: net/minecraft/world/entity/ai/behavior/VillagerCalmDown/m_24579_ (Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/entity/LivingEntity;)Z net/minecraft/world/entity/ai/behavior/VillagerCalmDown/lambda$create$0 (Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/entity/LivingEntity;)Z +MD: net/minecraft/world/entity/ai/behavior/VillagerCalmDown/m_257295_ (Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/world/entity/ai/behavior/VillagerCalmDown/lambda$create$3 (Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/world/entity/ai/behavior/VillagerCalmDown/m_257296_ (Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;)Lnet/minecraft/world/entity/ai/behavior/declarative/Trigger; net/minecraft/world/entity/ai/behavior/VillagerCalmDown/lambda$create$2 (Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;)Lnet/minecraft/world/entity/ai/behavior/declarative/Trigger; +MD: net/minecraft/world/entity/ai/behavior/VillagerCalmDown/m_257666_ ()Lnet/minecraft/world/entity/ai/behavior/BehaviorControl; net/minecraft/world/entity/ai/behavior/VillagerCalmDown/create ()Lnet/minecraft/world/entity/ai/behavior/BehaviorControl; +MD: net/minecraft/world/entity/ai/behavior/VillagerCalmDown/m_288136_ (Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)Z net/minecraft/world/entity/ai/behavior/VillagerCalmDown/lambda$create$1 (Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)Z +MD: net/minecraft/world/entity/ai/behavior/VillagerGoalPackages/ ()V net/minecraft/world/entity/ai/behavior/VillagerGoalPackages/ ()V +MD: net/minecraft/world/entity/ai/behavior/VillagerGoalPackages/m_217492_ (Lnet/minecraft/core/Holder;)Z net/minecraft/world/entity/ai/behavior/VillagerGoalPackages/lambda$getMeetPackage$3 (Lnet/minecraft/core/Holder;)Z +MD: net/minecraft/world/entity/ai/behavior/VillagerGoalPackages/m_217494_ (Lnet/minecraft/core/Holder;)Z net/minecraft/world/entity/ai/behavior/VillagerGoalPackages/lambda$getRestPackage$2 (Lnet/minecraft/core/Holder;)Z +MD: net/minecraft/world/entity/ai/behavior/VillagerGoalPackages/m_217496_ (Lnet/minecraft/core/Holder;)Z net/minecraft/world/entity/ai/behavior/VillagerGoalPackages/lambda$getCorePackage$1 (Lnet/minecraft/core/Holder;)Z +MD: net/minecraft/world/entity/ai/behavior/VillagerGoalPackages/m_217498_ (Lnet/minecraft/core/Holder;)Z net/minecraft/world/entity/ai/behavior/VillagerGoalPackages/lambda$getCorePackage$0 (Lnet/minecraft/core/Holder;)Z +MD: net/minecraft/world/entity/ai/behavior/VillagerGoalPackages/m_24582_ ()Lcom/mojang/datafixers/util/Pair; net/minecraft/world/entity/ai/behavior/VillagerGoalPackages/getFullLookBehavior ()Lcom/mojang/datafixers/util/Pair; +MD: net/minecraft/world/entity/ai/behavior/VillagerGoalPackages/m_24583_ (F)Lcom/google/common/collect/ImmutableList; net/minecraft/world/entity/ai/behavior/VillagerGoalPackages/getPlayPackage (F)Lcom/google/common/collect/ImmutableList; +MD: net/minecraft/world/entity/ai/behavior/VillagerGoalPackages/m_24585_ (Lnet/minecraft/world/entity/npc/VillagerProfession;F)Lcom/google/common/collect/ImmutableList; net/minecraft/world/entity/ai/behavior/VillagerGoalPackages/getCorePackage (Lnet/minecraft/world/entity/npc/VillagerProfession;F)Lcom/google/common/collect/ImmutableList; +MD: net/minecraft/world/entity/ai/behavior/VillagerGoalPackages/m_24588_ ()Lcom/mojang/datafixers/util/Pair; net/minecraft/world/entity/ai/behavior/VillagerGoalPackages/getMinimalLookBehavior ()Lcom/mojang/datafixers/util/Pair; +MD: net/minecraft/world/entity/ai/behavior/VillagerGoalPackages/m_24589_ (Lnet/minecraft/world/entity/npc/VillagerProfession;F)Lcom/google/common/collect/ImmutableList; net/minecraft/world/entity/ai/behavior/VillagerGoalPackages/getWorkPackage (Lnet/minecraft/world/entity/npc/VillagerProfession;F)Lcom/google/common/collect/ImmutableList; +MD: net/minecraft/world/entity/ai/behavior/VillagerGoalPackages/m_24592_ (Lnet/minecraft/world/entity/npc/VillagerProfession;F)Lcom/google/common/collect/ImmutableList; net/minecraft/world/entity/ai/behavior/VillagerGoalPackages/getRestPackage (Lnet/minecraft/world/entity/npc/VillagerProfession;F)Lcom/google/common/collect/ImmutableList; +MD: net/minecraft/world/entity/ai/behavior/VillagerGoalPackages/m_24595_ (Lnet/minecraft/world/entity/npc/VillagerProfession;F)Lcom/google/common/collect/ImmutableList; net/minecraft/world/entity/ai/behavior/VillagerGoalPackages/getMeetPackage (Lnet/minecraft/world/entity/npc/VillagerProfession;F)Lcom/google/common/collect/ImmutableList; +MD: net/minecraft/world/entity/ai/behavior/VillagerGoalPackages/m_24598_ (Lnet/minecraft/world/entity/npc/VillagerProfession;F)Lcom/google/common/collect/ImmutableList; net/minecraft/world/entity/ai/behavior/VillagerGoalPackages/getIdlePackage (Lnet/minecraft/world/entity/npc/VillagerProfession;F)Lcom/google/common/collect/ImmutableList; +MD: net/minecraft/world/entity/ai/behavior/VillagerGoalPackages/m_24601_ (Lnet/minecraft/world/entity/npc/VillagerProfession;F)Lcom/google/common/collect/ImmutableList; net/minecraft/world/entity/ai/behavior/VillagerGoalPackages/getPanicPackage (Lnet/minecraft/world/entity/npc/VillagerProfession;F)Lcom/google/common/collect/ImmutableList; +MD: net/minecraft/world/entity/ai/behavior/VillagerGoalPackages/m_24604_ (Lnet/minecraft/world/entity/npc/VillagerProfession;F)Lcom/google/common/collect/ImmutableList; net/minecraft/world/entity/ai/behavior/VillagerGoalPackages/getPreRaidPackage (Lnet/minecraft/world/entity/npc/VillagerProfession;F)Lcom/google/common/collect/ImmutableList; +MD: net/minecraft/world/entity/ai/behavior/VillagerGoalPackages/m_24607_ (Lnet/minecraft/world/entity/npc/VillagerProfession;F)Lcom/google/common/collect/ImmutableList; net/minecraft/world/entity/ai/behavior/VillagerGoalPackages/getRaidPackage (Lnet/minecraft/world/entity/npc/VillagerProfession;F)Lcom/google/common/collect/ImmutableList; +MD: net/minecraft/world/entity/ai/behavior/VillagerGoalPackages/m_24610_ (Lnet/minecraft/world/entity/npc/VillagerProfession;F)Lcom/google/common/collect/ImmutableList; net/minecraft/world/entity/ai/behavior/VillagerGoalPackages/getHidePackage (Lnet/minecraft/world/entity/npc/VillagerProfession;F)Lcom/google/common/collect/ImmutableList; +MD: net/minecraft/world/entity/ai/behavior/VillagerGoalPackages/m_257399_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;)Z net/minecraft/world/entity/ai/behavior/VillagerGoalPackages/raidExistsAndNotVictory (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;)Z +MD: net/minecraft/world/entity/ai/behavior/VillagerGoalPackages/m_257480_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;)Z net/minecraft/world/entity/ai/behavior/VillagerGoalPackages/raidExistsAndActive (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;)Z +MD: net/minecraft/world/entity/ai/behavior/VillagerMakeLove/ ()V net/minecraft/world/entity/ai/behavior/VillagerMakeLove/ ()V +MD: net/minecraft/world/entity/ai/behavior/VillagerMakeLove/m_217500_ (Lnet/minecraft/world/entity/npc/Villager;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Holder;)Z net/minecraft/world/entity/ai/behavior/VillagerMakeLove/canReach (Lnet/minecraft/world/entity/npc/Villager;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Holder;)Z +MD: net/minecraft/world/entity/ai/behavior/VillagerMakeLove/m_217504_ (Lnet/minecraft/world/entity/npc/Villager;Lnet/minecraft/core/Holder;Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/entity/ai/behavior/VillagerMakeLove/lambda$takeVacantBed$2 (Lnet/minecraft/world/entity/npc/Villager;Lnet/minecraft/core/Holder;Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/entity/ai/behavior/VillagerMakeLove/m_217508_ (Lnet/minecraft/core/Holder;)Z net/minecraft/world/entity/ai/behavior/VillagerMakeLove/lambda$takeVacantBed$1 (Lnet/minecraft/core/Holder;)Z +MD: net/minecraft/world/entity/ai/behavior/VillagerMakeLove/m_24629_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/npc/Villager;Lnet/minecraft/world/entity/npc/Villager;)V net/minecraft/world/entity/ai/behavior/VillagerMakeLove/tryToGiveBirth (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/npc/Villager;Lnet/minecraft/world/entity/npc/Villager;)V +MD: net/minecraft/world/entity/ai/behavior/VillagerMakeLove/m_24633_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/npc/Villager;Lnet/minecraft/core/BlockPos;)V net/minecraft/world/entity/ai/behavior/VillagerMakeLove/giveBedToChild (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/npc/Villager;Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/world/entity/ai/behavior/VillagerMakeLove/m_24639_ (Lnet/minecraft/world/entity/npc/Villager;)Z net/minecraft/world/entity/ai/behavior/VillagerMakeLove/isBreedingPossible (Lnet/minecraft/world/entity/npc/Villager;)Z +MD: net/minecraft/world/entity/ai/behavior/VillagerMakeLove/m_24648_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/npc/Villager;)Ljava/util/Optional; net/minecraft/world/entity/ai/behavior/VillagerMakeLove/takeVacantBed (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/npc/Villager;)Ljava/util/Optional; +MD: net/minecraft/world/entity/ai/behavior/VillagerMakeLove/m_24655_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/npc/Villager;Lnet/minecraft/world/entity/npc/Villager;)Ljava/util/Optional; net/minecraft/world/entity/ai/behavior/VillagerMakeLove/breed (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/npc/Villager;Lnet/minecraft/world/entity/npc/Villager;)Ljava/util/Optional; +MD: net/minecraft/world/entity/ai/behavior/VillagerMakeLove/m_289112_ (Lnet/minecraft/world/entity/AgeableMob;)Z net/minecraft/world/entity/ai/behavior/VillagerMakeLove/lambda$isBreedingPossible$0 (Lnet/minecraft/world/entity/AgeableMob;)Z +MD: net/minecraft/world/entity/ai/behavior/VillagerMakeLove/m_6114_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;)Z net/minecraft/world/entity/ai/behavior/VillagerMakeLove/checkExtraStartConditions (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;)Z +MD: net/minecraft/world/entity/ai/behavior/VillagerMakeLove/m_6114_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/npc/Villager;)Z net/minecraft/world/entity/ai/behavior/VillagerMakeLove/checkExtraStartConditions (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/npc/Villager;)Z +MD: net/minecraft/world/entity/ai/behavior/VillagerMakeLove/m_6725_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)V net/minecraft/world/entity/ai/behavior/VillagerMakeLove/tick (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)V +MD: net/minecraft/world/entity/ai/behavior/VillagerMakeLove/m_6725_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/npc/Villager;J)V net/minecraft/world/entity/ai/behavior/VillagerMakeLove/tick (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/npc/Villager;J)V +MD: net/minecraft/world/entity/ai/behavior/VillagerMakeLove/m_6732_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)V net/minecraft/world/entity/ai/behavior/VillagerMakeLove/stop (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)V +MD: net/minecraft/world/entity/ai/behavior/VillagerMakeLove/m_6732_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/npc/Villager;J)V net/minecraft/world/entity/ai/behavior/VillagerMakeLove/stop (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/npc/Villager;J)V +MD: net/minecraft/world/entity/ai/behavior/VillagerMakeLove/m_6735_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/npc/Villager;J)V net/minecraft/world/entity/ai/behavior/VillagerMakeLove/start (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/npc/Villager;J)V +MD: net/minecraft/world/entity/ai/behavior/VillagerMakeLove/m_6735_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)V net/minecraft/world/entity/ai/behavior/VillagerMakeLove/start (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)V +MD: net/minecraft/world/entity/ai/behavior/VillagerMakeLove/m_6737_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/npc/Villager;J)Z net/minecraft/world/entity/ai/behavior/VillagerMakeLove/canStillUse (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/npc/Villager;J)Z +MD: net/minecraft/world/entity/ai/behavior/VillagerMakeLove/m_6737_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)Z net/minecraft/world/entity/ai/behavior/VillagerMakeLove/canStillUse (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)Z +MD: net/minecraft/world/entity/ai/behavior/VillagerPanicTrigger/ ()V net/minecraft/world/entity/ai/behavior/VillagerPanicTrigger/ ()V +MD: net/minecraft/world/entity/ai/behavior/VillagerPanicTrigger/m_24687_ (Lnet/minecraft/world/entity/LivingEntity;)Z net/minecraft/world/entity/ai/behavior/VillagerPanicTrigger/hasHostile (Lnet/minecraft/world/entity/LivingEntity;)Z +MD: net/minecraft/world/entity/ai/behavior/VillagerPanicTrigger/m_24697_ (Lnet/minecraft/world/entity/LivingEntity;)Z net/minecraft/world/entity/ai/behavior/VillagerPanicTrigger/isHurt (Lnet/minecraft/world/entity/LivingEntity;)Z +MD: net/minecraft/world/entity/ai/behavior/VillagerPanicTrigger/m_6725_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)V net/minecraft/world/entity/ai/behavior/VillagerPanicTrigger/tick (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)V +MD: net/minecraft/world/entity/ai/behavior/VillagerPanicTrigger/m_6725_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/npc/Villager;J)V net/minecraft/world/entity/ai/behavior/VillagerPanicTrigger/tick (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/npc/Villager;J)V +MD: net/minecraft/world/entity/ai/behavior/VillagerPanicTrigger/m_6735_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)V net/minecraft/world/entity/ai/behavior/VillagerPanicTrigger/start (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)V +MD: net/minecraft/world/entity/ai/behavior/VillagerPanicTrigger/m_6735_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/npc/Villager;J)V net/minecraft/world/entity/ai/behavior/VillagerPanicTrigger/start (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/npc/Villager;J)V +MD: net/minecraft/world/entity/ai/behavior/VillagerPanicTrigger/m_6737_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/npc/Villager;J)Z net/minecraft/world/entity/ai/behavior/VillagerPanicTrigger/canStillUse (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/npc/Villager;J)Z +MD: net/minecraft/world/entity/ai/behavior/VillagerPanicTrigger/m_6737_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)Z net/minecraft/world/entity/ai/behavior/VillagerPanicTrigger/canStillUse (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)Z +MD: net/minecraft/world/entity/ai/behavior/WakeUp/ ()V net/minecraft/world/entity/ai/behavior/WakeUp/ ()V +MD: net/minecraft/world/entity/ai/behavior/WakeUp/m_257779_ ()Lnet/minecraft/world/entity/ai/behavior/BehaviorControl; net/minecraft/world/entity/ai/behavior/WakeUp/create ()Lnet/minecraft/world/entity/ai/behavior/BehaviorControl; +MD: net/minecraft/world/entity/ai/behavior/WakeUp/m_258043_ (Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/world/entity/ai/behavior/WakeUp/lambda$create$1 (Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/world/entity/ai/behavior/WakeUp/m_258063_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)Z net/minecraft/world/entity/ai/behavior/WakeUp/lambda$create$0 (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)Z +MD: net/minecraft/world/entity/ai/behavior/WorkAtComposter/ ()V net/minecraft/world/entity/ai/behavior/WorkAtComposter/ ()V +MD: net/minecraft/world/entity/ai/behavior/WorkAtComposter/ ()V net/minecraft/world/entity/ai/behavior/WorkAtComposter/ ()V +MD: net/minecraft/world/entity/ai/behavior/WorkAtComposter/m_24792_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/npc/Villager;Lnet/minecraft/core/GlobalPos;Lnet/minecraft/world/level/block/state/BlockState;)V net/minecraft/world/entity/ai/behavior/WorkAtComposter/compostItems (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/npc/Villager;Lnet/minecraft/core/GlobalPos;Lnet/minecraft/world/level/block/state/BlockState;)V +MD: net/minecraft/world/entity/ai/behavior/WorkAtComposter/m_24797_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V net/minecraft/world/entity/ai/behavior/WorkAtComposter/spawnComposterFillEffects (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V +MD: net/minecraft/world/entity/ai/behavior/WorkAtComposter/m_24802_ (Lnet/minecraft/world/entity/npc/Villager;)V net/minecraft/world/entity/ai/behavior/WorkAtComposter/makeBread (Lnet/minecraft/world/entity/npc/Villager;)V +MD: net/minecraft/world/entity/ai/behavior/WorkAtComposter/m_5628_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/npc/Villager;)V net/minecraft/world/entity/ai/behavior/WorkAtComposter/useWorkstation (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/npc/Villager;)V +MD: net/minecraft/world/entity/ai/behavior/WorkAtPoi/ ()V net/minecraft/world/entity/ai/behavior/WorkAtPoi/ ()V +MD: net/minecraft/world/entity/ai/behavior/WorkAtPoi/m_24819_ (Lnet/minecraft/world/entity/ai/Brain;Lnet/minecraft/core/GlobalPos;)V net/minecraft/world/entity/ai/behavior/WorkAtPoi/lambda$start$0 (Lnet/minecraft/world/entity/ai/Brain;Lnet/minecraft/core/GlobalPos;)V +MD: net/minecraft/world/entity/ai/behavior/WorkAtPoi/m_5628_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/npc/Villager;)V net/minecraft/world/entity/ai/behavior/WorkAtPoi/useWorkstation (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/npc/Villager;)V +MD: net/minecraft/world/entity/ai/behavior/WorkAtPoi/m_6114_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;)Z net/minecraft/world/entity/ai/behavior/WorkAtPoi/checkExtraStartConditions (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;)Z +MD: net/minecraft/world/entity/ai/behavior/WorkAtPoi/m_6114_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/npc/Villager;)Z net/minecraft/world/entity/ai/behavior/WorkAtPoi/checkExtraStartConditions (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/npc/Villager;)Z +MD: net/minecraft/world/entity/ai/behavior/WorkAtPoi/m_6735_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)V net/minecraft/world/entity/ai/behavior/WorkAtPoi/start (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)V +MD: net/minecraft/world/entity/ai/behavior/WorkAtPoi/m_6735_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/npc/Villager;J)V net/minecraft/world/entity/ai/behavior/WorkAtPoi/start (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/npc/Villager;J)V +MD: net/minecraft/world/entity/ai/behavior/WorkAtPoi/m_6737_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/npc/Villager;J)Z net/minecraft/world/entity/ai/behavior/WorkAtPoi/canStillUse (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/npc/Villager;J)Z +MD: net/minecraft/world/entity/ai/behavior/WorkAtPoi/m_6737_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)Z net/minecraft/world/entity/ai/behavior/WorkAtPoi/canStillUse (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)Z +MD: net/minecraft/world/entity/ai/behavior/YieldJobSite/ ()V net/minecraft/world/entity/ai/behavior/YieldJobSite/ ()V +MD: net/minecraft/world/entity/ai/behavior/YieldJobSite/m_217510_ (Lnet/minecraft/core/Holder;Lnet/minecraft/world/entity/npc/Villager;Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/entity/ai/behavior/YieldJobSite/nearbyWantsJobsite (Lnet/minecraft/core/Holder;Lnet/minecraft/world/entity/npc/Villager;Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/entity/ai/behavior/YieldJobSite/m_257298_ (Lnet/minecraft/world/entity/LivingEntity;)Lnet/minecraft/world/entity/npc/Villager; net/minecraft/world/entity/ai/behavior/YieldJobSite/lambda$create$1 (Lnet/minecraft/world/entity/LivingEntity;)Lnet/minecraft/world/entity/npc/Villager; +MD: net/minecraft/world/entity/ai/behavior/YieldJobSite/m_257299_ (Lnet/minecraft/world/entity/npc/Villager;Lnet/minecraft/world/entity/LivingEntity;)Z net/minecraft/world/entity/ai/behavior/YieldJobSite/lambda$create$0 (Lnet/minecraft/world/entity/npc/Villager;Lnet/minecraft/world/entity/LivingEntity;)Z +MD: net/minecraft/world/entity/ai/behavior/YieldJobSite/m_257300_ (Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;FLnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;)Lnet/minecraft/world/entity/ai/behavior/declarative/Trigger; net/minecraft/world/entity/ai/behavior/YieldJobSite/lambda$create$5 (Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;FLnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;)Lnet/minecraft/world/entity/ai/behavior/declarative/Trigger; +MD: net/minecraft/world/entity/ai/behavior/YieldJobSite/m_257301_ (Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;FLnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/npc/Villager;J)Z net/minecraft/world/entity/ai/behavior/YieldJobSite/lambda$create$4 (Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;FLnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/npc/Villager;J)Z +MD: net/minecraft/world/entity/ai/behavior/YieldJobSite/m_257302_ (FLnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/world/entity/ai/behavior/YieldJobSite/lambda$create$6 (FLnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/world/entity/ai/behavior/YieldJobSite/m_257303_ (Ljava/util/Optional;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/npc/Villager;)Z net/minecraft/world/entity/ai/behavior/YieldJobSite/lambda$create$2 (Ljava/util/Optional;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/npc/Villager;)Z +MD: net/minecraft/world/entity/ai/behavior/YieldJobSite/m_257696_ (Lnet/minecraft/world/entity/PathfinderMob;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/ai/village/poi/PoiType;)Z net/minecraft/world/entity/ai/behavior/YieldJobSite/canReachPos (Lnet/minecraft/world/entity/PathfinderMob;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/ai/village/poi/PoiType;)Z +MD: net/minecraft/world/entity/ai/behavior/YieldJobSite/m_257788_ (F)Lnet/minecraft/world/entity/ai/behavior/BehaviorControl; net/minecraft/world/entity/ai/behavior/YieldJobSite/create (F)Lnet/minecraft/world/entity/ai/behavior/BehaviorControl; +MD: net/minecraft/world/entity/ai/behavior/YieldJobSite/m_288137_ (Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/core/BlockPos;FLnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/npc/Villager;)V net/minecraft/world/entity/ai/behavior/YieldJobSite/lambda$create$3 (Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/core/BlockPos;FLnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/npc/Villager;)V +MD: net/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder/ (Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$TriggerWithResult;)V net/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder/ (Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$TriggerWithResult;)V +MD: net/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder/m_257394_ (Ljava/util/function/Predicate;Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder/lambda$triggerIf$3 (Ljava/util/function/Predicate;Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder/m_257395_ (Lnet/minecraft/world/entity/ai/behavior/declarative/Trigger;Lnet/minecraft/world/entity/ai/behavior/declarative/Trigger;Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder/lambda$sequence$1 (Lnet/minecraft/world/entity/ai/behavior/declarative/Trigger;Lnet/minecraft/world/entity/ai/behavior/declarative/Trigger;Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder/m_257433_ (Ljava/util/function/BiPredicate;)Lnet/minecraft/world/entity/ai/behavior/OneShot; net/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder/triggerIf (Ljava/util/function/BiPredicate;)Lnet/minecraft/world/entity/ai/behavior/OneShot; +MD: net/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder/m_257451_ (Lcom/mojang/datafixers/kinds/App;)Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$TriggerWithResult; net/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder/get (Lcom/mojang/datafixers/kinds/App;)Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$TriggerWithResult; +MD: net/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder/m_257554_ (Ljava/util/function/Predicate;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)Z net/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder/lambda$triggerIf$2 (Ljava/util/function/Predicate;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)Z +MD: net/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder/m_257590_ (Ljava/util/function/Predicate;)Lnet/minecraft/world/entity/ai/behavior/OneShot; net/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder/triggerIf (Ljava/util/function/Predicate;)Lnet/minecraft/world/entity/ai/behavior/OneShot; +MD: net/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder/m_257695_ (Lcom/mojang/datafixers/kinds/App;)Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder; net/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder/unbox (Lcom/mojang/datafixers/kinds/App;)Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder; +MD: net/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder/m_257813_ (Ljava/util/function/BiPredicate;Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder/lambda$triggerIf$5 (Ljava/util/function/BiPredicate;Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder/m_257845_ (Ljava/util/function/Predicate;Lnet/minecraft/world/entity/ai/behavior/OneShot;)Lnet/minecraft/world/entity/ai/behavior/OneShot; net/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder/triggerIf (Ljava/util/function/Predicate;Lnet/minecraft/world/entity/ai/behavior/OneShot;)Lnet/minecraft/world/entity/ai/behavior/OneShot; +MD: net/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder/m_257915_ (Ljava/util/function/BiPredicate;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)Z net/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder/lambda$triggerIf$4 (Ljava/util/function/BiPredicate;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)Z +MD: net/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder/m_257924_ (Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$TriggerWithResult;)Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder; net/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder/create (Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$TriggerWithResult;)Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder; +MD: net/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder/m_257958_ ()Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance; net/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder/instance ()Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance; +MD: net/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder/m_258034_ (Ljava/util/function/Function;)Lnet/minecraft/world/entity/ai/behavior/OneShot; net/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder/create (Ljava/util/function/Function;)Lnet/minecraft/world/entity/ai/behavior/OneShot; +MD: net/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder/m_258047_ (Lnet/minecraft/world/entity/ai/behavior/declarative/Trigger;Lnet/minecraft/world/entity/ai/behavior/declarative/Trigger;)Lnet/minecraft/world/entity/ai/behavior/OneShot; net/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder/sequence (Lnet/minecraft/world/entity/ai/behavior/declarative/Trigger;Lnet/minecraft/world/entity/ai/behavior/declarative/Trigger;)Lnet/minecraft/world/entity/ai/behavior/OneShot; +MD: net/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder/m_258081_ (Lnet/minecraft/world/entity/ai/behavior/declarative/Trigger;Lcom/mojang/datafixers/util/Unit;)Lnet/minecraft/world/entity/ai/behavior/declarative/Trigger; net/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder/lambda$sequence$0 (Lnet/minecraft/world/entity/ai/behavior/declarative/Trigger;Lcom/mojang/datafixers/util/Unit;)Lnet/minecraft/world/entity/ai/behavior/declarative/Trigger; +MD: net/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$1/ (Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$TriggerWithResult;)V net/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$1/ (Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$TriggerWithResult;)V +MD: net/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$1/m_22566_ ()Ljava/lang/String; net/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$1/debugString ()Ljava/lang/String; +MD: net/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$1/m_257808_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)Z net/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$1/trigger (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)Z +MD: net/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$1/toString ()Ljava/lang/String; net/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$1/toString ()Ljava/lang/String; +MD: net/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Constant/ (Ljava/lang/Object;)V net/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Constant/ (Ljava/lang/Object;)V +MD: net/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Constant/ (Ljava/lang/Object;Ljava/util/function/Supplier;)V net/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Constant/ (Ljava/lang/Object;Ljava/util/function/Supplier;)V +MD: net/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Constant/m_257783_ (Ljava/lang/Object;)Ljava/lang/String; net/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Constant/lambda$new$0 (Ljava/lang/Object;)Ljava/lang/String; +MD: net/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Constant$1/ (Ljava/lang/Object;Ljava/util/function/Supplier;)V net/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Constant$1/ (Ljava/lang/Object;Ljava/util/function/Supplier;)V +MD: net/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Constant$1/m_257477_ ()Ljava/lang/String; net/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Constant$1/debugString ()Ljava/lang/String; +MD: net/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Constant$1/m_257510_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)Ljava/lang/Object; net/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Constant$1/tryTrigger (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)Ljava/lang/Object; +MD: net/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Constant$1/toString ()Ljava/lang/String; net/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Constant$1/toString ()Ljava/lang/String; +MD: net/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance/ ()V net/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance/ ()V +MD: net/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance/ap2 (Lcom/mojang/datafixers/kinds/App;Lcom/mojang/datafixers/kinds/App;Lcom/mojang/datafixers/kinds/App;)Lcom/mojang/datafixers/kinds/App; net/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance/ap2 (Lcom/mojang/datafixers/kinds/App;Lcom/mojang/datafixers/kinds/App;Lcom/mojang/datafixers/kinds/App;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance/ap2 (Lcom/mojang/datafixers/kinds/App;Lcom/mojang/datafixers/kinds/App;Lcom/mojang/datafixers/kinds/App;)Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder; net/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance/ap2 (Lcom/mojang/datafixers/kinds/App;Lcom/mojang/datafixers/kinds/App;Lcom/mojang/datafixers/kinds/App;)Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder; +MD: net/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance/ap3 (Lcom/mojang/datafixers/kinds/App;Lcom/mojang/datafixers/kinds/App;Lcom/mojang/datafixers/kinds/App;Lcom/mojang/datafixers/kinds/App;)Lcom/mojang/datafixers/kinds/App; net/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance/ap3 (Lcom/mojang/datafixers/kinds/App;Lcom/mojang/datafixers/kinds/App;Lcom/mojang/datafixers/kinds/App;Lcom/mojang/datafixers/kinds/App;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance/ap3 (Lcom/mojang/datafixers/kinds/App;Lcom/mojang/datafixers/kinds/App;Lcom/mojang/datafixers/kinds/App;Lcom/mojang/datafixers/kinds/App;)Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder; net/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance/ap3 (Lcom/mojang/datafixers/kinds/App;Lcom/mojang/datafixers/kinds/App;Lcom/mojang/datafixers/kinds/App;Lcom/mojang/datafixers/kinds/App;)Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder; +MD: net/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance/ap4 (Lcom/mojang/datafixers/kinds/App;Lcom/mojang/datafixers/kinds/App;Lcom/mojang/datafixers/kinds/App;Lcom/mojang/datafixers/kinds/App;Lcom/mojang/datafixers/kinds/App;)Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder; net/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance/ap4 (Lcom/mojang/datafixers/kinds/App;Lcom/mojang/datafixers/kinds/App;Lcom/mojang/datafixers/kinds/App;Lcom/mojang/datafixers/kinds/App;Lcom/mojang/datafixers/kinds/App;)Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder; +MD: net/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance/ap4 (Lcom/mojang/datafixers/kinds/App;Lcom/mojang/datafixers/kinds/App;Lcom/mojang/datafixers/kinds/App;Lcom/mojang/datafixers/kinds/App;Lcom/mojang/datafixers/kinds/App;)Lcom/mojang/datafixers/kinds/App; net/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance/ap4 (Lcom/mojang/datafixers/kinds/App;Lcom/mojang/datafixers/kinds/App;Lcom/mojang/datafixers/kinds/App;Lcom/mojang/datafixers/kinds/App;Lcom/mojang/datafixers/kinds/App;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance/lift1 (Lcom/mojang/datafixers/kinds/App;)Ljava/util/function/Function; net/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance/lift1 (Lcom/mojang/datafixers/kinds/App;)Ljava/util/function/Function; +MD: net/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance/m_257492_ (Lnet/minecraft/world/entity/ai/memory/MemoryModuleType;)Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder; net/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance/registered (Lnet/minecraft/world/entity/ai/memory/MemoryModuleType;)Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder; +MD: net/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance/m_257495_ (Lnet/minecraft/world/entity/ai/memory/MemoryModuleType;)Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder; net/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance/present (Lnet/minecraft/world/entity/ai/memory/MemoryModuleType;)Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder; +MD: net/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance/m_257642_ (Lcom/mojang/datafixers/kinds/App;Lcom/mojang/datafixers/kinds/App;)Lcom/mojang/datafixers/kinds/App; net/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance/lambda$lift1$0 (Lcom/mojang/datafixers/kinds/App;Lcom/mojang/datafixers/kinds/App;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance/m_257828_ (Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;)Ljava/util/Optional; net/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance/tryGet (Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;)Ljava/util/Optional; +MD: net/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance/m_257851_ (Ljava/util/function/Supplier;Ljava/lang/Object;)Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder; net/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance/point (Ljava/util/function/Supplier;Ljava/lang/Object;)Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder; +MD: net/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance/m_258051_ (Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;)Ljava/lang/Object; net/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance/get (Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;)Ljava/lang/Object; +MD: net/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance/m_258060_ (Lnet/minecraft/world/entity/ai/behavior/declarative/Trigger;)Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder; net/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance/ifTriggered (Lnet/minecraft/world/entity/ai/behavior/declarative/Trigger;)Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder; +MD: net/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance/m_258080_ (Lnet/minecraft/world/entity/ai/memory/MemoryModuleType;)Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder; net/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance/absent (Lnet/minecraft/world/entity/ai/memory/MemoryModuleType;)Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder; +MD: net/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance/map (Ljava/util/function/Function;Lcom/mojang/datafixers/kinds/App;)Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder; net/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance/map (Ljava/util/function/Function;Lcom/mojang/datafixers/kinds/App;)Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder; +MD: net/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance/map (Ljava/util/function/Function;Lcom/mojang/datafixers/kinds/App;)Lcom/mojang/datafixers/kinds/App; net/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance/map (Ljava/util/function/Function;Lcom/mojang/datafixers/kinds/App;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance/point (Ljava/lang/Object;)Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder; net/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance/point (Ljava/lang/Object;)Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder; +MD: net/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance/point (Ljava/lang/Object;)Lcom/mojang/datafixers/kinds/App; net/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance/point (Ljava/lang/Object;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance$1/ (Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$TriggerWithResult;Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$TriggerWithResult;)V net/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance$1/ (Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$TriggerWithResult;Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$TriggerWithResult;)V +MD: net/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance$1/m_257477_ ()Ljava/lang/String; net/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance$1/debugString ()Ljava/lang/String; +MD: net/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance$1/m_257510_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)Ljava/lang/Object; net/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance$1/tryTrigger (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)Ljava/lang/Object; +MD: net/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance$1/toString ()Ljava/lang/String; net/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance$1/toString ()Ljava/lang/String; +MD: net/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance$2/ (Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$TriggerWithResult;Ljava/util/function/Function;)V net/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance$2/ (Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$TriggerWithResult;Ljava/util/function/Function;)V +MD: net/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance$2/m_257477_ ()Ljava/lang/String; net/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance$2/debugString ()Ljava/lang/String; +MD: net/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance$2/m_257510_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)Ljava/lang/Object; net/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance$2/tryTrigger (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)Ljava/lang/Object; +MD: net/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance$2/toString ()Ljava/lang/String; net/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance$2/toString ()Ljava/lang/String; +MD: net/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance$3/ (Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$TriggerWithResult;Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$TriggerWithResult;Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$TriggerWithResult;)V net/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance$3/ (Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$TriggerWithResult;Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$TriggerWithResult;Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$TriggerWithResult;)V +MD: net/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance$3/m_257477_ ()Ljava/lang/String; net/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance$3/debugString ()Ljava/lang/String; +MD: net/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance$3/m_257510_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)Ljava/lang/Object; net/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance$3/tryTrigger (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)Ljava/lang/Object; +MD: net/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance$3/toString ()Ljava/lang/String; net/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance$3/toString ()Ljava/lang/String; +MD: net/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance$4/ (Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$TriggerWithResult;Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$TriggerWithResult;Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$TriggerWithResult;Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$TriggerWithResult;)V net/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance$4/ (Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$TriggerWithResult;Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$TriggerWithResult;Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$TriggerWithResult;Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$TriggerWithResult;)V +MD: net/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance$4/m_257477_ ()Ljava/lang/String; net/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance$4/debugString ()Ljava/lang/String; +MD: net/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance$4/m_257510_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)Ljava/lang/Object; net/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance$4/tryTrigger (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)Ljava/lang/Object; +MD: net/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance$4/toString ()Ljava/lang/String; net/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance$4/toString ()Ljava/lang/String; +MD: net/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance$5/ (Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$TriggerWithResult;Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$TriggerWithResult;Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$TriggerWithResult;Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$TriggerWithResult;Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$TriggerWithResult;)V net/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance$5/ (Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$TriggerWithResult;Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$TriggerWithResult;Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$TriggerWithResult;Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$TriggerWithResult;Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$TriggerWithResult;)V +MD: net/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance$5/m_257477_ ()Ljava/lang/String; net/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance$5/debugString ()Ljava/lang/String; +MD: net/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance$5/m_257510_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)Ljava/lang/Object; net/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance$5/tryTrigger (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)Ljava/lang/Object; +MD: net/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance$5/toString ()Ljava/lang/String; net/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance$5/toString ()Ljava/lang/String; +MD: net/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance$Mu/ ()V net/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance$Mu/ ()V +MD: net/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Mu/ ()V net/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Mu/ ()V +MD: net/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$PureMemory/ (Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryCondition;)V net/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$PureMemory/ (Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryCondition;)V +MD: net/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$PureMemory$1/ (Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryCondition;)V net/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$PureMemory$1/ (Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryCondition;)V +MD: net/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$PureMemory$1/m_257477_ ()Ljava/lang/String; net/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$PureMemory$1/debugString ()Ljava/lang/String; +MD: net/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$PureMemory$1/m_257510_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)Ljava/lang/Object; net/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$PureMemory$1/tryTrigger (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)Ljava/lang/Object; +MD: net/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$PureMemory$1/m_257510_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor; net/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$PureMemory$1/tryTrigger (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor; +MD: net/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$PureMemory$1/toString ()Ljava/lang/String; net/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$PureMemory$1/toString ()Ljava/lang/String; +MD: net/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$TriggerWithResult/m_257477_ ()Ljava/lang/String; net/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$TriggerWithResult/debugString ()Ljava/lang/String; +MD: net/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$TriggerWithResult/m_257510_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)Ljava/lang/Object; net/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$TriggerWithResult/tryTrigger (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)Ljava/lang/Object; +MD: net/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$TriggerWrapper/ (Lnet/minecraft/world/entity/ai/behavior/declarative/Trigger;)V net/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$TriggerWrapper/ (Lnet/minecraft/world/entity/ai/behavior/declarative/Trigger;)V +MD: net/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$TriggerWrapper$1/ (Lnet/minecraft/world/entity/ai/behavior/declarative/Trigger;)V net/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$TriggerWrapper$1/ (Lnet/minecraft/world/entity/ai/behavior/declarative/Trigger;)V +MD: net/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$TriggerWrapper$1/m_257477_ ()Ljava/lang/String; net/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$TriggerWrapper$1/debugString ()Ljava/lang/String; +MD: net/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$TriggerWrapper$1/m_257510_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)Ljava/lang/Object; net/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$TriggerWrapper$1/tryTrigger (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)Ljava/lang/Object; +MD: net/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$TriggerWrapper$1/m_257510_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)Lcom/mojang/datafixers/util/Unit; net/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$TriggerWrapper$1/tryTrigger (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)Lcom/mojang/datafixers/util/Unit; +MD: net/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor/ (Lnet/minecraft/world/entity/ai/Brain;Lnet/minecraft/world/entity/ai/memory/MemoryModuleType;Lcom/mojang/datafixers/kinds/App;)V net/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor/ (Lnet/minecraft/world/entity/ai/Brain;Lnet/minecraft/world/entity/ai/memory/MemoryModuleType;Lcom/mojang/datafixers/kinds/App;)V +MD: net/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor/m_257465_ (Ljava/lang/Object;J)V net/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor/setWithExpiry (Ljava/lang/Object;J)V +MD: net/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor/m_257512_ (Ljava/lang/Object;)V net/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor/set (Ljava/lang/Object;)V +MD: net/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor/m_257564_ (Ljava/util/Optional;)V net/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor/setOrErase (Ljava/util/Optional;)V +MD: net/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor/m_257971_ ()V net/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor/erase ()V +MD: net/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor/m_258035_ ()Lcom/mojang/datafixers/kinds/App; net/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor/value ()Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/world/entity/ai/behavior/declarative/MemoryCondition/m_257435_ ()Lnet/minecraft/world/entity/ai/memory/MemoryStatus; net/minecraft/world/entity/ai/behavior/declarative/MemoryCondition/condition ()Lnet/minecraft/world/entity/ai/memory/MemoryStatus; +MD: net/minecraft/world/entity/ai/behavior/declarative/MemoryCondition/m_257513_ (Lnet/minecraft/world/entity/ai/Brain;Ljava/util/Optional;)Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor; net/minecraft/world/entity/ai/behavior/declarative/MemoryCondition/createAccessor (Lnet/minecraft/world/entity/ai/Brain;Ljava/util/Optional;)Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor; +MD: net/minecraft/world/entity/ai/behavior/declarative/MemoryCondition/m_257588_ ()Lnet/minecraft/world/entity/ai/memory/MemoryModuleType; net/minecraft/world/entity/ai/behavior/declarative/MemoryCondition/memory ()Lnet/minecraft/world/entity/ai/memory/MemoryModuleType; +MD: net/minecraft/world/entity/ai/behavior/declarative/MemoryCondition$Absent/ (Lnet/minecraft/world/entity/ai/memory/MemoryModuleType;)V net/minecraft/world/entity/ai/behavior/declarative/MemoryCondition$Absent/ (Lnet/minecraft/world/entity/ai/memory/MemoryModuleType;)V +MD: net/minecraft/world/entity/ai/behavior/declarative/MemoryCondition$Absent/equals (Ljava/lang/Object;)Z net/minecraft/world/entity/ai/behavior/declarative/MemoryCondition$Absent/equals (Ljava/lang/Object;)Z +MD: net/minecraft/world/entity/ai/behavior/declarative/MemoryCondition$Absent/hashCode ()I net/minecraft/world/entity/ai/behavior/declarative/MemoryCondition$Absent/hashCode ()I +MD: net/minecraft/world/entity/ai/behavior/declarative/MemoryCondition$Absent/m_257435_ ()Lnet/minecraft/world/entity/ai/memory/MemoryStatus; net/minecraft/world/entity/ai/behavior/declarative/MemoryCondition$Absent/condition ()Lnet/minecraft/world/entity/ai/memory/MemoryStatus; +MD: net/minecraft/world/entity/ai/behavior/declarative/MemoryCondition$Absent/m_257513_ (Lnet/minecraft/world/entity/ai/Brain;Ljava/util/Optional;)Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor; net/minecraft/world/entity/ai/behavior/declarative/MemoryCondition$Absent/createAccessor (Lnet/minecraft/world/entity/ai/Brain;Ljava/util/Optional;)Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor; +MD: net/minecraft/world/entity/ai/behavior/declarative/MemoryCondition$Absent/m_257588_ ()Lnet/minecraft/world/entity/ai/memory/MemoryModuleType; net/minecraft/world/entity/ai/behavior/declarative/MemoryCondition$Absent/memory ()Lnet/minecraft/world/entity/ai/memory/MemoryModuleType; +MD: net/minecraft/world/entity/ai/behavior/declarative/MemoryCondition$Absent/toString ()Ljava/lang/String; net/minecraft/world/entity/ai/behavior/declarative/MemoryCondition$Absent/toString ()Ljava/lang/String; +MD: net/minecraft/world/entity/ai/behavior/declarative/MemoryCondition$Present/ (Lnet/minecraft/world/entity/ai/memory/MemoryModuleType;)V net/minecraft/world/entity/ai/behavior/declarative/MemoryCondition$Present/ (Lnet/minecraft/world/entity/ai/memory/MemoryModuleType;)V +MD: net/minecraft/world/entity/ai/behavior/declarative/MemoryCondition$Present/equals (Ljava/lang/Object;)Z net/minecraft/world/entity/ai/behavior/declarative/MemoryCondition$Present/equals (Ljava/lang/Object;)Z +MD: net/minecraft/world/entity/ai/behavior/declarative/MemoryCondition$Present/hashCode ()I net/minecraft/world/entity/ai/behavior/declarative/MemoryCondition$Present/hashCode ()I +MD: net/minecraft/world/entity/ai/behavior/declarative/MemoryCondition$Present/m_257435_ ()Lnet/minecraft/world/entity/ai/memory/MemoryStatus; net/minecraft/world/entity/ai/behavior/declarative/MemoryCondition$Present/condition ()Lnet/minecraft/world/entity/ai/memory/MemoryStatus; +MD: net/minecraft/world/entity/ai/behavior/declarative/MemoryCondition$Present/m_257513_ (Lnet/minecraft/world/entity/ai/Brain;Ljava/util/Optional;)Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor; net/minecraft/world/entity/ai/behavior/declarative/MemoryCondition$Present/createAccessor (Lnet/minecraft/world/entity/ai/Brain;Ljava/util/Optional;)Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor; +MD: net/minecraft/world/entity/ai/behavior/declarative/MemoryCondition$Present/m_257588_ ()Lnet/minecraft/world/entity/ai/memory/MemoryModuleType; net/minecraft/world/entity/ai/behavior/declarative/MemoryCondition$Present/memory ()Lnet/minecraft/world/entity/ai/memory/MemoryModuleType; +MD: net/minecraft/world/entity/ai/behavior/declarative/MemoryCondition$Present/toString ()Ljava/lang/String; net/minecraft/world/entity/ai/behavior/declarative/MemoryCondition$Present/toString ()Ljava/lang/String; +MD: net/minecraft/world/entity/ai/behavior/declarative/MemoryCondition$Registered/ (Lnet/minecraft/world/entity/ai/memory/MemoryModuleType;)V net/minecraft/world/entity/ai/behavior/declarative/MemoryCondition$Registered/ (Lnet/minecraft/world/entity/ai/memory/MemoryModuleType;)V +MD: net/minecraft/world/entity/ai/behavior/declarative/MemoryCondition$Registered/equals (Ljava/lang/Object;)Z net/minecraft/world/entity/ai/behavior/declarative/MemoryCondition$Registered/equals (Ljava/lang/Object;)Z +MD: net/minecraft/world/entity/ai/behavior/declarative/MemoryCondition$Registered/hashCode ()I net/minecraft/world/entity/ai/behavior/declarative/MemoryCondition$Registered/hashCode ()I +MD: net/minecraft/world/entity/ai/behavior/declarative/MemoryCondition$Registered/m_257435_ ()Lnet/minecraft/world/entity/ai/memory/MemoryStatus; net/minecraft/world/entity/ai/behavior/declarative/MemoryCondition$Registered/condition ()Lnet/minecraft/world/entity/ai/memory/MemoryStatus; +MD: net/minecraft/world/entity/ai/behavior/declarative/MemoryCondition$Registered/m_257513_ (Lnet/minecraft/world/entity/ai/Brain;Ljava/util/Optional;)Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor; net/minecraft/world/entity/ai/behavior/declarative/MemoryCondition$Registered/createAccessor (Lnet/minecraft/world/entity/ai/Brain;Ljava/util/Optional;)Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor; +MD: net/minecraft/world/entity/ai/behavior/declarative/MemoryCondition$Registered/m_257588_ ()Lnet/minecraft/world/entity/ai/memory/MemoryModuleType; net/minecraft/world/entity/ai/behavior/declarative/MemoryCondition$Registered/memory ()Lnet/minecraft/world/entity/ai/memory/MemoryModuleType; +MD: net/minecraft/world/entity/ai/behavior/declarative/MemoryCondition$Registered/toString ()Ljava/lang/String; net/minecraft/world/entity/ai/behavior/declarative/MemoryCondition$Registered/toString ()Ljava/lang/String; +MD: net/minecraft/world/entity/ai/behavior/declarative/Trigger/m_257808_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)Z net/minecraft/world/entity/ai/behavior/declarative/Trigger/trigger (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)Z +MD: net/minecraft/world/entity/ai/behavior/warden/Digging/ (I)V net/minecraft/world/entity/ai/behavior/warden/Digging/ (I)V +MD: net/minecraft/world/entity/ai/behavior/warden/Digging/m_6114_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/monster/warden/Warden;)Z net/minecraft/world/entity/ai/behavior/warden/Digging/checkExtraStartConditions (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/monster/warden/Warden;)Z +MD: net/minecraft/world/entity/ai/behavior/warden/Digging/m_6114_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;)Z net/minecraft/world/entity/ai/behavior/warden/Digging/checkExtraStartConditions (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;)Z +MD: net/minecraft/world/entity/ai/behavior/warden/Digging/m_6732_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/monster/warden/Warden;J)V net/minecraft/world/entity/ai/behavior/warden/Digging/stop (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/monster/warden/Warden;J)V +MD: net/minecraft/world/entity/ai/behavior/warden/Digging/m_6732_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)V net/minecraft/world/entity/ai/behavior/warden/Digging/stop (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)V +MD: net/minecraft/world/entity/ai/behavior/warden/Digging/m_6735_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/monster/warden/Warden;J)V net/minecraft/world/entity/ai/behavior/warden/Digging/start (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/monster/warden/Warden;J)V +MD: net/minecraft/world/entity/ai/behavior/warden/Digging/m_6735_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)V net/minecraft/world/entity/ai/behavior/warden/Digging/start (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)V +MD: net/minecraft/world/entity/ai/behavior/warden/Digging/m_6737_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)Z net/minecraft/world/entity/ai/behavior/warden/Digging/canStillUse (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)Z +MD: net/minecraft/world/entity/ai/behavior/warden/Digging/m_6737_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/monster/warden/Warden;J)Z net/minecraft/world/entity/ai/behavior/warden/Digging/canStillUse (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/monster/warden/Warden;J)Z +MD: net/minecraft/world/entity/ai/behavior/warden/Emerging/ (I)V net/minecraft/world/entity/ai/behavior/warden/Emerging/ (I)V +MD: net/minecraft/world/entity/ai/behavior/warden/Emerging/m_6732_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/monster/warden/Warden;J)V net/minecraft/world/entity/ai/behavior/warden/Emerging/stop (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/monster/warden/Warden;J)V +MD: net/minecraft/world/entity/ai/behavior/warden/Emerging/m_6732_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)V net/minecraft/world/entity/ai/behavior/warden/Emerging/stop (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)V +MD: net/minecraft/world/entity/ai/behavior/warden/Emerging/m_6735_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/monster/warden/Warden;J)V net/minecraft/world/entity/ai/behavior/warden/Emerging/start (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/monster/warden/Warden;J)V +MD: net/minecraft/world/entity/ai/behavior/warden/Emerging/m_6735_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)V net/minecraft/world/entity/ai/behavior/warden/Emerging/start (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)V +MD: net/minecraft/world/entity/ai/behavior/warden/Emerging/m_6737_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)Z net/minecraft/world/entity/ai/behavior/warden/Emerging/canStillUse (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)Z +MD: net/minecraft/world/entity/ai/behavior/warden/Emerging/m_6737_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/monster/warden/Warden;J)Z net/minecraft/world/entity/ai/behavior/warden/Emerging/canStillUse (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/monster/warden/Warden;J)Z +MD: net/minecraft/world/entity/ai/behavior/warden/ForceUnmount/ ()V net/minecraft/world/entity/ai/behavior/warden/ForceUnmount/ ()V +MD: net/minecraft/world/entity/ai/behavior/warden/ForceUnmount/m_6114_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;)Z net/minecraft/world/entity/ai/behavior/warden/ForceUnmount/checkExtraStartConditions (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;)Z +MD: net/minecraft/world/entity/ai/behavior/warden/ForceUnmount/m_6735_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)V net/minecraft/world/entity/ai/behavior/warden/ForceUnmount/start (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)V +MD: net/minecraft/world/entity/ai/behavior/warden/Roar/ ()V net/minecraft/world/entity/ai/behavior/warden/Roar/ ()V +MD: net/minecraft/world/entity/ai/behavior/warden/Roar/m_6725_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)V net/minecraft/world/entity/ai/behavior/warden/Roar/tick (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)V +MD: net/minecraft/world/entity/ai/behavior/warden/Roar/m_6725_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/monster/warden/Warden;J)V net/minecraft/world/entity/ai/behavior/warden/Roar/tick (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/monster/warden/Warden;J)V +MD: net/minecraft/world/entity/ai/behavior/warden/Roar/m_6732_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/monster/warden/Warden;J)V net/minecraft/world/entity/ai/behavior/warden/Roar/stop (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/monster/warden/Warden;J)V +MD: net/minecraft/world/entity/ai/behavior/warden/Roar/m_6732_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)V net/minecraft/world/entity/ai/behavior/warden/Roar/stop (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)V +MD: net/minecraft/world/entity/ai/behavior/warden/Roar/m_6735_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/monster/warden/Warden;J)V net/minecraft/world/entity/ai/behavior/warden/Roar/start (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/monster/warden/Warden;J)V +MD: net/minecraft/world/entity/ai/behavior/warden/Roar/m_6735_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)V net/minecraft/world/entity/ai/behavior/warden/Roar/start (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)V +MD: net/minecraft/world/entity/ai/behavior/warden/Roar/m_6737_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)Z net/minecraft/world/entity/ai/behavior/warden/Roar/canStillUse (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)Z +MD: net/minecraft/world/entity/ai/behavior/warden/Roar/m_6737_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/monster/warden/Warden;J)Z net/minecraft/world/entity/ai/behavior/warden/Roar/canStillUse (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/monster/warden/Warden;J)Z +MD: net/minecraft/world/entity/ai/behavior/warden/SetRoarTarget/ ()V net/minecraft/world/entity/ai/behavior/warden/SetRoarTarget/ ()V +MD: net/minecraft/world/entity/ai/behavior/warden/SetRoarTarget/m_257304_ (Ljava/util/function/Function;Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/world/entity/ai/behavior/warden/SetRoarTarget/lambda$create$2 (Ljava/util/function/Function;Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/world/entity/ai/behavior/warden/SetRoarTarget/m_257305_ (Ljava/util/function/Function;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/monster/warden/Warden;J)Z net/minecraft/world/entity/ai/behavior/warden/SetRoarTarget/lambda$create$0 (Ljava/util/function/Function;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/monster/warden/Warden;J)Z +MD: net/minecraft/world/entity/ai/behavior/warden/SetRoarTarget/m_257306_ (Ljava/util/function/Function;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;)Lnet/minecraft/world/entity/ai/behavior/declarative/Trigger; net/minecraft/world/entity/ai/behavior/warden/SetRoarTarget/lambda$create$1 (Ljava/util/function/Function;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;)Lnet/minecraft/world/entity/ai/behavior/declarative/Trigger; +MD: net/minecraft/world/entity/ai/behavior/warden/SetRoarTarget/m_257595_ (Ljava/util/function/Function;)Lnet/minecraft/world/entity/ai/behavior/BehaviorControl; net/minecraft/world/entity/ai/behavior/warden/SetRoarTarget/create (Ljava/util/function/Function;)Lnet/minecraft/world/entity/ai/behavior/BehaviorControl; +MD: net/minecraft/world/entity/ai/behavior/warden/SetWardenLookTarget/ ()V net/minecraft/world/entity/ai/behavior/warden/SetWardenLookTarget/ ()V +MD: net/minecraft/world/entity/ai/behavior/warden/SetWardenLookTarget/m_257307_ (Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)Z net/minecraft/world/entity/ai/behavior/warden/SetWardenLookTarget/lambda$create$1 (Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)Z +MD: net/minecraft/world/entity/ai/behavior/warden/SetWardenLookTarget/m_257308_ (Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;)Ljava/util/Optional; net/minecraft/world/entity/ai/behavior/warden/SetWardenLookTarget/lambda$create$0 (Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;)Ljava/util/Optional; +MD: net/minecraft/world/entity/ai/behavior/warden/SetWardenLookTarget/m_257309_ (Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;)Lnet/minecraft/world/entity/ai/behavior/declarative/Trigger; net/minecraft/world/entity/ai/behavior/warden/SetWardenLookTarget/lambda$create$2 (Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;)Lnet/minecraft/world/entity/ai/behavior/declarative/Trigger; +MD: net/minecraft/world/entity/ai/behavior/warden/SetWardenLookTarget/m_257310_ (Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/world/entity/ai/behavior/warden/SetWardenLookTarget/lambda$create$3 (Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/world/entity/ai/behavior/warden/SetWardenLookTarget/m_257897_ ()Lnet/minecraft/world/entity/ai/behavior/BehaviorControl; net/minecraft/world/entity/ai/behavior/warden/SetWardenLookTarget/create ()Lnet/minecraft/world/entity/ai/behavior/BehaviorControl; +MD: net/minecraft/world/entity/ai/behavior/warden/Sniffing/ (I)V net/minecraft/world/entity/ai/behavior/warden/Sniffing/ (I)V +MD: net/minecraft/world/entity/ai/behavior/warden/Sniffing/m_289113_ (Lnet/minecraft/world/entity/monster/warden/Warden;Lnet/minecraft/world/entity/LivingEntity;)V net/minecraft/world/entity/ai/behavior/warden/Sniffing/lambda$stop$0 (Lnet/minecraft/world/entity/monster/warden/Warden;Lnet/minecraft/world/entity/LivingEntity;)V +MD: net/minecraft/world/entity/ai/behavior/warden/Sniffing/m_6732_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/monster/warden/Warden;J)V net/minecraft/world/entity/ai/behavior/warden/Sniffing/stop (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/monster/warden/Warden;J)V +MD: net/minecraft/world/entity/ai/behavior/warden/Sniffing/m_6732_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)V net/minecraft/world/entity/ai/behavior/warden/Sniffing/stop (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)V +MD: net/minecraft/world/entity/ai/behavior/warden/Sniffing/m_6735_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/monster/warden/Warden;J)V net/minecraft/world/entity/ai/behavior/warden/Sniffing/start (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/monster/warden/Warden;J)V +MD: net/minecraft/world/entity/ai/behavior/warden/Sniffing/m_6735_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)V net/minecraft/world/entity/ai/behavior/warden/Sniffing/start (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)V +MD: net/minecraft/world/entity/ai/behavior/warden/Sniffing/m_6737_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)Z net/minecraft/world/entity/ai/behavior/warden/Sniffing/canStillUse (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)Z +MD: net/minecraft/world/entity/ai/behavior/warden/Sniffing/m_6737_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/monster/warden/Warden;J)Z net/minecraft/world/entity/ai/behavior/warden/Sniffing/canStillUse (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/monster/warden/Warden;J)Z +MD: net/minecraft/world/entity/ai/behavior/warden/SonicBoom/ ()V net/minecraft/world/entity/ai/behavior/warden/SonicBoom/ ()V +MD: net/minecraft/world/entity/ai/behavior/warden/SonicBoom/ ()V net/minecraft/world/entity/ai/behavior/warden/SonicBoom/ ()V +MD: net/minecraft/world/entity/ai/behavior/warden/SonicBoom/m_217698_ (Lnet/minecraft/world/entity/LivingEntity;I)V net/minecraft/world/entity/ai/behavior/warden/SonicBoom/setCooldown (Lnet/minecraft/world/entity/LivingEntity;I)V +MD: net/minecraft/world/entity/ai/behavior/warden/SonicBoom/m_217701_ (Lnet/minecraft/world/entity/monster/warden/Warden;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;)V net/minecraft/world/entity/ai/behavior/warden/SonicBoom/lambda$tick$2 (Lnet/minecraft/world/entity/monster/warden/Warden;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;)V +MD: net/minecraft/world/entity/ai/behavior/warden/SonicBoom/m_217705_ (Lnet/minecraft/world/entity/monster/warden/Warden;Lnet/minecraft/world/entity/LivingEntity;)Z net/minecraft/world/entity/ai/behavior/warden/SonicBoom/lambda$tick$1 (Lnet/minecraft/world/entity/monster/warden/Warden;Lnet/minecraft/world/entity/LivingEntity;)Z +MD: net/minecraft/world/entity/ai/behavior/warden/SonicBoom/m_289114_ (Lnet/minecraft/world/entity/monster/warden/Warden;Lnet/minecraft/world/entity/LivingEntity;)V net/minecraft/world/entity/ai/behavior/warden/SonicBoom/lambda$tick$0 (Lnet/minecraft/world/entity/monster/warden/Warden;Lnet/minecraft/world/entity/LivingEntity;)V +MD: net/minecraft/world/entity/ai/behavior/warden/SonicBoom/m_6114_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;)Z net/minecraft/world/entity/ai/behavior/warden/SonicBoom/checkExtraStartConditions (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;)Z +MD: net/minecraft/world/entity/ai/behavior/warden/SonicBoom/m_6114_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/monster/warden/Warden;)Z net/minecraft/world/entity/ai/behavior/warden/SonicBoom/checkExtraStartConditions (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/monster/warden/Warden;)Z +MD: net/minecraft/world/entity/ai/behavior/warden/SonicBoom/m_6725_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)V net/minecraft/world/entity/ai/behavior/warden/SonicBoom/tick (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)V +MD: net/minecraft/world/entity/ai/behavior/warden/SonicBoom/m_6725_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/monster/warden/Warden;J)V net/minecraft/world/entity/ai/behavior/warden/SonicBoom/tick (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/monster/warden/Warden;J)V +MD: net/minecraft/world/entity/ai/behavior/warden/SonicBoom/m_6732_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/monster/warden/Warden;J)V net/minecraft/world/entity/ai/behavior/warden/SonicBoom/stop (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/monster/warden/Warden;J)V +MD: net/minecraft/world/entity/ai/behavior/warden/SonicBoom/m_6732_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)V net/minecraft/world/entity/ai/behavior/warden/SonicBoom/stop (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)V +MD: net/minecraft/world/entity/ai/behavior/warden/SonicBoom/m_6735_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/monster/warden/Warden;J)V net/minecraft/world/entity/ai/behavior/warden/SonicBoom/start (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/monster/warden/Warden;J)V +MD: net/minecraft/world/entity/ai/behavior/warden/SonicBoom/m_6735_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)V net/minecraft/world/entity/ai/behavior/warden/SonicBoom/start (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)V +MD: net/minecraft/world/entity/ai/behavior/warden/SonicBoom/m_6737_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)Z net/minecraft/world/entity/ai/behavior/warden/SonicBoom/canStillUse (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)Z +MD: net/minecraft/world/entity/ai/behavior/warden/SonicBoom/m_6737_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/monster/warden/Warden;J)Z net/minecraft/world/entity/ai/behavior/warden/SonicBoom/canStillUse (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/monster/warden/Warden;J)Z +MD: net/minecraft/world/entity/ai/behavior/warden/TryToSniff/ ()V net/minecraft/world/entity/ai/behavior/warden/TryToSniff/ ()V +MD: net/minecraft/world/entity/ai/behavior/warden/TryToSniff/ ()V net/minecraft/world/entity/ai/behavior/warden/TryToSniff/ ()V +MD: net/minecraft/world/entity/ai/behavior/warden/TryToSniff/m_257499_ (Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/world/entity/ai/behavior/warden/TryToSniff/lambda$create$2 (Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/world/entity/ai/behavior/warden/TryToSniff/m_257573_ (Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;)Lnet/minecraft/world/entity/ai/behavior/declarative/Trigger; net/minecraft/world/entity/ai/behavior/warden/TryToSniff/lambda$create$1 (Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;)Lnet/minecraft/world/entity/ai/behavior/declarative/Trigger; +MD: net/minecraft/world/entity/ai/behavior/warden/TryToSniff/m_257812_ ()Lnet/minecraft/world/entity/ai/behavior/BehaviorControl; net/minecraft/world/entity/ai/behavior/warden/TryToSniff/create ()Lnet/minecraft/world/entity/ai/behavior/BehaviorControl; +MD: net/minecraft/world/entity/ai/behavior/warden/TryToSniff/m_289115_ (Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)Z net/minecraft/world/entity/ai/behavior/warden/TryToSniff/lambda$create$0 (Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)Z +MD: net/minecraft/world/entity/ai/control/BodyRotationControl/ (Lnet/minecraft/world/entity/Mob;)V net/minecraft/world/entity/ai/control/BodyRotationControl/ (Lnet/minecraft/world/entity/Mob;)V +MD: net/minecraft/world/entity/ai/control/BodyRotationControl/m_24880_ ()V net/minecraft/world/entity/ai/control/BodyRotationControl/rotateBodyIfNecessary ()V +MD: net/minecraft/world/entity/ai/control/BodyRotationControl/m_24881_ ()V net/minecraft/world/entity/ai/control/BodyRotationControl/rotateHeadIfNecessary ()V +MD: net/minecraft/world/entity/ai/control/BodyRotationControl/m_24882_ ()V net/minecraft/world/entity/ai/control/BodyRotationControl/rotateHeadTowardsFront ()V +MD: net/minecraft/world/entity/ai/control/BodyRotationControl/m_24883_ ()Z net/minecraft/world/entity/ai/control/BodyRotationControl/notCarryingMobPassengers ()Z +MD: net/minecraft/world/entity/ai/control/BodyRotationControl/m_24884_ ()Z net/minecraft/world/entity/ai/control/BodyRotationControl/isMoving ()Z +MD: net/minecraft/world/entity/ai/control/BodyRotationControl/m_8121_ ()V net/minecraft/world/entity/ai/control/BodyRotationControl/clientTick ()V +MD: net/minecraft/world/entity/ai/control/FlyingMoveControl/ (Lnet/minecraft/world/entity/Mob;IZ)V net/minecraft/world/entity/ai/control/FlyingMoveControl/ (Lnet/minecraft/world/entity/Mob;IZ)V +MD: net/minecraft/world/entity/ai/control/FlyingMoveControl/m_8126_ ()V net/minecraft/world/entity/ai/control/FlyingMoveControl/tick ()V +MD: net/minecraft/world/entity/ai/control/JumpControl/ (Lnet/minecraft/world/entity/Mob;)V net/minecraft/world/entity/ai/control/JumpControl/ (Lnet/minecraft/world/entity/Mob;)V +MD: net/minecraft/world/entity/ai/control/JumpControl/m_24901_ ()V net/minecraft/world/entity/ai/control/JumpControl/jump ()V +MD: net/minecraft/world/entity/ai/control/JumpControl/m_8124_ ()V net/minecraft/world/entity/ai/control/JumpControl/tick ()V +MD: net/minecraft/world/entity/ai/control/LookControl/ (Lnet/minecraft/world/entity/Mob;)V net/minecraft/world/entity/ai/control/LookControl/ (Lnet/minecraft/world/entity/Mob;)V +MD: net/minecraft/world/entity/ai/control/LookControl/m_142586_ ()V net/minecraft/world/entity/ai/control/LookControl/clampHeadRotationToBody ()V +MD: net/minecraft/world/entity/ai/control/LookControl/m_148051_ (Lnet/minecraft/world/entity/Entity;)V net/minecraft/world/entity/ai/control/LookControl/setLookAt (Lnet/minecraft/world/entity/Entity;)V +MD: net/minecraft/world/entity/ai/control/LookControl/m_180896_ ()Ljava/util/Optional; net/minecraft/world/entity/ai/control/LookControl/getYRotD ()Ljava/util/Optional; +MD: net/minecraft/world/entity/ai/control/LookControl/m_180897_ ()Ljava/util/Optional; net/minecraft/world/entity/ai/control/LookControl/getXRotD ()Ljava/util/Optional; +MD: net/minecraft/world/entity/ai/control/LookControl/m_186069_ ()Z net/minecraft/world/entity/ai/control/LookControl/isLookingAtTarget ()Z +MD: net/minecraft/world/entity/ai/control/LookControl/m_24946_ (DDD)V net/minecraft/world/entity/ai/control/LookControl/setLookAt (DDD)V +MD: net/minecraft/world/entity/ai/control/LookControl/m_24950_ (DDDFF)V net/minecraft/world/entity/ai/control/LookControl/setLookAt (DDDFF)V +MD: net/minecraft/world/entity/ai/control/LookControl/m_24956_ (FFF)F net/minecraft/world/entity/ai/control/LookControl/rotateTowards (FFF)F +MD: net/minecraft/world/entity/ai/control/LookControl/m_24960_ (Lnet/minecraft/world/entity/Entity;FF)V net/minecraft/world/entity/ai/control/LookControl/setLookAt (Lnet/minecraft/world/entity/Entity;FF)V +MD: net/minecraft/world/entity/ai/control/LookControl/m_24964_ (Lnet/minecraft/world/phys/Vec3;)V net/minecraft/world/entity/ai/control/LookControl/setLookAt (Lnet/minecraft/world/phys/Vec3;)V +MD: net/minecraft/world/entity/ai/control/LookControl/m_24966_ (Lnet/minecraft/world/entity/Entity;)D net/minecraft/world/entity/ai/control/LookControl/getWantedY (Lnet/minecraft/world/entity/Entity;)D +MD: net/minecraft/world/entity/ai/control/LookControl/m_24969_ ()D net/minecraft/world/entity/ai/control/LookControl/getWantedX ()D +MD: net/minecraft/world/entity/ai/control/LookControl/m_24970_ ()D net/minecraft/world/entity/ai/control/LookControl/getWantedY ()D +MD: net/minecraft/world/entity/ai/control/LookControl/m_24971_ ()D net/minecraft/world/entity/ai/control/LookControl/getWantedZ ()D +MD: net/minecraft/world/entity/ai/control/LookControl/m_287074_ (Ljava/lang/Float;)V net/minecraft/world/entity/ai/control/LookControl/lambda$tick$0 (Ljava/lang/Float;)V +MD: net/minecraft/world/entity/ai/control/LookControl/m_289116_ (Ljava/lang/Float;)V net/minecraft/world/entity/ai/control/LookControl/lambda$tick$1 (Ljava/lang/Float;)V +MD: net/minecraft/world/entity/ai/control/LookControl/m_8106_ ()Z net/minecraft/world/entity/ai/control/LookControl/resetXRotOnTick ()Z +MD: net/minecraft/world/entity/ai/control/LookControl/m_8128_ ()V net/minecraft/world/entity/ai/control/LookControl/tick ()V +MD: net/minecraft/world/entity/ai/control/MoveControl/ (Lnet/minecraft/world/entity/Mob;)V net/minecraft/world/entity/ai/control/MoveControl/ (Lnet/minecraft/world/entity/Mob;)V +MD: net/minecraft/world/entity/ai/control/MoveControl/m_24988_ (FF)V net/minecraft/world/entity/ai/control/MoveControl/strafe (FF)V +MD: net/minecraft/world/entity/ai/control/MoveControl/m_24991_ (FFF)F net/minecraft/world/entity/ai/control/MoveControl/rotlerp (FFF)F +MD: net/minecraft/world/entity/ai/control/MoveControl/m_24995_ ()Z net/minecraft/world/entity/ai/control/MoveControl/hasWanted ()Z +MD: net/minecraft/world/entity/ai/control/MoveControl/m_24996_ (FF)Z net/minecraft/world/entity/ai/control/MoveControl/isWalkable (FF)Z +MD: net/minecraft/world/entity/ai/control/MoveControl/m_24999_ ()D net/minecraft/world/entity/ai/control/MoveControl/getSpeedModifier ()D +MD: net/minecraft/world/entity/ai/control/MoveControl/m_25000_ ()D net/minecraft/world/entity/ai/control/MoveControl/getWantedX ()D +MD: net/minecraft/world/entity/ai/control/MoveControl/m_25001_ ()D net/minecraft/world/entity/ai/control/MoveControl/getWantedY ()D +MD: net/minecraft/world/entity/ai/control/MoveControl/m_25002_ ()D net/minecraft/world/entity/ai/control/MoveControl/getWantedZ ()D +MD: net/minecraft/world/entity/ai/control/MoveControl/m_6849_ (DDDD)V net/minecraft/world/entity/ai/control/MoveControl/setWantedPosition (DDDD)V +MD: net/minecraft/world/entity/ai/control/MoveControl/m_8126_ ()V net/minecraft/world/entity/ai/control/MoveControl/tick ()V +MD: net/minecraft/world/entity/ai/control/MoveControl$Operation/ ()V net/minecraft/world/entity/ai/control/MoveControl$Operation/ ()V +MD: net/minecraft/world/entity/ai/control/MoveControl$Operation/ (Ljava/lang/String;I)V net/minecraft/world/entity/ai/control/MoveControl$Operation/ (Ljava/lang/String;I)V +MD: net/minecraft/world/entity/ai/control/MoveControl$Operation/m_148056_ ()[Lnet/minecraft/world/entity/ai/control/MoveControl$Operation; net/minecraft/world/entity/ai/control/MoveControl$Operation/$values ()[Lnet/minecraft/world/entity/ai/control/MoveControl$Operation; +MD: net/minecraft/world/entity/ai/control/MoveControl$Operation/valueOf (Ljava/lang/String;)Lnet/minecraft/world/entity/ai/control/MoveControl$Operation; net/minecraft/world/entity/ai/control/MoveControl$Operation/valueOf (Ljava/lang/String;)Lnet/minecraft/world/entity/ai/control/MoveControl$Operation; +MD: net/minecraft/world/entity/ai/control/MoveControl$Operation/values ()[Lnet/minecraft/world/entity/ai/control/MoveControl$Operation; net/minecraft/world/entity/ai/control/MoveControl$Operation/values ()[Lnet/minecraft/world/entity/ai/control/MoveControl$Operation; +MD: net/minecraft/world/entity/ai/control/SmoothSwimmingLookControl/ (Lnet/minecraft/world/entity/Mob;I)V net/minecraft/world/entity/ai/control/SmoothSwimmingLookControl/ (Lnet/minecraft/world/entity/Mob;I)V +MD: net/minecraft/world/entity/ai/control/SmoothSwimmingLookControl/m_287076_ (Ljava/lang/Float;)V net/minecraft/world/entity/ai/control/SmoothSwimmingLookControl/lambda$tick$0 (Ljava/lang/Float;)V +MD: net/minecraft/world/entity/ai/control/SmoothSwimmingLookControl/m_289117_ (Ljava/lang/Float;)V net/minecraft/world/entity/ai/control/SmoothSwimmingLookControl/lambda$tick$1 (Ljava/lang/Float;)V +MD: net/minecraft/world/entity/ai/control/SmoothSwimmingLookControl/m_8128_ ()V net/minecraft/world/entity/ai/control/SmoothSwimmingLookControl/tick ()V +MD: net/minecraft/world/entity/ai/control/SmoothSwimmingMoveControl/ (Lnet/minecraft/world/entity/Mob;IIFFZ)V net/minecraft/world/entity/ai/control/SmoothSwimmingMoveControl/ (Lnet/minecraft/world/entity/Mob;IIFFZ)V +MD: net/minecraft/world/entity/ai/control/SmoothSwimmingMoveControl/m_246609_ (F)F net/minecraft/world/entity/ai/control/SmoothSwimmingMoveControl/getTurningSpeedFactor (F)F +MD: net/minecraft/world/entity/ai/control/SmoothSwimmingMoveControl/m_8126_ ()V net/minecraft/world/entity/ai/control/SmoothSwimmingMoveControl/tick ()V +MD: net/minecraft/world/entity/ai/goal/AvoidEntityGoal/ (Lnet/minecraft/world/entity/PathfinderMob;Ljava/lang/Class;Ljava/util/function/Predicate;FDDLjava/util/function/Predicate;)V net/minecraft/world/entity/ai/goal/AvoidEntityGoal/ (Lnet/minecraft/world/entity/PathfinderMob;Ljava/lang/Class;Ljava/util/function/Predicate;FDDLjava/util/function/Predicate;)V +MD: net/minecraft/world/entity/ai/goal/AvoidEntityGoal/ (Lnet/minecraft/world/entity/PathfinderMob;Ljava/lang/Class;FDDLjava/util/function/Predicate;)V net/minecraft/world/entity/ai/goal/AvoidEntityGoal/ (Lnet/minecraft/world/entity/PathfinderMob;Ljava/lang/Class;FDDLjava/util/function/Predicate;)V +MD: net/minecraft/world/entity/ai/goal/AvoidEntityGoal/ (Lnet/minecraft/world/entity/PathfinderMob;Ljava/lang/Class;FDD)V net/minecraft/world/entity/ai/goal/AvoidEntityGoal/ (Lnet/minecraft/world/entity/PathfinderMob;Ljava/lang/Class;FDD)V +MD: net/minecraft/world/entity/ai/goal/AvoidEntityGoal/m_148077_ (Lnet/minecraft/world/entity/LivingEntity;)Z net/minecraft/world/entity/ai/goal/AvoidEntityGoal/lambda$canUse$2 (Lnet/minecraft/world/entity/LivingEntity;)Z +MD: net/minecraft/world/entity/ai/goal/AvoidEntityGoal/m_25048_ (Lnet/minecraft/world/entity/LivingEntity;)Z net/minecraft/world/entity/ai/goal/AvoidEntityGoal/lambda$new$1 (Lnet/minecraft/world/entity/LivingEntity;)Z +MD: net/minecraft/world/entity/ai/goal/AvoidEntityGoal/m_25051_ (Lnet/minecraft/world/entity/LivingEntity;)Z net/minecraft/world/entity/ai/goal/AvoidEntityGoal/lambda$new$0 (Lnet/minecraft/world/entity/LivingEntity;)Z +MD: net/minecraft/world/entity/ai/goal/AvoidEntityGoal/m_8036_ ()Z net/minecraft/world/entity/ai/goal/AvoidEntityGoal/canUse ()Z +MD: net/minecraft/world/entity/ai/goal/AvoidEntityGoal/m_8037_ ()V net/minecraft/world/entity/ai/goal/AvoidEntityGoal/tick ()V +MD: net/minecraft/world/entity/ai/goal/AvoidEntityGoal/m_8041_ ()V net/minecraft/world/entity/ai/goal/AvoidEntityGoal/stop ()V +MD: net/minecraft/world/entity/ai/goal/AvoidEntityGoal/m_8045_ ()Z net/minecraft/world/entity/ai/goal/AvoidEntityGoal/canContinueToUse ()Z +MD: net/minecraft/world/entity/ai/goal/AvoidEntityGoal/m_8056_ ()V net/minecraft/world/entity/ai/goal/AvoidEntityGoal/start ()V +MD: net/minecraft/world/entity/ai/goal/BegGoal/ (Lnet/minecraft/world/entity/animal/Wolf;F)V net/minecraft/world/entity/ai/goal/BegGoal/ (Lnet/minecraft/world/entity/animal/Wolf;F)V +MD: net/minecraft/world/entity/ai/goal/BegGoal/m_25066_ (Lnet/minecraft/world/entity/player/Player;)Z net/minecraft/world/entity/ai/goal/BegGoal/playerHoldingInteresting (Lnet/minecraft/world/entity/player/Player;)Z +MD: net/minecraft/world/entity/ai/goal/BegGoal/m_8036_ ()Z net/minecraft/world/entity/ai/goal/BegGoal/canUse ()Z +MD: net/minecraft/world/entity/ai/goal/BegGoal/m_8037_ ()V net/minecraft/world/entity/ai/goal/BegGoal/tick ()V +MD: net/minecraft/world/entity/ai/goal/BegGoal/m_8041_ ()V net/minecraft/world/entity/ai/goal/BegGoal/stop ()V +MD: net/minecraft/world/entity/ai/goal/BegGoal/m_8045_ ()Z net/minecraft/world/entity/ai/goal/BegGoal/canContinueToUse ()Z +MD: net/minecraft/world/entity/ai/goal/BegGoal/m_8056_ ()V net/minecraft/world/entity/ai/goal/BegGoal/start ()V +MD: net/minecraft/world/entity/ai/goal/BoatGoals/ ()V net/minecraft/world/entity/ai/goal/BoatGoals/ ()V +MD: net/minecraft/world/entity/ai/goal/BoatGoals/ (Ljava/lang/String;I)V net/minecraft/world/entity/ai/goal/BoatGoals/ (Ljava/lang/String;I)V +MD: net/minecraft/world/entity/ai/goal/BoatGoals/m_148079_ ()[Lnet/minecraft/world/entity/ai/goal/BoatGoals; net/minecraft/world/entity/ai/goal/BoatGoals/$values ()[Lnet/minecraft/world/entity/ai/goal/BoatGoals; +MD: net/minecraft/world/entity/ai/goal/BoatGoals/valueOf (Ljava/lang/String;)Lnet/minecraft/world/entity/ai/goal/BoatGoals; net/minecraft/world/entity/ai/goal/BoatGoals/valueOf (Ljava/lang/String;)Lnet/minecraft/world/entity/ai/goal/BoatGoals; +MD: net/minecraft/world/entity/ai/goal/BoatGoals/values ()[Lnet/minecraft/world/entity/ai/goal/BoatGoals; net/minecraft/world/entity/ai/goal/BoatGoals/values ()[Lnet/minecraft/world/entity/ai/goal/BoatGoals; +MD: net/minecraft/world/entity/ai/goal/BreakDoorGoal/ (Lnet/minecraft/world/entity/Mob;ILjava/util/function/Predicate;)V net/minecraft/world/entity/ai/goal/BreakDoorGoal/ (Lnet/minecraft/world/entity/Mob;ILjava/util/function/Predicate;)V +MD: net/minecraft/world/entity/ai/goal/BreakDoorGoal/ (Lnet/minecraft/world/entity/Mob;Ljava/util/function/Predicate;)V net/minecraft/world/entity/ai/goal/BreakDoorGoal/ (Lnet/minecraft/world/entity/Mob;Ljava/util/function/Predicate;)V +MD: net/minecraft/world/entity/ai/goal/BreakDoorGoal/m_25094_ (Lnet/minecraft/world/Difficulty;)Z net/minecraft/world/entity/ai/goal/BreakDoorGoal/isValidDifficulty (Lnet/minecraft/world/Difficulty;)Z +MD: net/minecraft/world/entity/ai/goal/BreakDoorGoal/m_25100_ ()I net/minecraft/world/entity/ai/goal/BreakDoorGoal/getDoorBreakTime ()I +MD: net/minecraft/world/entity/ai/goal/BreakDoorGoal/m_8036_ ()Z net/minecraft/world/entity/ai/goal/BreakDoorGoal/canUse ()Z +MD: net/minecraft/world/entity/ai/goal/BreakDoorGoal/m_8037_ ()V net/minecraft/world/entity/ai/goal/BreakDoorGoal/tick ()V +MD: net/minecraft/world/entity/ai/goal/BreakDoorGoal/m_8041_ ()V net/minecraft/world/entity/ai/goal/BreakDoorGoal/stop ()V +MD: net/minecraft/world/entity/ai/goal/BreakDoorGoal/m_8045_ ()Z net/minecraft/world/entity/ai/goal/BreakDoorGoal/canContinueToUse ()Z +MD: net/minecraft/world/entity/ai/goal/BreakDoorGoal/m_8056_ ()V net/minecraft/world/entity/ai/goal/BreakDoorGoal/start ()V +MD: net/minecraft/world/entity/ai/goal/BreathAirGoal/ (Lnet/minecraft/world/entity/PathfinderMob;)V net/minecraft/world/entity/ai/goal/BreathAirGoal/ (Lnet/minecraft/world/entity/PathfinderMob;)V +MD: net/minecraft/world/entity/ai/goal/BreathAirGoal/m_25106_ (Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/entity/ai/goal/BreathAirGoal/givesAir (Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/entity/ai/goal/BreathAirGoal/m_25112_ ()V net/minecraft/world/entity/ai/goal/BreathAirGoal/findAirPosition ()V +MD: net/minecraft/world/entity/ai/goal/BreathAirGoal/m_6767_ ()Z net/minecraft/world/entity/ai/goal/BreathAirGoal/isInterruptable ()Z +MD: net/minecraft/world/entity/ai/goal/BreathAirGoal/m_8036_ ()Z net/minecraft/world/entity/ai/goal/BreathAirGoal/canUse ()Z +MD: net/minecraft/world/entity/ai/goal/BreathAirGoal/m_8037_ ()V net/minecraft/world/entity/ai/goal/BreathAirGoal/tick ()V +MD: net/minecraft/world/entity/ai/goal/BreathAirGoal/m_8045_ ()Z net/minecraft/world/entity/ai/goal/BreathAirGoal/canContinueToUse ()Z +MD: net/minecraft/world/entity/ai/goal/BreathAirGoal/m_8056_ ()V net/minecraft/world/entity/ai/goal/BreathAirGoal/start ()V +MD: net/minecraft/world/entity/ai/goal/BreedGoal/ ()V net/minecraft/world/entity/ai/goal/BreedGoal/ ()V +MD: net/minecraft/world/entity/ai/goal/BreedGoal/ (Lnet/minecraft/world/entity/animal/Animal;DLjava/lang/Class;)V net/minecraft/world/entity/ai/goal/BreedGoal/ (Lnet/minecraft/world/entity/animal/Animal;DLjava/lang/Class;)V +MD: net/minecraft/world/entity/ai/goal/BreedGoal/ (Lnet/minecraft/world/entity/animal/Animal;D)V net/minecraft/world/entity/ai/goal/BreedGoal/ (Lnet/minecraft/world/entity/animal/Animal;D)V +MD: net/minecraft/world/entity/ai/goal/BreedGoal/m_25132_ ()Lnet/minecraft/world/entity/animal/Animal; net/minecraft/world/entity/ai/goal/BreedGoal/getFreePartner ()Lnet/minecraft/world/entity/animal/Animal; +MD: net/minecraft/world/entity/ai/goal/BreedGoal/m_8026_ ()V net/minecraft/world/entity/ai/goal/BreedGoal/breed ()V +MD: net/minecraft/world/entity/ai/goal/BreedGoal/m_8036_ ()Z net/minecraft/world/entity/ai/goal/BreedGoal/canUse ()Z +MD: net/minecraft/world/entity/ai/goal/BreedGoal/m_8037_ ()V net/minecraft/world/entity/ai/goal/BreedGoal/tick ()V +MD: net/minecraft/world/entity/ai/goal/BreedGoal/m_8041_ ()V net/minecraft/world/entity/ai/goal/BreedGoal/stop ()V +MD: net/minecraft/world/entity/ai/goal/BreedGoal/m_8045_ ()Z net/minecraft/world/entity/ai/goal/BreedGoal/canContinueToUse ()Z +MD: net/minecraft/world/entity/ai/goal/CatLieOnBedGoal/ (Lnet/minecraft/world/entity/animal/Cat;DI)V net/minecraft/world/entity/ai/goal/CatLieOnBedGoal/ (Lnet/minecraft/world/entity/animal/Cat;DI)V +MD: net/minecraft/world/entity/ai/goal/CatLieOnBedGoal/m_6099_ (Lnet/minecraft/world/entity/PathfinderMob;)I net/minecraft/world/entity/ai/goal/CatLieOnBedGoal/nextStartTick (Lnet/minecraft/world/entity/PathfinderMob;)I +MD: net/minecraft/world/entity/ai/goal/CatLieOnBedGoal/m_6465_ (Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/entity/ai/goal/CatLieOnBedGoal/isValidTarget (Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/entity/ai/goal/CatLieOnBedGoal/m_8036_ ()Z net/minecraft/world/entity/ai/goal/CatLieOnBedGoal/canUse ()Z +MD: net/minecraft/world/entity/ai/goal/CatLieOnBedGoal/m_8037_ ()V net/minecraft/world/entity/ai/goal/CatLieOnBedGoal/tick ()V +MD: net/minecraft/world/entity/ai/goal/CatLieOnBedGoal/m_8041_ ()V net/minecraft/world/entity/ai/goal/CatLieOnBedGoal/stop ()V +MD: net/minecraft/world/entity/ai/goal/CatLieOnBedGoal/m_8056_ ()V net/minecraft/world/entity/ai/goal/CatLieOnBedGoal/start ()V +MD: net/minecraft/world/entity/ai/goal/CatSitOnBlockGoal/ (Lnet/minecraft/world/entity/animal/Cat;D)V net/minecraft/world/entity/ai/goal/CatSitOnBlockGoal/ (Lnet/minecraft/world/entity/animal/Cat;D)V +MD: net/minecraft/world/entity/ai/goal/CatSitOnBlockGoal/m_148083_ (Lnet/minecraft/world/level/block/state/properties/BedPart;)Ljava/lang/Boolean; net/minecraft/world/entity/ai/goal/CatSitOnBlockGoal/lambda$isValidTarget$0 (Lnet/minecraft/world/level/block/state/properties/BedPart;)Ljava/lang/Boolean; +MD: net/minecraft/world/entity/ai/goal/CatSitOnBlockGoal/m_25155_ (Lnet/minecraft/world/level/block/state/BlockBehaviour$BlockStateBase;)Z net/minecraft/world/entity/ai/goal/CatSitOnBlockGoal/lambda$isValidTarget$1 (Lnet/minecraft/world/level/block/state/BlockBehaviour$BlockStateBase;)Z +MD: net/minecraft/world/entity/ai/goal/CatSitOnBlockGoal/m_6465_ (Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/entity/ai/goal/CatSitOnBlockGoal/isValidTarget (Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/entity/ai/goal/CatSitOnBlockGoal/m_8036_ ()Z net/minecraft/world/entity/ai/goal/CatSitOnBlockGoal/canUse ()Z +MD: net/minecraft/world/entity/ai/goal/CatSitOnBlockGoal/m_8037_ ()V net/minecraft/world/entity/ai/goal/CatSitOnBlockGoal/tick ()V +MD: net/minecraft/world/entity/ai/goal/CatSitOnBlockGoal/m_8041_ ()V net/minecraft/world/entity/ai/goal/CatSitOnBlockGoal/stop ()V +MD: net/minecraft/world/entity/ai/goal/CatSitOnBlockGoal/m_8056_ ()V net/minecraft/world/entity/ai/goal/CatSitOnBlockGoal/start ()V +MD: net/minecraft/world/entity/ai/goal/ClimbOnTopOfPowderSnowGoal/ (Lnet/minecraft/world/entity/Mob;Lnet/minecraft/world/level/Level;)V net/minecraft/world/entity/ai/goal/ClimbOnTopOfPowderSnowGoal/ (Lnet/minecraft/world/entity/Mob;Lnet/minecraft/world/level/Level;)V +MD: net/minecraft/world/entity/ai/goal/ClimbOnTopOfPowderSnowGoal/m_183429_ ()Z net/minecraft/world/entity/ai/goal/ClimbOnTopOfPowderSnowGoal/requiresUpdateEveryTick ()Z +MD: net/minecraft/world/entity/ai/goal/ClimbOnTopOfPowderSnowGoal/m_8036_ ()Z net/minecraft/world/entity/ai/goal/ClimbOnTopOfPowderSnowGoal/canUse ()Z +MD: net/minecraft/world/entity/ai/goal/ClimbOnTopOfPowderSnowGoal/m_8037_ ()V net/minecraft/world/entity/ai/goal/ClimbOnTopOfPowderSnowGoal/tick ()V +MD: net/minecraft/world/entity/ai/goal/DolphinJumpGoal/ ()V net/minecraft/world/entity/ai/goal/DolphinJumpGoal/ ()V +MD: net/minecraft/world/entity/ai/goal/DolphinJumpGoal/ (Lnet/minecraft/world/entity/animal/Dolphin;I)V net/minecraft/world/entity/ai/goal/DolphinJumpGoal/ (Lnet/minecraft/world/entity/animal/Dolphin;I)V +MD: net/minecraft/world/entity/ai/goal/DolphinJumpGoal/m_25172_ (Lnet/minecraft/core/BlockPos;III)Z net/minecraft/world/entity/ai/goal/DolphinJumpGoal/waterIsClear (Lnet/minecraft/core/BlockPos;III)Z +MD: net/minecraft/world/entity/ai/goal/DolphinJumpGoal/m_25178_ (Lnet/minecraft/core/BlockPos;III)Z net/minecraft/world/entity/ai/goal/DolphinJumpGoal/surfaceIsClear (Lnet/minecraft/core/BlockPos;III)Z +MD: net/minecraft/world/entity/ai/goal/DolphinJumpGoal/m_6767_ ()Z net/minecraft/world/entity/ai/goal/DolphinJumpGoal/isInterruptable ()Z +MD: net/minecraft/world/entity/ai/goal/DolphinJumpGoal/m_8036_ ()Z net/minecraft/world/entity/ai/goal/DolphinJumpGoal/canUse ()Z +MD: net/minecraft/world/entity/ai/goal/DolphinJumpGoal/m_8037_ ()V net/minecraft/world/entity/ai/goal/DolphinJumpGoal/tick ()V +MD: net/minecraft/world/entity/ai/goal/DolphinJumpGoal/m_8041_ ()V net/minecraft/world/entity/ai/goal/DolphinJumpGoal/stop ()V +MD: net/minecraft/world/entity/ai/goal/DolphinJumpGoal/m_8045_ ()Z net/minecraft/world/entity/ai/goal/DolphinJumpGoal/canContinueToUse ()Z +MD: net/minecraft/world/entity/ai/goal/DolphinJumpGoal/m_8056_ ()V net/minecraft/world/entity/ai/goal/DolphinJumpGoal/start ()V +MD: net/minecraft/world/entity/ai/goal/DoorInteractGoal/ (Lnet/minecraft/world/entity/Mob;)V net/minecraft/world/entity/ai/goal/DoorInteractGoal/ (Lnet/minecraft/world/entity/Mob;)V +MD: net/minecraft/world/entity/ai/goal/DoorInteractGoal/m_183429_ ()Z net/minecraft/world/entity/ai/goal/DoorInteractGoal/requiresUpdateEveryTick ()Z +MD: net/minecraft/world/entity/ai/goal/DoorInteractGoal/m_25195_ (Z)V net/minecraft/world/entity/ai/goal/DoorInteractGoal/setOpen (Z)V +MD: net/minecraft/world/entity/ai/goal/DoorInteractGoal/m_25200_ ()Z net/minecraft/world/entity/ai/goal/DoorInteractGoal/isOpen ()Z +MD: net/minecraft/world/entity/ai/goal/DoorInteractGoal/m_8036_ ()Z net/minecraft/world/entity/ai/goal/DoorInteractGoal/canUse ()Z +MD: net/minecraft/world/entity/ai/goal/DoorInteractGoal/m_8037_ ()V net/minecraft/world/entity/ai/goal/DoorInteractGoal/tick ()V +MD: net/minecraft/world/entity/ai/goal/DoorInteractGoal/m_8045_ ()Z net/minecraft/world/entity/ai/goal/DoorInteractGoal/canContinueToUse ()Z +MD: net/minecraft/world/entity/ai/goal/DoorInteractGoal/m_8056_ ()V net/minecraft/world/entity/ai/goal/DoorInteractGoal/start ()V +MD: net/minecraft/world/entity/ai/goal/EatBlockGoal/ ()V net/minecraft/world/entity/ai/goal/EatBlockGoal/ ()V +MD: net/minecraft/world/entity/ai/goal/EatBlockGoal/ (Lnet/minecraft/world/entity/Mob;)V net/minecraft/world/entity/ai/goal/EatBlockGoal/ (Lnet/minecraft/world/entity/Mob;)V +MD: net/minecraft/world/entity/ai/goal/EatBlockGoal/m_25213_ ()I net/minecraft/world/entity/ai/goal/EatBlockGoal/getEatAnimationTick ()I +MD: net/minecraft/world/entity/ai/goal/EatBlockGoal/m_8036_ ()Z net/minecraft/world/entity/ai/goal/EatBlockGoal/canUse ()Z +MD: net/minecraft/world/entity/ai/goal/EatBlockGoal/m_8037_ ()V net/minecraft/world/entity/ai/goal/EatBlockGoal/tick ()V +MD: net/minecraft/world/entity/ai/goal/EatBlockGoal/m_8041_ ()V net/minecraft/world/entity/ai/goal/EatBlockGoal/stop ()V +MD: net/minecraft/world/entity/ai/goal/EatBlockGoal/m_8045_ ()Z net/minecraft/world/entity/ai/goal/EatBlockGoal/canContinueToUse ()Z +MD: net/minecraft/world/entity/ai/goal/EatBlockGoal/m_8056_ ()V net/minecraft/world/entity/ai/goal/EatBlockGoal/start ()V +MD: net/minecraft/world/entity/ai/goal/FleeSunGoal/ (Lnet/minecraft/world/entity/PathfinderMob;D)V net/minecraft/world/entity/ai/goal/FleeSunGoal/ (Lnet/minecraft/world/entity/PathfinderMob;D)V +MD: net/minecraft/world/entity/ai/goal/FleeSunGoal/m_25226_ ()Z net/minecraft/world/entity/ai/goal/FleeSunGoal/setWantedPos ()Z +MD: net/minecraft/world/entity/ai/goal/FleeSunGoal/m_25227_ ()Lnet/minecraft/world/phys/Vec3; net/minecraft/world/entity/ai/goal/FleeSunGoal/getHidePos ()Lnet/minecraft/world/phys/Vec3; +MD: net/minecraft/world/entity/ai/goal/FleeSunGoal/m_8036_ ()Z net/minecraft/world/entity/ai/goal/FleeSunGoal/canUse ()Z +MD: net/minecraft/world/entity/ai/goal/FleeSunGoal/m_8045_ ()Z net/minecraft/world/entity/ai/goal/FleeSunGoal/canContinueToUse ()Z +MD: net/minecraft/world/entity/ai/goal/FleeSunGoal/m_8056_ ()V net/minecraft/world/entity/ai/goal/FleeSunGoal/start ()V +MD: net/minecraft/world/entity/ai/goal/FloatGoal/ (Lnet/minecraft/world/entity/Mob;)V net/minecraft/world/entity/ai/goal/FloatGoal/ (Lnet/minecraft/world/entity/Mob;)V +MD: net/minecraft/world/entity/ai/goal/FloatGoal/m_183429_ ()Z net/minecraft/world/entity/ai/goal/FloatGoal/requiresUpdateEveryTick ()Z +MD: net/minecraft/world/entity/ai/goal/FloatGoal/m_8036_ ()Z net/minecraft/world/entity/ai/goal/FloatGoal/canUse ()Z +MD: net/minecraft/world/entity/ai/goal/FloatGoal/m_8037_ ()V net/minecraft/world/entity/ai/goal/FloatGoal/tick ()V +MD: net/minecraft/world/entity/ai/goal/FollowBoatGoal/ (Lnet/minecraft/world/entity/PathfinderMob;)V net/minecraft/world/entity/ai/goal/FollowBoatGoal/ (Lnet/minecraft/world/entity/PathfinderMob;)V +MD: net/minecraft/world/entity/ai/goal/FollowBoatGoal/m_6767_ ()Z net/minecraft/world/entity/ai/goal/FollowBoatGoal/isInterruptable ()Z +MD: net/minecraft/world/entity/ai/goal/FollowBoatGoal/m_8036_ ()Z net/minecraft/world/entity/ai/goal/FollowBoatGoal/canUse ()Z +MD: net/minecraft/world/entity/ai/goal/FollowBoatGoal/m_8037_ ()V net/minecraft/world/entity/ai/goal/FollowBoatGoal/tick ()V +MD: net/minecraft/world/entity/ai/goal/FollowBoatGoal/m_8041_ ()V net/minecraft/world/entity/ai/goal/FollowBoatGoal/stop ()V +MD: net/minecraft/world/entity/ai/goal/FollowBoatGoal/m_8045_ ()Z net/minecraft/world/entity/ai/goal/FollowBoatGoal/canContinueToUse ()Z +MD: net/minecraft/world/entity/ai/goal/FollowBoatGoal/m_8056_ ()V net/minecraft/world/entity/ai/goal/FollowBoatGoal/start ()V +MD: net/minecraft/world/entity/ai/goal/FollowFlockLeaderGoal/ (Lnet/minecraft/world/entity/animal/AbstractSchoolingFish;)V net/minecraft/world/entity/ai/goal/FollowFlockLeaderGoal/ (Lnet/minecraft/world/entity/animal/AbstractSchoolingFish;)V +MD: net/minecraft/world/entity/ai/goal/FollowFlockLeaderGoal/m_25251_ (Lnet/minecraft/world/entity/animal/AbstractSchoolingFish;)I net/minecraft/world/entity/ai/goal/FollowFlockLeaderGoal/nextStartTick (Lnet/minecraft/world/entity/animal/AbstractSchoolingFish;)I +MD: net/minecraft/world/entity/ai/goal/FollowFlockLeaderGoal/m_25254_ (Lnet/minecraft/world/entity/animal/AbstractSchoolingFish;)Z net/minecraft/world/entity/ai/goal/FollowFlockLeaderGoal/lambda$canUse$1 (Lnet/minecraft/world/entity/animal/AbstractSchoolingFish;)Z +MD: net/minecraft/world/entity/ai/goal/FollowFlockLeaderGoal/m_25257_ (Lnet/minecraft/world/entity/animal/AbstractSchoolingFish;)Z net/minecraft/world/entity/ai/goal/FollowFlockLeaderGoal/lambda$canUse$0 (Lnet/minecraft/world/entity/animal/AbstractSchoolingFish;)Z +MD: net/minecraft/world/entity/ai/goal/FollowFlockLeaderGoal/m_8036_ ()Z net/minecraft/world/entity/ai/goal/FollowFlockLeaderGoal/canUse ()Z +MD: net/minecraft/world/entity/ai/goal/FollowFlockLeaderGoal/m_8037_ ()V net/minecraft/world/entity/ai/goal/FollowFlockLeaderGoal/tick ()V +MD: net/minecraft/world/entity/ai/goal/FollowFlockLeaderGoal/m_8041_ ()V net/minecraft/world/entity/ai/goal/FollowFlockLeaderGoal/stop ()V +MD: net/minecraft/world/entity/ai/goal/FollowFlockLeaderGoal/m_8045_ ()Z net/minecraft/world/entity/ai/goal/FollowFlockLeaderGoal/canContinueToUse ()Z +MD: net/minecraft/world/entity/ai/goal/FollowFlockLeaderGoal/m_8056_ ()V net/minecraft/world/entity/ai/goal/FollowFlockLeaderGoal/start ()V +MD: net/minecraft/world/entity/ai/goal/FollowMobGoal/ (Lnet/minecraft/world/entity/Mob;DFF)V net/minecraft/world/entity/ai/goal/FollowMobGoal/ (Lnet/minecraft/world/entity/Mob;DFF)V +MD: net/minecraft/world/entity/ai/goal/FollowMobGoal/m_25276_ (Lnet/minecraft/world/entity/Mob;Lnet/minecraft/world/entity/Mob;)Z net/minecraft/world/entity/ai/goal/FollowMobGoal/lambda$new$0 (Lnet/minecraft/world/entity/Mob;Lnet/minecraft/world/entity/Mob;)Z +MD: net/minecraft/world/entity/ai/goal/FollowMobGoal/m_8036_ ()Z net/minecraft/world/entity/ai/goal/FollowMobGoal/canUse ()Z +MD: net/minecraft/world/entity/ai/goal/FollowMobGoal/m_8037_ ()V net/minecraft/world/entity/ai/goal/FollowMobGoal/tick ()V +MD: net/minecraft/world/entity/ai/goal/FollowMobGoal/m_8041_ ()V net/minecraft/world/entity/ai/goal/FollowMobGoal/stop ()V +MD: net/minecraft/world/entity/ai/goal/FollowMobGoal/m_8045_ ()Z net/minecraft/world/entity/ai/goal/FollowMobGoal/canContinueToUse ()Z +MD: net/minecraft/world/entity/ai/goal/FollowMobGoal/m_8056_ ()V net/minecraft/world/entity/ai/goal/FollowMobGoal/start ()V +MD: net/minecraft/world/entity/ai/goal/FollowOwnerGoal/ (Lnet/minecraft/world/entity/TamableAnimal;DFFZ)V net/minecraft/world/entity/ai/goal/FollowOwnerGoal/ (Lnet/minecraft/world/entity/TamableAnimal;DFFZ)V +MD: net/minecraft/world/entity/ai/goal/FollowOwnerGoal/m_25300_ (II)I net/minecraft/world/entity/ai/goal/FollowOwnerGoal/randomIntInclusive (II)I +MD: net/minecraft/world/entity/ai/goal/FollowOwnerGoal/m_25303_ (III)Z net/minecraft/world/entity/ai/goal/FollowOwnerGoal/maybeTeleportTo (III)Z +MD: net/minecraft/world/entity/ai/goal/FollowOwnerGoal/m_25307_ (Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/entity/ai/goal/FollowOwnerGoal/canTeleportTo (Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/entity/ai/goal/FollowOwnerGoal/m_25313_ ()V net/minecraft/world/entity/ai/goal/FollowOwnerGoal/teleportToOwner ()V +MD: net/minecraft/world/entity/ai/goal/FollowOwnerGoal/m_272221_ ()Z net/minecraft/world/entity/ai/goal/FollowOwnerGoal/unableToMove ()Z +MD: net/minecraft/world/entity/ai/goal/FollowOwnerGoal/m_8036_ ()Z net/minecraft/world/entity/ai/goal/FollowOwnerGoal/canUse ()Z +MD: net/minecraft/world/entity/ai/goal/FollowOwnerGoal/m_8037_ ()V net/minecraft/world/entity/ai/goal/FollowOwnerGoal/tick ()V +MD: net/minecraft/world/entity/ai/goal/FollowOwnerGoal/m_8041_ ()V net/minecraft/world/entity/ai/goal/FollowOwnerGoal/stop ()V +MD: net/minecraft/world/entity/ai/goal/FollowOwnerGoal/m_8045_ ()Z net/minecraft/world/entity/ai/goal/FollowOwnerGoal/canContinueToUse ()Z +MD: net/minecraft/world/entity/ai/goal/FollowOwnerGoal/m_8056_ ()V net/minecraft/world/entity/ai/goal/FollowOwnerGoal/start ()V +MD: net/minecraft/world/entity/ai/goal/FollowParentGoal/ (Lnet/minecraft/world/entity/animal/Animal;D)V net/minecraft/world/entity/ai/goal/FollowParentGoal/ (Lnet/minecraft/world/entity/animal/Animal;D)V +MD: net/minecraft/world/entity/ai/goal/FollowParentGoal/m_8036_ ()Z net/minecraft/world/entity/ai/goal/FollowParentGoal/canUse ()Z +MD: net/minecraft/world/entity/ai/goal/FollowParentGoal/m_8037_ ()V net/minecraft/world/entity/ai/goal/FollowParentGoal/tick ()V +MD: net/minecraft/world/entity/ai/goal/FollowParentGoal/m_8041_ ()V net/minecraft/world/entity/ai/goal/FollowParentGoal/stop ()V +MD: net/minecraft/world/entity/ai/goal/FollowParentGoal/m_8045_ ()Z net/minecraft/world/entity/ai/goal/FollowParentGoal/canContinueToUse ()Z +MD: net/minecraft/world/entity/ai/goal/FollowParentGoal/m_8056_ ()V net/minecraft/world/entity/ai/goal/FollowParentGoal/start ()V +MD: net/minecraft/world/entity/ai/goal/Goal/ ()V net/minecraft/world/entity/ai/goal/Goal/ ()V +MD: net/minecraft/world/entity/ai/goal/Goal/m_183277_ (I)I net/minecraft/world/entity/ai/goal/Goal/adjustedTickDelay (I)I +MD: net/minecraft/world/entity/ai/goal/Goal/m_183429_ ()Z net/minecraft/world/entity/ai/goal/Goal/requiresUpdateEveryTick ()Z +MD: net/minecraft/world/entity/ai/goal/Goal/m_186073_ (I)I net/minecraft/world/entity/ai/goal/Goal/reducedTickDelay (I)I +MD: net/minecraft/world/entity/ai/goal/Goal/m_6767_ ()Z net/minecraft/world/entity/ai/goal/Goal/isInterruptable ()Z +MD: net/minecraft/world/entity/ai/goal/Goal/m_7021_ (Ljava/util/EnumSet;)V net/minecraft/world/entity/ai/goal/Goal/setFlags (Ljava/util/EnumSet;)V +MD: net/minecraft/world/entity/ai/goal/Goal/m_7684_ ()Ljava/util/EnumSet; net/minecraft/world/entity/ai/goal/Goal/getFlags ()Ljava/util/EnumSet; +MD: net/minecraft/world/entity/ai/goal/Goal/m_8036_ ()Z net/minecraft/world/entity/ai/goal/Goal/canUse ()Z +MD: net/minecraft/world/entity/ai/goal/Goal/m_8037_ ()V net/minecraft/world/entity/ai/goal/Goal/tick ()V +MD: net/minecraft/world/entity/ai/goal/Goal/m_8041_ ()V net/minecraft/world/entity/ai/goal/Goal/stop ()V +MD: net/minecraft/world/entity/ai/goal/Goal/m_8045_ ()Z net/minecraft/world/entity/ai/goal/Goal/canContinueToUse ()Z +MD: net/minecraft/world/entity/ai/goal/Goal/m_8056_ ()V net/minecraft/world/entity/ai/goal/Goal/start ()V +MD: net/minecraft/world/entity/ai/goal/Goal/toString ()Ljava/lang/String; net/minecraft/world/entity/ai/goal/Goal/toString ()Ljava/lang/String; +MD: net/minecraft/world/entity/ai/goal/Goal$Flag/ ()V net/minecraft/world/entity/ai/goal/Goal$Flag/ ()V +MD: net/minecraft/world/entity/ai/goal/Goal$Flag/ (Ljava/lang/String;I)V net/minecraft/world/entity/ai/goal/Goal$Flag/ (Ljava/lang/String;I)V +MD: net/minecraft/world/entity/ai/goal/Goal$Flag/m_148094_ ()[Lnet/minecraft/world/entity/ai/goal/Goal$Flag; net/minecraft/world/entity/ai/goal/Goal$Flag/$values ()[Lnet/minecraft/world/entity/ai/goal/Goal$Flag; +MD: net/minecraft/world/entity/ai/goal/Goal$Flag/valueOf (Ljava/lang/String;)Lnet/minecraft/world/entity/ai/goal/Goal$Flag; net/minecraft/world/entity/ai/goal/Goal$Flag/valueOf (Ljava/lang/String;)Lnet/minecraft/world/entity/ai/goal/Goal$Flag; +MD: net/minecraft/world/entity/ai/goal/Goal$Flag/values ()[Lnet/minecraft/world/entity/ai/goal/Goal$Flag; net/minecraft/world/entity/ai/goal/Goal$Flag/values ()[Lnet/minecraft/world/entity/ai/goal/Goal$Flag; +MD: net/minecraft/world/entity/ai/goal/GoalSelector/ ()V net/minecraft/world/entity/ai/goal/GoalSelector/ ()V +MD: net/minecraft/world/entity/ai/goal/GoalSelector/ (Ljava/util/function/Supplier;)V net/minecraft/world/entity/ai/goal/GoalSelector/ (Ljava/util/function/Supplier;)V +MD: net/minecraft/world/entity/ai/goal/GoalSelector/m_148097_ (I)V net/minecraft/world/entity/ai/goal/GoalSelector/setNewGoalRate (I)V +MD: net/minecraft/world/entity/ai/goal/GoalSelector/m_148105_ ()Ljava/util/Set; net/minecraft/world/entity/ai/goal/GoalSelector/getAvailableGoals ()Ljava/util/Set; +MD: net/minecraft/world/entity/ai/goal/GoalSelector/m_186075_ (Lnet/minecraft/world/entity/ai/goal/WrappedGoal;Ljava/util/EnumSet;)Z net/minecraft/world/entity/ai/goal/GoalSelector/goalContainsAnyFlags (Lnet/minecraft/world/entity/ai/goal/WrappedGoal;Ljava/util/EnumSet;)Z +MD: net/minecraft/world/entity/ai/goal/GoalSelector/m_186078_ (Lnet/minecraft/world/entity/ai/goal/WrappedGoal;Ljava/util/Map;)Z net/minecraft/world/entity/ai/goal/GoalSelector/goalCanBeReplacedForAllFlags (Lnet/minecraft/world/entity/ai/goal/WrappedGoal;Ljava/util/Map;)Z +MD: net/minecraft/world/entity/ai/goal/GoalSelector/m_186081_ (Z)V net/minecraft/world/entity/ai/goal/GoalSelector/tickRunningGoals (Z)V +MD: net/minecraft/world/entity/ai/goal/GoalSelector/m_25352_ (ILnet/minecraft/world/entity/ai/goal/Goal;)V net/minecraft/world/entity/ai/goal/GoalSelector/addGoal (ILnet/minecraft/world/entity/ai/goal/Goal;)V +MD: net/minecraft/world/entity/ai/goal/GoalSelector/m_25355_ (Lnet/minecraft/world/entity/ai/goal/Goal$Flag;)V net/minecraft/world/entity/ai/goal/GoalSelector/disableControlFlag (Lnet/minecraft/world/entity/ai/goal/Goal$Flag;)V +MD: net/minecraft/world/entity/ai/goal/GoalSelector/m_25360_ (Lnet/minecraft/world/entity/ai/goal/Goal$Flag;Z)V net/minecraft/world/entity/ai/goal/GoalSelector/setControlFlag (Lnet/minecraft/world/entity/ai/goal/Goal$Flag;Z)V +MD: net/minecraft/world/entity/ai/goal/GoalSelector/m_25363_ (Lnet/minecraft/world/entity/ai/goal/Goal;)V net/minecraft/world/entity/ai/goal/GoalSelector/removeGoal (Lnet/minecraft/world/entity/ai/goal/Goal;)V +MD: net/minecraft/world/entity/ai/goal/GoalSelector/m_25365_ (Lnet/minecraft/world/entity/ai/goal/Goal;Lnet/minecraft/world/entity/ai/goal/WrappedGoal;)Z net/minecraft/world/entity/ai/goal/GoalSelector/lambda$removeGoal$2 (Lnet/minecraft/world/entity/ai/goal/Goal;Lnet/minecraft/world/entity/ai/goal/WrappedGoal;)Z +MD: net/minecraft/world/entity/ai/goal/GoalSelector/m_25373_ ()V net/minecraft/world/entity/ai/goal/GoalSelector/tick ()V +MD: net/minecraft/world/entity/ai/goal/GoalSelector/m_25374_ (Lnet/minecraft/world/entity/ai/goal/Goal$Flag;)V net/minecraft/world/entity/ai/goal/GoalSelector/enableControlFlag (Lnet/minecraft/world/entity/ai/goal/Goal$Flag;)V +MD: net/minecraft/world/entity/ai/goal/GoalSelector/m_25376_ (Lnet/minecraft/world/entity/ai/goal/Goal;Lnet/minecraft/world/entity/ai/goal/WrappedGoal;)Z net/minecraft/world/entity/ai/goal/GoalSelector/lambda$removeGoal$1 (Lnet/minecraft/world/entity/ai/goal/Goal;Lnet/minecraft/world/entity/ai/goal/WrappedGoal;)Z +MD: net/minecraft/world/entity/ai/goal/GoalSelector/m_25386_ ()Ljava/util/stream/Stream; net/minecraft/world/entity/ai/goal/GoalSelector/getRunningGoals ()Ljava/util/stream/Stream; +MD: net/minecraft/world/entity/ai/goal/GoalSelector/m_262357_ (Ljava/util/function/Predicate;Lnet/minecraft/world/entity/ai/goal/WrappedGoal;)Z net/minecraft/world/entity/ai/goal/GoalSelector/lambda$removeAllGoals$0 (Ljava/util/function/Predicate;Lnet/minecraft/world/entity/ai/goal/WrappedGoal;)Z +MD: net/minecraft/world/entity/ai/goal/GoalSelector/m_262460_ (Ljava/util/function/Predicate;)V net/minecraft/world/entity/ai/goal/GoalSelector/removeAllGoals (Ljava/util/function/Predicate;)V +MD: net/minecraft/world/entity/ai/goal/GoalSelector$1/ ()V net/minecraft/world/entity/ai/goal/GoalSelector$1/ ()V +MD: net/minecraft/world/entity/ai/goal/GoalSelector$1/m_8036_ ()Z net/minecraft/world/entity/ai/goal/GoalSelector$1/canUse ()Z +MD: net/minecraft/world/entity/ai/goal/GoalSelector$2/ (ILnet/minecraft/world/entity/ai/goal/Goal;)V net/minecraft/world/entity/ai/goal/GoalSelector$2/ (ILnet/minecraft/world/entity/ai/goal/Goal;)V +MD: net/minecraft/world/entity/ai/goal/GoalSelector$2/m_7620_ ()Z net/minecraft/world/entity/ai/goal/GoalSelector$2/isRunning ()Z +MD: net/minecraft/world/entity/ai/goal/GolemRandomStrollInVillageGoal/ (Lnet/minecraft/world/entity/PathfinderMob;D)V net/minecraft/world/entity/ai/goal/GolemRandomStrollInVillageGoal/ (Lnet/minecraft/world/entity/PathfinderMob;D)V +MD: net/minecraft/world/entity/ai/goal/GolemRandomStrollInVillageGoal/m_217746_ (Lnet/minecraft/core/Holder;)Z net/minecraft/world/entity/ai/goal/GolemRandomStrollInVillageGoal/lambda$getRandomPoiWithinSection$1 (Lnet/minecraft/core/Holder;)Z +MD: net/minecraft/world/entity/ai/goal/GolemRandomStrollInVillageGoal/m_25400_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/SectionPos;)Z net/minecraft/world/entity/ai/goal/GolemRandomStrollInVillageGoal/lambda$getRandomVillageSection$0 (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/SectionPos;)Z +MD: net/minecraft/world/entity/ai/goal/GolemRandomStrollInVillageGoal/m_25405_ (Lnet/minecraft/world/entity/npc/Villager;)Z net/minecraft/world/entity/ai/goal/GolemRandomStrollInVillageGoal/doesVillagerWantGolem (Lnet/minecraft/world/entity/npc/Villager;)Z +MD: net/minecraft/world/entity/ai/goal/GolemRandomStrollInVillageGoal/m_25407_ (Lnet/minecraft/core/SectionPos;)Lnet/minecraft/core/BlockPos; net/minecraft/world/entity/ai/goal/GolemRandomStrollInVillageGoal/getRandomPoiWithinSection (Lnet/minecraft/core/SectionPos;)Lnet/minecraft/core/BlockPos; +MD: net/minecraft/world/entity/ai/goal/GolemRandomStrollInVillageGoal/m_25410_ ()Lnet/minecraft/world/phys/Vec3; net/minecraft/world/entity/ai/goal/GolemRandomStrollInVillageGoal/getPositionTowardsAnywhere ()Lnet/minecraft/world/phys/Vec3; +MD: net/minecraft/world/entity/ai/goal/GolemRandomStrollInVillageGoal/m_25411_ ()Lnet/minecraft/world/phys/Vec3; net/minecraft/world/entity/ai/goal/GolemRandomStrollInVillageGoal/getPositionTowardsVillagerWhoWantsGolem ()Lnet/minecraft/world/phys/Vec3; +MD: net/minecraft/world/entity/ai/goal/GolemRandomStrollInVillageGoal/m_25412_ ()Lnet/minecraft/world/phys/Vec3; net/minecraft/world/entity/ai/goal/GolemRandomStrollInVillageGoal/getPositionTowardsPoi ()Lnet/minecraft/world/phys/Vec3; +MD: net/minecraft/world/entity/ai/goal/GolemRandomStrollInVillageGoal/m_25413_ ()Lnet/minecraft/core/SectionPos; net/minecraft/world/entity/ai/goal/GolemRandomStrollInVillageGoal/getRandomVillageSection ()Lnet/minecraft/core/SectionPos; +MD: net/minecraft/world/entity/ai/goal/GolemRandomStrollInVillageGoal/m_7037_ ()Lnet/minecraft/world/phys/Vec3; net/minecraft/world/entity/ai/goal/GolemRandomStrollInVillageGoal/getPosition ()Lnet/minecraft/world/phys/Vec3; +MD: net/minecraft/world/entity/ai/goal/InteractGoal/ (Lnet/minecraft/world/entity/Mob;Ljava/lang/Class;FF)V net/minecraft/world/entity/ai/goal/InteractGoal/ (Lnet/minecraft/world/entity/Mob;Ljava/lang/Class;FF)V +MD: net/minecraft/world/entity/ai/goal/InteractGoal/ (Lnet/minecraft/world/entity/Mob;Ljava/lang/Class;F)V net/minecraft/world/entity/ai/goal/InteractGoal/ (Lnet/minecraft/world/entity/Mob;Ljava/lang/Class;F)V +MD: net/minecraft/world/entity/ai/goal/JumpGoal/ ()V net/minecraft/world/entity/ai/goal/JumpGoal/ ()V +MD: net/minecraft/world/entity/ai/goal/LandOnOwnersShoulderGoal/ (Lnet/minecraft/world/entity/animal/ShoulderRidingEntity;)V net/minecraft/world/entity/ai/goal/LandOnOwnersShoulderGoal/ (Lnet/minecraft/world/entity/animal/ShoulderRidingEntity;)V +MD: net/minecraft/world/entity/ai/goal/LandOnOwnersShoulderGoal/m_6767_ ()Z net/minecraft/world/entity/ai/goal/LandOnOwnersShoulderGoal/isInterruptable ()Z +MD: net/minecraft/world/entity/ai/goal/LandOnOwnersShoulderGoal/m_8036_ ()Z net/minecraft/world/entity/ai/goal/LandOnOwnersShoulderGoal/canUse ()Z +MD: net/minecraft/world/entity/ai/goal/LandOnOwnersShoulderGoal/m_8037_ ()V net/minecraft/world/entity/ai/goal/LandOnOwnersShoulderGoal/tick ()V +MD: net/minecraft/world/entity/ai/goal/LandOnOwnersShoulderGoal/m_8056_ ()V net/minecraft/world/entity/ai/goal/LandOnOwnersShoulderGoal/start ()V +MD: net/minecraft/world/entity/ai/goal/LeapAtTargetGoal/ (Lnet/minecraft/world/entity/Mob;F)V net/minecraft/world/entity/ai/goal/LeapAtTargetGoal/ (Lnet/minecraft/world/entity/Mob;F)V +MD: net/minecraft/world/entity/ai/goal/LeapAtTargetGoal/m_8036_ ()Z net/minecraft/world/entity/ai/goal/LeapAtTargetGoal/canUse ()Z +MD: net/minecraft/world/entity/ai/goal/LeapAtTargetGoal/m_8045_ ()Z net/minecraft/world/entity/ai/goal/LeapAtTargetGoal/canContinueToUse ()Z +MD: net/minecraft/world/entity/ai/goal/LeapAtTargetGoal/m_8056_ ()V net/minecraft/world/entity/ai/goal/LeapAtTargetGoal/start ()V +MD: net/minecraft/world/entity/ai/goal/LlamaFollowCaravanGoal/ (Lnet/minecraft/world/entity/animal/horse/Llama;D)V net/minecraft/world/entity/ai/goal/LlamaFollowCaravanGoal/ (Lnet/minecraft/world/entity/animal/horse/Llama;D)V +MD: net/minecraft/world/entity/ai/goal/LlamaFollowCaravanGoal/m_25504_ (Lnet/minecraft/world/entity/Entity;)Z net/minecraft/world/entity/ai/goal/LlamaFollowCaravanGoal/lambda$canUse$0 (Lnet/minecraft/world/entity/Entity;)Z +MD: net/minecraft/world/entity/ai/goal/LlamaFollowCaravanGoal/m_25506_ (Lnet/minecraft/world/entity/animal/horse/Llama;I)Z net/minecraft/world/entity/ai/goal/LlamaFollowCaravanGoal/firstIsLeashed (Lnet/minecraft/world/entity/animal/horse/Llama;I)Z +MD: net/minecraft/world/entity/ai/goal/LlamaFollowCaravanGoal/m_8036_ ()Z net/minecraft/world/entity/ai/goal/LlamaFollowCaravanGoal/canUse ()Z +MD: net/minecraft/world/entity/ai/goal/LlamaFollowCaravanGoal/m_8037_ ()V net/minecraft/world/entity/ai/goal/LlamaFollowCaravanGoal/tick ()V +MD: net/minecraft/world/entity/ai/goal/LlamaFollowCaravanGoal/m_8041_ ()V net/minecraft/world/entity/ai/goal/LlamaFollowCaravanGoal/stop ()V +MD: net/minecraft/world/entity/ai/goal/LlamaFollowCaravanGoal/m_8045_ ()Z net/minecraft/world/entity/ai/goal/LlamaFollowCaravanGoal/canContinueToUse ()Z +MD: net/minecraft/world/entity/ai/goal/LookAtPlayerGoal/ (Lnet/minecraft/world/entity/Mob;Ljava/lang/Class;FF)V net/minecraft/world/entity/ai/goal/LookAtPlayerGoal/ (Lnet/minecraft/world/entity/Mob;Ljava/lang/Class;FF)V +MD: net/minecraft/world/entity/ai/goal/LookAtPlayerGoal/ (Lnet/minecraft/world/entity/Mob;Ljava/lang/Class;FFZ)V net/minecraft/world/entity/ai/goal/LookAtPlayerGoal/ (Lnet/minecraft/world/entity/Mob;Ljava/lang/Class;FFZ)V +MD: net/minecraft/world/entity/ai/goal/LookAtPlayerGoal/ (Lnet/minecraft/world/entity/Mob;Ljava/lang/Class;F)V net/minecraft/world/entity/ai/goal/LookAtPlayerGoal/ (Lnet/minecraft/world/entity/Mob;Ljava/lang/Class;F)V +MD: net/minecraft/world/entity/ai/goal/LookAtPlayerGoal/m_148123_ (Lnet/minecraft/world/entity/LivingEntity;)Z net/minecraft/world/entity/ai/goal/LookAtPlayerGoal/lambda$canUse$1 (Lnet/minecraft/world/entity/LivingEntity;)Z +MD: net/minecraft/world/entity/ai/goal/LookAtPlayerGoal/m_25529_ (Lnet/minecraft/world/entity/Mob;Lnet/minecraft/world/entity/LivingEntity;)Z net/minecraft/world/entity/ai/goal/LookAtPlayerGoal/lambda$new$0 (Lnet/minecraft/world/entity/Mob;Lnet/minecraft/world/entity/LivingEntity;)Z +MD: net/minecraft/world/entity/ai/goal/LookAtPlayerGoal/m_8036_ ()Z net/minecraft/world/entity/ai/goal/LookAtPlayerGoal/canUse ()Z +MD: net/minecraft/world/entity/ai/goal/LookAtPlayerGoal/m_8037_ ()V net/minecraft/world/entity/ai/goal/LookAtPlayerGoal/tick ()V +MD: net/minecraft/world/entity/ai/goal/LookAtPlayerGoal/m_8041_ ()V net/minecraft/world/entity/ai/goal/LookAtPlayerGoal/stop ()V +MD: net/minecraft/world/entity/ai/goal/LookAtPlayerGoal/m_8045_ ()Z net/minecraft/world/entity/ai/goal/LookAtPlayerGoal/canContinueToUse ()Z +MD: net/minecraft/world/entity/ai/goal/LookAtPlayerGoal/m_8056_ ()V net/minecraft/world/entity/ai/goal/LookAtPlayerGoal/start ()V +MD: net/minecraft/world/entity/ai/goal/LookAtTradingPlayerGoal/ (Lnet/minecraft/world/entity/npc/AbstractVillager;)V net/minecraft/world/entity/ai/goal/LookAtTradingPlayerGoal/ (Lnet/minecraft/world/entity/npc/AbstractVillager;)V +MD: net/minecraft/world/entity/ai/goal/LookAtTradingPlayerGoal/m_8036_ ()Z net/minecraft/world/entity/ai/goal/LookAtTradingPlayerGoal/canUse ()Z +MD: net/minecraft/world/entity/ai/goal/MeleeAttackGoal/ (Lnet/minecraft/world/entity/PathfinderMob;DZ)V net/minecraft/world/entity/ai/goal/MeleeAttackGoal/ (Lnet/minecraft/world/entity/PathfinderMob;DZ)V +MD: net/minecraft/world/entity/ai/goal/MeleeAttackGoal/m_183429_ ()Z net/minecraft/world/entity/ai/goal/MeleeAttackGoal/requiresUpdateEveryTick ()Z +MD: net/minecraft/world/entity/ai/goal/MeleeAttackGoal/m_25563_ ()V net/minecraft/world/entity/ai/goal/MeleeAttackGoal/resetAttackCooldown ()V +MD: net/minecraft/world/entity/ai/goal/MeleeAttackGoal/m_25564_ ()Z net/minecraft/world/entity/ai/goal/MeleeAttackGoal/isTimeToAttack ()Z +MD: net/minecraft/world/entity/ai/goal/MeleeAttackGoal/m_25565_ ()I net/minecraft/world/entity/ai/goal/MeleeAttackGoal/getTicksUntilNextAttack ()I +MD: net/minecraft/world/entity/ai/goal/MeleeAttackGoal/m_25566_ ()I net/minecraft/world/entity/ai/goal/MeleeAttackGoal/getAttackInterval ()I +MD: net/minecraft/world/entity/ai/goal/MeleeAttackGoal/m_6639_ (Lnet/minecraft/world/entity/LivingEntity;)D net/minecraft/world/entity/ai/goal/MeleeAttackGoal/getAttackReachSqr (Lnet/minecraft/world/entity/LivingEntity;)D +MD: net/minecraft/world/entity/ai/goal/MeleeAttackGoal/m_6739_ (Lnet/minecraft/world/entity/LivingEntity;D)V net/minecraft/world/entity/ai/goal/MeleeAttackGoal/checkAndPerformAttack (Lnet/minecraft/world/entity/LivingEntity;D)V +MD: net/minecraft/world/entity/ai/goal/MeleeAttackGoal/m_8036_ ()Z net/minecraft/world/entity/ai/goal/MeleeAttackGoal/canUse ()Z +MD: net/minecraft/world/entity/ai/goal/MeleeAttackGoal/m_8037_ ()V net/minecraft/world/entity/ai/goal/MeleeAttackGoal/tick ()V +MD: net/minecraft/world/entity/ai/goal/MeleeAttackGoal/m_8041_ ()V net/minecraft/world/entity/ai/goal/MeleeAttackGoal/stop ()V +MD: net/minecraft/world/entity/ai/goal/MeleeAttackGoal/m_8045_ ()Z net/minecraft/world/entity/ai/goal/MeleeAttackGoal/canContinueToUse ()Z +MD: net/minecraft/world/entity/ai/goal/MeleeAttackGoal/m_8056_ ()V net/minecraft/world/entity/ai/goal/MeleeAttackGoal/start ()V +MD: net/minecraft/world/entity/ai/goal/MoveBackToVillageGoal/ (Lnet/minecraft/world/entity/PathfinderMob;DZ)V net/minecraft/world/entity/ai/goal/MoveBackToVillageGoal/ (Lnet/minecraft/world/entity/PathfinderMob;DZ)V +MD: net/minecraft/world/entity/ai/goal/MoveBackToVillageGoal/m_7037_ ()Lnet/minecraft/world/phys/Vec3; net/minecraft/world/entity/ai/goal/MoveBackToVillageGoal/getPosition ()Lnet/minecraft/world/phys/Vec3; +MD: net/minecraft/world/entity/ai/goal/MoveBackToVillageGoal/m_8036_ ()Z net/minecraft/world/entity/ai/goal/MoveBackToVillageGoal/canUse ()Z +MD: net/minecraft/world/entity/ai/goal/MoveThroughVillageGoal/ (Lnet/minecraft/world/entity/PathfinderMob;DZILjava/util/function/BooleanSupplier;)V net/minecraft/world/entity/ai/goal/MoveThroughVillageGoal/ (Lnet/minecraft/world/entity/PathfinderMob;DZILjava/util/function/BooleanSupplier;)V +MD: net/minecraft/world/entity/ai/goal/MoveThroughVillageGoal/m_217748_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;)D net/minecraft/world/entity/ai/goal/MoveThroughVillageGoal/lambda$canUse$2 (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;)D +MD: net/minecraft/world/entity/ai/goal/MoveThroughVillageGoal/m_217752_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;)Ljava/lang/Double; net/minecraft/world/entity/ai/goal/MoveThroughVillageGoal/lambda$canUse$1 (Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;)Ljava/lang/Double; +MD: net/minecraft/world/entity/ai/goal/MoveThroughVillageGoal/m_217755_ (Lnet/minecraft/core/Holder;)Z net/minecraft/world/entity/ai/goal/MoveThroughVillageGoal/lambda$canUse$3 (Lnet/minecraft/core/Holder;)Z +MD: net/minecraft/world/entity/ai/goal/MoveThroughVillageGoal/m_217757_ (Lnet/minecraft/core/Holder;)Z net/minecraft/world/entity/ai/goal/MoveThroughVillageGoal/lambda$canUse$0 (Lnet/minecraft/core/Holder;)Z +MD: net/minecraft/world/entity/ai/goal/MoveThroughVillageGoal/m_25592_ (Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/entity/ai/goal/MoveThroughVillageGoal/hasNotVisited (Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/entity/ai/goal/MoveThroughVillageGoal/m_25597_ ()V net/minecraft/world/entity/ai/goal/MoveThroughVillageGoal/updateVisited ()V +MD: net/minecraft/world/entity/ai/goal/MoveThroughVillageGoal/m_8036_ ()Z net/minecraft/world/entity/ai/goal/MoveThroughVillageGoal/canUse ()Z +MD: net/minecraft/world/entity/ai/goal/MoveThroughVillageGoal/m_8041_ ()V net/minecraft/world/entity/ai/goal/MoveThroughVillageGoal/stop ()V +MD: net/minecraft/world/entity/ai/goal/MoveThroughVillageGoal/m_8045_ ()Z net/minecraft/world/entity/ai/goal/MoveThroughVillageGoal/canContinueToUse ()Z +MD: net/minecraft/world/entity/ai/goal/MoveThroughVillageGoal/m_8056_ ()V net/minecraft/world/entity/ai/goal/MoveThroughVillageGoal/start ()V +MD: net/minecraft/world/entity/ai/goal/MoveToBlockGoal/ (Lnet/minecraft/world/entity/PathfinderMob;DI)V net/minecraft/world/entity/ai/goal/MoveToBlockGoal/ (Lnet/minecraft/world/entity/PathfinderMob;DI)V +MD: net/minecraft/world/entity/ai/goal/MoveToBlockGoal/ (Lnet/minecraft/world/entity/PathfinderMob;DII)V net/minecraft/world/entity/ai/goal/MoveToBlockGoal/ (Lnet/minecraft/world/entity/PathfinderMob;DII)V +MD: net/minecraft/world/entity/ai/goal/MoveToBlockGoal/m_183429_ ()Z net/minecraft/world/entity/ai/goal/MoveToBlockGoal/requiresUpdateEveryTick ()Z +MD: net/minecraft/world/entity/ai/goal/MoveToBlockGoal/m_25624_ ()V net/minecraft/world/entity/ai/goal/MoveToBlockGoal/moveMobToBlock ()V +MD: net/minecraft/world/entity/ai/goal/MoveToBlockGoal/m_25625_ ()Z net/minecraft/world/entity/ai/goal/MoveToBlockGoal/isReachedTarget ()Z +MD: net/minecraft/world/entity/ai/goal/MoveToBlockGoal/m_25626_ ()Z net/minecraft/world/entity/ai/goal/MoveToBlockGoal/findNearestBlock ()Z +MD: net/minecraft/world/entity/ai/goal/MoveToBlockGoal/m_6099_ (Lnet/minecraft/world/entity/PathfinderMob;)I net/minecraft/world/entity/ai/goal/MoveToBlockGoal/nextStartTick (Lnet/minecraft/world/entity/PathfinderMob;)I +MD: net/minecraft/world/entity/ai/goal/MoveToBlockGoal/m_6465_ (Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/entity/ai/goal/MoveToBlockGoal/isValidTarget (Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/entity/ai/goal/MoveToBlockGoal/m_6669_ ()Lnet/minecraft/core/BlockPos; net/minecraft/world/entity/ai/goal/MoveToBlockGoal/getMoveToTarget ()Lnet/minecraft/core/BlockPos; +MD: net/minecraft/world/entity/ai/goal/MoveToBlockGoal/m_8036_ ()Z net/minecraft/world/entity/ai/goal/MoveToBlockGoal/canUse ()Z +MD: net/minecraft/world/entity/ai/goal/MoveToBlockGoal/m_8037_ ()V net/minecraft/world/entity/ai/goal/MoveToBlockGoal/tick ()V +MD: net/minecraft/world/entity/ai/goal/MoveToBlockGoal/m_8045_ ()Z net/minecraft/world/entity/ai/goal/MoveToBlockGoal/canContinueToUse ()Z +MD: net/minecraft/world/entity/ai/goal/MoveToBlockGoal/m_8052_ ()D net/minecraft/world/entity/ai/goal/MoveToBlockGoal/acceptedDistance ()D +MD: net/minecraft/world/entity/ai/goal/MoveToBlockGoal/m_8056_ ()V net/minecraft/world/entity/ai/goal/MoveToBlockGoal/start ()V +MD: net/minecraft/world/entity/ai/goal/MoveToBlockGoal/m_8064_ ()Z net/minecraft/world/entity/ai/goal/MoveToBlockGoal/shouldRecalculatePath ()Z +MD: net/minecraft/world/entity/ai/goal/MoveTowardsRestrictionGoal/ (Lnet/minecraft/world/entity/PathfinderMob;D)V net/minecraft/world/entity/ai/goal/MoveTowardsRestrictionGoal/ (Lnet/minecraft/world/entity/PathfinderMob;D)V +MD: net/minecraft/world/entity/ai/goal/MoveTowardsRestrictionGoal/m_8036_ ()Z net/minecraft/world/entity/ai/goal/MoveTowardsRestrictionGoal/canUse ()Z +MD: net/minecraft/world/entity/ai/goal/MoveTowardsRestrictionGoal/m_8045_ ()Z net/minecraft/world/entity/ai/goal/MoveTowardsRestrictionGoal/canContinueToUse ()Z +MD: net/minecraft/world/entity/ai/goal/MoveTowardsRestrictionGoal/m_8056_ ()V net/minecraft/world/entity/ai/goal/MoveTowardsRestrictionGoal/start ()V +MD: net/minecraft/world/entity/ai/goal/MoveTowardsTargetGoal/ (Lnet/minecraft/world/entity/PathfinderMob;DF)V net/minecraft/world/entity/ai/goal/MoveTowardsTargetGoal/ (Lnet/minecraft/world/entity/PathfinderMob;DF)V +MD: net/minecraft/world/entity/ai/goal/MoveTowardsTargetGoal/m_8036_ ()Z net/minecraft/world/entity/ai/goal/MoveTowardsTargetGoal/canUse ()Z +MD: net/minecraft/world/entity/ai/goal/MoveTowardsTargetGoal/m_8041_ ()V net/minecraft/world/entity/ai/goal/MoveTowardsTargetGoal/stop ()V +MD: net/minecraft/world/entity/ai/goal/MoveTowardsTargetGoal/m_8045_ ()Z net/minecraft/world/entity/ai/goal/MoveTowardsTargetGoal/canContinueToUse ()Z +MD: net/minecraft/world/entity/ai/goal/MoveTowardsTargetGoal/m_8056_ ()V net/minecraft/world/entity/ai/goal/MoveTowardsTargetGoal/start ()V +MD: net/minecraft/world/entity/ai/goal/OcelotAttackGoal/ (Lnet/minecraft/world/entity/Mob;)V net/minecraft/world/entity/ai/goal/OcelotAttackGoal/ (Lnet/minecraft/world/entity/Mob;)V +MD: net/minecraft/world/entity/ai/goal/OcelotAttackGoal/m_183429_ ()Z net/minecraft/world/entity/ai/goal/OcelotAttackGoal/requiresUpdateEveryTick ()Z +MD: net/minecraft/world/entity/ai/goal/OcelotAttackGoal/m_8036_ ()Z net/minecraft/world/entity/ai/goal/OcelotAttackGoal/canUse ()Z +MD: net/minecraft/world/entity/ai/goal/OcelotAttackGoal/m_8037_ ()V net/minecraft/world/entity/ai/goal/OcelotAttackGoal/tick ()V +MD: net/minecraft/world/entity/ai/goal/OcelotAttackGoal/m_8041_ ()V net/minecraft/world/entity/ai/goal/OcelotAttackGoal/stop ()V +MD: net/minecraft/world/entity/ai/goal/OcelotAttackGoal/m_8045_ ()Z net/minecraft/world/entity/ai/goal/OcelotAttackGoal/canContinueToUse ()Z +MD: net/minecraft/world/entity/ai/goal/OfferFlowerGoal/ ()V net/minecraft/world/entity/ai/goal/OfferFlowerGoal/ ()V +MD: net/minecraft/world/entity/ai/goal/OfferFlowerGoal/ (Lnet/minecraft/world/entity/animal/IronGolem;)V net/minecraft/world/entity/ai/goal/OfferFlowerGoal/ (Lnet/minecraft/world/entity/animal/IronGolem;)V +MD: net/minecraft/world/entity/ai/goal/OfferFlowerGoal/m_8036_ ()Z net/minecraft/world/entity/ai/goal/OfferFlowerGoal/canUse ()Z +MD: net/minecraft/world/entity/ai/goal/OfferFlowerGoal/m_8037_ ()V net/minecraft/world/entity/ai/goal/OfferFlowerGoal/tick ()V +MD: net/minecraft/world/entity/ai/goal/OfferFlowerGoal/m_8041_ ()V net/minecraft/world/entity/ai/goal/OfferFlowerGoal/stop ()V +MD: net/minecraft/world/entity/ai/goal/OfferFlowerGoal/m_8045_ ()Z net/minecraft/world/entity/ai/goal/OfferFlowerGoal/canContinueToUse ()Z +MD: net/minecraft/world/entity/ai/goal/OfferFlowerGoal/m_8056_ ()V net/minecraft/world/entity/ai/goal/OfferFlowerGoal/start ()V +MD: net/minecraft/world/entity/ai/goal/OpenDoorGoal/ (Lnet/minecraft/world/entity/Mob;Z)V net/minecraft/world/entity/ai/goal/OpenDoorGoal/ (Lnet/minecraft/world/entity/Mob;Z)V +MD: net/minecraft/world/entity/ai/goal/OpenDoorGoal/m_8037_ ()V net/minecraft/world/entity/ai/goal/OpenDoorGoal/tick ()V +MD: net/minecraft/world/entity/ai/goal/OpenDoorGoal/m_8041_ ()V net/minecraft/world/entity/ai/goal/OpenDoorGoal/stop ()V +MD: net/minecraft/world/entity/ai/goal/OpenDoorGoal/m_8045_ ()Z net/minecraft/world/entity/ai/goal/OpenDoorGoal/canContinueToUse ()Z +MD: net/minecraft/world/entity/ai/goal/OpenDoorGoal/m_8056_ ()V net/minecraft/world/entity/ai/goal/OpenDoorGoal/start ()V +MD: net/minecraft/world/entity/ai/goal/PanicGoal/ (Lnet/minecraft/world/entity/PathfinderMob;D)V net/minecraft/world/entity/ai/goal/PanicGoal/ (Lnet/minecraft/world/entity/PathfinderMob;D)V +MD: net/minecraft/world/entity/ai/goal/PanicGoal/m_196647_ (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/entity/ai/goal/PanicGoal/lambda$lookForWater$0 (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/entity/ai/goal/PanicGoal/m_198172_ (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/world/entity/Entity;I)Lnet/minecraft/core/BlockPos; net/minecraft/world/entity/ai/goal/PanicGoal/lookForWater (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/world/entity/Entity;I)Lnet/minecraft/core/BlockPos; +MD: net/minecraft/world/entity/ai/goal/PanicGoal/m_202729_ ()Z net/minecraft/world/entity/ai/goal/PanicGoal/shouldPanic ()Z +MD: net/minecraft/world/entity/ai/goal/PanicGoal/m_25702_ ()Z net/minecraft/world/entity/ai/goal/PanicGoal/findRandomPosition ()Z +MD: net/minecraft/world/entity/ai/goal/PanicGoal/m_25703_ ()Z net/minecraft/world/entity/ai/goal/PanicGoal/isRunning ()Z +MD: net/minecraft/world/entity/ai/goal/PanicGoal/m_8036_ ()Z net/minecraft/world/entity/ai/goal/PanicGoal/canUse ()Z +MD: net/minecraft/world/entity/ai/goal/PanicGoal/m_8041_ ()V net/minecraft/world/entity/ai/goal/PanicGoal/stop ()V +MD: net/minecraft/world/entity/ai/goal/PanicGoal/m_8045_ ()Z net/minecraft/world/entity/ai/goal/PanicGoal/canContinueToUse ()Z +MD: net/minecraft/world/entity/ai/goal/PanicGoal/m_8056_ ()V net/minecraft/world/entity/ai/goal/PanicGoal/start ()V +MD: net/minecraft/world/entity/ai/goal/PathfindToRaidGoal/ (Lnet/minecraft/world/entity/raid/Raider;)V net/minecraft/world/entity/ai/goal/PathfindToRaidGoal/ (Lnet/minecraft/world/entity/raid/Raider;)V +MD: net/minecraft/world/entity/ai/goal/PathfindToRaidGoal/m_25708_ (Lnet/minecraft/world/entity/raid/Raid;)V net/minecraft/world/entity/ai/goal/PathfindToRaidGoal/recruitNearby (Lnet/minecraft/world/entity/raid/Raid;)V +MD: net/minecraft/world/entity/ai/goal/PathfindToRaidGoal/m_25710_ (Lnet/minecraft/world/entity/raid/Raid;Lnet/minecraft/world/entity/raid/Raider;)Z net/minecraft/world/entity/ai/goal/PathfindToRaidGoal/lambda$recruitNearby$0 (Lnet/minecraft/world/entity/raid/Raid;Lnet/minecraft/world/entity/raid/Raider;)Z +MD: net/minecraft/world/entity/ai/goal/PathfindToRaidGoal/m_8036_ ()Z net/minecraft/world/entity/ai/goal/PathfindToRaidGoal/canUse ()Z +MD: net/minecraft/world/entity/ai/goal/PathfindToRaidGoal/m_8037_ ()V net/minecraft/world/entity/ai/goal/PathfindToRaidGoal/tick ()V +MD: net/minecraft/world/entity/ai/goal/PathfindToRaidGoal/m_8045_ ()Z net/minecraft/world/entity/ai/goal/PathfindToRaidGoal/canContinueToUse ()Z +MD: net/minecraft/world/entity/ai/goal/RandomLookAroundGoal/ (Lnet/minecraft/world/entity/Mob;)V net/minecraft/world/entity/ai/goal/RandomLookAroundGoal/ (Lnet/minecraft/world/entity/Mob;)V +MD: net/minecraft/world/entity/ai/goal/RandomLookAroundGoal/m_183429_ ()Z net/minecraft/world/entity/ai/goal/RandomLookAroundGoal/requiresUpdateEveryTick ()Z +MD: net/minecraft/world/entity/ai/goal/RandomLookAroundGoal/m_8036_ ()Z net/minecraft/world/entity/ai/goal/RandomLookAroundGoal/canUse ()Z +MD: net/minecraft/world/entity/ai/goal/RandomLookAroundGoal/m_8037_ ()V net/minecraft/world/entity/ai/goal/RandomLookAroundGoal/tick ()V +MD: net/minecraft/world/entity/ai/goal/RandomLookAroundGoal/m_8045_ ()Z net/minecraft/world/entity/ai/goal/RandomLookAroundGoal/canContinueToUse ()Z +MD: net/minecraft/world/entity/ai/goal/RandomLookAroundGoal/m_8056_ ()V net/minecraft/world/entity/ai/goal/RandomLookAroundGoal/start ()V +MD: net/minecraft/world/entity/ai/goal/RandomStandGoal/ (Lnet/minecraft/world/entity/animal/horse/AbstractHorse;)V net/minecraft/world/entity/ai/goal/RandomStandGoal/ (Lnet/minecraft/world/entity/animal/horse/AbstractHorse;)V +MD: net/minecraft/world/entity/ai/goal/RandomStandGoal/m_183429_ ()Z net/minecraft/world/entity/ai/goal/RandomStandGoal/requiresUpdateEveryTick ()Z +MD: net/minecraft/world/entity/ai/goal/RandomStandGoal/m_245867_ (Lnet/minecraft/world/entity/animal/horse/AbstractHorse;)V net/minecraft/world/entity/ai/goal/RandomStandGoal/resetStandInterval (Lnet/minecraft/world/entity/animal/horse/AbstractHorse;)V +MD: net/minecraft/world/entity/ai/goal/RandomStandGoal/m_247344_ ()V net/minecraft/world/entity/ai/goal/RandomStandGoal/playStandSound ()V +MD: net/minecraft/world/entity/ai/goal/RandomStandGoal/m_8036_ ()Z net/minecraft/world/entity/ai/goal/RandomStandGoal/canUse ()Z +MD: net/minecraft/world/entity/ai/goal/RandomStandGoal/m_8045_ ()Z net/minecraft/world/entity/ai/goal/RandomStandGoal/canContinueToUse ()Z +MD: net/minecraft/world/entity/ai/goal/RandomStandGoal/m_8056_ ()V net/minecraft/world/entity/ai/goal/RandomStandGoal/start ()V +MD: net/minecraft/world/entity/ai/goal/RandomStrollGoal/ (Lnet/minecraft/world/entity/PathfinderMob;D)V net/minecraft/world/entity/ai/goal/RandomStrollGoal/ (Lnet/minecraft/world/entity/PathfinderMob;D)V +MD: net/minecraft/world/entity/ai/goal/RandomStrollGoal/ (Lnet/minecraft/world/entity/PathfinderMob;DI)V net/minecraft/world/entity/ai/goal/RandomStrollGoal/ (Lnet/minecraft/world/entity/PathfinderMob;DI)V +MD: net/minecraft/world/entity/ai/goal/RandomStrollGoal/ (Lnet/minecraft/world/entity/PathfinderMob;DIZ)V net/minecraft/world/entity/ai/goal/RandomStrollGoal/ (Lnet/minecraft/world/entity/PathfinderMob;DIZ)V +MD: net/minecraft/world/entity/ai/goal/RandomStrollGoal/m_25746_ (I)V net/minecraft/world/entity/ai/goal/RandomStrollGoal/setInterval (I)V +MD: net/minecraft/world/entity/ai/goal/RandomStrollGoal/m_25751_ ()V net/minecraft/world/entity/ai/goal/RandomStrollGoal/trigger ()V +MD: net/minecraft/world/entity/ai/goal/RandomStrollGoal/m_7037_ ()Lnet/minecraft/world/phys/Vec3; net/minecraft/world/entity/ai/goal/RandomStrollGoal/getPosition ()Lnet/minecraft/world/phys/Vec3; +MD: net/minecraft/world/entity/ai/goal/RandomStrollGoal/m_8036_ ()Z net/minecraft/world/entity/ai/goal/RandomStrollGoal/canUse ()Z +MD: net/minecraft/world/entity/ai/goal/RandomStrollGoal/m_8041_ ()V net/minecraft/world/entity/ai/goal/RandomStrollGoal/stop ()V +MD: net/minecraft/world/entity/ai/goal/RandomStrollGoal/m_8045_ ()Z net/minecraft/world/entity/ai/goal/RandomStrollGoal/canContinueToUse ()Z +MD: net/minecraft/world/entity/ai/goal/RandomStrollGoal/m_8056_ ()V net/minecraft/world/entity/ai/goal/RandomStrollGoal/start ()V +MD: net/minecraft/world/entity/ai/goal/RandomSwimmingGoal/ (Lnet/minecraft/world/entity/PathfinderMob;DI)V net/minecraft/world/entity/ai/goal/RandomSwimmingGoal/ (Lnet/minecraft/world/entity/PathfinderMob;DI)V +MD: net/minecraft/world/entity/ai/goal/RandomSwimmingGoal/m_7037_ ()Lnet/minecraft/world/phys/Vec3; net/minecraft/world/entity/ai/goal/RandomSwimmingGoal/getPosition ()Lnet/minecraft/world/phys/Vec3; +MD: net/minecraft/world/entity/ai/goal/RangedAttackGoal/ (Lnet/minecraft/world/entity/monster/RangedAttackMob;DIF)V net/minecraft/world/entity/ai/goal/RangedAttackGoal/ (Lnet/minecraft/world/entity/monster/RangedAttackMob;DIF)V +MD: net/minecraft/world/entity/ai/goal/RangedAttackGoal/ (Lnet/minecraft/world/entity/monster/RangedAttackMob;DIIF)V net/minecraft/world/entity/ai/goal/RangedAttackGoal/ (Lnet/minecraft/world/entity/monster/RangedAttackMob;DIIF)V +MD: net/minecraft/world/entity/ai/goal/RangedAttackGoal/m_183429_ ()Z net/minecraft/world/entity/ai/goal/RangedAttackGoal/requiresUpdateEveryTick ()Z +MD: net/minecraft/world/entity/ai/goal/RangedAttackGoal/m_8036_ ()Z net/minecraft/world/entity/ai/goal/RangedAttackGoal/canUse ()Z +MD: net/minecraft/world/entity/ai/goal/RangedAttackGoal/m_8037_ ()V net/minecraft/world/entity/ai/goal/RangedAttackGoal/tick ()V +MD: net/minecraft/world/entity/ai/goal/RangedAttackGoal/m_8041_ ()V net/minecraft/world/entity/ai/goal/RangedAttackGoal/stop ()V +MD: net/minecraft/world/entity/ai/goal/RangedAttackGoal/m_8045_ ()Z net/minecraft/world/entity/ai/goal/RangedAttackGoal/canContinueToUse ()Z +MD: net/minecraft/world/entity/ai/goal/RangedBowAttackGoal/ (Lnet/minecraft/world/entity/monster/Monster;DIF)V net/minecraft/world/entity/ai/goal/RangedBowAttackGoal/ (Lnet/minecraft/world/entity/monster/Monster;DIF)V +MD: net/minecraft/world/entity/ai/goal/RangedBowAttackGoal/m_183429_ ()Z net/minecraft/world/entity/ai/goal/RangedBowAttackGoal/requiresUpdateEveryTick ()Z +MD: net/minecraft/world/entity/ai/goal/RangedBowAttackGoal/m_25797_ (I)V net/minecraft/world/entity/ai/goal/RangedBowAttackGoal/setMinAttackInterval (I)V +MD: net/minecraft/world/entity/ai/goal/RangedBowAttackGoal/m_25803_ ()Z net/minecraft/world/entity/ai/goal/RangedBowAttackGoal/isHoldingBow ()Z +MD: net/minecraft/world/entity/ai/goal/RangedBowAttackGoal/m_8036_ ()Z net/minecraft/world/entity/ai/goal/RangedBowAttackGoal/canUse ()Z +MD: net/minecraft/world/entity/ai/goal/RangedBowAttackGoal/m_8037_ ()V net/minecraft/world/entity/ai/goal/RangedBowAttackGoal/tick ()V +MD: net/minecraft/world/entity/ai/goal/RangedBowAttackGoal/m_8041_ ()V net/minecraft/world/entity/ai/goal/RangedBowAttackGoal/stop ()V +MD: net/minecraft/world/entity/ai/goal/RangedBowAttackGoal/m_8045_ ()Z net/minecraft/world/entity/ai/goal/RangedBowAttackGoal/canContinueToUse ()Z +MD: net/minecraft/world/entity/ai/goal/RangedBowAttackGoal/m_8056_ ()V net/minecraft/world/entity/ai/goal/RangedBowAttackGoal/start ()V +MD: net/minecraft/world/entity/ai/goal/RangedCrossbowAttackGoal/ ()V net/minecraft/world/entity/ai/goal/RangedCrossbowAttackGoal/ ()V +MD: net/minecraft/world/entity/ai/goal/RangedCrossbowAttackGoal/ (Lnet/minecraft/world/entity/monster/Monster;DF)V net/minecraft/world/entity/ai/goal/RangedCrossbowAttackGoal/ (Lnet/minecraft/world/entity/monster/Monster;DF)V +MD: net/minecraft/world/entity/ai/goal/RangedCrossbowAttackGoal/m_183429_ ()Z net/minecraft/world/entity/ai/goal/RangedCrossbowAttackGoal/requiresUpdateEveryTick ()Z +MD: net/minecraft/world/entity/ai/goal/RangedCrossbowAttackGoal/m_25821_ ()Z net/minecraft/world/entity/ai/goal/RangedCrossbowAttackGoal/isHoldingCrossbow ()Z +MD: net/minecraft/world/entity/ai/goal/RangedCrossbowAttackGoal/m_25822_ ()Z net/minecraft/world/entity/ai/goal/RangedCrossbowAttackGoal/isValidTarget ()Z +MD: net/minecraft/world/entity/ai/goal/RangedCrossbowAttackGoal/m_25823_ ()Z net/minecraft/world/entity/ai/goal/RangedCrossbowAttackGoal/canRun ()Z +MD: net/minecraft/world/entity/ai/goal/RangedCrossbowAttackGoal/m_8036_ ()Z net/minecraft/world/entity/ai/goal/RangedCrossbowAttackGoal/canUse ()Z +MD: net/minecraft/world/entity/ai/goal/RangedCrossbowAttackGoal/m_8037_ ()V net/minecraft/world/entity/ai/goal/RangedCrossbowAttackGoal/tick ()V +MD: net/minecraft/world/entity/ai/goal/RangedCrossbowAttackGoal/m_8041_ ()V net/minecraft/world/entity/ai/goal/RangedCrossbowAttackGoal/stop ()V +MD: net/minecraft/world/entity/ai/goal/RangedCrossbowAttackGoal/m_8045_ ()Z net/minecraft/world/entity/ai/goal/RangedCrossbowAttackGoal/canContinueToUse ()Z +MD: net/minecraft/world/entity/ai/goal/RangedCrossbowAttackGoal$CrossbowState/ ()V net/minecraft/world/entity/ai/goal/RangedCrossbowAttackGoal$CrossbowState/ ()V +MD: net/minecraft/world/entity/ai/goal/RangedCrossbowAttackGoal$CrossbowState/ (Ljava/lang/String;I)V net/minecraft/world/entity/ai/goal/RangedCrossbowAttackGoal$CrossbowState/ (Ljava/lang/String;I)V +MD: net/minecraft/world/entity/ai/goal/RangedCrossbowAttackGoal$CrossbowState/m_148134_ ()[Lnet/minecraft/world/entity/ai/goal/RangedCrossbowAttackGoal$CrossbowState; net/minecraft/world/entity/ai/goal/RangedCrossbowAttackGoal$CrossbowState/$values ()[Lnet/minecraft/world/entity/ai/goal/RangedCrossbowAttackGoal$CrossbowState; +MD: net/minecraft/world/entity/ai/goal/RangedCrossbowAttackGoal$CrossbowState/valueOf (Ljava/lang/String;)Lnet/minecraft/world/entity/ai/goal/RangedCrossbowAttackGoal$CrossbowState; net/minecraft/world/entity/ai/goal/RangedCrossbowAttackGoal$CrossbowState/valueOf (Ljava/lang/String;)Lnet/minecraft/world/entity/ai/goal/RangedCrossbowAttackGoal$CrossbowState; +MD: net/minecraft/world/entity/ai/goal/RangedCrossbowAttackGoal$CrossbowState/values ()[Lnet/minecraft/world/entity/ai/goal/RangedCrossbowAttackGoal$CrossbowState; net/minecraft/world/entity/ai/goal/RangedCrossbowAttackGoal$CrossbowState/values ()[Lnet/minecraft/world/entity/ai/goal/RangedCrossbowAttackGoal$CrossbowState; +MD: net/minecraft/world/entity/ai/goal/RemoveBlockGoal/ (Lnet/minecraft/world/level/block/Block;Lnet/minecraft/world/entity/PathfinderMob;DI)V net/minecraft/world/entity/ai/goal/RemoveBlockGoal/ (Lnet/minecraft/world/level/block/Block;Lnet/minecraft/world/entity/PathfinderMob;DI)V +MD: net/minecraft/world/entity/ai/goal/RemoveBlockGoal/m_25852_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/BlockGetter;)Lnet/minecraft/core/BlockPos; net/minecraft/world/entity/ai/goal/RemoveBlockGoal/getPosWithBlock (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/BlockGetter;)Lnet/minecraft/core/BlockPos; +MD: net/minecraft/world/entity/ai/goal/RemoveBlockGoal/m_5777_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;)V net/minecraft/world/entity/ai/goal/RemoveBlockGoal/playBreakSound (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/world/entity/ai/goal/RemoveBlockGoal/m_6465_ (Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/entity/ai/goal/RemoveBlockGoal/isValidTarget (Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/entity/ai/goal/RemoveBlockGoal/m_7659_ (Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;)V net/minecraft/world/entity/ai/goal/RemoveBlockGoal/playDestroyProgressSound (Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/world/entity/ai/goal/RemoveBlockGoal/m_8036_ ()Z net/minecraft/world/entity/ai/goal/RemoveBlockGoal/canUse ()Z +MD: net/minecraft/world/entity/ai/goal/RemoveBlockGoal/m_8037_ ()V net/minecraft/world/entity/ai/goal/RemoveBlockGoal/tick ()V +MD: net/minecraft/world/entity/ai/goal/RemoveBlockGoal/m_8041_ ()V net/minecraft/world/entity/ai/goal/RemoveBlockGoal/stop ()V +MD: net/minecraft/world/entity/ai/goal/RemoveBlockGoal/m_8056_ ()V net/minecraft/world/entity/ai/goal/RemoveBlockGoal/start ()V +MD: net/minecraft/world/entity/ai/goal/RestrictSunGoal/ (Lnet/minecraft/world/entity/PathfinderMob;)V net/minecraft/world/entity/ai/goal/RestrictSunGoal/ (Lnet/minecraft/world/entity/PathfinderMob;)V +MD: net/minecraft/world/entity/ai/goal/RestrictSunGoal/m_8036_ ()Z net/minecraft/world/entity/ai/goal/RestrictSunGoal/canUse ()Z +MD: net/minecraft/world/entity/ai/goal/RestrictSunGoal/m_8041_ ()V net/minecraft/world/entity/ai/goal/RestrictSunGoal/stop ()V +MD: net/minecraft/world/entity/ai/goal/RestrictSunGoal/m_8056_ ()V net/minecraft/world/entity/ai/goal/RestrictSunGoal/start ()V +MD: net/minecraft/world/entity/ai/goal/RunAroundLikeCrazyGoal/ (Lnet/minecraft/world/entity/animal/horse/AbstractHorse;D)V net/minecraft/world/entity/ai/goal/RunAroundLikeCrazyGoal/ (Lnet/minecraft/world/entity/animal/horse/AbstractHorse;D)V +MD: net/minecraft/world/entity/ai/goal/RunAroundLikeCrazyGoal/m_8036_ ()Z net/minecraft/world/entity/ai/goal/RunAroundLikeCrazyGoal/canUse ()Z +MD: net/minecraft/world/entity/ai/goal/RunAroundLikeCrazyGoal/m_8037_ ()V net/minecraft/world/entity/ai/goal/RunAroundLikeCrazyGoal/tick ()V +MD: net/minecraft/world/entity/ai/goal/RunAroundLikeCrazyGoal/m_8045_ ()Z net/minecraft/world/entity/ai/goal/RunAroundLikeCrazyGoal/canContinueToUse ()Z +MD: net/minecraft/world/entity/ai/goal/RunAroundLikeCrazyGoal/m_8056_ ()V net/minecraft/world/entity/ai/goal/RunAroundLikeCrazyGoal/start ()V +MD: net/minecraft/world/entity/ai/goal/SitWhenOrderedToGoal/ (Lnet/minecraft/world/entity/TamableAnimal;)V net/minecraft/world/entity/ai/goal/SitWhenOrderedToGoal/ (Lnet/minecraft/world/entity/TamableAnimal;)V +MD: net/minecraft/world/entity/ai/goal/SitWhenOrderedToGoal/m_8036_ ()Z net/minecraft/world/entity/ai/goal/SitWhenOrderedToGoal/canUse ()Z +MD: net/minecraft/world/entity/ai/goal/SitWhenOrderedToGoal/m_8041_ ()V net/minecraft/world/entity/ai/goal/SitWhenOrderedToGoal/stop ()V +MD: net/minecraft/world/entity/ai/goal/SitWhenOrderedToGoal/m_8045_ ()Z net/minecraft/world/entity/ai/goal/SitWhenOrderedToGoal/canContinueToUse ()Z +MD: net/minecraft/world/entity/ai/goal/SitWhenOrderedToGoal/m_8056_ ()V net/minecraft/world/entity/ai/goal/SitWhenOrderedToGoal/start ()V +MD: net/minecraft/world/entity/ai/goal/StrollThroughVillageGoal/ (Lnet/minecraft/world/entity/PathfinderMob;I)V net/minecraft/world/entity/ai/goal/StrollThroughVillageGoal/ (Lnet/minecraft/world/entity/PathfinderMob;I)V +MD: net/minecraft/world/entity/ai/goal/StrollThroughVillageGoal/m_25910_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;)D net/minecraft/world/entity/ai/goal/StrollThroughVillageGoal/lambda$canUse$0 (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;)D +MD: net/minecraft/world/entity/ai/goal/StrollThroughVillageGoal/m_25915_ ()V net/minecraft/world/entity/ai/goal/StrollThroughVillageGoal/moveRandomly ()V +MD: net/minecraft/world/entity/ai/goal/StrollThroughVillageGoal/m_8036_ ()Z net/minecraft/world/entity/ai/goal/StrollThroughVillageGoal/canUse ()Z +MD: net/minecraft/world/entity/ai/goal/StrollThroughVillageGoal/m_8037_ ()V net/minecraft/world/entity/ai/goal/StrollThroughVillageGoal/tick ()V +MD: net/minecraft/world/entity/ai/goal/StrollThroughVillageGoal/m_8045_ ()Z net/minecraft/world/entity/ai/goal/StrollThroughVillageGoal/canContinueToUse ()Z +MD: net/minecraft/world/entity/ai/goal/SwellGoal/ (Lnet/minecraft/world/entity/monster/Creeper;)V net/minecraft/world/entity/ai/goal/SwellGoal/ (Lnet/minecraft/world/entity/monster/Creeper;)V +MD: net/minecraft/world/entity/ai/goal/SwellGoal/m_183429_ ()Z net/minecraft/world/entity/ai/goal/SwellGoal/requiresUpdateEveryTick ()Z +MD: net/minecraft/world/entity/ai/goal/SwellGoal/m_8036_ ()Z net/minecraft/world/entity/ai/goal/SwellGoal/canUse ()Z +MD: net/minecraft/world/entity/ai/goal/SwellGoal/m_8037_ ()V net/minecraft/world/entity/ai/goal/SwellGoal/tick ()V +MD: net/minecraft/world/entity/ai/goal/SwellGoal/m_8041_ ()V net/minecraft/world/entity/ai/goal/SwellGoal/stop ()V +MD: net/minecraft/world/entity/ai/goal/SwellGoal/m_8056_ ()V net/minecraft/world/entity/ai/goal/SwellGoal/start ()V +MD: net/minecraft/world/entity/ai/goal/TemptGoal/ ()V net/minecraft/world/entity/ai/goal/TemptGoal/ ()V +MD: net/minecraft/world/entity/ai/goal/TemptGoal/ (Lnet/minecraft/world/entity/PathfinderMob;DLnet/minecraft/world/item/crafting/Ingredient;Z)V net/minecraft/world/entity/ai/goal/TemptGoal/ (Lnet/minecraft/world/entity/PathfinderMob;DLnet/minecraft/world/item/crafting/Ingredient;Z)V +MD: net/minecraft/world/entity/ai/goal/TemptGoal/m_148138_ (Lnet/minecraft/world/entity/LivingEntity;)Z net/minecraft/world/entity/ai/goal/TemptGoal/shouldFollow (Lnet/minecraft/world/entity/LivingEntity;)Z +MD: net/minecraft/world/entity/ai/goal/TemptGoal/m_25955_ ()Z net/minecraft/world/entity/ai/goal/TemptGoal/isRunning ()Z +MD: net/minecraft/world/entity/ai/goal/TemptGoal/m_7497_ ()Z net/minecraft/world/entity/ai/goal/TemptGoal/canScare ()Z +MD: net/minecraft/world/entity/ai/goal/TemptGoal/m_8036_ ()Z net/minecraft/world/entity/ai/goal/TemptGoal/canUse ()Z +MD: net/minecraft/world/entity/ai/goal/TemptGoal/m_8037_ ()V net/minecraft/world/entity/ai/goal/TemptGoal/tick ()V +MD: net/minecraft/world/entity/ai/goal/TemptGoal/m_8041_ ()V net/minecraft/world/entity/ai/goal/TemptGoal/stop ()V +MD: net/minecraft/world/entity/ai/goal/TemptGoal/m_8045_ ()Z net/minecraft/world/entity/ai/goal/TemptGoal/canContinueToUse ()Z +MD: net/minecraft/world/entity/ai/goal/TemptGoal/m_8056_ ()V net/minecraft/world/entity/ai/goal/TemptGoal/start ()V +MD: net/minecraft/world/entity/ai/goal/TradeWithPlayerGoal/ (Lnet/minecraft/world/entity/npc/AbstractVillager;)V net/minecraft/world/entity/ai/goal/TradeWithPlayerGoal/ (Lnet/minecraft/world/entity/npc/AbstractVillager;)V +MD: net/minecraft/world/entity/ai/goal/TradeWithPlayerGoal/m_8036_ ()Z net/minecraft/world/entity/ai/goal/TradeWithPlayerGoal/canUse ()Z +MD: net/minecraft/world/entity/ai/goal/TradeWithPlayerGoal/m_8041_ ()V net/minecraft/world/entity/ai/goal/TradeWithPlayerGoal/stop ()V +MD: net/minecraft/world/entity/ai/goal/TradeWithPlayerGoal/m_8056_ ()V net/minecraft/world/entity/ai/goal/TradeWithPlayerGoal/start ()V +MD: net/minecraft/world/entity/ai/goal/TryFindWaterGoal/ (Lnet/minecraft/world/entity/PathfinderMob;)V net/minecraft/world/entity/ai/goal/TryFindWaterGoal/ (Lnet/minecraft/world/entity/PathfinderMob;)V +MD: net/minecraft/world/entity/ai/goal/TryFindWaterGoal/m_8036_ ()Z net/minecraft/world/entity/ai/goal/TryFindWaterGoal/canUse ()Z +MD: net/minecraft/world/entity/ai/goal/TryFindWaterGoal/m_8056_ ()V net/minecraft/world/entity/ai/goal/TryFindWaterGoal/start ()V +MD: net/minecraft/world/entity/ai/goal/UseItemGoal/ (Lnet/minecraft/world/entity/Mob;Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/sounds/SoundEvent;Ljava/util/function/Predicate;)V net/minecraft/world/entity/ai/goal/UseItemGoal/ (Lnet/minecraft/world/entity/Mob;Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/sounds/SoundEvent;Ljava/util/function/Predicate;)V +MD: net/minecraft/world/entity/ai/goal/UseItemGoal/m_8036_ ()Z net/minecraft/world/entity/ai/goal/UseItemGoal/canUse ()Z +MD: net/minecraft/world/entity/ai/goal/UseItemGoal/m_8041_ ()V net/minecraft/world/entity/ai/goal/UseItemGoal/stop ()V +MD: net/minecraft/world/entity/ai/goal/UseItemGoal/m_8045_ ()Z net/minecraft/world/entity/ai/goal/UseItemGoal/canContinueToUse ()Z +MD: net/minecraft/world/entity/ai/goal/UseItemGoal/m_8056_ ()V net/minecraft/world/entity/ai/goal/UseItemGoal/start ()V +MD: net/minecraft/world/entity/ai/goal/WaterAvoidingRandomFlyingGoal/ (Lnet/minecraft/world/entity/PathfinderMob;D)V net/minecraft/world/entity/ai/goal/WaterAvoidingRandomFlyingGoal/ (Lnet/minecraft/world/entity/PathfinderMob;D)V +MD: net/minecraft/world/entity/ai/goal/WaterAvoidingRandomFlyingGoal/m_7037_ ()Lnet/minecraft/world/phys/Vec3; net/minecraft/world/entity/ai/goal/WaterAvoidingRandomFlyingGoal/getPosition ()Lnet/minecraft/world/phys/Vec3; +MD: net/minecraft/world/entity/ai/goal/WaterAvoidingRandomStrollGoal/ (Lnet/minecraft/world/entity/PathfinderMob;D)V net/minecraft/world/entity/ai/goal/WaterAvoidingRandomStrollGoal/ (Lnet/minecraft/world/entity/PathfinderMob;D)V +MD: net/minecraft/world/entity/ai/goal/WaterAvoidingRandomStrollGoal/ (Lnet/minecraft/world/entity/PathfinderMob;DF)V net/minecraft/world/entity/ai/goal/WaterAvoidingRandomStrollGoal/ (Lnet/minecraft/world/entity/PathfinderMob;DF)V +MD: net/minecraft/world/entity/ai/goal/WaterAvoidingRandomStrollGoal/m_7037_ ()Lnet/minecraft/world/phys/Vec3; net/minecraft/world/entity/ai/goal/WaterAvoidingRandomStrollGoal/getPosition ()Lnet/minecraft/world/phys/Vec3; +MD: net/minecraft/world/entity/ai/goal/WrappedGoal/ (ILnet/minecraft/world/entity/ai/goal/Goal;)V net/minecraft/world/entity/ai/goal/WrappedGoal/ (ILnet/minecraft/world/entity/ai/goal/Goal;)V +MD: net/minecraft/world/entity/ai/goal/WrappedGoal/equals (Ljava/lang/Object;)Z net/minecraft/world/entity/ai/goal/WrappedGoal/equals (Ljava/lang/Object;)Z +MD: net/minecraft/world/entity/ai/goal/WrappedGoal/hashCode ()I net/minecraft/world/entity/ai/goal/WrappedGoal/hashCode ()I +MD: net/minecraft/world/entity/ai/goal/WrappedGoal/m_183277_ (I)I net/minecraft/world/entity/ai/goal/WrappedGoal/adjustedTickDelay (I)I +MD: net/minecraft/world/entity/ai/goal/WrappedGoal/m_183429_ ()Z net/minecraft/world/entity/ai/goal/WrappedGoal/requiresUpdateEveryTick ()Z +MD: net/minecraft/world/entity/ai/goal/WrappedGoal/m_26002_ (Lnet/minecraft/world/entity/ai/goal/WrappedGoal;)Z net/minecraft/world/entity/ai/goal/WrappedGoal/canBeReplacedBy (Lnet/minecraft/world/entity/ai/goal/WrappedGoal;)Z +MD: net/minecraft/world/entity/ai/goal/WrappedGoal/m_26012_ ()I net/minecraft/world/entity/ai/goal/WrappedGoal/getPriority ()I +MD: net/minecraft/world/entity/ai/goal/WrappedGoal/m_26015_ ()Lnet/minecraft/world/entity/ai/goal/Goal; net/minecraft/world/entity/ai/goal/WrappedGoal/getGoal ()Lnet/minecraft/world/entity/ai/goal/Goal; +MD: net/minecraft/world/entity/ai/goal/WrappedGoal/m_6767_ ()Z net/minecraft/world/entity/ai/goal/WrappedGoal/isInterruptable ()Z +MD: net/minecraft/world/entity/ai/goal/WrappedGoal/m_7021_ (Ljava/util/EnumSet;)V net/minecraft/world/entity/ai/goal/WrappedGoal/setFlags (Ljava/util/EnumSet;)V +MD: net/minecraft/world/entity/ai/goal/WrappedGoal/m_7620_ ()Z net/minecraft/world/entity/ai/goal/WrappedGoal/isRunning ()Z +MD: net/minecraft/world/entity/ai/goal/WrappedGoal/m_7684_ ()Ljava/util/EnumSet; net/minecraft/world/entity/ai/goal/WrappedGoal/getFlags ()Ljava/util/EnumSet; +MD: net/minecraft/world/entity/ai/goal/WrappedGoal/m_8036_ ()Z net/minecraft/world/entity/ai/goal/WrappedGoal/canUse ()Z +MD: net/minecraft/world/entity/ai/goal/WrappedGoal/m_8037_ ()V net/minecraft/world/entity/ai/goal/WrappedGoal/tick ()V +MD: net/minecraft/world/entity/ai/goal/WrappedGoal/m_8041_ ()V net/minecraft/world/entity/ai/goal/WrappedGoal/stop ()V +MD: net/minecraft/world/entity/ai/goal/WrappedGoal/m_8045_ ()Z net/minecraft/world/entity/ai/goal/WrappedGoal/canContinueToUse ()Z +MD: net/minecraft/world/entity/ai/goal/WrappedGoal/m_8056_ ()V net/minecraft/world/entity/ai/goal/WrappedGoal/start ()V +MD: net/minecraft/world/entity/ai/goal/ZombieAttackGoal/ (Lnet/minecraft/world/entity/monster/Zombie;DZ)V net/minecraft/world/entity/ai/goal/ZombieAttackGoal/ (Lnet/minecraft/world/entity/monster/Zombie;DZ)V +MD: net/minecraft/world/entity/ai/goal/ZombieAttackGoal/m_8037_ ()V net/minecraft/world/entity/ai/goal/ZombieAttackGoal/tick ()V +MD: net/minecraft/world/entity/ai/goal/ZombieAttackGoal/m_8041_ ()V net/minecraft/world/entity/ai/goal/ZombieAttackGoal/stop ()V +MD: net/minecraft/world/entity/ai/goal/ZombieAttackGoal/m_8056_ ()V net/minecraft/world/entity/ai/goal/ZombieAttackGoal/start ()V +MD: net/minecraft/world/entity/ai/goal/target/DefendVillageTargetGoal/ (Lnet/minecraft/world/entity/animal/IronGolem;)V net/minecraft/world/entity/ai/goal/target/DefendVillageTargetGoal/ (Lnet/minecraft/world/entity/animal/IronGolem;)V +MD: net/minecraft/world/entity/ai/goal/target/DefendVillageTargetGoal/m_8036_ ()Z net/minecraft/world/entity/ai/goal/target/DefendVillageTargetGoal/canUse ()Z +MD: net/minecraft/world/entity/ai/goal/target/DefendVillageTargetGoal/m_8056_ ()V net/minecraft/world/entity/ai/goal/target/DefendVillageTargetGoal/start ()V +MD: net/minecraft/world/entity/ai/goal/target/HurtByTargetGoal/ ()V net/minecraft/world/entity/ai/goal/target/HurtByTargetGoal/ ()V +MD: net/minecraft/world/entity/ai/goal/target/HurtByTargetGoal/ (Lnet/minecraft/world/entity/PathfinderMob;[Ljava/lang/Class;)V net/minecraft/world/entity/ai/goal/target/HurtByTargetGoal/ (Lnet/minecraft/world/entity/PathfinderMob;[Ljava/lang/Class;)V +MD: net/minecraft/world/entity/ai/goal/target/HurtByTargetGoal/m_26044_ ([Ljava/lang/Class;)Lnet/minecraft/world/entity/ai/goal/target/HurtByTargetGoal; net/minecraft/world/entity/ai/goal/target/HurtByTargetGoal/setAlertOthers ([Ljava/lang/Class;)Lnet/minecraft/world/entity/ai/goal/target/HurtByTargetGoal; +MD: net/minecraft/world/entity/ai/goal/target/HurtByTargetGoal/m_26047_ ()V net/minecraft/world/entity/ai/goal/target/HurtByTargetGoal/alertOthers ()V +MD: net/minecraft/world/entity/ai/goal/target/HurtByTargetGoal/m_5766_ (Lnet/minecraft/world/entity/Mob;Lnet/minecraft/world/entity/LivingEntity;)V net/minecraft/world/entity/ai/goal/target/HurtByTargetGoal/alertOther (Lnet/minecraft/world/entity/Mob;Lnet/minecraft/world/entity/LivingEntity;)V +MD: net/minecraft/world/entity/ai/goal/target/HurtByTargetGoal/m_8036_ ()Z net/minecraft/world/entity/ai/goal/target/HurtByTargetGoal/canUse ()Z +MD: net/minecraft/world/entity/ai/goal/target/HurtByTargetGoal/m_8056_ ()V net/minecraft/world/entity/ai/goal/target/HurtByTargetGoal/start ()V +MD: net/minecraft/world/entity/ai/goal/target/NearestAttackableTargetGoal/ (Lnet/minecraft/world/entity/Mob;Ljava/lang/Class;Z)V net/minecraft/world/entity/ai/goal/target/NearestAttackableTargetGoal/ (Lnet/minecraft/world/entity/Mob;Ljava/lang/Class;Z)V +MD: net/minecraft/world/entity/ai/goal/target/NearestAttackableTargetGoal/ (Lnet/minecraft/world/entity/Mob;Ljava/lang/Class;ZLjava/util/function/Predicate;)V net/minecraft/world/entity/ai/goal/target/NearestAttackableTargetGoal/ (Lnet/minecraft/world/entity/Mob;Ljava/lang/Class;ZLjava/util/function/Predicate;)V +MD: net/minecraft/world/entity/ai/goal/target/NearestAttackableTargetGoal/ (Lnet/minecraft/world/entity/Mob;Ljava/lang/Class;ZZ)V net/minecraft/world/entity/ai/goal/target/NearestAttackableTargetGoal/ (Lnet/minecraft/world/entity/Mob;Ljava/lang/Class;ZZ)V +MD: net/minecraft/world/entity/ai/goal/target/NearestAttackableTargetGoal/ (Lnet/minecraft/world/entity/Mob;Ljava/lang/Class;IZZLjava/util/function/Predicate;)V net/minecraft/world/entity/ai/goal/target/NearestAttackableTargetGoal/ (Lnet/minecraft/world/entity/Mob;Ljava/lang/Class;IZZLjava/util/function/Predicate;)V +MD: net/minecraft/world/entity/ai/goal/target/NearestAttackableTargetGoal/m_148151_ (Lnet/minecraft/world/entity/LivingEntity;)Z net/minecraft/world/entity/ai/goal/target/NearestAttackableTargetGoal/lambda$findTarget$0 (Lnet/minecraft/world/entity/LivingEntity;)Z +MD: net/minecraft/world/entity/ai/goal/target/NearestAttackableTargetGoal/m_26070_ (Lnet/minecraft/world/entity/LivingEntity;)V net/minecraft/world/entity/ai/goal/target/NearestAttackableTargetGoal/setTarget (Lnet/minecraft/world/entity/LivingEntity;)V +MD: net/minecraft/world/entity/ai/goal/target/NearestAttackableTargetGoal/m_26073_ ()V net/minecraft/world/entity/ai/goal/target/NearestAttackableTargetGoal/findTarget ()V +MD: net/minecraft/world/entity/ai/goal/target/NearestAttackableTargetGoal/m_7255_ (D)Lnet/minecraft/world/phys/AABB; net/minecraft/world/entity/ai/goal/target/NearestAttackableTargetGoal/getTargetSearchArea (D)Lnet/minecraft/world/phys/AABB; +MD: net/minecraft/world/entity/ai/goal/target/NearestAttackableTargetGoal/m_8036_ ()Z net/minecraft/world/entity/ai/goal/target/NearestAttackableTargetGoal/canUse ()Z +MD: net/minecraft/world/entity/ai/goal/target/NearestAttackableTargetGoal/m_8056_ ()V net/minecraft/world/entity/ai/goal/target/NearestAttackableTargetGoal/start ()V +MD: net/minecraft/world/entity/ai/goal/target/NearestAttackableWitchTargetGoal/ (Lnet/minecraft/world/entity/raid/Raider;Ljava/lang/Class;IZZLjava/util/function/Predicate;)V net/minecraft/world/entity/ai/goal/target/NearestAttackableWitchTargetGoal/ (Lnet/minecraft/world/entity/raid/Raider;Ljava/lang/Class;IZZLjava/util/function/Predicate;)V +MD: net/minecraft/world/entity/ai/goal/target/NearestAttackableWitchTargetGoal/m_26083_ (Z)V net/minecraft/world/entity/ai/goal/target/NearestAttackableWitchTargetGoal/setCanAttack (Z)V +MD: net/minecraft/world/entity/ai/goal/target/NearestAttackableWitchTargetGoal/m_8036_ ()Z net/minecraft/world/entity/ai/goal/target/NearestAttackableWitchTargetGoal/canUse ()Z +MD: net/minecraft/world/entity/ai/goal/target/NearestHealableRaiderTargetGoal/ (Lnet/minecraft/world/entity/raid/Raider;Ljava/lang/Class;ZLjava/util/function/Predicate;)V net/minecraft/world/entity/ai/goal/target/NearestHealableRaiderTargetGoal/ (Lnet/minecraft/world/entity/raid/Raider;Ljava/lang/Class;ZLjava/util/function/Predicate;)V +MD: net/minecraft/world/entity/ai/goal/target/NearestHealableRaiderTargetGoal/m_26093_ ()I net/minecraft/world/entity/ai/goal/target/NearestHealableRaiderTargetGoal/getCooldown ()I +MD: net/minecraft/world/entity/ai/goal/target/NearestHealableRaiderTargetGoal/m_26094_ ()V net/minecraft/world/entity/ai/goal/target/NearestHealableRaiderTargetGoal/decrementCooldown ()V +MD: net/minecraft/world/entity/ai/goal/target/NearestHealableRaiderTargetGoal/m_8036_ ()Z net/minecraft/world/entity/ai/goal/target/NearestHealableRaiderTargetGoal/canUse ()Z +MD: net/minecraft/world/entity/ai/goal/target/NearestHealableRaiderTargetGoal/m_8056_ ()V net/minecraft/world/entity/ai/goal/target/NearestHealableRaiderTargetGoal/start ()V +MD: net/minecraft/world/entity/ai/goal/target/NonTameRandomTargetGoal/ (Lnet/minecraft/world/entity/TamableAnimal;Ljava/lang/Class;ZLjava/util/function/Predicate;)V net/minecraft/world/entity/ai/goal/target/NonTameRandomTargetGoal/ (Lnet/minecraft/world/entity/TamableAnimal;Ljava/lang/Class;ZLjava/util/function/Predicate;)V +MD: net/minecraft/world/entity/ai/goal/target/NonTameRandomTargetGoal/m_8036_ ()Z net/minecraft/world/entity/ai/goal/target/NonTameRandomTargetGoal/canUse ()Z +MD: net/minecraft/world/entity/ai/goal/target/NonTameRandomTargetGoal/m_8045_ ()Z net/minecraft/world/entity/ai/goal/target/NonTameRandomTargetGoal/canContinueToUse ()Z +MD: net/minecraft/world/entity/ai/goal/target/OwnerHurtByTargetGoal/ (Lnet/minecraft/world/entity/TamableAnimal;)V net/minecraft/world/entity/ai/goal/target/OwnerHurtByTargetGoal/ (Lnet/minecraft/world/entity/TamableAnimal;)V +MD: net/minecraft/world/entity/ai/goal/target/OwnerHurtByTargetGoal/m_8036_ ()Z net/minecraft/world/entity/ai/goal/target/OwnerHurtByTargetGoal/canUse ()Z +MD: net/minecraft/world/entity/ai/goal/target/OwnerHurtByTargetGoal/m_8056_ ()V net/minecraft/world/entity/ai/goal/target/OwnerHurtByTargetGoal/start ()V +MD: net/minecraft/world/entity/ai/goal/target/OwnerHurtTargetGoal/ (Lnet/minecraft/world/entity/TamableAnimal;)V net/minecraft/world/entity/ai/goal/target/OwnerHurtTargetGoal/ (Lnet/minecraft/world/entity/TamableAnimal;)V +MD: net/minecraft/world/entity/ai/goal/target/OwnerHurtTargetGoal/m_8036_ ()Z net/minecraft/world/entity/ai/goal/target/OwnerHurtTargetGoal/canUse ()Z +MD: net/minecraft/world/entity/ai/goal/target/OwnerHurtTargetGoal/m_8056_ ()V net/minecraft/world/entity/ai/goal/target/OwnerHurtTargetGoal/start ()V +MD: net/minecraft/world/entity/ai/goal/target/ResetUniversalAngerTargetGoal/ (Lnet/minecraft/world/entity/Mob;Z)V net/minecraft/world/entity/ai/goal/target/ResetUniversalAngerTargetGoal/ (Lnet/minecraft/world/entity/Mob;Z)V +MD: net/minecraft/world/entity/ai/goal/target/ResetUniversalAngerTargetGoal/m_26124_ (Lnet/minecraft/world/entity/Mob;)Lnet/minecraft/world/entity/NeutralMob; net/minecraft/world/entity/ai/goal/target/ResetUniversalAngerTargetGoal/lambda$start$1 (Lnet/minecraft/world/entity/Mob;)Lnet/minecraft/world/entity/NeutralMob; +MD: net/minecraft/world/entity/ai/goal/target/ResetUniversalAngerTargetGoal/m_26126_ (Lnet/minecraft/world/entity/Mob;)Z net/minecraft/world/entity/ai/goal/target/ResetUniversalAngerTargetGoal/lambda$start$0 (Lnet/minecraft/world/entity/Mob;)Z +MD: net/minecraft/world/entity/ai/goal/target/ResetUniversalAngerTargetGoal/m_26129_ ()Z net/minecraft/world/entity/ai/goal/target/ResetUniversalAngerTargetGoal/wasHurtByPlayer ()Z +MD: net/minecraft/world/entity/ai/goal/target/ResetUniversalAngerTargetGoal/m_26130_ ()Ljava/util/List; net/minecraft/world/entity/ai/goal/target/ResetUniversalAngerTargetGoal/getNearbyMobsOfSameType ()Ljava/util/List; +MD: net/minecraft/world/entity/ai/goal/target/ResetUniversalAngerTargetGoal/m_8036_ ()Z net/minecraft/world/entity/ai/goal/target/ResetUniversalAngerTargetGoal/canUse ()Z +MD: net/minecraft/world/entity/ai/goal/target/ResetUniversalAngerTargetGoal/m_8056_ ()V net/minecraft/world/entity/ai/goal/target/ResetUniversalAngerTargetGoal/start ()V +MD: net/minecraft/world/entity/ai/goal/target/TargetGoal/ (Lnet/minecraft/world/entity/Mob;Z)V net/minecraft/world/entity/ai/goal/target/TargetGoal/ (Lnet/minecraft/world/entity/Mob;Z)V +MD: net/minecraft/world/entity/ai/goal/target/TargetGoal/ (Lnet/minecraft/world/entity/Mob;ZZ)V net/minecraft/world/entity/ai/goal/target/TargetGoal/ (Lnet/minecraft/world/entity/Mob;ZZ)V +MD: net/minecraft/world/entity/ai/goal/target/TargetGoal/m_26146_ (I)Lnet/minecraft/world/entity/ai/goal/target/TargetGoal; net/minecraft/world/entity/ai/goal/target/TargetGoal/setUnseenMemoryTicks (I)Lnet/minecraft/world/entity/ai/goal/target/TargetGoal; +MD: net/minecraft/world/entity/ai/goal/target/TargetGoal/m_26148_ (Lnet/minecraft/world/entity/LivingEntity;)Z net/minecraft/world/entity/ai/goal/target/TargetGoal/canReach (Lnet/minecraft/world/entity/LivingEntity;)Z +MD: net/minecraft/world/entity/ai/goal/target/TargetGoal/m_26150_ (Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/entity/ai/targeting/TargetingConditions;)Z net/minecraft/world/entity/ai/goal/target/TargetGoal/canAttack (Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/entity/ai/targeting/TargetingConditions;)Z +MD: net/minecraft/world/entity/ai/goal/target/TargetGoal/m_7623_ ()D net/minecraft/world/entity/ai/goal/target/TargetGoal/getFollowDistance ()D +MD: net/minecraft/world/entity/ai/goal/target/TargetGoal/m_8041_ ()V net/minecraft/world/entity/ai/goal/target/TargetGoal/stop ()V +MD: net/minecraft/world/entity/ai/goal/target/TargetGoal/m_8045_ ()Z net/minecraft/world/entity/ai/goal/target/TargetGoal/canContinueToUse ()Z +MD: net/minecraft/world/entity/ai/goal/target/TargetGoal/m_8056_ ()V net/minecraft/world/entity/ai/goal/target/TargetGoal/start ()V +MD: net/minecraft/world/entity/ai/gossip/GossipContainer/ ()V net/minecraft/world/entity/ai/gossip/GossipContainer/ ()V +MD: net/minecraft/world/entity/ai/gossip/GossipContainer/ ()V net/minecraft/world/entity/ai/gossip/GossipContainer/ ()V +MD: net/minecraft/world/entity/ai/gossip/GossipContainer/m_148159_ ()Ljava/util/Map; net/minecraft/world/entity/ai/gossip/GossipContainer/getGossipEntries ()Ljava/util/Map; +MD: net/minecraft/world/entity/ai/gossip/GossipContainer/m_148160_ (Lnet/minecraft/world/entity/ai/gossip/GossipType;)V net/minecraft/world/entity/ai/gossip/GossipContainer/remove (Lnet/minecraft/world/entity/ai/gossip/GossipType;)V +MD: net/minecraft/world/entity/ai/gossip/GossipContainer/m_148162_ (Lnet/minecraft/world/entity/ai/gossip/GossipType;Ljava/util/function/DoublePredicate;)J net/minecraft/world/entity/ai/gossip/GossipContainer/getCountForType (Lnet/minecraft/world/entity/ai/gossip/GossipType;Ljava/util/function/DoublePredicate;)J +MD: net/minecraft/world/entity/ai/gossip/GossipContainer/m_148165_ (Ljava/util/Map;Ljava/util/UUID;)V net/minecraft/world/entity/ai/gossip/GossipContainer/lambda$getGossipEntries$0 (Ljava/util/Map;Ljava/util/UUID;)V +MD: net/minecraft/world/entity/ai/gossip/GossipContainer/m_148168_ (Ljava/util/UUID;Lnet/minecraft/world/entity/ai/gossip/GossipType;)V net/minecraft/world/entity/ai/gossip/GossipContainer/remove (Ljava/util/UUID;Lnet/minecraft/world/entity/ai/gossip/GossipType;)V +MD: net/minecraft/world/entity/ai/gossip/GossipContainer/m_148171_ (Ljava/util/function/DoublePredicate;Lnet/minecraft/world/entity/ai/gossip/GossipType;Lnet/minecraft/world/entity/ai/gossip/GossipContainer$EntityGossips;)Z net/minecraft/world/entity/ai/gossip/GossipContainer/lambda$getCountForType$4 (Ljava/util/function/DoublePredicate;Lnet/minecraft/world/entity/ai/gossip/GossipType;Lnet/minecraft/world/entity/ai/gossip/GossipContainer$EntityGossips;)Z +MD: net/minecraft/world/entity/ai/gossip/GossipContainer/m_148175_ (Ljava/util/UUID;Lnet/minecraft/world/entity/ai/gossip/GossipType;I)V net/minecraft/world/entity/ai/gossip/GossipContainer/remove (Ljava/util/UUID;Lnet/minecraft/world/entity/ai/gossip/GossipType;I)V +MD: net/minecraft/world/entity/ai/gossip/GossipContainer/m_186094_ (Lnet/minecraft/world/entity/ai/gossip/GossipType;II)I net/minecraft/world/entity/ai/gossip/GossipContainer/lambda$add$5 (Lnet/minecraft/world/entity/ai/gossip/GossipType;II)I +MD: net/minecraft/world/entity/ai/gossip/GossipContainer/m_217759_ (Lnet/minecraft/util/RandomSource;I)Ljava/util/Collection; net/minecraft/world/entity/ai/gossip/GossipContainer/selectGossipsForTransfer (Lnet/minecraft/util/RandomSource;I)Ljava/util/Collection; +MD: net/minecraft/world/entity/ai/gossip/GossipContainer/m_217762_ (Lnet/minecraft/world/entity/ai/gossip/GossipContainer;Lnet/minecraft/util/RandomSource;I)V net/minecraft/world/entity/ai/gossip/GossipContainer/transferFrom (Lnet/minecraft/world/entity/ai/gossip/GossipContainer;Lnet/minecraft/util/RandomSource;I)V +MD: net/minecraft/world/entity/ai/gossip/GossipContainer/m_26158_ (II)I net/minecraft/world/entity/ai/gossip/GossipContainer/mergeValuesForTransfer (II)I +MD: net/minecraft/world/entity/ai/gossip/GossipContainer/m_26161_ (Lnet/minecraft/world/entity/ai/gossip/GossipContainer$GossipEntry;)V net/minecraft/world/entity/ai/gossip/GossipContainer/lambda$update$9 (Lnet/minecraft/world/entity/ai/gossip/GossipContainer$GossipEntry;)V +MD: net/minecraft/world/entity/ai/gossip/GossipContainer/m_26167_ (Lnet/minecraft/world/entity/ai/gossip/GossipType;II)I net/minecraft/world/entity/ai/gossip/GossipContainer/mergeValuesForAddition (Lnet/minecraft/world/entity/ai/gossip/GossipType;II)I +MD: net/minecraft/world/entity/ai/gossip/GossipContainer/m_26177_ (Lcom/mojang/serialization/Dynamic;)V net/minecraft/world/entity/ai/gossip/GossipContainer/update (Lcom/mojang/serialization/Dynamic;)V +MD: net/minecraft/world/entity/ai/gossip/GossipContainer/m_26184_ (Ljava/util/Map$Entry;)Ljava/util/stream/Stream; net/minecraft/world/entity/ai/gossip/GossipContainer/lambda$unpack$1 (Ljava/util/Map$Entry;)Ljava/util/stream/Stream; +MD: net/minecraft/world/entity/ai/gossip/GossipContainer/m_26189_ (Ljava/util/UUID;)Lnet/minecraft/world/entity/ai/gossip/GossipContainer$EntityGossips; net/minecraft/world/entity/ai/gossip/GossipContainer/getOrCreate (Ljava/util/UUID;)Lnet/minecraft/world/entity/ai/gossip/GossipContainer$EntityGossips; +MD: net/minecraft/world/entity/ai/gossip/GossipContainer/m_26191_ (Ljava/util/UUID;Lnet/minecraft/world/entity/ai/gossip/GossipType;I)V net/minecraft/world/entity/ai/gossip/GossipContainer/add (Ljava/util/UUID;Lnet/minecraft/world/entity/ai/gossip/GossipType;I)V +MD: net/minecraft/world/entity/ai/gossip/GossipContainer/m_26195_ (Ljava/util/UUID;Ljava/util/function/Predicate;)I net/minecraft/world/entity/ai/gossip/GossipContainer/getReputation (Ljava/util/UUID;Ljava/util/function/Predicate;)I +MD: net/minecraft/world/entity/ai/gossip/GossipContainer/m_26198_ ()V net/minecraft/world/entity/ai/gossip/GossipContainer/decay ()V +MD: net/minecraft/world/entity/ai/gossip/GossipContainer/m_26199_ (Lnet/minecraft/world/entity/ai/gossip/GossipContainer$GossipEntry;)V net/minecraft/world/entity/ai/gossip/GossipContainer/lambda$transferFrom$3 (Lnet/minecraft/world/entity/ai/gossip/GossipContainer$GossipEntry;)V +MD: net/minecraft/world/entity/ai/gossip/GossipContainer/m_26201_ (Ljava/util/UUID;)Lnet/minecraft/world/entity/ai/gossip/GossipContainer$EntityGossips; net/minecraft/world/entity/ai/gossip/GossipContainer/lambda$getOrCreate$2 (Ljava/util/UUID;)Lnet/minecraft/world/entity/ai/gossip/GossipContainer$EntityGossips; +MD: net/minecraft/world/entity/ai/gossip/GossipContainer/m_26203_ ()Ljava/util/stream/Stream; net/minecraft/world/entity/ai/gossip/GossipContainer/unpack ()Ljava/util/stream/Stream; +MD: net/minecraft/world/entity/ai/gossip/GossipContainer/m_262779_ (Lcom/mojang/datafixers/util/Pair;)Ljava/util/stream/Stream; net/minecraft/world/entity/ai/gossip/GossipContainer/lambda$update$8 (Lcom/mojang/datafixers/util/Pair;)Ljava/util/stream/Stream; +MD: net/minecraft/world/entity/ai/gossip/GossipContainer/m_262780_ (Ljava/lang/String;)V net/minecraft/world/entity/ai/gossip/GossipContainer/lambda$store$6 (Ljava/lang/String;)V +MD: net/minecraft/world/entity/ai/gossip/GossipContainer/m_262781_ (Ljava/lang/String;)V net/minecraft/world/entity/ai/gossip/GossipContainer/lambda$update$7 (Ljava/lang/String;)V +MD: net/minecraft/world/entity/ai/gossip/GossipContainer/m_262795_ (Lcom/mojang/serialization/DynamicOps;)Ljava/lang/Object; net/minecraft/world/entity/ai/gossip/GossipContainer/store (Lcom/mojang/serialization/DynamicOps;)Ljava/lang/Object; +MD: net/minecraft/world/entity/ai/gossip/GossipContainer$EntityGossips/ ()V net/minecraft/world/entity/ai/gossip/GossipContainer$EntityGossips/ ()V +MD: net/minecraft/world/entity/ai/gossip/GossipContainer$EntityGossips/m_26208_ ()V net/minecraft/world/entity/ai/gossip/GossipContainer$EntityGossips/decay ()V +MD: net/minecraft/world/entity/ai/gossip/GossipContainer$EntityGossips/m_26211_ (Lnet/minecraft/world/entity/ai/gossip/GossipType;)V net/minecraft/world/entity/ai/gossip/GossipContainer$EntityGossips/makeSureValueIsntTooLowOrTooHigh (Lnet/minecraft/world/entity/ai/gossip/GossipType;)V +MD: net/minecraft/world/entity/ai/gossip/GossipContainer$EntityGossips/m_26213_ (Lit/unimi/dsi/fastutil/objects/Object2IntMap$Entry;)I net/minecraft/world/entity/ai/gossip/GossipContainer$EntityGossips/lambda$weightedValue$1 (Lit/unimi/dsi/fastutil/objects/Object2IntMap$Entry;)I +MD: net/minecraft/world/entity/ai/gossip/GossipContainer$EntityGossips/m_26215_ (Ljava/util/UUID;)Ljava/util/stream/Stream; net/minecraft/world/entity/ai/gossip/GossipContainer$EntityGossips/unpack (Ljava/util/UUID;)Ljava/util/stream/Stream; +MD: net/minecraft/world/entity/ai/gossip/GossipContainer$EntityGossips/m_26217_ (Ljava/util/UUID;Lit/unimi/dsi/fastutil/objects/Object2IntMap$Entry;)Lnet/minecraft/world/entity/ai/gossip/GossipContainer$GossipEntry; net/minecraft/world/entity/ai/gossip/GossipContainer$EntityGossips/lambda$unpack$2 (Ljava/util/UUID;Lit/unimi/dsi/fastutil/objects/Object2IntMap$Entry;)Lnet/minecraft/world/entity/ai/gossip/GossipContainer$GossipEntry; +MD: net/minecraft/world/entity/ai/gossip/GossipContainer$EntityGossips/m_26220_ (Ljava/util/function/Predicate;)I net/minecraft/world/entity/ai/gossip/GossipContainer$EntityGossips/weightedValue (Ljava/util/function/Predicate;)I +MD: net/minecraft/world/entity/ai/gossip/GossipContainer$EntityGossips/m_26222_ (Ljava/util/function/Predicate;Lit/unimi/dsi/fastutil/objects/Object2IntMap$Entry;)Z net/minecraft/world/entity/ai/gossip/GossipContainer$EntityGossips/lambda$weightedValue$0 (Ljava/util/function/Predicate;Lit/unimi/dsi/fastutil/objects/Object2IntMap$Entry;)Z +MD: net/minecraft/world/entity/ai/gossip/GossipContainer$EntityGossips/m_26225_ ()Z net/minecraft/world/entity/ai/gossip/GossipContainer$EntityGossips/isEmpty ()Z +MD: net/minecraft/world/entity/ai/gossip/GossipContainer$EntityGossips/m_26226_ (Lnet/minecraft/world/entity/ai/gossip/GossipType;)V net/minecraft/world/entity/ai/gossip/GossipContainer$EntityGossips/remove (Lnet/minecraft/world/entity/ai/gossip/GossipType;)V +MD: net/minecraft/world/entity/ai/gossip/GossipContainer$GossipEntry/ ()V net/minecraft/world/entity/ai/gossip/GossipContainer$GossipEntry/ ()V +MD: net/minecraft/world/entity/ai/gossip/GossipContainer$GossipEntry/ (Ljava/util/UUID;Lnet/minecraft/world/entity/ai/gossip/GossipType;I)V net/minecraft/world/entity/ai/gossip/GossipContainer$GossipEntry/ (Ljava/util/UUID;Lnet/minecraft/world/entity/ai/gossip/GossipType;I)V +MD: net/minecraft/world/entity/ai/gossip/GossipContainer$GossipEntry/equals (Ljava/lang/Object;)Z net/minecraft/world/entity/ai/gossip/GossipContainer$GossipEntry/equals (Ljava/lang/Object;)Z +MD: net/minecraft/world/entity/ai/gossip/GossipContainer$GossipEntry/f_26228_ ()Ljava/util/UUID; net/minecraft/world/entity/ai/gossip/GossipContainer$GossipEntry/target ()Ljava/util/UUID; +MD: net/minecraft/world/entity/ai/gossip/GossipContainer$GossipEntry/f_26229_ ()Lnet/minecraft/world/entity/ai/gossip/GossipType; net/minecraft/world/entity/ai/gossip/GossipContainer$GossipEntry/type ()Lnet/minecraft/world/entity/ai/gossip/GossipType; +MD: net/minecraft/world/entity/ai/gossip/GossipContainer$GossipEntry/f_26230_ ()I net/minecraft/world/entity/ai/gossip/GossipContainer$GossipEntry/value ()I +MD: net/minecraft/world/entity/ai/gossip/GossipContainer$GossipEntry/hashCode ()I net/minecraft/world/entity/ai/gossip/GossipContainer$GossipEntry/hashCode ()I +MD: net/minecraft/world/entity/ai/gossip/GossipContainer$GossipEntry/m_26235_ ()I net/minecraft/world/entity/ai/gossip/GossipContainer$GossipEntry/weightedValue ()I +MD: net/minecraft/world/entity/ai/gossip/GossipContainer$GossipEntry/m_262811_ (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/world/entity/ai/gossip/GossipContainer$GossipEntry/lambda$static$0 (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/world/entity/ai/gossip/GossipContainer$GossipEntry/toString ()Ljava/lang/String; net/minecraft/world/entity/ai/gossip/GossipContainer$GossipEntry/toString ()Ljava/lang/String; +MD: net/minecraft/world/entity/ai/gossip/GossipType/ ()V net/minecraft/world/entity/ai/gossip/GossipType/ ()V +MD: net/minecraft/world/entity/ai/gossip/GossipType/ (Ljava/lang/String;ILjava/lang/String;IIII)V net/minecraft/world/entity/ai/gossip/GossipType/ (Ljava/lang/String;ILjava/lang/String;IIII)V +MD: net/minecraft/world/entity/ai/gossip/GossipType/m_148185_ ()[Lnet/minecraft/world/entity/ai/gossip/GossipType; net/minecraft/world/entity/ai/gossip/GossipType/$values ()[Lnet/minecraft/world/entity/ai/gossip/GossipType; +MD: net/minecraft/world/entity/ai/gossip/GossipType/m_7912_ ()Ljava/lang/String; net/minecraft/world/entity/ai/gossip/GossipType/getSerializedName ()Ljava/lang/String; +MD: net/minecraft/world/entity/ai/gossip/GossipType/valueOf (Ljava/lang/String;)Lnet/minecraft/world/entity/ai/gossip/GossipType; net/minecraft/world/entity/ai/gossip/GossipType/valueOf (Ljava/lang/String;)Lnet/minecraft/world/entity/ai/gossip/GossipType; +MD: net/minecraft/world/entity/ai/gossip/GossipType/values ()[Lnet/minecraft/world/entity/ai/gossip/GossipType; net/minecraft/world/entity/ai/gossip/GossipType/values ()[Lnet/minecraft/world/entity/ai/gossip/GossipType; +MD: net/minecraft/world/entity/ai/memory/ExpirableValue/ (Ljava/lang/Object;J)V net/minecraft/world/entity/ai/memory/ExpirableValue/ (Ljava/lang/Object;J)V +MD: net/minecraft/world/entity/ai/memory/ExpirableValue/m_148186_ (Lnet/minecraft/world/entity/ai/memory/ExpirableValue;)Ljava/util/Optional; net/minecraft/world/entity/ai/memory/ExpirableValue/lambda$codec$1 (Lnet/minecraft/world/entity/ai/memory/ExpirableValue;)Ljava/util/Optional; +MD: net/minecraft/world/entity/ai/memory/ExpirableValue/m_148188_ (Ljava/lang/Object;Ljava/util/Optional;)Lnet/minecraft/world/entity/ai/memory/ExpirableValue; net/minecraft/world/entity/ai/memory/ExpirableValue/lambda$codec$2 (Ljava/lang/Object;Ljava/util/Optional;)Lnet/minecraft/world/entity/ai/memory/ExpirableValue; +MD: net/minecraft/world/entity/ai/memory/ExpirableValue/m_148191_ ()J net/minecraft/world/entity/ai/memory/ExpirableValue/getTimeToLive ()J +MD: net/minecraft/world/entity/ai/memory/ExpirableValue/m_148192_ (Lnet/minecraft/world/entity/ai/memory/ExpirableValue;)Ljava/lang/Object; net/minecraft/world/entity/ai/memory/ExpirableValue/lambda$codec$0 (Lnet/minecraft/world/entity/ai/memory/ExpirableValue;)Ljava/lang/Object; +MD: net/minecraft/world/entity/ai/memory/ExpirableValue/m_26301_ ()V net/minecraft/world/entity/ai/memory/ExpirableValue/tick ()V +MD: net/minecraft/world/entity/ai/memory/ExpirableValue/m_26304_ (Lcom/mojang/serialization/Codec;)Lcom/mojang/serialization/Codec; net/minecraft/world/entity/ai/memory/ExpirableValue/codec (Lcom/mojang/serialization/Codec;)Lcom/mojang/serialization/Codec; +MD: net/minecraft/world/entity/ai/memory/ExpirableValue/m_26306_ (Lcom/mojang/serialization/Codec;Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/world/entity/ai/memory/ExpirableValue/lambda$codec$3 (Lcom/mojang/serialization/Codec;Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/world/entity/ai/memory/ExpirableValue/m_26309_ (Ljava/lang/Object;)Lnet/minecraft/world/entity/ai/memory/ExpirableValue; net/minecraft/world/entity/ai/memory/ExpirableValue/of (Ljava/lang/Object;)Lnet/minecraft/world/entity/ai/memory/ExpirableValue; +MD: net/minecraft/world/entity/ai/memory/ExpirableValue/m_26311_ (Ljava/lang/Object;J)Lnet/minecraft/world/entity/ai/memory/ExpirableValue; net/minecraft/world/entity/ai/memory/ExpirableValue/of (Ljava/lang/Object;J)Lnet/minecraft/world/entity/ai/memory/ExpirableValue; +MD: net/minecraft/world/entity/ai/memory/ExpirableValue/m_26319_ ()Ljava/lang/Object; net/minecraft/world/entity/ai/memory/ExpirableValue/getValue ()Ljava/lang/Object; +MD: net/minecraft/world/entity/ai/memory/ExpirableValue/m_26320_ ()Z net/minecraft/world/entity/ai/memory/ExpirableValue/hasExpired ()Z +MD: net/minecraft/world/entity/ai/memory/ExpirableValue/m_26321_ ()Z net/minecraft/world/entity/ai/memory/ExpirableValue/canExpire ()Z +MD: net/minecraft/world/entity/ai/memory/ExpirableValue/toString ()Ljava/lang/String; net/minecraft/world/entity/ai/memory/ExpirableValue/toString ()Ljava/lang/String; +MD: net/minecraft/world/entity/ai/memory/MemoryModuleType/ ()V net/minecraft/world/entity/ai/memory/MemoryModuleType/ ()V +MD: net/minecraft/world/entity/ai/memory/MemoryModuleType/ (Ljava/util/Optional;)V net/minecraft/world/entity/ai/memory/MemoryModuleType/ (Ljava/util/Optional;)V +MD: net/minecraft/world/entity/ai/memory/MemoryModuleType/m_26387_ ()Ljava/util/Optional; net/minecraft/world/entity/ai/memory/MemoryModuleType/getCodec ()Ljava/util/Optional; +MD: net/minecraft/world/entity/ai/memory/MemoryModuleType/m_26388_ (Ljava/lang/String;)Lnet/minecraft/world/entity/ai/memory/MemoryModuleType; net/minecraft/world/entity/ai/memory/MemoryModuleType/register (Ljava/lang/String;)Lnet/minecraft/world/entity/ai/memory/MemoryModuleType; +MD: net/minecraft/world/entity/ai/memory/MemoryModuleType/m_26390_ (Ljava/lang/String;Lcom/mojang/serialization/Codec;)Lnet/minecraft/world/entity/ai/memory/MemoryModuleType; net/minecraft/world/entity/ai/memory/MemoryModuleType/register (Ljava/lang/String;Lcom/mojang/serialization/Codec;)Lnet/minecraft/world/entity/ai/memory/MemoryModuleType; +MD: net/minecraft/world/entity/ai/memory/MemoryModuleType/toString ()Ljava/lang/String; net/minecraft/world/entity/ai/memory/MemoryModuleType/toString ()Ljava/lang/String; +MD: net/minecraft/world/entity/ai/memory/MemoryStatus/ ()V net/minecraft/world/entity/ai/memory/MemoryStatus/ ()V +MD: net/minecraft/world/entity/ai/memory/MemoryStatus/ (Ljava/lang/String;I)V net/minecraft/world/entity/ai/memory/MemoryStatus/ (Ljava/lang/String;I)V +MD: net/minecraft/world/entity/ai/memory/MemoryStatus/m_148207_ ()[Lnet/minecraft/world/entity/ai/memory/MemoryStatus; net/minecraft/world/entity/ai/memory/MemoryStatus/$values ()[Lnet/minecraft/world/entity/ai/memory/MemoryStatus; +MD: net/minecraft/world/entity/ai/memory/MemoryStatus/valueOf (Ljava/lang/String;)Lnet/minecraft/world/entity/ai/memory/MemoryStatus; net/minecraft/world/entity/ai/memory/MemoryStatus/valueOf (Ljava/lang/String;)Lnet/minecraft/world/entity/ai/memory/MemoryStatus; +MD: net/minecraft/world/entity/ai/memory/MemoryStatus/values ()[Lnet/minecraft/world/entity/ai/memory/MemoryStatus; net/minecraft/world/entity/ai/memory/MemoryStatus/values ()[Lnet/minecraft/world/entity/ai/memory/MemoryStatus; +MD: net/minecraft/world/entity/ai/memory/NearestVisibleLivingEntities/ ()V net/minecraft/world/entity/ai/memory/NearestVisibleLivingEntities/ ()V +MD: net/minecraft/world/entity/ai/memory/NearestVisibleLivingEntities/ (Lnet/minecraft/world/entity/LivingEntity;Ljava/util/List;)V net/minecraft/world/entity/ai/memory/NearestVisibleLivingEntities/ (Lnet/minecraft/world/entity/LivingEntity;Ljava/util/List;)V +MD: net/minecraft/world/entity/ai/memory/NearestVisibleLivingEntities/ ()V net/minecraft/world/entity/ai/memory/NearestVisibleLivingEntities/ ()V +MD: net/minecraft/world/entity/ai/memory/NearestVisibleLivingEntities/m_186106_ ()Lnet/minecraft/world/entity/ai/memory/NearestVisibleLivingEntities; net/minecraft/world/entity/ai/memory/NearestVisibleLivingEntities/empty ()Lnet/minecraft/world/entity/ai/memory/NearestVisibleLivingEntities; +MD: net/minecraft/world/entity/ai/memory/NearestVisibleLivingEntities/m_186107_ (Lnet/minecraft/world/entity/LivingEntity;)Z net/minecraft/world/entity/ai/memory/NearestVisibleLivingEntities/contains (Lnet/minecraft/world/entity/LivingEntity;)Z +MD: net/minecraft/world/entity/ai/memory/NearestVisibleLivingEntities/m_186109_ (Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/entity/LivingEntity;)Z net/minecraft/world/entity/ai/memory/NearestVisibleLivingEntities/lambda$new$1 (Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/entity/LivingEntity;)Z +MD: net/minecraft/world/entity/ai/memory/NearestVisibleLivingEntities/m_186112_ (Lit/unimi/dsi/fastutil/objects/Object2BooleanOpenHashMap;Ljava/util/function/Predicate;Lnet/minecraft/world/entity/LivingEntity;)Z net/minecraft/world/entity/ai/memory/NearestVisibleLivingEntities/lambda$new$2 (Lit/unimi/dsi/fastutil/objects/Object2BooleanOpenHashMap;Ljava/util/function/Predicate;Lnet/minecraft/world/entity/LivingEntity;)Z +MD: net/minecraft/world/entity/ai/memory/NearestVisibleLivingEntities/m_186116_ (Ljava/util/function/Predicate;)Ljava/util/Optional; net/minecraft/world/entity/ai/memory/NearestVisibleLivingEntities/findClosest (Ljava/util/function/Predicate;)Ljava/util/Optional; +MD: net/minecraft/world/entity/ai/memory/NearestVisibleLivingEntities/m_186118_ (Ljava/util/function/Predicate;Lnet/minecraft/world/entity/LivingEntity;)Z net/minecraft/world/entity/ai/memory/NearestVisibleLivingEntities/lambda$find$4 (Ljava/util/function/Predicate;Lnet/minecraft/world/entity/LivingEntity;)Z +MD: net/minecraft/world/entity/ai/memory/NearestVisibleLivingEntities/m_186121_ (Lnet/minecraft/world/entity/LivingEntity;)Z net/minecraft/world/entity/ai/memory/NearestVisibleLivingEntities/lambda$new$0 (Lnet/minecraft/world/entity/LivingEntity;)Z +MD: net/minecraft/world/entity/ai/memory/NearestVisibleLivingEntities/m_186123_ (Ljava/util/function/Predicate;)Ljava/lang/Iterable; net/minecraft/world/entity/ai/memory/NearestVisibleLivingEntities/findAll (Ljava/util/function/Predicate;)Ljava/lang/Iterable; +MD: net/minecraft/world/entity/ai/memory/NearestVisibleLivingEntities/m_186125_ (Ljava/util/function/Predicate;Lnet/minecraft/world/entity/LivingEntity;)Z net/minecraft/world/entity/ai/memory/NearestVisibleLivingEntities/lambda$findAll$3 (Ljava/util/function/Predicate;Lnet/minecraft/world/entity/LivingEntity;)Z +MD: net/minecraft/world/entity/ai/memory/NearestVisibleLivingEntities/m_186128_ (Ljava/util/function/Predicate;)Ljava/util/stream/Stream; net/minecraft/world/entity/ai/memory/NearestVisibleLivingEntities/find (Ljava/util/function/Predicate;)Ljava/util/stream/Stream; +MD: net/minecraft/world/entity/ai/memory/NearestVisibleLivingEntities/m_186130_ (Ljava/util/function/Predicate;)Z net/minecraft/world/entity/ai/memory/NearestVisibleLivingEntities/contains (Ljava/util/function/Predicate;)Z +MD: net/minecraft/world/entity/ai/memory/WalkTarget/ (Lnet/minecraft/core/BlockPos;FI)V net/minecraft/world/entity/ai/memory/WalkTarget/ (Lnet/minecraft/core/BlockPos;FI)V +MD: net/minecraft/world/entity/ai/memory/WalkTarget/ (Lnet/minecraft/world/entity/Entity;FI)V net/minecraft/world/entity/ai/memory/WalkTarget/ (Lnet/minecraft/world/entity/Entity;FI)V +MD: net/minecraft/world/entity/ai/memory/WalkTarget/ (Lnet/minecraft/world/entity/ai/behavior/PositionTracker;FI)V net/minecraft/world/entity/ai/memory/WalkTarget/ (Lnet/minecraft/world/entity/ai/behavior/PositionTracker;FI)V +MD: net/minecraft/world/entity/ai/memory/WalkTarget/ (Lnet/minecraft/world/phys/Vec3;FI)V net/minecraft/world/entity/ai/memory/WalkTarget/ (Lnet/minecraft/world/phys/Vec3;FI)V +MD: net/minecraft/world/entity/ai/memory/WalkTarget/m_26420_ ()Lnet/minecraft/world/entity/ai/behavior/PositionTracker; net/minecraft/world/entity/ai/memory/WalkTarget/getTarget ()Lnet/minecraft/world/entity/ai/behavior/PositionTracker; +MD: net/minecraft/world/entity/ai/memory/WalkTarget/m_26421_ ()F net/minecraft/world/entity/ai/memory/WalkTarget/getSpeedModifier ()F +MD: net/minecraft/world/entity/ai/memory/WalkTarget/m_26422_ ()I net/minecraft/world/entity/ai/memory/WalkTarget/getCloseEnoughDist ()I +MD: net/minecraft/world/entity/ai/navigation/AmphibiousPathNavigation/ (Lnet/minecraft/world/entity/Mob;Lnet/minecraft/world/level/Level;)V net/minecraft/world/entity/ai/navigation/AmphibiousPathNavigation/ (Lnet/minecraft/world/entity/Mob;Lnet/minecraft/world/level/Level;)V +MD: net/minecraft/world/entity/ai/navigation/AmphibiousPathNavigation/m_183345_ (Lnet/minecraft/world/phys/Vec3;)D net/minecraft/world/entity/ai/navigation/AmphibiousPathNavigation/getGroundY (Lnet/minecraft/world/phys/Vec3;)D +MD: net/minecraft/world/entity/ai/navigation/AmphibiousPathNavigation/m_183431_ (Lnet/minecraft/world/phys/Vec3;Lnet/minecraft/world/phys/Vec3;)Z net/minecraft/world/entity/ai/navigation/AmphibiousPathNavigation/canMoveDirectly (Lnet/minecraft/world/phys/Vec3;Lnet/minecraft/world/phys/Vec3;)Z +MD: net/minecraft/world/entity/ai/navigation/AmphibiousPathNavigation/m_5532_ (I)Lnet/minecraft/world/level/pathfinder/PathFinder; net/minecraft/world/entity/ai/navigation/AmphibiousPathNavigation/createPathFinder (I)Lnet/minecraft/world/level/pathfinder/PathFinder; +MD: net/minecraft/world/entity/ai/navigation/AmphibiousPathNavigation/m_6342_ (Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/entity/ai/navigation/AmphibiousPathNavigation/isStableDestination (Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/entity/ai/navigation/AmphibiousPathNavigation/m_7008_ (Z)V net/minecraft/world/entity/ai/navigation/AmphibiousPathNavigation/setCanFloat (Z)V +MD: net/minecraft/world/entity/ai/navigation/AmphibiousPathNavigation/m_7475_ ()Lnet/minecraft/world/phys/Vec3; net/minecraft/world/entity/ai/navigation/AmphibiousPathNavigation/getTempMobPos ()Lnet/minecraft/world/phys/Vec3; +MD: net/minecraft/world/entity/ai/navigation/AmphibiousPathNavigation/m_7632_ ()Z net/minecraft/world/entity/ai/navigation/AmphibiousPathNavigation/canUpdatePath ()Z +MD: net/minecraft/world/entity/ai/navigation/FlyingPathNavigation/ (Lnet/minecraft/world/entity/Mob;Lnet/minecraft/world/level/Level;)V net/minecraft/world/entity/ai/navigation/FlyingPathNavigation/ (Lnet/minecraft/world/entity/Mob;Lnet/minecraft/world/level/Level;)V +MD: net/minecraft/world/entity/ai/navigation/FlyingPathNavigation/m_148212_ ()Z net/minecraft/world/entity/ai/navigation/FlyingPathNavigation/canPassDoors ()Z +MD: net/minecraft/world/entity/ai/navigation/FlyingPathNavigation/m_148213_ ()Z net/minecraft/world/entity/ai/navigation/FlyingPathNavigation/canOpenDoors ()Z +MD: net/minecraft/world/entity/ai/navigation/FlyingPathNavigation/m_183431_ (Lnet/minecraft/world/phys/Vec3;Lnet/minecraft/world/phys/Vec3;)Z net/minecraft/world/entity/ai/navigation/FlyingPathNavigation/canMoveDirectly (Lnet/minecraft/world/phys/Vec3;Lnet/minecraft/world/phys/Vec3;)Z +MD: net/minecraft/world/entity/ai/navigation/FlyingPathNavigation/m_26440_ (Z)V net/minecraft/world/entity/ai/navigation/FlyingPathNavigation/setCanOpenDoors (Z)V +MD: net/minecraft/world/entity/ai/navigation/FlyingPathNavigation/m_26443_ (Z)V net/minecraft/world/entity/ai/navigation/FlyingPathNavigation/setCanPassDoors (Z)V +MD: net/minecraft/world/entity/ai/navigation/FlyingPathNavigation/m_5532_ (I)Lnet/minecraft/world/level/pathfinder/PathFinder; net/minecraft/world/entity/ai/navigation/FlyingPathNavigation/createPathFinder (I)Lnet/minecraft/world/level/pathfinder/PathFinder; +MD: net/minecraft/world/entity/ai/navigation/FlyingPathNavigation/m_6342_ (Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/entity/ai/navigation/FlyingPathNavigation/isStableDestination (Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/entity/ai/navigation/FlyingPathNavigation/m_6570_ (Lnet/minecraft/world/entity/Entity;I)Lnet/minecraft/world/level/pathfinder/Path; net/minecraft/world/entity/ai/navigation/FlyingPathNavigation/createPath (Lnet/minecraft/world/entity/Entity;I)Lnet/minecraft/world/level/pathfinder/Path; +MD: net/minecraft/world/entity/ai/navigation/FlyingPathNavigation/m_7475_ ()Lnet/minecraft/world/phys/Vec3; net/minecraft/world/entity/ai/navigation/FlyingPathNavigation/getTempMobPos ()Lnet/minecraft/world/phys/Vec3; +MD: net/minecraft/world/entity/ai/navigation/FlyingPathNavigation/m_7632_ ()Z net/minecraft/world/entity/ai/navigation/FlyingPathNavigation/canUpdatePath ()Z +MD: net/minecraft/world/entity/ai/navigation/FlyingPathNavigation/m_7638_ ()V net/minecraft/world/entity/ai/navigation/FlyingPathNavigation/tick ()V +MD: net/minecraft/world/entity/ai/navigation/GroundPathNavigation/ (Lnet/minecraft/world/entity/Mob;Lnet/minecraft/world/level/Level;)V net/minecraft/world/entity/ai/navigation/GroundPathNavigation/ (Lnet/minecraft/world/entity/Mob;Lnet/minecraft/world/level/Level;)V +MD: net/minecraft/world/entity/ai/navigation/GroundPathNavigation/m_148214_ (Z)V net/minecraft/world/entity/ai/navigation/GroundPathNavigation/setCanPassDoors (Z)V +MD: net/minecraft/world/entity/ai/navigation/GroundPathNavigation/m_148216_ ()Z net/minecraft/world/entity/ai/navigation/GroundPathNavigation/canPassDoors ()Z +MD: net/minecraft/world/entity/ai/navigation/GroundPathNavigation/m_255224_ (Z)V net/minecraft/world/entity/ai/navigation/GroundPathNavigation/setCanWalkOverFences (Z)V +MD: net/minecraft/world/entity/ai/navigation/GroundPathNavigation/m_26477_ (Z)V net/minecraft/world/entity/ai/navigation/GroundPathNavigation/setCanOpenDoors (Z)V +MD: net/minecraft/world/entity/ai/navigation/GroundPathNavigation/m_26490_ (Z)V net/minecraft/world/entity/ai/navigation/GroundPathNavigation/setAvoidSun (Z)V +MD: net/minecraft/world/entity/ai/navigation/GroundPathNavigation/m_26492_ ()Z net/minecraft/world/entity/ai/navigation/GroundPathNavigation/canOpenDoors ()Z +MD: net/minecraft/world/entity/ai/navigation/GroundPathNavigation/m_26493_ ()I net/minecraft/world/entity/ai/navigation/GroundPathNavigation/getSurfaceY ()I +MD: net/minecraft/world/entity/ai/navigation/GroundPathNavigation/m_5532_ (I)Lnet/minecraft/world/level/pathfinder/PathFinder; net/minecraft/world/entity/ai/navigation/GroundPathNavigation/createPathFinder (I)Lnet/minecraft/world/level/pathfinder/PathFinder; +MD: net/minecraft/world/entity/ai/navigation/GroundPathNavigation/m_6570_ (Lnet/minecraft/world/entity/Entity;I)Lnet/minecraft/world/level/pathfinder/Path; net/minecraft/world/entity/ai/navigation/GroundPathNavigation/createPath (Lnet/minecraft/world/entity/Entity;I)Lnet/minecraft/world/level/pathfinder/Path; +MD: net/minecraft/world/entity/ai/navigation/GroundPathNavigation/m_6804_ ()V net/minecraft/world/entity/ai/navigation/GroundPathNavigation/trimPath ()V +MD: net/minecraft/world/entity/ai/navigation/GroundPathNavigation/m_7367_ (Lnet/minecraft/world/level/pathfinder/BlockPathTypes;)Z net/minecraft/world/entity/ai/navigation/GroundPathNavigation/hasValidPathType (Lnet/minecraft/world/level/pathfinder/BlockPathTypes;)Z +MD: net/minecraft/world/entity/ai/navigation/GroundPathNavigation/m_7475_ ()Lnet/minecraft/world/phys/Vec3; net/minecraft/world/entity/ai/navigation/GroundPathNavigation/getTempMobPos ()Lnet/minecraft/world/phys/Vec3; +MD: net/minecraft/world/entity/ai/navigation/GroundPathNavigation/m_7632_ ()Z net/minecraft/world/entity/ai/navigation/GroundPathNavigation/canUpdatePath ()Z +MD: net/minecraft/world/entity/ai/navigation/GroundPathNavigation/m_7864_ (Lnet/minecraft/core/BlockPos;I)Lnet/minecraft/world/level/pathfinder/Path; net/minecraft/world/entity/ai/navigation/GroundPathNavigation/createPath (Lnet/minecraft/core/BlockPos;I)Lnet/minecraft/world/level/pathfinder/Path; +MD: net/minecraft/world/entity/ai/navigation/PathNavigation/ (Lnet/minecraft/world/entity/Mob;Lnet/minecraft/world/level/Level;)V net/minecraft/world/entity/ai/navigation/PathNavigation/ (Lnet/minecraft/world/entity/Mob;Lnet/minecraft/world/level/Level;)V +MD: net/minecraft/world/entity/ai/navigation/PathNavigation/m_148218_ (Lnet/minecraft/core/BlockPos;II)Lnet/minecraft/world/level/pathfinder/Path; net/minecraft/world/entity/ai/navigation/PathNavigation/createPath (Lnet/minecraft/core/BlockPos;II)Lnet/minecraft/world/level/pathfinder/Path; +MD: net/minecraft/world/entity/ai/navigation/PathNavigation/m_148222_ (Ljava/util/Set;IZIF)Lnet/minecraft/world/level/pathfinder/Path; net/minecraft/world/entity/ai/navigation/PathNavigation/createPath (Ljava/util/Set;IZIF)Lnet/minecraft/world/level/pathfinder/Path; +MD: net/minecraft/world/entity/ai/navigation/PathNavigation/m_148228_ ()F net/minecraft/world/entity/ai/navigation/PathNavigation/getMaxDistanceToWaypoint ()F +MD: net/minecraft/world/entity/ai/navigation/PathNavigation/m_183345_ (Lnet/minecraft/world/phys/Vec3;)D net/minecraft/world/entity/ai/navigation/PathNavigation/getGroundY (Lnet/minecraft/world/phys/Vec3;)D +MD: net/minecraft/world/entity/ai/navigation/PathNavigation/m_183431_ (Lnet/minecraft/world/phys/Vec3;Lnet/minecraft/world/phys/Vec3;)Z net/minecraft/world/entity/ai/navigation/PathNavigation/canMoveDirectly (Lnet/minecraft/world/phys/Vec3;Lnet/minecraft/world/phys/Vec3;)Z +MD: net/minecraft/world/entity/ai/navigation/PathNavigation/m_200903_ (Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/entity/ai/navigation/PathNavigation/shouldRecomputePath (Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/entity/ai/navigation/PathNavigation/m_262402_ (Lnet/minecraft/world/entity/Mob;Lnet/minecraft/world/phys/Vec3;Lnet/minecraft/world/phys/Vec3;Z)Z net/minecraft/world/entity/ai/navigation/PathNavigation/isClearForMovementBetween (Lnet/minecraft/world/entity/Mob;Lnet/minecraft/world/phys/Vec3;Lnet/minecraft/world/phys/Vec3;Z)Z +MD: net/minecraft/world/entity/ai/navigation/PathNavigation/m_264193_ (Lnet/minecraft/world/level/pathfinder/BlockPathTypes;)Z net/minecraft/world/entity/ai/navigation/PathNavigation/canCutCorner (Lnet/minecraft/world/level/pathfinder/BlockPathTypes;)Z +MD: net/minecraft/world/entity/ai/navigation/PathNavigation/m_26517_ (D)V net/minecraft/world/entity/ai/navigation/PathNavigation/setSpeedModifier (D)V +MD: net/minecraft/world/entity/ai/navigation/PathNavigation/m_26519_ (DDDD)Z net/minecraft/world/entity/ai/navigation/PathNavigation/moveTo (DDDD)Z +MD: net/minecraft/world/entity/ai/navigation/PathNavigation/m_26524_ (DDDI)Lnet/minecraft/world/level/pathfinder/Path; net/minecraft/world/entity/ai/navigation/PathNavigation/createPath (DDDI)Lnet/minecraft/world/level/pathfinder/Path; +MD: net/minecraft/world/entity/ai/navigation/PathNavigation/m_26529_ (F)V net/minecraft/world/entity/ai/navigation/PathNavigation/setMaxVisitedNodesMultiplier (F)V +MD: net/minecraft/world/entity/ai/navigation/PathNavigation/m_26536_ (Lnet/minecraft/world/level/pathfinder/Path;D)Z net/minecraft/world/entity/ai/navigation/PathNavigation/moveTo (Lnet/minecraft/world/level/pathfinder/Path;D)Z +MD: net/minecraft/world/entity/ai/navigation/PathNavigation/m_26548_ (Ljava/util/Set;I)Lnet/minecraft/world/level/pathfinder/Path; net/minecraft/world/entity/ai/navigation/PathNavigation/createPath (Ljava/util/Set;I)Lnet/minecraft/world/level/pathfinder/Path; +MD: net/minecraft/world/entity/ai/navigation/PathNavigation/m_26551_ (Ljava/util/Set;IZI)Lnet/minecraft/world/level/pathfinder/Path; net/minecraft/world/entity/ai/navigation/PathNavigation/createPath (Ljava/util/Set;IZI)Lnet/minecraft/world/level/pathfinder/Path; +MD: net/minecraft/world/entity/ai/navigation/PathNavigation/m_26556_ (Ljava/util/stream/Stream;I)Lnet/minecraft/world/level/pathfinder/Path; net/minecraft/world/entity/ai/navigation/PathNavigation/createPath (Ljava/util/stream/Stream;I)Lnet/minecraft/world/level/pathfinder/Path; +MD: net/minecraft/world/entity/ai/navigation/PathNavigation/m_26559_ (Lnet/minecraft/world/phys/Vec3;)Z net/minecraft/world/entity/ai/navigation/PathNavigation/shouldTargetNextNodeInDirection (Lnet/minecraft/world/phys/Vec3;)Z +MD: net/minecraft/world/entity/ai/navigation/PathNavigation/m_26564_ ()V net/minecraft/world/entity/ai/navigation/PathNavigation/timeoutPath ()V +MD: net/minecraft/world/entity/ai/navigation/PathNavigation/m_26565_ ()V net/minecraft/world/entity/ai/navigation/PathNavigation/resetStuckTimeout ()V +MD: net/minecraft/world/entity/ai/navigation/PathNavigation/m_26566_ ()V net/minecraft/world/entity/ai/navigation/PathNavigation/resetMaxVisitedNodesMultiplier ()V +MD: net/minecraft/world/entity/ai/navigation/PathNavigation/m_26567_ ()Lnet/minecraft/core/BlockPos; net/minecraft/world/entity/ai/navigation/PathNavigation/getTargetPos ()Lnet/minecraft/core/BlockPos; +MD: net/minecraft/world/entity/ai/navigation/PathNavigation/m_26569_ ()V net/minecraft/world/entity/ai/navigation/PathNavigation/recomputePath ()V +MD: net/minecraft/world/entity/ai/navigation/PathNavigation/m_26570_ ()Lnet/minecraft/world/level/pathfinder/Path; net/minecraft/world/entity/ai/navigation/PathNavigation/getPath ()Lnet/minecraft/world/level/pathfinder/Path; +MD: net/minecraft/world/entity/ai/navigation/PathNavigation/m_26571_ ()Z net/minecraft/world/entity/ai/navigation/PathNavigation/isDone ()Z +MD: net/minecraft/world/entity/ai/navigation/PathNavigation/m_26572_ ()Z net/minecraft/world/entity/ai/navigation/PathNavigation/isInProgress ()Z +MD: net/minecraft/world/entity/ai/navigation/PathNavigation/m_26573_ ()V net/minecraft/world/entity/ai/navigation/PathNavigation/stop ()V +MD: net/minecraft/world/entity/ai/navigation/PathNavigation/m_26574_ ()Z net/minecraft/world/entity/ai/navigation/PathNavigation/isInLiquid ()Z +MD: net/minecraft/world/entity/ai/navigation/PathNavigation/m_26575_ ()Lnet/minecraft/world/level/pathfinder/NodeEvaluator; net/minecraft/world/entity/ai/navigation/PathNavigation/getNodeEvaluator ()Lnet/minecraft/world/level/pathfinder/NodeEvaluator; +MD: net/minecraft/world/entity/ai/navigation/PathNavigation/m_26576_ ()Z net/minecraft/world/entity/ai/navigation/PathNavigation/canFloat ()Z +MD: net/minecraft/world/entity/ai/navigation/PathNavigation/m_26577_ ()Z net/minecraft/world/entity/ai/navigation/PathNavigation/isStuck ()Z +MD: net/minecraft/world/entity/ai/navigation/PathNavigation/m_5532_ (I)Lnet/minecraft/world/level/pathfinder/PathFinder; net/minecraft/world/entity/ai/navigation/PathNavigation/createPathFinder (I)Lnet/minecraft/world/level/pathfinder/PathFinder; +MD: net/minecraft/world/entity/ai/navigation/PathNavigation/m_5624_ (Lnet/minecraft/world/entity/Entity;D)Z net/minecraft/world/entity/ai/navigation/PathNavigation/moveTo (Lnet/minecraft/world/entity/Entity;D)Z +MD: net/minecraft/world/entity/ai/navigation/PathNavigation/m_6342_ (Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/entity/ai/navigation/PathNavigation/isStableDestination (Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/entity/ai/navigation/PathNavigation/m_6481_ (Lnet/minecraft/world/phys/Vec3;)V net/minecraft/world/entity/ai/navigation/PathNavigation/doStuckDetection (Lnet/minecraft/world/phys/Vec3;)V +MD: net/minecraft/world/entity/ai/navigation/PathNavigation/m_6570_ (Lnet/minecraft/world/entity/Entity;I)Lnet/minecraft/world/level/pathfinder/Path; net/minecraft/world/entity/ai/navigation/PathNavigation/createPath (Lnet/minecraft/world/entity/Entity;I)Lnet/minecraft/world/level/pathfinder/Path; +MD: net/minecraft/world/entity/ai/navigation/PathNavigation/m_6804_ ()V net/minecraft/world/entity/ai/navigation/PathNavigation/trimPath ()V +MD: net/minecraft/world/entity/ai/navigation/PathNavigation/m_7008_ (Z)V net/minecraft/world/entity/ai/navigation/PathNavigation/setCanFloat (Z)V +MD: net/minecraft/world/entity/ai/navigation/PathNavigation/m_7475_ ()Lnet/minecraft/world/phys/Vec3; net/minecraft/world/entity/ai/navigation/PathNavigation/getTempMobPos ()Lnet/minecraft/world/phys/Vec3; +MD: net/minecraft/world/entity/ai/navigation/PathNavigation/m_7632_ ()Z net/minecraft/world/entity/ai/navigation/PathNavigation/canUpdatePath ()Z +MD: net/minecraft/world/entity/ai/navigation/PathNavigation/m_7636_ ()V net/minecraft/world/entity/ai/navigation/PathNavigation/followThePath ()V +MD: net/minecraft/world/entity/ai/navigation/PathNavigation/m_7638_ ()V net/minecraft/world/entity/ai/navigation/PathNavigation/tick ()V +MD: net/minecraft/world/entity/ai/navigation/PathNavigation/m_7864_ (Lnet/minecraft/core/BlockPos;I)Lnet/minecraft/world/level/pathfinder/Path; net/minecraft/world/entity/ai/navigation/PathNavigation/createPath (Lnet/minecraft/core/BlockPos;I)Lnet/minecraft/world/level/pathfinder/Path; +MD: net/minecraft/world/entity/ai/navigation/WallClimberNavigation/ (Lnet/minecraft/world/entity/Mob;Lnet/minecraft/world/level/Level;)V net/minecraft/world/entity/ai/navigation/WallClimberNavigation/ (Lnet/minecraft/world/entity/Mob;Lnet/minecraft/world/level/Level;)V +MD: net/minecraft/world/entity/ai/navigation/WallClimberNavigation/m_5624_ (Lnet/minecraft/world/entity/Entity;D)Z net/minecraft/world/entity/ai/navigation/WallClimberNavigation/moveTo (Lnet/minecraft/world/entity/Entity;D)Z +MD: net/minecraft/world/entity/ai/navigation/WallClimberNavigation/m_6570_ (Lnet/minecraft/world/entity/Entity;I)Lnet/minecraft/world/level/pathfinder/Path; net/minecraft/world/entity/ai/navigation/WallClimberNavigation/createPath (Lnet/minecraft/world/entity/Entity;I)Lnet/minecraft/world/level/pathfinder/Path; +MD: net/minecraft/world/entity/ai/navigation/WallClimberNavigation/m_7638_ ()V net/minecraft/world/entity/ai/navigation/WallClimberNavigation/tick ()V +MD: net/minecraft/world/entity/ai/navigation/WallClimberNavigation/m_7864_ (Lnet/minecraft/core/BlockPos;I)Lnet/minecraft/world/level/pathfinder/Path; net/minecraft/world/entity/ai/navigation/WallClimberNavigation/createPath (Lnet/minecraft/core/BlockPos;I)Lnet/minecraft/world/level/pathfinder/Path; +MD: net/minecraft/world/entity/ai/navigation/WaterBoundPathNavigation/ (Lnet/minecraft/world/entity/Mob;Lnet/minecraft/world/level/Level;)V net/minecraft/world/entity/ai/navigation/WaterBoundPathNavigation/ (Lnet/minecraft/world/entity/Mob;Lnet/minecraft/world/level/Level;)V +MD: net/minecraft/world/entity/ai/navigation/WaterBoundPathNavigation/m_183345_ (Lnet/minecraft/world/phys/Vec3;)D net/minecraft/world/entity/ai/navigation/WaterBoundPathNavigation/getGroundY (Lnet/minecraft/world/phys/Vec3;)D +MD: net/minecraft/world/entity/ai/navigation/WaterBoundPathNavigation/m_183431_ (Lnet/minecraft/world/phys/Vec3;Lnet/minecraft/world/phys/Vec3;)Z net/minecraft/world/entity/ai/navigation/WaterBoundPathNavigation/canMoveDirectly (Lnet/minecraft/world/phys/Vec3;Lnet/minecraft/world/phys/Vec3;)Z +MD: net/minecraft/world/entity/ai/navigation/WaterBoundPathNavigation/m_5532_ (I)Lnet/minecraft/world/level/pathfinder/PathFinder; net/minecraft/world/entity/ai/navigation/WaterBoundPathNavigation/createPathFinder (I)Lnet/minecraft/world/level/pathfinder/PathFinder; +MD: net/minecraft/world/entity/ai/navigation/WaterBoundPathNavigation/m_6342_ (Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/entity/ai/navigation/WaterBoundPathNavigation/isStableDestination (Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/entity/ai/navigation/WaterBoundPathNavigation/m_7008_ (Z)V net/minecraft/world/entity/ai/navigation/WaterBoundPathNavigation/setCanFloat (Z)V +MD: net/minecraft/world/entity/ai/navigation/WaterBoundPathNavigation/m_7475_ ()Lnet/minecraft/world/phys/Vec3; net/minecraft/world/entity/ai/navigation/WaterBoundPathNavigation/getTempMobPos ()Lnet/minecraft/world/phys/Vec3; +MD: net/minecraft/world/entity/ai/navigation/WaterBoundPathNavigation/m_7632_ ()Z net/minecraft/world/entity/ai/navigation/WaterBoundPathNavigation/canUpdatePath ()Z +MD: net/minecraft/world/entity/ai/sensing/AdultSensor/ ()V net/minecraft/world/entity/ai/sensing/AdultSensor/ ()V +MD: net/minecraft/world/entity/ai/sensing/AdultSensor/m_186140_ (Lnet/minecraft/world/entity/AgeableMob;Lnet/minecraft/world/entity/ai/memory/NearestVisibleLivingEntities;)V net/minecraft/world/entity/ai/sensing/AdultSensor/setNearestVisibleAdult (Lnet/minecraft/world/entity/AgeableMob;Lnet/minecraft/world/entity/ai/memory/NearestVisibleLivingEntities;)V +MD: net/minecraft/world/entity/ai/sensing/AdultSensor/m_186143_ (Lnet/minecraft/world/entity/AgeableMob;Lnet/minecraft/world/entity/ai/memory/NearestVisibleLivingEntities;)V net/minecraft/world/entity/ai/sensing/AdultSensor/lambda$doTick$0 (Lnet/minecraft/world/entity/AgeableMob;Lnet/minecraft/world/entity/ai/memory/NearestVisibleLivingEntities;)V +MD: net/minecraft/world/entity/ai/sensing/AdultSensor/m_289118_ (Lnet/minecraft/world/entity/AgeableMob;Lnet/minecraft/world/entity/LivingEntity;)Z net/minecraft/world/entity/ai/sensing/AdultSensor/lambda$setNearestVisibleAdult$1 (Lnet/minecraft/world/entity/AgeableMob;Lnet/minecraft/world/entity/LivingEntity;)Z +MD: net/minecraft/world/entity/ai/sensing/AdultSensor/m_5578_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;)V net/minecraft/world/entity/ai/sensing/AdultSensor/doTick (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;)V +MD: net/minecraft/world/entity/ai/sensing/AdultSensor/m_5578_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/AgeableMob;)V net/minecraft/world/entity/ai/sensing/AdultSensor/doTick (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/AgeableMob;)V +MD: net/minecraft/world/entity/ai/sensing/AdultSensor/m_7163_ ()Ljava/util/Set; net/minecraft/world/entity/ai/sensing/AdultSensor/requires ()Ljava/util/Set; +MD: net/minecraft/world/entity/ai/sensing/AxolotlAttackablesSensor/ ()V net/minecraft/world/entity/ai/sensing/AxolotlAttackablesSensor/ ()V +MD: net/minecraft/world/entity/ai/sensing/AxolotlAttackablesSensor/m_142149_ ()Lnet/minecraft/world/entity/ai/memory/MemoryModuleType; net/minecraft/world/entity/ai/sensing/AxolotlAttackablesSensor/getMemory ()Lnet/minecraft/world/entity/ai/memory/MemoryModuleType; +MD: net/minecraft/world/entity/ai/sensing/AxolotlAttackablesSensor/m_142628_ (Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/entity/LivingEntity;)Z net/minecraft/world/entity/ai/sensing/AxolotlAttackablesSensor/isMatchingEntity (Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/entity/LivingEntity;)Z +MD: net/minecraft/world/entity/ai/sensing/AxolotlAttackablesSensor/m_148269_ (Lnet/minecraft/world/entity/LivingEntity;)Z net/minecraft/world/entity/ai/sensing/AxolotlAttackablesSensor/isHostileTarget (Lnet/minecraft/world/entity/LivingEntity;)Z +MD: net/minecraft/world/entity/ai/sensing/AxolotlAttackablesSensor/m_148271_ (Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/entity/LivingEntity;)Z net/minecraft/world/entity/ai/sensing/AxolotlAttackablesSensor/isHuntTarget (Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/entity/LivingEntity;)Z +MD: net/minecraft/world/entity/ai/sensing/AxolotlAttackablesSensor/m_148274_ (Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/entity/LivingEntity;)Z net/minecraft/world/entity/ai/sensing/AxolotlAttackablesSensor/isClose (Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/entity/LivingEntity;)Z +MD: net/minecraft/world/entity/ai/sensing/DummySensor/ ()V net/minecraft/world/entity/ai/sensing/DummySensor/ ()V +MD: net/minecraft/world/entity/ai/sensing/DummySensor/m_5578_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;)V net/minecraft/world/entity/ai/sensing/DummySensor/doTick (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;)V +MD: net/minecraft/world/entity/ai/sensing/DummySensor/m_7163_ ()Ljava/util/Set; net/minecraft/world/entity/ai/sensing/DummySensor/requires ()Ljava/util/Set; +MD: net/minecraft/world/entity/ai/sensing/FrogAttackablesSensor/ ()V net/minecraft/world/entity/ai/sensing/FrogAttackablesSensor/ ()V +MD: net/minecraft/world/entity/ai/sensing/FrogAttackablesSensor/m_142149_ ()Lnet/minecraft/world/entity/ai/memory/MemoryModuleType; net/minecraft/world/entity/ai/sensing/FrogAttackablesSensor/getMemory ()Lnet/minecraft/world/entity/ai/memory/MemoryModuleType; +MD: net/minecraft/world/entity/ai/sensing/FrogAttackablesSensor/m_142628_ (Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/entity/LivingEntity;)Z net/minecraft/world/entity/ai/sensing/FrogAttackablesSensor/isMatchingEntity (Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/entity/LivingEntity;)Z +MD: net/minecraft/world/entity/ai/sensing/FrogAttackablesSensor/m_238335_ (Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/entity/LivingEntity;)Z net/minecraft/world/entity/ai/sensing/FrogAttackablesSensor/isUnreachableAttackTarget (Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/entity/LivingEntity;)Z +MD: net/minecraft/world/entity/ai/sensing/GolemSensor/ (I)V net/minecraft/world/entity/ai/sensing/GolemSensor/ (I)V +MD: net/minecraft/world/entity/ai/sensing/GolemSensor/ ()V net/minecraft/world/entity/ai/sensing/GolemSensor/ ()V +MD: net/minecraft/world/entity/ai/sensing/GolemSensor/m_26647_ (Lnet/minecraft/world/entity/LivingEntity;)V net/minecraft/world/entity/ai/sensing/GolemSensor/checkForNearbyGolem (Lnet/minecraft/world/entity/LivingEntity;)V +MD: net/minecraft/world/entity/ai/sensing/GolemSensor/m_26649_ (Lnet/minecraft/world/entity/LivingEntity;)V net/minecraft/world/entity/ai/sensing/GolemSensor/golemDetected (Lnet/minecraft/world/entity/LivingEntity;)V +MD: net/minecraft/world/entity/ai/sensing/GolemSensor/m_289119_ (Lnet/minecraft/world/entity/LivingEntity;)Z net/minecraft/world/entity/ai/sensing/GolemSensor/lambda$checkForNearbyGolem$0 (Lnet/minecraft/world/entity/LivingEntity;)Z +MD: net/minecraft/world/entity/ai/sensing/GolemSensor/m_5578_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;)V net/minecraft/world/entity/ai/sensing/GolemSensor/doTick (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;)V +MD: net/minecraft/world/entity/ai/sensing/GolemSensor/m_7163_ ()Ljava/util/Set; net/minecraft/world/entity/ai/sensing/GolemSensor/requires ()Ljava/util/Set; +MD: net/minecraft/world/entity/ai/sensing/HoglinSpecificSensor/ ()V net/minecraft/world/entity/ai/sensing/HoglinSpecificSensor/ ()V +MD: net/minecraft/world/entity/ai/sensing/HoglinSpecificSensor/m_186146_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/entity/ai/sensing/HoglinSpecificSensor/lambda$findNearestRepellent$1 (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/entity/ai/sensing/HoglinSpecificSensor/m_186149_ (Lnet/minecraft/world/entity/LivingEntity;)Z net/minecraft/world/entity/ai/sensing/HoglinSpecificSensor/lambda$doTick$0 (Lnet/minecraft/world/entity/LivingEntity;)Z +MD: net/minecraft/world/entity/ai/sensing/HoglinSpecificSensor/m_26664_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/monster/hoglin/Hoglin;)Ljava/util/Optional; net/minecraft/world/entity/ai/sensing/HoglinSpecificSensor/findNearestRepellent (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/monster/hoglin/Hoglin;)Ljava/util/Optional; +MD: net/minecraft/world/entity/ai/sensing/HoglinSpecificSensor/m_5578_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;)V net/minecraft/world/entity/ai/sensing/HoglinSpecificSensor/doTick (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;)V +MD: net/minecraft/world/entity/ai/sensing/HoglinSpecificSensor/m_5578_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/monster/hoglin/Hoglin;)V net/minecraft/world/entity/ai/sensing/HoglinSpecificSensor/doTick (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/monster/hoglin/Hoglin;)V +MD: net/minecraft/world/entity/ai/sensing/HoglinSpecificSensor/m_7163_ ()Ljava/util/Set; net/minecraft/world/entity/ai/sensing/HoglinSpecificSensor/requires ()Ljava/util/Set; +MD: net/minecraft/world/entity/ai/sensing/HurtBySensor/ ()V net/minecraft/world/entity/ai/sensing/HurtBySensor/ ()V +MD: net/minecraft/world/entity/ai/sensing/HurtBySensor/m_289120_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/ai/Brain;Lnet/minecraft/world/entity/LivingEntity;)V net/minecraft/world/entity/ai/sensing/HurtBySensor/lambda$doTick$0 (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/ai/Brain;Lnet/minecraft/world/entity/LivingEntity;)V +MD: net/minecraft/world/entity/ai/sensing/HurtBySensor/m_5578_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;)V net/minecraft/world/entity/ai/sensing/HurtBySensor/doTick (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;)V +MD: net/minecraft/world/entity/ai/sensing/HurtBySensor/m_7163_ ()Ljava/util/Set; net/minecraft/world/entity/ai/sensing/HurtBySensor/requires ()Ljava/util/Set; +MD: net/minecraft/world/entity/ai/sensing/IsInWaterSensor/ ()V net/minecraft/world/entity/ai/sensing/IsInWaterSensor/ ()V +MD: net/minecraft/world/entity/ai/sensing/IsInWaterSensor/m_5578_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;)V net/minecraft/world/entity/ai/sensing/IsInWaterSensor/doTick (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;)V +MD: net/minecraft/world/entity/ai/sensing/IsInWaterSensor/m_7163_ ()Ljava/util/Set; net/minecraft/world/entity/ai/sensing/IsInWaterSensor/requires ()Ljava/util/Set; +MD: net/minecraft/world/entity/ai/sensing/NearestBedSensor/ ()V net/minecraft/world/entity/ai/sensing/NearestBedSensor/ ()V +MD: net/minecraft/world/entity/ai/sensing/NearestBedSensor/m_217818_ (Lnet/minecraft/core/Holder;)Z net/minecraft/world/entity/ai/sensing/NearestBedSensor/lambda$doTick$1 (Lnet/minecraft/core/Holder;)Z +MD: net/minecraft/world/entity/ai/sensing/NearestBedSensor/m_217820_ (Lit/unimi/dsi/fastutil/longs/Long2LongMap$Entry;)Z net/minecraft/world/entity/ai/sensing/NearestBedSensor/lambda$doTick$2 (Lit/unimi/dsi/fastutil/longs/Long2LongMap$Entry;)Z +MD: net/minecraft/world/entity/ai/sensing/NearestBedSensor/m_26687_ (Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/entity/ai/sensing/NearestBedSensor/lambda$doTick$0 (Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/entity/ai/sensing/NearestBedSensor/m_5578_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;)V net/minecraft/world/entity/ai/sensing/NearestBedSensor/doTick (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;)V +MD: net/minecraft/world/entity/ai/sensing/NearestBedSensor/m_5578_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/Mob;)V net/minecraft/world/entity/ai/sensing/NearestBedSensor/doTick (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/Mob;)V +MD: net/minecraft/world/entity/ai/sensing/NearestBedSensor/m_7163_ ()Ljava/util/Set; net/minecraft/world/entity/ai/sensing/NearestBedSensor/requires ()Ljava/util/Set; +MD: net/minecraft/world/entity/ai/sensing/NearestItemSensor/ ()V net/minecraft/world/entity/ai/sensing/NearestItemSensor/ ()V +MD: net/minecraft/world/entity/ai/sensing/NearestItemSensor/m_26699_ (Lnet/minecraft/world/entity/Mob;Lnet/minecraft/world/entity/item/ItemEntity;)Z net/minecraft/world/entity/ai/sensing/NearestItemSensor/lambda$doTick$2 (Lnet/minecraft/world/entity/Mob;Lnet/minecraft/world/entity/item/ItemEntity;)Z +MD: net/minecraft/world/entity/ai/sensing/NearestItemSensor/m_26702_ (Lnet/minecraft/world/entity/item/ItemEntity;)Z net/minecraft/world/entity/ai/sensing/NearestItemSensor/lambda$doTick$0 (Lnet/minecraft/world/entity/item/ItemEntity;)Z +MD: net/minecraft/world/entity/ai/sensing/NearestItemSensor/m_26704_ (Lnet/minecraft/world/entity/Mob;Lnet/minecraft/world/entity/item/ItemEntity;)Z net/minecraft/world/entity/ai/sensing/NearestItemSensor/lambda$doTick$1 (Lnet/minecraft/world/entity/Mob;Lnet/minecraft/world/entity/item/ItemEntity;)Z +MD: net/minecraft/world/entity/ai/sensing/NearestItemSensor/m_5578_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;)V net/minecraft/world/entity/ai/sensing/NearestItemSensor/doTick (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;)V +MD: net/minecraft/world/entity/ai/sensing/NearestItemSensor/m_5578_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/Mob;)V net/minecraft/world/entity/ai/sensing/NearestItemSensor/doTick (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/Mob;)V +MD: net/minecraft/world/entity/ai/sensing/NearestItemSensor/m_7163_ ()Ljava/util/Set; net/minecraft/world/entity/ai/sensing/NearestItemSensor/requires ()Ljava/util/Set; +MD: net/minecraft/world/entity/ai/sensing/NearestLivingEntitySensor/ ()V net/minecraft/world/entity/ai/sensing/NearestLivingEntitySensor/ ()V +MD: net/minecraft/world/entity/ai/sensing/NearestLivingEntitySensor/m_214019_ ()I net/minecraft/world/entity/ai/sensing/NearestLivingEntitySensor/radiusY ()I +MD: net/minecraft/world/entity/ai/sensing/NearestLivingEntitySensor/m_214020_ ()I net/minecraft/world/entity/ai/sensing/NearestLivingEntitySensor/radiusXZ ()I +MD: net/minecraft/world/entity/ai/sensing/NearestLivingEntitySensor/m_26715_ (Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/entity/LivingEntity;)Z net/minecraft/world/entity/ai/sensing/NearestLivingEntitySensor/lambda$doTick$0 (Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/entity/LivingEntity;)Z +MD: net/minecraft/world/entity/ai/sensing/NearestLivingEntitySensor/m_5578_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;)V net/minecraft/world/entity/ai/sensing/NearestLivingEntitySensor/doTick (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;)V +MD: net/minecraft/world/entity/ai/sensing/NearestLivingEntitySensor/m_7163_ ()Ljava/util/Set; net/minecraft/world/entity/ai/sensing/NearestLivingEntitySensor/requires ()Ljava/util/Set; +MD: net/minecraft/world/entity/ai/sensing/NearestVisibleLivingEntitySensor/ ()V net/minecraft/world/entity/ai/sensing/NearestVisibleLivingEntitySensor/ ()V +MD: net/minecraft/world/entity/ai/sensing/NearestVisibleLivingEntitySensor/m_142149_ ()Lnet/minecraft/world/entity/ai/memory/MemoryModuleType; net/minecraft/world/entity/ai/sensing/NearestVisibleLivingEntitySensor/getMemory ()Lnet/minecraft/world/entity/ai/memory/MemoryModuleType; +MD: net/minecraft/world/entity/ai/sensing/NearestVisibleLivingEntitySensor/m_142628_ (Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/entity/LivingEntity;)Z net/minecraft/world/entity/ai/sensing/NearestVisibleLivingEntitySensor/isMatchingEntity (Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/entity/LivingEntity;)Z +MD: net/minecraft/world/entity/ai/sensing/NearestVisibleLivingEntitySensor/m_148290_ (Lnet/minecraft/world/entity/LivingEntity;)Ljava/util/Optional; net/minecraft/world/entity/ai/sensing/NearestVisibleLivingEntitySensor/getVisibleEntities (Lnet/minecraft/world/entity/LivingEntity;)Ljava/util/Optional; +MD: net/minecraft/world/entity/ai/sensing/NearestVisibleLivingEntitySensor/m_148297_ (Lnet/minecraft/world/entity/LivingEntity;)Ljava/util/Optional; net/minecraft/world/entity/ai/sensing/NearestVisibleLivingEntitySensor/getNearestEntity (Lnet/minecraft/world/entity/LivingEntity;)Ljava/util/Optional; +MD: net/minecraft/world/entity/ai/sensing/NearestVisibleLivingEntitySensor/m_148299_ (Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/entity/LivingEntity;)Z net/minecraft/world/entity/ai/sensing/NearestVisibleLivingEntitySensor/lambda$getNearestEntity$0 (Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/entity/LivingEntity;)Z +MD: net/minecraft/world/entity/ai/sensing/NearestVisibleLivingEntitySensor/m_186151_ (Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/entity/ai/memory/NearestVisibleLivingEntities;)Ljava/util/Optional; net/minecraft/world/entity/ai/sensing/NearestVisibleLivingEntitySensor/lambda$getNearestEntity$1 (Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/entity/ai/memory/NearestVisibleLivingEntities;)Ljava/util/Optional; +MD: net/minecraft/world/entity/ai/sensing/NearestVisibleLivingEntitySensor/m_5578_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;)V net/minecraft/world/entity/ai/sensing/NearestVisibleLivingEntitySensor/doTick (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;)V +MD: net/minecraft/world/entity/ai/sensing/NearestVisibleLivingEntitySensor/m_7163_ ()Ljava/util/Set; net/minecraft/world/entity/ai/sensing/NearestVisibleLivingEntitySensor/requires ()Ljava/util/Set; +MD: net/minecraft/world/entity/ai/sensing/PiglinBruteSpecificSensor/ ()V net/minecraft/world/entity/ai/sensing/PiglinBruteSpecificSensor/ ()V +MD: net/minecraft/world/entity/ai/sensing/PiglinBruteSpecificSensor/m_186154_ (Lnet/minecraft/world/entity/LivingEntity;)Z net/minecraft/world/entity/ai/sensing/PiglinBruteSpecificSensor/lambda$doTick$0 (Lnet/minecraft/world/entity/LivingEntity;)Z +MD: net/minecraft/world/entity/ai/sensing/PiglinBruteSpecificSensor/m_5578_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;)V net/minecraft/world/entity/ai/sensing/PiglinBruteSpecificSensor/doTick (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;)V +MD: net/minecraft/world/entity/ai/sensing/PiglinBruteSpecificSensor/m_7163_ ()Ljava/util/Set; net/minecraft/world/entity/ai/sensing/PiglinBruteSpecificSensor/requires ()Ljava/util/Set; +MD: net/minecraft/world/entity/ai/sensing/PiglinSpecificSensor/ ()V net/minecraft/world/entity/ai/sensing/PiglinSpecificSensor/ ()V +MD: net/minecraft/world/entity/ai/sensing/PiglinSpecificSensor/m_186156_ (Lnet/minecraft/world/entity/LivingEntity;)Z net/minecraft/world/entity/ai/sensing/PiglinSpecificSensor/lambda$doTick$0 (Lnet/minecraft/world/entity/LivingEntity;)Z +MD: net/minecraft/world/entity/ai/sensing/PiglinSpecificSensor/m_186158_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/entity/ai/sensing/PiglinSpecificSensor/lambda$findNearestRepellent$1 (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/entity/ai/sensing/PiglinSpecificSensor/m_26728_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/entity/ai/sensing/PiglinSpecificSensor/isValidRepellent (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/entity/ai/sensing/PiglinSpecificSensor/m_26734_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;)Ljava/util/Optional; net/minecraft/world/entity/ai/sensing/PiglinSpecificSensor/findNearestRepellent (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;)Ljava/util/Optional; +MD: net/minecraft/world/entity/ai/sensing/PiglinSpecificSensor/m_5578_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;)V net/minecraft/world/entity/ai/sensing/PiglinSpecificSensor/doTick (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;)V +MD: net/minecraft/world/entity/ai/sensing/PiglinSpecificSensor/m_7163_ ()Ljava/util/Set; net/minecraft/world/entity/ai/sensing/PiglinSpecificSensor/requires ()Ljava/util/Set; +MD: net/minecraft/world/entity/ai/sensing/PlayerSensor/ ()V net/minecraft/world/entity/ai/sensing/PlayerSensor/ ()V +MD: net/minecraft/world/entity/ai/sensing/PlayerSensor/m_148302_ (Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/entity/player/Player;)Z net/minecraft/world/entity/ai/sensing/PlayerSensor/lambda$doTick$2 (Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/entity/player/Player;)Z +MD: net/minecraft/world/entity/ai/sensing/PlayerSensor/m_26742_ (Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/server/level/ServerPlayer;)Z net/minecraft/world/entity/ai/sensing/PlayerSensor/lambda$doTick$0 (Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/server/level/ServerPlayer;)Z +MD: net/minecraft/world/entity/ai/sensing/PlayerSensor/m_26745_ (Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/entity/player/Player;)Z net/minecraft/world/entity/ai/sensing/PlayerSensor/lambda$doTick$1 (Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/entity/player/Player;)Z +MD: net/minecraft/world/entity/ai/sensing/PlayerSensor/m_5578_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;)V net/minecraft/world/entity/ai/sensing/PlayerSensor/doTick (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;)V +MD: net/minecraft/world/entity/ai/sensing/PlayerSensor/m_7163_ ()Ljava/util/Set; net/minecraft/world/entity/ai/sensing/PlayerSensor/requires ()Ljava/util/Set; +MD: net/minecraft/world/entity/ai/sensing/SecondaryPoiSensor/ ()V net/minecraft/world/entity/ai/sensing/SecondaryPoiSensor/ ()V +MD: net/minecraft/world/entity/ai/sensing/SecondaryPoiSensor/m_5578_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;)V net/minecraft/world/entity/ai/sensing/SecondaryPoiSensor/doTick (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;)V +MD: net/minecraft/world/entity/ai/sensing/SecondaryPoiSensor/m_5578_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/npc/Villager;)V net/minecraft/world/entity/ai/sensing/SecondaryPoiSensor/doTick (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/npc/Villager;)V +MD: net/minecraft/world/entity/ai/sensing/SecondaryPoiSensor/m_7163_ ()Ljava/util/Set; net/minecraft/world/entity/ai/sensing/SecondaryPoiSensor/requires ()Ljava/util/Set; +MD: net/minecraft/world/entity/ai/sensing/Sensing/ (Lnet/minecraft/world/entity/Mob;)V net/minecraft/world/entity/ai/sensing/Sensing/ (Lnet/minecraft/world/entity/Mob;)V +MD: net/minecraft/world/entity/ai/sensing/Sensing/m_148306_ (Lnet/minecraft/world/entity/Entity;)Z net/minecraft/world/entity/ai/sensing/Sensing/hasLineOfSight (Lnet/minecraft/world/entity/Entity;)Z +MD: net/minecraft/world/entity/ai/sensing/Sensing/m_26789_ ()V net/minecraft/world/entity/ai/sensing/Sensing/tick ()V +MD: net/minecraft/world/entity/ai/sensing/Sensor/ ()V net/minecraft/world/entity/ai/sensing/Sensor/ ()V +MD: net/minecraft/world/entity/ai/sensing/Sensor/ (I)V net/minecraft/world/entity/ai/sensing/Sensor/ (I)V +MD: net/minecraft/world/entity/ai/sensing/Sensor/ ()V net/minecraft/world/entity/ai/sensing/Sensor/ ()V +MD: net/minecraft/world/entity/ai/sensing/Sensor/m_148312_ (Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/entity/LivingEntity;)Z net/minecraft/world/entity/ai/sensing/Sensor/isEntityAttackable (Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/entity/LivingEntity;)Z +MD: net/minecraft/world/entity/ai/sensing/Sensor/m_182377_ (Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/entity/LivingEntity;)Z net/minecraft/world/entity/ai/sensing/Sensor/isEntityAttackableIgnoringLineOfSight (Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/entity/LivingEntity;)Z +MD: net/minecraft/world/entity/ai/sensing/Sensor/m_26803_ (Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/entity/LivingEntity;)Z net/minecraft/world/entity/ai/sensing/Sensor/isEntityTargetable (Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/entity/LivingEntity;)Z +MD: net/minecraft/world/entity/ai/sensing/Sensor/m_26806_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;)V net/minecraft/world/entity/ai/sensing/Sensor/tick (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;)V +MD: net/minecraft/world/entity/ai/sensing/Sensor/m_5578_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;)V net/minecraft/world/entity/ai/sensing/Sensor/doTick (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;)V +MD: net/minecraft/world/entity/ai/sensing/Sensor/m_7163_ ()Ljava/util/Set; net/minecraft/world/entity/ai/sensing/Sensor/requires ()Ljava/util/Set; +MD: net/minecraft/world/entity/ai/sensing/SensorType/ ()V net/minecraft/world/entity/ai/sensing/SensorType/ ()V +MD: net/minecraft/world/entity/ai/sensing/SensorType/ (Ljava/util/function/Supplier;)V net/minecraft/world/entity/ai/sensing/SensorType/ (Ljava/util/function/Supplier;)V +MD: net/minecraft/world/entity/ai/sensing/SensorType/m_148318_ ()Lnet/minecraft/world/entity/ai/sensing/TemptingSensor; net/minecraft/world/entity/ai/sensing/SensorType/lambda$static$1 ()Lnet/minecraft/world/entity/ai/sensing/TemptingSensor; +MD: net/minecraft/world/entity/ai/sensing/SensorType/m_148319_ ()Lnet/minecraft/world/entity/ai/sensing/TemptingSensor; net/minecraft/world/entity/ai/sensing/SensorType/lambda$static$0 ()Lnet/minecraft/world/entity/ai/sensing/TemptingSensor; +MD: net/minecraft/world/entity/ai/sensing/SensorType/m_217826_ ()Lnet/minecraft/world/entity/ai/sensing/TemptingSensor; net/minecraft/world/entity/ai/sensing/SensorType/lambda$static$2 ()Lnet/minecraft/world/entity/ai/sensing/TemptingSensor; +MD: net/minecraft/world/entity/ai/sensing/SensorType/m_244936_ ()Lnet/minecraft/world/entity/ai/sensing/TemptingSensor; net/minecraft/world/entity/ai/sensing/SensorType/lambda$static$3 ()Lnet/minecraft/world/entity/ai/sensing/TemptingSensor; +MD: net/minecraft/world/entity/ai/sensing/SensorType/m_26827_ ()Lnet/minecraft/world/entity/ai/sensing/Sensor; net/minecraft/world/entity/ai/sensing/SensorType/create ()Lnet/minecraft/world/entity/ai/sensing/Sensor; +MD: net/minecraft/world/entity/ai/sensing/SensorType/m_26828_ (Ljava/lang/String;Ljava/util/function/Supplier;)Lnet/minecraft/world/entity/ai/sensing/SensorType; net/minecraft/world/entity/ai/sensing/SensorType/register (Ljava/lang/String;Ljava/util/function/Supplier;)Lnet/minecraft/world/entity/ai/sensing/SensorType; +MD: net/minecraft/world/entity/ai/sensing/SensorType/m_278567_ ()Lnet/minecraft/world/entity/ai/sensing/TemptingSensor; net/minecraft/world/entity/ai/sensing/SensorType/lambda$static$4 ()Lnet/minecraft/world/entity/ai/sensing/TemptingSensor; +MD: net/minecraft/world/entity/ai/sensing/TemptingSensor/ ()V net/minecraft/world/entity/ai/sensing/TemptingSensor/ ()V +MD: net/minecraft/world/entity/ai/sensing/TemptingSensor/ (Lnet/minecraft/world/item/crafting/Ingredient;)V net/minecraft/world/entity/ai/sensing/TemptingSensor/ (Lnet/minecraft/world/item/crafting/Ingredient;)V +MD: net/minecraft/world/entity/ai/sensing/TemptingSensor/m_148333_ (Lnet/minecraft/world/entity/PathfinderMob;Lnet/minecraft/server/level/ServerPlayer;)Z net/minecraft/world/entity/ai/sensing/TemptingSensor/lambda$doTick$1 (Lnet/minecraft/world/entity/PathfinderMob;Lnet/minecraft/server/level/ServerPlayer;)Z +MD: net/minecraft/world/entity/ai/sensing/TemptingSensor/m_148336_ (Lnet/minecraft/world/entity/player/Player;)Z net/minecraft/world/entity/ai/sensing/TemptingSensor/playerHoldingTemptation (Lnet/minecraft/world/entity/player/Player;)Z +MD: net/minecraft/world/entity/ai/sensing/TemptingSensor/m_148338_ (Lnet/minecraft/world/item/ItemStack;)Z net/minecraft/world/entity/ai/sensing/TemptingSensor/isTemptation (Lnet/minecraft/world/item/ItemStack;)Z +MD: net/minecraft/world/entity/ai/sensing/TemptingSensor/m_148340_ (Lnet/minecraft/world/entity/PathfinderMob;Lnet/minecraft/server/level/ServerPlayer;)Z net/minecraft/world/entity/ai/sensing/TemptingSensor/lambda$doTick$0 (Lnet/minecraft/world/entity/PathfinderMob;Lnet/minecraft/server/level/ServerPlayer;)Z +MD: net/minecraft/world/entity/ai/sensing/TemptingSensor/m_263996_ (Lnet/minecraft/world/entity/PathfinderMob;Lnet/minecraft/server/level/ServerPlayer;)Z net/minecraft/world/entity/ai/sensing/TemptingSensor/lambda$doTick$2 (Lnet/minecraft/world/entity/PathfinderMob;Lnet/minecraft/server/level/ServerPlayer;)Z +MD: net/minecraft/world/entity/ai/sensing/TemptingSensor/m_5578_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/PathfinderMob;)V net/minecraft/world/entity/ai/sensing/TemptingSensor/doTick (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/PathfinderMob;)V +MD: net/minecraft/world/entity/ai/sensing/TemptingSensor/m_5578_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;)V net/minecraft/world/entity/ai/sensing/TemptingSensor/doTick (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;)V +MD: net/minecraft/world/entity/ai/sensing/TemptingSensor/m_7163_ ()Ljava/util/Set; net/minecraft/world/entity/ai/sensing/TemptingSensor/requires ()Ljava/util/Set; +MD: net/minecraft/world/entity/ai/sensing/VillagerBabiesSensor/ ()V net/minecraft/world/entity/ai/sensing/VillagerBabiesSensor/ ()V +MD: net/minecraft/world/entity/ai/sensing/VillagerBabiesSensor/m_186203_ (Lnet/minecraft/world/entity/LivingEntity;)Lnet/minecraft/world/entity/ai/memory/NearestVisibleLivingEntities; net/minecraft/world/entity/ai/sensing/VillagerBabiesSensor/getVisibleEntities (Lnet/minecraft/world/entity/LivingEntity;)Lnet/minecraft/world/entity/ai/memory/NearestVisibleLivingEntities; +MD: net/minecraft/world/entity/ai/sensing/VillagerBabiesSensor/m_26836_ (Lnet/minecraft/world/entity/LivingEntity;)Ljava/util/List; net/minecraft/world/entity/ai/sensing/VillagerBabiesSensor/getNearestVillagerBabies (Lnet/minecraft/world/entity/LivingEntity;)Ljava/util/List; +MD: net/minecraft/world/entity/ai/sensing/VillagerBabiesSensor/m_26838_ (Lnet/minecraft/world/entity/LivingEntity;)Z net/minecraft/world/entity/ai/sensing/VillagerBabiesSensor/isVillagerBaby (Lnet/minecraft/world/entity/LivingEntity;)Z +MD: net/minecraft/world/entity/ai/sensing/VillagerBabiesSensor/m_5578_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;)V net/minecraft/world/entity/ai/sensing/VillagerBabiesSensor/doTick (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;)V +MD: net/minecraft/world/entity/ai/sensing/VillagerBabiesSensor/m_7163_ ()Ljava/util/Set; net/minecraft/world/entity/ai/sensing/VillagerBabiesSensor/requires ()Ljava/util/Set; +MD: net/minecraft/world/entity/ai/sensing/VillagerHostilesSensor/ ()V net/minecraft/world/entity/ai/sensing/VillagerHostilesSensor/ ()V +MD: net/minecraft/world/entity/ai/sensing/VillagerHostilesSensor/ ()V net/minecraft/world/entity/ai/sensing/VillagerHostilesSensor/ ()V +MD: net/minecraft/world/entity/ai/sensing/VillagerHostilesSensor/m_142149_ ()Lnet/minecraft/world/entity/ai/memory/MemoryModuleType; net/minecraft/world/entity/ai/sensing/VillagerHostilesSensor/getMemory ()Lnet/minecraft/world/entity/ai/memory/MemoryModuleType; +MD: net/minecraft/world/entity/ai/sensing/VillagerHostilesSensor/m_142628_ (Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/entity/LivingEntity;)Z net/minecraft/world/entity/ai/sensing/VillagerHostilesSensor/isMatchingEntity (Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/entity/LivingEntity;)Z +MD: net/minecraft/world/entity/ai/sensing/VillagerHostilesSensor/m_26860_ (Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/entity/LivingEntity;)Z net/minecraft/world/entity/ai/sensing/VillagerHostilesSensor/isClose (Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/entity/LivingEntity;)Z +MD: net/minecraft/world/entity/ai/sensing/VillagerHostilesSensor/m_26867_ (Lnet/minecraft/world/entity/LivingEntity;)Z net/minecraft/world/entity/ai/sensing/VillagerHostilesSensor/isHostile (Lnet/minecraft/world/entity/LivingEntity;)Z +MD: net/minecraft/world/entity/ai/sensing/WardenEntitySensor/ ()V net/minecraft/world/entity/ai/sensing/WardenEntitySensor/ ()V +MD: net/minecraft/world/entity/ai/sensing/WardenEntitySensor/m_214019_ ()I net/minecraft/world/entity/ai/sensing/WardenEntitySensor/radiusY ()I +MD: net/minecraft/world/entity/ai/sensing/WardenEntitySensor/m_214020_ ()I net/minecraft/world/entity/ai/sensing/WardenEntitySensor/radiusXZ ()I +MD: net/minecraft/world/entity/ai/sensing/WardenEntitySensor/m_217837_ (Lnet/minecraft/world/entity/monster/warden/Warden;)V net/minecraft/world/entity/ai/sensing/WardenEntitySensor/lambda$doTick$4 (Lnet/minecraft/world/entity/monster/warden/Warden;)V +MD: net/minecraft/world/entity/ai/sensing/WardenEntitySensor/m_217839_ (Lnet/minecraft/world/entity/monster/warden/Warden;Lnet/minecraft/world/entity/LivingEntity;)V net/minecraft/world/entity/ai/sensing/WardenEntitySensor/lambda$doTick$3 (Lnet/minecraft/world/entity/monster/warden/Warden;Lnet/minecraft/world/entity/LivingEntity;)V +MD: net/minecraft/world/entity/ai/sensing/WardenEntitySensor/m_217842_ (Lnet/minecraft/world/entity/monster/warden/Warden;Ljava/util/function/Predicate;)Ljava/util/Optional; net/minecraft/world/entity/ai/sensing/WardenEntitySensor/getClosest (Lnet/minecraft/world/entity/monster/warden/Warden;Ljava/util/function/Predicate;)Ljava/util/Optional; +MD: net/minecraft/world/entity/ai/sensing/WardenEntitySensor/m_217848_ (Lnet/minecraft/world/entity/monster/warden/Warden;)Ljava/util/Optional; net/minecraft/world/entity/ai/sensing/WardenEntitySensor/lambda$doTick$2 (Lnet/minecraft/world/entity/monster/warden/Warden;)Ljava/util/Optional; +MD: net/minecraft/world/entity/ai/sensing/WardenEntitySensor/m_289121_ (Lnet/minecraft/world/entity/LivingEntity;)Z net/minecraft/world/entity/ai/sensing/WardenEntitySensor/lambda$doTick$1 (Lnet/minecraft/world/entity/LivingEntity;)Z +MD: net/minecraft/world/entity/ai/sensing/WardenEntitySensor/m_289122_ (Lnet/minecraft/world/entity/LivingEntity;)Z net/minecraft/world/entity/ai/sensing/WardenEntitySensor/lambda$doTick$0 (Lnet/minecraft/world/entity/LivingEntity;)Z +MD: net/minecraft/world/entity/ai/sensing/WardenEntitySensor/m_5578_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;)V net/minecraft/world/entity/ai/sensing/WardenEntitySensor/doTick (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;)V +MD: net/minecraft/world/entity/ai/sensing/WardenEntitySensor/m_5578_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/monster/warden/Warden;)V net/minecraft/world/entity/ai/sensing/WardenEntitySensor/doTick (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/monster/warden/Warden;)V +MD: net/minecraft/world/entity/ai/sensing/WardenEntitySensor/m_7163_ ()Ljava/util/Set; net/minecraft/world/entity/ai/sensing/WardenEntitySensor/requires ()Ljava/util/Set; +MD: net/minecraft/world/entity/ai/targeting/TargetingConditions/ ()V net/minecraft/world/entity/ai/targeting/TargetingConditions/ ()V +MD: net/minecraft/world/entity/ai/targeting/TargetingConditions/ (Z)V net/minecraft/world/entity/ai/targeting/TargetingConditions/ (Z)V +MD: net/minecraft/world/entity/ai/targeting/TargetingConditions/m_148352_ ()Lnet/minecraft/world/entity/ai/targeting/TargetingConditions; net/minecraft/world/entity/ai/targeting/TargetingConditions/forCombat ()Lnet/minecraft/world/entity/ai/targeting/TargetingConditions; +MD: net/minecraft/world/entity/ai/targeting/TargetingConditions/m_148353_ ()Lnet/minecraft/world/entity/ai/targeting/TargetingConditions; net/minecraft/world/entity/ai/targeting/TargetingConditions/forNonCombat ()Lnet/minecraft/world/entity/ai/targeting/TargetingConditions; +MD: net/minecraft/world/entity/ai/targeting/TargetingConditions/m_148354_ ()Lnet/minecraft/world/entity/ai/targeting/TargetingConditions; net/minecraft/world/entity/ai/targeting/TargetingConditions/copy ()Lnet/minecraft/world/entity/ai/targeting/TargetingConditions; +MD: net/minecraft/world/entity/ai/targeting/TargetingConditions/m_148355_ ()Lnet/minecraft/world/entity/ai/targeting/TargetingConditions; net/minecraft/world/entity/ai/targeting/TargetingConditions/ignoreLineOfSight ()Lnet/minecraft/world/entity/ai/targeting/TargetingConditions; +MD: net/minecraft/world/entity/ai/targeting/TargetingConditions/m_26883_ (D)Lnet/minecraft/world/entity/ai/targeting/TargetingConditions; net/minecraft/world/entity/ai/targeting/TargetingConditions/range (D)Lnet/minecraft/world/entity/ai/targeting/TargetingConditions; +MD: net/minecraft/world/entity/ai/targeting/TargetingConditions/m_26885_ (Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/entity/LivingEntity;)Z net/minecraft/world/entity/ai/targeting/TargetingConditions/test (Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/entity/LivingEntity;)Z +MD: net/minecraft/world/entity/ai/targeting/TargetingConditions/m_26888_ (Ljava/util/function/Predicate;)Lnet/minecraft/world/entity/ai/targeting/TargetingConditions; net/minecraft/world/entity/ai/targeting/TargetingConditions/selector (Ljava/util/function/Predicate;)Lnet/minecraft/world/entity/ai/targeting/TargetingConditions; +MD: net/minecraft/world/entity/ai/targeting/TargetingConditions/m_26893_ ()Lnet/minecraft/world/entity/ai/targeting/TargetingConditions; net/minecraft/world/entity/ai/targeting/TargetingConditions/ignoreInvisibilityTesting ()Lnet/minecraft/world/entity/ai/targeting/TargetingConditions; +MD: net/minecraft/world/entity/ai/util/AirAndWaterRandomPos/ ()V net/minecraft/world/entity/ai/util/AirAndWaterRandomPos/ ()V +MD: net/minecraft/world/entity/ai/util/AirAndWaterRandomPos/m_148357_ (Lnet/minecraft/world/entity/PathfinderMob;IIIDDD)Lnet/minecraft/world/phys/Vec3; net/minecraft/world/entity/ai/util/AirAndWaterRandomPos/getPos (Lnet/minecraft/world/entity/PathfinderMob;IIIDDD)Lnet/minecraft/world/phys/Vec3; +MD: net/minecraft/world/entity/ai/util/AirAndWaterRandomPos/m_148365_ (Lnet/minecraft/world/entity/PathfinderMob;IIIDDDZ)Lnet/minecraft/core/BlockPos; net/minecraft/world/entity/ai/util/AirAndWaterRandomPos/generateRandomPos (Lnet/minecraft/world/entity/PathfinderMob;IIIDDDZ)Lnet/minecraft/core/BlockPos; +MD: net/minecraft/world/entity/ai/util/AirAndWaterRandomPos/m_148374_ (Lnet/minecraft/world/entity/PathfinderMob;Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/entity/ai/util/AirAndWaterRandomPos/lambda$generateRandomPos$1 (Lnet/minecraft/world/entity/PathfinderMob;Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/entity/ai/util/AirAndWaterRandomPos/m_148377_ (Lnet/minecraft/world/entity/PathfinderMob;IIIDDDZ)Lnet/minecraft/core/BlockPos; net/minecraft/world/entity/ai/util/AirAndWaterRandomPos/lambda$getPos$0 (Lnet/minecraft/world/entity/PathfinderMob;IIIDDDZ)Lnet/minecraft/core/BlockPos; +MD: net/minecraft/world/entity/ai/util/AirRandomPos/ ()V net/minecraft/world/entity/ai/util/AirRandomPos/ ()V +MD: net/minecraft/world/entity/ai/util/AirRandomPos/m_148387_ (Lnet/minecraft/world/entity/PathfinderMob;IIILnet/minecraft/world/phys/Vec3;D)Lnet/minecraft/world/phys/Vec3; net/minecraft/world/entity/ai/util/AirRandomPos/getPosTowards (Lnet/minecraft/world/entity/PathfinderMob;IIILnet/minecraft/world/phys/Vec3;D)Lnet/minecraft/world/phys/Vec3; +MD: net/minecraft/world/entity/ai/util/AirRandomPos/m_148394_ (Lnet/minecraft/world/entity/PathfinderMob;IIILnet/minecraft/world/phys/Vec3;DZ)Lnet/minecraft/core/BlockPos; net/minecraft/world/entity/ai/util/AirRandomPos/lambda$getPosTowards$0 (Lnet/minecraft/world/entity/PathfinderMob;IIILnet/minecraft/world/phys/Vec3;DZ)Lnet/minecraft/core/BlockPos; +MD: net/minecraft/world/entity/ai/util/DefaultRandomPos/ ()V net/minecraft/world/entity/ai/util/DefaultRandomPos/ ()V +MD: net/minecraft/world/entity/ai/util/DefaultRandomPos/m_148403_ (Lnet/minecraft/world/entity/PathfinderMob;II)Lnet/minecraft/world/phys/Vec3; net/minecraft/world/entity/ai/util/DefaultRandomPos/getPos (Lnet/minecraft/world/entity/PathfinderMob;II)Lnet/minecraft/world/phys/Vec3; +MD: net/minecraft/world/entity/ai/util/DefaultRandomPos/m_148407_ (Lnet/minecraft/world/entity/PathfinderMob;IILnet/minecraft/world/phys/Vec3;)Lnet/minecraft/world/phys/Vec3; net/minecraft/world/entity/ai/util/DefaultRandomPos/getPosAway (Lnet/minecraft/world/entity/PathfinderMob;IILnet/minecraft/world/phys/Vec3;)Lnet/minecraft/world/phys/Vec3; +MD: net/minecraft/world/entity/ai/util/DefaultRandomPos/m_148412_ (Lnet/minecraft/world/entity/PathfinderMob;IILnet/minecraft/world/phys/Vec3;D)Lnet/minecraft/world/phys/Vec3; net/minecraft/world/entity/ai/util/DefaultRandomPos/getPosTowards (Lnet/minecraft/world/entity/PathfinderMob;IILnet/minecraft/world/phys/Vec3;D)Lnet/minecraft/world/phys/Vec3; +MD: net/minecraft/world/entity/ai/util/DefaultRandomPos/m_148436_ (Lnet/minecraft/world/entity/PathfinderMob;IZLnet/minecraft/core/BlockPos;)Lnet/minecraft/core/BlockPos; net/minecraft/world/entity/ai/util/DefaultRandomPos/generateRandomPosTowardDirection (Lnet/minecraft/world/entity/PathfinderMob;IZLnet/minecraft/core/BlockPos;)Lnet/minecraft/core/BlockPos; +MD: net/minecraft/world/entity/ai/util/DefaultRandomPos/m_289123_ (Lnet/minecraft/world/entity/PathfinderMob;IILnet/minecraft/world/phys/Vec3;Z)Lnet/minecraft/core/BlockPos; net/minecraft/world/entity/ai/util/DefaultRandomPos/lambda$getPosAway$2 (Lnet/minecraft/world/entity/PathfinderMob;IILnet/minecraft/world/phys/Vec3;Z)Lnet/minecraft/core/BlockPos; +MD: net/minecraft/world/entity/ai/util/DefaultRandomPos/m_289124_ (Lnet/minecraft/world/entity/PathfinderMob;IIZ)Lnet/minecraft/core/BlockPos; net/minecraft/world/entity/ai/util/DefaultRandomPos/lambda$getPos$0 (Lnet/minecraft/world/entity/PathfinderMob;IIZ)Lnet/minecraft/core/BlockPos; +MD: net/minecraft/world/entity/ai/util/DefaultRandomPos/m_289125_ (Lnet/minecraft/world/entity/PathfinderMob;IILnet/minecraft/world/phys/Vec3;DZ)Lnet/minecraft/core/BlockPos; net/minecraft/world/entity/ai/util/DefaultRandomPos/lambda$getPosTowards$1 (Lnet/minecraft/world/entity/PathfinderMob;IILnet/minecraft/world/phys/Vec3;DZ)Lnet/minecraft/core/BlockPos; +MD: net/minecraft/world/entity/ai/util/GoalUtils/ ()V net/minecraft/world/entity/ai/util/GoalUtils/ ()V +MD: net/minecraft/world/entity/ai/util/GoalUtils/m_148442_ (Lnet/minecraft/world/entity/PathfinderMob;I)Z net/minecraft/world/entity/ai/util/GoalUtils/mobRestricted (Lnet/minecraft/world/entity/PathfinderMob;I)Z +MD: net/minecraft/world/entity/ai/util/GoalUtils/m_148445_ (Lnet/minecraft/world/entity/PathfinderMob;Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/entity/ai/util/GoalUtils/isWater (Lnet/minecraft/world/entity/PathfinderMob;Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/entity/ai/util/GoalUtils/m_148448_ (Lnet/minecraft/world/entity/ai/navigation/PathNavigation;Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/entity/ai/util/GoalUtils/isNotStable (Lnet/minecraft/world/entity/ai/navigation/PathNavigation;Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/entity/ai/util/GoalUtils/m_148451_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/PathfinderMob;)Z net/minecraft/world/entity/ai/util/GoalUtils/isOutsideLimits (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/PathfinderMob;)Z +MD: net/minecraft/world/entity/ai/util/GoalUtils/m_148454_ (ZLnet/minecraft/world/entity/PathfinderMob;Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/entity/ai/util/GoalUtils/isRestricted (ZLnet/minecraft/world/entity/PathfinderMob;Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/entity/ai/util/GoalUtils/m_148458_ (Lnet/minecraft/world/entity/PathfinderMob;Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/entity/ai/util/GoalUtils/hasMalus (Lnet/minecraft/world/entity/PathfinderMob;Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/entity/ai/util/GoalUtils/m_148461_ (Lnet/minecraft/world/entity/PathfinderMob;Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/entity/ai/util/GoalUtils/isSolid (Lnet/minecraft/world/entity/PathfinderMob;Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/entity/ai/util/GoalUtils/m_26894_ (Lnet/minecraft/world/entity/Mob;)Z net/minecraft/world/entity/ai/util/GoalUtils/hasGroundPathNavigation (Lnet/minecraft/world/entity/Mob;)Z +MD: net/minecraft/world/entity/ai/util/HoverRandomPos/ ()V net/minecraft/world/entity/ai/util/HoverRandomPos/ ()V +MD: net/minecraft/world/entity/ai/util/HoverRandomPos/m_148465_ (Lnet/minecraft/world/entity/PathfinderMob;IIDDFII)Lnet/minecraft/world/phys/Vec3; net/minecraft/world/entity/ai/util/HoverRandomPos/getPos (Lnet/minecraft/world/entity/PathfinderMob;IIDDFII)Lnet/minecraft/world/phys/Vec3; +MD: net/minecraft/world/entity/ai/util/HoverRandomPos/m_148474_ (Lnet/minecraft/world/entity/PathfinderMob;IIDDFZII)Lnet/minecraft/core/BlockPos; net/minecraft/world/entity/ai/util/HoverRandomPos/lambda$getPos$1 (Lnet/minecraft/world/entity/PathfinderMob;IIDDFZII)Lnet/minecraft/core/BlockPos; +MD: net/minecraft/world/entity/ai/util/HoverRandomPos/m_148484_ (Lnet/minecraft/world/entity/PathfinderMob;Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/entity/ai/util/HoverRandomPos/lambda$getPos$0 (Lnet/minecraft/world/entity/PathfinderMob;Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/entity/ai/util/LandRandomPos/ ()V net/minecraft/world/entity/ai/util/LandRandomPos/ ()V +MD: net/minecraft/world/entity/ai/util/LandRandomPos/m_148488_ (Lnet/minecraft/world/entity/PathfinderMob;II)Lnet/minecraft/world/phys/Vec3; net/minecraft/world/entity/ai/util/LandRandomPos/getPos (Lnet/minecraft/world/entity/PathfinderMob;II)Lnet/minecraft/world/phys/Vec3; +MD: net/minecraft/world/entity/ai/util/LandRandomPos/m_148492_ (Lnet/minecraft/world/entity/PathfinderMob;IILnet/minecraft/world/phys/Vec3;)Lnet/minecraft/world/phys/Vec3; net/minecraft/world/entity/ai/util/LandRandomPos/getPosTowards (Lnet/minecraft/world/entity/PathfinderMob;IILnet/minecraft/world/phys/Vec3;)Lnet/minecraft/world/phys/Vec3; +MD: net/minecraft/world/entity/ai/util/LandRandomPos/m_148497_ (Lnet/minecraft/world/entity/PathfinderMob;IILnet/minecraft/world/phys/Vec3;Z)Lnet/minecraft/world/phys/Vec3; net/minecraft/world/entity/ai/util/LandRandomPos/getPosInDirection (Lnet/minecraft/world/entity/PathfinderMob;IILnet/minecraft/world/phys/Vec3;Z)Lnet/minecraft/world/phys/Vec3; +MD: net/minecraft/world/entity/ai/util/LandRandomPos/m_148503_ (Lnet/minecraft/world/entity/PathfinderMob;IILjava/util/function/ToDoubleFunction;)Lnet/minecraft/world/phys/Vec3; net/minecraft/world/entity/ai/util/LandRandomPos/getPos (Lnet/minecraft/world/entity/PathfinderMob;IILjava/util/function/ToDoubleFunction;)Lnet/minecraft/world/phys/Vec3; +MD: net/minecraft/world/entity/ai/util/LandRandomPos/m_148513_ (Lnet/minecraft/world/entity/PathfinderMob;IZLnet/minecraft/core/BlockPos;)Lnet/minecraft/core/BlockPos; net/minecraft/world/entity/ai/util/LandRandomPos/generateRandomPosTowardDirection (Lnet/minecraft/world/entity/PathfinderMob;IZLnet/minecraft/core/BlockPos;)Lnet/minecraft/core/BlockPos; +MD: net/minecraft/world/entity/ai/util/LandRandomPos/m_148518_ (Lnet/minecraft/world/entity/PathfinderMob;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/core/BlockPos; net/minecraft/world/entity/ai/util/LandRandomPos/movePosUpOutOfSolid (Lnet/minecraft/world/entity/PathfinderMob;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/core/BlockPos; +MD: net/minecraft/world/entity/ai/util/LandRandomPos/m_148521_ (Lnet/minecraft/world/entity/PathfinderMob;IILnet/minecraft/world/phys/Vec3;)Lnet/minecraft/world/phys/Vec3; net/minecraft/world/entity/ai/util/LandRandomPos/getPosAway (Lnet/minecraft/world/entity/PathfinderMob;IILnet/minecraft/world/phys/Vec3;)Lnet/minecraft/world/phys/Vec3; +MD: net/minecraft/world/entity/ai/util/LandRandomPos/m_148532_ (Lnet/minecraft/world/entity/PathfinderMob;Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/entity/ai/util/LandRandomPos/lambda$movePosUpOutOfSolid$2 (Lnet/minecraft/world/entity/PathfinderMob;Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/entity/ai/util/LandRandomPos/m_289126_ (Lnet/minecraft/world/entity/PathfinderMob;IIZ)Lnet/minecraft/core/BlockPos; net/minecraft/world/entity/ai/util/LandRandomPos/lambda$getPos$0 (Lnet/minecraft/world/entity/PathfinderMob;IIZ)Lnet/minecraft/core/BlockPos; +MD: net/minecraft/world/entity/ai/util/LandRandomPos/m_289127_ (Lnet/minecraft/world/entity/PathfinderMob;IILnet/minecraft/world/phys/Vec3;Z)Lnet/minecraft/core/BlockPos; net/minecraft/world/entity/ai/util/LandRandomPos/lambda$getPosInDirection$1 (Lnet/minecraft/world/entity/PathfinderMob;IILnet/minecraft/world/phys/Vec3;Z)Lnet/minecraft/core/BlockPos; +MD: net/minecraft/world/entity/ai/util/RandomPos/ ()V net/minecraft/world/entity/ai/util/RandomPos/ ()V +MD: net/minecraft/world/entity/ai/util/RandomPos/m_148542_ (Lnet/minecraft/world/entity/PathfinderMob;Ljava/util/function/Supplier;)Lnet/minecraft/world/phys/Vec3; net/minecraft/world/entity/ai/util/RandomPos/generateRandomPos (Lnet/minecraft/world/entity/PathfinderMob;Ljava/util/function/Supplier;)Lnet/minecraft/world/phys/Vec3; +MD: net/minecraft/world/entity/ai/util/RandomPos/m_148545_ (Lnet/minecraft/core/BlockPos;ILjava/util/function/Predicate;)Lnet/minecraft/core/BlockPos; net/minecraft/world/entity/ai/util/RandomPos/moveUpOutOfSolid (Lnet/minecraft/core/BlockPos;ILjava/util/function/Predicate;)Lnet/minecraft/core/BlockPos; +MD: net/minecraft/world/entity/ai/util/RandomPos/m_148561_ (Ljava/util/function/Supplier;Ljava/util/function/ToDoubleFunction;)Lnet/minecraft/world/phys/Vec3; net/minecraft/world/entity/ai/util/RandomPos/generateRandomPos (Ljava/util/function/Supplier;Ljava/util/function/ToDoubleFunction;)Lnet/minecraft/world/phys/Vec3; +MD: net/minecraft/world/entity/ai/util/RandomPos/m_217851_ (Lnet/minecraft/util/RandomSource;II)Lnet/minecraft/core/BlockPos; net/minecraft/world/entity/ai/util/RandomPos/generateRandomDirection (Lnet/minecraft/util/RandomSource;II)Lnet/minecraft/core/BlockPos; +MD: net/minecraft/world/entity/ai/util/RandomPos/m_217855_ (Lnet/minecraft/util/RandomSource;IIIDDD)Lnet/minecraft/core/BlockPos; net/minecraft/world/entity/ai/util/RandomPos/generateRandomDirectionWithinRadians (Lnet/minecraft/util/RandomSource;IIIDDD)Lnet/minecraft/core/BlockPos; +MD: net/minecraft/world/entity/ai/util/RandomPos/m_217863_ (Lnet/minecraft/world/entity/PathfinderMob;ILnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/core/BlockPos; net/minecraft/world/entity/ai/util/RandomPos/generateRandomPosTowardDirection (Lnet/minecraft/world/entity/PathfinderMob;ILnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/core/BlockPos; +MD: net/minecraft/world/entity/ai/util/RandomPos/m_26947_ (Lnet/minecraft/core/BlockPos;IILjava/util/function/Predicate;)Lnet/minecraft/core/BlockPos; net/minecraft/world/entity/ai/util/RandomPos/moveUpToAboveSolid (Lnet/minecraft/core/BlockPos;IILjava/util/function/Predicate;)Lnet/minecraft/core/BlockPos; +MD: net/minecraft/world/entity/ai/village/ReputationEventType/ ()V net/minecraft/world/entity/ai/village/ReputationEventType/ ()V +MD: net/minecraft/world/entity/ai/village/ReputationEventType/m_26991_ (Ljava/lang/String;)Lnet/minecraft/world/entity/ai/village/ReputationEventType; net/minecraft/world/entity/ai/village/ReputationEventType/register (Ljava/lang/String;)Lnet/minecraft/world/entity/ai/village/ReputationEventType; +MD: net/minecraft/world/entity/ai/village/ReputationEventType$1/ (Ljava/lang/String;)V net/minecraft/world/entity/ai/village/ReputationEventType$1/ (Ljava/lang/String;)V +MD: net/minecraft/world/entity/ai/village/ReputationEventType$1/toString ()Ljava/lang/String; net/minecraft/world/entity/ai/village/ReputationEventType$1/toString ()Ljava/lang/String; +MD: net/minecraft/world/entity/ai/village/VillageSiege/ ()V net/minecraft/world/entity/ai/village/VillageSiege/ ()V +MD: net/minecraft/world/entity/ai/village/VillageSiege/ ()V net/minecraft/world/entity/ai/village/VillageSiege/ ()V +MD: net/minecraft/world/entity/ai/village/VillageSiege/m_27007_ (Lnet/minecraft/server/level/ServerLevel;)Z net/minecraft/world/entity/ai/village/VillageSiege/tryToSetupSiege (Lnet/minecraft/server/level/ServerLevel;)Z +MD: net/minecraft/world/entity/ai/village/VillageSiege/m_27009_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/phys/Vec3; net/minecraft/world/entity/ai/village/VillageSiege/findRandomSpawnPos (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/phys/Vec3; +MD: net/minecraft/world/entity/ai/village/VillageSiege/m_27016_ (Lnet/minecraft/server/level/ServerLevel;)V net/minecraft/world/entity/ai/village/VillageSiege/trySpawn (Lnet/minecraft/server/level/ServerLevel;)V +MD: net/minecraft/world/entity/ai/village/VillageSiege/m_7995_ (Lnet/minecraft/server/level/ServerLevel;ZZ)I net/minecraft/world/entity/ai/village/VillageSiege/tick (Lnet/minecraft/server/level/ServerLevel;ZZ)I +MD: net/minecraft/world/entity/ai/village/VillageSiege$State/ ()V net/minecraft/world/entity/ai/village/VillageSiege$State/ ()V +MD: net/minecraft/world/entity/ai/village/VillageSiege$State/ (Ljava/lang/String;I)V net/minecraft/world/entity/ai/village/VillageSiege$State/ (Ljava/lang/String;I)V +MD: net/minecraft/world/entity/ai/village/VillageSiege$State/m_148564_ ()[Lnet/minecraft/world/entity/ai/village/VillageSiege$State; net/minecraft/world/entity/ai/village/VillageSiege$State/$values ()[Lnet/minecraft/world/entity/ai/village/VillageSiege$State; +MD: net/minecraft/world/entity/ai/village/VillageSiege$State/valueOf (Ljava/lang/String;)Lnet/minecraft/world/entity/ai/village/VillageSiege$State; net/minecraft/world/entity/ai/village/VillageSiege$State/valueOf (Ljava/lang/String;)Lnet/minecraft/world/entity/ai/village/VillageSiege$State; +MD: net/minecraft/world/entity/ai/village/VillageSiege$State/values ()[Lnet/minecraft/world/entity/ai/village/VillageSiege$State; net/minecraft/world/entity/ai/village/VillageSiege$State/values ()[Lnet/minecraft/world/entity/ai/village/VillageSiege$State; +MD: net/minecraft/world/entity/ai/village/poi/PoiManager/ (Ljava/nio/file/Path;Lcom/mojang/datafixers/DataFixer;ZLnet/minecraft/core/RegistryAccess;Lnet/minecraft/world/level/LevelHeightAccessor;)V net/minecraft/world/entity/ai/village/poi/PoiManager/ (Ljava/nio/file/Path;Lcom/mojang/datafixers/DataFixer;ZLnet/minecraft/core/RegistryAccess;Lnet/minecraft/world/level/LevelHeightAccessor;)V +MD: net/minecraft/world/entity/ai/village/poi/PoiManager/m_148653_ (Lnet/minecraft/core/BlockPos;)I net/minecraft/world/entity/ai/village/poi/PoiManager/getFreeTickets (Lnet/minecraft/core/BlockPos;)I +MD: net/minecraft/world/entity/ai/village/poi/PoiManager/m_148655_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/ai/village/poi/PoiSection;)V net/minecraft/world/entity/ai/village/poi/PoiManager/lambda$remove$0 (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/ai/village/poi/PoiSection;)V +MD: net/minecraft/world/entity/ai/village/poi/PoiManager/m_148658_ (Ljava/util/function/Predicate;Ljava/util/function/Predicate;Lnet/minecraft/core/BlockPos;ILnet/minecraft/world/entity/ai/village/poi/PoiManager$Occupancy;)Ljava/util/Optional; net/minecraft/world/entity/ai/village/poi/PoiManager/findClosest (Ljava/util/function/Predicate;Ljava/util/function/Predicate;Lnet/minecraft/core/BlockPos;ILnet/minecraft/world/entity/ai/village/poi/PoiManager$Occupancy;)Ljava/util/Optional; +MD: net/minecraft/world/entity/ai/village/poi/PoiManager/m_217874_ (Lnet/minecraft/resources/ResourceKey;Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/entity/ai/village/poi/PoiManager/existsAtPosition (Lnet/minecraft/resources/ResourceKey;Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/entity/ai/village/poi/PoiManager/m_217877_ (Lnet/minecraft/resources/ResourceKey;Lnet/minecraft/core/Holder;)Z net/minecraft/world/entity/ai/village/poi/PoiManager/lambda$existsAtPosition$1 (Lnet/minecraft/resources/ResourceKey;Lnet/minecraft/core/Holder;)Z +MD: net/minecraft/world/entity/ai/village/poi/PoiManager/m_217880_ (Lnet/minecraft/world/entity/ai/village/poi/PoiRecord;)Lnet/minecraft/core/BlockPos; net/minecraft/world/entity/ai/village/poi/PoiManager/lambda$take$15 (Lnet/minecraft/world/entity/ai/village/poi/PoiRecord;)Lnet/minecraft/core/BlockPos; +MD: net/minecraft/world/entity/ai/village/poi/PoiManager/m_217882_ (Lnet/minecraft/world/entity/ai/village/poi/PoiSection;)Ljava/lang/Boolean; net/minecraft/world/entity/ai/village/poi/PoiManager/lambda$isVillageCenter$23 (Lnet/minecraft/world/entity/ai/village/poi/PoiSection;)Ljava/lang/Boolean; +MD: net/minecraft/world/entity/ai/village/poi/PoiManager/m_217884_ (Lnet/minecraft/world/level/ChunkPos;Ljava/lang/Integer;)Ljava/util/Optional; net/minecraft/world/entity/ai/village/poi/PoiManager/lambda$getInChunk$5 (Lnet/minecraft/world/level/ChunkPos;Ljava/lang/Integer;)Ljava/util/Optional; +MD: net/minecraft/world/entity/ai/village/poi/PoiManager/m_217887_ (Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/world/level/ChunkPos;)V net/minecraft/world/entity/ai/village/poi/PoiManager/lambda$ensureLoadedAndValid$33 (Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/world/level/ChunkPos;)V +MD: net/minecraft/world/entity/ai/village/poi/PoiManager/m_217890_ (Lcom/mojang/datafixers/util/Pair;)Lnet/minecraft/world/level/ChunkPos; net/minecraft/world/entity/ai/village/poi/PoiManager/lambda$ensureLoadedAndValid$31 (Lcom/mojang/datafixers/util/Pair;)Lnet/minecraft/world/level/ChunkPos; +MD: net/minecraft/world/entity/ai/village/poi/PoiManager/m_217892_ (Lnet/minecraft/world/level/chunk/LevelChunkSection;Lnet/minecraft/core/SectionPos;)V net/minecraft/world/entity/ai/village/poi/PoiManager/lambda$checkConsistencyWithBlocks$26 (Lnet/minecraft/world/level/chunk/LevelChunkSection;Lnet/minecraft/core/SectionPos;)V +MD: net/minecraft/world/entity/ai/village/poi/PoiManager/m_217895_ (Lnet/minecraft/world/level/chunk/LevelChunkSection;Lnet/minecraft/core/SectionPos;Lnet/minecraft/world/entity/ai/village/poi/PoiSection;)V net/minecraft/world/entity/ai/village/poi/PoiManager/lambda$checkConsistencyWithBlocks$25 (Lnet/minecraft/world/level/chunk/LevelChunkSection;Lnet/minecraft/core/SectionPos;Lnet/minecraft/world/entity/ai/village/poi/PoiSection;)V +MD: net/minecraft/world/entity/ai/village/poi/PoiManager/m_217899_ (Lnet/minecraft/world/level/chunk/LevelChunkSection;Ljava/util/function/BiConsumer;Lnet/minecraft/core/BlockPos;)V net/minecraft/world/entity/ai/village/poi/PoiManager/lambda$updateFromSection$28 (Lnet/minecraft/world/level/chunk/LevelChunkSection;Ljava/util/function/BiConsumer;Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/world/entity/ai/village/poi/PoiManager/m_217903_ (Lnet/minecraft/core/BlockPos;ILnet/minecraft/world/entity/ai/village/poi/PoiRecord;)Z net/minecraft/world/entity/ai/village/poi/PoiManager/lambda$getInRange$4 (Lnet/minecraft/core/BlockPos;ILnet/minecraft/world/entity/ai/village/poi/PoiRecord;)Z +MD: net/minecraft/world/entity/ai/village/poi/PoiManager/m_217907_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/ai/village/poi/PoiRecord;)D net/minecraft/world/entity/ai/village/poi/PoiManager/lambda$findClosestWithType$11 (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/ai/village/poi/PoiRecord;)D +MD: net/minecraft/world/entity/ai/village/poi/PoiManager/m_217910_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/ai/village/poi/PoiSection;)Ljava/lang/Integer; net/minecraft/world/entity/ai/village/poi/PoiManager/lambda$getFreeTickets$21 (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/ai/village/poi/PoiSection;)Ljava/lang/Integer; +MD: net/minecraft/world/entity/ai/village/poi/PoiManager/m_217913_ (Lnet/minecraft/core/BlockPos;Lcom/mojang/datafixers/util/Pair;)D net/minecraft/world/entity/ai/village/poi/PoiManager/lambda$findAllClosestFirstWithType$9 (Lnet/minecraft/core/BlockPos;Lcom/mojang/datafixers/util/Pair;)D +MD: net/minecraft/world/entity/ai/village/poi/PoiManager/m_217916_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;)D net/minecraft/world/entity/ai/village/poi/PoiManager/lambda$findClosest$13 (Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;)D +MD: net/minecraft/world/entity/ai/village/poi/PoiManager/m_217919_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Holder;)V net/minecraft/world/entity/ai/village/poi/PoiManager/add (Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Holder;)V +MD: net/minecraft/world/entity/ai/village/poi/PoiManager/m_217922_ (Lnet/minecraft/core/BlockPos;Ljava/util/function/Predicate;Lnet/minecraft/world/entity/ai/village/poi/PoiSection;)Ljava/lang/Boolean; net/minecraft/world/entity/ai/village/poi/PoiManager/lambda$exists$19 (Lnet/minecraft/core/BlockPos;Ljava/util/function/Predicate;Lnet/minecraft/world/entity/ai/village/poi/PoiSection;)Ljava/lang/Boolean; +MD: net/minecraft/world/entity/ai/village/poi/PoiManager/m_217926_ (Lnet/minecraft/core/Holder;)Z net/minecraft/world/entity/ai/village/poi/PoiManager/lambda$isVillageCenter$22 (Lnet/minecraft/core/Holder;)Z +MD: net/minecraft/world/entity/ai/village/poi/PoiManager/m_217928_ (Ljava/util/function/BiConsumer;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Holder;)V net/minecraft/world/entity/ai/village/poi/PoiManager/lambda$updateFromSection$27 (Ljava/util/function/BiConsumer;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Holder;)V +MD: net/minecraft/world/entity/ai/village/poi/PoiManager/m_217932_ (Ljava/util/function/BiPredicate;Lnet/minecraft/world/entity/ai/village/poi/PoiRecord;)Z net/minecraft/world/entity/ai/village/poi/PoiManager/lambda$take$14 (Ljava/util/function/BiPredicate;Lnet/minecraft/world/entity/ai/village/poi/PoiRecord;)Z +MD: net/minecraft/world/entity/ai/village/poi/PoiManager/m_217935_ (Ljava/util/function/Predicate;Lnet/minecraft/world/entity/ai/village/poi/PoiManager$Occupancy;Lnet/minecraft/world/level/ChunkPos;)Ljava/util/stream/Stream; net/minecraft/world/entity/ai/village/poi/PoiManager/lambda$getInSquare$2 (Ljava/util/function/Predicate;Lnet/minecraft/world/entity/ai/village/poi/PoiManager$Occupancy;Lnet/minecraft/world/level/ChunkPos;)Ljava/util/stream/Stream; +MD: net/minecraft/world/entity/ai/village/poi/PoiManager/m_217939_ (Ljava/util/function/Predicate;Lnet/minecraft/world/entity/ai/village/poi/PoiManager$Occupancy;Ljava/util/Optional;)Ljava/util/stream/Stream; net/minecraft/world/entity/ai/village/poi/PoiManager/lambda$getInChunk$6 (Ljava/util/function/Predicate;Lnet/minecraft/world/entity/ai/village/poi/PoiManager$Occupancy;Ljava/util/Optional;)Ljava/util/stream/Stream; +MD: net/minecraft/world/entity/ai/village/poi/PoiManager/m_217943_ (Ljava/util/function/Predicate;Lnet/minecraft/world/entity/ai/village/poi/PoiRecord;)Z net/minecraft/world/entity/ai/village/poi/PoiManager/lambda$getRandom$16 (Ljava/util/function/Predicate;Lnet/minecraft/world/entity/ai/village/poi/PoiRecord;)Z +MD: net/minecraft/world/entity/ai/village/poi/PoiManager/m_217946_ (Ljava/util/function/Predicate;Ljava/util/function/BiPredicate;Lnet/minecraft/core/BlockPos;I)Ljava/util/Optional; net/minecraft/world/entity/ai/village/poi/PoiManager/take (Ljava/util/function/Predicate;Ljava/util/function/BiPredicate;Lnet/minecraft/core/BlockPos;I)Ljava/util/Optional; +MD: net/minecraft/world/entity/ai/village/poi/PoiManager/m_217951_ (Ljava/util/function/Predicate;Ljava/util/function/Predicate;Lnet/minecraft/world/entity/ai/village/poi/PoiManager$Occupancy;Lnet/minecraft/core/BlockPos;ILnet/minecraft/util/RandomSource;)Ljava/util/Optional; net/minecraft/world/entity/ai/village/poi/PoiManager/getRandom (Ljava/util/function/Predicate;Ljava/util/function/Predicate;Lnet/minecraft/world/entity/ai/village/poi/PoiManager$Occupancy;Lnet/minecraft/core/BlockPos;ILnet/minecraft/util/RandomSource;)Ljava/util/Optional; +MD: net/minecraft/world/entity/ai/village/poi/PoiManager/m_217958_ (Lnet/minecraft/world/entity/ai/village/poi/PoiRecord;)Lcom/mojang/datafixers/util/Pair; net/minecraft/world/entity/ai/village/poi/PoiManager/lambda$findClosestWithType$12 (Lnet/minecraft/world/entity/ai/village/poi/PoiRecord;)Lcom/mojang/datafixers/util/Pair; +MD: net/minecraft/world/entity/ai/village/poi/PoiManager/m_217960_ (Lnet/minecraft/world/level/ChunkPos;)Z net/minecraft/world/entity/ai/village/poi/PoiManager/lambda$ensureLoadedAndValid$32 (Lnet/minecraft/world/level/ChunkPos;)Z +MD: net/minecraft/world/entity/ai/village/poi/PoiManager/m_217962_ (Lcom/mojang/datafixers/util/Pair;)Z net/minecraft/world/entity/ai/village/poi/PoiManager/lambda$ensureLoadedAndValid$30 (Lcom/mojang/datafixers/util/Pair;)Z +MD: net/minecraft/world/entity/ai/village/poi/PoiManager/m_217964_ (Lnet/minecraft/world/level/chunk/LevelChunkSection;Lnet/minecraft/core/SectionPos;Ljava/util/function/BiConsumer;)V net/minecraft/world/entity/ai/village/poi/PoiManager/lambda$checkConsistencyWithBlocks$24 (Lnet/minecraft/world/level/chunk/LevelChunkSection;Lnet/minecraft/core/SectionPos;Ljava/util/function/BiConsumer;)V +MD: net/minecraft/world/entity/ai/village/poi/PoiManager/m_217968_ (Lnet/minecraft/core/BlockPos;ILnet/minecraft/world/entity/ai/village/poi/PoiRecord;)Z net/minecraft/world/entity/ai/village/poi/PoiManager/lambda$getInSquare$3 (Lnet/minecraft/core/BlockPos;ILnet/minecraft/world/entity/ai/village/poi/PoiRecord;)Z +MD: net/minecraft/world/entity/ai/village/poi/PoiManager/m_217972_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/ai/village/poi/PoiSection;)Ljava/util/Optional; net/minecraft/world/entity/ai/village/poi/PoiManager/lambda$getType$20 (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/ai/village/poi/PoiSection;)Ljava/util/Optional; +MD: net/minecraft/world/entity/ai/village/poi/PoiManager/m_217975_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;)D net/minecraft/world/entity/ai/village/poi/PoiManager/lambda$findClosest$10 (Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;)D +MD: net/minecraft/world/entity/ai/village/poi/PoiManager/m_217978_ (Lnet/minecraft/core/SectionPos;)Lcom/mojang/datafixers/util/Pair; net/minecraft/world/entity/ai/village/poi/PoiManager/lambda$ensureLoadedAndValid$29 (Lnet/minecraft/core/SectionPos;)Lcom/mojang/datafixers/util/Pair; +MD: net/minecraft/world/entity/ai/village/poi/PoiManager/m_217980_ (Ljava/util/function/Predicate;Lnet/minecraft/world/entity/ai/village/poi/PoiRecord;)Z net/minecraft/world/entity/ai/village/poi/PoiManager/lambda$findAllWithType$7 (Ljava/util/function/Predicate;Lnet/minecraft/world/entity/ai/village/poi/PoiRecord;)Z +MD: net/minecraft/world/entity/ai/village/poi/PoiManager/m_217983_ (Ljava/util/function/Predicate;Ljava/util/function/Predicate;Lnet/minecraft/core/BlockPos;ILnet/minecraft/world/entity/ai/village/poi/PoiManager$Occupancy;)Ljava/util/stream/Stream; net/minecraft/world/entity/ai/village/poi/PoiManager/findAllWithType (Ljava/util/function/Predicate;Ljava/util/function/Predicate;Lnet/minecraft/core/BlockPos;ILnet/minecraft/world/entity/ai/village/poi/PoiManager$Occupancy;)Ljava/util/stream/Stream; +MD: net/minecraft/world/entity/ai/village/poi/PoiManager/m_217989_ (Lnet/minecraft/world/entity/ai/village/poi/PoiRecord;)Lcom/mojang/datafixers/util/Pair; net/minecraft/world/entity/ai/village/poi/PoiManager/lambda$findAllWithType$8 (Lnet/minecraft/world/entity/ai/village/poi/PoiRecord;)Lcom/mojang/datafixers/util/Pair; +MD: net/minecraft/world/entity/ai/village/poi/PoiManager/m_217991_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/ai/village/poi/PoiSection;)Ljava/lang/Boolean; net/minecraft/world/entity/ai/village/poi/PoiManager/lambda$release$17 (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/ai/village/poi/PoiSection;)Ljava/lang/Boolean; +MD: net/minecraft/world/entity/ai/village/poi/PoiManager/m_217994_ (Ljava/util/function/Predicate;Ljava/util/function/Predicate;Lnet/minecraft/core/BlockPos;ILnet/minecraft/world/entity/ai/village/poi/PoiManager$Occupancy;)Ljava/util/stream/Stream; net/minecraft/world/entity/ai/village/poi/PoiManager/findAllClosestFirstWithType (Ljava/util/function/Predicate;Ljava/util/function/Predicate;Lnet/minecraft/core/BlockPos;ILnet/minecraft/world/entity/ai/village/poi/PoiManager$Occupancy;)Ljava/util/stream/Stream; +MD: net/minecraft/world/entity/ai/village/poi/PoiManager/m_218000_ (Lnet/minecraft/core/BlockPos;)Ljava/lang/IllegalStateException; net/minecraft/world/entity/ai/village/poi/PoiManager/lambda$release$18 (Lnet/minecraft/core/BlockPos;)Ljava/lang/IllegalStateException; +MD: net/minecraft/world/entity/ai/village/poi/PoiManager/m_218002_ (Ljava/util/function/Predicate;Lnet/minecraft/core/BlockPos;ILnet/minecraft/world/entity/ai/village/poi/PoiManager$Occupancy;)Ljava/util/Optional; net/minecraft/world/entity/ai/village/poi/PoiManager/findClosestWithType (Ljava/util/function/Predicate;Lnet/minecraft/core/BlockPos;ILnet/minecraft/world/entity/ai/village/poi/PoiManager$Occupancy;)Ljava/util/Optional; +MD: net/minecraft/world/entity/ai/village/poi/PoiManager/m_27056_ (Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;I)V net/minecraft/world/entity/ai/village/poi/PoiManager/ensureLoadedAndValid (Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;I)V +MD: net/minecraft/world/entity/ai/village/poi/PoiManager/m_27060_ (Lnet/minecraft/world/level/chunk/LevelChunkSection;)Z net/minecraft/world/entity/ai/village/poi/PoiManager/mayHavePoi (Lnet/minecraft/world/level/chunk/LevelChunkSection;)Z +MD: net/minecraft/world/entity/ai/village/poi/PoiManager/m_27069_ (Lnet/minecraft/world/level/chunk/LevelChunkSection;Lnet/minecraft/core/SectionPos;Ljava/util/function/BiConsumer;)V net/minecraft/world/entity/ai/village/poi/PoiManager/updateFromSection (Lnet/minecraft/world/level/chunk/LevelChunkSection;Lnet/minecraft/core/SectionPos;Ljava/util/function/BiConsumer;)V +MD: net/minecraft/world/entity/ai/village/poi/PoiManager/m_27079_ (Lnet/minecraft/core/BlockPos;)V net/minecraft/world/entity/ai/village/poi/PoiManager/remove (Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/world/entity/ai/village/poi/PoiManager/m_27091_ (Lnet/minecraft/core/BlockPos;Ljava/util/function/Predicate;)Z net/minecraft/world/entity/ai/village/poi/PoiManager/exists (Lnet/minecraft/core/BlockPos;Ljava/util/function/Predicate;)Z +MD: net/minecraft/world/entity/ai/village/poi/PoiManager/m_27098_ (Lnet/minecraft/core/SectionPos;)I net/minecraft/world/entity/ai/village/poi/PoiManager/sectionsToVillage (Lnet/minecraft/core/SectionPos;)I +MD: net/minecraft/world/entity/ai/village/poi/PoiManager/m_27117_ (Ljava/util/function/Predicate;Lnet/minecraft/world/level/ChunkPos;Lnet/minecraft/world/entity/ai/village/poi/PoiManager$Occupancy;)Ljava/util/stream/Stream; net/minecraft/world/entity/ai/village/poi/PoiManager/getInChunk (Ljava/util/function/Predicate;Lnet/minecraft/world/level/ChunkPos;Lnet/minecraft/world/entity/ai/village/poi/PoiManager$Occupancy;)Ljava/util/stream/Stream; +MD: net/minecraft/world/entity/ai/village/poi/PoiManager/m_27121_ (Ljava/util/function/Predicate;Lnet/minecraft/core/BlockPos;ILnet/minecraft/world/entity/ai/village/poi/PoiManager$Occupancy;)J net/minecraft/world/entity/ai/village/poi/PoiManager/getCountInRange (Ljava/util/function/Predicate;Lnet/minecraft/core/BlockPos;ILnet/minecraft/world/entity/ai/village/poi/PoiManager$Occupancy;)J +MD: net/minecraft/world/entity/ai/village/poi/PoiManager/m_27138_ (Ljava/util/function/Predicate;Ljava/util/function/Predicate;Lnet/minecraft/core/BlockPos;ILnet/minecraft/world/entity/ai/village/poi/PoiManager$Occupancy;)Ljava/util/stream/Stream; net/minecraft/world/entity/ai/village/poi/PoiManager/findAll (Ljava/util/function/Predicate;Ljava/util/function/Predicate;Lnet/minecraft/core/BlockPos;ILnet/minecraft/world/entity/ai/village/poi/PoiManager$Occupancy;)Ljava/util/stream/Stream; +MD: net/minecraft/world/entity/ai/village/poi/PoiManager/m_27154_ (Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/entity/ai/village/poi/PoiManager/release (Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/entity/ai/village/poi/PoiManager/m_27166_ (Ljava/util/function/Predicate;Lnet/minecraft/core/BlockPos;ILnet/minecraft/world/entity/ai/village/poi/PoiManager$Occupancy;)Ljava/util/stream/Stream; net/minecraft/world/entity/ai/village/poi/PoiManager/getInSquare (Ljava/util/function/Predicate;Lnet/minecraft/core/BlockPos;ILnet/minecraft/world/entity/ai/village/poi/PoiManager$Occupancy;)Ljava/util/stream/Stream; +MD: net/minecraft/world/entity/ai/village/poi/PoiManager/m_27177_ (Lnet/minecraft/core/BlockPos;)Ljava/util/Optional; net/minecraft/world/entity/ai/village/poi/PoiManager/getType (Lnet/minecraft/core/BlockPos;)Ljava/util/Optional; +MD: net/minecraft/world/entity/ai/village/poi/PoiManager/m_27181_ (Ljava/util/function/Predicate;Lnet/minecraft/core/BlockPos;ILnet/minecraft/world/entity/ai/village/poi/PoiManager$Occupancy;)Ljava/util/stream/Stream; net/minecraft/world/entity/ai/village/poi/PoiManager/getInRange (Ljava/util/function/Predicate;Lnet/minecraft/core/BlockPos;ILnet/minecraft/world/entity/ai/village/poi/PoiManager$Occupancy;)Ljava/util/stream/Stream; +MD: net/minecraft/world/entity/ai/village/poi/PoiManager/m_27186_ (Ljava/util/function/Predicate;Ljava/util/function/Predicate;Lnet/minecraft/core/BlockPos;ILnet/minecraft/world/entity/ai/village/poi/PoiManager$Occupancy;)Ljava/util/Optional; net/minecraft/world/entity/ai/village/poi/PoiManager/find (Ljava/util/function/Predicate;Ljava/util/function/Predicate;Lnet/minecraft/core/BlockPos;ILnet/minecraft/world/entity/ai/village/poi/PoiManager$Occupancy;)Ljava/util/Optional; +MD: net/minecraft/world/entity/ai/village/poi/PoiManager/m_27192_ (Ljava/util/function/Predicate;Lnet/minecraft/core/BlockPos;ILnet/minecraft/world/entity/ai/village/poi/PoiManager$Occupancy;)Ljava/util/Optional; net/minecraft/world/entity/ai/village/poi/PoiManager/findClosest (Ljava/util/function/Predicate;Lnet/minecraft/core/BlockPos;ILnet/minecraft/world/entity/ai/village/poi/PoiManager$Occupancy;)Ljava/util/Optional; +MD: net/minecraft/world/entity/ai/village/poi/PoiManager/m_27197_ (J)Z net/minecraft/world/entity/ai/village/poi/PoiManager/isVillageCenter (J)Z +MD: net/minecraft/world/entity/ai/village/poi/PoiManager/m_280570_ (Lnet/minecraft/core/SectionPos;Lnet/minecraft/world/level/chunk/LevelChunkSection;)V net/minecraft/world/entity/ai/village/poi/PoiManager/checkConsistencyWithBlocks (Lnet/minecraft/core/SectionPos;Lnet/minecraft/world/level/chunk/LevelChunkSection;)V +MD: net/minecraft/world/entity/ai/village/poi/PoiManager/m_5838_ (J)V net/minecraft/world/entity/ai/village/poi/PoiManager/setDirty (J)V +MD: net/minecraft/world/entity/ai/village/poi/PoiManager/m_5839_ (J)V net/minecraft/world/entity/ai/village/poi/PoiManager/onSectionLoad (J)V +MD: net/minecraft/world/entity/ai/village/poi/PoiManager/m_6202_ (Ljava/util/function/BooleanSupplier;)V net/minecraft/world/entity/ai/village/poi/PoiManager/tick (Ljava/util/function/BooleanSupplier;)V +MD: net/minecraft/world/entity/ai/village/poi/PoiManager$DistanceTracker/ (Lnet/minecraft/world/entity/ai/village/poi/PoiManager;)V net/minecraft/world/entity/ai/village/poi/PoiManager$DistanceTracker/ (Lnet/minecraft/world/entity/ai/village/poi/PoiManager;)V +MD: net/minecraft/world/entity/ai/village/poi/PoiManager$DistanceTracker/m_27203_ ()V net/minecraft/world/entity/ai/village/poi/PoiManager$DistanceTracker/runAllUpdates ()V +MD: net/minecraft/world/entity/ai/village/poi/PoiManager$DistanceTracker/m_6172_ (J)I net/minecraft/world/entity/ai/village/poi/PoiManager$DistanceTracker/getLevel (J)I +MD: net/minecraft/world/entity/ai/village/poi/PoiManager$DistanceTracker/m_7351_ (JI)V net/minecraft/world/entity/ai/village/poi/PoiManager$DistanceTracker/setLevel (JI)V +MD: net/minecraft/world/entity/ai/village/poi/PoiManager$DistanceTracker/m_7409_ (J)I net/minecraft/world/entity/ai/village/poi/PoiManager$DistanceTracker/getLevelFromSource (J)I +MD: net/minecraft/world/entity/ai/village/poi/PoiManager$Occupancy/ ()V net/minecraft/world/entity/ai/village/poi/PoiManager$Occupancy/ ()V +MD: net/minecraft/world/entity/ai/village/poi/PoiManager$Occupancy/ (Ljava/lang/String;ILjava/util/function/Predicate;)V net/minecraft/world/entity/ai/village/poi/PoiManager$Occupancy/ (Ljava/lang/String;ILjava/util/function/Predicate;)V +MD: net/minecraft/world/entity/ai/village/poi/PoiManager$Occupancy/m_148666_ ()[Lnet/minecraft/world/entity/ai/village/poi/PoiManager$Occupancy; net/minecraft/world/entity/ai/village/poi/PoiManager$Occupancy/$values ()[Lnet/minecraft/world/entity/ai/village/poi/PoiManager$Occupancy; +MD: net/minecraft/world/entity/ai/village/poi/PoiManager$Occupancy/m_27221_ ()Ljava/util/function/Predicate; net/minecraft/world/entity/ai/village/poi/PoiManager$Occupancy/getTest ()Ljava/util/function/Predicate; +MD: net/minecraft/world/entity/ai/village/poi/PoiManager$Occupancy/m_27222_ (Lnet/minecraft/world/entity/ai/village/poi/PoiRecord;)Z net/minecraft/world/entity/ai/village/poi/PoiManager$Occupancy/lambda$static$0 (Lnet/minecraft/world/entity/ai/village/poi/PoiRecord;)Z +MD: net/minecraft/world/entity/ai/village/poi/PoiManager$Occupancy/valueOf (Ljava/lang/String;)Lnet/minecraft/world/entity/ai/village/poi/PoiManager$Occupancy; net/minecraft/world/entity/ai/village/poi/PoiManager$Occupancy/valueOf (Ljava/lang/String;)Lnet/minecraft/world/entity/ai/village/poi/PoiManager$Occupancy; +MD: net/minecraft/world/entity/ai/village/poi/PoiManager$Occupancy/values ()[Lnet/minecraft/world/entity/ai/village/poi/PoiManager$Occupancy; net/minecraft/world/entity/ai/village/poi/PoiManager$Occupancy/values ()[Lnet/minecraft/world/entity/ai/village/poi/PoiManager$Occupancy; +MD: net/minecraft/world/entity/ai/village/poi/PoiRecord/ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Holder;ILjava/lang/Runnable;)V net/minecraft/world/entity/ai/village/poi/PoiRecord/ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Holder;ILjava/lang/Runnable;)V +MD: net/minecraft/world/entity/ai/village/poi/PoiRecord/ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Holder;Ljava/lang/Runnable;)V net/minecraft/world/entity/ai/village/poi/PoiRecord/ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Holder;Ljava/lang/Runnable;)V +MD: net/minecraft/world/entity/ai/village/poi/PoiRecord/equals (Ljava/lang/Object;)Z net/minecraft/world/entity/ai/village/poi/PoiRecord/equals (Ljava/lang/Object;)Z +MD: net/minecraft/world/entity/ai/village/poi/PoiRecord/hashCode ()I net/minecraft/world/entity/ai/village/poi/PoiRecord/hashCode ()I +MD: net/minecraft/world/entity/ai/village/poi/PoiRecord/m_148667_ ()I net/minecraft/world/entity/ai/village/poi/PoiRecord/getFreeTickets ()I +MD: net/minecraft/world/entity/ai/village/poi/PoiRecord/m_148668_ (Lnet/minecraft/world/entity/ai/village/poi/PoiRecord;)Ljava/lang/Integer; net/minecraft/world/entity/ai/village/poi/PoiRecord/lambda$codec$2 (Lnet/minecraft/world/entity/ai/village/poi/PoiRecord;)Ljava/lang/Integer; +MD: net/minecraft/world/entity/ai/village/poi/PoiRecord/m_148672_ (Lnet/minecraft/world/entity/ai/village/poi/PoiRecord;)Lnet/minecraft/core/BlockPos; net/minecraft/world/entity/ai/village/poi/PoiRecord/lambda$codec$0 (Lnet/minecraft/world/entity/ai/village/poi/PoiRecord;)Lnet/minecraft/core/BlockPos; +MD: net/minecraft/world/entity/ai/village/poi/PoiRecord/m_218016_ (Lnet/minecraft/world/entity/ai/village/poi/PoiRecord;)Lnet/minecraft/core/Holder; net/minecraft/world/entity/ai/village/poi/PoiRecord/lambda$codec$1 (Lnet/minecraft/world/entity/ai/village/poi/PoiRecord;)Lnet/minecraft/core/Holder; +MD: net/minecraft/world/entity/ai/village/poi/PoiRecord/m_218018_ ()Lnet/minecraft/core/Holder; net/minecraft/world/entity/ai/village/poi/PoiRecord/getPoiType ()Lnet/minecraft/core/Holder; +MD: net/minecraft/world/entity/ai/village/poi/PoiRecord/m_257311_ (Ljava/lang/Runnable;Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/world/entity/ai/village/poi/PoiRecord/lambda$codec$3 (Ljava/lang/Runnable;Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/world/entity/ai/village/poi/PoiRecord/m_27242_ (Ljava/lang/Runnable;)Lcom/mojang/serialization/Codec; net/minecraft/world/entity/ai/village/poi/PoiRecord/codec (Ljava/lang/Runnable;)Lcom/mojang/serialization/Codec; +MD: net/minecraft/world/entity/ai/village/poi/PoiRecord/m_27247_ ()Z net/minecraft/world/entity/ai/village/poi/PoiRecord/acquireTicket ()Z +MD: net/minecraft/world/entity/ai/village/poi/PoiRecord/m_27250_ ()Z net/minecraft/world/entity/ai/village/poi/PoiRecord/releaseTicket ()Z +MD: net/minecraft/world/entity/ai/village/poi/PoiRecord/m_27253_ ()Z net/minecraft/world/entity/ai/village/poi/PoiRecord/hasSpace ()Z +MD: net/minecraft/world/entity/ai/village/poi/PoiRecord/m_27254_ ()Z net/minecraft/world/entity/ai/village/poi/PoiRecord/isOccupied ()Z +MD: net/minecraft/world/entity/ai/village/poi/PoiRecord/m_27257_ ()Lnet/minecraft/core/BlockPos; net/minecraft/world/entity/ai/village/poi/PoiRecord/getPos ()Lnet/minecraft/core/BlockPos; +MD: net/minecraft/world/entity/ai/village/poi/PoiSection/ ()V net/minecraft/world/entity/ai/village/poi/PoiSection/ ()V +MD: net/minecraft/world/entity/ai/village/poi/PoiSection/ (Ljava/lang/Runnable;ZLjava/util/List;)V net/minecraft/world/entity/ai/village/poi/PoiSection/ (Ljava/lang/Runnable;ZLjava/util/List;)V +MD: net/minecraft/world/entity/ai/village/poi/PoiSection/ (Ljava/lang/Runnable;)V net/minecraft/world/entity/ai/village/poi/PoiSection/ (Ljava/lang/Runnable;)V +MD: net/minecraft/world/entity/ai/village/poi/PoiSection/m_148674_ (Lnet/minecraft/world/entity/ai/village/poi/PoiSection;)Ljava/util/List; net/minecraft/world/entity/ai/village/poi/PoiSection/lambda$codec$1 (Lnet/minecraft/world/entity/ai/village/poi/PoiSection;)Ljava/util/List; +MD: net/minecraft/world/entity/ai/village/poi/PoiSection/m_148680_ (Lnet/minecraft/world/entity/ai/village/poi/PoiSection;)Ljava/lang/Boolean; net/minecraft/world/entity/ai/village/poi/PoiSection/lambda$codec$0 (Lnet/minecraft/world/entity/ai/village/poi/PoiSection;)Ljava/lang/Boolean; +MD: net/minecraft/world/entity/ai/village/poi/PoiSection/m_148682_ (Lnet/minecraft/core/BlockPos;)I net/minecraft/world/entity/ai/village/poi/PoiSection/getFreeTickets (Lnet/minecraft/core/BlockPos;)I +MD: net/minecraft/world/entity/ai/village/poi/PoiSection/m_148684_ (Lnet/minecraft/core/BlockPos;)Ljava/util/Optional; net/minecraft/world/entity/ai/village/poi/PoiSection/getPoiRecord (Lnet/minecraft/core/BlockPos;)Ljava/util/Optional; +MD: net/minecraft/world/entity/ai/village/poi/PoiSection/m_218019_ (Lnet/minecraft/resources/ResourceKey;)Ljava/lang/String; net/minecraft/world/entity/ai/village/poi/PoiSection/lambda$add$6 (Lnet/minecraft/resources/ResourceKey;)Ljava/lang/String; +MD: net/minecraft/world/entity/ai/village/poi/PoiSection/m_218021_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Holder;)V net/minecraft/world/entity/ai/village/poi/PoiSection/add (Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Holder;)V +MD: net/minecraft/world/entity/ai/village/poi/PoiSection/m_218024_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Holder;S)Lnet/minecraft/world/entity/ai/village/poi/PoiRecord; net/minecraft/world/entity/ai/village/poi/PoiSection/lambda$refresh$8 (Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Holder;S)Lnet/minecraft/world/entity/ai/village/poi/PoiRecord; +MD: net/minecraft/world/entity/ai/village/poi/PoiSection/m_218028_ (Lnet/minecraft/core/Holder;)Ljava/util/Set; net/minecraft/world/entity/ai/village/poi/PoiSection/lambda$add$7 (Lnet/minecraft/core/Holder;)Ljava/util/Set; +MD: net/minecraft/world/entity/ai/village/poi/PoiSection/m_218030_ (Lit/unimi/dsi/fastutil/shorts/Short2ObjectMap;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Holder;)V net/minecraft/world/entity/ai/village/poi/PoiSection/lambda$refresh$9 (Lit/unimi/dsi/fastutil/shorts/Short2ObjectMap;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Holder;)V +MD: net/minecraft/world/entity/ai/village/poi/PoiSection/m_27272_ ()Z net/minecraft/world/entity/ai/village/poi/PoiSection/isValid ()Z +MD: net/minecraft/world/entity/ai/village/poi/PoiSection/m_27273_ (Lnet/minecraft/world/entity/ai/village/poi/PoiRecord;)Z net/minecraft/world/entity/ai/village/poi/PoiSection/add (Lnet/minecraft/world/entity/ai/village/poi/PoiRecord;)Z +MD: net/minecraft/world/entity/ai/village/poi/PoiSection/m_27279_ (Lnet/minecraft/core/BlockPos;)V net/minecraft/world/entity/ai/village/poi/PoiSection/remove (Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/world/entity/ai/village/poi/PoiSection/m_27288_ (Lnet/minecraft/core/BlockPos;Ljava/util/function/Predicate;)Z net/minecraft/world/entity/ai/village/poi/PoiSection/exists (Lnet/minecraft/core/BlockPos;Ljava/util/function/Predicate;)Z +MD: net/minecraft/world/entity/ai/village/poi/PoiSection/m_27295_ (Ljava/lang/Runnable;)Lcom/mojang/serialization/Codec; net/minecraft/world/entity/ai/village/poi/PoiSection/codec (Ljava/lang/Runnable;)Lcom/mojang/serialization/Codec; +MD: net/minecraft/world/entity/ai/village/poi/PoiSection/m_27297_ (Ljava/lang/Runnable;Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/world/entity/ai/village/poi/PoiSection/lambda$codec$2 (Ljava/lang/Runnable;Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/world/entity/ai/village/poi/PoiSection/m_27300_ (Ljava/util/Map$Entry;)Ljava/util/stream/Stream; net/minecraft/world/entity/ai/village/poi/PoiSection/lambda$getRecords$5 (Ljava/util/Map$Entry;)Ljava/util/stream/Stream; +MD: net/minecraft/world/entity/ai/village/poi/PoiSection/m_27302_ (Ljava/util/function/Consumer;)V net/minecraft/world/entity/ai/village/poi/PoiSection/refresh (Ljava/util/function/Consumer;)V +MD: net/minecraft/world/entity/ai/village/poi/PoiSection/m_27304_ (Ljava/util/function/Predicate;Lnet/minecraft/world/entity/ai/village/poi/PoiManager$Occupancy;)Ljava/util/stream/Stream; net/minecraft/world/entity/ai/village/poi/PoiSection/getRecords (Ljava/util/function/Predicate;Lnet/minecraft/world/entity/ai/village/poi/PoiManager$Occupancy;)Ljava/util/stream/Stream; +MD: net/minecraft/world/entity/ai/village/poi/PoiSection/m_27307_ (Ljava/util/function/Predicate;Ljava/util/Map$Entry;)Z net/minecraft/world/entity/ai/village/poi/PoiSection/lambda$getRecords$4 (Ljava/util/function/Predicate;Ljava/util/Map$Entry;)Z +MD: net/minecraft/world/entity/ai/village/poi/PoiSection/m_27310_ ()V net/minecraft/world/entity/ai/village/poi/PoiSection/clear ()V +MD: net/minecraft/world/entity/ai/village/poi/PoiSection/m_27315_ (Ljava/lang/Runnable;)Lnet/minecraft/world/entity/ai/village/poi/PoiSection; net/minecraft/world/entity/ai/village/poi/PoiSection/lambda$codec$3 (Ljava/lang/Runnable;)Lnet/minecraft/world/entity/ai/village/poi/PoiSection; +MD: net/minecraft/world/entity/ai/village/poi/PoiSection/m_27317_ (Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/entity/ai/village/poi/PoiSection/release (Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/entity/ai/village/poi/PoiSection/m_27319_ (Lnet/minecraft/core/BlockPos;)Ljava/util/Optional; net/minecraft/world/entity/ai/village/poi/PoiSection/getType (Lnet/minecraft/core/BlockPos;)Ljava/util/Optional; +MD: net/minecraft/world/entity/ai/village/poi/PoiType/ ()V net/minecraft/world/entity/ai/village/poi/PoiType/ ()V +MD: net/minecraft/world/entity/ai/village/poi/PoiType/ (Ljava/util/Set;II)V net/minecraft/world/entity/ai/village/poi/PoiType/ (Ljava/util/Set;II)V +MD: net/minecraft/world/entity/ai/village/poi/PoiType/equals (Ljava/lang/Object;)Z net/minecraft/world/entity/ai/village/poi/PoiType/equals (Ljava/lang/Object;)Z +MD: net/minecraft/world/entity/ai/village/poi/PoiType/f_27325_ ()Ljava/util/Set; net/minecraft/world/entity/ai/village/poi/PoiType/matchingStates ()Ljava/util/Set; +MD: net/minecraft/world/entity/ai/village/poi/PoiType/f_27326_ ()I net/minecraft/world/entity/ai/village/poi/PoiType/maxTickets ()I +MD: net/minecraft/world/entity/ai/village/poi/PoiType/f_27328_ ()I net/minecraft/world/entity/ai/village/poi/PoiType/validRange ()I +MD: net/minecraft/world/entity/ai/village/poi/PoiType/hashCode ()I net/minecraft/world/entity/ai/village/poi/PoiType/hashCode ()I +MD: net/minecraft/world/entity/ai/village/poi/PoiType/m_148692_ (Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/world/entity/ai/village/poi/PoiType/is (Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/world/entity/ai/village/poi/PoiType/m_218040_ (Lnet/minecraft/core/Holder;)Z net/minecraft/world/entity/ai/village/poi/PoiType/lambda$static$0 (Lnet/minecraft/core/Holder;)Z +MD: net/minecraft/world/entity/ai/village/poi/PoiType/toString ()Ljava/lang/String; net/minecraft/world/entity/ai/village/poi/PoiType/toString ()Ljava/lang/String; +MD: net/minecraft/world/entity/ai/village/poi/PoiTypes/ ()V net/minecraft/world/entity/ai/village/poi/PoiTypes/ ()V +MD: net/minecraft/world/entity/ai/village/poi/PoiTypes/ ()V net/minecraft/world/entity/ai/village/poi/PoiTypes/ ()V +MD: net/minecraft/world/entity/ai/village/poi/PoiTypes/m_218073_ (Lnet/minecraft/world/level/block/Block;)Ljava/util/Set; net/minecraft/world/entity/ai/village/poi/PoiTypes/getBlockStates (Lnet/minecraft/world/level/block/Block;)Ljava/util/Set; +MD: net/minecraft/world/entity/ai/village/poi/PoiTypes/m_218075_ (Lnet/minecraft/world/level/block/state/BlockState;)Ljava/util/Optional; net/minecraft/world/entity/ai/village/poi/PoiTypes/forState (Lnet/minecraft/world/level/block/state/BlockState;)Ljava/util/Optional; +MD: net/minecraft/world/entity/ai/village/poi/PoiTypes/m_218082_ (Lnet/minecraft/core/Registry;)Lnet/minecraft/world/entity/ai/village/poi/PoiType; net/minecraft/world/entity/ai/village/poi/PoiTypes/bootstrap (Lnet/minecraft/core/Registry;)Lnet/minecraft/world/entity/ai/village/poi/PoiType; +MD: net/minecraft/world/entity/ai/village/poi/PoiTypes/m_218084_ (Lnet/minecraft/core/Registry;Lnet/minecraft/resources/ResourceKey;Ljava/util/Set;II)Lnet/minecraft/world/entity/ai/village/poi/PoiType; net/minecraft/world/entity/ai/village/poi/PoiTypes/register (Lnet/minecraft/core/Registry;Lnet/minecraft/resources/ResourceKey;Ljava/util/Set;II)Lnet/minecraft/world/entity/ai/village/poi/PoiType; +MD: net/minecraft/world/entity/ai/village/poi/PoiTypes/m_218090_ (Ljava/lang/String;)Lnet/minecraft/resources/ResourceKey; net/minecraft/world/entity/ai/village/poi/PoiTypes/createKey (Ljava/lang/String;)Lnet/minecraft/resources/ResourceKey; +MD: net/minecraft/world/entity/ai/village/poi/PoiTypes/m_218092_ (Lnet/minecraft/world/level/block/Block;)Ljava/util/stream/Stream; net/minecraft/world/entity/ai/village/poi/PoiTypes/lambda$static$2 (Lnet/minecraft/world/level/block/Block;)Ljava/util/stream/Stream; +MD: net/minecraft/world/entity/ai/village/poi/PoiTypes/m_218094_ (Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/world/entity/ai/village/poi/PoiTypes/lambda$static$1 (Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/world/entity/ai/village/poi/PoiTypes/m_218096_ (Lnet/minecraft/world/level/block/Block;)Ljava/util/stream/Stream; net/minecraft/world/entity/ai/village/poi/PoiTypes/lambda$static$0 (Lnet/minecraft/world/level/block/Block;)Ljava/util/stream/Stream; +MD: net/minecraft/world/entity/ai/village/poi/PoiTypes/m_241760_ (Lnet/minecraft/core/Holder;Lnet/minecraft/world/level/block/state/BlockState;)V net/minecraft/world/entity/ai/village/poi/PoiTypes/lambda$registerBlockStates$3 (Lnet/minecraft/core/Holder;Lnet/minecraft/world/level/block/state/BlockState;)V +MD: net/minecraft/world/entity/ai/village/poi/PoiTypes/m_246216_ (Lnet/minecraft/core/Holder;Ljava/util/Set;)V net/minecraft/world/entity/ai/village/poi/PoiTypes/registerBlockStates (Lnet/minecraft/core/Holder;Ljava/util/Set;)V +MD: net/minecraft/world/entity/ai/village/poi/PoiTypes/m_252831_ (Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/world/entity/ai/village/poi/PoiTypes/hasPoi (Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/world/entity/ambient/AmbientCreature/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V net/minecraft/world/entity/ambient/AmbientCreature/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V +MD: net/minecraft/world/entity/ambient/AmbientCreature/m_6573_ (Lnet/minecraft/world/entity/player/Player;)Z net/minecraft/world/entity/ambient/AmbientCreature/canBeLeashed (Lnet/minecraft/world/entity/player/Player;)Z +MD: net/minecraft/world/entity/ambient/Bat/ ()V net/minecraft/world/entity/ambient/Bat/ ()V +MD: net/minecraft/world/entity/ambient/Bat/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V net/minecraft/world/entity/ambient/Bat/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V +MD: net/minecraft/world/entity/ambient/Bat/m_142039_ ()Z net/minecraft/world/entity/ambient/Bat/isFlapping ()Z +MD: net/minecraft/world/entity/ambient/Bat/m_142319_ ()Lnet/minecraft/world/entity/Entity$MovementEmission; net/minecraft/world/entity/ambient/Bat/getMovementEmission ()Lnet/minecraft/world/entity/Entity$MovementEmission; +MD: net/minecraft/world/entity/ambient/Bat/m_218098_ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/world/entity/MobSpawnType;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)Z net/minecraft/world/entity/ambient/Bat/checkBatSpawnRules (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/world/entity/MobSpawnType;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)Z +MD: net/minecraft/world/entity/ambient/Bat/m_27452_ ()Z net/minecraft/world/entity/ambient/Bat/isResting ()Z +MD: net/minecraft/world/entity/ambient/Bat/m_27453_ ()Z net/minecraft/world/entity/ambient/Bat/isHalloween ()Z +MD: net/minecraft/world/entity/ambient/Bat/m_27455_ ()Lnet/minecraft/world/entity/ai/attributes/AttributeSupplier$Builder; net/minecraft/world/entity/ambient/Bat/createAttributes ()Lnet/minecraft/world/entity/ai/attributes/AttributeSupplier$Builder; +MD: net/minecraft/world/entity/ambient/Bat/m_27456_ (Z)V net/minecraft/world/entity/ambient/Bat/setResting (Z)V +MD: net/minecraft/world/entity/ambient/Bat/m_5592_ ()Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/ambient/Bat/getDeathSound ()Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/ambient/Bat/m_6090_ ()Z net/minecraft/world/entity/ambient/Bat/isIgnoringBlockTriggers ()Z +MD: net/minecraft/world/entity/ambient/Bat/m_6094_ ()Z net/minecraft/world/entity/ambient/Bat/isPushable ()Z +MD: net/minecraft/world/entity/ambient/Bat/m_6100_ ()F net/minecraft/world/entity/ambient/Bat/getVoicePitch ()F +MD: net/minecraft/world/entity/ambient/Bat/m_6121_ ()F net/minecraft/world/entity/ambient/Bat/getSoundVolume ()F +MD: net/minecraft/world/entity/ambient/Bat/m_6138_ ()V net/minecraft/world/entity/ambient/Bat/pushEntities ()V +MD: net/minecraft/world/entity/ambient/Bat/m_6431_ (Lnet/minecraft/world/entity/Pose;Lnet/minecraft/world/entity/EntityDimensions;)F net/minecraft/world/entity/ambient/Bat/getStandingEyeHeight (Lnet/minecraft/world/entity/Pose;Lnet/minecraft/world/entity/EntityDimensions;)F +MD: net/minecraft/world/entity/ambient/Bat/m_6469_ (Lnet/minecraft/world/damagesource/DamageSource;F)Z net/minecraft/world/entity/ambient/Bat/hurt (Lnet/minecraft/world/damagesource/DamageSource;F)Z +MD: net/minecraft/world/entity/ambient/Bat/m_7324_ (Lnet/minecraft/world/entity/Entity;)V net/minecraft/world/entity/ambient/Bat/doPush (Lnet/minecraft/world/entity/Entity;)V +MD: net/minecraft/world/entity/ambient/Bat/m_7378_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/entity/ambient/Bat/readAdditionalSaveData (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/entity/ambient/Bat/m_7380_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/entity/ambient/Bat/addAdditionalSaveData (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/entity/ambient/Bat/m_7515_ ()Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/ambient/Bat/getAmbientSound ()Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/ambient/Bat/m_7840_ (DZLnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/BlockPos;)V net/minecraft/world/entity/ambient/Bat/checkFallDamage (DZLnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/world/entity/ambient/Bat/m_7975_ (Lnet/minecraft/world/damagesource/DamageSource;)Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/ambient/Bat/getHurtSound (Lnet/minecraft/world/damagesource/DamageSource;)Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/ambient/Bat/m_8024_ ()V net/minecraft/world/entity/ambient/Bat/customServerAiStep ()V +MD: net/minecraft/world/entity/ambient/Bat/m_8097_ ()V net/minecraft/world/entity/ambient/Bat/defineSynchedData ()V +MD: net/minecraft/world/entity/ambient/Bat/m_8119_ ()V net/minecraft/world/entity/ambient/Bat/tick ()V +MD: net/minecraft/world/entity/animal/AbstractFish/ ()V net/minecraft/world/entity/animal/AbstractFish/ ()V +MD: net/minecraft/world/entity/animal/AbstractFish/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V net/minecraft/world/entity/animal/AbstractFish/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V +MD: net/minecraft/world/entity/animal/AbstractFish/m_142278_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/entity/animal/AbstractFish/loadFromBucketTag (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/entity/animal/AbstractFish/m_142623_ ()Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/animal/AbstractFish/getPickupSound ()Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/animal/AbstractFish/m_27487_ ()Z net/minecraft/world/entity/animal/AbstractFish/fromBucket ()Z +MD: net/minecraft/world/entity/animal/AbstractFish/m_27495_ ()Lnet/minecraft/world/entity/ai/attributes/AttributeSupplier$Builder; net/minecraft/world/entity/animal/AbstractFish/createAttributes ()Lnet/minecraft/world/entity/ai/attributes/AttributeSupplier$Builder; +MD: net/minecraft/world/entity/animal/AbstractFish/m_27497_ (Z)V net/minecraft/world/entity/animal/AbstractFish/setFromBucket (Z)V +MD: net/minecraft/world/entity/animal/AbstractFish/m_5501_ ()Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/animal/AbstractFish/getSwimSound ()Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/animal/AbstractFish/m_5699_ ()Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/animal/AbstractFish/getFlopSound ()Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/animal/AbstractFish/m_5792_ ()I net/minecraft/world/entity/animal/AbstractFish/getMaxSpawnClusterSize ()I +MD: net/minecraft/world/entity/animal/AbstractFish/m_6004_ ()Z net/minecraft/world/entity/animal/AbstractFish/canRandomSwim ()Z +MD: net/minecraft/world/entity/animal/AbstractFish/m_6037_ (Lnet/minecraft/world/level/Level;)Lnet/minecraft/world/entity/ai/navigation/PathNavigation; net/minecraft/world/entity/animal/AbstractFish/createNavigation (Lnet/minecraft/world/level/Level;)Lnet/minecraft/world/entity/ai/navigation/PathNavigation; +MD: net/minecraft/world/entity/animal/AbstractFish/m_6071_ (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;)Lnet/minecraft/world/InteractionResult; net/minecraft/world/entity/animal/AbstractFish/mobInteract (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;)Lnet/minecraft/world/InteractionResult; +MD: net/minecraft/world/entity/animal/AbstractFish/m_6431_ (Lnet/minecraft/world/entity/Pose;Lnet/minecraft/world/entity/EntityDimensions;)F net/minecraft/world/entity/animal/AbstractFish/getStandingEyeHeight (Lnet/minecraft/world/entity/Pose;Lnet/minecraft/world/entity/EntityDimensions;)F +MD: net/minecraft/world/entity/animal/AbstractFish/m_6785_ (D)Z net/minecraft/world/entity/animal/AbstractFish/removeWhenFarAway (D)Z +MD: net/minecraft/world/entity/animal/AbstractFish/m_6872_ (Lnet/minecraft/world/item/ItemStack;)V net/minecraft/world/entity/animal/AbstractFish/saveToBucketTag (Lnet/minecraft/world/item/ItemStack;)V +MD: net/minecraft/world/entity/animal/AbstractFish/m_7023_ (Lnet/minecraft/world/phys/Vec3;)V net/minecraft/world/entity/animal/AbstractFish/travel (Lnet/minecraft/world/phys/Vec3;)V +MD: net/minecraft/world/entity/animal/AbstractFish/m_7355_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V net/minecraft/world/entity/animal/AbstractFish/playStepSound (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V +MD: net/minecraft/world/entity/animal/AbstractFish/m_7378_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/entity/animal/AbstractFish/readAdditionalSaveData (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/entity/animal/AbstractFish/m_7380_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/entity/animal/AbstractFish/addAdditionalSaveData (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/entity/animal/AbstractFish/m_8023_ ()Z net/minecraft/world/entity/animal/AbstractFish/requiresCustomPersistence ()Z +MD: net/minecraft/world/entity/animal/AbstractFish/m_8097_ ()V net/minecraft/world/entity/animal/AbstractFish/defineSynchedData ()V +MD: net/minecraft/world/entity/animal/AbstractFish/m_8099_ ()V net/minecraft/world/entity/animal/AbstractFish/registerGoals ()V +MD: net/minecraft/world/entity/animal/AbstractFish/m_8107_ ()V net/minecraft/world/entity/animal/AbstractFish/aiStep ()V +MD: net/minecraft/world/entity/animal/AbstractFish$FishMoveControl/ (Lnet/minecraft/world/entity/animal/AbstractFish;)V net/minecraft/world/entity/animal/AbstractFish$FishMoveControl/ (Lnet/minecraft/world/entity/animal/AbstractFish;)V +MD: net/minecraft/world/entity/animal/AbstractFish$FishMoveControl/m_8126_ ()V net/minecraft/world/entity/animal/AbstractFish$FishMoveControl/tick ()V +MD: net/minecraft/world/entity/animal/AbstractFish$FishSwimGoal/ (Lnet/minecraft/world/entity/animal/AbstractFish;)V net/minecraft/world/entity/animal/AbstractFish$FishSwimGoal/ (Lnet/minecraft/world/entity/animal/AbstractFish;)V +MD: net/minecraft/world/entity/animal/AbstractFish$FishSwimGoal/m_8036_ ()Z net/minecraft/world/entity/animal/AbstractFish$FishSwimGoal/canUse ()Z +MD: net/minecraft/world/entity/animal/AbstractGolem/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V net/minecraft/world/entity/animal/AbstractGolem/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V +MD: net/minecraft/world/entity/animal/AbstractGolem/m_5592_ ()Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/animal/AbstractGolem/getDeathSound ()Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/animal/AbstractGolem/m_6785_ (D)Z net/minecraft/world/entity/animal/AbstractGolem/removeWhenFarAway (D)Z +MD: net/minecraft/world/entity/animal/AbstractGolem/m_7515_ ()Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/animal/AbstractGolem/getAmbientSound ()Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/animal/AbstractGolem/m_7975_ (Lnet/minecraft/world/damagesource/DamageSource;)Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/animal/AbstractGolem/getHurtSound (Lnet/minecraft/world/damagesource/DamageSource;)Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/animal/AbstractGolem/m_8100_ ()I net/minecraft/world/entity/animal/AbstractGolem/getAmbientSoundInterval ()I +MD: net/minecraft/world/entity/animal/AbstractSchoolingFish/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V net/minecraft/world/entity/animal/AbstractSchoolingFish/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V +MD: net/minecraft/world/entity/animal/AbstractSchoolingFish/m_27525_ (Lnet/minecraft/world/entity/animal/AbstractSchoolingFish;)Lnet/minecraft/world/entity/animal/AbstractSchoolingFish; net/minecraft/world/entity/animal/AbstractSchoolingFish/startFollowing (Lnet/minecraft/world/entity/animal/AbstractSchoolingFish;)Lnet/minecraft/world/entity/animal/AbstractSchoolingFish; +MD: net/minecraft/world/entity/animal/AbstractSchoolingFish/m_27533_ (Ljava/util/stream/Stream;)V net/minecraft/world/entity/animal/AbstractSchoolingFish/addFollowers (Ljava/util/stream/Stream;)V +MD: net/minecraft/world/entity/animal/AbstractSchoolingFish/m_27535_ (Lnet/minecraft/world/entity/animal/AbstractSchoolingFish;)V net/minecraft/world/entity/animal/AbstractSchoolingFish/lambda$addFollowers$1 (Lnet/minecraft/world/entity/animal/AbstractSchoolingFish;)V +MD: net/minecraft/world/entity/animal/AbstractSchoolingFish/m_27537_ (Lnet/minecraft/world/entity/animal/AbstractSchoolingFish;)Z net/minecraft/world/entity/animal/AbstractSchoolingFish/lambda$addFollowers$0 (Lnet/minecraft/world/entity/animal/AbstractSchoolingFish;)Z +MD: net/minecraft/world/entity/animal/AbstractSchoolingFish/m_27540_ ()Z net/minecraft/world/entity/animal/AbstractSchoolingFish/isFollower ()Z +MD: net/minecraft/world/entity/animal/AbstractSchoolingFish/m_27541_ ()V net/minecraft/world/entity/animal/AbstractSchoolingFish/stopFollowing ()V +MD: net/minecraft/world/entity/animal/AbstractSchoolingFish/m_27542_ ()Z net/minecraft/world/entity/animal/AbstractSchoolingFish/canBeFollowed ()Z +MD: net/minecraft/world/entity/animal/AbstractSchoolingFish/m_27543_ ()Z net/minecraft/world/entity/animal/AbstractSchoolingFish/hasFollowers ()Z +MD: net/minecraft/world/entity/animal/AbstractSchoolingFish/m_27544_ ()Z net/minecraft/world/entity/animal/AbstractSchoolingFish/inRangeOfLeader ()Z +MD: net/minecraft/world/entity/animal/AbstractSchoolingFish/m_27545_ ()V net/minecraft/world/entity/animal/AbstractSchoolingFish/pathToLeader ()V +MD: net/minecraft/world/entity/animal/AbstractSchoolingFish/m_27546_ ()V net/minecraft/world/entity/animal/AbstractSchoolingFish/addFollower ()V +MD: net/minecraft/world/entity/animal/AbstractSchoolingFish/m_27547_ ()V net/minecraft/world/entity/animal/AbstractSchoolingFish/removeFollower ()V +MD: net/minecraft/world/entity/animal/AbstractSchoolingFish/m_5792_ ()I net/minecraft/world/entity/animal/AbstractSchoolingFish/getMaxSpawnClusterSize ()I +MD: net/minecraft/world/entity/animal/AbstractSchoolingFish/m_6004_ ()Z net/minecraft/world/entity/animal/AbstractSchoolingFish/canRandomSwim ()Z +MD: net/minecraft/world/entity/animal/AbstractSchoolingFish/m_6031_ ()I net/minecraft/world/entity/animal/AbstractSchoolingFish/getMaxSchoolSize ()I +MD: net/minecraft/world/entity/animal/AbstractSchoolingFish/m_6518_ (Lnet/minecraft/world/level/ServerLevelAccessor;Lnet/minecraft/world/DifficultyInstance;Lnet/minecraft/world/entity/MobSpawnType;Lnet/minecraft/world/entity/SpawnGroupData;Lnet/minecraft/nbt/CompoundTag;)Lnet/minecraft/world/entity/SpawnGroupData; net/minecraft/world/entity/animal/AbstractSchoolingFish/finalizeSpawn (Lnet/minecraft/world/level/ServerLevelAccessor;Lnet/minecraft/world/DifficultyInstance;Lnet/minecraft/world/entity/MobSpawnType;Lnet/minecraft/world/entity/SpawnGroupData;Lnet/minecraft/nbt/CompoundTag;)Lnet/minecraft/world/entity/SpawnGroupData; +MD: net/minecraft/world/entity/animal/AbstractSchoolingFish/m_8099_ ()V net/minecraft/world/entity/animal/AbstractSchoolingFish/registerGoals ()V +MD: net/minecraft/world/entity/animal/AbstractSchoolingFish/m_8119_ ()V net/minecraft/world/entity/animal/AbstractSchoolingFish/tick ()V +MD: net/minecraft/world/entity/animal/AbstractSchoolingFish$SchoolSpawnGroupData/ (Lnet/minecraft/world/entity/animal/AbstractSchoolingFish;)V net/minecraft/world/entity/animal/AbstractSchoolingFish$SchoolSpawnGroupData/ (Lnet/minecraft/world/entity/animal/AbstractSchoolingFish;)V +MD: net/minecraft/world/entity/animal/Animal/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V net/minecraft/world/entity/animal/Animal/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V +MD: net/minecraft/world/entity/animal/Animal/m_142075_ (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;Lnet/minecraft/world/item/ItemStack;)V net/minecraft/world/entity/animal/Animal/usePlayerItem (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;Lnet/minecraft/world/item/ItemStack;)V +MD: net/minecraft/world/entity/animal/Animal/m_186209_ (Lnet/minecraft/world/level/BlockAndTintGetter;Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/entity/animal/Animal/isBrightEnoughToSpawn (Lnet/minecraft/world/level/BlockAndTintGetter;Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/entity/animal/Animal/m_213860_ ()I net/minecraft/world/entity/animal/Animal/getExperienceReward ()I +MD: net/minecraft/world/entity/animal/Animal/m_218104_ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/world/entity/MobSpawnType;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)Z net/minecraft/world/entity/animal/Animal/checkAnimalSpawnRules (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/world/entity/MobSpawnType;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)Z +MD: net/minecraft/world/entity/animal/Animal/m_27563_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/animal/Animal;)V net/minecraft/world/entity/animal/Animal/spawnChildFromBreeding (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/animal/Animal;)V +MD: net/minecraft/world/entity/animal/Animal/m_27591_ ()I net/minecraft/world/entity/animal/Animal/getInLoveTime ()I +MD: net/minecraft/world/entity/animal/Animal/m_27592_ ()Lnet/minecraft/server/level/ServerPlayer; net/minecraft/world/entity/animal/Animal/getLoveCause ()Lnet/minecraft/server/level/ServerPlayer; +MD: net/minecraft/world/entity/animal/Animal/m_27593_ ()Z net/minecraft/world/entity/animal/Animal/isInLove ()Z +MD: net/minecraft/world/entity/animal/Animal/m_27594_ ()V net/minecraft/world/entity/animal/Animal/resetLove ()V +MD: net/minecraft/world/entity/animal/Animal/m_27595_ (Lnet/minecraft/world/entity/player/Player;)V net/minecraft/world/entity/animal/Animal/setInLove (Lnet/minecraft/world/entity/player/Player;)V +MD: net/minecraft/world/entity/animal/Animal/m_27601_ (I)V net/minecraft/world/entity/animal/Animal/setInLoveTime (I)V +MD: net/minecraft/world/entity/animal/Animal/m_276832_ (Lnet/minecraft/world/entity/animal/Animal;Lnet/minecraft/world/entity/AgeableMob;Lnet/minecraft/server/level/ServerPlayer;)V net/minecraft/world/entity/animal/Animal/lambda$finalizeSpawnChildFromBreeding$1 (Lnet/minecraft/world/entity/animal/Animal;Lnet/minecraft/world/entity/AgeableMob;Lnet/minecraft/server/level/ServerPlayer;)V +MD: net/minecraft/world/entity/animal/Animal/m_276984_ (Lnet/minecraft/world/entity/animal/Animal;)Ljava/util/Optional; net/minecraft/world/entity/animal/Animal/lambda$finalizeSpawnChildFromBreeding$0 (Lnet/minecraft/world/entity/animal/Animal;)Ljava/util/Optional; +MD: net/minecraft/world/entity/animal/Animal/m_277117_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/animal/Animal;Lnet/minecraft/world/entity/AgeableMob;)V net/minecraft/world/entity/animal/Animal/finalizeSpawnChildFromBreeding (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/animal/Animal;Lnet/minecraft/world/entity/AgeableMob;)V +MD: net/minecraft/world/entity/animal/Animal/m_5610_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/LevelReader;)F net/minecraft/world/entity/animal/Animal/getWalkTargetValue (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/LevelReader;)F +MD: net/minecraft/world/entity/animal/Animal/m_5957_ ()Z net/minecraft/world/entity/animal/Animal/canFallInLove ()Z +MD: net/minecraft/world/entity/animal/Animal/m_6049_ ()D net/minecraft/world/entity/animal/Animal/getMyRidingOffset ()D +MD: net/minecraft/world/entity/animal/Animal/m_6071_ (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;)Lnet/minecraft/world/InteractionResult; net/minecraft/world/entity/animal/Animal/mobInteract (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;)Lnet/minecraft/world/InteractionResult; +MD: net/minecraft/world/entity/animal/Animal/m_6469_ (Lnet/minecraft/world/damagesource/DamageSource;F)Z net/minecraft/world/entity/animal/Animal/hurt (Lnet/minecraft/world/damagesource/DamageSource;F)Z +MD: net/minecraft/world/entity/animal/Animal/m_6785_ (D)Z net/minecraft/world/entity/animal/Animal/removeWhenFarAway (D)Z +MD: net/minecraft/world/entity/animal/Animal/m_6898_ (Lnet/minecraft/world/item/ItemStack;)Z net/minecraft/world/entity/animal/Animal/isFood (Lnet/minecraft/world/item/ItemStack;)Z +MD: net/minecraft/world/entity/animal/Animal/m_7378_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/entity/animal/Animal/readAdditionalSaveData (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/entity/animal/Animal/m_7380_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/entity/animal/Animal/addAdditionalSaveData (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/entity/animal/Animal/m_7822_ (B)V net/minecraft/world/entity/animal/Animal/handleEntityEvent (B)V +MD: net/minecraft/world/entity/animal/Animal/m_7848_ (Lnet/minecraft/world/entity/animal/Animal;)Z net/minecraft/world/entity/animal/Animal/canMate (Lnet/minecraft/world/entity/animal/Animal;)Z +MD: net/minecraft/world/entity/animal/Animal/m_8024_ ()V net/minecraft/world/entity/animal/Animal/customServerAiStep ()V +MD: net/minecraft/world/entity/animal/Animal/m_8100_ ()I net/minecraft/world/entity/animal/Animal/getAmbientSoundInterval ()I +MD: net/minecraft/world/entity/animal/Animal/m_8107_ ()V net/minecraft/world/entity/animal/Animal/aiStep ()V +MD: net/minecraft/world/entity/animal/Bee/ ()V net/minecraft/world/entity/animal/Bee/ ()V +MD: net/minecraft/world/entity/animal/Bee/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V net/minecraft/world/entity/animal/Bee/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V +MD: net/minecraft/world/entity/animal/Bee/m_142039_ ()Z net/minecraft/world/entity/animal/Bee/isFlapping ()Z +MD: net/minecraft/world/entity/animal/Bee/m_142606_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/AgeableMob;)Lnet/minecraft/world/entity/animal/Bee; net/minecraft/world/entity/animal/Bee/getBreedOffspring (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/AgeableMob;)Lnet/minecraft/world/entity/animal/Bee; +MD: net/minecraft/world/entity/animal/Bee/m_142606_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/AgeableMob;)Lnet/minecraft/world/entity/AgeableMob; net/minecraft/world/entity/animal/Bee/getBreedOffspring (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/AgeableMob;)Lnet/minecraft/world/entity/AgeableMob; +MD: net/minecraft/world/entity/animal/Bee/m_148756_ (Lnet/minecraft/world/entity/animal/Bee;)Lnet/minecraft/world/entity/ai/navigation/PathNavigation; net/minecraft/world/entity/animal/Bee/access$000 (Lnet/minecraft/world/entity/animal/Bee;)Lnet/minecraft/world/entity/ai/navigation/PathNavigation; +MD: net/minecraft/world/entity/animal/Bee/m_148764_ (Lnet/minecraft/world/entity/animal/Bee;)Lnet/minecraft/world/entity/ai/navigation/PathNavigation; net/minecraft/world/entity/animal/Bee/access$200 (Lnet/minecraft/world/entity/animal/Bee;)Lnet/minecraft/world/entity/ai/navigation/PathNavigation; +MD: net/minecraft/world/entity/animal/Bee/m_148766_ (Lnet/minecraft/world/entity/animal/Bee;)Lnet/minecraft/world/entity/ai/navigation/PathNavigation; net/minecraft/world/entity/animal/Bee/access$300 (Lnet/minecraft/world/entity/animal/Bee;)Lnet/minecraft/world/entity/ai/navigation/PathNavigation; +MD: net/minecraft/world/entity/animal/Bee/m_148768_ (Lnet/minecraft/world/entity/animal/Bee;)Lnet/minecraft/world/entity/ai/navigation/PathNavigation; net/minecraft/world/entity/animal/Bee/access$400 (Lnet/minecraft/world/entity/animal/Bee;)Lnet/minecraft/world/entity/ai/navigation/PathNavigation; +MD: net/minecraft/world/entity/animal/Bee/m_148770_ (Lnet/minecraft/world/entity/animal/Bee;)Lnet/minecraft/world/entity/ai/navigation/PathNavigation; net/minecraft/world/entity/animal/Bee/access$500 (Lnet/minecraft/world/entity/animal/Bee;)Lnet/minecraft/world/entity/ai/navigation/PathNavigation; +MD: net/minecraft/world/entity/animal/Bee/m_148772_ ()Lnet/minecraft/world/entity/ai/goal/GoalSelector; net/minecraft/world/entity/animal/Bee/getGoalSelector ()Lnet/minecraft/world/entity/ai/goal/GoalSelector; +MD: net/minecraft/world/entity/animal/Bee/m_148774_ ()I net/minecraft/world/entity/animal/Bee/getTravellingTicks ()I +MD: net/minecraft/world/entity/animal/Bee/m_148775_ ()Ljava/util/List; net/minecraft/world/entity/animal/Bee/getBlacklistedHives ()Ljava/util/List; +MD: net/minecraft/world/entity/animal/Bee/m_148776_ (Lnet/minecraft/world/entity/animal/Bee;)Lnet/minecraft/world/entity/ai/navigation/PathNavigation; net/minecraft/world/entity/animal/Bee/access$600 (Lnet/minecraft/world/entity/animal/Bee;)Lnet/minecraft/world/entity/ai/navigation/PathNavigation; +MD: net/minecraft/world/entity/animal/Bee/m_148778_ (Lnet/minecraft/world/entity/animal/Bee;)Lnet/minecraft/world/entity/ai/navigation/PathNavigation; net/minecraft/world/entity/animal/Bee/access$700 (Lnet/minecraft/world/entity/animal/Bee;)Lnet/minecraft/world/entity/ai/navigation/PathNavigation; +MD: net/minecraft/world/entity/animal/Bee/m_148780_ (Lnet/minecraft/world/entity/animal/Bee;)Lnet/minecraft/world/entity/ai/navigation/PathNavigation; net/minecraft/world/entity/animal/Bee/access$800 (Lnet/minecraft/world/entity/animal/Bee;)Lnet/minecraft/world/entity/ai/navigation/PathNavigation; +MD: net/minecraft/world/entity/animal/Bee/m_148782_ (Lnet/minecraft/world/entity/animal/Bee;)Lnet/minecraft/world/entity/ai/navigation/PathNavigation; net/minecraft/world/entity/animal/Bee/access$1000 (Lnet/minecraft/world/entity/animal/Bee;)Lnet/minecraft/world/entity/ai/navigation/PathNavigation; +MD: net/minecraft/world/entity/animal/Bee/m_148784_ (Lnet/minecraft/world/entity/animal/Bee;)Lnet/minecraft/world/entity/ai/navigation/PathNavigation; net/minecraft/world/entity/animal/Bee/access$1400 (Lnet/minecraft/world/entity/animal/Bee;)Lnet/minecraft/world/entity/ai/navigation/PathNavigation; +MD: net/minecraft/world/entity/animal/Bee/m_148786_ (Lnet/minecraft/world/entity/animal/Bee;)Lnet/minecraft/world/entity/ai/navigation/PathNavigation; net/minecraft/world/entity/animal/Bee/access$1500 (Lnet/minecraft/world/entity/animal/Bee;)Lnet/minecraft/world/entity/ai/navigation/PathNavigation; +MD: net/minecraft/world/entity/animal/Bee/m_148788_ (Lnet/minecraft/world/entity/animal/Bee;)Lnet/minecraft/world/entity/ai/navigation/PathNavigation; net/minecraft/world/entity/animal/Bee/access$1600 (Lnet/minecraft/world/entity/animal/Bee;)Lnet/minecraft/world/entity/ai/navigation/PathNavigation; +MD: net/minecraft/world/entity/animal/Bee/m_148790_ (Lnet/minecraft/world/entity/animal/Bee;)Lnet/minecraft/world/entity/ai/navigation/PathNavigation; net/minecraft/world/entity/animal/Bee/access$1700 (Lnet/minecraft/world/entity/animal/Bee;)Lnet/minecraft/world/entity/ai/navigation/PathNavigation; +MD: net/minecraft/world/entity/animal/Bee/m_148792_ (Lnet/minecraft/world/entity/animal/Bee;)Lnet/minecraft/world/entity/ai/navigation/PathNavigation; net/minecraft/world/entity/animal/Bee/access$1800 (Lnet/minecraft/world/entity/animal/Bee;)Lnet/minecraft/world/entity/ai/navigation/PathNavigation; +MD: net/minecraft/world/entity/animal/Bee/m_203347_ (Lnet/minecraft/tags/TagKey;)V net/minecraft/world/entity/animal/Bee/jumpInLiquid (Lnet/minecraft/tags/TagKey;)V +MD: net/minecraft/world/entity/animal/Bee/m_218111_ (Lnet/minecraft/world/entity/animal/Bee;)Lnet/minecraft/util/RandomSource; net/minecraft/world/entity/animal/Bee/access$2600 (Lnet/minecraft/world/entity/animal/Bee;)Lnet/minecraft/util/RandomSource; +MD: net/minecraft/world/entity/animal/Bee/m_218113_ (Lnet/minecraft/world/entity/animal/Bee;)Lnet/minecraft/util/RandomSource; net/minecraft/world/entity/animal/Bee/access$2700 (Lnet/minecraft/world/entity/animal/Bee;)Lnet/minecraft/util/RandomSource; +MD: net/minecraft/world/entity/animal/Bee/m_218115_ (Lnet/minecraft/world/entity/animal/Bee;)Lnet/minecraft/util/RandomSource; net/minecraft/world/entity/animal/Bee/access$2800 (Lnet/minecraft/world/entity/animal/Bee;)Lnet/minecraft/util/RandomSource; +MD: net/minecraft/world/entity/animal/Bee/m_218117_ (Lnet/minecraft/world/entity/animal/Bee;)Lnet/minecraft/util/RandomSource; net/minecraft/world/entity/animal/Bee/access$100 (Lnet/minecraft/world/entity/animal/Bee;)Lnet/minecraft/util/RandomSource; +MD: net/minecraft/world/entity/animal/Bee/m_218119_ (Lnet/minecraft/world/entity/animal/Bee;)Lnet/minecraft/util/RandomSource; net/minecraft/world/entity/animal/Bee/access$1900 (Lnet/minecraft/world/entity/animal/Bee;)Lnet/minecraft/util/RandomSource; +MD: net/minecraft/world/entity/animal/Bee/m_218121_ (Lnet/minecraft/world/entity/animal/Bee;)Lnet/minecraft/util/RandomSource; net/minecraft/world/entity/animal/Bee/access$2000 (Lnet/minecraft/world/entity/animal/Bee;)Lnet/minecraft/util/RandomSource; +MD: net/minecraft/world/entity/animal/Bee/m_218123_ (Lnet/minecraft/world/entity/animal/Bee;)Lnet/minecraft/util/RandomSource; net/minecraft/world/entity/animal/Bee/access$2200 (Lnet/minecraft/world/entity/animal/Bee;)Lnet/minecraft/util/RandomSource; +MD: net/minecraft/world/entity/animal/Bee/m_218125_ (Lnet/minecraft/world/entity/animal/Bee;)Lnet/minecraft/util/RandomSource; net/minecraft/world/entity/animal/Bee/access$2400 (Lnet/minecraft/world/entity/animal/Bee;)Lnet/minecraft/util/RandomSource; +MD: net/minecraft/world/entity/animal/Bee/m_218127_ (Lnet/minecraft/world/entity/animal/Bee;)Lnet/minecraft/util/RandomSource; net/minecraft/world/entity/animal/Bee/access$2500 (Lnet/minecraft/world/entity/animal/Bee;)Lnet/minecraft/util/RandomSource; +MD: net/minecraft/world/entity/animal/Bee/m_27779_ (Lnet/minecraft/world/level/Level;DDDDDLnet/minecraft/core/particles/ParticleOptions;)V net/minecraft/world/entity/animal/Bee/spawnFluidParticle (Lnet/minecraft/world/level/Level;DDDDDLnet/minecraft/core/particles/ParticleOptions;)V +MD: net/minecraft/world/entity/animal/Bee/m_27806_ (Lnet/minecraft/world/entity/animal/Bee;)Lnet/minecraft/world/entity/ai/navigation/PathNavigation; net/minecraft/world/entity/animal/Bee/access$900 (Lnet/minecraft/world/entity/animal/Bee;)Lnet/minecraft/world/entity/ai/navigation/PathNavigation; +MD: net/minecraft/world/entity/animal/Bee/m_27816_ (Lnet/minecraft/core/BlockPos;I)Z net/minecraft/world/entity/animal/Bee/closerThan (Lnet/minecraft/core/BlockPos;I)Z +MD: net/minecraft/world/entity/animal/Bee/m_27832_ (IZ)V net/minecraft/world/entity/animal/Bee/setFlag (IZ)V +MD: net/minecraft/world/entity/animal/Bee/m_27835_ (Lnet/minecraft/world/entity/animal/Bee;)Lnet/minecraft/world/entity/ai/navigation/PathNavigation; net/minecraft/world/entity/animal/Bee/access$1100 (Lnet/minecraft/world/entity/animal/Bee;)Lnet/minecraft/world/entity/ai/navigation/PathNavigation; +MD: net/minecraft/world/entity/animal/Bee/m_27846_ (Lnet/minecraft/world/entity/animal/Bee;)Lnet/minecraft/world/entity/ai/navigation/PathNavigation; net/minecraft/world/entity/animal/Bee/access$1200 (Lnet/minecraft/world/entity/animal/Bee;)Lnet/minecraft/world/entity/ai/navigation/PathNavigation; +MD: net/minecraft/world/entity/animal/Bee/m_27851_ ()Lnet/minecraft/core/BlockPos; net/minecraft/world/entity/animal/Bee/getSavedFlowerPos ()Lnet/minecraft/core/BlockPos; +MD: net/minecraft/world/entity/animal/Bee/m_27852_ ()Z net/minecraft/world/entity/animal/Bee/hasSavedFlowerPos ()Z +MD: net/minecraft/world/entity/animal/Bee/m_27853_ ()V net/minecraft/world/entity/animal/Bee/resetTicksWithoutNectarSinceExitingHive ()V +MD: net/minecraft/world/entity/animal/Bee/m_27854_ ()Z net/minecraft/world/entity/animal/Bee/hasHive ()Z +MD: net/minecraft/world/entity/animal/Bee/m_27855_ ()Lnet/minecraft/core/BlockPos; net/minecraft/world/entity/animal/Bee/getHivePos ()Lnet/minecraft/core/BlockPos; +MD: net/minecraft/world/entity/animal/Bee/m_27856_ ()Z net/minecraft/world/entity/animal/Bee/hasNectar ()Z +MD: net/minecraft/world/entity/animal/Bee/m_27857_ ()Z net/minecraft/world/entity/animal/Bee/hasStung ()Z +MD: net/minecraft/world/entity/animal/Bee/m_27858_ ()Lnet/minecraft/world/entity/ai/attributes/AttributeSupplier$Builder; net/minecraft/world/entity/animal/Bee/createAttributes ()Lnet/minecraft/world/entity/ai/attributes/AttributeSupplier$Builder; +MD: net/minecraft/world/entity/animal/Bee/m_27859_ (Lnet/minecraft/world/entity/animal/Bee;)Lnet/minecraft/world/entity/ai/navigation/PathNavigation; net/minecraft/world/entity/animal/Bee/access$1300 (Lnet/minecraft/world/entity/animal/Bee;)Lnet/minecraft/world/entity/ai/navigation/PathNavigation; +MD: net/minecraft/world/entity/animal/Bee/m_27864_ ()V net/minecraft/world/entity/animal/Bee/dropOffNectar ()V +MD: net/minecraft/world/entity/animal/Bee/m_27865_ ()Z net/minecraft/world/entity/animal/Bee/isTiredOfLookingForNectar ()Z +MD: net/minecraft/world/entity/animal/Bee/m_27866_ ()Z net/minecraft/world/entity/animal/Bee/wantsToEnterHive ()Z +MD: net/minecraft/world/entity/animal/Bee/m_27867_ ()V net/minecraft/world/entity/animal/Bee/updateRollAmount ()V +MD: net/minecraft/world/entity/animal/Bee/m_27868_ ()Z net/minecraft/world/entity/animal/Bee/isHiveNearFire ()Z +MD: net/minecraft/world/entity/animal/Bee/m_27869_ ()I net/minecraft/world/entity/animal/Bee/getCropsGrownSincePollination ()I +MD: net/minecraft/world/entity/animal/Bee/m_27870_ ()V net/minecraft/world/entity/animal/Bee/resetNumCropsGrownSincePollination ()V +MD: net/minecraft/world/entity/animal/Bee/m_27871_ ()V net/minecraft/world/entity/animal/Bee/incrementNumCropsGrownSincePollination ()V +MD: net/minecraft/world/entity/animal/Bee/m_27872_ ()Z net/minecraft/world/entity/animal/Bee/isHiveValid ()Z +MD: net/minecraft/world/entity/animal/Bee/m_27873_ ()Z net/minecraft/world/entity/animal/Bee/isRolling ()Z +MD: net/minecraft/world/entity/animal/Bee/m_27876_ (Lnet/minecraft/core/BlockPos;)V net/minecraft/world/entity/animal/Bee/setSavedFlowerPos (Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/world/entity/animal/Bee/m_27880_ (Lnet/minecraft/core/BlockPos;)V net/minecraft/world/entity/animal/Bee/pathfindRandomlyTowards (Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/world/entity/animal/Bee/m_27884_ (Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/entity/animal/Bee/doesHiveHaveSpace (Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/entity/animal/Bee/m_27889_ (Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/entity/animal/Bee/isTooFarAway (Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/entity/animal/Bee/m_27896_ (Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/entity/animal/Bee/isFlowerValid (Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/entity/animal/Bee/m_27898_ (Lnet/minecraft/world/entity/animal/Bee;)Lnet/minecraft/world/entity/ai/navigation/PathNavigation; net/minecraft/world/entity/animal/Bee/access$2100 (Lnet/minecraft/world/entity/animal/Bee;)Lnet/minecraft/world/entity/ai/navigation/PathNavigation; +MD: net/minecraft/world/entity/animal/Bee/m_27902_ (Lnet/minecraft/world/entity/animal/Bee;)Lnet/minecraft/world/entity/ai/navigation/PathNavigation; net/minecraft/world/entity/animal/Bee/access$2300 (Lnet/minecraft/world/entity/animal/Bee;)Lnet/minecraft/world/entity/ai/navigation/PathNavigation; +MD: net/minecraft/world/entity/animal/Bee/m_27915_ (I)V net/minecraft/world/entity/animal/Bee/setStayOutOfHiveCountdown (I)V +MD: net/minecraft/world/entity/animal/Bee/m_27919_ (Z)V net/minecraft/world/entity/animal/Bee/setHasNectar (Z)V +MD: net/minecraft/world/entity/animal/Bee/m_27921_ (I)Z net/minecraft/world/entity/animal/Bee/getFlag (I)Z +MD: net/minecraft/world/entity/animal/Bee/m_27925_ (Z)V net/minecraft/world/entity/animal/Bee/setHasStung (Z)V +MD: net/minecraft/world/entity/animal/Bee/m_27929_ (Z)V net/minecraft/world/entity/animal/Bee/setRolling (Z)V +MD: net/minecraft/world/entity/animal/Bee/m_27935_ (F)F net/minecraft/world/entity/animal/Bee/getRollAmount (F)F +MD: net/minecraft/world/entity/animal/Bee/m_29443_ ()Z net/minecraft/world/entity/animal/Bee/isFlying ()Z +MD: net/minecraft/world/entity/animal/Bee/m_5592_ ()Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/animal/Bee/getDeathSound ()Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/animal/Bee/m_5610_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/LevelReader;)F net/minecraft/world/entity/animal/Bee/getWalkTargetValue (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/LevelReader;)F +MD: net/minecraft/world/entity/animal/Bee/m_6037_ (Lnet/minecraft/world/level/Level;)Lnet/minecraft/world/entity/ai/navigation/PathNavigation; net/minecraft/world/entity/animal/Bee/createNavigation (Lnet/minecraft/world/level/Level;)Lnet/minecraft/world/entity/ai/navigation/PathNavigation; +MD: net/minecraft/world/entity/animal/Bee/m_6120_ ()Ljava/util/UUID; net/minecraft/world/entity/animal/Bee/getPersistentAngerTarget ()Ljava/util/UUID; +MD: net/minecraft/world/entity/animal/Bee/m_6121_ ()F net/minecraft/world/entity/animal/Bee/getSoundVolume ()F +MD: net/minecraft/world/entity/animal/Bee/m_6336_ ()Lnet/minecraft/world/entity/MobType; net/minecraft/world/entity/animal/Bee/getMobType ()Lnet/minecraft/world/entity/MobType; +MD: net/minecraft/world/entity/animal/Bee/m_6431_ (Lnet/minecraft/world/entity/Pose;Lnet/minecraft/world/entity/EntityDimensions;)F net/minecraft/world/entity/animal/Bee/getStandingEyeHeight (Lnet/minecraft/world/entity/Pose;Lnet/minecraft/world/entity/EntityDimensions;)F +MD: net/minecraft/world/entity/animal/Bee/m_6469_ (Lnet/minecraft/world/damagesource/DamageSource;F)Z net/minecraft/world/entity/animal/Bee/hurt (Lnet/minecraft/world/damagesource/DamageSource;F)Z +MD: net/minecraft/world/entity/animal/Bee/m_6784_ ()I net/minecraft/world/entity/animal/Bee/getRemainingPersistentAngerTime ()I +MD: net/minecraft/world/entity/animal/Bee/m_6825_ ()V net/minecraft/world/entity/animal/Bee/startPersistentAngerTimer ()V +MD: net/minecraft/world/entity/animal/Bee/m_6898_ (Lnet/minecraft/world/item/ItemStack;)Z net/minecraft/world/entity/animal/Bee/isFood (Lnet/minecraft/world/item/ItemStack;)Z +MD: net/minecraft/world/entity/animal/Bee/m_6925_ (Ljava/util/UUID;)V net/minecraft/world/entity/animal/Bee/setPersistentAngerTarget (Ljava/util/UUID;)V +MD: net/minecraft/world/entity/animal/Bee/m_7327_ (Lnet/minecraft/world/entity/Entity;)Z net/minecraft/world/entity/animal/Bee/doHurtTarget (Lnet/minecraft/world/entity/Entity;)Z +MD: net/minecraft/world/entity/animal/Bee/m_7355_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V net/minecraft/world/entity/animal/Bee/playStepSound (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V +MD: net/minecraft/world/entity/animal/Bee/m_7378_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/entity/animal/Bee/readAdditionalSaveData (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/entity/animal/Bee/m_7380_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/entity/animal/Bee/addAdditionalSaveData (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/entity/animal/Bee/m_7515_ ()Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/animal/Bee/getAmbientSound ()Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/animal/Bee/m_7840_ (DZLnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/BlockPos;)V net/minecraft/world/entity/animal/Bee/checkFallDamage (DZLnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/world/entity/animal/Bee/m_7870_ (I)V net/minecraft/world/entity/animal/Bee/setRemainingPersistentAngerTime (I)V +MD: net/minecraft/world/entity/animal/Bee/m_7939_ ()Lnet/minecraft/world/phys/Vec3; net/minecraft/world/entity/animal/Bee/getLeashOffset ()Lnet/minecraft/world/phys/Vec3; +MD: net/minecraft/world/entity/animal/Bee/m_7975_ (Lnet/minecraft/world/damagesource/DamageSource;)Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/animal/Bee/getHurtSound (Lnet/minecraft/world/damagesource/DamageSource;)Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/animal/Bee/m_8024_ ()V net/minecraft/world/entity/animal/Bee/customServerAiStep ()V +MD: net/minecraft/world/entity/animal/Bee/m_8025_ ()V net/minecraft/world/entity/animal/Bee/sendDebugPackets ()V +MD: net/minecraft/world/entity/animal/Bee/m_8097_ ()V net/minecraft/world/entity/animal/Bee/defineSynchedData ()V +MD: net/minecraft/world/entity/animal/Bee/m_8099_ ()V net/minecraft/world/entity/animal/Bee/registerGoals ()V +MD: net/minecraft/world/entity/animal/Bee/m_8107_ ()V net/minecraft/world/entity/animal/Bee/aiStep ()V +MD: net/minecraft/world/entity/animal/Bee/m_8119_ ()V net/minecraft/world/entity/animal/Bee/tick ()V +MD: net/minecraft/world/entity/animal/Bee$1/ (Lnet/minecraft/world/entity/animal/Bee;Lnet/minecraft/world/entity/Mob;Lnet/minecraft/world/level/Level;)V net/minecraft/world/entity/animal/Bee$1/ (Lnet/minecraft/world/entity/animal/Bee;Lnet/minecraft/world/entity/Mob;Lnet/minecraft/world/level/Level;)V +MD: net/minecraft/world/entity/animal/Bee$1/m_6342_ (Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/entity/animal/Bee$1/isStableDestination (Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/entity/animal/Bee$1/m_7638_ ()V net/minecraft/world/entity/animal/Bee$1/tick ()V +MD: net/minecraft/world/entity/animal/Bee$BaseBeeGoal/ (Lnet/minecraft/world/entity/animal/Bee;)V net/minecraft/world/entity/animal/Bee$BaseBeeGoal/ (Lnet/minecraft/world/entity/animal/Bee;)V +MD: net/minecraft/world/entity/animal/Bee$BaseBeeGoal/m_7989_ ()Z net/minecraft/world/entity/animal/Bee$BaseBeeGoal/canBeeUse ()Z +MD: net/minecraft/world/entity/animal/Bee$BaseBeeGoal/m_8011_ ()Z net/minecraft/world/entity/animal/Bee$BaseBeeGoal/canBeeContinueToUse ()Z +MD: net/minecraft/world/entity/animal/Bee$BaseBeeGoal/m_8036_ ()Z net/minecraft/world/entity/animal/Bee$BaseBeeGoal/canUse ()Z +MD: net/minecraft/world/entity/animal/Bee$BaseBeeGoal/m_8045_ ()Z net/minecraft/world/entity/animal/Bee$BaseBeeGoal/canContinueToUse ()Z +MD: net/minecraft/world/entity/animal/Bee$BeeAttackGoal/ (Lnet/minecraft/world/entity/animal/Bee;Lnet/minecraft/world/entity/PathfinderMob;DZ)V net/minecraft/world/entity/animal/Bee$BeeAttackGoal/ (Lnet/minecraft/world/entity/animal/Bee;Lnet/minecraft/world/entity/PathfinderMob;DZ)V +MD: net/minecraft/world/entity/animal/Bee$BeeAttackGoal/m_8036_ ()Z net/minecraft/world/entity/animal/Bee$BeeAttackGoal/canUse ()Z +MD: net/minecraft/world/entity/animal/Bee$BeeAttackGoal/m_8045_ ()Z net/minecraft/world/entity/animal/Bee$BeeAttackGoal/canContinueToUse ()Z +MD: net/minecraft/world/entity/animal/Bee$BeeBecomeAngryTargetGoal/ (Lnet/minecraft/world/entity/animal/Bee;)V net/minecraft/world/entity/animal/Bee$BeeBecomeAngryTargetGoal/ (Lnet/minecraft/world/entity/animal/Bee;)V +MD: net/minecraft/world/entity/animal/Bee$BeeBecomeAngryTargetGoal/m_27969_ ()Z net/minecraft/world/entity/animal/Bee$BeeBecomeAngryTargetGoal/beeCanTarget ()Z +MD: net/minecraft/world/entity/animal/Bee$BeeBecomeAngryTargetGoal/m_8036_ ()Z net/minecraft/world/entity/animal/Bee$BeeBecomeAngryTargetGoal/canUse ()Z +MD: net/minecraft/world/entity/animal/Bee$BeeBecomeAngryTargetGoal/m_8045_ ()Z net/minecraft/world/entity/animal/Bee$BeeBecomeAngryTargetGoal/canContinueToUse ()Z +MD: net/minecraft/world/entity/animal/Bee$BeeEnterHiveGoal/ (Lnet/minecraft/world/entity/animal/Bee;)V net/minecraft/world/entity/animal/Bee$BeeEnterHiveGoal/ (Lnet/minecraft/world/entity/animal/Bee;)V +MD: net/minecraft/world/entity/animal/Bee$BeeEnterHiveGoal/m_7989_ ()Z net/minecraft/world/entity/animal/Bee$BeeEnterHiveGoal/canBeeUse ()Z +MD: net/minecraft/world/entity/animal/Bee$BeeEnterHiveGoal/m_8011_ ()Z net/minecraft/world/entity/animal/Bee$BeeEnterHiveGoal/canBeeContinueToUse ()Z +MD: net/minecraft/world/entity/animal/Bee$BeeEnterHiveGoal/m_8056_ ()V net/minecraft/world/entity/animal/Bee$BeeEnterHiveGoal/start ()V +MD: net/minecraft/world/entity/animal/Bee$BeeGoToHiveGoal/ (Lnet/minecraft/world/entity/animal/Bee;)V net/minecraft/world/entity/animal/Bee$BeeGoToHiveGoal/ (Lnet/minecraft/world/entity/animal/Bee;)V +MD: net/minecraft/world/entity/animal/Bee$BeeGoToHiveGoal/m_27990_ (Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/entity/animal/Bee$BeeGoToHiveGoal/pathfindDirectlyTowards (Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/entity/animal/Bee$BeeGoToHiveGoal/m_27993_ (Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/entity/animal/Bee$BeeGoToHiveGoal/isTargetBlacklisted (Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/entity/animal/Bee$BeeGoToHiveGoal/m_27998_ (Lnet/minecraft/core/BlockPos;)V net/minecraft/world/entity/animal/Bee$BeeGoToHiveGoal/blacklistTarget (Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/world/entity/animal/Bee$BeeGoToHiveGoal/m_28001_ (Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/entity/animal/Bee$BeeGoToHiveGoal/hasReachedTarget (Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/entity/animal/Bee$BeeGoToHiveGoal/m_28006_ ()V net/minecraft/world/entity/animal/Bee$BeeGoToHiveGoal/clearBlacklist ()V +MD: net/minecraft/world/entity/animal/Bee$BeeGoToHiveGoal/m_28007_ ()V net/minecraft/world/entity/animal/Bee$BeeGoToHiveGoal/dropAndBlacklistHive ()V +MD: net/minecraft/world/entity/animal/Bee$BeeGoToHiveGoal/m_28008_ ()V net/minecraft/world/entity/animal/Bee$BeeGoToHiveGoal/dropHive ()V +MD: net/minecraft/world/entity/animal/Bee$BeeGoToHiveGoal/m_7989_ ()Z net/minecraft/world/entity/animal/Bee$BeeGoToHiveGoal/canBeeUse ()Z +MD: net/minecraft/world/entity/animal/Bee$BeeGoToHiveGoal/m_8011_ ()Z net/minecraft/world/entity/animal/Bee$BeeGoToHiveGoal/canBeeContinueToUse ()Z +MD: net/minecraft/world/entity/animal/Bee$BeeGoToHiveGoal/m_8036_ ()Z net/minecraft/world/entity/animal/Bee$BeeGoToHiveGoal/canUse ()Z +MD: net/minecraft/world/entity/animal/Bee$BeeGoToHiveGoal/m_8037_ ()V net/minecraft/world/entity/animal/Bee$BeeGoToHiveGoal/tick ()V +MD: net/minecraft/world/entity/animal/Bee$BeeGoToHiveGoal/m_8041_ ()V net/minecraft/world/entity/animal/Bee$BeeGoToHiveGoal/stop ()V +MD: net/minecraft/world/entity/animal/Bee$BeeGoToHiveGoal/m_8045_ ()Z net/minecraft/world/entity/animal/Bee$BeeGoToHiveGoal/canContinueToUse ()Z +MD: net/minecraft/world/entity/animal/Bee$BeeGoToHiveGoal/m_8056_ ()V net/minecraft/world/entity/animal/Bee$BeeGoToHiveGoal/start ()V +MD: net/minecraft/world/entity/animal/Bee$BeeGoToKnownFlowerGoal/ (Lnet/minecraft/world/entity/animal/Bee;)V net/minecraft/world/entity/animal/Bee$BeeGoToKnownFlowerGoal/ (Lnet/minecraft/world/entity/animal/Bee;)V +MD: net/minecraft/world/entity/animal/Bee$BeeGoToKnownFlowerGoal/m_28020_ ()Z net/minecraft/world/entity/animal/Bee$BeeGoToKnownFlowerGoal/wantsToGoToKnownFlower ()Z +MD: net/minecraft/world/entity/animal/Bee$BeeGoToKnownFlowerGoal/m_7989_ ()Z net/minecraft/world/entity/animal/Bee$BeeGoToKnownFlowerGoal/canBeeUse ()Z +MD: net/minecraft/world/entity/animal/Bee$BeeGoToKnownFlowerGoal/m_8011_ ()Z net/minecraft/world/entity/animal/Bee$BeeGoToKnownFlowerGoal/canBeeContinueToUse ()Z +MD: net/minecraft/world/entity/animal/Bee$BeeGoToKnownFlowerGoal/m_8036_ ()Z net/minecraft/world/entity/animal/Bee$BeeGoToKnownFlowerGoal/canUse ()Z +MD: net/minecraft/world/entity/animal/Bee$BeeGoToKnownFlowerGoal/m_8037_ ()V net/minecraft/world/entity/animal/Bee$BeeGoToKnownFlowerGoal/tick ()V +MD: net/minecraft/world/entity/animal/Bee$BeeGoToKnownFlowerGoal/m_8041_ ()V net/minecraft/world/entity/animal/Bee$BeeGoToKnownFlowerGoal/stop ()V +MD: net/minecraft/world/entity/animal/Bee$BeeGoToKnownFlowerGoal/m_8045_ ()Z net/minecraft/world/entity/animal/Bee$BeeGoToKnownFlowerGoal/canContinueToUse ()Z +MD: net/minecraft/world/entity/animal/Bee$BeeGoToKnownFlowerGoal/m_8056_ ()V net/minecraft/world/entity/animal/Bee$BeeGoToKnownFlowerGoal/start ()V +MD: net/minecraft/world/entity/animal/Bee$BeeGrowCropGoal/ (Lnet/minecraft/world/entity/animal/Bee;)V net/minecraft/world/entity/animal/Bee$BeeGrowCropGoal/ (Lnet/minecraft/world/entity/animal/Bee;)V +MD: net/minecraft/world/entity/animal/Bee$BeeGrowCropGoal/m_7989_ ()Z net/minecraft/world/entity/animal/Bee$BeeGrowCropGoal/canBeeUse ()Z +MD: net/minecraft/world/entity/animal/Bee$BeeGrowCropGoal/m_8011_ ()Z net/minecraft/world/entity/animal/Bee$BeeGrowCropGoal/canBeeContinueToUse ()Z +MD: net/minecraft/world/entity/animal/Bee$BeeGrowCropGoal/m_8037_ ()V net/minecraft/world/entity/animal/Bee$BeeGrowCropGoal/tick ()V +MD: net/minecraft/world/entity/animal/Bee$BeeHurtByOtherGoal/ (Lnet/minecraft/world/entity/animal/Bee;Lnet/minecraft/world/entity/animal/Bee;)V net/minecraft/world/entity/animal/Bee$BeeHurtByOtherGoal/ (Lnet/minecraft/world/entity/animal/Bee;Lnet/minecraft/world/entity/animal/Bee;)V +MD: net/minecraft/world/entity/animal/Bee$BeeHurtByOtherGoal/m_5766_ (Lnet/minecraft/world/entity/Mob;Lnet/minecraft/world/entity/LivingEntity;)V net/minecraft/world/entity/animal/Bee$BeeHurtByOtherGoal/alertOther (Lnet/minecraft/world/entity/Mob;Lnet/minecraft/world/entity/LivingEntity;)V +MD: net/minecraft/world/entity/animal/Bee$BeeHurtByOtherGoal/m_8045_ ()Z net/minecraft/world/entity/animal/Bee$BeeHurtByOtherGoal/canContinueToUse ()Z +MD: net/minecraft/world/entity/animal/Bee$BeeLocateHiveGoal/ (Lnet/minecraft/world/entity/animal/Bee;)V net/minecraft/world/entity/animal/Bee$BeeLocateHiveGoal/ (Lnet/minecraft/world/entity/animal/Bee;)V +MD: net/minecraft/world/entity/animal/Bee$BeeLocateHiveGoal/m_148809_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;)D net/minecraft/world/entity/animal/Bee$BeeLocateHiveGoal/lambda$findNearbyHivesWithSpace$1 (Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;)D +MD: net/minecraft/world/entity/animal/Bee$BeeLocateHiveGoal/m_218129_ (Lnet/minecraft/core/Holder;)Z net/minecraft/world/entity/animal/Bee$BeeLocateHiveGoal/lambda$findNearbyHivesWithSpace$0 (Lnet/minecraft/core/Holder;)Z +MD: net/minecraft/world/entity/animal/Bee$BeeLocateHiveGoal/m_28055_ ()Ljava/util/List; net/minecraft/world/entity/animal/Bee$BeeLocateHiveGoal/findNearbyHivesWithSpace ()Ljava/util/List; +MD: net/minecraft/world/entity/animal/Bee$BeeLocateHiveGoal/m_7989_ ()Z net/minecraft/world/entity/animal/Bee$BeeLocateHiveGoal/canBeeUse ()Z +MD: net/minecraft/world/entity/animal/Bee$BeeLocateHiveGoal/m_8011_ ()Z net/minecraft/world/entity/animal/Bee$BeeLocateHiveGoal/canBeeContinueToUse ()Z +MD: net/minecraft/world/entity/animal/Bee$BeeLocateHiveGoal/m_8056_ ()V net/minecraft/world/entity/animal/Bee$BeeLocateHiveGoal/start ()V +MD: net/minecraft/world/entity/animal/Bee$BeeLookControl/ (Lnet/minecraft/world/entity/animal/Bee;Lnet/minecraft/world/entity/Mob;)V net/minecraft/world/entity/animal/Bee$BeeLookControl/ (Lnet/minecraft/world/entity/animal/Bee;Lnet/minecraft/world/entity/Mob;)V +MD: net/minecraft/world/entity/animal/Bee$BeeLookControl/m_8106_ ()Z net/minecraft/world/entity/animal/Bee$BeeLookControl/resetXRotOnTick ()Z +MD: net/minecraft/world/entity/animal/Bee$BeeLookControl/m_8128_ ()V net/minecraft/world/entity/animal/Bee$BeeLookControl/tick ()V +MD: net/minecraft/world/entity/animal/Bee$BeePollinateGoal/ (Lnet/minecraft/world/entity/animal/Bee;)V net/minecraft/world/entity/animal/Bee$BeePollinateGoal/ (Lnet/minecraft/world/entity/animal/Bee;)V +MD: net/minecraft/world/entity/animal/Bee$BeePollinateGoal/m_183429_ ()Z net/minecraft/world/entity/animal/Bee$BeePollinateGoal/requiresUpdateEveryTick ()Z +MD: net/minecraft/world/entity/animal/Bee$BeePollinateGoal/m_28073_ (Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/world/entity/animal/Bee$BeePollinateGoal/lambda$new$0 (Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/world/entity/animal/Bee$BeePollinateGoal/m_28075_ (Ljava/util/function/Predicate;D)Ljava/util/Optional; net/minecraft/world/entity/animal/Bee$BeePollinateGoal/findNearestBlock (Ljava/util/function/Predicate;D)Ljava/util/Optional; +MD: net/minecraft/world/entity/animal/Bee$BeePollinateGoal/m_28085_ ()Z net/minecraft/world/entity/animal/Bee$BeePollinateGoal/hasPollinatedLongEnough ()Z +MD: net/minecraft/world/entity/animal/Bee$BeePollinateGoal/m_28086_ ()Z net/minecraft/world/entity/animal/Bee$BeePollinateGoal/isPollinating ()Z +MD: net/minecraft/world/entity/animal/Bee$BeePollinateGoal/m_28087_ ()V net/minecraft/world/entity/animal/Bee$BeePollinateGoal/stopPollinating ()V +MD: net/minecraft/world/entity/animal/Bee$BeePollinateGoal/m_28088_ ()V net/minecraft/world/entity/animal/Bee$BeePollinateGoal/setWantedPos ()V +MD: net/minecraft/world/entity/animal/Bee$BeePollinateGoal/m_28089_ ()F net/minecraft/world/entity/animal/Bee$BeePollinateGoal/getOffset ()F +MD: net/minecraft/world/entity/animal/Bee$BeePollinateGoal/m_28090_ ()Ljava/util/Optional; net/minecraft/world/entity/animal/Bee$BeePollinateGoal/findNearbyFlower ()Ljava/util/Optional; +MD: net/minecraft/world/entity/animal/Bee$BeePollinateGoal/m_7989_ ()Z net/minecraft/world/entity/animal/Bee$BeePollinateGoal/canBeeUse ()Z +MD: net/minecraft/world/entity/animal/Bee$BeePollinateGoal/m_8011_ ()Z net/minecraft/world/entity/animal/Bee$BeePollinateGoal/canBeeContinueToUse ()Z +MD: net/minecraft/world/entity/animal/Bee$BeePollinateGoal/m_8037_ ()V net/minecraft/world/entity/animal/Bee$BeePollinateGoal/tick ()V +MD: net/minecraft/world/entity/animal/Bee$BeePollinateGoal/m_8041_ ()V net/minecraft/world/entity/animal/Bee$BeePollinateGoal/stop ()V +MD: net/minecraft/world/entity/animal/Bee$BeePollinateGoal/m_8056_ ()V net/minecraft/world/entity/animal/Bee$BeePollinateGoal/start ()V +MD: net/minecraft/world/entity/animal/Bee$BeeWanderGoal/ (Lnet/minecraft/world/entity/animal/Bee;)V net/minecraft/world/entity/animal/Bee$BeeWanderGoal/ (Lnet/minecraft/world/entity/animal/Bee;)V +MD: net/minecraft/world/entity/animal/Bee$BeeWanderGoal/m_28097_ ()Lnet/minecraft/world/phys/Vec3; net/minecraft/world/entity/animal/Bee$BeeWanderGoal/findPos ()Lnet/minecraft/world/phys/Vec3; +MD: net/minecraft/world/entity/animal/Bee$BeeWanderGoal/m_8036_ ()Z net/minecraft/world/entity/animal/Bee$BeeWanderGoal/canUse ()Z +MD: net/minecraft/world/entity/animal/Bee$BeeWanderGoal/m_8045_ ()Z net/minecraft/world/entity/animal/Bee$BeeWanderGoal/canContinueToUse ()Z +MD: net/minecraft/world/entity/animal/Bee$BeeWanderGoal/m_8056_ ()V net/minecraft/world/entity/animal/Bee$BeeWanderGoal/start ()V +MD: net/minecraft/world/entity/animal/Bucketable/m_142278_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/entity/animal/Bucketable/loadFromBucketTag (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/entity/animal/Bucketable/m_142623_ ()Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/animal/Bucketable/getPickupSound ()Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/animal/Bucketable/m_148822_ (Lnet/minecraft/world/entity/Mob;Lnet/minecraft/world/item/ItemStack;)V net/minecraft/world/entity/animal/Bucketable/saveDefaultDataToBucketTag (Lnet/minecraft/world/entity/Mob;Lnet/minecraft/world/item/ItemStack;)V +MD: net/minecraft/world/entity/animal/Bucketable/m_148825_ (Lnet/minecraft/world/entity/Mob;Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/entity/animal/Bucketable/loadDefaultDataFromBucketTag (Lnet/minecraft/world/entity/Mob;Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/entity/animal/Bucketable/m_148828_ (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;Lnet/minecraft/world/entity/LivingEntity;)Ljava/util/Optional; net/minecraft/world/entity/animal/Bucketable/bucketMobPickup (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;Lnet/minecraft/world/entity/LivingEntity;)Ljava/util/Optional; +MD: net/minecraft/world/entity/animal/Bucketable/m_27487_ ()Z net/minecraft/world/entity/animal/Bucketable/fromBucket ()Z +MD: net/minecraft/world/entity/animal/Bucketable/m_27497_ (Z)V net/minecraft/world/entity/animal/Bucketable/setFromBucket (Z)V +MD: net/minecraft/world/entity/animal/Bucketable/m_28282_ ()Lnet/minecraft/world/item/ItemStack; net/minecraft/world/entity/animal/Bucketable/getBucketItemStack ()Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/entity/animal/Bucketable/m_6872_ (Lnet/minecraft/world/item/ItemStack;)V net/minecraft/world/entity/animal/Bucketable/saveToBucketTag (Lnet/minecraft/world/item/ItemStack;)V +MD: net/minecraft/world/entity/animal/Cat/ ()V net/minecraft/world/entity/animal/Cat/ ()V +MD: net/minecraft/world/entity/animal/Cat/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V net/minecraft/world/entity/animal/Cat/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V +MD: net/minecraft/world/entity/animal/Cat/m_142075_ (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;Lnet/minecraft/world/item/ItemStack;)V net/minecraft/world/entity/animal/Cat/usePlayerItem (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;Lnet/minecraft/world/item/ItemStack;)V +MD: net/minecraft/world/entity/animal/Cat/m_142606_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/AgeableMob;)Lnet/minecraft/world/entity/AgeableMob; net/minecraft/world/entity/animal/Cat/getBreedOffspring (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/AgeableMob;)Lnet/minecraft/world/entity/AgeableMob; +MD: net/minecraft/world/entity/animal/Cat/m_142606_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/AgeableMob;)Lnet/minecraft/world/entity/animal/Cat; net/minecraft/world/entity/animal/Cat/getBreedOffspring (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/AgeableMob;)Lnet/minecraft/world/entity/animal/Cat; +MD: net/minecraft/world/entity/animal/Cat/m_20161_ ()Z net/minecraft/world/entity/animal/Cat/isSteppingCarefully ()Z +MD: net/minecraft/world/entity/animal/Cat/m_262358_ (Lnet/minecraft/core/Holder;)V net/minecraft/world/entity/animal/Cat/lambda$finalizeSpawn$1 (Lnet/minecraft/core/Holder;)V +MD: net/minecraft/world/entity/animal/Cat/m_28116_ (F)F net/minecraft/world/entity/animal/Cat/getRelaxStateOneAmount (F)F +MD: net/minecraft/world/entity/animal/Cat/m_28131_ (Lnet/minecraft/world/item/DyeColor;)V net/minecraft/world/entity/animal/Cat/setCollarColor (Lnet/minecraft/world/item/DyeColor;)V +MD: net/minecraft/world/entity/animal/Cat/m_28162_ ()Lnet/minecraft/resources/ResourceLocation; net/minecraft/world/entity/animal/Cat/getResourceLocation ()Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/world/entity/animal/Cat/m_28164_ ()Z net/minecraft/world/entity/animal/Cat/isLying ()Z +MD: net/minecraft/world/entity/animal/Cat/m_28165_ ()Z net/minecraft/world/entity/animal/Cat/isRelaxStateOne ()Z +MD: net/minecraft/world/entity/animal/Cat/m_28166_ ()Lnet/minecraft/world/item/DyeColor; net/minecraft/world/entity/animal/Cat/getCollarColor ()Lnet/minecraft/world/item/DyeColor; +MD: net/minecraft/world/entity/animal/Cat/m_28167_ ()V net/minecraft/world/entity/animal/Cat/hiss ()V +MD: net/minecraft/world/entity/animal/Cat/m_28168_ ()Lnet/minecraft/world/entity/ai/attributes/AttributeSupplier$Builder; net/minecraft/world/entity/animal/Cat/createAttributes ()Lnet/minecraft/world/entity/ai/attributes/AttributeSupplier$Builder; +MD: net/minecraft/world/entity/animal/Cat/m_28169_ ()F net/minecraft/world/entity/animal/Cat/getAttackDamage ()F +MD: net/minecraft/world/entity/animal/Cat/m_28170_ ()V net/minecraft/world/entity/animal/Cat/handleLieDown ()V +MD: net/minecraft/world/entity/animal/Cat/m_28171_ ()V net/minecraft/world/entity/animal/Cat/updateLieDownAmount ()V +MD: net/minecraft/world/entity/animal/Cat/m_28172_ ()V net/minecraft/world/entity/animal/Cat/updateRelaxStateOneAmount ()V +MD: net/minecraft/world/entity/animal/Cat/m_28181_ (Z)V net/minecraft/world/entity/animal/Cat/setLying (Z)V +MD: net/minecraft/world/entity/animal/Cat/m_28183_ (F)F net/minecraft/world/entity/animal/Cat/getLieDownAmount (F)F +MD: net/minecraft/world/entity/animal/Cat/m_28185_ (Z)V net/minecraft/world/entity/animal/Cat/setRelaxStateOne (Z)V +MD: net/minecraft/world/entity/animal/Cat/m_28187_ (F)F net/minecraft/world/entity/animal/Cat/getLieDownAmountTail (F)F +MD: net/minecraft/world/entity/animal/Cat/m_28464_ (Lnet/minecraft/world/entity/animal/CatVariant;)V net/minecraft/world/entity/animal/Cat/setVariant (Lnet/minecraft/world/entity/animal/CatVariant;)V +MD: net/minecraft/world/entity/animal/Cat/m_28464_ (Ljava/lang/Object;)V net/minecraft/world/entity/animal/Cat/setVariant (Ljava/lang/Object;)V +MD: net/minecraft/world/entity/animal/Cat/m_28554_ ()Lnet/minecraft/world/entity/animal/CatVariant; net/minecraft/world/entity/animal/Cat/getVariant ()Lnet/minecraft/world/entity/animal/CatVariant; +MD: net/minecraft/world/entity/animal/Cat/m_28554_ ()Ljava/lang/Object; net/minecraft/world/entity/animal/Cat/getVariant ()Ljava/lang/Object; +MD: net/minecraft/world/entity/animal/Cat/m_289128_ (Lnet/minecraft/world/level/ServerLevelAccessor;Lnet/minecraft/core/HolderSet$Named;)Ljava/util/Optional; net/minecraft/world/entity/animal/Cat/lambda$finalizeSpawn$0 (Lnet/minecraft/world/level/ServerLevelAccessor;Lnet/minecraft/core/HolderSet$Named;)Ljava/util/Optional; +MD: net/minecraft/world/entity/animal/Cat/m_5592_ ()Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/animal/Cat/getDeathSound ()Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/animal/Cat/m_5849_ ()V net/minecraft/world/entity/animal/Cat/reassessTameGoals ()V +MD: net/minecraft/world/entity/animal/Cat/m_6071_ (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;)Lnet/minecraft/world/InteractionResult; net/minecraft/world/entity/animal/Cat/mobInteract (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;)Lnet/minecraft/world/InteractionResult; +MD: net/minecraft/world/entity/animal/Cat/m_6431_ (Lnet/minecraft/world/entity/Pose;Lnet/minecraft/world/entity/EntityDimensions;)F net/minecraft/world/entity/animal/Cat/getStandingEyeHeight (Lnet/minecraft/world/entity/Pose;Lnet/minecraft/world/entity/EntityDimensions;)F +MD: net/minecraft/world/entity/animal/Cat/m_6518_ (Lnet/minecraft/world/level/ServerLevelAccessor;Lnet/minecraft/world/DifficultyInstance;Lnet/minecraft/world/entity/MobSpawnType;Lnet/minecraft/world/entity/SpawnGroupData;Lnet/minecraft/nbt/CompoundTag;)Lnet/minecraft/world/entity/SpawnGroupData; net/minecraft/world/entity/animal/Cat/finalizeSpawn (Lnet/minecraft/world/level/ServerLevelAccessor;Lnet/minecraft/world/DifficultyInstance;Lnet/minecraft/world/entity/MobSpawnType;Lnet/minecraft/world/entity/SpawnGroupData;Lnet/minecraft/nbt/CompoundTag;)Lnet/minecraft/world/entity/SpawnGroupData; +MD: net/minecraft/world/entity/animal/Cat/m_6785_ (D)Z net/minecraft/world/entity/animal/Cat/removeWhenFarAway (D)Z +MD: net/minecraft/world/entity/animal/Cat/m_6898_ (Lnet/minecraft/world/item/ItemStack;)Z net/minecraft/world/entity/animal/Cat/isFood (Lnet/minecraft/world/item/ItemStack;)Z +MD: net/minecraft/world/entity/animal/Cat/m_7327_ (Lnet/minecraft/world/entity/Entity;)Z net/minecraft/world/entity/animal/Cat/doHurtTarget (Lnet/minecraft/world/entity/Entity;)Z +MD: net/minecraft/world/entity/animal/Cat/m_7378_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/entity/animal/Cat/readAdditionalSaveData (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/entity/animal/Cat/m_7380_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/entity/animal/Cat/addAdditionalSaveData (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/entity/animal/Cat/m_7515_ ()Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/animal/Cat/getAmbientSound ()Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/animal/Cat/m_7848_ (Lnet/minecraft/world/entity/animal/Animal;)Z net/minecraft/world/entity/animal/Cat/canMate (Lnet/minecraft/world/entity/animal/Animal;)Z +MD: net/minecraft/world/entity/animal/Cat/m_7975_ (Lnet/minecraft/world/damagesource/DamageSource;)Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/animal/Cat/getHurtSound (Lnet/minecraft/world/damagesource/DamageSource;)Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/animal/Cat/m_8024_ ()V net/minecraft/world/entity/animal/Cat/customServerAiStep ()V +MD: net/minecraft/world/entity/animal/Cat/m_8097_ ()V net/minecraft/world/entity/animal/Cat/defineSynchedData ()V +MD: net/minecraft/world/entity/animal/Cat/m_8099_ ()V net/minecraft/world/entity/animal/Cat/registerGoals ()V +MD: net/minecraft/world/entity/animal/Cat/m_8100_ ()I net/minecraft/world/entity/animal/Cat/getAmbientSoundInterval ()I +MD: net/minecraft/world/entity/animal/Cat/m_8119_ ()V net/minecraft/world/entity/animal/Cat/tick ()V +MD: net/minecraft/world/entity/animal/Cat$CatAvoidEntityGoal/ (Lnet/minecraft/world/entity/animal/Cat;Ljava/lang/Class;FDD)V net/minecraft/world/entity/animal/Cat$CatAvoidEntityGoal/ (Lnet/minecraft/world/entity/animal/Cat;Ljava/lang/Class;FDD)V +MD: net/minecraft/world/entity/animal/Cat$CatAvoidEntityGoal/m_8036_ ()Z net/minecraft/world/entity/animal/Cat$CatAvoidEntityGoal/canUse ()Z +MD: net/minecraft/world/entity/animal/Cat$CatAvoidEntityGoal/m_8045_ ()Z net/minecraft/world/entity/animal/Cat$CatAvoidEntityGoal/canContinueToUse ()Z +MD: net/minecraft/world/entity/animal/Cat$CatRelaxOnOwnerGoal/ (Lnet/minecraft/world/entity/animal/Cat;)V net/minecraft/world/entity/animal/Cat$CatRelaxOnOwnerGoal/ (Lnet/minecraft/world/entity/animal/Cat;)V +MD: net/minecraft/world/entity/animal/Cat$CatRelaxOnOwnerGoal/m_28205_ (Lnet/minecraft/core/BlockPos;)Lnet/minecraft/core/BlockPos; net/minecraft/world/entity/animal/Cat$CatRelaxOnOwnerGoal/lambda$canUse$1 (Lnet/minecraft/core/BlockPos;)Lnet/minecraft/core/BlockPos; +MD: net/minecraft/world/entity/animal/Cat$CatRelaxOnOwnerGoal/m_28207_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Direction;)Lnet/minecraft/core/BlockPos; net/minecraft/world/entity/animal/Cat$CatRelaxOnOwnerGoal/lambda$canUse$0 (Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Direction;)Lnet/minecraft/core/BlockPos; +MD: net/minecraft/world/entity/animal/Cat$CatRelaxOnOwnerGoal/m_28214_ ()Z net/minecraft/world/entity/animal/Cat$CatRelaxOnOwnerGoal/spaceIsOccupied ()Z +MD: net/minecraft/world/entity/animal/Cat$CatRelaxOnOwnerGoal/m_28215_ ()V net/minecraft/world/entity/animal/Cat$CatRelaxOnOwnerGoal/giveMorningGift ()V +MD: net/minecraft/world/entity/animal/Cat$CatRelaxOnOwnerGoal/m_8036_ ()Z net/minecraft/world/entity/animal/Cat$CatRelaxOnOwnerGoal/canUse ()Z +MD: net/minecraft/world/entity/animal/Cat$CatRelaxOnOwnerGoal/m_8037_ ()V net/minecraft/world/entity/animal/Cat$CatRelaxOnOwnerGoal/tick ()V +MD: net/minecraft/world/entity/animal/Cat$CatRelaxOnOwnerGoal/m_8041_ ()V net/minecraft/world/entity/animal/Cat$CatRelaxOnOwnerGoal/stop ()V +MD: net/minecraft/world/entity/animal/Cat$CatRelaxOnOwnerGoal/m_8045_ ()Z net/minecraft/world/entity/animal/Cat$CatRelaxOnOwnerGoal/canContinueToUse ()Z +MD: net/minecraft/world/entity/animal/Cat$CatRelaxOnOwnerGoal/m_8056_ ()V net/minecraft/world/entity/animal/Cat$CatRelaxOnOwnerGoal/start ()V +MD: net/minecraft/world/entity/animal/Cat$CatTemptGoal/ (Lnet/minecraft/world/entity/animal/Cat;DLnet/minecraft/world/item/crafting/Ingredient;Z)V net/minecraft/world/entity/animal/Cat$CatTemptGoal/ (Lnet/minecraft/world/entity/animal/Cat;DLnet/minecraft/world/item/crafting/Ingredient;Z)V +MD: net/minecraft/world/entity/animal/Cat$CatTemptGoal/m_7497_ ()Z net/minecraft/world/entity/animal/Cat$CatTemptGoal/canScare ()Z +MD: net/minecraft/world/entity/animal/Cat$CatTemptGoal/m_8036_ ()Z net/minecraft/world/entity/animal/Cat$CatTemptGoal/canUse ()Z +MD: net/minecraft/world/entity/animal/Cat$CatTemptGoal/m_8037_ ()V net/minecraft/world/entity/animal/Cat$CatTemptGoal/tick ()V +MD: net/minecraft/world/entity/animal/CatVariant/ ()V net/minecraft/world/entity/animal/CatVariant/ ()V +MD: net/minecraft/world/entity/animal/CatVariant/ (Lnet/minecraft/resources/ResourceLocation;)V net/minecraft/world/entity/animal/CatVariant/ (Lnet/minecraft/resources/ResourceLocation;)V +MD: net/minecraft/world/entity/animal/CatVariant/equals (Ljava/lang/Object;)Z net/minecraft/world/entity/animal/CatVariant/equals (Ljava/lang/Object;)Z +MD: net/minecraft/world/entity/animal/CatVariant/f_218151_ ()Lnet/minecraft/resources/ResourceLocation; net/minecraft/world/entity/animal/CatVariant/texture ()Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/world/entity/animal/CatVariant/hashCode ()I net/minecraft/world/entity/animal/CatVariant/hashCode ()I +MD: net/minecraft/world/entity/animal/CatVariant/m_255142_ (Lnet/minecraft/core/Registry;Lnet/minecraft/resources/ResourceKey;Ljava/lang/String;)Lnet/minecraft/world/entity/animal/CatVariant; net/minecraft/world/entity/animal/CatVariant/register (Lnet/minecraft/core/Registry;Lnet/minecraft/resources/ResourceKey;Ljava/lang/String;)Lnet/minecraft/world/entity/animal/CatVariant; +MD: net/minecraft/world/entity/animal/CatVariant/m_255249_ (Ljava/lang/String;)Lnet/minecraft/resources/ResourceKey; net/minecraft/world/entity/animal/CatVariant/createKey (Ljava/lang/String;)Lnet/minecraft/resources/ResourceKey; +MD: net/minecraft/world/entity/animal/CatVariant/m_255364_ (Lnet/minecraft/core/Registry;)Lnet/minecraft/world/entity/animal/CatVariant; net/minecraft/world/entity/animal/CatVariant/bootstrap (Lnet/minecraft/core/Registry;)Lnet/minecraft/world/entity/animal/CatVariant; +MD: net/minecraft/world/entity/animal/CatVariant/toString ()Ljava/lang/String; net/minecraft/world/entity/animal/CatVariant/toString ()Ljava/lang/String; +MD: net/minecraft/world/entity/animal/Chicken/ ()V net/minecraft/world/entity/animal/Chicken/ ()V +MD: net/minecraft/world/entity/animal/Chicken/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V net/minecraft/world/entity/animal/Chicken/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V +MD: net/minecraft/world/entity/animal/Chicken/m_142039_ ()Z net/minecraft/world/entity/animal/Chicken/isFlapping ()Z +MD: net/minecraft/world/entity/animal/Chicken/m_142043_ ()V net/minecraft/world/entity/animal/Chicken/onFlap ()V +MD: net/minecraft/world/entity/animal/Chicken/m_142606_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/AgeableMob;)Lnet/minecraft/world/entity/AgeableMob; net/minecraft/world/entity/animal/Chicken/getBreedOffspring (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/AgeableMob;)Lnet/minecraft/world/entity/AgeableMob; +MD: net/minecraft/world/entity/animal/Chicken/m_142606_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/AgeableMob;)Lnet/minecraft/world/entity/animal/Chicken; net/minecraft/world/entity/animal/Chicken/getBreedOffspring (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/AgeableMob;)Lnet/minecraft/world/entity/animal/Chicken; +MD: net/minecraft/world/entity/animal/Chicken/m_19956_ (Lnet/minecraft/world/entity/Entity;Lnet/minecraft/world/entity/Entity$MoveFunction;)V net/minecraft/world/entity/animal/Chicken/positionRider (Lnet/minecraft/world/entity/Entity;Lnet/minecraft/world/entity/Entity$MoveFunction;)V +MD: net/minecraft/world/entity/animal/Chicken/m_213860_ ()I net/minecraft/world/entity/animal/Chicken/getExperienceReward ()I +MD: net/minecraft/world/entity/animal/Chicken/m_28263_ ()Lnet/minecraft/world/entity/ai/attributes/AttributeSupplier$Builder; net/minecraft/world/entity/animal/Chicken/createAttributes ()Lnet/minecraft/world/entity/ai/attributes/AttributeSupplier$Builder; +MD: net/minecraft/world/entity/animal/Chicken/m_28264_ ()Z net/minecraft/world/entity/animal/Chicken/isChickenJockey ()Z +MD: net/minecraft/world/entity/animal/Chicken/m_28273_ (Z)V net/minecraft/world/entity/animal/Chicken/setChickenJockey (Z)V +MD: net/minecraft/world/entity/animal/Chicken/m_5592_ ()Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/animal/Chicken/getDeathSound ()Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/animal/Chicken/m_6431_ (Lnet/minecraft/world/entity/Pose;Lnet/minecraft/world/entity/EntityDimensions;)F net/minecraft/world/entity/animal/Chicken/getStandingEyeHeight (Lnet/minecraft/world/entity/Pose;Lnet/minecraft/world/entity/EntityDimensions;)F +MD: net/minecraft/world/entity/animal/Chicken/m_6785_ (D)Z net/minecraft/world/entity/animal/Chicken/removeWhenFarAway (D)Z +MD: net/minecraft/world/entity/animal/Chicken/m_6898_ (Lnet/minecraft/world/item/ItemStack;)Z net/minecraft/world/entity/animal/Chicken/isFood (Lnet/minecraft/world/item/ItemStack;)Z +MD: net/minecraft/world/entity/animal/Chicken/m_7355_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V net/minecraft/world/entity/animal/Chicken/playStepSound (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V +MD: net/minecraft/world/entity/animal/Chicken/m_7378_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/entity/animal/Chicken/readAdditionalSaveData (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/entity/animal/Chicken/m_7380_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/entity/animal/Chicken/addAdditionalSaveData (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/entity/animal/Chicken/m_7515_ ()Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/animal/Chicken/getAmbientSound ()Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/animal/Chicken/m_7975_ (Lnet/minecraft/world/damagesource/DamageSource;)Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/animal/Chicken/getHurtSound (Lnet/minecraft/world/damagesource/DamageSource;)Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/animal/Chicken/m_8099_ ()V net/minecraft/world/entity/animal/Chicken/registerGoals ()V +MD: net/minecraft/world/entity/animal/Chicken/m_8107_ ()V net/minecraft/world/entity/animal/Chicken/aiStep ()V +MD: net/minecraft/world/entity/animal/Cod/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V net/minecraft/world/entity/animal/Cod/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V +MD: net/minecraft/world/entity/animal/Cod/m_28282_ ()Lnet/minecraft/world/item/ItemStack; net/minecraft/world/entity/animal/Cod/getBucketItemStack ()Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/entity/animal/Cod/m_5592_ ()Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/animal/Cod/getDeathSound ()Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/animal/Cod/m_5699_ ()Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/animal/Cod/getFlopSound ()Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/animal/Cod/m_7515_ ()Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/animal/Cod/getAmbientSound ()Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/animal/Cod/m_7975_ (Lnet/minecraft/world/damagesource/DamageSource;)Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/animal/Cod/getHurtSound (Lnet/minecraft/world/damagesource/DamageSource;)Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/animal/Cow/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V net/minecraft/world/entity/animal/Cow/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V +MD: net/minecraft/world/entity/animal/Cow/m_142606_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/AgeableMob;)Lnet/minecraft/world/entity/animal/Cow; net/minecraft/world/entity/animal/Cow/getBreedOffspring (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/AgeableMob;)Lnet/minecraft/world/entity/animal/Cow; +MD: net/minecraft/world/entity/animal/Cow/m_142606_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/AgeableMob;)Lnet/minecraft/world/entity/AgeableMob; net/minecraft/world/entity/animal/Cow/getBreedOffspring (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/AgeableMob;)Lnet/minecraft/world/entity/AgeableMob; +MD: net/minecraft/world/entity/animal/Cow/m_28307_ ()Lnet/minecraft/world/entity/ai/attributes/AttributeSupplier$Builder; net/minecraft/world/entity/animal/Cow/createAttributes ()Lnet/minecraft/world/entity/ai/attributes/AttributeSupplier$Builder; +MD: net/minecraft/world/entity/animal/Cow/m_5592_ ()Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/animal/Cow/getDeathSound ()Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/animal/Cow/m_6071_ (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;)Lnet/minecraft/world/InteractionResult; net/minecraft/world/entity/animal/Cow/mobInteract (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;)Lnet/minecraft/world/InteractionResult; +MD: net/minecraft/world/entity/animal/Cow/m_6121_ ()F net/minecraft/world/entity/animal/Cow/getSoundVolume ()F +MD: net/minecraft/world/entity/animal/Cow/m_6431_ (Lnet/minecraft/world/entity/Pose;Lnet/minecraft/world/entity/EntityDimensions;)F net/minecraft/world/entity/animal/Cow/getStandingEyeHeight (Lnet/minecraft/world/entity/Pose;Lnet/minecraft/world/entity/EntityDimensions;)F +MD: net/minecraft/world/entity/animal/Cow/m_7355_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V net/minecraft/world/entity/animal/Cow/playStepSound (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V +MD: net/minecraft/world/entity/animal/Cow/m_7515_ ()Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/animal/Cow/getAmbientSound ()Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/animal/Cow/m_7975_ (Lnet/minecraft/world/damagesource/DamageSource;)Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/animal/Cow/getHurtSound (Lnet/minecraft/world/damagesource/DamageSource;)Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/animal/Cow/m_8099_ ()V net/minecraft/world/entity/animal/Cow/registerGoals ()V +MD: net/minecraft/world/entity/animal/Dolphin/ ()V net/minecraft/world/entity/animal/Dolphin/ ()V +MD: net/minecraft/world/entity/animal/Dolphin/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V net/minecraft/world/entity/animal/Dolphin/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V +MD: net/minecraft/world/entity/animal/Dolphin/m_218164_ (Lnet/minecraft/world/entity/animal/Dolphin;)Lnet/minecraft/util/RandomSource; net/minecraft/world/entity/animal/Dolphin/access$000 (Lnet/minecraft/world/entity/animal/Dolphin;)Lnet/minecraft/util/RandomSource; +MD: net/minecraft/world/entity/animal/Dolphin/m_218166_ (Lnet/minecraft/world/entity/animal/Dolphin;)Lnet/minecraft/util/RandomSource; net/minecraft/world/entity/animal/Dolphin/access$100 (Lnet/minecraft/world/entity/animal/Dolphin;)Lnet/minecraft/util/RandomSource; +MD: net/minecraft/world/entity/animal/Dolphin/m_218168_ (Lnet/minecraft/world/entity/animal/Dolphin;)Lnet/minecraft/util/RandomSource; net/minecraft/world/entity/animal/Dolphin/access$200 (Lnet/minecraft/world/entity/animal/Dolphin;)Lnet/minecraft/util/RandomSource; +MD: net/minecraft/world/entity/animal/Dolphin/m_28337_ (Lnet/minecraft/core/particles/ParticleOptions;)V net/minecraft/world/entity/animal/Dolphin/addParticlesAroundSelf (Lnet/minecraft/core/particles/ParticleOptions;)V +MD: net/minecraft/world/entity/animal/Dolphin/m_28343_ (I)V net/minecraft/world/entity/animal/Dolphin/setMoisntessLevel (I)V +MD: net/minecraft/world/entity/animal/Dolphin/m_28377_ ()Z net/minecraft/world/entity/animal/Dolphin/gotFish ()Z +MD: net/minecraft/world/entity/animal/Dolphin/m_28378_ ()I net/minecraft/world/entity/animal/Dolphin/getMoistnessLevel ()I +MD: net/minecraft/world/entity/animal/Dolphin/m_28379_ ()Lnet/minecraft/world/entity/ai/attributes/AttributeSupplier$Builder; net/minecraft/world/entity/animal/Dolphin/createAttributes ()Lnet/minecraft/world/entity/ai/attributes/AttributeSupplier$Builder; +MD: net/minecraft/world/entity/animal/Dolphin/m_28380_ ()Z net/minecraft/world/entity/animal/Dolphin/closeToNextPos ()Z +MD: net/minecraft/world/entity/animal/Dolphin/m_28384_ (Lnet/minecraft/core/BlockPos;)V net/minecraft/world/entity/animal/Dolphin/setTreasurePos (Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/world/entity/animal/Dolphin/m_28387_ ()Lnet/minecraft/core/BlockPos; net/minecraft/world/entity/animal/Dolphin/getTreasurePos ()Lnet/minecraft/core/BlockPos; +MD: net/minecraft/world/entity/animal/Dolphin/m_28393_ (Z)V net/minecraft/world/entity/animal/Dolphin/setGotFish (Z)V +MD: net/minecraft/world/entity/animal/Dolphin/m_289129_ (Lnet/minecraft/world/entity/item/ItemEntity;)Z net/minecraft/world/entity/animal/Dolphin/lambda$static$0 (Lnet/minecraft/world/entity/item/ItemEntity;)Z +MD: net/minecraft/world/entity/animal/Dolphin/m_5501_ ()Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/animal/Dolphin/getSwimSound ()Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/animal/Dolphin/m_5509_ ()Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/animal/Dolphin/getSwimSplashSound ()Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/animal/Dolphin/m_5592_ ()Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/animal/Dolphin/getDeathSound ()Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/animal/Dolphin/m_6037_ (Lnet/minecraft/world/level/Level;)Lnet/minecraft/world/entity/ai/navigation/PathNavigation; net/minecraft/world/entity/animal/Dolphin/createNavigation (Lnet/minecraft/world/level/Level;)Lnet/minecraft/world/entity/ai/navigation/PathNavigation; +MD: net/minecraft/world/entity/animal/Dolphin/m_6040_ ()Z net/minecraft/world/entity/animal/Dolphin/canBreatheUnderwater ()Z +MD: net/minecraft/world/entity/animal/Dolphin/m_6062_ ()I net/minecraft/world/entity/animal/Dolphin/getMaxAirSupply ()I +MD: net/minecraft/world/entity/animal/Dolphin/m_6071_ (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;)Lnet/minecraft/world/InteractionResult; net/minecraft/world/entity/animal/Dolphin/mobInteract (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;)Lnet/minecraft/world/InteractionResult; +MD: net/minecraft/world/entity/animal/Dolphin/m_6229_ (I)V net/minecraft/world/entity/animal/Dolphin/handleAirSupply (I)V +MD: net/minecraft/world/entity/animal/Dolphin/m_6431_ (Lnet/minecraft/world/entity/Pose;Lnet/minecraft/world/entity/EntityDimensions;)F net/minecraft/world/entity/animal/Dolphin/getStandingEyeHeight (Lnet/minecraft/world/entity/Pose;Lnet/minecraft/world/entity/EntityDimensions;)F +MD: net/minecraft/world/entity/animal/Dolphin/m_6518_ (Lnet/minecraft/world/level/ServerLevelAccessor;Lnet/minecraft/world/DifficultyInstance;Lnet/minecraft/world/entity/MobSpawnType;Lnet/minecraft/world/entity/SpawnGroupData;Lnet/minecraft/nbt/CompoundTag;)Lnet/minecraft/world/entity/SpawnGroupData; net/minecraft/world/entity/animal/Dolphin/finalizeSpawn (Lnet/minecraft/world/level/ServerLevelAccessor;Lnet/minecraft/world/DifficultyInstance;Lnet/minecraft/world/entity/MobSpawnType;Lnet/minecraft/world/entity/SpawnGroupData;Lnet/minecraft/nbt/CompoundTag;)Lnet/minecraft/world/entity/SpawnGroupData; +MD: net/minecraft/world/entity/animal/Dolphin/m_6573_ (Lnet/minecraft/world/entity/player/Player;)Z net/minecraft/world/entity/animal/Dolphin/canBeLeashed (Lnet/minecraft/world/entity/player/Player;)Z +MD: net/minecraft/world/entity/animal/Dolphin/m_7023_ (Lnet/minecraft/world/phys/Vec3;)V net/minecraft/world/entity/animal/Dolphin/travel (Lnet/minecraft/world/phys/Vec3;)V +MD: net/minecraft/world/entity/animal/Dolphin/m_7066_ (Lnet/minecraft/world/item/ItemStack;)Z net/minecraft/world/entity/animal/Dolphin/canTakeItem (Lnet/minecraft/world/item/ItemStack;)Z +MD: net/minecraft/world/entity/animal/Dolphin/m_7305_ (I)I net/minecraft/world/entity/animal/Dolphin/increaseAirSupply (I)I +MD: net/minecraft/world/entity/animal/Dolphin/m_7327_ (Lnet/minecraft/world/entity/Entity;)Z net/minecraft/world/entity/animal/Dolphin/doHurtTarget (Lnet/minecraft/world/entity/Entity;)Z +MD: net/minecraft/world/entity/animal/Dolphin/m_7341_ (Lnet/minecraft/world/entity/Entity;)Z net/minecraft/world/entity/animal/Dolphin/canRide (Lnet/minecraft/world/entity/Entity;)Z +MD: net/minecraft/world/entity/animal/Dolphin/m_7378_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/entity/animal/Dolphin/readAdditionalSaveData (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/entity/animal/Dolphin/m_7380_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/entity/animal/Dolphin/addAdditionalSaveData (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/entity/animal/Dolphin/m_7515_ ()Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/animal/Dolphin/getAmbientSound ()Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/animal/Dolphin/m_7581_ (Lnet/minecraft/world/entity/item/ItemEntity;)V net/minecraft/world/entity/animal/Dolphin/pickUpItem (Lnet/minecraft/world/entity/item/ItemEntity;)V +MD: net/minecraft/world/entity/animal/Dolphin/m_7822_ (B)V net/minecraft/world/entity/animal/Dolphin/handleEntityEvent (B)V +MD: net/minecraft/world/entity/animal/Dolphin/m_7975_ (Lnet/minecraft/world/damagesource/DamageSource;)Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/animal/Dolphin/getHurtSound (Lnet/minecraft/world/damagesource/DamageSource;)Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/animal/Dolphin/m_8085_ ()I net/minecraft/world/entity/animal/Dolphin/getMaxHeadYRot ()I +MD: net/minecraft/world/entity/animal/Dolphin/m_8097_ ()V net/minecraft/world/entity/animal/Dolphin/defineSynchedData ()V +MD: net/minecraft/world/entity/animal/Dolphin/m_8099_ ()V net/minecraft/world/entity/animal/Dolphin/registerGoals ()V +MD: net/minecraft/world/entity/animal/Dolphin/m_8119_ ()V net/minecraft/world/entity/animal/Dolphin/tick ()V +MD: net/minecraft/world/entity/animal/Dolphin/m_8132_ ()I net/minecraft/world/entity/animal/Dolphin/getMaxHeadXRot ()I +MD: net/minecraft/world/entity/animal/Dolphin$DolphinSwimToTreasureGoal/ (Lnet/minecraft/world/entity/animal/Dolphin;)V net/minecraft/world/entity/animal/Dolphin$DolphinSwimToTreasureGoal/ (Lnet/minecraft/world/entity/animal/Dolphin;)V +MD: net/minecraft/world/entity/animal/Dolphin$DolphinSwimToTreasureGoal/m_6767_ ()Z net/minecraft/world/entity/animal/Dolphin$DolphinSwimToTreasureGoal/isInterruptable ()Z +MD: net/minecraft/world/entity/animal/Dolphin$DolphinSwimToTreasureGoal/m_8036_ ()Z net/minecraft/world/entity/animal/Dolphin$DolphinSwimToTreasureGoal/canUse ()Z +MD: net/minecraft/world/entity/animal/Dolphin$DolphinSwimToTreasureGoal/m_8037_ ()V net/minecraft/world/entity/animal/Dolphin$DolphinSwimToTreasureGoal/tick ()V +MD: net/minecraft/world/entity/animal/Dolphin$DolphinSwimToTreasureGoal/m_8041_ ()V net/minecraft/world/entity/animal/Dolphin$DolphinSwimToTreasureGoal/stop ()V +MD: net/minecraft/world/entity/animal/Dolphin$DolphinSwimToTreasureGoal/m_8045_ ()Z net/minecraft/world/entity/animal/Dolphin$DolphinSwimToTreasureGoal/canContinueToUse ()Z +MD: net/minecraft/world/entity/animal/Dolphin$DolphinSwimToTreasureGoal/m_8056_ ()V net/minecraft/world/entity/animal/Dolphin$DolphinSwimToTreasureGoal/start ()V +MD: net/minecraft/world/entity/animal/Dolphin$DolphinSwimWithPlayerGoal/ (Lnet/minecraft/world/entity/animal/Dolphin;D)V net/minecraft/world/entity/animal/Dolphin$DolphinSwimWithPlayerGoal/ (Lnet/minecraft/world/entity/animal/Dolphin;D)V +MD: net/minecraft/world/entity/animal/Dolphin$DolphinSwimWithPlayerGoal/m_8036_ ()Z net/minecraft/world/entity/animal/Dolphin$DolphinSwimWithPlayerGoal/canUse ()Z +MD: net/minecraft/world/entity/animal/Dolphin$DolphinSwimWithPlayerGoal/m_8037_ ()V net/minecraft/world/entity/animal/Dolphin$DolphinSwimWithPlayerGoal/tick ()V +MD: net/minecraft/world/entity/animal/Dolphin$DolphinSwimWithPlayerGoal/m_8041_ ()V net/minecraft/world/entity/animal/Dolphin$DolphinSwimWithPlayerGoal/stop ()V +MD: net/minecraft/world/entity/animal/Dolphin$DolphinSwimWithPlayerGoal/m_8045_ ()Z net/minecraft/world/entity/animal/Dolphin$DolphinSwimWithPlayerGoal/canContinueToUse ()Z +MD: net/minecraft/world/entity/animal/Dolphin$DolphinSwimWithPlayerGoal/m_8056_ ()V net/minecraft/world/entity/animal/Dolphin$DolphinSwimWithPlayerGoal/start ()V +MD: net/minecraft/world/entity/animal/Dolphin$PlayWithItemsGoal/ (Lnet/minecraft/world/entity/animal/Dolphin;)V net/minecraft/world/entity/animal/Dolphin$PlayWithItemsGoal/ (Lnet/minecraft/world/entity/animal/Dolphin;)V +MD: net/minecraft/world/entity/animal/Dolphin$PlayWithItemsGoal/m_28428_ (Lnet/minecraft/world/item/ItemStack;)V net/minecraft/world/entity/animal/Dolphin$PlayWithItemsGoal/drop (Lnet/minecraft/world/item/ItemStack;)V +MD: net/minecraft/world/entity/animal/Dolphin$PlayWithItemsGoal/m_8036_ ()Z net/minecraft/world/entity/animal/Dolphin$PlayWithItemsGoal/canUse ()Z +MD: net/minecraft/world/entity/animal/Dolphin$PlayWithItemsGoal/m_8037_ ()V net/minecraft/world/entity/animal/Dolphin$PlayWithItemsGoal/tick ()V +MD: net/minecraft/world/entity/animal/Dolphin$PlayWithItemsGoal/m_8041_ ()V net/minecraft/world/entity/animal/Dolphin$PlayWithItemsGoal/stop ()V +MD: net/minecraft/world/entity/animal/Dolphin$PlayWithItemsGoal/m_8056_ ()V net/minecraft/world/entity/animal/Dolphin$PlayWithItemsGoal/start ()V +MD: net/minecraft/world/entity/animal/FlyingAnimal/m_29443_ ()Z net/minecraft/world/entity/animal/FlyingAnimal/isFlying ()Z +MD: net/minecraft/world/entity/animal/Fox/ ()V net/minecraft/world/entity/animal/Fox/ ()V +MD: net/minecraft/world/entity/animal/Fox/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V net/minecraft/world/entity/animal/Fox/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V +MD: net/minecraft/world/entity/animal/Fox/m_142075_ (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;Lnet/minecraft/world/item/ItemStack;)V net/minecraft/world/entity/animal/Fox/usePlayerItem (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;Lnet/minecraft/world/item/ItemStack;)V +MD: net/minecraft/world/entity/animal/Fox/m_142606_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/AgeableMob;)Lnet/minecraft/world/entity/AgeableMob; net/minecraft/world/entity/animal/Fox/getBreedOffspring (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/AgeableMob;)Lnet/minecraft/world/entity/AgeableMob; +MD: net/minecraft/world/entity/animal/Fox/m_142606_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/AgeableMob;)Lnet/minecraft/world/entity/animal/Fox; net/minecraft/world/entity/animal/Fox/getBreedOffspring (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/AgeableMob;)Lnet/minecraft/world/entity/animal/Fox; +MD: net/minecraft/world/entity/animal/Fox/m_148924_ ()Z net/minecraft/world/entity/animal/Fox/isJumping ()Z +MD: net/minecraft/world/entity/animal/Fox/m_213945_ (Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/DifficultyInstance;)V net/minecraft/world/entity/animal/Fox/populateDefaultEquipmentSlots (Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/DifficultyInstance;)V +MD: net/minecraft/world/entity/animal/Fox/m_218173_ (Lnet/minecraft/world/entity/animal/Fox;)Lnet/minecraft/util/RandomSource; net/minecraft/world/entity/animal/Fox/access$100 (Lnet/minecraft/world/entity/animal/Fox;)Lnet/minecraft/util/RandomSource; +MD: net/minecraft/world/entity/animal/Fox/m_218175_ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/world/entity/MobSpawnType;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)Z net/minecraft/world/entity/animal/Fox/checkFoxSpawnRules (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/world/entity/MobSpawnType;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)Z +MD: net/minecraft/world/entity/animal/Fox/m_218181_ (Lnet/minecraft/world/entity/animal/Fox;)Lnet/minecraft/util/RandomSource; net/minecraft/world/entity/animal/Fox/access$200 (Lnet/minecraft/world/entity/animal/Fox;)Lnet/minecraft/util/RandomSource; +MD: net/minecraft/world/entity/animal/Fox/m_218183_ (Lnet/minecraft/world/entity/animal/Fox;)Lnet/minecraft/util/RandomSource; net/minecraft/world/entity/animal/Fox/access$300 (Lnet/minecraft/world/entity/animal/Fox;)Lnet/minecraft/util/RandomSource; +MD: net/minecraft/world/entity/animal/Fox/m_28462_ (Lnet/minecraft/world/entity/Entity;)Z net/minecraft/world/entity/animal/Fox/lambda$static$3 (Lnet/minecraft/world/entity/Entity;)Z +MD: net/minecraft/world/entity/animal/Fox/m_28464_ (Ljava/lang/Object;)V net/minecraft/world/entity/animal/Fox/setVariant (Ljava/lang/Object;)V +MD: net/minecraft/world/entity/animal/Fox/m_28464_ (Lnet/minecraft/world/entity/animal/Fox$Type;)V net/minecraft/world/entity/animal/Fox/setVariant (Lnet/minecraft/world/entity/animal/Fox$Type;)V +MD: net/minecraft/world/entity/animal/Fox/m_28466_ (Lnet/minecraft/world/entity/animal/Fox;)Z net/minecraft/world/entity/animal/Fox/access$000 (Lnet/minecraft/world/entity/animal/Fox;)Z +MD: net/minecraft/world/entity/animal/Fox/m_28471_ (Lnet/minecraft/world/entity/animal/Fox;Lnet/minecraft/world/entity/LivingEntity;)Z net/minecraft/world/entity/animal/Fox/isPathClear (Lnet/minecraft/world/entity/animal/Fox;Lnet/minecraft/world/entity/LivingEntity;)Z +MD: net/minecraft/world/entity/animal/Fox/m_28497_ (Lnet/minecraft/world/entity/Entity;)Z net/minecraft/world/entity/animal/Fox/lambda$static$2 (Lnet/minecraft/world/entity/Entity;)Z +MD: net/minecraft/world/entity/animal/Fox/m_28515_ (Ljava/util/UUID;)V net/minecraft/world/entity/animal/Fox/addTrustedUUID (Ljava/util/UUID;)V +MD: net/minecraft/world/entity/animal/Fox/m_28529_ (Ljava/util/UUID;)Z net/minecraft/world/entity/animal/Fox/trusts (Ljava/util/UUID;)Z +MD: net/minecraft/world/entity/animal/Fox/m_28532_ (IZ)V net/minecraft/world/entity/animal/Fox/setFlag (IZ)V +MD: net/minecraft/world/entity/animal/Fox/m_28553_ ()Lnet/minecraft/world/entity/ai/attributes/AttributeSupplier$Builder; net/minecraft/world/entity/animal/Fox/createAttributes ()Lnet/minecraft/world/entity/ai/attributes/AttributeSupplier$Builder; +MD: net/minecraft/world/entity/animal/Fox/m_28554_ ()Ljava/lang/Object; net/minecraft/world/entity/animal/Fox/getVariant ()Ljava/lang/Object; +MD: net/minecraft/world/entity/animal/Fox/m_28554_ ()Lnet/minecraft/world/entity/animal/Fox$Type; net/minecraft/world/entity/animal/Fox/getVariant ()Lnet/minecraft/world/entity/animal/Fox$Type; +MD: net/minecraft/world/entity/animal/Fox/m_28555_ ()Z net/minecraft/world/entity/animal/Fox/isSitting ()Z +MD: net/minecraft/world/entity/animal/Fox/m_28556_ ()Z net/minecraft/world/entity/animal/Fox/isFaceplanted ()Z +MD: net/minecraft/world/entity/animal/Fox/m_28557_ ()Z net/minecraft/world/entity/animal/Fox/isPouncing ()Z +MD: net/minecraft/world/entity/animal/Fox/m_28558_ ()Z net/minecraft/world/entity/animal/Fox/isFullyCrouched ()Z +MD: net/minecraft/world/entity/animal/Fox/m_28559_ ()Z net/minecraft/world/entity/animal/Fox/isInterested ()Z +MD: net/minecraft/world/entity/animal/Fox/m_28562_ ()V net/minecraft/world/entity/animal/Fox/setTargetGoals ()V +MD: net/minecraft/world/entity/animal/Fox/m_28566_ ()Ljava/util/List; net/minecraft/world/entity/animal/Fox/getTrustedUUIDs ()Ljava/util/List; +MD: net/minecraft/world/entity/animal/Fox/m_28567_ ()Z net/minecraft/world/entity/animal/Fox/isDefending ()Z +MD: net/minecraft/world/entity/animal/Fox/m_28568_ ()V net/minecraft/world/entity/animal/Fox/wakeUp ()V +MD: net/minecraft/world/entity/animal/Fox/m_28569_ ()V net/minecraft/world/entity/animal/Fox/clearStates ()V +MD: net/minecraft/world/entity/animal/Fox/m_28570_ ()Z net/minecraft/world/entity/animal/Fox/canMove ()Z +MD: net/minecraft/world/entity/animal/Fox/m_28584_ (Lnet/minecraft/world/entity/LivingEntity;)Z net/minecraft/world/entity/animal/Fox/lambda$registerGoals$8 (Lnet/minecraft/world/entity/LivingEntity;)Z +MD: net/minecraft/world/entity/animal/Fox/m_28597_ (Lnet/minecraft/world/item/ItemStack;)Z net/minecraft/world/entity/animal/Fox/canEat (Lnet/minecraft/world/item/ItemStack;)Z +MD: net/minecraft/world/entity/animal/Fox/m_28599_ (Lnet/minecraft/world/entity/LivingEntity;)Z net/minecraft/world/entity/animal/Fox/lambda$registerGoals$5 (Lnet/minecraft/world/entity/LivingEntity;)Z +MD: net/minecraft/world/entity/animal/Fox/m_28601_ (Lnet/minecraft/world/item/ItemStack;)V net/minecraft/world/entity/animal/Fox/spitOutItem (Lnet/minecraft/world/item/ItemStack;)V +MD: net/minecraft/world/entity/animal/Fox/m_28603_ (Lnet/minecraft/world/entity/LivingEntity;)Z net/minecraft/world/entity/animal/Fox/lambda$registerGoals$4 (Lnet/minecraft/world/entity/LivingEntity;)Z +MD: net/minecraft/world/entity/animal/Fox/m_28605_ (Lnet/minecraft/world/item/ItemStack;)V net/minecraft/world/entity/animal/Fox/dropItemStack (Lnet/minecraft/world/item/ItemStack;)V +MD: net/minecraft/world/entity/animal/Fox/m_28608_ (I)Z net/minecraft/world/entity/animal/Fox/getFlag (I)Z +MD: net/minecraft/world/entity/animal/Fox/m_28610_ (Z)V net/minecraft/world/entity/animal/Fox/setSitting (Z)V +MD: net/minecraft/world/entity/animal/Fox/m_28612_ (Z)V net/minecraft/world/entity/animal/Fox/setIsPouncing (Z)V +MD: net/minecraft/world/entity/animal/Fox/m_28614_ (Z)V net/minecraft/world/entity/animal/Fox/setIsCrouching (Z)V +MD: net/minecraft/world/entity/animal/Fox/m_28616_ (Z)V net/minecraft/world/entity/animal/Fox/setIsInterested (Z)V +MD: net/minecraft/world/entity/animal/Fox/m_28618_ (Z)V net/minecraft/world/entity/animal/Fox/setFaceplanted (Z)V +MD: net/minecraft/world/entity/animal/Fox/m_28620_ (F)F net/minecraft/world/entity/animal/Fox/getHeadRollAngle (F)F +MD: net/minecraft/world/entity/animal/Fox/m_28622_ (Z)V net/minecraft/world/entity/animal/Fox/setDefending (Z)V +MD: net/minecraft/world/entity/animal/Fox/m_28624_ (F)F net/minecraft/world/entity/animal/Fox/getCrouchAmount (F)F +MD: net/minecraft/world/entity/animal/Fox/m_28626_ (Z)V net/minecraft/world/entity/animal/Fox/setSleeping (Z)V +MD: net/minecraft/world/entity/animal/Fox/m_287086_ (Lnet/minecraft/world/entity/Entity;)Z net/minecraft/world/entity/animal/Fox/lambda$static$1 (Lnet/minecraft/world/entity/Entity;)Z +MD: net/minecraft/world/entity/animal/Fox/m_289130_ (Lnet/minecraft/world/entity/LivingEntity;)Z net/minecraft/world/entity/animal/Fox/lambda$registerGoals$6 (Lnet/minecraft/world/entity/LivingEntity;)Z +MD: net/minecraft/world/entity/animal/Fox/m_289131_ (Lnet/minecraft/world/entity/item/ItemEntity;)Z net/minecraft/world/entity/animal/Fox/lambda$static$0 (Lnet/minecraft/world/entity/item/ItemEntity;)Z +MD: net/minecraft/world/entity/animal/Fox/m_289132_ (Lnet/minecraft/world/entity/LivingEntity;)Z net/minecraft/world/entity/animal/Fox/lambda$registerGoals$7 (Lnet/minecraft/world/entity/LivingEntity;)Z +MD: net/minecraft/world/entity/animal/Fox/m_289133_ (Lnet/minecraft/world/entity/LivingEntity;)Z net/minecraft/world/entity/animal/Fox/lambda$registerGoals$9 (Lnet/minecraft/world/entity/LivingEntity;)Z +MD: net/minecraft/world/entity/animal/Fox/m_5502_ (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/entity/Mob;)V net/minecraft/world/entity/animal/Fox/onOffspringSpawnedFromEgg (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/entity/Mob;)V +MD: net/minecraft/world/entity/animal/Fox/m_5592_ ()Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/animal/Fox/getDeathSound ()Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/animal/Fox/m_5639_ (FF)I net/minecraft/world/entity/animal/Fox/calculateFallDamage (FF)I +MD: net/minecraft/world/entity/animal/Fox/m_5803_ ()Z net/minecraft/world/entity/animal/Fox/isSleeping ()Z +MD: net/minecraft/world/entity/animal/Fox/m_6047_ ()Z net/minecraft/world/entity/animal/Fox/isCrouching ()Z +MD: net/minecraft/world/entity/animal/Fox/m_6107_ ()Z net/minecraft/world/entity/animal/Fox/isImmobile ()Z +MD: net/minecraft/world/entity/animal/Fox/m_6431_ (Lnet/minecraft/world/entity/Pose;Lnet/minecraft/world/entity/EntityDimensions;)F net/minecraft/world/entity/animal/Fox/getStandingEyeHeight (Lnet/minecraft/world/entity/Pose;Lnet/minecraft/world/entity/EntityDimensions;)F +MD: net/minecraft/world/entity/animal/Fox/m_6518_ (Lnet/minecraft/world/level/ServerLevelAccessor;Lnet/minecraft/world/DifficultyInstance;Lnet/minecraft/world/entity/MobSpawnType;Lnet/minecraft/world/entity/SpawnGroupData;Lnet/minecraft/nbt/CompoundTag;)Lnet/minecraft/world/entity/SpawnGroupData; net/minecraft/world/entity/animal/Fox/finalizeSpawn (Lnet/minecraft/world/level/ServerLevelAccessor;Lnet/minecraft/world/DifficultyInstance;Lnet/minecraft/world/entity/MobSpawnType;Lnet/minecraft/world/entity/SpawnGroupData;Lnet/minecraft/nbt/CompoundTag;)Lnet/minecraft/world/entity/SpawnGroupData; +MD: net/minecraft/world/entity/animal/Fox/m_6668_ (Lnet/minecraft/world/damagesource/DamageSource;)V net/minecraft/world/entity/animal/Fox/dropAllDeathLoot (Lnet/minecraft/world/damagesource/DamageSource;)V +MD: net/minecraft/world/entity/animal/Fox/m_6710_ (Lnet/minecraft/world/entity/LivingEntity;)V net/minecraft/world/entity/animal/Fox/setTarget (Lnet/minecraft/world/entity/LivingEntity;)V +MD: net/minecraft/world/entity/animal/Fox/m_6898_ (Lnet/minecraft/world/item/ItemStack;)Z net/minecraft/world/entity/animal/Fox/isFood (Lnet/minecraft/world/item/ItemStack;)Z +MD: net/minecraft/world/entity/animal/Fox/m_7066_ (Lnet/minecraft/world/item/ItemStack;)Z net/minecraft/world/entity/animal/Fox/canTakeItem (Lnet/minecraft/world/item/ItemStack;)Z +MD: net/minecraft/world/entity/animal/Fox/m_7252_ (Lnet/minecraft/world/item/ItemStack;)Z net/minecraft/world/entity/animal/Fox/canHoldItem (Lnet/minecraft/world/item/ItemStack;)Z +MD: net/minecraft/world/entity/animal/Fox/m_7378_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/entity/animal/Fox/readAdditionalSaveData (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/entity/animal/Fox/m_7380_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/entity/animal/Fox/addAdditionalSaveData (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/entity/animal/Fox/m_7515_ ()Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/animal/Fox/getAmbientSound ()Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/animal/Fox/m_7581_ (Lnet/minecraft/world/entity/item/ItemEntity;)V net/minecraft/world/entity/animal/Fox/pickUpItem (Lnet/minecraft/world/entity/item/ItemEntity;)V +MD: net/minecraft/world/entity/animal/Fox/m_7822_ (B)V net/minecraft/world/entity/animal/Fox/handleEntityEvent (B)V +MD: net/minecraft/world/entity/animal/Fox/m_7866_ (Lnet/minecraft/world/item/ItemStack;)Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/animal/Fox/getEatingSound (Lnet/minecraft/world/item/ItemStack;)Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/animal/Fox/m_7939_ ()Lnet/minecraft/world/phys/Vec3; net/minecraft/world/entity/animal/Fox/getLeashOffset ()Lnet/minecraft/world/phys/Vec3; +MD: net/minecraft/world/entity/animal/Fox/m_7975_ (Lnet/minecraft/world/damagesource/DamageSource;)Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/animal/Fox/getHurtSound (Lnet/minecraft/world/damagesource/DamageSource;)Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/animal/Fox/m_8032_ ()V net/minecraft/world/entity/animal/Fox/playAmbientSound ()V +MD: net/minecraft/world/entity/animal/Fox/m_8097_ ()V net/minecraft/world/entity/animal/Fox/defineSynchedData ()V +MD: net/minecraft/world/entity/animal/Fox/m_8099_ ()V net/minecraft/world/entity/animal/Fox/registerGoals ()V +MD: net/minecraft/world/entity/animal/Fox/m_8107_ ()V net/minecraft/world/entity/animal/Fox/aiStep ()V +MD: net/minecraft/world/entity/animal/Fox/m_8119_ ()V net/minecraft/world/entity/animal/Fox/tick ()V +MD: net/minecraft/world/entity/animal/Fox$DefendTrustedTargetGoal/ (Lnet/minecraft/world/entity/animal/Fox;Ljava/lang/Class;ZZLjava/util/function/Predicate;)V net/minecraft/world/entity/animal/Fox$DefendTrustedTargetGoal/ (Lnet/minecraft/world/entity/animal/Fox;Ljava/lang/Class;ZZLjava/util/function/Predicate;)V +MD: net/minecraft/world/entity/animal/Fox$DefendTrustedTargetGoal/m_8036_ ()Z net/minecraft/world/entity/animal/Fox$DefendTrustedTargetGoal/canUse ()Z +MD: net/minecraft/world/entity/animal/Fox$DefendTrustedTargetGoal/m_8056_ ()V net/minecraft/world/entity/animal/Fox$DefendTrustedTargetGoal/start ()V +MD: net/minecraft/world/entity/animal/Fox$FaceplantGoal/ (Lnet/minecraft/world/entity/animal/Fox;)V net/minecraft/world/entity/animal/Fox$FaceplantGoal/ (Lnet/minecraft/world/entity/animal/Fox;)V +MD: net/minecraft/world/entity/animal/Fox$FaceplantGoal/m_8036_ ()Z net/minecraft/world/entity/animal/Fox$FaceplantGoal/canUse ()Z +MD: net/minecraft/world/entity/animal/Fox$FaceplantGoal/m_8037_ ()V net/minecraft/world/entity/animal/Fox$FaceplantGoal/tick ()V +MD: net/minecraft/world/entity/animal/Fox$FaceplantGoal/m_8041_ ()V net/minecraft/world/entity/animal/Fox$FaceplantGoal/stop ()V +MD: net/minecraft/world/entity/animal/Fox$FaceplantGoal/m_8045_ ()Z net/minecraft/world/entity/animal/Fox$FaceplantGoal/canContinueToUse ()Z +MD: net/minecraft/world/entity/animal/Fox$FaceplantGoal/m_8056_ ()V net/minecraft/world/entity/animal/Fox$FaceplantGoal/start ()V +MD: net/minecraft/world/entity/animal/Fox$FoxAlertableEntitiesSelector/ (Lnet/minecraft/world/entity/animal/Fox;)V net/minecraft/world/entity/animal/Fox$FoxAlertableEntitiesSelector/ (Lnet/minecraft/world/entity/animal/Fox;)V +MD: net/minecraft/world/entity/animal/Fox$FoxAlertableEntitiesSelector/test (Ljava/lang/Object;)Z net/minecraft/world/entity/animal/Fox$FoxAlertableEntitiesSelector/test (Ljava/lang/Object;)Z +MD: net/minecraft/world/entity/animal/Fox$FoxAlertableEntitiesSelector/test (Lnet/minecraft/world/entity/LivingEntity;)Z net/minecraft/world/entity/animal/Fox$FoxAlertableEntitiesSelector/test (Lnet/minecraft/world/entity/LivingEntity;)Z +MD: net/minecraft/world/entity/animal/Fox$FoxBehaviorGoal/ (Lnet/minecraft/world/entity/animal/Fox;)V net/minecraft/world/entity/animal/Fox$FoxBehaviorGoal/ (Lnet/minecraft/world/entity/animal/Fox;)V +MD: net/minecraft/world/entity/animal/Fox$FoxBehaviorGoal/m_28663_ ()Z net/minecraft/world/entity/animal/Fox$FoxBehaviorGoal/hasShelter ()Z +MD: net/minecraft/world/entity/animal/Fox$FoxBehaviorGoal/m_28664_ ()Z net/minecraft/world/entity/animal/Fox$FoxBehaviorGoal/alertable ()Z +MD: net/minecraft/world/entity/animal/Fox$FoxBreedGoal/ (Lnet/minecraft/world/entity/animal/Fox;D)V net/minecraft/world/entity/animal/Fox$FoxBreedGoal/ (Lnet/minecraft/world/entity/animal/Fox;D)V +MD: net/minecraft/world/entity/animal/Fox$FoxBreedGoal/m_8026_ ()V net/minecraft/world/entity/animal/Fox$FoxBreedGoal/breed ()V +MD: net/minecraft/world/entity/animal/Fox$FoxBreedGoal/m_8056_ ()V net/minecraft/world/entity/animal/Fox$FoxBreedGoal/start ()V +MD: net/minecraft/world/entity/animal/Fox$FoxEatBerriesGoal/ (Lnet/minecraft/world/entity/animal/Fox;DII)V net/minecraft/world/entity/animal/Fox$FoxEatBerriesGoal/ (Lnet/minecraft/world/entity/animal/Fox;DII)V +MD: net/minecraft/world/entity/animal/Fox$FoxEatBerriesGoal/m_148926_ (Lnet/minecraft/world/level/block/state/BlockState;)V net/minecraft/world/entity/animal/Fox$FoxEatBerriesGoal/pickGlowBerry (Lnet/minecraft/world/level/block/state/BlockState;)V +MD: net/minecraft/world/entity/animal/Fox$FoxEatBerriesGoal/m_148928_ (Lnet/minecraft/world/level/block/state/BlockState;)V net/minecraft/world/entity/animal/Fox$FoxEatBerriesGoal/pickSweetBerries (Lnet/minecraft/world/level/block/state/BlockState;)V +MD: net/minecraft/world/entity/animal/Fox$FoxEatBerriesGoal/m_28686_ ()V net/minecraft/world/entity/animal/Fox$FoxEatBerriesGoal/onReachedTarget ()V +MD: net/minecraft/world/entity/animal/Fox$FoxEatBerriesGoal/m_6465_ (Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/entity/animal/Fox$FoxEatBerriesGoal/isValidTarget (Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/entity/animal/Fox$FoxEatBerriesGoal/m_8036_ ()Z net/minecraft/world/entity/animal/Fox$FoxEatBerriesGoal/canUse ()Z +MD: net/minecraft/world/entity/animal/Fox$FoxEatBerriesGoal/m_8037_ ()V net/minecraft/world/entity/animal/Fox$FoxEatBerriesGoal/tick ()V +MD: net/minecraft/world/entity/animal/Fox$FoxEatBerriesGoal/m_8052_ ()D net/minecraft/world/entity/animal/Fox$FoxEatBerriesGoal/acceptedDistance ()D +MD: net/minecraft/world/entity/animal/Fox$FoxEatBerriesGoal/m_8056_ ()V net/minecraft/world/entity/animal/Fox$FoxEatBerriesGoal/start ()V +MD: net/minecraft/world/entity/animal/Fox$FoxEatBerriesGoal/m_8064_ ()Z net/minecraft/world/entity/animal/Fox$FoxEatBerriesGoal/shouldRecalculatePath ()Z +MD: net/minecraft/world/entity/animal/Fox$FoxFloatGoal/ (Lnet/minecraft/world/entity/animal/Fox;)V net/minecraft/world/entity/animal/Fox$FoxFloatGoal/ (Lnet/minecraft/world/entity/animal/Fox;)V +MD: net/minecraft/world/entity/animal/Fox$FoxFloatGoal/m_8036_ ()Z net/minecraft/world/entity/animal/Fox$FoxFloatGoal/canUse ()Z +MD: net/minecraft/world/entity/animal/Fox$FoxFloatGoal/m_8056_ ()V net/minecraft/world/entity/animal/Fox$FoxFloatGoal/start ()V +MD: net/minecraft/world/entity/animal/Fox$FoxFollowParentGoal/ (Lnet/minecraft/world/entity/animal/Fox;Lnet/minecraft/world/entity/animal/Fox;D)V net/minecraft/world/entity/animal/Fox$FoxFollowParentGoal/ (Lnet/minecraft/world/entity/animal/Fox;Lnet/minecraft/world/entity/animal/Fox;D)V +MD: net/minecraft/world/entity/animal/Fox$FoxFollowParentGoal/m_8036_ ()Z net/minecraft/world/entity/animal/Fox$FoxFollowParentGoal/canUse ()Z +MD: net/minecraft/world/entity/animal/Fox$FoxFollowParentGoal/m_8045_ ()Z net/minecraft/world/entity/animal/Fox$FoxFollowParentGoal/canContinueToUse ()Z +MD: net/minecraft/world/entity/animal/Fox$FoxFollowParentGoal/m_8056_ ()V net/minecraft/world/entity/animal/Fox$FoxFollowParentGoal/start ()V +MD: net/minecraft/world/entity/animal/Fox$FoxGroupData/ (Lnet/minecraft/world/entity/animal/Fox$Type;)V net/minecraft/world/entity/animal/Fox$FoxGroupData/ (Lnet/minecraft/world/entity/animal/Fox$Type;)V +MD: net/minecraft/world/entity/animal/Fox$FoxLookAtPlayerGoal/ (Lnet/minecraft/world/entity/animal/Fox;Lnet/minecraft/world/entity/Mob;Ljava/lang/Class;F)V net/minecraft/world/entity/animal/Fox$FoxLookAtPlayerGoal/ (Lnet/minecraft/world/entity/animal/Fox;Lnet/minecraft/world/entity/Mob;Ljava/lang/Class;F)V +MD: net/minecraft/world/entity/animal/Fox$FoxLookAtPlayerGoal/m_8036_ ()Z net/minecraft/world/entity/animal/Fox$FoxLookAtPlayerGoal/canUse ()Z +MD: net/minecraft/world/entity/animal/Fox$FoxLookAtPlayerGoal/m_8045_ ()Z net/minecraft/world/entity/animal/Fox$FoxLookAtPlayerGoal/canContinueToUse ()Z +MD: net/minecraft/world/entity/animal/Fox$FoxLookControl/ (Lnet/minecraft/world/entity/animal/Fox;)V net/minecraft/world/entity/animal/Fox$FoxLookControl/ (Lnet/minecraft/world/entity/animal/Fox;)V +MD: net/minecraft/world/entity/animal/Fox$FoxLookControl/m_8106_ ()Z net/minecraft/world/entity/animal/Fox$FoxLookControl/resetXRotOnTick ()Z +MD: net/minecraft/world/entity/animal/Fox$FoxLookControl/m_8128_ ()V net/minecraft/world/entity/animal/Fox$FoxLookControl/tick ()V +MD: net/minecraft/world/entity/animal/Fox$FoxMeleeAttackGoal/ (Lnet/minecraft/world/entity/animal/Fox;DZ)V net/minecraft/world/entity/animal/Fox$FoxMeleeAttackGoal/ (Lnet/minecraft/world/entity/animal/Fox;DZ)V +MD: net/minecraft/world/entity/animal/Fox$FoxMeleeAttackGoal/m_6739_ (Lnet/minecraft/world/entity/LivingEntity;D)V net/minecraft/world/entity/animal/Fox$FoxMeleeAttackGoal/checkAndPerformAttack (Lnet/minecraft/world/entity/LivingEntity;D)V +MD: net/minecraft/world/entity/animal/Fox$FoxMeleeAttackGoal/m_8036_ ()Z net/minecraft/world/entity/animal/Fox$FoxMeleeAttackGoal/canUse ()Z +MD: net/minecraft/world/entity/animal/Fox$FoxMeleeAttackGoal/m_8056_ ()V net/minecraft/world/entity/animal/Fox$FoxMeleeAttackGoal/start ()V +MD: net/minecraft/world/entity/animal/Fox$FoxMoveControl/ (Lnet/minecraft/world/entity/animal/Fox;)V net/minecraft/world/entity/animal/Fox$FoxMoveControl/ (Lnet/minecraft/world/entity/animal/Fox;)V +MD: net/minecraft/world/entity/animal/Fox$FoxMoveControl/m_8126_ ()V net/minecraft/world/entity/animal/Fox$FoxMoveControl/tick ()V +MD: net/minecraft/world/entity/animal/Fox$FoxPanicGoal/ (Lnet/minecraft/world/entity/animal/Fox;D)V net/minecraft/world/entity/animal/Fox$FoxPanicGoal/ (Lnet/minecraft/world/entity/animal/Fox;D)V +MD: net/minecraft/world/entity/animal/Fox$FoxPanicGoal/m_202729_ ()Z net/minecraft/world/entity/animal/Fox$FoxPanicGoal/shouldPanic ()Z +MD: net/minecraft/world/entity/animal/Fox$FoxPounceGoal/ (Lnet/minecraft/world/entity/animal/Fox;)V net/minecraft/world/entity/animal/Fox$FoxPounceGoal/ (Lnet/minecraft/world/entity/animal/Fox;)V +MD: net/minecraft/world/entity/animal/Fox$FoxPounceGoal/m_6767_ ()Z net/minecraft/world/entity/animal/Fox$FoxPounceGoal/isInterruptable ()Z +MD: net/minecraft/world/entity/animal/Fox$FoxPounceGoal/m_8036_ ()Z net/minecraft/world/entity/animal/Fox$FoxPounceGoal/canUse ()Z +MD: net/minecraft/world/entity/animal/Fox$FoxPounceGoal/m_8037_ ()V net/minecraft/world/entity/animal/Fox$FoxPounceGoal/tick ()V +MD: net/minecraft/world/entity/animal/Fox$FoxPounceGoal/m_8041_ ()V net/minecraft/world/entity/animal/Fox$FoxPounceGoal/stop ()V +MD: net/minecraft/world/entity/animal/Fox$FoxPounceGoal/m_8045_ ()Z net/minecraft/world/entity/animal/Fox$FoxPounceGoal/canContinueToUse ()Z +MD: net/minecraft/world/entity/animal/Fox$FoxPounceGoal/m_8056_ ()V net/minecraft/world/entity/animal/Fox$FoxPounceGoal/start ()V +MD: net/minecraft/world/entity/animal/Fox$FoxSearchForItemsGoal/ (Lnet/minecraft/world/entity/animal/Fox;)V net/minecraft/world/entity/animal/Fox$FoxSearchForItemsGoal/ (Lnet/minecraft/world/entity/animal/Fox;)V +MD: net/minecraft/world/entity/animal/Fox$FoxSearchForItemsGoal/m_8036_ ()Z net/minecraft/world/entity/animal/Fox$FoxSearchForItemsGoal/canUse ()Z +MD: net/minecraft/world/entity/animal/Fox$FoxSearchForItemsGoal/m_8037_ ()V net/minecraft/world/entity/animal/Fox$FoxSearchForItemsGoal/tick ()V +MD: net/minecraft/world/entity/animal/Fox$FoxSearchForItemsGoal/m_8056_ ()V net/minecraft/world/entity/animal/Fox$FoxSearchForItemsGoal/start ()V +MD: net/minecraft/world/entity/animal/Fox$FoxStrollThroughVillageGoal/ (Lnet/minecraft/world/entity/animal/Fox;II)V net/minecraft/world/entity/animal/Fox$FoxStrollThroughVillageGoal/ (Lnet/minecraft/world/entity/animal/Fox;II)V +MD: net/minecraft/world/entity/animal/Fox$FoxStrollThroughVillageGoal/m_28759_ ()Z net/minecraft/world/entity/animal/Fox$FoxStrollThroughVillageGoal/canFoxMove ()Z +MD: net/minecraft/world/entity/animal/Fox$FoxStrollThroughVillageGoal/m_8036_ ()Z net/minecraft/world/entity/animal/Fox$FoxStrollThroughVillageGoal/canUse ()Z +MD: net/minecraft/world/entity/animal/Fox$FoxStrollThroughVillageGoal/m_8045_ ()Z net/minecraft/world/entity/animal/Fox$FoxStrollThroughVillageGoal/canContinueToUse ()Z +MD: net/minecraft/world/entity/animal/Fox$FoxStrollThroughVillageGoal/m_8056_ ()V net/minecraft/world/entity/animal/Fox$FoxStrollThroughVillageGoal/start ()V +MD: net/minecraft/world/entity/animal/Fox$PerchAndSearchGoal/ (Lnet/minecraft/world/entity/animal/Fox;)V net/minecraft/world/entity/animal/Fox$PerchAndSearchGoal/ (Lnet/minecraft/world/entity/animal/Fox;)V +MD: net/minecraft/world/entity/animal/Fox$PerchAndSearchGoal/m_28772_ ()V net/minecraft/world/entity/animal/Fox$PerchAndSearchGoal/resetLook ()V +MD: net/minecraft/world/entity/animal/Fox$PerchAndSearchGoal/m_8036_ ()Z net/minecraft/world/entity/animal/Fox$PerchAndSearchGoal/canUse ()Z +MD: net/minecraft/world/entity/animal/Fox$PerchAndSearchGoal/m_8037_ ()V net/minecraft/world/entity/animal/Fox$PerchAndSearchGoal/tick ()V +MD: net/minecraft/world/entity/animal/Fox$PerchAndSearchGoal/m_8041_ ()V net/minecraft/world/entity/animal/Fox$PerchAndSearchGoal/stop ()V +MD: net/minecraft/world/entity/animal/Fox$PerchAndSearchGoal/m_8045_ ()Z net/minecraft/world/entity/animal/Fox$PerchAndSearchGoal/canContinueToUse ()Z +MD: net/minecraft/world/entity/animal/Fox$PerchAndSearchGoal/m_8056_ ()V net/minecraft/world/entity/animal/Fox$PerchAndSearchGoal/start ()V +MD: net/minecraft/world/entity/animal/Fox$SeekShelterGoal/ (Lnet/minecraft/world/entity/animal/Fox;D)V net/minecraft/world/entity/animal/Fox$SeekShelterGoal/ (Lnet/minecraft/world/entity/animal/Fox;D)V +MD: net/minecraft/world/entity/animal/Fox$SeekShelterGoal/m_8036_ ()Z net/minecraft/world/entity/animal/Fox$SeekShelterGoal/canUse ()Z +MD: net/minecraft/world/entity/animal/Fox$SeekShelterGoal/m_8056_ ()V net/minecraft/world/entity/animal/Fox$SeekShelterGoal/start ()V +MD: net/minecraft/world/entity/animal/Fox$SleepGoal/ ()V net/minecraft/world/entity/animal/Fox$SleepGoal/ ()V +MD: net/minecraft/world/entity/animal/Fox$SleepGoal/ (Lnet/minecraft/world/entity/animal/Fox;)V net/minecraft/world/entity/animal/Fox$SleepGoal/ (Lnet/minecraft/world/entity/animal/Fox;)V +MD: net/minecraft/world/entity/animal/Fox$SleepGoal/m_28788_ ()Z net/minecraft/world/entity/animal/Fox$SleepGoal/canSleep ()Z +MD: net/minecraft/world/entity/animal/Fox$SleepGoal/m_8036_ ()Z net/minecraft/world/entity/animal/Fox$SleepGoal/canUse ()Z +MD: net/minecraft/world/entity/animal/Fox$SleepGoal/m_8041_ ()V net/minecraft/world/entity/animal/Fox$SleepGoal/stop ()V +MD: net/minecraft/world/entity/animal/Fox$SleepGoal/m_8045_ ()Z net/minecraft/world/entity/animal/Fox$SleepGoal/canContinueToUse ()Z +MD: net/minecraft/world/entity/animal/Fox$SleepGoal/m_8056_ ()V net/minecraft/world/entity/animal/Fox$SleepGoal/start ()V +MD: net/minecraft/world/entity/animal/Fox$StalkPreyGoal/ (Lnet/minecraft/world/entity/animal/Fox;)V net/minecraft/world/entity/animal/Fox$StalkPreyGoal/ (Lnet/minecraft/world/entity/animal/Fox;)V +MD: net/minecraft/world/entity/animal/Fox$StalkPreyGoal/m_8036_ ()Z net/minecraft/world/entity/animal/Fox$StalkPreyGoal/canUse ()Z +MD: net/minecraft/world/entity/animal/Fox$StalkPreyGoal/m_8037_ ()V net/minecraft/world/entity/animal/Fox$StalkPreyGoal/tick ()V +MD: net/minecraft/world/entity/animal/Fox$StalkPreyGoal/m_8041_ ()V net/minecraft/world/entity/animal/Fox$StalkPreyGoal/stop ()V +MD: net/minecraft/world/entity/animal/Fox$StalkPreyGoal/m_8056_ ()V net/minecraft/world/entity/animal/Fox$StalkPreyGoal/start ()V +MD: net/minecraft/world/entity/animal/Fox$Type/ ()V net/minecraft/world/entity/animal/Fox$Type/ ()V +MD: net/minecraft/world/entity/animal/Fox$Type/ (Ljava/lang/String;IILjava/lang/String;)V net/minecraft/world/entity/animal/Fox$Type/ (Ljava/lang/String;IILjava/lang/String;)V +MD: net/minecraft/world/entity/animal/Fox$Type/m_148931_ ()[Lnet/minecraft/world/entity/animal/Fox$Type; net/minecraft/world/entity/animal/Fox$Type/$values ()[Lnet/minecraft/world/entity/animal/Fox$Type; +MD: net/minecraft/world/entity/animal/Fox$Type/m_204062_ (Lnet/minecraft/core/Holder;)Lnet/minecraft/world/entity/animal/Fox$Type; net/minecraft/world/entity/animal/Fox$Type/byBiome (Lnet/minecraft/core/Holder;)Lnet/minecraft/world/entity/animal/Fox$Type; +MD: net/minecraft/world/entity/animal/Fox$Type/m_28812_ (I)Lnet/minecraft/world/entity/animal/Fox$Type; net/minecraft/world/entity/animal/Fox$Type/byId (I)Lnet/minecraft/world/entity/animal/Fox$Type; +MD: net/minecraft/world/entity/animal/Fox$Type/m_28816_ (Ljava/lang/String;)Lnet/minecraft/world/entity/animal/Fox$Type; net/minecraft/world/entity/animal/Fox$Type/byName (Ljava/lang/String;)Lnet/minecraft/world/entity/animal/Fox$Type; +MD: net/minecraft/world/entity/animal/Fox$Type/m_28820_ ()I net/minecraft/world/entity/animal/Fox$Type/getId ()I +MD: net/minecraft/world/entity/animal/Fox$Type/m_7912_ ()Ljava/lang/String; net/minecraft/world/entity/animal/Fox$Type/getSerializedName ()Ljava/lang/String; +MD: net/minecraft/world/entity/animal/Fox$Type/valueOf (Ljava/lang/String;)Lnet/minecraft/world/entity/animal/Fox$Type; net/minecraft/world/entity/animal/Fox$Type/valueOf (Ljava/lang/String;)Lnet/minecraft/world/entity/animal/Fox$Type; +MD: net/minecraft/world/entity/animal/Fox$Type/values ()[Lnet/minecraft/world/entity/animal/Fox$Type; net/minecraft/world/entity/animal/Fox$Type/values ()[Lnet/minecraft/world/entity/animal/Fox$Type; +MD: net/minecraft/world/entity/animal/FrogVariant/ ()V net/minecraft/world/entity/animal/FrogVariant/ ()V +MD: net/minecraft/world/entity/animal/FrogVariant/ (Lnet/minecraft/resources/ResourceLocation;)V net/minecraft/world/entity/animal/FrogVariant/ (Lnet/minecraft/resources/ResourceLocation;)V +MD: net/minecraft/world/entity/animal/FrogVariant/equals (Ljava/lang/Object;)Z net/minecraft/world/entity/animal/FrogVariant/equals (Ljava/lang/Object;)Z +MD: net/minecraft/world/entity/animal/FrogVariant/f_218188_ ()Lnet/minecraft/resources/ResourceLocation; net/minecraft/world/entity/animal/FrogVariant/texture ()Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/world/entity/animal/FrogVariant/hashCode ()I net/minecraft/world/entity/animal/FrogVariant/hashCode ()I +MD: net/minecraft/world/entity/animal/FrogVariant/m_218193_ (Ljava/lang/String;Ljava/lang/String;)Lnet/minecraft/world/entity/animal/FrogVariant; net/minecraft/world/entity/animal/FrogVariant/register (Ljava/lang/String;Ljava/lang/String;)Lnet/minecraft/world/entity/animal/FrogVariant; +MD: net/minecraft/world/entity/animal/FrogVariant/toString ()Ljava/lang/String; net/minecraft/world/entity/animal/FrogVariant/toString ()Ljava/lang/String; +MD: net/minecraft/world/entity/animal/IronGolem/ ()V net/minecraft/world/entity/animal/IronGolem/ ()V +MD: net/minecraft/world/entity/animal/IronGolem/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V net/minecraft/world/entity/animal/IronGolem/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V +MD: net/minecraft/world/entity/animal/IronGolem/m_28873_ ()Lnet/minecraft/world/entity/animal/IronGolem$Crackiness; net/minecraft/world/entity/animal/IronGolem/getCrackiness ()Lnet/minecraft/world/entity/animal/IronGolem$Crackiness; +MD: net/minecraft/world/entity/animal/IronGolem/m_28874_ ()I net/minecraft/world/entity/animal/IronGolem/getAttackAnimationTick ()I +MD: net/minecraft/world/entity/animal/IronGolem/m_28875_ ()I net/minecraft/world/entity/animal/IronGolem/getOfferFlowerTick ()I +MD: net/minecraft/world/entity/animal/IronGolem/m_28876_ ()Z net/minecraft/world/entity/animal/IronGolem/isPlayerCreated ()Z +MD: net/minecraft/world/entity/animal/IronGolem/m_28877_ ()F net/minecraft/world/entity/animal/IronGolem/getAttackDamage ()F +MD: net/minecraft/world/entity/animal/IronGolem/m_28878_ (Lnet/minecraft/world/entity/LivingEntity;)Z net/minecraft/world/entity/animal/IronGolem/lambda$registerGoals$0 (Lnet/minecraft/world/entity/LivingEntity;)Z +MD: net/minecraft/world/entity/animal/IronGolem/m_28883_ ()Lnet/minecraft/world/entity/ai/attributes/AttributeSupplier$Builder; net/minecraft/world/entity/animal/IronGolem/createAttributes ()Lnet/minecraft/world/entity/ai/attributes/AttributeSupplier$Builder; +MD: net/minecraft/world/entity/animal/IronGolem/m_28885_ (Z)V net/minecraft/world/entity/animal/IronGolem/offerFlower (Z)V +MD: net/minecraft/world/entity/animal/IronGolem/m_28887_ (Z)V net/minecraft/world/entity/animal/IronGolem/setPlayerCreated (Z)V +MD: net/minecraft/world/entity/animal/IronGolem/m_5592_ ()Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/animal/IronGolem/getDeathSound ()Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/animal/IronGolem/m_5843_ ()Z net/minecraft/world/entity/animal/IronGolem/canSpawnSprintParticle ()Z +MD: net/minecraft/world/entity/animal/IronGolem/m_6071_ (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;)Lnet/minecraft/world/InteractionResult; net/minecraft/world/entity/animal/IronGolem/mobInteract (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;)Lnet/minecraft/world/InteractionResult; +MD: net/minecraft/world/entity/animal/IronGolem/m_6120_ ()Ljava/util/UUID; net/minecraft/world/entity/animal/IronGolem/getPersistentAngerTarget ()Ljava/util/UUID; +MD: net/minecraft/world/entity/animal/IronGolem/m_6469_ (Lnet/minecraft/world/damagesource/DamageSource;F)Z net/minecraft/world/entity/animal/IronGolem/hurt (Lnet/minecraft/world/damagesource/DamageSource;F)Z +MD: net/minecraft/world/entity/animal/IronGolem/m_6549_ (Lnet/minecraft/world/entity/EntityType;)Z net/minecraft/world/entity/animal/IronGolem/canAttackType (Lnet/minecraft/world/entity/EntityType;)Z +MD: net/minecraft/world/entity/animal/IronGolem/m_6667_ (Lnet/minecraft/world/damagesource/DamageSource;)V net/minecraft/world/entity/animal/IronGolem/die (Lnet/minecraft/world/damagesource/DamageSource;)V +MD: net/minecraft/world/entity/animal/IronGolem/m_6784_ ()I net/minecraft/world/entity/animal/IronGolem/getRemainingPersistentAngerTime ()I +MD: net/minecraft/world/entity/animal/IronGolem/m_6825_ ()V net/minecraft/world/entity/animal/IronGolem/startPersistentAngerTimer ()V +MD: net/minecraft/world/entity/animal/IronGolem/m_6914_ (Lnet/minecraft/world/level/LevelReader;)Z net/minecraft/world/entity/animal/IronGolem/checkSpawnObstruction (Lnet/minecraft/world/level/LevelReader;)Z +MD: net/minecraft/world/entity/animal/IronGolem/m_6925_ (Ljava/util/UUID;)V net/minecraft/world/entity/animal/IronGolem/setPersistentAngerTarget (Ljava/util/UUID;)V +MD: net/minecraft/world/entity/animal/IronGolem/m_7302_ (I)I net/minecraft/world/entity/animal/IronGolem/decreaseAirSupply (I)I +MD: net/minecraft/world/entity/animal/IronGolem/m_7324_ (Lnet/minecraft/world/entity/Entity;)V net/minecraft/world/entity/animal/IronGolem/doPush (Lnet/minecraft/world/entity/Entity;)V +MD: net/minecraft/world/entity/animal/IronGolem/m_7327_ (Lnet/minecraft/world/entity/Entity;)Z net/minecraft/world/entity/animal/IronGolem/doHurtTarget (Lnet/minecraft/world/entity/Entity;)Z +MD: net/minecraft/world/entity/animal/IronGolem/m_7355_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V net/minecraft/world/entity/animal/IronGolem/playStepSound (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V +MD: net/minecraft/world/entity/animal/IronGolem/m_7378_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/entity/animal/IronGolem/readAdditionalSaveData (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/entity/animal/IronGolem/m_7380_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/entity/animal/IronGolem/addAdditionalSaveData (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/entity/animal/IronGolem/m_7822_ (B)V net/minecraft/world/entity/animal/IronGolem/handleEntityEvent (B)V +MD: net/minecraft/world/entity/animal/IronGolem/m_7870_ (I)V net/minecraft/world/entity/animal/IronGolem/setRemainingPersistentAngerTime (I)V +MD: net/minecraft/world/entity/animal/IronGolem/m_7939_ ()Lnet/minecraft/world/phys/Vec3; net/minecraft/world/entity/animal/IronGolem/getLeashOffset ()Lnet/minecraft/world/phys/Vec3; +MD: net/minecraft/world/entity/animal/IronGolem/m_7975_ (Lnet/minecraft/world/damagesource/DamageSource;)Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/animal/IronGolem/getHurtSound (Lnet/minecraft/world/damagesource/DamageSource;)Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/animal/IronGolem/m_8097_ ()V net/minecraft/world/entity/animal/IronGolem/defineSynchedData ()V +MD: net/minecraft/world/entity/animal/IronGolem/m_8099_ ()V net/minecraft/world/entity/animal/IronGolem/registerGoals ()V +MD: net/minecraft/world/entity/animal/IronGolem/m_8107_ ()V net/minecraft/world/entity/animal/IronGolem/aiStep ()V +MD: net/minecraft/world/entity/animal/IronGolem$Crackiness/ ()V net/minecraft/world/entity/animal/IronGolem$Crackiness/ ()V +MD: net/minecraft/world/entity/animal/IronGolem$Crackiness/ (Ljava/lang/String;IF)V net/minecraft/world/entity/animal/IronGolem$Crackiness/ (Ljava/lang/String;IF)V +MD: net/minecraft/world/entity/animal/IronGolem$Crackiness/m_148933_ ()[Lnet/minecraft/world/entity/animal/IronGolem$Crackiness; net/minecraft/world/entity/animal/IronGolem$Crackiness/$values ()[Lnet/minecraft/world/entity/animal/IronGolem$Crackiness; +MD: net/minecraft/world/entity/animal/IronGolem$Crackiness/m_28901_ (F)Lnet/minecraft/world/entity/animal/IronGolem$Crackiness; net/minecraft/world/entity/animal/IronGolem$Crackiness/byFraction (F)Lnet/minecraft/world/entity/animal/IronGolem$Crackiness; +MD: net/minecraft/world/entity/animal/IronGolem$Crackiness/m_28903_ (Lnet/minecraft/world/entity/animal/IronGolem$Crackiness;)D net/minecraft/world/entity/animal/IronGolem$Crackiness/lambda$static$0 (Lnet/minecraft/world/entity/animal/IronGolem$Crackiness;)D +MD: net/minecraft/world/entity/animal/IronGolem$Crackiness/valueOf (Ljava/lang/String;)Lnet/minecraft/world/entity/animal/IronGolem$Crackiness; net/minecraft/world/entity/animal/IronGolem$Crackiness/valueOf (Ljava/lang/String;)Lnet/minecraft/world/entity/animal/IronGolem$Crackiness; +MD: net/minecraft/world/entity/animal/IronGolem$Crackiness/values ()[Lnet/minecraft/world/entity/animal/IronGolem$Crackiness; net/minecraft/world/entity/animal/IronGolem$Crackiness/values ()[Lnet/minecraft/world/entity/animal/IronGolem$Crackiness; +MD: net/minecraft/world/entity/animal/MushroomCow/ ()V net/minecraft/world/entity/animal/MushroomCow/ ()V +MD: net/minecraft/world/entity/animal/MushroomCow/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V net/minecraft/world/entity/animal/MushroomCow/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V +MD: net/minecraft/world/entity/animal/MushroomCow/m_142606_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/AgeableMob;)Lnet/minecraft/world/entity/animal/Cow; net/minecraft/world/entity/animal/MushroomCow/getBreedOffspring (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/AgeableMob;)Lnet/minecraft/world/entity/animal/Cow; +MD: net/minecraft/world/entity/animal/MushroomCow/m_142606_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/AgeableMob;)Lnet/minecraft/world/entity/animal/MushroomCow; net/minecraft/world/entity/animal/MushroomCow/getBreedOffspring (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/AgeableMob;)Lnet/minecraft/world/entity/animal/MushroomCow; +MD: net/minecraft/world/entity/animal/MushroomCow/m_142606_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/AgeableMob;)Lnet/minecraft/world/entity/AgeableMob; net/minecraft/world/entity/animal/MushroomCow/getBreedOffspring (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/AgeableMob;)Lnet/minecraft/world/entity/AgeableMob; +MD: net/minecraft/world/entity/animal/MushroomCow/m_218200_ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/world/entity/MobSpawnType;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)Z net/minecraft/world/entity/animal/MushroomCow/checkMushroomSpawnRules (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/world/entity/MobSpawnType;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)Z +MD: net/minecraft/world/entity/animal/MushroomCow/m_28464_ (Lnet/minecraft/world/entity/animal/MushroomCow$MushroomType;)V net/minecraft/world/entity/animal/MushroomCow/setVariant (Lnet/minecraft/world/entity/animal/MushroomCow$MushroomType;)V +MD: net/minecraft/world/entity/animal/MushroomCow/m_28464_ (Ljava/lang/Object;)V net/minecraft/world/entity/animal/MushroomCow/setVariant (Ljava/lang/Object;)V +MD: net/minecraft/world/entity/animal/MushroomCow/m_28554_ ()Lnet/minecraft/world/entity/animal/MushroomCow$MushroomType; net/minecraft/world/entity/animal/MushroomCow/getVariant ()Lnet/minecraft/world/entity/animal/MushroomCow$MushroomType; +MD: net/minecraft/world/entity/animal/MushroomCow/m_28554_ ()Ljava/lang/Object; net/minecraft/world/entity/animal/MushroomCow/getVariant ()Ljava/lang/Object; +MD: net/minecraft/world/entity/animal/MushroomCow/m_28925_ (Lnet/minecraft/world/InteractionHand;Lnet/minecraft/world/entity/player/Player;)V net/minecraft/world/entity/animal/MushroomCow/lambda$mobInteract$0 (Lnet/minecraft/world/InteractionHand;Lnet/minecraft/world/entity/player/Player;)V +MD: net/minecraft/world/entity/animal/MushroomCow/m_28930_ (Lnet/minecraft/world/entity/animal/MushroomCow;)Lnet/minecraft/world/entity/animal/MushroomCow$MushroomType; net/minecraft/world/entity/animal/MushroomCow/getOffspringType (Lnet/minecraft/world/entity/animal/MushroomCow;)Lnet/minecraft/world/entity/animal/MushroomCow$MushroomType; +MD: net/minecraft/world/entity/animal/MushroomCow/m_28956_ (Lnet/minecraft/world/item/ItemStack;)Ljava/util/Optional; net/minecraft/world/entity/animal/MushroomCow/getEffectFromItemStack (Lnet/minecraft/world/item/ItemStack;)Ljava/util/Optional; +MD: net/minecraft/world/entity/animal/MushroomCow/m_5610_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/LevelReader;)F net/minecraft/world/entity/animal/MushroomCow/getWalkTargetValue (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/LevelReader;)F +MD: net/minecraft/world/entity/animal/MushroomCow/m_5851_ (Lnet/minecraft/sounds/SoundSource;)V net/minecraft/world/entity/animal/MushroomCow/shear (Lnet/minecraft/sounds/SoundSource;)V +MD: net/minecraft/world/entity/animal/MushroomCow/m_6071_ (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;)Lnet/minecraft/world/InteractionResult; net/minecraft/world/entity/animal/MushroomCow/mobInteract (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;)Lnet/minecraft/world/InteractionResult; +MD: net/minecraft/world/entity/animal/MushroomCow/m_6220_ ()Z net/minecraft/world/entity/animal/MushroomCow/readyForShearing ()Z +MD: net/minecraft/world/entity/animal/MushroomCow/m_7378_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/entity/animal/MushroomCow/readAdditionalSaveData (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/entity/animal/MushroomCow/m_7380_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/entity/animal/MushroomCow/addAdditionalSaveData (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/entity/animal/MushroomCow/m_8038_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LightningBolt;)V net/minecraft/world/entity/animal/MushroomCow/thunderHit (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LightningBolt;)V +MD: net/minecraft/world/entity/animal/MushroomCow/m_8097_ ()V net/minecraft/world/entity/animal/MushroomCow/defineSynchedData ()V +MD: net/minecraft/world/entity/animal/MushroomCow$MushroomType/ ()V net/minecraft/world/entity/animal/MushroomCow$MushroomType/ ()V +MD: net/minecraft/world/entity/animal/MushroomCow$MushroomType/ (Ljava/lang/String;ILjava/lang/String;Lnet/minecraft/world/level/block/state/BlockState;)V net/minecraft/world/entity/animal/MushroomCow$MushroomType/ (Ljava/lang/String;ILjava/lang/String;Lnet/minecraft/world/level/block/state/BlockState;)V +MD: net/minecraft/world/entity/animal/MushroomCow$MushroomType/m_148944_ ()[Lnet/minecraft/world/entity/animal/MushroomCow$MushroomType; net/minecraft/world/entity/animal/MushroomCow$MushroomType/$values ()[Lnet/minecraft/world/entity/animal/MushroomCow$MushroomType; +MD: net/minecraft/world/entity/animal/MushroomCow$MushroomType/m_28969_ ()Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/entity/animal/MushroomCow$MushroomType/getBlockState ()Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/entity/animal/MushroomCow$MushroomType/m_28976_ (Ljava/lang/String;)Lnet/minecraft/world/entity/animal/MushroomCow$MushroomType; net/minecraft/world/entity/animal/MushroomCow$MushroomType/byType (Ljava/lang/String;)Lnet/minecraft/world/entity/animal/MushroomCow$MushroomType; +MD: net/minecraft/world/entity/animal/MushroomCow$MushroomType/m_7912_ ()Ljava/lang/String; net/minecraft/world/entity/animal/MushroomCow$MushroomType/getSerializedName ()Ljava/lang/String; +MD: net/minecraft/world/entity/animal/MushroomCow$MushroomType/valueOf (Ljava/lang/String;)Lnet/minecraft/world/entity/animal/MushroomCow$MushroomType; net/minecraft/world/entity/animal/MushroomCow$MushroomType/valueOf (Ljava/lang/String;)Lnet/minecraft/world/entity/animal/MushroomCow$MushroomType; +MD: net/minecraft/world/entity/animal/MushroomCow$MushroomType/values ()[Lnet/minecraft/world/entity/animal/MushroomCow$MushroomType; net/minecraft/world/entity/animal/MushroomCow$MushroomType/values ()[Lnet/minecraft/world/entity/animal/MushroomCow$MushroomType; +MD: net/minecraft/world/entity/animal/Ocelot/ ()V net/minecraft/world/entity/animal/Ocelot/ ()V +MD: net/minecraft/world/entity/animal/Ocelot/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V net/minecraft/world/entity/animal/Ocelot/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V +MD: net/minecraft/world/entity/animal/Ocelot/m_142606_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/AgeableMob;)Lnet/minecraft/world/entity/animal/Ocelot; net/minecraft/world/entity/animal/Ocelot/getBreedOffspring (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/AgeableMob;)Lnet/minecraft/world/entity/animal/Ocelot; +MD: net/minecraft/world/entity/animal/Ocelot/m_142606_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/AgeableMob;)Lnet/minecraft/world/entity/AgeableMob; net/minecraft/world/entity/animal/Ocelot/getBreedOffspring (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/AgeableMob;)Lnet/minecraft/world/entity/AgeableMob; +MD: net/minecraft/world/entity/animal/Ocelot/m_20161_ ()Z net/minecraft/world/entity/animal/Ocelot/isSteppingCarefully ()Z +MD: net/minecraft/world/entity/animal/Ocelot/m_218206_ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/world/entity/MobSpawnType;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)Z net/minecraft/world/entity/animal/Ocelot/checkOcelotSpawnRules (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/world/entity/MobSpawnType;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)Z +MD: net/minecraft/world/entity/animal/Ocelot/m_29036_ ()Lnet/minecraft/world/entity/ai/attributes/AttributeSupplier$Builder; net/minecraft/world/entity/animal/Ocelot/createAttributes ()Lnet/minecraft/world/entity/ai/attributes/AttributeSupplier$Builder; +MD: net/minecraft/world/entity/animal/Ocelot/m_29037_ ()V net/minecraft/world/entity/animal/Ocelot/reassessTrustingGoals ()V +MD: net/minecraft/world/entity/animal/Ocelot/m_29038_ ()Z net/minecraft/world/entity/animal/Ocelot/isTrusting ()Z +MD: net/minecraft/world/entity/animal/Ocelot/m_29039_ ()F net/minecraft/world/entity/animal/Ocelot/getAttackDamage ()F +MD: net/minecraft/world/entity/animal/Ocelot/m_29045_ (Z)V net/minecraft/world/entity/animal/Ocelot/setTrusting (Z)V +MD: net/minecraft/world/entity/animal/Ocelot/m_29047_ (Z)V net/minecraft/world/entity/animal/Ocelot/spawnTrustingParticles (Z)V +MD: net/minecraft/world/entity/animal/Ocelot/m_5592_ ()Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/animal/Ocelot/getDeathSound ()Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/animal/Ocelot/m_6071_ (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;)Lnet/minecraft/world/InteractionResult; net/minecraft/world/entity/animal/Ocelot/mobInteract (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;)Lnet/minecraft/world/InteractionResult; +MD: net/minecraft/world/entity/animal/Ocelot/m_6518_ (Lnet/minecraft/world/level/ServerLevelAccessor;Lnet/minecraft/world/DifficultyInstance;Lnet/minecraft/world/entity/MobSpawnType;Lnet/minecraft/world/entity/SpawnGroupData;Lnet/minecraft/nbt/CompoundTag;)Lnet/minecraft/world/entity/SpawnGroupData; net/minecraft/world/entity/animal/Ocelot/finalizeSpawn (Lnet/minecraft/world/level/ServerLevelAccessor;Lnet/minecraft/world/DifficultyInstance;Lnet/minecraft/world/entity/MobSpawnType;Lnet/minecraft/world/entity/SpawnGroupData;Lnet/minecraft/nbt/CompoundTag;)Lnet/minecraft/world/entity/SpawnGroupData; +MD: net/minecraft/world/entity/animal/Ocelot/m_6785_ (D)Z net/minecraft/world/entity/animal/Ocelot/removeWhenFarAway (D)Z +MD: net/minecraft/world/entity/animal/Ocelot/m_6898_ (Lnet/minecraft/world/item/ItemStack;)Z net/minecraft/world/entity/animal/Ocelot/isFood (Lnet/minecraft/world/item/ItemStack;)Z +MD: net/minecraft/world/entity/animal/Ocelot/m_6914_ (Lnet/minecraft/world/level/LevelReader;)Z net/minecraft/world/entity/animal/Ocelot/checkSpawnObstruction (Lnet/minecraft/world/level/LevelReader;)Z +MD: net/minecraft/world/entity/animal/Ocelot/m_7327_ (Lnet/minecraft/world/entity/Entity;)Z net/minecraft/world/entity/animal/Ocelot/doHurtTarget (Lnet/minecraft/world/entity/Entity;)Z +MD: net/minecraft/world/entity/animal/Ocelot/m_7378_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/entity/animal/Ocelot/readAdditionalSaveData (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/entity/animal/Ocelot/m_7380_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/entity/animal/Ocelot/addAdditionalSaveData (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/entity/animal/Ocelot/m_7515_ ()Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/animal/Ocelot/getAmbientSound ()Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/animal/Ocelot/m_7822_ (B)V net/minecraft/world/entity/animal/Ocelot/handleEntityEvent (B)V +MD: net/minecraft/world/entity/animal/Ocelot/m_7939_ ()Lnet/minecraft/world/phys/Vec3; net/minecraft/world/entity/animal/Ocelot/getLeashOffset ()Lnet/minecraft/world/phys/Vec3; +MD: net/minecraft/world/entity/animal/Ocelot/m_7975_ (Lnet/minecraft/world/damagesource/DamageSource;)Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/animal/Ocelot/getHurtSound (Lnet/minecraft/world/damagesource/DamageSource;)Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/animal/Ocelot/m_8024_ ()V net/minecraft/world/entity/animal/Ocelot/customServerAiStep ()V +MD: net/minecraft/world/entity/animal/Ocelot/m_8097_ ()V net/minecraft/world/entity/animal/Ocelot/defineSynchedData ()V +MD: net/minecraft/world/entity/animal/Ocelot/m_8099_ ()V net/minecraft/world/entity/animal/Ocelot/registerGoals ()V +MD: net/minecraft/world/entity/animal/Ocelot/m_8100_ ()I net/minecraft/world/entity/animal/Ocelot/getAmbientSoundInterval ()I +MD: net/minecraft/world/entity/animal/Ocelot$OcelotAvoidEntityGoal/ (Lnet/minecraft/world/entity/animal/Ocelot;Ljava/lang/Class;FDD)V net/minecraft/world/entity/animal/Ocelot$OcelotAvoidEntityGoal/ (Lnet/minecraft/world/entity/animal/Ocelot;Ljava/lang/Class;FDD)V +MD: net/minecraft/world/entity/animal/Ocelot$OcelotAvoidEntityGoal/m_8036_ ()Z net/minecraft/world/entity/animal/Ocelot$OcelotAvoidEntityGoal/canUse ()Z +MD: net/minecraft/world/entity/animal/Ocelot$OcelotAvoidEntityGoal/m_8045_ ()Z net/minecraft/world/entity/animal/Ocelot$OcelotAvoidEntityGoal/canContinueToUse ()Z +MD: net/minecraft/world/entity/animal/Ocelot$OcelotTemptGoal/ (Lnet/minecraft/world/entity/animal/Ocelot;DLnet/minecraft/world/item/crafting/Ingredient;Z)V net/minecraft/world/entity/animal/Ocelot$OcelotTemptGoal/ (Lnet/minecraft/world/entity/animal/Ocelot;DLnet/minecraft/world/item/crafting/Ingredient;Z)V +MD: net/minecraft/world/entity/animal/Ocelot$OcelotTemptGoal/m_7497_ ()Z net/minecraft/world/entity/animal/Ocelot$OcelotTemptGoal/canScare ()Z +MD: net/minecraft/world/entity/animal/Panda/ ()V net/minecraft/world/entity/animal/Panda/ ()V +MD: net/minecraft/world/entity/animal/Panda/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V net/minecraft/world/entity/animal/Panda/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V +MD: net/minecraft/world/entity/animal/Panda/m_142606_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/AgeableMob;)Lnet/minecraft/world/entity/AgeableMob; net/minecraft/world/entity/animal/Panda/getBreedOffspring (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/AgeableMob;)Lnet/minecraft/world/entity/AgeableMob; +MD: net/minecraft/world/entity/animal/Panda/m_148973_ ()Z net/minecraft/world/entity/animal/Panda/isBrown ()Z +MD: net/minecraft/world/entity/animal/Panda/m_218212_ (Lnet/minecraft/world/entity/animal/Panda;)Lnet/minecraft/util/RandomSource; net/minecraft/world/entity/animal/Panda/access$100 (Lnet/minecraft/world/entity/animal/Panda;)Lnet/minecraft/util/RandomSource; +MD: net/minecraft/world/entity/animal/Panda/m_218214_ (Lnet/minecraft/world/entity/animal/Panda;)Lnet/minecraft/util/RandomSource; net/minecraft/world/entity/animal/Panda/access$200 (Lnet/minecraft/world/entity/animal/Panda;)Lnet/minecraft/util/RandomSource; +MD: net/minecraft/world/entity/animal/Panda/m_218216_ (Lnet/minecraft/world/entity/animal/Panda;)Lnet/minecraft/util/RandomSource; net/minecraft/world/entity/animal/Panda/access$300 (Lnet/minecraft/world/entity/animal/Panda;)Lnet/minecraft/util/RandomSource; +MD: net/minecraft/world/entity/animal/Panda/m_218218_ (Lnet/minecraft/world/entity/animal/Panda;)Lnet/minecraft/util/RandomSource; net/minecraft/world/entity/animal/Panda/access$400 (Lnet/minecraft/world/entity/animal/Panda;)Lnet/minecraft/util/RandomSource; +MD: net/minecraft/world/entity/animal/Panda/m_218220_ (Lnet/minecraft/world/entity/animal/Panda;)Lnet/minecraft/util/RandomSource; net/minecraft/world/entity/animal/Panda/access$500 (Lnet/minecraft/world/entity/animal/Panda;)Lnet/minecraft/util/RandomSource; +MD: net/minecraft/world/entity/animal/Panda/m_218222_ (Lnet/minecraft/world/entity/animal/Panda;)Lnet/minecraft/util/RandomSource; net/minecraft/world/entity/animal/Panda/access$600 (Lnet/minecraft/world/entity/animal/Panda;)Lnet/minecraft/util/RandomSource; +MD: net/minecraft/world/entity/animal/Panda/m_218224_ (Lnet/minecraft/world/entity/animal/Panda;)Lnet/minecraft/util/RandomSource; net/minecraft/world/entity/animal/Panda/access$700 (Lnet/minecraft/world/entity/animal/Panda;)Lnet/minecraft/util/RandomSource; +MD: net/minecraft/world/entity/animal/Panda/m_218226_ (Lnet/minecraft/world/entity/animal/Panda;)Lnet/minecraft/util/RandomSource; net/minecraft/world/entity/animal/Panda/access$800 (Lnet/minecraft/world/entity/animal/Panda;)Lnet/minecraft/util/RandomSource; +MD: net/minecraft/world/entity/animal/Panda/m_218228_ (Lnet/minecraft/world/entity/animal/Panda;)Lnet/minecraft/util/RandomSource; net/minecraft/world/entity/animal/Panda/access$900 (Lnet/minecraft/world/entity/animal/Panda;)Lnet/minecraft/util/RandomSource; +MD: net/minecraft/world/entity/animal/Panda/m_218230_ (Lnet/minecraft/world/entity/animal/Panda;)Lnet/minecraft/util/RandomSource; net/minecraft/world/entity/animal/Panda/access$1000 (Lnet/minecraft/world/entity/animal/Panda;)Lnet/minecraft/util/RandomSource; +MD: net/minecraft/world/entity/animal/Panda/m_284353_ (Lnet/minecraft/world/entity/animal/Panda;)Lnet/minecraft/util/RandomSource; net/minecraft/world/entity/animal/Panda/access$000 (Lnet/minecraft/world/entity/animal/Panda;)Lnet/minecraft/util/RandomSource; +MD: net/minecraft/world/entity/animal/Panda/m_289134_ (Lnet/minecraft/world/entity/item/ItemEntity;)Z net/minecraft/world/entity/animal/Panda/lambda$static$0 (Lnet/minecraft/world/entity/item/ItemEntity;)Z +MD: net/minecraft/world/entity/animal/Panda/m_29088_ (F)F net/minecraft/world/entity/animal/Panda/getRollAmount (F)F +MD: net/minecraft/world/entity/animal/Panda/m_29099_ (Lnet/minecraft/world/entity/animal/Panda$Gene;)V net/minecraft/world/entity/animal/Panda/setMainGene (Lnet/minecraft/world/entity/animal/Panda$Gene;)V +MD: net/minecraft/world/entity/animal/Panda/m_29103_ (Lnet/minecraft/world/entity/animal/Panda;Lnet/minecraft/world/entity/animal/Panda;)V net/minecraft/world/entity/animal/Panda/setGeneFromParents (Lnet/minecraft/world/entity/animal/Panda;Lnet/minecraft/world/entity/animal/Panda;)V +MD: net/minecraft/world/entity/animal/Panda/m_29116_ (Lnet/minecraft/world/entity/animal/Panda$Gene;)V net/minecraft/world/entity/animal/Panda/setHiddenGene (Lnet/minecraft/world/entity/animal/Panda$Gene;)V +MD: net/minecraft/world/entity/animal/Panda/m_29134_ (IZ)V net/minecraft/world/entity/animal/Panda/setFlag (IZ)V +MD: net/minecraft/world/entity/animal/Panda/m_29148_ ()I net/minecraft/world/entity/animal/Panda/getUnhappyCounter ()I +MD: net/minecraft/world/entity/animal/Panda/m_29149_ ()Z net/minecraft/world/entity/animal/Panda/isSneezing ()Z +MD: net/minecraft/world/entity/animal/Panda/m_29150_ ()Z net/minecraft/world/entity/animal/Panda/isSitting ()Z +MD: net/minecraft/world/entity/animal/Panda/m_29151_ ()Z net/minecraft/world/entity/animal/Panda/isOnBack ()Z +MD: net/minecraft/world/entity/animal/Panda/m_29152_ ()Z net/minecraft/world/entity/animal/Panda/isEating ()Z +MD: net/minecraft/world/entity/animal/Panda/m_29153_ ()I net/minecraft/world/entity/animal/Panda/getSneezeCounter ()I +MD: net/minecraft/world/entity/animal/Panda/m_29154_ ()Lnet/minecraft/world/entity/animal/Panda$Gene; net/minecraft/world/entity/animal/Panda/getMainGene ()Lnet/minecraft/world/entity/animal/Panda$Gene; +MD: net/minecraft/world/entity/animal/Panda/m_29155_ ()Lnet/minecraft/world/entity/animal/Panda$Gene; net/minecraft/world/entity/animal/Panda/getHiddenGene ()Lnet/minecraft/world/entity/animal/Panda$Gene; +MD: net/minecraft/world/entity/animal/Panda/m_29156_ ()Z net/minecraft/world/entity/animal/Panda/isRolling ()Z +MD: net/minecraft/world/entity/animal/Panda/m_29157_ ()Lnet/minecraft/world/entity/ai/attributes/AttributeSupplier$Builder; net/minecraft/world/entity/animal/Panda/createAttributes ()Lnet/minecraft/world/entity/ai/attributes/AttributeSupplier$Builder; +MD: net/minecraft/world/entity/animal/Panda/m_29158_ ()Lnet/minecraft/world/entity/animal/Panda$Gene; net/minecraft/world/entity/animal/Panda/getVariant ()Lnet/minecraft/world/entity/animal/Panda$Gene; +MD: net/minecraft/world/entity/animal/Panda/m_29161_ ()Z net/minecraft/world/entity/animal/Panda/isLazy ()Z +MD: net/minecraft/world/entity/animal/Panda/m_29162_ ()Z net/minecraft/world/entity/animal/Panda/isWorried ()Z +MD: net/minecraft/world/entity/animal/Panda/m_29163_ ()Z net/minecraft/world/entity/animal/Panda/isPlayful ()Z +MD: net/minecraft/world/entity/animal/Panda/m_29164_ ()Z net/minecraft/world/entity/animal/Panda/isWeak ()Z +MD: net/minecraft/world/entity/animal/Panda/m_29165_ ()Z net/minecraft/world/entity/animal/Panda/isScared ()Z +MD: net/minecraft/world/entity/animal/Panda/m_29166_ ()V net/minecraft/world/entity/animal/Panda/setAttributes ()V +MD: net/minecraft/world/entity/animal/Panda/m_29167_ ()Z net/minecraft/world/entity/animal/Panda/canPerformAction ()Z +MD: net/minecraft/world/entity/animal/Panda/m_29170_ ()I net/minecraft/world/entity/animal/Panda/getEatCounter ()I +MD: net/minecraft/world/entity/animal/Panda/m_29171_ ()V net/minecraft/world/entity/animal/Panda/handleEating ()V +MD: net/minecraft/world/entity/animal/Panda/m_29172_ ()V net/minecraft/world/entity/animal/Panda/addEatingParticles ()V +MD: net/minecraft/world/entity/animal/Panda/m_29173_ ()V net/minecraft/world/entity/animal/Panda/updateSitAmount ()V +MD: net/minecraft/world/entity/animal/Panda/m_29174_ ()V net/minecraft/world/entity/animal/Panda/updateOnBackAnimation ()V +MD: net/minecraft/world/entity/animal/Panda/m_29175_ ()V net/minecraft/world/entity/animal/Panda/updateRollAmount ()V +MD: net/minecraft/world/entity/animal/Panda/m_29176_ ()V net/minecraft/world/entity/animal/Panda/handleRoll ()V +MD: net/minecraft/world/entity/animal/Panda/m_29177_ ()V net/minecraft/world/entity/animal/Panda/afterSneeze ()V +MD: net/minecraft/world/entity/animal/Panda/m_29178_ ()Lnet/minecraft/world/entity/animal/Panda$Gene; net/minecraft/world/entity/animal/Panda/getOneOfGenesRandomly ()Lnet/minecraft/world/entity/animal/Panda$Gene; +MD: net/minecraft/world/entity/animal/Panda/m_29179_ ()V net/minecraft/world/entity/animal/Panda/tryToSit ()V +MD: net/minecraft/world/entity/animal/Panda/m_29195_ (Lnet/minecraft/world/item/ItemStack;)Z net/minecraft/world/entity/animal/Panda/isFoodOrCake (Lnet/minecraft/world/item/ItemStack;)Z +MD: net/minecraft/world/entity/animal/Panda/m_29206_ (I)V net/minecraft/world/entity/animal/Panda/setUnhappyCounter (I)V +MD: net/minecraft/world/entity/animal/Panda/m_29208_ (Z)V net/minecraft/world/entity/animal/Panda/sit (Z)V +MD: net/minecraft/world/entity/animal/Panda/m_29210_ (I)V net/minecraft/world/entity/animal/Panda/setSneezeCounter (I)V +MD: net/minecraft/world/entity/animal/Panda/m_29212_ (Z)V net/minecraft/world/entity/animal/Panda/setOnBack (Z)V +MD: net/minecraft/world/entity/animal/Panda/m_29214_ (I)V net/minecraft/world/entity/animal/Panda/setEatCounter (I)V +MD: net/minecraft/world/entity/animal/Panda/m_29216_ (Z)V net/minecraft/world/entity/animal/Panda/eat (Z)V +MD: net/minecraft/world/entity/animal/Panda/m_29218_ (I)Z net/minecraft/world/entity/animal/Panda/getFlag (I)Z +MD: net/minecraft/world/entity/animal/Panda/m_29220_ (Z)V net/minecraft/world/entity/animal/Panda/sneeze (Z)V +MD: net/minecraft/world/entity/animal/Panda/m_29222_ (Z)V net/minecraft/world/entity/animal/Panda/roll (Z)V +MD: net/minecraft/world/entity/animal/Panda/m_29224_ (F)F net/minecraft/world/entity/animal/Panda/getSitAmount (F)F +MD: net/minecraft/world/entity/animal/Panda/m_29226_ (F)F net/minecraft/world/entity/animal/Panda/getLieOnBackAmount (F)F +MD: net/minecraft/world/entity/animal/Panda/m_5592_ ()Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/animal/Panda/getDeathSound ()Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/animal/Panda/m_5912_ ()Z net/minecraft/world/entity/animal/Panda/isAggressive ()Z +MD: net/minecraft/world/entity/animal/Panda/m_6071_ (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;)Lnet/minecraft/world/InteractionResult; net/minecraft/world/entity/animal/Panda/mobInteract (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;)Lnet/minecraft/world/InteractionResult; +MD: net/minecraft/world/entity/animal/Panda/m_6469_ (Lnet/minecraft/world/damagesource/DamageSource;F)Z net/minecraft/world/entity/animal/Panda/hurt (Lnet/minecraft/world/damagesource/DamageSource;F)Z +MD: net/minecraft/world/entity/animal/Panda/m_6518_ (Lnet/minecraft/world/level/ServerLevelAccessor;Lnet/minecraft/world/DifficultyInstance;Lnet/minecraft/world/entity/MobSpawnType;Lnet/minecraft/world/entity/SpawnGroupData;Lnet/minecraft/nbt/CompoundTag;)Lnet/minecraft/world/entity/SpawnGroupData; net/minecraft/world/entity/animal/Panda/finalizeSpawn (Lnet/minecraft/world/level/ServerLevelAccessor;Lnet/minecraft/world/DifficultyInstance;Lnet/minecraft/world/entity/MobSpawnType;Lnet/minecraft/world/entity/SpawnGroupData;Lnet/minecraft/nbt/CompoundTag;)Lnet/minecraft/world/entity/SpawnGroupData; +MD: net/minecraft/world/entity/animal/Panda/m_6573_ (Lnet/minecraft/world/entity/player/Player;)Z net/minecraft/world/entity/animal/Panda/canBeLeashed (Lnet/minecraft/world/entity/player/Player;)Z +MD: net/minecraft/world/entity/animal/Panda/m_6898_ (Lnet/minecraft/world/item/ItemStack;)Z net/minecraft/world/entity/animal/Panda/isFood (Lnet/minecraft/world/item/ItemStack;)Z +MD: net/minecraft/world/entity/animal/Panda/m_7066_ (Lnet/minecraft/world/item/ItemStack;)Z net/minecraft/world/entity/animal/Panda/canTakeItem (Lnet/minecraft/world/item/ItemStack;)Z +MD: net/minecraft/world/entity/animal/Panda/m_7327_ (Lnet/minecraft/world/entity/Entity;)Z net/minecraft/world/entity/animal/Panda/doHurtTarget (Lnet/minecraft/world/entity/Entity;)Z +MD: net/minecraft/world/entity/animal/Panda/m_7355_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V net/minecraft/world/entity/animal/Panda/playStepSound (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V +MD: net/minecraft/world/entity/animal/Panda/m_7378_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/entity/animal/Panda/readAdditionalSaveData (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/entity/animal/Panda/m_7380_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/entity/animal/Panda/addAdditionalSaveData (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/entity/animal/Panda/m_7515_ ()Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/animal/Panda/getAmbientSound ()Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/animal/Panda/m_7581_ (Lnet/minecraft/world/entity/item/ItemEntity;)V net/minecraft/world/entity/animal/Panda/pickUpItem (Lnet/minecraft/world/entity/item/ItemEntity;)V +MD: net/minecraft/world/entity/animal/Panda/m_7975_ (Lnet/minecraft/world/damagesource/DamageSource;)Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/animal/Panda/getHurtSound (Lnet/minecraft/world/damagesource/DamageSource;)Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/animal/Panda/m_8097_ ()V net/minecraft/world/entity/animal/Panda/defineSynchedData ()V +MD: net/minecraft/world/entity/animal/Panda/m_8099_ ()V net/minecraft/world/entity/animal/Panda/registerGoals ()V +MD: net/minecraft/world/entity/animal/Panda/m_8119_ ()V net/minecraft/world/entity/animal/Panda/tick ()V +MD: net/minecraft/world/entity/animal/Panda$Gene/ ()V net/minecraft/world/entity/animal/Panda$Gene/ ()V +MD: net/minecraft/world/entity/animal/Panda$Gene/ (Ljava/lang/String;IILjava/lang/String;Z)V net/minecraft/world/entity/animal/Panda$Gene/ (Ljava/lang/String;IILjava/lang/String;Z)V +MD: net/minecraft/world/entity/animal/Panda$Gene/m_148983_ ()[Lnet/minecraft/world/entity/animal/Panda$Gene; net/minecraft/world/entity/animal/Panda$Gene/$values ()[Lnet/minecraft/world/entity/animal/Panda$Gene; +MD: net/minecraft/world/entity/animal/Panda$Gene/m_218234_ (Lnet/minecraft/util/RandomSource;)Lnet/minecraft/world/entity/animal/Panda$Gene; net/minecraft/world/entity/animal/Panda$Gene/getRandom (Lnet/minecraft/util/RandomSource;)Lnet/minecraft/world/entity/animal/Panda$Gene; +MD: net/minecraft/world/entity/animal/Panda$Gene/m_29247_ ()I net/minecraft/world/entity/animal/Panda$Gene/getId ()I +MD: net/minecraft/world/entity/animal/Panda$Gene/m_29248_ (I)Lnet/minecraft/world/entity/animal/Panda$Gene; net/minecraft/world/entity/animal/Panda$Gene/byId (I)Lnet/minecraft/world/entity/animal/Panda$Gene; +MD: net/minecraft/world/entity/animal/Panda$Gene/m_29253_ (Ljava/lang/String;)Lnet/minecraft/world/entity/animal/Panda$Gene; net/minecraft/world/entity/animal/Panda$Gene/byName (Ljava/lang/String;)Lnet/minecraft/world/entity/animal/Panda$Gene; +MD: net/minecraft/world/entity/animal/Panda$Gene/m_29260_ (Lnet/minecraft/world/entity/animal/Panda$Gene;Lnet/minecraft/world/entity/animal/Panda$Gene;)Lnet/minecraft/world/entity/animal/Panda$Gene; net/minecraft/world/entity/animal/Panda$Gene/getVariantFromGenes (Lnet/minecraft/world/entity/animal/Panda$Gene;Lnet/minecraft/world/entity/animal/Panda$Gene;)Lnet/minecraft/world/entity/animal/Panda$Gene; +MD: net/minecraft/world/entity/animal/Panda$Gene/m_29263_ ()Z net/minecraft/world/entity/animal/Panda$Gene/isRecessive ()Z +MD: net/minecraft/world/entity/animal/Panda$Gene/m_7912_ ()Ljava/lang/String; net/minecraft/world/entity/animal/Panda$Gene/getSerializedName ()Ljava/lang/String; +MD: net/minecraft/world/entity/animal/Panda$Gene/valueOf (Ljava/lang/String;)Lnet/minecraft/world/entity/animal/Panda$Gene; net/minecraft/world/entity/animal/Panda$Gene/valueOf (Ljava/lang/String;)Lnet/minecraft/world/entity/animal/Panda$Gene; +MD: net/minecraft/world/entity/animal/Panda$Gene/values ()[Lnet/minecraft/world/entity/animal/Panda$Gene; net/minecraft/world/entity/animal/Panda$Gene/values ()[Lnet/minecraft/world/entity/animal/Panda$Gene; +MD: net/minecraft/world/entity/animal/Panda$PandaAttackGoal/ (Lnet/minecraft/world/entity/animal/Panda;DZ)V net/minecraft/world/entity/animal/Panda$PandaAttackGoal/ (Lnet/minecraft/world/entity/animal/Panda;DZ)V +MD: net/minecraft/world/entity/animal/Panda$PandaAttackGoal/m_8036_ ()Z net/minecraft/world/entity/animal/Panda$PandaAttackGoal/canUse ()Z +MD: net/minecraft/world/entity/animal/Panda$PandaAvoidGoal/ (Lnet/minecraft/world/entity/animal/Panda;Ljava/lang/Class;FDD)V net/minecraft/world/entity/animal/Panda$PandaAvoidGoal/ (Lnet/minecraft/world/entity/animal/Panda;Ljava/lang/Class;FDD)V +MD: net/minecraft/world/entity/animal/Panda$PandaAvoidGoal/m_8036_ ()Z net/minecraft/world/entity/animal/Panda$PandaAvoidGoal/canUse ()Z +MD: net/minecraft/world/entity/animal/Panda$PandaBreedGoal/ (Lnet/minecraft/world/entity/animal/Panda;D)V net/minecraft/world/entity/animal/Panda$PandaBreedGoal/ (Lnet/minecraft/world/entity/animal/Panda;D)V +MD: net/minecraft/world/entity/animal/Panda$PandaBreedGoal/m_29289_ ()Z net/minecraft/world/entity/animal/Panda$PandaBreedGoal/canFindBamboo ()Z +MD: net/minecraft/world/entity/animal/Panda$PandaBreedGoal/m_8036_ ()Z net/minecraft/world/entity/animal/Panda$PandaBreedGoal/canUse ()Z +MD: net/minecraft/world/entity/animal/Panda$PandaHurtByTargetGoal/ (Lnet/minecraft/world/entity/animal/Panda;[Ljava/lang/Class;)V net/minecraft/world/entity/animal/Panda$PandaHurtByTargetGoal/ (Lnet/minecraft/world/entity/animal/Panda;[Ljava/lang/Class;)V +MD: net/minecraft/world/entity/animal/Panda$PandaHurtByTargetGoal/m_5766_ (Lnet/minecraft/world/entity/Mob;Lnet/minecraft/world/entity/LivingEntity;)V net/minecraft/world/entity/animal/Panda$PandaHurtByTargetGoal/alertOther (Lnet/minecraft/world/entity/Mob;Lnet/minecraft/world/entity/LivingEntity;)V +MD: net/minecraft/world/entity/animal/Panda$PandaHurtByTargetGoal/m_8045_ ()Z net/minecraft/world/entity/animal/Panda$PandaHurtByTargetGoal/canContinueToUse ()Z +MD: net/minecraft/world/entity/animal/Panda$PandaLieOnBackGoal/ (Lnet/minecraft/world/entity/animal/Panda;)V net/minecraft/world/entity/animal/Panda$PandaLieOnBackGoal/ (Lnet/minecraft/world/entity/animal/Panda;)V +MD: net/minecraft/world/entity/animal/Panda$PandaLieOnBackGoal/m_8036_ ()Z net/minecraft/world/entity/animal/Panda$PandaLieOnBackGoal/canUse ()Z +MD: net/minecraft/world/entity/animal/Panda$PandaLieOnBackGoal/m_8041_ ()V net/minecraft/world/entity/animal/Panda$PandaLieOnBackGoal/stop ()V +MD: net/minecraft/world/entity/animal/Panda$PandaLieOnBackGoal/m_8045_ ()Z net/minecraft/world/entity/animal/Panda$PandaLieOnBackGoal/canContinueToUse ()Z +MD: net/minecraft/world/entity/animal/Panda$PandaLieOnBackGoal/m_8056_ ()V net/minecraft/world/entity/animal/Panda$PandaLieOnBackGoal/start ()V +MD: net/minecraft/world/entity/animal/Panda$PandaLookAtPlayerGoal/ (Lnet/minecraft/world/entity/animal/Panda;Ljava/lang/Class;F)V net/minecraft/world/entity/animal/Panda$PandaLookAtPlayerGoal/ (Lnet/minecraft/world/entity/animal/Panda;Ljava/lang/Class;F)V +MD: net/minecraft/world/entity/animal/Panda$PandaLookAtPlayerGoal/m_148984_ (Lnet/minecraft/world/entity/LivingEntity;)Z net/minecraft/world/entity/animal/Panda$PandaLookAtPlayerGoal/lambda$canUse$0 (Lnet/minecraft/world/entity/LivingEntity;)Z +MD: net/minecraft/world/entity/animal/Panda$PandaLookAtPlayerGoal/m_29312_ (Lnet/minecraft/world/entity/LivingEntity;)V net/minecraft/world/entity/animal/Panda$PandaLookAtPlayerGoal/setTarget (Lnet/minecraft/world/entity/LivingEntity;)V +MD: net/minecraft/world/entity/animal/Panda$PandaLookAtPlayerGoal/m_8036_ ()Z net/minecraft/world/entity/animal/Panda$PandaLookAtPlayerGoal/canUse ()Z +MD: net/minecraft/world/entity/animal/Panda$PandaLookAtPlayerGoal/m_8037_ ()V net/minecraft/world/entity/animal/Panda$PandaLookAtPlayerGoal/tick ()V +MD: net/minecraft/world/entity/animal/Panda$PandaLookAtPlayerGoal/m_8045_ ()Z net/minecraft/world/entity/animal/Panda$PandaLookAtPlayerGoal/canContinueToUse ()Z +MD: net/minecraft/world/entity/animal/Panda$PandaMoveControl/ (Lnet/minecraft/world/entity/animal/Panda;)V net/minecraft/world/entity/animal/Panda$PandaMoveControl/ (Lnet/minecraft/world/entity/animal/Panda;)V +MD: net/minecraft/world/entity/animal/Panda$PandaMoveControl/m_8126_ ()V net/minecraft/world/entity/animal/Panda$PandaMoveControl/tick ()V +MD: net/minecraft/world/entity/animal/Panda$PandaPanicGoal/ (Lnet/minecraft/world/entity/animal/Panda;D)V net/minecraft/world/entity/animal/Panda$PandaPanicGoal/ (Lnet/minecraft/world/entity/animal/Panda;D)V +MD: net/minecraft/world/entity/animal/Panda$PandaPanicGoal/m_202729_ ()Z net/minecraft/world/entity/animal/Panda$PandaPanicGoal/shouldPanic ()Z +MD: net/minecraft/world/entity/animal/Panda$PandaPanicGoal/m_8045_ ()Z net/minecraft/world/entity/animal/Panda$PandaPanicGoal/canContinueToUse ()Z +MD: net/minecraft/world/entity/animal/Panda$PandaRollGoal/ (Lnet/minecraft/world/entity/animal/Panda;)V net/minecraft/world/entity/animal/Panda$PandaRollGoal/ (Lnet/minecraft/world/entity/animal/Panda;)V +MD: net/minecraft/world/entity/animal/Panda$PandaRollGoal/m_6767_ ()Z net/minecraft/world/entity/animal/Panda$PandaRollGoal/isInterruptable ()Z +MD: net/minecraft/world/entity/animal/Panda$PandaRollGoal/m_8036_ ()Z net/minecraft/world/entity/animal/Panda$PandaRollGoal/canUse ()Z +MD: net/minecraft/world/entity/animal/Panda$PandaRollGoal/m_8045_ ()Z net/minecraft/world/entity/animal/Panda$PandaRollGoal/canContinueToUse ()Z +MD: net/minecraft/world/entity/animal/Panda$PandaRollGoal/m_8056_ ()V net/minecraft/world/entity/animal/Panda$PandaRollGoal/start ()V +MD: net/minecraft/world/entity/animal/Panda$PandaSitGoal/ (Lnet/minecraft/world/entity/animal/Panda;)V net/minecraft/world/entity/animal/Panda$PandaSitGoal/ (Lnet/minecraft/world/entity/animal/Panda;)V +MD: net/minecraft/world/entity/animal/Panda$PandaSitGoal/m_8036_ ()Z net/minecraft/world/entity/animal/Panda$PandaSitGoal/canUse ()Z +MD: net/minecraft/world/entity/animal/Panda$PandaSitGoal/m_8037_ ()V net/minecraft/world/entity/animal/Panda$PandaSitGoal/tick ()V +MD: net/minecraft/world/entity/animal/Panda$PandaSitGoal/m_8041_ ()V net/minecraft/world/entity/animal/Panda$PandaSitGoal/stop ()V +MD: net/minecraft/world/entity/animal/Panda$PandaSitGoal/m_8045_ ()Z net/minecraft/world/entity/animal/Panda$PandaSitGoal/canContinueToUse ()Z +MD: net/minecraft/world/entity/animal/Panda$PandaSitGoal/m_8056_ ()V net/minecraft/world/entity/animal/Panda$PandaSitGoal/start ()V +MD: net/minecraft/world/entity/animal/Panda$PandaSneezeGoal/ (Lnet/minecraft/world/entity/animal/Panda;)V net/minecraft/world/entity/animal/Panda$PandaSneezeGoal/ (Lnet/minecraft/world/entity/animal/Panda;)V +MD: net/minecraft/world/entity/animal/Panda$PandaSneezeGoal/m_8036_ ()Z net/minecraft/world/entity/animal/Panda$PandaSneezeGoal/canUse ()Z +MD: net/minecraft/world/entity/animal/Panda$PandaSneezeGoal/m_8045_ ()Z net/minecraft/world/entity/animal/Panda$PandaSneezeGoal/canContinueToUse ()Z +MD: net/minecraft/world/entity/animal/Panda$PandaSneezeGoal/m_8056_ ()V net/minecraft/world/entity/animal/Panda$PandaSneezeGoal/start ()V +MD: net/minecraft/world/entity/animal/Parrot/ ()V net/minecraft/world/entity/animal/Parrot/ ()V +MD: net/minecraft/world/entity/animal/Parrot/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V net/minecraft/world/entity/animal/Parrot/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V +MD: net/minecraft/world/entity/animal/Parrot/m_142039_ ()Z net/minecraft/world/entity/animal/Parrot/isFlapping ()Z +MD: net/minecraft/world/entity/animal/Parrot/m_142043_ ()V net/minecraft/world/entity/animal/Parrot/onFlap ()V +MD: net/minecraft/world/entity/animal/Parrot/m_142606_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/AgeableMob;)Lnet/minecraft/world/entity/AgeableMob; net/minecraft/world/entity/animal/Parrot/getBreedOffspring (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/AgeableMob;)Lnet/minecraft/world/entity/AgeableMob; +MD: net/minecraft/world/entity/animal/Parrot/m_218236_ (Lnet/minecraft/util/RandomSource;)F net/minecraft/world/entity/animal/Parrot/getPitch (Lnet/minecraft/util/RandomSource;)F +MD: net/minecraft/world/entity/animal/Parrot/m_218238_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/util/RandomSource;)Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/animal/Parrot/getAmbient (Lnet/minecraft/world/level/Level;Lnet/minecraft/util/RandomSource;)Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/animal/Parrot/m_218241_ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/world/entity/MobSpawnType;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)Z net/minecraft/world/entity/animal/Parrot/checkParrotSpawnRules (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/world/entity/MobSpawnType;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)Z +MD: net/minecraft/world/entity/animal/Parrot/m_28464_ (Lnet/minecraft/world/entity/animal/Parrot$Variant;)V net/minecraft/world/entity/animal/Parrot/setVariant (Lnet/minecraft/world/entity/animal/Parrot$Variant;)V +MD: net/minecraft/world/entity/animal/Parrot/m_28464_ (Ljava/lang/Object;)V net/minecraft/world/entity/animal/Parrot/setVariant (Ljava/lang/Object;)V +MD: net/minecraft/world/entity/animal/Parrot/m_28554_ ()Ljava/lang/Object; net/minecraft/world/entity/animal/Parrot/getVariant ()Ljava/lang/Object; +MD: net/minecraft/world/entity/animal/Parrot/m_28554_ ()Lnet/minecraft/world/entity/animal/Parrot$Variant; net/minecraft/world/entity/animal/Parrot/getVariant ()Lnet/minecraft/world/entity/animal/Parrot$Variant; +MD: net/minecraft/world/entity/animal/Parrot/m_29382_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/entity/Entity;)Z net/minecraft/world/entity/animal/Parrot/imitateNearbyMobs (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/entity/Entity;)Z +MD: net/minecraft/world/entity/animal/Parrot/m_29397_ (Ljava/util/HashMap;)V net/minecraft/world/entity/animal/Parrot/lambda$static$0 (Ljava/util/HashMap;)V +MD: net/minecraft/world/entity/animal/Parrot/m_29408_ (Lnet/minecraft/world/entity/EntityType;)Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/animal/Parrot/getImitatedSound (Lnet/minecraft/world/entity/EntityType;)Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/animal/Parrot/m_29438_ ()Lnet/minecraft/world/entity/ai/attributes/AttributeSupplier$Builder; net/minecraft/world/entity/animal/Parrot/createAttributes ()Lnet/minecraft/world/entity/ai/attributes/AttributeSupplier$Builder; +MD: net/minecraft/world/entity/animal/Parrot/m_29439_ ()Z net/minecraft/world/entity/animal/Parrot/isPartyParrot ()Z +MD: net/minecraft/world/entity/animal/Parrot/m_29442_ ()V net/minecraft/world/entity/animal/Parrot/calculateFlapping ()V +MD: net/minecraft/world/entity/animal/Parrot/m_29443_ ()Z net/minecraft/world/entity/animal/Parrot/isFlying ()Z +MD: net/minecraft/world/entity/animal/Parrot/m_5592_ ()Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/animal/Parrot/getDeathSound ()Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/animal/Parrot/m_5720_ ()Lnet/minecraft/sounds/SoundSource; net/minecraft/world/entity/animal/Parrot/getSoundSource ()Lnet/minecraft/sounds/SoundSource; +MD: net/minecraft/world/entity/animal/Parrot/m_6037_ (Lnet/minecraft/world/level/Level;)Lnet/minecraft/world/entity/ai/navigation/PathNavigation; net/minecraft/world/entity/animal/Parrot/createNavigation (Lnet/minecraft/world/level/Level;)Lnet/minecraft/world/entity/ai/navigation/PathNavigation; +MD: net/minecraft/world/entity/animal/Parrot/m_6071_ (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;)Lnet/minecraft/world/InteractionResult; net/minecraft/world/entity/animal/Parrot/mobInteract (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;)Lnet/minecraft/world/InteractionResult; +MD: net/minecraft/world/entity/animal/Parrot/m_6094_ ()Z net/minecraft/world/entity/animal/Parrot/isPushable ()Z +MD: net/minecraft/world/entity/animal/Parrot/m_6100_ ()F net/minecraft/world/entity/animal/Parrot/getVoicePitch ()F +MD: net/minecraft/world/entity/animal/Parrot/m_6162_ ()Z net/minecraft/world/entity/animal/Parrot/isBaby ()Z +MD: net/minecraft/world/entity/animal/Parrot/m_6431_ (Lnet/minecraft/world/entity/Pose;Lnet/minecraft/world/entity/EntityDimensions;)F net/minecraft/world/entity/animal/Parrot/getStandingEyeHeight (Lnet/minecraft/world/entity/Pose;Lnet/minecraft/world/entity/EntityDimensions;)F +MD: net/minecraft/world/entity/animal/Parrot/m_6469_ (Lnet/minecraft/world/damagesource/DamageSource;F)Z net/minecraft/world/entity/animal/Parrot/hurt (Lnet/minecraft/world/damagesource/DamageSource;F)Z +MD: net/minecraft/world/entity/animal/Parrot/m_6518_ (Lnet/minecraft/world/level/ServerLevelAccessor;Lnet/minecraft/world/DifficultyInstance;Lnet/minecraft/world/entity/MobSpawnType;Lnet/minecraft/world/entity/SpawnGroupData;Lnet/minecraft/nbt/CompoundTag;)Lnet/minecraft/world/entity/SpawnGroupData; net/minecraft/world/entity/animal/Parrot/finalizeSpawn (Lnet/minecraft/world/level/ServerLevelAccessor;Lnet/minecraft/world/DifficultyInstance;Lnet/minecraft/world/entity/MobSpawnType;Lnet/minecraft/world/entity/SpawnGroupData;Lnet/minecraft/nbt/CompoundTag;)Lnet/minecraft/world/entity/SpawnGroupData; +MD: net/minecraft/world/entity/animal/Parrot/m_6818_ (Lnet/minecraft/core/BlockPos;Z)V net/minecraft/world/entity/animal/Parrot/setRecordPlayingNearby (Lnet/minecraft/core/BlockPos;Z)V +MD: net/minecraft/world/entity/animal/Parrot/m_6898_ (Lnet/minecraft/world/item/ItemStack;)Z net/minecraft/world/entity/animal/Parrot/isFood (Lnet/minecraft/world/item/ItemStack;)Z +MD: net/minecraft/world/entity/animal/Parrot/m_7324_ (Lnet/minecraft/world/entity/Entity;)V net/minecraft/world/entity/animal/Parrot/doPush (Lnet/minecraft/world/entity/Entity;)V +MD: net/minecraft/world/entity/animal/Parrot/m_7327_ (Lnet/minecraft/world/entity/Entity;)Z net/minecraft/world/entity/animal/Parrot/doHurtTarget (Lnet/minecraft/world/entity/Entity;)Z +MD: net/minecraft/world/entity/animal/Parrot/m_7355_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V net/minecraft/world/entity/animal/Parrot/playStepSound (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V +MD: net/minecraft/world/entity/animal/Parrot/m_7378_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/entity/animal/Parrot/readAdditionalSaveData (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/entity/animal/Parrot/m_7380_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/entity/animal/Parrot/addAdditionalSaveData (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/entity/animal/Parrot/m_7515_ ()Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/animal/Parrot/getAmbientSound ()Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/animal/Parrot/m_7840_ (DZLnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/BlockPos;)V net/minecraft/world/entity/animal/Parrot/checkFallDamage (DZLnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/world/entity/animal/Parrot/m_7848_ (Lnet/minecraft/world/entity/animal/Animal;)Z net/minecraft/world/entity/animal/Parrot/canMate (Lnet/minecraft/world/entity/animal/Animal;)Z +MD: net/minecraft/world/entity/animal/Parrot/m_7939_ ()Lnet/minecraft/world/phys/Vec3; net/minecraft/world/entity/animal/Parrot/getLeashOffset ()Lnet/minecraft/world/phys/Vec3; +MD: net/minecraft/world/entity/animal/Parrot/m_7975_ (Lnet/minecraft/world/damagesource/DamageSource;)Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/animal/Parrot/getHurtSound (Lnet/minecraft/world/damagesource/DamageSource;)Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/animal/Parrot/m_8097_ ()V net/minecraft/world/entity/animal/Parrot/defineSynchedData ()V +MD: net/minecraft/world/entity/animal/Parrot/m_8099_ ()V net/minecraft/world/entity/animal/Parrot/registerGoals ()V +MD: net/minecraft/world/entity/animal/Parrot/m_8107_ ()V net/minecraft/world/entity/animal/Parrot/aiStep ()V +MD: net/minecraft/world/entity/animal/Parrot$1/ ()V net/minecraft/world/entity/animal/Parrot$1/ ()V +MD: net/minecraft/world/entity/animal/Parrot$1/test (Ljava/lang/Object;)Z net/minecraft/world/entity/animal/Parrot$1/test (Ljava/lang/Object;)Z +MD: net/minecraft/world/entity/animal/Parrot$1/test (Lnet/minecraft/world/entity/Mob;)Z net/minecraft/world/entity/animal/Parrot$1/test (Lnet/minecraft/world/entity/Mob;)Z +MD: net/minecraft/world/entity/animal/Parrot$ParrotWanderGoal/ (Lnet/minecraft/world/entity/PathfinderMob;D)V net/minecraft/world/entity/animal/Parrot$ParrotWanderGoal/ (Lnet/minecraft/world/entity/PathfinderMob;D)V +MD: net/minecraft/world/entity/animal/Parrot$ParrotWanderGoal/m_186227_ ()Lnet/minecraft/world/phys/Vec3; net/minecraft/world/entity/animal/Parrot$ParrotWanderGoal/getTreePos ()Lnet/minecraft/world/phys/Vec3; +MD: net/minecraft/world/entity/animal/Parrot$ParrotWanderGoal/m_7037_ ()Lnet/minecraft/world/phys/Vec3; net/minecraft/world/entity/animal/Parrot$ParrotWanderGoal/getPosition ()Lnet/minecraft/world/phys/Vec3; +MD: net/minecraft/world/entity/animal/Parrot$Variant/ ()V net/minecraft/world/entity/animal/Parrot$Variant/ ()V +MD: net/minecraft/world/entity/animal/Parrot$Variant/ (Ljava/lang/String;IILjava/lang/String;)V net/minecraft/world/entity/animal/Parrot$Variant/ (Ljava/lang/String;IILjava/lang/String;)V +MD: net/minecraft/world/entity/animal/Parrot$Variant/m_262398_ (I)Lnet/minecraft/world/entity/animal/Parrot$Variant; net/minecraft/world/entity/animal/Parrot$Variant/byId (I)Lnet/minecraft/world/entity/animal/Parrot$Variant; +MD: net/minecraft/world/entity/animal/Parrot$Variant/m_262428_ ()[Lnet/minecraft/world/entity/animal/Parrot$Variant; net/minecraft/world/entity/animal/Parrot$Variant/$values ()[Lnet/minecraft/world/entity/animal/Parrot$Variant; +MD: net/minecraft/world/entity/animal/Parrot$Variant/m_262504_ ()I net/minecraft/world/entity/animal/Parrot$Variant/getId ()I +MD: net/minecraft/world/entity/animal/Parrot$Variant/m_7912_ ()Ljava/lang/String; net/minecraft/world/entity/animal/Parrot$Variant/getSerializedName ()Ljava/lang/String; +MD: net/minecraft/world/entity/animal/Parrot$Variant/valueOf (Ljava/lang/String;)Lnet/minecraft/world/entity/animal/Parrot$Variant; net/minecraft/world/entity/animal/Parrot$Variant/valueOf (Ljava/lang/String;)Lnet/minecraft/world/entity/animal/Parrot$Variant; +MD: net/minecraft/world/entity/animal/Parrot$Variant/values ()[Lnet/minecraft/world/entity/animal/Parrot$Variant; net/minecraft/world/entity/animal/Parrot$Variant/values ()[Lnet/minecraft/world/entity/animal/Parrot$Variant; +MD: net/minecraft/world/entity/animal/Pig/ ()V net/minecraft/world/entity/animal/Pig/ ()V +MD: net/minecraft/world/entity/animal/Pig/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V net/minecraft/world/entity/animal/Pig/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V +MD: net/minecraft/world/entity/animal/Pig/m_142606_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/AgeableMob;)Lnet/minecraft/world/entity/animal/Pig; net/minecraft/world/entity/animal/Pig/getBreedOffspring (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/AgeableMob;)Lnet/minecraft/world/entity/animal/Pig; +MD: net/minecraft/world/entity/animal/Pig/m_142606_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/AgeableMob;)Lnet/minecraft/world/entity/AgeableMob; net/minecraft/world/entity/animal/Pig/getBreedOffspring (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/AgeableMob;)Lnet/minecraft/world/entity/AgeableMob; +MD: net/minecraft/world/entity/animal/Pig/m_245547_ (Lnet/minecraft/world/entity/player/Player;)F net/minecraft/world/entity/animal/Pig/getRiddenSpeed (Lnet/minecraft/world/entity/player/Player;)F +MD: net/minecraft/world/entity/animal/Pig/m_274312_ (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/phys/Vec3;)Lnet/minecraft/world/phys/Vec3; net/minecraft/world/entity/animal/Pig/getRiddenInput (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/phys/Vec3;)Lnet/minecraft/world/phys/Vec3; +MD: net/minecraft/world/entity/animal/Pig/m_274498_ (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/phys/Vec3;)V net/minecraft/world/entity/animal/Pig/tickRidden (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/phys/Vec3;)V +MD: net/minecraft/world/entity/animal/Pig/m_29503_ ()Lnet/minecraft/world/entity/ai/attributes/AttributeSupplier$Builder; net/minecraft/world/entity/animal/Pig/createAttributes ()Lnet/minecraft/world/entity/ai/attributes/AttributeSupplier$Builder; +MD: net/minecraft/world/entity/animal/Pig/m_5592_ ()Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/animal/Pig/getDeathSound ()Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/animal/Pig/m_5853_ (Lnet/minecraft/sounds/SoundSource;)V net/minecraft/world/entity/animal/Pig/equipSaddle (Lnet/minecraft/sounds/SoundSource;)V +MD: net/minecraft/world/entity/animal/Pig/m_5907_ ()V net/minecraft/world/entity/animal/Pig/dropEquipment ()V +MD: net/minecraft/world/entity/animal/Pig/m_6071_ (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;)Lnet/minecraft/world/InteractionResult; net/minecraft/world/entity/animal/Pig/mobInteract (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;)Lnet/minecraft/world/InteractionResult; +MD: net/minecraft/world/entity/animal/Pig/m_6254_ ()Z net/minecraft/world/entity/animal/Pig/isSaddled ()Z +MD: net/minecraft/world/entity/animal/Pig/m_6688_ ()Lnet/minecraft/world/entity/LivingEntity; net/minecraft/world/entity/animal/Pig/getControllingPassenger ()Lnet/minecraft/world/entity/LivingEntity; +MD: net/minecraft/world/entity/animal/Pig/m_6741_ ()Z net/minecraft/world/entity/animal/Pig/isSaddleable ()Z +MD: net/minecraft/world/entity/animal/Pig/m_6746_ ()Z net/minecraft/world/entity/animal/Pig/boost ()Z +MD: net/minecraft/world/entity/animal/Pig/m_6898_ (Lnet/minecraft/world/item/ItemStack;)Z net/minecraft/world/entity/animal/Pig/isFood (Lnet/minecraft/world/item/ItemStack;)Z +MD: net/minecraft/world/entity/animal/Pig/m_7350_ (Lnet/minecraft/network/syncher/EntityDataAccessor;)V net/minecraft/world/entity/animal/Pig/onSyncedDataUpdated (Lnet/minecraft/network/syncher/EntityDataAccessor;)V +MD: net/minecraft/world/entity/animal/Pig/m_7355_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V net/minecraft/world/entity/animal/Pig/playStepSound (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V +MD: net/minecraft/world/entity/animal/Pig/m_7378_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/entity/animal/Pig/readAdditionalSaveData (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/entity/animal/Pig/m_7380_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/entity/animal/Pig/addAdditionalSaveData (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/entity/animal/Pig/m_7515_ ()Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/animal/Pig/getAmbientSound ()Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/animal/Pig/m_7688_ (Lnet/minecraft/world/entity/LivingEntity;)Lnet/minecraft/world/phys/Vec3; net/minecraft/world/entity/animal/Pig/getDismountLocationForPassenger (Lnet/minecraft/world/entity/LivingEntity;)Lnet/minecraft/world/phys/Vec3; +MD: net/minecraft/world/entity/animal/Pig/m_7939_ ()Lnet/minecraft/world/phys/Vec3; net/minecraft/world/entity/animal/Pig/getLeashOffset ()Lnet/minecraft/world/phys/Vec3; +MD: net/minecraft/world/entity/animal/Pig/m_7975_ (Lnet/minecraft/world/damagesource/DamageSource;)Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/animal/Pig/getHurtSound (Lnet/minecraft/world/damagesource/DamageSource;)Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/animal/Pig/m_8038_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LightningBolt;)V net/minecraft/world/entity/animal/Pig/thunderHit (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LightningBolt;)V +MD: net/minecraft/world/entity/animal/Pig/m_8097_ ()V net/minecraft/world/entity/animal/Pig/defineSynchedData ()V +MD: net/minecraft/world/entity/animal/Pig/m_8099_ ()V net/minecraft/world/entity/animal/Pig/registerGoals ()V +MD: net/minecraft/world/entity/animal/PolarBear/ ()V net/minecraft/world/entity/animal/PolarBear/ ()V +MD: net/minecraft/world/entity/animal/PolarBear/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V net/minecraft/world/entity/animal/PolarBear/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V +MD: net/minecraft/world/entity/animal/PolarBear/m_142606_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/AgeableMob;)Lnet/minecraft/world/entity/AgeableMob; net/minecraft/world/entity/animal/PolarBear/getBreedOffspring (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/AgeableMob;)Lnet/minecraft/world/entity/AgeableMob; +MD: net/minecraft/world/entity/animal/PolarBear/m_218249_ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/world/entity/MobSpawnType;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)Z net/minecraft/world/entity/animal/PolarBear/checkPolarBearSpawnRules (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/world/entity/MobSpawnType;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)Z +MD: net/minecraft/world/entity/animal/PolarBear/m_29560_ ()Lnet/minecraft/world/entity/ai/attributes/AttributeSupplier$Builder; net/minecraft/world/entity/animal/PolarBear/createAttributes ()Lnet/minecraft/world/entity/ai/attributes/AttributeSupplier$Builder; +MD: net/minecraft/world/entity/animal/PolarBear/m_29561_ ()V net/minecraft/world/entity/animal/PolarBear/playWarningSound ()V +MD: net/minecraft/world/entity/animal/PolarBear/m_29562_ ()Z net/minecraft/world/entity/animal/PolarBear/isStanding ()Z +MD: net/minecraft/world/entity/animal/PolarBear/m_29567_ (Z)V net/minecraft/world/entity/animal/PolarBear/setStanding (Z)V +MD: net/minecraft/world/entity/animal/PolarBear/m_29569_ (F)F net/minecraft/world/entity/animal/PolarBear/getStandingAnimationScale (F)F +MD: net/minecraft/world/entity/animal/PolarBear/m_5592_ ()Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/animal/PolarBear/getDeathSound ()Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/animal/PolarBear/m_6108_ ()F net/minecraft/world/entity/animal/PolarBear/getWaterSlowDown ()F +MD: net/minecraft/world/entity/animal/PolarBear/m_6120_ ()Ljava/util/UUID; net/minecraft/world/entity/animal/PolarBear/getPersistentAngerTarget ()Ljava/util/UUID; +MD: net/minecraft/world/entity/animal/PolarBear/m_6518_ (Lnet/minecraft/world/level/ServerLevelAccessor;Lnet/minecraft/world/DifficultyInstance;Lnet/minecraft/world/entity/MobSpawnType;Lnet/minecraft/world/entity/SpawnGroupData;Lnet/minecraft/nbt/CompoundTag;)Lnet/minecraft/world/entity/SpawnGroupData; net/minecraft/world/entity/animal/PolarBear/finalizeSpawn (Lnet/minecraft/world/level/ServerLevelAccessor;Lnet/minecraft/world/DifficultyInstance;Lnet/minecraft/world/entity/MobSpawnType;Lnet/minecraft/world/entity/SpawnGroupData;Lnet/minecraft/nbt/CompoundTag;)Lnet/minecraft/world/entity/SpawnGroupData; +MD: net/minecraft/world/entity/animal/PolarBear/m_6784_ ()I net/minecraft/world/entity/animal/PolarBear/getRemainingPersistentAngerTime ()I +MD: net/minecraft/world/entity/animal/PolarBear/m_6825_ ()V net/minecraft/world/entity/animal/PolarBear/startPersistentAngerTimer ()V +MD: net/minecraft/world/entity/animal/PolarBear/m_6898_ (Lnet/minecraft/world/item/ItemStack;)Z net/minecraft/world/entity/animal/PolarBear/isFood (Lnet/minecraft/world/item/ItemStack;)Z +MD: net/minecraft/world/entity/animal/PolarBear/m_6925_ (Ljava/util/UUID;)V net/minecraft/world/entity/animal/PolarBear/setPersistentAngerTarget (Ljava/util/UUID;)V +MD: net/minecraft/world/entity/animal/PolarBear/m_6972_ (Lnet/minecraft/world/entity/Pose;)Lnet/minecraft/world/entity/EntityDimensions; net/minecraft/world/entity/animal/PolarBear/getDimensions (Lnet/minecraft/world/entity/Pose;)Lnet/minecraft/world/entity/EntityDimensions; +MD: net/minecraft/world/entity/animal/PolarBear/m_7327_ (Lnet/minecraft/world/entity/Entity;)Z net/minecraft/world/entity/animal/PolarBear/doHurtTarget (Lnet/minecraft/world/entity/Entity;)Z +MD: net/minecraft/world/entity/animal/PolarBear/m_7355_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V net/minecraft/world/entity/animal/PolarBear/playStepSound (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V +MD: net/minecraft/world/entity/animal/PolarBear/m_7378_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/entity/animal/PolarBear/readAdditionalSaveData (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/entity/animal/PolarBear/m_7380_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/entity/animal/PolarBear/addAdditionalSaveData (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/entity/animal/PolarBear/m_7515_ ()Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/animal/PolarBear/getAmbientSound ()Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/animal/PolarBear/m_7870_ (I)V net/minecraft/world/entity/animal/PolarBear/setRemainingPersistentAngerTime (I)V +MD: net/minecraft/world/entity/animal/PolarBear/m_7975_ (Lnet/minecraft/world/damagesource/DamageSource;)Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/animal/PolarBear/getHurtSound (Lnet/minecraft/world/damagesource/DamageSource;)Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/animal/PolarBear/m_8097_ ()V net/minecraft/world/entity/animal/PolarBear/defineSynchedData ()V +MD: net/minecraft/world/entity/animal/PolarBear/m_8099_ ()V net/minecraft/world/entity/animal/PolarBear/registerGoals ()V +MD: net/minecraft/world/entity/animal/PolarBear/m_8119_ ()V net/minecraft/world/entity/animal/PolarBear/tick ()V +MD: net/minecraft/world/entity/animal/PolarBear$PolarBearAttackPlayersGoal/ (Lnet/minecraft/world/entity/animal/PolarBear;)V net/minecraft/world/entity/animal/PolarBear$PolarBearAttackPlayersGoal/ (Lnet/minecraft/world/entity/animal/PolarBear;)V +MD: net/minecraft/world/entity/animal/PolarBear$PolarBearAttackPlayersGoal/m_7623_ ()D net/minecraft/world/entity/animal/PolarBear$PolarBearAttackPlayersGoal/getFollowDistance ()D +MD: net/minecraft/world/entity/animal/PolarBear$PolarBearAttackPlayersGoal/m_8036_ ()Z net/minecraft/world/entity/animal/PolarBear$PolarBearAttackPlayersGoal/canUse ()Z +MD: net/minecraft/world/entity/animal/PolarBear$PolarBearHurtByTargetGoal/ (Lnet/minecraft/world/entity/animal/PolarBear;)V net/minecraft/world/entity/animal/PolarBear$PolarBearHurtByTargetGoal/ (Lnet/minecraft/world/entity/animal/PolarBear;)V +MD: net/minecraft/world/entity/animal/PolarBear$PolarBearHurtByTargetGoal/m_5766_ (Lnet/minecraft/world/entity/Mob;Lnet/minecraft/world/entity/LivingEntity;)V net/minecraft/world/entity/animal/PolarBear$PolarBearHurtByTargetGoal/alertOther (Lnet/minecraft/world/entity/Mob;Lnet/minecraft/world/entity/LivingEntity;)V +MD: net/minecraft/world/entity/animal/PolarBear$PolarBearHurtByTargetGoal/m_8056_ ()V net/minecraft/world/entity/animal/PolarBear$PolarBearHurtByTargetGoal/start ()V +MD: net/minecraft/world/entity/animal/PolarBear$PolarBearMeleeAttackGoal/ (Lnet/minecraft/world/entity/animal/PolarBear;)V net/minecraft/world/entity/animal/PolarBear$PolarBearMeleeAttackGoal/ (Lnet/minecraft/world/entity/animal/PolarBear;)V +MD: net/minecraft/world/entity/animal/PolarBear$PolarBearMeleeAttackGoal/m_6639_ (Lnet/minecraft/world/entity/LivingEntity;)D net/minecraft/world/entity/animal/PolarBear$PolarBearMeleeAttackGoal/getAttackReachSqr (Lnet/minecraft/world/entity/LivingEntity;)D +MD: net/minecraft/world/entity/animal/PolarBear$PolarBearMeleeAttackGoal/m_6739_ (Lnet/minecraft/world/entity/LivingEntity;D)V net/minecraft/world/entity/animal/PolarBear$PolarBearMeleeAttackGoal/checkAndPerformAttack (Lnet/minecraft/world/entity/LivingEntity;D)V +MD: net/minecraft/world/entity/animal/PolarBear$PolarBearMeleeAttackGoal/m_8041_ ()V net/minecraft/world/entity/animal/PolarBear$PolarBearMeleeAttackGoal/stop ()V +MD: net/minecraft/world/entity/animal/PolarBear$PolarBearPanicGoal/ (Lnet/minecraft/world/entity/animal/PolarBear;)V net/minecraft/world/entity/animal/PolarBear$PolarBearPanicGoal/ (Lnet/minecraft/world/entity/animal/PolarBear;)V +MD: net/minecraft/world/entity/animal/PolarBear$PolarBearPanicGoal/m_202729_ ()Z net/minecraft/world/entity/animal/PolarBear$PolarBearPanicGoal/shouldPanic ()Z +MD: net/minecraft/world/entity/animal/Pufferfish/ ()V net/minecraft/world/entity/animal/Pufferfish/ ()V +MD: net/minecraft/world/entity/animal/Pufferfish/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V net/minecraft/world/entity/animal/Pufferfish/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V +MD: net/minecraft/world/entity/animal/Pufferfish/m_149012_ (Lnet/minecraft/world/entity/Mob;)Z net/minecraft/world/entity/animal/Pufferfish/lambda$aiStep$1 (Lnet/minecraft/world/entity/Mob;)Z +MD: net/minecraft/world/entity/animal/Pufferfish/m_28282_ ()Lnet/minecraft/world/item/ItemStack; net/minecraft/world/entity/animal/Pufferfish/getBucketItemStack ()Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/entity/animal/Pufferfish/m_289135_ (Lnet/minecraft/world/entity/LivingEntity;)Z net/minecraft/world/entity/animal/Pufferfish/lambda$static$0 (Lnet/minecraft/world/entity/LivingEntity;)Z +MD: net/minecraft/world/entity/animal/Pufferfish/m_29605_ (Lnet/minecraft/world/entity/Mob;)V net/minecraft/world/entity/animal/Pufferfish/touch (Lnet/minecraft/world/entity/Mob;)V +MD: net/minecraft/world/entity/animal/Pufferfish/m_29618_ (I)V net/minecraft/world/entity/animal/Pufferfish/setPuffState (I)V +MD: net/minecraft/world/entity/animal/Pufferfish/m_29631_ ()I net/minecraft/world/entity/animal/Pufferfish/getPuffState ()I +MD: net/minecraft/world/entity/animal/Pufferfish/m_29638_ (I)F net/minecraft/world/entity/animal/Pufferfish/getScale (I)F +MD: net/minecraft/world/entity/animal/Pufferfish/m_5592_ ()Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/animal/Pufferfish/getDeathSound ()Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/animal/Pufferfish/m_5699_ ()Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/animal/Pufferfish/getFlopSound ()Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/animal/Pufferfish/m_6123_ (Lnet/minecraft/world/entity/player/Player;)V net/minecraft/world/entity/animal/Pufferfish/playerTouch (Lnet/minecraft/world/entity/player/Player;)V +MD: net/minecraft/world/entity/animal/Pufferfish/m_6972_ (Lnet/minecraft/world/entity/Pose;)Lnet/minecraft/world/entity/EntityDimensions; net/minecraft/world/entity/animal/Pufferfish/getDimensions (Lnet/minecraft/world/entity/Pose;)Lnet/minecraft/world/entity/EntityDimensions; +MD: net/minecraft/world/entity/animal/Pufferfish/m_7350_ (Lnet/minecraft/network/syncher/EntityDataAccessor;)V net/minecraft/world/entity/animal/Pufferfish/onSyncedDataUpdated (Lnet/minecraft/network/syncher/EntityDataAccessor;)V +MD: net/minecraft/world/entity/animal/Pufferfish/m_7378_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/entity/animal/Pufferfish/readAdditionalSaveData (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/entity/animal/Pufferfish/m_7380_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/entity/animal/Pufferfish/addAdditionalSaveData (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/entity/animal/Pufferfish/m_7515_ ()Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/animal/Pufferfish/getAmbientSound ()Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/animal/Pufferfish/m_7975_ (Lnet/minecraft/world/damagesource/DamageSource;)Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/animal/Pufferfish/getHurtSound (Lnet/minecraft/world/damagesource/DamageSource;)Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/animal/Pufferfish/m_8097_ ()V net/minecraft/world/entity/animal/Pufferfish/defineSynchedData ()V +MD: net/minecraft/world/entity/animal/Pufferfish/m_8099_ ()V net/minecraft/world/entity/animal/Pufferfish/registerGoals ()V +MD: net/minecraft/world/entity/animal/Pufferfish/m_8107_ ()V net/minecraft/world/entity/animal/Pufferfish/aiStep ()V +MD: net/minecraft/world/entity/animal/Pufferfish/m_8119_ ()V net/minecraft/world/entity/animal/Pufferfish/tick ()V +MD: net/minecraft/world/entity/animal/Pufferfish$PufferfishPuffGoal/ (Lnet/minecraft/world/entity/animal/Pufferfish;)V net/minecraft/world/entity/animal/Pufferfish$PufferfishPuffGoal/ (Lnet/minecraft/world/entity/animal/Pufferfish;)V +MD: net/minecraft/world/entity/animal/Pufferfish$PufferfishPuffGoal/m_149014_ (Lnet/minecraft/world/entity/LivingEntity;)Z net/minecraft/world/entity/animal/Pufferfish$PufferfishPuffGoal/lambda$canUse$0 (Lnet/minecraft/world/entity/LivingEntity;)Z +MD: net/minecraft/world/entity/animal/Pufferfish$PufferfishPuffGoal/m_8036_ ()Z net/minecraft/world/entity/animal/Pufferfish$PufferfishPuffGoal/canUse ()Z +MD: net/minecraft/world/entity/animal/Pufferfish$PufferfishPuffGoal/m_8041_ ()V net/minecraft/world/entity/animal/Pufferfish$PufferfishPuffGoal/stop ()V +MD: net/minecraft/world/entity/animal/Pufferfish$PufferfishPuffGoal/m_8056_ ()V net/minecraft/world/entity/animal/Pufferfish$PufferfishPuffGoal/start ()V +MD: net/minecraft/world/entity/animal/Rabbit/ ()V net/minecraft/world/entity/animal/Rabbit/ ()V +MD: net/minecraft/world/entity/animal/Rabbit/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V net/minecraft/world/entity/animal/Rabbit/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V +MD: net/minecraft/world/entity/animal/Rabbit/m_142606_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/AgeableMob;)Lnet/minecraft/world/entity/animal/Rabbit; net/minecraft/world/entity/animal/Rabbit/getBreedOffspring (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/AgeableMob;)Lnet/minecraft/world/entity/animal/Rabbit; +MD: net/minecraft/world/entity/animal/Rabbit/m_142606_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/AgeableMob;)Lnet/minecraft/world/entity/AgeableMob; net/minecraft/world/entity/animal/Rabbit/getBreedOffspring (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/AgeableMob;)Lnet/minecraft/world/entity/AgeableMob; +MD: net/minecraft/world/entity/animal/Rabbit/m_149037_ (Lnet/minecraft/world/item/ItemStack;)Z net/minecraft/world/entity/animal/Rabbit/isTemptingItem (Lnet/minecraft/world/item/ItemStack;)Z +MD: net/minecraft/world/entity/animal/Rabbit/m_218255_ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/world/entity/MobSpawnType;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)Z net/minecraft/world/entity/animal/Rabbit/checkRabbitSpawnRules (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/world/entity/MobSpawnType;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)Z +MD: net/minecraft/world/entity/animal/Rabbit/m_262482_ (Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/entity/animal/Rabbit$Variant; net/minecraft/world/entity/animal/Rabbit/getRandomRabbitVariant (Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/entity/animal/Rabbit$Variant; +MD: net/minecraft/world/entity/animal/Rabbit/m_284153_ (Lnet/minecraft/world/entity/animal/Rabbit;)Lnet/minecraft/world/entity/ai/control/JumpControl; net/minecraft/world/entity/animal/Rabbit/access$100 (Lnet/minecraft/world/entity/animal/Rabbit;)Lnet/minecraft/world/entity/ai/control/JumpControl; +MD: net/minecraft/world/entity/animal/Rabbit/m_28464_ (Lnet/minecraft/world/entity/animal/Rabbit$Variant;)V net/minecraft/world/entity/animal/Rabbit/setVariant (Lnet/minecraft/world/entity/animal/Rabbit$Variant;)V +MD: net/minecraft/world/entity/animal/Rabbit/m_28464_ (Ljava/lang/Object;)V net/minecraft/world/entity/animal/Rabbit/setVariant (Ljava/lang/Object;)V +MD: net/minecraft/world/entity/animal/Rabbit/m_28554_ ()Ljava/lang/Object; net/minecraft/world/entity/animal/Rabbit/getVariant ()Ljava/lang/Object; +MD: net/minecraft/world/entity/animal/Rabbit/m_28554_ ()Lnet/minecraft/world/entity/animal/Rabbit$Variant; net/minecraft/world/entity/animal/Rabbit/getVariant ()Lnet/minecraft/world/entity/animal/Rabbit$Variant; +MD: net/minecraft/world/entity/animal/Rabbit/m_29670_ (Lnet/minecraft/world/entity/animal/Rabbit;)Z net/minecraft/world/entity/animal/Rabbit/access$000 (Lnet/minecraft/world/entity/animal/Rabbit;)Z +MD: net/minecraft/world/entity/animal/Rabbit/m_29686_ (DD)V net/minecraft/world/entity/animal/Rabbit/facePoint (DD)V +MD: net/minecraft/world/entity/animal/Rabbit/m_29716_ ()V net/minecraft/world/entity/animal/Rabbit/startJumping ()V +MD: net/minecraft/world/entity/animal/Rabbit/m_29717_ ()Lnet/minecraft/world/entity/ai/attributes/AttributeSupplier$Builder; net/minecraft/world/entity/animal/Rabbit/createAttributes ()Lnet/minecraft/world/entity/ai/attributes/AttributeSupplier$Builder; +MD: net/minecraft/world/entity/animal/Rabbit/m_29718_ ()Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/animal/Rabbit/getJumpSound ()Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/animal/Rabbit/m_29720_ ()V net/minecraft/world/entity/animal/Rabbit/enableJumpControl ()V +MD: net/minecraft/world/entity/animal/Rabbit/m_29721_ ()V net/minecraft/world/entity/animal/Rabbit/disableJumpControl ()V +MD: net/minecraft/world/entity/animal/Rabbit/m_29722_ ()V net/minecraft/world/entity/animal/Rabbit/setLandingDelay ()V +MD: net/minecraft/world/entity/animal/Rabbit/m_29723_ ()V net/minecraft/world/entity/animal/Rabbit/checkLandingDelay ()V +MD: net/minecraft/world/entity/animal/Rabbit/m_29724_ ()Z net/minecraft/world/entity/animal/Rabbit/wantsMoreFood ()Z +MD: net/minecraft/world/entity/animal/Rabbit/m_29725_ (D)V net/minecraft/world/entity/animal/Rabbit/setSpeedModifier (D)V +MD: net/minecraft/world/entity/animal/Rabbit/m_29735_ (F)F net/minecraft/world/entity/animal/Rabbit/getJumpCompletion (F)F +MD: net/minecraft/world/entity/animal/Rabbit/m_5592_ ()Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/animal/Rabbit/getDeathSound ()Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/animal/Rabbit/m_5720_ ()Lnet/minecraft/sounds/SoundSource; net/minecraft/world/entity/animal/Rabbit/getSoundSource ()Lnet/minecraft/sounds/SoundSource; +MD: net/minecraft/world/entity/animal/Rabbit/m_5843_ ()Z net/minecraft/world/entity/animal/Rabbit/canSpawnSprintParticle ()Z +MD: net/minecraft/world/entity/animal/Rabbit/m_6118_ ()F net/minecraft/world/entity/animal/Rabbit/getJumpPower ()F +MD: net/minecraft/world/entity/animal/Rabbit/m_6135_ ()V net/minecraft/world/entity/animal/Rabbit/jumpFromGround ()V +MD: net/minecraft/world/entity/animal/Rabbit/m_6518_ (Lnet/minecraft/world/level/ServerLevelAccessor;Lnet/minecraft/world/DifficultyInstance;Lnet/minecraft/world/entity/MobSpawnType;Lnet/minecraft/world/entity/SpawnGroupData;Lnet/minecraft/nbt/CompoundTag;)Lnet/minecraft/world/entity/SpawnGroupData; net/minecraft/world/entity/animal/Rabbit/finalizeSpawn (Lnet/minecraft/world/level/ServerLevelAccessor;Lnet/minecraft/world/DifficultyInstance;Lnet/minecraft/world/entity/MobSpawnType;Lnet/minecraft/world/entity/SpawnGroupData;Lnet/minecraft/nbt/CompoundTag;)Lnet/minecraft/world/entity/SpawnGroupData; +MD: net/minecraft/world/entity/animal/Rabbit/m_6862_ (Z)V net/minecraft/world/entity/animal/Rabbit/setJumping (Z)V +MD: net/minecraft/world/entity/animal/Rabbit/m_6898_ (Lnet/minecraft/world/item/ItemStack;)Z net/minecraft/world/entity/animal/Rabbit/isFood (Lnet/minecraft/world/item/ItemStack;)Z +MD: net/minecraft/world/entity/animal/Rabbit/m_7327_ (Lnet/minecraft/world/entity/Entity;)Z net/minecraft/world/entity/animal/Rabbit/doHurtTarget (Lnet/minecraft/world/entity/Entity;)Z +MD: net/minecraft/world/entity/animal/Rabbit/m_7378_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/entity/animal/Rabbit/readAdditionalSaveData (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/entity/animal/Rabbit/m_7380_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/entity/animal/Rabbit/addAdditionalSaveData (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/entity/animal/Rabbit/m_7515_ ()Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/animal/Rabbit/getAmbientSound ()Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/animal/Rabbit/m_7822_ (B)V net/minecraft/world/entity/animal/Rabbit/handleEntityEvent (B)V +MD: net/minecraft/world/entity/animal/Rabbit/m_7939_ ()Lnet/minecraft/world/phys/Vec3; net/minecraft/world/entity/animal/Rabbit/getLeashOffset ()Lnet/minecraft/world/phys/Vec3; +MD: net/minecraft/world/entity/animal/Rabbit/m_7975_ (Lnet/minecraft/world/damagesource/DamageSource;)Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/animal/Rabbit/getHurtSound (Lnet/minecraft/world/damagesource/DamageSource;)Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/animal/Rabbit/m_8024_ ()V net/minecraft/world/entity/animal/Rabbit/customServerAiStep ()V +MD: net/minecraft/world/entity/animal/Rabbit/m_8097_ ()V net/minecraft/world/entity/animal/Rabbit/defineSynchedData ()V +MD: net/minecraft/world/entity/animal/Rabbit/m_8099_ ()V net/minecraft/world/entity/animal/Rabbit/registerGoals ()V +MD: net/minecraft/world/entity/animal/Rabbit/m_8107_ ()V net/minecraft/world/entity/animal/Rabbit/aiStep ()V +MD: net/minecraft/world/entity/animal/Rabbit$EvilRabbitAttackGoal/ (Lnet/minecraft/world/entity/animal/Rabbit;)V net/minecraft/world/entity/animal/Rabbit$EvilRabbitAttackGoal/ (Lnet/minecraft/world/entity/animal/Rabbit;)V +MD: net/minecraft/world/entity/animal/Rabbit$EvilRabbitAttackGoal/m_6639_ (Lnet/minecraft/world/entity/LivingEntity;)D net/minecraft/world/entity/animal/Rabbit$EvilRabbitAttackGoal/getAttackReachSqr (Lnet/minecraft/world/entity/LivingEntity;)D +MD: net/minecraft/world/entity/animal/Rabbit$RabbitAvoidEntityGoal/ (Lnet/minecraft/world/entity/animal/Rabbit;Ljava/lang/Class;FDD)V net/minecraft/world/entity/animal/Rabbit$RabbitAvoidEntityGoal/ (Lnet/minecraft/world/entity/animal/Rabbit;Ljava/lang/Class;FDD)V +MD: net/minecraft/world/entity/animal/Rabbit$RabbitAvoidEntityGoal/m_8036_ ()Z net/minecraft/world/entity/animal/Rabbit$RabbitAvoidEntityGoal/canUse ()Z +MD: net/minecraft/world/entity/animal/Rabbit$RabbitGroupData/ (Lnet/minecraft/world/entity/animal/Rabbit$Variant;)V net/minecraft/world/entity/animal/Rabbit$RabbitGroupData/ (Lnet/minecraft/world/entity/animal/Rabbit$Variant;)V +MD: net/minecraft/world/entity/animal/Rabbit$RabbitJumpControl/ (Lnet/minecraft/world/entity/animal/Rabbit;)V net/minecraft/world/entity/animal/Rabbit$RabbitJumpControl/ (Lnet/minecraft/world/entity/animal/Rabbit;)V +MD: net/minecraft/world/entity/animal/Rabbit$RabbitJumpControl/m_29758_ (Z)V net/minecraft/world/entity/animal/Rabbit$RabbitJumpControl/setCanJump (Z)V +MD: net/minecraft/world/entity/animal/Rabbit$RabbitJumpControl/m_29761_ ()Z net/minecraft/world/entity/animal/Rabbit$RabbitJumpControl/wantJump ()Z +MD: net/minecraft/world/entity/animal/Rabbit$RabbitJumpControl/m_29762_ ()Z net/minecraft/world/entity/animal/Rabbit$RabbitJumpControl/canJump ()Z +MD: net/minecraft/world/entity/animal/Rabbit$RabbitJumpControl/m_8124_ ()V net/minecraft/world/entity/animal/Rabbit$RabbitJumpControl/tick ()V +MD: net/minecraft/world/entity/animal/Rabbit$RabbitMoveControl/ (Lnet/minecraft/world/entity/animal/Rabbit;)V net/minecraft/world/entity/animal/Rabbit$RabbitMoveControl/ (Lnet/minecraft/world/entity/animal/Rabbit;)V +MD: net/minecraft/world/entity/animal/Rabbit$RabbitMoveControl/m_6849_ (DDDD)V net/minecraft/world/entity/animal/Rabbit$RabbitMoveControl/setWantedPosition (DDDD)V +MD: net/minecraft/world/entity/animal/Rabbit$RabbitMoveControl/m_8126_ ()V net/minecraft/world/entity/animal/Rabbit$RabbitMoveControl/tick ()V +MD: net/minecraft/world/entity/animal/Rabbit$RabbitPanicGoal/ (Lnet/minecraft/world/entity/animal/Rabbit;D)V net/minecraft/world/entity/animal/Rabbit$RabbitPanicGoal/ (Lnet/minecraft/world/entity/animal/Rabbit;D)V +MD: net/minecraft/world/entity/animal/Rabbit$RabbitPanicGoal/m_8037_ ()V net/minecraft/world/entity/animal/Rabbit$RabbitPanicGoal/tick ()V +MD: net/minecraft/world/entity/animal/Rabbit$RaidGardenGoal/ (Lnet/minecraft/world/entity/animal/Rabbit;)V net/minecraft/world/entity/animal/Rabbit$RaidGardenGoal/ (Lnet/minecraft/world/entity/animal/Rabbit;)V +MD: net/minecraft/world/entity/animal/Rabbit$RaidGardenGoal/m_6465_ (Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/entity/animal/Rabbit$RaidGardenGoal/isValidTarget (Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/entity/animal/Rabbit$RaidGardenGoal/m_8036_ ()Z net/minecraft/world/entity/animal/Rabbit$RaidGardenGoal/canUse ()Z +MD: net/minecraft/world/entity/animal/Rabbit$RaidGardenGoal/m_8037_ ()V net/minecraft/world/entity/animal/Rabbit$RaidGardenGoal/tick ()V +MD: net/minecraft/world/entity/animal/Rabbit$RaidGardenGoal/m_8045_ ()Z net/minecraft/world/entity/animal/Rabbit$RaidGardenGoal/canContinueToUse ()Z +MD: net/minecraft/world/entity/animal/Rabbit$Variant/ ()V net/minecraft/world/entity/animal/Rabbit$Variant/ ()V +MD: net/minecraft/world/entity/animal/Rabbit$Variant/ (Ljava/lang/String;IILjava/lang/String;)V net/minecraft/world/entity/animal/Rabbit$Variant/ (Ljava/lang/String;IILjava/lang/String;)V +MD: net/minecraft/world/entity/animal/Rabbit$Variant/m_262367_ (I)Lnet/minecraft/world/entity/animal/Rabbit$Variant; net/minecraft/world/entity/animal/Rabbit$Variant/byId (I)Lnet/minecraft/world/entity/animal/Rabbit$Variant; +MD: net/minecraft/world/entity/animal/Rabbit$Variant/m_262377_ ()I net/minecraft/world/entity/animal/Rabbit$Variant/id ()I +MD: net/minecraft/world/entity/animal/Rabbit$Variant/m_262433_ ()[Lnet/minecraft/world/entity/animal/Rabbit$Variant; net/minecraft/world/entity/animal/Rabbit$Variant/$values ()[Lnet/minecraft/world/entity/animal/Rabbit$Variant; +MD: net/minecraft/world/entity/animal/Rabbit$Variant/m_7912_ ()Ljava/lang/String; net/minecraft/world/entity/animal/Rabbit$Variant/getSerializedName ()Ljava/lang/String; +MD: net/minecraft/world/entity/animal/Rabbit$Variant/valueOf (Ljava/lang/String;)Lnet/minecraft/world/entity/animal/Rabbit$Variant; net/minecraft/world/entity/animal/Rabbit$Variant/valueOf (Ljava/lang/String;)Lnet/minecraft/world/entity/animal/Rabbit$Variant; +MD: net/minecraft/world/entity/animal/Rabbit$Variant/values ()[Lnet/minecraft/world/entity/animal/Rabbit$Variant; net/minecraft/world/entity/animal/Rabbit$Variant/values ()[Lnet/minecraft/world/entity/animal/Rabbit$Variant; +MD: net/minecraft/world/entity/animal/Salmon/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V net/minecraft/world/entity/animal/Salmon/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V +MD: net/minecraft/world/entity/animal/Salmon/m_28282_ ()Lnet/minecraft/world/item/ItemStack; net/minecraft/world/entity/animal/Salmon/getBucketItemStack ()Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/entity/animal/Salmon/m_5592_ ()Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/animal/Salmon/getDeathSound ()Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/animal/Salmon/m_5699_ ()Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/animal/Salmon/getFlopSound ()Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/animal/Salmon/m_6031_ ()I net/minecraft/world/entity/animal/Salmon/getMaxSchoolSize ()I +MD: net/minecraft/world/entity/animal/Salmon/m_7515_ ()Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/animal/Salmon/getAmbientSound ()Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/animal/Salmon/m_7975_ (Lnet/minecraft/world/damagesource/DamageSource;)Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/animal/Salmon/getHurtSound (Lnet/minecraft/world/damagesource/DamageSource;)Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/animal/Sheep/ ()V net/minecraft/world/entity/animal/Sheep/ ()V +MD: net/minecraft/world/entity/animal/Sheep/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V net/minecraft/world/entity/animal/Sheep/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V +MD: net/minecraft/world/entity/animal/Sheep/m_142606_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/AgeableMob;)Lnet/minecraft/world/entity/animal/Sheep; net/minecraft/world/entity/animal/Sheep/getBreedOffspring (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/AgeableMob;)Lnet/minecraft/world/entity/animal/Sheep; +MD: net/minecraft/world/entity/animal/Sheep/m_142606_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/AgeableMob;)Lnet/minecraft/world/entity/AgeableMob; net/minecraft/world/entity/animal/Sheep/getBreedOffspring (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/AgeableMob;)Lnet/minecraft/world/entity/AgeableMob; +MD: net/minecraft/world/entity/animal/Sheep/m_218261_ (Lnet/minecraft/util/RandomSource;)Lnet/minecraft/world/item/DyeColor; net/minecraft/world/entity/animal/Sheep/getRandomSheepColor (Lnet/minecraft/util/RandomSource;)Lnet/minecraft/world/item/DyeColor; +MD: net/minecraft/world/entity/animal/Sheep/m_289136_ (Lnet/minecraft/world/inventory/CraftingContainer;Lnet/minecraft/world/item/crafting/CraftingRecipe;)Lnet/minecraft/world/item/ItemStack; net/minecraft/world/entity/animal/Sheep/lambda$getOffspringColor$3 (Lnet/minecraft/world/inventory/CraftingContainer;Lnet/minecraft/world/item/crafting/CraftingRecipe;)Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/entity/animal/Sheep/m_289137_ (Lnet/minecraft/world/item/DyeColor;Lnet/minecraft/world/item/DyeColor;)Lnet/minecraft/world/item/DyeColor; net/minecraft/world/entity/animal/Sheep/lambda$getOffspringColor$4 (Lnet/minecraft/world/item/DyeColor;Lnet/minecraft/world/item/DyeColor;)Lnet/minecraft/world/item/DyeColor; +MD: net/minecraft/world/entity/animal/Sheep/m_29820_ (Lnet/minecraft/world/InteractionHand;Lnet/minecraft/world/entity/player/Player;)V net/minecraft/world/entity/animal/Sheep/lambda$mobInteract$2 (Lnet/minecraft/world/InteractionHand;Lnet/minecraft/world/entity/player/Player;)V +MD: net/minecraft/world/entity/animal/Sheep/m_29823_ (Lnet/minecraft/world/entity/animal/Animal;Lnet/minecraft/world/entity/animal/Animal;)Lnet/minecraft/world/item/DyeColor; net/minecraft/world/entity/animal/Sheep/getOffspringColor (Lnet/minecraft/world/entity/animal/Animal;Lnet/minecraft/world/entity/animal/Animal;)Lnet/minecraft/world/item/DyeColor; +MD: net/minecraft/world/entity/animal/Sheep/m_29829_ (Lnet/minecraft/world/item/DyeColor;)[F net/minecraft/world/entity/animal/Sheep/getColorArray (Lnet/minecraft/world/item/DyeColor;)[F +MD: net/minecraft/world/entity/animal/Sheep/m_29831_ (Lnet/minecraft/world/item/DyeColor;Lnet/minecraft/world/item/DyeColor;)Lnet/minecraft/world/inventory/CraftingContainer; net/minecraft/world/entity/animal/Sheep/makeContainer (Lnet/minecraft/world/item/DyeColor;Lnet/minecraft/world/item/DyeColor;)Lnet/minecraft/world/inventory/CraftingContainer; +MD: net/minecraft/world/entity/animal/Sheep/m_29840_ (Ljava/util/EnumMap;)V net/minecraft/world/entity/animal/Sheep/lambda$static$0 (Ljava/util/EnumMap;)V +MD: net/minecraft/world/entity/animal/Sheep/m_29855_ (Lnet/minecraft/world/item/DyeColor;)V net/minecraft/world/entity/animal/Sheep/setColor (Lnet/minecraft/world/item/DyeColor;)V +MD: net/minecraft/world/entity/animal/Sheep/m_29865_ (Lnet/minecraft/world/item/DyeColor;)[F net/minecraft/world/entity/animal/Sheep/createSheepColor (Lnet/minecraft/world/item/DyeColor;)[F +MD: net/minecraft/world/entity/animal/Sheep/m_29867_ (Lnet/minecraft/world/item/DyeColor;)Lnet/minecraft/world/item/DyeColor; net/minecraft/world/entity/animal/Sheep/lambda$static$1 (Lnet/minecraft/world/item/DyeColor;)Lnet/minecraft/world/item/DyeColor; +MD: net/minecraft/world/entity/animal/Sheep/m_29873_ ()Lnet/minecraft/world/entity/ai/attributes/AttributeSupplier$Builder; net/minecraft/world/entity/animal/Sheep/createAttributes ()Lnet/minecraft/world/entity/ai/attributes/AttributeSupplier$Builder; +MD: net/minecraft/world/entity/animal/Sheep/m_29874_ ()Lnet/minecraft/world/item/DyeColor; net/minecraft/world/entity/animal/Sheep/getColor ()Lnet/minecraft/world/item/DyeColor; +MD: net/minecraft/world/entity/animal/Sheep/m_29875_ ()Z net/minecraft/world/entity/animal/Sheep/isSheared ()Z +MD: net/minecraft/world/entity/animal/Sheep/m_29878_ (Z)V net/minecraft/world/entity/animal/Sheep/setSheared (Z)V +MD: net/minecraft/world/entity/animal/Sheep/m_29880_ (F)F net/minecraft/world/entity/animal/Sheep/getHeadEatPositionScale (F)F +MD: net/minecraft/world/entity/animal/Sheep/m_29882_ (F)F net/minecraft/world/entity/animal/Sheep/getHeadEatAngleScale (F)F +MD: net/minecraft/world/entity/animal/Sheep/m_5592_ ()Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/animal/Sheep/getDeathSound ()Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/animal/Sheep/m_5851_ (Lnet/minecraft/sounds/SoundSource;)V net/minecraft/world/entity/animal/Sheep/shear (Lnet/minecraft/sounds/SoundSource;)V +MD: net/minecraft/world/entity/animal/Sheep/m_6071_ (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;)Lnet/minecraft/world/InteractionResult; net/minecraft/world/entity/animal/Sheep/mobInteract (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;)Lnet/minecraft/world/InteractionResult; +MD: net/minecraft/world/entity/animal/Sheep/m_6220_ ()Z net/minecraft/world/entity/animal/Sheep/readyForShearing ()Z +MD: net/minecraft/world/entity/animal/Sheep/m_6431_ (Lnet/minecraft/world/entity/Pose;Lnet/minecraft/world/entity/EntityDimensions;)F net/minecraft/world/entity/animal/Sheep/getStandingEyeHeight (Lnet/minecraft/world/entity/Pose;Lnet/minecraft/world/entity/EntityDimensions;)F +MD: net/minecraft/world/entity/animal/Sheep/m_6518_ (Lnet/minecraft/world/level/ServerLevelAccessor;Lnet/minecraft/world/DifficultyInstance;Lnet/minecraft/world/entity/MobSpawnType;Lnet/minecraft/world/entity/SpawnGroupData;Lnet/minecraft/nbt/CompoundTag;)Lnet/minecraft/world/entity/SpawnGroupData; net/minecraft/world/entity/animal/Sheep/finalizeSpawn (Lnet/minecraft/world/level/ServerLevelAccessor;Lnet/minecraft/world/DifficultyInstance;Lnet/minecraft/world/entity/MobSpawnType;Lnet/minecraft/world/entity/SpawnGroupData;Lnet/minecraft/nbt/CompoundTag;)Lnet/minecraft/world/entity/SpawnGroupData; +MD: net/minecraft/world/entity/animal/Sheep/m_7355_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V net/minecraft/world/entity/animal/Sheep/playStepSound (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V +MD: net/minecraft/world/entity/animal/Sheep/m_7378_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/entity/animal/Sheep/readAdditionalSaveData (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/entity/animal/Sheep/m_7380_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/entity/animal/Sheep/addAdditionalSaveData (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/entity/animal/Sheep/m_7515_ ()Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/animal/Sheep/getAmbientSound ()Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/animal/Sheep/m_7582_ ()Lnet/minecraft/resources/ResourceLocation; net/minecraft/world/entity/animal/Sheep/getDefaultLootTable ()Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/world/entity/animal/Sheep/m_7822_ (B)V net/minecraft/world/entity/animal/Sheep/handleEntityEvent (B)V +MD: net/minecraft/world/entity/animal/Sheep/m_7975_ (Lnet/minecraft/world/damagesource/DamageSource;)Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/animal/Sheep/getHurtSound (Lnet/minecraft/world/damagesource/DamageSource;)Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/animal/Sheep/m_8024_ ()V net/minecraft/world/entity/animal/Sheep/customServerAiStep ()V +MD: net/minecraft/world/entity/animal/Sheep/m_8035_ ()V net/minecraft/world/entity/animal/Sheep/ate ()V +MD: net/minecraft/world/entity/animal/Sheep/m_8097_ ()V net/minecraft/world/entity/animal/Sheep/defineSynchedData ()V +MD: net/minecraft/world/entity/animal/Sheep/m_8099_ ()V net/minecraft/world/entity/animal/Sheep/registerGoals ()V +MD: net/minecraft/world/entity/animal/Sheep/m_8107_ ()V net/minecraft/world/entity/animal/Sheep/aiStep ()V +MD: net/minecraft/world/entity/animal/Sheep$1/ (Lnet/minecraft/world/inventory/MenuType;I)V net/minecraft/world/entity/animal/Sheep$1/ (Lnet/minecraft/world/inventory/MenuType;I)V +MD: net/minecraft/world/entity/animal/Sheep$1/m_6875_ (Lnet/minecraft/world/entity/player/Player;)Z net/minecraft/world/entity/animal/Sheep$1/stillValid (Lnet/minecraft/world/entity/player/Player;)Z +MD: net/minecraft/world/entity/animal/Sheep$1/m_7648_ (Lnet/minecraft/world/entity/player/Player;I)Lnet/minecraft/world/item/ItemStack; net/minecraft/world/entity/animal/Sheep$1/quickMoveStack (Lnet/minecraft/world/entity/player/Player;I)Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/entity/animal/Sheep$2/ ()V net/minecraft/world/entity/animal/Sheep$2/ ()V +MD: net/minecraft/world/entity/animal/ShoulderRidingEntity/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V net/minecraft/world/entity/animal/ShoulderRidingEntity/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V +MD: net/minecraft/world/entity/animal/ShoulderRidingEntity/m_29895_ (Lnet/minecraft/server/level/ServerPlayer;)Z net/minecraft/world/entity/animal/ShoulderRidingEntity/setEntityOnShoulder (Lnet/minecraft/server/level/ServerPlayer;)Z +MD: net/minecraft/world/entity/animal/ShoulderRidingEntity/m_29897_ ()Z net/minecraft/world/entity/animal/ShoulderRidingEntity/canSitOnShoulder ()Z +MD: net/minecraft/world/entity/animal/ShoulderRidingEntity/m_8119_ ()V net/minecraft/world/entity/animal/ShoulderRidingEntity/tick ()V +MD: net/minecraft/world/entity/animal/SnowGolem/ ()V net/minecraft/world/entity/animal/SnowGolem/ ()V +MD: net/minecraft/world/entity/animal/SnowGolem/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V net/minecraft/world/entity/animal/SnowGolem/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V +MD: net/minecraft/world/entity/animal/SnowGolem/m_29908_ (Lnet/minecraft/world/InteractionHand;Lnet/minecraft/world/entity/player/Player;)V net/minecraft/world/entity/animal/SnowGolem/lambda$mobInteract$1 (Lnet/minecraft/world/InteractionHand;Lnet/minecraft/world/entity/player/Player;)V +MD: net/minecraft/world/entity/animal/SnowGolem/m_29930_ ()Z net/minecraft/world/entity/animal/SnowGolem/hasPumpkin ()Z +MD: net/minecraft/world/entity/animal/SnowGolem/m_29931_ (Lnet/minecraft/world/entity/LivingEntity;)Z net/minecraft/world/entity/animal/SnowGolem/lambda$registerGoals$0 (Lnet/minecraft/world/entity/LivingEntity;)Z +MD: net/minecraft/world/entity/animal/SnowGolem/m_29934_ ()Lnet/minecraft/world/entity/ai/attributes/AttributeSupplier$Builder; net/minecraft/world/entity/animal/SnowGolem/createAttributes ()Lnet/minecraft/world/entity/ai/attributes/AttributeSupplier$Builder; +MD: net/minecraft/world/entity/animal/SnowGolem/m_29936_ (Z)V net/minecraft/world/entity/animal/SnowGolem/setPumpkin (Z)V +MD: net/minecraft/world/entity/animal/SnowGolem/m_5592_ ()Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/animal/SnowGolem/getDeathSound ()Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/animal/SnowGolem/m_5851_ (Lnet/minecraft/sounds/SoundSource;)V net/minecraft/world/entity/animal/SnowGolem/shear (Lnet/minecraft/sounds/SoundSource;)V +MD: net/minecraft/world/entity/animal/SnowGolem/m_6071_ (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;)Lnet/minecraft/world/InteractionResult; net/minecraft/world/entity/animal/SnowGolem/mobInteract (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;)Lnet/minecraft/world/InteractionResult; +MD: net/minecraft/world/entity/animal/SnowGolem/m_6126_ ()Z net/minecraft/world/entity/animal/SnowGolem/isSensitiveToWater ()Z +MD: net/minecraft/world/entity/animal/SnowGolem/m_6220_ ()Z net/minecraft/world/entity/animal/SnowGolem/readyForShearing ()Z +MD: net/minecraft/world/entity/animal/SnowGolem/m_6431_ (Lnet/minecraft/world/entity/Pose;Lnet/minecraft/world/entity/EntityDimensions;)F net/minecraft/world/entity/animal/SnowGolem/getStandingEyeHeight (Lnet/minecraft/world/entity/Pose;Lnet/minecraft/world/entity/EntityDimensions;)F +MD: net/minecraft/world/entity/animal/SnowGolem/m_6504_ (Lnet/minecraft/world/entity/LivingEntity;F)V net/minecraft/world/entity/animal/SnowGolem/performRangedAttack (Lnet/minecraft/world/entity/LivingEntity;F)V +MD: net/minecraft/world/entity/animal/SnowGolem/m_7378_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/entity/animal/SnowGolem/readAdditionalSaveData (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/entity/animal/SnowGolem/m_7380_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/entity/animal/SnowGolem/addAdditionalSaveData (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/entity/animal/SnowGolem/m_7515_ ()Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/animal/SnowGolem/getAmbientSound ()Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/animal/SnowGolem/m_7939_ ()Lnet/minecraft/world/phys/Vec3; net/minecraft/world/entity/animal/SnowGolem/getLeashOffset ()Lnet/minecraft/world/phys/Vec3; +MD: net/minecraft/world/entity/animal/SnowGolem/m_7975_ (Lnet/minecraft/world/damagesource/DamageSource;)Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/animal/SnowGolem/getHurtSound (Lnet/minecraft/world/damagesource/DamageSource;)Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/animal/SnowGolem/m_8097_ ()V net/minecraft/world/entity/animal/SnowGolem/defineSynchedData ()V +MD: net/minecraft/world/entity/animal/SnowGolem/m_8099_ ()V net/minecraft/world/entity/animal/SnowGolem/registerGoals ()V +MD: net/minecraft/world/entity/animal/SnowGolem/m_8107_ ()V net/minecraft/world/entity/animal/SnowGolem/aiStep ()V +MD: net/minecraft/world/entity/animal/Squid/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V net/minecraft/world/entity/animal/Squid/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V +MD: net/minecraft/world/entity/animal/Squid/m_142033_ ()Lnet/minecraft/core/particles/ParticleOptions; net/minecraft/world/entity/animal/Squid/getInkParticle ()Lnet/minecraft/core/particles/ParticleOptions; +MD: net/minecraft/world/entity/animal/Squid/m_142319_ ()Lnet/minecraft/world/entity/Entity$MovementEmission; net/minecraft/world/entity/animal/Squid/getMovementEmission ()Lnet/minecraft/world/entity/Entity$MovementEmission; +MD: net/minecraft/world/entity/animal/Squid/m_142555_ ()Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/animal/Squid/getSquirtSound ()Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/animal/Squid/m_149049_ (Lnet/minecraft/world/entity/animal/Squid;)Z net/minecraft/world/entity/animal/Squid/access$000 (Lnet/minecraft/world/entity/animal/Squid;)Z +MD: net/minecraft/world/entity/animal/Squid/m_29958_ (FFF)V net/minecraft/world/entity/animal/Squid/setMovementVector (FFF)V +MD: net/minecraft/world/entity/animal/Squid/m_29981_ ()Z net/minecraft/world/entity/animal/Squid/hasMovementVector ()Z +MD: net/minecraft/world/entity/animal/Squid/m_29982_ ()V net/minecraft/world/entity/animal/Squid/spawnInk ()V +MD: net/minecraft/world/entity/animal/Squid/m_29985_ (Lnet/minecraft/world/phys/Vec3;)Lnet/minecraft/world/phys/Vec3; net/minecraft/world/entity/animal/Squid/rotateVector (Lnet/minecraft/world/phys/Vec3;)Lnet/minecraft/world/phys/Vec3; +MD: net/minecraft/world/entity/animal/Squid/m_29988_ ()Lnet/minecraft/world/entity/ai/attributes/AttributeSupplier$Builder; net/minecraft/world/entity/animal/Squid/createAttributes ()Lnet/minecraft/world/entity/ai/attributes/AttributeSupplier$Builder; +MD: net/minecraft/world/entity/animal/Squid/m_5592_ ()Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/animal/Squid/getDeathSound ()Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/animal/Squid/m_6121_ ()F net/minecraft/world/entity/animal/Squid/getSoundVolume ()F +MD: net/minecraft/world/entity/animal/Squid/m_6431_ (Lnet/minecraft/world/entity/Pose;Lnet/minecraft/world/entity/EntityDimensions;)F net/minecraft/world/entity/animal/Squid/getStandingEyeHeight (Lnet/minecraft/world/entity/Pose;Lnet/minecraft/world/entity/EntityDimensions;)F +MD: net/minecraft/world/entity/animal/Squid/m_6469_ (Lnet/minecraft/world/damagesource/DamageSource;F)Z net/minecraft/world/entity/animal/Squid/hurt (Lnet/minecraft/world/damagesource/DamageSource;F)Z +MD: net/minecraft/world/entity/animal/Squid/m_6573_ (Lnet/minecraft/world/entity/player/Player;)Z net/minecraft/world/entity/animal/Squid/canBeLeashed (Lnet/minecraft/world/entity/player/Player;)Z +MD: net/minecraft/world/entity/animal/Squid/m_7023_ (Lnet/minecraft/world/phys/Vec3;)V net/minecraft/world/entity/animal/Squid/travel (Lnet/minecraft/world/phys/Vec3;)V +MD: net/minecraft/world/entity/animal/Squid/m_7515_ ()Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/animal/Squid/getAmbientSound ()Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/animal/Squid/m_7822_ (B)V net/minecraft/world/entity/animal/Squid/handleEntityEvent (B)V +MD: net/minecraft/world/entity/animal/Squid/m_7975_ (Lnet/minecraft/world/damagesource/DamageSource;)Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/animal/Squid/getHurtSound (Lnet/minecraft/world/damagesource/DamageSource;)Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/animal/Squid/m_8099_ ()V net/minecraft/world/entity/animal/Squid/registerGoals ()V +MD: net/minecraft/world/entity/animal/Squid/m_8107_ ()V net/minecraft/world/entity/animal/Squid/aiStep ()V +MD: net/minecraft/world/entity/animal/Squid$SquidFleeGoal/ (Lnet/minecraft/world/entity/animal/Squid;)V net/minecraft/world/entity/animal/Squid$SquidFleeGoal/ (Lnet/minecraft/world/entity/animal/Squid;)V +MD: net/minecraft/world/entity/animal/Squid$SquidFleeGoal/m_183429_ ()Z net/minecraft/world/entity/animal/Squid$SquidFleeGoal/requiresUpdateEveryTick ()Z +MD: net/minecraft/world/entity/animal/Squid$SquidFleeGoal/m_8036_ ()Z net/minecraft/world/entity/animal/Squid$SquidFleeGoal/canUse ()Z +MD: net/minecraft/world/entity/animal/Squid$SquidFleeGoal/m_8037_ ()V net/minecraft/world/entity/animal/Squid$SquidFleeGoal/tick ()V +MD: net/minecraft/world/entity/animal/Squid$SquidFleeGoal/m_8056_ ()V net/minecraft/world/entity/animal/Squid$SquidFleeGoal/start ()V +MD: net/minecraft/world/entity/animal/Squid$SquidRandomMovementGoal/ (Lnet/minecraft/world/entity/animal/Squid;Lnet/minecraft/world/entity/animal/Squid;)V net/minecraft/world/entity/animal/Squid$SquidRandomMovementGoal/ (Lnet/minecraft/world/entity/animal/Squid;Lnet/minecraft/world/entity/animal/Squid;)V +MD: net/minecraft/world/entity/animal/Squid$SquidRandomMovementGoal/m_8036_ ()Z net/minecraft/world/entity/animal/Squid$SquidRandomMovementGoal/canUse ()Z +MD: net/minecraft/world/entity/animal/Squid$SquidRandomMovementGoal/m_8037_ ()V net/minecraft/world/entity/animal/Squid$SquidRandomMovementGoal/tick ()V +MD: net/minecraft/world/entity/animal/TropicalFish/ ()V net/minecraft/world/entity/animal/TropicalFish/ ()V +MD: net/minecraft/world/entity/animal/TropicalFish/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V net/minecraft/world/entity/animal/TropicalFish/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V +MD: net/minecraft/world/entity/animal/TropicalFish/m_218266_ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/world/entity/MobSpawnType;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)Z net/minecraft/world/entity/animal/TropicalFish/checkTropicalFishSpawnRules (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/world/entity/MobSpawnType;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)Z +MD: net/minecraft/world/entity/animal/TropicalFish/m_262388_ (Lnet/minecraft/world/entity/animal/TropicalFish$Pattern;Lnet/minecraft/world/item/DyeColor;Lnet/minecraft/world/item/DyeColor;)I net/minecraft/world/entity/animal/TropicalFish/packVariant (Lnet/minecraft/world/entity/animal/TropicalFish$Pattern;Lnet/minecraft/world/item/DyeColor;Lnet/minecraft/world/item/DyeColor;)I +MD: net/minecraft/world/entity/animal/TropicalFish/m_262390_ (I)Lnet/minecraft/world/entity/animal/TropicalFish$Pattern; net/minecraft/world/entity/animal/TropicalFish/getPattern (I)Lnet/minecraft/world/entity/animal/TropicalFish$Pattern; +MD: net/minecraft/world/entity/animal/TropicalFish/m_262459_ ()Lnet/minecraft/world/item/DyeColor; net/minecraft/world/entity/animal/TropicalFish/getBaseColor ()Lnet/minecraft/world/item/DyeColor; +MD: net/minecraft/world/entity/animal/TropicalFish/m_262477_ ()Lnet/minecraft/world/item/DyeColor; net/minecraft/world/entity/animal/TropicalFish/getPatternColor ()Lnet/minecraft/world/item/DyeColor; +MD: net/minecraft/world/entity/animal/TropicalFish/m_28282_ ()Lnet/minecraft/world/item/ItemStack; net/minecraft/world/entity/animal/TropicalFish/getBucketItemStack ()Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/entity/animal/TropicalFish/m_28464_ (Lnet/minecraft/world/entity/animal/TropicalFish$Pattern;)V net/minecraft/world/entity/animal/TropicalFish/setVariant (Lnet/minecraft/world/entity/animal/TropicalFish$Pattern;)V +MD: net/minecraft/world/entity/animal/TropicalFish/m_28464_ (Ljava/lang/Object;)V net/minecraft/world/entity/animal/TropicalFish/setVariant (Ljava/lang/Object;)V +MD: net/minecraft/world/entity/animal/TropicalFish/m_28554_ ()Lnet/minecraft/world/entity/animal/TropicalFish$Pattern; net/minecraft/world/entity/animal/TropicalFish/getVariant ()Lnet/minecraft/world/entity/animal/TropicalFish$Pattern; +MD: net/minecraft/world/entity/animal/TropicalFish/m_28554_ ()Ljava/lang/Object; net/minecraft/world/entity/animal/TropicalFish/getVariant ()Ljava/lang/Object; +MD: net/minecraft/world/entity/animal/TropicalFish/m_30030_ (I)Ljava/lang/String; net/minecraft/world/entity/animal/TropicalFish/getPredefinedName (I)Ljava/lang/String; +MD: net/minecraft/world/entity/animal/TropicalFish/m_30042_ ()I net/minecraft/world/entity/animal/TropicalFish/getPackedVariant ()I +MD: net/minecraft/world/entity/animal/TropicalFish/m_30050_ (I)Lnet/minecraft/world/item/DyeColor; net/minecraft/world/entity/animal/TropicalFish/getBaseColor (I)Lnet/minecraft/world/item/DyeColor; +MD: net/minecraft/world/entity/animal/TropicalFish/m_30052_ (I)Lnet/minecraft/world/item/DyeColor; net/minecraft/world/entity/animal/TropicalFish/getPatternColor (I)Lnet/minecraft/world/item/DyeColor; +MD: net/minecraft/world/entity/animal/TropicalFish/m_30056_ (I)V net/minecraft/world/entity/animal/TropicalFish/setPackedVariant (I)V +MD: net/minecraft/world/entity/animal/TropicalFish/m_5592_ ()Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/animal/TropicalFish/getDeathSound ()Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/animal/TropicalFish/m_5699_ ()Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/animal/TropicalFish/getFlopSound ()Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/animal/TropicalFish/m_6518_ (Lnet/minecraft/world/level/ServerLevelAccessor;Lnet/minecraft/world/DifficultyInstance;Lnet/minecraft/world/entity/MobSpawnType;Lnet/minecraft/world/entity/SpawnGroupData;Lnet/minecraft/nbt/CompoundTag;)Lnet/minecraft/world/entity/SpawnGroupData; net/minecraft/world/entity/animal/TropicalFish/finalizeSpawn (Lnet/minecraft/world/level/ServerLevelAccessor;Lnet/minecraft/world/DifficultyInstance;Lnet/minecraft/world/entity/MobSpawnType;Lnet/minecraft/world/entity/SpawnGroupData;Lnet/minecraft/nbt/CompoundTag;)Lnet/minecraft/world/entity/SpawnGroupData; +MD: net/minecraft/world/entity/animal/TropicalFish/m_6872_ (Lnet/minecraft/world/item/ItemStack;)V net/minecraft/world/entity/animal/TropicalFish/saveToBucketTag (Lnet/minecraft/world/item/ItemStack;)V +MD: net/minecraft/world/entity/animal/TropicalFish/m_7296_ (I)Z net/minecraft/world/entity/animal/TropicalFish/isMaxGroupSizeReached (I)Z +MD: net/minecraft/world/entity/animal/TropicalFish/m_7378_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/entity/animal/TropicalFish/readAdditionalSaveData (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/entity/animal/TropicalFish/m_7380_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/entity/animal/TropicalFish/addAdditionalSaveData (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/entity/animal/TropicalFish/m_7515_ ()Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/animal/TropicalFish/getAmbientSound ()Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/animal/TropicalFish/m_7975_ (Lnet/minecraft/world/damagesource/DamageSource;)Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/animal/TropicalFish/getHurtSound (Lnet/minecraft/world/damagesource/DamageSource;)Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/animal/TropicalFish/m_8097_ ()V net/minecraft/world/entity/animal/TropicalFish/defineSynchedData ()V +MD: net/minecraft/world/entity/animal/TropicalFish$Base/ ()V net/minecraft/world/entity/animal/TropicalFish$Base/ ()V +MD: net/minecraft/world/entity/animal/TropicalFish$Base/ (Ljava/lang/String;II)V net/minecraft/world/entity/animal/TropicalFish$Base/ (Ljava/lang/String;II)V +MD: net/minecraft/world/entity/animal/TropicalFish$Base/m_262471_ ()[Lnet/minecraft/world/entity/animal/TropicalFish$Base; net/minecraft/world/entity/animal/TropicalFish$Base/$values ()[Lnet/minecraft/world/entity/animal/TropicalFish$Base; +MD: net/minecraft/world/entity/animal/TropicalFish$Base/valueOf (Ljava/lang/String;)Lnet/minecraft/world/entity/animal/TropicalFish$Base; net/minecraft/world/entity/animal/TropicalFish$Base/valueOf (Ljava/lang/String;)Lnet/minecraft/world/entity/animal/TropicalFish$Base; +MD: net/minecraft/world/entity/animal/TropicalFish$Base/values ()[Lnet/minecraft/world/entity/animal/TropicalFish$Base; net/minecraft/world/entity/animal/TropicalFish$Base/values ()[Lnet/minecraft/world/entity/animal/TropicalFish$Base; +MD: net/minecraft/world/entity/animal/TropicalFish$Pattern/ ()V net/minecraft/world/entity/animal/TropicalFish$Pattern/ ()V +MD: net/minecraft/world/entity/animal/TropicalFish$Pattern/ (Ljava/lang/String;ILjava/lang/String;Lnet/minecraft/world/entity/animal/TropicalFish$Base;I)V net/minecraft/world/entity/animal/TropicalFish$Pattern/ (Ljava/lang/String;ILjava/lang/String;Lnet/minecraft/world/entity/animal/TropicalFish$Base;I)V +MD: net/minecraft/world/entity/animal/TropicalFish$Pattern/m_149065_ ()[Lnet/minecraft/world/entity/animal/TropicalFish$Pattern; net/minecraft/world/entity/animal/TropicalFish$Pattern/$values ()[Lnet/minecraft/world/entity/animal/TropicalFish$Pattern; +MD: net/minecraft/world/entity/animal/TropicalFish$Pattern/m_262371_ ()Lnet/minecraft/world/entity/animal/TropicalFish$Base; net/minecraft/world/entity/animal/TropicalFish$Pattern/base ()Lnet/minecraft/world/entity/animal/TropicalFish$Base; +MD: net/minecraft/world/entity/animal/TropicalFish$Pattern/m_262381_ (I)Lnet/minecraft/world/entity/animal/TropicalFish$Pattern; net/minecraft/world/entity/animal/TropicalFish$Pattern/byId (I)Lnet/minecraft/world/entity/animal/TropicalFish$Pattern; +MD: net/minecraft/world/entity/animal/TropicalFish$Pattern/m_262435_ ()I net/minecraft/world/entity/animal/TropicalFish$Pattern/getPackedId ()I +MD: net/minecraft/world/entity/animal/TropicalFish$Pattern/m_262502_ ()Lnet/minecraft/network/chat/Component; net/minecraft/world/entity/animal/TropicalFish$Pattern/displayName ()Lnet/minecraft/network/chat/Component; +MD: net/minecraft/world/entity/animal/TropicalFish$Pattern/m_7912_ ()Ljava/lang/String; net/minecraft/world/entity/animal/TropicalFish$Pattern/getSerializedName ()Ljava/lang/String; +MD: net/minecraft/world/entity/animal/TropicalFish$Pattern/valueOf (Ljava/lang/String;)Lnet/minecraft/world/entity/animal/TropicalFish$Pattern; net/minecraft/world/entity/animal/TropicalFish$Pattern/valueOf (Ljava/lang/String;)Lnet/minecraft/world/entity/animal/TropicalFish$Pattern; +MD: net/minecraft/world/entity/animal/TropicalFish$Pattern/values ()[Lnet/minecraft/world/entity/animal/TropicalFish$Pattern; net/minecraft/world/entity/animal/TropicalFish$Pattern/values ()[Lnet/minecraft/world/entity/animal/TropicalFish$Pattern; +MD: net/minecraft/world/entity/animal/TropicalFish$TropicalFishGroupData/ (Lnet/minecraft/world/entity/animal/TropicalFish;Lnet/minecraft/world/entity/animal/TropicalFish$Variant;)V net/minecraft/world/entity/animal/TropicalFish$TropicalFishGroupData/ (Lnet/minecraft/world/entity/animal/TropicalFish;Lnet/minecraft/world/entity/animal/TropicalFish$Variant;)V +MD: net/minecraft/world/entity/animal/TropicalFish$Variant/ (Lnet/minecraft/world/entity/animal/TropicalFish$Pattern;Lnet/minecraft/world/item/DyeColor;Lnet/minecraft/world/item/DyeColor;)V net/minecraft/world/entity/animal/TropicalFish$Variant/ (Lnet/minecraft/world/entity/animal/TropicalFish$Pattern;Lnet/minecraft/world/item/DyeColor;Lnet/minecraft/world/item/DyeColor;)V +MD: net/minecraft/world/entity/animal/TropicalFish$Variant/equals (Ljava/lang/Object;)Z net/minecraft/world/entity/animal/TropicalFish$Variant/equals (Ljava/lang/Object;)Z +MD: net/minecraft/world/entity/animal/TropicalFish$Variant/f_262204_ ()Lnet/minecraft/world/entity/animal/TropicalFish$Pattern; net/minecraft/world/entity/animal/TropicalFish$Variant/pattern ()Lnet/minecraft/world/entity/animal/TropicalFish$Pattern; +MD: net/minecraft/world/entity/animal/TropicalFish$Variant/f_262223_ ()Lnet/minecraft/world/item/DyeColor; net/minecraft/world/entity/animal/TropicalFish$Variant/patternColor ()Lnet/minecraft/world/item/DyeColor; +MD: net/minecraft/world/entity/animal/TropicalFish$Variant/f_262309_ ()Lnet/minecraft/world/item/DyeColor; net/minecraft/world/entity/animal/TropicalFish$Variant/baseColor ()Lnet/minecraft/world/item/DyeColor; +MD: net/minecraft/world/entity/animal/TropicalFish$Variant/hashCode ()I net/minecraft/world/entity/animal/TropicalFish$Variant/hashCode ()I +MD: net/minecraft/world/entity/animal/TropicalFish$Variant/m_262472_ ()I net/minecraft/world/entity/animal/TropicalFish$Variant/getPackedId ()I +MD: net/minecraft/world/entity/animal/TropicalFish$Variant/toString ()Ljava/lang/String; net/minecraft/world/entity/animal/TropicalFish$Variant/toString ()Ljava/lang/String; +MD: net/minecraft/world/entity/animal/Turtle/ ()V net/minecraft/world/entity/animal/Turtle/ ()V +MD: net/minecraft/world/entity/animal/Turtle/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V net/minecraft/world/entity/animal/Turtle/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V +MD: net/minecraft/world/entity/animal/Turtle/m_142606_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/AgeableMob;)Lnet/minecraft/world/entity/AgeableMob; net/minecraft/world/entity/animal/Turtle/getBreedOffspring (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/AgeableMob;)Lnet/minecraft/world/entity/AgeableMob; +MD: net/minecraft/world/entity/animal/Turtle/m_218272_ (Lnet/minecraft/world/entity/animal/Turtle;)Lnet/minecraft/util/RandomSource; net/minecraft/world/entity/animal/Turtle/access$000 (Lnet/minecraft/world/entity/animal/Turtle;)Lnet/minecraft/util/RandomSource; +MD: net/minecraft/world/entity/animal/Turtle/m_218274_ (Lnet/minecraft/world/entity/animal/Turtle;)Lnet/minecraft/util/RandomSource; net/minecraft/world/entity/animal/Turtle/access$100 (Lnet/minecraft/world/entity/animal/Turtle;)Lnet/minecraft/util/RandomSource; +MD: net/minecraft/world/entity/animal/Turtle/m_218276_ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/world/entity/MobSpawnType;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)Z net/minecraft/world/entity/animal/Turtle/checkTurtleSpawnRules (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/world/entity/MobSpawnType;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)Z +MD: net/minecraft/world/entity/animal/Turtle/m_289138_ (Lnet/minecraft/world/entity/LivingEntity;)Z net/minecraft/world/entity/animal/Turtle/lambda$static$0 (Lnet/minecraft/world/entity/LivingEntity;)Z +MD: net/minecraft/world/entity/animal/Turtle/m_30205_ ()Z net/minecraft/world/entity/animal/Turtle/hasEgg ()Z +MD: net/minecraft/world/entity/animal/Turtle/m_30206_ ()Z net/minecraft/world/entity/animal/Turtle/isLayingEgg ()Z +MD: net/minecraft/world/entity/animal/Turtle/m_30207_ ()Lnet/minecraft/world/entity/ai/attributes/AttributeSupplier$Builder; net/minecraft/world/entity/animal/Turtle/createAttributes ()Lnet/minecraft/world/entity/ai/attributes/AttributeSupplier$Builder; +MD: net/minecraft/world/entity/animal/Turtle/m_30208_ ()Lnet/minecraft/core/BlockPos; net/minecraft/world/entity/animal/Turtle/getHomePos ()Lnet/minecraft/core/BlockPos; +MD: net/minecraft/world/entity/animal/Turtle/m_30209_ ()Lnet/minecraft/core/BlockPos; net/minecraft/world/entity/animal/Turtle/getTravelPos ()Lnet/minecraft/core/BlockPos; +MD: net/minecraft/world/entity/animal/Turtle/m_30211_ ()Z net/minecraft/world/entity/animal/Turtle/isGoingHome ()Z +MD: net/minecraft/world/entity/animal/Turtle/m_30212_ ()Z net/minecraft/world/entity/animal/Turtle/isTravelling ()Z +MD: net/minecraft/world/entity/animal/Turtle/m_30219_ (Lnet/minecraft/core/BlockPos;)V net/minecraft/world/entity/animal/Turtle/setHomePos (Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/world/entity/animal/Turtle/m_30223_ (Lnet/minecraft/core/BlockPos;)V net/minecraft/world/entity/animal/Turtle/setTravelPos (Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/world/entity/animal/Turtle/m_30232_ ()V net/minecraft/world/entity/animal/Turtle/ageBoundaryReached ()V +MD: net/minecraft/world/entity/animal/Turtle/m_30234_ (Z)V net/minecraft/world/entity/animal/Turtle/setHasEgg (Z)V +MD: net/minecraft/world/entity/animal/Turtle/m_30236_ (Z)V net/minecraft/world/entity/animal/Turtle/setLayingEgg (Z)V +MD: net/minecraft/world/entity/animal/Turtle/m_30238_ (Z)V net/minecraft/world/entity/animal/Turtle/setGoingHome (Z)V +MD: net/minecraft/world/entity/animal/Turtle/m_30240_ (Z)V net/minecraft/world/entity/animal/Turtle/setTravelling (Z)V +MD: net/minecraft/world/entity/animal/Turtle/m_5501_ ()Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/animal/Turtle/getSwimSound ()Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/animal/Turtle/m_5592_ ()Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/animal/Turtle/getDeathSound ()Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/animal/Turtle/m_5610_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/LevelReader;)F net/minecraft/world/entity/animal/Turtle/getWalkTargetValue (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/LevelReader;)F +MD: net/minecraft/world/entity/animal/Turtle/m_5625_ (F)V net/minecraft/world/entity/animal/Turtle/playSwimSound (F)V +MD: net/minecraft/world/entity/animal/Turtle/m_5957_ ()Z net/minecraft/world/entity/animal/Turtle/canFallInLove ()Z +MD: net/minecraft/world/entity/animal/Turtle/m_6037_ (Lnet/minecraft/world/level/Level;)Lnet/minecraft/world/entity/ai/navigation/PathNavigation; net/minecraft/world/entity/animal/Turtle/createNavigation (Lnet/minecraft/world/level/Level;)Lnet/minecraft/world/entity/ai/navigation/PathNavigation; +MD: net/minecraft/world/entity/animal/Turtle/m_6040_ ()Z net/minecraft/world/entity/animal/Turtle/canBreatheUnderwater ()Z +MD: net/minecraft/world/entity/animal/Turtle/m_6059_ ()F net/minecraft/world/entity/animal/Turtle/nextStep ()F +MD: net/minecraft/world/entity/animal/Turtle/m_6063_ ()Z net/minecraft/world/entity/animal/Turtle/isPushedByFluid ()Z +MD: net/minecraft/world/entity/animal/Turtle/m_6134_ ()F net/minecraft/world/entity/animal/Turtle/getScale ()F +MD: net/minecraft/world/entity/animal/Turtle/m_6336_ ()Lnet/minecraft/world/entity/MobType; net/minecraft/world/entity/animal/Turtle/getMobType ()Lnet/minecraft/world/entity/MobType; +MD: net/minecraft/world/entity/animal/Turtle/m_6518_ (Lnet/minecraft/world/level/ServerLevelAccessor;Lnet/minecraft/world/DifficultyInstance;Lnet/minecraft/world/entity/MobSpawnType;Lnet/minecraft/world/entity/SpawnGroupData;Lnet/minecraft/nbt/CompoundTag;)Lnet/minecraft/world/entity/SpawnGroupData; net/minecraft/world/entity/animal/Turtle/finalizeSpawn (Lnet/minecraft/world/level/ServerLevelAccessor;Lnet/minecraft/world/DifficultyInstance;Lnet/minecraft/world/entity/MobSpawnType;Lnet/minecraft/world/entity/SpawnGroupData;Lnet/minecraft/nbt/CompoundTag;)Lnet/minecraft/world/entity/SpawnGroupData; +MD: net/minecraft/world/entity/animal/Turtle/m_6573_ (Lnet/minecraft/world/entity/player/Player;)Z net/minecraft/world/entity/animal/Turtle/canBeLeashed (Lnet/minecraft/world/entity/player/Player;)Z +MD: net/minecraft/world/entity/animal/Turtle/m_6898_ (Lnet/minecraft/world/item/ItemStack;)Z net/minecraft/world/entity/animal/Turtle/isFood (Lnet/minecraft/world/item/ItemStack;)Z +MD: net/minecraft/world/entity/animal/Turtle/m_7023_ (Lnet/minecraft/world/phys/Vec3;)V net/minecraft/world/entity/animal/Turtle/travel (Lnet/minecraft/world/phys/Vec3;)V +MD: net/minecraft/world/entity/animal/Turtle/m_7355_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V net/minecraft/world/entity/animal/Turtle/playStepSound (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V +MD: net/minecraft/world/entity/animal/Turtle/m_7378_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/entity/animal/Turtle/readAdditionalSaveData (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/entity/animal/Turtle/m_7380_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/entity/animal/Turtle/addAdditionalSaveData (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/entity/animal/Turtle/m_7515_ ()Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/animal/Turtle/getAmbientSound ()Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/animal/Turtle/m_7975_ (Lnet/minecraft/world/damagesource/DamageSource;)Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/animal/Turtle/getHurtSound (Lnet/minecraft/world/damagesource/DamageSource;)Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/animal/Turtle/m_8038_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LightningBolt;)V net/minecraft/world/entity/animal/Turtle/thunderHit (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LightningBolt;)V +MD: net/minecraft/world/entity/animal/Turtle/m_8097_ ()V net/minecraft/world/entity/animal/Turtle/defineSynchedData ()V +MD: net/minecraft/world/entity/animal/Turtle/m_8099_ ()V net/minecraft/world/entity/animal/Turtle/registerGoals ()V +MD: net/minecraft/world/entity/animal/Turtle/m_8100_ ()I net/minecraft/world/entity/animal/Turtle/getAmbientSoundInterval ()I +MD: net/minecraft/world/entity/animal/Turtle/m_8107_ ()V net/minecraft/world/entity/animal/Turtle/aiStep ()V +MD: net/minecraft/world/entity/animal/Turtle$TurtleBreedGoal/ (Lnet/minecraft/world/entity/animal/Turtle;D)V net/minecraft/world/entity/animal/Turtle$TurtleBreedGoal/ (Lnet/minecraft/world/entity/animal/Turtle;D)V +MD: net/minecraft/world/entity/animal/Turtle$TurtleBreedGoal/m_8026_ ()V net/minecraft/world/entity/animal/Turtle$TurtleBreedGoal/breed ()V +MD: net/minecraft/world/entity/animal/Turtle$TurtleBreedGoal/m_8036_ ()Z net/minecraft/world/entity/animal/Turtle$TurtleBreedGoal/canUse ()Z +MD: net/minecraft/world/entity/animal/Turtle$TurtleGoHomeGoal/ (Lnet/minecraft/world/entity/animal/Turtle;D)V net/minecraft/world/entity/animal/Turtle$TurtleGoHomeGoal/ (Lnet/minecraft/world/entity/animal/Turtle;D)V +MD: net/minecraft/world/entity/animal/Turtle$TurtleGoHomeGoal/m_8036_ ()Z net/minecraft/world/entity/animal/Turtle$TurtleGoHomeGoal/canUse ()Z +MD: net/minecraft/world/entity/animal/Turtle$TurtleGoHomeGoal/m_8037_ ()V net/minecraft/world/entity/animal/Turtle$TurtleGoHomeGoal/tick ()V +MD: net/minecraft/world/entity/animal/Turtle$TurtleGoHomeGoal/m_8041_ ()V net/minecraft/world/entity/animal/Turtle$TurtleGoHomeGoal/stop ()V +MD: net/minecraft/world/entity/animal/Turtle$TurtleGoHomeGoal/m_8045_ ()Z net/minecraft/world/entity/animal/Turtle$TurtleGoHomeGoal/canContinueToUse ()Z +MD: net/minecraft/world/entity/animal/Turtle$TurtleGoHomeGoal/m_8056_ ()V net/minecraft/world/entity/animal/Turtle$TurtleGoHomeGoal/start ()V +MD: net/minecraft/world/entity/animal/Turtle$TurtleGoToWaterGoal/ (Lnet/minecraft/world/entity/animal/Turtle;D)V net/minecraft/world/entity/animal/Turtle$TurtleGoToWaterGoal/ (Lnet/minecraft/world/entity/animal/Turtle;D)V +MD: net/minecraft/world/entity/animal/Turtle$TurtleGoToWaterGoal/m_6465_ (Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/entity/animal/Turtle$TurtleGoToWaterGoal/isValidTarget (Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/entity/animal/Turtle$TurtleGoToWaterGoal/m_8036_ ()Z net/minecraft/world/entity/animal/Turtle$TurtleGoToWaterGoal/canUse ()Z +MD: net/minecraft/world/entity/animal/Turtle$TurtleGoToWaterGoal/m_8045_ ()Z net/minecraft/world/entity/animal/Turtle$TurtleGoToWaterGoal/canContinueToUse ()Z +MD: net/minecraft/world/entity/animal/Turtle$TurtleGoToWaterGoal/m_8064_ ()Z net/minecraft/world/entity/animal/Turtle$TurtleGoToWaterGoal/shouldRecalculatePath ()Z +MD: net/minecraft/world/entity/animal/Turtle$TurtleLayEggGoal/ (Lnet/minecraft/world/entity/animal/Turtle;D)V net/minecraft/world/entity/animal/Turtle$TurtleLayEggGoal/ (Lnet/minecraft/world/entity/animal/Turtle;D)V +MD: net/minecraft/world/entity/animal/Turtle$TurtleLayEggGoal/m_6465_ (Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/entity/animal/Turtle$TurtleLayEggGoal/isValidTarget (Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/entity/animal/Turtle$TurtleLayEggGoal/m_8036_ ()Z net/minecraft/world/entity/animal/Turtle$TurtleLayEggGoal/canUse ()Z +MD: net/minecraft/world/entity/animal/Turtle$TurtleLayEggGoal/m_8037_ ()V net/minecraft/world/entity/animal/Turtle$TurtleLayEggGoal/tick ()V +MD: net/minecraft/world/entity/animal/Turtle$TurtleLayEggGoal/m_8045_ ()Z net/minecraft/world/entity/animal/Turtle$TurtleLayEggGoal/canContinueToUse ()Z +MD: net/minecraft/world/entity/animal/Turtle$TurtleMoveControl/ (Lnet/minecraft/world/entity/animal/Turtle;)V net/minecraft/world/entity/animal/Turtle$TurtleMoveControl/ (Lnet/minecraft/world/entity/animal/Turtle;)V +MD: net/minecraft/world/entity/animal/Turtle$TurtleMoveControl/m_30288_ ()V net/minecraft/world/entity/animal/Turtle$TurtleMoveControl/updateSpeed ()V +MD: net/minecraft/world/entity/animal/Turtle$TurtleMoveControl/m_8126_ ()V net/minecraft/world/entity/animal/Turtle$TurtleMoveControl/tick ()V +MD: net/minecraft/world/entity/animal/Turtle$TurtlePanicGoal/ (Lnet/minecraft/world/entity/animal/Turtle;D)V net/minecraft/world/entity/animal/Turtle$TurtlePanicGoal/ (Lnet/minecraft/world/entity/animal/Turtle;D)V +MD: net/minecraft/world/entity/animal/Turtle$TurtlePanicGoal/m_8036_ ()Z net/minecraft/world/entity/animal/Turtle$TurtlePanicGoal/canUse ()Z +MD: net/minecraft/world/entity/animal/Turtle$TurtlePathNavigation/ (Lnet/minecraft/world/entity/animal/Turtle;Lnet/minecraft/world/level/Level;)V net/minecraft/world/entity/animal/Turtle$TurtlePathNavigation/ (Lnet/minecraft/world/entity/animal/Turtle;Lnet/minecraft/world/level/Level;)V +MD: net/minecraft/world/entity/animal/Turtle$TurtlePathNavigation/m_6342_ (Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/entity/animal/Turtle$TurtlePathNavigation/isStableDestination (Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/entity/animal/Turtle$TurtleRandomStrollGoal/ (Lnet/minecraft/world/entity/animal/Turtle;DI)V net/minecraft/world/entity/animal/Turtle$TurtleRandomStrollGoal/ (Lnet/minecraft/world/entity/animal/Turtle;DI)V +MD: net/minecraft/world/entity/animal/Turtle$TurtleRandomStrollGoal/m_8036_ ()Z net/minecraft/world/entity/animal/Turtle$TurtleRandomStrollGoal/canUse ()Z +MD: net/minecraft/world/entity/animal/Turtle$TurtleTravelGoal/ (Lnet/minecraft/world/entity/animal/Turtle;D)V net/minecraft/world/entity/animal/Turtle$TurtleTravelGoal/ (Lnet/minecraft/world/entity/animal/Turtle;D)V +MD: net/minecraft/world/entity/animal/Turtle$TurtleTravelGoal/m_8036_ ()Z net/minecraft/world/entity/animal/Turtle$TurtleTravelGoal/canUse ()Z +MD: net/minecraft/world/entity/animal/Turtle$TurtleTravelGoal/m_8037_ ()V net/minecraft/world/entity/animal/Turtle$TurtleTravelGoal/tick ()V +MD: net/minecraft/world/entity/animal/Turtle$TurtleTravelGoal/m_8041_ ()V net/minecraft/world/entity/animal/Turtle$TurtleTravelGoal/stop ()V +MD: net/minecraft/world/entity/animal/Turtle$TurtleTravelGoal/m_8045_ ()Z net/minecraft/world/entity/animal/Turtle$TurtleTravelGoal/canContinueToUse ()Z +MD: net/minecraft/world/entity/animal/Turtle$TurtleTravelGoal/m_8056_ ()V net/minecraft/world/entity/animal/Turtle$TurtleTravelGoal/start ()V +MD: net/minecraft/world/entity/animal/WaterAnimal/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V net/minecraft/world/entity/animal/WaterAnimal/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V +MD: net/minecraft/world/entity/animal/WaterAnimal/m_213860_ ()I net/minecraft/world/entity/animal/WaterAnimal/getExperienceReward ()I +MD: net/minecraft/world/entity/animal/WaterAnimal/m_218282_ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/world/entity/MobSpawnType;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)Z net/minecraft/world/entity/animal/WaterAnimal/checkSurfaceWaterAnimalSpawnRules (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/world/entity/MobSpawnType;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)Z +MD: net/minecraft/world/entity/animal/WaterAnimal/m_6040_ ()Z net/minecraft/world/entity/animal/WaterAnimal/canBreatheUnderwater ()Z +MD: net/minecraft/world/entity/animal/WaterAnimal/m_6063_ ()Z net/minecraft/world/entity/animal/WaterAnimal/isPushedByFluid ()Z +MD: net/minecraft/world/entity/animal/WaterAnimal/m_6075_ ()V net/minecraft/world/entity/animal/WaterAnimal/baseTick ()V +MD: net/minecraft/world/entity/animal/WaterAnimal/m_6229_ (I)V net/minecraft/world/entity/animal/WaterAnimal/handleAirSupply (I)V +MD: net/minecraft/world/entity/animal/WaterAnimal/m_6336_ ()Lnet/minecraft/world/entity/MobType; net/minecraft/world/entity/animal/WaterAnimal/getMobType ()Lnet/minecraft/world/entity/MobType; +MD: net/minecraft/world/entity/animal/WaterAnimal/m_6573_ (Lnet/minecraft/world/entity/player/Player;)Z net/minecraft/world/entity/animal/WaterAnimal/canBeLeashed (Lnet/minecraft/world/entity/player/Player;)Z +MD: net/minecraft/world/entity/animal/WaterAnimal/m_6914_ (Lnet/minecraft/world/level/LevelReader;)Z net/minecraft/world/entity/animal/WaterAnimal/checkSpawnObstruction (Lnet/minecraft/world/level/LevelReader;)Z +MD: net/minecraft/world/entity/animal/WaterAnimal/m_8100_ ()I net/minecraft/world/entity/animal/WaterAnimal/getAmbientSoundInterval ()I +MD: net/minecraft/world/entity/animal/Wolf/ ()V net/minecraft/world/entity/animal/Wolf/ ()V +MD: net/minecraft/world/entity/animal/Wolf/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V net/minecraft/world/entity/animal/Wolf/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V +MD: net/minecraft/world/entity/animal/Wolf/m_142606_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/AgeableMob;)Lnet/minecraft/world/entity/animal/Wolf; net/minecraft/world/entity/animal/Wolf/getBreedOffspring (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/AgeableMob;)Lnet/minecraft/world/entity/animal/Wolf; +MD: net/minecraft/world/entity/animal/Wolf/m_142606_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/AgeableMob;)Lnet/minecraft/world/entity/AgeableMob; net/minecraft/world/entity/animal/Wolf/getBreedOffspring (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/AgeableMob;)Lnet/minecraft/world/entity/AgeableMob; +MD: net/minecraft/world/entity/animal/Wolf/m_218289_ (Lnet/minecraft/world/entity/animal/Wolf;)Lnet/minecraft/util/RandomSource; net/minecraft/world/entity/animal/Wolf/access$000 (Lnet/minecraft/world/entity/animal/Wolf;)Lnet/minecraft/util/RandomSource; +MD: net/minecraft/world/entity/animal/Wolf/m_218291_ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/world/entity/MobSpawnType;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)Z net/minecraft/world/entity/animal/Wolf/checkWolfSpawnRules (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/world/entity/MobSpawnType;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)Z +MD: net/minecraft/world/entity/animal/Wolf/m_289139_ (Lnet/minecraft/world/entity/LivingEntity;)Z net/minecraft/world/entity/animal/Wolf/lambda$static$0 (Lnet/minecraft/world/entity/LivingEntity;)Z +MD: net/minecraft/world/entity/animal/Wolf/m_30397_ (Lnet/minecraft/world/item/DyeColor;)V net/minecraft/world/entity/animal/Wolf/setCollarColor (Lnet/minecraft/world/item/DyeColor;)V +MD: net/minecraft/world/entity/animal/Wolf/m_30425_ ()Lnet/minecraft/world/entity/ai/attributes/AttributeSupplier$Builder; net/minecraft/world/entity/animal/Wolf/createAttributes ()Lnet/minecraft/world/entity/ai/attributes/AttributeSupplier$Builder; +MD: net/minecraft/world/entity/animal/Wolf/m_30426_ ()Z net/minecraft/world/entity/animal/Wolf/isWet ()Z +MD: net/minecraft/world/entity/animal/Wolf/m_30427_ ()F net/minecraft/world/entity/animal/Wolf/getTailAngle ()F +MD: net/minecraft/world/entity/animal/Wolf/m_30428_ ()Lnet/minecraft/world/item/DyeColor; net/minecraft/world/entity/animal/Wolf/getCollarColor ()Lnet/minecraft/world/item/DyeColor; +MD: net/minecraft/world/entity/animal/Wolf/m_30429_ ()Z net/minecraft/world/entity/animal/Wolf/isInterested ()Z +MD: net/minecraft/world/entity/animal/Wolf/m_30430_ ()V net/minecraft/world/entity/animal/Wolf/cancelShake ()V +MD: net/minecraft/world/entity/animal/Wolf/m_30432_ (FF)F net/minecraft/world/entity/animal/Wolf/getBodyRollAngle (FF)F +MD: net/minecraft/world/entity/animal/Wolf/m_30444_ (Z)V net/minecraft/world/entity/animal/Wolf/setIsInterested (Z)V +MD: net/minecraft/world/entity/animal/Wolf/m_30446_ (F)F net/minecraft/world/entity/animal/Wolf/getWetShade (F)F +MD: net/minecraft/world/entity/animal/Wolf/m_30448_ (F)F net/minecraft/world/entity/animal/Wolf/getHeadRollAngle (F)F +MD: net/minecraft/world/entity/animal/Wolf/m_5592_ ()Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/animal/Wolf/getDeathSound ()Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/animal/Wolf/m_5792_ ()I net/minecraft/world/entity/animal/Wolf/getMaxSpawnClusterSize ()I +MD: net/minecraft/world/entity/animal/Wolf/m_6071_ (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;)Lnet/minecraft/world/InteractionResult; net/minecraft/world/entity/animal/Wolf/mobInteract (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;)Lnet/minecraft/world/InteractionResult; +MD: net/minecraft/world/entity/animal/Wolf/m_6120_ ()Ljava/util/UUID; net/minecraft/world/entity/animal/Wolf/getPersistentAngerTarget ()Ljava/util/UUID; +MD: net/minecraft/world/entity/animal/Wolf/m_6121_ ()F net/minecraft/world/entity/animal/Wolf/getSoundVolume ()F +MD: net/minecraft/world/entity/animal/Wolf/m_6431_ (Lnet/minecraft/world/entity/Pose;Lnet/minecraft/world/entity/EntityDimensions;)F net/minecraft/world/entity/animal/Wolf/getStandingEyeHeight (Lnet/minecraft/world/entity/Pose;Lnet/minecraft/world/entity/EntityDimensions;)F +MD: net/minecraft/world/entity/animal/Wolf/m_6469_ (Lnet/minecraft/world/damagesource/DamageSource;F)Z net/minecraft/world/entity/animal/Wolf/hurt (Lnet/minecraft/world/damagesource/DamageSource;F)Z +MD: net/minecraft/world/entity/animal/Wolf/m_6573_ (Lnet/minecraft/world/entity/player/Player;)Z net/minecraft/world/entity/animal/Wolf/canBeLeashed (Lnet/minecraft/world/entity/player/Player;)Z +MD: net/minecraft/world/entity/animal/Wolf/m_6667_ (Lnet/minecraft/world/damagesource/DamageSource;)V net/minecraft/world/entity/animal/Wolf/die (Lnet/minecraft/world/damagesource/DamageSource;)V +MD: net/minecraft/world/entity/animal/Wolf/m_6784_ ()I net/minecraft/world/entity/animal/Wolf/getRemainingPersistentAngerTime ()I +MD: net/minecraft/world/entity/animal/Wolf/m_6825_ ()V net/minecraft/world/entity/animal/Wolf/startPersistentAngerTimer ()V +MD: net/minecraft/world/entity/animal/Wolf/m_6898_ (Lnet/minecraft/world/item/ItemStack;)Z net/minecraft/world/entity/animal/Wolf/isFood (Lnet/minecraft/world/item/ItemStack;)Z +MD: net/minecraft/world/entity/animal/Wolf/m_6925_ (Ljava/util/UUID;)V net/minecraft/world/entity/animal/Wolf/setPersistentAngerTarget (Ljava/util/UUID;)V +MD: net/minecraft/world/entity/animal/Wolf/m_7105_ (Z)V net/minecraft/world/entity/animal/Wolf/setTame (Z)V +MD: net/minecraft/world/entity/animal/Wolf/m_7327_ (Lnet/minecraft/world/entity/Entity;)Z net/minecraft/world/entity/animal/Wolf/doHurtTarget (Lnet/minecraft/world/entity/Entity;)Z +MD: net/minecraft/world/entity/animal/Wolf/m_7355_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V net/minecraft/world/entity/animal/Wolf/playStepSound (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V +MD: net/minecraft/world/entity/animal/Wolf/m_7378_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/entity/animal/Wolf/readAdditionalSaveData (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/entity/animal/Wolf/m_7380_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/entity/animal/Wolf/addAdditionalSaveData (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/entity/animal/Wolf/m_7515_ ()Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/animal/Wolf/getAmbientSound ()Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/animal/Wolf/m_7757_ (Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/entity/LivingEntity;)Z net/minecraft/world/entity/animal/Wolf/wantsToAttack (Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/entity/LivingEntity;)Z +MD: net/minecraft/world/entity/animal/Wolf/m_7822_ (B)V net/minecraft/world/entity/animal/Wolf/handleEntityEvent (B)V +MD: net/minecraft/world/entity/animal/Wolf/m_7848_ (Lnet/minecraft/world/entity/animal/Animal;)Z net/minecraft/world/entity/animal/Wolf/canMate (Lnet/minecraft/world/entity/animal/Animal;)Z +MD: net/minecraft/world/entity/animal/Wolf/m_7870_ (I)V net/minecraft/world/entity/animal/Wolf/setRemainingPersistentAngerTime (I)V +MD: net/minecraft/world/entity/animal/Wolf/m_7939_ ()Lnet/minecraft/world/phys/Vec3; net/minecraft/world/entity/animal/Wolf/getLeashOffset ()Lnet/minecraft/world/phys/Vec3; +MD: net/minecraft/world/entity/animal/Wolf/m_7975_ (Lnet/minecraft/world/damagesource/DamageSource;)Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/animal/Wolf/getHurtSound (Lnet/minecraft/world/damagesource/DamageSource;)Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/animal/Wolf/m_8097_ ()V net/minecraft/world/entity/animal/Wolf/defineSynchedData ()V +MD: net/minecraft/world/entity/animal/Wolf/m_8099_ ()V net/minecraft/world/entity/animal/Wolf/registerGoals ()V +MD: net/minecraft/world/entity/animal/Wolf/m_8107_ ()V net/minecraft/world/entity/animal/Wolf/aiStep ()V +MD: net/minecraft/world/entity/animal/Wolf/m_8119_ ()V net/minecraft/world/entity/animal/Wolf/tick ()V +MD: net/minecraft/world/entity/animal/Wolf/m_8132_ ()I net/minecraft/world/entity/animal/Wolf/getMaxHeadXRot ()I +MD: net/minecraft/world/entity/animal/Wolf$WolfAvoidEntityGoal/ (Lnet/minecraft/world/entity/animal/Wolf;Lnet/minecraft/world/entity/animal/Wolf;Ljava/lang/Class;FDD)V net/minecraft/world/entity/animal/Wolf$WolfAvoidEntityGoal/ (Lnet/minecraft/world/entity/animal/Wolf;Lnet/minecraft/world/entity/animal/Wolf;Ljava/lang/Class;FDD)V +MD: net/minecraft/world/entity/animal/Wolf$WolfAvoidEntityGoal/m_30460_ (Lnet/minecraft/world/entity/animal/horse/Llama;)Z net/minecraft/world/entity/animal/Wolf$WolfAvoidEntityGoal/avoidLlama (Lnet/minecraft/world/entity/animal/horse/Llama;)Z +MD: net/minecraft/world/entity/animal/Wolf$WolfAvoidEntityGoal/m_8036_ ()Z net/minecraft/world/entity/animal/Wolf$WolfAvoidEntityGoal/canUse ()Z +MD: net/minecraft/world/entity/animal/Wolf$WolfAvoidEntityGoal/m_8037_ ()V net/minecraft/world/entity/animal/Wolf$WolfAvoidEntityGoal/tick ()V +MD: net/minecraft/world/entity/animal/Wolf$WolfAvoidEntityGoal/m_8056_ ()V net/minecraft/world/entity/animal/Wolf$WolfAvoidEntityGoal/start ()V +MD: net/minecraft/world/entity/animal/Wolf$WolfPanicGoal/ (Lnet/minecraft/world/entity/animal/Wolf;D)V net/minecraft/world/entity/animal/Wolf$WolfPanicGoal/ (Lnet/minecraft/world/entity/animal/Wolf;D)V +MD: net/minecraft/world/entity/animal/Wolf$WolfPanicGoal/m_202729_ ()Z net/minecraft/world/entity/animal/Wolf$WolfPanicGoal/shouldPanic ()Z +MD: net/minecraft/world/entity/animal/allay/Allay/ ()V net/minecraft/world/entity/animal/allay/Allay/ ()V +MD: net/minecraft/world/entity/animal/allay/Allay/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V net/minecraft/world/entity/animal/allay/Allay/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V +MD: net/minecraft/world/entity/animal/allay/Allay/m_142039_ ()Z net/minecraft/world/entity/animal/allay/Allay/isFlapping ()Z +MD: net/minecraft/world/entity/animal/allay/Allay/m_213552_ ()Lnet/minecraft/core/Vec3i; net/minecraft/world/entity/animal/allay/Allay/getPickupReach ()Lnet/minecraft/core/Vec3i; +MD: net/minecraft/world/entity/animal/allay/Allay/m_213651_ (Ljava/util/function/BiConsumer;)V net/minecraft/world/entity/animal/allay/Allay/updateDynamicGameEventListener (Ljava/util/function/BiConsumer;)V +MD: net/minecraft/world/entity/animal/allay/Allay/m_213814_ ()Z net/minecraft/world/entity/animal/allay/Allay/shouldStayCloseToLeashHolder ()Z +MD: net/minecraft/world/entity/animal/allay/Allay/m_21531_ ()Z net/minecraft/world/entity/animal/allay/Allay/canPickUpLoot ()Z +MD: net/minecraft/world/entity/animal/allay/Allay/m_218324_ ()Z net/minecraft/world/entity/animal/allay/Allay/canDuplicate ()Z +MD: net/minecraft/world/entity/animal/allay/Allay/m_218351_ (Lnet/minecraft/nbt/CompoundTag;Lnet/minecraft/nbt/Tag;)V net/minecraft/world/entity/animal/allay/Allay/lambda$addAdditionalSaveData$0 (Lnet/minecraft/nbt/CompoundTag;Lnet/minecraft/nbt/Tag;)V +MD: net/minecraft/world/entity/animal/allay/Allay/m_218375_ ()V net/minecraft/world/entity/animal/allay/Allay/updateDuplicationCooldown ()V +MD: net/minecraft/world/entity/animal/allay/Allay/m_218376_ ()V net/minecraft/world/entity/animal/allay/Allay/duplicateAllay ()V +MD: net/minecraft/world/entity/animal/allay/Allay/m_218377_ ()Z net/minecraft/world/entity/animal/allay/Allay/isOnPickupCooldown ()Z +MD: net/minecraft/world/entity/animal/allay/Allay/m_218388_ ()Lnet/minecraft/world/entity/ai/attributes/AttributeSupplier$Builder; net/minecraft/world/entity/animal/allay/Allay/createAttributes ()Lnet/minecraft/world/entity/ai/attributes/AttributeSupplier$Builder; +MD: net/minecraft/world/entity/animal/allay/Allay/m_218389_ ()Z net/minecraft/world/entity/animal/allay/Allay/hasItemInHand ()Z +MD: net/minecraft/world/entity/animal/allay/Allay/m_218394_ (F)F net/minecraft/world/entity/animal/allay/Allay/getHoldingItemAnimationProgress (F)F +MD: net/minecraft/world/entity/animal/allay/Allay/m_239302_ ()Z net/minecraft/world/entity/animal/allay/Allay/isSpinning ()Z +MD: net/minecraft/world/entity/animal/allay/Allay/m_239358_ (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/item/ItemStack;)V net/minecraft/world/entity/animal/allay/Allay/removeInteractionItem (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/item/ItemStack;)V +MD: net/minecraft/world/entity/animal/allay/Allay/m_239559_ ()Z net/minecraft/world/entity/animal/allay/Allay/isDancing ()Z +MD: net/minecraft/world/entity/animal/allay/Allay/m_239735_ (Lnet/minecraft/world/item/ItemStack;)Z net/minecraft/world/entity/animal/allay/Allay/isDuplicationItem (Lnet/minecraft/world/item/ItemStack;)Z +MD: net/minecraft/world/entity/animal/allay/Allay/m_239811_ ()V net/minecraft/world/entity/animal/allay/Allay/resetDuplicationCooldown ()V +MD: net/minecraft/world/entity/animal/allay/Allay/m_239812_ ()Z net/minecraft/world/entity/animal/allay/Allay/shouldStopDancing ()Z +MD: net/minecraft/world/entity/animal/allay/Allay/m_240056_ (F)F net/minecraft/world/entity/animal/allay/Allay/getSpinningProgress (F)F +MD: net/minecraft/world/entity/animal/allay/Allay/m_240069_ ()V net/minecraft/world/entity/animal/allay/Allay/spawnHeartParticle ()V +MD: net/minecraft/world/entity/animal/allay/Allay/m_240101_ (Lnet/minecraft/core/BlockPos;Z)V net/minecraft/world/entity/animal/allay/Allay/setJukeboxPlaying (Lnet/minecraft/core/BlockPos;Z)V +MD: net/minecraft/world/entity/animal/allay/Allay/m_240177_ (Z)V net/minecraft/world/entity/animal/allay/Allay/setDancing (Z)V +MD: net/minecraft/world/entity/animal/allay/Allay/m_245613_ (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/item/ItemStack;)Z net/minecraft/world/entity/animal/allay/Allay/allayConsidersItemEqual (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/item/ItemStack;)Z +MD: net/minecraft/world/entity/animal/allay/Allay/m_246525_ (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/item/ItemStack;)Z net/minecraft/world/entity/animal/allay/Allay/equipmentHasChanged (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/item/ItemStack;)Z +MD: net/minecraft/world/entity/animal/allay/Allay/m_246801_ ()Z net/minecraft/world/entity/animal/allay/Allay/isPanicking ()Z +MD: net/minecraft/world/entity/animal/allay/Allay/m_247678_ (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/item/ItemStack;)Z net/minecraft/world/entity/animal/allay/Allay/hasNonMatchingPotion (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/item/ItemStack;)Z +MD: net/minecraft/world/entity/animal/allay/Allay/m_279930_ (Lnet/minecraft/world/level/gameevent/vibrations/VibrationSystem$Data;)V net/minecraft/world/entity/animal/allay/Allay/lambda$readAdditionalSaveData$1 (Lnet/minecraft/world/level/gameevent/vibrations/VibrationSystem$Data;)V +MD: net/minecraft/world/entity/animal/allay/Allay/m_280002_ ()Lnet/minecraft/world/level/gameevent/vibrations/VibrationSystem$Data; net/minecraft/world/entity/animal/allay/Allay/getVibrationData ()Lnet/minecraft/world/level/gameevent/vibrations/VibrationSystem$Data; +MD: net/minecraft/world/entity/animal/allay/Allay/m_280445_ ()Lnet/minecraft/world/level/gameevent/vibrations/VibrationSystem$User; net/minecraft/world/entity/animal/allay/Allay/getVibrationUser ()Lnet/minecraft/world/level/gameevent/vibrations/VibrationSystem$User; +MD: net/minecraft/world/entity/animal/allay/Allay/m_35311_ ()Lnet/minecraft/world/SimpleContainer; net/minecraft/world/entity/animal/allay/Allay/getInventory ()Lnet/minecraft/world/SimpleContainer; +MD: net/minecraft/world/entity/animal/allay/Allay/m_5490_ ()Lnet/minecraft/world/entity/ai/Brain$Provider; net/minecraft/world/entity/animal/allay/Allay/brainProvider ()Lnet/minecraft/world/entity/ai/Brain$Provider; +MD: net/minecraft/world/entity/animal/allay/Allay/m_5592_ ()Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/animal/allay/Allay/getDeathSound ()Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/animal/allay/Allay/m_5907_ ()V net/minecraft/world/entity/animal/allay/Allay/dropEquipment ()V +MD: net/minecraft/world/entity/animal/allay/Allay/m_6037_ (Lnet/minecraft/world/level/Level;)Lnet/minecraft/world/entity/ai/navigation/PathNavigation; net/minecraft/world/entity/animal/allay/Allay/createNavigation (Lnet/minecraft/world/level/Level;)Lnet/minecraft/world/entity/ai/navigation/PathNavigation; +MD: net/minecraft/world/entity/animal/allay/Allay/m_6049_ ()D net/minecraft/world/entity/animal/allay/Allay/getMyRidingOffset ()D +MD: net/minecraft/world/entity/animal/allay/Allay/m_6071_ (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;)Lnet/minecraft/world/InteractionResult; net/minecraft/world/entity/animal/allay/Allay/mobInteract (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;)Lnet/minecraft/world/InteractionResult; +MD: net/minecraft/world/entity/animal/allay/Allay/m_6121_ ()F net/minecraft/world/entity/animal/allay/Allay/getSoundVolume ()F +MD: net/minecraft/world/entity/animal/allay/Allay/m_6274_ ()Lnet/minecraft/world/entity/ai/Brain; net/minecraft/world/entity/animal/allay/Allay/getBrain ()Lnet/minecraft/world/entity/ai/Brain; +MD: net/minecraft/world/entity/animal/allay/Allay/m_6431_ (Lnet/minecraft/world/entity/Pose;Lnet/minecraft/world/entity/EntityDimensions;)F net/minecraft/world/entity/animal/allay/Allay/getStandingEyeHeight (Lnet/minecraft/world/entity/Pose;Lnet/minecraft/world/entity/EntityDimensions;)F +MD: net/minecraft/world/entity/animal/allay/Allay/m_6469_ (Lnet/minecraft/world/damagesource/DamageSource;F)Z net/minecraft/world/entity/animal/allay/Allay/hurt (Lnet/minecraft/world/damagesource/DamageSource;F)Z +MD: net/minecraft/world/entity/animal/allay/Allay/m_6785_ (D)Z net/minecraft/world/entity/animal/allay/Allay/removeWhenFarAway (D)Z +MD: net/minecraft/world/entity/animal/allay/Allay/m_7023_ (Lnet/minecraft/world/phys/Vec3;)V net/minecraft/world/entity/animal/allay/Allay/travel (Lnet/minecraft/world/phys/Vec3;)V +MD: net/minecraft/world/entity/animal/allay/Allay/m_7066_ (Lnet/minecraft/world/item/ItemStack;)Z net/minecraft/world/entity/animal/allay/Allay/canTakeItem (Lnet/minecraft/world/item/ItemStack;)Z +MD: net/minecraft/world/entity/animal/allay/Allay/m_7243_ (Lnet/minecraft/world/item/ItemStack;)Z net/minecraft/world/entity/animal/allay/Allay/wantsToPickUp (Lnet/minecraft/world/item/ItemStack;)Z +MD: net/minecraft/world/entity/animal/allay/Allay/m_7355_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V net/minecraft/world/entity/animal/allay/Allay/playStepSound (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V +MD: net/minecraft/world/entity/animal/allay/Allay/m_7378_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/entity/animal/allay/Allay/readAdditionalSaveData (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/entity/animal/allay/Allay/m_7380_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/entity/animal/allay/Allay/addAdditionalSaveData (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/entity/animal/allay/Allay/m_7515_ ()Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/animal/allay/Allay/getAmbientSound ()Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/animal/allay/Allay/m_7581_ (Lnet/minecraft/world/entity/item/ItemEntity;)V net/minecraft/world/entity/animal/allay/Allay/pickUpItem (Lnet/minecraft/world/entity/item/ItemEntity;)V +MD: net/minecraft/world/entity/animal/allay/Allay/m_7822_ (B)V net/minecraft/world/entity/animal/allay/Allay/handleEntityEvent (B)V +MD: net/minecraft/world/entity/animal/allay/Allay/m_7840_ (DZLnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/BlockPos;)V net/minecraft/world/entity/animal/allay/Allay/checkFallDamage (DZLnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/world/entity/animal/allay/Allay/m_7939_ ()Lnet/minecraft/world/phys/Vec3; net/minecraft/world/entity/animal/allay/Allay/getLeashOffset ()Lnet/minecraft/world/phys/Vec3; +MD: net/minecraft/world/entity/animal/allay/Allay/m_7975_ (Lnet/minecraft/world/damagesource/DamageSource;)Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/animal/allay/Allay/getHurtSound (Lnet/minecraft/world/damagesource/DamageSource;)Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/animal/allay/Allay/m_8024_ ()V net/minecraft/world/entity/animal/allay/Allay/customServerAiStep ()V +MD: net/minecraft/world/entity/animal/allay/Allay/m_8025_ ()V net/minecraft/world/entity/animal/allay/Allay/sendDebugPackets ()V +MD: net/minecraft/world/entity/animal/allay/Allay/m_8075_ (Lcom/mojang/serialization/Dynamic;)Lnet/minecraft/world/entity/ai/Brain; net/minecraft/world/entity/animal/allay/Allay/makeBrain (Lcom/mojang/serialization/Dynamic;)Lnet/minecraft/world/entity/ai/Brain; +MD: net/minecraft/world/entity/animal/allay/Allay/m_8097_ ()V net/minecraft/world/entity/animal/allay/Allay/defineSynchedData ()V +MD: net/minecraft/world/entity/animal/allay/Allay/m_8107_ ()V net/minecraft/world/entity/animal/allay/Allay/aiStep ()V +MD: net/minecraft/world/entity/animal/allay/Allay/m_8119_ ()V net/minecraft/world/entity/animal/allay/Allay/tick ()V +MD: net/minecraft/world/entity/animal/allay/Allay$JukeboxListener/ (Lnet/minecraft/world/entity/animal/allay/Allay;Lnet/minecraft/world/level/gameevent/PositionSource;I)V net/minecraft/world/entity/animal/allay/Allay$JukeboxListener/ (Lnet/minecraft/world/entity/animal/allay/Allay;Lnet/minecraft/world/level/gameevent/PositionSource;I)V +MD: net/minecraft/world/entity/animal/allay/Allay$JukeboxListener/m_142078_ ()I net/minecraft/world/entity/animal/allay/Allay$JukeboxListener/getListenerRadius ()I +MD: net/minecraft/world/entity/animal/allay/Allay$JukeboxListener/m_142460_ ()Lnet/minecraft/world/level/gameevent/PositionSource; net/minecraft/world/entity/animal/allay/Allay$JukeboxListener/getListenerSource ()Lnet/minecraft/world/level/gameevent/PositionSource; +MD: net/minecraft/world/entity/animal/allay/Allay$JukeboxListener/m_214068_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/level/gameevent/GameEvent;Lnet/minecraft/world/level/gameevent/GameEvent$Context;Lnet/minecraft/world/phys/Vec3;)Z net/minecraft/world/entity/animal/allay/Allay$JukeboxListener/handleGameEvent (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/level/gameevent/GameEvent;Lnet/minecraft/world/level/gameevent/GameEvent$Context;Lnet/minecraft/world/phys/Vec3;)Z +MD: net/minecraft/world/entity/animal/allay/Allay$VibrationUser/ (Lnet/minecraft/world/entity/animal/allay/Allay;)V net/minecraft/world/entity/animal/allay/Allay$VibrationUser/ (Lnet/minecraft/world/entity/animal/allay/Allay;)V +MD: net/minecraft/world/entity/animal/allay/Allay$VibrationUser/m_280010_ ()Lnet/minecraft/world/level/gameevent/PositionSource; net/minecraft/world/entity/animal/allay/Allay$VibrationUser/getPositionSource ()Lnet/minecraft/world/level/gameevent/PositionSource; +MD: net/minecraft/world/entity/animal/allay/Allay$VibrationUser/m_280028_ ()Lnet/minecraft/tags/TagKey; net/minecraft/world/entity/animal/allay/Allay$VibrationUser/getListenableEvents ()Lnet/minecraft/tags/TagKey; +MD: net/minecraft/world/entity/animal/allay/Allay$VibrationUser/m_280080_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/gameevent/GameEvent;Lnet/minecraft/world/level/gameevent/GameEvent$Context;)Z net/minecraft/world/entity/animal/allay/Allay$VibrationUser/canReceiveVibration (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/gameevent/GameEvent;Lnet/minecraft/world/level/gameevent/GameEvent$Context;)Z +MD: net/minecraft/world/entity/animal/allay/Allay$VibrationUser/m_280271_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/gameevent/GameEvent;Lnet/minecraft/world/entity/Entity;Lnet/minecraft/world/entity/Entity;F)V net/minecraft/world/entity/animal/allay/Allay$VibrationUser/onReceiveVibration (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/gameevent/GameEvent;Lnet/minecraft/world/entity/Entity;Lnet/minecraft/world/entity/Entity;F)V +MD: net/minecraft/world/entity/animal/allay/Allay$VibrationUser/m_280351_ ()I net/minecraft/world/entity/animal/allay/Allay$VibrationUser/getListenerRadius ()I +MD: net/minecraft/world/entity/animal/allay/AllayAi/ ()V net/minecraft/world/entity/animal/allay/AllayAi/ ()V +MD: net/minecraft/world/entity/animal/allay/AllayAi/m_218408_ (Lnet/minecraft/server/level/ServerPlayer;)Lnet/minecraft/world/entity/ai/behavior/PositionTracker; net/minecraft/world/entity/animal/allay/AllayAi/lambda$getLikedPlayerPositionTracker$1 (Lnet/minecraft/server/level/ServerPlayer;)Lnet/minecraft/world/entity/ai/behavior/PositionTracker; +MD: net/minecraft/world/entity/animal/allay/AllayAi/m_218410_ (Lnet/minecraft/world/entity/LivingEntity;)Ljava/util/Optional; net/minecraft/world/entity/animal/allay/AllayAi/getLikedPlayer (Lnet/minecraft/world/entity/LivingEntity;)Ljava/util/Optional; +MD: net/minecraft/world/entity/animal/allay/AllayAi/m_218412_ (Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/entity/ai/Brain;Lnet/minecraft/core/GlobalPos;)Z net/minecraft/world/entity/animal/allay/AllayAi/shouldDepositItemsAtLikedNoteblock (Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/entity/ai/Brain;Lnet/minecraft/core/GlobalPos;)Z +MD: net/minecraft/world/entity/animal/allay/AllayAi/m_218416_ (Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/core/BlockPos;)V net/minecraft/world/entity/animal/allay/AllayAi/hearNoteblock (Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/world/entity/animal/allay/AllayAi/m_218419_ (Lnet/minecraft/world/entity/ai/Brain;)Lnet/minecraft/world/entity/ai/Brain; net/minecraft/world/entity/animal/allay/AllayAi/makeBrain (Lnet/minecraft/world/entity/ai/Brain;)Lnet/minecraft/world/entity/ai/Brain; +MD: net/minecraft/world/entity/animal/allay/AllayAi/m_218421_ (Lnet/minecraft/world/entity/animal/allay/Allay;)V net/minecraft/world/entity/animal/allay/AllayAi/updateActivity (Lnet/minecraft/world/entity/animal/allay/Allay;)V +MD: net/minecraft/world/entity/animal/allay/AllayAi/m_218423_ (Lnet/minecraft/world/entity/LivingEntity;)Ljava/util/Optional; net/minecraft/world/entity/animal/allay/AllayAi/getItemDepositPosition (Lnet/minecraft/world/entity/LivingEntity;)Ljava/util/Optional; +MD: net/minecraft/world/entity/animal/allay/AllayAi/m_218425_ (Lnet/minecraft/world/entity/ai/Brain;)V net/minecraft/world/entity/animal/allay/AllayAi/initCoreActivity (Lnet/minecraft/world/entity/ai/Brain;)V +MD: net/minecraft/world/entity/animal/allay/AllayAi/m_218427_ (Lnet/minecraft/world/entity/animal/allay/Allay;)Z net/minecraft/world/entity/animal/allay/AllayAi/lambda$initIdleActivity$0 (Lnet/minecraft/world/entity/animal/allay/Allay;)Z +MD: net/minecraft/world/entity/animal/allay/AllayAi/m_218429_ (Lnet/minecraft/world/entity/LivingEntity;)Ljava/util/Optional; net/minecraft/world/entity/animal/allay/AllayAi/getLikedPlayerPositionTracker (Lnet/minecraft/world/entity/LivingEntity;)Ljava/util/Optional; +MD: net/minecraft/world/entity/animal/allay/AllayAi/m_218431_ (Lnet/minecraft/world/entity/ai/Brain;)V net/minecraft/world/entity/animal/allay/AllayAi/initIdleActivity (Lnet/minecraft/world/entity/ai/Brain;)V +MD: net/minecraft/world/entity/animal/allay/AllayAi/m_271971_ (Lnet/minecraft/world/entity/LivingEntity;)Z net/minecraft/world/entity/animal/allay/AllayAi/hasWantedItem (Lnet/minecraft/world/entity/LivingEntity;)Z +MD: net/minecraft/world/entity/animal/axolotl/Axolotl/ ()V net/minecraft/world/entity/animal/axolotl/Axolotl/ ()V +MD: net/minecraft/world/entity/animal/axolotl/Axolotl/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V net/minecraft/world/entity/animal/axolotl/Axolotl/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V +MD: net/minecraft/world/entity/animal/axolotl/Axolotl/m_142066_ ()Z net/minecraft/world/entity/animal/axolotl/Axolotl/canBeSeenAsEnemy ()Z +MD: net/minecraft/world/entity/animal/axolotl/Axolotl/m_142075_ (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;Lnet/minecraft/world/item/ItemStack;)V net/minecraft/world/entity/animal/axolotl/Axolotl/usePlayerItem (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;Lnet/minecraft/world/item/ItemStack;)V +MD: net/minecraft/world/entity/animal/axolotl/Axolotl/m_142115_ ()Ljava/util/Map; net/minecraft/world/entity/animal/axolotl/Axolotl/getModelRotationValues ()Ljava/util/Map; +MD: net/minecraft/world/entity/animal/axolotl/Axolotl/m_142278_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/entity/animal/axolotl/Axolotl/loadFromBucketTag (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/entity/animal/axolotl/Axolotl/m_142593_ (Lnet/minecraft/world/entity/LivingEntity;)D net/minecraft/world/entity/animal/axolotl/Axolotl/getMeleeAttackRangeSqr (Lnet/minecraft/world/entity/LivingEntity;)D +MD: net/minecraft/world/entity/animal/axolotl/Axolotl/m_142606_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/AgeableMob;)Lnet/minecraft/world/entity/AgeableMob; net/minecraft/world/entity/animal/axolotl/Axolotl/getBreedOffspring (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/AgeableMob;)Lnet/minecraft/world/entity/AgeableMob; +MD: net/minecraft/world/entity/animal/axolotl/Axolotl/m_142623_ ()Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/animal/axolotl/Axolotl/getPickupSound ()Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/animal/axolotl/Axolotl/m_149173_ (Lnet/minecraft/world/entity/player/Player;)V net/minecraft/world/entity/animal/axolotl/Axolotl/applySupportingEffects (Lnet/minecraft/world/entity/player/Player;)V +MD: net/minecraft/world/entity/animal/axolotl/Axolotl/m_149175_ ()Z net/minecraft/world/entity/animal/axolotl/Axolotl/isPlayingDead ()Z +MD: net/minecraft/world/entity/animal/axolotl/Axolotl/m_149176_ ()Lnet/minecraft/world/entity/ai/attributes/AttributeSupplier$Builder; net/minecraft/world/entity/animal/axolotl/Axolotl/createAttributes ()Lnet/minecraft/world/entity/ai/attributes/AttributeSupplier$Builder; +MD: net/minecraft/world/entity/animal/axolotl/Axolotl/m_149177_ ()V net/minecraft/world/entity/animal/axolotl/Axolotl/rehydrate ()V +MD: net/minecraft/world/entity/animal/axolotl/Axolotl/m_149193_ (I)V net/minecraft/world/entity/animal/axolotl/Axolotl/handleAirSupply (I)V +MD: net/minecraft/world/entity/animal/axolotl/Axolotl/m_149198_ (Z)V net/minecraft/world/entity/animal/axolotl/Axolotl/setPlayingDead (Z)V +MD: net/minecraft/world/entity/animal/axolotl/Axolotl/m_218435_ (Lnet/minecraft/util/RandomSource;)Z net/minecraft/world/entity/animal/axolotl/Axolotl/useRareVariant (Lnet/minecraft/util/RandomSource;)Z +MD: net/minecraft/world/entity/animal/axolotl/Axolotl/m_218437_ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/ServerLevelAccessor;Lnet/minecraft/world/entity/MobSpawnType;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)Z net/minecraft/world/entity/animal/axolotl/Axolotl/checkAxolotlSpawnRules (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/ServerLevelAccessor;Lnet/minecraft/world/entity/MobSpawnType;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)Z +MD: net/minecraft/world/entity/animal/axolotl/Axolotl/m_218443_ (Lnet/minecraft/world/entity/animal/axolotl/Axolotl;Lnet/minecraft/world/entity/LivingEntity;)V net/minecraft/world/entity/animal/axolotl/Axolotl/onStopAttacking (Lnet/minecraft/world/entity/animal/axolotl/Axolotl;Lnet/minecraft/world/entity/LivingEntity;)V +MD: net/minecraft/world/entity/animal/axolotl/Axolotl/m_27487_ ()Z net/minecraft/world/entity/animal/axolotl/Axolotl/fromBucket ()Z +MD: net/minecraft/world/entity/animal/axolotl/Axolotl/m_27497_ (Z)V net/minecraft/world/entity/animal/axolotl/Axolotl/setFromBucket (Z)V +MD: net/minecraft/world/entity/animal/axolotl/Axolotl/m_28282_ ()Lnet/minecraft/world/item/ItemStack; net/minecraft/world/entity/animal/axolotl/Axolotl/getBucketItemStack ()Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/entity/animal/axolotl/Axolotl/m_28464_ (Lnet/minecraft/world/entity/animal/axolotl/Axolotl$Variant;)V net/minecraft/world/entity/animal/axolotl/Axolotl/setVariant (Lnet/minecraft/world/entity/animal/axolotl/Axolotl$Variant;)V +MD: net/minecraft/world/entity/animal/axolotl/Axolotl/m_28464_ (Ljava/lang/Object;)V net/minecraft/world/entity/animal/axolotl/Axolotl/setVariant (Ljava/lang/Object;)V +MD: net/minecraft/world/entity/animal/axolotl/Axolotl/m_28554_ ()Lnet/minecraft/world/entity/animal/axolotl/Axolotl$Variant; net/minecraft/world/entity/animal/axolotl/Axolotl/getVariant ()Lnet/minecraft/world/entity/animal/axolotl/Axolotl$Variant; +MD: net/minecraft/world/entity/animal/axolotl/Axolotl/m_28554_ ()Ljava/lang/Object; net/minecraft/world/entity/animal/axolotl/Axolotl/getVariant ()Ljava/lang/Object; +MD: net/minecraft/world/entity/animal/axolotl/Axolotl/m_5490_ ()Lnet/minecraft/world/entity/ai/Brain$Provider; net/minecraft/world/entity/animal/axolotl/Axolotl/brainProvider ()Lnet/minecraft/world/entity/ai/Brain$Provider; +MD: net/minecraft/world/entity/animal/axolotl/Axolotl/m_5501_ ()Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/animal/axolotl/Axolotl/getSwimSound ()Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/animal/axolotl/Axolotl/m_5509_ ()Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/animal/axolotl/Axolotl/getSwimSplashSound ()Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/animal/axolotl/Axolotl/m_5592_ ()Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/animal/axolotl/Axolotl/getDeathSound ()Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/animal/axolotl/Axolotl/m_5610_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/LevelReader;)F net/minecraft/world/entity/animal/axolotl/Axolotl/getWalkTargetValue (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/LevelReader;)F +MD: net/minecraft/world/entity/animal/axolotl/Axolotl/m_6037_ (Lnet/minecraft/world/level/Level;)Lnet/minecraft/world/entity/ai/navigation/PathNavigation; net/minecraft/world/entity/animal/axolotl/Axolotl/createNavigation (Lnet/minecraft/world/level/Level;)Lnet/minecraft/world/entity/ai/navigation/PathNavigation; +MD: net/minecraft/world/entity/animal/axolotl/Axolotl/m_6040_ ()Z net/minecraft/world/entity/animal/axolotl/Axolotl/canBreatheUnderwater ()Z +MD: net/minecraft/world/entity/animal/axolotl/Axolotl/m_6062_ ()I net/minecraft/world/entity/animal/axolotl/Axolotl/getMaxAirSupply ()I +MD: net/minecraft/world/entity/animal/axolotl/Axolotl/m_6063_ ()Z net/minecraft/world/entity/animal/axolotl/Axolotl/isPushedByFluid ()Z +MD: net/minecraft/world/entity/animal/axolotl/Axolotl/m_6071_ (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;)Lnet/minecraft/world/InteractionResult; net/minecraft/world/entity/animal/axolotl/Axolotl/mobInteract (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;)Lnet/minecraft/world/InteractionResult; +MD: net/minecraft/world/entity/animal/axolotl/Axolotl/m_6075_ ()V net/minecraft/world/entity/animal/axolotl/Axolotl/baseTick ()V +MD: net/minecraft/world/entity/animal/axolotl/Axolotl/m_6274_ ()Lnet/minecraft/world/entity/ai/Brain; net/minecraft/world/entity/animal/axolotl/Axolotl/getBrain ()Lnet/minecraft/world/entity/ai/Brain; +MD: net/minecraft/world/entity/animal/axolotl/Axolotl/m_6336_ ()Lnet/minecraft/world/entity/MobType; net/minecraft/world/entity/animal/axolotl/Axolotl/getMobType ()Lnet/minecraft/world/entity/MobType; +MD: net/minecraft/world/entity/animal/axolotl/Axolotl/m_6431_ (Lnet/minecraft/world/entity/Pose;Lnet/minecraft/world/entity/EntityDimensions;)F net/minecraft/world/entity/animal/axolotl/Axolotl/getStandingEyeHeight (Lnet/minecraft/world/entity/Pose;Lnet/minecraft/world/entity/EntityDimensions;)F +MD: net/minecraft/world/entity/animal/axolotl/Axolotl/m_6469_ (Lnet/minecraft/world/damagesource/DamageSource;F)Z net/minecraft/world/entity/animal/axolotl/Axolotl/hurt (Lnet/minecraft/world/damagesource/DamageSource;F)Z +MD: net/minecraft/world/entity/animal/axolotl/Axolotl/m_6518_ (Lnet/minecraft/world/level/ServerLevelAccessor;Lnet/minecraft/world/DifficultyInstance;Lnet/minecraft/world/entity/MobSpawnType;Lnet/minecraft/world/entity/SpawnGroupData;Lnet/minecraft/nbt/CompoundTag;)Lnet/minecraft/world/entity/SpawnGroupData; net/minecraft/world/entity/animal/axolotl/Axolotl/finalizeSpawn (Lnet/minecraft/world/level/ServerLevelAccessor;Lnet/minecraft/world/DifficultyInstance;Lnet/minecraft/world/entity/MobSpawnType;Lnet/minecraft/world/entity/SpawnGroupData;Lnet/minecraft/nbt/CompoundTag;)Lnet/minecraft/world/entity/SpawnGroupData; +MD: net/minecraft/world/entity/animal/axolotl/Axolotl/m_6573_ (Lnet/minecraft/world/entity/player/Player;)Z net/minecraft/world/entity/animal/axolotl/Axolotl/canBeLeashed (Lnet/minecraft/world/entity/player/Player;)Z +MD: net/minecraft/world/entity/animal/axolotl/Axolotl/m_6785_ (D)Z net/minecraft/world/entity/animal/axolotl/Axolotl/removeWhenFarAway (D)Z +MD: net/minecraft/world/entity/animal/axolotl/Axolotl/m_6872_ (Lnet/minecraft/world/item/ItemStack;)V net/minecraft/world/entity/animal/axolotl/Axolotl/saveToBucketTag (Lnet/minecraft/world/item/ItemStack;)V +MD: net/minecraft/world/entity/animal/axolotl/Axolotl/m_6898_ (Lnet/minecraft/world/item/ItemStack;)Z net/minecraft/world/entity/animal/axolotl/Axolotl/isFood (Lnet/minecraft/world/item/ItemStack;)Z +MD: net/minecraft/world/entity/animal/axolotl/Axolotl/m_6914_ (Lnet/minecraft/world/level/LevelReader;)Z net/minecraft/world/entity/animal/axolotl/Axolotl/checkSpawnObstruction (Lnet/minecraft/world/level/LevelReader;)Z +MD: net/minecraft/world/entity/animal/axolotl/Axolotl/m_7023_ (Lnet/minecraft/world/phys/Vec3;)V net/minecraft/world/entity/animal/axolotl/Axolotl/travel (Lnet/minecraft/world/phys/Vec3;)V +MD: net/minecraft/world/entity/animal/axolotl/Axolotl/m_7327_ (Lnet/minecraft/world/entity/Entity;)Z net/minecraft/world/entity/animal/axolotl/Axolotl/doHurtTarget (Lnet/minecraft/world/entity/Entity;)Z +MD: net/minecraft/world/entity/animal/axolotl/Axolotl/m_7378_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/entity/animal/axolotl/Axolotl/readAdditionalSaveData (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/entity/animal/axolotl/Axolotl/m_7380_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/entity/animal/axolotl/Axolotl/addAdditionalSaveData (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/entity/animal/axolotl/Axolotl/m_7515_ ()Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/animal/axolotl/Axolotl/getAmbientSound ()Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/animal/axolotl/Axolotl/m_7975_ (Lnet/minecraft/world/damagesource/DamageSource;)Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/animal/axolotl/Axolotl/getHurtSound (Lnet/minecraft/world/damagesource/DamageSource;)Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/animal/axolotl/Axolotl/m_8023_ ()Z net/minecraft/world/entity/animal/axolotl/Axolotl/requiresCustomPersistence ()Z +MD: net/minecraft/world/entity/animal/axolotl/Axolotl/m_8024_ ()V net/minecraft/world/entity/animal/axolotl/Axolotl/customServerAiStep ()V +MD: net/minecraft/world/entity/animal/axolotl/Axolotl/m_8025_ ()V net/minecraft/world/entity/animal/axolotl/Axolotl/sendDebugPackets ()V +MD: net/minecraft/world/entity/animal/axolotl/Axolotl/m_8032_ ()V net/minecraft/world/entity/animal/axolotl/Axolotl/playAmbientSound ()V +MD: net/minecraft/world/entity/animal/axolotl/Axolotl/m_8075_ (Lcom/mojang/serialization/Dynamic;)Lnet/minecraft/world/entity/ai/Brain; net/minecraft/world/entity/animal/axolotl/Axolotl/makeBrain (Lcom/mojang/serialization/Dynamic;)Lnet/minecraft/world/entity/ai/Brain; +MD: net/minecraft/world/entity/animal/axolotl/Axolotl/m_8085_ ()I net/minecraft/world/entity/animal/axolotl/Axolotl/getMaxHeadYRot ()I +MD: net/minecraft/world/entity/animal/axolotl/Axolotl/m_8097_ ()V net/minecraft/world/entity/animal/axolotl/Axolotl/defineSynchedData ()V +MD: net/minecraft/world/entity/animal/axolotl/Axolotl/m_8132_ ()I net/minecraft/world/entity/animal/axolotl/Axolotl/getMaxHeadXRot ()I +MD: net/minecraft/world/entity/animal/axolotl/Axolotl$AxolotlGroupData/ ([Lnet/minecraft/world/entity/animal/axolotl/Axolotl$Variant;)V net/minecraft/world/entity/animal/axolotl/Axolotl$AxolotlGroupData/ ([Lnet/minecraft/world/entity/animal/axolotl/Axolotl$Variant;)V +MD: net/minecraft/world/entity/animal/axolotl/Axolotl$AxolotlGroupData/m_218446_ (Lnet/minecraft/util/RandomSource;)Lnet/minecraft/world/entity/animal/axolotl/Axolotl$Variant; net/minecraft/world/entity/animal/axolotl/Axolotl$AxolotlGroupData/getVariant (Lnet/minecraft/util/RandomSource;)Lnet/minecraft/world/entity/animal/axolotl/Axolotl$Variant; +MD: net/minecraft/world/entity/animal/axolotl/Axolotl$AxolotlLookControl/ (Lnet/minecraft/world/entity/animal/axolotl/Axolotl;Lnet/minecraft/world/entity/animal/axolotl/Axolotl;I)V net/minecraft/world/entity/animal/axolotl/Axolotl$AxolotlLookControl/ (Lnet/minecraft/world/entity/animal/axolotl/Axolotl;Lnet/minecraft/world/entity/animal/axolotl/Axolotl;I)V +MD: net/minecraft/world/entity/animal/axolotl/Axolotl$AxolotlLookControl/m_8128_ ()V net/minecraft/world/entity/animal/axolotl/Axolotl$AxolotlLookControl/tick ()V +MD: net/minecraft/world/entity/animal/axolotl/Axolotl$AxolotlMoveControl/ (Lnet/minecraft/world/entity/animal/axolotl/Axolotl;)V net/minecraft/world/entity/animal/axolotl/Axolotl$AxolotlMoveControl/ (Lnet/minecraft/world/entity/animal/axolotl/Axolotl;)V +MD: net/minecraft/world/entity/animal/axolotl/Axolotl$AxolotlMoveControl/m_8126_ ()V net/minecraft/world/entity/animal/axolotl/Axolotl$AxolotlMoveControl/tick ()V +MD: net/minecraft/world/entity/animal/axolotl/Axolotl$Variant/ ()V net/minecraft/world/entity/animal/axolotl/Axolotl$Variant/ ()V +MD: net/minecraft/world/entity/animal/axolotl/Axolotl$Variant/ (Ljava/lang/String;IILjava/lang/String;Z)V net/minecraft/world/entity/animal/axolotl/Axolotl$Variant/ (Ljava/lang/String;IILjava/lang/String;Z)V +MD: net/minecraft/world/entity/animal/axolotl/Axolotl$Variant/m_149242_ ()I net/minecraft/world/entity/animal/axolotl/Axolotl$Variant/getId ()I +MD: net/minecraft/world/entity/animal/axolotl/Axolotl$Variant/m_149243_ (I)[Lnet/minecraft/world/entity/animal/axolotl/Axolotl$Variant; net/minecraft/world/entity/animal/axolotl/Axolotl$Variant/lambda$getSpawnVariant$1 (I)[Lnet/minecraft/world/entity/animal/axolotl/Axolotl$Variant; +MD: net/minecraft/world/entity/animal/axolotl/Axolotl$Variant/m_149250_ (ZLnet/minecraft/world/entity/animal/axolotl/Axolotl$Variant;)Z net/minecraft/world/entity/animal/axolotl/Axolotl$Variant/lambda$getSpawnVariant$0 (ZLnet/minecraft/world/entity/animal/axolotl/Axolotl$Variant;)Z +MD: net/minecraft/world/entity/animal/axolotl/Axolotl$Variant/m_149253_ ()Ljava/lang/String; net/minecraft/world/entity/animal/axolotl/Axolotl$Variant/getName ()Ljava/lang/String; +MD: net/minecraft/world/entity/animal/axolotl/Axolotl$Variant/m_149258_ ()[Lnet/minecraft/world/entity/animal/axolotl/Axolotl$Variant; net/minecraft/world/entity/animal/axolotl/Axolotl$Variant/$values ()[Lnet/minecraft/world/entity/animal/axolotl/Axolotl$Variant; +MD: net/minecraft/world/entity/animal/axolotl/Axolotl$Variant/m_218448_ (Lnet/minecraft/util/RandomSource;)Lnet/minecraft/world/entity/animal/axolotl/Axolotl$Variant; net/minecraft/world/entity/animal/axolotl/Axolotl$Variant/getCommonSpawnVariant (Lnet/minecraft/util/RandomSource;)Lnet/minecraft/world/entity/animal/axolotl/Axolotl$Variant; +MD: net/minecraft/world/entity/animal/axolotl/Axolotl$Variant/m_218450_ (Lnet/minecraft/util/RandomSource;Z)Lnet/minecraft/world/entity/animal/axolotl/Axolotl$Variant; net/minecraft/world/entity/animal/axolotl/Axolotl$Variant/getSpawnVariant (Lnet/minecraft/util/RandomSource;Z)Lnet/minecraft/world/entity/animal/axolotl/Axolotl$Variant; +MD: net/minecraft/world/entity/animal/axolotl/Axolotl$Variant/m_218453_ (Lnet/minecraft/util/RandomSource;)Lnet/minecraft/world/entity/animal/axolotl/Axolotl$Variant; net/minecraft/world/entity/animal/axolotl/Axolotl$Variant/getRareSpawnVariant (Lnet/minecraft/util/RandomSource;)Lnet/minecraft/world/entity/animal/axolotl/Axolotl$Variant; +MD: net/minecraft/world/entity/animal/axolotl/Axolotl$Variant/m_262843_ (I)Lnet/minecraft/world/entity/animal/axolotl/Axolotl$Variant; net/minecraft/world/entity/animal/axolotl/Axolotl$Variant/byId (I)Lnet/minecraft/world/entity/animal/axolotl/Axolotl$Variant; +MD: net/minecraft/world/entity/animal/axolotl/Axolotl$Variant/m_7912_ ()Ljava/lang/String; net/minecraft/world/entity/animal/axolotl/Axolotl$Variant/getSerializedName ()Ljava/lang/String; +MD: net/minecraft/world/entity/animal/axolotl/Axolotl$Variant/valueOf (Ljava/lang/String;)Lnet/minecraft/world/entity/animal/axolotl/Axolotl$Variant; net/minecraft/world/entity/animal/axolotl/Axolotl$Variant/valueOf (Ljava/lang/String;)Lnet/minecraft/world/entity/animal/axolotl/Axolotl$Variant; +MD: net/minecraft/world/entity/animal/axolotl/Axolotl$Variant/values ()[Lnet/minecraft/world/entity/animal/axolotl/Axolotl$Variant; net/minecraft/world/entity/animal/axolotl/Axolotl$Variant/values ()[Lnet/minecraft/world/entity/animal/axolotl/Axolotl$Variant; +MD: net/minecraft/world/entity/animal/axolotl/AxolotlAi/ ()V net/minecraft/world/entity/animal/axolotl/AxolotlAi/ ()V +MD: net/minecraft/world/entity/animal/axolotl/AxolotlAi/ ()V net/minecraft/world/entity/animal/axolotl/AxolotlAi/ ()V +MD: net/minecraft/world/entity/animal/axolotl/AxolotlAi/m_149287_ ()Lnet/minecraft/world/item/crafting/Ingredient; net/minecraft/world/entity/animal/axolotl/AxolotlAi/getTemptations ()Lnet/minecraft/world/item/crafting/Ingredient; +MD: net/minecraft/world/entity/animal/axolotl/AxolotlAi/m_149288_ (Lnet/minecraft/world/entity/LivingEntity;)F net/minecraft/world/entity/animal/axolotl/AxolotlAi/getSpeedModifierChasing (Lnet/minecraft/world/entity/LivingEntity;)F +MD: net/minecraft/world/entity/animal/axolotl/AxolotlAi/m_149290_ (Lnet/minecraft/world/entity/ai/Brain;)Lnet/minecraft/world/entity/ai/Brain; net/minecraft/world/entity/animal/axolotl/AxolotlAi/makeBrain (Lnet/minecraft/world/entity/ai/Brain;)Lnet/minecraft/world/entity/ai/Brain; +MD: net/minecraft/world/entity/animal/axolotl/AxolotlAi/m_149292_ (Lnet/minecraft/world/entity/animal/axolotl/Axolotl;)V net/minecraft/world/entity/animal/axolotl/AxolotlAi/updateActivity (Lnet/minecraft/world/entity/animal/axolotl/Axolotl;)V +MD: net/minecraft/world/entity/animal/axolotl/AxolotlAi/m_149294_ (Lnet/minecraft/world/entity/LivingEntity;)F net/minecraft/world/entity/animal/axolotl/AxolotlAi/getSpeedModifierFollowingAdult (Lnet/minecraft/world/entity/LivingEntity;)F +MD: net/minecraft/world/entity/animal/axolotl/AxolotlAi/m_149296_ (Lnet/minecraft/world/entity/ai/Brain;)V net/minecraft/world/entity/animal/axolotl/AxolotlAi/initPlayDeadActivity (Lnet/minecraft/world/entity/ai/Brain;)V +MD: net/minecraft/world/entity/animal/axolotl/AxolotlAi/m_149298_ (Lnet/minecraft/world/entity/animal/axolotl/Axolotl;)Ljava/util/Optional; net/minecraft/world/entity/animal/axolotl/AxolotlAi/findNearestValidAttackTarget (Lnet/minecraft/world/entity/animal/axolotl/Axolotl;)Ljava/util/Optional; +MD: net/minecraft/world/entity/animal/axolotl/AxolotlAi/m_149300_ (Lnet/minecraft/world/entity/LivingEntity;)F net/minecraft/world/entity/animal/axolotl/AxolotlAi/getSpeedModifier (Lnet/minecraft/world/entity/LivingEntity;)F +MD: net/minecraft/world/entity/animal/axolotl/AxolotlAi/m_149302_ (Lnet/minecraft/world/entity/ai/Brain;)V net/minecraft/world/entity/animal/axolotl/AxolotlAi/initFightActivity (Lnet/minecraft/world/entity/ai/Brain;)V +MD: net/minecraft/world/entity/animal/axolotl/AxolotlAi/m_149306_ (Lnet/minecraft/world/entity/ai/Brain;)V net/minecraft/world/entity/animal/axolotl/AxolotlAi/initCoreActivity (Lnet/minecraft/world/entity/ai/Brain;)V +MD: net/minecraft/world/entity/animal/axolotl/AxolotlAi/m_149308_ (Lnet/minecraft/world/entity/ai/Brain;)V net/minecraft/world/entity/animal/axolotl/AxolotlAi/initIdleActivity (Lnet/minecraft/world/entity/ai/Brain;)V +MD: net/minecraft/world/entity/animal/axolotl/AxolotlAi/m_182380_ (Lnet/minecraft/world/entity/LivingEntity;)Z net/minecraft/world/entity/animal/axolotl/AxolotlAi/canSetWalkTargetFromLookTarget (Lnet/minecraft/world/entity/LivingEntity;)Z +MD: net/minecraft/world/entity/animal/axolotl/PlayDead/ ()V net/minecraft/world/entity/animal/axolotl/PlayDead/ ()V +MD: net/minecraft/world/entity/animal/axolotl/PlayDead/m_6114_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/animal/axolotl/Axolotl;)Z net/minecraft/world/entity/animal/axolotl/PlayDead/checkExtraStartConditions (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/animal/axolotl/Axolotl;)Z +MD: net/minecraft/world/entity/animal/axolotl/PlayDead/m_6114_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;)Z net/minecraft/world/entity/animal/axolotl/PlayDead/checkExtraStartConditions (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;)Z +MD: net/minecraft/world/entity/animal/axolotl/PlayDead/m_6735_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/animal/axolotl/Axolotl;J)V net/minecraft/world/entity/animal/axolotl/PlayDead/start (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/animal/axolotl/Axolotl;J)V +MD: net/minecraft/world/entity/animal/axolotl/PlayDead/m_6735_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)V net/minecraft/world/entity/animal/axolotl/PlayDead/start (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)V +MD: net/minecraft/world/entity/animal/axolotl/PlayDead/m_6737_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)Z net/minecraft/world/entity/animal/axolotl/PlayDead/canStillUse (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)Z +MD: net/minecraft/world/entity/animal/axolotl/PlayDead/m_6737_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/animal/axolotl/Axolotl;J)Z net/minecraft/world/entity/animal/axolotl/PlayDead/canStillUse (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/animal/axolotl/Axolotl;J)Z +MD: net/minecraft/world/entity/animal/axolotl/ValidatePlayDead/ ()V net/minecraft/world/entity/animal/axolotl/ValidatePlayDead/ ()V +MD: net/minecraft/world/entity/animal/axolotl/ValidatePlayDead/m_257460_ (Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;)Lnet/minecraft/world/entity/ai/behavior/declarative/Trigger; net/minecraft/world/entity/animal/axolotl/ValidatePlayDead/lambda$create$1 (Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;)Lnet/minecraft/world/entity/ai/behavior/declarative/Trigger; +MD: net/minecraft/world/entity/animal/axolotl/ValidatePlayDead/m_257726_ ()Lnet/minecraft/world/entity/ai/behavior/BehaviorControl; net/minecraft/world/entity/animal/axolotl/ValidatePlayDead/create ()Lnet/minecraft/world/entity/ai/behavior/BehaviorControl; +MD: net/minecraft/world/entity/animal/axolotl/ValidatePlayDead/m_257850_ (Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/world/entity/animal/axolotl/ValidatePlayDead/lambda$create$2 (Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/world/entity/animal/axolotl/ValidatePlayDead/m_257909_ (Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)Z net/minecraft/world/entity/animal/axolotl/ValidatePlayDead/lambda$create$0 (Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)Z +MD: net/minecraft/world/entity/animal/camel/Camel/ ()V net/minecraft/world/entity/animal/camel/Camel/ ()V +MD: net/minecraft/world/entity/animal/camel/Camel/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V net/minecraft/world/entity/animal/camel/Camel/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V +MD: net/minecraft/world/entity/animal/camel/Camel/m_142606_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/AgeableMob;)Lnet/minecraft/world/entity/animal/camel/Camel; net/minecraft/world/entity/animal/camel/Camel/getBreedOffspring (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/AgeableMob;)Lnet/minecraft/world/entity/animal/camel/Camel; +MD: net/minecraft/world/entity/animal/camel/Camel/m_142606_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/AgeableMob;)Lnet/minecraft/world/entity/AgeableMob; net/minecraft/world/entity/animal/camel/Camel/getBreedOffspring (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/AgeableMob;)Lnet/minecraft/world/entity/AgeableMob; +MD: net/minecraft/world/entity/animal/camel/Camel/m_19956_ (Lnet/minecraft/world/entity/Entity;Lnet/minecraft/world/entity/Entity$MoveFunction;)V net/minecraft/world/entity/animal/camel/Camel/positionRider (Lnet/minecraft/world/entity/Entity;Lnet/minecraft/world/entity/Entity$MoveFunction;)V +MD: net/minecraft/world/entity/animal/camel/Camel/m_213583_ (Lnet/minecraft/world/entity/player/Player;)V net/minecraft/world/entity/animal/camel/Camel/openCustomInventoryScreen (Lnet/minecraft/world/entity/player/Player;)V +MD: net/minecraft/world/entity/animal/camel/Camel/m_245138_ ()V net/minecraft/world/entity/animal/camel/Camel/sitDown ()V +MD: net/minecraft/world/entity/animal/camel/Camel/m_245223_ ()V net/minecraft/world/entity/animal/camel/Camel/setupAnimationStates ()V +MD: net/minecraft/world/entity/animal/camel/Camel/m_245259_ ()Z net/minecraft/world/entity/animal/camel/Camel/canPerformRearing ()Z +MD: net/minecraft/world/entity/animal/camel/Camel/m_245293_ ()Z net/minecraft/world/entity/animal/camel/Camel/isDashing ()Z +MD: net/minecraft/world/entity/animal/camel/Camel/m_245346_ ()Z net/minecraft/world/entity/animal/camel/Camel/isInPoseTransition ()Z +MD: net/minecraft/world/entity/animal/camel/Camel/m_245547_ (Lnet/minecraft/world/entity/player/Player;)F net/minecraft/world/entity/animal/camel/Camel/getRiddenSpeed (Lnet/minecraft/world/entity/player/Player;)F +MD: net/minecraft/world/entity/animal/camel/Camel/m_245614_ ()I net/minecraft/world/entity/animal/camel/Camel/getJumpCooldown ()I +MD: net/minecraft/world/entity/animal/camel/Camel/m_245623_ ()Z net/minecraft/world/entity/animal/camel/Camel/isPanicking ()Z +MD: net/minecraft/world/entity/animal/camel/Camel/m_245824_ ()Z net/minecraft/world/entity/animal/camel/Camel/refuseToMove ()Z +MD: net/minecraft/world/entity/animal/camel/Camel/m_245894_ (F)Lnet/minecraft/world/phys/Vec3; net/minecraft/world/entity/animal/camel/Camel/getLeashOffset (F)Lnet/minecraft/world/phys/Vec3; +MD: net/minecraft/world/entity/animal/camel/Camel/m_245980_ (FLnet/minecraft/world/phys/Vec3;)V net/minecraft/world/entity/animal/camel/Camel/executeRidersJump (FLnet/minecraft/world/phys/Vec3;)V +MD: net/minecraft/world/entity/animal/camel/Camel/m_246174_ (J)V net/minecraft/world/entity/animal/camel/Camel/resetLastPoseChangeTick (J)V +MD: net/minecraft/world/entity/animal/camel/Camel/m_246237_ ()J net/minecraft/world/entity/animal/camel/Camel/getPoseTime ()J +MD: net/minecraft/world/entity/animal/camel/Camel/m_246265_ ()Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/animal/camel/Camel/getSaddleSoundEvent ()Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/animal/camel/Camel/m_246718_ (ZF)D net/minecraft/world/entity/animal/camel/Camel/getBodyAnchorAnimationYOffset (ZF)D +MD: net/minecraft/world/entity/animal/camel/Camel/m_246761_ ()V net/minecraft/world/entity/animal/camel/Camel/standUp ()V +MD: net/minecraft/world/entity/animal/camel/Camel/m_246824_ (Lnet/minecraft/world/entity/Entity;)V net/minecraft/world/entity/animal/camel/Camel/clampRotation (Lnet/minecraft/world/entity/Entity;)V +MD: net/minecraft/world/entity/animal/camel/Camel/m_246841_ (Z)V net/minecraft/world/entity/animal/camel/Camel/setDashing (Z)V +MD: net/minecraft/world/entity/animal/camel/Camel/m_247319_ ()Lnet/minecraft/world/entity/ai/attributes/AttributeSupplier$Builder; net/minecraft/world/entity/animal/camel/Camel/createAttributes ()Lnet/minecraft/world/entity/ai/attributes/AttributeSupplier$Builder; +MD: net/minecraft/world/entity/animal/camel/Camel/m_247328_ ()V net/minecraft/world/entity/animal/camel/Camel/standUpInstantly ()V +MD: net/minecraft/world/entity/animal/camel/Camel/m_262813_ ()D net/minecraft/world/entity/animal/camel/Camel/getRiderShieldingHeight ()D +MD: net/minecraft/world/entity/animal/camel/Camel/m_264103_ ()Z net/minecraft/world/entity/animal/camel/Camel/isCamelSitting ()Z +MD: net/minecraft/world/entity/animal/camel/Camel/m_264142_ (Lnet/minecraft/world/entity/Entity;F)V net/minecraft/world/entity/animal/camel/Camel/clampHeadRotationToBody (Lnet/minecraft/world/entity/Entity;F)V +MD: net/minecraft/world/entity/animal/camel/Camel/m_264410_ ()Z net/minecraft/world/entity/animal/camel/Camel/canSprint ()Z +MD: net/minecraft/world/entity/animal/camel/Camel/m_264491_ (J)V net/minecraft/world/entity/animal/camel/Camel/resetLastPoseChangeTickToFullStand (J)V +MD: net/minecraft/world/entity/animal/camel/Camel/m_267631_ ()Z net/minecraft/world/entity/animal/camel/Camel/isVisuallySittingDown ()Z +MD: net/minecraft/world/entity/animal/camel/Camel/m_267689_ (F)V net/minecraft/world/entity/animal/camel/Camel/updateWalkAnimation (F)V +MD: net/minecraft/world/entity/animal/camel/Camel/m_267745_ ()Z net/minecraft/world/entity/animal/camel/Camel/isCamelVisuallySitting ()Z +MD: net/minecraft/world/entity/animal/camel/Camel/m_274312_ (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/phys/Vec3;)Lnet/minecraft/world/phys/Vec3; net/minecraft/world/entity/animal/camel/Camel/getRiddenInput (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/phys/Vec3;)Lnet/minecraft/world/phys/Vec3; +MD: net/minecraft/world/entity/animal/camel/Camel/m_274391_ (Lnet/minecraft/world/entity/LivingEntity;)Lnet/minecraft/world/phys/Vec2; net/minecraft/world/entity/animal/camel/Camel/getRiddenRotation (Lnet/minecraft/world/entity/LivingEntity;)Lnet/minecraft/world/phys/Vec2; +MD: net/minecraft/world/entity/animal/camel/Camel/m_274498_ (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/phys/Vec3;)V net/minecraft/world/entity/animal/camel/Camel/tickRidden (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/phys/Vec3;)V +MD: net/minecraft/world/entity/animal/camel/Camel/m_30614_ ()Z net/minecraft/world/entity/animal/camel/Camel/isTamed ()Z +MD: net/minecraft/world/entity/animal/camel/Camel/m_5490_ ()Lnet/minecraft/world/entity/ai/Brain$Provider; net/minecraft/world/entity/animal/camel/Camel/brainProvider ()Lnet/minecraft/world/entity/ai/Brain$Provider; +MD: net/minecraft/world/entity/animal/camel/Camel/m_5592_ ()Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/animal/camel/Camel/getDeathSound ()Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/animal/camel/Camel/m_5994_ (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/item/ItemStack;)Z net/minecraft/world/entity/animal/camel/Camel/handleEating (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/item/ItemStack;)Z +MD: net/minecraft/world/entity/animal/camel/Camel/m_6048_ ()D net/minecraft/world/entity/animal/camel/Camel/getPassengersRidingOffset ()D +MD: net/minecraft/world/entity/animal/camel/Camel/m_6071_ (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;)Lnet/minecraft/world/InteractionResult; net/minecraft/world/entity/animal/camel/Camel/mobInteract (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;)Lnet/minecraft/world/InteractionResult; +MD: net/minecraft/world/entity/animal/camel/Camel/m_6431_ (Lnet/minecraft/world/entity/Pose;Lnet/minecraft/world/entity/EntityDimensions;)F net/minecraft/world/entity/animal/camel/Camel/getStandingEyeHeight (Lnet/minecraft/world/entity/Pose;Lnet/minecraft/world/entity/EntityDimensions;)F +MD: net/minecraft/world/entity/animal/camel/Camel/m_6475_ (Lnet/minecraft/world/damagesource/DamageSource;F)V net/minecraft/world/entity/animal/camel/Camel/actuallyHurt (Lnet/minecraft/world/damagesource/DamageSource;F)V +MD: net/minecraft/world/entity/animal/camel/Camel/m_6518_ (Lnet/minecraft/world/level/ServerLevelAccessor;Lnet/minecraft/world/DifficultyInstance;Lnet/minecraft/world/entity/MobSpawnType;Lnet/minecraft/world/entity/SpawnGroupData;Lnet/minecraft/nbt/CompoundTag;)Lnet/minecraft/world/entity/SpawnGroupData; net/minecraft/world/entity/animal/camel/Camel/finalizeSpawn (Lnet/minecraft/world/level/ServerLevelAccessor;Lnet/minecraft/world/DifficultyInstance;Lnet/minecraft/world/entity/MobSpawnType;Lnet/minecraft/world/entity/SpawnGroupData;Lnet/minecraft/nbt/CompoundTag;)Lnet/minecraft/world/entity/SpawnGroupData; +MD: net/minecraft/world/entity/animal/camel/Camel/m_6688_ ()Lnet/minecraft/world/entity/LivingEntity; net/minecraft/world/entity/animal/camel/Camel/getControllingPassenger ()Lnet/minecraft/world/entity/LivingEntity; +MD: net/minecraft/world/entity/animal/camel/Camel/m_6898_ (Lnet/minecraft/world/item/ItemStack;)Z net/minecraft/world/entity/animal/camel/Camel/isFood (Lnet/minecraft/world/item/ItemStack;)Z +MD: net/minecraft/world/entity/animal/camel/Camel/m_6972_ (Lnet/minecraft/world/entity/Pose;)Lnet/minecraft/world/entity/EntityDimensions; net/minecraft/world/entity/animal/camel/Camel/getDimensions (Lnet/minecraft/world/entity/Pose;)Lnet/minecraft/world/entity/EntityDimensions; +MD: net/minecraft/world/entity/animal/camel/Camel/m_7023_ (Lnet/minecraft/world/phys/Vec3;)V net/minecraft/world/entity/animal/camel/Camel/travel (Lnet/minecraft/world/phys/Vec3;)V +MD: net/minecraft/world/entity/animal/camel/Camel/m_7132_ ()Z net/minecraft/world/entity/animal/camel/Camel/canJump ()Z +MD: net/minecraft/world/entity/animal/camel/Camel/m_7199_ (I)V net/minecraft/world/entity/animal/camel/Camel/handleStartJump (I)V +MD: net/minecraft/world/entity/animal/camel/Camel/m_7310_ (Lnet/minecraft/world/entity/Entity;)Z net/minecraft/world/entity/animal/camel/Camel/canAddPassenger (Lnet/minecraft/world/entity/Entity;)Z +MD: net/minecraft/world/entity/animal/camel/Camel/m_7340_ (Lnet/minecraft/world/entity/Entity;)V net/minecraft/world/entity/animal/camel/Camel/onPassengerTurned (Lnet/minecraft/world/entity/Entity;)V +MD: net/minecraft/world/entity/animal/camel/Camel/m_7350_ (Lnet/minecraft/network/syncher/EntityDataAccessor;)V net/minecraft/world/entity/animal/camel/Camel/onSyncedDataUpdated (Lnet/minecraft/network/syncher/EntityDataAccessor;)V +MD: net/minecraft/world/entity/animal/camel/Camel/m_7355_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V net/minecraft/world/entity/animal/camel/Camel/playStepSound (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V +MD: net/minecraft/world/entity/animal/camel/Camel/m_7378_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/entity/animal/camel/Camel/readAdditionalSaveData (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/entity/animal/camel/Camel/m_7380_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/entity/animal/camel/Camel/addAdditionalSaveData (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/entity/animal/camel/Camel/m_7515_ ()Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/animal/camel/Camel/getAmbientSound ()Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/animal/camel/Camel/m_7560_ ()Lnet/minecraft/world/entity/ai/control/BodyRotationControl; net/minecraft/world/entity/animal/camel/Camel/createBodyControl ()Lnet/minecraft/world/entity/ai/control/BodyRotationControl; +MD: net/minecraft/world/entity/animal/camel/Camel/m_7848_ (Lnet/minecraft/world/entity/animal/Animal;)Z net/minecraft/world/entity/animal/camel/Camel/canMate (Lnet/minecraft/world/entity/animal/Animal;)Z +MD: net/minecraft/world/entity/animal/camel/Camel/m_7872_ ()Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/animal/camel/Camel/getEatingSound ()Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/animal/camel/Camel/m_7880_ (F)V net/minecraft/world/entity/animal/camel/Camel/onLeashDistance (F)V +MD: net/minecraft/world/entity/animal/camel/Camel/m_7888_ (I)V net/minecraft/world/entity/animal/camel/Camel/onPlayerJump (I)V +MD: net/minecraft/world/entity/animal/camel/Camel/m_7975_ (Lnet/minecraft/world/damagesource/DamageSource;)Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/animal/camel/Camel/getHurtSound (Lnet/minecraft/world/damagesource/DamageSource;)Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/animal/camel/Camel/m_8012_ ()V net/minecraft/world/entity/animal/camel/Camel/handleStopJump ()V +MD: net/minecraft/world/entity/animal/camel/Camel/m_8024_ ()V net/minecraft/world/entity/animal/camel/Camel/customServerAiStep ()V +MD: net/minecraft/world/entity/animal/camel/Camel/m_8025_ ()V net/minecraft/world/entity/animal/camel/Camel/sendDebugPackets ()V +MD: net/minecraft/world/entity/animal/camel/Camel/m_8075_ (Lcom/mojang/serialization/Dynamic;)Lnet/minecraft/world/entity/ai/Brain; net/minecraft/world/entity/animal/camel/Camel/makeBrain (Lcom/mojang/serialization/Dynamic;)Lnet/minecraft/world/entity/ai/Brain; +MD: net/minecraft/world/entity/animal/camel/Camel/m_8085_ ()I net/minecraft/world/entity/animal/camel/Camel/getMaxHeadYRot ()I +MD: net/minecraft/world/entity/animal/camel/Camel/m_8097_ ()V net/minecraft/world/entity/animal/camel/Camel/defineSynchedData ()V +MD: net/minecraft/world/entity/animal/camel/Camel/m_8099_ ()V net/minecraft/world/entity/animal/camel/Camel/registerGoals ()V +MD: net/minecraft/world/entity/animal/camel/Camel/m_8119_ ()V net/minecraft/world/entity/animal/camel/Camel/tick ()V +MD: net/minecraft/world/entity/animal/camel/Camel$CamelBodyRotationControl/ (Lnet/minecraft/world/entity/animal/camel/Camel;Lnet/minecraft/world/entity/animal/camel/Camel;)V net/minecraft/world/entity/animal/camel/Camel$CamelBodyRotationControl/ (Lnet/minecraft/world/entity/animal/camel/Camel;Lnet/minecraft/world/entity/animal/camel/Camel;)V +MD: net/minecraft/world/entity/animal/camel/Camel$CamelBodyRotationControl/m_8121_ ()V net/minecraft/world/entity/animal/camel/Camel$CamelBodyRotationControl/clientTick ()V +MD: net/minecraft/world/entity/animal/camel/Camel$CamelMoveControl/ (Lnet/minecraft/world/entity/animal/camel/Camel;)V net/minecraft/world/entity/animal/camel/Camel$CamelMoveControl/ (Lnet/minecraft/world/entity/animal/camel/Camel;)V +MD: net/minecraft/world/entity/animal/camel/Camel$CamelMoveControl/m_8126_ ()V net/minecraft/world/entity/animal/camel/Camel$CamelMoveControl/tick ()V +MD: net/minecraft/world/entity/animal/camel/CamelAi/ ()V net/minecraft/world/entity/animal/camel/CamelAi/ ()V +MD: net/minecraft/world/entity/animal/camel/CamelAi/ ()V net/minecraft/world/entity/animal/camel/CamelAi/ ()V +MD: net/minecraft/world/entity/animal/camel/CamelAi/m_245825_ (Lnet/minecraft/world/entity/ai/Brain;)V net/minecraft/world/entity/animal/camel/CamelAi/initCoreActivity (Lnet/minecraft/world/entity/ai/Brain;)V +MD: net/minecraft/world/entity/animal/camel/CamelAi/m_246127_ (Lnet/minecraft/world/entity/animal/camel/Camel;)V net/minecraft/world/entity/animal/camel/CamelAi/updateActivity (Lnet/minecraft/world/entity/animal/camel/Camel;)V +MD: net/minecraft/world/entity/animal/camel/CamelAi/m_246286_ (Lnet/minecraft/world/entity/animal/camel/Camel;Lnet/minecraft/util/RandomSource;)V net/minecraft/world/entity/animal/camel/CamelAi/initMemories (Lnet/minecraft/world/entity/animal/camel/Camel;Lnet/minecraft/util/RandomSource;)V +MD: net/minecraft/world/entity/animal/camel/CamelAi/m_246511_ ()Lnet/minecraft/world/item/crafting/Ingredient; net/minecraft/world/entity/animal/camel/CamelAi/getTemptations ()Lnet/minecraft/world/item/crafting/Ingredient; +MD: net/minecraft/world/entity/animal/camel/CamelAi/m_246612_ (Lnet/minecraft/world/entity/ai/Brain;)V net/minecraft/world/entity/animal/camel/CamelAi/initIdleActivity (Lnet/minecraft/world/entity/ai/Brain;)V +MD: net/minecraft/world/entity/animal/camel/CamelAi/m_246665_ ()Lnet/minecraft/world/entity/ai/Brain$Provider; net/minecraft/world/entity/animal/camel/CamelAi/brainProvider ()Lnet/minecraft/world/entity/ai/Brain$Provider; +MD: net/minecraft/world/entity/animal/camel/CamelAi/m_246748_ (Lnet/minecraft/world/entity/ai/Brain;)Lnet/minecraft/world/entity/ai/Brain; net/minecraft/world/entity/animal/camel/CamelAi/makeBrain (Lnet/minecraft/world/entity/ai/Brain;)Lnet/minecraft/world/entity/ai/Brain; +MD: net/minecraft/world/entity/animal/camel/CamelAi/m_247663_ (Lnet/minecraft/world/entity/LivingEntity;)Ljava/lang/Float; net/minecraft/world/entity/animal/camel/CamelAi/lambda$initIdleActivity$0 (Lnet/minecraft/world/entity/LivingEntity;)Ljava/lang/Float; +MD: net/minecraft/world/entity/animal/camel/CamelAi$CamelPanic/ (F)V net/minecraft/world/entity/animal/camel/CamelAi$CamelPanic/ (F)V +MD: net/minecraft/world/entity/animal/camel/CamelAi$CamelPanic/m_6735_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/PathfinderMob;J)V net/minecraft/world/entity/animal/camel/CamelAi$CamelPanic/start (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/PathfinderMob;J)V +MD: net/minecraft/world/entity/animal/camel/CamelAi$CamelPanic/m_6735_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)V net/minecraft/world/entity/animal/camel/CamelAi$CamelPanic/start (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)V +MD: net/minecraft/world/entity/animal/camel/CamelAi$RandomSitting/ (I)V net/minecraft/world/entity/animal/camel/CamelAi$RandomSitting/ (I)V +MD: net/minecraft/world/entity/animal/camel/CamelAi$RandomSitting/m_6114_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;)Z net/minecraft/world/entity/animal/camel/CamelAi$RandomSitting/checkExtraStartConditions (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;)Z +MD: net/minecraft/world/entity/animal/camel/CamelAi$RandomSitting/m_6114_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/animal/camel/Camel;)Z net/minecraft/world/entity/animal/camel/CamelAi$RandomSitting/checkExtraStartConditions (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/animal/camel/Camel;)Z +MD: net/minecraft/world/entity/animal/camel/CamelAi$RandomSitting/m_6735_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)V net/minecraft/world/entity/animal/camel/CamelAi$RandomSitting/start (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)V +MD: net/minecraft/world/entity/animal/camel/CamelAi$RandomSitting/m_6735_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/animal/camel/Camel;J)V net/minecraft/world/entity/animal/camel/CamelAi$RandomSitting/start (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/animal/camel/Camel;J)V +MD: net/minecraft/world/entity/animal/frog/Frog/ ()V net/minecraft/world/entity/animal/frog/Frog/ ()V +MD: net/minecraft/world/entity/animal/frog/Frog/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V net/minecraft/world/entity/animal/frog/Frog/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V +MD: net/minecraft/world/entity/animal/frog/Frog/m_142606_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/AgeableMob;)Lnet/minecraft/world/entity/AgeableMob; net/minecraft/world/entity/animal/frog/Frog/getBreedOffspring (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/AgeableMob;)Lnet/minecraft/world/entity/AgeableMob; +MD: net/minecraft/world/entity/animal/frog/Frog/m_21529_ ()I net/minecraft/world/entity/animal/frog/Frog/getHeadRotSpeed ()I +MD: net/minecraft/world/entity/animal/frog/Frog/m_218481_ (Lnet/minecraft/world/entity/Entity;)V net/minecraft/world/entity/animal/frog/Frog/setTongueTarget (Lnet/minecraft/world/entity/Entity;)V +MD: net/minecraft/world/entity/animal/frog/Frog/m_218511_ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/world/entity/MobSpawnType;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)Z net/minecraft/world/entity/animal/frog/Frog/checkFrogSpawnRules (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/world/entity/MobSpawnType;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)Z +MD: net/minecraft/world/entity/animal/frog/Frog/m_218525_ ()Lnet/minecraft/world/entity/ai/attributes/AttributeSupplier$Builder; net/minecraft/world/entity/animal/frog/Frog/createAttributes ()Lnet/minecraft/world/entity/ai/attributes/AttributeSupplier$Builder; +MD: net/minecraft/world/entity/animal/frog/Frog/m_218532_ (Lnet/minecraft/world/entity/LivingEntity;)Z net/minecraft/world/entity/animal/frog/Frog/canEat (Lnet/minecraft/world/entity/LivingEntity;)Z +MD: net/minecraft/world/entity/animal/frog/Frog/m_218536_ ()V net/minecraft/world/entity/animal/frog/Frog/eraseTongueTarget ()V +MD: net/minecraft/world/entity/animal/frog/Frog/m_218538_ ()Ljava/util/Optional; net/minecraft/world/entity/animal/frog/Frog/getTongueTarget ()Ljava/util/Optional; +MD: net/minecraft/world/entity/animal/frog/Frog/m_267689_ (F)V net/minecraft/world/entity/animal/frog/Frog/updateWalkAnimation (F)V +MD: net/minecraft/world/entity/animal/frog/Frog/m_27563_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/animal/Animal;)V net/minecraft/world/entity/animal/frog/Frog/spawnChildFromBreeding (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/animal/Animal;)V +MD: net/minecraft/world/entity/animal/frog/Frog/m_28464_ (Ljava/lang/Object;)V net/minecraft/world/entity/animal/frog/Frog/setVariant (Ljava/lang/Object;)V +MD: net/minecraft/world/entity/animal/frog/Frog/m_28464_ (Lnet/minecraft/world/entity/animal/FrogVariant;)V net/minecraft/world/entity/animal/frog/Frog/setVariant (Lnet/minecraft/world/entity/animal/FrogVariant;)V +MD: net/minecraft/world/entity/animal/frog/Frog/m_28554_ ()Ljava/lang/Object; net/minecraft/world/entity/animal/frog/Frog/getVariant ()Ljava/lang/Object; +MD: net/minecraft/world/entity/animal/frog/Frog/m_28554_ ()Lnet/minecraft/world/entity/animal/FrogVariant; net/minecraft/world/entity/animal/frog/Frog/getVariant ()Lnet/minecraft/world/entity/animal/FrogVariant; +MD: net/minecraft/world/entity/animal/frog/Frog/m_5490_ ()Lnet/minecraft/world/entity/ai/Brain$Provider; net/minecraft/world/entity/animal/frog/Frog/brainProvider ()Lnet/minecraft/world/entity/ai/Brain$Provider; +MD: net/minecraft/world/entity/animal/frog/Frog/m_5592_ ()Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/animal/frog/Frog/getDeathSound ()Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/animal/frog/Frog/m_5639_ (FF)I net/minecraft/world/entity/animal/frog/Frog/calculateFallDamage (FF)I +MD: net/minecraft/world/entity/animal/frog/Frog/m_6037_ (Lnet/minecraft/world/level/Level;)Lnet/minecraft/world/entity/ai/navigation/PathNavigation; net/minecraft/world/entity/animal/frog/Frog/createNavigation (Lnet/minecraft/world/level/Level;)Lnet/minecraft/world/entity/ai/navigation/PathNavigation; +MD: net/minecraft/world/entity/animal/frog/Frog/m_6040_ ()Z net/minecraft/world/entity/animal/frog/Frog/canBreatheUnderwater ()Z +MD: net/minecraft/world/entity/animal/frog/Frog/m_6063_ ()Z net/minecraft/world/entity/animal/frog/Frog/isPushedByFluid ()Z +MD: net/minecraft/world/entity/animal/frog/Frog/m_6162_ ()Z net/minecraft/world/entity/animal/frog/Frog/isBaby ()Z +MD: net/minecraft/world/entity/animal/frog/Frog/m_6274_ ()Lnet/minecraft/world/entity/ai/Brain; net/minecraft/world/entity/animal/frog/Frog/getBrain ()Lnet/minecraft/world/entity/ai/Brain; +MD: net/minecraft/world/entity/animal/frog/Frog/m_6518_ (Lnet/minecraft/world/level/ServerLevelAccessor;Lnet/minecraft/world/DifficultyInstance;Lnet/minecraft/world/entity/MobSpawnType;Lnet/minecraft/world/entity/SpawnGroupData;Lnet/minecraft/nbt/CompoundTag;)Lnet/minecraft/world/entity/SpawnGroupData; net/minecraft/world/entity/animal/frog/Frog/finalizeSpawn (Lnet/minecraft/world/level/ServerLevelAccessor;Lnet/minecraft/world/DifficultyInstance;Lnet/minecraft/world/entity/MobSpawnType;Lnet/minecraft/world/entity/SpawnGroupData;Lnet/minecraft/nbt/CompoundTag;)Lnet/minecraft/world/entity/SpawnGroupData; +MD: net/minecraft/world/entity/animal/frog/Frog/m_6863_ (Z)V net/minecraft/world/entity/animal/frog/Frog/setBaby (Z)V +MD: net/minecraft/world/entity/animal/frog/Frog/m_6898_ (Lnet/minecraft/world/item/ItemStack;)Z net/minecraft/world/entity/animal/frog/Frog/isFood (Lnet/minecraft/world/item/ItemStack;)Z +MD: net/minecraft/world/entity/animal/frog/Frog/m_7023_ (Lnet/minecraft/world/phys/Vec3;)V net/minecraft/world/entity/animal/frog/Frog/travel (Lnet/minecraft/world/phys/Vec3;)V +MD: net/minecraft/world/entity/animal/frog/Frog/m_7350_ (Lnet/minecraft/network/syncher/EntityDataAccessor;)V net/minecraft/world/entity/animal/frog/Frog/onSyncedDataUpdated (Lnet/minecraft/network/syncher/EntityDataAccessor;)V +MD: net/minecraft/world/entity/animal/frog/Frog/m_7355_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V net/minecraft/world/entity/animal/frog/Frog/playStepSound (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V +MD: net/minecraft/world/entity/animal/frog/Frog/m_7378_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/entity/animal/frog/Frog/readAdditionalSaveData (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/entity/animal/frog/Frog/m_7380_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/entity/animal/frog/Frog/addAdditionalSaveData (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/entity/animal/frog/Frog/m_7515_ ()Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/animal/frog/Frog/getAmbientSound ()Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/animal/frog/Frog/m_7975_ (Lnet/minecraft/world/damagesource/DamageSource;)Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/animal/frog/Frog/getHurtSound (Lnet/minecraft/world/damagesource/DamageSource;)Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/animal/frog/Frog/m_8024_ ()V net/minecraft/world/entity/animal/frog/Frog/customServerAiStep ()V +MD: net/minecraft/world/entity/animal/frog/Frog/m_8025_ ()V net/minecraft/world/entity/animal/frog/Frog/sendDebugPackets ()V +MD: net/minecraft/world/entity/animal/frog/Frog/m_8075_ (Lcom/mojang/serialization/Dynamic;)Lnet/minecraft/world/entity/ai/Brain; net/minecraft/world/entity/animal/frog/Frog/makeBrain (Lcom/mojang/serialization/Dynamic;)Lnet/minecraft/world/entity/ai/Brain; +MD: net/minecraft/world/entity/animal/frog/Frog/m_8085_ ()I net/minecraft/world/entity/animal/frog/Frog/getMaxHeadYRot ()I +MD: net/minecraft/world/entity/animal/frog/Frog/m_8097_ ()V net/minecraft/world/entity/animal/frog/Frog/defineSynchedData ()V +MD: net/minecraft/world/entity/animal/frog/Frog/m_8119_ ()V net/minecraft/world/entity/animal/frog/Frog/tick ()V +MD: net/minecraft/world/entity/animal/frog/Frog$FrogLookControl/ (Lnet/minecraft/world/entity/animal/frog/Frog;Lnet/minecraft/world/entity/Mob;)V net/minecraft/world/entity/animal/frog/Frog$FrogLookControl/ (Lnet/minecraft/world/entity/animal/frog/Frog;Lnet/minecraft/world/entity/Mob;)V +MD: net/minecraft/world/entity/animal/frog/Frog$FrogLookControl/m_8106_ ()Z net/minecraft/world/entity/animal/frog/Frog$FrogLookControl/resetXRotOnTick ()Z +MD: net/minecraft/world/entity/animal/frog/Frog$FrogNodeEvaluator/ (Z)V net/minecraft/world/entity/animal/frog/Frog$FrogNodeEvaluator/ (Z)V +MD: net/minecraft/world/entity/animal/frog/Frog$FrogNodeEvaluator/m_7171_ ()Lnet/minecraft/world/level/pathfinder/Node; net/minecraft/world/entity/animal/frog/Frog$FrogNodeEvaluator/getStart ()Lnet/minecraft/world/level/pathfinder/Node; +MD: net/minecraft/world/entity/animal/frog/Frog$FrogNodeEvaluator/m_8086_ (Lnet/minecraft/world/level/BlockGetter;III)Lnet/minecraft/world/level/pathfinder/BlockPathTypes; net/minecraft/world/entity/animal/frog/Frog$FrogNodeEvaluator/getBlockPathType (Lnet/minecraft/world/level/BlockGetter;III)Lnet/minecraft/world/level/pathfinder/BlockPathTypes; +MD: net/minecraft/world/entity/animal/frog/Frog$FrogPathNavigation/ (Lnet/minecraft/world/entity/animal/frog/Frog;Lnet/minecraft/world/level/Level;)V net/minecraft/world/entity/animal/frog/Frog$FrogPathNavigation/ (Lnet/minecraft/world/entity/animal/frog/Frog;Lnet/minecraft/world/level/Level;)V +MD: net/minecraft/world/entity/animal/frog/Frog$FrogPathNavigation/m_264193_ (Lnet/minecraft/world/level/pathfinder/BlockPathTypes;)Z net/minecraft/world/entity/animal/frog/Frog$FrogPathNavigation/canCutCorner (Lnet/minecraft/world/level/pathfinder/BlockPathTypes;)Z +MD: net/minecraft/world/entity/animal/frog/Frog$FrogPathNavigation/m_5532_ (I)Lnet/minecraft/world/level/pathfinder/PathFinder; net/minecraft/world/entity/animal/frog/Frog$FrogPathNavigation/createPathFinder (I)Lnet/minecraft/world/level/pathfinder/PathFinder; +MD: net/minecraft/world/entity/animal/frog/FrogAi/ ()V net/minecraft/world/entity/animal/frog/FrogAi/ ()V +MD: net/minecraft/world/entity/animal/frog/FrogAi/ ()V net/minecraft/world/entity/animal/frog/FrogAi/ ()V +MD: net/minecraft/world/entity/animal/frog/FrogAi/m_218572_ ()Lnet/minecraft/world/item/crafting/Ingredient; net/minecraft/world/entity/animal/frog/FrogAi/getTemptations ()Lnet/minecraft/world/item/crafting/Ingredient; +MD: net/minecraft/world/entity/animal/frog/FrogAi/m_218573_ (Lnet/minecraft/world/entity/LivingEntity;)Ljava/lang/Float; net/minecraft/world/entity/animal/frog/FrogAi/lambda$initSwimActivity$2 (Lnet/minecraft/world/entity/LivingEntity;)Ljava/lang/Float; +MD: net/minecraft/world/entity/animal/frog/FrogAi/m_218575_ (Lnet/minecraft/world/entity/ai/Brain;)Lnet/minecraft/world/entity/ai/Brain; net/minecraft/world/entity/animal/frog/FrogAi/makeBrain (Lnet/minecraft/world/entity/ai/Brain;)Lnet/minecraft/world/entity/ai/Brain; +MD: net/minecraft/world/entity/animal/frog/FrogAi/m_218577_ (Lnet/minecraft/world/entity/animal/frog/Frog;)V net/minecraft/world/entity/animal/frog/FrogAi/updateActivity (Lnet/minecraft/world/entity/animal/frog/Frog;)V +MD: net/minecraft/world/entity/animal/frog/FrogAi/m_218579_ (Lnet/minecraft/world/entity/animal/frog/Frog;Lnet/minecraft/util/RandomSource;)V net/minecraft/world/entity/animal/frog/FrogAi/initMemories (Lnet/minecraft/world/entity/animal/frog/Frog;Lnet/minecraft/util/RandomSource;)V +MD: net/minecraft/world/entity/animal/frog/FrogAi/m_218584_ (Lnet/minecraft/world/entity/LivingEntity;)Ljava/lang/Float; net/minecraft/world/entity/animal/frog/FrogAi/lambda$initIdleActivity$0 (Lnet/minecraft/world/entity/LivingEntity;)Ljava/lang/Float; +MD: net/minecraft/world/entity/animal/frog/FrogAi/m_218586_ (Lnet/minecraft/world/entity/ai/Brain;)V net/minecraft/world/entity/animal/frog/FrogAi/initCoreActivity (Lnet/minecraft/world/entity/ai/Brain;)V +MD: net/minecraft/world/entity/animal/frog/FrogAi/m_218588_ (Lnet/minecraft/world/entity/animal/frog/Frog;)Z net/minecraft/world/entity/animal/frog/FrogAi/canAttack (Lnet/minecraft/world/entity/animal/frog/Frog;)Z +MD: net/minecraft/world/entity/animal/frog/FrogAi/m_218590_ (Lnet/minecraft/world/entity/ai/Brain;)V net/minecraft/world/entity/animal/frog/FrogAi/initIdleActivity (Lnet/minecraft/world/entity/ai/Brain;)V +MD: net/minecraft/world/entity/animal/frog/FrogAi/m_218592_ (Lnet/minecraft/world/entity/animal/frog/Frog;)Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/animal/frog/FrogAi/lambda$initJumpActivity$5 (Lnet/minecraft/world/entity/animal/frog/Frog;)Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/animal/frog/FrogAi/m_218594_ (Lnet/minecraft/world/entity/ai/Brain;)V net/minecraft/world/entity/animal/frog/FrogAi/initSwimActivity (Lnet/minecraft/world/entity/ai/Brain;)V +MD: net/minecraft/world/entity/animal/frog/FrogAi/m_218596_ (Lnet/minecraft/world/entity/animal/frog/Frog;)Ljava/util/Optional; net/minecraft/world/entity/animal/frog/FrogAi/lambda$initLaySpawnActivity$4 (Lnet/minecraft/world/entity/animal/frog/Frog;)Ljava/util/Optional; +MD: net/minecraft/world/entity/animal/frog/FrogAi/m_218598_ (Lnet/minecraft/world/entity/ai/Brain;)V net/minecraft/world/entity/animal/frog/FrogAi/initLaySpawnActivity (Lnet/minecraft/world/entity/ai/Brain;)V +MD: net/minecraft/world/entity/animal/frog/FrogAi/m_218600_ (Lnet/minecraft/world/entity/animal/frog/Frog;)Ljava/util/Optional; net/minecraft/world/entity/animal/frog/FrogAi/lambda$initSwimActivity$3 (Lnet/minecraft/world/entity/animal/frog/Frog;)Ljava/util/Optional; +MD: net/minecraft/world/entity/animal/frog/FrogAi/m_218602_ (Lnet/minecraft/world/entity/ai/Brain;)V net/minecraft/world/entity/animal/frog/FrogAi/initJumpActivity (Lnet/minecraft/world/entity/ai/Brain;)V +MD: net/minecraft/world/entity/animal/frog/FrogAi/m_218604_ (Lnet/minecraft/world/entity/animal/frog/Frog;)Ljava/util/Optional; net/minecraft/world/entity/animal/frog/FrogAi/lambda$initIdleActivity$1 (Lnet/minecraft/world/entity/animal/frog/Frog;)Ljava/util/Optional; +MD: net/minecraft/world/entity/animal/frog/FrogAi/m_218606_ (Lnet/minecraft/world/entity/ai/Brain;)V net/minecraft/world/entity/animal/frog/FrogAi/initTongueActivity (Lnet/minecraft/world/entity/ai/Brain;)V +MD: net/minecraft/world/entity/animal/frog/FrogAi/m_246199_ (Lnet/minecraft/world/entity/Mob;Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/entity/animal/frog/FrogAi/isAcceptableLandingSpot (Lnet/minecraft/world/entity/Mob;Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/entity/animal/frog/ShootTongue/ (Lnet/minecraft/sounds/SoundEvent;Lnet/minecraft/sounds/SoundEvent;)V net/minecraft/world/entity/animal/frog/ShootTongue/ (Lnet/minecraft/sounds/SoundEvent;Lnet/minecraft/sounds/SoundEvent;)V +MD: net/minecraft/world/entity/animal/frog/ShootTongue/m_218640_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/animal/frog/Frog;)V net/minecraft/world/entity/animal/frog/ShootTongue/eatEntity (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/animal/frog/Frog;)V +MD: net/minecraft/world/entity/animal/frog/ShootTongue/m_238358_ (Lnet/minecraft/world/entity/animal/frog/Frog;Lnet/minecraft/world/entity/LivingEntity;)Z net/minecraft/world/entity/animal/frog/ShootTongue/canPathfindToTarget (Lnet/minecraft/world/entity/animal/frog/Frog;Lnet/minecraft/world/entity/LivingEntity;)Z +MD: net/minecraft/world/entity/animal/frog/ShootTongue/m_238443_ (Lnet/minecraft/world/entity/animal/frog/Frog;Lnet/minecraft/world/entity/LivingEntity;)V net/minecraft/world/entity/animal/frog/ShootTongue/addUnreachableTargetToMemory (Lnet/minecraft/world/entity/animal/frog/Frog;Lnet/minecraft/world/entity/LivingEntity;)V +MD: net/minecraft/world/entity/animal/frog/ShootTongue/m_6114_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;)Z net/minecraft/world/entity/animal/frog/ShootTongue/checkExtraStartConditions (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;)Z +MD: net/minecraft/world/entity/animal/frog/ShootTongue/m_6114_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/animal/frog/Frog;)Z net/minecraft/world/entity/animal/frog/ShootTongue/checkExtraStartConditions (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/animal/frog/Frog;)Z +MD: net/minecraft/world/entity/animal/frog/ShootTongue/m_6725_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)V net/minecraft/world/entity/animal/frog/ShootTongue/tick (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)V +MD: net/minecraft/world/entity/animal/frog/ShootTongue/m_6725_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/animal/frog/Frog;J)V net/minecraft/world/entity/animal/frog/ShootTongue/tick (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/animal/frog/Frog;J)V +MD: net/minecraft/world/entity/animal/frog/ShootTongue/m_6732_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)V net/minecraft/world/entity/animal/frog/ShootTongue/stop (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)V +MD: net/minecraft/world/entity/animal/frog/ShootTongue/m_6732_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/animal/frog/Frog;J)V net/minecraft/world/entity/animal/frog/ShootTongue/stop (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/animal/frog/Frog;J)V +MD: net/minecraft/world/entity/animal/frog/ShootTongue/m_6735_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/animal/frog/Frog;J)V net/minecraft/world/entity/animal/frog/ShootTongue/start (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/animal/frog/Frog;J)V +MD: net/minecraft/world/entity/animal/frog/ShootTongue/m_6735_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)V net/minecraft/world/entity/animal/frog/ShootTongue/start (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)V +MD: net/minecraft/world/entity/animal/frog/ShootTongue/m_6737_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/animal/frog/Frog;J)Z net/minecraft/world/entity/animal/frog/ShootTongue/canStillUse (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/animal/frog/Frog;J)Z +MD: net/minecraft/world/entity/animal/frog/ShootTongue/m_6737_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)Z net/minecraft/world/entity/animal/frog/ShootTongue/canStillUse (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)Z +MD: net/minecraft/world/entity/animal/frog/ShootTongue$1/ ()V net/minecraft/world/entity/animal/frog/ShootTongue$1/ ()V +MD: net/minecraft/world/entity/animal/frog/ShootTongue$State/ ()V net/minecraft/world/entity/animal/frog/ShootTongue$State/ ()V +MD: net/minecraft/world/entity/animal/frog/ShootTongue$State/ (Ljava/lang/String;I)V net/minecraft/world/entity/animal/frog/ShootTongue$State/ (Ljava/lang/String;I)V +MD: net/minecraft/world/entity/animal/frog/ShootTongue$State/m_218674_ ()[Lnet/minecraft/world/entity/animal/frog/ShootTongue$State; net/minecraft/world/entity/animal/frog/ShootTongue$State/$values ()[Lnet/minecraft/world/entity/animal/frog/ShootTongue$State; +MD: net/minecraft/world/entity/animal/frog/ShootTongue$State/valueOf (Ljava/lang/String;)Lnet/minecraft/world/entity/animal/frog/ShootTongue$State; net/minecraft/world/entity/animal/frog/ShootTongue$State/valueOf (Ljava/lang/String;)Lnet/minecraft/world/entity/animal/frog/ShootTongue$State; +MD: net/minecraft/world/entity/animal/frog/ShootTongue$State/values ()[Lnet/minecraft/world/entity/animal/frog/ShootTongue$State; net/minecraft/world/entity/animal/frog/ShootTongue$State/values ()[Lnet/minecraft/world/entity/animal/frog/ShootTongue$State; +MD: net/minecraft/world/entity/animal/frog/Tadpole/ ()V net/minecraft/world/entity/animal/frog/Tadpole/ ()V +MD: net/minecraft/world/entity/animal/frog/Tadpole/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V net/minecraft/world/entity/animal/frog/Tadpole/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V +MD: net/minecraft/world/entity/animal/frog/Tadpole/m_142278_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/entity/animal/frog/Tadpole/loadFromBucketTag (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/entity/animal/frog/Tadpole/m_142623_ ()Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/animal/frog/Tadpole/getPickupSound ()Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/animal/frog/Tadpole/m_218690_ (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/item/ItemStack;)V net/minecraft/world/entity/animal/frog/Tadpole/feed (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/item/ItemStack;)V +MD: net/minecraft/world/entity/animal/frog/Tadpole/m_218700_ (I)V net/minecraft/world/entity/animal/frog/Tadpole/ageUp (I)V +MD: net/minecraft/world/entity/animal/frog/Tadpole/m_218705_ (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/item/ItemStack;)V net/minecraft/world/entity/animal/frog/Tadpole/usePlayerItem (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/item/ItemStack;)V +MD: net/minecraft/world/entity/animal/frog/Tadpole/m_218710_ (I)V net/minecraft/world/entity/animal/frog/Tadpole/setAge (I)V +MD: net/minecraft/world/entity/animal/frog/Tadpole/m_218720_ ()Lnet/minecraft/world/entity/ai/attributes/AttributeSupplier$Builder; net/minecraft/world/entity/animal/frog/Tadpole/createAttributes ()Lnet/minecraft/world/entity/ai/attributes/AttributeSupplier$Builder; +MD: net/minecraft/world/entity/animal/frog/Tadpole/m_218721_ ()I net/minecraft/world/entity/animal/frog/Tadpole/getAge ()I +MD: net/minecraft/world/entity/animal/frog/Tadpole/m_218722_ ()V net/minecraft/world/entity/animal/frog/Tadpole/ageUp ()V +MD: net/minecraft/world/entity/animal/frog/Tadpole/m_218723_ ()I net/minecraft/world/entity/animal/frog/Tadpole/getTicksLeftUntilAdult ()I +MD: net/minecraft/world/entity/animal/frog/Tadpole/m_218726_ (Lnet/minecraft/world/item/ItemStack;)Z net/minecraft/world/entity/animal/frog/Tadpole/isFood (Lnet/minecraft/world/item/ItemStack;)Z +MD: net/minecraft/world/entity/animal/frog/Tadpole/m_27487_ ()Z net/minecraft/world/entity/animal/frog/Tadpole/fromBucket ()Z +MD: net/minecraft/world/entity/animal/frog/Tadpole/m_27497_ (Z)V net/minecraft/world/entity/animal/frog/Tadpole/setFromBucket (Z)V +MD: net/minecraft/world/entity/animal/frog/Tadpole/m_28282_ ()Lnet/minecraft/world/item/ItemStack; net/minecraft/world/entity/animal/frog/Tadpole/getBucketItemStack ()Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/entity/animal/frog/Tadpole/m_5490_ ()Lnet/minecraft/world/entity/ai/Brain$Provider; net/minecraft/world/entity/animal/frog/Tadpole/brainProvider ()Lnet/minecraft/world/entity/ai/Brain$Provider; +MD: net/minecraft/world/entity/animal/frog/Tadpole/m_5592_ ()Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/animal/frog/Tadpole/getDeathSound ()Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/animal/frog/Tadpole/m_5699_ ()Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/animal/frog/Tadpole/getFlopSound ()Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/animal/frog/Tadpole/m_6037_ (Lnet/minecraft/world/level/Level;)Lnet/minecraft/world/entity/ai/navigation/PathNavigation; net/minecraft/world/entity/animal/frog/Tadpole/createNavigation (Lnet/minecraft/world/level/Level;)Lnet/minecraft/world/entity/ai/navigation/PathNavigation; +MD: net/minecraft/world/entity/animal/frog/Tadpole/m_6071_ (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;)Lnet/minecraft/world/InteractionResult; net/minecraft/world/entity/animal/frog/Tadpole/mobInteract (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;)Lnet/minecraft/world/InteractionResult; +MD: net/minecraft/world/entity/animal/frog/Tadpole/m_6149_ ()Z net/minecraft/world/entity/animal/frog/Tadpole/shouldDropExperience ()Z +MD: net/minecraft/world/entity/animal/frog/Tadpole/m_6274_ ()Lnet/minecraft/world/entity/ai/Brain; net/minecraft/world/entity/animal/frog/Tadpole/getBrain ()Lnet/minecraft/world/entity/ai/Brain; +MD: net/minecraft/world/entity/animal/frog/Tadpole/m_6872_ (Lnet/minecraft/world/item/ItemStack;)V net/minecraft/world/entity/animal/frog/Tadpole/saveToBucketTag (Lnet/minecraft/world/item/ItemStack;)V +MD: net/minecraft/world/entity/animal/frog/Tadpole/m_7378_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/entity/animal/frog/Tadpole/readAdditionalSaveData (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/entity/animal/frog/Tadpole/m_7380_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/entity/animal/frog/Tadpole/addAdditionalSaveData (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/entity/animal/frog/Tadpole/m_7515_ ()Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/animal/frog/Tadpole/getAmbientSound ()Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/animal/frog/Tadpole/m_7975_ (Lnet/minecraft/world/damagesource/DamageSource;)Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/animal/frog/Tadpole/getHurtSound (Lnet/minecraft/world/damagesource/DamageSource;)Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/animal/frog/Tadpole/m_8024_ ()V net/minecraft/world/entity/animal/frog/Tadpole/customServerAiStep ()V +MD: net/minecraft/world/entity/animal/frog/Tadpole/m_8025_ ()V net/minecraft/world/entity/animal/frog/Tadpole/sendDebugPackets ()V +MD: net/minecraft/world/entity/animal/frog/Tadpole/m_8075_ (Lcom/mojang/serialization/Dynamic;)Lnet/minecraft/world/entity/ai/Brain; net/minecraft/world/entity/animal/frog/Tadpole/makeBrain (Lcom/mojang/serialization/Dynamic;)Lnet/minecraft/world/entity/ai/Brain; +MD: net/minecraft/world/entity/animal/frog/Tadpole/m_8107_ ()V net/minecraft/world/entity/animal/frog/Tadpole/aiStep ()V +MD: net/minecraft/world/entity/animal/frog/TadpoleAi/ ()V net/minecraft/world/entity/animal/frog/TadpoleAi/ ()V +MD: net/minecraft/world/entity/animal/frog/TadpoleAi/m_218739_ (Lnet/minecraft/world/entity/LivingEntity;)Ljava/lang/Float; net/minecraft/world/entity/animal/frog/TadpoleAi/lambda$initIdleActivity$0 (Lnet/minecraft/world/entity/LivingEntity;)Ljava/lang/Float; +MD: net/minecraft/world/entity/animal/frog/TadpoleAi/m_218741_ (Lnet/minecraft/world/entity/ai/Brain;)Lnet/minecraft/world/entity/ai/Brain; net/minecraft/world/entity/animal/frog/TadpoleAi/makeBrain (Lnet/minecraft/world/entity/ai/Brain;)Lnet/minecraft/world/entity/ai/Brain; +MD: net/minecraft/world/entity/animal/frog/TadpoleAi/m_218743_ (Lnet/minecraft/world/entity/animal/frog/Tadpole;)V net/minecraft/world/entity/animal/frog/TadpoleAi/updateActivity (Lnet/minecraft/world/entity/animal/frog/Tadpole;)V +MD: net/minecraft/world/entity/animal/frog/TadpoleAi/m_218745_ (Lnet/minecraft/world/entity/ai/Brain;)V net/minecraft/world/entity/animal/frog/TadpoleAi/initCoreActivity (Lnet/minecraft/world/entity/ai/Brain;)V +MD: net/minecraft/world/entity/animal/frog/TadpoleAi/m_218747_ (Lnet/minecraft/world/entity/ai/Brain;)V net/minecraft/world/entity/animal/frog/TadpoleAi/initIdleActivity (Lnet/minecraft/world/entity/ai/Brain;)V +MD: net/minecraft/world/entity/animal/goat/Goat/ ()V net/minecraft/world/entity/animal/goat/Goat/ ()V +MD: net/minecraft/world/entity/animal/goat/Goat/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V net/minecraft/world/entity/animal/goat/Goat/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V +MD: net/minecraft/world/entity/animal/goat/Goat/m_142606_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/AgeableMob;)Lnet/minecraft/world/entity/AgeableMob; net/minecraft/world/entity/animal/goat/Goat/getBreedOffspring (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/AgeableMob;)Lnet/minecraft/world/entity/AgeableMob; +MD: net/minecraft/world/entity/animal/goat/Goat/m_142606_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/AgeableMob;)Lnet/minecraft/world/entity/animal/goat/Goat; net/minecraft/world/entity/animal/goat/Goat/getBreedOffspring (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/AgeableMob;)Lnet/minecraft/world/entity/animal/goat/Goat; +MD: net/minecraft/world/entity/animal/goat/Goat/m_149397_ ()Z net/minecraft/world/entity/animal/goat/Goat/isScreamingGoat ()Z +MD: net/minecraft/world/entity/animal/goat/Goat/m_149398_ ()F net/minecraft/world/entity/animal/goat/Goat/getRammingXHeadRot ()F +MD: net/minecraft/world/entity/animal/goat/Goat/m_149401_ ()Lnet/minecraft/world/entity/ai/attributes/AttributeSupplier$Builder; net/minecraft/world/entity/animal/goat/Goat/createAttributes ()Lnet/minecraft/world/entity/ai/attributes/AttributeSupplier$Builder; +MD: net/minecraft/world/entity/animal/goat/Goat/m_149403_ ()Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/animal/goat/Goat/getMilkingSound ()Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/animal/goat/Goat/m_149405_ (Z)V net/minecraft/world/entity/animal/goat/Goat/setScreamingGoat (Z)V +MD: net/minecraft/world/entity/animal/goat/Goat/m_218752_ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/world/entity/MobSpawnType;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)Z net/minecraft/world/entity/animal/goat/Goat/checkGoatSpawnRules (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/world/entity/MobSpawnType;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)Z +MD: net/minecraft/world/entity/animal/goat/Goat/m_218758_ ()Z net/minecraft/world/entity/animal/goat/Goat/hasLeftHorn ()Z +MD: net/minecraft/world/entity/animal/goat/Goat/m_218759_ ()Z net/minecraft/world/entity/animal/goat/Goat/hasRightHorn ()Z +MD: net/minecraft/world/entity/animal/goat/Goat/m_218760_ ()Z net/minecraft/world/entity/animal/goat/Goat/dropHorn ()Z +MD: net/minecraft/world/entity/animal/goat/Goat/m_218761_ ()V net/minecraft/world/entity/animal/goat/Goat/addHorns ()V +MD: net/minecraft/world/entity/animal/goat/Goat/m_218762_ ()V net/minecraft/world/entity/animal/goat/Goat/removeHorns ()V +MD: net/minecraft/world/entity/animal/goat/Goat/m_218763_ ()Lnet/minecraft/world/item/ItemStack; net/minecraft/world/entity/animal/goat/Goat/createHorn ()Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/entity/animal/goat/Goat/m_30232_ ()V net/minecraft/world/entity/animal/goat/Goat/ageBoundaryReached ()V +MD: net/minecraft/world/entity/animal/goat/Goat/m_5490_ ()Lnet/minecraft/world/entity/ai/Brain$Provider; net/minecraft/world/entity/animal/goat/Goat/brainProvider ()Lnet/minecraft/world/entity/ai/Brain$Provider; +MD: net/minecraft/world/entity/animal/goat/Goat/m_5592_ ()Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/animal/goat/Goat/getDeathSound ()Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/animal/goat/Goat/m_5616_ (F)V net/minecraft/world/entity/animal/goat/Goat/setYHeadRot (F)V +MD: net/minecraft/world/entity/animal/goat/Goat/m_5639_ (FF)I net/minecraft/world/entity/animal/goat/Goat/calculateFallDamage (FF)I +MD: net/minecraft/world/entity/animal/goat/Goat/m_6071_ (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;)Lnet/minecraft/world/InteractionResult; net/minecraft/world/entity/animal/goat/Goat/mobInteract (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;)Lnet/minecraft/world/InteractionResult; +MD: net/minecraft/world/entity/animal/goat/Goat/m_6274_ ()Lnet/minecraft/world/entity/ai/Brain; net/minecraft/world/entity/animal/goat/Goat/getBrain ()Lnet/minecraft/world/entity/ai/Brain; +MD: net/minecraft/world/entity/animal/goat/Goat/m_6518_ (Lnet/minecraft/world/level/ServerLevelAccessor;Lnet/minecraft/world/DifficultyInstance;Lnet/minecraft/world/entity/MobSpawnType;Lnet/minecraft/world/entity/SpawnGroupData;Lnet/minecraft/nbt/CompoundTag;)Lnet/minecraft/world/entity/SpawnGroupData; net/minecraft/world/entity/animal/goat/Goat/finalizeSpawn (Lnet/minecraft/world/level/ServerLevelAccessor;Lnet/minecraft/world/DifficultyInstance;Lnet/minecraft/world/entity/MobSpawnType;Lnet/minecraft/world/entity/SpawnGroupData;Lnet/minecraft/nbt/CompoundTag;)Lnet/minecraft/world/entity/SpawnGroupData; +MD: net/minecraft/world/entity/animal/goat/Goat/m_6972_ (Lnet/minecraft/world/entity/Pose;)Lnet/minecraft/world/entity/EntityDimensions; net/minecraft/world/entity/animal/goat/Goat/getDimensions (Lnet/minecraft/world/entity/Pose;)Lnet/minecraft/world/entity/EntityDimensions; +MD: net/minecraft/world/entity/animal/goat/Goat/m_7355_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V net/minecraft/world/entity/animal/goat/Goat/playStepSound (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V +MD: net/minecraft/world/entity/animal/goat/Goat/m_7378_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/entity/animal/goat/Goat/readAdditionalSaveData (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/entity/animal/goat/Goat/m_7380_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/entity/animal/goat/Goat/addAdditionalSaveData (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/entity/animal/goat/Goat/m_7515_ ()Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/animal/goat/Goat/getAmbientSound ()Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/animal/goat/Goat/m_7822_ (B)V net/minecraft/world/entity/animal/goat/Goat/handleEntityEvent (B)V +MD: net/minecraft/world/entity/animal/goat/Goat/m_7866_ (Lnet/minecraft/world/item/ItemStack;)Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/animal/goat/Goat/getEatingSound (Lnet/minecraft/world/item/ItemStack;)Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/animal/goat/Goat/m_7975_ (Lnet/minecraft/world/damagesource/DamageSource;)Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/animal/goat/Goat/getHurtSound (Lnet/minecraft/world/damagesource/DamageSource;)Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/animal/goat/Goat/m_8024_ ()V net/minecraft/world/entity/animal/goat/Goat/customServerAiStep ()V +MD: net/minecraft/world/entity/animal/goat/Goat/m_8025_ ()V net/minecraft/world/entity/animal/goat/Goat/sendDebugPackets ()V +MD: net/minecraft/world/entity/animal/goat/Goat/m_8075_ (Lcom/mojang/serialization/Dynamic;)Lnet/minecraft/world/entity/ai/Brain; net/minecraft/world/entity/animal/goat/Goat/makeBrain (Lcom/mojang/serialization/Dynamic;)Lnet/minecraft/world/entity/ai/Brain; +MD: net/minecraft/world/entity/animal/goat/Goat/m_8085_ ()I net/minecraft/world/entity/animal/goat/Goat/getMaxHeadYRot ()I +MD: net/minecraft/world/entity/animal/goat/Goat/m_8097_ ()V net/minecraft/world/entity/animal/goat/Goat/defineSynchedData ()V +MD: net/minecraft/world/entity/animal/goat/Goat/m_8107_ ()V net/minecraft/world/entity/animal/goat/Goat/aiStep ()V +MD: net/minecraft/world/entity/animal/goat/GoatAi/ ()V net/minecraft/world/entity/animal/goat/GoatAi/ ()V +MD: net/minecraft/world/entity/animal/goat/GoatAi/ ()V net/minecraft/world/entity/animal/goat/GoatAi/ ()V +MD: net/minecraft/world/entity/animal/goat/GoatAi/m_149444_ ()Lnet/minecraft/world/item/crafting/Ingredient; net/minecraft/world/entity/animal/goat/GoatAi/getTemptations ()Lnet/minecraft/world/item/crafting/Ingredient; +MD: net/minecraft/world/entity/animal/goat/GoatAi/m_149445_ (Lnet/minecraft/world/entity/LivingEntity;)Ljava/lang/Float; net/minecraft/world/entity/animal/goat/GoatAi/lambda$initIdleActivity$1 (Lnet/minecraft/world/entity/LivingEntity;)Ljava/lang/Float; +MD: net/minecraft/world/entity/animal/goat/GoatAi/m_149447_ (Lnet/minecraft/world/entity/ai/Brain;)Lnet/minecraft/world/entity/ai/Brain; net/minecraft/world/entity/animal/goat/GoatAi/makeBrain (Lnet/minecraft/world/entity/ai/Brain;)Lnet/minecraft/world/entity/ai/Brain; +MD: net/minecraft/world/entity/animal/goat/GoatAi/m_149453_ (Lnet/minecraft/world/entity/ai/Brain;)V net/minecraft/world/entity/animal/goat/GoatAi/initCoreActivity (Lnet/minecraft/world/entity/ai/Brain;)V +MD: net/minecraft/world/entity/animal/goat/GoatAi/m_149455_ (Lnet/minecraft/world/entity/animal/goat/Goat;)V net/minecraft/world/entity/animal/goat/GoatAi/updateActivity (Lnet/minecraft/world/entity/animal/goat/Goat;)V +MD: net/minecraft/world/entity/animal/goat/GoatAi/m_149457_ (Lnet/minecraft/world/entity/ai/Brain;)V net/minecraft/world/entity/animal/goat/GoatAi/initIdleActivity (Lnet/minecraft/world/entity/ai/Brain;)V +MD: net/minecraft/world/entity/animal/goat/GoatAi/m_149461_ (Lnet/minecraft/world/entity/ai/Brain;)V net/minecraft/world/entity/animal/goat/GoatAi/initLongJumpActivity (Lnet/minecraft/world/entity/ai/Brain;)V +MD: net/minecraft/world/entity/animal/goat/GoatAi/m_149465_ (Lnet/minecraft/world/entity/ai/Brain;)V net/minecraft/world/entity/animal/goat/GoatAi/initRamActivity (Lnet/minecraft/world/entity/ai/Brain;)V +MD: net/minecraft/world/entity/animal/goat/GoatAi/m_149467_ (Lnet/minecraft/world/entity/animal/goat/Goat;)Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/animal/goat/GoatAi/lambda$initRamActivity$5 (Lnet/minecraft/world/entity/animal/goat/Goat;)Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/animal/goat/GoatAi/m_149473_ (Lnet/minecraft/world/entity/animal/goat/Goat;)Lnet/minecraft/util/valueproviders/UniformInt; net/minecraft/world/entity/animal/goat/GoatAi/lambda$initRamActivity$3 (Lnet/minecraft/world/entity/animal/goat/Goat;)Lnet/minecraft/util/valueproviders/UniformInt; +MD: net/minecraft/world/entity/animal/goat/GoatAi/m_149475_ (Lnet/minecraft/world/entity/animal/goat/Goat;)Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/animal/goat/GoatAi/lambda$initLongJumpActivity$2 (Lnet/minecraft/world/entity/animal/goat/Goat;)Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/animal/goat/GoatAi/m_218764_ (Lnet/minecraft/world/entity/animal/goat/Goat;Lnet/minecraft/util/RandomSource;)V net/minecraft/world/entity/animal/goat/GoatAi/initMemories (Lnet/minecraft/world/entity/animal/goat/Goat;Lnet/minecraft/util/RandomSource;)V +MD: net/minecraft/world/entity/animal/goat/GoatAi/m_218767_ (Lnet/minecraft/world/entity/animal/goat/Goat;)Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/animal/goat/GoatAi/lambda$initRamActivity$8 (Lnet/minecraft/world/entity/animal/goat/Goat;)Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/animal/goat/GoatAi/m_218769_ (Lnet/minecraft/world/entity/animal/goat/Goat;)I net/minecraft/world/entity/animal/goat/GoatAi/lambda$initRamActivity$7 (Lnet/minecraft/world/entity/animal/goat/Goat;)I +MD: net/minecraft/world/entity/animal/goat/GoatAi/m_218771_ (Lnet/minecraft/world/entity/animal/goat/Goat;)Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/animal/goat/GoatAi/lambda$initRamActivity$6 (Lnet/minecraft/world/entity/animal/goat/Goat;)Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/animal/goat/GoatAi/m_287093_ (Lnet/minecraft/world/entity/animal/goat/Goat;)D net/minecraft/world/entity/animal/goat/GoatAi/lambda$initRamActivity$4 (Lnet/minecraft/world/entity/animal/goat/Goat;)D +MD: net/minecraft/world/entity/animal/goat/GoatAi/m_289140_ (Lnet/minecraft/world/entity/LivingEntity;)Z net/minecraft/world/entity/animal/goat/GoatAi/lambda$static$0 (Lnet/minecraft/world/entity/LivingEntity;)Z +MD: net/minecraft/world/entity/animal/horse/AbstractChestedHorse/ ()V net/minecraft/world/entity/animal/horse/AbstractChestedHorse/ ()V +MD: net/minecraft/world/entity/animal/horse/AbstractChestedHorse/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V net/minecraft/world/entity/animal/horse/AbstractChestedHorse/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V +MD: net/minecraft/world/entity/animal/horse/AbstractChestedHorse/m_141942_ (I)Lnet/minecraft/world/entity/SlotAccess; net/minecraft/world/entity/animal/horse/AbstractChestedHorse/getSlot (I)Lnet/minecraft/world/entity/SlotAccess; +MD: net/minecraft/world/entity/animal/horse/AbstractChestedHorse/m_214179_ (Lnet/minecraft/util/RandomSource;)V net/minecraft/world/entity/animal/horse/AbstractChestedHorse/randomizeAttributes (Lnet/minecraft/util/RandomSource;)V +MD: net/minecraft/world/entity/animal/horse/AbstractChestedHorse/m_246066_ (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/item/ItemStack;)V net/minecraft/world/entity/animal/horse/AbstractChestedHorse/equipChest (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/item/ItemStack;)V +MD: net/minecraft/world/entity/animal/horse/AbstractChestedHorse/m_30501_ ()Lnet/minecraft/world/entity/ai/attributes/AttributeSupplier$Builder; net/minecraft/world/entity/animal/horse/AbstractChestedHorse/createBaseChestedHorseAttributes ()Lnet/minecraft/world/entity/ai/attributes/AttributeSupplier$Builder; +MD: net/minecraft/world/entity/animal/horse/AbstractChestedHorse/m_30502_ ()Z net/minecraft/world/entity/animal/horse/AbstractChestedHorse/hasChest ()Z +MD: net/minecraft/world/entity/animal/horse/AbstractChestedHorse/m_30504_ (Z)V net/minecraft/world/entity/animal/horse/AbstractChestedHorse/setChest (Z)V +MD: net/minecraft/world/entity/animal/horse/AbstractChestedHorse/m_5907_ ()V net/minecraft/world/entity/animal/horse/AbstractChestedHorse/dropEquipment ()V +MD: net/minecraft/world/entity/animal/horse/AbstractChestedHorse/m_6048_ ()D net/minecraft/world/entity/animal/horse/AbstractChestedHorse/getPassengersRidingOffset ()D +MD: net/minecraft/world/entity/animal/horse/AbstractChestedHorse/m_6071_ (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;)Lnet/minecraft/world/InteractionResult; net/minecraft/world/entity/animal/horse/AbstractChestedHorse/mobInteract (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;)Lnet/minecraft/world/InteractionResult; +MD: net/minecraft/world/entity/animal/horse/AbstractChestedHorse/m_7378_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/entity/animal/horse/AbstractChestedHorse/readAdditionalSaveData (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/entity/animal/horse/AbstractChestedHorse/m_7380_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/entity/animal/horse/AbstractChestedHorse/addAdditionalSaveData (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/entity/animal/horse/AbstractChestedHorse/m_7488_ ()I net/minecraft/world/entity/animal/horse/AbstractChestedHorse/getInventoryColumns ()I +MD: net/minecraft/world/entity/animal/horse/AbstractChestedHorse/m_7506_ ()I net/minecraft/world/entity/animal/horse/AbstractChestedHorse/getInventorySize ()I +MD: net/minecraft/world/entity/animal/horse/AbstractChestedHorse/m_7609_ ()V net/minecraft/world/entity/animal/horse/AbstractChestedHorse/playChestEquipsSound ()V +MD: net/minecraft/world/entity/animal/horse/AbstractChestedHorse/m_8097_ ()V net/minecraft/world/entity/animal/horse/AbstractChestedHorse/defineSynchedData ()V +MD: net/minecraft/world/entity/animal/horse/AbstractChestedHorse$1/ (Lnet/minecraft/world/entity/animal/horse/AbstractChestedHorse;)V net/minecraft/world/entity/animal/horse/AbstractChestedHorse$1/ (Lnet/minecraft/world/entity/animal/horse/AbstractChestedHorse;)V +MD: net/minecraft/world/entity/animal/horse/AbstractChestedHorse$1/m_142104_ (Lnet/minecraft/world/item/ItemStack;)Z net/minecraft/world/entity/animal/horse/AbstractChestedHorse$1/set (Lnet/minecraft/world/item/ItemStack;)Z +MD: net/minecraft/world/entity/animal/horse/AbstractChestedHorse$1/m_142196_ ()Lnet/minecraft/world/item/ItemStack; net/minecraft/world/entity/animal/horse/AbstractChestedHorse$1/get ()Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/entity/animal/horse/AbstractHorse/ ()V net/minecraft/world/entity/animal/horse/AbstractHorse/ ()V +MD: net/minecraft/world/entity/animal/horse/AbstractHorse/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V net/minecraft/world/entity/animal/horse/AbstractHorse/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V +MD: net/minecraft/world/entity/animal/horse/AbstractHorse/m_141942_ (I)Lnet/minecraft/world/entity/SlotAccess; net/minecraft/world/entity/animal/horse/AbstractHorse/getSlot (I)Lnet/minecraft/world/entity/SlotAccess; +MD: net/minecraft/world/entity/animal/horse/AbstractHorse/m_142535_ (FFLnet/minecraft/world/damagesource/DamageSource;)Z net/minecraft/world/entity/animal/horse/AbstractHorse/causeFallDamage (FFLnet/minecraft/world/damagesource/DamageSource;)Z +MD: net/minecraft/world/entity/animal/horse/AbstractHorse/m_142606_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/AgeableMob;)Lnet/minecraft/world/entity/AgeableMob; net/minecraft/world/entity/animal/horse/AbstractHorse/getBreedOffspring (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/AgeableMob;)Lnet/minecraft/world/entity/AgeableMob; +MD: net/minecraft/world/entity/animal/horse/AbstractHorse/m_149502_ (ILjava/util/function/Predicate;)Lnet/minecraft/world/entity/SlotAccess; net/minecraft/world/entity/animal/horse/AbstractHorse/createEquipmentSlotAccess (ILjava/util/function/Predicate;)Lnet/minecraft/world/entity/SlotAccess; +MD: net/minecraft/world/entity/animal/horse/AbstractHorse/m_149508_ (Lnet/minecraft/world/entity/AgeableMob;Lnet/minecraft/world/entity/animal/horse/AbstractHorse;)V net/minecraft/world/entity/animal/horse/AbstractHorse/setOffspringAttributes (Lnet/minecraft/world/entity/AgeableMob;Lnet/minecraft/world/entity/animal/horse/AbstractHorse;)V +MD: net/minecraft/world/entity/animal/horse/AbstractHorse/m_149511_ (Lnet/minecraft/world/Container;)Z net/minecraft/world/entity/animal/horse/AbstractHorse/hasInventoryChanged (Lnet/minecraft/world/Container;)Z +MD: net/minecraft/world/entity/animal/horse/AbstractHorse/m_149515_ (Lnet/minecraft/world/item/ItemStack;)Z net/minecraft/world/entity/animal/horse/AbstractHorse/lambda$getSlot$8 (Lnet/minecraft/world/item/ItemStack;)Z +MD: net/minecraft/world/entity/animal/horse/AbstractHorse/m_149517_ (Lnet/minecraft/world/item/ItemStack;)Z net/minecraft/world/entity/animal/horse/AbstractHorse/lambda$getSlot$7 (Lnet/minecraft/world/item/ItemStack;)Z +MD: net/minecraft/world/entity/animal/horse/AbstractHorse/m_19956_ (Lnet/minecraft/world/entity/Entity;Lnet/minecraft/world/entity/Entity$MoveFunction;)V net/minecraft/world/entity/animal/horse/AbstractHorse/positionRider (Lnet/minecraft/world/entity/Entity;Lnet/minecraft/world/entity/Entity$MoveFunction;)V +MD: net/minecraft/world/entity/animal/horse/AbstractHorse/m_213583_ (Lnet/minecraft/world/entity/player/Player;)V net/minecraft/world/entity/animal/horse/AbstractHorse/openCustomInventoryScreen (Lnet/minecraft/world/entity/player/Player;)V +MD: net/minecraft/world/entity/animal/horse/AbstractHorse/m_214179_ (Lnet/minecraft/util/RandomSource;)V net/minecraft/world/entity/animal/horse/AbstractHorse/randomizeAttributes (Lnet/minecraft/util/RandomSource;)V +MD: net/minecraft/world/entity/animal/horse/AbstractHorse/m_21805_ ()Ljava/util/UUID; net/minecraft/world/entity/animal/horse/AbstractHorse/getOwnerUUID ()Ljava/util/UUID; +MD: net/minecraft/world/entity/animal/horse/AbstractHorse/m_245259_ ()Z net/minecraft/world/entity/animal/horse/AbstractHorse/canPerformRearing ()Z +MD: net/minecraft/world/entity/animal/horse/AbstractHorse/m_245547_ (Lnet/minecraft/world/entity/player/Player;)F net/minecraft/world/entity/animal/horse/AbstractHorse/getRiddenSpeed (Lnet/minecraft/world/entity/player/Player;)F +MD: net/minecraft/world/entity/animal/horse/AbstractHorse/m_245980_ (FLnet/minecraft/world/phys/Vec3;)V net/minecraft/world/entity/animal/horse/AbstractHorse/executeRidersJump (FLnet/minecraft/world/phys/Vec3;)V +MD: net/minecraft/world/entity/animal/horse/AbstractHorse/m_246861_ (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/item/ItemStack;)V net/minecraft/world/entity/animal/horse/AbstractHorse/equipArmor (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/item/ItemStack;)V +MD: net/minecraft/world/entity/animal/horse/AbstractHorse/m_247131_ ()Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/animal/horse/AbstractHorse/getAmbientStandSound ()Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/animal/horse/AbstractHorse/m_247525_ ()V net/minecraft/world/entity/animal/horse/AbstractHorse/standIfPossible ()V +MD: net/minecraft/world/entity/animal/horse/AbstractHorse/m_247558_ ()I net/minecraft/world/entity/animal/horse/AbstractHorse/getAmbientStandInterval ()I +MD: net/minecraft/world/entity/animal/horse/AbstractHorse/m_271634_ (I)I net/minecraft/world/entity/animal/horse/AbstractHorse/lambda$static$5 (I)I +MD: net/minecraft/world/entity/animal/horse/AbstractHorse/m_271635_ ()D net/minecraft/world/entity/animal/horse/AbstractHorse/lambda$static$0 ()D +MD: net/minecraft/world/entity/animal/horse/AbstractHorse/m_271636_ ()D net/minecraft/world/entity/animal/horse/AbstractHorse/lambda$static$3 ()D +MD: net/minecraft/world/entity/animal/horse/AbstractHorse/m_271637_ (I)I net/minecraft/world/entity/animal/horse/AbstractHorse/lambda$static$4 (I)I +MD: net/minecraft/world/entity/animal/horse/AbstractHorse/m_271638_ ()D net/minecraft/world/entity/animal/horse/AbstractHorse/lambda$static$1 ()D +MD: net/minecraft/world/entity/animal/horse/AbstractHorse/m_271639_ ()D net/minecraft/world/entity/animal/horse/AbstractHorse/lambda$static$2 ()D +MD: net/minecraft/world/entity/animal/horse/AbstractHorse/m_271715_ (DDDDLnet/minecraft/util/RandomSource;)D net/minecraft/world/entity/animal/horse/AbstractHorse/createOffspringAttribute (DDDDLnet/minecraft/util/RandomSource;)D +MD: net/minecraft/world/entity/animal/horse/AbstractHorse/m_271722_ (Ljava/util/function/IntUnaryOperator;)F net/minecraft/world/entity/animal/horse/AbstractHorse/generateMaxHealth (Ljava/util/function/IntUnaryOperator;)F +MD: net/minecraft/world/entity/animal/horse/AbstractHorse/m_271981_ (Ljava/util/function/DoubleSupplier;)D net/minecraft/world/entity/animal/horse/AbstractHorse/generateSpeed (Ljava/util/function/DoubleSupplier;)D +MD: net/minecraft/world/entity/animal/horse/AbstractHorse/m_272015_ (Lnet/minecraft/world/entity/AgeableMob;Lnet/minecraft/world/entity/animal/horse/AbstractHorse;Lnet/minecraft/world/entity/ai/attributes/Attribute;DD)V net/minecraft/world/entity/animal/horse/AbstractHorse/setOffspringAttribute (Lnet/minecraft/world/entity/AgeableMob;Lnet/minecraft/world/entity/animal/horse/AbstractHorse;Lnet/minecraft/world/entity/ai/attributes/Attribute;DD)V +MD: net/minecraft/world/entity/animal/horse/AbstractHorse/m_272017_ (Ljava/util/function/DoubleSupplier;)D net/minecraft/world/entity/animal/horse/AbstractHorse/generateJumpStrength (Ljava/util/function/DoubleSupplier;)D +MD: net/minecraft/world/entity/animal/horse/AbstractHorse/m_274312_ (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/phys/Vec3;)Lnet/minecraft/world/phys/Vec3; net/minecraft/world/entity/animal/horse/AbstractHorse/getRiddenInput (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/phys/Vec3;)Lnet/minecraft/world/phys/Vec3; +MD: net/minecraft/world/entity/animal/horse/AbstractHorse/m_274391_ (Lnet/minecraft/world/entity/LivingEntity;)Lnet/minecraft/world/phys/Vec2; net/minecraft/world/entity/animal/horse/AbstractHorse/getRiddenRotation (Lnet/minecraft/world/entity/LivingEntity;)Lnet/minecraft/world/phys/Vec2; +MD: net/minecraft/world/entity/animal/horse/AbstractHorse/m_274498_ (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/phys/Vec3;)V net/minecraft/world/entity/animal/horse/AbstractHorse/tickRidden (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/phys/Vec3;)V +MD: net/minecraft/world/entity/animal/horse/AbstractHorse/m_278175_ (Lnet/minecraft/world/level/block/SoundType;)Z net/minecraft/world/entity/animal/horse/AbstractHorse/isWoodSoundType (Lnet/minecraft/world/level/block/SoundType;)Z +MD: net/minecraft/world/entity/animal/horse/AbstractHorse/m_30533_ (F)F net/minecraft/world/entity/animal/horse/AbstractHorse/getMouthAnim (F)F +MD: net/minecraft/world/entity/animal/horse/AbstractHorse/m_30561_ (Lnet/minecraft/world/phys/Vec3;Lnet/minecraft/world/entity/LivingEntity;)Lnet/minecraft/world/phys/Vec3; net/minecraft/world/entity/animal/horse/AbstractHorse/getDismountLocationInDirection (Lnet/minecraft/world/phys/Vec3;Lnet/minecraft/world/entity/LivingEntity;)Lnet/minecraft/world/phys/Vec3; +MD: net/minecraft/world/entity/animal/horse/AbstractHorse/m_30580_ (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/item/ItemStack;)Lnet/minecraft/world/InteractionResult; net/minecraft/world/entity/animal/horse/AbstractHorse/fedFood (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/item/ItemStack;)Lnet/minecraft/world/InteractionResult; +MD: net/minecraft/world/entity/animal/horse/AbstractHorse/m_30586_ (Ljava/util/UUID;)V net/minecraft/world/entity/animal/horse/AbstractHorse/setOwnerUUID (Ljava/util/UUID;)V +MD: net/minecraft/world/entity/animal/horse/AbstractHorse/m_30597_ (IZ)V net/minecraft/world/entity/animal/horse/AbstractHorse/setFlag (IZ)V +MD: net/minecraft/world/entity/animal/horse/AbstractHorse/m_30610_ ()V net/minecraft/world/entity/animal/horse/AbstractHorse/eating ()V +MD: net/minecraft/world/entity/animal/horse/AbstractHorse/m_30611_ ()V net/minecraft/world/entity/animal/horse/AbstractHorse/moveTail ()V +MD: net/minecraft/world/entity/animal/horse/AbstractHorse/m_30612_ ()V net/minecraft/world/entity/animal/horse/AbstractHorse/openMouth ()V +MD: net/minecraft/world/entity/animal/horse/AbstractHorse/m_30614_ ()Z net/minecraft/world/entity/animal/horse/AbstractHorse/isTamed ()Z +MD: net/minecraft/world/entity/animal/horse/AbstractHorse/m_30616_ ()Z net/minecraft/world/entity/animal/horse/AbstractHorse/isJumping ()Z +MD: net/minecraft/world/entity/animal/horse/AbstractHorse/m_30617_ ()Z net/minecraft/world/entity/animal/horse/AbstractHorse/isEating ()Z +MD: net/minecraft/world/entity/animal/horse/AbstractHorse/m_30622_ ()Z net/minecraft/world/entity/animal/horse/AbstractHorse/isStanding ()Z +MD: net/minecraft/world/entity/animal/horse/AbstractHorse/m_30623_ ()Z net/minecraft/world/entity/animal/horse/AbstractHorse/isBred ()Z +MD: net/minecraft/world/entity/animal/horse/AbstractHorse/m_30624_ ()I net/minecraft/world/entity/animal/horse/AbstractHorse/getTemper ()I +MD: net/minecraft/world/entity/animal/horse/AbstractHorse/m_30625_ ()V net/minecraft/world/entity/animal/horse/AbstractHorse/createInventory ()V +MD: net/minecraft/world/entity/animal/horse/AbstractHorse/m_30626_ ()D net/minecraft/world/entity/animal/horse/AbstractHorse/getCustomJump ()D +MD: net/minecraft/world/entity/animal/horse/AbstractHorse/m_30627_ ()Lnet/minecraft/world/entity/ai/attributes/AttributeSupplier$Builder; net/minecraft/world/entity/animal/horse/AbstractHorse/createBaseHorseAttributes ()Lnet/minecraft/world/entity/ai/attributes/AttributeSupplier$Builder; +MD: net/minecraft/world/entity/animal/horse/AbstractHorse/m_30628_ ()Z net/minecraft/world/entity/animal/horse/AbstractHorse/canParent ()Z +MD: net/minecraft/world/entity/animal/horse/AbstractHorse/m_30635_ (Lnet/minecraft/world/entity/LivingEntity;)Z net/minecraft/world/entity/animal/horse/AbstractHorse/lambda$static$6 (Lnet/minecraft/world/entity/LivingEntity;)Z +MD: net/minecraft/world/entity/animal/horse/AbstractHorse/m_30637_ (Lnet/minecraft/world/entity/player/Player;)Z net/minecraft/world/entity/animal/horse/AbstractHorse/tameWithName (Lnet/minecraft/world/entity/player/Player;)Z +MD: net/minecraft/world/entity/animal/horse/AbstractHorse/m_30647_ (I)Z net/minecraft/world/entity/animal/horse/AbstractHorse/getFlag (I)Z +MD: net/minecraft/world/entity/animal/horse/AbstractHorse/m_30649_ (I)V net/minecraft/world/entity/animal/horse/AbstractHorse/setTemper (I)V +MD: net/minecraft/world/entity/animal/horse/AbstractHorse/m_30651_ (Z)V net/minecraft/world/entity/animal/horse/AbstractHorse/setTamed (Z)V +MD: net/minecraft/world/entity/animal/horse/AbstractHorse/m_30653_ (I)I net/minecraft/world/entity/animal/horse/AbstractHorse/modifyTemper (I)I +MD: net/minecraft/world/entity/animal/horse/AbstractHorse/m_30655_ (Z)V net/minecraft/world/entity/animal/horse/AbstractHorse/setIsJumping (Z)V +MD: net/minecraft/world/entity/animal/horse/AbstractHorse/m_30657_ (Z)V net/minecraft/world/entity/animal/horse/AbstractHorse/setBred (Z)V +MD: net/minecraft/world/entity/animal/horse/AbstractHorse/m_30661_ (Z)V net/minecraft/world/entity/animal/horse/AbstractHorse/setEating (Z)V +MD: net/minecraft/world/entity/animal/horse/AbstractHorse/m_30663_ (F)F net/minecraft/world/entity/animal/horse/AbstractHorse/getEatAnim (F)F +MD: net/minecraft/world/entity/animal/horse/AbstractHorse/m_30665_ (Z)V net/minecraft/world/entity/animal/horse/AbstractHorse/setStanding (Z)V +MD: net/minecraft/world/entity/animal/horse/AbstractHorse/m_30667_ (F)F net/minecraft/world/entity/animal/horse/AbstractHorse/getStandAnim (F)F +MD: net/minecraft/world/entity/animal/horse/AbstractHorse/m_30669_ (Z)V net/minecraft/world/entity/animal/horse/AbstractHorse/spawnTamingParticles (Z)V +MD: net/minecraft/world/entity/animal/horse/AbstractHorse/m_5639_ (FF)I net/minecraft/world/entity/animal/horse/AbstractHorse/calculateFallDamage (FF)I +MD: net/minecraft/world/entity/animal/horse/AbstractHorse/m_5757_ (Lnet/minecraft/world/Container;)V net/minecraft/world/entity/animal/horse/AbstractHorse/containerChanged (Lnet/minecraft/world/Container;)V +MD: net/minecraft/world/entity/animal/horse/AbstractHorse/m_5792_ ()I net/minecraft/world/entity/animal/horse/AbstractHorse/getMaxSpawnClusterSize ()I +MD: net/minecraft/world/entity/animal/horse/AbstractHorse/m_5853_ (Lnet/minecraft/sounds/SoundSource;)V net/minecraft/world/entity/animal/horse/AbstractHorse/equipSaddle (Lnet/minecraft/sounds/SoundSource;)V +MD: net/minecraft/world/entity/animal/horse/AbstractHorse/m_5877_ (Lnet/minecraft/world/level/block/SoundType;)V net/minecraft/world/entity/animal/horse/AbstractHorse/playGallopSound (Lnet/minecraft/world/level/block/SoundType;)V +MD: net/minecraft/world/entity/animal/horse/AbstractHorse/m_5907_ ()V net/minecraft/world/entity/animal/horse/AbstractHorse/dropEquipment ()V +MD: net/minecraft/world/entity/animal/horse/AbstractHorse/m_5994_ (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/item/ItemStack;)Z net/minecraft/world/entity/animal/horse/AbstractHorse/handleEating (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/item/ItemStack;)Z +MD: net/minecraft/world/entity/animal/horse/AbstractHorse/m_6010_ (Lnet/minecraft/world/item/ItemStack;)Z net/minecraft/world/entity/animal/horse/AbstractHorse/isArmor (Lnet/minecraft/world/item/ItemStack;)Z +MD: net/minecraft/world/entity/animal/horse/AbstractHorse/m_6071_ (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;)Lnet/minecraft/world/InteractionResult; net/minecraft/world/entity/animal/horse/AbstractHorse/mobInteract (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;)Lnet/minecraft/world/InteractionResult; +MD: net/minecraft/world/entity/animal/horse/AbstractHorse/m_6094_ ()Z net/minecraft/world/entity/animal/horse/AbstractHorse/isPushable ()Z +MD: net/minecraft/world/entity/animal/horse/AbstractHorse/m_6107_ ()Z net/minecraft/world/entity/animal/horse/AbstractHorse/isImmobile ()Z +MD: net/minecraft/world/entity/animal/horse/AbstractHorse/m_6121_ ()F net/minecraft/world/entity/animal/horse/AbstractHorse/getSoundVolume ()F +MD: net/minecraft/world/entity/animal/horse/AbstractHorse/m_6147_ ()Z net/minecraft/world/entity/animal/horse/AbstractHorse/onClimbable ()Z +MD: net/minecraft/world/entity/animal/horse/AbstractHorse/m_6254_ ()Z net/minecraft/world/entity/animal/horse/AbstractHorse/isSaddled ()Z +MD: net/minecraft/world/entity/animal/horse/AbstractHorse/m_6431_ (Lnet/minecraft/world/entity/Pose;Lnet/minecraft/world/entity/EntityDimensions;)F net/minecraft/world/entity/animal/horse/AbstractHorse/getStandingEyeHeight (Lnet/minecraft/world/entity/Pose;Lnet/minecraft/world/entity/EntityDimensions;)F +MD: net/minecraft/world/entity/animal/horse/AbstractHorse/m_6469_ (Lnet/minecraft/world/damagesource/DamageSource;F)Z net/minecraft/world/entity/animal/horse/AbstractHorse/hurt (Lnet/minecraft/world/damagesource/DamageSource;F)Z +MD: net/minecraft/world/entity/animal/horse/AbstractHorse/m_6518_ (Lnet/minecraft/world/level/ServerLevelAccessor;Lnet/minecraft/world/DifficultyInstance;Lnet/minecraft/world/entity/MobSpawnType;Lnet/minecraft/world/entity/SpawnGroupData;Lnet/minecraft/nbt/CompoundTag;)Lnet/minecraft/world/entity/SpawnGroupData; net/minecraft/world/entity/animal/horse/AbstractHorse/finalizeSpawn (Lnet/minecraft/world/level/ServerLevelAccessor;Lnet/minecraft/world/DifficultyInstance;Lnet/minecraft/world/entity/MobSpawnType;Lnet/minecraft/world/entity/SpawnGroupData;Lnet/minecraft/nbt/CompoundTag;)Lnet/minecraft/world/entity/SpawnGroupData; +MD: net/minecraft/world/entity/animal/horse/AbstractHorse/m_6688_ ()Lnet/minecraft/world/entity/LivingEntity; net/minecraft/world/entity/animal/horse/AbstractHorse/getControllingPassenger ()Lnet/minecraft/world/entity/LivingEntity; +MD: net/minecraft/world/entity/animal/horse/AbstractHorse/m_6741_ ()Z net/minecraft/world/entity/animal/horse/AbstractHorse/isSaddleable ()Z +MD: net/minecraft/world/entity/animal/horse/AbstractHorse/m_6835_ (Lnet/minecraft/world/entity/player/Player;)V net/minecraft/world/entity/animal/horse/AbstractHorse/doPlayerRide (Lnet/minecraft/world/entity/player/Player;)V +MD: net/minecraft/world/entity/animal/horse/AbstractHorse/m_6898_ (Lnet/minecraft/world/item/ItemStack;)Z net/minecraft/world/entity/animal/horse/AbstractHorse/isFood (Lnet/minecraft/world/item/ItemStack;)Z +MD: net/minecraft/world/entity/animal/horse/AbstractHorse/m_7132_ ()Z net/minecraft/world/entity/animal/horse/AbstractHorse/canJump ()Z +MD: net/minecraft/world/entity/animal/horse/AbstractHorse/m_7199_ (I)V net/minecraft/world/entity/animal/horse/AbstractHorse/handleStartJump (I)V +MD: net/minecraft/world/entity/animal/horse/AbstractHorse/m_7355_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V net/minecraft/world/entity/animal/horse/AbstractHorse/playStepSound (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V +MD: net/minecraft/world/entity/animal/horse/AbstractHorse/m_7378_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/entity/animal/horse/AbstractHorse/readAdditionalSaveData (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/entity/animal/horse/AbstractHorse/m_7380_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/entity/animal/horse/AbstractHorse/addAdditionalSaveData (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/entity/animal/horse/AbstractHorse/m_7481_ ()Z net/minecraft/world/entity/animal/horse/AbstractHorse/isWearingArmor ()Z +MD: net/minecraft/world/entity/animal/horse/AbstractHorse/m_7482_ ()Z net/minecraft/world/entity/animal/horse/AbstractHorse/canWearArmor ()Z +MD: net/minecraft/world/entity/animal/horse/AbstractHorse/m_7486_ ()V net/minecraft/world/entity/animal/horse/AbstractHorse/playJumpSound ()V +MD: net/minecraft/world/entity/animal/horse/AbstractHorse/m_7493_ ()V net/minecraft/world/entity/animal/horse/AbstractHorse/updateContainerEquipment ()V +MD: net/minecraft/world/entity/animal/horse/AbstractHorse/m_7506_ ()I net/minecraft/world/entity/animal/horse/AbstractHorse/getInventorySize ()I +MD: net/minecraft/world/entity/animal/horse/AbstractHorse/m_7509_ ()V net/minecraft/world/entity/animal/horse/AbstractHorse/addBehaviourGoals ()V +MD: net/minecraft/world/entity/animal/horse/AbstractHorse/m_7555_ ()I net/minecraft/world/entity/animal/horse/AbstractHorse/getMaxTemper ()I +MD: net/minecraft/world/entity/animal/horse/AbstractHorse/m_7559_ ()Z net/minecraft/world/entity/animal/horse/AbstractHorse/canEatGrass ()Z +MD: net/minecraft/world/entity/animal/horse/AbstractHorse/m_7564_ ()V net/minecraft/world/entity/animal/horse/AbstractHorse/makeMad ()V +MD: net/minecraft/world/entity/animal/horse/AbstractHorse/m_7567_ ()V net/minecraft/world/entity/animal/horse/AbstractHorse/followMommy ()V +MD: net/minecraft/world/entity/animal/horse/AbstractHorse/m_7688_ (Lnet/minecraft/world/entity/LivingEntity;)Lnet/minecraft/world/phys/Vec3; net/minecraft/world/entity/animal/horse/AbstractHorse/getDismountLocationForPassenger (Lnet/minecraft/world/entity/LivingEntity;)Lnet/minecraft/world/phys/Vec3; +MD: net/minecraft/world/entity/animal/horse/AbstractHorse/m_7822_ (B)V net/minecraft/world/entity/animal/horse/AbstractHorse/handleEntityEvent (B)V +MD: net/minecraft/world/entity/animal/horse/AbstractHorse/m_7848_ (Lnet/minecraft/world/entity/animal/Animal;)Z net/minecraft/world/entity/animal/horse/AbstractHorse/canMate (Lnet/minecraft/world/entity/animal/Animal;)Z +MD: net/minecraft/world/entity/animal/horse/AbstractHorse/m_7871_ ()Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/animal/horse/AbstractHorse/getAngrySound ()Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/animal/horse/AbstractHorse/m_7872_ ()Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/animal/horse/AbstractHorse/getEatingSound ()Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/animal/horse/AbstractHorse/m_7880_ (F)V net/minecraft/world/entity/animal/horse/AbstractHorse/onLeashDistance (F)V +MD: net/minecraft/world/entity/animal/horse/AbstractHorse/m_7888_ (I)V net/minecraft/world/entity/animal/horse/AbstractHorse/onPlayerJump (I)V +MD: net/minecraft/world/entity/animal/horse/AbstractHorse/m_8012_ ()V net/minecraft/world/entity/animal/horse/AbstractHorse/handleStopJump ()V +MD: net/minecraft/world/entity/animal/horse/AbstractHorse/m_8097_ ()V net/minecraft/world/entity/animal/horse/AbstractHorse/defineSynchedData ()V +MD: net/minecraft/world/entity/animal/horse/AbstractHorse/m_8099_ ()V net/minecraft/world/entity/animal/horse/AbstractHorse/registerGoals ()V +MD: net/minecraft/world/entity/animal/horse/AbstractHorse/m_8100_ ()I net/minecraft/world/entity/animal/horse/AbstractHorse/getAmbientSoundInterval ()I +MD: net/minecraft/world/entity/animal/horse/AbstractHorse/m_8107_ ()V net/minecraft/world/entity/animal/horse/AbstractHorse/aiStep ()V +MD: net/minecraft/world/entity/animal/horse/AbstractHorse/m_8119_ ()V net/minecraft/world/entity/animal/horse/AbstractHorse/tick ()V +MD: net/minecraft/world/entity/animal/horse/AbstractHorse/m_9236_ ()Lnet/minecraft/world/level/EntityGetter; net/minecraft/world/entity/animal/horse/AbstractHorse/level ()Lnet/minecraft/world/level/EntityGetter; +MD: net/minecraft/world/entity/animal/horse/AbstractHorse$1/ (Lnet/minecraft/world/entity/animal/horse/AbstractHorse;ILjava/util/function/Predicate;)V net/minecraft/world/entity/animal/horse/AbstractHorse$1/ (Lnet/minecraft/world/entity/animal/horse/AbstractHorse;ILjava/util/function/Predicate;)V +MD: net/minecraft/world/entity/animal/horse/AbstractHorse$1/m_142104_ (Lnet/minecraft/world/item/ItemStack;)Z net/minecraft/world/entity/animal/horse/AbstractHorse$1/set (Lnet/minecraft/world/item/ItemStack;)Z +MD: net/minecraft/world/entity/animal/horse/AbstractHorse$1/m_142196_ ()Lnet/minecraft/world/item/ItemStack; net/minecraft/world/entity/animal/horse/AbstractHorse$1/get ()Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/entity/animal/horse/Donkey/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V net/minecraft/world/entity/animal/horse/Donkey/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V +MD: net/minecraft/world/entity/animal/horse/Donkey/m_142606_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/AgeableMob;)Lnet/minecraft/world/entity/AgeableMob; net/minecraft/world/entity/animal/horse/Donkey/getBreedOffspring (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/AgeableMob;)Lnet/minecraft/world/entity/AgeableMob; +MD: net/minecraft/world/entity/animal/horse/Donkey/m_5592_ ()Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/animal/horse/Donkey/getDeathSound ()Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/animal/horse/Donkey/m_7515_ ()Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/animal/horse/Donkey/getAmbientSound ()Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/animal/horse/Donkey/m_7848_ (Lnet/minecraft/world/entity/animal/Animal;)Z net/minecraft/world/entity/animal/horse/Donkey/canMate (Lnet/minecraft/world/entity/animal/Animal;)Z +MD: net/minecraft/world/entity/animal/horse/Donkey/m_7871_ ()Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/animal/horse/Donkey/getAngrySound ()Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/animal/horse/Donkey/m_7872_ ()Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/animal/horse/Donkey/getEatingSound ()Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/animal/horse/Donkey/m_7975_ (Lnet/minecraft/world/damagesource/DamageSource;)Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/animal/horse/Donkey/getHurtSound (Lnet/minecraft/world/damagesource/DamageSource;)Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/animal/horse/Horse/ ()V net/minecraft/world/entity/animal/horse/Horse/ ()V +MD: net/minecraft/world/entity/animal/horse/Horse/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V net/minecraft/world/entity/animal/horse/Horse/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V +MD: net/minecraft/world/entity/animal/horse/Horse/m_142606_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/AgeableMob;)Lnet/minecraft/world/entity/AgeableMob; net/minecraft/world/entity/animal/horse/Horse/getBreedOffspring (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/AgeableMob;)Lnet/minecraft/world/entity/AgeableMob; +MD: net/minecraft/world/entity/animal/horse/Horse/m_214179_ (Lnet/minecraft/util/RandomSource;)V net/minecraft/world/entity/animal/horse/Horse/randomizeAttributes (Lnet/minecraft/util/RandomSource;)V +MD: net/minecraft/world/entity/animal/horse/Horse/m_28464_ (Lnet/minecraft/world/entity/animal/horse/Variant;)V net/minecraft/world/entity/animal/horse/Horse/setVariant (Lnet/minecraft/world/entity/animal/horse/Variant;)V +MD: net/minecraft/world/entity/animal/horse/Horse/m_28464_ (Ljava/lang/Object;)V net/minecraft/world/entity/animal/horse/Horse/setVariant (Ljava/lang/Object;)V +MD: net/minecraft/world/entity/animal/horse/Horse/m_28554_ ()Ljava/lang/Object; net/minecraft/world/entity/animal/horse/Horse/getVariant ()Ljava/lang/Object; +MD: net/minecraft/world/entity/animal/horse/Horse/m_28554_ ()Lnet/minecraft/world/entity/animal/horse/Variant; net/minecraft/world/entity/animal/horse/Horse/getVariant ()Lnet/minecraft/world/entity/animal/horse/Variant; +MD: net/minecraft/world/entity/animal/horse/Horse/m_30699_ (Lnet/minecraft/world/entity/animal/horse/Variant;Lnet/minecraft/world/entity/animal/horse/Markings;)V net/minecraft/world/entity/animal/horse/Horse/setVariantAndMarkings (Lnet/minecraft/world/entity/animal/horse/Variant;Lnet/minecraft/world/entity/animal/horse/Markings;)V +MD: net/minecraft/world/entity/animal/horse/Horse/m_30722_ ()Lnet/minecraft/world/item/ItemStack; net/minecraft/world/entity/animal/horse/Horse/getArmor ()Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/entity/animal/horse/Horse/m_30724_ ()Lnet/minecraft/world/entity/animal/horse/Markings; net/minecraft/world/entity/animal/horse/Horse/getMarkings ()Lnet/minecraft/world/entity/animal/horse/Markings; +MD: net/minecraft/world/entity/animal/horse/Horse/m_30725_ ()I net/minecraft/world/entity/animal/horse/Horse/getTypeVariant ()I +MD: net/minecraft/world/entity/animal/horse/Horse/m_30732_ (Lnet/minecraft/world/item/ItemStack;)V net/minecraft/world/entity/animal/horse/Horse/setArmor (Lnet/minecraft/world/item/ItemStack;)V +MD: net/minecraft/world/entity/animal/horse/Horse/m_30734_ (Lnet/minecraft/world/item/ItemStack;)V net/minecraft/world/entity/animal/horse/Horse/setArmorEquipment (Lnet/minecraft/world/item/ItemStack;)V +MD: net/minecraft/world/entity/animal/horse/Horse/m_30736_ (I)V net/minecraft/world/entity/animal/horse/Horse/setTypeVariant (I)V +MD: net/minecraft/world/entity/animal/horse/Horse/m_5592_ ()Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/animal/horse/Horse/getDeathSound ()Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/animal/horse/Horse/m_5757_ (Lnet/minecraft/world/Container;)V net/minecraft/world/entity/animal/horse/Horse/containerChanged (Lnet/minecraft/world/Container;)V +MD: net/minecraft/world/entity/animal/horse/Horse/m_5877_ (Lnet/minecraft/world/level/block/SoundType;)V net/minecraft/world/entity/animal/horse/Horse/playGallopSound (Lnet/minecraft/world/level/block/SoundType;)V +MD: net/minecraft/world/entity/animal/horse/Horse/m_6010_ (Lnet/minecraft/world/item/ItemStack;)Z net/minecraft/world/entity/animal/horse/Horse/isArmor (Lnet/minecraft/world/item/ItemStack;)Z +MD: net/minecraft/world/entity/animal/horse/Horse/m_6071_ (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;)Lnet/minecraft/world/InteractionResult; net/minecraft/world/entity/animal/horse/Horse/mobInteract (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;)Lnet/minecraft/world/InteractionResult; +MD: net/minecraft/world/entity/animal/horse/Horse/m_6518_ (Lnet/minecraft/world/level/ServerLevelAccessor;Lnet/minecraft/world/DifficultyInstance;Lnet/minecraft/world/entity/MobSpawnType;Lnet/minecraft/world/entity/SpawnGroupData;Lnet/minecraft/nbt/CompoundTag;)Lnet/minecraft/world/entity/SpawnGroupData; net/minecraft/world/entity/animal/horse/Horse/finalizeSpawn (Lnet/minecraft/world/level/ServerLevelAccessor;Lnet/minecraft/world/DifficultyInstance;Lnet/minecraft/world/entity/MobSpawnType;Lnet/minecraft/world/entity/SpawnGroupData;Lnet/minecraft/nbt/CompoundTag;)Lnet/minecraft/world/entity/SpawnGroupData; +MD: net/minecraft/world/entity/animal/horse/Horse/m_7378_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/entity/animal/horse/Horse/readAdditionalSaveData (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/entity/animal/horse/Horse/m_7380_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/entity/animal/horse/Horse/addAdditionalSaveData (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/entity/animal/horse/Horse/m_7482_ ()Z net/minecraft/world/entity/animal/horse/Horse/canWearArmor ()Z +MD: net/minecraft/world/entity/animal/horse/Horse/m_7493_ ()V net/minecraft/world/entity/animal/horse/Horse/updateContainerEquipment ()V +MD: net/minecraft/world/entity/animal/horse/Horse/m_7515_ ()Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/animal/horse/Horse/getAmbientSound ()Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/animal/horse/Horse/m_7848_ (Lnet/minecraft/world/entity/animal/Animal;)Z net/minecraft/world/entity/animal/horse/Horse/canMate (Lnet/minecraft/world/entity/animal/Animal;)Z +MD: net/minecraft/world/entity/animal/horse/Horse/m_7871_ ()Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/animal/horse/Horse/getAngrySound ()Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/animal/horse/Horse/m_7872_ ()Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/animal/horse/Horse/getEatingSound ()Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/animal/horse/Horse/m_7975_ (Lnet/minecraft/world/damagesource/DamageSource;)Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/animal/horse/Horse/getHurtSound (Lnet/minecraft/world/damagesource/DamageSource;)Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/animal/horse/Horse/m_8097_ ()V net/minecraft/world/entity/animal/horse/Horse/defineSynchedData ()V +MD: net/minecraft/world/entity/animal/horse/Horse$HorseGroupData/ (Lnet/minecraft/world/entity/animal/horse/Variant;)V net/minecraft/world/entity/animal/horse/Horse$HorseGroupData/ (Lnet/minecraft/world/entity/animal/horse/Variant;)V +MD: net/minecraft/world/entity/animal/horse/Llama/ ()V net/minecraft/world/entity/animal/horse/Llama/ ()V +MD: net/minecraft/world/entity/animal/horse/Llama/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V net/minecraft/world/entity/animal/horse/Llama/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V +MD: net/minecraft/world/entity/animal/horse/Llama/m_142535_ (FFLnet/minecraft/world/damagesource/DamageSource;)Z net/minecraft/world/entity/animal/horse/Llama/causeFallDamage (FFLnet/minecraft/world/damagesource/DamageSource;)Z +MD: net/minecraft/world/entity/animal/horse/Llama/m_142606_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/AgeableMob;)Lnet/minecraft/world/entity/AgeableMob; net/minecraft/world/entity/animal/horse/Llama/getBreedOffspring (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/AgeableMob;)Lnet/minecraft/world/entity/AgeableMob; +MD: net/minecraft/world/entity/animal/horse/Llama/m_142606_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/AgeableMob;)Lnet/minecraft/world/entity/animal/horse/Llama; net/minecraft/world/entity/animal/horse/Llama/getBreedOffspring (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/AgeableMob;)Lnet/minecraft/world/entity/animal/horse/Llama; +MD: net/minecraft/world/entity/animal/horse/Llama/m_19956_ (Lnet/minecraft/world/entity/Entity;Lnet/minecraft/world/entity/Entity$MoveFunction;)V net/minecraft/world/entity/animal/horse/Llama/positionRider (Lnet/minecraft/world/entity/Entity;Lnet/minecraft/world/entity/Entity$MoveFunction;)V +MD: net/minecraft/world/entity/animal/horse/Llama/m_218817_ (Lnet/minecraft/util/RandomSource;)V net/minecraft/world/entity/animal/horse/Llama/setRandomStrength (Lnet/minecraft/util/RandomSource;)V +MD: net/minecraft/world/entity/animal/horse/Llama/m_245259_ ()Z net/minecraft/world/entity/animal/horse/Llama/canPerformRearing ()Z +MD: net/minecraft/world/entity/animal/horse/Llama/m_28464_ (Ljava/lang/Object;)V net/minecraft/world/entity/animal/horse/Llama/setVariant (Ljava/lang/Object;)V +MD: net/minecraft/world/entity/animal/horse/Llama/m_28464_ (Lnet/minecraft/world/entity/animal/horse/Llama$Variant;)V net/minecraft/world/entity/animal/horse/Llama/setVariant (Lnet/minecraft/world/entity/animal/horse/Llama$Variant;)V +MD: net/minecraft/world/entity/animal/horse/Llama/m_28554_ ()Ljava/lang/Object; net/minecraft/world/entity/animal/horse/Llama/getVariant ()Ljava/lang/Object; +MD: net/minecraft/world/entity/animal/horse/Llama/m_28554_ ()Lnet/minecraft/world/entity/animal/horse/Llama$Variant; net/minecraft/world/entity/animal/horse/Llama/getVariant ()Lnet/minecraft/world/entity/animal/horse/Llama$Variant; +MD: net/minecraft/world/entity/animal/horse/Llama/m_30752_ (Z)V net/minecraft/world/entity/animal/horse/Llama/setDidSpit (Z)V +MD: net/minecraft/world/entity/animal/horse/Llama/m_30766_ (Lnet/minecraft/world/entity/animal/horse/Llama;)V net/minecraft/world/entity/animal/horse/Llama/joinCaravan (Lnet/minecraft/world/entity/animal/horse/Llama;)V +MD: net/minecraft/world/entity/animal/horse/Llama/m_30771_ (Lnet/minecraft/world/item/DyeColor;)V net/minecraft/world/entity/animal/horse/Llama/setSwag (Lnet/minecraft/world/item/DyeColor;)V +MD: net/minecraft/world/entity/animal/horse/Llama/m_30809_ ()V net/minecraft/world/entity/animal/horse/Llama/leaveCaravan ()V +MD: net/minecraft/world/entity/animal/horse/Llama/m_30810_ ()Z net/minecraft/world/entity/animal/horse/Llama/hasCaravanTail ()Z +MD: net/minecraft/world/entity/animal/horse/Llama/m_30811_ ()Z net/minecraft/world/entity/animal/horse/Llama/inCaravan ()Z +MD: net/minecraft/world/entity/animal/horse/Llama/m_30812_ ()Lnet/minecraft/world/entity/animal/horse/Llama; net/minecraft/world/entity/animal/horse/Llama/getCaravanHead ()Lnet/minecraft/world/entity/animal/horse/Llama; +MD: net/minecraft/world/entity/animal/horse/Llama/m_30823_ ()I net/minecraft/world/entity/animal/horse/Llama/getStrength ()I +MD: net/minecraft/world/entity/animal/horse/Llama/m_30824_ ()Lnet/minecraft/world/entity/ai/attributes/AttributeSupplier$Builder; net/minecraft/world/entity/animal/horse/Llama/createAttributes ()Lnet/minecraft/world/entity/ai/attributes/AttributeSupplier$Builder; +MD: net/minecraft/world/entity/animal/horse/Llama/m_30826_ ()Lnet/minecraft/world/item/DyeColor; net/minecraft/world/entity/animal/horse/Llama/getSwag ()Lnet/minecraft/world/item/DyeColor; +MD: net/minecraft/world/entity/animal/horse/Llama/m_30827_ (Lnet/minecraft/world/entity/LivingEntity;)V net/minecraft/world/entity/animal/horse/Llama/spit (Lnet/minecraft/world/entity/LivingEntity;)V +MD: net/minecraft/world/entity/animal/horse/Llama/m_30835_ (Lnet/minecraft/world/item/ItemStack;)Lnet/minecraft/world/item/DyeColor; net/minecraft/world/entity/animal/horse/Llama/getDyeColor (Lnet/minecraft/world/item/ItemStack;)Lnet/minecraft/world/item/DyeColor; +MD: net/minecraft/world/entity/animal/horse/Llama/m_30840_ (I)V net/minecraft/world/entity/animal/horse/Llama/setStrength (I)V +MD: net/minecraft/world/entity/animal/horse/Llama/m_5592_ ()Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/animal/horse/Llama/getDeathSound ()Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/animal/horse/Llama/m_5757_ (Lnet/minecraft/world/Container;)V net/minecraft/world/entity/animal/horse/Llama/containerChanged (Lnet/minecraft/world/Container;)V +MD: net/minecraft/world/entity/animal/horse/Llama/m_5823_ ()D net/minecraft/world/entity/animal/horse/Llama/followLeashSpeed ()D +MD: net/minecraft/world/entity/animal/horse/Llama/m_5994_ (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/item/ItemStack;)Z net/minecraft/world/entity/animal/horse/Llama/handleEating (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/item/ItemStack;)Z +MD: net/minecraft/world/entity/animal/horse/Llama/m_6010_ (Lnet/minecraft/world/item/ItemStack;)Z net/minecraft/world/entity/animal/horse/Llama/isArmor (Lnet/minecraft/world/item/ItemStack;)Z +MD: net/minecraft/world/entity/animal/horse/Llama/m_6048_ ()D net/minecraft/world/entity/animal/horse/Llama/getPassengersRidingOffset ()D +MD: net/minecraft/world/entity/animal/horse/Llama/m_6107_ ()Z net/minecraft/world/entity/animal/horse/Llama/isImmobile ()Z +MD: net/minecraft/world/entity/animal/horse/Llama/m_6504_ (Lnet/minecraft/world/entity/LivingEntity;F)V net/minecraft/world/entity/animal/horse/Llama/performRangedAttack (Lnet/minecraft/world/entity/LivingEntity;F)V +MD: net/minecraft/world/entity/animal/horse/Llama/m_6518_ (Lnet/minecraft/world/level/ServerLevelAccessor;Lnet/minecraft/world/DifficultyInstance;Lnet/minecraft/world/entity/MobSpawnType;Lnet/minecraft/world/entity/SpawnGroupData;Lnet/minecraft/nbt/CompoundTag;)Lnet/minecraft/world/entity/SpawnGroupData; net/minecraft/world/entity/animal/horse/Llama/finalizeSpawn (Lnet/minecraft/world/level/ServerLevelAccessor;Lnet/minecraft/world/DifficultyInstance;Lnet/minecraft/world/entity/MobSpawnType;Lnet/minecraft/world/entity/SpawnGroupData;Lnet/minecraft/nbt/CompoundTag;)Lnet/minecraft/world/entity/SpawnGroupData; +MD: net/minecraft/world/entity/animal/horse/Llama/m_6688_ ()Lnet/minecraft/world/entity/LivingEntity; net/minecraft/world/entity/animal/horse/Llama/getControllingPassenger ()Lnet/minecraft/world/entity/LivingEntity; +MD: net/minecraft/world/entity/animal/horse/Llama/m_6741_ ()Z net/minecraft/world/entity/animal/horse/Llama/isSaddleable ()Z +MD: net/minecraft/world/entity/animal/horse/Llama/m_6898_ (Lnet/minecraft/world/item/ItemStack;)Z net/minecraft/world/entity/animal/horse/Llama/isFood (Lnet/minecraft/world/item/ItemStack;)Z +MD: net/minecraft/world/entity/animal/horse/Llama/m_7127_ ()Lnet/minecraft/world/entity/animal/horse/Llama; net/minecraft/world/entity/animal/horse/Llama/makeNewLlama ()Lnet/minecraft/world/entity/animal/horse/Llama; +MD: net/minecraft/world/entity/animal/horse/Llama/m_7355_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V net/minecraft/world/entity/animal/horse/Llama/playStepSound (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V +MD: net/minecraft/world/entity/animal/horse/Llama/m_7378_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/entity/animal/horse/Llama/readAdditionalSaveData (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/entity/animal/horse/Llama/m_7380_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/entity/animal/horse/Llama/addAdditionalSaveData (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/entity/animal/horse/Llama/m_7481_ ()Z net/minecraft/world/entity/animal/horse/Llama/isWearingArmor ()Z +MD: net/minecraft/world/entity/animal/horse/Llama/m_7482_ ()Z net/minecraft/world/entity/animal/horse/Llama/canWearArmor ()Z +MD: net/minecraft/world/entity/animal/horse/Llama/m_7488_ ()I net/minecraft/world/entity/animal/horse/Llama/getInventoryColumns ()I +MD: net/minecraft/world/entity/animal/horse/Llama/m_7493_ ()V net/minecraft/world/entity/animal/horse/Llama/updateContainerEquipment ()V +MD: net/minecraft/world/entity/animal/horse/Llama/m_7506_ ()I net/minecraft/world/entity/animal/horse/Llama/getInventorySize ()I +MD: net/minecraft/world/entity/animal/horse/Llama/m_7515_ ()Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/animal/horse/Llama/getAmbientSound ()Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/animal/horse/Llama/m_7555_ ()I net/minecraft/world/entity/animal/horse/Llama/getMaxTemper ()I +MD: net/minecraft/world/entity/animal/horse/Llama/m_7559_ ()Z net/minecraft/world/entity/animal/horse/Llama/canEatGrass ()Z +MD: net/minecraft/world/entity/animal/horse/Llama/m_7565_ ()Z net/minecraft/world/entity/animal/horse/Llama/isTraderLlama ()Z +MD: net/minecraft/world/entity/animal/horse/Llama/m_7567_ ()V net/minecraft/world/entity/animal/horse/Llama/followMommy ()V +MD: net/minecraft/world/entity/animal/horse/Llama/m_7609_ ()V net/minecraft/world/entity/animal/horse/Llama/playChestEquipsSound ()V +MD: net/minecraft/world/entity/animal/horse/Llama/m_7848_ (Lnet/minecraft/world/entity/animal/Animal;)Z net/minecraft/world/entity/animal/horse/Llama/canMate (Lnet/minecraft/world/entity/animal/Animal;)Z +MD: net/minecraft/world/entity/animal/horse/Llama/m_7871_ ()Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/animal/horse/Llama/getAngrySound ()Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/animal/horse/Llama/m_7872_ ()Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/animal/horse/Llama/getEatingSound ()Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/animal/horse/Llama/m_7939_ ()Lnet/minecraft/world/phys/Vec3; net/minecraft/world/entity/animal/horse/Llama/getLeashOffset ()Lnet/minecraft/world/phys/Vec3; +MD: net/minecraft/world/entity/animal/horse/Llama/m_7975_ (Lnet/minecraft/world/damagesource/DamageSource;)Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/animal/horse/Llama/getHurtSound (Lnet/minecraft/world/damagesource/DamageSource;)Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/animal/horse/Llama/m_8097_ ()V net/minecraft/world/entity/animal/horse/Llama/defineSynchedData ()V +MD: net/minecraft/world/entity/animal/horse/Llama/m_8099_ ()V net/minecraft/world/entity/animal/horse/Llama/registerGoals ()V +MD: net/minecraft/world/entity/animal/horse/Llama$LlamaAttackWolfGoal/ (Lnet/minecraft/world/entity/animal/horse/Llama;)V net/minecraft/world/entity/animal/horse/Llama$LlamaAttackWolfGoal/ (Lnet/minecraft/world/entity/animal/horse/Llama;)V +MD: net/minecraft/world/entity/animal/horse/Llama$LlamaAttackWolfGoal/m_289141_ (Lnet/minecraft/world/entity/LivingEntity;)Z net/minecraft/world/entity/animal/horse/Llama$LlamaAttackWolfGoal/lambda$new$0 (Lnet/minecraft/world/entity/LivingEntity;)Z +MD: net/minecraft/world/entity/animal/horse/Llama$LlamaAttackWolfGoal/m_7623_ ()D net/minecraft/world/entity/animal/horse/Llama$LlamaAttackWolfGoal/getFollowDistance ()D +MD: net/minecraft/world/entity/animal/horse/Llama$LlamaGroupData/ (Lnet/minecraft/world/entity/animal/horse/Llama$Variant;)V net/minecraft/world/entity/animal/horse/Llama$LlamaGroupData/ (Lnet/minecraft/world/entity/animal/horse/Llama$Variant;)V +MD: net/minecraft/world/entity/animal/horse/Llama$LlamaHurtByTargetGoal/ (Lnet/minecraft/world/entity/animal/horse/Llama;)V net/minecraft/world/entity/animal/horse/Llama$LlamaHurtByTargetGoal/ (Lnet/minecraft/world/entity/animal/horse/Llama;)V +MD: net/minecraft/world/entity/animal/horse/Llama$LlamaHurtByTargetGoal/m_8045_ ()Z net/minecraft/world/entity/animal/horse/Llama$LlamaHurtByTargetGoal/canContinueToUse ()Z +MD: net/minecraft/world/entity/animal/horse/Llama$Variant/ ()V net/minecraft/world/entity/animal/horse/Llama$Variant/ ()V +MD: net/minecraft/world/entity/animal/horse/Llama$Variant/ (Ljava/lang/String;IILjava/lang/String;)V net/minecraft/world/entity/animal/horse/Llama$Variant/ (Ljava/lang/String;IILjava/lang/String;)V +MD: net/minecraft/world/entity/animal/horse/Llama$Variant/m_262370_ ()[Lnet/minecraft/world/entity/animal/horse/Llama$Variant; net/minecraft/world/entity/animal/horse/Llama$Variant/$values ()[Lnet/minecraft/world/entity/animal/horse/Llama$Variant; +MD: net/minecraft/world/entity/animal/horse/Llama$Variant/m_262452_ ()I net/minecraft/world/entity/animal/horse/Llama$Variant/getId ()I +MD: net/minecraft/world/entity/animal/horse/Llama$Variant/m_262458_ (I)Lnet/minecraft/world/entity/animal/horse/Llama$Variant; net/minecraft/world/entity/animal/horse/Llama$Variant/byId (I)Lnet/minecraft/world/entity/animal/horse/Llama$Variant; +MD: net/minecraft/world/entity/animal/horse/Llama$Variant/m_7912_ ()Ljava/lang/String; net/minecraft/world/entity/animal/horse/Llama$Variant/getSerializedName ()Ljava/lang/String; +MD: net/minecraft/world/entity/animal/horse/Llama$Variant/valueOf (Ljava/lang/String;)Lnet/minecraft/world/entity/animal/horse/Llama$Variant; net/minecraft/world/entity/animal/horse/Llama$Variant/valueOf (Ljava/lang/String;)Lnet/minecraft/world/entity/animal/horse/Llama$Variant; +MD: net/minecraft/world/entity/animal/horse/Llama$Variant/values ()[Lnet/minecraft/world/entity/animal/horse/Llama$Variant; net/minecraft/world/entity/animal/horse/Llama$Variant/values ()[Lnet/minecraft/world/entity/animal/horse/Llama$Variant; +MD: net/minecraft/world/entity/animal/horse/Markings/ ()V net/minecraft/world/entity/animal/horse/Markings/ ()V +MD: net/minecraft/world/entity/animal/horse/Markings/ (Ljava/lang/String;II)V net/minecraft/world/entity/animal/horse/Markings/ (Ljava/lang/String;II)V +MD: net/minecraft/world/entity/animal/horse/Markings/m_149547_ ()[Lnet/minecraft/world/entity/animal/horse/Markings; net/minecraft/world/entity/animal/horse/Markings/$values ()[Lnet/minecraft/world/entity/animal/horse/Markings; +MD: net/minecraft/world/entity/animal/horse/Markings/m_30869_ ()I net/minecraft/world/entity/animal/horse/Markings/getId ()I +MD: net/minecraft/world/entity/animal/horse/Markings/m_30870_ (I)Lnet/minecraft/world/entity/animal/horse/Markings; net/minecraft/world/entity/animal/horse/Markings/byId (I)Lnet/minecraft/world/entity/animal/horse/Markings; +MD: net/minecraft/world/entity/animal/horse/Markings/valueOf (Ljava/lang/String;)Lnet/minecraft/world/entity/animal/horse/Markings; net/minecraft/world/entity/animal/horse/Markings/valueOf (Ljava/lang/String;)Lnet/minecraft/world/entity/animal/horse/Markings; +MD: net/minecraft/world/entity/animal/horse/Markings/values ()[Lnet/minecraft/world/entity/animal/horse/Markings; net/minecraft/world/entity/animal/horse/Markings/values ()[Lnet/minecraft/world/entity/animal/horse/Markings; +MD: net/minecraft/world/entity/animal/horse/Mule/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V net/minecraft/world/entity/animal/horse/Mule/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V +MD: net/minecraft/world/entity/animal/horse/Mule/m_142606_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/AgeableMob;)Lnet/minecraft/world/entity/AgeableMob; net/minecraft/world/entity/animal/horse/Mule/getBreedOffspring (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/AgeableMob;)Lnet/minecraft/world/entity/AgeableMob; +MD: net/minecraft/world/entity/animal/horse/Mule/m_5592_ ()Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/animal/horse/Mule/getDeathSound ()Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/animal/horse/Mule/m_7515_ ()Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/animal/horse/Mule/getAmbientSound ()Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/animal/horse/Mule/m_7609_ ()V net/minecraft/world/entity/animal/horse/Mule/playChestEquipsSound ()V +MD: net/minecraft/world/entity/animal/horse/Mule/m_7871_ ()Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/animal/horse/Mule/getAngrySound ()Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/animal/horse/Mule/m_7872_ ()Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/animal/horse/Mule/getEatingSound ()Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/animal/horse/Mule/m_7975_ (Lnet/minecraft/world/damagesource/DamageSource;)Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/animal/horse/Mule/getHurtSound (Lnet/minecraft/world/damagesource/DamageSource;)Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/animal/horse/SkeletonHorse/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V net/minecraft/world/entity/animal/horse/SkeletonHorse/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V +MD: net/minecraft/world/entity/animal/horse/SkeletonHorse/m_142606_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/AgeableMob;)Lnet/minecraft/world/entity/AgeableMob; net/minecraft/world/entity/animal/horse/SkeletonHorse/getBreedOffspring (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/AgeableMob;)Lnet/minecraft/world/entity/AgeableMob; +MD: net/minecraft/world/entity/animal/horse/SkeletonHorse/m_214179_ (Lnet/minecraft/util/RandomSource;)V net/minecraft/world/entity/animal/horse/SkeletonHorse/randomizeAttributes (Lnet/minecraft/util/RandomSource;)V +MD: net/minecraft/world/entity/animal/horse/SkeletonHorse/m_30918_ ()Lnet/minecraft/world/entity/ai/attributes/AttributeSupplier$Builder; net/minecraft/world/entity/animal/horse/SkeletonHorse/createAttributes ()Lnet/minecraft/world/entity/ai/attributes/AttributeSupplier$Builder; +MD: net/minecraft/world/entity/animal/horse/SkeletonHorse/m_30919_ ()Z net/minecraft/world/entity/animal/horse/SkeletonHorse/isTrap ()Z +MD: net/minecraft/world/entity/animal/horse/SkeletonHorse/m_30923_ (Z)V net/minecraft/world/entity/animal/horse/SkeletonHorse/setTrap (Z)V +MD: net/minecraft/world/entity/animal/horse/SkeletonHorse/m_5501_ ()Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/animal/horse/SkeletonHorse/getSwimSound ()Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/animal/horse/SkeletonHorse/m_5592_ ()Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/animal/horse/SkeletonHorse/getDeathSound ()Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/animal/horse/SkeletonHorse/m_5625_ (F)V net/minecraft/world/entity/animal/horse/SkeletonHorse/playSwimSound (F)V +MD: net/minecraft/world/entity/animal/horse/SkeletonHorse/m_6048_ ()D net/minecraft/world/entity/animal/horse/SkeletonHorse/getPassengersRidingOffset ()D +MD: net/minecraft/world/entity/animal/horse/SkeletonHorse/m_6071_ (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;)Lnet/minecraft/world/InteractionResult; net/minecraft/world/entity/animal/horse/SkeletonHorse/mobInteract (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;)Lnet/minecraft/world/InteractionResult; +MD: net/minecraft/world/entity/animal/horse/SkeletonHorse/m_6108_ ()F net/minecraft/world/entity/animal/horse/SkeletonHorse/getWaterSlowDown ()F +MD: net/minecraft/world/entity/animal/horse/SkeletonHorse/m_6336_ ()Lnet/minecraft/world/entity/MobType; net/minecraft/world/entity/animal/horse/SkeletonHorse/getMobType ()Lnet/minecraft/world/entity/MobType; +MD: net/minecraft/world/entity/animal/horse/SkeletonHorse/m_7378_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/entity/animal/horse/SkeletonHorse/readAdditionalSaveData (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/entity/animal/horse/SkeletonHorse/m_7380_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/entity/animal/horse/SkeletonHorse/addAdditionalSaveData (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/entity/animal/horse/SkeletonHorse/m_7486_ ()V net/minecraft/world/entity/animal/horse/SkeletonHorse/playJumpSound ()V +MD: net/minecraft/world/entity/animal/horse/SkeletonHorse/m_7509_ ()V net/minecraft/world/entity/animal/horse/SkeletonHorse/addBehaviourGoals ()V +MD: net/minecraft/world/entity/animal/horse/SkeletonHorse/m_7515_ ()Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/animal/horse/SkeletonHorse/getAmbientSound ()Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/animal/horse/SkeletonHorse/m_7975_ (Lnet/minecraft/world/damagesource/DamageSource;)Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/animal/horse/SkeletonHorse/getHurtSound (Lnet/minecraft/world/damagesource/DamageSource;)Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/animal/horse/SkeletonHorse/m_8107_ ()V net/minecraft/world/entity/animal/horse/SkeletonHorse/aiStep ()V +MD: net/minecraft/world/entity/animal/horse/SkeletonTrapGoal/ (Lnet/minecraft/world/entity/animal/horse/SkeletonHorse;)V net/minecraft/world/entity/animal/horse/SkeletonTrapGoal/ (Lnet/minecraft/world/entity/animal/horse/SkeletonHorse;)V +MD: net/minecraft/world/entity/animal/horse/SkeletonTrapGoal/m_30929_ (Lnet/minecraft/world/DifficultyInstance;)Lnet/minecraft/world/entity/animal/horse/AbstractHorse; net/minecraft/world/entity/animal/horse/SkeletonTrapGoal/createHorse (Lnet/minecraft/world/DifficultyInstance;)Lnet/minecraft/world/entity/animal/horse/AbstractHorse; +MD: net/minecraft/world/entity/animal/horse/SkeletonTrapGoal/m_30931_ (Lnet/minecraft/world/DifficultyInstance;Lnet/minecraft/world/entity/animal/horse/AbstractHorse;)Lnet/minecraft/world/entity/monster/Skeleton; net/minecraft/world/entity/animal/horse/SkeletonTrapGoal/createSkeleton (Lnet/minecraft/world/DifficultyInstance;Lnet/minecraft/world/entity/animal/horse/AbstractHorse;)Lnet/minecraft/world/entity/monster/Skeleton; +MD: net/minecraft/world/entity/animal/horse/SkeletonTrapGoal/m_30934_ (Lnet/minecraft/world/item/ItemStack;)Lnet/minecraft/world/item/ItemStack; net/minecraft/world/entity/animal/horse/SkeletonTrapGoal/disenchant (Lnet/minecraft/world/item/ItemStack;)Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/entity/animal/horse/SkeletonTrapGoal/m_8036_ ()Z net/minecraft/world/entity/animal/horse/SkeletonTrapGoal/canUse ()Z +MD: net/minecraft/world/entity/animal/horse/SkeletonTrapGoal/m_8037_ ()V net/minecraft/world/entity/animal/horse/SkeletonTrapGoal/tick ()V +MD: net/minecraft/world/entity/animal/horse/TraderLlama/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V net/minecraft/world/entity/animal/horse/TraderLlama/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V +MD: net/minecraft/world/entity/animal/horse/TraderLlama/m_149555_ (I)V net/minecraft/world/entity/animal/horse/TraderLlama/setDespawnDelay (I)V +MD: net/minecraft/world/entity/animal/horse/TraderLlama/m_30951_ ()V net/minecraft/world/entity/animal/horse/TraderLlama/maybeDespawn ()V +MD: net/minecraft/world/entity/animal/horse/TraderLlama/m_30952_ ()Z net/minecraft/world/entity/animal/horse/TraderLlama/canDespawn ()Z +MD: net/minecraft/world/entity/animal/horse/TraderLlama/m_30953_ ()Z net/minecraft/world/entity/animal/horse/TraderLlama/isLeashedToWanderingTrader ()Z +MD: net/minecraft/world/entity/animal/horse/TraderLlama/m_30954_ ()Z net/minecraft/world/entity/animal/horse/TraderLlama/isLeashedToSomethingOtherThanTheWanderingTrader ()Z +MD: net/minecraft/world/entity/animal/horse/TraderLlama/m_6518_ (Lnet/minecraft/world/level/ServerLevelAccessor;Lnet/minecraft/world/DifficultyInstance;Lnet/minecraft/world/entity/MobSpawnType;Lnet/minecraft/world/entity/SpawnGroupData;Lnet/minecraft/nbt/CompoundTag;)Lnet/minecraft/world/entity/SpawnGroupData; net/minecraft/world/entity/animal/horse/TraderLlama/finalizeSpawn (Lnet/minecraft/world/level/ServerLevelAccessor;Lnet/minecraft/world/DifficultyInstance;Lnet/minecraft/world/entity/MobSpawnType;Lnet/minecraft/world/entity/SpawnGroupData;Lnet/minecraft/nbt/CompoundTag;)Lnet/minecraft/world/entity/SpawnGroupData; +MD: net/minecraft/world/entity/animal/horse/TraderLlama/m_6835_ (Lnet/minecraft/world/entity/player/Player;)V net/minecraft/world/entity/animal/horse/TraderLlama/doPlayerRide (Lnet/minecraft/world/entity/player/Player;)V +MD: net/minecraft/world/entity/animal/horse/TraderLlama/m_7127_ ()Lnet/minecraft/world/entity/animal/horse/Llama; net/minecraft/world/entity/animal/horse/TraderLlama/makeNewLlama ()Lnet/minecraft/world/entity/animal/horse/Llama; +MD: net/minecraft/world/entity/animal/horse/TraderLlama/m_7378_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/entity/animal/horse/TraderLlama/readAdditionalSaveData (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/entity/animal/horse/TraderLlama/m_7380_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/entity/animal/horse/TraderLlama/addAdditionalSaveData (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/entity/animal/horse/TraderLlama/m_7565_ ()Z net/minecraft/world/entity/animal/horse/TraderLlama/isTraderLlama ()Z +MD: net/minecraft/world/entity/animal/horse/TraderLlama/m_8099_ ()V net/minecraft/world/entity/animal/horse/TraderLlama/registerGoals ()V +MD: net/minecraft/world/entity/animal/horse/TraderLlama/m_8107_ ()V net/minecraft/world/entity/animal/horse/TraderLlama/aiStep ()V +MD: net/minecraft/world/entity/animal/horse/TraderLlama$TraderLlamaDefendWanderingTraderGoal/ (Lnet/minecraft/world/entity/animal/horse/Llama;)V net/minecraft/world/entity/animal/horse/TraderLlama$TraderLlamaDefendWanderingTraderGoal/ (Lnet/minecraft/world/entity/animal/horse/Llama;)V +MD: net/minecraft/world/entity/animal/horse/TraderLlama$TraderLlamaDefendWanderingTraderGoal/m_8036_ ()Z net/minecraft/world/entity/animal/horse/TraderLlama$TraderLlamaDefendWanderingTraderGoal/canUse ()Z +MD: net/minecraft/world/entity/animal/horse/TraderLlama$TraderLlamaDefendWanderingTraderGoal/m_8056_ ()V net/minecraft/world/entity/animal/horse/TraderLlama$TraderLlamaDefendWanderingTraderGoal/start ()V +MD: net/minecraft/world/entity/animal/horse/Variant/ ()V net/minecraft/world/entity/animal/horse/Variant/ ()V +MD: net/minecraft/world/entity/animal/horse/Variant/ (Ljava/lang/String;IILjava/lang/String;)V net/minecraft/world/entity/animal/horse/Variant/ (Ljava/lang/String;IILjava/lang/String;)V +MD: net/minecraft/world/entity/animal/horse/Variant/m_149559_ ()[Lnet/minecraft/world/entity/animal/horse/Variant; net/minecraft/world/entity/animal/horse/Variant/$values ()[Lnet/minecraft/world/entity/animal/horse/Variant; +MD: net/minecraft/world/entity/animal/horse/Variant/m_30985_ ()I net/minecraft/world/entity/animal/horse/Variant/getId ()I +MD: net/minecraft/world/entity/animal/horse/Variant/m_30986_ (I)Lnet/minecraft/world/entity/animal/horse/Variant; net/minecraft/world/entity/animal/horse/Variant/byId (I)Lnet/minecraft/world/entity/animal/horse/Variant; +MD: net/minecraft/world/entity/animal/horse/Variant/m_7912_ ()Ljava/lang/String; net/minecraft/world/entity/animal/horse/Variant/getSerializedName ()Ljava/lang/String; +MD: net/minecraft/world/entity/animal/horse/Variant/valueOf (Ljava/lang/String;)Lnet/minecraft/world/entity/animal/horse/Variant; net/minecraft/world/entity/animal/horse/Variant/valueOf (Ljava/lang/String;)Lnet/minecraft/world/entity/animal/horse/Variant; +MD: net/minecraft/world/entity/animal/horse/Variant/values ()[Lnet/minecraft/world/entity/animal/horse/Variant; net/minecraft/world/entity/animal/horse/Variant/values ()[Lnet/minecraft/world/entity/animal/horse/Variant; +MD: net/minecraft/world/entity/animal/horse/ZombieHorse/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V net/minecraft/world/entity/animal/horse/ZombieHorse/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V +MD: net/minecraft/world/entity/animal/horse/ZombieHorse/m_142606_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/AgeableMob;)Lnet/minecraft/world/entity/AgeableMob; net/minecraft/world/entity/animal/horse/ZombieHorse/getBreedOffspring (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/AgeableMob;)Lnet/minecraft/world/entity/AgeableMob; +MD: net/minecraft/world/entity/animal/horse/ZombieHorse/m_214179_ (Lnet/minecraft/util/RandomSource;)V net/minecraft/world/entity/animal/horse/ZombieHorse/randomizeAttributes (Lnet/minecraft/util/RandomSource;)V +MD: net/minecraft/world/entity/animal/horse/ZombieHorse/m_31008_ ()Lnet/minecraft/world/entity/ai/attributes/AttributeSupplier$Builder; net/minecraft/world/entity/animal/horse/ZombieHorse/createAttributes ()Lnet/minecraft/world/entity/ai/attributes/AttributeSupplier$Builder; +MD: net/minecraft/world/entity/animal/horse/ZombieHorse/m_5592_ ()Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/animal/horse/ZombieHorse/getDeathSound ()Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/animal/horse/ZombieHorse/m_6071_ (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;)Lnet/minecraft/world/InteractionResult; net/minecraft/world/entity/animal/horse/ZombieHorse/mobInteract (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;)Lnet/minecraft/world/InteractionResult; +MD: net/minecraft/world/entity/animal/horse/ZombieHorse/m_6336_ ()Lnet/minecraft/world/entity/MobType; net/minecraft/world/entity/animal/horse/ZombieHorse/getMobType ()Lnet/minecraft/world/entity/MobType; +MD: net/minecraft/world/entity/animal/horse/ZombieHorse/m_7509_ ()V net/minecraft/world/entity/animal/horse/ZombieHorse/addBehaviourGoals ()V +MD: net/minecraft/world/entity/animal/horse/ZombieHorse/m_7515_ ()Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/animal/horse/ZombieHorse/getAmbientSound ()Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/animal/horse/ZombieHorse/m_7975_ (Lnet/minecraft/world/damagesource/DamageSource;)Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/animal/horse/ZombieHorse/getHurtSound (Lnet/minecraft/world/damagesource/DamageSource;)Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/animal/sniffer/Sniffer/ ()V net/minecraft/world/entity/animal/sniffer/Sniffer/ ()V +MD: net/minecraft/world/entity/animal/sniffer/Sniffer/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V net/minecraft/world/entity/animal/sniffer/Sniffer/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V +MD: net/minecraft/world/entity/animal/sniffer/Sniffer/m_142606_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/AgeableMob;)Lnet/minecraft/world/entity/AgeableMob; net/minecraft/world/entity/animal/sniffer/Sniffer/getBreedOffspring (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/AgeableMob;)Lnet/minecraft/world/entity/AgeableMob; +MD: net/minecraft/world/entity/animal/sniffer/Sniffer/m_271705_ (Lnet/minecraft/world/entity/animal/sniffer/Sniffer$State;)Lnet/minecraft/world/entity/animal/sniffer/Sniffer; net/minecraft/world/entity/animal/sniffer/Sniffer/setState (Lnet/minecraft/world/entity/animal/sniffer/Sniffer$State;)Lnet/minecraft/world/entity/animal/sniffer/Sniffer; +MD: net/minecraft/world/entity/animal/sniffer/Sniffer/m_271740_ ()V net/minecraft/world/entity/animal/sniffer/Sniffer/dropSeed ()V +MD: net/minecraft/world/entity/animal/sniffer/Sniffer/m_271798_ (I)Lnet/minecraft/world/phys/Vec3; net/minecraft/world/entity/animal/sniffer/Sniffer/lambda$calculateDigPosition$0 (I)Lnet/minecraft/world/phys/Vec3; +MD: net/minecraft/world/entity/animal/sniffer/Sniffer/m_271845_ ()V net/minecraft/world/entity/animal/sniffer/Sniffer/resetAnimations ()V +MD: net/minecraft/world/entity/animal/sniffer/Sniffer/m_271851_ ()Lnet/minecraft/world/entity/animal/sniffer/Sniffer; net/minecraft/world/entity/animal/sniffer/Sniffer/onDiggingStart ()Lnet/minecraft/world/entity/animal/sniffer/Sniffer; +MD: net/minecraft/world/entity/animal/sniffer/Sniffer/m_271874_ (Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/entity/animal/sniffer/Sniffer; net/minecraft/world/entity/animal/sniffer/Sniffer/storeExploredPosition (Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/entity/animal/sniffer/Sniffer; +MD: net/minecraft/world/entity/animal/sniffer/Sniffer/m_271876_ ()Lnet/minecraft/world/entity/ai/attributes/AttributeSupplier$Builder; net/minecraft/world/entity/animal/sniffer/Sniffer/createAttributes ()Lnet/minecraft/world/entity/ai/attributes/AttributeSupplier$Builder; +MD: net/minecraft/world/entity/animal/sniffer/Sniffer/m_271898_ (Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/entity/animal/sniffer/Sniffer/canDig (Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/entity/animal/sniffer/Sniffer/m_271905_ ()Ljava/util/Optional; net/minecraft/world/entity/animal/sniffer/Sniffer/calculateDigPosition ()Ljava/util/Optional; +MD: net/minecraft/world/entity/animal/sniffer/Sniffer/m_271917_ ()Lnet/minecraft/world/entity/animal/sniffer/Sniffer$State; net/minecraft/world/entity/animal/sniffer/Sniffer/getState ()Lnet/minecraft/world/entity/animal/sniffer/Sniffer$State; +MD: net/minecraft/world/entity/animal/sniffer/Sniffer/m_271943_ (Z)Lnet/minecraft/world/entity/animal/sniffer/Sniffer; net/minecraft/world/entity/animal/sniffer/Sniffer/onDiggingComplete (Z)Lnet/minecraft/world/entity/animal/sniffer/Sniffer; +MD: net/minecraft/world/entity/animal/sniffer/Sniffer/m_272034_ (Lnet/minecraft/world/entity/animal/sniffer/Sniffer$State;)Lnet/minecraft/world/entity/animal/sniffer/Sniffer; net/minecraft/world/entity/animal/sniffer/Sniffer/transitionTo (Lnet/minecraft/world/entity/animal/sniffer/Sniffer$State;)Lnet/minecraft/world/entity/animal/sniffer/Sniffer; +MD: net/minecraft/world/entity/animal/sniffer/Sniffer/m_272076_ ()Z net/minecraft/world/entity/animal/sniffer/Sniffer/canPlayDiggingSound ()Z +MD: net/minecraft/world/entity/animal/sniffer/Sniffer/m_272136_ ()V net/minecraft/world/entity/animal/sniffer/Sniffer/playSearchingSound ()V +MD: net/minecraft/world/entity/animal/sniffer/Sniffer/m_272217_ ()Ljava/util/stream/Stream; net/minecraft/world/entity/animal/sniffer/Sniffer/getExploredPositions ()Ljava/util/stream/Stream; +MD: net/minecraft/world/entity/animal/sniffer/Sniffer/m_272223_ ()Z net/minecraft/world/entity/animal/sniffer/Sniffer/isPanicking ()Z +MD: net/minecraft/world/entity/animal/sniffer/Sniffer/m_272270_ ()Z net/minecraft/world/entity/animal/sniffer/Sniffer/canDig ()Z +MD: net/minecraft/world/entity/animal/sniffer/Sniffer/m_272274_ (Lnet/minecraft/world/entity/AnimationState;)Lnet/minecraft/world/entity/animal/sniffer/Sniffer; net/minecraft/world/entity/animal/sniffer/Sniffer/emitDiggingParticles (Lnet/minecraft/world/entity/AnimationState;)Lnet/minecraft/world/entity/animal/sniffer/Sniffer; +MD: net/minecraft/world/entity/animal/sniffer/Sniffer/m_27563_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/animal/Animal;)V net/minecraft/world/entity/animal/sniffer/Sniffer/spawnChildFromBreeding (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/animal/Animal;)V +MD: net/minecraft/world/entity/animal/sniffer/Sniffer/m_278650_ ()Z net/minecraft/world/entity/animal/sniffer/Sniffer/canSniff ()Z +MD: net/minecraft/world/entity/animal/sniffer/Sniffer/m_278663_ ()Z net/minecraft/world/entity/animal/sniffer/Sniffer/isTempted ()Z +MD: net/minecraft/world/entity/animal/sniffer/Sniffer/m_278726_ ()F net/minecraft/world/entity/animal/sniffer/Sniffer/getNameTagOffsetY ()F +MD: net/minecraft/world/entity/animal/sniffer/Sniffer/m_278765_ ()Lnet/minecraft/world/entity/animal/sniffer/Sniffer; net/minecraft/world/entity/animal/sniffer/Sniffer/onScentingStart ()Lnet/minecraft/world/entity/animal/sniffer/Sniffer; +MD: net/minecraft/world/entity/animal/sniffer/Sniffer/m_280317_ ()Z net/minecraft/world/entity/animal/sniffer/Sniffer/isSearching ()Z +MD: net/minecraft/world/entity/animal/sniffer/Sniffer/m_284177_ ()V net/minecraft/world/entity/animal/sniffer/Sniffer/onPathfindingStart ()V +MD: net/minecraft/world/entity/animal/sniffer/Sniffer/m_284345_ ()Lnet/minecraft/core/BlockPos; net/minecraft/world/entity/animal/sniffer/Sniffer/getHeadBlock ()Lnet/minecraft/core/BlockPos; +MD: net/minecraft/world/entity/animal/sniffer/Sniffer/m_284388_ ()Lnet/minecraft/world/phys/Vec3; net/minecraft/world/entity/animal/sniffer/Sniffer/getHeadPosition ()Lnet/minecraft/world/phys/Vec3; +MD: net/minecraft/world/entity/animal/sniffer/Sniffer/m_284461_ ()V net/minecraft/world/entity/animal/sniffer/Sniffer/onPathfindingDone ()V +MD: net/minecraft/world/entity/animal/sniffer/Sniffer/m_289142_ (Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/entity/animal/sniffer/Sniffer/lambda$calculateDigPosition$1 (Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/entity/animal/sniffer/Sniffer/m_289143_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/GlobalPos;)Z net/minecraft/world/entity/animal/sniffer/Sniffer/lambda$canDig$2 (Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/GlobalPos;)Z +MD: net/minecraft/world/entity/animal/sniffer/Sniffer/m_5490_ ()Lnet/minecraft/world/entity/ai/Brain$Provider; net/minecraft/world/entity/animal/sniffer/Sniffer/brainProvider ()Lnet/minecraft/world/entity/ai/Brain$Provider; +MD: net/minecraft/world/entity/animal/sniffer/Sniffer/m_5592_ ()Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/animal/sniffer/Sniffer/getDeathSound ()Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/animal/sniffer/Sniffer/m_6048_ ()D net/minecraft/world/entity/animal/sniffer/Sniffer/getPassengersRidingOffset ()D +MD: net/minecraft/world/entity/animal/sniffer/Sniffer/m_6071_ (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;)Lnet/minecraft/world/InteractionResult; net/minecraft/world/entity/animal/sniffer/Sniffer/mobInteract (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;)Lnet/minecraft/world/InteractionResult; +MD: net/minecraft/world/entity/animal/sniffer/Sniffer/m_6135_ ()V net/minecraft/world/entity/animal/sniffer/Sniffer/jumpFromGround ()V +MD: net/minecraft/world/entity/animal/sniffer/Sniffer/m_6274_ ()Lnet/minecraft/world/entity/ai/Brain; net/minecraft/world/entity/animal/sniffer/Sniffer/getBrain ()Lnet/minecraft/world/entity/ai/Brain; +MD: net/minecraft/world/entity/animal/sniffer/Sniffer/m_6431_ (Lnet/minecraft/world/entity/Pose;Lnet/minecraft/world/entity/EntityDimensions;)F net/minecraft/world/entity/animal/sniffer/Sniffer/getStandingEyeHeight (Lnet/minecraft/world/entity/Pose;Lnet/minecraft/world/entity/EntityDimensions;)F +MD: net/minecraft/world/entity/animal/sniffer/Sniffer/m_6667_ (Lnet/minecraft/world/damagesource/DamageSource;)V net/minecraft/world/entity/animal/sniffer/Sniffer/die (Lnet/minecraft/world/damagesource/DamageSource;)V +MD: net/minecraft/world/entity/animal/sniffer/Sniffer/m_6863_ (Z)V net/minecraft/world/entity/animal/sniffer/Sniffer/setBaby (Z)V +MD: net/minecraft/world/entity/animal/sniffer/Sniffer/m_6898_ (Lnet/minecraft/world/item/ItemStack;)Z net/minecraft/world/entity/animal/sniffer/Sniffer/isFood (Lnet/minecraft/world/item/ItemStack;)Z +MD: net/minecraft/world/entity/animal/sniffer/Sniffer/m_6921_ ()Lnet/minecraft/world/phys/AABB; net/minecraft/world/entity/animal/sniffer/Sniffer/getBoundingBoxForCulling ()Lnet/minecraft/world/phys/AABB; +MD: net/minecraft/world/entity/animal/sniffer/Sniffer/m_6972_ (Lnet/minecraft/world/entity/Pose;)Lnet/minecraft/world/entity/EntityDimensions; net/minecraft/world/entity/animal/sniffer/Sniffer/getDimensions (Lnet/minecraft/world/entity/Pose;)Lnet/minecraft/world/entity/EntityDimensions; +MD: net/minecraft/world/entity/animal/sniffer/Sniffer/m_7350_ (Lnet/minecraft/network/syncher/EntityDataAccessor;)V net/minecraft/world/entity/animal/sniffer/Sniffer/onSyncedDataUpdated (Lnet/minecraft/network/syncher/EntityDataAccessor;)V +MD: net/minecraft/world/entity/animal/sniffer/Sniffer/m_7355_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V net/minecraft/world/entity/animal/sniffer/Sniffer/playStepSound (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V +MD: net/minecraft/world/entity/animal/sniffer/Sniffer/m_7515_ ()Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/animal/sniffer/Sniffer/getAmbientSound ()Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/animal/sniffer/Sniffer/m_7848_ (Lnet/minecraft/world/entity/animal/Animal;)Z net/minecraft/world/entity/animal/sniffer/Sniffer/canMate (Lnet/minecraft/world/entity/animal/Animal;)Z +MD: net/minecraft/world/entity/animal/sniffer/Sniffer/m_7866_ (Lnet/minecraft/world/item/ItemStack;)Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/animal/sniffer/Sniffer/getEatingSound (Lnet/minecraft/world/item/ItemStack;)Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/animal/sniffer/Sniffer/m_7975_ (Lnet/minecraft/world/damagesource/DamageSource;)Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/animal/sniffer/Sniffer/getHurtSound (Lnet/minecraft/world/damagesource/DamageSource;)Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/animal/sniffer/Sniffer/m_8024_ ()V net/minecraft/world/entity/animal/sniffer/Sniffer/customServerAiStep ()V +MD: net/minecraft/world/entity/animal/sniffer/Sniffer/m_8025_ ()V net/minecraft/world/entity/animal/sniffer/Sniffer/sendDebugPackets ()V +MD: net/minecraft/world/entity/animal/sniffer/Sniffer/m_8075_ (Lcom/mojang/serialization/Dynamic;)Lnet/minecraft/world/entity/ai/Brain; net/minecraft/world/entity/animal/sniffer/Sniffer/makeBrain (Lcom/mojang/serialization/Dynamic;)Lnet/minecraft/world/entity/ai/Brain; +MD: net/minecraft/world/entity/animal/sniffer/Sniffer/m_8085_ ()I net/minecraft/world/entity/animal/sniffer/Sniffer/getMaxHeadYRot ()I +MD: net/minecraft/world/entity/animal/sniffer/Sniffer/m_8119_ ()V net/minecraft/world/entity/animal/sniffer/Sniffer/tick ()V +MD: net/minecraft/world/entity/animal/sniffer/Sniffer$1/ ()V net/minecraft/world/entity/animal/sniffer/Sniffer$1/ ()V +MD: net/minecraft/world/entity/animal/sniffer/Sniffer$State/ ()V net/minecraft/world/entity/animal/sniffer/Sniffer$State/ ()V +MD: net/minecraft/world/entity/animal/sniffer/Sniffer$State/ (Ljava/lang/String;I)V net/minecraft/world/entity/animal/sniffer/Sniffer$State/ (Ljava/lang/String;I)V +MD: net/minecraft/world/entity/animal/sniffer/Sniffer$State/m_271975_ ()[Lnet/minecraft/world/entity/animal/sniffer/Sniffer$State; net/minecraft/world/entity/animal/sniffer/Sniffer$State/$values ()[Lnet/minecraft/world/entity/animal/sniffer/Sniffer$State; +MD: net/minecraft/world/entity/animal/sniffer/Sniffer$State/valueOf (Ljava/lang/String;)Lnet/minecraft/world/entity/animal/sniffer/Sniffer$State; net/minecraft/world/entity/animal/sniffer/Sniffer$State/valueOf (Ljava/lang/String;)Lnet/minecraft/world/entity/animal/sniffer/Sniffer$State; +MD: net/minecraft/world/entity/animal/sniffer/Sniffer$State/values ()[Lnet/minecraft/world/entity/animal/sniffer/Sniffer$State; net/minecraft/world/entity/animal/sniffer/Sniffer$State/values ()[Lnet/minecraft/world/entity/animal/sniffer/Sniffer$State; +MD: net/minecraft/world/entity/animal/sniffer/SnifferAi/ ()V net/minecraft/world/entity/animal/sniffer/SnifferAi/ ()V +MD: net/minecraft/world/entity/animal/sniffer/SnifferAi/ ()V net/minecraft/world/entity/animal/sniffer/SnifferAi/ ()V +MD: net/minecraft/world/entity/animal/sniffer/SnifferAi/m_271706_ (Lnet/minecraft/world/entity/animal/sniffer/Sniffer;)V net/minecraft/world/entity/animal/sniffer/SnifferAi/updateActivity (Lnet/minecraft/world/entity/animal/sniffer/Sniffer;)V +MD: net/minecraft/world/entity/animal/sniffer/SnifferAi/m_271758_ (Lnet/minecraft/world/entity/ai/Brain;)V net/minecraft/world/entity/animal/sniffer/SnifferAi/initSniffingActivity (Lnet/minecraft/world/entity/ai/Brain;)V +MD: net/minecraft/world/entity/animal/sniffer/SnifferAi/m_272204_ (Lnet/minecraft/world/entity/ai/Brain;)V net/minecraft/world/entity/animal/sniffer/SnifferAi/initCoreActivity (Lnet/minecraft/world/entity/ai/Brain;)V +MD: net/minecraft/world/entity/animal/sniffer/SnifferAi/m_272207_ (Lnet/minecraft/world/entity/ai/Brain;)Lnet/minecraft/world/entity/ai/Brain; net/minecraft/world/entity/animal/sniffer/SnifferAi/makeBrain (Lnet/minecraft/world/entity/ai/Brain;)Lnet/minecraft/world/entity/ai/Brain; +MD: net/minecraft/world/entity/animal/sniffer/SnifferAi/m_272250_ (Lnet/minecraft/world/entity/ai/Brain;)V net/minecraft/world/entity/animal/sniffer/SnifferAi/initIdleActivity (Lnet/minecraft/world/entity/ai/Brain;)V +MD: net/minecraft/world/entity/animal/sniffer/SnifferAi/m_272260_ (Lnet/minecraft/world/entity/ai/Brain;)V net/minecraft/world/entity/animal/sniffer/SnifferAi/initDigActivity (Lnet/minecraft/world/entity/ai/Brain;)V +MD: net/minecraft/world/entity/animal/sniffer/SnifferAi/m_278737_ ()Lnet/minecraft/world/item/crafting/Ingredient; net/minecraft/world/entity/animal/sniffer/SnifferAi/getTemptations ()Lnet/minecraft/world/item/crafting/Ingredient; +MD: net/minecraft/world/entity/animal/sniffer/SnifferAi/m_278802_ (Lnet/minecraft/world/entity/LivingEntity;)Ljava/lang/Float; net/minecraft/world/entity/animal/sniffer/SnifferAi/lambda$initIdleActivity$0 (Lnet/minecraft/world/entity/LivingEntity;)Ljava/lang/Float; +MD: net/minecraft/world/entity/animal/sniffer/SnifferAi/m_278810_ (Lnet/minecraft/world/entity/animal/sniffer/Sniffer;)Lnet/minecraft/world/entity/animal/sniffer/Sniffer; net/minecraft/world/entity/animal/sniffer/SnifferAi/resetSniffing (Lnet/minecraft/world/entity/animal/sniffer/Sniffer;)Lnet/minecraft/world/entity/animal/sniffer/Sniffer; +MD: net/minecraft/world/entity/animal/sniffer/SnifferAi/m_288155_ (Lnet/minecraft/world/entity/LivingEntity;)Ljava/lang/Double; net/minecraft/world/entity/animal/sniffer/SnifferAi/lambda$initIdleActivity$1 (Lnet/minecraft/world/entity/LivingEntity;)Ljava/lang/Double; +MD: net/minecraft/world/entity/animal/sniffer/SnifferAi$1/ (F)V net/minecraft/world/entity/animal/sniffer/SnifferAi$1/ (F)V +MD: net/minecraft/world/entity/animal/sniffer/SnifferAi$1/m_6735_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/PathfinderMob;J)V net/minecraft/world/entity/animal/sniffer/SnifferAi$1/start (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/PathfinderMob;J)V +MD: net/minecraft/world/entity/animal/sniffer/SnifferAi$1/m_6735_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)V net/minecraft/world/entity/animal/sniffer/SnifferAi$1/start (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)V +MD: net/minecraft/world/entity/animal/sniffer/SnifferAi$2/ (Lnet/minecraft/world/entity/EntityType;F)V net/minecraft/world/entity/animal/sniffer/SnifferAi$2/ (Lnet/minecraft/world/entity/EntityType;F)V +MD: net/minecraft/world/entity/animal/sniffer/SnifferAi$2/m_6735_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/animal/Animal;J)V net/minecraft/world/entity/animal/sniffer/SnifferAi$2/start (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/animal/Animal;J)V +MD: net/minecraft/world/entity/animal/sniffer/SnifferAi$2/m_6735_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)V net/minecraft/world/entity/animal/sniffer/SnifferAi$2/start (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)V +MD: net/minecraft/world/entity/animal/sniffer/SnifferAi$3/ (Ljava/util/function/Function;Ljava/util/function/Function;)V net/minecraft/world/entity/animal/sniffer/SnifferAi$3/ (Ljava/util/function/Function;Ljava/util/function/Function;)V +MD: net/minecraft/world/entity/animal/sniffer/SnifferAi$3/m_6735_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/PathfinderMob;J)V net/minecraft/world/entity/animal/sniffer/SnifferAi$3/start (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/PathfinderMob;J)V +MD: net/minecraft/world/entity/animal/sniffer/SnifferAi$3/m_6735_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)V net/minecraft/world/entity/animal/sniffer/SnifferAi$3/start (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)V +MD: net/minecraft/world/entity/animal/sniffer/SnifferAi$Digging/ (II)V net/minecraft/world/entity/animal/sniffer/SnifferAi$Digging/ (II)V +MD: net/minecraft/world/entity/animal/sniffer/SnifferAi$Digging/m_6114_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;)Z net/minecraft/world/entity/animal/sniffer/SnifferAi$Digging/checkExtraStartConditions (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;)Z +MD: net/minecraft/world/entity/animal/sniffer/SnifferAi$Digging/m_6114_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/animal/sniffer/Sniffer;)Z net/minecraft/world/entity/animal/sniffer/SnifferAi$Digging/checkExtraStartConditions (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/animal/sniffer/Sniffer;)Z +MD: net/minecraft/world/entity/animal/sniffer/SnifferAi$Digging/m_6732_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)V net/minecraft/world/entity/animal/sniffer/SnifferAi$Digging/stop (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)V +MD: net/minecraft/world/entity/animal/sniffer/SnifferAi$Digging/m_6732_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/animal/sniffer/Sniffer;J)V net/minecraft/world/entity/animal/sniffer/SnifferAi$Digging/stop (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/animal/sniffer/Sniffer;J)V +MD: net/minecraft/world/entity/animal/sniffer/SnifferAi$Digging/m_6735_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)V net/minecraft/world/entity/animal/sniffer/SnifferAi$Digging/start (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)V +MD: net/minecraft/world/entity/animal/sniffer/SnifferAi$Digging/m_6735_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/animal/sniffer/Sniffer;J)V net/minecraft/world/entity/animal/sniffer/SnifferAi$Digging/start (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/animal/sniffer/Sniffer;J)V +MD: net/minecraft/world/entity/animal/sniffer/SnifferAi$Digging/m_6737_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/animal/sniffer/Sniffer;J)Z net/minecraft/world/entity/animal/sniffer/SnifferAi$Digging/canStillUse (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/animal/sniffer/Sniffer;J)Z +MD: net/minecraft/world/entity/animal/sniffer/SnifferAi$Digging/m_6737_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)Z net/minecraft/world/entity/animal/sniffer/SnifferAi$Digging/canStillUse (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)Z +MD: net/minecraft/world/entity/animal/sniffer/SnifferAi$FeelingHappy/ (II)V net/minecraft/world/entity/animal/sniffer/SnifferAi$FeelingHappy/ (II)V +MD: net/minecraft/world/entity/animal/sniffer/SnifferAi$FeelingHappy/m_6732_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)V net/minecraft/world/entity/animal/sniffer/SnifferAi$FeelingHappy/stop (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)V +MD: net/minecraft/world/entity/animal/sniffer/SnifferAi$FeelingHappy/m_6732_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/animal/sniffer/Sniffer;J)V net/minecraft/world/entity/animal/sniffer/SnifferAi$FeelingHappy/stop (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/animal/sniffer/Sniffer;J)V +MD: net/minecraft/world/entity/animal/sniffer/SnifferAi$FeelingHappy/m_6735_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)V net/minecraft/world/entity/animal/sniffer/SnifferAi$FeelingHappy/start (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)V +MD: net/minecraft/world/entity/animal/sniffer/SnifferAi$FeelingHappy/m_6735_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/animal/sniffer/Sniffer;J)V net/minecraft/world/entity/animal/sniffer/SnifferAi$FeelingHappy/start (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/animal/sniffer/Sniffer;J)V +MD: net/minecraft/world/entity/animal/sniffer/SnifferAi$FeelingHappy/m_6737_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/animal/sniffer/Sniffer;J)Z net/minecraft/world/entity/animal/sniffer/SnifferAi$FeelingHappy/canStillUse (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/animal/sniffer/Sniffer;J)Z +MD: net/minecraft/world/entity/animal/sniffer/SnifferAi$FeelingHappy/m_6737_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)Z net/minecraft/world/entity/animal/sniffer/SnifferAi$FeelingHappy/canStillUse (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)Z +MD: net/minecraft/world/entity/animal/sniffer/SnifferAi$FinishedDigging/ (I)V net/minecraft/world/entity/animal/sniffer/SnifferAi$FinishedDigging/ (I)V +MD: net/minecraft/world/entity/animal/sniffer/SnifferAi$FinishedDigging/m_6114_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;)Z net/minecraft/world/entity/animal/sniffer/SnifferAi$FinishedDigging/checkExtraStartConditions (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;)Z +MD: net/minecraft/world/entity/animal/sniffer/SnifferAi$FinishedDigging/m_6114_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/animal/sniffer/Sniffer;)Z net/minecraft/world/entity/animal/sniffer/SnifferAi$FinishedDigging/checkExtraStartConditions (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/animal/sniffer/Sniffer;)Z +MD: net/minecraft/world/entity/animal/sniffer/SnifferAi$FinishedDigging/m_6732_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)V net/minecraft/world/entity/animal/sniffer/SnifferAi$FinishedDigging/stop (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)V +MD: net/minecraft/world/entity/animal/sniffer/SnifferAi$FinishedDigging/m_6732_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/animal/sniffer/Sniffer;J)V net/minecraft/world/entity/animal/sniffer/SnifferAi$FinishedDigging/stop (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/animal/sniffer/Sniffer;J)V +MD: net/minecraft/world/entity/animal/sniffer/SnifferAi$FinishedDigging/m_6735_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)V net/minecraft/world/entity/animal/sniffer/SnifferAi$FinishedDigging/start (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)V +MD: net/minecraft/world/entity/animal/sniffer/SnifferAi$FinishedDigging/m_6735_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/animal/sniffer/Sniffer;J)V net/minecraft/world/entity/animal/sniffer/SnifferAi$FinishedDigging/start (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/animal/sniffer/Sniffer;J)V +MD: net/minecraft/world/entity/animal/sniffer/SnifferAi$FinishedDigging/m_6737_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/animal/sniffer/Sniffer;J)Z net/minecraft/world/entity/animal/sniffer/SnifferAi$FinishedDigging/canStillUse (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/animal/sniffer/Sniffer;J)Z +MD: net/minecraft/world/entity/animal/sniffer/SnifferAi$FinishedDigging/m_6737_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)Z net/minecraft/world/entity/animal/sniffer/SnifferAi$FinishedDigging/canStillUse (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)Z +MD: net/minecraft/world/entity/animal/sniffer/SnifferAi$Scenting/ (II)V net/minecraft/world/entity/animal/sniffer/SnifferAi$Scenting/ (II)V +MD: net/minecraft/world/entity/animal/sniffer/SnifferAi$Scenting/m_6114_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;)Z net/minecraft/world/entity/animal/sniffer/SnifferAi$Scenting/checkExtraStartConditions (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;)Z +MD: net/minecraft/world/entity/animal/sniffer/SnifferAi$Scenting/m_6114_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/animal/sniffer/Sniffer;)Z net/minecraft/world/entity/animal/sniffer/SnifferAi$Scenting/checkExtraStartConditions (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/animal/sniffer/Sniffer;)Z +MD: net/minecraft/world/entity/animal/sniffer/SnifferAi$Scenting/m_6732_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)V net/minecraft/world/entity/animal/sniffer/SnifferAi$Scenting/stop (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)V +MD: net/minecraft/world/entity/animal/sniffer/SnifferAi$Scenting/m_6732_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/animal/sniffer/Sniffer;J)V net/minecraft/world/entity/animal/sniffer/SnifferAi$Scenting/stop (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/animal/sniffer/Sniffer;J)V +MD: net/minecraft/world/entity/animal/sniffer/SnifferAi$Scenting/m_6735_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)V net/minecraft/world/entity/animal/sniffer/SnifferAi$Scenting/start (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)V +MD: net/minecraft/world/entity/animal/sniffer/SnifferAi$Scenting/m_6735_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/animal/sniffer/Sniffer;J)V net/minecraft/world/entity/animal/sniffer/SnifferAi$Scenting/start (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/animal/sniffer/Sniffer;J)V +MD: net/minecraft/world/entity/animal/sniffer/SnifferAi$Scenting/m_6737_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/animal/sniffer/Sniffer;J)Z net/minecraft/world/entity/animal/sniffer/SnifferAi$Scenting/canStillUse (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/animal/sniffer/Sniffer;J)Z +MD: net/minecraft/world/entity/animal/sniffer/SnifferAi$Scenting/m_6737_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)Z net/minecraft/world/entity/animal/sniffer/SnifferAi$Scenting/canStillUse (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)Z +MD: net/minecraft/world/entity/animal/sniffer/SnifferAi$Searching/ ()V net/minecraft/world/entity/animal/sniffer/SnifferAi$Searching/ ()V +MD: net/minecraft/world/entity/animal/sniffer/SnifferAi$Searching/m_6114_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;)Z net/minecraft/world/entity/animal/sniffer/SnifferAi$Searching/checkExtraStartConditions (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;)Z +MD: net/minecraft/world/entity/animal/sniffer/SnifferAi$Searching/m_6114_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/animal/sniffer/Sniffer;)Z net/minecraft/world/entity/animal/sniffer/SnifferAi$Searching/checkExtraStartConditions (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/animal/sniffer/Sniffer;)Z +MD: net/minecraft/world/entity/animal/sniffer/SnifferAi$Searching/m_6732_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)V net/minecraft/world/entity/animal/sniffer/SnifferAi$Searching/stop (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)V +MD: net/minecraft/world/entity/animal/sniffer/SnifferAi$Searching/m_6732_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/animal/sniffer/Sniffer;J)V net/minecraft/world/entity/animal/sniffer/SnifferAi$Searching/stop (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/animal/sniffer/Sniffer;J)V +MD: net/minecraft/world/entity/animal/sniffer/SnifferAi$Searching/m_6735_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)V net/minecraft/world/entity/animal/sniffer/SnifferAi$Searching/start (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)V +MD: net/minecraft/world/entity/animal/sniffer/SnifferAi$Searching/m_6735_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/animal/sniffer/Sniffer;J)V net/minecraft/world/entity/animal/sniffer/SnifferAi$Searching/start (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/animal/sniffer/Sniffer;J)V +MD: net/minecraft/world/entity/animal/sniffer/SnifferAi$Searching/m_6737_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/animal/sniffer/Sniffer;J)Z net/minecraft/world/entity/animal/sniffer/SnifferAi$Searching/canStillUse (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/animal/sniffer/Sniffer;J)Z +MD: net/minecraft/world/entity/animal/sniffer/SnifferAi$Searching/m_6737_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)Z net/minecraft/world/entity/animal/sniffer/SnifferAi$Searching/canStillUse (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)Z +MD: net/minecraft/world/entity/animal/sniffer/SnifferAi$Sniffing/ (II)V net/minecraft/world/entity/animal/sniffer/SnifferAi$Sniffing/ (II)V +MD: net/minecraft/world/entity/animal/sniffer/SnifferAi$Sniffing/m_272259_ (Lnet/minecraft/world/entity/animal/sniffer/Sniffer;Lnet/minecraft/core/BlockPos;)V net/minecraft/world/entity/animal/sniffer/SnifferAi$Sniffing/lambda$stop$0 (Lnet/minecraft/world/entity/animal/sniffer/Sniffer;Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/world/entity/animal/sniffer/SnifferAi$Sniffing/m_6114_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;)Z net/minecraft/world/entity/animal/sniffer/SnifferAi$Sniffing/checkExtraStartConditions (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;)Z +MD: net/minecraft/world/entity/animal/sniffer/SnifferAi$Sniffing/m_6114_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/animal/sniffer/Sniffer;)Z net/minecraft/world/entity/animal/sniffer/SnifferAi$Sniffing/checkExtraStartConditions (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/animal/sniffer/Sniffer;)Z +MD: net/minecraft/world/entity/animal/sniffer/SnifferAi$Sniffing/m_6732_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)V net/minecraft/world/entity/animal/sniffer/SnifferAi$Sniffing/stop (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)V +MD: net/minecraft/world/entity/animal/sniffer/SnifferAi$Sniffing/m_6732_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/animal/sniffer/Sniffer;J)V net/minecraft/world/entity/animal/sniffer/SnifferAi$Sniffing/stop (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/animal/sniffer/Sniffer;J)V +MD: net/minecraft/world/entity/animal/sniffer/SnifferAi$Sniffing/m_6735_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)V net/minecraft/world/entity/animal/sniffer/SnifferAi$Sniffing/start (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)V +MD: net/minecraft/world/entity/animal/sniffer/SnifferAi$Sniffing/m_6735_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/animal/sniffer/Sniffer;J)V net/minecraft/world/entity/animal/sniffer/SnifferAi$Sniffing/start (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/animal/sniffer/Sniffer;J)V +MD: net/minecraft/world/entity/animal/sniffer/SnifferAi$Sniffing/m_6737_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/animal/sniffer/Sniffer;J)Z net/minecraft/world/entity/animal/sniffer/SnifferAi$Sniffing/canStillUse (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/animal/sniffer/Sniffer;J)Z +MD: net/minecraft/world/entity/animal/sniffer/SnifferAi$Sniffing/m_6737_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)Z net/minecraft/world/entity/animal/sniffer/SnifferAi$Sniffing/canStillUse (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)Z +MD: net/minecraft/world/entity/boss/EnderDragonPart/ (Lnet/minecraft/world/entity/boss/enderdragon/EnderDragon;Ljava/lang/String;FF)V net/minecraft/world/entity/boss/EnderDragonPart/ (Lnet/minecraft/world/entity/boss/enderdragon/EnderDragon;Ljava/lang/String;FF)V +MD: net/minecraft/world/entity/boss/EnderDragonPart/m_142340_ ()Lnet/minecraft/world/item/ItemStack; net/minecraft/world/entity/boss/EnderDragonPart/getPickResult ()Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/entity/boss/EnderDragonPart/m_142391_ ()Z net/minecraft/world/entity/boss/EnderDragonPart/shouldBeSaved ()Z +MD: net/minecraft/world/entity/boss/EnderDragonPart/m_5654_ ()Lnet/minecraft/network/protocol/Packet; net/minecraft/world/entity/boss/EnderDragonPart/getAddEntityPacket ()Lnet/minecraft/network/protocol/Packet; +MD: net/minecraft/world/entity/boss/EnderDragonPart/m_6087_ ()Z net/minecraft/world/entity/boss/EnderDragonPart/isPickable ()Z +MD: net/minecraft/world/entity/boss/EnderDragonPart/m_6469_ (Lnet/minecraft/world/damagesource/DamageSource;F)Z net/minecraft/world/entity/boss/EnderDragonPart/hurt (Lnet/minecraft/world/damagesource/DamageSource;F)Z +MD: net/minecraft/world/entity/boss/EnderDragonPart/m_6972_ (Lnet/minecraft/world/entity/Pose;)Lnet/minecraft/world/entity/EntityDimensions; net/minecraft/world/entity/boss/EnderDragonPart/getDimensions (Lnet/minecraft/world/entity/Pose;)Lnet/minecraft/world/entity/EntityDimensions; +MD: net/minecraft/world/entity/boss/EnderDragonPart/m_7306_ (Lnet/minecraft/world/entity/Entity;)Z net/minecraft/world/entity/boss/EnderDragonPart/is (Lnet/minecraft/world/entity/Entity;)Z +MD: net/minecraft/world/entity/boss/EnderDragonPart/m_7378_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/entity/boss/EnderDragonPart/readAdditionalSaveData (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/entity/boss/EnderDragonPart/m_7380_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/entity/boss/EnderDragonPart/addAdditionalSaveData (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/entity/boss/EnderDragonPart/m_8097_ ()V net/minecraft/world/entity/boss/EnderDragonPart/defineSynchedData ()V +MD: net/minecraft/world/entity/boss/enderdragon/EndCrystal/ ()V net/minecraft/world/entity/boss/enderdragon/EndCrystal/ ()V +MD: net/minecraft/world/entity/boss/enderdragon/EndCrystal/ (Lnet/minecraft/world/level/Level;DDD)V net/minecraft/world/entity/boss/enderdragon/EndCrystal/ (Lnet/minecraft/world/level/Level;DDD)V +MD: net/minecraft/world/entity/boss/enderdragon/EndCrystal/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V net/minecraft/world/entity/boss/enderdragon/EndCrystal/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V +MD: net/minecraft/world/entity/boss/enderdragon/EndCrystal/m_142319_ ()Lnet/minecraft/world/entity/Entity$MovementEmission; net/minecraft/world/entity/boss/enderdragon/EndCrystal/getMovementEmission ()Lnet/minecraft/world/entity/Entity$MovementEmission; +MD: net/minecraft/world/entity/boss/enderdragon/EndCrystal/m_142340_ ()Lnet/minecraft/world/item/ItemStack; net/minecraft/world/entity/boss/enderdragon/EndCrystal/getPickResult ()Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/entity/boss/enderdragon/EndCrystal/m_31047_ (Lnet/minecraft/world/damagesource/DamageSource;)V net/minecraft/world/entity/boss/enderdragon/EndCrystal/onDestroyedBy (Lnet/minecraft/world/damagesource/DamageSource;)V +MD: net/minecraft/world/entity/boss/enderdragon/EndCrystal/m_31052_ (Lnet/minecraft/core/BlockPos;)V net/minecraft/world/entity/boss/enderdragon/EndCrystal/setBeamTarget (Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/world/entity/boss/enderdragon/EndCrystal/m_31056_ (Z)V net/minecraft/world/entity/boss/enderdragon/EndCrystal/setShowBottom (Z)V +MD: net/minecraft/world/entity/boss/enderdragon/EndCrystal/m_31064_ ()Lnet/minecraft/core/BlockPos; net/minecraft/world/entity/boss/enderdragon/EndCrystal/getBeamTarget ()Lnet/minecraft/core/BlockPos; +MD: net/minecraft/world/entity/boss/enderdragon/EndCrystal/m_31065_ ()Z net/minecraft/world/entity/boss/enderdragon/EndCrystal/showsBottom ()Z +MD: net/minecraft/world/entity/boss/enderdragon/EndCrystal/m_6074_ ()V net/minecraft/world/entity/boss/enderdragon/EndCrystal/kill ()V +MD: net/minecraft/world/entity/boss/enderdragon/EndCrystal/m_6087_ ()Z net/minecraft/world/entity/boss/enderdragon/EndCrystal/isPickable ()Z +MD: net/minecraft/world/entity/boss/enderdragon/EndCrystal/m_6469_ (Lnet/minecraft/world/damagesource/DamageSource;F)Z net/minecraft/world/entity/boss/enderdragon/EndCrystal/hurt (Lnet/minecraft/world/damagesource/DamageSource;F)Z +MD: net/minecraft/world/entity/boss/enderdragon/EndCrystal/m_6783_ (D)Z net/minecraft/world/entity/boss/enderdragon/EndCrystal/shouldRenderAtSqrDistance (D)Z +MD: net/minecraft/world/entity/boss/enderdragon/EndCrystal/m_7378_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/entity/boss/enderdragon/EndCrystal/readAdditionalSaveData (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/entity/boss/enderdragon/EndCrystal/m_7380_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/entity/boss/enderdragon/EndCrystal/addAdditionalSaveData (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/entity/boss/enderdragon/EndCrystal/m_8097_ ()V net/minecraft/world/entity/boss/enderdragon/EndCrystal/defineSynchedData ()V +MD: net/minecraft/world/entity/boss/enderdragon/EndCrystal/m_8119_ ()V net/minecraft/world/entity/boss/enderdragon/EndCrystal/tick ()V +MD: net/minecraft/world/entity/boss/enderdragon/EnderDragon/ ()V net/minecraft/world/entity/boss/enderdragon/EnderDragon/ ()V +MD: net/minecraft/world/entity/boss/enderdragon/EnderDragon/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V net/minecraft/world/entity/boss/enderdragon/EnderDragon/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V +MD: net/minecraft/world/entity/boss/enderdragon/EnderDragon/m_141965_ (Lnet/minecraft/network/protocol/game/ClientboundAddEntityPacket;)V net/minecraft/world/entity/boss/enderdragon/EnderDragon/recreateFromPacket (Lnet/minecraft/network/protocol/game/ClientboundAddEntityPacket;)V +MD: net/minecraft/world/entity/boss/enderdragon/EnderDragon/m_142039_ ()Z net/minecraft/world/entity/boss/enderdragon/EnderDragon/isFlapping ()Z +MD: net/minecraft/world/entity/boss/enderdragon/EnderDragon/m_142043_ ()V net/minecraft/world/entity/boss/enderdragon/EnderDragon/onFlap ()V +MD: net/minecraft/world/entity/boss/enderdragon/EnderDragon/m_147207_ (Lnet/minecraft/world/effect/MobEffectInstance;Lnet/minecraft/world/entity/Entity;)Z net/minecraft/world/entity/boss/enderdragon/EnderDragon/addEffect (Lnet/minecraft/world/effect/MobEffectInstance;Lnet/minecraft/world/entity/Entity;)Z +MD: net/minecraft/world/entity/boss/enderdragon/EnderDragon/m_287165_ ()Lnet/minecraft/core/BlockPos; net/minecraft/world/entity/boss/enderdragon/EnderDragon/getFightOrigin ()Lnet/minecraft/core/BlockPos; +MD: net/minecraft/world/entity/boss/enderdragon/EnderDragon/m_287231_ (Lnet/minecraft/world/level/dimension/end/EndDragonFight;)V net/minecraft/world/entity/boss/enderdragon/EnderDragon/setDragonFight (Lnet/minecraft/world/level/dimension/end/EndDragonFight;)V +MD: net/minecraft/world/entity/boss/enderdragon/EnderDragon/m_287266_ (Lnet/minecraft/core/BlockPos;)V net/minecraft/world/entity/boss/enderdragon/EnderDragon/setFightOrigin (Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/world/entity/boss/enderdragon/EnderDragon/m_31101_ (IF)[D net/minecraft/world/entity/boss/enderdragon/EnderDragon/getLatencyPos (IF)[D +MD: net/minecraft/world/entity/boss/enderdragon/EnderDragon/m_31104_ (IILnet/minecraft/world/level/pathfinder/Node;)Lnet/minecraft/world/level/pathfinder/Path; net/minecraft/world/entity/boss/enderdragon/EnderDragon/findPath (IILnet/minecraft/world/level/pathfinder/Node;)Lnet/minecraft/world/level/pathfinder/Path; +MD: net/minecraft/world/entity/boss/enderdragon/EnderDragon/m_31108_ (I[D[D)F net/minecraft/world/entity/boss/enderdragon/EnderDragon/getHeadPartYOffset (I[D[D)F +MD: net/minecraft/world/entity/boss/enderdragon/EnderDragon/m_31115_ (Lnet/minecraft/world/entity/boss/EnderDragonPart;DDD)V net/minecraft/world/entity/boss/enderdragon/EnderDragon/tickPart (Lnet/minecraft/world/entity/boss/EnderDragonPart;DDD)V +MD: net/minecraft/world/entity/boss/enderdragon/EnderDragon/m_31120_ (Lnet/minecraft/world/entity/boss/EnderDragonPart;Lnet/minecraft/world/damagesource/DamageSource;F)Z net/minecraft/world/entity/boss/enderdragon/EnderDragon/hurt (Lnet/minecraft/world/entity/boss/EnderDragonPart;Lnet/minecraft/world/damagesource/DamageSource;F)Z +MD: net/minecraft/world/entity/boss/enderdragon/EnderDragon/m_31124_ (Lnet/minecraft/world/entity/boss/enderdragon/EndCrystal;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/damagesource/DamageSource;)V net/minecraft/world/entity/boss/enderdragon/EnderDragon/onCrystalDestroyed (Lnet/minecraft/world/entity/boss/enderdragon/EndCrystal;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/damagesource/DamageSource;)V +MD: net/minecraft/world/entity/boss/enderdragon/EnderDragon/m_31128_ (Lnet/minecraft/world/level/pathfinder/Node;Lnet/minecraft/world/level/pathfinder/Node;)Lnet/minecraft/world/level/pathfinder/Path; net/minecraft/world/entity/boss/enderdragon/EnderDragon/reconstructPath (Lnet/minecraft/world/level/pathfinder/Node;Lnet/minecraft/world/level/pathfinder/Node;)Lnet/minecraft/world/level/pathfinder/Path; +MD: net/minecraft/world/entity/boss/enderdragon/EnderDragon/m_31131_ (Ljava/util/List;)V net/minecraft/world/entity/boss/enderdragon/EnderDragon/knockBack (Ljava/util/List;)V +MD: net/minecraft/world/entity/boss/enderdragon/EnderDragon/m_31139_ (Lnet/minecraft/world/phys/AABB;)Z net/minecraft/world/entity/boss/enderdragon/EnderDragon/checkWalls (Lnet/minecraft/world/phys/AABB;)Z +MD: net/minecraft/world/entity/boss/enderdragon/EnderDragon/m_31141_ (Ljava/util/List;)V net/minecraft/world/entity/boss/enderdragon/EnderDragon/hurt (Ljava/util/List;)V +MD: net/minecraft/world/entity/boss/enderdragon/EnderDragon/m_31155_ ()I net/minecraft/world/entity/boss/enderdragon/EnderDragon/findClosestNode ()I +MD: net/minecraft/world/entity/boss/enderdragon/EnderDragon/m_31156_ ()[Lnet/minecraft/world/entity/boss/EnderDragonPart; net/minecraft/world/entity/boss/enderdragon/EnderDragon/getSubEntities ()[Lnet/minecraft/world/entity/boss/EnderDragonPart; +MD: net/minecraft/world/entity/boss/enderdragon/EnderDragon/m_31157_ ()Lnet/minecraft/world/entity/boss/enderdragon/phases/EnderDragonPhaseManager; net/minecraft/world/entity/boss/enderdragon/EnderDragon/getPhaseManager ()Lnet/minecraft/world/entity/boss/enderdragon/phases/EnderDragonPhaseManager; +MD: net/minecraft/world/entity/boss/enderdragon/EnderDragon/m_31158_ ()Lnet/minecraft/world/level/dimension/end/EndDragonFight; net/minecraft/world/entity/boss/enderdragon/EnderDragon/getDragonFight ()Lnet/minecraft/world/level/dimension/end/EndDragonFight; +MD: net/minecraft/world/entity/boss/enderdragon/EnderDragon/m_31159_ ()F net/minecraft/world/entity/boss/enderdragon/EnderDragon/getHeadYOffset ()F +MD: net/minecraft/world/entity/boss/enderdragon/EnderDragon/m_31160_ ()V net/minecraft/world/entity/boss/enderdragon/EnderDragon/checkCrystals ()V +MD: net/minecraft/world/entity/boss/enderdragon/EnderDragon/m_31161_ (Lnet/minecraft/world/damagesource/DamageSource;F)Z net/minecraft/world/entity/boss/enderdragon/EnderDragon/reallyHurt (Lnet/minecraft/world/damagesource/DamageSource;F)Z +MD: net/minecraft/world/entity/boss/enderdragon/EnderDragon/m_31164_ (D)F net/minecraft/world/entity/boss/enderdragon/EnderDragon/rotWrap (D)F +MD: net/minecraft/world/entity/boss/enderdragon/EnderDragon/m_31167_ ()Lnet/minecraft/world/entity/ai/attributes/AttributeSupplier$Builder; net/minecraft/world/entity/boss/enderdragon/EnderDragon/createAttributes ()Lnet/minecraft/world/entity/ai/attributes/AttributeSupplier$Builder; +MD: net/minecraft/world/entity/boss/enderdragon/EnderDragon/m_31170_ (DDD)I net/minecraft/world/entity/boss/enderdragon/EnderDragon/findClosestNode (DDD)I +MD: net/minecraft/world/entity/boss/enderdragon/EnderDragon/m_31174_ (F)Lnet/minecraft/world/phys/Vec3; net/minecraft/world/entity/boss/enderdragon/EnderDragon/getHeadLookVector (F)Lnet/minecraft/world/phys/Vec3; +MD: net/minecraft/world/entity/boss/enderdragon/EnderDragon/m_5720_ ()Lnet/minecraft/sounds/SoundSource; net/minecraft/world/entity/boss/enderdragon/EnderDragon/getSoundSource ()Lnet/minecraft/sounds/SoundSource; +MD: net/minecraft/world/entity/boss/enderdragon/EnderDragon/m_6043_ ()V net/minecraft/world/entity/boss/enderdragon/EnderDragon/checkDespawn ()V +MD: net/minecraft/world/entity/boss/enderdragon/EnderDragon/m_6048_ ()D net/minecraft/world/entity/boss/enderdragon/EnderDragon/getPassengersRidingOffset ()D +MD: net/minecraft/world/entity/boss/enderdragon/EnderDragon/m_6072_ ()Z net/minecraft/world/entity/boss/enderdragon/EnderDragon/canChangeDimensions ()Z +MD: net/minecraft/world/entity/boss/enderdragon/EnderDragon/m_6074_ ()V net/minecraft/world/entity/boss/enderdragon/EnderDragon/kill ()V +MD: net/minecraft/world/entity/boss/enderdragon/EnderDragon/m_6087_ ()Z net/minecraft/world/entity/boss/enderdragon/EnderDragon/isPickable ()Z +MD: net/minecraft/world/entity/boss/enderdragon/EnderDragon/m_6121_ ()F net/minecraft/world/entity/boss/enderdragon/EnderDragon/getSoundVolume ()F +MD: net/minecraft/world/entity/boss/enderdragon/EnderDragon/m_6153_ ()V net/minecraft/world/entity/boss/enderdragon/EnderDragon/tickDeath ()V +MD: net/minecraft/world/entity/boss/enderdragon/EnderDragon/m_6469_ (Lnet/minecraft/world/damagesource/DamageSource;F)Z net/minecraft/world/entity/boss/enderdragon/EnderDragon/hurt (Lnet/minecraft/world/damagesource/DamageSource;F)Z +MD: net/minecraft/world/entity/boss/enderdragon/EnderDragon/m_6779_ (Lnet/minecraft/world/entity/LivingEntity;)Z net/minecraft/world/entity/boss/enderdragon/EnderDragon/canAttack (Lnet/minecraft/world/entity/LivingEntity;)Z +MD: net/minecraft/world/entity/boss/enderdragon/EnderDragon/m_7341_ (Lnet/minecraft/world/entity/Entity;)Z net/minecraft/world/entity/boss/enderdragon/EnderDragon/canRide (Lnet/minecraft/world/entity/Entity;)Z +MD: net/minecraft/world/entity/boss/enderdragon/EnderDragon/m_7350_ (Lnet/minecraft/network/syncher/EntityDataAccessor;)V net/minecraft/world/entity/boss/enderdragon/EnderDragon/onSyncedDataUpdated (Lnet/minecraft/network/syncher/EntityDataAccessor;)V +MD: net/minecraft/world/entity/boss/enderdragon/EnderDragon/m_7378_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/entity/boss/enderdragon/EnderDragon/readAdditionalSaveData (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/entity/boss/enderdragon/EnderDragon/m_7380_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/entity/boss/enderdragon/EnderDragon/addAdditionalSaveData (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/entity/boss/enderdragon/EnderDragon/m_7515_ ()Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/boss/enderdragon/EnderDragon/getAmbientSound ()Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/boss/enderdragon/EnderDragon/m_7975_ (Lnet/minecraft/world/damagesource/DamageSource;)Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/boss/enderdragon/EnderDragon/getHurtSound (Lnet/minecraft/world/damagesource/DamageSource;)Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/boss/enderdragon/EnderDragon/m_8097_ ()V net/minecraft/world/entity/boss/enderdragon/EnderDragon/defineSynchedData ()V +MD: net/minecraft/world/entity/boss/enderdragon/EnderDragon/m_8107_ ()V net/minecraft/world/entity/boss/enderdragon/EnderDragon/aiStep ()V +MD: net/minecraft/world/entity/boss/enderdragon/phases/AbstractDragonPhaseInstance/ (Lnet/minecraft/world/entity/boss/enderdragon/EnderDragon;)V net/minecraft/world/entity/boss/enderdragon/phases/AbstractDragonPhaseInstance/ (Lnet/minecraft/world/entity/boss/enderdragon/EnderDragon;)V +MD: net/minecraft/world/entity/boss/enderdragon/phases/AbstractDragonPhaseInstance/m_5535_ ()Lnet/minecraft/world/phys/Vec3; net/minecraft/world/entity/boss/enderdragon/phases/AbstractDragonPhaseInstance/getFlyTargetLocation ()Lnet/minecraft/world/phys/Vec3; +MD: net/minecraft/world/entity/boss/enderdragon/phases/AbstractDragonPhaseInstance/m_6989_ ()V net/minecraft/world/entity/boss/enderdragon/phases/AbstractDragonPhaseInstance/doServerTick ()V +MD: net/minecraft/world/entity/boss/enderdragon/phases/AbstractDragonPhaseInstance/m_6991_ ()V net/minecraft/world/entity/boss/enderdragon/phases/AbstractDragonPhaseInstance/doClientTick ()V +MD: net/minecraft/world/entity/boss/enderdragon/phases/AbstractDragonPhaseInstance/m_7072_ ()F net/minecraft/world/entity/boss/enderdragon/phases/AbstractDragonPhaseInstance/getFlySpeed ()F +MD: net/minecraft/world/entity/boss/enderdragon/phases/AbstractDragonPhaseInstance/m_7080_ ()Z net/minecraft/world/entity/boss/enderdragon/phases/AbstractDragonPhaseInstance/isSitting ()Z +MD: net/minecraft/world/entity/boss/enderdragon/phases/AbstractDragonPhaseInstance/m_7081_ ()V net/minecraft/world/entity/boss/enderdragon/phases/AbstractDragonPhaseInstance/end ()V +MD: net/minecraft/world/entity/boss/enderdragon/phases/AbstractDragonPhaseInstance/m_7083_ ()V net/minecraft/world/entity/boss/enderdragon/phases/AbstractDragonPhaseInstance/begin ()V +MD: net/minecraft/world/entity/boss/enderdragon/phases/AbstractDragonPhaseInstance/m_7089_ ()F net/minecraft/world/entity/boss/enderdragon/phases/AbstractDragonPhaseInstance/getTurnSpeed ()F +MD: net/minecraft/world/entity/boss/enderdragon/phases/AbstractDragonPhaseInstance/m_7584_ (Lnet/minecraft/world/damagesource/DamageSource;F)F net/minecraft/world/entity/boss/enderdragon/phases/AbstractDragonPhaseInstance/onHurt (Lnet/minecraft/world/damagesource/DamageSource;F)F +MD: net/minecraft/world/entity/boss/enderdragon/phases/AbstractDragonPhaseInstance/m_8059_ (Lnet/minecraft/world/entity/boss/enderdragon/EndCrystal;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/damagesource/DamageSource;Lnet/minecraft/world/entity/player/Player;)V net/minecraft/world/entity/boss/enderdragon/phases/AbstractDragonPhaseInstance/onCrystalDestroyed (Lnet/minecraft/world/entity/boss/enderdragon/EndCrystal;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/damagesource/DamageSource;Lnet/minecraft/world/entity/player/Player;)V +MD: net/minecraft/world/entity/boss/enderdragon/phases/AbstractDragonSittingPhase/ (Lnet/minecraft/world/entity/boss/enderdragon/EnderDragon;)V net/minecraft/world/entity/boss/enderdragon/phases/AbstractDragonSittingPhase/ (Lnet/minecraft/world/entity/boss/enderdragon/EnderDragon;)V +MD: net/minecraft/world/entity/boss/enderdragon/phases/AbstractDragonSittingPhase/m_7080_ ()Z net/minecraft/world/entity/boss/enderdragon/phases/AbstractDragonSittingPhase/isSitting ()Z +MD: net/minecraft/world/entity/boss/enderdragon/phases/AbstractDragonSittingPhase/m_7584_ (Lnet/minecraft/world/damagesource/DamageSource;F)F net/minecraft/world/entity/boss/enderdragon/phases/AbstractDragonSittingPhase/onHurt (Lnet/minecraft/world/damagesource/DamageSource;F)F +MD: net/minecraft/world/entity/boss/enderdragon/phases/DragonChargePlayerPhase/ ()V net/minecraft/world/entity/boss/enderdragon/phases/DragonChargePlayerPhase/ ()V +MD: net/minecraft/world/entity/boss/enderdragon/phases/DragonChargePlayerPhase/ (Lnet/minecraft/world/entity/boss/enderdragon/EnderDragon;)V net/minecraft/world/entity/boss/enderdragon/phases/DragonChargePlayerPhase/ (Lnet/minecraft/world/entity/boss/enderdragon/EnderDragon;)V +MD: net/minecraft/world/entity/boss/enderdragon/phases/DragonChargePlayerPhase/m_31207_ (Lnet/minecraft/world/phys/Vec3;)V net/minecraft/world/entity/boss/enderdragon/phases/DragonChargePlayerPhase/setTarget (Lnet/minecraft/world/phys/Vec3;)V +MD: net/minecraft/world/entity/boss/enderdragon/phases/DragonChargePlayerPhase/m_5535_ ()Lnet/minecraft/world/phys/Vec3; net/minecraft/world/entity/boss/enderdragon/phases/DragonChargePlayerPhase/getFlyTargetLocation ()Lnet/minecraft/world/phys/Vec3; +MD: net/minecraft/world/entity/boss/enderdragon/phases/DragonChargePlayerPhase/m_6989_ ()V net/minecraft/world/entity/boss/enderdragon/phases/DragonChargePlayerPhase/doServerTick ()V +MD: net/minecraft/world/entity/boss/enderdragon/phases/DragonChargePlayerPhase/m_7072_ ()F net/minecraft/world/entity/boss/enderdragon/phases/DragonChargePlayerPhase/getFlySpeed ()F +MD: net/minecraft/world/entity/boss/enderdragon/phases/DragonChargePlayerPhase/m_7083_ ()V net/minecraft/world/entity/boss/enderdragon/phases/DragonChargePlayerPhase/begin ()V +MD: net/minecraft/world/entity/boss/enderdragon/phases/DragonChargePlayerPhase/m_7309_ ()Lnet/minecraft/world/entity/boss/enderdragon/phases/EnderDragonPhase; net/minecraft/world/entity/boss/enderdragon/phases/DragonChargePlayerPhase/getPhase ()Lnet/minecraft/world/entity/boss/enderdragon/phases/EnderDragonPhase; +MD: net/minecraft/world/entity/boss/enderdragon/phases/DragonDeathPhase/ (Lnet/minecraft/world/entity/boss/enderdragon/EnderDragon;)V net/minecraft/world/entity/boss/enderdragon/phases/DragonDeathPhase/ (Lnet/minecraft/world/entity/boss/enderdragon/EnderDragon;)V +MD: net/minecraft/world/entity/boss/enderdragon/phases/DragonDeathPhase/m_5535_ ()Lnet/minecraft/world/phys/Vec3; net/minecraft/world/entity/boss/enderdragon/phases/DragonDeathPhase/getFlyTargetLocation ()Lnet/minecraft/world/phys/Vec3; +MD: net/minecraft/world/entity/boss/enderdragon/phases/DragonDeathPhase/m_6989_ ()V net/minecraft/world/entity/boss/enderdragon/phases/DragonDeathPhase/doServerTick ()V +MD: net/minecraft/world/entity/boss/enderdragon/phases/DragonDeathPhase/m_6991_ ()V net/minecraft/world/entity/boss/enderdragon/phases/DragonDeathPhase/doClientTick ()V +MD: net/minecraft/world/entity/boss/enderdragon/phases/DragonDeathPhase/m_7072_ ()F net/minecraft/world/entity/boss/enderdragon/phases/DragonDeathPhase/getFlySpeed ()F +MD: net/minecraft/world/entity/boss/enderdragon/phases/DragonDeathPhase/m_7083_ ()V net/minecraft/world/entity/boss/enderdragon/phases/DragonDeathPhase/begin ()V +MD: net/minecraft/world/entity/boss/enderdragon/phases/DragonDeathPhase/m_7309_ ()Lnet/minecraft/world/entity/boss/enderdragon/phases/EnderDragonPhase; net/minecraft/world/entity/boss/enderdragon/phases/DragonDeathPhase/getPhase ()Lnet/minecraft/world/entity/boss/enderdragon/phases/EnderDragonPhase; +MD: net/minecraft/world/entity/boss/enderdragon/phases/DragonHoldingPatternPhase/ ()V net/minecraft/world/entity/boss/enderdragon/phases/DragonHoldingPatternPhase/ ()V +MD: net/minecraft/world/entity/boss/enderdragon/phases/DragonHoldingPatternPhase/ (Lnet/minecraft/world/entity/boss/enderdragon/EnderDragon;)V net/minecraft/world/entity/boss/enderdragon/phases/DragonHoldingPatternPhase/ (Lnet/minecraft/world/entity/boss/enderdragon/EnderDragon;)V +MD: net/minecraft/world/entity/boss/enderdragon/phases/DragonHoldingPatternPhase/m_31236_ (Lnet/minecraft/world/entity/player/Player;)V net/minecraft/world/entity/boss/enderdragon/phases/DragonHoldingPatternPhase/strafePlayer (Lnet/minecraft/world/entity/player/Player;)V +MD: net/minecraft/world/entity/boss/enderdragon/phases/DragonHoldingPatternPhase/m_31242_ ()V net/minecraft/world/entity/boss/enderdragon/phases/DragonHoldingPatternPhase/findNewTarget ()V +MD: net/minecraft/world/entity/boss/enderdragon/phases/DragonHoldingPatternPhase/m_31243_ ()V net/minecraft/world/entity/boss/enderdragon/phases/DragonHoldingPatternPhase/navigateToNextPathNode ()V +MD: net/minecraft/world/entity/boss/enderdragon/phases/DragonHoldingPatternPhase/m_5535_ ()Lnet/minecraft/world/phys/Vec3; net/minecraft/world/entity/boss/enderdragon/phases/DragonHoldingPatternPhase/getFlyTargetLocation ()Lnet/minecraft/world/phys/Vec3; +MD: net/minecraft/world/entity/boss/enderdragon/phases/DragonHoldingPatternPhase/m_6989_ ()V net/minecraft/world/entity/boss/enderdragon/phases/DragonHoldingPatternPhase/doServerTick ()V +MD: net/minecraft/world/entity/boss/enderdragon/phases/DragonHoldingPatternPhase/m_7083_ ()V net/minecraft/world/entity/boss/enderdragon/phases/DragonHoldingPatternPhase/begin ()V +MD: net/minecraft/world/entity/boss/enderdragon/phases/DragonHoldingPatternPhase/m_7309_ ()Lnet/minecraft/world/entity/boss/enderdragon/phases/EnderDragonPhase; net/minecraft/world/entity/boss/enderdragon/phases/DragonHoldingPatternPhase/getPhase ()Lnet/minecraft/world/entity/boss/enderdragon/phases/EnderDragonPhase; +MD: net/minecraft/world/entity/boss/enderdragon/phases/DragonHoldingPatternPhase/m_8059_ (Lnet/minecraft/world/entity/boss/enderdragon/EndCrystal;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/damagesource/DamageSource;Lnet/minecraft/world/entity/player/Player;)V net/minecraft/world/entity/boss/enderdragon/phases/DragonHoldingPatternPhase/onCrystalDestroyed (Lnet/minecraft/world/entity/boss/enderdragon/EndCrystal;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/damagesource/DamageSource;Lnet/minecraft/world/entity/player/Player;)V +MD: net/minecraft/world/entity/boss/enderdragon/phases/DragonHoverPhase/ (Lnet/minecraft/world/entity/boss/enderdragon/EnderDragon;)V net/minecraft/world/entity/boss/enderdragon/phases/DragonHoverPhase/ (Lnet/minecraft/world/entity/boss/enderdragon/EnderDragon;)V +MD: net/minecraft/world/entity/boss/enderdragon/phases/DragonHoverPhase/m_5535_ ()Lnet/minecraft/world/phys/Vec3; net/minecraft/world/entity/boss/enderdragon/phases/DragonHoverPhase/getFlyTargetLocation ()Lnet/minecraft/world/phys/Vec3; +MD: net/minecraft/world/entity/boss/enderdragon/phases/DragonHoverPhase/m_6989_ ()V net/minecraft/world/entity/boss/enderdragon/phases/DragonHoverPhase/doServerTick ()V +MD: net/minecraft/world/entity/boss/enderdragon/phases/DragonHoverPhase/m_7072_ ()F net/minecraft/world/entity/boss/enderdragon/phases/DragonHoverPhase/getFlySpeed ()F +MD: net/minecraft/world/entity/boss/enderdragon/phases/DragonHoverPhase/m_7080_ ()Z net/minecraft/world/entity/boss/enderdragon/phases/DragonHoverPhase/isSitting ()Z +MD: net/minecraft/world/entity/boss/enderdragon/phases/DragonHoverPhase/m_7083_ ()V net/minecraft/world/entity/boss/enderdragon/phases/DragonHoverPhase/begin ()V +MD: net/minecraft/world/entity/boss/enderdragon/phases/DragonHoverPhase/m_7309_ ()Lnet/minecraft/world/entity/boss/enderdragon/phases/EnderDragonPhase; net/minecraft/world/entity/boss/enderdragon/phases/DragonHoverPhase/getPhase ()Lnet/minecraft/world/entity/boss/enderdragon/phases/EnderDragonPhase; +MD: net/minecraft/world/entity/boss/enderdragon/phases/DragonLandingApproachPhase/ ()V net/minecraft/world/entity/boss/enderdragon/phases/DragonLandingApproachPhase/ ()V +MD: net/minecraft/world/entity/boss/enderdragon/phases/DragonLandingApproachPhase/ (Lnet/minecraft/world/entity/boss/enderdragon/EnderDragon;)V net/minecraft/world/entity/boss/enderdragon/phases/DragonLandingApproachPhase/ (Lnet/minecraft/world/entity/boss/enderdragon/EnderDragon;)V +MD: net/minecraft/world/entity/boss/enderdragon/phases/DragonLandingApproachPhase/m_31263_ ()V net/minecraft/world/entity/boss/enderdragon/phases/DragonLandingApproachPhase/findNewTarget ()V +MD: net/minecraft/world/entity/boss/enderdragon/phases/DragonLandingApproachPhase/m_31264_ ()V net/minecraft/world/entity/boss/enderdragon/phases/DragonLandingApproachPhase/navigateToNextPathNode ()V +MD: net/minecraft/world/entity/boss/enderdragon/phases/DragonLandingApproachPhase/m_5535_ ()Lnet/minecraft/world/phys/Vec3; net/minecraft/world/entity/boss/enderdragon/phases/DragonLandingApproachPhase/getFlyTargetLocation ()Lnet/minecraft/world/phys/Vec3; +MD: net/minecraft/world/entity/boss/enderdragon/phases/DragonLandingApproachPhase/m_6989_ ()V net/minecraft/world/entity/boss/enderdragon/phases/DragonLandingApproachPhase/doServerTick ()V +MD: net/minecraft/world/entity/boss/enderdragon/phases/DragonLandingApproachPhase/m_7083_ ()V net/minecraft/world/entity/boss/enderdragon/phases/DragonLandingApproachPhase/begin ()V +MD: net/minecraft/world/entity/boss/enderdragon/phases/DragonLandingApproachPhase/m_7309_ ()Lnet/minecraft/world/entity/boss/enderdragon/phases/EnderDragonPhase; net/minecraft/world/entity/boss/enderdragon/phases/DragonLandingApproachPhase/getPhase ()Lnet/minecraft/world/entity/boss/enderdragon/phases/EnderDragonPhase; +MD: net/minecraft/world/entity/boss/enderdragon/phases/DragonLandingPhase/ (Lnet/minecraft/world/entity/boss/enderdragon/EnderDragon;)V net/minecraft/world/entity/boss/enderdragon/phases/DragonLandingPhase/ (Lnet/minecraft/world/entity/boss/enderdragon/EnderDragon;)V +MD: net/minecraft/world/entity/boss/enderdragon/phases/DragonLandingPhase/m_5535_ ()Lnet/minecraft/world/phys/Vec3; net/minecraft/world/entity/boss/enderdragon/phases/DragonLandingPhase/getFlyTargetLocation ()Lnet/minecraft/world/phys/Vec3; +MD: net/minecraft/world/entity/boss/enderdragon/phases/DragonLandingPhase/m_6989_ ()V net/minecraft/world/entity/boss/enderdragon/phases/DragonLandingPhase/doServerTick ()V +MD: net/minecraft/world/entity/boss/enderdragon/phases/DragonLandingPhase/m_6991_ ()V net/minecraft/world/entity/boss/enderdragon/phases/DragonLandingPhase/doClientTick ()V +MD: net/minecraft/world/entity/boss/enderdragon/phases/DragonLandingPhase/m_7072_ ()F net/minecraft/world/entity/boss/enderdragon/phases/DragonLandingPhase/getFlySpeed ()F +MD: net/minecraft/world/entity/boss/enderdragon/phases/DragonLandingPhase/m_7083_ ()V net/minecraft/world/entity/boss/enderdragon/phases/DragonLandingPhase/begin ()V +MD: net/minecraft/world/entity/boss/enderdragon/phases/DragonLandingPhase/m_7089_ ()F net/minecraft/world/entity/boss/enderdragon/phases/DragonLandingPhase/getTurnSpeed ()F +MD: net/minecraft/world/entity/boss/enderdragon/phases/DragonLandingPhase/m_7309_ ()Lnet/minecraft/world/entity/boss/enderdragon/phases/EnderDragonPhase; net/minecraft/world/entity/boss/enderdragon/phases/DragonLandingPhase/getPhase ()Lnet/minecraft/world/entity/boss/enderdragon/phases/EnderDragonPhase; +MD: net/minecraft/world/entity/boss/enderdragon/phases/DragonPhaseInstance/m_5535_ ()Lnet/minecraft/world/phys/Vec3; net/minecraft/world/entity/boss/enderdragon/phases/DragonPhaseInstance/getFlyTargetLocation ()Lnet/minecraft/world/phys/Vec3; +MD: net/minecraft/world/entity/boss/enderdragon/phases/DragonPhaseInstance/m_6989_ ()V net/minecraft/world/entity/boss/enderdragon/phases/DragonPhaseInstance/doServerTick ()V +MD: net/minecraft/world/entity/boss/enderdragon/phases/DragonPhaseInstance/m_6991_ ()V net/minecraft/world/entity/boss/enderdragon/phases/DragonPhaseInstance/doClientTick ()V +MD: net/minecraft/world/entity/boss/enderdragon/phases/DragonPhaseInstance/m_7072_ ()F net/minecraft/world/entity/boss/enderdragon/phases/DragonPhaseInstance/getFlySpeed ()F +MD: net/minecraft/world/entity/boss/enderdragon/phases/DragonPhaseInstance/m_7080_ ()Z net/minecraft/world/entity/boss/enderdragon/phases/DragonPhaseInstance/isSitting ()Z +MD: net/minecraft/world/entity/boss/enderdragon/phases/DragonPhaseInstance/m_7081_ ()V net/minecraft/world/entity/boss/enderdragon/phases/DragonPhaseInstance/end ()V +MD: net/minecraft/world/entity/boss/enderdragon/phases/DragonPhaseInstance/m_7083_ ()V net/minecraft/world/entity/boss/enderdragon/phases/DragonPhaseInstance/begin ()V +MD: net/minecraft/world/entity/boss/enderdragon/phases/DragonPhaseInstance/m_7089_ ()F net/minecraft/world/entity/boss/enderdragon/phases/DragonPhaseInstance/getTurnSpeed ()F +MD: net/minecraft/world/entity/boss/enderdragon/phases/DragonPhaseInstance/m_7309_ ()Lnet/minecraft/world/entity/boss/enderdragon/phases/EnderDragonPhase; net/minecraft/world/entity/boss/enderdragon/phases/DragonPhaseInstance/getPhase ()Lnet/minecraft/world/entity/boss/enderdragon/phases/EnderDragonPhase; +MD: net/minecraft/world/entity/boss/enderdragon/phases/DragonPhaseInstance/m_7584_ (Lnet/minecraft/world/damagesource/DamageSource;F)F net/minecraft/world/entity/boss/enderdragon/phases/DragonPhaseInstance/onHurt (Lnet/minecraft/world/damagesource/DamageSource;F)F +MD: net/minecraft/world/entity/boss/enderdragon/phases/DragonPhaseInstance/m_8059_ (Lnet/minecraft/world/entity/boss/enderdragon/EndCrystal;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/damagesource/DamageSource;Lnet/minecraft/world/entity/player/Player;)V net/minecraft/world/entity/boss/enderdragon/phases/DragonPhaseInstance/onCrystalDestroyed (Lnet/minecraft/world/entity/boss/enderdragon/EndCrystal;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/damagesource/DamageSource;Lnet/minecraft/world/entity/player/Player;)V +MD: net/minecraft/world/entity/boss/enderdragon/phases/DragonSittingAttackingPhase/ (Lnet/minecraft/world/entity/boss/enderdragon/EnderDragon;)V net/minecraft/world/entity/boss/enderdragon/phases/DragonSittingAttackingPhase/ (Lnet/minecraft/world/entity/boss/enderdragon/EnderDragon;)V +MD: net/minecraft/world/entity/boss/enderdragon/phases/DragonSittingAttackingPhase/m_6989_ ()V net/minecraft/world/entity/boss/enderdragon/phases/DragonSittingAttackingPhase/doServerTick ()V +MD: net/minecraft/world/entity/boss/enderdragon/phases/DragonSittingAttackingPhase/m_6991_ ()V net/minecraft/world/entity/boss/enderdragon/phases/DragonSittingAttackingPhase/doClientTick ()V +MD: net/minecraft/world/entity/boss/enderdragon/phases/DragonSittingAttackingPhase/m_7083_ ()V net/minecraft/world/entity/boss/enderdragon/phases/DragonSittingAttackingPhase/begin ()V +MD: net/minecraft/world/entity/boss/enderdragon/phases/DragonSittingAttackingPhase/m_7309_ ()Lnet/minecraft/world/entity/boss/enderdragon/phases/EnderDragonPhase; net/minecraft/world/entity/boss/enderdragon/phases/DragonSittingAttackingPhase/getPhase ()Lnet/minecraft/world/entity/boss/enderdragon/phases/EnderDragonPhase; +MD: net/minecraft/world/entity/boss/enderdragon/phases/DragonSittingFlamingPhase/ (Lnet/minecraft/world/entity/boss/enderdragon/EnderDragon;)V net/minecraft/world/entity/boss/enderdragon/phases/DragonSittingFlamingPhase/ (Lnet/minecraft/world/entity/boss/enderdragon/EnderDragon;)V +MD: net/minecraft/world/entity/boss/enderdragon/phases/DragonSittingFlamingPhase/m_31336_ ()V net/minecraft/world/entity/boss/enderdragon/phases/DragonSittingFlamingPhase/resetFlameCount ()V +MD: net/minecraft/world/entity/boss/enderdragon/phases/DragonSittingFlamingPhase/m_6989_ ()V net/minecraft/world/entity/boss/enderdragon/phases/DragonSittingFlamingPhase/doServerTick ()V +MD: net/minecraft/world/entity/boss/enderdragon/phases/DragonSittingFlamingPhase/m_6991_ ()V net/minecraft/world/entity/boss/enderdragon/phases/DragonSittingFlamingPhase/doClientTick ()V +MD: net/minecraft/world/entity/boss/enderdragon/phases/DragonSittingFlamingPhase/m_7081_ ()V net/minecraft/world/entity/boss/enderdragon/phases/DragonSittingFlamingPhase/end ()V +MD: net/minecraft/world/entity/boss/enderdragon/phases/DragonSittingFlamingPhase/m_7083_ ()V net/minecraft/world/entity/boss/enderdragon/phases/DragonSittingFlamingPhase/begin ()V +MD: net/minecraft/world/entity/boss/enderdragon/phases/DragonSittingFlamingPhase/m_7309_ ()Lnet/minecraft/world/entity/boss/enderdragon/phases/EnderDragonPhase; net/minecraft/world/entity/boss/enderdragon/phases/DragonSittingFlamingPhase/getPhase ()Lnet/minecraft/world/entity/boss/enderdragon/phases/EnderDragonPhase; +MD: net/minecraft/world/entity/boss/enderdragon/phases/DragonSittingScanningPhase/ ()V net/minecraft/world/entity/boss/enderdragon/phases/DragonSittingScanningPhase/ ()V +MD: net/minecraft/world/entity/boss/enderdragon/phases/DragonSittingScanningPhase/ (Lnet/minecraft/world/entity/boss/enderdragon/EnderDragon;)V net/minecraft/world/entity/boss/enderdragon/phases/DragonSittingScanningPhase/ (Lnet/minecraft/world/entity/boss/enderdragon/EnderDragon;)V +MD: net/minecraft/world/entity/boss/enderdragon/phases/DragonSittingScanningPhase/m_289144_ (Lnet/minecraft/world/entity/boss/enderdragon/EnderDragon;Lnet/minecraft/world/entity/LivingEntity;)Z net/minecraft/world/entity/boss/enderdragon/phases/DragonSittingScanningPhase/lambda$new$0 (Lnet/minecraft/world/entity/boss/enderdragon/EnderDragon;Lnet/minecraft/world/entity/LivingEntity;)Z +MD: net/minecraft/world/entity/boss/enderdragon/phases/DragonSittingScanningPhase/m_6989_ ()V net/minecraft/world/entity/boss/enderdragon/phases/DragonSittingScanningPhase/doServerTick ()V +MD: net/minecraft/world/entity/boss/enderdragon/phases/DragonSittingScanningPhase/m_7083_ ()V net/minecraft/world/entity/boss/enderdragon/phases/DragonSittingScanningPhase/begin ()V +MD: net/minecraft/world/entity/boss/enderdragon/phases/DragonSittingScanningPhase/m_7309_ ()Lnet/minecraft/world/entity/boss/enderdragon/phases/EnderDragonPhase; net/minecraft/world/entity/boss/enderdragon/phases/DragonSittingScanningPhase/getPhase ()Lnet/minecraft/world/entity/boss/enderdragon/phases/EnderDragonPhase; +MD: net/minecraft/world/entity/boss/enderdragon/phases/DragonStrafePlayerPhase/ ()V net/minecraft/world/entity/boss/enderdragon/phases/DragonStrafePlayerPhase/ ()V +MD: net/minecraft/world/entity/boss/enderdragon/phases/DragonStrafePlayerPhase/ (Lnet/minecraft/world/entity/boss/enderdragon/EnderDragon;)V net/minecraft/world/entity/boss/enderdragon/phases/DragonStrafePlayerPhase/ (Lnet/minecraft/world/entity/boss/enderdragon/EnderDragon;)V +MD: net/minecraft/world/entity/boss/enderdragon/phases/DragonStrafePlayerPhase/m_31358_ (Lnet/minecraft/world/entity/LivingEntity;)V net/minecraft/world/entity/boss/enderdragon/phases/DragonStrafePlayerPhase/setTarget (Lnet/minecraft/world/entity/LivingEntity;)V +MD: net/minecraft/world/entity/boss/enderdragon/phases/DragonStrafePlayerPhase/m_31364_ ()V net/minecraft/world/entity/boss/enderdragon/phases/DragonStrafePlayerPhase/findNewTarget ()V +MD: net/minecraft/world/entity/boss/enderdragon/phases/DragonStrafePlayerPhase/m_31365_ ()V net/minecraft/world/entity/boss/enderdragon/phases/DragonStrafePlayerPhase/navigateToNextPathNode ()V +MD: net/minecraft/world/entity/boss/enderdragon/phases/DragonStrafePlayerPhase/m_5535_ ()Lnet/minecraft/world/phys/Vec3; net/minecraft/world/entity/boss/enderdragon/phases/DragonStrafePlayerPhase/getFlyTargetLocation ()Lnet/minecraft/world/phys/Vec3; +MD: net/minecraft/world/entity/boss/enderdragon/phases/DragonStrafePlayerPhase/m_6989_ ()V net/minecraft/world/entity/boss/enderdragon/phases/DragonStrafePlayerPhase/doServerTick ()V +MD: net/minecraft/world/entity/boss/enderdragon/phases/DragonStrafePlayerPhase/m_7083_ ()V net/minecraft/world/entity/boss/enderdragon/phases/DragonStrafePlayerPhase/begin ()V +MD: net/minecraft/world/entity/boss/enderdragon/phases/DragonStrafePlayerPhase/m_7309_ ()Lnet/minecraft/world/entity/boss/enderdragon/phases/EnderDragonPhase; net/minecraft/world/entity/boss/enderdragon/phases/DragonStrafePlayerPhase/getPhase ()Lnet/minecraft/world/entity/boss/enderdragon/phases/EnderDragonPhase; +MD: net/minecraft/world/entity/boss/enderdragon/phases/DragonTakeoffPhase/ (Lnet/minecraft/world/entity/boss/enderdragon/EnderDragon;)V net/minecraft/world/entity/boss/enderdragon/phases/DragonTakeoffPhase/ (Lnet/minecraft/world/entity/boss/enderdragon/EnderDragon;)V +MD: net/minecraft/world/entity/boss/enderdragon/phases/DragonTakeoffPhase/m_31375_ ()V net/minecraft/world/entity/boss/enderdragon/phases/DragonTakeoffPhase/findNewTarget ()V +MD: net/minecraft/world/entity/boss/enderdragon/phases/DragonTakeoffPhase/m_31376_ ()V net/minecraft/world/entity/boss/enderdragon/phases/DragonTakeoffPhase/navigateToNextPathNode ()V +MD: net/minecraft/world/entity/boss/enderdragon/phases/DragonTakeoffPhase/m_5535_ ()Lnet/minecraft/world/phys/Vec3; net/minecraft/world/entity/boss/enderdragon/phases/DragonTakeoffPhase/getFlyTargetLocation ()Lnet/minecraft/world/phys/Vec3; +MD: net/minecraft/world/entity/boss/enderdragon/phases/DragonTakeoffPhase/m_6989_ ()V net/minecraft/world/entity/boss/enderdragon/phases/DragonTakeoffPhase/doServerTick ()V +MD: net/minecraft/world/entity/boss/enderdragon/phases/DragonTakeoffPhase/m_7083_ ()V net/minecraft/world/entity/boss/enderdragon/phases/DragonTakeoffPhase/begin ()V +MD: net/minecraft/world/entity/boss/enderdragon/phases/DragonTakeoffPhase/m_7309_ ()Lnet/minecraft/world/entity/boss/enderdragon/phases/EnderDragonPhase; net/minecraft/world/entity/boss/enderdragon/phases/DragonTakeoffPhase/getPhase ()Lnet/minecraft/world/entity/boss/enderdragon/phases/EnderDragonPhase; +MD: net/minecraft/world/entity/boss/enderdragon/phases/EnderDragonPhase/ ()V net/minecraft/world/entity/boss/enderdragon/phases/EnderDragonPhase/ ()V +MD: net/minecraft/world/entity/boss/enderdragon/phases/EnderDragonPhase/ (ILjava/lang/Class;Ljava/lang/String;)V net/minecraft/world/entity/boss/enderdragon/phases/EnderDragonPhase/ (ILjava/lang/Class;Ljava/lang/String;)V +MD: net/minecraft/world/entity/boss/enderdragon/phases/EnderDragonPhase/m_31397_ ()Ljava/lang/reflect/Constructor; net/minecraft/world/entity/boss/enderdragon/phases/EnderDragonPhase/getConstructor ()Ljava/lang/reflect/Constructor; +MD: net/minecraft/world/entity/boss/enderdragon/phases/EnderDragonPhase/m_31398_ (I)Lnet/minecraft/world/entity/boss/enderdragon/phases/EnderDragonPhase; net/minecraft/world/entity/boss/enderdragon/phases/EnderDragonPhase/getById (I)Lnet/minecraft/world/entity/boss/enderdragon/phases/EnderDragonPhase; +MD: net/minecraft/world/entity/boss/enderdragon/phases/EnderDragonPhase/m_31400_ (Lnet/minecraft/world/entity/boss/enderdragon/EnderDragon;)Lnet/minecraft/world/entity/boss/enderdragon/phases/DragonPhaseInstance; net/minecraft/world/entity/boss/enderdragon/phases/EnderDragonPhase/createInstance (Lnet/minecraft/world/entity/boss/enderdragon/EnderDragon;)Lnet/minecraft/world/entity/boss/enderdragon/phases/DragonPhaseInstance; +MD: net/minecraft/world/entity/boss/enderdragon/phases/EnderDragonPhase/m_31402_ (Ljava/lang/Class;Ljava/lang/String;)Lnet/minecraft/world/entity/boss/enderdragon/phases/EnderDragonPhase; net/minecraft/world/entity/boss/enderdragon/phases/EnderDragonPhase/create (Ljava/lang/Class;Ljava/lang/String;)Lnet/minecraft/world/entity/boss/enderdragon/phases/EnderDragonPhase; +MD: net/minecraft/world/entity/boss/enderdragon/phases/EnderDragonPhase/m_31405_ ()I net/minecraft/world/entity/boss/enderdragon/phases/EnderDragonPhase/getId ()I +MD: net/minecraft/world/entity/boss/enderdragon/phases/EnderDragonPhase/m_31406_ ()I net/minecraft/world/entity/boss/enderdragon/phases/EnderDragonPhase/getCount ()I +MD: net/minecraft/world/entity/boss/enderdragon/phases/EnderDragonPhase/toString ()Ljava/lang/String; net/minecraft/world/entity/boss/enderdragon/phases/EnderDragonPhase/toString ()Ljava/lang/String; +MD: net/minecraft/world/entity/boss/enderdragon/phases/EnderDragonPhaseManager/ ()V net/minecraft/world/entity/boss/enderdragon/phases/EnderDragonPhaseManager/ ()V +MD: net/minecraft/world/entity/boss/enderdragon/phases/EnderDragonPhaseManager/ (Lnet/minecraft/world/entity/boss/enderdragon/EnderDragon;)V net/minecraft/world/entity/boss/enderdragon/phases/EnderDragonPhaseManager/ (Lnet/minecraft/world/entity/boss/enderdragon/EnderDragon;)V +MD: net/minecraft/world/entity/boss/enderdragon/phases/EnderDragonPhaseManager/m_31415_ ()Lnet/minecraft/world/entity/boss/enderdragon/phases/DragonPhaseInstance; net/minecraft/world/entity/boss/enderdragon/phases/EnderDragonPhaseManager/getCurrentPhase ()Lnet/minecraft/world/entity/boss/enderdragon/phases/DragonPhaseInstance; +MD: net/minecraft/world/entity/boss/enderdragon/phases/EnderDragonPhaseManager/m_31416_ (Lnet/minecraft/world/entity/boss/enderdragon/phases/EnderDragonPhase;)V net/minecraft/world/entity/boss/enderdragon/phases/EnderDragonPhaseManager/setPhase (Lnet/minecraft/world/entity/boss/enderdragon/phases/EnderDragonPhase;)V +MD: net/minecraft/world/entity/boss/enderdragon/phases/EnderDragonPhaseManager/m_31418_ (Lnet/minecraft/world/entity/boss/enderdragon/phases/EnderDragonPhase;)Lnet/minecraft/world/entity/boss/enderdragon/phases/DragonPhaseInstance; net/minecraft/world/entity/boss/enderdragon/phases/EnderDragonPhaseManager/getPhase (Lnet/minecraft/world/entity/boss/enderdragon/phases/EnderDragonPhase;)Lnet/minecraft/world/entity/boss/enderdragon/phases/DragonPhaseInstance; +MD: net/minecraft/world/entity/boss/wither/WitherBoss/ ()V net/minecraft/world/entity/boss/wither/WitherBoss/ ()V +MD: net/minecraft/world/entity/boss/wither/WitherBoss/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V net/minecraft/world/entity/boss/wither/WitherBoss/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V +MD: net/minecraft/world/entity/boss/wither/WitherBoss/m_147207_ (Lnet/minecraft/world/effect/MobEffectInstance;Lnet/minecraft/world/entity/Entity;)Z net/minecraft/world/entity/boss/wither/WitherBoss/addEffect (Lnet/minecraft/world/effect/MobEffectInstance;Lnet/minecraft/world/entity/Entity;)Z +MD: net/minecraft/world/entity/boss/wither/WitherBoss/m_31442_ (FFF)F net/minecraft/world/entity/boss/wither/WitherBoss/rotlerp (FFF)F +MD: net/minecraft/world/entity/boss/wither/WitherBoss/m_31446_ (I)F net/minecraft/world/entity/boss/wither/WitherBoss/getHeadYRot (I)F +MD: net/minecraft/world/entity/boss/wither/WitherBoss/m_31448_ (IDDDZ)V net/minecraft/world/entity/boss/wither/WitherBoss/performRangedAttack (IDDDZ)V +MD: net/minecraft/world/entity/boss/wither/WitherBoss/m_31454_ (II)V net/minecraft/world/entity/boss/wither/WitherBoss/setAlternativeTarget (II)V +MD: net/minecraft/world/entity/boss/wither/WitherBoss/m_31457_ (ILnet/minecraft/world/entity/LivingEntity;)V net/minecraft/world/entity/boss/wither/WitherBoss/performRangedAttack (ILnet/minecraft/world/entity/LivingEntity;)V +MD: net/minecraft/world/entity/boss/wither/WitherBoss/m_31480_ (I)F net/minecraft/world/entity/boss/wither/WitherBoss/getHeadXRot (I)F +MD: net/minecraft/world/entity/boss/wither/WitherBoss/m_31491_ (Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/world/entity/boss/wither/WitherBoss/canDestroy (Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/world/entity/boss/wither/WitherBoss/m_31501_ ()Lnet/minecraft/world/entity/ai/attributes/AttributeSupplier$Builder; net/minecraft/world/entity/boss/wither/WitherBoss/createAttributes ()Lnet/minecraft/world/entity/ai/attributes/AttributeSupplier$Builder; +MD: net/minecraft/world/entity/boss/wither/WitherBoss/m_31502_ ()I net/minecraft/world/entity/boss/wither/WitherBoss/getInvulnerableTicks ()I +MD: net/minecraft/world/entity/boss/wither/WitherBoss/m_31503_ (Lnet/minecraft/world/entity/LivingEntity;)Z net/minecraft/world/entity/boss/wither/WitherBoss/lambda$static$0 (Lnet/minecraft/world/entity/LivingEntity;)Z +MD: net/minecraft/world/entity/boss/wither/WitherBoss/m_31506_ ()V net/minecraft/world/entity/boss/wither/WitherBoss/makeInvulnerable ()V +MD: net/minecraft/world/entity/boss/wither/WitherBoss/m_31510_ (I)V net/minecraft/world/entity/boss/wither/WitherBoss/setInvulnerableTicks (I)V +MD: net/minecraft/world/entity/boss/wither/WitherBoss/m_31512_ (I)I net/minecraft/world/entity/boss/wither/WitherBoss/getAlternativeTarget (I)I +MD: net/minecraft/world/entity/boss/wither/WitherBoss/m_31514_ (I)D net/minecraft/world/entity/boss/wither/WitherBoss/getHeadX (I)D +MD: net/minecraft/world/entity/boss/wither/WitherBoss/m_31516_ (I)D net/minecraft/world/entity/boss/wither/WitherBoss/getHeadY (I)D +MD: net/minecraft/world/entity/boss/wither/WitherBoss/m_31518_ (I)D net/minecraft/world/entity/boss/wither/WitherBoss/getHeadZ (I)D +MD: net/minecraft/world/entity/boss/wither/WitherBoss/m_5592_ ()Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/boss/wither/WitherBoss/getDeathSound ()Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/boss/wither/WitherBoss/m_6037_ (Lnet/minecraft/world/level/Level;)Lnet/minecraft/world/entity/ai/navigation/PathNavigation; net/minecraft/world/entity/boss/wither/WitherBoss/createNavigation (Lnet/minecraft/world/level/Level;)Lnet/minecraft/world/entity/ai/navigation/PathNavigation; +MD: net/minecraft/world/entity/boss/wither/WitherBoss/m_6043_ ()V net/minecraft/world/entity/boss/wither/WitherBoss/checkDespawn ()V +MD: net/minecraft/world/entity/boss/wither/WitherBoss/m_6072_ ()Z net/minecraft/world/entity/boss/wither/WitherBoss/canChangeDimensions ()Z +MD: net/minecraft/world/entity/boss/wither/WitherBoss/m_6336_ ()Lnet/minecraft/world/entity/MobType; net/minecraft/world/entity/boss/wither/WitherBoss/getMobType ()Lnet/minecraft/world/entity/MobType; +MD: net/minecraft/world/entity/boss/wither/WitherBoss/m_6452_ (Lnet/minecraft/server/level/ServerPlayer;)V net/minecraft/world/entity/boss/wither/WitherBoss/stopSeenByPlayer (Lnet/minecraft/server/level/ServerPlayer;)V +MD: net/minecraft/world/entity/boss/wither/WitherBoss/m_6457_ (Lnet/minecraft/server/level/ServerPlayer;)V net/minecraft/world/entity/boss/wither/WitherBoss/startSeenByPlayer (Lnet/minecraft/server/level/ServerPlayer;)V +MD: net/minecraft/world/entity/boss/wither/WitherBoss/m_6469_ (Lnet/minecraft/world/damagesource/DamageSource;F)Z net/minecraft/world/entity/boss/wither/WitherBoss/hurt (Lnet/minecraft/world/damagesource/DamageSource;F)Z +MD: net/minecraft/world/entity/boss/wither/WitherBoss/m_6504_ (Lnet/minecraft/world/entity/LivingEntity;F)V net/minecraft/world/entity/boss/wither/WitherBoss/performRangedAttack (Lnet/minecraft/world/entity/LivingEntity;F)V +MD: net/minecraft/world/entity/boss/wither/WitherBoss/m_6593_ (Lnet/minecraft/network/chat/Component;)V net/minecraft/world/entity/boss/wither/WitherBoss/setCustomName (Lnet/minecraft/network/chat/Component;)V +MD: net/minecraft/world/entity/boss/wither/WitherBoss/m_7090_ ()Z net/minecraft/world/entity/boss/wither/WitherBoss/isPowered ()Z +MD: net/minecraft/world/entity/boss/wither/WitherBoss/m_7301_ (Lnet/minecraft/world/effect/MobEffectInstance;)Z net/minecraft/world/entity/boss/wither/WitherBoss/canBeAffected (Lnet/minecraft/world/effect/MobEffectInstance;)Z +MD: net/minecraft/world/entity/boss/wither/WitherBoss/m_7341_ (Lnet/minecraft/world/entity/Entity;)Z net/minecraft/world/entity/boss/wither/WitherBoss/canRide (Lnet/minecraft/world/entity/Entity;)Z +MD: net/minecraft/world/entity/boss/wither/WitherBoss/m_7378_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/entity/boss/wither/WitherBoss/readAdditionalSaveData (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/entity/boss/wither/WitherBoss/m_7380_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/entity/boss/wither/WitherBoss/addAdditionalSaveData (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/entity/boss/wither/WitherBoss/m_7472_ (Lnet/minecraft/world/damagesource/DamageSource;IZ)V net/minecraft/world/entity/boss/wither/WitherBoss/dropCustomDeathLoot (Lnet/minecraft/world/damagesource/DamageSource;IZ)V +MD: net/minecraft/world/entity/boss/wither/WitherBoss/m_7515_ ()Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/boss/wither/WitherBoss/getAmbientSound ()Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/boss/wither/WitherBoss/m_7601_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/phys/Vec3;)V net/minecraft/world/entity/boss/wither/WitherBoss/makeStuckInBlock (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/phys/Vec3;)V +MD: net/minecraft/world/entity/boss/wither/WitherBoss/m_7975_ (Lnet/minecraft/world/damagesource/DamageSource;)Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/boss/wither/WitherBoss/getHurtSound (Lnet/minecraft/world/damagesource/DamageSource;)Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/boss/wither/WitherBoss/m_8024_ ()V net/minecraft/world/entity/boss/wither/WitherBoss/customServerAiStep ()V +MD: net/minecraft/world/entity/boss/wither/WitherBoss/m_8097_ ()V net/minecraft/world/entity/boss/wither/WitherBoss/defineSynchedData ()V +MD: net/minecraft/world/entity/boss/wither/WitherBoss/m_8099_ ()V net/minecraft/world/entity/boss/wither/WitherBoss/registerGoals ()V +MD: net/minecraft/world/entity/boss/wither/WitherBoss/m_8107_ ()V net/minecraft/world/entity/boss/wither/WitherBoss/aiStep ()V +MD: net/minecraft/world/entity/boss/wither/WitherBoss$WitherDoNothingGoal/ (Lnet/minecraft/world/entity/boss/wither/WitherBoss;)V net/minecraft/world/entity/boss/wither/WitherBoss$WitherDoNothingGoal/ (Lnet/minecraft/world/entity/boss/wither/WitherBoss;)V +MD: net/minecraft/world/entity/boss/wither/WitherBoss$WitherDoNothingGoal/m_8036_ ()Z net/minecraft/world/entity/boss/wither/WitherBoss$WitherDoNothingGoal/canUse ()Z +MD: net/minecraft/world/entity/decoration/ArmorStand/ ()V net/minecraft/world/entity/decoration/ArmorStand/ ()V +MD: net/minecraft/world/entity/decoration/ArmorStand/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V net/minecraft/world/entity/decoration/ArmorStand/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V +MD: net/minecraft/world/entity/decoration/ArmorStand/ (Lnet/minecraft/world/level/Level;DDD)V net/minecraft/world/entity/decoration/ArmorStand/ (Lnet/minecraft/world/level/Level;DDD)V +MD: net/minecraft/world/entity/decoration/ArmorStand/m_142065_ ()Z net/minecraft/world/entity/decoration/ArmorStand/canBeSeenByAnyone ()Z +MD: net/minecraft/world/entity/decoration/ArmorStand/m_142340_ ()Lnet/minecraft/world/item/ItemStack; net/minecraft/world/entity/decoration/ArmorStand/getPickResult ()Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/entity/decoration/ArmorStand/m_196493_ ()Lnet/minecraft/world/entity/LivingEntity$Fallsounds; net/minecraft/world/entity/decoration/ArmorStand/getFallSounds ()Lnet/minecraft/world/entity/LivingEntity$Fallsounds; +MD: net/minecraft/world/entity/decoration/ArmorStand/m_21515_ ()Z net/minecraft/world/entity/decoration/ArmorStand/isEffectiveAi ()Z +MD: net/minecraft/world/entity/decoration/ArmorStand/m_31560_ ()Z net/minecraft/world/entity/decoration/ArmorStand/hasPhysics ()Z +MD: net/minecraft/world/entity/decoration/ArmorStand/m_31561_ ()Lnet/minecraft/nbt/CompoundTag; net/minecraft/world/entity/decoration/ArmorStand/writePose ()Lnet/minecraft/nbt/CompoundTag; +MD: net/minecraft/world/entity/decoration/ArmorStand/m_31565_ ()V net/minecraft/world/entity/decoration/ArmorStand/showBreakingParticles ()V +MD: net/minecraft/world/entity/decoration/ArmorStand/m_31566_ ()V net/minecraft/world/entity/decoration/ArmorStand/playBrokenSound ()V +MD: net/minecraft/world/entity/decoration/ArmorStand/m_31569_ (BIZ)B net/minecraft/world/entity/decoration/ArmorStand/setBit (BIZ)B +MD: net/minecraft/world/entity/decoration/ArmorStand/m_31581_ (Lnet/minecraft/world/entity/Entity;)Z net/minecraft/world/entity/decoration/ArmorStand/lambda$static$0 (Lnet/minecraft/world/entity/Entity;)Z +MD: net/minecraft/world/entity/decoration/ArmorStand/m_31588_ (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/entity/EquipmentSlot;Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/InteractionHand;)Z net/minecraft/world/entity/decoration/ArmorStand/swapItem (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/entity/EquipmentSlot;Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/InteractionHand;)Z +MD: net/minecraft/world/entity/decoration/ArmorStand/m_31597_ (Lnet/minecraft/core/Rotations;)V net/minecraft/world/entity/decoration/ArmorStand/setHeadPose (Lnet/minecraft/core/Rotations;)V +MD: net/minecraft/world/entity/decoration/ArmorStand/m_31603_ (Z)V net/minecraft/world/entity/decoration/ArmorStand/setSmall (Z)V +MD: net/minecraft/world/entity/decoration/ArmorStand/m_31616_ (Lnet/minecraft/core/Rotations;)V net/minecraft/world/entity/decoration/ArmorStand/setBodyPose (Lnet/minecraft/core/Rotations;)V +MD: net/minecraft/world/entity/decoration/ArmorStand/m_31623_ (Lnet/minecraft/core/Rotations;)V net/minecraft/world/entity/decoration/ArmorStand/setLeftArmPose (Lnet/minecraft/core/Rotations;)V +MD: net/minecraft/world/entity/decoration/ArmorStand/m_31626_ (Lnet/minecraft/world/entity/EquipmentSlot;)Z net/minecraft/world/entity/decoration/ArmorStand/isDisabled (Lnet/minecraft/world/entity/EquipmentSlot;)Z +MD: net/minecraft/world/entity/decoration/ArmorStand/m_31628_ (Lnet/minecraft/core/Rotations;)V net/minecraft/world/entity/decoration/ArmorStand/setRightArmPose (Lnet/minecraft/core/Rotations;)V +MD: net/minecraft/world/entity/decoration/ArmorStand/m_31639_ (Lnet/minecraft/core/Rotations;)V net/minecraft/world/entity/decoration/ArmorStand/setLeftLegPose (Lnet/minecraft/core/Rotations;)V +MD: net/minecraft/world/entity/decoration/ArmorStand/m_31646_ (Lnet/minecraft/world/damagesource/DamageSource;)V net/minecraft/world/entity/decoration/ArmorStand/brokenByPlayer (Lnet/minecraft/world/damagesource/DamageSource;)V +MD: net/minecraft/world/entity/decoration/ArmorStand/m_31648_ (Lnet/minecraft/world/damagesource/DamageSource;F)V net/minecraft/world/entity/decoration/ArmorStand/causeDamage (Lnet/minecraft/world/damagesource/DamageSource;F)V +MD: net/minecraft/world/entity/decoration/ArmorStand/m_31651_ (Lnet/minecraft/core/Rotations;)V net/minecraft/world/entity/decoration/ArmorStand/setRightLegPose (Lnet/minecraft/core/Rotations;)V +MD: net/minecraft/world/entity/decoration/ArmorStand/m_31653_ (Lnet/minecraft/world/damagesource/DamageSource;)V net/minecraft/world/entity/decoration/ArmorStand/brokenByAnything (Lnet/minecraft/world/damagesource/DamageSource;)V +MD: net/minecraft/world/entity/decoration/ArmorStand/m_31657_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/entity/decoration/ArmorStand/readPose (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/entity/decoration/ArmorStand/m_31659_ (Lnet/minecraft/world/phys/Vec3;)Lnet/minecraft/world/entity/EquipmentSlot; net/minecraft/world/entity/decoration/ArmorStand/getClickedSlot (Lnet/minecraft/world/phys/Vec3;)Lnet/minecraft/world/entity/EquipmentSlot; +MD: net/minecraft/world/entity/decoration/ArmorStand/m_31666_ ()Z net/minecraft/world/entity/decoration/ArmorStand/isSmall ()Z +MD: net/minecraft/world/entity/decoration/ArmorStand/m_31671_ ()Z net/minecraft/world/entity/decoration/ArmorStand/isShowArms ()Z +MD: net/minecraft/world/entity/decoration/ArmorStand/m_31674_ ()Z net/minecraft/world/entity/decoration/ArmorStand/isNoBasePlate ()Z +MD: net/minecraft/world/entity/decoration/ArmorStand/m_31675_ (Z)V net/minecraft/world/entity/decoration/ArmorStand/setShowArms (Z)V +MD: net/minecraft/world/entity/decoration/ArmorStand/m_31677_ ()Z net/minecraft/world/entity/decoration/ArmorStand/isMarker ()Z +MD: net/minecraft/world/entity/decoration/ArmorStand/m_31678_ (Z)V net/minecraft/world/entity/decoration/ArmorStand/setNoBasePlate (Z)V +MD: net/minecraft/world/entity/decoration/ArmorStand/m_31680_ ()Lnet/minecraft/core/Rotations; net/minecraft/world/entity/decoration/ArmorStand/getHeadPose ()Lnet/minecraft/core/Rotations; +MD: net/minecraft/world/entity/decoration/ArmorStand/m_31681_ (Z)V net/minecraft/world/entity/decoration/ArmorStand/setMarker (Z)V +MD: net/minecraft/world/entity/decoration/ArmorStand/m_31683_ (Z)Lnet/minecraft/world/entity/EntityDimensions; net/minecraft/world/entity/decoration/ArmorStand/getDimensionsMarker (Z)Lnet/minecraft/world/entity/EntityDimensions; +MD: net/minecraft/world/entity/decoration/ArmorStand/m_31685_ ()Lnet/minecraft/core/Rotations; net/minecraft/world/entity/decoration/ArmorStand/getBodyPose ()Lnet/minecraft/core/Rotations; +MD: net/minecraft/world/entity/decoration/ArmorStand/m_31688_ ()Lnet/minecraft/core/Rotations; net/minecraft/world/entity/decoration/ArmorStand/getLeftArmPose ()Lnet/minecraft/core/Rotations; +MD: net/minecraft/world/entity/decoration/ArmorStand/m_31689_ ()Lnet/minecraft/core/Rotations; net/minecraft/world/entity/decoration/ArmorStand/getRightArmPose ()Lnet/minecraft/core/Rotations; +MD: net/minecraft/world/entity/decoration/ArmorStand/m_31691_ ()Lnet/minecraft/core/Rotations; net/minecraft/world/entity/decoration/ArmorStand/getLeftLegPose ()Lnet/minecraft/core/Rotations; +MD: net/minecraft/world/entity/decoration/ArmorStand/m_31694_ ()Lnet/minecraft/core/Rotations; net/minecraft/world/entity/decoration/ArmorStand/getRightLegPose ()Lnet/minecraft/core/Rotations; +MD: net/minecraft/world/entity/decoration/ArmorStand/m_5592_ ()Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/decoration/ArmorStand/getDeathSound ()Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/decoration/ArmorStand/m_5616_ (F)V net/minecraft/world/entity/decoration/ArmorStand/setYHeadRot (F)V +MD: net/minecraft/world/entity/decoration/ArmorStand/m_5618_ (F)V net/minecraft/world/entity/decoration/ArmorStand/setYBodyRot (F)V +MD: net/minecraft/world/entity/decoration/ArmorStand/m_5632_ (FF)F net/minecraft/world/entity/decoration/ArmorStand/tickHeadTurn (FF)F +MD: net/minecraft/world/entity/decoration/ArmorStand/m_5737_ ()Lnet/minecraft/world/entity/HumanoidArm; net/minecraft/world/entity/decoration/ArmorStand/getMainArm ()Lnet/minecraft/world/entity/HumanoidArm; +MD: net/minecraft/world/entity/decoration/ArmorStand/m_5789_ ()Z net/minecraft/world/entity/decoration/ArmorStand/attackable ()Z +MD: net/minecraft/world/entity/decoration/ArmorStand/m_5801_ ()Z net/minecraft/world/entity/decoration/ArmorStand/isAffectedByPotions ()Z +MD: net/minecraft/world/entity/decoration/ArmorStand/m_6049_ ()D net/minecraft/world/entity/decoration/ArmorStand/getMyRidingOffset ()D +MD: net/minecraft/world/entity/decoration/ArmorStand/m_6074_ ()V net/minecraft/world/entity/decoration/ArmorStand/kill ()V +MD: net/minecraft/world/entity/decoration/ArmorStand/m_6087_ ()Z net/minecraft/world/entity/decoration/ArmorStand/isPickable ()Z +MD: net/minecraft/world/entity/decoration/ArmorStand/m_6090_ ()Z net/minecraft/world/entity/decoration/ArmorStand/isIgnoringBlockTriggers ()Z +MD: net/minecraft/world/entity/decoration/ArmorStand/m_6094_ ()Z net/minecraft/world/entity/decoration/ArmorStand/isPushable ()Z +MD: net/minecraft/world/entity/decoration/ArmorStand/m_6128_ ()Z net/minecraft/world/entity/decoration/ArmorStand/ignoreExplosion ()Z +MD: net/minecraft/world/entity/decoration/ArmorStand/m_6138_ ()V net/minecraft/world/entity/decoration/ArmorStand/pushEntities ()V +MD: net/minecraft/world/entity/decoration/ArmorStand/m_6162_ ()Z net/minecraft/world/entity/decoration/ArmorStand/isBaby ()Z +MD: net/minecraft/world/entity/decoration/ArmorStand/m_6167_ ()Ljava/lang/Iterable; net/minecraft/world/entity/decoration/ArmorStand/getHandSlots ()Ljava/lang/Iterable; +MD: net/minecraft/world/entity/decoration/ArmorStand/m_6168_ ()Ljava/lang/Iterable; net/minecraft/world/entity/decoration/ArmorStand/getArmorSlots ()Ljava/lang/Iterable; +MD: net/minecraft/world/entity/decoration/ArmorStand/m_6210_ ()V net/minecraft/world/entity/decoration/ArmorStand/refreshDimensions ()V +MD: net/minecraft/world/entity/decoration/ArmorStand/m_6431_ (Lnet/minecraft/world/entity/Pose;Lnet/minecraft/world/entity/EntityDimensions;)F net/minecraft/world/entity/decoration/ArmorStand/getStandingEyeHeight (Lnet/minecraft/world/entity/Pose;Lnet/minecraft/world/entity/EntityDimensions;)F +MD: net/minecraft/world/entity/decoration/ArmorStand/m_6469_ (Lnet/minecraft/world/damagesource/DamageSource;F)Z net/minecraft/world/entity/decoration/ArmorStand/hurt (Lnet/minecraft/world/damagesource/DamageSource;F)Z +MD: net/minecraft/world/entity/decoration/ArmorStand/m_6783_ (D)Z net/minecraft/world/entity/decoration/ArmorStand/shouldRenderAtSqrDistance (D)Z +MD: net/minecraft/world/entity/decoration/ArmorStand/m_6842_ (Z)V net/minecraft/world/entity/decoration/ArmorStand/setInvisible (Z)V +MD: net/minecraft/world/entity/decoration/ArmorStand/m_6844_ (Lnet/minecraft/world/entity/EquipmentSlot;)Lnet/minecraft/world/item/ItemStack; net/minecraft/world/entity/decoration/ArmorStand/getItemBySlot (Lnet/minecraft/world/entity/EquipmentSlot;)Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/entity/decoration/ArmorStand/m_6972_ (Lnet/minecraft/world/entity/Pose;)Lnet/minecraft/world/entity/EntityDimensions; net/minecraft/world/entity/decoration/ArmorStand/getDimensions (Lnet/minecraft/world/entity/Pose;)Lnet/minecraft/world/entity/EntityDimensions; +MD: net/minecraft/world/entity/decoration/ArmorStand/m_7023_ (Lnet/minecraft/world/phys/Vec3;)V net/minecraft/world/entity/decoration/ArmorStand/travel (Lnet/minecraft/world/phys/Vec3;)V +MD: net/minecraft/world/entity/decoration/ArmorStand/m_7066_ (Lnet/minecraft/world/item/ItemStack;)Z net/minecraft/world/entity/decoration/ArmorStand/canTakeItem (Lnet/minecraft/world/item/ItemStack;)Z +MD: net/minecraft/world/entity/decoration/ArmorStand/m_7111_ (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/phys/Vec3;Lnet/minecraft/world/InteractionHand;)Lnet/minecraft/world/InteractionResult; net/minecraft/world/entity/decoration/ArmorStand/interactAt (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/phys/Vec3;Lnet/minecraft/world/InteractionHand;)Lnet/minecraft/world/InteractionResult; +MD: net/minecraft/world/entity/decoration/ArmorStand/m_7313_ (Lnet/minecraft/world/entity/Entity;)Z net/minecraft/world/entity/decoration/ArmorStand/skipAttackInteraction (Lnet/minecraft/world/entity/Entity;)Z +MD: net/minecraft/world/entity/decoration/ArmorStand/m_7324_ (Lnet/minecraft/world/entity/Entity;)V net/minecraft/world/entity/decoration/ArmorStand/doPush (Lnet/minecraft/world/entity/Entity;)V +MD: net/minecraft/world/entity/decoration/ArmorStand/m_7350_ (Lnet/minecraft/network/syncher/EntityDataAccessor;)V net/minecraft/world/entity/decoration/ArmorStand/onSyncedDataUpdated (Lnet/minecraft/network/syncher/EntityDataAccessor;)V +MD: net/minecraft/world/entity/decoration/ArmorStand/m_7371_ (F)Lnet/minecraft/world/phys/Vec3; net/minecraft/world/entity/decoration/ArmorStand/getLightProbePosition (F)Lnet/minecraft/world/phys/Vec3; +MD: net/minecraft/world/entity/decoration/ArmorStand/m_7378_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/entity/decoration/ArmorStand/readAdditionalSaveData (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/entity/decoration/ArmorStand/m_7380_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/entity/decoration/ArmorStand/addAdditionalSaveData (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/entity/decoration/ArmorStand/m_7752_ ()Lnet/minecraft/world/level/material/PushReaction; net/minecraft/world/entity/decoration/ArmorStand/getPistonPushReaction ()Lnet/minecraft/world/level/material/PushReaction; +MD: net/minecraft/world/entity/decoration/ArmorStand/m_7822_ (B)V net/minecraft/world/entity/decoration/ArmorStand/handleEntityEvent (B)V +MD: net/minecraft/world/entity/decoration/ArmorStand/m_7975_ (Lnet/minecraft/world/damagesource/DamageSource;)Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/decoration/ArmorStand/getHurtSound (Lnet/minecraft/world/damagesource/DamageSource;)Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/decoration/ArmorStand/m_8034_ ()V net/minecraft/world/entity/decoration/ArmorStand/updateInvisibilityStatus ()V +MD: net/minecraft/world/entity/decoration/ArmorStand/m_8038_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LightningBolt;)V net/minecraft/world/entity/decoration/ArmorStand/thunderHit (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LightningBolt;)V +MD: net/minecraft/world/entity/decoration/ArmorStand/m_8061_ (Lnet/minecraft/world/entity/EquipmentSlot;Lnet/minecraft/world/item/ItemStack;)V net/minecraft/world/entity/decoration/ArmorStand/setItemSlot (Lnet/minecraft/world/entity/EquipmentSlot;Lnet/minecraft/world/item/ItemStack;)V +MD: net/minecraft/world/entity/decoration/ArmorStand/m_8097_ ()V net/minecraft/world/entity/decoration/ArmorStand/defineSynchedData ()V +MD: net/minecraft/world/entity/decoration/ArmorStand/m_8119_ ()V net/minecraft/world/entity/decoration/ArmorStand/tick ()V +MD: net/minecraft/world/entity/decoration/ArmorStand$1/ ()V net/minecraft/world/entity/decoration/ArmorStand$1/ ()V +MD: net/minecraft/world/entity/decoration/GlowItemFrame/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V net/minecraft/world/entity/decoration/GlowItemFrame/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V +MD: net/minecraft/world/entity/decoration/GlowItemFrame/ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Direction;)V net/minecraft/world/entity/decoration/GlowItemFrame/ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Direction;)V +MD: net/minecraft/world/entity/decoration/GlowItemFrame/m_142541_ ()Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/decoration/GlowItemFrame/getPlaceSound ()Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/decoration/GlowItemFrame/m_142543_ ()Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/decoration/GlowItemFrame/getBreakSound ()Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/decoration/GlowItemFrame/m_142544_ ()Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/decoration/GlowItemFrame/getRemoveItemSound ()Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/decoration/GlowItemFrame/m_142545_ ()Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/decoration/GlowItemFrame/getRotateItemSound ()Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/decoration/GlowItemFrame/m_142546_ ()Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/decoration/GlowItemFrame/getAddItemSound ()Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/decoration/GlowItemFrame/m_142590_ ()Lnet/minecraft/world/item/ItemStack; net/minecraft/world/entity/decoration/GlowItemFrame/getFrameItemStack ()Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/entity/decoration/HangingEntity/ ()V net/minecraft/world/entity/decoration/HangingEntity/ ()V +MD: net/minecraft/world/entity/decoration/HangingEntity/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V net/minecraft/world/entity/decoration/HangingEntity/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V +MD: net/minecraft/world/entity/decoration/HangingEntity/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;)V net/minecraft/world/entity/decoration/HangingEntity/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/world/entity/decoration/HangingEntity/m_31709_ (I)D net/minecraft/world/entity/decoration/HangingEntity/offs (I)D +MD: net/minecraft/world/entity/decoration/HangingEntity/m_31733_ (Lnet/minecraft/world/entity/Entity;)Z net/minecraft/world/entity/decoration/HangingEntity/lambda$static$0 (Lnet/minecraft/world/entity/Entity;)Z +MD: net/minecraft/world/entity/decoration/HangingEntity/m_31748_ ()Lnet/minecraft/core/BlockPos; net/minecraft/world/entity/decoration/HangingEntity/getPos ()Lnet/minecraft/core/BlockPos; +MD: net/minecraft/world/entity/decoration/HangingEntity/m_5552_ (Lnet/minecraft/world/item/ItemStack;F)Lnet/minecraft/world/entity/item/ItemEntity; net/minecraft/world/entity/decoration/HangingEntity/spawnAtLocation (Lnet/minecraft/world/item/ItemStack;F)Lnet/minecraft/world/entity/item/ItemEntity; +MD: net/minecraft/world/entity/decoration/HangingEntity/m_5553_ (Lnet/minecraft/world/entity/Entity;)V net/minecraft/world/entity/decoration/HangingEntity/dropItem (Lnet/minecraft/world/entity/Entity;)V +MD: net/minecraft/world/entity/decoration/HangingEntity/m_5997_ (DDD)V net/minecraft/world/entity/decoration/HangingEntity/push (DDD)V +MD: net/minecraft/world/entity/decoration/HangingEntity/m_6022_ (Lnet/minecraft/core/Direction;)V net/minecraft/world/entity/decoration/HangingEntity/setDirection (Lnet/minecraft/core/Direction;)V +MD: net/minecraft/world/entity/decoration/HangingEntity/m_6034_ (DDD)V net/minecraft/world/entity/decoration/HangingEntity/setPos (DDD)V +MD: net/minecraft/world/entity/decoration/HangingEntity/m_6087_ ()Z net/minecraft/world/entity/decoration/HangingEntity/isPickable ()Z +MD: net/minecraft/world/entity/decoration/HangingEntity/m_6093_ ()Z net/minecraft/world/entity/decoration/HangingEntity/repositionEntityAfterLoad ()Z +MD: net/minecraft/world/entity/decoration/HangingEntity/m_6210_ ()V net/minecraft/world/entity/decoration/HangingEntity/refreshDimensions ()V +MD: net/minecraft/world/entity/decoration/HangingEntity/m_6350_ ()Lnet/minecraft/core/Direction; net/minecraft/world/entity/decoration/HangingEntity/getDirection ()Lnet/minecraft/core/Direction; +MD: net/minecraft/world/entity/decoration/HangingEntity/m_6469_ (Lnet/minecraft/world/damagesource/DamageSource;F)Z net/minecraft/world/entity/decoration/HangingEntity/hurt (Lnet/minecraft/world/damagesource/DamageSource;F)Z +MD: net/minecraft/world/entity/decoration/HangingEntity/m_6478_ (Lnet/minecraft/world/entity/MoverType;Lnet/minecraft/world/phys/Vec3;)V net/minecraft/world/entity/decoration/HangingEntity/move (Lnet/minecraft/world/entity/MoverType;Lnet/minecraft/world/phys/Vec3;)V +MD: net/minecraft/world/entity/decoration/HangingEntity/m_6961_ (Lnet/minecraft/world/level/block/Mirror;)F net/minecraft/world/entity/decoration/HangingEntity/mirror (Lnet/minecraft/world/level/block/Mirror;)F +MD: net/minecraft/world/entity/decoration/HangingEntity/m_7068_ ()I net/minecraft/world/entity/decoration/HangingEntity/getHeight ()I +MD: net/minecraft/world/entity/decoration/HangingEntity/m_7076_ ()I net/minecraft/world/entity/decoration/HangingEntity/getWidth ()I +MD: net/minecraft/world/entity/decoration/HangingEntity/m_7084_ ()V net/minecraft/world/entity/decoration/HangingEntity/playPlacementSound ()V +MD: net/minecraft/world/entity/decoration/HangingEntity/m_7087_ ()V net/minecraft/world/entity/decoration/HangingEntity/recalculateBoundingBox ()V +MD: net/minecraft/world/entity/decoration/HangingEntity/m_7088_ ()Z net/minecraft/world/entity/decoration/HangingEntity/survives ()Z +MD: net/minecraft/world/entity/decoration/HangingEntity/m_7313_ (Lnet/minecraft/world/entity/Entity;)Z net/minecraft/world/entity/decoration/HangingEntity/skipAttackInteraction (Lnet/minecraft/world/entity/Entity;)Z +MD: net/minecraft/world/entity/decoration/HangingEntity/m_7378_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/entity/decoration/HangingEntity/readAdditionalSaveData (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/entity/decoration/HangingEntity/m_7380_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/entity/decoration/HangingEntity/addAdditionalSaveData (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/entity/decoration/HangingEntity/m_7890_ (Lnet/minecraft/world/level/block/Rotation;)F net/minecraft/world/entity/decoration/HangingEntity/rotate (Lnet/minecraft/world/level/block/Rotation;)F +MD: net/minecraft/world/entity/decoration/HangingEntity/m_8038_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LightningBolt;)V net/minecraft/world/entity/decoration/HangingEntity/thunderHit (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LightningBolt;)V +MD: net/minecraft/world/entity/decoration/HangingEntity/m_8097_ ()V net/minecraft/world/entity/decoration/HangingEntity/defineSynchedData ()V +MD: net/minecraft/world/entity/decoration/HangingEntity/m_8119_ ()V net/minecraft/world/entity/decoration/HangingEntity/tick ()V +MD: net/minecraft/world/entity/decoration/HangingEntity$1/ ()V net/minecraft/world/entity/decoration/HangingEntity$1/ ()V +MD: net/minecraft/world/entity/decoration/ItemFrame/ ()V net/minecraft/world/entity/decoration/ItemFrame/ ()V +MD: net/minecraft/world/entity/decoration/ItemFrame/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V net/minecraft/world/entity/decoration/ItemFrame/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V +MD: net/minecraft/world/entity/decoration/ItemFrame/ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Direction;)V net/minecraft/world/entity/decoration/ItemFrame/ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Direction;)V +MD: net/minecraft/world/entity/decoration/ItemFrame/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Direction;)V net/minecraft/world/entity/decoration/ItemFrame/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Direction;)V +MD: net/minecraft/world/entity/decoration/ItemFrame/m_141942_ (I)Lnet/minecraft/world/entity/SlotAccess; net/minecraft/world/entity/decoration/ItemFrame/getSlot (I)Lnet/minecraft/world/entity/SlotAccess; +MD: net/minecraft/world/entity/decoration/ItemFrame/m_141965_ (Lnet/minecraft/network/protocol/game/ClientboundAddEntityPacket;)V net/minecraft/world/entity/decoration/ItemFrame/recreateFromPacket (Lnet/minecraft/network/protocol/game/ClientboundAddEntityPacket;)V +MD: net/minecraft/world/entity/decoration/ItemFrame/m_142340_ ()Lnet/minecraft/world/item/ItemStack; net/minecraft/world/entity/decoration/ItemFrame/getPickResult ()Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/entity/decoration/ItemFrame/m_142541_ ()Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/decoration/ItemFrame/getPlaceSound ()Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/decoration/ItemFrame/m_142543_ ()Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/decoration/ItemFrame/getBreakSound ()Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/decoration/ItemFrame/m_142544_ ()Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/decoration/ItemFrame/getRemoveItemSound ()Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/decoration/ItemFrame/m_142545_ ()Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/decoration/ItemFrame/getRotateItemSound ()Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/decoration/ItemFrame/m_142546_ ()Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/decoration/ItemFrame/getAddItemSound ()Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/decoration/ItemFrame/m_142590_ ()Lnet/minecraft/world/item/ItemStack; net/minecraft/world/entity/decoration/ItemFrame/getFrameItemStack ()Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/entity/decoration/ItemFrame/m_213816_ ()F net/minecraft/world/entity/decoration/ItemFrame/getVisualRotationYInDegrees ()F +MD: net/minecraft/world/entity/decoration/ItemFrame/m_218865_ (Lnet/minecraft/world/item/ItemStack;)V net/minecraft/world/entity/decoration/ItemFrame/onItemChanged (Lnet/minecraft/world/item/ItemStack;)V +MD: net/minecraft/world/entity/decoration/ItemFrame/m_218868_ ()Ljava/util/OptionalInt; net/minecraft/world/entity/decoration/ItemFrame/getFramedMapId ()Ljava/util/OptionalInt; +MD: net/minecraft/world/entity/decoration/ItemFrame/m_218869_ ()Z net/minecraft/world/entity/decoration/ItemFrame/hasFramedMap ()Z +MD: net/minecraft/world/entity/decoration/ItemFrame/m_289145_ (I)V net/minecraft/world/entity/decoration/ItemFrame/lambda$removeFramedMap$0 (I)V +MD: net/minecraft/world/entity/decoration/ItemFrame/m_31770_ (I)V net/minecraft/world/entity/decoration/ItemFrame/setRotation (I)V +MD: net/minecraft/world/entity/decoration/ItemFrame/m_31772_ (IZ)V net/minecraft/world/entity/decoration/ItemFrame/setRotation (IZ)V +MD: net/minecraft/world/entity/decoration/ItemFrame/m_31789_ (Lnet/minecraft/world/item/ItemStack;Z)V net/minecraft/world/entity/decoration/ItemFrame/setItem (Lnet/minecraft/world/item/ItemStack;Z)V +MD: net/minecraft/world/entity/decoration/ItemFrame/m_31802_ (Lnet/minecraft/world/entity/Entity;Z)V net/minecraft/world/entity/decoration/ItemFrame/dropItem (Lnet/minecraft/world/entity/Entity;Z)V +MD: net/minecraft/world/entity/decoration/ItemFrame/m_31805_ (Lnet/minecraft/world/item/ItemStack;)V net/minecraft/world/entity/decoration/ItemFrame/setItem (Lnet/minecraft/world/item/ItemStack;)V +MD: net/minecraft/world/entity/decoration/ItemFrame/m_31810_ (Lnet/minecraft/world/item/ItemStack;)V net/minecraft/world/entity/decoration/ItemFrame/removeFramedMap (Lnet/minecraft/world/item/ItemStack;)V +MD: net/minecraft/world/entity/decoration/ItemFrame/m_31822_ ()Lnet/minecraft/world/item/ItemStack; net/minecraft/world/entity/decoration/ItemFrame/getItem ()Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/entity/decoration/ItemFrame/m_31823_ ()I net/minecraft/world/entity/decoration/ItemFrame/getRotation ()I +MD: net/minecraft/world/entity/decoration/ItemFrame/m_31824_ ()I net/minecraft/world/entity/decoration/ItemFrame/getAnalogOutput ()I +MD: net/minecraft/world/entity/decoration/ItemFrame/m_5553_ (Lnet/minecraft/world/entity/Entity;)V net/minecraft/world/entity/decoration/ItemFrame/dropItem (Lnet/minecraft/world/entity/Entity;)V +MD: net/minecraft/world/entity/decoration/ItemFrame/m_5654_ ()Lnet/minecraft/network/protocol/Packet; net/minecraft/world/entity/decoration/ItemFrame/getAddEntityPacket ()Lnet/minecraft/network/protocol/Packet; +MD: net/minecraft/world/entity/decoration/ItemFrame/m_5997_ (DDD)V net/minecraft/world/entity/decoration/ItemFrame/push (DDD)V +MD: net/minecraft/world/entity/decoration/ItemFrame/m_6022_ (Lnet/minecraft/core/Direction;)V net/minecraft/world/entity/decoration/ItemFrame/setDirection (Lnet/minecraft/core/Direction;)V +MD: net/minecraft/world/entity/decoration/ItemFrame/m_6074_ ()V net/minecraft/world/entity/decoration/ItemFrame/kill ()V +MD: net/minecraft/world/entity/decoration/ItemFrame/m_6096_ (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;)Lnet/minecraft/world/InteractionResult; net/minecraft/world/entity/decoration/ItemFrame/interact (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;)Lnet/minecraft/world/InteractionResult; +MD: net/minecraft/world/entity/decoration/ItemFrame/m_6143_ ()F net/minecraft/world/entity/decoration/ItemFrame/getPickRadius ()F +MD: net/minecraft/world/entity/decoration/ItemFrame/m_6380_ (Lnet/minecraft/world/entity/Pose;Lnet/minecraft/world/entity/EntityDimensions;)F net/minecraft/world/entity/decoration/ItemFrame/getEyeHeight (Lnet/minecraft/world/entity/Pose;Lnet/minecraft/world/entity/EntityDimensions;)F +MD: net/minecraft/world/entity/decoration/ItemFrame/m_6469_ (Lnet/minecraft/world/damagesource/DamageSource;F)Z net/minecraft/world/entity/decoration/ItemFrame/hurt (Lnet/minecraft/world/damagesource/DamageSource;F)Z +MD: net/minecraft/world/entity/decoration/ItemFrame/m_6478_ (Lnet/minecraft/world/entity/MoverType;Lnet/minecraft/world/phys/Vec3;)V net/minecraft/world/entity/decoration/ItemFrame/move (Lnet/minecraft/world/entity/MoverType;Lnet/minecraft/world/phys/Vec3;)V +MD: net/minecraft/world/entity/decoration/ItemFrame/m_6783_ (D)Z net/minecraft/world/entity/decoration/ItemFrame/shouldRenderAtSqrDistance (D)Z +MD: net/minecraft/world/entity/decoration/ItemFrame/m_7068_ ()I net/minecraft/world/entity/decoration/ItemFrame/getHeight ()I +MD: net/minecraft/world/entity/decoration/ItemFrame/m_7076_ ()I net/minecraft/world/entity/decoration/ItemFrame/getWidth ()I +MD: net/minecraft/world/entity/decoration/ItemFrame/m_7084_ ()V net/minecraft/world/entity/decoration/ItemFrame/playPlacementSound ()V +MD: net/minecraft/world/entity/decoration/ItemFrame/m_7087_ ()V net/minecraft/world/entity/decoration/ItemFrame/recalculateBoundingBox ()V +MD: net/minecraft/world/entity/decoration/ItemFrame/m_7088_ ()Z net/minecraft/world/entity/decoration/ItemFrame/survives ()Z +MD: net/minecraft/world/entity/decoration/ItemFrame/m_7350_ (Lnet/minecraft/network/syncher/EntityDataAccessor;)V net/minecraft/world/entity/decoration/ItemFrame/onSyncedDataUpdated (Lnet/minecraft/network/syncher/EntityDataAccessor;)V +MD: net/minecraft/world/entity/decoration/ItemFrame/m_7378_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/entity/decoration/ItemFrame/readAdditionalSaveData (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/entity/decoration/ItemFrame/m_7380_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/entity/decoration/ItemFrame/addAdditionalSaveData (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/entity/decoration/ItemFrame/m_8097_ ()V net/minecraft/world/entity/decoration/ItemFrame/defineSynchedData ()V +MD: net/minecraft/world/entity/decoration/ItemFrame$1/ (Lnet/minecraft/world/entity/decoration/ItemFrame;)V net/minecraft/world/entity/decoration/ItemFrame$1/ (Lnet/minecraft/world/entity/decoration/ItemFrame;)V +MD: net/minecraft/world/entity/decoration/ItemFrame$1/m_142104_ (Lnet/minecraft/world/item/ItemStack;)Z net/minecraft/world/entity/decoration/ItemFrame$1/set (Lnet/minecraft/world/item/ItemStack;)Z +MD: net/minecraft/world/entity/decoration/ItemFrame$1/m_142196_ ()Lnet/minecraft/world/item/ItemStack; net/minecraft/world/entity/decoration/ItemFrame$1/get ()Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/entity/decoration/ItemFrame$2/ ()V net/minecraft/world/entity/decoration/ItemFrame$2/ ()V +MD: net/minecraft/world/entity/decoration/LeashFenceKnotEntity/ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;)V net/minecraft/world/entity/decoration/LeashFenceKnotEntity/ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/world/entity/decoration/LeashFenceKnotEntity/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V net/minecraft/world/entity/decoration/LeashFenceKnotEntity/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V +MD: net/minecraft/world/entity/decoration/LeashFenceKnotEntity/m_142340_ ()Lnet/minecraft/world/item/ItemStack; net/minecraft/world/entity/decoration/LeashFenceKnotEntity/getPickResult ()Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/entity/decoration/LeashFenceKnotEntity/m_31844_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/entity/decoration/LeashFenceKnotEntity; net/minecraft/world/entity/decoration/LeashFenceKnotEntity/getOrCreateKnot (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/entity/decoration/LeashFenceKnotEntity; +MD: net/minecraft/world/entity/decoration/LeashFenceKnotEntity/m_5553_ (Lnet/minecraft/world/entity/Entity;)V net/minecraft/world/entity/decoration/LeashFenceKnotEntity/dropItem (Lnet/minecraft/world/entity/Entity;)V +MD: net/minecraft/world/entity/decoration/LeashFenceKnotEntity/m_5654_ ()Lnet/minecraft/network/protocol/Packet; net/minecraft/world/entity/decoration/LeashFenceKnotEntity/getAddEntityPacket ()Lnet/minecraft/network/protocol/Packet; +MD: net/minecraft/world/entity/decoration/LeashFenceKnotEntity/m_6022_ (Lnet/minecraft/core/Direction;)V net/minecraft/world/entity/decoration/LeashFenceKnotEntity/setDirection (Lnet/minecraft/core/Direction;)V +MD: net/minecraft/world/entity/decoration/LeashFenceKnotEntity/m_6096_ (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;)Lnet/minecraft/world/InteractionResult; net/minecraft/world/entity/decoration/LeashFenceKnotEntity/interact (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;)Lnet/minecraft/world/InteractionResult; +MD: net/minecraft/world/entity/decoration/LeashFenceKnotEntity/m_6380_ (Lnet/minecraft/world/entity/Pose;Lnet/minecraft/world/entity/EntityDimensions;)F net/minecraft/world/entity/decoration/LeashFenceKnotEntity/getEyeHeight (Lnet/minecraft/world/entity/Pose;Lnet/minecraft/world/entity/EntityDimensions;)F +MD: net/minecraft/world/entity/decoration/LeashFenceKnotEntity/m_6783_ (D)Z net/minecraft/world/entity/decoration/LeashFenceKnotEntity/shouldRenderAtSqrDistance (D)Z +MD: net/minecraft/world/entity/decoration/LeashFenceKnotEntity/m_7068_ ()I net/minecraft/world/entity/decoration/LeashFenceKnotEntity/getHeight ()I +MD: net/minecraft/world/entity/decoration/LeashFenceKnotEntity/m_7076_ ()I net/minecraft/world/entity/decoration/LeashFenceKnotEntity/getWidth ()I +MD: net/minecraft/world/entity/decoration/LeashFenceKnotEntity/m_7084_ ()V net/minecraft/world/entity/decoration/LeashFenceKnotEntity/playPlacementSound ()V +MD: net/minecraft/world/entity/decoration/LeashFenceKnotEntity/m_7087_ ()V net/minecraft/world/entity/decoration/LeashFenceKnotEntity/recalculateBoundingBox ()V +MD: net/minecraft/world/entity/decoration/LeashFenceKnotEntity/m_7088_ ()Z net/minecraft/world/entity/decoration/LeashFenceKnotEntity/survives ()Z +MD: net/minecraft/world/entity/decoration/LeashFenceKnotEntity/m_7378_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/entity/decoration/LeashFenceKnotEntity/readAdditionalSaveData (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/entity/decoration/LeashFenceKnotEntity/m_7380_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/entity/decoration/LeashFenceKnotEntity/addAdditionalSaveData (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/entity/decoration/LeashFenceKnotEntity/m_7398_ (F)Lnet/minecraft/world/phys/Vec3; net/minecraft/world/entity/decoration/LeashFenceKnotEntity/getRopeHoldPosition (F)Lnet/minecraft/world/phys/Vec3; +MD: net/minecraft/world/entity/decoration/Painting/ ()V net/minecraft/world/entity/decoration/Painting/ ()V +MD: net/minecraft/world/entity/decoration/Painting/ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;)V net/minecraft/world/entity/decoration/Painting/ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/world/entity/decoration/Painting/ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Direction;Lnet/minecraft/core/Holder;)V net/minecraft/world/entity/decoration/Painting/ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Direction;Lnet/minecraft/core/Holder;)V +MD: net/minecraft/world/entity/decoration/Painting/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V net/minecraft/world/entity/decoration/Painting/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V +MD: net/minecraft/world/entity/decoration/Painting/m_141965_ (Lnet/minecraft/network/protocol/game/ClientboundAddEntityPacket;)V net/minecraft/world/entity/decoration/Painting/recreateFromPacket (Lnet/minecraft/network/protocol/game/ClientboundAddEntityPacket;)V +MD: net/minecraft/world/entity/decoration/Painting/m_142340_ ()Lnet/minecraft/world/item/ItemStack; net/minecraft/world/entity/decoration/Painting/getPickResult ()Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/entity/decoration/Painting/m_213870_ ()Lnet/minecraft/world/phys/Vec3; net/minecraft/world/entity/decoration/Painting/trackingPosition ()Lnet/minecraft/world/phys/Vec3; +MD: net/minecraft/world/entity/decoration/Painting/m_218881_ (ILnet/minecraft/core/Holder;)Z net/minecraft/world/entity/decoration/Painting/lambda$create$1 (ILnet/minecraft/core/Holder;)Z +MD: net/minecraft/world/entity/decoration/Painting/m_218887_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Direction;)Ljava/util/Optional; net/minecraft/world/entity/decoration/Painting/create (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Direction;)Ljava/util/Optional; +MD: net/minecraft/world/entity/decoration/Painting/m_218898_ (Lnet/minecraft/core/Holder;)I net/minecraft/world/entity/decoration/Painting/variantArea (Lnet/minecraft/core/Holder;)I +MD: net/minecraft/world/entity/decoration/Painting/m_218902_ ()Lnet/minecraft/core/Holder; net/minecraft/world/entity/decoration/Painting/getDefaultVariant ()Lnet/minecraft/core/Holder; +MD: net/minecraft/world/entity/decoration/Painting/m_257312_ (Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/resources/ResourceKey; net/minecraft/world/entity/decoration/Painting/lambda$loadVariant$2 (Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/resources/ResourceKey; +MD: net/minecraft/world/entity/decoration/Painting/m_269030_ (Lnet/minecraft/nbt/CompoundTag;)Ljava/util/Optional; net/minecraft/world/entity/decoration/Painting/loadVariant (Lnet/minecraft/nbt/CompoundTag;)Ljava/util/Optional; +MD: net/minecraft/world/entity/decoration/Painting/m_269220_ (Lnet/minecraft/nbt/CompoundTag;Lnet/minecraft/core/Holder;)V net/minecraft/world/entity/decoration/Painting/storeVariant (Lnet/minecraft/nbt/CompoundTag;Lnet/minecraft/core/Holder;)V +MD: net/minecraft/world/entity/decoration/Painting/m_28464_ (Lnet/minecraft/core/Holder;)V net/minecraft/world/entity/decoration/Painting/setVariant (Lnet/minecraft/core/Holder;)V +MD: net/minecraft/world/entity/decoration/Painting/m_28464_ (Ljava/lang/Object;)V net/minecraft/world/entity/decoration/Painting/setVariant (Ljava/lang/Object;)V +MD: net/minecraft/world/entity/decoration/Painting/m_28554_ ()Lnet/minecraft/core/Holder; net/minecraft/world/entity/decoration/Painting/getVariant ()Lnet/minecraft/core/Holder; +MD: net/minecraft/world/entity/decoration/Painting/m_28554_ ()Ljava/lang/Object; net/minecraft/world/entity/decoration/Painting/getVariant ()Ljava/lang/Object; +MD: net/minecraft/world/entity/decoration/Painting/m_289146_ (Lnet/minecraft/world/entity/decoration/Painting;Lnet/minecraft/core/Holder;)Z net/minecraft/world/entity/decoration/Painting/lambda$create$0 (Lnet/minecraft/world/entity/decoration/Painting;Lnet/minecraft/core/Holder;)Z +MD: net/minecraft/world/entity/decoration/Painting/m_5553_ (Lnet/minecraft/world/entity/Entity;)V net/minecraft/world/entity/decoration/Painting/dropItem (Lnet/minecraft/world/entity/Entity;)V +MD: net/minecraft/world/entity/decoration/Painting/m_5654_ ()Lnet/minecraft/network/protocol/Packet; net/minecraft/world/entity/decoration/Painting/getAddEntityPacket ()Lnet/minecraft/network/protocol/Packet; +MD: net/minecraft/world/entity/decoration/Painting/m_6453_ (DDDFFIZ)V net/minecraft/world/entity/decoration/Painting/lerpTo (DDDFFIZ)V +MD: net/minecraft/world/entity/decoration/Painting/m_7068_ ()I net/minecraft/world/entity/decoration/Painting/getHeight ()I +MD: net/minecraft/world/entity/decoration/Painting/m_7076_ ()I net/minecraft/world/entity/decoration/Painting/getWidth ()I +MD: net/minecraft/world/entity/decoration/Painting/m_7084_ ()V net/minecraft/world/entity/decoration/Painting/playPlacementSound ()V +MD: net/minecraft/world/entity/decoration/Painting/m_7350_ (Lnet/minecraft/network/syncher/EntityDataAccessor;)V net/minecraft/world/entity/decoration/Painting/onSyncedDataUpdated (Lnet/minecraft/network/syncher/EntityDataAccessor;)V +MD: net/minecraft/world/entity/decoration/Painting/m_7378_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/entity/decoration/Painting/readAdditionalSaveData (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/entity/decoration/Painting/m_7380_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/entity/decoration/Painting/addAdditionalSaveData (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/entity/decoration/Painting/m_7678_ (DDDFF)V net/minecraft/world/entity/decoration/Painting/moveTo (DDDFF)V +MD: net/minecraft/world/entity/decoration/Painting/m_8097_ ()V net/minecraft/world/entity/decoration/Painting/defineSynchedData ()V +MD: net/minecraft/world/entity/decoration/PaintingVariant/ (II)V net/minecraft/world/entity/decoration/PaintingVariant/ (II)V +MD: net/minecraft/world/entity/decoration/PaintingVariant/m_218908_ ()I net/minecraft/world/entity/decoration/PaintingVariant/getWidth ()I +MD: net/minecraft/world/entity/decoration/PaintingVariant/m_218909_ ()I net/minecraft/world/entity/decoration/PaintingVariant/getHeight ()I +MD: net/minecraft/world/entity/decoration/PaintingVariants/ ()V net/minecraft/world/entity/decoration/PaintingVariants/ ()V +MD: net/minecraft/world/entity/decoration/PaintingVariants/ ()V net/minecraft/world/entity/decoration/PaintingVariants/ ()V +MD: net/minecraft/world/entity/decoration/PaintingVariants/m_218942_ (Lnet/minecraft/core/Registry;)Lnet/minecraft/world/entity/decoration/PaintingVariant; net/minecraft/world/entity/decoration/PaintingVariants/bootstrap (Lnet/minecraft/core/Registry;)Lnet/minecraft/world/entity/decoration/PaintingVariant; +MD: net/minecraft/world/entity/decoration/PaintingVariants/m_218944_ (Ljava/lang/String;)Lnet/minecraft/resources/ResourceKey; net/minecraft/world/entity/decoration/PaintingVariants/create (Ljava/lang/String;)Lnet/minecraft/resources/ResourceKey; +MD: net/minecraft/world/entity/item/FallingBlockEntity/ ()V net/minecraft/world/entity/item/FallingBlockEntity/ ()V +MD: net/minecraft/world/entity/item/FallingBlockEntity/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V net/minecraft/world/entity/item/FallingBlockEntity/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V +MD: net/minecraft/world/entity/item/FallingBlockEntity/ (Lnet/minecraft/world/level/Level;DDDLnet/minecraft/world/level/block/state/BlockState;)V net/minecraft/world/entity/item/FallingBlockEntity/ (Lnet/minecraft/world/level/Level;DDDLnet/minecraft/world/level/block/state/BlockState;)V +MD: net/minecraft/world/entity/item/FallingBlockEntity/m_141965_ (Lnet/minecraft/network/protocol/game/ClientboundAddEntityPacket;)V net/minecraft/world/entity/item/FallingBlockEntity/recreateFromPacket (Lnet/minecraft/network/protocol/game/ClientboundAddEntityPacket;)V +MD: net/minecraft/world/entity/item/FallingBlockEntity/m_142319_ ()Lnet/minecraft/world/entity/Entity$MovementEmission; net/minecraft/world/entity/item/FallingBlockEntity/getMovementEmission ()Lnet/minecraft/world/entity/Entity$MovementEmission; +MD: net/minecraft/world/entity/item/FallingBlockEntity/m_142535_ (FFLnet/minecraft/world/damagesource/DamageSource;)Z net/minecraft/world/entity/item/FallingBlockEntity/causeFallDamage (FFLnet/minecraft/world/damagesource/DamageSource;)Z +MD: net/minecraft/world/entity/item/FallingBlockEntity/m_149646_ (Lnet/minecraft/world/damagesource/DamageSource;FLnet/minecraft/world/entity/Entity;)V net/minecraft/world/entity/item/FallingBlockEntity/lambda$causeFallDamage$0 (Lnet/minecraft/world/damagesource/DamageSource;FLnet/minecraft/world/entity/Entity;)V +MD: net/minecraft/world/entity/item/FallingBlockEntity/m_149650_ (Lnet/minecraft/world/level/block/Block;Lnet/minecraft/core/BlockPos;)V net/minecraft/world/entity/item/FallingBlockEntity/callOnBrokenAfterFall (Lnet/minecraft/world/level/block/Block;Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/world/entity/item/FallingBlockEntity/m_149656_ (FI)V net/minecraft/world/entity/item/FallingBlockEntity/setHurtsEntities (FI)V +MD: net/minecraft/world/entity/item/FallingBlockEntity/m_201971_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/entity/item/FallingBlockEntity; net/minecraft/world/entity/item/FallingBlockEntity/fall (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/entity/item/FallingBlockEntity; +MD: net/minecraft/world/entity/item/FallingBlockEntity/m_272001_ ()V net/minecraft/world/entity/item/FallingBlockEntity/disableDrop ()V +MD: net/minecraft/world/entity/item/FallingBlockEntity/m_31959_ (Lnet/minecraft/core/BlockPos;)V net/minecraft/world/entity/item/FallingBlockEntity/setStartPos (Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/world/entity/item/FallingBlockEntity/m_31978_ ()Lnet/minecraft/core/BlockPos; net/minecraft/world/entity/item/FallingBlockEntity/getStartPos ()Lnet/minecraft/core/BlockPos; +MD: net/minecraft/world/entity/item/FallingBlockEntity/m_31980_ ()Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/entity/item/FallingBlockEntity/getBlockState ()Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/entity/item/FallingBlockEntity/m_5654_ ()Lnet/minecraft/network/protocol/Packet; net/minecraft/world/entity/item/FallingBlockEntity/getAddEntityPacket ()Lnet/minecraft/network/protocol/Packet; +MD: net/minecraft/world/entity/item/FallingBlockEntity/m_5677_ ()Lnet/minecraft/network/chat/Component; net/minecraft/world/entity/item/FallingBlockEntity/getTypeName ()Lnet/minecraft/network/chat/Component; +MD: net/minecraft/world/entity/item/FallingBlockEntity/m_6051_ ()Z net/minecraft/world/entity/item/FallingBlockEntity/displayFireAnimation ()Z +MD: net/minecraft/world/entity/item/FallingBlockEntity/m_6087_ ()Z net/minecraft/world/entity/item/FallingBlockEntity/isPickable ()Z +MD: net/minecraft/world/entity/item/FallingBlockEntity/m_6097_ ()Z net/minecraft/world/entity/item/FallingBlockEntity/isAttackable ()Z +MD: net/minecraft/world/entity/item/FallingBlockEntity/m_6127_ ()Z net/minecraft/world/entity/item/FallingBlockEntity/onlyOpCanSetNbt ()Z +MD: net/minecraft/world/entity/item/FallingBlockEntity/m_7378_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/entity/item/FallingBlockEntity/readAdditionalSaveData (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/entity/item/FallingBlockEntity/m_7380_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/entity/item/FallingBlockEntity/addAdditionalSaveData (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/entity/item/FallingBlockEntity/m_7976_ (Lnet/minecraft/CrashReportCategory;)V net/minecraft/world/entity/item/FallingBlockEntity/fillCrashReportCategory (Lnet/minecraft/CrashReportCategory;)V +MD: net/minecraft/world/entity/item/FallingBlockEntity/m_8097_ ()V net/minecraft/world/entity/item/FallingBlockEntity/defineSynchedData ()V +MD: net/minecraft/world/entity/item/FallingBlockEntity/m_8119_ ()V net/minecraft/world/entity/item/FallingBlockEntity/tick ()V +MD: net/minecraft/world/entity/item/ItemEntity/ ()V net/minecraft/world/entity/item/ItemEntity/ ()V +MD: net/minecraft/world/entity/item/ItemEntity/ (Lnet/minecraft/world/level/Level;DDDLnet/minecraft/world/item/ItemStack;DDD)V net/minecraft/world/entity/item/ItemEntity/ (Lnet/minecraft/world/level/Level;DDDLnet/minecraft/world/item/ItemStack;DDD)V +MD: net/minecraft/world/entity/item/ItemEntity/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V net/minecraft/world/entity/item/ItemEntity/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V +MD: net/minecraft/world/entity/item/ItemEntity/ (Lnet/minecraft/world/level/Level;DDDLnet/minecraft/world/item/ItemStack;)V net/minecraft/world/entity/item/ItemEntity/ (Lnet/minecraft/world/level/Level;DDDLnet/minecraft/world/item/ItemStack;)V +MD: net/minecraft/world/entity/item/ItemEntity/ (Lnet/minecraft/world/entity/item/ItemEntity;)V net/minecraft/world/entity/item/ItemEntity/ (Lnet/minecraft/world/entity/item/ItemEntity;)V +MD: net/minecraft/world/entity/item/ItemEntity/m_142319_ ()Lnet/minecraft/world/entity/Entity$MovementEmission; net/minecraft/world/entity/item/ItemEntity/getMovementEmission ()Lnet/minecraft/world/entity/Entity$MovementEmission; +MD: net/minecraft/world/entity/item/ItemEntity/m_149678_ ()V net/minecraft/world/entity/item/ItemEntity/setUnlimitedLifetime ()V +MD: net/minecraft/world/entity/item/ItemEntity/m_186267_ (Lnet/minecraft/world/entity/item/ItemEntity;)Z net/minecraft/world/entity/item/ItemEntity/lambda$mergeWithNeighbours$0 (Lnet/minecraft/world/entity/item/ItemEntity;)Z +MD: net/minecraft/world/entity/item/ItemEntity/m_19749_ ()Lnet/minecraft/world/entity/Entity; net/minecraft/world/entity/item/ItemEntity/getOwner ()Lnet/minecraft/world/entity/Entity; +MD: net/minecraft/world/entity/item/ItemEntity/m_20099_ ()Lnet/minecraft/core/BlockPos; net/minecraft/world/entity/item/ItemEntity/getBlockPosBelowThatAffectsMyMovement ()Lnet/minecraft/core/BlockPos; +MD: net/minecraft/world/entity/item/ItemEntity/m_213816_ ()F net/minecraft/world/entity/item/ItemEntity/getVisualRotationYInDegrees ()F +MD: net/minecraft/world/entity/item/ItemEntity/m_213854_ ()Z net/minecraft/world/entity/item/ItemEntity/dampensVibrations ()Z +MD: net/minecraft/world/entity/item/ItemEntity/m_266426_ (Ljava/util/UUID;)V net/minecraft/world/entity/item/ItemEntity/setTarget (Ljava/util/UUID;)V +MD: net/minecraft/world/entity/item/ItemEntity/m_32008_ (F)F net/minecraft/world/entity/item/ItemEntity/getSpin (F)F +MD: net/minecraft/world/entity/item/ItemEntity/m_32010_ (I)V net/minecraft/world/entity/item/ItemEntity/setPickUpDelay (I)V +MD: net/minecraft/world/entity/item/ItemEntity/m_32015_ (Lnet/minecraft/world/entity/item/ItemEntity;)V net/minecraft/world/entity/item/ItemEntity/tryToMerge (Lnet/minecraft/world/entity/item/ItemEntity;)V +MD: net/minecraft/world/entity/item/ItemEntity/m_32017_ (Lnet/minecraft/world/entity/item/ItemEntity;Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/entity/item/ItemEntity;Lnet/minecraft/world/item/ItemStack;)V net/minecraft/world/entity/item/ItemEntity/merge (Lnet/minecraft/world/entity/item/ItemEntity;Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/entity/item/ItemEntity;Lnet/minecraft/world/item/ItemStack;)V +MD: net/minecraft/world/entity/item/ItemEntity/m_32022_ (Lnet/minecraft/world/entity/item/ItemEntity;Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/item/ItemStack;)V net/minecraft/world/entity/item/ItemEntity/merge (Lnet/minecraft/world/entity/item/ItemEntity;Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/item/ItemStack;)V +MD: net/minecraft/world/entity/item/ItemEntity/m_32026_ (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/item/ItemStack;)Z net/minecraft/world/entity/item/ItemEntity/areMergable (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/item/ItemStack;)Z +MD: net/minecraft/world/entity/item/ItemEntity/m_32029_ (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/item/ItemStack;I)Lnet/minecraft/world/item/ItemStack; net/minecraft/world/entity/item/ItemEntity/merge (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/item/ItemStack;I)Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/entity/item/ItemEntity/m_32045_ (Lnet/minecraft/world/item/ItemStack;)V net/minecraft/world/entity/item/ItemEntity/setItem (Lnet/minecraft/world/item/ItemStack;)V +MD: net/minecraft/world/entity/item/ItemEntity/m_32052_ (Ljava/util/UUID;)V net/minecraft/world/entity/item/ItemEntity/setThrower (Ljava/util/UUID;)V +MD: net/minecraft/world/entity/item/ItemEntity/m_32055_ ()Lnet/minecraft/world/item/ItemStack; net/minecraft/world/entity/item/ItemEntity/getItem ()Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/entity/item/ItemEntity/m_32059_ ()I net/minecraft/world/entity/item/ItemEntity/getAge ()I +MD: net/minecraft/world/entity/item/ItemEntity/m_32060_ ()V net/minecraft/world/entity/item/ItemEntity/setDefaultPickUpDelay ()V +MD: net/minecraft/world/entity/item/ItemEntity/m_32061_ ()V net/minecraft/world/entity/item/ItemEntity/setNoPickUpDelay ()V +MD: net/minecraft/world/entity/item/ItemEntity/m_32062_ ()V net/minecraft/world/entity/item/ItemEntity/setNeverPickUp ()V +MD: net/minecraft/world/entity/item/ItemEntity/m_32063_ ()Z net/minecraft/world/entity/item/ItemEntity/hasPickUpDelay ()Z +MD: net/minecraft/world/entity/item/ItemEntity/m_32064_ ()V net/minecraft/world/entity/item/ItemEntity/setExtendedLifetime ()V +MD: net/minecraft/world/entity/item/ItemEntity/m_32065_ ()V net/minecraft/world/entity/item/ItemEntity/makeFakeItem ()V +MD: net/minecraft/world/entity/item/ItemEntity/m_32066_ ()Lnet/minecraft/world/entity/item/ItemEntity; net/minecraft/world/entity/item/ItemEntity/copy ()Lnet/minecraft/world/entity/item/ItemEntity; +MD: net/minecraft/world/entity/item/ItemEntity/m_32067_ ()V net/minecraft/world/entity/item/ItemEntity/setUnderwaterMovement ()V +MD: net/minecraft/world/entity/item/ItemEntity/m_32068_ ()V net/minecraft/world/entity/item/ItemEntity/setUnderLavaMovement ()V +MD: net/minecraft/world/entity/item/ItemEntity/m_32069_ ()V net/minecraft/world/entity/item/ItemEntity/mergeWithNeighbours ()V +MD: net/minecraft/world/entity/item/ItemEntity/m_32070_ ()Z net/minecraft/world/entity/item/ItemEntity/isMergable ()Z +MD: net/minecraft/world/entity/item/ItemEntity/m_5489_ (Lnet/minecraft/server/level/ServerLevel;)Lnet/minecraft/world/entity/Entity; net/minecraft/world/entity/item/ItemEntity/changeDimension (Lnet/minecraft/server/level/ServerLevel;)Lnet/minecraft/world/entity/Entity; +MD: net/minecraft/world/entity/item/ItemEntity/m_5720_ ()Lnet/minecraft/sounds/SoundSource; net/minecraft/world/entity/item/ItemEntity/getSoundSource ()Lnet/minecraft/sounds/SoundSource; +MD: net/minecraft/world/entity/item/ItemEntity/m_5825_ ()Z net/minecraft/world/entity/item/ItemEntity/fireImmune ()Z +MD: net/minecraft/world/entity/item/ItemEntity/m_6097_ ()Z net/minecraft/world/entity/item/ItemEntity/isAttackable ()Z +MD: net/minecraft/world/entity/item/ItemEntity/m_6123_ (Lnet/minecraft/world/entity/player/Player;)V net/minecraft/world/entity/item/ItemEntity/playerTouch (Lnet/minecraft/world/entity/player/Player;)V +MD: net/minecraft/world/entity/item/ItemEntity/m_6469_ (Lnet/minecraft/world/damagesource/DamageSource;F)Z net/minecraft/world/entity/item/ItemEntity/hurt (Lnet/minecraft/world/damagesource/DamageSource;F)Z +MD: net/minecraft/world/entity/item/ItemEntity/m_7350_ (Lnet/minecraft/network/syncher/EntityDataAccessor;)V net/minecraft/world/entity/item/ItemEntity/onSyncedDataUpdated (Lnet/minecraft/network/syncher/EntityDataAccessor;)V +MD: net/minecraft/world/entity/item/ItemEntity/m_7378_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/entity/item/ItemEntity/readAdditionalSaveData (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/entity/item/ItemEntity/m_7380_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/entity/item/ItemEntity/addAdditionalSaveData (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/entity/item/ItemEntity/m_7755_ ()Lnet/minecraft/network/chat/Component; net/minecraft/world/entity/item/ItemEntity/getName ()Lnet/minecraft/network/chat/Component; +MD: net/minecraft/world/entity/item/ItemEntity/m_8097_ ()V net/minecraft/world/entity/item/ItemEntity/defineSynchedData ()V +MD: net/minecraft/world/entity/item/ItemEntity/m_8119_ ()V net/minecraft/world/entity/item/ItemEntity/tick ()V +MD: net/minecraft/world/entity/item/PrimedTnt/ ()V net/minecraft/world/entity/item/PrimedTnt/ ()V +MD: net/minecraft/world/entity/item/PrimedTnt/ (Lnet/minecraft/world/level/Level;DDDLnet/minecraft/world/entity/LivingEntity;)V net/minecraft/world/entity/item/PrimedTnt/ (Lnet/minecraft/world/level/Level;DDDLnet/minecraft/world/entity/LivingEntity;)V +MD: net/minecraft/world/entity/item/PrimedTnt/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V net/minecraft/world/entity/item/PrimedTnt/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V +MD: net/minecraft/world/entity/item/PrimedTnt/m_142319_ ()Lnet/minecraft/world/entity/Entity$MovementEmission; net/minecraft/world/entity/item/PrimedTnt/getMovementEmission ()Lnet/minecraft/world/entity/Entity$MovementEmission; +MD: net/minecraft/world/entity/item/PrimedTnt/m_19749_ ()Lnet/minecraft/world/entity/Entity; net/minecraft/world/entity/item/PrimedTnt/getOwner ()Lnet/minecraft/world/entity/Entity; +MD: net/minecraft/world/entity/item/PrimedTnt/m_19749_ ()Lnet/minecraft/world/entity/LivingEntity; net/minecraft/world/entity/item/PrimedTnt/getOwner ()Lnet/minecraft/world/entity/LivingEntity; +MD: net/minecraft/world/entity/item/PrimedTnt/m_32085_ (I)V net/minecraft/world/entity/item/PrimedTnt/setFuse (I)V +MD: net/minecraft/world/entity/item/PrimedTnt/m_32100_ ()I net/minecraft/world/entity/item/PrimedTnt/getFuse ()I +MD: net/minecraft/world/entity/item/PrimedTnt/m_32103_ ()V net/minecraft/world/entity/item/PrimedTnt/explode ()V +MD: net/minecraft/world/entity/item/PrimedTnt/m_6087_ ()Z net/minecraft/world/entity/item/PrimedTnt/isPickable ()Z +MD: net/minecraft/world/entity/item/PrimedTnt/m_6380_ (Lnet/minecraft/world/entity/Pose;Lnet/minecraft/world/entity/EntityDimensions;)F net/minecraft/world/entity/item/PrimedTnt/getEyeHeight (Lnet/minecraft/world/entity/Pose;Lnet/minecraft/world/entity/EntityDimensions;)F +MD: net/minecraft/world/entity/item/PrimedTnt/m_7378_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/entity/item/PrimedTnt/readAdditionalSaveData (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/entity/item/PrimedTnt/m_7380_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/entity/item/PrimedTnt/addAdditionalSaveData (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/entity/item/PrimedTnt/m_8097_ ()V net/minecraft/world/entity/item/PrimedTnt/defineSynchedData ()V +MD: net/minecraft/world/entity/item/PrimedTnt/m_8119_ ()V net/minecraft/world/entity/item/PrimedTnt/tick ()V +MD: net/minecraft/world/entity/monster/AbstractIllager/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V net/minecraft/world/entity/monster/AbstractIllager/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V +MD: net/minecraft/world/entity/monster/AbstractIllager/m_6336_ ()Lnet/minecraft/world/entity/MobType; net/minecraft/world/entity/monster/AbstractIllager/getMobType ()Lnet/minecraft/world/entity/MobType; +MD: net/minecraft/world/entity/monster/AbstractIllager/m_6768_ ()Lnet/minecraft/world/entity/monster/AbstractIllager$IllagerArmPose; net/minecraft/world/entity/monster/AbstractIllager/getArmPose ()Lnet/minecraft/world/entity/monster/AbstractIllager$IllagerArmPose; +MD: net/minecraft/world/entity/monster/AbstractIllager/m_6779_ (Lnet/minecraft/world/entity/LivingEntity;)Z net/minecraft/world/entity/monster/AbstractIllager/canAttack (Lnet/minecraft/world/entity/LivingEntity;)Z +MD: net/minecraft/world/entity/monster/AbstractIllager/m_8099_ ()V net/minecraft/world/entity/monster/AbstractIllager/registerGoals ()V +MD: net/minecraft/world/entity/monster/AbstractIllager$IllagerArmPose/ ()V net/minecraft/world/entity/monster/AbstractIllager$IllagerArmPose/ ()V +MD: net/minecraft/world/entity/monster/AbstractIllager$IllagerArmPose/ (Ljava/lang/String;I)V net/minecraft/world/entity/monster/AbstractIllager$IllagerArmPose/ (Ljava/lang/String;I)V +MD: net/minecraft/world/entity/monster/AbstractIllager$IllagerArmPose/m_149681_ ()[Lnet/minecraft/world/entity/monster/AbstractIllager$IllagerArmPose; net/minecraft/world/entity/monster/AbstractIllager$IllagerArmPose/$values ()[Lnet/minecraft/world/entity/monster/AbstractIllager$IllagerArmPose; +MD: net/minecraft/world/entity/monster/AbstractIllager$IllagerArmPose/valueOf (Ljava/lang/String;)Lnet/minecraft/world/entity/monster/AbstractIllager$IllagerArmPose; net/minecraft/world/entity/monster/AbstractIllager$IllagerArmPose/valueOf (Ljava/lang/String;)Lnet/minecraft/world/entity/monster/AbstractIllager$IllagerArmPose; +MD: net/minecraft/world/entity/monster/AbstractIllager$IllagerArmPose/values ()[Lnet/minecraft/world/entity/monster/AbstractIllager$IllagerArmPose; net/minecraft/world/entity/monster/AbstractIllager$IllagerArmPose/values ()[Lnet/minecraft/world/entity/monster/AbstractIllager$IllagerArmPose; +MD: net/minecraft/world/entity/monster/AbstractIllager$RaiderOpenDoorGoal/ (Lnet/minecraft/world/entity/monster/AbstractIllager;Lnet/minecraft/world/entity/raid/Raider;)V net/minecraft/world/entity/monster/AbstractIllager$RaiderOpenDoorGoal/ (Lnet/minecraft/world/entity/monster/AbstractIllager;Lnet/minecraft/world/entity/raid/Raider;)V +MD: net/minecraft/world/entity/monster/AbstractIllager$RaiderOpenDoorGoal/m_8036_ ()Z net/minecraft/world/entity/monster/AbstractIllager$RaiderOpenDoorGoal/canUse ()Z +MD: net/minecraft/world/entity/monster/AbstractSkeleton/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V net/minecraft/world/entity/monster/AbstractSkeleton/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V +MD: net/minecraft/world/entity/monster/AbstractSkeleton/m_142548_ ()Z net/minecraft/world/entity/monster/AbstractSkeleton/isShaking ()Z +MD: net/minecraft/world/entity/monster/AbstractSkeleton/m_213945_ (Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/DifficultyInstance;)V net/minecraft/world/entity/monster/AbstractSkeleton/populateDefaultEquipmentSlots (Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/DifficultyInstance;)V +MD: net/minecraft/world/entity/monster/AbstractSkeleton/m_32164_ ()V net/minecraft/world/entity/monster/AbstractSkeleton/reassessWeaponGoal ()V +MD: net/minecraft/world/entity/monster/AbstractSkeleton/m_32166_ ()Lnet/minecraft/world/entity/ai/attributes/AttributeSupplier$Builder; net/minecraft/world/entity/monster/AbstractSkeleton/createAttributes ()Lnet/minecraft/world/entity/ai/attributes/AttributeSupplier$Builder; +MD: net/minecraft/world/entity/monster/AbstractSkeleton/m_5886_ (Lnet/minecraft/world/item/ProjectileWeaponItem;)Z net/minecraft/world/entity/monster/AbstractSkeleton/canFireProjectileWeapon (Lnet/minecraft/world/item/ProjectileWeaponItem;)Z +MD: net/minecraft/world/entity/monster/AbstractSkeleton/m_6049_ ()D net/minecraft/world/entity/monster/AbstractSkeleton/getMyRidingOffset ()D +MD: net/minecraft/world/entity/monster/AbstractSkeleton/m_6083_ ()V net/minecraft/world/entity/monster/AbstractSkeleton/rideTick ()V +MD: net/minecraft/world/entity/monster/AbstractSkeleton/m_6336_ ()Lnet/minecraft/world/entity/MobType; net/minecraft/world/entity/monster/AbstractSkeleton/getMobType ()Lnet/minecraft/world/entity/MobType; +MD: net/minecraft/world/entity/monster/AbstractSkeleton/m_6431_ (Lnet/minecraft/world/entity/Pose;Lnet/minecraft/world/entity/EntityDimensions;)F net/minecraft/world/entity/monster/AbstractSkeleton/getStandingEyeHeight (Lnet/minecraft/world/entity/Pose;Lnet/minecraft/world/entity/EntityDimensions;)F +MD: net/minecraft/world/entity/monster/AbstractSkeleton/m_6504_ (Lnet/minecraft/world/entity/LivingEntity;F)V net/minecraft/world/entity/monster/AbstractSkeleton/performRangedAttack (Lnet/minecraft/world/entity/LivingEntity;F)V +MD: net/minecraft/world/entity/monster/AbstractSkeleton/m_6518_ (Lnet/minecraft/world/level/ServerLevelAccessor;Lnet/minecraft/world/DifficultyInstance;Lnet/minecraft/world/entity/MobSpawnType;Lnet/minecraft/world/entity/SpawnGroupData;Lnet/minecraft/nbt/CompoundTag;)Lnet/minecraft/world/entity/SpawnGroupData; net/minecraft/world/entity/monster/AbstractSkeleton/finalizeSpawn (Lnet/minecraft/world/level/ServerLevelAccessor;Lnet/minecraft/world/DifficultyInstance;Lnet/minecraft/world/entity/MobSpawnType;Lnet/minecraft/world/entity/SpawnGroupData;Lnet/minecraft/nbt/CompoundTag;)Lnet/minecraft/world/entity/SpawnGroupData; +MD: net/minecraft/world/entity/monster/AbstractSkeleton/m_7355_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V net/minecraft/world/entity/monster/AbstractSkeleton/playStepSound (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V +MD: net/minecraft/world/entity/monster/AbstractSkeleton/m_7378_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/entity/monster/AbstractSkeleton/readAdditionalSaveData (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/entity/monster/AbstractSkeleton/m_7878_ ()Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/monster/AbstractSkeleton/getStepSound ()Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/monster/AbstractSkeleton/m_7932_ (Lnet/minecraft/world/item/ItemStack;F)Lnet/minecraft/world/entity/projectile/AbstractArrow; net/minecraft/world/entity/monster/AbstractSkeleton/getArrow (Lnet/minecraft/world/item/ItemStack;F)Lnet/minecraft/world/entity/projectile/AbstractArrow; +MD: net/minecraft/world/entity/monster/AbstractSkeleton/m_8061_ (Lnet/minecraft/world/entity/EquipmentSlot;Lnet/minecraft/world/item/ItemStack;)V net/minecraft/world/entity/monster/AbstractSkeleton/setItemSlot (Lnet/minecraft/world/entity/EquipmentSlot;Lnet/minecraft/world/item/ItemStack;)V +MD: net/minecraft/world/entity/monster/AbstractSkeleton/m_8099_ ()V net/minecraft/world/entity/monster/AbstractSkeleton/registerGoals ()V +MD: net/minecraft/world/entity/monster/AbstractSkeleton/m_8107_ ()V net/minecraft/world/entity/monster/AbstractSkeleton/aiStep ()V +MD: net/minecraft/world/entity/monster/AbstractSkeleton$1/ (Lnet/minecraft/world/entity/monster/AbstractSkeleton;Lnet/minecraft/world/entity/PathfinderMob;DZ)V net/minecraft/world/entity/monster/AbstractSkeleton$1/ (Lnet/minecraft/world/entity/monster/AbstractSkeleton;Lnet/minecraft/world/entity/PathfinderMob;DZ)V +MD: net/minecraft/world/entity/monster/AbstractSkeleton$1/m_8041_ ()V net/minecraft/world/entity/monster/AbstractSkeleton$1/stop ()V +MD: net/minecraft/world/entity/monster/AbstractSkeleton$1/m_8056_ ()V net/minecraft/world/entity/monster/AbstractSkeleton$1/start ()V +MD: net/minecraft/world/entity/monster/Blaze/ ()V net/minecraft/world/entity/monster/Blaze/ ()V +MD: net/minecraft/world/entity/monster/Blaze/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V net/minecraft/world/entity/monster/Blaze/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V +MD: net/minecraft/world/entity/monster/Blaze/m_213856_ ()F net/minecraft/world/entity/monster/Blaze/getLightLevelDependentMagicValue ()F +MD: net/minecraft/world/entity/monster/Blaze/m_32236_ ()Z net/minecraft/world/entity/monster/Blaze/isCharged ()Z +MD: net/minecraft/world/entity/monster/Blaze/m_32238_ ()Lnet/minecraft/world/entity/ai/attributes/AttributeSupplier$Builder; net/minecraft/world/entity/monster/Blaze/createAttributes ()Lnet/minecraft/world/entity/ai/attributes/AttributeSupplier$Builder; +MD: net/minecraft/world/entity/monster/Blaze/m_32240_ (Z)V net/minecraft/world/entity/monster/Blaze/setCharged (Z)V +MD: net/minecraft/world/entity/monster/Blaze/m_5592_ ()Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/monster/Blaze/getDeathSound ()Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/monster/Blaze/m_6060_ ()Z net/minecraft/world/entity/monster/Blaze/isOnFire ()Z +MD: net/minecraft/world/entity/monster/Blaze/m_6126_ ()Z net/minecraft/world/entity/monster/Blaze/isSensitiveToWater ()Z +MD: net/minecraft/world/entity/monster/Blaze/m_7515_ ()Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/monster/Blaze/getAmbientSound ()Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/monster/Blaze/m_7975_ (Lnet/minecraft/world/damagesource/DamageSource;)Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/monster/Blaze/getHurtSound (Lnet/minecraft/world/damagesource/DamageSource;)Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/monster/Blaze/m_8024_ ()V net/minecraft/world/entity/monster/Blaze/customServerAiStep ()V +MD: net/minecraft/world/entity/monster/Blaze/m_8097_ ()V net/minecraft/world/entity/monster/Blaze/defineSynchedData ()V +MD: net/minecraft/world/entity/monster/Blaze/m_8099_ ()V net/minecraft/world/entity/monster/Blaze/registerGoals ()V +MD: net/minecraft/world/entity/monster/Blaze/m_8107_ ()V net/minecraft/world/entity/monster/Blaze/aiStep ()V +MD: net/minecraft/world/entity/monster/Blaze$BlazeAttackGoal/ (Lnet/minecraft/world/entity/monster/Blaze;)V net/minecraft/world/entity/monster/Blaze$BlazeAttackGoal/ (Lnet/minecraft/world/entity/monster/Blaze;)V +MD: net/minecraft/world/entity/monster/Blaze$BlazeAttackGoal/m_183429_ ()Z net/minecraft/world/entity/monster/Blaze$BlazeAttackGoal/requiresUpdateEveryTick ()Z +MD: net/minecraft/world/entity/monster/Blaze$BlazeAttackGoal/m_32252_ ()D net/minecraft/world/entity/monster/Blaze$BlazeAttackGoal/getFollowDistance ()D +MD: net/minecraft/world/entity/monster/Blaze$BlazeAttackGoal/m_8036_ ()Z net/minecraft/world/entity/monster/Blaze$BlazeAttackGoal/canUse ()Z +MD: net/minecraft/world/entity/monster/Blaze$BlazeAttackGoal/m_8037_ ()V net/minecraft/world/entity/monster/Blaze$BlazeAttackGoal/tick ()V +MD: net/minecraft/world/entity/monster/Blaze$BlazeAttackGoal/m_8041_ ()V net/minecraft/world/entity/monster/Blaze$BlazeAttackGoal/stop ()V +MD: net/minecraft/world/entity/monster/Blaze$BlazeAttackGoal/m_8056_ ()V net/minecraft/world/entity/monster/Blaze$BlazeAttackGoal/start ()V +MD: net/minecraft/world/entity/monster/CaveSpider/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V net/minecraft/world/entity/monster/CaveSpider/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V +MD: net/minecraft/world/entity/monster/CaveSpider/m_32267_ ()Lnet/minecraft/world/entity/ai/attributes/AttributeSupplier$Builder; net/minecraft/world/entity/monster/CaveSpider/createCaveSpider ()Lnet/minecraft/world/entity/ai/attributes/AttributeSupplier$Builder; +MD: net/minecraft/world/entity/monster/CaveSpider/m_6431_ (Lnet/minecraft/world/entity/Pose;Lnet/minecraft/world/entity/EntityDimensions;)F net/minecraft/world/entity/monster/CaveSpider/getStandingEyeHeight (Lnet/minecraft/world/entity/Pose;Lnet/minecraft/world/entity/EntityDimensions;)F +MD: net/minecraft/world/entity/monster/CaveSpider/m_6518_ (Lnet/minecraft/world/level/ServerLevelAccessor;Lnet/minecraft/world/DifficultyInstance;Lnet/minecraft/world/entity/MobSpawnType;Lnet/minecraft/world/entity/SpawnGroupData;Lnet/minecraft/nbt/CompoundTag;)Lnet/minecraft/world/entity/SpawnGroupData; net/minecraft/world/entity/monster/CaveSpider/finalizeSpawn (Lnet/minecraft/world/level/ServerLevelAccessor;Lnet/minecraft/world/DifficultyInstance;Lnet/minecraft/world/entity/MobSpawnType;Lnet/minecraft/world/entity/SpawnGroupData;Lnet/minecraft/nbt/CompoundTag;)Lnet/minecraft/world/entity/SpawnGroupData; +MD: net/minecraft/world/entity/monster/CaveSpider/m_7327_ (Lnet/minecraft/world/entity/Entity;)Z net/minecraft/world/entity/monster/CaveSpider/doHurtTarget (Lnet/minecraft/world/entity/Entity;)Z +MD: net/minecraft/world/entity/monster/Creeper/ ()V net/minecraft/world/entity/monster/Creeper/ ()V +MD: net/minecraft/world/entity/monster/Creeper/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V net/minecraft/world/entity/monster/Creeper/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V +MD: net/minecraft/world/entity/monster/Creeper/m_142535_ (FFLnet/minecraft/world/damagesource/DamageSource;)Z net/minecraft/world/entity/monster/Creeper/causeFallDamage (FFLnet/minecraft/world/damagesource/DamageSource;)Z +MD: net/minecraft/world/entity/monster/Creeper/m_32283_ (I)V net/minecraft/world/entity/monster/Creeper/setSwellDir (I)V +MD: net/minecraft/world/entity/monster/Creeper/m_32288_ (Lnet/minecraft/world/InteractionHand;Lnet/minecraft/world/entity/player/Player;)V net/minecraft/world/entity/monster/Creeper/lambda$mobInteract$0 (Lnet/minecraft/world/InteractionHand;Lnet/minecraft/world/entity/player/Player;)V +MD: net/minecraft/world/entity/monster/Creeper/m_32310_ ()I net/minecraft/world/entity/monster/Creeper/getSwellDir ()I +MD: net/minecraft/world/entity/monster/Creeper/m_32311_ ()Z net/minecraft/world/entity/monster/Creeper/isIgnited ()Z +MD: net/minecraft/world/entity/monster/Creeper/m_32312_ ()V net/minecraft/world/entity/monster/Creeper/ignite ()V +MD: net/minecraft/world/entity/monster/Creeper/m_32313_ ()Z net/minecraft/world/entity/monster/Creeper/canDropMobsSkull ()Z +MD: net/minecraft/world/entity/monster/Creeper/m_32314_ ()V net/minecraft/world/entity/monster/Creeper/increaseDroppedSkulls ()V +MD: net/minecraft/world/entity/monster/Creeper/m_32315_ ()V net/minecraft/world/entity/monster/Creeper/explodeCreeper ()V +MD: net/minecraft/world/entity/monster/Creeper/m_32316_ ()V net/minecraft/world/entity/monster/Creeper/spawnLingeringCloud ()V +MD: net/minecraft/world/entity/monster/Creeper/m_32318_ ()Lnet/minecraft/world/entity/ai/attributes/AttributeSupplier$Builder; net/minecraft/world/entity/monster/Creeper/createAttributes ()Lnet/minecraft/world/entity/ai/attributes/AttributeSupplier$Builder; +MD: net/minecraft/world/entity/monster/Creeper/m_32320_ (F)F net/minecraft/world/entity/monster/Creeper/getSwelling (F)F +MD: net/minecraft/world/entity/monster/Creeper/m_5592_ ()Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/monster/Creeper/getDeathSound ()Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/monster/Creeper/m_6056_ ()I net/minecraft/world/entity/monster/Creeper/getMaxFallDistance ()I +MD: net/minecraft/world/entity/monster/Creeper/m_6071_ (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;)Lnet/minecraft/world/InteractionResult; net/minecraft/world/entity/monster/Creeper/mobInteract (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;)Lnet/minecraft/world/InteractionResult; +MD: net/minecraft/world/entity/monster/Creeper/m_6710_ (Lnet/minecraft/world/entity/LivingEntity;)V net/minecraft/world/entity/monster/Creeper/setTarget (Lnet/minecraft/world/entity/LivingEntity;)V +MD: net/minecraft/world/entity/monster/Creeper/m_7090_ ()Z net/minecraft/world/entity/monster/Creeper/isPowered ()Z +MD: net/minecraft/world/entity/monster/Creeper/m_7327_ (Lnet/minecraft/world/entity/Entity;)Z net/minecraft/world/entity/monster/Creeper/doHurtTarget (Lnet/minecraft/world/entity/Entity;)Z +MD: net/minecraft/world/entity/monster/Creeper/m_7378_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/entity/monster/Creeper/readAdditionalSaveData (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/entity/monster/Creeper/m_7380_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/entity/monster/Creeper/addAdditionalSaveData (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/entity/monster/Creeper/m_7472_ (Lnet/minecraft/world/damagesource/DamageSource;IZ)V net/minecraft/world/entity/monster/Creeper/dropCustomDeathLoot (Lnet/minecraft/world/damagesource/DamageSource;IZ)V +MD: net/minecraft/world/entity/monster/Creeper/m_7975_ (Lnet/minecraft/world/damagesource/DamageSource;)Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/monster/Creeper/getHurtSound (Lnet/minecraft/world/damagesource/DamageSource;)Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/monster/Creeper/m_8038_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LightningBolt;)V net/minecraft/world/entity/monster/Creeper/thunderHit (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LightningBolt;)V +MD: net/minecraft/world/entity/monster/Creeper/m_8097_ ()V net/minecraft/world/entity/monster/Creeper/defineSynchedData ()V +MD: net/minecraft/world/entity/monster/Creeper/m_8099_ ()V net/minecraft/world/entity/monster/Creeper/registerGoals ()V +MD: net/minecraft/world/entity/monster/Creeper/m_8119_ ()V net/minecraft/world/entity/monster/Creeper/tick ()V +MD: net/minecraft/world/entity/monster/CrossbowAttackMob/m_252851_ (Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/phys/Vec3;F)Lorg/joml/Vector3f; net/minecraft/world/entity/monster/CrossbowAttackMob/getProjectileShotVector (Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/phys/Vec3;F)Lorg/joml/Vector3f; +MD: net/minecraft/world/entity/monster/CrossbowAttackMob/m_32322_ (Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/entity/projectile/Projectile;FF)V net/minecraft/world/entity/monster/CrossbowAttackMob/shootCrossbowProjectile (Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/entity/projectile/Projectile;FF)V +MD: net/minecraft/world/entity/monster/CrossbowAttackMob/m_32336_ (Lnet/minecraft/world/entity/LivingEntity;F)V net/minecraft/world/entity/monster/CrossbowAttackMob/performCrossbowAttack (Lnet/minecraft/world/entity/LivingEntity;F)V +MD: net/minecraft/world/entity/monster/CrossbowAttackMob/m_5448_ ()Lnet/minecraft/world/entity/LivingEntity; net/minecraft/world/entity/monster/CrossbowAttackMob/getTarget ()Lnet/minecraft/world/entity/LivingEntity; +MD: net/minecraft/world/entity/monster/CrossbowAttackMob/m_5811_ (Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/entity/projectile/Projectile;F)V net/minecraft/world/entity/monster/CrossbowAttackMob/shootCrossbowProjectile (Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/entity/projectile/Projectile;F)V +MD: net/minecraft/world/entity/monster/CrossbowAttackMob/m_5847_ ()V net/minecraft/world/entity/monster/CrossbowAttackMob/onCrossbowAttackPerformed ()V +MD: net/minecraft/world/entity/monster/CrossbowAttackMob/m_6136_ (Z)V net/minecraft/world/entity/monster/CrossbowAttackMob/setChargingCrossbow (Z)V +MD: net/minecraft/world/entity/monster/Drowned/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V net/minecraft/world/entity/monster/Drowned/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V +MD: net/minecraft/world/entity/monster/Drowned/m_213945_ (Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/DifficultyInstance;)V net/minecraft/world/entity/monster/Drowned/populateDefaultEquipmentSlots (Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/DifficultyInstance;)V +MD: net/minecraft/world/entity/monster/Drowned/m_218955_ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/ServerLevelAccessor;Lnet/minecraft/world/entity/MobSpawnType;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)Z net/minecraft/world/entity/monster/Drowned/checkDrownedSpawnRules (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/ServerLevelAccessor;Lnet/minecraft/world/entity/MobSpawnType;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)Z +MD: net/minecraft/world/entity/monster/Drowned/m_32360_ (Lnet/minecraft/world/entity/monster/Drowned;Lnet/minecraft/world/entity/ai/navigation/PathNavigation;)Lnet/minecraft/world/entity/ai/navigation/PathNavigation; net/minecraft/world/entity/monster/Drowned/access$002 (Lnet/minecraft/world/entity/monster/Drowned;Lnet/minecraft/world/entity/ai/navigation/PathNavigation;)Lnet/minecraft/world/entity/ai/navigation/PathNavigation; +MD: net/minecraft/world/entity/monster/Drowned/m_32366_ (Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/entity/monster/Drowned/isDeepEnoughToSpawn (Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/entity/monster/Drowned/m_32391_ ()Z net/minecraft/world/entity/monster/Drowned/closeToNextPos ()Z +MD: net/minecraft/world/entity/monster/Drowned/m_32392_ ()Z net/minecraft/world/entity/monster/Drowned/wantsToSwim ()Z +MD: net/minecraft/world/entity/monster/Drowned/m_32395_ (Lnet/minecraft/world/entity/LivingEntity;)Z net/minecraft/world/entity/monster/Drowned/okTarget (Lnet/minecraft/world/entity/LivingEntity;)Z +MD: net/minecraft/world/entity/monster/Drowned/m_32398_ (Z)V net/minecraft/world/entity/monster/Drowned/setSearchingForLand (Z)V +MD: net/minecraft/world/entity/monster/Drowned/m_5501_ ()Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/monster/Drowned/getSwimSound ()Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/monster/Drowned/m_5592_ ()Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/monster/Drowned/getDeathSound ()Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/monster/Drowned/m_5728_ ()Lnet/minecraft/world/item/ItemStack; net/minecraft/world/entity/monster/Drowned/getSkull ()Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/entity/monster/Drowned/m_5844_ ()V net/minecraft/world/entity/monster/Drowned/updateSwimming ()V +MD: net/minecraft/world/entity/monster/Drowned/m_6063_ ()Z net/minecraft/world/entity/monster/Drowned/isPushedByFluid ()Z +MD: net/minecraft/world/entity/monster/Drowned/m_6067_ ()Z net/minecraft/world/entity/monster/Drowned/isVisuallySwimming ()Z +MD: net/minecraft/world/entity/monster/Drowned/m_6504_ (Lnet/minecraft/world/entity/LivingEntity;F)V net/minecraft/world/entity/monster/Drowned/performRangedAttack (Lnet/minecraft/world/entity/LivingEntity;F)V +MD: net/minecraft/world/entity/monster/Drowned/m_6518_ (Lnet/minecraft/world/level/ServerLevelAccessor;Lnet/minecraft/world/DifficultyInstance;Lnet/minecraft/world/entity/MobSpawnType;Lnet/minecraft/world/entity/SpawnGroupData;Lnet/minecraft/nbt/CompoundTag;)Lnet/minecraft/world/entity/SpawnGroupData; net/minecraft/world/entity/monster/Drowned/finalizeSpawn (Lnet/minecraft/world/level/ServerLevelAccessor;Lnet/minecraft/world/DifficultyInstance;Lnet/minecraft/world/entity/MobSpawnType;Lnet/minecraft/world/entity/SpawnGroupData;Lnet/minecraft/nbt/CompoundTag;)Lnet/minecraft/world/entity/SpawnGroupData; +MD: net/minecraft/world/entity/monster/Drowned/m_6878_ ()V net/minecraft/world/entity/monster/Drowned/addBehaviourGoals ()V +MD: net/minecraft/world/entity/monster/Drowned/m_6914_ (Lnet/minecraft/world/level/LevelReader;)Z net/minecraft/world/entity/monster/Drowned/checkSpawnObstruction (Lnet/minecraft/world/level/LevelReader;)Z +MD: net/minecraft/world/entity/monster/Drowned/m_7023_ (Lnet/minecraft/world/phys/Vec3;)V net/minecraft/world/entity/monster/Drowned/travel (Lnet/minecraft/world/phys/Vec3;)V +MD: net/minecraft/world/entity/monster/Drowned/m_7515_ ()Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/monster/Drowned/getAmbientSound ()Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/monster/Drowned/m_7586_ ()Z net/minecraft/world/entity/monster/Drowned/supportsBreakDoorGoal ()Z +MD: net/minecraft/world/entity/monster/Drowned/m_7593_ ()Z net/minecraft/world/entity/monster/Drowned/convertsInWater ()Z +MD: net/minecraft/world/entity/monster/Drowned/m_7660_ ()Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/monster/Drowned/getStepSound ()Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/monster/Drowned/m_7808_ (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/item/ItemStack;)Z net/minecraft/world/entity/monster/Drowned/canReplaceCurrentItem (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/item/ItemStack;)Z +MD: net/minecraft/world/entity/monster/Drowned/m_7975_ (Lnet/minecraft/world/damagesource/DamageSource;)Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/monster/Drowned/getHurtSound (Lnet/minecraft/world/damagesource/DamageSource;)Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/monster/Drowned$DrownedAttackGoal/ (Lnet/minecraft/world/entity/monster/Drowned;DZ)V net/minecraft/world/entity/monster/Drowned$DrownedAttackGoal/ (Lnet/minecraft/world/entity/monster/Drowned;DZ)V +MD: net/minecraft/world/entity/monster/Drowned$DrownedAttackGoal/m_8036_ ()Z net/minecraft/world/entity/monster/Drowned$DrownedAttackGoal/canUse ()Z +MD: net/minecraft/world/entity/monster/Drowned$DrownedAttackGoal/m_8045_ ()Z net/minecraft/world/entity/monster/Drowned$DrownedAttackGoal/canContinueToUse ()Z +MD: net/minecraft/world/entity/monster/Drowned$DrownedGoToBeachGoal/ (Lnet/minecraft/world/entity/monster/Drowned;D)V net/minecraft/world/entity/monster/Drowned$DrownedGoToBeachGoal/ (Lnet/minecraft/world/entity/monster/Drowned;D)V +MD: net/minecraft/world/entity/monster/Drowned$DrownedGoToBeachGoal/m_6465_ (Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/entity/monster/Drowned$DrownedGoToBeachGoal/isValidTarget (Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/entity/monster/Drowned$DrownedGoToBeachGoal/m_8036_ ()Z net/minecraft/world/entity/monster/Drowned$DrownedGoToBeachGoal/canUse ()Z +MD: net/minecraft/world/entity/monster/Drowned$DrownedGoToBeachGoal/m_8041_ ()V net/minecraft/world/entity/monster/Drowned$DrownedGoToBeachGoal/stop ()V +MD: net/minecraft/world/entity/monster/Drowned$DrownedGoToBeachGoal/m_8045_ ()Z net/minecraft/world/entity/monster/Drowned$DrownedGoToBeachGoal/canContinueToUse ()Z +MD: net/minecraft/world/entity/monster/Drowned$DrownedGoToBeachGoal/m_8056_ ()V net/minecraft/world/entity/monster/Drowned$DrownedGoToBeachGoal/start ()V +MD: net/minecraft/world/entity/monster/Drowned$DrownedGoToWaterGoal/ (Lnet/minecraft/world/entity/PathfinderMob;D)V net/minecraft/world/entity/monster/Drowned$DrownedGoToWaterGoal/ (Lnet/minecraft/world/entity/PathfinderMob;D)V +MD: net/minecraft/world/entity/monster/Drowned$DrownedGoToWaterGoal/m_32430_ ()Lnet/minecraft/world/phys/Vec3; net/minecraft/world/entity/monster/Drowned$DrownedGoToWaterGoal/getWaterPos ()Lnet/minecraft/world/phys/Vec3; +MD: net/minecraft/world/entity/monster/Drowned$DrownedGoToWaterGoal/m_8036_ ()Z net/minecraft/world/entity/monster/Drowned$DrownedGoToWaterGoal/canUse ()Z +MD: net/minecraft/world/entity/monster/Drowned$DrownedGoToWaterGoal/m_8045_ ()Z net/minecraft/world/entity/monster/Drowned$DrownedGoToWaterGoal/canContinueToUse ()Z +MD: net/minecraft/world/entity/monster/Drowned$DrownedGoToWaterGoal/m_8056_ ()V net/minecraft/world/entity/monster/Drowned$DrownedGoToWaterGoal/start ()V +MD: net/minecraft/world/entity/monster/Drowned$DrownedMoveControl/ (Lnet/minecraft/world/entity/monster/Drowned;)V net/minecraft/world/entity/monster/Drowned$DrownedMoveControl/ (Lnet/minecraft/world/entity/monster/Drowned;)V +MD: net/minecraft/world/entity/monster/Drowned$DrownedMoveControl/m_8126_ ()V net/minecraft/world/entity/monster/Drowned$DrownedMoveControl/tick ()V +MD: net/minecraft/world/entity/monster/Drowned$DrownedSwimUpGoal/ (Lnet/minecraft/world/entity/monster/Drowned;DI)V net/minecraft/world/entity/monster/Drowned$DrownedSwimUpGoal/ (Lnet/minecraft/world/entity/monster/Drowned;DI)V +MD: net/minecraft/world/entity/monster/Drowned$DrownedSwimUpGoal/m_8036_ ()Z net/minecraft/world/entity/monster/Drowned$DrownedSwimUpGoal/canUse ()Z +MD: net/minecraft/world/entity/monster/Drowned$DrownedSwimUpGoal/m_8037_ ()V net/minecraft/world/entity/monster/Drowned$DrownedSwimUpGoal/tick ()V +MD: net/minecraft/world/entity/monster/Drowned$DrownedSwimUpGoal/m_8041_ ()V net/minecraft/world/entity/monster/Drowned$DrownedSwimUpGoal/stop ()V +MD: net/minecraft/world/entity/monster/Drowned$DrownedSwimUpGoal/m_8045_ ()Z net/minecraft/world/entity/monster/Drowned$DrownedSwimUpGoal/canContinueToUse ()Z +MD: net/minecraft/world/entity/monster/Drowned$DrownedSwimUpGoal/m_8056_ ()V net/minecraft/world/entity/monster/Drowned$DrownedSwimUpGoal/start ()V +MD: net/minecraft/world/entity/monster/Drowned$DrownedTridentAttackGoal/ (Lnet/minecraft/world/entity/monster/RangedAttackMob;DIF)V net/minecraft/world/entity/monster/Drowned$DrownedTridentAttackGoal/ (Lnet/minecraft/world/entity/monster/RangedAttackMob;DIF)V +MD: net/minecraft/world/entity/monster/Drowned$DrownedTridentAttackGoal/m_8036_ ()Z net/minecraft/world/entity/monster/Drowned$DrownedTridentAttackGoal/canUse ()Z +MD: net/minecraft/world/entity/monster/Drowned$DrownedTridentAttackGoal/m_8041_ ()V net/minecraft/world/entity/monster/Drowned$DrownedTridentAttackGoal/stop ()V +MD: net/minecraft/world/entity/monster/Drowned$DrownedTridentAttackGoal/m_8056_ ()V net/minecraft/world/entity/monster/Drowned$DrownedTridentAttackGoal/start ()V +MD: net/minecraft/world/entity/monster/ElderGuardian/ ()V net/minecraft/world/entity/monster/ElderGuardian/ ()V +MD: net/minecraft/world/entity/monster/ElderGuardian/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V net/minecraft/world/entity/monster/ElderGuardian/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V +MD: net/minecraft/world/entity/monster/ElderGuardian/m_289147_ (Lnet/minecraft/server/level/ServerPlayer;)V net/minecraft/world/entity/monster/ElderGuardian/lambda$customServerAiStep$0 (Lnet/minecraft/server/level/ServerPlayer;)V +MD: net/minecraft/world/entity/monster/ElderGuardian/m_32471_ ()Lnet/minecraft/world/entity/ai/attributes/AttributeSupplier$Builder; net/minecraft/world/entity/monster/ElderGuardian/createAttributes ()Lnet/minecraft/world/entity/ai/attributes/AttributeSupplier$Builder; +MD: net/minecraft/world/entity/monster/ElderGuardian/m_5592_ ()Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/monster/ElderGuardian/getDeathSound ()Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/monster/ElderGuardian/m_7515_ ()Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/monster/ElderGuardian/getAmbientSound ()Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/monster/ElderGuardian/m_7552_ ()I net/minecraft/world/entity/monster/ElderGuardian/getAttackDuration ()I +MD: net/minecraft/world/entity/monster/ElderGuardian/m_7868_ ()Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/monster/ElderGuardian/getFlopSound ()Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/monster/ElderGuardian/m_7975_ (Lnet/minecraft/world/damagesource/DamageSource;)Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/monster/ElderGuardian/getHurtSound (Lnet/minecraft/world/damagesource/DamageSource;)Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/monster/ElderGuardian/m_8024_ ()V net/minecraft/world/entity/monster/ElderGuardian/customServerAiStep ()V +MD: net/minecraft/world/entity/monster/EnderMan/ ()V net/minecraft/world/entity/monster/EnderMan/ ()V +MD: net/minecraft/world/entity/monster/EnderMan/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V net/minecraft/world/entity/monster/EnderMan/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V +MD: net/minecraft/world/entity/monster/EnderMan/m_186272_ (Lnet/minecraft/world/damagesource/DamageSource;Lnet/minecraft/world/entity/projectile/ThrownPotion;F)Z net/minecraft/world/entity/monster/EnderMan/hurtWithCleanWater (Lnet/minecraft/world/damagesource/DamageSource;Lnet/minecraft/world/entity/projectile/ThrownPotion;F)Z +MD: net/minecraft/world/entity/monster/EnderMan/m_32500_ (Lnet/minecraft/world/entity/Entity;)Z net/minecraft/world/entity/monster/EnderMan/teleportTowards (Lnet/minecraft/world/entity/Entity;)Z +MD: net/minecraft/world/entity/monster/EnderMan/m_32521_ (Lnet/minecraft/world/level/block/state/BlockState;)V net/minecraft/world/entity/monster/EnderMan/setCarriedBlock (Lnet/minecraft/world/level/block/state/BlockState;)V +MD: net/minecraft/world/entity/monster/EnderMan/m_32528_ ()V net/minecraft/world/entity/monster/EnderMan/playStareSound ()V +MD: net/minecraft/world/entity/monster/EnderMan/m_32529_ ()Z net/minecraft/world/entity/monster/EnderMan/teleport ()Z +MD: net/minecraft/world/entity/monster/EnderMan/m_32530_ ()Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/entity/monster/EnderMan/getCarriedBlock ()Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/entity/monster/EnderMan/m_32531_ ()Z net/minecraft/world/entity/monster/EnderMan/isCreepy ()Z +MD: net/minecraft/world/entity/monster/EnderMan/m_32532_ ()Z net/minecraft/world/entity/monster/EnderMan/hasBeenStaredAt ()Z +MD: net/minecraft/world/entity/monster/EnderMan/m_32533_ ()V net/minecraft/world/entity/monster/EnderMan/setBeingStaredAt ()V +MD: net/minecraft/world/entity/monster/EnderMan/m_32534_ (Lnet/minecraft/world/entity/player/Player;)Z net/minecraft/world/entity/monster/EnderMan/isLookingAtMe (Lnet/minecraft/world/entity/player/Player;)Z +MD: net/minecraft/world/entity/monster/EnderMan/m_32541_ ()Lnet/minecraft/world/entity/ai/attributes/AttributeSupplier$Builder; net/minecraft/world/entity/monster/EnderMan/createAttributes ()Lnet/minecraft/world/entity/ai/attributes/AttributeSupplier$Builder; +MD: net/minecraft/world/entity/monster/EnderMan/m_32543_ (DDD)Z net/minecraft/world/entity/monster/EnderMan/teleport (DDD)Z +MD: net/minecraft/world/entity/monster/EnderMan/m_5592_ ()Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/monster/EnderMan/getDeathSound ()Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/monster/EnderMan/m_6120_ ()Ljava/util/UUID; net/minecraft/world/entity/monster/EnderMan/getPersistentAngerTarget ()Ljava/util/UUID; +MD: net/minecraft/world/entity/monster/EnderMan/m_6126_ ()Z net/minecraft/world/entity/monster/EnderMan/isSensitiveToWater ()Z +MD: net/minecraft/world/entity/monster/EnderMan/m_6431_ (Lnet/minecraft/world/entity/Pose;Lnet/minecraft/world/entity/EntityDimensions;)F net/minecraft/world/entity/monster/EnderMan/getStandingEyeHeight (Lnet/minecraft/world/entity/Pose;Lnet/minecraft/world/entity/EntityDimensions;)F +MD: net/minecraft/world/entity/monster/EnderMan/m_6469_ (Lnet/minecraft/world/damagesource/DamageSource;F)Z net/minecraft/world/entity/monster/EnderMan/hurt (Lnet/minecraft/world/damagesource/DamageSource;F)Z +MD: net/minecraft/world/entity/monster/EnderMan/m_6710_ (Lnet/minecraft/world/entity/LivingEntity;)V net/minecraft/world/entity/monster/EnderMan/setTarget (Lnet/minecraft/world/entity/LivingEntity;)V +MD: net/minecraft/world/entity/monster/EnderMan/m_6784_ ()I net/minecraft/world/entity/monster/EnderMan/getRemainingPersistentAngerTime ()I +MD: net/minecraft/world/entity/monster/EnderMan/m_6825_ ()V net/minecraft/world/entity/monster/EnderMan/startPersistentAngerTimer ()V +MD: net/minecraft/world/entity/monster/EnderMan/m_6925_ (Ljava/util/UUID;)V net/minecraft/world/entity/monster/EnderMan/setPersistentAngerTarget (Ljava/util/UUID;)V +MD: net/minecraft/world/entity/monster/EnderMan/m_7350_ (Lnet/minecraft/network/syncher/EntityDataAccessor;)V net/minecraft/world/entity/monster/EnderMan/onSyncedDataUpdated (Lnet/minecraft/network/syncher/EntityDataAccessor;)V +MD: net/minecraft/world/entity/monster/EnderMan/m_7378_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/entity/monster/EnderMan/readAdditionalSaveData (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/entity/monster/EnderMan/m_7380_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/entity/monster/EnderMan/addAdditionalSaveData (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/entity/monster/EnderMan/m_7472_ (Lnet/minecraft/world/damagesource/DamageSource;IZ)V net/minecraft/world/entity/monster/EnderMan/dropCustomDeathLoot (Lnet/minecraft/world/damagesource/DamageSource;IZ)V +MD: net/minecraft/world/entity/monster/EnderMan/m_7515_ ()Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/monster/EnderMan/getAmbientSound ()Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/monster/EnderMan/m_7870_ (I)V net/minecraft/world/entity/monster/EnderMan/setRemainingPersistentAngerTime (I)V +MD: net/minecraft/world/entity/monster/EnderMan/m_7975_ (Lnet/minecraft/world/damagesource/DamageSource;)Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/monster/EnderMan/getHurtSound (Lnet/minecraft/world/damagesource/DamageSource;)Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/monster/EnderMan/m_8023_ ()Z net/minecraft/world/entity/monster/EnderMan/requiresCustomPersistence ()Z +MD: net/minecraft/world/entity/monster/EnderMan/m_8024_ ()V net/minecraft/world/entity/monster/EnderMan/customServerAiStep ()V +MD: net/minecraft/world/entity/monster/EnderMan/m_8097_ ()V net/minecraft/world/entity/monster/EnderMan/defineSynchedData ()V +MD: net/minecraft/world/entity/monster/EnderMan/m_8099_ ()V net/minecraft/world/entity/monster/EnderMan/registerGoals ()V +MD: net/minecraft/world/entity/monster/EnderMan/m_8107_ ()V net/minecraft/world/entity/monster/EnderMan/aiStep ()V +MD: net/minecraft/world/entity/monster/EnderMan$EndermanFreezeWhenLookedAt/ (Lnet/minecraft/world/entity/monster/EnderMan;)V net/minecraft/world/entity/monster/EnderMan$EndermanFreezeWhenLookedAt/ (Lnet/minecraft/world/entity/monster/EnderMan;)V +MD: net/minecraft/world/entity/monster/EnderMan$EndermanFreezeWhenLookedAt/m_8036_ ()Z net/minecraft/world/entity/monster/EnderMan$EndermanFreezeWhenLookedAt/canUse ()Z +MD: net/minecraft/world/entity/monster/EnderMan$EndermanFreezeWhenLookedAt/m_8037_ ()V net/minecraft/world/entity/monster/EnderMan$EndermanFreezeWhenLookedAt/tick ()V +MD: net/minecraft/world/entity/monster/EnderMan$EndermanFreezeWhenLookedAt/m_8056_ ()V net/minecraft/world/entity/monster/EnderMan$EndermanFreezeWhenLookedAt/start ()V +MD: net/minecraft/world/entity/monster/EnderMan$EndermanLeaveBlockGoal/ (Lnet/minecraft/world/entity/monster/EnderMan;)V net/minecraft/world/entity/monster/EnderMan$EndermanLeaveBlockGoal/ (Lnet/minecraft/world/entity/monster/EnderMan;)V +MD: net/minecraft/world/entity/monster/EnderMan$EndermanLeaveBlockGoal/m_32558_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/entity/monster/EnderMan$EndermanLeaveBlockGoal/canPlaceBlock (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/entity/monster/EnderMan$EndermanLeaveBlockGoal/m_8036_ ()Z net/minecraft/world/entity/monster/EnderMan$EndermanLeaveBlockGoal/canUse ()Z +MD: net/minecraft/world/entity/monster/EnderMan$EndermanLeaveBlockGoal/m_8037_ ()V net/minecraft/world/entity/monster/EnderMan$EndermanLeaveBlockGoal/tick ()V +MD: net/minecraft/world/entity/monster/EnderMan$EndermanLookForPlayerGoal/ (Lnet/minecraft/world/entity/monster/EnderMan;Ljava/util/function/Predicate;)V net/minecraft/world/entity/monster/EnderMan$EndermanLookForPlayerGoal/ (Lnet/minecraft/world/entity/monster/EnderMan;Ljava/util/function/Predicate;)V +MD: net/minecraft/world/entity/monster/EnderMan$EndermanLookForPlayerGoal/m_268923_ (Lnet/minecraft/world/entity/monster/EnderMan;Lnet/minecraft/world/entity/LivingEntity;)Z net/minecraft/world/entity/monster/EnderMan$EndermanLookForPlayerGoal/lambda$new$0 (Lnet/minecraft/world/entity/monster/EnderMan;Lnet/minecraft/world/entity/LivingEntity;)Z +MD: net/minecraft/world/entity/monster/EnderMan$EndermanLookForPlayerGoal/m_8036_ ()Z net/minecraft/world/entity/monster/EnderMan$EndermanLookForPlayerGoal/canUse ()Z +MD: net/minecraft/world/entity/monster/EnderMan$EndermanLookForPlayerGoal/m_8037_ ()V net/minecraft/world/entity/monster/EnderMan$EndermanLookForPlayerGoal/tick ()V +MD: net/minecraft/world/entity/monster/EnderMan$EndermanLookForPlayerGoal/m_8041_ ()V net/minecraft/world/entity/monster/EnderMan$EndermanLookForPlayerGoal/stop ()V +MD: net/minecraft/world/entity/monster/EnderMan$EndermanLookForPlayerGoal/m_8045_ ()Z net/minecraft/world/entity/monster/EnderMan$EndermanLookForPlayerGoal/canContinueToUse ()Z +MD: net/minecraft/world/entity/monster/EnderMan$EndermanLookForPlayerGoal/m_8056_ ()V net/minecraft/world/entity/monster/EnderMan$EndermanLookForPlayerGoal/start ()V +MD: net/minecraft/world/entity/monster/EnderMan$EndermanTakeBlockGoal/ (Lnet/minecraft/world/entity/monster/EnderMan;)V net/minecraft/world/entity/monster/EnderMan$EndermanTakeBlockGoal/ (Lnet/minecraft/world/entity/monster/EnderMan;)V +MD: net/minecraft/world/entity/monster/EnderMan$EndermanTakeBlockGoal/m_8036_ ()Z net/minecraft/world/entity/monster/EnderMan$EndermanTakeBlockGoal/canUse ()Z +MD: net/minecraft/world/entity/monster/EnderMan$EndermanTakeBlockGoal/m_8037_ ()V net/minecraft/world/entity/monster/EnderMan$EndermanTakeBlockGoal/tick ()V +MD: net/minecraft/world/entity/monster/Endermite/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V net/minecraft/world/entity/monster/Endermite/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V +MD: net/minecraft/world/entity/monster/Endermite/m_142319_ ()Lnet/minecraft/world/entity/Entity$MovementEmission; net/minecraft/world/entity/monster/Endermite/getMovementEmission ()Lnet/minecraft/world/entity/Entity$MovementEmission; +MD: net/minecraft/world/entity/monster/Endermite/m_218968_ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/world/entity/MobSpawnType;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)Z net/minecraft/world/entity/monster/Endermite/checkEndermiteSpawnRules (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/world/entity/MobSpawnType;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)Z +MD: net/minecraft/world/entity/monster/Endermite/m_32619_ ()Lnet/minecraft/world/entity/ai/attributes/AttributeSupplier$Builder; net/minecraft/world/entity/monster/Endermite/createAttributes ()Lnet/minecraft/world/entity/ai/attributes/AttributeSupplier$Builder; +MD: net/minecraft/world/entity/monster/Endermite/m_5592_ ()Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/monster/Endermite/getDeathSound ()Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/monster/Endermite/m_5618_ (F)V net/minecraft/world/entity/monster/Endermite/setYBodyRot (F)V +MD: net/minecraft/world/entity/monster/Endermite/m_6049_ ()D net/minecraft/world/entity/monster/Endermite/getMyRidingOffset ()D +MD: net/minecraft/world/entity/monster/Endermite/m_6336_ ()Lnet/minecraft/world/entity/MobType; net/minecraft/world/entity/monster/Endermite/getMobType ()Lnet/minecraft/world/entity/MobType; +MD: net/minecraft/world/entity/monster/Endermite/m_6431_ (Lnet/minecraft/world/entity/Pose;Lnet/minecraft/world/entity/EntityDimensions;)F net/minecraft/world/entity/monster/Endermite/getStandingEyeHeight (Lnet/minecraft/world/entity/Pose;Lnet/minecraft/world/entity/EntityDimensions;)F +MD: net/minecraft/world/entity/monster/Endermite/m_7355_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V net/minecraft/world/entity/monster/Endermite/playStepSound (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V +MD: net/minecraft/world/entity/monster/Endermite/m_7378_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/entity/monster/Endermite/readAdditionalSaveData (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/entity/monster/Endermite/m_7380_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/entity/monster/Endermite/addAdditionalSaveData (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/entity/monster/Endermite/m_7515_ ()Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/monster/Endermite/getAmbientSound ()Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/monster/Endermite/m_7975_ (Lnet/minecraft/world/damagesource/DamageSource;)Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/monster/Endermite/getHurtSound (Lnet/minecraft/world/damagesource/DamageSource;)Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/monster/Endermite/m_8099_ ()V net/minecraft/world/entity/monster/Endermite/registerGoals ()V +MD: net/minecraft/world/entity/monster/Endermite/m_8107_ ()V net/minecraft/world/entity/monster/Endermite/aiStep ()V +MD: net/minecraft/world/entity/monster/Endermite/m_8119_ ()V net/minecraft/world/entity/monster/Endermite/tick ()V +MD: net/minecraft/world/entity/monster/Evoker/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V net/minecraft/world/entity/monster/Evoker/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V +MD: net/minecraft/world/entity/monster/Evoker/m_218974_ (Lnet/minecraft/world/entity/monster/Evoker;)Lnet/minecraft/util/RandomSource; net/minecraft/world/entity/monster/Evoker/access$000 (Lnet/minecraft/world/entity/monster/Evoker;)Lnet/minecraft/util/RandomSource; +MD: net/minecraft/world/entity/monster/Evoker/m_218976_ (Lnet/minecraft/world/entity/monster/Evoker;)Lnet/minecraft/util/RandomSource; net/minecraft/world/entity/monster/Evoker/access$100 (Lnet/minecraft/world/entity/monster/Evoker;)Lnet/minecraft/util/RandomSource; +MD: net/minecraft/world/entity/monster/Evoker/m_218978_ (Lnet/minecraft/world/entity/monster/Evoker;)Lnet/minecraft/util/RandomSource; net/minecraft/world/entity/monster/Evoker/access$200 (Lnet/minecraft/world/entity/monster/Evoker;)Lnet/minecraft/util/RandomSource; +MD: net/minecraft/world/entity/monster/Evoker/m_218980_ (Lnet/minecraft/world/entity/monster/Evoker;)Lnet/minecraft/util/RandomSource; net/minecraft/world/entity/monster/Evoker/access$300 (Lnet/minecraft/world/entity/monster/Evoker;)Lnet/minecraft/util/RandomSource; +MD: net/minecraft/world/entity/monster/Evoker/m_218982_ (Lnet/minecraft/world/entity/monster/Evoker;)Lnet/minecraft/util/RandomSource; net/minecraft/world/entity/monster/Evoker/access$400 (Lnet/minecraft/world/entity/monster/Evoker;)Lnet/minecraft/util/RandomSource; +MD: net/minecraft/world/entity/monster/Evoker/m_32634_ (Lnet/minecraft/world/entity/animal/Sheep;)V net/minecraft/world/entity/monster/Evoker/setWololoTarget (Lnet/minecraft/world/entity/animal/Sheep;)V +MD: net/minecraft/world/entity/monster/Evoker/m_32657_ ()Lnet/minecraft/world/entity/ai/attributes/AttributeSupplier$Builder; net/minecraft/world/entity/monster/Evoker/createAttributes ()Lnet/minecraft/world/entity/ai/attributes/AttributeSupplier$Builder; +MD: net/minecraft/world/entity/monster/Evoker/m_32662_ ()Lnet/minecraft/world/entity/animal/Sheep; net/minecraft/world/entity/monster/Evoker/getWololoTarget ()Lnet/minecraft/world/entity/animal/Sheep; +MD: net/minecraft/world/entity/monster/Evoker/m_5592_ ()Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/monster/Evoker/getDeathSound ()Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/monster/Evoker/m_7307_ (Lnet/minecraft/world/entity/Entity;)Z net/minecraft/world/entity/monster/Evoker/isAlliedTo (Lnet/minecraft/world/entity/Entity;)Z +MD: net/minecraft/world/entity/monster/Evoker/m_7378_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/entity/monster/Evoker/readAdditionalSaveData (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/entity/monster/Evoker/m_7380_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/entity/monster/Evoker/addAdditionalSaveData (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/entity/monster/Evoker/m_7515_ ()Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/monster/Evoker/getAmbientSound ()Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/monster/Evoker/m_7894_ ()Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/monster/Evoker/getCastingSoundEvent ()Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/monster/Evoker/m_7895_ (IZ)V net/minecraft/world/entity/monster/Evoker/applyRaidBuffs (IZ)V +MD: net/minecraft/world/entity/monster/Evoker/m_7930_ ()Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/monster/Evoker/getCelebrateSound ()Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/monster/Evoker/m_7975_ (Lnet/minecraft/world/damagesource/DamageSource;)Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/monster/Evoker/getHurtSound (Lnet/minecraft/world/damagesource/DamageSource;)Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/monster/Evoker/m_8024_ ()V net/minecraft/world/entity/monster/Evoker/customServerAiStep ()V +MD: net/minecraft/world/entity/monster/Evoker/m_8097_ ()V net/minecraft/world/entity/monster/Evoker/defineSynchedData ()V +MD: net/minecraft/world/entity/monster/Evoker/m_8099_ ()V net/minecraft/world/entity/monster/Evoker/registerGoals ()V +MD: net/minecraft/world/entity/monster/Evoker$EvokerAttackSpellGoal/ (Lnet/minecraft/world/entity/monster/Evoker;)V net/minecraft/world/entity/monster/Evoker$EvokerAttackSpellGoal/ (Lnet/minecraft/world/entity/monster/Evoker;)V +MD: net/minecraft/world/entity/monster/Evoker$EvokerAttackSpellGoal/m_32672_ (DDDDFI)V net/minecraft/world/entity/monster/Evoker$EvokerAttackSpellGoal/createSpellEntity (DDDDFI)V +MD: net/minecraft/world/entity/monster/Evoker$EvokerAttackSpellGoal/m_7030_ ()Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/monster/Evoker$EvokerAttackSpellGoal/getSpellPrepareSound ()Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/monster/Evoker$EvokerAttackSpellGoal/m_7269_ ()Lnet/minecraft/world/entity/monster/SpellcasterIllager$IllagerSpell; net/minecraft/world/entity/monster/Evoker$EvokerAttackSpellGoal/getSpell ()Lnet/minecraft/world/entity/monster/SpellcasterIllager$IllagerSpell; +MD: net/minecraft/world/entity/monster/Evoker$EvokerAttackSpellGoal/m_8067_ ()I net/minecraft/world/entity/monster/Evoker$EvokerAttackSpellGoal/getCastingInterval ()I +MD: net/minecraft/world/entity/monster/Evoker$EvokerAttackSpellGoal/m_8089_ ()I net/minecraft/world/entity/monster/Evoker$EvokerAttackSpellGoal/getCastingTime ()I +MD: net/minecraft/world/entity/monster/Evoker$EvokerAttackSpellGoal/m_8130_ ()V net/minecraft/world/entity/monster/Evoker$EvokerAttackSpellGoal/performSpellCasting ()V +MD: net/minecraft/world/entity/monster/Evoker$EvokerCastingSpellGoal/ (Lnet/minecraft/world/entity/monster/Evoker;)V net/minecraft/world/entity/monster/Evoker$EvokerCastingSpellGoal/ (Lnet/minecraft/world/entity/monster/Evoker;)V +MD: net/minecraft/world/entity/monster/Evoker$EvokerCastingSpellGoal/m_8037_ ()V net/minecraft/world/entity/monster/Evoker$EvokerCastingSpellGoal/tick ()V +MD: net/minecraft/world/entity/monster/Evoker$EvokerSummonSpellGoal/ (Lnet/minecraft/world/entity/monster/Evoker;)V net/minecraft/world/entity/monster/Evoker$EvokerSummonSpellGoal/ (Lnet/minecraft/world/entity/monster/Evoker;)V +MD: net/minecraft/world/entity/monster/Evoker$EvokerSummonSpellGoal/m_7030_ ()Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/monster/Evoker$EvokerSummonSpellGoal/getSpellPrepareSound ()Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/monster/Evoker$EvokerSummonSpellGoal/m_7269_ ()Lnet/minecraft/world/entity/monster/SpellcasterIllager$IllagerSpell; net/minecraft/world/entity/monster/Evoker$EvokerSummonSpellGoal/getSpell ()Lnet/minecraft/world/entity/monster/SpellcasterIllager$IllagerSpell; +MD: net/minecraft/world/entity/monster/Evoker$EvokerSummonSpellGoal/m_8036_ ()Z net/minecraft/world/entity/monster/Evoker$EvokerSummonSpellGoal/canUse ()Z +MD: net/minecraft/world/entity/monster/Evoker$EvokerSummonSpellGoal/m_8067_ ()I net/minecraft/world/entity/monster/Evoker$EvokerSummonSpellGoal/getCastingInterval ()I +MD: net/minecraft/world/entity/monster/Evoker$EvokerSummonSpellGoal/m_8089_ ()I net/minecraft/world/entity/monster/Evoker$EvokerSummonSpellGoal/getCastingTime ()I +MD: net/minecraft/world/entity/monster/Evoker$EvokerSummonSpellGoal/m_8130_ ()V net/minecraft/world/entity/monster/Evoker$EvokerSummonSpellGoal/performSpellCasting ()V +MD: net/minecraft/world/entity/monster/Evoker$EvokerWololoSpellGoal/ (Lnet/minecraft/world/entity/monster/Evoker;)V net/minecraft/world/entity/monster/Evoker$EvokerWololoSpellGoal/ (Lnet/minecraft/world/entity/monster/Evoker;)V +MD: net/minecraft/world/entity/monster/Evoker$EvokerWololoSpellGoal/m_32709_ (Lnet/minecraft/world/entity/LivingEntity;)Z net/minecraft/world/entity/monster/Evoker$EvokerWololoSpellGoal/lambda$new$0 (Lnet/minecraft/world/entity/LivingEntity;)Z +MD: net/minecraft/world/entity/monster/Evoker$EvokerWololoSpellGoal/m_7030_ ()Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/monster/Evoker$EvokerWololoSpellGoal/getSpellPrepareSound ()Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/monster/Evoker$EvokerWololoSpellGoal/m_7269_ ()Lnet/minecraft/world/entity/monster/SpellcasterIllager$IllagerSpell; net/minecraft/world/entity/monster/Evoker$EvokerWololoSpellGoal/getSpell ()Lnet/minecraft/world/entity/monster/SpellcasterIllager$IllagerSpell; +MD: net/minecraft/world/entity/monster/Evoker$EvokerWololoSpellGoal/m_8036_ ()Z net/minecraft/world/entity/monster/Evoker$EvokerWololoSpellGoal/canUse ()Z +MD: net/minecraft/world/entity/monster/Evoker$EvokerWololoSpellGoal/m_8037_ ()V net/minecraft/world/entity/monster/Evoker$EvokerWololoSpellGoal/tick ()V +MD: net/minecraft/world/entity/monster/Evoker$EvokerWololoSpellGoal/m_8041_ ()V net/minecraft/world/entity/monster/Evoker$EvokerWololoSpellGoal/stop ()V +MD: net/minecraft/world/entity/monster/Evoker$EvokerWololoSpellGoal/m_8045_ ()Z net/minecraft/world/entity/monster/Evoker$EvokerWololoSpellGoal/canContinueToUse ()Z +MD: net/minecraft/world/entity/monster/Evoker$EvokerWololoSpellGoal/m_8056_ ()V net/minecraft/world/entity/monster/Evoker$EvokerWololoSpellGoal/start ()V +MD: net/minecraft/world/entity/monster/Evoker$EvokerWololoSpellGoal/m_8067_ ()I net/minecraft/world/entity/monster/Evoker$EvokerWololoSpellGoal/getCastingInterval ()I +MD: net/minecraft/world/entity/monster/Evoker$EvokerWololoSpellGoal/m_8069_ ()I net/minecraft/world/entity/monster/Evoker$EvokerWololoSpellGoal/getCastWarmupTime ()I +MD: net/minecraft/world/entity/monster/Evoker$EvokerWololoSpellGoal/m_8089_ ()I net/minecraft/world/entity/monster/Evoker$EvokerWololoSpellGoal/getCastingTime ()I +MD: net/minecraft/world/entity/monster/Evoker$EvokerWololoSpellGoal/m_8130_ ()V net/minecraft/world/entity/monster/Evoker$EvokerWololoSpellGoal/performSpellCasting ()V +MD: net/minecraft/world/entity/monster/Ghast/ ()V net/minecraft/world/entity/monster/Ghast/ ()V +MD: net/minecraft/world/entity/monster/Ghast/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V net/minecraft/world/entity/monster/Ghast/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V +MD: net/minecraft/world/entity/monster/Ghast/m_218984_ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/world/entity/MobSpawnType;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)Z net/minecraft/world/entity/monster/Ghast/checkGhastSpawnRules (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/world/entity/MobSpawnType;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)Z +MD: net/minecraft/world/entity/monster/Ghast/m_238407_ (Lnet/minecraft/world/damagesource/DamageSource;)Z net/minecraft/world/entity/monster/Ghast/isReflectedFireball (Lnet/minecraft/world/damagesource/DamageSource;)Z +MD: net/minecraft/world/entity/monster/Ghast/m_289148_ (Lnet/minecraft/world/entity/LivingEntity;)Z net/minecraft/world/entity/monster/Ghast/lambda$registerGoals$0 (Lnet/minecraft/world/entity/LivingEntity;)Z +MD: net/minecraft/world/entity/monster/Ghast/m_32751_ ()I net/minecraft/world/entity/monster/Ghast/getExplosionPower ()I +MD: net/minecraft/world/entity/monster/Ghast/m_32752_ ()Lnet/minecraft/world/entity/ai/attributes/AttributeSupplier$Builder; net/minecraft/world/entity/monster/Ghast/createAttributes ()Lnet/minecraft/world/entity/ai/attributes/AttributeSupplier$Builder; +MD: net/minecraft/world/entity/monster/Ghast/m_32756_ ()Z net/minecraft/world/entity/monster/Ghast/isCharging ()Z +MD: net/minecraft/world/entity/monster/Ghast/m_32758_ (Z)V net/minecraft/world/entity/monster/Ghast/setCharging (Z)V +MD: net/minecraft/world/entity/monster/Ghast/m_5592_ ()Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/monster/Ghast/getDeathSound ()Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/monster/Ghast/m_5720_ ()Lnet/minecraft/sounds/SoundSource; net/minecraft/world/entity/monster/Ghast/getSoundSource ()Lnet/minecraft/sounds/SoundSource; +MD: net/minecraft/world/entity/monster/Ghast/m_5792_ ()I net/minecraft/world/entity/monster/Ghast/getMaxSpawnClusterSize ()I +MD: net/minecraft/world/entity/monster/Ghast/m_6121_ ()F net/minecraft/world/entity/monster/Ghast/getSoundVolume ()F +MD: net/minecraft/world/entity/monster/Ghast/m_6431_ (Lnet/minecraft/world/entity/Pose;Lnet/minecraft/world/entity/EntityDimensions;)F net/minecraft/world/entity/monster/Ghast/getStandingEyeHeight (Lnet/minecraft/world/entity/Pose;Lnet/minecraft/world/entity/EntityDimensions;)F +MD: net/minecraft/world/entity/monster/Ghast/m_6469_ (Lnet/minecraft/world/damagesource/DamageSource;F)Z net/minecraft/world/entity/monster/Ghast/hurt (Lnet/minecraft/world/damagesource/DamageSource;F)Z +MD: net/minecraft/world/entity/monster/Ghast/m_6673_ (Lnet/minecraft/world/damagesource/DamageSource;)Z net/minecraft/world/entity/monster/Ghast/isInvulnerableTo (Lnet/minecraft/world/damagesource/DamageSource;)Z +MD: net/minecraft/world/entity/monster/Ghast/m_7378_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/entity/monster/Ghast/readAdditionalSaveData (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/entity/monster/Ghast/m_7380_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/entity/monster/Ghast/addAdditionalSaveData (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/entity/monster/Ghast/m_7515_ ()Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/monster/Ghast/getAmbientSound ()Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/monster/Ghast/m_7975_ (Lnet/minecraft/world/damagesource/DamageSource;)Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/monster/Ghast/getHurtSound (Lnet/minecraft/world/damagesource/DamageSource;)Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/monster/Ghast/m_8028_ ()Z net/minecraft/world/entity/monster/Ghast/shouldDespawnInPeaceful ()Z +MD: net/minecraft/world/entity/monster/Ghast/m_8097_ ()V net/minecraft/world/entity/monster/Ghast/defineSynchedData ()V +MD: net/minecraft/world/entity/monster/Ghast/m_8099_ ()V net/minecraft/world/entity/monster/Ghast/registerGoals ()V +MD: net/minecraft/world/entity/monster/Ghast$GhastLookGoal/ (Lnet/minecraft/world/entity/monster/Ghast;)V net/minecraft/world/entity/monster/Ghast$GhastLookGoal/ (Lnet/minecraft/world/entity/monster/Ghast;)V +MD: net/minecraft/world/entity/monster/Ghast$GhastLookGoal/m_183429_ ()Z net/minecraft/world/entity/monster/Ghast$GhastLookGoal/requiresUpdateEveryTick ()Z +MD: net/minecraft/world/entity/monster/Ghast$GhastLookGoal/m_8036_ ()Z net/minecraft/world/entity/monster/Ghast$GhastLookGoal/canUse ()Z +MD: net/minecraft/world/entity/monster/Ghast$GhastLookGoal/m_8037_ ()V net/minecraft/world/entity/monster/Ghast$GhastLookGoal/tick ()V +MD: net/minecraft/world/entity/monster/Ghast$GhastMoveControl/ (Lnet/minecraft/world/entity/monster/Ghast;)V net/minecraft/world/entity/monster/Ghast$GhastMoveControl/ (Lnet/minecraft/world/entity/monster/Ghast;)V +MD: net/minecraft/world/entity/monster/Ghast$GhastMoveControl/m_32770_ (Lnet/minecraft/world/phys/Vec3;I)Z net/minecraft/world/entity/monster/Ghast$GhastMoveControl/canReach (Lnet/minecraft/world/phys/Vec3;I)Z +MD: net/minecraft/world/entity/monster/Ghast$GhastMoveControl/m_8126_ ()V net/minecraft/world/entity/monster/Ghast$GhastMoveControl/tick ()V +MD: net/minecraft/world/entity/monster/Ghast$GhastShootFireballGoal/ (Lnet/minecraft/world/entity/monster/Ghast;)V net/minecraft/world/entity/monster/Ghast$GhastShootFireballGoal/ (Lnet/minecraft/world/entity/monster/Ghast;)V +MD: net/minecraft/world/entity/monster/Ghast$GhastShootFireballGoal/m_183429_ ()Z net/minecraft/world/entity/monster/Ghast$GhastShootFireballGoal/requiresUpdateEveryTick ()Z +MD: net/minecraft/world/entity/monster/Ghast$GhastShootFireballGoal/m_8036_ ()Z net/minecraft/world/entity/monster/Ghast$GhastShootFireballGoal/canUse ()Z +MD: net/minecraft/world/entity/monster/Ghast$GhastShootFireballGoal/m_8037_ ()V net/minecraft/world/entity/monster/Ghast$GhastShootFireballGoal/tick ()V +MD: net/minecraft/world/entity/monster/Ghast$GhastShootFireballGoal/m_8041_ ()V net/minecraft/world/entity/monster/Ghast$GhastShootFireballGoal/stop ()V +MD: net/minecraft/world/entity/monster/Ghast$GhastShootFireballGoal/m_8056_ ()V net/minecraft/world/entity/monster/Ghast$GhastShootFireballGoal/start ()V +MD: net/minecraft/world/entity/monster/Ghast$RandomFloatAroundGoal/ (Lnet/minecraft/world/entity/monster/Ghast;)V net/minecraft/world/entity/monster/Ghast$RandomFloatAroundGoal/ (Lnet/minecraft/world/entity/monster/Ghast;)V +MD: net/minecraft/world/entity/monster/Ghast$RandomFloatAroundGoal/m_8036_ ()Z net/minecraft/world/entity/monster/Ghast$RandomFloatAroundGoal/canUse ()Z +MD: net/minecraft/world/entity/monster/Ghast$RandomFloatAroundGoal/m_8045_ ()Z net/minecraft/world/entity/monster/Ghast$RandomFloatAroundGoal/canContinueToUse ()Z +MD: net/minecraft/world/entity/monster/Ghast$RandomFloatAroundGoal/m_8056_ ()V net/minecraft/world/entity/monster/Ghast$RandomFloatAroundGoal/start ()V +MD: net/minecraft/world/entity/monster/Giant/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V net/minecraft/world/entity/monster/Giant/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V +MD: net/minecraft/world/entity/monster/Giant/m_32796_ ()Lnet/minecraft/world/entity/ai/attributes/AttributeSupplier$Builder; net/minecraft/world/entity/monster/Giant/createAttributes ()Lnet/minecraft/world/entity/ai/attributes/AttributeSupplier$Builder; +MD: net/minecraft/world/entity/monster/Giant/m_5610_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/LevelReader;)F net/minecraft/world/entity/monster/Giant/getWalkTargetValue (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/LevelReader;)F +MD: net/minecraft/world/entity/monster/Giant/m_6431_ (Lnet/minecraft/world/entity/Pose;Lnet/minecraft/world/entity/EntityDimensions;)F net/minecraft/world/entity/monster/Giant/getStandingEyeHeight (Lnet/minecraft/world/entity/Pose;Lnet/minecraft/world/entity/EntityDimensions;)F +MD: net/minecraft/world/entity/monster/Guardian/ ()V net/minecraft/world/entity/monster/Guardian/ ()V +MD: net/minecraft/world/entity/monster/Guardian/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V net/minecraft/world/entity/monster/Guardian/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V +MD: net/minecraft/world/entity/monster/Guardian/m_142319_ ()Lnet/minecraft/world/entity/Entity$MovementEmission; net/minecraft/world/entity/monster/Guardian/getMovementEmission ()Lnet/minecraft/world/entity/Entity$MovementEmission; +MD: net/minecraft/world/entity/monster/Guardian/m_218990_ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/world/entity/MobSpawnType;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)Z net/minecraft/world/entity/monster/Guardian/checkGuardianSpawnRules (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/world/entity/MobSpawnType;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)Z +MD: net/minecraft/world/entity/monster/Guardian/m_264437_ ()F net/minecraft/world/entity/monster/Guardian/getClientSideAttackTime ()F +MD: net/minecraft/world/entity/monster/Guardian/m_32812_ (F)F net/minecraft/world/entity/monster/Guardian/getAttackAnimationScale (F)F +MD: net/minecraft/world/entity/monster/Guardian/m_32817_ (I)V net/minecraft/world/entity/monster/Guardian/setActiveAttackTarget (I)V +MD: net/minecraft/world/entity/monster/Guardian/m_32853_ ()Lnet/minecraft/world/entity/ai/attributes/AttributeSupplier$Builder; net/minecraft/world/entity/monster/Guardian/createAttributes ()Lnet/minecraft/world/entity/ai/attributes/AttributeSupplier$Builder; +MD: net/minecraft/world/entity/monster/Guardian/m_32854_ ()Z net/minecraft/world/entity/monster/Guardian/isMoving ()Z +MD: net/minecraft/world/entity/monster/Guardian/m_32855_ ()Z net/minecraft/world/entity/monster/Guardian/hasActiveAttackTarget ()Z +MD: net/minecraft/world/entity/monster/Guardian/m_32856_ ()Lnet/minecraft/world/entity/LivingEntity; net/minecraft/world/entity/monster/Guardian/getActiveAttackTarget ()Lnet/minecraft/world/entity/LivingEntity; +MD: net/minecraft/world/entity/monster/Guardian/m_32861_ (Z)V net/minecraft/world/entity/monster/Guardian/setMoving (Z)V +MD: net/minecraft/world/entity/monster/Guardian/m_32863_ (F)F net/minecraft/world/entity/monster/Guardian/getTailAnimation (F)F +MD: net/minecraft/world/entity/monster/Guardian/m_32865_ (F)F net/minecraft/world/entity/monster/Guardian/getSpikesAnimation (F)F +MD: net/minecraft/world/entity/monster/Guardian/m_5592_ ()Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/monster/Guardian/getDeathSound ()Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/monster/Guardian/m_5610_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/LevelReader;)F net/minecraft/world/entity/monster/Guardian/getWalkTargetValue (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/LevelReader;)F +MD: net/minecraft/world/entity/monster/Guardian/m_6037_ (Lnet/minecraft/world/level/Level;)Lnet/minecraft/world/entity/ai/navigation/PathNavigation; net/minecraft/world/entity/monster/Guardian/createNavigation (Lnet/minecraft/world/level/Level;)Lnet/minecraft/world/entity/ai/navigation/PathNavigation; +MD: net/minecraft/world/entity/monster/Guardian/m_6040_ ()Z net/minecraft/world/entity/monster/Guardian/canBreatheUnderwater ()Z +MD: net/minecraft/world/entity/monster/Guardian/m_6336_ ()Lnet/minecraft/world/entity/MobType; net/minecraft/world/entity/monster/Guardian/getMobType ()Lnet/minecraft/world/entity/MobType; +MD: net/minecraft/world/entity/monster/Guardian/m_6431_ (Lnet/minecraft/world/entity/Pose;Lnet/minecraft/world/entity/EntityDimensions;)F net/minecraft/world/entity/monster/Guardian/getStandingEyeHeight (Lnet/minecraft/world/entity/Pose;Lnet/minecraft/world/entity/EntityDimensions;)F +MD: net/minecraft/world/entity/monster/Guardian/m_6469_ (Lnet/minecraft/world/damagesource/DamageSource;F)Z net/minecraft/world/entity/monster/Guardian/hurt (Lnet/minecraft/world/damagesource/DamageSource;F)Z +MD: net/minecraft/world/entity/monster/Guardian/m_6914_ (Lnet/minecraft/world/level/LevelReader;)Z net/minecraft/world/entity/monster/Guardian/checkSpawnObstruction (Lnet/minecraft/world/level/LevelReader;)Z +MD: net/minecraft/world/entity/monster/Guardian/m_7023_ (Lnet/minecraft/world/phys/Vec3;)V net/minecraft/world/entity/monster/Guardian/travel (Lnet/minecraft/world/phys/Vec3;)V +MD: net/minecraft/world/entity/monster/Guardian/m_7350_ (Lnet/minecraft/network/syncher/EntityDataAccessor;)V net/minecraft/world/entity/monster/Guardian/onSyncedDataUpdated (Lnet/minecraft/network/syncher/EntityDataAccessor;)V +MD: net/minecraft/world/entity/monster/Guardian/m_7515_ ()Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/monster/Guardian/getAmbientSound ()Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/monster/Guardian/m_7552_ ()I net/minecraft/world/entity/monster/Guardian/getAttackDuration ()I +MD: net/minecraft/world/entity/monster/Guardian/m_7868_ ()Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/monster/Guardian/getFlopSound ()Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/monster/Guardian/m_7975_ (Lnet/minecraft/world/damagesource/DamageSource;)Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/monster/Guardian/getHurtSound (Lnet/minecraft/world/damagesource/DamageSource;)Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/monster/Guardian/m_8097_ ()V net/minecraft/world/entity/monster/Guardian/defineSynchedData ()V +MD: net/minecraft/world/entity/monster/Guardian/m_8099_ ()V net/minecraft/world/entity/monster/Guardian/registerGoals ()V +MD: net/minecraft/world/entity/monster/Guardian/m_8100_ ()I net/minecraft/world/entity/monster/Guardian/getAmbientSoundInterval ()I +MD: net/minecraft/world/entity/monster/Guardian/m_8107_ ()V net/minecraft/world/entity/monster/Guardian/aiStep ()V +MD: net/minecraft/world/entity/monster/Guardian/m_8132_ ()I net/minecraft/world/entity/monster/Guardian/getMaxHeadXRot ()I +MD: net/minecraft/world/entity/monster/Guardian$GuardianAttackGoal/ (Lnet/minecraft/world/entity/monster/Guardian;)V net/minecraft/world/entity/monster/Guardian$GuardianAttackGoal/ (Lnet/minecraft/world/entity/monster/Guardian;)V +MD: net/minecraft/world/entity/monster/Guardian$GuardianAttackGoal/m_183429_ ()Z net/minecraft/world/entity/monster/Guardian$GuardianAttackGoal/requiresUpdateEveryTick ()Z +MD: net/minecraft/world/entity/monster/Guardian$GuardianAttackGoal/m_8036_ ()Z net/minecraft/world/entity/monster/Guardian$GuardianAttackGoal/canUse ()Z +MD: net/minecraft/world/entity/monster/Guardian$GuardianAttackGoal/m_8037_ ()V net/minecraft/world/entity/monster/Guardian$GuardianAttackGoal/tick ()V +MD: net/minecraft/world/entity/monster/Guardian$GuardianAttackGoal/m_8041_ ()V net/minecraft/world/entity/monster/Guardian$GuardianAttackGoal/stop ()V +MD: net/minecraft/world/entity/monster/Guardian$GuardianAttackGoal/m_8045_ ()Z net/minecraft/world/entity/monster/Guardian$GuardianAttackGoal/canContinueToUse ()Z +MD: net/minecraft/world/entity/monster/Guardian$GuardianAttackGoal/m_8056_ ()V net/minecraft/world/entity/monster/Guardian$GuardianAttackGoal/start ()V +MD: net/minecraft/world/entity/monster/Guardian$GuardianAttackSelector/ (Lnet/minecraft/world/entity/monster/Guardian;)V net/minecraft/world/entity/monster/Guardian$GuardianAttackSelector/ (Lnet/minecraft/world/entity/monster/Guardian;)V +MD: net/minecraft/world/entity/monster/Guardian$GuardianAttackSelector/test (Ljava/lang/Object;)Z net/minecraft/world/entity/monster/Guardian$GuardianAttackSelector/test (Ljava/lang/Object;)Z +MD: net/minecraft/world/entity/monster/Guardian$GuardianAttackSelector/test (Lnet/minecraft/world/entity/LivingEntity;)Z net/minecraft/world/entity/monster/Guardian$GuardianAttackSelector/test (Lnet/minecraft/world/entity/LivingEntity;)Z +MD: net/minecraft/world/entity/monster/Guardian$GuardianMoveControl/ (Lnet/minecraft/world/entity/monster/Guardian;)V net/minecraft/world/entity/monster/Guardian$GuardianMoveControl/ (Lnet/minecraft/world/entity/monster/Guardian;)V +MD: net/minecraft/world/entity/monster/Guardian$GuardianMoveControl/m_8126_ ()V net/minecraft/world/entity/monster/Guardian$GuardianMoveControl/tick ()V +MD: net/minecraft/world/entity/monster/Husk/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V net/minecraft/world/entity/monster/Husk/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V +MD: net/minecraft/world/entity/monster/Husk/m_218996_ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/ServerLevelAccessor;Lnet/minecraft/world/entity/MobSpawnType;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)Z net/minecraft/world/entity/monster/Husk/checkHuskSpawnRules (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/ServerLevelAccessor;Lnet/minecraft/world/entity/MobSpawnType;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)Z +MD: net/minecraft/world/entity/monster/Husk/m_5592_ ()Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/monster/Husk/getDeathSound ()Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/monster/Husk/m_5728_ ()Lnet/minecraft/world/item/ItemStack; net/minecraft/world/entity/monster/Husk/getSkull ()Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/entity/monster/Husk/m_5884_ ()Z net/minecraft/world/entity/monster/Husk/isSunSensitive ()Z +MD: net/minecraft/world/entity/monster/Husk/m_7327_ (Lnet/minecraft/world/entity/Entity;)Z net/minecraft/world/entity/monster/Husk/doHurtTarget (Lnet/minecraft/world/entity/Entity;)Z +MD: net/minecraft/world/entity/monster/Husk/m_7515_ ()Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/monster/Husk/getAmbientSound ()Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/monster/Husk/m_7593_ ()Z net/minecraft/world/entity/monster/Husk/convertsInWater ()Z +MD: net/minecraft/world/entity/monster/Husk/m_7595_ ()V net/minecraft/world/entity/monster/Husk/doUnderWaterConversion ()V +MD: net/minecraft/world/entity/monster/Husk/m_7660_ ()Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/monster/Husk/getStepSound ()Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/monster/Husk/m_7975_ (Lnet/minecraft/world/damagesource/DamageSource;)Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/monster/Husk/getHurtSound (Lnet/minecraft/world/damagesource/DamageSource;)Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/monster/Illusioner/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V net/minecraft/world/entity/monster/Illusioner/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V +MD: net/minecraft/world/entity/monster/Illusioner/m_32931_ ()Lnet/minecraft/world/entity/ai/attributes/AttributeSupplier$Builder; net/minecraft/world/entity/monster/Illusioner/createAttributes ()Lnet/minecraft/world/entity/ai/attributes/AttributeSupplier$Builder; +MD: net/minecraft/world/entity/monster/Illusioner/m_32939_ (F)[Lnet/minecraft/world/phys/Vec3; net/minecraft/world/entity/monster/Illusioner/getIllusionOffsets (F)[Lnet/minecraft/world/phys/Vec3; +MD: net/minecraft/world/entity/monster/Illusioner/m_5592_ ()Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/monster/Illusioner/getDeathSound ()Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/monster/Illusioner/m_6504_ (Lnet/minecraft/world/entity/LivingEntity;F)V net/minecraft/world/entity/monster/Illusioner/performRangedAttack (Lnet/minecraft/world/entity/LivingEntity;F)V +MD: net/minecraft/world/entity/monster/Illusioner/m_6518_ (Lnet/minecraft/world/level/ServerLevelAccessor;Lnet/minecraft/world/DifficultyInstance;Lnet/minecraft/world/entity/MobSpawnType;Lnet/minecraft/world/entity/SpawnGroupData;Lnet/minecraft/nbt/CompoundTag;)Lnet/minecraft/world/entity/SpawnGroupData; net/minecraft/world/entity/monster/Illusioner/finalizeSpawn (Lnet/minecraft/world/level/ServerLevelAccessor;Lnet/minecraft/world/DifficultyInstance;Lnet/minecraft/world/entity/MobSpawnType;Lnet/minecraft/world/entity/SpawnGroupData;Lnet/minecraft/nbt/CompoundTag;)Lnet/minecraft/world/entity/SpawnGroupData; +MD: net/minecraft/world/entity/monster/Illusioner/m_6768_ ()Lnet/minecraft/world/entity/monster/AbstractIllager$IllagerArmPose; net/minecraft/world/entity/monster/Illusioner/getArmPose ()Lnet/minecraft/world/entity/monster/AbstractIllager$IllagerArmPose; +MD: net/minecraft/world/entity/monster/Illusioner/m_6921_ ()Lnet/minecraft/world/phys/AABB; net/minecraft/world/entity/monster/Illusioner/getBoundingBoxForCulling ()Lnet/minecraft/world/phys/AABB; +MD: net/minecraft/world/entity/monster/Illusioner/m_7307_ (Lnet/minecraft/world/entity/Entity;)Z net/minecraft/world/entity/monster/Illusioner/isAlliedTo (Lnet/minecraft/world/entity/Entity;)Z +MD: net/minecraft/world/entity/monster/Illusioner/m_7515_ ()Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/monster/Illusioner/getAmbientSound ()Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/monster/Illusioner/m_7894_ ()Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/monster/Illusioner/getCastingSoundEvent ()Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/monster/Illusioner/m_7895_ (IZ)V net/minecraft/world/entity/monster/Illusioner/applyRaidBuffs (IZ)V +MD: net/minecraft/world/entity/monster/Illusioner/m_7930_ ()Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/monster/Illusioner/getCelebrateSound ()Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/monster/Illusioner/m_7975_ (Lnet/minecraft/world/damagesource/DamageSource;)Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/monster/Illusioner/getHurtSound (Lnet/minecraft/world/damagesource/DamageSource;)Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/monster/Illusioner/m_8097_ ()V net/minecraft/world/entity/monster/Illusioner/defineSynchedData ()V +MD: net/minecraft/world/entity/monster/Illusioner/m_8099_ ()V net/minecraft/world/entity/monster/Illusioner/registerGoals ()V +MD: net/minecraft/world/entity/monster/Illusioner/m_8107_ ()V net/minecraft/world/entity/monster/Illusioner/aiStep ()V +MD: net/minecraft/world/entity/monster/Illusioner$IllusionerBlindnessSpellGoal/ (Lnet/minecraft/world/entity/monster/Illusioner;)V net/minecraft/world/entity/monster/Illusioner$IllusionerBlindnessSpellGoal/ (Lnet/minecraft/world/entity/monster/Illusioner;)V +MD: net/minecraft/world/entity/monster/Illusioner$IllusionerBlindnessSpellGoal/m_7030_ ()Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/monster/Illusioner$IllusionerBlindnessSpellGoal/getSpellPrepareSound ()Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/monster/Illusioner$IllusionerBlindnessSpellGoal/m_7269_ ()Lnet/minecraft/world/entity/monster/SpellcasterIllager$IllagerSpell; net/minecraft/world/entity/monster/Illusioner$IllusionerBlindnessSpellGoal/getSpell ()Lnet/minecraft/world/entity/monster/SpellcasterIllager$IllagerSpell; +MD: net/minecraft/world/entity/monster/Illusioner$IllusionerBlindnessSpellGoal/m_8036_ ()Z net/minecraft/world/entity/monster/Illusioner$IllusionerBlindnessSpellGoal/canUse ()Z +MD: net/minecraft/world/entity/monster/Illusioner$IllusionerBlindnessSpellGoal/m_8056_ ()V net/minecraft/world/entity/monster/Illusioner$IllusionerBlindnessSpellGoal/start ()V +MD: net/minecraft/world/entity/monster/Illusioner$IllusionerBlindnessSpellGoal/m_8067_ ()I net/minecraft/world/entity/monster/Illusioner$IllusionerBlindnessSpellGoal/getCastingInterval ()I +MD: net/minecraft/world/entity/monster/Illusioner$IllusionerBlindnessSpellGoal/m_8089_ ()I net/minecraft/world/entity/monster/Illusioner$IllusionerBlindnessSpellGoal/getCastingTime ()I +MD: net/minecraft/world/entity/monster/Illusioner$IllusionerBlindnessSpellGoal/m_8130_ ()V net/minecraft/world/entity/monster/Illusioner$IllusionerBlindnessSpellGoal/performSpellCasting ()V +MD: net/minecraft/world/entity/monster/Illusioner$IllusionerMirrorSpellGoal/ (Lnet/minecraft/world/entity/monster/Illusioner;)V net/minecraft/world/entity/monster/Illusioner$IllusionerMirrorSpellGoal/ (Lnet/minecraft/world/entity/monster/Illusioner;)V +MD: net/minecraft/world/entity/monster/Illusioner$IllusionerMirrorSpellGoal/m_7030_ ()Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/monster/Illusioner$IllusionerMirrorSpellGoal/getSpellPrepareSound ()Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/monster/Illusioner$IllusionerMirrorSpellGoal/m_7269_ ()Lnet/minecraft/world/entity/monster/SpellcasterIllager$IllagerSpell; net/minecraft/world/entity/monster/Illusioner$IllusionerMirrorSpellGoal/getSpell ()Lnet/minecraft/world/entity/monster/SpellcasterIllager$IllagerSpell; +MD: net/minecraft/world/entity/monster/Illusioner$IllusionerMirrorSpellGoal/m_8036_ ()Z net/minecraft/world/entity/monster/Illusioner$IllusionerMirrorSpellGoal/canUse ()Z +MD: net/minecraft/world/entity/monster/Illusioner$IllusionerMirrorSpellGoal/m_8067_ ()I net/minecraft/world/entity/monster/Illusioner$IllusionerMirrorSpellGoal/getCastingInterval ()I +MD: net/minecraft/world/entity/monster/Illusioner$IllusionerMirrorSpellGoal/m_8089_ ()I net/minecraft/world/entity/monster/Illusioner$IllusionerMirrorSpellGoal/getCastingTime ()I +MD: net/minecraft/world/entity/monster/Illusioner$IllusionerMirrorSpellGoal/m_8130_ ()V net/minecraft/world/entity/monster/Illusioner$IllusionerMirrorSpellGoal/performSpellCasting ()V +MD: net/minecraft/world/entity/monster/MagmaCube/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V net/minecraft/world/entity/monster/MagmaCube/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V +MD: net/minecraft/world/entity/monster/MagmaCube/m_203347_ (Lnet/minecraft/tags/TagKey;)V net/minecraft/world/entity/monster/MagmaCube/jumpInLiquid (Lnet/minecraft/tags/TagKey;)V +MD: net/minecraft/world/entity/monster/MagmaCube/m_213856_ ()F net/minecraft/world/entity/monster/MagmaCube/getLightLevelDependentMagicValue ()F +MD: net/minecraft/world/entity/monster/MagmaCube/m_219002_ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/world/entity/MobSpawnType;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)Z net/minecraft/world/entity/monster/MagmaCube/checkMagmaCubeSpawnRules (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/world/entity/MobSpawnType;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)Z +MD: net/minecraft/world/entity/monster/MagmaCube/m_33000_ ()Lnet/minecraft/world/entity/ai/attributes/AttributeSupplier$Builder; net/minecraft/world/entity/monster/MagmaCube/createAttributes ()Lnet/minecraft/world/entity/ai/attributes/AttributeSupplier$Builder; +MD: net/minecraft/world/entity/monster/MagmaCube/m_5592_ ()Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/monster/MagmaCube/getDeathSound ()Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/monster/MagmaCube/m_6060_ ()Z net/minecraft/world/entity/monster/MagmaCube/isOnFire ()Z +MD: net/minecraft/world/entity/monster/MagmaCube/m_6135_ ()V net/minecraft/world/entity/monster/MagmaCube/jumpFromGround ()V +MD: net/minecraft/world/entity/monster/MagmaCube/m_6300_ ()Lnet/minecraft/core/particles/ParticleOptions; net/minecraft/world/entity/monster/MagmaCube/getParticleType ()Lnet/minecraft/core/particles/ParticleOptions; +MD: net/minecraft/world/entity/monster/MagmaCube/m_6914_ (Lnet/minecraft/world/level/LevelReader;)Z net/minecraft/world/entity/monster/MagmaCube/checkSpawnObstruction (Lnet/minecraft/world/level/LevelReader;)Z +MD: net/minecraft/world/entity/monster/MagmaCube/m_7480_ ()V net/minecraft/world/entity/monster/MagmaCube/decreaseSquish ()V +MD: net/minecraft/world/entity/monster/MagmaCube/m_7483_ ()Z net/minecraft/world/entity/monster/MagmaCube/isDealsDamage ()Z +MD: net/minecraft/world/entity/monster/MagmaCube/m_7549_ ()I net/minecraft/world/entity/monster/MagmaCube/getJumpDelay ()I +MD: net/minecraft/world/entity/monster/MagmaCube/m_7566_ ()F net/minecraft/world/entity/monster/MagmaCube/getAttackDamage ()F +MD: net/minecraft/world/entity/monster/MagmaCube/m_7839_ (IZ)V net/minecraft/world/entity/monster/MagmaCube/setSize (IZ)V +MD: net/minecraft/world/entity/monster/MagmaCube/m_7903_ ()Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/monster/MagmaCube/getJumpSound ()Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/monster/MagmaCube/m_7905_ ()Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/monster/MagmaCube/getSquishSound ()Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/monster/MagmaCube/m_7975_ (Lnet/minecraft/world/damagesource/DamageSource;)Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/monster/MagmaCube/getHurtSound (Lnet/minecraft/world/damagesource/DamageSource;)Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/monster/Monster/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V net/minecraft/world/entity/monster/Monster/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V +MD: net/minecraft/world/entity/monster/Monster/m_196493_ ()Lnet/minecraft/world/entity/LivingEntity$Fallsounds; net/minecraft/world/entity/monster/Monster/getFallSounds ()Lnet/minecraft/world/entity/LivingEntity$Fallsounds; +MD: net/minecraft/world/entity/monster/Monster/m_219009_ (Lnet/minecraft/world/level/ServerLevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)Z net/minecraft/world/entity/monster/Monster/isDarkEnoughToSpawn (Lnet/minecraft/world/level/ServerLevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)Z +MD: net/minecraft/world/entity/monster/Monster/m_219013_ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/ServerLevelAccessor;Lnet/minecraft/world/entity/MobSpawnType;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)Z net/minecraft/world/entity/monster/Monster/checkMonsterSpawnRules (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/ServerLevelAccessor;Lnet/minecraft/world/entity/MobSpawnType;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)Z +MD: net/minecraft/world/entity/monster/Monster/m_219019_ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/world/entity/MobSpawnType;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)Z net/minecraft/world/entity/monster/Monster/checkAnyLightMonsterSpawnRules (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/world/entity/MobSpawnType;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)Z +MD: net/minecraft/world/entity/monster/Monster/m_33035_ ()Lnet/minecraft/world/entity/ai/attributes/AttributeSupplier$Builder; net/minecraft/world/entity/monster/Monster/createMonsterAttributes ()Lnet/minecraft/world/entity/ai/attributes/AttributeSupplier$Builder; +MD: net/minecraft/world/entity/monster/Monster/m_5501_ ()Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/monster/Monster/getSwimSound ()Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/monster/Monster/m_5509_ ()Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/monster/Monster/getSwimSplashSound ()Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/monster/Monster/m_5592_ ()Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/monster/Monster/getDeathSound ()Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/monster/Monster/m_5610_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/LevelReader;)F net/minecraft/world/entity/monster/Monster/getWalkTargetValue (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/LevelReader;)F +MD: net/minecraft/world/entity/monster/Monster/m_5720_ ()Lnet/minecraft/sounds/SoundSource; net/minecraft/world/entity/monster/Monster/getSoundSource ()Lnet/minecraft/sounds/SoundSource; +MD: net/minecraft/world/entity/monster/Monster/m_6125_ ()Z net/minecraft/world/entity/monster/Monster/shouldDropLoot ()Z +MD: net/minecraft/world/entity/monster/Monster/m_6149_ ()Z net/minecraft/world/entity/monster/Monster/shouldDropExperience ()Z +MD: net/minecraft/world/entity/monster/Monster/m_6298_ (Lnet/minecraft/world/item/ItemStack;)Lnet/minecraft/world/item/ItemStack; net/minecraft/world/entity/monster/Monster/getProjectile (Lnet/minecraft/world/item/ItemStack;)Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/entity/monster/Monster/m_6935_ (Lnet/minecraft/world/entity/player/Player;)Z net/minecraft/world/entity/monster/Monster/isPreventingPlayerRest (Lnet/minecraft/world/entity/player/Player;)Z +MD: net/minecraft/world/entity/monster/Monster/m_7562_ ()V net/minecraft/world/entity/monster/Monster/updateNoActionTime ()V +MD: net/minecraft/world/entity/monster/Monster/m_7975_ (Lnet/minecraft/world/damagesource/DamageSource;)Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/monster/Monster/getHurtSound (Lnet/minecraft/world/damagesource/DamageSource;)Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/monster/Monster/m_8028_ ()Z net/minecraft/world/entity/monster/Monster/shouldDespawnInPeaceful ()Z +MD: net/minecraft/world/entity/monster/Monster/m_8107_ ()V net/minecraft/world/entity/monster/Monster/aiStep ()V +MD: net/minecraft/world/entity/monster/PatrollingMonster/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V net/minecraft/world/entity/monster/PatrollingMonster/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V +MD: net/minecraft/world/entity/monster/PatrollingMonster/m_219025_ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/world/entity/MobSpawnType;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)Z net/minecraft/world/entity/monster/PatrollingMonster/checkPatrollingMonsterSpawnRules (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/world/entity/MobSpawnType;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)Z +MD: net/minecraft/world/entity/monster/PatrollingMonster/m_33065_ ()Lnet/minecraft/core/BlockPos; net/minecraft/world/entity/monster/PatrollingMonster/getPatrolTarget ()Lnet/minecraft/core/BlockPos; +MD: net/minecraft/world/entity/monster/PatrollingMonster/m_33066_ ()Z net/minecraft/world/entity/monster/PatrollingMonster/hasPatrolTarget ()Z +MD: net/minecraft/world/entity/monster/PatrollingMonster/m_33067_ ()Z net/minecraft/world/entity/monster/PatrollingMonster/isPatrolLeader ()Z +MD: net/minecraft/world/entity/monster/PatrollingMonster/m_33068_ ()V net/minecraft/world/entity/monster/PatrollingMonster/findPatrolTarget ()V +MD: net/minecraft/world/entity/monster/PatrollingMonster/m_33069_ ()Z net/minecraft/world/entity/monster/PatrollingMonster/isPatrolling ()Z +MD: net/minecraft/world/entity/monster/PatrollingMonster/m_33070_ (Lnet/minecraft/core/BlockPos;)V net/minecraft/world/entity/monster/PatrollingMonster/setPatrolTarget (Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/world/entity/monster/PatrollingMonster/m_33075_ (Z)V net/minecraft/world/entity/monster/PatrollingMonster/setPatrolLeader (Z)V +MD: net/minecraft/world/entity/monster/PatrollingMonster/m_33077_ (Z)V net/minecraft/world/entity/monster/PatrollingMonster/setPatrolling (Z)V +MD: net/minecraft/world/entity/monster/PatrollingMonster/m_6049_ ()D net/minecraft/world/entity/monster/PatrollingMonster/getMyRidingOffset ()D +MD: net/minecraft/world/entity/monster/PatrollingMonster/m_6518_ (Lnet/minecraft/world/level/ServerLevelAccessor;Lnet/minecraft/world/DifficultyInstance;Lnet/minecraft/world/entity/MobSpawnType;Lnet/minecraft/world/entity/SpawnGroupData;Lnet/minecraft/nbt/CompoundTag;)Lnet/minecraft/world/entity/SpawnGroupData; net/minecraft/world/entity/monster/PatrollingMonster/finalizeSpawn (Lnet/minecraft/world/level/ServerLevelAccessor;Lnet/minecraft/world/DifficultyInstance;Lnet/minecraft/world/entity/MobSpawnType;Lnet/minecraft/world/entity/SpawnGroupData;Lnet/minecraft/nbt/CompoundTag;)Lnet/minecraft/world/entity/SpawnGroupData; +MD: net/minecraft/world/entity/monster/PatrollingMonster/m_6785_ (D)Z net/minecraft/world/entity/monster/PatrollingMonster/removeWhenFarAway (D)Z +MD: net/minecraft/world/entity/monster/PatrollingMonster/m_7378_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/entity/monster/PatrollingMonster/readAdditionalSaveData (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/entity/monster/PatrollingMonster/m_7380_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/entity/monster/PatrollingMonster/addAdditionalSaveData (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/entity/monster/PatrollingMonster/m_7490_ ()Z net/minecraft/world/entity/monster/PatrollingMonster/canBeLeader ()Z +MD: net/minecraft/world/entity/monster/PatrollingMonster/m_7492_ ()Z net/minecraft/world/entity/monster/PatrollingMonster/canJoinPatrol ()Z +MD: net/minecraft/world/entity/monster/PatrollingMonster/m_8099_ ()V net/minecraft/world/entity/monster/PatrollingMonster/registerGoals ()V +MD: net/minecraft/world/entity/monster/PatrollingMonster$LongDistancePatrolGoal/ (Lnet/minecraft/world/entity/monster/PatrollingMonster;DD)V net/minecraft/world/entity/monster/PatrollingMonster$LongDistancePatrolGoal/ (Lnet/minecraft/world/entity/monster/PatrollingMonster;DD)V +MD: net/minecraft/world/entity/monster/PatrollingMonster$LongDistancePatrolGoal/m_264002_ (Lnet/minecraft/world/entity/monster/PatrollingMonster;)Z net/minecraft/world/entity/monster/PatrollingMonster$LongDistancePatrolGoal/lambda$findPatrolCompanions$0 (Lnet/minecraft/world/entity/monster/PatrollingMonster;)Z +MD: net/minecraft/world/entity/monster/PatrollingMonster$LongDistancePatrolGoal/m_33093_ ()Ljava/util/List; net/minecraft/world/entity/monster/PatrollingMonster$LongDistancePatrolGoal/findPatrolCompanions ()Ljava/util/List; +MD: net/minecraft/world/entity/monster/PatrollingMonster$LongDistancePatrolGoal/m_33094_ ()Z net/minecraft/world/entity/monster/PatrollingMonster$LongDistancePatrolGoal/moveRandomly ()Z +MD: net/minecraft/world/entity/monster/PatrollingMonster$LongDistancePatrolGoal/m_8036_ ()Z net/minecraft/world/entity/monster/PatrollingMonster$LongDistancePatrolGoal/canUse ()Z +MD: net/minecraft/world/entity/monster/PatrollingMonster$LongDistancePatrolGoal/m_8037_ ()V net/minecraft/world/entity/monster/PatrollingMonster$LongDistancePatrolGoal/tick ()V +MD: net/minecraft/world/entity/monster/PatrollingMonster$LongDistancePatrolGoal/m_8041_ ()V net/minecraft/world/entity/monster/PatrollingMonster$LongDistancePatrolGoal/stop ()V +MD: net/minecraft/world/entity/monster/PatrollingMonster$LongDistancePatrolGoal/m_8056_ ()V net/minecraft/world/entity/monster/PatrollingMonster$LongDistancePatrolGoal/start ()V +MD: net/minecraft/world/entity/monster/Phantom/ ()V net/minecraft/world/entity/monster/Phantom/ ()V +MD: net/minecraft/world/entity/monster/Phantom/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V net/minecraft/world/entity/monster/Phantom/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V +MD: net/minecraft/world/entity/monster/Phantom/m_142039_ ()Z net/minecraft/world/entity/monster/Phantom/isFlapping ()Z +MD: net/minecraft/world/entity/monster/Phantom/m_149736_ ()I net/minecraft/world/entity/monster/Phantom/getUniqueFlapTickOffset ()I +MD: net/minecraft/world/entity/monster/Phantom/m_219031_ (Lnet/minecraft/world/entity/monster/Phantom;)Lnet/minecraft/util/RandomSource; net/minecraft/world/entity/monster/Phantom/access$000 (Lnet/minecraft/world/entity/monster/Phantom;)Lnet/minecraft/util/RandomSource; +MD: net/minecraft/world/entity/monster/Phantom/m_219033_ (Lnet/minecraft/world/entity/monster/Phantom;)Lnet/minecraft/util/RandomSource; net/minecraft/world/entity/monster/Phantom/access$100 (Lnet/minecraft/world/entity/monster/Phantom;)Lnet/minecraft/util/RandomSource; +MD: net/minecraft/world/entity/monster/Phantom/m_219035_ (Lnet/minecraft/world/entity/monster/Phantom;)Lnet/minecraft/util/RandomSource; net/minecraft/world/entity/monster/Phantom/access$200 (Lnet/minecraft/world/entity/monster/Phantom;)Lnet/minecraft/util/RandomSource; +MD: net/minecraft/world/entity/monster/Phantom/m_219037_ (Lnet/minecraft/world/entity/monster/Phantom;)Lnet/minecraft/util/RandomSource; net/minecraft/world/entity/monster/Phantom/access$300 (Lnet/minecraft/world/entity/monster/Phantom;)Lnet/minecraft/util/RandomSource; +MD: net/minecraft/world/entity/monster/Phantom/m_219039_ (Lnet/minecraft/world/entity/monster/Phantom;)Lnet/minecraft/util/RandomSource; net/minecraft/world/entity/monster/Phantom/access$400 (Lnet/minecraft/world/entity/monster/Phantom;)Lnet/minecraft/util/RandomSource; +MD: net/minecraft/world/entity/monster/Phantom/m_219041_ (Lnet/minecraft/world/entity/monster/Phantom;)Lnet/minecraft/util/RandomSource; net/minecraft/world/entity/monster/Phantom/access$500 (Lnet/minecraft/world/entity/monster/Phantom;)Lnet/minecraft/util/RandomSource; +MD: net/minecraft/world/entity/monster/Phantom/m_219043_ (Lnet/minecraft/world/entity/monster/Phantom;)Lnet/minecraft/util/RandomSource; net/minecraft/world/entity/monster/Phantom/access$600 (Lnet/minecraft/world/entity/monster/Phantom;)Lnet/minecraft/util/RandomSource; +MD: net/minecraft/world/entity/monster/Phantom/m_219045_ (Lnet/minecraft/world/entity/monster/Phantom;)Lnet/minecraft/util/RandomSource; net/minecraft/world/entity/monster/Phantom/access$700 (Lnet/minecraft/world/entity/monster/Phantom;)Lnet/minecraft/util/RandomSource; +MD: net/minecraft/world/entity/monster/Phantom/m_219047_ (Lnet/minecraft/world/entity/monster/Phantom;)Lnet/minecraft/util/RandomSource; net/minecraft/world/entity/monster/Phantom/access$800 (Lnet/minecraft/world/entity/monster/Phantom;)Lnet/minecraft/util/RandomSource; +MD: net/minecraft/world/entity/monster/Phantom/m_219049_ (Lnet/minecraft/world/entity/monster/Phantom;)Lnet/minecraft/util/RandomSource; net/minecraft/world/entity/monster/Phantom/access$900 (Lnet/minecraft/world/entity/monster/Phantom;)Lnet/minecraft/util/RandomSource; +MD: net/minecraft/world/entity/monster/Phantom/m_219051_ (Lnet/minecraft/world/entity/monster/Phantom;)Lnet/minecraft/util/RandomSource; net/minecraft/world/entity/monster/Phantom/access$1000 (Lnet/minecraft/world/entity/monster/Phantom;)Lnet/minecraft/util/RandomSource; +MD: net/minecraft/world/entity/monster/Phantom/m_219053_ (Lnet/minecraft/world/entity/monster/Phantom;)Lnet/minecraft/util/RandomSource; net/minecraft/world/entity/monster/Phantom/access$1100 (Lnet/minecraft/world/entity/monster/Phantom;)Lnet/minecraft/util/RandomSource; +MD: net/minecraft/world/entity/monster/Phantom/m_33108_ (I)V net/minecraft/world/entity/monster/Phantom/setPhantomSize (I)V +MD: net/minecraft/world/entity/monster/Phantom/m_33155_ ()V net/minecraft/world/entity/monster/Phantom/updatePhantomSizeInfo ()V +MD: net/minecraft/world/entity/monster/Phantom/m_33172_ ()I net/minecraft/world/entity/monster/Phantom/getPhantomSize ()I +MD: net/minecraft/world/entity/monster/Phantom/m_5592_ ()Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/monster/Phantom/getDeathSound ()Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/monster/Phantom/m_5720_ ()Lnet/minecraft/sounds/SoundSource; net/minecraft/world/entity/monster/Phantom/getSoundSource ()Lnet/minecraft/sounds/SoundSource; +MD: net/minecraft/world/entity/monster/Phantom/m_6048_ ()D net/minecraft/world/entity/monster/Phantom/getPassengersRidingOffset ()D +MD: net/minecraft/world/entity/monster/Phantom/m_6121_ ()F net/minecraft/world/entity/monster/Phantom/getSoundVolume ()F +MD: net/minecraft/world/entity/monster/Phantom/m_6336_ ()Lnet/minecraft/world/entity/MobType; net/minecraft/world/entity/monster/Phantom/getMobType ()Lnet/minecraft/world/entity/MobType; +MD: net/minecraft/world/entity/monster/Phantom/m_6431_ (Lnet/minecraft/world/entity/Pose;Lnet/minecraft/world/entity/EntityDimensions;)F net/minecraft/world/entity/monster/Phantom/getStandingEyeHeight (Lnet/minecraft/world/entity/Pose;Lnet/minecraft/world/entity/EntityDimensions;)F +MD: net/minecraft/world/entity/monster/Phantom/m_6518_ (Lnet/minecraft/world/level/ServerLevelAccessor;Lnet/minecraft/world/DifficultyInstance;Lnet/minecraft/world/entity/MobSpawnType;Lnet/minecraft/world/entity/SpawnGroupData;Lnet/minecraft/nbt/CompoundTag;)Lnet/minecraft/world/entity/SpawnGroupData; net/minecraft/world/entity/monster/Phantom/finalizeSpawn (Lnet/minecraft/world/level/ServerLevelAccessor;Lnet/minecraft/world/DifficultyInstance;Lnet/minecraft/world/entity/MobSpawnType;Lnet/minecraft/world/entity/SpawnGroupData;Lnet/minecraft/nbt/CompoundTag;)Lnet/minecraft/world/entity/SpawnGroupData; +MD: net/minecraft/world/entity/monster/Phantom/m_6549_ (Lnet/minecraft/world/entity/EntityType;)Z net/minecraft/world/entity/monster/Phantom/canAttackType (Lnet/minecraft/world/entity/EntityType;)Z +MD: net/minecraft/world/entity/monster/Phantom/m_6783_ (D)Z net/minecraft/world/entity/monster/Phantom/shouldRenderAtSqrDistance (D)Z +MD: net/minecraft/world/entity/monster/Phantom/m_6972_ (Lnet/minecraft/world/entity/Pose;)Lnet/minecraft/world/entity/EntityDimensions; net/minecraft/world/entity/monster/Phantom/getDimensions (Lnet/minecraft/world/entity/Pose;)Lnet/minecraft/world/entity/EntityDimensions; +MD: net/minecraft/world/entity/monster/Phantom/m_7350_ (Lnet/minecraft/network/syncher/EntityDataAccessor;)V net/minecraft/world/entity/monster/Phantom/onSyncedDataUpdated (Lnet/minecraft/network/syncher/EntityDataAccessor;)V +MD: net/minecraft/world/entity/monster/Phantom/m_7378_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/entity/monster/Phantom/readAdditionalSaveData (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/entity/monster/Phantom/m_7380_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/entity/monster/Phantom/addAdditionalSaveData (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/entity/monster/Phantom/m_7515_ ()Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/monster/Phantom/getAmbientSound ()Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/monster/Phantom/m_7560_ ()Lnet/minecraft/world/entity/ai/control/BodyRotationControl; net/minecraft/world/entity/monster/Phantom/createBodyControl ()Lnet/minecraft/world/entity/ai/control/BodyRotationControl; +MD: net/minecraft/world/entity/monster/Phantom/m_7975_ (Lnet/minecraft/world/damagesource/DamageSource;)Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/monster/Phantom/getHurtSound (Lnet/minecraft/world/damagesource/DamageSource;)Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/monster/Phantom/m_8024_ ()V net/minecraft/world/entity/monster/Phantom/customServerAiStep ()V +MD: net/minecraft/world/entity/monster/Phantom/m_8028_ ()Z net/minecraft/world/entity/monster/Phantom/shouldDespawnInPeaceful ()Z +MD: net/minecraft/world/entity/monster/Phantom/m_8097_ ()V net/minecraft/world/entity/monster/Phantom/defineSynchedData ()V +MD: net/minecraft/world/entity/monster/Phantom/m_8099_ ()V net/minecraft/world/entity/monster/Phantom/registerGoals ()V +MD: net/minecraft/world/entity/monster/Phantom/m_8107_ ()V net/minecraft/world/entity/monster/Phantom/aiStep ()V +MD: net/minecraft/world/entity/monster/Phantom/m_8119_ ()V net/minecraft/world/entity/monster/Phantom/tick ()V +MD: net/minecraft/world/entity/monster/Phantom$AttackPhase/ ()V net/minecraft/world/entity/monster/Phantom$AttackPhase/ ()V +MD: net/minecraft/world/entity/monster/Phantom$AttackPhase/ (Ljava/lang/String;I)V net/minecraft/world/entity/monster/Phantom$AttackPhase/ (Ljava/lang/String;I)V +MD: net/minecraft/world/entity/monster/Phantom$AttackPhase/m_149737_ ()[Lnet/minecraft/world/entity/monster/Phantom$AttackPhase; net/minecraft/world/entity/monster/Phantom$AttackPhase/$values ()[Lnet/minecraft/world/entity/monster/Phantom$AttackPhase; +MD: net/minecraft/world/entity/monster/Phantom$AttackPhase/valueOf (Ljava/lang/String;)Lnet/minecraft/world/entity/monster/Phantom$AttackPhase; net/minecraft/world/entity/monster/Phantom$AttackPhase/valueOf (Ljava/lang/String;)Lnet/minecraft/world/entity/monster/Phantom$AttackPhase; +MD: net/minecraft/world/entity/monster/Phantom$AttackPhase/values ()[Lnet/minecraft/world/entity/monster/Phantom$AttackPhase; net/minecraft/world/entity/monster/Phantom$AttackPhase/values ()[Lnet/minecraft/world/entity/monster/Phantom$AttackPhase; +MD: net/minecraft/world/entity/monster/Phantom$PhantomAttackPlayerTargetGoal/ (Lnet/minecraft/world/entity/monster/Phantom;)V net/minecraft/world/entity/monster/Phantom$PhantomAttackPlayerTargetGoal/ (Lnet/minecraft/world/entity/monster/Phantom;)V +MD: net/minecraft/world/entity/monster/Phantom$PhantomAttackPlayerTargetGoal/m_8036_ ()Z net/minecraft/world/entity/monster/Phantom$PhantomAttackPlayerTargetGoal/canUse ()Z +MD: net/minecraft/world/entity/monster/Phantom$PhantomAttackPlayerTargetGoal/m_8045_ ()Z net/minecraft/world/entity/monster/Phantom$PhantomAttackPlayerTargetGoal/canContinueToUse ()Z +MD: net/minecraft/world/entity/monster/Phantom$PhantomAttackStrategyGoal/ (Lnet/minecraft/world/entity/monster/Phantom;)V net/minecraft/world/entity/monster/Phantom$PhantomAttackStrategyGoal/ (Lnet/minecraft/world/entity/monster/Phantom;)V +MD: net/minecraft/world/entity/monster/Phantom$PhantomAttackStrategyGoal/m_33212_ ()V net/minecraft/world/entity/monster/Phantom$PhantomAttackStrategyGoal/setAnchorAboveTarget ()V +MD: net/minecraft/world/entity/monster/Phantom$PhantomAttackStrategyGoal/m_8036_ ()Z net/minecraft/world/entity/monster/Phantom$PhantomAttackStrategyGoal/canUse ()Z +MD: net/minecraft/world/entity/monster/Phantom$PhantomAttackStrategyGoal/m_8037_ ()V net/minecraft/world/entity/monster/Phantom$PhantomAttackStrategyGoal/tick ()V +MD: net/minecraft/world/entity/monster/Phantom$PhantomAttackStrategyGoal/m_8041_ ()V net/minecraft/world/entity/monster/Phantom$PhantomAttackStrategyGoal/stop ()V +MD: net/minecraft/world/entity/monster/Phantom$PhantomAttackStrategyGoal/m_8056_ ()V net/minecraft/world/entity/monster/Phantom$PhantomAttackStrategyGoal/start ()V +MD: net/minecraft/world/entity/monster/Phantom$PhantomBodyRotationControl/ (Lnet/minecraft/world/entity/monster/Phantom;Lnet/minecraft/world/entity/Mob;)V net/minecraft/world/entity/monster/Phantom$PhantomBodyRotationControl/ (Lnet/minecraft/world/entity/monster/Phantom;Lnet/minecraft/world/entity/Mob;)V +MD: net/minecraft/world/entity/monster/Phantom$PhantomBodyRotationControl/m_8121_ ()V net/minecraft/world/entity/monster/Phantom$PhantomBodyRotationControl/clientTick ()V +MD: net/minecraft/world/entity/monster/Phantom$PhantomCircleAroundAnchorGoal/ (Lnet/minecraft/world/entity/monster/Phantom;)V net/minecraft/world/entity/monster/Phantom$PhantomCircleAroundAnchorGoal/ (Lnet/minecraft/world/entity/monster/Phantom;)V +MD: net/minecraft/world/entity/monster/Phantom$PhantomCircleAroundAnchorGoal/m_33231_ ()V net/minecraft/world/entity/monster/Phantom$PhantomCircleAroundAnchorGoal/selectNext ()V +MD: net/minecraft/world/entity/monster/Phantom$PhantomCircleAroundAnchorGoal/m_8036_ ()Z net/minecraft/world/entity/monster/Phantom$PhantomCircleAroundAnchorGoal/canUse ()Z +MD: net/minecraft/world/entity/monster/Phantom$PhantomCircleAroundAnchorGoal/m_8037_ ()V net/minecraft/world/entity/monster/Phantom$PhantomCircleAroundAnchorGoal/tick ()V +MD: net/minecraft/world/entity/monster/Phantom$PhantomCircleAroundAnchorGoal/m_8056_ ()V net/minecraft/world/entity/monster/Phantom$PhantomCircleAroundAnchorGoal/start ()V +MD: net/minecraft/world/entity/monster/Phantom$PhantomLookControl/ (Lnet/minecraft/world/entity/monster/Phantom;Lnet/minecraft/world/entity/Mob;)V net/minecraft/world/entity/monster/Phantom$PhantomLookControl/ (Lnet/minecraft/world/entity/monster/Phantom;Lnet/minecraft/world/entity/Mob;)V +MD: net/minecraft/world/entity/monster/Phantom$PhantomLookControl/m_8128_ ()V net/minecraft/world/entity/monster/Phantom$PhantomLookControl/tick ()V +MD: net/minecraft/world/entity/monster/Phantom$PhantomMoveControl/ (Lnet/minecraft/world/entity/monster/Phantom;Lnet/minecraft/world/entity/Mob;)V net/minecraft/world/entity/monster/Phantom$PhantomMoveControl/ (Lnet/minecraft/world/entity/monster/Phantom;Lnet/minecraft/world/entity/Mob;)V +MD: net/minecraft/world/entity/monster/Phantom$PhantomMoveControl/m_8126_ ()V net/minecraft/world/entity/monster/Phantom$PhantomMoveControl/tick ()V +MD: net/minecraft/world/entity/monster/Phantom$PhantomMoveTargetGoal/ (Lnet/minecraft/world/entity/monster/Phantom;)V net/minecraft/world/entity/monster/Phantom$PhantomMoveTargetGoal/ (Lnet/minecraft/world/entity/monster/Phantom;)V +MD: net/minecraft/world/entity/monster/Phantom$PhantomMoveTargetGoal/m_33246_ ()Z net/minecraft/world/entity/monster/Phantom$PhantomMoveTargetGoal/touchingTarget ()Z +MD: net/minecraft/world/entity/monster/Phantom$PhantomSweepAttackGoal/ (Lnet/minecraft/world/entity/monster/Phantom;)V net/minecraft/world/entity/monster/Phantom$PhantomSweepAttackGoal/ (Lnet/minecraft/world/entity/monster/Phantom;)V +MD: net/minecraft/world/entity/monster/Phantom$PhantomSweepAttackGoal/m_8036_ ()Z net/minecraft/world/entity/monster/Phantom$PhantomSweepAttackGoal/canUse ()Z +MD: net/minecraft/world/entity/monster/Phantom$PhantomSweepAttackGoal/m_8037_ ()V net/minecraft/world/entity/monster/Phantom$PhantomSweepAttackGoal/tick ()V +MD: net/minecraft/world/entity/monster/Phantom$PhantomSweepAttackGoal/m_8041_ ()V net/minecraft/world/entity/monster/Phantom$PhantomSweepAttackGoal/stop ()V +MD: net/minecraft/world/entity/monster/Phantom$PhantomSweepAttackGoal/m_8045_ ()Z net/minecraft/world/entity/monster/Phantom$PhantomSweepAttackGoal/canContinueToUse ()Z +MD: net/minecraft/world/entity/monster/Phantom$PhantomSweepAttackGoal/m_8056_ ()V net/minecraft/world/entity/monster/Phantom$PhantomSweepAttackGoal/start ()V +MD: net/minecraft/world/entity/monster/Pillager/ ()V net/minecraft/world/entity/monster/Pillager/ ()V +MD: net/minecraft/world/entity/monster/Pillager/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V net/minecraft/world/entity/monster/Pillager/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V +MD: net/minecraft/world/entity/monster/Pillager/m_141942_ (I)Lnet/minecraft/world/entity/SlotAccess; net/minecraft/world/entity/monster/Pillager/getSlot (I)Lnet/minecraft/world/entity/SlotAccess; +MD: net/minecraft/world/entity/monster/Pillager/m_149744_ (Lnet/minecraft/world/item/ItemStack;)Z net/minecraft/world/entity/monster/Pillager/wantsItem (Lnet/minecraft/world/item/ItemStack;)Z +MD: net/minecraft/world/entity/monster/Pillager/m_213945_ (Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/DifficultyInstance;)V net/minecraft/world/entity/monster/Pillager/populateDefaultEquipmentSlots (Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/DifficultyInstance;)V +MD: net/minecraft/world/entity/monster/Pillager/m_214095_ (Lnet/minecraft/util/RandomSource;F)V net/minecraft/world/entity/monster/Pillager/enchantSpawnedWeapon (Lnet/minecraft/util/RandomSource;F)V +MD: net/minecraft/world/entity/monster/Pillager/m_33307_ ()Lnet/minecraft/world/entity/ai/attributes/AttributeSupplier$Builder; net/minecraft/world/entity/monster/Pillager/createAttributes ()Lnet/minecraft/world/entity/ai/attributes/AttributeSupplier$Builder; +MD: net/minecraft/world/entity/monster/Pillager/m_33309_ ()Z net/minecraft/world/entity/monster/Pillager/isChargingCrossbow ()Z +MD: net/minecraft/world/entity/monster/Pillager/m_35311_ ()Lnet/minecraft/world/SimpleContainer; net/minecraft/world/entity/monster/Pillager/getInventory ()Lnet/minecraft/world/SimpleContainer; +MD: net/minecraft/world/entity/monster/Pillager/m_5592_ ()Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/monster/Pillager/getDeathSound ()Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/monster/Pillager/m_5610_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/LevelReader;)F net/minecraft/world/entity/monster/Pillager/getWalkTargetValue (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/LevelReader;)F +MD: net/minecraft/world/entity/monster/Pillager/m_5792_ ()I net/minecraft/world/entity/monster/Pillager/getMaxSpawnClusterSize ()I +MD: net/minecraft/world/entity/monster/Pillager/m_5811_ (Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/entity/projectile/Projectile;F)V net/minecraft/world/entity/monster/Pillager/shootCrossbowProjectile (Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/entity/projectile/Projectile;F)V +MD: net/minecraft/world/entity/monster/Pillager/m_5847_ ()V net/minecraft/world/entity/monster/Pillager/onCrossbowAttackPerformed ()V +MD: net/minecraft/world/entity/monster/Pillager/m_5886_ (Lnet/minecraft/world/item/ProjectileWeaponItem;)Z net/minecraft/world/entity/monster/Pillager/canFireProjectileWeapon (Lnet/minecraft/world/item/ProjectileWeaponItem;)Z +MD: net/minecraft/world/entity/monster/Pillager/m_6136_ (Z)V net/minecraft/world/entity/monster/Pillager/setChargingCrossbow (Z)V +MD: net/minecraft/world/entity/monster/Pillager/m_6504_ (Lnet/minecraft/world/entity/LivingEntity;F)V net/minecraft/world/entity/monster/Pillager/performRangedAttack (Lnet/minecraft/world/entity/LivingEntity;F)V +MD: net/minecraft/world/entity/monster/Pillager/m_6518_ (Lnet/minecraft/world/level/ServerLevelAccessor;Lnet/minecraft/world/DifficultyInstance;Lnet/minecraft/world/entity/MobSpawnType;Lnet/minecraft/world/entity/SpawnGroupData;Lnet/minecraft/nbt/CompoundTag;)Lnet/minecraft/world/entity/SpawnGroupData; net/minecraft/world/entity/monster/Pillager/finalizeSpawn (Lnet/minecraft/world/level/ServerLevelAccessor;Lnet/minecraft/world/DifficultyInstance;Lnet/minecraft/world/entity/MobSpawnType;Lnet/minecraft/world/entity/SpawnGroupData;Lnet/minecraft/nbt/CompoundTag;)Lnet/minecraft/world/entity/SpawnGroupData; +MD: net/minecraft/world/entity/monster/Pillager/m_6768_ ()Lnet/minecraft/world/entity/monster/AbstractIllager$IllagerArmPose; net/minecraft/world/entity/monster/Pillager/getArmPose ()Lnet/minecraft/world/entity/monster/AbstractIllager$IllagerArmPose; +MD: net/minecraft/world/entity/monster/Pillager/m_7307_ (Lnet/minecraft/world/entity/Entity;)Z net/minecraft/world/entity/monster/Pillager/isAlliedTo (Lnet/minecraft/world/entity/Entity;)Z +MD: net/minecraft/world/entity/monster/Pillager/m_7378_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/entity/monster/Pillager/readAdditionalSaveData (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/entity/monster/Pillager/m_7380_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/entity/monster/Pillager/addAdditionalSaveData (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/entity/monster/Pillager/m_7515_ ()Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/monster/Pillager/getAmbientSound ()Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/monster/Pillager/m_7581_ (Lnet/minecraft/world/entity/item/ItemEntity;)V net/minecraft/world/entity/monster/Pillager/pickUpItem (Lnet/minecraft/world/entity/item/ItemEntity;)V +MD: net/minecraft/world/entity/monster/Pillager/m_7895_ (IZ)V net/minecraft/world/entity/monster/Pillager/applyRaidBuffs (IZ)V +MD: net/minecraft/world/entity/monster/Pillager/m_7930_ ()Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/monster/Pillager/getCelebrateSound ()Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/monster/Pillager/m_7975_ (Lnet/minecraft/world/damagesource/DamageSource;)Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/monster/Pillager/getHurtSound (Lnet/minecraft/world/damagesource/DamageSource;)Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/monster/Pillager/m_8097_ ()V net/minecraft/world/entity/monster/Pillager/defineSynchedData ()V +MD: net/minecraft/world/entity/monster/Pillager/m_8099_ ()V net/minecraft/world/entity/monster/Pillager/registerGoals ()V +MD: net/minecraft/world/entity/monster/RangedAttackMob/m_6504_ (Lnet/minecraft/world/entity/LivingEntity;F)V net/minecraft/world/entity/monster/RangedAttackMob/performRangedAttack (Lnet/minecraft/world/entity/LivingEntity;F)V +MD: net/minecraft/world/entity/monster/Ravager/ ()V net/minecraft/world/entity/monster/Ravager/ ()V +MD: net/minecraft/world/entity/monster/Ravager/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V net/minecraft/world/entity/monster/Ravager/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V +MD: net/minecraft/world/entity/monster/Ravager/m_142582_ (Lnet/minecraft/world/entity/Entity;)Z net/minecraft/world/entity/monster/Ravager/hasLineOfSight (Lnet/minecraft/world/entity/Entity;)Z +MD: net/minecraft/world/entity/monster/Ravager/m_199898_ (Lnet/minecraft/world/entity/LivingEntity;)Z net/minecraft/world/entity/monster/Ravager/lambda$registerGoals$1 (Lnet/minecraft/world/entity/LivingEntity;)Z +MD: net/minecraft/world/entity/monster/Ravager/m_33339_ (Lnet/minecraft/world/entity/Entity;)V net/minecraft/world/entity/monster/Ravager/strongKnockback (Lnet/minecraft/world/entity/Entity;)V +MD: net/minecraft/world/entity/monster/Ravager/m_33345_ (Lnet/minecraft/world/entity/Entity;)Z net/minecraft/world/entity/monster/Ravager/lambda$static$0 (Lnet/minecraft/world/entity/Entity;)Z +MD: net/minecraft/world/entity/monster/Ravager/m_33362_ ()I net/minecraft/world/entity/monster/Ravager/getAttackTick ()I +MD: net/minecraft/world/entity/monster/Ravager/m_33364_ ()I net/minecraft/world/entity/monster/Ravager/getStunnedTick ()I +MD: net/minecraft/world/entity/monster/Ravager/m_33366_ ()I net/minecraft/world/entity/monster/Ravager/getRoarTick ()I +MD: net/minecraft/world/entity/monster/Ravager/m_33367_ ()V net/minecraft/world/entity/monster/Ravager/stunEffect ()V +MD: net/minecraft/world/entity/monster/Ravager/m_33368_ ()V net/minecraft/world/entity/monster/Ravager/roar ()V +MD: net/minecraft/world/entity/monster/Ravager/m_33371_ ()Lnet/minecraft/world/entity/ai/attributes/AttributeSupplier$Builder; net/minecraft/world/entity/monster/Ravager/createAttributes ()Lnet/minecraft/world/entity/ai/attributes/AttributeSupplier$Builder; +MD: net/minecraft/world/entity/monster/Ravager/m_5592_ ()Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/monster/Ravager/getDeathSound ()Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/monster/Ravager/m_6048_ ()D net/minecraft/world/entity/monster/Ravager/getPassengersRidingOffset ()D +MD: net/minecraft/world/entity/monster/Ravager/m_6107_ ()Z net/minecraft/world/entity/monster/Ravager/isImmobile ()Z +MD: net/minecraft/world/entity/monster/Ravager/m_6688_ ()Lnet/minecraft/world/entity/LivingEntity; net/minecraft/world/entity/monster/Ravager/getControllingPassenger ()Lnet/minecraft/world/entity/LivingEntity; +MD: net/minecraft/world/entity/monster/Ravager/m_6731_ (Lnet/minecraft/world/entity/LivingEntity;)V net/minecraft/world/entity/monster/Ravager/blockedByShield (Lnet/minecraft/world/entity/LivingEntity;)V +MD: net/minecraft/world/entity/monster/Ravager/m_6914_ (Lnet/minecraft/world/level/LevelReader;)Z net/minecraft/world/entity/monster/Ravager/checkSpawnObstruction (Lnet/minecraft/world/level/LevelReader;)Z +MD: net/minecraft/world/entity/monster/Ravager/m_7327_ (Lnet/minecraft/world/entity/Entity;)Z net/minecraft/world/entity/monster/Ravager/doHurtTarget (Lnet/minecraft/world/entity/Entity;)Z +MD: net/minecraft/world/entity/monster/Ravager/m_7355_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V net/minecraft/world/entity/monster/Ravager/playStepSound (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V +MD: net/minecraft/world/entity/monster/Ravager/m_7378_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/entity/monster/Ravager/readAdditionalSaveData (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/entity/monster/Ravager/m_7380_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/entity/monster/Ravager/addAdditionalSaveData (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/entity/monster/Ravager/m_7490_ ()Z net/minecraft/world/entity/monster/Ravager/canBeLeader ()Z +MD: net/minecraft/world/entity/monster/Ravager/m_7515_ ()Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/monster/Ravager/getAmbientSound ()Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/monster/Ravager/m_7822_ (B)V net/minecraft/world/entity/monster/Ravager/handleEntityEvent (B)V +MD: net/minecraft/world/entity/monster/Ravager/m_7895_ (IZ)V net/minecraft/world/entity/monster/Ravager/applyRaidBuffs (IZ)V +MD: net/minecraft/world/entity/monster/Ravager/m_7930_ ()Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/monster/Ravager/getCelebrateSound ()Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/monster/Ravager/m_7975_ (Lnet/minecraft/world/damagesource/DamageSource;)Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/monster/Ravager/getHurtSound (Lnet/minecraft/world/damagesource/DamageSource;)Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/monster/Ravager/m_8022_ ()V net/minecraft/world/entity/monster/Ravager/updateControlFlags ()V +MD: net/minecraft/world/entity/monster/Ravager/m_8085_ ()I net/minecraft/world/entity/monster/Ravager/getMaxHeadYRot ()I +MD: net/minecraft/world/entity/monster/Ravager/m_8099_ ()V net/minecraft/world/entity/monster/Ravager/registerGoals ()V +MD: net/minecraft/world/entity/monster/Ravager/m_8107_ ()V net/minecraft/world/entity/monster/Ravager/aiStep ()V +MD: net/minecraft/world/entity/monster/Ravager$RavagerMeleeAttackGoal/ (Lnet/minecraft/world/entity/monster/Ravager;)V net/minecraft/world/entity/monster/Ravager$RavagerMeleeAttackGoal/ (Lnet/minecraft/world/entity/monster/Ravager;)V +MD: net/minecraft/world/entity/monster/Ravager$RavagerMeleeAttackGoal/m_6639_ (Lnet/minecraft/world/entity/LivingEntity;)D net/minecraft/world/entity/monster/Ravager$RavagerMeleeAttackGoal/getAttackReachSqr (Lnet/minecraft/world/entity/LivingEntity;)D +MD: net/minecraft/world/entity/monster/Shulker/ ()V net/minecraft/world/entity/monster/Shulker/ ()V +MD: net/minecraft/world/entity/monster/Shulker/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V net/minecraft/world/entity/monster/Shulker/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V +MD: net/minecraft/world/entity/monster/Shulker/m_141965_ (Lnet/minecraft/network/protocol/game/ClientboundAddEntityPacket;)V net/minecraft/world/entity/monster/Shulker/recreateFromPacket (Lnet/minecraft/network/protocol/game/ClientboundAddEntityPacket;)V +MD: net/minecraft/world/entity/monster/Shulker/m_142242_ ()Lnet/minecraft/world/phys/AABB; net/minecraft/world/entity/monster/Shulker/makeBoundingBox ()Lnet/minecraft/world/phys/AABB; +MD: net/minecraft/world/entity/monster/Shulker/m_142319_ ()Lnet/minecraft/world/entity/Entity$MovementEmission; net/minecraft/world/entity/monster/Shulker/getMovementEmission ()Lnet/minecraft/world/entity/Entity$MovementEmission; +MD: net/minecraft/world/entity/monster/Shulker/m_149766_ (F)Ljava/util/Optional; net/minecraft/world/entity/monster/Shulker/getRenderPosition (F)Ljava/util/Optional; +MD: net/minecraft/world/entity/monster/Shulker/m_149768_ (F)F net/minecraft/world/entity/monster/Shulker/getPhysicalPeek (F)F +MD: net/minecraft/world/entity/monster/Shulker/m_149770_ (Lnet/minecraft/world/entity/Entity;)Z net/minecraft/world/entity/monster/Shulker/lambda$onPeekAmountChange$1 (Lnet/minecraft/world/entity/Entity;)Z +MD: net/minecraft/world/entity/monster/Shulker/m_149785_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Direction;)Z net/minecraft/world/entity/monster/Shulker/canStayAt (Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Direction;)Z +MD: net/minecraft/world/entity/monster/Shulker/m_149788_ (Lnet/minecraft/core/Direction;)V net/minecraft/world/entity/monster/Shulker/setAttachFace (Lnet/minecraft/core/Direction;)V +MD: net/minecraft/world/entity/monster/Shulker/m_149790_ (Lnet/minecraft/core/Direction;F)Lnet/minecraft/world/phys/AABB; net/minecraft/world/entity/monster/Shulker/getProgressAabb (Lnet/minecraft/core/Direction;F)Lnet/minecraft/world/phys/AABB; +MD: net/minecraft/world/entity/monster/Shulker/m_149793_ (Lnet/minecraft/core/Direction;FF)Lnet/minecraft/world/phys/AABB; net/minecraft/world/entity/monster/Shulker/getProgressDeltaAabb (Lnet/minecraft/core/Direction;FF)Lnet/minecraft/world/phys/AABB; +MD: net/minecraft/world/entity/monster/Shulker/m_149805_ ()V net/minecraft/world/entity/monster/Shulker/hitByShulkerBullet ()V +MD: net/minecraft/world/entity/monster/Shulker/m_149807_ ()V net/minecraft/world/entity/monster/Shulker/findNewAttachment ()V +MD: net/minecraft/world/entity/monster/Shulker/m_149808_ ()Z net/minecraft/world/entity/monster/Shulker/updatePeekAmount ()Z +MD: net/minecraft/world/entity/monster/Shulker/m_149809_ ()V net/minecraft/world/entity/monster/Shulker/onPeekAmountChange ()V +MD: net/minecraft/world/entity/monster/Shulker/m_149810_ (Lnet/minecraft/core/BlockPos;)Lnet/minecraft/core/Direction; net/minecraft/world/entity/monster/Shulker/findAttachableSurface (Lnet/minecraft/core/BlockPos;)Lnet/minecraft/core/Direction; +MD: net/minecraft/world/entity/monster/Shulker/m_149812_ (Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/entity/monster/Shulker/isPositionBlocked (Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/entity/monster/Shulker/m_20184_ ()Lnet/minecraft/world/phys/Vec3; net/minecraft/world/entity/monster/Shulker/getDeltaMovement ()Lnet/minecraft/world/phys/Vec3; +MD: net/minecraft/world/entity/monster/Shulker/m_20256_ (Lnet/minecraft/world/phys/Vec3;)V net/minecraft/world/entity/monster/Shulker/setDeltaMovement (Lnet/minecraft/world/phys/Vec3;)V +MD: net/minecraft/world/entity/monster/Shulker/m_219064_ (Lnet/minecraft/world/entity/monster/Shulker;)Lnet/minecraft/util/RandomSource; net/minecraft/world/entity/monster/Shulker/access$000 (Lnet/minecraft/world/entity/monster/Shulker;)Lnet/minecraft/util/RandomSource; +MD: net/minecraft/world/entity/monster/Shulker/m_219068_ (Lnet/minecraft/world/entity/monster/Shulker;)Lnet/minecraft/util/RandomSource; net/minecraft/world/entity/monster/Shulker/access$100 (Lnet/minecraft/world/entity/monster/Shulker;)Lnet/minecraft/util/RandomSource; +MD: net/minecraft/world/entity/monster/Shulker/m_219070_ (Lnet/minecraft/world/entity/monster/Shulker;)Lnet/minecraft/util/RandomSource; net/minecraft/world/entity/monster/Shulker/access$200 (Lnet/minecraft/world/entity/monster/Shulker;)Lnet/minecraft/util/RandomSource; +MD: net/minecraft/world/entity/monster/Shulker/m_219072_ (Lnet/minecraft/world/entity/monster/Shulker;)Lnet/minecraft/util/RandomSource; net/minecraft/world/entity/monster/Shulker/access$300 (Lnet/minecraft/world/entity/monster/Shulker;)Lnet/minecraft/util/RandomSource; +MD: net/minecraft/world/entity/monster/Shulker/m_219074_ (Lnet/minecraft/world/entity/monster/Shulker;)Lnet/minecraft/util/RandomSource; net/minecraft/world/entity/monster/Shulker/access$400 (Lnet/minecraft/world/entity/monster/Shulker;)Lnet/minecraft/util/RandomSource; +MD: net/minecraft/world/entity/monster/Shulker/m_252710_ ()Lorg/joml/Vector3f; net/minecraft/world/entity/monster/Shulker/lambda$static$0 ()Lorg/joml/Vector3f; +MD: net/minecraft/world/entity/monster/Shulker/m_262359_ (Lnet/minecraft/world/item/DyeColor;)Ljava/lang/Byte; net/minecraft/world/entity/monster/Shulker/lambda$setVariant$2 (Lnet/minecraft/world/item/DyeColor;)Ljava/lang/Byte; +MD: net/minecraft/world/entity/monster/Shulker/m_28464_ (Ljava/lang/Object;)V net/minecraft/world/entity/monster/Shulker/setVariant (Ljava/lang/Object;)V +MD: net/minecraft/world/entity/monster/Shulker/m_28464_ (Ljava/util/Optional;)V net/minecraft/world/entity/monster/Shulker/setVariant (Ljava/util/Optional;)V +MD: net/minecraft/world/entity/monster/Shulker/m_28554_ ()Ljava/util/Optional; net/minecraft/world/entity/monster/Shulker/getVariant ()Ljava/util/Optional; +MD: net/minecraft/world/entity/monster/Shulker/m_28554_ ()Ljava/lang/Object; net/minecraft/world/entity/monster/Shulker/getVariant ()Ljava/lang/Object; +MD: net/minecraft/world/entity/monster/Shulker/m_33418_ (I)V net/minecraft/world/entity/monster/Shulker/setRawPeekAmount (I)V +MD: net/minecraft/world/entity/monster/Shulker/m_33460_ ()Z net/minecraft/world/entity/monster/Shulker/teleportSomewhere ()Z +MD: net/minecraft/world/entity/monster/Shulker/m_33461_ ()Lnet/minecraft/core/Direction; net/minecraft/world/entity/monster/Shulker/getAttachFace ()Lnet/minecraft/core/Direction; +MD: net/minecraft/world/entity/monster/Shulker/m_33463_ ()I net/minecraft/world/entity/monster/Shulker/getRawPeekAmount ()I +MD: net/minecraft/world/entity/monster/Shulker/m_33467_ ()Lnet/minecraft/world/item/DyeColor; net/minecraft/world/entity/monster/Shulker/getColor ()Lnet/minecraft/world/item/DyeColor; +MD: net/minecraft/world/entity/monster/Shulker/m_33468_ ()Z net/minecraft/world/entity/monster/Shulker/isClosed ()Z +MD: net/minecraft/world/entity/monster/Shulker/m_33477_ ()Lnet/minecraft/world/entity/ai/attributes/AttributeSupplier$Builder; net/minecraft/world/entity/monster/Shulker/createAttributes ()Lnet/minecraft/world/entity/ai/attributes/AttributeSupplier$Builder; +MD: net/minecraft/world/entity/monster/Shulker/m_33480_ (F)F net/minecraft/world/entity/monster/Shulker/getClientPeekAmount (F)F +MD: net/minecraft/world/entity/monster/Shulker/m_5592_ ()Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/monster/Shulker/getDeathSound ()Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/monster/Shulker/m_5720_ ()Lnet/minecraft/sounds/SoundSource; net/minecraft/world/entity/monster/Shulker/getSoundSource ()Lnet/minecraft/sounds/SoundSource; +MD: net/minecraft/world/entity/monster/Shulker/m_5829_ ()Z net/minecraft/world/entity/monster/Shulker/canBeCollidedWith ()Z +MD: net/minecraft/world/entity/monster/Shulker/m_6034_ (DDD)V net/minecraft/world/entity/monster/Shulker/setPos (DDD)V +MD: net/minecraft/world/entity/monster/Shulker/m_6049_ ()D net/minecraft/world/entity/monster/Shulker/getMyRidingOffset ()D +MD: net/minecraft/world/entity/monster/Shulker/m_6143_ ()F net/minecraft/world/entity/monster/Shulker/getPickRadius ()F +MD: net/minecraft/world/entity/monster/Shulker/m_6431_ (Lnet/minecraft/world/entity/Pose;Lnet/minecraft/world/entity/EntityDimensions;)F net/minecraft/world/entity/monster/Shulker/getStandingEyeHeight (Lnet/minecraft/world/entity/Pose;Lnet/minecraft/world/entity/EntityDimensions;)F +MD: net/minecraft/world/entity/monster/Shulker/m_6453_ (DDDFFIZ)V net/minecraft/world/entity/monster/Shulker/lerpTo (DDDFFIZ)V +MD: net/minecraft/world/entity/monster/Shulker/m_6469_ (Lnet/minecraft/world/damagesource/DamageSource;F)Z net/minecraft/world/entity/monster/Shulker/hurt (Lnet/minecraft/world/damagesource/DamageSource;F)Z +MD: net/minecraft/world/entity/monster/Shulker/m_6478_ (Lnet/minecraft/world/entity/MoverType;Lnet/minecraft/world/phys/Vec3;)V net/minecraft/world/entity/monster/Shulker/move (Lnet/minecraft/world/entity/MoverType;Lnet/minecraft/world/phys/Vec3;)V +MD: net/minecraft/world/entity/monster/Shulker/m_6518_ (Lnet/minecraft/world/level/ServerLevelAccessor;Lnet/minecraft/world/DifficultyInstance;Lnet/minecraft/world/entity/MobSpawnType;Lnet/minecraft/world/entity/SpawnGroupData;Lnet/minecraft/nbt/CompoundTag;)Lnet/minecraft/world/entity/SpawnGroupData; net/minecraft/world/entity/monster/Shulker/finalizeSpawn (Lnet/minecraft/world/level/ServerLevelAccessor;Lnet/minecraft/world/DifficultyInstance;Lnet/minecraft/world/entity/MobSpawnType;Lnet/minecraft/world/entity/SpawnGroupData;Lnet/minecraft/nbt/CompoundTag;)Lnet/minecraft/world/entity/SpawnGroupData; +MD: net/minecraft/world/entity/monster/Shulker/m_7334_ (Lnet/minecraft/world/entity/Entity;)V net/minecraft/world/entity/monster/Shulker/push (Lnet/minecraft/world/entity/Entity;)V +MD: net/minecraft/world/entity/monster/Shulker/m_7350_ (Lnet/minecraft/network/syncher/EntityDataAccessor;)V net/minecraft/world/entity/monster/Shulker/onSyncedDataUpdated (Lnet/minecraft/network/syncher/EntityDataAccessor;)V +MD: net/minecraft/world/entity/monster/Shulker/m_7378_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/entity/monster/Shulker/readAdditionalSaveData (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/entity/monster/Shulker/m_7380_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/entity/monster/Shulker/addAdditionalSaveData (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/entity/monster/Shulker/m_7515_ ()Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/monster/Shulker/getAmbientSound ()Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/monster/Shulker/m_7560_ ()Lnet/minecraft/world/entity/ai/control/BodyRotationControl; net/minecraft/world/entity/monster/Shulker/createBodyControl ()Lnet/minecraft/world/entity/ai/control/BodyRotationControl; +MD: net/minecraft/world/entity/monster/Shulker/m_7975_ (Lnet/minecraft/world/damagesource/DamageSource;)Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/monster/Shulker/getHurtSound (Lnet/minecraft/world/damagesource/DamageSource;)Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/monster/Shulker/m_7998_ (Lnet/minecraft/world/entity/Entity;Z)Z net/minecraft/world/entity/monster/Shulker/startRiding (Lnet/minecraft/world/entity/Entity;Z)Z +MD: net/minecraft/world/entity/monster/Shulker/m_8032_ ()V net/minecraft/world/entity/monster/Shulker/playAmbientSound ()V +MD: net/minecraft/world/entity/monster/Shulker/m_8085_ ()I net/minecraft/world/entity/monster/Shulker/getMaxHeadYRot ()I +MD: net/minecraft/world/entity/monster/Shulker/m_8097_ ()V net/minecraft/world/entity/monster/Shulker/defineSynchedData ()V +MD: net/minecraft/world/entity/monster/Shulker/m_8099_ ()V net/minecraft/world/entity/monster/Shulker/registerGoals ()V +MD: net/minecraft/world/entity/monster/Shulker/m_8119_ ()V net/minecraft/world/entity/monster/Shulker/tick ()V +MD: net/minecraft/world/entity/monster/Shulker/m_8127_ ()V net/minecraft/world/entity/monster/Shulker/stopRiding ()V +MD: net/minecraft/world/entity/monster/Shulker/m_8132_ ()I net/minecraft/world/entity/monster/Shulker/getMaxHeadXRot ()I +MD: net/minecraft/world/entity/monster/Shulker$ShulkerAttackGoal/ (Lnet/minecraft/world/entity/monster/Shulker;)V net/minecraft/world/entity/monster/Shulker$ShulkerAttackGoal/ (Lnet/minecraft/world/entity/monster/Shulker;)V +MD: net/minecraft/world/entity/monster/Shulker$ShulkerAttackGoal/m_183429_ ()Z net/minecraft/world/entity/monster/Shulker$ShulkerAttackGoal/requiresUpdateEveryTick ()Z +MD: net/minecraft/world/entity/monster/Shulker$ShulkerAttackGoal/m_8036_ ()Z net/minecraft/world/entity/monster/Shulker$ShulkerAttackGoal/canUse ()Z +MD: net/minecraft/world/entity/monster/Shulker$ShulkerAttackGoal/m_8037_ ()V net/minecraft/world/entity/monster/Shulker$ShulkerAttackGoal/tick ()V +MD: net/minecraft/world/entity/monster/Shulker$ShulkerAttackGoal/m_8041_ ()V net/minecraft/world/entity/monster/Shulker$ShulkerAttackGoal/stop ()V +MD: net/minecraft/world/entity/monster/Shulker$ShulkerAttackGoal/m_8056_ ()V net/minecraft/world/entity/monster/Shulker$ShulkerAttackGoal/start ()V +MD: net/minecraft/world/entity/monster/Shulker$ShulkerBodyRotationControl/ (Lnet/minecraft/world/entity/Mob;)V net/minecraft/world/entity/monster/Shulker$ShulkerBodyRotationControl/ (Lnet/minecraft/world/entity/Mob;)V +MD: net/minecraft/world/entity/monster/Shulker$ShulkerBodyRotationControl/m_8121_ ()V net/minecraft/world/entity/monster/Shulker$ShulkerBodyRotationControl/clientTick ()V +MD: net/minecraft/world/entity/monster/Shulker$ShulkerDefenseAttackGoal/ (Lnet/minecraft/world/entity/monster/Shulker;)V net/minecraft/world/entity/monster/Shulker$ShulkerDefenseAttackGoal/ (Lnet/minecraft/world/entity/monster/Shulker;)V +MD: net/minecraft/world/entity/monster/Shulker$ShulkerDefenseAttackGoal/m_33500_ (Lnet/minecraft/world/entity/LivingEntity;)Z net/minecraft/world/entity/monster/Shulker$ShulkerDefenseAttackGoal/lambda$new$0 (Lnet/minecraft/world/entity/LivingEntity;)Z +MD: net/minecraft/world/entity/monster/Shulker$ShulkerDefenseAttackGoal/m_7255_ (D)Lnet/minecraft/world/phys/AABB; net/minecraft/world/entity/monster/Shulker$ShulkerDefenseAttackGoal/getTargetSearchArea (D)Lnet/minecraft/world/phys/AABB; +MD: net/minecraft/world/entity/monster/Shulker$ShulkerDefenseAttackGoal/m_8036_ ()Z net/minecraft/world/entity/monster/Shulker$ShulkerDefenseAttackGoal/canUse ()Z +MD: net/minecraft/world/entity/monster/Shulker$ShulkerLookControl/ (Lnet/minecraft/world/entity/monster/Shulker;Lnet/minecraft/world/entity/Mob;)V net/minecraft/world/entity/monster/Shulker$ShulkerLookControl/ (Lnet/minecraft/world/entity/monster/Shulker;Lnet/minecraft/world/entity/Mob;)V +MD: net/minecraft/world/entity/monster/Shulker$ShulkerLookControl/m_142586_ ()V net/minecraft/world/entity/monster/Shulker$ShulkerLookControl/clampHeadRotationToBody ()V +MD: net/minecraft/world/entity/monster/Shulker$ShulkerLookControl/m_180896_ ()Ljava/util/Optional; net/minecraft/world/entity/monster/Shulker$ShulkerLookControl/getYRotD ()Ljava/util/Optional; +MD: net/minecraft/world/entity/monster/Shulker$ShulkerLookControl/m_180897_ ()Ljava/util/Optional; net/minecraft/world/entity/monster/Shulker$ShulkerLookControl/getXRotD ()Ljava/util/Optional; +MD: net/minecraft/world/entity/monster/Shulker$ShulkerNearestAttackGoal/ (Lnet/minecraft/world/entity/monster/Shulker;Lnet/minecraft/world/entity/monster/Shulker;)V net/minecraft/world/entity/monster/Shulker$ShulkerNearestAttackGoal/ (Lnet/minecraft/world/entity/monster/Shulker;Lnet/minecraft/world/entity/monster/Shulker;)V +MD: net/minecraft/world/entity/monster/Shulker$ShulkerNearestAttackGoal/m_7255_ (D)Lnet/minecraft/world/phys/AABB; net/minecraft/world/entity/monster/Shulker$ShulkerNearestAttackGoal/getTargetSearchArea (D)Lnet/minecraft/world/phys/AABB; +MD: net/minecraft/world/entity/monster/Shulker$ShulkerNearestAttackGoal/m_8036_ ()Z net/minecraft/world/entity/monster/Shulker$ShulkerNearestAttackGoal/canUse ()Z +MD: net/minecraft/world/entity/monster/Shulker$ShulkerPeekGoal/ (Lnet/minecraft/world/entity/monster/Shulker;)V net/minecraft/world/entity/monster/Shulker$ShulkerPeekGoal/ (Lnet/minecraft/world/entity/monster/Shulker;)V +MD: net/minecraft/world/entity/monster/Shulker$ShulkerPeekGoal/m_8036_ ()Z net/minecraft/world/entity/monster/Shulker$ShulkerPeekGoal/canUse ()Z +MD: net/minecraft/world/entity/monster/Shulker$ShulkerPeekGoal/m_8037_ ()V net/minecraft/world/entity/monster/Shulker$ShulkerPeekGoal/tick ()V +MD: net/minecraft/world/entity/monster/Shulker$ShulkerPeekGoal/m_8041_ ()V net/minecraft/world/entity/monster/Shulker$ShulkerPeekGoal/stop ()V +MD: net/minecraft/world/entity/monster/Shulker$ShulkerPeekGoal/m_8045_ ()Z net/minecraft/world/entity/monster/Shulker$ShulkerPeekGoal/canContinueToUse ()Z +MD: net/minecraft/world/entity/monster/Shulker$ShulkerPeekGoal/m_8056_ ()V net/minecraft/world/entity/monster/Shulker$ShulkerPeekGoal/start ()V +MD: net/minecraft/world/entity/monster/Silverfish/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V net/minecraft/world/entity/monster/Silverfish/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V +MD: net/minecraft/world/entity/monster/Silverfish/m_142319_ ()Lnet/minecraft/world/entity/Entity$MovementEmission; net/minecraft/world/entity/monster/Silverfish/getMovementEmission ()Lnet/minecraft/world/entity/Entity$MovementEmission; +MD: net/minecraft/world/entity/monster/Silverfish/m_219076_ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/world/entity/MobSpawnType;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)Z net/minecraft/world/entity/monster/Silverfish/checkSilverfishSpawnRules (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/world/entity/MobSpawnType;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)Z +MD: net/minecraft/world/entity/monster/Silverfish/m_33551_ ()Lnet/minecraft/world/entity/ai/attributes/AttributeSupplier$Builder; net/minecraft/world/entity/monster/Silverfish/createAttributes ()Lnet/minecraft/world/entity/ai/attributes/AttributeSupplier$Builder; +MD: net/minecraft/world/entity/monster/Silverfish/m_5592_ ()Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/monster/Silverfish/getDeathSound ()Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/monster/Silverfish/m_5610_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/LevelReader;)F net/minecraft/world/entity/monster/Silverfish/getWalkTargetValue (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/LevelReader;)F +MD: net/minecraft/world/entity/monster/Silverfish/m_5618_ (F)V net/minecraft/world/entity/monster/Silverfish/setYBodyRot (F)V +MD: net/minecraft/world/entity/monster/Silverfish/m_6049_ ()D net/minecraft/world/entity/monster/Silverfish/getMyRidingOffset ()D +MD: net/minecraft/world/entity/monster/Silverfish/m_6336_ ()Lnet/minecraft/world/entity/MobType; net/minecraft/world/entity/monster/Silverfish/getMobType ()Lnet/minecraft/world/entity/MobType; +MD: net/minecraft/world/entity/monster/Silverfish/m_6431_ (Lnet/minecraft/world/entity/Pose;Lnet/minecraft/world/entity/EntityDimensions;)F net/minecraft/world/entity/monster/Silverfish/getStandingEyeHeight (Lnet/minecraft/world/entity/Pose;Lnet/minecraft/world/entity/EntityDimensions;)F +MD: net/minecraft/world/entity/monster/Silverfish/m_6469_ (Lnet/minecraft/world/damagesource/DamageSource;F)Z net/minecraft/world/entity/monster/Silverfish/hurt (Lnet/minecraft/world/damagesource/DamageSource;F)Z +MD: net/minecraft/world/entity/monster/Silverfish/m_7355_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V net/minecraft/world/entity/monster/Silverfish/playStepSound (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V +MD: net/minecraft/world/entity/monster/Silverfish/m_7515_ ()Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/monster/Silverfish/getAmbientSound ()Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/monster/Silverfish/m_7975_ (Lnet/minecraft/world/damagesource/DamageSource;)Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/monster/Silverfish/getHurtSound (Lnet/minecraft/world/damagesource/DamageSource;)Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/monster/Silverfish/m_8099_ ()V net/minecraft/world/entity/monster/Silverfish/registerGoals ()V +MD: net/minecraft/world/entity/monster/Silverfish/m_8119_ ()V net/minecraft/world/entity/monster/Silverfish/tick ()V +MD: net/minecraft/world/entity/monster/Silverfish$SilverfishMergeWithStoneGoal/ (Lnet/minecraft/world/entity/monster/Silverfish;)V net/minecraft/world/entity/monster/Silverfish$SilverfishMergeWithStoneGoal/ (Lnet/minecraft/world/entity/monster/Silverfish;)V +MD: net/minecraft/world/entity/monster/Silverfish$SilverfishMergeWithStoneGoal/m_8036_ ()Z net/minecraft/world/entity/monster/Silverfish$SilverfishMergeWithStoneGoal/canUse ()Z +MD: net/minecraft/world/entity/monster/Silverfish$SilverfishMergeWithStoneGoal/m_8045_ ()Z net/minecraft/world/entity/monster/Silverfish$SilverfishMergeWithStoneGoal/canContinueToUse ()Z +MD: net/minecraft/world/entity/monster/Silverfish$SilverfishMergeWithStoneGoal/m_8056_ ()V net/minecraft/world/entity/monster/Silverfish$SilverfishMergeWithStoneGoal/start ()V +MD: net/minecraft/world/entity/monster/Silverfish$SilverfishWakeUpFriendsGoal/ (Lnet/minecraft/world/entity/monster/Silverfish;)V net/minecraft/world/entity/monster/Silverfish$SilverfishWakeUpFriendsGoal/ (Lnet/minecraft/world/entity/monster/Silverfish;)V +MD: net/minecraft/world/entity/monster/Silverfish$SilverfishWakeUpFriendsGoal/m_33568_ ()V net/minecraft/world/entity/monster/Silverfish$SilverfishWakeUpFriendsGoal/notifyHurt ()V +MD: net/minecraft/world/entity/monster/Silverfish$SilverfishWakeUpFriendsGoal/m_8036_ ()Z net/minecraft/world/entity/monster/Silverfish$SilverfishWakeUpFriendsGoal/canUse ()Z +MD: net/minecraft/world/entity/monster/Silverfish$SilverfishWakeUpFriendsGoal/m_8037_ ()V net/minecraft/world/entity/monster/Silverfish$SilverfishWakeUpFriendsGoal/tick ()V +MD: net/minecraft/world/entity/monster/Skeleton/ ()V net/minecraft/world/entity/monster/Skeleton/ ()V +MD: net/minecraft/world/entity/monster/Skeleton/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V net/minecraft/world/entity/monster/Skeleton/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V +MD: net/minecraft/world/entity/monster/Skeleton/m_142079_ ()Z net/minecraft/world/entity/monster/Skeleton/canFreeze ()Z +MD: net/minecraft/world/entity/monster/Skeleton/m_142548_ ()Z net/minecraft/world/entity/monster/Skeleton/isShaking ()Z +MD: net/minecraft/world/entity/monster/Skeleton/m_149830_ (I)V net/minecraft/world/entity/monster/Skeleton/startFreezeConversion (I)V +MD: net/minecraft/world/entity/monster/Skeleton/m_149839_ ()Z net/minecraft/world/entity/monster/Skeleton/isFreezeConverting ()Z +MD: net/minecraft/world/entity/monster/Skeleton/m_149840_ ()V net/minecraft/world/entity/monster/Skeleton/doFreezeConversion ()V +MD: net/minecraft/world/entity/monster/Skeleton/m_149842_ (Z)V net/minecraft/world/entity/monster/Skeleton/setFreezeConverting (Z)V +MD: net/minecraft/world/entity/monster/Skeleton/m_5592_ ()Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/monster/Skeleton/getDeathSound ()Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/monster/Skeleton/m_7378_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/entity/monster/Skeleton/readAdditionalSaveData (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/entity/monster/Skeleton/m_7380_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/entity/monster/Skeleton/addAdditionalSaveData (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/entity/monster/Skeleton/m_7472_ (Lnet/minecraft/world/damagesource/DamageSource;IZ)V net/minecraft/world/entity/monster/Skeleton/dropCustomDeathLoot (Lnet/minecraft/world/damagesource/DamageSource;IZ)V +MD: net/minecraft/world/entity/monster/Skeleton/m_7515_ ()Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/monster/Skeleton/getAmbientSound ()Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/monster/Skeleton/m_7878_ ()Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/monster/Skeleton/getStepSound ()Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/monster/Skeleton/m_7975_ (Lnet/minecraft/world/damagesource/DamageSource;)Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/monster/Skeleton/getHurtSound (Lnet/minecraft/world/damagesource/DamageSource;)Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/monster/Skeleton/m_8097_ ()V net/minecraft/world/entity/monster/Skeleton/defineSynchedData ()V +MD: net/minecraft/world/entity/monster/Skeleton/m_8119_ ()V net/minecraft/world/entity/monster/Skeleton/tick ()V +MD: net/minecraft/world/entity/monster/Slime/ ()V net/minecraft/world/entity/monster/Slime/ ()V +MD: net/minecraft/world/entity/monster/Slime/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V net/minecraft/world/entity/monster/Slime/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V +MD: net/minecraft/world/entity/monster/Slime/m_142687_ (Lnet/minecraft/world/entity/Entity$RemovalReason;)V net/minecraft/world/entity/monster/Slime/remove (Lnet/minecraft/world/entity/Entity$RemovalReason;)V +MD: net/minecraft/world/entity/monster/Slime/m_219112_ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/world/entity/MobSpawnType;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)Z net/minecraft/world/entity/monster/Slime/checkSlimeSpawnRules (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/world/entity/MobSpawnType;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)Z +MD: net/minecraft/world/entity/monster/Slime/m_289149_ (Lnet/minecraft/world/entity/LivingEntity;)Z net/minecraft/world/entity/monster/Slime/lambda$registerGoals$0 (Lnet/minecraft/world/entity/LivingEntity;)Z +MD: net/minecraft/world/entity/monster/Slime/m_33632_ ()I net/minecraft/world/entity/monster/Slime/getSize ()I +MD: net/minecraft/world/entity/monster/Slime/m_33633_ ()Z net/minecraft/world/entity/monster/Slime/isTiny ()Z +MD: net/minecraft/world/entity/monster/Slime/m_33634_ ()Z net/minecraft/world/entity/monster/Slime/doPlayJumpSound ()Z +MD: net/minecraft/world/entity/monster/Slime/m_33637_ (Lnet/minecraft/world/entity/LivingEntity;)V net/minecraft/world/entity/monster/Slime/dealDamage (Lnet/minecraft/world/entity/LivingEntity;)V +MD: net/minecraft/world/entity/monster/Slime/m_33642_ ()F net/minecraft/world/entity/monster/Slime/getSoundPitch ()F +MD: net/minecraft/world/entity/monster/Slime/m_5592_ ()Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/monster/Slime/getDeathSound ()Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/monster/Slime/m_6095_ ()Lnet/minecraft/world/entity/EntityType; net/minecraft/world/entity/monster/Slime/getType ()Lnet/minecraft/world/entity/EntityType; +MD: net/minecraft/world/entity/monster/Slime/m_6121_ ()F net/minecraft/world/entity/monster/Slime/getSoundVolume ()F +MD: net/minecraft/world/entity/monster/Slime/m_6123_ (Lnet/minecraft/world/entity/player/Player;)V net/minecraft/world/entity/monster/Slime/playerTouch (Lnet/minecraft/world/entity/player/Player;)V +MD: net/minecraft/world/entity/monster/Slime/m_6135_ ()V net/minecraft/world/entity/monster/Slime/jumpFromGround ()V +MD: net/minecraft/world/entity/monster/Slime/m_6210_ ()V net/minecraft/world/entity/monster/Slime/refreshDimensions ()V +MD: net/minecraft/world/entity/monster/Slime/m_6300_ ()Lnet/minecraft/core/particles/ParticleOptions; net/minecraft/world/entity/monster/Slime/getParticleType ()Lnet/minecraft/core/particles/ParticleOptions; +MD: net/minecraft/world/entity/monster/Slime/m_6431_ (Lnet/minecraft/world/entity/Pose;Lnet/minecraft/world/entity/EntityDimensions;)F net/minecraft/world/entity/monster/Slime/getStandingEyeHeight (Lnet/minecraft/world/entity/Pose;Lnet/minecraft/world/entity/EntityDimensions;)F +MD: net/minecraft/world/entity/monster/Slime/m_6518_ (Lnet/minecraft/world/level/ServerLevelAccessor;Lnet/minecraft/world/DifficultyInstance;Lnet/minecraft/world/entity/MobSpawnType;Lnet/minecraft/world/entity/SpawnGroupData;Lnet/minecraft/nbt/CompoundTag;)Lnet/minecraft/world/entity/SpawnGroupData; net/minecraft/world/entity/monster/Slime/finalizeSpawn (Lnet/minecraft/world/level/ServerLevelAccessor;Lnet/minecraft/world/DifficultyInstance;Lnet/minecraft/world/entity/MobSpawnType;Lnet/minecraft/world/entity/SpawnGroupData;Lnet/minecraft/nbt/CompoundTag;)Lnet/minecraft/world/entity/SpawnGroupData; +MD: net/minecraft/world/entity/monster/Slime/m_6972_ (Lnet/minecraft/world/entity/Pose;)Lnet/minecraft/world/entity/EntityDimensions; net/minecraft/world/entity/monster/Slime/getDimensions (Lnet/minecraft/world/entity/Pose;)Lnet/minecraft/world/entity/EntityDimensions; +MD: net/minecraft/world/entity/monster/Slime/m_7334_ (Lnet/minecraft/world/entity/Entity;)V net/minecraft/world/entity/monster/Slime/push (Lnet/minecraft/world/entity/Entity;)V +MD: net/minecraft/world/entity/monster/Slime/m_7350_ (Lnet/minecraft/network/syncher/EntityDataAccessor;)V net/minecraft/world/entity/monster/Slime/onSyncedDataUpdated (Lnet/minecraft/network/syncher/EntityDataAccessor;)V +MD: net/minecraft/world/entity/monster/Slime/m_7378_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/entity/monster/Slime/readAdditionalSaveData (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/entity/monster/Slime/m_7380_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/entity/monster/Slime/addAdditionalSaveData (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/entity/monster/Slime/m_7480_ ()V net/minecraft/world/entity/monster/Slime/decreaseSquish ()V +MD: net/minecraft/world/entity/monster/Slime/m_7483_ ()Z net/minecraft/world/entity/monster/Slime/isDealsDamage ()Z +MD: net/minecraft/world/entity/monster/Slime/m_7549_ ()I net/minecraft/world/entity/monster/Slime/getJumpDelay ()I +MD: net/minecraft/world/entity/monster/Slime/m_7566_ ()F net/minecraft/world/entity/monster/Slime/getAttackDamage ()F +MD: net/minecraft/world/entity/monster/Slime/m_7839_ (IZ)V net/minecraft/world/entity/monster/Slime/setSize (IZ)V +MD: net/minecraft/world/entity/monster/Slime/m_7903_ ()Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/monster/Slime/getJumpSound ()Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/monster/Slime/m_7905_ ()Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/monster/Slime/getSquishSound ()Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/monster/Slime/m_7975_ (Lnet/minecraft/world/damagesource/DamageSource;)Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/monster/Slime/getHurtSound (Lnet/minecraft/world/damagesource/DamageSource;)Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/monster/Slime/m_8028_ ()Z net/minecraft/world/entity/monster/Slime/shouldDespawnInPeaceful ()Z +MD: net/minecraft/world/entity/monster/Slime/m_8097_ ()V net/minecraft/world/entity/monster/Slime/defineSynchedData ()V +MD: net/minecraft/world/entity/monster/Slime/m_8099_ ()V net/minecraft/world/entity/monster/Slime/registerGoals ()V +MD: net/minecraft/world/entity/monster/Slime/m_8119_ ()V net/minecraft/world/entity/monster/Slime/tick ()V +MD: net/minecraft/world/entity/monster/Slime/m_8132_ ()I net/minecraft/world/entity/monster/Slime/getMaxHeadXRot ()I +MD: net/minecraft/world/entity/monster/Slime$SlimeAttackGoal/ (Lnet/minecraft/world/entity/monster/Slime;)V net/minecraft/world/entity/monster/Slime$SlimeAttackGoal/ (Lnet/minecraft/world/entity/monster/Slime;)V +MD: net/minecraft/world/entity/monster/Slime$SlimeAttackGoal/m_183429_ ()Z net/minecraft/world/entity/monster/Slime$SlimeAttackGoal/requiresUpdateEveryTick ()Z +MD: net/minecraft/world/entity/monster/Slime$SlimeAttackGoal/m_8036_ ()Z net/minecraft/world/entity/monster/Slime$SlimeAttackGoal/canUse ()Z +MD: net/minecraft/world/entity/monster/Slime$SlimeAttackGoal/m_8037_ ()V net/minecraft/world/entity/monster/Slime$SlimeAttackGoal/tick ()V +MD: net/minecraft/world/entity/monster/Slime$SlimeAttackGoal/m_8045_ ()Z net/minecraft/world/entity/monster/Slime$SlimeAttackGoal/canContinueToUse ()Z +MD: net/minecraft/world/entity/monster/Slime$SlimeAttackGoal/m_8056_ ()V net/minecraft/world/entity/monster/Slime$SlimeAttackGoal/start ()V +MD: net/minecraft/world/entity/monster/Slime$SlimeFloatGoal/ (Lnet/minecraft/world/entity/monster/Slime;)V net/minecraft/world/entity/monster/Slime$SlimeFloatGoal/ (Lnet/minecraft/world/entity/monster/Slime;)V +MD: net/minecraft/world/entity/monster/Slime$SlimeFloatGoal/m_183429_ ()Z net/minecraft/world/entity/monster/Slime$SlimeFloatGoal/requiresUpdateEveryTick ()Z +MD: net/minecraft/world/entity/monster/Slime$SlimeFloatGoal/m_8036_ ()Z net/minecraft/world/entity/monster/Slime$SlimeFloatGoal/canUse ()Z +MD: net/minecraft/world/entity/monster/Slime$SlimeFloatGoal/m_8037_ ()V net/minecraft/world/entity/monster/Slime$SlimeFloatGoal/tick ()V +MD: net/minecraft/world/entity/monster/Slime$SlimeKeepOnJumpingGoal/ (Lnet/minecraft/world/entity/monster/Slime;)V net/minecraft/world/entity/monster/Slime$SlimeKeepOnJumpingGoal/ (Lnet/minecraft/world/entity/monster/Slime;)V +MD: net/minecraft/world/entity/monster/Slime$SlimeKeepOnJumpingGoal/m_8036_ ()Z net/minecraft/world/entity/monster/Slime$SlimeKeepOnJumpingGoal/canUse ()Z +MD: net/minecraft/world/entity/monster/Slime$SlimeKeepOnJumpingGoal/m_8037_ ()V net/minecraft/world/entity/monster/Slime$SlimeKeepOnJumpingGoal/tick ()V +MD: net/minecraft/world/entity/monster/Slime$SlimeMoveControl/ (Lnet/minecraft/world/entity/monster/Slime;)V net/minecraft/world/entity/monster/Slime$SlimeMoveControl/ (Lnet/minecraft/world/entity/monster/Slime;)V +MD: net/minecraft/world/entity/monster/Slime$SlimeMoveControl/m_33670_ (D)V net/minecraft/world/entity/monster/Slime$SlimeMoveControl/setWantedMovement (D)V +MD: net/minecraft/world/entity/monster/Slime$SlimeMoveControl/m_33672_ (FZ)V net/minecraft/world/entity/monster/Slime$SlimeMoveControl/setDirection (FZ)V +MD: net/minecraft/world/entity/monster/Slime$SlimeMoveControl/m_8126_ ()V net/minecraft/world/entity/monster/Slime$SlimeMoveControl/tick ()V +MD: net/minecraft/world/entity/monster/Slime$SlimeRandomDirectionGoal/ (Lnet/minecraft/world/entity/monster/Slime;)V net/minecraft/world/entity/monster/Slime$SlimeRandomDirectionGoal/ (Lnet/minecraft/world/entity/monster/Slime;)V +MD: net/minecraft/world/entity/monster/Slime$SlimeRandomDirectionGoal/m_8036_ ()Z net/minecraft/world/entity/monster/Slime$SlimeRandomDirectionGoal/canUse ()Z +MD: net/minecraft/world/entity/monster/Slime$SlimeRandomDirectionGoal/m_8037_ ()V net/minecraft/world/entity/monster/Slime$SlimeRandomDirectionGoal/tick ()V +MD: net/minecraft/world/entity/monster/SpellcasterIllager/ ()V net/minecraft/world/entity/monster/SpellcasterIllager/ ()V +MD: net/minecraft/world/entity/monster/SpellcasterIllager/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V net/minecraft/world/entity/monster/SpellcasterIllager/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V +MD: net/minecraft/world/entity/monster/SpellcasterIllager/m_149850_ (Lnet/minecraft/world/entity/monster/SpellcasterIllager;)Lnet/minecraft/world/entity/ai/navigation/PathNavigation; net/minecraft/world/entity/monster/SpellcasterIllager/access$000 (Lnet/minecraft/world/entity/monster/SpellcasterIllager;)Lnet/minecraft/world/entity/ai/navigation/PathNavigation; +MD: net/minecraft/world/entity/monster/SpellcasterIllager/m_33727_ (Lnet/minecraft/world/entity/monster/SpellcasterIllager$IllagerSpell;)V net/minecraft/world/entity/monster/SpellcasterIllager/setIsCastingSpell (Lnet/minecraft/world/entity/monster/SpellcasterIllager$IllagerSpell;)V +MD: net/minecraft/world/entity/monster/SpellcasterIllager/m_33736_ ()Z net/minecraft/world/entity/monster/SpellcasterIllager/isCastingSpell ()Z +MD: net/minecraft/world/entity/monster/SpellcasterIllager/m_33737_ ()Lnet/minecraft/world/entity/monster/SpellcasterIllager$IllagerSpell; net/minecraft/world/entity/monster/SpellcasterIllager/getCurrentSpell ()Lnet/minecraft/world/entity/monster/SpellcasterIllager$IllagerSpell; +MD: net/minecraft/world/entity/monster/SpellcasterIllager/m_33738_ ()I net/minecraft/world/entity/monster/SpellcasterIllager/getSpellCastingTime ()I +MD: net/minecraft/world/entity/monster/SpellcasterIllager/m_6768_ ()Lnet/minecraft/world/entity/monster/AbstractIllager$IllagerArmPose; net/minecraft/world/entity/monster/SpellcasterIllager/getArmPose ()Lnet/minecraft/world/entity/monster/AbstractIllager$IllagerArmPose; +MD: net/minecraft/world/entity/monster/SpellcasterIllager/m_7378_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/entity/monster/SpellcasterIllager/readAdditionalSaveData (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/entity/monster/SpellcasterIllager/m_7380_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/entity/monster/SpellcasterIllager/addAdditionalSaveData (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/entity/monster/SpellcasterIllager/m_7894_ ()Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/monster/SpellcasterIllager/getCastingSoundEvent ()Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/monster/SpellcasterIllager/m_8024_ ()V net/minecraft/world/entity/monster/SpellcasterIllager/customServerAiStep ()V +MD: net/minecraft/world/entity/monster/SpellcasterIllager/m_8097_ ()V net/minecraft/world/entity/monster/SpellcasterIllager/defineSynchedData ()V +MD: net/minecraft/world/entity/monster/SpellcasterIllager/m_8119_ ()V net/minecraft/world/entity/monster/SpellcasterIllager/tick ()V +MD: net/minecraft/world/entity/monster/SpellcasterIllager$IllagerSpell/ ()V net/minecraft/world/entity/monster/SpellcasterIllager$IllagerSpell/ ()V +MD: net/minecraft/world/entity/monster/SpellcasterIllager$IllagerSpell/ (Ljava/lang/String;IIDDD)V net/minecraft/world/entity/monster/SpellcasterIllager$IllagerSpell/ (Ljava/lang/String;IIDDD)V +MD: net/minecraft/world/entity/monster/SpellcasterIllager$IllagerSpell/m_149852_ ()[Lnet/minecraft/world/entity/monster/SpellcasterIllager$IllagerSpell; net/minecraft/world/entity/monster/SpellcasterIllager$IllagerSpell/$values ()[Lnet/minecraft/world/entity/monster/SpellcasterIllager$IllagerSpell; +MD: net/minecraft/world/entity/monster/SpellcasterIllager$IllagerSpell/m_262804_ (Lnet/minecraft/world/entity/monster/SpellcasterIllager$IllagerSpell;)I net/minecraft/world/entity/monster/SpellcasterIllager$IllagerSpell/lambda$static$0 (Lnet/minecraft/world/entity/monster/SpellcasterIllager$IllagerSpell;)I +MD: net/minecraft/world/entity/monster/SpellcasterIllager$IllagerSpell/m_33758_ (I)Lnet/minecraft/world/entity/monster/SpellcasterIllager$IllagerSpell; net/minecraft/world/entity/monster/SpellcasterIllager$IllagerSpell/byId (I)Lnet/minecraft/world/entity/monster/SpellcasterIllager$IllagerSpell; +MD: net/minecraft/world/entity/monster/SpellcasterIllager$IllagerSpell/valueOf (Ljava/lang/String;)Lnet/minecraft/world/entity/monster/SpellcasterIllager$IllagerSpell; net/minecraft/world/entity/monster/SpellcasterIllager$IllagerSpell/valueOf (Ljava/lang/String;)Lnet/minecraft/world/entity/monster/SpellcasterIllager$IllagerSpell; +MD: net/minecraft/world/entity/monster/SpellcasterIllager$IllagerSpell/values ()[Lnet/minecraft/world/entity/monster/SpellcasterIllager$IllagerSpell; net/minecraft/world/entity/monster/SpellcasterIllager$IllagerSpell/values ()[Lnet/minecraft/world/entity/monster/SpellcasterIllager$IllagerSpell; +MD: net/minecraft/world/entity/monster/SpellcasterIllager$SpellcasterCastingSpellGoal/ (Lnet/minecraft/world/entity/monster/SpellcasterIllager;)V net/minecraft/world/entity/monster/SpellcasterIllager$SpellcasterCastingSpellGoal/ (Lnet/minecraft/world/entity/monster/SpellcasterIllager;)V +MD: net/minecraft/world/entity/monster/SpellcasterIllager$SpellcasterCastingSpellGoal/m_8036_ ()Z net/minecraft/world/entity/monster/SpellcasterIllager$SpellcasterCastingSpellGoal/canUse ()Z +MD: net/minecraft/world/entity/monster/SpellcasterIllager$SpellcasterCastingSpellGoal/m_8037_ ()V net/minecraft/world/entity/monster/SpellcasterIllager$SpellcasterCastingSpellGoal/tick ()V +MD: net/minecraft/world/entity/monster/SpellcasterIllager$SpellcasterCastingSpellGoal/m_8041_ ()V net/minecraft/world/entity/monster/SpellcasterIllager$SpellcasterCastingSpellGoal/stop ()V +MD: net/minecraft/world/entity/monster/SpellcasterIllager$SpellcasterCastingSpellGoal/m_8056_ ()V net/minecraft/world/entity/monster/SpellcasterIllager$SpellcasterCastingSpellGoal/start ()V +MD: net/minecraft/world/entity/monster/SpellcasterIllager$SpellcasterUseSpellGoal/ (Lnet/minecraft/world/entity/monster/SpellcasterIllager;)V net/minecraft/world/entity/monster/SpellcasterIllager$SpellcasterUseSpellGoal/ (Lnet/minecraft/world/entity/monster/SpellcasterIllager;)V +MD: net/minecraft/world/entity/monster/SpellcasterIllager$SpellcasterUseSpellGoal/m_7030_ ()Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/monster/SpellcasterIllager$SpellcasterUseSpellGoal/getSpellPrepareSound ()Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/monster/SpellcasterIllager$SpellcasterUseSpellGoal/m_7269_ ()Lnet/minecraft/world/entity/monster/SpellcasterIllager$IllagerSpell; net/minecraft/world/entity/monster/SpellcasterIllager$SpellcasterUseSpellGoal/getSpell ()Lnet/minecraft/world/entity/monster/SpellcasterIllager$IllagerSpell; +MD: net/minecraft/world/entity/monster/SpellcasterIllager$SpellcasterUseSpellGoal/m_8036_ ()Z net/minecraft/world/entity/monster/SpellcasterIllager$SpellcasterUseSpellGoal/canUse ()Z +MD: net/minecraft/world/entity/monster/SpellcasterIllager$SpellcasterUseSpellGoal/m_8037_ ()V net/minecraft/world/entity/monster/SpellcasterIllager$SpellcasterUseSpellGoal/tick ()V +MD: net/minecraft/world/entity/monster/SpellcasterIllager$SpellcasterUseSpellGoal/m_8045_ ()Z net/minecraft/world/entity/monster/SpellcasterIllager$SpellcasterUseSpellGoal/canContinueToUse ()Z +MD: net/minecraft/world/entity/monster/SpellcasterIllager$SpellcasterUseSpellGoal/m_8056_ ()V net/minecraft/world/entity/monster/SpellcasterIllager$SpellcasterUseSpellGoal/start ()V +MD: net/minecraft/world/entity/monster/SpellcasterIllager$SpellcasterUseSpellGoal/m_8067_ ()I net/minecraft/world/entity/monster/SpellcasterIllager$SpellcasterUseSpellGoal/getCastingInterval ()I +MD: net/minecraft/world/entity/monster/SpellcasterIllager$SpellcasterUseSpellGoal/m_8069_ ()I net/minecraft/world/entity/monster/SpellcasterIllager$SpellcasterUseSpellGoal/getCastWarmupTime ()I +MD: net/minecraft/world/entity/monster/SpellcasterIllager$SpellcasterUseSpellGoal/m_8089_ ()I net/minecraft/world/entity/monster/SpellcasterIllager$SpellcasterUseSpellGoal/getCastingTime ()I +MD: net/minecraft/world/entity/monster/SpellcasterIllager$SpellcasterUseSpellGoal/m_8130_ ()V net/minecraft/world/entity/monster/SpellcasterIllager$SpellcasterUseSpellGoal/performSpellCasting ()V +MD: net/minecraft/world/entity/monster/Spider/ ()V net/minecraft/world/entity/monster/Spider/ ()V +MD: net/minecraft/world/entity/monster/Spider/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V net/minecraft/world/entity/monster/Spider/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V +MD: net/minecraft/world/entity/monster/Spider/m_33815_ ()Lnet/minecraft/world/entity/ai/attributes/AttributeSupplier$Builder; net/minecraft/world/entity/monster/Spider/createAttributes ()Lnet/minecraft/world/entity/ai/attributes/AttributeSupplier$Builder; +MD: net/minecraft/world/entity/monster/Spider/m_33816_ ()Z net/minecraft/world/entity/monster/Spider/isClimbing ()Z +MD: net/minecraft/world/entity/monster/Spider/m_33819_ (Z)V net/minecraft/world/entity/monster/Spider/setClimbing (Z)V +MD: net/minecraft/world/entity/monster/Spider/m_5592_ ()Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/monster/Spider/getDeathSound ()Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/monster/Spider/m_6037_ (Lnet/minecraft/world/level/Level;)Lnet/minecraft/world/entity/ai/navigation/PathNavigation; net/minecraft/world/entity/monster/Spider/createNavigation (Lnet/minecraft/world/level/Level;)Lnet/minecraft/world/entity/ai/navigation/PathNavigation; +MD: net/minecraft/world/entity/monster/Spider/m_6048_ ()D net/minecraft/world/entity/monster/Spider/getPassengersRidingOffset ()D +MD: net/minecraft/world/entity/monster/Spider/m_6147_ ()Z net/minecraft/world/entity/monster/Spider/onClimbable ()Z +MD: net/minecraft/world/entity/monster/Spider/m_6336_ ()Lnet/minecraft/world/entity/MobType; net/minecraft/world/entity/monster/Spider/getMobType ()Lnet/minecraft/world/entity/MobType; +MD: net/minecraft/world/entity/monster/Spider/m_6431_ (Lnet/minecraft/world/entity/Pose;Lnet/minecraft/world/entity/EntityDimensions;)F net/minecraft/world/entity/monster/Spider/getStandingEyeHeight (Lnet/minecraft/world/entity/Pose;Lnet/minecraft/world/entity/EntityDimensions;)F +MD: net/minecraft/world/entity/monster/Spider/m_6518_ (Lnet/minecraft/world/level/ServerLevelAccessor;Lnet/minecraft/world/DifficultyInstance;Lnet/minecraft/world/entity/MobSpawnType;Lnet/minecraft/world/entity/SpawnGroupData;Lnet/minecraft/nbt/CompoundTag;)Lnet/minecraft/world/entity/SpawnGroupData; net/minecraft/world/entity/monster/Spider/finalizeSpawn (Lnet/minecraft/world/level/ServerLevelAccessor;Lnet/minecraft/world/DifficultyInstance;Lnet/minecraft/world/entity/MobSpawnType;Lnet/minecraft/world/entity/SpawnGroupData;Lnet/minecraft/nbt/CompoundTag;)Lnet/minecraft/world/entity/SpawnGroupData; +MD: net/minecraft/world/entity/monster/Spider/m_7301_ (Lnet/minecraft/world/effect/MobEffectInstance;)Z net/minecraft/world/entity/monster/Spider/canBeAffected (Lnet/minecraft/world/effect/MobEffectInstance;)Z +MD: net/minecraft/world/entity/monster/Spider/m_7355_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V net/minecraft/world/entity/monster/Spider/playStepSound (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V +MD: net/minecraft/world/entity/monster/Spider/m_7515_ ()Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/monster/Spider/getAmbientSound ()Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/monster/Spider/m_7601_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/phys/Vec3;)V net/minecraft/world/entity/monster/Spider/makeStuckInBlock (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/phys/Vec3;)V +MD: net/minecraft/world/entity/monster/Spider/m_7975_ (Lnet/minecraft/world/damagesource/DamageSource;)Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/monster/Spider/getHurtSound (Lnet/minecraft/world/damagesource/DamageSource;)Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/monster/Spider/m_8097_ ()V net/minecraft/world/entity/monster/Spider/defineSynchedData ()V +MD: net/minecraft/world/entity/monster/Spider/m_8099_ ()V net/minecraft/world/entity/monster/Spider/registerGoals ()V +MD: net/minecraft/world/entity/monster/Spider/m_8119_ ()V net/minecraft/world/entity/monster/Spider/tick ()V +MD: net/minecraft/world/entity/monster/Spider$SpiderAttackGoal/ (Lnet/minecraft/world/entity/monster/Spider;)V net/minecraft/world/entity/monster/Spider$SpiderAttackGoal/ (Lnet/minecraft/world/entity/monster/Spider;)V +MD: net/minecraft/world/entity/monster/Spider$SpiderAttackGoal/m_6639_ (Lnet/minecraft/world/entity/LivingEntity;)D net/minecraft/world/entity/monster/Spider$SpiderAttackGoal/getAttackReachSqr (Lnet/minecraft/world/entity/LivingEntity;)D +MD: net/minecraft/world/entity/monster/Spider$SpiderAttackGoal/m_8036_ ()Z net/minecraft/world/entity/monster/Spider$SpiderAttackGoal/canUse ()Z +MD: net/minecraft/world/entity/monster/Spider$SpiderAttackGoal/m_8045_ ()Z net/minecraft/world/entity/monster/Spider$SpiderAttackGoal/canContinueToUse ()Z +MD: net/minecraft/world/entity/monster/Spider$SpiderEffectsGroupData/ ()V net/minecraft/world/entity/monster/Spider$SpiderEffectsGroupData/ ()V +MD: net/minecraft/world/entity/monster/Spider$SpiderEffectsGroupData/m_219118_ (Lnet/minecraft/util/RandomSource;)V net/minecraft/world/entity/monster/Spider$SpiderEffectsGroupData/setRandomEffect (Lnet/minecraft/util/RandomSource;)V +MD: net/minecraft/world/entity/monster/Spider$SpiderTargetGoal/ (Lnet/minecraft/world/entity/monster/Spider;Ljava/lang/Class;)V net/minecraft/world/entity/monster/Spider$SpiderTargetGoal/ (Lnet/minecraft/world/entity/monster/Spider;Ljava/lang/Class;)V +MD: net/minecraft/world/entity/monster/Spider$SpiderTargetGoal/m_8036_ ()Z net/minecraft/world/entity/monster/Spider$SpiderTargetGoal/canUse ()Z +MD: net/minecraft/world/entity/monster/Stray/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V net/minecraft/world/entity/monster/Stray/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V +MD: net/minecraft/world/entity/monster/Stray/m_219120_ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/ServerLevelAccessor;Lnet/minecraft/world/entity/MobSpawnType;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)Z net/minecraft/world/entity/monster/Stray/checkStraySpawnRules (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/ServerLevelAccessor;Lnet/minecraft/world/entity/MobSpawnType;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)Z +MD: net/minecraft/world/entity/monster/Stray/m_5592_ ()Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/monster/Stray/getDeathSound ()Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/monster/Stray/m_7515_ ()Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/monster/Stray/getAmbientSound ()Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/monster/Stray/m_7878_ ()Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/monster/Stray/getStepSound ()Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/monster/Stray/m_7932_ (Lnet/minecraft/world/item/ItemStack;F)Lnet/minecraft/world/entity/projectile/AbstractArrow; net/minecraft/world/entity/monster/Stray/getArrow (Lnet/minecraft/world/item/ItemStack;F)Lnet/minecraft/world/entity/projectile/AbstractArrow; +MD: net/minecraft/world/entity/monster/Stray/m_7975_ (Lnet/minecraft/world/damagesource/DamageSource;)Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/monster/Stray/getHurtSound (Lnet/minecraft/world/damagesource/DamageSource;)Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/monster/Strider/ ()V net/minecraft/world/entity/monster/Strider/ ()V +MD: net/minecraft/world/entity/monster/Strider/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V net/minecraft/world/entity/monster/Strider/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V +MD: net/minecraft/world/entity/monster/Strider/m_142606_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/AgeableMob;)Lnet/minecraft/world/entity/monster/Strider; net/minecraft/world/entity/monster/Strider/getBreedOffspring (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/AgeableMob;)Lnet/minecraft/world/entity/monster/Strider; +MD: net/minecraft/world/entity/monster/Strider/m_142606_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/AgeableMob;)Lnet/minecraft/world/entity/AgeableMob; net/minecraft/world/entity/monster/Strider/getBreedOffspring (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/AgeableMob;)Lnet/minecraft/world/entity/AgeableMob; +MD: net/minecraft/world/entity/monster/Strider/m_203441_ (Lnet/minecraft/world/level/material/FluidState;)Z net/minecraft/world/entity/monster/Strider/canStandOnFluid (Lnet/minecraft/world/level/material/FluidState;)Z +MD: net/minecraft/world/entity/monster/Strider/m_219128_ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/world/entity/MobSpawnType;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)Z net/minecraft/world/entity/monster/Strider/checkStriderSpawnRules (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/world/entity/MobSpawnType;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)Z +MD: net/minecraft/world/entity/monster/Strider/m_245547_ (Lnet/minecraft/world/entity/player/Player;)F net/minecraft/world/entity/monster/Strider/getRiddenSpeed (Lnet/minecraft/world/entity/player/Player;)F +MD: net/minecraft/world/entity/monster/Strider/m_274312_ (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/phys/Vec3;)Lnet/minecraft/world/phys/Vec3; net/minecraft/world/entity/monster/Strider/getRiddenInput (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/phys/Vec3;)Lnet/minecraft/world/phys/Vec3; +MD: net/minecraft/world/entity/monster/Strider/m_274498_ (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/phys/Vec3;)V net/minecraft/world/entity/monster/Strider/tickRidden (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/phys/Vec3;)V +MD: net/minecraft/world/entity/monster/Strider/m_33881_ (Lnet/minecraft/world/level/ServerLevelAccessor;Lnet/minecraft/world/DifficultyInstance;Lnet/minecraft/world/entity/Mob;Lnet/minecraft/world/entity/SpawnGroupData;)Lnet/minecraft/world/entity/SpawnGroupData; net/minecraft/world/entity/monster/Strider/spawnJockey (Lnet/minecraft/world/level/ServerLevelAccessor;Lnet/minecraft/world/DifficultyInstance;Lnet/minecraft/world/entity/Mob;Lnet/minecraft/world/entity/SpawnGroupData;)Lnet/minecraft/world/entity/SpawnGroupData; +MD: net/minecraft/world/entity/monster/Strider/m_33935_ ()Z net/minecraft/world/entity/monster/Strider/isSuffocating ()Z +MD: net/minecraft/world/entity/monster/Strider/m_33937_ ()Lnet/minecraft/world/entity/ai/attributes/AttributeSupplier$Builder; net/minecraft/world/entity/monster/Strider/createAttributes ()Lnet/minecraft/world/entity/ai/attributes/AttributeSupplier$Builder; +MD: net/minecraft/world/entity/monster/Strider/m_33938_ ()Z net/minecraft/world/entity/monster/Strider/isPanicking ()Z +MD: net/minecraft/world/entity/monster/Strider/m_33939_ ()Z net/minecraft/world/entity/monster/Strider/isBeingTempted ()Z +MD: net/minecraft/world/entity/monster/Strider/m_33940_ ()V net/minecraft/world/entity/monster/Strider/floatStrider ()V +MD: net/minecraft/world/entity/monster/Strider/m_33951_ (Z)V net/minecraft/world/entity/monster/Strider/setSuffocating (Z)V +MD: net/minecraft/world/entity/monster/Strider/m_5592_ ()Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/monster/Strider/getDeathSound ()Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/monster/Strider/m_5610_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/LevelReader;)F net/minecraft/world/entity/monster/Strider/getWalkTargetValue (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/LevelReader;)F +MD: net/minecraft/world/entity/monster/Strider/m_5853_ (Lnet/minecraft/sounds/SoundSource;)V net/minecraft/world/entity/monster/Strider/equipSaddle (Lnet/minecraft/sounds/SoundSource;)V +MD: net/minecraft/world/entity/monster/Strider/m_5907_ ()V net/minecraft/world/entity/monster/Strider/dropEquipment ()V +MD: net/minecraft/world/entity/monster/Strider/m_6037_ (Lnet/minecraft/world/level/Level;)Lnet/minecraft/world/entity/ai/navigation/PathNavigation; net/minecraft/world/entity/monster/Strider/createNavigation (Lnet/minecraft/world/level/Level;)Lnet/minecraft/world/entity/ai/navigation/PathNavigation; +MD: net/minecraft/world/entity/monster/Strider/m_6048_ ()D net/minecraft/world/entity/monster/Strider/getPassengersRidingOffset ()D +MD: net/minecraft/world/entity/monster/Strider/m_6059_ ()F net/minecraft/world/entity/monster/Strider/nextStep ()F +MD: net/minecraft/world/entity/monster/Strider/m_6060_ ()Z net/minecraft/world/entity/monster/Strider/isOnFire ()Z +MD: net/minecraft/world/entity/monster/Strider/m_6071_ (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;)Lnet/minecraft/world/InteractionResult; net/minecraft/world/entity/monster/Strider/mobInteract (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;)Lnet/minecraft/world/InteractionResult; +MD: net/minecraft/world/entity/monster/Strider/m_6126_ ()Z net/minecraft/world/entity/monster/Strider/isSensitiveToWater ()Z +MD: net/minecraft/world/entity/monster/Strider/m_6254_ ()Z net/minecraft/world/entity/monster/Strider/isSaddled ()Z +MD: net/minecraft/world/entity/monster/Strider/m_6518_ (Lnet/minecraft/world/level/ServerLevelAccessor;Lnet/minecraft/world/DifficultyInstance;Lnet/minecraft/world/entity/MobSpawnType;Lnet/minecraft/world/entity/SpawnGroupData;Lnet/minecraft/nbt/CompoundTag;)Lnet/minecraft/world/entity/SpawnGroupData; net/minecraft/world/entity/monster/Strider/finalizeSpawn (Lnet/minecraft/world/level/ServerLevelAccessor;Lnet/minecraft/world/DifficultyInstance;Lnet/minecraft/world/entity/MobSpawnType;Lnet/minecraft/world/entity/SpawnGroupData;Lnet/minecraft/nbt/CompoundTag;)Lnet/minecraft/world/entity/SpawnGroupData; +MD: net/minecraft/world/entity/monster/Strider/m_6688_ ()Lnet/minecraft/world/entity/LivingEntity; net/minecraft/world/entity/monster/Strider/getControllingPassenger ()Lnet/minecraft/world/entity/LivingEntity; +MD: net/minecraft/world/entity/monster/Strider/m_6741_ ()Z net/minecraft/world/entity/monster/Strider/isSaddleable ()Z +MD: net/minecraft/world/entity/monster/Strider/m_6746_ ()Z net/minecraft/world/entity/monster/Strider/boost ()Z +MD: net/minecraft/world/entity/monster/Strider/m_6898_ (Lnet/minecraft/world/item/ItemStack;)Z net/minecraft/world/entity/monster/Strider/isFood (Lnet/minecraft/world/item/ItemStack;)Z +MD: net/minecraft/world/entity/monster/Strider/m_6914_ (Lnet/minecraft/world/level/LevelReader;)Z net/minecraft/world/entity/monster/Strider/checkSpawnObstruction (Lnet/minecraft/world/level/LevelReader;)Z +MD: net/minecraft/world/entity/monster/Strider/m_7310_ (Lnet/minecraft/world/entity/Entity;)Z net/minecraft/world/entity/monster/Strider/canAddPassenger (Lnet/minecraft/world/entity/Entity;)Z +MD: net/minecraft/world/entity/monster/Strider/m_7350_ (Lnet/minecraft/network/syncher/EntityDataAccessor;)V net/minecraft/world/entity/monster/Strider/onSyncedDataUpdated (Lnet/minecraft/network/syncher/EntityDataAccessor;)V +MD: net/minecraft/world/entity/monster/Strider/m_7355_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V net/minecraft/world/entity/monster/Strider/playStepSound (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V +MD: net/minecraft/world/entity/monster/Strider/m_7378_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/entity/monster/Strider/readAdditionalSaveData (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/entity/monster/Strider/m_7380_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/entity/monster/Strider/addAdditionalSaveData (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/entity/monster/Strider/m_7515_ ()Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/monster/Strider/getAmbientSound ()Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/monster/Strider/m_7688_ (Lnet/minecraft/world/entity/LivingEntity;)Lnet/minecraft/world/phys/Vec3; net/minecraft/world/entity/monster/Strider/getDismountLocationForPassenger (Lnet/minecraft/world/entity/LivingEntity;)Lnet/minecraft/world/phys/Vec3; +MD: net/minecraft/world/entity/monster/Strider/m_7840_ (DZLnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/BlockPos;)V net/minecraft/world/entity/monster/Strider/checkFallDamage (DZLnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/world/entity/monster/Strider/m_7939_ ()Lnet/minecraft/world/phys/Vec3; net/minecraft/world/entity/monster/Strider/getLeashOffset ()Lnet/minecraft/world/phys/Vec3; +MD: net/minecraft/world/entity/monster/Strider/m_7975_ (Lnet/minecraft/world/damagesource/DamageSource;)Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/monster/Strider/getHurtSound (Lnet/minecraft/world/damagesource/DamageSource;)Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/monster/Strider/m_8091_ ()Z net/minecraft/world/entity/monster/Strider/shouldPassengersInheritMalus ()Z +MD: net/minecraft/world/entity/monster/Strider/m_8097_ ()V net/minecraft/world/entity/monster/Strider/defineSynchedData ()V +MD: net/minecraft/world/entity/monster/Strider/m_8099_ ()V net/minecraft/world/entity/monster/Strider/registerGoals ()V +MD: net/minecraft/world/entity/monster/Strider/m_8119_ ()V net/minecraft/world/entity/monster/Strider/tick ()V +MD: net/minecraft/world/entity/monster/Strider$StriderGoToLavaGoal/ (Lnet/minecraft/world/entity/monster/Strider;D)V net/minecraft/world/entity/monster/Strider$StriderGoToLavaGoal/ (Lnet/minecraft/world/entity/monster/Strider;D)V +MD: net/minecraft/world/entity/monster/Strider$StriderGoToLavaGoal/m_6465_ (Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/entity/monster/Strider$StriderGoToLavaGoal/isValidTarget (Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/entity/monster/Strider$StriderGoToLavaGoal/m_6669_ ()Lnet/minecraft/core/BlockPos; net/minecraft/world/entity/monster/Strider$StriderGoToLavaGoal/getMoveToTarget ()Lnet/minecraft/core/BlockPos; +MD: net/minecraft/world/entity/monster/Strider$StriderGoToLavaGoal/m_8036_ ()Z net/minecraft/world/entity/monster/Strider$StriderGoToLavaGoal/canUse ()Z +MD: net/minecraft/world/entity/monster/Strider$StriderGoToLavaGoal/m_8045_ ()Z net/minecraft/world/entity/monster/Strider$StriderGoToLavaGoal/canContinueToUse ()Z +MD: net/minecraft/world/entity/monster/Strider$StriderGoToLavaGoal/m_8064_ ()Z net/minecraft/world/entity/monster/Strider$StriderGoToLavaGoal/shouldRecalculatePath ()Z +MD: net/minecraft/world/entity/monster/Strider$StriderPathNavigation/ (Lnet/minecraft/world/entity/monster/Strider;Lnet/minecraft/world/level/Level;)V net/minecraft/world/entity/monster/Strider$StriderPathNavigation/ (Lnet/minecraft/world/entity/monster/Strider;Lnet/minecraft/world/level/Level;)V +MD: net/minecraft/world/entity/monster/Strider$StriderPathNavigation/m_5532_ (I)Lnet/minecraft/world/level/pathfinder/PathFinder; net/minecraft/world/entity/monster/Strider$StriderPathNavigation/createPathFinder (I)Lnet/minecraft/world/level/pathfinder/PathFinder; +MD: net/minecraft/world/entity/monster/Strider$StriderPathNavigation/m_6342_ (Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/entity/monster/Strider$StriderPathNavigation/isStableDestination (Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/entity/monster/Strider$StriderPathNavigation/m_7367_ (Lnet/minecraft/world/level/pathfinder/BlockPathTypes;)Z net/minecraft/world/entity/monster/Strider$StriderPathNavigation/hasValidPathType (Lnet/minecraft/world/level/pathfinder/BlockPathTypes;)Z +MD: net/minecraft/world/entity/monster/Vex/ ()V net/minecraft/world/entity/monster/Vex/ ()V +MD: net/minecraft/world/entity/monster/Vex/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V net/minecraft/world/entity/monster/Vex/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V +MD: net/minecraft/world/entity/monster/Vex/m_142039_ ()Z net/minecraft/world/entity/monster/Vex/isFlapping ()Z +MD: net/minecraft/world/entity/monster/Vex/m_19749_ ()Lnet/minecraft/world/entity/Mob; net/minecraft/world/entity/monster/Vex/getOwner ()Lnet/minecraft/world/entity/Mob; +MD: net/minecraft/world/entity/monster/Vex/m_19749_ ()Lnet/minecraft/world/entity/Entity; net/minecraft/world/entity/monster/Vex/getOwner ()Lnet/minecraft/world/entity/Entity; +MD: net/minecraft/world/entity/monster/Vex/m_213856_ ()F net/minecraft/world/entity/monster/Vex/getLightLevelDependentMagicValue ()F +MD: net/minecraft/world/entity/monster/Vex/m_213945_ (Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/DifficultyInstance;)V net/minecraft/world/entity/monster/Vex/populateDefaultEquipmentSlots (Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/DifficultyInstance;)V +MD: net/minecraft/world/entity/monster/Vex/m_219137_ (Lnet/minecraft/world/entity/monster/Vex;)Lnet/minecraft/util/RandomSource; net/minecraft/world/entity/monster/Vex/access$000 (Lnet/minecraft/world/entity/monster/Vex;)Lnet/minecraft/util/RandomSource; +MD: net/minecraft/world/entity/monster/Vex/m_219140_ (Lnet/minecraft/world/entity/monster/Vex;)Lnet/minecraft/util/RandomSource; net/minecraft/world/entity/monster/Vex/access$300 (Lnet/minecraft/world/entity/monster/Vex;)Lnet/minecraft/util/RandomSource; +MD: net/minecraft/world/entity/monster/Vex/m_219142_ (Lnet/minecraft/world/entity/monster/Vex;)Lnet/minecraft/util/RandomSource; net/minecraft/world/entity/monster/Vex/access$400 (Lnet/minecraft/world/entity/monster/Vex;)Lnet/minecraft/util/RandomSource; +MD: net/minecraft/world/entity/monster/Vex/m_219144_ (Lnet/minecraft/world/entity/monster/Vex;)Lnet/minecraft/util/RandomSource; net/minecraft/world/entity/monster/Vex/access$500 (Lnet/minecraft/world/entity/monster/Vex;)Lnet/minecraft/util/RandomSource; +MD: net/minecraft/world/entity/monster/Vex/m_219146_ (Lnet/minecraft/world/entity/monster/Vex;)Lnet/minecraft/util/RandomSource; net/minecraft/world/entity/monster/Vex/access$600 (Lnet/minecraft/world/entity/monster/Vex;)Lnet/minecraft/util/RandomSource; +MD: net/minecraft/world/entity/monster/Vex/m_33987_ (I)V net/minecraft/world/entity/monster/Vex/setLimitedLife (I)V +MD: net/minecraft/world/entity/monster/Vex/m_33989_ (IZ)V net/minecraft/world/entity/monster/Vex/setVexFlag (IZ)V +MD: net/minecraft/world/entity/monster/Vex/m_33994_ (Lnet/minecraft/world/entity/Mob;)V net/minecraft/world/entity/monster/Vex/setOwner (Lnet/minecraft/world/entity/Mob;)V +MD: net/minecraft/world/entity/monster/Vex/m_34010_ (I)Z net/minecraft/world/entity/monster/Vex/getVexFlag (I)Z +MD: net/minecraft/world/entity/monster/Vex/m_34012_ (Lnet/minecraft/world/entity/monster/Vex;)Lnet/minecraft/world/entity/ai/control/MoveControl; net/minecraft/world/entity/monster/Vex/access$100 (Lnet/minecraft/world/entity/monster/Vex;)Lnet/minecraft/world/entity/ai/control/MoveControl; +MD: net/minecraft/world/entity/monster/Vex/m_34016_ (Lnet/minecraft/world/entity/monster/Vex;)Lnet/minecraft/world/entity/ai/control/MoveControl; net/minecraft/world/entity/monster/Vex/access$200 (Lnet/minecraft/world/entity/monster/Vex;)Lnet/minecraft/world/entity/ai/control/MoveControl; +MD: net/minecraft/world/entity/monster/Vex/m_34027_ ()Lnet/minecraft/core/BlockPos; net/minecraft/world/entity/monster/Vex/getBoundOrigin ()Lnet/minecraft/core/BlockPos; +MD: net/minecraft/world/entity/monster/Vex/m_34028_ ()Z net/minecraft/world/entity/monster/Vex/isCharging ()Z +MD: net/minecraft/world/entity/monster/Vex/m_34033_ (Lnet/minecraft/core/BlockPos;)V net/minecraft/world/entity/monster/Vex/setBoundOrigin (Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/world/entity/monster/Vex/m_34035_ (Lnet/minecraft/world/entity/monster/Vex;)Lnet/minecraft/world/entity/ai/control/MoveControl; net/minecraft/world/entity/monster/Vex/access$700 (Lnet/minecraft/world/entity/monster/Vex;)Lnet/minecraft/world/entity/ai/control/MoveControl; +MD: net/minecraft/world/entity/monster/Vex/m_34040_ ()Lnet/minecraft/world/entity/ai/attributes/AttributeSupplier$Builder; net/minecraft/world/entity/monster/Vex/createAttributes ()Lnet/minecraft/world/entity/ai/attributes/AttributeSupplier$Builder; +MD: net/minecraft/world/entity/monster/Vex/m_34042_ (Z)V net/minecraft/world/entity/monster/Vex/setIsCharging (Z)V +MD: net/minecraft/world/entity/monster/Vex/m_5592_ ()Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/monster/Vex/getDeathSound ()Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/monster/Vex/m_6049_ ()D net/minecraft/world/entity/monster/Vex/getMyRidingOffset ()D +MD: net/minecraft/world/entity/monster/Vex/m_6431_ (Lnet/minecraft/world/entity/Pose;Lnet/minecraft/world/entity/EntityDimensions;)F net/minecraft/world/entity/monster/Vex/getStandingEyeHeight (Lnet/minecraft/world/entity/Pose;Lnet/minecraft/world/entity/EntityDimensions;)F +MD: net/minecraft/world/entity/monster/Vex/m_6478_ (Lnet/minecraft/world/entity/MoverType;Lnet/minecraft/world/phys/Vec3;)V net/minecraft/world/entity/monster/Vex/move (Lnet/minecraft/world/entity/MoverType;Lnet/minecraft/world/phys/Vec3;)V +MD: net/minecraft/world/entity/monster/Vex/m_6518_ (Lnet/minecraft/world/level/ServerLevelAccessor;Lnet/minecraft/world/DifficultyInstance;Lnet/minecraft/world/entity/MobSpawnType;Lnet/minecraft/world/entity/SpawnGroupData;Lnet/minecraft/nbt/CompoundTag;)Lnet/minecraft/world/entity/SpawnGroupData; net/minecraft/world/entity/monster/Vex/finalizeSpawn (Lnet/minecraft/world/level/ServerLevelAccessor;Lnet/minecraft/world/DifficultyInstance;Lnet/minecraft/world/entity/MobSpawnType;Lnet/minecraft/world/entity/SpawnGroupData;Lnet/minecraft/nbt/CompoundTag;)Lnet/minecraft/world/entity/SpawnGroupData; +MD: net/minecraft/world/entity/monster/Vex/m_7378_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/entity/monster/Vex/readAdditionalSaveData (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/entity/monster/Vex/m_7380_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/entity/monster/Vex/addAdditionalSaveData (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/entity/monster/Vex/m_7515_ ()Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/monster/Vex/getAmbientSound ()Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/monster/Vex/m_7975_ (Lnet/minecraft/world/damagesource/DamageSource;)Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/monster/Vex/getHurtSound (Lnet/minecraft/world/damagesource/DamageSource;)Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/monster/Vex/m_8097_ ()V net/minecraft/world/entity/monster/Vex/defineSynchedData ()V +MD: net/minecraft/world/entity/monster/Vex/m_8099_ ()V net/minecraft/world/entity/monster/Vex/registerGoals ()V +MD: net/minecraft/world/entity/monster/Vex/m_8119_ ()V net/minecraft/world/entity/monster/Vex/tick ()V +MD: net/minecraft/world/entity/monster/Vex$VexChargeAttackGoal/ (Lnet/minecraft/world/entity/monster/Vex;)V net/minecraft/world/entity/monster/Vex$VexChargeAttackGoal/ (Lnet/minecraft/world/entity/monster/Vex;)V +MD: net/minecraft/world/entity/monster/Vex$VexChargeAttackGoal/m_183429_ ()Z net/minecraft/world/entity/monster/Vex$VexChargeAttackGoal/requiresUpdateEveryTick ()Z +MD: net/minecraft/world/entity/monster/Vex$VexChargeAttackGoal/m_8036_ ()Z net/minecraft/world/entity/monster/Vex$VexChargeAttackGoal/canUse ()Z +MD: net/minecraft/world/entity/monster/Vex$VexChargeAttackGoal/m_8037_ ()V net/minecraft/world/entity/monster/Vex$VexChargeAttackGoal/tick ()V +MD: net/minecraft/world/entity/monster/Vex$VexChargeAttackGoal/m_8041_ ()V net/minecraft/world/entity/monster/Vex$VexChargeAttackGoal/stop ()V +MD: net/minecraft/world/entity/monster/Vex$VexChargeAttackGoal/m_8045_ ()Z net/minecraft/world/entity/monster/Vex$VexChargeAttackGoal/canContinueToUse ()Z +MD: net/minecraft/world/entity/monster/Vex$VexChargeAttackGoal/m_8056_ ()V net/minecraft/world/entity/monster/Vex$VexChargeAttackGoal/start ()V +MD: net/minecraft/world/entity/monster/Vex$VexCopyOwnerTargetGoal/ (Lnet/minecraft/world/entity/monster/Vex;Lnet/minecraft/world/entity/PathfinderMob;)V net/minecraft/world/entity/monster/Vex$VexCopyOwnerTargetGoal/ (Lnet/minecraft/world/entity/monster/Vex;Lnet/minecraft/world/entity/PathfinderMob;)V +MD: net/minecraft/world/entity/monster/Vex$VexCopyOwnerTargetGoal/m_8036_ ()Z net/minecraft/world/entity/monster/Vex$VexCopyOwnerTargetGoal/canUse ()Z +MD: net/minecraft/world/entity/monster/Vex$VexCopyOwnerTargetGoal/m_8056_ ()V net/minecraft/world/entity/monster/Vex$VexCopyOwnerTargetGoal/start ()V +MD: net/minecraft/world/entity/monster/Vex$VexMoveControl/ (Lnet/minecraft/world/entity/monster/Vex;Lnet/minecraft/world/entity/monster/Vex;)V net/minecraft/world/entity/monster/Vex$VexMoveControl/ (Lnet/minecraft/world/entity/monster/Vex;Lnet/minecraft/world/entity/monster/Vex;)V +MD: net/minecraft/world/entity/monster/Vex$VexMoveControl/m_8126_ ()V net/minecraft/world/entity/monster/Vex$VexMoveControl/tick ()V +MD: net/minecraft/world/entity/monster/Vex$VexRandomMoveGoal/ (Lnet/minecraft/world/entity/monster/Vex;)V net/minecraft/world/entity/monster/Vex$VexRandomMoveGoal/ (Lnet/minecraft/world/entity/monster/Vex;)V +MD: net/minecraft/world/entity/monster/Vex$VexRandomMoveGoal/m_8036_ ()Z net/minecraft/world/entity/monster/Vex$VexRandomMoveGoal/canUse ()Z +MD: net/minecraft/world/entity/monster/Vex$VexRandomMoveGoal/m_8037_ ()V net/minecraft/world/entity/monster/Vex$VexRandomMoveGoal/tick ()V +MD: net/minecraft/world/entity/monster/Vex$VexRandomMoveGoal/m_8045_ ()Z net/minecraft/world/entity/monster/Vex$VexRandomMoveGoal/canContinueToUse ()Z +MD: net/minecraft/world/entity/monster/Vindicator/ ()V net/minecraft/world/entity/monster/Vindicator/ ()V +MD: net/minecraft/world/entity/monster/Vindicator/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V net/minecraft/world/entity/monster/Vindicator/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V +MD: net/minecraft/world/entity/monster/Vindicator/m_213945_ (Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/DifficultyInstance;)V net/minecraft/world/entity/monster/Vindicator/populateDefaultEquipmentSlots (Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/DifficultyInstance;)V +MD: net/minecraft/world/entity/monster/Vindicator/m_219151_ (Lnet/minecraft/world/entity/monster/Vindicator;)Lnet/minecraft/util/RandomSource; net/minecraft/world/entity/monster/Vindicator/access$000 (Lnet/minecraft/world/entity/monster/Vindicator;)Lnet/minecraft/util/RandomSource; +MD: net/minecraft/world/entity/monster/Vindicator/m_34081_ (Lnet/minecraft/world/Difficulty;)Z net/minecraft/world/entity/monster/Vindicator/lambda$static$0 (Lnet/minecraft/world/Difficulty;)Z +MD: net/minecraft/world/entity/monster/Vindicator/m_34104_ ()Lnet/minecraft/world/entity/ai/attributes/AttributeSupplier$Builder; net/minecraft/world/entity/monster/Vindicator/createAttributes ()Lnet/minecraft/world/entity/ai/attributes/AttributeSupplier$Builder; +MD: net/minecraft/world/entity/monster/Vindicator/m_5592_ ()Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/monster/Vindicator/getDeathSound ()Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/monster/Vindicator/m_6518_ (Lnet/minecraft/world/level/ServerLevelAccessor;Lnet/minecraft/world/DifficultyInstance;Lnet/minecraft/world/entity/MobSpawnType;Lnet/minecraft/world/entity/SpawnGroupData;Lnet/minecraft/nbt/CompoundTag;)Lnet/minecraft/world/entity/SpawnGroupData; net/minecraft/world/entity/monster/Vindicator/finalizeSpawn (Lnet/minecraft/world/level/ServerLevelAccessor;Lnet/minecraft/world/DifficultyInstance;Lnet/minecraft/world/entity/MobSpawnType;Lnet/minecraft/world/entity/SpawnGroupData;Lnet/minecraft/nbt/CompoundTag;)Lnet/minecraft/world/entity/SpawnGroupData; +MD: net/minecraft/world/entity/monster/Vindicator/m_6593_ (Lnet/minecraft/network/chat/Component;)V net/minecraft/world/entity/monster/Vindicator/setCustomName (Lnet/minecraft/network/chat/Component;)V +MD: net/minecraft/world/entity/monster/Vindicator/m_6768_ ()Lnet/minecraft/world/entity/monster/AbstractIllager$IllagerArmPose; net/minecraft/world/entity/monster/Vindicator/getArmPose ()Lnet/minecraft/world/entity/monster/AbstractIllager$IllagerArmPose; +MD: net/minecraft/world/entity/monster/Vindicator/m_7307_ (Lnet/minecraft/world/entity/Entity;)Z net/minecraft/world/entity/monster/Vindicator/isAlliedTo (Lnet/minecraft/world/entity/Entity;)Z +MD: net/minecraft/world/entity/monster/Vindicator/m_7378_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/entity/monster/Vindicator/readAdditionalSaveData (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/entity/monster/Vindicator/m_7380_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/entity/monster/Vindicator/addAdditionalSaveData (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/entity/monster/Vindicator/m_7515_ ()Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/monster/Vindicator/getAmbientSound ()Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/monster/Vindicator/m_7895_ (IZ)V net/minecraft/world/entity/monster/Vindicator/applyRaidBuffs (IZ)V +MD: net/minecraft/world/entity/monster/Vindicator/m_7930_ ()Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/monster/Vindicator/getCelebrateSound ()Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/monster/Vindicator/m_7975_ (Lnet/minecraft/world/damagesource/DamageSource;)Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/monster/Vindicator/getHurtSound (Lnet/minecraft/world/damagesource/DamageSource;)Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/monster/Vindicator/m_8024_ ()V net/minecraft/world/entity/monster/Vindicator/customServerAiStep ()V +MD: net/minecraft/world/entity/monster/Vindicator/m_8099_ ()V net/minecraft/world/entity/monster/Vindicator/registerGoals ()V +MD: net/minecraft/world/entity/monster/Vindicator$VindicatorBreakDoorGoal/ (Lnet/minecraft/world/entity/Mob;)V net/minecraft/world/entity/monster/Vindicator$VindicatorBreakDoorGoal/ (Lnet/minecraft/world/entity/Mob;)V +MD: net/minecraft/world/entity/monster/Vindicator$VindicatorBreakDoorGoal/m_8036_ ()Z net/minecraft/world/entity/monster/Vindicator$VindicatorBreakDoorGoal/canUse ()Z +MD: net/minecraft/world/entity/monster/Vindicator$VindicatorBreakDoorGoal/m_8045_ ()Z net/minecraft/world/entity/monster/Vindicator$VindicatorBreakDoorGoal/canContinueToUse ()Z +MD: net/minecraft/world/entity/monster/Vindicator$VindicatorBreakDoorGoal/m_8056_ ()V net/minecraft/world/entity/monster/Vindicator$VindicatorBreakDoorGoal/start ()V +MD: net/minecraft/world/entity/monster/Vindicator$VindicatorJohnnyAttackGoal/ (Lnet/minecraft/world/entity/monster/Vindicator;)V net/minecraft/world/entity/monster/Vindicator$VindicatorJohnnyAttackGoal/ (Lnet/minecraft/world/entity/monster/Vindicator;)V +MD: net/minecraft/world/entity/monster/Vindicator$VindicatorJohnnyAttackGoal/m_8036_ ()Z net/minecraft/world/entity/monster/Vindicator$VindicatorJohnnyAttackGoal/canUse ()Z +MD: net/minecraft/world/entity/monster/Vindicator$VindicatorJohnnyAttackGoal/m_8056_ ()V net/minecraft/world/entity/monster/Vindicator$VindicatorJohnnyAttackGoal/start ()V +MD: net/minecraft/world/entity/monster/Vindicator$VindicatorMeleeAttackGoal/ (Lnet/minecraft/world/entity/monster/Vindicator;Lnet/minecraft/world/entity/monster/Vindicator;)V net/minecraft/world/entity/monster/Vindicator$VindicatorMeleeAttackGoal/ (Lnet/minecraft/world/entity/monster/Vindicator;Lnet/minecraft/world/entity/monster/Vindicator;)V +MD: net/minecraft/world/entity/monster/Vindicator$VindicatorMeleeAttackGoal/m_6639_ (Lnet/minecraft/world/entity/LivingEntity;)D net/minecraft/world/entity/monster/Vindicator$VindicatorMeleeAttackGoal/getAttackReachSqr (Lnet/minecraft/world/entity/LivingEntity;)D +MD: net/minecraft/world/entity/monster/Witch/ ()V net/minecraft/world/entity/monster/Witch/ ()V +MD: net/minecraft/world/entity/monster/Witch/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V net/minecraft/world/entity/monster/Witch/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V +MD: net/minecraft/world/entity/monster/Witch/m_289150_ (Lnet/minecraft/world/entity/LivingEntity;)Z net/minecraft/world/entity/monster/Witch/lambda$registerGoals$0 (Lnet/minecraft/world/entity/LivingEntity;)Z +MD: net/minecraft/world/entity/monster/Witch/m_34155_ ()Lnet/minecraft/world/entity/ai/attributes/AttributeSupplier$Builder; net/minecraft/world/entity/monster/Witch/createAttributes ()Lnet/minecraft/world/entity/ai/attributes/AttributeSupplier$Builder; +MD: net/minecraft/world/entity/monster/Witch/m_34161_ ()Z net/minecraft/world/entity/monster/Witch/isDrinkingPotion ()Z +MD: net/minecraft/world/entity/monster/Witch/m_34163_ (Z)V net/minecraft/world/entity/monster/Witch/setUsingItem (Z)V +MD: net/minecraft/world/entity/monster/Witch/m_5592_ ()Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/monster/Witch/getDeathSound ()Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/monster/Witch/m_6431_ (Lnet/minecraft/world/entity/Pose;Lnet/minecraft/world/entity/EntityDimensions;)F net/minecraft/world/entity/monster/Witch/getStandingEyeHeight (Lnet/minecraft/world/entity/Pose;Lnet/minecraft/world/entity/EntityDimensions;)F +MD: net/minecraft/world/entity/monster/Witch/m_6504_ (Lnet/minecraft/world/entity/LivingEntity;F)V net/minecraft/world/entity/monster/Witch/performRangedAttack (Lnet/minecraft/world/entity/LivingEntity;F)V +MD: net/minecraft/world/entity/monster/Witch/m_6515_ (Lnet/minecraft/world/damagesource/DamageSource;F)F net/minecraft/world/entity/monster/Witch/getDamageAfterMagicAbsorb (Lnet/minecraft/world/damagesource/DamageSource;F)F +MD: net/minecraft/world/entity/monster/Witch/m_7490_ ()Z net/minecraft/world/entity/monster/Witch/canBeLeader ()Z +MD: net/minecraft/world/entity/monster/Witch/m_7515_ ()Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/monster/Witch/getAmbientSound ()Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/monster/Witch/m_7822_ (B)V net/minecraft/world/entity/monster/Witch/handleEntityEvent (B)V +MD: net/minecraft/world/entity/monster/Witch/m_7895_ (IZ)V net/minecraft/world/entity/monster/Witch/applyRaidBuffs (IZ)V +MD: net/minecraft/world/entity/monster/Witch/m_7930_ ()Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/monster/Witch/getCelebrateSound ()Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/monster/Witch/m_7975_ (Lnet/minecraft/world/damagesource/DamageSource;)Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/monster/Witch/getHurtSound (Lnet/minecraft/world/damagesource/DamageSource;)Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/monster/Witch/m_8097_ ()V net/minecraft/world/entity/monster/Witch/defineSynchedData ()V +MD: net/minecraft/world/entity/monster/Witch/m_8099_ ()V net/minecraft/world/entity/monster/Witch/registerGoals ()V +MD: net/minecraft/world/entity/monster/Witch/m_8107_ ()V net/minecraft/world/entity/monster/Witch/aiStep ()V +MD: net/minecraft/world/entity/monster/WitherSkeleton/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V net/minecraft/world/entity/monster/WitherSkeleton/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V +MD: net/minecraft/world/entity/monster/WitherSkeleton/m_213945_ (Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/DifficultyInstance;)V net/minecraft/world/entity/monster/WitherSkeleton/populateDefaultEquipmentSlots (Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/DifficultyInstance;)V +MD: net/minecraft/world/entity/monster/WitherSkeleton/m_213946_ (Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/DifficultyInstance;)V net/minecraft/world/entity/monster/WitherSkeleton/populateDefaultEquipmentEnchantments (Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/DifficultyInstance;)V +MD: net/minecraft/world/entity/monster/WitherSkeleton/m_5592_ ()Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/monster/WitherSkeleton/getDeathSound ()Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/monster/WitherSkeleton/m_6431_ (Lnet/minecraft/world/entity/Pose;Lnet/minecraft/world/entity/EntityDimensions;)F net/minecraft/world/entity/monster/WitherSkeleton/getStandingEyeHeight (Lnet/minecraft/world/entity/Pose;Lnet/minecraft/world/entity/EntityDimensions;)F +MD: net/minecraft/world/entity/monster/WitherSkeleton/m_6518_ (Lnet/minecraft/world/level/ServerLevelAccessor;Lnet/minecraft/world/DifficultyInstance;Lnet/minecraft/world/entity/MobSpawnType;Lnet/minecraft/world/entity/SpawnGroupData;Lnet/minecraft/nbt/CompoundTag;)Lnet/minecraft/world/entity/SpawnGroupData; net/minecraft/world/entity/monster/WitherSkeleton/finalizeSpawn (Lnet/minecraft/world/level/ServerLevelAccessor;Lnet/minecraft/world/DifficultyInstance;Lnet/minecraft/world/entity/MobSpawnType;Lnet/minecraft/world/entity/SpawnGroupData;Lnet/minecraft/nbt/CompoundTag;)Lnet/minecraft/world/entity/SpawnGroupData; +MD: net/minecraft/world/entity/monster/WitherSkeleton/m_7301_ (Lnet/minecraft/world/effect/MobEffectInstance;)Z net/minecraft/world/entity/monster/WitherSkeleton/canBeAffected (Lnet/minecraft/world/effect/MobEffectInstance;)Z +MD: net/minecraft/world/entity/monster/WitherSkeleton/m_7327_ (Lnet/minecraft/world/entity/Entity;)Z net/minecraft/world/entity/monster/WitherSkeleton/doHurtTarget (Lnet/minecraft/world/entity/Entity;)Z +MD: net/minecraft/world/entity/monster/WitherSkeleton/m_7472_ (Lnet/minecraft/world/damagesource/DamageSource;IZ)V net/minecraft/world/entity/monster/WitherSkeleton/dropCustomDeathLoot (Lnet/minecraft/world/damagesource/DamageSource;IZ)V +MD: net/minecraft/world/entity/monster/WitherSkeleton/m_7515_ ()Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/monster/WitherSkeleton/getAmbientSound ()Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/monster/WitherSkeleton/m_7878_ ()Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/monster/WitherSkeleton/getStepSound ()Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/monster/WitherSkeleton/m_7932_ (Lnet/minecraft/world/item/ItemStack;F)Lnet/minecraft/world/entity/projectile/AbstractArrow; net/minecraft/world/entity/monster/WitherSkeleton/getArrow (Lnet/minecraft/world/item/ItemStack;F)Lnet/minecraft/world/entity/projectile/AbstractArrow; +MD: net/minecraft/world/entity/monster/WitherSkeleton/m_7975_ (Lnet/minecraft/world/damagesource/DamageSource;)Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/monster/WitherSkeleton/getHurtSound (Lnet/minecraft/world/damagesource/DamageSource;)Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/monster/WitherSkeleton/m_8099_ ()V net/minecraft/world/entity/monster/WitherSkeleton/registerGoals ()V +MD: net/minecraft/world/entity/monster/Zoglin/ ()V net/minecraft/world/entity/monster/Zoglin/ ()V +MD: net/minecraft/world/entity/monster/Zoglin/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V net/minecraft/world/entity/monster/Zoglin/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V +MD: net/minecraft/world/entity/monster/Zoglin/m_34216_ (Lnet/minecraft/world/entity/ai/Brain;)V net/minecraft/world/entity/monster/Zoglin/initCoreActivity (Lnet/minecraft/world/entity/ai/Brain;)V +MD: net/minecraft/world/entity/monster/Zoglin/m_34228_ (Lnet/minecraft/world/entity/ai/Brain;)V net/minecraft/world/entity/monster/Zoglin/initIdleActivity (Lnet/minecraft/world/entity/ai/Brain;)V +MD: net/minecraft/world/entity/monster/Zoglin/m_34236_ (Lnet/minecraft/world/entity/ai/Brain;)V net/minecraft/world/entity/monster/Zoglin/initFightActivity (Lnet/minecraft/world/entity/ai/Brain;)V +MD: net/minecraft/world/entity/monster/Zoglin/m_34247_ ()Z net/minecraft/world/entity/monster/Zoglin/isAdult ()Z +MD: net/minecraft/world/entity/monster/Zoglin/m_34248_ ()V net/minecraft/world/entity/monster/Zoglin/updateActivity ()V +MD: net/minecraft/world/entity/monster/Zoglin/m_34250_ ()V net/minecraft/world/entity/monster/Zoglin/playAngrySound ()V +MD: net/minecraft/world/entity/monster/Zoglin/m_34251_ ()Ljava/util/Optional; net/minecraft/world/entity/monster/Zoglin/findNearestValidAttackTarget ()Ljava/util/Optional; +MD: net/minecraft/world/entity/monster/Zoglin/m_34252_ (Lnet/minecraft/world/entity/LivingEntity;)Z net/minecraft/world/entity/monster/Zoglin/isTargetable (Lnet/minecraft/world/entity/LivingEntity;)Z +MD: net/minecraft/world/entity/monster/Zoglin/m_34254_ (Lnet/minecraft/world/entity/LivingEntity;)V net/minecraft/world/entity/monster/Zoglin/setAttackTarget (Lnet/minecraft/world/entity/LivingEntity;)V +MD: net/minecraft/world/entity/monster/Zoglin/m_34257_ ()Lnet/minecraft/world/entity/ai/attributes/AttributeSupplier$Builder; net/minecraft/world/entity/monster/Zoglin/createAttributes ()Lnet/minecraft/world/entity/ai/attributes/AttributeSupplier$Builder; +MD: net/minecraft/world/entity/monster/Zoglin/m_5490_ ()Lnet/minecraft/world/entity/ai/Brain$Provider; net/minecraft/world/entity/monster/Zoglin/brainProvider ()Lnet/minecraft/world/entity/ai/Brain$Provider; +MD: net/minecraft/world/entity/monster/Zoglin/m_5592_ ()Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/monster/Zoglin/getDeathSound ()Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/monster/Zoglin/m_6048_ ()D net/minecraft/world/entity/monster/Zoglin/getPassengersRidingOffset ()D +MD: net/minecraft/world/entity/monster/Zoglin/m_6162_ ()Z net/minecraft/world/entity/monster/Zoglin/isBaby ()Z +MD: net/minecraft/world/entity/monster/Zoglin/m_6274_ ()Lnet/minecraft/world/entity/ai/Brain; net/minecraft/world/entity/monster/Zoglin/getBrain ()Lnet/minecraft/world/entity/ai/Brain; +MD: net/minecraft/world/entity/monster/Zoglin/m_6336_ ()Lnet/minecraft/world/entity/MobType; net/minecraft/world/entity/monster/Zoglin/getMobType ()Lnet/minecraft/world/entity/MobType; +MD: net/minecraft/world/entity/monster/Zoglin/m_6469_ (Lnet/minecraft/world/damagesource/DamageSource;F)Z net/minecraft/world/entity/monster/Zoglin/hurt (Lnet/minecraft/world/damagesource/DamageSource;F)Z +MD: net/minecraft/world/entity/monster/Zoglin/m_6573_ (Lnet/minecraft/world/entity/player/Player;)Z net/minecraft/world/entity/monster/Zoglin/canBeLeashed (Lnet/minecraft/world/entity/player/Player;)Z +MD: net/minecraft/world/entity/monster/Zoglin/m_6731_ (Lnet/minecraft/world/entity/LivingEntity;)V net/minecraft/world/entity/monster/Zoglin/blockedByShield (Lnet/minecraft/world/entity/LivingEntity;)V +MD: net/minecraft/world/entity/monster/Zoglin/m_6863_ (Z)V net/minecraft/world/entity/monster/Zoglin/setBaby (Z)V +MD: net/minecraft/world/entity/monster/Zoglin/m_7327_ (Lnet/minecraft/world/entity/Entity;)Z net/minecraft/world/entity/monster/Zoglin/doHurtTarget (Lnet/minecraft/world/entity/Entity;)Z +MD: net/minecraft/world/entity/monster/Zoglin/m_7350_ (Lnet/minecraft/network/syncher/EntityDataAccessor;)V net/minecraft/world/entity/monster/Zoglin/onSyncedDataUpdated (Lnet/minecraft/network/syncher/EntityDataAccessor;)V +MD: net/minecraft/world/entity/monster/Zoglin/m_7355_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V net/minecraft/world/entity/monster/Zoglin/playStepSound (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V +MD: net/minecraft/world/entity/monster/Zoglin/m_7378_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/entity/monster/Zoglin/readAdditionalSaveData (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/entity/monster/Zoglin/m_7380_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/entity/monster/Zoglin/addAdditionalSaveData (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/entity/monster/Zoglin/m_7515_ ()Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/monster/Zoglin/getAmbientSound ()Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/monster/Zoglin/m_7575_ ()I net/minecraft/world/entity/monster/Zoglin/getAttackAnimationRemainingTicks ()I +MD: net/minecraft/world/entity/monster/Zoglin/m_7822_ (B)V net/minecraft/world/entity/monster/Zoglin/handleEntityEvent (B)V +MD: net/minecraft/world/entity/monster/Zoglin/m_7975_ (Lnet/minecraft/world/damagesource/DamageSource;)Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/monster/Zoglin/getHurtSound (Lnet/minecraft/world/damagesource/DamageSource;)Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/monster/Zoglin/m_8024_ ()V net/minecraft/world/entity/monster/Zoglin/customServerAiStep ()V +MD: net/minecraft/world/entity/monster/Zoglin/m_8025_ ()V net/minecraft/world/entity/monster/Zoglin/sendDebugPackets ()V +MD: net/minecraft/world/entity/monster/Zoglin/m_8075_ (Lcom/mojang/serialization/Dynamic;)Lnet/minecraft/world/entity/ai/Brain; net/minecraft/world/entity/monster/Zoglin/makeBrain (Lcom/mojang/serialization/Dynamic;)Lnet/minecraft/world/entity/ai/Brain; +MD: net/minecraft/world/entity/monster/Zoglin/m_8097_ ()V net/minecraft/world/entity/monster/Zoglin/defineSynchedData ()V +MD: net/minecraft/world/entity/monster/Zoglin/m_8107_ ()V net/minecraft/world/entity/monster/Zoglin/aiStep ()V +MD: net/minecraft/world/entity/monster/Zombie/ ()V net/minecraft/world/entity/monster/Zombie/ ()V +MD: net/minecraft/world/entity/monster/Zombie/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V net/minecraft/world/entity/monster/Zombie/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V +MD: net/minecraft/world/entity/monster/Zombie/ (Lnet/minecraft/world/level/Level;)V net/minecraft/world/entity/monster/Zombie/ (Lnet/minecraft/world/level/Level;)V +MD: net/minecraft/world/entity/monster/Zombie/m_213860_ ()I net/minecraft/world/entity/monster/Zombie/getExperienceReward ()I +MD: net/minecraft/world/entity/monster/Zombie/m_213945_ (Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/DifficultyInstance;)V net/minecraft/world/entity/monster/Zombie/populateDefaultEquipmentSlots (Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/DifficultyInstance;)V +MD: net/minecraft/world/entity/monster/Zombie/m_214076_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;)Z net/minecraft/world/entity/monster/Zombie/killedEntity (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;)Z +MD: net/minecraft/world/entity/monster/Zombie/m_219162_ (Lnet/minecraft/util/RandomSource;)Z net/minecraft/world/entity/monster/Zombie/getSpawnAsBabyOdds (Lnet/minecraft/util/RandomSource;)Z +MD: net/minecraft/world/entity/monster/Zombie/m_219167_ (Lnet/minecraft/world/entity/monster/Zombie;)Lnet/minecraft/util/RandomSource; net/minecraft/world/entity/monster/Zombie/access$000 (Lnet/minecraft/world/entity/monster/Zombie;)Lnet/minecraft/util/RandomSource; +MD: net/minecraft/world/entity/monster/Zombie/m_34278_ (I)V net/minecraft/world/entity/monster/Zombie/startUnderWaterConversion (I)V +MD: net/minecraft/world/entity/monster/Zombie/m_34283_ (Lnet/minecraft/world/Difficulty;)Z net/minecraft/world/entity/monster/Zombie/lambda$static$0 (Lnet/minecraft/world/Difficulty;)Z +MD: net/minecraft/world/entity/monster/Zombie/m_34310_ (Lnet/minecraft/world/entity/EntityType;)V net/minecraft/world/entity/monster/Zombie/convertToZombieType (Lnet/minecraft/world/entity/EntityType;)V +MD: net/minecraft/world/entity/monster/Zombie/m_34328_ ()Lnet/minecraft/world/entity/ai/attributes/AttributeSupplier$Builder; net/minecraft/world/entity/monster/Zombie/createAttributes ()Lnet/minecraft/world/entity/ai/attributes/AttributeSupplier$Builder; +MD: net/minecraft/world/entity/monster/Zombie/m_34329_ ()Z net/minecraft/world/entity/monster/Zombie/isUnderWaterConverting ()Z +MD: net/minecraft/world/entity/monster/Zombie/m_34330_ ()Z net/minecraft/world/entity/monster/Zombie/canBreakDoors ()Z +MD: net/minecraft/world/entity/monster/Zombie/m_34336_ (Z)V net/minecraft/world/entity/monster/Zombie/setCanBreakDoors (Z)V +MD: net/minecraft/world/entity/monster/Zombie/m_34339_ (F)V net/minecraft/world/entity/monster/Zombie/handleAttributes (F)V +MD: net/minecraft/world/entity/monster/Zombie/m_5592_ ()Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/monster/Zombie/getDeathSound ()Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/monster/Zombie/m_5728_ ()Lnet/minecraft/world/item/ItemStack; net/minecraft/world/entity/monster/Zombie/getSkull ()Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/entity/monster/Zombie/m_5884_ ()Z net/minecraft/world/entity/monster/Zombie/isSunSensitive ()Z +MD: net/minecraft/world/entity/monster/Zombie/m_6049_ ()D net/minecraft/world/entity/monster/Zombie/getMyRidingOffset ()D +MD: net/minecraft/world/entity/monster/Zombie/m_6162_ ()Z net/minecraft/world/entity/monster/Zombie/isBaby ()Z +MD: net/minecraft/world/entity/monster/Zombie/m_6336_ ()Lnet/minecraft/world/entity/MobType; net/minecraft/world/entity/monster/Zombie/getMobType ()Lnet/minecraft/world/entity/MobType; +MD: net/minecraft/world/entity/monster/Zombie/m_6431_ (Lnet/minecraft/world/entity/Pose;Lnet/minecraft/world/entity/EntityDimensions;)F net/minecraft/world/entity/monster/Zombie/getStandingEyeHeight (Lnet/minecraft/world/entity/Pose;Lnet/minecraft/world/entity/EntityDimensions;)F +MD: net/minecraft/world/entity/monster/Zombie/m_6469_ (Lnet/minecraft/world/damagesource/DamageSource;F)Z net/minecraft/world/entity/monster/Zombie/hurt (Lnet/minecraft/world/damagesource/DamageSource;F)Z +MD: net/minecraft/world/entity/monster/Zombie/m_6518_ (Lnet/minecraft/world/level/ServerLevelAccessor;Lnet/minecraft/world/DifficultyInstance;Lnet/minecraft/world/entity/MobSpawnType;Lnet/minecraft/world/entity/SpawnGroupData;Lnet/minecraft/nbt/CompoundTag;)Lnet/minecraft/world/entity/SpawnGroupData; net/minecraft/world/entity/monster/Zombie/finalizeSpawn (Lnet/minecraft/world/level/ServerLevelAccessor;Lnet/minecraft/world/DifficultyInstance;Lnet/minecraft/world/entity/MobSpawnType;Lnet/minecraft/world/entity/SpawnGroupData;Lnet/minecraft/nbt/CompoundTag;)Lnet/minecraft/world/entity/SpawnGroupData; +MD: net/minecraft/world/entity/monster/Zombie/m_6863_ (Z)V net/minecraft/world/entity/monster/Zombie/setBaby (Z)V +MD: net/minecraft/world/entity/monster/Zombie/m_6878_ ()V net/minecraft/world/entity/monster/Zombie/addBehaviourGoals ()V +MD: net/minecraft/world/entity/monster/Zombie/m_7243_ (Lnet/minecraft/world/item/ItemStack;)Z net/minecraft/world/entity/monster/Zombie/wantsToPickUp (Lnet/minecraft/world/item/ItemStack;)Z +MD: net/minecraft/world/entity/monster/Zombie/m_7252_ (Lnet/minecraft/world/item/ItemStack;)Z net/minecraft/world/entity/monster/Zombie/canHoldItem (Lnet/minecraft/world/item/ItemStack;)Z +MD: net/minecraft/world/entity/monster/Zombie/m_7327_ (Lnet/minecraft/world/entity/Entity;)Z net/minecraft/world/entity/monster/Zombie/doHurtTarget (Lnet/minecraft/world/entity/Entity;)Z +MD: net/minecraft/world/entity/monster/Zombie/m_7350_ (Lnet/minecraft/network/syncher/EntityDataAccessor;)V net/minecraft/world/entity/monster/Zombie/onSyncedDataUpdated (Lnet/minecraft/network/syncher/EntityDataAccessor;)V +MD: net/minecraft/world/entity/monster/Zombie/m_7355_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V net/minecraft/world/entity/monster/Zombie/playStepSound (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V +MD: net/minecraft/world/entity/monster/Zombie/m_7378_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/entity/monster/Zombie/readAdditionalSaveData (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/entity/monster/Zombie/m_7380_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/entity/monster/Zombie/addAdditionalSaveData (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/entity/monster/Zombie/m_7472_ (Lnet/minecraft/world/damagesource/DamageSource;IZ)V net/minecraft/world/entity/monster/Zombie/dropCustomDeathLoot (Lnet/minecraft/world/damagesource/DamageSource;IZ)V +MD: net/minecraft/world/entity/monster/Zombie/m_7515_ ()Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/monster/Zombie/getAmbientSound ()Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/monster/Zombie/m_7572_ ()V net/minecraft/world/entity/monster/Zombie/randomizeReinforcementsChance ()V +MD: net/minecraft/world/entity/monster/Zombie/m_7586_ ()Z net/minecraft/world/entity/monster/Zombie/supportsBreakDoorGoal ()Z +MD: net/minecraft/world/entity/monster/Zombie/m_7593_ ()Z net/minecraft/world/entity/monster/Zombie/convertsInWater ()Z +MD: net/minecraft/world/entity/monster/Zombie/m_7595_ ()V net/minecraft/world/entity/monster/Zombie/doUnderWaterConversion ()V +MD: net/minecraft/world/entity/monster/Zombie/m_7660_ ()Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/monster/Zombie/getStepSound ()Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/monster/Zombie/m_7975_ (Lnet/minecraft/world/damagesource/DamageSource;)Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/monster/Zombie/getHurtSound (Lnet/minecraft/world/damagesource/DamageSource;)Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/monster/Zombie/m_8097_ ()V net/minecraft/world/entity/monster/Zombie/defineSynchedData ()V +MD: net/minecraft/world/entity/monster/Zombie/m_8099_ ()V net/minecraft/world/entity/monster/Zombie/registerGoals ()V +MD: net/minecraft/world/entity/monster/Zombie/m_8107_ ()V net/minecraft/world/entity/monster/Zombie/aiStep ()V +MD: net/minecraft/world/entity/monster/Zombie/m_8119_ ()V net/minecraft/world/entity/monster/Zombie/tick ()V +MD: net/minecraft/world/entity/monster/Zombie$ZombieAttackTurtleEggGoal/ (Lnet/minecraft/world/entity/monster/Zombie;Lnet/minecraft/world/entity/PathfinderMob;DI)V net/minecraft/world/entity/monster/Zombie$ZombieAttackTurtleEggGoal/ (Lnet/minecraft/world/entity/monster/Zombie;Lnet/minecraft/world/entity/PathfinderMob;DI)V +MD: net/minecraft/world/entity/monster/Zombie$ZombieAttackTurtleEggGoal/m_5777_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;)V net/minecraft/world/entity/monster/Zombie$ZombieAttackTurtleEggGoal/playBreakSound (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/world/entity/monster/Zombie$ZombieAttackTurtleEggGoal/m_7659_ (Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;)V net/minecraft/world/entity/monster/Zombie$ZombieAttackTurtleEggGoal/playDestroyProgressSound (Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/world/entity/monster/Zombie$ZombieAttackTurtleEggGoal/m_8052_ ()D net/minecraft/world/entity/monster/Zombie$ZombieAttackTurtleEggGoal/acceptedDistance ()D +MD: net/minecraft/world/entity/monster/Zombie$ZombieGroupData/ (ZZ)V net/minecraft/world/entity/monster/Zombie$ZombieGroupData/ (ZZ)V +MD: net/minecraft/world/entity/monster/ZombieVillager/ ()V net/minecraft/world/entity/monster/ZombieVillager/ ()V +MD: net/minecraft/world/entity/monster/ZombieVillager/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V net/minecraft/world/entity/monster/ZombieVillager/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V +MD: net/minecraft/world/entity/monster/ZombieVillager/m_149889_ ()I net/minecraft/world/entity/monster/ZombieVillager/getVillagerXp ()I +MD: net/minecraft/world/entity/monster/ZombieVillager/m_204070_ (Lnet/minecraft/nbt/CompoundTag;Lnet/minecraft/nbt/Tag;)V net/minecraft/world/entity/monster/ZombieVillager/lambda$addAdditionalSaveData$1 (Lnet/minecraft/nbt/CompoundTag;Lnet/minecraft/nbt/Tag;)V +MD: net/minecraft/world/entity/monster/ZombieVillager/m_254805_ (Lnet/minecraft/core/Holder$Reference;)V net/minecraft/world/entity/monster/ZombieVillager/lambda$new$0 (Lnet/minecraft/core/Holder$Reference;)V +MD: net/minecraft/world/entity/monster/ZombieVillager/m_34373_ (I)V net/minecraft/world/entity/monster/ZombieVillager/setVillagerXp (I)V +MD: net/minecraft/world/entity/monster/ZombieVillager/m_34375_ (Lnet/minecraft/world/entity/npc/VillagerData;)V net/minecraft/world/entity/monster/ZombieVillager/setVillagerData (Lnet/minecraft/world/entity/npc/VillagerData;)V +MD: net/minecraft/world/entity/monster/ZombieVillager/m_34383_ (Ljava/util/UUID;I)V net/minecraft/world/entity/monster/ZombieVillager/startConverting (Ljava/util/UUID;I)V +MD: net/minecraft/world/entity/monster/ZombieVillager/m_34391_ (Lnet/minecraft/nbt/Tag;)V net/minecraft/world/entity/monster/ZombieVillager/setGossips (Lnet/minecraft/nbt/Tag;)V +MD: net/minecraft/world/entity/monster/ZombieVillager/m_34398_ (Lnet/minecraft/server/level/ServerLevel;)V net/minecraft/world/entity/monster/ZombieVillager/finishConversion (Lnet/minecraft/server/level/ServerLevel;)V +MD: net/minecraft/world/entity/monster/ZombieVillager/m_34408_ ()Z net/minecraft/world/entity/monster/ZombieVillager/isConverting ()Z +MD: net/minecraft/world/entity/monster/ZombieVillager/m_34410_ ()I net/minecraft/world/entity/monster/ZombieVillager/getConversionProgress ()I +MD: net/minecraft/world/entity/monster/ZombieVillager/m_34411_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/entity/monster/ZombieVillager/setTradeOffers (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/entity/monster/ZombieVillager/m_5592_ ()Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/monster/ZombieVillager/getDeathSound ()Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/monster/ZombieVillager/m_5728_ ()Lnet/minecraft/world/item/ItemStack; net/minecraft/world/entity/monster/ZombieVillager/getSkull ()Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/entity/monster/ZombieVillager/m_6071_ (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;)Lnet/minecraft/world/InteractionResult; net/minecraft/world/entity/monster/ZombieVillager/mobInteract (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;)Lnet/minecraft/world/InteractionResult; +MD: net/minecraft/world/entity/monster/ZombieVillager/m_6100_ ()F net/minecraft/world/entity/monster/ZombieVillager/getVoicePitch ()F +MD: net/minecraft/world/entity/monster/ZombieVillager/m_6518_ (Lnet/minecraft/world/level/ServerLevelAccessor;Lnet/minecraft/world/DifficultyInstance;Lnet/minecraft/world/entity/MobSpawnType;Lnet/minecraft/world/entity/SpawnGroupData;Lnet/minecraft/nbt/CompoundTag;)Lnet/minecraft/world/entity/SpawnGroupData; net/minecraft/world/entity/monster/ZombieVillager/finalizeSpawn (Lnet/minecraft/world/level/ServerLevelAccessor;Lnet/minecraft/world/DifficultyInstance;Lnet/minecraft/world/entity/MobSpawnType;Lnet/minecraft/world/entity/SpawnGroupData;Lnet/minecraft/nbt/CompoundTag;)Lnet/minecraft/world/entity/SpawnGroupData; +MD: net/minecraft/world/entity/monster/ZombieVillager/m_6785_ (D)Z net/minecraft/world/entity/monster/ZombieVillager/removeWhenFarAway (D)Z +MD: net/minecraft/world/entity/monster/ZombieVillager/m_7141_ ()Lnet/minecraft/world/entity/npc/VillagerData; net/minecraft/world/entity/monster/ZombieVillager/getVillagerData ()Lnet/minecraft/world/entity/npc/VillagerData; +MD: net/minecraft/world/entity/monster/ZombieVillager/m_7378_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/entity/monster/ZombieVillager/readAdditionalSaveData (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/entity/monster/ZombieVillager/m_7380_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/entity/monster/ZombieVillager/addAdditionalSaveData (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/entity/monster/ZombieVillager/m_7515_ ()Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/monster/ZombieVillager/getAmbientSound ()Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/monster/ZombieVillager/m_7593_ ()Z net/minecraft/world/entity/monster/ZombieVillager/convertsInWater ()Z +MD: net/minecraft/world/entity/monster/ZombieVillager/m_7660_ ()Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/monster/ZombieVillager/getStepSound ()Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/monster/ZombieVillager/m_7822_ (B)V net/minecraft/world/entity/monster/ZombieVillager/handleEntityEvent (B)V +MD: net/minecraft/world/entity/monster/ZombieVillager/m_7975_ (Lnet/minecraft/world/damagesource/DamageSource;)Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/monster/ZombieVillager/getHurtSound (Lnet/minecraft/world/damagesource/DamageSource;)Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/monster/ZombieVillager/m_8097_ ()V net/minecraft/world/entity/monster/ZombieVillager/defineSynchedData ()V +MD: net/minecraft/world/entity/monster/ZombieVillager/m_8119_ ()V net/minecraft/world/entity/monster/ZombieVillager/tick ()V +MD: net/minecraft/world/entity/monster/ZombifiedPiglin/ ()V net/minecraft/world/entity/monster/ZombifiedPiglin/ ()V +MD: net/minecraft/world/entity/monster/ZombifiedPiglin/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V net/minecraft/world/entity/monster/ZombifiedPiglin/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V +MD: net/minecraft/world/entity/monster/ZombifiedPiglin/m_213945_ (Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/DifficultyInstance;)V net/minecraft/world/entity/monster/ZombifiedPiglin/populateDefaultEquipmentSlots (Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/DifficultyInstance;)V +MD: net/minecraft/world/entity/monster/ZombifiedPiglin/m_219173_ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/world/entity/MobSpawnType;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)Z net/minecraft/world/entity/monster/ZombifiedPiglin/checkZombifiedPiglinSpawnRules (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/world/entity/MobSpawnType;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)Z +MD: net/minecraft/world/entity/monster/ZombifiedPiglin/m_289151_ (Lnet/minecraft/world/entity/monster/ZombifiedPiglin;)Z net/minecraft/world/entity/monster/ZombifiedPiglin/lambda$alertOthers$2 (Lnet/minecraft/world/entity/monster/ZombifiedPiglin;)Z +MD: net/minecraft/world/entity/monster/ZombifiedPiglin/m_289152_ (Lnet/minecraft/world/entity/monster/ZombifiedPiglin;)V net/minecraft/world/entity/monster/ZombifiedPiglin/lambda$alertOthers$3 (Lnet/minecraft/world/entity/monster/ZombifiedPiglin;)V +MD: net/minecraft/world/entity/monster/ZombifiedPiglin/m_289153_ (Lnet/minecraft/world/entity/monster/ZombifiedPiglin;)Z net/minecraft/world/entity/monster/ZombifiedPiglin/lambda$alertOthers$1 (Lnet/minecraft/world/entity/monster/ZombifiedPiglin;)Z +MD: net/minecraft/world/entity/monster/ZombifiedPiglin/m_34462_ (Lnet/minecraft/world/entity/monster/ZombifiedPiglin;)Z net/minecraft/world/entity/monster/ZombifiedPiglin/lambda$alertOthers$0 (Lnet/minecraft/world/entity/monster/ZombifiedPiglin;)Z +MD: net/minecraft/world/entity/monster/ZombifiedPiglin/m_34470_ ()Lnet/minecraft/world/entity/ai/attributes/AttributeSupplier$Builder; net/minecraft/world/entity/monster/ZombifiedPiglin/createAttributes ()Lnet/minecraft/world/entity/ai/attributes/AttributeSupplier$Builder; +MD: net/minecraft/world/entity/monster/ZombifiedPiglin/m_34471_ ()V net/minecraft/world/entity/monster/ZombifiedPiglin/maybePlayFirstAngerSound ()V +MD: net/minecraft/world/entity/monster/ZombifiedPiglin/m_34472_ ()V net/minecraft/world/entity/monster/ZombifiedPiglin/maybeAlertOthers ()V +MD: net/minecraft/world/entity/monster/ZombifiedPiglin/m_34473_ ()V net/minecraft/world/entity/monster/ZombifiedPiglin/alertOthers ()V +MD: net/minecraft/world/entity/monster/ZombifiedPiglin/m_34476_ ()V net/minecraft/world/entity/monster/ZombifiedPiglin/playAngerSound ()V +MD: net/minecraft/world/entity/monster/ZombifiedPiglin/m_5592_ ()Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/monster/ZombifiedPiglin/getDeathSound ()Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/monster/ZombifiedPiglin/m_5728_ ()Lnet/minecraft/world/item/ItemStack; net/minecraft/world/entity/monster/ZombifiedPiglin/getSkull ()Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/entity/monster/ZombifiedPiglin/m_6049_ ()D net/minecraft/world/entity/monster/ZombifiedPiglin/getMyRidingOffset ()D +MD: net/minecraft/world/entity/monster/ZombifiedPiglin/m_6120_ ()Ljava/util/UUID; net/minecraft/world/entity/monster/ZombifiedPiglin/getPersistentAngerTarget ()Ljava/util/UUID; +MD: net/minecraft/world/entity/monster/ZombifiedPiglin/m_6431_ (Lnet/minecraft/world/entity/Pose;Lnet/minecraft/world/entity/EntityDimensions;)F net/minecraft/world/entity/monster/ZombifiedPiglin/getStandingEyeHeight (Lnet/minecraft/world/entity/Pose;Lnet/minecraft/world/entity/EntityDimensions;)F +MD: net/minecraft/world/entity/monster/ZombifiedPiglin/m_6710_ (Lnet/minecraft/world/entity/LivingEntity;)V net/minecraft/world/entity/monster/ZombifiedPiglin/setTarget (Lnet/minecraft/world/entity/LivingEntity;)V +MD: net/minecraft/world/entity/monster/ZombifiedPiglin/m_6784_ ()I net/minecraft/world/entity/monster/ZombifiedPiglin/getRemainingPersistentAngerTime ()I +MD: net/minecraft/world/entity/monster/ZombifiedPiglin/m_6825_ ()V net/minecraft/world/entity/monster/ZombifiedPiglin/startPersistentAngerTimer ()V +MD: net/minecraft/world/entity/monster/ZombifiedPiglin/m_6878_ ()V net/minecraft/world/entity/monster/ZombifiedPiglin/addBehaviourGoals ()V +MD: net/minecraft/world/entity/monster/ZombifiedPiglin/m_6914_ (Lnet/minecraft/world/level/LevelReader;)Z net/minecraft/world/entity/monster/ZombifiedPiglin/checkSpawnObstruction (Lnet/minecraft/world/level/LevelReader;)Z +MD: net/minecraft/world/entity/monster/ZombifiedPiglin/m_6925_ (Ljava/util/UUID;)V net/minecraft/world/entity/monster/ZombifiedPiglin/setPersistentAngerTarget (Ljava/util/UUID;)V +MD: net/minecraft/world/entity/monster/ZombifiedPiglin/m_6935_ (Lnet/minecraft/world/entity/player/Player;)Z net/minecraft/world/entity/monster/ZombifiedPiglin/isPreventingPlayerRest (Lnet/minecraft/world/entity/player/Player;)Z +MD: net/minecraft/world/entity/monster/ZombifiedPiglin/m_7243_ (Lnet/minecraft/world/item/ItemStack;)Z net/minecraft/world/entity/monster/ZombifiedPiglin/wantsToPickUp (Lnet/minecraft/world/item/ItemStack;)Z +MD: net/minecraft/world/entity/monster/ZombifiedPiglin/m_7378_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/entity/monster/ZombifiedPiglin/readAdditionalSaveData (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/entity/monster/ZombifiedPiglin/m_7380_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/entity/monster/ZombifiedPiglin/addAdditionalSaveData (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/entity/monster/ZombifiedPiglin/m_7515_ ()Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/monster/ZombifiedPiglin/getAmbientSound ()Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/monster/ZombifiedPiglin/m_7572_ ()V net/minecraft/world/entity/monster/ZombifiedPiglin/randomizeReinforcementsChance ()V +MD: net/minecraft/world/entity/monster/ZombifiedPiglin/m_7593_ ()Z net/minecraft/world/entity/monster/ZombifiedPiglin/convertsInWater ()Z +MD: net/minecraft/world/entity/monster/ZombifiedPiglin/m_7870_ (I)V net/minecraft/world/entity/monster/ZombifiedPiglin/setRemainingPersistentAngerTime (I)V +MD: net/minecraft/world/entity/monster/ZombifiedPiglin/m_7975_ (Lnet/minecraft/world/damagesource/DamageSource;)Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/monster/ZombifiedPiglin/getHurtSound (Lnet/minecraft/world/damagesource/DamageSource;)Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/monster/ZombifiedPiglin/m_8024_ ()V net/minecraft/world/entity/monster/ZombifiedPiglin/customServerAiStep ()V +MD: net/minecraft/world/entity/monster/hoglin/Hoglin/ ()V net/minecraft/world/entity/monster/hoglin/Hoglin/ ()V +MD: net/minecraft/world/entity/monster/hoglin/Hoglin/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V net/minecraft/world/entity/monster/hoglin/Hoglin/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V +MD: net/minecraft/world/entity/monster/hoglin/Hoglin/m_142606_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/AgeableMob;)Lnet/minecraft/world/entity/AgeableMob; net/minecraft/world/entity/monster/hoglin/Hoglin/getBreedOffspring (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/AgeableMob;)Lnet/minecraft/world/entity/AgeableMob; +MD: net/minecraft/world/entity/monster/hoglin/Hoglin/m_213860_ ()I net/minecraft/world/entity/monster/hoglin/Hoglin/getExperienceReward ()I +MD: net/minecraft/world/entity/monster/hoglin/Hoglin/m_219179_ (Lnet/minecraft/sounds/SoundEvent;)V net/minecraft/world/entity/monster/hoglin/Hoglin/playSoundEvent (Lnet/minecraft/sounds/SoundEvent;)V +MD: net/minecraft/world/entity/monster/hoglin/Hoglin/m_219181_ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/world/entity/MobSpawnType;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)Z net/minecraft/world/entity/monster/hoglin/Hoglin/checkHoglinSpawnRules (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/world/entity/MobSpawnType;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)Z +MD: net/minecraft/world/entity/monster/hoglin/Hoglin/m_30232_ ()V net/minecraft/world/entity/monster/hoglin/Hoglin/ageBoundaryReached ()V +MD: net/minecraft/world/entity/monster/hoglin/Hoglin/m_34531_ (Lnet/minecraft/server/level/ServerLevel;)V net/minecraft/world/entity/monster/hoglin/Hoglin/finishConversion (Lnet/minecraft/server/level/ServerLevel;)V +MD: net/minecraft/world/entity/monster/hoglin/Hoglin/m_34551_ ()Lnet/minecraft/world/entity/ai/attributes/AttributeSupplier$Builder; net/minecraft/world/entity/monster/hoglin/Hoglin/createAttributes ()Lnet/minecraft/world/entity/ai/attributes/AttributeSupplier$Builder; +MD: net/minecraft/world/entity/monster/hoglin/Hoglin/m_34552_ ()Z net/minecraft/world/entity/monster/hoglin/Hoglin/isAdult ()Z +MD: net/minecraft/world/entity/monster/hoglin/Hoglin/m_34554_ ()Z net/minecraft/world/entity/monster/hoglin/Hoglin/isConverting ()Z +MD: net/minecraft/world/entity/monster/hoglin/Hoglin/m_34555_ ()Z net/minecraft/world/entity/monster/hoglin/Hoglin/canBeHunted ()Z +MD: net/minecraft/world/entity/monster/hoglin/Hoglin/m_34557_ ()Z net/minecraft/world/entity/monster/hoglin/Hoglin/isImmuneToZombification ()Z +MD: net/minecraft/world/entity/monster/hoglin/Hoglin/m_34564_ (Z)V net/minecraft/world/entity/monster/hoglin/Hoglin/setImmuneToZombification (Z)V +MD: net/minecraft/world/entity/monster/hoglin/Hoglin/m_34566_ (Z)V net/minecraft/world/entity/monster/hoglin/Hoglin/setCannotBeHunted (Z)V +MD: net/minecraft/world/entity/monster/hoglin/Hoglin/m_5490_ ()Lnet/minecraft/world/entity/ai/Brain$Provider; net/minecraft/world/entity/monster/hoglin/Hoglin/brainProvider ()Lnet/minecraft/world/entity/ai/Brain$Provider; +MD: net/minecraft/world/entity/monster/hoglin/Hoglin/m_5501_ ()Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/monster/hoglin/Hoglin/getSwimSound ()Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/monster/hoglin/Hoglin/m_5509_ ()Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/monster/hoglin/Hoglin/getSwimSplashSound ()Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/monster/hoglin/Hoglin/m_5592_ ()Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/monster/hoglin/Hoglin/getDeathSound ()Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/monster/hoglin/Hoglin/m_5610_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/LevelReader;)F net/minecraft/world/entity/monster/hoglin/Hoglin/getWalkTargetValue (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/LevelReader;)F +MD: net/minecraft/world/entity/monster/hoglin/Hoglin/m_5720_ ()Lnet/minecraft/sounds/SoundSource; net/minecraft/world/entity/monster/hoglin/Hoglin/getSoundSource ()Lnet/minecraft/sounds/SoundSource; +MD: net/minecraft/world/entity/monster/hoglin/Hoglin/m_5957_ ()Z net/minecraft/world/entity/monster/hoglin/Hoglin/canFallInLove ()Z +MD: net/minecraft/world/entity/monster/hoglin/Hoglin/m_6048_ ()D net/minecraft/world/entity/monster/hoglin/Hoglin/getPassengersRidingOffset ()D +MD: net/minecraft/world/entity/monster/hoglin/Hoglin/m_6071_ (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;)Lnet/minecraft/world/InteractionResult; net/minecraft/world/entity/monster/hoglin/Hoglin/mobInteract (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;)Lnet/minecraft/world/InteractionResult; +MD: net/minecraft/world/entity/monster/hoglin/Hoglin/m_6149_ ()Z net/minecraft/world/entity/monster/hoglin/Hoglin/shouldDropExperience ()Z +MD: net/minecraft/world/entity/monster/hoglin/Hoglin/m_6274_ ()Lnet/minecraft/world/entity/ai/Brain; net/minecraft/world/entity/monster/hoglin/Hoglin/getBrain ()Lnet/minecraft/world/entity/ai/Brain; +MD: net/minecraft/world/entity/monster/hoglin/Hoglin/m_6469_ (Lnet/minecraft/world/damagesource/DamageSource;F)Z net/minecraft/world/entity/monster/hoglin/Hoglin/hurt (Lnet/minecraft/world/damagesource/DamageSource;F)Z +MD: net/minecraft/world/entity/monster/hoglin/Hoglin/m_6518_ (Lnet/minecraft/world/level/ServerLevelAccessor;Lnet/minecraft/world/DifficultyInstance;Lnet/minecraft/world/entity/MobSpawnType;Lnet/minecraft/world/entity/SpawnGroupData;Lnet/minecraft/nbt/CompoundTag;)Lnet/minecraft/world/entity/SpawnGroupData; net/minecraft/world/entity/monster/hoglin/Hoglin/finalizeSpawn (Lnet/minecraft/world/level/ServerLevelAccessor;Lnet/minecraft/world/DifficultyInstance;Lnet/minecraft/world/entity/MobSpawnType;Lnet/minecraft/world/entity/SpawnGroupData;Lnet/minecraft/nbt/CompoundTag;)Lnet/minecraft/world/entity/SpawnGroupData; +MD: net/minecraft/world/entity/monster/hoglin/Hoglin/m_6573_ (Lnet/minecraft/world/entity/player/Player;)Z net/minecraft/world/entity/monster/hoglin/Hoglin/canBeLeashed (Lnet/minecraft/world/entity/player/Player;)Z +MD: net/minecraft/world/entity/monster/hoglin/Hoglin/m_6731_ (Lnet/minecraft/world/entity/LivingEntity;)V net/minecraft/world/entity/monster/hoglin/Hoglin/blockedByShield (Lnet/minecraft/world/entity/LivingEntity;)V +MD: net/minecraft/world/entity/monster/hoglin/Hoglin/m_6785_ (D)Z net/minecraft/world/entity/monster/hoglin/Hoglin/removeWhenFarAway (D)Z +MD: net/minecraft/world/entity/monster/hoglin/Hoglin/m_6898_ (Lnet/minecraft/world/item/ItemStack;)Z net/minecraft/world/entity/monster/hoglin/Hoglin/isFood (Lnet/minecraft/world/item/ItemStack;)Z +MD: net/minecraft/world/entity/monster/hoglin/Hoglin/m_7327_ (Lnet/minecraft/world/entity/Entity;)Z net/minecraft/world/entity/monster/hoglin/Hoglin/doHurtTarget (Lnet/minecraft/world/entity/Entity;)Z +MD: net/minecraft/world/entity/monster/hoglin/Hoglin/m_7355_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V net/minecraft/world/entity/monster/hoglin/Hoglin/playStepSound (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V +MD: net/minecraft/world/entity/monster/hoglin/Hoglin/m_7378_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/entity/monster/hoglin/Hoglin/readAdditionalSaveData (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/entity/monster/hoglin/Hoglin/m_7380_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/entity/monster/hoglin/Hoglin/addAdditionalSaveData (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/entity/monster/hoglin/Hoglin/m_7515_ ()Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/monster/hoglin/Hoglin/getAmbientSound ()Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/monster/hoglin/Hoglin/m_7575_ ()I net/minecraft/world/entity/monster/hoglin/Hoglin/getAttackAnimationRemainingTicks ()I +MD: net/minecraft/world/entity/monster/hoglin/Hoglin/m_7822_ (B)V net/minecraft/world/entity/monster/hoglin/Hoglin/handleEntityEvent (B)V +MD: net/minecraft/world/entity/monster/hoglin/Hoglin/m_7975_ (Lnet/minecraft/world/damagesource/DamageSource;)Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/monster/hoglin/Hoglin/getHurtSound (Lnet/minecraft/world/damagesource/DamageSource;)Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/monster/hoglin/Hoglin/m_8024_ ()V net/minecraft/world/entity/monster/hoglin/Hoglin/customServerAiStep ()V +MD: net/minecraft/world/entity/monster/hoglin/Hoglin/m_8025_ ()V net/minecraft/world/entity/monster/hoglin/Hoglin/sendDebugPackets ()V +MD: net/minecraft/world/entity/monster/hoglin/Hoglin/m_8075_ (Lcom/mojang/serialization/Dynamic;)Lnet/minecraft/world/entity/ai/Brain; net/minecraft/world/entity/monster/hoglin/Hoglin/makeBrain (Lcom/mojang/serialization/Dynamic;)Lnet/minecraft/world/entity/ai/Brain; +MD: net/minecraft/world/entity/monster/hoglin/Hoglin/m_8097_ ()V net/minecraft/world/entity/monster/hoglin/Hoglin/defineSynchedData ()V +MD: net/minecraft/world/entity/monster/hoglin/Hoglin/m_8107_ ()V net/minecraft/world/entity/monster/hoglin/Hoglin/aiStep ()V +MD: net/minecraft/world/entity/monster/hoglin/HoglinAi/ ()V net/minecraft/world/entity/monster/hoglin/HoglinAi/ ()V +MD: net/minecraft/world/entity/monster/hoglin/HoglinAi/ ()V net/minecraft/world/entity/monster/hoglin/HoglinAi/ ()V +MD: net/minecraft/world/entity/monster/hoglin/HoglinAi/m_34571_ ()Lnet/minecraft/world/entity/ai/behavior/RunOne; net/minecraft/world/entity/monster/hoglin/HoglinAi/createIdleMovementBehaviors ()Lnet/minecraft/world/entity/ai/behavior/RunOne; +MD: net/minecraft/world/entity/monster/hoglin/HoglinAi/m_34572_ (Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/entity/monster/hoglin/Hoglin;)V net/minecraft/world/entity/monster/hoglin/HoglinAi/lambda$broadcastAttackTarget$1 (Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/entity/monster/hoglin/Hoglin;)V +MD: net/minecraft/world/entity/monster/hoglin/HoglinAi/m_34575_ (Lnet/minecraft/world/entity/ai/Brain;)Lnet/minecraft/world/entity/ai/Brain; net/minecraft/world/entity/monster/hoglin/HoglinAi/makeBrain (Lnet/minecraft/world/entity/ai/Brain;)Lnet/minecraft/world/entity/ai/Brain; +MD: net/minecraft/world/entity/monster/hoglin/HoglinAi/m_34577_ (Lnet/minecraft/world/entity/monster/hoglin/Hoglin;)V net/minecraft/world/entity/monster/hoglin/HoglinAi/updateActivity (Lnet/minecraft/world/entity/monster/hoglin/Hoglin;)V +MD: net/minecraft/world/entity/monster/hoglin/HoglinAi/m_34579_ (Lnet/minecraft/world/entity/monster/hoglin/Hoglin;Lnet/minecraft/world/entity/LivingEntity;)V net/minecraft/world/entity/monster/hoglin/HoglinAi/onHitTarget (Lnet/minecraft/world/entity/monster/hoglin/Hoglin;Lnet/minecraft/world/entity/LivingEntity;)V +MD: net/minecraft/world/entity/monster/hoglin/HoglinAi/m_34582_ (Lnet/minecraft/world/entity/monster/hoglin/Hoglin;Lnet/minecraft/world/entity/schedule/Activity;)Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/monster/hoglin/HoglinAi/getSoundForActivity (Lnet/minecraft/world/entity/monster/hoglin/Hoglin;Lnet/minecraft/world/entity/schedule/Activity;)Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/monster/hoglin/HoglinAi/m_34585_ (Lnet/minecraft/world/entity/monster/hoglin/Hoglin;Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/entity/monster/hoglin/HoglinAi/isPosNearNearestRepellent (Lnet/minecraft/world/entity/monster/hoglin/Hoglin;Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/entity/monster/hoglin/HoglinAi/m_34588_ (Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/entity/monster/hoglin/Hoglin;)V net/minecraft/world/entity/monster/hoglin/HoglinAi/lambda$broadcastRetreat$0 (Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/entity/monster/hoglin/Hoglin;)V +MD: net/minecraft/world/entity/monster/hoglin/HoglinAi/m_34591_ (Lnet/minecraft/world/entity/ai/Brain;)V net/minecraft/world/entity/monster/hoglin/HoglinAi/initCoreActivity (Lnet/minecraft/world/entity/ai/Brain;)V +MD: net/minecraft/world/entity/monster/hoglin/HoglinAi/m_34593_ (Lnet/minecraft/world/entity/monster/hoglin/Hoglin;)Ljava/util/Optional; net/minecraft/world/entity/monster/hoglin/HoglinAi/getSoundForCurrentActivity (Lnet/minecraft/world/entity/monster/hoglin/Hoglin;)Ljava/util/Optional; +MD: net/minecraft/world/entity/monster/hoglin/HoglinAi/m_34595_ (Lnet/minecraft/world/entity/monster/hoglin/Hoglin;Lnet/minecraft/world/entity/LivingEntity;)V net/minecraft/world/entity/monster/hoglin/HoglinAi/wasHurtBy (Lnet/minecraft/world/entity/monster/hoglin/Hoglin;Lnet/minecraft/world/entity/LivingEntity;)V +MD: net/minecraft/world/entity/monster/hoglin/HoglinAi/m_34598_ (Lnet/minecraft/world/entity/monster/hoglin/Hoglin;Lnet/minecraft/world/entity/schedule/Activity;)Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/monster/hoglin/HoglinAi/lambda$getSoundForCurrentActivity$2 (Lnet/minecraft/world/entity/monster/hoglin/Hoglin;Lnet/minecraft/world/entity/schedule/Activity;)Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/monster/hoglin/HoglinAi/m_34601_ (Lnet/minecraft/world/entity/ai/Brain;)V net/minecraft/world/entity/monster/hoglin/HoglinAi/initIdleActivity (Lnet/minecraft/world/entity/ai/Brain;)V +MD: net/minecraft/world/entity/monster/hoglin/HoglinAi/m_34603_ (Lnet/minecraft/world/entity/monster/hoglin/Hoglin;)Z net/minecraft/world/entity/monster/hoglin/HoglinAi/isPacified (Lnet/minecraft/world/entity/monster/hoglin/Hoglin;)Z +MD: net/minecraft/world/entity/monster/hoglin/HoglinAi/m_34605_ (Lnet/minecraft/world/entity/monster/hoglin/Hoglin;Lnet/minecraft/world/entity/LivingEntity;)V net/minecraft/world/entity/monster/hoglin/HoglinAi/broadcastRetreat (Lnet/minecraft/world/entity/monster/hoglin/Hoglin;Lnet/minecraft/world/entity/LivingEntity;)V +MD: net/minecraft/world/entity/monster/hoglin/HoglinAi/m_34608_ (Lnet/minecraft/world/entity/ai/Brain;)V net/minecraft/world/entity/monster/hoglin/HoglinAi/initFightActivity (Lnet/minecraft/world/entity/ai/Brain;)V +MD: net/minecraft/world/entity/monster/hoglin/HoglinAi/m_34610_ (Lnet/minecraft/world/entity/monster/hoglin/Hoglin;)Ljava/util/Optional; net/minecraft/world/entity/monster/hoglin/HoglinAi/findNearestValidAttackTarget (Lnet/minecraft/world/entity/monster/hoglin/Hoglin;)Ljava/util/Optional; +MD: net/minecraft/world/entity/monster/hoglin/HoglinAi/m_34612_ (Lnet/minecraft/world/entity/monster/hoglin/Hoglin;Lnet/minecraft/world/entity/LivingEntity;)V net/minecraft/world/entity/monster/hoglin/HoglinAi/retreatFromNearestTarget (Lnet/minecraft/world/entity/monster/hoglin/Hoglin;Lnet/minecraft/world/entity/LivingEntity;)V +MD: net/minecraft/world/entity/monster/hoglin/HoglinAi/m_34615_ (Lnet/minecraft/world/entity/ai/Brain;)V net/minecraft/world/entity/monster/hoglin/HoglinAi/initRetreatActivity (Lnet/minecraft/world/entity/ai/Brain;)V +MD: net/minecraft/world/entity/monster/hoglin/HoglinAi/m_34617_ (Lnet/minecraft/world/entity/monster/hoglin/Hoglin;)Z net/minecraft/world/entity/monster/hoglin/HoglinAi/wantsToStopFleeing (Lnet/minecraft/world/entity/monster/hoglin/Hoglin;)Z +MD: net/minecraft/world/entity/monster/hoglin/HoglinAi/m_34619_ (Lnet/minecraft/world/entity/monster/hoglin/Hoglin;Lnet/minecraft/world/entity/LivingEntity;)V net/minecraft/world/entity/monster/hoglin/HoglinAi/setAvoidTarget (Lnet/minecraft/world/entity/monster/hoglin/Hoglin;Lnet/minecraft/world/entity/LivingEntity;)V +MD: net/minecraft/world/entity/monster/hoglin/HoglinAi/m_34622_ (Lnet/minecraft/world/entity/monster/hoglin/Hoglin;)Z net/minecraft/world/entity/monster/hoglin/HoglinAi/piglinsOutnumberHoglins (Lnet/minecraft/world/entity/monster/hoglin/Hoglin;)Z +MD: net/minecraft/world/entity/monster/hoglin/HoglinAi/m_34624_ (Lnet/minecraft/world/entity/monster/hoglin/Hoglin;Lnet/minecraft/world/entity/LivingEntity;)V net/minecraft/world/entity/monster/hoglin/HoglinAi/maybeRetaliate (Lnet/minecraft/world/entity/monster/hoglin/Hoglin;Lnet/minecraft/world/entity/LivingEntity;)V +MD: net/minecraft/world/entity/monster/hoglin/HoglinAi/m_34627_ (Lnet/minecraft/world/entity/monster/hoglin/Hoglin;)Ljava/util/List; net/minecraft/world/entity/monster/hoglin/HoglinAi/getVisibleAdultHoglins (Lnet/minecraft/world/entity/monster/hoglin/Hoglin;)Ljava/util/List; +MD: net/minecraft/world/entity/monster/hoglin/HoglinAi/m_34629_ (Lnet/minecraft/world/entity/monster/hoglin/Hoglin;Lnet/minecraft/world/entity/LivingEntity;)V net/minecraft/world/entity/monster/hoglin/HoglinAi/setAttackTarget (Lnet/minecraft/world/entity/monster/hoglin/Hoglin;Lnet/minecraft/world/entity/LivingEntity;)V +MD: net/minecraft/world/entity/monster/hoglin/HoglinAi/m_34632_ (Lnet/minecraft/world/entity/monster/hoglin/Hoglin;)Z net/minecraft/world/entity/monster/hoglin/HoglinAi/isNearRepellent (Lnet/minecraft/world/entity/monster/hoglin/Hoglin;)Z +MD: net/minecraft/world/entity/monster/hoglin/HoglinAi/m_34634_ (Lnet/minecraft/world/entity/monster/hoglin/Hoglin;Lnet/minecraft/world/entity/LivingEntity;)V net/minecraft/world/entity/monster/hoglin/HoglinAi/broadcastAttackTarget (Lnet/minecraft/world/entity/monster/hoglin/Hoglin;Lnet/minecraft/world/entity/LivingEntity;)V +MD: net/minecraft/world/entity/monster/hoglin/HoglinAi/m_34637_ (Lnet/minecraft/world/entity/monster/hoglin/Hoglin;)Z net/minecraft/world/entity/monster/hoglin/HoglinAi/isBreeding (Lnet/minecraft/world/entity/monster/hoglin/Hoglin;)Z +MD: net/minecraft/world/entity/monster/hoglin/HoglinAi/m_34639_ (Lnet/minecraft/world/entity/monster/hoglin/Hoglin;Lnet/minecraft/world/entity/LivingEntity;)V net/minecraft/world/entity/monster/hoglin/HoglinAi/setAttackTargetIfCloserThanCurrent (Lnet/minecraft/world/entity/monster/hoglin/Hoglin;Lnet/minecraft/world/entity/LivingEntity;)V +MD: net/minecraft/world/entity/monster/hoglin/HoglinBase/m_34642_ (Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/entity/LivingEntity;)Z net/minecraft/world/entity/monster/hoglin/HoglinBase/hurtAndThrowTarget (Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/entity/LivingEntity;)Z +MD: net/minecraft/world/entity/monster/hoglin/HoglinBase/m_34645_ (Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/entity/LivingEntity;)V net/minecraft/world/entity/monster/hoglin/HoglinBase/throwTarget (Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/entity/LivingEntity;)V +MD: net/minecraft/world/entity/monster/hoglin/HoglinBase/m_7575_ ()I net/minecraft/world/entity/monster/hoglin/HoglinBase/getAttackAnimationRemainingTicks ()I +MD: net/minecraft/world/entity/monster/piglin/AbstractPiglin/ ()V net/minecraft/world/entity/monster/piglin/AbstractPiglin/ ()V +MD: net/minecraft/world/entity/monster/piglin/AbstractPiglin/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V net/minecraft/world/entity/monster/piglin/AbstractPiglin/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V +MD: net/minecraft/world/entity/monster/piglin/AbstractPiglin/m_34665_ ()Z net/minecraft/world/entity/monster/piglin/AbstractPiglin/isImmuneToZombification ()Z +MD: net/minecraft/world/entity/monster/piglin/AbstractPiglin/m_34666_ ()Z net/minecraft/world/entity/monster/piglin/AbstractPiglin/isConverting ()Z +MD: net/minecraft/world/entity/monster/piglin/AbstractPiglin/m_34667_ ()Z net/minecraft/world/entity/monster/piglin/AbstractPiglin/isAdult ()Z +MD: net/minecraft/world/entity/monster/piglin/AbstractPiglin/m_34668_ ()Z net/minecraft/world/entity/monster/piglin/AbstractPiglin/isHoldingMeleeWeapon ()Z +MD: net/minecraft/world/entity/monster/piglin/AbstractPiglin/m_34669_ ()V net/minecraft/world/entity/monster/piglin/AbstractPiglin/applyOpenDoorsAbility ()V +MD: net/minecraft/world/entity/monster/piglin/AbstractPiglin/m_34670_ (Z)V net/minecraft/world/entity/monster/piglin/AbstractPiglin/setImmuneToZombification (Z)V +MD: net/minecraft/world/entity/monster/piglin/AbstractPiglin/m_5448_ ()Lnet/minecraft/world/entity/LivingEntity; net/minecraft/world/entity/monster/piglin/AbstractPiglin/getTarget ()Lnet/minecraft/world/entity/LivingEntity; +MD: net/minecraft/world/entity/monster/piglin/AbstractPiglin/m_6049_ ()D net/minecraft/world/entity/monster/piglin/AbstractPiglin/getMyRidingOffset ()D +MD: net/minecraft/world/entity/monster/piglin/AbstractPiglin/m_6389_ ()Lnet/minecraft/world/entity/monster/piglin/PiglinArmPose; net/minecraft/world/entity/monster/piglin/AbstractPiglin/getArmPose ()Lnet/minecraft/world/entity/monster/piglin/PiglinArmPose; +MD: net/minecraft/world/entity/monster/piglin/AbstractPiglin/m_6431_ (Lnet/minecraft/world/entity/Pose;Lnet/minecraft/world/entity/EntityDimensions;)F net/minecraft/world/entity/monster/piglin/AbstractPiglin/getStandingEyeHeight (Lnet/minecraft/world/entity/Pose;Lnet/minecraft/world/entity/EntityDimensions;)F +MD: net/minecraft/world/entity/monster/piglin/AbstractPiglin/m_7121_ ()Z net/minecraft/world/entity/monster/piglin/AbstractPiglin/canHunt ()Z +MD: net/minecraft/world/entity/monster/piglin/AbstractPiglin/m_7378_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/entity/monster/piglin/AbstractPiglin/readAdditionalSaveData (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/entity/monster/piglin/AbstractPiglin/m_7380_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/entity/monster/piglin/AbstractPiglin/addAdditionalSaveData (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/entity/monster/piglin/AbstractPiglin/m_7580_ ()V net/minecraft/world/entity/monster/piglin/AbstractPiglin/playConvertedSound ()V +MD: net/minecraft/world/entity/monster/piglin/AbstractPiglin/m_8024_ ()V net/minecraft/world/entity/monster/piglin/AbstractPiglin/customServerAiStep ()V +MD: net/minecraft/world/entity/monster/piglin/AbstractPiglin/m_8025_ ()V net/minecraft/world/entity/monster/piglin/AbstractPiglin/sendDebugPackets ()V +MD: net/minecraft/world/entity/monster/piglin/AbstractPiglin/m_8032_ ()V net/minecraft/world/entity/monster/piglin/AbstractPiglin/playAmbientSound ()V +MD: net/minecraft/world/entity/monster/piglin/AbstractPiglin/m_8063_ (Lnet/minecraft/server/level/ServerLevel;)V net/minecraft/world/entity/monster/piglin/AbstractPiglin/finishConversion (Lnet/minecraft/server/level/ServerLevel;)V +MD: net/minecraft/world/entity/monster/piglin/AbstractPiglin/m_8097_ ()V net/minecraft/world/entity/monster/piglin/AbstractPiglin/defineSynchedData ()V +MD: net/minecraft/world/entity/monster/piglin/Piglin/ ()V net/minecraft/world/entity/monster/piglin/Piglin/ ()V +MD: net/minecraft/world/entity/monster/piglin/Piglin/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V net/minecraft/world/entity/monster/piglin/Piglin/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V +MD: net/minecraft/world/entity/monster/piglin/Piglin/m_213860_ ()I net/minecraft/world/entity/monster/piglin/Piglin/getExperienceReward ()I +MD: net/minecraft/world/entity/monster/piglin/Piglin/m_213945_ (Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/DifficultyInstance;)V net/minecraft/world/entity/monster/piglin/Piglin/populateDefaultEquipmentSlots (Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/DifficultyInstance;)V +MD: net/minecraft/world/entity/monster/piglin/Piglin/m_219191_ (Lnet/minecraft/world/entity/EquipmentSlot;Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/util/RandomSource;)V net/minecraft/world/entity/monster/piglin/Piglin/maybeWearArmor (Lnet/minecraft/world/entity/EquipmentSlot;Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/util/RandomSource;)V +MD: net/minecraft/world/entity/monster/piglin/Piglin/m_219195_ (Lnet/minecraft/sounds/SoundEvent;)V net/minecraft/world/entity/monster/piglin/Piglin/playSoundEvent (Lnet/minecraft/sounds/SoundEvent;)V +MD: net/minecraft/world/entity/monster/piglin/Piglin/m_219197_ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/world/entity/MobSpawnType;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)Z net/minecraft/world/entity/monster/piglin/Piglin/checkPiglinSpawnRules (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/world/entity/MobSpawnType;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)Z +MD: net/minecraft/world/entity/monster/piglin/Piglin/m_34730_ (Lnet/minecraft/world/entity/Entity;I)Lnet/minecraft/world/entity/Entity; net/minecraft/world/entity/monster/piglin/Piglin/getTopPassenger (Lnet/minecraft/world/entity/Entity;I)Lnet/minecraft/world/entity/Entity; +MD: net/minecraft/world/entity/monster/piglin/Piglin/m_34770_ ()Lnet/minecraft/world/entity/ai/attributes/AttributeSupplier$Builder; net/minecraft/world/entity/monster/piglin/Piglin/createAttributes ()Lnet/minecraft/world/entity/ai/attributes/AttributeSupplier$Builder; +MD: net/minecraft/world/entity/monster/piglin/Piglin/m_34771_ ()Z net/minecraft/world/entity/monster/piglin/Piglin/isDancing ()Z +MD: net/minecraft/world/entity/monster/piglin/Piglin/m_34772_ ()Lnet/minecraft/world/item/ItemStack; net/minecraft/world/entity/monster/piglin/Piglin/createSpawnWeapon ()Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/entity/monster/piglin/Piglin/m_34773_ ()Z net/minecraft/world/entity/monster/piglin/Piglin/isChargingCrossbow ()Z +MD: net/minecraft/world/entity/monster/piglin/Piglin/m_34778_ (Lnet/minecraft/world/item/ItemStack;)Lnet/minecraft/world/item/ItemStack; net/minecraft/world/entity/monster/piglin/Piglin/addToInventory (Lnet/minecraft/world/item/ItemStack;)Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/entity/monster/piglin/Piglin/m_34780_ (Lnet/minecraft/world/item/ItemStack;)Z net/minecraft/world/entity/monster/piglin/Piglin/canAddToInventory (Lnet/minecraft/world/item/ItemStack;)Z +MD: net/minecraft/world/entity/monster/piglin/Piglin/m_34783_ (Lnet/minecraft/world/item/ItemStack;)V net/minecraft/world/entity/monster/piglin/Piglin/holdInMainHand (Lnet/minecraft/world/item/ItemStack;)V +MD: net/minecraft/world/entity/monster/piglin/Piglin/m_34785_ (Lnet/minecraft/world/item/ItemStack;)V net/minecraft/world/entity/monster/piglin/Piglin/holdInOffHand (Lnet/minecraft/world/item/ItemStack;)V +MD: net/minecraft/world/entity/monster/piglin/Piglin/m_34787_ (Lnet/minecraft/world/item/ItemStack;)Z net/minecraft/world/entity/monster/piglin/Piglin/canReplaceCurrentItem (Lnet/minecraft/world/item/ItemStack;)Z +MD: net/minecraft/world/entity/monster/piglin/Piglin/m_34789_ (Z)V net/minecraft/world/entity/monster/piglin/Piglin/setDancing (Z)V +MD: net/minecraft/world/entity/monster/piglin/Piglin/m_34791_ (Z)V net/minecraft/world/entity/monster/piglin/Piglin/setCannotHunt (Z)V +MD: net/minecraft/world/entity/monster/piglin/Piglin/m_35311_ ()Lnet/minecraft/world/SimpleContainer; net/minecraft/world/entity/monster/piglin/Piglin/getInventory ()Lnet/minecraft/world/SimpleContainer; +MD: net/minecraft/world/entity/monster/piglin/Piglin/m_5490_ ()Lnet/minecraft/world/entity/ai/Brain$Provider; net/minecraft/world/entity/monster/piglin/Piglin/brainProvider ()Lnet/minecraft/world/entity/ai/Brain$Provider; +MD: net/minecraft/world/entity/monster/piglin/Piglin/m_5592_ ()Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/monster/piglin/Piglin/getDeathSound ()Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/monster/piglin/Piglin/m_5811_ (Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/entity/projectile/Projectile;F)V net/minecraft/world/entity/monster/piglin/Piglin/shootCrossbowProjectile (Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/entity/projectile/Projectile;F)V +MD: net/minecraft/world/entity/monster/piglin/Piglin/m_5847_ ()V net/minecraft/world/entity/monster/piglin/Piglin/onCrossbowAttackPerformed ()V +MD: net/minecraft/world/entity/monster/piglin/Piglin/m_5886_ (Lnet/minecraft/world/item/ProjectileWeaponItem;)Z net/minecraft/world/entity/monster/piglin/Piglin/canFireProjectileWeapon (Lnet/minecraft/world/item/ProjectileWeaponItem;)Z +MD: net/minecraft/world/entity/monster/piglin/Piglin/m_6048_ ()D net/minecraft/world/entity/monster/piglin/Piglin/getPassengersRidingOffset ()D +MD: net/minecraft/world/entity/monster/piglin/Piglin/m_6071_ (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;)Lnet/minecraft/world/InteractionResult; net/minecraft/world/entity/monster/piglin/Piglin/mobInteract (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;)Lnet/minecraft/world/InteractionResult; +MD: net/minecraft/world/entity/monster/piglin/Piglin/m_6136_ (Z)V net/minecraft/world/entity/monster/piglin/Piglin/setChargingCrossbow (Z)V +MD: net/minecraft/world/entity/monster/piglin/Piglin/m_6162_ ()Z net/minecraft/world/entity/monster/piglin/Piglin/isBaby ()Z +MD: net/minecraft/world/entity/monster/piglin/Piglin/m_6274_ ()Lnet/minecraft/world/entity/ai/Brain; net/minecraft/world/entity/monster/piglin/Piglin/getBrain ()Lnet/minecraft/world/entity/ai/Brain; +MD: net/minecraft/world/entity/monster/piglin/Piglin/m_6389_ ()Lnet/minecraft/world/entity/monster/piglin/PiglinArmPose; net/minecraft/world/entity/monster/piglin/Piglin/getArmPose ()Lnet/minecraft/world/entity/monster/piglin/PiglinArmPose; +MD: net/minecraft/world/entity/monster/piglin/Piglin/m_6431_ (Lnet/minecraft/world/entity/Pose;Lnet/minecraft/world/entity/EntityDimensions;)F net/minecraft/world/entity/monster/piglin/Piglin/getStandingEyeHeight (Lnet/minecraft/world/entity/Pose;Lnet/minecraft/world/entity/EntityDimensions;)F +MD: net/minecraft/world/entity/monster/piglin/Piglin/m_6469_ (Lnet/minecraft/world/damagesource/DamageSource;F)Z net/minecraft/world/entity/monster/piglin/Piglin/hurt (Lnet/minecraft/world/damagesource/DamageSource;F)Z +MD: net/minecraft/world/entity/monster/piglin/Piglin/m_6504_ (Lnet/minecraft/world/entity/LivingEntity;F)V net/minecraft/world/entity/monster/piglin/Piglin/performRangedAttack (Lnet/minecraft/world/entity/LivingEntity;F)V +MD: net/minecraft/world/entity/monster/piglin/Piglin/m_6518_ (Lnet/minecraft/world/level/ServerLevelAccessor;Lnet/minecraft/world/DifficultyInstance;Lnet/minecraft/world/entity/MobSpawnType;Lnet/minecraft/world/entity/SpawnGroupData;Lnet/minecraft/nbt/CompoundTag;)Lnet/minecraft/world/entity/SpawnGroupData; net/minecraft/world/entity/monster/piglin/Piglin/finalizeSpawn (Lnet/minecraft/world/level/ServerLevelAccessor;Lnet/minecraft/world/DifficultyInstance;Lnet/minecraft/world/entity/MobSpawnType;Lnet/minecraft/world/entity/SpawnGroupData;Lnet/minecraft/nbt/CompoundTag;)Lnet/minecraft/world/entity/SpawnGroupData; +MD: net/minecraft/world/entity/monster/piglin/Piglin/m_6785_ (D)Z net/minecraft/world/entity/monster/piglin/Piglin/removeWhenFarAway (D)Z +MD: net/minecraft/world/entity/monster/piglin/Piglin/m_6863_ (Z)V net/minecraft/world/entity/monster/piglin/Piglin/setBaby (Z)V +MD: net/minecraft/world/entity/monster/piglin/Piglin/m_7121_ ()Z net/minecraft/world/entity/monster/piglin/Piglin/canHunt ()Z +MD: net/minecraft/world/entity/monster/piglin/Piglin/m_7243_ (Lnet/minecraft/world/item/ItemStack;)Z net/minecraft/world/entity/monster/piglin/Piglin/wantsToPickUp (Lnet/minecraft/world/item/ItemStack;)Z +MD: net/minecraft/world/entity/monster/piglin/Piglin/m_7350_ (Lnet/minecraft/network/syncher/EntityDataAccessor;)V net/minecraft/world/entity/monster/piglin/Piglin/onSyncedDataUpdated (Lnet/minecraft/network/syncher/EntityDataAccessor;)V +MD: net/minecraft/world/entity/monster/piglin/Piglin/m_7355_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V net/minecraft/world/entity/monster/piglin/Piglin/playStepSound (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V +MD: net/minecraft/world/entity/monster/piglin/Piglin/m_7378_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/entity/monster/piglin/Piglin/readAdditionalSaveData (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/entity/monster/piglin/Piglin/m_7380_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/entity/monster/piglin/Piglin/addAdditionalSaveData (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/entity/monster/piglin/Piglin/m_7472_ (Lnet/minecraft/world/damagesource/DamageSource;IZ)V net/minecraft/world/entity/monster/piglin/Piglin/dropCustomDeathLoot (Lnet/minecraft/world/damagesource/DamageSource;IZ)V +MD: net/minecraft/world/entity/monster/piglin/Piglin/m_7515_ ()Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/monster/piglin/Piglin/getAmbientSound ()Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/monster/piglin/Piglin/m_7580_ ()V net/minecraft/world/entity/monster/piglin/Piglin/playConvertedSound ()V +MD: net/minecraft/world/entity/monster/piglin/Piglin/m_7581_ (Lnet/minecraft/world/entity/item/ItemEntity;)V net/minecraft/world/entity/monster/piglin/Piglin/pickUpItem (Lnet/minecraft/world/entity/item/ItemEntity;)V +MD: net/minecraft/world/entity/monster/piglin/Piglin/m_7808_ (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/item/ItemStack;)Z net/minecraft/world/entity/monster/piglin/Piglin/canReplaceCurrentItem (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/item/ItemStack;)Z +MD: net/minecraft/world/entity/monster/piglin/Piglin/m_7975_ (Lnet/minecraft/world/damagesource/DamageSource;)Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/monster/piglin/Piglin/getHurtSound (Lnet/minecraft/world/damagesource/DamageSource;)Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/monster/piglin/Piglin/m_7998_ (Lnet/minecraft/world/entity/Entity;Z)Z net/minecraft/world/entity/monster/piglin/Piglin/startRiding (Lnet/minecraft/world/entity/Entity;Z)Z +MD: net/minecraft/world/entity/monster/piglin/Piglin/m_8024_ ()V net/minecraft/world/entity/monster/piglin/Piglin/customServerAiStep ()V +MD: net/minecraft/world/entity/monster/piglin/Piglin/m_8028_ ()Z net/minecraft/world/entity/monster/piglin/Piglin/shouldDespawnInPeaceful ()Z +MD: net/minecraft/world/entity/monster/piglin/Piglin/m_8063_ (Lnet/minecraft/server/level/ServerLevel;)V net/minecraft/world/entity/monster/piglin/Piglin/finishConversion (Lnet/minecraft/server/level/ServerLevel;)V +MD: net/minecraft/world/entity/monster/piglin/Piglin/m_8075_ (Lcom/mojang/serialization/Dynamic;)Lnet/minecraft/world/entity/ai/Brain; net/minecraft/world/entity/monster/piglin/Piglin/makeBrain (Lcom/mojang/serialization/Dynamic;)Lnet/minecraft/world/entity/ai/Brain; +MD: net/minecraft/world/entity/monster/piglin/Piglin/m_8097_ ()V net/minecraft/world/entity/monster/piglin/Piglin/defineSynchedData ()V +MD: net/minecraft/world/entity/monster/piglin/PiglinAi/ ()V net/minecraft/world/entity/monster/piglin/PiglinAi/ ()V +MD: net/minecraft/world/entity/monster/piglin/PiglinAi/ ()V net/minecraft/world/entity/monster/piglin/PiglinAi/ ()V +MD: net/minecraft/world/entity/monster/piglin/PiglinAi/m_149962_ (Lnet/minecraft/world/entity/monster/piglin/AbstractPiglin;Lnet/minecraft/world/entity/player/Player;)V net/minecraft/world/entity/monster/piglin/PiglinAi/lambda$broadcastUniversalAnger$10 (Lnet/minecraft/world/entity/monster/piglin/AbstractPiglin;Lnet/minecraft/world/entity/player/Player;)V +MD: net/minecraft/world/entity/monster/piglin/PiglinAi/m_149965_ (Lnet/minecraft/world/item/ItemStack;)Z net/minecraft/world/entity/monster/piglin/PiglinAi/isLovedItem (Lnet/minecraft/world/item/ItemStack;)Z +MD: net/minecraft/world/entity/monster/piglin/PiglinAi/m_149967_ (Lnet/minecraft/world/item/ItemStack;)Z net/minecraft/world/entity/monster/piglin/PiglinAi/isBarterCurrency (Lnet/minecraft/world/item/ItemStack;)Z +MD: net/minecraft/world/entity/monster/piglin/PiglinAi/m_149969_ (Lnet/minecraft/world/item/ItemStack;)Z net/minecraft/world/entity/monster/piglin/PiglinAi/isFood (Lnet/minecraft/world/item/ItemStack;)Z +MD: net/minecraft/world/entity/monster/piglin/PiglinAi/m_219205_ (Lnet/minecraft/world/entity/monster/piglin/Piglin;Lnet/minecraft/util/RandomSource;)V net/minecraft/world/entity/monster/piglin/PiglinAi/initMemories (Lnet/minecraft/world/entity/monster/piglin/Piglin;Lnet/minecraft/util/RandomSource;)V +MD: net/minecraft/world/entity/monster/piglin/PiglinAi/m_257313_ (Lnet/minecraft/world/entity/monster/piglin/Piglin;)Z net/minecraft/world/entity/monster/piglin/PiglinAi/lambda$initRideHoglinActivity$2 (Lnet/minecraft/world/entity/monster/piglin/Piglin;)Z +MD: net/minecraft/world/entity/monster/piglin/PiglinAi/m_257417_ ()Lnet/minecraft/world/entity/ai/behavior/BehaviorControl; net/minecraft/world/entity/monster/piglin/PiglinAi/babyAvoidNemesis ()Lnet/minecraft/world/entity/ai/behavior/BehaviorControl; +MD: net/minecraft/world/entity/monster/piglin/PiglinAi/m_257528_ ()Lnet/minecraft/world/entity/ai/behavior/BehaviorControl; net/minecraft/world/entity/monster/piglin/PiglinAi/babySometimesRideBabyHoglin ()Lnet/minecraft/world/entity/ai/behavior/BehaviorControl; +MD: net/minecraft/world/entity/monster/piglin/PiglinAi/m_257691_ ()Lnet/minecraft/world/entity/ai/behavior/BehaviorControl; net/minecraft/world/entity/monster/piglin/PiglinAi/avoidRepellent ()Lnet/minecraft/world/entity/ai/behavior/BehaviorControl; +MD: net/minecraft/world/entity/monster/piglin/PiglinAi/m_257731_ ()Lnet/minecraft/world/entity/ai/behavior/BehaviorControl; net/minecraft/world/entity/monster/piglin/PiglinAi/avoidZombified ()Lnet/minecraft/world/entity/ai/behavior/BehaviorControl; +MD: net/minecraft/world/entity/monster/piglin/PiglinAi/m_257792_ ()Lcom/google/common/collect/ImmutableList; net/minecraft/world/entity/monster/piglin/PiglinAi/createLookBehaviors ()Lcom/google/common/collect/ImmutableList; +MD: net/minecraft/world/entity/monster/piglin/PiglinAi/m_289154_ (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/entity/monster/piglin/Piglin;)V net/minecraft/world/entity/monster/piglin/PiglinAi/lambda$angerNearbyPiglins$5 (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/entity/monster/piglin/Piglin;)V +MD: net/minecraft/world/entity/monster/piglin/PiglinAi/m_289155_ (Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/entity/ai/Brain;Lnet/minecraft/world/entity/LivingEntity;)V net/minecraft/world/entity/monster/piglin/PiglinAi/lambda$wasHurtBy$6 (Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/entity/ai/Brain;Lnet/minecraft/world/entity/LivingEntity;)V +MD: net/minecraft/world/entity/monster/piglin/PiglinAi/m_289156_ (Lnet/minecraft/world/entity/ai/behavior/SetEntityLookTargetSometimes$Ticker;Lnet/minecraft/world/entity/LivingEntity;)Z net/minecraft/world/entity/monster/piglin/PiglinAi/lambda$babySometimesRideBabyHoglin$8 (Lnet/minecraft/world/entity/ai/behavior/SetEntityLookTargetSometimes$Ticker;Lnet/minecraft/world/entity/LivingEntity;)Z +MD: net/minecraft/world/entity/monster/piglin/PiglinAi/m_289157_ (Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/entity/monster/piglin/AbstractPiglin;)V net/minecraft/world/entity/monster/piglin/PiglinAi/lambda$broadcastAngerTarget$9 (Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/entity/monster/piglin/AbstractPiglin;)V +MD: net/minecraft/world/entity/monster/piglin/PiglinAi/m_34803_ (Lnet/minecraft/world/entity/monster/piglin/Piglin;)Z net/minecraft/world/entity/monster/piglin/PiglinAi/lambda$initCelebrateActivity$1 (Lnet/minecraft/world/entity/monster/piglin/Piglin;)Z +MD: net/minecraft/world/entity/monster/piglin/PiglinAi/m_34805_ ()Lnet/minecraft/world/entity/ai/behavior/RunOne; net/minecraft/world/entity/monster/piglin/PiglinAi/createIdleLookBehaviors ()Lnet/minecraft/world/entity/ai/behavior/RunOne; +MD: net/minecraft/world/entity/monster/piglin/PiglinAi/m_34806_ (Lnet/minecraft/world/entity/EntityType;)Z net/minecraft/world/entity/monster/piglin/PiglinAi/isZombified (Lnet/minecraft/world/entity/EntityType;)Z +MD: net/minecraft/world/entity/monster/piglin/PiglinAi/m_34808_ (Lnet/minecraft/world/entity/LivingEntity;)Z net/minecraft/world/entity/monster/piglin/PiglinAi/isWearingGold (Lnet/minecraft/world/entity/LivingEntity;)Z +MD: net/minecraft/world/entity/monster/piglin/PiglinAi/m_34810_ (Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/entity/LivingEntity;)Z net/minecraft/world/entity/monster/piglin/PiglinAi/wantsToDance (Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/entity/LivingEntity;)Z +MD: net/minecraft/world/entity/monster/piglin/PiglinAi/m_34817_ (Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/entity/monster/piglin/AbstractPiglin;)V net/minecraft/world/entity/monster/piglin/PiglinAi/lambda$broadcastRetreat$13 (Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/entity/monster/piglin/AbstractPiglin;)V +MD: net/minecraft/world/entity/monster/piglin/PiglinAi/m_34820_ (Lnet/minecraft/world/entity/ai/Brain;)V net/minecraft/world/entity/monster/piglin/PiglinAi/initCoreActivity (Lnet/minecraft/world/entity/ai/Brain;)V +MD: net/minecraft/world/entity/monster/piglin/PiglinAi/m_34822_ (Lnet/minecraft/world/entity/item/ItemEntity;)Lnet/minecraft/world/item/ItemStack; net/minecraft/world/entity/monster/piglin/PiglinAi/removeOneItemFromItemEntity (Lnet/minecraft/world/entity/item/ItemEntity;)Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/entity/monster/piglin/PiglinAi/m_34824_ (Lnet/minecraft/world/entity/monster/piglin/AbstractPiglin;)V net/minecraft/world/entity/monster/piglin/PiglinAi/broadcastUniversalAnger (Lnet/minecraft/world/entity/monster/piglin/AbstractPiglin;)V +MD: net/minecraft/world/entity/monster/piglin/PiglinAi/m_34826_ (Lnet/minecraft/world/entity/monster/piglin/AbstractPiglin;Lnet/minecraft/world/entity/LivingEntity;)V net/minecraft/world/entity/monster/piglin/PiglinAi/maybeRetaliate (Lnet/minecraft/world/entity/monster/piglin/AbstractPiglin;Lnet/minecraft/world/entity/LivingEntity;)V +MD: net/minecraft/world/entity/monster/piglin/PiglinAi/m_34834_ (Lnet/minecraft/world/entity/monster/piglin/Piglin;Lnet/minecraft/world/entity/Entity;)Z net/minecraft/world/entity/monster/piglin/PiglinAi/wantsToStopRiding (Lnet/minecraft/world/entity/monster/piglin/Piglin;Lnet/minecraft/world/entity/Entity;)Z +MD: net/minecraft/world/entity/monster/piglin/PiglinAi/m_34837_ (Lnet/minecraft/world/entity/monster/piglin/Piglin;Lnet/minecraft/world/entity/LivingEntity;)V net/minecraft/world/entity/monster/piglin/PiglinAi/wasHurtBy (Lnet/minecraft/world/entity/monster/piglin/Piglin;Lnet/minecraft/world/entity/LivingEntity;)V +MD: net/minecraft/world/entity/monster/piglin/PiglinAi/m_34840_ (Lnet/minecraft/world/entity/monster/piglin/Piglin;Lnet/minecraft/world/entity/ai/Brain;)Lnet/minecraft/world/entity/ai/Brain; net/minecraft/world/entity/monster/piglin/PiglinAi/makeBrain (Lnet/minecraft/world/entity/monster/piglin/Piglin;Lnet/minecraft/world/entity/ai/Brain;)Lnet/minecraft/world/entity/ai/Brain; +MD: net/minecraft/world/entity/monster/piglin/PiglinAi/m_34843_ (Lnet/minecraft/world/entity/monster/piglin/Piglin;Lnet/minecraft/world/entity/item/ItemEntity;)V net/minecraft/world/entity/monster/piglin/PiglinAi/pickUpItem (Lnet/minecraft/world/entity/monster/piglin/Piglin;Lnet/minecraft/world/entity/item/ItemEntity;)V +MD: net/minecraft/world/entity/monster/piglin/PiglinAi/m_34846_ (Lnet/minecraft/world/entity/monster/piglin/Piglin;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;)Lnet/minecraft/world/InteractionResult; net/minecraft/world/entity/monster/piglin/PiglinAi/mobInteract (Lnet/minecraft/world/entity/monster/piglin/Piglin;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;)Lnet/minecraft/world/InteractionResult; +MD: net/minecraft/world/entity/monster/piglin/PiglinAi/m_34850_ (Lnet/minecraft/world/entity/monster/piglin/Piglin;Lnet/minecraft/world/entity/player/Player;Ljava/util/List;)V net/minecraft/world/entity/monster/piglin/PiglinAi/throwItemsTowardPlayer (Lnet/minecraft/world/entity/monster/piglin/Piglin;Lnet/minecraft/world/entity/player/Player;Ljava/util/List;)V +MD: net/minecraft/world/entity/monster/piglin/PiglinAi/m_34854_ (Lnet/minecraft/world/entity/monster/piglin/Piglin;Lnet/minecraft/world/entity/schedule/Activity;)Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/monster/piglin/PiglinAi/getSoundForActivity (Lnet/minecraft/world/entity/monster/piglin/Piglin;Lnet/minecraft/world/entity/schedule/Activity;)Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/monster/piglin/PiglinAi/m_34857_ (Lnet/minecraft/world/entity/monster/piglin/Piglin;Lnet/minecraft/world/item/ItemStack;)Z net/minecraft/world/entity/monster/piglin/PiglinAi/wantsToPickup (Lnet/minecraft/world/entity/monster/piglin/Piglin;Lnet/minecraft/world/item/ItemStack;)Z +MD: net/minecraft/world/entity/monster/piglin/PiglinAi/m_34860_ (Lnet/minecraft/world/entity/monster/piglin/Piglin;Ljava/util/List;)V net/minecraft/world/entity/monster/piglin/PiglinAi/throwItems (Lnet/minecraft/world/entity/monster/piglin/Piglin;Ljava/util/List;)V +MD: net/minecraft/world/entity/monster/piglin/PiglinAi/m_34863_ (Lnet/minecraft/world/entity/monster/piglin/Piglin;Ljava/util/List;Lnet/minecraft/world/phys/Vec3;)V net/minecraft/world/entity/monster/piglin/PiglinAi/throwItemsTowardPos (Lnet/minecraft/world/entity/monster/piglin/Piglin;Ljava/util/List;Lnet/minecraft/world/phys/Vec3;)V +MD: net/minecraft/world/entity/monster/piglin/PiglinAi/m_34867_ (Lnet/minecraft/world/entity/monster/piglin/Piglin;Z)V net/minecraft/world/entity/monster/piglin/PiglinAi/stopHoldingOffHandItem (Lnet/minecraft/world/entity/monster/piglin/Piglin;Z)V +MD: net/minecraft/world/entity/monster/piglin/PiglinAi/m_34873_ (Lnet/minecraft/world/entity/player/Player;Z)V net/minecraft/world/entity/monster/piglin/PiglinAi/angerNearbyPiglins (Lnet/minecraft/world/entity/player/Player;Z)V +MD: net/minecraft/world/entity/monster/piglin/PiglinAi/m_34878_ (ZLnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/entity/monster/piglin/Piglin;)Z net/minecraft/world/entity/monster/piglin/PiglinAi/lambda$angerNearbyPiglins$4 (ZLnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/entity/monster/piglin/Piglin;)Z +MD: net/minecraft/world/entity/monster/piglin/PiglinAi/m_34882_ ()Lnet/minecraft/world/entity/ai/behavior/RunOne; net/minecraft/world/entity/monster/piglin/PiglinAi/createIdleMovementBehaviors ()Lnet/minecraft/world/entity/ai/behavior/RunOne; +MD: net/minecraft/world/entity/monster/piglin/PiglinAi/m_34883_ (Lnet/minecraft/world/entity/LivingEntity;)Z net/minecraft/world/entity/monster/piglin/PiglinAi/isPlayerHoldingLovedItem (Lnet/minecraft/world/entity/LivingEntity;)Z +MD: net/minecraft/world/entity/monster/piglin/PiglinAi/m_34885_ (Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/entity/LivingEntity;)Z net/minecraft/world/entity/monster/piglin/PiglinAi/lambda$isNearestValidAttackTarget$3 (Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/entity/LivingEntity;)Z +MD: net/minecraft/world/entity/monster/piglin/PiglinAi/m_34891_ (Lnet/minecraft/world/entity/ai/Brain;)V net/minecraft/world/entity/monster/piglin/PiglinAi/initIdleActivity (Lnet/minecraft/world/entity/ai/Brain;)V +MD: net/minecraft/world/entity/monster/piglin/PiglinAi/m_34893_ (Lnet/minecraft/world/entity/monster/piglin/AbstractPiglin;)Ljava/util/Optional; net/minecraft/world/entity/monster/piglin/PiglinAi/getNearestVisibleTargetablePlayer (Lnet/minecraft/world/entity/monster/piglin/AbstractPiglin;)Ljava/util/Optional; +MD: net/minecraft/world/entity/monster/piglin/PiglinAi/m_34895_ (Lnet/minecraft/world/entity/monster/piglin/AbstractPiglin;Lnet/minecraft/world/entity/LivingEntity;)V net/minecraft/world/entity/monster/piglin/PiglinAi/broadcastAngerTarget (Lnet/minecraft/world/entity/monster/piglin/AbstractPiglin;Lnet/minecraft/world/entity/LivingEntity;)V +MD: net/minecraft/world/entity/monster/piglin/PiglinAi/m_34898_ (Lnet/minecraft/world/entity/monster/piglin/Piglin;)V net/minecraft/world/entity/monster/piglin/PiglinAi/updateActivity (Lnet/minecraft/world/entity/monster/piglin/Piglin;)V +MD: net/minecraft/world/entity/monster/piglin/PiglinAi/m_34900_ (Lnet/minecraft/world/entity/monster/piglin/Piglin;Lnet/minecraft/world/entity/LivingEntity;)Z net/minecraft/world/entity/monster/piglin/PiglinAi/isNearestValidAttackTarget (Lnet/minecraft/world/entity/monster/piglin/Piglin;Lnet/minecraft/world/entity/LivingEntity;)Z +MD: net/minecraft/world/entity/monster/piglin/PiglinAi/m_34903_ (Lnet/minecraft/world/entity/monster/piglin/Piglin;Lnet/minecraft/world/entity/ai/Brain;)V net/minecraft/world/entity/monster/piglin/PiglinAi/initFightActivity (Lnet/minecraft/world/entity/monster/piglin/Piglin;Lnet/minecraft/world/entity/ai/Brain;)V +MD: net/minecraft/world/entity/monster/piglin/PiglinAi/m_34906_ (Lnet/minecraft/world/entity/monster/piglin/Piglin;Lnet/minecraft/world/entity/schedule/Activity;)Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/monster/piglin/PiglinAi/lambda$getSoundForCurrentActivity$7 (Lnet/minecraft/world/entity/monster/piglin/Piglin;Lnet/minecraft/world/entity/schedule/Activity;)Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/monster/piglin/PiglinAi/m_34909_ (Lnet/minecraft/world/entity/monster/piglin/Piglin;Lnet/minecraft/world/item/ItemStack;)Z net/minecraft/world/entity/monster/piglin/PiglinAi/canAdmire (Lnet/minecraft/world/entity/monster/piglin/Piglin;Lnet/minecraft/world/item/ItemStack;)Z +MD: net/minecraft/world/entity/monster/piglin/PiglinAi/m_34912_ (Lnet/minecraft/world/entity/monster/piglin/Piglin;Ljava/util/List;)V net/minecraft/world/entity/monster/piglin/PiglinAi/throwItemsTowardRandomPos (Lnet/minecraft/world/entity/monster/piglin/Piglin;Ljava/util/List;)V +MD: net/minecraft/world/entity/monster/piglin/PiglinAi/m_34918_ (Lnet/minecraft/world/entity/LivingEntity;)Z net/minecraft/world/entity/monster/piglin/PiglinAi/hasCrossbow (Lnet/minecraft/world/entity/LivingEntity;)Z +MD: net/minecraft/world/entity/monster/piglin/PiglinAi/m_34920_ (Lnet/minecraft/world/entity/ai/Brain;)V net/minecraft/world/entity/monster/piglin/PiglinAi/initCelebrateActivity (Lnet/minecraft/world/entity/ai/Brain;)V +MD: net/minecraft/world/entity/monster/piglin/PiglinAi/m_34922_ (Lnet/minecraft/world/entity/monster/piglin/AbstractPiglin;)V net/minecraft/world/entity/monster/piglin/PiglinAi/dontKillAnyMoreHoglinsForAWhile (Lnet/minecraft/world/entity/monster/piglin/AbstractPiglin;)V +MD: net/minecraft/world/entity/monster/piglin/PiglinAi/m_34924_ (Lnet/minecraft/world/entity/monster/piglin/AbstractPiglin;Lnet/minecraft/world/entity/LivingEntity;)V net/minecraft/world/entity/monster/piglin/PiglinAi/setAngerTarget (Lnet/minecraft/world/entity/monster/piglin/AbstractPiglin;Lnet/minecraft/world/entity/LivingEntity;)V +MD: net/minecraft/world/entity/monster/piglin/PiglinAi/m_34927_ (Lnet/minecraft/world/entity/monster/piglin/Piglin;)V net/minecraft/world/entity/monster/piglin/PiglinAi/cancelAdmiring (Lnet/minecraft/world/entity/monster/piglin/Piglin;)V +MD: net/minecraft/world/entity/monster/piglin/PiglinAi/m_34929_ (Lnet/minecraft/world/entity/monster/piglin/Piglin;Lnet/minecraft/world/entity/LivingEntity;)V net/minecraft/world/entity/monster/piglin/PiglinAi/broadcastRetreat (Lnet/minecraft/world/entity/monster/piglin/Piglin;Lnet/minecraft/world/entity/LivingEntity;)V +MD: net/minecraft/world/entity/monster/piglin/PiglinAi/m_34932_ (Lnet/minecraft/world/entity/monster/piglin/Piglin;Lnet/minecraft/world/item/ItemStack;)V net/minecraft/world/entity/monster/piglin/PiglinAi/holdInOffhand (Lnet/minecraft/world/entity/monster/piglin/Piglin;Lnet/minecraft/world/item/ItemStack;)V +MD: net/minecraft/world/entity/monster/piglin/PiglinAi/m_34938_ (Lnet/minecraft/world/entity/LivingEntity;)V net/minecraft/world/entity/monster/piglin/PiglinAi/admireGoldItem (Lnet/minecraft/world/entity/LivingEntity;)V +MD: net/minecraft/world/entity/monster/piglin/PiglinAi/m_34940_ (Lnet/minecraft/world/entity/ai/Brain;)V net/minecraft/world/entity/monster/piglin/PiglinAi/initAdmireItemActivity (Lnet/minecraft/world/entity/ai/Brain;)V +MD: net/minecraft/world/entity/monster/piglin/PiglinAi/m_34942_ (Lnet/minecraft/world/entity/monster/piglin/AbstractPiglin;)Z net/minecraft/world/entity/monster/piglin/PiglinAi/isIdle (Lnet/minecraft/world/entity/monster/piglin/AbstractPiglin;)Z +MD: net/minecraft/world/entity/monster/piglin/PiglinAi/m_34944_ (Lnet/minecraft/world/entity/monster/piglin/AbstractPiglin;Lnet/minecraft/world/entity/LivingEntity;)V net/minecraft/world/entity/monster/piglin/PiglinAi/setAngerTargetToNearestTargetablePlayerIfFound (Lnet/minecraft/world/entity/monster/piglin/AbstractPiglin;Lnet/minecraft/world/entity/LivingEntity;)V +MD: net/minecraft/world/entity/monster/piglin/PiglinAi/m_34947_ (Lnet/minecraft/world/entity/monster/piglin/Piglin;)Ljava/util/Optional; net/minecraft/world/entity/monster/piglin/PiglinAi/getSoundForCurrentActivity (Lnet/minecraft/world/entity/monster/piglin/Piglin;)Ljava/util/Optional; +MD: net/minecraft/world/entity/monster/piglin/PiglinAi/m_34949_ (Lnet/minecraft/world/entity/monster/piglin/Piglin;Lnet/minecraft/world/entity/LivingEntity;)V net/minecraft/world/entity/monster/piglin/PiglinAi/retreatFromNearestTarget (Lnet/minecraft/world/entity/monster/piglin/Piglin;Lnet/minecraft/world/entity/LivingEntity;)V +MD: net/minecraft/world/entity/monster/piglin/PiglinAi/m_34952_ (Lnet/minecraft/world/entity/monster/piglin/Piglin;Lnet/minecraft/world/item/ItemStack;)V net/minecraft/world/entity/monster/piglin/PiglinAi/putInInventory (Lnet/minecraft/world/entity/monster/piglin/Piglin;Lnet/minecraft/world/item/ItemStack;)V +MD: net/minecraft/world/entity/monster/piglin/PiglinAi/m_34958_ (Lnet/minecraft/world/entity/ai/Brain;)V net/minecraft/world/entity/monster/piglin/PiglinAi/initRetreatActivity (Lnet/minecraft/world/entity/ai/Brain;)V +MD: net/minecraft/world/entity/monster/piglin/PiglinAi/m_34960_ (Lnet/minecraft/world/entity/monster/piglin/AbstractPiglin;)Ljava/util/List; net/minecraft/world/entity/monster/piglin/PiglinAi/getAdultPiglins (Lnet/minecraft/world/entity/monster/piglin/AbstractPiglin;)Ljava/util/List; +MD: net/minecraft/world/entity/monster/piglin/PiglinAi/m_34962_ (Lnet/minecraft/world/entity/monster/piglin/AbstractPiglin;Lnet/minecraft/world/entity/LivingEntity;)V net/minecraft/world/entity/monster/piglin/PiglinAi/setAngerTargetIfCloserThanCurrent (Lnet/minecraft/world/entity/monster/piglin/AbstractPiglin;Lnet/minecraft/world/entity/LivingEntity;)V +MD: net/minecraft/world/entity/monster/piglin/PiglinAi/m_34967_ (Lnet/minecraft/world/entity/monster/piglin/Piglin;Lnet/minecraft/world/entity/LivingEntity;)V net/minecraft/world/entity/monster/piglin/PiglinAi/setAvoidTargetAndDontHuntForAWhile (Lnet/minecraft/world/entity/monster/piglin/Piglin;Lnet/minecraft/world/entity/LivingEntity;)V +MD: net/minecraft/world/entity/monster/piglin/PiglinAi/m_34971_ (Lnet/minecraft/world/entity/LivingEntity;)Z net/minecraft/world/entity/monster/piglin/PiglinAi/seesPlayerHoldingLovedItem (Lnet/minecraft/world/entity/LivingEntity;)Z +MD: net/minecraft/world/entity/monster/piglin/PiglinAi/m_34973_ (Lnet/minecraft/world/entity/ai/Brain;)V net/minecraft/world/entity/monster/piglin/PiglinAi/initRideHoglinActivity (Lnet/minecraft/world/entity/ai/Brain;)V +MD: net/minecraft/world/entity/monster/piglin/PiglinAi/m_34975_ (Lnet/minecraft/world/entity/monster/piglin/AbstractPiglin;)Ljava/util/Optional; net/minecraft/world/entity/monster/piglin/PiglinAi/getAngerTarget (Lnet/minecraft/world/entity/monster/piglin/AbstractPiglin;)Ljava/util/Optional; +MD: net/minecraft/world/entity/monster/piglin/PiglinAi/m_34979_ (Lnet/minecraft/world/entity/monster/piglin/Piglin;Lnet/minecraft/world/entity/LivingEntity;)Z net/minecraft/world/entity/monster/piglin/PiglinAi/lambda$initFightActivity$0 (Lnet/minecraft/world/entity/monster/piglin/Piglin;Lnet/minecraft/world/entity/LivingEntity;)Z +MD: net/minecraft/world/entity/monster/piglin/PiglinAi/m_34982_ (Lnet/minecraft/world/entity/LivingEntity;)Z net/minecraft/world/entity/monster/piglin/PiglinAi/doesntSeeAnyPlayerHoldingLovedItem (Lnet/minecraft/world/entity/LivingEntity;)Z +MD: net/minecraft/world/entity/monster/piglin/PiglinAi/m_34984_ (Lnet/minecraft/world/entity/monster/piglin/AbstractPiglin;)Z net/minecraft/world/entity/monster/piglin/PiglinAi/lambda$broadcastRetreat$12 (Lnet/minecraft/world/entity/monster/piglin/AbstractPiglin;)Z +MD: net/minecraft/world/entity/monster/piglin/PiglinAi/m_34986_ (Lnet/minecraft/world/entity/monster/piglin/Piglin;)Ljava/util/Optional; net/minecraft/world/entity/monster/piglin/PiglinAi/getAvoidTarget (Lnet/minecraft/world/entity/monster/piglin/Piglin;)Ljava/util/Optional; +MD: net/minecraft/world/entity/monster/piglin/PiglinAi/m_34988_ (Lnet/minecraft/world/entity/LivingEntity;)Z net/minecraft/world/entity/monster/piglin/PiglinAi/wasHurtRecently (Lnet/minecraft/world/entity/LivingEntity;)Z +MD: net/minecraft/world/entity/monster/piglin/PiglinAi/m_34990_ (Lnet/minecraft/world/entity/monster/piglin/AbstractPiglin;)V net/minecraft/world/entity/monster/piglin/PiglinAi/lambda$broadcastUniversalAnger$11 (Lnet/minecraft/world/entity/monster/piglin/AbstractPiglin;)V +MD: net/minecraft/world/entity/monster/piglin/PiglinAi/m_34992_ (Lnet/minecraft/world/entity/monster/piglin/Piglin;)Z net/minecraft/world/entity/monster/piglin/PiglinAi/isBabyRidingBaby (Lnet/minecraft/world/entity/monster/piglin/Piglin;)Z +MD: net/minecraft/world/entity/monster/piglin/PiglinAi/m_34996_ (Lnet/minecraft/world/entity/monster/piglin/Piglin;)Ljava/util/List; net/minecraft/world/entity/monster/piglin/PiglinAi/getBarterResponseItems (Lnet/minecraft/world/entity/monster/piglin/Piglin;)Ljava/util/List; +MD: net/minecraft/world/entity/monster/piglin/PiglinAi/m_34998_ (Lnet/minecraft/world/entity/monster/piglin/Piglin;)Z net/minecraft/world/entity/monster/piglin/PiglinAi/isNearZombified (Lnet/minecraft/world/entity/monster/piglin/Piglin;)Z +MD: net/minecraft/world/entity/monster/piglin/PiglinAi/m_35000_ (Lnet/minecraft/world/entity/monster/piglin/Piglin;)Ljava/util/Optional; net/minecraft/world/entity/monster/piglin/PiglinAi/findNearestValidAttackTarget (Lnet/minecraft/world/entity/monster/piglin/Piglin;)Ljava/util/Optional; +MD: net/minecraft/world/entity/monster/piglin/PiglinAi/m_35002_ (Lnet/minecraft/world/entity/monster/piglin/Piglin;)Z net/minecraft/world/entity/monster/piglin/PiglinAi/isNearAvoidTarget (Lnet/minecraft/world/entity/monster/piglin/Piglin;)Z +MD: net/minecraft/world/entity/monster/piglin/PiglinAi/m_35004_ (Lnet/minecraft/world/entity/monster/piglin/Piglin;)Ljava/util/List; net/minecraft/world/entity/monster/piglin/PiglinAi/getVisibleAdultPiglins (Lnet/minecraft/world/entity/monster/piglin/Piglin;)Ljava/util/List; +MD: net/minecraft/world/entity/monster/piglin/PiglinAi/m_35006_ (Lnet/minecraft/world/entity/monster/piglin/Piglin;)V net/minecraft/world/entity/monster/piglin/PiglinAi/stopWalking (Lnet/minecraft/world/entity/monster/piglin/Piglin;)V +MD: net/minecraft/world/entity/monster/piglin/PiglinAi/m_35008_ (Lnet/minecraft/world/entity/monster/piglin/Piglin;)Z net/minecraft/world/entity/monster/piglin/PiglinAi/wantsToStopFleeing (Lnet/minecraft/world/entity/monster/piglin/Piglin;)Z +MD: net/minecraft/world/entity/monster/piglin/PiglinAi/m_35010_ (Lnet/minecraft/world/entity/monster/piglin/Piglin;)Z net/minecraft/world/entity/monster/piglin/PiglinAi/piglinsEqualOrOutnumberHoglins (Lnet/minecraft/world/entity/monster/piglin/Piglin;)Z +MD: net/minecraft/world/entity/monster/piglin/PiglinAi/m_35012_ (Lnet/minecraft/world/entity/monster/piglin/Piglin;)Z net/minecraft/world/entity/monster/piglin/PiglinAi/hoglinsOutnumberPiglins (Lnet/minecraft/world/entity/monster/piglin/Piglin;)Z +MD: net/minecraft/world/entity/monster/piglin/PiglinAi/m_35014_ (Lnet/minecraft/world/entity/monster/piglin/Piglin;)V net/minecraft/world/entity/monster/piglin/PiglinAi/eat (Lnet/minecraft/world/entity/monster/piglin/Piglin;)V +MD: net/minecraft/world/entity/monster/piglin/PiglinAi/m_35016_ (Lnet/minecraft/world/entity/monster/piglin/Piglin;)Lnet/minecraft/world/phys/Vec3; net/minecraft/world/entity/monster/piglin/PiglinAi/getRandomNearbyPos (Lnet/minecraft/world/entity/monster/piglin/Piglin;)Lnet/minecraft/world/phys/Vec3; +MD: net/minecraft/world/entity/monster/piglin/PiglinAi/m_35018_ (Lnet/minecraft/world/entity/monster/piglin/Piglin;)Z net/minecraft/world/entity/monster/piglin/PiglinAi/hasEatenRecently (Lnet/minecraft/world/entity/monster/piglin/Piglin;)Z +MD: net/minecraft/world/entity/monster/piglin/PiglinAi/m_35020_ (Lnet/minecraft/world/entity/monster/piglin/Piglin;)Z net/minecraft/world/entity/monster/piglin/PiglinAi/isAdmiringItem (Lnet/minecraft/world/entity/monster/piglin/Piglin;)Z +MD: net/minecraft/world/entity/monster/piglin/PiglinAi/m_35022_ (Lnet/minecraft/world/entity/monster/piglin/Piglin;)Z net/minecraft/world/entity/monster/piglin/PiglinAi/isNearRepellent (Lnet/minecraft/world/entity/monster/piglin/Piglin;)Z +MD: net/minecraft/world/entity/monster/piglin/PiglinAi/m_35024_ (Lnet/minecraft/world/entity/monster/piglin/Piglin;)Z net/minecraft/world/entity/monster/piglin/PiglinAi/isAdmiringDisabled (Lnet/minecraft/world/entity/monster/piglin/Piglin;)Z +MD: net/minecraft/world/entity/monster/piglin/PiglinAi/m_35026_ (Lnet/minecraft/world/entity/monster/piglin/Piglin;)Z net/minecraft/world/entity/monster/piglin/PiglinAi/isHoldingItemInOffHand (Lnet/minecraft/world/entity/monster/piglin/Piglin;)Z +MD: net/minecraft/world/entity/monster/piglin/PiglinAi/m_35028_ (Lnet/minecraft/world/entity/monster/piglin/Piglin;)Z net/minecraft/world/entity/monster/piglin/PiglinAi/isNotHoldingLovedItemInOffHand (Lnet/minecraft/world/entity/monster/piglin/Piglin;)Z +MD: net/minecraft/world/entity/monster/piglin/PiglinArmPose/ ()V net/minecraft/world/entity/monster/piglin/PiglinArmPose/ ()V +MD: net/minecraft/world/entity/monster/piglin/PiglinArmPose/ (Ljava/lang/String;I)V net/minecraft/world/entity/monster/piglin/PiglinArmPose/ (Ljava/lang/String;I)V +MD: net/minecraft/world/entity/monster/piglin/PiglinArmPose/m_149973_ ()[Lnet/minecraft/world/entity/monster/piglin/PiglinArmPose; net/minecraft/world/entity/monster/piglin/PiglinArmPose/$values ()[Lnet/minecraft/world/entity/monster/piglin/PiglinArmPose; +MD: net/minecraft/world/entity/monster/piglin/PiglinArmPose/valueOf (Ljava/lang/String;)Lnet/minecraft/world/entity/monster/piglin/PiglinArmPose; net/minecraft/world/entity/monster/piglin/PiglinArmPose/valueOf (Ljava/lang/String;)Lnet/minecraft/world/entity/monster/piglin/PiglinArmPose; +MD: net/minecraft/world/entity/monster/piglin/PiglinArmPose/values ()[Lnet/minecraft/world/entity/monster/piglin/PiglinArmPose; net/minecraft/world/entity/monster/piglin/PiglinArmPose/values ()[Lnet/minecraft/world/entity/monster/piglin/PiglinArmPose; +MD: net/minecraft/world/entity/monster/piglin/PiglinBrute/ ()V net/minecraft/world/entity/monster/piglin/PiglinBrute/ ()V +MD: net/minecraft/world/entity/monster/piglin/PiglinBrute/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V net/minecraft/world/entity/monster/piglin/PiglinBrute/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V +MD: net/minecraft/world/entity/monster/piglin/PiglinBrute/m_213945_ (Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/DifficultyInstance;)V net/minecraft/world/entity/monster/piglin/PiglinBrute/populateDefaultEquipmentSlots (Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/DifficultyInstance;)V +MD: net/minecraft/world/entity/monster/piglin/PiglinBrute/m_35075_ ()Lnet/minecraft/world/entity/ai/attributes/AttributeSupplier$Builder; net/minecraft/world/entity/monster/piglin/PiglinBrute/createAttributes ()Lnet/minecraft/world/entity/ai/attributes/AttributeSupplier$Builder; +MD: net/minecraft/world/entity/monster/piglin/PiglinBrute/m_35076_ ()V net/minecraft/world/entity/monster/piglin/PiglinBrute/playAngrySound ()V +MD: net/minecraft/world/entity/monster/piglin/PiglinBrute/m_5490_ ()Lnet/minecraft/world/entity/ai/Brain$Provider; net/minecraft/world/entity/monster/piglin/PiglinBrute/brainProvider ()Lnet/minecraft/world/entity/ai/Brain$Provider; +MD: net/minecraft/world/entity/monster/piglin/PiglinBrute/m_5592_ ()Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/monster/piglin/PiglinBrute/getDeathSound ()Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/monster/piglin/PiglinBrute/m_6274_ ()Lnet/minecraft/world/entity/ai/Brain; net/minecraft/world/entity/monster/piglin/PiglinBrute/getBrain ()Lnet/minecraft/world/entity/ai/Brain; +MD: net/minecraft/world/entity/monster/piglin/PiglinBrute/m_6389_ ()Lnet/minecraft/world/entity/monster/piglin/PiglinArmPose; net/minecraft/world/entity/monster/piglin/PiglinBrute/getArmPose ()Lnet/minecraft/world/entity/monster/piglin/PiglinArmPose; +MD: net/minecraft/world/entity/monster/piglin/PiglinBrute/m_6469_ (Lnet/minecraft/world/damagesource/DamageSource;F)Z net/minecraft/world/entity/monster/piglin/PiglinBrute/hurt (Lnet/minecraft/world/damagesource/DamageSource;F)Z +MD: net/minecraft/world/entity/monster/piglin/PiglinBrute/m_6518_ (Lnet/minecraft/world/level/ServerLevelAccessor;Lnet/minecraft/world/DifficultyInstance;Lnet/minecraft/world/entity/MobSpawnType;Lnet/minecraft/world/entity/SpawnGroupData;Lnet/minecraft/nbt/CompoundTag;)Lnet/minecraft/world/entity/SpawnGroupData; net/minecraft/world/entity/monster/piglin/PiglinBrute/finalizeSpawn (Lnet/minecraft/world/level/ServerLevelAccessor;Lnet/minecraft/world/DifficultyInstance;Lnet/minecraft/world/entity/MobSpawnType;Lnet/minecraft/world/entity/SpawnGroupData;Lnet/minecraft/nbt/CompoundTag;)Lnet/minecraft/world/entity/SpawnGroupData; +MD: net/minecraft/world/entity/monster/piglin/PiglinBrute/m_7121_ ()Z net/minecraft/world/entity/monster/piglin/PiglinBrute/canHunt ()Z +MD: net/minecraft/world/entity/monster/piglin/PiglinBrute/m_7243_ (Lnet/minecraft/world/item/ItemStack;)Z net/minecraft/world/entity/monster/piglin/PiglinBrute/wantsToPickUp (Lnet/minecraft/world/item/ItemStack;)Z +MD: net/minecraft/world/entity/monster/piglin/PiglinBrute/m_7355_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V net/minecraft/world/entity/monster/piglin/PiglinBrute/playStepSound (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V +MD: net/minecraft/world/entity/monster/piglin/PiglinBrute/m_7515_ ()Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/monster/piglin/PiglinBrute/getAmbientSound ()Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/monster/piglin/PiglinBrute/m_7580_ ()V net/minecraft/world/entity/monster/piglin/PiglinBrute/playConvertedSound ()V +MD: net/minecraft/world/entity/monster/piglin/PiglinBrute/m_7975_ (Lnet/minecraft/world/damagesource/DamageSource;)Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/monster/piglin/PiglinBrute/getHurtSound (Lnet/minecraft/world/damagesource/DamageSource;)Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/monster/piglin/PiglinBrute/m_8024_ ()V net/minecraft/world/entity/monster/piglin/PiglinBrute/customServerAiStep ()V +MD: net/minecraft/world/entity/monster/piglin/PiglinBrute/m_8075_ (Lcom/mojang/serialization/Dynamic;)Lnet/minecraft/world/entity/ai/Brain; net/minecraft/world/entity/monster/piglin/PiglinBrute/makeBrain (Lcom/mojang/serialization/Dynamic;)Lnet/minecraft/world/entity/ai/Brain; +MD: net/minecraft/world/entity/monster/piglin/PiglinBruteAi/ ()V net/minecraft/world/entity/monster/piglin/PiglinBruteAi/ ()V +MD: net/minecraft/world/entity/monster/piglin/PiglinBruteAi/m_149988_ (Lnet/minecraft/world/entity/monster/piglin/PiglinBrute;Lnet/minecraft/world/entity/LivingEntity;)V net/minecraft/world/entity/monster/piglin/PiglinBruteAi/setAngerTarget (Lnet/minecraft/world/entity/monster/piglin/PiglinBrute;Lnet/minecraft/world/entity/LivingEntity;)V +MD: net/minecraft/world/entity/monster/piglin/PiglinBruteAi/m_35080_ ()Lnet/minecraft/world/entity/ai/behavior/RunOne; net/minecraft/world/entity/monster/piglin/PiglinBruteAi/createIdleLookBehaviors ()Lnet/minecraft/world/entity/ai/behavior/RunOne; +MD: net/minecraft/world/entity/monster/piglin/PiglinBruteAi/m_35083_ (Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/entity/LivingEntity;)Z net/minecraft/world/entity/monster/piglin/PiglinBruteAi/lambda$isNearestValidAttackTarget$1 (Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/entity/LivingEntity;)Z +MD: net/minecraft/world/entity/monster/piglin/PiglinBruteAi/m_35086_ (Lnet/minecraft/world/entity/monster/piglin/AbstractPiglin;)Ljava/util/Optional; net/minecraft/world/entity/monster/piglin/PiglinBruteAi/findNearestValidAttackTarget (Lnet/minecraft/world/entity/monster/piglin/AbstractPiglin;)Ljava/util/Optional; +MD: net/minecraft/world/entity/monster/piglin/PiglinBruteAi/m_35088_ (Lnet/minecraft/world/entity/monster/piglin/AbstractPiglin;Lnet/minecraft/world/entity/LivingEntity;)Z net/minecraft/world/entity/monster/piglin/PiglinBruteAi/isNearestValidAttackTarget (Lnet/minecraft/world/entity/monster/piglin/AbstractPiglin;Lnet/minecraft/world/entity/LivingEntity;)Z +MD: net/minecraft/world/entity/monster/piglin/PiglinBruteAi/m_35091_ (Lnet/minecraft/world/entity/monster/piglin/AbstractPiglin;Lnet/minecraft/world/entity/ai/memory/MemoryModuleType;)Ljava/util/Optional; net/minecraft/world/entity/monster/piglin/PiglinBruteAi/getTargetIfWithinRange (Lnet/minecraft/world/entity/monster/piglin/AbstractPiglin;Lnet/minecraft/world/entity/ai/memory/MemoryModuleType;)Ljava/util/Optional; +MD: net/minecraft/world/entity/monster/piglin/PiglinBruteAi/m_35094_ (Lnet/minecraft/world/entity/monster/piglin/PiglinBrute;)V net/minecraft/world/entity/monster/piglin/PiglinBruteAi/initMemories (Lnet/minecraft/world/entity/monster/piglin/PiglinBrute;)V +MD: net/minecraft/world/entity/monster/piglin/PiglinBruteAi/m_35096_ (Lnet/minecraft/world/entity/monster/piglin/PiglinBrute;Lnet/minecraft/world/entity/LivingEntity;)V net/minecraft/world/entity/monster/piglin/PiglinBruteAi/wasHurtBy (Lnet/minecraft/world/entity/monster/piglin/PiglinBrute;Lnet/minecraft/world/entity/LivingEntity;)V +MD: net/minecraft/world/entity/monster/piglin/PiglinBruteAi/m_35099_ (Lnet/minecraft/world/entity/monster/piglin/PiglinBrute;Lnet/minecraft/world/entity/ai/Brain;)Lnet/minecraft/world/entity/ai/Brain; net/minecraft/world/entity/monster/piglin/PiglinBruteAi/makeBrain (Lnet/minecraft/world/entity/monster/piglin/PiglinBrute;Lnet/minecraft/world/entity/ai/Brain;)Lnet/minecraft/world/entity/ai/Brain; +MD: net/minecraft/world/entity/monster/piglin/PiglinBruteAi/m_35102_ (Lnet/minecraft/world/entity/monster/piglin/PiglinBrute;Lnet/minecraft/world/entity/schedule/Activity;)V net/minecraft/world/entity/monster/piglin/PiglinBruteAi/lambda$playActivitySound$3 (Lnet/minecraft/world/entity/monster/piglin/PiglinBrute;Lnet/minecraft/world/entity/schedule/Activity;)V +MD: net/minecraft/world/entity/monster/piglin/PiglinBruteAi/m_35105_ ()Lnet/minecraft/world/entity/ai/behavior/RunOne; net/minecraft/world/entity/monster/piglin/PiglinBruteAi/createIdleMovementBehaviors ()Lnet/minecraft/world/entity/ai/behavior/RunOne; +MD: net/minecraft/world/entity/monster/piglin/PiglinBruteAi/m_35106_ (Lnet/minecraft/world/entity/monster/piglin/AbstractPiglin;Lnet/minecraft/world/entity/LivingEntity;)Z net/minecraft/world/entity/monster/piglin/PiglinBruteAi/lambda$getTargetIfWithinRange$2 (Lnet/minecraft/world/entity/monster/piglin/AbstractPiglin;Lnet/minecraft/world/entity/LivingEntity;)Z +MD: net/minecraft/world/entity/monster/piglin/PiglinBruteAi/m_35109_ (Lnet/minecraft/world/entity/monster/piglin/PiglinBrute;)V net/minecraft/world/entity/monster/piglin/PiglinBruteAi/updateActivity (Lnet/minecraft/world/entity/monster/piglin/PiglinBrute;)V +MD: net/minecraft/world/entity/monster/piglin/PiglinBruteAi/m_35111_ (Lnet/minecraft/world/entity/monster/piglin/PiglinBrute;Lnet/minecraft/world/entity/ai/Brain;)V net/minecraft/world/entity/monster/piglin/PiglinBruteAi/initCoreActivity (Lnet/minecraft/world/entity/monster/piglin/PiglinBrute;Lnet/minecraft/world/entity/ai/Brain;)V +MD: net/minecraft/world/entity/monster/piglin/PiglinBruteAi/m_35114_ (Lnet/minecraft/world/entity/monster/piglin/PiglinBrute;)V net/minecraft/world/entity/monster/piglin/PiglinBruteAi/maybePlayActivitySound (Lnet/minecraft/world/entity/monster/piglin/PiglinBrute;)V +MD: net/minecraft/world/entity/monster/piglin/PiglinBruteAi/m_35116_ (Lnet/minecraft/world/entity/monster/piglin/PiglinBrute;Lnet/minecraft/world/entity/LivingEntity;)Z net/minecraft/world/entity/monster/piglin/PiglinBruteAi/lambda$initFightActivity$0 (Lnet/minecraft/world/entity/monster/piglin/PiglinBrute;Lnet/minecraft/world/entity/LivingEntity;)Z +MD: net/minecraft/world/entity/monster/piglin/PiglinBruteAi/m_35119_ (Lnet/minecraft/world/entity/monster/piglin/PiglinBrute;Lnet/minecraft/world/entity/ai/Brain;)V net/minecraft/world/entity/monster/piglin/PiglinBruteAi/initIdleActivity (Lnet/minecraft/world/entity/monster/piglin/PiglinBrute;Lnet/minecraft/world/entity/ai/Brain;)V +MD: net/minecraft/world/entity/monster/piglin/PiglinBruteAi/m_35122_ (Lnet/minecraft/world/entity/monster/piglin/PiglinBrute;)V net/minecraft/world/entity/monster/piglin/PiglinBruteAi/playActivitySound (Lnet/minecraft/world/entity/monster/piglin/PiglinBrute;)V +MD: net/minecraft/world/entity/monster/piglin/PiglinBruteAi/m_35124_ (Lnet/minecraft/world/entity/monster/piglin/PiglinBrute;Lnet/minecraft/world/entity/ai/Brain;)V net/minecraft/world/entity/monster/piglin/PiglinBruteAi/initFightActivity (Lnet/minecraft/world/entity/monster/piglin/PiglinBrute;Lnet/minecraft/world/entity/ai/Brain;)V +MD: net/minecraft/world/entity/monster/piglin/RememberIfHoglinWasKilled/ ()V net/minecraft/world/entity/monster/piglin/RememberIfHoglinWasKilled/ ()V +MD: net/minecraft/world/entity/monster/piglin/RememberIfHoglinWasKilled/m_257643_ (Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/world/entity/monster/piglin/RememberIfHoglinWasKilled/lambda$create$2 (Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/world/entity/monster/piglin/RememberIfHoglinWasKilled/m_257745_ ()Lnet/minecraft/world/entity/ai/behavior/BehaviorControl; net/minecraft/world/entity/monster/piglin/RememberIfHoglinWasKilled/create ()Lnet/minecraft/world/entity/ai/behavior/BehaviorControl; +MD: net/minecraft/world/entity/monster/piglin/RememberIfHoglinWasKilled/m_257939_ (Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;)Lnet/minecraft/world/entity/ai/behavior/declarative/Trigger; net/minecraft/world/entity/monster/piglin/RememberIfHoglinWasKilled/lambda$create$1 (Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;)Lnet/minecraft/world/entity/ai/behavior/declarative/Trigger; +MD: net/minecraft/world/entity/monster/piglin/RememberIfHoglinWasKilled/m_289158_ (Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)Z net/minecraft/world/entity/monster/piglin/RememberIfHoglinWasKilled/lambda$create$0 (Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)Z +MD: net/minecraft/world/entity/monster/piglin/StartAdmiringItemIfSeen/ ()V net/minecraft/world/entity/monster/piglin/StartAdmiringItemIfSeen/ ()V +MD: net/minecraft/world/entity/monster/piglin/StartAdmiringItemIfSeen/m_257667_ (I)Lnet/minecraft/world/entity/ai/behavior/BehaviorControl; net/minecraft/world/entity/monster/piglin/StartAdmiringItemIfSeen/create (I)Lnet/minecraft/world/entity/ai/behavior/BehaviorControl; +MD: net/minecraft/world/entity/monster/piglin/StartAdmiringItemIfSeen/m_257725_ (Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;ILnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;)Lnet/minecraft/world/entity/ai/behavior/declarative/Trigger; net/minecraft/world/entity/monster/piglin/StartAdmiringItemIfSeen/lambda$create$1 (Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;ILnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;)Lnet/minecraft/world/entity/ai/behavior/declarative/Trigger; +MD: net/minecraft/world/entity/monster/piglin/StartAdmiringItemIfSeen/m_257920_ (Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;ILnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)Z net/minecraft/world/entity/monster/piglin/StartAdmiringItemIfSeen/lambda$create$0 (Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;ILnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)Z +MD: net/minecraft/world/entity/monster/piglin/StartAdmiringItemIfSeen/m_258075_ (ILnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/world/entity/monster/piglin/StartAdmiringItemIfSeen/lambda$create$2 (ILnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/world/entity/monster/piglin/StartHuntingHoglin/ ()V net/minecraft/world/entity/monster/piglin/StartHuntingHoglin/ ()V +MD: net/minecraft/world/entity/monster/piglin/StartHuntingHoglin/m_257377_ (Ljava/util/List;)V net/minecraft/world/entity/monster/piglin/StartHuntingHoglin/lambda$create$1 (Ljava/util/List;)V +MD: net/minecraft/world/entity/monster/piglin/StartHuntingHoglin/m_257530_ (Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;)Lnet/minecraft/world/entity/ai/behavior/declarative/Trigger; net/minecraft/world/entity/monster/piglin/StartHuntingHoglin/lambda$create$3 (Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;)Lnet/minecraft/world/entity/ai/behavior/declarative/Trigger; +MD: net/minecraft/world/entity/monster/piglin/StartHuntingHoglin/m_257635_ (Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/world/entity/monster/piglin/StartHuntingHoglin/lambda$create$4 (Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/world/entity/monster/piglin/StartHuntingHoglin/m_257704_ (Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/monster/piglin/Piglin;J)Z net/minecraft/world/entity/monster/piglin/StartHuntingHoglin/lambda$create$2 (Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/monster/piglin/Piglin;J)Z +MD: net/minecraft/world/entity/monster/piglin/StartHuntingHoglin/m_257706_ ()Lnet/minecraft/world/entity/ai/behavior/OneShot; net/minecraft/world/entity/monster/piglin/StartHuntingHoglin/create ()Lnet/minecraft/world/entity/ai/behavior/OneShot; +MD: net/minecraft/world/entity/monster/piglin/StartHuntingHoglin/m_257899_ (Lnet/minecraft/world/entity/monster/piglin/AbstractPiglin;)Z net/minecraft/world/entity/monster/piglin/StartHuntingHoglin/hasHuntedRecently (Lnet/minecraft/world/entity/monster/piglin/AbstractPiglin;)Z +MD: net/minecraft/world/entity/monster/piglin/StartHuntingHoglin/m_257975_ (Ljava/util/List;)Ljava/lang/Boolean; net/minecraft/world/entity/monster/piglin/StartHuntingHoglin/lambda$create$0 (Ljava/util/List;)Ljava/lang/Boolean; +MD: net/minecraft/world/entity/monster/piglin/StopAdmiringIfItemTooFarAway/ ()V net/minecraft/world/entity/monster/piglin/StopAdmiringIfItemTooFarAway/ ()V +MD: net/minecraft/world/entity/monster/piglin/StopAdmiringIfItemTooFarAway/m_257602_ (Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;ILnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)Z net/minecraft/world/entity/monster/piglin/StopAdmiringIfItemTooFarAway/lambda$create$0 (Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;ILnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)Z +MD: net/minecraft/world/entity/monster/piglin/StopAdmiringIfItemTooFarAway/m_257651_ (I)Lnet/minecraft/world/entity/ai/behavior/BehaviorControl; net/minecraft/world/entity/monster/piglin/StopAdmiringIfItemTooFarAway/create (I)Lnet/minecraft/world/entity/ai/behavior/BehaviorControl; +MD: net/minecraft/world/entity/monster/piglin/StopAdmiringIfItemTooFarAway/m_257773_ (Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;ILnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;)Lnet/minecraft/world/entity/ai/behavior/declarative/Trigger; net/minecraft/world/entity/monster/piglin/StopAdmiringIfItemTooFarAway/lambda$create$1 (Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;ILnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;)Lnet/minecraft/world/entity/ai/behavior/declarative/Trigger; +MD: net/minecraft/world/entity/monster/piglin/StopAdmiringIfItemTooFarAway/m_258065_ (ILnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/world/entity/monster/piglin/StopAdmiringIfItemTooFarAway/lambda$create$2 (ILnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/world/entity/monster/piglin/StopAdmiringIfTiredOfTryingToReachItem/ ()V net/minecraft/world/entity/monster/piglin/StopAdmiringIfTiredOfTryingToReachItem/ ()V +MD: net/minecraft/world/entity/monster/piglin/StopAdmiringIfTiredOfTryingToReachItem/m_257597_ (Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;IILnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;)Lnet/minecraft/world/entity/ai/behavior/declarative/Trigger; net/minecraft/world/entity/monster/piglin/StopAdmiringIfTiredOfTryingToReachItem/lambda$create$1 (Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;IILnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;)Lnet/minecraft/world/entity/ai/behavior/declarative/Trigger; +MD: net/minecraft/world/entity/monster/piglin/StopAdmiringIfTiredOfTryingToReachItem/m_257715_ (II)Lnet/minecraft/world/entity/ai/behavior/BehaviorControl; net/minecraft/world/entity/monster/piglin/StopAdmiringIfTiredOfTryingToReachItem/create (II)Lnet/minecraft/world/entity/ai/behavior/BehaviorControl; +MD: net/minecraft/world/entity/monster/piglin/StopAdmiringIfTiredOfTryingToReachItem/m_257859_ (Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;ILnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;ILnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)Z net/minecraft/world/entity/monster/piglin/StopAdmiringIfTiredOfTryingToReachItem/lambda$create$0 (Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;ILnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;ILnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;J)Z +MD: net/minecraft/world/entity/monster/piglin/StopAdmiringIfTiredOfTryingToReachItem/m_257983_ (IILnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/world/entity/monster/piglin/StopAdmiringIfTiredOfTryingToReachItem/lambda$create$2 (IILnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/world/entity/monster/piglin/StopHoldingItemIfNoLongerAdmiring/ ()V net/minecraft/world/entity/monster/piglin/StopHoldingItemIfNoLongerAdmiring/ ()V +MD: net/minecraft/world/entity/monster/piglin/StopHoldingItemIfNoLongerAdmiring/m_257649_ (Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/world/entity/monster/piglin/StopHoldingItemIfNoLongerAdmiring/lambda$create$2 (Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/world/entity/monster/piglin/StopHoldingItemIfNoLongerAdmiring/m_257718_ ()Lnet/minecraft/world/entity/ai/behavior/BehaviorControl; net/minecraft/world/entity/monster/piglin/StopHoldingItemIfNoLongerAdmiring/create ()Lnet/minecraft/world/entity/ai/behavior/BehaviorControl; +MD: net/minecraft/world/entity/monster/piglin/StopHoldingItemIfNoLongerAdmiring/m_257846_ (Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;)Lnet/minecraft/world/entity/ai/behavior/declarative/Trigger; net/minecraft/world/entity/monster/piglin/StopHoldingItemIfNoLongerAdmiring/lambda$create$1 (Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;)Lnet/minecraft/world/entity/ai/behavior/declarative/Trigger; +MD: net/minecraft/world/entity/monster/piglin/StopHoldingItemIfNoLongerAdmiring/m_289159_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/monster/piglin/Piglin;J)Z net/minecraft/world/entity/monster/piglin/StopHoldingItemIfNoLongerAdmiring/lambda$create$0 (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/monster/piglin/Piglin;J)Z +MD: net/minecraft/world/entity/monster/warden/AngerLevel/ ()V net/minecraft/world/entity/monster/warden/AngerLevel/ ()V +MD: net/minecraft/world/entity/monster/warden/AngerLevel/ (Ljava/lang/String;IILnet/minecraft/sounds/SoundEvent;Lnet/minecraft/sounds/SoundEvent;)V net/minecraft/world/entity/monster/warden/AngerLevel/ (Ljava/lang/String;IILnet/minecraft/sounds/SoundEvent;Lnet/minecraft/sounds/SoundEvent;)V +MD: net/minecraft/world/entity/monster/warden/AngerLevel/m_219226_ ()I net/minecraft/world/entity/monster/warden/AngerLevel/getMinimumAnger ()I +MD: net/minecraft/world/entity/monster/warden/AngerLevel/m_219227_ (I)Lnet/minecraft/world/entity/monster/warden/AngerLevel; net/minecraft/world/entity/monster/warden/AngerLevel/byAnger (I)Lnet/minecraft/world/entity/monster/warden/AngerLevel; +MD: net/minecraft/world/entity/monster/warden/AngerLevel/m_219229_ (Lnet/minecraft/world/entity/monster/warden/AngerLevel;Lnet/minecraft/world/entity/monster/warden/AngerLevel;)I net/minecraft/world/entity/monster/warden/AngerLevel/lambda$static$0 (Lnet/minecraft/world/entity/monster/warden/AngerLevel;Lnet/minecraft/world/entity/monster/warden/AngerLevel;)I +MD: net/minecraft/world/entity/monster/warden/AngerLevel/m_219232_ ([Lnet/minecraft/world/entity/monster/warden/AngerLevel;)V net/minecraft/world/entity/monster/warden/AngerLevel/lambda$static$1 ([Lnet/minecraft/world/entity/monster/warden/AngerLevel;)V +MD: net/minecraft/world/entity/monster/warden/AngerLevel/m_219234_ ()Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/monster/warden/AngerLevel/getAmbientSound ()Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/monster/warden/AngerLevel/m_219235_ ()Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/monster/warden/AngerLevel/getListeningSound ()Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/monster/warden/AngerLevel/m_219236_ ()Z net/minecraft/world/entity/monster/warden/AngerLevel/isAngry ()Z +MD: net/minecraft/world/entity/monster/warden/AngerLevel/m_219237_ ()[Lnet/minecraft/world/entity/monster/warden/AngerLevel; net/minecraft/world/entity/monster/warden/AngerLevel/$values ()[Lnet/minecraft/world/entity/monster/warden/AngerLevel; +MD: net/minecraft/world/entity/monster/warden/AngerLevel/valueOf (Ljava/lang/String;)Lnet/minecraft/world/entity/monster/warden/AngerLevel; net/minecraft/world/entity/monster/warden/AngerLevel/valueOf (Ljava/lang/String;)Lnet/minecraft/world/entity/monster/warden/AngerLevel; +MD: net/minecraft/world/entity/monster/warden/AngerLevel/values ()[Lnet/minecraft/world/entity/monster/warden/AngerLevel; net/minecraft/world/entity/monster/warden/AngerLevel/values ()[Lnet/minecraft/world/entity/monster/warden/AngerLevel; +MD: net/minecraft/world/entity/monster/warden/AngerManagement/ ()V net/minecraft/world/entity/monster/warden/AngerManagement/ ()V +MD: net/minecraft/world/entity/monster/warden/AngerManagement/ (Ljava/util/function/Predicate;Ljava/util/List;)V net/minecraft/world/entity/monster/warden/AngerManagement/ (Ljava/util/function/Predicate;Ljava/util/List;)V +MD: net/minecraft/world/entity/monster/warden/AngerManagement/m_219256_ ()Ljava/util/Optional; net/minecraft/world/entity/monster/warden/AngerManagement/getActiveEntity ()Ljava/util/Optional; +MD: net/minecraft/world/entity/monster/warden/AngerManagement/m_219257_ (ILnet/minecraft/world/entity/Entity;Ljava/lang/Integer;)Ljava/lang/Integer; net/minecraft/world/entity/monster/warden/AngerManagement/lambda$increaseAnger$6 (ILnet/minecraft/world/entity/Entity;Ljava/lang/Integer;)Ljava/lang/Integer; +MD: net/minecraft/world/entity/monster/warden/AngerManagement/m_219261_ (Lnet/minecraft/server/level/ServerLevel;)V net/minecraft/world/entity/monster/warden/AngerManagement/convertFromUuids (Lnet/minecraft/server/level/ServerLevel;)V +MD: net/minecraft/world/entity/monster/warden/AngerManagement/m_219263_ (Lnet/minecraft/server/level/ServerLevel;Ljava/util/function/Predicate;)V net/minecraft/world/entity/monster/warden/AngerManagement/tick (Lnet/minecraft/server/level/ServerLevel;Ljava/util/function/Predicate;)V +MD: net/minecraft/world/entity/monster/warden/AngerManagement/m_219266_ (Lnet/minecraft/world/entity/Entity;)V net/minecraft/world/entity/monster/warden/AngerManagement/clearAnger (Lnet/minecraft/world/entity/Entity;)V +MD: net/minecraft/world/entity/monster/warden/AngerManagement/m_219268_ (Lnet/minecraft/world/entity/Entity;I)I net/minecraft/world/entity/monster/warden/AngerManagement/increaseAnger (Lnet/minecraft/world/entity/Entity;I)I +MD: net/minecraft/world/entity/monster/warden/AngerManagement/m_219271_ (Lcom/mojang/datafixers/util/Pair;)V net/minecraft/world/entity/monster/warden/AngerManagement/lambda$new$3 (Lcom/mojang/datafixers/util/Pair;)V +MD: net/minecraft/world/entity/monster/warden/AngerManagement/m_219275_ (Lit/unimi/dsi/fastutil/objects/Object2IntMap$Entry;)Lcom/mojang/datafixers/util/Pair; net/minecraft/world/entity/monster/warden/AngerManagement/lambda$createUuidAngerPairs$5 (Lit/unimi/dsi/fastutil/objects/Object2IntMap$Entry;)Lcom/mojang/datafixers/util/Pair; +MD: net/minecraft/world/entity/monster/warden/AngerManagement/m_219277_ (Ljava/util/function/Predicate;)Lcom/mojang/serialization/Codec; net/minecraft/world/entity/monster/warden/AngerManagement/codec (Ljava/util/function/Predicate;)Lcom/mojang/serialization/Codec; +MD: net/minecraft/world/entity/monster/warden/AngerManagement/m_219279_ (Ljava/util/function/Predicate;Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/world/entity/monster/warden/AngerManagement/lambda$codec$2 (Ljava/util/function/Predicate;Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/world/entity/monster/warden/AngerManagement/m_219282_ (Ljava/util/function/Predicate;Ljava/util/List;)Lnet/minecraft/world/entity/monster/warden/AngerManagement; net/minecraft/world/entity/monster/warden/AngerManagement/lambda$codec$1 (Ljava/util/function/Predicate;Ljava/util/List;)Lnet/minecraft/world/entity/monster/warden/AngerManagement; +MD: net/minecraft/world/entity/monster/warden/AngerManagement/m_219285_ ()Ljava/util/List; net/minecraft/world/entity/monster/warden/AngerManagement/createUuidAngerPairs ()Ljava/util/List; +MD: net/minecraft/world/entity/monster/warden/AngerManagement/m_219286_ (Lnet/minecraft/world/entity/Entity;)I net/minecraft/world/entity/monster/warden/AngerManagement/getActiveAnger (Lnet/minecraft/world/entity/Entity;)I +MD: net/minecraft/world/entity/monster/warden/AngerManagement/m_219288_ ()V net/minecraft/world/entity/monster/warden/AngerManagement/sortAndUpdateHighestAnger ()V +MD: net/minecraft/world/entity/monster/warden/AngerManagement/m_219289_ (Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/world/entity/LivingEntity; net/minecraft/world/entity/monster/warden/AngerManagement/lambda$getActiveEntity$8 (Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/world/entity/LivingEntity; +MD: net/minecraft/world/entity/monster/warden/AngerManagement/m_219291_ ()Lnet/minecraft/world/entity/Entity; net/minecraft/world/entity/monster/warden/AngerManagement/getTopSuspect ()Lnet/minecraft/world/entity/Entity; +MD: net/minecraft/world/entity/monster/warden/AngerManagement/m_219292_ (Lnet/minecraft/world/entity/Entity;)Z net/minecraft/world/entity/monster/warden/AngerManagement/lambda$getActiveEntity$7 (Lnet/minecraft/world/entity/Entity;)Z +MD: net/minecraft/world/entity/monster/warden/AngerManagement/m_219294_ (Lnet/minecraft/world/entity/Entity;)Lcom/mojang/datafixers/util/Pair; net/minecraft/world/entity/monster/warden/AngerManagement/lambda$createUuidAngerPairs$4 (Lnet/minecraft/world/entity/Entity;)Lcom/mojang/datafixers/util/Pair; +MD: net/minecraft/world/entity/monster/warden/AngerManagement/m_252714_ (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/world/entity/monster/warden/AngerManagement/lambda$static$0 (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/world/entity/monster/warden/AngerManagement$1/ ()V net/minecraft/world/entity/monster/warden/AngerManagement$1/ ()V +MD: net/minecraft/world/entity/monster/warden/AngerManagement$Sorter/ (Lnet/minecraft/world/entity/monster/warden/AngerManagement;)V net/minecraft/world/entity/monster/warden/AngerManagement$Sorter/ (Lnet/minecraft/world/entity/monster/warden/AngerManagement;)V +MD: net/minecraft/world/entity/monster/warden/AngerManagement$Sorter/compare (Ljava/lang/Object;Ljava/lang/Object;)I net/minecraft/world/entity/monster/warden/AngerManagement$Sorter/compare (Ljava/lang/Object;Ljava/lang/Object;)I +MD: net/minecraft/world/entity/monster/warden/AngerManagement$Sorter/compare (Lnet/minecraft/world/entity/Entity;Lnet/minecraft/world/entity/Entity;)I net/minecraft/world/entity/monster/warden/AngerManagement$Sorter/compare (Lnet/minecraft/world/entity/Entity;Lnet/minecraft/world/entity/Entity;)I +MD: net/minecraft/world/entity/monster/warden/AngerManagement$Sorter/equals (Ljava/lang/Object;)Z net/minecraft/world/entity/monster/warden/AngerManagement$Sorter/equals (Ljava/lang/Object;)Z +MD: net/minecraft/world/entity/monster/warden/AngerManagement$Sorter/f_219298_ ()Lnet/minecraft/world/entity/monster/warden/AngerManagement; net/minecraft/world/entity/monster/warden/AngerManagement$Sorter/angerManagement ()Lnet/minecraft/world/entity/monster/warden/AngerManagement; +MD: net/minecraft/world/entity/monster/warden/AngerManagement$Sorter/hashCode ()I net/minecraft/world/entity/monster/warden/AngerManagement$Sorter/hashCode ()I +MD: net/minecraft/world/entity/monster/warden/AngerManagement$Sorter/toString ()Ljava/lang/String; net/minecraft/world/entity/monster/warden/AngerManagement$Sorter/toString ()Ljava/lang/String; +MD: net/minecraft/world/entity/monster/warden/Warden/ ()V net/minecraft/world/entity/monster/warden/Warden/ ()V +MD: net/minecraft/world/entity/monster/warden/Warden/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V net/minecraft/world/entity/monster/warden/Warden/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V +MD: net/minecraft/world/entity/monster/warden/Warden/m_141965_ (Lnet/minecraft/network/protocol/game/ClientboundAddEntityPacket;)V net/minecraft/world/entity/monster/warden/Warden/recreateFromPacket (Lnet/minecraft/network/protocol/game/ClientboundAddEntityPacket;)V +MD: net/minecraft/world/entity/monster/warden/Warden/m_213651_ (Ljava/util/function/BiConsumer;)V net/minecraft/world/entity/monster/warden/Warden/updateDynamicGameEventListener (Ljava/util/function/BiConsumer;)V +MD: net/minecraft/world/entity/monster/warden/Warden/m_213824_ ()Z net/minecraft/world/entity/monster/warden/Warden/canDisableShield ()Z +MD: net/minecraft/world/entity/monster/warden/Warden/m_213854_ ()Z net/minecraft/world/entity/monster/warden/Warden/dampensVibrations ()Z +MD: net/minecraft/world/entity/monster/warden/Warden/m_219375_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/phys/Vec3;Lnet/minecraft/world/entity/Entity;I)V net/minecraft/world/entity/monster/warden/Warden/applyDarknessAround (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/phys/Vec3;Lnet/minecraft/world/entity/Entity;I)V +MD: net/minecraft/world/entity/monster/warden/Warden/m_219383_ (Lnet/minecraft/world/entity/AnimationState;)V net/minecraft/world/entity/monster/warden/Warden/clientDiggingParticles (Lnet/minecraft/world/entity/AnimationState;)V +MD: net/minecraft/world/entity/monster/warden/Warden/m_219385_ (Lnet/minecraft/world/entity/Entity;)Z net/minecraft/world/entity/monster/warden/Warden/canTargetEntity (Lnet/minecraft/world/entity/Entity;)Z +MD: net/minecraft/world/entity/monster/warden/Warden/m_219387_ (Lnet/minecraft/world/entity/Entity;IZ)V net/minecraft/world/entity/monster/warden/Warden/increaseAngerAt (Lnet/minecraft/world/entity/Entity;IZ)V +MD: net/minecraft/world/entity/monster/warden/Warden/m_219393_ (Lnet/minecraft/world/entity/monster/warden/AngerManagement;)V net/minecraft/world/entity/monster/warden/Warden/lambda$readAdditionalSaveData$2 (Lnet/minecraft/world/entity/monster/warden/AngerManagement;)V +MD: net/minecraft/world/entity/monster/warden/Warden/m_219416_ (Lnet/minecraft/nbt/CompoundTag;Lnet/minecraft/nbt/Tag;)V net/minecraft/world/entity/monster/warden/Warden/lambda$addAdditionalSaveData$1 (Lnet/minecraft/nbt/CompoundTag;Lnet/minecraft/nbt/Tag;)V +MD: net/minecraft/world/entity/monster/warden/Warden/m_219428_ (Lnet/minecraft/world/entity/Entity;)V net/minecraft/world/entity/monster/warden/Warden/clearAnger (Lnet/minecraft/world/entity/Entity;)V +MD: net/minecraft/world/entity/monster/warden/Warden/m_219435_ (Lnet/minecraft/nbt/CompoundTag;Lnet/minecraft/nbt/Tag;)V net/minecraft/world/entity/monster/warden/Warden/lambda$addAdditionalSaveData$0 (Lnet/minecraft/nbt/CompoundTag;Lnet/minecraft/nbt/Tag;)V +MD: net/minecraft/world/entity/monster/warden/Warden/m_219441_ (Lnet/minecraft/world/entity/Entity;)V net/minecraft/world/entity/monster/warden/Warden/increaseAngerAt (Lnet/minecraft/world/entity/Entity;)V +MD: net/minecraft/world/entity/monster/warden/Warden/m_219446_ ()Lnet/minecraft/world/entity/monster/warden/AngerLevel; net/minecraft/world/entity/monster/warden/Warden/getAngerLevel ()Lnet/minecraft/world/entity/monster/warden/AngerLevel; +MD: net/minecraft/world/entity/monster/warden/Warden/m_219448_ ()Ljava/util/Optional; net/minecraft/world/entity/monster/warden/Warden/getEntityAngryAt ()Ljava/util/Optional; +MD: net/minecraft/world/entity/monster/warden/Warden/m_219449_ ()Lnet/minecraft/world/entity/monster/warden/AngerManagement; net/minecraft/world/entity/monster/warden/Warden/getAngerManagement ()Lnet/minecraft/world/entity/monster/warden/AngerManagement; +MD: net/minecraft/world/entity/monster/warden/Warden/m_219450_ ()Z net/minecraft/world/entity/monster/warden/Warden/isDiggingOrEmerging ()Z +MD: net/minecraft/world/entity/monster/warden/Warden/m_219451_ ()V net/minecraft/world/entity/monster/warden/Warden/syncClientAngerLevel ()V +MD: net/minecraft/world/entity/monster/warden/Warden/m_219452_ ()I net/minecraft/world/entity/monster/warden/Warden/getHeartBeatDelay ()I +MD: net/minecraft/world/entity/monster/warden/Warden/m_219453_ ()V net/minecraft/world/entity/monster/warden/Warden/playListeningSound ()V +MD: net/minecraft/world/entity/monster/warden/Warden/m_219454_ ()I net/minecraft/world/entity/monster/warden/Warden/getActiveAnger ()I +MD: net/minecraft/world/entity/monster/warden/Warden/m_219459_ (Lnet/minecraft/world/entity/LivingEntity;)V net/minecraft/world/entity/monster/warden/Warden/setAttackTarget (Lnet/minecraft/world/entity/LivingEntity;)V +MD: net/minecraft/world/entity/monster/warden/Warden/m_219463_ ()Lnet/minecraft/world/entity/ai/attributes/AttributeSupplier$Builder; net/minecraft/world/entity/monster/warden/Warden/createAttributes ()Lnet/minecraft/world/entity/ai/attributes/AttributeSupplier$Builder; +MD: net/minecraft/world/entity/monster/warden/Warden/m_219464_ ()I net/minecraft/world/entity/monster/warden/Warden/getClientAngerLevel ()I +MD: net/minecraft/world/entity/monster/warden/Warden/m_219467_ (F)F net/minecraft/world/entity/monster/warden/Warden/getTendrilAnimation (F)F +MD: net/minecraft/world/entity/monster/warden/Warden/m_219469_ (F)F net/minecraft/world/entity/monster/warden/Warden/getHeartAnimation (F)F +MD: net/minecraft/world/entity/monster/warden/Warden/m_279938_ (Lnet/minecraft/world/level/gameevent/vibrations/VibrationSystem$Data;)V net/minecraft/world/entity/monster/warden/Warden/lambda$readAdditionalSaveData$3 (Lnet/minecraft/world/level/gameevent/vibrations/VibrationSystem$Data;)V +MD: net/minecraft/world/entity/monster/warden/Warden/m_280002_ ()Lnet/minecraft/world/level/gameevent/vibrations/VibrationSystem$Data; net/minecraft/world/entity/monster/warden/Warden/getVibrationData ()Lnet/minecraft/world/level/gameevent/vibrations/VibrationSystem$Data; +MD: net/minecraft/world/entity/monster/warden/Warden/m_280253_ (Lnet/minecraft/world/entity/monster/warden/Warden;)Lnet/minecraft/world/entity/ai/Brain; net/minecraft/world/entity/monster/warden/Warden/access$000 (Lnet/minecraft/world/entity/monster/warden/Warden;)Lnet/minecraft/world/entity/ai/Brain; +MD: net/minecraft/world/entity/monster/warden/Warden/m_280445_ ()Lnet/minecraft/world/level/gameevent/vibrations/VibrationSystem$User; net/minecraft/world/entity/monster/warden/Warden/getVibrationUser ()Lnet/minecraft/world/level/gameevent/vibrations/VibrationSystem$User; +MD: net/minecraft/world/entity/monster/warden/Warden/m_5448_ ()Lnet/minecraft/world/entity/LivingEntity; net/minecraft/world/entity/monster/warden/Warden/getTarget ()Lnet/minecraft/world/entity/LivingEntity; +MD: net/minecraft/world/entity/monster/warden/Warden/m_5592_ ()Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/monster/warden/Warden/getDeathSound ()Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/monster/warden/Warden/m_5610_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/LevelReader;)F net/minecraft/world/entity/monster/warden/Warden/getWalkTargetValue (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/LevelReader;)F +MD: net/minecraft/world/entity/monster/warden/Warden/m_5654_ ()Lnet/minecraft/network/protocol/Packet; net/minecraft/world/entity/monster/warden/Warden/getAddEntityPacket ()Lnet/minecraft/network/protocol/Packet; +MD: net/minecraft/world/entity/monster/warden/Warden/m_6037_ (Lnet/minecraft/world/level/Level;)Lnet/minecraft/world/entity/ai/navigation/PathNavigation; net/minecraft/world/entity/monster/warden/Warden/createNavigation (Lnet/minecraft/world/level/Level;)Lnet/minecraft/world/entity/ai/navigation/PathNavigation; +MD: net/minecraft/world/entity/monster/warden/Warden/m_6059_ ()F net/minecraft/world/entity/monster/warden/Warden/nextStep ()F +MD: net/minecraft/world/entity/monster/warden/Warden/m_6094_ ()Z net/minecraft/world/entity/monster/warden/Warden/isPushable ()Z +MD: net/minecraft/world/entity/monster/warden/Warden/m_6121_ ()F net/minecraft/world/entity/monster/warden/Warden/getSoundVolume ()F +MD: net/minecraft/world/entity/monster/warden/Warden/m_6128_ ()Z net/minecraft/world/entity/monster/warden/Warden/ignoreExplosion ()Z +MD: net/minecraft/world/entity/monster/warden/Warden/m_6274_ ()Lnet/minecraft/world/entity/ai/Brain; net/minecraft/world/entity/monster/warden/Warden/getBrain ()Lnet/minecraft/world/entity/ai/Brain; +MD: net/minecraft/world/entity/monster/warden/Warden/m_6469_ (Lnet/minecraft/world/damagesource/DamageSource;F)Z net/minecraft/world/entity/monster/warden/Warden/hurt (Lnet/minecraft/world/damagesource/DamageSource;F)Z +MD: net/minecraft/world/entity/monster/warden/Warden/m_6518_ (Lnet/minecraft/world/level/ServerLevelAccessor;Lnet/minecraft/world/DifficultyInstance;Lnet/minecraft/world/entity/MobSpawnType;Lnet/minecraft/world/entity/SpawnGroupData;Lnet/minecraft/nbt/CompoundTag;)Lnet/minecraft/world/entity/SpawnGroupData; net/minecraft/world/entity/monster/warden/Warden/finalizeSpawn (Lnet/minecraft/world/level/ServerLevelAccessor;Lnet/minecraft/world/DifficultyInstance;Lnet/minecraft/world/entity/MobSpawnType;Lnet/minecraft/world/entity/SpawnGroupData;Lnet/minecraft/nbt/CompoundTag;)Lnet/minecraft/world/entity/SpawnGroupData; +MD: net/minecraft/world/entity/monster/warden/Warden/m_6673_ (Lnet/minecraft/world/damagesource/DamageSource;)Z net/minecraft/world/entity/monster/warden/Warden/isInvulnerableTo (Lnet/minecraft/world/damagesource/DamageSource;)Z +MD: net/minecraft/world/entity/monster/warden/Warden/m_6785_ (D)Z net/minecraft/world/entity/monster/warden/Warden/removeWhenFarAway (D)Z +MD: net/minecraft/world/entity/monster/warden/Warden/m_6914_ (Lnet/minecraft/world/level/LevelReader;)Z net/minecraft/world/entity/monster/warden/Warden/checkSpawnObstruction (Lnet/minecraft/world/level/LevelReader;)Z +MD: net/minecraft/world/entity/monster/warden/Warden/m_6972_ (Lnet/minecraft/world/entity/Pose;)Lnet/minecraft/world/entity/EntityDimensions; net/minecraft/world/entity/monster/warden/Warden/getDimensions (Lnet/minecraft/world/entity/Pose;)Lnet/minecraft/world/entity/EntityDimensions; +MD: net/minecraft/world/entity/monster/warden/Warden/m_7324_ (Lnet/minecraft/world/entity/Entity;)V net/minecraft/world/entity/monster/warden/Warden/doPush (Lnet/minecraft/world/entity/Entity;)V +MD: net/minecraft/world/entity/monster/warden/Warden/m_7327_ (Lnet/minecraft/world/entity/Entity;)Z net/minecraft/world/entity/monster/warden/Warden/doHurtTarget (Lnet/minecraft/world/entity/Entity;)Z +MD: net/minecraft/world/entity/monster/warden/Warden/m_7341_ (Lnet/minecraft/world/entity/Entity;)Z net/minecraft/world/entity/monster/warden/Warden/canRide (Lnet/minecraft/world/entity/Entity;)Z +MD: net/minecraft/world/entity/monster/warden/Warden/m_7350_ (Lnet/minecraft/network/syncher/EntityDataAccessor;)V net/minecraft/world/entity/monster/warden/Warden/onSyncedDataUpdated (Lnet/minecraft/network/syncher/EntityDataAccessor;)V +MD: net/minecraft/world/entity/monster/warden/Warden/m_7355_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V net/minecraft/world/entity/monster/warden/Warden/playStepSound (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V +MD: net/minecraft/world/entity/monster/warden/Warden/m_7378_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/entity/monster/warden/Warden/readAdditionalSaveData (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/entity/monster/warden/Warden/m_7380_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/entity/monster/warden/Warden/addAdditionalSaveData (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/entity/monster/warden/Warden/m_7515_ ()Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/monster/warden/Warden/getAmbientSound ()Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/monster/warden/Warden/m_7822_ (B)V net/minecraft/world/entity/monster/warden/Warden/handleEntityEvent (B)V +MD: net/minecraft/world/entity/monster/warden/Warden/m_7975_ (Lnet/minecraft/world/damagesource/DamageSource;)Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/monster/warden/Warden/getHurtSound (Lnet/minecraft/world/damagesource/DamageSource;)Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/monster/warden/Warden/m_8024_ ()V net/minecraft/world/entity/monster/warden/Warden/customServerAiStep ()V +MD: net/minecraft/world/entity/monster/warden/Warden/m_8025_ ()V net/minecraft/world/entity/monster/warden/Warden/sendDebugPackets ()V +MD: net/minecraft/world/entity/monster/warden/Warden/m_8075_ (Lcom/mojang/serialization/Dynamic;)Lnet/minecraft/world/entity/ai/Brain; net/minecraft/world/entity/monster/warden/Warden/makeBrain (Lcom/mojang/serialization/Dynamic;)Lnet/minecraft/world/entity/ai/Brain; +MD: net/minecraft/world/entity/monster/warden/Warden/m_8097_ ()V net/minecraft/world/entity/monster/warden/Warden/defineSynchedData ()V +MD: net/minecraft/world/entity/monster/warden/Warden/m_8119_ ()V net/minecraft/world/entity/monster/warden/Warden/tick ()V +MD: net/minecraft/world/entity/monster/warden/Warden$1/ (Lnet/minecraft/world/entity/monster/warden/Warden;Lnet/minecraft/world/entity/Mob;Lnet/minecraft/world/level/Level;)V net/minecraft/world/entity/monster/warden/Warden$1/ (Lnet/minecraft/world/entity/monster/warden/Warden;Lnet/minecraft/world/entity/Mob;Lnet/minecraft/world/level/Level;)V +MD: net/minecraft/world/entity/monster/warden/Warden$1/m_5532_ (I)Lnet/minecraft/world/level/pathfinder/PathFinder; net/minecraft/world/entity/monster/warden/Warden$1/createPathFinder (I)Lnet/minecraft/world/level/pathfinder/PathFinder; +MD: net/minecraft/world/entity/monster/warden/Warden$1$1/ (Lnet/minecraft/world/entity/monster/warden/Warden$1;Lnet/minecraft/world/level/pathfinder/NodeEvaluator;I)V net/minecraft/world/entity/monster/warden/Warden$1$1/ (Lnet/minecraft/world/entity/monster/warden/Warden$1;Lnet/minecraft/world/level/pathfinder/NodeEvaluator;I)V +MD: net/minecraft/world/entity/monster/warden/Warden$1$1/m_214208_ (Lnet/minecraft/world/level/pathfinder/Node;Lnet/minecraft/world/level/pathfinder/Node;)F net/minecraft/world/entity/monster/warden/Warden$1$1/distance (Lnet/minecraft/world/level/pathfinder/Node;Lnet/minecraft/world/level/pathfinder/Node;)F +MD: net/minecraft/world/entity/monster/warden/Warden$2/ ()V net/minecraft/world/entity/monster/warden/Warden$2/ ()V +MD: net/minecraft/world/entity/monster/warden/Warden$VibrationUser/ (Lnet/minecraft/world/entity/monster/warden/Warden;)V net/minecraft/world/entity/monster/warden/Warden$VibrationUser/ (Lnet/minecraft/world/entity/monster/warden/Warden;)V +MD: net/minecraft/world/entity/monster/warden/Warden$VibrationUser/m_280010_ ()Lnet/minecraft/world/level/gameevent/PositionSource; net/minecraft/world/entity/monster/warden/Warden$VibrationUser/getPositionSource ()Lnet/minecraft/world/level/gameevent/PositionSource; +MD: net/minecraft/world/entity/monster/warden/Warden$VibrationUser/m_280028_ ()Lnet/minecraft/tags/TagKey; net/minecraft/world/entity/monster/warden/Warden$VibrationUser/getListenableEvents ()Lnet/minecraft/tags/TagKey; +MD: net/minecraft/world/entity/monster/warden/Warden$VibrationUser/m_280076_ ()Z net/minecraft/world/entity/monster/warden/Warden$VibrationUser/canTriggerAvoidVibration ()Z +MD: net/minecraft/world/entity/monster/warden/Warden$VibrationUser/m_280080_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/gameevent/GameEvent;Lnet/minecraft/world/level/gameevent/GameEvent$Context;)Z net/minecraft/world/entity/monster/warden/Warden$VibrationUser/canReceiveVibration (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/gameevent/GameEvent;Lnet/minecraft/world/level/gameevent/GameEvent$Context;)Z +MD: net/minecraft/world/entity/monster/warden/Warden$VibrationUser/m_280271_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/gameevent/GameEvent;Lnet/minecraft/world/entity/Entity;Lnet/minecraft/world/entity/Entity;F)V net/minecraft/world/entity/monster/warden/Warden$VibrationUser/onReceiveVibration (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/gameevent/GameEvent;Lnet/minecraft/world/entity/Entity;Lnet/minecraft/world/entity/Entity;F)V +MD: net/minecraft/world/entity/monster/warden/Warden$VibrationUser/m_280351_ ()I net/minecraft/world/entity/monster/warden/Warden$VibrationUser/getListenerRadius ()I +MD: net/minecraft/world/entity/monster/warden/WardenAi/ ()V net/minecraft/world/entity/monster/warden/WardenAi/ ()V +MD: net/minecraft/world/entity/monster/warden/WardenAi/ ()V net/minecraft/world/entity/monster/warden/WardenAi/ ()V +MD: net/minecraft/world/entity/monster/warden/WardenAi/m_219505_ (Lnet/minecraft/world/entity/LivingEntity;)V net/minecraft/world/entity/monster/warden/WardenAi/setDigCooldown (Lnet/minecraft/world/entity/LivingEntity;)V +MD: net/minecraft/world/entity/monster/warden/WardenAi/m_219507_ (Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/entity/LivingEntity;)Z net/minecraft/world/entity/monster/warden/WardenAi/lambda$isTarget$5 (Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/entity/LivingEntity;)Z +MD: net/minecraft/world/entity/monster/warden/WardenAi/m_219510_ (Lnet/minecraft/world/entity/ai/Brain;)V net/minecraft/world/entity/monster/warden/WardenAi/initCoreActivity (Lnet/minecraft/world/entity/ai/Brain;)V +MD: net/minecraft/world/entity/monster/warden/WardenAi/m_219512_ (Lnet/minecraft/world/entity/monster/warden/Warden;)V net/minecraft/world/entity/monster/warden/WardenAi/updateActivity (Lnet/minecraft/world/entity/monster/warden/Warden;)V +MD: net/minecraft/world/entity/monster/warden/WardenAi/m_219514_ (Lnet/minecraft/world/entity/monster/warden/Warden;Lnet/minecraft/world/entity/LivingEntity;)Z net/minecraft/world/entity/monster/warden/WardenAi/isTarget (Lnet/minecraft/world/entity/monster/warden/Warden;Lnet/minecraft/world/entity/LivingEntity;)Z +MD: net/minecraft/world/entity/monster/warden/WardenAi/m_219517_ (Lnet/minecraft/world/entity/monster/warden/Warden;Lnet/minecraft/world/entity/ai/Brain;)V net/minecraft/world/entity/monster/warden/WardenAi/initFightActivity (Lnet/minecraft/world/entity/monster/warden/Warden;Lnet/minecraft/world/entity/ai/Brain;)V +MD: net/minecraft/world/entity/monster/warden/WardenAi/m_219520_ (Lnet/minecraft/world/entity/monster/warden/Warden;Lcom/mojang/serialization/Dynamic;)Lnet/minecraft/world/entity/ai/Brain; net/minecraft/world/entity/monster/warden/WardenAi/makeBrain (Lnet/minecraft/world/entity/monster/warden/Warden;Lcom/mojang/serialization/Dynamic;)Lnet/minecraft/world/entity/ai/Brain; +MD: net/minecraft/world/entity/monster/warden/WardenAi/m_219523_ (Lnet/minecraft/world/entity/monster/warden/Warden;Lnet/minecraft/core/BlockPos;)V net/minecraft/world/entity/monster/warden/WardenAi/setDisturbanceLocation (Lnet/minecraft/world/entity/monster/warden/Warden;Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/world/entity/monster/warden/WardenAi/m_219526_ (Lnet/minecraft/world/entity/ai/Brain;)V net/minecraft/world/entity/monster/warden/WardenAi/initEmergeActivity (Lnet/minecraft/world/entity/ai/Brain;)V +MD: net/minecraft/world/entity/monster/warden/WardenAi/m_219528_ (Lnet/minecraft/world/entity/monster/warden/Warden;Lnet/minecraft/world/entity/LivingEntity;)V net/minecraft/world/entity/monster/warden/WardenAi/onTargetInvalid (Lnet/minecraft/world/entity/monster/warden/Warden;Lnet/minecraft/world/entity/LivingEntity;)V +MD: net/minecraft/world/entity/monster/warden/WardenAi/m_219531_ (Lnet/minecraft/world/entity/ai/Brain;)V net/minecraft/world/entity/monster/warden/WardenAi/initDiggingActivity (Lnet/minecraft/world/entity/ai/Brain;)V +MD: net/minecraft/world/entity/monster/warden/WardenAi/m_219533_ (Lnet/minecraft/world/entity/monster/warden/Warden;Lnet/minecraft/world/entity/LivingEntity;)Z net/minecraft/world/entity/monster/warden/WardenAi/lambda$initFightActivity$4 (Lnet/minecraft/world/entity/monster/warden/Warden;Lnet/minecraft/world/entity/LivingEntity;)Z +MD: net/minecraft/world/entity/monster/warden/WardenAi/m_219536_ (Lnet/minecraft/world/entity/ai/Brain;)V net/minecraft/world/entity/monster/warden/WardenAi/initIdleActivity (Lnet/minecraft/world/entity/ai/Brain;)V +MD: net/minecraft/world/entity/monster/warden/WardenAi/m_219538_ (Lnet/minecraft/world/entity/monster/warden/Warden;Lnet/minecraft/world/entity/LivingEntity;)Z net/minecraft/world/entity/monster/warden/WardenAi/lambda$initFightActivity$3 (Lnet/minecraft/world/entity/monster/warden/Warden;Lnet/minecraft/world/entity/LivingEntity;)Z +MD: net/minecraft/world/entity/monster/warden/WardenAi/m_219541_ (Lnet/minecraft/world/entity/ai/Brain;)V net/minecraft/world/entity/monster/warden/WardenAi/initInvestigateActivity (Lnet/minecraft/world/entity/ai/Brain;)V +MD: net/minecraft/world/entity/monster/warden/WardenAi/m_219543_ (Lnet/minecraft/world/entity/ai/Brain;)V net/minecraft/world/entity/monster/warden/WardenAi/initSniffingActivity (Lnet/minecraft/world/entity/ai/Brain;)V +MD: net/minecraft/world/entity/monster/warden/WardenAi/m_219545_ (Lnet/minecraft/world/entity/ai/Brain;)V net/minecraft/world/entity/monster/warden/WardenAi/initRoarActivity (Lnet/minecraft/world/entity/ai/Brain;)V +MD: net/minecraft/world/entity/monster/warden/WardenAi/m_257315_ (Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/world/entity/monster/warden/WardenAi/lambda$static$2 (Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/world/entity/monster/warden/WardenAi/m_257316_ (Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/monster/warden/Warden;J)Z net/minecraft/world/entity/monster/warden/WardenAi/lambda$static$0 (Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/monster/warden/Warden;J)Z +MD: net/minecraft/world/entity/monster/warden/WardenAi/m_257317_ (Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;)Lnet/minecraft/world/entity/ai/behavior/declarative/Trigger; net/minecraft/world/entity/monster/warden/WardenAi/lambda$static$1 (Lnet/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance;Lnet/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor;)Lnet/minecraft/world/entity/ai/behavior/declarative/Trigger; +MD: net/minecraft/world/entity/monster/warden/WardenSpawnTracker/ ()V net/minecraft/world/entity/monster/warden/WardenSpawnTracker/ ()V +MD: net/minecraft/world/entity/monster/warden/WardenSpawnTracker/ (III)V net/minecraft/world/entity/monster/warden/WardenSpawnTracker/ (III)V +MD: net/minecraft/world/entity/monster/warden/WardenSpawnTracker/m_219571_ ()V net/minecraft/world/entity/monster/warden/WardenSpawnTracker/tick ()V +MD: net/minecraft/world/entity/monster/warden/WardenSpawnTracker/m_219572_ (I)V net/minecraft/world/entity/monster/warden/WardenSpawnTracker/setWarningLevel (I)V +MD: net/minecraft/world/entity/monster/warden/WardenSpawnTracker/m_219574_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/entity/monster/warden/WardenSpawnTracker/hasNearbyWarden (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/entity/monster/warden/WardenSpawnTracker/m_219577_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;Lnet/minecraft/server/level/ServerPlayer;)Ljava/util/OptionalInt; net/minecraft/world/entity/monster/warden/WardenSpawnTracker/tryWarn (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;Lnet/minecraft/server/level/ServerPlayer;)Ljava/util/OptionalInt; +MD: net/minecraft/world/entity/monster/warden/WardenSpawnTracker/m_219583_ (Lnet/minecraft/world/entity/monster/warden/WardenSpawnTracker;)V net/minecraft/world/entity/monster/warden/WardenSpawnTracker/copyData (Lnet/minecraft/world/entity/monster/warden/WardenSpawnTracker;)V +MD: net/minecraft/world/entity/monster/warden/WardenSpawnTracker/m_219588_ (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/world/entity/monster/warden/WardenSpawnTracker/lambda$static$3 (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/world/entity/monster/warden/WardenSpawnTracker/m_219593_ ()V net/minecraft/world/entity/monster/warden/WardenSpawnTracker/reset ()V +MD: net/minecraft/world/entity/monster/warden/WardenSpawnTracker/m_219594_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;)Ljava/util/List; net/minecraft/world/entity/monster/warden/WardenSpawnTracker/getNearbyPlayers (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;)Ljava/util/List; +MD: net/minecraft/world/entity/monster/warden/WardenSpawnTracker/m_219599_ ()I net/minecraft/world/entity/monster/warden/WardenSpawnTracker/getWarningLevel ()I +MD: net/minecraft/world/entity/monster/warden/WardenSpawnTracker/m_219600_ (Lnet/minecraft/world/entity/monster/warden/WardenSpawnTracker;)Ljava/lang/Integer; net/minecraft/world/entity/monster/warden/WardenSpawnTracker/lambda$static$2 (Lnet/minecraft/world/entity/monster/warden/WardenSpawnTracker;)Ljava/lang/Integer; +MD: net/minecraft/world/entity/monster/warden/WardenSpawnTracker/m_219602_ ()Z net/minecraft/world/entity/monster/warden/WardenSpawnTracker/onCooldown ()Z +MD: net/minecraft/world/entity/monster/warden/WardenSpawnTracker/m_219603_ (Lnet/minecraft/world/entity/monster/warden/WardenSpawnTracker;)Ljava/lang/Integer; net/minecraft/world/entity/monster/warden/WardenSpawnTracker/lambda$static$1 (Lnet/minecraft/world/entity/monster/warden/WardenSpawnTracker;)Ljava/lang/Integer; +MD: net/minecraft/world/entity/monster/warden/WardenSpawnTracker/m_219605_ ()V net/minecraft/world/entity/monster/warden/WardenSpawnTracker/increaseWarningLevel ()V +MD: net/minecraft/world/entity/monster/warden/WardenSpawnTracker/m_219606_ (Lnet/minecraft/world/entity/monster/warden/WardenSpawnTracker;)Ljava/lang/Integer; net/minecraft/world/entity/monster/warden/WardenSpawnTracker/lambda$static$0 (Lnet/minecraft/world/entity/monster/warden/WardenSpawnTracker;)Ljava/lang/Integer; +MD: net/minecraft/world/entity/monster/warden/WardenSpawnTracker/m_219608_ ()V net/minecraft/world/entity/monster/warden/WardenSpawnTracker/decreaseWarningLevel ()V +MD: net/minecraft/world/entity/monster/warden/WardenSpawnTracker/m_244972_ (Lnet/minecraft/server/level/ServerPlayer;)Ljava/util/stream/Stream; net/minecraft/world/entity/monster/warden/WardenSpawnTracker/lambda$tryWarn$5 (Lnet/minecraft/server/level/ServerPlayer;)Ljava/util/stream/Stream; +MD: net/minecraft/world/entity/monster/warden/WardenSpawnTracker/m_244973_ (Lnet/minecraft/world/entity/monster/warden/WardenSpawnTracker;Lnet/minecraft/server/level/ServerPlayer;)V net/minecraft/world/entity/monster/warden/WardenSpawnTracker/lambda$tryWarn$7 (Lnet/minecraft/world/entity/monster/warden/WardenSpawnTracker;Lnet/minecraft/server/level/ServerPlayer;)V +MD: net/minecraft/world/entity/monster/warden/WardenSpawnTracker/m_244974_ (Lnet/minecraft/server/level/ServerPlayer;)Z net/minecraft/world/entity/monster/warden/WardenSpawnTracker/lambda$tryWarn$4 (Lnet/minecraft/server/level/ServerPlayer;)Z +MD: net/minecraft/world/entity/monster/warden/WardenSpawnTracker/m_244976_ (Lnet/minecraft/world/entity/monster/warden/WardenSpawnTracker;Lnet/minecraft/world/entity/monster/warden/WardenSpawnTracker;)V net/minecraft/world/entity/monster/warden/WardenSpawnTracker/lambda$tryWarn$6 (Lnet/minecraft/world/entity/monster/warden/WardenSpawnTracker;Lnet/minecraft/world/entity/monster/warden/WardenSpawnTracker;)V +MD: net/minecraft/world/entity/monster/warden/WardenSpawnTracker/m_289160_ (Lnet/minecraft/world/phys/Vec3;Lnet/minecraft/server/level/ServerPlayer;)Z net/minecraft/world/entity/monster/warden/WardenSpawnTracker/lambda$getNearbyPlayers$8 (Lnet/minecraft/world/phys/Vec3;Lnet/minecraft/server/level/ServerPlayer;)Z +MD: net/minecraft/world/entity/npc/AbstractVillager/ ()V net/minecraft/world/entity/npc/AbstractVillager/ ()V +MD: net/minecraft/world/entity/npc/AbstractVillager/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V net/minecraft/world/entity/npc/AbstractVillager/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V +MD: net/minecraft/world/entity/npc/AbstractVillager/m_141942_ (I)Lnet/minecraft/world/entity/SlotAccess; net/minecraft/world/entity/npc/AbstractVillager/getSlot (I)Lnet/minecraft/world/entity/SlotAccess; +MD: net/minecraft/world/entity/npc/AbstractVillager/m_183595_ ()Z net/minecraft/world/entity/npc/AbstractVillager/isClientSide ()Z +MD: net/minecraft/world/entity/npc/AbstractVillager/m_35277_ (Lnet/minecraft/world/item/trading/MerchantOffers;[Lnet/minecraft/world/entity/npc/VillagerTrades$ItemListing;I)V net/minecraft/world/entity/npc/AbstractVillager/addOffersFromItemListings (Lnet/minecraft/world/item/trading/MerchantOffers;[Lnet/minecraft/world/entity/npc/VillagerTrades$ItemListing;I)V +MD: net/minecraft/world/entity/npc/AbstractVillager/m_35287_ (Lnet/minecraft/core/particles/ParticleOptions;)V net/minecraft/world/entity/npc/AbstractVillager/addParticlesAroundSelf (Lnet/minecraft/core/particles/ParticleOptions;)V +MD: net/minecraft/world/entity/npc/AbstractVillager/m_35303_ ()I net/minecraft/world/entity/npc/AbstractVillager/getUnhappyCounter ()I +MD: net/minecraft/world/entity/npc/AbstractVillager/m_35306_ ()Z net/minecraft/world/entity/npc/AbstractVillager/isTrading ()Z +MD: net/minecraft/world/entity/npc/AbstractVillager/m_35310_ ()V net/minecraft/world/entity/npc/AbstractVillager/playCelebrateSound ()V +MD: net/minecraft/world/entity/npc/AbstractVillager/m_35311_ ()Lnet/minecraft/world/SimpleContainer; net/minecraft/world/entity/npc/AbstractVillager/getInventory ()Lnet/minecraft/world/SimpleContainer; +MD: net/minecraft/world/entity/npc/AbstractVillager/m_35319_ (I)V net/minecraft/world/entity/npc/AbstractVillager/setUnhappyCounter (I)V +MD: net/minecraft/world/entity/npc/AbstractVillager/m_5489_ (Lnet/minecraft/server/level/ServerLevel;)Lnet/minecraft/world/entity/Entity; net/minecraft/world/entity/npc/AbstractVillager/changeDimension (Lnet/minecraft/server/level/ServerLevel;)Lnet/minecraft/world/entity/Entity; +MD: net/minecraft/world/entity/npc/AbstractVillager/m_6068_ (Z)Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/npc/AbstractVillager/getTradeUpdatedSound (Z)Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/npc/AbstractVillager/m_6255_ (Lnet/minecraft/world/item/trading/MerchantOffers;)V net/minecraft/world/entity/npc/AbstractVillager/overrideOffers (Lnet/minecraft/world/item/trading/MerchantOffers;)V +MD: net/minecraft/world/entity/npc/AbstractVillager/m_6431_ (Lnet/minecraft/world/entity/Pose;Lnet/minecraft/world/entity/EntityDimensions;)F net/minecraft/world/entity/npc/AbstractVillager/getStandingEyeHeight (Lnet/minecraft/world/entity/Pose;Lnet/minecraft/world/entity/EntityDimensions;)F +MD: net/minecraft/world/entity/npc/AbstractVillager/m_6518_ (Lnet/minecraft/world/level/ServerLevelAccessor;Lnet/minecraft/world/DifficultyInstance;Lnet/minecraft/world/entity/MobSpawnType;Lnet/minecraft/world/entity/SpawnGroupData;Lnet/minecraft/nbt/CompoundTag;)Lnet/minecraft/world/entity/SpawnGroupData; net/minecraft/world/entity/npc/AbstractVillager/finalizeSpawn (Lnet/minecraft/world/level/ServerLevelAccessor;Lnet/minecraft/world/DifficultyInstance;Lnet/minecraft/world/entity/MobSpawnType;Lnet/minecraft/world/entity/SpawnGroupData;Lnet/minecraft/nbt/CompoundTag;)Lnet/minecraft/world/entity/SpawnGroupData; +MD: net/minecraft/world/entity/npc/AbstractVillager/m_6573_ (Lnet/minecraft/world/entity/player/Player;)Z net/minecraft/world/entity/npc/AbstractVillager/canBeLeashed (Lnet/minecraft/world/entity/player/Player;)Z +MD: net/minecraft/world/entity/npc/AbstractVillager/m_6616_ ()Lnet/minecraft/world/item/trading/MerchantOffers; net/minecraft/world/entity/npc/AbstractVillager/getOffers ()Lnet/minecraft/world/item/trading/MerchantOffers; +MD: net/minecraft/world/entity/npc/AbstractVillager/m_6621_ (I)V net/minecraft/world/entity/npc/AbstractVillager/overrideXp (I)V +MD: net/minecraft/world/entity/npc/AbstractVillager/m_6667_ (Lnet/minecraft/world/damagesource/DamageSource;)V net/minecraft/world/entity/npc/AbstractVillager/die (Lnet/minecraft/world/damagesource/DamageSource;)V +MD: net/minecraft/world/entity/npc/AbstractVillager/m_6996_ (Lnet/minecraft/world/item/trading/MerchantOffer;)V net/minecraft/world/entity/npc/AbstractVillager/notifyTrade (Lnet/minecraft/world/item/trading/MerchantOffer;)V +MD: net/minecraft/world/entity/npc/AbstractVillager/m_7189_ (Lnet/minecraft/world/entity/player/Player;)V net/minecraft/world/entity/npc/AbstractVillager/setTradingPlayer (Lnet/minecraft/world/entity/player/Player;)V +MD: net/minecraft/world/entity/npc/AbstractVillager/m_7378_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/entity/npc/AbstractVillager/readAdditionalSaveData (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/entity/npc/AbstractVillager/m_7380_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/entity/npc/AbstractVillager/addAdditionalSaveData (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/entity/npc/AbstractVillager/m_7398_ (F)Lnet/minecraft/world/phys/Vec3; net/minecraft/world/entity/npc/AbstractVillager/getRopeHoldPosition (F)Lnet/minecraft/world/phys/Vec3; +MD: net/minecraft/world/entity/npc/AbstractVillager/m_7596_ ()Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/npc/AbstractVillager/getNotifyTradeSound ()Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/npc/AbstractVillager/m_7604_ ()V net/minecraft/world/entity/npc/AbstractVillager/updateTrades ()V +MD: net/minecraft/world/entity/npc/AbstractVillager/m_7713_ (Lnet/minecraft/world/item/ItemStack;)V net/minecraft/world/entity/npc/AbstractVillager/notifyTradeUpdated (Lnet/minecraft/world/item/ItemStack;)V +MD: net/minecraft/world/entity/npc/AbstractVillager/m_7809_ ()I net/minecraft/world/entity/npc/AbstractVillager/getVillagerXp ()I +MD: net/minecraft/world/entity/npc/AbstractVillager/m_7826_ ()Z net/minecraft/world/entity/npc/AbstractVillager/showProgressBar ()Z +MD: net/minecraft/world/entity/npc/AbstractVillager/m_7962_ ()Lnet/minecraft/world/entity/player/Player; net/minecraft/world/entity/npc/AbstractVillager/getTradingPlayer ()Lnet/minecraft/world/entity/player/Player; +MD: net/minecraft/world/entity/npc/AbstractVillager/m_7996_ ()V net/minecraft/world/entity/npc/AbstractVillager/stopTrading ()V +MD: net/minecraft/world/entity/npc/AbstractVillager/m_8058_ (Lnet/minecraft/world/item/trading/MerchantOffer;)V net/minecraft/world/entity/npc/AbstractVillager/rewardTradeXp (Lnet/minecraft/world/item/trading/MerchantOffer;)V +MD: net/minecraft/world/entity/npc/AbstractVillager/m_8097_ ()V net/minecraft/world/entity/npc/AbstractVillager/defineSynchedData ()V +MD: net/minecraft/world/entity/npc/CatSpawner/ ()V net/minecraft/world/entity/npc/CatSpawner/ ()V +MD: net/minecraft/world/entity/npc/CatSpawner/m_219609_ (Lnet/minecraft/core/Holder;)Z net/minecraft/world/entity/npc/CatSpawner/lambda$spawnInVillage$0 (Lnet/minecraft/core/Holder;)Z +MD: net/minecraft/world/entity/npc/CatSpawner/m_35326_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;)I net/minecraft/world/entity/npc/CatSpawner/spawnInVillage (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;)I +MD: net/minecraft/world/entity/npc/CatSpawner/m_35333_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/server/level/ServerLevel;)I net/minecraft/world/entity/npc/CatSpawner/spawnCat (Lnet/minecraft/core/BlockPos;Lnet/minecraft/server/level/ServerLevel;)I +MD: net/minecraft/world/entity/npc/CatSpawner/m_35336_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;)I net/minecraft/world/entity/npc/CatSpawner/spawnInHut (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;)I +MD: net/minecraft/world/entity/npc/CatSpawner/m_7995_ (Lnet/minecraft/server/level/ServerLevel;ZZ)I net/minecraft/world/entity/npc/CatSpawner/tick (Lnet/minecraft/server/level/ServerLevel;ZZ)I +MD: net/minecraft/world/entity/npc/ClientSideMerchant/ (Lnet/minecraft/world/entity/player/Player;)V net/minecraft/world/entity/npc/ClientSideMerchant/ (Lnet/minecraft/world/entity/player/Player;)V +MD: net/minecraft/world/entity/npc/ClientSideMerchant/m_183595_ ()Z net/minecraft/world/entity/npc/ClientSideMerchant/isClientSide ()Z +MD: net/minecraft/world/entity/npc/ClientSideMerchant/m_6255_ (Lnet/minecraft/world/item/trading/MerchantOffers;)V net/minecraft/world/entity/npc/ClientSideMerchant/overrideOffers (Lnet/minecraft/world/item/trading/MerchantOffers;)V +MD: net/minecraft/world/entity/npc/ClientSideMerchant/m_6616_ ()Lnet/minecraft/world/item/trading/MerchantOffers; net/minecraft/world/entity/npc/ClientSideMerchant/getOffers ()Lnet/minecraft/world/item/trading/MerchantOffers; +MD: net/minecraft/world/entity/npc/ClientSideMerchant/m_6621_ (I)V net/minecraft/world/entity/npc/ClientSideMerchant/overrideXp (I)V +MD: net/minecraft/world/entity/npc/ClientSideMerchant/m_6996_ (Lnet/minecraft/world/item/trading/MerchantOffer;)V net/minecraft/world/entity/npc/ClientSideMerchant/notifyTrade (Lnet/minecraft/world/item/trading/MerchantOffer;)V +MD: net/minecraft/world/entity/npc/ClientSideMerchant/m_7189_ (Lnet/minecraft/world/entity/player/Player;)V net/minecraft/world/entity/npc/ClientSideMerchant/setTradingPlayer (Lnet/minecraft/world/entity/player/Player;)V +MD: net/minecraft/world/entity/npc/ClientSideMerchant/m_7596_ ()Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/npc/ClientSideMerchant/getNotifyTradeSound ()Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/npc/ClientSideMerchant/m_7713_ (Lnet/minecraft/world/item/ItemStack;)V net/minecraft/world/entity/npc/ClientSideMerchant/notifyTradeUpdated (Lnet/minecraft/world/item/ItemStack;)V +MD: net/minecraft/world/entity/npc/ClientSideMerchant/m_7809_ ()I net/minecraft/world/entity/npc/ClientSideMerchant/getVillagerXp ()I +MD: net/minecraft/world/entity/npc/ClientSideMerchant/m_7826_ ()Z net/minecraft/world/entity/npc/ClientSideMerchant/showProgressBar ()Z +MD: net/minecraft/world/entity/npc/ClientSideMerchant/m_7962_ ()Lnet/minecraft/world/entity/player/Player; net/minecraft/world/entity/npc/ClientSideMerchant/getTradingPlayer ()Lnet/minecraft/world/entity/player/Player; +MD: net/minecraft/world/entity/npc/InventoryCarrier/m_219611_ (Lnet/minecraft/world/entity/Mob;Lnet/minecraft/world/entity/npc/InventoryCarrier;Lnet/minecraft/world/entity/item/ItemEntity;)V net/minecraft/world/entity/npc/InventoryCarrier/pickUpItem (Lnet/minecraft/world/entity/Mob;Lnet/minecraft/world/entity/npc/InventoryCarrier;Lnet/minecraft/world/entity/item/ItemEntity;)V +MD: net/minecraft/world/entity/npc/InventoryCarrier/m_252802_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/entity/npc/InventoryCarrier/writeInventoryToTag (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/entity/npc/InventoryCarrier/m_253224_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/entity/npc/InventoryCarrier/readInventoryFromTag (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/entity/npc/InventoryCarrier/m_35311_ ()Lnet/minecraft/world/SimpleContainer; net/minecraft/world/entity/npc/InventoryCarrier/getInventory ()Lnet/minecraft/world/SimpleContainer; +MD: net/minecraft/world/entity/npc/Villager/ ()V net/minecraft/world/entity/npc/Villager/ ()V +MD: net/minecraft/world/entity/npc/Villager/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;Lnet/minecraft/world/entity/npc/VillagerType;)V net/minecraft/world/entity/npc/Villager/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;Lnet/minecraft/world/entity/npc/VillagerType;)V +MD: net/minecraft/world/entity/npc/Villager/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V net/minecraft/world/entity/npc/Villager/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V +MD: net/minecraft/world/entity/npc/Villager/m_142606_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/AgeableMob;)Lnet/minecraft/world/entity/AgeableMob; net/minecraft/world/entity/npc/Villager/getBreedOffspring (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/AgeableMob;)Lnet/minecraft/world/entity/AgeableMob; +MD: net/minecraft/world/entity/npc/Villager/m_142606_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/AgeableMob;)Lnet/minecraft/world/entity/npc/Villager; net/minecraft/world/entity/npc/Villager/getBreedOffspring (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/AgeableMob;)Lnet/minecraft/world/entity/npc/Villager; +MD: net/minecraft/world/entity/npc/Villager/m_150014_ ()Z net/minecraft/world/entity/npc/Villager/isChasing ()Z +MD: net/minecraft/world/entity/npc/Villager/m_150015_ (Z)V net/minecraft/world/entity/npc/Villager/setChasing (Z)V +MD: net/minecraft/world/entity/npc/Villager/m_183595_ ()Z net/minecraft/world/entity/npc/Villager/isClientSide ()Z +MD: net/minecraft/world/entity/npc/Villager/m_186291_ (JLnet/minecraft/world/entity/npc/Villager;)Z net/minecraft/world/entity/npc/Villager/lambda$spawnGolemIfNeeded$10 (JLnet/minecraft/world/entity/npc/Villager;)Z +MD: net/minecraft/world/entity/npc/Villager/m_186294_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/Entity;Lnet/minecraft/world/entity/LivingEntity;)V net/minecraft/world/entity/npc/Villager/lambda$tellWitnessesThatIWasMurdered$5 (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/Entity;Lnet/minecraft/world/entity/LivingEntity;)V +MD: net/minecraft/world/entity/npc/Villager/m_186298_ (Lnet/minecraft/world/SimpleContainer;Ljava/util/Map$Entry;)I net/minecraft/world/entity/npc/Villager/lambda$countFoodPointsInInventory$8 (Lnet/minecraft/world/SimpleContainer;Ljava/util/Map$Entry;)I +MD: net/minecraft/world/entity/npc/Villager/m_186301_ (Lnet/minecraft/world/entity/ai/gossip/GossipType;)Z net/minecraft/world/entity/npc/Villager/lambda$getPlayerReputation$7 (Lnet/minecraft/world/entity/ai/gossip/GossipType;)Z +MD: net/minecraft/world/entity/npc/Villager/m_186303_ (Lnet/minecraft/server/MinecraftServer;Lnet/minecraft/world/entity/ai/memory/MemoryModuleType;Lnet/minecraft/core/GlobalPos;)V net/minecraft/world/entity/npc/Villager/lambda$releasePoi$6 (Lnet/minecraft/server/MinecraftServer;Lnet/minecraft/world/entity/ai/memory/MemoryModuleType;Lnet/minecraft/core/GlobalPos;)V +MD: net/minecraft/world/entity/npc/Villager/m_219615_ (Lnet/minecraft/world/entity/npc/Villager;Lnet/minecraft/core/Holder;)Z net/minecraft/world/entity/npc/Villager/lambda$static$3 (Lnet/minecraft/world/entity/npc/Villager;Lnet/minecraft/core/Holder;)Z +MD: net/minecraft/world/entity/npc/Villager/m_219618_ (Lnet/minecraft/world/entity/npc/Villager;Lnet/minecraft/core/Holder;)Z net/minecraft/world/entity/npc/Villager/lambda$static$2 (Lnet/minecraft/world/entity/npc/Villager;Lnet/minecraft/core/Holder;)Z +MD: net/minecraft/world/entity/npc/Villager/m_219621_ (Lnet/minecraft/world/entity/npc/Villager;Lnet/minecraft/core/Holder;)Z net/minecraft/world/entity/npc/Villager/lambda$static$1 (Lnet/minecraft/world/entity/npc/Villager;Lnet/minecraft/core/Holder;)Z +MD: net/minecraft/world/entity/npc/Villager/m_219624_ (Lnet/minecraft/world/entity/npc/Villager;Lnet/minecraft/core/Holder;)Z net/minecraft/world/entity/npc/Villager/lambda$static$0 (Lnet/minecraft/world/entity/npc/Villager;Lnet/minecraft/core/Holder;)Z +MD: net/minecraft/world/entity/npc/Villager/m_275846_ ()V net/minecraft/world/entity/npc/Villager/resendOffersToTradingPlayer ()V +MD: net/minecraft/world/entity/npc/Villager/m_279940_ (Lnet/minecraft/world/item/ItemStack;)Z net/minecraft/world/entity/npc/Villager/lambda$hasFarmSeeds$9 (Lnet/minecraft/world/item/ItemStack;)Z +MD: net/minecraft/world/entity/npc/Villager/m_30232_ ()V net/minecraft/world/entity/npc/Villager/ageBoundaryReached ()V +MD: net/minecraft/world/entity/npc/Villager/m_34375_ (Lnet/minecraft/world/entity/npc/VillagerData;)V net/minecraft/world/entity/npc/Villager/setVillagerData (Lnet/minecraft/world/entity/npc/VillagerData;)V +MD: net/minecraft/world/entity/npc/Villager/m_35392_ (J)Z net/minecraft/world/entity/npc/Villager/wantsToSpawnGolem (J)Z +MD: net/minecraft/world/entity/npc/Villager/m_35397_ (Lnet/minecraft/server/level/ServerLevel;JI)V net/minecraft/world/entity/npc/Villager/spawnGolemIfNeeded (Lnet/minecraft/server/level/ServerLevel;JI)V +MD: net/minecraft/world/entity/npc/Villager/m_35411_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/npc/Villager;J)V net/minecraft/world/entity/npc/Villager/gossip (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/npc/Villager;J)V +MD: net/minecraft/world/entity/npc/Villager/m_35420_ (Lnet/minecraft/world/entity/Entity;)V net/minecraft/world/entity/npc/Villager/tellWitnessesThatIWasMurdered (Lnet/minecraft/world/entity/Entity;)V +MD: net/minecraft/world/entity/npc/Villager/m_35424_ (Lnet/minecraft/world/entity/ai/Brain;)V net/minecraft/world/entity/npc/Villager/registerBrainGoals (Lnet/minecraft/world/entity/ai/Brain;)V +MD: net/minecraft/world/entity/npc/Villager/m_35428_ (Lnet/minecraft/world/entity/ai/memory/MemoryModuleType;)V net/minecraft/world/entity/npc/Villager/releasePoi (Lnet/minecraft/world/entity/ai/memory/MemoryModuleType;)V +MD: net/minecraft/world/entity/npc/Villager/m_35452_ (Lnet/minecraft/nbt/CompoundTag;Lnet/minecraft/nbt/Tag;)V net/minecraft/world/entity/npc/Villager/lambda$addAdditionalSaveData$4 (Lnet/minecraft/nbt/CompoundTag;Lnet/minecraft/nbt/Tag;)V +MD: net/minecraft/world/entity/npc/Villager/m_35455_ (Lnet/minecraft/nbt/Tag;)V net/minecraft/world/entity/npc/Villager/setGossips (Lnet/minecraft/nbt/Tag;)V +MD: net/minecraft/world/entity/npc/Villager/m_35461_ (J)Z net/minecraft/world/entity/npc/Villager/golemSpawnConditionsMet (J)Z +MD: net/minecraft/world/entity/npc/Villager/m_35476_ (Lnet/minecraft/world/item/trading/MerchantOffers;)V net/minecraft/world/entity/npc/Villager/setOffers (Lnet/minecraft/world/item/trading/MerchantOffers;)V +MD: net/minecraft/world/entity/npc/Villager/m_35483_ (Lnet/minecraft/server/level/ServerLevel;)V net/minecraft/world/entity/npc/Villager/refreshBrain (Lnet/minecraft/server/level/ServerLevel;)V +MD: net/minecraft/world/entity/npc/Villager/m_35503_ ()Lnet/minecraft/world/entity/ai/attributes/AttributeSupplier$Builder; net/minecraft/world/entity/npc/Villager/createAttributes ()Lnet/minecraft/world/entity/ai/attributes/AttributeSupplier$Builder; +MD: net/minecraft/world/entity/npc/Villager/m_35504_ ()Z net/minecraft/world/entity/npc/Villager/assignProfessionWhenSpawned ()Z +MD: net/minecraft/world/entity/npc/Villager/m_35506_ ()Z net/minecraft/world/entity/npc/Villager/canBreed ()Z +MD: net/minecraft/world/entity/npc/Villager/m_35510_ ()V net/minecraft/world/entity/npc/Villager/restock ()V +MD: net/minecraft/world/entity/npc/Villager/m_35511_ ()Z net/minecraft/world/entity/npc/Villager/shouldRestock ()Z +MD: net/minecraft/world/entity/npc/Villager/m_35512_ ()V net/minecraft/world/entity/npc/Villager/playWorkSound ()V +MD: net/minecraft/world/entity/npc/Villager/m_35513_ ()V net/minecraft/world/entity/npc/Villager/eatAndDigestFood ()V +MD: net/minecraft/world/entity/npc/Villager/m_35514_ ()Z net/minecraft/world/entity/npc/Villager/hasExcessFood ()Z +MD: net/minecraft/world/entity/npc/Villager/m_35515_ ()Z net/minecraft/world/entity/npc/Villager/wantsMoreFood ()Z +MD: net/minecraft/world/entity/npc/Villager/m_35516_ ()Z net/minecraft/world/entity/npc/Villager/hasFarmSeeds ()Z +MD: net/minecraft/world/entity/npc/Villager/m_35517_ ()Lnet/minecraft/world/entity/ai/gossip/GossipContainer; net/minecraft/world/entity/npc/Villager/getGossips ()Lnet/minecraft/world/entity/ai/gossip/GossipContainer; +MD: net/minecraft/world/entity/npc/Villager/m_35518_ ()V net/minecraft/world/entity/npc/Villager/setUnhappy ()V +MD: net/minecraft/world/entity/npc/Villager/m_35519_ ()V net/minecraft/world/entity/npc/Villager/resetSpecialPrices ()V +MD: net/minecraft/world/entity/npc/Villager/m_35520_ ()Z net/minecraft/world/entity/npc/Villager/needsToRestock ()Z +MD: net/minecraft/world/entity/npc/Villager/m_35521_ ()Z net/minecraft/world/entity/npc/Villager/allowedToRestock ()Z +MD: net/minecraft/world/entity/npc/Villager/m_35522_ ()V net/minecraft/world/entity/npc/Villager/catchUpDemand ()V +MD: net/minecraft/world/entity/npc/Villager/m_35523_ ()V net/minecraft/world/entity/npc/Villager/updateDemand ()V +MD: net/minecraft/world/entity/npc/Villager/m_35524_ ()V net/minecraft/world/entity/npc/Villager/releaseAllPois ()V +MD: net/minecraft/world/entity/npc/Villager/m_35525_ ()Z net/minecraft/world/entity/npc/Villager/hungry ()Z +MD: net/minecraft/world/entity/npc/Villager/m_35526_ ()V net/minecraft/world/entity/npc/Villager/eatUntilFull ()V +MD: net/minecraft/world/entity/npc/Villager/m_35527_ ()Z net/minecraft/world/entity/npc/Villager/shouldIncreaseLevel ()Z +MD: net/minecraft/world/entity/npc/Villager/m_35528_ ()V net/minecraft/world/entity/npc/Villager/increaseMerchantCareer ()V +MD: net/minecraft/world/entity/npc/Villager/m_35529_ ()I net/minecraft/world/entity/npc/Villager/countFoodPointsInInventory ()I +MD: net/minecraft/world/entity/npc/Villager/m_35530_ ()V net/minecraft/world/entity/npc/Villager/maybeDecayGossip ()V +MD: net/minecraft/world/entity/npc/Villager/m_35531_ ()V net/minecraft/world/entity/npc/Villager/resetNumberOfRestocks ()V +MD: net/minecraft/world/entity/npc/Villager/m_35532_ (Lnet/minecraft/world/entity/player/Player;)I net/minecraft/world/entity/npc/Villager/getPlayerReputation (Lnet/minecraft/world/entity/player/Player;)I +MD: net/minecraft/world/entity/npc/Villager/m_35536_ (Lnet/minecraft/world/entity/player/Player;)V net/minecraft/world/entity/npc/Villager/startTrading (Lnet/minecraft/world/entity/player/Player;)V +MD: net/minecraft/world/entity/npc/Villager/m_35540_ (Lnet/minecraft/world/entity/player/Player;)V net/minecraft/world/entity/npc/Villager/updateSpecialPrices (Lnet/minecraft/world/entity/player/Player;)V +MD: net/minecraft/world/entity/npc/Villager/m_35546_ (I)V net/minecraft/world/entity/npc/Villager/setVillagerXp (I)V +MD: net/minecraft/world/entity/npc/Villager/m_35548_ (I)V net/minecraft/world/entity/npc/Villager/digestFood (I)V +MD: net/minecraft/world/entity/npc/Villager/m_5490_ ()Lnet/minecraft/world/entity/ai/Brain$Provider; net/minecraft/world/entity/npc/Villager/brainProvider ()Lnet/minecraft/world/entity/ai/Brain$Provider; +MD: net/minecraft/world/entity/npc/Villager/m_5592_ ()Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/npc/Villager/getDeathSound ()Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/npc/Villager/m_5677_ ()Lnet/minecraft/network/chat/Component; net/minecraft/world/entity/npc/Villager/getTypeName ()Lnet/minecraft/network/chat/Component; +MD: net/minecraft/world/entity/npc/Villager/m_5796_ ()V net/minecraft/world/entity/npc/Villager/stopSleeping ()V +MD: net/minecraft/world/entity/npc/Villager/m_5802_ (Lnet/minecraft/core/BlockPos;)V net/minecraft/world/entity/npc/Villager/startSleeping (Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/world/entity/npc/Villager/m_6071_ (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;)Lnet/minecraft/world/InteractionResult; net/minecraft/world/entity/npc/Villager/mobInteract (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;)Lnet/minecraft/world/InteractionResult; +MD: net/minecraft/world/entity/npc/Villager/m_6274_ ()Lnet/minecraft/world/entity/ai/Brain; net/minecraft/world/entity/npc/Villager/getBrain ()Lnet/minecraft/world/entity/ai/Brain; +MD: net/minecraft/world/entity/npc/Villager/m_6518_ (Lnet/minecraft/world/level/ServerLevelAccessor;Lnet/minecraft/world/DifficultyInstance;Lnet/minecraft/world/entity/MobSpawnType;Lnet/minecraft/world/entity/SpawnGroupData;Lnet/minecraft/nbt/CompoundTag;)Lnet/minecraft/world/entity/SpawnGroupData; net/minecraft/world/entity/npc/Villager/finalizeSpawn (Lnet/minecraft/world/level/ServerLevelAccessor;Lnet/minecraft/world/DifficultyInstance;Lnet/minecraft/world/entity/MobSpawnType;Lnet/minecraft/world/entity/SpawnGroupData;Lnet/minecraft/nbt/CompoundTag;)Lnet/minecraft/world/entity/SpawnGroupData; +MD: net/minecraft/world/entity/npc/Villager/m_6667_ (Lnet/minecraft/world/damagesource/DamageSource;)V net/minecraft/world/entity/npc/Villager/die (Lnet/minecraft/world/damagesource/DamageSource;)V +MD: net/minecraft/world/entity/npc/Villager/m_6703_ (Lnet/minecraft/world/entity/LivingEntity;)V net/minecraft/world/entity/npc/Villager/setLastHurtByMob (Lnet/minecraft/world/entity/LivingEntity;)V +MD: net/minecraft/world/entity/npc/Villager/m_6785_ (D)Z net/minecraft/world/entity/npc/Villager/removeWhenFarAway (D)Z +MD: net/minecraft/world/entity/npc/Villager/m_6814_ (Lnet/minecraft/world/entity/ai/village/ReputationEventType;Lnet/minecraft/world/entity/Entity;)V net/minecraft/world/entity/npc/Villager/onReputationEventFrom (Lnet/minecraft/world/entity/ai/village/ReputationEventType;Lnet/minecraft/world/entity/Entity;)V +MD: net/minecraft/world/entity/npc/Villager/m_7141_ ()Lnet/minecraft/world/entity/npc/VillagerData; net/minecraft/world/entity/npc/Villager/getVillagerData ()Lnet/minecraft/world/entity/npc/VillagerData; +MD: net/minecraft/world/entity/npc/Villager/m_7189_ (Lnet/minecraft/world/entity/player/Player;)V net/minecraft/world/entity/npc/Villager/setTradingPlayer (Lnet/minecraft/world/entity/player/Player;)V +MD: net/minecraft/world/entity/npc/Villager/m_7243_ (Lnet/minecraft/world/item/ItemStack;)Z net/minecraft/world/entity/npc/Villager/wantsToPickUp (Lnet/minecraft/world/item/ItemStack;)Z +MD: net/minecraft/world/entity/npc/Villager/m_7378_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/entity/npc/Villager/readAdditionalSaveData (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/entity/npc/Villager/m_7380_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/entity/npc/Villager/addAdditionalSaveData (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/entity/npc/Villager/m_7515_ ()Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/npc/Villager/getAmbientSound ()Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/npc/Villager/m_7581_ (Lnet/minecraft/world/entity/item/ItemEntity;)V net/minecraft/world/entity/npc/Villager/pickUpItem (Lnet/minecraft/world/entity/item/ItemEntity;)V +MD: net/minecraft/world/entity/npc/Villager/m_7604_ ()V net/minecraft/world/entity/npc/Villager/updateTrades ()V +MD: net/minecraft/world/entity/npc/Villager/m_7809_ ()I net/minecraft/world/entity/npc/Villager/getVillagerXp ()I +MD: net/minecraft/world/entity/npc/Villager/m_7822_ (B)V net/minecraft/world/entity/npc/Villager/handleEntityEvent (B)V +MD: net/minecraft/world/entity/npc/Villager/m_7862_ ()Z net/minecraft/world/entity/npc/Villager/canRestock ()Z +MD: net/minecraft/world/entity/npc/Villager/m_7975_ (Lnet/minecraft/world/damagesource/DamageSource;)Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/npc/Villager/getHurtSound (Lnet/minecraft/world/damagesource/DamageSource;)Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/npc/Villager/m_7996_ ()V net/minecraft/world/entity/npc/Villager/stopTrading ()V +MD: net/minecraft/world/entity/npc/Villager/m_8024_ ()V net/minecraft/world/entity/npc/Villager/customServerAiStep ()V +MD: net/minecraft/world/entity/npc/Villager/m_8025_ ()V net/minecraft/world/entity/npc/Villager/sendDebugPackets ()V +MD: net/minecraft/world/entity/npc/Villager/m_8038_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LightningBolt;)V net/minecraft/world/entity/npc/Villager/thunderHit (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LightningBolt;)V +MD: net/minecraft/world/entity/npc/Villager/m_8058_ (Lnet/minecraft/world/item/trading/MerchantOffer;)V net/minecraft/world/entity/npc/Villager/rewardTradeXp (Lnet/minecraft/world/item/trading/MerchantOffer;)V +MD: net/minecraft/world/entity/npc/Villager/m_8075_ (Lcom/mojang/serialization/Dynamic;)Lnet/minecraft/world/entity/ai/Brain; net/minecraft/world/entity/npc/Villager/makeBrain (Lcom/mojang/serialization/Dynamic;)Lnet/minecraft/world/entity/ai/Brain; +MD: net/minecraft/world/entity/npc/Villager/m_8097_ ()V net/minecraft/world/entity/npc/Villager/defineSynchedData ()V +MD: net/minecraft/world/entity/npc/Villager/m_8119_ ()V net/minecraft/world/entity/npc/Villager/tick ()V +MD: net/minecraft/world/entity/npc/VillagerData/ ()V net/minecraft/world/entity/npc/VillagerData/ ()V +MD: net/minecraft/world/entity/npc/VillagerData/ (Lnet/minecraft/world/entity/npc/VillagerType;Lnet/minecraft/world/entity/npc/VillagerProfession;I)V net/minecraft/world/entity/npc/VillagerData/ (Lnet/minecraft/world/entity/npc/VillagerType;Lnet/minecraft/world/entity/npc/VillagerProfession;I)V +MD: net/minecraft/world/entity/npc/VillagerData/m_150019_ (Lnet/minecraft/world/entity/npc/VillagerData;)Ljava/lang/Integer; net/minecraft/world/entity/npc/VillagerData/lambda$static$4 (Lnet/minecraft/world/entity/npc/VillagerData;)Ljava/lang/Integer; +MD: net/minecraft/world/entity/npc/VillagerData/m_150021_ (Lnet/minecraft/world/entity/npc/VillagerData;)Lnet/minecraft/world/entity/npc/VillagerProfession; net/minecraft/world/entity/npc/VillagerData/lambda$static$3 (Lnet/minecraft/world/entity/npc/VillagerData;)Lnet/minecraft/world/entity/npc/VillagerProfession; +MD: net/minecraft/world/entity/npc/VillagerData/m_150023_ (Lnet/minecraft/world/entity/npc/VillagerData;)Lnet/minecraft/world/entity/npc/VillagerType; net/minecraft/world/entity/npc/VillagerData/lambda$static$1 (Lnet/minecraft/world/entity/npc/VillagerData;)Lnet/minecraft/world/entity/npc/VillagerType; +MD: net/minecraft/world/entity/npc/VillagerData/m_150025_ ()Lnet/minecraft/world/entity/npc/VillagerProfession; net/minecraft/world/entity/npc/VillagerData/lambda$static$2 ()Lnet/minecraft/world/entity/npc/VillagerProfession; +MD: net/minecraft/world/entity/npc/VillagerData/m_150026_ ()Lnet/minecraft/world/entity/npc/VillagerType; net/minecraft/world/entity/npc/VillagerData/lambda$static$0 ()Lnet/minecraft/world/entity/npc/VillagerType; +MD: net/minecraft/world/entity/npc/VillagerData/m_257318_ (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/world/entity/npc/VillagerData/lambda$static$5 (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/world/entity/npc/VillagerData/m_35560_ ()Lnet/minecraft/world/entity/npc/VillagerType; net/minecraft/world/entity/npc/VillagerData/getType ()Lnet/minecraft/world/entity/npc/VillagerType; +MD: net/minecraft/world/entity/npc/VillagerData/m_35561_ (I)Lnet/minecraft/world/entity/npc/VillagerData; net/minecraft/world/entity/npc/VillagerData/setLevel (I)Lnet/minecraft/world/entity/npc/VillagerData; +MD: net/minecraft/world/entity/npc/VillagerData/m_35565_ (Lnet/minecraft/world/entity/npc/VillagerProfession;)Lnet/minecraft/world/entity/npc/VillagerData; net/minecraft/world/entity/npc/VillagerData/setProfession (Lnet/minecraft/world/entity/npc/VillagerProfession;)Lnet/minecraft/world/entity/npc/VillagerData; +MD: net/minecraft/world/entity/npc/VillagerData/m_35567_ (Lnet/minecraft/world/entity/npc/VillagerType;)Lnet/minecraft/world/entity/npc/VillagerData; net/minecraft/world/entity/npc/VillagerData/setType (Lnet/minecraft/world/entity/npc/VillagerType;)Lnet/minecraft/world/entity/npc/VillagerData; +MD: net/minecraft/world/entity/npc/VillagerData/m_35571_ ()Lnet/minecraft/world/entity/npc/VillagerProfession; net/minecraft/world/entity/npc/VillagerData/getProfession ()Lnet/minecraft/world/entity/npc/VillagerProfession; +MD: net/minecraft/world/entity/npc/VillagerData/m_35572_ (I)I net/minecraft/world/entity/npc/VillagerData/getMinXpPerLevel (I)I +MD: net/minecraft/world/entity/npc/VillagerData/m_35576_ ()I net/minecraft/world/entity/npc/VillagerData/getLevel ()I +MD: net/minecraft/world/entity/npc/VillagerData/m_35577_ (I)I net/minecraft/world/entity/npc/VillagerData/getMaxXpPerLevel (I)I +MD: net/minecraft/world/entity/npc/VillagerData/m_35582_ (I)Z net/minecraft/world/entity/npc/VillagerData/canLevelUp (I)Z +MD: net/minecraft/world/entity/npc/VillagerDataHolder/m_28464_ (Lnet/minecraft/world/entity/npc/VillagerType;)V net/minecraft/world/entity/npc/VillagerDataHolder/setVariant (Lnet/minecraft/world/entity/npc/VillagerType;)V +MD: net/minecraft/world/entity/npc/VillagerDataHolder/m_28464_ (Ljava/lang/Object;)V net/minecraft/world/entity/npc/VillagerDataHolder/setVariant (Ljava/lang/Object;)V +MD: net/minecraft/world/entity/npc/VillagerDataHolder/m_28554_ ()Ljava/lang/Object; net/minecraft/world/entity/npc/VillagerDataHolder/getVariant ()Ljava/lang/Object; +MD: net/minecraft/world/entity/npc/VillagerDataHolder/m_28554_ ()Lnet/minecraft/world/entity/npc/VillagerType; net/minecraft/world/entity/npc/VillagerDataHolder/getVariant ()Lnet/minecraft/world/entity/npc/VillagerType; +MD: net/minecraft/world/entity/npc/VillagerDataHolder/m_34375_ (Lnet/minecraft/world/entity/npc/VillagerData;)V net/minecraft/world/entity/npc/VillagerDataHolder/setVillagerData (Lnet/minecraft/world/entity/npc/VillagerData;)V +MD: net/minecraft/world/entity/npc/VillagerDataHolder/m_7141_ ()Lnet/minecraft/world/entity/npc/VillagerData; net/minecraft/world/entity/npc/VillagerDataHolder/getVillagerData ()Lnet/minecraft/world/entity/npc/VillagerData; +MD: net/minecraft/world/entity/npc/VillagerProfession/ ()V net/minecraft/world/entity/npc/VillagerProfession/ ()V +MD: net/minecraft/world/entity/npc/VillagerProfession/ (Ljava/lang/String;Ljava/util/function/Predicate;Ljava/util/function/Predicate;Lcom/google/common/collect/ImmutableSet;Lcom/google/common/collect/ImmutableSet;Lnet/minecraft/sounds/SoundEvent;)V net/minecraft/world/entity/npc/VillagerProfession/ (Ljava/lang/String;Ljava/util/function/Predicate;Ljava/util/function/Predicate;Lcom/google/common/collect/ImmutableSet;Lcom/google/common/collect/ImmutableSet;Lnet/minecraft/sounds/SoundEvent;)V +MD: net/minecraft/world/entity/npc/VillagerProfession/equals (Ljava/lang/Object;)Z net/minecraft/world/entity/npc/VillagerProfession/equals (Ljava/lang/Object;)Z +MD: net/minecraft/world/entity/npc/VillagerProfession/f_219628_ ()Ljava/util/function/Predicate; net/minecraft/world/entity/npc/VillagerProfession/heldJobSite ()Ljava/util/function/Predicate; +MD: net/minecraft/world/entity/npc/VillagerProfession/f_219629_ ()Ljava/util/function/Predicate; net/minecraft/world/entity/npc/VillagerProfession/acquirableJobSite ()Ljava/util/function/Predicate; +MD: net/minecraft/world/entity/npc/VillagerProfession/f_35600_ ()Ljava/lang/String; net/minecraft/world/entity/npc/VillagerProfession/name ()Ljava/lang/String; +MD: net/minecraft/world/entity/npc/VillagerProfession/f_35602_ ()Lcom/google/common/collect/ImmutableSet; net/minecraft/world/entity/npc/VillagerProfession/requestedItems ()Lcom/google/common/collect/ImmutableSet; +MD: net/minecraft/world/entity/npc/VillagerProfession/f_35603_ ()Lcom/google/common/collect/ImmutableSet; net/minecraft/world/entity/npc/VillagerProfession/secondaryPoi ()Lcom/google/common/collect/ImmutableSet; +MD: net/minecraft/world/entity/npc/VillagerProfession/f_35604_ ()Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/npc/VillagerProfession/workSound ()Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/npc/VillagerProfession/hashCode ()I net/minecraft/world/entity/npc/VillagerProfession/hashCode ()I +MD: net/minecraft/world/entity/npc/VillagerProfession/m_219638_ (Lnet/minecraft/resources/ResourceKey;Lnet/minecraft/core/Holder;)Z net/minecraft/world/entity/npc/VillagerProfession/lambda$register$2 (Lnet/minecraft/resources/ResourceKey;Lnet/minecraft/core/Holder;)Z +MD: net/minecraft/world/entity/npc/VillagerProfession/m_219641_ (Lnet/minecraft/resources/ResourceKey;Lnet/minecraft/core/Holder;)Z net/minecraft/world/entity/npc/VillagerProfession/lambda$register$3 (Lnet/minecraft/resources/ResourceKey;Lnet/minecraft/core/Holder;)Z +MD: net/minecraft/world/entity/npc/VillagerProfession/m_219643_ (Ljava/lang/String;Lnet/minecraft/resources/ResourceKey;Lnet/minecraft/sounds/SoundEvent;)Lnet/minecraft/world/entity/npc/VillagerProfession; net/minecraft/world/entity/npc/VillagerProfession/register (Ljava/lang/String;Lnet/minecraft/resources/ResourceKey;Lnet/minecraft/sounds/SoundEvent;)Lnet/minecraft/world/entity/npc/VillagerProfession; +MD: net/minecraft/world/entity/npc/VillagerProfession/m_219647_ (Ljava/lang/String;Lnet/minecraft/resources/ResourceKey;Lcom/google/common/collect/ImmutableSet;Lcom/google/common/collect/ImmutableSet;Lnet/minecraft/sounds/SoundEvent;)Lnet/minecraft/world/entity/npc/VillagerProfession; net/minecraft/world/entity/npc/VillagerProfession/register (Ljava/lang/String;Lnet/minecraft/resources/ResourceKey;Lcom/google/common/collect/ImmutableSet;Lcom/google/common/collect/ImmutableSet;Lnet/minecraft/sounds/SoundEvent;)Lnet/minecraft/world/entity/npc/VillagerProfession; +MD: net/minecraft/world/entity/npc/VillagerProfession/m_219653_ (Ljava/lang/String;Ljava/util/function/Predicate;Ljava/util/function/Predicate;Lnet/minecraft/sounds/SoundEvent;)Lnet/minecraft/world/entity/npc/VillagerProfession; net/minecraft/world/entity/npc/VillagerProfession/register (Ljava/lang/String;Ljava/util/function/Predicate;Ljava/util/function/Predicate;Lnet/minecraft/sounds/SoundEvent;)Lnet/minecraft/world/entity/npc/VillagerProfession; +MD: net/minecraft/world/entity/npc/VillagerProfession/m_219658_ (Ljava/lang/String;Ljava/util/function/Predicate;Ljava/util/function/Predicate;Lcom/google/common/collect/ImmutableSet;Lcom/google/common/collect/ImmutableSet;Lnet/minecraft/sounds/SoundEvent;)Lnet/minecraft/world/entity/npc/VillagerProfession; net/minecraft/world/entity/npc/VillagerProfession/register (Ljava/lang/String;Ljava/util/function/Predicate;Ljava/util/function/Predicate;Lcom/google/common/collect/ImmutableSet;Lcom/google/common/collect/ImmutableSet;Lnet/minecraft/sounds/SoundEvent;)Lnet/minecraft/world/entity/npc/VillagerProfession; +MD: net/minecraft/world/entity/npc/VillagerProfession/m_219666_ (Lnet/minecraft/resources/ResourceKey;Lnet/minecraft/core/Holder;)Z net/minecraft/world/entity/npc/VillagerProfession/lambda$register$1 (Lnet/minecraft/resources/ResourceKey;Lnet/minecraft/core/Holder;)Z +MD: net/minecraft/world/entity/npc/VillagerProfession/m_238235_ (Lnet/minecraft/resources/ResourceKey;Lnet/minecraft/core/Holder;)Z net/minecraft/world/entity/npc/VillagerProfession/lambda$register$4 (Lnet/minecraft/resources/ResourceKey;Lnet/minecraft/core/Holder;)Z +MD: net/minecraft/world/entity/npc/VillagerProfession/m_238238_ (Lnet/minecraft/core/Holder;)Z net/minecraft/world/entity/npc/VillagerProfession/lambda$static$0 (Lnet/minecraft/core/Holder;)Z +MD: net/minecraft/world/entity/npc/VillagerProfession/toString ()Ljava/lang/String; net/minecraft/world/entity/npc/VillagerProfession/toString ()Ljava/lang/String; +MD: net/minecraft/world/entity/npc/VillagerTrades/ ()V net/minecraft/world/entity/npc/VillagerTrades/ ()V +MD: net/minecraft/world/entity/npc/VillagerTrades/ ()V net/minecraft/world/entity/npc/VillagerTrades/ ()V +MD: net/minecraft/world/entity/npc/VillagerTrades/m_35630_ (Lcom/google/common/collect/ImmutableMap;)Lit/unimi/dsi/fastutil/ints/Int2ObjectMap; net/minecraft/world/entity/npc/VillagerTrades/toIntMap (Lcom/google/common/collect/ImmutableMap;)Lit/unimi/dsi/fastutil/ints/Int2ObjectMap; +MD: net/minecraft/world/entity/npc/VillagerTrades/m_35632_ (Ljava/util/HashMap;)V net/minecraft/world/entity/npc/VillagerTrades/lambda$static$0 (Ljava/util/HashMap;)V +MD: net/minecraft/world/entity/npc/VillagerTrades$DyedArmorForEmeralds/ (Lnet/minecraft/world/item/Item;III)V net/minecraft/world/entity/npc/VillagerTrades$DyedArmorForEmeralds/ (Lnet/minecraft/world/item/Item;III)V +MD: net/minecraft/world/entity/npc/VillagerTrades$DyedArmorForEmeralds/ (Lnet/minecraft/world/item/Item;I)V net/minecraft/world/entity/npc/VillagerTrades$DyedArmorForEmeralds/ (Lnet/minecraft/world/item/Item;I)V +MD: net/minecraft/world/entity/npc/VillagerTrades$DyedArmorForEmeralds/m_213663_ (Lnet/minecraft/world/entity/Entity;Lnet/minecraft/util/RandomSource;)Lnet/minecraft/world/item/trading/MerchantOffer; net/minecraft/world/entity/npc/VillagerTrades$DyedArmorForEmeralds/getOffer (Lnet/minecraft/world/entity/Entity;Lnet/minecraft/util/RandomSource;)Lnet/minecraft/world/item/trading/MerchantOffer; +MD: net/minecraft/world/entity/npc/VillagerTrades$DyedArmorForEmeralds/m_219676_ (Lnet/minecraft/util/RandomSource;)Lnet/minecraft/world/item/DyeItem; net/minecraft/world/entity/npc/VillagerTrades$DyedArmorForEmeralds/getRandomDye (Lnet/minecraft/util/RandomSource;)Lnet/minecraft/world/item/DyeItem; +MD: net/minecraft/world/entity/npc/VillagerTrades$EmeraldForItems/ (Lnet/minecraft/world/level/ItemLike;III)V net/minecraft/world/entity/npc/VillagerTrades$EmeraldForItems/ (Lnet/minecraft/world/level/ItemLike;III)V +MD: net/minecraft/world/entity/npc/VillagerTrades$EmeraldForItems/m_213663_ (Lnet/minecraft/world/entity/Entity;Lnet/minecraft/util/RandomSource;)Lnet/minecraft/world/item/trading/MerchantOffer; net/minecraft/world/entity/npc/VillagerTrades$EmeraldForItems/getOffer (Lnet/minecraft/world/entity/Entity;Lnet/minecraft/util/RandomSource;)Lnet/minecraft/world/item/trading/MerchantOffer; +MD: net/minecraft/world/entity/npc/VillagerTrades$EmeraldsForVillagerTypeItem/ (IIILjava/util/Map;)V net/minecraft/world/entity/npc/VillagerTrades$EmeraldsForVillagerTypeItem/ (IIILjava/util/Map;)V +MD: net/minecraft/world/entity/npc/VillagerTrades$EmeraldsForVillagerTypeItem/m_213663_ (Lnet/minecraft/world/entity/Entity;Lnet/minecraft/util/RandomSource;)Lnet/minecraft/world/item/trading/MerchantOffer; net/minecraft/world/entity/npc/VillagerTrades$EmeraldsForVillagerTypeItem/getOffer (Lnet/minecraft/world/entity/Entity;Lnet/minecraft/util/RandomSource;)Lnet/minecraft/world/item/trading/MerchantOffer; +MD: net/minecraft/world/entity/npc/VillagerTrades$EmeraldsForVillagerTypeItem/m_257319_ (Lnet/minecraft/world/entity/npc/VillagerType;)V net/minecraft/world/entity/npc/VillagerTrades$EmeraldsForVillagerTypeItem/lambda$new$1 (Lnet/minecraft/world/entity/npc/VillagerType;)V +MD: net/minecraft/world/entity/npc/VillagerTrades$EmeraldsForVillagerTypeItem/m_35678_ (Ljava/util/Map;Lnet/minecraft/world/entity/npc/VillagerType;)Z net/minecraft/world/entity/npc/VillagerTrades$EmeraldsForVillagerTypeItem/lambda$new$0 (Ljava/util/Map;Lnet/minecraft/world/entity/npc/VillagerType;)Z +MD: net/minecraft/world/entity/npc/VillagerTrades$EnchantBookForEmeralds/ (I)V net/minecraft/world/entity/npc/VillagerTrades$EnchantBookForEmeralds/ (I)V +MD: net/minecraft/world/entity/npc/VillagerTrades$EnchantBookForEmeralds/m_213663_ (Lnet/minecraft/world/entity/Entity;Lnet/minecraft/util/RandomSource;)Lnet/minecraft/world/item/trading/MerchantOffer; net/minecraft/world/entity/npc/VillagerTrades$EnchantBookForEmeralds/getOffer (Lnet/minecraft/world/entity/Entity;Lnet/minecraft/util/RandomSource;)Lnet/minecraft/world/item/trading/MerchantOffer; +MD: net/minecraft/world/entity/npc/VillagerTrades$EnchantedItemForEmeralds/ (Lnet/minecraft/world/item/Item;III)V net/minecraft/world/entity/npc/VillagerTrades$EnchantedItemForEmeralds/ (Lnet/minecraft/world/item/Item;III)V +MD: net/minecraft/world/entity/npc/VillagerTrades$EnchantedItemForEmeralds/ (Lnet/minecraft/world/item/Item;IIIF)V net/minecraft/world/entity/npc/VillagerTrades$EnchantedItemForEmeralds/ (Lnet/minecraft/world/item/Item;IIIF)V +MD: net/minecraft/world/entity/npc/VillagerTrades$EnchantedItemForEmeralds/m_213663_ (Lnet/minecraft/world/entity/Entity;Lnet/minecraft/util/RandomSource;)Lnet/minecraft/world/item/trading/MerchantOffer; net/minecraft/world/entity/npc/VillagerTrades$EnchantedItemForEmeralds/getOffer (Lnet/minecraft/world/entity/Entity;Lnet/minecraft/util/RandomSource;)Lnet/minecraft/world/item/trading/MerchantOffer; +MD: net/minecraft/world/entity/npc/VillagerTrades$ItemListing/m_213663_ (Lnet/minecraft/world/entity/Entity;Lnet/minecraft/util/RandomSource;)Lnet/minecraft/world/item/trading/MerchantOffer; net/minecraft/world/entity/npc/VillagerTrades$ItemListing/getOffer (Lnet/minecraft/world/entity/Entity;Lnet/minecraft/util/RandomSource;)Lnet/minecraft/world/item/trading/MerchantOffer; +MD: net/minecraft/world/entity/npc/VillagerTrades$ItemsAndEmeraldsToItems/ (Lnet/minecraft/world/level/ItemLike;IILnet/minecraft/world/item/Item;III)V net/minecraft/world/entity/npc/VillagerTrades$ItemsAndEmeraldsToItems/ (Lnet/minecraft/world/level/ItemLike;IILnet/minecraft/world/item/Item;III)V +MD: net/minecraft/world/entity/npc/VillagerTrades$ItemsAndEmeraldsToItems/ (Lnet/minecraft/world/level/ItemLike;ILnet/minecraft/world/item/Item;III)V net/minecraft/world/entity/npc/VillagerTrades$ItemsAndEmeraldsToItems/ (Lnet/minecraft/world/level/ItemLike;ILnet/minecraft/world/item/Item;III)V +MD: net/minecraft/world/entity/npc/VillagerTrades$ItemsAndEmeraldsToItems/m_213663_ (Lnet/minecraft/world/entity/Entity;Lnet/minecraft/util/RandomSource;)Lnet/minecraft/world/item/trading/MerchantOffer; net/minecraft/world/entity/npc/VillagerTrades$ItemsAndEmeraldsToItems/getOffer (Lnet/minecraft/world/entity/Entity;Lnet/minecraft/util/RandomSource;)Lnet/minecraft/world/item/trading/MerchantOffer; +MD: net/minecraft/world/entity/npc/VillagerTrades$ItemsForEmeralds/ (Lnet/minecraft/world/item/Item;III)V net/minecraft/world/entity/npc/VillagerTrades$ItemsForEmeralds/ (Lnet/minecraft/world/item/Item;III)V +MD: net/minecraft/world/entity/npc/VillagerTrades$ItemsForEmeralds/ (Lnet/minecraft/world/item/Item;IIII)V net/minecraft/world/entity/npc/VillagerTrades$ItemsForEmeralds/ (Lnet/minecraft/world/item/Item;IIII)V +MD: net/minecraft/world/entity/npc/VillagerTrades$ItemsForEmeralds/ (Lnet/minecraft/world/level/block/Block;IIII)V net/minecraft/world/entity/npc/VillagerTrades$ItemsForEmeralds/ (Lnet/minecraft/world/level/block/Block;IIII)V +MD: net/minecraft/world/entity/npc/VillagerTrades$ItemsForEmeralds/ (Lnet/minecraft/world/item/ItemStack;IIII)V net/minecraft/world/entity/npc/VillagerTrades$ItemsForEmeralds/ (Lnet/minecraft/world/item/ItemStack;IIII)V +MD: net/minecraft/world/entity/npc/VillagerTrades$ItemsForEmeralds/ (Lnet/minecraft/world/item/ItemStack;IIIIF)V net/minecraft/world/entity/npc/VillagerTrades$ItemsForEmeralds/ (Lnet/minecraft/world/item/ItemStack;IIIIF)V +MD: net/minecraft/world/entity/npc/VillagerTrades$ItemsForEmeralds/m_213663_ (Lnet/minecraft/world/entity/Entity;Lnet/minecraft/util/RandomSource;)Lnet/minecraft/world/item/trading/MerchantOffer; net/minecraft/world/entity/npc/VillagerTrades$ItemsForEmeralds/getOffer (Lnet/minecraft/world/entity/Entity;Lnet/minecraft/util/RandomSource;)Lnet/minecraft/world/item/trading/MerchantOffer; +MD: net/minecraft/world/entity/npc/VillagerTrades$SuspiciousStewForEmerald/ (Lnet/minecraft/world/effect/MobEffect;II)V net/minecraft/world/entity/npc/VillagerTrades$SuspiciousStewForEmerald/ (Lnet/minecraft/world/effect/MobEffect;II)V +MD: net/minecraft/world/entity/npc/VillagerTrades$SuspiciousStewForEmerald/m_213663_ (Lnet/minecraft/world/entity/Entity;Lnet/minecraft/util/RandomSource;)Lnet/minecraft/world/item/trading/MerchantOffer; net/minecraft/world/entity/npc/VillagerTrades$SuspiciousStewForEmerald/getOffer (Lnet/minecraft/world/entity/Entity;Lnet/minecraft/util/RandomSource;)Lnet/minecraft/world/item/trading/MerchantOffer; +MD: net/minecraft/world/entity/npc/VillagerTrades$TippedArrowForItemsAndEmeralds/ (Lnet/minecraft/world/item/Item;ILnet/minecraft/world/item/Item;IIII)V net/minecraft/world/entity/npc/VillagerTrades$TippedArrowForItemsAndEmeralds/ (Lnet/minecraft/world/item/Item;ILnet/minecraft/world/item/Item;IIII)V +MD: net/minecraft/world/entity/npc/VillagerTrades$TippedArrowForItemsAndEmeralds/m_213663_ (Lnet/minecraft/world/entity/Entity;Lnet/minecraft/util/RandomSource;)Lnet/minecraft/world/item/trading/MerchantOffer; net/minecraft/world/entity/npc/VillagerTrades$TippedArrowForItemsAndEmeralds/getOffer (Lnet/minecraft/world/entity/Entity;Lnet/minecraft/util/RandomSource;)Lnet/minecraft/world/item/trading/MerchantOffer; +MD: net/minecraft/world/entity/npc/VillagerTrades$TippedArrowForItemsAndEmeralds/m_35803_ (Lnet/minecraft/world/item/alchemy/Potion;)Z net/minecraft/world/entity/npc/VillagerTrades$TippedArrowForItemsAndEmeralds/lambda$getOffer$0 (Lnet/minecraft/world/item/alchemy/Potion;)Z +MD: net/minecraft/world/entity/npc/VillagerTrades$TreasureMapForEmeralds/ (ILnet/minecraft/tags/TagKey;Ljava/lang/String;Lnet/minecraft/world/level/saveddata/maps/MapDecoration$Type;II)V net/minecraft/world/entity/npc/VillagerTrades$TreasureMapForEmeralds/ (ILnet/minecraft/tags/TagKey;Ljava/lang/String;Lnet/minecraft/world/level/saveddata/maps/MapDecoration$Type;II)V +MD: net/minecraft/world/entity/npc/VillagerTrades$TreasureMapForEmeralds/m_213663_ (Lnet/minecraft/world/entity/Entity;Lnet/minecraft/util/RandomSource;)Lnet/minecraft/world/item/trading/MerchantOffer; net/minecraft/world/entity/npc/VillagerTrades$TreasureMapForEmeralds/getOffer (Lnet/minecraft/world/entity/Entity;Lnet/minecraft/util/RandomSource;)Lnet/minecraft/world/item/trading/MerchantOffer; +MD: net/minecraft/world/entity/npc/VillagerType/ ()V net/minecraft/world/entity/npc/VillagerType/ ()V +MD: net/minecraft/world/entity/npc/VillagerType/ (Ljava/lang/String;)V net/minecraft/world/entity/npc/VillagerType/ (Ljava/lang/String;)V +MD: net/minecraft/world/entity/npc/VillagerType/m_204073_ (Lnet/minecraft/core/Holder;)Lnet/minecraft/world/entity/npc/VillagerType; net/minecraft/world/entity/npc/VillagerType/byBiome (Lnet/minecraft/core/Holder;)Lnet/minecraft/world/entity/npc/VillagerType; +MD: net/minecraft/world/entity/npc/VillagerType/m_35831_ (Ljava/lang/String;)Lnet/minecraft/world/entity/npc/VillagerType; net/minecraft/world/entity/npc/VillagerType/register (Ljava/lang/String;)Lnet/minecraft/world/entity/npc/VillagerType; +MD: net/minecraft/world/entity/npc/VillagerType/m_35833_ (Ljava/util/HashMap;)V net/minecraft/world/entity/npc/VillagerType/lambda$static$0 (Ljava/util/HashMap;)V +MD: net/minecraft/world/entity/npc/VillagerType/toString ()Ljava/lang/String; net/minecraft/world/entity/npc/VillagerType/toString ()Ljava/lang/String; +MD: net/minecraft/world/entity/npc/WanderingTrader/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V net/minecraft/world/entity/npc/WanderingTrader/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V +MD: net/minecraft/world/entity/npc/WanderingTrader/m_142606_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/AgeableMob;)Lnet/minecraft/world/entity/AgeableMob; net/minecraft/world/entity/npc/WanderingTrader/getBreedOffspring (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/AgeableMob;)Lnet/minecraft/world/entity/AgeableMob; +MD: net/minecraft/world/entity/npc/WanderingTrader/m_150048_ (Lnet/minecraft/world/entity/npc/WanderingTrader;)Lnet/minecraft/world/entity/ai/navigation/PathNavigation; net/minecraft/world/entity/npc/WanderingTrader/access$100 (Lnet/minecraft/world/entity/npc/WanderingTrader;)Lnet/minecraft/world/entity/ai/navigation/PathNavigation; +MD: net/minecraft/world/entity/npc/WanderingTrader/m_289161_ (Lnet/minecraft/world/entity/npc/WanderingTrader;)Z net/minecraft/world/entity/npc/WanderingTrader/lambda$registerGoals$0 (Lnet/minecraft/world/entity/npc/WanderingTrader;)Z +MD: net/minecraft/world/entity/npc/WanderingTrader/m_289162_ (Lnet/minecraft/world/entity/npc/WanderingTrader;)Z net/minecraft/world/entity/npc/WanderingTrader/lambda$registerGoals$1 (Lnet/minecraft/world/entity/npc/WanderingTrader;)Z +MD: net/minecraft/world/entity/npc/WanderingTrader/m_35849_ (Lnet/minecraft/world/entity/npc/WanderingTrader;)Lnet/minecraft/world/entity/ai/navigation/PathNavigation; net/minecraft/world/entity/npc/WanderingTrader/access$000 (Lnet/minecraft/world/entity/npc/WanderingTrader;)Lnet/minecraft/world/entity/ai/navigation/PathNavigation; +MD: net/minecraft/world/entity/npc/WanderingTrader/m_35862_ (Lnet/minecraft/world/entity/npc/WanderingTrader;)Lnet/minecraft/world/entity/ai/navigation/PathNavigation; net/minecraft/world/entity/npc/WanderingTrader/access$200 (Lnet/minecraft/world/entity/npc/WanderingTrader;)Lnet/minecraft/world/entity/ai/navigation/PathNavigation; +MD: net/minecraft/world/entity/npc/WanderingTrader/m_35866_ (Lnet/minecraft/world/entity/npc/WanderingTrader;)Lnet/minecraft/world/entity/ai/navigation/PathNavigation; net/minecraft/world/entity/npc/WanderingTrader/access$300 (Lnet/minecraft/world/entity/npc/WanderingTrader;)Lnet/minecraft/world/entity/ai/navigation/PathNavigation; +MD: net/minecraft/world/entity/npc/WanderingTrader/m_35876_ ()I net/minecraft/world/entity/npc/WanderingTrader/getDespawnDelay ()I +MD: net/minecraft/world/entity/npc/WanderingTrader/m_35877_ ()V net/minecraft/world/entity/npc/WanderingTrader/maybeDespawn ()V +MD: net/minecraft/world/entity/npc/WanderingTrader/m_35878_ ()Lnet/minecraft/core/BlockPos; net/minecraft/world/entity/npc/WanderingTrader/getWanderTarget ()Lnet/minecraft/core/BlockPos; +MD: net/minecraft/world/entity/npc/WanderingTrader/m_35883_ (Lnet/minecraft/core/BlockPos;)V net/minecraft/world/entity/npc/WanderingTrader/setWanderTarget (Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/world/entity/npc/WanderingTrader/m_35891_ (I)V net/minecraft/world/entity/npc/WanderingTrader/setDespawnDelay (I)V +MD: net/minecraft/world/entity/npc/WanderingTrader/m_5592_ ()Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/npc/WanderingTrader/getDeathSound ()Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/npc/WanderingTrader/m_6068_ (Z)Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/npc/WanderingTrader/getTradeUpdatedSound (Z)Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/npc/WanderingTrader/m_6071_ (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;)Lnet/minecraft/world/InteractionResult; net/minecraft/world/entity/npc/WanderingTrader/mobInteract (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;)Lnet/minecraft/world/InteractionResult; +MD: net/minecraft/world/entity/npc/WanderingTrader/m_6785_ (D)Z net/minecraft/world/entity/npc/WanderingTrader/removeWhenFarAway (D)Z +MD: net/minecraft/world/entity/npc/WanderingTrader/m_7378_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/entity/npc/WanderingTrader/readAdditionalSaveData (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/entity/npc/WanderingTrader/m_7380_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/entity/npc/WanderingTrader/addAdditionalSaveData (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/entity/npc/WanderingTrader/m_7515_ ()Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/npc/WanderingTrader/getAmbientSound ()Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/npc/WanderingTrader/m_7596_ ()Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/npc/WanderingTrader/getNotifyTradeSound ()Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/npc/WanderingTrader/m_7604_ ()V net/minecraft/world/entity/npc/WanderingTrader/updateTrades ()V +MD: net/minecraft/world/entity/npc/WanderingTrader/m_7826_ ()Z net/minecraft/world/entity/npc/WanderingTrader/showProgressBar ()Z +MD: net/minecraft/world/entity/npc/WanderingTrader/m_7838_ (Lnet/minecraft/world/item/ItemStack;)Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/npc/WanderingTrader/getDrinkingSound (Lnet/minecraft/world/item/ItemStack;)Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/npc/WanderingTrader/m_7975_ (Lnet/minecraft/world/damagesource/DamageSource;)Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/npc/WanderingTrader/getHurtSound (Lnet/minecraft/world/damagesource/DamageSource;)Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/npc/WanderingTrader/m_8058_ (Lnet/minecraft/world/item/trading/MerchantOffer;)V net/minecraft/world/entity/npc/WanderingTrader/rewardTradeXp (Lnet/minecraft/world/item/trading/MerchantOffer;)V +MD: net/minecraft/world/entity/npc/WanderingTrader/m_8099_ ()V net/minecraft/world/entity/npc/WanderingTrader/registerGoals ()V +MD: net/minecraft/world/entity/npc/WanderingTrader/m_8107_ ()V net/minecraft/world/entity/npc/WanderingTrader/aiStep ()V +MD: net/minecraft/world/entity/npc/WanderingTrader$WanderToPositionGoal/ (Lnet/minecraft/world/entity/npc/WanderingTrader;Lnet/minecraft/world/entity/npc/WanderingTrader;DD)V net/minecraft/world/entity/npc/WanderingTrader$WanderToPositionGoal/ (Lnet/minecraft/world/entity/npc/WanderingTrader;Lnet/minecraft/world/entity/npc/WanderingTrader;DD)V +MD: net/minecraft/world/entity/npc/WanderingTrader$WanderToPositionGoal/m_35903_ (Lnet/minecraft/core/BlockPos;D)Z net/minecraft/world/entity/npc/WanderingTrader$WanderToPositionGoal/isTooFarAway (Lnet/minecraft/core/BlockPos;D)Z +MD: net/minecraft/world/entity/npc/WanderingTrader$WanderToPositionGoal/m_8036_ ()Z net/minecraft/world/entity/npc/WanderingTrader$WanderToPositionGoal/canUse ()Z +MD: net/minecraft/world/entity/npc/WanderingTrader$WanderToPositionGoal/m_8037_ ()V net/minecraft/world/entity/npc/WanderingTrader$WanderToPositionGoal/tick ()V +MD: net/minecraft/world/entity/npc/WanderingTrader$WanderToPositionGoal/m_8041_ ()V net/minecraft/world/entity/npc/WanderingTrader$WanderToPositionGoal/stop ()V +MD: net/minecraft/world/entity/npc/WanderingTraderSpawner/ (Lnet/minecraft/world/level/storage/ServerLevelData;)V net/minecraft/world/entity/npc/WanderingTraderSpawner/ (Lnet/minecraft/world/level/storage/ServerLevelData;)V +MD: net/minecraft/world/entity/npc/WanderingTraderSpawner/m_219710_ (Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/entity/npc/WanderingTraderSpawner/lambda$spawn$1 (Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/entity/npc/WanderingTraderSpawner/m_219712_ (Lnet/minecraft/core/Holder;)Z net/minecraft/world/entity/npc/WanderingTraderSpawner/lambda$spawn$0 (Lnet/minecraft/core/Holder;)Z +MD: net/minecraft/world/entity/npc/WanderingTraderSpawner/m_35915_ (Lnet/minecraft/server/level/ServerLevel;)Z net/minecraft/world/entity/npc/WanderingTraderSpawner/spawn (Lnet/minecraft/server/level/ServerLevel;)Z +MD: net/minecraft/world/entity/npc/WanderingTraderSpawner/m_35917_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/npc/WanderingTrader;I)V net/minecraft/world/entity/npc/WanderingTraderSpawner/tryToSpawnLlamaFor (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/npc/WanderingTrader;I)V +MD: net/minecraft/world/entity/npc/WanderingTraderSpawner/m_35925_ (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/entity/npc/WanderingTraderSpawner/hasEnoughSpace (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/entity/npc/WanderingTraderSpawner/m_35928_ (Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;I)Lnet/minecraft/core/BlockPos; net/minecraft/world/entity/npc/WanderingTraderSpawner/findSpawnPositionNear (Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;I)Lnet/minecraft/core/BlockPos; +MD: net/minecraft/world/entity/npc/WanderingTraderSpawner/m_7995_ (Lnet/minecraft/server/level/ServerLevel;ZZ)I net/minecraft/world/entity/npc/WanderingTraderSpawner/tick (Lnet/minecraft/server/level/ServerLevel;ZZ)I +MD: net/minecraft/world/entity/player/Abilities/ ()V net/minecraft/world/entity/player/Abilities/ ()V +MD: net/minecraft/world/entity/player/Abilities/m_35942_ ()F net/minecraft/world/entity/player/Abilities/getFlyingSpeed ()F +MD: net/minecraft/world/entity/player/Abilities/m_35943_ (F)V net/minecraft/world/entity/player/Abilities/setFlyingSpeed (F)V +MD: net/minecraft/world/entity/player/Abilities/m_35945_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/entity/player/Abilities/addSaveData (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/entity/player/Abilities/m_35947_ ()F net/minecraft/world/entity/player/Abilities/getWalkingSpeed ()F +MD: net/minecraft/world/entity/player/Abilities/m_35948_ (F)V net/minecraft/world/entity/player/Abilities/setWalkingSpeed (F)V +MD: net/minecraft/world/entity/player/Abilities/m_35950_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/entity/player/Abilities/loadSaveData (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/entity/player/ChatVisiblity/ ()V net/minecraft/world/entity/player/ChatVisiblity/ ()V +MD: net/minecraft/world/entity/player/ChatVisiblity/ (Ljava/lang/String;IILjava/lang/String;)V net/minecraft/world/entity/player/ChatVisiblity/ (Ljava/lang/String;IILjava/lang/String;)V +MD: net/minecraft/world/entity/player/ChatVisiblity/m_150063_ ()[Lnet/minecraft/world/entity/player/ChatVisiblity; net/minecraft/world/entity/player/ChatVisiblity/$values ()[Lnet/minecraft/world/entity/player/ChatVisiblity; +MD: net/minecraft/world/entity/player/ChatVisiblity/m_35965_ ()I net/minecraft/world/entity/player/ChatVisiblity/getId ()I +MD: net/minecraft/world/entity/player/ChatVisiblity/m_35966_ (I)Lnet/minecraft/world/entity/player/ChatVisiblity; net/minecraft/world/entity/player/ChatVisiblity/byId (I)Lnet/minecraft/world/entity/player/ChatVisiblity; +MD: net/minecraft/world/entity/player/ChatVisiblity/m_35968_ ()Ljava/lang/String; net/minecraft/world/entity/player/ChatVisiblity/getKey ()Ljava/lang/String; +MD: net/minecraft/world/entity/player/ChatVisiblity/valueOf (Ljava/lang/String;)Lnet/minecraft/world/entity/player/ChatVisiblity; net/minecraft/world/entity/player/ChatVisiblity/valueOf (Ljava/lang/String;)Lnet/minecraft/world/entity/player/ChatVisiblity; +MD: net/minecraft/world/entity/player/ChatVisiblity/values ()[Lnet/minecraft/world/entity/player/ChatVisiblity; net/minecraft/world/entity/player/ChatVisiblity/values ()[Lnet/minecraft/world/entity/player/ChatVisiblity; +MD: net/minecraft/world/entity/player/Inventory/ ()V net/minecraft/world/entity/player/Inventory/ ()V +MD: net/minecraft/world/entity/player/Inventory/ (Lnet/minecraft/world/entity/player/Player;)V net/minecraft/world/entity/player/Inventory/ (Lnet/minecraft/world/entity/player/Player;)V +MD: net/minecraft/world/entity/player/Inventory/m_150072_ (Lnet/minecraft/world/damagesource/DamageSource;F[I)V net/minecraft/world/entity/player/Inventory/hurtArmor (Lnet/minecraft/world/damagesource/DamageSource;F[I)V +MD: net/minecraft/world/entity/player/Inventory/m_150076_ (Lnet/minecraft/world/item/ItemStack;Z)V net/minecraft/world/entity/player/Inventory/placeItemBackInInventory (Lnet/minecraft/world/item/ItemStack;Z)V +MD: net/minecraft/world/entity/player/Inventory/m_150079_ (Lnet/minecraft/world/item/ItemStack;)V net/minecraft/world/entity/player/Inventory/placeItemBackInInventory (Lnet/minecraft/world/item/ItemStack;)V +MD: net/minecraft/world/entity/player/Inventory/m_182403_ (Z)Lnet/minecraft/world/item/ItemStack; net/minecraft/world/entity/player/Inventory/removeFromSelected (Z)Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/entity/player/Inventory/m_204075_ (Lnet/minecraft/tags/TagKey;)Z net/minecraft/world/entity/player/Inventory/contains (Lnet/minecraft/tags/TagKey;)Z +MD: net/minecraft/world/entity/player/Inventory/m_35988_ (D)V net/minecraft/world/entity/player/Inventory/swapPaint (D)V +MD: net/minecraft/world/entity/player/Inventory/m_35995_ (ILnet/minecraft/world/entity/player/Player;)V net/minecraft/world/entity/player/Inventory/lambda$hurtArmor$1 (ILnet/minecraft/world/entity/player/Player;)V +MD: net/minecraft/world/entity/player/Inventory/m_36006_ (Lnet/minecraft/world/entity/player/Inventory;)V net/minecraft/world/entity/player/Inventory/replaceWith (Lnet/minecraft/world/entity/player/Inventory;)V +MD: net/minecraft/world/entity/player/Inventory/m_36010_ (Lnet/minecraft/world/entity/player/StackedContents;)V net/minecraft/world/entity/player/Inventory/fillStackedContents (Lnet/minecraft/world/entity/player/StackedContents;)V +MD: net/minecraft/world/entity/player/Inventory/m_36012_ (Lnet/minecraft/world/item/ItemStack;)V net/minecraft/world/entity/player/Inventory/setPickedItem (Lnet/minecraft/world/item/ItemStack;)V +MD: net/minecraft/world/entity/player/Inventory/m_36014_ (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/item/ItemStack;)Z net/minecraft/world/entity/player/Inventory/hasRemainingSpaceForItem (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/item/ItemStack;)Z +MD: net/minecraft/world/entity/player/Inventory/m_36020_ (Lnet/minecraft/world/level/block/state/BlockState;)F net/minecraft/world/entity/player/Inventory/getDestroySpeed (Lnet/minecraft/world/level/block/state/BlockState;)F +MD: net/minecraft/world/entity/player/Inventory/m_36022_ (Ljava/util/function/Predicate;ILnet/minecraft/world/Container;)I net/minecraft/world/entity/player/Inventory/clearOrCountMatchingItems (Ljava/util/function/Predicate;ILnet/minecraft/world/Container;)I +MD: net/minecraft/world/entity/player/Inventory/m_36026_ (Lnet/minecraft/nbt/ListTag;)Lnet/minecraft/nbt/ListTag; net/minecraft/world/entity/player/Inventory/save (Lnet/minecraft/nbt/ListTag;)Lnet/minecraft/nbt/ListTag; +MD: net/minecraft/world/entity/player/Inventory/m_36030_ (Lnet/minecraft/world/item/ItemStack;)I net/minecraft/world/entity/player/Inventory/findSlotMatchingItem (Lnet/minecraft/world/item/ItemStack;)I +MD: net/minecraft/world/entity/player/Inventory/m_36035_ (Lnet/minecraft/nbt/ListTag;)V net/minecraft/world/entity/player/Inventory/load (Lnet/minecraft/nbt/ListTag;)V +MD: net/minecraft/world/entity/player/Inventory/m_36038_ (I)V net/minecraft/world/entity/player/Inventory/pickSlot (I)V +MD: net/minecraft/world/entity/player/Inventory/m_36040_ (ILnet/minecraft/world/item/ItemStack;)Z net/minecraft/world/entity/player/Inventory/add (ILnet/minecraft/world/item/ItemStack;)Z +MD: net/minecraft/world/entity/player/Inventory/m_36043_ (Lnet/minecraft/world/item/ItemStack;)I net/minecraft/world/entity/player/Inventory/findSlotMatchingUnusedItem (Lnet/minecraft/world/item/ItemStack;)I +MD: net/minecraft/world/entity/player/Inventory/m_36045_ (I)Z net/minecraft/world/entity/player/Inventory/isHotbarSlot (I)Z +MD: net/minecraft/world/entity/player/Inventory/m_36047_ (ILnet/minecraft/world/item/ItemStack;)I net/minecraft/world/entity/player/Inventory/addResource (ILnet/minecraft/world/item/ItemStack;)I +MD: net/minecraft/world/entity/player/Inventory/m_36050_ (Lnet/minecraft/world/item/ItemStack;)I net/minecraft/world/entity/player/Inventory/getSlotWithRemainingSpace (Lnet/minecraft/world/item/ItemStack;)I +MD: net/minecraft/world/entity/player/Inventory/m_36052_ (I)Lnet/minecraft/world/item/ItemStack; net/minecraft/world/entity/player/Inventory/getArmor (I)Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/entity/player/Inventory/m_36054_ (Lnet/minecraft/world/item/ItemStack;)Z net/minecraft/world/entity/player/Inventory/add (Lnet/minecraft/world/item/ItemStack;)Z +MD: net/minecraft/world/entity/player/Inventory/m_36056_ ()Lnet/minecraft/world/item/ItemStack; net/minecraft/world/entity/player/Inventory/getSelected ()Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/entity/player/Inventory/m_36057_ (Lnet/minecraft/world/item/ItemStack;)V net/minecraft/world/entity/player/Inventory/removeItem (Lnet/minecraft/world/item/ItemStack;)V +MD: net/minecraft/world/entity/player/Inventory/m_36059_ ()I net/minecraft/world/entity/player/Inventory/getSelectionSize ()I +MD: net/minecraft/world/entity/player/Inventory/m_36062_ ()I net/minecraft/world/entity/player/Inventory/getFreeSlot ()I +MD: net/minecraft/world/entity/player/Inventory/m_36063_ (Lnet/minecraft/world/item/ItemStack;)Z net/minecraft/world/entity/player/Inventory/contains (Lnet/minecraft/world/item/ItemStack;)Z +MD: net/minecraft/world/entity/player/Inventory/m_36065_ ()I net/minecraft/world/entity/player/Inventory/getSuitableHotbarSlot ()I +MD: net/minecraft/world/entity/player/Inventory/m_36066_ (Lnet/minecraft/world/item/ItemStack;)I net/minecraft/world/entity/player/Inventory/addResource (Lnet/minecraft/world/item/ItemStack;)I +MD: net/minecraft/world/entity/player/Inventory/m_36068_ ()V net/minecraft/world/entity/player/Inventory/tick ()V +MD: net/minecraft/world/entity/player/Inventory/m_36069_ (Lnet/minecraft/world/item/ItemStack;)Ljava/lang/String; net/minecraft/world/entity/player/Inventory/lambda$add$0 (Lnet/minecraft/world/item/ItemStack;)Ljava/lang/String; +MD: net/minecraft/world/entity/player/Inventory/m_36071_ ()V net/minecraft/world/entity/player/Inventory/dropAll ()V +MD: net/minecraft/world/entity/player/Inventory/m_36072_ ()I net/minecraft/world/entity/player/Inventory/getTimesChanged ()I +MD: net/minecraft/world/entity/player/Inventory/m_6211_ ()V net/minecraft/world/entity/player/Inventory/clearContent ()V +MD: net/minecraft/world/entity/player/Inventory/m_6542_ (Lnet/minecraft/world/entity/player/Player;)Z net/minecraft/world/entity/player/Inventory/stillValid (Lnet/minecraft/world/entity/player/Player;)Z +MD: net/minecraft/world/entity/player/Inventory/m_6596_ ()V net/minecraft/world/entity/player/Inventory/setChanged ()V +MD: net/minecraft/world/entity/player/Inventory/m_6643_ ()I net/minecraft/world/entity/player/Inventory/getContainerSize ()I +MD: net/minecraft/world/entity/player/Inventory/m_6836_ (ILnet/minecraft/world/item/ItemStack;)V net/minecraft/world/entity/player/Inventory/setItem (ILnet/minecraft/world/item/ItemStack;)V +MD: net/minecraft/world/entity/player/Inventory/m_7407_ (II)Lnet/minecraft/world/item/ItemStack; net/minecraft/world/entity/player/Inventory/removeItem (II)Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/entity/player/Inventory/m_7755_ ()Lnet/minecraft/network/chat/Component; net/minecraft/world/entity/player/Inventory/getName ()Lnet/minecraft/network/chat/Component; +MD: net/minecraft/world/entity/player/Inventory/m_7983_ ()Z net/minecraft/world/entity/player/Inventory/isEmpty ()Z +MD: net/minecraft/world/entity/player/Inventory/m_8016_ (I)Lnet/minecraft/world/item/ItemStack; net/minecraft/world/entity/player/Inventory/removeItemNoUpdate (I)Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/entity/player/Inventory/m_8020_ (I)Lnet/minecraft/world/item/ItemStack; net/minecraft/world/entity/player/Inventory/getItem (I)Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/entity/player/Player/ ()V net/minecraft/world/entity/player/Player/ ()V +MD: net/minecraft/world/entity/player/Player/ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;FLcom/mojang/authlib/GameProfile;)V net/minecraft/world/entity/player/Player/ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;FLcom/mojang/authlib/GameProfile;)V +MD: net/minecraft/world/entity/player/Player/m_141942_ (I)Lnet/minecraft/world/entity/SlotAccess; net/minecraft/world/entity/player/Player/getSlot (I)Lnet/minecraft/world/entity/SlotAccess; +MD: net/minecraft/world/entity/player/Player/m_141945_ (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/inventory/ClickAction;)V net/minecraft/world/entity/player/Player/updateTutorialInventoryAction (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/inventory/ClickAction;)V +MD: net/minecraft/world/entity/player/Player/m_142066_ ()Z net/minecraft/world/entity/player/Player/canBeSeenAsEnemy ()Z +MD: net/minecraft/world/entity/player/Player/m_142319_ ()Lnet/minecraft/world/entity/Entity$MovementEmission; net/minecraft/world/entity/player/Player/getMovementEmission ()Lnet/minecraft/world/entity/Entity$MovementEmission; +MD: net/minecraft/world/entity/player/Player/m_142389_ ()Z net/minecraft/world/entity/player/Player/isAlwaysTicking ()Z +MD: net/minecraft/world/entity/player/Player/m_142391_ ()Z net/minecraft/world/entity/player/Player/shouldBeSaved ()Z +MD: net/minecraft/world/entity/player/Player/m_142535_ (FFLnet/minecraft/world/damagesource/DamageSource;)Z net/minecraft/world/entity/player/Player/causeFallDamage (FFLnet/minecraft/world/damagesource/DamageSource;)Z +MD: net/minecraft/world/entity/player/Player/m_142642_ (Lnet/minecraft/world/damagesource/DamageSource;F)V net/minecraft/world/entity/player/Player/hurtHelmet (Lnet/minecraft/world/damagesource/DamageSource;F)V +MD: net/minecraft/world/entity/player/Player/m_142687_ (Lnet/minecraft/world/entity/Entity$RemovalReason;)V net/minecraft/world/entity/player/Player/remove (Lnet/minecraft/world/entity/Entity$RemovalReason;)V +MD: net/minecraft/world/entity/player/Player/m_143387_ ()Z net/minecraft/world/entity/player/Player/isTextFilteringEnabled ()Z +MD: net/minecraft/world/entity/player/Player/m_150108_ ()Z net/minecraft/world/entity/player/Player/isScoping ()Z +MD: net/minecraft/world/entity/player/Player/m_150109_ ()Lnet/minecraft/world/entity/player/Inventory; net/minecraft/world/entity/player/Player/getInventory ()Lnet/minecraft/world/entity/player/Inventory; +MD: net/minecraft/world/entity/player/Player/m_150110_ ()Lnet/minecraft/world/entity/player/Abilities; net/minecraft/world/entity/player/Player/getAbilities ()Lnet/minecraft/world/entity/player/Abilities; +MD: net/minecraft/world/entity/player/Player/m_196493_ ()Lnet/minecraft/world/entity/LivingEntity$Fallsounds; net/minecraft/world/entity/player/Player/getFallSounds ()Lnet/minecraft/world/entity/LivingEntity$Fallsounds; +MD: net/minecraft/world/entity/player/Player/m_204079_ (I)V net/minecraft/world/entity/player/Player/startAutoSpinAttack (I)V +MD: net/minecraft/world/entity/player/Player/m_213772_ (Lnet/minecraft/world/entity/EquipmentSlot;)Z net/minecraft/world/entity/player/Player/doesEmitEquipEvent (Lnet/minecraft/world/entity/EquipmentSlot;)Z +MD: net/minecraft/world/entity/player/Player/m_213860_ ()I net/minecraft/world/entity/player/Player/getExperienceReward ()I +MD: net/minecraft/world/entity/player/Player/m_214076_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;)Z net/minecraft/world/entity/player/Player/killedEntity (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/LivingEntity;)Z +MD: net/minecraft/world/entity/player/Player/m_219737_ (Lnet/minecraft/world/InteractionHand;Lnet/minecraft/world/entity/player/Player;)V net/minecraft/world/entity/player/Player/lambda$hurtCurrentlyUsedShield$4 (Lnet/minecraft/world/InteractionHand;Lnet/minecraft/world/entity/player/Player;)V +MD: net/minecraft/world/entity/player/Player/m_219744_ (Lnet/minecraft/core/GlobalPos;)Ljava/util/Optional; net/minecraft/world/entity/player/Player/lambda$addAdditionalSaveData$2 (Lnet/minecraft/core/GlobalPos;)Ljava/util/Optional; +MD: net/minecraft/world/entity/player/Player/m_219749_ (Ljava/util/Optional;)V net/minecraft/world/entity/player/Player/setLastDeathLocation (Ljava/util/Optional;)V +MD: net/minecraft/world/entity/player/Player/m_219754_ (Lnet/minecraft/nbt/CompoundTag;Lnet/minecraft/nbt/Tag;)V net/minecraft/world/entity/player/Player/lambda$addAdditionalSaveData$3 (Lnet/minecraft/nbt/CompoundTag;Lnet/minecraft/nbt/Tag;)V +MD: net/minecraft/world/entity/player/Player/m_219759_ ()Ljava/util/Optional; net/minecraft/world/entity/player/Player/getLastDeathLocation ()Ljava/util/Optional; +MD: net/minecraft/world/entity/player/Player/m_242612_ ()Z net/minecraft/world/entity/player/Player/hasContainerOpen ()Z +MD: net/minecraft/world/entity/player/Player/m_245217_ ()Ljava/util/Optional; net/minecraft/world/entity/player/Player/getWardenSpawnTracker ()Ljava/util/Optional; +MD: net/minecraft/world/entity/player/Player/m_264297_ ()F net/minecraft/world/entity/player/Player/getHurtDir ()F +MD: net/minecraft/world/entity/player/Player/m_264410_ ()Z net/minecraft/world/entity/player/Player/canSprint ()Z +MD: net/minecraft/world/entity/player/Player/m_271807_ ()Z net/minecraft/world/entity/player/Player/canBeHitByProjectile ()Z +MD: net/minecraft/world/entity/player/Player/m_274460_ ()F net/minecraft/world/entity/player/Player/getFlyingSpeed ()F +MD: net/minecraft/world/entity/player/Player/m_280300_ (Lnet/minecraft/world/item/crafting/Recipe;Ljava/util/List;)V net/minecraft/world/entity/player/Player/triggerRecipeCrafted (Lnet/minecraft/world/item/crafting/Recipe;Ljava/util/List;)V +MD: net/minecraft/world/entity/player/Player/m_289163_ (Lnet/minecraft/world/entity/EntityType;)V net/minecraft/world/entity/player/Player/lambda$playShoulderEntityAmbientSound$1 (Lnet/minecraft/world/entity/EntityType;)V +MD: net/minecraft/world/entity/player/Player/m_289164_ (Ljava/lang/String;Lnet/minecraft/network/chat/Style;)Lnet/minecraft/network/chat/Style; net/minecraft/world/entity/player/Player/lambda$decorateDisplayNameComponent$6 (Ljava/lang/String;Lnet/minecraft/network/chat/Style;)Lnet/minecraft/network/chat/Style; +MD: net/minecraft/world/entity/player/Player/m_289165_ (Lnet/minecraft/world/entity/Entity;)V net/minecraft/world/entity/player/Player/lambda$respawnEntityOnShoulder$5 (Lnet/minecraft/world/entity/Entity;)V +MD: net/minecraft/world/entity/player/Player/m_36130_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;FZZ)Ljava/util/Optional; net/minecraft/world/entity/player/Player/findRespawnPositionAndUseSpawnBlock (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;FZZ)Ljava/util/Optional; +MD: net/minecraft/world/entity/player/Player/m_36157_ (Lnet/minecraft/world/entity/Entity;Lnet/minecraft/world/InteractionHand;)Lnet/minecraft/world/InteractionResult; net/minecraft/world/entity/player/Player/interactOn (Lnet/minecraft/world/entity/Entity;Lnet/minecraft/world/InteractionHand;)Lnet/minecraft/world/InteractionResult; +MD: net/minecraft/world/entity/player/Player/m_36163_ (Lnet/minecraft/world/entity/HumanoidArm;)V net/minecraft/world/entity/player/Player/setMainArm (Lnet/minecraft/world/entity/HumanoidArm;)V +MD: net/minecraft/world/entity/player/Player/m_36170_ (Lnet/minecraft/world/entity/player/PlayerModelPart;)Z net/minecraft/world/entity/player/Player/isModelPartShown (Lnet/minecraft/world/entity/player/PlayerModelPart;)Z +MD: net/minecraft/world/entity/player/Player/m_36176_ (Lnet/minecraft/world/item/ItemStack;Z)Lnet/minecraft/world/entity/item/ItemEntity; net/minecraft/world/entity/player/Player/drop (Lnet/minecraft/world/item/ItemStack;Z)Lnet/minecraft/world/entity/item/ItemEntity; +MD: net/minecraft/world/entity/player/Player/m_36187_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/GameType;)Z net/minecraft/world/entity/player/Player/blockActionRestricted (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/GameType;)Z +MD: net/minecraft/world/entity/player/Player/m_36204_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Direction;Lnet/minecraft/world/item/ItemStack;)Z net/minecraft/world/entity/player/Player/mayUseItemAt (Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Direction;Lnet/minecraft/world/item/ItemStack;)Z +MD: net/minecraft/world/entity/player/Player/m_36208_ (Lnet/minecraft/core/particles/ParticleOptions;)V net/minecraft/world/entity/player/Player/addParticlesAroundSelf (Lnet/minecraft/core/particles/ParticleOptions;)V +MD: net/minecraft/world/entity/player/Player/m_36218_ (Lnet/minecraft/network/chat/MutableComponent;)Lnet/minecraft/network/chat/MutableComponent; net/minecraft/world/entity/player/Player/decorateDisplayNameComponent (Lnet/minecraft/network/chat/MutableComponent;)Lnet/minecraft/network/chat/MutableComponent; +MD: net/minecraft/world/entity/player/Player/m_36220_ (Lnet/minecraft/resources/ResourceLocation;)V net/minecraft/world/entity/player/Player/awardStat (Lnet/minecraft/resources/ResourceLocation;)V +MD: net/minecraft/world/entity/player/Player/m_36222_ (Lnet/minecraft/resources/ResourceLocation;I)V net/minecraft/world/entity/player/Player/awardStat (Lnet/minecraft/resources/ResourceLocation;I)V +MD: net/minecraft/world/entity/player/Player/m_36246_ (Lnet/minecraft/stats/Stat;)V net/minecraft/world/entity/player/Player/awardStat (Lnet/minecraft/stats/Stat;)V +MD: net/minecraft/world/entity/player/Player/m_36277_ (Lnet/minecraft/world/entity/Entity;)V net/minecraft/world/entity/player/Player/touch (Lnet/minecraft/world/entity/Entity;)V +MD: net/minecraft/world/entity/player/Player/m_36279_ (Lnet/minecraft/world/entity/EntityType;)Z net/minecraft/world/entity/player/Player/lambda$playShoulderEntityAmbientSound$0 (Lnet/minecraft/world/entity/EntityType;)Z +MD: net/minecraft/world/entity/player/Player/m_36281_ (Lnet/minecraft/world/level/block/state/BlockState;)F net/minecraft/world/entity/player/Player/getDestroySpeed (Lnet/minecraft/world/level/block/state/BlockState;)F +MD: net/minecraft/world/entity/player/Player/m_36298_ (Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/world/entity/player/Player/hasCorrectToolForDrops (Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/world/entity/player/Player/m_36316_ ()Lcom/mojang/authlib/GameProfile; net/minecraft/world/entity/player/Player/getGameProfile ()Lcom/mojang/authlib/GameProfile; +MD: net/minecraft/world/entity/player/Player/m_36317_ ()Z net/minecraft/world/entity/player/Player/isSleepingLongEnough ()Z +MD: net/minecraft/world/entity/player/Player/m_36318_ ()I net/minecraft/world/entity/player/Player/getSleepTimer ()I +MD: net/minecraft/world/entity/player/Player/m_36319_ ()Z net/minecraft/world/entity/player/Player/tryToStartFallFlying ()Z +MD: net/minecraft/world/entity/player/Player/m_36320_ ()V net/minecraft/world/entity/player/Player/startFallFlying ()V +MD: net/minecraft/world/entity/player/Player/m_36321_ ()V net/minecraft/world/entity/player/Player/stopFallFlying ()V +MD: net/minecraft/world/entity/player/Player/m_36322_ ()I net/minecraft/world/entity/player/Player/getEnchantmentSeed ()I +MD: net/minecraft/world/entity/player/Player/m_36323_ ()I net/minecraft/world/entity/player/Player/getXpNeededForNextLevel ()I +MD: net/minecraft/world/entity/player/Player/m_36324_ ()Lnet/minecraft/world/food/FoodData; net/minecraft/world/entity/player/Player/getFoodData ()Lnet/minecraft/world/food/FoodData; +MD: net/minecraft/world/entity/player/Player/m_36325_ ()Z net/minecraft/world/entity/player/Player/isHurt ()Z +MD: net/minecraft/world/entity/player/Player/m_36326_ ()Z net/minecraft/world/entity/player/Player/mayBuild ()Z +MD: net/minecraft/world/entity/player/Player/m_36327_ ()Lnet/minecraft/world/inventory/PlayerEnderChestContainer; net/minecraft/world/entity/player/Player/getEnderChestInventory ()Lnet/minecraft/world/inventory/PlayerEnderChestContainer; +MD: net/minecraft/world/entity/player/Player/m_36328_ ()V net/minecraft/world/entity/player/Player/removeEntitiesOnShoulder ()V +MD: net/minecraft/world/entity/player/Player/m_36329_ ()Lnet/minecraft/world/scores/Scoreboard; net/minecraft/world/entity/player/Player/getScoreboard ()Lnet/minecraft/world/scores/Scoreboard; +MD: net/minecraft/world/entity/player/Player/m_36330_ ()Z net/minecraft/world/entity/player/Player/isReducedDebugInfo ()Z +MD: net/minecraft/world/entity/player/Player/m_36331_ ()Lnet/minecraft/nbt/CompoundTag; net/minecraft/world/entity/player/Player/getShoulderEntityLeft ()Lnet/minecraft/nbt/CompoundTag; +MD: net/minecraft/world/entity/player/Player/m_36332_ ()Lnet/minecraft/nbt/CompoundTag; net/minecraft/world/entity/player/Player/getShoulderEntityRight ()Lnet/minecraft/nbt/CompoundTag; +MD: net/minecraft/world/entity/player/Player/m_36333_ ()F net/minecraft/world/entity/player/Player/getCurrentItemAttackStrengthDelay ()F +MD: net/minecraft/world/entity/player/Player/m_36334_ ()V net/minecraft/world/entity/player/Player/resetAttackStrengthTicker ()V +MD: net/minecraft/world/entity/player/Player/m_36335_ ()Lnet/minecraft/world/item/ItemCooldowns; net/minecraft/world/entity/player/Player/getCooldowns ()Lnet/minecraft/world/item/ItemCooldowns; +MD: net/minecraft/world/entity/player/Player/m_36336_ ()F net/minecraft/world/entity/player/Player/getLuck ()F +MD: net/minecraft/world/entity/player/Player/m_36337_ ()Z net/minecraft/world/entity/player/Player/canUseGameMasterBlocks ()Z +MD: net/minecraft/world/entity/player/Player/m_36340_ ()Lnet/minecraft/world/entity/ai/attributes/AttributeSupplier$Builder; net/minecraft/world/entity/player/Player/createAttributes ()Lnet/minecraft/world/entity/ai/attributes/AttributeSupplier$Builder; +MD: net/minecraft/world/entity/player/Player/m_36341_ ()Z net/minecraft/world/entity/player/Player/isSecondaryUseActive ()Z +MD: net/minecraft/world/entity/player/Player/m_36342_ ()Z net/minecraft/world/entity/player/Player/wantsToStopRiding ()Z +MD: net/minecraft/world/entity/player/Player/m_36343_ ()Z net/minecraft/world/entity/player/Player/isStayingOnGroundSurface ()Z +MD: net/minecraft/world/entity/player/Player/m_36344_ ()I net/minecraft/world/entity/player/Player/getScore ()I +MD: net/minecraft/world/entity/player/Player/m_36345_ ()V net/minecraft/world/entity/player/Player/destroyVanishingCursedItems ()V +MD: net/minecraft/world/entity/player/Player/m_36346_ ()V net/minecraft/world/entity/player/Player/sweepAttack ()V +MD: net/minecraft/world/entity/player/Player/m_36350_ (Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/entity/player/Player/freeAt (Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/entity/player/Player/m_36356_ (Lnet/minecraft/world/item/ItemStack;)Z net/minecraft/world/entity/player/Player/addItem (Lnet/minecraft/world/item/ItemStack;)Z +MD: net/minecraft/world/entity/player/Player/m_36360_ (Lnet/minecraft/nbt/CompoundTag;)Z net/minecraft/world/entity/player/Player/setEntityOnShoulder (Lnet/minecraft/nbt/CompoundTag;)Z +MD: net/minecraft/world/entity/player/Player/m_36362_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/entity/player/Player/setShoulderEntityLeft (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/entity/player/Player/m_36364_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/entity/player/Player/setShoulderEntityRight (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/entity/player/Player/m_36367_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/entity/player/Player/playShoulderEntityAmbientSound (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/entity/player/Player/m_36370_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/entity/player/Player/respawnEntityOnShoulder (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/entity/player/Player/m_36372_ ()V net/minecraft/world/entity/player/Player/turtleHelmetTick ()V +MD: net/minecraft/world/entity/player/Player/m_36377_ ()V net/minecraft/world/entity/player/Player/moveCloak ()V +MD: net/minecraft/world/entity/player/Player/m_36378_ (DDD)V net/minecraft/world/entity/player/Player/checkMovementStatistics (DDD)V +MD: net/minecraft/world/entity/player/Player/m_36384_ (Z)V net/minecraft/world/entity/player/Player/disableShield (Z)V +MD: net/minecraft/world/entity/player/Player/m_36386_ ()Z net/minecraft/world/entity/player/Player/isAboveGround ()Z +MD: net/minecraft/world/entity/player/Player/m_36387_ (DDD)V net/minecraft/world/entity/player/Player/checkRidingStatistics (DDD)V +MD: net/minecraft/world/entity/player/Player/m_36391_ (Z)Z net/minecraft/world/entity/player/Player/canEat (Z)Z +MD: net/minecraft/world/entity/player/Player/m_36393_ (Z)V net/minecraft/world/entity/player/Player/setReducedDebugInfo (Z)V +MD: net/minecraft/world/entity/player/Player/m_36397_ (I)V net/minecraft/world/entity/player/Player/setScore (I)V +MD: net/minecraft/world/entity/player/Player/m_36399_ (F)V net/minecraft/world/entity/player/Player/causeFoodExhaustion (F)V +MD: net/minecraft/world/entity/player/Player/m_36401_ (I)V net/minecraft/world/entity/player/Player/increaseScore (I)V +MD: net/minecraft/world/entity/player/Player/m_36403_ (F)F net/minecraft/world/entity/player/Player/getAttackStrengthScale (F)F +MD: net/minecraft/world/entity/player/Player/m_5446_ ()Lnet/minecraft/network/chat/Component; net/minecraft/world/entity/player/Player/getDisplayName ()Lnet/minecraft/network/chat/Component; +MD: net/minecraft/world/entity/player/Player/m_5496_ (Lnet/minecraft/sounds/SoundEvent;FF)V net/minecraft/world/entity/player/Player/playSound (Lnet/minecraft/sounds/SoundEvent;FF)V +MD: net/minecraft/world/entity/player/Player/m_5501_ ()Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/player/Player/getSwimSound ()Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/player/Player/m_5508_ ()Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/player/Player/getSwimHighSpeedSplashSound ()Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/player/Player/m_5509_ ()Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/player/Player/getSwimSplashSound ()Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/player/Player/m_5584_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/item/ItemStack;)Lnet/minecraft/world/item/ItemStack; net/minecraft/world/entity/player/Player/eat (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/item/ItemStack;)Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/entity/player/Player/m_5592_ ()Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/player/Player/getDeathSound ()Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/player/Player/m_5661_ (Lnet/minecraft/network/chat/Component;Z)V net/minecraft/world/entity/player/Player/displayClientMessage (Lnet/minecraft/network/chat/Component;Z)V +MD: net/minecraft/world/entity/player/Player/m_5700_ (Lnet/minecraft/world/entity/Entity;)V net/minecraft/world/entity/player/Player/magicCrit (Lnet/minecraft/world/entity/Entity;)V +MD: net/minecraft/world/entity/player/Player/m_5704_ (Lnet/minecraft/world/entity/Entity;)V net/minecraft/world/entity/player/Player/crit (Lnet/minecraft/world/entity/Entity;)V +MD: net/minecraft/world/entity/player/Player/m_5706_ (Lnet/minecraft/world/entity/Entity;)V net/minecraft/world/entity/player/Player/attack (Lnet/minecraft/world/entity/Entity;)V +MD: net/minecraft/world/entity/player/Player/m_5720_ ()Lnet/minecraft/sounds/SoundSource; net/minecraft/world/entity/player/Player/getSoundSource ()Lnet/minecraft/sounds/SoundSource; +MD: net/minecraft/world/entity/player/Player/m_5737_ ()Lnet/minecraft/world/entity/HumanoidArm; net/minecraft/world/entity/player/Player/getMainArm ()Lnet/minecraft/world/entity/HumanoidArm; +MD: net/minecraft/world/entity/player/Player/m_5763_ (Lnet/minecraft/world/phys/Vec3;Lnet/minecraft/world/entity/MoverType;)Lnet/minecraft/world/phys/Vec3; net/minecraft/world/entity/player/Player/maybeBackOffFromEdge (Lnet/minecraft/world/phys/Vec3;Lnet/minecraft/world/entity/MoverType;)Lnet/minecraft/world/phys/Vec3; +MD: net/minecraft/world/entity/player/Player/m_5796_ ()V net/minecraft/world/entity/player/Player/stopSleeping ()V +MD: net/minecraft/world/entity/player/Player/m_5833_ ()Z net/minecraft/world/entity/player/Player/isSpectator ()Z +MD: net/minecraft/world/entity/player/Player/m_5841_ ()V net/minecraft/world/entity/player/Player/doWaterSplashEffect ()V +MD: net/minecraft/world/entity/player/Player/m_5844_ ()V net/minecraft/world/entity/player/Player/updateSwimming ()V +MD: net/minecraft/world/entity/player/Player/m_5893_ (Lnet/minecraft/world/MenuProvider;)Ljava/util/OptionalInt; net/minecraft/world/entity/player/Player/openMenu (Lnet/minecraft/world/MenuProvider;)Ljava/util/OptionalInt; +MD: net/minecraft/world/entity/player/Player/m_5907_ ()V net/minecraft/world/entity/player/Player/dropEquipment ()V +MD: net/minecraft/world/entity/player/Player/m_5966_ (Lnet/minecraft/world/level/block/entity/StructureBlockEntity;)V net/minecraft/world/entity/player/Player/openStructureBlock (Lnet/minecraft/world/level/block/entity/StructureBlockEntity;)V +MD: net/minecraft/world/entity/player/Player/m_6038_ ()V net/minecraft/world/entity/player/Player/removeVehicle ()V +MD: net/minecraft/world/entity/player/Player/m_6041_ ()F net/minecraft/world/entity/player/Player/getBlockSpeedFactor ()F +MD: net/minecraft/world/entity/player/Player/m_6045_ ()I net/minecraft/world/entity/player/Player/getDimensionChangingDelay ()I +MD: net/minecraft/world/entity/player/Player/m_6046_ ()Z net/minecraft/world/entity/player/Player/onSoulSpeedBlock ()Z +MD: net/minecraft/world/entity/player/Player/m_6049_ ()D net/minecraft/world/entity/player/Player/getMyRidingOffset ()D +MD: net/minecraft/world/entity/player/Player/m_6052_ ()Z net/minecraft/world/entity/player/Player/shouldShowName ()Z +MD: net/minecraft/world/entity/player/Player/m_6053_ (F)V net/minecraft/world/entity/player/Player/animateHurt (F)V +MD: net/minecraft/world/entity/player/Player/m_6063_ ()Z net/minecraft/world/entity/player/Player/isPushedByFluid ()Z +MD: net/minecraft/world/entity/player/Player/m_6069_ ()Z net/minecraft/world/entity/player/Player/isSwimming ()Z +MD: net/minecraft/world/entity/player/Player/m_6078_ ()I net/minecraft/world/entity/player/Player/getPortalWaitTime ()I +MD: net/minecraft/world/entity/player/Player/m_6083_ ()V net/minecraft/world/entity/player/Player/rideTick ()V +MD: net/minecraft/world/entity/player/Player/m_6101_ ()I net/minecraft/world/entity/player/Player/getFireImmuneTicks ()I +MD: net/minecraft/world/entity/player/Player/m_6103_ ()F net/minecraft/world/entity/player/Player/getAbsorptionAmount ()F +MD: net/minecraft/world/entity/player/Player/m_6107_ ()Z net/minecraft/world/entity/player/Player/isImmobile ()Z +MD: net/minecraft/world/entity/player/Player/m_6113_ ()F net/minecraft/world/entity/player/Player/getSpeed ()F +MD: net/minecraft/world/entity/player/Player/m_6124_ ()Z net/minecraft/world/entity/player/Player/isAlwaysExperienceDropper ()Z +MD: net/minecraft/world/entity/player/Player/m_6129_ ()Z net/minecraft/world/entity/player/Player/isAffectedByFluids ()Z +MD: net/minecraft/world/entity/player/Player/m_6135_ ()V net/minecraft/world/entity/player/Player/jumpFromGround ()V +MD: net/minecraft/world/entity/player/Player/m_6140_ ()V net/minecraft/world/entity/player/Player/serverAiStep ()V +MD: net/minecraft/world/entity/player/Player/m_6145_ (ZZ)V net/minecraft/world/entity/player/Player/stopSleepInBed (ZZ)V +MD: net/minecraft/world/entity/player/Player/m_6167_ ()Ljava/lang/Iterable; net/minecraft/world/entity/player/Player/getHandSlots ()Ljava/lang/Iterable; +MD: net/minecraft/world/entity/player/Player/m_6168_ ()Ljava/lang/Iterable; net/minecraft/world/entity/player/Player/getArmorSlots ()Ljava/lang/Iterable; +MD: net/minecraft/world/entity/player/Player/m_6278_ (Lnet/minecraft/stats/Stat;I)V net/minecraft/world/entity/player/Player/awardStat (Lnet/minecraft/stats/Stat;I)V +MD: net/minecraft/world/entity/player/Player/m_6298_ (Lnet/minecraft/world/item/ItemStack;)Lnet/minecraft/world/item/ItemStack; net/minecraft/world/entity/player/Player/getProjectile (Lnet/minecraft/world/item/ItemStack;)Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/entity/player/Player/m_6302_ ()Ljava/lang/String; net/minecraft/world/entity/player/Player/getScoreboardName ()Ljava/lang/String; +MD: net/minecraft/world/entity/player/Player/m_6330_ (Lnet/minecraft/sounds/SoundEvent;Lnet/minecraft/sounds/SoundSource;FF)V net/minecraft/world/entity/player/Player/playNotifySound (Lnet/minecraft/sounds/SoundEvent;Lnet/minecraft/sounds/SoundSource;FF)V +MD: net/minecraft/world/entity/player/Player/m_6431_ (Lnet/minecraft/world/entity/Pose;Lnet/minecraft/world/entity/EntityDimensions;)F net/minecraft/world/entity/player/Player/getStandingEyeHeight (Lnet/minecraft/world/entity/Pose;Lnet/minecraft/world/entity/EntityDimensions;)F +MD: net/minecraft/world/entity/player/Player/m_6469_ (Lnet/minecraft/world/damagesource/DamageSource;F)Z net/minecraft/world/entity/player/Player/hurt (Lnet/minecraft/world/damagesource/DamageSource;F)Z +MD: net/minecraft/world/entity/player/Player/m_6472_ (Lnet/minecraft/world/damagesource/DamageSource;F)V net/minecraft/world/entity/player/Player/hurtArmor (Lnet/minecraft/world/damagesource/DamageSource;F)V +MD: net/minecraft/world/entity/player/Player/m_6475_ (Lnet/minecraft/world/damagesource/DamageSource;F)V net/minecraft/world/entity/player/Player/actuallyHurt (Lnet/minecraft/world/damagesource/DamageSource;F)V +MD: net/minecraft/world/entity/player/Player/m_6658_ (Lnet/minecraft/world/entity/animal/horse/AbstractHorse;Lnet/minecraft/world/Container;)V net/minecraft/world/entity/player/Player/openHorseInventory (Lnet/minecraft/world/entity/animal/horse/AbstractHorse;Lnet/minecraft/world/Container;)V +MD: net/minecraft/world/entity/player/Player/m_6667_ (Lnet/minecraft/world/damagesource/DamageSource;)V net/minecraft/world/entity/player/Player/die (Lnet/minecraft/world/damagesource/DamageSource;)V +MD: net/minecraft/world/entity/player/Player/m_6673_ (Lnet/minecraft/world/damagesource/DamageSource;)Z net/minecraft/world/entity/player/Player/isInvulnerableTo (Lnet/minecraft/world/damagesource/DamageSource;)Z +MD: net/minecraft/world/entity/player/Player/m_6727_ (Lnet/minecraft/world/entity/LivingEntity;)V net/minecraft/world/entity/player/Player/doAutoAttackOnTouch (Lnet/minecraft/world/entity/LivingEntity;)V +MD: net/minecraft/world/entity/player/Player/m_6728_ (Lnet/minecraft/world/entity/LivingEntity;)V net/minecraft/world/entity/player/Player/blockUsingShield (Lnet/minecraft/world/entity/LivingEntity;)V +MD: net/minecraft/world/entity/player/Player/m_6749_ (I)V net/minecraft/world/entity/player/Player/giveExperienceLevels (I)V +MD: net/minecraft/world/entity/player/Player/m_6756_ (I)V net/minecraft/world/entity/player/Player/giveExperiencePoints (I)V +MD: net/minecraft/world/entity/player/Player/m_6757_ (Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/world/entity/player/Player/shouldRemoveSoulSpeed (Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/world/entity/player/Player/m_6844_ (Lnet/minecraft/world/entity/EquipmentSlot;)Lnet/minecraft/world/item/ItemStack; net/minecraft/world/entity/player/Player/getItemBySlot (Lnet/minecraft/world/entity/EquipmentSlot;)Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/entity/player/Player/m_6885_ ()V net/minecraft/world/entity/player/Player/onUpdateAbilities ()V +MD: net/minecraft/world/entity/player/Player/m_6915_ ()V net/minecraft/world/entity/player/Player/closeContainer ()V +MD: net/minecraft/world/entity/player/Player/m_6972_ (Lnet/minecraft/world/entity/Pose;)Lnet/minecraft/world/entity/EntityDimensions; net/minecraft/world/entity/player/Player/getDimensions (Lnet/minecraft/world/entity/Pose;)Lnet/minecraft/world/entity/EntityDimensions; +MD: net/minecraft/world/entity/player/Player/m_6986_ (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/InteractionHand;)V net/minecraft/world/entity/player/Player/openItemGui (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/InteractionHand;)V +MD: net/minecraft/world/entity/player/Player/m_7023_ (Lnet/minecraft/world/phys/Vec3;)V net/minecraft/world/entity/player/Player/travel (Lnet/minecraft/world/phys/Vec3;)V +MD: net/minecraft/world/entity/player/Player/m_7066_ (Lnet/minecraft/world/item/ItemStack;)Z net/minecraft/world/entity/player/Player/canTakeItem (Lnet/minecraft/world/item/ItemStack;)Z +MD: net/minecraft/world/entity/player/Player/m_7099_ (Lnet/minecraft/world/entity/player/Player;)Z net/minecraft/world/entity/player/Player/canHarmPlayer (Lnet/minecraft/world/entity/player/Player;)Z +MD: net/minecraft/world/entity/player/Player/m_7166_ (Lnet/minecraft/stats/Stat;)V net/minecraft/world/entity/player/Player/resetStat (Lnet/minecraft/stats/Stat;)V +MD: net/minecraft/world/entity/player/Player/m_7197_ (Lnet/minecraft/world/item/ItemStack;ZZ)Lnet/minecraft/world/entity/item/ItemEntity; net/minecraft/world/entity/player/Player/drop (Lnet/minecraft/world/item/ItemStack;ZZ)Lnet/minecraft/world/entity/item/ItemEntity; +MD: net/minecraft/world/entity/player/Player/m_7279_ (Ljava/util/Collection;)I net/minecraft/world/entity/player/Player/resetRecipes (Ljava/util/Collection;)I +MD: net/minecraft/world/entity/player/Player/m_7281_ (Ljava/util/Collection;)I net/minecraft/world/entity/player/Player/awardRecipes (Ljava/util/Collection;)I +MD: net/minecraft/world/entity/player/Player/m_7311_ (I)V net/minecraft/world/entity/player/Player/setRemainingFireTicks (I)V +MD: net/minecraft/world/entity/player/Player/m_7355_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V net/minecraft/world/entity/player/Player/playStepSound (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V +MD: net/minecraft/world/entity/player/Player/m_7378_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/entity/player/Player/readAdditionalSaveData (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/entity/player/Player/m_7380_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/entity/player/Player/addAdditionalSaveData (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/entity/player/Player/m_7398_ (F)Lnet/minecraft/world/phys/Vec3; net/minecraft/world/entity/player/Player/getRopeHoldPosition (F)Lnet/minecraft/world/phys/Vec3; +MD: net/minecraft/world/entity/player/Player/m_7408_ (Lnet/minecraft/world/item/ItemStack;I)V net/minecraft/world/entity/player/Player/onEnchantmentPerformed (Lnet/minecraft/world/item/ItemStack;I)V +MD: net/minecraft/world/entity/player/Player/m_7431_ ()Lcom/google/common/collect/ImmutableList; net/minecraft/world/entity/player/Player/getDismountPoses ()Lcom/google/common/collect/ImmutableList; +MD: net/minecraft/world/entity/player/Player/m_7478_ ()Lnet/minecraft/world/item/ItemCooldowns; net/minecraft/world/entity/player/Player/createItemCooldowns ()Lnet/minecraft/world/item/ItemCooldowns; +MD: net/minecraft/world/entity/player/Player/m_7500_ ()Z net/minecraft/world/entity/player/Player/isCreative ()Z +MD: net/minecraft/world/entity/player/Player/m_7569_ (Lnet/minecraft/world/level/block/entity/JigsawBlockEntity;)V net/minecraft/world/entity/player/Player/openJigsawBlock (Lnet/minecraft/world/level/block/entity/JigsawBlockEntity;)V +MD: net/minecraft/world/entity/player/Player/m_7578_ ()Z net/minecraft/world/entity/player/Player/isLocalPlayer ()Z +MD: net/minecraft/world/entity/player/Player/m_7583_ ()V net/minecraft/world/entity/player/Player/respawn ()V +MD: net/minecraft/world/entity/player/Player/m_7594_ ()V net/minecraft/world/entity/player/Player/updatePlayerPose ()V +MD: net/minecraft/world/entity/player/Player/m_7601_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/phys/Vec3;)V net/minecraft/world/entity/player/Player/makeStuckInBlock (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/phys/Vec3;)V +MD: net/minecraft/world/entity/player/Player/m_7602_ ()Z net/minecraft/world/entity/player/Player/updateIsUnderwater ()Z +MD: net/minecraft/world/entity/player/Player/m_7662_ (ILnet/minecraft/world/item/trading/MerchantOffers;IIZZ)V net/minecraft/world/entity/player/Player/sendMerchantOffers (ILnet/minecraft/world/item/trading/MerchantOffers;IIZZ)V +MD: net/minecraft/world/entity/player/Player/m_7698_ (Lnet/minecraft/world/level/block/entity/CommandBlockEntity;)V net/minecraft/world/entity/player/Player/openCommandBlock (Lnet/minecraft/world/level/block/entity/CommandBlockEntity;)V +MD: net/minecraft/world/entity/player/Player/m_7720_ (Lnet/minecraft/core/BlockPos;)Lcom/mojang/datafixers/util/Either; net/minecraft/world/entity/player/Player/startSleepInBed (Lnet/minecraft/core/BlockPos;)Lcom/mojang/datafixers/util/Either; +MD: net/minecraft/world/entity/player/Player/m_7739_ (Lnet/minecraft/world/level/block/entity/SignBlockEntity;Z)V net/minecraft/world/entity/player/Player/openTextEdit (Lnet/minecraft/world/level/block/entity/SignBlockEntity;Z)V +MD: net/minecraft/world/entity/player/Player/m_7755_ ()Lnet/minecraft/network/chat/Component; net/minecraft/world/entity/player/Player/getName ()Lnet/minecraft/network/chat/Component; +MD: net/minecraft/world/entity/player/Player/m_7822_ (B)V net/minecraft/world/entity/player/Player/handleEntityEvent (B)V +MD: net/minecraft/world/entity/player/Player/m_7902_ ([Lnet/minecraft/resources/ResourceLocation;)V net/minecraft/world/entity/player/Player/awardRecipesByKey ([Lnet/minecraft/resources/ResourceLocation;)V +MD: net/minecraft/world/entity/player/Player/m_7907_ (Lnet/minecraft/world/level/BaseCommandBlock;)V net/minecraft/world/entity/player/Player/openMinecartCommandBlock (Lnet/minecraft/world/level/BaseCommandBlock;)V +MD: net/minecraft/world/entity/player/Player/m_7909_ (F)V net/minecraft/world/entity/player/Player/hurtCurrentlyUsedShield (F)V +MD: net/minecraft/world/entity/player/Player/m_7911_ (F)V net/minecraft/world/entity/player/Player/setAbsorptionAmount (F)V +MD: net/minecraft/world/entity/player/Player/m_7975_ (Lnet/minecraft/world/damagesource/DamageSource;)Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/player/Player/getHurtSound (Lnet/minecraft/world/damagesource/DamageSource;)Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/player/Player/m_8061_ (Lnet/minecraft/world/entity/EquipmentSlot;Lnet/minecraft/world/item/ItemStack;)V net/minecraft/world/entity/player/Player/setItemSlot (Lnet/minecraft/world/entity/EquipmentSlot;Lnet/minecraft/world/item/ItemStack;)V +MD: net/minecraft/world/entity/player/Player/m_8097_ ()V net/minecraft/world/entity/player/Player/defineSynchedData ()V +MD: net/minecraft/world/entity/player/Player/m_8107_ ()V net/minecraft/world/entity/player/Player/aiStep ()V +MD: net/minecraft/world/entity/player/Player/m_8119_ ()V net/minecraft/world/entity/player/Player/tick ()V +MD: net/minecraft/world/entity/player/Player/m_9230_ ()V net/minecraft/world/entity/player/Player/doCloseContainer ()V +MD: net/minecraft/world/entity/player/Player$1/ ()V net/minecraft/world/entity/player/Player$1/ ()V +MD: net/minecraft/world/entity/player/Player$BedSleepingProblem/ ()V net/minecraft/world/entity/player/Player$BedSleepingProblem/ ()V +MD: net/minecraft/world/entity/player/Player$BedSleepingProblem/ (Ljava/lang/String;ILnet/minecraft/network/chat/Component;)V net/minecraft/world/entity/player/Player$BedSleepingProblem/ (Ljava/lang/String;ILnet/minecraft/network/chat/Component;)V +MD: net/minecraft/world/entity/player/Player$BedSleepingProblem/ (Ljava/lang/String;I)V net/minecraft/world/entity/player/Player$BedSleepingProblem/ (Ljava/lang/String;I)V +MD: net/minecraft/world/entity/player/Player$BedSleepingProblem/m_150113_ ()[Lnet/minecraft/world/entity/player/Player$BedSleepingProblem; net/minecraft/world/entity/player/Player$BedSleepingProblem/$values ()[Lnet/minecraft/world/entity/player/Player$BedSleepingProblem; +MD: net/minecraft/world/entity/player/Player$BedSleepingProblem/m_36423_ ()Lnet/minecraft/network/chat/Component; net/minecraft/world/entity/player/Player$BedSleepingProblem/getMessage ()Lnet/minecraft/network/chat/Component; +MD: net/minecraft/world/entity/player/Player$BedSleepingProblem/valueOf (Ljava/lang/String;)Lnet/minecraft/world/entity/player/Player$BedSleepingProblem; net/minecraft/world/entity/player/Player$BedSleepingProblem/valueOf (Ljava/lang/String;)Lnet/minecraft/world/entity/player/Player$BedSleepingProblem; +MD: net/minecraft/world/entity/player/Player$BedSleepingProblem/values ()[Lnet/minecraft/world/entity/player/Player$BedSleepingProblem; net/minecraft/world/entity/player/Player$BedSleepingProblem/values ()[Lnet/minecraft/world/entity/player/Player$BedSleepingProblem; +MD: net/minecraft/world/entity/player/PlayerModelPart/ ()V net/minecraft/world/entity/player/PlayerModelPart/ ()V +MD: net/minecraft/world/entity/player/PlayerModelPart/ (Ljava/lang/String;IILjava/lang/String;)V net/minecraft/world/entity/player/PlayerModelPart/ (Ljava/lang/String;IILjava/lang/String;)V +MD: net/minecraft/world/entity/player/PlayerModelPart/m_150114_ ()I net/minecraft/world/entity/player/PlayerModelPart/getBit ()I +MD: net/minecraft/world/entity/player/PlayerModelPart/m_150115_ ()[Lnet/minecraft/world/entity/player/PlayerModelPart; net/minecraft/world/entity/player/PlayerModelPart/$values ()[Lnet/minecraft/world/entity/player/PlayerModelPart; +MD: net/minecraft/world/entity/player/PlayerModelPart/m_36445_ ()I net/minecraft/world/entity/player/PlayerModelPart/getMask ()I +MD: net/minecraft/world/entity/player/PlayerModelPart/m_36446_ ()Ljava/lang/String; net/minecraft/world/entity/player/PlayerModelPart/getId ()Ljava/lang/String; +MD: net/minecraft/world/entity/player/PlayerModelPart/m_36447_ ()Lnet/minecraft/network/chat/Component; net/minecraft/world/entity/player/PlayerModelPart/getName ()Lnet/minecraft/network/chat/Component; +MD: net/minecraft/world/entity/player/PlayerModelPart/valueOf (Ljava/lang/String;)Lnet/minecraft/world/entity/player/PlayerModelPart; net/minecraft/world/entity/player/PlayerModelPart/valueOf (Ljava/lang/String;)Lnet/minecraft/world/entity/player/PlayerModelPart; +MD: net/minecraft/world/entity/player/PlayerModelPart/values ()[Lnet/minecraft/world/entity/player/PlayerModelPart; net/minecraft/world/entity/player/PlayerModelPart/values ()[Lnet/minecraft/world/entity/player/PlayerModelPart; +MD: net/minecraft/world/entity/player/ProfileKeyPair/ ()V net/minecraft/world/entity/player/ProfileKeyPair/ ()V +MD: net/minecraft/world/entity/player/ProfileKeyPair/ (Ljava/security/PrivateKey;Lnet/minecraft/world/entity/player/ProfilePublicKey;Ljava/time/Instant;)V net/minecraft/world/entity/player/ProfileKeyPair/ (Ljava/security/PrivateKey;Lnet/minecraft/world/entity/player/ProfilePublicKey;Ljava/time/Instant;)V +MD: net/minecraft/world/entity/player/ProfileKeyPair/equals (Ljava/lang/Object;)Z net/minecraft/world/entity/player/ProfileKeyPair/equals (Ljava/lang/Object;)Z +MD: net/minecraft/world/entity/player/ProfileKeyPair/f_219762_ ()Ljava/security/PrivateKey; net/minecraft/world/entity/player/ProfileKeyPair/privateKey ()Ljava/security/PrivateKey; +MD: net/minecraft/world/entity/player/ProfileKeyPair/f_219763_ ()Lnet/minecraft/world/entity/player/ProfilePublicKey; net/minecraft/world/entity/player/ProfileKeyPair/publicKey ()Lnet/minecraft/world/entity/player/ProfilePublicKey; +MD: net/minecraft/world/entity/player/ProfileKeyPair/f_219764_ ()Ljava/time/Instant; net/minecraft/world/entity/player/ProfileKeyPair/refreshedAfter ()Ljava/time/Instant; +MD: net/minecraft/world/entity/player/ProfileKeyPair/hashCode ()I net/minecraft/world/entity/player/ProfileKeyPair/hashCode ()I +MD: net/minecraft/world/entity/player/ProfileKeyPair/m_219770_ ()Z net/minecraft/world/entity/player/ProfileKeyPair/dueRefresh ()Z +MD: net/minecraft/world/entity/player/ProfileKeyPair/m_219771_ (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/world/entity/player/ProfileKeyPair/lambda$static$0 (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/world/entity/player/ProfileKeyPair/toString ()Ljava/lang/String; net/minecraft/world/entity/player/ProfileKeyPair/toString ()Ljava/lang/String; +MD: net/minecraft/world/entity/player/ProfilePublicKey/ ()V net/minecraft/world/entity/player/ProfilePublicKey/ ()V +MD: net/minecraft/world/entity/player/ProfilePublicKey/ (Lnet/minecraft/world/entity/player/ProfilePublicKey$Data;)V net/minecraft/world/entity/player/ProfilePublicKey/ (Lnet/minecraft/world/entity/player/ProfilePublicKey$Data;)V +MD: net/minecraft/world/entity/player/ProfilePublicKey/equals (Ljava/lang/Object;)Z net/minecraft/world/entity/player/ProfilePublicKey/equals (Ljava/lang/Object;)Z +MD: net/minecraft/world/entity/player/ProfilePublicKey/f_219781_ ()Lnet/minecraft/world/entity/player/ProfilePublicKey$Data; net/minecraft/world/entity/player/ProfilePublicKey/data ()Lnet/minecraft/world/entity/player/ProfilePublicKey$Data; +MD: net/minecraft/world/entity/player/ProfilePublicKey/hashCode ()I net/minecraft/world/entity/player/ProfilePublicKey/hashCode ()I +MD: net/minecraft/world/entity/player/ProfilePublicKey/m_219785_ ()Lnet/minecraft/util/SignatureValidator; net/minecraft/world/entity/player/ProfilePublicKey/createSignatureValidator ()Lnet/minecraft/util/SignatureValidator; +MD: net/minecraft/world/entity/player/ProfilePublicKey/m_243358_ (Lnet/minecraft/util/SignatureValidator;Ljava/util/UUID;Lnet/minecraft/world/entity/player/ProfilePublicKey$Data;Ljava/time/Duration;)Lnet/minecraft/world/entity/player/ProfilePublicKey; net/minecraft/world/entity/player/ProfilePublicKey/createValidated (Lnet/minecraft/util/SignatureValidator;Ljava/util/UUID;Lnet/minecraft/world/entity/player/ProfilePublicKey$Data;Ljava/time/Duration;)Lnet/minecraft/world/entity/player/ProfilePublicKey; +MD: net/minecraft/world/entity/player/ProfilePublicKey/toString ()Ljava/lang/String; net/minecraft/world/entity/player/ProfilePublicKey/toString ()Ljava/lang/String; +MD: net/minecraft/world/entity/player/ProfilePublicKey$Data/ ()V net/minecraft/world/entity/player/ProfilePublicKey$Data/ ()V +MD: net/minecraft/world/entity/player/ProfilePublicKey$Data/ (Ljava/time/Instant;Ljava/security/PublicKey;[B)V net/minecraft/world/entity/player/ProfilePublicKey$Data/ (Ljava/time/Instant;Ljava/security/PublicKey;[B)V +MD: net/minecraft/world/entity/player/ProfilePublicKey$Data/ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/world/entity/player/ProfilePublicKey$Data/ (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/world/entity/player/ProfilePublicKey$Data/equals (Ljava/lang/Object;)Z net/minecraft/world/entity/player/ProfilePublicKey$Data/equals (Ljava/lang/Object;)Z +MD: net/minecraft/world/entity/player/ProfilePublicKey$Data/f_219799_ ()Ljava/time/Instant; net/minecraft/world/entity/player/ProfilePublicKey$Data/expiresAt ()Ljava/time/Instant; +MD: net/minecraft/world/entity/player/ProfilePublicKey$Data/f_219800_ ()Ljava/security/PublicKey; net/minecraft/world/entity/player/ProfilePublicKey$Data/key ()Ljava/security/PublicKey; +MD: net/minecraft/world/entity/player/ProfilePublicKey$Data/f_219801_ ()[B net/minecraft/world/entity/player/ProfilePublicKey$Data/keySignature ()[B +MD: net/minecraft/world/entity/player/ProfilePublicKey$Data/hashCode ()I net/minecraft/world/entity/player/ProfilePublicKey$Data/hashCode ()I +MD: net/minecraft/world/entity/player/ProfilePublicKey$Data/m_219810_ ()Z net/minecraft/world/entity/player/ProfilePublicKey$Data/hasExpired ()Z +MD: net/minecraft/world/entity/player/ProfilePublicKey$Data/m_219813_ (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/world/entity/player/ProfilePublicKey$Data/lambda$static$0 (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/world/entity/player/ProfilePublicKey$Data/m_219815_ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/world/entity/player/ProfilePublicKey$Data/write (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/world/entity/player/ProfilePublicKey$Data/m_240266_ (Ljava/util/UUID;)[B net/minecraft/world/entity/player/ProfilePublicKey$Data/signedPayload (Ljava/util/UUID;)[B +MD: net/minecraft/world/entity/player/ProfilePublicKey$Data/m_240295_ (Lnet/minecraft/util/SignatureValidator;Ljava/util/UUID;)Z net/minecraft/world/entity/player/ProfilePublicKey$Data/validateSignature (Lnet/minecraft/util/SignatureValidator;Ljava/util/UUID;)Z +MD: net/minecraft/world/entity/player/ProfilePublicKey$Data/m_243357_ (Ljava/time/Duration;)Z net/minecraft/world/entity/player/ProfilePublicKey$Data/hasExpired (Ljava/time/Duration;)Z +MD: net/minecraft/world/entity/player/ProfilePublicKey$Data/toString ()Ljava/lang/String; net/minecraft/world/entity/player/ProfilePublicKey$Data/toString ()Ljava/lang/String; +MD: net/minecraft/world/entity/player/ProfilePublicKey$ValidationException/ (Lnet/minecraft/network/chat/Component;)V net/minecraft/world/entity/player/ProfilePublicKey$ValidationException/ (Lnet/minecraft/network/chat/Component;)V +MD: net/minecraft/world/entity/player/StackedContents/ ()V net/minecraft/world/entity/player/StackedContents/ ()V +MD: net/minecraft/world/entity/player/StackedContents/m_36453_ ()V net/minecraft/world/entity/player/StackedContents/clear ()V +MD: net/minecraft/world/entity/player/StackedContents/m_36454_ (I)Lnet/minecraft/world/item/ItemStack; net/minecraft/world/entity/player/StackedContents/fromStackingIndex (I)Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/entity/player/StackedContents/m_36456_ (II)I net/minecraft/world/entity/player/StackedContents/take (II)I +MD: net/minecraft/world/entity/player/StackedContents/m_36466_ (Lnet/minecraft/world/item/ItemStack;)V net/minecraft/world/entity/player/StackedContents/accountSimpleStack (Lnet/minecraft/world/item/ItemStack;)V +MD: net/minecraft/world/entity/player/StackedContents/m_36468_ (Lnet/minecraft/world/item/ItemStack;I)V net/minecraft/world/entity/player/StackedContents/accountStack (Lnet/minecraft/world/item/ItemStack;I)V +MD: net/minecraft/world/entity/player/StackedContents/m_36471_ (Lnet/minecraft/world/item/crafting/Recipe;ILit/unimi/dsi/fastutil/ints/IntList;)I net/minecraft/world/entity/player/StackedContents/getBiggestCraftableStack (Lnet/minecraft/world/item/crafting/Recipe;ILit/unimi/dsi/fastutil/ints/IntList;)I +MD: net/minecraft/world/entity/player/StackedContents/m_36475_ (Lnet/minecraft/world/item/crafting/Recipe;Lit/unimi/dsi/fastutil/ints/IntList;)Z net/minecraft/world/entity/player/StackedContents/canCraft (Lnet/minecraft/world/item/crafting/Recipe;Lit/unimi/dsi/fastutil/ints/IntList;)Z +MD: net/minecraft/world/entity/player/StackedContents/m_36478_ (Lnet/minecraft/world/item/crafting/Recipe;Lit/unimi/dsi/fastutil/ints/IntList;I)Z net/minecraft/world/entity/player/StackedContents/canCraft (Lnet/minecraft/world/item/crafting/Recipe;Lit/unimi/dsi/fastutil/ints/IntList;I)Z +MD: net/minecraft/world/entity/player/StackedContents/m_36482_ (I)Z net/minecraft/world/entity/player/StackedContents/has (I)Z +MD: net/minecraft/world/entity/player/StackedContents/m_36484_ (II)V net/minecraft/world/entity/player/StackedContents/put (II)V +MD: net/minecraft/world/entity/player/StackedContents/m_36491_ (Lnet/minecraft/world/item/ItemStack;)V net/minecraft/world/entity/player/StackedContents/accountStack (Lnet/minecraft/world/item/ItemStack;)V +MD: net/minecraft/world/entity/player/StackedContents/m_36493_ (Lnet/minecraft/world/item/crafting/Recipe;Lit/unimi/dsi/fastutil/ints/IntList;)I net/minecraft/world/entity/player/StackedContents/getBiggestCraftableStack (Lnet/minecraft/world/item/crafting/Recipe;Lit/unimi/dsi/fastutil/ints/IntList;)I +MD: net/minecraft/world/entity/player/StackedContents/m_36496_ (Lnet/minecraft/world/item/ItemStack;)I net/minecraft/world/entity/player/StackedContents/getStackingIndex (Lnet/minecraft/world/item/ItemStack;)I +MD: net/minecraft/world/entity/player/StackedContents$RecipePicker/ (Lnet/minecraft/world/entity/player/StackedContents;Lnet/minecraft/world/item/crafting/Recipe;)V net/minecraft/world/entity/player/StackedContents$RecipePicker/ (Lnet/minecraft/world/entity/player/StackedContents;Lnet/minecraft/world/item/crafting/Recipe;)V +MD: net/minecraft/world/entity/player/StackedContents$RecipePicker/m_36509_ ()[I net/minecraft/world/entity/player/StackedContents$RecipePicker/getUniqueAvailableIngredientItems ()[I +MD: net/minecraft/world/entity/player/StackedContents$RecipePicker/m_36510_ (I)Z net/minecraft/world/entity/player/StackedContents$RecipePicker/dfs (I)Z +MD: net/minecraft/world/entity/player/StackedContents$RecipePicker/m_36512_ (ILit/unimi/dsi/fastutil/ints/IntList;)Z net/minecraft/world/entity/player/StackedContents$RecipePicker/tryPick (ILit/unimi/dsi/fastutil/ints/IntList;)Z +MD: net/minecraft/world/entity/player/StackedContents$RecipePicker/m_36515_ (ZI)V net/minecraft/world/entity/player/StackedContents$RecipePicker/visit (ZI)V +MD: net/minecraft/world/entity/player/StackedContents$RecipePicker/m_36518_ (ZII)Z net/minecraft/world/entity/player/StackedContents$RecipePicker/hasConnection (ZII)Z +MD: net/minecraft/world/entity/player/StackedContents$RecipePicker/m_36522_ ()I net/minecraft/world/entity/player/StackedContents$RecipePicker/getMinIngredientCount ()I +MD: net/minecraft/world/entity/player/StackedContents$RecipePicker/m_36523_ (I)Z net/minecraft/world/entity/player/StackedContents$RecipePicker/isSatisfied (I)Z +MD: net/minecraft/world/entity/player/StackedContents$RecipePicker/m_36525_ (ILit/unimi/dsi/fastutil/ints/IntList;)I net/minecraft/world/entity/player/StackedContents$RecipePicker/tryPickAll (ILit/unimi/dsi/fastutil/ints/IntList;)I +MD: net/minecraft/world/entity/player/StackedContents$RecipePicker/m_36528_ (ZI)Z net/minecraft/world/entity/player/StackedContents$RecipePicker/hasVisited (ZI)Z +MD: net/minecraft/world/entity/player/StackedContents$RecipePicker/m_36531_ (ZII)Z net/minecraft/world/entity/player/StackedContents$RecipePicker/hasResidual (ZII)Z +MD: net/minecraft/world/entity/player/StackedContents$RecipePicker/m_36535_ (I)V net/minecraft/world/entity/player/StackedContents$RecipePicker/setSatisfied (I)V +MD: net/minecraft/world/entity/player/StackedContents$RecipePicker/m_36537_ (ZI)I net/minecraft/world/entity/player/StackedContents$RecipePicker/getVisitedIndex (ZI)I +MD: net/minecraft/world/entity/player/StackedContents$RecipePicker/m_36540_ (ZII)V net/minecraft/world/entity/player/StackedContents$RecipePicker/toggleResidual (ZII)V +MD: net/minecraft/world/entity/player/StackedContents$RecipePicker/m_36544_ (I)I net/minecraft/world/entity/player/StackedContents$RecipePicker/getSatisfiedIndex (I)I +MD: net/minecraft/world/entity/player/StackedContents$RecipePicker/m_36546_ (ZII)I net/minecraft/world/entity/player/StackedContents$RecipePicker/getIndex (ZII)I +MD: net/minecraft/world/entity/projectile/AbstractArrow/ ()V net/minecraft/world/entity/projectile/AbstractArrow/ ()V +MD: net/minecraft/world/entity/projectile/AbstractArrow/ (Lnet/minecraft/world/entity/EntityType;DDDLnet/minecraft/world/level/Level;)V net/minecraft/world/entity/projectile/AbstractArrow/ (Lnet/minecraft/world/entity/EntityType;DDDLnet/minecraft/world/level/Level;)V +MD: net/minecraft/world/entity/projectile/AbstractArrow/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V net/minecraft/world/entity/projectile/AbstractArrow/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V +MD: net/minecraft/world/entity/projectile/AbstractArrow/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/level/Level;)V net/minecraft/world/entity/projectile/AbstractArrow/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/level/Level;)V +MD: net/minecraft/world/entity/projectile/AbstractArrow/m_142319_ ()Lnet/minecraft/world/entity/Entity$MovementEmission; net/minecraft/world/entity/projectile/AbstractArrow/getMovementEmission ()Lnet/minecraft/world/entity/Entity$MovementEmission; +MD: net/minecraft/world/entity/projectile/AbstractArrow/m_142470_ (Lnet/minecraft/world/entity/player/Player;)Z net/minecraft/world/entity/projectile/AbstractArrow/tryPickup (Lnet/minecraft/world/entity/player/Player;)Z +MD: net/minecraft/world/entity/projectile/AbstractArrow/m_150123_ ()I net/minecraft/world/entity/projectile/AbstractArrow/getKnockback ()I +MD: net/minecraft/world/entity/projectile/AbstractArrow/m_36723_ ()V net/minecraft/world/entity/projectile/AbstractArrow/resetPiercedEntities ()V +MD: net/minecraft/world/entity/projectile/AbstractArrow/m_36735_ (I)V net/minecraft/world/entity/projectile/AbstractArrow/setKnockback (I)V +MD: net/minecraft/world/entity/projectile/AbstractArrow/m_36737_ (IZ)V net/minecraft/world/entity/projectile/AbstractArrow/setFlag (IZ)V +MD: net/minecraft/world/entity/projectile/AbstractArrow/m_36740_ (Lnet/minecraft/sounds/SoundEvent;)V net/minecraft/world/entity/projectile/AbstractArrow/setSoundEvent (Lnet/minecraft/sounds/SoundEvent;)V +MD: net/minecraft/world/entity/projectile/AbstractArrow/m_36745_ (Lnet/minecraft/world/entity/LivingEntity;F)V net/minecraft/world/entity/projectile/AbstractArrow/setEnchantmentEffectsFromEntity (Lnet/minecraft/world/entity/LivingEntity;F)V +MD: net/minecraft/world/entity/projectile/AbstractArrow/m_36762_ (Z)V net/minecraft/world/entity/projectile/AbstractArrow/setCritArrow (Z)V +MD: net/minecraft/world/entity/projectile/AbstractArrow/m_36767_ (B)V net/minecraft/world/entity/projectile/AbstractArrow/setPierceLevel (B)V +MD: net/minecraft/world/entity/projectile/AbstractArrow/m_36781_ (D)V net/minecraft/world/entity/projectile/AbstractArrow/setBaseDamage (D)V +MD: net/minecraft/world/entity/projectile/AbstractArrow/m_36784_ ()Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/projectile/AbstractArrow/getHitGroundSoundEvent ()Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/projectile/AbstractArrow/m_36789_ ()D net/minecraft/world/entity/projectile/AbstractArrow/getBaseDamage ()D +MD: net/minecraft/world/entity/projectile/AbstractArrow/m_36790_ (Z)V net/minecraft/world/entity/projectile/AbstractArrow/setNoPhysics (Z)V +MD: net/minecraft/world/entity/projectile/AbstractArrow/m_36792_ ()Z net/minecraft/world/entity/projectile/AbstractArrow/isCritArrow ()Z +MD: net/minecraft/world/entity/projectile/AbstractArrow/m_36793_ (Z)V net/minecraft/world/entity/projectile/AbstractArrow/setShotFromCrossbow (Z)V +MD: net/minecraft/world/entity/projectile/AbstractArrow/m_36795_ ()Z net/minecraft/world/entity/projectile/AbstractArrow/shotFromCrossbow ()Z +MD: net/minecraft/world/entity/projectile/AbstractArrow/m_36796_ ()B net/minecraft/world/entity/projectile/AbstractArrow/getPierceLevel ()B +MD: net/minecraft/world/entity/projectile/AbstractArrow/m_36797_ ()Z net/minecraft/world/entity/projectile/AbstractArrow/isNoPhysics ()Z +MD: net/minecraft/world/entity/projectile/AbstractArrow/m_36798_ ()Z net/minecraft/world/entity/projectile/AbstractArrow/shouldFall ()Z +MD: net/minecraft/world/entity/projectile/AbstractArrow/m_36799_ ()V net/minecraft/world/entity/projectile/AbstractArrow/startFalling ()V +MD: net/minecraft/world/entity/projectile/AbstractArrow/m_5602_ (Lnet/minecraft/world/entity/Entity;)V net/minecraft/world/entity/projectile/AbstractArrow/setOwner (Lnet/minecraft/world/entity/Entity;)V +MD: net/minecraft/world/entity/projectile/AbstractArrow/m_5603_ (Lnet/minecraft/world/entity/Entity;)Z net/minecraft/world/entity/projectile/AbstractArrow/canHitEntity (Lnet/minecraft/world/entity/Entity;)Z +MD: net/minecraft/world/entity/projectile/AbstractArrow/m_5790_ (Lnet/minecraft/world/phys/EntityHitResult;)V net/minecraft/world/entity/projectile/AbstractArrow/onHitEntity (Lnet/minecraft/world/phys/EntityHitResult;)V +MD: net/minecraft/world/entity/projectile/AbstractArrow/m_6001_ (DDD)V net/minecraft/world/entity/projectile/AbstractArrow/lerpMotion (DDD)V +MD: net/minecraft/world/entity/projectile/AbstractArrow/m_6097_ ()Z net/minecraft/world/entity/projectile/AbstractArrow/isAttackable ()Z +MD: net/minecraft/world/entity/projectile/AbstractArrow/m_6123_ (Lnet/minecraft/world/entity/player/Player;)V net/minecraft/world/entity/projectile/AbstractArrow/playerTouch (Lnet/minecraft/world/entity/player/Player;)V +MD: net/minecraft/world/entity/projectile/AbstractArrow/m_6351_ (Lnet/minecraft/world/phys/Vec3;Lnet/minecraft/world/phys/Vec3;)Lnet/minecraft/world/phys/EntityHitResult; net/minecraft/world/entity/projectile/AbstractArrow/findHitEntity (Lnet/minecraft/world/phys/Vec3;Lnet/minecraft/world/phys/Vec3;)Lnet/minecraft/world/phys/EntityHitResult; +MD: net/minecraft/world/entity/projectile/AbstractArrow/m_6380_ (Lnet/minecraft/world/entity/Pose;Lnet/minecraft/world/entity/EntityDimensions;)F net/minecraft/world/entity/projectile/AbstractArrow/getEyeHeight (Lnet/minecraft/world/entity/Pose;Lnet/minecraft/world/entity/EntityDimensions;)F +MD: net/minecraft/world/entity/projectile/AbstractArrow/m_6453_ (DDDFFIZ)V net/minecraft/world/entity/projectile/AbstractArrow/lerpTo (DDDFFIZ)V +MD: net/minecraft/world/entity/projectile/AbstractArrow/m_6478_ (Lnet/minecraft/world/entity/MoverType;Lnet/minecraft/world/phys/Vec3;)V net/minecraft/world/entity/projectile/AbstractArrow/move (Lnet/minecraft/world/entity/MoverType;Lnet/minecraft/world/phys/Vec3;)V +MD: net/minecraft/world/entity/projectile/AbstractArrow/m_6686_ (DDDFF)V net/minecraft/world/entity/projectile/AbstractArrow/shoot (DDDFF)V +MD: net/minecraft/world/entity/projectile/AbstractArrow/m_6783_ (D)Z net/minecraft/world/entity/projectile/AbstractArrow/shouldRenderAtSqrDistance (D)Z +MD: net/minecraft/world/entity/projectile/AbstractArrow/m_6882_ ()F net/minecraft/world/entity/projectile/AbstractArrow/getWaterInertia ()F +MD: net/minecraft/world/entity/projectile/AbstractArrow/m_6901_ ()V net/minecraft/world/entity/projectile/AbstractArrow/tickDespawn ()V +MD: net/minecraft/world/entity/projectile/AbstractArrow/m_7239_ ()Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/projectile/AbstractArrow/getDefaultHitGroundSoundEvent ()Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/projectile/AbstractArrow/m_7378_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/entity/projectile/AbstractArrow/readAdditionalSaveData (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/entity/projectile/AbstractArrow/m_7380_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/entity/projectile/AbstractArrow/addAdditionalSaveData (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/entity/projectile/AbstractArrow/m_7761_ (Lnet/minecraft/world/entity/LivingEntity;)V net/minecraft/world/entity/projectile/AbstractArrow/doPostHurtEffects (Lnet/minecraft/world/entity/LivingEntity;)V +MD: net/minecraft/world/entity/projectile/AbstractArrow/m_7941_ ()Lnet/minecraft/world/item/ItemStack; net/minecraft/world/entity/projectile/AbstractArrow/getPickupItem ()Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/entity/projectile/AbstractArrow/m_8060_ (Lnet/minecraft/world/phys/BlockHitResult;)V net/minecraft/world/entity/projectile/AbstractArrow/onHitBlock (Lnet/minecraft/world/phys/BlockHitResult;)V +MD: net/minecraft/world/entity/projectile/AbstractArrow/m_8097_ ()V net/minecraft/world/entity/projectile/AbstractArrow/defineSynchedData ()V +MD: net/minecraft/world/entity/projectile/AbstractArrow/m_8119_ ()V net/minecraft/world/entity/projectile/AbstractArrow/tick ()V +MD: net/minecraft/world/entity/projectile/AbstractArrow$1/ ()V net/minecraft/world/entity/projectile/AbstractArrow$1/ ()V +MD: net/minecraft/world/entity/projectile/AbstractArrow$Pickup/ ()V net/minecraft/world/entity/projectile/AbstractArrow$Pickup/ ()V +MD: net/minecraft/world/entity/projectile/AbstractArrow$Pickup/ (Ljava/lang/String;I)V net/minecraft/world/entity/projectile/AbstractArrow$Pickup/ (Ljava/lang/String;I)V +MD: net/minecraft/world/entity/projectile/AbstractArrow$Pickup/m_150126_ ()[Lnet/minecraft/world/entity/projectile/AbstractArrow$Pickup; net/minecraft/world/entity/projectile/AbstractArrow$Pickup/$values ()[Lnet/minecraft/world/entity/projectile/AbstractArrow$Pickup; +MD: net/minecraft/world/entity/projectile/AbstractArrow$Pickup/m_36808_ (I)Lnet/minecraft/world/entity/projectile/AbstractArrow$Pickup; net/minecraft/world/entity/projectile/AbstractArrow$Pickup/byOrdinal (I)Lnet/minecraft/world/entity/projectile/AbstractArrow$Pickup; +MD: net/minecraft/world/entity/projectile/AbstractArrow$Pickup/valueOf (Ljava/lang/String;)Lnet/minecraft/world/entity/projectile/AbstractArrow$Pickup; net/minecraft/world/entity/projectile/AbstractArrow$Pickup/valueOf (Ljava/lang/String;)Lnet/minecraft/world/entity/projectile/AbstractArrow$Pickup; +MD: net/minecraft/world/entity/projectile/AbstractArrow$Pickup/values ()[Lnet/minecraft/world/entity/projectile/AbstractArrow$Pickup; net/minecraft/world/entity/projectile/AbstractArrow$Pickup/values ()[Lnet/minecraft/world/entity/projectile/AbstractArrow$Pickup; +MD: net/minecraft/world/entity/projectile/AbstractHurtingProjectile/ (Lnet/minecraft/world/entity/EntityType;DDDDDDLnet/minecraft/world/level/Level;)V net/minecraft/world/entity/projectile/AbstractHurtingProjectile/ (Lnet/minecraft/world/entity/EntityType;DDDDDDLnet/minecraft/world/level/Level;)V +MD: net/minecraft/world/entity/projectile/AbstractHurtingProjectile/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V net/minecraft/world/entity/projectile/AbstractHurtingProjectile/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V +MD: net/minecraft/world/entity/projectile/AbstractHurtingProjectile/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/entity/LivingEntity;DDDLnet/minecraft/world/level/Level;)V net/minecraft/world/entity/projectile/AbstractHurtingProjectile/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/entity/LivingEntity;DDDLnet/minecraft/world/level/Level;)V +MD: net/minecraft/world/entity/projectile/AbstractHurtingProjectile/m_141965_ (Lnet/minecraft/network/protocol/game/ClientboundAddEntityPacket;)V net/minecraft/world/entity/projectile/AbstractHurtingProjectile/recreateFromPacket (Lnet/minecraft/network/protocol/game/ClientboundAddEntityPacket;)V +MD: net/minecraft/world/entity/projectile/AbstractHurtingProjectile/m_213856_ ()F net/minecraft/world/entity/projectile/AbstractHurtingProjectile/getLightLevelDependentMagicValue ()F +MD: net/minecraft/world/entity/projectile/AbstractHurtingProjectile/m_5603_ (Lnet/minecraft/world/entity/Entity;)Z net/minecraft/world/entity/projectile/AbstractHurtingProjectile/canHitEntity (Lnet/minecraft/world/entity/Entity;)Z +MD: net/minecraft/world/entity/projectile/AbstractHurtingProjectile/m_5654_ ()Lnet/minecraft/network/protocol/Packet; net/minecraft/world/entity/projectile/AbstractHurtingProjectile/getAddEntityPacket ()Lnet/minecraft/network/protocol/Packet; +MD: net/minecraft/world/entity/projectile/AbstractHurtingProjectile/m_5931_ ()Z net/minecraft/world/entity/projectile/AbstractHurtingProjectile/shouldBurn ()Z +MD: net/minecraft/world/entity/projectile/AbstractHurtingProjectile/m_5967_ ()Lnet/minecraft/core/particles/ParticleOptions; net/minecraft/world/entity/projectile/AbstractHurtingProjectile/getTrailParticle ()Lnet/minecraft/core/particles/ParticleOptions; +MD: net/minecraft/world/entity/projectile/AbstractHurtingProjectile/m_6087_ ()Z net/minecraft/world/entity/projectile/AbstractHurtingProjectile/isPickable ()Z +MD: net/minecraft/world/entity/projectile/AbstractHurtingProjectile/m_6143_ ()F net/minecraft/world/entity/projectile/AbstractHurtingProjectile/getPickRadius ()F +MD: net/minecraft/world/entity/projectile/AbstractHurtingProjectile/m_6469_ (Lnet/minecraft/world/damagesource/DamageSource;F)Z net/minecraft/world/entity/projectile/AbstractHurtingProjectile/hurt (Lnet/minecraft/world/damagesource/DamageSource;F)Z +MD: net/minecraft/world/entity/projectile/AbstractHurtingProjectile/m_6783_ (D)Z net/minecraft/world/entity/projectile/AbstractHurtingProjectile/shouldRenderAtSqrDistance (D)Z +MD: net/minecraft/world/entity/projectile/AbstractHurtingProjectile/m_6884_ ()F net/minecraft/world/entity/projectile/AbstractHurtingProjectile/getInertia ()F +MD: net/minecraft/world/entity/projectile/AbstractHurtingProjectile/m_7378_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/entity/projectile/AbstractHurtingProjectile/readAdditionalSaveData (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/entity/projectile/AbstractHurtingProjectile/m_7380_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/entity/projectile/AbstractHurtingProjectile/addAdditionalSaveData (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/entity/projectile/AbstractHurtingProjectile/m_8097_ ()V net/minecraft/world/entity/projectile/AbstractHurtingProjectile/defineSynchedData ()V +MD: net/minecraft/world/entity/projectile/AbstractHurtingProjectile/m_8119_ ()V net/minecraft/world/entity/projectile/AbstractHurtingProjectile/tick ()V +MD: net/minecraft/world/entity/projectile/Arrow/ ()V net/minecraft/world/entity/projectile/Arrow/ ()V +MD: net/minecraft/world/entity/projectile/Arrow/ (Lnet/minecraft/world/level/Level;DDD)V net/minecraft/world/entity/projectile/Arrow/ (Lnet/minecraft/world/level/Level;DDD)V +MD: net/minecraft/world/entity/projectile/Arrow/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V net/minecraft/world/entity/projectile/Arrow/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V +MD: net/minecraft/world/entity/projectile/Arrow/ (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/entity/LivingEntity;)V net/minecraft/world/entity/projectile/Arrow/ (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/entity/LivingEntity;)V +MD: net/minecraft/world/entity/projectile/Arrow/m_267768_ (I)I net/minecraft/world/entity/projectile/Arrow/lambda$doPostHurtEffects$0 (I)I +MD: net/minecraft/world/entity/projectile/Arrow/m_36870_ (Lnet/minecraft/world/effect/MobEffectInstance;)V net/minecraft/world/entity/projectile/Arrow/addEffect (Lnet/minecraft/world/effect/MobEffectInstance;)V +MD: net/minecraft/world/entity/projectile/Arrow/m_36876_ (I)V net/minecraft/world/entity/projectile/Arrow/makeParticle (I)V +MD: net/minecraft/world/entity/projectile/Arrow/m_36878_ (Lnet/minecraft/world/item/ItemStack;)V net/minecraft/world/entity/projectile/Arrow/setEffectsFromItem (Lnet/minecraft/world/item/ItemStack;)V +MD: net/minecraft/world/entity/projectile/Arrow/m_36882_ (I)V net/minecraft/world/entity/projectile/Arrow/setFixedColor (I)V +MD: net/minecraft/world/entity/projectile/Arrow/m_36884_ (Lnet/minecraft/world/item/ItemStack;)I net/minecraft/world/entity/projectile/Arrow/getCustomColor (Lnet/minecraft/world/item/ItemStack;)I +MD: net/minecraft/world/entity/projectile/Arrow/m_36889_ ()I net/minecraft/world/entity/projectile/Arrow/getColor ()I +MD: net/minecraft/world/entity/projectile/Arrow/m_36890_ ()V net/minecraft/world/entity/projectile/Arrow/updateColor ()V +MD: net/minecraft/world/entity/projectile/Arrow/m_7378_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/entity/projectile/Arrow/readAdditionalSaveData (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/entity/projectile/Arrow/m_7380_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/entity/projectile/Arrow/addAdditionalSaveData (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/entity/projectile/Arrow/m_7761_ (Lnet/minecraft/world/entity/LivingEntity;)V net/minecraft/world/entity/projectile/Arrow/doPostHurtEffects (Lnet/minecraft/world/entity/LivingEntity;)V +MD: net/minecraft/world/entity/projectile/Arrow/m_7822_ (B)V net/minecraft/world/entity/projectile/Arrow/handleEntityEvent (B)V +MD: net/minecraft/world/entity/projectile/Arrow/m_7941_ ()Lnet/minecraft/world/item/ItemStack; net/minecraft/world/entity/projectile/Arrow/getPickupItem ()Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/entity/projectile/Arrow/m_8097_ ()V net/minecraft/world/entity/projectile/Arrow/defineSynchedData ()V +MD: net/minecraft/world/entity/projectile/Arrow/m_8119_ ()V net/minecraft/world/entity/projectile/Arrow/tick ()V +MD: net/minecraft/world/entity/projectile/DragonFireball/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V net/minecraft/world/entity/projectile/DragonFireball/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V +MD: net/minecraft/world/entity/projectile/DragonFireball/ (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/entity/LivingEntity;DDD)V net/minecraft/world/entity/projectile/DragonFireball/ (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/entity/LivingEntity;DDD)V +MD: net/minecraft/world/entity/projectile/DragonFireball/m_5931_ ()Z net/minecraft/world/entity/projectile/DragonFireball/shouldBurn ()Z +MD: net/minecraft/world/entity/projectile/DragonFireball/m_5967_ ()Lnet/minecraft/core/particles/ParticleOptions; net/minecraft/world/entity/projectile/DragonFireball/getTrailParticle ()Lnet/minecraft/core/particles/ParticleOptions; +MD: net/minecraft/world/entity/projectile/DragonFireball/m_6087_ ()Z net/minecraft/world/entity/projectile/DragonFireball/isPickable ()Z +MD: net/minecraft/world/entity/projectile/DragonFireball/m_6469_ (Lnet/minecraft/world/damagesource/DamageSource;F)Z net/minecraft/world/entity/projectile/DragonFireball/hurt (Lnet/minecraft/world/damagesource/DamageSource;F)Z +MD: net/minecraft/world/entity/projectile/DragonFireball/m_6532_ (Lnet/minecraft/world/phys/HitResult;)V net/minecraft/world/entity/projectile/DragonFireball/onHit (Lnet/minecraft/world/phys/HitResult;)V +MD: net/minecraft/world/entity/projectile/EvokerFangs/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V net/minecraft/world/entity/projectile/EvokerFangs/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V +MD: net/minecraft/world/entity/projectile/EvokerFangs/ (Lnet/minecraft/world/level/Level;DDDFILnet/minecraft/world/entity/LivingEntity;)V net/minecraft/world/entity/projectile/EvokerFangs/ (Lnet/minecraft/world/level/Level;DDDFILnet/minecraft/world/entity/LivingEntity;)V +MD: net/minecraft/world/entity/projectile/EvokerFangs/m_19749_ ()Lnet/minecraft/world/entity/Entity; net/minecraft/world/entity/projectile/EvokerFangs/getOwner ()Lnet/minecraft/world/entity/Entity; +MD: net/minecraft/world/entity/projectile/EvokerFangs/m_19749_ ()Lnet/minecraft/world/entity/LivingEntity; net/minecraft/world/entity/projectile/EvokerFangs/getOwner ()Lnet/minecraft/world/entity/LivingEntity; +MD: net/minecraft/world/entity/projectile/EvokerFangs/m_36936_ (F)F net/minecraft/world/entity/projectile/EvokerFangs/getAnimationProgress (F)F +MD: net/minecraft/world/entity/projectile/EvokerFangs/m_36938_ (Lnet/minecraft/world/entity/LivingEntity;)V net/minecraft/world/entity/projectile/EvokerFangs/setOwner (Lnet/minecraft/world/entity/LivingEntity;)V +MD: net/minecraft/world/entity/projectile/EvokerFangs/m_36944_ (Lnet/minecraft/world/entity/LivingEntity;)V net/minecraft/world/entity/projectile/EvokerFangs/dealDamageTo (Lnet/minecraft/world/entity/LivingEntity;)V +MD: net/minecraft/world/entity/projectile/EvokerFangs/m_7378_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/entity/projectile/EvokerFangs/readAdditionalSaveData (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/entity/projectile/EvokerFangs/m_7380_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/entity/projectile/EvokerFangs/addAdditionalSaveData (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/entity/projectile/EvokerFangs/m_7822_ (B)V net/minecraft/world/entity/projectile/EvokerFangs/handleEntityEvent (B)V +MD: net/minecraft/world/entity/projectile/EvokerFangs/m_8097_ ()V net/minecraft/world/entity/projectile/EvokerFangs/defineSynchedData ()V +MD: net/minecraft/world/entity/projectile/EvokerFangs/m_8119_ ()V net/minecraft/world/entity/projectile/EvokerFangs/tick ()V +MD: net/minecraft/world/entity/projectile/EyeOfEnder/ ()V net/minecraft/world/entity/projectile/EyeOfEnder/ ()V +MD: net/minecraft/world/entity/projectile/EyeOfEnder/ (Lnet/minecraft/world/level/Level;DDD)V net/minecraft/world/entity/projectile/EyeOfEnder/ (Lnet/minecraft/world/level/Level;DDD)V +MD: net/minecraft/world/entity/projectile/EyeOfEnder/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V net/minecraft/world/entity/projectile/EyeOfEnder/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V +MD: net/minecraft/world/entity/projectile/EyeOfEnder/m_213856_ ()F net/minecraft/world/entity/projectile/EyeOfEnder/getLightLevelDependentMagicValue ()F +MD: net/minecraft/world/entity/projectile/EyeOfEnder/m_36967_ (Lnet/minecraft/core/BlockPos;)V net/minecraft/world/entity/projectile/EyeOfEnder/signalTo (Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/world/entity/projectile/EyeOfEnder/m_36972_ (Lnet/minecraft/world/item/ItemStack;)V net/minecraft/world/entity/projectile/EyeOfEnder/setItem (Lnet/minecraft/world/item/ItemStack;)V +MD: net/minecraft/world/entity/projectile/EyeOfEnder/m_36981_ ()Lnet/minecraft/world/item/ItemStack; net/minecraft/world/entity/projectile/EyeOfEnder/getItemRaw ()Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/entity/projectile/EyeOfEnder/m_6001_ (DDD)V net/minecraft/world/entity/projectile/EyeOfEnder/lerpMotion (DDD)V +MD: net/minecraft/world/entity/projectile/EyeOfEnder/m_6097_ ()Z net/minecraft/world/entity/projectile/EyeOfEnder/isAttackable ()Z +MD: net/minecraft/world/entity/projectile/EyeOfEnder/m_6783_ (D)Z net/minecraft/world/entity/projectile/EyeOfEnder/shouldRenderAtSqrDistance (D)Z +MD: net/minecraft/world/entity/projectile/EyeOfEnder/m_7378_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/entity/projectile/EyeOfEnder/readAdditionalSaveData (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/entity/projectile/EyeOfEnder/m_7380_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/entity/projectile/EyeOfEnder/addAdditionalSaveData (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/entity/projectile/EyeOfEnder/m_7846_ ()Lnet/minecraft/world/item/ItemStack; net/minecraft/world/entity/projectile/EyeOfEnder/getItem ()Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/entity/projectile/EyeOfEnder/m_8097_ ()V net/minecraft/world/entity/projectile/EyeOfEnder/defineSynchedData ()V +MD: net/minecraft/world/entity/projectile/EyeOfEnder/m_8119_ ()V net/minecraft/world/entity/projectile/EyeOfEnder/tick ()V +MD: net/minecraft/world/entity/projectile/Fireball/ ()V net/minecraft/world/entity/projectile/Fireball/ ()V +MD: net/minecraft/world/entity/projectile/Fireball/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V net/minecraft/world/entity/projectile/Fireball/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V +MD: net/minecraft/world/entity/projectile/Fireball/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/entity/LivingEntity;DDDLnet/minecraft/world/level/Level;)V net/minecraft/world/entity/projectile/Fireball/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/entity/LivingEntity;DDDLnet/minecraft/world/level/Level;)V +MD: net/minecraft/world/entity/projectile/Fireball/ (Lnet/minecraft/world/entity/EntityType;DDDDDDLnet/minecraft/world/level/Level;)V net/minecraft/world/entity/projectile/Fireball/ (Lnet/minecraft/world/entity/EntityType;DDDDDDLnet/minecraft/world/level/Level;)V +MD: net/minecraft/world/entity/projectile/Fireball/m_37010_ (Lnet/minecraft/world/item/ItemStack;)V net/minecraft/world/entity/projectile/Fireball/setItem (Lnet/minecraft/world/item/ItemStack;)V +MD: net/minecraft/world/entity/projectile/Fireball/m_37018_ ()Lnet/minecraft/world/item/ItemStack; net/minecraft/world/entity/projectile/Fireball/getItemRaw ()Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/entity/projectile/Fireball/m_7378_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/entity/projectile/Fireball/readAdditionalSaveData (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/entity/projectile/Fireball/m_7380_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/entity/projectile/Fireball/addAdditionalSaveData (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/entity/projectile/Fireball/m_7846_ ()Lnet/minecraft/world/item/ItemStack; net/minecraft/world/entity/projectile/Fireball/getItem ()Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/entity/projectile/Fireball/m_8097_ ()V net/minecraft/world/entity/projectile/Fireball/defineSynchedData ()V +MD: net/minecraft/world/entity/projectile/FireworkRocketEntity/ ()V net/minecraft/world/entity/projectile/FireworkRocketEntity/ ()V +MD: net/minecraft/world/entity/projectile/FireworkRocketEntity/ (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/item/ItemStack;DDDZ)V net/minecraft/world/entity/projectile/FireworkRocketEntity/ (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/item/ItemStack;DDDZ)V +MD: net/minecraft/world/entity/projectile/FireworkRocketEntity/ (Lnet/minecraft/world/level/Level;DDDLnet/minecraft/world/item/ItemStack;)V net/minecraft/world/entity/projectile/FireworkRocketEntity/ (Lnet/minecraft/world/level/Level;DDDLnet/minecraft/world/item/ItemStack;)V +MD: net/minecraft/world/entity/projectile/FireworkRocketEntity/ (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/entity/Entity;DDDZ)V net/minecraft/world/entity/projectile/FireworkRocketEntity/ (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/entity/Entity;DDDZ)V +MD: net/minecraft/world/entity/projectile/FireworkRocketEntity/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V net/minecraft/world/entity/projectile/FireworkRocketEntity/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V +MD: net/minecraft/world/entity/projectile/FireworkRocketEntity/ (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/entity/Entity;DDDLnet/minecraft/world/item/ItemStack;)V net/minecraft/world/entity/projectile/FireworkRocketEntity/ (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/entity/Entity;DDDLnet/minecraft/world/item/ItemStack;)V +MD: net/minecraft/world/entity/projectile/FireworkRocketEntity/ (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/entity/LivingEntity;)V net/minecraft/world/entity/projectile/FireworkRocketEntity/ (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/entity/LivingEntity;)V +MD: net/minecraft/world/entity/projectile/FireworkRocketEntity/m_289166_ (I)V net/minecraft/world/entity/projectile/FireworkRocketEntity/lambda$tick$0 (I)V +MD: net/minecraft/world/entity/projectile/FireworkRocketEntity/m_37079_ ()Z net/minecraft/world/entity/projectile/FireworkRocketEntity/isShotAtAngle ()Z +MD: net/minecraft/world/entity/projectile/FireworkRocketEntity/m_37080_ ()V net/minecraft/world/entity/projectile/FireworkRocketEntity/explode ()V +MD: net/minecraft/world/entity/projectile/FireworkRocketEntity/m_37086_ ()Z net/minecraft/world/entity/projectile/FireworkRocketEntity/hasExplosion ()Z +MD: net/minecraft/world/entity/projectile/FireworkRocketEntity/m_37087_ ()V net/minecraft/world/entity/projectile/FireworkRocketEntity/dealExplosionDamage ()V +MD: net/minecraft/world/entity/projectile/FireworkRocketEntity/m_37088_ ()Z net/minecraft/world/entity/projectile/FireworkRocketEntity/isAttachedToEntity ()Z +MD: net/minecraft/world/entity/projectile/FireworkRocketEntity/m_5790_ (Lnet/minecraft/world/phys/EntityHitResult;)V net/minecraft/world/entity/projectile/FireworkRocketEntity/onHitEntity (Lnet/minecraft/world/phys/EntityHitResult;)V +MD: net/minecraft/world/entity/projectile/FireworkRocketEntity/m_6000_ (DDD)Z net/minecraft/world/entity/projectile/FireworkRocketEntity/shouldRender (DDD)Z +MD: net/minecraft/world/entity/projectile/FireworkRocketEntity/m_6097_ ()Z net/minecraft/world/entity/projectile/FireworkRocketEntity/isAttackable ()Z +MD: net/minecraft/world/entity/projectile/FireworkRocketEntity/m_6783_ (D)Z net/minecraft/world/entity/projectile/FireworkRocketEntity/shouldRenderAtSqrDistance (D)Z +MD: net/minecraft/world/entity/projectile/FireworkRocketEntity/m_7378_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/entity/projectile/FireworkRocketEntity/readAdditionalSaveData (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/entity/projectile/FireworkRocketEntity/m_7380_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/entity/projectile/FireworkRocketEntity/addAdditionalSaveData (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/entity/projectile/FireworkRocketEntity/m_7822_ (B)V net/minecraft/world/entity/projectile/FireworkRocketEntity/handleEntityEvent (B)V +MD: net/minecraft/world/entity/projectile/FireworkRocketEntity/m_7846_ ()Lnet/minecraft/world/item/ItemStack; net/minecraft/world/entity/projectile/FireworkRocketEntity/getItem ()Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/entity/projectile/FireworkRocketEntity/m_8060_ (Lnet/minecraft/world/phys/BlockHitResult;)V net/minecraft/world/entity/projectile/FireworkRocketEntity/onHitBlock (Lnet/minecraft/world/phys/BlockHitResult;)V +MD: net/minecraft/world/entity/projectile/FireworkRocketEntity/m_8097_ ()V net/minecraft/world/entity/projectile/FireworkRocketEntity/defineSynchedData ()V +MD: net/minecraft/world/entity/projectile/FireworkRocketEntity/m_8119_ ()V net/minecraft/world/entity/projectile/FireworkRocketEntity/tick ()V +MD: net/minecraft/world/entity/projectile/FishingHook/ ()V net/minecraft/world/entity/projectile/FishingHook/ ()V +MD: net/minecraft/world/entity/projectile/FishingHook/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V net/minecraft/world/entity/projectile/FishingHook/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V +MD: net/minecraft/world/entity/projectile/FishingHook/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;II)V net/minecraft/world/entity/projectile/FishingHook/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;II)V +MD: net/minecraft/world/entity/projectile/FishingHook/ (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/level/Level;II)V net/minecraft/world/entity/projectile/FishingHook/ (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/level/Level;II)V +MD: net/minecraft/world/entity/projectile/FishingHook/m_141965_ (Lnet/minecraft/network/protocol/game/ClientboundAddEntityPacket;)V net/minecraft/world/entity/projectile/FishingHook/recreateFromPacket (Lnet/minecraft/network/protocol/game/ClientboundAddEntityPacket;)V +MD: net/minecraft/world/entity/projectile/FishingHook/m_142036_ ()V net/minecraft/world/entity/projectile/FishingHook/onClientRemoval ()V +MD: net/minecraft/world/entity/projectile/FishingHook/m_142319_ ()Lnet/minecraft/world/entity/Entity$MovementEmission; net/minecraft/world/entity/projectile/FishingHook/getMovementEmission ()Lnet/minecraft/world/entity/Entity$MovementEmission; +MD: net/minecraft/world/entity/projectile/FishingHook/m_142687_ (Lnet/minecraft/world/entity/Entity$RemovalReason;)V net/minecraft/world/entity/projectile/FishingHook/remove (Lnet/minecraft/world/entity/Entity$RemovalReason;)V +MD: net/minecraft/world/entity/projectile/FishingHook/m_150147_ (Lnet/minecraft/world/entity/projectile/FishingHook;)V net/minecraft/world/entity/projectile/FishingHook/updateOwnerInfo (Lnet/minecraft/world/entity/projectile/FishingHook;)V +MD: net/minecraft/world/entity/projectile/FishingHook/m_150155_ (Lnet/minecraft/world/entity/Entity;)V net/minecraft/world/entity/projectile/FishingHook/pullEntity (Lnet/minecraft/world/entity/Entity;)V +MD: net/minecraft/world/entity/projectile/FishingHook/m_150157_ (Lnet/minecraft/world/entity/Entity;)V net/minecraft/world/entity/projectile/FishingHook/setHookedEntity (Lnet/minecraft/world/entity/Entity;)V +MD: net/minecraft/world/entity/projectile/FishingHook/m_37136_ (Lnet/minecraft/world/entity/player/Player;)Z net/minecraft/world/entity/projectile/FishingHook/shouldStopFishing (Lnet/minecraft/world/entity/player/Player;)Z +MD: net/minecraft/world/entity/projectile/FishingHook/m_37138_ (Lnet/minecraft/world/entity/projectile/FishingHook$OpenWaterType;Lnet/minecraft/world/entity/projectile/FishingHook$OpenWaterType;)Lnet/minecraft/world/entity/projectile/FishingHook$OpenWaterType; net/minecraft/world/entity/projectile/FishingHook/lambda$getOpenWaterTypeForArea$0 (Lnet/minecraft/world/entity/projectile/FishingHook$OpenWaterType;Lnet/minecraft/world/entity/projectile/FishingHook$OpenWaterType;)Lnet/minecraft/world/entity/projectile/FishingHook$OpenWaterType; +MD: net/minecraft/world/entity/projectile/FishingHook/m_37145_ (Lnet/minecraft/core/BlockPos;)V net/minecraft/world/entity/projectile/FishingHook/catchingFish (Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/world/entity/projectile/FishingHook/m_37147_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/entity/projectile/FishingHook$OpenWaterType; net/minecraft/world/entity/projectile/FishingHook/getOpenWaterTypeForArea (Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/entity/projectile/FishingHook$OpenWaterType; +MD: net/minecraft/world/entity/projectile/FishingHook/m_37156_ (Lnet/minecraft/world/item/ItemStack;)I net/minecraft/world/entity/projectile/FishingHook/retrieve (Lnet/minecraft/world/item/ItemStack;)I +MD: net/minecraft/world/entity/projectile/FishingHook/m_37158_ (Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/entity/projectile/FishingHook/calculateOpenWater (Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/entity/projectile/FishingHook/m_37163_ (Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/entity/projectile/FishingHook$OpenWaterType; net/minecraft/world/entity/projectile/FishingHook/getOpenWaterTypeForBlock (Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/entity/projectile/FishingHook$OpenWaterType; +MD: net/minecraft/world/entity/projectile/FishingHook/m_37166_ ()Z net/minecraft/world/entity/projectile/FishingHook/isOpenWaterFishing ()Z +MD: net/minecraft/world/entity/projectile/FishingHook/m_37168_ ()Lnet/minecraft/world/entity/player/Player; net/minecraft/world/entity/projectile/FishingHook/getPlayerOwner ()Lnet/minecraft/world/entity/player/Player; +MD: net/minecraft/world/entity/projectile/FishingHook/m_37170_ ()Lnet/minecraft/world/entity/Entity; net/minecraft/world/entity/projectile/FishingHook/getHookedIn ()Lnet/minecraft/world/entity/Entity; +MD: net/minecraft/world/entity/projectile/FishingHook/m_37171_ ()V net/minecraft/world/entity/projectile/FishingHook/checkCollision ()V +MD: net/minecraft/world/entity/projectile/FishingHook/m_5602_ (Lnet/minecraft/world/entity/Entity;)V net/minecraft/world/entity/projectile/FishingHook/setOwner (Lnet/minecraft/world/entity/Entity;)V +MD: net/minecraft/world/entity/projectile/FishingHook/m_5603_ (Lnet/minecraft/world/entity/Entity;)Z net/minecraft/world/entity/projectile/FishingHook/canHitEntity (Lnet/minecraft/world/entity/Entity;)Z +MD: net/minecraft/world/entity/projectile/FishingHook/m_5654_ ()Lnet/minecraft/network/protocol/Packet; net/minecraft/world/entity/projectile/FishingHook/getAddEntityPacket ()Lnet/minecraft/network/protocol/Packet; +MD: net/minecraft/world/entity/projectile/FishingHook/m_5790_ (Lnet/minecraft/world/phys/EntityHitResult;)V net/minecraft/world/entity/projectile/FishingHook/onHitEntity (Lnet/minecraft/world/phys/EntityHitResult;)V +MD: net/minecraft/world/entity/projectile/FishingHook/m_6072_ ()Z net/minecraft/world/entity/projectile/FishingHook/canChangeDimensions ()Z +MD: net/minecraft/world/entity/projectile/FishingHook/m_6453_ (DDDFFIZ)V net/minecraft/world/entity/projectile/FishingHook/lerpTo (DDDFFIZ)V +MD: net/minecraft/world/entity/projectile/FishingHook/m_6783_ (D)Z net/minecraft/world/entity/projectile/FishingHook/shouldRenderAtSqrDistance (D)Z +MD: net/minecraft/world/entity/projectile/FishingHook/m_7350_ (Lnet/minecraft/network/syncher/EntityDataAccessor;)V net/minecraft/world/entity/projectile/FishingHook/onSyncedDataUpdated (Lnet/minecraft/network/syncher/EntityDataAccessor;)V +MD: net/minecraft/world/entity/projectile/FishingHook/m_7378_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/entity/projectile/FishingHook/readAdditionalSaveData (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/entity/projectile/FishingHook/m_7380_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/entity/projectile/FishingHook/addAdditionalSaveData (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/entity/projectile/FishingHook/m_7822_ (B)V net/minecraft/world/entity/projectile/FishingHook/handleEntityEvent (B)V +MD: net/minecraft/world/entity/projectile/FishingHook/m_8060_ (Lnet/minecraft/world/phys/BlockHitResult;)V net/minecraft/world/entity/projectile/FishingHook/onHitBlock (Lnet/minecraft/world/phys/BlockHitResult;)V +MD: net/minecraft/world/entity/projectile/FishingHook/m_8097_ ()V net/minecraft/world/entity/projectile/FishingHook/defineSynchedData ()V +MD: net/minecraft/world/entity/projectile/FishingHook/m_8119_ ()V net/minecraft/world/entity/projectile/FishingHook/tick ()V +MD: net/minecraft/world/entity/projectile/FishingHook$1/ ()V net/minecraft/world/entity/projectile/FishingHook$1/ ()V +MD: net/minecraft/world/entity/projectile/FishingHook$FishHookState/ ()V net/minecraft/world/entity/projectile/FishingHook$FishHookState/ ()V +MD: net/minecraft/world/entity/projectile/FishingHook$FishHookState/ (Ljava/lang/String;I)V net/minecraft/world/entity/projectile/FishingHook$FishHookState/ (Ljava/lang/String;I)V +MD: net/minecraft/world/entity/projectile/FishingHook$FishHookState/m_150159_ ()[Lnet/minecraft/world/entity/projectile/FishingHook$FishHookState; net/minecraft/world/entity/projectile/FishingHook$FishHookState/$values ()[Lnet/minecraft/world/entity/projectile/FishingHook$FishHookState; +MD: net/minecraft/world/entity/projectile/FishingHook$FishHookState/valueOf (Ljava/lang/String;)Lnet/minecraft/world/entity/projectile/FishingHook$FishHookState; net/minecraft/world/entity/projectile/FishingHook$FishHookState/valueOf (Ljava/lang/String;)Lnet/minecraft/world/entity/projectile/FishingHook$FishHookState; +MD: net/minecraft/world/entity/projectile/FishingHook$FishHookState/values ()[Lnet/minecraft/world/entity/projectile/FishingHook$FishHookState; net/minecraft/world/entity/projectile/FishingHook$FishHookState/values ()[Lnet/minecraft/world/entity/projectile/FishingHook$FishHookState; +MD: net/minecraft/world/entity/projectile/FishingHook$OpenWaterType/ ()V net/minecraft/world/entity/projectile/FishingHook$OpenWaterType/ ()V +MD: net/minecraft/world/entity/projectile/FishingHook$OpenWaterType/ (Ljava/lang/String;I)V net/minecraft/world/entity/projectile/FishingHook$OpenWaterType/ (Ljava/lang/String;I)V +MD: net/minecraft/world/entity/projectile/FishingHook$OpenWaterType/m_150160_ ()[Lnet/minecraft/world/entity/projectile/FishingHook$OpenWaterType; net/minecraft/world/entity/projectile/FishingHook$OpenWaterType/$values ()[Lnet/minecraft/world/entity/projectile/FishingHook$OpenWaterType; +MD: net/minecraft/world/entity/projectile/FishingHook$OpenWaterType/valueOf (Ljava/lang/String;)Lnet/minecraft/world/entity/projectile/FishingHook$OpenWaterType; net/minecraft/world/entity/projectile/FishingHook$OpenWaterType/valueOf (Ljava/lang/String;)Lnet/minecraft/world/entity/projectile/FishingHook$OpenWaterType; +MD: net/minecraft/world/entity/projectile/FishingHook$OpenWaterType/values ()[Lnet/minecraft/world/entity/projectile/FishingHook$OpenWaterType; net/minecraft/world/entity/projectile/FishingHook$OpenWaterType/values ()[Lnet/minecraft/world/entity/projectile/FishingHook$OpenWaterType; +MD: net/minecraft/world/entity/projectile/ItemSupplier/m_7846_ ()Lnet/minecraft/world/item/ItemStack; net/minecraft/world/entity/projectile/ItemSupplier/getItem ()Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/entity/projectile/LargeFireball/ (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/entity/LivingEntity;DDDI)V net/minecraft/world/entity/projectile/LargeFireball/ (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/entity/LivingEntity;DDDI)V +MD: net/minecraft/world/entity/projectile/LargeFireball/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V net/minecraft/world/entity/projectile/LargeFireball/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V +MD: net/minecraft/world/entity/projectile/LargeFireball/m_5790_ (Lnet/minecraft/world/phys/EntityHitResult;)V net/minecraft/world/entity/projectile/LargeFireball/onHitEntity (Lnet/minecraft/world/phys/EntityHitResult;)V +MD: net/minecraft/world/entity/projectile/LargeFireball/m_6532_ (Lnet/minecraft/world/phys/HitResult;)V net/minecraft/world/entity/projectile/LargeFireball/onHit (Lnet/minecraft/world/phys/HitResult;)V +MD: net/minecraft/world/entity/projectile/LargeFireball/m_7378_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/entity/projectile/LargeFireball/readAdditionalSaveData (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/entity/projectile/LargeFireball/m_7380_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/entity/projectile/LargeFireball/addAdditionalSaveData (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/entity/projectile/LlamaSpit/ (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/entity/animal/horse/Llama;)V net/minecraft/world/entity/projectile/LlamaSpit/ (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/entity/animal/horse/Llama;)V +MD: net/minecraft/world/entity/projectile/LlamaSpit/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V net/minecraft/world/entity/projectile/LlamaSpit/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V +MD: net/minecraft/world/entity/projectile/LlamaSpit/m_141965_ (Lnet/minecraft/network/protocol/game/ClientboundAddEntityPacket;)V net/minecraft/world/entity/projectile/LlamaSpit/recreateFromPacket (Lnet/minecraft/network/protocol/game/ClientboundAddEntityPacket;)V +MD: net/minecraft/world/entity/projectile/LlamaSpit/m_5790_ (Lnet/minecraft/world/phys/EntityHitResult;)V net/minecraft/world/entity/projectile/LlamaSpit/onHitEntity (Lnet/minecraft/world/phys/EntityHitResult;)V +MD: net/minecraft/world/entity/projectile/LlamaSpit/m_8060_ (Lnet/minecraft/world/phys/BlockHitResult;)V net/minecraft/world/entity/projectile/LlamaSpit/onHitBlock (Lnet/minecraft/world/phys/BlockHitResult;)V +MD: net/minecraft/world/entity/projectile/LlamaSpit/m_8097_ ()V net/minecraft/world/entity/projectile/LlamaSpit/defineSynchedData ()V +MD: net/minecraft/world/entity/projectile/LlamaSpit/m_8119_ ()V net/minecraft/world/entity/projectile/LlamaSpit/tick ()V +MD: net/minecraft/world/entity/projectile/Projectile/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V net/minecraft/world/entity/projectile/Projectile/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V +MD: net/minecraft/world/entity/projectile/Projectile/m_141965_ (Lnet/minecraft/network/protocol/game/ClientboundAddEntityPacket;)V net/minecraft/world/entity/projectile/Projectile/recreateFromPacket (Lnet/minecraft/network/protocol/game/ClientboundAddEntityPacket;)V +MD: net/minecraft/world/entity/projectile/Projectile/m_142265_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/entity/projectile/Projectile/mayInteract (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/entity/projectile/Projectile/m_150171_ (Lnet/minecraft/world/entity/Entity;)Z net/minecraft/world/entity/projectile/Projectile/ownedBy (Lnet/minecraft/world/entity/Entity;)Z +MD: net/minecraft/world/entity/projectile/Projectile/m_150173_ ()Lnet/minecraft/world/entity/Entity; net/minecraft/world/entity/projectile/Projectile/getEffectSource ()Lnet/minecraft/world/entity/Entity; +MD: net/minecraft/world/entity/projectile/Projectile/m_19749_ ()Lnet/minecraft/world/entity/Entity; net/minecraft/world/entity/projectile/Projectile/getOwner ()Lnet/minecraft/world/entity/Entity; +MD: net/minecraft/world/entity/projectile/Projectile/m_37251_ (Lnet/minecraft/world/entity/Entity;FFFFF)V net/minecraft/world/entity/projectile/Projectile/shootFromRotation (Lnet/minecraft/world/entity/Entity;FFFFF)V +MD: net/minecraft/world/entity/projectile/Projectile/m_37271_ (Lnet/minecraft/world/entity/Entity;)Z net/minecraft/world/entity/projectile/Projectile/lambda$checkLeftOwner$0 (Lnet/minecraft/world/entity/Entity;)Z +MD: net/minecraft/world/entity/projectile/Projectile/m_37273_ (FF)F net/minecraft/world/entity/projectile/Projectile/lerpRotation (FF)F +MD: net/minecraft/world/entity/projectile/Projectile/m_37276_ ()Z net/minecraft/world/entity/projectile/Projectile/checkLeftOwner ()Z +MD: net/minecraft/world/entity/projectile/Projectile/m_37283_ ()V net/minecraft/world/entity/projectile/Projectile/updateRotation ()V +MD: net/minecraft/world/entity/projectile/Projectile/m_5602_ (Lnet/minecraft/world/entity/Entity;)V net/minecraft/world/entity/projectile/Projectile/setOwner (Lnet/minecraft/world/entity/Entity;)V +MD: net/minecraft/world/entity/projectile/Projectile/m_5603_ (Lnet/minecraft/world/entity/Entity;)Z net/minecraft/world/entity/projectile/Projectile/canHitEntity (Lnet/minecraft/world/entity/Entity;)Z +MD: net/minecraft/world/entity/projectile/Projectile/m_5654_ ()Lnet/minecraft/network/protocol/Packet; net/minecraft/world/entity/projectile/Projectile/getAddEntityPacket ()Lnet/minecraft/network/protocol/Packet; +MD: net/minecraft/world/entity/projectile/Projectile/m_5790_ (Lnet/minecraft/world/phys/EntityHitResult;)V net/minecraft/world/entity/projectile/Projectile/onHitEntity (Lnet/minecraft/world/phys/EntityHitResult;)V +MD: net/minecraft/world/entity/projectile/Projectile/m_6001_ (DDD)V net/minecraft/world/entity/projectile/Projectile/lerpMotion (DDD)V +MD: net/minecraft/world/entity/projectile/Projectile/m_6532_ (Lnet/minecraft/world/phys/HitResult;)V net/minecraft/world/entity/projectile/Projectile/onHit (Lnet/minecraft/world/phys/HitResult;)V +MD: net/minecraft/world/entity/projectile/Projectile/m_6686_ (DDDFF)V net/minecraft/world/entity/projectile/Projectile/shoot (DDDFF)V +MD: net/minecraft/world/entity/projectile/Projectile/m_7378_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/entity/projectile/Projectile/readAdditionalSaveData (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/entity/projectile/Projectile/m_7380_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/entity/projectile/Projectile/addAdditionalSaveData (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/entity/projectile/Projectile/m_8060_ (Lnet/minecraft/world/phys/BlockHitResult;)V net/minecraft/world/entity/projectile/Projectile/onHitBlock (Lnet/minecraft/world/phys/BlockHitResult;)V +MD: net/minecraft/world/entity/projectile/Projectile/m_8119_ ()V net/minecraft/world/entity/projectile/Projectile/tick ()V +MD: net/minecraft/world/entity/projectile/ProjectileUtil/ ()V net/minecraft/world/entity/projectile/ProjectileUtil/ ()V +MD: net/minecraft/world/entity/projectile/ProjectileUtil/m_150175_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/entity/Entity;Lnet/minecraft/world/phys/Vec3;Lnet/minecraft/world/phys/Vec3;Lnet/minecraft/world/phys/AABB;Ljava/util/function/Predicate;F)Lnet/minecraft/world/phys/EntityHitResult; net/minecraft/world/entity/projectile/ProjectileUtil/getEntityHitResult (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/entity/Entity;Lnet/minecraft/world/phys/Vec3;Lnet/minecraft/world/phys/Vec3;Lnet/minecraft/world/phys/AABB;Ljava/util/function/Predicate;F)Lnet/minecraft/world/phys/EntityHitResult; +MD: net/minecraft/world/entity/projectile/ProjectileUtil/m_278158_ (Lnet/minecraft/world/entity/Entity;Ljava/util/function/Predicate;)Lnet/minecraft/world/phys/HitResult; net/minecraft/world/entity/projectile/ProjectileUtil/getHitResultOnMoveVector (Lnet/minecraft/world/entity/Entity;Ljava/util/function/Predicate;)Lnet/minecraft/world/phys/HitResult; +MD: net/minecraft/world/entity/projectile/ProjectileUtil/m_278167_ (Lnet/minecraft/world/phys/Vec3;Lnet/minecraft/world/entity/Entity;Ljava/util/function/Predicate;Lnet/minecraft/world/phys/Vec3;Lnet/minecraft/world/level/Level;)Lnet/minecraft/world/phys/HitResult; net/minecraft/world/entity/projectile/ProjectileUtil/getHitResult (Lnet/minecraft/world/phys/Vec3;Lnet/minecraft/world/entity/Entity;Ljava/util/function/Predicate;Lnet/minecraft/world/phys/Vec3;Lnet/minecraft/world/level/Level;)Lnet/minecraft/world/phys/HitResult; +MD: net/minecraft/world/entity/projectile/ProjectileUtil/m_278180_ (Lnet/minecraft/world/entity/Entity;Ljava/util/function/Predicate;D)Lnet/minecraft/world/phys/HitResult; net/minecraft/world/entity/projectile/ProjectileUtil/getHitResultOnViewVector (Lnet/minecraft/world/entity/Entity;Ljava/util/function/Predicate;D)Lnet/minecraft/world/phys/HitResult; +MD: net/minecraft/world/entity/projectile/ProjectileUtil/m_37284_ (Lnet/minecraft/world/entity/Entity;F)V net/minecraft/world/entity/projectile/ProjectileUtil/rotateTowardsMovement (Lnet/minecraft/world/entity/Entity;F)V +MD: net/minecraft/world/entity/projectile/ProjectileUtil/m_37287_ (Lnet/minecraft/world/entity/Entity;Lnet/minecraft/world/phys/Vec3;Lnet/minecraft/world/phys/Vec3;Lnet/minecraft/world/phys/AABB;Ljava/util/function/Predicate;D)Lnet/minecraft/world/phys/EntityHitResult; net/minecraft/world/entity/projectile/ProjectileUtil/getEntityHitResult (Lnet/minecraft/world/entity/Entity;Lnet/minecraft/world/phys/Vec3;Lnet/minecraft/world/phys/Vec3;Lnet/minecraft/world/phys/AABB;Ljava/util/function/Predicate;D)Lnet/minecraft/world/phys/EntityHitResult; +MD: net/minecraft/world/entity/projectile/ProjectileUtil/m_37297_ (Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/item/Item;)Lnet/minecraft/world/InteractionHand; net/minecraft/world/entity/projectile/ProjectileUtil/getWeaponHoldingHand (Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/item/Item;)Lnet/minecraft/world/InteractionHand; +MD: net/minecraft/world/entity/projectile/ProjectileUtil/m_37300_ (Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/item/ItemStack;F)Lnet/minecraft/world/entity/projectile/AbstractArrow; net/minecraft/world/entity/projectile/ProjectileUtil/getMobArrow (Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/item/ItemStack;F)Lnet/minecraft/world/entity/projectile/AbstractArrow; +MD: net/minecraft/world/entity/projectile/ProjectileUtil/m_37304_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/entity/Entity;Lnet/minecraft/world/phys/Vec3;Lnet/minecraft/world/phys/Vec3;Lnet/minecraft/world/phys/AABB;Ljava/util/function/Predicate;)Lnet/minecraft/world/phys/EntityHitResult; net/minecraft/world/entity/projectile/ProjectileUtil/getEntityHitResult (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/entity/Entity;Lnet/minecraft/world/phys/Vec3;Lnet/minecraft/world/phys/Vec3;Lnet/minecraft/world/phys/AABB;Ljava/util/function/Predicate;)Lnet/minecraft/world/phys/EntityHitResult; +MD: net/minecraft/world/entity/projectile/ShulkerBullet/ (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/entity/Entity;Lnet/minecraft/core/Direction$Axis;)V net/minecraft/world/entity/projectile/ShulkerBullet/ (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/entity/Entity;Lnet/minecraft/core/Direction$Axis;)V +MD: net/minecraft/world/entity/projectile/ShulkerBullet/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V net/minecraft/world/entity/projectile/ShulkerBullet/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V +MD: net/minecraft/world/entity/projectile/ShulkerBullet/m_141965_ (Lnet/minecraft/network/protocol/game/ClientboundAddEntityPacket;)V net/minecraft/world/entity/projectile/ShulkerBullet/recreateFromPacket (Lnet/minecraft/network/protocol/game/ClientboundAddEntityPacket;)V +MD: net/minecraft/world/entity/projectile/ShulkerBullet/m_150186_ ()Lnet/minecraft/core/Direction; net/minecraft/world/entity/projectile/ShulkerBullet/getMoveDirection ()Lnet/minecraft/core/Direction; +MD: net/minecraft/world/entity/projectile/ShulkerBullet/m_213856_ ()F net/minecraft/world/entity/projectile/ShulkerBullet/getLightLevelDependentMagicValue ()F +MD: net/minecraft/world/entity/projectile/ShulkerBullet/m_276200_ ()V net/minecraft/world/entity/projectile/ShulkerBullet/destroy ()V +MD: net/minecraft/world/entity/projectile/ShulkerBullet/m_37348_ (Lnet/minecraft/core/Direction$Axis;)V net/minecraft/world/entity/projectile/ShulkerBullet/selectNextMoveDirection (Lnet/minecraft/core/Direction$Axis;)V +MD: net/minecraft/world/entity/projectile/ShulkerBullet/m_37350_ (Lnet/minecraft/core/Direction;)V net/minecraft/world/entity/projectile/ShulkerBullet/setMoveDirection (Lnet/minecraft/core/Direction;)V +MD: net/minecraft/world/entity/projectile/ShulkerBullet/m_5603_ (Lnet/minecraft/world/entity/Entity;)Z net/minecraft/world/entity/projectile/ShulkerBullet/canHitEntity (Lnet/minecraft/world/entity/Entity;)Z +MD: net/minecraft/world/entity/projectile/ShulkerBullet/m_5720_ ()Lnet/minecraft/sounds/SoundSource; net/minecraft/world/entity/projectile/ShulkerBullet/getSoundSource ()Lnet/minecraft/sounds/SoundSource; +MD: net/minecraft/world/entity/projectile/ShulkerBullet/m_5790_ (Lnet/minecraft/world/phys/EntityHitResult;)V net/minecraft/world/entity/projectile/ShulkerBullet/onHitEntity (Lnet/minecraft/world/phys/EntityHitResult;)V +MD: net/minecraft/world/entity/projectile/ShulkerBullet/m_6043_ ()V net/minecraft/world/entity/projectile/ShulkerBullet/checkDespawn ()V +MD: net/minecraft/world/entity/projectile/ShulkerBullet/m_6060_ ()Z net/minecraft/world/entity/projectile/ShulkerBullet/isOnFire ()Z +MD: net/minecraft/world/entity/projectile/ShulkerBullet/m_6087_ ()Z net/minecraft/world/entity/projectile/ShulkerBullet/isPickable ()Z +MD: net/minecraft/world/entity/projectile/ShulkerBullet/m_6469_ (Lnet/minecraft/world/damagesource/DamageSource;F)Z net/minecraft/world/entity/projectile/ShulkerBullet/hurt (Lnet/minecraft/world/damagesource/DamageSource;F)Z +MD: net/minecraft/world/entity/projectile/ShulkerBullet/m_6532_ (Lnet/minecraft/world/phys/HitResult;)V net/minecraft/world/entity/projectile/ShulkerBullet/onHit (Lnet/minecraft/world/phys/HitResult;)V +MD: net/minecraft/world/entity/projectile/ShulkerBullet/m_6783_ (D)Z net/minecraft/world/entity/projectile/ShulkerBullet/shouldRenderAtSqrDistance (D)Z +MD: net/minecraft/world/entity/projectile/ShulkerBullet/m_7378_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/entity/projectile/ShulkerBullet/readAdditionalSaveData (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/entity/projectile/ShulkerBullet/m_7380_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/entity/projectile/ShulkerBullet/addAdditionalSaveData (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/entity/projectile/ShulkerBullet/m_8060_ (Lnet/minecraft/world/phys/BlockHitResult;)V net/minecraft/world/entity/projectile/ShulkerBullet/onHitBlock (Lnet/minecraft/world/phys/BlockHitResult;)V +MD: net/minecraft/world/entity/projectile/ShulkerBullet/m_8097_ ()V net/minecraft/world/entity/projectile/ShulkerBullet/defineSynchedData ()V +MD: net/minecraft/world/entity/projectile/ShulkerBullet/m_8119_ ()V net/minecraft/world/entity/projectile/ShulkerBullet/tick ()V +MD: net/minecraft/world/entity/projectile/SmallFireball/ (Lnet/minecraft/world/level/Level;DDDDDD)V net/minecraft/world/entity/projectile/SmallFireball/ (Lnet/minecraft/world/level/Level;DDDDDD)V +MD: net/minecraft/world/entity/projectile/SmallFireball/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V net/minecraft/world/entity/projectile/SmallFireball/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V +MD: net/minecraft/world/entity/projectile/SmallFireball/ (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/entity/LivingEntity;DDD)V net/minecraft/world/entity/projectile/SmallFireball/ (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/entity/LivingEntity;DDD)V +MD: net/minecraft/world/entity/projectile/SmallFireball/m_5790_ (Lnet/minecraft/world/phys/EntityHitResult;)V net/minecraft/world/entity/projectile/SmallFireball/onHitEntity (Lnet/minecraft/world/phys/EntityHitResult;)V +MD: net/minecraft/world/entity/projectile/SmallFireball/m_6087_ ()Z net/minecraft/world/entity/projectile/SmallFireball/isPickable ()Z +MD: net/minecraft/world/entity/projectile/SmallFireball/m_6469_ (Lnet/minecraft/world/damagesource/DamageSource;F)Z net/minecraft/world/entity/projectile/SmallFireball/hurt (Lnet/minecraft/world/damagesource/DamageSource;F)Z +MD: net/minecraft/world/entity/projectile/SmallFireball/m_6532_ (Lnet/minecraft/world/phys/HitResult;)V net/minecraft/world/entity/projectile/SmallFireball/onHit (Lnet/minecraft/world/phys/HitResult;)V +MD: net/minecraft/world/entity/projectile/SmallFireball/m_8060_ (Lnet/minecraft/world/phys/BlockHitResult;)V net/minecraft/world/entity/projectile/SmallFireball/onHitBlock (Lnet/minecraft/world/phys/BlockHitResult;)V +MD: net/minecraft/world/entity/projectile/Snowball/ (Lnet/minecraft/world/level/Level;DDD)V net/minecraft/world/entity/projectile/Snowball/ (Lnet/minecraft/world/level/Level;DDD)V +MD: net/minecraft/world/entity/projectile/Snowball/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V net/minecraft/world/entity/projectile/Snowball/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V +MD: net/minecraft/world/entity/projectile/Snowball/ (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/entity/LivingEntity;)V net/minecraft/world/entity/projectile/Snowball/ (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/entity/LivingEntity;)V +MD: net/minecraft/world/entity/projectile/Snowball/m_37408_ ()Lnet/minecraft/core/particles/ParticleOptions; net/minecraft/world/entity/projectile/Snowball/getParticle ()Lnet/minecraft/core/particles/ParticleOptions; +MD: net/minecraft/world/entity/projectile/Snowball/m_5790_ (Lnet/minecraft/world/phys/EntityHitResult;)V net/minecraft/world/entity/projectile/Snowball/onHitEntity (Lnet/minecraft/world/phys/EntityHitResult;)V +MD: net/minecraft/world/entity/projectile/Snowball/m_6532_ (Lnet/minecraft/world/phys/HitResult;)V net/minecraft/world/entity/projectile/Snowball/onHit (Lnet/minecraft/world/phys/HitResult;)V +MD: net/minecraft/world/entity/projectile/Snowball/m_7822_ (B)V net/minecraft/world/entity/projectile/Snowball/handleEntityEvent (B)V +MD: net/minecraft/world/entity/projectile/Snowball/m_7881_ ()Lnet/minecraft/world/item/Item; net/minecraft/world/entity/projectile/Snowball/getDefaultItem ()Lnet/minecraft/world/item/Item; +MD: net/minecraft/world/entity/projectile/SpectralArrow/ (Lnet/minecraft/world/level/Level;DDD)V net/minecraft/world/entity/projectile/SpectralArrow/ (Lnet/minecraft/world/level/Level;DDD)V +MD: net/minecraft/world/entity/projectile/SpectralArrow/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V net/minecraft/world/entity/projectile/SpectralArrow/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V +MD: net/minecraft/world/entity/projectile/SpectralArrow/ (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/entity/LivingEntity;)V net/minecraft/world/entity/projectile/SpectralArrow/ (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/entity/LivingEntity;)V +MD: net/minecraft/world/entity/projectile/SpectralArrow/m_7378_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/entity/projectile/SpectralArrow/readAdditionalSaveData (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/entity/projectile/SpectralArrow/m_7380_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/entity/projectile/SpectralArrow/addAdditionalSaveData (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/entity/projectile/SpectralArrow/m_7761_ (Lnet/minecraft/world/entity/LivingEntity;)V net/minecraft/world/entity/projectile/SpectralArrow/doPostHurtEffects (Lnet/minecraft/world/entity/LivingEntity;)V +MD: net/minecraft/world/entity/projectile/SpectralArrow/m_7941_ ()Lnet/minecraft/world/item/ItemStack; net/minecraft/world/entity/projectile/SpectralArrow/getPickupItem ()Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/entity/projectile/SpectralArrow/m_8119_ ()V net/minecraft/world/entity/projectile/SpectralArrow/tick ()V +MD: net/minecraft/world/entity/projectile/ThrowableItemProjectile/ ()V net/minecraft/world/entity/projectile/ThrowableItemProjectile/ ()V +MD: net/minecraft/world/entity/projectile/ThrowableItemProjectile/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V net/minecraft/world/entity/projectile/ThrowableItemProjectile/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V +MD: net/minecraft/world/entity/projectile/ThrowableItemProjectile/ (Lnet/minecraft/world/entity/EntityType;DDDLnet/minecraft/world/level/Level;)V net/minecraft/world/entity/projectile/ThrowableItemProjectile/ (Lnet/minecraft/world/entity/EntityType;DDDLnet/minecraft/world/level/Level;)V +MD: net/minecraft/world/entity/projectile/ThrowableItemProjectile/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/level/Level;)V net/minecraft/world/entity/projectile/ThrowableItemProjectile/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/level/Level;)V +MD: net/minecraft/world/entity/projectile/ThrowableItemProjectile/m_37446_ (Lnet/minecraft/world/item/ItemStack;)V net/minecraft/world/entity/projectile/ThrowableItemProjectile/setItem (Lnet/minecraft/world/item/ItemStack;)V +MD: net/minecraft/world/entity/projectile/ThrowableItemProjectile/m_37454_ ()Lnet/minecraft/world/item/ItemStack; net/minecraft/world/entity/projectile/ThrowableItemProjectile/getItemRaw ()Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/entity/projectile/ThrowableItemProjectile/m_7378_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/entity/projectile/ThrowableItemProjectile/readAdditionalSaveData (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/entity/projectile/ThrowableItemProjectile/m_7380_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/entity/projectile/ThrowableItemProjectile/addAdditionalSaveData (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/entity/projectile/ThrowableItemProjectile/m_7846_ ()Lnet/minecraft/world/item/ItemStack; net/minecraft/world/entity/projectile/ThrowableItemProjectile/getItem ()Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/entity/projectile/ThrowableItemProjectile/m_7881_ ()Lnet/minecraft/world/item/Item; net/minecraft/world/entity/projectile/ThrowableItemProjectile/getDefaultItem ()Lnet/minecraft/world/item/Item; +MD: net/minecraft/world/entity/projectile/ThrowableItemProjectile/m_8097_ ()V net/minecraft/world/entity/projectile/ThrowableItemProjectile/defineSynchedData ()V +MD: net/minecraft/world/entity/projectile/ThrowableProjectile/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V net/minecraft/world/entity/projectile/ThrowableProjectile/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V +MD: net/minecraft/world/entity/projectile/ThrowableProjectile/ (Lnet/minecraft/world/entity/EntityType;DDDLnet/minecraft/world/level/Level;)V net/minecraft/world/entity/projectile/ThrowableProjectile/ (Lnet/minecraft/world/entity/EntityType;DDDLnet/minecraft/world/level/Level;)V +MD: net/minecraft/world/entity/projectile/ThrowableProjectile/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/level/Level;)V net/minecraft/world/entity/projectile/ThrowableProjectile/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/level/Level;)V +MD: net/minecraft/world/entity/projectile/ThrowableProjectile/m_6783_ (D)Z net/minecraft/world/entity/projectile/ThrowableProjectile/shouldRenderAtSqrDistance (D)Z +MD: net/minecraft/world/entity/projectile/ThrowableProjectile/m_7139_ ()F net/minecraft/world/entity/projectile/ThrowableProjectile/getGravity ()F +MD: net/minecraft/world/entity/projectile/ThrowableProjectile/m_8119_ ()V net/minecraft/world/entity/projectile/ThrowableProjectile/tick ()V +MD: net/minecraft/world/entity/projectile/ThrownEgg/ (Lnet/minecraft/world/level/Level;DDD)V net/minecraft/world/entity/projectile/ThrownEgg/ (Lnet/minecraft/world/level/Level;DDD)V +MD: net/minecraft/world/entity/projectile/ThrownEgg/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V net/minecraft/world/entity/projectile/ThrownEgg/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V +MD: net/minecraft/world/entity/projectile/ThrownEgg/ (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/entity/LivingEntity;)V net/minecraft/world/entity/projectile/ThrownEgg/ (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/entity/LivingEntity;)V +MD: net/minecraft/world/entity/projectile/ThrownEgg/m_5790_ (Lnet/minecraft/world/phys/EntityHitResult;)V net/minecraft/world/entity/projectile/ThrownEgg/onHitEntity (Lnet/minecraft/world/phys/EntityHitResult;)V +MD: net/minecraft/world/entity/projectile/ThrownEgg/m_6532_ (Lnet/minecraft/world/phys/HitResult;)V net/minecraft/world/entity/projectile/ThrownEgg/onHit (Lnet/minecraft/world/phys/HitResult;)V +MD: net/minecraft/world/entity/projectile/ThrownEgg/m_7822_ (B)V net/minecraft/world/entity/projectile/ThrownEgg/handleEntityEvent (B)V +MD: net/minecraft/world/entity/projectile/ThrownEgg/m_7881_ ()Lnet/minecraft/world/item/Item; net/minecraft/world/entity/projectile/ThrownEgg/getDefaultItem ()Lnet/minecraft/world/item/Item; +MD: net/minecraft/world/entity/projectile/ThrownEnderpearl/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V net/minecraft/world/entity/projectile/ThrownEnderpearl/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V +MD: net/minecraft/world/entity/projectile/ThrownEnderpearl/ (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/entity/LivingEntity;)V net/minecraft/world/entity/projectile/ThrownEnderpearl/ (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/entity/LivingEntity;)V +MD: net/minecraft/world/entity/projectile/ThrownEnderpearl/m_5489_ (Lnet/minecraft/server/level/ServerLevel;)Lnet/minecraft/world/entity/Entity; net/minecraft/world/entity/projectile/ThrownEnderpearl/changeDimension (Lnet/minecraft/server/level/ServerLevel;)Lnet/minecraft/world/entity/Entity; +MD: net/minecraft/world/entity/projectile/ThrownEnderpearl/m_5790_ (Lnet/minecraft/world/phys/EntityHitResult;)V net/minecraft/world/entity/projectile/ThrownEnderpearl/onHitEntity (Lnet/minecraft/world/phys/EntityHitResult;)V +MD: net/minecraft/world/entity/projectile/ThrownEnderpearl/m_6532_ (Lnet/minecraft/world/phys/HitResult;)V net/minecraft/world/entity/projectile/ThrownEnderpearl/onHit (Lnet/minecraft/world/phys/HitResult;)V +MD: net/minecraft/world/entity/projectile/ThrownEnderpearl/m_7881_ ()Lnet/minecraft/world/item/Item; net/minecraft/world/entity/projectile/ThrownEnderpearl/getDefaultItem ()Lnet/minecraft/world/item/Item; +MD: net/minecraft/world/entity/projectile/ThrownEnderpearl/m_8119_ ()V net/minecraft/world/entity/projectile/ThrownEnderpearl/tick ()V +MD: net/minecraft/world/entity/projectile/ThrownExperienceBottle/ (Lnet/minecraft/world/level/Level;DDD)V net/minecraft/world/entity/projectile/ThrownExperienceBottle/ (Lnet/minecraft/world/level/Level;DDD)V +MD: net/minecraft/world/entity/projectile/ThrownExperienceBottle/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V net/minecraft/world/entity/projectile/ThrownExperienceBottle/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V +MD: net/minecraft/world/entity/projectile/ThrownExperienceBottle/ (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/entity/LivingEntity;)V net/minecraft/world/entity/projectile/ThrownExperienceBottle/ (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/entity/LivingEntity;)V +MD: net/minecraft/world/entity/projectile/ThrownExperienceBottle/m_6532_ (Lnet/minecraft/world/phys/HitResult;)V net/minecraft/world/entity/projectile/ThrownExperienceBottle/onHit (Lnet/minecraft/world/phys/HitResult;)V +MD: net/minecraft/world/entity/projectile/ThrownExperienceBottle/m_7139_ ()F net/minecraft/world/entity/projectile/ThrownExperienceBottle/getGravity ()F +MD: net/minecraft/world/entity/projectile/ThrownExperienceBottle/m_7881_ ()Lnet/minecraft/world/item/Item; net/minecraft/world/entity/projectile/ThrownExperienceBottle/getDefaultItem ()Lnet/minecraft/world/item/Item; +MD: net/minecraft/world/entity/projectile/ThrownPotion/ ()V net/minecraft/world/entity/projectile/ThrownPotion/ ()V +MD: net/minecraft/world/entity/projectile/ThrownPotion/ (Lnet/minecraft/world/level/Level;DDD)V net/minecraft/world/entity/projectile/ThrownPotion/ (Lnet/minecraft/world/level/Level;DDD)V +MD: net/minecraft/world/entity/projectile/ThrownPotion/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V net/minecraft/world/entity/projectile/ThrownPotion/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V +MD: net/minecraft/world/entity/projectile/ThrownPotion/ (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/entity/LivingEntity;)V net/minecraft/world/entity/projectile/ThrownPotion/ (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/entity/LivingEntity;)V +MD: net/minecraft/world/entity/projectile/ThrownPotion/m_150192_ (Lnet/minecraft/core/BlockPos;)V net/minecraft/world/entity/projectile/ThrownPotion/dowseFire (Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/world/entity/projectile/ThrownPotion/m_267560_ (DI)I net/minecraft/world/entity/projectile/ThrownPotion/lambda$applySplash$1 (DI)I +MD: net/minecraft/world/entity/projectile/ThrownPotion/m_287114_ (Lnet/minecraft/world/entity/LivingEntity;)Z net/minecraft/world/entity/projectile/ThrownPotion/lambda$static$0 (Lnet/minecraft/world/entity/LivingEntity;)Z +MD: net/minecraft/world/entity/projectile/ThrownPotion/m_37537_ (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/item/alchemy/Potion;)V net/minecraft/world/entity/projectile/ThrownPotion/makeAreaOfEffectCloud (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/item/alchemy/Potion;)V +MD: net/minecraft/world/entity/projectile/ThrownPotion/m_37547_ (Ljava/util/List;Lnet/minecraft/world/entity/Entity;)V net/minecraft/world/entity/projectile/ThrownPotion/applySplash (Ljava/util/List;Lnet/minecraft/world/entity/Entity;)V +MD: net/minecraft/world/entity/projectile/ThrownPotion/m_37552_ ()V net/minecraft/world/entity/projectile/ThrownPotion/applyWater ()V +MD: net/minecraft/world/entity/projectile/ThrownPotion/m_37553_ ()Z net/minecraft/world/entity/projectile/ThrownPotion/isLingering ()Z +MD: net/minecraft/world/entity/projectile/ThrownPotion/m_6532_ (Lnet/minecraft/world/phys/HitResult;)V net/minecraft/world/entity/projectile/ThrownPotion/onHit (Lnet/minecraft/world/phys/HitResult;)V +MD: net/minecraft/world/entity/projectile/ThrownPotion/m_7139_ ()F net/minecraft/world/entity/projectile/ThrownPotion/getGravity ()F +MD: net/minecraft/world/entity/projectile/ThrownPotion/m_7881_ ()Lnet/minecraft/world/item/Item; net/minecraft/world/entity/projectile/ThrownPotion/getDefaultItem ()Lnet/minecraft/world/item/Item; +MD: net/minecraft/world/entity/projectile/ThrownPotion/m_8060_ (Lnet/minecraft/world/phys/BlockHitResult;)V net/minecraft/world/entity/projectile/ThrownPotion/onHitBlock (Lnet/minecraft/world/phys/BlockHitResult;)V +MD: net/minecraft/world/entity/projectile/ThrownTrident/ ()V net/minecraft/world/entity/projectile/ThrownTrident/ ()V +MD: net/minecraft/world/entity/projectile/ThrownTrident/ (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/item/ItemStack;)V net/minecraft/world/entity/projectile/ThrownTrident/ (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/item/ItemStack;)V +MD: net/minecraft/world/entity/projectile/ThrownTrident/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V net/minecraft/world/entity/projectile/ThrownTrident/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V +MD: net/minecraft/world/entity/projectile/ThrownTrident/m_142470_ (Lnet/minecraft/world/entity/player/Player;)Z net/minecraft/world/entity/projectile/ThrownTrident/tryPickup (Lnet/minecraft/world/entity/player/Player;)Z +MD: net/minecraft/world/entity/projectile/ThrownTrident/m_150194_ ()Z net/minecraft/world/entity/projectile/ThrownTrident/isChanneling ()Z +MD: net/minecraft/world/entity/projectile/ThrownTrident/m_37593_ ()Z net/minecraft/world/entity/projectile/ThrownTrident/isFoil ()Z +MD: net/minecraft/world/entity/projectile/ThrownTrident/m_37594_ ()Z net/minecraft/world/entity/projectile/ThrownTrident/isAcceptibleReturnOwner ()Z +MD: net/minecraft/world/entity/projectile/ThrownTrident/m_5790_ (Lnet/minecraft/world/phys/EntityHitResult;)V net/minecraft/world/entity/projectile/ThrownTrident/onHitEntity (Lnet/minecraft/world/phys/EntityHitResult;)V +MD: net/minecraft/world/entity/projectile/ThrownTrident/m_6000_ (DDD)Z net/minecraft/world/entity/projectile/ThrownTrident/shouldRender (DDD)Z +MD: net/minecraft/world/entity/projectile/ThrownTrident/m_6123_ (Lnet/minecraft/world/entity/player/Player;)V net/minecraft/world/entity/projectile/ThrownTrident/playerTouch (Lnet/minecraft/world/entity/player/Player;)V +MD: net/minecraft/world/entity/projectile/ThrownTrident/m_6351_ (Lnet/minecraft/world/phys/Vec3;Lnet/minecraft/world/phys/Vec3;)Lnet/minecraft/world/phys/EntityHitResult; net/minecraft/world/entity/projectile/ThrownTrident/findHitEntity (Lnet/minecraft/world/phys/Vec3;Lnet/minecraft/world/phys/Vec3;)Lnet/minecraft/world/phys/EntityHitResult; +MD: net/minecraft/world/entity/projectile/ThrownTrident/m_6882_ ()F net/minecraft/world/entity/projectile/ThrownTrident/getWaterInertia ()F +MD: net/minecraft/world/entity/projectile/ThrownTrident/m_6901_ ()V net/minecraft/world/entity/projectile/ThrownTrident/tickDespawn ()V +MD: net/minecraft/world/entity/projectile/ThrownTrident/m_7239_ ()Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/projectile/ThrownTrident/getDefaultHitGroundSoundEvent ()Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/projectile/ThrownTrident/m_7378_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/entity/projectile/ThrownTrident/readAdditionalSaveData (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/entity/projectile/ThrownTrident/m_7380_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/entity/projectile/ThrownTrident/addAdditionalSaveData (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/entity/projectile/ThrownTrident/m_7941_ ()Lnet/minecraft/world/item/ItemStack; net/minecraft/world/entity/projectile/ThrownTrident/getPickupItem ()Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/entity/projectile/ThrownTrident/m_8097_ ()V net/minecraft/world/entity/projectile/ThrownTrident/defineSynchedData ()V +MD: net/minecraft/world/entity/projectile/ThrownTrident/m_8119_ ()V net/minecraft/world/entity/projectile/ThrownTrident/tick ()V +MD: net/minecraft/world/entity/projectile/WitherSkull/ ()V net/minecraft/world/entity/projectile/WitherSkull/ ()V +MD: net/minecraft/world/entity/projectile/WitherSkull/ (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/entity/LivingEntity;DDD)V net/minecraft/world/entity/projectile/WitherSkull/ (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/entity/LivingEntity;DDD)V +MD: net/minecraft/world/entity/projectile/WitherSkull/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V net/minecraft/world/entity/projectile/WitherSkull/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V +MD: net/minecraft/world/entity/projectile/WitherSkull/m_37629_ (Z)V net/minecraft/world/entity/projectile/WitherSkull/setDangerous (Z)V +MD: net/minecraft/world/entity/projectile/WitherSkull/m_37635_ ()Z net/minecraft/world/entity/projectile/WitherSkull/isDangerous ()Z +MD: net/minecraft/world/entity/projectile/WitherSkull/m_5790_ (Lnet/minecraft/world/phys/EntityHitResult;)V net/minecraft/world/entity/projectile/WitherSkull/onHitEntity (Lnet/minecraft/world/phys/EntityHitResult;)V +MD: net/minecraft/world/entity/projectile/WitherSkull/m_5931_ ()Z net/minecraft/world/entity/projectile/WitherSkull/shouldBurn ()Z +MD: net/minecraft/world/entity/projectile/WitherSkull/m_6060_ ()Z net/minecraft/world/entity/projectile/WitherSkull/isOnFire ()Z +MD: net/minecraft/world/entity/projectile/WitherSkull/m_6087_ ()Z net/minecraft/world/entity/projectile/WitherSkull/isPickable ()Z +MD: net/minecraft/world/entity/projectile/WitherSkull/m_6469_ (Lnet/minecraft/world/damagesource/DamageSource;F)Z net/minecraft/world/entity/projectile/WitherSkull/hurt (Lnet/minecraft/world/damagesource/DamageSource;F)Z +MD: net/minecraft/world/entity/projectile/WitherSkull/m_6532_ (Lnet/minecraft/world/phys/HitResult;)V net/minecraft/world/entity/projectile/WitherSkull/onHit (Lnet/minecraft/world/phys/HitResult;)V +MD: net/minecraft/world/entity/projectile/WitherSkull/m_6884_ ()F net/minecraft/world/entity/projectile/WitherSkull/getInertia ()F +MD: net/minecraft/world/entity/projectile/WitherSkull/m_7077_ (Lnet/minecraft/world/level/Explosion;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/material/FluidState;F)F net/minecraft/world/entity/projectile/WitherSkull/getBlockExplosionResistance (Lnet/minecraft/world/level/Explosion;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/material/FluidState;F)F +MD: net/minecraft/world/entity/projectile/WitherSkull/m_8097_ ()V net/minecraft/world/entity/projectile/WitherSkull/defineSynchedData ()V +MD: net/minecraft/world/entity/raid/Raid/ ()V net/minecraft/world/entity/raid/Raid/ ()V +MD: net/minecraft/world/entity/raid/Raid/ (ILnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;)V net/minecraft/world/entity/raid/Raid/ (ILnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/world/entity/raid/Raid/ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/entity/raid/Raid/ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/entity/raid/Raid/m_150218_ (I)V net/minecraft/world/entity/raid/Raid/setBadOmenLevel (I)V +MD: net/minecraft/world/entity/raid/Raid/m_150220_ ()F net/minecraft/world/entity/raid/Raid/getTotalHealth ()F +MD: net/minecraft/world/entity/raid/Raid/m_150221_ ()Ljava/util/Set; net/minecraft/world/entity/raid/Raid/getAllRaiders ()Ljava/util/Set; +MD: net/minecraft/world/entity/raid/Raid/m_219828_ (Lnet/minecraft/world/entity/raid/Raid$RaiderType;Lnet/minecraft/util/RandomSource;ILnet/minecraft/world/DifficultyInstance;Z)I net/minecraft/world/entity/raid/Raid/getPotentialBonusSpawns (Lnet/minecraft/world/entity/raid/Raid$RaiderType;Lnet/minecraft/util/RandomSource;ILnet/minecraft/world/DifficultyInstance;Z)I +MD: net/minecraft/world/entity/raid/Raid/m_289167_ (Lnet/minecraft/server/level/ServerPlayer;)Z net/minecraft/world/entity/raid/Raid/lambda$validPlayer$0 (Lnet/minecraft/server/level/ServerPlayer;)Z +MD: net/minecraft/world/entity/raid/Raid/m_37698_ ()Z net/minecraft/world/entity/raid/Raid/hasMoreWaves ()Z +MD: net/minecraft/world/entity/raid/Raid/m_37699_ ()Z net/minecraft/world/entity/raid/Raid/isFinalWave ()Z +MD: net/minecraft/world/entity/raid/Raid/m_37700_ ()Z net/minecraft/world/entity/raid/Raid/hasBonusWave ()Z +MD: net/minecraft/world/entity/raid/Raid/m_37701_ ()Z net/minecraft/world/entity/raid/Raid/hasSpawnedBonusWave ()Z +MD: net/minecraft/world/entity/raid/Raid/m_37702_ ()Z net/minecraft/world/entity/raid/Raid/shouldSpawnBonusGroup ()Z +MD: net/minecraft/world/entity/raid/Raid/m_37703_ ()V net/minecraft/world/entity/raid/Raid/updateRaiders ()V +MD: net/minecraft/world/entity/raid/Raid/m_37704_ ()Z net/minecraft/world/entity/raid/Raid/shouldSpawnGroup ()Z +MD: net/minecraft/world/entity/raid/Raid/m_37705_ ()V net/minecraft/world/entity/raid/Raid/setDirty ()V +MD: net/minecraft/world/entity/raid/Raid/m_37706_ ()Z net/minecraft/world/entity/raid/Raid/isOver ()Z +MD: net/minecraft/world/entity/raid/Raid/m_37707_ (II)Lnet/minecraft/core/BlockPos; net/minecraft/world/entity/raid/Raid/findRandomSpawnPos (II)Lnet/minecraft/core/BlockPos; +MD: net/minecraft/world/entity/raid/Raid/m_37710_ (ILnet/minecraft/world/entity/raid/Raider;)V net/minecraft/world/entity/raid/Raid/setLeader (ILnet/minecraft/world/entity/raid/Raider;)V +MD: net/minecraft/world/entity/raid/Raid/m_37713_ (ILnet/minecraft/world/entity/raid/Raider;Lnet/minecraft/core/BlockPos;Z)V net/minecraft/world/entity/raid/Raid/joinRaid (ILnet/minecraft/world/entity/raid/Raider;Lnet/minecraft/core/BlockPos;Z)V +MD: net/minecraft/world/entity/raid/Raid/m_37718_ (ILnet/minecraft/world/entity/raid/Raider;Z)Z net/minecraft/world/entity/raid/Raid/addWaveMob (ILnet/minecraft/world/entity/raid/Raider;Z)Z +MD: net/minecraft/world/entity/raid/Raid/m_37724_ (Lnet/minecraft/world/Difficulty;)I net/minecraft/world/entity/raid/Raid/getNumGroups (Lnet/minecraft/world/Difficulty;)I +MD: net/minecraft/world/entity/raid/Raid/m_37726_ (Lnet/minecraft/world/entity/Entity;)V net/minecraft/world/entity/raid/Raid/addHeroOfTheVillage (Lnet/minecraft/world/entity/Entity;)V +MD: net/minecraft/world/entity/raid/Raid/m_37728_ (Lnet/minecraft/world/entity/player/Player;)V net/minecraft/world/entity/raid/Raid/absorbBadOmen (Lnet/minecraft/world/entity/player/Player;)V +MD: net/minecraft/world/entity/raid/Raid/m_37730_ (Lnet/minecraft/world/entity/raid/Raid$RaiderType;IZ)I net/minecraft/world/entity/raid/Raid/getDefaultNumSpawns (Lnet/minecraft/world/entity/raid/Raid$RaiderType;IZ)I +MD: net/minecraft/world/entity/raid/Raid/m_37740_ (Lnet/minecraft/world/entity/raid/Raider;Z)V net/minecraft/world/entity/raid/Raid/removeFromRaid (Lnet/minecraft/world/entity/raid/Raider;Z)V +MD: net/minecraft/world/entity/raid/Raid/m_37743_ (Lnet/minecraft/core/BlockPos;)V net/minecraft/world/entity/raid/Raid/playSound (Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/world/entity/raid/Raid/m_37745_ (Ljava/lang/Integer;)Ljava/util/Set; net/minecraft/world/entity/raid/Raid/lambda$addWaveMob$2 (Ljava/lang/Integer;)Ljava/util/Set; +MD: net/minecraft/world/entity/raid/Raid/m_37747_ (Lnet/minecraft/nbt/CompoundTag;)Lnet/minecraft/nbt/CompoundTag; net/minecraft/world/entity/raid/Raid/save (Lnet/minecraft/nbt/CompoundTag;)Lnet/minecraft/nbt/CompoundTag; +MD: net/minecraft/world/entity/raid/Raid/m_37749_ ()Z net/minecraft/world/entity/raid/Raid/isBetweenWaves ()Z +MD: net/minecraft/world/entity/raid/Raid/m_37750_ (I)Lnet/minecraft/world/entity/raid/Raider; net/minecraft/world/entity/raid/Raid/getLeader (I)Lnet/minecraft/world/entity/raid/Raider; +MD: net/minecraft/world/entity/raid/Raid/m_37752_ (ILnet/minecraft/world/entity/raid/Raider;)Z net/minecraft/world/entity/raid/Raid/addWaveMob (ILnet/minecraft/world/entity/raid/Raider;)Z +MD: net/minecraft/world/entity/raid/Raid/m_37755_ (Lnet/minecraft/core/BlockPos;)V net/minecraft/world/entity/raid/Raid/spawnGroup (Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/world/entity/raid/Raid/m_37757_ ()Z net/minecraft/world/entity/raid/Raid/hasFirstWaveSpawned ()Z +MD: net/minecraft/world/entity/raid/Raid/m_37758_ (I)V net/minecraft/world/entity/raid/Raid/removeLeader (I)V +MD: net/minecraft/world/entity/raid/Raid/m_37760_ (Lnet/minecraft/core/BlockPos;)V net/minecraft/world/entity/raid/Raid/setCenter (Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/world/entity/raid/Raid/m_37762_ ()Z net/minecraft/world/entity/raid/Raid/isStopped ()Z +MD: net/minecraft/world/entity/raid/Raid/m_37763_ (I)Ljava/util/Optional; net/minecraft/world/entity/raid/Raid/getValidSpawnPos (I)Ljava/util/Optional; +MD: net/minecraft/world/entity/raid/Raid/m_37765_ (Lnet/minecraft/core/BlockPos;)D net/minecraft/world/entity/raid/Raid/lambda$moveRaidCenterToNearbyVillageSection$1 (Lnet/minecraft/core/BlockPos;)D +MD: net/minecraft/world/entity/raid/Raid/m_37767_ ()Z net/minecraft/world/entity/raid/Raid/isVictory ()Z +MD: net/minecraft/world/entity/raid/Raid/m_37768_ ()Z net/minecraft/world/entity/raid/Raid/isLoss ()Z +MD: net/minecraft/world/entity/raid/Raid/m_37769_ ()Lnet/minecraft/world/level/Level; net/minecraft/world/entity/raid/Raid/getLevel ()Lnet/minecraft/world/level/Level; +MD: net/minecraft/world/entity/raid/Raid/m_37770_ ()Z net/minecraft/world/entity/raid/Raid/isStarted ()Z +MD: net/minecraft/world/entity/raid/Raid/m_37771_ ()I net/minecraft/world/entity/raid/Raid/getGroupsSpawned ()I +MD: net/minecraft/world/entity/raid/Raid/m_37772_ ()I net/minecraft/world/entity/raid/Raid/getMaxBadOmenLevel ()I +MD: net/minecraft/world/entity/raid/Raid/m_37773_ ()I net/minecraft/world/entity/raid/Raid/getBadOmenLevel ()I +MD: net/minecraft/world/entity/raid/Raid/m_37774_ ()V net/minecraft/world/entity/raid/Raid/stop ()V +MD: net/minecraft/world/entity/raid/Raid/m_37775_ ()V net/minecraft/world/entity/raid/Raid/tick ()V +MD: net/minecraft/world/entity/raid/Raid/m_37776_ ()V net/minecraft/world/entity/raid/Raid/updateBossbar ()V +MD: net/minecraft/world/entity/raid/Raid/m_37777_ ()F net/minecraft/world/entity/raid/Raid/getHealthOfLivingRaiders ()F +MD: net/minecraft/world/entity/raid/Raid/m_37778_ ()I net/minecraft/world/entity/raid/Raid/getTotalRaidersAlive ()I +MD: net/minecraft/world/entity/raid/Raid/m_37779_ ()Lnet/minecraft/world/item/ItemStack; net/minecraft/world/entity/raid/Raid/getLeaderBannerInstance ()Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/entity/raid/Raid/m_37780_ ()Lnet/minecraft/core/BlockPos; net/minecraft/world/entity/raid/Raid/getCenter ()Lnet/minecraft/core/BlockPos; +MD: net/minecraft/world/entity/raid/Raid/m_37781_ ()I net/minecraft/world/entity/raid/Raid/getId ()I +MD: net/minecraft/world/entity/raid/Raid/m_37782_ ()Z net/minecraft/world/entity/raid/Raid/isActive ()Z +MD: net/minecraft/world/entity/raid/Raid/m_37783_ ()F net/minecraft/world/entity/raid/Raid/getEnchantOdds ()F +MD: net/minecraft/world/entity/raid/Raid/m_37784_ ()Ljava/util/function/Predicate; net/minecraft/world/entity/raid/Raid/validPlayer ()Ljava/util/function/Predicate; +MD: net/minecraft/world/entity/raid/Raid/m_37785_ ()V net/minecraft/world/entity/raid/Raid/updatePlayers ()V +MD: net/minecraft/world/entity/raid/Raid/m_37786_ ()V net/minecraft/world/entity/raid/Raid/moveRaidCenterToNearbyVillageSection ()V +MD: net/minecraft/world/entity/raid/Raid$1/ ()V net/minecraft/world/entity/raid/Raid$1/ ()V +MD: net/minecraft/world/entity/raid/Raid$RaidStatus/ ()V net/minecraft/world/entity/raid/Raid$RaidStatus/ ()V +MD: net/minecraft/world/entity/raid/Raid$RaidStatus/ (Ljava/lang/String;I)V net/minecraft/world/entity/raid/Raid$RaidStatus/ (Ljava/lang/String;I)V +MD: net/minecraft/world/entity/raid/Raid$RaidStatus/m_150222_ ()[Lnet/minecraft/world/entity/raid/Raid$RaidStatus; net/minecraft/world/entity/raid/Raid$RaidStatus/$values ()[Lnet/minecraft/world/entity/raid/Raid$RaidStatus; +MD: net/minecraft/world/entity/raid/Raid$RaidStatus/m_37800_ ()Ljava/lang/String; net/minecraft/world/entity/raid/Raid$RaidStatus/getName ()Ljava/lang/String; +MD: net/minecraft/world/entity/raid/Raid$RaidStatus/m_37803_ (Ljava/lang/String;)Lnet/minecraft/world/entity/raid/Raid$RaidStatus; net/minecraft/world/entity/raid/Raid$RaidStatus/getByName (Ljava/lang/String;)Lnet/minecraft/world/entity/raid/Raid$RaidStatus; +MD: net/minecraft/world/entity/raid/Raid$RaidStatus/valueOf (Ljava/lang/String;)Lnet/minecraft/world/entity/raid/Raid$RaidStatus; net/minecraft/world/entity/raid/Raid$RaidStatus/valueOf (Ljava/lang/String;)Lnet/minecraft/world/entity/raid/Raid$RaidStatus; +MD: net/minecraft/world/entity/raid/Raid$RaidStatus/values ()[Lnet/minecraft/world/entity/raid/Raid$RaidStatus; net/minecraft/world/entity/raid/Raid$RaidStatus/values ()[Lnet/minecraft/world/entity/raid/Raid$RaidStatus; +MD: net/minecraft/world/entity/raid/Raid$RaiderType/ ()V net/minecraft/world/entity/raid/Raid$RaiderType/ ()V +MD: net/minecraft/world/entity/raid/Raid$RaiderType/ (Ljava/lang/String;ILnet/minecraft/world/entity/EntityType;[I)V net/minecraft/world/entity/raid/Raid$RaiderType/ (Ljava/lang/String;ILnet/minecraft/world/entity/EntityType;[I)V +MD: net/minecraft/world/entity/raid/Raid$RaiderType/m_150223_ ()[Lnet/minecraft/world/entity/raid/Raid$RaiderType; net/minecraft/world/entity/raid/Raid$RaiderType/$values ()[Lnet/minecraft/world/entity/raid/Raid$RaiderType; +MD: net/minecraft/world/entity/raid/Raid$RaiderType/valueOf (Ljava/lang/String;)Lnet/minecraft/world/entity/raid/Raid$RaiderType; net/minecraft/world/entity/raid/Raid$RaiderType/valueOf (Ljava/lang/String;)Lnet/minecraft/world/entity/raid/Raid$RaiderType; +MD: net/minecraft/world/entity/raid/Raid$RaiderType/values ()[Lnet/minecraft/world/entity/raid/Raid$RaiderType; net/minecraft/world/entity/raid/Raid$RaiderType/values ()[Lnet/minecraft/world/entity/raid/Raid$RaiderType; +MD: net/minecraft/world/entity/raid/Raider/ ()V net/minecraft/world/entity/raid/Raider/ ()V +MD: net/minecraft/world/entity/raid/Raider/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V net/minecraft/world/entity/raid/Raider/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V +MD: net/minecraft/world/entity/raid/Raider/m_150226_ (Lnet/minecraft/world/entity/raid/Raider;)F net/minecraft/world/entity/raid/Raider/access$100 (Lnet/minecraft/world/entity/raid/Raider;)F +MD: net/minecraft/world/entity/raid/Raider/m_150230_ (Lnet/minecraft/world/entity/raid/Raider;)Z net/minecraft/world/entity/raid/Raider/access$300 (Lnet/minecraft/world/entity/raid/Raider;)Z +MD: net/minecraft/world/entity/raid/Raider/m_219834_ (Lnet/minecraft/world/entity/raid/Raider;)Lnet/minecraft/util/RandomSource; net/minecraft/world/entity/raid/Raider/access$000 (Lnet/minecraft/world/entity/raid/Raider;)Lnet/minecraft/util/RandomSource; +MD: net/minecraft/world/entity/raid/Raider/m_219836_ (Lnet/minecraft/world/entity/raid/Raider;)Lnet/minecraft/util/RandomSource; net/minecraft/world/entity/raid/Raider/access$200 (Lnet/minecraft/world/entity/raid/Raider;)Lnet/minecraft/util/RandomSource; +MD: net/minecraft/world/entity/raid/Raider/m_219838_ (Lnet/minecraft/world/entity/raid/Raider;)Lnet/minecraft/util/RandomSource; net/minecraft/world/entity/raid/Raider/access$400 (Lnet/minecraft/world/entity/raid/Raider;)Lnet/minecraft/util/RandomSource; +MD: net/minecraft/world/entity/raid/Raider/m_219840_ (Lnet/minecraft/world/entity/raid/Raider;)Lnet/minecraft/util/RandomSource; net/minecraft/world/entity/raid/Raider/access$500 (Lnet/minecraft/world/entity/raid/Raider;)Lnet/minecraft/util/RandomSource; +MD: net/minecraft/world/entity/raid/Raider/m_289168_ (Lnet/minecraft/world/entity/item/ItemEntity;)Z net/minecraft/world/entity/raid/Raider/lambda$static$0 (Lnet/minecraft/world/entity/item/ItemEntity;)Z +MD: net/minecraft/world/entity/raid/Raider/m_37842_ (I)V net/minecraft/world/entity/raid/Raider/setWave (I)V +MD: net/minecraft/world/entity/raid/Raider/m_37851_ (Lnet/minecraft/world/entity/raid/Raid;)V net/minecraft/world/entity/raid/Raider/setCurrentRaid (Lnet/minecraft/world/entity/raid/Raid;)V +MD: net/minecraft/world/entity/raid/Raider/m_37863_ (I)V net/minecraft/world/entity/raid/Raider/setTicksOutsideRaid (I)V +MD: net/minecraft/world/entity/raid/Raider/m_37882_ ()Z net/minecraft/world/entity/raid/Raider/canJoinRaid ()Z +MD: net/minecraft/world/entity/raid/Raider/m_37885_ ()Lnet/minecraft/world/entity/raid/Raid; net/minecraft/world/entity/raid/Raider/getCurrentRaid ()Lnet/minecraft/world/entity/raid/Raid; +MD: net/minecraft/world/entity/raid/Raider/m_37886_ ()Z net/minecraft/world/entity/raid/Raider/hasActiveRaid ()Z +MD: net/minecraft/world/entity/raid/Raider/m_37887_ ()I net/minecraft/world/entity/raid/Raider/getWave ()I +MD: net/minecraft/world/entity/raid/Raider/m_37888_ ()Z net/minecraft/world/entity/raid/Raider/isCelebrating ()Z +MD: net/minecraft/world/entity/raid/Raider/m_37889_ ()I net/minecraft/world/entity/raid/Raider/getTicksOutsideRaid ()I +MD: net/minecraft/world/entity/raid/Raider/m_37897_ (Z)V net/minecraft/world/entity/raid/Raider/setCanJoinRaid (Z)V +MD: net/minecraft/world/entity/raid/Raider/m_37899_ (Z)V net/minecraft/world/entity/raid/Raider/setCelebrating (Z)V +MD: net/minecraft/world/entity/raid/Raider/m_6469_ (Lnet/minecraft/world/damagesource/DamageSource;F)Z net/minecraft/world/entity/raid/Raider/hurt (Lnet/minecraft/world/damagesource/DamageSource;F)Z +MD: net/minecraft/world/entity/raid/Raider/m_6518_ (Lnet/minecraft/world/level/ServerLevelAccessor;Lnet/minecraft/world/DifficultyInstance;Lnet/minecraft/world/entity/MobSpawnType;Lnet/minecraft/world/entity/SpawnGroupData;Lnet/minecraft/nbt/CompoundTag;)Lnet/minecraft/world/entity/SpawnGroupData; net/minecraft/world/entity/raid/Raider/finalizeSpawn (Lnet/minecraft/world/level/ServerLevelAccessor;Lnet/minecraft/world/DifficultyInstance;Lnet/minecraft/world/entity/MobSpawnType;Lnet/minecraft/world/entity/SpawnGroupData;Lnet/minecraft/nbt/CompoundTag;)Lnet/minecraft/world/entity/SpawnGroupData; +MD: net/minecraft/world/entity/raid/Raider/m_6667_ (Lnet/minecraft/world/damagesource/DamageSource;)V net/minecraft/world/entity/raid/Raider/die (Lnet/minecraft/world/damagesource/DamageSource;)V +MD: net/minecraft/world/entity/raid/Raider/m_6785_ (D)Z net/minecraft/world/entity/raid/Raider/removeWhenFarAway (D)Z +MD: net/minecraft/world/entity/raid/Raider/m_7378_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/entity/raid/Raider/readAdditionalSaveData (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/entity/raid/Raider/m_7380_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/entity/raid/Raider/addAdditionalSaveData (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/entity/raid/Raider/m_7492_ ()Z net/minecraft/world/entity/raid/Raider/canJoinPatrol ()Z +MD: net/minecraft/world/entity/raid/Raider/m_7562_ ()V net/minecraft/world/entity/raid/Raider/updateNoActionTime ()V +MD: net/minecraft/world/entity/raid/Raider/m_7581_ (Lnet/minecraft/world/entity/item/ItemEntity;)V net/minecraft/world/entity/raid/Raider/pickUpItem (Lnet/minecraft/world/entity/item/ItemEntity;)V +MD: net/minecraft/world/entity/raid/Raider/m_7895_ (IZ)V net/minecraft/world/entity/raid/Raider/applyRaidBuffs (IZ)V +MD: net/minecraft/world/entity/raid/Raider/m_7930_ ()Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/raid/Raider/getCelebrateSound ()Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/raid/Raider/m_8023_ ()Z net/minecraft/world/entity/raid/Raider/requiresCustomPersistence ()Z +MD: net/minecraft/world/entity/raid/Raider/m_8097_ ()V net/minecraft/world/entity/raid/Raider/defineSynchedData ()V +MD: net/minecraft/world/entity/raid/Raider/m_8099_ ()V net/minecraft/world/entity/raid/Raider/registerGoals ()V +MD: net/minecraft/world/entity/raid/Raider/m_8107_ ()V net/minecraft/world/entity/raid/Raider/aiStep ()V +MD: net/minecraft/world/entity/raid/Raider$HoldGroundAttackGoal/ (Lnet/minecraft/world/entity/raid/Raider;Lnet/minecraft/world/entity/monster/AbstractIllager;F)V net/minecraft/world/entity/raid/Raider$HoldGroundAttackGoal/ (Lnet/minecraft/world/entity/raid/Raider;Lnet/minecraft/world/entity/monster/AbstractIllager;F)V +MD: net/minecraft/world/entity/raid/Raider$HoldGroundAttackGoal/m_183429_ ()Z net/minecraft/world/entity/raid/Raider$HoldGroundAttackGoal/requiresUpdateEveryTick ()Z +MD: net/minecraft/world/entity/raid/Raider$HoldGroundAttackGoal/m_8036_ ()Z net/minecraft/world/entity/raid/Raider$HoldGroundAttackGoal/canUse ()Z +MD: net/minecraft/world/entity/raid/Raider$HoldGroundAttackGoal/m_8037_ ()V net/minecraft/world/entity/raid/Raider$HoldGroundAttackGoal/tick ()V +MD: net/minecraft/world/entity/raid/Raider$HoldGroundAttackGoal/m_8041_ ()V net/minecraft/world/entity/raid/Raider$HoldGroundAttackGoal/stop ()V +MD: net/minecraft/world/entity/raid/Raider$HoldGroundAttackGoal/m_8056_ ()V net/minecraft/world/entity/raid/Raider$HoldGroundAttackGoal/start ()V +MD: net/minecraft/world/entity/raid/Raider$ObtainRaidLeaderBannerGoal/ (Lnet/minecraft/world/entity/raid/Raider;Lnet/minecraft/world/entity/raid/Raider;)V net/minecraft/world/entity/raid/Raider$ObtainRaidLeaderBannerGoal/ (Lnet/minecraft/world/entity/raid/Raider;Lnet/minecraft/world/entity/raid/Raider;)V +MD: net/minecraft/world/entity/raid/Raider$ObtainRaidLeaderBannerGoal/m_8036_ ()Z net/minecraft/world/entity/raid/Raider$ObtainRaidLeaderBannerGoal/canUse ()Z +MD: net/minecraft/world/entity/raid/Raider$ObtainRaidLeaderBannerGoal/m_8037_ ()V net/minecraft/world/entity/raid/Raider$ObtainRaidLeaderBannerGoal/tick ()V +MD: net/minecraft/world/entity/raid/Raider$RaiderCelebration/ (Lnet/minecraft/world/entity/raid/Raider;Lnet/minecraft/world/entity/raid/Raider;)V net/minecraft/world/entity/raid/Raider$RaiderCelebration/ (Lnet/minecraft/world/entity/raid/Raider;Lnet/minecraft/world/entity/raid/Raider;)V +MD: net/minecraft/world/entity/raid/Raider$RaiderCelebration/m_8036_ ()Z net/minecraft/world/entity/raid/Raider$RaiderCelebration/canUse ()Z +MD: net/minecraft/world/entity/raid/Raider$RaiderCelebration/m_8037_ ()V net/minecraft/world/entity/raid/Raider$RaiderCelebration/tick ()V +MD: net/minecraft/world/entity/raid/Raider$RaiderCelebration/m_8041_ ()V net/minecraft/world/entity/raid/Raider$RaiderCelebration/stop ()V +MD: net/minecraft/world/entity/raid/Raider$RaiderCelebration/m_8056_ ()V net/minecraft/world/entity/raid/Raider$RaiderCelebration/start ()V +MD: net/minecraft/world/entity/raid/Raider$RaiderMoveThroughVillageGoal/ (Lnet/minecraft/world/entity/raid/Raider;DI)V net/minecraft/world/entity/raid/Raider$RaiderMoveThroughVillageGoal/ (Lnet/minecraft/world/entity/raid/Raider;DI)V +MD: net/minecraft/world/entity/raid/Raider$RaiderMoveThroughVillageGoal/m_219842_ (Lnet/minecraft/core/Holder;)Z net/minecraft/world/entity/raid/Raider$RaiderMoveThroughVillageGoal/lambda$hasSuitablePoi$0 (Lnet/minecraft/core/Holder;)Z +MD: net/minecraft/world/entity/raid/Raider$RaiderMoveThroughVillageGoal/m_37942_ (Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/entity/raid/Raider$RaiderMoveThroughVillageGoal/hasNotVisited (Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/entity/raid/Raider$RaiderMoveThroughVillageGoal/m_37948_ ()Z net/minecraft/world/entity/raid/Raider$RaiderMoveThroughVillageGoal/isValidRaid ()Z +MD: net/minecraft/world/entity/raid/Raider$RaiderMoveThroughVillageGoal/m_37949_ ()Z net/minecraft/world/entity/raid/Raider$RaiderMoveThroughVillageGoal/hasSuitablePoi ()Z +MD: net/minecraft/world/entity/raid/Raider$RaiderMoveThroughVillageGoal/m_37950_ ()V net/minecraft/world/entity/raid/Raider$RaiderMoveThroughVillageGoal/updateVisited ()V +MD: net/minecraft/world/entity/raid/Raider$RaiderMoveThroughVillageGoal/m_8036_ ()Z net/minecraft/world/entity/raid/Raider$RaiderMoveThroughVillageGoal/canUse ()Z +MD: net/minecraft/world/entity/raid/Raider$RaiderMoveThroughVillageGoal/m_8037_ ()V net/minecraft/world/entity/raid/Raider$RaiderMoveThroughVillageGoal/tick ()V +MD: net/minecraft/world/entity/raid/Raider$RaiderMoveThroughVillageGoal/m_8041_ ()V net/minecraft/world/entity/raid/Raider$RaiderMoveThroughVillageGoal/stop ()V +MD: net/minecraft/world/entity/raid/Raider$RaiderMoveThroughVillageGoal/m_8045_ ()Z net/minecraft/world/entity/raid/Raider$RaiderMoveThroughVillageGoal/canContinueToUse ()Z +MD: net/minecraft/world/entity/raid/Raider$RaiderMoveThroughVillageGoal/m_8056_ ()V net/minecraft/world/entity/raid/Raider$RaiderMoveThroughVillageGoal/start ()V +MD: net/minecraft/world/entity/raid/Raids/ (Lnet/minecraft/server/level/ServerLevel;)V net/minecraft/world/entity/raid/Raids/ (Lnet/minecraft/server/level/ServerLevel;)V +MD: net/minecraft/world/entity/raid/Raids/m_150235_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/nbt/CompoundTag;)Lnet/minecraft/world/entity/raid/Raids; net/minecraft/world/entity/raid/Raids/load (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/nbt/CompoundTag;)Lnet/minecraft/world/entity/raid/Raids; +MD: net/minecraft/world/entity/raid/Raids/m_211596_ (Lnet/minecraft/core/Holder;)Ljava/lang/String; net/minecraft/world/entity/raid/Raids/getFileId (Lnet/minecraft/core/Holder;)Ljava/lang/String; +MD: net/minecraft/world/entity/raid/Raids/m_219844_ (Lnet/minecraft/core/Holder;)Z net/minecraft/world/entity/raid/Raids/lambda$createOrExtendRaid$0 (Lnet/minecraft/core/Holder;)Z +MD: net/minecraft/world/entity/raid/Raids/m_37957_ ()V net/minecraft/world/entity/raid/Raids/tick ()V +MD: net/minecraft/world/entity/raid/Raids/m_37958_ (I)Lnet/minecraft/world/entity/raid/Raid; net/minecraft/world/entity/raid/Raids/get (I)Lnet/minecraft/world/entity/raid/Raid; +MD: net/minecraft/world/entity/raid/Raids/m_37960_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/entity/raid/Raid; net/minecraft/world/entity/raid/Raids/getOrCreateRaid (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/entity/raid/Raid; +MD: net/minecraft/world/entity/raid/Raids/m_37963_ (Lnet/minecraft/server/level/ServerPlayer;)Lnet/minecraft/world/entity/raid/Raid; net/minecraft/world/entity/raid/Raids/createOrExtendRaid (Lnet/minecraft/server/level/ServerPlayer;)Lnet/minecraft/world/entity/raid/Raid; +MD: net/minecraft/world/entity/raid/Raids/m_37965_ (Lnet/minecraft/world/entity/raid/Raider;Lnet/minecraft/world/entity/raid/Raid;)Z net/minecraft/world/entity/raid/Raids/canJoinRaid (Lnet/minecraft/world/entity/raid/Raider;Lnet/minecraft/world/entity/raid/Raid;)Z +MD: net/minecraft/world/entity/raid/Raids/m_37970_ (Lnet/minecraft/core/BlockPos;I)Lnet/minecraft/world/entity/raid/Raid; net/minecraft/world/entity/raid/Raids/getNearbyRaid (Lnet/minecraft/core/BlockPos;I)Lnet/minecraft/world/entity/raid/Raid; +MD: net/minecraft/world/entity/raid/Raids/m_37977_ ()I net/minecraft/world/entity/raid/Raids/getUniqueId ()I +MD: net/minecraft/world/entity/raid/Raids/m_7176_ (Lnet/minecraft/nbt/CompoundTag;)Lnet/minecraft/nbt/CompoundTag; net/minecraft/world/entity/raid/Raids/save (Lnet/minecraft/nbt/CompoundTag;)Lnet/minecraft/nbt/CompoundTag; +MD: net/minecraft/world/entity/schedule/Activity/ ()V net/minecraft/world/entity/schedule/Activity/ ()V +MD: net/minecraft/world/entity/schedule/Activity/ (Ljava/lang/String;)V net/minecraft/world/entity/schedule/Activity/ (Ljava/lang/String;)V +MD: net/minecraft/world/entity/schedule/Activity/equals (Ljava/lang/Object;)Z net/minecraft/world/entity/schedule/Activity/equals (Ljava/lang/Object;)Z +MD: net/minecraft/world/entity/schedule/Activity/hashCode ()I net/minecraft/world/entity/schedule/Activity/hashCode ()I +MD: net/minecraft/world/entity/schedule/Activity/m_37998_ ()Ljava/lang/String; net/minecraft/world/entity/schedule/Activity/getName ()Ljava/lang/String; +MD: net/minecraft/world/entity/schedule/Activity/m_37999_ (Ljava/lang/String;)Lnet/minecraft/world/entity/schedule/Activity; net/minecraft/world/entity/schedule/Activity/register (Ljava/lang/String;)Lnet/minecraft/world/entity/schedule/Activity; +MD: net/minecraft/world/entity/schedule/Activity/toString ()Ljava/lang/String; net/minecraft/world/entity/schedule/Activity/toString ()Ljava/lang/String; +MD: net/minecraft/world/entity/schedule/Keyframe/ (IF)V net/minecraft/world/entity/schedule/Keyframe/ (IF)V +MD: net/minecraft/world/entity/schedule/Keyframe/m_38010_ ()I net/minecraft/world/entity/schedule/Keyframe/getTimeStamp ()I +MD: net/minecraft/world/entity/schedule/Keyframe/m_38011_ ()F net/minecraft/world/entity/schedule/Keyframe/getValue ()F +MD: net/minecraft/world/entity/schedule/Schedule/ ()V net/minecraft/world/entity/schedule/Schedule/ ()V +MD: net/minecraft/world/entity/schedule/Schedule/ ()V net/minecraft/world/entity/schedule/Schedule/ ()V +MD: net/minecraft/world/entity/schedule/Schedule/m_38019_ (I)Lnet/minecraft/world/entity/schedule/Activity; net/minecraft/world/entity/schedule/Schedule/getActivityAt (I)Lnet/minecraft/world/entity/schedule/Activity; +MD: net/minecraft/world/entity/schedule/Schedule/m_38021_ (ILjava/util/Map$Entry;)D net/minecraft/world/entity/schedule/Schedule/lambda$getActivityAt$1 (ILjava/util/Map$Entry;)D +MD: net/minecraft/world/entity/schedule/Schedule/m_38024_ (Lnet/minecraft/world/entity/schedule/Activity;)V net/minecraft/world/entity/schedule/Schedule/ensureTimelineExistsFor (Lnet/minecraft/world/entity/schedule/Activity;)V +MD: net/minecraft/world/entity/schedule/Schedule/m_38026_ (Lnet/minecraft/world/entity/schedule/Activity;Ljava/util/Map$Entry;)Z net/minecraft/world/entity/schedule/Schedule/lambda$getAllTimelinesExceptFor$0 (Lnet/minecraft/world/entity/schedule/Activity;Ljava/util/Map$Entry;)Z +MD: net/minecraft/world/entity/schedule/Schedule/m_38029_ (Ljava/lang/String;)Lnet/minecraft/world/entity/schedule/ScheduleBuilder; net/minecraft/world/entity/schedule/Schedule/register (Ljava/lang/String;)Lnet/minecraft/world/entity/schedule/ScheduleBuilder; +MD: net/minecraft/world/entity/schedule/Schedule/m_38031_ (Lnet/minecraft/world/entity/schedule/Activity;)Lnet/minecraft/world/entity/schedule/Timeline; net/minecraft/world/entity/schedule/Schedule/getTimelineFor (Lnet/minecraft/world/entity/schedule/Activity;)Lnet/minecraft/world/entity/schedule/Timeline; +MD: net/minecraft/world/entity/schedule/Schedule/m_38033_ (Lnet/minecraft/world/entity/schedule/Activity;)Ljava/util/List; net/minecraft/world/entity/schedule/Schedule/getAllTimelinesExceptFor (Lnet/minecraft/world/entity/schedule/Activity;)Ljava/util/List; +MD: net/minecraft/world/entity/schedule/ScheduleBuilder/ (Lnet/minecraft/world/entity/schedule/Schedule;)V net/minecraft/world/entity/schedule/ScheduleBuilder/ (Lnet/minecraft/world/entity/schedule/Schedule;)V +MD: net/minecraft/world/entity/schedule/ScheduleBuilder/m_150243_ (Lnet/minecraft/world/entity/schedule/ScheduleBuilder$ActivityTransition;Lnet/minecraft/world/entity/schedule/Timeline;)V net/minecraft/world/entity/schedule/ScheduleBuilder/lambda$build$0 (Lnet/minecraft/world/entity/schedule/ScheduleBuilder$ActivityTransition;Lnet/minecraft/world/entity/schedule/Timeline;)V +MD: net/minecraft/world/entity/schedule/ScheduleBuilder/m_38039_ ()Lnet/minecraft/world/entity/schedule/Schedule; net/minecraft/world/entity/schedule/ScheduleBuilder/build ()Lnet/minecraft/world/entity/schedule/Schedule; +MD: net/minecraft/world/entity/schedule/ScheduleBuilder/m_38040_ (ILnet/minecraft/world/entity/schedule/Activity;)Lnet/minecraft/world/entity/schedule/ScheduleBuilder; net/minecraft/world/entity/schedule/ScheduleBuilder/changeActivityAt (ILnet/minecraft/world/entity/schedule/Activity;)Lnet/minecraft/world/entity/schedule/ScheduleBuilder; +MD: net/minecraft/world/entity/schedule/ScheduleBuilder/m_38043_ (Lnet/minecraft/world/entity/schedule/ScheduleBuilder$ActivityTransition;)V net/minecraft/world/entity/schedule/ScheduleBuilder/lambda$build$1 (Lnet/minecraft/world/entity/schedule/ScheduleBuilder$ActivityTransition;)V +MD: net/minecraft/world/entity/schedule/ScheduleBuilder$ActivityTransition/ (ILnet/minecraft/world/entity/schedule/Activity;)V net/minecraft/world/entity/schedule/ScheduleBuilder$ActivityTransition/ (ILnet/minecraft/world/entity/schedule/Activity;)V +MD: net/minecraft/world/entity/schedule/ScheduleBuilder$ActivityTransition/m_38053_ ()I net/minecraft/world/entity/schedule/ScheduleBuilder$ActivityTransition/getTime ()I +MD: net/minecraft/world/entity/schedule/ScheduleBuilder$ActivityTransition/m_38054_ ()Lnet/minecraft/world/entity/schedule/Activity; net/minecraft/world/entity/schedule/ScheduleBuilder$ActivityTransition/getActivity ()Lnet/minecraft/world/entity/schedule/Activity; +MD: net/minecraft/world/entity/schedule/Timeline/ ()V net/minecraft/world/entity/schedule/Timeline/ ()V +MD: net/minecraft/world/entity/schedule/Timeline/m_150246_ ()Lcom/google/common/collect/ImmutableList; net/minecraft/world/entity/schedule/Timeline/getKeyframes ()Lcom/google/common/collect/ImmutableList; +MD: net/minecraft/world/entity/schedule/Timeline/m_150247_ (Ljava/util/Collection;)Lnet/minecraft/world/entity/schedule/Timeline; net/minecraft/world/entity/schedule/Timeline/addKeyframes (Ljava/util/Collection;)Lnet/minecraft/world/entity/schedule/Timeline; +MD: net/minecraft/world/entity/schedule/Timeline/m_38058_ (I)F net/minecraft/world/entity/schedule/Timeline/getValueAt (I)F +MD: net/minecraft/world/entity/schedule/Timeline/m_38060_ (IF)Lnet/minecraft/world/entity/schedule/Timeline; net/minecraft/world/entity/schedule/Timeline/addKeyframe (IF)Lnet/minecraft/world/entity/schedule/Timeline; +MD: net/minecraft/world/entity/schedule/Timeline/m_38063_ (Lit/unimi/dsi/fastutil/ints/Int2ObjectSortedMap;Lnet/minecraft/world/entity/schedule/Keyframe;)V net/minecraft/world/entity/schedule/Timeline/lambda$sortAndDeduplicateKeyframes$0 (Lit/unimi/dsi/fastutil/ints/Int2ObjectSortedMap;Lnet/minecraft/world/entity/schedule/Keyframe;)V +MD: net/minecraft/world/entity/schedule/Timeline/m_38066_ ()V net/minecraft/world/entity/schedule/Timeline/sortAndDeduplicateKeyframes ()V +MD: net/minecraft/world/entity/vehicle/AbstractMinecart/ ()V net/minecraft/world/entity/vehicle/AbstractMinecart/ ()V +MD: net/minecraft/world/entity/vehicle/AbstractMinecart/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V net/minecraft/world/entity/vehicle/AbstractMinecart/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V +MD: net/minecraft/world/entity/vehicle/AbstractMinecart/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;DDD)V net/minecraft/world/entity/vehicle/AbstractMinecart/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;DDD)V +MD: net/minecraft/world/entity/vehicle/AbstractMinecart/m_142319_ ()Lnet/minecraft/world/entity/Entity$MovementEmission; net/minecraft/world/entity/vehicle/AbstractMinecart/getMovementEmission ()Lnet/minecraft/world/entity/Entity$MovementEmission; +MD: net/minecraft/world/entity/vehicle/AbstractMinecart/m_142340_ ()Lnet/minecraft/world/item/ItemStack; net/minecraft/world/entity/vehicle/AbstractMinecart/getPickResult ()Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/entity/vehicle/AbstractMinecart/m_213728_ ()Lnet/minecraft/world/item/Item; net/minecraft/world/entity/vehicle/AbstractMinecart/getDropItem ()Lnet/minecraft/world/item/Item; +MD: net/minecraft/world/entity/vehicle/AbstractMinecart/m_288188_ ()Z net/minecraft/world/entity/vehicle/AbstractMinecart/isOnRails ()Z +MD: net/minecraft/world/entity/vehicle/AbstractMinecart/m_289169_ (Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/phys/shapes/VoxelShape; net/minecraft/world/entity/vehicle/AbstractMinecart/lambda$getDismountLocationForPassenger$1 (Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/phys/shapes/VoxelShape; +MD: net/minecraft/world/entity/vehicle/AbstractMinecart/m_289170_ (Lnet/minecraft/core/BlockPos$MutableBlockPos;)Lnet/minecraft/world/phys/shapes/VoxelShape; net/minecraft/world/entity/vehicle/AbstractMinecart/lambda$getDismountLocationForPassenger$0 (Lnet/minecraft/core/BlockPos$MutableBlockPos;)Lnet/minecraft/world/phys/shapes/VoxelShape; +MD: net/minecraft/world/entity/vehicle/AbstractMinecart/m_38096_ (DDDD)Lnet/minecraft/world/phys/Vec3; net/minecraft/world/entity/vehicle/AbstractMinecart/getPosOffs (DDDD)Lnet/minecraft/world/phys/Vec3; +MD: net/minecraft/world/entity/vehicle/AbstractMinecart/m_38109_ (F)V net/minecraft/world/entity/vehicle/AbstractMinecart/setDamage (F)V +MD: net/minecraft/world/entity/vehicle/AbstractMinecart/m_38119_ (Lnet/minecraft/world/level/Level;DDDLnet/minecraft/world/entity/vehicle/AbstractMinecart$Type;)Lnet/minecraft/world/entity/vehicle/AbstractMinecart; net/minecraft/world/entity/vehicle/AbstractMinecart/createMinecart (Lnet/minecraft/world/level/Level;DDDLnet/minecraft/world/entity/vehicle/AbstractMinecart$Type;)Lnet/minecraft/world/entity/vehicle/AbstractMinecart; +MD: net/minecraft/world/entity/vehicle/AbstractMinecart/m_38125_ (Lnet/minecraft/world/level/block/state/properties/RailShape;)Lcom/mojang/datafixers/util/Pair; net/minecraft/world/entity/vehicle/AbstractMinecart/exits (Lnet/minecraft/world/level/block/state/properties/RailShape;)Lcom/mojang/datafixers/util/Pair; +MD: net/minecraft/world/entity/vehicle/AbstractMinecart/m_38129_ (Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/entity/vehicle/AbstractMinecart/isRedstoneConductor (Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/entity/vehicle/AbstractMinecart/m_38134_ (Ljava/util/EnumMap;)V net/minecraft/world/entity/vehicle/AbstractMinecart/lambda$static$2 (Ljava/util/EnumMap;)V +MD: net/minecraft/world/entity/vehicle/AbstractMinecart/m_38138_ (Z)V net/minecraft/world/entity/vehicle/AbstractMinecart/setCustomDisplay (Z)V +MD: net/minecraft/world/entity/vehicle/AbstractMinecart/m_38146_ (Lnet/minecraft/world/level/block/state/BlockState;)V net/minecraft/world/entity/vehicle/AbstractMinecart/setDisplayBlockState (Lnet/minecraft/world/level/block/state/BlockState;)V +MD: net/minecraft/world/entity/vehicle/AbstractMinecart/m_38154_ (I)V net/minecraft/world/entity/vehicle/AbstractMinecart/setHurtTime (I)V +MD: net/minecraft/world/entity/vehicle/AbstractMinecart/m_38160_ (I)V net/minecraft/world/entity/vehicle/AbstractMinecart/setHurtDir (I)V +MD: net/minecraft/world/entity/vehicle/AbstractMinecart/m_38163_ ()V net/minecraft/world/entity/vehicle/AbstractMinecart/comeOffTrack ()V +MD: net/minecraft/world/entity/vehicle/AbstractMinecart/m_38169_ ()F net/minecraft/world/entity/vehicle/AbstractMinecart/getDamage ()F +MD: net/minecraft/world/entity/vehicle/AbstractMinecart/m_38174_ (I)V net/minecraft/world/entity/vehicle/AbstractMinecart/setDisplayOffset (I)V +MD: net/minecraft/world/entity/vehicle/AbstractMinecart/m_38176_ ()I net/minecraft/world/entity/vehicle/AbstractMinecart/getHurtTime ()I +MD: net/minecraft/world/entity/vehicle/AbstractMinecart/m_38177_ ()I net/minecraft/world/entity/vehicle/AbstractMinecart/getHurtDir ()I +MD: net/minecraft/world/entity/vehicle/AbstractMinecart/m_38178_ ()Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/entity/vehicle/AbstractMinecart/getDisplayBlockState ()Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/entity/vehicle/AbstractMinecart/m_38179_ (DDD)Lnet/minecraft/world/phys/Vec3; net/minecraft/world/entity/vehicle/AbstractMinecart/getPos (DDD)Lnet/minecraft/world/phys/Vec3; +MD: net/minecraft/world/entity/vehicle/AbstractMinecart/m_38183_ ()I net/minecraft/world/entity/vehicle/AbstractMinecart/getDisplayOffset ()I +MD: net/minecraft/world/entity/vehicle/AbstractMinecart/m_38184_ ()Z net/minecraft/world/entity/vehicle/AbstractMinecart/hasCustomDisplay ()Z +MD: net/minecraft/world/entity/vehicle/AbstractMinecart/m_6001_ (DDD)V net/minecraft/world/entity/vehicle/AbstractMinecart/lerpMotion (DDD)V +MD: net/minecraft/world/entity/vehicle/AbstractMinecart/m_6025_ (IIIZ)V net/minecraft/world/entity/vehicle/AbstractMinecart/activateMinecart (IIIZ)V +MD: net/minecraft/world/entity/vehicle/AbstractMinecart/m_6041_ ()F net/minecraft/world/entity/vehicle/AbstractMinecart/getBlockSpeedFactor ()F +MD: net/minecraft/world/entity/vehicle/AbstractMinecart/m_6048_ ()D net/minecraft/world/entity/vehicle/AbstractMinecart/getPassengersRidingOffset ()D +MD: net/minecraft/world/entity/vehicle/AbstractMinecart/m_6053_ (F)V net/minecraft/world/entity/vehicle/AbstractMinecart/animateHurt (F)V +MD: net/minecraft/world/entity/vehicle/AbstractMinecart/m_6064_ ()Lnet/minecraft/world/entity/vehicle/AbstractMinecart$Type; net/minecraft/world/entity/vehicle/AbstractMinecart/getMinecartType ()Lnet/minecraft/world/entity/vehicle/AbstractMinecart$Type; +MD: net/minecraft/world/entity/vehicle/AbstractMinecart/m_6087_ ()Z net/minecraft/world/entity/vehicle/AbstractMinecart/isPickable ()Z +MD: net/minecraft/world/entity/vehicle/AbstractMinecart/m_6094_ ()Z net/minecraft/world/entity/vehicle/AbstractMinecart/isPushable ()Z +MD: net/minecraft/world/entity/vehicle/AbstractMinecart/m_6374_ ()Lnet/minecraft/core/Direction; net/minecraft/world/entity/vehicle/AbstractMinecart/getMotionDirection ()Lnet/minecraft/core/Direction; +MD: net/minecraft/world/entity/vehicle/AbstractMinecart/m_6390_ ()Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/entity/vehicle/AbstractMinecart/getDefaultDisplayBlockState ()Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/entity/vehicle/AbstractMinecart/m_6401_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V net/minecraft/world/entity/vehicle/AbstractMinecart/moveAlongTrack (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V +MD: net/minecraft/world/entity/vehicle/AbstractMinecart/m_6453_ (DDDFFIZ)V net/minecraft/world/entity/vehicle/AbstractMinecart/lerpTo (DDDFFIZ)V +MD: net/minecraft/world/entity/vehicle/AbstractMinecart/m_6469_ (Lnet/minecraft/world/damagesource/DamageSource;F)Z net/minecraft/world/entity/vehicle/AbstractMinecart/hurt (Lnet/minecraft/world/damagesource/DamageSource;F)Z +MD: net/minecraft/world/entity/vehicle/AbstractMinecart/m_6921_ ()Lnet/minecraft/world/phys/AABB; net/minecraft/world/entity/vehicle/AbstractMinecart/getBoundingBoxForCulling ()Lnet/minecraft/world/phys/AABB; +MD: net/minecraft/world/entity/vehicle/AbstractMinecart/m_7097_ ()D net/minecraft/world/entity/vehicle/AbstractMinecart/getMaxSpeed ()D +MD: net/minecraft/world/entity/vehicle/AbstractMinecart/m_7114_ ()V net/minecraft/world/entity/vehicle/AbstractMinecart/applyNaturalSlowdown ()V +MD: net/minecraft/world/entity/vehicle/AbstractMinecart/m_7144_ ()I net/minecraft/world/entity/vehicle/AbstractMinecart/getDefaultDisplayOffset ()I +MD: net/minecraft/world/entity/vehicle/AbstractMinecart/m_7334_ (Lnet/minecraft/world/entity/Entity;)V net/minecraft/world/entity/vehicle/AbstractMinecart/push (Lnet/minecraft/world/entity/Entity;)V +MD: net/minecraft/world/entity/vehicle/AbstractMinecart/m_7337_ (Lnet/minecraft/world/entity/Entity;)Z net/minecraft/world/entity/vehicle/AbstractMinecart/canCollideWith (Lnet/minecraft/world/entity/Entity;)Z +MD: net/minecraft/world/entity/vehicle/AbstractMinecart/m_7378_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/entity/vehicle/AbstractMinecart/readAdditionalSaveData (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/entity/vehicle/AbstractMinecart/m_7380_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/entity/vehicle/AbstractMinecart/addAdditionalSaveData (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/entity/vehicle/AbstractMinecart/m_7617_ (Lnet/minecraft/world/damagesource/DamageSource;)V net/minecraft/world/entity/vehicle/AbstractMinecart/destroy (Lnet/minecraft/world/damagesource/DamageSource;)V +MD: net/minecraft/world/entity/vehicle/AbstractMinecart/m_7643_ (Lnet/minecraft/core/Direction$Axis;Lnet/minecraft/BlockUtil$FoundRectangle;)Lnet/minecraft/world/phys/Vec3; net/minecraft/world/entity/vehicle/AbstractMinecart/getRelativePortalPosition (Lnet/minecraft/core/Direction$Axis;Lnet/minecraft/BlockUtil$FoundRectangle;)Lnet/minecraft/world/phys/Vec3; +MD: net/minecraft/world/entity/vehicle/AbstractMinecart/m_7688_ (Lnet/minecraft/world/entity/LivingEntity;)Lnet/minecraft/world/phys/Vec3; net/minecraft/world/entity/vehicle/AbstractMinecart/getDismountLocationForPassenger (Lnet/minecraft/world/entity/LivingEntity;)Lnet/minecraft/world/phys/Vec3; +MD: net/minecraft/world/entity/vehicle/AbstractMinecart/m_8097_ ()V net/minecraft/world/entity/vehicle/AbstractMinecart/defineSynchedData ()V +MD: net/minecraft/world/entity/vehicle/AbstractMinecart/m_8119_ ()V net/minecraft/world/entity/vehicle/AbstractMinecart/tick ()V +MD: net/minecraft/world/entity/vehicle/AbstractMinecart$1/ ()V net/minecraft/world/entity/vehicle/AbstractMinecart$1/ ()V +MD: net/minecraft/world/entity/vehicle/AbstractMinecart$Type/ ()V net/minecraft/world/entity/vehicle/AbstractMinecart$Type/ ()V +MD: net/minecraft/world/entity/vehicle/AbstractMinecart$Type/ (Ljava/lang/String;I)V net/minecraft/world/entity/vehicle/AbstractMinecart$Type/ (Ljava/lang/String;I)V +MD: net/minecraft/world/entity/vehicle/AbstractMinecart$Type/m_150253_ ()[Lnet/minecraft/world/entity/vehicle/AbstractMinecart$Type; net/minecraft/world/entity/vehicle/AbstractMinecart$Type/$values ()[Lnet/minecraft/world/entity/vehicle/AbstractMinecart$Type; +MD: net/minecraft/world/entity/vehicle/AbstractMinecart$Type/valueOf (Ljava/lang/String;)Lnet/minecraft/world/entity/vehicle/AbstractMinecart$Type; net/minecraft/world/entity/vehicle/AbstractMinecart$Type/valueOf (Ljava/lang/String;)Lnet/minecraft/world/entity/vehicle/AbstractMinecart$Type; +MD: net/minecraft/world/entity/vehicle/AbstractMinecart$Type/values ()[Lnet/minecraft/world/entity/vehicle/AbstractMinecart$Type; net/minecraft/world/entity/vehicle/AbstractMinecart$Type/values ()[Lnet/minecraft/world/entity/vehicle/AbstractMinecart$Type; +MD: net/minecraft/world/entity/vehicle/AbstractMinecartContainer/ (Lnet/minecraft/world/entity/EntityType;DDDLnet/minecraft/world/level/Level;)V net/minecraft/world/entity/vehicle/AbstractMinecartContainer/ (Lnet/minecraft/world/entity/EntityType;DDDLnet/minecraft/world/level/Level;)V +MD: net/minecraft/world/entity/vehicle/AbstractMinecartContainer/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V net/minecraft/world/entity/vehicle/AbstractMinecartContainer/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V +MD: net/minecraft/world/entity/vehicle/AbstractMinecartContainer/m_141942_ (I)Lnet/minecraft/world/entity/SlotAccess; net/minecraft/world/entity/vehicle/AbstractMinecartContainer/getSlot (I)Lnet/minecraft/world/entity/SlotAccess; +MD: net/minecraft/world/entity/vehicle/AbstractMinecartContainer/m_142687_ (Lnet/minecraft/world/entity/Entity$RemovalReason;)V net/minecraft/world/entity/vehicle/AbstractMinecartContainer/remove (Lnet/minecraft/world/entity/Entity$RemovalReason;)V +MD: net/minecraft/world/entity/vehicle/AbstractMinecartContainer/m_213659_ ()Lnet/minecraft/core/NonNullList; net/minecraft/world/entity/vehicle/AbstractMinecartContainer/getItemStacks ()Lnet/minecraft/core/NonNullList; +MD: net/minecraft/world/entity/vehicle/AbstractMinecartContainer/m_213775_ ()V net/minecraft/world/entity/vehicle/AbstractMinecartContainer/clearItemStacks ()V +MD: net/minecraft/world/entity/vehicle/AbstractMinecartContainer/m_213803_ ()J net/minecraft/world/entity/vehicle/AbstractMinecartContainer/getLootTableSeed ()J +MD: net/minecraft/world/entity/vehicle/AbstractMinecartContainer/m_214065_ (J)V net/minecraft/world/entity/vehicle/AbstractMinecartContainer/setLootTableSeed (J)V +MD: net/minecraft/world/entity/vehicle/AbstractMinecartContainer/m_214142_ ()Lnet/minecraft/resources/ResourceLocation; net/minecraft/world/entity/vehicle/AbstractMinecartContainer/getLootTable ()Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/world/entity/vehicle/AbstractMinecartContainer/m_214199_ (Lnet/minecraft/resources/ResourceLocation;)V net/minecraft/world/entity/vehicle/AbstractMinecartContainer/setLootTable (Lnet/minecraft/resources/ResourceLocation;)V +MD: net/minecraft/world/entity/vehicle/AbstractMinecartContainer/m_38236_ (Lnet/minecraft/resources/ResourceLocation;J)V net/minecraft/world/entity/vehicle/AbstractMinecartContainer/setLootTable (Lnet/minecraft/resources/ResourceLocation;J)V +MD: net/minecraft/world/entity/vehicle/AbstractMinecartContainer/m_6096_ (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;)Lnet/minecraft/world/InteractionResult; net/minecraft/world/entity/vehicle/AbstractMinecartContainer/interact (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;)Lnet/minecraft/world/InteractionResult; +MD: net/minecraft/world/entity/vehicle/AbstractMinecartContainer/m_6211_ ()V net/minecraft/world/entity/vehicle/AbstractMinecartContainer/clearContent ()V +MD: net/minecraft/world/entity/vehicle/AbstractMinecartContainer/m_6542_ (Lnet/minecraft/world/entity/player/Player;)Z net/minecraft/world/entity/vehicle/AbstractMinecartContainer/stillValid (Lnet/minecraft/world/entity/player/Player;)Z +MD: net/minecraft/world/entity/vehicle/AbstractMinecartContainer/m_6596_ ()V net/minecraft/world/entity/vehicle/AbstractMinecartContainer/setChanged ()V +MD: net/minecraft/world/entity/vehicle/AbstractMinecartContainer/m_6836_ (ILnet/minecraft/world/item/ItemStack;)V net/minecraft/world/entity/vehicle/AbstractMinecartContainer/setItem (ILnet/minecraft/world/item/ItemStack;)V +MD: net/minecraft/world/entity/vehicle/AbstractMinecartContainer/m_7114_ ()V net/minecraft/world/entity/vehicle/AbstractMinecartContainer/applyNaturalSlowdown ()V +MD: net/minecraft/world/entity/vehicle/AbstractMinecartContainer/m_7208_ (ILnet/minecraft/world/entity/player/Inventory;Lnet/minecraft/world/entity/player/Player;)Lnet/minecraft/world/inventory/AbstractContainerMenu; net/minecraft/world/entity/vehicle/AbstractMinecartContainer/createMenu (ILnet/minecraft/world/entity/player/Inventory;Lnet/minecraft/world/entity/player/Player;)Lnet/minecraft/world/inventory/AbstractContainerMenu; +MD: net/minecraft/world/entity/vehicle/AbstractMinecartContainer/m_7378_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/entity/vehicle/AbstractMinecartContainer/readAdditionalSaveData (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/entity/vehicle/AbstractMinecartContainer/m_7380_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/entity/vehicle/AbstractMinecartContainer/addAdditionalSaveData (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/entity/vehicle/AbstractMinecartContainer/m_7402_ (ILnet/minecraft/world/entity/player/Inventory;)Lnet/minecraft/world/inventory/AbstractContainerMenu; net/minecraft/world/entity/vehicle/AbstractMinecartContainer/createMenu (ILnet/minecraft/world/entity/player/Inventory;)Lnet/minecraft/world/inventory/AbstractContainerMenu; +MD: net/minecraft/world/entity/vehicle/AbstractMinecartContainer/m_7407_ (II)Lnet/minecraft/world/item/ItemStack; net/minecraft/world/entity/vehicle/AbstractMinecartContainer/removeItem (II)Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/entity/vehicle/AbstractMinecartContainer/m_7617_ (Lnet/minecraft/world/damagesource/DamageSource;)V net/minecraft/world/entity/vehicle/AbstractMinecartContainer/destroy (Lnet/minecraft/world/damagesource/DamageSource;)V +MD: net/minecraft/world/entity/vehicle/AbstractMinecartContainer/m_8016_ (I)Lnet/minecraft/world/item/ItemStack; net/minecraft/world/entity/vehicle/AbstractMinecartContainer/removeItemNoUpdate (I)Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/entity/vehicle/AbstractMinecartContainer/m_8020_ (I)Lnet/minecraft/world/item/ItemStack; net/minecraft/world/entity/vehicle/AbstractMinecartContainer/getItem (I)Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/entity/vehicle/Boat/ ()V net/minecraft/world/entity/vehicle/Boat/ ()V +MD: net/minecraft/world/entity/vehicle/Boat/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V net/minecraft/world/entity/vehicle/Boat/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V +MD: net/minecraft/world/entity/vehicle/Boat/ (Lnet/minecraft/world/level/Level;DDD)V net/minecraft/world/entity/vehicle/Boat/ (Lnet/minecraft/world/level/Level;DDD)V +MD: net/minecraft/world/entity/vehicle/Boat/m_142319_ ()Lnet/minecraft/world/entity/Entity$MovementEmission; net/minecraft/world/entity/vehicle/Boat/getMovementEmission ()Lnet/minecraft/world/entity/Entity$MovementEmission; +MD: net/minecraft/world/entity/vehicle/Boat/m_142340_ ()Lnet/minecraft/world/item/ItemStack; net/minecraft/world/entity/vehicle/Boat/getPickResult ()Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/entity/vehicle/Boat/m_150273_ (Lnet/minecraft/world/entity/Entity;)Z net/minecraft/world/entity/vehicle/Boat/lambda$tickBubbleColumn$0 (Lnet/minecraft/world/entity/Entity;)Z +MD: net/minecraft/world/entity/vehicle/Boat/m_19956_ (Lnet/minecraft/world/entity/Entity;Lnet/minecraft/world/entity/Entity$MoveFunction;)V net/minecraft/world/entity/vehicle/Boat/positionRider (Lnet/minecraft/world/entity/Entity;Lnet/minecraft/world/entity/Entity$MoveFunction;)V +MD: net/minecraft/world/entity/vehicle/Boat/m_213560_ (Lnet/minecraft/world/damagesource/DamageSource;)V net/minecraft/world/entity/vehicle/Boat/destroy (Lnet/minecraft/world/damagesource/DamageSource;)V +MD: net/minecraft/world/entity/vehicle/Boat/m_213801_ ()I net/minecraft/world/entity/vehicle/Boat/getMaxPassengers ()I +MD: net/minecraft/world/entity/vehicle/Boat/m_213802_ ()F net/minecraft/world/entity/vehicle/Boat/getSinglePassengerXOffset ()F +MD: net/minecraft/world/entity/vehicle/Boat/m_271938_ (Lnet/minecraft/world/entity/Entity;)Z net/minecraft/world/entity/vehicle/Boat/hasEnoughSpaceFor (Lnet/minecraft/world/entity/Entity;)Z +MD: net/minecraft/world/entity/vehicle/Boat/m_28464_ (Lnet/minecraft/world/entity/vehicle/Boat$Type;)V net/minecraft/world/entity/vehicle/Boat/setVariant (Lnet/minecraft/world/entity/vehicle/Boat$Type;)V +MD: net/minecraft/world/entity/vehicle/Boat/m_28464_ (Ljava/lang/Object;)V net/minecraft/world/entity/vehicle/Boat/setVariant (Ljava/lang/Object;)V +MD: net/minecraft/world/entity/vehicle/Boat/m_28554_ ()Ljava/lang/Object; net/minecraft/world/entity/vehicle/Boat/getVariant ()Ljava/lang/Object; +MD: net/minecraft/world/entity/vehicle/Boat/m_28554_ ()Lnet/minecraft/world/entity/vehicle/Boat$Type; net/minecraft/world/entity/vehicle/Boat/getVariant ()Lnet/minecraft/world/entity/vehicle/Boat$Type; +MD: net/minecraft/world/entity/vehicle/Boat/m_38311_ (F)V net/minecraft/world/entity/vehicle/Boat/setDamage (F)V +MD: net/minecraft/world/entity/vehicle/Boat/m_38313_ (I)Z net/minecraft/world/entity/vehicle/Boat/getPaddleState (I)Z +MD: net/minecraft/world/entity/vehicle/Boat/m_38315_ (IF)F net/minecraft/world/entity/vehicle/Boat/getRowingTime (IF)F +MD: net/minecraft/world/entity/vehicle/Boat/m_38321_ (Lnet/minecraft/world/entity/Entity;)V net/minecraft/world/entity/vehicle/Boat/clampRotation (Lnet/minecraft/world/entity/Entity;)V +MD: net/minecraft/world/entity/vehicle/Boat/m_38323_ (Lnet/minecraft/world/entity/Entity;Lnet/minecraft/world/entity/Entity;)Z net/minecraft/world/entity/vehicle/Boat/canVehicleCollide (Lnet/minecraft/world/entity/Entity;Lnet/minecraft/world/entity/Entity;)Z +MD: net/minecraft/world/entity/vehicle/Boat/m_38339_ (ZZ)V net/minecraft/world/entity/vehicle/Boat/setPaddleState (ZZ)V +MD: net/minecraft/world/entity/vehicle/Boat/m_38342_ (ZZZZ)V net/minecraft/world/entity/vehicle/Boat/setInput (ZZZZ)V +MD: net/minecraft/world/entity/vehicle/Boat/m_38352_ (F)F net/minecraft/world/entity/vehicle/Boat/getBubbleAngle (F)F +MD: net/minecraft/world/entity/vehicle/Boat/m_38354_ (I)V net/minecraft/world/entity/vehicle/Boat/setHurtTime (I)V +MD: net/minecraft/world/entity/vehicle/Boat/m_38362_ (I)V net/minecraft/world/entity/vehicle/Boat/setHurtDir (I)V +MD: net/minecraft/world/entity/vehicle/Boat/m_38366_ (I)V net/minecraft/world/entity/vehicle/Boat/setBubbleTime (I)V +MD: net/minecraft/world/entity/vehicle/Boat/m_38369_ ()Lnet/minecraft/world/item/Item; net/minecraft/world/entity/vehicle/Boat/getDropItem ()Lnet/minecraft/world/item/Item; +MD: net/minecraft/world/entity/vehicle/Boat/m_38370_ ()Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/entity/vehicle/Boat/getPaddleSound ()Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/entity/vehicle/Boat/m_38371_ ()F net/minecraft/world/entity/vehicle/Boat/getWaterLevelAbove ()F +MD: net/minecraft/world/entity/vehicle/Boat/m_38377_ ()F net/minecraft/world/entity/vehicle/Boat/getGroundFriction ()F +MD: net/minecraft/world/entity/vehicle/Boat/m_38384_ ()F net/minecraft/world/entity/vehicle/Boat/getDamage ()F +MD: net/minecraft/world/entity/vehicle/Boat/m_38385_ ()I net/minecraft/world/entity/vehicle/Boat/getHurtTime ()I +MD: net/minecraft/world/entity/vehicle/Boat/m_38386_ ()I net/minecraft/world/entity/vehicle/Boat/getHurtDir ()I +MD: net/minecraft/world/entity/vehicle/Boat/m_38388_ ()V net/minecraft/world/entity/vehicle/Boat/tickBubbleColumn ()V +MD: net/minecraft/world/entity/vehicle/Boat/m_38391_ ()V net/minecraft/world/entity/vehicle/Boat/tickLerp ()V +MD: net/minecraft/world/entity/vehicle/Boat/m_38392_ ()Lnet/minecraft/world/entity/vehicle/Boat$Status; net/minecraft/world/entity/vehicle/Boat/getStatus ()Lnet/minecraft/world/entity/vehicle/Boat$Status; +MD: net/minecraft/world/entity/vehicle/Boat/m_38393_ ()Z net/minecraft/world/entity/vehicle/Boat/checkInWater ()Z +MD: net/minecraft/world/entity/vehicle/Boat/m_38394_ ()Lnet/minecraft/world/entity/vehicle/Boat$Status; net/minecraft/world/entity/vehicle/Boat/isUnderwater ()Lnet/minecraft/world/entity/vehicle/Boat$Status; +MD: net/minecraft/world/entity/vehicle/Boat/m_38395_ ()V net/minecraft/world/entity/vehicle/Boat/floatBoat ()V +MD: net/minecraft/world/entity/vehicle/Boat/m_38396_ ()V net/minecraft/world/entity/vehicle/Boat/controlBoat ()V +MD: net/minecraft/world/entity/vehicle/Boat/m_38397_ ()I net/minecraft/world/entity/vehicle/Boat/getBubbleTime ()I +MD: net/minecraft/world/entity/vehicle/Boat/m_5829_ ()Z net/minecraft/world/entity/vehicle/Boat/canBeCollidedWith ()Z +MD: net/minecraft/world/entity/vehicle/Boat/m_5842_ ()Z net/minecraft/world/entity/vehicle/Boat/isUnderWater ()Z +MD: net/minecraft/world/entity/vehicle/Boat/m_6048_ ()D net/minecraft/world/entity/vehicle/Boat/getPassengersRidingOffset ()D +MD: net/minecraft/world/entity/vehicle/Boat/m_6053_ (F)V net/minecraft/world/entity/vehicle/Boat/animateHurt (F)V +MD: net/minecraft/world/entity/vehicle/Boat/m_6087_ ()Z net/minecraft/world/entity/vehicle/Boat/isPickable ()Z +MD: net/minecraft/world/entity/vehicle/Boat/m_6094_ ()Z net/minecraft/world/entity/vehicle/Boat/isPushable ()Z +MD: net/minecraft/world/entity/vehicle/Boat/m_6096_ (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;)Lnet/minecraft/world/InteractionResult; net/minecraft/world/entity/vehicle/Boat/interact (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;)Lnet/minecraft/world/InteractionResult; +MD: net/minecraft/world/entity/vehicle/Boat/m_6374_ ()Lnet/minecraft/core/Direction; net/minecraft/world/entity/vehicle/Boat/getMotionDirection ()Lnet/minecraft/core/Direction; +MD: net/minecraft/world/entity/vehicle/Boat/m_6380_ (Lnet/minecraft/world/entity/Pose;Lnet/minecraft/world/entity/EntityDimensions;)F net/minecraft/world/entity/vehicle/Boat/getEyeHeight (Lnet/minecraft/world/entity/Pose;Lnet/minecraft/world/entity/EntityDimensions;)F +MD: net/minecraft/world/entity/vehicle/Boat/m_6453_ (DDDFFIZ)V net/minecraft/world/entity/vehicle/Boat/lerpTo (DDDFFIZ)V +MD: net/minecraft/world/entity/vehicle/Boat/m_6469_ (Lnet/minecraft/world/damagesource/DamageSource;F)Z net/minecraft/world/entity/vehicle/Boat/hurt (Lnet/minecraft/world/damagesource/DamageSource;F)Z +MD: net/minecraft/world/entity/vehicle/Boat/m_6688_ ()Lnet/minecraft/world/entity/LivingEntity; net/minecraft/world/entity/vehicle/Boat/getControllingPassenger ()Lnet/minecraft/world/entity/LivingEntity; +MD: net/minecraft/world/entity/vehicle/Boat/m_6845_ (Z)V net/minecraft/world/entity/vehicle/Boat/onAboveBubbleCol (Z)V +MD: net/minecraft/world/entity/vehicle/Boat/m_7310_ (Lnet/minecraft/world/entity/Entity;)Z net/minecraft/world/entity/vehicle/Boat/canAddPassenger (Lnet/minecraft/world/entity/Entity;)Z +MD: net/minecraft/world/entity/vehicle/Boat/m_7334_ (Lnet/minecraft/world/entity/Entity;)V net/minecraft/world/entity/vehicle/Boat/push (Lnet/minecraft/world/entity/Entity;)V +MD: net/minecraft/world/entity/vehicle/Boat/m_7337_ (Lnet/minecraft/world/entity/Entity;)Z net/minecraft/world/entity/vehicle/Boat/canCollideWith (Lnet/minecraft/world/entity/Entity;)Z +MD: net/minecraft/world/entity/vehicle/Boat/m_7340_ (Lnet/minecraft/world/entity/Entity;)V net/minecraft/world/entity/vehicle/Boat/onPassengerTurned (Lnet/minecraft/world/entity/Entity;)V +MD: net/minecraft/world/entity/vehicle/Boat/m_7378_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/entity/vehicle/Boat/readAdditionalSaveData (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/entity/vehicle/Boat/m_7380_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/entity/vehicle/Boat/addAdditionalSaveData (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/entity/vehicle/Boat/m_7643_ (Lnet/minecraft/core/Direction$Axis;Lnet/minecraft/BlockUtil$FoundRectangle;)Lnet/minecraft/world/phys/Vec3; net/minecraft/world/entity/vehicle/Boat/getRelativePortalPosition (Lnet/minecraft/core/Direction$Axis;Lnet/minecraft/BlockUtil$FoundRectangle;)Lnet/minecraft/world/phys/Vec3; +MD: net/minecraft/world/entity/vehicle/Boat/m_7688_ (Lnet/minecraft/world/entity/LivingEntity;)Lnet/minecraft/world/phys/Vec3; net/minecraft/world/entity/vehicle/Boat/getDismountLocationForPassenger (Lnet/minecraft/world/entity/LivingEntity;)Lnet/minecraft/world/phys/Vec3; +MD: net/minecraft/world/entity/vehicle/Boat/m_7840_ (DZLnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/BlockPos;)V net/minecraft/world/entity/vehicle/Boat/checkFallDamage (DZLnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/world/entity/vehicle/Boat/m_8097_ ()V net/minecraft/world/entity/vehicle/Boat/defineSynchedData ()V +MD: net/minecraft/world/entity/vehicle/Boat/m_8119_ ()V net/minecraft/world/entity/vehicle/Boat/tick ()V +MD: net/minecraft/world/entity/vehicle/Boat$1/ ()V net/minecraft/world/entity/vehicle/Boat$1/ ()V +MD: net/minecraft/world/entity/vehicle/Boat$Status/ ()V net/minecraft/world/entity/vehicle/Boat$Status/ ()V +MD: net/minecraft/world/entity/vehicle/Boat$Status/ (Ljava/lang/String;I)V net/minecraft/world/entity/vehicle/Boat$Status/ (Ljava/lang/String;I)V +MD: net/minecraft/world/entity/vehicle/Boat$Status/m_150276_ ()[Lnet/minecraft/world/entity/vehicle/Boat$Status; net/minecraft/world/entity/vehicle/Boat$Status/$values ()[Lnet/minecraft/world/entity/vehicle/Boat$Status; +MD: net/minecraft/world/entity/vehicle/Boat$Status/valueOf (Ljava/lang/String;)Lnet/minecraft/world/entity/vehicle/Boat$Status; net/minecraft/world/entity/vehicle/Boat$Status/valueOf (Ljava/lang/String;)Lnet/minecraft/world/entity/vehicle/Boat$Status; +MD: net/minecraft/world/entity/vehicle/Boat$Status/values ()[Lnet/minecraft/world/entity/vehicle/Boat$Status; net/minecraft/world/entity/vehicle/Boat$Status/values ()[Lnet/minecraft/world/entity/vehicle/Boat$Status; +MD: net/minecraft/world/entity/vehicle/Boat$Type/ ()V net/minecraft/world/entity/vehicle/Boat$Type/ ()V +MD: net/minecraft/world/entity/vehicle/Boat$Type/ (Ljava/lang/String;ILnet/minecraft/world/level/block/Block;Ljava/lang/String;)V net/minecraft/world/entity/vehicle/Boat$Type/ (Ljava/lang/String;ILnet/minecraft/world/level/block/Block;Ljava/lang/String;)V +MD: net/minecraft/world/entity/vehicle/Boat$Type/m_150277_ ()[Lnet/minecraft/world/entity/vehicle/Boat$Type; net/minecraft/world/entity/vehicle/Boat$Type/$values ()[Lnet/minecraft/world/entity/vehicle/Boat$Type; +MD: net/minecraft/world/entity/vehicle/Boat$Type/m_38429_ ()Ljava/lang/String; net/minecraft/world/entity/vehicle/Boat$Type/getName ()Ljava/lang/String; +MD: net/minecraft/world/entity/vehicle/Boat$Type/m_38430_ (I)Lnet/minecraft/world/entity/vehicle/Boat$Type; net/minecraft/world/entity/vehicle/Boat$Type/byId (I)Lnet/minecraft/world/entity/vehicle/Boat$Type; +MD: net/minecraft/world/entity/vehicle/Boat$Type/m_38432_ (Ljava/lang/String;)Lnet/minecraft/world/entity/vehicle/Boat$Type; net/minecraft/world/entity/vehicle/Boat$Type/byName (Ljava/lang/String;)Lnet/minecraft/world/entity/vehicle/Boat$Type; +MD: net/minecraft/world/entity/vehicle/Boat$Type/m_38434_ ()Lnet/minecraft/world/level/block/Block; net/minecraft/world/entity/vehicle/Boat$Type/getPlanks ()Lnet/minecraft/world/level/block/Block; +MD: net/minecraft/world/entity/vehicle/Boat$Type/m_7912_ ()Ljava/lang/String; net/minecraft/world/entity/vehicle/Boat$Type/getSerializedName ()Ljava/lang/String; +MD: net/minecraft/world/entity/vehicle/Boat$Type/toString ()Ljava/lang/String; net/minecraft/world/entity/vehicle/Boat$Type/toString ()Ljava/lang/String; +MD: net/minecraft/world/entity/vehicle/Boat$Type/valueOf (Ljava/lang/String;)Lnet/minecraft/world/entity/vehicle/Boat$Type; net/minecraft/world/entity/vehicle/Boat$Type/valueOf (Ljava/lang/String;)Lnet/minecraft/world/entity/vehicle/Boat$Type; +MD: net/minecraft/world/entity/vehicle/Boat$Type/values ()[Lnet/minecraft/world/entity/vehicle/Boat$Type; net/minecraft/world/entity/vehicle/Boat$Type/values ()[Lnet/minecraft/world/entity/vehicle/Boat$Type; +MD: net/minecraft/world/entity/vehicle/ChestBoat/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V net/minecraft/world/entity/vehicle/ChestBoat/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V +MD: net/minecraft/world/entity/vehicle/ChestBoat/ (Lnet/minecraft/world/level/Level;DDD)V net/minecraft/world/entity/vehicle/ChestBoat/ (Lnet/minecraft/world/level/Level;DDD)V +MD: net/minecraft/world/entity/vehicle/ChestBoat/m_141942_ (I)Lnet/minecraft/world/entity/SlotAccess; net/minecraft/world/entity/vehicle/ChestBoat/getSlot (I)Lnet/minecraft/world/entity/SlotAccess; +MD: net/minecraft/world/entity/vehicle/ChestBoat/m_142687_ (Lnet/minecraft/world/entity/Entity$RemovalReason;)V net/minecraft/world/entity/vehicle/ChestBoat/remove (Lnet/minecraft/world/entity/Entity$RemovalReason;)V +MD: net/minecraft/world/entity/vehicle/ChestBoat/m_213560_ (Lnet/minecraft/world/damagesource/DamageSource;)V net/minecraft/world/entity/vehicle/ChestBoat/destroy (Lnet/minecraft/world/damagesource/DamageSource;)V +MD: net/minecraft/world/entity/vehicle/ChestBoat/m_213583_ (Lnet/minecraft/world/entity/player/Player;)V net/minecraft/world/entity/vehicle/ChestBoat/openCustomInventoryScreen (Lnet/minecraft/world/entity/player/Player;)V +MD: net/minecraft/world/entity/vehicle/ChestBoat/m_213659_ ()Lnet/minecraft/core/NonNullList; net/minecraft/world/entity/vehicle/ChestBoat/getItemStacks ()Lnet/minecraft/core/NonNullList; +MD: net/minecraft/world/entity/vehicle/ChestBoat/m_213775_ ()V net/minecraft/world/entity/vehicle/ChestBoat/clearItemStacks ()V +MD: net/minecraft/world/entity/vehicle/ChestBoat/m_213801_ ()I net/minecraft/world/entity/vehicle/ChestBoat/getMaxPassengers ()I +MD: net/minecraft/world/entity/vehicle/ChestBoat/m_213802_ ()F net/minecraft/world/entity/vehicle/ChestBoat/getSinglePassengerXOffset ()F +MD: net/minecraft/world/entity/vehicle/ChestBoat/m_213803_ ()J net/minecraft/world/entity/vehicle/ChestBoat/getLootTableSeed ()J +MD: net/minecraft/world/entity/vehicle/ChestBoat/m_214065_ (J)V net/minecraft/world/entity/vehicle/ChestBoat/setLootTableSeed (J)V +MD: net/minecraft/world/entity/vehicle/ChestBoat/m_214142_ ()Lnet/minecraft/resources/ResourceLocation; net/minecraft/world/entity/vehicle/ChestBoat/getLootTable ()Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/world/entity/vehicle/ChestBoat/m_214199_ (Lnet/minecraft/resources/ResourceLocation;)V net/minecraft/world/entity/vehicle/ChestBoat/setLootTable (Lnet/minecraft/resources/ResourceLocation;)V +MD: net/minecraft/world/entity/vehicle/ChestBoat/m_219913_ (Lnet/minecraft/world/entity/player/Player;)V net/minecraft/world/entity/vehicle/ChestBoat/unpackLootTable (Lnet/minecraft/world/entity/player/Player;)V +MD: net/minecraft/world/entity/vehicle/ChestBoat/m_38369_ ()Lnet/minecraft/world/item/Item; net/minecraft/world/entity/vehicle/ChestBoat/getDropItem ()Lnet/minecraft/world/item/Item; +MD: net/minecraft/world/entity/vehicle/ChestBoat/m_5785_ (Lnet/minecraft/world/entity/player/Player;)V net/minecraft/world/entity/vehicle/ChestBoat/stopOpen (Lnet/minecraft/world/entity/player/Player;)V +MD: net/minecraft/world/entity/vehicle/ChestBoat/m_6096_ (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;)Lnet/minecraft/world/InteractionResult; net/minecraft/world/entity/vehicle/ChestBoat/interact (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;)Lnet/minecraft/world/InteractionResult; +MD: net/minecraft/world/entity/vehicle/ChestBoat/m_6211_ ()V net/minecraft/world/entity/vehicle/ChestBoat/clearContent ()V +MD: net/minecraft/world/entity/vehicle/ChestBoat/m_6542_ (Lnet/minecraft/world/entity/player/Player;)Z net/minecraft/world/entity/vehicle/ChestBoat/stillValid (Lnet/minecraft/world/entity/player/Player;)Z +MD: net/minecraft/world/entity/vehicle/ChestBoat/m_6596_ ()V net/minecraft/world/entity/vehicle/ChestBoat/setChanged ()V +MD: net/minecraft/world/entity/vehicle/ChestBoat/m_6643_ ()I net/minecraft/world/entity/vehicle/ChestBoat/getContainerSize ()I +MD: net/minecraft/world/entity/vehicle/ChestBoat/m_6836_ (ILnet/minecraft/world/item/ItemStack;)V net/minecraft/world/entity/vehicle/ChestBoat/setItem (ILnet/minecraft/world/item/ItemStack;)V +MD: net/minecraft/world/entity/vehicle/ChestBoat/m_7208_ (ILnet/minecraft/world/entity/player/Inventory;Lnet/minecraft/world/entity/player/Player;)Lnet/minecraft/world/inventory/AbstractContainerMenu; net/minecraft/world/entity/vehicle/ChestBoat/createMenu (ILnet/minecraft/world/entity/player/Inventory;Lnet/minecraft/world/entity/player/Player;)Lnet/minecraft/world/inventory/AbstractContainerMenu; +MD: net/minecraft/world/entity/vehicle/ChestBoat/m_7378_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/entity/vehicle/ChestBoat/readAdditionalSaveData (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/entity/vehicle/ChestBoat/m_7380_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/entity/vehicle/ChestBoat/addAdditionalSaveData (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/entity/vehicle/ChestBoat/m_7407_ (II)Lnet/minecraft/world/item/ItemStack; net/minecraft/world/entity/vehicle/ChestBoat/removeItem (II)Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/entity/vehicle/ChestBoat/m_8016_ (I)Lnet/minecraft/world/item/ItemStack; net/minecraft/world/entity/vehicle/ChestBoat/removeItemNoUpdate (I)Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/entity/vehicle/ChestBoat/m_8020_ (I)Lnet/minecraft/world/item/ItemStack; net/minecraft/world/entity/vehicle/ChestBoat/getItem (I)Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/entity/vehicle/ChestBoat$1/ ()V net/minecraft/world/entity/vehicle/ChestBoat$1/ ()V +MD: net/minecraft/world/entity/vehicle/ContainerEntity/m_20182_ ()Lnet/minecraft/world/phys/Vec3; net/minecraft/world/entity/vehicle/ContainerEntity/position ()Lnet/minecraft/world/phys/Vec3; +MD: net/minecraft/world/entity/vehicle/ContainerEntity/m_213659_ ()Lnet/minecraft/core/NonNullList; net/minecraft/world/entity/vehicle/ContainerEntity/getItemStacks ()Lnet/minecraft/core/NonNullList; +MD: net/minecraft/world/entity/vehicle/ContainerEntity/m_213775_ ()V net/minecraft/world/entity/vehicle/ContainerEntity/clearItemStacks ()V +MD: net/minecraft/world/entity/vehicle/ContainerEntity/m_213803_ ()J net/minecraft/world/entity/vehicle/ContainerEntity/getLootTableSeed ()J +MD: net/minecraft/world/entity/vehicle/ContainerEntity/m_213877_ ()Z net/minecraft/world/entity/vehicle/ContainerEntity/isRemoved ()Z +MD: net/minecraft/world/entity/vehicle/ContainerEntity/m_214065_ (J)V net/minecraft/world/entity/vehicle/ContainerEntity/setLootTableSeed (J)V +MD: net/minecraft/world/entity/vehicle/ContainerEntity/m_214142_ ()Lnet/minecraft/resources/ResourceLocation; net/minecraft/world/entity/vehicle/ContainerEntity/getLootTable ()Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/world/entity/vehicle/ContainerEntity/m_214199_ (Lnet/minecraft/resources/ResourceLocation;)V net/minecraft/world/entity/vehicle/ContainerEntity/setLootTable (Lnet/minecraft/resources/ResourceLocation;)V +MD: net/minecraft/world/entity/vehicle/ContainerEntity/m_219927_ (Lnet/minecraft/world/damagesource/DamageSource;Lnet/minecraft/world/level/Level;Lnet/minecraft/world/entity/Entity;)V net/minecraft/world/entity/vehicle/ContainerEntity/chestVehicleDestroyed (Lnet/minecraft/world/damagesource/DamageSource;Lnet/minecraft/world/level/Level;Lnet/minecraft/world/entity/Entity;)V +MD: net/minecraft/world/entity/vehicle/ContainerEntity/m_219934_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/entity/vehicle/ContainerEntity/readChestVehicleSaveData (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/entity/vehicle/ContainerEntity/m_219936_ (II)Lnet/minecraft/world/item/ItemStack; net/minecraft/world/entity/vehicle/ContainerEntity/removeChestVehicleItem (II)Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/entity/vehicle/ContainerEntity/m_219940_ (ILnet/minecraft/world/item/ItemStack;)V net/minecraft/world/entity/vehicle/ContainerEntity/setChestVehicleItem (ILnet/minecraft/world/item/ItemStack;)V +MD: net/minecraft/world/entity/vehicle/ContainerEntity/m_219943_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/entity/vehicle/ContainerEntity/addChestVehicleSaveData (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/entity/vehicle/ContainerEntity/m_219945_ (I)Lnet/minecraft/world/item/ItemStack; net/minecraft/world/entity/vehicle/ContainerEntity/removeChestVehicleItemNoUpdate (I)Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/entity/vehicle/ContainerEntity/m_219947_ (I)Lnet/minecraft/world/item/ItemStack; net/minecraft/world/entity/vehicle/ContainerEntity/getChestVehicleItem (I)Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/entity/vehicle/ContainerEntity/m_219949_ (Lnet/minecraft/world/entity/player/Player;)V net/minecraft/world/entity/vehicle/ContainerEntity/unpackChestVehicleLootTable (Lnet/minecraft/world/entity/player/Player;)V +MD: net/minecraft/world/entity/vehicle/ContainerEntity/m_219951_ (I)Lnet/minecraft/world/entity/SlotAccess; net/minecraft/world/entity/vehicle/ContainerEntity/getChestVehicleSlot (I)Lnet/minecraft/world/entity/SlotAccess; +MD: net/minecraft/world/entity/vehicle/ContainerEntity/m_219953_ ()V net/minecraft/world/entity/vehicle/ContainerEntity/clearChestVehicleContent ()V +MD: net/minecraft/world/entity/vehicle/ContainerEntity/m_219954_ (Lnet/minecraft/world/entity/player/Player;)Z net/minecraft/world/entity/vehicle/ContainerEntity/isChestVehicleStillValid (Lnet/minecraft/world/entity/player/Player;)Z +MD: net/minecraft/world/entity/vehicle/ContainerEntity/m_219956_ ()Z net/minecraft/world/entity/vehicle/ContainerEntity/isChestVehicleEmpty ()Z +MD: net/minecraft/world/entity/vehicle/ContainerEntity/m_268996_ (Lnet/minecraft/world/entity/player/Player;)Lnet/minecraft/world/InteractionResult; net/minecraft/world/entity/vehicle/ContainerEntity/interactWithContainerVehicle (Lnet/minecraft/world/entity/player/Player;)Lnet/minecraft/world/InteractionResult; +MD: net/minecraft/world/entity/vehicle/ContainerEntity/m_7983_ ()Z net/minecraft/world/entity/vehicle/ContainerEntity/isEmpty ()Z +MD: net/minecraft/world/entity/vehicle/ContainerEntity/m_9236_ ()Lnet/minecraft/world/level/Level; net/minecraft/world/entity/vehicle/ContainerEntity/level ()Lnet/minecraft/world/level/Level; +MD: net/minecraft/world/entity/vehicle/ContainerEntity$1/ (Lnet/minecraft/world/entity/vehicle/ContainerEntity;I)V net/minecraft/world/entity/vehicle/ContainerEntity$1/ (Lnet/minecraft/world/entity/vehicle/ContainerEntity;I)V +MD: net/minecraft/world/entity/vehicle/ContainerEntity$1/m_142104_ (Lnet/minecraft/world/item/ItemStack;)Z net/minecraft/world/entity/vehicle/ContainerEntity$1/set (Lnet/minecraft/world/item/ItemStack;)Z +MD: net/minecraft/world/entity/vehicle/ContainerEntity$1/m_142196_ ()Lnet/minecraft/world/item/ItemStack; net/minecraft/world/entity/vehicle/ContainerEntity$1/get ()Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/entity/vehicle/DismountHelper/ ()V net/minecraft/world/entity/vehicle/DismountHelper/ ()V +MD: net/minecraft/world/entity/vehicle/DismountHelper/m_150279_ (Lnet/minecraft/world/level/CollisionGetter;Lnet/minecraft/world/phys/Vec3;Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/entity/Pose;)Z net/minecraft/world/entity/vehicle/DismountHelper/canDismountTo (Lnet/minecraft/world/level/CollisionGetter;Lnet/minecraft/world/phys/Vec3;Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/entity/Pose;)Z +MD: net/minecraft/world/entity/vehicle/DismountHelper/m_38439_ (D)Z net/minecraft/world/entity/vehicle/DismountHelper/isBlockFloorValid (D)Z +MD: net/minecraft/world/entity/vehicle/DismountHelper/m_38441_ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/CollisionGetter;Lnet/minecraft/core/BlockPos;Z)Lnet/minecraft/world/phys/Vec3; net/minecraft/world/entity/vehicle/DismountHelper/findSafeDismountLocation (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/CollisionGetter;Lnet/minecraft/core/BlockPos;Z)Lnet/minecraft/world/phys/Vec3; +MD: net/minecraft/world/entity/vehicle/DismountHelper/m_38446_ (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/phys/shapes/VoxelShape; net/minecraft/world/entity/vehicle/DismountHelper/nonClimbableShape (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/phys/shapes/VoxelShape; +MD: net/minecraft/world/entity/vehicle/DismountHelper/m_38456_ (Lnet/minecraft/world/level/CollisionGetter;Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/phys/AABB;)Z net/minecraft/world/entity/vehicle/DismountHelper/canDismountTo (Lnet/minecraft/world/level/CollisionGetter;Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/phys/AABB;)Z +MD: net/minecraft/world/entity/vehicle/DismountHelper/m_38460_ (Lnet/minecraft/world/level/CollisionGetter;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/phys/shapes/VoxelShape; net/minecraft/world/entity/vehicle/DismountHelper/lambda$findSafeDismountLocation$0 (Lnet/minecraft/world/level/CollisionGetter;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/phys/shapes/VoxelShape; +MD: net/minecraft/world/entity/vehicle/DismountHelper/m_38463_ (Lnet/minecraft/core/BlockPos;ILjava/util/function/Function;)D net/minecraft/world/entity/vehicle/DismountHelper/findCeilingFrom (Lnet/minecraft/core/BlockPos;ILjava/util/function/Function;)D +MD: net/minecraft/world/entity/vehicle/DismountHelper/m_38467_ (Lnet/minecraft/core/Direction;)[[I net/minecraft/world/entity/vehicle/DismountHelper/offsetsForDirection (Lnet/minecraft/core/Direction;)[[I +MD: net/minecraft/world/entity/vehicle/Minecart/ (Lnet/minecraft/world/level/Level;DDD)V net/minecraft/world/entity/vehicle/Minecart/ (Lnet/minecraft/world/level/Level;DDD)V +MD: net/minecraft/world/entity/vehicle/Minecart/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V net/minecraft/world/entity/vehicle/Minecart/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V +MD: net/minecraft/world/entity/vehicle/Minecart/m_213728_ ()Lnet/minecraft/world/item/Item; net/minecraft/world/entity/vehicle/Minecart/getDropItem ()Lnet/minecraft/world/item/Item; +MD: net/minecraft/world/entity/vehicle/Minecart/m_6025_ (IIIZ)V net/minecraft/world/entity/vehicle/Minecart/activateMinecart (IIIZ)V +MD: net/minecraft/world/entity/vehicle/Minecart/m_6064_ ()Lnet/minecraft/world/entity/vehicle/AbstractMinecart$Type; net/minecraft/world/entity/vehicle/Minecart/getMinecartType ()Lnet/minecraft/world/entity/vehicle/AbstractMinecart$Type; +MD: net/minecraft/world/entity/vehicle/Minecart/m_6096_ (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;)Lnet/minecraft/world/InteractionResult; net/minecraft/world/entity/vehicle/Minecart/interact (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;)Lnet/minecraft/world/InteractionResult; +MD: net/minecraft/world/entity/vehicle/MinecartChest/ (Lnet/minecraft/world/level/Level;DDD)V net/minecraft/world/entity/vehicle/MinecartChest/ (Lnet/minecraft/world/level/Level;DDD)V +MD: net/minecraft/world/entity/vehicle/MinecartChest/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V net/minecraft/world/entity/vehicle/MinecartChest/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V +MD: net/minecraft/world/entity/vehicle/MinecartChest/m_213728_ ()Lnet/minecraft/world/item/Item; net/minecraft/world/entity/vehicle/MinecartChest/getDropItem ()Lnet/minecraft/world/item/Item; +MD: net/minecraft/world/entity/vehicle/MinecartChest/m_5785_ (Lnet/minecraft/world/entity/player/Player;)V net/minecraft/world/entity/vehicle/MinecartChest/stopOpen (Lnet/minecraft/world/entity/player/Player;)V +MD: net/minecraft/world/entity/vehicle/MinecartChest/m_6064_ ()Lnet/minecraft/world/entity/vehicle/AbstractMinecart$Type; net/minecraft/world/entity/vehicle/MinecartChest/getMinecartType ()Lnet/minecraft/world/entity/vehicle/AbstractMinecart$Type; +MD: net/minecraft/world/entity/vehicle/MinecartChest/m_6096_ (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;)Lnet/minecraft/world/InteractionResult; net/minecraft/world/entity/vehicle/MinecartChest/interact (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;)Lnet/minecraft/world/InteractionResult; +MD: net/minecraft/world/entity/vehicle/MinecartChest/m_6390_ ()Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/entity/vehicle/MinecartChest/getDefaultDisplayBlockState ()Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/entity/vehicle/MinecartChest/m_6643_ ()I net/minecraft/world/entity/vehicle/MinecartChest/getContainerSize ()I +MD: net/minecraft/world/entity/vehicle/MinecartChest/m_7144_ ()I net/minecraft/world/entity/vehicle/MinecartChest/getDefaultDisplayOffset ()I +MD: net/minecraft/world/entity/vehicle/MinecartChest/m_7402_ (ILnet/minecraft/world/entity/player/Inventory;)Lnet/minecraft/world/inventory/AbstractContainerMenu; net/minecraft/world/entity/vehicle/MinecartChest/createMenu (ILnet/minecraft/world/entity/player/Inventory;)Lnet/minecraft/world/inventory/AbstractContainerMenu; +MD: net/minecraft/world/entity/vehicle/MinecartCommandBlock/ ()V net/minecraft/world/entity/vehicle/MinecartCommandBlock/ ()V +MD: net/minecraft/world/entity/vehicle/MinecartCommandBlock/ (Lnet/minecraft/world/level/Level;DDD)V net/minecraft/world/entity/vehicle/MinecartCommandBlock/ (Lnet/minecraft/world/level/Level;DDD)V +MD: net/minecraft/world/entity/vehicle/MinecartCommandBlock/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V net/minecraft/world/entity/vehicle/MinecartCommandBlock/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V +MD: net/minecraft/world/entity/vehicle/MinecartCommandBlock/m_213728_ ()Lnet/minecraft/world/item/Item; net/minecraft/world/entity/vehicle/MinecartCommandBlock/getDropItem ()Lnet/minecraft/world/item/Item; +MD: net/minecraft/world/entity/vehicle/MinecartCommandBlock/m_38534_ ()Lnet/minecraft/world/level/BaseCommandBlock; net/minecraft/world/entity/vehicle/MinecartCommandBlock/getCommandBlock ()Lnet/minecraft/world/level/BaseCommandBlock; +MD: net/minecraft/world/entity/vehicle/MinecartCommandBlock/m_6025_ (IIIZ)V net/minecraft/world/entity/vehicle/MinecartCommandBlock/activateMinecart (IIIZ)V +MD: net/minecraft/world/entity/vehicle/MinecartCommandBlock/m_6064_ ()Lnet/minecraft/world/entity/vehicle/AbstractMinecart$Type; net/minecraft/world/entity/vehicle/MinecartCommandBlock/getMinecartType ()Lnet/minecraft/world/entity/vehicle/AbstractMinecart$Type; +MD: net/minecraft/world/entity/vehicle/MinecartCommandBlock/m_6096_ (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;)Lnet/minecraft/world/InteractionResult; net/minecraft/world/entity/vehicle/MinecartCommandBlock/interact (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;)Lnet/minecraft/world/InteractionResult; +MD: net/minecraft/world/entity/vehicle/MinecartCommandBlock/m_6127_ ()Z net/minecraft/world/entity/vehicle/MinecartCommandBlock/onlyOpCanSetNbt ()Z +MD: net/minecraft/world/entity/vehicle/MinecartCommandBlock/m_6390_ ()Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/entity/vehicle/MinecartCommandBlock/getDefaultDisplayBlockState ()Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/entity/vehicle/MinecartCommandBlock/m_7350_ (Lnet/minecraft/network/syncher/EntityDataAccessor;)V net/minecraft/world/entity/vehicle/MinecartCommandBlock/onSyncedDataUpdated (Lnet/minecraft/network/syncher/EntityDataAccessor;)V +MD: net/minecraft/world/entity/vehicle/MinecartCommandBlock/m_7378_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/entity/vehicle/MinecartCommandBlock/readAdditionalSaveData (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/entity/vehicle/MinecartCommandBlock/m_7380_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/entity/vehicle/MinecartCommandBlock/addAdditionalSaveData (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/entity/vehicle/MinecartCommandBlock/m_8097_ ()V net/minecraft/world/entity/vehicle/MinecartCommandBlock/defineSynchedData ()V +MD: net/minecraft/world/entity/vehicle/MinecartCommandBlock$MinecartCommandBase/ (Lnet/minecraft/world/entity/vehicle/MinecartCommandBlock;)V net/minecraft/world/entity/vehicle/MinecartCommandBlock$MinecartCommandBase/ (Lnet/minecraft/world/entity/vehicle/MinecartCommandBlock;)V +MD: net/minecraft/world/entity/vehicle/MinecartCommandBlock$MinecartCommandBase/m_288209_ ()Z net/minecraft/world/entity/vehicle/MinecartCommandBlock$MinecartCommandBase/isValid ()Z +MD: net/minecraft/world/entity/vehicle/MinecartCommandBlock$MinecartCommandBase/m_38543_ ()Lnet/minecraft/world/entity/vehicle/MinecartCommandBlock; net/minecraft/world/entity/vehicle/MinecartCommandBlock$MinecartCommandBase/getMinecart ()Lnet/minecraft/world/entity/vehicle/MinecartCommandBlock; +MD: net/minecraft/world/entity/vehicle/MinecartCommandBlock$MinecartCommandBase/m_5991_ ()Lnet/minecraft/server/level/ServerLevel; net/minecraft/world/entity/vehicle/MinecartCommandBlock$MinecartCommandBase/getLevel ()Lnet/minecraft/server/level/ServerLevel; +MD: net/minecraft/world/entity/vehicle/MinecartCommandBlock$MinecartCommandBase/m_6607_ ()Lnet/minecraft/world/phys/Vec3; net/minecraft/world/entity/vehicle/MinecartCommandBlock$MinecartCommandBase/getPosition ()Lnet/minecraft/world/phys/Vec3; +MD: net/minecraft/world/entity/vehicle/MinecartCommandBlock$MinecartCommandBase/m_6712_ ()Lnet/minecraft/commands/CommandSourceStack; net/minecraft/world/entity/vehicle/MinecartCommandBlock$MinecartCommandBase/createCommandSourceStack ()Lnet/minecraft/commands/CommandSourceStack; +MD: net/minecraft/world/entity/vehicle/MinecartCommandBlock$MinecartCommandBase/m_7368_ ()V net/minecraft/world/entity/vehicle/MinecartCommandBlock$MinecartCommandBase/onUpdated ()V +MD: net/minecraft/world/entity/vehicle/MinecartFurnace/ ()V net/minecraft/world/entity/vehicle/MinecartFurnace/ ()V +MD: net/minecraft/world/entity/vehicle/MinecartFurnace/ (Lnet/minecraft/world/level/Level;DDD)V net/minecraft/world/entity/vehicle/MinecartFurnace/ (Lnet/minecraft/world/level/Level;DDD)V +MD: net/minecraft/world/entity/vehicle/MinecartFurnace/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V net/minecraft/world/entity/vehicle/MinecartFurnace/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V +MD: net/minecraft/world/entity/vehicle/MinecartFurnace/m_213728_ ()Lnet/minecraft/world/item/Item; net/minecraft/world/entity/vehicle/MinecartFurnace/getDropItem ()Lnet/minecraft/world/item/Item; +MD: net/minecraft/world/entity/vehicle/MinecartFurnace/m_38576_ (Z)V net/minecraft/world/entity/vehicle/MinecartFurnace/setHasFuel (Z)V +MD: net/minecraft/world/entity/vehicle/MinecartFurnace/m_38579_ ()Z net/minecraft/world/entity/vehicle/MinecartFurnace/hasFuel ()Z +MD: net/minecraft/world/entity/vehicle/MinecartFurnace/m_6064_ ()Lnet/minecraft/world/entity/vehicle/AbstractMinecart$Type; net/minecraft/world/entity/vehicle/MinecartFurnace/getMinecartType ()Lnet/minecraft/world/entity/vehicle/AbstractMinecart$Type; +MD: net/minecraft/world/entity/vehicle/MinecartFurnace/m_6096_ (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;)Lnet/minecraft/world/InteractionResult; net/minecraft/world/entity/vehicle/MinecartFurnace/interact (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;)Lnet/minecraft/world/InteractionResult; +MD: net/minecraft/world/entity/vehicle/MinecartFurnace/m_6390_ ()Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/entity/vehicle/MinecartFurnace/getDefaultDisplayBlockState ()Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/entity/vehicle/MinecartFurnace/m_6401_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V net/minecraft/world/entity/vehicle/MinecartFurnace/moveAlongTrack (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V +MD: net/minecraft/world/entity/vehicle/MinecartFurnace/m_7097_ ()D net/minecraft/world/entity/vehicle/MinecartFurnace/getMaxSpeed ()D +MD: net/minecraft/world/entity/vehicle/MinecartFurnace/m_7114_ ()V net/minecraft/world/entity/vehicle/MinecartFurnace/applyNaturalSlowdown ()V +MD: net/minecraft/world/entity/vehicle/MinecartFurnace/m_7378_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/entity/vehicle/MinecartFurnace/readAdditionalSaveData (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/entity/vehicle/MinecartFurnace/m_7380_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/entity/vehicle/MinecartFurnace/addAdditionalSaveData (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/entity/vehicle/MinecartFurnace/m_8097_ ()V net/minecraft/world/entity/vehicle/MinecartFurnace/defineSynchedData ()V +MD: net/minecraft/world/entity/vehicle/MinecartFurnace/m_8119_ ()V net/minecraft/world/entity/vehicle/MinecartFurnace/tick ()V +MD: net/minecraft/world/entity/vehicle/MinecartHopper/ (Lnet/minecraft/world/level/Level;DDD)V net/minecraft/world/entity/vehicle/MinecartHopper/ (Lnet/minecraft/world/level/Level;DDD)V +MD: net/minecraft/world/entity/vehicle/MinecartHopper/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V net/minecraft/world/entity/vehicle/MinecartHopper/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V +MD: net/minecraft/world/entity/vehicle/MinecartHopper/m_213728_ ()Lnet/minecraft/world/item/Item; net/minecraft/world/entity/vehicle/MinecartHopper/getDropItem ()Lnet/minecraft/world/item/Item; +MD: net/minecraft/world/entity/vehicle/MinecartHopper/m_38592_ ()Z net/minecraft/world/entity/vehicle/MinecartHopper/suckInItems ()Z +MD: net/minecraft/world/entity/vehicle/MinecartHopper/m_38613_ (Z)V net/minecraft/world/entity/vehicle/MinecartHopper/setEnabled (Z)V +MD: net/minecraft/world/entity/vehicle/MinecartHopper/m_38617_ ()Z net/minecraft/world/entity/vehicle/MinecartHopper/isEnabled ()Z +MD: net/minecraft/world/entity/vehicle/MinecartHopper/m_6025_ (IIIZ)V net/minecraft/world/entity/vehicle/MinecartHopper/activateMinecart (IIIZ)V +MD: net/minecraft/world/entity/vehicle/MinecartHopper/m_6064_ ()Lnet/minecraft/world/entity/vehicle/AbstractMinecart$Type; net/minecraft/world/entity/vehicle/MinecartHopper/getMinecartType ()Lnet/minecraft/world/entity/vehicle/AbstractMinecart$Type; +MD: net/minecraft/world/entity/vehicle/MinecartHopper/m_6343_ ()D net/minecraft/world/entity/vehicle/MinecartHopper/getLevelX ()D +MD: net/minecraft/world/entity/vehicle/MinecartHopper/m_6358_ ()D net/minecraft/world/entity/vehicle/MinecartHopper/getLevelY ()D +MD: net/minecraft/world/entity/vehicle/MinecartHopper/m_6390_ ()Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/entity/vehicle/MinecartHopper/getDefaultDisplayBlockState ()Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/entity/vehicle/MinecartHopper/m_6446_ ()D net/minecraft/world/entity/vehicle/MinecartHopper/getLevelZ ()D +MD: net/minecraft/world/entity/vehicle/MinecartHopper/m_6643_ ()I net/minecraft/world/entity/vehicle/MinecartHopper/getContainerSize ()I +MD: net/minecraft/world/entity/vehicle/MinecartHopper/m_7144_ ()I net/minecraft/world/entity/vehicle/MinecartHopper/getDefaultDisplayOffset ()I +MD: net/minecraft/world/entity/vehicle/MinecartHopper/m_7378_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/entity/vehicle/MinecartHopper/readAdditionalSaveData (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/entity/vehicle/MinecartHopper/m_7380_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/entity/vehicle/MinecartHopper/addAdditionalSaveData (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/entity/vehicle/MinecartHopper/m_7402_ (ILnet/minecraft/world/entity/player/Inventory;)Lnet/minecraft/world/inventory/AbstractContainerMenu; net/minecraft/world/entity/vehicle/MinecartHopper/createMenu (ILnet/minecraft/world/entity/player/Inventory;)Lnet/minecraft/world/inventory/AbstractContainerMenu; +MD: net/minecraft/world/entity/vehicle/MinecartHopper/m_8119_ ()V net/minecraft/world/entity/vehicle/MinecartHopper/tick ()V +MD: net/minecraft/world/entity/vehicle/MinecartSpawner/ (Lnet/minecraft/world/level/Level;DDD)V net/minecraft/world/entity/vehicle/MinecartSpawner/ (Lnet/minecraft/world/level/Level;DDD)V +MD: net/minecraft/world/entity/vehicle/MinecartSpawner/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V net/minecraft/world/entity/vehicle/MinecartSpawner/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V +MD: net/minecraft/world/entity/vehicle/MinecartSpawner/m_150334_ (Lnet/minecraft/world/level/Level;)Ljava/lang/Runnable; net/minecraft/world/entity/vehicle/MinecartSpawner/createTicker (Lnet/minecraft/world/level/Level;)Ljava/lang/Runnable; +MD: net/minecraft/world/entity/vehicle/MinecartSpawner/m_150340_ ()Lnet/minecraft/world/level/BaseSpawner; net/minecraft/world/entity/vehicle/MinecartSpawner/getSpawner ()Lnet/minecraft/world/level/BaseSpawner; +MD: net/minecraft/world/entity/vehicle/MinecartSpawner/m_213728_ ()Lnet/minecraft/world/item/Item; net/minecraft/world/entity/vehicle/MinecartSpawner/getDropItem ()Lnet/minecraft/world/item/Item; +MD: net/minecraft/world/entity/vehicle/MinecartSpawner/m_289171_ (Lnet/minecraft/world/level/Level;)V net/minecraft/world/entity/vehicle/MinecartSpawner/lambda$createTicker$0 (Lnet/minecraft/world/level/Level;)V +MD: net/minecraft/world/entity/vehicle/MinecartSpawner/m_289172_ (Lnet/minecraft/world/level/Level;)V net/minecraft/world/entity/vehicle/MinecartSpawner/lambda$createTicker$1 (Lnet/minecraft/world/level/Level;)V +MD: net/minecraft/world/entity/vehicle/MinecartSpawner/m_6064_ ()Lnet/minecraft/world/entity/vehicle/AbstractMinecart$Type; net/minecraft/world/entity/vehicle/MinecartSpawner/getMinecartType ()Lnet/minecraft/world/entity/vehicle/AbstractMinecart$Type; +MD: net/minecraft/world/entity/vehicle/MinecartSpawner/m_6127_ ()Z net/minecraft/world/entity/vehicle/MinecartSpawner/onlyOpCanSetNbt ()Z +MD: net/minecraft/world/entity/vehicle/MinecartSpawner/m_6390_ ()Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/entity/vehicle/MinecartSpawner/getDefaultDisplayBlockState ()Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/entity/vehicle/MinecartSpawner/m_7378_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/entity/vehicle/MinecartSpawner/readAdditionalSaveData (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/entity/vehicle/MinecartSpawner/m_7380_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/entity/vehicle/MinecartSpawner/addAdditionalSaveData (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/entity/vehicle/MinecartSpawner/m_7822_ (B)V net/minecraft/world/entity/vehicle/MinecartSpawner/handleEntityEvent (B)V +MD: net/minecraft/world/entity/vehicle/MinecartSpawner/m_8119_ ()V net/minecraft/world/entity/vehicle/MinecartSpawner/tick ()V +MD: net/minecraft/world/entity/vehicle/MinecartSpawner$1/ (Lnet/minecraft/world/entity/vehicle/MinecartSpawner;)V net/minecraft/world/entity/vehicle/MinecartSpawner$1/ (Lnet/minecraft/world/entity/vehicle/MinecartSpawner;)V +MD: net/minecraft/world/entity/vehicle/MinecartSpawner$1/m_142523_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;I)V net/minecraft/world/entity/vehicle/MinecartSpawner$1/broadcastEvent (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;I)V +MD: net/minecraft/world/entity/vehicle/MinecartTNT/ (Lnet/minecraft/world/level/Level;DDD)V net/minecraft/world/entity/vehicle/MinecartTNT/ (Lnet/minecraft/world/level/Level;DDD)V +MD: net/minecraft/world/entity/vehicle/MinecartTNT/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V net/minecraft/world/entity/vehicle/MinecartTNT/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;)V +MD: net/minecraft/world/entity/vehicle/MinecartTNT/m_142535_ (FFLnet/minecraft/world/damagesource/DamageSource;)Z net/minecraft/world/entity/vehicle/MinecartTNT/causeFallDamage (FFLnet/minecraft/world/damagesource/DamageSource;)Z +MD: net/minecraft/world/entity/vehicle/MinecartTNT/m_213728_ ()Lnet/minecraft/world/item/Item; net/minecraft/world/entity/vehicle/MinecartTNT/getDropItem ()Lnet/minecraft/world/item/Item; +MD: net/minecraft/world/entity/vehicle/MinecartTNT/m_257440_ (Lnet/minecraft/world/damagesource/DamageSource;D)V net/minecraft/world/entity/vehicle/MinecartTNT/explode (Lnet/minecraft/world/damagesource/DamageSource;D)V +MD: net/minecraft/world/entity/vehicle/MinecartTNT/m_38688_ (D)V net/minecraft/world/entity/vehicle/MinecartTNT/explode (D)V +MD: net/minecraft/world/entity/vehicle/MinecartTNT/m_38693_ ()V net/minecraft/world/entity/vehicle/MinecartTNT/primeFuse ()V +MD: net/minecraft/world/entity/vehicle/MinecartTNT/m_38694_ ()I net/minecraft/world/entity/vehicle/MinecartTNT/getFuse ()I +MD: net/minecraft/world/entity/vehicle/MinecartTNT/m_38695_ ()Z net/minecraft/world/entity/vehicle/MinecartTNT/isPrimed ()Z +MD: net/minecraft/world/entity/vehicle/MinecartTNT/m_6025_ (IIIZ)V net/minecraft/world/entity/vehicle/MinecartTNT/activateMinecart (IIIZ)V +MD: net/minecraft/world/entity/vehicle/MinecartTNT/m_6064_ ()Lnet/minecraft/world/entity/vehicle/AbstractMinecart$Type; net/minecraft/world/entity/vehicle/MinecartTNT/getMinecartType ()Lnet/minecraft/world/entity/vehicle/AbstractMinecart$Type; +MD: net/minecraft/world/entity/vehicle/MinecartTNT/m_6390_ ()Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/entity/vehicle/MinecartTNT/getDefaultDisplayBlockState ()Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/entity/vehicle/MinecartTNT/m_6469_ (Lnet/minecraft/world/damagesource/DamageSource;F)Z net/minecraft/world/entity/vehicle/MinecartTNT/hurt (Lnet/minecraft/world/damagesource/DamageSource;F)Z +MD: net/minecraft/world/entity/vehicle/MinecartTNT/m_7077_ (Lnet/minecraft/world/level/Explosion;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/material/FluidState;F)F net/minecraft/world/entity/vehicle/MinecartTNT/getBlockExplosionResistance (Lnet/minecraft/world/level/Explosion;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/material/FluidState;F)F +MD: net/minecraft/world/entity/vehicle/MinecartTNT/m_7349_ (Lnet/minecraft/world/level/Explosion;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;F)Z net/minecraft/world/entity/vehicle/MinecartTNT/shouldBlockExplode (Lnet/minecraft/world/level/Explosion;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;F)Z +MD: net/minecraft/world/entity/vehicle/MinecartTNT/m_7378_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/entity/vehicle/MinecartTNT/readAdditionalSaveData (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/entity/vehicle/MinecartTNT/m_7380_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/entity/vehicle/MinecartTNT/addAdditionalSaveData (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/entity/vehicle/MinecartTNT/m_7617_ (Lnet/minecraft/world/damagesource/DamageSource;)V net/minecraft/world/entity/vehicle/MinecartTNT/destroy (Lnet/minecraft/world/damagesource/DamageSource;)V +MD: net/minecraft/world/entity/vehicle/MinecartTNT/m_7822_ (B)V net/minecraft/world/entity/vehicle/MinecartTNT/handleEntityEvent (B)V +MD: net/minecraft/world/entity/vehicle/MinecartTNT/m_8119_ ()V net/minecraft/world/entity/vehicle/MinecartTNT/tick ()V +MD: net/minecraft/world/flag/FeatureElement/ ()V net/minecraft/world/flag/FeatureElement/ ()V +MD: net/minecraft/world/flag/FeatureElement/m_245183_ ()Lnet/minecraft/world/flag/FeatureFlagSet; net/minecraft/world/flag/FeatureElement/requiredFeatures ()Lnet/minecraft/world/flag/FeatureFlagSet; +MD: net/minecraft/world/flag/FeatureElement/m_245993_ (Lnet/minecraft/world/flag/FeatureFlagSet;)Z net/minecraft/world/flag/FeatureElement/isEnabled (Lnet/minecraft/world/flag/FeatureFlagSet;)Z +MD: net/minecraft/world/flag/FeatureFlag/ (Lnet/minecraft/world/flag/FeatureFlagUniverse;I)V net/minecraft/world/flag/FeatureFlag/ (Lnet/minecraft/world/flag/FeatureFlagUniverse;I)V +MD: net/minecraft/world/flag/FeatureFlagRegistry/ ()V net/minecraft/world/flag/FeatureFlagRegistry/ ()V +MD: net/minecraft/world/flag/FeatureFlagRegistry/ (Lnet/minecraft/world/flag/FeatureFlagUniverse;Lnet/minecraft/world/flag/FeatureFlagSet;Ljava/util/Map;)V net/minecraft/world/flag/FeatureFlagRegistry/ (Lnet/minecraft/world/flag/FeatureFlagUniverse;Lnet/minecraft/world/flag/FeatureFlagSet;Ljava/util/Map;)V +MD: net/minecraft/world/flag/FeatureFlagRegistry/m_245213_ ()Lcom/mojang/serialization/Codec; net/minecraft/world/flag/FeatureFlagRegistry/codec ()Lcom/mojang/serialization/Codec; +MD: net/minecraft/world/flag/FeatureFlagRegistry/m_245474_ (Lnet/minecraft/resources/ResourceLocation;)V net/minecraft/world/flag/FeatureFlagRegistry/lambda$fromNames$0 (Lnet/minecraft/resources/ResourceLocation;)V +MD: net/minecraft/world/flag/FeatureFlagRegistry/m_245711_ (Lnet/minecraft/world/flag/FeatureFlagSet;)Ljava/util/List; net/minecraft/world/flag/FeatureFlagRegistry/lambda$codec$4 (Lnet/minecraft/world/flag/FeatureFlagSet;)Ljava/util/List; +MD: net/minecraft/world/flag/FeatureFlagRegistry/m_245769_ ([Lnet/minecraft/world/flag/FeatureFlag;)Lnet/minecraft/world/flag/FeatureFlagSet; net/minecraft/world/flag/FeatureFlagRegistry/subset ([Lnet/minecraft/world/flag/FeatureFlag;)Lnet/minecraft/world/flag/FeatureFlagSet; +MD: net/minecraft/world/flag/FeatureFlagRegistry/m_245829_ (Lnet/minecraft/world/flag/FeatureFlagSet;)Ljava/util/Set; net/minecraft/world/flag/FeatureFlagRegistry/toNames (Lnet/minecraft/world/flag/FeatureFlagSet;)Ljava/util/Set; +MD: net/minecraft/world/flag/FeatureFlagRegistry/m_245840_ (Lnet/minecraft/world/flag/FeatureFlagSet;Ljava/util/Set;Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/world/flag/FeatureFlag;)V net/minecraft/world/flag/FeatureFlagRegistry/lambda$toNames$1 (Lnet/minecraft/world/flag/FeatureFlagSet;Ljava/util/Set;Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/world/flag/FeatureFlag;)V +MD: net/minecraft/world/flag/FeatureFlagRegistry/m_246363_ (Lnet/minecraft/world/flag/FeatureFlagSet;)Z net/minecraft/world/flag/FeatureFlagRegistry/isSubset (Lnet/minecraft/world/flag/FeatureFlagSet;)Z +MD: net/minecraft/world/flag/FeatureFlagRegistry/m_247021_ (Ljava/lang/Iterable;Ljava/util/function/Consumer;)Lnet/minecraft/world/flag/FeatureFlagSet; net/minecraft/world/flag/FeatureFlagRegistry/fromNames (Ljava/lang/Iterable;Ljava/util/function/Consumer;)Lnet/minecraft/world/flag/FeatureFlagSet; +MD: net/minecraft/world/flag/FeatureFlagRegistry/m_247355_ ()Lnet/minecraft/world/flag/FeatureFlagSet; net/minecraft/world/flag/FeatureFlagRegistry/allFlags ()Lnet/minecraft/world/flag/FeatureFlagSet; +MD: net/minecraft/world/flag/FeatureFlagRegistry/m_247416_ (Ljava/lang/Iterable;)Lnet/minecraft/world/flag/FeatureFlagSet; net/minecraft/world/flag/FeatureFlagRegistry/fromNames (Ljava/lang/Iterable;)Lnet/minecraft/world/flag/FeatureFlagSet; +MD: net/minecraft/world/flag/FeatureFlagRegistry/m_274256_ (Ljava/util/Set;)Ljava/lang/String; net/minecraft/world/flag/FeatureFlagRegistry/lambda$codec$2 (Ljava/util/Set;)Ljava/lang/String; +MD: net/minecraft/world/flag/FeatureFlagRegistry/m_274257_ (Ljava/util/List;)Lcom/mojang/serialization/DataResult; net/minecraft/world/flag/FeatureFlagRegistry/lambda$codec$3 (Ljava/util/List;)Lcom/mojang/serialization/DataResult; +MD: net/minecraft/world/flag/FeatureFlagRegistry$Builder/ (Ljava/lang/String;)V net/minecraft/world/flag/FeatureFlagRegistry$Builder/ (Ljava/lang/String;)V +MD: net/minecraft/world/flag/FeatureFlagRegistry$Builder/m_245707_ ()Lnet/minecraft/world/flag/FeatureFlagRegistry; net/minecraft/world/flag/FeatureFlagRegistry$Builder/build ()Lnet/minecraft/world/flag/FeatureFlagRegistry; +MD: net/minecraft/world/flag/FeatureFlagRegistry$Builder/m_246015_ (Ljava/lang/String;)Lnet/minecraft/world/flag/FeatureFlag; net/minecraft/world/flag/FeatureFlagRegistry$Builder/createVanilla (Ljava/lang/String;)Lnet/minecraft/world/flag/FeatureFlag; +MD: net/minecraft/world/flag/FeatureFlagRegistry$Builder/m_247497_ (Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/world/flag/FeatureFlag; net/minecraft/world/flag/FeatureFlagRegistry$Builder/create (Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/world/flag/FeatureFlag; +MD: net/minecraft/world/flag/FeatureFlagSet/ ()V net/minecraft/world/flag/FeatureFlagSet/ ()V +MD: net/minecraft/world/flag/FeatureFlagSet/ (Lnet/minecraft/world/flag/FeatureFlagUniverse;J)V net/minecraft/world/flag/FeatureFlagSet/ (Lnet/minecraft/world/flag/FeatureFlagUniverse;J)V +MD: net/minecraft/world/flag/FeatureFlagSet/equals (Ljava/lang/Object;)Z net/minecraft/world/flag/FeatureFlagSet/equals (Ljava/lang/Object;)Z +MD: net/minecraft/world/flag/FeatureFlagSet/hashCode ()I net/minecraft/world/flag/FeatureFlagSet/hashCode ()I +MD: net/minecraft/world/flag/FeatureFlagSet/m_245120_ (Lnet/minecraft/world/flag/FeatureFlagUniverse;JLjava/lang/Iterable;)J net/minecraft/world/flag/FeatureFlagSet/computeMask (Lnet/minecraft/world/flag/FeatureFlagUniverse;JLjava/lang/Iterable;)J +MD: net/minecraft/world/flag/FeatureFlagSet/m_245372_ (Lnet/minecraft/world/flag/FeatureFlag;)Z net/minecraft/world/flag/FeatureFlagSet/contains (Lnet/minecraft/world/flag/FeatureFlag;)Z +MD: net/minecraft/world/flag/FeatureFlagSet/m_245702_ (Lnet/minecraft/world/flag/FeatureFlag;[Lnet/minecraft/world/flag/FeatureFlag;)Lnet/minecraft/world/flag/FeatureFlagSet; net/minecraft/world/flag/FeatureFlagSet/of (Lnet/minecraft/world/flag/FeatureFlag;[Lnet/minecraft/world/flag/FeatureFlag;)Lnet/minecraft/world/flag/FeatureFlagSet; +MD: net/minecraft/world/flag/FeatureFlagSet/m_246699_ (Lnet/minecraft/world/flag/FeatureFlagSet;)Lnet/minecraft/world/flag/FeatureFlagSet; net/minecraft/world/flag/FeatureFlagSet/join (Lnet/minecraft/world/flag/FeatureFlagSet;)Lnet/minecraft/world/flag/FeatureFlagSet; +MD: net/minecraft/world/flag/FeatureFlagSet/m_246902_ ()Lnet/minecraft/world/flag/FeatureFlagSet; net/minecraft/world/flag/FeatureFlagSet/of ()Lnet/minecraft/world/flag/FeatureFlagSet; +MD: net/minecraft/world/flag/FeatureFlagSet/m_247091_ (Lnet/minecraft/world/flag/FeatureFlag;)Lnet/minecraft/world/flag/FeatureFlagSet; net/minecraft/world/flag/FeatureFlagSet/of (Lnet/minecraft/world/flag/FeatureFlag;)Lnet/minecraft/world/flag/FeatureFlagSet; +MD: net/minecraft/world/flag/FeatureFlagSet/m_247438_ (Lnet/minecraft/world/flag/FeatureFlagUniverse;Ljava/util/Collection;)Lnet/minecraft/world/flag/FeatureFlagSet; net/minecraft/world/flag/FeatureFlagSet/create (Lnet/minecraft/world/flag/FeatureFlagUniverse;Ljava/util/Collection;)Lnet/minecraft/world/flag/FeatureFlagSet; +MD: net/minecraft/world/flag/FeatureFlagSet/m_247715_ (Lnet/minecraft/world/flag/FeatureFlagSet;)Z net/minecraft/world/flag/FeatureFlagSet/isSubsetOf (Lnet/minecraft/world/flag/FeatureFlagSet;)Z +MD: net/minecraft/world/flag/FeatureFlagUniverse/ (Ljava/lang/String;)V net/minecraft/world/flag/FeatureFlagUniverse/ (Ljava/lang/String;)V +MD: net/minecraft/world/flag/FeatureFlagUniverse/toString ()Ljava/lang/String; net/minecraft/world/flag/FeatureFlagUniverse/toString ()Ljava/lang/String; +MD: net/minecraft/world/flag/FeatureFlags/ ()V net/minecraft/world/flag/FeatureFlags/ ()V +MD: net/minecraft/world/flag/FeatureFlags/ ()V net/minecraft/world/flag/FeatureFlags/ ()V +MD: net/minecraft/world/flag/FeatureFlags/m_245229_ (Lnet/minecraft/world/flag/FeatureFlagSet;Lnet/minecraft/world/flag/FeatureFlagSet;)Ljava/lang/String; net/minecraft/world/flag/FeatureFlags/printMissingFlags (Lnet/minecraft/world/flag/FeatureFlagSet;Lnet/minecraft/world/flag/FeatureFlagSet;)Ljava/lang/String; +MD: net/minecraft/world/flag/FeatureFlags/m_246811_ (Lnet/minecraft/world/flag/FeatureFlagSet;)Z net/minecraft/world/flag/FeatureFlags/isExperimental (Lnet/minecraft/world/flag/FeatureFlagSet;)Z +MD: net/minecraft/world/flag/FeatureFlags/m_247097_ (Ljava/util/Set;Lnet/minecraft/resources/ResourceLocation;)Z net/minecraft/world/flag/FeatureFlags/lambda$printMissingFlags$0 (Ljava/util/Set;Lnet/minecraft/resources/ResourceLocation;)Z +MD: net/minecraft/world/flag/FeatureFlags/m_247250_ (Lnet/minecraft/world/flag/FeatureFlagRegistry;Lnet/minecraft/world/flag/FeatureFlagSet;Lnet/minecraft/world/flag/FeatureFlagSet;)Ljava/lang/String; net/minecraft/world/flag/FeatureFlags/printMissingFlags (Lnet/minecraft/world/flag/FeatureFlagRegistry;Lnet/minecraft/world/flag/FeatureFlagSet;Lnet/minecraft/world/flag/FeatureFlagSet;)Ljava/lang/String; +MD: net/minecraft/world/food/FoodConstants/ ()V net/minecraft/world/food/FoodConstants/ ()V +MD: net/minecraft/world/food/FoodData/ ()V net/minecraft/world/food/FoodData/ ()V +MD: net/minecraft/world/food/FoodData/m_150377_ ()I net/minecraft/world/food/FoodData/getLastFoodLevel ()I +MD: net/minecraft/world/food/FoodData/m_150378_ (F)V net/minecraft/world/food/FoodData/setExhaustion (F)V +MD: net/minecraft/world/food/FoodData/m_150380_ ()F net/minecraft/world/food/FoodData/getExhaustionLevel ()F +MD: net/minecraft/world/food/FoodData/m_38702_ ()I net/minecraft/world/food/FoodData/getFoodLevel ()I +MD: net/minecraft/world/food/FoodData/m_38703_ (F)V net/minecraft/world/food/FoodData/addExhaustion (F)V +MD: net/minecraft/world/food/FoodData/m_38705_ (I)V net/minecraft/world/food/FoodData/setFoodLevel (I)V +MD: net/minecraft/world/food/FoodData/m_38707_ (IF)V net/minecraft/world/food/FoodData/eat (IF)V +MD: net/minecraft/world/food/FoodData/m_38710_ (Lnet/minecraft/world/entity/player/Player;)V net/minecraft/world/food/FoodData/tick (Lnet/minecraft/world/entity/player/Player;)V +MD: net/minecraft/world/food/FoodData/m_38712_ (Lnet/minecraft/world/item/Item;Lnet/minecraft/world/item/ItemStack;)V net/minecraft/world/food/FoodData/eat (Lnet/minecraft/world/item/Item;Lnet/minecraft/world/item/ItemStack;)V +MD: net/minecraft/world/food/FoodData/m_38715_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/food/FoodData/readAdditionalSaveData (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/food/FoodData/m_38717_ (F)V net/minecraft/world/food/FoodData/setSaturation (F)V +MD: net/minecraft/world/food/FoodData/m_38719_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/food/FoodData/addAdditionalSaveData (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/food/FoodData/m_38721_ ()Z net/minecraft/world/food/FoodData/needsFood ()Z +MD: net/minecraft/world/food/FoodData/m_38722_ ()F net/minecraft/world/food/FoodData/getSaturationLevel ()F +MD: net/minecraft/world/food/FoodProperties/ (IFZZZLjava/util/List;)V net/minecraft/world/food/FoodProperties/ (IFZZZLjava/util/List;)V +MD: net/minecraft/world/food/FoodProperties/m_38744_ ()I net/minecraft/world/food/FoodProperties/getNutrition ()I +MD: net/minecraft/world/food/FoodProperties/m_38745_ ()F net/minecraft/world/food/FoodProperties/getSaturationModifier ()F +MD: net/minecraft/world/food/FoodProperties/m_38746_ ()Z net/minecraft/world/food/FoodProperties/isMeat ()Z +MD: net/minecraft/world/food/FoodProperties/m_38747_ ()Z net/minecraft/world/food/FoodProperties/canAlwaysEat ()Z +MD: net/minecraft/world/food/FoodProperties/m_38748_ ()Z net/minecraft/world/food/FoodProperties/isFastFood ()Z +MD: net/minecraft/world/food/FoodProperties/m_38749_ ()Ljava/util/List; net/minecraft/world/food/FoodProperties/getEffects ()Ljava/util/List; +MD: net/minecraft/world/food/FoodProperties$Builder/ ()V net/minecraft/world/food/FoodProperties$Builder/ ()V +MD: net/minecraft/world/food/FoodProperties$Builder/m_38757_ ()Lnet/minecraft/world/food/FoodProperties$Builder; net/minecraft/world/food/FoodProperties$Builder/meat ()Lnet/minecraft/world/food/FoodProperties$Builder; +MD: net/minecraft/world/food/FoodProperties$Builder/m_38758_ (F)Lnet/minecraft/world/food/FoodProperties$Builder; net/minecraft/world/food/FoodProperties$Builder/saturationMod (F)Lnet/minecraft/world/food/FoodProperties$Builder; +MD: net/minecraft/world/food/FoodProperties$Builder/m_38760_ (I)Lnet/minecraft/world/food/FoodProperties$Builder; net/minecraft/world/food/FoodProperties$Builder/nutrition (I)Lnet/minecraft/world/food/FoodProperties$Builder; +MD: net/minecraft/world/food/FoodProperties$Builder/m_38762_ (Lnet/minecraft/world/effect/MobEffectInstance;F)Lnet/minecraft/world/food/FoodProperties$Builder; net/minecraft/world/food/FoodProperties$Builder/effect (Lnet/minecraft/world/effect/MobEffectInstance;F)Lnet/minecraft/world/food/FoodProperties$Builder; +MD: net/minecraft/world/food/FoodProperties$Builder/m_38765_ ()Lnet/minecraft/world/food/FoodProperties$Builder; net/minecraft/world/food/FoodProperties$Builder/alwaysEat ()Lnet/minecraft/world/food/FoodProperties$Builder; +MD: net/minecraft/world/food/FoodProperties$Builder/m_38766_ ()Lnet/minecraft/world/food/FoodProperties$Builder; net/minecraft/world/food/FoodProperties$Builder/fast ()Lnet/minecraft/world/food/FoodProperties$Builder; +MD: net/minecraft/world/food/FoodProperties$Builder/m_38767_ ()Lnet/minecraft/world/food/FoodProperties; net/minecraft/world/food/FoodProperties$Builder/build ()Lnet/minecraft/world/food/FoodProperties; +MD: net/minecraft/world/food/Foods/ ()V net/minecraft/world/food/Foods/ ()V +MD: net/minecraft/world/food/Foods/ ()V net/minecraft/world/food/Foods/ ()V +MD: net/minecraft/world/food/Foods/m_150383_ (I)Lnet/minecraft/world/food/FoodProperties$Builder; net/minecraft/world/food/Foods/stew (I)Lnet/minecraft/world/food/FoodProperties$Builder; +MD: net/minecraft/world/inventory/AbstractContainerMenu/ ()V net/minecraft/world/inventory/AbstractContainerMenu/ ()V +MD: net/minecraft/world/inventory/AbstractContainerMenu/ (Lnet/minecraft/world/inventory/MenuType;I)V net/minecraft/world/inventory/AbstractContainerMenu/ (Lnet/minecraft/world/inventory/MenuType;I)V +MD: net/minecraft/world/inventory/AbstractContainerMenu/m_142503_ (Lnet/minecraft/world/item/ItemStack;)V net/minecraft/world/inventory/AbstractContainerMenu/setCarried (Lnet/minecraft/world/item/ItemStack;)V +MD: net/minecraft/world/inventory/AbstractContainerMenu/m_142621_ ()Lnet/minecraft/world/item/ItemStack; net/minecraft/world/inventory/AbstractContainerMenu/getCarried ()Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/inventory/AbstractContainerMenu/m_150399_ (IILnet/minecraft/world/inventory/ClickType;Lnet/minecraft/world/entity/player/Player;)V net/minecraft/world/inventory/AbstractContainerMenu/clicked (IILnet/minecraft/world/inventory/ClickType;Lnet/minecraft/world/entity/player/Player;)V +MD: net/minecraft/world/inventory/AbstractContainerMenu/m_150404_ (ILnet/minecraft/world/item/ItemStack;)V net/minecraft/world/inventory/AbstractContainerMenu/setRemoteSlot (ILnet/minecraft/world/item/ItemStack;)V +MD: net/minecraft/world/inventory/AbstractContainerMenu/m_150407_ (ILnet/minecraft/world/item/ItemStack;Ljava/util/function/Supplier;)V net/minecraft/world/inventory/AbstractContainerMenu/triggerSlotListeners (ILnet/minecraft/world/item/ItemStack;Ljava/util/function/Supplier;)V +MD: net/minecraft/world/inventory/AbstractContainerMenu/m_150411_ (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/Container;)V net/minecraft/world/inventory/AbstractContainerMenu/clearContainer (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/Container;)V +MD: net/minecraft/world/inventory/AbstractContainerMenu/m_150414_ (Lnet/minecraft/world/inventory/AbstractContainerMenu;)V net/minecraft/world/inventory/AbstractContainerMenu/transferState (Lnet/minecraft/world/inventory/AbstractContainerMenu;)V +MD: net/minecraft/world/inventory/AbstractContainerMenu/m_150416_ (Lnet/minecraft/world/inventory/ContainerSynchronizer;)V net/minecraft/world/inventory/AbstractContainerMenu/setSynchronizer (Lnet/minecraft/world/inventory/ContainerSynchronizer;)V +MD: net/minecraft/world/inventory/AbstractContainerMenu/m_150418_ (Lnet/minecraft/world/inventory/Slot;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/item/ItemStack;)V net/minecraft/world/inventory/AbstractContainerMenu/lambda$doClick$3 (Lnet/minecraft/world/inventory/Slot;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/item/ItemStack;)V +MD: net/minecraft/world/inventory/AbstractContainerMenu/m_150422_ (Lnet/minecraft/world/item/ItemStack;)V net/minecraft/world/inventory/AbstractContainerMenu/setRemoteCarried (Lnet/minecraft/world/item/ItemStack;)V +MD: net/minecraft/world/inventory/AbstractContainerMenu/m_150424_ (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/inventory/Slot;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/item/ItemStack;)V net/minecraft/world/inventory/AbstractContainerMenu/lambda$doClick$4 (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/inventory/Slot;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/item/ItemStack;)V +MD: net/minecraft/world/inventory/AbstractContainerMenu/m_150429_ ()V net/minecraft/world/inventory/AbstractContainerMenu/sendAllDataToRemote ()V +MD: net/minecraft/world/inventory/AbstractContainerMenu/m_150430_ (IILnet/minecraft/world/inventory/ClickType;Lnet/minecraft/world/entity/player/Player;)V net/minecraft/world/inventory/AbstractContainerMenu/doClick (IILnet/minecraft/world/inventory/ClickType;Lnet/minecraft/world/entity/player/Player;)V +MD: net/minecraft/world/inventory/AbstractContainerMenu/m_150435_ (ILnet/minecraft/world/item/ItemStack;Ljava/util/function/Supplier;)V net/minecraft/world/inventory/AbstractContainerMenu/synchronizeSlotToRemote (ILnet/minecraft/world/item/ItemStack;Ljava/util/function/Supplier;)V +MD: net/minecraft/world/inventory/AbstractContainerMenu/m_150440_ (II)V net/minecraft/world/inventory/AbstractContainerMenu/synchronizeDataSlotToRemote (II)V +MD: net/minecraft/world/inventory/AbstractContainerMenu/m_150443_ ()V net/minecraft/world/inventory/AbstractContainerMenu/suppressRemoteUpdates ()V +MD: net/minecraft/world/inventory/AbstractContainerMenu/m_150444_ ()V net/minecraft/world/inventory/AbstractContainerMenu/resumeRemoteUpdates ()V +MD: net/minecraft/world/inventory/AbstractContainerMenu/m_150445_ ()V net/minecraft/world/inventory/AbstractContainerMenu/synchronizeCarriedToRemote ()V +MD: net/minecraft/world/inventory/AbstractContainerMenu/m_150446_ ()Lnet/minecraft/world/entity/SlotAccess; net/minecraft/world/inventory/AbstractContainerMenu/createCarriedSlotAccess ()Lnet/minecraft/world/entity/SlotAccess; +MD: net/minecraft/world/inventory/AbstractContainerMenu/m_182406_ (IILnet/minecraft/world/item/ItemStack;)V net/minecraft/world/inventory/AbstractContainerMenu/setItem (IILnet/minecraft/world/item/ItemStack;)V +MD: net/minecraft/world/inventory/AbstractContainerMenu/m_182410_ (ILjava/util/List;Lnet/minecraft/world/item/ItemStack;)V net/minecraft/world/inventory/AbstractContainerMenu/initializeContents (ILjava/util/List;Lnet/minecraft/world/item/ItemStack;)V +MD: net/minecraft/world/inventory/AbstractContainerMenu/m_182414_ (ILnet/minecraft/world/item/ItemStack;)V net/minecraft/world/inventory/AbstractContainerMenu/setRemoteSlotNoCopy (ILnet/minecraft/world/item/ItemStack;)V +MD: net/minecraft/world/inventory/AbstractContainerMenu/m_182417_ (Lnet/minecraft/world/Container;I)Ljava/util/OptionalInt; net/minecraft/world/inventory/AbstractContainerMenu/findSlot (Lnet/minecraft/world/Container;I)Ljava/util/OptionalInt; +MD: net/minecraft/world/inventory/AbstractContainerMenu/m_182420_ (II)V net/minecraft/world/inventory/AbstractContainerMenu/updateDataSlotListeners (II)V +MD: net/minecraft/world/inventory/AbstractContainerMenu/m_182423_ ()V net/minecraft/world/inventory/AbstractContainerMenu/broadcastFullState ()V +MD: net/minecraft/world/inventory/AbstractContainerMenu/m_182424_ ()I net/minecraft/world/inventory/AbstractContainerMenu/getStateId ()I +MD: net/minecraft/world/inventory/AbstractContainerMenu/m_182425_ ()I net/minecraft/world/inventory/AbstractContainerMenu/incrementStateId ()I +MD: net/minecraft/world/inventory/AbstractContainerMenu/m_207775_ (I)Z net/minecraft/world/inventory/AbstractContainerMenu/isValidSlotIndex (I)Z +MD: net/minecraft/world/inventory/AbstractContainerMenu/m_246200_ (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/inventory/ClickAction;Lnet/minecraft/world/inventory/Slot;Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/item/ItemStack;)Z net/minecraft/world/inventory/AbstractContainerMenu/tryItemClickBehaviourOverride (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/inventory/ClickAction;Lnet/minecraft/world/inventory/Slot;Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/item/ItemStack;)Z +MD: net/minecraft/world/inventory/AbstractContainerMenu/m_257320_ ()Ljava/lang/String; net/minecraft/world/inventory/AbstractContainerMenu/lambda$clicked$1 ()Ljava/lang/String; +MD: net/minecraft/world/inventory/AbstractContainerMenu/m_278794_ (Ljava/util/Set;ILnet/minecraft/world/item/ItemStack;)I net/minecraft/world/inventory/AbstractContainerMenu/getQuickCraftPlaceCount (Ljava/util/Set;ILnet/minecraft/world/item/ItemStack;)I +MD: net/minecraft/world/inventory/AbstractContainerMenu/m_38853_ (I)Lnet/minecraft/world/inventory/Slot; net/minecraft/world/inventory/AbstractContainerMenu/getSlot (I)Lnet/minecraft/world/inventory/Slot; +MD: net/minecraft/world/inventory/AbstractContainerMenu/m_38862_ (ILnet/minecraft/world/entity/player/Player;)Z net/minecraft/world/inventory/AbstractContainerMenu/isValidQuickcraftType (ILnet/minecraft/world/entity/player/Player;)Z +MD: net/minecraft/world/inventory/AbstractContainerMenu/m_38869_ (Lnet/minecraft/world/Container;I)V net/minecraft/world/inventory/AbstractContainerMenu/checkContainerSize (Lnet/minecraft/world/Container;I)V +MD: net/minecraft/world/inventory/AbstractContainerMenu/m_38884_ (Lnet/minecraft/world/inventory/ContainerData;)V net/minecraft/world/inventory/AbstractContainerMenu/addDataSlots (Lnet/minecraft/world/inventory/ContainerData;)V +MD: net/minecraft/world/inventory/AbstractContainerMenu/m_38886_ (Lnet/minecraft/world/inventory/ContainerData;I)V net/minecraft/world/inventory/AbstractContainerMenu/checkContainerDataCount (Lnet/minecraft/world/inventory/ContainerData;I)V +MD: net/minecraft/world/inventory/AbstractContainerMenu/m_38889_ (Lnet/minecraft/world/inventory/ContainerLevelAccess;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/level/block/Block;)Z net/minecraft/world/inventory/AbstractContainerMenu/stillValid (Lnet/minecraft/world/inventory/ContainerLevelAccess;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/level/block/Block;)Z +MD: net/minecraft/world/inventory/AbstractContainerMenu/m_38893_ (Lnet/minecraft/world/inventory/ContainerListener;)V net/minecraft/world/inventory/AbstractContainerMenu/addSlotListener (Lnet/minecraft/world/inventory/ContainerListener;)V +MD: net/minecraft/world/inventory/AbstractContainerMenu/m_38895_ (Lnet/minecraft/world/inventory/DataSlot;)Lnet/minecraft/world/inventory/DataSlot; net/minecraft/world/inventory/AbstractContainerMenu/addDataSlot (Lnet/minecraft/world/inventory/DataSlot;)Lnet/minecraft/world/inventory/DataSlot; +MD: net/minecraft/world/inventory/AbstractContainerMenu/m_38897_ (Lnet/minecraft/world/inventory/Slot;)Lnet/minecraft/world/inventory/Slot; net/minecraft/world/inventory/AbstractContainerMenu/addSlot (Lnet/minecraft/world/inventory/Slot;)Lnet/minecraft/world/inventory/Slot; +MD: net/minecraft/world/inventory/AbstractContainerMenu/m_38899_ (Lnet/minecraft/world/inventory/Slot;Lnet/minecraft/world/item/ItemStack;Z)Z net/minecraft/world/inventory/AbstractContainerMenu/canItemQuickReplace (Lnet/minecraft/world/inventory/Slot;Lnet/minecraft/world/item/ItemStack;Z)Z +MD: net/minecraft/world/inventory/AbstractContainerMenu/m_38903_ (Lnet/minecraft/world/item/ItemStack;IIZ)Z net/minecraft/world/inventory/AbstractContainerMenu/moveItemStackTo (Lnet/minecraft/world/item/ItemStack;IIZ)Z +MD: net/minecraft/world/inventory/AbstractContainerMenu/m_38913_ (Lnet/minecraft/world/level/block/Block;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;)Ljava/lang/Boolean; net/minecraft/world/inventory/AbstractContainerMenu/lambda$stillValid$0 (Lnet/minecraft/world/level/block/Block;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;)Ljava/lang/Boolean; +MD: net/minecraft/world/inventory/AbstractContainerMenu/m_38918_ (Lnet/minecraft/world/level/block/entity/BlockEntity;)I net/minecraft/world/inventory/AbstractContainerMenu/getRedstoneSignalFromBlockEntity (Lnet/minecraft/world/level/block/entity/BlockEntity;)I +MD: net/minecraft/world/inventory/AbstractContainerMenu/m_38927_ ()Lnet/minecraft/core/NonNullList; net/minecraft/world/inventory/AbstractContainerMenu/getItems ()Lnet/minecraft/core/NonNullList; +MD: net/minecraft/world/inventory/AbstractContainerMenu/m_38928_ (I)I net/minecraft/world/inventory/AbstractContainerMenu/getQuickcraftType (I)I +MD: net/minecraft/world/inventory/AbstractContainerMenu/m_38930_ (II)I net/minecraft/world/inventory/AbstractContainerMenu/getQuickcraftMask (II)I +MD: net/minecraft/world/inventory/AbstractContainerMenu/m_38938_ (Lnet/minecraft/world/Container;)I net/minecraft/world/inventory/AbstractContainerMenu/getRedstoneSignalFromContainer (Lnet/minecraft/world/Container;)I +MD: net/minecraft/world/inventory/AbstractContainerMenu/m_38943_ (Lnet/minecraft/world/inventory/ContainerListener;)V net/minecraft/world/inventory/AbstractContainerMenu/removeSlotListener (Lnet/minecraft/world/inventory/ContainerListener;)V +MD: net/minecraft/world/inventory/AbstractContainerMenu/m_38946_ ()V net/minecraft/world/inventory/AbstractContainerMenu/broadcastChanges ()V +MD: net/minecraft/world/inventory/AbstractContainerMenu/m_38947_ (I)I net/minecraft/world/inventory/AbstractContainerMenu/getQuickcraftHeader (I)I +MD: net/minecraft/world/inventory/AbstractContainerMenu/m_38951_ ()V net/minecraft/world/inventory/AbstractContainerMenu/resetQuickCraft ()V +MD: net/minecraft/world/inventory/AbstractContainerMenu/m_38952_ ()Ljava/lang/String; net/minecraft/world/inventory/AbstractContainerMenu/lambda$clicked$2 ()Ljava/lang/String; +MD: net/minecraft/world/inventory/AbstractContainerMenu/m_5622_ (Lnet/minecraft/world/inventory/Slot;)Z net/minecraft/world/inventory/AbstractContainerMenu/canDragTo (Lnet/minecraft/world/inventory/Slot;)Z +MD: net/minecraft/world/inventory/AbstractContainerMenu/m_5882_ (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/inventory/Slot;)Z net/minecraft/world/inventory/AbstractContainerMenu/canTakeItemForPickAll (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/inventory/Slot;)Z +MD: net/minecraft/world/inventory/AbstractContainerMenu/m_6199_ (Lnet/minecraft/world/Container;)V net/minecraft/world/inventory/AbstractContainerMenu/slotsChanged (Lnet/minecraft/world/Container;)V +MD: net/minecraft/world/inventory/AbstractContainerMenu/m_6366_ (Lnet/minecraft/world/entity/player/Player;I)Z net/minecraft/world/inventory/AbstractContainerMenu/clickMenuButton (Lnet/minecraft/world/entity/player/Player;I)Z +MD: net/minecraft/world/inventory/AbstractContainerMenu/m_6772_ ()Lnet/minecraft/world/inventory/MenuType; net/minecraft/world/inventory/AbstractContainerMenu/getType ()Lnet/minecraft/world/inventory/MenuType; +MD: net/minecraft/world/inventory/AbstractContainerMenu/m_6875_ (Lnet/minecraft/world/entity/player/Player;)Z net/minecraft/world/inventory/AbstractContainerMenu/stillValid (Lnet/minecraft/world/entity/player/Player;)Z +MD: net/minecraft/world/inventory/AbstractContainerMenu/m_6877_ (Lnet/minecraft/world/entity/player/Player;)V net/minecraft/world/inventory/AbstractContainerMenu/removed (Lnet/minecraft/world/entity/player/Player;)V +MD: net/minecraft/world/inventory/AbstractContainerMenu/m_7511_ (II)V net/minecraft/world/inventory/AbstractContainerMenu/setData (II)V +MD: net/minecraft/world/inventory/AbstractContainerMenu/m_7648_ (Lnet/minecraft/world/entity/player/Player;I)Lnet/minecraft/world/item/ItemStack; net/minecraft/world/inventory/AbstractContainerMenu/quickMoveStack (Lnet/minecraft/world/entity/player/Player;I)Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/inventory/AbstractContainerMenu$1/ (Lnet/minecraft/world/inventory/AbstractContainerMenu;)V net/minecraft/world/inventory/AbstractContainerMenu$1/ (Lnet/minecraft/world/inventory/AbstractContainerMenu;)V +MD: net/minecraft/world/inventory/AbstractContainerMenu$1/m_142104_ (Lnet/minecraft/world/item/ItemStack;)Z net/minecraft/world/inventory/AbstractContainerMenu$1/set (Lnet/minecraft/world/item/ItemStack;)Z +MD: net/minecraft/world/inventory/AbstractContainerMenu$1/m_142196_ ()Lnet/minecraft/world/item/ItemStack; net/minecraft/world/inventory/AbstractContainerMenu$1/get ()Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/inventory/AbstractFurnaceMenu/ (Lnet/minecraft/world/inventory/MenuType;Lnet/minecraft/world/item/crafting/RecipeType;Lnet/minecraft/world/inventory/RecipeBookType;ILnet/minecraft/world/entity/player/Inventory;)V net/minecraft/world/inventory/AbstractFurnaceMenu/ (Lnet/minecraft/world/inventory/MenuType;Lnet/minecraft/world/item/crafting/RecipeType;Lnet/minecraft/world/inventory/RecipeBookType;ILnet/minecraft/world/entity/player/Inventory;)V +MD: net/minecraft/world/inventory/AbstractFurnaceMenu/ (Lnet/minecraft/world/inventory/MenuType;Lnet/minecraft/world/item/crafting/RecipeType;Lnet/minecraft/world/inventory/RecipeBookType;ILnet/minecraft/world/entity/player/Inventory;Lnet/minecraft/world/Container;Lnet/minecraft/world/inventory/ContainerData;)V net/minecraft/world/inventory/AbstractFurnaceMenu/ (Lnet/minecraft/world/inventory/MenuType;Lnet/minecraft/world/item/crafting/RecipeType;Lnet/minecraft/world/inventory/RecipeBookType;ILnet/minecraft/world/entity/player/Inventory;Lnet/minecraft/world/Container;Lnet/minecraft/world/inventory/ContainerData;)V +MD: net/minecraft/world/inventory/AbstractFurnaceMenu/m_142157_ (I)Z net/minecraft/world/inventory/AbstractFurnaceMenu/shouldMoveToInventory (I)Z +MD: net/minecraft/world/inventory/AbstractFurnaceMenu/m_38977_ (Lnet/minecraft/world/item/ItemStack;)Z net/minecraft/world/inventory/AbstractFurnaceMenu/canSmelt (Lnet/minecraft/world/item/ItemStack;)Z +MD: net/minecraft/world/inventory/AbstractFurnaceMenu/m_38988_ (Lnet/minecraft/world/item/ItemStack;)Z net/minecraft/world/inventory/AbstractFurnaceMenu/isFuel (Lnet/minecraft/world/item/ItemStack;)Z +MD: net/minecraft/world/inventory/AbstractFurnaceMenu/m_38995_ ()I net/minecraft/world/inventory/AbstractFurnaceMenu/getBurnProgress ()I +MD: net/minecraft/world/inventory/AbstractFurnaceMenu/m_38996_ ()I net/minecraft/world/inventory/AbstractFurnaceMenu/getLitProgress ()I +MD: net/minecraft/world/inventory/AbstractFurnaceMenu/m_38997_ ()Z net/minecraft/world/inventory/AbstractFurnaceMenu/isLit ()Z +MD: net/minecraft/world/inventory/AbstractFurnaceMenu/m_5816_ (Lnet/minecraft/world/entity/player/StackedContents;)V net/minecraft/world/inventory/AbstractFurnaceMenu/fillCraftSlotsStackedContents (Lnet/minecraft/world/entity/player/StackedContents;)V +MD: net/minecraft/world/inventory/AbstractFurnaceMenu/m_5867_ ()Lnet/minecraft/world/inventory/RecipeBookType; net/minecraft/world/inventory/AbstractFurnaceMenu/getRecipeBookType ()Lnet/minecraft/world/inventory/RecipeBookType; +MD: net/minecraft/world/inventory/AbstractFurnaceMenu/m_6032_ (Lnet/minecraft/world/item/crafting/Recipe;)Z net/minecraft/world/inventory/AbstractFurnaceMenu/recipeMatches (Lnet/minecraft/world/item/crafting/Recipe;)Z +MD: net/minecraft/world/inventory/AbstractFurnaceMenu/m_6635_ ()I net/minecraft/world/inventory/AbstractFurnaceMenu/getGridWidth ()I +MD: net/minecraft/world/inventory/AbstractFurnaceMenu/m_6636_ ()I net/minecraft/world/inventory/AbstractFurnaceMenu/getResultSlotIndex ()I +MD: net/minecraft/world/inventory/AbstractFurnaceMenu/m_6650_ ()V net/minecraft/world/inventory/AbstractFurnaceMenu/clearCraftingContent ()V +MD: net/minecraft/world/inventory/AbstractFurnaceMenu/m_6653_ ()I net/minecraft/world/inventory/AbstractFurnaceMenu/getSize ()I +MD: net/minecraft/world/inventory/AbstractFurnaceMenu/m_6656_ ()I net/minecraft/world/inventory/AbstractFurnaceMenu/getGridHeight ()I +MD: net/minecraft/world/inventory/AbstractFurnaceMenu/m_6875_ (Lnet/minecraft/world/entity/player/Player;)Z net/minecraft/world/inventory/AbstractFurnaceMenu/stillValid (Lnet/minecraft/world/entity/player/Player;)Z +MD: net/minecraft/world/inventory/AbstractFurnaceMenu/m_7648_ (Lnet/minecraft/world/entity/player/Player;I)Lnet/minecraft/world/item/ItemStack; net/minecraft/world/inventory/AbstractFurnaceMenu/quickMoveStack (Lnet/minecraft/world/entity/player/Player;I)Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/inventory/AnvilMenu/ ()V net/minecraft/world/inventory/AnvilMenu/ ()V +MD: net/minecraft/world/inventory/AnvilMenu/ (ILnet/minecraft/world/entity/player/Inventory;)V net/minecraft/world/inventory/AnvilMenu/ (ILnet/minecraft/world/entity/player/Inventory;)V +MD: net/minecraft/world/inventory/AnvilMenu/ (ILnet/minecraft/world/entity/player/Inventory;Lnet/minecraft/world/inventory/ContainerLevelAccess;)V net/minecraft/world/inventory/AnvilMenu/ (ILnet/minecraft/world/entity/player/Inventory;Lnet/minecraft/world/inventory/ContainerLevelAccess;)V +MD: net/minecraft/world/inventory/AnvilMenu/m_142365_ (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/item/ItemStack;)V net/minecraft/world/inventory/AnvilMenu/onTake (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/item/ItemStack;)V +MD: net/minecraft/world/inventory/AnvilMenu/m_150476_ (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;)V net/minecraft/world/inventory/AnvilMenu/lambda$onTake$2 (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/world/inventory/AnvilMenu/m_266136_ (Lnet/minecraft/world/item/ItemStack;)Z net/minecraft/world/inventory/AnvilMenu/lambda$createInputSlotDefinitions$1 (Lnet/minecraft/world/item/ItemStack;)Z +MD: net/minecraft/world/inventory/AnvilMenu/m_266137_ (Lnet/minecraft/world/item/ItemStack;)Z net/minecraft/world/inventory/AnvilMenu/lambda$createInputSlotDefinitions$0 (Lnet/minecraft/world/item/ItemStack;)Z +MD: net/minecraft/world/inventory/AnvilMenu/m_266183_ ()Lnet/minecraft/world/inventory/ItemCombinerMenuSlotDefinition; net/minecraft/world/inventory/AnvilMenu/createInputSlotDefinitions ()Lnet/minecraft/world/inventory/ItemCombinerMenuSlotDefinition; +MD: net/minecraft/world/inventory/AnvilMenu/m_288226_ (Ljava/lang/String;)Ljava/lang/String; net/minecraft/world/inventory/AnvilMenu/validateName (Ljava/lang/String;)Ljava/lang/String; +MD: net/minecraft/world/inventory/AnvilMenu/m_39020_ (Ljava/lang/String;)Z net/minecraft/world/inventory/AnvilMenu/setItemName (Ljava/lang/String;)Z +MD: net/minecraft/world/inventory/AnvilMenu/m_39025_ (I)I net/minecraft/world/inventory/AnvilMenu/calculateIncreasedRepairCost (I)I +MD: net/minecraft/world/inventory/AnvilMenu/m_39028_ ()I net/minecraft/world/inventory/AnvilMenu/getCost ()I +MD: net/minecraft/world/inventory/AnvilMenu/m_6560_ (Lnet/minecraft/world/entity/player/Player;Z)Z net/minecraft/world/inventory/AnvilMenu/mayPickup (Lnet/minecraft/world/entity/player/Player;Z)Z +MD: net/minecraft/world/inventory/AnvilMenu/m_6640_ ()V net/minecraft/world/inventory/AnvilMenu/createResult ()V +MD: net/minecraft/world/inventory/AnvilMenu/m_8039_ (Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/world/inventory/AnvilMenu/isValidBlock (Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/world/inventory/AnvilMenu$1/ ()V net/minecraft/world/inventory/AnvilMenu$1/ ()V +MD: net/minecraft/world/inventory/BeaconMenu/ (ILnet/minecraft/world/Container;)V net/minecraft/world/inventory/BeaconMenu/ (ILnet/minecraft/world/Container;)V +MD: net/minecraft/world/inventory/BeaconMenu/ (ILnet/minecraft/world/Container;Lnet/minecraft/world/inventory/ContainerData;Lnet/minecraft/world/inventory/ContainerLevelAccess;)V net/minecraft/world/inventory/BeaconMenu/ (ILnet/minecraft/world/Container;Lnet/minecraft/world/inventory/ContainerData;Lnet/minecraft/world/inventory/ContainerLevelAccess;)V +MD: net/minecraft/world/inventory/BeaconMenu/m_219972_ (Ljava/util/Optional;Ljava/util/Optional;)V net/minecraft/world/inventory/BeaconMenu/updateEffects (Ljava/util/Optional;Ljava/util/Optional;)V +MD: net/minecraft/world/inventory/BeaconMenu/m_39056_ ()I net/minecraft/world/inventory/BeaconMenu/getLevels ()I +MD: net/minecraft/world/inventory/BeaconMenu/m_39057_ ()Lnet/minecraft/world/effect/MobEffect; net/minecraft/world/inventory/BeaconMenu/getPrimaryEffect ()Lnet/minecraft/world/effect/MobEffect; +MD: net/minecraft/world/inventory/BeaconMenu/m_39058_ ()Lnet/minecraft/world/effect/MobEffect; net/minecraft/world/inventory/BeaconMenu/getSecondaryEffect ()Lnet/minecraft/world/effect/MobEffect; +MD: net/minecraft/world/inventory/BeaconMenu/m_39059_ ()Z net/minecraft/world/inventory/BeaconMenu/hasPayment ()Z +MD: net/minecraft/world/inventory/BeaconMenu/m_6875_ (Lnet/minecraft/world/entity/player/Player;)Z net/minecraft/world/inventory/BeaconMenu/stillValid (Lnet/minecraft/world/entity/player/Player;)Z +MD: net/minecraft/world/inventory/BeaconMenu/m_6877_ (Lnet/minecraft/world/entity/player/Player;)V net/minecraft/world/inventory/BeaconMenu/removed (Lnet/minecraft/world/entity/player/Player;)V +MD: net/minecraft/world/inventory/BeaconMenu/m_7511_ (II)V net/minecraft/world/inventory/BeaconMenu/setData (II)V +MD: net/minecraft/world/inventory/BeaconMenu/m_7648_ (Lnet/minecraft/world/entity/player/Player;I)Lnet/minecraft/world/item/ItemStack; net/minecraft/world/inventory/BeaconMenu/quickMoveStack (Lnet/minecraft/world/entity/player/Player;I)Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/inventory/BeaconMenu$1/ (Lnet/minecraft/world/inventory/BeaconMenu;I)V net/minecraft/world/inventory/BeaconMenu$1/ (Lnet/minecraft/world/inventory/BeaconMenu;I)V +MD: net/minecraft/world/inventory/BeaconMenu$1/m_6893_ ()I net/minecraft/world/inventory/BeaconMenu$1/getMaxStackSize ()I +MD: net/minecraft/world/inventory/BeaconMenu$1/m_7013_ (ILnet/minecraft/world/item/ItemStack;)Z net/minecraft/world/inventory/BeaconMenu$1/canPlaceItem (ILnet/minecraft/world/item/ItemStack;)Z +MD: net/minecraft/world/inventory/BeaconMenu$PaymentSlot/ (Lnet/minecraft/world/inventory/BeaconMenu;Lnet/minecraft/world/Container;III)V net/minecraft/world/inventory/BeaconMenu$PaymentSlot/ (Lnet/minecraft/world/inventory/BeaconMenu;Lnet/minecraft/world/Container;III)V +MD: net/minecraft/world/inventory/BeaconMenu$PaymentSlot/m_5857_ (Lnet/minecraft/world/item/ItemStack;)Z net/minecraft/world/inventory/BeaconMenu$PaymentSlot/mayPlace (Lnet/minecraft/world/item/ItemStack;)Z +MD: net/minecraft/world/inventory/BeaconMenu$PaymentSlot/m_6641_ ()I net/minecraft/world/inventory/BeaconMenu$PaymentSlot/getMaxStackSize ()I +MD: net/minecraft/world/inventory/BlastFurnaceMenu/ (ILnet/minecraft/world/entity/player/Inventory;)V net/minecraft/world/inventory/BlastFurnaceMenu/ (ILnet/minecraft/world/entity/player/Inventory;)V +MD: net/minecraft/world/inventory/BlastFurnaceMenu/ (ILnet/minecraft/world/entity/player/Inventory;Lnet/minecraft/world/Container;Lnet/minecraft/world/inventory/ContainerData;)V net/minecraft/world/inventory/BlastFurnaceMenu/ (ILnet/minecraft/world/entity/player/Inventory;Lnet/minecraft/world/Container;Lnet/minecraft/world/inventory/ContainerData;)V +MD: net/minecraft/world/inventory/BrewingStandMenu/ (ILnet/minecraft/world/entity/player/Inventory;)V net/minecraft/world/inventory/BrewingStandMenu/ (ILnet/minecraft/world/entity/player/Inventory;)V +MD: net/minecraft/world/inventory/BrewingStandMenu/ (ILnet/minecraft/world/entity/player/Inventory;Lnet/minecraft/world/Container;Lnet/minecraft/world/inventory/ContainerData;)V net/minecraft/world/inventory/BrewingStandMenu/ (ILnet/minecraft/world/entity/player/Inventory;Lnet/minecraft/world/Container;Lnet/minecraft/world/inventory/ContainerData;)V +MD: net/minecraft/world/inventory/BrewingStandMenu/m_39102_ ()I net/minecraft/world/inventory/BrewingStandMenu/getFuel ()I +MD: net/minecraft/world/inventory/BrewingStandMenu/m_39103_ ()I net/minecraft/world/inventory/BrewingStandMenu/getBrewingTicks ()I +MD: net/minecraft/world/inventory/BrewingStandMenu/m_6875_ (Lnet/minecraft/world/entity/player/Player;)Z net/minecraft/world/inventory/BrewingStandMenu/stillValid (Lnet/minecraft/world/entity/player/Player;)Z +MD: net/minecraft/world/inventory/BrewingStandMenu/m_7648_ (Lnet/minecraft/world/entity/player/Player;I)Lnet/minecraft/world/item/ItemStack; net/minecraft/world/inventory/BrewingStandMenu/quickMoveStack (Lnet/minecraft/world/entity/player/Player;I)Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/inventory/BrewingStandMenu$FuelSlot/ (Lnet/minecraft/world/Container;III)V net/minecraft/world/inventory/BrewingStandMenu$FuelSlot/ (Lnet/minecraft/world/Container;III)V +MD: net/minecraft/world/inventory/BrewingStandMenu$FuelSlot/m_39112_ (Lnet/minecraft/world/item/ItemStack;)Z net/minecraft/world/inventory/BrewingStandMenu$FuelSlot/mayPlaceItem (Lnet/minecraft/world/item/ItemStack;)Z +MD: net/minecraft/world/inventory/BrewingStandMenu$FuelSlot/m_5857_ (Lnet/minecraft/world/item/ItemStack;)Z net/minecraft/world/inventory/BrewingStandMenu$FuelSlot/mayPlace (Lnet/minecraft/world/item/ItemStack;)Z +MD: net/minecraft/world/inventory/BrewingStandMenu$FuelSlot/m_6641_ ()I net/minecraft/world/inventory/BrewingStandMenu$FuelSlot/getMaxStackSize ()I +MD: net/minecraft/world/inventory/BrewingStandMenu$IngredientsSlot/ (Lnet/minecraft/world/Container;III)V net/minecraft/world/inventory/BrewingStandMenu$IngredientsSlot/ (Lnet/minecraft/world/Container;III)V +MD: net/minecraft/world/inventory/BrewingStandMenu$IngredientsSlot/m_5857_ (Lnet/minecraft/world/item/ItemStack;)Z net/minecraft/world/inventory/BrewingStandMenu$IngredientsSlot/mayPlace (Lnet/minecraft/world/item/ItemStack;)Z +MD: net/minecraft/world/inventory/BrewingStandMenu$IngredientsSlot/m_6641_ ()I net/minecraft/world/inventory/BrewingStandMenu$IngredientsSlot/getMaxStackSize ()I +MD: net/minecraft/world/inventory/BrewingStandMenu$PotionSlot/ (Lnet/minecraft/world/Container;III)V net/minecraft/world/inventory/BrewingStandMenu$PotionSlot/ (Lnet/minecraft/world/Container;III)V +MD: net/minecraft/world/inventory/BrewingStandMenu$PotionSlot/m_142406_ (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/item/ItemStack;)V net/minecraft/world/inventory/BrewingStandMenu$PotionSlot/onTake (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/item/ItemStack;)V +MD: net/minecraft/world/inventory/BrewingStandMenu$PotionSlot/m_39133_ (Lnet/minecraft/world/item/ItemStack;)Z net/minecraft/world/inventory/BrewingStandMenu$PotionSlot/mayPlaceItem (Lnet/minecraft/world/item/ItemStack;)Z +MD: net/minecraft/world/inventory/BrewingStandMenu$PotionSlot/m_5857_ (Lnet/minecraft/world/item/ItemStack;)Z net/minecraft/world/inventory/BrewingStandMenu$PotionSlot/mayPlace (Lnet/minecraft/world/item/ItemStack;)Z +MD: net/minecraft/world/inventory/BrewingStandMenu$PotionSlot/m_6641_ ()I net/minecraft/world/inventory/BrewingStandMenu$PotionSlot/getMaxStackSize ()I +MD: net/minecraft/world/inventory/CartographyTableMenu/ (ILnet/minecraft/world/entity/player/Inventory;)V net/minecraft/world/inventory/CartographyTableMenu/ (ILnet/minecraft/world/entity/player/Inventory;)V +MD: net/minecraft/world/inventory/CartographyTableMenu/ (ILnet/minecraft/world/entity/player/Inventory;Lnet/minecraft/world/inventory/ContainerLevelAccess;)V net/minecraft/world/inventory/CartographyTableMenu/ (ILnet/minecraft/world/entity/player/Inventory;Lnet/minecraft/world/inventory/ContainerLevelAccess;)V +MD: net/minecraft/world/inventory/CartographyTableMenu/m_278586_ (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;)V net/minecraft/world/inventory/CartographyTableMenu/lambda$setupResultSlot$0 (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/world/inventory/CartographyTableMenu/m_39150_ (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;)V net/minecraft/world/inventory/CartographyTableMenu/lambda$removed$1 (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/world/inventory/CartographyTableMenu/m_39162_ (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/item/ItemStack;)V net/minecraft/world/inventory/CartographyTableMenu/setupResultSlot (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/item/ItemStack;)V +MD: net/minecraft/world/inventory/CartographyTableMenu/m_5882_ (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/inventory/Slot;)Z net/minecraft/world/inventory/CartographyTableMenu/canTakeItemForPickAll (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/inventory/Slot;)Z +MD: net/minecraft/world/inventory/CartographyTableMenu/m_6199_ (Lnet/minecraft/world/Container;)V net/minecraft/world/inventory/CartographyTableMenu/slotsChanged (Lnet/minecraft/world/Container;)V +MD: net/minecraft/world/inventory/CartographyTableMenu/m_6875_ (Lnet/minecraft/world/entity/player/Player;)Z net/minecraft/world/inventory/CartographyTableMenu/stillValid (Lnet/minecraft/world/entity/player/Player;)Z +MD: net/minecraft/world/inventory/CartographyTableMenu/m_6877_ (Lnet/minecraft/world/entity/player/Player;)V net/minecraft/world/inventory/CartographyTableMenu/removed (Lnet/minecraft/world/entity/player/Player;)V +MD: net/minecraft/world/inventory/CartographyTableMenu/m_7648_ (Lnet/minecraft/world/entity/player/Player;I)Lnet/minecraft/world/item/ItemStack; net/minecraft/world/inventory/CartographyTableMenu/quickMoveStack (Lnet/minecraft/world/entity/player/Player;I)Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/inventory/CartographyTableMenu$1/ (Lnet/minecraft/world/inventory/CartographyTableMenu;I)V net/minecraft/world/inventory/CartographyTableMenu$1/ (Lnet/minecraft/world/inventory/CartographyTableMenu;I)V +MD: net/minecraft/world/inventory/CartographyTableMenu$1/m_6596_ ()V net/minecraft/world/inventory/CartographyTableMenu$1/setChanged ()V +MD: net/minecraft/world/inventory/CartographyTableMenu$2/ (Lnet/minecraft/world/inventory/CartographyTableMenu;)V net/minecraft/world/inventory/CartographyTableMenu$2/ (Lnet/minecraft/world/inventory/CartographyTableMenu;)V +MD: net/minecraft/world/inventory/CartographyTableMenu$2/m_6596_ ()V net/minecraft/world/inventory/CartographyTableMenu$2/setChanged ()V +MD: net/minecraft/world/inventory/CartographyTableMenu$3/ (Lnet/minecraft/world/inventory/CartographyTableMenu;Lnet/minecraft/world/Container;III)V net/minecraft/world/inventory/CartographyTableMenu$3/ (Lnet/minecraft/world/inventory/CartographyTableMenu;Lnet/minecraft/world/Container;III)V +MD: net/minecraft/world/inventory/CartographyTableMenu$3/m_5857_ (Lnet/minecraft/world/item/ItemStack;)Z net/minecraft/world/inventory/CartographyTableMenu$3/mayPlace (Lnet/minecraft/world/item/ItemStack;)Z +MD: net/minecraft/world/inventory/CartographyTableMenu$4/ (Lnet/minecraft/world/inventory/CartographyTableMenu;Lnet/minecraft/world/Container;III)V net/minecraft/world/inventory/CartographyTableMenu$4/ (Lnet/minecraft/world/inventory/CartographyTableMenu;Lnet/minecraft/world/Container;III)V +MD: net/minecraft/world/inventory/CartographyTableMenu$4/m_5857_ (Lnet/minecraft/world/item/ItemStack;)Z net/minecraft/world/inventory/CartographyTableMenu$4/mayPlace (Lnet/minecraft/world/item/ItemStack;)Z +MD: net/minecraft/world/inventory/CartographyTableMenu$5/ (Lnet/minecraft/world/inventory/CartographyTableMenu;Lnet/minecraft/world/Container;IIILnet/minecraft/world/inventory/ContainerLevelAccess;)V net/minecraft/world/inventory/CartographyTableMenu$5/ (Lnet/minecraft/world/inventory/CartographyTableMenu;Lnet/minecraft/world/Container;IIILnet/minecraft/world/inventory/ContainerLevelAccess;)V +MD: net/minecraft/world/inventory/CartographyTableMenu$5/m_142406_ (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/item/ItemStack;)V net/minecraft/world/inventory/CartographyTableMenu$5/onTake (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/item/ItemStack;)V +MD: net/minecraft/world/inventory/CartographyTableMenu$5/m_39218_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;)V net/minecraft/world/inventory/CartographyTableMenu$5/lambda$onTake$0 (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/world/inventory/CartographyTableMenu$5/m_5857_ (Lnet/minecraft/world/item/ItemStack;)Z net/minecraft/world/inventory/CartographyTableMenu$5/mayPlace (Lnet/minecraft/world/item/ItemStack;)Z +MD: net/minecraft/world/inventory/ChestMenu/ (Lnet/minecraft/world/inventory/MenuType;ILnet/minecraft/world/entity/player/Inventory;I)V net/minecraft/world/inventory/ChestMenu/ (Lnet/minecraft/world/inventory/MenuType;ILnet/minecraft/world/entity/player/Inventory;I)V +MD: net/minecraft/world/inventory/ChestMenu/ (Lnet/minecraft/world/inventory/MenuType;ILnet/minecraft/world/entity/player/Inventory;Lnet/minecraft/world/Container;I)V net/minecraft/world/inventory/ChestMenu/ (Lnet/minecraft/world/inventory/MenuType;ILnet/minecraft/world/entity/player/Inventory;Lnet/minecraft/world/Container;I)V +MD: net/minecraft/world/inventory/ChestMenu/m_39234_ (ILnet/minecraft/world/entity/player/Inventory;)Lnet/minecraft/world/inventory/ChestMenu; net/minecraft/world/inventory/ChestMenu/oneRow (ILnet/minecraft/world/entity/player/Inventory;)Lnet/minecraft/world/inventory/ChestMenu; +MD: net/minecraft/world/inventory/ChestMenu/m_39237_ (ILnet/minecraft/world/entity/player/Inventory;Lnet/minecraft/world/Container;)Lnet/minecraft/world/inventory/ChestMenu; net/minecraft/world/inventory/ChestMenu/threeRows (ILnet/minecraft/world/entity/player/Inventory;Lnet/minecraft/world/Container;)Lnet/minecraft/world/inventory/ChestMenu; +MD: net/minecraft/world/inventory/ChestMenu/m_39243_ (ILnet/minecraft/world/entity/player/Inventory;)Lnet/minecraft/world/inventory/ChestMenu; net/minecraft/world/inventory/ChestMenu/twoRows (ILnet/minecraft/world/entity/player/Inventory;)Lnet/minecraft/world/inventory/ChestMenu; +MD: net/minecraft/world/inventory/ChestMenu/m_39246_ (ILnet/minecraft/world/entity/player/Inventory;Lnet/minecraft/world/Container;)Lnet/minecraft/world/inventory/ChestMenu; net/minecraft/world/inventory/ChestMenu/sixRows (ILnet/minecraft/world/entity/player/Inventory;Lnet/minecraft/world/Container;)Lnet/minecraft/world/inventory/ChestMenu; +MD: net/minecraft/world/inventory/ChestMenu/m_39255_ (ILnet/minecraft/world/entity/player/Inventory;)Lnet/minecraft/world/inventory/ChestMenu; net/minecraft/world/inventory/ChestMenu/threeRows (ILnet/minecraft/world/entity/player/Inventory;)Lnet/minecraft/world/inventory/ChestMenu; +MD: net/minecraft/world/inventory/ChestMenu/m_39258_ (ILnet/minecraft/world/entity/player/Inventory;)Lnet/minecraft/world/inventory/ChestMenu; net/minecraft/world/inventory/ChestMenu/fourRows (ILnet/minecraft/world/entity/player/Inventory;)Lnet/minecraft/world/inventory/ChestMenu; +MD: net/minecraft/world/inventory/ChestMenu/m_39261_ ()Lnet/minecraft/world/Container; net/minecraft/world/inventory/ChestMenu/getContainer ()Lnet/minecraft/world/Container; +MD: net/minecraft/world/inventory/ChestMenu/m_39262_ (ILnet/minecraft/world/entity/player/Inventory;)Lnet/minecraft/world/inventory/ChestMenu; net/minecraft/world/inventory/ChestMenu/fiveRows (ILnet/minecraft/world/entity/player/Inventory;)Lnet/minecraft/world/inventory/ChestMenu; +MD: net/minecraft/world/inventory/ChestMenu/m_39265_ ()I net/minecraft/world/inventory/ChestMenu/getRowCount ()I +MD: net/minecraft/world/inventory/ChestMenu/m_39266_ (ILnet/minecraft/world/entity/player/Inventory;)Lnet/minecraft/world/inventory/ChestMenu; net/minecraft/world/inventory/ChestMenu/sixRows (ILnet/minecraft/world/entity/player/Inventory;)Lnet/minecraft/world/inventory/ChestMenu; +MD: net/minecraft/world/inventory/ChestMenu/m_6875_ (Lnet/minecraft/world/entity/player/Player;)Z net/minecraft/world/inventory/ChestMenu/stillValid (Lnet/minecraft/world/entity/player/Player;)Z +MD: net/minecraft/world/inventory/ChestMenu/m_6877_ (Lnet/minecraft/world/entity/player/Player;)V net/minecraft/world/inventory/ChestMenu/removed (Lnet/minecraft/world/entity/player/Player;)V +MD: net/minecraft/world/inventory/ChestMenu/m_7648_ (Lnet/minecraft/world/entity/player/Player;I)Lnet/minecraft/world/item/ItemStack; net/minecraft/world/inventory/ChestMenu/quickMoveStack (Lnet/minecraft/world/entity/player/Player;I)Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/inventory/ClickAction/ ()V net/minecraft/world/inventory/ClickAction/ ()V +MD: net/minecraft/world/inventory/ClickAction/ (Ljava/lang/String;I)V net/minecraft/world/inventory/ClickAction/ (Ljava/lang/String;I)V +MD: net/minecraft/world/inventory/ClickAction/m_150519_ ()[Lnet/minecraft/world/inventory/ClickAction; net/minecraft/world/inventory/ClickAction/$values ()[Lnet/minecraft/world/inventory/ClickAction; +MD: net/minecraft/world/inventory/ClickAction/valueOf (Ljava/lang/String;)Lnet/minecraft/world/inventory/ClickAction; net/minecraft/world/inventory/ClickAction/valueOf (Ljava/lang/String;)Lnet/minecraft/world/inventory/ClickAction; +MD: net/minecraft/world/inventory/ClickAction/values ()[Lnet/minecraft/world/inventory/ClickAction; net/minecraft/world/inventory/ClickAction/values ()[Lnet/minecraft/world/inventory/ClickAction; +MD: net/minecraft/world/inventory/ClickType/ ()V net/minecraft/world/inventory/ClickType/ ()V +MD: net/minecraft/world/inventory/ClickType/ (Ljava/lang/String;I)V net/minecraft/world/inventory/ClickType/ (Ljava/lang/String;I)V +MD: net/minecraft/world/inventory/ClickType/m_150523_ ()[Lnet/minecraft/world/inventory/ClickType; net/minecraft/world/inventory/ClickType/$values ()[Lnet/minecraft/world/inventory/ClickType; +MD: net/minecraft/world/inventory/ClickType/valueOf (Ljava/lang/String;)Lnet/minecraft/world/inventory/ClickType; net/minecraft/world/inventory/ClickType/valueOf (Ljava/lang/String;)Lnet/minecraft/world/inventory/ClickType; +MD: net/minecraft/world/inventory/ClickType/values ()[Lnet/minecraft/world/inventory/ClickType; net/minecraft/world/inventory/ClickType/values ()[Lnet/minecraft/world/inventory/ClickType; +MD: net/minecraft/world/inventory/ContainerData/m_6413_ (I)I net/minecraft/world/inventory/ContainerData/get (I)I +MD: net/minecraft/world/inventory/ContainerData/m_6499_ ()I net/minecraft/world/inventory/ContainerData/getCount ()I +MD: net/minecraft/world/inventory/ContainerData/m_8050_ (II)V net/minecraft/world/inventory/ContainerData/set (II)V +MD: net/minecraft/world/inventory/ContainerLevelAccess/ ()V net/minecraft/world/inventory/ContainerLevelAccess/ ()V +MD: net/minecraft/world/inventory/ContainerLevelAccess/m_39289_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/inventory/ContainerLevelAccess; net/minecraft/world/inventory/ContainerLevelAccess/create (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/inventory/ContainerLevelAccess; +MD: net/minecraft/world/inventory/ContainerLevelAccess/m_39292_ (Ljava/util/function/BiConsumer;)V net/minecraft/world/inventory/ContainerLevelAccess/execute (Ljava/util/function/BiConsumer;)V +MD: net/minecraft/world/inventory/ContainerLevelAccess/m_39294_ (Ljava/util/function/BiConsumer;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;)Ljava/util/Optional; net/minecraft/world/inventory/ContainerLevelAccess/lambda$execute$0 (Ljava/util/function/BiConsumer;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;)Ljava/util/Optional; +MD: net/minecraft/world/inventory/ContainerLevelAccess/m_39299_ (Ljava/util/function/BiFunction;Ljava/lang/Object;)Ljava/lang/Object; net/minecraft/world/inventory/ContainerLevelAccess/evaluate (Ljava/util/function/BiFunction;Ljava/lang/Object;)Ljava/lang/Object; +MD: net/minecraft/world/inventory/ContainerLevelAccess/m_6721_ (Ljava/util/function/BiFunction;)Ljava/util/Optional; net/minecraft/world/inventory/ContainerLevelAccess/evaluate (Ljava/util/function/BiFunction;)Ljava/util/Optional; +MD: net/minecraft/world/inventory/ContainerLevelAccess$1/ ()V net/minecraft/world/inventory/ContainerLevelAccess$1/ ()V +MD: net/minecraft/world/inventory/ContainerLevelAccess$1/m_6721_ (Ljava/util/function/BiFunction;)Ljava/util/Optional; net/minecraft/world/inventory/ContainerLevelAccess$1/evaluate (Ljava/util/function/BiFunction;)Ljava/util/Optional; +MD: net/minecraft/world/inventory/ContainerLevelAccess$2/ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;)V net/minecraft/world/inventory/ContainerLevelAccess$2/ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/world/inventory/ContainerLevelAccess$2/m_6721_ (Ljava/util/function/BiFunction;)Ljava/util/Optional; net/minecraft/world/inventory/ContainerLevelAccess$2/evaluate (Ljava/util/function/BiFunction;)Ljava/util/Optional; +MD: net/minecraft/world/inventory/ContainerListener/m_142153_ (Lnet/minecraft/world/inventory/AbstractContainerMenu;II)V net/minecraft/world/inventory/ContainerListener/dataChanged (Lnet/minecraft/world/inventory/AbstractContainerMenu;II)V +MD: net/minecraft/world/inventory/ContainerListener/m_7934_ (Lnet/minecraft/world/inventory/AbstractContainerMenu;ILnet/minecraft/world/item/ItemStack;)V net/minecraft/world/inventory/ContainerListener/slotChanged (Lnet/minecraft/world/inventory/AbstractContainerMenu;ILnet/minecraft/world/item/ItemStack;)V +MD: net/minecraft/world/inventory/ContainerSynchronizer/m_142074_ (Lnet/minecraft/world/inventory/AbstractContainerMenu;ILnet/minecraft/world/item/ItemStack;)V net/minecraft/world/inventory/ContainerSynchronizer/sendSlotChange (Lnet/minecraft/world/inventory/AbstractContainerMenu;ILnet/minecraft/world/item/ItemStack;)V +MD: net/minecraft/world/inventory/ContainerSynchronizer/m_142145_ (Lnet/minecraft/world/inventory/AbstractContainerMenu;II)V net/minecraft/world/inventory/ContainerSynchronizer/sendDataChange (Lnet/minecraft/world/inventory/AbstractContainerMenu;II)V +MD: net/minecraft/world/inventory/ContainerSynchronizer/m_142529_ (Lnet/minecraft/world/inventory/AbstractContainerMenu;Lnet/minecraft/world/item/ItemStack;)V net/minecraft/world/inventory/ContainerSynchronizer/sendCarriedChange (Lnet/minecraft/world/inventory/AbstractContainerMenu;Lnet/minecraft/world/item/ItemStack;)V +MD: net/minecraft/world/inventory/ContainerSynchronizer/m_142589_ (Lnet/minecraft/world/inventory/AbstractContainerMenu;Lnet/minecraft/core/NonNullList;Lnet/minecraft/world/item/ItemStack;[I)V net/minecraft/world/inventory/ContainerSynchronizer/sendInitialData (Lnet/minecraft/world/inventory/AbstractContainerMenu;Lnet/minecraft/core/NonNullList;Lnet/minecraft/world/item/ItemStack;[I)V +MD: net/minecraft/world/inventory/CraftingContainer/m_280657_ ()Ljava/util/List; net/minecraft/world/inventory/CraftingContainer/getItems ()Ljava/util/List; +MD: net/minecraft/world/inventory/CraftingContainer/m_39346_ ()I net/minecraft/world/inventory/CraftingContainer/getHeight ()I +MD: net/minecraft/world/inventory/CraftingContainer/m_39347_ ()I net/minecraft/world/inventory/CraftingContainer/getWidth ()I +MD: net/minecraft/world/inventory/CraftingMenu/ (ILnet/minecraft/world/entity/player/Inventory;)V net/minecraft/world/inventory/CraftingMenu/ (ILnet/minecraft/world/entity/player/Inventory;)V +MD: net/minecraft/world/inventory/CraftingMenu/ (ILnet/minecraft/world/entity/player/Inventory;Lnet/minecraft/world/inventory/ContainerLevelAccess;)V net/minecraft/world/inventory/CraftingMenu/ (ILnet/minecraft/world/entity/player/Inventory;Lnet/minecraft/world/inventory/ContainerLevelAccess;)V +MD: net/minecraft/world/inventory/CraftingMenu/m_142157_ (I)Z net/minecraft/world/inventory/CraftingMenu/shouldMoveToInventory (I)Z +MD: net/minecraft/world/inventory/CraftingMenu/m_150546_ (Lnet/minecraft/world/inventory/AbstractContainerMenu;Lnet/minecraft/world/level/Level;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/inventory/CraftingContainer;Lnet/minecraft/world/inventory/ResultContainer;)V net/minecraft/world/inventory/CraftingMenu/slotChangedCraftingGrid (Lnet/minecraft/world/inventory/AbstractContainerMenu;Lnet/minecraft/world/level/Level;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/inventory/CraftingContainer;Lnet/minecraft/world/inventory/ResultContainer;)V +MD: net/minecraft/world/inventory/CraftingMenu/m_39369_ (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;)V net/minecraft/world/inventory/CraftingMenu/lambda$removed$1 (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/world/inventory/CraftingMenu/m_39375_ (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;)V net/minecraft/world/inventory/CraftingMenu/lambda$quickMoveStack$2 (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/world/inventory/CraftingMenu/m_39385_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;)V net/minecraft/world/inventory/CraftingMenu/lambda$slotsChanged$0 (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/world/inventory/CraftingMenu/m_5816_ (Lnet/minecraft/world/entity/player/StackedContents;)V net/minecraft/world/inventory/CraftingMenu/fillCraftSlotsStackedContents (Lnet/minecraft/world/entity/player/StackedContents;)V +MD: net/minecraft/world/inventory/CraftingMenu/m_5867_ ()Lnet/minecraft/world/inventory/RecipeBookType; net/minecraft/world/inventory/CraftingMenu/getRecipeBookType ()Lnet/minecraft/world/inventory/RecipeBookType; +MD: net/minecraft/world/inventory/CraftingMenu/m_5882_ (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/inventory/Slot;)Z net/minecraft/world/inventory/CraftingMenu/canTakeItemForPickAll (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/inventory/Slot;)Z +MD: net/minecraft/world/inventory/CraftingMenu/m_6032_ (Lnet/minecraft/world/item/crafting/Recipe;)Z net/minecraft/world/inventory/CraftingMenu/recipeMatches (Lnet/minecraft/world/item/crafting/Recipe;)Z +MD: net/minecraft/world/inventory/CraftingMenu/m_6199_ (Lnet/minecraft/world/Container;)V net/minecraft/world/inventory/CraftingMenu/slotsChanged (Lnet/minecraft/world/Container;)V +MD: net/minecraft/world/inventory/CraftingMenu/m_6635_ ()I net/minecraft/world/inventory/CraftingMenu/getGridWidth ()I +MD: net/minecraft/world/inventory/CraftingMenu/m_6636_ ()I net/minecraft/world/inventory/CraftingMenu/getResultSlotIndex ()I +MD: net/minecraft/world/inventory/CraftingMenu/m_6650_ ()V net/minecraft/world/inventory/CraftingMenu/clearCraftingContent ()V +MD: net/minecraft/world/inventory/CraftingMenu/m_6653_ ()I net/minecraft/world/inventory/CraftingMenu/getSize ()I +MD: net/minecraft/world/inventory/CraftingMenu/m_6656_ ()I net/minecraft/world/inventory/CraftingMenu/getGridHeight ()I +MD: net/minecraft/world/inventory/CraftingMenu/m_6875_ (Lnet/minecraft/world/entity/player/Player;)Z net/minecraft/world/inventory/CraftingMenu/stillValid (Lnet/minecraft/world/entity/player/Player;)Z +MD: net/minecraft/world/inventory/CraftingMenu/m_6877_ (Lnet/minecraft/world/entity/player/Player;)V net/minecraft/world/inventory/CraftingMenu/removed (Lnet/minecraft/world/entity/player/Player;)V +MD: net/minecraft/world/inventory/CraftingMenu/m_7648_ (Lnet/minecraft/world/entity/player/Player;I)Lnet/minecraft/world/item/ItemStack; net/minecraft/world/inventory/CraftingMenu/quickMoveStack (Lnet/minecraft/world/entity/player/Player;I)Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/inventory/DataSlot/ ()V net/minecraft/world/inventory/DataSlot/ ()V +MD: net/minecraft/world/inventory/DataSlot/m_39401_ ()Lnet/minecraft/world/inventory/DataSlot; net/minecraft/world/inventory/DataSlot/standalone ()Lnet/minecraft/world/inventory/DataSlot; +MD: net/minecraft/world/inventory/DataSlot/m_39403_ (Lnet/minecraft/world/inventory/ContainerData;I)Lnet/minecraft/world/inventory/DataSlot; net/minecraft/world/inventory/DataSlot/forContainer (Lnet/minecraft/world/inventory/ContainerData;I)Lnet/minecraft/world/inventory/DataSlot; +MD: net/minecraft/world/inventory/DataSlot/m_39406_ ([II)Lnet/minecraft/world/inventory/DataSlot; net/minecraft/world/inventory/DataSlot/shared ([II)Lnet/minecraft/world/inventory/DataSlot; +MD: net/minecraft/world/inventory/DataSlot/m_39409_ ()Z net/minecraft/world/inventory/DataSlot/checkAndClearUpdateFlag ()Z +MD: net/minecraft/world/inventory/DataSlot/m_6422_ (I)V net/minecraft/world/inventory/DataSlot/set (I)V +MD: net/minecraft/world/inventory/DataSlot/m_6501_ ()I net/minecraft/world/inventory/DataSlot/get ()I +MD: net/minecraft/world/inventory/DataSlot$1/ (Lnet/minecraft/world/inventory/ContainerData;I)V net/minecraft/world/inventory/DataSlot$1/ (Lnet/minecraft/world/inventory/ContainerData;I)V +MD: net/minecraft/world/inventory/DataSlot$1/m_6422_ (I)V net/minecraft/world/inventory/DataSlot$1/set (I)V +MD: net/minecraft/world/inventory/DataSlot$1/m_6501_ ()I net/minecraft/world/inventory/DataSlot$1/get ()I +MD: net/minecraft/world/inventory/DataSlot$2/ ([II)V net/minecraft/world/inventory/DataSlot$2/ ([II)V +MD: net/minecraft/world/inventory/DataSlot$2/m_6422_ (I)V net/minecraft/world/inventory/DataSlot$2/set (I)V +MD: net/minecraft/world/inventory/DataSlot$2/m_6501_ ()I net/minecraft/world/inventory/DataSlot$2/get ()I +MD: net/minecraft/world/inventory/DataSlot$3/ ()V net/minecraft/world/inventory/DataSlot$3/ ()V +MD: net/minecraft/world/inventory/DataSlot$3/m_6422_ (I)V net/minecraft/world/inventory/DataSlot$3/set (I)V +MD: net/minecraft/world/inventory/DataSlot$3/m_6501_ ()I net/minecraft/world/inventory/DataSlot$3/get ()I +MD: net/minecraft/world/inventory/DispenserMenu/ (ILnet/minecraft/world/entity/player/Inventory;)V net/minecraft/world/inventory/DispenserMenu/ (ILnet/minecraft/world/entity/player/Inventory;)V +MD: net/minecraft/world/inventory/DispenserMenu/ (ILnet/minecraft/world/entity/player/Inventory;Lnet/minecraft/world/Container;)V net/minecraft/world/inventory/DispenserMenu/ (ILnet/minecraft/world/entity/player/Inventory;Lnet/minecraft/world/Container;)V +MD: net/minecraft/world/inventory/DispenserMenu/m_6875_ (Lnet/minecraft/world/entity/player/Player;)Z net/minecraft/world/inventory/DispenserMenu/stillValid (Lnet/minecraft/world/entity/player/Player;)Z +MD: net/minecraft/world/inventory/DispenserMenu/m_6877_ (Lnet/minecraft/world/entity/player/Player;)V net/minecraft/world/inventory/DispenserMenu/removed (Lnet/minecraft/world/entity/player/Player;)V +MD: net/minecraft/world/inventory/DispenserMenu/m_7648_ (Lnet/minecraft/world/entity/player/Player;I)Lnet/minecraft/world/item/ItemStack; net/minecraft/world/inventory/DispenserMenu/quickMoveStack (Lnet/minecraft/world/entity/player/Player;I)Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/inventory/EnchantmentMenu/ (ILnet/minecraft/world/entity/player/Inventory;)V net/minecraft/world/inventory/EnchantmentMenu/ (ILnet/minecraft/world/entity/player/Inventory;)V +MD: net/minecraft/world/inventory/EnchantmentMenu/ (ILnet/minecraft/world/entity/player/Inventory;Lnet/minecraft/world/inventory/ContainerLevelAccess;)V net/minecraft/world/inventory/EnchantmentMenu/ (ILnet/minecraft/world/entity/player/Inventory;Lnet/minecraft/world/inventory/ContainerLevelAccess;)V +MD: net/minecraft/world/inventory/EnchantmentMenu/m_39467_ (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;)V net/minecraft/world/inventory/EnchantmentMenu/lambda$removed$2 (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/world/inventory/EnchantmentMenu/m_39471_ (Lnet/minecraft/world/item/ItemStack;II)Ljava/util/List; net/minecraft/world/inventory/EnchantmentMenu/getEnchantmentList (Lnet/minecraft/world/item/ItemStack;II)Ljava/util/List; +MD: net/minecraft/world/inventory/EnchantmentMenu/m_39475_ (Lnet/minecraft/world/item/ItemStack;ILnet/minecraft/world/entity/player/Player;ILnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;)V net/minecraft/world/inventory/EnchantmentMenu/lambda$clickMenuButton$1 (Lnet/minecraft/world/item/ItemStack;ILnet/minecraft/world/entity/player/Player;ILnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/world/inventory/EnchantmentMenu/m_39483_ (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;)V net/minecraft/world/inventory/EnchantmentMenu/lambda$slotsChanged$0 (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/world/inventory/EnchantmentMenu/m_39492_ ()I net/minecraft/world/inventory/EnchantmentMenu/getGoldCount ()I +MD: net/minecraft/world/inventory/EnchantmentMenu/m_39493_ ()I net/minecraft/world/inventory/EnchantmentMenu/getEnchantmentSeed ()I +MD: net/minecraft/world/inventory/EnchantmentMenu/m_6199_ (Lnet/minecraft/world/Container;)V net/minecraft/world/inventory/EnchantmentMenu/slotsChanged (Lnet/minecraft/world/Container;)V +MD: net/minecraft/world/inventory/EnchantmentMenu/m_6366_ (Lnet/minecraft/world/entity/player/Player;I)Z net/minecraft/world/inventory/EnchantmentMenu/clickMenuButton (Lnet/minecraft/world/entity/player/Player;I)Z +MD: net/minecraft/world/inventory/EnchantmentMenu/m_6875_ (Lnet/minecraft/world/entity/player/Player;)Z net/minecraft/world/inventory/EnchantmentMenu/stillValid (Lnet/minecraft/world/entity/player/Player;)Z +MD: net/minecraft/world/inventory/EnchantmentMenu/m_6877_ (Lnet/minecraft/world/entity/player/Player;)V net/minecraft/world/inventory/EnchantmentMenu/removed (Lnet/minecraft/world/entity/player/Player;)V +MD: net/minecraft/world/inventory/EnchantmentMenu/m_7648_ (Lnet/minecraft/world/entity/player/Player;I)Lnet/minecraft/world/item/ItemStack; net/minecraft/world/inventory/EnchantmentMenu/quickMoveStack (Lnet/minecraft/world/entity/player/Player;I)Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/inventory/EnchantmentMenu$1/ (Lnet/minecraft/world/inventory/EnchantmentMenu;I)V net/minecraft/world/inventory/EnchantmentMenu$1/ (Lnet/minecraft/world/inventory/EnchantmentMenu;I)V +MD: net/minecraft/world/inventory/EnchantmentMenu$1/m_6596_ ()V net/minecraft/world/inventory/EnchantmentMenu$1/setChanged ()V +MD: net/minecraft/world/inventory/EnchantmentMenu$2/ (Lnet/minecraft/world/inventory/EnchantmentMenu;Lnet/minecraft/world/Container;III)V net/minecraft/world/inventory/EnchantmentMenu$2/ (Lnet/minecraft/world/inventory/EnchantmentMenu;Lnet/minecraft/world/Container;III)V +MD: net/minecraft/world/inventory/EnchantmentMenu$2/m_5857_ (Lnet/minecraft/world/item/ItemStack;)Z net/minecraft/world/inventory/EnchantmentMenu$2/mayPlace (Lnet/minecraft/world/item/ItemStack;)Z +MD: net/minecraft/world/inventory/EnchantmentMenu$2/m_6641_ ()I net/minecraft/world/inventory/EnchantmentMenu$2/getMaxStackSize ()I +MD: net/minecraft/world/inventory/EnchantmentMenu$3/ (Lnet/minecraft/world/inventory/EnchantmentMenu;Lnet/minecraft/world/Container;III)V net/minecraft/world/inventory/EnchantmentMenu$3/ (Lnet/minecraft/world/inventory/EnchantmentMenu;Lnet/minecraft/world/Container;III)V +MD: net/minecraft/world/inventory/EnchantmentMenu$3/m_5857_ (Lnet/minecraft/world/item/ItemStack;)Z net/minecraft/world/inventory/EnchantmentMenu$3/mayPlace (Lnet/minecraft/world/item/ItemStack;)Z +MD: net/minecraft/world/inventory/FurnaceFuelSlot/ (Lnet/minecraft/world/inventory/AbstractFurnaceMenu;Lnet/minecraft/world/Container;III)V net/minecraft/world/inventory/FurnaceFuelSlot/ (Lnet/minecraft/world/inventory/AbstractFurnaceMenu;Lnet/minecraft/world/Container;III)V +MD: net/minecraft/world/inventory/FurnaceFuelSlot/m_39529_ (Lnet/minecraft/world/item/ItemStack;)Z net/minecraft/world/inventory/FurnaceFuelSlot/isBucket (Lnet/minecraft/world/item/ItemStack;)Z +MD: net/minecraft/world/inventory/FurnaceFuelSlot/m_5857_ (Lnet/minecraft/world/item/ItemStack;)Z net/minecraft/world/inventory/FurnaceFuelSlot/mayPlace (Lnet/minecraft/world/item/ItemStack;)Z +MD: net/minecraft/world/inventory/FurnaceFuelSlot/m_5866_ (Lnet/minecraft/world/item/ItemStack;)I net/minecraft/world/inventory/FurnaceFuelSlot/getMaxStackSize (Lnet/minecraft/world/item/ItemStack;)I +MD: net/minecraft/world/inventory/FurnaceMenu/ (ILnet/minecraft/world/entity/player/Inventory;)V net/minecraft/world/inventory/FurnaceMenu/ (ILnet/minecraft/world/entity/player/Inventory;)V +MD: net/minecraft/world/inventory/FurnaceMenu/ (ILnet/minecraft/world/entity/player/Inventory;Lnet/minecraft/world/Container;Lnet/minecraft/world/inventory/ContainerData;)V net/minecraft/world/inventory/FurnaceMenu/ (ILnet/minecraft/world/entity/player/Inventory;Lnet/minecraft/world/Container;Lnet/minecraft/world/inventory/ContainerData;)V +MD: net/minecraft/world/inventory/FurnaceResultSlot/ (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/Container;III)V net/minecraft/world/inventory/FurnaceResultSlot/ (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/Container;III)V +MD: net/minecraft/world/inventory/FurnaceResultSlot/m_142406_ (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/item/ItemStack;)V net/minecraft/world/inventory/FurnaceResultSlot/onTake (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/item/ItemStack;)V +MD: net/minecraft/world/inventory/FurnaceResultSlot/m_5845_ (Lnet/minecraft/world/item/ItemStack;)V net/minecraft/world/inventory/FurnaceResultSlot/checkTakeAchievements (Lnet/minecraft/world/item/ItemStack;)V +MD: net/minecraft/world/inventory/FurnaceResultSlot/m_5857_ (Lnet/minecraft/world/item/ItemStack;)Z net/minecraft/world/inventory/FurnaceResultSlot/mayPlace (Lnet/minecraft/world/item/ItemStack;)Z +MD: net/minecraft/world/inventory/FurnaceResultSlot/m_6201_ (I)Lnet/minecraft/world/item/ItemStack; net/minecraft/world/inventory/FurnaceResultSlot/remove (I)Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/inventory/FurnaceResultSlot/m_7169_ (Lnet/minecraft/world/item/ItemStack;I)V net/minecraft/world/inventory/FurnaceResultSlot/onQuickCraft (Lnet/minecraft/world/item/ItemStack;I)V +MD: net/minecraft/world/inventory/GrindstoneMenu/ (ILnet/minecraft/world/entity/player/Inventory;)V net/minecraft/world/inventory/GrindstoneMenu/ (ILnet/minecraft/world/entity/player/Inventory;)V +MD: net/minecraft/world/inventory/GrindstoneMenu/ (ILnet/minecraft/world/entity/player/Inventory;Lnet/minecraft/world/inventory/ContainerLevelAccess;)V net/minecraft/world/inventory/GrindstoneMenu/ (ILnet/minecraft/world/entity/player/Inventory;Lnet/minecraft/world/inventory/ContainerLevelAccess;)V +MD: net/minecraft/world/inventory/GrindstoneMenu/m_39573_ (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;)V net/minecraft/world/inventory/GrindstoneMenu/lambda$removed$1 (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/world/inventory/GrindstoneMenu/m_39579_ (Lnet/minecraft/world/item/ItemStack;II)Lnet/minecraft/world/item/ItemStack; net/minecraft/world/inventory/GrindstoneMenu/removeNonCurses (Lnet/minecraft/world/item/ItemStack;II)Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/inventory/GrindstoneMenu/m_39583_ (Ljava/util/Map$Entry;)Z net/minecraft/world/inventory/GrindstoneMenu/lambda$removeNonCurses$0 (Ljava/util/Map$Entry;)Z +MD: net/minecraft/world/inventory/GrindstoneMenu/m_39590_ (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/item/ItemStack;)Lnet/minecraft/world/item/ItemStack; net/minecraft/world/inventory/GrindstoneMenu/mergeEnchants (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/item/ItemStack;)Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/inventory/GrindstoneMenu/m_39593_ ()V net/minecraft/world/inventory/GrindstoneMenu/createResult ()V +MD: net/minecraft/world/inventory/GrindstoneMenu/m_6199_ (Lnet/minecraft/world/Container;)V net/minecraft/world/inventory/GrindstoneMenu/slotsChanged (Lnet/minecraft/world/Container;)V +MD: net/minecraft/world/inventory/GrindstoneMenu/m_6875_ (Lnet/minecraft/world/entity/player/Player;)Z net/minecraft/world/inventory/GrindstoneMenu/stillValid (Lnet/minecraft/world/entity/player/Player;)Z +MD: net/minecraft/world/inventory/GrindstoneMenu/m_6877_ (Lnet/minecraft/world/entity/player/Player;)V net/minecraft/world/inventory/GrindstoneMenu/removed (Lnet/minecraft/world/entity/player/Player;)V +MD: net/minecraft/world/inventory/GrindstoneMenu/m_7648_ (Lnet/minecraft/world/entity/player/Player;I)Lnet/minecraft/world/item/ItemStack; net/minecraft/world/inventory/GrindstoneMenu/quickMoveStack (Lnet/minecraft/world/entity/player/Player;I)Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/inventory/GrindstoneMenu$1/ (Lnet/minecraft/world/inventory/GrindstoneMenu;I)V net/minecraft/world/inventory/GrindstoneMenu$1/ (Lnet/minecraft/world/inventory/GrindstoneMenu;I)V +MD: net/minecraft/world/inventory/GrindstoneMenu$1/m_6596_ ()V net/minecraft/world/inventory/GrindstoneMenu$1/setChanged ()V +MD: net/minecraft/world/inventory/GrindstoneMenu$2/ (Lnet/minecraft/world/inventory/GrindstoneMenu;Lnet/minecraft/world/Container;III)V net/minecraft/world/inventory/GrindstoneMenu$2/ (Lnet/minecraft/world/inventory/GrindstoneMenu;Lnet/minecraft/world/Container;III)V +MD: net/minecraft/world/inventory/GrindstoneMenu$2/m_5857_ (Lnet/minecraft/world/item/ItemStack;)Z net/minecraft/world/inventory/GrindstoneMenu$2/mayPlace (Lnet/minecraft/world/item/ItemStack;)Z +MD: net/minecraft/world/inventory/GrindstoneMenu$3/ (Lnet/minecraft/world/inventory/GrindstoneMenu;Lnet/minecraft/world/Container;III)V net/minecraft/world/inventory/GrindstoneMenu$3/ (Lnet/minecraft/world/inventory/GrindstoneMenu;Lnet/minecraft/world/Container;III)V +MD: net/minecraft/world/inventory/GrindstoneMenu$3/m_5857_ (Lnet/minecraft/world/item/ItemStack;)Z net/minecraft/world/inventory/GrindstoneMenu$3/mayPlace (Lnet/minecraft/world/item/ItemStack;)Z +MD: net/minecraft/world/inventory/GrindstoneMenu$4/ (Lnet/minecraft/world/inventory/GrindstoneMenu;Lnet/minecraft/world/Container;IIILnet/minecraft/world/inventory/ContainerLevelAccess;)V net/minecraft/world/inventory/GrindstoneMenu$4/ (Lnet/minecraft/world/inventory/GrindstoneMenu;Lnet/minecraft/world/Container;IIILnet/minecraft/world/inventory/ContainerLevelAccess;)V +MD: net/minecraft/world/inventory/GrindstoneMenu$4/m_142406_ (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/item/ItemStack;)V net/minecraft/world/inventory/GrindstoneMenu$4/onTake (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/item/ItemStack;)V +MD: net/minecraft/world/inventory/GrindstoneMenu$4/m_39631_ (Lnet/minecraft/world/level/Level;)I net/minecraft/world/inventory/GrindstoneMenu$4/getExperienceAmount (Lnet/minecraft/world/level/Level;)I +MD: net/minecraft/world/inventory/GrindstoneMenu$4/m_39633_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;)V net/minecraft/world/inventory/GrindstoneMenu$4/lambda$onTake$0 (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/world/inventory/GrindstoneMenu$4/m_39636_ (Lnet/minecraft/world/item/ItemStack;)I net/minecraft/world/inventory/GrindstoneMenu$4/getExperienceFromItem (Lnet/minecraft/world/item/ItemStack;)I +MD: net/minecraft/world/inventory/GrindstoneMenu$4/m_5857_ (Lnet/minecraft/world/item/ItemStack;)Z net/minecraft/world/inventory/GrindstoneMenu$4/mayPlace (Lnet/minecraft/world/item/ItemStack;)Z +MD: net/minecraft/world/inventory/HopperMenu/ (ILnet/minecraft/world/entity/player/Inventory;)V net/minecraft/world/inventory/HopperMenu/ (ILnet/minecraft/world/entity/player/Inventory;)V +MD: net/minecraft/world/inventory/HopperMenu/ (ILnet/minecraft/world/entity/player/Inventory;Lnet/minecraft/world/Container;)V net/minecraft/world/inventory/HopperMenu/ (ILnet/minecraft/world/entity/player/Inventory;Lnet/minecraft/world/Container;)V +MD: net/minecraft/world/inventory/HopperMenu/m_6875_ (Lnet/minecraft/world/entity/player/Player;)Z net/minecraft/world/inventory/HopperMenu/stillValid (Lnet/minecraft/world/entity/player/Player;)Z +MD: net/minecraft/world/inventory/HopperMenu/m_6877_ (Lnet/minecraft/world/entity/player/Player;)V net/minecraft/world/inventory/HopperMenu/removed (Lnet/minecraft/world/entity/player/Player;)V +MD: net/minecraft/world/inventory/HopperMenu/m_7648_ (Lnet/minecraft/world/entity/player/Player;I)Lnet/minecraft/world/item/ItemStack; net/minecraft/world/inventory/HopperMenu/quickMoveStack (Lnet/minecraft/world/entity/player/Player;I)Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/inventory/HorseInventoryMenu/ (ILnet/minecraft/world/entity/player/Inventory;Lnet/minecraft/world/Container;Lnet/minecraft/world/entity/animal/horse/AbstractHorse;)V net/minecraft/world/inventory/HorseInventoryMenu/ (ILnet/minecraft/world/entity/player/Inventory;Lnet/minecraft/world/Container;Lnet/minecraft/world/entity/animal/horse/AbstractHorse;)V +MD: net/minecraft/world/inventory/HorseInventoryMenu/m_150577_ (Lnet/minecraft/world/entity/animal/horse/AbstractHorse;)Z net/minecraft/world/inventory/HorseInventoryMenu/hasChest (Lnet/minecraft/world/entity/animal/horse/AbstractHorse;)Z +MD: net/minecraft/world/inventory/HorseInventoryMenu/m_6875_ (Lnet/minecraft/world/entity/player/Player;)Z net/minecraft/world/inventory/HorseInventoryMenu/stillValid (Lnet/minecraft/world/entity/player/Player;)Z +MD: net/minecraft/world/inventory/HorseInventoryMenu/m_6877_ (Lnet/minecraft/world/entity/player/Player;)V net/minecraft/world/inventory/HorseInventoryMenu/removed (Lnet/minecraft/world/entity/player/Player;)V +MD: net/minecraft/world/inventory/HorseInventoryMenu/m_7648_ (Lnet/minecraft/world/entity/player/Player;I)Lnet/minecraft/world/item/ItemStack; net/minecraft/world/inventory/HorseInventoryMenu/quickMoveStack (Lnet/minecraft/world/entity/player/Player;I)Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/inventory/HorseInventoryMenu$1/ (Lnet/minecraft/world/inventory/HorseInventoryMenu;Lnet/minecraft/world/Container;IIILnet/minecraft/world/entity/animal/horse/AbstractHorse;)V net/minecraft/world/inventory/HorseInventoryMenu$1/ (Lnet/minecraft/world/inventory/HorseInventoryMenu;Lnet/minecraft/world/Container;IIILnet/minecraft/world/entity/animal/horse/AbstractHorse;)V +MD: net/minecraft/world/inventory/HorseInventoryMenu$1/m_5857_ (Lnet/minecraft/world/item/ItemStack;)Z net/minecraft/world/inventory/HorseInventoryMenu$1/mayPlace (Lnet/minecraft/world/item/ItemStack;)Z +MD: net/minecraft/world/inventory/HorseInventoryMenu$1/m_6659_ ()Z net/minecraft/world/inventory/HorseInventoryMenu$1/isActive ()Z +MD: net/minecraft/world/inventory/HorseInventoryMenu$2/ (Lnet/minecraft/world/inventory/HorseInventoryMenu;Lnet/minecraft/world/Container;IIILnet/minecraft/world/entity/animal/horse/AbstractHorse;)V net/minecraft/world/inventory/HorseInventoryMenu$2/ (Lnet/minecraft/world/inventory/HorseInventoryMenu;Lnet/minecraft/world/Container;IIILnet/minecraft/world/entity/animal/horse/AbstractHorse;)V +MD: net/minecraft/world/inventory/HorseInventoryMenu$2/m_5857_ (Lnet/minecraft/world/item/ItemStack;)Z net/minecraft/world/inventory/HorseInventoryMenu$2/mayPlace (Lnet/minecraft/world/item/ItemStack;)Z +MD: net/minecraft/world/inventory/HorseInventoryMenu$2/m_6641_ ()I net/minecraft/world/inventory/HorseInventoryMenu$2/getMaxStackSize ()I +MD: net/minecraft/world/inventory/HorseInventoryMenu$2/m_6659_ ()Z net/minecraft/world/inventory/HorseInventoryMenu$2/isActive ()Z +MD: net/minecraft/world/inventory/InventoryMenu/ ()V net/minecraft/world/inventory/InventoryMenu/ ()V +MD: net/minecraft/world/inventory/InventoryMenu/ (Lnet/minecraft/world/entity/player/Inventory;ZLnet/minecraft/world/entity/player/Player;)V net/minecraft/world/inventory/InventoryMenu/ (Lnet/minecraft/world/entity/player/Inventory;ZLnet/minecraft/world/entity/player/Player;)V +MD: net/minecraft/world/inventory/InventoryMenu/m_142157_ (I)Z net/minecraft/world/inventory/InventoryMenu/shouldMoveToInventory (I)Z +MD: net/minecraft/world/inventory/InventoryMenu/m_150592_ (I)Z net/minecraft/world/inventory/InventoryMenu/isHotbarSlot (I)Z +MD: net/minecraft/world/inventory/InventoryMenu/m_269535_ (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/entity/EquipmentSlot;Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/item/ItemStack;)V net/minecraft/world/inventory/InventoryMenu/onEquipItem (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/entity/EquipmentSlot;Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/item/ItemStack;)V +MD: net/minecraft/world/inventory/InventoryMenu/m_39730_ ()Lnet/minecraft/world/inventory/CraftingContainer; net/minecraft/world/inventory/InventoryMenu/getCraftSlots ()Lnet/minecraft/world/inventory/CraftingContainer; +MD: net/minecraft/world/inventory/InventoryMenu/m_5816_ (Lnet/minecraft/world/entity/player/StackedContents;)V net/minecraft/world/inventory/InventoryMenu/fillCraftSlotsStackedContents (Lnet/minecraft/world/entity/player/StackedContents;)V +MD: net/minecraft/world/inventory/InventoryMenu/m_5867_ ()Lnet/minecraft/world/inventory/RecipeBookType; net/minecraft/world/inventory/InventoryMenu/getRecipeBookType ()Lnet/minecraft/world/inventory/RecipeBookType; +MD: net/minecraft/world/inventory/InventoryMenu/m_5882_ (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/inventory/Slot;)Z net/minecraft/world/inventory/InventoryMenu/canTakeItemForPickAll (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/inventory/Slot;)Z +MD: net/minecraft/world/inventory/InventoryMenu/m_6032_ (Lnet/minecraft/world/item/crafting/Recipe;)Z net/minecraft/world/inventory/InventoryMenu/recipeMatches (Lnet/minecraft/world/item/crafting/Recipe;)Z +MD: net/minecraft/world/inventory/InventoryMenu/m_6199_ (Lnet/minecraft/world/Container;)V net/minecraft/world/inventory/InventoryMenu/slotsChanged (Lnet/minecraft/world/Container;)V +MD: net/minecraft/world/inventory/InventoryMenu/m_6635_ ()I net/minecraft/world/inventory/InventoryMenu/getGridWidth ()I +MD: net/minecraft/world/inventory/InventoryMenu/m_6636_ ()I net/minecraft/world/inventory/InventoryMenu/getResultSlotIndex ()I +MD: net/minecraft/world/inventory/InventoryMenu/m_6650_ ()V net/minecraft/world/inventory/InventoryMenu/clearCraftingContent ()V +MD: net/minecraft/world/inventory/InventoryMenu/m_6653_ ()I net/minecraft/world/inventory/InventoryMenu/getSize ()I +MD: net/minecraft/world/inventory/InventoryMenu/m_6656_ ()I net/minecraft/world/inventory/InventoryMenu/getGridHeight ()I +MD: net/minecraft/world/inventory/InventoryMenu/m_6875_ (Lnet/minecraft/world/entity/player/Player;)Z net/minecraft/world/inventory/InventoryMenu/stillValid (Lnet/minecraft/world/entity/player/Player;)Z +MD: net/minecraft/world/inventory/InventoryMenu/m_6877_ (Lnet/minecraft/world/entity/player/Player;)V net/minecraft/world/inventory/InventoryMenu/removed (Lnet/minecraft/world/entity/player/Player;)V +MD: net/minecraft/world/inventory/InventoryMenu/m_7648_ (Lnet/minecraft/world/entity/player/Player;I)Lnet/minecraft/world/item/ItemStack; net/minecraft/world/inventory/InventoryMenu/quickMoveStack (Lnet/minecraft/world/entity/player/Player;I)Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/inventory/InventoryMenu$1/ (Lnet/minecraft/world/inventory/InventoryMenu;Lnet/minecraft/world/Container;IIILnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/entity/EquipmentSlot;)V net/minecraft/world/inventory/InventoryMenu$1/ (Lnet/minecraft/world/inventory/InventoryMenu;Lnet/minecraft/world/Container;IIILnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/entity/EquipmentSlot;)V +MD: net/minecraft/world/inventory/InventoryMenu$1/m_269060_ (Lnet/minecraft/world/item/ItemStack;)V net/minecraft/world/inventory/InventoryMenu$1/setByPlayer (Lnet/minecraft/world/item/ItemStack;)V +MD: net/minecraft/world/inventory/InventoryMenu$1/m_5857_ (Lnet/minecraft/world/item/ItemStack;)Z net/minecraft/world/inventory/InventoryMenu$1/mayPlace (Lnet/minecraft/world/item/ItemStack;)Z +MD: net/minecraft/world/inventory/InventoryMenu$1/m_6641_ ()I net/minecraft/world/inventory/InventoryMenu$1/getMaxStackSize ()I +MD: net/minecraft/world/inventory/InventoryMenu$1/m_7543_ ()Lcom/mojang/datafixers/util/Pair; net/minecraft/world/inventory/InventoryMenu$1/getNoItemIcon ()Lcom/mojang/datafixers/util/Pair; +MD: net/minecraft/world/inventory/InventoryMenu$1/m_8010_ (Lnet/minecraft/world/entity/player/Player;)Z net/minecraft/world/inventory/InventoryMenu$1/mayPickup (Lnet/minecraft/world/entity/player/Player;)Z +MD: net/minecraft/world/inventory/InventoryMenu$2/ (Lnet/minecraft/world/inventory/InventoryMenu;Lnet/minecraft/world/Container;IIILnet/minecraft/world/entity/player/Player;)V net/minecraft/world/inventory/InventoryMenu$2/ (Lnet/minecraft/world/inventory/InventoryMenu;Lnet/minecraft/world/Container;IIILnet/minecraft/world/entity/player/Player;)V +MD: net/minecraft/world/inventory/InventoryMenu$2/m_269060_ (Lnet/minecraft/world/item/ItemStack;)V net/minecraft/world/inventory/InventoryMenu$2/setByPlayer (Lnet/minecraft/world/item/ItemStack;)V +MD: net/minecraft/world/inventory/InventoryMenu$2/m_7543_ ()Lcom/mojang/datafixers/util/Pair; net/minecraft/world/inventory/InventoryMenu$2/getNoItemIcon ()Lcom/mojang/datafixers/util/Pair; +MD: net/minecraft/world/inventory/ItemCombinerMenu/ (Lnet/minecraft/world/inventory/MenuType;ILnet/minecraft/world/entity/player/Inventory;Lnet/minecraft/world/inventory/ContainerLevelAccess;)V net/minecraft/world/inventory/ItemCombinerMenu/ (Lnet/minecraft/world/inventory/MenuType;ILnet/minecraft/world/entity/player/Inventory;Lnet/minecraft/world/inventory/ContainerLevelAccess;)V +MD: net/minecraft/world/inventory/ItemCombinerMenu/m_142365_ (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/item/ItemStack;)V net/minecraft/world/inventory/ItemCombinerMenu/onTake (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/item/ItemStack;)V +MD: net/minecraft/world/inventory/ItemCombinerMenu/m_266159_ (Lnet/minecraft/world/item/ItemStack;)I net/minecraft/world/inventory/ItemCombinerMenu/getSlotToQuickMoveTo (Lnet/minecraft/world/item/ItemStack;)I +MD: net/minecraft/world/inventory/ItemCombinerMenu/m_266183_ ()Lnet/minecraft/world/inventory/ItemCombinerMenuSlotDefinition; net/minecraft/world/inventory/ItemCombinerMenu/createInputSlotDefinitions ()Lnet/minecraft/world/inventory/ItemCombinerMenuSlotDefinition; +MD: net/minecraft/world/inventory/ItemCombinerMenu/m_266190_ (I)Lnet/minecraft/world/SimpleContainer; net/minecraft/world/inventory/ItemCombinerMenu/createContainer (I)Lnet/minecraft/world/SimpleContainer; +MD: net/minecraft/world/inventory/ItemCombinerMenu/m_266235_ (Lnet/minecraft/world/entity/player/Inventory;)V net/minecraft/world/inventory/ItemCombinerMenu/createInventorySlots (Lnet/minecraft/world/entity/player/Inventory;)V +MD: net/minecraft/world/inventory/ItemCombinerMenu/m_266254_ (Lnet/minecraft/world/inventory/ItemCombinerMenuSlotDefinition;)V net/minecraft/world/inventory/ItemCombinerMenu/createInputSlots (Lnet/minecraft/world/inventory/ItemCombinerMenuSlotDefinition;)V +MD: net/minecraft/world/inventory/ItemCombinerMenu/m_266318_ ()I net/minecraft/world/inventory/ItemCombinerMenu/getInventorySlotStart ()I +MD: net/minecraft/world/inventory/ItemCombinerMenu/m_266360_ ()I net/minecraft/world/inventory/ItemCombinerMenu/getUseRowEnd ()I +MD: net/minecraft/world/inventory/ItemCombinerMenu/m_266402_ ()I net/minecraft/world/inventory/ItemCombinerMenu/getInventorySlotEnd ()I +MD: net/minecraft/world/inventory/ItemCombinerMenu/m_266416_ ()I net/minecraft/world/inventory/ItemCombinerMenu/getUseRowStart ()I +MD: net/minecraft/world/inventory/ItemCombinerMenu/m_266430_ (Lnet/minecraft/world/inventory/ItemCombinerMenuSlotDefinition;)V net/minecraft/world/inventory/ItemCombinerMenu/createResultSlot (Lnet/minecraft/world/inventory/ItemCombinerMenuSlotDefinition;)V +MD: net/minecraft/world/inventory/ItemCombinerMenu/m_266562_ ()I net/minecraft/world/inventory/ItemCombinerMenu/getResultSlot ()I +MD: net/minecraft/world/inventory/ItemCombinerMenu/m_39783_ (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;)Ljava/lang/Boolean; net/minecraft/world/inventory/ItemCombinerMenu/lambda$stillValid$1 (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;)Ljava/lang/Boolean; +MD: net/minecraft/world/inventory/ItemCombinerMenu/m_39794_ (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;)V net/minecraft/world/inventory/ItemCombinerMenu/lambda$removed$0 (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/world/inventory/ItemCombinerMenu/m_5861_ (Lnet/minecraft/world/item/ItemStack;)Z net/minecraft/world/inventory/ItemCombinerMenu/canMoveIntoInputSlots (Lnet/minecraft/world/item/ItemStack;)Z +MD: net/minecraft/world/inventory/ItemCombinerMenu/m_6199_ (Lnet/minecraft/world/Container;)V net/minecraft/world/inventory/ItemCombinerMenu/slotsChanged (Lnet/minecraft/world/Container;)V +MD: net/minecraft/world/inventory/ItemCombinerMenu/m_6560_ (Lnet/minecraft/world/entity/player/Player;Z)Z net/minecraft/world/inventory/ItemCombinerMenu/mayPickup (Lnet/minecraft/world/entity/player/Player;Z)Z +MD: net/minecraft/world/inventory/ItemCombinerMenu/m_6640_ ()V net/minecraft/world/inventory/ItemCombinerMenu/createResult ()V +MD: net/minecraft/world/inventory/ItemCombinerMenu/m_6875_ (Lnet/minecraft/world/entity/player/Player;)Z net/minecraft/world/inventory/ItemCombinerMenu/stillValid (Lnet/minecraft/world/entity/player/Player;)Z +MD: net/minecraft/world/inventory/ItemCombinerMenu/m_6877_ (Lnet/minecraft/world/entity/player/Player;)V net/minecraft/world/inventory/ItemCombinerMenu/removed (Lnet/minecraft/world/entity/player/Player;)V +MD: net/minecraft/world/inventory/ItemCombinerMenu/m_7648_ (Lnet/minecraft/world/entity/player/Player;I)Lnet/minecraft/world/item/ItemStack; net/minecraft/world/inventory/ItemCombinerMenu/quickMoveStack (Lnet/minecraft/world/entity/player/Player;I)Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/inventory/ItemCombinerMenu/m_8039_ (Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/world/inventory/ItemCombinerMenu/isValidBlock (Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/world/inventory/ItemCombinerMenu$1/ (Lnet/minecraft/world/inventory/ItemCombinerMenu;Lnet/minecraft/world/Container;IIILnet/minecraft/world/inventory/ItemCombinerMenuSlotDefinition$SlotDefinition;)V net/minecraft/world/inventory/ItemCombinerMenu$1/ (Lnet/minecraft/world/inventory/ItemCombinerMenu;Lnet/minecraft/world/Container;IIILnet/minecraft/world/inventory/ItemCombinerMenuSlotDefinition$SlotDefinition;)V +MD: net/minecraft/world/inventory/ItemCombinerMenu$1/m_5857_ (Lnet/minecraft/world/item/ItemStack;)Z net/minecraft/world/inventory/ItemCombinerMenu$1/mayPlace (Lnet/minecraft/world/item/ItemStack;)Z +MD: net/minecraft/world/inventory/ItemCombinerMenu$2/ (Lnet/minecraft/world/inventory/ItemCombinerMenu;Lnet/minecraft/world/Container;III)V net/minecraft/world/inventory/ItemCombinerMenu$2/ (Lnet/minecraft/world/inventory/ItemCombinerMenu;Lnet/minecraft/world/Container;III)V +MD: net/minecraft/world/inventory/ItemCombinerMenu$2/m_142406_ (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/item/ItemStack;)V net/minecraft/world/inventory/ItemCombinerMenu$2/onTake (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/item/ItemStack;)V +MD: net/minecraft/world/inventory/ItemCombinerMenu$2/m_5857_ (Lnet/minecraft/world/item/ItemStack;)Z net/minecraft/world/inventory/ItemCombinerMenu$2/mayPlace (Lnet/minecraft/world/item/ItemStack;)Z +MD: net/minecraft/world/inventory/ItemCombinerMenu$2/m_8010_ (Lnet/minecraft/world/entity/player/Player;)Z net/minecraft/world/inventory/ItemCombinerMenu$2/mayPickup (Lnet/minecraft/world/entity/player/Player;)Z +MD: net/minecraft/world/inventory/ItemCombinerMenu$3/ (Lnet/minecraft/world/inventory/ItemCombinerMenu;I)V net/minecraft/world/inventory/ItemCombinerMenu$3/ (Lnet/minecraft/world/inventory/ItemCombinerMenu;I)V +MD: net/minecraft/world/inventory/ItemCombinerMenu$3/m_6596_ ()V net/minecraft/world/inventory/ItemCombinerMenu$3/setChanged ()V +MD: net/minecraft/world/inventory/ItemCombinerMenuSlotDefinition/ (Ljava/util/List;Lnet/minecraft/world/inventory/ItemCombinerMenuSlotDefinition$SlotDefinition;)V net/minecraft/world/inventory/ItemCombinerMenuSlotDefinition/ (Ljava/util/List;Lnet/minecraft/world/inventory/ItemCombinerMenuSlotDefinition$SlotDefinition;)V +MD: net/minecraft/world/inventory/ItemCombinerMenuSlotDefinition/m_266229_ (I)Z net/minecraft/world/inventory/ItemCombinerMenuSlotDefinition/hasSlot (I)Z +MD: net/minecraft/world/inventory/ItemCombinerMenuSlotDefinition/m_266233_ ()Ljava/util/List; net/minecraft/world/inventory/ItemCombinerMenuSlotDefinition/getSlots ()Ljava/util/List; +MD: net/minecraft/world/inventory/ItemCombinerMenuSlotDefinition/m_266303_ ()Lnet/minecraft/world/inventory/ItemCombinerMenuSlotDefinition$Builder; net/minecraft/world/inventory/ItemCombinerMenuSlotDefinition/create ()Lnet/minecraft/world/inventory/ItemCombinerMenuSlotDefinition$Builder; +MD: net/minecraft/world/inventory/ItemCombinerMenuSlotDefinition/m_266322_ (I)Lnet/minecraft/world/inventory/ItemCombinerMenuSlotDefinition$SlotDefinition; net/minecraft/world/inventory/ItemCombinerMenuSlotDefinition/getSlot (I)Lnet/minecraft/world/inventory/ItemCombinerMenuSlotDefinition$SlotDefinition; +MD: net/minecraft/world/inventory/ItemCombinerMenuSlotDefinition/m_266349_ ()Lnet/minecraft/world/inventory/ItemCombinerMenuSlotDefinition$SlotDefinition; net/minecraft/world/inventory/ItemCombinerMenuSlotDefinition/getResultSlot ()Lnet/minecraft/world/inventory/ItemCombinerMenuSlotDefinition$SlotDefinition; +MD: net/minecraft/world/inventory/ItemCombinerMenuSlotDefinition/m_266388_ ()I net/minecraft/world/inventory/ItemCombinerMenuSlotDefinition/getResultSlotIndex ()I +MD: net/minecraft/world/inventory/ItemCombinerMenuSlotDefinition/m_266517_ ()Ljava/util/List; net/minecraft/world/inventory/ItemCombinerMenuSlotDefinition/getInputSlotIndexes ()Ljava/util/List; +MD: net/minecraft/world/inventory/ItemCombinerMenuSlotDefinition/m_266578_ ()I net/minecraft/world/inventory/ItemCombinerMenuSlotDefinition/getNumOfInputSlots ()I +MD: net/minecraft/world/inventory/ItemCombinerMenuSlotDefinition$Builder/ ()V net/minecraft/world/inventory/ItemCombinerMenuSlotDefinition$Builder/ ()V +MD: net/minecraft/world/inventory/ItemCombinerMenuSlotDefinition$Builder/m_266197_ (IIILjava/util/function/Predicate;)Lnet/minecraft/world/inventory/ItemCombinerMenuSlotDefinition$Builder; net/minecraft/world/inventory/ItemCombinerMenuSlotDefinition$Builder/withSlot (IIILjava/util/function/Predicate;)Lnet/minecraft/world/inventory/ItemCombinerMenuSlotDefinition$Builder; +MD: net/minecraft/world/inventory/ItemCombinerMenuSlotDefinition$Builder/m_266198_ (III)Lnet/minecraft/world/inventory/ItemCombinerMenuSlotDefinition$Builder; net/minecraft/world/inventory/ItemCombinerMenuSlotDefinition$Builder/withResultSlot (III)Lnet/minecraft/world/inventory/ItemCombinerMenuSlotDefinition$Builder; +MD: net/minecraft/world/inventory/ItemCombinerMenuSlotDefinition$Builder/m_266441_ ()Lnet/minecraft/world/inventory/ItemCombinerMenuSlotDefinition; net/minecraft/world/inventory/ItemCombinerMenuSlotDefinition$Builder/build ()Lnet/minecraft/world/inventory/ItemCombinerMenuSlotDefinition; +MD: net/minecraft/world/inventory/ItemCombinerMenuSlotDefinition$Builder/m_266472_ (Lnet/minecraft/world/item/ItemStack;)Z net/minecraft/world/inventory/ItemCombinerMenuSlotDefinition$Builder/lambda$withResultSlot$0 (Lnet/minecraft/world/item/ItemStack;)Z +MD: net/minecraft/world/inventory/ItemCombinerMenuSlotDefinition$SlotDefinition/ ()V net/minecraft/world/inventory/ItemCombinerMenuSlotDefinition$SlotDefinition/ ()V +MD: net/minecraft/world/inventory/ItemCombinerMenuSlotDefinition$SlotDefinition/ (IIILjava/util/function/Predicate;)V net/minecraft/world/inventory/ItemCombinerMenuSlotDefinition$SlotDefinition/ (IIILjava/util/function/Predicate;)V +MD: net/minecraft/world/inventory/ItemCombinerMenuSlotDefinition$SlotDefinition/equals (Ljava/lang/Object;)Z net/minecraft/world/inventory/ItemCombinerMenuSlotDefinition$SlotDefinition/equals (Ljava/lang/Object;)Z +MD: net/minecraft/world/inventory/ItemCombinerMenuSlotDefinition$SlotDefinition/f_265897_ ()Ljava/util/function/Predicate; net/minecraft/world/inventory/ItemCombinerMenuSlotDefinition$SlotDefinition/mayPlace ()Ljava/util/function/Predicate; +MD: net/minecraft/world/inventory/ItemCombinerMenuSlotDefinition$SlotDefinition/f_265926_ ()I net/minecraft/world/inventory/ItemCombinerMenuSlotDefinition$SlotDefinition/y ()I +MD: net/minecraft/world/inventory/ItemCombinerMenuSlotDefinition$SlotDefinition/f_266065_ ()I net/minecraft/world/inventory/ItemCombinerMenuSlotDefinition$SlotDefinition/x ()I +MD: net/minecraft/world/inventory/ItemCombinerMenuSlotDefinition$SlotDefinition/f_266086_ ()I net/minecraft/world/inventory/ItemCombinerMenuSlotDefinition$SlotDefinition/slotIndex ()I +MD: net/minecraft/world/inventory/ItemCombinerMenuSlotDefinition$SlotDefinition/hashCode ()I net/minecraft/world/inventory/ItemCombinerMenuSlotDefinition$SlotDefinition/hashCode ()I +MD: net/minecraft/world/inventory/ItemCombinerMenuSlotDefinition$SlotDefinition/m_266314_ (Lnet/minecraft/world/item/ItemStack;)Z net/minecraft/world/inventory/ItemCombinerMenuSlotDefinition$SlotDefinition/lambda$static$0 (Lnet/minecraft/world/item/ItemStack;)Z +MD: net/minecraft/world/inventory/ItemCombinerMenuSlotDefinition$SlotDefinition/toString ()Ljava/lang/String; net/minecraft/world/inventory/ItemCombinerMenuSlotDefinition$SlotDefinition/toString ()Ljava/lang/String; +MD: net/minecraft/world/inventory/LecternMenu/ (I)V net/minecraft/world/inventory/LecternMenu/ (I)V +MD: net/minecraft/world/inventory/LecternMenu/ (ILnet/minecraft/world/Container;Lnet/minecraft/world/inventory/ContainerData;)V net/minecraft/world/inventory/LecternMenu/ (ILnet/minecraft/world/Container;Lnet/minecraft/world/inventory/ContainerData;)V +MD: net/minecraft/world/inventory/LecternMenu/m_39835_ ()Lnet/minecraft/world/item/ItemStack; net/minecraft/world/inventory/LecternMenu/getBook ()Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/inventory/LecternMenu/m_39836_ ()I net/minecraft/world/inventory/LecternMenu/getPage ()I +MD: net/minecraft/world/inventory/LecternMenu/m_6366_ (Lnet/minecraft/world/entity/player/Player;I)Z net/minecraft/world/inventory/LecternMenu/clickMenuButton (Lnet/minecraft/world/entity/player/Player;I)Z +MD: net/minecraft/world/inventory/LecternMenu/m_6875_ (Lnet/minecraft/world/entity/player/Player;)Z net/minecraft/world/inventory/LecternMenu/stillValid (Lnet/minecraft/world/entity/player/Player;)Z +MD: net/minecraft/world/inventory/LecternMenu/m_7511_ (II)V net/minecraft/world/inventory/LecternMenu/setData (II)V +MD: net/minecraft/world/inventory/LecternMenu/m_7648_ (Lnet/minecraft/world/entity/player/Player;I)Lnet/minecraft/world/item/ItemStack; net/minecraft/world/inventory/LecternMenu/quickMoveStack (Lnet/minecraft/world/entity/player/Player;I)Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/inventory/LecternMenu$1/ (Lnet/minecraft/world/inventory/LecternMenu;Lnet/minecraft/world/Container;III)V net/minecraft/world/inventory/LecternMenu$1/ (Lnet/minecraft/world/inventory/LecternMenu;Lnet/minecraft/world/Container;III)V +MD: net/minecraft/world/inventory/LecternMenu$1/m_6654_ ()V net/minecraft/world/inventory/LecternMenu$1/setChanged ()V +MD: net/minecraft/world/inventory/LoomMenu/ (ILnet/minecraft/world/entity/player/Inventory;)V net/minecraft/world/inventory/LoomMenu/ (ILnet/minecraft/world/entity/player/Inventory;)V +MD: net/minecraft/world/inventory/LoomMenu/ (ILnet/minecraft/world/entity/player/Inventory;Lnet/minecraft/world/inventory/ContainerLevelAccess;)V net/minecraft/world/inventory/LoomMenu/ (ILnet/minecraft/world/entity/player/Inventory;Lnet/minecraft/world/inventory/ContainerLevelAccess;)V +MD: net/minecraft/world/inventory/LoomMenu/m_219991_ (Lnet/minecraft/core/Holder;)V net/minecraft/world/inventory/LoomMenu/setupResultSlot (Lnet/minecraft/core/Holder;)V +MD: net/minecraft/world/inventory/LoomMenu/m_219993_ (Lnet/minecraft/world/item/ItemStack;)Ljava/util/List; net/minecraft/world/inventory/LoomMenu/getSelectablePatterns (Lnet/minecraft/world/item/ItemStack;)Ljava/util/List; +MD: net/minecraft/world/inventory/LoomMenu/m_219995_ ()Ljava/util/List; net/minecraft/world/inventory/LoomMenu/getSelectablePatterns ()Ljava/util/List; +MD: net/minecraft/world/inventory/LoomMenu/m_242642_ (I)Z net/minecraft/world/inventory/LoomMenu/isValidPatternIndex (I)Z +MD: net/minecraft/world/inventory/LoomMenu/m_39869_ (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;)V net/minecraft/world/inventory/LoomMenu/lambda$removed$1 (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/world/inventory/LoomMenu/m_39878_ (Ljava/lang/Runnable;)V net/minecraft/world/inventory/LoomMenu/registerUpdateListener (Ljava/lang/Runnable;)V +MD: net/minecraft/world/inventory/LoomMenu/m_39891_ ()I net/minecraft/world/inventory/LoomMenu/getSelectedBannerPatternIndex ()I +MD: net/minecraft/world/inventory/LoomMenu/m_39894_ ()Lnet/minecraft/world/inventory/Slot; net/minecraft/world/inventory/LoomMenu/getBannerSlot ()Lnet/minecraft/world/inventory/Slot; +MD: net/minecraft/world/inventory/LoomMenu/m_39895_ ()Lnet/minecraft/world/inventory/Slot; net/minecraft/world/inventory/LoomMenu/getDyeSlot ()Lnet/minecraft/world/inventory/Slot; +MD: net/minecraft/world/inventory/LoomMenu/m_39896_ ()Lnet/minecraft/world/inventory/Slot; net/minecraft/world/inventory/LoomMenu/getPatternSlot ()Lnet/minecraft/world/inventory/Slot; +MD: net/minecraft/world/inventory/LoomMenu/m_39897_ ()Lnet/minecraft/world/inventory/Slot; net/minecraft/world/inventory/LoomMenu/getResultSlot ()Lnet/minecraft/world/inventory/Slot; +MD: net/minecraft/world/inventory/LoomMenu/m_39899_ ()V net/minecraft/world/inventory/LoomMenu/lambda$new$0 ()V +MD: net/minecraft/world/inventory/LoomMenu/m_6199_ (Lnet/minecraft/world/Container;)V net/minecraft/world/inventory/LoomMenu/slotsChanged (Lnet/minecraft/world/Container;)V +MD: net/minecraft/world/inventory/LoomMenu/m_6366_ (Lnet/minecraft/world/entity/player/Player;I)Z net/minecraft/world/inventory/LoomMenu/clickMenuButton (Lnet/minecraft/world/entity/player/Player;I)Z +MD: net/minecraft/world/inventory/LoomMenu/m_6875_ (Lnet/minecraft/world/entity/player/Player;)Z net/minecraft/world/inventory/LoomMenu/stillValid (Lnet/minecraft/world/entity/player/Player;)Z +MD: net/minecraft/world/inventory/LoomMenu/m_6877_ (Lnet/minecraft/world/entity/player/Player;)V net/minecraft/world/inventory/LoomMenu/removed (Lnet/minecraft/world/entity/player/Player;)V +MD: net/minecraft/world/inventory/LoomMenu/m_7648_ (Lnet/minecraft/world/entity/player/Player;I)Lnet/minecraft/world/item/ItemStack; net/minecraft/world/inventory/LoomMenu/quickMoveStack (Lnet/minecraft/world/entity/player/Player;I)Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/inventory/LoomMenu$1/ (Lnet/minecraft/world/inventory/LoomMenu;I)V net/minecraft/world/inventory/LoomMenu$1/ (Lnet/minecraft/world/inventory/LoomMenu;I)V +MD: net/minecraft/world/inventory/LoomMenu$1/m_6596_ ()V net/minecraft/world/inventory/LoomMenu$1/setChanged ()V +MD: net/minecraft/world/inventory/LoomMenu$2/ (Lnet/minecraft/world/inventory/LoomMenu;I)V net/minecraft/world/inventory/LoomMenu$2/ (Lnet/minecraft/world/inventory/LoomMenu;I)V +MD: net/minecraft/world/inventory/LoomMenu$2/m_6596_ ()V net/minecraft/world/inventory/LoomMenu$2/setChanged ()V +MD: net/minecraft/world/inventory/LoomMenu$3/ (Lnet/minecraft/world/inventory/LoomMenu;Lnet/minecraft/world/Container;III)V net/minecraft/world/inventory/LoomMenu$3/ (Lnet/minecraft/world/inventory/LoomMenu;Lnet/minecraft/world/Container;III)V +MD: net/minecraft/world/inventory/LoomMenu$3/m_5857_ (Lnet/minecraft/world/item/ItemStack;)Z net/minecraft/world/inventory/LoomMenu$3/mayPlace (Lnet/minecraft/world/item/ItemStack;)Z +MD: net/minecraft/world/inventory/LoomMenu$4/ (Lnet/minecraft/world/inventory/LoomMenu;Lnet/minecraft/world/Container;III)V net/minecraft/world/inventory/LoomMenu$4/ (Lnet/minecraft/world/inventory/LoomMenu;Lnet/minecraft/world/Container;III)V +MD: net/minecraft/world/inventory/LoomMenu$4/m_5857_ (Lnet/minecraft/world/item/ItemStack;)Z net/minecraft/world/inventory/LoomMenu$4/mayPlace (Lnet/minecraft/world/item/ItemStack;)Z +MD: net/minecraft/world/inventory/LoomMenu$5/ (Lnet/minecraft/world/inventory/LoomMenu;Lnet/minecraft/world/Container;III)V net/minecraft/world/inventory/LoomMenu$5/ (Lnet/minecraft/world/inventory/LoomMenu;Lnet/minecraft/world/Container;III)V +MD: net/minecraft/world/inventory/LoomMenu$5/m_5857_ (Lnet/minecraft/world/item/ItemStack;)Z net/minecraft/world/inventory/LoomMenu$5/mayPlace (Lnet/minecraft/world/item/ItemStack;)Z +MD: net/minecraft/world/inventory/LoomMenu$6/ (Lnet/minecraft/world/inventory/LoomMenu;Lnet/minecraft/world/Container;IIILnet/minecraft/world/inventory/ContainerLevelAccess;)V net/minecraft/world/inventory/LoomMenu$6/ (Lnet/minecraft/world/inventory/LoomMenu;Lnet/minecraft/world/Container;IIILnet/minecraft/world/inventory/ContainerLevelAccess;)V +MD: net/minecraft/world/inventory/LoomMenu$6/m_142406_ (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/item/ItemStack;)V net/minecraft/world/inventory/LoomMenu$6/onTake (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/item/ItemStack;)V +MD: net/minecraft/world/inventory/LoomMenu$6/m_39951_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;)V net/minecraft/world/inventory/LoomMenu$6/lambda$onTake$0 (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/world/inventory/LoomMenu$6/m_5857_ (Lnet/minecraft/world/item/ItemStack;)Z net/minecraft/world/inventory/LoomMenu$6/mayPlace (Lnet/minecraft/world/item/ItemStack;)Z +MD: net/minecraft/world/inventory/MenuConstructor/m_7208_ (ILnet/minecraft/world/entity/player/Inventory;Lnet/minecraft/world/entity/player/Player;)Lnet/minecraft/world/inventory/AbstractContainerMenu; net/minecraft/world/inventory/MenuConstructor/createMenu (ILnet/minecraft/world/entity/player/Inventory;Lnet/minecraft/world/entity/player/Player;)Lnet/minecraft/world/inventory/AbstractContainerMenu; +MD: net/minecraft/world/inventory/MenuType/ ()V net/minecraft/world/inventory/MenuType/ ()V +MD: net/minecraft/world/inventory/MenuType/ (Lnet/minecraft/world/inventory/MenuType$MenuSupplier;Lnet/minecraft/world/flag/FeatureFlagSet;)V net/minecraft/world/inventory/MenuType/ (Lnet/minecraft/world/inventory/MenuType$MenuSupplier;Lnet/minecraft/world/flag/FeatureFlagSet;)V +MD: net/minecraft/world/inventory/MenuType/m_245183_ ()Lnet/minecraft/world/flag/FeatureFlagSet; net/minecraft/world/inventory/MenuType/requiredFeatures ()Lnet/minecraft/world/flag/FeatureFlagSet; +MD: net/minecraft/world/inventory/MenuType/m_266268_ (Ljava/lang/String;Lnet/minecraft/world/inventory/MenuType$MenuSupplier;[Lnet/minecraft/world/flag/FeatureFlag;)Lnet/minecraft/world/inventory/MenuType; net/minecraft/world/inventory/MenuType/register (Ljava/lang/String;Lnet/minecraft/world/inventory/MenuType$MenuSupplier;[Lnet/minecraft/world/flag/FeatureFlag;)Lnet/minecraft/world/inventory/MenuType; +MD: net/minecraft/world/inventory/MenuType/m_39985_ (ILnet/minecraft/world/entity/player/Inventory;)Lnet/minecraft/world/inventory/AbstractContainerMenu; net/minecraft/world/inventory/MenuType/create (ILnet/minecraft/world/entity/player/Inventory;)Lnet/minecraft/world/inventory/AbstractContainerMenu; +MD: net/minecraft/world/inventory/MenuType/m_39988_ (Ljava/lang/String;Lnet/minecraft/world/inventory/MenuType$MenuSupplier;)Lnet/minecraft/world/inventory/MenuType; net/minecraft/world/inventory/MenuType/register (Ljava/lang/String;Lnet/minecraft/world/inventory/MenuType$MenuSupplier;)Lnet/minecraft/world/inventory/MenuType; +MD: net/minecraft/world/inventory/MenuType/m_39991_ (ILnet/minecraft/world/entity/player/Inventory;)Lnet/minecraft/world/inventory/LecternMenu; net/minecraft/world/inventory/MenuType/lambda$static$0 (ILnet/minecraft/world/entity/player/Inventory;)Lnet/minecraft/world/inventory/LecternMenu; +MD: net/minecraft/world/inventory/MenuType$MenuSupplier/m_39994_ (ILnet/minecraft/world/entity/player/Inventory;)Lnet/minecraft/world/inventory/AbstractContainerMenu; net/minecraft/world/inventory/MenuType$MenuSupplier/create (ILnet/minecraft/world/entity/player/Inventory;)Lnet/minecraft/world/inventory/AbstractContainerMenu; +MD: net/minecraft/world/inventory/MerchantContainer/ (Lnet/minecraft/world/item/trading/Merchant;)V net/minecraft/world/inventory/MerchantContainer/ (Lnet/minecraft/world/item/trading/Merchant;)V +MD: net/minecraft/world/inventory/MerchantContainer/m_40020_ (I)V net/minecraft/world/inventory/MerchantContainer/setSelectionHint (I)V +MD: net/minecraft/world/inventory/MerchantContainer/m_40022_ (I)Z net/minecraft/world/inventory/MerchantContainer/isPaymentSlot (I)Z +MD: net/minecraft/world/inventory/MerchantContainer/m_40024_ ()V net/minecraft/world/inventory/MerchantContainer/updateSellItem ()V +MD: net/minecraft/world/inventory/MerchantContainer/m_40025_ ()Lnet/minecraft/world/item/trading/MerchantOffer; net/minecraft/world/inventory/MerchantContainer/getActiveOffer ()Lnet/minecraft/world/item/trading/MerchantOffer; +MD: net/minecraft/world/inventory/MerchantContainer/m_40026_ ()I net/minecraft/world/inventory/MerchantContainer/getFutureXp ()I +MD: net/minecraft/world/inventory/MerchantContainer/m_6211_ ()V net/minecraft/world/inventory/MerchantContainer/clearContent ()V +MD: net/minecraft/world/inventory/MerchantContainer/m_6542_ (Lnet/minecraft/world/entity/player/Player;)Z net/minecraft/world/inventory/MerchantContainer/stillValid (Lnet/minecraft/world/entity/player/Player;)Z +MD: net/minecraft/world/inventory/MerchantContainer/m_6596_ ()V net/minecraft/world/inventory/MerchantContainer/setChanged ()V +MD: net/minecraft/world/inventory/MerchantContainer/m_6643_ ()I net/minecraft/world/inventory/MerchantContainer/getContainerSize ()I +MD: net/minecraft/world/inventory/MerchantContainer/m_6836_ (ILnet/minecraft/world/item/ItemStack;)V net/minecraft/world/inventory/MerchantContainer/setItem (ILnet/minecraft/world/item/ItemStack;)V +MD: net/minecraft/world/inventory/MerchantContainer/m_7407_ (II)Lnet/minecraft/world/item/ItemStack; net/minecraft/world/inventory/MerchantContainer/removeItem (II)Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/inventory/MerchantContainer/m_7983_ ()Z net/minecraft/world/inventory/MerchantContainer/isEmpty ()Z +MD: net/minecraft/world/inventory/MerchantContainer/m_8016_ (I)Lnet/minecraft/world/item/ItemStack; net/minecraft/world/inventory/MerchantContainer/removeItemNoUpdate (I)Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/inventory/MerchantContainer/m_8020_ (I)Lnet/minecraft/world/item/ItemStack; net/minecraft/world/inventory/MerchantContainer/getItem (I)Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/inventory/MerchantMenu/ (ILnet/minecraft/world/entity/player/Inventory;)V net/minecraft/world/inventory/MerchantMenu/ (ILnet/minecraft/world/entity/player/Inventory;)V +MD: net/minecraft/world/inventory/MerchantMenu/ (ILnet/minecraft/world/entity/player/Inventory;Lnet/minecraft/world/item/trading/Merchant;)V net/minecraft/world/inventory/MerchantMenu/ (ILnet/minecraft/world/entity/player/Inventory;Lnet/minecraft/world/item/trading/Merchant;)V +MD: net/minecraft/world/inventory/MerchantMenu/m_40046_ (Lnet/minecraft/world/item/trading/MerchantOffers;)V net/minecraft/world/inventory/MerchantMenu/setOffers (Lnet/minecraft/world/item/trading/MerchantOffers;)V +MD: net/minecraft/world/inventory/MerchantMenu/m_40048_ (Z)V net/minecraft/world/inventory/MerchantMenu/setShowProgressBar (Z)V +MD: net/minecraft/world/inventory/MerchantMenu/m_40058_ (Z)V net/minecraft/world/inventory/MerchantMenu/setCanRestock (Z)V +MD: net/minecraft/world/inventory/MerchantMenu/m_40060_ (ILnet/minecraft/world/item/ItemStack;)V net/minecraft/world/inventory/MerchantMenu/moveFromInventoryToPaymentSlot (ILnet/minecraft/world/item/ItemStack;)V +MD: net/minecraft/world/inventory/MerchantMenu/m_40063_ (I)V net/minecraft/world/inventory/MerchantMenu/setSelectionHint (I)V +MD: net/minecraft/world/inventory/MerchantMenu/m_40065_ ()I net/minecraft/world/inventory/MerchantMenu/getTraderXp ()I +MD: net/minecraft/world/inventory/MerchantMenu/m_40066_ (I)V net/minecraft/world/inventory/MerchantMenu/setXp (I)V +MD: net/minecraft/world/inventory/MerchantMenu/m_40068_ ()I net/minecraft/world/inventory/MerchantMenu/getFutureTraderXp ()I +MD: net/minecraft/world/inventory/MerchantMenu/m_40069_ (I)V net/minecraft/world/inventory/MerchantMenu/setMerchantLevel (I)V +MD: net/minecraft/world/inventory/MerchantMenu/m_40071_ ()I net/minecraft/world/inventory/MerchantMenu/getTraderLevel ()I +MD: net/minecraft/world/inventory/MerchantMenu/m_40072_ (I)V net/minecraft/world/inventory/MerchantMenu/tryMoveItems (I)V +MD: net/minecraft/world/inventory/MerchantMenu/m_40074_ ()Z net/minecraft/world/inventory/MerchantMenu/canRestock ()Z +MD: net/minecraft/world/inventory/MerchantMenu/m_40075_ ()Lnet/minecraft/world/item/trading/MerchantOffers; net/minecraft/world/inventory/MerchantMenu/getOffers ()Lnet/minecraft/world/item/trading/MerchantOffers; +MD: net/minecraft/world/inventory/MerchantMenu/m_40076_ ()Z net/minecraft/world/inventory/MerchantMenu/showProgressBar ()Z +MD: net/minecraft/world/inventory/MerchantMenu/m_40077_ ()V net/minecraft/world/inventory/MerchantMenu/playTradeSound ()V +MD: net/minecraft/world/inventory/MerchantMenu/m_5882_ (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/inventory/Slot;)Z net/minecraft/world/inventory/MerchantMenu/canTakeItemForPickAll (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/inventory/Slot;)Z +MD: net/minecraft/world/inventory/MerchantMenu/m_6199_ (Lnet/minecraft/world/Container;)V net/minecraft/world/inventory/MerchantMenu/slotsChanged (Lnet/minecraft/world/Container;)V +MD: net/minecraft/world/inventory/MerchantMenu/m_6875_ (Lnet/minecraft/world/entity/player/Player;)Z net/minecraft/world/inventory/MerchantMenu/stillValid (Lnet/minecraft/world/entity/player/Player;)Z +MD: net/minecraft/world/inventory/MerchantMenu/m_6877_ (Lnet/minecraft/world/entity/player/Player;)V net/minecraft/world/inventory/MerchantMenu/removed (Lnet/minecraft/world/entity/player/Player;)V +MD: net/minecraft/world/inventory/MerchantMenu/m_7648_ (Lnet/minecraft/world/entity/player/Player;I)Lnet/minecraft/world/item/ItemStack; net/minecraft/world/inventory/MerchantMenu/quickMoveStack (Lnet/minecraft/world/entity/player/Player;I)Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/inventory/MerchantResultSlot/ (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/item/trading/Merchant;Lnet/minecraft/world/inventory/MerchantContainer;III)V net/minecraft/world/inventory/MerchantResultSlot/ (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/item/trading/Merchant;Lnet/minecraft/world/inventory/MerchantContainer;III)V +MD: net/minecraft/world/inventory/MerchantResultSlot/m_142406_ (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/item/ItemStack;)V net/minecraft/world/inventory/MerchantResultSlot/onTake (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/item/ItemStack;)V +MD: net/minecraft/world/inventory/MerchantResultSlot/m_5845_ (Lnet/minecraft/world/item/ItemStack;)V net/minecraft/world/inventory/MerchantResultSlot/checkTakeAchievements (Lnet/minecraft/world/item/ItemStack;)V +MD: net/minecraft/world/inventory/MerchantResultSlot/m_5857_ (Lnet/minecraft/world/item/ItemStack;)Z net/minecraft/world/inventory/MerchantResultSlot/mayPlace (Lnet/minecraft/world/item/ItemStack;)Z +MD: net/minecraft/world/inventory/MerchantResultSlot/m_6201_ (I)Lnet/minecraft/world/item/ItemStack; net/minecraft/world/inventory/MerchantResultSlot/remove (I)Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/inventory/MerchantResultSlot/m_7169_ (Lnet/minecraft/world/item/ItemStack;I)V net/minecraft/world/inventory/MerchantResultSlot/onQuickCraft (Lnet/minecraft/world/item/ItemStack;I)V +MD: net/minecraft/world/inventory/PlayerEnderChestContainer/ ()V net/minecraft/world/inventory/PlayerEnderChestContainer/ ()V +MD: net/minecraft/world/inventory/PlayerEnderChestContainer/m_150633_ (Lnet/minecraft/world/level/block/entity/EnderChestBlockEntity;)Z net/minecraft/world/inventory/PlayerEnderChestContainer/isActiveChest (Lnet/minecraft/world/level/block/entity/EnderChestBlockEntity;)Z +MD: net/minecraft/world/inventory/PlayerEnderChestContainer/m_40105_ (Lnet/minecraft/world/level/block/entity/EnderChestBlockEntity;)V net/minecraft/world/inventory/PlayerEnderChestContainer/setActiveChest (Lnet/minecraft/world/level/block/entity/EnderChestBlockEntity;)V +MD: net/minecraft/world/inventory/PlayerEnderChestContainer/m_5785_ (Lnet/minecraft/world/entity/player/Player;)V net/minecraft/world/inventory/PlayerEnderChestContainer/stopOpen (Lnet/minecraft/world/entity/player/Player;)V +MD: net/minecraft/world/inventory/PlayerEnderChestContainer/m_5856_ (Lnet/minecraft/world/entity/player/Player;)V net/minecraft/world/inventory/PlayerEnderChestContainer/startOpen (Lnet/minecraft/world/entity/player/Player;)V +MD: net/minecraft/world/inventory/PlayerEnderChestContainer/m_6542_ (Lnet/minecraft/world/entity/player/Player;)Z net/minecraft/world/inventory/PlayerEnderChestContainer/stillValid (Lnet/minecraft/world/entity/player/Player;)Z +MD: net/minecraft/world/inventory/PlayerEnderChestContainer/m_7797_ (Lnet/minecraft/nbt/ListTag;)V net/minecraft/world/inventory/PlayerEnderChestContainer/fromTag (Lnet/minecraft/nbt/ListTag;)V +MD: net/minecraft/world/inventory/PlayerEnderChestContainer/m_7927_ ()Lnet/minecraft/nbt/ListTag; net/minecraft/world/inventory/PlayerEnderChestContainer/createTag ()Lnet/minecraft/nbt/ListTag; +MD: net/minecraft/world/inventory/RecipeBookMenu/ (Lnet/minecraft/world/inventory/MenuType;I)V net/minecraft/world/inventory/RecipeBookMenu/ (Lnet/minecraft/world/inventory/MenuType;I)V +MD: net/minecraft/world/inventory/RecipeBookMenu/m_142157_ (I)Z net/minecraft/world/inventory/RecipeBookMenu/shouldMoveToInventory (I)Z +MD: net/minecraft/world/inventory/RecipeBookMenu/m_5816_ (Lnet/minecraft/world/entity/player/StackedContents;)V net/minecraft/world/inventory/RecipeBookMenu/fillCraftSlotsStackedContents (Lnet/minecraft/world/entity/player/StackedContents;)V +MD: net/minecraft/world/inventory/RecipeBookMenu/m_5867_ ()Lnet/minecraft/world/inventory/RecipeBookType; net/minecraft/world/inventory/RecipeBookMenu/getRecipeBookType ()Lnet/minecraft/world/inventory/RecipeBookType; +MD: net/minecraft/world/inventory/RecipeBookMenu/m_6032_ (Lnet/minecraft/world/item/crafting/Recipe;)Z net/minecraft/world/inventory/RecipeBookMenu/recipeMatches (Lnet/minecraft/world/item/crafting/Recipe;)Z +MD: net/minecraft/world/inventory/RecipeBookMenu/m_6635_ ()I net/minecraft/world/inventory/RecipeBookMenu/getGridWidth ()I +MD: net/minecraft/world/inventory/RecipeBookMenu/m_6636_ ()I net/minecraft/world/inventory/RecipeBookMenu/getResultSlotIndex ()I +MD: net/minecraft/world/inventory/RecipeBookMenu/m_6650_ ()V net/minecraft/world/inventory/RecipeBookMenu/clearCraftingContent ()V +MD: net/minecraft/world/inventory/RecipeBookMenu/m_6653_ ()I net/minecraft/world/inventory/RecipeBookMenu/getSize ()I +MD: net/minecraft/world/inventory/RecipeBookMenu/m_6656_ ()I net/minecraft/world/inventory/RecipeBookMenu/getGridHeight ()I +MD: net/minecraft/world/inventory/RecipeBookMenu/m_6951_ (ZLnet/minecraft/world/item/crafting/Recipe;Lnet/minecraft/server/level/ServerPlayer;)V net/minecraft/world/inventory/RecipeBookMenu/handlePlacement (ZLnet/minecraft/world/item/crafting/Recipe;Lnet/minecraft/server/level/ServerPlayer;)V +MD: net/minecraft/world/inventory/RecipeBookType/ ()V net/minecraft/world/inventory/RecipeBookType/ ()V +MD: net/minecraft/world/inventory/RecipeBookType/ (Ljava/lang/String;I)V net/minecraft/world/inventory/RecipeBookType/ (Ljava/lang/String;I)V +MD: net/minecraft/world/inventory/RecipeBookType/m_150636_ ()[Lnet/minecraft/world/inventory/RecipeBookType; net/minecraft/world/inventory/RecipeBookType/$values ()[Lnet/minecraft/world/inventory/RecipeBookType; +MD: net/minecraft/world/inventory/RecipeBookType/valueOf (Ljava/lang/String;)Lnet/minecraft/world/inventory/RecipeBookType; net/minecraft/world/inventory/RecipeBookType/valueOf (Ljava/lang/String;)Lnet/minecraft/world/inventory/RecipeBookType; +MD: net/minecraft/world/inventory/RecipeBookType/values ()[Lnet/minecraft/world/inventory/RecipeBookType; net/minecraft/world/inventory/RecipeBookType/values ()[Lnet/minecraft/world/inventory/RecipeBookType; +MD: net/minecraft/world/inventory/RecipeHolder/m_40135_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/server/level/ServerPlayer;Lnet/minecraft/world/item/crafting/Recipe;)Z net/minecraft/world/inventory/RecipeHolder/setRecipeUsed (Lnet/minecraft/world/level/Level;Lnet/minecraft/server/level/ServerPlayer;Lnet/minecraft/world/item/crafting/Recipe;)Z +MD: net/minecraft/world/inventory/RecipeHolder/m_58395_ (Lnet/minecraft/world/entity/player/Player;Ljava/util/List;)V net/minecraft/world/inventory/RecipeHolder/awardUsedRecipes (Lnet/minecraft/world/entity/player/Player;Ljava/util/List;)V +MD: net/minecraft/world/inventory/RecipeHolder/m_6029_ (Lnet/minecraft/world/item/crafting/Recipe;)V net/minecraft/world/inventory/RecipeHolder/setRecipeUsed (Lnet/minecraft/world/item/crafting/Recipe;)V +MD: net/minecraft/world/inventory/RecipeHolder/m_7928_ ()Lnet/minecraft/world/item/crafting/Recipe; net/minecraft/world/inventory/RecipeHolder/getRecipeUsed ()Lnet/minecraft/world/item/crafting/Recipe; +MD: net/minecraft/world/inventory/ResultContainer/ ()V net/minecraft/world/inventory/ResultContainer/ ()V +MD: net/minecraft/world/inventory/ResultContainer/m_6029_ (Lnet/minecraft/world/item/crafting/Recipe;)V net/minecraft/world/inventory/ResultContainer/setRecipeUsed (Lnet/minecraft/world/item/crafting/Recipe;)V +MD: net/minecraft/world/inventory/ResultContainer/m_6211_ ()V net/minecraft/world/inventory/ResultContainer/clearContent ()V +MD: net/minecraft/world/inventory/ResultContainer/m_6542_ (Lnet/minecraft/world/entity/player/Player;)Z net/minecraft/world/inventory/ResultContainer/stillValid (Lnet/minecraft/world/entity/player/Player;)Z +MD: net/minecraft/world/inventory/ResultContainer/m_6596_ ()V net/minecraft/world/inventory/ResultContainer/setChanged ()V +MD: net/minecraft/world/inventory/ResultContainer/m_6643_ ()I net/minecraft/world/inventory/ResultContainer/getContainerSize ()I +MD: net/minecraft/world/inventory/ResultContainer/m_6836_ (ILnet/minecraft/world/item/ItemStack;)V net/minecraft/world/inventory/ResultContainer/setItem (ILnet/minecraft/world/item/ItemStack;)V +MD: net/minecraft/world/inventory/ResultContainer/m_7407_ (II)Lnet/minecraft/world/item/ItemStack; net/minecraft/world/inventory/ResultContainer/removeItem (II)Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/inventory/ResultContainer/m_7928_ ()Lnet/minecraft/world/item/crafting/Recipe; net/minecraft/world/inventory/ResultContainer/getRecipeUsed ()Lnet/minecraft/world/item/crafting/Recipe; +MD: net/minecraft/world/inventory/ResultContainer/m_7983_ ()Z net/minecraft/world/inventory/ResultContainer/isEmpty ()Z +MD: net/minecraft/world/inventory/ResultContainer/m_8016_ (I)Lnet/minecraft/world/item/ItemStack; net/minecraft/world/inventory/ResultContainer/removeItemNoUpdate (I)Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/inventory/ResultContainer/m_8020_ (I)Lnet/minecraft/world/item/ItemStack; net/minecraft/world/inventory/ResultContainer/getItem (I)Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/inventory/ResultSlot/ (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/inventory/CraftingContainer;Lnet/minecraft/world/Container;III)V net/minecraft/world/inventory/ResultSlot/ (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/inventory/CraftingContainer;Lnet/minecraft/world/Container;III)V +MD: net/minecraft/world/inventory/ResultSlot/m_142406_ (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/item/ItemStack;)V net/minecraft/world/inventory/ResultSlot/onTake (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/item/ItemStack;)V +MD: net/minecraft/world/inventory/ResultSlot/m_5845_ (Lnet/minecraft/world/item/ItemStack;)V net/minecraft/world/inventory/ResultSlot/checkTakeAchievements (Lnet/minecraft/world/item/ItemStack;)V +MD: net/minecraft/world/inventory/ResultSlot/m_5857_ (Lnet/minecraft/world/item/ItemStack;)Z net/minecraft/world/inventory/ResultSlot/mayPlace (Lnet/minecraft/world/item/ItemStack;)Z +MD: net/minecraft/world/inventory/ResultSlot/m_6201_ (I)Lnet/minecraft/world/item/ItemStack; net/minecraft/world/inventory/ResultSlot/remove (I)Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/inventory/ResultSlot/m_6405_ (I)V net/minecraft/world/inventory/ResultSlot/onSwapCraft (I)V +MD: net/minecraft/world/inventory/ResultSlot/m_7169_ (Lnet/minecraft/world/item/ItemStack;I)V net/minecraft/world/inventory/ResultSlot/onQuickCraft (Lnet/minecraft/world/item/ItemStack;I)V +MD: net/minecraft/world/inventory/ShulkerBoxMenu/ (ILnet/minecraft/world/entity/player/Inventory;)V net/minecraft/world/inventory/ShulkerBoxMenu/ (ILnet/minecraft/world/entity/player/Inventory;)V +MD: net/minecraft/world/inventory/ShulkerBoxMenu/ (ILnet/minecraft/world/entity/player/Inventory;Lnet/minecraft/world/Container;)V net/minecraft/world/inventory/ShulkerBoxMenu/ (ILnet/minecraft/world/entity/player/Inventory;Lnet/minecraft/world/Container;)V +MD: net/minecraft/world/inventory/ShulkerBoxMenu/m_6875_ (Lnet/minecraft/world/entity/player/Player;)Z net/minecraft/world/inventory/ShulkerBoxMenu/stillValid (Lnet/minecraft/world/entity/player/Player;)Z +MD: net/minecraft/world/inventory/ShulkerBoxMenu/m_6877_ (Lnet/minecraft/world/entity/player/Player;)V net/minecraft/world/inventory/ShulkerBoxMenu/removed (Lnet/minecraft/world/entity/player/Player;)V +MD: net/minecraft/world/inventory/ShulkerBoxMenu/m_7648_ (Lnet/minecraft/world/entity/player/Player;I)Lnet/minecraft/world/item/ItemStack; net/minecraft/world/inventory/ShulkerBoxMenu/quickMoveStack (Lnet/minecraft/world/entity/player/Player;I)Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/inventory/ShulkerBoxSlot/ (Lnet/minecraft/world/Container;III)V net/minecraft/world/inventory/ShulkerBoxSlot/ (Lnet/minecraft/world/Container;III)V +MD: net/minecraft/world/inventory/ShulkerBoxSlot/m_5857_ (Lnet/minecraft/world/item/ItemStack;)Z net/minecraft/world/inventory/ShulkerBoxSlot/mayPlace (Lnet/minecraft/world/item/ItemStack;)Z +MD: net/minecraft/world/inventory/SimpleContainerData/ (I)V net/minecraft/world/inventory/SimpleContainerData/ (I)V +MD: net/minecraft/world/inventory/SimpleContainerData/m_6413_ (I)I net/minecraft/world/inventory/SimpleContainerData/get (I)I +MD: net/minecraft/world/inventory/SimpleContainerData/m_6499_ ()I net/minecraft/world/inventory/SimpleContainerData/getCount ()I +MD: net/minecraft/world/inventory/SimpleContainerData/m_8050_ (II)V net/minecraft/world/inventory/SimpleContainerData/set (II)V +MD: net/minecraft/world/inventory/Slot/ (Lnet/minecraft/world/Container;III)V net/minecraft/world/inventory/Slot/ (Lnet/minecraft/world/Container;III)V +MD: net/minecraft/world/inventory/Slot/m_142406_ (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/item/ItemStack;)V net/minecraft/world/inventory/Slot/onTake (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/item/ItemStack;)V +MD: net/minecraft/world/inventory/Slot/m_150641_ (IILnet/minecraft/world/entity/player/Player;)Ljava/util/Optional; net/minecraft/world/inventory/Slot/tryRemove (IILnet/minecraft/world/entity/player/Player;)Ljava/util/Optional; +MD: net/minecraft/world/inventory/Slot/m_150647_ (IILnet/minecraft/world/entity/player/Player;)Lnet/minecraft/world/item/ItemStack; net/minecraft/world/inventory/Slot/safeTake (IILnet/minecraft/world/entity/player/Player;)Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/inventory/Slot/m_150651_ (Lnet/minecraft/world/entity/player/Player;)Z net/minecraft/world/inventory/Slot/allowModification (Lnet/minecraft/world/entity/player/Player;)Z +MD: net/minecraft/world/inventory/Slot/m_150653_ (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/item/ItemStack;)V net/minecraft/world/inventory/Slot/lambda$safeTake$0 (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/item/ItemStack;)V +MD: net/minecraft/world/inventory/Slot/m_150656_ (Lnet/minecraft/world/item/ItemStack;I)Lnet/minecraft/world/item/ItemStack; net/minecraft/world/inventory/Slot/safeInsert (Lnet/minecraft/world/item/ItemStack;I)Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/inventory/Slot/m_150659_ (Lnet/minecraft/world/item/ItemStack;)Lnet/minecraft/world/item/ItemStack; net/minecraft/world/inventory/Slot/safeInsert (Lnet/minecraft/world/item/ItemStack;)Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/inventory/Slot/m_150661_ ()I net/minecraft/world/inventory/Slot/getContainerSlot ()I +MD: net/minecraft/world/inventory/Slot/m_269060_ (Lnet/minecraft/world/item/ItemStack;)V net/minecraft/world/inventory/Slot/setByPlayer (Lnet/minecraft/world/item/ItemStack;)V +MD: net/minecraft/world/inventory/Slot/m_280329_ ()Z net/minecraft/world/inventory/Slot/isHighlightable ()Z +MD: net/minecraft/world/inventory/Slot/m_40234_ (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/item/ItemStack;)V net/minecraft/world/inventory/Slot/onQuickCraft (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/item/ItemStack;)V +MD: net/minecraft/world/inventory/Slot/m_5845_ (Lnet/minecraft/world/item/ItemStack;)V net/minecraft/world/inventory/Slot/checkTakeAchievements (Lnet/minecraft/world/item/ItemStack;)V +MD: net/minecraft/world/inventory/Slot/m_5852_ (Lnet/minecraft/world/item/ItemStack;)V net/minecraft/world/inventory/Slot/set (Lnet/minecraft/world/item/ItemStack;)V +MD: net/minecraft/world/inventory/Slot/m_5857_ (Lnet/minecraft/world/item/ItemStack;)Z net/minecraft/world/inventory/Slot/mayPlace (Lnet/minecraft/world/item/ItemStack;)Z +MD: net/minecraft/world/inventory/Slot/m_5866_ (Lnet/minecraft/world/item/ItemStack;)I net/minecraft/world/inventory/Slot/getMaxStackSize (Lnet/minecraft/world/item/ItemStack;)I +MD: net/minecraft/world/inventory/Slot/m_6201_ (I)Lnet/minecraft/world/item/ItemStack; net/minecraft/world/inventory/Slot/remove (I)Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/inventory/Slot/m_6405_ (I)V net/minecraft/world/inventory/Slot/onSwapCraft (I)V +MD: net/minecraft/world/inventory/Slot/m_6641_ ()I net/minecraft/world/inventory/Slot/getMaxStackSize ()I +MD: net/minecraft/world/inventory/Slot/m_6654_ ()V net/minecraft/world/inventory/Slot/setChanged ()V +MD: net/minecraft/world/inventory/Slot/m_6657_ ()Z net/minecraft/world/inventory/Slot/hasItem ()Z +MD: net/minecraft/world/inventory/Slot/m_6659_ ()Z net/minecraft/world/inventory/Slot/isActive ()Z +MD: net/minecraft/world/inventory/Slot/m_7169_ (Lnet/minecraft/world/item/ItemStack;I)V net/minecraft/world/inventory/Slot/onQuickCraft (Lnet/minecraft/world/item/ItemStack;I)V +MD: net/minecraft/world/inventory/Slot/m_7543_ ()Lcom/mojang/datafixers/util/Pair; net/minecraft/world/inventory/Slot/getNoItemIcon ()Lcom/mojang/datafixers/util/Pair; +MD: net/minecraft/world/inventory/Slot/m_7993_ ()Lnet/minecraft/world/item/ItemStack; net/minecraft/world/inventory/Slot/getItem ()Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/inventory/Slot/m_8010_ (Lnet/minecraft/world/entity/player/Player;)Z net/minecraft/world/inventory/Slot/mayPickup (Lnet/minecraft/world/entity/player/Player;)Z +MD: net/minecraft/world/inventory/SmithingMenu/ (ILnet/minecraft/world/entity/player/Inventory;)V net/minecraft/world/inventory/SmithingMenu/ (ILnet/minecraft/world/entity/player/Inventory;)V +MD: net/minecraft/world/inventory/SmithingMenu/ (ILnet/minecraft/world/entity/player/Inventory;Lnet/minecraft/world/inventory/ContainerLevelAccess;)V net/minecraft/world/inventory/SmithingMenu/ (ILnet/minecraft/world/entity/player/Inventory;Lnet/minecraft/world/inventory/ContainerLevelAccess;)V +MD: net/minecraft/world/inventory/SmithingMenu/m_142365_ (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/item/ItemStack;)V net/minecraft/world/inventory/SmithingMenu/onTake (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/item/ItemStack;)V +MD: net/minecraft/world/inventory/SmithingMenu/m_266140_ (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/item/crafting/SmithingRecipe;)Ljava/util/Optional; net/minecraft/world/inventory/SmithingMenu/lambda$getSlotToQuickMoveTo$7 (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/item/crafting/SmithingRecipe;)Ljava/util/Optional; +MD: net/minecraft/world/inventory/SmithingMenu/m_266141_ (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/item/crafting/SmithingRecipe;)Z net/minecraft/world/inventory/SmithingMenu/lambda$createInputSlotDefinitions$0 (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/item/crafting/SmithingRecipe;)Z +MD: net/minecraft/world/inventory/SmithingMenu/m_266142_ (Lnet/minecraft/world/item/ItemStack;)Z net/minecraft/world/inventory/SmithingMenu/lambda$createInputSlotDefinitions$1 (Lnet/minecraft/world/item/ItemStack;)Z +MD: net/minecraft/world/inventory/SmithingMenu/m_266144_ (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/item/crafting/SmithingRecipe;)Ljava/util/Optional; net/minecraft/world/inventory/SmithingMenu/lambda$canMoveIntoInputSlots$8 (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/item/crafting/SmithingRecipe;)Ljava/util/Optional; +MD: net/minecraft/world/inventory/SmithingMenu/m_266159_ (Lnet/minecraft/world/item/ItemStack;)I net/minecraft/world/inventory/SmithingMenu/getSlotToQuickMoveTo (Lnet/minecraft/world/item/ItemStack;)I +MD: net/minecraft/world/inventory/SmithingMenu/m_266183_ ()Lnet/minecraft/world/inventory/ItemCombinerMenuSlotDefinition; net/minecraft/world/inventory/SmithingMenu/createInputSlotDefinitions ()Lnet/minecraft/world/inventory/ItemCombinerMenuSlotDefinition; +MD: net/minecraft/world/inventory/SmithingMenu/m_266320_ (Lnet/minecraft/world/item/crafting/SmithingRecipe;Lnet/minecraft/world/item/ItemStack;)Ljava/util/Optional; net/minecraft/world/inventory/SmithingMenu/findSlotMatchingIngredient (Lnet/minecraft/world/item/crafting/SmithingRecipe;Lnet/minecraft/world/item/ItemStack;)Ljava/util/Optional; +MD: net/minecraft/world/inventory/SmithingMenu/m_280632_ ()Ljava/util/List; net/minecraft/world/inventory/SmithingMenu/getRelevantItems ()Ljava/util/List; +MD: net/minecraft/world/inventory/SmithingMenu/m_285723_ (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/item/crafting/SmithingRecipe;)Z net/minecraft/world/inventory/SmithingMenu/lambda$createInputSlotDefinitions$4 (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/item/crafting/SmithingRecipe;)Z +MD: net/minecraft/world/inventory/SmithingMenu/m_285724_ (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/item/crafting/SmithingRecipe;)Z net/minecraft/world/inventory/SmithingMenu/lambda$createInputSlotDefinitions$2 (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/item/crafting/SmithingRecipe;)Z +MD: net/minecraft/world/inventory/SmithingMenu/m_285725_ (Lnet/minecraft/world/item/ItemStack;)Z net/minecraft/world/inventory/SmithingMenu/lambda$createInputSlotDefinitions$5 (Lnet/minecraft/world/item/ItemStack;)Z +MD: net/minecraft/world/inventory/SmithingMenu/m_285726_ (Lnet/minecraft/world/item/ItemStack;)Z net/minecraft/world/inventory/SmithingMenu/lambda$createInputSlotDefinitions$3 (Lnet/minecraft/world/item/ItemStack;)Z +MD: net/minecraft/world/inventory/SmithingMenu/m_40262_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;)V net/minecraft/world/inventory/SmithingMenu/lambda$onTake$6 (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/world/inventory/SmithingMenu/m_40270_ (I)V net/minecraft/world/inventory/SmithingMenu/shrinkStackInSlot (I)V +MD: net/minecraft/world/inventory/SmithingMenu/m_5861_ (Lnet/minecraft/world/item/ItemStack;)Z net/minecraft/world/inventory/SmithingMenu/canMoveIntoInputSlots (Lnet/minecraft/world/item/ItemStack;)Z +MD: net/minecraft/world/inventory/SmithingMenu/m_5882_ (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/inventory/Slot;)Z net/minecraft/world/inventory/SmithingMenu/canTakeItemForPickAll (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/inventory/Slot;)Z +MD: net/minecraft/world/inventory/SmithingMenu/m_6560_ (Lnet/minecraft/world/entity/player/Player;Z)Z net/minecraft/world/inventory/SmithingMenu/mayPickup (Lnet/minecraft/world/entity/player/Player;Z)Z +MD: net/minecraft/world/inventory/SmithingMenu/m_6640_ ()V net/minecraft/world/inventory/SmithingMenu/createResult ()V +MD: net/minecraft/world/inventory/SmithingMenu/m_8039_ (Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/world/inventory/SmithingMenu/isValidBlock (Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/world/inventory/SmokerMenu/ (ILnet/minecraft/world/entity/player/Inventory;)V net/minecraft/world/inventory/SmokerMenu/ (ILnet/minecraft/world/entity/player/Inventory;)V +MD: net/minecraft/world/inventory/SmokerMenu/ (ILnet/minecraft/world/entity/player/Inventory;Lnet/minecraft/world/Container;Lnet/minecraft/world/inventory/ContainerData;)V net/minecraft/world/inventory/SmokerMenu/ (ILnet/minecraft/world/entity/player/Inventory;Lnet/minecraft/world/Container;Lnet/minecraft/world/inventory/ContainerData;)V +MD: net/minecraft/world/inventory/StackedContentsCompatible/m_5809_ (Lnet/minecraft/world/entity/player/StackedContents;)V net/minecraft/world/inventory/StackedContentsCompatible/fillStackedContents (Lnet/minecraft/world/entity/player/StackedContents;)V +MD: net/minecraft/world/inventory/StonecutterMenu/ (ILnet/minecraft/world/entity/player/Inventory;)V net/minecraft/world/inventory/StonecutterMenu/ (ILnet/minecraft/world/entity/player/Inventory;)V +MD: net/minecraft/world/inventory/StonecutterMenu/ (ILnet/minecraft/world/entity/player/Inventory;Lnet/minecraft/world/inventory/ContainerLevelAccess;)V net/minecraft/world/inventory/StonecutterMenu/ (ILnet/minecraft/world/entity/player/Inventory;Lnet/minecraft/world/inventory/ContainerLevelAccess;)V +MD: net/minecraft/world/inventory/StonecutterMenu/m_40303_ (Lnet/minecraft/world/Container;Lnet/minecraft/world/item/ItemStack;)V net/minecraft/world/inventory/StonecutterMenu/setupRecipeList (Lnet/minecraft/world/Container;Lnet/minecraft/world/item/ItemStack;)V +MD: net/minecraft/world/inventory/StonecutterMenu/m_40311_ (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;)V net/minecraft/world/inventory/StonecutterMenu/lambda$removed$1 (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/world/inventory/StonecutterMenu/m_40323_ (Ljava/lang/Runnable;)V net/minecraft/world/inventory/StonecutterMenu/registerUpdateListener (Ljava/lang/Runnable;)V +MD: net/minecraft/world/inventory/StonecutterMenu/m_40334_ (I)Z net/minecraft/world/inventory/StonecutterMenu/isValidRecipeIndex (I)Z +MD: net/minecraft/world/inventory/StonecutterMenu/m_40338_ ()I net/minecraft/world/inventory/StonecutterMenu/getSelectedRecipeIndex ()I +MD: net/minecraft/world/inventory/StonecutterMenu/m_40339_ ()Ljava/util/List; net/minecraft/world/inventory/StonecutterMenu/getRecipes ()Ljava/util/List; +MD: net/minecraft/world/inventory/StonecutterMenu/m_40340_ ()I net/minecraft/world/inventory/StonecutterMenu/getNumRecipes ()I +MD: net/minecraft/world/inventory/StonecutterMenu/m_40341_ ()Z net/minecraft/world/inventory/StonecutterMenu/hasInputItem ()Z +MD: net/minecraft/world/inventory/StonecutterMenu/m_40342_ ()V net/minecraft/world/inventory/StonecutterMenu/setupResultSlot ()V +MD: net/minecraft/world/inventory/StonecutterMenu/m_40343_ ()V net/minecraft/world/inventory/StonecutterMenu/lambda$new$0 ()V +MD: net/minecraft/world/inventory/StonecutterMenu/m_5882_ (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/inventory/Slot;)Z net/minecraft/world/inventory/StonecutterMenu/canTakeItemForPickAll (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/inventory/Slot;)Z +MD: net/minecraft/world/inventory/StonecutterMenu/m_6199_ (Lnet/minecraft/world/Container;)V net/minecraft/world/inventory/StonecutterMenu/slotsChanged (Lnet/minecraft/world/Container;)V +MD: net/minecraft/world/inventory/StonecutterMenu/m_6366_ (Lnet/minecraft/world/entity/player/Player;I)Z net/minecraft/world/inventory/StonecutterMenu/clickMenuButton (Lnet/minecraft/world/entity/player/Player;I)Z +MD: net/minecraft/world/inventory/StonecutterMenu/m_6772_ ()Lnet/minecraft/world/inventory/MenuType; net/minecraft/world/inventory/StonecutterMenu/getType ()Lnet/minecraft/world/inventory/MenuType; +MD: net/minecraft/world/inventory/StonecutterMenu/m_6875_ (Lnet/minecraft/world/entity/player/Player;)Z net/minecraft/world/inventory/StonecutterMenu/stillValid (Lnet/minecraft/world/entity/player/Player;)Z +MD: net/minecraft/world/inventory/StonecutterMenu/m_6877_ (Lnet/minecraft/world/entity/player/Player;)V net/minecraft/world/inventory/StonecutterMenu/removed (Lnet/minecraft/world/entity/player/Player;)V +MD: net/minecraft/world/inventory/StonecutterMenu/m_7648_ (Lnet/minecraft/world/entity/player/Player;I)Lnet/minecraft/world/item/ItemStack; net/minecraft/world/inventory/StonecutterMenu/quickMoveStack (Lnet/minecraft/world/entity/player/Player;I)Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/inventory/StonecutterMenu$1/ (Lnet/minecraft/world/inventory/StonecutterMenu;I)V net/minecraft/world/inventory/StonecutterMenu$1/ (Lnet/minecraft/world/inventory/StonecutterMenu;I)V +MD: net/minecraft/world/inventory/StonecutterMenu$1/m_6596_ ()V net/minecraft/world/inventory/StonecutterMenu$1/setChanged ()V +MD: net/minecraft/world/inventory/StonecutterMenu$2/ (Lnet/minecraft/world/inventory/StonecutterMenu;Lnet/minecraft/world/Container;IIILnet/minecraft/world/inventory/ContainerLevelAccess;)V net/minecraft/world/inventory/StonecutterMenu$2/ (Lnet/minecraft/world/inventory/StonecutterMenu;Lnet/minecraft/world/Container;IIILnet/minecraft/world/inventory/ContainerLevelAccess;)V +MD: net/minecraft/world/inventory/StonecutterMenu$2/m_142406_ (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/item/ItemStack;)V net/minecraft/world/inventory/StonecutterMenu$2/onTake (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/item/ItemStack;)V +MD: net/minecraft/world/inventory/StonecutterMenu$2/m_280281_ ()Ljava/util/List; net/minecraft/world/inventory/StonecutterMenu$2/getRelevantItems ()Ljava/util/List; +MD: net/minecraft/world/inventory/StonecutterMenu$2/m_40363_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;)V net/minecraft/world/inventory/StonecutterMenu$2/lambda$onTake$0 (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/world/inventory/StonecutterMenu$2/m_5857_ (Lnet/minecraft/world/item/ItemStack;)Z net/minecraft/world/inventory/StonecutterMenu$2/mayPlace (Lnet/minecraft/world/item/ItemStack;)Z +MD: net/minecraft/world/inventory/TransientCraftingContainer/ (Lnet/minecraft/world/inventory/AbstractContainerMenu;II)V net/minecraft/world/inventory/TransientCraftingContainer/ (Lnet/minecraft/world/inventory/AbstractContainerMenu;II)V +MD: net/minecraft/world/inventory/TransientCraftingContainer/ (Lnet/minecraft/world/inventory/AbstractContainerMenu;IILnet/minecraft/core/NonNullList;)V net/minecraft/world/inventory/TransientCraftingContainer/ (Lnet/minecraft/world/inventory/AbstractContainerMenu;IILnet/minecraft/core/NonNullList;)V +MD: net/minecraft/world/inventory/TransientCraftingContainer/m_280657_ ()Ljava/util/List; net/minecraft/world/inventory/TransientCraftingContainer/getItems ()Ljava/util/List; +MD: net/minecraft/world/inventory/TransientCraftingContainer/m_39346_ ()I net/minecraft/world/inventory/TransientCraftingContainer/getHeight ()I +MD: net/minecraft/world/inventory/TransientCraftingContainer/m_39347_ ()I net/minecraft/world/inventory/TransientCraftingContainer/getWidth ()I +MD: net/minecraft/world/inventory/TransientCraftingContainer/m_5809_ (Lnet/minecraft/world/entity/player/StackedContents;)V net/minecraft/world/inventory/TransientCraftingContainer/fillStackedContents (Lnet/minecraft/world/entity/player/StackedContents;)V +MD: net/minecraft/world/inventory/TransientCraftingContainer/m_6211_ ()V net/minecraft/world/inventory/TransientCraftingContainer/clearContent ()V +MD: net/minecraft/world/inventory/TransientCraftingContainer/m_6542_ (Lnet/minecraft/world/entity/player/Player;)Z net/minecraft/world/inventory/TransientCraftingContainer/stillValid (Lnet/minecraft/world/entity/player/Player;)Z +MD: net/minecraft/world/inventory/TransientCraftingContainer/m_6596_ ()V net/minecraft/world/inventory/TransientCraftingContainer/setChanged ()V +MD: net/minecraft/world/inventory/TransientCraftingContainer/m_6643_ ()I net/minecraft/world/inventory/TransientCraftingContainer/getContainerSize ()I +MD: net/minecraft/world/inventory/TransientCraftingContainer/m_6836_ (ILnet/minecraft/world/item/ItemStack;)V net/minecraft/world/inventory/TransientCraftingContainer/setItem (ILnet/minecraft/world/item/ItemStack;)V +MD: net/minecraft/world/inventory/TransientCraftingContainer/m_7407_ (II)Lnet/minecraft/world/item/ItemStack; net/minecraft/world/inventory/TransientCraftingContainer/removeItem (II)Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/inventory/TransientCraftingContainer/m_7983_ ()Z net/minecraft/world/inventory/TransientCraftingContainer/isEmpty ()Z +MD: net/minecraft/world/inventory/TransientCraftingContainer/m_8016_ (I)Lnet/minecraft/world/item/ItemStack; net/minecraft/world/inventory/TransientCraftingContainer/removeItemNoUpdate (I)Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/inventory/TransientCraftingContainer/m_8020_ (I)Lnet/minecraft/world/item/ItemStack; net/minecraft/world/inventory/TransientCraftingContainer/getItem (I)Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/inventory/tooltip/BundleTooltip/ (Lnet/minecraft/core/NonNullList;I)V net/minecraft/world/inventory/tooltip/BundleTooltip/ (Lnet/minecraft/core/NonNullList;I)V +MD: net/minecraft/world/inventory/tooltip/BundleTooltip/m_150679_ ()Lnet/minecraft/core/NonNullList; net/minecraft/world/inventory/tooltip/BundleTooltip/getItems ()Lnet/minecraft/core/NonNullList; +MD: net/minecraft/world/inventory/tooltip/BundleTooltip/m_150680_ ()I net/minecraft/world/inventory/tooltip/BundleTooltip/getWeight ()I +MD: net/minecraft/world/item/AdventureModeCheck/ (Ljava/lang/String;)V net/minecraft/world/item/AdventureModeCheck/ (Ljava/lang/String;)V +MD: net/minecraft/world/item/AdventureModeCheck/m_186332_ (Lnet/minecraft/world/level/block/state/pattern/BlockInWorld;Lnet/minecraft/world/level/block/state/pattern/BlockInWorld;Z)Z net/minecraft/world/item/AdventureModeCheck/areSameBlocks (Lnet/minecraft/world/level/block/state/pattern/BlockInWorld;Lnet/minecraft/world/level/block/state/pattern/BlockInWorld;Z)Z +MD: net/minecraft/world/item/AdventureModeCheck/m_204085_ (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/core/Registry;Lnet/minecraft/world/level/block/state/pattern/BlockInWorld;)Z net/minecraft/world/item/AdventureModeCheck/test (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/core/Registry;Lnet/minecraft/world/level/block/state/pattern/BlockInWorld;)Z +MD: net/minecraft/world/item/AirItem/ (Lnet/minecraft/world/level/block/Block;Lnet/minecraft/world/item/Item$Properties;)V net/minecraft/world/item/AirItem/ (Lnet/minecraft/world/level/block/Block;Lnet/minecraft/world/item/Item$Properties;)V +MD: net/minecraft/world/item/AirItem/m_5524_ ()Ljava/lang/String; net/minecraft/world/item/AirItem/getDescriptionId ()Ljava/lang/String; +MD: net/minecraft/world/item/AirItem/m_7373_ (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/level/Level;Ljava/util/List;Lnet/minecraft/world/item/TooltipFlag;)V net/minecraft/world/item/AirItem/appendHoverText (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/level/Level;Ljava/util/List;Lnet/minecraft/world/item/TooltipFlag;)V +MD: net/minecraft/world/item/ArmorItem/ ()V net/minecraft/world/item/ArmorItem/ ()V +MD: net/minecraft/world/item/ArmorItem/ (Lnet/minecraft/world/item/ArmorMaterial;Lnet/minecraft/world/item/ArmorItem$Type;Lnet/minecraft/world/item/Item$Properties;)V net/minecraft/world/item/ArmorItem/ (Lnet/minecraft/world/item/ArmorMaterial;Lnet/minecraft/world/item/ArmorItem$Type;Lnet/minecraft/world/item/Item$Properties;)V +MD: net/minecraft/world/item/ArmorItem/m_150681_ ()Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/item/ArmorItem/getEquipSound ()Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/item/ArmorItem/m_266204_ ()Lnet/minecraft/world/item/ArmorItem$Type; net/minecraft/world/item/ArmorItem/getType ()Lnet/minecraft/world/item/ArmorItem$Type; +MD: net/minecraft/world/item/ArmorItem/m_266451_ (Ljava/util/EnumMap;)V net/minecraft/world/item/ArmorItem/lambda$static$0 (Ljava/util/EnumMap;)V +MD: net/minecraft/world/item/ArmorItem/m_40398_ (Lnet/minecraft/core/BlockSource;Lnet/minecraft/world/item/ItemStack;)Z net/minecraft/world/item/ArmorItem/dispenseArmor (Lnet/minecraft/core/BlockSource;Lnet/minecraft/world/item/ItemStack;)Z +MD: net/minecraft/world/item/ArmorItem/m_40401_ ()Lnet/minecraft/world/item/ArmorMaterial; net/minecraft/world/item/ArmorItem/getMaterial ()Lnet/minecraft/world/item/ArmorMaterial; +MD: net/minecraft/world/item/ArmorItem/m_40402_ ()Lnet/minecraft/world/entity/EquipmentSlot; net/minecraft/world/item/ArmorItem/getEquipmentSlot ()Lnet/minecraft/world/entity/EquipmentSlot; +MD: net/minecraft/world/item/ArmorItem/m_40404_ ()I net/minecraft/world/item/ArmorItem/getDefense ()I +MD: net/minecraft/world/item/ArmorItem/m_40405_ ()F net/minecraft/world/item/ArmorItem/getToughness ()F +MD: net/minecraft/world/item/ArmorItem/m_6473_ ()I net/minecraft/world/item/ArmorItem/getEnchantmentValue ()I +MD: net/minecraft/world/item/ArmorItem/m_6832_ (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/item/ItemStack;)Z net/minecraft/world/item/ArmorItem/isValidRepairItem (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/item/ItemStack;)Z +MD: net/minecraft/world/item/ArmorItem/m_7167_ (Lnet/minecraft/world/entity/EquipmentSlot;)Lcom/google/common/collect/Multimap; net/minecraft/world/item/ArmorItem/getDefaultAttributeModifiers (Lnet/minecraft/world/entity/EquipmentSlot;)Lcom/google/common/collect/Multimap; +MD: net/minecraft/world/item/ArmorItem/m_7203_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;)Lnet/minecraft/world/InteractionResultHolder; net/minecraft/world/item/ArmorItem/use (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;)Lnet/minecraft/world/InteractionResultHolder; +MD: net/minecraft/world/item/ArmorItem$1/ ()V net/minecraft/world/item/ArmorItem$1/ ()V +MD: net/minecraft/world/item/ArmorItem$1/m_7498_ (Lnet/minecraft/core/BlockSource;Lnet/minecraft/world/item/ItemStack;)Lnet/minecraft/world/item/ItemStack; net/minecraft/world/item/ArmorItem$1/execute (Lnet/minecraft/core/BlockSource;Lnet/minecraft/world/item/ItemStack;)Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/item/ArmorItem$Type/ ()V net/minecraft/world/item/ArmorItem$Type/ ()V +MD: net/minecraft/world/item/ArmorItem$Type/ (Ljava/lang/String;ILnet/minecraft/world/entity/EquipmentSlot;Ljava/lang/String;)V net/minecraft/world/item/ArmorItem$Type/ (Ljava/lang/String;ILnet/minecraft/world/entity/EquipmentSlot;Ljava/lang/String;)V +MD: net/minecraft/world/item/ArmorItem$Type/m_266245_ ()[Lnet/minecraft/world/item/ArmorItem$Type; net/minecraft/world/item/ArmorItem$Type/$values ()[Lnet/minecraft/world/item/ArmorItem$Type; +MD: net/minecraft/world/item/ArmorItem$Type/m_266308_ ()Lnet/minecraft/world/entity/EquipmentSlot; net/minecraft/world/item/ArmorItem$Type/getSlot ()Lnet/minecraft/world/entity/EquipmentSlot; +MD: net/minecraft/world/item/ArmorItem$Type/m_266355_ ()Ljava/lang/String; net/minecraft/world/item/ArmorItem$Type/getName ()Ljava/lang/String; +MD: net/minecraft/world/item/ArmorItem$Type/valueOf (Ljava/lang/String;)Lnet/minecraft/world/item/ArmorItem$Type; net/minecraft/world/item/ArmorItem$Type/valueOf (Ljava/lang/String;)Lnet/minecraft/world/item/ArmorItem$Type; +MD: net/minecraft/world/item/ArmorItem$Type/values ()[Lnet/minecraft/world/item/ArmorItem$Type; net/minecraft/world/item/ArmorItem$Type/values ()[Lnet/minecraft/world/item/ArmorItem$Type; +MD: net/minecraft/world/item/ArmorMaterial/m_266425_ (Lnet/minecraft/world/item/ArmorItem$Type;)I net/minecraft/world/item/ArmorMaterial/getDurabilityForType (Lnet/minecraft/world/item/ArmorItem$Type;)I +MD: net/minecraft/world/item/ArmorMaterial/m_6082_ ()Ljava/lang/String; net/minecraft/world/item/ArmorMaterial/getName ()Ljava/lang/String; +MD: net/minecraft/world/item/ArmorMaterial/m_6230_ ()Lnet/minecraft/world/item/crafting/Ingredient; net/minecraft/world/item/ArmorMaterial/getRepairIngredient ()Lnet/minecraft/world/item/crafting/Ingredient; +MD: net/minecraft/world/item/ArmorMaterial/m_6646_ ()I net/minecraft/world/item/ArmorMaterial/getEnchantmentValue ()I +MD: net/minecraft/world/item/ArmorMaterial/m_6649_ ()F net/minecraft/world/item/ArmorMaterial/getKnockbackResistance ()F +MD: net/minecraft/world/item/ArmorMaterial/m_6651_ ()F net/minecraft/world/item/ArmorMaterial/getToughness ()F +MD: net/minecraft/world/item/ArmorMaterial/m_7344_ ()Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/item/ArmorMaterial/getEquipSound ()Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/item/ArmorMaterial/m_7366_ (Lnet/minecraft/world/item/ArmorItem$Type;)I net/minecraft/world/item/ArmorMaterial/getDefenseForType (Lnet/minecraft/world/item/ArmorItem$Type;)I +MD: net/minecraft/world/item/ArmorMaterials/ ()V net/minecraft/world/item/ArmorMaterials/ ()V +MD: net/minecraft/world/item/ArmorMaterials/ (Ljava/lang/String;ILjava/lang/String;ILjava/util/EnumMap;ILnet/minecraft/sounds/SoundEvent;FFLjava/util/function/Supplier;)V net/minecraft/world/item/ArmorMaterials/ (Ljava/lang/String;ILjava/lang/String;ILjava/util/EnumMap;ILnet/minecraft/sounds/SoundEvent;FFLjava/util/function/Supplier;)V +MD: net/minecraft/world/item/ArmorMaterials/m_150682_ ()[Lnet/minecraft/world/item/ArmorMaterials; net/minecraft/world/item/ArmorMaterials/$values ()[Lnet/minecraft/world/item/ArmorMaterials; +MD: net/minecraft/world/item/ArmorMaterials/m_266146_ (Ljava/util/EnumMap;)V net/minecraft/world/item/ArmorMaterials/lambda$static$8 (Ljava/util/EnumMap;)V +MD: net/minecraft/world/item/ArmorMaterials/m_266147_ (Ljava/util/EnumMap;)V net/minecraft/world/item/ArmorMaterials/lambda$static$6 (Ljava/util/EnumMap;)V +MD: net/minecraft/world/item/ArmorMaterials/m_266148_ (Ljava/util/EnumMap;)V net/minecraft/world/item/ArmorMaterials/lambda$static$2 (Ljava/util/EnumMap;)V +MD: net/minecraft/world/item/ArmorMaterials/m_266149_ (Ljava/util/EnumMap;)V net/minecraft/world/item/ArmorMaterials/lambda$static$0 (Ljava/util/EnumMap;)V +MD: net/minecraft/world/item/ArmorMaterials/m_266150_ (Ljava/util/EnumMap;)V net/minecraft/world/item/ArmorMaterials/lambda$static$14 (Ljava/util/EnumMap;)V +MD: net/minecraft/world/item/ArmorMaterials/m_266151_ (Ljava/util/EnumMap;)V net/minecraft/world/item/ArmorMaterials/lambda$static$4 (Ljava/util/EnumMap;)V +MD: net/minecraft/world/item/ArmorMaterials/m_266152_ (Ljava/util/EnumMap;)V net/minecraft/world/item/ArmorMaterials/lambda$static$12 (Ljava/util/EnumMap;)V +MD: net/minecraft/world/item/ArmorMaterials/m_266153_ (Ljava/util/EnumMap;)V net/minecraft/world/item/ArmorMaterials/lambda$static$10 (Ljava/util/EnumMap;)V +MD: net/minecraft/world/item/ArmorMaterials/m_266425_ (Lnet/minecraft/world/item/ArmorItem$Type;)I net/minecraft/world/item/ArmorMaterials/getDurabilityForType (Lnet/minecraft/world/item/ArmorItem$Type;)I +MD: net/minecraft/world/item/ArmorMaterials/m_40492_ ()Lnet/minecraft/world/item/crafting/Ingredient; net/minecraft/world/item/ArmorMaterials/lambda$static$13 ()Lnet/minecraft/world/item/crafting/Ingredient; +MD: net/minecraft/world/item/ArmorMaterials/m_40493_ ()Lnet/minecraft/world/item/crafting/Ingredient; net/minecraft/world/item/ArmorMaterials/lambda$static$11 ()Lnet/minecraft/world/item/crafting/Ingredient; +MD: net/minecraft/world/item/ArmorMaterials/m_40494_ ()Lnet/minecraft/world/item/crafting/Ingredient; net/minecraft/world/item/ArmorMaterials/lambda$static$9 ()Lnet/minecraft/world/item/crafting/Ingredient; +MD: net/minecraft/world/item/ArmorMaterials/m_40495_ ()Lnet/minecraft/world/item/crafting/Ingredient; net/minecraft/world/item/ArmorMaterials/lambda$static$7 ()Lnet/minecraft/world/item/crafting/Ingredient; +MD: net/minecraft/world/item/ArmorMaterials/m_40496_ ()Lnet/minecraft/world/item/crafting/Ingredient; net/minecraft/world/item/ArmorMaterials/lambda$static$5 ()Lnet/minecraft/world/item/crafting/Ingredient; +MD: net/minecraft/world/item/ArmorMaterials/m_40497_ ()Lnet/minecraft/world/item/crafting/Ingredient; net/minecraft/world/item/ArmorMaterials/lambda$static$3 ()Lnet/minecraft/world/item/crafting/Ingredient; +MD: net/minecraft/world/item/ArmorMaterials/m_40498_ ()Lnet/minecraft/world/item/crafting/Ingredient; net/minecraft/world/item/ArmorMaterials/lambda$static$1 ()Lnet/minecraft/world/item/crafting/Ingredient; +MD: net/minecraft/world/item/ArmorMaterials/m_6082_ ()Ljava/lang/String; net/minecraft/world/item/ArmorMaterials/getName ()Ljava/lang/String; +MD: net/minecraft/world/item/ArmorMaterials/m_6230_ ()Lnet/minecraft/world/item/crafting/Ingredient; net/minecraft/world/item/ArmorMaterials/getRepairIngredient ()Lnet/minecraft/world/item/crafting/Ingredient; +MD: net/minecraft/world/item/ArmorMaterials/m_6646_ ()I net/minecraft/world/item/ArmorMaterials/getEnchantmentValue ()I +MD: net/minecraft/world/item/ArmorMaterials/m_6649_ ()F net/minecraft/world/item/ArmorMaterials/getKnockbackResistance ()F +MD: net/minecraft/world/item/ArmorMaterials/m_6651_ ()F net/minecraft/world/item/ArmorMaterials/getToughness ()F +MD: net/minecraft/world/item/ArmorMaterials/m_7344_ ()Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/item/ArmorMaterials/getEquipSound ()Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/item/ArmorMaterials/m_7366_ (Lnet/minecraft/world/item/ArmorItem$Type;)I net/minecraft/world/item/ArmorMaterials/getDefenseForType (Lnet/minecraft/world/item/ArmorItem$Type;)I +MD: net/minecraft/world/item/ArmorMaterials/m_7912_ ()Ljava/lang/String; net/minecraft/world/item/ArmorMaterials/getSerializedName ()Ljava/lang/String; +MD: net/minecraft/world/item/ArmorMaterials/valueOf (Ljava/lang/String;)Lnet/minecraft/world/item/ArmorMaterials; net/minecraft/world/item/ArmorMaterials/valueOf (Ljava/lang/String;)Lnet/minecraft/world/item/ArmorMaterials; +MD: net/minecraft/world/item/ArmorMaterials/values ()[Lnet/minecraft/world/item/ArmorMaterials; net/minecraft/world/item/ArmorMaterials/values ()[Lnet/minecraft/world/item/ArmorMaterials; +MD: net/minecraft/world/item/ArmorStandItem/ (Lnet/minecraft/world/item/Item$Properties;)V net/minecraft/world/item/ArmorStandItem/ (Lnet/minecraft/world/item/Item$Properties;)V +MD: net/minecraft/world/item/ArmorStandItem/m_6225_ (Lnet/minecraft/world/item/context/UseOnContext;)Lnet/minecraft/world/InteractionResult; net/minecraft/world/item/ArmorStandItem/useOn (Lnet/minecraft/world/item/context/UseOnContext;)Lnet/minecraft/world/InteractionResult; +MD: net/minecraft/world/item/ArrowItem/ (Lnet/minecraft/world/item/Item$Properties;)V net/minecraft/world/item/ArrowItem/ (Lnet/minecraft/world/item/Item$Properties;)V +MD: net/minecraft/world/item/ArrowItem/m_6394_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/entity/LivingEntity;)Lnet/minecraft/world/entity/projectile/AbstractArrow; net/minecraft/world/item/ArrowItem/createArrow (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/entity/LivingEntity;)Lnet/minecraft/world/entity/projectile/AbstractArrow; +MD: net/minecraft/world/item/AxeItem/ ()V net/minecraft/world/item/AxeItem/ ()V +MD: net/minecraft/world/item/AxeItem/ (Lnet/minecraft/world/item/Tier;FFLnet/minecraft/world/item/Item$Properties;)V net/minecraft/world/item/AxeItem/ (Lnet/minecraft/world/item/Tier;FFLnet/minecraft/world/item/Item$Properties;)V +MD: net/minecraft/world/item/AxeItem/m_150684_ (Lnet/minecraft/world/item/context/UseOnContext;Lnet/minecraft/world/entity/player/Player;)V net/minecraft/world/item/AxeItem/lambda$useOn$1 (Lnet/minecraft/world/item/context/UseOnContext;Lnet/minecraft/world/entity/player/Player;)V +MD: net/minecraft/world/item/AxeItem/m_150687_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/item/AxeItem/lambda$getStripped$2 (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/item/AxeItem/m_150690_ (Lnet/minecraft/world/level/block/state/BlockState;)Ljava/util/Optional; net/minecraft/world/item/AxeItem/getStripped (Lnet/minecraft/world/level/block/state/BlockState;)Ljava/util/Optional; +MD: net/minecraft/world/item/AxeItem/m_150692_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/item/AxeItem/lambda$useOn$0 (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/item/AxeItem/m_6225_ (Lnet/minecraft/world/item/context/UseOnContext;)Lnet/minecraft/world/InteractionResult; net/minecraft/world/item/AxeItem/useOn (Lnet/minecraft/world/item/context/UseOnContext;)Lnet/minecraft/world/InteractionResult; +MD: net/minecraft/world/item/BannerItem/ (Lnet/minecraft/world/level/block/Block;Lnet/minecraft/world/level/block/Block;Lnet/minecraft/world/item/Item$Properties;)V net/minecraft/world/item/BannerItem/ (Lnet/minecraft/world/level/block/Block;Lnet/minecraft/world/level/block/Block;Lnet/minecraft/world/item/Item$Properties;)V +MD: net/minecraft/world/item/BannerItem/m_220001_ (Lnet/minecraft/resources/ResourceKey;)Ljava/lang/String; net/minecraft/world/item/BannerItem/lambda$appendHoverTextFromBannerBlockEntityTag$0 (Lnet/minecraft/resources/ResourceKey;)Ljava/lang/String; +MD: net/minecraft/world/item/BannerItem/m_220003_ (Ljava/util/List;Lnet/minecraft/world/item/DyeColor;Ljava/lang/String;)V net/minecraft/world/item/BannerItem/lambda$appendHoverTextFromBannerBlockEntityTag$1 (Ljava/util/List;Lnet/minecraft/world/item/DyeColor;Ljava/lang/String;)V +MD: net/minecraft/world/item/BannerItem/m_40542_ (Lnet/minecraft/world/item/ItemStack;Ljava/util/List;)V net/minecraft/world/item/BannerItem/appendHoverTextFromBannerBlockEntityTag (Lnet/minecraft/world/item/ItemStack;Ljava/util/List;)V +MD: net/minecraft/world/item/BannerItem/m_40545_ ()Lnet/minecraft/world/item/DyeColor; net/minecraft/world/item/BannerItem/getColor ()Lnet/minecraft/world/item/DyeColor; +MD: net/minecraft/world/item/BannerItem/m_7373_ (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/level/Level;Ljava/util/List;Lnet/minecraft/world/item/TooltipFlag;)V net/minecraft/world/item/BannerItem/appendHoverText (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/level/Level;Ljava/util/List;Lnet/minecraft/world/item/TooltipFlag;)V +MD: net/minecraft/world/item/BannerPatternItem/ (Lnet/minecraft/tags/TagKey;Lnet/minecraft/world/item/Item$Properties;)V net/minecraft/world/item/BannerPatternItem/ (Lnet/minecraft/tags/TagKey;Lnet/minecraft/world/item/Item$Properties;)V +MD: net/minecraft/world/item/BannerPatternItem/m_220010_ ()Lnet/minecraft/tags/TagKey; net/minecraft/world/item/BannerPatternItem/getBannerPattern ()Lnet/minecraft/tags/TagKey; +MD: net/minecraft/world/item/BannerPatternItem/m_40556_ ()Lnet/minecraft/network/chat/MutableComponent; net/minecraft/world/item/BannerPatternItem/getDisplayName ()Lnet/minecraft/network/chat/MutableComponent; +MD: net/minecraft/world/item/BannerPatternItem/m_7373_ (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/level/Level;Ljava/util/List;Lnet/minecraft/world/item/TooltipFlag;)V net/minecraft/world/item/BannerPatternItem/appendHoverText (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/level/Level;Ljava/util/List;Lnet/minecraft/world/item/TooltipFlag;)V +MD: net/minecraft/world/item/BedItem/ (Lnet/minecraft/world/level/block/Block;Lnet/minecraft/world/item/Item$Properties;)V net/minecraft/world/item/BedItem/ (Lnet/minecraft/world/level/block/Block;Lnet/minecraft/world/item/Item$Properties;)V +MD: net/minecraft/world/item/BedItem/m_7429_ (Lnet/minecraft/world/item/context/BlockPlaceContext;Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/world/item/BedItem/placeBlock (Lnet/minecraft/world/item/context/BlockPlaceContext;Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/world/item/BlockItem/ (Lnet/minecraft/world/level/block/Block;Lnet/minecraft/world/item/Item$Properties;)V net/minecraft/world/item/BlockItem/ (Lnet/minecraft/world/level/block/Block;Lnet/minecraft/world/item/Item$Properties;)V +MD: net/minecraft/world/item/BlockItem/m_142023_ (Lnet/minecraft/world/entity/item/ItemEntity;)V net/minecraft/world/item/BlockItem/onDestroyed (Lnet/minecraft/world/entity/item/ItemEntity;)V +MD: net/minecraft/world/item/BlockItem/m_142095_ ()Z net/minecraft/world/item/BlockItem/canFitInsideContainerItems ()Z +MD: net/minecraft/world/item/BlockItem/m_186336_ (Lnet/minecraft/world/item/ItemStack;)Lnet/minecraft/nbt/CompoundTag; net/minecraft/world/item/BlockItem/getBlockEntityData (Lnet/minecraft/world/item/ItemStack;)Lnet/minecraft/nbt/CompoundTag; +MD: net/minecraft/world/item/BlockItem/m_186338_ (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/level/block/entity/BlockEntityType;Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/item/BlockItem/setBlockEntityData (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/level/block/entity/BlockEntityType;Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/item/BlockItem/m_245183_ ()Lnet/minecraft/world/flag/FeatureFlagSet; net/minecraft/world/item/BlockItem/requiredFeatures ()Lnet/minecraft/world/flag/FeatureFlagSet; +MD: net/minecraft/world/item/BlockItem/m_40576_ (Lnet/minecraft/world/item/context/BlockPlaceContext;)Lnet/minecraft/world/InteractionResult; net/minecraft/world/item/BlockItem/place (Lnet/minecraft/world/item/context/BlockPlaceContext;)Lnet/minecraft/world/InteractionResult; +MD: net/minecraft/world/item/BlockItem/m_40582_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/item/ItemStack;)Z net/minecraft/world/item/BlockItem/updateCustomBlockEntityTag (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/item/ItemStack;)Z +MD: net/minecraft/world/item/BlockItem/m_40587_ (Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/item/BlockItem/getPlaceSound (Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/item/BlockItem/m_40589_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/state/properties/Property;Ljava/lang/Comparable;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/item/BlockItem/lambda$updateState$0 (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/state/properties/Property;Ljava/lang/Comparable;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/item/BlockItem/m_40593_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/state/properties/Property;Ljava/lang/String;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/item/BlockItem/updateState (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/state/properties/Property;Ljava/lang/String;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/item/BlockItem/m_40602_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/Level;Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/item/BlockItem/updateBlockStateFromTag (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/Level;Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/item/BlockItem/m_40610_ (Lnet/minecraft/world/item/context/BlockPlaceContext;Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/world/item/BlockItem/canPlace (Lnet/minecraft/world/item/context/BlockPlaceContext;Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/world/item/BlockItem/m_40614_ ()Lnet/minecraft/world/level/block/Block; net/minecraft/world/item/BlockItem/getBlock ()Lnet/minecraft/world/level/block/Block; +MD: net/minecraft/world/item/BlockItem/m_5524_ ()Ljava/lang/String; net/minecraft/world/item/BlockItem/getDescriptionId ()Ljava/lang/String; +MD: net/minecraft/world/item/BlockItem/m_5965_ (Lnet/minecraft/world/item/context/BlockPlaceContext;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/item/BlockItem/getPlacementState (Lnet/minecraft/world/item/context/BlockPlaceContext;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/item/BlockItem/m_6192_ (Ljava/util/Map;Lnet/minecraft/world/item/Item;)V net/minecraft/world/item/BlockItem/registerBlocks (Ljava/util/Map;Lnet/minecraft/world/item/Item;)V +MD: net/minecraft/world/item/BlockItem/m_6225_ (Lnet/minecraft/world/item/context/UseOnContext;)Lnet/minecraft/world/InteractionResult; net/minecraft/world/item/BlockItem/useOn (Lnet/minecraft/world/item/context/UseOnContext;)Lnet/minecraft/world/InteractionResult; +MD: net/minecraft/world/item/BlockItem/m_6652_ ()Z net/minecraft/world/item/BlockItem/mustSurvive ()Z +MD: net/minecraft/world/item/BlockItem/m_7274_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/Level;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/world/item/BlockItem/updateCustomBlockEntityTag (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/Level;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/world/item/BlockItem/m_7373_ (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/level/Level;Ljava/util/List;Lnet/minecraft/world/item/TooltipFlag;)V net/minecraft/world/item/BlockItem/appendHoverText (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/level/Level;Ljava/util/List;Lnet/minecraft/world/item/TooltipFlag;)V +MD: net/minecraft/world/item/BlockItem/m_7429_ (Lnet/minecraft/world/item/context/BlockPlaceContext;Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/world/item/BlockItem/placeBlock (Lnet/minecraft/world/item/context/BlockPlaceContext;Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/world/item/BlockItem/m_7732_ (Lnet/minecraft/world/item/context/BlockPlaceContext;)Lnet/minecraft/world/item/context/BlockPlaceContext; net/minecraft/world/item/BlockItem/updatePlacementContext (Lnet/minecraft/world/item/context/BlockPlaceContext;)Lnet/minecraft/world/item/context/BlockPlaceContext; +MD: net/minecraft/world/item/BoatItem/ ()V net/minecraft/world/item/BoatItem/ ()V +MD: net/minecraft/world/item/BoatItem/ (ZLnet/minecraft/world/entity/vehicle/Boat$Type;Lnet/minecraft/world/item/Item$Properties;)V net/minecraft/world/item/BoatItem/ (ZLnet/minecraft/world/entity/vehicle/Boat$Type;Lnet/minecraft/world/item/Item$Properties;)V +MD: net/minecraft/world/item/BoatItem/m_220016_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/phys/HitResult;)Lnet/minecraft/world/entity/vehicle/Boat; net/minecraft/world/item/BoatItem/getBoat (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/phys/HitResult;)Lnet/minecraft/world/entity/vehicle/Boat; +MD: net/minecraft/world/item/BoatItem/m_7203_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;)Lnet/minecraft/world/InteractionResultHolder; net/minecraft/world/item/BoatItem/use (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;)Lnet/minecraft/world/InteractionResultHolder; +MD: net/minecraft/world/item/BoneMealItem/ (Lnet/minecraft/world/item/Item$Properties;)V net/minecraft/world/item/BoneMealItem/ (Lnet/minecraft/world/item/Item$Properties;)V +MD: net/minecraft/world/item/BoneMealItem/m_204089_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/HolderSet$Named;)Ljava/util/Optional; net/minecraft/world/item/BoneMealItem/lambda$growWaterPlant$2 (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/HolderSet$Named;)Ljava/util/Optional; +MD: net/minecraft/world/item/BoneMealItem/m_204092_ (Lnet/minecraft/world/level/block/state/BlockBehaviour$BlockStateBase;)Z net/minecraft/world/item/BoneMealItem/lambda$growWaterPlant$4 (Lnet/minecraft/world/level/block/state/BlockBehaviour$BlockStateBase;)Z +MD: net/minecraft/world/item/BoneMealItem/m_204094_ (Lnet/minecraft/core/Holder;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/item/BoneMealItem/lambda$growWaterPlant$3 (Lnet/minecraft/core/Holder;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/item/BoneMealItem/m_204096_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/HolderSet$Named;)Ljava/util/Optional; net/minecraft/world/item/BoneMealItem/lambda$growWaterPlant$0 (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/HolderSet$Named;)Ljava/util/Optional; +MD: net/minecraft/world/item/BoneMealItem/m_204099_ (Lnet/minecraft/core/Holder;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/item/BoneMealItem/lambda$growWaterPlant$1 (Lnet/minecraft/core/Holder;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/item/BoneMealItem/m_40627_ (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/item/BoneMealItem/growCrop (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/item/BoneMealItem/m_40631_ (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Direction;)Z net/minecraft/world/item/BoneMealItem/growWaterPlant (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Direction;)Z +MD: net/minecraft/world/item/BoneMealItem/m_40638_ (Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;I)V net/minecraft/world/item/BoneMealItem/addGrowthParticles (Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;I)V +MD: net/minecraft/world/item/BoneMealItem/m_6225_ (Lnet/minecraft/world/item/context/UseOnContext;)Lnet/minecraft/world/InteractionResult; net/minecraft/world/item/BoneMealItem/useOn (Lnet/minecraft/world/item/context/UseOnContext;)Lnet/minecraft/world/InteractionResult; +MD: net/minecraft/world/item/BookItem/ (Lnet/minecraft/world/item/Item$Properties;)V net/minecraft/world/item/BookItem/ (Lnet/minecraft/world/item/Item$Properties;)V +MD: net/minecraft/world/item/BookItem/m_6473_ ()I net/minecraft/world/item/BookItem/getEnchantmentValue ()I +MD: net/minecraft/world/item/BookItem/m_8120_ (Lnet/minecraft/world/item/ItemStack;)Z net/minecraft/world/item/BookItem/isEnchantable (Lnet/minecraft/world/item/ItemStack;)Z +MD: net/minecraft/world/item/BottleItem/ (Lnet/minecraft/world/item/Item$Properties;)V net/minecraft/world/item/BottleItem/ (Lnet/minecraft/world/item/Item$Properties;)V +MD: net/minecraft/world/item/BottleItem/m_289173_ (Lnet/minecraft/world/entity/AreaEffectCloud;)Z net/minecraft/world/item/BottleItem/lambda$use$0 (Lnet/minecraft/world/entity/AreaEffectCloud;)Z +MD: net/minecraft/world/item/BottleItem/m_40651_ (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/item/ItemStack;)Lnet/minecraft/world/item/ItemStack; net/minecraft/world/item/BottleItem/turnBottleIntoItem (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/item/ItemStack;)Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/item/BottleItem/m_7203_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;)Lnet/minecraft/world/InteractionResultHolder; net/minecraft/world/item/BottleItem/use (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;)Lnet/minecraft/world/InteractionResultHolder; +MD: net/minecraft/world/item/BowItem/ (Lnet/minecraft/world/item/Item$Properties;)V net/minecraft/world/item/BowItem/ (Lnet/minecraft/world/item/Item$Properties;)V +MD: net/minecraft/world/item/BowItem/m_289174_ (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/entity/player/Player;)V net/minecraft/world/item/BowItem/lambda$releaseUsing$0 (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/entity/player/Player;)V +MD: net/minecraft/world/item/BowItem/m_40661_ (I)F net/minecraft/world/item/BowItem/getPowerForTime (I)F +MD: net/minecraft/world/item/BowItem/m_5551_ (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/level/Level;Lnet/minecraft/world/entity/LivingEntity;I)V net/minecraft/world/item/BowItem/releaseUsing (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/level/Level;Lnet/minecraft/world/entity/LivingEntity;I)V +MD: net/minecraft/world/item/BowItem/m_6164_ (Lnet/minecraft/world/item/ItemStack;)Lnet/minecraft/world/item/UseAnim; net/minecraft/world/item/BowItem/getUseAnimation (Lnet/minecraft/world/item/ItemStack;)Lnet/minecraft/world/item/UseAnim; +MD: net/minecraft/world/item/BowItem/m_6437_ ()Ljava/util/function/Predicate; net/minecraft/world/item/BowItem/getAllSupportedProjectiles ()Ljava/util/function/Predicate; +MD: net/minecraft/world/item/BowItem/m_6615_ ()I net/minecraft/world/item/BowItem/getDefaultProjectileRange ()I +MD: net/minecraft/world/item/BowItem/m_7203_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;)Lnet/minecraft/world/InteractionResultHolder; net/minecraft/world/item/BowItem/use (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;)Lnet/minecraft/world/InteractionResultHolder; +MD: net/minecraft/world/item/BowItem/m_8105_ (Lnet/minecraft/world/item/ItemStack;)I net/minecraft/world/item/BowItem/getUseDuration (Lnet/minecraft/world/item/ItemStack;)I +MD: net/minecraft/world/item/BowlFoodItem/ (Lnet/minecraft/world/item/Item$Properties;)V net/minecraft/world/item/BowlFoodItem/ (Lnet/minecraft/world/item/Item$Properties;)V +MD: net/minecraft/world/item/BowlFoodItem/m_5922_ (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/level/Level;Lnet/minecraft/world/entity/LivingEntity;)Lnet/minecraft/world/item/ItemStack; net/minecraft/world/item/BowlFoodItem/finishUsingItem (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/level/Level;Lnet/minecraft/world/entity/LivingEntity;)Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/item/BrushItem/ ()V net/minecraft/world/item/BrushItem/ ()V +MD: net/minecraft/world/item/BrushItem/ (Lnet/minecraft/world/item/Item$Properties;)V net/minecraft/world/item/BrushItem/ (Lnet/minecraft/world/item/Item$Properties;)V +MD: net/minecraft/world/item/BrushItem/m_278154_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/phys/BlockHitResult;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/phys/Vec3;Lnet/minecraft/world/entity/HumanoidArm;)V net/minecraft/world/item/BrushItem/spawnDustParticles (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/phys/BlockHitResult;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/phys/Vec3;Lnet/minecraft/world/entity/HumanoidArm;)V +MD: net/minecraft/world/item/BrushItem/m_278588_ (Lnet/minecraft/world/entity/EquipmentSlot;Lnet/minecraft/world/entity/LivingEntity;)V net/minecraft/world/item/BrushItem/lambda$onUseTick$0 (Lnet/minecraft/world/entity/EquipmentSlot;Lnet/minecraft/world/entity/LivingEntity;)V +MD: net/minecraft/world/item/BrushItem/m_279953_ (Lnet/minecraft/world/entity/Entity;)Z net/minecraft/world/item/BrushItem/lambda$calculateHitResult$1 (Lnet/minecraft/world/entity/Entity;)Z +MD: net/minecraft/world/item/BrushItem/m_280200_ (Lnet/minecraft/world/entity/LivingEntity;)Lnet/minecraft/world/phys/HitResult; net/minecraft/world/item/BrushItem/calculateHitResult (Lnet/minecraft/world/entity/LivingEntity;)Lnet/minecraft/world/phys/HitResult; +MD: net/minecraft/world/item/BrushItem/m_5929_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/item/ItemStack;I)V net/minecraft/world/item/BrushItem/onUseTick (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/item/ItemStack;I)V +MD: net/minecraft/world/item/BrushItem/m_6164_ (Lnet/minecraft/world/item/ItemStack;)Lnet/minecraft/world/item/UseAnim; net/minecraft/world/item/BrushItem/getUseAnimation (Lnet/minecraft/world/item/ItemStack;)Lnet/minecraft/world/item/UseAnim; +MD: net/minecraft/world/item/BrushItem/m_6225_ (Lnet/minecraft/world/item/context/UseOnContext;)Lnet/minecraft/world/InteractionResult; net/minecraft/world/item/BrushItem/useOn (Lnet/minecraft/world/item/context/UseOnContext;)Lnet/minecraft/world/InteractionResult; +MD: net/minecraft/world/item/BrushItem/m_8105_ (Lnet/minecraft/world/item/ItemStack;)I net/minecraft/world/item/BrushItem/getUseDuration (Lnet/minecraft/world/item/ItemStack;)I +MD: net/minecraft/world/item/BrushItem$1/ ()V net/minecraft/world/item/BrushItem$1/ ()V +MD: net/minecraft/world/item/BrushItem$DustParticlesDelta/ (DDD)V net/minecraft/world/item/BrushItem$DustParticlesDelta/ (DDD)V +MD: net/minecraft/world/item/BrushItem$DustParticlesDelta/equals (Ljava/lang/Object;)Z net/minecraft/world/item/BrushItem$DustParticlesDelta/equals (Ljava/lang/Object;)Z +MD: net/minecraft/world/item/BrushItem$DustParticlesDelta/f_271284_ ()D net/minecraft/world/item/BrushItem$DustParticlesDelta/yd ()D +MD: net/minecraft/world/item/BrushItem$DustParticlesDelta/f_271456_ ()D net/minecraft/world/item/BrushItem$DustParticlesDelta/xd ()D +MD: net/minecraft/world/item/BrushItem$DustParticlesDelta/f_271522_ ()D net/minecraft/world/item/BrushItem$DustParticlesDelta/zd ()D +MD: net/minecraft/world/item/BrushItem$DustParticlesDelta/hashCode ()I net/minecraft/world/item/BrushItem$DustParticlesDelta/hashCode ()I +MD: net/minecraft/world/item/BrushItem$DustParticlesDelta/m_271695_ (Lnet/minecraft/world/phys/Vec3;Lnet/minecraft/core/Direction;)Lnet/minecraft/world/item/BrushItem$DustParticlesDelta; net/minecraft/world/item/BrushItem$DustParticlesDelta/fromDirection (Lnet/minecraft/world/phys/Vec3;Lnet/minecraft/core/Direction;)Lnet/minecraft/world/item/BrushItem$DustParticlesDelta; +MD: net/minecraft/world/item/BrushItem$DustParticlesDelta/toString ()Ljava/lang/String; net/minecraft/world/item/BrushItem$DustParticlesDelta/toString ()Ljava/lang/String; +MD: net/minecraft/world/item/BucketItem/ (Lnet/minecraft/world/level/material/Fluid;Lnet/minecraft/world/item/Item$Properties;)V net/minecraft/world/item/BucketItem/ (Lnet/minecraft/world/level/material/Fluid;Lnet/minecraft/world/item/Item$Properties;)V +MD: net/minecraft/world/item/BucketItem/m_142073_ (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/BlockHitResult;)Z net/minecraft/world/item/BucketItem/emptyContents (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/BlockHitResult;)Z +MD: net/minecraft/world/item/BucketItem/m_142131_ (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/level/Level;Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/core/BlockPos;)V net/minecraft/world/item/BucketItem/checkExtraContent (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/level/Level;Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/world/item/BucketItem/m_150707_ (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/sounds/SoundEvent;)V net/minecraft/world/item/BucketItem/lambda$use$0 (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/sounds/SoundEvent;)V +MD: net/minecraft/world/item/BucketItem/m_40699_ (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/entity/player/Player;)Lnet/minecraft/world/item/ItemStack; net/minecraft/world/item/BucketItem/getEmptySuccessItem (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/entity/player/Player;)Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/item/BucketItem/m_7203_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;)Lnet/minecraft/world/InteractionResultHolder; net/minecraft/world/item/BucketItem/use (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;)Lnet/minecraft/world/InteractionResultHolder; +MD: net/minecraft/world/item/BucketItem/m_7718_ (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;)V net/minecraft/world/item/BucketItem/playEmptySound (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/world/item/BundleItem/ ()V net/minecraft/world/item/BundleItem/ ()V +MD: net/minecraft/world/item/BundleItem/ (Lnet/minecraft/world/item/Item$Properties;)V net/minecraft/world/item/BundleItem/ (Lnet/minecraft/world/item/Item$Properties;)V +MD: net/minecraft/world/item/BundleItem/m_142023_ (Lnet/minecraft/world/entity/item/ItemEntity;)V net/minecraft/world/item/BundleItem/onDestroyed (Lnet/minecraft/world/entity/item/ItemEntity;)V +MD: net/minecraft/world/item/BundleItem/m_142158_ (Lnet/minecraft/world/item/ItemStack;)I net/minecraft/world/item/BundleItem/getBarWidth (Lnet/minecraft/world/item/ItemStack;)I +MD: net/minecraft/world/item/BundleItem/m_142159_ (Lnet/minecraft/world/item/ItemStack;)I net/minecraft/world/item/BundleItem/getBarColor (Lnet/minecraft/world/item/ItemStack;)I +MD: net/minecraft/world/item/BundleItem/m_142207_ (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/inventory/Slot;Lnet/minecraft/world/inventory/ClickAction;Lnet/minecraft/world/entity/player/Player;)Z net/minecraft/world/item/BundleItem/overrideStackedOnOther (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/inventory/Slot;Lnet/minecraft/world/inventory/ClickAction;Lnet/minecraft/world/entity/player/Player;)Z +MD: net/minecraft/world/item/BundleItem/m_142305_ (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/inventory/Slot;Lnet/minecraft/world/inventory/ClickAction;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/entity/SlotAccess;)Z net/minecraft/world/item/BundleItem/overrideOtherStackedOnMe (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/inventory/Slot;Lnet/minecraft/world/inventory/ClickAction;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/entity/SlotAccess;)Z +MD: net/minecraft/world/item/BundleItem/m_142422_ (Lnet/minecraft/world/item/ItemStack;)Ljava/util/Optional; net/minecraft/world/item/BundleItem/getTooltipImage (Lnet/minecraft/world/item/ItemStack;)Ljava/util/Optional; +MD: net/minecraft/world/item/BundleItem/m_142522_ (Lnet/minecraft/world/item/ItemStack;)Z net/minecraft/world/item/BundleItem/isBarVisible (Lnet/minecraft/world/item/ItemStack;)Z +MD: net/minecraft/world/item/BundleItem/m_150729_ (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/entity/player/Player;)Z net/minecraft/world/item/BundleItem/dropContents (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/entity/player/Player;)Z +MD: net/minecraft/world/item/BundleItem/m_150737_ (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/inventory/Slot;Lnet/minecraft/world/item/ItemStack;)V net/minecraft/world/item/BundleItem/lambda$overrideStackedOnOther$0 (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/inventory/Slot;Lnet/minecraft/world/item/ItemStack;)V +MD: net/minecraft/world/item/BundleItem/m_150756_ (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/nbt/ListTag;)Ljava/util/Optional; net/minecraft/world/item/BundleItem/getMatchingItem (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/nbt/ListTag;)Ljava/util/Optional; +MD: net/minecraft/world/item/BundleItem/m_150763_ (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/item/ItemStack;)I net/minecraft/world/item/BundleItem/add (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/item/ItemStack;)I +MD: net/minecraft/world/item/BundleItem/m_150766_ (Lnet/minecraft/world/item/ItemStack;)F net/minecraft/world/item/BundleItem/getFullnessDisplay (Lnet/minecraft/world/item/ItemStack;)F +MD: net/minecraft/world/item/BundleItem/m_150776_ (Lnet/minecraft/world/item/ItemStack;)I net/minecraft/world/item/BundleItem/getWeight (Lnet/minecraft/world/item/ItemStack;)I +MD: net/minecraft/world/item/BundleItem/m_150778_ (Lnet/minecraft/world/item/ItemStack;)I net/minecraft/world/item/BundleItem/getContentWeight (Lnet/minecraft/world/item/ItemStack;)I +MD: net/minecraft/world/item/BundleItem/m_150780_ (Lnet/minecraft/world/item/ItemStack;)Ljava/util/Optional; net/minecraft/world/item/BundleItem/removeOne (Lnet/minecraft/world/item/ItemStack;)Ljava/util/Optional; +MD: net/minecraft/world/item/BundleItem/m_150782_ (Lnet/minecraft/world/item/ItemStack;)Ljava/util/stream/Stream; net/minecraft/world/item/BundleItem/getContents (Lnet/minecraft/world/item/ItemStack;)Ljava/util/stream/Stream; +MD: net/minecraft/world/item/BundleItem/m_186342_ (Lnet/minecraft/world/entity/Entity;)V net/minecraft/world/item/BundleItem/playRemoveOneSound (Lnet/minecraft/world/entity/Entity;)V +MD: net/minecraft/world/item/BundleItem/m_186344_ (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/entity/SlotAccess;Lnet/minecraft/world/item/ItemStack;)V net/minecraft/world/item/BundleItem/lambda$overrideOtherStackedOnMe$1 (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/entity/SlotAccess;Lnet/minecraft/world/item/ItemStack;)V +MD: net/minecraft/world/item/BundleItem/m_186348_ (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/nbt/CompoundTag;)Z net/minecraft/world/item/BundleItem/lambda$getMatchingItem$2 (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/nbt/CompoundTag;)Z +MD: net/minecraft/world/item/BundleItem/m_186351_ (Lnet/minecraft/world/entity/Entity;)V net/minecraft/world/item/BundleItem/playInsertSound (Lnet/minecraft/world/entity/Entity;)V +MD: net/minecraft/world/item/BundleItem/m_186353_ (Lnet/minecraft/world/entity/Entity;)V net/minecraft/world/item/BundleItem/playDropContentsSound (Lnet/minecraft/world/entity/Entity;)V +MD: net/minecraft/world/item/BundleItem/m_186355_ (Lnet/minecraft/world/item/ItemStack;)I net/minecraft/world/item/BundleItem/lambda$getContentWeight$3 (Lnet/minecraft/world/item/ItemStack;)I +MD: net/minecraft/world/item/BundleItem/m_7203_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;)Lnet/minecraft/world/InteractionResultHolder; net/minecraft/world/item/BundleItem/use (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;)Lnet/minecraft/world/InteractionResultHolder; +MD: net/minecraft/world/item/BundleItem/m_7373_ (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/level/Level;Ljava/util/List;Lnet/minecraft/world/item/TooltipFlag;)V net/minecraft/world/item/BundleItem/appendHoverText (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/level/Level;Ljava/util/List;Lnet/minecraft/world/item/TooltipFlag;)V +MD: net/minecraft/world/item/ChorusFruitItem/ (Lnet/minecraft/world/item/Item$Properties;)V net/minecraft/world/item/ChorusFruitItem/ (Lnet/minecraft/world/item/Item$Properties;)V +MD: net/minecraft/world/item/ChorusFruitItem/m_5922_ (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/level/Level;Lnet/minecraft/world/entity/LivingEntity;)Lnet/minecraft/world/item/ItemStack; net/minecraft/world/item/ChorusFruitItem/finishUsingItem (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/level/Level;Lnet/minecraft/world/entity/LivingEntity;)Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/item/CompassItem/ ()V net/minecraft/world/item/CompassItem/ ()V +MD: net/minecraft/world/item/CompassItem/ (Lnet/minecraft/world/item/Item$Properties;)V net/minecraft/world/item/CompassItem/ (Lnet/minecraft/world/item/Item$Properties;)V +MD: net/minecraft/world/item/CompassItem/m_220019_ (Lnet/minecraft/world/level/Level;)Lnet/minecraft/core/GlobalPos; net/minecraft/world/item/CompassItem/getSpawnPosition (Lnet/minecraft/world/level/Level;)Lnet/minecraft/core/GlobalPos; +MD: net/minecraft/world/item/CompassItem/m_220021_ (Lnet/minecraft/nbt/CompoundTag;)Lnet/minecraft/core/GlobalPos; net/minecraft/world/item/CompassItem/getLodestonePosition (Lnet/minecraft/nbt/CompoundTag;)Lnet/minecraft/core/GlobalPos; +MD: net/minecraft/world/item/CompassItem/m_40727_ (Lnet/minecraft/nbt/CompoundTag;)Ljava/util/Optional; net/minecraft/world/item/CompassItem/getLodestoneDimension (Lnet/minecraft/nbt/CompoundTag;)Ljava/util/Optional; +MD: net/minecraft/world/item/CompassItem/m_40729_ (Lnet/minecraft/nbt/CompoundTag;Lnet/minecraft/nbt/Tag;)V net/minecraft/world/item/CompassItem/lambda$addLodestoneTags$0 (Lnet/minecraft/nbt/CompoundTag;Lnet/minecraft/nbt/Tag;)V +MD: net/minecraft/world/item/CompassItem/m_40732_ (Lnet/minecraft/resources/ResourceKey;Lnet/minecraft/core/BlockPos;Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/item/CompassItem/addLodestoneTags (Lnet/minecraft/resources/ResourceKey;Lnet/minecraft/core/BlockPos;Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/item/CompassItem/m_40736_ (Lnet/minecraft/world/item/ItemStack;)Z net/minecraft/world/item/CompassItem/isLodestoneCompass (Lnet/minecraft/world/item/ItemStack;)Z +MD: net/minecraft/world/item/CompassItem/m_5671_ (Lnet/minecraft/world/item/ItemStack;)Ljava/lang/String; net/minecraft/world/item/CompassItem/getDescriptionId (Lnet/minecraft/world/item/ItemStack;)Ljava/lang/String; +MD: net/minecraft/world/item/CompassItem/m_5812_ (Lnet/minecraft/world/item/ItemStack;)Z net/minecraft/world/item/CompassItem/isFoil (Lnet/minecraft/world/item/ItemStack;)Z +MD: net/minecraft/world/item/CompassItem/m_6225_ (Lnet/minecraft/world/item/context/UseOnContext;)Lnet/minecraft/world/InteractionResult; net/minecraft/world/item/CompassItem/useOn (Lnet/minecraft/world/item/context/UseOnContext;)Lnet/minecraft/world/InteractionResult; +MD: net/minecraft/world/item/CompassItem/m_6883_ (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/level/Level;Lnet/minecraft/world/entity/Entity;IZ)V net/minecraft/world/item/CompassItem/inventoryTick (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/level/Level;Lnet/minecraft/world/entity/Entity;IZ)V +MD: net/minecraft/world/item/ComplexItem/ (Lnet/minecraft/world/item/Item$Properties;)V net/minecraft/world/item/ComplexItem/ (Lnet/minecraft/world/item/Item$Properties;)V +MD: net/minecraft/world/item/ComplexItem/m_7233_ (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/level/Level;Lnet/minecraft/world/entity/player/Player;)Lnet/minecraft/network/protocol/Packet; net/minecraft/world/item/ComplexItem/getUpdatePacket (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/level/Level;Lnet/minecraft/world/entity/player/Player;)Lnet/minecraft/network/protocol/Packet; +MD: net/minecraft/world/item/ComplexItem/m_7807_ ()Z net/minecraft/world/item/ComplexItem/isComplex ()Z +MD: net/minecraft/world/item/CreativeModeTab/ (Lnet/minecraft/world/item/CreativeModeTab$Row;ILnet/minecraft/world/item/CreativeModeTab$Type;Lnet/minecraft/network/chat/Component;Ljava/util/function/Supplier;Lnet/minecraft/world/item/CreativeModeTab$DisplayItemsGenerator;)V net/minecraft/world/item/CreativeModeTab/ (Lnet/minecraft/world/item/CreativeModeTab$Row;ILnet/minecraft/world/item/CreativeModeTab$Type;Lnet/minecraft/network/chat/Component;Ljava/util/function/Supplier;Lnet/minecraft/world/item/CreativeModeTab$DisplayItemsGenerator;)V +MD: net/minecraft/world/item/CreativeModeTab/m_257466_ ()V net/minecraft/world/item/CreativeModeTab/rebuildSearchTree ()V +MD: net/minecraft/world/item/CreativeModeTab/m_257497_ ()Z net/minecraft/world/item/CreativeModeTab/shouldDisplay ()Z +MD: net/minecraft/world/item/CreativeModeTab/m_257694_ (Lnet/minecraft/world/item/ItemStack;)Z net/minecraft/world/item/CreativeModeTab/contains (Lnet/minecraft/world/item/ItemStack;)Z +MD: net/minecraft/world/item/CreativeModeTab/m_257815_ (Lnet/minecraft/world/item/CreativeModeTab$Row;I)Lnet/minecraft/world/item/CreativeModeTab$Builder; net/minecraft/world/item/CreativeModeTab/builder (Lnet/minecraft/world/item/CreativeModeTab$Row;I)Lnet/minecraft/world/item/CreativeModeTab$Builder; +MD: net/minecraft/world/item/CreativeModeTab/m_257882_ (Ljava/util/function/Consumer;)V net/minecraft/world/item/CreativeModeTab/setSearchTreeBuilder (Ljava/util/function/Consumer;)V +MD: net/minecraft/world/item/CreativeModeTab/m_257903_ ()I net/minecraft/world/item/CreativeModeTab/column ()I +MD: net/minecraft/world/item/CreativeModeTab/m_257905_ ()Z net/minecraft/world/item/CreativeModeTab/hasAnyItems ()Z +MD: net/minecraft/world/item/CreativeModeTab/m_257962_ ()Lnet/minecraft/world/item/CreativeModeTab$Type; net/minecraft/world/item/CreativeModeTab/getType ()Lnet/minecraft/world/item/CreativeModeTab$Type; +MD: net/minecraft/world/item/CreativeModeTab/m_258064_ ()Lnet/minecraft/world/item/CreativeModeTab$Row; net/minecraft/world/item/CreativeModeTab/row ()Lnet/minecraft/world/item/CreativeModeTab$Row; +MD: net/minecraft/world/item/CreativeModeTab/m_260957_ ()Ljava/util/Collection; net/minecraft/world/item/CreativeModeTab/getDisplayItems ()Ljava/util/Collection; +MD: net/minecraft/world/item/CreativeModeTab/m_261235_ ()Ljava/util/Collection; net/minecraft/world/item/CreativeModeTab/getSearchTabDisplayItems ()Ljava/util/Collection; +MD: net/minecraft/world/item/CreativeModeTab/m_269498_ (Lnet/minecraft/world/item/CreativeModeTab$ItemDisplayParameters;)V net/minecraft/world/item/CreativeModeTab/buildContents (Lnet/minecraft/world/item/CreativeModeTab$ItemDisplayParameters;)V +MD: net/minecraft/world/item/CreativeModeTab/m_280646_ ()Ljava/lang/IllegalStateException; net/minecraft/world/item/CreativeModeTab/lambda$buildContents$0 ()Ljava/lang/IllegalStateException; +MD: net/minecraft/world/item/CreativeModeTab/m_40786_ ()Lnet/minecraft/network/chat/Component; net/minecraft/world/item/CreativeModeTab/getDisplayName ()Lnet/minecraft/network/chat/Component; +MD: net/minecraft/world/item/CreativeModeTab/m_40787_ ()Lnet/minecraft/world/item/ItemStack; net/minecraft/world/item/CreativeModeTab/getIconItem ()Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/item/CreativeModeTab/m_40788_ ()Ljava/lang/String; net/minecraft/world/item/CreativeModeTab/getBackgroundSuffix ()Ljava/lang/String; +MD: net/minecraft/world/item/CreativeModeTab/m_40789_ ()Z net/minecraft/world/item/CreativeModeTab/showTitle ()Z +MD: net/minecraft/world/item/CreativeModeTab/m_40791_ ()Z net/minecraft/world/item/CreativeModeTab/canScroll ()Z +MD: net/minecraft/world/item/CreativeModeTab/m_6563_ ()Z net/minecraft/world/item/CreativeModeTab/isAlignedRight ()Z +MD: net/minecraft/world/item/CreativeModeTab$1/ ()V net/minecraft/world/item/CreativeModeTab$1/ ()V +MD: net/minecraft/world/item/CreativeModeTab$Builder/ ()V net/minecraft/world/item/CreativeModeTab$Builder/ ()V +MD: net/minecraft/world/item/CreativeModeTab$Builder/ (Lnet/minecraft/world/item/CreativeModeTab$Row;I)V net/minecraft/world/item/CreativeModeTab$Builder/ (Lnet/minecraft/world/item/CreativeModeTab$Row;I)V +MD: net/minecraft/world/item/CreativeModeTab$Builder/m_257501_ (Lnet/minecraft/world/item/CreativeModeTab$DisplayItemsGenerator;)Lnet/minecraft/world/item/CreativeModeTab$Builder; net/minecraft/world/item/CreativeModeTab$Builder/displayItems (Lnet/minecraft/world/item/CreativeModeTab$DisplayItemsGenerator;)Lnet/minecraft/world/item/CreativeModeTab$Builder; +MD: net/minecraft/world/item/CreativeModeTab$Builder/m_257579_ ()Lnet/minecraft/world/item/ItemStack; net/minecraft/world/item/CreativeModeTab$Builder/lambda$new$1 ()Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/item/CreativeModeTab$Builder/m_257609_ (Ljava/lang/String;)Lnet/minecraft/world/item/CreativeModeTab$Builder; net/minecraft/world/item/CreativeModeTab$Builder/backgroundSuffix (Ljava/lang/String;)Lnet/minecraft/world/item/CreativeModeTab$Builder; +MD: net/minecraft/world/item/CreativeModeTab$Builder/m_257623_ (Lnet/minecraft/world/item/CreativeModeTab$Type;)Lnet/minecraft/world/item/CreativeModeTab$Builder; net/minecraft/world/item/CreativeModeTab$Builder/type (Lnet/minecraft/world/item/CreativeModeTab$Type;)Lnet/minecraft/world/item/CreativeModeTab$Builder; +MD: net/minecraft/world/item/CreativeModeTab$Builder/m_257652_ ()Lnet/minecraft/world/item/CreativeModeTab; net/minecraft/world/item/CreativeModeTab$Builder/build ()Lnet/minecraft/world/item/CreativeModeTab; +MD: net/minecraft/world/item/CreativeModeTab$Builder/m_257737_ (Ljava/util/function/Supplier;)Lnet/minecraft/world/item/CreativeModeTab$Builder; net/minecraft/world/item/CreativeModeTab$Builder/icon (Ljava/util/function/Supplier;)Lnet/minecraft/world/item/CreativeModeTab$Builder; +MD: net/minecraft/world/item/CreativeModeTab$Builder/m_257794_ ()Lnet/minecraft/world/item/CreativeModeTab$Builder; net/minecraft/world/item/CreativeModeTab$Builder/noScrollBar ()Lnet/minecraft/world/item/CreativeModeTab$Builder; +MD: net/minecraft/world/item/CreativeModeTab$Builder/m_257809_ ()Lnet/minecraft/world/item/CreativeModeTab$Builder; net/minecraft/world/item/CreativeModeTab$Builder/hideTitle ()Lnet/minecraft/world/item/CreativeModeTab$Builder; +MD: net/minecraft/world/item/CreativeModeTab$Builder/m_257826_ ()Lnet/minecraft/world/item/CreativeModeTab$Builder; net/minecraft/world/item/CreativeModeTab$Builder/alignedRight ()Lnet/minecraft/world/item/CreativeModeTab$Builder; +MD: net/minecraft/world/item/CreativeModeTab$Builder/m_257941_ (Lnet/minecraft/network/chat/Component;)Lnet/minecraft/world/item/CreativeModeTab$Builder; net/minecraft/world/item/CreativeModeTab$Builder/title (Lnet/minecraft/network/chat/Component;)Lnet/minecraft/world/item/CreativeModeTab$Builder; +MD: net/minecraft/world/item/CreativeModeTab$Builder/m_257969_ (Lnet/minecraft/world/item/CreativeModeTab$ItemDisplayParameters;Lnet/minecraft/world/item/CreativeModeTab$Output;)V net/minecraft/world/item/CreativeModeTab$Builder/lambda$static$0 (Lnet/minecraft/world/item/CreativeModeTab$ItemDisplayParameters;Lnet/minecraft/world/item/CreativeModeTab$Output;)V +MD: net/minecraft/world/item/CreativeModeTab$DisplayItemsGenerator/m_257865_ (Lnet/minecraft/world/item/CreativeModeTab$ItemDisplayParameters;Lnet/minecraft/world/item/CreativeModeTab$Output;)V net/minecraft/world/item/CreativeModeTab$DisplayItemsGenerator/accept (Lnet/minecraft/world/item/CreativeModeTab$ItemDisplayParameters;Lnet/minecraft/world/item/CreativeModeTab$Output;)V +MD: net/minecraft/world/item/CreativeModeTab$ItemDisplayBuilder/ (Lnet/minecraft/world/item/CreativeModeTab;Lnet/minecraft/world/flag/FeatureFlagSet;)V net/minecraft/world/item/CreativeModeTab$ItemDisplayBuilder/ (Lnet/minecraft/world/item/CreativeModeTab;Lnet/minecraft/world/flag/FeatureFlagSet;)V +MD: net/minecraft/world/item/CreativeModeTab$ItemDisplayBuilder/m_246267_ (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/item/CreativeModeTab$TabVisibility;)V net/minecraft/world/item/CreativeModeTab$ItemDisplayBuilder/accept (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/item/CreativeModeTab$TabVisibility;)V +MD: net/minecraft/world/item/CreativeModeTab$ItemDisplayParameters/ (Lnet/minecraft/world/flag/FeatureFlagSet;ZLnet/minecraft/core/HolderLookup$Provider;)V net/minecraft/world/item/CreativeModeTab$ItemDisplayParameters/ (Lnet/minecraft/world/flag/FeatureFlagSet;ZLnet/minecraft/core/HolderLookup$Provider;)V +MD: net/minecraft/world/item/CreativeModeTab$ItemDisplayParameters/equals (Ljava/lang/Object;)Z net/minecraft/world/item/CreativeModeTab$ItemDisplayParameters/equals (Ljava/lang/Object;)Z +MD: net/minecraft/world/item/CreativeModeTab$ItemDisplayParameters/f_268429_ ()Z net/minecraft/world/item/CreativeModeTab$ItemDisplayParameters/hasPermissions ()Z +MD: net/minecraft/world/item/CreativeModeTab$ItemDisplayParameters/f_268485_ ()Lnet/minecraft/core/HolderLookup$Provider; net/minecraft/world/item/CreativeModeTab$ItemDisplayParameters/holders ()Lnet/minecraft/core/HolderLookup$Provider; +MD: net/minecraft/world/item/CreativeModeTab$ItemDisplayParameters/f_268709_ ()Lnet/minecraft/world/flag/FeatureFlagSet; net/minecraft/world/item/CreativeModeTab$ItemDisplayParameters/enabledFeatures ()Lnet/minecraft/world/flag/FeatureFlagSet; +MD: net/minecraft/world/item/CreativeModeTab$ItemDisplayParameters/hashCode ()I net/minecraft/world/item/CreativeModeTab$ItemDisplayParameters/hashCode ()I +MD: net/minecraft/world/item/CreativeModeTab$ItemDisplayParameters/m_269247_ (Lnet/minecraft/world/flag/FeatureFlagSet;ZLnet/minecraft/core/HolderLookup$Provider;)Z net/minecraft/world/item/CreativeModeTab$ItemDisplayParameters/needsUpdate (Lnet/minecraft/world/flag/FeatureFlagSet;ZLnet/minecraft/core/HolderLookup$Provider;)Z +MD: net/minecraft/world/item/CreativeModeTab$ItemDisplayParameters/toString ()Ljava/lang/String; net/minecraft/world/item/CreativeModeTab$ItemDisplayParameters/toString ()Ljava/lang/String; +MD: net/minecraft/world/item/CreativeModeTab$Output/m_245282_ (Lnet/minecraft/world/level/ItemLike;Lnet/minecraft/world/item/CreativeModeTab$TabVisibility;)V net/minecraft/world/item/CreativeModeTab$Output/accept (Lnet/minecraft/world/level/ItemLike;Lnet/minecraft/world/item/CreativeModeTab$TabVisibility;)V +MD: net/minecraft/world/item/CreativeModeTab$Output/m_246233_ (Ljava/util/Collection;Lnet/minecraft/world/item/CreativeModeTab$TabVisibility;)V net/minecraft/world/item/CreativeModeTab$Output/acceptAll (Ljava/util/Collection;Lnet/minecraft/world/item/CreativeModeTab$TabVisibility;)V +MD: net/minecraft/world/item/CreativeModeTab$Output/m_246267_ (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/item/CreativeModeTab$TabVisibility;)V net/minecraft/world/item/CreativeModeTab$Output/accept (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/item/CreativeModeTab$TabVisibility;)V +MD: net/minecraft/world/item/CreativeModeTab$Output/m_246326_ (Lnet/minecraft/world/level/ItemLike;)V net/minecraft/world/item/CreativeModeTab$Output/accept (Lnet/minecraft/world/level/ItemLike;)V +MD: net/minecraft/world/item/CreativeModeTab$Output/m_246342_ (Lnet/minecraft/world/item/ItemStack;)V net/minecraft/world/item/CreativeModeTab$Output/accept (Lnet/minecraft/world/item/ItemStack;)V +MD: net/minecraft/world/item/CreativeModeTab$Output/m_246601_ (Ljava/util/Collection;)V net/minecraft/world/item/CreativeModeTab$Output/acceptAll (Ljava/util/Collection;)V +MD: net/minecraft/world/item/CreativeModeTab$Output/m_247606_ (Lnet/minecraft/world/item/CreativeModeTab$TabVisibility;Lnet/minecraft/world/item/ItemStack;)V net/minecraft/world/item/CreativeModeTab$Output/lambda$acceptAll$0 (Lnet/minecraft/world/item/CreativeModeTab$TabVisibility;Lnet/minecraft/world/item/ItemStack;)V +MD: net/minecraft/world/item/CreativeModeTab$Row/ ()V net/minecraft/world/item/CreativeModeTab$Row/ ()V +MD: net/minecraft/world/item/CreativeModeTab$Row/ (Ljava/lang/String;I)V net/minecraft/world/item/CreativeModeTab$Row/ (Ljava/lang/String;I)V +MD: net/minecraft/world/item/CreativeModeTab$Row/m_257616_ ()[Lnet/minecraft/world/item/CreativeModeTab$Row; net/minecraft/world/item/CreativeModeTab$Row/$values ()[Lnet/minecraft/world/item/CreativeModeTab$Row; +MD: net/minecraft/world/item/CreativeModeTab$Row/valueOf (Ljava/lang/String;)Lnet/minecraft/world/item/CreativeModeTab$Row; net/minecraft/world/item/CreativeModeTab$Row/valueOf (Ljava/lang/String;)Lnet/minecraft/world/item/CreativeModeTab$Row; +MD: net/minecraft/world/item/CreativeModeTab$Row/values ()[Lnet/minecraft/world/item/CreativeModeTab$Row; net/minecraft/world/item/CreativeModeTab$Row/values ()[Lnet/minecraft/world/item/CreativeModeTab$Row; +MD: net/minecraft/world/item/CreativeModeTab$TabVisibility/ ()V net/minecraft/world/item/CreativeModeTab$TabVisibility/ ()V +MD: net/minecraft/world/item/CreativeModeTab$TabVisibility/ (Ljava/lang/String;I)V net/minecraft/world/item/CreativeModeTab$TabVisibility/ (Ljava/lang/String;I)V +MD: net/minecraft/world/item/CreativeModeTab$TabVisibility/m_246258_ ()[Lnet/minecraft/world/item/CreativeModeTab$TabVisibility; net/minecraft/world/item/CreativeModeTab$TabVisibility/$values ()[Lnet/minecraft/world/item/CreativeModeTab$TabVisibility; +MD: net/minecraft/world/item/CreativeModeTab$TabVisibility/valueOf (Ljava/lang/String;)Lnet/minecraft/world/item/CreativeModeTab$TabVisibility; net/minecraft/world/item/CreativeModeTab$TabVisibility/valueOf (Ljava/lang/String;)Lnet/minecraft/world/item/CreativeModeTab$TabVisibility; +MD: net/minecraft/world/item/CreativeModeTab$TabVisibility/values ()[Lnet/minecraft/world/item/CreativeModeTab$TabVisibility; net/minecraft/world/item/CreativeModeTab$TabVisibility/values ()[Lnet/minecraft/world/item/CreativeModeTab$TabVisibility; +MD: net/minecraft/world/item/CreativeModeTab$Type/ ()V net/minecraft/world/item/CreativeModeTab$Type/ ()V +MD: net/minecraft/world/item/CreativeModeTab$Type/ (Ljava/lang/String;I)V net/minecraft/world/item/CreativeModeTab$Type/ (Ljava/lang/String;I)V +MD: net/minecraft/world/item/CreativeModeTab$Type/m_257818_ ()[Lnet/minecraft/world/item/CreativeModeTab$Type; net/minecraft/world/item/CreativeModeTab$Type/$values ()[Lnet/minecraft/world/item/CreativeModeTab$Type; +MD: net/minecraft/world/item/CreativeModeTab$Type/valueOf (Ljava/lang/String;)Lnet/minecraft/world/item/CreativeModeTab$Type; net/minecraft/world/item/CreativeModeTab$Type/valueOf (Ljava/lang/String;)Lnet/minecraft/world/item/CreativeModeTab$Type; +MD: net/minecraft/world/item/CreativeModeTab$Type/values ()[Lnet/minecraft/world/item/CreativeModeTab$Type; net/minecraft/world/item/CreativeModeTab$Type/values ()[Lnet/minecraft/world/item/CreativeModeTab$Type; +MD: net/minecraft/world/item/CreativeModeTabs/ ()V net/minecraft/world/item/CreativeModeTabs/ ()V +MD: net/minecraft/world/item/CreativeModeTabs/ ()V net/minecraft/world/item/CreativeModeTabs/ ()V +MD: net/minecraft/world/item/CreativeModeTabs/m_257388_ ()Ljava/util/List; net/minecraft/world/item/CreativeModeTabs/tabs ()Ljava/util/List; +MD: net/minecraft/world/item/CreativeModeTabs/m_257428_ (Lnet/minecraft/world/item/CreativeModeTab$ItemDisplayParameters;Lnet/minecraft/world/item/CreativeModeTab$Output;)V net/minecraft/world/item/CreativeModeTabs/lambda$bootstrap$11 (Lnet/minecraft/world/item/CreativeModeTab$ItemDisplayParameters;Lnet/minecraft/world/item/CreativeModeTab$Output;)V +MD: net/minecraft/world/item/CreativeModeTabs/m_257431_ (Lnet/minecraft/world/item/CreativeModeTab$ItemDisplayParameters;Lnet/minecraft/world/item/CreativeModeTab$Output;)V net/minecraft/world/item/CreativeModeTabs/lambda$bootstrap$1 (Lnet/minecraft/world/item/CreativeModeTab$ItemDisplayParameters;Lnet/minecraft/world/item/CreativeModeTab$Output;)V +MD: net/minecraft/world/item/CreativeModeTabs/m_257437_ ()Lnet/minecraft/world/item/ItemStack; net/minecraft/world/item/CreativeModeTabs/lambda$bootstrap$12 ()Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/item/CreativeModeTabs/m_257454_ ()Lnet/minecraft/world/item/ItemStack; net/minecraft/world/item/CreativeModeTabs/lambda$bootstrap$6 ()Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/item/CreativeModeTabs/m_257478_ ()Ljava/util/List; net/minecraft/world/item/CreativeModeTabs/allTabs ()Ljava/util/List; +MD: net/minecraft/world/item/CreativeModeTabs/m_257481_ ()Lnet/minecraft/world/item/ItemStack; net/minecraft/world/item/CreativeModeTabs/lambda$bootstrap$24 ()Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/item/CreativeModeTabs/m_257493_ ()Lnet/minecraft/world/item/ItemStack; net/minecraft/world/item/CreativeModeTabs/lambda$bootstrap$10 ()Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/item/CreativeModeTabs/m_257519_ ()Lnet/minecraft/world/item/ItemStack; net/minecraft/world/item/CreativeModeTabs/lambda$bootstrap$33 ()Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/item/CreativeModeTabs/m_257535_ ()Lnet/minecraft/world/item/ItemStack; net/minecraft/world/item/CreativeModeTabs/lambda$bootstrap$15 ()Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/item/CreativeModeTabs/m_257543_ ()Lnet/minecraft/world/item/CreativeModeTab; net/minecraft/world/item/CreativeModeTabs/getDefaultTab ()Lnet/minecraft/world/item/CreativeModeTab; +MD: net/minecraft/world/item/CreativeModeTabs/m_257584_ (Lnet/minecraft/world/item/CreativeModeTab;)Z net/minecraft/world/item/CreativeModeTabs/lambda$buildAllTabContents$51 (Lnet/minecraft/world/item/CreativeModeTab;)Z +MD: net/minecraft/world/item/CreativeModeTabs/m_257637_ ()Lnet/minecraft/world/item/ItemStack; net/minecraft/world/item/CreativeModeTabs/lambda$bootstrap$4 ()Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/item/CreativeModeTabs/m_257664_ (Lnet/minecraft/world/item/CreativeModeTab$ItemDisplayParameters;Lnet/minecraft/world/item/CreativeModeTab$Output;)V net/minecraft/world/item/CreativeModeTabs/lambda$bootstrap$20 (Lnet/minecraft/world/item/CreativeModeTab$ItemDisplayParameters;Lnet/minecraft/world/item/CreativeModeTab$Output;)V +MD: net/minecraft/world/item/CreativeModeTabs/m_257722_ ()Lnet/minecraft/world/item/ItemStack; net/minecraft/world/item/CreativeModeTabs/lambda$bootstrap$2 ()Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/item/CreativeModeTabs/m_257753_ ()Lnet/minecraft/world/item/ItemStack; net/minecraft/world/item/CreativeModeTabs/lambda$bootstrap$29 ()Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/item/CreativeModeTabs/m_257769_ (Lnet/minecraft/world/item/CreativeModeTab$ItemDisplayParameters;Lnet/minecraft/world/item/CreativeModeTab$Output;)V net/minecraft/world/item/CreativeModeTabs/lambda$bootstrap$23 (Lnet/minecraft/world/item/CreativeModeTab$ItemDisplayParameters;Lnet/minecraft/world/item/CreativeModeTab$Output;)V +MD: net/minecraft/world/item/CreativeModeTabs/m_257842_ ()Lnet/minecraft/world/item/ItemStack; net/minecraft/world/item/CreativeModeTabs/lambda$bootstrap$13 ()Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/item/CreativeModeTabs/m_257847_ ()Lnet/minecraft/world/item/ItemStack; net/minecraft/world/item/CreativeModeTabs/lambda$bootstrap$0 ()Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/item/CreativeModeTabs/m_257852_ (Lnet/minecraft/world/item/CreativeModeTab$Output;Lnet/minecraft/world/item/CreativeModeTab$TabVisibility;)V net/minecraft/world/item/CreativeModeTabs/generateFireworksAllDurations (Lnet/minecraft/world/item/CreativeModeTab$Output;Lnet/minecraft/world/item/CreativeModeTab$TabVisibility;)V +MD: net/minecraft/world/item/CreativeModeTabs/m_257855_ (Lnet/minecraft/world/item/CreativeModeTab$Output;Lnet/minecraft/world/item/CreativeModeTab$TabVisibility;)V net/minecraft/world/item/CreativeModeTabs/generateSuspiciousStews (Lnet/minecraft/world/item/CreativeModeTab$Output;Lnet/minecraft/world/item/CreativeModeTab$TabVisibility;)V +MD: net/minecraft/world/item/CreativeModeTabs/m_257885_ ()Lnet/minecraft/world/item/ItemStack; net/minecraft/world/item/CreativeModeTabs/lambda$bootstrap$27 ()Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/item/CreativeModeTabs/m_257947_ (Lnet/minecraft/world/item/CreativeModeTab;)Z net/minecraft/world/item/CreativeModeTabs/lambda$buildAllTabContents$49 (Lnet/minecraft/world/item/CreativeModeTab;)Z +MD: net/minecraft/world/item/CreativeModeTabs/m_257948_ ()Lnet/minecraft/world/item/ItemStack; net/minecraft/world/item/CreativeModeTabs/lambda$bootstrap$18 ()Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/item/CreativeModeTabs/m_257978_ ()Lnet/minecraft/world/item/ItemStack; net/minecraft/world/item/CreativeModeTabs/lambda$bootstrap$21 ()Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/item/CreativeModeTabs/m_258007_ ()Lnet/minecraft/world/item/CreativeModeTab; net/minecraft/world/item/CreativeModeTabs/searchTab ()Lnet/minecraft/world/item/CreativeModeTab; +MD: net/minecraft/world/item/CreativeModeTabs/m_268949_ (Lnet/minecraft/world/item/CreativeModeTab$Output;Lnet/minecraft/world/item/CreativeModeTab$TabVisibility;Lnet/minecraft/core/Holder$Reference;)V net/minecraft/world/item/CreativeModeTabs/lambda$generatePresetPaintings$48 (Lnet/minecraft/world/item/CreativeModeTab$Output;Lnet/minecraft/world/item/CreativeModeTab$TabVisibility;Lnet/minecraft/core/Holder$Reference;)V +MD: net/minecraft/world/item/CreativeModeTabs/m_268950_ (Lnet/minecraft/world/item/CreativeModeTab$ItemDisplayParameters;Lnet/minecraft/world/item/CreativeModeTab$Output;)V net/minecraft/world/item/CreativeModeTabs/lambda$bootstrap$32 (Lnet/minecraft/world/item/CreativeModeTab$ItemDisplayParameters;Lnet/minecraft/world/item/CreativeModeTab$Output;)V +MD: net/minecraft/world/item/CreativeModeTabs/m_268951_ (Lnet/minecraft/world/item/CreativeModeTab$Output;Ljava/util/Set;Lnet/minecraft/core/HolderLookup$RegistryLookup;)V net/minecraft/world/item/CreativeModeTabs/lambda$bootstrap$25 (Lnet/minecraft/world/item/CreativeModeTab$Output;Ljava/util/Set;Lnet/minecraft/core/HolderLookup$RegistryLookup;)V +MD: net/minecraft/world/item/CreativeModeTabs/m_268952_ (Lnet/minecraft/world/item/Item;Lnet/minecraft/core/Holder$Reference;)Lnet/minecraft/world/item/ItemStack; net/minecraft/world/item/CreativeModeTabs/lambda$generatePotionEffectTypes$36 (Lnet/minecraft/world/item/Item;Lnet/minecraft/core/Holder$Reference;)Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/item/CreativeModeTabs/m_268953_ (Lnet/minecraft/world/item/CreativeModeTab$Output;Lnet/minecraft/world/item/CreativeModeTab$TabVisibility;Lnet/minecraft/world/item/ItemStack;)V net/minecraft/world/item/CreativeModeTabs/lambda$generateEnchantmentBookTypesOnlyMaxLevel$40 (Lnet/minecraft/world/item/CreativeModeTab$Output;Lnet/minecraft/world/item/CreativeModeTab$TabVisibility;Lnet/minecraft/world/item/ItemStack;)V +MD: net/minecraft/world/item/CreativeModeTabs/m_268954_ (Ljava/util/Set;Lnet/minecraft/world/item/enchantment/Enchantment;)Z net/minecraft/world/item/CreativeModeTabs/lambda$generateEnchantmentBookTypesAllLevels$41 (Ljava/util/Set;Lnet/minecraft/world/item/enchantment/Enchantment;)Z +MD: net/minecraft/world/item/CreativeModeTabs/m_268955_ (Lnet/minecraft/world/item/CreativeModeTab$Output;Lnet/minecraft/core/HolderLookup$RegistryLookup;)V net/minecraft/world/item/CreativeModeTabs/lambda$bootstrap$22 (Lnet/minecraft/world/item/CreativeModeTab$Output;Lnet/minecraft/core/HolderLookup$RegistryLookup;)V +MD: net/minecraft/world/item/CreativeModeTabs/m_268956_ (Lnet/minecraft/world/item/Item;Lnet/minecraft/core/Holder;)Lnet/minecraft/world/item/ItemStack; net/minecraft/world/item/CreativeModeTabs/lambda$generateInstrumentTypes$45 (Lnet/minecraft/world/item/Item;Lnet/minecraft/core/Holder;)Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/item/CreativeModeTabs/m_268957_ (Lnet/minecraft/world/item/CreativeModeTab$ItemDisplayParameters;Lnet/minecraft/world/item/CreativeModeTab;)V net/minecraft/world/item/CreativeModeTabs/lambda$buildAllTabContents$50 (Lnet/minecraft/world/item/CreativeModeTab$ItemDisplayParameters;Lnet/minecraft/world/item/CreativeModeTab;)V +MD: net/minecraft/world/item/CreativeModeTabs/m_268958_ (Lnet/minecraft/world/item/CreativeModeTab$Output;Lnet/minecraft/world/item/CreativeModeTab$TabVisibility;Lnet/minecraft/world/item/ItemStack;)V net/minecraft/world/item/CreativeModeTabs/lambda$generatePotionEffectTypes$37 (Lnet/minecraft/world/item/CreativeModeTab$Output;Lnet/minecraft/world/item/CreativeModeTab$TabVisibility;Lnet/minecraft/world/item/ItemStack;)V +MD: net/minecraft/world/item/CreativeModeTabs/m_268959_ (Lnet/minecraft/world/item/CreativeModeTab$ItemDisplayParameters;Lnet/minecraft/world/item/CreativeModeTab;)V net/minecraft/world/item/CreativeModeTabs/lambda$buildAllTabContents$52 (Lnet/minecraft/world/item/CreativeModeTab$ItemDisplayParameters;Lnet/minecraft/world/item/CreativeModeTab;)V +MD: net/minecraft/world/item/CreativeModeTabs/m_268960_ (Lnet/minecraft/core/Holder;)Z net/minecraft/world/item/CreativeModeTabs/lambda$bootstrap$30 (Lnet/minecraft/core/Holder;)Z +MD: net/minecraft/world/item/CreativeModeTabs/m_268961_ (Lnet/minecraft/world/entity/decoration/PaintingVariant;)I net/minecraft/world/item/CreativeModeTabs/lambda$static$34 (Lnet/minecraft/world/entity/decoration/PaintingVariant;)I +MD: net/minecraft/world/item/CreativeModeTabs/m_268962_ (Lnet/minecraft/world/item/enchantment/Enchantment;I)Lnet/minecraft/world/item/ItemStack; net/minecraft/world/item/CreativeModeTabs/lambda$generateEnchantmentBookTypesAllLevels$42 (Lnet/minecraft/world/item/enchantment/Enchantment;I)Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/item/CreativeModeTabs/m_268963_ (Ljava/util/Set;Lnet/minecraft/world/item/enchantment/Enchantment;)Z net/minecraft/world/item/CreativeModeTabs/lambda$generateEnchantmentBookTypesOnlyMaxLevel$38 (Ljava/util/Set;Lnet/minecraft/world/item/enchantment/Enchantment;)Z +MD: net/minecraft/world/item/CreativeModeTabs/m_268964_ (Lnet/minecraft/world/item/CreativeModeTab$Output;Lnet/minecraft/world/item/CreativeModeTab$TabVisibility;Lnet/minecraft/world/item/ItemStack;)V net/minecraft/world/item/CreativeModeTabs/lambda$generateInstrumentTypes$46 (Lnet/minecraft/world/item/CreativeModeTab$Output;Lnet/minecraft/world/item/CreativeModeTab$TabVisibility;Lnet/minecraft/world/item/ItemStack;)V +MD: net/minecraft/world/item/CreativeModeTabs/m_268965_ (Lnet/minecraft/core/Holder$Reference;)Z net/minecraft/world/item/CreativeModeTabs/lambda$generatePotionEffectTypes$35 (Lnet/minecraft/core/Holder$Reference;)Z +MD: net/minecraft/world/item/CreativeModeTabs/m_268966_ (Lnet/minecraft/world/item/CreativeModeTab$Output;Lnet/minecraft/core/HolderLookup$RegistryLookup;)V net/minecraft/world/item/CreativeModeTabs/lambda$bootstrap$31 (Lnet/minecraft/world/item/CreativeModeTab$Output;Lnet/minecraft/core/HolderLookup$RegistryLookup;)V +MD: net/minecraft/world/item/CreativeModeTabs/m_268967_ (Lnet/minecraft/world/item/CreativeModeTab$Output;Lnet/minecraft/world/item/CreativeModeTab$TabVisibility;Lnet/minecraft/world/item/ItemStack;)V net/minecraft/world/item/CreativeModeTabs/lambda$generateEnchantmentBookTypesAllLevels$44 (Lnet/minecraft/world/item/CreativeModeTab$Output;Lnet/minecraft/world/item/CreativeModeTab$TabVisibility;Lnet/minecraft/world/item/ItemStack;)V +MD: net/minecraft/world/item/CreativeModeTabs/m_268968_ (Lnet/minecraft/world/item/Item;Lnet/minecraft/world/item/CreativeModeTab$Output;Lnet/minecraft/world/item/CreativeModeTab$TabVisibility;Lnet/minecraft/core/HolderSet$Named;)V net/minecraft/world/item/CreativeModeTabs/lambda$generateInstrumentTypes$47 (Lnet/minecraft/world/item/Item;Lnet/minecraft/world/item/CreativeModeTab$Output;Lnet/minecraft/world/item/CreativeModeTab$TabVisibility;Lnet/minecraft/core/HolderSet$Named;)V +MD: net/minecraft/world/item/CreativeModeTabs/m_268970_ (Lnet/minecraft/world/item/enchantment/Enchantment;)Ljava/util/stream/Stream; net/minecraft/world/item/CreativeModeTabs/lambda$generateEnchantmentBookTypesAllLevels$43 (Lnet/minecraft/world/item/enchantment/Enchantment;)Ljava/util/stream/Stream; +MD: net/minecraft/world/item/CreativeModeTabs/m_268971_ (Lnet/minecraft/world/item/CreativeModeTab$Output;Lnet/minecraft/core/HolderLookup$RegistryLookup;)V net/minecraft/world/item/CreativeModeTabs/lambda$bootstrap$8 (Lnet/minecraft/world/item/CreativeModeTab$Output;Lnet/minecraft/core/HolderLookup$RegistryLookup;)V +MD: net/minecraft/world/item/CreativeModeTabs/m_268974_ (Lnet/minecraft/world/item/CreativeModeTab$Output;Lnet/minecraft/core/HolderLookup$RegistryLookup;)V net/minecraft/world/item/CreativeModeTabs/lambda$bootstrap$19 (Lnet/minecraft/world/item/CreativeModeTab$Output;Lnet/minecraft/core/HolderLookup$RegistryLookup;)V +MD: net/minecraft/world/item/CreativeModeTabs/m_268975_ (Lnet/minecraft/world/item/CreativeModeTab$ItemDisplayParameters;Lnet/minecraft/world/item/CreativeModeTab$Output;)V net/minecraft/world/item/CreativeModeTabs/lambda$bootstrap$3 (Lnet/minecraft/world/item/CreativeModeTab$ItemDisplayParameters;Lnet/minecraft/world/item/CreativeModeTab$Output;)V +MD: net/minecraft/world/item/CreativeModeTabs/m_268976_ (Lnet/minecraft/world/item/CreativeModeTab$Output;Lnet/minecraft/core/HolderLookup$RegistryLookup;)V net/minecraft/world/item/CreativeModeTabs/lambda$bootstrap$16 (Lnet/minecraft/world/item/CreativeModeTab$Output;Lnet/minecraft/core/HolderLookup$RegistryLookup;)V +MD: net/minecraft/world/item/CreativeModeTabs/m_268977_ (Lnet/minecraft/core/Holder;)Z net/minecraft/world/item/CreativeModeTabs/lambda$bootstrap$7 (Lnet/minecraft/core/Holder;)Z +MD: net/minecraft/world/item/CreativeModeTabs/m_268978_ (Lnet/minecraft/world/item/enchantment/Enchantment;)Lnet/minecraft/world/item/ItemStack; net/minecraft/world/item/CreativeModeTabs/lambda$generateEnchantmentBookTypesOnlyMaxLevel$39 (Lnet/minecraft/world/item/enchantment/Enchantment;)Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/item/CreativeModeTabs/m_269182_ (Lnet/minecraft/world/item/CreativeModeTab$Output;Lnet/minecraft/core/HolderLookup;Ljava/util/Set;Lnet/minecraft/world/item/CreativeModeTab$TabVisibility;)V net/minecraft/world/item/CreativeModeTabs/generateEnchantmentBookTypesOnlyMaxLevel (Lnet/minecraft/world/item/CreativeModeTab$Output;Lnet/minecraft/core/HolderLookup;Ljava/util/Set;Lnet/minecraft/world/item/CreativeModeTab$TabVisibility;)V +MD: net/minecraft/world/item/CreativeModeTabs/m_269226_ (Lnet/minecraft/world/flag/FeatureFlagSet;ZLnet/minecraft/core/HolderLookup$Provider;)Z net/minecraft/world/item/CreativeModeTabs/tryRebuildTabContents (Lnet/minecraft/world/flag/FeatureFlagSet;ZLnet/minecraft/core/HolderLookup$Provider;)Z +MD: net/minecraft/world/item/CreativeModeTabs/m_269246_ (Lnet/minecraft/world/item/CreativeModeTab$Output;Lnet/minecraft/core/HolderLookup;Lnet/minecraft/world/item/Item;Lnet/minecraft/world/item/CreativeModeTab$TabVisibility;)V net/minecraft/world/item/CreativeModeTabs/generatePotionEffectTypes (Lnet/minecraft/world/item/CreativeModeTab$Output;Lnet/minecraft/core/HolderLookup;Lnet/minecraft/world/item/Item;Lnet/minecraft/world/item/CreativeModeTab$TabVisibility;)V +MD: net/minecraft/world/item/CreativeModeTabs/m_269255_ (Lnet/minecraft/world/item/CreativeModeTab$Output;Lnet/minecraft/core/HolderLookup$RegistryLookup;Ljava/util/function/Predicate;Lnet/minecraft/world/item/CreativeModeTab$TabVisibility;)V net/minecraft/world/item/CreativeModeTabs/generatePresetPaintings (Lnet/minecraft/world/item/CreativeModeTab$Output;Lnet/minecraft/core/HolderLookup$RegistryLookup;Ljava/util/function/Predicate;Lnet/minecraft/world/item/CreativeModeTab$TabVisibility;)V +MD: net/minecraft/world/item/CreativeModeTabs/m_269335_ (Lnet/minecraft/world/item/CreativeModeTab$Output;Lnet/minecraft/core/HolderLookup;Ljava/util/Set;Lnet/minecraft/world/item/CreativeModeTab$TabVisibility;)V net/minecraft/world/item/CreativeModeTabs/generateEnchantmentBookTypesAllLevels (Lnet/minecraft/world/item/CreativeModeTab$Output;Lnet/minecraft/core/HolderLookup;Ljava/util/Set;Lnet/minecraft/world/item/CreativeModeTab$TabVisibility;)V +MD: net/minecraft/world/item/CreativeModeTabs/m_269421_ (Lnet/minecraft/world/item/CreativeModeTab$ItemDisplayParameters;)V net/minecraft/world/item/CreativeModeTabs/buildAllTabContents (Lnet/minecraft/world/item/CreativeModeTab$ItemDisplayParameters;)V +MD: net/minecraft/world/item/CreativeModeTabs/m_269481_ (Lnet/minecraft/world/item/CreativeModeTab$Output;Lnet/minecraft/core/HolderLookup;Lnet/minecraft/world/item/Item;Lnet/minecraft/tags/TagKey;Lnet/minecraft/world/item/CreativeModeTab$TabVisibility;)V net/minecraft/world/item/CreativeModeTabs/generateInstrumentTypes (Lnet/minecraft/world/item/CreativeModeTab$Output;Lnet/minecraft/core/HolderLookup;Lnet/minecraft/world/item/Item;Lnet/minecraft/tags/TagKey;Lnet/minecraft/world/item/CreativeModeTab$TabVisibility;)V +MD: net/minecraft/world/item/CreativeModeTabs/m_271663_ (Lnet/minecraft/world/item/CreativeModeTab$ItemDisplayParameters;Lnet/minecraft/world/item/CreativeModeTab$Output;)V net/minecraft/world/item/CreativeModeTabs/lambda$bootstrap$28 (Lnet/minecraft/world/item/CreativeModeTab$ItemDisplayParameters;Lnet/minecraft/world/item/CreativeModeTab$Output;)V +MD: net/minecraft/world/item/CreativeModeTabs/m_276747_ (Lnet/minecraft/world/item/CreativeModeTab$ItemDisplayParameters;Lnet/minecraft/world/item/CreativeModeTab$Output;)V net/minecraft/world/item/CreativeModeTabs/lambda$bootstrap$9 (Lnet/minecraft/world/item/CreativeModeTab$ItemDisplayParameters;Lnet/minecraft/world/item/CreativeModeTab$Output;)V +MD: net/minecraft/world/item/CreativeModeTabs/m_276748_ (Lnet/minecraft/world/item/CreativeModeTab$ItemDisplayParameters;Lnet/minecraft/world/item/CreativeModeTab$Output;)V net/minecraft/world/item/CreativeModeTabs/lambda$bootstrap$26 (Lnet/minecraft/world/item/CreativeModeTab$ItemDisplayParameters;Lnet/minecraft/world/item/CreativeModeTab$Output;)V +MD: net/minecraft/world/item/CreativeModeTabs/m_279954_ (Lnet/minecraft/core/Registry;Lnet/minecraft/world/item/CreativeModeTab$ItemDisplayParameters;Lnet/minecraft/world/item/CreativeModeTab$Output;)V net/minecraft/world/item/CreativeModeTabs/lambda$bootstrap$14 (Lnet/minecraft/core/Registry;Lnet/minecraft/world/item/CreativeModeTab$ItemDisplayParameters;Lnet/minecraft/world/item/CreativeModeTab$Output;)V +MD: net/minecraft/world/item/CreativeModeTabs/m_280019_ ()V net/minecraft/world/item/CreativeModeTabs/validate ()V +MD: net/minecraft/world/item/CreativeModeTabs/m_280238_ (Ljava/lang/String;)Lnet/minecraft/resources/ResourceKey; net/minecraft/world/item/CreativeModeTabs/createKey (Ljava/lang/String;)Lnet/minecraft/resources/ResourceKey; +MD: net/minecraft/world/item/CreativeModeTabs/m_280294_ (Lnet/minecraft/core/Registry;)Lnet/minecraft/world/item/CreativeModeTab; net/minecraft/world/item/CreativeModeTabs/bootstrap (Lnet/minecraft/core/Registry;)Lnet/minecraft/world/item/CreativeModeTab; +MD: net/minecraft/world/item/CreativeModeTabs/m_280350_ ()Ljava/util/stream/Stream; net/minecraft/world/item/CreativeModeTabs/streamAllTabs ()Ljava/util/stream/Stream; +MD: net/minecraft/world/item/CreativeModeTabs/m_284092_ (Lnet/minecraft/world/item/CreativeModeTab$ItemDisplayParameters;Lnet/minecraft/world/item/CreativeModeTab$Output;)V net/minecraft/world/item/CreativeModeTabs/lambda$bootstrap$17 (Lnet/minecraft/world/item/CreativeModeTab$ItemDisplayParameters;Lnet/minecraft/world/item/CreativeModeTab$Output;)V +MD: net/minecraft/world/item/CreativeModeTabs/m_288178_ (Lnet/minecraft/world/item/CreativeModeTab$ItemDisplayParameters;Lnet/minecraft/world/item/CreativeModeTab$Output;)V net/minecraft/world/item/CreativeModeTabs/lambda$bootstrap$5 (Lnet/minecraft/world/item/CreativeModeTab$ItemDisplayParameters;Lnet/minecraft/world/item/CreativeModeTab$Output;)V +MD: net/minecraft/world/item/CrossbowItem/ (Lnet/minecraft/world/item/Item$Properties;)V net/minecraft/world/item/CrossbowItem/ (Lnet/minecraft/world/item/Item$Properties;)V +MD: net/minecraft/world/item/CrossbowItem/m_220023_ (Lnet/minecraft/util/RandomSource;)[F net/minecraft/world/item/CrossbowItem/getShotPitches (Lnet/minecraft/util/RandomSource;)[F +MD: net/minecraft/world/item/CrossbowItem/m_220025_ (ZLnet/minecraft/util/RandomSource;)F net/minecraft/world/item/CrossbowItem/getRandomShotPitch (ZLnet/minecraft/util/RandomSource;)F +MD: net/minecraft/world/item/CrossbowItem/m_40851_ (I)Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/item/CrossbowItem/getStartSound (I)Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/item/CrossbowItem/m_40853_ (ILnet/minecraft/world/item/ItemStack;)F net/minecraft/world/item/CrossbowItem/getPowerForTime (ILnet/minecraft/world/item/ItemStack;)F +MD: net/minecraft/world/item/CrossbowItem/m_40856_ (Lnet/minecraft/world/InteractionHand;Lnet/minecraft/world/entity/LivingEntity;)V net/minecraft/world/item/CrossbowItem/lambda$shootProjectile$1 (Lnet/minecraft/world/InteractionHand;Lnet/minecraft/world/entity/LivingEntity;)V +MD: net/minecraft/world/item/CrossbowItem/m_40859_ (Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/item/ItemStack;)Z net/minecraft/world/item/CrossbowItem/tryLoadProjectiles (Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/item/ItemStack;)Z +MD: net/minecraft/world/item/CrossbowItem/m_40862_ (Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/item/ItemStack;ZZ)Z net/minecraft/world/item/CrossbowItem/loadProjectile (Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/item/ItemStack;ZZ)Z +MD: net/minecraft/world/item/CrossbowItem/m_40868_ (Lnet/minecraft/world/item/Item;Lnet/minecraft/world/item/ItemStack;)Z net/minecraft/world/item/CrossbowItem/lambda$containsChargedProjectile$0 (Lnet/minecraft/world/item/Item;Lnet/minecraft/world/item/ItemStack;)Z +MD: net/minecraft/world/item/CrossbowItem/m_40871_ (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/item/Item;)Z net/minecraft/world/item/CrossbowItem/containsChargedProjectile (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/item/Item;)Z +MD: net/minecraft/world/item/CrossbowItem/m_40884_ (Lnet/minecraft/world/item/ItemStack;Z)V net/minecraft/world/item/CrossbowItem/setCharged (Lnet/minecraft/world/item/ItemStack;Z)V +MD: net/minecraft/world/item/CrossbowItem/m_40887_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/InteractionHand;Lnet/minecraft/world/item/ItemStack;FF)V net/minecraft/world/item/CrossbowItem/performShooting (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/InteractionHand;Lnet/minecraft/world/item/ItemStack;FF)V +MD: net/minecraft/world/item/CrossbowItem/m_40894_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/InteractionHand;Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/item/ItemStack;FZFFF)V net/minecraft/world/item/CrossbowItem/shootProjectile (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/InteractionHand;Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/item/ItemStack;FZFFF)V +MD: net/minecraft/world/item/CrossbowItem/m_40905_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/item/ItemStack;)V net/minecraft/world/item/CrossbowItem/onCrossbowShot (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/item/ItemStack;)V +MD: net/minecraft/world/item/CrossbowItem/m_40914_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/item/ItemStack;)Lnet/minecraft/world/entity/projectile/AbstractArrow; net/minecraft/world/item/CrossbowItem/getArrow (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/item/ItemStack;)Lnet/minecraft/world/entity/projectile/AbstractArrow; +MD: net/minecraft/world/item/CrossbowItem/m_40928_ (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/item/ItemStack;)V net/minecraft/world/item/CrossbowItem/addChargedProjectile (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/item/ItemStack;)V +MD: net/minecraft/world/item/CrossbowItem/m_40932_ (Lnet/minecraft/world/item/ItemStack;)Z net/minecraft/world/item/CrossbowItem/isCharged (Lnet/minecraft/world/item/ItemStack;)Z +MD: net/minecraft/world/item/CrossbowItem/m_40939_ (Lnet/minecraft/world/item/ItemStack;)I net/minecraft/world/item/CrossbowItem/getChargeDuration (Lnet/minecraft/world/item/ItemStack;)I +MD: net/minecraft/world/item/CrossbowItem/m_40941_ (Lnet/minecraft/world/item/ItemStack;)Ljava/util/List; net/minecraft/world/item/CrossbowItem/getChargedProjectiles (Lnet/minecraft/world/item/ItemStack;)Ljava/util/List; +MD: net/minecraft/world/item/CrossbowItem/m_40943_ (Lnet/minecraft/world/item/ItemStack;)V net/minecraft/world/item/CrossbowItem/clearChargedProjectiles (Lnet/minecraft/world/item/ItemStack;)V +MD: net/minecraft/world/item/CrossbowItem/m_40945_ (Lnet/minecraft/world/item/ItemStack;)F net/minecraft/world/item/CrossbowItem/getShootingPower (Lnet/minecraft/world/item/ItemStack;)F +MD: net/minecraft/world/item/CrossbowItem/m_41463_ (Lnet/minecraft/world/item/ItemStack;)Z net/minecraft/world/item/CrossbowItem/useOnRelease (Lnet/minecraft/world/item/ItemStack;)Z +MD: net/minecraft/world/item/CrossbowItem/m_5551_ (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/level/Level;Lnet/minecraft/world/entity/LivingEntity;I)V net/minecraft/world/item/CrossbowItem/releaseUsing (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/level/Level;Lnet/minecraft/world/entity/LivingEntity;I)V +MD: net/minecraft/world/item/CrossbowItem/m_5929_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/item/ItemStack;I)V net/minecraft/world/item/CrossbowItem/onUseTick (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/item/ItemStack;I)V +MD: net/minecraft/world/item/CrossbowItem/m_6164_ (Lnet/minecraft/world/item/ItemStack;)Lnet/minecraft/world/item/UseAnim; net/minecraft/world/item/CrossbowItem/getUseAnimation (Lnet/minecraft/world/item/ItemStack;)Lnet/minecraft/world/item/UseAnim; +MD: net/minecraft/world/item/CrossbowItem/m_6437_ ()Ljava/util/function/Predicate; net/minecraft/world/item/CrossbowItem/getAllSupportedProjectiles ()Ljava/util/function/Predicate; +MD: net/minecraft/world/item/CrossbowItem/m_6442_ ()Ljava/util/function/Predicate; net/minecraft/world/item/CrossbowItem/getSupportedHeldProjectiles ()Ljava/util/function/Predicate; +MD: net/minecraft/world/item/CrossbowItem/m_6615_ ()I net/minecraft/world/item/CrossbowItem/getDefaultProjectileRange ()I +MD: net/minecraft/world/item/CrossbowItem/m_7203_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;)Lnet/minecraft/world/InteractionResultHolder; net/minecraft/world/item/CrossbowItem/use (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;)Lnet/minecraft/world/InteractionResultHolder; +MD: net/minecraft/world/item/CrossbowItem/m_7373_ (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/level/Level;Ljava/util/List;Lnet/minecraft/world/item/TooltipFlag;)V net/minecraft/world/item/CrossbowItem/appendHoverText (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/level/Level;Ljava/util/List;Lnet/minecraft/world/item/TooltipFlag;)V +MD: net/minecraft/world/item/CrossbowItem/m_8105_ (Lnet/minecraft/world/item/ItemStack;)I net/minecraft/world/item/CrossbowItem/getUseDuration (Lnet/minecraft/world/item/ItemStack;)I +MD: net/minecraft/world/item/DebugStickItem/ (Lnet/minecraft/world/item/Item$Properties;)V net/minecraft/world/item/DebugStickItem/ (Lnet/minecraft/world/item/Item$Properties;)V +MD: net/minecraft/world/item/DebugStickItem/m_150802_ (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;ZLnet/minecraft/world/item/ItemStack;)Z net/minecraft/world/item/DebugStickItem/handleInteraction (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;ZLnet/minecraft/world/item/ItemStack;)Z +MD: net/minecraft/world/item/DebugStickItem/m_40956_ (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/network/chat/Component;)V net/minecraft/world/item/DebugStickItem/message (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/network/chat/Component;)V +MD: net/minecraft/world/item/DebugStickItem/m_40966_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/state/properties/Property;)Ljava/lang/String; net/minecraft/world/item/DebugStickItem/getNameHelper (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/state/properties/Property;)Ljava/lang/String; +MD: net/minecraft/world/item/DebugStickItem/m_40969_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/state/properties/Property;Z)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/item/DebugStickItem/cycleState (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/state/properties/Property;Z)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/item/DebugStickItem/m_40973_ (Ljava/lang/Iterable;Ljava/lang/Object;Z)Ljava/lang/Object; net/minecraft/world/item/DebugStickItem/getRelative (Ljava/lang/Iterable;Ljava/lang/Object;Z)Ljava/lang/Object; +MD: net/minecraft/world/item/DebugStickItem/m_5812_ (Lnet/minecraft/world/item/ItemStack;)Z net/minecraft/world/item/DebugStickItem/isFoil (Lnet/minecraft/world/item/ItemStack;)Z +MD: net/minecraft/world/item/DebugStickItem/m_6225_ (Lnet/minecraft/world/item/context/UseOnContext;)Lnet/minecraft/world/InteractionResult; net/minecraft/world/item/DebugStickItem/useOn (Lnet/minecraft/world/item/context/UseOnContext;)Lnet/minecraft/world/InteractionResult; +MD: net/minecraft/world/item/DebugStickItem/m_6777_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/player/Player;)Z net/minecraft/world/item/DebugStickItem/canAttackBlock (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/player/Player;)Z +MD: net/minecraft/world/item/DiggerItem/ (FFLnet/minecraft/world/item/Tier;Lnet/minecraft/tags/TagKey;Lnet/minecraft/world/item/Item$Properties;)V net/minecraft/world/item/DiggerItem/ (FFLnet/minecraft/world/item/Tier;Lnet/minecraft/tags/TagKey;Lnet/minecraft/world/item/Item$Properties;)V +MD: net/minecraft/world/item/DiggerItem/m_40991_ (Lnet/minecraft/world/entity/LivingEntity;)V net/minecraft/world/item/DiggerItem/lambda$mineBlock$1 (Lnet/minecraft/world/entity/LivingEntity;)V +MD: net/minecraft/world/item/DiggerItem/m_41006_ (Lnet/minecraft/world/entity/LivingEntity;)V net/minecraft/world/item/DiggerItem/lambda$hurtEnemy$0 (Lnet/minecraft/world/entity/LivingEntity;)V +MD: net/minecraft/world/item/DiggerItem/m_41008_ ()F net/minecraft/world/item/DiggerItem/getAttackDamage ()F +MD: net/minecraft/world/item/DiggerItem/m_6813_ (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/level/Level;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/LivingEntity;)Z net/minecraft/world/item/DiggerItem/mineBlock (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/level/Level;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/LivingEntity;)Z +MD: net/minecraft/world/item/DiggerItem/m_7167_ (Lnet/minecraft/world/entity/EquipmentSlot;)Lcom/google/common/collect/Multimap; net/minecraft/world/item/DiggerItem/getDefaultAttributeModifiers (Lnet/minecraft/world/entity/EquipmentSlot;)Lcom/google/common/collect/Multimap; +MD: net/minecraft/world/item/DiggerItem/m_7579_ (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/entity/LivingEntity;)Z net/minecraft/world/item/DiggerItem/hurtEnemy (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/entity/LivingEntity;)Z +MD: net/minecraft/world/item/DiggerItem/m_8096_ (Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/world/item/DiggerItem/isCorrectToolForDrops (Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/world/item/DiggerItem/m_8102_ (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/level/block/state/BlockState;)F net/minecraft/world/item/DiggerItem/getDestroySpeed (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/level/block/state/BlockState;)F +MD: net/minecraft/world/item/DiscFragmentItem/ (Lnet/minecraft/world/item/Item$Properties;)V net/minecraft/world/item/DiscFragmentItem/ (Lnet/minecraft/world/item/Item$Properties;)V +MD: net/minecraft/world/item/DiscFragmentItem/m_220035_ ()Lnet/minecraft/network/chat/MutableComponent; net/minecraft/world/item/DiscFragmentItem/getDisplayName ()Lnet/minecraft/network/chat/MutableComponent; +MD: net/minecraft/world/item/DiscFragmentItem/m_7373_ (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/level/Level;Ljava/util/List;Lnet/minecraft/world/item/TooltipFlag;)V net/minecraft/world/item/DiscFragmentItem/appendHoverText (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/level/Level;Ljava/util/List;Lnet/minecraft/world/item/TooltipFlag;)V +MD: net/minecraft/world/item/DispensibleContainerItem/m_142073_ (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/BlockHitResult;)Z net/minecraft/world/item/DispensibleContainerItem/emptyContents (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/BlockHitResult;)Z +MD: net/minecraft/world/item/DispensibleContainerItem/m_142131_ (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/level/Level;Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/core/BlockPos;)V net/minecraft/world/item/DispensibleContainerItem/checkExtraContent (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/level/Level;Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/world/item/DoubleHighBlockItem/ (Lnet/minecraft/world/level/block/Block;Lnet/minecraft/world/item/Item$Properties;)V net/minecraft/world/item/DoubleHighBlockItem/ (Lnet/minecraft/world/level/block/Block;Lnet/minecraft/world/item/Item$Properties;)V +MD: net/minecraft/world/item/DoubleHighBlockItem/m_7429_ (Lnet/minecraft/world/item/context/BlockPlaceContext;Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/world/item/DoubleHighBlockItem/placeBlock (Lnet/minecraft/world/item/context/BlockPlaceContext;Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/world/item/DyeColor/ ()V net/minecraft/world/item/DyeColor/ ()V +MD: net/minecraft/world/item/DyeColor/ (Ljava/lang/String;IILjava/lang/String;ILnet/minecraft/world/level/material/MapColor;II)V net/minecraft/world/item/DyeColor/ (Ljava/lang/String;IILjava/lang/String;ILnet/minecraft/world/level/material/MapColor;II)V +MD: net/minecraft/world/item/DyeColor/m_150825_ ()[Lnet/minecraft/world/item/DyeColor; net/minecraft/world/item/DyeColor/$values ()[Lnet/minecraft/world/item/DyeColor; +MD: net/minecraft/world/item/DyeColor/m_284406_ ()Lnet/minecraft/world/level/material/MapColor; net/minecraft/world/item/DyeColor/getMapColor ()Lnet/minecraft/world/level/material/MapColor; +MD: net/minecraft/world/item/DyeColor/m_41053_ (I)Lnet/minecraft/world/item/DyeColor; net/minecraft/world/item/DyeColor/byId (I)Lnet/minecraft/world/item/DyeColor; +MD: net/minecraft/world/item/DyeColor/m_41055_ (Lnet/minecraft/world/item/DyeColor;)Lnet/minecraft/world/item/DyeColor; net/minecraft/world/item/DyeColor/lambda$static$1 (Lnet/minecraft/world/item/DyeColor;)Lnet/minecraft/world/item/DyeColor; +MD: net/minecraft/world/item/DyeColor/m_41057_ (Ljava/lang/String;Lnet/minecraft/world/item/DyeColor;)Lnet/minecraft/world/item/DyeColor; net/minecraft/world/item/DyeColor/byName (Ljava/lang/String;Lnet/minecraft/world/item/DyeColor;)Lnet/minecraft/world/item/DyeColor; +MD: net/minecraft/world/item/DyeColor/m_41060_ ()I net/minecraft/world/item/DyeColor/getId ()I +MD: net/minecraft/world/item/DyeColor/m_41061_ (I)Lnet/minecraft/world/item/DyeColor; net/minecraft/world/item/DyeColor/byFireworkColor (I)Lnet/minecraft/world/item/DyeColor; +MD: net/minecraft/world/item/DyeColor/m_41063_ (Lnet/minecraft/world/item/DyeColor;)Ljava/lang/Integer; net/minecraft/world/item/DyeColor/lambda$static$0 (Lnet/minecraft/world/item/DyeColor;)Ljava/lang/Integer; +MD: net/minecraft/world/item/DyeColor/m_41065_ ()Ljava/lang/String; net/minecraft/world/item/DyeColor/getName ()Ljava/lang/String; +MD: net/minecraft/world/item/DyeColor/m_41068_ ()[F net/minecraft/world/item/DyeColor/getTextureDiffuseColors ()[F +MD: net/minecraft/world/item/DyeColor/m_41070_ ()I net/minecraft/world/item/DyeColor/getFireworkColor ()I +MD: net/minecraft/world/item/DyeColor/m_41071_ ()I net/minecraft/world/item/DyeColor/getTextColor ()I +MD: net/minecraft/world/item/DyeColor/m_7912_ ()Ljava/lang/String; net/minecraft/world/item/DyeColor/getSerializedName ()Ljava/lang/String; +MD: net/minecraft/world/item/DyeColor/toString ()Ljava/lang/String; net/minecraft/world/item/DyeColor/toString ()Ljava/lang/String; +MD: net/minecraft/world/item/DyeColor/valueOf (Ljava/lang/String;)Lnet/minecraft/world/item/DyeColor; net/minecraft/world/item/DyeColor/valueOf (Ljava/lang/String;)Lnet/minecraft/world/item/DyeColor; +MD: net/minecraft/world/item/DyeColor/values ()[Lnet/minecraft/world/item/DyeColor; net/minecraft/world/item/DyeColor/values ()[Lnet/minecraft/world/item/DyeColor; +MD: net/minecraft/world/item/DyeItem/ ()V net/minecraft/world/item/DyeItem/ ()V +MD: net/minecraft/world/item/DyeItem/ (Lnet/minecraft/world/item/DyeColor;Lnet/minecraft/world/item/Item$Properties;)V net/minecraft/world/item/DyeItem/ (Lnet/minecraft/world/item/DyeColor;Lnet/minecraft/world/item/Item$Properties;)V +MD: net/minecraft/world/item/DyeItem/m_276787_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/level/block/entity/SignBlockEntity;ZLnet/minecraft/world/entity/player/Player;)Z net/minecraft/world/item/DyeItem/tryApplyToSign (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/level/block/entity/SignBlockEntity;ZLnet/minecraft/world/entity/player/Player;)Z +MD: net/minecraft/world/item/DyeItem/m_276862_ (Lnet/minecraft/world/level/block/entity/SignText;)Lnet/minecraft/world/level/block/entity/SignText; net/minecraft/world/item/DyeItem/lambda$tryApplyToSign$0 (Lnet/minecraft/world/level/block/entity/SignText;)Lnet/minecraft/world/level/block/entity/SignText; +MD: net/minecraft/world/item/DyeItem/m_41082_ (Lnet/minecraft/world/item/DyeColor;)Lnet/minecraft/world/item/DyeItem; net/minecraft/world/item/DyeItem/byColor (Lnet/minecraft/world/item/DyeColor;)Lnet/minecraft/world/item/DyeItem; +MD: net/minecraft/world/item/DyeItem/m_41089_ ()Lnet/minecraft/world/item/DyeColor; net/minecraft/world/item/DyeItem/getDyeColor ()Lnet/minecraft/world/item/DyeColor; +MD: net/minecraft/world/item/DyeItem/m_6880_ (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/InteractionHand;)Lnet/minecraft/world/InteractionResult; net/minecraft/world/item/DyeItem/interactLivingEntity (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/InteractionHand;)Lnet/minecraft/world/InteractionResult; +MD: net/minecraft/world/item/DyeableArmorItem/ (Lnet/minecraft/world/item/ArmorMaterial;Lnet/minecraft/world/item/ArmorItem$Type;Lnet/minecraft/world/item/Item$Properties;)V net/minecraft/world/item/DyeableArmorItem/ (Lnet/minecraft/world/item/ArmorMaterial;Lnet/minecraft/world/item/ArmorItem$Type;Lnet/minecraft/world/item/Item$Properties;)V +MD: net/minecraft/world/item/DyeableHorseArmorItem/ (ILjava/lang/String;Lnet/minecraft/world/item/Item$Properties;)V net/minecraft/world/item/DyeableHorseArmorItem/ (ILjava/lang/String;Lnet/minecraft/world/item/Item$Properties;)V +MD: net/minecraft/world/item/DyeableLeatherItem/m_41113_ (Lnet/minecraft/world/item/ItemStack;)Z net/minecraft/world/item/DyeableLeatherItem/hasCustomColor (Lnet/minecraft/world/item/ItemStack;)Z +MD: net/minecraft/world/item/DyeableLeatherItem/m_41115_ (Lnet/minecraft/world/item/ItemStack;I)V net/minecraft/world/item/DyeableLeatherItem/setColor (Lnet/minecraft/world/item/ItemStack;I)V +MD: net/minecraft/world/item/DyeableLeatherItem/m_41118_ (Lnet/minecraft/world/item/ItemStack;Ljava/util/List;)Lnet/minecraft/world/item/ItemStack; net/minecraft/world/item/DyeableLeatherItem/dyeArmor (Lnet/minecraft/world/item/ItemStack;Ljava/util/List;)Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/item/DyeableLeatherItem/m_41121_ (Lnet/minecraft/world/item/ItemStack;)I net/minecraft/world/item/DyeableLeatherItem/getColor (Lnet/minecraft/world/item/ItemStack;)I +MD: net/minecraft/world/item/DyeableLeatherItem/m_41123_ (Lnet/minecraft/world/item/ItemStack;)V net/minecraft/world/item/DyeableLeatherItem/clearColor (Lnet/minecraft/world/item/ItemStack;)V +MD: net/minecraft/world/item/EggItem/ (Lnet/minecraft/world/item/Item$Properties;)V net/minecraft/world/item/EggItem/ (Lnet/minecraft/world/item/Item$Properties;)V +MD: net/minecraft/world/item/EggItem/m_7203_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;)Lnet/minecraft/world/InteractionResultHolder; net/minecraft/world/item/EggItem/use (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;)Lnet/minecraft/world/InteractionResultHolder; +MD: net/minecraft/world/item/ElytraItem/ (Lnet/minecraft/world/item/Item$Properties;)V net/minecraft/world/item/ElytraItem/ (Lnet/minecraft/world/item/Item$Properties;)V +MD: net/minecraft/world/item/ElytraItem/m_150681_ ()Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/item/ElytraItem/getEquipSound ()Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/item/ElytraItem/m_40402_ ()Lnet/minecraft/world/entity/EquipmentSlot; net/minecraft/world/item/ElytraItem/getEquipmentSlot ()Lnet/minecraft/world/entity/EquipmentSlot; +MD: net/minecraft/world/item/ElytraItem/m_41140_ (Lnet/minecraft/world/item/ItemStack;)Z net/minecraft/world/item/ElytraItem/isFlyEnabled (Lnet/minecraft/world/item/ItemStack;)Z +MD: net/minecraft/world/item/ElytraItem/m_6832_ (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/item/ItemStack;)Z net/minecraft/world/item/ElytraItem/isValidRepairItem (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/item/ItemStack;)Z +MD: net/minecraft/world/item/ElytraItem/m_7203_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;)Lnet/minecraft/world/InteractionResultHolder; net/minecraft/world/item/ElytraItem/use (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;)Lnet/minecraft/world/InteractionResultHolder; +MD: net/minecraft/world/item/EmptyMapItem/ (Lnet/minecraft/world/item/Item$Properties;)V net/minecraft/world/item/EmptyMapItem/ (Lnet/minecraft/world/item/Item$Properties;)V +MD: net/minecraft/world/item/EmptyMapItem/m_7203_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;)Lnet/minecraft/world/InteractionResultHolder; net/minecraft/world/item/EmptyMapItem/use (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;)Lnet/minecraft/world/InteractionResultHolder; +MD: net/minecraft/world/item/EnchantedBookItem/ (Lnet/minecraft/world/item/Item$Properties;)V net/minecraft/world/item/EnchantedBookItem/ (Lnet/minecraft/world/item/Item$Properties;)V +MD: net/minecraft/world/item/EnchantedBookItem/m_41153_ (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/item/enchantment/EnchantmentInstance;)V net/minecraft/world/item/EnchantedBookItem/addEnchantment (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/item/enchantment/EnchantmentInstance;)V +MD: net/minecraft/world/item/EnchantedBookItem/m_41161_ (Lnet/minecraft/world/item/enchantment/EnchantmentInstance;)Lnet/minecraft/world/item/ItemStack; net/minecraft/world/item/EnchantedBookItem/createForEnchantment (Lnet/minecraft/world/item/enchantment/EnchantmentInstance;)Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/item/EnchantedBookItem/m_41163_ (Lnet/minecraft/world/item/ItemStack;)Lnet/minecraft/nbt/ListTag; net/minecraft/world/item/EnchantedBookItem/getEnchantments (Lnet/minecraft/world/item/ItemStack;)Lnet/minecraft/nbt/ListTag; +MD: net/minecraft/world/item/EnchantedBookItem/m_5812_ (Lnet/minecraft/world/item/ItemStack;)Z net/minecraft/world/item/EnchantedBookItem/isFoil (Lnet/minecraft/world/item/ItemStack;)Z +MD: net/minecraft/world/item/EnchantedBookItem/m_7373_ (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/level/Level;Ljava/util/List;Lnet/minecraft/world/item/TooltipFlag;)V net/minecraft/world/item/EnchantedBookItem/appendHoverText (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/level/Level;Ljava/util/List;Lnet/minecraft/world/item/TooltipFlag;)V +MD: net/minecraft/world/item/EnchantedBookItem/m_8120_ (Lnet/minecraft/world/item/ItemStack;)Z net/minecraft/world/item/EnchantedBookItem/isEnchantable (Lnet/minecraft/world/item/ItemStack;)Z +MD: net/minecraft/world/item/EnchantedGoldenAppleItem/ (Lnet/minecraft/world/item/Item$Properties;)V net/minecraft/world/item/EnchantedGoldenAppleItem/ (Lnet/minecraft/world/item/Item$Properties;)V +MD: net/minecraft/world/item/EnchantedGoldenAppleItem/m_5812_ (Lnet/minecraft/world/item/ItemStack;)Z net/minecraft/world/item/EnchantedGoldenAppleItem/isFoil (Lnet/minecraft/world/item/ItemStack;)Z +MD: net/minecraft/world/item/EndCrystalItem/ (Lnet/minecraft/world/item/Item$Properties;)V net/minecraft/world/item/EndCrystalItem/ (Lnet/minecraft/world/item/Item$Properties;)V +MD: net/minecraft/world/item/EndCrystalItem/m_5812_ (Lnet/minecraft/world/item/ItemStack;)Z net/minecraft/world/item/EndCrystalItem/isFoil (Lnet/minecraft/world/item/ItemStack;)Z +MD: net/minecraft/world/item/EndCrystalItem/m_6225_ (Lnet/minecraft/world/item/context/UseOnContext;)Lnet/minecraft/world/InteractionResult; net/minecraft/world/item/EndCrystalItem/useOn (Lnet/minecraft/world/item/context/UseOnContext;)Lnet/minecraft/world/InteractionResult; +MD: net/minecraft/world/item/EnderEyeItem/ (Lnet/minecraft/world/item/Item$Properties;)V net/minecraft/world/item/EnderEyeItem/ (Lnet/minecraft/world/item/Item$Properties;)V +MD: net/minecraft/world/item/EnderEyeItem/m_6225_ (Lnet/minecraft/world/item/context/UseOnContext;)Lnet/minecraft/world/InteractionResult; net/minecraft/world/item/EnderEyeItem/useOn (Lnet/minecraft/world/item/context/UseOnContext;)Lnet/minecraft/world/InteractionResult; +MD: net/minecraft/world/item/EnderEyeItem/m_7203_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;)Lnet/minecraft/world/InteractionResultHolder; net/minecraft/world/item/EnderEyeItem/use (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;)Lnet/minecraft/world/InteractionResultHolder; +MD: net/minecraft/world/item/EnderpearlItem/ (Lnet/minecraft/world/item/Item$Properties;)V net/minecraft/world/item/EnderpearlItem/ (Lnet/minecraft/world/item/Item$Properties;)V +MD: net/minecraft/world/item/EnderpearlItem/m_7203_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;)Lnet/minecraft/world/InteractionResultHolder; net/minecraft/world/item/EnderpearlItem/use (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;)Lnet/minecraft/world/InteractionResultHolder; +MD: net/minecraft/world/item/Equipable/m_150681_ ()Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/item/Equipable/getEquipSound ()Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/item/Equipable/m_269088_ (Lnet/minecraft/world/item/ItemStack;)Lnet/minecraft/world/item/Equipable; net/minecraft/world/item/Equipable/get (Lnet/minecraft/world/item/ItemStack;)Lnet/minecraft/world/item/Equipable; +MD: net/minecraft/world/item/Equipable/m_269277_ (Lnet/minecraft/world/item/Item;Lnet/minecraft/world/level/Level;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;)Lnet/minecraft/world/InteractionResultHolder; net/minecraft/world/item/Equipable/swapWithEquipmentSlot (Lnet/minecraft/world/item/Item;Lnet/minecraft/world/level/Level;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;)Lnet/minecraft/world/InteractionResultHolder; +MD: net/minecraft/world/item/Equipable/m_40402_ ()Lnet/minecraft/world/entity/EquipmentSlot; net/minecraft/world/item/Equipable/getEquipmentSlot ()Lnet/minecraft/world/entity/EquipmentSlot; +MD: net/minecraft/world/item/ExperienceBottleItem/ (Lnet/minecraft/world/item/Item$Properties;)V net/minecraft/world/item/ExperienceBottleItem/ (Lnet/minecraft/world/item/Item$Properties;)V +MD: net/minecraft/world/item/ExperienceBottleItem/m_5812_ (Lnet/minecraft/world/item/ItemStack;)Z net/minecraft/world/item/ExperienceBottleItem/isFoil (Lnet/minecraft/world/item/ItemStack;)Z +MD: net/minecraft/world/item/ExperienceBottleItem/m_7203_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;)Lnet/minecraft/world/InteractionResultHolder; net/minecraft/world/item/ExperienceBottleItem/use (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;)Lnet/minecraft/world/InteractionResultHolder; +MD: net/minecraft/world/item/FireChargeItem/ (Lnet/minecraft/world/item/Item$Properties;)V net/minecraft/world/item/FireChargeItem/ (Lnet/minecraft/world/item/Item$Properties;)V +MD: net/minecraft/world/item/FireChargeItem/m_41205_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;)V net/minecraft/world/item/FireChargeItem/playSound (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/world/item/FireChargeItem/m_6225_ (Lnet/minecraft/world/item/context/UseOnContext;)Lnet/minecraft/world/InteractionResult; net/minecraft/world/item/FireChargeItem/useOn (Lnet/minecraft/world/item/context/UseOnContext;)Lnet/minecraft/world/InteractionResult; +MD: net/minecraft/world/item/FireworkRocketItem/ ()V net/minecraft/world/item/FireworkRocketItem/ ()V +MD: net/minecraft/world/item/FireworkRocketItem/ (Lnet/minecraft/world/item/Item$Properties;)V net/minecraft/world/item/FireworkRocketItem/ (Lnet/minecraft/world/item/Item$Properties;)V +MD: net/minecraft/world/item/FireworkRocketItem/m_257843_ (Lnet/minecraft/world/item/ItemStack;B)V net/minecraft/world/item/FireworkRocketItem/setDuration (Lnet/minecraft/world/item/ItemStack;B)V +MD: net/minecraft/world/item/FireworkRocketItem/m_6225_ (Lnet/minecraft/world/item/context/UseOnContext;)Lnet/minecraft/world/InteractionResult; net/minecraft/world/item/FireworkRocketItem/useOn (Lnet/minecraft/world/item/context/UseOnContext;)Lnet/minecraft/world/InteractionResult; +MD: net/minecraft/world/item/FireworkRocketItem/m_7203_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;)Lnet/minecraft/world/InteractionResultHolder; net/minecraft/world/item/FireworkRocketItem/use (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;)Lnet/minecraft/world/InteractionResultHolder; +MD: net/minecraft/world/item/FireworkRocketItem/m_7373_ (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/level/Level;Ljava/util/List;Lnet/minecraft/world/item/TooltipFlag;)V net/minecraft/world/item/FireworkRocketItem/appendHoverText (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/level/Level;Ljava/util/List;Lnet/minecraft/world/item/TooltipFlag;)V +MD: net/minecraft/world/item/FireworkRocketItem/m_7968_ ()Lnet/minecraft/world/item/ItemStack; net/minecraft/world/item/FireworkRocketItem/getDefaultInstance ()Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/item/FireworkRocketItem$Shape/ ()V net/minecraft/world/item/FireworkRocketItem$Shape/ ()V +MD: net/minecraft/world/item/FireworkRocketItem$Shape/ (Ljava/lang/String;IILjava/lang/String;)V net/minecraft/world/item/FireworkRocketItem$Shape/ (Ljava/lang/String;IILjava/lang/String;)V +MD: net/minecraft/world/item/FireworkRocketItem$Shape/m_150842_ ()[Lnet/minecraft/world/item/FireworkRocketItem$Shape; net/minecraft/world/item/FireworkRocketItem$Shape/$values ()[Lnet/minecraft/world/item/FireworkRocketItem$Shape; +MD: net/minecraft/world/item/FireworkRocketItem$Shape/m_41236_ ()I net/minecraft/world/item/FireworkRocketItem$Shape/getId ()I +MD: net/minecraft/world/item/FireworkRocketItem$Shape/m_41237_ (I)Lnet/minecraft/world/item/FireworkRocketItem$Shape; net/minecraft/world/item/FireworkRocketItem$Shape/byId (I)Lnet/minecraft/world/item/FireworkRocketItem$Shape; +MD: net/minecraft/world/item/FireworkRocketItem$Shape/m_41241_ ()Ljava/lang/String; net/minecraft/world/item/FireworkRocketItem$Shape/getName ()Ljava/lang/String; +MD: net/minecraft/world/item/FireworkRocketItem$Shape/valueOf (Ljava/lang/String;)Lnet/minecraft/world/item/FireworkRocketItem$Shape; net/minecraft/world/item/FireworkRocketItem$Shape/valueOf (Ljava/lang/String;)Lnet/minecraft/world/item/FireworkRocketItem$Shape; +MD: net/minecraft/world/item/FireworkRocketItem$Shape/values ()[Lnet/minecraft/world/item/FireworkRocketItem$Shape; net/minecraft/world/item/FireworkRocketItem$Shape/values ()[Lnet/minecraft/world/item/FireworkRocketItem$Shape; +MD: net/minecraft/world/item/FireworkStarItem/ (Lnet/minecraft/world/item/Item$Properties;)V net/minecraft/world/item/FireworkStarItem/ (Lnet/minecraft/world/item/Item$Properties;)V +MD: net/minecraft/world/item/FireworkStarItem/m_41249_ (I)Lnet/minecraft/network/chat/Component; net/minecraft/world/item/FireworkStarItem/getColorName (I)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/world/item/FireworkStarItem/m_41256_ (Lnet/minecraft/nbt/CompoundTag;Ljava/util/List;)V net/minecraft/world/item/FireworkStarItem/appendHoverText (Lnet/minecraft/nbt/CompoundTag;Ljava/util/List;)V +MD: net/minecraft/world/item/FireworkStarItem/m_41259_ (Lnet/minecraft/network/chat/MutableComponent;[I)Lnet/minecraft/network/chat/Component; net/minecraft/world/item/FireworkStarItem/appendColors (Lnet/minecraft/network/chat/MutableComponent;[I)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/world/item/FireworkStarItem/m_7373_ (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/level/Level;Ljava/util/List;Lnet/minecraft/world/item/TooltipFlag;)V net/minecraft/world/item/FireworkStarItem/appendHoverText (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/level/Level;Ljava/util/List;Lnet/minecraft/world/item/TooltipFlag;)V +MD: net/minecraft/world/item/FishingRodItem/ (Lnet/minecraft/world/item/Item$Properties;)V net/minecraft/world/item/FishingRodItem/ (Lnet/minecraft/world/item/Item$Properties;)V +MD: net/minecraft/world/item/FishingRodItem/m_41286_ (Lnet/minecraft/world/InteractionHand;Lnet/minecraft/world/entity/player/Player;)V net/minecraft/world/item/FishingRodItem/lambda$use$0 (Lnet/minecraft/world/InteractionHand;Lnet/minecraft/world/entity/player/Player;)V +MD: net/minecraft/world/item/FishingRodItem/m_6473_ ()I net/minecraft/world/item/FishingRodItem/getEnchantmentValue ()I +MD: net/minecraft/world/item/FishingRodItem/m_7203_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;)Lnet/minecraft/world/InteractionResultHolder; net/minecraft/world/item/FishingRodItem/use (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;)Lnet/minecraft/world/InteractionResultHolder; +MD: net/minecraft/world/item/FlintAndSteelItem/ (Lnet/minecraft/world/item/Item$Properties;)V net/minecraft/world/item/FlintAndSteelItem/ (Lnet/minecraft/world/item/Item$Properties;)V +MD: net/minecraft/world/item/FlintAndSteelItem/m_41298_ (Lnet/minecraft/world/item/context/UseOnContext;Lnet/minecraft/world/entity/player/Player;)V net/minecraft/world/item/FlintAndSteelItem/lambda$useOn$1 (Lnet/minecraft/world/item/context/UseOnContext;Lnet/minecraft/world/entity/player/Player;)V +MD: net/minecraft/world/item/FlintAndSteelItem/m_41301_ (Lnet/minecraft/world/item/context/UseOnContext;Lnet/minecraft/world/entity/player/Player;)V net/minecraft/world/item/FlintAndSteelItem/lambda$useOn$0 (Lnet/minecraft/world/item/context/UseOnContext;Lnet/minecraft/world/entity/player/Player;)V +MD: net/minecraft/world/item/FlintAndSteelItem/m_6225_ (Lnet/minecraft/world/item/context/UseOnContext;)Lnet/minecraft/world/InteractionResult; net/minecraft/world/item/FlintAndSteelItem/useOn (Lnet/minecraft/world/item/context/UseOnContext;)Lnet/minecraft/world/InteractionResult; +MD: net/minecraft/world/item/FoodOnAStickItem/ (Lnet/minecraft/world/item/Item$Properties;Lnet/minecraft/world/entity/EntityType;I)V net/minecraft/world/item/FoodOnAStickItem/ (Lnet/minecraft/world/item/Item$Properties;Lnet/minecraft/world/entity/EntityType;I)V +MD: net/minecraft/world/item/FoodOnAStickItem/m_41310_ (Lnet/minecraft/world/InteractionHand;Lnet/minecraft/world/entity/player/Player;)V net/minecraft/world/item/FoodOnAStickItem/lambda$use$0 (Lnet/minecraft/world/InteractionHand;Lnet/minecraft/world/entity/player/Player;)V +MD: net/minecraft/world/item/FoodOnAStickItem/m_7203_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;)Lnet/minecraft/world/InteractionResultHolder; net/minecraft/world/item/FoodOnAStickItem/use (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;)Lnet/minecraft/world/InteractionResultHolder; +MD: net/minecraft/world/item/GameMasterBlockItem/ (Lnet/minecraft/world/level/block/Block;Lnet/minecraft/world/item/Item$Properties;)V net/minecraft/world/item/GameMasterBlockItem/ (Lnet/minecraft/world/level/block/Block;Lnet/minecraft/world/item/Item$Properties;)V +MD: net/minecraft/world/item/GameMasterBlockItem/m_5965_ (Lnet/minecraft/world/item/context/BlockPlaceContext;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/item/GameMasterBlockItem/getPlacementState (Lnet/minecraft/world/item/context/BlockPlaceContext;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/item/GlowInkSacItem/ (Lnet/minecraft/world/item/Item$Properties;)V net/minecraft/world/item/GlowInkSacItem/ (Lnet/minecraft/world/item/Item$Properties;)V +MD: net/minecraft/world/item/GlowInkSacItem/m_276787_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/level/block/entity/SignBlockEntity;ZLnet/minecraft/world/entity/player/Player;)Z net/minecraft/world/item/GlowInkSacItem/tryApplyToSign (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/level/block/entity/SignBlockEntity;ZLnet/minecraft/world/entity/player/Player;)Z +MD: net/minecraft/world/item/GlowInkSacItem/m_277194_ (Lnet/minecraft/world/level/block/entity/SignText;)Lnet/minecraft/world/level/block/entity/SignText; net/minecraft/world/item/GlowInkSacItem/lambda$tryApplyToSign$0 (Lnet/minecraft/world/level/block/entity/SignText;)Lnet/minecraft/world/level/block/entity/SignText; +MD: net/minecraft/world/item/HangingEntityItem/ ()V net/minecraft/world/item/HangingEntityItem/ ()V +MD: net/minecraft/world/item/HangingEntityItem/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/item/Item$Properties;)V net/minecraft/world/item/HangingEntityItem/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/item/Item$Properties;)V +MD: net/minecraft/world/item/HangingEntityItem/m_269207_ (Ljava/util/List;Lnet/minecraft/core/Holder;)V net/minecraft/world/item/HangingEntityItem/lambda$appendHoverText$1 (Ljava/util/List;Lnet/minecraft/core/Holder;)V +MD: net/minecraft/world/item/HangingEntityItem/m_269401_ (Ljava/util/List;Lnet/minecraft/resources/ResourceKey;)V net/minecraft/world/item/HangingEntityItem/lambda$appendHoverText$0 (Ljava/util/List;Lnet/minecraft/resources/ResourceKey;)V +MD: net/minecraft/world/item/HangingEntityItem/m_269512_ (Ljava/util/List;)V net/minecraft/world/item/HangingEntityItem/lambda$appendHoverText$2 (Ljava/util/List;)V +MD: net/minecraft/world/item/HangingEntityItem/m_5595_ (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/core/Direction;Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/item/HangingEntityItem/mayPlace (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/core/Direction;Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/item/HangingEntityItem/m_6225_ (Lnet/minecraft/world/item/context/UseOnContext;)Lnet/minecraft/world/InteractionResult; net/minecraft/world/item/HangingEntityItem/useOn (Lnet/minecraft/world/item/context/UseOnContext;)Lnet/minecraft/world/InteractionResult; +MD: net/minecraft/world/item/HangingEntityItem/m_7373_ (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/level/Level;Ljava/util/List;Lnet/minecraft/world/item/TooltipFlag;)V net/minecraft/world/item/HangingEntityItem/appendHoverText (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/level/Level;Ljava/util/List;Lnet/minecraft/world/item/TooltipFlag;)V +MD: net/minecraft/world/item/HangingSignItem/ (Lnet/minecraft/world/level/block/Block;Lnet/minecraft/world/level/block/Block;Lnet/minecraft/world/item/Item$Properties;)V net/minecraft/world/item/HangingSignItem/ (Lnet/minecraft/world/level/block/Block;Lnet/minecraft/world/level/block/Block;Lnet/minecraft/world/item/Item$Properties;)V +MD: net/minecraft/world/item/HangingSignItem/m_246210_ (Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/item/HangingSignItem/canPlace (Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/item/HoeItem/ ()V net/minecraft/world/item/HoeItem/ ()V +MD: net/minecraft/world/item/HoeItem/ (Lnet/minecraft/world/item/Tier;IFLnet/minecraft/world/item/Item$Properties;)V net/minecraft/world/item/HoeItem/ (Lnet/minecraft/world/item/Tier;IFLnet/minecraft/world/item/Item$Properties;)V +MD: net/minecraft/world/item/HoeItem/m_150843_ (Lnet/minecraft/world/item/context/UseOnContext;Lnet/minecraft/world/entity/player/Player;)V net/minecraft/world/item/HoeItem/lambda$useOn$1 (Lnet/minecraft/world/item/context/UseOnContext;Lnet/minecraft/world/entity/player/Player;)V +MD: net/minecraft/world/item/HoeItem/m_150846_ (Lnet/minecraft/world/item/context/UseOnContext;)Z net/minecraft/world/item/HoeItem/lambda$static$0 (Lnet/minecraft/world/item/context/UseOnContext;)Z +MD: net/minecraft/world/item/HoeItem/m_150849_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/ItemLike;)Ljava/util/function/Consumer; net/minecraft/world/item/HoeItem/changeIntoStateAndDropItem (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/ItemLike;)Ljava/util/function/Consumer; +MD: net/minecraft/world/item/HoeItem/m_150856_ (Lnet/minecraft/world/item/context/UseOnContext;)Z net/minecraft/world/item/HoeItem/onlyIfAirAbove (Lnet/minecraft/world/item/context/UseOnContext;)Z +MD: net/minecraft/world/item/HoeItem/m_150858_ (Lnet/minecraft/world/level/block/state/BlockState;)Ljava/util/function/Consumer; net/minecraft/world/item/HoeItem/changeIntoState (Lnet/minecraft/world/level/block/state/BlockState;)Ljava/util/function/Consumer; +MD: net/minecraft/world/item/HoeItem/m_150860_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/item/context/UseOnContext;)V net/minecraft/world/item/HoeItem/lambda$changeIntoState$2 (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/item/context/UseOnContext;)V +MD: net/minecraft/world/item/HoeItem/m_238243_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/ItemLike;Lnet/minecraft/world/item/context/UseOnContext;)V net/minecraft/world/item/HoeItem/lambda$changeIntoStateAndDropItem$3 (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/ItemLike;Lnet/minecraft/world/item/context/UseOnContext;)V +MD: net/minecraft/world/item/HoeItem/m_6225_ (Lnet/minecraft/world/item/context/UseOnContext;)Lnet/minecraft/world/InteractionResult; net/minecraft/world/item/HoeItem/useOn (Lnet/minecraft/world/item/context/UseOnContext;)Lnet/minecraft/world/InteractionResult; +MD: net/minecraft/world/item/HoneyBottleItem/ (Lnet/minecraft/world/item/Item$Properties;)V net/minecraft/world/item/HoneyBottleItem/ (Lnet/minecraft/world/item/Item$Properties;)V +MD: net/minecraft/world/item/HoneyBottleItem/m_5922_ (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/level/Level;Lnet/minecraft/world/entity/LivingEntity;)Lnet/minecraft/world/item/ItemStack; net/minecraft/world/item/HoneyBottleItem/finishUsingItem (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/level/Level;Lnet/minecraft/world/entity/LivingEntity;)Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/item/HoneyBottleItem/m_6023_ ()Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/item/HoneyBottleItem/getDrinkingSound ()Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/item/HoneyBottleItem/m_6061_ ()Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/item/HoneyBottleItem/getEatingSound ()Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/item/HoneyBottleItem/m_6164_ (Lnet/minecraft/world/item/ItemStack;)Lnet/minecraft/world/item/UseAnim; net/minecraft/world/item/HoneyBottleItem/getUseAnimation (Lnet/minecraft/world/item/ItemStack;)Lnet/minecraft/world/item/UseAnim; +MD: net/minecraft/world/item/HoneyBottleItem/m_7203_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;)Lnet/minecraft/world/InteractionResultHolder; net/minecraft/world/item/HoneyBottleItem/use (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;)Lnet/minecraft/world/InteractionResultHolder; +MD: net/minecraft/world/item/HoneyBottleItem/m_8105_ (Lnet/minecraft/world/item/ItemStack;)I net/minecraft/world/item/HoneyBottleItem/getUseDuration (Lnet/minecraft/world/item/ItemStack;)I +MD: net/minecraft/world/item/HoneycombItem/ ()V net/minecraft/world/item/HoneycombItem/ ()V +MD: net/minecraft/world/item/HoneycombItem/ (Lnet/minecraft/world/item/Item$Properties;)V net/minecraft/world/item/HoneycombItem/ (Lnet/minecraft/world/item/Item$Properties;)V +MD: net/minecraft/world/item/HoneycombItem/m_150875_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/item/HoneycombItem/lambda$getWaxed$3 (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/item/HoneycombItem/m_150878_ (Lnet/minecraft/world/level/block/state/BlockState;)Ljava/util/Optional; net/minecraft/world/item/HoneycombItem/getWaxed (Lnet/minecraft/world/level/block/state/BlockState;)Ljava/util/Optional; +MD: net/minecraft/world/item/HoneycombItem/m_150880_ ()Lcom/google/common/collect/BiMap; net/minecraft/world/item/HoneycombItem/lambda$static$1 ()Lcom/google/common/collect/BiMap; +MD: net/minecraft/world/item/HoneycombItem/m_150881_ ()Lcom/google/common/collect/BiMap; net/minecraft/world/item/HoneycombItem/lambda$static$0 ()Lcom/google/common/collect/BiMap; +MD: net/minecraft/world/item/HoneycombItem/m_238247_ (Lnet/minecraft/world/item/context/UseOnContext;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/Level;Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/InteractionResult; net/minecraft/world/item/HoneycombItem/lambda$useOn$2 (Lnet/minecraft/world/item/context/UseOnContext;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/Level;Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/InteractionResult; +MD: net/minecraft/world/item/HoneycombItem/m_276787_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/level/block/entity/SignBlockEntity;ZLnet/minecraft/world/entity/player/Player;)Z net/minecraft/world/item/HoneycombItem/tryApplyToSign (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/level/block/entity/SignBlockEntity;ZLnet/minecraft/world/entity/player/Player;)Z +MD: net/minecraft/world/item/HoneycombItem/m_277072_ (Lnet/minecraft/world/level/block/entity/SignText;Lnet/minecraft/world/entity/player/Player;)Z net/minecraft/world/item/HoneycombItem/canApplyToSign (Lnet/minecraft/world/level/block/entity/SignText;Lnet/minecraft/world/entity/player/Player;)Z +MD: net/minecraft/world/item/HoneycombItem/m_6225_ (Lnet/minecraft/world/item/context/UseOnContext;)Lnet/minecraft/world/InteractionResult; net/minecraft/world/item/HoneycombItem/useOn (Lnet/minecraft/world/item/context/UseOnContext;)Lnet/minecraft/world/InteractionResult; +MD: net/minecraft/world/item/HorseArmorItem/ (ILjava/lang/String;Lnet/minecraft/world/item/Item$Properties;)V net/minecraft/world/item/HorseArmorItem/ (ILjava/lang/String;Lnet/minecraft/world/item/Item$Properties;)V +MD: net/minecraft/world/item/HorseArmorItem/m_41367_ ()Lnet/minecraft/resources/ResourceLocation; net/minecraft/world/item/HorseArmorItem/getTexture ()Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/world/item/HorseArmorItem/m_41368_ ()I net/minecraft/world/item/HorseArmorItem/getProtection ()I +MD: net/minecraft/world/item/InkSacItem/ (Lnet/minecraft/world/item/Item$Properties;)V net/minecraft/world/item/InkSacItem/ (Lnet/minecraft/world/item/Item$Properties;)V +MD: net/minecraft/world/item/InkSacItem/m_276787_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/level/block/entity/SignBlockEntity;ZLnet/minecraft/world/entity/player/Player;)Z net/minecraft/world/item/InkSacItem/tryApplyToSign (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/level/block/entity/SignBlockEntity;ZLnet/minecraft/world/entity/player/Player;)Z +MD: net/minecraft/world/item/InkSacItem/m_277089_ (Lnet/minecraft/world/level/block/entity/SignText;)Lnet/minecraft/world/level/block/entity/SignText; net/minecraft/world/item/InkSacItem/lambda$tryApplyToSign$0 (Lnet/minecraft/world/level/block/entity/SignText;)Lnet/minecraft/world/level/block/entity/SignText; +MD: net/minecraft/world/item/Instrument/ ()V net/minecraft/world/item/Instrument/ ()V +MD: net/minecraft/world/item/Instrument/ (Lnet/minecraft/core/Holder;IF)V net/minecraft/world/item/Instrument/ (Lnet/minecraft/core/Holder;IF)V +MD: net/minecraft/world/item/Instrument/equals (Ljava/lang/Object;)Z net/minecraft/world/item/Instrument/equals (Ljava/lang/Object;)Z +MD: net/minecraft/world/item/Instrument/f_220079_ ()Lnet/minecraft/core/Holder; net/minecraft/world/item/Instrument/soundEvent ()Lnet/minecraft/core/Holder; +MD: net/minecraft/world/item/Instrument/f_220080_ ()I net/minecraft/world/item/Instrument/useDuration ()I +MD: net/minecraft/world/item/Instrument/f_220081_ ()F net/minecraft/world/item/Instrument/range ()F +MD: net/minecraft/world/item/Instrument/hashCode ()I net/minecraft/world/item/Instrument/hashCode ()I +MD: net/minecraft/world/item/Instrument/m_263163_ (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/world/item/Instrument/lambda$static$0 (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/world/item/Instrument/toString ()Ljava/lang/String; net/minecraft/world/item/Instrument/toString ()Ljava/lang/String; +MD: net/minecraft/world/item/InstrumentItem/ (Lnet/minecraft/world/item/Item$Properties;Lnet/minecraft/tags/TagKey;)V net/minecraft/world/item/InstrumentItem/ (Lnet/minecraft/world/item/Item$Properties;Lnet/minecraft/tags/TagKey;)V +MD: net/minecraft/world/item/InstrumentItem/m_220101_ (Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/HolderSet$Named;)Ljava/util/Optional; net/minecraft/world/item/InstrumentItem/lambda$setRandom$0 (Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/HolderSet$Named;)Ljava/util/Optional; +MD: net/minecraft/world/item/InstrumentItem/m_220107_ (Lnet/minecraft/world/item/Item;Lnet/minecraft/core/Holder;)Lnet/minecraft/world/item/ItemStack; net/minecraft/world/item/InstrumentItem/create (Lnet/minecraft/world/item/Item;Lnet/minecraft/core/Holder;)Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/item/InstrumentItem/m_220110_ (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/tags/TagKey;Lnet/minecraft/util/RandomSource;)V net/minecraft/world/item/InstrumentItem/setRandom (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/tags/TagKey;Lnet/minecraft/util/RandomSource;)V +MD: net/minecraft/world/item/InstrumentItem/m_220119_ (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/core/Holder;)V net/minecraft/world/item/InstrumentItem/setSoundVariantId (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/core/Holder;)V +MD: net/minecraft/world/item/InstrumentItem/m_220126_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/item/Instrument;)V net/minecraft/world/item/InstrumentItem/play (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/item/Instrument;)V +MD: net/minecraft/world/item/InstrumentItem/m_220134_ (Lnet/minecraft/world/item/ItemStack;)Ljava/util/Optional; net/minecraft/world/item/InstrumentItem/getInstrument (Lnet/minecraft/world/item/ItemStack;)Ljava/util/Optional; +MD: net/minecraft/world/item/InstrumentItem/m_220136_ ()Ljava/lang/IllegalStateException; net/minecraft/world/item/InstrumentItem/lambda$setSoundVariantId$2 ()Ljava/lang/IllegalStateException; +MD: net/minecraft/world/item/InstrumentItem/m_244989_ (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/core/Holder;)V net/minecraft/world/item/InstrumentItem/lambda$setRandom$1 (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/core/Holder;)V +MD: net/minecraft/world/item/InstrumentItem/m_244990_ (Lnet/minecraft/core/Holder;)Ljava/lang/Integer; net/minecraft/world/item/InstrumentItem/lambda$getUseDuration$3 (Lnet/minecraft/core/Holder;)Ljava/lang/Integer; +MD: net/minecraft/world/item/InstrumentItem/m_6164_ (Lnet/minecraft/world/item/ItemStack;)Lnet/minecraft/world/item/UseAnim; net/minecraft/world/item/InstrumentItem/getUseAnimation (Lnet/minecraft/world/item/ItemStack;)Lnet/minecraft/world/item/UseAnim; +MD: net/minecraft/world/item/InstrumentItem/m_7203_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;)Lnet/minecraft/world/InteractionResultHolder; net/minecraft/world/item/InstrumentItem/use (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;)Lnet/minecraft/world/InteractionResultHolder; +MD: net/minecraft/world/item/InstrumentItem/m_7373_ (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/level/Level;Ljava/util/List;Lnet/minecraft/world/item/TooltipFlag;)V net/minecraft/world/item/InstrumentItem/appendHoverText (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/level/Level;Ljava/util/List;Lnet/minecraft/world/item/TooltipFlag;)V +MD: net/minecraft/world/item/InstrumentItem/m_8105_ (Lnet/minecraft/world/item/ItemStack;)I net/minecraft/world/item/InstrumentItem/getUseDuration (Lnet/minecraft/world/item/ItemStack;)I +MD: net/minecraft/world/item/Instruments/ ()V net/minecraft/world/item/Instruments/ ()V +MD: net/minecraft/world/item/Instruments/m_220148_ (Lnet/minecraft/core/Registry;)Lnet/minecraft/world/item/Instrument; net/minecraft/world/item/Instruments/bootstrap (Lnet/minecraft/core/Registry;)Lnet/minecraft/world/item/Instrument; +MD: net/minecraft/world/item/Instruments/m_220150_ (Ljava/lang/String;)Lnet/minecraft/resources/ResourceKey; net/minecraft/world/item/Instruments/create (Ljava/lang/String;)Lnet/minecraft/resources/ResourceKey; +MD: net/minecraft/world/item/Item/ ()V net/minecraft/world/item/Item/ ()V +MD: net/minecraft/world/item/Item/ (Lnet/minecraft/world/item/Item$Properties;)V net/minecraft/world/item/Item/ (Lnet/minecraft/world/item/Item$Properties;)V +MD: net/minecraft/world/item/Item/m_142023_ (Lnet/minecraft/world/entity/item/ItemEntity;)V net/minecraft/world/item/Item/onDestroyed (Lnet/minecraft/world/entity/item/ItemEntity;)V +MD: net/minecraft/world/item/Item/m_142095_ ()Z net/minecraft/world/item/Item/canFitInsideContainerItems ()Z +MD: net/minecraft/world/item/Item/m_142158_ (Lnet/minecraft/world/item/ItemStack;)I net/minecraft/world/item/Item/getBarWidth (Lnet/minecraft/world/item/ItemStack;)I +MD: net/minecraft/world/item/Item/m_142159_ (Lnet/minecraft/world/item/ItemStack;)I net/minecraft/world/item/Item/getBarColor (Lnet/minecraft/world/item/ItemStack;)I +MD: net/minecraft/world/item/Item/m_142207_ (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/inventory/Slot;Lnet/minecraft/world/inventory/ClickAction;Lnet/minecraft/world/entity/player/Player;)Z net/minecraft/world/item/Item/overrideStackedOnOther (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/inventory/Slot;Lnet/minecraft/world/inventory/ClickAction;Lnet/minecraft/world/entity/player/Player;)Z +MD: net/minecraft/world/item/Item/m_142305_ (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/inventory/Slot;Lnet/minecraft/world/inventory/ClickAction;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/entity/SlotAccess;)Z net/minecraft/world/item/Item/overrideOtherStackedOnMe (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/inventory/Slot;Lnet/minecraft/world/inventory/ClickAction;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/entity/SlotAccess;)Z +MD: net/minecraft/world/item/Item/m_142312_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/item/Item/verifyTagAfterLoad (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/item/Item/m_142422_ (Lnet/minecraft/world/item/ItemStack;)Ljava/util/Optional; net/minecraft/world/item/Item/getTooltipImage (Lnet/minecraft/world/item/ItemStack;)Ljava/util/Optional; +MD: net/minecraft/world/item/Item/m_142522_ (Lnet/minecraft/world/item/ItemStack;)Z net/minecraft/world/item/Item/isBarVisible (Lnet/minecraft/world/item/ItemStack;)Z +MD: net/minecraft/world/item/Item/m_204114_ ()Lnet/minecraft/core/Holder$Reference; net/minecraft/world/item/Item/builtInRegistryHolder ()Lnet/minecraft/core/Holder$Reference; +MD: net/minecraft/world/item/Item/m_245183_ ()Lnet/minecraft/world/flag/FeatureFlagSet; net/minecraft/world/item/Item/requiredFeatures ()Lnet/minecraft/world/flag/FeatureFlagSet; +MD: net/minecraft/world/item/Item/m_41386_ (Lnet/minecraft/world/damagesource/DamageSource;)Z net/minecraft/world/item/Item/canBeHurtBy (Lnet/minecraft/world/damagesource/DamageSource;)Z +MD: net/minecraft/world/item/Item/m_41393_ (Lnet/minecraft/world/item/Item;)I net/minecraft/world/item/Item/getId (Lnet/minecraft/world/item/Item;)I +MD: net/minecraft/world/item/Item/m_41435_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/level/ClipContext$Fluid;)Lnet/minecraft/world/phys/BlockHitResult; net/minecraft/world/item/Item/getPlayerPOVHitResult (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/level/ClipContext$Fluid;)Lnet/minecraft/world/phys/BlockHitResult; +MD: net/minecraft/world/item/Item/m_41439_ (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/item/Item; net/minecraft/world/item/Item/byBlock (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/item/Item; +MD: net/minecraft/world/item/Item/m_41445_ (I)Lnet/minecraft/world/item/Item; net/minecraft/world/item/Item/byId (I)Lnet/minecraft/world/item/Item; +MD: net/minecraft/world/item/Item/m_41459_ ()I net/minecraft/world/item/Item/getMaxStackSize ()I +MD: net/minecraft/world/item/Item/m_41460_ (Lnet/minecraft/world/item/ItemStack;)Lnet/minecraft/world/item/Rarity; net/minecraft/world/item/Item/getRarity (Lnet/minecraft/world/item/ItemStack;)Lnet/minecraft/world/item/Rarity; +MD: net/minecraft/world/item/Item/m_41462_ ()I net/minecraft/world/item/Item/getMaxDamage ()I +MD: net/minecraft/world/item/Item/m_41463_ (Lnet/minecraft/world/item/ItemStack;)Z net/minecraft/world/item/Item/useOnRelease (Lnet/minecraft/world/item/ItemStack;)Z +MD: net/minecraft/world/item/Item/m_41465_ ()Z net/minecraft/world/item/Item/canBeDepleted ()Z +MD: net/minecraft/world/item/Item/m_41466_ ()Lnet/minecraft/network/chat/Component; net/minecraft/world/item/Item/getDescription ()Lnet/minecraft/network/chat/Component; +MD: net/minecraft/world/item/Item/m_41467_ ()Ljava/lang/String; net/minecraft/world/item/Item/getOrCreateDescriptionId ()Ljava/lang/String; +MD: net/minecraft/world/item/Item/m_41468_ ()Z net/minecraft/world/item/Item/shouldOverrideMultiplayerNbt ()Z +MD: net/minecraft/world/item/Item/m_41469_ ()Lnet/minecraft/world/item/Item; net/minecraft/world/item/Item/getCraftingRemainingItem ()Lnet/minecraft/world/item/Item; +MD: net/minecraft/world/item/Item/m_41470_ ()Z net/minecraft/world/item/Item/hasCraftingRemainingItem ()Z +MD: net/minecraft/world/item/Item/m_41472_ ()Z net/minecraft/world/item/Item/isEdible ()Z +MD: net/minecraft/world/item/Item/m_41473_ ()Lnet/minecraft/world/food/FoodProperties; net/minecraft/world/item/Item/getFoodProperties ()Lnet/minecraft/world/food/FoodProperties; +MD: net/minecraft/world/item/Item/m_41475_ ()Z net/minecraft/world/item/Item/isFireResistant ()Z +MD: net/minecraft/world/item/Item/m_5456_ ()Lnet/minecraft/world/item/Item; net/minecraft/world/item/Item/asItem ()Lnet/minecraft/world/item/Item; +MD: net/minecraft/world/item/Item/m_5524_ ()Ljava/lang/String; net/minecraft/world/item/Item/getDescriptionId ()Ljava/lang/String; +MD: net/minecraft/world/item/Item/m_5551_ (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/level/Level;Lnet/minecraft/world/entity/LivingEntity;I)V net/minecraft/world/item/Item/releaseUsing (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/level/Level;Lnet/minecraft/world/entity/LivingEntity;I)V +MD: net/minecraft/world/item/Item/m_5671_ (Lnet/minecraft/world/item/ItemStack;)Ljava/lang/String; net/minecraft/world/item/Item/getDescriptionId (Lnet/minecraft/world/item/ItemStack;)Ljava/lang/String; +MD: net/minecraft/world/item/Item/m_5812_ (Lnet/minecraft/world/item/ItemStack;)Z net/minecraft/world/item/Item/isFoil (Lnet/minecraft/world/item/ItemStack;)Z +MD: net/minecraft/world/item/Item/m_5922_ (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/level/Level;Lnet/minecraft/world/entity/LivingEntity;)Lnet/minecraft/world/item/ItemStack; net/minecraft/world/item/Item/finishUsingItem (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/level/Level;Lnet/minecraft/world/entity/LivingEntity;)Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/item/Item/m_5929_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/item/ItemStack;I)V net/minecraft/world/item/Item/onUseTick (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/item/ItemStack;I)V +MD: net/minecraft/world/item/Item/m_6023_ ()Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/item/Item/getDrinkingSound ()Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/item/Item/m_6061_ ()Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/item/Item/getEatingSound ()Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/item/Item/m_6164_ (Lnet/minecraft/world/item/ItemStack;)Lnet/minecraft/world/item/UseAnim; net/minecraft/world/item/Item/getUseAnimation (Lnet/minecraft/world/item/ItemStack;)Lnet/minecraft/world/item/UseAnim; +MD: net/minecraft/world/item/Item/m_6225_ (Lnet/minecraft/world/item/context/UseOnContext;)Lnet/minecraft/world/InteractionResult; net/minecraft/world/item/Item/useOn (Lnet/minecraft/world/item/context/UseOnContext;)Lnet/minecraft/world/InteractionResult; +MD: net/minecraft/world/item/Item/m_6473_ ()I net/minecraft/world/item/Item/getEnchantmentValue ()I +MD: net/minecraft/world/item/Item/m_6777_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/player/Player;)Z net/minecraft/world/item/Item/canAttackBlock (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/player/Player;)Z +MD: net/minecraft/world/item/Item/m_6813_ (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/level/Level;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/LivingEntity;)Z net/minecraft/world/item/Item/mineBlock (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/level/Level;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/LivingEntity;)Z +MD: net/minecraft/world/item/Item/m_6832_ (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/item/ItemStack;)Z net/minecraft/world/item/Item/isValidRepairItem (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/item/ItemStack;)Z +MD: net/minecraft/world/item/Item/m_6880_ (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/InteractionHand;)Lnet/minecraft/world/InteractionResult; net/minecraft/world/item/Item/interactLivingEntity (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/InteractionHand;)Lnet/minecraft/world/InteractionResult; +MD: net/minecraft/world/item/Item/m_6883_ (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/level/Level;Lnet/minecraft/world/entity/Entity;IZ)V net/minecraft/world/item/Item/inventoryTick (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/level/Level;Lnet/minecraft/world/entity/Entity;IZ)V +MD: net/minecraft/world/item/Item/m_7167_ (Lnet/minecraft/world/entity/EquipmentSlot;)Lcom/google/common/collect/Multimap; net/minecraft/world/item/Item/getDefaultAttributeModifiers (Lnet/minecraft/world/entity/EquipmentSlot;)Lcom/google/common/collect/Multimap; +MD: net/minecraft/world/item/Item/m_7203_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;)Lnet/minecraft/world/InteractionResultHolder; net/minecraft/world/item/Item/use (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;)Lnet/minecraft/world/InteractionResultHolder; +MD: net/minecraft/world/item/Item/m_7373_ (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/level/Level;Ljava/util/List;Lnet/minecraft/world/item/TooltipFlag;)V net/minecraft/world/item/Item/appendHoverText (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/level/Level;Ljava/util/List;Lnet/minecraft/world/item/TooltipFlag;)V +MD: net/minecraft/world/item/Item/m_7579_ (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/entity/LivingEntity;)Z net/minecraft/world/item/Item/hurtEnemy (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/entity/LivingEntity;)Z +MD: net/minecraft/world/item/Item/m_7626_ (Lnet/minecraft/world/item/ItemStack;)Lnet/minecraft/network/chat/Component; net/minecraft/world/item/Item/getName (Lnet/minecraft/world/item/ItemStack;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/world/item/Item/m_7807_ ()Z net/minecraft/world/item/Item/isComplex ()Z +MD: net/minecraft/world/item/Item/m_7836_ (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/level/Level;Lnet/minecraft/world/entity/player/Player;)V net/minecraft/world/item/Item/onCraftedBy (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/level/Level;Lnet/minecraft/world/entity/player/Player;)V +MD: net/minecraft/world/item/Item/m_7968_ ()Lnet/minecraft/world/item/ItemStack; net/minecraft/world/item/Item/getDefaultInstance ()Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/item/Item/m_8096_ (Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/world/item/Item/isCorrectToolForDrops (Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/world/item/Item/m_8102_ (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/level/block/state/BlockState;)F net/minecraft/world/item/Item/getDestroySpeed (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/level/block/state/BlockState;)F +MD: net/minecraft/world/item/Item/m_8105_ (Lnet/minecraft/world/item/ItemStack;)I net/minecraft/world/item/Item/getUseDuration (Lnet/minecraft/world/item/ItemStack;)I +MD: net/minecraft/world/item/Item/m_8120_ (Lnet/minecraft/world/item/ItemStack;)Z net/minecraft/world/item/Item/isEnchantable (Lnet/minecraft/world/item/ItemStack;)Z +MD: net/minecraft/world/item/Item/toString ()Ljava/lang/String; net/minecraft/world/item/Item/toString ()Ljava/lang/String; +MD: net/minecraft/world/item/Item$1/ ()V net/minecraft/world/item/Item$1/ ()V +MD: net/minecraft/world/item/Item$Properties/ ()V net/minecraft/world/item/Item$Properties/ ()V +MD: net/minecraft/world/item/Item$Properties/m_246768_ ([Lnet/minecraft/world/flag/FeatureFlag;)Lnet/minecraft/world/item/Item$Properties; net/minecraft/world/item/Item$Properties/requiredFeatures ([Lnet/minecraft/world/flag/FeatureFlag;)Lnet/minecraft/world/item/Item$Properties; +MD: net/minecraft/world/item/Item$Properties/m_41486_ ()Lnet/minecraft/world/item/Item$Properties; net/minecraft/world/item/Item$Properties/fireResistant ()Lnet/minecraft/world/item/Item$Properties; +MD: net/minecraft/world/item/Item$Properties/m_41487_ (I)Lnet/minecraft/world/item/Item$Properties; net/minecraft/world/item/Item$Properties/stacksTo (I)Lnet/minecraft/world/item/Item$Properties; +MD: net/minecraft/world/item/Item$Properties/m_41489_ (Lnet/minecraft/world/food/FoodProperties;)Lnet/minecraft/world/item/Item$Properties; net/minecraft/world/item/Item$Properties/food (Lnet/minecraft/world/food/FoodProperties;)Lnet/minecraft/world/item/Item$Properties; +MD: net/minecraft/world/item/Item$Properties/m_41495_ (Lnet/minecraft/world/item/Item;)Lnet/minecraft/world/item/Item$Properties; net/minecraft/world/item/Item$Properties/craftRemainder (Lnet/minecraft/world/item/Item;)Lnet/minecraft/world/item/Item$Properties; +MD: net/minecraft/world/item/Item$Properties/m_41497_ (Lnet/minecraft/world/item/Rarity;)Lnet/minecraft/world/item/Item$Properties; net/minecraft/world/item/Item$Properties/rarity (Lnet/minecraft/world/item/Rarity;)Lnet/minecraft/world/item/Item$Properties; +MD: net/minecraft/world/item/Item$Properties/m_41499_ (I)Lnet/minecraft/world/item/Item$Properties; net/minecraft/world/item/Item$Properties/defaultDurability (I)Lnet/minecraft/world/item/Item$Properties; +MD: net/minecraft/world/item/Item$Properties/m_41503_ (I)Lnet/minecraft/world/item/Item$Properties; net/minecraft/world/item/Item$Properties/durability (I)Lnet/minecraft/world/item/Item$Properties; +MD: net/minecraft/world/item/ItemCooldowns/ ()V net/minecraft/world/item/ItemCooldowns/ ()V +MD: net/minecraft/world/item/ItemCooldowns/m_41518_ ()V net/minecraft/world/item/ItemCooldowns/tick ()V +MD: net/minecraft/world/item/ItemCooldowns/m_41519_ (Lnet/minecraft/world/item/Item;)Z net/minecraft/world/item/ItemCooldowns/isOnCooldown (Lnet/minecraft/world/item/Item;)Z +MD: net/minecraft/world/item/ItemCooldowns/m_41521_ (Lnet/minecraft/world/item/Item;F)F net/minecraft/world/item/ItemCooldowns/getCooldownPercent (Lnet/minecraft/world/item/Item;F)F +MD: net/minecraft/world/item/ItemCooldowns/m_41524_ (Lnet/minecraft/world/item/Item;I)V net/minecraft/world/item/ItemCooldowns/addCooldown (Lnet/minecraft/world/item/Item;I)V +MD: net/minecraft/world/item/ItemCooldowns/m_41527_ (Lnet/minecraft/world/item/Item;)V net/minecraft/world/item/ItemCooldowns/removeCooldown (Lnet/minecraft/world/item/Item;)V +MD: net/minecraft/world/item/ItemCooldowns/m_6899_ (Lnet/minecraft/world/item/Item;I)V net/minecraft/world/item/ItemCooldowns/onCooldownStarted (Lnet/minecraft/world/item/Item;I)V +MD: net/minecraft/world/item/ItemCooldowns/m_7432_ (Lnet/minecraft/world/item/Item;)V net/minecraft/world/item/ItemCooldowns/onCooldownEnded (Lnet/minecraft/world/item/Item;)V +MD: net/minecraft/world/item/ItemCooldowns$CooldownInstance/ (II)V net/minecraft/world/item/ItemCooldowns$CooldownInstance/ (II)V +MD: net/minecraft/world/item/ItemDisplayContext/ ()V net/minecraft/world/item/ItemDisplayContext/ ()V +MD: net/minecraft/world/item/ItemDisplayContext/ (Ljava/lang/String;IILjava/lang/String;)V net/minecraft/world/item/ItemDisplayContext/ (Ljava/lang/String;IILjava/lang/String;)V +MD: net/minecraft/world/item/ItemDisplayContext/m_269069_ ()Z net/minecraft/world/item/ItemDisplayContext/firstPerson ()Z +MD: net/minecraft/world/item/ItemDisplayContext/m_269462_ ()B net/minecraft/world/item/ItemDisplayContext/getId ()B +MD: net/minecraft/world/item/ItemDisplayContext/m_269476_ ()[Lnet/minecraft/world/item/ItemDisplayContext; net/minecraft/world/item/ItemDisplayContext/$values ()[Lnet/minecraft/world/item/ItemDisplayContext; +MD: net/minecraft/world/item/ItemDisplayContext/m_7912_ ()Ljava/lang/String; net/minecraft/world/item/ItemDisplayContext/getSerializedName ()Ljava/lang/String; +MD: net/minecraft/world/item/ItemDisplayContext/valueOf (Ljava/lang/String;)Lnet/minecraft/world/item/ItemDisplayContext; net/minecraft/world/item/ItemDisplayContext/valueOf (Ljava/lang/String;)Lnet/minecraft/world/item/ItemDisplayContext; +MD: net/minecraft/world/item/ItemDisplayContext/values ()[Lnet/minecraft/world/item/ItemDisplayContext; net/minecraft/world/item/ItemDisplayContext/values ()[Lnet/minecraft/world/item/ItemDisplayContext; +MD: net/minecraft/world/item/ItemFrameItem/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/item/Item$Properties;)V net/minecraft/world/item/ItemFrameItem/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/item/Item$Properties;)V +MD: net/minecraft/world/item/ItemFrameItem/m_5595_ (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/core/Direction;Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/item/ItemFrameItem/mayPlace (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/core/Direction;Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/item/ItemNameBlockItem/ (Lnet/minecraft/world/level/block/Block;Lnet/minecraft/world/item/Item$Properties;)V net/minecraft/world/item/ItemNameBlockItem/ (Lnet/minecraft/world/level/block/Block;Lnet/minecraft/world/item/Item$Properties;)V +MD: net/minecraft/world/item/ItemNameBlockItem/m_5524_ ()Ljava/lang/String; net/minecraft/world/item/ItemNameBlockItem/getDescriptionId ()Ljava/lang/String; +MD: net/minecraft/world/item/ItemStack/ ()V net/minecraft/world/item/ItemStack/ ()V +MD: net/minecraft/world/item/ItemStack/ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/item/ItemStack/ (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/item/ItemStack/ (Lnet/minecraft/core/Holder;I)V net/minecraft/world/item/ItemStack/ (Lnet/minecraft/core/Holder;I)V +MD: net/minecraft/world/item/ItemStack/ (Lnet/minecraft/core/Holder;)V net/minecraft/world/item/ItemStack/ (Lnet/minecraft/core/Holder;)V +MD: net/minecraft/world/item/ItemStack/ (Lnet/minecraft/world/level/ItemLike;)V net/minecraft/world/item/ItemStack/ (Lnet/minecraft/world/level/ItemLike;)V +MD: net/minecraft/world/item/ItemStack/ (Ljava/lang/Void;)V net/minecraft/world/item/ItemStack/ (Ljava/lang/Void;)V +MD: net/minecraft/world/item/ItemStack/ (Lnet/minecraft/world/level/ItemLike;I)V net/minecraft/world/item/ItemStack/ (Lnet/minecraft/world/level/ItemLike;I)V +MD: net/minecraft/world/item/ItemStack/ (Lnet/minecraft/world/level/ItemLike;ILjava/util/Optional;)V net/minecraft/world/item/ItemStack/ (Lnet/minecraft/world/level/ItemLike;ILjava/util/Optional;)V +MD: net/minecraft/world/item/ItemStack/m_150921_ ()Ljava/util/Optional; net/minecraft/world/item/ItemStack/getTooltipImage ()Ljava/util/Optional; +MD: net/minecraft/world/item/ItemStack/m_150924_ (Lnet/minecraft/world/entity/item/ItemEntity;)V net/minecraft/world/item/ItemStack/onDestroyed (Lnet/minecraft/world/entity/item/ItemEntity;)V +MD: net/minecraft/world/item/ItemStack/m_150926_ (Lnet/minecraft/world/inventory/Slot;Lnet/minecraft/world/inventory/ClickAction;Lnet/minecraft/world/entity/player/Player;)Z net/minecraft/world/item/ItemStack/overrideStackedOnOther (Lnet/minecraft/world/inventory/Slot;Lnet/minecraft/world/inventory/ClickAction;Lnet/minecraft/world/entity/player/Player;)Z +MD: net/minecraft/world/item/ItemStack/m_150930_ (Lnet/minecraft/world/item/Item;)Z net/minecraft/world/item/ItemStack/is (Lnet/minecraft/world/item/Item;)Z +MD: net/minecraft/world/item/ItemStack/m_150932_ (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/inventory/Slot;Lnet/minecraft/world/inventory/ClickAction;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/entity/SlotAccess;)Z net/minecraft/world/item/ItemStack/overrideOtherStackedOnMe (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/inventory/Slot;Lnet/minecraft/world/inventory/ClickAction;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/entity/SlotAccess;)Z +MD: net/minecraft/world/item/ItemStack/m_150942_ (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/item/ItemStack;)Z net/minecraft/world/item/ItemStack/isSameItemSameTags (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/item/ItemStack;)Z +MD: net/minecraft/world/item/ItemStack/m_150947_ ()Z net/minecraft/world/item/ItemStack/isBarVisible ()Z +MD: net/minecraft/world/item/ItemStack/m_150948_ ()I net/minecraft/world/item/ItemStack/getBarWidth ()I +MD: net/minecraft/world/item/ItemStack/m_150949_ ()I net/minecraft/world/item/ItemStack/getBarColor ()I +MD: net/minecraft/world/item/ItemStack/m_204117_ (Lnet/minecraft/tags/TagKey;)Z net/minecraft/world/item/ItemStack/is (Lnet/minecraft/tags/TagKey;)Z +MD: net/minecraft/world/item/ItemStack/m_204121_ (Lnet/minecraft/core/Registry;Lnet/minecraft/world/level/block/state/pattern/BlockInWorld;)Z net/minecraft/world/item/ItemStack/hasAdventureModePlaceTagForBlock (Lnet/minecraft/core/Registry;Lnet/minecraft/world/level/block/state/pattern/BlockInWorld;)Z +MD: net/minecraft/world/item/ItemStack/m_204128_ (Lnet/minecraft/core/Registry;Lnet/minecraft/world/level/block/state/pattern/BlockInWorld;)Z net/minecraft/world/item/ItemStack/hasAdventureModeBreakTagForBlock (Lnet/minecraft/core/Registry;Lnet/minecraft/world/level/block/state/pattern/BlockInWorld;)Z +MD: net/minecraft/world/item/ItemStack/m_204131_ ()Ljava/util/stream/Stream; net/minecraft/world/item/ItemStack/getTags ()Ljava/util/stream/Stream; +MD: net/minecraft/world/item/ItemStack/m_220157_ (ILnet/minecraft/util/RandomSource;Lnet/minecraft/server/level/ServerPlayer;)Z net/minecraft/world/item/ItemStack/hurt (ILnet/minecraft/util/RandomSource;Lnet/minecraft/server/level/ServerPlayer;)Z +MD: net/minecraft/world/item/ItemStack/m_220161_ (Lnet/minecraft/commands/arguments/blocks/BlockStateParser$BlockResult;)Ljava/util/List; net/minecraft/world/item/ItemStack/lambda$expandBlockState$4 (Lnet/minecraft/commands/arguments/blocks/BlockStateParser$BlockResult;)Ljava/util/List; +MD: net/minecraft/world/item/ItemStack/m_220163_ (Lnet/minecraft/commands/arguments/blocks/BlockStateParser$TagResult;)Ljava/util/List; net/minecraft/world/item/ItemStack/lambda$expandBlockState$6 (Lnet/minecraft/commands/arguments/blocks/BlockStateParser$TagResult;)Ljava/util/List; +MD: net/minecraft/world/item/ItemStack/m_220165_ (Lnet/minecraft/core/Holder;)Z net/minecraft/world/item/ItemStack/is (Lnet/minecraft/core/Holder;)Z +MD: net/minecraft/world/item/ItemStack/m_220167_ (Ljava/util/function/Predicate;)Z net/minecraft/world/item/ItemStack/is (Ljava/util/function/Predicate;)Z +MD: net/minecraft/world/item/ItemStack/m_220169_ (Lnet/minecraft/network/chat/Style;)Lnet/minecraft/network/chat/Style; net/minecraft/world/item/ItemStack/lambda$getDisplayName$7 (Lnet/minecraft/network/chat/Style;)Lnet/minecraft/network/chat/Style; +MD: net/minecraft/world/item/ItemStack/m_220171_ (Lnet/minecraft/core/Holder;)Lnet/minecraft/network/chat/MutableComponent; net/minecraft/world/item/ItemStack/lambda$expandBlockState$5 (Lnet/minecraft/core/Holder;)Lnet/minecraft/network/chat/MutableComponent; +MD: net/minecraft/world/item/ItemStack/m_220173_ ()Lnet/minecraft/core/Holder; net/minecraft/world/item/ItemStack/getItemHolder ()Lnet/minecraft/core/Holder; +MD: net/minecraft/world/item/ItemStack/m_246617_ (Lnet/minecraft/world/flag/FeatureFlagSet;)Z net/minecraft/world/item/ItemStack/isItemEnabled (Lnet/minecraft/world/flag/FeatureFlagSet;)Z +MD: net/minecraft/world/item/ItemStack/m_255036_ (I)Lnet/minecraft/world/item/ItemStack; net/minecraft/world/item/ItemStack/copyWithCount (I)Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/item/ItemStack/m_257321_ (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/world/item/ItemStack/lambda$static$1 (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/world/item/ItemStack/m_278832_ ()Lnet/minecraft/world/item/ItemStack; net/minecraft/world/item/ItemStack/copyAndClear ()Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/item/ItemStack/m_279955_ (Lnet/minecraft/world/item/ItemStack;)Ljava/util/Optional; net/minecraft/world/item/ItemStack/lambda$static$0 (Lnet/minecraft/world/item/ItemStack;)Ljava/util/Optional; +MD: net/minecraft/world/item/ItemStack/m_41609_ ()Lnet/minecraft/world/entity/Entity; net/minecraft/world/item/ItemStack/getEntityRepresentation ()Lnet/minecraft/world/entity/Entity; +MD: net/minecraft/world/item/ItemStack/m_41610_ ()I net/minecraft/world/item/ItemStack/getBaseRepairCost ()I +MD: net/minecraft/world/item/ItemStack/m_41611_ ()Lnet/minecraft/network/chat/Component; net/minecraft/world/item/ItemStack/getDisplayName ()Lnet/minecraft/network/chat/Component; +MD: net/minecraft/world/item/ItemStack/m_41612_ ()I net/minecraft/world/item/ItemStack/getPopTime ()I +MD: net/minecraft/world/item/ItemStack/m_41613_ ()I net/minecraft/world/item/ItemStack/getCount ()I +MD: net/minecraft/world/item/ItemStack/m_41614_ ()Z net/minecraft/world/item/ItemStack/isEdible ()Z +MD: net/minecraft/world/item/ItemStack/m_41615_ ()Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/item/ItemStack/getDrinkingSound ()Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/item/ItemStack/m_41616_ ()Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/item/ItemStack/getEatingSound ()Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/item/ItemStack/m_41618_ ()I net/minecraft/world/item/ItemStack/getHideFlags ()I +MD: net/minecraft/world/item/ItemStack/m_41619_ ()Z net/minecraft/world/item/ItemStack/isEmpty ()Z +MD: net/minecraft/world/item/ItemStack/m_41620_ (I)Lnet/minecraft/world/item/ItemStack; net/minecraft/world/item/ItemStack/split (I)Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/item/ItemStack/m_41622_ (ILnet/minecraft/world/entity/LivingEntity;Ljava/util/function/Consumer;)V net/minecraft/world/item/ItemStack/hurtAndBreak (ILnet/minecraft/world/entity/LivingEntity;Ljava/util/function/Consumer;)V +MD: net/minecraft/world/item/ItemStack/m_41626_ (ILnet/minecraft/world/item/ItemStack$TooltipPart;)Z net/minecraft/world/item/ItemStack/shouldShowInTooltip (ILnet/minecraft/world/item/ItemStack$TooltipPart;)Z +MD: net/minecraft/world/item/ItemStack/m_41636_ (Lnet/minecraft/world/entity/Entity;)V net/minecraft/world/item/ItemStack/setEntityRepresentation (Lnet/minecraft/world/entity/Entity;)V +MD: net/minecraft/world/item/ItemStack/m_41638_ (Lnet/minecraft/world/entity/EquipmentSlot;)Lcom/google/common/collect/Multimap; net/minecraft/world/item/ItemStack/getAttributeModifiers (Lnet/minecraft/world/entity/EquipmentSlot;)Lcom/google/common/collect/Multimap; +MD: net/minecraft/world/item/ItemStack/m_41640_ (Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/entity/player/Player;)V net/minecraft/world/item/ItemStack/hurtEnemy (Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/entity/player/Player;)V +MD: net/minecraft/world/item/ItemStack/m_41643_ (Lnet/minecraft/world/entity/ai/attributes/Attribute;Lnet/minecraft/world/entity/ai/attributes/AttributeModifier;Lnet/minecraft/world/entity/EquipmentSlot;)V net/minecraft/world/item/ItemStack/addAttributeModifier (Lnet/minecraft/world/entity/ai/attributes/Attribute;Lnet/minecraft/world/entity/ai/attributes/AttributeModifier;Lnet/minecraft/world/entity/EquipmentSlot;)V +MD: net/minecraft/world/item/ItemStack/m_41647_ (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/InteractionHand;)Lnet/minecraft/world/InteractionResult; net/minecraft/world/item/ItemStack/interactLivingEntity (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/InteractionHand;)Lnet/minecraft/world/InteractionResult; +MD: net/minecraft/world/item/ItemStack/m_41651_ (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/item/TooltipFlag;)Ljava/util/List; net/minecraft/world/item/ItemStack/getTooltipLines (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/item/TooltipFlag;)Ljava/util/List; +MD: net/minecraft/world/item/ItemStack/m_41654_ (Lnet/minecraft/world/item/ItemStack$TooltipPart;)V net/minecraft/world/item/ItemStack/hideTooltipPart (Lnet/minecraft/world/item/ItemStack$TooltipPart;)V +MD: net/minecraft/world/item/ItemStack/m_41656_ (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/item/ItemStack;)Z net/minecraft/world/item/ItemStack/isSameItem (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/item/ItemStack;)Z +MD: net/minecraft/world/item/ItemStack/m_41661_ (Lnet/minecraft/world/item/context/UseOnContext;)Lnet/minecraft/world/InteractionResult; net/minecraft/world/item/ItemStack/useOn (Lnet/minecraft/world/item/context/UseOnContext;)Lnet/minecraft/world/InteractionResult; +MD: net/minecraft/world/item/ItemStack/m_41663_ (Lnet/minecraft/world/item/enchantment/Enchantment;I)V net/minecraft/world/item/ItemStack/enchant (Lnet/minecraft/world/item/enchantment/Enchantment;I)V +MD: net/minecraft/world/item/ItemStack/m_41666_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/entity/Entity;IZ)V net/minecraft/world/item/ItemStack/inventoryTick (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/entity/Entity;IZ)V +MD: net/minecraft/world/item/ItemStack/m_41671_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/entity/LivingEntity;)Lnet/minecraft/world/item/ItemStack; net/minecraft/world/item/ItemStack/finishUsingItem (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/entity/LivingEntity;)Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/item/ItemStack/m_41674_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/entity/LivingEntity;I)V net/minecraft/world/item/ItemStack/releaseUsing (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/entity/LivingEntity;I)V +MD: net/minecraft/world/item/ItemStack/m_41678_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/entity/player/Player;I)V net/minecraft/world/item/ItemStack/onCraftedBy (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/entity/player/Player;I)V +MD: net/minecraft/world/item/ItemStack/m_41682_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;)Lnet/minecraft/world/InteractionResultHolder; net/minecraft/world/item/ItemStack/use (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;)Lnet/minecraft/world/InteractionResultHolder; +MD: net/minecraft/world/item/ItemStack/m_41686_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/player/Player;)V net/minecraft/world/item/ItemStack/mineBlock (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/player/Player;)V +MD: net/minecraft/world/item/ItemStack/m_41691_ (Lnet/minecraft/world/level/block/state/BlockState;)F net/minecraft/world/item/ItemStack/getDestroySpeed (Lnet/minecraft/world/level/block/state/BlockState;)F +MD: net/minecraft/world/item/ItemStack/m_41698_ (Ljava/lang/String;)Lnet/minecraft/nbt/CompoundTag; net/minecraft/world/item/ItemStack/getOrCreateTagElement (Ljava/lang/String;)Lnet/minecraft/nbt/CompoundTag; +MD: net/minecraft/world/item/ItemStack/m_41700_ (Ljava/lang/String;Lnet/minecraft/nbt/Tag;)V net/minecraft/world/item/ItemStack/addTagElement (Ljava/lang/String;Lnet/minecraft/nbt/Tag;)V +MD: net/minecraft/world/item/ItemStack/m_41703_ (Ljava/text/DecimalFormat;)V net/minecraft/world/item/ItemStack/lambda$static$2 (Ljava/text/DecimalFormat;)V +MD: net/minecraft/world/item/ItemStack/m_41705_ (Ljava/util/List;Lnet/minecraft/nbt/CompoundTag;Lnet/minecraft/world/item/enchantment/Enchantment;)V net/minecraft/world/item/ItemStack/lambda$appendEnchantmentNames$3 (Ljava/util/List;Lnet/minecraft/nbt/CompoundTag;Lnet/minecraft/world/item/enchantment/Enchantment;)V +MD: net/minecraft/world/item/ItemStack/m_41709_ (Ljava/util/List;Lnet/minecraft/nbt/ListTag;)V net/minecraft/world/item/ItemStack/appendEnchantmentNames (Ljava/util/List;Lnet/minecraft/nbt/ListTag;)V +MD: net/minecraft/world/item/ItemStack/m_41712_ (Lnet/minecraft/nbt/CompoundTag;)Lnet/minecraft/world/item/ItemStack; net/minecraft/world/item/ItemStack/of (Lnet/minecraft/nbt/CompoundTag;)Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/item/ItemStack/m_41714_ (Lnet/minecraft/network/chat/Component;)Lnet/minecraft/world/item/ItemStack; net/minecraft/world/item/ItemStack/setHoverName (Lnet/minecraft/network/chat/Component;)Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/item/ItemStack/m_41720_ ()Lnet/minecraft/world/item/Item; net/minecraft/world/item/ItemStack/getItem ()Lnet/minecraft/world/item/Item; +MD: net/minecraft/world/item/ItemStack/m_41721_ (I)V net/minecraft/world/item/ItemStack/setDamageValue (I)V +MD: net/minecraft/world/item/ItemStack/m_41728_ (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/item/ItemStack;)Z net/minecraft/world/item/ItemStack/matches (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/item/ItemStack;)Z +MD: net/minecraft/world/item/ItemStack/m_41731_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/entity/LivingEntity;I)V net/minecraft/world/item/ItemStack/onUseTick (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/entity/LivingEntity;I)V +MD: net/minecraft/world/item/ItemStack/m_41735_ (Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/world/item/ItemStack/isCorrectToolForDrops (Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/world/item/ItemStack/m_41737_ (Ljava/lang/String;)Lnet/minecraft/nbt/CompoundTag; net/minecraft/world/item/ItemStack/getTagElement (Ljava/lang/String;)Lnet/minecraft/nbt/CompoundTag; +MD: net/minecraft/world/item/ItemStack/m_41739_ (Lnet/minecraft/nbt/CompoundTag;)Lnet/minecraft/nbt/CompoundTag; net/minecraft/world/item/ItemStack/save (Lnet/minecraft/nbt/CompoundTag;)Lnet/minecraft/nbt/CompoundTag; +MD: net/minecraft/world/item/ItemStack/m_41741_ ()I net/minecraft/world/item/ItemStack/getMaxStackSize ()I +MD: net/minecraft/world/item/ItemStack/m_41742_ (I)V net/minecraft/world/item/ItemStack/setRepairCost (I)V +MD: net/minecraft/world/item/ItemStack/m_41749_ (Ljava/lang/String;)V net/minecraft/world/item/ItemStack/removeTagKey (Ljava/lang/String;)V +MD: net/minecraft/world/item/ItemStack/m_41751_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/item/ItemStack/setTag (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/item/ItemStack/m_41753_ ()Z net/minecraft/world/item/ItemStack/isStackable ()Z +MD: net/minecraft/world/item/ItemStack/m_41754_ (I)V net/minecraft/world/item/ItemStack/setPopTime (I)V +MD: net/minecraft/world/item/ItemStack/m_41761_ (Ljava/lang/String;)Ljava/util/Collection; net/minecraft/world/item/ItemStack/expandBlockState (Ljava/lang/String;)Ljava/util/Collection; +MD: net/minecraft/world/item/ItemStack/m_41763_ ()Z net/minecraft/world/item/ItemStack/isDamageableItem ()Z +MD: net/minecraft/world/item/ItemStack/m_41764_ (I)V net/minecraft/world/item/ItemStack/setCount (I)V +MD: net/minecraft/world/item/ItemStack/m_41768_ ()Z net/minecraft/world/item/ItemStack/isDamaged ()Z +MD: net/minecraft/world/item/ItemStack/m_41769_ (I)V net/minecraft/world/item/ItemStack/grow (I)V +MD: net/minecraft/world/item/ItemStack/m_41773_ ()I net/minecraft/world/item/ItemStack/getDamageValue ()I +MD: net/minecraft/world/item/ItemStack/m_41774_ (I)V net/minecraft/world/item/ItemStack/shrink (I)V +MD: net/minecraft/world/item/ItemStack/m_41776_ ()I net/minecraft/world/item/ItemStack/getMaxDamage ()I +MD: net/minecraft/world/item/ItemStack/m_41777_ ()Lnet/minecraft/world/item/ItemStack; net/minecraft/world/item/ItemStack/copy ()Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/item/ItemStack/m_41778_ ()Ljava/lang/String; net/minecraft/world/item/ItemStack/getDescriptionId ()Ljava/lang/String; +MD: net/minecraft/world/item/ItemStack/m_41779_ ()I net/minecraft/world/item/ItemStack/getUseDuration ()I +MD: net/minecraft/world/item/ItemStack/m_41780_ ()Lnet/minecraft/world/item/UseAnim; net/minecraft/world/item/ItemStack/getUseAnimation ()Lnet/minecraft/world/item/UseAnim; +MD: net/minecraft/world/item/ItemStack/m_41781_ ()Z net/minecraft/world/item/ItemStack/useOnRelease ()Z +MD: net/minecraft/world/item/ItemStack/m_41782_ ()Z net/minecraft/world/item/ItemStack/hasTag ()Z +MD: net/minecraft/world/item/ItemStack/m_41783_ ()Lnet/minecraft/nbt/CompoundTag; net/minecraft/world/item/ItemStack/getTag ()Lnet/minecraft/nbt/CompoundTag; +MD: net/minecraft/world/item/ItemStack/m_41784_ ()Lnet/minecraft/nbt/CompoundTag; net/minecraft/world/item/ItemStack/getOrCreateTag ()Lnet/minecraft/nbt/CompoundTag; +MD: net/minecraft/world/item/ItemStack/m_41785_ ()Lnet/minecraft/nbt/ListTag; net/minecraft/world/item/ItemStack/getEnchantmentTags ()Lnet/minecraft/nbt/ListTag; +MD: net/minecraft/world/item/ItemStack/m_41786_ ()Lnet/minecraft/network/chat/Component; net/minecraft/world/item/ItemStack/getHoverName ()Lnet/minecraft/network/chat/Component; +MD: net/minecraft/world/item/ItemStack/m_41787_ ()V net/minecraft/world/item/ItemStack/resetHoverName ()V +MD: net/minecraft/world/item/ItemStack/m_41788_ ()Z net/minecraft/world/item/ItemStack/hasCustomHoverName ()Z +MD: net/minecraft/world/item/ItemStack/m_41790_ ()Z net/minecraft/world/item/ItemStack/hasFoil ()Z +MD: net/minecraft/world/item/ItemStack/m_41791_ ()Lnet/minecraft/world/item/Rarity; net/minecraft/world/item/ItemStack/getRarity ()Lnet/minecraft/world/item/Rarity; +MD: net/minecraft/world/item/ItemStack/m_41792_ ()Z net/minecraft/world/item/ItemStack/isEnchantable ()Z +MD: net/minecraft/world/item/ItemStack/m_41793_ ()Z net/minecraft/world/item/ItemStack/isEnchanted ()Z +MD: net/minecraft/world/item/ItemStack/m_41794_ ()Z net/minecraft/world/item/ItemStack/isFramed ()Z +MD: net/minecraft/world/item/ItemStack/m_41795_ ()Lnet/minecraft/world/entity/decoration/ItemFrame; net/minecraft/world/item/ItemStack/getFrame ()Lnet/minecraft/world/entity/decoration/ItemFrame; +MD: net/minecraft/world/item/ItemStack/toString ()Ljava/lang/String; net/minecraft/world/item/ItemStack/toString ()Ljava/lang/String; +MD: net/minecraft/world/item/ItemStack$TooltipPart/ ()V net/minecraft/world/item/ItemStack$TooltipPart/ ()V +MD: net/minecraft/world/item/ItemStack$TooltipPart/ (Ljava/lang/String;I)V net/minecraft/world/item/ItemStack$TooltipPart/ (Ljava/lang/String;I)V +MD: net/minecraft/world/item/ItemStack$TooltipPart/m_150950_ ()[Lnet/minecraft/world/item/ItemStack$TooltipPart; net/minecraft/world/item/ItemStack$TooltipPart/$values ()[Lnet/minecraft/world/item/ItemStack$TooltipPart; +MD: net/minecraft/world/item/ItemStack$TooltipPart/m_41809_ ()I net/minecraft/world/item/ItemStack$TooltipPart/getMask ()I +MD: net/minecraft/world/item/ItemStack$TooltipPart/valueOf (Ljava/lang/String;)Lnet/minecraft/world/item/ItemStack$TooltipPart; net/minecraft/world/item/ItemStack$TooltipPart/valueOf (Ljava/lang/String;)Lnet/minecraft/world/item/ItemStack$TooltipPart; +MD: net/minecraft/world/item/ItemStack$TooltipPart/values ()[Lnet/minecraft/world/item/ItemStack$TooltipPart; net/minecraft/world/item/ItemStack$TooltipPart/values ()[Lnet/minecraft/world/item/ItemStack$TooltipPart; +MD: net/minecraft/world/item/ItemStackLinkedSet/ ()V net/minecraft/world/item/ItemStackLinkedSet/ ()V +MD: net/minecraft/world/item/ItemStackLinkedSet/ ()V net/minecraft/world/item/ItemStackLinkedSet/ ()V +MD: net/minecraft/world/item/ItemStackLinkedSet/m_260929_ (Lnet/minecraft/world/item/ItemStack;)I net/minecraft/world/item/ItemStackLinkedSet/hashStackAndTag (Lnet/minecraft/world/item/ItemStack;)I +MD: net/minecraft/world/item/ItemStackLinkedSet/m_261170_ ()Ljava/util/Set; net/minecraft/world/item/ItemStackLinkedSet/createTypeAndTagSet ()Ljava/util/Set; +MD: net/minecraft/world/item/ItemStackLinkedSet$1/ ()V net/minecraft/world/item/ItemStackLinkedSet$1/ ()V +MD: net/minecraft/world/item/ItemStackLinkedSet$1/equals (Ljava/lang/Object;Ljava/lang/Object;)Z net/minecraft/world/item/ItemStackLinkedSet$1/equals (Ljava/lang/Object;Ljava/lang/Object;)Z +MD: net/minecraft/world/item/ItemStackLinkedSet$1/equals (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/item/ItemStack;)Z net/minecraft/world/item/ItemStackLinkedSet$1/equals (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/item/ItemStack;)Z +MD: net/minecraft/world/item/ItemStackLinkedSet$1/hashCode (Lnet/minecraft/world/item/ItemStack;)I net/minecraft/world/item/ItemStackLinkedSet$1/hashCode (Lnet/minecraft/world/item/ItemStack;)I +MD: net/minecraft/world/item/ItemStackLinkedSet$1/hashCode (Ljava/lang/Object;)I net/minecraft/world/item/ItemStackLinkedSet$1/hashCode (Ljava/lang/Object;)I +MD: net/minecraft/world/item/ItemUtils/ ()V net/minecraft/world/item/ItemUtils/ ()V +MD: net/minecraft/world/item/ItemUtils/m_150952_ (Lnet/minecraft/world/entity/item/ItemEntity;Ljava/util/stream/Stream;)V net/minecraft/world/item/ItemUtils/onContainerDestroyed (Lnet/minecraft/world/entity/item/ItemEntity;Ljava/util/stream/Stream;)V +MD: net/minecraft/world/item/ItemUtils/m_150959_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;)Lnet/minecraft/world/InteractionResultHolder; net/minecraft/world/item/ItemUtils/startUsingInstantly (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;)Lnet/minecraft/world/InteractionResultHolder; +MD: net/minecraft/world/item/ItemUtils/m_289175_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/entity/item/ItemEntity;Lnet/minecraft/world/item/ItemStack;)V net/minecraft/world/item/ItemUtils/lambda$onContainerDestroyed$0 (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/entity/item/ItemEntity;Lnet/minecraft/world/item/ItemStack;)V +MD: net/minecraft/world/item/ItemUtils/m_41813_ (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/item/ItemStack;)Lnet/minecraft/world/item/ItemStack; net/minecraft/world/item/ItemUtils/createFilledResult (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/item/ItemStack;)Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/item/ItemUtils/m_41817_ (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/item/ItemStack;Z)Lnet/minecraft/world/item/ItemStack; net/minecraft/world/item/ItemUtils/createFilledResult (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/item/ItemStack;Z)Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/item/Items/ ()V net/minecraft/world/item/Items/ ()V +MD: net/minecraft/world/item/Items/ ()V net/minecraft/world/item/Items/ ()V +MD: net/minecraft/world/item/Items/m_245048_ (Lnet/minecraft/world/level/block/Block;[Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/item/Item; net/minecraft/world/item/Items/registerBlock (Lnet/minecraft/world/level/block/Block;[Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/item/Item; +MD: net/minecraft/world/item/Items/m_280247_ (Lnet/minecraft/resources/ResourceKey;Lnet/minecraft/world/item/Item;)Lnet/minecraft/world/item/Item; net/minecraft/world/item/Items/registerItem (Lnet/minecraft/resources/ResourceKey;Lnet/minecraft/world/item/Item;)Lnet/minecraft/world/item/Item; +MD: net/minecraft/world/item/Items/m_42803_ (Lnet/minecraft/world/item/BlockItem;)Lnet/minecraft/world/item/Item; net/minecraft/world/item/Items/registerBlock (Lnet/minecraft/world/item/BlockItem;)Lnet/minecraft/world/item/Item; +MD: net/minecraft/world/item/Items/m_42805_ (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/item/Item; net/minecraft/world/item/Items/registerBlock (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/item/Item; +MD: net/minecraft/world/item/Items/m_42810_ (Lnet/minecraft/world/level/block/Block;Lnet/minecraft/world/item/Item;)Lnet/minecraft/world/item/Item; net/minecraft/world/item/Items/registerBlock (Lnet/minecraft/world/level/block/Block;Lnet/minecraft/world/item/Item;)Lnet/minecraft/world/item/Item; +MD: net/minecraft/world/item/Items/m_42813_ (Ljava/lang/String;Lnet/minecraft/world/item/Item;)Lnet/minecraft/world/item/Item; net/minecraft/world/item/Items/registerItem (Ljava/lang/String;Lnet/minecraft/world/item/Item;)Lnet/minecraft/world/item/Item; +MD: net/minecraft/world/item/Items/m_42816_ (Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/world/item/Item;)Lnet/minecraft/world/item/Item; net/minecraft/world/item/Items/registerItem (Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/world/item/Item;)Lnet/minecraft/world/item/Item; +MD: net/minecraft/world/item/KnowledgeBookItem/ ()V net/minecraft/world/item/KnowledgeBookItem/ ()V +MD: net/minecraft/world/item/KnowledgeBookItem/ (Lnet/minecraft/world/item/Item$Properties;)V net/minecraft/world/item/KnowledgeBookItem/ (Lnet/minecraft/world/item/Item$Properties;)V +MD: net/minecraft/world/item/KnowledgeBookItem/m_7203_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;)Lnet/minecraft/world/InteractionResultHolder; net/minecraft/world/item/KnowledgeBookItem/use (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;)Lnet/minecraft/world/InteractionResultHolder; +MD: net/minecraft/world/item/LeadItem/ (Lnet/minecraft/world/item/Item$Properties;)V net/minecraft/world/item/LeadItem/ (Lnet/minecraft/world/item/Item$Properties;)V +MD: net/minecraft/world/item/LeadItem/m_42829_ (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/InteractionResult; net/minecraft/world/item/LeadItem/bindPlayerMobs (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/InteractionResult; +MD: net/minecraft/world/item/LeadItem/m_6225_ (Lnet/minecraft/world/item/context/UseOnContext;)Lnet/minecraft/world/InteractionResult; net/minecraft/world/item/LeadItem/useOn (Lnet/minecraft/world/item/context/UseOnContext;)Lnet/minecraft/world/InteractionResult; +MD: net/minecraft/world/item/LingeringPotionItem/ (Lnet/minecraft/world/item/Item$Properties;)V net/minecraft/world/item/LingeringPotionItem/ (Lnet/minecraft/world/item/Item$Properties;)V +MD: net/minecraft/world/item/LingeringPotionItem/m_7203_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;)Lnet/minecraft/world/InteractionResultHolder; net/minecraft/world/item/LingeringPotionItem/use (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;)Lnet/minecraft/world/InteractionResultHolder; +MD: net/minecraft/world/item/LingeringPotionItem/m_7373_ (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/level/Level;Ljava/util/List;Lnet/minecraft/world/item/TooltipFlag;)V net/minecraft/world/item/LingeringPotionItem/appendHoverText (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/level/Level;Ljava/util/List;Lnet/minecraft/world/item/TooltipFlag;)V +MD: net/minecraft/world/item/MapItem/ (Lnet/minecraft/world/item/Item$Properties;)V net/minecraft/world/item/MapItem/ (Lnet/minecraft/world/item/Item$Properties;)V +MD: net/minecraft/world/item/MapItem/m_151108_ (Lnet/minecraft/world/item/ItemStack;I)V net/minecraft/world/item/MapItem/storeMapData (Lnet/minecraft/world/item/ItemStack;I)V +MD: net/minecraft/world/item/MapItem/m_151111_ (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/level/Level;IIIZZLnet/minecraft/resources/ResourceKey;)V net/minecraft/world/item/MapItem/createAndStoreSavedData (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/level/Level;IIIZZLnet/minecraft/resources/ResourceKey;)V +MD: net/minecraft/world/item/MapItem/m_151120_ (Lnet/minecraft/world/level/Level;IIIZZLnet/minecraft/resources/ResourceKey;)I net/minecraft/world/item/MapItem/createNewSavedData (Lnet/minecraft/world/level/Level;IIIZZLnet/minecraft/resources/ResourceKey;)I +MD: net/minecraft/world/item/MapItem/m_151128_ (Ljava/lang/Integer;Lnet/minecraft/world/level/Level;)Lnet/minecraft/world/level/saveddata/maps/MapItemSavedData; net/minecraft/world/item/MapItem/getSavedData (Ljava/lang/Integer;Lnet/minecraft/world/level/Level;)Lnet/minecraft/world/level/saveddata/maps/MapItemSavedData; +MD: net/minecraft/world/item/MapItem/m_151131_ (Lnet/minecraft/world/item/ItemStack;)Ljava/lang/Integer; net/minecraft/world/item/MapItem/getMapId (Lnet/minecraft/world/item/ItemStack;)Ljava/lang/Integer; +MD: net/minecraft/world/item/MapItem/m_212251_ ([ZII)Z net/minecraft/world/item/MapItem/isBiomeWatery ([ZII)Z +MD: net/minecraft/world/item/MapItem/m_42848_ (I)Ljava/lang/String; net/minecraft/world/item/MapItem/makeKey (I)Ljava/lang/String; +MD: net/minecraft/world/item/MapItem/m_42850_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/item/ItemStack;)V net/minecraft/world/item/MapItem/renderBiomePreviewMap (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/item/ItemStack;)V +MD: net/minecraft/world/item/MapItem/m_42853_ (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/level/Level;)Lnet/minecraft/world/level/saveddata/maps/MapItemSavedData; net/minecraft/world/item/MapItem/getSavedData (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/level/Level;)Lnet/minecraft/world/level/saveddata/maps/MapItemSavedData; +MD: net/minecraft/world/item/MapItem/m_42856_ (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/level/Level;I)V net/minecraft/world/item/MapItem/scaleMap (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/level/Level;I)V +MD: net/minecraft/world/item/MapItem/m_42886_ (Lnet/minecraft/world/level/Level;IIBZZ)Lnet/minecraft/world/item/ItemStack; net/minecraft/world/item/MapItem/create (Lnet/minecraft/world/level/Level;IIBZZ)Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/item/MapItem/m_42893_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/entity/Entity;Lnet/minecraft/world/level/saveddata/maps/MapItemSavedData;)V net/minecraft/world/item/MapItem/update (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/entity/Entity;Lnet/minecraft/world/level/saveddata/maps/MapItemSavedData;)V +MD: net/minecraft/world/item/MapItem/m_42897_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/item/ItemStack;)V net/minecraft/world/item/MapItem/lockMap (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/item/ItemStack;)V +MD: net/minecraft/world/item/MapItem/m_42900_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/item/MapItem/getCorrectStateForFluidBlock (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/item/MapItem/m_42918_ (Lnet/minecraft/world/item/ItemStack;)I net/minecraft/world/item/MapItem/getColor (Lnet/minecraft/world/item/ItemStack;)I +MD: net/minecraft/world/item/MapItem/m_6225_ (Lnet/minecraft/world/item/context/UseOnContext;)Lnet/minecraft/world/InteractionResult; net/minecraft/world/item/MapItem/useOn (Lnet/minecraft/world/item/context/UseOnContext;)Lnet/minecraft/world/InteractionResult; +MD: net/minecraft/world/item/MapItem/m_6883_ (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/level/Level;Lnet/minecraft/world/entity/Entity;IZ)V net/minecraft/world/item/MapItem/inventoryTick (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/level/Level;Lnet/minecraft/world/entity/Entity;IZ)V +MD: net/minecraft/world/item/MapItem/m_7233_ (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/level/Level;Lnet/minecraft/world/entity/player/Player;)Lnet/minecraft/network/protocol/Packet; net/minecraft/world/item/MapItem/getUpdatePacket (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/level/Level;Lnet/minecraft/world/entity/player/Player;)Lnet/minecraft/network/protocol/Packet; +MD: net/minecraft/world/item/MapItem/m_7373_ (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/level/Level;Ljava/util/List;Lnet/minecraft/world/item/TooltipFlag;)V net/minecraft/world/item/MapItem/appendHoverText (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/level/Level;Ljava/util/List;Lnet/minecraft/world/item/TooltipFlag;)V +MD: net/minecraft/world/item/MapItem/m_7836_ (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/level/Level;Lnet/minecraft/world/entity/player/Player;)V net/minecraft/world/item/MapItem/onCraftedBy (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/level/Level;Lnet/minecraft/world/entity/player/Player;)V +MD: net/minecraft/world/item/MilkBucketItem/ (Lnet/minecraft/world/item/Item$Properties;)V net/minecraft/world/item/MilkBucketItem/ (Lnet/minecraft/world/item/Item$Properties;)V +MD: net/minecraft/world/item/MilkBucketItem/m_5922_ (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/level/Level;Lnet/minecraft/world/entity/LivingEntity;)Lnet/minecraft/world/item/ItemStack; net/minecraft/world/item/MilkBucketItem/finishUsingItem (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/level/Level;Lnet/minecraft/world/entity/LivingEntity;)Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/item/MilkBucketItem/m_6164_ (Lnet/minecraft/world/item/ItemStack;)Lnet/minecraft/world/item/UseAnim; net/minecraft/world/item/MilkBucketItem/getUseAnimation (Lnet/minecraft/world/item/ItemStack;)Lnet/minecraft/world/item/UseAnim; +MD: net/minecraft/world/item/MilkBucketItem/m_7203_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;)Lnet/minecraft/world/InteractionResultHolder; net/minecraft/world/item/MilkBucketItem/use (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;)Lnet/minecraft/world/InteractionResultHolder; +MD: net/minecraft/world/item/MilkBucketItem/m_8105_ (Lnet/minecraft/world/item/ItemStack;)I net/minecraft/world/item/MilkBucketItem/getUseDuration (Lnet/minecraft/world/item/ItemStack;)I +MD: net/minecraft/world/item/MinecartItem/ ()V net/minecraft/world/item/MinecartItem/ ()V +MD: net/minecraft/world/item/MinecartItem/ (Lnet/minecraft/world/entity/vehicle/AbstractMinecart$Type;Lnet/minecraft/world/item/Item$Properties;)V net/minecraft/world/item/MinecartItem/ (Lnet/minecraft/world/entity/vehicle/AbstractMinecart$Type;Lnet/minecraft/world/item/Item$Properties;)V +MD: net/minecraft/world/item/MinecartItem/m_6225_ (Lnet/minecraft/world/item/context/UseOnContext;)Lnet/minecraft/world/InteractionResult; net/minecraft/world/item/MinecartItem/useOn (Lnet/minecraft/world/item/context/UseOnContext;)Lnet/minecraft/world/InteractionResult; +MD: net/minecraft/world/item/MinecartItem$1/ ()V net/minecraft/world/item/MinecartItem$1/ ()V +MD: net/minecraft/world/item/MinecartItem$1/m_6823_ (Lnet/minecraft/core/BlockSource;)V net/minecraft/world/item/MinecartItem$1/playSound (Lnet/minecraft/core/BlockSource;)V +MD: net/minecraft/world/item/MinecartItem$1/m_7498_ (Lnet/minecraft/core/BlockSource;Lnet/minecraft/world/item/ItemStack;)Lnet/minecraft/world/item/ItemStack; net/minecraft/world/item/MinecartItem$1/execute (Lnet/minecraft/core/BlockSource;Lnet/minecraft/world/item/ItemStack;)Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/item/MobBucketItem/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/material/Fluid;Lnet/minecraft/sounds/SoundEvent;Lnet/minecraft/world/item/Item$Properties;)V net/minecraft/world/item/MobBucketItem/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/material/Fluid;Lnet/minecraft/sounds/SoundEvent;Lnet/minecraft/world/item/Item$Properties;)V +MD: net/minecraft/world/item/MobBucketItem/m_142131_ (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/level/Level;Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/core/BlockPos;)V net/minecraft/world/item/MobBucketItem/checkExtraContent (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/level/Level;Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/world/item/MobBucketItem/m_151141_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/core/BlockPos;)V net/minecraft/world/item/MobBucketItem/spawn (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/world/item/MobBucketItem/m_7373_ (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/level/Level;Ljava/util/List;Lnet/minecraft/world/item/TooltipFlag;)V net/minecraft/world/item/MobBucketItem/appendHoverText (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/level/Level;Ljava/util/List;Lnet/minecraft/world/item/TooltipFlag;)V +MD: net/minecraft/world/item/MobBucketItem/m_7718_ (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;)V net/minecraft/world/item/MobBucketItem/playEmptySound (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/world/item/NameTagItem/ (Lnet/minecraft/world/item/Item$Properties;)V net/minecraft/world/item/NameTagItem/ (Lnet/minecraft/world/item/Item$Properties;)V +MD: net/minecraft/world/item/NameTagItem/m_6880_ (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/InteractionHand;)Lnet/minecraft/world/InteractionResult; net/minecraft/world/item/NameTagItem/interactLivingEntity (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/InteractionHand;)Lnet/minecraft/world/InteractionResult; +MD: net/minecraft/world/item/PickaxeItem/ (Lnet/minecraft/world/item/Tier;IFLnet/minecraft/world/item/Item$Properties;)V net/minecraft/world/item/PickaxeItem/ (Lnet/minecraft/world/item/Tier;IFLnet/minecraft/world/item/Item$Properties;)V +MD: net/minecraft/world/item/PlaceOnWaterBlockItem/ (Lnet/minecraft/world/level/block/Block;Lnet/minecraft/world/item/Item$Properties;)V net/minecraft/world/item/PlaceOnWaterBlockItem/ (Lnet/minecraft/world/level/block/Block;Lnet/minecraft/world/item/Item$Properties;)V +MD: net/minecraft/world/item/PlaceOnWaterBlockItem/m_6225_ (Lnet/minecraft/world/item/context/UseOnContext;)Lnet/minecraft/world/InteractionResult; net/minecraft/world/item/PlaceOnWaterBlockItem/useOn (Lnet/minecraft/world/item/context/UseOnContext;)Lnet/minecraft/world/InteractionResult; +MD: net/minecraft/world/item/PlaceOnWaterBlockItem/m_7203_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;)Lnet/minecraft/world/InteractionResultHolder; net/minecraft/world/item/PlaceOnWaterBlockItem/use (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;)Lnet/minecraft/world/InteractionResultHolder; +MD: net/minecraft/world/item/PlayerHeadItem/ (Lnet/minecraft/world/level/block/Block;Lnet/minecraft/world/level/block/Block;Lnet/minecraft/world/item/Item$Properties;)V net/minecraft/world/item/PlayerHeadItem/ (Lnet/minecraft/world/level/block/Block;Lnet/minecraft/world/level/block/Block;Lnet/minecraft/world/item/Item$Properties;)V +MD: net/minecraft/world/item/PlayerHeadItem/m_142312_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/item/PlayerHeadItem/verifyTagAfterLoad (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/item/PlayerHeadItem/m_151175_ (Lnet/minecraft/nbt/CompoundTag;Lcom/mojang/authlib/GameProfile;)V net/minecraft/world/item/PlayerHeadItem/lambda$verifyTagAfterLoad$0 (Lnet/minecraft/nbt/CompoundTag;Lcom/mojang/authlib/GameProfile;)V +MD: net/minecraft/world/item/PlayerHeadItem/m_7626_ (Lnet/minecraft/world/item/ItemStack;)Lnet/minecraft/network/chat/Component; net/minecraft/world/item/PlayerHeadItem/getName (Lnet/minecraft/world/item/ItemStack;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/world/item/PotionItem/ (Lnet/minecraft/world/item/Item$Properties;)V net/minecraft/world/item/PotionItem/ (Lnet/minecraft/world/item/Item$Properties;)V +MD: net/minecraft/world/item/PotionItem/m_5671_ (Lnet/minecraft/world/item/ItemStack;)Ljava/lang/String; net/minecraft/world/item/PotionItem/getDescriptionId (Lnet/minecraft/world/item/ItemStack;)Ljava/lang/String; +MD: net/minecraft/world/item/PotionItem/m_5922_ (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/level/Level;Lnet/minecraft/world/entity/LivingEntity;)Lnet/minecraft/world/item/ItemStack; net/minecraft/world/item/PotionItem/finishUsingItem (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/level/Level;Lnet/minecraft/world/entity/LivingEntity;)Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/item/PotionItem/m_6164_ (Lnet/minecraft/world/item/ItemStack;)Lnet/minecraft/world/item/UseAnim; net/minecraft/world/item/PotionItem/getUseAnimation (Lnet/minecraft/world/item/ItemStack;)Lnet/minecraft/world/item/UseAnim; +MD: net/minecraft/world/item/PotionItem/m_6225_ (Lnet/minecraft/world/item/context/UseOnContext;)Lnet/minecraft/world/InteractionResult; net/minecraft/world/item/PotionItem/useOn (Lnet/minecraft/world/item/context/UseOnContext;)Lnet/minecraft/world/InteractionResult; +MD: net/minecraft/world/item/PotionItem/m_7203_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;)Lnet/minecraft/world/InteractionResultHolder; net/minecraft/world/item/PotionItem/use (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;)Lnet/minecraft/world/InteractionResultHolder; +MD: net/minecraft/world/item/PotionItem/m_7373_ (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/level/Level;Ljava/util/List;Lnet/minecraft/world/item/TooltipFlag;)V net/minecraft/world/item/PotionItem/appendHoverText (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/level/Level;Ljava/util/List;Lnet/minecraft/world/item/TooltipFlag;)V +MD: net/minecraft/world/item/PotionItem/m_7968_ ()Lnet/minecraft/world/item/ItemStack; net/minecraft/world/item/PotionItem/getDefaultInstance ()Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/item/PotionItem/m_8105_ (Lnet/minecraft/world/item/ItemStack;)I net/minecraft/world/item/PotionItem/getUseDuration (Lnet/minecraft/world/item/ItemStack;)I +MD: net/minecraft/world/item/ProjectileWeaponItem/ ()V net/minecraft/world/item/ProjectileWeaponItem/ ()V +MD: net/minecraft/world/item/ProjectileWeaponItem/ (Lnet/minecraft/world/item/Item$Properties;)V net/minecraft/world/item/ProjectileWeaponItem/ (Lnet/minecraft/world/item/Item$Properties;)V +MD: net/minecraft/world/item/ProjectileWeaponItem/m_43010_ (Lnet/minecraft/world/entity/LivingEntity;Ljava/util/function/Predicate;)Lnet/minecraft/world/item/ItemStack; net/minecraft/world/item/ProjectileWeaponItem/getHeldProjectile (Lnet/minecraft/world/entity/LivingEntity;Ljava/util/function/Predicate;)Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/item/ProjectileWeaponItem/m_43014_ (Lnet/minecraft/world/item/ItemStack;)Z net/minecraft/world/item/ProjectileWeaponItem/lambda$static$1 (Lnet/minecraft/world/item/ItemStack;)Z +MD: net/minecraft/world/item/ProjectileWeaponItem/m_43016_ (Lnet/minecraft/world/item/ItemStack;)Z net/minecraft/world/item/ProjectileWeaponItem/lambda$static$0 (Lnet/minecraft/world/item/ItemStack;)Z +MD: net/minecraft/world/item/ProjectileWeaponItem/m_6437_ ()Ljava/util/function/Predicate; net/minecraft/world/item/ProjectileWeaponItem/getAllSupportedProjectiles ()Ljava/util/function/Predicate; +MD: net/minecraft/world/item/ProjectileWeaponItem/m_6442_ ()Ljava/util/function/Predicate; net/minecraft/world/item/ProjectileWeaponItem/getSupportedHeldProjectiles ()Ljava/util/function/Predicate; +MD: net/minecraft/world/item/ProjectileWeaponItem/m_6473_ ()I net/minecraft/world/item/ProjectileWeaponItem/getEnchantmentValue ()I +MD: net/minecraft/world/item/ProjectileWeaponItem/m_6615_ ()I net/minecraft/world/item/ProjectileWeaponItem/getDefaultProjectileRange ()I +MD: net/minecraft/world/item/Rarity/ ()V net/minecraft/world/item/Rarity/ ()V +MD: net/minecraft/world/item/Rarity/ (Ljava/lang/String;ILnet/minecraft/ChatFormatting;)V net/minecraft/world/item/Rarity/ (Ljava/lang/String;ILnet/minecraft/ChatFormatting;)V +MD: net/minecraft/world/item/Rarity/m_151181_ ()[Lnet/minecraft/world/item/Rarity; net/minecraft/world/item/Rarity/$values ()[Lnet/minecraft/world/item/Rarity; +MD: net/minecraft/world/item/Rarity/valueOf (Ljava/lang/String;)Lnet/minecraft/world/item/Rarity; net/minecraft/world/item/Rarity/valueOf (Ljava/lang/String;)Lnet/minecraft/world/item/Rarity; +MD: net/minecraft/world/item/Rarity/values ()[Lnet/minecraft/world/item/Rarity; net/minecraft/world/item/Rarity/values ()[Lnet/minecraft/world/item/Rarity; +MD: net/minecraft/world/item/RecordItem/ ()V net/minecraft/world/item/RecordItem/ ()V +MD: net/minecraft/world/item/RecordItem/ (ILnet/minecraft/sounds/SoundEvent;Lnet/minecraft/world/item/Item$Properties;I)V net/minecraft/world/item/RecordItem/ (ILnet/minecraft/sounds/SoundEvent;Lnet/minecraft/world/item/Item$Properties;I)V +MD: net/minecraft/world/item/RecordItem/m_43036_ ()I net/minecraft/world/item/RecordItem/getLengthInTicks ()I +MD: net/minecraft/world/item/RecordItem/m_43040_ (Lnet/minecraft/sounds/SoundEvent;)Lnet/minecraft/world/item/RecordItem; net/minecraft/world/item/RecordItem/getBySound (Lnet/minecraft/sounds/SoundEvent;)Lnet/minecraft/world/item/RecordItem; +MD: net/minecraft/world/item/RecordItem/m_43049_ ()I net/minecraft/world/item/RecordItem/getAnalogOutput ()I +MD: net/minecraft/world/item/RecordItem/m_43050_ ()Lnet/minecraft/network/chat/MutableComponent; net/minecraft/world/item/RecordItem/getDisplayName ()Lnet/minecraft/network/chat/MutableComponent; +MD: net/minecraft/world/item/RecordItem/m_43051_ ()Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/item/RecordItem/getSound ()Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/item/RecordItem/m_6225_ (Lnet/minecraft/world/item/context/UseOnContext;)Lnet/minecraft/world/InteractionResult; net/minecraft/world/item/RecordItem/useOn (Lnet/minecraft/world/item/context/UseOnContext;)Lnet/minecraft/world/InteractionResult; +MD: net/minecraft/world/item/RecordItem/m_7373_ (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/level/Level;Ljava/util/List;Lnet/minecraft/world/item/TooltipFlag;)V net/minecraft/world/item/RecordItem/appendHoverText (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/level/Level;Ljava/util/List;Lnet/minecraft/world/item/TooltipFlag;)V +MD: net/minecraft/world/item/SaddleItem/ (Lnet/minecraft/world/item/Item$Properties;)V net/minecraft/world/item/SaddleItem/ (Lnet/minecraft/world/item/Item$Properties;)V +MD: net/minecraft/world/item/SaddleItem/m_6880_ (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/InteractionHand;)Lnet/minecraft/world/InteractionResult; net/minecraft/world/item/SaddleItem/interactLivingEntity (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/InteractionHand;)Lnet/minecraft/world/InteractionResult; +MD: net/minecraft/world/item/ScaffoldingBlockItem/ (Lnet/minecraft/world/level/block/Block;Lnet/minecraft/world/item/Item$Properties;)V net/minecraft/world/item/ScaffoldingBlockItem/ (Lnet/minecraft/world/level/block/Block;Lnet/minecraft/world/item/Item$Properties;)V +MD: net/minecraft/world/item/ScaffoldingBlockItem/m_6652_ ()Z net/minecraft/world/item/ScaffoldingBlockItem/mustSurvive ()Z +MD: net/minecraft/world/item/ScaffoldingBlockItem/m_7732_ (Lnet/minecraft/world/item/context/BlockPlaceContext;)Lnet/minecraft/world/item/context/BlockPlaceContext; net/minecraft/world/item/ScaffoldingBlockItem/updatePlacementContext (Lnet/minecraft/world/item/context/BlockPlaceContext;)Lnet/minecraft/world/item/context/BlockPlaceContext; +MD: net/minecraft/world/item/ServerItemCooldowns/ (Lnet/minecraft/server/level/ServerPlayer;)V net/minecraft/world/item/ServerItemCooldowns/ (Lnet/minecraft/server/level/ServerPlayer;)V +MD: net/minecraft/world/item/ServerItemCooldowns/m_6899_ (Lnet/minecraft/world/item/Item;I)V net/minecraft/world/item/ServerItemCooldowns/onCooldownStarted (Lnet/minecraft/world/item/Item;I)V +MD: net/minecraft/world/item/ServerItemCooldowns/m_7432_ (Lnet/minecraft/world/item/Item;)V net/minecraft/world/item/ServerItemCooldowns/onCooldownEnded (Lnet/minecraft/world/item/Item;)V +MD: net/minecraft/world/item/ShearsItem/ (Lnet/minecraft/world/item/Item$Properties;)V net/minecraft/world/item/ShearsItem/ (Lnet/minecraft/world/item/Item$Properties;)V +MD: net/minecraft/world/item/ShearsItem/m_186372_ (Lnet/minecraft/world/item/context/UseOnContext;Lnet/minecraft/world/entity/player/Player;)V net/minecraft/world/item/ShearsItem/lambda$useOn$1 (Lnet/minecraft/world/item/context/UseOnContext;Lnet/minecraft/world/entity/player/Player;)V +MD: net/minecraft/world/item/ShearsItem/m_43075_ (Lnet/minecraft/world/entity/LivingEntity;)V net/minecraft/world/item/ShearsItem/lambda$mineBlock$0 (Lnet/minecraft/world/entity/LivingEntity;)V +MD: net/minecraft/world/item/ShearsItem/m_6225_ (Lnet/minecraft/world/item/context/UseOnContext;)Lnet/minecraft/world/InteractionResult; net/minecraft/world/item/ShearsItem/useOn (Lnet/minecraft/world/item/context/UseOnContext;)Lnet/minecraft/world/InteractionResult; +MD: net/minecraft/world/item/ShearsItem/m_6813_ (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/level/Level;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/LivingEntity;)Z net/minecraft/world/item/ShearsItem/mineBlock (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/level/Level;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/LivingEntity;)Z +MD: net/minecraft/world/item/ShearsItem/m_8096_ (Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/world/item/ShearsItem/isCorrectToolForDrops (Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/world/item/ShearsItem/m_8102_ (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/level/block/state/BlockState;)F net/minecraft/world/item/ShearsItem/getDestroySpeed (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/level/block/state/BlockState;)F +MD: net/minecraft/world/item/ShieldItem/ (Lnet/minecraft/world/item/Item$Properties;)V net/minecraft/world/item/ShieldItem/ (Lnet/minecraft/world/item/Item$Properties;)V +MD: net/minecraft/world/item/ShieldItem/m_40402_ ()Lnet/minecraft/world/entity/EquipmentSlot; net/minecraft/world/item/ShieldItem/getEquipmentSlot ()Lnet/minecraft/world/entity/EquipmentSlot; +MD: net/minecraft/world/item/ShieldItem/m_43102_ (Lnet/minecraft/world/item/ItemStack;)Lnet/minecraft/world/item/DyeColor; net/minecraft/world/item/ShieldItem/getColor (Lnet/minecraft/world/item/ItemStack;)Lnet/minecraft/world/item/DyeColor; +MD: net/minecraft/world/item/ShieldItem/m_5671_ (Lnet/minecraft/world/item/ItemStack;)Ljava/lang/String; net/minecraft/world/item/ShieldItem/getDescriptionId (Lnet/minecraft/world/item/ItemStack;)Ljava/lang/String; +MD: net/minecraft/world/item/ShieldItem/m_6164_ (Lnet/minecraft/world/item/ItemStack;)Lnet/minecraft/world/item/UseAnim; net/minecraft/world/item/ShieldItem/getUseAnimation (Lnet/minecraft/world/item/ItemStack;)Lnet/minecraft/world/item/UseAnim; +MD: net/minecraft/world/item/ShieldItem/m_6832_ (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/item/ItemStack;)Z net/minecraft/world/item/ShieldItem/isValidRepairItem (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/item/ItemStack;)Z +MD: net/minecraft/world/item/ShieldItem/m_7203_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;)Lnet/minecraft/world/InteractionResultHolder; net/minecraft/world/item/ShieldItem/use (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;)Lnet/minecraft/world/InteractionResultHolder; +MD: net/minecraft/world/item/ShieldItem/m_7373_ (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/level/Level;Ljava/util/List;Lnet/minecraft/world/item/TooltipFlag;)V net/minecraft/world/item/ShieldItem/appendHoverText (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/level/Level;Ljava/util/List;Lnet/minecraft/world/item/TooltipFlag;)V +MD: net/minecraft/world/item/ShieldItem/m_8105_ (Lnet/minecraft/world/item/ItemStack;)I net/minecraft/world/item/ShieldItem/getUseDuration (Lnet/minecraft/world/item/ItemStack;)I +MD: net/minecraft/world/item/ShovelItem/ ()V net/minecraft/world/item/ShovelItem/ ()V +MD: net/minecraft/world/item/ShovelItem/ (Lnet/minecraft/world/item/Tier;FFLnet/minecraft/world/item/Item$Properties;)V net/minecraft/world/item/ShovelItem/ (Lnet/minecraft/world/item/Tier;FFLnet/minecraft/world/item/Item$Properties;)V +MD: net/minecraft/world/item/ShovelItem/m_43120_ (Lnet/minecraft/world/item/context/UseOnContext;Lnet/minecraft/world/entity/player/Player;)V net/minecraft/world/item/ShovelItem/lambda$useOn$0 (Lnet/minecraft/world/item/context/UseOnContext;Lnet/minecraft/world/entity/player/Player;)V +MD: net/minecraft/world/item/ShovelItem/m_6225_ (Lnet/minecraft/world/item/context/UseOnContext;)Lnet/minecraft/world/InteractionResult; net/minecraft/world/item/ShovelItem/useOn (Lnet/minecraft/world/item/context/UseOnContext;)Lnet/minecraft/world/InteractionResult; +MD: net/minecraft/world/item/SignApplicator/m_276787_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/level/block/entity/SignBlockEntity;ZLnet/minecraft/world/entity/player/Player;)Z net/minecraft/world/item/SignApplicator/tryApplyToSign (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/level/block/entity/SignBlockEntity;ZLnet/minecraft/world/entity/player/Player;)Z +MD: net/minecraft/world/item/SignApplicator/m_277072_ (Lnet/minecraft/world/level/block/entity/SignText;Lnet/minecraft/world/entity/player/Player;)Z net/minecraft/world/item/SignApplicator/canApplyToSign (Lnet/minecraft/world/level/block/entity/SignText;Lnet/minecraft/world/entity/player/Player;)Z +MD: net/minecraft/world/item/SignItem/ (Lnet/minecraft/world/item/Item$Properties;Lnet/minecraft/world/level/block/Block;Lnet/minecraft/world/level/block/Block;Lnet/minecraft/core/Direction;)V net/minecraft/world/item/SignItem/ (Lnet/minecraft/world/item/Item$Properties;Lnet/minecraft/world/level/block/Block;Lnet/minecraft/world/level/block/Block;Lnet/minecraft/core/Direction;)V +MD: net/minecraft/world/item/SignItem/ (Lnet/minecraft/world/item/Item$Properties;Lnet/minecraft/world/level/block/Block;Lnet/minecraft/world/level/block/Block;)V net/minecraft/world/item/SignItem/ (Lnet/minecraft/world/item/Item$Properties;Lnet/minecraft/world/level/block/Block;Lnet/minecraft/world/level/block/Block;)V +MD: net/minecraft/world/item/SignItem/m_7274_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/Level;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/world/item/SignItem/updateCustomBlockEntityTag (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/Level;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/world/item/SimpleFoiledItem/ (Lnet/minecraft/world/item/Item$Properties;)V net/minecraft/world/item/SimpleFoiledItem/ (Lnet/minecraft/world/item/Item$Properties;)V +MD: net/minecraft/world/item/SimpleFoiledItem/m_5812_ (Lnet/minecraft/world/item/ItemStack;)Z net/minecraft/world/item/SimpleFoiledItem/isFoil (Lnet/minecraft/world/item/ItemStack;)Z +MD: net/minecraft/world/item/SmithingTemplateItem/ ()V net/minecraft/world/item/SmithingTemplateItem/ ()V +MD: net/minecraft/world/item/SmithingTemplateItem/ (Lnet/minecraft/network/chat/Component;Lnet/minecraft/network/chat/Component;Lnet/minecraft/network/chat/Component;Lnet/minecraft/network/chat/Component;Lnet/minecraft/network/chat/Component;Ljava/util/List;Ljava/util/List;)V net/minecraft/world/item/SmithingTemplateItem/ (Lnet/minecraft/network/chat/Component;Lnet/minecraft/network/chat/Component;Lnet/minecraft/network/chat/Component;Lnet/minecraft/network/chat/Component;Lnet/minecraft/network/chat/Component;Ljava/util/List;Ljava/util/List;)V +MD: net/minecraft/world/item/SmithingTemplateItem/m_266165_ ()Lnet/minecraft/world/item/SmithingTemplateItem; net/minecraft/world/item/SmithingTemplateItem/createNetheriteUpgradeTemplate ()Lnet/minecraft/world/item/SmithingTemplateItem; +MD: net/minecraft/world/item/SmithingTemplateItem/m_266172_ (Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/world/item/SmithingTemplateItem; net/minecraft/world/item/SmithingTemplateItem/createArmorTrimTemplate (Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/world/item/SmithingTemplateItem; +MD: net/minecraft/world/item/SmithingTemplateItem/m_266212_ ()Lnet/minecraft/network/chat/Component; net/minecraft/world/item/SmithingTemplateItem/getBaseSlotDescription ()Lnet/minecraft/network/chat/Component; +MD: net/minecraft/world/item/SmithingTemplateItem/m_266239_ ()Ljava/util/List; net/minecraft/world/item/SmithingTemplateItem/createTrimmableArmorIconList ()Ljava/util/List; +MD: net/minecraft/world/item/SmithingTemplateItem/m_266257_ ()Ljava/util/List; net/minecraft/world/item/SmithingTemplateItem/createNetheriteUpgradeIconList ()Ljava/util/List; +MD: net/minecraft/world/item/SmithingTemplateItem/m_266304_ (Lnet/minecraft/resources/ResourceKey;)Lnet/minecraft/world/item/SmithingTemplateItem; net/minecraft/world/item/SmithingTemplateItem/createArmorTrimTemplate (Lnet/minecraft/resources/ResourceKey;)Lnet/minecraft/world/item/SmithingTemplateItem; +MD: net/minecraft/world/item/SmithingTemplateItem/m_266326_ ()Ljava/util/List; net/minecraft/world/item/SmithingTemplateItem/getAdditionalSlotEmptyIcons ()Ljava/util/List; +MD: net/minecraft/world/item/SmithingTemplateItem/m_266346_ ()Ljava/util/List; net/minecraft/world/item/SmithingTemplateItem/createTrimmableMaterialIconList ()Ljava/util/List; +MD: net/minecraft/world/item/SmithingTemplateItem/m_266534_ ()Ljava/util/List; net/minecraft/world/item/SmithingTemplateItem/getBaseSlotEmptyIcons ()Ljava/util/List; +MD: net/minecraft/world/item/SmithingTemplateItem/m_266549_ ()Lnet/minecraft/network/chat/Component; net/minecraft/world/item/SmithingTemplateItem/getAdditionSlotDescription ()Lnet/minecraft/network/chat/Component; +MD: net/minecraft/world/item/SmithingTemplateItem/m_266579_ ()Ljava/util/List; net/minecraft/world/item/SmithingTemplateItem/createNetheriteUpgradeMaterialList ()Ljava/util/List; +MD: net/minecraft/world/item/SmithingTemplateItem/m_5524_ ()Ljava/lang/String; net/minecraft/world/item/SmithingTemplateItem/getDescriptionId ()Ljava/lang/String; +MD: net/minecraft/world/item/SmithingTemplateItem/m_7373_ (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/level/Level;Ljava/util/List;Lnet/minecraft/world/item/TooltipFlag;)V net/minecraft/world/item/SmithingTemplateItem/appendHoverText (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/level/Level;Ljava/util/List;Lnet/minecraft/world/item/TooltipFlag;)V +MD: net/minecraft/world/item/SnowballItem/ (Lnet/minecraft/world/item/Item$Properties;)V net/minecraft/world/item/SnowballItem/ (Lnet/minecraft/world/item/Item$Properties;)V +MD: net/minecraft/world/item/SnowballItem/m_7203_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;)Lnet/minecraft/world/InteractionResultHolder; net/minecraft/world/item/SnowballItem/use (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;)Lnet/minecraft/world/InteractionResultHolder; +MD: net/minecraft/world/item/SolidBucketItem/ (Lnet/minecraft/world/level/block/Block;Lnet/minecraft/sounds/SoundEvent;Lnet/minecraft/world/item/Item$Properties;)V net/minecraft/world/item/SolidBucketItem/ (Lnet/minecraft/world/level/block/Block;Lnet/minecraft/sounds/SoundEvent;Lnet/minecraft/world/item/Item$Properties;)V +MD: net/minecraft/world/item/SolidBucketItem/m_142073_ (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/BlockHitResult;)Z net/minecraft/world/item/SolidBucketItem/emptyContents (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/BlockHitResult;)Z +MD: net/minecraft/world/item/SolidBucketItem/m_40587_ (Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/item/SolidBucketItem/getPlaceSound (Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/item/SolidBucketItem/m_5524_ ()Ljava/lang/String; net/minecraft/world/item/SolidBucketItem/getDescriptionId ()Ljava/lang/String; +MD: net/minecraft/world/item/SolidBucketItem/m_6225_ (Lnet/minecraft/world/item/context/UseOnContext;)Lnet/minecraft/world/InteractionResult; net/minecraft/world/item/SolidBucketItem/useOn (Lnet/minecraft/world/item/context/UseOnContext;)Lnet/minecraft/world/InteractionResult; +MD: net/minecraft/world/item/SpawnEggItem/ ()V net/minecraft/world/item/SpawnEggItem/ ()V +MD: net/minecraft/world/item/SpawnEggItem/ (Lnet/minecraft/world/entity/EntityType;IILnet/minecraft/world/item/Item$Properties;)V net/minecraft/world/item/SpawnEggItem/ (Lnet/minecraft/world/entity/EntityType;IILnet/minecraft/world/item/Item$Properties;)V +MD: net/minecraft/world/item/SpawnEggItem/m_245183_ ()Lnet/minecraft/world/flag/FeatureFlagSet; net/minecraft/world/item/SpawnEggItem/requiredFeatures ()Lnet/minecraft/world/flag/FeatureFlagSet; +MD: net/minecraft/world/item/SpawnEggItem/m_43211_ (I)I net/minecraft/world/item/SpawnEggItem/getColor (I)I +MD: net/minecraft/world/item/SpawnEggItem/m_43213_ (Lnet/minecraft/world/entity/EntityType;)Lnet/minecraft/world/item/SpawnEggItem; net/minecraft/world/item/SpawnEggItem/byId (Lnet/minecraft/world/entity/EntityType;)Lnet/minecraft/world/item/SpawnEggItem; +MD: net/minecraft/world/item/SpawnEggItem/m_43215_ (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/entity/Mob;Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/phys/Vec3;Lnet/minecraft/world/item/ItemStack;)Ljava/util/Optional; net/minecraft/world/item/SpawnEggItem/spawnOffspringFromSpawnEgg (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/entity/Mob;Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/phys/Vec3;Lnet/minecraft/world/item/ItemStack;)Ljava/util/Optional; +MD: net/minecraft/world/item/SpawnEggItem/m_43228_ (Lnet/minecraft/nbt/CompoundTag;)Lnet/minecraft/world/entity/EntityType; net/minecraft/world/item/SpawnEggItem/getType (Lnet/minecraft/nbt/CompoundTag;)Lnet/minecraft/world/entity/EntityType; +MD: net/minecraft/world/item/SpawnEggItem/m_43230_ (Lnet/minecraft/nbt/CompoundTag;Lnet/minecraft/world/entity/EntityType;)Z net/minecraft/world/item/SpawnEggItem/spawnsEntity (Lnet/minecraft/nbt/CompoundTag;Lnet/minecraft/world/entity/EntityType;)Z +MD: net/minecraft/world/item/SpawnEggItem/m_43233_ ()Ljava/lang/Iterable; net/minecraft/world/item/SpawnEggItem/eggs ()Ljava/lang/Iterable; +MD: net/minecraft/world/item/SpawnEggItem/m_6225_ (Lnet/minecraft/world/item/context/UseOnContext;)Lnet/minecraft/world/InteractionResult; net/minecraft/world/item/SpawnEggItem/useOn (Lnet/minecraft/world/item/context/UseOnContext;)Lnet/minecraft/world/InteractionResult; +MD: net/minecraft/world/item/SpawnEggItem/m_7203_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;)Lnet/minecraft/world/InteractionResultHolder; net/minecraft/world/item/SpawnEggItem/use (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;)Lnet/minecraft/world/InteractionResultHolder; +MD: net/minecraft/world/item/SpectralArrowItem/ (Lnet/minecraft/world/item/Item$Properties;)V net/minecraft/world/item/SpectralArrowItem/ (Lnet/minecraft/world/item/Item$Properties;)V +MD: net/minecraft/world/item/SpectralArrowItem/m_6394_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/entity/LivingEntity;)Lnet/minecraft/world/entity/projectile/AbstractArrow; net/minecraft/world/item/SpectralArrowItem/createArrow (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/entity/LivingEntity;)Lnet/minecraft/world/entity/projectile/AbstractArrow; +MD: net/minecraft/world/item/SplashPotionItem/ (Lnet/minecraft/world/item/Item$Properties;)V net/minecraft/world/item/SplashPotionItem/ (Lnet/minecraft/world/item/Item$Properties;)V +MD: net/minecraft/world/item/SplashPotionItem/m_7203_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;)Lnet/minecraft/world/InteractionResultHolder; net/minecraft/world/item/SplashPotionItem/use (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;)Lnet/minecraft/world/InteractionResultHolder; +MD: net/minecraft/world/item/SpyglassItem/ (Lnet/minecraft/world/item/Item$Properties;)V net/minecraft/world/item/SpyglassItem/ (Lnet/minecraft/world/item/Item$Properties;)V +MD: net/minecraft/world/item/SpyglassItem/m_151206_ (Lnet/minecraft/world/entity/LivingEntity;)V net/minecraft/world/item/SpyglassItem/stopUsing (Lnet/minecraft/world/entity/LivingEntity;)V +MD: net/minecraft/world/item/SpyglassItem/m_5551_ (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/level/Level;Lnet/minecraft/world/entity/LivingEntity;I)V net/minecraft/world/item/SpyglassItem/releaseUsing (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/level/Level;Lnet/minecraft/world/entity/LivingEntity;I)V +MD: net/minecraft/world/item/SpyglassItem/m_5922_ (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/level/Level;Lnet/minecraft/world/entity/LivingEntity;)Lnet/minecraft/world/item/ItemStack; net/minecraft/world/item/SpyglassItem/finishUsingItem (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/level/Level;Lnet/minecraft/world/entity/LivingEntity;)Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/item/SpyglassItem/m_6164_ (Lnet/minecraft/world/item/ItemStack;)Lnet/minecraft/world/item/UseAnim; net/minecraft/world/item/SpyglassItem/getUseAnimation (Lnet/minecraft/world/item/ItemStack;)Lnet/minecraft/world/item/UseAnim; +MD: net/minecraft/world/item/SpyglassItem/m_7203_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;)Lnet/minecraft/world/InteractionResultHolder; net/minecraft/world/item/SpyglassItem/use (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;)Lnet/minecraft/world/InteractionResultHolder; +MD: net/minecraft/world/item/SpyglassItem/m_8105_ (Lnet/minecraft/world/item/ItemStack;)I net/minecraft/world/item/SpyglassItem/getUseDuration (Lnet/minecraft/world/item/ItemStack;)I +MD: net/minecraft/world/item/StandingAndWallBlockItem/ (Lnet/minecraft/world/level/block/Block;Lnet/minecraft/world/level/block/Block;Lnet/minecraft/world/item/Item$Properties;Lnet/minecraft/core/Direction;)V net/minecraft/world/item/StandingAndWallBlockItem/ (Lnet/minecraft/world/level/block/Block;Lnet/minecraft/world/level/block/Block;Lnet/minecraft/world/item/Item$Properties;Lnet/minecraft/core/Direction;)V +MD: net/minecraft/world/item/StandingAndWallBlockItem/m_246210_ (Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/item/StandingAndWallBlockItem/canPlace (Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/item/StandingAndWallBlockItem/m_5965_ (Lnet/minecraft/world/item/context/BlockPlaceContext;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/item/StandingAndWallBlockItem/getPlacementState (Lnet/minecraft/world/item/context/BlockPlaceContext;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/item/StandingAndWallBlockItem/m_6192_ (Ljava/util/Map;Lnet/minecraft/world/item/Item;)V net/minecraft/world/item/StandingAndWallBlockItem/registerBlocks (Ljava/util/Map;Lnet/minecraft/world/item/Item;)V +MD: net/minecraft/world/item/SuspiciousStewItem/ (Lnet/minecraft/world/item/Item$Properties;)V net/minecraft/world/item/SuspiciousStewItem/ (Lnet/minecraft/world/item/Item$Properties;)V +MD: net/minecraft/world/item/SuspiciousStewItem/m_258054_ (Lnet/minecraft/world/item/ItemStack;Ljava/util/function/Consumer;)V net/minecraft/world/item/SuspiciousStewItem/listPotionEffects (Lnet/minecraft/world/item/ItemStack;Ljava/util/function/Consumer;)V +MD: net/minecraft/world/item/SuspiciousStewItem/m_43258_ (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/effect/MobEffect;I)V net/minecraft/world/item/SuspiciousStewItem/saveMobEffect (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/effect/MobEffect;I)V +MD: net/minecraft/world/item/SuspiciousStewItem/m_5922_ (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/level/Level;Lnet/minecraft/world/entity/LivingEntity;)Lnet/minecraft/world/item/ItemStack; net/minecraft/world/item/SuspiciousStewItem/finishUsingItem (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/level/Level;Lnet/minecraft/world/entity/LivingEntity;)Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/item/SuspiciousStewItem/m_7373_ (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/level/Level;Ljava/util/List;Lnet/minecraft/world/item/TooltipFlag;)V net/minecraft/world/item/SuspiciousStewItem/appendHoverText (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/level/Level;Ljava/util/List;Lnet/minecraft/world/item/TooltipFlag;)V +MD: net/minecraft/world/item/SwordItem/ (Lnet/minecraft/world/item/Tier;IFLnet/minecraft/world/item/Item$Properties;)V net/minecraft/world/item/SwordItem/ (Lnet/minecraft/world/item/Tier;IFLnet/minecraft/world/item/Item$Properties;)V +MD: net/minecraft/world/item/SwordItem/m_43275_ (Lnet/minecraft/world/entity/LivingEntity;)V net/minecraft/world/item/SwordItem/lambda$mineBlock$1 (Lnet/minecraft/world/entity/LivingEntity;)V +MD: net/minecraft/world/item/SwordItem/m_43295_ (Lnet/minecraft/world/entity/LivingEntity;)V net/minecraft/world/item/SwordItem/lambda$hurtEnemy$0 (Lnet/minecraft/world/entity/LivingEntity;)V +MD: net/minecraft/world/item/SwordItem/m_43299_ ()F net/minecraft/world/item/SwordItem/getDamage ()F +MD: net/minecraft/world/item/SwordItem/m_6777_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/player/Player;)Z net/minecraft/world/item/SwordItem/canAttackBlock (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/player/Player;)Z +MD: net/minecraft/world/item/SwordItem/m_6813_ (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/level/Level;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/LivingEntity;)Z net/minecraft/world/item/SwordItem/mineBlock (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/level/Level;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/LivingEntity;)Z +MD: net/minecraft/world/item/SwordItem/m_7167_ (Lnet/minecraft/world/entity/EquipmentSlot;)Lcom/google/common/collect/Multimap; net/minecraft/world/item/SwordItem/getDefaultAttributeModifiers (Lnet/minecraft/world/entity/EquipmentSlot;)Lcom/google/common/collect/Multimap; +MD: net/minecraft/world/item/SwordItem/m_7579_ (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/entity/LivingEntity;)Z net/minecraft/world/item/SwordItem/hurtEnemy (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/entity/LivingEntity;)Z +MD: net/minecraft/world/item/SwordItem/m_8096_ (Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/world/item/SwordItem/isCorrectToolForDrops (Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/world/item/SwordItem/m_8102_ (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/level/block/state/BlockState;)F net/minecraft/world/item/SwordItem/getDestroySpeed (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/level/block/state/BlockState;)F +MD: net/minecraft/world/item/ThrowablePotionItem/ (Lnet/minecraft/world/item/Item$Properties;)V net/minecraft/world/item/ThrowablePotionItem/ (Lnet/minecraft/world/item/Item$Properties;)V +MD: net/minecraft/world/item/ThrowablePotionItem/m_7203_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;)Lnet/minecraft/world/InteractionResultHolder; net/minecraft/world/item/ThrowablePotionItem/use (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;)Lnet/minecraft/world/InteractionResultHolder; +MD: net/minecraft/world/item/Tier/m_6282_ ()Lnet/minecraft/world/item/crafting/Ingredient; net/minecraft/world/item/Tier/getRepairIngredient ()Lnet/minecraft/world/item/crafting/Ingredient; +MD: net/minecraft/world/item/Tier/m_6601_ ()I net/minecraft/world/item/Tier/getEnchantmentValue ()I +MD: net/minecraft/world/item/Tier/m_6604_ ()I net/minecraft/world/item/Tier/getLevel ()I +MD: net/minecraft/world/item/Tier/m_6609_ ()I net/minecraft/world/item/Tier/getUses ()I +MD: net/minecraft/world/item/Tier/m_6624_ ()F net/minecraft/world/item/Tier/getSpeed ()F +MD: net/minecraft/world/item/Tier/m_6631_ ()F net/minecraft/world/item/Tier/getAttackDamageBonus ()F +MD: net/minecraft/world/item/TieredItem/ (Lnet/minecraft/world/item/Tier;Lnet/minecraft/world/item/Item$Properties;)V net/minecraft/world/item/TieredItem/ (Lnet/minecraft/world/item/Tier;Lnet/minecraft/world/item/Item$Properties;)V +MD: net/minecraft/world/item/TieredItem/m_43314_ ()Lnet/minecraft/world/item/Tier; net/minecraft/world/item/TieredItem/getTier ()Lnet/minecraft/world/item/Tier; +MD: net/minecraft/world/item/TieredItem/m_6473_ ()I net/minecraft/world/item/TieredItem/getEnchantmentValue ()I +MD: net/minecraft/world/item/TieredItem/m_6832_ (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/item/ItemStack;)Z net/minecraft/world/item/TieredItem/isValidRepairItem (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/item/ItemStack;)Z +MD: net/minecraft/world/item/Tiers/ ()V net/minecraft/world/item/Tiers/ ()V +MD: net/minecraft/world/item/Tiers/ (Ljava/lang/String;IIIFFILjava/util/function/Supplier;)V net/minecraft/world/item/Tiers/ (Ljava/lang/String;IIIFFILjava/util/function/Supplier;)V +MD: net/minecraft/world/item/Tiers/m_151228_ ()[Lnet/minecraft/world/item/Tiers; net/minecraft/world/item/Tiers/$values ()[Lnet/minecraft/world/item/Tiers; +MD: net/minecraft/world/item/Tiers/m_43344_ ()Lnet/minecraft/world/item/crafting/Ingredient; net/minecraft/world/item/Tiers/lambda$static$5 ()Lnet/minecraft/world/item/crafting/Ingredient; +MD: net/minecraft/world/item/Tiers/m_43345_ ()Lnet/minecraft/world/item/crafting/Ingredient; net/minecraft/world/item/Tiers/lambda$static$4 ()Lnet/minecraft/world/item/crafting/Ingredient; +MD: net/minecraft/world/item/Tiers/m_43346_ ()Lnet/minecraft/world/item/crafting/Ingredient; net/minecraft/world/item/Tiers/lambda$static$3 ()Lnet/minecraft/world/item/crafting/Ingredient; +MD: net/minecraft/world/item/Tiers/m_43347_ ()Lnet/minecraft/world/item/crafting/Ingredient; net/minecraft/world/item/Tiers/lambda$static$2 ()Lnet/minecraft/world/item/crafting/Ingredient; +MD: net/minecraft/world/item/Tiers/m_43348_ ()Lnet/minecraft/world/item/crafting/Ingredient; net/minecraft/world/item/Tiers/lambda$static$1 ()Lnet/minecraft/world/item/crafting/Ingredient; +MD: net/minecraft/world/item/Tiers/m_43349_ ()Lnet/minecraft/world/item/crafting/Ingredient; net/minecraft/world/item/Tiers/lambda$static$0 ()Lnet/minecraft/world/item/crafting/Ingredient; +MD: net/minecraft/world/item/Tiers/m_6282_ ()Lnet/minecraft/world/item/crafting/Ingredient; net/minecraft/world/item/Tiers/getRepairIngredient ()Lnet/minecraft/world/item/crafting/Ingredient; +MD: net/minecraft/world/item/Tiers/m_6601_ ()I net/minecraft/world/item/Tiers/getEnchantmentValue ()I +MD: net/minecraft/world/item/Tiers/m_6604_ ()I net/minecraft/world/item/Tiers/getLevel ()I +MD: net/minecraft/world/item/Tiers/m_6609_ ()I net/minecraft/world/item/Tiers/getUses ()I +MD: net/minecraft/world/item/Tiers/m_6624_ ()F net/minecraft/world/item/Tiers/getSpeed ()F +MD: net/minecraft/world/item/Tiers/m_6631_ ()F net/minecraft/world/item/Tiers/getAttackDamageBonus ()F +MD: net/minecraft/world/item/Tiers/valueOf (Ljava/lang/String;)Lnet/minecraft/world/item/Tiers; net/minecraft/world/item/Tiers/valueOf (Ljava/lang/String;)Lnet/minecraft/world/item/Tiers; +MD: net/minecraft/world/item/Tiers/values ()[Lnet/minecraft/world/item/Tiers; net/minecraft/world/item/Tiers/values ()[Lnet/minecraft/world/item/Tiers; +MD: net/minecraft/world/item/TippedArrowItem/ (Lnet/minecraft/world/item/Item$Properties;)V net/minecraft/world/item/TippedArrowItem/ (Lnet/minecraft/world/item/Item$Properties;)V +MD: net/minecraft/world/item/TippedArrowItem/m_5671_ (Lnet/minecraft/world/item/ItemStack;)Ljava/lang/String; net/minecraft/world/item/TippedArrowItem/getDescriptionId (Lnet/minecraft/world/item/ItemStack;)Ljava/lang/String; +MD: net/minecraft/world/item/TippedArrowItem/m_7373_ (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/level/Level;Ljava/util/List;Lnet/minecraft/world/item/TooltipFlag;)V net/minecraft/world/item/TippedArrowItem/appendHoverText (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/level/Level;Ljava/util/List;Lnet/minecraft/world/item/TooltipFlag;)V +MD: net/minecraft/world/item/TippedArrowItem/m_7968_ ()Lnet/minecraft/world/item/ItemStack; net/minecraft/world/item/TippedArrowItem/getDefaultInstance ()Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/item/TooltipFlag/ ()V net/minecraft/world/item/TooltipFlag/ ()V +MD: net/minecraft/world/item/TooltipFlag/m_257552_ ()Z net/minecraft/world/item/TooltipFlag/isCreative ()Z +MD: net/minecraft/world/item/TooltipFlag/m_7050_ ()Z net/minecraft/world/item/TooltipFlag/isAdvanced ()Z +MD: net/minecraft/world/item/TooltipFlag$Default/ (ZZ)V net/minecraft/world/item/TooltipFlag$Default/ (ZZ)V +MD: net/minecraft/world/item/TooltipFlag$Default/equals (Ljava/lang/Object;)Z net/minecraft/world/item/TooltipFlag$Default/equals (Ljava/lang/Object;)Z +MD: net/minecraft/world/item/TooltipFlag$Default/f_257043_ ()Z net/minecraft/world/item/TooltipFlag$Default/creative ()Z +MD: net/minecraft/world/item/TooltipFlag$Default/f_43368_ ()Z net/minecraft/world/item/TooltipFlag$Default/advanced ()Z +MD: net/minecraft/world/item/TooltipFlag$Default/hashCode ()I net/minecraft/world/item/TooltipFlag$Default/hashCode ()I +MD: net/minecraft/world/item/TooltipFlag$Default/m_257552_ ()Z net/minecraft/world/item/TooltipFlag$Default/isCreative ()Z +MD: net/minecraft/world/item/TooltipFlag$Default/m_257777_ ()Lnet/minecraft/world/item/TooltipFlag$Default; net/minecraft/world/item/TooltipFlag$Default/asCreative ()Lnet/minecraft/world/item/TooltipFlag$Default; +MD: net/minecraft/world/item/TooltipFlag$Default/m_7050_ ()Z net/minecraft/world/item/TooltipFlag$Default/isAdvanced ()Z +MD: net/minecraft/world/item/TooltipFlag$Default/toString ()Ljava/lang/String; net/minecraft/world/item/TooltipFlag$Default/toString ()Ljava/lang/String; +MD: net/minecraft/world/item/TridentItem/ (Lnet/minecraft/world/item/Item$Properties;)V net/minecraft/world/item/TridentItem/ (Lnet/minecraft/world/item/Item$Properties;)V +MD: net/minecraft/world/item/TridentItem/m_43384_ (Lnet/minecraft/world/entity/LivingEntity;)V net/minecraft/world/item/TridentItem/lambda$mineBlock$2 (Lnet/minecraft/world/entity/LivingEntity;)V +MD: net/minecraft/world/item/TridentItem/m_43386_ (Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/entity/player/Player;)V net/minecraft/world/item/TridentItem/lambda$releaseUsing$0 (Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/entity/player/Player;)V +MD: net/minecraft/world/item/TridentItem/m_43413_ (Lnet/minecraft/world/entity/LivingEntity;)V net/minecraft/world/item/TridentItem/lambda$hurtEnemy$1 (Lnet/minecraft/world/entity/LivingEntity;)V +MD: net/minecraft/world/item/TridentItem/m_5551_ (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/level/Level;Lnet/minecraft/world/entity/LivingEntity;I)V net/minecraft/world/item/TridentItem/releaseUsing (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/level/Level;Lnet/minecraft/world/entity/LivingEntity;I)V +MD: net/minecraft/world/item/TridentItem/m_6164_ (Lnet/minecraft/world/item/ItemStack;)Lnet/minecraft/world/item/UseAnim; net/minecraft/world/item/TridentItem/getUseAnimation (Lnet/minecraft/world/item/ItemStack;)Lnet/minecraft/world/item/UseAnim; +MD: net/minecraft/world/item/TridentItem/m_6473_ ()I net/minecraft/world/item/TridentItem/getEnchantmentValue ()I +MD: net/minecraft/world/item/TridentItem/m_6777_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/player/Player;)Z net/minecraft/world/item/TridentItem/canAttackBlock (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/player/Player;)Z +MD: net/minecraft/world/item/TridentItem/m_6813_ (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/level/Level;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/LivingEntity;)Z net/minecraft/world/item/TridentItem/mineBlock (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/level/Level;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/LivingEntity;)Z +MD: net/minecraft/world/item/TridentItem/m_7167_ (Lnet/minecraft/world/entity/EquipmentSlot;)Lcom/google/common/collect/Multimap; net/minecraft/world/item/TridentItem/getDefaultAttributeModifiers (Lnet/minecraft/world/entity/EquipmentSlot;)Lcom/google/common/collect/Multimap; +MD: net/minecraft/world/item/TridentItem/m_7203_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;)Lnet/minecraft/world/InteractionResultHolder; net/minecraft/world/item/TridentItem/use (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;)Lnet/minecraft/world/InteractionResultHolder; +MD: net/minecraft/world/item/TridentItem/m_7579_ (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/entity/LivingEntity;)Z net/minecraft/world/item/TridentItem/hurtEnemy (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/entity/LivingEntity;)Z +MD: net/minecraft/world/item/TridentItem/m_8105_ (Lnet/minecraft/world/item/ItemStack;)I net/minecraft/world/item/TridentItem/getUseDuration (Lnet/minecraft/world/item/ItemStack;)I +MD: net/minecraft/world/item/UseAnim/ ()V net/minecraft/world/item/UseAnim/ ()V +MD: net/minecraft/world/item/UseAnim/ (Ljava/lang/String;I)V net/minecraft/world/item/UseAnim/ (Ljava/lang/String;I)V +MD: net/minecraft/world/item/UseAnim/m_151234_ ()[Lnet/minecraft/world/item/UseAnim; net/minecraft/world/item/UseAnim/$values ()[Lnet/minecraft/world/item/UseAnim; +MD: net/minecraft/world/item/UseAnim/valueOf (Ljava/lang/String;)Lnet/minecraft/world/item/UseAnim; net/minecraft/world/item/UseAnim/valueOf (Ljava/lang/String;)Lnet/minecraft/world/item/UseAnim; +MD: net/minecraft/world/item/UseAnim/values ()[Lnet/minecraft/world/item/UseAnim; net/minecraft/world/item/UseAnim/values ()[Lnet/minecraft/world/item/UseAnim; +MD: net/minecraft/world/item/WritableBookItem/ (Lnet/minecraft/world/item/Item$Properties;)V net/minecraft/world/item/WritableBookItem/ (Lnet/minecraft/world/item/Item$Properties;)V +MD: net/minecraft/world/item/WritableBookItem/m_43452_ (Lnet/minecraft/nbt/CompoundTag;)Z net/minecraft/world/item/WritableBookItem/makeSureTagIsValid (Lnet/minecraft/nbt/CompoundTag;)Z +MD: net/minecraft/world/item/WritableBookItem/m_6225_ (Lnet/minecraft/world/item/context/UseOnContext;)Lnet/minecraft/world/InteractionResult; net/minecraft/world/item/WritableBookItem/useOn (Lnet/minecraft/world/item/context/UseOnContext;)Lnet/minecraft/world/InteractionResult; +MD: net/minecraft/world/item/WritableBookItem/m_7203_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;)Lnet/minecraft/world/InteractionResultHolder; net/minecraft/world/item/WritableBookItem/use (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;)Lnet/minecraft/world/InteractionResultHolder; +MD: net/minecraft/world/item/WrittenBookItem/ (Lnet/minecraft/world/item/Item$Properties;)V net/minecraft/world/item/WrittenBookItem/ (Lnet/minecraft/world/item/Item$Properties;)V +MD: net/minecraft/world/item/WrittenBookItem/m_151248_ (Lnet/minecraft/commands/CommandSourceStack;Lnet/minecraft/world/entity/player/Player;Ljava/lang/String;)Ljava/lang/String; net/minecraft/world/item/WrittenBookItem/resolvePage (Lnet/minecraft/commands/CommandSourceStack;Lnet/minecraft/world/entity/player/Player;Ljava/lang/String;)Ljava/lang/String; +MD: net/minecraft/world/item/WrittenBookItem/m_43461_ (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/commands/CommandSourceStack;Lnet/minecraft/world/entity/player/Player;)Z net/minecraft/world/item/WrittenBookItem/resolveBookComponents (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/commands/CommandSourceStack;Lnet/minecraft/world/entity/player/Player;)Z +MD: net/minecraft/world/item/WrittenBookItem/m_43471_ (Lnet/minecraft/nbt/CompoundTag;)Z net/minecraft/world/item/WrittenBookItem/makeSureTagIsValid (Lnet/minecraft/nbt/CompoundTag;)Z +MD: net/minecraft/world/item/WrittenBookItem/m_43473_ (Lnet/minecraft/world/item/ItemStack;)I net/minecraft/world/item/WrittenBookItem/getGeneration (Lnet/minecraft/world/item/ItemStack;)I +MD: net/minecraft/world/item/WrittenBookItem/m_43477_ (Lnet/minecraft/world/item/ItemStack;)I net/minecraft/world/item/WrittenBookItem/getPageCount (Lnet/minecraft/world/item/ItemStack;)I +MD: net/minecraft/world/item/WrittenBookItem/m_5812_ (Lnet/minecraft/world/item/ItemStack;)Z net/minecraft/world/item/WrittenBookItem/isFoil (Lnet/minecraft/world/item/ItemStack;)Z +MD: net/minecraft/world/item/WrittenBookItem/m_6225_ (Lnet/minecraft/world/item/context/UseOnContext;)Lnet/minecraft/world/InteractionResult; net/minecraft/world/item/WrittenBookItem/useOn (Lnet/minecraft/world/item/context/UseOnContext;)Lnet/minecraft/world/InteractionResult; +MD: net/minecraft/world/item/WrittenBookItem/m_7203_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;)Lnet/minecraft/world/InteractionResultHolder; net/minecraft/world/item/WrittenBookItem/use (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;)Lnet/minecraft/world/InteractionResultHolder; +MD: net/minecraft/world/item/WrittenBookItem/m_7373_ (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/level/Level;Ljava/util/List;Lnet/minecraft/world/item/TooltipFlag;)V net/minecraft/world/item/WrittenBookItem/appendHoverText (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/level/Level;Ljava/util/List;Lnet/minecraft/world/item/TooltipFlag;)V +MD: net/minecraft/world/item/WrittenBookItem/m_7626_ (Lnet/minecraft/world/item/ItemStack;)Lnet/minecraft/network/chat/Component; net/minecraft/world/item/WrittenBookItem/getName (Lnet/minecraft/world/item/ItemStack;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/world/item/alchemy/Potion/ ([Lnet/minecraft/world/effect/MobEffectInstance;)V net/minecraft/world/item/alchemy/Potion/ ([Lnet/minecraft/world/effect/MobEffectInstance;)V +MD: net/minecraft/world/item/alchemy/Potion/ (Ljava/lang/String;[Lnet/minecraft/world/effect/MobEffectInstance;)V net/minecraft/world/item/alchemy/Potion/ (Ljava/lang/String;[Lnet/minecraft/world/effect/MobEffectInstance;)V +MD: net/minecraft/world/item/alchemy/Potion/m_43488_ ()Ljava/util/List; net/minecraft/world/item/alchemy/Potion/getEffects ()Ljava/util/List; +MD: net/minecraft/world/item/alchemy/Potion/m_43489_ (Ljava/lang/String;)Lnet/minecraft/world/item/alchemy/Potion; net/minecraft/world/item/alchemy/Potion/byName (Ljava/lang/String;)Lnet/minecraft/world/item/alchemy/Potion; +MD: net/minecraft/world/item/alchemy/Potion/m_43491_ ()Z net/minecraft/world/item/alchemy/Potion/hasInstantEffects ()Z +MD: net/minecraft/world/item/alchemy/Potion/m_43492_ (Ljava/lang/String;)Ljava/lang/String; net/minecraft/world/item/alchemy/Potion/getName (Ljava/lang/String;)Ljava/lang/String; +MD: net/minecraft/world/item/alchemy/PotionBrewing/ ()V net/minecraft/world/item/alchemy/PotionBrewing/ ()V +MD: net/minecraft/world/item/alchemy/PotionBrewing/ ()V net/minecraft/world/item/alchemy/PotionBrewing/ ()V +MD: net/minecraft/world/item/alchemy/PotionBrewing/m_43499_ ()V net/minecraft/world/item/alchemy/PotionBrewing/bootStrap ()V +MD: net/minecraft/world/item/alchemy/PotionBrewing/m_43500_ (Lnet/minecraft/world/item/Item;)V net/minecraft/world/item/alchemy/PotionBrewing/addContainer (Lnet/minecraft/world/item/Item;)V +MD: net/minecraft/world/item/alchemy/PotionBrewing/m_43502_ (Lnet/minecraft/world/item/Item;Lnet/minecraft/world/item/Item;Lnet/minecraft/world/item/Item;)V net/minecraft/world/item/alchemy/PotionBrewing/addContainerRecipe (Lnet/minecraft/world/item/Item;Lnet/minecraft/world/item/Item;Lnet/minecraft/world/item/Item;)V +MD: net/minecraft/world/item/alchemy/PotionBrewing/m_43506_ (Lnet/minecraft/world/item/ItemStack;)Z net/minecraft/world/item/alchemy/PotionBrewing/isIngredient (Lnet/minecraft/world/item/ItemStack;)Z +MD: net/minecraft/world/item/alchemy/PotionBrewing/m_43508_ (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/item/ItemStack;)Z net/minecraft/world/item/alchemy/PotionBrewing/hasMix (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/item/ItemStack;)Z +MD: net/minecraft/world/item/alchemy/PotionBrewing/m_43511_ (Lnet/minecraft/world/item/alchemy/Potion;)Z net/minecraft/world/item/alchemy/PotionBrewing/isBrewablePotion (Lnet/minecraft/world/item/alchemy/Potion;)Z +MD: net/minecraft/world/item/alchemy/PotionBrewing/m_43513_ (Lnet/minecraft/world/item/alchemy/Potion;Lnet/minecraft/world/item/Item;Lnet/minecraft/world/item/alchemy/Potion;)V net/minecraft/world/item/alchemy/PotionBrewing/addMix (Lnet/minecraft/world/item/alchemy/Potion;Lnet/minecraft/world/item/Item;Lnet/minecraft/world/item/alchemy/Potion;)V +MD: net/minecraft/world/item/alchemy/PotionBrewing/m_43517_ (Lnet/minecraft/world/item/ItemStack;)Z net/minecraft/world/item/alchemy/PotionBrewing/isContainerIngredient (Lnet/minecraft/world/item/ItemStack;)Z +MD: net/minecraft/world/item/alchemy/PotionBrewing/m_43519_ (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/item/ItemStack;)Z net/minecraft/world/item/alchemy/PotionBrewing/hasContainerMix (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/item/ItemStack;)Z +MD: net/minecraft/world/item/alchemy/PotionBrewing/m_43522_ (Lnet/minecraft/world/item/ItemStack;)Z net/minecraft/world/item/alchemy/PotionBrewing/isPotionIngredient (Lnet/minecraft/world/item/ItemStack;)Z +MD: net/minecraft/world/item/alchemy/PotionBrewing/m_43524_ (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/item/ItemStack;)Z net/minecraft/world/item/alchemy/PotionBrewing/hasPotionMix (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/item/ItemStack;)Z +MD: net/minecraft/world/item/alchemy/PotionBrewing/m_43527_ (Lnet/minecraft/world/item/ItemStack;)Z net/minecraft/world/item/alchemy/PotionBrewing/lambda$static$0 (Lnet/minecraft/world/item/ItemStack;)Z +MD: net/minecraft/world/item/alchemy/PotionBrewing/m_43529_ (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/item/ItemStack;)Lnet/minecraft/world/item/ItemStack; net/minecraft/world/item/alchemy/PotionBrewing/mix (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/item/ItemStack;)Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/item/alchemy/PotionBrewing$Mix/ (Ljava/lang/Object;Lnet/minecraft/world/item/crafting/Ingredient;Ljava/lang/Object;)V net/minecraft/world/item/alchemy/PotionBrewing$Mix/ (Ljava/lang/Object;Lnet/minecraft/world/item/crafting/Ingredient;Ljava/lang/Object;)V +MD: net/minecraft/world/item/alchemy/PotionUtils/ ()V net/minecraft/world/item/alchemy/PotionUtils/ ()V +MD: net/minecraft/world/item/alchemy/PotionUtils/ ()V net/minecraft/world/item/alchemy/PotionUtils/ ()V +MD: net/minecraft/world/item/alchemy/PotionUtils/m_257410_ (Ljava/util/List;Ljava/util/List;F)V net/minecraft/world/item/alchemy/PotionUtils/addPotionTooltip (Ljava/util/List;Ljava/util/List;F)V +MD: net/minecraft/world/item/alchemy/PotionUtils/m_43547_ (Lnet/minecraft/world/item/ItemStack;)Ljava/util/List; net/minecraft/world/item/alchemy/PotionUtils/getMobEffects (Lnet/minecraft/world/item/ItemStack;)Ljava/util/List; +MD: net/minecraft/world/item/alchemy/PotionUtils/m_43549_ (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/item/alchemy/Potion;)Lnet/minecraft/world/item/ItemStack; net/minecraft/world/item/alchemy/PotionUtils/setPotion (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/item/alchemy/Potion;)Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/item/alchemy/PotionUtils/m_43552_ (Lnet/minecraft/world/item/ItemStack;Ljava/util/Collection;)Lnet/minecraft/world/item/ItemStack; net/minecraft/world/item/alchemy/PotionUtils/setCustomEffects (Lnet/minecraft/world/item/ItemStack;Ljava/util/Collection;)Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/item/alchemy/PotionUtils/m_43555_ (Lnet/minecraft/world/item/ItemStack;Ljava/util/List;F)V net/minecraft/world/item/alchemy/PotionUtils/addPotionTooltip (Lnet/minecraft/world/item/ItemStack;Ljava/util/List;F)V +MD: net/minecraft/world/item/alchemy/PotionUtils/m_43559_ (Lnet/minecraft/world/item/alchemy/Potion;)I net/minecraft/world/item/alchemy/PotionUtils/getColor (Lnet/minecraft/world/item/alchemy/Potion;)I +MD: net/minecraft/world/item/alchemy/PotionUtils/m_43561_ (Lnet/minecraft/world/item/alchemy/Potion;Ljava/util/Collection;)Ljava/util/List; net/minecraft/world/item/alchemy/PotionUtils/getAllEffects (Lnet/minecraft/world/item/alchemy/Potion;Ljava/util/Collection;)Ljava/util/List; +MD: net/minecraft/world/item/alchemy/PotionUtils/m_43564_ (Ljava/util/Collection;)I net/minecraft/world/item/alchemy/PotionUtils/getColor (Ljava/util/Collection;)I +MD: net/minecraft/world/item/alchemy/PotionUtils/m_43566_ (Lnet/minecraft/nbt/CompoundTag;)Ljava/util/List; net/minecraft/world/item/alchemy/PotionUtils/getAllEffects (Lnet/minecraft/nbt/CompoundTag;)Ljava/util/List; +MD: net/minecraft/world/item/alchemy/PotionUtils/m_43568_ (Lnet/minecraft/nbt/CompoundTag;Ljava/util/List;)V net/minecraft/world/item/alchemy/PotionUtils/getCustomEffects (Lnet/minecraft/nbt/CompoundTag;Ljava/util/List;)V +MD: net/minecraft/world/item/alchemy/PotionUtils/m_43571_ (Lnet/minecraft/world/item/ItemStack;)Ljava/util/List; net/minecraft/world/item/alchemy/PotionUtils/getCustomEffects (Lnet/minecraft/world/item/ItemStack;)Ljava/util/List; +MD: net/minecraft/world/item/alchemy/PotionUtils/m_43573_ (Lnet/minecraft/nbt/CompoundTag;)Ljava/util/List; net/minecraft/world/item/alchemy/PotionUtils/getCustomEffects (Lnet/minecraft/nbt/CompoundTag;)Ljava/util/List; +MD: net/minecraft/world/item/alchemy/PotionUtils/m_43575_ (Lnet/minecraft/world/item/ItemStack;)I net/minecraft/world/item/alchemy/PotionUtils/getColor (Lnet/minecraft/world/item/ItemStack;)I +MD: net/minecraft/world/item/alchemy/PotionUtils/m_43577_ (Lnet/minecraft/nbt/CompoundTag;)Lnet/minecraft/world/item/alchemy/Potion; net/minecraft/world/item/alchemy/PotionUtils/getPotion (Lnet/minecraft/nbt/CompoundTag;)Lnet/minecraft/world/item/alchemy/Potion; +MD: net/minecraft/world/item/alchemy/PotionUtils/m_43579_ (Lnet/minecraft/world/item/ItemStack;)Lnet/minecraft/world/item/alchemy/Potion; net/minecraft/world/item/alchemy/PotionUtils/getPotion (Lnet/minecraft/world/item/ItemStack;)Lnet/minecraft/world/item/alchemy/Potion; +MD: net/minecraft/world/item/alchemy/Potions/ ()V net/minecraft/world/item/alchemy/Potions/ ()V +MD: net/minecraft/world/item/alchemy/Potions/ ()V net/minecraft/world/item/alchemy/Potions/ ()V +MD: net/minecraft/world/item/alchemy/Potions/m_269156_ (Lnet/minecraft/resources/ResourceKey;Lnet/minecraft/world/item/alchemy/Potion;)Lnet/minecraft/world/item/alchemy/Potion; net/minecraft/world/item/alchemy/Potions/register (Lnet/minecraft/resources/ResourceKey;Lnet/minecraft/world/item/alchemy/Potion;)Lnet/minecraft/world/item/alchemy/Potion; +MD: net/minecraft/world/item/alchemy/Potions/m_43625_ (Ljava/lang/String;Lnet/minecraft/world/item/alchemy/Potion;)Lnet/minecraft/world/item/alchemy/Potion; net/minecraft/world/item/alchemy/Potions/register (Ljava/lang/String;Lnet/minecraft/world/item/alchemy/Potion;)Lnet/minecraft/world/item/alchemy/Potion; +MD: net/minecraft/world/item/armortrim/ArmorTrim/ ()V net/minecraft/world/item/armortrim/ArmorTrim/ ()V +MD: net/minecraft/world/item/armortrim/ArmorTrim/ (Lnet/minecraft/core/Holder;Lnet/minecraft/core/Holder;)V net/minecraft/world/item/armortrim/ArmorTrim/ (Lnet/minecraft/core/Holder;Lnet/minecraft/core/Holder;)V +MD: net/minecraft/world/item/armortrim/ArmorTrim/equals (Ljava/lang/Object;)Z net/minecraft/world/item/armortrim/ArmorTrim/equals (Ljava/lang/Object;)Z +MD: net/minecraft/world/item/armortrim/ArmorTrim/m_266185_ (Ljava/lang/String;Ljava/lang/String;)Ljava/lang/String; net/minecraft/world/item/armortrim/ArmorTrim/lambda$new$3 (Ljava/lang/String;Ljava/lang/String;)Ljava/lang/String; +MD: net/minecraft/world/item/armortrim/ArmorTrim/m_266203_ (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/world/item/armortrim/ArmorTrim/lambda$static$0 (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/world/item/armortrim/ArmorTrim/m_266210_ ()Lnet/minecraft/core/Holder; net/minecraft/world/item/armortrim/ArmorTrim/material ()Lnet/minecraft/core/Holder; +MD: net/minecraft/world/item/armortrim/ArmorTrim/m_266246_ (Ljava/lang/String;Ljava/lang/String;)Ljava/lang/String; net/minecraft/world/item/armortrim/ArmorTrim/lambda$new$1 (Ljava/lang/String;Ljava/lang/String;)Ljava/lang/String; +MD: net/minecraft/world/item/armortrim/ArmorTrim/m_266285_ (Lnet/minecraft/core/RegistryAccess;Lnet/minecraft/world/item/ItemStack;)Ljava/util/Optional; net/minecraft/world/item/armortrim/ArmorTrim/getTrim (Lnet/minecraft/core/RegistryAccess;Lnet/minecraft/world/item/ItemStack;)Ljava/util/Optional; +MD: net/minecraft/world/item/armortrim/ArmorTrim/m_266357_ (Lnet/minecraft/core/Holder;Lnet/minecraft/core/Holder;)Z net/minecraft/world/item/armortrim/ArmorTrim/hasPatternAndMaterial (Lnet/minecraft/core/Holder;Lnet/minecraft/core/Holder;)Z +MD: net/minecraft/world/item/armortrim/ArmorTrim/m_266429_ ()Lnet/minecraft/core/Holder; net/minecraft/world/item/armortrim/ArmorTrim/pattern ()Lnet/minecraft/core/Holder; +MD: net/minecraft/world/item/armortrim/ArmorTrim/m_266563_ (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/core/RegistryAccess;Ljava/util/List;)V net/minecraft/world/item/armortrim/ArmorTrim/appendUpgradeHoverText (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/core/RegistryAccess;Ljava/util/List;)V +MD: net/minecraft/world/item/armortrim/ArmorTrim/m_266570_ (Lnet/minecraft/core/RegistryAccess;Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/item/armortrim/ArmorTrim;)Z net/minecraft/world/item/armortrim/ArmorTrim/setTrim (Lnet/minecraft/core/RegistryAccess;Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/item/armortrim/ArmorTrim;)Z +MD: net/minecraft/world/item/armortrim/ArmorTrim/m_267561_ (Lnet/minecraft/core/Holder;Lnet/minecraft/world/item/ArmorMaterial;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/world/item/armortrim/ArmorTrim/lambda$new$4 (Lnet/minecraft/core/Holder;Lnet/minecraft/world/item/ArmorMaterial;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/world/item/armortrim/ArmorTrim/m_267562_ (Lnet/minecraft/core/Holder;Lnet/minecraft/world/item/ArmorMaterial;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/world/item/armortrim/ArmorTrim/lambda$new$2 (Lnet/minecraft/core/Holder;Lnet/minecraft/world/item/ArmorMaterial;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/world/item/armortrim/ArmorTrim/m_267606_ (Lnet/minecraft/world/item/ArmorMaterial;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/world/item/armortrim/ArmorTrim/outerTexture (Lnet/minecraft/world/item/ArmorMaterial;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/world/item/armortrim/ArmorTrim/m_267648_ (Lnet/minecraft/world/item/ArmorMaterial;)Ljava/lang/String; net/minecraft/world/item/armortrim/ArmorTrim/getColorPaletteSuffix (Lnet/minecraft/world/item/ArmorMaterial;)Ljava/lang/String; +MD: net/minecraft/world/item/armortrim/ArmorTrim/m_267774_ (Lnet/minecraft/world/item/ArmorMaterial;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/world/item/armortrim/ArmorTrim/innerTexture (Lnet/minecraft/world/item/ArmorMaterial;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/world/item/armortrim/TrimMaterial/ ()V net/minecraft/world/item/armortrim/TrimMaterial/ ()V +MD: net/minecraft/world/item/armortrim/TrimMaterial/ (Ljava/lang/String;Lnet/minecraft/core/Holder;FLjava/util/Map;Lnet/minecraft/network/chat/Component;)V net/minecraft/world/item/armortrim/TrimMaterial/ (Ljava/lang/String;Lnet/minecraft/core/Holder;FLjava/util/Map;Lnet/minecraft/network/chat/Component;)V +MD: net/minecraft/world/item/armortrim/TrimMaterial/equals (Ljava/lang/Object;)Z net/minecraft/world/item/armortrim/TrimMaterial/equals (Ljava/lang/Object;)Z +MD: net/minecraft/world/item/armortrim/TrimMaterial/f_265854_ ()Ljava/lang/String; net/minecraft/world/item/armortrim/TrimMaterial/assetName ()Ljava/lang/String; +MD: net/minecraft/world/item/armortrim/TrimMaterial/f_265933_ ()F net/minecraft/world/item/armortrim/TrimMaterial/itemModelIndex ()F +MD: net/minecraft/world/item/armortrim/TrimMaterial/f_265970_ ()Lnet/minecraft/core/Holder; net/minecraft/world/item/armortrim/TrimMaterial/ingredient ()Lnet/minecraft/core/Holder; +MD: net/minecraft/world/item/armortrim/TrimMaterial/f_266021_ ()Lnet/minecraft/network/chat/Component; net/minecraft/world/item/armortrim/TrimMaterial/description ()Lnet/minecraft/network/chat/Component; +MD: net/minecraft/world/item/armortrim/TrimMaterial/f_267481_ ()Ljava/util/Map; net/minecraft/world/item/armortrim/TrimMaterial/overrideArmorMaterials ()Ljava/util/Map; +MD: net/minecraft/world/item/armortrim/TrimMaterial/hashCode ()I net/minecraft/world/item/armortrim/TrimMaterial/hashCode ()I +MD: net/minecraft/world/item/armortrim/TrimMaterial/m_267563_ (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/world/item/armortrim/TrimMaterial/lambda$static$0 (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/world/item/armortrim/TrimMaterial/m_267605_ (Ljava/lang/String;Lnet/minecraft/world/item/Item;FLnet/minecraft/network/chat/Component;Ljava/util/Map;)Lnet/minecraft/world/item/armortrim/TrimMaterial; net/minecraft/world/item/armortrim/TrimMaterial/create (Ljava/lang/String;Lnet/minecraft/world/item/Item;FLnet/minecraft/network/chat/Component;Ljava/util/Map;)Lnet/minecraft/world/item/armortrim/TrimMaterial; +MD: net/minecraft/world/item/armortrim/TrimMaterial/toString ()Ljava/lang/String; net/minecraft/world/item/armortrim/TrimMaterial/toString ()Ljava/lang/String; +MD: net/minecraft/world/item/armortrim/TrimMaterials/ ()V net/minecraft/world/item/armortrim/TrimMaterials/ ()V +MD: net/minecraft/world/item/armortrim/TrimMaterials/ ()V net/minecraft/world/item/armortrim/TrimMaterials/ ()V +MD: net/minecraft/world/item/armortrim/TrimMaterials/m_266224_ (Ljava/lang/String;)Lnet/minecraft/resources/ResourceKey; net/minecraft/world/item/armortrim/TrimMaterials/registryKey (Ljava/lang/String;)Lnet/minecraft/resources/ResourceKey; +MD: net/minecraft/world/item/armortrim/TrimMaterials/m_266279_ (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/core/Holder$Reference;)Z net/minecraft/world/item/armortrim/TrimMaterials/lambda$getFromIngredient$0 (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/core/Holder$Reference;)Z +MD: net/minecraft/world/item/armortrim/TrimMaterials/m_266479_ (Lnet/minecraft/data/worldgen/BootstapContext;)V net/minecraft/world/item/armortrim/TrimMaterials/bootstrap (Lnet/minecraft/data/worldgen/BootstapContext;)V +MD: net/minecraft/world/item/armortrim/TrimMaterials/m_266539_ (Lnet/minecraft/core/RegistryAccess;Lnet/minecraft/world/item/ItemStack;)Ljava/util/Optional; net/minecraft/world/item/armortrim/TrimMaterials/getFromIngredient (Lnet/minecraft/core/RegistryAccess;Lnet/minecraft/world/item/ItemStack;)Ljava/util/Optional; +MD: net/minecraft/world/item/armortrim/TrimMaterials/m_267736_ (Lnet/minecraft/data/worldgen/BootstapContext;Lnet/minecraft/resources/ResourceKey;Lnet/minecraft/world/item/Item;Lnet/minecraft/network/chat/Style;FLjava/util/Map;)V net/minecraft/world/item/armortrim/TrimMaterials/register (Lnet/minecraft/data/worldgen/BootstapContext;Lnet/minecraft/resources/ResourceKey;Lnet/minecraft/world/item/Item;Lnet/minecraft/network/chat/Style;FLjava/util/Map;)V +MD: net/minecraft/world/item/armortrim/TrimMaterials/m_267802_ (Lnet/minecraft/data/worldgen/BootstapContext;Lnet/minecraft/resources/ResourceKey;Lnet/minecraft/world/item/Item;Lnet/minecraft/network/chat/Style;F)V net/minecraft/world/item/armortrim/TrimMaterials/register (Lnet/minecraft/data/worldgen/BootstapContext;Lnet/minecraft/resources/ResourceKey;Lnet/minecraft/world/item/Item;Lnet/minecraft/network/chat/Style;F)V +MD: net/minecraft/world/item/armortrim/TrimPattern/ ()V net/minecraft/world/item/armortrim/TrimPattern/ ()V +MD: net/minecraft/world/item/armortrim/TrimPattern/ (Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/core/Holder;Lnet/minecraft/network/chat/Component;)V net/minecraft/world/item/armortrim/TrimPattern/ (Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/core/Holder;Lnet/minecraft/network/chat/Component;)V +MD: net/minecraft/world/item/armortrim/TrimPattern/equals (Ljava/lang/Object;)Z net/minecraft/world/item/armortrim/TrimPattern/equals (Ljava/lang/Object;)Z +MD: net/minecraft/world/item/armortrim/TrimPattern/f_265847_ ()Lnet/minecraft/core/Holder; net/minecraft/world/item/armortrim/TrimPattern/templateItem ()Lnet/minecraft/core/Holder; +MD: net/minecraft/world/item/armortrim/TrimPattern/f_265850_ ()Lnet/minecraft/network/chat/Component; net/minecraft/world/item/armortrim/TrimPattern/description ()Lnet/minecraft/network/chat/Component; +MD: net/minecraft/world/item/armortrim/TrimPattern/f_266052_ ()Lnet/minecraft/resources/ResourceLocation; net/minecraft/world/item/armortrim/TrimPattern/assetId ()Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/world/item/armortrim/TrimPattern/hashCode ()I net/minecraft/world/item/armortrim/TrimPattern/hashCode ()I +MD: net/minecraft/world/item/armortrim/TrimPattern/m_266379_ (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/world/item/armortrim/TrimPattern/lambda$static$0 (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/world/item/armortrim/TrimPattern/m_266463_ (Lnet/minecraft/core/Holder;)Lnet/minecraft/network/chat/Component; net/minecraft/world/item/armortrim/TrimPattern/copyWithStyle (Lnet/minecraft/core/Holder;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/world/item/armortrim/TrimPattern/toString ()Ljava/lang/String; net/minecraft/world/item/armortrim/TrimPattern/toString ()Ljava/lang/String; +MD: net/minecraft/world/item/armortrim/TrimPatterns/ ()V net/minecraft/world/item/armortrim/TrimPatterns/ ()V +MD: net/minecraft/world/item/armortrim/TrimPatterns/ ()V net/minecraft/world/item/armortrim/TrimPatterns/ ()V +MD: net/minecraft/world/item/armortrim/TrimPatterns/m_266160_ (Lnet/minecraft/data/worldgen/BootstapContext;Lnet/minecraft/world/item/Item;Lnet/minecraft/resources/ResourceKey;)V net/minecraft/world/item/armortrim/TrimPatterns/register (Lnet/minecraft/data/worldgen/BootstapContext;Lnet/minecraft/world/item/Item;Lnet/minecraft/resources/ResourceKey;)V +MD: net/minecraft/world/item/armortrim/TrimPatterns/m_266226_ (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/core/Holder$Reference;)Z net/minecraft/world/item/armortrim/TrimPatterns/lambda$getFromTemplate$0 (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/core/Holder$Reference;)Z +MD: net/minecraft/world/item/armortrim/TrimPatterns/m_266400_ (Lnet/minecraft/data/worldgen/BootstapContext;)V net/minecraft/world/item/armortrim/TrimPatterns/bootstrap (Lnet/minecraft/data/worldgen/BootstapContext;)V +MD: net/minecraft/world/item/armortrim/TrimPatterns/m_266452_ (Ljava/lang/String;)Lnet/minecraft/resources/ResourceKey; net/minecraft/world/item/armortrim/TrimPatterns/registryKey (Ljava/lang/String;)Lnet/minecraft/resources/ResourceKey; +MD: net/minecraft/world/item/armortrim/TrimPatterns/m_266468_ (Lnet/minecraft/core/RegistryAccess;Lnet/minecraft/world/item/ItemStack;)Ljava/util/Optional; net/minecraft/world/item/armortrim/TrimPatterns/getFromTemplate (Lnet/minecraft/core/RegistryAccess;Lnet/minecraft/world/item/ItemStack;)Ljava/util/Optional; +MD: net/minecraft/world/item/context/BlockPlaceContext/ (Lnet/minecraft/world/item/context/UseOnContext;)V net/minecraft/world/item/context/BlockPlaceContext/ (Lnet/minecraft/world/item/context/UseOnContext;)V +MD: net/minecraft/world/item/context/BlockPlaceContext/ (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/phys/BlockHitResult;)V net/minecraft/world/item/context/BlockPlaceContext/ (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/phys/BlockHitResult;)V +MD: net/minecraft/world/item/context/BlockPlaceContext/ (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/phys/BlockHitResult;)V net/minecraft/world/item/context/BlockPlaceContext/ (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/phys/BlockHitResult;)V +MD: net/minecraft/world/item/context/BlockPlaceContext/m_151260_ ()Lnet/minecraft/core/Direction; net/minecraft/world/item/context/BlockPlaceContext/getNearestLookingVerticalDirection ()Lnet/minecraft/core/Direction; +MD: net/minecraft/world/item/context/BlockPlaceContext/m_43644_ (Lnet/minecraft/world/item/context/BlockPlaceContext;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Direction;)Lnet/minecraft/world/item/context/BlockPlaceContext; net/minecraft/world/item/context/BlockPlaceContext/at (Lnet/minecraft/world/item/context/BlockPlaceContext;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Direction;)Lnet/minecraft/world/item/context/BlockPlaceContext; +MD: net/minecraft/world/item/context/BlockPlaceContext/m_6232_ ()[Lnet/minecraft/core/Direction; net/minecraft/world/item/context/BlockPlaceContext/getNearestLookingDirections ()[Lnet/minecraft/core/Direction; +MD: net/minecraft/world/item/context/BlockPlaceContext/m_7058_ ()Z net/minecraft/world/item/context/BlockPlaceContext/replacingClickedOnBlock ()Z +MD: net/minecraft/world/item/context/BlockPlaceContext/m_7059_ ()Z net/minecraft/world/item/context/BlockPlaceContext/canPlace ()Z +MD: net/minecraft/world/item/context/BlockPlaceContext/m_7820_ ()Lnet/minecraft/core/Direction; net/minecraft/world/item/context/BlockPlaceContext/getNearestLookingDirection ()Lnet/minecraft/core/Direction; +MD: net/minecraft/world/item/context/BlockPlaceContext/m_8083_ ()Lnet/minecraft/core/BlockPos; net/minecraft/world/item/context/BlockPlaceContext/getClickedPos ()Lnet/minecraft/core/BlockPos; +MD: net/minecraft/world/item/context/DirectionalPlaceContext/ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Direction;Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/core/Direction;)V net/minecraft/world/item/context/DirectionalPlaceContext/ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Direction;Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/core/Direction;)V +MD: net/minecraft/world/item/context/DirectionalPlaceContext/m_6232_ ()[Lnet/minecraft/core/Direction; net/minecraft/world/item/context/DirectionalPlaceContext/getNearestLookingDirections ()[Lnet/minecraft/core/Direction; +MD: net/minecraft/world/item/context/DirectionalPlaceContext/m_7058_ ()Z net/minecraft/world/item/context/DirectionalPlaceContext/replacingClickedOnBlock ()Z +MD: net/minecraft/world/item/context/DirectionalPlaceContext/m_7059_ ()Z net/minecraft/world/item/context/DirectionalPlaceContext/canPlace ()Z +MD: net/minecraft/world/item/context/DirectionalPlaceContext/m_7074_ ()F net/minecraft/world/item/context/DirectionalPlaceContext/getRotation ()F +MD: net/minecraft/world/item/context/DirectionalPlaceContext/m_7078_ ()Z net/minecraft/world/item/context/DirectionalPlaceContext/isSecondaryUseActive ()Z +MD: net/minecraft/world/item/context/DirectionalPlaceContext/m_7820_ ()Lnet/minecraft/core/Direction; net/minecraft/world/item/context/DirectionalPlaceContext/getNearestLookingDirection ()Lnet/minecraft/core/Direction; +MD: net/minecraft/world/item/context/DirectionalPlaceContext/m_8083_ ()Lnet/minecraft/core/BlockPos; net/minecraft/world/item/context/DirectionalPlaceContext/getClickedPos ()Lnet/minecraft/core/BlockPos; +MD: net/minecraft/world/item/context/DirectionalPlaceContext/m_8125_ ()Lnet/minecraft/core/Direction; net/minecraft/world/item/context/DirectionalPlaceContext/getHorizontalDirection ()Lnet/minecraft/core/Direction; +MD: net/minecraft/world/item/context/DirectionalPlaceContext$1/ ()V net/minecraft/world/item/context/DirectionalPlaceContext$1/ ()V +MD: net/minecraft/world/item/context/UseOnContext/ (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;Lnet/minecraft/world/phys/BlockHitResult;)V net/minecraft/world/item/context/UseOnContext/ (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;Lnet/minecraft/world/phys/BlockHitResult;)V +MD: net/minecraft/world/item/context/UseOnContext/ (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/phys/BlockHitResult;)V net/minecraft/world/item/context/UseOnContext/ (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/phys/BlockHitResult;)V +MD: net/minecraft/world/item/context/UseOnContext/m_43718_ ()Lnet/minecraft/world/phys/BlockHitResult; net/minecraft/world/item/context/UseOnContext/getHitResult ()Lnet/minecraft/world/phys/BlockHitResult; +MD: net/minecraft/world/item/context/UseOnContext/m_43719_ ()Lnet/minecraft/core/Direction; net/minecraft/world/item/context/UseOnContext/getClickedFace ()Lnet/minecraft/core/Direction; +MD: net/minecraft/world/item/context/UseOnContext/m_43720_ ()Lnet/minecraft/world/phys/Vec3; net/minecraft/world/item/context/UseOnContext/getClickLocation ()Lnet/minecraft/world/phys/Vec3; +MD: net/minecraft/world/item/context/UseOnContext/m_43721_ ()Z net/minecraft/world/item/context/UseOnContext/isInside ()Z +MD: net/minecraft/world/item/context/UseOnContext/m_43722_ ()Lnet/minecraft/world/item/ItemStack; net/minecraft/world/item/context/UseOnContext/getItemInHand ()Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/item/context/UseOnContext/m_43723_ ()Lnet/minecraft/world/entity/player/Player; net/minecraft/world/item/context/UseOnContext/getPlayer ()Lnet/minecraft/world/entity/player/Player; +MD: net/minecraft/world/item/context/UseOnContext/m_43724_ ()Lnet/minecraft/world/InteractionHand; net/minecraft/world/item/context/UseOnContext/getHand ()Lnet/minecraft/world/InteractionHand; +MD: net/minecraft/world/item/context/UseOnContext/m_43725_ ()Lnet/minecraft/world/level/Level; net/minecraft/world/item/context/UseOnContext/getLevel ()Lnet/minecraft/world/level/Level; +MD: net/minecraft/world/item/context/UseOnContext/m_7074_ ()F net/minecraft/world/item/context/UseOnContext/getRotation ()F +MD: net/minecraft/world/item/context/UseOnContext/m_7078_ ()Z net/minecraft/world/item/context/UseOnContext/isSecondaryUseActive ()Z +MD: net/minecraft/world/item/context/UseOnContext/m_8083_ ()Lnet/minecraft/core/BlockPos; net/minecraft/world/item/context/UseOnContext/getClickedPos ()Lnet/minecraft/core/BlockPos; +MD: net/minecraft/world/item/context/UseOnContext/m_8125_ ()Lnet/minecraft/core/Direction; net/minecraft/world/item/context/UseOnContext/getHorizontalDirection ()Lnet/minecraft/core/Direction; +MD: net/minecraft/world/item/crafting/AbstractCookingRecipe/ (Lnet/minecraft/world/item/crafting/RecipeType;Lnet/minecraft/resources/ResourceLocation;Ljava/lang/String;Lnet/minecraft/world/item/crafting/CookingBookCategory;Lnet/minecraft/world/item/crafting/Ingredient;Lnet/minecraft/world/item/ItemStack;FI)V net/minecraft/world/item/crafting/AbstractCookingRecipe/ (Lnet/minecraft/world/item/crafting/RecipeType;Lnet/minecraft/resources/ResourceLocation;Ljava/lang/String;Lnet/minecraft/world/item/crafting/CookingBookCategory;Lnet/minecraft/world/item/crafting/Ingredient;Lnet/minecraft/world/item/ItemStack;FI)V +MD: net/minecraft/world/item/crafting/AbstractCookingRecipe/m_245534_ ()Lnet/minecraft/world/item/crafting/CookingBookCategory; net/minecraft/world/item/crafting/AbstractCookingRecipe/category ()Lnet/minecraft/world/item/crafting/CookingBookCategory; +MD: net/minecraft/world/item/crafting/AbstractCookingRecipe/m_43750_ ()F net/minecraft/world/item/crafting/AbstractCookingRecipe/getExperience ()F +MD: net/minecraft/world/item/crafting/AbstractCookingRecipe/m_43753_ ()I net/minecraft/world/item/crafting/AbstractCookingRecipe/getCookingTime ()I +MD: net/minecraft/world/item/crafting/AbstractCookingRecipe/m_5818_ (Lnet/minecraft/world/Container;Lnet/minecraft/world/level/Level;)Z net/minecraft/world/item/crafting/AbstractCookingRecipe/matches (Lnet/minecraft/world/Container;Lnet/minecraft/world/level/Level;)Z +MD: net/minecraft/world/item/crafting/AbstractCookingRecipe/m_5874_ (Lnet/minecraft/world/Container;Lnet/minecraft/core/RegistryAccess;)Lnet/minecraft/world/item/ItemStack; net/minecraft/world/item/crafting/AbstractCookingRecipe/assemble (Lnet/minecraft/world/Container;Lnet/minecraft/core/RegistryAccess;)Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/item/crafting/AbstractCookingRecipe/m_6076_ ()Ljava/lang/String; net/minecraft/world/item/crafting/AbstractCookingRecipe/getGroup ()Ljava/lang/String; +MD: net/minecraft/world/item/crafting/AbstractCookingRecipe/m_6423_ ()Lnet/minecraft/resources/ResourceLocation; net/minecraft/world/item/crafting/AbstractCookingRecipe/getId ()Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/world/item/crafting/AbstractCookingRecipe/m_6671_ ()Lnet/minecraft/world/item/crafting/RecipeType; net/minecraft/world/item/crafting/AbstractCookingRecipe/getType ()Lnet/minecraft/world/item/crafting/RecipeType; +MD: net/minecraft/world/item/crafting/AbstractCookingRecipe/m_7527_ ()Lnet/minecraft/core/NonNullList; net/minecraft/world/item/crafting/AbstractCookingRecipe/getIngredients ()Lnet/minecraft/core/NonNullList; +MD: net/minecraft/world/item/crafting/AbstractCookingRecipe/m_8004_ (II)Z net/minecraft/world/item/crafting/AbstractCookingRecipe/canCraftInDimensions (II)Z +MD: net/minecraft/world/item/crafting/AbstractCookingRecipe/m_8043_ (Lnet/minecraft/core/RegistryAccess;)Lnet/minecraft/world/item/ItemStack; net/minecraft/world/item/crafting/AbstractCookingRecipe/getResultItem (Lnet/minecraft/core/RegistryAccess;)Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/item/crafting/ArmorDyeRecipe/ (Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/world/item/crafting/CraftingBookCategory;)V net/minecraft/world/item/crafting/ArmorDyeRecipe/ (Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/world/item/crafting/CraftingBookCategory;)V +MD: net/minecraft/world/item/crafting/ArmorDyeRecipe/m_5818_ (Lnet/minecraft/world/Container;Lnet/minecraft/world/level/Level;)Z net/minecraft/world/item/crafting/ArmorDyeRecipe/matches (Lnet/minecraft/world/Container;Lnet/minecraft/world/level/Level;)Z +MD: net/minecraft/world/item/crafting/ArmorDyeRecipe/m_5818_ (Lnet/minecraft/world/inventory/CraftingContainer;Lnet/minecraft/world/level/Level;)Z net/minecraft/world/item/crafting/ArmorDyeRecipe/matches (Lnet/minecraft/world/inventory/CraftingContainer;Lnet/minecraft/world/level/Level;)Z +MD: net/minecraft/world/item/crafting/ArmorDyeRecipe/m_5874_ (Lnet/minecraft/world/inventory/CraftingContainer;Lnet/minecraft/core/RegistryAccess;)Lnet/minecraft/world/item/ItemStack; net/minecraft/world/item/crafting/ArmorDyeRecipe/assemble (Lnet/minecraft/world/inventory/CraftingContainer;Lnet/minecraft/core/RegistryAccess;)Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/item/crafting/ArmorDyeRecipe/m_5874_ (Lnet/minecraft/world/Container;Lnet/minecraft/core/RegistryAccess;)Lnet/minecraft/world/item/ItemStack; net/minecraft/world/item/crafting/ArmorDyeRecipe/assemble (Lnet/minecraft/world/Container;Lnet/minecraft/core/RegistryAccess;)Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/item/crafting/ArmorDyeRecipe/m_7707_ ()Lnet/minecraft/world/item/crafting/RecipeSerializer; net/minecraft/world/item/crafting/ArmorDyeRecipe/getSerializer ()Lnet/minecraft/world/item/crafting/RecipeSerializer; +MD: net/minecraft/world/item/crafting/ArmorDyeRecipe/m_8004_ (II)Z net/minecraft/world/item/crafting/ArmorDyeRecipe/canCraftInDimensions (II)Z +MD: net/minecraft/world/item/crafting/BannerDuplicateRecipe/ (Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/world/item/crafting/CraftingBookCategory;)V net/minecraft/world/item/crafting/BannerDuplicateRecipe/ (Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/world/item/crafting/CraftingBookCategory;)V +MD: net/minecraft/world/item/crafting/BannerDuplicateRecipe/m_5818_ (Lnet/minecraft/world/Container;Lnet/minecraft/world/level/Level;)Z net/minecraft/world/item/crafting/BannerDuplicateRecipe/matches (Lnet/minecraft/world/Container;Lnet/minecraft/world/level/Level;)Z +MD: net/minecraft/world/item/crafting/BannerDuplicateRecipe/m_5818_ (Lnet/minecraft/world/inventory/CraftingContainer;Lnet/minecraft/world/level/Level;)Z net/minecraft/world/item/crafting/BannerDuplicateRecipe/matches (Lnet/minecraft/world/inventory/CraftingContainer;Lnet/minecraft/world/level/Level;)Z +MD: net/minecraft/world/item/crafting/BannerDuplicateRecipe/m_5874_ (Lnet/minecraft/world/inventory/CraftingContainer;Lnet/minecraft/core/RegistryAccess;)Lnet/minecraft/world/item/ItemStack; net/minecraft/world/item/crafting/BannerDuplicateRecipe/assemble (Lnet/minecraft/world/inventory/CraftingContainer;Lnet/minecraft/core/RegistryAccess;)Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/item/crafting/BannerDuplicateRecipe/m_5874_ (Lnet/minecraft/world/Container;Lnet/minecraft/core/RegistryAccess;)Lnet/minecraft/world/item/ItemStack; net/minecraft/world/item/crafting/BannerDuplicateRecipe/assemble (Lnet/minecraft/world/Container;Lnet/minecraft/core/RegistryAccess;)Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/item/crafting/BannerDuplicateRecipe/m_7457_ (Lnet/minecraft/world/inventory/CraftingContainer;)Lnet/minecraft/core/NonNullList; net/minecraft/world/item/crafting/BannerDuplicateRecipe/getRemainingItems (Lnet/minecraft/world/inventory/CraftingContainer;)Lnet/minecraft/core/NonNullList; +MD: net/minecraft/world/item/crafting/BannerDuplicateRecipe/m_7457_ (Lnet/minecraft/world/Container;)Lnet/minecraft/core/NonNullList; net/minecraft/world/item/crafting/BannerDuplicateRecipe/getRemainingItems (Lnet/minecraft/world/Container;)Lnet/minecraft/core/NonNullList; +MD: net/minecraft/world/item/crafting/BannerDuplicateRecipe/m_7707_ ()Lnet/minecraft/world/item/crafting/RecipeSerializer; net/minecraft/world/item/crafting/BannerDuplicateRecipe/getSerializer ()Lnet/minecraft/world/item/crafting/RecipeSerializer; +MD: net/minecraft/world/item/crafting/BannerDuplicateRecipe/m_8004_ (II)Z net/minecraft/world/item/crafting/BannerDuplicateRecipe/canCraftInDimensions (II)Z +MD: net/minecraft/world/item/crafting/BlastingRecipe/ (Lnet/minecraft/resources/ResourceLocation;Ljava/lang/String;Lnet/minecraft/world/item/crafting/CookingBookCategory;Lnet/minecraft/world/item/crafting/Ingredient;Lnet/minecraft/world/item/ItemStack;FI)V net/minecraft/world/item/crafting/BlastingRecipe/ (Lnet/minecraft/resources/ResourceLocation;Ljava/lang/String;Lnet/minecraft/world/item/crafting/CookingBookCategory;Lnet/minecraft/world/item/crafting/Ingredient;Lnet/minecraft/world/item/ItemStack;FI)V +MD: net/minecraft/world/item/crafting/BlastingRecipe/m_7707_ ()Lnet/minecraft/world/item/crafting/RecipeSerializer; net/minecraft/world/item/crafting/BlastingRecipe/getSerializer ()Lnet/minecraft/world/item/crafting/RecipeSerializer; +MD: net/minecraft/world/item/crafting/BlastingRecipe/m_8042_ ()Lnet/minecraft/world/item/ItemStack; net/minecraft/world/item/crafting/BlastingRecipe/getToastSymbol ()Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/item/crafting/BookCloningRecipe/ (Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/world/item/crafting/CraftingBookCategory;)V net/minecraft/world/item/crafting/BookCloningRecipe/ (Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/world/item/crafting/CraftingBookCategory;)V +MD: net/minecraft/world/item/crafting/BookCloningRecipe/m_5818_ (Lnet/minecraft/world/Container;Lnet/minecraft/world/level/Level;)Z net/minecraft/world/item/crafting/BookCloningRecipe/matches (Lnet/minecraft/world/Container;Lnet/minecraft/world/level/Level;)Z +MD: net/minecraft/world/item/crafting/BookCloningRecipe/m_5818_ (Lnet/minecraft/world/inventory/CraftingContainer;Lnet/minecraft/world/level/Level;)Z net/minecraft/world/item/crafting/BookCloningRecipe/matches (Lnet/minecraft/world/inventory/CraftingContainer;Lnet/minecraft/world/level/Level;)Z +MD: net/minecraft/world/item/crafting/BookCloningRecipe/m_5874_ (Lnet/minecraft/world/inventory/CraftingContainer;Lnet/minecraft/core/RegistryAccess;)Lnet/minecraft/world/item/ItemStack; net/minecraft/world/item/crafting/BookCloningRecipe/assemble (Lnet/minecraft/world/inventory/CraftingContainer;Lnet/minecraft/core/RegistryAccess;)Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/item/crafting/BookCloningRecipe/m_5874_ (Lnet/minecraft/world/Container;Lnet/minecraft/core/RegistryAccess;)Lnet/minecraft/world/item/ItemStack; net/minecraft/world/item/crafting/BookCloningRecipe/assemble (Lnet/minecraft/world/Container;Lnet/minecraft/core/RegistryAccess;)Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/item/crafting/BookCloningRecipe/m_7457_ (Lnet/minecraft/world/inventory/CraftingContainer;)Lnet/minecraft/core/NonNullList; net/minecraft/world/item/crafting/BookCloningRecipe/getRemainingItems (Lnet/minecraft/world/inventory/CraftingContainer;)Lnet/minecraft/core/NonNullList; +MD: net/minecraft/world/item/crafting/BookCloningRecipe/m_7457_ (Lnet/minecraft/world/Container;)Lnet/minecraft/core/NonNullList; net/minecraft/world/item/crafting/BookCloningRecipe/getRemainingItems (Lnet/minecraft/world/Container;)Lnet/minecraft/core/NonNullList; +MD: net/minecraft/world/item/crafting/BookCloningRecipe/m_7707_ ()Lnet/minecraft/world/item/crafting/RecipeSerializer; net/minecraft/world/item/crafting/BookCloningRecipe/getSerializer ()Lnet/minecraft/world/item/crafting/RecipeSerializer; +MD: net/minecraft/world/item/crafting/BookCloningRecipe/m_8004_ (II)Z net/minecraft/world/item/crafting/BookCloningRecipe/canCraftInDimensions (II)Z +MD: net/minecraft/world/item/crafting/CampfireCookingRecipe/ (Lnet/minecraft/resources/ResourceLocation;Ljava/lang/String;Lnet/minecraft/world/item/crafting/CookingBookCategory;Lnet/minecraft/world/item/crafting/Ingredient;Lnet/minecraft/world/item/ItemStack;FI)V net/minecraft/world/item/crafting/CampfireCookingRecipe/ (Lnet/minecraft/resources/ResourceLocation;Ljava/lang/String;Lnet/minecraft/world/item/crafting/CookingBookCategory;Lnet/minecraft/world/item/crafting/Ingredient;Lnet/minecraft/world/item/ItemStack;FI)V +MD: net/minecraft/world/item/crafting/CampfireCookingRecipe/m_7707_ ()Lnet/minecraft/world/item/crafting/RecipeSerializer; net/minecraft/world/item/crafting/CampfireCookingRecipe/getSerializer ()Lnet/minecraft/world/item/crafting/RecipeSerializer; +MD: net/minecraft/world/item/crafting/CampfireCookingRecipe/m_8042_ ()Lnet/minecraft/world/item/ItemStack; net/minecraft/world/item/crafting/CampfireCookingRecipe/getToastSymbol ()Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/item/crafting/CookingBookCategory/ ()V net/minecraft/world/item/crafting/CookingBookCategory/ ()V +MD: net/minecraft/world/item/crafting/CookingBookCategory/ (Ljava/lang/String;ILjava/lang/String;)V net/minecraft/world/item/crafting/CookingBookCategory/ (Ljava/lang/String;ILjava/lang/String;)V +MD: net/minecraft/world/item/crafting/CookingBookCategory/m_247680_ ()[Lnet/minecraft/world/item/crafting/CookingBookCategory; net/minecraft/world/item/crafting/CookingBookCategory/$values ()[Lnet/minecraft/world/item/crafting/CookingBookCategory; +MD: net/minecraft/world/item/crafting/CookingBookCategory/m_7912_ ()Ljava/lang/String; net/minecraft/world/item/crafting/CookingBookCategory/getSerializedName ()Ljava/lang/String; +MD: net/minecraft/world/item/crafting/CookingBookCategory/valueOf (Ljava/lang/String;)Lnet/minecraft/world/item/crafting/CookingBookCategory; net/minecraft/world/item/crafting/CookingBookCategory/valueOf (Ljava/lang/String;)Lnet/minecraft/world/item/crafting/CookingBookCategory; +MD: net/minecraft/world/item/crafting/CookingBookCategory/values ()[Lnet/minecraft/world/item/crafting/CookingBookCategory; net/minecraft/world/item/crafting/CookingBookCategory/values ()[Lnet/minecraft/world/item/crafting/CookingBookCategory; +MD: net/minecraft/world/item/crafting/CraftingBookCategory/ ()V net/minecraft/world/item/crafting/CraftingBookCategory/ ()V +MD: net/minecraft/world/item/crafting/CraftingBookCategory/ (Ljava/lang/String;ILjava/lang/String;)V net/minecraft/world/item/crafting/CraftingBookCategory/ (Ljava/lang/String;ILjava/lang/String;)V +MD: net/minecraft/world/item/crafting/CraftingBookCategory/m_245314_ ()[Lnet/minecraft/world/item/crafting/CraftingBookCategory; net/minecraft/world/item/crafting/CraftingBookCategory/$values ()[Lnet/minecraft/world/item/crafting/CraftingBookCategory; +MD: net/minecraft/world/item/crafting/CraftingBookCategory/m_7912_ ()Ljava/lang/String; net/minecraft/world/item/crafting/CraftingBookCategory/getSerializedName ()Ljava/lang/String; +MD: net/minecraft/world/item/crafting/CraftingBookCategory/valueOf (Ljava/lang/String;)Lnet/minecraft/world/item/crafting/CraftingBookCategory; net/minecraft/world/item/crafting/CraftingBookCategory/valueOf (Ljava/lang/String;)Lnet/minecraft/world/item/crafting/CraftingBookCategory; +MD: net/minecraft/world/item/crafting/CraftingBookCategory/values ()[Lnet/minecraft/world/item/crafting/CraftingBookCategory; net/minecraft/world/item/crafting/CraftingBookCategory/values ()[Lnet/minecraft/world/item/crafting/CraftingBookCategory; +MD: net/minecraft/world/item/crafting/CraftingRecipe/m_245232_ ()Lnet/minecraft/world/item/crafting/CraftingBookCategory; net/minecraft/world/item/crafting/CraftingRecipe/category ()Lnet/minecraft/world/item/crafting/CraftingBookCategory; +MD: net/minecraft/world/item/crafting/CraftingRecipe/m_6671_ ()Lnet/minecraft/world/item/crafting/RecipeType; net/minecraft/world/item/crafting/CraftingRecipe/getType ()Lnet/minecraft/world/item/crafting/RecipeType; +MD: net/minecraft/world/item/crafting/CustomRecipe/ (Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/world/item/crafting/CraftingBookCategory;)V net/minecraft/world/item/crafting/CustomRecipe/ (Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/world/item/crafting/CraftingBookCategory;)V +MD: net/minecraft/world/item/crafting/CustomRecipe/m_245232_ ()Lnet/minecraft/world/item/crafting/CraftingBookCategory; net/minecraft/world/item/crafting/CustomRecipe/category ()Lnet/minecraft/world/item/crafting/CraftingBookCategory; +MD: net/minecraft/world/item/crafting/CustomRecipe/m_5598_ ()Z net/minecraft/world/item/crafting/CustomRecipe/isSpecial ()Z +MD: net/minecraft/world/item/crafting/CustomRecipe/m_6423_ ()Lnet/minecraft/resources/ResourceLocation; net/minecraft/world/item/crafting/CustomRecipe/getId ()Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/world/item/crafting/CustomRecipe/m_8043_ (Lnet/minecraft/core/RegistryAccess;)Lnet/minecraft/world/item/ItemStack; net/minecraft/world/item/crafting/CustomRecipe/getResultItem (Lnet/minecraft/core/RegistryAccess;)Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/item/crafting/DecoratedPotRecipe/ (Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/world/item/crafting/CraftingBookCategory;)V net/minecraft/world/item/crafting/DecoratedPotRecipe/ (Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/world/item/crafting/CraftingBookCategory;)V +MD: net/minecraft/world/item/crafting/DecoratedPotRecipe/m_284234_ (Lnet/minecraft/world/level/block/entity/DecoratedPotBlockEntity$Decorations;)Lnet/minecraft/world/item/ItemStack; net/minecraft/world/item/crafting/DecoratedPotRecipe/createDecoratedPotItem (Lnet/minecraft/world/level/block/entity/DecoratedPotBlockEntity$Decorations;)Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/item/crafting/DecoratedPotRecipe/m_5818_ (Lnet/minecraft/world/Container;Lnet/minecraft/world/level/Level;)Z net/minecraft/world/item/crafting/DecoratedPotRecipe/matches (Lnet/minecraft/world/Container;Lnet/minecraft/world/level/Level;)Z +MD: net/minecraft/world/item/crafting/DecoratedPotRecipe/m_5818_ (Lnet/minecraft/world/inventory/CraftingContainer;Lnet/minecraft/world/level/Level;)Z net/minecraft/world/item/crafting/DecoratedPotRecipe/matches (Lnet/minecraft/world/inventory/CraftingContainer;Lnet/minecraft/world/level/Level;)Z +MD: net/minecraft/world/item/crafting/DecoratedPotRecipe/m_5874_ (Lnet/minecraft/world/inventory/CraftingContainer;Lnet/minecraft/core/RegistryAccess;)Lnet/minecraft/world/item/ItemStack; net/minecraft/world/item/crafting/DecoratedPotRecipe/assemble (Lnet/minecraft/world/inventory/CraftingContainer;Lnet/minecraft/core/RegistryAccess;)Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/item/crafting/DecoratedPotRecipe/m_5874_ (Lnet/minecraft/world/Container;Lnet/minecraft/core/RegistryAccess;)Lnet/minecraft/world/item/ItemStack; net/minecraft/world/item/crafting/DecoratedPotRecipe/assemble (Lnet/minecraft/world/Container;Lnet/minecraft/core/RegistryAccess;)Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/item/crafting/DecoratedPotRecipe/m_7707_ ()Lnet/minecraft/world/item/crafting/RecipeSerializer; net/minecraft/world/item/crafting/DecoratedPotRecipe/getSerializer ()Lnet/minecraft/world/item/crafting/RecipeSerializer; +MD: net/minecraft/world/item/crafting/DecoratedPotRecipe/m_8004_ (II)Z net/minecraft/world/item/crafting/DecoratedPotRecipe/canCraftInDimensions (II)Z +MD: net/minecraft/world/item/crafting/FireworkRocketRecipe/ ()V net/minecraft/world/item/crafting/FireworkRocketRecipe/ ()V +MD: net/minecraft/world/item/crafting/FireworkRocketRecipe/ (Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/world/item/crafting/CraftingBookCategory;)V net/minecraft/world/item/crafting/FireworkRocketRecipe/ (Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/world/item/crafting/CraftingBookCategory;)V +MD: net/minecraft/world/item/crafting/FireworkRocketRecipe/m_5818_ (Lnet/minecraft/world/Container;Lnet/minecraft/world/level/Level;)Z net/minecraft/world/item/crafting/FireworkRocketRecipe/matches (Lnet/minecraft/world/Container;Lnet/minecraft/world/level/Level;)Z +MD: net/minecraft/world/item/crafting/FireworkRocketRecipe/m_5818_ (Lnet/minecraft/world/inventory/CraftingContainer;Lnet/minecraft/world/level/Level;)Z net/minecraft/world/item/crafting/FireworkRocketRecipe/matches (Lnet/minecraft/world/inventory/CraftingContainer;Lnet/minecraft/world/level/Level;)Z +MD: net/minecraft/world/item/crafting/FireworkRocketRecipe/m_5874_ (Lnet/minecraft/world/inventory/CraftingContainer;Lnet/minecraft/core/RegistryAccess;)Lnet/minecraft/world/item/ItemStack; net/minecraft/world/item/crafting/FireworkRocketRecipe/assemble (Lnet/minecraft/world/inventory/CraftingContainer;Lnet/minecraft/core/RegistryAccess;)Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/item/crafting/FireworkRocketRecipe/m_5874_ (Lnet/minecraft/world/Container;Lnet/minecraft/core/RegistryAccess;)Lnet/minecraft/world/item/ItemStack; net/minecraft/world/item/crafting/FireworkRocketRecipe/assemble (Lnet/minecraft/world/Container;Lnet/minecraft/core/RegistryAccess;)Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/item/crafting/FireworkRocketRecipe/m_7707_ ()Lnet/minecraft/world/item/crafting/RecipeSerializer; net/minecraft/world/item/crafting/FireworkRocketRecipe/getSerializer ()Lnet/minecraft/world/item/crafting/RecipeSerializer; +MD: net/minecraft/world/item/crafting/FireworkRocketRecipe/m_8004_ (II)Z net/minecraft/world/item/crafting/FireworkRocketRecipe/canCraftInDimensions (II)Z +MD: net/minecraft/world/item/crafting/FireworkRocketRecipe/m_8043_ (Lnet/minecraft/core/RegistryAccess;)Lnet/minecraft/world/item/ItemStack; net/minecraft/world/item/crafting/FireworkRocketRecipe/getResultItem (Lnet/minecraft/core/RegistryAccess;)Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/item/crafting/FireworkStarFadeRecipe/ ()V net/minecraft/world/item/crafting/FireworkStarFadeRecipe/ ()V +MD: net/minecraft/world/item/crafting/FireworkStarFadeRecipe/ (Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/world/item/crafting/CraftingBookCategory;)V net/minecraft/world/item/crafting/FireworkStarFadeRecipe/ (Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/world/item/crafting/CraftingBookCategory;)V +MD: net/minecraft/world/item/crafting/FireworkStarFadeRecipe/m_5818_ (Lnet/minecraft/world/Container;Lnet/minecraft/world/level/Level;)Z net/minecraft/world/item/crafting/FireworkStarFadeRecipe/matches (Lnet/minecraft/world/Container;Lnet/minecraft/world/level/Level;)Z +MD: net/minecraft/world/item/crafting/FireworkStarFadeRecipe/m_5818_ (Lnet/minecraft/world/inventory/CraftingContainer;Lnet/minecraft/world/level/Level;)Z net/minecraft/world/item/crafting/FireworkStarFadeRecipe/matches (Lnet/minecraft/world/inventory/CraftingContainer;Lnet/minecraft/world/level/Level;)Z +MD: net/minecraft/world/item/crafting/FireworkStarFadeRecipe/m_5874_ (Lnet/minecraft/world/inventory/CraftingContainer;Lnet/minecraft/core/RegistryAccess;)Lnet/minecraft/world/item/ItemStack; net/minecraft/world/item/crafting/FireworkStarFadeRecipe/assemble (Lnet/minecraft/world/inventory/CraftingContainer;Lnet/minecraft/core/RegistryAccess;)Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/item/crafting/FireworkStarFadeRecipe/m_5874_ (Lnet/minecraft/world/Container;Lnet/minecraft/core/RegistryAccess;)Lnet/minecraft/world/item/ItemStack; net/minecraft/world/item/crafting/FireworkStarFadeRecipe/assemble (Lnet/minecraft/world/Container;Lnet/minecraft/core/RegistryAccess;)Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/item/crafting/FireworkStarFadeRecipe/m_7707_ ()Lnet/minecraft/world/item/crafting/RecipeSerializer; net/minecraft/world/item/crafting/FireworkStarFadeRecipe/getSerializer ()Lnet/minecraft/world/item/crafting/RecipeSerializer; +MD: net/minecraft/world/item/crafting/FireworkStarFadeRecipe/m_8004_ (II)Z net/minecraft/world/item/crafting/FireworkStarFadeRecipe/canCraftInDimensions (II)Z +MD: net/minecraft/world/item/crafting/FireworkStarRecipe/ ()V net/minecraft/world/item/crafting/FireworkStarRecipe/ ()V +MD: net/minecraft/world/item/crafting/FireworkStarRecipe/ (Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/world/item/crafting/CraftingBookCategory;)V net/minecraft/world/item/crafting/FireworkStarRecipe/ (Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/world/item/crafting/CraftingBookCategory;)V +MD: net/minecraft/world/item/crafting/FireworkStarRecipe/m_260791_ (Ljava/util/HashMap;)V net/minecraft/world/item/crafting/FireworkStarRecipe/lambda$static$0 (Ljava/util/HashMap;)V +MD: net/minecraft/world/item/crafting/FireworkStarRecipe/m_5818_ (Lnet/minecraft/world/Container;Lnet/minecraft/world/level/Level;)Z net/minecraft/world/item/crafting/FireworkStarRecipe/matches (Lnet/minecraft/world/Container;Lnet/minecraft/world/level/Level;)Z +MD: net/minecraft/world/item/crafting/FireworkStarRecipe/m_5818_ (Lnet/minecraft/world/inventory/CraftingContainer;Lnet/minecraft/world/level/Level;)Z net/minecraft/world/item/crafting/FireworkStarRecipe/matches (Lnet/minecraft/world/inventory/CraftingContainer;Lnet/minecraft/world/level/Level;)Z +MD: net/minecraft/world/item/crafting/FireworkStarRecipe/m_5874_ (Lnet/minecraft/world/inventory/CraftingContainer;Lnet/minecraft/core/RegistryAccess;)Lnet/minecraft/world/item/ItemStack; net/minecraft/world/item/crafting/FireworkStarRecipe/assemble (Lnet/minecraft/world/inventory/CraftingContainer;Lnet/minecraft/core/RegistryAccess;)Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/item/crafting/FireworkStarRecipe/m_5874_ (Lnet/minecraft/world/Container;Lnet/minecraft/core/RegistryAccess;)Lnet/minecraft/world/item/ItemStack; net/minecraft/world/item/crafting/FireworkStarRecipe/assemble (Lnet/minecraft/world/Container;Lnet/minecraft/core/RegistryAccess;)Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/item/crafting/FireworkStarRecipe/m_7707_ ()Lnet/minecraft/world/item/crafting/RecipeSerializer; net/minecraft/world/item/crafting/FireworkStarRecipe/getSerializer ()Lnet/minecraft/world/item/crafting/RecipeSerializer; +MD: net/minecraft/world/item/crafting/FireworkStarRecipe/m_8004_ (II)Z net/minecraft/world/item/crafting/FireworkStarRecipe/canCraftInDimensions (II)Z +MD: net/minecraft/world/item/crafting/FireworkStarRecipe/m_8043_ (Lnet/minecraft/core/RegistryAccess;)Lnet/minecraft/world/item/ItemStack; net/minecraft/world/item/crafting/FireworkStarRecipe/getResultItem (Lnet/minecraft/core/RegistryAccess;)Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/item/crafting/Ingredient/ ()V net/minecraft/world/item/crafting/Ingredient/ ()V +MD: net/minecraft/world/item/crafting/Ingredient/ (Ljava/util/stream/Stream;)V net/minecraft/world/item/crafting/Ingredient/ (Ljava/util/stream/Stream;)V +MD: net/minecraft/world/item/crafting/Ingredient/m_151265_ ()Lnet/minecraft/world/item/crafting/Ingredient; net/minecraft/world/item/crafting/Ingredient/of ()Lnet/minecraft/world/item/crafting/Ingredient; +MD: net/minecraft/world/item/crafting/Ingredient/m_204132_ (Lnet/minecraft/tags/TagKey;)Lnet/minecraft/world/item/crafting/Ingredient; net/minecraft/world/item/crafting/Ingredient/of (Lnet/minecraft/tags/TagKey;)Lnet/minecraft/world/item/crafting/Ingredient; +MD: net/minecraft/world/item/crafting/Ingredient/m_288218_ (Lcom/google/gson/JsonElement;Z)Lnet/minecraft/world/item/crafting/Ingredient; net/minecraft/world/item/crafting/Ingredient/fromJson (Lcom/google/gson/JsonElement;Z)Lnet/minecraft/world/item/crafting/Ingredient; +MD: net/minecraft/world/item/crafting/Ingredient/m_289713_ (Lcom/google/gson/JsonElement;)Lnet/minecraft/world/item/crafting/Ingredient$Value; net/minecraft/world/item/crafting/Ingredient/lambda$fromJson$4 (Lcom/google/gson/JsonElement;)Lnet/minecraft/world/item/crafting/Ingredient$Value; +MD: net/minecraft/world/item/crafting/Ingredient/m_43908_ ()[Lnet/minecraft/world/item/ItemStack; net/minecraft/world/item/crafting/Ingredient/getItems ()[Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/item/crafting/Ingredient/m_43909_ (I)[Lnet/minecraft/world/item/ItemStack; net/minecraft/world/item/crafting/Ingredient/lambda$getItems$2 (I)[Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/item/crafting/Ingredient/m_43915_ (Lnet/minecraft/world/item/crafting/Ingredient$Value;)Ljava/util/stream/Stream; net/minecraft/world/item/crafting/Ingredient/lambda$getItems$1 (Lnet/minecraft/world/item/crafting/Ingredient$Value;)Ljava/util/stream/Stream; +MD: net/minecraft/world/item/crafting/Ingredient/m_43917_ (Lcom/google/gson/JsonElement;)Lnet/minecraft/world/item/crafting/Ingredient; net/minecraft/world/item/crafting/Ingredient/fromJson (Lcom/google/gson/JsonElement;)Lnet/minecraft/world/item/crafting/Ingredient; +MD: net/minecraft/world/item/crafting/Ingredient/m_43919_ (Lcom/google/gson/JsonObject;)Lnet/minecraft/world/item/crafting/Ingredient$Value; net/minecraft/world/item/crafting/Ingredient/valueFromJson (Lcom/google/gson/JsonObject;)Lnet/minecraft/world/item/crafting/Ingredient$Value; +MD: net/minecraft/world/item/crafting/Ingredient/m_43921_ (Ljava/util/stream/Stream;)Lnet/minecraft/world/item/crafting/Ingredient; net/minecraft/world/item/crafting/Ingredient/of (Ljava/util/stream/Stream;)Lnet/minecraft/world/item/crafting/Ingredient; +MD: net/minecraft/world/item/crafting/Ingredient/m_43923_ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/world/item/crafting/Ingredient/toNetwork (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/world/item/crafting/Ingredient/m_43927_ ([Lnet/minecraft/world/item/ItemStack;)Lnet/minecraft/world/item/crafting/Ingredient; net/minecraft/world/item/crafting/Ingredient/of ([Lnet/minecraft/world/item/ItemStack;)Lnet/minecraft/world/item/crafting/Ingredient; +MD: net/minecraft/world/item/crafting/Ingredient/m_43929_ ([Lnet/minecraft/world/level/ItemLike;)Lnet/minecraft/world/item/crafting/Ingredient; net/minecraft/world/item/crafting/Ingredient/of ([Lnet/minecraft/world/level/ItemLike;)Lnet/minecraft/world/item/crafting/Ingredient; +MD: net/minecraft/world/item/crafting/Ingredient/m_43931_ ()Lit/unimi/dsi/fastutil/ints/IntList; net/minecraft/world/item/crafting/Ingredient/getStackingIds ()Lit/unimi/dsi/fastutil/ints/IntList; +MD: net/minecraft/world/item/crafting/Ingredient/m_43932_ (I)[Lnet/minecraft/world/item/crafting/Ingredient$Value; net/minecraft/world/item/crafting/Ingredient/lambda$new$0 (I)[Lnet/minecraft/world/item/crafting/Ingredient$Value; +MD: net/minecraft/world/item/crafting/Ingredient/m_43938_ (Ljava/util/stream/Stream;)Lnet/minecraft/world/item/crafting/Ingredient; net/minecraft/world/item/crafting/Ingredient/fromValues (Ljava/util/stream/Stream;)Lnet/minecraft/world/item/crafting/Ingredient; +MD: net/minecraft/world/item/crafting/Ingredient/m_43940_ (Lnet/minecraft/network/FriendlyByteBuf;)Lnet/minecraft/world/item/crafting/Ingredient; net/minecraft/world/item/crafting/Ingredient/fromNetwork (Lnet/minecraft/network/FriendlyByteBuf;)Lnet/minecraft/world/item/crafting/Ingredient; +MD: net/minecraft/world/item/crafting/Ingredient/m_43942_ ()Lcom/google/gson/JsonElement; net/minecraft/world/item/crafting/Ingredient/toJson ()Lcom/google/gson/JsonElement; +MD: net/minecraft/world/item/crafting/Ingredient/m_43943_ (Lnet/minecraft/world/item/ItemStack;)Z net/minecraft/world/item/crafting/Ingredient/lambda$of$3 (Lnet/minecraft/world/item/ItemStack;)Z +MD: net/minecraft/world/item/crafting/Ingredient/m_43947_ ()Z net/minecraft/world/item/crafting/Ingredient/isEmpty ()Z +MD: net/minecraft/world/item/crafting/Ingredient/test (Lnet/minecraft/world/item/ItemStack;)Z net/minecraft/world/item/crafting/Ingredient/test (Lnet/minecraft/world/item/ItemStack;)Z +MD: net/minecraft/world/item/crafting/Ingredient/test (Ljava/lang/Object;)Z net/minecraft/world/item/crafting/Ingredient/test (Ljava/lang/Object;)Z +MD: net/minecraft/world/item/crafting/Ingredient$ItemValue/ (Lnet/minecraft/world/item/ItemStack;)V net/minecraft/world/item/crafting/Ingredient$ItemValue/ (Lnet/minecraft/world/item/ItemStack;)V +MD: net/minecraft/world/item/crafting/Ingredient$ItemValue/m_6223_ ()Ljava/util/Collection; net/minecraft/world/item/crafting/Ingredient$ItemValue/getItems ()Ljava/util/Collection; +MD: net/minecraft/world/item/crafting/Ingredient$ItemValue/m_6544_ ()Lcom/google/gson/JsonObject; net/minecraft/world/item/crafting/Ingredient$ItemValue/serialize ()Lcom/google/gson/JsonObject; +MD: net/minecraft/world/item/crafting/Ingredient$TagValue/ (Lnet/minecraft/tags/TagKey;)V net/minecraft/world/item/crafting/Ingredient$TagValue/ (Lnet/minecraft/tags/TagKey;)V +MD: net/minecraft/world/item/crafting/Ingredient$TagValue/m_6223_ ()Ljava/util/Collection; net/minecraft/world/item/crafting/Ingredient$TagValue/getItems ()Ljava/util/Collection; +MD: net/minecraft/world/item/crafting/Ingredient$TagValue/m_6544_ ()Lcom/google/gson/JsonObject; net/minecraft/world/item/crafting/Ingredient$TagValue/serialize ()Lcom/google/gson/JsonObject; +MD: net/minecraft/world/item/crafting/Ingredient$Value/m_6223_ ()Ljava/util/Collection; net/minecraft/world/item/crafting/Ingredient$Value/getItems ()Ljava/util/Collection; +MD: net/minecraft/world/item/crafting/Ingredient$Value/m_6544_ ()Lcom/google/gson/JsonObject; net/minecraft/world/item/crafting/Ingredient$Value/serialize ()Lcom/google/gson/JsonObject; +MD: net/minecraft/world/item/crafting/MapCloningRecipe/ (Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/world/item/crafting/CraftingBookCategory;)V net/minecraft/world/item/crafting/MapCloningRecipe/ (Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/world/item/crafting/CraftingBookCategory;)V +MD: net/minecraft/world/item/crafting/MapCloningRecipe/m_5818_ (Lnet/minecraft/world/Container;Lnet/minecraft/world/level/Level;)Z net/minecraft/world/item/crafting/MapCloningRecipe/matches (Lnet/minecraft/world/Container;Lnet/minecraft/world/level/Level;)Z +MD: net/minecraft/world/item/crafting/MapCloningRecipe/m_5818_ (Lnet/minecraft/world/inventory/CraftingContainer;Lnet/minecraft/world/level/Level;)Z net/minecraft/world/item/crafting/MapCloningRecipe/matches (Lnet/minecraft/world/inventory/CraftingContainer;Lnet/minecraft/world/level/Level;)Z +MD: net/minecraft/world/item/crafting/MapCloningRecipe/m_5874_ (Lnet/minecraft/world/inventory/CraftingContainer;Lnet/minecraft/core/RegistryAccess;)Lnet/minecraft/world/item/ItemStack; net/minecraft/world/item/crafting/MapCloningRecipe/assemble (Lnet/minecraft/world/inventory/CraftingContainer;Lnet/minecraft/core/RegistryAccess;)Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/item/crafting/MapCloningRecipe/m_5874_ (Lnet/minecraft/world/Container;Lnet/minecraft/core/RegistryAccess;)Lnet/minecraft/world/item/ItemStack; net/minecraft/world/item/crafting/MapCloningRecipe/assemble (Lnet/minecraft/world/Container;Lnet/minecraft/core/RegistryAccess;)Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/item/crafting/MapCloningRecipe/m_7707_ ()Lnet/minecraft/world/item/crafting/RecipeSerializer; net/minecraft/world/item/crafting/MapCloningRecipe/getSerializer ()Lnet/minecraft/world/item/crafting/RecipeSerializer; +MD: net/minecraft/world/item/crafting/MapCloningRecipe/m_8004_ (II)Z net/minecraft/world/item/crafting/MapCloningRecipe/canCraftInDimensions (II)Z +MD: net/minecraft/world/item/crafting/MapExtendingRecipe/ (Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/world/item/crafting/CraftingBookCategory;)V net/minecraft/world/item/crafting/MapExtendingRecipe/ (Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/world/item/crafting/CraftingBookCategory;)V +MD: net/minecraft/world/item/crafting/MapExtendingRecipe/m_278773_ (Lnet/minecraft/world/inventory/CraftingContainer;)Lnet/minecraft/world/item/ItemStack; net/minecraft/world/item/crafting/MapExtendingRecipe/findFilledMap (Lnet/minecraft/world/inventory/CraftingContainer;)Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/item/crafting/MapExtendingRecipe/m_5598_ ()Z net/minecraft/world/item/crafting/MapExtendingRecipe/isSpecial ()Z +MD: net/minecraft/world/item/crafting/MapExtendingRecipe/m_5818_ (Lnet/minecraft/world/Container;Lnet/minecraft/world/level/Level;)Z net/minecraft/world/item/crafting/MapExtendingRecipe/matches (Lnet/minecraft/world/Container;Lnet/minecraft/world/level/Level;)Z +MD: net/minecraft/world/item/crafting/MapExtendingRecipe/m_5818_ (Lnet/minecraft/world/inventory/CraftingContainer;Lnet/minecraft/world/level/Level;)Z net/minecraft/world/item/crafting/MapExtendingRecipe/matches (Lnet/minecraft/world/inventory/CraftingContainer;Lnet/minecraft/world/level/Level;)Z +MD: net/minecraft/world/item/crafting/MapExtendingRecipe/m_5874_ (Lnet/minecraft/world/inventory/CraftingContainer;Lnet/minecraft/core/RegistryAccess;)Lnet/minecraft/world/item/ItemStack; net/minecraft/world/item/crafting/MapExtendingRecipe/assemble (Lnet/minecraft/world/inventory/CraftingContainer;Lnet/minecraft/core/RegistryAccess;)Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/item/crafting/MapExtendingRecipe/m_5874_ (Lnet/minecraft/world/Container;Lnet/minecraft/core/RegistryAccess;)Lnet/minecraft/world/item/ItemStack; net/minecraft/world/item/crafting/MapExtendingRecipe/assemble (Lnet/minecraft/world/Container;Lnet/minecraft/core/RegistryAccess;)Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/item/crafting/MapExtendingRecipe/m_7707_ ()Lnet/minecraft/world/item/crafting/RecipeSerializer; net/minecraft/world/item/crafting/MapExtendingRecipe/getSerializer ()Lnet/minecraft/world/item/crafting/RecipeSerializer; +MD: net/minecraft/world/item/crafting/Recipe/m_142505_ ()Z net/minecraft/world/item/crafting/Recipe/isIncomplete ()Z +MD: net/minecraft/world/item/crafting/Recipe/m_151267_ (Lnet/minecraft/world/item/crafting/Ingredient;)Z net/minecraft/world/item/crafting/Recipe/lambda$isIncomplete$0 (Lnet/minecraft/world/item/crafting/Ingredient;)Z +MD: net/minecraft/world/item/crafting/Recipe/m_271738_ ()Z net/minecraft/world/item/crafting/Recipe/showNotification ()Z +MD: net/minecraft/world/item/crafting/Recipe/m_5598_ ()Z net/minecraft/world/item/crafting/Recipe/isSpecial ()Z +MD: net/minecraft/world/item/crafting/Recipe/m_5818_ (Lnet/minecraft/world/Container;Lnet/minecraft/world/level/Level;)Z net/minecraft/world/item/crafting/Recipe/matches (Lnet/minecraft/world/Container;Lnet/minecraft/world/level/Level;)Z +MD: net/minecraft/world/item/crafting/Recipe/m_5874_ (Lnet/minecraft/world/Container;Lnet/minecraft/core/RegistryAccess;)Lnet/minecraft/world/item/ItemStack; net/minecraft/world/item/crafting/Recipe/assemble (Lnet/minecraft/world/Container;Lnet/minecraft/core/RegistryAccess;)Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/item/crafting/Recipe/m_6076_ ()Ljava/lang/String; net/minecraft/world/item/crafting/Recipe/getGroup ()Ljava/lang/String; +MD: net/minecraft/world/item/crafting/Recipe/m_6423_ ()Lnet/minecraft/resources/ResourceLocation; net/minecraft/world/item/crafting/Recipe/getId ()Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/world/item/crafting/Recipe/m_6671_ ()Lnet/minecraft/world/item/crafting/RecipeType; net/minecraft/world/item/crafting/Recipe/getType ()Lnet/minecraft/world/item/crafting/RecipeType; +MD: net/minecraft/world/item/crafting/Recipe/m_7457_ (Lnet/minecraft/world/Container;)Lnet/minecraft/core/NonNullList; net/minecraft/world/item/crafting/Recipe/getRemainingItems (Lnet/minecraft/world/Container;)Lnet/minecraft/core/NonNullList; +MD: net/minecraft/world/item/crafting/Recipe/m_7527_ ()Lnet/minecraft/core/NonNullList; net/minecraft/world/item/crafting/Recipe/getIngredients ()Lnet/minecraft/core/NonNullList; +MD: net/minecraft/world/item/crafting/Recipe/m_7707_ ()Lnet/minecraft/world/item/crafting/RecipeSerializer; net/minecraft/world/item/crafting/Recipe/getSerializer ()Lnet/minecraft/world/item/crafting/RecipeSerializer; +MD: net/minecraft/world/item/crafting/Recipe/m_8004_ (II)Z net/minecraft/world/item/crafting/Recipe/canCraftInDimensions (II)Z +MD: net/minecraft/world/item/crafting/Recipe/m_8042_ ()Lnet/minecraft/world/item/ItemStack; net/minecraft/world/item/crafting/Recipe/getToastSymbol ()Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/item/crafting/Recipe/m_8043_ (Lnet/minecraft/core/RegistryAccess;)Lnet/minecraft/world/item/ItemStack; net/minecraft/world/item/crafting/Recipe/getResultItem (Lnet/minecraft/core/RegistryAccess;)Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/item/crafting/RecipeManager/ ()V net/minecraft/world/item/crafting/RecipeManager/ ()V +MD: net/minecraft/world/item/crafting/RecipeManager/ ()V net/minecraft/world/item/crafting/RecipeManager/ ()V +MD: net/minecraft/world/item/crafting/RecipeManager/m_151269_ ()Z net/minecraft/world/item/crafting/RecipeManager/hadErrorsLoading ()Z +MD: net/minecraft/world/item/crafting/RecipeManager/m_220238_ (Lnet/minecraft/world/Container;Lnet/minecraft/world/level/Level;Lnet/minecraft/world/item/crafting/Recipe;)Z net/minecraft/world/item/crafting/RecipeManager/lambda$getRecipesFor$5 (Lnet/minecraft/world/Container;Lnet/minecraft/world/level/Level;Lnet/minecraft/world/item/crafting/Recipe;)Z +MD: net/minecraft/world/item/crafting/RecipeManager/m_220242_ (Lnet/minecraft/world/Container;Lnet/minecraft/world/level/Level;Ljava/util/Map$Entry;)Z net/minecraft/world/item/crafting/RecipeManager/lambda$getRecipeFor$3 (Lnet/minecraft/world/Container;Lnet/minecraft/world/level/Level;Ljava/util/Map$Entry;)Z +MD: net/minecraft/world/item/crafting/RecipeManager/m_220248_ (Lnet/minecraft/world/item/crafting/RecipeType;Lnet/minecraft/world/Container;Lnet/minecraft/world/level/Level;Lnet/minecraft/resources/ResourceLocation;)Ljava/util/Optional; net/minecraft/world/item/crafting/RecipeManager/getRecipeFor (Lnet/minecraft/world/item/crafting/RecipeType;Lnet/minecraft/world/Container;Lnet/minecraft/world/level/Level;Lnet/minecraft/resources/ResourceLocation;)Ljava/util/Optional; +MD: net/minecraft/world/item/crafting/RecipeManager/m_220253_ (Ljava/lang/String;)Lcom/google/gson/JsonSyntaxException; net/minecraft/world/item/crafting/RecipeManager/lambda$fromJson$9 (Ljava/lang/String;)Lcom/google/gson/JsonSyntaxException; +MD: net/minecraft/world/item/crafting/RecipeManager/m_220255_ (Ljava/util/Map$Entry;)Lcom/mojang/datafixers/util/Pair; net/minecraft/world/item/crafting/RecipeManager/lambda$getRecipeFor$4 (Ljava/util/Map$Entry;)Lcom/mojang/datafixers/util/Pair; +MD: net/minecraft/world/item/crafting/RecipeManager/m_220257_ (Ljava/util/Map;)Ljava/util/stream/Stream; net/minecraft/world/item/crafting/RecipeManager/lambda$getRecipeIds$8 (Ljava/util/Map;)Ljava/util/stream/Stream; +MD: net/minecraft/world/item/crafting/RecipeManager/m_220259_ (Ljava/util/Map;Lcom/google/common/collect/ImmutableMap$Builder;Lnet/minecraft/world/item/crafting/Recipe;)V net/minecraft/world/item/crafting/RecipeManager/lambda$replaceRecipes$11 (Ljava/util/Map;Lcom/google/common/collect/ImmutableMap$Builder;Lnet/minecraft/world/item/crafting/Recipe;)V +MD: net/minecraft/world/item/crafting/RecipeManager/m_220263_ (Lnet/minecraft/world/Container;Lnet/minecraft/world/level/Level;Lnet/minecraft/world/item/crafting/Recipe;)Z net/minecraft/world/item/crafting/RecipeManager/lambda$getRecipeFor$2 (Lnet/minecraft/world/Container;Lnet/minecraft/world/level/Level;Lnet/minecraft/world/item/crafting/Recipe;)Z +MD: net/minecraft/world/item/crafting/RecipeManager/m_220267_ (Lnet/minecraft/world/item/crafting/RecipeType;)Lnet/minecraft/world/item/crafting/RecipeManager$CachedCheck; net/minecraft/world/item/crafting/RecipeManager/createCheck (Lnet/minecraft/world/item/crafting/RecipeType;)Lnet/minecraft/world/item/crafting/RecipeManager$CachedCheck; +MD: net/minecraft/world/item/crafting/RecipeManager/m_220269_ (Ljava/util/Map;)Ljava/util/stream/Stream; net/minecraft/world/item/crafting/RecipeManager/lambda$getRecipes$7 (Ljava/util/Map;)Ljava/util/stream/Stream; +MD: net/minecraft/world/item/crafting/RecipeManager/m_220271_ (Lnet/minecraft/world/item/crafting/RecipeType;)Ljava/util/Map; net/minecraft/world/item/crafting/RecipeManager/lambda$replaceRecipes$10 (Lnet/minecraft/world/item/crafting/RecipeType;)Ljava/util/Map; +MD: net/minecraft/world/item/crafting/RecipeManager/m_268980_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/item/crafting/Recipe;)Ljava/lang/String; net/minecraft/world/item/crafting/RecipeManager/lambda$getRecipesFor$6 (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/item/crafting/Recipe;)Ljava/lang/String; +MD: net/minecraft/world/item/crafting/RecipeManager/m_44013_ (Lnet/minecraft/world/item/crafting/RecipeType;)Ljava/util/List; net/minecraft/world/item/crafting/RecipeManager/getAllRecipesFor (Lnet/minecraft/world/item/crafting/RecipeType;)Ljava/util/List; +MD: net/minecraft/world/item/crafting/RecipeManager/m_44015_ (Lnet/minecraft/world/item/crafting/RecipeType;Lnet/minecraft/world/Container;Lnet/minecraft/world/level/Level;)Ljava/util/Optional; net/minecraft/world/item/crafting/RecipeManager/getRecipeFor (Lnet/minecraft/world/item/crafting/RecipeType;Lnet/minecraft/world/Container;Lnet/minecraft/world/level/Level;)Ljava/util/Optional; +MD: net/minecraft/world/item/crafting/RecipeManager/m_44024_ (Ljava/lang/Iterable;)V net/minecraft/world/item/crafting/RecipeManager/replaceRecipes (Ljava/lang/Iterable;)V +MD: net/minecraft/world/item/crafting/RecipeManager/m_44032_ (Ljava/util/Map$Entry;)Ljava/util/Map; net/minecraft/world/item/crafting/RecipeManager/lambda$apply$1 (Ljava/util/Map$Entry;)Ljava/util/Map; +MD: net/minecraft/world/item/crafting/RecipeManager/m_44043_ (Lnet/minecraft/resources/ResourceLocation;)Ljava/util/Optional; net/minecraft/world/item/crafting/RecipeManager/byKey (Lnet/minecraft/resources/ResourceLocation;)Ljava/util/Optional; +MD: net/minecraft/world/item/crafting/RecipeManager/m_44045_ (Lnet/minecraft/resources/ResourceLocation;Lcom/google/gson/JsonObject;)Lnet/minecraft/world/item/crafting/Recipe; net/minecraft/world/item/crafting/RecipeManager/fromJson (Lnet/minecraft/resources/ResourceLocation;Lcom/google/gson/JsonObject;)Lnet/minecraft/world/item/crafting/Recipe; +MD: net/minecraft/world/item/crafting/RecipeManager/m_44051_ ()Ljava/util/Collection; net/minecraft/world/item/crafting/RecipeManager/getRecipes ()Ljava/util/Collection; +MD: net/minecraft/world/item/crafting/RecipeManager/m_44054_ (Lnet/minecraft/world/item/crafting/RecipeType;)Ljava/util/Map; net/minecraft/world/item/crafting/RecipeManager/byType (Lnet/minecraft/world/item/crafting/RecipeType;)Ljava/util/Map; +MD: net/minecraft/world/item/crafting/RecipeManager/m_44056_ (Lnet/minecraft/world/item/crafting/RecipeType;Lnet/minecraft/world/Container;Lnet/minecraft/world/level/Level;)Ljava/util/List; net/minecraft/world/item/crafting/RecipeManager/getRecipesFor (Lnet/minecraft/world/item/crafting/RecipeType;Lnet/minecraft/world/Container;Lnet/minecraft/world/level/Level;)Ljava/util/List; +MD: net/minecraft/world/item/crafting/RecipeManager/m_44069_ (Lnet/minecraft/world/item/crafting/RecipeType;Lnet/minecraft/world/Container;Lnet/minecraft/world/level/Level;)Lnet/minecraft/core/NonNullList; net/minecraft/world/item/crafting/RecipeManager/getRemainingItemsFor (Lnet/minecraft/world/item/crafting/RecipeType;Lnet/minecraft/world/Container;Lnet/minecraft/world/level/Level;)Lnet/minecraft/core/NonNullList; +MD: net/minecraft/world/item/crafting/RecipeManager/m_44073_ ()Ljava/util/stream/Stream; net/minecraft/world/item/crafting/RecipeManager/getRecipeIds ()Ljava/util/stream/Stream; +MD: net/minecraft/world/item/crafting/RecipeManager/m_44074_ (Lnet/minecraft/world/item/crafting/RecipeType;)Lcom/google/common/collect/ImmutableMap$Builder; net/minecraft/world/item/crafting/RecipeManager/lambda$apply$0 (Lnet/minecraft/world/item/crafting/RecipeType;)Lcom/google/common/collect/ImmutableMap$Builder; +MD: net/minecraft/world/item/crafting/RecipeManager/m_5787_ (Ljava/lang/Object;Lnet/minecraft/server/packs/resources/ResourceManager;Lnet/minecraft/util/profiling/ProfilerFiller;)V net/minecraft/world/item/crafting/RecipeManager/apply (Ljava/lang/Object;Lnet/minecraft/server/packs/resources/ResourceManager;Lnet/minecraft/util/profiling/ProfilerFiller;)V +MD: net/minecraft/world/item/crafting/RecipeManager/m_5787_ (Ljava/util/Map;Lnet/minecraft/server/packs/resources/ResourceManager;Lnet/minecraft/util/profiling/ProfilerFiller;)V net/minecraft/world/item/crafting/RecipeManager/apply (Ljava/util/Map;Lnet/minecraft/server/packs/resources/ResourceManager;Lnet/minecraft/util/profiling/ProfilerFiller;)V +MD: net/minecraft/world/item/crafting/RecipeManager$1/ (Lnet/minecraft/world/item/crafting/RecipeType;)V net/minecraft/world/item/crafting/RecipeManager$1/ (Lnet/minecraft/world/item/crafting/RecipeType;)V +MD: net/minecraft/world/item/crafting/RecipeManager$1/m_213657_ (Lnet/minecraft/world/Container;Lnet/minecraft/world/level/Level;)Ljava/util/Optional; net/minecraft/world/item/crafting/RecipeManager$1/getRecipeFor (Lnet/minecraft/world/Container;Lnet/minecraft/world/level/Level;)Ljava/util/Optional; +MD: net/minecraft/world/item/crafting/RecipeManager$CachedCheck/m_213657_ (Lnet/minecraft/world/Container;Lnet/minecraft/world/level/Level;)Ljava/util/Optional; net/minecraft/world/item/crafting/RecipeManager$CachedCheck/getRecipeFor (Lnet/minecraft/world/Container;Lnet/minecraft/world/level/Level;)Ljava/util/Optional; +MD: net/minecraft/world/item/crafting/RecipeSerializer/ ()V net/minecraft/world/item/crafting/RecipeSerializer/ ()V +MD: net/minecraft/world/item/crafting/RecipeSerializer/m_44098_ (Ljava/lang/String;Lnet/minecraft/world/item/crafting/RecipeSerializer;)Lnet/minecraft/world/item/crafting/RecipeSerializer; net/minecraft/world/item/crafting/RecipeSerializer/register (Ljava/lang/String;Lnet/minecraft/world/item/crafting/RecipeSerializer;)Lnet/minecraft/world/item/crafting/RecipeSerializer; +MD: net/minecraft/world/item/crafting/RecipeSerializer/m_6178_ (Lnet/minecraft/network/FriendlyByteBuf;Lnet/minecraft/world/item/crafting/Recipe;)V net/minecraft/world/item/crafting/RecipeSerializer/toNetwork (Lnet/minecraft/network/FriendlyByteBuf;Lnet/minecraft/world/item/crafting/Recipe;)V +MD: net/minecraft/world/item/crafting/RecipeSerializer/m_6729_ (Lnet/minecraft/resources/ResourceLocation;Lcom/google/gson/JsonObject;)Lnet/minecraft/world/item/crafting/Recipe; net/minecraft/world/item/crafting/RecipeSerializer/fromJson (Lnet/minecraft/resources/ResourceLocation;Lcom/google/gson/JsonObject;)Lnet/minecraft/world/item/crafting/Recipe; +MD: net/minecraft/world/item/crafting/RecipeSerializer/m_8005_ (Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/network/FriendlyByteBuf;)Lnet/minecraft/world/item/crafting/Recipe; net/minecraft/world/item/crafting/RecipeSerializer/fromNetwork (Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/network/FriendlyByteBuf;)Lnet/minecraft/world/item/crafting/Recipe; +MD: net/minecraft/world/item/crafting/RecipeType/ ()V net/minecraft/world/item/crafting/RecipeType/ ()V +MD: net/minecraft/world/item/crafting/RecipeType/m_44119_ (Ljava/lang/String;)Lnet/minecraft/world/item/crafting/RecipeType; net/minecraft/world/item/crafting/RecipeType/register (Ljava/lang/String;)Lnet/minecraft/world/item/crafting/RecipeType; +MD: net/minecraft/world/item/crafting/RecipeType$1/ (Ljava/lang/String;)V net/minecraft/world/item/crafting/RecipeType$1/ (Ljava/lang/String;)V +MD: net/minecraft/world/item/crafting/RecipeType$1/toString ()Ljava/lang/String; net/minecraft/world/item/crafting/RecipeType$1/toString ()Ljava/lang/String; +MD: net/minecraft/world/item/crafting/RepairItemRecipe/ (Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/world/item/crafting/CraftingBookCategory;)V net/minecraft/world/item/crafting/RepairItemRecipe/ (Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/world/item/crafting/CraftingBookCategory;)V +MD: net/minecraft/world/item/crafting/RepairItemRecipe/m_44140_ (Ljava/util/Map;Ljava/util/Map;Ljava/util/Map;Lnet/minecraft/world/item/enchantment/Enchantment;)V net/minecraft/world/item/crafting/RepairItemRecipe/lambda$assemble$0 (Ljava/util/Map;Ljava/util/Map;Ljava/util/Map;Lnet/minecraft/world/item/enchantment/Enchantment;)V +MD: net/minecraft/world/item/crafting/RepairItemRecipe/m_5818_ (Lnet/minecraft/world/Container;Lnet/minecraft/world/level/Level;)Z net/minecraft/world/item/crafting/RepairItemRecipe/matches (Lnet/minecraft/world/Container;Lnet/minecraft/world/level/Level;)Z +MD: net/minecraft/world/item/crafting/RepairItemRecipe/m_5818_ (Lnet/minecraft/world/inventory/CraftingContainer;Lnet/minecraft/world/level/Level;)Z net/minecraft/world/item/crafting/RepairItemRecipe/matches (Lnet/minecraft/world/inventory/CraftingContainer;Lnet/minecraft/world/level/Level;)Z +MD: net/minecraft/world/item/crafting/RepairItemRecipe/m_5874_ (Lnet/minecraft/world/inventory/CraftingContainer;Lnet/minecraft/core/RegistryAccess;)Lnet/minecraft/world/item/ItemStack; net/minecraft/world/item/crafting/RepairItemRecipe/assemble (Lnet/minecraft/world/inventory/CraftingContainer;Lnet/minecraft/core/RegistryAccess;)Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/item/crafting/RepairItemRecipe/m_5874_ (Lnet/minecraft/world/Container;Lnet/minecraft/core/RegistryAccess;)Lnet/minecraft/world/item/ItemStack; net/minecraft/world/item/crafting/RepairItemRecipe/assemble (Lnet/minecraft/world/Container;Lnet/minecraft/core/RegistryAccess;)Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/item/crafting/RepairItemRecipe/m_7707_ ()Lnet/minecraft/world/item/crafting/RecipeSerializer; net/minecraft/world/item/crafting/RepairItemRecipe/getSerializer ()Lnet/minecraft/world/item/crafting/RecipeSerializer; +MD: net/minecraft/world/item/crafting/RepairItemRecipe/m_8004_ (II)Z net/minecraft/world/item/crafting/RepairItemRecipe/canCraftInDimensions (II)Z +MD: net/minecraft/world/item/crafting/ShapedRecipe/ (Lnet/minecraft/resources/ResourceLocation;Ljava/lang/String;Lnet/minecraft/world/item/crafting/CraftingBookCategory;IILnet/minecraft/core/NonNullList;Lnet/minecraft/world/item/ItemStack;)V net/minecraft/world/item/crafting/ShapedRecipe/ (Lnet/minecraft/resources/ResourceLocation;Ljava/lang/String;Lnet/minecraft/world/item/crafting/CraftingBookCategory;IILnet/minecraft/core/NonNullList;Lnet/minecraft/world/item/ItemStack;)V +MD: net/minecraft/world/item/crafting/ShapedRecipe/ (Lnet/minecraft/resources/ResourceLocation;Ljava/lang/String;Lnet/minecraft/world/item/crafting/CraftingBookCategory;IILnet/minecraft/core/NonNullList;Lnet/minecraft/world/item/ItemStack;Z)V net/minecraft/world/item/crafting/ShapedRecipe/ (Lnet/minecraft/resources/ResourceLocation;Ljava/lang/String;Lnet/minecraft/world/item/crafting/CraftingBookCategory;IILnet/minecraft/core/NonNullList;Lnet/minecraft/world/item/ItemStack;Z)V +MD: net/minecraft/world/item/crafting/ShapedRecipe/m_142505_ ()Z net/minecraft/world/item/crafting/ShapedRecipe/isIncomplete ()Z +MD: net/minecraft/world/item/crafting/ShapedRecipe/m_151272_ (Lnet/minecraft/world/item/crafting/Ingredient;)Z net/minecraft/world/item/crafting/ShapedRecipe/lambda$isIncomplete$1 (Lnet/minecraft/world/item/crafting/Ingredient;)Z +MD: net/minecraft/world/item/crafting/ShapedRecipe/m_151274_ (Lcom/google/gson/JsonObject;)Lnet/minecraft/world/item/ItemStack; net/minecraft/world/item/crafting/ShapedRecipe/itemStackFromJson (Lcom/google/gson/JsonObject;)Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/item/crafting/ShapedRecipe/m_151276_ (Lnet/minecraft/world/item/crafting/Ingredient;)Z net/minecraft/world/item/crafting/ShapedRecipe/lambda$isIncomplete$0 (Lnet/minecraft/world/item/crafting/Ingredient;)Z +MD: net/minecraft/world/item/crafting/ShapedRecipe/m_151278_ (Lcom/google/gson/JsonObject;)Lnet/minecraft/world/item/Item; net/minecraft/world/item/crafting/ShapedRecipe/itemFromJson (Lcom/google/gson/JsonObject;)Lnet/minecraft/world/item/Item; +MD: net/minecraft/world/item/crafting/ShapedRecipe/m_151280_ (Ljava/lang/String;)Lcom/google/gson/JsonSyntaxException; net/minecraft/world/item/crafting/ShapedRecipe/lambda$itemFromJson$2 (Ljava/lang/String;)Lcom/google/gson/JsonSyntaxException; +MD: net/minecraft/world/item/crafting/ShapedRecipe/m_245232_ ()Lnet/minecraft/world/item/crafting/CraftingBookCategory; net/minecraft/world/item/crafting/ShapedRecipe/category ()Lnet/minecraft/world/item/crafting/CraftingBookCategory; +MD: net/minecraft/world/item/crafting/ShapedRecipe/m_271738_ ()Z net/minecraft/world/item/crafting/ShapedRecipe/showNotification ()Z +MD: net/minecraft/world/item/crafting/ShapedRecipe/m_44170_ (Lnet/minecraft/world/inventory/CraftingContainer;IIZ)Z net/minecraft/world/item/crafting/ShapedRecipe/matches (Lnet/minecraft/world/inventory/CraftingContainer;IIZ)Z +MD: net/minecraft/world/item/crafting/ShapedRecipe/m_44184_ (Ljava/lang/String;)I net/minecraft/world/item/crafting/ShapedRecipe/firstNonSpace (Ljava/lang/String;)I +MD: net/minecraft/world/item/crafting/ShapedRecipe/m_44186_ ([Ljava/lang/String;)[Ljava/lang/String; net/minecraft/world/item/crafting/ShapedRecipe/shrink ([Ljava/lang/String;)[Ljava/lang/String; +MD: net/minecraft/world/item/crafting/ShapedRecipe/m_44196_ (Lcom/google/gson/JsonArray;)[Ljava/lang/String; net/minecraft/world/item/crafting/ShapedRecipe/patternFromJson (Lcom/google/gson/JsonArray;)[Ljava/lang/String; +MD: net/minecraft/world/item/crafting/ShapedRecipe/m_44200_ (Ljava/lang/String;)I net/minecraft/world/item/crafting/ShapedRecipe/lastNonSpace (Ljava/lang/String;)I +MD: net/minecraft/world/item/crafting/ShapedRecipe/m_44202_ ([Ljava/lang/String;Ljava/util/Map;II)Lnet/minecraft/core/NonNullList; net/minecraft/world/item/crafting/ShapedRecipe/dissolvePattern ([Ljava/lang/String;Ljava/util/Map;II)Lnet/minecraft/core/NonNullList; +MD: net/minecraft/world/item/crafting/ShapedRecipe/m_44210_ (Lcom/google/gson/JsonObject;)Ljava/util/Map; net/minecraft/world/item/crafting/ShapedRecipe/keyFromJson (Lcom/google/gson/JsonObject;)Ljava/util/Map; +MD: net/minecraft/world/item/crafting/ShapedRecipe/m_44220_ ()I net/minecraft/world/item/crafting/ShapedRecipe/getWidth ()I +MD: net/minecraft/world/item/crafting/ShapedRecipe/m_44221_ ()I net/minecraft/world/item/crafting/ShapedRecipe/getHeight ()I +MD: net/minecraft/world/item/crafting/ShapedRecipe/m_5818_ (Lnet/minecraft/world/inventory/CraftingContainer;Lnet/minecraft/world/level/Level;)Z net/minecraft/world/item/crafting/ShapedRecipe/matches (Lnet/minecraft/world/inventory/CraftingContainer;Lnet/minecraft/world/level/Level;)Z +MD: net/minecraft/world/item/crafting/ShapedRecipe/m_5818_ (Lnet/minecraft/world/Container;Lnet/minecraft/world/level/Level;)Z net/minecraft/world/item/crafting/ShapedRecipe/matches (Lnet/minecraft/world/Container;Lnet/minecraft/world/level/Level;)Z +MD: net/minecraft/world/item/crafting/ShapedRecipe/m_5874_ (Lnet/minecraft/world/inventory/CraftingContainer;Lnet/minecraft/core/RegistryAccess;)Lnet/minecraft/world/item/ItemStack; net/minecraft/world/item/crafting/ShapedRecipe/assemble (Lnet/minecraft/world/inventory/CraftingContainer;Lnet/minecraft/core/RegistryAccess;)Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/item/crafting/ShapedRecipe/m_5874_ (Lnet/minecraft/world/Container;Lnet/minecraft/core/RegistryAccess;)Lnet/minecraft/world/item/ItemStack; net/minecraft/world/item/crafting/ShapedRecipe/assemble (Lnet/minecraft/world/Container;Lnet/minecraft/core/RegistryAccess;)Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/item/crafting/ShapedRecipe/m_6076_ ()Ljava/lang/String; net/minecraft/world/item/crafting/ShapedRecipe/getGroup ()Ljava/lang/String; +MD: net/minecraft/world/item/crafting/ShapedRecipe/m_6423_ ()Lnet/minecraft/resources/ResourceLocation; net/minecraft/world/item/crafting/ShapedRecipe/getId ()Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/world/item/crafting/ShapedRecipe/m_7527_ ()Lnet/minecraft/core/NonNullList; net/minecraft/world/item/crafting/ShapedRecipe/getIngredients ()Lnet/minecraft/core/NonNullList; +MD: net/minecraft/world/item/crafting/ShapedRecipe/m_7707_ ()Lnet/minecraft/world/item/crafting/RecipeSerializer; net/minecraft/world/item/crafting/ShapedRecipe/getSerializer ()Lnet/minecraft/world/item/crafting/RecipeSerializer; +MD: net/minecraft/world/item/crafting/ShapedRecipe/m_8004_ (II)Z net/minecraft/world/item/crafting/ShapedRecipe/canCraftInDimensions (II)Z +MD: net/minecraft/world/item/crafting/ShapedRecipe/m_8043_ (Lnet/minecraft/core/RegistryAccess;)Lnet/minecraft/world/item/ItemStack; net/minecraft/world/item/crafting/ShapedRecipe/getResultItem (Lnet/minecraft/core/RegistryAccess;)Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/item/crafting/ShapedRecipe$Serializer/ ()V net/minecraft/world/item/crafting/ShapedRecipe$Serializer/ ()V +MD: net/minecraft/world/item/crafting/ShapedRecipe$Serializer/m_6178_ (Lnet/minecraft/network/FriendlyByteBuf;Lnet/minecraft/world/item/crafting/ShapedRecipe;)V net/minecraft/world/item/crafting/ShapedRecipe$Serializer/toNetwork (Lnet/minecraft/network/FriendlyByteBuf;Lnet/minecraft/world/item/crafting/ShapedRecipe;)V +MD: net/minecraft/world/item/crafting/ShapedRecipe$Serializer/m_6178_ (Lnet/minecraft/network/FriendlyByteBuf;Lnet/minecraft/world/item/crafting/Recipe;)V net/minecraft/world/item/crafting/ShapedRecipe$Serializer/toNetwork (Lnet/minecraft/network/FriendlyByteBuf;Lnet/minecraft/world/item/crafting/Recipe;)V +MD: net/minecraft/world/item/crafting/ShapedRecipe$Serializer/m_6729_ (Lnet/minecraft/resources/ResourceLocation;Lcom/google/gson/JsonObject;)Lnet/minecraft/world/item/crafting/ShapedRecipe; net/minecraft/world/item/crafting/ShapedRecipe$Serializer/fromJson (Lnet/minecraft/resources/ResourceLocation;Lcom/google/gson/JsonObject;)Lnet/minecraft/world/item/crafting/ShapedRecipe; +MD: net/minecraft/world/item/crafting/ShapedRecipe$Serializer/m_6729_ (Lnet/minecraft/resources/ResourceLocation;Lcom/google/gson/JsonObject;)Lnet/minecraft/world/item/crafting/Recipe; net/minecraft/world/item/crafting/ShapedRecipe$Serializer/fromJson (Lnet/minecraft/resources/ResourceLocation;Lcom/google/gson/JsonObject;)Lnet/minecraft/world/item/crafting/Recipe; +MD: net/minecraft/world/item/crafting/ShapedRecipe$Serializer/m_8005_ (Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/network/FriendlyByteBuf;)Lnet/minecraft/world/item/crafting/Recipe; net/minecraft/world/item/crafting/ShapedRecipe$Serializer/fromNetwork (Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/network/FriendlyByteBuf;)Lnet/minecraft/world/item/crafting/Recipe; +MD: net/minecraft/world/item/crafting/ShapedRecipe$Serializer/m_8005_ (Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/network/FriendlyByteBuf;)Lnet/minecraft/world/item/crafting/ShapedRecipe; net/minecraft/world/item/crafting/ShapedRecipe$Serializer/fromNetwork (Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/network/FriendlyByteBuf;)Lnet/minecraft/world/item/crafting/ShapedRecipe; +MD: net/minecraft/world/item/crafting/ShapelessRecipe/ (Lnet/minecraft/resources/ResourceLocation;Ljava/lang/String;Lnet/minecraft/world/item/crafting/CraftingBookCategory;Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/core/NonNullList;)V net/minecraft/world/item/crafting/ShapelessRecipe/ (Lnet/minecraft/resources/ResourceLocation;Ljava/lang/String;Lnet/minecraft/world/item/crafting/CraftingBookCategory;Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/core/NonNullList;)V +MD: net/minecraft/world/item/crafting/ShapelessRecipe/m_245232_ ()Lnet/minecraft/world/item/crafting/CraftingBookCategory; net/minecraft/world/item/crafting/ShapelessRecipe/category ()Lnet/minecraft/world/item/crafting/CraftingBookCategory; +MD: net/minecraft/world/item/crafting/ShapelessRecipe/m_5818_ (Lnet/minecraft/world/Container;Lnet/minecraft/world/level/Level;)Z net/minecraft/world/item/crafting/ShapelessRecipe/matches (Lnet/minecraft/world/Container;Lnet/minecraft/world/level/Level;)Z +MD: net/minecraft/world/item/crafting/ShapelessRecipe/m_5818_ (Lnet/minecraft/world/inventory/CraftingContainer;Lnet/minecraft/world/level/Level;)Z net/minecraft/world/item/crafting/ShapelessRecipe/matches (Lnet/minecraft/world/inventory/CraftingContainer;Lnet/minecraft/world/level/Level;)Z +MD: net/minecraft/world/item/crafting/ShapelessRecipe/m_5874_ (Lnet/minecraft/world/inventory/CraftingContainer;Lnet/minecraft/core/RegistryAccess;)Lnet/minecraft/world/item/ItemStack; net/minecraft/world/item/crafting/ShapelessRecipe/assemble (Lnet/minecraft/world/inventory/CraftingContainer;Lnet/minecraft/core/RegistryAccess;)Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/item/crafting/ShapelessRecipe/m_5874_ (Lnet/minecraft/world/Container;Lnet/minecraft/core/RegistryAccess;)Lnet/minecraft/world/item/ItemStack; net/minecraft/world/item/crafting/ShapelessRecipe/assemble (Lnet/minecraft/world/Container;Lnet/minecraft/core/RegistryAccess;)Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/item/crafting/ShapelessRecipe/m_6076_ ()Ljava/lang/String; net/minecraft/world/item/crafting/ShapelessRecipe/getGroup ()Ljava/lang/String; +MD: net/minecraft/world/item/crafting/ShapelessRecipe/m_6423_ ()Lnet/minecraft/resources/ResourceLocation; net/minecraft/world/item/crafting/ShapelessRecipe/getId ()Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/world/item/crafting/ShapelessRecipe/m_7527_ ()Lnet/minecraft/core/NonNullList; net/minecraft/world/item/crafting/ShapelessRecipe/getIngredients ()Lnet/minecraft/core/NonNullList; +MD: net/minecraft/world/item/crafting/ShapelessRecipe/m_7707_ ()Lnet/minecraft/world/item/crafting/RecipeSerializer; net/minecraft/world/item/crafting/ShapelessRecipe/getSerializer ()Lnet/minecraft/world/item/crafting/RecipeSerializer; +MD: net/minecraft/world/item/crafting/ShapelessRecipe/m_8004_ (II)Z net/minecraft/world/item/crafting/ShapelessRecipe/canCraftInDimensions (II)Z +MD: net/minecraft/world/item/crafting/ShapelessRecipe/m_8043_ (Lnet/minecraft/core/RegistryAccess;)Lnet/minecraft/world/item/ItemStack; net/minecraft/world/item/crafting/ShapelessRecipe/getResultItem (Lnet/minecraft/core/RegistryAccess;)Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/item/crafting/ShapelessRecipe$Serializer/ ()V net/minecraft/world/item/crafting/ShapelessRecipe$Serializer/ ()V +MD: net/minecraft/world/item/crafting/ShapelessRecipe$Serializer/m_44275_ (Lcom/google/gson/JsonArray;)Lnet/minecraft/core/NonNullList; net/minecraft/world/item/crafting/ShapelessRecipe$Serializer/itemsFromJson (Lcom/google/gson/JsonArray;)Lnet/minecraft/core/NonNullList; +MD: net/minecraft/world/item/crafting/ShapelessRecipe$Serializer/m_6178_ (Lnet/minecraft/network/FriendlyByteBuf;Lnet/minecraft/world/item/crafting/ShapelessRecipe;)V net/minecraft/world/item/crafting/ShapelessRecipe$Serializer/toNetwork (Lnet/minecraft/network/FriendlyByteBuf;Lnet/minecraft/world/item/crafting/ShapelessRecipe;)V +MD: net/minecraft/world/item/crafting/ShapelessRecipe$Serializer/m_6178_ (Lnet/minecraft/network/FriendlyByteBuf;Lnet/minecraft/world/item/crafting/Recipe;)V net/minecraft/world/item/crafting/ShapelessRecipe$Serializer/toNetwork (Lnet/minecraft/network/FriendlyByteBuf;Lnet/minecraft/world/item/crafting/Recipe;)V +MD: net/minecraft/world/item/crafting/ShapelessRecipe$Serializer/m_6729_ (Lnet/minecraft/resources/ResourceLocation;Lcom/google/gson/JsonObject;)Lnet/minecraft/world/item/crafting/Recipe; net/minecraft/world/item/crafting/ShapelessRecipe$Serializer/fromJson (Lnet/minecraft/resources/ResourceLocation;Lcom/google/gson/JsonObject;)Lnet/minecraft/world/item/crafting/Recipe; +MD: net/minecraft/world/item/crafting/ShapelessRecipe$Serializer/m_6729_ (Lnet/minecraft/resources/ResourceLocation;Lcom/google/gson/JsonObject;)Lnet/minecraft/world/item/crafting/ShapelessRecipe; net/minecraft/world/item/crafting/ShapelessRecipe$Serializer/fromJson (Lnet/minecraft/resources/ResourceLocation;Lcom/google/gson/JsonObject;)Lnet/minecraft/world/item/crafting/ShapelessRecipe; +MD: net/minecraft/world/item/crafting/ShapelessRecipe$Serializer/m_8005_ (Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/network/FriendlyByteBuf;)Lnet/minecraft/world/item/crafting/Recipe; net/minecraft/world/item/crafting/ShapelessRecipe$Serializer/fromNetwork (Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/network/FriendlyByteBuf;)Lnet/minecraft/world/item/crafting/Recipe; +MD: net/minecraft/world/item/crafting/ShapelessRecipe$Serializer/m_8005_ (Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/network/FriendlyByteBuf;)Lnet/minecraft/world/item/crafting/ShapelessRecipe; net/minecraft/world/item/crafting/ShapelessRecipe$Serializer/fromNetwork (Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/network/FriendlyByteBuf;)Lnet/minecraft/world/item/crafting/ShapelessRecipe; +MD: net/minecraft/world/item/crafting/ShieldDecorationRecipe/ (Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/world/item/crafting/CraftingBookCategory;)V net/minecraft/world/item/crafting/ShieldDecorationRecipe/ (Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/world/item/crafting/CraftingBookCategory;)V +MD: net/minecraft/world/item/crafting/ShieldDecorationRecipe/m_5818_ (Lnet/minecraft/world/Container;Lnet/minecraft/world/level/Level;)Z net/minecraft/world/item/crafting/ShieldDecorationRecipe/matches (Lnet/minecraft/world/Container;Lnet/minecraft/world/level/Level;)Z +MD: net/minecraft/world/item/crafting/ShieldDecorationRecipe/m_5818_ (Lnet/minecraft/world/inventory/CraftingContainer;Lnet/minecraft/world/level/Level;)Z net/minecraft/world/item/crafting/ShieldDecorationRecipe/matches (Lnet/minecraft/world/inventory/CraftingContainer;Lnet/minecraft/world/level/Level;)Z +MD: net/minecraft/world/item/crafting/ShieldDecorationRecipe/m_5874_ (Lnet/minecraft/world/inventory/CraftingContainer;Lnet/minecraft/core/RegistryAccess;)Lnet/minecraft/world/item/ItemStack; net/minecraft/world/item/crafting/ShieldDecorationRecipe/assemble (Lnet/minecraft/world/inventory/CraftingContainer;Lnet/minecraft/core/RegistryAccess;)Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/item/crafting/ShieldDecorationRecipe/m_5874_ (Lnet/minecraft/world/Container;Lnet/minecraft/core/RegistryAccess;)Lnet/minecraft/world/item/ItemStack; net/minecraft/world/item/crafting/ShieldDecorationRecipe/assemble (Lnet/minecraft/world/Container;Lnet/minecraft/core/RegistryAccess;)Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/item/crafting/ShieldDecorationRecipe/m_7707_ ()Lnet/minecraft/world/item/crafting/RecipeSerializer; net/minecraft/world/item/crafting/ShieldDecorationRecipe/getSerializer ()Lnet/minecraft/world/item/crafting/RecipeSerializer; +MD: net/minecraft/world/item/crafting/ShieldDecorationRecipe/m_8004_ (II)Z net/minecraft/world/item/crafting/ShieldDecorationRecipe/canCraftInDimensions (II)Z +MD: net/minecraft/world/item/crafting/ShulkerBoxColoring/ (Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/world/item/crafting/CraftingBookCategory;)V net/minecraft/world/item/crafting/ShulkerBoxColoring/ (Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/world/item/crafting/CraftingBookCategory;)V +MD: net/minecraft/world/item/crafting/ShulkerBoxColoring/m_5818_ (Lnet/minecraft/world/Container;Lnet/minecraft/world/level/Level;)Z net/minecraft/world/item/crafting/ShulkerBoxColoring/matches (Lnet/minecraft/world/Container;Lnet/minecraft/world/level/Level;)Z +MD: net/minecraft/world/item/crafting/ShulkerBoxColoring/m_5818_ (Lnet/minecraft/world/inventory/CraftingContainer;Lnet/minecraft/world/level/Level;)Z net/minecraft/world/item/crafting/ShulkerBoxColoring/matches (Lnet/minecraft/world/inventory/CraftingContainer;Lnet/minecraft/world/level/Level;)Z +MD: net/minecraft/world/item/crafting/ShulkerBoxColoring/m_5874_ (Lnet/minecraft/world/inventory/CraftingContainer;Lnet/minecraft/core/RegistryAccess;)Lnet/minecraft/world/item/ItemStack; net/minecraft/world/item/crafting/ShulkerBoxColoring/assemble (Lnet/minecraft/world/inventory/CraftingContainer;Lnet/minecraft/core/RegistryAccess;)Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/item/crafting/ShulkerBoxColoring/m_5874_ (Lnet/minecraft/world/Container;Lnet/minecraft/core/RegistryAccess;)Lnet/minecraft/world/item/ItemStack; net/minecraft/world/item/crafting/ShulkerBoxColoring/assemble (Lnet/minecraft/world/Container;Lnet/minecraft/core/RegistryAccess;)Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/item/crafting/ShulkerBoxColoring/m_7707_ ()Lnet/minecraft/world/item/crafting/RecipeSerializer; net/minecraft/world/item/crafting/ShulkerBoxColoring/getSerializer ()Lnet/minecraft/world/item/crafting/RecipeSerializer; +MD: net/minecraft/world/item/crafting/ShulkerBoxColoring/m_8004_ (II)Z net/minecraft/world/item/crafting/ShulkerBoxColoring/canCraftInDimensions (II)Z +MD: net/minecraft/world/item/crafting/SimpleCookingSerializer/ (Lnet/minecraft/world/item/crafting/SimpleCookingSerializer$CookieBaker;I)V net/minecraft/world/item/crafting/SimpleCookingSerializer/ (Lnet/minecraft/world/item/crafting/SimpleCookingSerializer$CookieBaker;I)V +MD: net/minecraft/world/item/crafting/SimpleCookingSerializer/m_44332_ (Ljava/lang/String;)Ljava/lang/IllegalStateException; net/minecraft/world/item/crafting/SimpleCookingSerializer/lambda$fromJson$0 (Ljava/lang/String;)Ljava/lang/IllegalStateException; +MD: net/minecraft/world/item/crafting/SimpleCookingSerializer/m_6178_ (Lnet/minecraft/network/FriendlyByteBuf;Lnet/minecraft/world/item/crafting/AbstractCookingRecipe;)V net/minecraft/world/item/crafting/SimpleCookingSerializer/toNetwork (Lnet/minecraft/network/FriendlyByteBuf;Lnet/minecraft/world/item/crafting/AbstractCookingRecipe;)V +MD: net/minecraft/world/item/crafting/SimpleCookingSerializer/m_6178_ (Lnet/minecraft/network/FriendlyByteBuf;Lnet/minecraft/world/item/crafting/Recipe;)V net/minecraft/world/item/crafting/SimpleCookingSerializer/toNetwork (Lnet/minecraft/network/FriendlyByteBuf;Lnet/minecraft/world/item/crafting/Recipe;)V +MD: net/minecraft/world/item/crafting/SimpleCookingSerializer/m_6729_ (Lnet/minecraft/resources/ResourceLocation;Lcom/google/gson/JsonObject;)Lnet/minecraft/world/item/crafting/AbstractCookingRecipe; net/minecraft/world/item/crafting/SimpleCookingSerializer/fromJson (Lnet/minecraft/resources/ResourceLocation;Lcom/google/gson/JsonObject;)Lnet/minecraft/world/item/crafting/AbstractCookingRecipe; +MD: net/minecraft/world/item/crafting/SimpleCookingSerializer/m_6729_ (Lnet/minecraft/resources/ResourceLocation;Lcom/google/gson/JsonObject;)Lnet/minecraft/world/item/crafting/Recipe; net/minecraft/world/item/crafting/SimpleCookingSerializer/fromJson (Lnet/minecraft/resources/ResourceLocation;Lcom/google/gson/JsonObject;)Lnet/minecraft/world/item/crafting/Recipe; +MD: net/minecraft/world/item/crafting/SimpleCookingSerializer/m_8005_ (Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/network/FriendlyByteBuf;)Lnet/minecraft/world/item/crafting/Recipe; net/minecraft/world/item/crafting/SimpleCookingSerializer/fromNetwork (Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/network/FriendlyByteBuf;)Lnet/minecraft/world/item/crafting/Recipe; +MD: net/minecraft/world/item/crafting/SimpleCookingSerializer/m_8005_ (Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/network/FriendlyByteBuf;)Lnet/minecraft/world/item/crafting/AbstractCookingRecipe; net/minecraft/world/item/crafting/SimpleCookingSerializer/fromNetwork (Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/network/FriendlyByteBuf;)Lnet/minecraft/world/item/crafting/AbstractCookingRecipe; +MD: net/minecraft/world/item/crafting/SimpleCookingSerializer$CookieBaker/m_44352_ (Lnet/minecraft/resources/ResourceLocation;Ljava/lang/String;Lnet/minecraft/world/item/crafting/CookingBookCategory;Lnet/minecraft/world/item/crafting/Ingredient;Lnet/minecraft/world/item/ItemStack;FI)Lnet/minecraft/world/item/crafting/AbstractCookingRecipe; net/minecraft/world/item/crafting/SimpleCookingSerializer$CookieBaker/create (Lnet/minecraft/resources/ResourceLocation;Ljava/lang/String;Lnet/minecraft/world/item/crafting/CookingBookCategory;Lnet/minecraft/world/item/crafting/Ingredient;Lnet/minecraft/world/item/ItemStack;FI)Lnet/minecraft/world/item/crafting/AbstractCookingRecipe; +MD: net/minecraft/world/item/crafting/SimpleCraftingRecipeSerializer/ (Lnet/minecraft/world/item/crafting/SimpleCraftingRecipeSerializer$Factory;)V net/minecraft/world/item/crafting/SimpleCraftingRecipeSerializer/ (Lnet/minecraft/world/item/crafting/SimpleCraftingRecipeSerializer$Factory;)V +MD: net/minecraft/world/item/crafting/SimpleCraftingRecipeSerializer/m_6178_ (Lnet/minecraft/network/FriendlyByteBuf;Lnet/minecraft/world/item/crafting/CraftingRecipe;)V net/minecraft/world/item/crafting/SimpleCraftingRecipeSerializer/toNetwork (Lnet/minecraft/network/FriendlyByteBuf;Lnet/minecraft/world/item/crafting/CraftingRecipe;)V +MD: net/minecraft/world/item/crafting/SimpleCraftingRecipeSerializer/m_6178_ (Lnet/minecraft/network/FriendlyByteBuf;Lnet/minecraft/world/item/crafting/Recipe;)V net/minecraft/world/item/crafting/SimpleCraftingRecipeSerializer/toNetwork (Lnet/minecraft/network/FriendlyByteBuf;Lnet/minecraft/world/item/crafting/Recipe;)V +MD: net/minecraft/world/item/crafting/SimpleCraftingRecipeSerializer/m_6729_ (Lnet/minecraft/resources/ResourceLocation;Lcom/google/gson/JsonObject;)Lnet/minecraft/world/item/crafting/Recipe; net/minecraft/world/item/crafting/SimpleCraftingRecipeSerializer/fromJson (Lnet/minecraft/resources/ResourceLocation;Lcom/google/gson/JsonObject;)Lnet/minecraft/world/item/crafting/Recipe; +MD: net/minecraft/world/item/crafting/SimpleCraftingRecipeSerializer/m_6729_ (Lnet/minecraft/resources/ResourceLocation;Lcom/google/gson/JsonObject;)Lnet/minecraft/world/item/crafting/CraftingRecipe; net/minecraft/world/item/crafting/SimpleCraftingRecipeSerializer/fromJson (Lnet/minecraft/resources/ResourceLocation;Lcom/google/gson/JsonObject;)Lnet/minecraft/world/item/crafting/CraftingRecipe; +MD: net/minecraft/world/item/crafting/SimpleCraftingRecipeSerializer/m_8005_ (Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/network/FriendlyByteBuf;)Lnet/minecraft/world/item/crafting/Recipe; net/minecraft/world/item/crafting/SimpleCraftingRecipeSerializer/fromNetwork (Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/network/FriendlyByteBuf;)Lnet/minecraft/world/item/crafting/Recipe; +MD: net/minecraft/world/item/crafting/SimpleCraftingRecipeSerializer/m_8005_ (Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/network/FriendlyByteBuf;)Lnet/minecraft/world/item/crafting/CraftingRecipe; net/minecraft/world/item/crafting/SimpleCraftingRecipeSerializer/fromNetwork (Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/network/FriendlyByteBuf;)Lnet/minecraft/world/item/crafting/CraftingRecipe; +MD: net/minecraft/world/item/crafting/SimpleCraftingRecipeSerializer$Factory/m_247316_ (Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/world/item/crafting/CraftingBookCategory;)Lnet/minecraft/world/item/crafting/CraftingRecipe; net/minecraft/world/item/crafting/SimpleCraftingRecipeSerializer$Factory/create (Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/world/item/crafting/CraftingBookCategory;)Lnet/minecraft/world/item/crafting/CraftingRecipe; +MD: net/minecraft/world/item/crafting/SingleItemRecipe/ (Lnet/minecraft/world/item/crafting/RecipeType;Lnet/minecraft/world/item/crafting/RecipeSerializer;Lnet/minecraft/resources/ResourceLocation;Ljava/lang/String;Lnet/minecraft/world/item/crafting/Ingredient;Lnet/minecraft/world/item/ItemStack;)V net/minecraft/world/item/crafting/SingleItemRecipe/ (Lnet/minecraft/world/item/crafting/RecipeType;Lnet/minecraft/world/item/crafting/RecipeSerializer;Lnet/minecraft/resources/ResourceLocation;Ljava/lang/String;Lnet/minecraft/world/item/crafting/Ingredient;Lnet/minecraft/world/item/ItemStack;)V +MD: net/minecraft/world/item/crafting/SingleItemRecipe/m_5874_ (Lnet/minecraft/world/Container;Lnet/minecraft/core/RegistryAccess;)Lnet/minecraft/world/item/ItemStack; net/minecraft/world/item/crafting/SingleItemRecipe/assemble (Lnet/minecraft/world/Container;Lnet/minecraft/core/RegistryAccess;)Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/item/crafting/SingleItemRecipe/m_6076_ ()Ljava/lang/String; net/minecraft/world/item/crafting/SingleItemRecipe/getGroup ()Ljava/lang/String; +MD: net/minecraft/world/item/crafting/SingleItemRecipe/m_6423_ ()Lnet/minecraft/resources/ResourceLocation; net/minecraft/world/item/crafting/SingleItemRecipe/getId ()Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/world/item/crafting/SingleItemRecipe/m_6671_ ()Lnet/minecraft/world/item/crafting/RecipeType; net/minecraft/world/item/crafting/SingleItemRecipe/getType ()Lnet/minecraft/world/item/crafting/RecipeType; +MD: net/minecraft/world/item/crafting/SingleItemRecipe/m_7527_ ()Lnet/minecraft/core/NonNullList; net/minecraft/world/item/crafting/SingleItemRecipe/getIngredients ()Lnet/minecraft/core/NonNullList; +MD: net/minecraft/world/item/crafting/SingleItemRecipe/m_7707_ ()Lnet/minecraft/world/item/crafting/RecipeSerializer; net/minecraft/world/item/crafting/SingleItemRecipe/getSerializer ()Lnet/minecraft/world/item/crafting/RecipeSerializer; +MD: net/minecraft/world/item/crafting/SingleItemRecipe/m_8004_ (II)Z net/minecraft/world/item/crafting/SingleItemRecipe/canCraftInDimensions (II)Z +MD: net/minecraft/world/item/crafting/SingleItemRecipe/m_8043_ (Lnet/minecraft/core/RegistryAccess;)Lnet/minecraft/world/item/ItemStack; net/minecraft/world/item/crafting/SingleItemRecipe/getResultItem (Lnet/minecraft/core/RegistryAccess;)Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/item/crafting/SingleItemRecipe$Serializer/ (Lnet/minecraft/world/item/crafting/SingleItemRecipe$Serializer$SingleItemMaker;)V net/minecraft/world/item/crafting/SingleItemRecipe$Serializer/ (Lnet/minecraft/world/item/crafting/SingleItemRecipe$Serializer$SingleItemMaker;)V +MD: net/minecraft/world/item/crafting/SingleItemRecipe$Serializer/m_6178_ (Lnet/minecraft/network/FriendlyByteBuf;Lnet/minecraft/world/item/crafting/SingleItemRecipe;)V net/minecraft/world/item/crafting/SingleItemRecipe$Serializer/toNetwork (Lnet/minecraft/network/FriendlyByteBuf;Lnet/minecraft/world/item/crafting/SingleItemRecipe;)V +MD: net/minecraft/world/item/crafting/SingleItemRecipe$Serializer/m_6178_ (Lnet/minecraft/network/FriendlyByteBuf;Lnet/minecraft/world/item/crafting/Recipe;)V net/minecraft/world/item/crafting/SingleItemRecipe$Serializer/toNetwork (Lnet/minecraft/network/FriendlyByteBuf;Lnet/minecraft/world/item/crafting/Recipe;)V +MD: net/minecraft/world/item/crafting/SingleItemRecipe$Serializer/m_6729_ (Lnet/minecraft/resources/ResourceLocation;Lcom/google/gson/JsonObject;)Lnet/minecraft/world/item/crafting/SingleItemRecipe; net/minecraft/world/item/crafting/SingleItemRecipe$Serializer/fromJson (Lnet/minecraft/resources/ResourceLocation;Lcom/google/gson/JsonObject;)Lnet/minecraft/world/item/crafting/SingleItemRecipe; +MD: net/minecraft/world/item/crafting/SingleItemRecipe$Serializer/m_6729_ (Lnet/minecraft/resources/ResourceLocation;Lcom/google/gson/JsonObject;)Lnet/minecraft/world/item/crafting/Recipe; net/minecraft/world/item/crafting/SingleItemRecipe$Serializer/fromJson (Lnet/minecraft/resources/ResourceLocation;Lcom/google/gson/JsonObject;)Lnet/minecraft/world/item/crafting/Recipe; +MD: net/minecraft/world/item/crafting/SingleItemRecipe$Serializer/m_8005_ (Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/network/FriendlyByteBuf;)Lnet/minecraft/world/item/crafting/Recipe; net/minecraft/world/item/crafting/SingleItemRecipe$Serializer/fromNetwork (Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/network/FriendlyByteBuf;)Lnet/minecraft/world/item/crafting/Recipe; +MD: net/minecraft/world/item/crafting/SingleItemRecipe$Serializer/m_8005_ (Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/network/FriendlyByteBuf;)Lnet/minecraft/world/item/crafting/SingleItemRecipe; net/minecraft/world/item/crafting/SingleItemRecipe$Serializer/fromNetwork (Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/network/FriendlyByteBuf;)Lnet/minecraft/world/item/crafting/SingleItemRecipe; +MD: net/minecraft/world/item/crafting/SingleItemRecipe$Serializer$SingleItemMaker/m_44454_ (Lnet/minecraft/resources/ResourceLocation;Ljava/lang/String;Lnet/minecraft/world/item/crafting/Ingredient;Lnet/minecraft/world/item/ItemStack;)Lnet/minecraft/world/item/crafting/SingleItemRecipe; net/minecraft/world/item/crafting/SingleItemRecipe$Serializer$SingleItemMaker/create (Lnet/minecraft/resources/ResourceLocation;Ljava/lang/String;Lnet/minecraft/world/item/crafting/Ingredient;Lnet/minecraft/world/item/ItemStack;)Lnet/minecraft/world/item/crafting/SingleItemRecipe; +MD: net/minecraft/world/item/crafting/SmeltingRecipe/ (Lnet/minecraft/resources/ResourceLocation;Ljava/lang/String;Lnet/minecraft/world/item/crafting/CookingBookCategory;Lnet/minecraft/world/item/crafting/Ingredient;Lnet/minecraft/world/item/ItemStack;FI)V net/minecraft/world/item/crafting/SmeltingRecipe/ (Lnet/minecraft/resources/ResourceLocation;Ljava/lang/String;Lnet/minecraft/world/item/crafting/CookingBookCategory;Lnet/minecraft/world/item/crafting/Ingredient;Lnet/minecraft/world/item/ItemStack;FI)V +MD: net/minecraft/world/item/crafting/SmeltingRecipe/m_7707_ ()Lnet/minecraft/world/item/crafting/RecipeSerializer; net/minecraft/world/item/crafting/SmeltingRecipe/getSerializer ()Lnet/minecraft/world/item/crafting/RecipeSerializer; +MD: net/minecraft/world/item/crafting/SmeltingRecipe/m_8042_ ()Lnet/minecraft/world/item/ItemStack; net/minecraft/world/item/crafting/SmeltingRecipe/getToastSymbol ()Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/item/crafting/SmithingRecipe/m_266166_ (Lnet/minecraft/world/item/ItemStack;)Z net/minecraft/world/item/crafting/SmithingRecipe/isTemplateIngredient (Lnet/minecraft/world/item/ItemStack;)Z +MD: net/minecraft/world/item/crafting/SmithingRecipe/m_266253_ (Lnet/minecraft/world/item/ItemStack;)Z net/minecraft/world/item/crafting/SmithingRecipe/isAdditionIngredient (Lnet/minecraft/world/item/ItemStack;)Z +MD: net/minecraft/world/item/crafting/SmithingRecipe/m_266343_ (Lnet/minecraft/world/item/ItemStack;)Z net/minecraft/world/item/crafting/SmithingRecipe/isBaseIngredient (Lnet/minecraft/world/item/ItemStack;)Z +MD: net/minecraft/world/item/crafting/SmithingRecipe/m_6671_ ()Lnet/minecraft/world/item/crafting/RecipeType; net/minecraft/world/item/crafting/SmithingRecipe/getType ()Lnet/minecraft/world/item/crafting/RecipeType; +MD: net/minecraft/world/item/crafting/SmithingRecipe/m_8004_ (II)Z net/minecraft/world/item/crafting/SmithingRecipe/canCraftInDimensions (II)Z +MD: net/minecraft/world/item/crafting/SmithingRecipe/m_8042_ ()Lnet/minecraft/world/item/ItemStack; net/minecraft/world/item/crafting/SmithingRecipe/getToastSymbol ()Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/item/crafting/SmithingTransformRecipe/ (Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/world/item/crafting/Ingredient;Lnet/minecraft/world/item/crafting/Ingredient;Lnet/minecraft/world/item/crafting/Ingredient;Lnet/minecraft/world/item/ItemStack;)V net/minecraft/world/item/crafting/SmithingTransformRecipe/ (Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/world/item/crafting/Ingredient;Lnet/minecraft/world/item/crafting/Ingredient;Lnet/minecraft/world/item/crafting/Ingredient;Lnet/minecraft/world/item/ItemStack;)V +MD: net/minecraft/world/item/crafting/SmithingTransformRecipe/m_142505_ ()Z net/minecraft/world/item/crafting/SmithingTransformRecipe/isIncomplete ()Z +MD: net/minecraft/world/item/crafting/SmithingTransformRecipe/m_266166_ (Lnet/minecraft/world/item/ItemStack;)Z net/minecraft/world/item/crafting/SmithingTransformRecipe/isTemplateIngredient (Lnet/minecraft/world/item/ItemStack;)Z +MD: net/minecraft/world/item/crafting/SmithingTransformRecipe/m_266253_ (Lnet/minecraft/world/item/ItemStack;)Z net/minecraft/world/item/crafting/SmithingTransformRecipe/isAdditionIngredient (Lnet/minecraft/world/item/ItemStack;)Z +MD: net/minecraft/world/item/crafting/SmithingTransformRecipe/m_266343_ (Lnet/minecraft/world/item/ItemStack;)Z net/minecraft/world/item/crafting/SmithingTransformRecipe/isBaseIngredient (Lnet/minecraft/world/item/ItemStack;)Z +MD: net/minecraft/world/item/crafting/SmithingTransformRecipe/m_5818_ (Lnet/minecraft/world/Container;Lnet/minecraft/world/level/Level;)Z net/minecraft/world/item/crafting/SmithingTransformRecipe/matches (Lnet/minecraft/world/Container;Lnet/minecraft/world/level/Level;)Z +MD: net/minecraft/world/item/crafting/SmithingTransformRecipe/m_5874_ (Lnet/minecraft/world/Container;Lnet/minecraft/core/RegistryAccess;)Lnet/minecraft/world/item/ItemStack; net/minecraft/world/item/crafting/SmithingTransformRecipe/assemble (Lnet/minecraft/world/Container;Lnet/minecraft/core/RegistryAccess;)Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/item/crafting/SmithingTransformRecipe/m_6423_ ()Lnet/minecraft/resources/ResourceLocation; net/minecraft/world/item/crafting/SmithingTransformRecipe/getId ()Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/world/item/crafting/SmithingTransformRecipe/m_7707_ ()Lnet/minecraft/world/item/crafting/RecipeSerializer; net/minecraft/world/item/crafting/SmithingTransformRecipe/getSerializer ()Lnet/minecraft/world/item/crafting/RecipeSerializer; +MD: net/minecraft/world/item/crafting/SmithingTransformRecipe/m_8043_ (Lnet/minecraft/core/RegistryAccess;)Lnet/minecraft/world/item/ItemStack; net/minecraft/world/item/crafting/SmithingTransformRecipe/getResultItem (Lnet/minecraft/core/RegistryAccess;)Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/item/crafting/SmithingTransformRecipe$Serializer/ ()V net/minecraft/world/item/crafting/SmithingTransformRecipe$Serializer/ ()V +MD: net/minecraft/world/item/crafting/SmithingTransformRecipe$Serializer/m_6178_ (Lnet/minecraft/network/FriendlyByteBuf;Lnet/minecraft/world/item/crafting/SmithingTransformRecipe;)V net/minecraft/world/item/crafting/SmithingTransformRecipe$Serializer/toNetwork (Lnet/minecraft/network/FriendlyByteBuf;Lnet/minecraft/world/item/crafting/SmithingTransformRecipe;)V +MD: net/minecraft/world/item/crafting/SmithingTransformRecipe$Serializer/m_6178_ (Lnet/minecraft/network/FriendlyByteBuf;Lnet/minecraft/world/item/crafting/Recipe;)V net/minecraft/world/item/crafting/SmithingTransformRecipe$Serializer/toNetwork (Lnet/minecraft/network/FriendlyByteBuf;Lnet/minecraft/world/item/crafting/Recipe;)V +MD: net/minecraft/world/item/crafting/SmithingTransformRecipe$Serializer/m_6729_ (Lnet/minecraft/resources/ResourceLocation;Lcom/google/gson/JsonObject;)Lnet/minecraft/world/item/crafting/Recipe; net/minecraft/world/item/crafting/SmithingTransformRecipe$Serializer/fromJson (Lnet/minecraft/resources/ResourceLocation;Lcom/google/gson/JsonObject;)Lnet/minecraft/world/item/crafting/Recipe; +MD: net/minecraft/world/item/crafting/SmithingTransformRecipe$Serializer/m_6729_ (Lnet/minecraft/resources/ResourceLocation;Lcom/google/gson/JsonObject;)Lnet/minecraft/world/item/crafting/SmithingTransformRecipe; net/minecraft/world/item/crafting/SmithingTransformRecipe$Serializer/fromJson (Lnet/minecraft/resources/ResourceLocation;Lcom/google/gson/JsonObject;)Lnet/minecraft/world/item/crafting/SmithingTransformRecipe; +MD: net/minecraft/world/item/crafting/SmithingTransformRecipe$Serializer/m_8005_ (Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/network/FriendlyByteBuf;)Lnet/minecraft/world/item/crafting/Recipe; net/minecraft/world/item/crafting/SmithingTransformRecipe$Serializer/fromNetwork (Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/network/FriendlyByteBuf;)Lnet/minecraft/world/item/crafting/Recipe; +MD: net/minecraft/world/item/crafting/SmithingTransformRecipe$Serializer/m_8005_ (Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/network/FriendlyByteBuf;)Lnet/minecraft/world/item/crafting/SmithingTransformRecipe; net/minecraft/world/item/crafting/SmithingTransformRecipe$Serializer/fromNetwork (Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/network/FriendlyByteBuf;)Lnet/minecraft/world/item/crafting/SmithingTransformRecipe; +MD: net/minecraft/world/item/crafting/SmithingTrimRecipe/ (Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/world/item/crafting/Ingredient;Lnet/minecraft/world/item/crafting/Ingredient;Lnet/minecraft/world/item/crafting/Ingredient;)V net/minecraft/world/item/crafting/SmithingTrimRecipe/ (Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/world/item/crafting/Ingredient;Lnet/minecraft/world/item/crafting/Ingredient;Lnet/minecraft/world/item/crafting/Ingredient;)V +MD: net/minecraft/world/item/crafting/SmithingTrimRecipe/m_142505_ ()Z net/minecraft/world/item/crafting/SmithingTrimRecipe/isIncomplete ()Z +MD: net/minecraft/world/item/crafting/SmithingTrimRecipe/m_266166_ (Lnet/minecraft/world/item/ItemStack;)Z net/minecraft/world/item/crafting/SmithingTrimRecipe/isTemplateIngredient (Lnet/minecraft/world/item/ItemStack;)Z +MD: net/minecraft/world/item/crafting/SmithingTrimRecipe/m_266253_ (Lnet/minecraft/world/item/ItemStack;)Z net/minecraft/world/item/crafting/SmithingTrimRecipe/isAdditionIngredient (Lnet/minecraft/world/item/ItemStack;)Z +MD: net/minecraft/world/item/crafting/SmithingTrimRecipe/m_266343_ (Lnet/minecraft/world/item/ItemStack;)Z net/minecraft/world/item/crafting/SmithingTrimRecipe/isBaseIngredient (Lnet/minecraft/world/item/ItemStack;)Z +MD: net/minecraft/world/item/crafting/SmithingTrimRecipe/m_5818_ (Lnet/minecraft/world/Container;Lnet/minecraft/world/level/Level;)Z net/minecraft/world/item/crafting/SmithingTrimRecipe/matches (Lnet/minecraft/world/Container;Lnet/minecraft/world/level/Level;)Z +MD: net/minecraft/world/item/crafting/SmithingTrimRecipe/m_5874_ (Lnet/minecraft/world/Container;Lnet/minecraft/core/RegistryAccess;)Lnet/minecraft/world/item/ItemStack; net/minecraft/world/item/crafting/SmithingTrimRecipe/assemble (Lnet/minecraft/world/Container;Lnet/minecraft/core/RegistryAccess;)Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/item/crafting/SmithingTrimRecipe/m_6423_ ()Lnet/minecraft/resources/ResourceLocation; net/minecraft/world/item/crafting/SmithingTrimRecipe/getId ()Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/world/item/crafting/SmithingTrimRecipe/m_7707_ ()Lnet/minecraft/world/item/crafting/RecipeSerializer; net/minecraft/world/item/crafting/SmithingTrimRecipe/getSerializer ()Lnet/minecraft/world/item/crafting/RecipeSerializer; +MD: net/minecraft/world/item/crafting/SmithingTrimRecipe/m_8043_ (Lnet/minecraft/core/RegistryAccess;)Lnet/minecraft/world/item/ItemStack; net/minecraft/world/item/crafting/SmithingTrimRecipe/getResultItem (Lnet/minecraft/core/RegistryAccess;)Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/item/crafting/SmithingTrimRecipe$Serializer/ ()V net/minecraft/world/item/crafting/SmithingTrimRecipe$Serializer/ ()V +MD: net/minecraft/world/item/crafting/SmithingTrimRecipe$Serializer/m_6178_ (Lnet/minecraft/network/FriendlyByteBuf;Lnet/minecraft/world/item/crafting/SmithingTrimRecipe;)V net/minecraft/world/item/crafting/SmithingTrimRecipe$Serializer/toNetwork (Lnet/minecraft/network/FriendlyByteBuf;Lnet/minecraft/world/item/crafting/SmithingTrimRecipe;)V +MD: net/minecraft/world/item/crafting/SmithingTrimRecipe$Serializer/m_6178_ (Lnet/minecraft/network/FriendlyByteBuf;Lnet/minecraft/world/item/crafting/Recipe;)V net/minecraft/world/item/crafting/SmithingTrimRecipe$Serializer/toNetwork (Lnet/minecraft/network/FriendlyByteBuf;Lnet/minecraft/world/item/crafting/Recipe;)V +MD: net/minecraft/world/item/crafting/SmithingTrimRecipe$Serializer/m_6729_ (Lnet/minecraft/resources/ResourceLocation;Lcom/google/gson/JsonObject;)Lnet/minecraft/world/item/crafting/Recipe; net/minecraft/world/item/crafting/SmithingTrimRecipe$Serializer/fromJson (Lnet/minecraft/resources/ResourceLocation;Lcom/google/gson/JsonObject;)Lnet/minecraft/world/item/crafting/Recipe; +MD: net/minecraft/world/item/crafting/SmithingTrimRecipe$Serializer/m_6729_ (Lnet/minecraft/resources/ResourceLocation;Lcom/google/gson/JsonObject;)Lnet/minecraft/world/item/crafting/SmithingTrimRecipe; net/minecraft/world/item/crafting/SmithingTrimRecipe$Serializer/fromJson (Lnet/minecraft/resources/ResourceLocation;Lcom/google/gson/JsonObject;)Lnet/minecraft/world/item/crafting/SmithingTrimRecipe; +MD: net/minecraft/world/item/crafting/SmithingTrimRecipe$Serializer/m_8005_ (Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/network/FriendlyByteBuf;)Lnet/minecraft/world/item/crafting/SmithingTrimRecipe; net/minecraft/world/item/crafting/SmithingTrimRecipe$Serializer/fromNetwork (Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/network/FriendlyByteBuf;)Lnet/minecraft/world/item/crafting/SmithingTrimRecipe; +MD: net/minecraft/world/item/crafting/SmithingTrimRecipe$Serializer/m_8005_ (Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/network/FriendlyByteBuf;)Lnet/minecraft/world/item/crafting/Recipe; net/minecraft/world/item/crafting/SmithingTrimRecipe$Serializer/fromNetwork (Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/network/FriendlyByteBuf;)Lnet/minecraft/world/item/crafting/Recipe; +MD: net/minecraft/world/item/crafting/SmokingRecipe/ (Lnet/minecraft/resources/ResourceLocation;Ljava/lang/String;Lnet/minecraft/world/item/crafting/CookingBookCategory;Lnet/minecraft/world/item/crafting/Ingredient;Lnet/minecraft/world/item/ItemStack;FI)V net/minecraft/world/item/crafting/SmokingRecipe/ (Lnet/minecraft/resources/ResourceLocation;Ljava/lang/String;Lnet/minecraft/world/item/crafting/CookingBookCategory;Lnet/minecraft/world/item/crafting/Ingredient;Lnet/minecraft/world/item/ItemStack;FI)V +MD: net/minecraft/world/item/crafting/SmokingRecipe/m_7707_ ()Lnet/minecraft/world/item/crafting/RecipeSerializer; net/minecraft/world/item/crafting/SmokingRecipe/getSerializer ()Lnet/minecraft/world/item/crafting/RecipeSerializer; +MD: net/minecraft/world/item/crafting/SmokingRecipe/m_8042_ ()Lnet/minecraft/world/item/ItemStack; net/minecraft/world/item/crafting/SmokingRecipe/getToastSymbol ()Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/item/crafting/StonecutterRecipe/ (Lnet/minecraft/resources/ResourceLocation;Ljava/lang/String;Lnet/minecraft/world/item/crafting/Ingredient;Lnet/minecraft/world/item/ItemStack;)V net/minecraft/world/item/crafting/StonecutterRecipe/ (Lnet/minecraft/resources/ResourceLocation;Ljava/lang/String;Lnet/minecraft/world/item/crafting/Ingredient;Lnet/minecraft/world/item/ItemStack;)V +MD: net/minecraft/world/item/crafting/StonecutterRecipe/m_5818_ (Lnet/minecraft/world/Container;Lnet/minecraft/world/level/Level;)Z net/minecraft/world/item/crafting/StonecutterRecipe/matches (Lnet/minecraft/world/Container;Lnet/minecraft/world/level/Level;)Z +MD: net/minecraft/world/item/crafting/StonecutterRecipe/m_8042_ ()Lnet/minecraft/world/item/ItemStack; net/minecraft/world/item/crafting/StonecutterRecipe/getToastSymbol ()Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/item/crafting/SuspiciousStewRecipe/ (Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/world/item/crafting/CraftingBookCategory;)V net/minecraft/world/item/crafting/SuspiciousStewRecipe/ (Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/world/item/crafting/CraftingBookCategory;)V +MD: net/minecraft/world/item/crafting/SuspiciousStewRecipe/m_5818_ (Lnet/minecraft/world/Container;Lnet/minecraft/world/level/Level;)Z net/minecraft/world/item/crafting/SuspiciousStewRecipe/matches (Lnet/minecraft/world/Container;Lnet/minecraft/world/level/Level;)Z +MD: net/minecraft/world/item/crafting/SuspiciousStewRecipe/m_5818_ (Lnet/minecraft/world/inventory/CraftingContainer;Lnet/minecraft/world/level/Level;)Z net/minecraft/world/item/crafting/SuspiciousStewRecipe/matches (Lnet/minecraft/world/inventory/CraftingContainer;Lnet/minecraft/world/level/Level;)Z +MD: net/minecraft/world/item/crafting/SuspiciousStewRecipe/m_5874_ (Lnet/minecraft/world/inventory/CraftingContainer;Lnet/minecraft/core/RegistryAccess;)Lnet/minecraft/world/item/ItemStack; net/minecraft/world/item/crafting/SuspiciousStewRecipe/assemble (Lnet/minecraft/world/inventory/CraftingContainer;Lnet/minecraft/core/RegistryAccess;)Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/item/crafting/SuspiciousStewRecipe/m_5874_ (Lnet/minecraft/world/Container;Lnet/minecraft/core/RegistryAccess;)Lnet/minecraft/world/item/ItemStack; net/minecraft/world/item/crafting/SuspiciousStewRecipe/assemble (Lnet/minecraft/world/Container;Lnet/minecraft/core/RegistryAccess;)Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/item/crafting/SuspiciousStewRecipe/m_7707_ ()Lnet/minecraft/world/item/crafting/RecipeSerializer; net/minecraft/world/item/crafting/SuspiciousStewRecipe/getSerializer ()Lnet/minecraft/world/item/crafting/RecipeSerializer; +MD: net/minecraft/world/item/crafting/SuspiciousStewRecipe/m_8004_ (II)Z net/minecraft/world/item/crafting/SuspiciousStewRecipe/canCraftInDimensions (II)Z +MD: net/minecraft/world/item/crafting/TippedArrowRecipe/ (Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/world/item/crafting/CraftingBookCategory;)V net/minecraft/world/item/crafting/TippedArrowRecipe/ (Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/world/item/crafting/CraftingBookCategory;)V +MD: net/minecraft/world/item/crafting/TippedArrowRecipe/m_5818_ (Lnet/minecraft/world/Container;Lnet/minecraft/world/level/Level;)Z net/minecraft/world/item/crafting/TippedArrowRecipe/matches (Lnet/minecraft/world/Container;Lnet/minecraft/world/level/Level;)Z +MD: net/minecraft/world/item/crafting/TippedArrowRecipe/m_5818_ (Lnet/minecraft/world/inventory/CraftingContainer;Lnet/minecraft/world/level/Level;)Z net/minecraft/world/item/crafting/TippedArrowRecipe/matches (Lnet/minecraft/world/inventory/CraftingContainer;Lnet/minecraft/world/level/Level;)Z +MD: net/minecraft/world/item/crafting/TippedArrowRecipe/m_5874_ (Lnet/minecraft/world/inventory/CraftingContainer;Lnet/minecraft/core/RegistryAccess;)Lnet/minecraft/world/item/ItemStack; net/minecraft/world/item/crafting/TippedArrowRecipe/assemble (Lnet/minecraft/world/inventory/CraftingContainer;Lnet/minecraft/core/RegistryAccess;)Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/item/crafting/TippedArrowRecipe/m_5874_ (Lnet/minecraft/world/Container;Lnet/minecraft/core/RegistryAccess;)Lnet/minecraft/world/item/ItemStack; net/minecraft/world/item/crafting/TippedArrowRecipe/assemble (Lnet/minecraft/world/Container;Lnet/minecraft/core/RegistryAccess;)Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/item/crafting/TippedArrowRecipe/m_7707_ ()Lnet/minecraft/world/item/crafting/RecipeSerializer; net/minecraft/world/item/crafting/TippedArrowRecipe/getSerializer ()Lnet/minecraft/world/item/crafting/RecipeSerializer; +MD: net/minecraft/world/item/crafting/TippedArrowRecipe/m_8004_ (II)Z net/minecraft/world/item/crafting/TippedArrowRecipe/canCraftInDimensions (II)Z +MD: net/minecraft/world/item/enchantment/ArrowDamageEnchantment/ (Lnet/minecraft/world/item/enchantment/Enchantment$Rarity;[Lnet/minecraft/world/entity/EquipmentSlot;)V net/minecraft/world/item/enchantment/ArrowDamageEnchantment/ (Lnet/minecraft/world/item/enchantment/Enchantment$Rarity;[Lnet/minecraft/world/entity/EquipmentSlot;)V +MD: net/minecraft/world/item/enchantment/ArrowDamageEnchantment/m_6175_ (I)I net/minecraft/world/item/enchantment/ArrowDamageEnchantment/getMaxCost (I)I +MD: net/minecraft/world/item/enchantment/ArrowDamageEnchantment/m_6183_ (I)I net/minecraft/world/item/enchantment/ArrowDamageEnchantment/getMinCost (I)I +MD: net/minecraft/world/item/enchantment/ArrowDamageEnchantment/m_6586_ ()I net/minecraft/world/item/enchantment/ArrowDamageEnchantment/getMaxLevel ()I +MD: net/minecraft/world/item/enchantment/ArrowFireEnchantment/ (Lnet/minecraft/world/item/enchantment/Enchantment$Rarity;[Lnet/minecraft/world/entity/EquipmentSlot;)V net/minecraft/world/item/enchantment/ArrowFireEnchantment/ (Lnet/minecraft/world/item/enchantment/Enchantment$Rarity;[Lnet/minecraft/world/entity/EquipmentSlot;)V +MD: net/minecraft/world/item/enchantment/ArrowFireEnchantment/m_6175_ (I)I net/minecraft/world/item/enchantment/ArrowFireEnchantment/getMaxCost (I)I +MD: net/minecraft/world/item/enchantment/ArrowFireEnchantment/m_6183_ (I)I net/minecraft/world/item/enchantment/ArrowFireEnchantment/getMinCost (I)I +MD: net/minecraft/world/item/enchantment/ArrowInfiniteEnchantment/ (Lnet/minecraft/world/item/enchantment/Enchantment$Rarity;[Lnet/minecraft/world/entity/EquipmentSlot;)V net/minecraft/world/item/enchantment/ArrowInfiniteEnchantment/ (Lnet/minecraft/world/item/enchantment/Enchantment$Rarity;[Lnet/minecraft/world/entity/EquipmentSlot;)V +MD: net/minecraft/world/item/enchantment/ArrowInfiniteEnchantment/m_5975_ (Lnet/minecraft/world/item/enchantment/Enchantment;)Z net/minecraft/world/item/enchantment/ArrowInfiniteEnchantment/checkCompatibility (Lnet/minecraft/world/item/enchantment/Enchantment;)Z +MD: net/minecraft/world/item/enchantment/ArrowInfiniteEnchantment/m_6175_ (I)I net/minecraft/world/item/enchantment/ArrowInfiniteEnchantment/getMaxCost (I)I +MD: net/minecraft/world/item/enchantment/ArrowInfiniteEnchantment/m_6183_ (I)I net/minecraft/world/item/enchantment/ArrowInfiniteEnchantment/getMinCost (I)I +MD: net/minecraft/world/item/enchantment/ArrowKnockbackEnchantment/ (Lnet/minecraft/world/item/enchantment/Enchantment$Rarity;[Lnet/minecraft/world/entity/EquipmentSlot;)V net/minecraft/world/item/enchantment/ArrowKnockbackEnchantment/ (Lnet/minecraft/world/item/enchantment/Enchantment$Rarity;[Lnet/minecraft/world/entity/EquipmentSlot;)V +MD: net/minecraft/world/item/enchantment/ArrowKnockbackEnchantment/m_6175_ (I)I net/minecraft/world/item/enchantment/ArrowKnockbackEnchantment/getMaxCost (I)I +MD: net/minecraft/world/item/enchantment/ArrowKnockbackEnchantment/m_6183_ (I)I net/minecraft/world/item/enchantment/ArrowKnockbackEnchantment/getMinCost (I)I +MD: net/minecraft/world/item/enchantment/ArrowKnockbackEnchantment/m_6586_ ()I net/minecraft/world/item/enchantment/ArrowKnockbackEnchantment/getMaxLevel ()I +MD: net/minecraft/world/item/enchantment/ArrowPiercingEnchantment/ (Lnet/minecraft/world/item/enchantment/Enchantment$Rarity;[Lnet/minecraft/world/entity/EquipmentSlot;)V net/minecraft/world/item/enchantment/ArrowPiercingEnchantment/ (Lnet/minecraft/world/item/enchantment/Enchantment$Rarity;[Lnet/minecraft/world/entity/EquipmentSlot;)V +MD: net/minecraft/world/item/enchantment/ArrowPiercingEnchantment/m_5975_ (Lnet/minecraft/world/item/enchantment/Enchantment;)Z net/minecraft/world/item/enchantment/ArrowPiercingEnchantment/checkCompatibility (Lnet/minecraft/world/item/enchantment/Enchantment;)Z +MD: net/minecraft/world/item/enchantment/ArrowPiercingEnchantment/m_6175_ (I)I net/minecraft/world/item/enchantment/ArrowPiercingEnchantment/getMaxCost (I)I +MD: net/minecraft/world/item/enchantment/ArrowPiercingEnchantment/m_6183_ (I)I net/minecraft/world/item/enchantment/ArrowPiercingEnchantment/getMinCost (I)I +MD: net/minecraft/world/item/enchantment/ArrowPiercingEnchantment/m_6586_ ()I net/minecraft/world/item/enchantment/ArrowPiercingEnchantment/getMaxLevel ()I +MD: net/minecraft/world/item/enchantment/BindingCurseEnchantment/ (Lnet/minecraft/world/item/enchantment/Enchantment$Rarity;[Lnet/minecraft/world/entity/EquipmentSlot;)V net/minecraft/world/item/enchantment/BindingCurseEnchantment/ (Lnet/minecraft/world/item/enchantment/Enchantment$Rarity;[Lnet/minecraft/world/entity/EquipmentSlot;)V +MD: net/minecraft/world/item/enchantment/BindingCurseEnchantment/m_6081_ (Lnet/minecraft/world/item/ItemStack;)Z net/minecraft/world/item/enchantment/BindingCurseEnchantment/canEnchant (Lnet/minecraft/world/item/ItemStack;)Z +MD: net/minecraft/world/item/enchantment/BindingCurseEnchantment/m_6175_ (I)I net/minecraft/world/item/enchantment/BindingCurseEnchantment/getMaxCost (I)I +MD: net/minecraft/world/item/enchantment/BindingCurseEnchantment/m_6183_ (I)I net/minecraft/world/item/enchantment/BindingCurseEnchantment/getMinCost (I)I +MD: net/minecraft/world/item/enchantment/BindingCurseEnchantment/m_6589_ ()Z net/minecraft/world/item/enchantment/BindingCurseEnchantment/isCurse ()Z +MD: net/minecraft/world/item/enchantment/BindingCurseEnchantment/m_6591_ ()Z net/minecraft/world/item/enchantment/BindingCurseEnchantment/isTreasureOnly ()Z +MD: net/minecraft/world/item/enchantment/DamageEnchantment/ ()V net/minecraft/world/item/enchantment/DamageEnchantment/ ()V +MD: net/minecraft/world/item/enchantment/DamageEnchantment/ (Lnet/minecraft/world/item/enchantment/Enchantment$Rarity;I[Lnet/minecraft/world/entity/EquipmentSlot;)V net/minecraft/world/item/enchantment/DamageEnchantment/ (Lnet/minecraft/world/item/enchantment/Enchantment$Rarity;I[Lnet/minecraft/world/entity/EquipmentSlot;)V +MD: net/minecraft/world/item/enchantment/DamageEnchantment/m_5975_ (Lnet/minecraft/world/item/enchantment/Enchantment;)Z net/minecraft/world/item/enchantment/DamageEnchantment/checkCompatibility (Lnet/minecraft/world/item/enchantment/Enchantment;)Z +MD: net/minecraft/world/item/enchantment/DamageEnchantment/m_6081_ (Lnet/minecraft/world/item/ItemStack;)Z net/minecraft/world/item/enchantment/DamageEnchantment/canEnchant (Lnet/minecraft/world/item/ItemStack;)Z +MD: net/minecraft/world/item/enchantment/DamageEnchantment/m_6175_ (I)I net/minecraft/world/item/enchantment/DamageEnchantment/getMaxCost (I)I +MD: net/minecraft/world/item/enchantment/DamageEnchantment/m_6183_ (I)I net/minecraft/world/item/enchantment/DamageEnchantment/getMinCost (I)I +MD: net/minecraft/world/item/enchantment/DamageEnchantment/m_6586_ ()I net/minecraft/world/item/enchantment/DamageEnchantment/getMaxLevel ()I +MD: net/minecraft/world/item/enchantment/DamageEnchantment/m_7335_ (ILnet/minecraft/world/entity/MobType;)F net/minecraft/world/item/enchantment/DamageEnchantment/getDamageBonus (ILnet/minecraft/world/entity/MobType;)F +MD: net/minecraft/world/item/enchantment/DamageEnchantment/m_7677_ (Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/entity/Entity;I)V net/minecraft/world/item/enchantment/DamageEnchantment/doPostAttack (Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/entity/Entity;I)V +MD: net/minecraft/world/item/enchantment/DigDurabilityEnchantment/ (Lnet/minecraft/world/item/enchantment/Enchantment$Rarity;[Lnet/minecraft/world/entity/EquipmentSlot;)V net/minecraft/world/item/enchantment/DigDurabilityEnchantment/ (Lnet/minecraft/world/item/enchantment/Enchantment$Rarity;[Lnet/minecraft/world/entity/EquipmentSlot;)V +MD: net/minecraft/world/item/enchantment/DigDurabilityEnchantment/m_220282_ (Lnet/minecraft/world/item/ItemStack;ILnet/minecraft/util/RandomSource;)Z net/minecraft/world/item/enchantment/DigDurabilityEnchantment/shouldIgnoreDurabilityDrop (Lnet/minecraft/world/item/ItemStack;ILnet/minecraft/util/RandomSource;)Z +MD: net/minecraft/world/item/enchantment/DigDurabilityEnchantment/m_6081_ (Lnet/minecraft/world/item/ItemStack;)Z net/minecraft/world/item/enchantment/DigDurabilityEnchantment/canEnchant (Lnet/minecraft/world/item/ItemStack;)Z +MD: net/minecraft/world/item/enchantment/DigDurabilityEnchantment/m_6175_ (I)I net/minecraft/world/item/enchantment/DigDurabilityEnchantment/getMaxCost (I)I +MD: net/minecraft/world/item/enchantment/DigDurabilityEnchantment/m_6183_ (I)I net/minecraft/world/item/enchantment/DigDurabilityEnchantment/getMinCost (I)I +MD: net/minecraft/world/item/enchantment/DigDurabilityEnchantment/m_6586_ ()I net/minecraft/world/item/enchantment/DigDurabilityEnchantment/getMaxLevel ()I +MD: net/minecraft/world/item/enchantment/DiggingEnchantment/ (Lnet/minecraft/world/item/enchantment/Enchantment$Rarity;[Lnet/minecraft/world/entity/EquipmentSlot;)V net/minecraft/world/item/enchantment/DiggingEnchantment/ (Lnet/minecraft/world/item/enchantment/Enchantment$Rarity;[Lnet/minecraft/world/entity/EquipmentSlot;)V +MD: net/minecraft/world/item/enchantment/DiggingEnchantment/m_6081_ (Lnet/minecraft/world/item/ItemStack;)Z net/minecraft/world/item/enchantment/DiggingEnchantment/canEnchant (Lnet/minecraft/world/item/ItemStack;)Z +MD: net/minecraft/world/item/enchantment/DiggingEnchantment/m_6175_ (I)I net/minecraft/world/item/enchantment/DiggingEnchantment/getMaxCost (I)I +MD: net/minecraft/world/item/enchantment/DiggingEnchantment/m_6183_ (I)I net/minecraft/world/item/enchantment/DiggingEnchantment/getMinCost (I)I +MD: net/minecraft/world/item/enchantment/DiggingEnchantment/m_6586_ ()I net/minecraft/world/item/enchantment/DiggingEnchantment/getMaxLevel ()I +MD: net/minecraft/world/item/enchantment/Enchantment/ (Lnet/minecraft/world/item/enchantment/Enchantment$Rarity;Lnet/minecraft/world/item/enchantment/EnchantmentCategory;[Lnet/minecraft/world/entity/EquipmentSlot;)V net/minecraft/world/item/enchantment/Enchantment/ (Lnet/minecraft/world/item/enchantment/Enchantment$Rarity;Lnet/minecraft/world/item/enchantment/EnchantmentCategory;[Lnet/minecraft/world/entity/EquipmentSlot;)V +MD: net/minecraft/world/item/enchantment/Enchantment/m_44684_ (Lnet/minecraft/world/entity/LivingEntity;)Ljava/util/Map; net/minecraft/world/item/enchantment/Enchantment/getSlotItems (Lnet/minecraft/world/entity/LivingEntity;)Ljava/util/Map; +MD: net/minecraft/world/item/enchantment/Enchantment/m_44695_ (Lnet/minecraft/world/item/enchantment/Enchantment;)Z net/minecraft/world/item/enchantment/Enchantment/isCompatibleWith (Lnet/minecraft/world/item/enchantment/Enchantment;)Z +MD: net/minecraft/world/item/enchantment/Enchantment/m_44697_ (I)Lnet/minecraft/world/item/enchantment/Enchantment; net/minecraft/world/item/enchantment/Enchantment/byId (I)Lnet/minecraft/world/item/enchantment/Enchantment; +MD: net/minecraft/world/item/enchantment/Enchantment/m_44699_ ()Lnet/minecraft/world/item/enchantment/Enchantment$Rarity; net/minecraft/world/item/enchantment/Enchantment/getRarity ()Lnet/minecraft/world/item/enchantment/Enchantment$Rarity; +MD: net/minecraft/world/item/enchantment/Enchantment/m_44700_ (I)Lnet/minecraft/network/chat/Component; net/minecraft/world/item/enchantment/Enchantment/getFullname (I)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/world/item/enchantment/Enchantment/m_44702_ ()I net/minecraft/world/item/enchantment/Enchantment/getMinLevel ()I +MD: net/minecraft/world/item/enchantment/Enchantment/m_44703_ ()Ljava/lang/String; net/minecraft/world/item/enchantment/Enchantment/getOrCreateDescriptionId ()Ljava/lang/String; +MD: net/minecraft/world/item/enchantment/Enchantment/m_44704_ ()Ljava/lang/String; net/minecraft/world/item/enchantment/Enchantment/getDescriptionId ()Ljava/lang/String; +MD: net/minecraft/world/item/enchantment/Enchantment/m_5975_ (Lnet/minecraft/world/item/enchantment/Enchantment;)Z net/minecraft/world/item/enchantment/Enchantment/checkCompatibility (Lnet/minecraft/world/item/enchantment/Enchantment;)Z +MD: net/minecraft/world/item/enchantment/Enchantment/m_6081_ (Lnet/minecraft/world/item/ItemStack;)Z net/minecraft/world/item/enchantment/Enchantment/canEnchant (Lnet/minecraft/world/item/ItemStack;)Z +MD: net/minecraft/world/item/enchantment/Enchantment/m_6175_ (I)I net/minecraft/world/item/enchantment/Enchantment/getMaxCost (I)I +MD: net/minecraft/world/item/enchantment/Enchantment/m_6183_ (I)I net/minecraft/world/item/enchantment/Enchantment/getMinCost (I)I +MD: net/minecraft/world/item/enchantment/Enchantment/m_6586_ ()I net/minecraft/world/item/enchantment/Enchantment/getMaxLevel ()I +MD: net/minecraft/world/item/enchantment/Enchantment/m_6589_ ()Z net/minecraft/world/item/enchantment/Enchantment/isCurse ()Z +MD: net/minecraft/world/item/enchantment/Enchantment/m_6591_ ()Z net/minecraft/world/item/enchantment/Enchantment/isTreasureOnly ()Z +MD: net/minecraft/world/item/enchantment/Enchantment/m_6592_ ()Z net/minecraft/world/item/enchantment/Enchantment/isDiscoverable ()Z +MD: net/minecraft/world/item/enchantment/Enchantment/m_6594_ ()Z net/minecraft/world/item/enchantment/Enchantment/isTradeable ()Z +MD: net/minecraft/world/item/enchantment/Enchantment/m_7205_ (ILnet/minecraft/world/damagesource/DamageSource;)I net/minecraft/world/item/enchantment/Enchantment/getDamageProtection (ILnet/minecraft/world/damagesource/DamageSource;)I +MD: net/minecraft/world/item/enchantment/Enchantment/m_7335_ (ILnet/minecraft/world/entity/MobType;)F net/minecraft/world/item/enchantment/Enchantment/getDamageBonus (ILnet/minecraft/world/entity/MobType;)F +MD: net/minecraft/world/item/enchantment/Enchantment/m_7675_ (Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/entity/Entity;I)V net/minecraft/world/item/enchantment/Enchantment/doPostHurt (Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/entity/Entity;I)V +MD: net/minecraft/world/item/enchantment/Enchantment/m_7677_ (Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/entity/Entity;I)V net/minecraft/world/item/enchantment/Enchantment/doPostAttack (Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/entity/Entity;I)V +MD: net/minecraft/world/item/enchantment/Enchantment$Rarity/ ()V net/minecraft/world/item/enchantment/Enchantment$Rarity/ ()V +MD: net/minecraft/world/item/enchantment/Enchantment$Rarity/ (Ljava/lang/String;II)V net/minecraft/world/item/enchantment/Enchantment$Rarity/ (Ljava/lang/String;II)V +MD: net/minecraft/world/item/enchantment/Enchantment$Rarity/m_151292_ ()[Lnet/minecraft/world/item/enchantment/Enchantment$Rarity; net/minecraft/world/item/enchantment/Enchantment$Rarity/$values ()[Lnet/minecraft/world/item/enchantment/Enchantment$Rarity; +MD: net/minecraft/world/item/enchantment/Enchantment$Rarity/m_44716_ ()I net/minecraft/world/item/enchantment/Enchantment$Rarity/getWeight ()I +MD: net/minecraft/world/item/enchantment/Enchantment$Rarity/valueOf (Ljava/lang/String;)Lnet/minecraft/world/item/enchantment/Enchantment$Rarity; net/minecraft/world/item/enchantment/Enchantment$Rarity/valueOf (Ljava/lang/String;)Lnet/minecraft/world/item/enchantment/Enchantment$Rarity; +MD: net/minecraft/world/item/enchantment/Enchantment$Rarity/values ()[Lnet/minecraft/world/item/enchantment/Enchantment$Rarity; net/minecraft/world/item/enchantment/Enchantment$Rarity/values ()[Lnet/minecraft/world/item/enchantment/Enchantment$Rarity; +MD: net/minecraft/world/item/enchantment/EnchantmentCategory/ ()V net/minecraft/world/item/enchantment/EnchantmentCategory/ ()V +MD: net/minecraft/world/item/enchantment/EnchantmentCategory/ (Ljava/lang/String;I)V net/minecraft/world/item/enchantment/EnchantmentCategory/ (Ljava/lang/String;I)V +MD: net/minecraft/world/item/enchantment/EnchantmentCategory/m_151293_ ()[Lnet/minecraft/world/item/enchantment/EnchantmentCategory; net/minecraft/world/item/enchantment/EnchantmentCategory/$values ()[Lnet/minecraft/world/item/enchantment/EnchantmentCategory; +MD: net/minecraft/world/item/enchantment/EnchantmentCategory/m_7454_ (Lnet/minecraft/world/item/Item;)Z net/minecraft/world/item/enchantment/EnchantmentCategory/canEnchant (Lnet/minecraft/world/item/Item;)Z +MD: net/minecraft/world/item/enchantment/EnchantmentCategory/valueOf (Ljava/lang/String;)Lnet/minecraft/world/item/enchantment/EnchantmentCategory; net/minecraft/world/item/enchantment/EnchantmentCategory/valueOf (Ljava/lang/String;)Lnet/minecraft/world/item/enchantment/EnchantmentCategory; +MD: net/minecraft/world/item/enchantment/EnchantmentCategory/values ()[Lnet/minecraft/world/item/enchantment/EnchantmentCategory; net/minecraft/world/item/enchantment/EnchantmentCategory/values ()[Lnet/minecraft/world/item/enchantment/EnchantmentCategory; +MD: net/minecraft/world/item/enchantment/EnchantmentCategory$1/ (Ljava/lang/String;I)V net/minecraft/world/item/enchantment/EnchantmentCategory$1/ (Ljava/lang/String;I)V +MD: net/minecraft/world/item/enchantment/EnchantmentCategory$1/m_7454_ (Lnet/minecraft/world/item/Item;)Z net/minecraft/world/item/enchantment/EnchantmentCategory$1/canEnchant (Lnet/minecraft/world/item/Item;)Z +MD: net/minecraft/world/item/enchantment/EnchantmentCategory$10/ (Ljava/lang/String;I)V net/minecraft/world/item/enchantment/EnchantmentCategory$10/ (Ljava/lang/String;I)V +MD: net/minecraft/world/item/enchantment/EnchantmentCategory$10/m_7454_ (Lnet/minecraft/world/item/Item;)Z net/minecraft/world/item/enchantment/EnchantmentCategory$10/canEnchant (Lnet/minecraft/world/item/Item;)Z +MD: net/minecraft/world/item/enchantment/EnchantmentCategory$11/ (Ljava/lang/String;I)V net/minecraft/world/item/enchantment/EnchantmentCategory$11/ (Ljava/lang/String;I)V +MD: net/minecraft/world/item/enchantment/EnchantmentCategory$11/m_7454_ (Lnet/minecraft/world/item/Item;)Z net/minecraft/world/item/enchantment/EnchantmentCategory$11/canEnchant (Lnet/minecraft/world/item/Item;)Z +MD: net/minecraft/world/item/enchantment/EnchantmentCategory$12/ (Ljava/lang/String;I)V net/minecraft/world/item/enchantment/EnchantmentCategory$12/ (Ljava/lang/String;I)V +MD: net/minecraft/world/item/enchantment/EnchantmentCategory$12/m_7454_ (Lnet/minecraft/world/item/Item;)Z net/minecraft/world/item/enchantment/EnchantmentCategory$12/canEnchant (Lnet/minecraft/world/item/Item;)Z +MD: net/minecraft/world/item/enchantment/EnchantmentCategory$13/ (Ljava/lang/String;I)V net/minecraft/world/item/enchantment/EnchantmentCategory$13/ (Ljava/lang/String;I)V +MD: net/minecraft/world/item/enchantment/EnchantmentCategory$13/m_7454_ (Lnet/minecraft/world/item/Item;)Z net/minecraft/world/item/enchantment/EnchantmentCategory$13/canEnchant (Lnet/minecraft/world/item/Item;)Z +MD: net/minecraft/world/item/enchantment/EnchantmentCategory$14/ (Ljava/lang/String;I)V net/minecraft/world/item/enchantment/EnchantmentCategory$14/ (Ljava/lang/String;I)V +MD: net/minecraft/world/item/enchantment/EnchantmentCategory$14/m_7454_ (Lnet/minecraft/world/item/Item;)Z net/minecraft/world/item/enchantment/EnchantmentCategory$14/canEnchant (Lnet/minecraft/world/item/Item;)Z +MD: net/minecraft/world/item/enchantment/EnchantmentCategory$2/ (Ljava/lang/String;I)V net/minecraft/world/item/enchantment/EnchantmentCategory$2/ (Ljava/lang/String;I)V +MD: net/minecraft/world/item/enchantment/EnchantmentCategory$2/m_7454_ (Lnet/minecraft/world/item/Item;)Z net/minecraft/world/item/enchantment/EnchantmentCategory$2/canEnchant (Lnet/minecraft/world/item/Item;)Z +MD: net/minecraft/world/item/enchantment/EnchantmentCategory$3/ (Ljava/lang/String;I)V net/minecraft/world/item/enchantment/EnchantmentCategory$3/ (Ljava/lang/String;I)V +MD: net/minecraft/world/item/enchantment/EnchantmentCategory$3/m_7454_ (Lnet/minecraft/world/item/Item;)Z net/minecraft/world/item/enchantment/EnchantmentCategory$3/canEnchant (Lnet/minecraft/world/item/Item;)Z +MD: net/minecraft/world/item/enchantment/EnchantmentCategory$4/ (Ljava/lang/String;I)V net/minecraft/world/item/enchantment/EnchantmentCategory$4/ (Ljava/lang/String;I)V +MD: net/minecraft/world/item/enchantment/EnchantmentCategory$4/m_7454_ (Lnet/minecraft/world/item/Item;)Z net/minecraft/world/item/enchantment/EnchantmentCategory$4/canEnchant (Lnet/minecraft/world/item/Item;)Z +MD: net/minecraft/world/item/enchantment/EnchantmentCategory$5/ (Ljava/lang/String;I)V net/minecraft/world/item/enchantment/EnchantmentCategory$5/ (Ljava/lang/String;I)V +MD: net/minecraft/world/item/enchantment/EnchantmentCategory$5/m_7454_ (Lnet/minecraft/world/item/Item;)Z net/minecraft/world/item/enchantment/EnchantmentCategory$5/canEnchant (Lnet/minecraft/world/item/Item;)Z +MD: net/minecraft/world/item/enchantment/EnchantmentCategory$6/ (Ljava/lang/String;I)V net/minecraft/world/item/enchantment/EnchantmentCategory$6/ (Ljava/lang/String;I)V +MD: net/minecraft/world/item/enchantment/EnchantmentCategory$6/m_7454_ (Lnet/minecraft/world/item/Item;)Z net/minecraft/world/item/enchantment/EnchantmentCategory$6/canEnchant (Lnet/minecraft/world/item/Item;)Z +MD: net/minecraft/world/item/enchantment/EnchantmentCategory$7/ (Ljava/lang/String;I)V net/minecraft/world/item/enchantment/EnchantmentCategory$7/ (Ljava/lang/String;I)V +MD: net/minecraft/world/item/enchantment/EnchantmentCategory$7/m_7454_ (Lnet/minecraft/world/item/Item;)Z net/minecraft/world/item/enchantment/EnchantmentCategory$7/canEnchant (Lnet/minecraft/world/item/Item;)Z +MD: net/minecraft/world/item/enchantment/EnchantmentCategory$8/ (Ljava/lang/String;I)V net/minecraft/world/item/enchantment/EnchantmentCategory$8/ (Ljava/lang/String;I)V +MD: net/minecraft/world/item/enchantment/EnchantmentCategory$8/m_7454_ (Lnet/minecraft/world/item/Item;)Z net/minecraft/world/item/enchantment/EnchantmentCategory$8/canEnchant (Lnet/minecraft/world/item/Item;)Z +MD: net/minecraft/world/item/enchantment/EnchantmentCategory$9/ (Ljava/lang/String;I)V net/minecraft/world/item/enchantment/EnchantmentCategory$9/ (Ljava/lang/String;I)V +MD: net/minecraft/world/item/enchantment/EnchantmentCategory$9/m_7454_ (Lnet/minecraft/world/item/Item;)Z net/minecraft/world/item/enchantment/EnchantmentCategory$9/canEnchant (Lnet/minecraft/world/item/Item;)Z +MD: net/minecraft/world/item/enchantment/EnchantmentHelper/ ()V net/minecraft/world/item/enchantment/EnchantmentHelper/ ()V +MD: net/minecraft/world/item/enchantment/EnchantmentHelper/m_182432_ (Lnet/minecraft/world/item/enchantment/Enchantment;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/world/item/enchantment/EnchantmentHelper/getEnchantmentId (Lnet/minecraft/world/item/enchantment/Enchantment;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/world/item/enchantment/EnchantmentHelper/m_182434_ (Lnet/minecraft/world/item/enchantment/EnchantmentHelper$EnchantmentVisitor;Lnet/minecraft/nbt/CompoundTag;Lnet/minecraft/world/item/enchantment/Enchantment;)V net/minecraft/world/item/enchantment/EnchantmentHelper/lambda$runIterationOnItem$1 (Lnet/minecraft/world/item/enchantment/EnchantmentHelper$EnchantmentVisitor;Lnet/minecraft/nbt/CompoundTag;Lnet/minecraft/world/item/enchantment/Enchantment;)V +MD: net/minecraft/world/item/enchantment/EnchantmentHelper/m_182438_ (Lnet/minecraft/nbt/CompoundTag;)I net/minecraft/world/item/enchantment/EnchantmentHelper/getEnchantmentLevel (Lnet/minecraft/nbt/CompoundTag;)I +MD: net/minecraft/world/item/enchantment/EnchantmentHelper/m_182440_ (Lnet/minecraft/nbt/CompoundTag;I)V net/minecraft/world/item/enchantment/EnchantmentHelper/setEnchantmentLevel (Lnet/minecraft/nbt/CompoundTag;I)V +MD: net/minecraft/world/item/enchantment/EnchantmentHelper/m_182443_ (Lnet/minecraft/resources/ResourceLocation;I)Lnet/minecraft/nbt/CompoundTag; net/minecraft/world/item/enchantment/EnchantmentHelper/storeEnchantment (Lnet/minecraft/resources/ResourceLocation;I)Lnet/minecraft/nbt/CompoundTag; +MD: net/minecraft/world/item/enchantment/EnchantmentHelper/m_182446_ (Lnet/minecraft/nbt/CompoundTag;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/world/item/enchantment/EnchantmentHelper/getEnchantmentId (Lnet/minecraft/nbt/CompoundTag;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/world/item/enchantment/EnchantmentHelper/m_220287_ (Lnet/minecraft/util/RandomSource;IILnet/minecraft/world/item/ItemStack;)I net/minecraft/world/item/enchantment/EnchantmentHelper/getEnchantmentCost (Lnet/minecraft/util/RandomSource;IILnet/minecraft/world/item/ItemStack;)I +MD: net/minecraft/world/item/enchantment/EnchantmentHelper/m_220292_ (Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/item/ItemStack;IZ)Lnet/minecraft/world/item/ItemStack; net/minecraft/world/item/enchantment/EnchantmentHelper/enchantItem (Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/item/ItemStack;IZ)Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/item/enchantment/EnchantmentHelper/m_220297_ (Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/item/ItemStack;IZ)Ljava/util/List; net/minecraft/world/item/enchantment/EnchantmentHelper/selectEnchantment (Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/item/ItemStack;IZ)Ljava/util/List; +MD: net/minecraft/world/item/enchantment/EnchantmentHelper/m_220302_ (Lnet/minecraft/world/entity/LivingEntity;)F net/minecraft/world/item/enchantment/EnchantmentHelper/getSneakingSpeedBonus (Lnet/minecraft/world/entity/LivingEntity;)F +MD: net/minecraft/world/item/enchantment/EnchantmentHelper/m_272262_ (Lnet/minecraft/world/item/ItemStack;)Z net/minecraft/world/item/enchantment/EnchantmentHelper/hasSilkTouch (Lnet/minecraft/world/item/ItemStack;)Z +MD: net/minecraft/world/item/enchantment/EnchantmentHelper/m_44817_ (ILnet/minecraft/world/item/ItemStack;Z)Ljava/util/List; net/minecraft/world/item/enchantment/EnchantmentHelper/getAvailableEnchantmentResults (ILnet/minecraft/world/item/ItemStack;Z)Ljava/util/List; +MD: net/minecraft/world/item/enchantment/EnchantmentHelper/m_44821_ (Lnet/minecraft/world/entity/LivingEntity;)F net/minecraft/world/item/enchantment/EnchantmentHelper/getSweepingDamageRatio (Lnet/minecraft/world/entity/LivingEntity;)F +MD: net/minecraft/world/item/enchantment/EnchantmentHelper/m_44823_ (Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/entity/Entity;)V net/minecraft/world/item/enchantment/EnchantmentHelper/doPostHurtEffects (Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/entity/Entity;)V +MD: net/minecraft/world/item/enchantment/EnchantmentHelper/m_44826_ (Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/entity/Entity;Lnet/minecraft/world/item/enchantment/Enchantment;I)V net/minecraft/world/item/enchantment/EnchantmentHelper/lambda$doPostDamageEffects$5 (Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/entity/Entity;Lnet/minecraft/world/item/enchantment/Enchantment;I)V +MD: net/minecraft/world/item/enchantment/EnchantmentHelper/m_44831_ (Lnet/minecraft/world/item/ItemStack;)Ljava/util/Map; net/minecraft/world/item/enchantment/EnchantmentHelper/getEnchantments (Lnet/minecraft/world/item/ItemStack;)Ljava/util/Map; +MD: net/minecraft/world/item/enchantment/EnchantmentHelper/m_44833_ (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/entity/MobType;)F net/minecraft/world/item/enchantment/EnchantmentHelper/getDamageBonus (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/entity/MobType;)F +MD: net/minecraft/world/item/enchantment/EnchantmentHelper/m_44836_ (Lnet/minecraft/world/item/enchantment/Enchantment;Lnet/minecraft/world/entity/LivingEntity;)I net/minecraft/world/item/enchantment/EnchantmentHelper/getEnchantmentLevel (Lnet/minecraft/world/item/enchantment/Enchantment;Lnet/minecraft/world/entity/LivingEntity;)I +MD: net/minecraft/world/item/enchantment/EnchantmentHelper/m_44839_ (Lnet/minecraft/world/item/enchantment/Enchantment;Lnet/minecraft/world/entity/LivingEntity;Ljava/util/function/Predicate;)Ljava/util/Map$Entry; net/minecraft/world/item/enchantment/EnchantmentHelper/getRandomItemWith (Lnet/minecraft/world/item/enchantment/Enchantment;Lnet/minecraft/world/entity/LivingEntity;Ljava/util/function/Predicate;)Ljava/util/Map$Entry; +MD: net/minecraft/world/item/enchantment/EnchantmentHelper/m_44843_ (Lnet/minecraft/world/item/enchantment/Enchantment;Lnet/minecraft/world/item/ItemStack;)I net/minecraft/world/item/enchantment/EnchantmentHelper/getItemEnchantmentLevel (Lnet/minecraft/world/item/enchantment/Enchantment;Lnet/minecraft/world/item/ItemStack;)I +MD: net/minecraft/world/item/enchantment/EnchantmentHelper/m_44850_ (Lnet/minecraft/world/item/enchantment/EnchantmentHelper$EnchantmentVisitor;Lnet/minecraft/world/item/ItemStack;)V net/minecraft/world/item/enchantment/EnchantmentHelper/runIterationOnItem (Lnet/minecraft/world/item/enchantment/EnchantmentHelper$EnchantmentVisitor;Lnet/minecraft/world/item/ItemStack;)V +MD: net/minecraft/world/item/enchantment/EnchantmentHelper/m_44853_ (Lnet/minecraft/world/item/enchantment/EnchantmentHelper$EnchantmentVisitor;Ljava/lang/Iterable;)V net/minecraft/world/item/enchantment/EnchantmentHelper/runIterationOnInventory (Lnet/minecraft/world/item/enchantment/EnchantmentHelper$EnchantmentVisitor;Ljava/lang/Iterable;)V +MD: net/minecraft/world/item/enchantment/EnchantmentHelper/m_44856_ (Ljava/lang/Iterable;Lnet/minecraft/world/damagesource/DamageSource;)I net/minecraft/world/item/enchantment/EnchantmentHelper/getDamageProtection (Ljava/lang/Iterable;Lnet/minecraft/world/damagesource/DamageSource;)I +MD: net/minecraft/world/item/enchantment/EnchantmentHelper/m_44859_ (Ljava/util/Collection;Lnet/minecraft/world/item/enchantment/Enchantment;)Z net/minecraft/world/item/enchantment/EnchantmentHelper/isEnchantmentCompatible (Ljava/util/Collection;Lnet/minecraft/world/item/enchantment/Enchantment;)Z +MD: net/minecraft/world/item/enchantment/EnchantmentHelper/m_44862_ (Ljava/util/List;Lnet/minecraft/world/item/enchantment/EnchantmentInstance;)V net/minecraft/world/item/enchantment/EnchantmentHelper/filterCompatibleEnchantments (Ljava/util/List;Lnet/minecraft/world/item/enchantment/EnchantmentInstance;)V +MD: net/minecraft/world/item/enchantment/EnchantmentHelper/m_44865_ (Ljava/util/Map;Lnet/minecraft/world/item/ItemStack;)V net/minecraft/world/item/enchantment/EnchantmentHelper/setEnchantments (Ljava/util/Map;Lnet/minecraft/world/item/ItemStack;)V +MD: net/minecraft/world/item/enchantment/EnchantmentHelper/m_44868_ (Ljava/util/Map;Lnet/minecraft/nbt/CompoundTag;Lnet/minecraft/world/item/enchantment/Enchantment;)V net/minecraft/world/item/enchantment/EnchantmentHelper/lambda$deserializeEnchantments$0 (Ljava/util/Map;Lnet/minecraft/nbt/CompoundTag;Lnet/minecraft/world/item/enchantment/Enchantment;)V +MD: net/minecraft/world/item/enchantment/EnchantmentHelper/m_44882_ (Lnet/minecraft/nbt/ListTag;)Ljava/util/Map; net/minecraft/world/item/enchantment/EnchantmentHelper/deserializeEnchantments (Lnet/minecraft/nbt/ListTag;)Ljava/util/Map; +MD: net/minecraft/world/item/enchantment/EnchantmentHelper/m_44884_ (Lorg/apache/commons/lang3/mutable/MutableFloat;Lnet/minecraft/world/entity/MobType;Lnet/minecraft/world/item/enchantment/Enchantment;I)V net/minecraft/world/item/enchantment/EnchantmentHelper/lambda$getDamageBonus$3 (Lorg/apache/commons/lang3/mutable/MutableFloat;Lnet/minecraft/world/entity/MobType;Lnet/minecraft/world/item/enchantment/Enchantment;I)V +MD: net/minecraft/world/item/enchantment/EnchantmentHelper/m_44889_ (Lorg/apache/commons/lang3/mutable/MutableInt;Lnet/minecraft/world/damagesource/DamageSource;Lnet/minecraft/world/item/enchantment/Enchantment;I)V net/minecraft/world/item/enchantment/EnchantmentHelper/lambda$getDamageProtection$2 (Lorg/apache/commons/lang3/mutable/MutableInt;Lnet/minecraft/world/damagesource/DamageSource;Lnet/minecraft/world/item/enchantment/Enchantment;I)V +MD: net/minecraft/world/item/enchantment/EnchantmentHelper/m_44894_ (Lnet/minecraft/world/entity/LivingEntity;)I net/minecraft/world/item/enchantment/EnchantmentHelper/getKnockbackBonus (Lnet/minecraft/world/entity/LivingEntity;)I +MD: net/minecraft/world/item/enchantment/EnchantmentHelper/m_44896_ (Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/entity/Entity;)V net/minecraft/world/item/enchantment/EnchantmentHelper/doPostDamageEffects (Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/entity/Entity;)V +MD: net/minecraft/world/item/enchantment/EnchantmentHelper/m_44899_ (Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/entity/Entity;Lnet/minecraft/world/item/enchantment/Enchantment;I)V net/minecraft/world/item/enchantment/EnchantmentHelper/lambda$doPostHurtEffects$4 (Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/entity/Entity;Lnet/minecraft/world/item/enchantment/Enchantment;I)V +MD: net/minecraft/world/item/enchantment/EnchantmentHelper/m_44904_ (Lnet/minecraft/world/item/ItemStack;)I net/minecraft/world/item/enchantment/EnchantmentHelper/getFishingLuckBonus (Lnet/minecraft/world/item/ItemStack;)I +MD: net/minecraft/world/item/enchantment/EnchantmentHelper/m_44906_ (Lnet/minecraft/world/item/enchantment/Enchantment;Lnet/minecraft/world/entity/LivingEntity;)Ljava/util/Map$Entry; net/minecraft/world/item/enchantment/EnchantmentHelper/getRandomItemWith (Lnet/minecraft/world/item/enchantment/Enchantment;Lnet/minecraft/world/entity/LivingEntity;)Ljava/util/Map$Entry; +MD: net/minecraft/world/item/enchantment/EnchantmentHelper/m_44914_ (Lnet/minecraft/world/entity/LivingEntity;)I net/minecraft/world/item/enchantment/EnchantmentHelper/getFireAspect (Lnet/minecraft/world/entity/LivingEntity;)I +MD: net/minecraft/world/item/enchantment/EnchantmentHelper/m_44916_ (Lnet/minecraft/world/item/ItemStack;)I net/minecraft/world/item/enchantment/EnchantmentHelper/getFishingSpeedBonus (Lnet/minecraft/world/item/ItemStack;)I +MD: net/minecraft/world/item/enchantment/EnchantmentHelper/m_44918_ (Lnet/minecraft/world/entity/LivingEntity;)I net/minecraft/world/item/enchantment/EnchantmentHelper/getRespiration (Lnet/minecraft/world/entity/LivingEntity;)I +MD: net/minecraft/world/item/enchantment/EnchantmentHelper/m_44920_ (Lnet/minecraft/world/item/ItemStack;)Z net/minecraft/world/item/enchantment/EnchantmentHelper/hasBindingCurse (Lnet/minecraft/world/item/ItemStack;)Z +MD: net/minecraft/world/item/enchantment/EnchantmentHelper/m_44922_ (Lnet/minecraft/world/entity/LivingEntity;)I net/minecraft/world/item/enchantment/EnchantmentHelper/getDepthStrider (Lnet/minecraft/world/entity/LivingEntity;)I +MD: net/minecraft/world/item/enchantment/EnchantmentHelper/m_44924_ (Lnet/minecraft/world/item/ItemStack;)Z net/minecraft/world/item/enchantment/EnchantmentHelper/hasVanishingCurse (Lnet/minecraft/world/item/ItemStack;)Z +MD: net/minecraft/world/item/enchantment/EnchantmentHelper/m_44926_ (Lnet/minecraft/world/entity/LivingEntity;)I net/minecraft/world/item/enchantment/EnchantmentHelper/getBlockEfficiency (Lnet/minecraft/world/entity/LivingEntity;)I +MD: net/minecraft/world/item/enchantment/EnchantmentHelper/m_44928_ (Lnet/minecraft/world/item/ItemStack;)I net/minecraft/world/item/enchantment/EnchantmentHelper/getLoyalty (Lnet/minecraft/world/item/ItemStack;)I +MD: net/minecraft/world/item/enchantment/EnchantmentHelper/m_44930_ (Lnet/minecraft/world/entity/LivingEntity;)I net/minecraft/world/item/enchantment/EnchantmentHelper/getMobLooting (Lnet/minecraft/world/entity/LivingEntity;)I +MD: net/minecraft/world/item/enchantment/EnchantmentHelper/m_44932_ (Lnet/minecraft/world/item/ItemStack;)I net/minecraft/world/item/enchantment/EnchantmentHelper/getRiptide (Lnet/minecraft/world/item/ItemStack;)I +MD: net/minecraft/world/item/enchantment/EnchantmentHelper/m_44934_ (Lnet/minecraft/world/entity/LivingEntity;)Z net/minecraft/world/item/enchantment/EnchantmentHelper/hasAquaAffinity (Lnet/minecraft/world/entity/LivingEntity;)Z +MD: net/minecraft/world/item/enchantment/EnchantmentHelper/m_44936_ (Lnet/minecraft/world/item/ItemStack;)Z net/minecraft/world/item/enchantment/EnchantmentHelper/hasChanneling (Lnet/minecraft/world/item/ItemStack;)Z +MD: net/minecraft/world/item/enchantment/EnchantmentHelper/m_44938_ (Lnet/minecraft/world/entity/LivingEntity;)Z net/minecraft/world/item/enchantment/EnchantmentHelper/hasFrostWalker (Lnet/minecraft/world/entity/LivingEntity;)Z +MD: net/minecraft/world/item/enchantment/EnchantmentHelper/m_44940_ (Lnet/minecraft/world/item/ItemStack;)Z net/minecraft/world/item/enchantment/EnchantmentHelper/lambda$getRandomItemWith$6 (Lnet/minecraft/world/item/ItemStack;)Z +MD: net/minecraft/world/item/enchantment/EnchantmentHelper/m_44942_ (Lnet/minecraft/world/entity/LivingEntity;)Z net/minecraft/world/item/enchantment/EnchantmentHelper/hasSoulSpeed (Lnet/minecraft/world/entity/LivingEntity;)Z +MD: net/minecraft/world/item/enchantment/EnchantmentHelper$EnchantmentVisitor/m_44944_ (Lnet/minecraft/world/item/enchantment/Enchantment;I)V net/minecraft/world/item/enchantment/EnchantmentHelper$EnchantmentVisitor/accept (Lnet/minecraft/world/item/enchantment/Enchantment;I)V +MD: net/minecraft/world/item/enchantment/EnchantmentInstance/ (Lnet/minecraft/world/item/enchantment/Enchantment;I)V net/minecraft/world/item/enchantment/EnchantmentInstance/ (Lnet/minecraft/world/item/enchantment/Enchantment;I)V +MD: net/minecraft/world/item/enchantment/Enchantments/ ()V net/minecraft/world/item/enchantment/Enchantments/ ()V +MD: net/minecraft/world/item/enchantment/Enchantments/ ()V net/minecraft/world/item/enchantment/Enchantments/ ()V +MD: net/minecraft/world/item/enchantment/Enchantments/m_44992_ (Ljava/lang/String;Lnet/minecraft/world/item/enchantment/Enchantment;)Lnet/minecraft/world/item/enchantment/Enchantment; net/minecraft/world/item/enchantment/Enchantments/register (Ljava/lang/String;Lnet/minecraft/world/item/enchantment/Enchantment;)Lnet/minecraft/world/item/enchantment/Enchantment; +MD: net/minecraft/world/item/enchantment/FireAspectEnchantment/ (Lnet/minecraft/world/item/enchantment/Enchantment$Rarity;[Lnet/minecraft/world/entity/EquipmentSlot;)V net/minecraft/world/item/enchantment/FireAspectEnchantment/ (Lnet/minecraft/world/item/enchantment/Enchantment$Rarity;[Lnet/minecraft/world/entity/EquipmentSlot;)V +MD: net/minecraft/world/item/enchantment/FireAspectEnchantment/m_6175_ (I)I net/minecraft/world/item/enchantment/FireAspectEnchantment/getMaxCost (I)I +MD: net/minecraft/world/item/enchantment/FireAspectEnchantment/m_6183_ (I)I net/minecraft/world/item/enchantment/FireAspectEnchantment/getMinCost (I)I +MD: net/minecraft/world/item/enchantment/FireAspectEnchantment/m_6586_ ()I net/minecraft/world/item/enchantment/FireAspectEnchantment/getMaxLevel ()I +MD: net/minecraft/world/item/enchantment/FishingSpeedEnchantment/ (Lnet/minecraft/world/item/enchantment/Enchantment$Rarity;Lnet/minecraft/world/item/enchantment/EnchantmentCategory;[Lnet/minecraft/world/entity/EquipmentSlot;)V net/minecraft/world/item/enchantment/FishingSpeedEnchantment/ (Lnet/minecraft/world/item/enchantment/Enchantment$Rarity;Lnet/minecraft/world/item/enchantment/EnchantmentCategory;[Lnet/minecraft/world/entity/EquipmentSlot;)V +MD: net/minecraft/world/item/enchantment/FishingSpeedEnchantment/m_6175_ (I)I net/minecraft/world/item/enchantment/FishingSpeedEnchantment/getMaxCost (I)I +MD: net/minecraft/world/item/enchantment/FishingSpeedEnchantment/m_6183_ (I)I net/minecraft/world/item/enchantment/FishingSpeedEnchantment/getMinCost (I)I +MD: net/minecraft/world/item/enchantment/FishingSpeedEnchantment/m_6586_ ()I net/minecraft/world/item/enchantment/FishingSpeedEnchantment/getMaxLevel ()I +MD: net/minecraft/world/item/enchantment/FrostWalkerEnchantment/ (Lnet/minecraft/world/item/enchantment/Enchantment$Rarity;[Lnet/minecraft/world/entity/EquipmentSlot;)V net/minecraft/world/item/enchantment/FrostWalkerEnchantment/ (Lnet/minecraft/world/item/enchantment/Enchantment$Rarity;[Lnet/minecraft/world/entity/EquipmentSlot;)V +MD: net/minecraft/world/item/enchantment/FrostWalkerEnchantment/m_45018_ (Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;I)V net/minecraft/world/item/enchantment/FrostWalkerEnchantment/onEntityMoved (Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;I)V +MD: net/minecraft/world/item/enchantment/FrostWalkerEnchantment/m_5975_ (Lnet/minecraft/world/item/enchantment/Enchantment;)Z net/minecraft/world/item/enchantment/FrostWalkerEnchantment/checkCompatibility (Lnet/minecraft/world/item/enchantment/Enchantment;)Z +MD: net/minecraft/world/item/enchantment/FrostWalkerEnchantment/m_6175_ (I)I net/minecraft/world/item/enchantment/FrostWalkerEnchantment/getMaxCost (I)I +MD: net/minecraft/world/item/enchantment/FrostWalkerEnchantment/m_6183_ (I)I net/minecraft/world/item/enchantment/FrostWalkerEnchantment/getMinCost (I)I +MD: net/minecraft/world/item/enchantment/FrostWalkerEnchantment/m_6586_ ()I net/minecraft/world/item/enchantment/FrostWalkerEnchantment/getMaxLevel ()I +MD: net/minecraft/world/item/enchantment/FrostWalkerEnchantment/m_6591_ ()Z net/minecraft/world/item/enchantment/FrostWalkerEnchantment/isTreasureOnly ()Z +MD: net/minecraft/world/item/enchantment/KnockbackEnchantment/ (Lnet/minecraft/world/item/enchantment/Enchantment$Rarity;[Lnet/minecraft/world/entity/EquipmentSlot;)V net/minecraft/world/item/enchantment/KnockbackEnchantment/ (Lnet/minecraft/world/item/enchantment/Enchantment$Rarity;[Lnet/minecraft/world/entity/EquipmentSlot;)V +MD: net/minecraft/world/item/enchantment/KnockbackEnchantment/m_6175_ (I)I net/minecraft/world/item/enchantment/KnockbackEnchantment/getMaxCost (I)I +MD: net/minecraft/world/item/enchantment/KnockbackEnchantment/m_6183_ (I)I net/minecraft/world/item/enchantment/KnockbackEnchantment/getMinCost (I)I +MD: net/minecraft/world/item/enchantment/KnockbackEnchantment/m_6586_ ()I net/minecraft/world/item/enchantment/KnockbackEnchantment/getMaxLevel ()I +MD: net/minecraft/world/item/enchantment/LootBonusEnchantment/ (Lnet/minecraft/world/item/enchantment/Enchantment$Rarity;Lnet/minecraft/world/item/enchantment/EnchantmentCategory;[Lnet/minecraft/world/entity/EquipmentSlot;)V net/minecraft/world/item/enchantment/LootBonusEnchantment/ (Lnet/minecraft/world/item/enchantment/Enchantment$Rarity;Lnet/minecraft/world/item/enchantment/EnchantmentCategory;[Lnet/minecraft/world/entity/EquipmentSlot;)V +MD: net/minecraft/world/item/enchantment/LootBonusEnchantment/m_5975_ (Lnet/minecraft/world/item/enchantment/Enchantment;)Z net/minecraft/world/item/enchantment/LootBonusEnchantment/checkCompatibility (Lnet/minecraft/world/item/enchantment/Enchantment;)Z +MD: net/minecraft/world/item/enchantment/LootBonusEnchantment/m_6175_ (I)I net/minecraft/world/item/enchantment/LootBonusEnchantment/getMaxCost (I)I +MD: net/minecraft/world/item/enchantment/LootBonusEnchantment/m_6183_ (I)I net/minecraft/world/item/enchantment/LootBonusEnchantment/getMinCost (I)I +MD: net/minecraft/world/item/enchantment/LootBonusEnchantment/m_6586_ ()I net/minecraft/world/item/enchantment/LootBonusEnchantment/getMaxLevel ()I +MD: net/minecraft/world/item/enchantment/MendingEnchantment/ (Lnet/minecraft/world/item/enchantment/Enchantment$Rarity;[Lnet/minecraft/world/entity/EquipmentSlot;)V net/minecraft/world/item/enchantment/MendingEnchantment/ (Lnet/minecraft/world/item/enchantment/Enchantment$Rarity;[Lnet/minecraft/world/entity/EquipmentSlot;)V +MD: net/minecraft/world/item/enchantment/MendingEnchantment/m_6175_ (I)I net/minecraft/world/item/enchantment/MendingEnchantment/getMaxCost (I)I +MD: net/minecraft/world/item/enchantment/MendingEnchantment/m_6183_ (I)I net/minecraft/world/item/enchantment/MendingEnchantment/getMinCost (I)I +MD: net/minecraft/world/item/enchantment/MendingEnchantment/m_6591_ ()Z net/minecraft/world/item/enchantment/MendingEnchantment/isTreasureOnly ()Z +MD: net/minecraft/world/item/enchantment/MultiShotEnchantment/ (Lnet/minecraft/world/item/enchantment/Enchantment$Rarity;[Lnet/minecraft/world/entity/EquipmentSlot;)V net/minecraft/world/item/enchantment/MultiShotEnchantment/ (Lnet/minecraft/world/item/enchantment/Enchantment$Rarity;[Lnet/minecraft/world/entity/EquipmentSlot;)V +MD: net/minecraft/world/item/enchantment/MultiShotEnchantment/m_5975_ (Lnet/minecraft/world/item/enchantment/Enchantment;)Z net/minecraft/world/item/enchantment/MultiShotEnchantment/checkCompatibility (Lnet/minecraft/world/item/enchantment/Enchantment;)Z +MD: net/minecraft/world/item/enchantment/MultiShotEnchantment/m_6175_ (I)I net/minecraft/world/item/enchantment/MultiShotEnchantment/getMaxCost (I)I +MD: net/minecraft/world/item/enchantment/MultiShotEnchantment/m_6183_ (I)I net/minecraft/world/item/enchantment/MultiShotEnchantment/getMinCost (I)I +MD: net/minecraft/world/item/enchantment/OxygenEnchantment/ (Lnet/minecraft/world/item/enchantment/Enchantment$Rarity;[Lnet/minecraft/world/entity/EquipmentSlot;)V net/minecraft/world/item/enchantment/OxygenEnchantment/ (Lnet/minecraft/world/item/enchantment/Enchantment$Rarity;[Lnet/minecraft/world/entity/EquipmentSlot;)V +MD: net/minecraft/world/item/enchantment/OxygenEnchantment/m_6175_ (I)I net/minecraft/world/item/enchantment/OxygenEnchantment/getMaxCost (I)I +MD: net/minecraft/world/item/enchantment/OxygenEnchantment/m_6183_ (I)I net/minecraft/world/item/enchantment/OxygenEnchantment/getMinCost (I)I +MD: net/minecraft/world/item/enchantment/OxygenEnchantment/m_6586_ ()I net/minecraft/world/item/enchantment/OxygenEnchantment/getMaxLevel ()I +MD: net/minecraft/world/item/enchantment/ProtectionEnchantment/ (Lnet/minecraft/world/item/enchantment/Enchantment$Rarity;Lnet/minecraft/world/item/enchantment/ProtectionEnchantment$Type;[Lnet/minecraft/world/entity/EquipmentSlot;)V net/minecraft/world/item/enchantment/ProtectionEnchantment/ (Lnet/minecraft/world/item/enchantment/Enchantment$Rarity;Lnet/minecraft/world/item/enchantment/ProtectionEnchantment$Type;[Lnet/minecraft/world/entity/EquipmentSlot;)V +MD: net/minecraft/world/item/enchantment/ProtectionEnchantment/m_45135_ (Lnet/minecraft/world/entity/LivingEntity;D)D net/minecraft/world/item/enchantment/ProtectionEnchantment/getExplosionKnockbackAfterDampener (Lnet/minecraft/world/entity/LivingEntity;D)D +MD: net/minecraft/world/item/enchantment/ProtectionEnchantment/m_45138_ (Lnet/minecraft/world/entity/LivingEntity;I)I net/minecraft/world/item/enchantment/ProtectionEnchantment/getFireAfterDampener (Lnet/minecraft/world/entity/LivingEntity;I)I +MD: net/minecraft/world/item/enchantment/ProtectionEnchantment/m_5975_ (Lnet/minecraft/world/item/enchantment/Enchantment;)Z net/minecraft/world/item/enchantment/ProtectionEnchantment/checkCompatibility (Lnet/minecraft/world/item/enchantment/Enchantment;)Z +MD: net/minecraft/world/item/enchantment/ProtectionEnchantment/m_6175_ (I)I net/minecraft/world/item/enchantment/ProtectionEnchantment/getMaxCost (I)I +MD: net/minecraft/world/item/enchantment/ProtectionEnchantment/m_6183_ (I)I net/minecraft/world/item/enchantment/ProtectionEnchantment/getMinCost (I)I +MD: net/minecraft/world/item/enchantment/ProtectionEnchantment/m_6586_ ()I net/minecraft/world/item/enchantment/ProtectionEnchantment/getMaxLevel ()I +MD: net/minecraft/world/item/enchantment/ProtectionEnchantment/m_7205_ (ILnet/minecraft/world/damagesource/DamageSource;)I net/minecraft/world/item/enchantment/ProtectionEnchantment/getDamageProtection (ILnet/minecraft/world/damagesource/DamageSource;)I +MD: net/minecraft/world/item/enchantment/ProtectionEnchantment$Type/ ()V net/minecraft/world/item/enchantment/ProtectionEnchantment$Type/ ()V +MD: net/minecraft/world/item/enchantment/ProtectionEnchantment$Type/ (Ljava/lang/String;III)V net/minecraft/world/item/enchantment/ProtectionEnchantment$Type/ (Ljava/lang/String;III)V +MD: net/minecraft/world/item/enchantment/ProtectionEnchantment$Type/m_151301_ ()[Lnet/minecraft/world/item/enchantment/ProtectionEnchantment$Type; net/minecraft/world/item/enchantment/ProtectionEnchantment$Type/$values ()[Lnet/minecraft/world/item/enchantment/ProtectionEnchantment$Type; +MD: net/minecraft/world/item/enchantment/ProtectionEnchantment$Type/m_45161_ ()I net/minecraft/world/item/enchantment/ProtectionEnchantment$Type/getMinCost ()I +MD: net/minecraft/world/item/enchantment/ProtectionEnchantment$Type/m_45162_ ()I net/minecraft/world/item/enchantment/ProtectionEnchantment$Type/getLevelCost ()I +MD: net/minecraft/world/item/enchantment/ProtectionEnchantment$Type/valueOf (Ljava/lang/String;)Lnet/minecraft/world/item/enchantment/ProtectionEnchantment$Type; net/minecraft/world/item/enchantment/ProtectionEnchantment$Type/valueOf (Ljava/lang/String;)Lnet/minecraft/world/item/enchantment/ProtectionEnchantment$Type; +MD: net/minecraft/world/item/enchantment/ProtectionEnchantment$Type/values ()[Lnet/minecraft/world/item/enchantment/ProtectionEnchantment$Type; net/minecraft/world/item/enchantment/ProtectionEnchantment$Type/values ()[Lnet/minecraft/world/item/enchantment/ProtectionEnchantment$Type; +MD: net/minecraft/world/item/enchantment/QuickChargeEnchantment/ (Lnet/minecraft/world/item/enchantment/Enchantment$Rarity;[Lnet/minecraft/world/entity/EquipmentSlot;)V net/minecraft/world/item/enchantment/QuickChargeEnchantment/ (Lnet/minecraft/world/item/enchantment/Enchantment$Rarity;[Lnet/minecraft/world/entity/EquipmentSlot;)V +MD: net/minecraft/world/item/enchantment/QuickChargeEnchantment/m_6175_ (I)I net/minecraft/world/item/enchantment/QuickChargeEnchantment/getMaxCost (I)I +MD: net/minecraft/world/item/enchantment/QuickChargeEnchantment/m_6183_ (I)I net/minecraft/world/item/enchantment/QuickChargeEnchantment/getMinCost (I)I +MD: net/minecraft/world/item/enchantment/QuickChargeEnchantment/m_6586_ ()I net/minecraft/world/item/enchantment/QuickChargeEnchantment/getMaxLevel ()I +MD: net/minecraft/world/item/enchantment/SoulSpeedEnchantment/ (Lnet/minecraft/world/item/enchantment/Enchantment$Rarity;[Lnet/minecraft/world/entity/EquipmentSlot;)V net/minecraft/world/item/enchantment/SoulSpeedEnchantment/ (Lnet/minecraft/world/item/enchantment/Enchantment$Rarity;[Lnet/minecraft/world/entity/EquipmentSlot;)V +MD: net/minecraft/world/item/enchantment/SoulSpeedEnchantment/m_6175_ (I)I net/minecraft/world/item/enchantment/SoulSpeedEnchantment/getMaxCost (I)I +MD: net/minecraft/world/item/enchantment/SoulSpeedEnchantment/m_6183_ (I)I net/minecraft/world/item/enchantment/SoulSpeedEnchantment/getMinCost (I)I +MD: net/minecraft/world/item/enchantment/SoulSpeedEnchantment/m_6586_ ()I net/minecraft/world/item/enchantment/SoulSpeedEnchantment/getMaxLevel ()I +MD: net/minecraft/world/item/enchantment/SoulSpeedEnchantment/m_6591_ ()Z net/minecraft/world/item/enchantment/SoulSpeedEnchantment/isTreasureOnly ()Z +MD: net/minecraft/world/item/enchantment/SoulSpeedEnchantment/m_6592_ ()Z net/minecraft/world/item/enchantment/SoulSpeedEnchantment/isDiscoverable ()Z +MD: net/minecraft/world/item/enchantment/SoulSpeedEnchantment/m_6594_ ()Z net/minecraft/world/item/enchantment/SoulSpeedEnchantment/isTradeable ()Z +MD: net/minecraft/world/item/enchantment/SweepingEdgeEnchantment/ (Lnet/minecraft/world/item/enchantment/Enchantment$Rarity;[Lnet/minecraft/world/entity/EquipmentSlot;)V net/minecraft/world/item/enchantment/SweepingEdgeEnchantment/ (Lnet/minecraft/world/item/enchantment/Enchantment$Rarity;[Lnet/minecraft/world/entity/EquipmentSlot;)V +MD: net/minecraft/world/item/enchantment/SweepingEdgeEnchantment/m_45193_ (I)F net/minecraft/world/item/enchantment/SweepingEdgeEnchantment/getSweepingDamageRatio (I)F +MD: net/minecraft/world/item/enchantment/SweepingEdgeEnchantment/m_6175_ (I)I net/minecraft/world/item/enchantment/SweepingEdgeEnchantment/getMaxCost (I)I +MD: net/minecraft/world/item/enchantment/SweepingEdgeEnchantment/m_6183_ (I)I net/minecraft/world/item/enchantment/SweepingEdgeEnchantment/getMinCost (I)I +MD: net/minecraft/world/item/enchantment/SweepingEdgeEnchantment/m_6586_ ()I net/minecraft/world/item/enchantment/SweepingEdgeEnchantment/getMaxLevel ()I +MD: net/minecraft/world/item/enchantment/SwiftSneakEnchantment/ (Lnet/minecraft/world/item/enchantment/Enchantment$Rarity;[Lnet/minecraft/world/entity/EquipmentSlot;)V net/minecraft/world/item/enchantment/SwiftSneakEnchantment/ (Lnet/minecraft/world/item/enchantment/Enchantment$Rarity;[Lnet/minecraft/world/entity/EquipmentSlot;)V +MD: net/minecraft/world/item/enchantment/SwiftSneakEnchantment/m_6175_ (I)I net/minecraft/world/item/enchantment/SwiftSneakEnchantment/getMaxCost (I)I +MD: net/minecraft/world/item/enchantment/SwiftSneakEnchantment/m_6183_ (I)I net/minecraft/world/item/enchantment/SwiftSneakEnchantment/getMinCost (I)I +MD: net/minecraft/world/item/enchantment/SwiftSneakEnchantment/m_6586_ ()I net/minecraft/world/item/enchantment/SwiftSneakEnchantment/getMaxLevel ()I +MD: net/minecraft/world/item/enchantment/SwiftSneakEnchantment/m_6591_ ()Z net/minecraft/world/item/enchantment/SwiftSneakEnchantment/isTreasureOnly ()Z +MD: net/minecraft/world/item/enchantment/SwiftSneakEnchantment/m_6592_ ()Z net/minecraft/world/item/enchantment/SwiftSneakEnchantment/isDiscoverable ()Z +MD: net/minecraft/world/item/enchantment/SwiftSneakEnchantment/m_6594_ ()Z net/minecraft/world/item/enchantment/SwiftSneakEnchantment/isTradeable ()Z +MD: net/minecraft/world/item/enchantment/ThornsEnchantment/ (Lnet/minecraft/world/item/enchantment/Enchantment$Rarity;[Lnet/minecraft/world/entity/EquipmentSlot;)V net/minecraft/world/item/enchantment/ThornsEnchantment/ (Lnet/minecraft/world/item/enchantment/Enchantment$Rarity;[Lnet/minecraft/world/entity/EquipmentSlot;)V +MD: net/minecraft/world/item/enchantment/ThornsEnchantment/m_220316_ (ILnet/minecraft/util/RandomSource;)Z net/minecraft/world/item/enchantment/ThornsEnchantment/shouldHit (ILnet/minecraft/util/RandomSource;)Z +MD: net/minecraft/world/item/enchantment/ThornsEnchantment/m_220319_ (ILnet/minecraft/util/RandomSource;)I net/minecraft/world/item/enchantment/ThornsEnchantment/getDamage (ILnet/minecraft/util/RandomSource;)I +MD: net/minecraft/world/item/enchantment/ThornsEnchantment/m_45206_ (Ljava/util/Map$Entry;Lnet/minecraft/world/entity/LivingEntity;)V net/minecraft/world/item/enchantment/ThornsEnchantment/lambda$doPostHurt$0 (Ljava/util/Map$Entry;Lnet/minecraft/world/entity/LivingEntity;)V +MD: net/minecraft/world/item/enchantment/ThornsEnchantment/m_6081_ (Lnet/minecraft/world/item/ItemStack;)Z net/minecraft/world/item/enchantment/ThornsEnchantment/canEnchant (Lnet/minecraft/world/item/ItemStack;)Z +MD: net/minecraft/world/item/enchantment/ThornsEnchantment/m_6175_ (I)I net/minecraft/world/item/enchantment/ThornsEnchantment/getMaxCost (I)I +MD: net/minecraft/world/item/enchantment/ThornsEnchantment/m_6183_ (I)I net/minecraft/world/item/enchantment/ThornsEnchantment/getMinCost (I)I +MD: net/minecraft/world/item/enchantment/ThornsEnchantment/m_6586_ ()I net/minecraft/world/item/enchantment/ThornsEnchantment/getMaxLevel ()I +MD: net/minecraft/world/item/enchantment/ThornsEnchantment/m_7675_ (Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/entity/Entity;I)V net/minecraft/world/item/enchantment/ThornsEnchantment/doPostHurt (Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/entity/Entity;I)V +MD: net/minecraft/world/item/enchantment/TridentChannelingEnchantment/ (Lnet/minecraft/world/item/enchantment/Enchantment$Rarity;[Lnet/minecraft/world/entity/EquipmentSlot;)V net/minecraft/world/item/enchantment/TridentChannelingEnchantment/ (Lnet/minecraft/world/item/enchantment/Enchantment$Rarity;[Lnet/minecraft/world/entity/EquipmentSlot;)V +MD: net/minecraft/world/item/enchantment/TridentChannelingEnchantment/m_6175_ (I)I net/minecraft/world/item/enchantment/TridentChannelingEnchantment/getMaxCost (I)I +MD: net/minecraft/world/item/enchantment/TridentChannelingEnchantment/m_6183_ (I)I net/minecraft/world/item/enchantment/TridentChannelingEnchantment/getMinCost (I)I +MD: net/minecraft/world/item/enchantment/TridentImpalerEnchantment/ (Lnet/minecraft/world/item/enchantment/Enchantment$Rarity;[Lnet/minecraft/world/entity/EquipmentSlot;)V net/minecraft/world/item/enchantment/TridentImpalerEnchantment/ (Lnet/minecraft/world/item/enchantment/Enchantment$Rarity;[Lnet/minecraft/world/entity/EquipmentSlot;)V +MD: net/minecraft/world/item/enchantment/TridentImpalerEnchantment/m_6175_ (I)I net/minecraft/world/item/enchantment/TridentImpalerEnchantment/getMaxCost (I)I +MD: net/minecraft/world/item/enchantment/TridentImpalerEnchantment/m_6183_ (I)I net/minecraft/world/item/enchantment/TridentImpalerEnchantment/getMinCost (I)I +MD: net/minecraft/world/item/enchantment/TridentImpalerEnchantment/m_6586_ ()I net/minecraft/world/item/enchantment/TridentImpalerEnchantment/getMaxLevel ()I +MD: net/minecraft/world/item/enchantment/TridentImpalerEnchantment/m_7335_ (ILnet/minecraft/world/entity/MobType;)F net/minecraft/world/item/enchantment/TridentImpalerEnchantment/getDamageBonus (ILnet/minecraft/world/entity/MobType;)F +MD: net/minecraft/world/item/enchantment/TridentLoyaltyEnchantment/ (Lnet/minecraft/world/item/enchantment/Enchantment$Rarity;[Lnet/minecraft/world/entity/EquipmentSlot;)V net/minecraft/world/item/enchantment/TridentLoyaltyEnchantment/ (Lnet/minecraft/world/item/enchantment/Enchantment$Rarity;[Lnet/minecraft/world/entity/EquipmentSlot;)V +MD: net/minecraft/world/item/enchantment/TridentLoyaltyEnchantment/m_6175_ (I)I net/minecraft/world/item/enchantment/TridentLoyaltyEnchantment/getMaxCost (I)I +MD: net/minecraft/world/item/enchantment/TridentLoyaltyEnchantment/m_6183_ (I)I net/minecraft/world/item/enchantment/TridentLoyaltyEnchantment/getMinCost (I)I +MD: net/minecraft/world/item/enchantment/TridentLoyaltyEnchantment/m_6586_ ()I net/minecraft/world/item/enchantment/TridentLoyaltyEnchantment/getMaxLevel ()I +MD: net/minecraft/world/item/enchantment/TridentRiptideEnchantment/ (Lnet/minecraft/world/item/enchantment/Enchantment$Rarity;[Lnet/minecraft/world/entity/EquipmentSlot;)V net/minecraft/world/item/enchantment/TridentRiptideEnchantment/ (Lnet/minecraft/world/item/enchantment/Enchantment$Rarity;[Lnet/minecraft/world/entity/EquipmentSlot;)V +MD: net/minecraft/world/item/enchantment/TridentRiptideEnchantment/m_5975_ (Lnet/minecraft/world/item/enchantment/Enchantment;)Z net/minecraft/world/item/enchantment/TridentRiptideEnchantment/checkCompatibility (Lnet/minecraft/world/item/enchantment/Enchantment;)Z +MD: net/minecraft/world/item/enchantment/TridentRiptideEnchantment/m_6175_ (I)I net/minecraft/world/item/enchantment/TridentRiptideEnchantment/getMaxCost (I)I +MD: net/minecraft/world/item/enchantment/TridentRiptideEnchantment/m_6183_ (I)I net/minecraft/world/item/enchantment/TridentRiptideEnchantment/getMinCost (I)I +MD: net/minecraft/world/item/enchantment/TridentRiptideEnchantment/m_6586_ ()I net/minecraft/world/item/enchantment/TridentRiptideEnchantment/getMaxLevel ()I +MD: net/minecraft/world/item/enchantment/UntouchingEnchantment/ (Lnet/minecraft/world/item/enchantment/Enchantment$Rarity;[Lnet/minecraft/world/entity/EquipmentSlot;)V net/minecraft/world/item/enchantment/UntouchingEnchantment/ (Lnet/minecraft/world/item/enchantment/Enchantment$Rarity;[Lnet/minecraft/world/entity/EquipmentSlot;)V +MD: net/minecraft/world/item/enchantment/UntouchingEnchantment/m_5975_ (Lnet/minecraft/world/item/enchantment/Enchantment;)Z net/minecraft/world/item/enchantment/UntouchingEnchantment/checkCompatibility (Lnet/minecraft/world/item/enchantment/Enchantment;)Z +MD: net/minecraft/world/item/enchantment/UntouchingEnchantment/m_6175_ (I)I net/minecraft/world/item/enchantment/UntouchingEnchantment/getMaxCost (I)I +MD: net/minecraft/world/item/enchantment/UntouchingEnchantment/m_6183_ (I)I net/minecraft/world/item/enchantment/UntouchingEnchantment/getMinCost (I)I +MD: net/minecraft/world/item/enchantment/VanishingCurseEnchantment/ (Lnet/minecraft/world/item/enchantment/Enchantment$Rarity;[Lnet/minecraft/world/entity/EquipmentSlot;)V net/minecraft/world/item/enchantment/VanishingCurseEnchantment/ (Lnet/minecraft/world/item/enchantment/Enchantment$Rarity;[Lnet/minecraft/world/entity/EquipmentSlot;)V +MD: net/minecraft/world/item/enchantment/VanishingCurseEnchantment/m_6175_ (I)I net/minecraft/world/item/enchantment/VanishingCurseEnchantment/getMaxCost (I)I +MD: net/minecraft/world/item/enchantment/VanishingCurseEnchantment/m_6183_ (I)I net/minecraft/world/item/enchantment/VanishingCurseEnchantment/getMinCost (I)I +MD: net/minecraft/world/item/enchantment/VanishingCurseEnchantment/m_6589_ ()Z net/minecraft/world/item/enchantment/VanishingCurseEnchantment/isCurse ()Z +MD: net/minecraft/world/item/enchantment/VanishingCurseEnchantment/m_6591_ ()Z net/minecraft/world/item/enchantment/VanishingCurseEnchantment/isTreasureOnly ()Z +MD: net/minecraft/world/item/enchantment/WaterWalkerEnchantment/ (Lnet/minecraft/world/item/enchantment/Enchantment$Rarity;[Lnet/minecraft/world/entity/EquipmentSlot;)V net/minecraft/world/item/enchantment/WaterWalkerEnchantment/ (Lnet/minecraft/world/item/enchantment/Enchantment$Rarity;[Lnet/minecraft/world/entity/EquipmentSlot;)V +MD: net/minecraft/world/item/enchantment/WaterWalkerEnchantment/m_5975_ (Lnet/minecraft/world/item/enchantment/Enchantment;)Z net/minecraft/world/item/enchantment/WaterWalkerEnchantment/checkCompatibility (Lnet/minecraft/world/item/enchantment/Enchantment;)Z +MD: net/minecraft/world/item/enchantment/WaterWalkerEnchantment/m_6175_ (I)I net/minecraft/world/item/enchantment/WaterWalkerEnchantment/getMaxCost (I)I +MD: net/minecraft/world/item/enchantment/WaterWalkerEnchantment/m_6183_ (I)I net/minecraft/world/item/enchantment/WaterWalkerEnchantment/getMinCost (I)I +MD: net/minecraft/world/item/enchantment/WaterWalkerEnchantment/m_6586_ ()I net/minecraft/world/item/enchantment/WaterWalkerEnchantment/getMaxLevel ()I +MD: net/minecraft/world/item/enchantment/WaterWorkerEnchantment/ (Lnet/minecraft/world/item/enchantment/Enchantment$Rarity;[Lnet/minecraft/world/entity/EquipmentSlot;)V net/minecraft/world/item/enchantment/WaterWorkerEnchantment/ (Lnet/minecraft/world/item/enchantment/Enchantment$Rarity;[Lnet/minecraft/world/entity/EquipmentSlot;)V +MD: net/minecraft/world/item/enchantment/WaterWorkerEnchantment/m_6175_ (I)I net/minecraft/world/item/enchantment/WaterWorkerEnchantment/getMaxCost (I)I +MD: net/minecraft/world/item/enchantment/WaterWorkerEnchantment/m_6183_ (I)I net/minecraft/world/item/enchantment/WaterWorkerEnchantment/getMinCost (I)I +MD: net/minecraft/world/item/trading/Merchant/m_183595_ ()Z net/minecraft/world/item/trading/Merchant/isClientSide ()Z +MD: net/minecraft/world/item/trading/Merchant/m_45297_ (ILnet/minecraft/world/entity/player/Inventory;Lnet/minecraft/world/entity/player/Player;)Lnet/minecraft/world/inventory/AbstractContainerMenu; net/minecraft/world/item/trading/Merchant/lambda$openTradingScreen$0 (ILnet/minecraft/world/entity/player/Inventory;Lnet/minecraft/world/entity/player/Player;)Lnet/minecraft/world/inventory/AbstractContainerMenu; +MD: net/minecraft/world/item/trading/Merchant/m_45301_ (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/network/chat/Component;I)V net/minecraft/world/item/trading/Merchant/openTradingScreen (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/network/chat/Component;I)V +MD: net/minecraft/world/item/trading/Merchant/m_6255_ (Lnet/minecraft/world/item/trading/MerchantOffers;)V net/minecraft/world/item/trading/Merchant/overrideOffers (Lnet/minecraft/world/item/trading/MerchantOffers;)V +MD: net/minecraft/world/item/trading/Merchant/m_6616_ ()Lnet/minecraft/world/item/trading/MerchantOffers; net/minecraft/world/item/trading/Merchant/getOffers ()Lnet/minecraft/world/item/trading/MerchantOffers; +MD: net/minecraft/world/item/trading/Merchant/m_6621_ (I)V net/minecraft/world/item/trading/Merchant/overrideXp (I)V +MD: net/minecraft/world/item/trading/Merchant/m_6996_ (Lnet/minecraft/world/item/trading/MerchantOffer;)V net/minecraft/world/item/trading/Merchant/notifyTrade (Lnet/minecraft/world/item/trading/MerchantOffer;)V +MD: net/minecraft/world/item/trading/Merchant/m_7189_ (Lnet/minecraft/world/entity/player/Player;)V net/minecraft/world/item/trading/Merchant/setTradingPlayer (Lnet/minecraft/world/entity/player/Player;)V +MD: net/minecraft/world/item/trading/Merchant/m_7596_ ()Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/item/trading/Merchant/getNotifyTradeSound ()Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/item/trading/Merchant/m_7713_ (Lnet/minecraft/world/item/ItemStack;)V net/minecraft/world/item/trading/Merchant/notifyTradeUpdated (Lnet/minecraft/world/item/ItemStack;)V +MD: net/minecraft/world/item/trading/Merchant/m_7809_ ()I net/minecraft/world/item/trading/Merchant/getVillagerXp ()I +MD: net/minecraft/world/item/trading/Merchant/m_7826_ ()Z net/minecraft/world/item/trading/Merchant/showProgressBar ()Z +MD: net/minecraft/world/item/trading/Merchant/m_7862_ ()Z net/minecraft/world/item/trading/Merchant/canRestock ()Z +MD: net/minecraft/world/item/trading/Merchant/m_7962_ ()Lnet/minecraft/world/entity/player/Player; net/minecraft/world/item/trading/Merchant/getTradingPlayer ()Lnet/minecraft/world/entity/player/Player; +MD: net/minecraft/world/item/trading/MerchantOffer/ (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/item/ItemStack;IIIF)V net/minecraft/world/item/trading/MerchantOffer/ (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/item/ItemStack;IIIF)V +MD: net/minecraft/world/item/trading/MerchantOffer/ (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/item/ItemStack;IIF)V net/minecraft/world/item/trading/MerchantOffer/ (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/item/ItemStack;IIF)V +MD: net/minecraft/world/item/trading/MerchantOffer/ (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/item/ItemStack;IIIFI)V net/minecraft/world/item/trading/MerchantOffer/ (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/item/ItemStack;IIIFI)V +MD: net/minecraft/world/item/trading/MerchantOffer/ (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/item/ItemStack;IIF)V net/minecraft/world/item/trading/MerchantOffer/ (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/item/ItemStack;IIF)V +MD: net/minecraft/world/item/trading/MerchantOffer/ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/item/trading/MerchantOffer/ (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/item/trading/MerchantOffer/m_45352_ ()Lnet/minecraft/world/item/ItemStack; net/minecraft/world/item/trading/MerchantOffer/getBaseCostA ()Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/item/trading/MerchantOffer/m_45353_ (I)V net/minecraft/world/item/trading/MerchantOffer/addToSpecialPriceDiff (I)V +MD: net/minecraft/world/item/trading/MerchantOffer/m_45355_ (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/item/ItemStack;)Z net/minecraft/world/item/trading/MerchantOffer/satisfiedBy (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/item/ItemStack;)Z +MD: net/minecraft/world/item/trading/MerchantOffer/m_45358_ ()Lnet/minecraft/world/item/ItemStack; net/minecraft/world/item/trading/MerchantOffer/getCostA ()Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/item/trading/MerchantOffer/m_45359_ (I)V net/minecraft/world/item/trading/MerchantOffer/setSpecialPriceDiff (I)V +MD: net/minecraft/world/item/trading/MerchantOffer/m_45361_ (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/item/ItemStack;)Z net/minecraft/world/item/trading/MerchantOffer/take (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/item/ItemStack;)Z +MD: net/minecraft/world/item/trading/MerchantOffer/m_45364_ ()Lnet/minecraft/world/item/ItemStack; net/minecraft/world/item/trading/MerchantOffer/getCostB ()Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/item/trading/MerchantOffer/m_45365_ (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/item/ItemStack;)Z net/minecraft/world/item/trading/MerchantOffer/isRequiredItem (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/item/ItemStack;)Z +MD: net/minecraft/world/item/trading/MerchantOffer/m_45368_ ()Lnet/minecraft/world/item/ItemStack; net/minecraft/world/item/trading/MerchantOffer/getResult ()Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/item/trading/MerchantOffer/m_45369_ ()V net/minecraft/world/item/trading/MerchantOffer/updateDemand ()V +MD: net/minecraft/world/item/trading/MerchantOffer/m_45370_ ()Lnet/minecraft/world/item/ItemStack; net/minecraft/world/item/trading/MerchantOffer/assemble ()Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/item/trading/MerchantOffer/m_45371_ ()I net/minecraft/world/item/trading/MerchantOffer/getUses ()I +MD: net/minecraft/world/item/trading/MerchantOffer/m_45372_ ()V net/minecraft/world/item/trading/MerchantOffer/resetUses ()V +MD: net/minecraft/world/item/trading/MerchantOffer/m_45373_ ()I net/minecraft/world/item/trading/MerchantOffer/getMaxUses ()I +MD: net/minecraft/world/item/trading/MerchantOffer/m_45374_ ()V net/minecraft/world/item/trading/MerchantOffer/increaseUses ()V +MD: net/minecraft/world/item/trading/MerchantOffer/m_45375_ ()I net/minecraft/world/item/trading/MerchantOffer/getDemand ()I +MD: net/minecraft/world/item/trading/MerchantOffer/m_45376_ ()V net/minecraft/world/item/trading/MerchantOffer/resetSpecialPriceDiff ()V +MD: net/minecraft/world/item/trading/MerchantOffer/m_45377_ ()I net/minecraft/world/item/trading/MerchantOffer/getSpecialPriceDiff ()I +MD: net/minecraft/world/item/trading/MerchantOffer/m_45378_ ()F net/minecraft/world/item/trading/MerchantOffer/getPriceMultiplier ()F +MD: net/minecraft/world/item/trading/MerchantOffer/m_45379_ ()I net/minecraft/world/item/trading/MerchantOffer/getXp ()I +MD: net/minecraft/world/item/trading/MerchantOffer/m_45380_ ()Z net/minecraft/world/item/trading/MerchantOffer/isOutOfStock ()Z +MD: net/minecraft/world/item/trading/MerchantOffer/m_45381_ ()V net/minecraft/world/item/trading/MerchantOffer/setToOutOfStock ()V +MD: net/minecraft/world/item/trading/MerchantOffer/m_45382_ ()Z net/minecraft/world/item/trading/MerchantOffer/needsRestock ()Z +MD: net/minecraft/world/item/trading/MerchantOffer/m_45383_ ()Z net/minecraft/world/item/trading/MerchantOffer/shouldRewardExp ()Z +MD: net/minecraft/world/item/trading/MerchantOffer/m_45384_ ()Lnet/minecraft/nbt/CompoundTag; net/minecraft/world/item/trading/MerchantOffer/createTag ()Lnet/minecraft/nbt/CompoundTag; +MD: net/minecraft/world/item/trading/MerchantOffers/ (I)V net/minecraft/world/item/trading/MerchantOffers/ (I)V +MD: net/minecraft/world/item/trading/MerchantOffers/ ()V net/minecraft/world/item/trading/MerchantOffers/ ()V +MD: net/minecraft/world/item/trading/MerchantOffers/ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/item/trading/MerchantOffers/ (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/item/trading/MerchantOffers/m_220324_ (Lnet/minecraft/network/FriendlyByteBuf;Lnet/minecraft/world/item/trading/MerchantOffer;)V net/minecraft/world/item/trading/MerchantOffers/lambda$writeToStream$0 (Lnet/minecraft/network/FriendlyByteBuf;Lnet/minecraft/world/item/trading/MerchantOffer;)V +MD: net/minecraft/world/item/trading/MerchantOffers/m_220327_ (Lnet/minecraft/network/FriendlyByteBuf;)Lnet/minecraft/world/item/trading/MerchantOffer; net/minecraft/world/item/trading/MerchantOffers/lambda$createFromStream$1 (Lnet/minecraft/network/FriendlyByteBuf;)Lnet/minecraft/world/item/trading/MerchantOffer; +MD: net/minecraft/world/item/trading/MerchantOffers/m_45388_ ()Lnet/minecraft/nbt/CompoundTag; net/minecraft/world/item/trading/MerchantOffers/createTag ()Lnet/minecraft/nbt/CompoundTag; +MD: net/minecraft/world/item/trading/MerchantOffers/m_45389_ (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/item/ItemStack;I)Lnet/minecraft/world/item/trading/MerchantOffer; net/minecraft/world/item/trading/MerchantOffers/getRecipeFor (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/item/ItemStack;I)Lnet/minecraft/world/item/trading/MerchantOffer; +MD: net/minecraft/world/item/trading/MerchantOffers/m_45393_ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/world/item/trading/MerchantOffers/writeToStream (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/world/item/trading/MerchantOffers/m_45395_ (Lnet/minecraft/network/FriendlyByteBuf;)Lnet/minecraft/world/item/trading/MerchantOffers; net/minecraft/world/item/trading/MerchantOffers/createFromStream (Lnet/minecraft/network/FriendlyByteBuf;)Lnet/minecraft/world/item/trading/MerchantOffers; +MD: net/minecraft/world/level/BaseCommandBlock/ ()V net/minecraft/world/level/BaseCommandBlock/ ()V +MD: net/minecraft/world/level/BaseCommandBlock/ ()V net/minecraft/world/level/BaseCommandBlock/ ()V +MD: net/minecraft/world/level/BaseCommandBlock/m_213846_ (Lnet/minecraft/network/chat/Component;)V net/minecraft/world/level/BaseCommandBlock/sendSystemMessage (Lnet/minecraft/network/chat/Component;)V +MD: net/minecraft/world/level/BaseCommandBlock/m_288209_ ()Z net/minecraft/world/level/BaseCommandBlock/isValid ()Z +MD: net/minecraft/world/level/BaseCommandBlock/m_45410_ (I)V net/minecraft/world/level/BaseCommandBlock/setSuccessCount (I)V +MD: net/minecraft/world/level/BaseCommandBlock/m_45412_ (Lnet/minecraft/world/entity/player/Player;)Lnet/minecraft/world/InteractionResult; net/minecraft/world/level/BaseCommandBlock/usedBy (Lnet/minecraft/world/entity/player/Player;)Lnet/minecraft/world/InteractionResult; +MD: net/minecraft/world/level/BaseCommandBlock/m_45414_ (Lnet/minecraft/world/level/Level;)Z net/minecraft/world/level/BaseCommandBlock/performCommand (Lnet/minecraft/world/level/Level;)Z +MD: net/minecraft/world/level/BaseCommandBlock/m_45416_ (Lcom/mojang/brigadier/context/CommandContext;ZI)V net/minecraft/world/level/BaseCommandBlock/lambda$performCommand$0 (Lcom/mojang/brigadier/context/CommandContext;ZI)V +MD: net/minecraft/world/level/BaseCommandBlock/m_45421_ (Lnet/minecraft/nbt/CompoundTag;)Lnet/minecraft/nbt/CompoundTag; net/minecraft/world/level/BaseCommandBlock/save (Lnet/minecraft/nbt/CompoundTag;)Lnet/minecraft/nbt/CompoundTag; +MD: net/minecraft/world/level/BaseCommandBlock/m_45423_ (Lnet/minecraft/network/chat/Component;)V net/minecraft/world/level/BaseCommandBlock/setName (Lnet/minecraft/network/chat/Component;)V +MD: net/minecraft/world/level/BaseCommandBlock/m_45428_ (Z)V net/minecraft/world/level/BaseCommandBlock/setTrackOutput (Z)V +MD: net/minecraft/world/level/BaseCommandBlock/m_45431_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/level/BaseCommandBlock/load (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/level/BaseCommandBlock/m_45433_ (Lnet/minecraft/network/chat/Component;)V net/minecraft/world/level/BaseCommandBlock/setLastOutput (Lnet/minecraft/network/chat/Component;)V +MD: net/minecraft/world/level/BaseCommandBlock/m_45435_ ()Ljava/lang/String; net/minecraft/world/level/BaseCommandBlock/lambda$performCommand$1 ()Ljava/lang/String; +MD: net/minecraft/world/level/BaseCommandBlock/m_45436_ ()I net/minecraft/world/level/BaseCommandBlock/getSuccessCount ()I +MD: net/minecraft/world/level/BaseCommandBlock/m_45437_ ()Lnet/minecraft/network/chat/Component; net/minecraft/world/level/BaseCommandBlock/getLastOutput ()Lnet/minecraft/network/chat/Component; +MD: net/minecraft/world/level/BaseCommandBlock/m_45438_ ()Ljava/lang/String; net/minecraft/world/level/BaseCommandBlock/getCommand ()Ljava/lang/String; +MD: net/minecraft/world/level/BaseCommandBlock/m_45439_ ()Lnet/minecraft/network/chat/Component; net/minecraft/world/level/BaseCommandBlock/getName ()Lnet/minecraft/network/chat/Component; +MD: net/minecraft/world/level/BaseCommandBlock/m_45440_ ()Z net/minecraft/world/level/BaseCommandBlock/isTrackOutput ()Z +MD: net/minecraft/world/level/BaseCommandBlock/m_5991_ ()Lnet/minecraft/server/level/ServerLevel; net/minecraft/world/level/BaseCommandBlock/getLevel ()Lnet/minecraft/server/level/ServerLevel; +MD: net/minecraft/world/level/BaseCommandBlock/m_6102_ ()Z net/minecraft/world/level/BaseCommandBlock/shouldInformAdmins ()Z +MD: net/minecraft/world/level/BaseCommandBlock/m_6590_ (Ljava/lang/String;)V net/minecraft/world/level/BaseCommandBlock/setCommand (Ljava/lang/String;)V +MD: net/minecraft/world/level/BaseCommandBlock/m_6607_ ()Lnet/minecraft/world/phys/Vec3; net/minecraft/world/level/BaseCommandBlock/getPosition ()Lnet/minecraft/world/phys/Vec3; +MD: net/minecraft/world/level/BaseCommandBlock/m_6712_ ()Lnet/minecraft/commands/CommandSourceStack; net/minecraft/world/level/BaseCommandBlock/createCommandSourceStack ()Lnet/minecraft/commands/CommandSourceStack; +MD: net/minecraft/world/level/BaseCommandBlock/m_6999_ ()Z net/minecraft/world/level/BaseCommandBlock/acceptsSuccess ()Z +MD: net/minecraft/world/level/BaseCommandBlock/m_7028_ ()Z net/minecraft/world/level/BaseCommandBlock/acceptsFailure ()Z +MD: net/minecraft/world/level/BaseCommandBlock/m_7368_ ()V net/minecraft/world/level/BaseCommandBlock/onUpdated ()V +MD: net/minecraft/world/level/BaseSpawner/ ()V net/minecraft/world/level/BaseSpawner/ ()V +MD: net/minecraft/world/level/BaseSpawner/ ()V net/minecraft/world/level/BaseSpawner/ ()V +MD: net/minecraft/world/level/BaseSpawner/m_142523_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;I)V net/minecraft/world/level/BaseSpawner/broadcastEvent (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;I)V +MD: net/minecraft/world/level/BaseSpawner/m_142667_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/SpawnData;)V net/minecraft/world/level/BaseSpawner/setNextSpawnData (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/SpawnData;)V +MD: net/minecraft/world/level/BaseSpawner/m_151306_ (DDDLnet/minecraft/world/entity/Entity;)Lnet/minecraft/world/entity/Entity; net/minecraft/world/level/BaseSpawner/lambda$serverTick$0 (DDDLnet/minecraft/world/entity/Entity;)Lnet/minecraft/world/entity/Entity; +MD: net/minecraft/world/level/BaseSpawner/m_151311_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;)V net/minecraft/world/level/BaseSpawner/serverTick (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/world/level/BaseSpawner/m_151316_ (Lnet/minecraft/world/level/Level;I)Z net/minecraft/world/level/BaseSpawner/onEventTriggered (Lnet/minecraft/world/level/Level;I)Z +MD: net/minecraft/world/level/BaseSpawner/m_151319_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;)V net/minecraft/world/level/BaseSpawner/clientTick (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/world/level/BaseSpawner/m_151328_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/level/BaseSpawner/load (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/level/BaseSpawner/m_151343_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/level/BaseSpawner/isNearPlayer (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/level/BaseSpawner/m_151350_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;)V net/minecraft/world/level/BaseSpawner/delay (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/world/level/BaseSpawner/m_186381_ (Lnet/minecraft/nbt/CompoundTag;)Lnet/minecraft/nbt/CompoundTag; net/minecraft/world/level/BaseSpawner/save (Lnet/minecraft/nbt/CompoundTag;)Lnet/minecraft/nbt/CompoundTag; +MD: net/minecraft/world/level/BaseSpawner/m_186383_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/random/WeightedEntry$Wrapper;)V net/minecraft/world/level/BaseSpawner/lambda$delay$1 (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/random/WeightedEntry$Wrapper;)V +MD: net/minecraft/world/level/BaseSpawner/m_186387_ (Ljava/lang/String;)V net/minecraft/world/level/BaseSpawner/lambda$load$3 (Ljava/lang/String;)V +MD: net/minecraft/world/level/BaseSpawner/m_186389_ ()Ljava/lang/IllegalStateException; net/minecraft/world/level/BaseSpawner/lambda$save$4 ()Ljava/lang/IllegalStateException; +MD: net/minecraft/world/level/BaseSpawner/m_186390_ (Ljava/lang/String;)V net/minecraft/world/level/BaseSpawner/lambda$load$2 (Ljava/lang/String;)V +MD: net/minecraft/world/level/BaseSpawner/m_253067_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/entity/Entity; net/minecraft/world/level/BaseSpawner/getOrCreateDisplayEntity (Lnet/minecraft/world/level/Level;Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/entity/Entity; +MD: net/minecraft/world/level/BaseSpawner/m_253144_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/SpawnData; net/minecraft/world/level/BaseSpawner/getOrCreateNextSpawnData (Lnet/minecraft/world/level/Level;Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/SpawnData; +MD: net/minecraft/world/level/BaseSpawner/m_253197_ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos;)V net/minecraft/world/level/BaseSpawner/setEntityId (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/Level;Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/world/level/BaseSpawner/m_45473_ ()D net/minecraft/world/level/BaseSpawner/getSpin ()D +MD: net/minecraft/world/level/BaseSpawner/m_45474_ ()D net/minecraft/world/level/BaseSpawner/getoSpin ()D +MD: net/minecraft/world/level/BlockAndTintGetter/m_45517_ (Lnet/minecraft/world/level/LightLayer;Lnet/minecraft/core/BlockPos;)I net/minecraft/world/level/BlockAndTintGetter/getBrightness (Lnet/minecraft/world/level/LightLayer;Lnet/minecraft/core/BlockPos;)I +MD: net/minecraft/world/level/BlockAndTintGetter/m_45524_ (Lnet/minecraft/core/BlockPos;I)I net/minecraft/world/level/BlockAndTintGetter/getRawBrightness (Lnet/minecraft/core/BlockPos;I)I +MD: net/minecraft/world/level/BlockAndTintGetter/m_45527_ (Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/level/BlockAndTintGetter/canSeeSky (Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/level/BlockAndTintGetter/m_5518_ ()Lnet/minecraft/world/level/lighting/LevelLightEngine; net/minecraft/world/level/BlockAndTintGetter/getLightEngine ()Lnet/minecraft/world/level/lighting/LevelLightEngine; +MD: net/minecraft/world/level/BlockAndTintGetter/m_6171_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/ColorResolver;)I net/minecraft/world/level/BlockAndTintGetter/getBlockTint (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/ColorResolver;)I +MD: net/minecraft/world/level/BlockAndTintGetter/m_7717_ (Lnet/minecraft/core/Direction;Z)F net/minecraft/world/level/BlockAndTintGetter/getShade (Lnet/minecraft/core/Direction;Z)F +MD: net/minecraft/world/level/BlockCollisions/ (Lnet/minecraft/world/level/CollisionGetter;Lnet/minecraft/world/entity/Entity;Lnet/minecraft/world/phys/AABB;ZLjava/util/function/BiFunction;)V net/minecraft/world/level/BlockCollisions/ (Lnet/minecraft/world/level/CollisionGetter;Lnet/minecraft/world/entity/Entity;Lnet/minecraft/world/phys/AABB;ZLjava/util/function/BiFunction;)V +MD: net/minecraft/world/level/BlockCollisions/computeNext ()Ljava/lang/Object; net/minecraft/world/level/BlockCollisions/computeNext ()Ljava/lang/Object; +MD: net/minecraft/world/level/BlockCollisions/m_186411_ (II)Lnet/minecraft/world/level/BlockGetter; net/minecraft/world/level/BlockCollisions/getChunk (II)Lnet/minecraft/world/level/BlockGetter; +MD: net/minecraft/world/level/BlockEventData/ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/Block;II)V net/minecraft/world/level/BlockEventData/ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/Block;II)V +MD: net/minecraft/world/level/BlockEventData/equals (Ljava/lang/Object;)Z net/minecraft/world/level/BlockEventData/equals (Ljava/lang/Object;)Z +MD: net/minecraft/world/level/BlockEventData/f_45529_ ()Lnet/minecraft/core/BlockPos; net/minecraft/world/level/BlockEventData/pos ()Lnet/minecraft/core/BlockPos; +MD: net/minecraft/world/level/BlockEventData/f_45530_ ()Lnet/minecraft/world/level/block/Block; net/minecraft/world/level/BlockEventData/block ()Lnet/minecraft/world/level/block/Block; +MD: net/minecraft/world/level/BlockEventData/f_45531_ ()I net/minecraft/world/level/BlockEventData/paramA ()I +MD: net/minecraft/world/level/BlockEventData/f_45532_ ()I net/minecraft/world/level/BlockEventData/paramB ()I +MD: net/minecraft/world/level/BlockEventData/hashCode ()I net/minecraft/world/level/BlockEventData/hashCode ()I +MD: net/minecraft/world/level/BlockEventData/toString ()Ljava/lang/String; net/minecraft/world/level/BlockEventData/toString ()Ljava/lang/String; +MD: net/minecraft/world/level/BlockGetter/m_141902_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/entity/BlockEntityType;)Ljava/util/Optional; net/minecraft/world/level/BlockGetter/getBlockEntity (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/entity/BlockEntityType;)Ljava/util/Optional; +MD: net/minecraft/world/level/BlockGetter/m_151353_ (Lnet/minecraft/world/level/ClipBlockStateContext;)Lnet/minecraft/world/phys/BlockHitResult; net/minecraft/world/level/BlockGetter/isBlockInLine (Lnet/minecraft/world/level/ClipBlockStateContext;)Lnet/minecraft/world/phys/BlockHitResult; +MD: net/minecraft/world/level/BlockGetter/m_151358_ (Lnet/minecraft/world/level/ClipContext;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/phys/BlockHitResult; net/minecraft/world/level/BlockGetter/lambda$clip$2 (Lnet/minecraft/world/level/ClipContext;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/phys/BlockHitResult; +MD: net/minecraft/world/level/BlockGetter/m_151361_ (Lnet/minecraft/world/phys/Vec3;Lnet/minecraft/world/phys/Vec3;Ljava/lang/Object;Ljava/util/function/BiFunction;Ljava/util/function/Function;)Ljava/lang/Object; net/minecraft/world/level/BlockGetter/traverseBlocks (Lnet/minecraft/world/phys/Vec3;Lnet/minecraft/world/phys/Vec3;Ljava/lang/Object;Ljava/util/function/BiFunction;Ljava/util/function/Function;)Ljava/lang/Object; +MD: net/minecraft/world/level/BlockGetter/m_151373_ (Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/phys/shapes/VoxelShape; net/minecraft/world/level/BlockGetter/lambda$getBlockFloorHeight$4 (Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/phys/shapes/VoxelShape; +MD: net/minecraft/world/level/BlockGetter/m_274262_ (Lnet/minecraft/world/level/ClipContext;)Lnet/minecraft/world/phys/BlockHitResult; net/minecraft/world/level/BlockGetter/lambda$clip$3 (Lnet/minecraft/world/level/ClipContext;)Lnet/minecraft/world/phys/BlockHitResult; +MD: net/minecraft/world/level/BlockGetter/m_274263_ (Lnet/minecraft/world/level/ClipBlockStateContext;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/phys/BlockHitResult; net/minecraft/world/level/BlockGetter/lambda$isBlockInLine$0 (Lnet/minecraft/world/level/ClipBlockStateContext;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/phys/BlockHitResult; +MD: net/minecraft/world/level/BlockGetter/m_274264_ (Lnet/minecraft/world/level/ClipBlockStateContext;)Lnet/minecraft/world/phys/BlockHitResult; net/minecraft/world/level/BlockGetter/lambda$isBlockInLine$1 (Lnet/minecraft/world/level/ClipBlockStateContext;)Lnet/minecraft/world/phys/BlockHitResult; +MD: net/minecraft/world/level/BlockGetter/m_45547_ (Lnet/minecraft/world/level/ClipContext;)Lnet/minecraft/world/phys/BlockHitResult; net/minecraft/world/level/BlockGetter/clip (Lnet/minecraft/world/level/ClipContext;)Lnet/minecraft/world/phys/BlockHitResult; +MD: net/minecraft/world/level/BlockGetter/m_45556_ (Lnet/minecraft/world/phys/AABB;)Ljava/util/stream/Stream; net/minecraft/world/level/BlockGetter/getBlockStates (Lnet/minecraft/world/phys/AABB;)Ljava/util/stream/Stream; +MD: net/minecraft/world/level/BlockGetter/m_45558_ (Lnet/minecraft/world/phys/Vec3;Lnet/minecraft/world/phys/Vec3;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/VoxelShape;Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/phys/BlockHitResult; net/minecraft/world/level/BlockGetter/clipWithInteractionOverride (Lnet/minecraft/world/phys/Vec3;Lnet/minecraft/world/phys/Vec3;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/VoxelShape;Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/phys/BlockHitResult; +MD: net/minecraft/world/level/BlockGetter/m_45564_ (Lnet/minecraft/world/phys/shapes/VoxelShape;Ljava/util/function/Supplier;)D net/minecraft/world/level/BlockGetter/getBlockFloorHeight (Lnet/minecraft/world/phys/shapes/VoxelShape;Ljava/util/function/Supplier;)D +MD: net/minecraft/world/level/BlockGetter/m_45573_ (Lnet/minecraft/core/BlockPos;)D net/minecraft/world/level/BlockGetter/getBlockFloorHeight (Lnet/minecraft/core/BlockPos;)D +MD: net/minecraft/world/level/BlockGetter/m_6425_ (Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/material/FluidState; net/minecraft/world/level/BlockGetter/getFluidState (Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/material/FluidState; +MD: net/minecraft/world/level/BlockGetter/m_7146_ (Lnet/minecraft/core/BlockPos;)I net/minecraft/world/level/BlockGetter/getLightEmission (Lnet/minecraft/core/BlockPos;)I +MD: net/minecraft/world/level/BlockGetter/m_7469_ ()I net/minecraft/world/level/BlockGetter/getMaxLightLevel ()I +MD: net/minecraft/world/level/BlockGetter/m_7702_ (Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/entity/BlockEntity; net/minecraft/world/level/BlockGetter/getBlockEntity (Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/entity/BlockEntity; +MD: net/minecraft/world/level/BlockGetter/m_8055_ (Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/BlockGetter/getBlockState (Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/ChunkPos/ ()V net/minecraft/world/level/ChunkPos/ ()V +MD: net/minecraft/world/level/ChunkPos/ (J)V net/minecraft/world/level/ChunkPos/ (J)V +MD: net/minecraft/world/level/ChunkPos/ (II)V net/minecraft/world/level/ChunkPos/ (II)V +MD: net/minecraft/world/level/ChunkPos/ (Lnet/minecraft/core/BlockPos;)V net/minecraft/world/level/ChunkPos/ (Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/world/level/ChunkPos/equals (Ljava/lang/Object;)Z net/minecraft/world/level/ChunkPos/equals (Ljava/lang/Object;)Z +MD: net/minecraft/world/level/ChunkPos/hashCode ()I net/minecraft/world/level/ChunkPos/hashCode ()I +MD: net/minecraft/world/level/ChunkPos/m_151382_ (I)I net/minecraft/world/level/ChunkPos/getBlockX (I)I +MD: net/minecraft/world/level/ChunkPos/m_151384_ (III)Lnet/minecraft/core/BlockPos; net/minecraft/world/level/ChunkPos/getBlockAt (III)Lnet/minecraft/core/BlockPos; +MD: net/minecraft/world/level/ChunkPos/m_151388_ (Lnet/minecraft/core/BlockPos;)J net/minecraft/world/level/ChunkPos/asLong (Lnet/minecraft/core/BlockPos;)J +MD: net/minecraft/world/level/ChunkPos/m_151390_ ()I net/minecraft/world/level/ChunkPos/getMiddleBlockX ()I +MD: net/minecraft/world/level/ChunkPos/m_151391_ (I)I net/minecraft/world/level/ChunkPos/getBlockZ (I)I +MD: net/minecraft/world/level/ChunkPos/m_151393_ ()I net/minecraft/world/level/ChunkPos/getMiddleBlockZ ()I +MD: net/minecraft/world/level/ChunkPos/m_151394_ (I)Lnet/minecraft/core/BlockPos; net/minecraft/world/level/ChunkPos/getMiddleBlockPosition (I)Lnet/minecraft/core/BlockPos; +MD: net/minecraft/world/level/ChunkPos/m_220337_ (II)Lnet/minecraft/world/level/ChunkPos; net/minecraft/world/level/ChunkPos/minFromRegion (II)Lnet/minecraft/world/level/ChunkPos; +MD: net/minecraft/world/level/ChunkPos/m_220340_ (II)Lnet/minecraft/world/level/ChunkPos; net/minecraft/world/level/ChunkPos/maxFromRegion (II)Lnet/minecraft/world/level/ChunkPos; +MD: net/minecraft/world/level/ChunkPos/m_220343_ (II)I net/minecraft/world/level/ChunkPos/hash (II)I +MD: net/minecraft/world/level/ChunkPos/m_45588_ ()J net/minecraft/world/level/ChunkPos/toLong ()J +MD: net/minecraft/world/level/ChunkPos/m_45589_ (II)J net/minecraft/world/level/ChunkPos/asLong (II)J +MD: net/minecraft/world/level/ChunkPos/m_45592_ (J)I net/minecraft/world/level/ChunkPos/getX (J)I +MD: net/minecraft/world/level/ChunkPos/m_45594_ (Lnet/minecraft/world/level/ChunkPos;)I net/minecraft/world/level/ChunkPos/getChessboardDistance (Lnet/minecraft/world/level/ChunkPos;)I +MD: net/minecraft/world/level/ChunkPos/m_45596_ (Lnet/minecraft/world/level/ChunkPos;I)Ljava/util/stream/Stream; net/minecraft/world/level/ChunkPos/rangeClosed (Lnet/minecraft/world/level/ChunkPos;I)Ljava/util/stream/Stream; +MD: net/minecraft/world/level/ChunkPos/m_45599_ (Lnet/minecraft/world/level/ChunkPos;Lnet/minecraft/world/level/ChunkPos;)Ljava/util/stream/Stream; net/minecraft/world/level/ChunkPos/rangeClosed (Lnet/minecraft/world/level/ChunkPos;Lnet/minecraft/world/level/ChunkPos;)Ljava/util/stream/Stream; +MD: net/minecraft/world/level/ChunkPos/m_45602_ (J)I net/minecraft/world/level/ChunkPos/getZ (J)I +MD: net/minecraft/world/level/ChunkPos/m_45604_ ()I net/minecraft/world/level/ChunkPos/getMinBlockX ()I +MD: net/minecraft/world/level/ChunkPos/m_45605_ ()I net/minecraft/world/level/ChunkPos/getMinBlockZ ()I +MD: net/minecraft/world/level/ChunkPos/m_45608_ ()I net/minecraft/world/level/ChunkPos/getMaxBlockX ()I +MD: net/minecraft/world/level/ChunkPos/m_45609_ ()I net/minecraft/world/level/ChunkPos/getMaxBlockZ ()I +MD: net/minecraft/world/level/ChunkPos/m_45610_ ()I net/minecraft/world/level/ChunkPos/getRegionX ()I +MD: net/minecraft/world/level/ChunkPos/m_45612_ ()I net/minecraft/world/level/ChunkPos/getRegionZ ()I +MD: net/minecraft/world/level/ChunkPos/m_45613_ ()I net/minecraft/world/level/ChunkPos/getRegionLocalX ()I +MD: net/minecraft/world/level/ChunkPos/m_45614_ ()I net/minecraft/world/level/ChunkPos/getRegionLocalZ ()I +MD: net/minecraft/world/level/ChunkPos/m_45615_ ()Lnet/minecraft/core/BlockPos; net/minecraft/world/level/ChunkPos/getWorldPosition ()Lnet/minecraft/core/BlockPos; +MD: net/minecraft/world/level/ChunkPos/toString ()Ljava/lang/String; net/minecraft/world/level/ChunkPos/toString ()Ljava/lang/String; +MD: net/minecraft/world/level/ChunkPos$1/ (JILnet/minecraft/world/level/ChunkPos;Lnet/minecraft/world/level/ChunkPos;II)V net/minecraft/world/level/ChunkPos$1/ (JILnet/minecraft/world/level/ChunkPos;Lnet/minecraft/world/level/ChunkPos;II)V +MD: net/minecraft/world/level/ChunkPos$1/tryAdvance (Ljava/util/function/Consumer;)Z net/minecraft/world/level/ChunkPos$1/tryAdvance (Ljava/util/function/Consumer;)Z +MD: net/minecraft/world/level/ClipBlockStateContext/ (Lnet/minecraft/world/phys/Vec3;Lnet/minecraft/world/phys/Vec3;Ljava/util/function/Predicate;)V net/minecraft/world/level/ClipBlockStateContext/ (Lnet/minecraft/world/phys/Vec3;Lnet/minecraft/world/phys/Vec3;Ljava/util/function/Predicate;)V +MD: net/minecraft/world/level/ClipBlockStateContext/m_151404_ ()Lnet/minecraft/world/phys/Vec3; net/minecraft/world/level/ClipBlockStateContext/getTo ()Lnet/minecraft/world/phys/Vec3; +MD: net/minecraft/world/level/ClipBlockStateContext/m_151405_ ()Lnet/minecraft/world/phys/Vec3; net/minecraft/world/level/ClipBlockStateContext/getFrom ()Lnet/minecraft/world/phys/Vec3; +MD: net/minecraft/world/level/ClipBlockStateContext/m_151406_ ()Ljava/util/function/Predicate; net/minecraft/world/level/ClipBlockStateContext/isTargetBlock ()Ljava/util/function/Predicate; +MD: net/minecraft/world/level/ClipContext/ (Lnet/minecraft/world/phys/Vec3;Lnet/minecraft/world/phys/Vec3;Lnet/minecraft/world/level/ClipContext$Block;Lnet/minecraft/world/level/ClipContext$Fluid;Lnet/minecraft/world/entity/Entity;)V net/minecraft/world/level/ClipContext/ (Lnet/minecraft/world/phys/Vec3;Lnet/minecraft/world/phys/Vec3;Lnet/minecraft/world/level/ClipContext$Block;Lnet/minecraft/world/level/ClipContext$Fluid;Lnet/minecraft/world/entity/Entity;)V +MD: net/minecraft/world/level/ClipContext/m_45693_ ()Lnet/minecraft/world/phys/Vec3; net/minecraft/world/level/ClipContext/getTo ()Lnet/minecraft/world/phys/Vec3; +MD: net/minecraft/world/level/ClipContext/m_45694_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/phys/shapes/VoxelShape; net/minecraft/world/level/ClipContext/getBlockShape (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/phys/shapes/VoxelShape; +MD: net/minecraft/world/level/ClipContext/m_45698_ (Lnet/minecraft/world/level/material/FluidState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/phys/shapes/VoxelShape; net/minecraft/world/level/ClipContext/getFluidShape (Lnet/minecraft/world/level/material/FluidState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/phys/shapes/VoxelShape; +MD: net/minecraft/world/level/ClipContext/m_45702_ ()Lnet/minecraft/world/phys/Vec3; net/minecraft/world/level/ClipContext/getFrom ()Lnet/minecraft/world/phys/Vec3; +MD: net/minecraft/world/level/ClipContext$Block/ ()V net/minecraft/world/level/ClipContext$Block/ ()V +MD: net/minecraft/world/level/ClipContext$Block/ (Ljava/lang/String;ILnet/minecraft/world/level/ClipContext$ShapeGetter;)V net/minecraft/world/level/ClipContext$Block/ (Ljava/lang/String;ILnet/minecraft/world/level/ClipContext$ShapeGetter;)V +MD: net/minecraft/world/level/ClipContext$Block/m_151407_ ()[Lnet/minecraft/world/level/ClipContext$Block; net/minecraft/world/level/ClipContext$Block/$values ()[Lnet/minecraft/world/level/ClipContext$Block; +MD: net/minecraft/world/level/ClipContext$Block/m_201981_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; net/minecraft/world/level/ClipContext$Block/lambda$static$0 (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; +MD: net/minecraft/world/level/ClipContext$Block/m_7544_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; net/minecraft/world/level/ClipContext$Block/get (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; +MD: net/minecraft/world/level/ClipContext$Block/valueOf (Ljava/lang/String;)Lnet/minecraft/world/level/ClipContext$Block; net/minecraft/world/level/ClipContext$Block/valueOf (Ljava/lang/String;)Lnet/minecraft/world/level/ClipContext$Block; +MD: net/minecraft/world/level/ClipContext$Block/values ()[Lnet/minecraft/world/level/ClipContext$Block; net/minecraft/world/level/ClipContext$Block/values ()[Lnet/minecraft/world/level/ClipContext$Block; +MD: net/minecraft/world/level/ClipContext$Fluid/ ()V net/minecraft/world/level/ClipContext$Fluid/ ()V +MD: net/minecraft/world/level/ClipContext$Fluid/ (Ljava/lang/String;ILjava/util/function/Predicate;)V net/minecraft/world/level/ClipContext$Fluid/ (Ljava/lang/String;ILjava/util/function/Predicate;)V +MD: net/minecraft/world/level/ClipContext$Fluid/m_151408_ ()[Lnet/minecraft/world/level/ClipContext$Fluid; net/minecraft/world/level/ClipContext$Fluid/$values ()[Lnet/minecraft/world/level/ClipContext$Fluid; +MD: net/minecraft/world/level/ClipContext$Fluid/m_201987_ (Lnet/minecraft/world/level/material/FluidState;)Z net/minecraft/world/level/ClipContext$Fluid/lambda$static$2 (Lnet/minecraft/world/level/material/FluidState;)Z +MD: net/minecraft/world/level/ClipContext$Fluid/m_45731_ (Lnet/minecraft/world/level/material/FluidState;)Z net/minecraft/world/level/ClipContext$Fluid/canPick (Lnet/minecraft/world/level/material/FluidState;)Z +MD: net/minecraft/world/level/ClipContext$Fluid/m_45733_ (Lnet/minecraft/world/level/material/FluidState;)Z net/minecraft/world/level/ClipContext$Fluid/lambda$static$1 (Lnet/minecraft/world/level/material/FluidState;)Z +MD: net/minecraft/world/level/ClipContext$Fluid/m_45735_ (Lnet/minecraft/world/level/material/FluidState;)Z net/minecraft/world/level/ClipContext$Fluid/lambda$static$0 (Lnet/minecraft/world/level/material/FluidState;)Z +MD: net/minecraft/world/level/ClipContext$Fluid/valueOf (Ljava/lang/String;)Lnet/minecraft/world/level/ClipContext$Fluid; net/minecraft/world/level/ClipContext$Fluid/valueOf (Ljava/lang/String;)Lnet/minecraft/world/level/ClipContext$Fluid; +MD: net/minecraft/world/level/ClipContext$Fluid/values ()[Lnet/minecraft/world/level/ClipContext$Fluid; net/minecraft/world/level/ClipContext$Fluid/values ()[Lnet/minecraft/world/level/ClipContext$Fluid; +MD: net/minecraft/world/level/ClipContext$ShapeGetter/m_7544_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; net/minecraft/world/level/ClipContext$ShapeGetter/get (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; +MD: net/minecraft/world/level/CollisionGetter/m_151418_ (Lnet/minecraft/world/entity/Entity;Lnet/minecraft/world/phys/shapes/VoxelShape;Lnet/minecraft/world/phys/Vec3;DDD)Ljava/util/Optional; net/minecraft/world/level/CollisionGetter/findFreePosition (Lnet/minecraft/world/entity/Entity;Lnet/minecraft/world/phys/shapes/VoxelShape;Lnet/minecraft/world/phys/Vec3;DDD)Ljava/util/Optional; +MD: net/minecraft/world/level/CollisionGetter/m_183134_ (Lnet/minecraft/world/entity/Entity;Lnet/minecraft/world/phys/AABB;)Ljava/util/List; net/minecraft/world/level/CollisionGetter/getEntityCollisions (Lnet/minecraft/world/entity/Entity;Lnet/minecraft/world/phys/AABB;)Ljava/util/List; +MD: net/minecraft/world/level/CollisionGetter/m_186420_ (DDDLnet/minecraft/world/phys/AABB;)Lnet/minecraft/world/phys/AABB; net/minecraft/world/level/CollisionGetter/lambda$findFreePosition$6 (DDDLnet/minecraft/world/phys/AABB;)Lnet/minecraft/world/phys/AABB; +MD: net/minecraft/world/level/CollisionGetter/m_186425_ (Lnet/minecraft/world/phys/shapes/VoxelShape;)Ljava/util/stream/Stream; net/minecraft/world/level/CollisionGetter/lambda$findFreePosition$5 (Lnet/minecraft/world/phys/shapes/VoxelShape;)Ljava/util/stream/Stream; +MD: net/minecraft/world/level/CollisionGetter/m_186429_ (Lnet/minecraft/world/phys/shapes/VoxelShape;)Z net/minecraft/world/level/CollisionGetter/lambda$findFreePosition$4 (Lnet/minecraft/world/phys/shapes/VoxelShape;)Z +MD: net/minecraft/world/level/CollisionGetter/m_186431_ (Lnet/minecraft/world/entity/Entity;Lnet/minecraft/world/phys/AABB;)Ljava/lang/Iterable; net/minecraft/world/level/CollisionGetter/getCollisions (Lnet/minecraft/world/entity/Entity;Lnet/minecraft/world/phys/AABB;)Ljava/lang/Iterable; +MD: net/minecraft/world/level/CollisionGetter/m_186434_ (Lnet/minecraft/world/entity/Entity;Lnet/minecraft/world/phys/AABB;)Ljava/lang/Iterable; net/minecraft/world/level/CollisionGetter/getBlockCollisions (Lnet/minecraft/world/entity/Entity;Lnet/minecraft/world/phys/AABB;)Ljava/lang/Iterable; +MD: net/minecraft/world/level/CollisionGetter/m_186437_ (Lnet/minecraft/world/entity/Entity;Lnet/minecraft/world/phys/AABB;)Z net/minecraft/world/level/CollisionGetter/collidesWithSuffocatingBlock (Lnet/minecraft/world/entity/Entity;Lnet/minecraft/world/phys/AABB;)Z +MD: net/minecraft/world/level/CollisionGetter/m_186440_ (Lnet/minecraft/world/entity/Entity;Lnet/minecraft/world/phys/AABB;)Lnet/minecraft/world/phys/shapes/VoxelShape; net/minecraft/world/level/CollisionGetter/borderCollision (Lnet/minecraft/world/entity/Entity;Lnet/minecraft/world/phys/AABB;)Lnet/minecraft/world/phys/shapes/VoxelShape; +MD: net/minecraft/world/level/CollisionGetter/m_285727_ (Lnet/minecraft/world/entity/Entity;Lnet/minecraft/world/phys/AABB;)Ljava/util/Iterator; net/minecraft/world/level/CollisionGetter/lambda$getBlockCollisions$1 (Lnet/minecraft/world/entity/Entity;Lnet/minecraft/world/phys/AABB;)Ljava/util/Iterator; +MD: net/minecraft/world/level/CollisionGetter/m_285728_ (Lnet/minecraft/core/BlockPos$MutableBlockPos;Lnet/minecraft/world/phys/shapes/VoxelShape;)Lnet/minecraft/world/phys/shapes/VoxelShape; net/minecraft/world/level/CollisionGetter/lambda$collidesWithSuffocatingBlock$2 (Lnet/minecraft/core/BlockPos$MutableBlockPos;Lnet/minecraft/world/phys/shapes/VoxelShape;)Lnet/minecraft/world/phys/shapes/VoxelShape; +MD: net/minecraft/world/level/CollisionGetter/m_285729_ (Lnet/minecraft/core/BlockPos$MutableBlockPos;Lnet/minecraft/world/phys/shapes/VoxelShape;)Lnet/minecraft/core/BlockPos; net/minecraft/world/level/CollisionGetter/lambda$findSupportingBlock$3 (Lnet/minecraft/core/BlockPos$MutableBlockPos;Lnet/minecraft/world/phys/shapes/VoxelShape;)Lnet/minecraft/core/BlockPos; +MD: net/minecraft/world/level/CollisionGetter/m_285730_ (Lnet/minecraft/core/BlockPos$MutableBlockPos;Lnet/minecraft/world/phys/shapes/VoxelShape;)Lnet/minecraft/world/phys/shapes/VoxelShape; net/minecraft/world/level/CollisionGetter/lambda$getBlockCollisions$0 (Lnet/minecraft/core/BlockPos$MutableBlockPos;Lnet/minecraft/world/phys/shapes/VoxelShape;)Lnet/minecraft/world/phys/shapes/VoxelShape; +MD: net/minecraft/world/level/CollisionGetter/m_285750_ (Lnet/minecraft/world/entity/Entity;Lnet/minecraft/world/phys/AABB;)Ljava/util/Optional; net/minecraft/world/level/CollisionGetter/findSupportingBlock (Lnet/minecraft/world/entity/Entity;Lnet/minecraft/world/phys/AABB;)Ljava/util/Optional; +MD: net/minecraft/world/level/CollisionGetter/m_45752_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Z net/minecraft/world/level/CollisionGetter/isUnobstructed (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Z +MD: net/minecraft/world/level/CollisionGetter/m_45756_ (Lnet/minecraft/world/entity/Entity;Lnet/minecraft/world/phys/AABB;)Z net/minecraft/world/level/CollisionGetter/noCollision (Lnet/minecraft/world/entity/Entity;Lnet/minecraft/world/phys/AABB;)Z +MD: net/minecraft/world/level/CollisionGetter/m_45772_ (Lnet/minecraft/world/phys/AABB;)Z net/minecraft/world/level/CollisionGetter/noCollision (Lnet/minecraft/world/phys/AABB;)Z +MD: net/minecraft/world/level/CollisionGetter/m_45784_ (Lnet/minecraft/world/entity/Entity;)Z net/minecraft/world/level/CollisionGetter/isUnobstructed (Lnet/minecraft/world/entity/Entity;)Z +MD: net/minecraft/world/level/CollisionGetter/m_45786_ (Lnet/minecraft/world/entity/Entity;)Z net/minecraft/world/level/CollisionGetter/noCollision (Lnet/minecraft/world/entity/Entity;)Z +MD: net/minecraft/world/level/CollisionGetter/m_5450_ (Lnet/minecraft/world/entity/Entity;Lnet/minecraft/world/phys/shapes/VoxelShape;)Z net/minecraft/world/level/CollisionGetter/isUnobstructed (Lnet/minecraft/world/entity/Entity;Lnet/minecraft/world/phys/shapes/VoxelShape;)Z +MD: net/minecraft/world/level/CollisionGetter/m_6857_ ()Lnet/minecraft/world/level/border/WorldBorder; net/minecraft/world/level/CollisionGetter/getWorldBorder ()Lnet/minecraft/world/level/border/WorldBorder; +MD: net/minecraft/world/level/CollisionGetter/m_7925_ (II)Lnet/minecraft/world/level/BlockGetter; net/minecraft/world/level/CollisionGetter/getChunkForCollisions (II)Lnet/minecraft/world/level/BlockGetter; +MD: net/minecraft/world/level/ColorResolver/m_130045_ (Lnet/minecraft/world/level/biome/Biome;DD)I net/minecraft/world/level/ColorResolver/getColor (Lnet/minecraft/world/level/biome/Biome;DD)I +MD: net/minecraft/world/level/CommonLevelAccessor/m_141902_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/entity/BlockEntityType;)Ljava/util/Optional; net/minecraft/world/level/CommonLevelAccessor/getBlockEntity (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/entity/BlockEntityType;)Ljava/util/Optional; +MD: net/minecraft/world/level/CommonLevelAccessor/m_183134_ (Lnet/minecraft/world/entity/Entity;Lnet/minecraft/world/phys/AABB;)Ljava/util/List; net/minecraft/world/level/CommonLevelAccessor/getEntityCollisions (Lnet/minecraft/world/entity/Entity;Lnet/minecraft/world/phys/AABB;)Ljava/util/List; +MD: net/minecraft/world/level/CommonLevelAccessor/m_5450_ (Lnet/minecraft/world/entity/Entity;Lnet/minecraft/world/phys/shapes/VoxelShape;)Z net/minecraft/world/level/CommonLevelAccessor/isUnobstructed (Lnet/minecraft/world/entity/Entity;Lnet/minecraft/world/phys/shapes/VoxelShape;)Z +MD: net/minecraft/world/level/CommonLevelAccessor/m_5452_ (Lnet/minecraft/world/level/levelgen/Heightmap$Types;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/core/BlockPos; net/minecraft/world/level/CommonLevelAccessor/getHeightmapPos (Lnet/minecraft/world/level/levelgen/Heightmap$Types;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/core/BlockPos; +MD: net/minecraft/world/level/CustomSpawner/m_7995_ (Lnet/minecraft/server/level/ServerLevel;ZZ)I net/minecraft/world/level/CustomSpawner/tick (Lnet/minecraft/server/level/ServerLevel;ZZ)I +MD: net/minecraft/world/level/DataPackConfig/ ()V net/minecraft/world/level/DataPackConfig/ ()V +MD: net/minecraft/world/level/DataPackConfig/ (Ljava/util/List;Ljava/util/List;)V net/minecraft/world/level/DataPackConfig/ (Ljava/util/List;Ljava/util/List;)V +MD: net/minecraft/world/level/DataPackConfig/m_151454_ (Lnet/minecraft/world/level/DataPackConfig;)Ljava/util/List; net/minecraft/world/level/DataPackConfig/lambda$static$1 (Lnet/minecraft/world/level/DataPackConfig;)Ljava/util/List; +MD: net/minecraft/world/level/DataPackConfig/m_151456_ (Lnet/minecraft/world/level/DataPackConfig;)Ljava/util/List; net/minecraft/world/level/DataPackConfig/lambda$static$0 (Lnet/minecraft/world/level/DataPackConfig;)Ljava/util/List; +MD: net/minecraft/world/level/DataPackConfig/m_45850_ ()Ljava/util/List; net/minecraft/world/level/DataPackConfig/getEnabled ()Ljava/util/List; +MD: net/minecraft/world/level/DataPackConfig/m_45853_ (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/world/level/DataPackConfig/lambda$static$2 (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/world/level/DataPackConfig/m_45855_ ()Ljava/util/List; net/minecraft/world/level/DataPackConfig/getDisabled ()Ljava/util/List; +MD: net/minecraft/world/level/EmptyBlockGetter/ ()V net/minecraft/world/level/EmptyBlockGetter/ ()V +MD: net/minecraft/world/level/EmptyBlockGetter/ (Ljava/lang/String;I)V net/minecraft/world/level/EmptyBlockGetter/ (Ljava/lang/String;I)V +MD: net/minecraft/world/level/EmptyBlockGetter/m_141928_ ()I net/minecraft/world/level/EmptyBlockGetter/getHeight ()I +MD: net/minecraft/world/level/EmptyBlockGetter/m_141937_ ()I net/minecraft/world/level/EmptyBlockGetter/getMinBuildHeight ()I +MD: net/minecraft/world/level/EmptyBlockGetter/m_151458_ ()[Lnet/minecraft/world/level/EmptyBlockGetter; net/minecraft/world/level/EmptyBlockGetter/$values ()[Lnet/minecraft/world/level/EmptyBlockGetter; +MD: net/minecraft/world/level/EmptyBlockGetter/m_6425_ (Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/material/FluidState; net/minecraft/world/level/EmptyBlockGetter/getFluidState (Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/material/FluidState; +MD: net/minecraft/world/level/EmptyBlockGetter/m_7702_ (Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/entity/BlockEntity; net/minecraft/world/level/EmptyBlockGetter/getBlockEntity (Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/entity/BlockEntity; +MD: net/minecraft/world/level/EmptyBlockGetter/m_8055_ (Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/EmptyBlockGetter/getBlockState (Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/EmptyBlockGetter/valueOf (Ljava/lang/String;)Lnet/minecraft/world/level/EmptyBlockGetter; net/minecraft/world/level/EmptyBlockGetter/valueOf (Ljava/lang/String;)Lnet/minecraft/world/level/EmptyBlockGetter; +MD: net/minecraft/world/level/EmptyBlockGetter/values ()[Lnet/minecraft/world/level/EmptyBlockGetter; net/minecraft/world/level/EmptyBlockGetter/values ()[Lnet/minecraft/world/level/EmptyBlockGetter; +MD: net/minecraft/world/level/EntityBasedExplosionDamageCalculator/ (Lnet/minecraft/world/entity/Entity;)V net/minecraft/world/level/EntityBasedExplosionDamageCalculator/ (Lnet/minecraft/world/entity/Entity;)V +MD: net/minecraft/world/level/EntityBasedExplosionDamageCalculator/m_45907_ (Lnet/minecraft/world/level/Explosion;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/material/FluidState;Ljava/lang/Float;)Ljava/lang/Float; net/minecraft/world/level/EntityBasedExplosionDamageCalculator/lambda$getBlockExplosionResistance$0 (Lnet/minecraft/world/level/Explosion;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/material/FluidState;Ljava/lang/Float;)Ljava/lang/Float; +MD: net/minecraft/world/level/EntityBasedExplosionDamageCalculator/m_6617_ (Lnet/minecraft/world/level/Explosion;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/material/FluidState;)Ljava/util/Optional; net/minecraft/world/level/EntityBasedExplosionDamageCalculator/getBlockExplosionResistance (Lnet/minecraft/world/level/Explosion;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/material/FluidState;)Ljava/util/Optional; +MD: net/minecraft/world/level/EntityBasedExplosionDamageCalculator/m_6714_ (Lnet/minecraft/world/level/Explosion;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;F)Z net/minecraft/world/level/EntityBasedExplosionDamageCalculator/shouldBlockExplode (Lnet/minecraft/world/level/Explosion;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;F)Z +MD: net/minecraft/world/level/EntityGetter/m_142425_ (Lnet/minecraft/world/level/entity/EntityTypeTest;Lnet/minecraft/world/phys/AABB;Ljava/util/function/Predicate;)Ljava/util/List; net/minecraft/world/level/EntityGetter/getEntities (Lnet/minecraft/world/level/entity/EntityTypeTest;Lnet/minecraft/world/phys/AABB;Ljava/util/function/Predicate;)Ljava/util/List; +MD: net/minecraft/world/level/EntityGetter/m_183134_ (Lnet/minecraft/world/entity/Entity;Lnet/minecraft/world/phys/AABB;)Ljava/util/List; net/minecraft/world/level/EntityGetter/getEntityCollisions (Lnet/minecraft/world/entity/Entity;Lnet/minecraft/world/phys/AABB;)Ljava/util/List; +MD: net/minecraft/world/level/EntityGetter/m_186449_ (Lnet/minecraft/world/entity/LivingEntity;)Z net/minecraft/world/level/EntityGetter/lambda$getNearbyEntities$1 (Lnet/minecraft/world/entity/LivingEntity;)Z +MD: net/minecraft/world/level/EntityGetter/m_186453_ (Lnet/minecraft/world/entity/LivingEntity;)Z net/minecraft/world/level/EntityGetter/lambda$getNearestEntity$0 (Lnet/minecraft/world/entity/LivingEntity;)Z +MD: net/minecraft/world/level/EntityGetter/m_45914_ (DDDD)Z net/minecraft/world/level/EntityGetter/hasNearbyAlivePlayer (DDDD)Z +MD: net/minecraft/world/level/EntityGetter/m_45924_ (DDDDZ)Lnet/minecraft/world/entity/player/Player; net/minecraft/world/level/EntityGetter/getNearestPlayer (DDDDZ)Lnet/minecraft/world/entity/player/Player; +MD: net/minecraft/world/level/EntityGetter/m_45930_ (Lnet/minecraft/world/entity/Entity;D)Lnet/minecraft/world/entity/player/Player; net/minecraft/world/level/EntityGetter/getNearestPlayer (Lnet/minecraft/world/entity/Entity;D)Lnet/minecraft/world/entity/player/Player; +MD: net/minecraft/world/level/EntityGetter/m_45933_ (Lnet/minecraft/world/entity/Entity;Lnet/minecraft/world/phys/AABB;)Ljava/util/List; net/minecraft/world/level/EntityGetter/getEntities (Lnet/minecraft/world/entity/Entity;Lnet/minecraft/world/phys/AABB;)Ljava/util/List; +MD: net/minecraft/world/level/EntityGetter/m_45941_ (Lnet/minecraft/world/entity/ai/targeting/TargetingConditions;DDD)Lnet/minecraft/world/entity/player/Player; net/minecraft/world/level/EntityGetter/getNearestPlayer (Lnet/minecraft/world/entity/ai/targeting/TargetingConditions;DDD)Lnet/minecraft/world/entity/player/Player; +MD: net/minecraft/world/level/EntityGetter/m_45946_ (Lnet/minecraft/world/entity/ai/targeting/TargetingConditions;Lnet/minecraft/world/entity/LivingEntity;)Lnet/minecraft/world/entity/player/Player; net/minecraft/world/level/EntityGetter/getNearestPlayer (Lnet/minecraft/world/entity/ai/targeting/TargetingConditions;Lnet/minecraft/world/entity/LivingEntity;)Lnet/minecraft/world/entity/player/Player; +MD: net/minecraft/world/level/EntityGetter/m_45949_ (Lnet/minecraft/world/entity/ai/targeting/TargetingConditions;Lnet/minecraft/world/entity/LivingEntity;DDD)Lnet/minecraft/world/entity/player/Player; net/minecraft/world/level/EntityGetter/getNearestPlayer (Lnet/minecraft/world/entity/ai/targeting/TargetingConditions;Lnet/minecraft/world/entity/LivingEntity;DDD)Lnet/minecraft/world/entity/player/Player; +MD: net/minecraft/world/level/EntityGetter/m_45955_ (Lnet/minecraft/world/entity/ai/targeting/TargetingConditions;Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/phys/AABB;)Ljava/util/List; net/minecraft/world/level/EntityGetter/getNearbyPlayers (Lnet/minecraft/world/entity/ai/targeting/TargetingConditions;Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/phys/AABB;)Ljava/util/List; +MD: net/minecraft/world/level/EntityGetter/m_45963_ (Ljava/lang/Class;Lnet/minecraft/world/entity/ai/targeting/TargetingConditions;Lnet/minecraft/world/entity/LivingEntity;DDDLnet/minecraft/world/phys/AABB;)Lnet/minecraft/world/entity/LivingEntity; net/minecraft/world/level/EntityGetter/getNearestEntity (Ljava/lang/Class;Lnet/minecraft/world/entity/ai/targeting/TargetingConditions;Lnet/minecraft/world/entity/LivingEntity;DDDLnet/minecraft/world/phys/AABB;)Lnet/minecraft/world/entity/LivingEntity; +MD: net/minecraft/world/level/EntityGetter/m_45971_ (Ljava/lang/Class;Lnet/minecraft/world/entity/ai/targeting/TargetingConditions;Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/phys/AABB;)Ljava/util/List; net/minecraft/world/level/EntityGetter/getNearbyEntities (Ljava/lang/Class;Lnet/minecraft/world/entity/ai/targeting/TargetingConditions;Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/phys/AABB;)Ljava/util/List; +MD: net/minecraft/world/level/EntityGetter/m_45976_ (Ljava/lang/Class;Lnet/minecraft/world/phys/AABB;)Ljava/util/List; net/minecraft/world/level/EntityGetter/getEntitiesOfClass (Ljava/lang/Class;Lnet/minecraft/world/phys/AABB;)Ljava/util/List; +MD: net/minecraft/world/level/EntityGetter/m_45982_ (Ljava/util/List;Lnet/minecraft/world/entity/ai/targeting/TargetingConditions;Lnet/minecraft/world/entity/LivingEntity;DDD)Lnet/minecraft/world/entity/LivingEntity; net/minecraft/world/level/EntityGetter/getNearestEntity (Ljava/util/List;Lnet/minecraft/world/entity/ai/targeting/TargetingConditions;Lnet/minecraft/world/entity/LivingEntity;DDD)Lnet/minecraft/world/entity/LivingEntity; +MD: net/minecraft/world/level/EntityGetter/m_46003_ (Ljava/util/UUID;)Lnet/minecraft/world/entity/player/Player; net/minecraft/world/level/EntityGetter/getPlayerByUUID (Ljava/util/UUID;)Lnet/minecraft/world/entity/player/Player; +MD: net/minecraft/world/level/EntityGetter/m_5450_ (Lnet/minecraft/world/entity/Entity;Lnet/minecraft/world/phys/shapes/VoxelShape;)Z net/minecraft/world/level/EntityGetter/isUnobstructed (Lnet/minecraft/world/entity/Entity;Lnet/minecraft/world/phys/shapes/VoxelShape;)Z +MD: net/minecraft/world/level/EntityGetter/m_5788_ (DDDDLjava/util/function/Predicate;)Lnet/minecraft/world/entity/player/Player; net/minecraft/world/level/EntityGetter/getNearestPlayer (DDDDLjava/util/function/Predicate;)Lnet/minecraft/world/entity/player/Player; +MD: net/minecraft/world/level/EntityGetter/m_6249_ (Lnet/minecraft/world/entity/Entity;Lnet/minecraft/world/phys/AABB;Ljava/util/function/Predicate;)Ljava/util/List; net/minecraft/world/level/EntityGetter/getEntities (Lnet/minecraft/world/entity/Entity;Lnet/minecraft/world/phys/AABB;Ljava/util/function/Predicate;)Ljava/util/List; +MD: net/minecraft/world/level/EntityGetter/m_6443_ (Ljava/lang/Class;Lnet/minecraft/world/phys/AABB;Ljava/util/function/Predicate;)Ljava/util/List; net/minecraft/world/level/EntityGetter/getEntitiesOfClass (Ljava/lang/Class;Lnet/minecraft/world/phys/AABB;Ljava/util/function/Predicate;)Ljava/util/List; +MD: net/minecraft/world/level/EntityGetter/m_6907_ ()Ljava/util/List; net/minecraft/world/level/EntityGetter/players ()Ljava/util/List; +MD: net/minecraft/world/level/Explosion/ ()V net/minecraft/world/level/Explosion/ ()V +MD: net/minecraft/world/level/Explosion/ (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/entity/Entity;DDDFZLnet/minecraft/world/level/Explosion$BlockInteraction;)V net/minecraft/world/level/Explosion/ (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/entity/Entity;DDDFZLnet/minecraft/world/level/Explosion$BlockInteraction;)V +MD: net/minecraft/world/level/Explosion/ (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/entity/Entity;Lnet/minecraft/world/damagesource/DamageSource;Lnet/minecraft/world/level/ExplosionDamageCalculator;DDDFZLnet/minecraft/world/level/Explosion$BlockInteraction;)V net/minecraft/world/level/Explosion/ (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/entity/Entity;Lnet/minecraft/world/damagesource/DamageSource;Lnet/minecraft/world/level/ExplosionDamageCalculator;DDDFZLnet/minecraft/world/level/Explosion$BlockInteraction;)V +MD: net/minecraft/world/level/Explosion/ (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/entity/Entity;DDDFLjava/util/List;)V net/minecraft/world/level/Explosion/ (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/entity/Entity;DDDFLjava/util/List;)V +MD: net/minecraft/world/level/Explosion/ (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/entity/Entity;DDDFZLnet/minecraft/world/level/Explosion$BlockInteraction;Ljava/util/List;)V net/minecraft/world/level/Explosion/ (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/entity/Entity;DDDFZLnet/minecraft/world/level/Explosion$BlockInteraction;Ljava/util/List;)V +MD: net/minecraft/world/level/Explosion/m_252906_ ()Lnet/minecraft/world/entity/LivingEntity; net/minecraft/world/level/Explosion/getIndirectSourceEntity ()Lnet/minecraft/world/entity/LivingEntity; +MD: net/minecraft/world/level/Explosion/m_253049_ ()Lnet/minecraft/world/entity/Entity; net/minecraft/world/level/Explosion/getDirectSourceEntity ()Lnet/minecraft/world/entity/Entity; +MD: net/minecraft/world/level/Explosion/m_254884_ ()Z net/minecraft/world/level/Explosion/interactsWithBlocks ()Z +MD: net/minecraft/world/level/Explosion/m_46061_ ()V net/minecraft/world/level/Explosion/explode ()V +MD: net/minecraft/world/level/Explosion/m_46062_ (Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/world/level/ExplosionDamageCalculator; net/minecraft/world/level/Explosion/makeDamageCalculator (Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/world/level/ExplosionDamageCalculator; +MD: net/minecraft/world/level/Explosion/m_46064_ (Lnet/minecraft/world/phys/Vec3;Lnet/minecraft/world/entity/Entity;)F net/minecraft/world/level/Explosion/getSeenPercent (Lnet/minecraft/world/phys/Vec3;Lnet/minecraft/world/entity/Entity;)F +MD: net/minecraft/world/level/Explosion/m_46067_ (Lit/unimi/dsi/fastutil/objects/ObjectArrayList;Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/core/BlockPos;)V net/minecraft/world/level/Explosion/addBlockDrops (Lit/unimi/dsi/fastutil/objects/ObjectArrayList;Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/world/level/Explosion/m_46071_ (Lit/unimi/dsi/fastutil/objects/ObjectArrayList;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/item/ItemStack;)V net/minecraft/world/level/Explosion/lambda$finalizeExplosion$0 (Lit/unimi/dsi/fastutil/objects/ObjectArrayList;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/item/ItemStack;)V +MD: net/minecraft/world/level/Explosion/m_46075_ (Z)V net/minecraft/world/level/Explosion/finalizeExplosion (Z)V +MD: net/minecraft/world/level/Explosion/m_46077_ ()Lnet/minecraft/world/damagesource/DamageSource; net/minecraft/world/level/Explosion/getDamageSource ()Lnet/minecraft/world/damagesource/DamageSource; +MD: net/minecraft/world/level/Explosion/m_46078_ ()Ljava/util/Map; net/minecraft/world/level/Explosion/getHitPlayers ()Ljava/util/Map; +MD: net/minecraft/world/level/Explosion/m_46080_ ()V net/minecraft/world/level/Explosion/clearToBlow ()V +MD: net/minecraft/world/level/Explosion/m_46081_ ()Ljava/util/List; net/minecraft/world/level/Explosion/getToBlow ()Ljava/util/List; +MD: net/minecraft/world/level/Explosion$BlockInteraction/ ()V net/minecraft/world/level/Explosion$BlockInteraction/ ()V +MD: net/minecraft/world/level/Explosion$BlockInteraction/ (Ljava/lang/String;I)V net/minecraft/world/level/Explosion$BlockInteraction/ (Ljava/lang/String;I)V +MD: net/minecraft/world/level/Explosion$BlockInteraction/m_151477_ ()[Lnet/minecraft/world/level/Explosion$BlockInteraction; net/minecraft/world/level/Explosion$BlockInteraction/$values ()[Lnet/minecraft/world/level/Explosion$BlockInteraction; +MD: net/minecraft/world/level/Explosion$BlockInteraction/valueOf (Ljava/lang/String;)Lnet/minecraft/world/level/Explosion$BlockInteraction; net/minecraft/world/level/Explosion$BlockInteraction/valueOf (Ljava/lang/String;)Lnet/minecraft/world/level/Explosion$BlockInteraction; +MD: net/minecraft/world/level/Explosion$BlockInteraction/values ()[Lnet/minecraft/world/level/Explosion$BlockInteraction; net/minecraft/world/level/Explosion$BlockInteraction/values ()[Lnet/minecraft/world/level/Explosion$BlockInteraction; +MD: net/minecraft/world/level/ExplosionDamageCalculator/ ()V net/minecraft/world/level/ExplosionDamageCalculator/ ()V +MD: net/minecraft/world/level/ExplosionDamageCalculator/m_6617_ (Lnet/minecraft/world/level/Explosion;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/material/FluidState;)Ljava/util/Optional; net/minecraft/world/level/ExplosionDamageCalculator/getBlockExplosionResistance (Lnet/minecraft/world/level/Explosion;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/material/FluidState;)Ljava/util/Optional; +MD: net/minecraft/world/level/ExplosionDamageCalculator/m_6714_ (Lnet/minecraft/world/level/Explosion;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;F)Z net/minecraft/world/level/ExplosionDamageCalculator/shouldBlockExplode (Lnet/minecraft/world/level/Explosion;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;F)Z +MD: net/minecraft/world/level/FoliageColor/ ()V net/minecraft/world/level/FoliageColor/ ()V +MD: net/minecraft/world/level/FoliageColor/ ()V net/minecraft/world/level/FoliageColor/ ()V +MD: net/minecraft/world/level/FoliageColor/m_220346_ ()I net/minecraft/world/level/FoliageColor/getMangroveColor ()I +MD: net/minecraft/world/level/FoliageColor/m_46106_ ()I net/minecraft/world/level/FoliageColor/getEvergreenColor ()I +MD: net/minecraft/world/level/FoliageColor/m_46107_ (DD)I net/minecraft/world/level/FoliageColor/get (DD)I +MD: net/minecraft/world/level/FoliageColor/m_46110_ ([I)V net/minecraft/world/level/FoliageColor/init ([I)V +MD: net/minecraft/world/level/FoliageColor/m_46112_ ()I net/minecraft/world/level/FoliageColor/getBirchColor ()I +MD: net/minecraft/world/level/FoliageColor/m_46113_ ()I net/minecraft/world/level/FoliageColor/getDefaultColor ()I +MD: net/minecraft/world/level/ForcedChunksSavedData/ (Lit/unimi/dsi/fastutil/longs/LongSet;)V net/minecraft/world/level/ForcedChunksSavedData/ (Lit/unimi/dsi/fastutil/longs/LongSet;)V +MD: net/minecraft/world/level/ForcedChunksSavedData/ ()V net/minecraft/world/level/ForcedChunksSavedData/ ()V +MD: net/minecraft/world/level/ForcedChunksSavedData/m_151483_ (Lnet/minecraft/nbt/CompoundTag;)Lnet/minecraft/world/level/ForcedChunksSavedData; net/minecraft/world/level/ForcedChunksSavedData/load (Lnet/minecraft/nbt/CompoundTag;)Lnet/minecraft/world/level/ForcedChunksSavedData; +MD: net/minecraft/world/level/ForcedChunksSavedData/m_46116_ ()Lit/unimi/dsi/fastutil/longs/LongSet; net/minecraft/world/level/ForcedChunksSavedData/getChunks ()Lit/unimi/dsi/fastutil/longs/LongSet; +MD: net/minecraft/world/level/ForcedChunksSavedData/m_7176_ (Lnet/minecraft/nbt/CompoundTag;)Lnet/minecraft/nbt/CompoundTag; net/minecraft/world/level/ForcedChunksSavedData/save (Lnet/minecraft/nbt/CompoundTag;)Lnet/minecraft/nbt/CompoundTag; +MD: net/minecraft/world/level/GameRules/ ()V net/minecraft/world/level/GameRules/ ()V +MD: net/minecraft/world/level/GameRules/ (Lcom/mojang/serialization/DynamicLike;)V net/minecraft/world/level/GameRules/ (Lcom/mojang/serialization/DynamicLike;)V +MD: net/minecraft/world/level/GameRules/ (Ljava/util/Map;)V net/minecraft/world/level/GameRules/ (Ljava/util/Map;)V +MD: net/minecraft/world/level/GameRules/ ()V net/minecraft/world/level/GameRules/ ()V +MD: net/minecraft/world/level/GameRules/m_46163_ ()Lnet/minecraft/nbt/CompoundTag; net/minecraft/world/level/GameRules/createTag ()Lnet/minecraft/nbt/CompoundTag; +MD: net/minecraft/world/level/GameRules/m_46164_ (Lnet/minecraft/world/level/GameRules$GameRuleTypeVisitor;)V net/minecraft/world/level/GameRules/visitGameRuleTypes (Lnet/minecraft/world/level/GameRules$GameRuleTypeVisitor;)V +MD: net/minecraft/world/level/GameRules/m_46166_ (Lnet/minecraft/world/level/GameRules$GameRuleTypeVisitor;Lnet/minecraft/world/level/GameRules$Key;Lnet/minecraft/world/level/GameRules$Type;)V net/minecraft/world/level/GameRules/callVisitorCap (Lnet/minecraft/world/level/GameRules$GameRuleTypeVisitor;Lnet/minecraft/world/level/GameRules$Key;Lnet/minecraft/world/level/GameRules$Type;)V +MD: net/minecraft/world/level/GameRules/m_46170_ (Lnet/minecraft/world/level/GameRules$Key;)Lnet/minecraft/world/level/GameRules$Value; net/minecraft/world/level/GameRules/getRule (Lnet/minecraft/world/level/GameRules$Key;)Lnet/minecraft/world/level/GameRules$Value; +MD: net/minecraft/world/level/GameRules/m_46172_ (Lnet/minecraft/world/level/GameRules$Key;Lnet/minecraft/world/level/GameRules;Lnet/minecraft/server/MinecraftServer;)V net/minecraft/world/level/GameRules/assignCap (Lnet/minecraft/world/level/GameRules$Key;Lnet/minecraft/world/level/GameRules;Lnet/minecraft/server/MinecraftServer;)V +MD: net/minecraft/world/level/GameRules/m_46176_ (Lnet/minecraft/world/level/GameRules;Lnet/minecraft/server/MinecraftServer;)V net/minecraft/world/level/GameRules/assignFrom (Lnet/minecraft/world/level/GameRules;Lnet/minecraft/server/MinecraftServer;)V +MD: net/minecraft/world/level/GameRules/m_46179_ (Lnet/minecraft/world/level/GameRules;Lnet/minecraft/server/MinecraftServer;Lnet/minecraft/world/level/GameRules$Key;)V net/minecraft/world/level/GameRules/lambda$assignFrom$8 (Lnet/minecraft/world/level/GameRules;Lnet/minecraft/server/MinecraftServer;Lnet/minecraft/world/level/GameRules$Key;)V +MD: net/minecraft/world/level/GameRules/m_46183_ (Lcom/mojang/serialization/DynamicLike;)V net/minecraft/world/level/GameRules/loadFromTag (Lcom/mojang/serialization/DynamicLike;)V +MD: net/minecraft/world/level/GameRules/m_46185_ (Lcom/mojang/serialization/DynamicLike;Lnet/minecraft/world/level/GameRules$Key;Lnet/minecraft/world/level/GameRules$Value;)V net/minecraft/world/level/GameRules/lambda$loadFromTag$5 (Lcom/mojang/serialization/DynamicLike;Lnet/minecraft/world/level/GameRules$Key;Lnet/minecraft/world/level/GameRules$Value;)V +MD: net/minecraft/world/level/GameRules/m_46189_ (Ljava/lang/String;Lnet/minecraft/world/level/GameRules$Category;Lnet/minecraft/world/level/GameRules$Type;)Lnet/minecraft/world/level/GameRules$Key; net/minecraft/world/level/GameRules/register (Ljava/lang/String;Lnet/minecraft/world/level/GameRules$Category;Lnet/minecraft/world/level/GameRules$Type;)Lnet/minecraft/world/level/GameRules$Key; +MD: net/minecraft/world/level/GameRules/m_46193_ (Ljava/util/Map$Entry;)Lnet/minecraft/world/level/GameRules$Value; net/minecraft/world/level/GameRules/lambda$copy$6 (Ljava/util/Map$Entry;)Lnet/minecraft/world/level/GameRules$Value; +MD: net/minecraft/world/level/GameRules/m_46195_ (Lnet/minecraft/nbt/CompoundTag;Lnet/minecraft/world/level/GameRules$Key;Lnet/minecraft/world/level/GameRules$Value;)V net/minecraft/world/level/GameRules/lambda$createTag$4 (Lnet/minecraft/nbt/CompoundTag;Lnet/minecraft/world/level/GameRules$Key;Lnet/minecraft/world/level/GameRules$Value;)V +MD: net/minecraft/world/level/GameRules/m_46199_ (Lnet/minecraft/server/MinecraftServer;Lnet/minecraft/world/level/GameRules$BooleanValue;)V net/minecraft/world/level/GameRules/lambda$static$2 (Lnet/minecraft/server/MinecraftServer;Lnet/minecraft/world/level/GameRules$BooleanValue;)V +MD: net/minecraft/world/level/GameRules/m_46202_ ()Lnet/minecraft/world/level/GameRules; net/minecraft/world/level/GameRules/copy ()Lnet/minecraft/world/level/GameRules; +MD: net/minecraft/world/level/GameRules/m_46203_ (Lnet/minecraft/world/level/GameRules$GameRuleTypeVisitor;Lnet/minecraft/world/level/GameRules$Key;Lnet/minecraft/world/level/GameRules$Type;)V net/minecraft/world/level/GameRules/lambda$visitGameRuleTypes$7 (Lnet/minecraft/world/level/GameRules$GameRuleTypeVisitor;Lnet/minecraft/world/level/GameRules$Key;Lnet/minecraft/world/level/GameRules$Type;)V +MD: net/minecraft/world/level/GameRules/m_46207_ (Lnet/minecraft/world/level/GameRules$Key;)Z net/minecraft/world/level/GameRules/getBoolean (Lnet/minecraft/world/level/GameRules$Key;)Z +MD: net/minecraft/world/level/GameRules/m_46209_ (Ljava/util/Map$Entry;)Lnet/minecraft/world/level/GameRules$Value; net/minecraft/world/level/GameRules/lambda$new$3 (Ljava/util/Map$Entry;)Lnet/minecraft/world/level/GameRules$Value; +MD: net/minecraft/world/level/GameRules/m_46211_ (Lnet/minecraft/server/MinecraftServer;Lnet/minecraft/world/level/GameRules$BooleanValue;)V net/minecraft/world/level/GameRules/lambda$static$1 (Lnet/minecraft/server/MinecraftServer;Lnet/minecraft/world/level/GameRules$BooleanValue;)V +MD: net/minecraft/world/level/GameRules/m_46215_ (Lnet/minecraft/world/level/GameRules$Key;)I net/minecraft/world/level/GameRules/getInt (Lnet/minecraft/world/level/GameRules$Key;)I +MD: net/minecraft/world/level/GameRules/m_46217_ (Lnet/minecraft/world/level/GameRules$Key;)Ljava/lang/String; net/minecraft/world/level/GameRules/lambda$static$0 (Lnet/minecraft/world/level/GameRules$Key;)Ljava/lang/String; +MD: net/minecraft/world/level/GameRules$BooleanValue/ (Lnet/minecraft/world/level/GameRules$Type;Z)V net/minecraft/world/level/GameRules$BooleanValue/ (Lnet/minecraft/world/level/GameRules$Type;Z)V +MD: net/minecraft/world/level/GameRules$BooleanValue/m_46223_ ()Z net/minecraft/world/level/GameRules$BooleanValue/get ()Z +MD: net/minecraft/world/level/GameRules$BooleanValue/m_46235_ (Lnet/minecraft/server/MinecraftServer;Lnet/minecraft/world/level/GameRules$BooleanValue;)V net/minecraft/world/level/GameRules$BooleanValue/lambda$create$1 (Lnet/minecraft/server/MinecraftServer;Lnet/minecraft/world/level/GameRules$BooleanValue;)V +MD: net/minecraft/world/level/GameRules$BooleanValue/m_46240_ (ZLnet/minecraft/world/level/GameRules$Type;)Lnet/minecraft/world/level/GameRules$BooleanValue; net/minecraft/world/level/GameRules$BooleanValue/lambda$create$0 (ZLnet/minecraft/world/level/GameRules$Type;)Lnet/minecraft/world/level/GameRules$BooleanValue; +MD: net/minecraft/world/level/GameRules$BooleanValue/m_46246_ (ZLnet/minecraft/server/MinecraftServer;)V net/minecraft/world/level/GameRules$BooleanValue/set (ZLnet/minecraft/server/MinecraftServer;)V +MD: net/minecraft/world/level/GameRules$BooleanValue/m_46250_ (Z)Lnet/minecraft/world/level/GameRules$Type; net/minecraft/world/level/GameRules$BooleanValue/create (Z)Lnet/minecraft/world/level/GameRules$Type; +MD: net/minecraft/world/level/GameRules$BooleanValue/m_46252_ (ZLjava/util/function/BiConsumer;)Lnet/minecraft/world/level/GameRules$Type; net/minecraft/world/level/GameRules$BooleanValue/create (ZLjava/util/function/BiConsumer;)Lnet/minecraft/world/level/GameRules$Type; +MD: net/minecraft/world/level/GameRules$BooleanValue/m_5528_ (Lcom/mojang/brigadier/context/CommandContext;Ljava/lang/String;)V net/minecraft/world/level/GameRules$BooleanValue/updateFromArgument (Lcom/mojang/brigadier/context/CommandContext;Ljava/lang/String;)V +MD: net/minecraft/world/level/GameRules$BooleanValue/m_5589_ ()Lnet/minecraft/world/level/GameRules$BooleanValue; net/minecraft/world/level/GameRules$BooleanValue/getSelf ()Lnet/minecraft/world/level/GameRules$BooleanValue; +MD: net/minecraft/world/level/GameRules$BooleanValue/m_5589_ ()Lnet/minecraft/world/level/GameRules$Value; net/minecraft/world/level/GameRules$BooleanValue/getSelf ()Lnet/minecraft/world/level/GameRules$Value; +MD: net/minecraft/world/level/GameRules$BooleanValue/m_5590_ ()Lnet/minecraft/world/level/GameRules$Value; net/minecraft/world/level/GameRules$BooleanValue/copy ()Lnet/minecraft/world/level/GameRules$Value; +MD: net/minecraft/world/level/GameRules$BooleanValue/m_5590_ ()Lnet/minecraft/world/level/GameRules$BooleanValue; net/minecraft/world/level/GameRules$BooleanValue/copy ()Lnet/minecraft/world/level/GameRules$BooleanValue; +MD: net/minecraft/world/level/GameRules$BooleanValue/m_5614_ (Lnet/minecraft/world/level/GameRules$Value;Lnet/minecraft/server/MinecraftServer;)V net/minecraft/world/level/GameRules$BooleanValue/setFrom (Lnet/minecraft/world/level/GameRules$Value;Lnet/minecraft/server/MinecraftServer;)V +MD: net/minecraft/world/level/GameRules$BooleanValue/m_5614_ (Lnet/minecraft/world/level/GameRules$BooleanValue;Lnet/minecraft/server/MinecraftServer;)V net/minecraft/world/level/GameRules$BooleanValue/setFrom (Lnet/minecraft/world/level/GameRules$BooleanValue;Lnet/minecraft/server/MinecraftServer;)V +MD: net/minecraft/world/level/GameRules$BooleanValue/m_5831_ ()Ljava/lang/String; net/minecraft/world/level/GameRules$BooleanValue/serialize ()Ljava/lang/String; +MD: net/minecraft/world/level/GameRules$BooleanValue/m_6855_ ()I net/minecraft/world/level/GameRules$BooleanValue/getCommandResult ()I +MD: net/minecraft/world/level/GameRules$BooleanValue/m_7377_ (Ljava/lang/String;)V net/minecraft/world/level/GameRules$BooleanValue/deserialize (Ljava/lang/String;)V +MD: net/minecraft/world/level/GameRules$Category/ ()V net/minecraft/world/level/GameRules$Category/ ()V +MD: net/minecraft/world/level/GameRules$Category/ (Ljava/lang/String;ILjava/lang/String;)V net/minecraft/world/level/GameRules$Category/ (Ljava/lang/String;ILjava/lang/String;)V +MD: net/minecraft/world/level/GameRules$Category/m_151488_ ()[Lnet/minecraft/world/level/GameRules$Category; net/minecraft/world/level/GameRules$Category/$values ()[Lnet/minecraft/world/level/GameRules$Category; +MD: net/minecraft/world/level/GameRules$Category/m_46274_ ()Ljava/lang/String; net/minecraft/world/level/GameRules$Category/getDescriptionId ()Ljava/lang/String; +MD: net/minecraft/world/level/GameRules$Category/valueOf (Ljava/lang/String;)Lnet/minecraft/world/level/GameRules$Category; net/minecraft/world/level/GameRules$Category/valueOf (Ljava/lang/String;)Lnet/minecraft/world/level/GameRules$Category; +MD: net/minecraft/world/level/GameRules$Category/values ()[Lnet/minecraft/world/level/GameRules$Category; net/minecraft/world/level/GameRules$Category/values ()[Lnet/minecraft/world/level/GameRules$Category; +MD: net/minecraft/world/level/GameRules$GameRuleTypeVisitor/m_6889_ (Lnet/minecraft/world/level/GameRules$Key;Lnet/minecraft/world/level/GameRules$Type;)V net/minecraft/world/level/GameRules$GameRuleTypeVisitor/visit (Lnet/minecraft/world/level/GameRules$Key;Lnet/minecraft/world/level/GameRules$Type;)V +MD: net/minecraft/world/level/GameRules$GameRuleTypeVisitor/m_6891_ (Lnet/minecraft/world/level/GameRules$Key;Lnet/minecraft/world/level/GameRules$Type;)V net/minecraft/world/level/GameRules$GameRuleTypeVisitor/visitBoolean (Lnet/minecraft/world/level/GameRules$Key;Lnet/minecraft/world/level/GameRules$Type;)V +MD: net/minecraft/world/level/GameRules$GameRuleTypeVisitor/m_6894_ (Lnet/minecraft/world/level/GameRules$Key;Lnet/minecraft/world/level/GameRules$Type;)V net/minecraft/world/level/GameRules$GameRuleTypeVisitor/visitInteger (Lnet/minecraft/world/level/GameRules$Key;Lnet/minecraft/world/level/GameRules$Type;)V +MD: net/minecraft/world/level/GameRules$IntegerValue/ (Lnet/minecraft/world/level/GameRules$Type;I)V net/minecraft/world/level/GameRules$IntegerValue/ (Lnet/minecraft/world/level/GameRules$Type;I)V +MD: net/minecraft/world/level/GameRules$IntegerValue/m_151489_ (ILnet/minecraft/server/MinecraftServer;)V net/minecraft/world/level/GameRules$IntegerValue/set (ILnet/minecraft/server/MinecraftServer;)V +MD: net/minecraft/world/level/GameRules$IntegerValue/m_46288_ ()I net/minecraft/world/level/GameRules$IntegerValue/get ()I +MD: net/minecraft/world/level/GameRules$IntegerValue/m_46291_ (ILnet/minecraft/world/level/GameRules$Type;)Lnet/minecraft/world/level/GameRules$IntegerValue; net/minecraft/world/level/GameRules$IntegerValue/lambda$create$0 (ILnet/minecraft/world/level/GameRules$Type;)Lnet/minecraft/world/level/GameRules$IntegerValue; +MD: net/minecraft/world/level/GameRules$IntegerValue/m_46294_ (ILjava/util/function/BiConsumer;)Lnet/minecraft/world/level/GameRules$Type; net/minecraft/world/level/GameRules$IntegerValue/create (ILjava/util/function/BiConsumer;)Lnet/minecraft/world/level/GameRules$Type; +MD: net/minecraft/world/level/GameRules$IntegerValue/m_46308_ (Lnet/minecraft/server/MinecraftServer;Lnet/minecraft/world/level/GameRules$IntegerValue;)V net/minecraft/world/level/GameRules$IntegerValue/lambda$create$1 (Lnet/minecraft/server/MinecraftServer;Lnet/minecraft/world/level/GameRules$IntegerValue;)V +MD: net/minecraft/world/level/GameRules$IntegerValue/m_46312_ (I)Lnet/minecraft/world/level/GameRules$Type; net/minecraft/world/level/GameRules$IntegerValue/create (I)Lnet/minecraft/world/level/GameRules$Type; +MD: net/minecraft/world/level/GameRules$IntegerValue/m_46314_ (Ljava/lang/String;)Z net/minecraft/world/level/GameRules$IntegerValue/tryDeserialize (Ljava/lang/String;)Z +MD: net/minecraft/world/level/GameRules$IntegerValue/m_46317_ (Ljava/lang/String;)I net/minecraft/world/level/GameRules$IntegerValue/safeParse (Ljava/lang/String;)I +MD: net/minecraft/world/level/GameRules$IntegerValue/m_5528_ (Lcom/mojang/brigadier/context/CommandContext;Ljava/lang/String;)V net/minecraft/world/level/GameRules$IntegerValue/updateFromArgument (Lcom/mojang/brigadier/context/CommandContext;Ljava/lang/String;)V +MD: net/minecraft/world/level/GameRules$IntegerValue/m_5589_ ()Lnet/minecraft/world/level/GameRules$IntegerValue; net/minecraft/world/level/GameRules$IntegerValue/getSelf ()Lnet/minecraft/world/level/GameRules$IntegerValue; +MD: net/minecraft/world/level/GameRules$IntegerValue/m_5589_ ()Lnet/minecraft/world/level/GameRules$Value; net/minecraft/world/level/GameRules$IntegerValue/getSelf ()Lnet/minecraft/world/level/GameRules$Value; +MD: net/minecraft/world/level/GameRules$IntegerValue/m_5590_ ()Lnet/minecraft/world/level/GameRules$Value; net/minecraft/world/level/GameRules$IntegerValue/copy ()Lnet/minecraft/world/level/GameRules$Value; +MD: net/minecraft/world/level/GameRules$IntegerValue/m_5590_ ()Lnet/minecraft/world/level/GameRules$IntegerValue; net/minecraft/world/level/GameRules$IntegerValue/copy ()Lnet/minecraft/world/level/GameRules$IntegerValue; +MD: net/minecraft/world/level/GameRules$IntegerValue/m_5614_ (Lnet/minecraft/world/level/GameRules$Value;Lnet/minecraft/server/MinecraftServer;)V net/minecraft/world/level/GameRules$IntegerValue/setFrom (Lnet/minecraft/world/level/GameRules$Value;Lnet/minecraft/server/MinecraftServer;)V +MD: net/minecraft/world/level/GameRules$IntegerValue/m_5614_ (Lnet/minecraft/world/level/GameRules$IntegerValue;Lnet/minecraft/server/MinecraftServer;)V net/minecraft/world/level/GameRules$IntegerValue/setFrom (Lnet/minecraft/world/level/GameRules$IntegerValue;Lnet/minecraft/server/MinecraftServer;)V +MD: net/minecraft/world/level/GameRules$IntegerValue/m_5831_ ()Ljava/lang/String; net/minecraft/world/level/GameRules$IntegerValue/serialize ()Ljava/lang/String; +MD: net/minecraft/world/level/GameRules$IntegerValue/m_6855_ ()I net/minecraft/world/level/GameRules$IntegerValue/getCommandResult ()I +MD: net/minecraft/world/level/GameRules$IntegerValue/m_7377_ (Ljava/lang/String;)V net/minecraft/world/level/GameRules$IntegerValue/deserialize (Ljava/lang/String;)V +MD: net/minecraft/world/level/GameRules$Key/ (Ljava/lang/String;Lnet/minecraft/world/level/GameRules$Category;)V net/minecraft/world/level/GameRules$Key/ (Ljava/lang/String;Lnet/minecraft/world/level/GameRules$Category;)V +MD: net/minecraft/world/level/GameRules$Key/equals (Ljava/lang/Object;)Z net/minecraft/world/level/GameRules$Key/equals (Ljava/lang/Object;)Z +MD: net/minecraft/world/level/GameRules$Key/hashCode ()I net/minecraft/world/level/GameRules$Key/hashCode ()I +MD: net/minecraft/world/level/GameRules$Key/m_46328_ ()Ljava/lang/String; net/minecraft/world/level/GameRules$Key/getId ()Ljava/lang/String; +MD: net/minecraft/world/level/GameRules$Key/m_46331_ ()Ljava/lang/String; net/minecraft/world/level/GameRules$Key/getDescriptionId ()Ljava/lang/String; +MD: net/minecraft/world/level/GameRules$Key/m_46332_ ()Lnet/minecraft/world/level/GameRules$Category; net/minecraft/world/level/GameRules$Key/getCategory ()Lnet/minecraft/world/level/GameRules$Category; +MD: net/minecraft/world/level/GameRules$Key/toString ()Ljava/lang/String; net/minecraft/world/level/GameRules$Key/toString ()Ljava/lang/String; +MD: net/minecraft/world/level/GameRules$Type/ (Ljava/util/function/Supplier;Ljava/util/function/Function;Ljava/util/function/BiConsumer;Lnet/minecraft/world/level/GameRules$VisitorCaller;)V net/minecraft/world/level/GameRules$Type/ (Ljava/util/function/Supplier;Ljava/util/function/Function;Ljava/util/function/BiConsumer;Lnet/minecraft/world/level/GameRules$VisitorCaller;)V +MD: net/minecraft/world/level/GameRules$Type/m_46352_ ()Lnet/minecraft/world/level/GameRules$Value; net/minecraft/world/level/GameRules$Type/createRule ()Lnet/minecraft/world/level/GameRules$Value; +MD: net/minecraft/world/level/GameRules$Type/m_46353_ (Lnet/minecraft/world/level/GameRules$GameRuleTypeVisitor;Lnet/minecraft/world/level/GameRules$Key;)V net/minecraft/world/level/GameRules$Type/callVisitor (Lnet/minecraft/world/level/GameRules$GameRuleTypeVisitor;Lnet/minecraft/world/level/GameRules$Key;)V +MD: net/minecraft/world/level/GameRules$Type/m_46358_ (Ljava/lang/String;)Lcom/mojang/brigadier/builder/RequiredArgumentBuilder; net/minecraft/world/level/GameRules$Type/createArgument (Ljava/lang/String;)Lcom/mojang/brigadier/builder/RequiredArgumentBuilder; +MD: net/minecraft/world/level/GameRules$Value/ (Lnet/minecraft/world/level/GameRules$Type;)V net/minecraft/world/level/GameRules$Value/ (Lnet/minecraft/world/level/GameRules$Type;)V +MD: net/minecraft/world/level/GameRules$Value/m_46368_ (Lnet/minecraft/server/MinecraftServer;)V net/minecraft/world/level/GameRules$Value/onChanged (Lnet/minecraft/server/MinecraftServer;)V +MD: net/minecraft/world/level/GameRules$Value/m_46370_ (Lcom/mojang/brigadier/context/CommandContext;Ljava/lang/String;)V net/minecraft/world/level/GameRules$Value/setFromArgument (Lcom/mojang/brigadier/context/CommandContext;Ljava/lang/String;)V +MD: net/minecraft/world/level/GameRules$Value/m_5528_ (Lcom/mojang/brigadier/context/CommandContext;Ljava/lang/String;)V net/minecraft/world/level/GameRules$Value/updateFromArgument (Lcom/mojang/brigadier/context/CommandContext;Ljava/lang/String;)V +MD: net/minecraft/world/level/GameRules$Value/m_5589_ ()Lnet/minecraft/world/level/GameRules$Value; net/minecraft/world/level/GameRules$Value/getSelf ()Lnet/minecraft/world/level/GameRules$Value; +MD: net/minecraft/world/level/GameRules$Value/m_5590_ ()Lnet/minecraft/world/level/GameRules$Value; net/minecraft/world/level/GameRules$Value/copy ()Lnet/minecraft/world/level/GameRules$Value; +MD: net/minecraft/world/level/GameRules$Value/m_5614_ (Lnet/minecraft/world/level/GameRules$Value;Lnet/minecraft/server/MinecraftServer;)V net/minecraft/world/level/GameRules$Value/setFrom (Lnet/minecraft/world/level/GameRules$Value;Lnet/minecraft/server/MinecraftServer;)V +MD: net/minecraft/world/level/GameRules$Value/m_5831_ ()Ljava/lang/String; net/minecraft/world/level/GameRules$Value/serialize ()Ljava/lang/String; +MD: net/minecraft/world/level/GameRules$Value/m_6855_ ()I net/minecraft/world/level/GameRules$Value/getCommandResult ()I +MD: net/minecraft/world/level/GameRules$Value/m_7377_ (Ljava/lang/String;)V net/minecraft/world/level/GameRules$Value/deserialize (Ljava/lang/String;)V +MD: net/minecraft/world/level/GameRules$Value/toString ()Ljava/lang/String; net/minecraft/world/level/GameRules$Value/toString ()Ljava/lang/String; +MD: net/minecraft/world/level/GameRules$VisitorCaller/m_46374_ (Lnet/minecraft/world/level/GameRules$GameRuleTypeVisitor;Lnet/minecraft/world/level/GameRules$Key;Lnet/minecraft/world/level/GameRules$Type;)V net/minecraft/world/level/GameRules$VisitorCaller/call (Lnet/minecraft/world/level/GameRules$GameRuleTypeVisitor;Lnet/minecraft/world/level/GameRules$Key;Lnet/minecraft/world/level/GameRules$Type;)V +MD: net/minecraft/world/level/GameType/ ()V net/minecraft/world/level/GameType/ ()V +MD: net/minecraft/world/level/GameType/ (Ljava/lang/String;IILjava/lang/String;)V net/minecraft/world/level/GameType/ (Ljava/lang/String;IILjava/lang/String;)V +MD: net/minecraft/world/level/GameType/m_151495_ (Lnet/minecraft/world/level/GameType;)I net/minecraft/world/level/GameType/getNullableId (Lnet/minecraft/world/level/GameType;)I +MD: net/minecraft/world/level/GameType/m_151497_ (I)Lnet/minecraft/world/level/GameType; net/minecraft/world/level/GameType/byNullableId (I)Lnet/minecraft/world/level/GameType; +MD: net/minecraft/world/level/GameType/m_151499_ ()Lnet/minecraft/network/chat/Component; net/minecraft/world/level/GameType/getLongDisplayName ()Lnet/minecraft/network/chat/Component; +MD: net/minecraft/world/level/GameType/m_151500_ ()Lnet/minecraft/network/chat/Component; net/minecraft/world/level/GameType/getShortDisplayName ()Lnet/minecraft/network/chat/Component; +MD: net/minecraft/world/level/GameType/m_151501_ ()[Lnet/minecraft/world/level/GameType; net/minecraft/world/level/GameType/$values ()[Lnet/minecraft/world/level/GameType; +MD: net/minecraft/world/level/GameType/m_46392_ ()I net/minecraft/world/level/GameType/getId ()I +MD: net/minecraft/world/level/GameType/m_46393_ (I)Lnet/minecraft/world/level/GameType; net/minecraft/world/level/GameType/byId (I)Lnet/minecraft/world/level/GameType; +MD: net/minecraft/world/level/GameType/m_46398_ (Lnet/minecraft/world/entity/player/Abilities;)V net/minecraft/world/level/GameType/updatePlayerAbilities (Lnet/minecraft/world/entity/player/Abilities;)V +MD: net/minecraft/world/level/GameType/m_46400_ (Ljava/lang/String;)Lnet/minecraft/world/level/GameType; net/minecraft/world/level/GameType/byName (Ljava/lang/String;)Lnet/minecraft/world/level/GameType; +MD: net/minecraft/world/level/GameType/m_46402_ (Ljava/lang/String;Lnet/minecraft/world/level/GameType;)Lnet/minecraft/world/level/GameType; net/minecraft/world/level/GameType/byName (Ljava/lang/String;Lnet/minecraft/world/level/GameType;)Lnet/minecraft/world/level/GameType; +MD: net/minecraft/world/level/GameType/m_46405_ ()Ljava/lang/String; net/minecraft/world/level/GameType/getName ()Ljava/lang/String; +MD: net/minecraft/world/level/GameType/m_46407_ ()Z net/minecraft/world/level/GameType/isBlockPlacingRestricted ()Z +MD: net/minecraft/world/level/GameType/m_46408_ ()Z net/minecraft/world/level/GameType/isCreative ()Z +MD: net/minecraft/world/level/GameType/m_46409_ ()Z net/minecraft/world/level/GameType/isSurvival ()Z +MD: net/minecraft/world/level/GameType/m_7912_ ()Ljava/lang/String; net/minecraft/world/level/GameType/getSerializedName ()Ljava/lang/String; +MD: net/minecraft/world/level/GameType/valueOf (Ljava/lang/String;)Lnet/minecraft/world/level/GameType; net/minecraft/world/level/GameType/valueOf (Ljava/lang/String;)Lnet/minecraft/world/level/GameType; +MD: net/minecraft/world/level/GameType/values ()[Lnet/minecraft/world/level/GameType; net/minecraft/world/level/GameType/values ()[Lnet/minecraft/world/level/GameType; +MD: net/minecraft/world/level/GrassColor/ ()V net/minecraft/world/level/GrassColor/ ()V +MD: net/minecraft/world/level/GrassColor/ ()V net/minecraft/world/level/GrassColor/ ()V +MD: net/minecraft/world/level/GrassColor/m_276205_ ()I net/minecraft/world/level/GrassColor/getDefaultColor ()I +MD: net/minecraft/world/level/GrassColor/m_46415_ (DD)I net/minecraft/world/level/GrassColor/get (DD)I +MD: net/minecraft/world/level/GrassColor/m_46418_ ([I)V net/minecraft/world/level/GrassColor/init ([I)V +MD: net/minecraft/world/level/ItemLike/m_5456_ ()Lnet/minecraft/world/item/Item; net/minecraft/world/level/ItemLike/asItem ()Lnet/minecraft/world/item/Item; +MD: net/minecraft/world/level/Level/ ()V net/minecraft/world/level/Level/ ()V +MD: net/minecraft/world/level/Level/ (Lnet/minecraft/world/level/storage/WritableLevelData;Lnet/minecraft/resources/ResourceKey;Lnet/minecraft/core/RegistryAccess;Lnet/minecraft/core/Holder;Ljava/util/function/Supplier;ZZJI)V net/minecraft/world/level/Level/ (Lnet/minecraft/world/level/storage/WritableLevelData;Lnet/minecraft/resources/ResourceKey;Lnet/minecraft/core/RegistryAccess;Lnet/minecraft/core/Holder;Ljava/util/function/Supplier;ZZJI)V +MD: net/minecraft/world/level/Level/close ()V net/minecraft/world/level/Level/close ()V +MD: net/minecraft/world/level/Level/m_142052_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V net/minecraft/world/level/Level/addDestroyBlockEffect (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V +MD: net/minecraft/world/level/Level/m_142325_ (Ljava/lang/String;Lnet/minecraft/world/level/saveddata/maps/MapItemSavedData;)V net/minecraft/world/level/Level/setMapData (Ljava/lang/String;Lnet/minecraft/world/level/saveddata/maps/MapItemSavedData;)V +MD: net/minecraft/world/level/Level/m_142425_ (Lnet/minecraft/world/level/entity/EntityTypeTest;Lnet/minecraft/world/phys/AABB;Ljava/util/function/Predicate;)Ljava/util/List; net/minecraft/world/level/Level/getEntities (Lnet/minecraft/world/level/entity/EntityTypeTest;Lnet/minecraft/world/phys/AABB;Ljava/util/function/Predicate;)Ljava/util/List; +MD: net/minecraft/world/level/Level/m_142433_ (Lnet/minecraft/core/BlockPos;Ljava/util/function/Predicate;)Z net/minecraft/world/level/Level/isFluidAtPosition (Lnet/minecraft/core/BlockPos;Ljava/util/function/Predicate;)Z +MD: net/minecraft/world/level/Level/m_142646_ ()Lnet/minecraft/world/level/entity/LevelEntityGetter; net/minecraft/world/level/Level/getEntities ()Lnet/minecraft/world/level/entity/LevelEntityGetter; +MD: net/minecraft/world/level/Level/m_151518_ (Lnet/minecraft/world/entity/Entity;Ljava/util/function/Predicate;Ljava/util/List;Lnet/minecraft/world/entity/Entity;)V net/minecraft/world/level/Level/lambda$getEntities$1 (Lnet/minecraft/world/entity/Entity;Ljava/util/function/Predicate;Ljava/util/List;Lnet/minecraft/world/entity/Entity;)V +MD: net/minecraft/world/level/Level/m_151523_ (Lnet/minecraft/world/level/block/entity/BlockEntity;)V net/minecraft/world/level/Level/setBlockEntity (Lnet/minecraft/world/level/block/entity/BlockEntity;)V +MD: net/minecraft/world/level/Level/m_151525_ (Lnet/minecraft/world/level/block/entity/TickingBlockEntity;)V net/minecraft/world/level/Level/addBlockEntityTicker (Lnet/minecraft/world/level/block/entity/TickingBlockEntity;)V +MD: net/minecraft/world/level/Level/m_151543_ (Lnet/minecraft/core/BlockPos;)V net/minecraft/world/level/Level/blockEntityChanged (Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/world/level/Level/m_183438_ (J)Z net/minecraft/world/level/Level/shouldTickBlocksAt (J)Z +MD: net/minecraft/world/level/Level/m_183596_ ()J net/minecraft/world/level/Level/nextSubTickCount ()J +MD: net/minecraft/world/level/Level/m_183599_ (Lnet/minecraft/world/entity/Entity;)Z net/minecraft/world/level/Level/shouldTickDeath (Lnet/minecraft/world/entity/Entity;)Z +MD: net/minecraft/world/level/Level/m_204156_ ()Lnet/minecraft/core/Holder; net/minecraft/world/level/Level/dimensionTypeRegistration ()Lnet/minecraft/core/Holder; +MD: net/minecraft/world/level/Level/m_213683_ (Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;II)V net/minecraft/world/level/Level/neighborShapeChanged (Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;II)V +MD: net/minecraft/world/level/Level/m_213780_ ()Lnet/minecraft/util/RandomSource; net/minecraft/world/level/Level/getRandom ()Lnet/minecraft/util/RandomSource; +MD: net/minecraft/world/level/Level/m_213890_ (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/entity/Entity;Lnet/minecraft/core/Holder;Lnet/minecraft/sounds/SoundSource;FFJ)V net/minecraft/world/level/Level/playSeededSound (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/entity/Entity;Lnet/minecraft/core/Holder;Lnet/minecraft/sounds/SoundSource;FFJ)V +MD: net/minecraft/world/level/Level/m_213960_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/Block;Lnet/minecraft/core/BlockPos;Z)V net/minecraft/world/level/Level/neighborChanged (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/Block;Lnet/minecraft/core/BlockPos;Z)V +MD: net/minecraft/world/level/Level/m_214150_ (Lnet/minecraft/world/entity/player/Player;DDDLnet/minecraft/sounds/SoundEvent;Lnet/minecraft/sounds/SoundSource;FFJ)V net/minecraft/world/level/Level/playSeededSound (Lnet/minecraft/world/entity/player/Player;DDDLnet/minecraft/sounds/SoundEvent;Lnet/minecraft/sounds/SoundSource;FFJ)V +MD: net/minecraft/world/level/Level/m_220360_ ()Lnet/minecraft/core/BlockPos; net/minecraft/world/level/Level/getSharedSpawnPos ()Lnet/minecraft/core/BlockPos; +MD: net/minecraft/world/level/Level/m_220361_ ()F net/minecraft/world/level/Level/getSharedSpawnAngle ()F +MD: net/minecraft/world/level/Level/m_220362_ ()Lnet/minecraft/resources/ResourceKey; net/minecraft/world/level/Level/dimensionTypeId ()Lnet/minecraft/resources/ResourceKey; +MD: net/minecraft/world/level/Level/m_220391_ (Lnet/minecraft/core/Holder;)Ljava/lang/IllegalArgumentException; net/minecraft/world/level/Level/lambda$new$0 (Lnet/minecraft/core/Holder;)Ljava/lang/IllegalArgumentException; +MD: net/minecraft/world/level/Level/m_220393_ (Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/level/Level/shouldTickBlocksAt (Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/level/Level/m_245747_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/sounds/SoundEvent;Lnet/minecraft/sounds/SoundSource;FFZ)V net/minecraft/world/level/Level/playLocalSound (Lnet/minecraft/core/BlockPos;Lnet/minecraft/sounds/SoundEvent;Lnet/minecraft/sounds/SoundSource;FFZ)V +MD: net/minecraft/world/level/Level/m_245803_ (Lnet/minecraft/world/entity/Entity;Lnet/minecraft/core/BlockPos;Lnet/minecraft/sounds/SoundEvent;Lnet/minecraft/sounds/SoundSource;FF)V net/minecraft/world/level/Level/playSound (Lnet/minecraft/world/entity/Entity;Lnet/minecraft/core/BlockPos;Lnet/minecraft/sounds/SoundEvent;Lnet/minecraft/sounds/SoundSource;FF)V +MD: net/minecraft/world/level/Level/m_254849_ (Lnet/minecraft/world/entity/Entity;DDDFLnet/minecraft/world/level/Level$ExplosionInteraction;)Lnet/minecraft/world/level/Explosion; net/minecraft/world/level/Level/explode (Lnet/minecraft/world/entity/Entity;DDDFLnet/minecraft/world/level/Level$ExplosionInteraction;)Lnet/minecraft/world/level/Explosion; +MD: net/minecraft/world/level/Level/m_254877_ (Lnet/minecraft/world/entity/Entity;Lnet/minecraft/world/damagesource/DamageSource;Lnet/minecraft/world/level/ExplosionDamageCalculator;DDDFZLnet/minecraft/world/level/Level$ExplosionInteraction;)Lnet/minecraft/world/level/Explosion; net/minecraft/world/level/Level/explode (Lnet/minecraft/world/entity/Entity;Lnet/minecraft/world/damagesource/DamageSource;Lnet/minecraft/world/level/ExplosionDamageCalculator;DDDFZLnet/minecraft/world/level/Level$ExplosionInteraction;)Lnet/minecraft/world/level/Explosion; +MD: net/minecraft/world/level/Level/m_254951_ (Lnet/minecraft/world/entity/Entity;Lnet/minecraft/world/damagesource/DamageSource;Lnet/minecraft/world/level/ExplosionDamageCalculator;Lnet/minecraft/world/phys/Vec3;FZLnet/minecraft/world/level/Level$ExplosionInteraction;)Lnet/minecraft/world/level/Explosion; net/minecraft/world/level/Level/explode (Lnet/minecraft/world/entity/Entity;Lnet/minecraft/world/damagesource/DamageSource;Lnet/minecraft/world/level/ExplosionDamageCalculator;Lnet/minecraft/world/phys/Vec3;FZLnet/minecraft/world/level/Level$ExplosionInteraction;)Lnet/minecraft/world/level/Explosion; +MD: net/minecraft/world/level/Level/m_255157_ (Lnet/minecraft/world/level/GameRules$Key;)Lnet/minecraft/world/level/Explosion$BlockInteraction; net/minecraft/world/level/Level/getDestroyType (Lnet/minecraft/world/level/GameRules$Key;)Lnet/minecraft/world/level/Explosion$BlockInteraction; +MD: net/minecraft/world/level/Level/m_255278_ (Lnet/minecraft/world/entity/Entity;Lnet/minecraft/world/damagesource/DamageSource;Lnet/minecraft/world/level/ExplosionDamageCalculator;DDDFZLnet/minecraft/world/level/Level$ExplosionInteraction;Z)Lnet/minecraft/world/level/Explosion; net/minecraft/world/level/Level/explode (Lnet/minecraft/world/entity/Entity;Lnet/minecraft/world/damagesource/DamageSource;Lnet/minecraft/world/level/ExplosionDamageCalculator;DDDFZLnet/minecraft/world/level/Level$ExplosionInteraction;Z)Lnet/minecraft/world/level/Explosion; +MD: net/minecraft/world/level/Level/m_255391_ (Lnet/minecraft/world/entity/Entity;DDDFZLnet/minecraft/world/level/Level$ExplosionInteraction;)Lnet/minecraft/world/level/Explosion; net/minecraft/world/level/Level/explode (Lnet/minecraft/world/entity/Entity;DDDFZLnet/minecraft/world/level/Level$ExplosionInteraction;)Lnet/minecraft/world/level/Explosion; +MD: net/minecraft/world/level/Level/m_260792_ (Ljava/util/function/Predicate;Ljava/util/List;ILnet/minecraft/world/level/entity/EntityTypeTest;Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/util/AbortableIterationConsumer$Continuation; net/minecraft/world/level/Level/lambda$getEntities$2 (Ljava/util/function/Predicate;Ljava/util/List;ILnet/minecraft/world/level/entity/EntityTypeTest;Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/util/AbortableIterationConsumer$Continuation; +MD: net/minecraft/world/level/Level/m_260826_ (Lnet/minecraft/world/level/entity/EntityTypeTest;Lnet/minecraft/world/phys/AABB;Ljava/util/function/Predicate;Ljava/util/List;I)V net/minecraft/world/level/Level/getEntities (Lnet/minecraft/world/level/entity/EntityTypeTest;Lnet/minecraft/world/phys/AABB;Ljava/util/function/Predicate;Ljava/util/List;I)V +MD: net/minecraft/world/level/Level/m_261153_ (Lnet/minecraft/world/level/entity/EntityTypeTest;Lnet/minecraft/world/phys/AABB;Ljava/util/function/Predicate;Ljava/util/List;)V net/minecraft/world/level/Level/getEntities (Lnet/minecraft/world/level/entity/EntityTypeTest;Lnet/minecraft/world/phys/AABB;Ljava/util/function/Predicate;Ljava/util/List;)V +MD: net/minecraft/world/level/Level/m_262808_ (Lnet/minecraft/world/entity/player/Player;DDDLnet/minecraft/core/Holder;Lnet/minecraft/sounds/SoundSource;FFJ)V net/minecraft/world/level/Level/playSeededSound (Lnet/minecraft/world/entity/player/Player;DDDLnet/minecraft/core/Holder;Lnet/minecraft/sounds/SoundSource;FFJ)V +MD: net/minecraft/world/level/Level/m_268981_ ()Ljava/lang/String; net/minecraft/world/level/Level/lambda$fillReportDetails$3 ()Ljava/lang/String; +MD: net/minecraft/world/level/Level/m_269111_ ()Lnet/minecraft/world/damagesource/DamageSources; net/minecraft/world/level/Level/damageSources ()Lnet/minecraft/world/damagesource/DamageSources; +MD: net/minecraft/world/level/Level/m_269196_ (Lnet/minecraft/world/entity/Entity;Lnet/minecraft/world/damagesource/DamageSource;)V net/minecraft/world/level/Level/broadcastDamageEvent (Lnet/minecraft/world/entity/Entity;Lnet/minecraft/world/damagesource/DamageSource;)V +MD: net/minecraft/world/level/Level/m_46457_ (Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/level/Level/isInWorldBoundsHorizontal (Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/level/Level/m_46461_ ()Z net/minecraft/world/level/Level/isDay ()Z +MD: net/minecraft/world/level/Level/m_46462_ ()Z net/minecraft/world/level/Level/isNight ()Z +MD: net/minecraft/world/level/Level/m_46463_ ()V net/minecraft/world/level/Level/tickBlockEntities ()V +MD: net/minecraft/world/level/Level/m_46464_ ()Ljava/lang/String; net/minecraft/world/level/Level/gatherChunkSourceStats ()Ljava/lang/String; +MD: net/minecraft/world/level/Level/m_46465_ ()V net/minecraft/world/level/Level/updateSkyBrightness ()V +MD: net/minecraft/world/level/Level/m_46466_ ()V net/minecraft/world/level/Level/prepareWeather ()V +MD: net/minecraft/world/level/Level/m_46467_ ()J net/minecraft/world/level/Level/getGameTime ()J +MD: net/minecraft/world/level/Level/m_46468_ ()J net/minecraft/world/level/Level/getDayTime ()J +MD: net/minecraft/world/level/Level/m_46469_ ()Lnet/minecraft/world/level/GameRules; net/minecraft/world/level/Level/getGameRules ()Lnet/minecraft/world/level/GameRules; +MD: net/minecraft/world/level/Level/m_46470_ ()Z net/minecraft/world/level/Level/isThundering ()Z +MD: net/minecraft/world/level/Level/m_46471_ ()Z net/minecraft/world/level/Level/isRaining ()Z +MD: net/minecraft/world/level/Level/m_46472_ ()Lnet/minecraft/resources/ResourceKey; net/minecraft/world/level/Level/dimension ()Lnet/minecraft/resources/ResourceKey; +MD: net/minecraft/world/level/Level/m_46473_ ()Lnet/minecraft/util/profiling/ProfilerFiller; net/minecraft/world/level/Level/getProfiler ()Lnet/minecraft/util/profiling/ProfilerFiller; +MD: net/minecraft/world/level/Level/m_46474_ ()Ljava/lang/String; net/minecraft/world/level/Level/lambda$fillReportDetails$4 ()Ljava/lang/String; +MD: net/minecraft/world/level/Level/m_46490_ (F)F net/minecraft/world/level/Level/getSunAngle (F)F +MD: net/minecraft/world/level/Level/m_46496_ (IIII)Lnet/minecraft/core/BlockPos; net/minecraft/world/level/Level/getBlockRandomPos (IIII)Lnet/minecraft/core/BlockPos; +MD: net/minecraft/world/level/Level/m_46575_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/Entity;)Z net/minecraft/world/level/Level/loadedAndEntityCanStandOn (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/Entity;)Z +MD: net/minecraft/world/level/Level/m_46578_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/Entity;Lnet/minecraft/core/Direction;)Z net/minecraft/world/level/Level/loadedAndEntityCanStandOnFace (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/Entity;Lnet/minecraft/core/Direction;)Z +MD: net/minecraft/world/level/Level/m_46586_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/Block;Lnet/minecraft/core/BlockPos;)V net/minecraft/world/level/Level/neighborChanged (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/Block;Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/world/level/Level/m_46590_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/Block;Lnet/minecraft/core/Direction;)V net/minecraft/world/level/Level/updateNeighborsAtExceptFromFacing (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/Block;Lnet/minecraft/core/Direction;)V +MD: net/minecraft/world/level/Level/m_46597_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/world/level/Level/setBlockAndUpdate (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/world/level/Level/m_46653_ (Ljava/util/function/Consumer;Lnet/minecraft/world/entity/Entity;)V net/minecraft/world/level/Level/guardEntityTick (Ljava/util/function/Consumer;Lnet/minecraft/world/entity/Entity;)V +MD: net/minecraft/world/level/Level/m_46658_ ()Ljava/util/function/Supplier; net/minecraft/world/level/Level/getProfilerSupplier ()Ljava/util/function/Supplier; +MD: net/minecraft/world/level/Level/m_46659_ ()Z net/minecraft/world/level/Level/isDebug ()Z +MD: net/minecraft/world/level/Level/m_46661_ (F)F net/minecraft/world/level/Level/getThunderLevel (F)F +MD: net/minecraft/world/level/Level/m_46672_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/Block;)V net/minecraft/world/level/Level/updateNeighborsAt (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/Block;)V +MD: net/minecraft/world/level/Level/m_46703_ (ZZ)V net/minecraft/world/level/Level/setSpawnSettings (ZZ)V +MD: net/minecraft/world/level/Level/m_46707_ (F)V net/minecraft/world/level/Level/setThunderLevel (F)V +MD: net/minecraft/world/level/Level/m_46717_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/Block;)V net/minecraft/world/level/Level/updateNeighbourForOutputSignal (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/Block;)V +MD: net/minecraft/world/level/Level/m_46722_ (F)F net/minecraft/world/level/Level/getRainLevel (F)F +MD: net/minecraft/world/level/Level/m_46724_ (I)Z net/minecraft/world/level/Level/isOutsideSpawnableHeight (I)Z +MD: net/minecraft/world/level/Level/m_46734_ (F)V net/minecraft/world/level/Level/setRainLevel (F)V +MD: net/minecraft/world/level/Level/m_46739_ (Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/level/Level/isInWorldBounds (Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/level/Level/m_46741_ (Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/level/Level/isInSpawnableBounds (Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/level/Level/m_46745_ (Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/chunk/LevelChunk; net/minecraft/world/level/Level/getChunkAt (Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/chunk/LevelChunk; +MD: net/minecraft/world/level/Level/m_46747_ (Lnet/minecraft/core/BlockPos;)V net/minecraft/world/level/Level/removeBlockEntity (Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/world/level/Level/m_46749_ (Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/level/Level/isLoaded (Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/level/Level/m_46758_ (Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/level/Level/isRainingAt (Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/level/Level/m_5503_ (Lnet/minecraft/network/protocol/Packet;)V net/minecraft/world/level/Level/sendPacketToServer (Lnet/minecraft/network/protocol/Packet;)V +MD: net/minecraft/world/level/Level/m_5518_ ()Lnet/minecraft/world/level/lighting/LevelLightEngine; net/minecraft/world/level/Level/getLightEngine ()Lnet/minecraft/world/level/lighting/LevelLightEngine; +MD: net/minecraft/world/level/Level/m_5594_ (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/core/BlockPos;Lnet/minecraft/sounds/SoundEvent;Lnet/minecraft/sounds/SoundSource;FF)V net/minecraft/world/level/Level/playSound (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/core/BlockPos;Lnet/minecraft/sounds/SoundEvent;Lnet/minecraft/sounds/SoundSource;FF)V +MD: net/minecraft/world/level/Level/m_5736_ ()I net/minecraft/world/level/Level/getSeaLevel ()I +MD: net/minecraft/world/level/Level/m_5776_ ()Z net/minecraft/world/level/Level/isClientSide ()Z +MD: net/minecraft/world/level/Level/m_6026_ (Lnet/minecraft/CrashReport;)Lnet/minecraft/CrashReportCategory; net/minecraft/world/level/Level/fillReportDetails (Lnet/minecraft/CrashReport;)Lnet/minecraft/CrashReportCategory; +MD: net/minecraft/world/level/Level/m_6042_ ()Lnet/minecraft/world/level/dimension/DimensionType; net/minecraft/world/level/Level/dimensionType ()Lnet/minecraft/world/level/dimension/DimensionType; +MD: net/minecraft/world/level/Level/m_6106_ ()Lnet/minecraft/world/level/storage/LevelData; net/minecraft/world/level/Level/getLevelData ()Lnet/minecraft/world/level/storage/LevelData; +MD: net/minecraft/world/level/Level/m_6188_ ()Lnet/minecraft/world/scores/Scoreboard; net/minecraft/world/level/Level/getScoreboard ()Lnet/minecraft/world/scores/Scoreboard; +MD: net/minecraft/world/level/Level/m_6249_ (Lnet/minecraft/world/entity/Entity;Lnet/minecraft/world/phys/AABB;Ljava/util/function/Predicate;)Ljava/util/List; net/minecraft/world/level/Level/getEntities (Lnet/minecraft/world/entity/Entity;Lnet/minecraft/world/phys/AABB;Ljava/util/function/Predicate;)Ljava/util/List; +MD: net/minecraft/world/level/Level/m_6263_ (Lnet/minecraft/world/entity/player/Player;DDDLnet/minecraft/sounds/SoundEvent;Lnet/minecraft/sounds/SoundSource;FF)V net/minecraft/world/level/Level/playSound (Lnet/minecraft/world/entity/player/Player;DDDLnet/minecraft/sounds/SoundEvent;Lnet/minecraft/sounds/SoundSource;FF)V +MD: net/minecraft/world/level/Level/m_6269_ (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/entity/Entity;Lnet/minecraft/sounds/SoundEvent;Lnet/minecraft/sounds/SoundSource;FF)V net/minecraft/world/level/Level/playSound (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/entity/Entity;Lnet/minecraft/sounds/SoundEvent;Lnet/minecraft/sounds/SoundSource;FF)V +MD: net/minecraft/world/level/Level/m_6325_ (II)Lnet/minecraft/world/level/chunk/ChunkAccess; net/minecraft/world/level/Level/getChunk (II)Lnet/minecraft/world/level/chunk/ChunkAccess; +MD: net/minecraft/world/level/Level/m_6325_ (II)Lnet/minecraft/world/level/chunk/LevelChunk; net/minecraft/world/level/Level/getChunk (II)Lnet/minecraft/world/level/chunk/LevelChunk; +MD: net/minecraft/world/level/Level/m_6425_ (Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/material/FluidState; net/minecraft/world/level/Level/getFluidState (Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/material/FluidState; +MD: net/minecraft/world/level/Level/m_6436_ (Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/DifficultyInstance; net/minecraft/world/level/Level/getCurrentDifficultyAt (Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/DifficultyInstance; +MD: net/minecraft/world/level/Level/m_6485_ (Lnet/minecraft/core/particles/ParticleOptions;ZDDDDDD)V net/minecraft/world/level/Level/addAlwaysVisibleParticle (Lnet/minecraft/core/particles/ParticleOptions;ZDDDDDD)V +MD: net/minecraft/world/level/Level/m_6493_ (Lnet/minecraft/core/particles/ParticleOptions;ZDDDDDD)V net/minecraft/world/level/Level/addParticle (Lnet/minecraft/core/particles/ParticleOptions;ZDDDDDD)V +MD: net/minecraft/world/level/Level/m_6522_ (IILnet/minecraft/world/level/chunk/ChunkStatus;Z)Lnet/minecraft/world/level/chunk/ChunkAccess; net/minecraft/world/level/Level/getChunk (IILnet/minecraft/world/level/chunk/ChunkStatus;Z)Lnet/minecraft/world/level/chunk/ChunkAccess; +MD: net/minecraft/world/level/Level/m_6550_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/state/BlockState;)V net/minecraft/world/level/Level/setBlocksDirty (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/state/BlockState;)V +MD: net/minecraft/world/level/Level/m_6559_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/state/BlockState;)V net/minecraft/world/level/Level/onBlockStateChange (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/state/BlockState;)V +MD: net/minecraft/world/level/Level/m_6580_ (I)V net/minecraft/world/level/Level/setSkyFlashTime (I)V +MD: net/minecraft/world/level/Level/m_6798_ (ILnet/minecraft/core/BlockPos;I)V net/minecraft/world/level/Level/globalLevelEvent (ILnet/minecraft/core/BlockPos;I)V +MD: net/minecraft/world/level/Level/m_6801_ (ILnet/minecraft/core/BlockPos;I)V net/minecraft/world/level/Level/destroyBlockProgress (ILnet/minecraft/core/BlockPos;I)V +MD: net/minecraft/world/level/Level/m_6815_ (I)Lnet/minecraft/world/entity/Entity; net/minecraft/world/level/Level/getEntity (I)Lnet/minecraft/world/entity/Entity; +MD: net/minecraft/world/level/Level/m_6857_ ()Lnet/minecraft/world/level/border/WorldBorder; net/minecraft/world/level/Level/getWorldBorder ()Lnet/minecraft/world/level/border/WorldBorder; +MD: net/minecraft/world/level/Level/m_6924_ (Lnet/minecraft/world/level/levelgen/Heightmap$Types;II)I net/minecraft/world/level/Level/getHeight (Lnet/minecraft/world/level/levelgen/Heightmap$Types;II)I +MD: net/minecraft/world/level/Level/m_6933_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;II)Z net/minecraft/world/level/Level/setBlock (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;II)Z +MD: net/minecraft/world/level/Level/m_7062_ ()Lnet/minecraft/world/level/biome/BiomeManager; net/minecraft/world/level/Level/getBiomeManager ()Lnet/minecraft/world/level/biome/BiomeManager; +MD: net/minecraft/world/level/Level/m_7106_ (Lnet/minecraft/core/particles/ParticleOptions;DDDDDD)V net/minecraft/world/level/Level/addParticle (Lnet/minecraft/core/particles/ParticleOptions;DDDDDD)V +MD: net/minecraft/world/level/Level/m_7107_ (Lnet/minecraft/core/particles/ParticleOptions;DDDDDD)V net/minecraft/world/level/Level/addAlwaysVisibleParticle (Lnet/minecraft/core/particles/ParticleOptions;DDDDDD)V +MD: net/minecraft/world/level/Level/m_7228_ (DDDDDDLnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/level/Level/createFireworks (DDDDDDLnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/level/Level/m_7260_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/state/BlockState;I)V net/minecraft/world/level/Level/sendBlockUpdated (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/state/BlockState;I)V +MD: net/minecraft/world/level/Level/m_7354_ ()I net/minecraft/world/level/Level/getFreeMapId ()I +MD: net/minecraft/world/level/Level/m_7433_ (Lnet/minecraft/core/BlockPos;Ljava/util/function/Predicate;)Z net/minecraft/world/level/Level/isStateAtPosition (Lnet/minecraft/core/BlockPos;Ljava/util/function/Predicate;)Z +MD: net/minecraft/world/level/Level/m_7441_ ()Z net/minecraft/world/level/Level/noSave ()Z +MD: net/minecraft/world/level/Level/m_7445_ ()I net/minecraft/world/level/Level/getSkyDarken ()I +MD: net/minecraft/world/level/Level/m_7462_ ()V net/minecraft/world/level/Level/disconnect ()V +MD: net/minecraft/world/level/Level/m_7465_ ()Lnet/minecraft/world/item/crafting/RecipeManager; net/minecraft/world/level/Level/getRecipeManager ()Lnet/minecraft/world/item/crafting/RecipeManager; +MD: net/minecraft/world/level/Level/m_7471_ (Lnet/minecraft/core/BlockPos;Z)Z net/minecraft/world/level/Level/removeBlock (Lnet/minecraft/core/BlockPos;Z)Z +MD: net/minecraft/world/level/Level/m_7489_ (Ljava/lang/String;)Lnet/minecraft/world/level/saveddata/maps/MapItemSavedData; net/minecraft/world/level/Level/getMapData (Ljava/lang/String;)Lnet/minecraft/world/level/saveddata/maps/MapItemSavedData; +MD: net/minecraft/world/level/Level/m_7605_ (Lnet/minecraft/world/entity/Entity;B)V net/minecraft/world/level/Level/broadcastEntityEvent (Lnet/minecraft/world/entity/Entity;B)V +MD: net/minecraft/world/level/Level/m_7654_ ()Lnet/minecraft/server/MinecraftServer; net/minecraft/world/level/Level/getServer ()Lnet/minecraft/server/MinecraftServer; +MD: net/minecraft/world/level/Level/m_7696_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/Block;II)V net/minecraft/world/level/Level/blockEvent (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/Block;II)V +MD: net/minecraft/world/level/Level/m_7702_ (Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/entity/BlockEntity; net/minecraft/world/level/Level/getBlockEntity (Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/entity/BlockEntity; +MD: net/minecraft/world/level/Level/m_7731_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;I)Z net/minecraft/world/level/Level/setBlock (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;I)Z +MD: net/minecraft/world/level/Level/m_7740_ (Lnet/minecraft/core/BlockPos;ZLnet/minecraft/world/entity/Entity;I)Z net/minecraft/world/level/Level/destroyBlock (Lnet/minecraft/core/BlockPos;ZLnet/minecraft/world/entity/Entity;I)Z +MD: net/minecraft/world/level/Level/m_7785_ (DDDLnet/minecraft/sounds/SoundEvent;Lnet/minecraft/sounds/SoundSource;FFZ)V net/minecraft/world/level/Level/playLocalSound (DDDLnet/minecraft/sounds/SoundEvent;Lnet/minecraft/sounds/SoundSource;FFZ)V +MD: net/minecraft/world/level/Level/m_7925_ (II)Lnet/minecraft/world/level/BlockGetter; net/minecraft/world/level/Level/getChunkForCollisions (II)Lnet/minecraft/world/level/BlockGetter; +MD: net/minecraft/world/level/Level/m_7966_ (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/level/Level/mayInteract (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/level/Level/m_8055_ (Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/Level/getBlockState (Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/Level/m_9598_ ()Lnet/minecraft/core/RegistryAccess; net/minecraft/world/level/Level/registryAccess ()Lnet/minecraft/core/RegistryAccess; +MD: net/minecraft/world/level/Level$1/ (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/level/dimension/DimensionType;)V net/minecraft/world/level/Level$1/ (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/level/dimension/DimensionType;)V +MD: net/minecraft/world/level/Level$1/m_6345_ ()D net/minecraft/world/level/Level$1/getCenterZ ()D +MD: net/minecraft/world/level/Level$1/m_6347_ ()D net/minecraft/world/level/Level$1/getCenterX ()D +MD: net/minecraft/world/level/Level$2/ ()V net/minecraft/world/level/Level$2/ ()V +MD: net/minecraft/world/level/Level$ExplosionInteraction/ ()V net/minecraft/world/level/Level$ExplosionInteraction/ ()V +MD: net/minecraft/world/level/Level$ExplosionInteraction/ (Ljava/lang/String;I)V net/minecraft/world/level/Level$ExplosionInteraction/ (Ljava/lang/String;I)V +MD: net/minecraft/world/level/Level$ExplosionInteraction/m_255267_ ()[Lnet/minecraft/world/level/Level$ExplosionInteraction; net/minecraft/world/level/Level$ExplosionInteraction/$values ()[Lnet/minecraft/world/level/Level$ExplosionInteraction; +MD: net/minecraft/world/level/Level$ExplosionInteraction/valueOf (Ljava/lang/String;)Lnet/minecraft/world/level/Level$ExplosionInteraction; net/minecraft/world/level/Level$ExplosionInteraction/valueOf (Ljava/lang/String;)Lnet/minecraft/world/level/Level$ExplosionInteraction; +MD: net/minecraft/world/level/Level$ExplosionInteraction/values ()[Lnet/minecraft/world/level/Level$ExplosionInteraction; net/minecraft/world/level/Level$ExplosionInteraction/values ()[Lnet/minecraft/world/level/Level$ExplosionInteraction; +MD: net/minecraft/world/level/LevelAccessor/m_142346_ (Lnet/minecraft/world/entity/Entity;Lnet/minecraft/world/level/gameevent/GameEvent;Lnet/minecraft/core/BlockPos;)V net/minecraft/world/level/LevelAccessor/gameEvent (Lnet/minecraft/world/entity/Entity;Lnet/minecraft/world/level/gameevent/GameEvent;Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/world/level/LevelAccessor/m_183324_ ()Lnet/minecraft/world/ticks/LevelTickAccess; net/minecraft/world/level/LevelAccessor/getFluidTicks ()Lnet/minecraft/world/ticks/LevelTickAccess; +MD: net/minecraft/world/level/LevelAccessor/m_183326_ ()Lnet/minecraft/world/ticks/LevelTickAccess; net/minecraft/world/level/LevelAccessor/getBlockTicks ()Lnet/minecraft/world/ticks/LevelTickAccess; +MD: net/minecraft/world/level/LevelAccessor/m_183596_ ()J net/minecraft/world/level/LevelAccessor/nextSubTickCount ()J +MD: net/minecraft/world/level/LevelAccessor/m_186460_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/Block;I)V net/minecraft/world/level/LevelAccessor/scheduleTick (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/Block;I)V +MD: net/minecraft/world/level/LevelAccessor/m_186464_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/Block;ILnet/minecraft/world/ticks/TickPriority;)V net/minecraft/world/level/LevelAccessor/scheduleTick (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/Block;ILnet/minecraft/world/ticks/TickPriority;)V +MD: net/minecraft/world/level/LevelAccessor/m_186469_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/material/Fluid;I)V net/minecraft/world/level/LevelAccessor/scheduleTick (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/material/Fluid;I)V +MD: net/minecraft/world/level/LevelAccessor/m_186473_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/material/Fluid;ILnet/minecraft/world/ticks/TickPriority;)V net/minecraft/world/level/LevelAccessor/scheduleTick (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/material/Fluid;ILnet/minecraft/world/ticks/TickPriority;)V +MD: net/minecraft/world/level/LevelAccessor/m_186478_ (Lnet/minecraft/core/BlockPos;Ljava/lang/Object;I)Lnet/minecraft/world/ticks/ScheduledTick; net/minecraft/world/level/LevelAccessor/createTick (Lnet/minecraft/core/BlockPos;Ljava/lang/Object;I)Lnet/minecraft/world/ticks/ScheduledTick; +MD: net/minecraft/world/level/LevelAccessor/m_186482_ (Lnet/minecraft/core/BlockPos;Ljava/lang/Object;ILnet/minecraft/world/ticks/TickPriority;)Lnet/minecraft/world/ticks/ScheduledTick; net/minecraft/world/level/LevelAccessor/createTick (Lnet/minecraft/core/BlockPos;Ljava/lang/Object;ILnet/minecraft/world/ticks/TickPriority;)Lnet/minecraft/world/ticks/ScheduledTick; +MD: net/minecraft/world/level/LevelAccessor/m_213683_ (Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;II)V net/minecraft/world/level/LevelAccessor/neighborShapeChanged (Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;II)V +MD: net/minecraft/world/level/LevelAccessor/m_213780_ ()Lnet/minecraft/util/RandomSource; net/minecraft/world/level/LevelAccessor/getRandom ()Lnet/minecraft/util/RandomSource; +MD: net/minecraft/world/level/LevelAccessor/m_214171_ (Lnet/minecraft/world/level/gameevent/GameEvent;Lnet/minecraft/world/phys/Vec3;Lnet/minecraft/world/level/gameevent/GameEvent$Context;)V net/minecraft/world/level/LevelAccessor/gameEvent (Lnet/minecraft/world/level/gameevent/GameEvent;Lnet/minecraft/world/phys/Vec3;Lnet/minecraft/world/level/gameevent/GameEvent$Context;)V +MD: net/minecraft/world/level/LevelAccessor/m_220400_ (Lnet/minecraft/world/entity/Entity;Lnet/minecraft/world/level/gameevent/GameEvent;Lnet/minecraft/world/phys/Vec3;)V net/minecraft/world/level/LevelAccessor/gameEvent (Lnet/minecraft/world/entity/Entity;Lnet/minecraft/world/level/gameevent/GameEvent;Lnet/minecraft/world/phys/Vec3;)V +MD: net/minecraft/world/level/LevelAccessor/m_220407_ (Lnet/minecraft/world/level/gameevent/GameEvent;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/gameevent/GameEvent$Context;)V net/minecraft/world/level/LevelAccessor/gameEvent (Lnet/minecraft/world/level/gameevent/GameEvent;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/gameevent/GameEvent$Context;)V +MD: net/minecraft/world/level/LevelAccessor/m_247517_ (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/core/BlockPos;Lnet/minecraft/sounds/SoundEvent;Lnet/minecraft/sounds/SoundSource;)V net/minecraft/world/level/LevelAccessor/playSound (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/core/BlockPos;Lnet/minecraft/sounds/SoundEvent;Lnet/minecraft/sounds/SoundSource;)V +MD: net/minecraft/world/level/LevelAccessor/m_46791_ ()Lnet/minecraft/world/Difficulty; net/minecraft/world/level/LevelAccessor/getDifficulty ()Lnet/minecraft/world/Difficulty; +MD: net/minecraft/world/level/LevelAccessor/m_46796_ (ILnet/minecraft/core/BlockPos;I)V net/minecraft/world/level/LevelAccessor/levelEvent (ILnet/minecraft/core/BlockPos;I)V +MD: net/minecraft/world/level/LevelAccessor/m_5594_ (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/core/BlockPos;Lnet/minecraft/sounds/SoundEvent;Lnet/minecraft/sounds/SoundSource;FF)V net/minecraft/world/level/LevelAccessor/playSound (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/core/BlockPos;Lnet/minecraft/sounds/SoundEvent;Lnet/minecraft/sounds/SoundSource;FF)V +MD: net/minecraft/world/level/LevelAccessor/m_5898_ (Lnet/minecraft/world/entity/player/Player;ILnet/minecraft/core/BlockPos;I)V net/minecraft/world/level/LevelAccessor/levelEvent (Lnet/minecraft/world/entity/player/Player;ILnet/minecraft/core/BlockPos;I)V +MD: net/minecraft/world/level/LevelAccessor/m_6106_ ()Lnet/minecraft/world/level/storage/LevelData; net/minecraft/world/level/LevelAccessor/getLevelData ()Lnet/minecraft/world/level/storage/LevelData; +MD: net/minecraft/world/level/LevelAccessor/m_6289_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/Block;)V net/minecraft/world/level/LevelAccessor/blockUpdated (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/Block;)V +MD: net/minecraft/world/level/LevelAccessor/m_6436_ (Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/DifficultyInstance; net/minecraft/world/level/LevelAccessor/getCurrentDifficultyAt (Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/DifficultyInstance; +MD: net/minecraft/world/level/LevelAccessor/m_7106_ (Lnet/minecraft/core/particles/ParticleOptions;DDDDDD)V net/minecraft/world/level/LevelAccessor/addParticle (Lnet/minecraft/core/particles/ParticleOptions;DDDDDD)V +MD: net/minecraft/world/level/LevelAccessor/m_7232_ (II)Z net/minecraft/world/level/LevelAccessor/hasChunk (II)Z +MD: net/minecraft/world/level/LevelAccessor/m_7654_ ()Lnet/minecraft/server/MinecraftServer; net/minecraft/world/level/LevelAccessor/getServer ()Lnet/minecraft/server/MinecraftServer; +MD: net/minecraft/world/level/LevelAccessor/m_7726_ ()Lnet/minecraft/world/level/chunk/ChunkSource; net/minecraft/world/level/LevelAccessor/getChunkSource ()Lnet/minecraft/world/level/chunk/ChunkSource; +MD: net/minecraft/world/level/LevelAccessor/m_8044_ ()J net/minecraft/world/level/LevelAccessor/dayTime ()J +MD: net/minecraft/world/level/LevelHeightAccessor/m_141928_ ()I net/minecraft/world/level/LevelHeightAccessor/getHeight ()I +MD: net/minecraft/world/level/LevelHeightAccessor/m_141937_ ()I net/minecraft/world/level/LevelHeightAccessor/getMinBuildHeight ()I +MD: net/minecraft/world/level/LevelHeightAccessor/m_151558_ ()I net/minecraft/world/level/LevelHeightAccessor/getMaxBuildHeight ()I +MD: net/minecraft/world/level/LevelHeightAccessor/m_151559_ ()I net/minecraft/world/level/LevelHeightAccessor/getSectionsCount ()I +MD: net/minecraft/world/level/LevelHeightAccessor/m_151560_ ()I net/minecraft/world/level/LevelHeightAccessor/getMinSection ()I +MD: net/minecraft/world/level/LevelHeightAccessor/m_151561_ ()I net/minecraft/world/level/LevelHeightAccessor/getMaxSection ()I +MD: net/minecraft/world/level/LevelHeightAccessor/m_151562_ (I)Z net/minecraft/world/level/LevelHeightAccessor/isOutsideBuildHeight (I)Z +MD: net/minecraft/world/level/LevelHeightAccessor/m_151564_ (I)I net/minecraft/world/level/LevelHeightAccessor/getSectionIndex (I)I +MD: net/minecraft/world/level/LevelHeightAccessor/m_151566_ (I)I net/minecraft/world/level/LevelHeightAccessor/getSectionIndexFromSectionY (I)I +MD: net/minecraft/world/level/LevelHeightAccessor/m_151568_ (I)I net/minecraft/world/level/LevelHeightAccessor/getSectionYFromSectionIndex (I)I +MD: net/minecraft/world/level/LevelHeightAccessor/m_151570_ (Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/level/LevelHeightAccessor/isOutsideBuildHeight (Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/level/LevelHeightAccessor/m_186487_ (II)Lnet/minecraft/world/level/LevelHeightAccessor; net/minecraft/world/level/LevelHeightAccessor/create (II)Lnet/minecraft/world/level/LevelHeightAccessor; +MD: net/minecraft/world/level/LevelHeightAccessor$1/ (II)V net/minecraft/world/level/LevelHeightAccessor$1/ (II)V +MD: net/minecraft/world/level/LevelHeightAccessor$1/m_141928_ ()I net/minecraft/world/level/LevelHeightAccessor$1/getHeight ()I +MD: net/minecraft/world/level/LevelHeightAccessor$1/m_141937_ ()I net/minecraft/world/level/LevelHeightAccessor$1/getMinBuildHeight ()I +MD: net/minecraft/world/level/LevelReader/m_141928_ ()I net/minecraft/world/level/LevelReader/getHeight ()I +MD: net/minecraft/world/level/LevelReader/m_141937_ ()I net/minecraft/world/level/LevelReader/getMinBuildHeight ()I +MD: net/minecraft/world/level/LevelReader/m_151572_ (IIII)Z net/minecraft/world/level/LevelReader/hasChunksAt (IIII)Z +MD: net/minecraft/world/level/LevelReader/m_151577_ (II)Z net/minecraft/world/level/LevelReader/hasChunkAt (II)Z +MD: net/minecraft/world/level/LevelReader/m_203495_ (III)Lnet/minecraft/core/Holder; net/minecraft/world/level/LevelReader/getNoiseBiome (III)Lnet/minecraft/core/Holder; +MD: net/minecraft/world/level/LevelReader/m_203675_ (III)Lnet/minecraft/core/Holder; net/minecraft/world/level/LevelReader/getUncachedNoiseBiome (III)Lnet/minecraft/core/Holder; +MD: net/minecraft/world/level/LevelReader/m_204166_ (Lnet/minecraft/core/BlockPos;)Lnet/minecraft/core/Holder; net/minecraft/world/level/LevelReader/getBiome (Lnet/minecraft/core/BlockPos;)Lnet/minecraft/core/Holder; +MD: net/minecraft/world/level/LevelReader/m_220417_ (Lnet/minecraft/core/BlockPos;)F net/minecraft/world/level/LevelReader/getLightLevelDependentMagicValue (Lnet/minecraft/core/BlockPos;)F +MD: net/minecraft/world/level/LevelReader/m_220419_ (Lnet/minecraft/core/BlockPos;)F net/minecraft/world/level/LevelReader/getPathfindingCostFromLightLevels (Lnet/minecraft/core/BlockPos;)F +MD: net/minecraft/world/level/LevelReader/m_246046_ ()Lnet/minecraft/world/flag/FeatureFlagSet; net/minecraft/world/level/LevelReader/enabledFeatures ()Lnet/minecraft/world/flag/FeatureFlagSet; +MD: net/minecraft/world/level/LevelReader/m_246945_ (Lnet/minecraft/resources/ResourceKey;)Lnet/minecraft/core/HolderLookup; net/minecraft/world/level/LevelReader/holderLookup (Lnet/minecraft/resources/ResourceKey;)Lnet/minecraft/core/HolderLookup; +MD: net/minecraft/world/level/LevelReader/m_46801_ (Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/level/LevelReader/isWaterAt (Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/level/LevelReader/m_46803_ (Lnet/minecraft/core/BlockPos;)I net/minecraft/world/level/LevelReader/getMaxLocalRawBrightness (Lnet/minecraft/core/BlockPos;)I +MD: net/minecraft/world/level/LevelReader/m_46805_ (Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/level/LevelReader/hasChunkAt (Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/level/LevelReader/m_46812_ (IIIIII)Z net/minecraft/world/level/LevelReader/hasChunksAt (IIIIII)Z +MD: net/minecraft/world/level/LevelReader/m_46819_ (IILnet/minecraft/world/level/chunk/ChunkStatus;)Lnet/minecraft/world/level/chunk/ChunkAccess; net/minecraft/world/level/LevelReader/getChunk (IILnet/minecraft/world/level/chunk/ChunkStatus;)Lnet/minecraft/world/level/chunk/ChunkAccess; +MD: net/minecraft/world/level/LevelReader/m_46832_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/level/LevelReader/hasChunksAt (Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/level/LevelReader/m_46847_ (Lnet/minecraft/world/phys/AABB;)Ljava/util/stream/Stream; net/minecraft/world/level/LevelReader/getBlockStatesIfLoaded (Lnet/minecraft/world/phys/AABB;)Ljava/util/stream/Stream; +MD: net/minecraft/world/level/LevelReader/m_46849_ (Lnet/minecraft/core/BlockPos;I)I net/minecraft/world/level/LevelReader/getMaxLocalRawBrightness (Lnet/minecraft/core/BlockPos;I)I +MD: net/minecraft/world/level/LevelReader/m_46855_ (Lnet/minecraft/world/phys/AABB;)Z net/minecraft/world/level/LevelReader/containsAnyLiquid (Lnet/minecraft/world/phys/AABB;)Z +MD: net/minecraft/world/level/LevelReader/m_46859_ (Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/level/LevelReader/isEmptyBlock (Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/level/LevelReader/m_46861_ (Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/level/LevelReader/canSeeSkyFromBelowWater (Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/level/LevelReader/m_46865_ (Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/chunk/ChunkAccess; net/minecraft/world/level/LevelReader/getChunk (Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/chunk/ChunkAccess; +MD: net/minecraft/world/level/LevelReader/m_5452_ (Lnet/minecraft/world/level/levelgen/Heightmap$Types;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/core/BlockPos; net/minecraft/world/level/LevelReader/getHeightmapPos (Lnet/minecraft/world/level/levelgen/Heightmap$Types;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/core/BlockPos; +MD: net/minecraft/world/level/LevelReader/m_5736_ ()I net/minecraft/world/level/LevelReader/getSeaLevel ()I +MD: net/minecraft/world/level/LevelReader/m_5776_ ()Z net/minecraft/world/level/LevelReader/isClientSide ()Z +MD: net/minecraft/world/level/LevelReader/m_6042_ ()Lnet/minecraft/world/level/dimension/DimensionType; net/minecraft/world/level/LevelReader/dimensionType ()Lnet/minecraft/world/level/dimension/DimensionType; +MD: net/minecraft/world/level/LevelReader/m_6171_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/ColorResolver;)I net/minecraft/world/level/LevelReader/getBlockTint (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/ColorResolver;)I +MD: net/minecraft/world/level/LevelReader/m_6325_ (II)Lnet/minecraft/world/level/chunk/ChunkAccess; net/minecraft/world/level/LevelReader/getChunk (II)Lnet/minecraft/world/level/chunk/ChunkAccess; +MD: net/minecraft/world/level/LevelReader/m_6522_ (IILnet/minecraft/world/level/chunk/ChunkStatus;Z)Lnet/minecraft/world/level/chunk/ChunkAccess; net/minecraft/world/level/LevelReader/getChunk (IILnet/minecraft/world/level/chunk/ChunkStatus;Z)Lnet/minecraft/world/level/chunk/ChunkAccess; +MD: net/minecraft/world/level/LevelReader/m_6924_ (Lnet/minecraft/world/level/levelgen/Heightmap$Types;II)I net/minecraft/world/level/LevelReader/getHeight (Lnet/minecraft/world/level/levelgen/Heightmap$Types;II)I +MD: net/minecraft/world/level/LevelReader/m_7062_ ()Lnet/minecraft/world/level/biome/BiomeManager; net/minecraft/world/level/LevelReader/getBiomeManager ()Lnet/minecraft/world/level/biome/BiomeManager; +MD: net/minecraft/world/level/LevelReader/m_7232_ (II)Z net/minecraft/world/level/LevelReader/hasChunk (II)Z +MD: net/minecraft/world/level/LevelReader/m_7445_ ()I net/minecraft/world/level/LevelReader/getSkyDarken ()I +MD: net/minecraft/world/level/LevelReader/m_7925_ (II)Lnet/minecraft/world/level/BlockGetter; net/minecraft/world/level/LevelReader/getChunkForCollisions (II)Lnet/minecraft/world/level/BlockGetter; +MD: net/minecraft/world/level/LevelReader/m_9598_ ()Lnet/minecraft/core/RegistryAccess; net/minecraft/world/level/LevelReader/registryAccess ()Lnet/minecraft/core/RegistryAccess; +MD: net/minecraft/world/level/LevelSettings/ (Ljava/lang/String;Lnet/minecraft/world/level/GameType;ZLnet/minecraft/world/Difficulty;ZLnet/minecraft/world/level/GameRules;Lnet/minecraft/world/level/WorldDataConfiguration;)V net/minecraft/world/level/LevelSettings/ (Ljava/lang/String;Lnet/minecraft/world/level/GameType;ZLnet/minecraft/world/Difficulty;ZLnet/minecraft/world/level/GameRules;Lnet/minecraft/world/level/WorldDataConfiguration;)V +MD: net/minecraft/world/level/LevelSettings/m_246291_ ()Lnet/minecraft/world/level/WorldDataConfiguration; net/minecraft/world/level/LevelSettings/getDataConfiguration ()Lnet/minecraft/world/level/WorldDataConfiguration; +MD: net/minecraft/world/level/LevelSettings/m_247275_ (Lnet/minecraft/world/level/WorldDataConfiguration;)Lnet/minecraft/world/level/LevelSettings; net/minecraft/world/level/LevelSettings/withDataConfiguration (Lnet/minecraft/world/level/WorldDataConfiguration;)Lnet/minecraft/world/level/LevelSettings; +MD: net/minecraft/world/level/LevelSettings/m_46917_ ()Ljava/lang/String; net/minecraft/world/level/LevelSettings/levelName ()Ljava/lang/String; +MD: net/minecraft/world/level/LevelSettings/m_46918_ (Lnet/minecraft/world/Difficulty;)Lnet/minecraft/world/level/LevelSettings; net/minecraft/world/level/LevelSettings/withDifficulty (Lnet/minecraft/world/Difficulty;)Lnet/minecraft/world/level/LevelSettings; +MD: net/minecraft/world/level/LevelSettings/m_46922_ (Lnet/minecraft/world/level/GameType;)Lnet/minecraft/world/level/LevelSettings; net/minecraft/world/level/LevelSettings/withGameType (Lnet/minecraft/world/level/GameType;)Lnet/minecraft/world/level/LevelSettings; +MD: net/minecraft/world/level/LevelSettings/m_46924_ (Lcom/mojang/serialization/Dynamic;Lnet/minecraft/world/level/WorldDataConfiguration;)Lnet/minecraft/world/level/LevelSettings; net/minecraft/world/level/LevelSettings/parse (Lcom/mojang/serialization/Dynamic;Lnet/minecraft/world/level/WorldDataConfiguration;)Lnet/minecraft/world/level/LevelSettings; +MD: net/minecraft/world/level/LevelSettings/m_46927_ (Ljava/lang/Number;)Lnet/minecraft/world/Difficulty; net/minecraft/world/level/LevelSettings/lambda$parse$0 (Ljava/lang/Number;)Lnet/minecraft/world/Difficulty; +MD: net/minecraft/world/level/LevelSettings/m_46929_ ()Lnet/minecraft/world/level/GameType; net/minecraft/world/level/LevelSettings/gameType ()Lnet/minecraft/world/level/GameType; +MD: net/minecraft/world/level/LevelSettings/m_46930_ ()Z net/minecraft/world/level/LevelSettings/hardcore ()Z +MD: net/minecraft/world/level/LevelSettings/m_46931_ ()Lnet/minecraft/world/Difficulty; net/minecraft/world/level/LevelSettings/difficulty ()Lnet/minecraft/world/Difficulty; +MD: net/minecraft/world/level/LevelSettings/m_46932_ ()Z net/minecraft/world/level/LevelSettings/allowCommands ()Z +MD: net/minecraft/world/level/LevelSettings/m_46933_ ()Lnet/minecraft/world/level/GameRules; net/minecraft/world/level/LevelSettings/gameRules ()Lnet/minecraft/world/level/GameRules; +MD: net/minecraft/world/level/LevelSettings/m_46935_ ()Lnet/minecraft/world/level/LevelSettings; net/minecraft/world/level/LevelSettings/copy ()Lnet/minecraft/world/level/LevelSettings; +MD: net/minecraft/world/level/LevelSimulatedReader/m_141902_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/entity/BlockEntityType;)Ljava/util/Optional; net/minecraft/world/level/LevelSimulatedReader/getBlockEntity (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/entity/BlockEntityType;)Ljava/util/Optional; +MD: net/minecraft/world/level/LevelSimulatedReader/m_142433_ (Lnet/minecraft/core/BlockPos;Ljava/util/function/Predicate;)Z net/minecraft/world/level/LevelSimulatedReader/isFluidAtPosition (Lnet/minecraft/core/BlockPos;Ljava/util/function/Predicate;)Z +MD: net/minecraft/world/level/LevelSimulatedReader/m_5452_ (Lnet/minecraft/world/level/levelgen/Heightmap$Types;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/core/BlockPos; net/minecraft/world/level/LevelSimulatedReader/getHeightmapPos (Lnet/minecraft/world/level/levelgen/Heightmap$Types;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/core/BlockPos; +MD: net/minecraft/world/level/LevelSimulatedReader/m_7433_ (Lnet/minecraft/core/BlockPos;Ljava/util/function/Predicate;)Z net/minecraft/world/level/LevelSimulatedReader/isStateAtPosition (Lnet/minecraft/core/BlockPos;Ljava/util/function/Predicate;)Z +MD: net/minecraft/world/level/LevelTimeAccess/m_46940_ ()F net/minecraft/world/level/LevelTimeAccess/getMoonBrightness ()F +MD: net/minecraft/world/level/LevelTimeAccess/m_46941_ ()I net/minecraft/world/level/LevelTimeAccess/getMoonPhase ()I +MD: net/minecraft/world/level/LevelTimeAccess/m_46942_ (F)F net/minecraft/world/level/LevelTimeAccess/getTimeOfDay (F)F +MD: net/minecraft/world/level/LevelTimeAccess/m_8044_ ()J net/minecraft/world/level/LevelTimeAccess/dayTime ()J +MD: net/minecraft/world/level/LevelWriter/m_46953_ (Lnet/minecraft/core/BlockPos;ZLnet/minecraft/world/entity/Entity;)Z net/minecraft/world/level/LevelWriter/destroyBlock (Lnet/minecraft/core/BlockPos;ZLnet/minecraft/world/entity/Entity;)Z +MD: net/minecraft/world/level/LevelWriter/m_46961_ (Lnet/minecraft/core/BlockPos;Z)Z net/minecraft/world/level/LevelWriter/destroyBlock (Lnet/minecraft/core/BlockPos;Z)Z +MD: net/minecraft/world/level/LevelWriter/m_6933_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;II)Z net/minecraft/world/level/LevelWriter/setBlock (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;II)Z +MD: net/minecraft/world/level/LevelWriter/m_7471_ (Lnet/minecraft/core/BlockPos;Z)Z net/minecraft/world/level/LevelWriter/removeBlock (Lnet/minecraft/core/BlockPos;Z)Z +MD: net/minecraft/world/level/LevelWriter/m_7731_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;I)Z net/minecraft/world/level/LevelWriter/setBlock (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;I)Z +MD: net/minecraft/world/level/LevelWriter/m_7740_ (Lnet/minecraft/core/BlockPos;ZLnet/minecraft/world/entity/Entity;I)Z net/minecraft/world/level/LevelWriter/destroyBlock (Lnet/minecraft/core/BlockPos;ZLnet/minecraft/world/entity/Entity;I)Z +MD: net/minecraft/world/level/LevelWriter/m_7967_ (Lnet/minecraft/world/entity/Entity;)Z net/minecraft/world/level/LevelWriter/addFreshEntity (Lnet/minecraft/world/entity/Entity;)Z +MD: net/minecraft/world/level/LightLayer/ ()V net/minecraft/world/level/LightLayer/ ()V +MD: net/minecraft/world/level/LightLayer/ (Ljava/lang/String;I)V net/minecraft/world/level/LightLayer/ (Ljava/lang/String;I)V +MD: net/minecraft/world/level/LightLayer/m_151586_ ()[Lnet/minecraft/world/level/LightLayer; net/minecraft/world/level/LightLayer/$values ()[Lnet/minecraft/world/level/LightLayer; +MD: net/minecraft/world/level/LightLayer/valueOf (Ljava/lang/String;)Lnet/minecraft/world/level/LightLayer; net/minecraft/world/level/LightLayer/valueOf (Ljava/lang/String;)Lnet/minecraft/world/level/LightLayer; +MD: net/minecraft/world/level/LightLayer/values ()[Lnet/minecraft/world/level/LightLayer; net/minecraft/world/level/LightLayer/values ()[Lnet/minecraft/world/level/LightLayer; +MD: net/minecraft/world/level/LocalMobCapCalculator/ (Lnet/minecraft/server/level/ChunkMap;)V net/minecraft/world/level/LocalMobCapCalculator/ (Lnet/minecraft/server/level/ChunkMap;)V +MD: net/minecraft/world/level/LocalMobCapCalculator/m_186502_ (Lnet/minecraft/server/level/ServerPlayer;)Lnet/minecraft/world/level/LocalMobCapCalculator$MobCounts; net/minecraft/world/level/LocalMobCapCalculator/lambda$addMob$1 (Lnet/minecraft/server/level/ServerPlayer;)Lnet/minecraft/world/level/LocalMobCapCalculator$MobCounts; +MD: net/minecraft/world/level/LocalMobCapCalculator/m_186504_ (Lnet/minecraft/world/entity/MobCategory;Lnet/minecraft/world/level/ChunkPos;)Z net/minecraft/world/level/LocalMobCapCalculator/canSpawn (Lnet/minecraft/world/entity/MobCategory;Lnet/minecraft/world/level/ChunkPos;)Z +MD: net/minecraft/world/level/LocalMobCapCalculator/m_186507_ (Lnet/minecraft/world/level/ChunkPos;)Ljava/util/List; net/minecraft/world/level/LocalMobCapCalculator/getPlayersNear (Lnet/minecraft/world/level/ChunkPos;)Ljava/util/List; +MD: net/minecraft/world/level/LocalMobCapCalculator/m_186509_ (Lnet/minecraft/world/level/ChunkPos;J)Ljava/util/List; net/minecraft/world/level/LocalMobCapCalculator/lambda$getPlayersNear$0 (Lnet/minecraft/world/level/ChunkPos;J)Ljava/util/List; +MD: net/minecraft/world/level/LocalMobCapCalculator/m_186512_ (Lnet/minecraft/world/level/ChunkPos;Lnet/minecraft/world/entity/MobCategory;)V net/minecraft/world/level/LocalMobCapCalculator/addMob (Lnet/minecraft/world/level/ChunkPos;Lnet/minecraft/world/entity/MobCategory;)V +MD: net/minecraft/world/level/LocalMobCapCalculator$MobCounts/ ()V net/minecraft/world/level/LocalMobCapCalculator$MobCounts/ ()V +MD: net/minecraft/world/level/LocalMobCapCalculator$MobCounts/m_186517_ (Lnet/minecraft/world/entity/MobCategory;)V net/minecraft/world/level/LocalMobCapCalculator$MobCounts/add (Lnet/minecraft/world/entity/MobCategory;)V +MD: net/minecraft/world/level/LocalMobCapCalculator$MobCounts/m_186519_ (Lnet/minecraft/world/entity/MobCategory;Ljava/lang/Integer;)Ljava/lang/Integer; net/minecraft/world/level/LocalMobCapCalculator$MobCounts/lambda$add$0 (Lnet/minecraft/world/entity/MobCategory;Ljava/lang/Integer;)Ljava/lang/Integer; +MD: net/minecraft/world/level/LocalMobCapCalculator$MobCounts/m_186522_ (Lnet/minecraft/world/entity/MobCategory;)Z net/minecraft/world/level/LocalMobCapCalculator$MobCounts/canSpawn (Lnet/minecraft/world/entity/MobCategory;)Z +MD: net/minecraft/world/level/NaturalSpawner/ ()V net/minecraft/world/level/NaturalSpawner/ ()V +MD: net/minecraft/world/level/NaturalSpawner/ ()V net/minecraft/world/level/NaturalSpawner/ ()V +MD: net/minecraft/world/level/NaturalSpawner/m_151605_ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/chunk/ChunkAccess;)Z net/minecraft/world/level/NaturalSpawner/lambda$spawnCategoryForPosition$3 (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/chunk/ChunkAccess;)Z +MD: net/minecraft/world/level/NaturalSpawner/m_151609_ (Lnet/minecraft/world/entity/Mob;Lnet/minecraft/world/level/chunk/ChunkAccess;)V net/minecraft/world/level/NaturalSpawner/lambda$spawnCategoryForPosition$4 (Lnet/minecraft/world/entity/Mob;Lnet/minecraft/world/level/chunk/ChunkAccess;)V +MD: net/minecraft/world/level/NaturalSpawner/m_151612_ (Lnet/minecraft/world/entity/MobCategory;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;)V net/minecraft/world/level/NaturalSpawner/spawnCategoryForPosition (Lnet/minecraft/world/entity/MobCategory;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/world/level/NaturalSpawner/m_186524_ (ILjava/lang/Iterable;Lnet/minecraft/world/level/NaturalSpawner$ChunkGetter;Lnet/minecraft/world/level/LocalMobCapCalculator;)Lnet/minecraft/world/level/NaturalSpawner$SpawnState; net/minecraft/world/level/NaturalSpawner/createState (ILjava/lang/Iterable;Lnet/minecraft/world/level/NaturalSpawner$ChunkGetter;Lnet/minecraft/world/level/LocalMobCapCalculator;)Lnet/minecraft/world/level/NaturalSpawner$SpawnState; +MD: net/minecraft/world/level/NaturalSpawner/m_220421_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/MobCategory;Lnet/minecraft/world/level/StructureManager;Lnet/minecraft/world/level/chunk/ChunkGenerator;Lnet/minecraft/world/level/biome/MobSpawnSettings$SpawnerData;Lnet/minecraft/core/BlockPos$MutableBlockPos;D)Z net/minecraft/world/level/NaturalSpawner/isValidSpawnPostitionForType (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/MobCategory;Lnet/minecraft/world/level/StructureManager;Lnet/minecraft/world/level/chunk/ChunkGenerator;Lnet/minecraft/world/level/biome/MobSpawnSettings$SpawnerData;Lnet/minecraft/core/BlockPos$MutableBlockPos;D)Z +MD: net/minecraft/world/level/NaturalSpawner/m_220429_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/level/StructureManager;Lnet/minecraft/world/level/chunk/ChunkGenerator;Lnet/minecraft/world/entity/MobCategory;Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos;)Ljava/util/Optional; net/minecraft/world/level/NaturalSpawner/getRandomSpawnMobAt (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/level/StructureManager;Lnet/minecraft/world/level/chunk/ChunkGenerator;Lnet/minecraft/world/entity/MobCategory;Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos;)Ljava/util/Optional; +MD: net/minecraft/world/level/NaturalSpawner/m_220436_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/level/StructureManager;Lnet/minecraft/world/level/chunk/ChunkGenerator;Lnet/minecraft/world/entity/MobCategory;Lnet/minecraft/world/level/biome/MobSpawnSettings$SpawnerData;Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/level/NaturalSpawner/canSpawnMobAt (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/level/StructureManager;Lnet/minecraft/world/level/chunk/ChunkGenerator;Lnet/minecraft/world/entity/MobCategory;Lnet/minecraft/world/level/biome/MobSpawnSettings$SpawnerData;Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/level/NaturalSpawner/m_220443_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/level/StructureManager;Lnet/minecraft/world/level/chunk/ChunkGenerator;Lnet/minecraft/world/entity/MobCategory;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Holder;)Lnet/minecraft/util/random/WeightedRandomList; net/minecraft/world/level/NaturalSpawner/mobsAt (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/level/StructureManager;Lnet/minecraft/world/level/chunk/ChunkGenerator;Lnet/minecraft/world/entity/MobCategory;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Holder;)Lnet/minecraft/util/random/WeightedRandomList; +MD: net/minecraft/world/level/NaturalSpawner/m_220450_ (Lnet/minecraft/world/level/ServerLevelAccessor;Lnet/minecraft/core/Holder;Lnet/minecraft/world/level/ChunkPos;Lnet/minecraft/util/RandomSource;)V net/minecraft/world/level/NaturalSpawner/spawnMobsForChunkGeneration (Lnet/minecraft/world/level/ServerLevelAccessor;Lnet/minecraft/core/Holder;Lnet/minecraft/world/level/ChunkPos;Lnet/minecraft/util/RandomSource;)V +MD: net/minecraft/world/level/NaturalSpawner/m_220455_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/MobCategory;Lnet/minecraft/world/level/StructureManager;)Z net/minecraft/world/level/NaturalSpawner/isInNetherFortressBounds (Lnet/minecraft/core/BlockPos;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/MobCategory;Lnet/minecraft/world/level/StructureManager;)Z +MD: net/minecraft/world/level/NaturalSpawner/m_274265_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/Entity;Lnet/minecraft/world/level/PotentialCalculator;Lnet/minecraft/world/level/LocalMobCapCalculator;Lnet/minecraft/world/entity/MobCategory;Lit/unimi/dsi/fastutil/objects/Object2IntOpenHashMap;Lnet/minecraft/world/level/chunk/LevelChunk;)V net/minecraft/world/level/NaturalSpawner/lambda$createState$2 (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/Entity;Lnet/minecraft/world/level/PotentialCalculator;Lnet/minecraft/world/level/LocalMobCapCalculator;Lnet/minecraft/world/entity/MobCategory;Lit/unimi/dsi/fastutil/objects/Object2IntOpenHashMap;Lnet/minecraft/world/level/chunk/LevelChunk;)V +MD: net/minecraft/world/level/NaturalSpawner/m_46982_ (I)[Lnet/minecraft/world/entity/MobCategory; net/minecraft/world/level/NaturalSpawner/lambda$static$1 (I)[Lnet/minecraft/world/entity/MobCategory; +MD: net/minecraft/world/level/NaturalSpawner/m_46988_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/EntityType;)Lnet/minecraft/world/entity/Mob; net/minecraft/world/level/NaturalSpawner/getMobForSpawn (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/EntityType;)Lnet/minecraft/world/entity/Mob; +MD: net/minecraft/world/level/NaturalSpawner/m_46991_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/Mob;D)Z net/minecraft/world/level/NaturalSpawner/isValidPositionForMob (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/Mob;D)Z +MD: net/minecraft/world/level/NaturalSpawner/m_47024_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/level/chunk/ChunkAccess;Lnet/minecraft/core/BlockPos$MutableBlockPos;D)Z net/minecraft/world/level/NaturalSpawner/isRightDistanceToPlayerAndSpawnPoint (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/level/chunk/ChunkAccess;Lnet/minecraft/core/BlockPos$MutableBlockPos;D)Z +MD: net/minecraft/world/level/NaturalSpawner/m_47029_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/level/chunk/LevelChunk;Lnet/minecraft/world/level/NaturalSpawner$SpawnState;ZZZ)V net/minecraft/world/level/NaturalSpawner/spawnForChunk (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/level/chunk/LevelChunk;Lnet/minecraft/world/level/NaturalSpawner$SpawnState;ZZZ)V +MD: net/minecraft/world/level/NaturalSpawner/m_47036_ (Lnet/minecraft/world/entity/MobCategory;)Z net/minecraft/world/level/NaturalSpawner/lambda$static$0 (Lnet/minecraft/world/entity/MobCategory;)Z +MD: net/minecraft/world/level/NaturalSpawner/m_47038_ (Lnet/minecraft/world/entity/MobCategory;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/level/chunk/ChunkAccess;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/NaturalSpawner$SpawnPredicate;Lnet/minecraft/world/level/NaturalSpawner$AfterSpawnCallback;)V net/minecraft/world/level/NaturalSpawner/spawnCategoryForPosition (Lnet/minecraft/world/entity/MobCategory;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/level/chunk/ChunkAccess;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/NaturalSpawner$SpawnPredicate;Lnet/minecraft/world/level/NaturalSpawner$AfterSpawnCallback;)V +MD: net/minecraft/world/level/NaturalSpawner/m_47045_ (Lnet/minecraft/world/entity/MobCategory;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/level/chunk/LevelChunk;Lnet/minecraft/world/level/NaturalSpawner$SpawnPredicate;Lnet/minecraft/world/level/NaturalSpawner$AfterSpawnCallback;)V net/minecraft/world/level/NaturalSpawner/spawnCategoryForChunk (Lnet/minecraft/world/entity/MobCategory;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/level/chunk/LevelChunk;Lnet/minecraft/world/level/NaturalSpawner$SpawnPredicate;Lnet/minecraft/world/level/NaturalSpawner$AfterSpawnCallback;)V +MD: net/minecraft/world/level/NaturalSpawner/m_47051_ (Lnet/minecraft/world/entity/SpawnPlacements$Type;Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/EntityType;)Z net/minecraft/world/level/NaturalSpawner/isSpawnPositionOk (Lnet/minecraft/world/entity/SpawnPlacements$Type;Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/EntityType;)Z +MD: net/minecraft/world/level/NaturalSpawner/m_47056_ (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/material/FluidState;Lnet/minecraft/world/entity/EntityType;)Z net/minecraft/world/level/NaturalSpawner/isValidEmptySpawnBlock (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/material/FluidState;Lnet/minecraft/world/entity/EntityType;)Z +MD: net/minecraft/world/level/NaturalSpawner/m_47062_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/level/chunk/LevelChunk;)Lnet/minecraft/core/BlockPos; net/minecraft/world/level/NaturalSpawner/getRandomPosWithin (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/level/chunk/LevelChunk;)Lnet/minecraft/core/BlockPos; +MD: net/minecraft/world/level/NaturalSpawner/m_47065_ (Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/world/entity/EntityType;II)Lnet/minecraft/core/BlockPos; net/minecraft/world/level/NaturalSpawner/getTopNonCollidingPos (Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/world/entity/EntityType;II)Lnet/minecraft/core/BlockPos; +MD: net/minecraft/world/level/NaturalSpawner/m_47095_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/chunk/ChunkAccess;)Lnet/minecraft/world/level/biome/Biome; net/minecraft/world/level/NaturalSpawner/getRoughBiome (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/chunk/ChunkAccess;)Lnet/minecraft/world/level/biome/Biome; +MD: net/minecraft/world/level/NaturalSpawner$1/ ()V net/minecraft/world/level/NaturalSpawner$1/ ()V +MD: net/minecraft/world/level/NaturalSpawner$AfterSpawnCallback/m_47100_ (Lnet/minecraft/world/entity/Mob;Lnet/minecraft/world/level/chunk/ChunkAccess;)V net/minecraft/world/level/NaturalSpawner$AfterSpawnCallback/run (Lnet/minecraft/world/entity/Mob;Lnet/minecraft/world/level/chunk/ChunkAccess;)V +MD: net/minecraft/world/level/NaturalSpawner$ChunkGetter/m_47103_ (JLjava/util/function/Consumer;)V net/minecraft/world/level/NaturalSpawner$ChunkGetter/query (JLjava/util/function/Consumer;)V +MD: net/minecraft/world/level/NaturalSpawner$SpawnPredicate/m_47106_ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/chunk/ChunkAccess;)Z net/minecraft/world/level/NaturalSpawner$SpawnPredicate/test (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/chunk/ChunkAccess;)Z +MD: net/minecraft/world/level/NaturalSpawner$SpawnState/ (ILit/unimi/dsi/fastutil/objects/Object2IntOpenHashMap;Lnet/minecraft/world/level/PotentialCalculator;Lnet/minecraft/world/level/LocalMobCapCalculator;)V net/minecraft/world/level/NaturalSpawner$SpawnState/ (ILit/unimi/dsi/fastutil/objects/Object2IntOpenHashMap;Lnet/minecraft/world/level/PotentialCalculator;Lnet/minecraft/world/level/LocalMobCapCalculator;)V +MD: net/minecraft/world/level/NaturalSpawner$SpawnState/m_186548_ (Lnet/minecraft/world/entity/MobCategory;Lnet/minecraft/world/level/ChunkPos;)Z net/minecraft/world/level/NaturalSpawner$SpawnState/canSpawnForCategory (Lnet/minecraft/world/entity/MobCategory;Lnet/minecraft/world/level/ChunkPos;)Z +MD: net/minecraft/world/level/NaturalSpawner$SpawnState/m_47126_ ()I net/minecraft/world/level/NaturalSpawner$SpawnState/getSpawnableChunkCount ()I +MD: net/minecraft/world/level/NaturalSpawner$SpawnState/m_47127_ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/chunk/ChunkAccess;)Z net/minecraft/world/level/NaturalSpawner$SpawnState/canSpawn (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/chunk/ChunkAccess;)Z +MD: net/minecraft/world/level/NaturalSpawner$SpawnState/m_47131_ (Lnet/minecraft/world/entity/Mob;Lnet/minecraft/world/level/chunk/ChunkAccess;)V net/minecraft/world/level/NaturalSpawner$SpawnState/afterSpawn (Lnet/minecraft/world/entity/Mob;Lnet/minecraft/world/level/chunk/ChunkAccess;)V +MD: net/minecraft/world/level/NaturalSpawner$SpawnState/m_47148_ ()Lit/unimi/dsi/fastutil/objects/Object2IntMap; net/minecraft/world/level/NaturalSpawner$SpawnState/getMobCategoryCounts ()Lit/unimi/dsi/fastutil/objects/Object2IntMap; +MD: net/minecraft/world/level/NoiseColumn/ (I[Lnet/minecraft/world/level/block/state/BlockState;)V net/minecraft/world/level/NoiseColumn/ (I[Lnet/minecraft/world/level/block/state/BlockState;)V +MD: net/minecraft/world/level/NoiseColumn/m_183556_ (I)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/NoiseColumn/getBlock (I)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/NoiseColumn/m_183639_ (ILnet/minecraft/world/level/block/state/BlockState;)V net/minecraft/world/level/NoiseColumn/setBlock (ILnet/minecraft/world/level/block/state/BlockState;)V +MD: net/minecraft/world/level/PathNavigationRegion/ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;)V net/minecraft/world/level/PathNavigationRegion/ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/world/level/PathNavigationRegion/m_141928_ ()I net/minecraft/world/level/PathNavigationRegion/getHeight ()I +MD: net/minecraft/world/level/PathNavigationRegion/m_141937_ ()I net/minecraft/world/level/PathNavigationRegion/getMinBuildHeight ()I +MD: net/minecraft/world/level/PathNavigationRegion/m_151625_ ()Lnet/minecraft/util/profiling/ProfilerFiller; net/minecraft/world/level/PathNavigationRegion/getProfiler ()Lnet/minecraft/util/profiling/ProfilerFiller; +MD: net/minecraft/world/level/PathNavigationRegion/m_183134_ (Lnet/minecraft/world/entity/Entity;Lnet/minecraft/world/phys/AABB;)Ljava/util/List; net/minecraft/world/level/PathNavigationRegion/getEntityCollisions (Lnet/minecraft/world/entity/Entity;Lnet/minecraft/world/phys/AABB;)Ljava/util/List; +MD: net/minecraft/world/level/PathNavigationRegion/m_268982_ (Lnet/minecraft/world/level/Level;)Lnet/minecraft/core/Holder; net/minecraft/world/level/PathNavigationRegion/lambda$new$0 (Lnet/minecraft/world/level/Level;)Lnet/minecraft/core/Holder; +MD: net/minecraft/world/level/PathNavigationRegion/m_47167_ (II)Lnet/minecraft/world/level/chunk/ChunkAccess; net/minecraft/world/level/PathNavigationRegion/getChunk (II)Lnet/minecraft/world/level/chunk/ChunkAccess; +MD: net/minecraft/world/level/PathNavigationRegion/m_47185_ (Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/chunk/ChunkAccess; net/minecraft/world/level/PathNavigationRegion/getChunk (Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/chunk/ChunkAccess; +MD: net/minecraft/world/level/PathNavigationRegion/m_6425_ (Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/material/FluidState; net/minecraft/world/level/PathNavigationRegion/getFluidState (Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/material/FluidState; +MD: net/minecraft/world/level/PathNavigationRegion/m_6857_ ()Lnet/minecraft/world/level/border/WorldBorder; net/minecraft/world/level/PathNavigationRegion/getWorldBorder ()Lnet/minecraft/world/level/border/WorldBorder; +MD: net/minecraft/world/level/PathNavigationRegion/m_7702_ (Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/entity/BlockEntity; net/minecraft/world/level/PathNavigationRegion/getBlockEntity (Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/entity/BlockEntity; +MD: net/minecraft/world/level/PathNavigationRegion/m_7925_ (II)Lnet/minecraft/world/level/BlockGetter; net/minecraft/world/level/PathNavigationRegion/getChunkForCollisions (II)Lnet/minecraft/world/level/BlockGetter; +MD: net/minecraft/world/level/PathNavigationRegion/m_8055_ (Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/PathNavigationRegion/getBlockState (Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/PotentialCalculator/ ()V net/minecraft/world/level/PotentialCalculator/ ()V +MD: net/minecraft/world/level/PotentialCalculator/m_47192_ (Lnet/minecraft/core/BlockPos;D)V net/minecraft/world/level/PotentialCalculator/addCharge (Lnet/minecraft/core/BlockPos;D)V +MD: net/minecraft/world/level/PotentialCalculator/m_47195_ (Lnet/minecraft/core/BlockPos;D)D net/minecraft/world/level/PotentialCalculator/getPotentialEnergyChange (Lnet/minecraft/core/BlockPos;D)D +MD: net/minecraft/world/level/PotentialCalculator$PointCharge/ (Lnet/minecraft/core/BlockPos;D)V net/minecraft/world/level/PotentialCalculator$PointCharge/ (Lnet/minecraft/core/BlockPos;D)V +MD: net/minecraft/world/level/PotentialCalculator$PointCharge/m_47203_ (Lnet/minecraft/core/BlockPos;)D net/minecraft/world/level/PotentialCalculator$PointCharge/getPotentialChange (Lnet/minecraft/core/BlockPos;)D +MD: net/minecraft/world/level/ServerLevelAccessor/m_47205_ (Lnet/minecraft/world/entity/Entity;)V net/minecraft/world/level/ServerLevelAccessor/addFreshEntityWithPassengers (Lnet/minecraft/world/entity/Entity;)V +MD: net/minecraft/world/level/ServerLevelAccessor/m_6018_ ()Lnet/minecraft/server/level/ServerLevel; net/minecraft/world/level/ServerLevelAccessor/getLevel ()Lnet/minecraft/server/level/ServerLevel; +MD: net/minecraft/world/level/SignalGetter/ ()V net/minecraft/world/level/SignalGetter/ ()V +MD: net/minecraft/world/level/SignalGetter/m_276867_ (Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/level/SignalGetter/hasNeighborSignal (Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/level/SignalGetter/m_276987_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Direction;)Z net/minecraft/world/level/SignalGetter/hasSignal (Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Direction;)Z +MD: net/minecraft/world/level/SignalGetter/m_277075_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Direction;)I net/minecraft/world/level/SignalGetter/getDirectSignal (Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Direction;)I +MD: net/minecraft/world/level/SignalGetter/m_277086_ (Lnet/minecraft/core/BlockPos;)I net/minecraft/world/level/SignalGetter/getBestNeighborSignal (Lnet/minecraft/core/BlockPos;)I +MD: net/minecraft/world/level/SignalGetter/m_277094_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Direction;Z)I net/minecraft/world/level/SignalGetter/getControlInputSignal (Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Direction;Z)I +MD: net/minecraft/world/level/SignalGetter/m_277173_ (Lnet/minecraft/core/BlockPos;)I net/minecraft/world/level/SignalGetter/getDirectSignalTo (Lnet/minecraft/core/BlockPos;)I +MD: net/minecraft/world/level/SignalGetter/m_277185_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Direction;)I net/minecraft/world/level/SignalGetter/getSignal (Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Direction;)I +MD: net/minecraft/world/level/SpawnData/ ()V net/minecraft/world/level/SpawnData/ ()V +MD: net/minecraft/world/level/SpawnData/ (Lnet/minecraft/nbt/CompoundTag;Ljava/util/Optional;)V net/minecraft/world/level/SpawnData/ (Lnet/minecraft/nbt/CompoundTag;Ljava/util/Optional;)V +MD: net/minecraft/world/level/SpawnData/ ()V net/minecraft/world/level/SpawnData/ ()V +MD: net/minecraft/world/level/SpawnData/equals (Ljava/lang/Object;)Z net/minecraft/world/level/SpawnData/equals (Ljava/lang/Object;)Z +MD: net/minecraft/world/level/SpawnData/f_186561_ ()Lnet/minecraft/nbt/CompoundTag; net/minecraft/world/level/SpawnData/entityToSpawn ()Lnet/minecraft/nbt/CompoundTag; +MD: net/minecraft/world/level/SpawnData/f_186562_ ()Ljava/util/Optional; net/minecraft/world/level/SpawnData/customSpawnRules ()Ljava/util/Optional; +MD: net/minecraft/world/level/SpawnData/hashCode ()I net/minecraft/world/level/SpawnData/hashCode ()I +MD: net/minecraft/world/level/SpawnData/m_186567_ ()Lnet/minecraft/nbt/CompoundTag; net/minecraft/world/level/SpawnData/getEntityToSpawn ()Lnet/minecraft/nbt/CompoundTag; +MD: net/minecraft/world/level/SpawnData/m_186568_ (Lnet/minecraft/world/level/SpawnData;)Ljava/util/Optional; net/minecraft/world/level/SpawnData/lambda$static$1 (Lnet/minecraft/world/level/SpawnData;)Ljava/util/Optional; +MD: net/minecraft/world/level/SpawnData/m_186570_ (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/world/level/SpawnData/lambda$static$2 (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/world/level/SpawnData/m_186574_ ()Ljava/util/Optional; net/minecraft/world/level/SpawnData/getCustomSpawnRules ()Ljava/util/Optional; +MD: net/minecraft/world/level/SpawnData/m_186575_ (Lnet/minecraft/world/level/SpawnData;)Lnet/minecraft/nbt/CompoundTag; net/minecraft/world/level/SpawnData/lambda$static$0 (Lnet/minecraft/world/level/SpawnData;)Lnet/minecraft/nbt/CompoundTag; +MD: net/minecraft/world/level/SpawnData/toString ()Ljava/lang/String; net/minecraft/world/level/SpawnData/toString ()Ljava/lang/String; +MD: net/minecraft/world/level/SpawnData$CustomSpawnRules/ ()V net/minecraft/world/level/SpawnData$CustomSpawnRules/ ()V +MD: net/minecraft/world/level/SpawnData$CustomSpawnRules/ (Lnet/minecraft/util/InclusiveRange;Lnet/minecraft/util/InclusiveRange;)V net/minecraft/world/level/SpawnData$CustomSpawnRules/ (Lnet/minecraft/util/InclusiveRange;Lnet/minecraft/util/InclusiveRange;)V +MD: net/minecraft/world/level/SpawnData$CustomSpawnRules/equals (Ljava/lang/Object;)Z net/minecraft/world/level/SpawnData$CustomSpawnRules/equals (Ljava/lang/Object;)Z +MD: net/minecraft/world/level/SpawnData$CustomSpawnRules/f_186584_ ()Lnet/minecraft/util/InclusiveRange; net/minecraft/world/level/SpawnData$CustomSpawnRules/blockLightLimit ()Lnet/minecraft/util/InclusiveRange; +MD: net/minecraft/world/level/SpawnData$CustomSpawnRules/f_186585_ ()Lnet/minecraft/util/InclusiveRange; net/minecraft/world/level/SpawnData$CustomSpawnRules/skyLightLimit ()Lnet/minecraft/util/InclusiveRange; +MD: net/minecraft/world/level/SpawnData$CustomSpawnRules/hashCode ()I net/minecraft/world/level/SpawnData$CustomSpawnRules/hashCode ()I +MD: net/minecraft/world/level/SpawnData$CustomSpawnRules/m_186592_ (Lnet/minecraft/util/InclusiveRange;)Lcom/mojang/serialization/DataResult; net/minecraft/world/level/SpawnData$CustomSpawnRules/checkLightBoundaries (Lnet/minecraft/util/InclusiveRange;)Lcom/mojang/serialization/DataResult; +MD: net/minecraft/world/level/SpawnData$CustomSpawnRules/m_186594_ (Lnet/minecraft/world/level/SpawnData$CustomSpawnRules;)Lnet/minecraft/util/InclusiveRange; net/minecraft/world/level/SpawnData$CustomSpawnRules/lambda$static$2 (Lnet/minecraft/world/level/SpawnData$CustomSpawnRules;)Lnet/minecraft/util/InclusiveRange; +MD: net/minecraft/world/level/SpawnData$CustomSpawnRules/m_186599_ (Lnet/minecraft/world/level/SpawnData$CustomSpawnRules;)Lnet/minecraft/util/InclusiveRange; net/minecraft/world/level/SpawnData$CustomSpawnRules/lambda$static$1 (Lnet/minecraft/world/level/SpawnData$CustomSpawnRules;)Lnet/minecraft/util/InclusiveRange; +MD: net/minecraft/world/level/SpawnData$CustomSpawnRules/m_274266_ ()Ljava/lang/String; net/minecraft/world/level/SpawnData$CustomSpawnRules/lambda$checkLightBoundaries$0 ()Ljava/lang/String; +MD: net/minecraft/world/level/SpawnData$CustomSpawnRules/m_285731_ (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/world/level/SpawnData$CustomSpawnRules/lambda$static$3 (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/world/level/SpawnData$CustomSpawnRules/m_285810_ (Ljava/lang/String;)Lcom/mojang/serialization/MapCodec; net/minecraft/world/level/SpawnData$CustomSpawnRules/lightLimit (Ljava/lang/String;)Lcom/mojang/serialization/MapCodec; +MD: net/minecraft/world/level/SpawnData$CustomSpawnRules/toString ()Ljava/lang/String; net/minecraft/world/level/SpawnData$CustomSpawnRules/toString ()Ljava/lang/String; +MD: net/minecraft/world/level/StructureManager/ (Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/world/level/levelgen/WorldOptions;Lnet/minecraft/world/level/levelgen/structure/StructureCheck;)V net/minecraft/world/level/StructureManager/ (Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/world/level/levelgen/WorldOptions;Lnet/minecraft/world/level/levelgen/structure/StructureCheck;)V +MD: net/minecraft/world/level/StructureManager/m_220467_ ()Z net/minecraft/world/level/StructureManager/shouldGenerateStructures ()Z +MD: net/minecraft/world/level/StructureManager/m_220468_ (Lnet/minecraft/server/level/WorldGenRegion;)Lnet/minecraft/world/level/StructureManager; net/minecraft/world/level/StructureManager/forWorldGenRegion (Lnet/minecraft/server/level/WorldGenRegion;)Lnet/minecraft/world/level/StructureManager; +MD: net/minecraft/world/level/StructureManager/m_220473_ (Lnet/minecraft/world/level/ChunkPos;Lnet/minecraft/world/level/levelgen/structure/Structure;Z)Lnet/minecraft/world/level/levelgen/structure/StructureCheckResult; net/minecraft/world/level/StructureManager/checkStructurePresence (Lnet/minecraft/world/level/ChunkPos;Lnet/minecraft/world/level/levelgen/structure/Structure;Z)Lnet/minecraft/world/level/levelgen/structure/StructureCheckResult; +MD: net/minecraft/world/level/StructureManager/m_220477_ (Lnet/minecraft/world/level/ChunkPos;Ljava/util/function/Predicate;)Ljava/util/List; net/minecraft/world/level/StructureManager/startsForStructure (Lnet/minecraft/world/level/ChunkPos;Ljava/util/function/Predicate;)Ljava/util/List; +MD: net/minecraft/world/level/StructureManager/m_220480_ (Lnet/minecraft/world/level/levelgen/structure/Structure;Lit/unimi/dsi/fastutil/longs/LongSet;Ljava/util/function/Consumer;)V net/minecraft/world/level/StructureManager/fillStartsForStructure (Lnet/minecraft/world/level/levelgen/structure/Structure;Lit/unimi/dsi/fastutil/longs/LongSet;Ljava/util/function/Consumer;)V +MD: net/minecraft/world/level/StructureManager/m_220484_ (Lnet/minecraft/world/level/levelgen/structure/StructureStart;)V net/minecraft/world/level/StructureManager/addReference (Lnet/minecraft/world/level/levelgen/structure/StructureStart;)V +MD: net/minecraft/world/level/StructureManager/m_220486_ (Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/level/StructureManager/hasAnyStructureAt (Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/level/StructureManager/m_220488_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/resources/ResourceKey;)Lnet/minecraft/world/level/levelgen/structure/StructureStart; net/minecraft/world/level/StructureManager/getStructureWithPieceAt (Lnet/minecraft/core/BlockPos;Lnet/minecraft/resources/ResourceKey;)Lnet/minecraft/world/level/levelgen/structure/StructureStart; +MD: net/minecraft/world/level/StructureManager/m_220491_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/tags/TagKey;)Lnet/minecraft/world/level/levelgen/structure/StructureStart; net/minecraft/world/level/StructureManager/getStructureWithPieceAt (Lnet/minecraft/core/BlockPos;Lnet/minecraft/tags/TagKey;)Lnet/minecraft/world/level/levelgen/structure/StructureStart; +MD: net/minecraft/world/level/StructureManager/m_220494_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/levelgen/structure/Structure;)Lnet/minecraft/world/level/levelgen/structure/StructureStart; net/minecraft/world/level/StructureManager/getStructureAt (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/levelgen/structure/Structure;)Lnet/minecraft/world/level/levelgen/structure/StructureStart; +MD: net/minecraft/world/level/StructureManager/m_220497_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/levelgen/structure/StructureStart;)Z net/minecraft/world/level/StructureManager/structureHasPieceAt (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/levelgen/structure/StructureStart;)Z +MD: net/minecraft/world/level/StructureManager/m_220504_ (Lnet/minecraft/core/SectionPos;Lnet/minecraft/world/level/levelgen/structure/Structure;)Ljava/util/List; net/minecraft/world/level/StructureManager/startsForStructure (Lnet/minecraft/core/SectionPos;Lnet/minecraft/world/level/levelgen/structure/Structure;)Ljava/util/List; +MD: net/minecraft/world/level/StructureManager/m_220507_ (Lnet/minecraft/core/SectionPos;Lnet/minecraft/world/level/levelgen/structure/Structure;JLnet/minecraft/world/level/chunk/StructureAccess;)V net/minecraft/world/level/StructureManager/addReferenceForStructure (Lnet/minecraft/core/SectionPos;Lnet/minecraft/world/level/levelgen/structure/Structure;JLnet/minecraft/world/level/chunk/StructureAccess;)V +MD: net/minecraft/world/level/StructureManager/m_220512_ (Lnet/minecraft/core/SectionPos;Lnet/minecraft/world/level/levelgen/structure/Structure;Lnet/minecraft/world/level/chunk/StructureAccess;)Lnet/minecraft/world/level/levelgen/structure/StructureStart; net/minecraft/world/level/StructureManager/getStartForStructure (Lnet/minecraft/core/SectionPos;Lnet/minecraft/world/level/levelgen/structure/Structure;Lnet/minecraft/world/level/chunk/StructureAccess;)Lnet/minecraft/world/level/levelgen/structure/StructureStart; +MD: net/minecraft/world/level/StructureManager/m_220516_ (Lnet/minecraft/core/SectionPos;Lnet/minecraft/world/level/levelgen/structure/Structure;Lnet/minecraft/world/level/levelgen/structure/StructureStart;Lnet/minecraft/world/level/chunk/StructureAccess;)V net/minecraft/world/level/StructureManager/setStartForStructure (Lnet/minecraft/core/SectionPos;Lnet/minecraft/world/level/levelgen/structure/Structure;Lnet/minecraft/world/level/levelgen/structure/StructureStart;Lnet/minecraft/world/level/chunk/StructureAccess;)V +MD: net/minecraft/world/level/StructureManager/m_220521_ ()Lnet/minecraft/core/RegistryAccess; net/minecraft/world/level/StructureManager/registryAccess ()Lnet/minecraft/core/RegistryAccess; +MD: net/minecraft/world/level/StructureManager/m_220522_ (Lnet/minecraft/core/BlockPos;)Ljava/util/Map; net/minecraft/world/level/StructureManager/getAllStructuresAt (Lnet/minecraft/core/BlockPos;)Ljava/util/Map; +MD: net/minecraft/world/level/StructureManager/m_220524_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/levelgen/structure/Structure;)Lnet/minecraft/world/level/levelgen/structure/StructureStart; net/minecraft/world/level/StructureManager/getStructureWithPieceAt (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/levelgen/structure/Structure;)Lnet/minecraft/world/level/levelgen/structure/StructureStart; +MD: net/minecraft/world/level/StructureManager/m_244994_ (Lnet/minecraft/tags/TagKey;Lnet/minecraft/core/Holder$Reference;)Ljava/lang/Boolean; net/minecraft/world/level/StructureManager/lambda$getStructureWithPieceAt$0 (Lnet/minecraft/tags/TagKey;Lnet/minecraft/core/Holder$Reference;)Ljava/lang/Boolean; +MD: net/minecraft/world/level/StructureManager/m_257323_ (Lnet/minecraft/core/Registry;Lnet/minecraft/tags/TagKey;Lnet/minecraft/world/level/levelgen/structure/Structure;)Z net/minecraft/world/level/StructureManager/lambda$getStructureWithPieceAt$1 (Lnet/minecraft/core/Registry;Lnet/minecraft/tags/TagKey;Lnet/minecraft/world/level/levelgen/structure/Structure;)Z +MD: net/minecraft/world/level/WorldDataConfiguration/ ()V net/minecraft/world/level/WorldDataConfiguration/ ()V +MD: net/minecraft/world/level/WorldDataConfiguration/ (Lnet/minecraft/world/level/DataPackConfig;Lnet/minecraft/world/flag/FeatureFlagSet;)V net/minecraft/world/level/WorldDataConfiguration/ (Lnet/minecraft/world/level/DataPackConfig;Lnet/minecraft/world/flag/FeatureFlagSet;)V +MD: net/minecraft/world/level/WorldDataConfiguration/equals (Ljava/lang/Object;)Z net/minecraft/world/level/WorldDataConfiguration/equals (Ljava/lang/Object;)Z +MD: net/minecraft/world/level/WorldDataConfiguration/f_243973_ ()Lnet/minecraft/world/flag/FeatureFlagSet; net/minecraft/world/level/WorldDataConfiguration/enabledFeatures ()Lnet/minecraft/world/flag/FeatureFlagSet; +MD: net/minecraft/world/level/WorldDataConfiguration/f_244096_ ()Lnet/minecraft/world/level/DataPackConfig; net/minecraft/world/level/WorldDataConfiguration/dataPacks ()Lnet/minecraft/world/level/DataPackConfig; +MD: net/minecraft/world/level/WorldDataConfiguration/hashCode ()I net/minecraft/world/level/WorldDataConfiguration/hashCode ()I +MD: net/minecraft/world/level/WorldDataConfiguration/m_245801_ (Lnet/minecraft/world/flag/FeatureFlagSet;)Lnet/minecraft/world/level/WorldDataConfiguration; net/minecraft/world/level/WorldDataConfiguration/expandFeatures (Lnet/minecraft/world/flag/FeatureFlagSet;)Lnet/minecraft/world/level/WorldDataConfiguration; +MD: net/minecraft/world/level/WorldDataConfiguration/m_247068_ (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/world/level/WorldDataConfiguration/lambda$static$0 (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/world/level/WorldDataConfiguration/toString ()Ljava/lang/String; net/minecraft/world/level/WorldDataConfiguration/toString ()Ljava/lang/String; +MD: net/minecraft/world/level/WorldGenLevel/m_143497_ (Ljava/util/function/Supplier;)V net/minecraft/world/level/WorldGenLevel/setCurrentlyGenerating (Ljava/util/function/Supplier;)V +MD: net/minecraft/world/level/WorldGenLevel/m_180807_ (Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/level/WorldGenLevel/ensureCanWrite (Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/level/WorldGenLevel/m_7328_ ()J net/minecraft/world/level/WorldGenLevel/getSeed ()J +MD: net/minecraft/world/level/biome/AmbientAdditionsSettings/ ()V net/minecraft/world/level/biome/AmbientAdditionsSettings/ ()V +MD: net/minecraft/world/level/biome/AmbientAdditionsSettings/ (Lnet/minecraft/core/Holder;D)V net/minecraft/world/level/biome/AmbientAdditionsSettings/ (Lnet/minecraft/core/Holder;D)V +MD: net/minecraft/world/level/biome/AmbientAdditionsSettings/m_151639_ (Lnet/minecraft/world/level/biome/AmbientAdditionsSettings;)Ljava/lang/Double; net/minecraft/world/level/biome/AmbientAdditionsSettings/lambda$static$1 (Lnet/minecraft/world/level/biome/AmbientAdditionsSettings;)Ljava/lang/Double; +MD: net/minecraft/world/level/biome/AmbientAdditionsSettings/m_263164_ (Lnet/minecraft/world/level/biome/AmbientAdditionsSettings;)Lnet/minecraft/core/Holder; net/minecraft/world/level/biome/AmbientAdditionsSettings/lambda$static$0 (Lnet/minecraft/world/level/biome/AmbientAdditionsSettings;)Lnet/minecraft/core/Holder; +MD: net/minecraft/world/level/biome/AmbientAdditionsSettings/m_263165_ (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/world/level/biome/AmbientAdditionsSettings/lambda$static$2 (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/world/level/biome/AmbientAdditionsSettings/m_263205_ ()Lnet/minecraft/core/Holder; net/minecraft/world/level/biome/AmbientAdditionsSettings/getSoundEvent ()Lnet/minecraft/core/Holder; +MD: net/minecraft/world/level/biome/AmbientAdditionsSettings/m_47383_ ()D net/minecraft/world/level/biome/AmbientAdditionsSettings/getTickChance ()D +MD: net/minecraft/world/level/biome/AmbientMoodSettings/ ()V net/minecraft/world/level/biome/AmbientMoodSettings/ ()V +MD: net/minecraft/world/level/biome/AmbientMoodSettings/ (Lnet/minecraft/core/Holder;IID)V net/minecraft/world/level/biome/AmbientMoodSettings/ (Lnet/minecraft/core/Holder;IID)V +MD: net/minecraft/world/level/biome/AmbientMoodSettings/m_151643_ (Lnet/minecraft/world/level/biome/AmbientMoodSettings;)Ljava/lang/Double; net/minecraft/world/level/biome/AmbientMoodSettings/lambda$static$3 (Lnet/minecraft/world/level/biome/AmbientMoodSettings;)Ljava/lang/Double; +MD: net/minecraft/world/level/biome/AmbientMoodSettings/m_151645_ (Lnet/minecraft/world/level/biome/AmbientMoodSettings;)Ljava/lang/Integer; net/minecraft/world/level/biome/AmbientMoodSettings/lambda$static$2 (Lnet/minecraft/world/level/biome/AmbientMoodSettings;)Ljava/lang/Integer; +MD: net/minecraft/world/level/biome/AmbientMoodSettings/m_151647_ (Lnet/minecraft/world/level/biome/AmbientMoodSettings;)Ljava/lang/Integer; net/minecraft/world/level/biome/AmbientMoodSettings/lambda$static$1 (Lnet/minecraft/world/level/biome/AmbientMoodSettings;)Ljava/lang/Integer; +MD: net/minecraft/world/level/biome/AmbientMoodSettings/m_263166_ (Lnet/minecraft/world/level/biome/AmbientMoodSettings;)Lnet/minecraft/core/Holder; net/minecraft/world/level/biome/AmbientMoodSettings/lambda$static$0 (Lnet/minecraft/world/level/biome/AmbientMoodSettings;)Lnet/minecraft/core/Holder; +MD: net/minecraft/world/level/biome/AmbientMoodSettings/m_263167_ (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/world/level/biome/AmbientMoodSettings/lambda$static$4 (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/world/level/biome/AmbientMoodSettings/m_263199_ ()Lnet/minecraft/core/Holder; net/minecraft/world/level/biome/AmbientMoodSettings/getSoundEvent ()Lnet/minecraft/core/Holder; +MD: net/minecraft/world/level/biome/AmbientMoodSettings/m_47403_ ()I net/minecraft/world/level/biome/AmbientMoodSettings/getTickDelay ()I +MD: net/minecraft/world/level/biome/AmbientMoodSettings/m_47406_ ()I net/minecraft/world/level/biome/AmbientMoodSettings/getBlockSearchExtent ()I +MD: net/minecraft/world/level/biome/AmbientMoodSettings/m_47409_ ()D net/minecraft/world/level/biome/AmbientMoodSettings/getSoundPositionOffset ()D +MD: net/minecraft/world/level/biome/AmbientParticleSettings/ ()V net/minecraft/world/level/biome/AmbientParticleSettings/ ()V +MD: net/minecraft/world/level/biome/AmbientParticleSettings/ (Lnet/minecraft/core/particles/ParticleOptions;F)V net/minecraft/world/level/biome/AmbientParticleSettings/ (Lnet/minecraft/core/particles/ParticleOptions;F)V +MD: net/minecraft/world/level/biome/AmbientParticleSettings/m_151651_ (Lnet/minecraft/world/level/biome/AmbientParticleSettings;)Ljava/lang/Float; net/minecraft/world/level/biome/AmbientParticleSettings/lambda$static$1 (Lnet/minecraft/world/level/biome/AmbientParticleSettings;)Ljava/lang/Float; +MD: net/minecraft/world/level/biome/AmbientParticleSettings/m_151653_ (Lnet/minecraft/world/level/biome/AmbientParticleSettings;)Lnet/minecraft/core/particles/ParticleOptions; net/minecraft/world/level/biome/AmbientParticleSettings/lambda$static$0 (Lnet/minecraft/world/level/biome/AmbientParticleSettings;)Lnet/minecraft/core/particles/ParticleOptions; +MD: net/minecraft/world/level/biome/AmbientParticleSettings/m_220527_ (Lnet/minecraft/util/RandomSource;)Z net/minecraft/world/level/biome/AmbientParticleSettings/canSpawn (Lnet/minecraft/util/RandomSource;)Z +MD: net/minecraft/world/level/biome/AmbientParticleSettings/m_47419_ ()Lnet/minecraft/core/particles/ParticleOptions; net/minecraft/world/level/biome/AmbientParticleSettings/getOptions ()Lnet/minecraft/core/particles/ParticleOptions; +MD: net/minecraft/world/level/biome/AmbientParticleSettings/m_47422_ (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/world/level/biome/AmbientParticleSettings/lambda$static$2 (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/world/level/biome/Biome/ ()V net/minecraft/world/level/biome/Biome/ ()V +MD: net/minecraft/world/level/biome/Biome/ (Lnet/minecraft/world/level/biome/Biome$ClimateSettings;Lnet/minecraft/world/level/biome/BiomeSpecialEffects;Lnet/minecraft/world/level/biome/BiomeGenerationSettings;Lnet/minecraft/world/level/biome/MobSpawnSettings;)V net/minecraft/world/level/biome/Biome/ (Lnet/minecraft/world/level/biome/Biome$ClimateSettings;Lnet/minecraft/world/level/biome/BiomeSpecialEffects;Lnet/minecraft/world/level/biome/BiomeGenerationSettings;Lnet/minecraft/world/level/biome/MobSpawnSettings;)V +MD: net/minecraft/world/level/biome/Biome/m_151716_ (Lnet/minecraft/world/level/biome/Biome;)Lnet/minecraft/world/level/biome/Biome$ClimateSettings; net/minecraft/world/level/biome/Biome/lambda$static$0 (Lnet/minecraft/world/level/biome/Biome;)Lnet/minecraft/world/level/biome/Biome$ClimateSettings; +MD: net/minecraft/world/level/biome/Biome/m_198904_ (Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/level/biome/Biome/coldEnoughToSnow (Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/level/biome/Biome/m_198906_ (Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/level/biome/Biome/warmEnoughToRain (Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/level/biome/Biome/m_198908_ (Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/level/biome/Biome/shouldMeltFrozenOceanIcebergSlightly (Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/level/biome/Biome/m_220534_ (Lnet/minecraft/world/level/biome/Biome$ClimateSettings;Lnet/minecraft/world/level/biome/BiomeSpecialEffects;)Lnet/minecraft/world/level/biome/Biome; net/minecraft/world/level/biome/Biome/lambda$static$7 (Lnet/minecraft/world/level/biome/Biome$ClimateSettings;Lnet/minecraft/world/level/biome/BiomeSpecialEffects;)Lnet/minecraft/world/level/biome/Biome; +MD: net/minecraft/world/level/biome/Biome/m_220537_ (Lnet/minecraft/world/level/biome/Biome;)Lnet/minecraft/world/level/biome/BiomeSpecialEffects; net/minecraft/world/level/biome/Biome/lambda$static$6 (Lnet/minecraft/world/level/biome/Biome;)Lnet/minecraft/world/level/biome/BiomeSpecialEffects; +MD: net/minecraft/world/level/biome/Biome/m_220539_ (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/world/level/biome/Biome/lambda$static$8 (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/world/level/biome/Biome/m_220541_ (Lnet/minecraft/world/level/biome/Biome;)Lnet/minecraft/world/level/biome/Biome$ClimateSettings; net/minecraft/world/level/biome/Biome/lambda$static$5 (Lnet/minecraft/world/level/biome/Biome;)Lnet/minecraft/world/level/biome/Biome$ClimateSettings; +MD: net/minecraft/world/level/biome/Biome/m_220543_ (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/world/level/biome/Biome/lambda$static$4 (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/world/level/biome/Biome/m_220545_ (Lnet/minecraft/world/level/biome/Biome;)Lnet/minecraft/world/level/biome/MobSpawnSettings; net/minecraft/world/level/biome/Biome/lambda$static$3 (Lnet/minecraft/world/level/biome/Biome;)Lnet/minecraft/world/level/biome/MobSpawnSettings; +MD: net/minecraft/world/level/biome/Biome/m_220547_ (Lnet/minecraft/world/level/biome/Biome;)Lnet/minecraft/world/level/biome/BiomeGenerationSettings; net/minecraft/world/level/biome/Biome/lambda$static$2 (Lnet/minecraft/world/level/biome/Biome;)Lnet/minecraft/world/level/biome/BiomeGenerationSettings; +MD: net/minecraft/world/level/biome/Biome/m_220549_ (Lnet/minecraft/world/level/biome/Biome;)Lnet/minecraft/world/level/biome/BiomeSpecialEffects; net/minecraft/world/level/biome/Biome/lambda$static$1 (Lnet/minecraft/world/level/biome/Biome;)Lnet/minecraft/world/level/biome/BiomeSpecialEffects; +MD: net/minecraft/world/level/biome/Biome/m_220551_ ()Lit/unimi/dsi/fastutil/longs/Long2FloatLinkedOpenHashMap; net/minecraft/world/level/biome/Biome/lambda$new$10 ()Lit/unimi/dsi/fastutil/longs/Long2FloatLinkedOpenHashMap; +MD: net/minecraft/world/level/biome/Biome/m_220552_ ()Lit/unimi/dsi/fastutil/longs/Long2FloatLinkedOpenHashMap; net/minecraft/world/level/biome/Biome/lambda$new$9 ()Lit/unimi/dsi/fastutil/longs/Long2FloatLinkedOpenHashMap; +MD: net/minecraft/world/level/biome/Biome/m_264473_ ()Z net/minecraft/world/level/biome/Biome/hasPrecipitation ()Z +MD: net/minecraft/world/level/biome/Biome/m_264600_ (Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/biome/Biome$Precipitation; net/minecraft/world/level/biome/Biome/getPrecipitationAt (Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/biome/Biome$Precipitation; +MD: net/minecraft/world/level/biome/Biome/m_47463_ ()I net/minecraft/world/level/biome/Biome/getSkyColor ()I +MD: net/minecraft/world/level/biome/Biome/m_47464_ (DD)I net/minecraft/world/level/biome/Biome/getGrassColor (DD)I +MD: net/minecraft/world/level/biome/Biome/m_47477_ (Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/level/biome/Biome/shouldFreeze (Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/level/biome/Biome/m_47480_ (Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;Z)Z net/minecraft/world/level/biome/Biome/shouldFreeze (Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;Z)Z +MD: net/minecraft/world/level/biome/Biome/m_47505_ (Lnet/minecraft/core/BlockPos;)F net/minecraft/world/level/biome/Biome/getTemperature (Lnet/minecraft/core/BlockPos;)F +MD: net/minecraft/world/level/biome/Biome/m_47518_ ()Lnet/minecraft/world/level/biome/MobSpawnSettings; net/minecraft/world/level/biome/Biome/getMobSettings ()Lnet/minecraft/world/level/biome/MobSpawnSettings; +MD: net/minecraft/world/level/biome/Biome/m_47519_ (Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/level/biome/Biome/shouldSnow (Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/level/biome/Biome/m_47528_ (Lnet/minecraft/core/BlockPos;)F net/minecraft/world/level/biome/Biome/getHeightAdjustedTemperature (Lnet/minecraft/core/BlockPos;)F +MD: net/minecraft/world/level/biome/Biome/m_47536_ ()Lnet/minecraft/world/level/biome/BiomeGenerationSettings; net/minecraft/world/level/biome/Biome/getGenerationSettings ()Lnet/minecraft/world/level/biome/BiomeGenerationSettings; +MD: net/minecraft/world/level/biome/Biome/m_47539_ ()I net/minecraft/world/level/biome/Biome/getFogColor ()I +MD: net/minecraft/world/level/biome/Biome/m_47542_ ()I net/minecraft/world/level/biome/Biome/getFoliageColor ()I +MD: net/minecraft/world/level/biome/Biome/m_47554_ ()F net/minecraft/world/level/biome/Biome/getBaseTemperature ()F +MD: net/minecraft/world/level/biome/Biome/m_47557_ ()Lnet/minecraft/world/level/biome/BiomeSpecialEffects; net/minecraft/world/level/biome/Biome/getSpecialEffects ()Lnet/minecraft/world/level/biome/BiomeSpecialEffects; +MD: net/minecraft/world/level/biome/Biome/m_47560_ ()I net/minecraft/world/level/biome/Biome/getWaterColor ()I +MD: net/minecraft/world/level/biome/Biome/m_47561_ ()I net/minecraft/world/level/biome/Biome/getWaterFogColor ()I +MD: net/minecraft/world/level/biome/Biome/m_47562_ ()Ljava/util/Optional; net/minecraft/world/level/biome/Biome/getAmbientParticle ()Ljava/util/Optional; +MD: net/minecraft/world/level/biome/Biome/m_47563_ ()Ljava/util/Optional; net/minecraft/world/level/biome/Biome/getAmbientLoop ()Ljava/util/Optional; +MD: net/minecraft/world/level/biome/Biome/m_47564_ ()Ljava/util/Optional; net/minecraft/world/level/biome/Biome/getAmbientMood ()Ljava/util/Optional; +MD: net/minecraft/world/level/biome/Biome/m_47565_ ()Ljava/util/Optional; net/minecraft/world/level/biome/Biome/getAmbientAdditions ()Ljava/util/Optional; +MD: net/minecraft/world/level/biome/Biome/m_47566_ ()Ljava/util/Optional; net/minecraft/world/level/biome/Biome/getBackgroundMusic ()Ljava/util/Optional; +MD: net/minecraft/world/level/biome/Biome/m_47570_ ()I net/minecraft/world/level/biome/Biome/getGrassColorFromTexture ()I +MD: net/minecraft/world/level/biome/Biome/m_47571_ ()I net/minecraft/world/level/biome/Biome/getFoliageColorFromTexture ()I +MD: net/minecraft/world/level/biome/Biome$1/ (Lnet/minecraft/world/level/biome/Biome;IF)V net/minecraft/world/level/biome/Biome$1/ (Lnet/minecraft/world/level/biome/Biome;IF)V +MD: net/minecraft/world/level/biome/Biome$1/rehash (I)V net/minecraft/world/level/biome/Biome$1/rehash (I)V +MD: net/minecraft/world/level/biome/Biome$BiomeBuilder/ ()V net/minecraft/world/level/biome/Biome$BiomeBuilder/ ()V +MD: net/minecraft/world/level/biome/Biome$BiomeBuilder/m_264558_ (Z)Lnet/minecraft/world/level/biome/Biome$BiomeBuilder; net/minecraft/world/level/biome/Biome$BiomeBuilder/hasPrecipitation (Z)Lnet/minecraft/world/level/biome/Biome$BiomeBuilder; +MD: net/minecraft/world/level/biome/Biome$BiomeBuilder/m_47592_ ()Lnet/minecraft/world/level/biome/Biome; net/minecraft/world/level/biome/Biome$BiomeBuilder/build ()Lnet/minecraft/world/level/biome/Biome; +MD: net/minecraft/world/level/biome/Biome$BiomeBuilder/m_47599_ (Lnet/minecraft/world/level/biome/Biome$TemperatureModifier;)Lnet/minecraft/world/level/biome/Biome$BiomeBuilder; net/minecraft/world/level/biome/Biome$BiomeBuilder/temperatureAdjustment (Lnet/minecraft/world/level/biome/Biome$TemperatureModifier;)Lnet/minecraft/world/level/biome/Biome$BiomeBuilder; +MD: net/minecraft/world/level/biome/Biome$BiomeBuilder/m_47601_ (Lnet/minecraft/world/level/biome/BiomeGenerationSettings;)Lnet/minecraft/world/level/biome/Biome$BiomeBuilder; net/minecraft/world/level/biome/Biome$BiomeBuilder/generationSettings (Lnet/minecraft/world/level/biome/BiomeGenerationSettings;)Lnet/minecraft/world/level/biome/Biome$BiomeBuilder; +MD: net/minecraft/world/level/biome/Biome$BiomeBuilder/m_47603_ (Lnet/minecraft/world/level/biome/BiomeSpecialEffects;)Lnet/minecraft/world/level/biome/Biome$BiomeBuilder; net/minecraft/world/level/biome/Biome$BiomeBuilder/specialEffects (Lnet/minecraft/world/level/biome/BiomeSpecialEffects;)Lnet/minecraft/world/level/biome/Biome$BiomeBuilder; +MD: net/minecraft/world/level/biome/Biome$BiomeBuilder/m_47605_ (Lnet/minecraft/world/level/biome/MobSpawnSettings;)Lnet/minecraft/world/level/biome/Biome$BiomeBuilder; net/minecraft/world/level/biome/Biome$BiomeBuilder/mobSpawnSettings (Lnet/minecraft/world/level/biome/MobSpawnSettings;)Lnet/minecraft/world/level/biome/Biome$BiomeBuilder; +MD: net/minecraft/world/level/biome/Biome$BiomeBuilder/m_47609_ (F)Lnet/minecraft/world/level/biome/Biome$BiomeBuilder; net/minecraft/world/level/biome/Biome$BiomeBuilder/temperature (F)Lnet/minecraft/world/level/biome/Biome$BiomeBuilder; +MD: net/minecraft/world/level/biome/Biome$BiomeBuilder/m_47611_ (F)Lnet/minecraft/world/level/biome/Biome$BiomeBuilder; net/minecraft/world/level/biome/Biome$BiomeBuilder/downfall (F)Lnet/minecraft/world/level/biome/Biome$BiomeBuilder; +MD: net/minecraft/world/level/biome/Biome$BiomeBuilder/toString ()Ljava/lang/String; net/minecraft/world/level/biome/Biome$BiomeBuilder/toString ()Ljava/lang/String; +MD: net/minecraft/world/level/biome/Biome$ClimateSettings/ ()V net/minecraft/world/level/biome/Biome$ClimateSettings/ ()V +MD: net/minecraft/world/level/biome/Biome$ClimateSettings/ (ZFLnet/minecraft/world/level/biome/Biome$TemperatureModifier;F)V net/minecraft/world/level/biome/Biome$ClimateSettings/ (ZFLnet/minecraft/world/level/biome/Biome$TemperatureModifier;F)V +MD: net/minecraft/world/level/biome/Biome$ClimateSettings/equals (Ljava/lang/Object;)Z net/minecraft/world/level/biome/Biome$ClimateSettings/equals (Ljava/lang/Object;)Z +MD: net/minecraft/world/level/biome/Biome$ClimateSettings/f_263819_ ()Z net/minecraft/world/level/biome/Biome$ClimateSettings/hasPrecipitation ()Z +MD: net/minecraft/world/level/biome/Biome$ClimateSettings/f_47681_ ()F net/minecraft/world/level/biome/Biome$ClimateSettings/temperature ()F +MD: net/minecraft/world/level/biome/Biome$ClimateSettings/f_47682_ ()Lnet/minecraft/world/level/biome/Biome$TemperatureModifier; net/minecraft/world/level/biome/Biome$ClimateSettings/temperatureModifier ()Lnet/minecraft/world/level/biome/Biome$TemperatureModifier; +MD: net/minecraft/world/level/biome/Biome$ClimateSettings/f_47683_ ()F net/minecraft/world/level/biome/Biome$ClimateSettings/downfall ()F +MD: net/minecraft/world/level/biome/Biome$ClimateSettings/hashCode ()I net/minecraft/world/level/biome/Biome$ClimateSettings/hashCode ()I +MD: net/minecraft/world/level/biome/Biome$ClimateSettings/m_151732_ (Lnet/minecraft/world/level/biome/Biome$ClimateSettings;)Ljava/lang/Float; net/minecraft/world/level/biome/Biome$ClimateSettings/lambda$static$3 (Lnet/minecraft/world/level/biome/Biome$ClimateSettings;)Ljava/lang/Float; +MD: net/minecraft/world/level/biome/Biome$ClimateSettings/m_151734_ (Lnet/minecraft/world/level/biome/Biome$ClimateSettings;)Lnet/minecraft/world/level/biome/Biome$TemperatureModifier; net/minecraft/world/level/biome/Biome$ClimateSettings/lambda$static$2 (Lnet/minecraft/world/level/biome/Biome$ClimateSettings;)Lnet/minecraft/world/level/biome/Biome$TemperatureModifier; +MD: net/minecraft/world/level/biome/Biome$ClimateSettings/m_151736_ (Lnet/minecraft/world/level/biome/Biome$ClimateSettings;)Ljava/lang/Float; net/minecraft/world/level/biome/Biome$ClimateSettings/lambda$static$1 (Lnet/minecraft/world/level/biome/Biome$ClimateSettings;)Ljava/lang/Float; +MD: net/minecraft/world/level/biome/Biome$ClimateSettings/m_264019_ (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/world/level/biome/Biome$ClimateSettings/lambda$static$4 (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/world/level/biome/Biome$ClimateSettings/m_264020_ (Lnet/minecraft/world/level/biome/Biome$ClimateSettings;)Ljava/lang/Boolean; net/minecraft/world/level/biome/Biome$ClimateSettings/lambda$static$0 (Lnet/minecraft/world/level/biome/Biome$ClimateSettings;)Ljava/lang/Boolean; +MD: net/minecraft/world/level/biome/Biome$ClimateSettings/toString ()Ljava/lang/String; net/minecraft/world/level/biome/Biome$ClimateSettings/toString ()Ljava/lang/String; +MD: net/minecraft/world/level/biome/Biome$Precipitation/ ()V net/minecraft/world/level/biome/Biome$Precipitation/ ()V +MD: net/minecraft/world/level/biome/Biome$Precipitation/ (Ljava/lang/String;I)V net/minecraft/world/level/biome/Biome$Precipitation/ (Ljava/lang/String;I)V +MD: net/minecraft/world/level/biome/Biome$Precipitation/m_151740_ ()[Lnet/minecraft/world/level/biome/Biome$Precipitation; net/minecraft/world/level/biome/Biome$Precipitation/$values ()[Lnet/minecraft/world/level/biome/Biome$Precipitation; +MD: net/minecraft/world/level/biome/Biome$Precipitation/valueOf (Ljava/lang/String;)Lnet/minecraft/world/level/biome/Biome$Precipitation; net/minecraft/world/level/biome/Biome$Precipitation/valueOf (Ljava/lang/String;)Lnet/minecraft/world/level/biome/Biome$Precipitation; +MD: net/minecraft/world/level/biome/Biome$Precipitation/values ()[Lnet/minecraft/world/level/biome/Biome$Precipitation; net/minecraft/world/level/biome/Biome$Precipitation/values ()[Lnet/minecraft/world/level/biome/Biome$Precipitation; +MD: net/minecraft/world/level/biome/Biome$TemperatureModifier/ ()V net/minecraft/world/level/biome/Biome$TemperatureModifier/ ()V +MD: net/minecraft/world/level/biome/Biome$TemperatureModifier/ (Ljava/lang/String;ILjava/lang/String;)V net/minecraft/world/level/biome/Biome$TemperatureModifier/ (Ljava/lang/String;ILjava/lang/String;)V +MD: net/minecraft/world/level/biome/Biome$TemperatureModifier/m_151741_ ()[Lnet/minecraft/world/level/biome/Biome$TemperatureModifier; net/minecraft/world/level/biome/Biome$TemperatureModifier/$values ()[Lnet/minecraft/world/level/biome/Biome$TemperatureModifier; +MD: net/minecraft/world/level/biome/Biome$TemperatureModifier/m_47758_ ()Ljava/lang/String; net/minecraft/world/level/biome/Biome$TemperatureModifier/getName ()Ljava/lang/String; +MD: net/minecraft/world/level/biome/Biome$TemperatureModifier/m_7912_ ()Ljava/lang/String; net/minecraft/world/level/biome/Biome$TemperatureModifier/getSerializedName ()Ljava/lang/String; +MD: net/minecraft/world/level/biome/Biome$TemperatureModifier/m_8117_ (Lnet/minecraft/core/BlockPos;F)F net/minecraft/world/level/biome/Biome$TemperatureModifier/modifyTemperature (Lnet/minecraft/core/BlockPos;F)F +MD: net/minecraft/world/level/biome/Biome$TemperatureModifier/valueOf (Ljava/lang/String;)Lnet/minecraft/world/level/biome/Biome$TemperatureModifier; net/minecraft/world/level/biome/Biome$TemperatureModifier/valueOf (Ljava/lang/String;)Lnet/minecraft/world/level/biome/Biome$TemperatureModifier; +MD: net/minecraft/world/level/biome/Biome$TemperatureModifier/values ()[Lnet/minecraft/world/level/biome/Biome$TemperatureModifier; net/minecraft/world/level/biome/Biome$TemperatureModifier/values ()[Lnet/minecraft/world/level/biome/Biome$TemperatureModifier; +MD: net/minecraft/world/level/biome/Biome$TemperatureModifier$1/ (Ljava/lang/String;ILjava/lang/String;)V net/minecraft/world/level/biome/Biome$TemperatureModifier$1/ (Ljava/lang/String;ILjava/lang/String;)V +MD: net/minecraft/world/level/biome/Biome$TemperatureModifier$1/m_8117_ (Lnet/minecraft/core/BlockPos;F)F net/minecraft/world/level/biome/Biome$TemperatureModifier$1/modifyTemperature (Lnet/minecraft/core/BlockPos;F)F +MD: net/minecraft/world/level/biome/Biome$TemperatureModifier$2/ (Ljava/lang/String;ILjava/lang/String;)V net/minecraft/world/level/biome/Biome$TemperatureModifier$2/ (Ljava/lang/String;ILjava/lang/String;)V +MD: net/minecraft/world/level/biome/Biome$TemperatureModifier$2/m_8117_ (Lnet/minecraft/core/BlockPos;F)F net/minecraft/world/level/biome/Biome$TemperatureModifier$2/modifyTemperature (Lnet/minecraft/core/BlockPos;F)F +MD: net/minecraft/world/level/biome/BiomeGenerationSettings/ ()V net/minecraft/world/level/biome/BiomeGenerationSettings/ ()V +MD: net/minecraft/world/level/biome/BiomeGenerationSettings/ (Ljava/util/Map;Ljava/util/List;)V net/minecraft/world/level/biome/BiomeGenerationSettings/ (Ljava/util/Map;Ljava/util/List;)V +MD: net/minecraft/world/level/biome/BiomeGenerationSettings/m_186652_ (Lnet/minecraft/world/level/biome/BiomeGenerationSettings;)Ljava/util/List; net/minecraft/world/level/biome/BiomeGenerationSettings/lambda$static$1 (Lnet/minecraft/world/level/biome/BiomeGenerationSettings;)Ljava/util/List; +MD: net/minecraft/world/level/biome/BiomeGenerationSettings/m_186654_ (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/world/level/biome/BiomeGenerationSettings/lambda$static$2 (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/world/level/biome/BiomeGenerationSettings/m_186656_ (Lnet/minecraft/world/level/levelgen/feature/ConfiguredFeature;)Z net/minecraft/world/level/biome/BiomeGenerationSettings/lambda$new$3 (Lnet/minecraft/world/level/levelgen/feature/ConfiguredFeature;)Z +MD: net/minecraft/world/level/biome/BiomeGenerationSettings/m_186658_ (Lnet/minecraft/world/level/levelgen/placement/PlacedFeature;)Z net/minecraft/world/level/biome/BiomeGenerationSettings/hasFeature (Lnet/minecraft/world/level/levelgen/placement/PlacedFeature;)Z +MD: net/minecraft/world/level/biome/BiomeGenerationSettings/m_186660_ (Lnet/minecraft/world/level/biome/BiomeGenerationSettings;)Ljava/util/Map; net/minecraft/world/level/biome/BiomeGenerationSettings/lambda$static$0 (Lnet/minecraft/world/level/biome/BiomeGenerationSettings;)Ljava/util/Map; +MD: net/minecraft/world/level/biome/BiomeGenerationSettings/m_204187_ (Lnet/minecraft/world/level/levelgen/GenerationStep$Carving;)Ljava/lang/Iterable; net/minecraft/world/level/biome/BiomeGenerationSettings/getCarvers (Lnet/minecraft/world/level/levelgen/GenerationStep$Carving;)Ljava/lang/Iterable; +MD: net/minecraft/world/level/biome/BiomeGenerationSettings/m_204189_ (Ljava/util/List;)Ljava/util/Set; net/minecraft/world/level/biome/BiomeGenerationSettings/lambda$new$5 (Ljava/util/List;)Ljava/util/Set; +MD: net/minecraft/world/level/biome/BiomeGenerationSettings/m_204191_ (Ljava/util/List;)Ljava/util/List; net/minecraft/world/level/biome/BiomeGenerationSettings/lambda$new$4 (Ljava/util/List;)Ljava/util/List; +MD: net/minecraft/world/level/biome/BiomeGenerationSettings/m_47815_ ()Ljava/util/List; net/minecraft/world/level/biome/BiomeGenerationSettings/getFlowerFeatures ()Ljava/util/List; +MD: net/minecraft/world/level/biome/BiomeGenerationSettings/m_47818_ ()Ljava/util/List; net/minecraft/world/level/biome/BiomeGenerationSettings/features ()Ljava/util/List; +MD: net/minecraft/world/level/biome/BiomeGenerationSettings$Builder/ (Lnet/minecraft/core/HolderGetter;Lnet/minecraft/core/HolderGetter;)V net/minecraft/world/level/biome/BiomeGenerationSettings$Builder/ (Lnet/minecraft/core/HolderGetter;Lnet/minecraft/core/HolderGetter;)V +MD: net/minecraft/world/level/biome/BiomeGenerationSettings$Builder/m_255155_ (Lnet/minecraft/world/level/levelgen/GenerationStep$Decoration;Lnet/minecraft/resources/ResourceKey;)Lnet/minecraft/world/level/biome/BiomeGenerationSettings$Builder; net/minecraft/world/level/biome/BiomeGenerationSettings$Builder/addFeature (Lnet/minecraft/world/level/levelgen/GenerationStep$Decoration;Lnet/minecraft/resources/ResourceKey;)Lnet/minecraft/world/level/biome/BiomeGenerationSettings$Builder; +MD: net/minecraft/world/level/biome/BiomeGenerationSettings$Builder/m_255308_ (Lnet/minecraft/world/level/levelgen/GenerationStep$Carving;Lnet/minecraft/resources/ResourceKey;)Lnet/minecraft/world/level/biome/BiomeGenerationSettings$Builder; net/minecraft/world/level/biome/BiomeGenerationSettings$Builder/addCarver (Lnet/minecraft/world/level/levelgen/GenerationStep$Carving;Lnet/minecraft/resources/ResourceKey;)Lnet/minecraft/world/level/biome/BiomeGenerationSettings$Builder; +MD: net/minecraft/world/level/biome/BiomeGenerationSettings$PlainBuilder/ ()V net/minecraft/world/level/biome/BiomeGenerationSettings$PlainBuilder/ ()V +MD: net/minecraft/world/level/biome/BiomeGenerationSettings$PlainBuilder/m_254863_ (Lnet/minecraft/world/level/levelgen/GenerationStep$Carving;Lnet/minecraft/core/Holder;)Lnet/minecraft/world/level/biome/BiomeGenerationSettings$PlainBuilder; net/minecraft/world/level/biome/BiomeGenerationSettings$PlainBuilder/addCarver (Lnet/minecraft/world/level/levelgen/GenerationStep$Carving;Lnet/minecraft/core/Holder;)Lnet/minecraft/world/level/biome/BiomeGenerationSettings$PlainBuilder; +MD: net/minecraft/world/level/biome/BiomeGenerationSettings$PlainBuilder/m_254982_ (ILnet/minecraft/core/Holder;)Lnet/minecraft/world/level/biome/BiomeGenerationSettings$PlainBuilder; net/minecraft/world/level/biome/BiomeGenerationSettings$PlainBuilder/addFeature (ILnet/minecraft/core/Holder;)Lnet/minecraft/world/level/biome/BiomeGenerationSettings$PlainBuilder; +MD: net/minecraft/world/level/biome/BiomeGenerationSettings$PlainBuilder/m_255250_ (Ljava/util/Map$Entry;)Lnet/minecraft/core/HolderSet; net/minecraft/world/level/biome/BiomeGenerationSettings$PlainBuilder/lambda$build$1 (Ljava/util/Map$Entry;)Lnet/minecraft/core/HolderSet; +MD: net/minecraft/world/level/biome/BiomeGenerationSettings$PlainBuilder/m_255276_ (I)V net/minecraft/world/level/biome/BiomeGenerationSettings$PlainBuilder/addFeatureStepsUpTo (I)V +MD: net/minecraft/world/level/biome/BiomeGenerationSettings$PlainBuilder/m_255277_ (Lnet/minecraft/world/level/levelgen/GenerationStep$Carving;)Ljava/util/List; net/minecraft/world/level/biome/BiomeGenerationSettings$PlainBuilder/lambda$addCarver$0 (Lnet/minecraft/world/level/levelgen/GenerationStep$Carving;)Ljava/util/List; +MD: net/minecraft/world/level/biome/BiomeGenerationSettings$PlainBuilder/m_255380_ ()Lnet/minecraft/world/level/biome/BiomeGenerationSettings; net/minecraft/world/level/biome/BiomeGenerationSettings$PlainBuilder/build ()Lnet/minecraft/world/level/biome/BiomeGenerationSettings; +MD: net/minecraft/world/level/biome/BiomeGenerationSettings$PlainBuilder/m_255419_ (Lnet/minecraft/world/level/levelgen/GenerationStep$Decoration;Lnet/minecraft/core/Holder;)Lnet/minecraft/world/level/biome/BiomeGenerationSettings$PlainBuilder; net/minecraft/world/level/biome/BiomeGenerationSettings$PlainBuilder/addFeature (Lnet/minecraft/world/level/levelgen/GenerationStep$Decoration;Lnet/minecraft/core/Holder;)Lnet/minecraft/world/level/biome/BiomeGenerationSettings$PlainBuilder; +MD: net/minecraft/world/level/biome/BiomeManager/ ()V net/minecraft/world/level/biome/BiomeManager/ ()V +MD: net/minecraft/world/level/biome/BiomeManager/ (Lnet/minecraft/world/level/biome/BiomeManager$NoiseBiomeSource;J)V net/minecraft/world/level/biome/BiomeManager/ (Lnet/minecraft/world/level/biome/BiomeManager$NoiseBiomeSource;J)V +MD: net/minecraft/world/level/biome/BiomeManager/m_186679_ (JIIIDDD)D net/minecraft/world/level/biome/BiomeManager/getFiddledDistance (JIIIDDD)D +MD: net/minecraft/world/level/biome/BiomeManager/m_186687_ (Lnet/minecraft/world/level/biome/BiomeManager$NoiseBiomeSource;)Lnet/minecraft/world/level/biome/BiomeManager; net/minecraft/world/level/biome/BiomeManager/withDifferentSource (Lnet/minecraft/world/level/biome/BiomeManager$NoiseBiomeSource;)Lnet/minecraft/world/level/biome/BiomeManager; +MD: net/minecraft/world/level/biome/BiomeManager/m_186689_ (J)D net/minecraft/world/level/biome/BiomeManager/getFiddle (J)D +MD: net/minecraft/world/level/biome/BiomeManager/m_204206_ (DDD)Lnet/minecraft/core/Holder; net/minecraft/world/level/biome/BiomeManager/getNoiseBiomeAtPosition (DDD)Lnet/minecraft/core/Holder; +MD: net/minecraft/world/level/biome/BiomeManager/m_204210_ (III)Lnet/minecraft/core/Holder; net/minecraft/world/level/biome/BiomeManager/getNoiseBiomeAtQuart (III)Lnet/minecraft/core/Holder; +MD: net/minecraft/world/level/biome/BiomeManager/m_204214_ (Lnet/minecraft/core/BlockPos;)Lnet/minecraft/core/Holder; net/minecraft/world/level/biome/BiomeManager/getBiome (Lnet/minecraft/core/BlockPos;)Lnet/minecraft/core/Holder; +MD: net/minecraft/world/level/biome/BiomeManager/m_204216_ (Lnet/minecraft/core/BlockPos;)Lnet/minecraft/core/Holder; net/minecraft/world/level/biome/BiomeManager/getNoiseBiomeAtPosition (Lnet/minecraft/core/BlockPos;)Lnet/minecraft/core/Holder; +MD: net/minecraft/world/level/biome/BiomeManager/m_47877_ (J)J net/minecraft/world/level/biome/BiomeManager/obfuscateSeed (J)J +MD: net/minecraft/world/level/biome/BiomeManager$NoiseBiomeSource/m_203495_ (III)Lnet/minecraft/core/Holder; net/minecraft/world/level/biome/BiomeManager$NoiseBiomeSource/getNoiseBiome (III)Lnet/minecraft/core/Holder; +MD: net/minecraft/world/level/biome/BiomeResolver/m_203407_ (IIILnet/minecraft/world/level/biome/Climate$Sampler;)Lnet/minecraft/core/Holder; net/minecraft/world/level/biome/BiomeResolver/getNoiseBiome (IIILnet/minecraft/world/level/biome/Climate$Sampler;)Lnet/minecraft/core/Holder; +MD: net/minecraft/world/level/biome/BiomeSource/ ()V net/minecraft/world/level/biome/BiomeSource/ ()V +MD: net/minecraft/world/level/biome/BiomeSource/ ()V net/minecraft/world/level/biome/BiomeSource/ ()V +MD: net/minecraft/world/level/biome/BiomeSource/m_183399_ (IIIILnet/minecraft/world/level/biome/Climate$Sampler;)Ljava/util/Set; net/minecraft/world/level/biome/BiomeSource/getBiomesWithin (IIIILnet/minecraft/world/level/biome/Climate$Sampler;)Ljava/util/Set; +MD: net/minecraft/world/level/biome/BiomeSource/m_203407_ (IIILnet/minecraft/world/level/biome/Climate$Sampler;)Lnet/minecraft/core/Holder; net/minecraft/world/level/biome/BiomeSource/getNoiseBiome (IIILnet/minecraft/world/level/biome/Climate$Sampler;)Lnet/minecraft/core/Holder; +MD: net/minecraft/world/level/biome/BiomeSource/m_207301_ (Ljava/util/List;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/biome/Climate$Sampler;)V net/minecraft/world/level/biome/BiomeSource/addDebugInfo (Ljava/util/List;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/biome/Climate$Sampler;)V +MD: net/minecraft/world/level/biome/BiomeSource/m_207840_ ()Ljava/util/Set; net/minecraft/world/level/biome/BiomeSource/possibleBiomes ()Ljava/util/Set; +MD: net/minecraft/world/level/biome/BiomeSource/m_213971_ (IIIIILjava/util/function/Predicate;Lnet/minecraft/util/RandomSource;ZLnet/minecraft/world/level/biome/Climate$Sampler;)Lcom/mojang/datafixers/util/Pair; net/minecraft/world/level/biome/BiomeSource/findBiomeHorizontal (IIIIILjava/util/function/Predicate;Lnet/minecraft/util/RandomSource;ZLnet/minecraft/world/level/biome/Climate$Sampler;)Lcom/mojang/datafixers/util/Pair; +MD: net/minecraft/world/level/biome/BiomeSource/m_214004_ (Lnet/minecraft/core/BlockPos;IIILjava/util/function/Predicate;Lnet/minecraft/world/level/biome/Climate$Sampler;Lnet/minecraft/world/level/LevelReader;)Lcom/mojang/datafixers/util/Pair; net/minecraft/world/level/biome/BiomeSource/findClosestBiome3d (Lnet/minecraft/core/BlockPos;IIILjava/util/function/Predicate;Lnet/minecraft/world/level/biome/Climate$Sampler;Lnet/minecraft/world/level/LevelReader;)Lcom/mojang/datafixers/util/Pair; +MD: net/minecraft/world/level/biome/BiomeSource/m_220570_ (IIIILjava/util/function/Predicate;Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/biome/Climate$Sampler;)Lcom/mojang/datafixers/util/Pair; net/minecraft/world/level/biome/BiomeSource/findBiomeHorizontal (IIIILjava/util/function/Predicate;Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/biome/Climate$Sampler;)Lcom/mojang/datafixers/util/Pair; +MD: net/minecraft/world/level/biome/BiomeSource/m_274359_ ()Ljava/util/stream/Stream; net/minecraft/world/level/biome/BiomeSource/collectPossibleBiomes ()Ljava/util/stream/Stream; +MD: net/minecraft/world/level/biome/BiomeSource/m_274508_ ()Ljava/util/Set; net/minecraft/world/level/biome/BiomeSource/lambda$new$0 ()Ljava/util/Set; +MD: net/minecraft/world/level/biome/BiomeSource/m_5820_ ()Lcom/mojang/serialization/Codec; net/minecraft/world/level/biome/BiomeSource/codec ()Lcom/mojang/serialization/Codec; +MD: net/minecraft/world/level/biome/BiomeSources/ ()V net/minecraft/world/level/biome/BiomeSources/ ()V +MD: net/minecraft/world/level/biome/BiomeSources/m_220586_ (Lnet/minecraft/core/Registry;)Lcom/mojang/serialization/Codec; net/minecraft/world/level/biome/BiomeSources/bootstrap (Lnet/minecraft/core/Registry;)Lcom/mojang/serialization/Codec; +MD: net/minecraft/world/level/biome/BiomeSpecialEffects/ ()V net/minecraft/world/level/biome/BiomeSpecialEffects/ ()V +MD: net/minecraft/world/level/biome/BiomeSpecialEffects/ (IIIILjava/util/Optional;Ljava/util/Optional;Lnet/minecraft/world/level/biome/BiomeSpecialEffects$GrassColorModifier;Ljava/util/Optional;Ljava/util/Optional;Ljava/util/Optional;Ljava/util/Optional;Ljava/util/Optional;)V net/minecraft/world/level/biome/BiomeSpecialEffects/ (IIIILjava/util/Optional;Ljava/util/Optional;Lnet/minecraft/world/level/biome/BiomeSpecialEffects$GrassColorModifier;Ljava/util/Optional;Ljava/util/Optional;Ljava/util/Optional;Ljava/util/Optional;Ljava/util/Optional;)V +MD: net/minecraft/world/level/biome/BiomeSpecialEffects/m_151759_ (Lnet/minecraft/world/level/biome/BiomeSpecialEffects;)Ljava/util/Optional; net/minecraft/world/level/biome/BiomeSpecialEffects/lambda$static$11 (Lnet/minecraft/world/level/biome/BiomeSpecialEffects;)Ljava/util/Optional; +MD: net/minecraft/world/level/biome/BiomeSpecialEffects/m_151761_ (Lnet/minecraft/world/level/biome/BiomeSpecialEffects;)Ljava/util/Optional; net/minecraft/world/level/biome/BiomeSpecialEffects/lambda$static$10 (Lnet/minecraft/world/level/biome/BiomeSpecialEffects;)Ljava/util/Optional; +MD: net/minecraft/world/level/biome/BiomeSpecialEffects/m_151763_ (Lnet/minecraft/world/level/biome/BiomeSpecialEffects;)Ljava/util/Optional; net/minecraft/world/level/biome/BiomeSpecialEffects/lambda$static$9 (Lnet/minecraft/world/level/biome/BiomeSpecialEffects;)Ljava/util/Optional; +MD: net/minecraft/world/level/biome/BiomeSpecialEffects/m_151765_ (Lnet/minecraft/world/level/biome/BiomeSpecialEffects;)Ljava/util/Optional; net/minecraft/world/level/biome/BiomeSpecialEffects/lambda$static$8 (Lnet/minecraft/world/level/biome/BiomeSpecialEffects;)Ljava/util/Optional; +MD: net/minecraft/world/level/biome/BiomeSpecialEffects/m_151767_ (Lnet/minecraft/world/level/biome/BiomeSpecialEffects;)Ljava/util/Optional; net/minecraft/world/level/biome/BiomeSpecialEffects/lambda$static$7 (Lnet/minecraft/world/level/biome/BiomeSpecialEffects;)Ljava/util/Optional; +MD: net/minecraft/world/level/biome/BiomeSpecialEffects/m_151769_ (Lnet/minecraft/world/level/biome/BiomeSpecialEffects;)Lnet/minecraft/world/level/biome/BiomeSpecialEffects$GrassColorModifier; net/minecraft/world/level/biome/BiomeSpecialEffects/lambda$static$6 (Lnet/minecraft/world/level/biome/BiomeSpecialEffects;)Lnet/minecraft/world/level/biome/BiomeSpecialEffects$GrassColorModifier; +MD: net/minecraft/world/level/biome/BiomeSpecialEffects/m_151771_ (Lnet/minecraft/world/level/biome/BiomeSpecialEffects;)Ljava/util/Optional; net/minecraft/world/level/biome/BiomeSpecialEffects/lambda$static$5 (Lnet/minecraft/world/level/biome/BiomeSpecialEffects;)Ljava/util/Optional; +MD: net/minecraft/world/level/biome/BiomeSpecialEffects/m_151773_ (Lnet/minecraft/world/level/biome/BiomeSpecialEffects;)Ljava/util/Optional; net/minecraft/world/level/biome/BiomeSpecialEffects/lambda$static$4 (Lnet/minecraft/world/level/biome/BiomeSpecialEffects;)Ljava/util/Optional; +MD: net/minecraft/world/level/biome/BiomeSpecialEffects/m_151775_ (Lnet/minecraft/world/level/biome/BiomeSpecialEffects;)Ljava/lang/Integer; net/minecraft/world/level/biome/BiomeSpecialEffects/lambda$static$3 (Lnet/minecraft/world/level/biome/BiomeSpecialEffects;)Ljava/lang/Integer; +MD: net/minecraft/world/level/biome/BiomeSpecialEffects/m_151777_ (Lnet/minecraft/world/level/biome/BiomeSpecialEffects;)Ljava/lang/Integer; net/minecraft/world/level/biome/BiomeSpecialEffects/lambda$static$2 (Lnet/minecraft/world/level/biome/BiomeSpecialEffects;)Ljava/lang/Integer; +MD: net/minecraft/world/level/biome/BiomeSpecialEffects/m_151779_ (Lnet/minecraft/world/level/biome/BiomeSpecialEffects;)Ljava/lang/Integer; net/minecraft/world/level/biome/BiomeSpecialEffects/lambda$static$1 (Lnet/minecraft/world/level/biome/BiomeSpecialEffects;)Ljava/lang/Integer; +MD: net/minecraft/world/level/biome/BiomeSpecialEffects/m_151781_ (Lnet/minecraft/world/level/biome/BiomeSpecialEffects;)Ljava/lang/Integer; net/minecraft/world/level/biome/BiomeSpecialEffects/lambda$static$0 (Lnet/minecraft/world/level/biome/BiomeSpecialEffects;)Ljava/lang/Integer; +MD: net/minecraft/world/level/biome/BiomeSpecialEffects/m_47967_ ()I net/minecraft/world/level/biome/BiomeSpecialEffects/getFogColor ()I +MD: net/minecraft/world/level/biome/BiomeSpecialEffects/m_47970_ (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/world/level/biome/BiomeSpecialEffects/lambda$static$12 (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/world/level/biome/BiomeSpecialEffects/m_47972_ ()I net/minecraft/world/level/biome/BiomeSpecialEffects/getWaterColor ()I +MD: net/minecraft/world/level/biome/BiomeSpecialEffects/m_47975_ ()I net/minecraft/world/level/biome/BiomeSpecialEffects/getWaterFogColor ()I +MD: net/minecraft/world/level/biome/BiomeSpecialEffects/m_47978_ ()I net/minecraft/world/level/biome/BiomeSpecialEffects/getSkyColor ()I +MD: net/minecraft/world/level/biome/BiomeSpecialEffects/m_47981_ ()Ljava/util/Optional; net/minecraft/world/level/biome/BiomeSpecialEffects/getFoliageColorOverride ()Ljava/util/Optional; +MD: net/minecraft/world/level/biome/BiomeSpecialEffects/m_47984_ ()Ljava/util/Optional; net/minecraft/world/level/biome/BiomeSpecialEffects/getGrassColorOverride ()Ljava/util/Optional; +MD: net/minecraft/world/level/biome/BiomeSpecialEffects/m_47987_ ()Lnet/minecraft/world/level/biome/BiomeSpecialEffects$GrassColorModifier; net/minecraft/world/level/biome/BiomeSpecialEffects/getGrassColorModifier ()Lnet/minecraft/world/level/biome/BiomeSpecialEffects$GrassColorModifier; +MD: net/minecraft/world/level/biome/BiomeSpecialEffects/m_47990_ ()Ljava/util/Optional; net/minecraft/world/level/biome/BiomeSpecialEffects/getAmbientParticleSettings ()Ljava/util/Optional; +MD: net/minecraft/world/level/biome/BiomeSpecialEffects/m_47993_ ()Ljava/util/Optional; net/minecraft/world/level/biome/BiomeSpecialEffects/getAmbientLoopSoundEvent ()Ljava/util/Optional; +MD: net/minecraft/world/level/biome/BiomeSpecialEffects/m_47996_ ()Ljava/util/Optional; net/minecraft/world/level/biome/BiomeSpecialEffects/getAmbientMoodSettings ()Ljava/util/Optional; +MD: net/minecraft/world/level/biome/BiomeSpecialEffects/m_47999_ ()Ljava/util/Optional; net/minecraft/world/level/biome/BiomeSpecialEffects/getAmbientAdditionsSettings ()Ljava/util/Optional; +MD: net/minecraft/world/level/biome/BiomeSpecialEffects/m_48002_ ()Ljava/util/Optional; net/minecraft/world/level/biome/BiomeSpecialEffects/getBackgroundMusic ()Ljava/util/Optional; +MD: net/minecraft/world/level/biome/BiomeSpecialEffects$Builder/ ()V net/minecraft/world/level/biome/BiomeSpecialEffects$Builder/ ()V +MD: net/minecraft/world/level/biome/BiomeSpecialEffects$Builder/m_48018_ ()Lnet/minecraft/world/level/biome/BiomeSpecialEffects; net/minecraft/world/level/biome/BiomeSpecialEffects$Builder/build ()Lnet/minecraft/world/level/biome/BiomeSpecialEffects; +MD: net/minecraft/world/level/biome/BiomeSpecialEffects$Builder/m_48019_ (I)Lnet/minecraft/world/level/biome/BiomeSpecialEffects$Builder; net/minecraft/world/level/biome/BiomeSpecialEffects$Builder/fogColor (I)Lnet/minecraft/world/level/biome/BiomeSpecialEffects$Builder; +MD: net/minecraft/world/level/biome/BiomeSpecialEffects$Builder/m_48021_ (Lnet/minecraft/sounds/Music;)Lnet/minecraft/world/level/biome/BiomeSpecialEffects$Builder; net/minecraft/world/level/biome/BiomeSpecialEffects$Builder/backgroundMusic (Lnet/minecraft/sounds/Music;)Lnet/minecraft/world/level/biome/BiomeSpecialEffects$Builder; +MD: net/minecraft/world/level/biome/BiomeSpecialEffects$Builder/m_48023_ (Lnet/minecraft/core/Holder;)Lnet/minecraft/world/level/biome/BiomeSpecialEffects$Builder; net/minecraft/world/level/biome/BiomeSpecialEffects$Builder/ambientLoopSound (Lnet/minecraft/core/Holder;)Lnet/minecraft/world/level/biome/BiomeSpecialEffects$Builder; +MD: net/minecraft/world/level/biome/BiomeSpecialEffects$Builder/m_48025_ (Lnet/minecraft/world/level/biome/AmbientAdditionsSettings;)Lnet/minecraft/world/level/biome/BiomeSpecialEffects$Builder; net/minecraft/world/level/biome/BiomeSpecialEffects$Builder/ambientAdditionsSound (Lnet/minecraft/world/level/biome/AmbientAdditionsSettings;)Lnet/minecraft/world/level/biome/BiomeSpecialEffects$Builder; +MD: net/minecraft/world/level/biome/BiomeSpecialEffects$Builder/m_48027_ (Lnet/minecraft/world/level/biome/AmbientMoodSettings;)Lnet/minecraft/world/level/biome/BiomeSpecialEffects$Builder; net/minecraft/world/level/biome/BiomeSpecialEffects$Builder/ambientMoodSound (Lnet/minecraft/world/level/biome/AmbientMoodSettings;)Lnet/minecraft/world/level/biome/BiomeSpecialEffects$Builder; +MD: net/minecraft/world/level/biome/BiomeSpecialEffects$Builder/m_48029_ (Lnet/minecraft/world/level/biome/AmbientParticleSettings;)Lnet/minecraft/world/level/biome/BiomeSpecialEffects$Builder; net/minecraft/world/level/biome/BiomeSpecialEffects$Builder/ambientParticle (Lnet/minecraft/world/level/biome/AmbientParticleSettings;)Lnet/minecraft/world/level/biome/BiomeSpecialEffects$Builder; +MD: net/minecraft/world/level/biome/BiomeSpecialEffects$Builder/m_48031_ (Lnet/minecraft/world/level/biome/BiomeSpecialEffects$GrassColorModifier;)Lnet/minecraft/world/level/biome/BiomeSpecialEffects$Builder; net/minecraft/world/level/biome/BiomeSpecialEffects$Builder/grassColorModifier (Lnet/minecraft/world/level/biome/BiomeSpecialEffects$GrassColorModifier;)Lnet/minecraft/world/level/biome/BiomeSpecialEffects$Builder; +MD: net/minecraft/world/level/biome/BiomeSpecialEffects$Builder/m_48033_ ()Ljava/lang/IllegalStateException; net/minecraft/world/level/biome/BiomeSpecialEffects$Builder/lambda$build$3 ()Ljava/lang/IllegalStateException; +MD: net/minecraft/world/level/biome/BiomeSpecialEffects$Builder/m_48034_ (I)Lnet/minecraft/world/level/biome/BiomeSpecialEffects$Builder; net/minecraft/world/level/biome/BiomeSpecialEffects$Builder/waterColor (I)Lnet/minecraft/world/level/biome/BiomeSpecialEffects$Builder; +MD: net/minecraft/world/level/biome/BiomeSpecialEffects$Builder/m_48036_ ()Ljava/lang/IllegalStateException; net/minecraft/world/level/biome/BiomeSpecialEffects$Builder/lambda$build$2 ()Ljava/lang/IllegalStateException; +MD: net/minecraft/world/level/biome/BiomeSpecialEffects$Builder/m_48037_ (I)Lnet/minecraft/world/level/biome/BiomeSpecialEffects$Builder; net/minecraft/world/level/biome/BiomeSpecialEffects$Builder/waterFogColor (I)Lnet/minecraft/world/level/biome/BiomeSpecialEffects$Builder; +MD: net/minecraft/world/level/biome/BiomeSpecialEffects$Builder/m_48039_ ()Ljava/lang/IllegalStateException; net/minecraft/world/level/biome/BiomeSpecialEffects$Builder/lambda$build$1 ()Ljava/lang/IllegalStateException; +MD: net/minecraft/world/level/biome/BiomeSpecialEffects$Builder/m_48040_ (I)Lnet/minecraft/world/level/biome/BiomeSpecialEffects$Builder; net/minecraft/world/level/biome/BiomeSpecialEffects$Builder/skyColor (I)Lnet/minecraft/world/level/biome/BiomeSpecialEffects$Builder; +MD: net/minecraft/world/level/biome/BiomeSpecialEffects$Builder/m_48042_ ()Ljava/lang/IllegalStateException; net/minecraft/world/level/biome/BiomeSpecialEffects$Builder/lambda$build$0 ()Ljava/lang/IllegalStateException; +MD: net/minecraft/world/level/biome/BiomeSpecialEffects$Builder/m_48043_ (I)Lnet/minecraft/world/level/biome/BiomeSpecialEffects$Builder; net/minecraft/world/level/biome/BiomeSpecialEffects$Builder/foliageColorOverride (I)Lnet/minecraft/world/level/biome/BiomeSpecialEffects$Builder; +MD: net/minecraft/world/level/biome/BiomeSpecialEffects$Builder/m_48045_ (I)Lnet/minecraft/world/level/biome/BiomeSpecialEffects$Builder; net/minecraft/world/level/biome/BiomeSpecialEffects$Builder/grassColorOverride (I)Lnet/minecraft/world/level/biome/BiomeSpecialEffects$Builder; +MD: net/minecraft/world/level/biome/BiomeSpecialEffects$GrassColorModifier/ ()V net/minecraft/world/level/biome/BiomeSpecialEffects$GrassColorModifier/ ()V +MD: net/minecraft/world/level/biome/BiomeSpecialEffects$GrassColorModifier/ (Ljava/lang/String;ILjava/lang/String;)V net/minecraft/world/level/biome/BiomeSpecialEffects$GrassColorModifier/ (Ljava/lang/String;ILjava/lang/String;)V +MD: net/minecraft/world/level/biome/BiomeSpecialEffects$GrassColorModifier/m_151783_ ()[Lnet/minecraft/world/level/biome/BiomeSpecialEffects$GrassColorModifier; net/minecraft/world/level/biome/BiomeSpecialEffects$GrassColorModifier/$values ()[Lnet/minecraft/world/level/biome/BiomeSpecialEffects$GrassColorModifier; +MD: net/minecraft/world/level/biome/BiomeSpecialEffects$GrassColorModifier/m_48072_ ()Ljava/lang/String; net/minecraft/world/level/biome/BiomeSpecialEffects$GrassColorModifier/getName ()Ljava/lang/String; +MD: net/minecraft/world/level/biome/BiomeSpecialEffects$GrassColorModifier/m_6583_ (DDI)I net/minecraft/world/level/biome/BiomeSpecialEffects$GrassColorModifier/modifyColor (DDI)I +MD: net/minecraft/world/level/biome/BiomeSpecialEffects$GrassColorModifier/m_7912_ ()Ljava/lang/String; net/minecraft/world/level/biome/BiomeSpecialEffects$GrassColorModifier/getSerializedName ()Ljava/lang/String; +MD: net/minecraft/world/level/biome/BiomeSpecialEffects$GrassColorModifier/valueOf (Ljava/lang/String;)Lnet/minecraft/world/level/biome/BiomeSpecialEffects$GrassColorModifier; net/minecraft/world/level/biome/BiomeSpecialEffects$GrassColorModifier/valueOf (Ljava/lang/String;)Lnet/minecraft/world/level/biome/BiomeSpecialEffects$GrassColorModifier; +MD: net/minecraft/world/level/biome/BiomeSpecialEffects$GrassColorModifier/values ()[Lnet/minecraft/world/level/biome/BiomeSpecialEffects$GrassColorModifier; net/minecraft/world/level/biome/BiomeSpecialEffects$GrassColorModifier/values ()[Lnet/minecraft/world/level/biome/BiomeSpecialEffects$GrassColorModifier; +MD: net/minecraft/world/level/biome/BiomeSpecialEffects$GrassColorModifier$1/ (Ljava/lang/String;ILjava/lang/String;)V net/minecraft/world/level/biome/BiomeSpecialEffects$GrassColorModifier$1/ (Ljava/lang/String;ILjava/lang/String;)V +MD: net/minecraft/world/level/biome/BiomeSpecialEffects$GrassColorModifier$1/m_6583_ (DDI)I net/minecraft/world/level/biome/BiomeSpecialEffects$GrassColorModifier$1/modifyColor (DDI)I +MD: net/minecraft/world/level/biome/BiomeSpecialEffects$GrassColorModifier$2/ (Ljava/lang/String;ILjava/lang/String;)V net/minecraft/world/level/biome/BiomeSpecialEffects$GrassColorModifier$2/ (Ljava/lang/String;ILjava/lang/String;)V +MD: net/minecraft/world/level/biome/BiomeSpecialEffects$GrassColorModifier$2/m_6583_ (DDI)I net/minecraft/world/level/biome/BiomeSpecialEffects$GrassColorModifier$2/modifyColor (DDI)I +MD: net/minecraft/world/level/biome/BiomeSpecialEffects$GrassColorModifier$3/ (Ljava/lang/String;ILjava/lang/String;)V net/minecraft/world/level/biome/BiomeSpecialEffects$GrassColorModifier$3/ (Ljava/lang/String;ILjava/lang/String;)V +MD: net/minecraft/world/level/biome/BiomeSpecialEffects$GrassColorModifier$3/m_6583_ (DDI)I net/minecraft/world/level/biome/BiomeSpecialEffects$GrassColorModifier$3/modifyColor (DDI)I +MD: net/minecraft/world/level/biome/Biomes/ ()V net/minecraft/world/level/biome/Biomes/ ()V +MD: net/minecraft/world/level/biome/Biomes/ ()V net/minecraft/world/level/biome/Biomes/ ()V +MD: net/minecraft/world/level/biome/Biomes/m_48228_ (Ljava/lang/String;)Lnet/minecraft/resources/ResourceKey; net/minecraft/world/level/biome/Biomes/register (Ljava/lang/String;)Lnet/minecraft/resources/ResourceKey; +MD: net/minecraft/world/level/biome/CheckerboardColumnBiomeSource/ ()V net/minecraft/world/level/biome/CheckerboardColumnBiomeSource/ ()V +MD: net/minecraft/world/level/biome/CheckerboardColumnBiomeSource/ (Lnet/minecraft/core/HolderSet;I)V net/minecraft/world/level/biome/CheckerboardColumnBiomeSource/ (Lnet/minecraft/core/HolderSet;I)V +MD: net/minecraft/world/level/biome/CheckerboardColumnBiomeSource/m_151787_ (Lnet/minecraft/world/level/biome/CheckerboardColumnBiomeSource;)Ljava/lang/Integer; net/minecraft/world/level/biome/CheckerboardColumnBiomeSource/lambda$static$1 (Lnet/minecraft/world/level/biome/CheckerboardColumnBiomeSource;)Ljava/lang/Integer; +MD: net/minecraft/world/level/biome/CheckerboardColumnBiomeSource/m_203407_ (IIILnet/minecraft/world/level/biome/Climate$Sampler;)Lnet/minecraft/core/Holder; net/minecraft/world/level/biome/CheckerboardColumnBiomeSource/getNoiseBiome (IIILnet/minecraft/world/level/biome/Climate$Sampler;)Lnet/minecraft/core/Holder; +MD: net/minecraft/world/level/biome/CheckerboardColumnBiomeSource/m_204245_ (Lnet/minecraft/world/level/biome/CheckerboardColumnBiomeSource;)Lnet/minecraft/core/HolderSet; net/minecraft/world/level/biome/CheckerboardColumnBiomeSource/lambda$static$0 (Lnet/minecraft/world/level/biome/CheckerboardColumnBiomeSource;)Lnet/minecraft/core/HolderSet; +MD: net/minecraft/world/level/biome/CheckerboardColumnBiomeSource/m_274359_ ()Ljava/util/stream/Stream; net/minecraft/world/level/biome/CheckerboardColumnBiomeSource/collectPossibleBiomes ()Ljava/util/stream/Stream; +MD: net/minecraft/world/level/biome/CheckerboardColumnBiomeSource/m_48243_ (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/world/level/biome/CheckerboardColumnBiomeSource/lambda$static$2 (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/world/level/biome/CheckerboardColumnBiomeSource/m_5820_ ()Lcom/mojang/serialization/Codec; net/minecraft/world/level/biome/CheckerboardColumnBiomeSource/codec ()Lcom/mojang/serialization/Codec; +MD: net/minecraft/world/level/biome/Climate/ ()V net/minecraft/world/level/biome/Climate/ ()V +MD: net/minecraft/world/level/biome/Climate/m_186779_ (F)J net/minecraft/world/level/biome/Climate/quantizeCoord (F)J +MD: net/minecraft/world/level/biome/Climate/m_186781_ (FFFFFF)Lnet/minecraft/world/level/biome/Climate$TargetPoint; net/minecraft/world/level/biome/Climate/target (FFFFFF)Lnet/minecraft/world/level/biome/Climate$TargetPoint; +MD: net/minecraft/world/level/biome/Climate/m_186788_ (FFFFFFF)Lnet/minecraft/world/level/biome/Climate$ParameterPoint; net/minecraft/world/level/biome/Climate/parameters (FFFFFFF)Lnet/minecraft/world/level/biome/Climate$ParameterPoint; +MD: net/minecraft/world/level/biome/Climate/m_186796_ (J)F net/minecraft/world/level/biome/Climate/unquantizeCoord (J)F +MD: net/minecraft/world/level/biome/Climate/m_186798_ (Lnet/minecraft/world/level/biome/Climate$Parameter;Lnet/minecraft/world/level/biome/Climate$Parameter;Lnet/minecraft/world/level/biome/Climate$Parameter;Lnet/minecraft/world/level/biome/Climate$Parameter;Lnet/minecraft/world/level/biome/Climate$Parameter;Lnet/minecraft/world/level/biome/Climate$Parameter;F)Lnet/minecraft/world/level/biome/Climate$ParameterPoint; net/minecraft/world/level/biome/Climate/parameters (Lnet/minecraft/world/level/biome/Climate$Parameter;Lnet/minecraft/world/level/biome/Climate$Parameter;Lnet/minecraft/world/level/biome/Climate$Parameter;Lnet/minecraft/world/level/biome/Climate$Parameter;Lnet/minecraft/world/level/biome/Climate$Parameter;Lnet/minecraft/world/level/biome/Climate$Parameter;F)Lnet/minecraft/world/level/biome/Climate$ParameterPoint; +MD: net/minecraft/world/level/biome/Climate/m_207841_ ()Lnet/minecraft/world/level/biome/Climate$Sampler; net/minecraft/world/level/biome/Climate/empty ()Lnet/minecraft/world/level/biome/Climate$Sampler; +MD: net/minecraft/world/level/biome/Climate/m_207842_ (Ljava/util/List;Lnet/minecraft/world/level/biome/Climate$Sampler;)Lnet/minecraft/core/BlockPos; net/minecraft/world/level/biome/Climate/findSpawnPosition (Ljava/util/List;Lnet/minecraft/world/level/biome/Climate$Sampler;)Lnet/minecraft/core/BlockPos; +MD: net/minecraft/world/level/biome/Climate$DistanceMetric/m_186809_ (Lnet/minecraft/world/level/biome/Climate$RTree$Node;[J)J net/minecraft/world/level/biome/Climate$DistanceMetric/distance (Lnet/minecraft/world/level/biome/Climate$RTree$Node;[J)J +MD: net/minecraft/world/level/biome/Climate$Parameter/ ()V net/minecraft/world/level/biome/Climate$Parameter/ ()V +MD: net/minecraft/world/level/biome/Climate$Parameter/ (JJ)V net/minecraft/world/level/biome/Climate$Parameter/ (JJ)V +MD: net/minecraft/world/level/biome/Climate$Parameter/equals (Ljava/lang/Object;)Z net/minecraft/world/level/biome/Climate$Parameter/equals (Ljava/lang/Object;)Z +MD: net/minecraft/world/level/biome/Climate$Parameter/f_186813_ ()J net/minecraft/world/level/biome/Climate$Parameter/min ()J +MD: net/minecraft/world/level/biome/Climate$Parameter/f_186814_ ()J net/minecraft/world/level/biome/Climate$Parameter/max ()J +MD: net/minecraft/world/level/biome/Climate$Parameter/hashCode ()I net/minecraft/world/level/biome/Climate$Parameter/hashCode ()I +MD: net/minecraft/world/level/biome/Climate$Parameter/m_186820_ (F)Lnet/minecraft/world/level/biome/Climate$Parameter; net/minecraft/world/level/biome/Climate$Parameter/point (F)Lnet/minecraft/world/level/biome/Climate$Parameter; +MD: net/minecraft/world/level/biome/Climate$Parameter/m_186822_ (FF)Lnet/minecraft/world/level/biome/Climate$Parameter; net/minecraft/world/level/biome/Climate$Parameter/span (FF)Lnet/minecraft/world/level/biome/Climate$Parameter; +MD: net/minecraft/world/level/biome/Climate$Parameter/m_186825_ (J)J net/minecraft/world/level/biome/Climate$Parameter/distance (J)J +MD: net/minecraft/world/level/biome/Climate$Parameter/m_186827_ (Lnet/minecraft/world/level/biome/Climate$Parameter;)J net/minecraft/world/level/biome/Climate$Parameter/distance (Lnet/minecraft/world/level/biome/Climate$Parameter;)J +MD: net/minecraft/world/level/biome/Climate$Parameter/m_186829_ (Lnet/minecraft/world/level/biome/Climate$Parameter;Lnet/minecraft/world/level/biome/Climate$Parameter;)Lnet/minecraft/world/level/biome/Climate$Parameter; net/minecraft/world/level/biome/Climate$Parameter/span (Lnet/minecraft/world/level/biome/Climate$Parameter;Lnet/minecraft/world/level/biome/Climate$Parameter;)Lnet/minecraft/world/level/biome/Climate$Parameter; +MD: net/minecraft/world/level/biome/Climate$Parameter/m_186836_ (Lnet/minecraft/world/level/biome/Climate$Parameter;)Lnet/minecraft/world/level/biome/Climate$Parameter; net/minecraft/world/level/biome/Climate$Parameter/span (Lnet/minecraft/world/level/biome/Climate$Parameter;)Lnet/minecraft/world/level/biome/Climate$Parameter; +MD: net/minecraft/world/level/biome/Climate$Parameter/m_186838_ (Lnet/minecraft/world/level/biome/Climate$Parameter;)Ljava/lang/Float; net/minecraft/world/level/biome/Climate$Parameter/lambda$static$3 (Lnet/minecraft/world/level/biome/Climate$Parameter;)Ljava/lang/Float; +MD: net/minecraft/world/level/biome/Climate$Parameter/m_186840_ (Lnet/minecraft/world/level/biome/Climate$Parameter;)Ljava/lang/Float; net/minecraft/world/level/biome/Climate$Parameter/lambda$static$2 (Lnet/minecraft/world/level/biome/Climate$Parameter;)Ljava/lang/Float; +MD: net/minecraft/world/level/biome/Climate$Parameter/m_274267_ (Ljava/lang/Float;Ljava/lang/Float;)Lcom/mojang/serialization/DataResult; net/minecraft/world/level/biome/Climate$Parameter/lambda$static$1 (Ljava/lang/Float;Ljava/lang/Float;)Lcom/mojang/serialization/DataResult; +MD: net/minecraft/world/level/biome/Climate$Parameter/m_274268_ (Ljava/lang/Float;Ljava/lang/Float;)Ljava/lang/String; net/minecraft/world/level/biome/Climate$Parameter/lambda$static$0 (Ljava/lang/Float;Ljava/lang/Float;)Ljava/lang/String; +MD: net/minecraft/world/level/biome/Climate$Parameter/toString ()Ljava/lang/String; net/minecraft/world/level/biome/Climate$Parameter/toString ()Ljava/lang/String; +MD: net/minecraft/world/level/biome/Climate$ParameterList/ (Ljava/util/List;)V net/minecraft/world/level/biome/Climate$ParameterList/ (Ljava/util/List;)V +MD: net/minecraft/world/level/biome/Climate$ParameterList/m_186850_ ()Ljava/util/List; net/minecraft/world/level/biome/Climate$ParameterList/values ()Ljava/util/List; +MD: net/minecraft/world/level/biome/Climate$ParameterList/m_186851_ (Lnet/minecraft/world/level/biome/Climate$TargetPoint;)Ljava/lang/Object; net/minecraft/world/level/biome/Climate$ParameterList/findValueIndex (Lnet/minecraft/world/level/biome/Climate$TargetPoint;)Ljava/lang/Object; +MD: net/minecraft/world/level/biome/Climate$ParameterList/m_186853_ (Lnet/minecraft/world/level/biome/Climate$TargetPoint;Lnet/minecraft/world/level/biome/Climate$DistanceMetric;)Ljava/lang/Object; net/minecraft/world/level/biome/Climate$ParameterList/findValueIndex (Lnet/minecraft/world/level/biome/Climate$TargetPoint;Lnet/minecraft/world/level/biome/Climate$DistanceMetric;)Ljava/lang/Object; +MD: net/minecraft/world/level/biome/Climate$ParameterList/m_204252_ (Lnet/minecraft/world/level/biome/Climate$TargetPoint;)Ljava/lang/Object; net/minecraft/world/level/biome/Climate$ParameterList/findValue (Lnet/minecraft/world/level/biome/Climate$TargetPoint;)Ljava/lang/Object; +MD: net/minecraft/world/level/biome/Climate$ParameterList/m_204254_ (Lnet/minecraft/world/level/biome/Climate$TargetPoint;)Ljava/lang/Object; net/minecraft/world/level/biome/Climate$ParameterList/findValueBruteForce (Lnet/minecraft/world/level/biome/Climate$TargetPoint;)Ljava/lang/Object; +MD: net/minecraft/world/level/biome/Climate$ParameterList/m_274436_ (Lcom/mojang/serialization/MapCodec;)Lcom/mojang/serialization/Codec; net/minecraft/world/level/biome/Climate$ParameterList/codec (Lcom/mojang/serialization/MapCodec;)Lcom/mojang/serialization/Codec; +MD: net/minecraft/world/level/biome/Climate$ParameterList/m_274448_ (Lcom/mojang/serialization/MapCodec;Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/world/level/biome/Climate$ParameterList/lambda$codec$0 (Lcom/mojang/serialization/MapCodec;Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/world/level/biome/Climate$ParameterPoint/ ()V net/minecraft/world/level/biome/Climate$ParameterPoint/ ()V +MD: net/minecraft/world/level/biome/Climate$ParameterPoint/ (Lnet/minecraft/world/level/biome/Climate$Parameter;Lnet/minecraft/world/level/biome/Climate$Parameter;Lnet/minecraft/world/level/biome/Climate$Parameter;Lnet/minecraft/world/level/biome/Climate$Parameter;Lnet/minecraft/world/level/biome/Climate$Parameter;Lnet/minecraft/world/level/biome/Climate$Parameter;J)V net/minecraft/world/level/biome/Climate$ParameterPoint/ (Lnet/minecraft/world/level/biome/Climate$Parameter;Lnet/minecraft/world/level/biome/Climate$Parameter;Lnet/minecraft/world/level/biome/Climate$Parameter;Lnet/minecraft/world/level/biome/Climate$Parameter;Lnet/minecraft/world/level/biome/Climate$Parameter;Lnet/minecraft/world/level/biome/Climate$Parameter;J)V +MD: net/minecraft/world/level/biome/Climate$ParameterPoint/equals (Ljava/lang/Object;)Z net/minecraft/world/level/biome/Climate$ParameterPoint/equals (Ljava/lang/Object;)Z +MD: net/minecraft/world/level/biome/Climate$ParameterPoint/f_186863_ ()Lnet/minecraft/world/level/biome/Climate$Parameter; net/minecraft/world/level/biome/Climate$ParameterPoint/temperature ()Lnet/minecraft/world/level/biome/Climate$Parameter; +MD: net/minecraft/world/level/biome/Climate$ParameterPoint/f_186864_ ()Lnet/minecraft/world/level/biome/Climate$Parameter; net/minecraft/world/level/biome/Climate$ParameterPoint/humidity ()Lnet/minecraft/world/level/biome/Climate$Parameter; +MD: net/minecraft/world/level/biome/Climate$ParameterPoint/f_186865_ ()Lnet/minecraft/world/level/biome/Climate$Parameter; net/minecraft/world/level/biome/Climate$ParameterPoint/continentalness ()Lnet/minecraft/world/level/biome/Climate$Parameter; +MD: net/minecraft/world/level/biome/Climate$ParameterPoint/f_186866_ ()Lnet/minecraft/world/level/biome/Climate$Parameter; net/minecraft/world/level/biome/Climate$ParameterPoint/erosion ()Lnet/minecraft/world/level/biome/Climate$Parameter; +MD: net/minecraft/world/level/biome/Climate$ParameterPoint/f_186867_ ()Lnet/minecraft/world/level/biome/Climate$Parameter; net/minecraft/world/level/biome/Climate$ParameterPoint/depth ()Lnet/minecraft/world/level/biome/Climate$Parameter; +MD: net/minecraft/world/level/biome/Climate$ParameterPoint/f_186868_ ()Lnet/minecraft/world/level/biome/Climate$Parameter; net/minecraft/world/level/biome/Climate$ParameterPoint/weirdness ()Lnet/minecraft/world/level/biome/Climate$Parameter; +MD: net/minecraft/world/level/biome/Climate$ParameterPoint/f_186869_ ()J net/minecraft/world/level/biome/Climate$ParameterPoint/offset ()J +MD: net/minecraft/world/level/biome/Climate$ParameterPoint/hashCode ()I net/minecraft/world/level/biome/Climate$ParameterPoint/hashCode ()I +MD: net/minecraft/world/level/biome/Climate$ParameterPoint/m_186879_ ()Ljava/util/List; net/minecraft/world/level/biome/Climate$ParameterPoint/parameterSpace ()Ljava/util/List; +MD: net/minecraft/world/level/biome/Climate$ParameterPoint/m_186880_ (Lnet/minecraft/world/level/biome/Climate$ParameterPoint;)Ljava/lang/Long; net/minecraft/world/level/biome/Climate$ParameterPoint/lambda$static$6 (Lnet/minecraft/world/level/biome/Climate$ParameterPoint;)Ljava/lang/Long; +MD: net/minecraft/world/level/biome/Climate$ParameterPoint/m_186882_ (Lnet/minecraft/world/level/biome/Climate$TargetPoint;)J net/minecraft/world/level/biome/Climate$ParameterPoint/fitness (Lnet/minecraft/world/level/biome/Climate$TargetPoint;)J +MD: net/minecraft/world/level/biome/Climate$ParameterPoint/m_186884_ (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/world/level/biome/Climate$ParameterPoint/lambda$static$7 (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/world/level/biome/Climate$ParameterPoint/m_186887_ (Lnet/minecraft/world/level/biome/Climate$ParameterPoint;)Lnet/minecraft/world/level/biome/Climate$Parameter; net/minecraft/world/level/biome/Climate$ParameterPoint/lambda$static$5 (Lnet/minecraft/world/level/biome/Climate$ParameterPoint;)Lnet/minecraft/world/level/biome/Climate$Parameter; +MD: net/minecraft/world/level/biome/Climate$ParameterPoint/m_186890_ (Lnet/minecraft/world/level/biome/Climate$ParameterPoint;)Lnet/minecraft/world/level/biome/Climate$Parameter; net/minecraft/world/level/biome/Climate$ParameterPoint/lambda$static$4 (Lnet/minecraft/world/level/biome/Climate$ParameterPoint;)Lnet/minecraft/world/level/biome/Climate$Parameter; +MD: net/minecraft/world/level/biome/Climate$ParameterPoint/m_186893_ (Lnet/minecraft/world/level/biome/Climate$ParameterPoint;)Lnet/minecraft/world/level/biome/Climate$Parameter; net/minecraft/world/level/biome/Climate$ParameterPoint/lambda$static$3 (Lnet/minecraft/world/level/biome/Climate$ParameterPoint;)Lnet/minecraft/world/level/biome/Climate$Parameter; +MD: net/minecraft/world/level/biome/Climate$ParameterPoint/m_186896_ (Lnet/minecraft/world/level/biome/Climate$ParameterPoint;)Lnet/minecraft/world/level/biome/Climate$Parameter; net/minecraft/world/level/biome/Climate$ParameterPoint/lambda$static$2 (Lnet/minecraft/world/level/biome/Climate$ParameterPoint;)Lnet/minecraft/world/level/biome/Climate$Parameter; +MD: net/minecraft/world/level/biome/Climate$ParameterPoint/m_186901_ (Lnet/minecraft/world/level/biome/Climate$ParameterPoint;)Lnet/minecraft/world/level/biome/Climate$Parameter; net/minecraft/world/level/biome/Climate$ParameterPoint/lambda$static$1 (Lnet/minecraft/world/level/biome/Climate$ParameterPoint;)Lnet/minecraft/world/level/biome/Climate$Parameter; +MD: net/minecraft/world/level/biome/Climate$ParameterPoint/m_186904_ (Lnet/minecraft/world/level/biome/Climate$ParameterPoint;)Lnet/minecraft/world/level/biome/Climate$Parameter; net/minecraft/world/level/biome/Climate$ParameterPoint/lambda$static$0 (Lnet/minecraft/world/level/biome/Climate$ParameterPoint;)Lnet/minecraft/world/level/biome/Climate$Parameter; +MD: net/minecraft/world/level/biome/Climate$ParameterPoint/toString ()Ljava/lang/String; net/minecraft/world/level/biome/Climate$ParameterPoint/toString ()Ljava/lang/String; +MD: net/minecraft/world/level/biome/Climate$RTree/ (Lnet/minecraft/world/level/biome/Climate$RTree$Node;)V net/minecraft/world/level/biome/Climate$RTree/ (Lnet/minecraft/world/level/biome/Climate$RTree$Node;)V +MD: net/minecraft/world/level/biome/Climate$RTree/m_186914_ (ILnet/minecraft/world/level/biome/Climate$RTree$Node;)J net/minecraft/world/level/biome/Climate$RTree/lambda$build$1 (ILnet/minecraft/world/level/biome/Climate$RTree$Node;)J +MD: net/minecraft/world/level/biome/Climate$RTree/m_186917_ (ILnet/minecraft/world/level/biome/Climate$RTree$SubTree;)Lnet/minecraft/world/level/biome/Climate$RTree$Node; net/minecraft/world/level/biome/Climate$RTree/lambda$build$2 (ILnet/minecraft/world/level/biome/Climate$RTree$SubTree;)Lnet/minecraft/world/level/biome/Climate$RTree$Node; +MD: net/minecraft/world/level/biome/Climate$RTree/m_186920_ (ILjava/util/List;)Lnet/minecraft/world/level/biome/Climate$RTree$Node; net/minecraft/world/level/biome/Climate$RTree/build (ILjava/util/List;)Lnet/minecraft/world/level/biome/Climate$RTree$Node; +MD: net/minecraft/world/level/biome/Climate$RTree/m_186923_ (IZ)Ljava/util/Comparator; net/minecraft/world/level/biome/Climate$RTree/comparator (IZ)Ljava/util/Comparator; +MD: net/minecraft/world/level/biome/Climate$RTree/m_186926_ (IZLnet/minecraft/world/level/biome/Climate$RTree$Node;)J net/minecraft/world/level/biome/Climate$RTree/lambda$comparator$3 (IZLnet/minecraft/world/level/biome/Climate$RTree$Node;)J +MD: net/minecraft/world/level/biome/Climate$RTree/m_186930_ (Lnet/minecraft/world/level/biome/Climate$TargetPoint;Lnet/minecraft/world/level/biome/Climate$DistanceMetric;)Ljava/lang/Object; net/minecraft/world/level/biome/Climate$RTree/search (Lnet/minecraft/world/level/biome/Climate$TargetPoint;Lnet/minecraft/world/level/biome/Climate$DistanceMetric;)Ljava/lang/Object; +MD: net/minecraft/world/level/biome/Climate$RTree/m_186933_ (Lcom/mojang/datafixers/util/Pair;)Lnet/minecraft/world/level/biome/Climate$RTree$Leaf; net/minecraft/world/level/biome/Climate$RTree/lambda$create$0 (Lcom/mojang/datafixers/util/Pair;)Lnet/minecraft/world/level/biome/Climate$RTree$Leaf; +MD: net/minecraft/world/level/biome/Climate$RTree/m_186935_ (Ljava/util/List;)Lnet/minecraft/world/level/biome/Climate$RTree; net/minecraft/world/level/biome/Climate$RTree/create (Ljava/util/List;)Lnet/minecraft/world/level/biome/Climate$RTree; +MD: net/minecraft/world/level/biome/Climate$RTree/m_186937_ (Ljava/util/List;IIZ)V net/minecraft/world/level/biome/Climate$RTree/sort (Ljava/util/List;IIZ)V +MD: net/minecraft/world/level/biome/Climate$RTree/m_186942_ ([Lnet/minecraft/world/level/biome/Climate$Parameter;)J net/minecraft/world/level/biome/Climate$RTree/cost ([Lnet/minecraft/world/level/biome/Climate$Parameter;)J +MD: net/minecraft/world/level/biome/Climate$RTree/m_186944_ (Ljava/util/List;)Ljava/util/List; net/minecraft/world/level/biome/Climate$RTree/bucketize (Ljava/util/List;)Ljava/util/List; +MD: net/minecraft/world/level/biome/Climate$RTree/m_186946_ (Ljava/util/List;)Ljava/util/List; net/minecraft/world/level/biome/Climate$RTree/buildParameterSpace (Ljava/util/List;)Ljava/util/List; +MD: net/minecraft/world/level/biome/Climate$RTree$Leaf/ (Lnet/minecraft/world/level/biome/Climate$ParameterPoint;Ljava/lang/Object;)V net/minecraft/world/level/biome/Climate$RTree$Leaf/ (Lnet/minecraft/world/level/biome/Climate$ParameterPoint;Ljava/lang/Object;)V +MD: net/minecraft/world/level/biome/Climate$RTree$Leaf/m_183370_ ([JLnet/minecraft/world/level/biome/Climate$RTree$Leaf;Lnet/minecraft/world/level/biome/Climate$DistanceMetric;)Lnet/minecraft/world/level/biome/Climate$RTree$Leaf; net/minecraft/world/level/biome/Climate$RTree$Leaf/search ([JLnet/minecraft/world/level/biome/Climate$RTree$Leaf;Lnet/minecraft/world/level/biome/Climate$DistanceMetric;)Lnet/minecraft/world/level/biome/Climate$RTree$Leaf; +MD: net/minecraft/world/level/biome/Climate$RTree$Node/ (Ljava/util/List;)V net/minecraft/world/level/biome/Climate$RTree$Node/ (Ljava/util/List;)V +MD: net/minecraft/world/level/biome/Climate$RTree$Node/m_183370_ ([JLnet/minecraft/world/level/biome/Climate$RTree$Leaf;Lnet/minecraft/world/level/biome/Climate$DistanceMetric;)Lnet/minecraft/world/level/biome/Climate$RTree$Leaf; net/minecraft/world/level/biome/Climate$RTree$Node/search ([JLnet/minecraft/world/level/biome/Climate$RTree$Leaf;Lnet/minecraft/world/level/biome/Climate$DistanceMetric;)Lnet/minecraft/world/level/biome/Climate$RTree$Leaf; +MD: net/minecraft/world/level/biome/Climate$RTree$Node/m_186959_ ([J)J net/minecraft/world/level/biome/Climate$RTree$Node/distance ([J)J +MD: net/minecraft/world/level/biome/Climate$RTree$Node/toString ()Ljava/lang/String; net/minecraft/world/level/biome/Climate$RTree$Node/toString ()Ljava/lang/String; +MD: net/minecraft/world/level/biome/Climate$RTree$SubTree/ (Ljava/util/List;Ljava/util/List;)V net/minecraft/world/level/biome/Climate$RTree$SubTree/ (Ljava/util/List;Ljava/util/List;)V +MD: net/minecraft/world/level/biome/Climate$RTree$SubTree/ (Ljava/util/List;)V net/minecraft/world/level/biome/Climate$RTree$SubTree/ (Ljava/util/List;)V +MD: net/minecraft/world/level/biome/Climate$RTree$SubTree/m_183370_ ([JLnet/minecraft/world/level/biome/Climate$RTree$Leaf;Lnet/minecraft/world/level/biome/Climate$DistanceMetric;)Lnet/minecraft/world/level/biome/Climate$RTree$Leaf; net/minecraft/world/level/biome/Climate$RTree$SubTree/search ([JLnet/minecraft/world/level/biome/Climate$RTree$Leaf;Lnet/minecraft/world/level/biome/Climate$DistanceMetric;)Lnet/minecraft/world/level/biome/Climate$RTree$Leaf; +MD: net/minecraft/world/level/biome/Climate$Sampler/ (Lnet/minecraft/world/level/levelgen/DensityFunction;Lnet/minecraft/world/level/levelgen/DensityFunction;Lnet/minecraft/world/level/levelgen/DensityFunction;Lnet/minecraft/world/level/levelgen/DensityFunction;Lnet/minecraft/world/level/levelgen/DensityFunction;Lnet/minecraft/world/level/levelgen/DensityFunction;Ljava/util/List;)V net/minecraft/world/level/biome/Climate$Sampler/ (Lnet/minecraft/world/level/levelgen/DensityFunction;Lnet/minecraft/world/level/levelgen/DensityFunction;Lnet/minecraft/world/level/levelgen/DensityFunction;Lnet/minecraft/world/level/levelgen/DensityFunction;Lnet/minecraft/world/level/levelgen/DensityFunction;Lnet/minecraft/world/level/levelgen/DensityFunction;Ljava/util/List;)V +MD: net/minecraft/world/level/biome/Climate$Sampler/equals (Ljava/lang/Object;)Z net/minecraft/world/level/biome/Climate$Sampler/equals (Ljava/lang/Object;)Z +MD: net/minecraft/world/level/biome/Climate$Sampler/f_207845_ ()Lnet/minecraft/world/level/levelgen/DensityFunction; net/minecraft/world/level/biome/Climate$Sampler/temperature ()Lnet/minecraft/world/level/levelgen/DensityFunction; +MD: net/minecraft/world/level/biome/Climate$Sampler/f_207846_ ()Lnet/minecraft/world/level/levelgen/DensityFunction; net/minecraft/world/level/biome/Climate$Sampler/humidity ()Lnet/minecraft/world/level/levelgen/DensityFunction; +MD: net/minecraft/world/level/biome/Climate$Sampler/f_207847_ ()Lnet/minecraft/world/level/levelgen/DensityFunction; net/minecraft/world/level/biome/Climate$Sampler/continentalness ()Lnet/minecraft/world/level/levelgen/DensityFunction; +MD: net/minecraft/world/level/biome/Climate$Sampler/f_207848_ ()Lnet/minecraft/world/level/levelgen/DensityFunction; net/minecraft/world/level/biome/Climate$Sampler/erosion ()Lnet/minecraft/world/level/levelgen/DensityFunction; +MD: net/minecraft/world/level/biome/Climate$Sampler/f_207849_ ()Lnet/minecraft/world/level/levelgen/DensityFunction; net/minecraft/world/level/biome/Climate$Sampler/depth ()Lnet/minecraft/world/level/levelgen/DensityFunction; +MD: net/minecraft/world/level/biome/Climate$Sampler/f_207850_ ()Lnet/minecraft/world/level/levelgen/DensityFunction; net/minecraft/world/level/biome/Climate$Sampler/weirdness ()Lnet/minecraft/world/level/levelgen/DensityFunction; +MD: net/minecraft/world/level/biome/Climate$Sampler/f_207851_ ()Ljava/util/List; net/minecraft/world/level/biome/Climate$Sampler/spawnTarget ()Ljava/util/List; +MD: net/minecraft/world/level/biome/Climate$Sampler/hashCode ()I net/minecraft/world/level/biome/Climate$Sampler/hashCode ()I +MD: net/minecraft/world/level/biome/Climate$Sampler/m_183230_ ()Lnet/minecraft/core/BlockPos; net/minecraft/world/level/biome/Climate$Sampler/findSpawnPosition ()Lnet/minecraft/core/BlockPos; +MD: net/minecraft/world/level/biome/Climate$Sampler/m_183445_ (III)Lnet/minecraft/world/level/biome/Climate$TargetPoint; net/minecraft/world/level/biome/Climate$Sampler/sample (III)Lnet/minecraft/world/level/biome/Climate$TargetPoint; +MD: net/minecraft/world/level/biome/Climate$Sampler/toString ()Ljava/lang/String; net/minecraft/world/level/biome/Climate$Sampler/toString ()Ljava/lang/String; +MD: net/minecraft/world/level/biome/Climate$SpawnFinder/ (Ljava/util/List;Lnet/minecraft/world/level/biome/Climate$Sampler;)V net/minecraft/world/level/biome/Climate$SpawnFinder/ (Ljava/util/List;Lnet/minecraft/world/level/biome/Climate$Sampler;)V +MD: net/minecraft/world/level/biome/Climate$SpawnFinder/m_207874_ (Ljava/util/List;Lnet/minecraft/world/level/biome/Climate$Sampler;FF)V net/minecraft/world/level/biome/Climate$SpawnFinder/radialSearch (Ljava/util/List;Lnet/minecraft/world/level/biome/Climate$Sampler;FF)V +MD: net/minecraft/world/level/biome/Climate$SpawnFinder/m_207879_ (Ljava/util/List;Lnet/minecraft/world/level/biome/Climate$Sampler;II)Lnet/minecraft/world/level/biome/Climate$SpawnFinder$Result; net/minecraft/world/level/biome/Climate$SpawnFinder/getSpawnPositionAndFitness (Ljava/util/List;Lnet/minecraft/world/level/biome/Climate$Sampler;II)Lnet/minecraft/world/level/biome/Climate$SpawnFinder$Result; +MD: net/minecraft/world/level/biome/Climate$SpawnFinder$Result/ (Lnet/minecraft/core/BlockPos;J)V net/minecraft/world/level/biome/Climate$SpawnFinder$Result/ (Lnet/minecraft/core/BlockPos;J)V +MD: net/minecraft/world/level/biome/Climate$SpawnFinder$Result/equals (Ljava/lang/Object;)Z net/minecraft/world/level/biome/Climate$SpawnFinder$Result/equals (Ljava/lang/Object;)Z +MD: net/minecraft/world/level/biome/Climate$SpawnFinder$Result/f_186992_ ()Lnet/minecraft/core/BlockPos; net/minecraft/world/level/biome/Climate$SpawnFinder$Result/location ()Lnet/minecraft/core/BlockPos; +MD: net/minecraft/world/level/biome/Climate$SpawnFinder$Result/f_186993_ ()J net/minecraft/world/level/biome/Climate$SpawnFinder$Result/fitness ()J +MD: net/minecraft/world/level/biome/Climate$SpawnFinder$Result/hashCode ()I net/minecraft/world/level/biome/Climate$SpawnFinder$Result/hashCode ()I +MD: net/minecraft/world/level/biome/Climate$SpawnFinder$Result/toString ()Ljava/lang/String; net/minecraft/world/level/biome/Climate$SpawnFinder$Result/toString ()Ljava/lang/String; +MD: net/minecraft/world/level/biome/Climate$TargetPoint/ (JJJJJJ)V net/minecraft/world/level/biome/Climate$TargetPoint/ (JJJJJJ)V +MD: net/minecraft/world/level/biome/Climate$TargetPoint/equals (Ljava/lang/Object;)Z net/minecraft/world/level/biome/Climate$TargetPoint/equals (Ljava/lang/Object;)Z +MD: net/minecraft/world/level/biome/Climate$TargetPoint/f_187003_ ()J net/minecraft/world/level/biome/Climate$TargetPoint/temperature ()J +MD: net/minecraft/world/level/biome/Climate$TargetPoint/f_187004_ ()J net/minecraft/world/level/biome/Climate$TargetPoint/humidity ()J +MD: net/minecraft/world/level/biome/Climate$TargetPoint/f_187005_ ()J net/minecraft/world/level/biome/Climate$TargetPoint/continentalness ()J +MD: net/minecraft/world/level/biome/Climate$TargetPoint/f_187006_ ()J net/minecraft/world/level/biome/Climate$TargetPoint/erosion ()J +MD: net/minecraft/world/level/biome/Climate$TargetPoint/f_187007_ ()J net/minecraft/world/level/biome/Climate$TargetPoint/depth ()J +MD: net/minecraft/world/level/biome/Climate$TargetPoint/f_187008_ ()J net/minecraft/world/level/biome/Climate$TargetPoint/weirdness ()J +MD: net/minecraft/world/level/biome/Climate$TargetPoint/hashCode ()I net/minecraft/world/level/biome/Climate$TargetPoint/hashCode ()I +MD: net/minecraft/world/level/biome/Climate$TargetPoint/m_187016_ ()[J net/minecraft/world/level/biome/Climate$TargetPoint/toParameterArray ()[J +MD: net/minecraft/world/level/biome/Climate$TargetPoint/toString ()Ljava/lang/String; net/minecraft/world/level/biome/Climate$TargetPoint/toString ()Ljava/lang/String; +MD: net/minecraft/world/level/biome/FeatureSorter/ ()V net/minecraft/world/level/biome/FeatureSorter/ ()V +MD: net/minecraft/world/level/biome/FeatureSorter/m_220597_ (ILnet/minecraft/world/level/biome/FeatureSorter$1FeatureData;)Z net/minecraft/world/level/biome/FeatureSorter/lambda$buildFeaturesPerStep$2 (ILnet/minecraft/world/level/biome/FeatureSorter$1FeatureData;)Z +MD: net/minecraft/world/level/biome/FeatureSorter/m_220600_ (Ljava/util/Comparator;Lnet/minecraft/world/level/biome/FeatureSorter$1FeatureData;)Ljava/util/Set; net/minecraft/world/level/biome/FeatureSorter/lambda$buildFeaturesPerStep$1 (Ljava/util/Comparator;Lnet/minecraft/world/level/biome/FeatureSorter$1FeatureData;)Ljava/util/Set; +MD: net/minecraft/world/level/biome/FeatureSorter/m_220603_ (Ljava/util/List;Ljava/util/function/Function;Z)Ljava/util/List; net/minecraft/world/level/biome/FeatureSorter/buildFeaturesPerStep (Ljava/util/List;Ljava/util/function/Function;Z)Ljava/util/List; +MD: net/minecraft/world/level/biome/FeatureSorter/m_220607_ (Lorg/apache/commons/lang3/mutable/MutableInt;Ljava/lang/Object;)I net/minecraft/world/level/biome/FeatureSorter/lambda$buildFeaturesPerStep$0 (Lorg/apache/commons/lang3/mutable/MutableInt;Ljava/lang/Object;)I +MD: net/minecraft/world/level/biome/FeatureSorter$1FeatureData/ (IILnet/minecraft/world/level/levelgen/placement/PlacedFeature;)V net/minecraft/world/level/biome/FeatureSorter$1FeatureData/ (IILnet/minecraft/world/level/levelgen/placement/PlacedFeature;)V +MD: net/minecraft/world/level/biome/FeatureSorter$1FeatureData/equals (Ljava/lang/Object;)Z net/minecraft/world/level/biome/FeatureSorter$1FeatureData/equals (Ljava/lang/Object;)Z +MD: net/minecraft/world/level/biome/FeatureSorter$1FeatureData/f_220610_ ()I net/minecraft/world/level/biome/FeatureSorter$1FeatureData/featureIndex ()I +MD: net/minecraft/world/level/biome/FeatureSorter$1FeatureData/f_220611_ ()I net/minecraft/world/level/biome/FeatureSorter$1FeatureData/step ()I +MD: net/minecraft/world/level/biome/FeatureSorter$1FeatureData/f_220612_ ()Lnet/minecraft/world/level/levelgen/placement/PlacedFeature; net/minecraft/world/level/biome/FeatureSorter$1FeatureData/feature ()Lnet/minecraft/world/level/levelgen/placement/PlacedFeature; +MD: net/minecraft/world/level/biome/FeatureSorter$1FeatureData/hashCode ()I net/minecraft/world/level/biome/FeatureSorter$1FeatureData/hashCode ()I +MD: net/minecraft/world/level/biome/FeatureSorter$1FeatureData/toString ()Ljava/lang/String; net/minecraft/world/level/biome/FeatureSorter$1FeatureData/toString ()Ljava/lang/String; +MD: net/minecraft/world/level/biome/FeatureSorter$StepFeatureData/ (Ljava/util/List;Ljava/util/function/ToIntFunction;)V net/minecraft/world/level/biome/FeatureSorter$StepFeatureData/ (Ljava/util/List;Ljava/util/function/ToIntFunction;)V +MD: net/minecraft/world/level/biome/FeatureSorter$StepFeatureData/ (Ljava/util/List;)V net/minecraft/world/level/biome/FeatureSorter$StepFeatureData/ (Ljava/util/List;)V +MD: net/minecraft/world/level/biome/FeatureSorter$StepFeatureData/equals (Ljava/lang/Object;)Z net/minecraft/world/level/biome/FeatureSorter$StepFeatureData/equals (Ljava/lang/Object;)Z +MD: net/minecraft/world/level/biome/FeatureSorter$StepFeatureData/f_220624_ ()Ljava/util/List; net/minecraft/world/level/biome/FeatureSorter$StepFeatureData/features ()Ljava/util/List; +MD: net/minecraft/world/level/biome/FeatureSorter$StepFeatureData/f_220625_ ()Ljava/util/function/ToIntFunction; net/minecraft/world/level/biome/FeatureSorter$StepFeatureData/indexMapping ()Ljava/util/function/ToIntFunction; +MD: net/minecraft/world/level/biome/FeatureSorter$StepFeatureData/hashCode ()I net/minecraft/world/level/biome/FeatureSorter$StepFeatureData/hashCode ()I +MD: net/minecraft/world/level/biome/FeatureSorter$StepFeatureData/m_220632_ (I)Lit/unimi/dsi/fastutil/objects/Object2IntMap; net/minecraft/world/level/biome/FeatureSorter$StepFeatureData/lambda$new$0 (I)Lit/unimi/dsi/fastutil/objects/Object2IntMap; +MD: net/minecraft/world/level/biome/FeatureSorter$StepFeatureData/toString ()Ljava/lang/String; net/minecraft/world/level/biome/FeatureSorter$StepFeatureData/toString ()Ljava/lang/String; +MD: net/minecraft/world/level/biome/FixedBiomeSource/ ()V net/minecraft/world/level/biome/FixedBiomeSource/ ()V +MD: net/minecraft/world/level/biome/FixedBiomeSource/ (Lnet/minecraft/core/Holder;)V net/minecraft/world/level/biome/FixedBiomeSource/ (Lnet/minecraft/core/Holder;)V +MD: net/minecraft/world/level/biome/FixedBiomeSource/m_183399_ (IIIILnet/minecraft/world/level/biome/Climate$Sampler;)Ljava/util/Set; net/minecraft/world/level/biome/FixedBiomeSource/getBiomesWithin (IIIILnet/minecraft/world/level/biome/Climate$Sampler;)Ljava/util/Set; +MD: net/minecraft/world/level/biome/FixedBiomeSource/m_203407_ (IIILnet/minecraft/world/level/biome/Climate$Sampler;)Lnet/minecraft/core/Holder; net/minecraft/world/level/biome/FixedBiomeSource/getNoiseBiome (IIILnet/minecraft/world/level/biome/Climate$Sampler;)Lnet/minecraft/core/Holder; +MD: net/minecraft/world/level/biome/FixedBiomeSource/m_203495_ (III)Lnet/minecraft/core/Holder; net/minecraft/world/level/biome/FixedBiomeSource/getNoiseBiome (III)Lnet/minecraft/core/Holder; +MD: net/minecraft/world/level/biome/FixedBiomeSource/m_204258_ (Lnet/minecraft/world/level/biome/FixedBiomeSource;)Lnet/minecraft/core/Holder; net/minecraft/world/level/biome/FixedBiomeSource/lambda$static$0 (Lnet/minecraft/world/level/biome/FixedBiomeSource;)Lnet/minecraft/core/Holder; +MD: net/minecraft/world/level/biome/FixedBiomeSource/m_213971_ (IIIIILjava/util/function/Predicate;Lnet/minecraft/util/RandomSource;ZLnet/minecraft/world/level/biome/Climate$Sampler;)Lcom/mojang/datafixers/util/Pair; net/minecraft/world/level/biome/FixedBiomeSource/findBiomeHorizontal (IIIIILjava/util/function/Predicate;Lnet/minecraft/util/RandomSource;ZLnet/minecraft/world/level/biome/Climate$Sampler;)Lcom/mojang/datafixers/util/Pair; +MD: net/minecraft/world/level/biome/FixedBiomeSource/m_214004_ (Lnet/minecraft/core/BlockPos;IIILjava/util/function/Predicate;Lnet/minecraft/world/level/biome/Climate$Sampler;Lnet/minecraft/world/level/LevelReader;)Lcom/mojang/datafixers/util/Pair; net/minecraft/world/level/biome/FixedBiomeSource/findClosestBiome3d (Lnet/minecraft/core/BlockPos;IIILjava/util/function/Predicate;Lnet/minecraft/world/level/biome/Climate$Sampler;Lnet/minecraft/world/level/LevelReader;)Lcom/mojang/datafixers/util/Pair; +MD: net/minecraft/world/level/biome/FixedBiomeSource/m_274359_ ()Ljava/util/stream/Stream; net/minecraft/world/level/biome/FixedBiomeSource/collectPossibleBiomes ()Ljava/util/stream/Stream; +MD: net/minecraft/world/level/biome/FixedBiomeSource/m_5820_ ()Lcom/mojang/serialization/Codec; net/minecraft/world/level/biome/FixedBiomeSource/codec ()Lcom/mojang/serialization/Codec; +MD: net/minecraft/world/level/biome/MobSpawnSettings/ ()V net/minecraft/world/level/biome/MobSpawnSettings/ ()V +MD: net/minecraft/world/level/biome/MobSpawnSettings/ (FLjava/util/Map;Ljava/util/Map;)V net/minecraft/world/level/biome/MobSpawnSettings/ (FLjava/util/Map;Ljava/util/Map;)V +MD: net/minecraft/world/level/biome/MobSpawnSettings/m_151798_ (Lnet/minecraft/world/entity/MobCategory;)Lnet/minecraft/util/random/WeightedRandomList; net/minecraft/world/level/biome/MobSpawnSettings/getMobs (Lnet/minecraft/world/entity/MobCategory;)Lnet/minecraft/util/random/WeightedRandomList; +MD: net/minecraft/world/level/biome/MobSpawnSettings/m_187048_ (Lnet/minecraft/world/level/biome/MobSpawnSettings;)Ljava/util/Map; net/minecraft/world/level/biome/MobSpawnSettings/lambda$static$2 (Lnet/minecraft/world/level/biome/MobSpawnSettings;)Ljava/util/Map; +MD: net/minecraft/world/level/biome/MobSpawnSettings/m_187050_ (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/world/level/biome/MobSpawnSettings/lambda$static$3 (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/world/level/biome/MobSpawnSettings/m_187052_ (Lnet/minecraft/world/level/biome/MobSpawnSettings;)Ljava/util/Map; net/minecraft/world/level/biome/MobSpawnSettings/lambda$static$1 (Lnet/minecraft/world/level/biome/MobSpawnSettings;)Ljava/util/Map; +MD: net/minecraft/world/level/biome/MobSpawnSettings/m_187054_ (Lnet/minecraft/world/level/biome/MobSpawnSettings;)Ljava/lang/Float; net/minecraft/world/level/biome/MobSpawnSettings/lambda$static$0 (Lnet/minecraft/world/level/biome/MobSpawnSettings;)Ljava/lang/Float; +MD: net/minecraft/world/level/biome/MobSpawnSettings/m_48344_ ()F net/minecraft/world/level/biome/MobSpawnSettings/getCreatureProbability ()F +MD: net/minecraft/world/level/biome/MobSpawnSettings/m_48345_ (Lnet/minecraft/world/entity/EntityType;)Lnet/minecraft/world/level/biome/MobSpawnSettings$MobSpawnCost; net/minecraft/world/level/biome/MobSpawnSettings/getMobSpawnCost (Lnet/minecraft/world/entity/EntityType;)Lnet/minecraft/world/level/biome/MobSpawnSettings$MobSpawnCost; +MD: net/minecraft/world/level/biome/MobSpawnSettings$Builder/ ()V net/minecraft/world/level/biome/MobSpawnSettings$Builder/ ()V +MD: net/minecraft/world/level/biome/MobSpawnSettings$Builder/m_151808_ (Ljava/util/Map$Entry;)Lnet/minecraft/util/random/WeightedRandomList; net/minecraft/world/level/biome/MobSpawnSettings$Builder/lambda$build$2 (Ljava/util/Map$Entry;)Lnet/minecraft/util/random/WeightedRandomList; +MD: net/minecraft/world/level/biome/MobSpawnSettings$Builder/m_48368_ (F)Lnet/minecraft/world/level/biome/MobSpawnSettings$Builder; net/minecraft/world/level/biome/MobSpawnSettings$Builder/creatureGenerationProbability (F)Lnet/minecraft/world/level/biome/MobSpawnSettings$Builder; +MD: net/minecraft/world/level/biome/MobSpawnSettings$Builder/m_48370_ (Lnet/minecraft/world/entity/EntityType;DD)Lnet/minecraft/world/level/biome/MobSpawnSettings$Builder; net/minecraft/world/level/biome/MobSpawnSettings$Builder/addMobCharge (Lnet/minecraft/world/entity/EntityType;DD)Lnet/minecraft/world/level/biome/MobSpawnSettings$Builder; +MD: net/minecraft/world/level/biome/MobSpawnSettings$Builder/m_48374_ (Lnet/minecraft/world/entity/MobCategory;)Ljava/util/List; net/minecraft/world/level/biome/MobSpawnSettings$Builder/lambda$new$1 (Lnet/minecraft/world/entity/MobCategory;)Ljava/util/List; +MD: net/minecraft/world/level/biome/MobSpawnSettings$Builder/m_48376_ (Lnet/minecraft/world/entity/MobCategory;Lnet/minecraft/world/level/biome/MobSpawnSettings$SpawnerData;)Lnet/minecraft/world/level/biome/MobSpawnSettings$Builder; net/minecraft/world/level/biome/MobSpawnSettings$Builder/addSpawn (Lnet/minecraft/world/entity/MobCategory;Lnet/minecraft/world/level/biome/MobSpawnSettings$SpawnerData;)Lnet/minecraft/world/level/biome/MobSpawnSettings$Builder; +MD: net/minecraft/world/level/biome/MobSpawnSettings$Builder/m_48381_ ()Lnet/minecraft/world/level/biome/MobSpawnSettings; net/minecraft/world/level/biome/MobSpawnSettings$Builder/build ()Lnet/minecraft/world/level/biome/MobSpawnSettings; +MD: net/minecraft/world/level/biome/MobSpawnSettings$Builder/m_48382_ (Lnet/minecraft/world/entity/MobCategory;)Lnet/minecraft/world/entity/MobCategory; net/minecraft/world/level/biome/MobSpawnSettings$Builder/lambda$new$0 (Lnet/minecraft/world/entity/MobCategory;)Lnet/minecraft/world/entity/MobCategory; +MD: net/minecraft/world/level/biome/MobSpawnSettings$MobSpawnCost/ ()V net/minecraft/world/level/biome/MobSpawnSettings$MobSpawnCost/ ()V +MD: net/minecraft/world/level/biome/MobSpawnSettings$MobSpawnCost/ (DD)V net/minecraft/world/level/biome/MobSpawnSettings$MobSpawnCost/ (DD)V +MD: net/minecraft/world/level/biome/MobSpawnSettings$MobSpawnCost/equals (Ljava/lang/Object;)Z net/minecraft/world/level/biome/MobSpawnSettings$MobSpawnCost/equals (Ljava/lang/Object;)Z +MD: net/minecraft/world/level/biome/MobSpawnSettings$MobSpawnCost/f_48385_ ()D net/minecraft/world/level/biome/MobSpawnSettings$MobSpawnCost/energyBudget ()D +MD: net/minecraft/world/level/biome/MobSpawnSettings$MobSpawnCost/f_48386_ ()D net/minecraft/world/level/biome/MobSpawnSettings$MobSpawnCost/charge ()D +MD: net/minecraft/world/level/biome/MobSpawnSettings$MobSpawnCost/hashCode ()I net/minecraft/world/level/biome/MobSpawnSettings$MobSpawnCost/hashCode ()I +MD: net/minecraft/world/level/biome/MobSpawnSettings$MobSpawnCost/m_151810_ (Lnet/minecraft/world/level/biome/MobSpawnSettings$MobSpawnCost;)Ljava/lang/Double; net/minecraft/world/level/biome/MobSpawnSettings$MobSpawnCost/lambda$static$1 (Lnet/minecraft/world/level/biome/MobSpawnSettings$MobSpawnCost;)Ljava/lang/Double; +MD: net/minecraft/world/level/biome/MobSpawnSettings$MobSpawnCost/m_151812_ (Lnet/minecraft/world/level/biome/MobSpawnSettings$MobSpawnCost;)Ljava/lang/Double; net/minecraft/world/level/biome/MobSpawnSettings$MobSpawnCost/lambda$static$0 (Lnet/minecraft/world/level/biome/MobSpawnSettings$MobSpawnCost;)Ljava/lang/Double; +MD: net/minecraft/world/level/biome/MobSpawnSettings$MobSpawnCost/m_48398_ (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/world/level/biome/MobSpawnSettings$MobSpawnCost/lambda$static$2 (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/world/level/biome/MobSpawnSettings$MobSpawnCost/toString ()Ljava/lang/String; net/minecraft/world/level/biome/MobSpawnSettings$MobSpawnCost/toString ()Ljava/lang/String; +MD: net/minecraft/world/level/biome/MobSpawnSettings$SpawnerData/ ()V net/minecraft/world/level/biome/MobSpawnSettings$SpawnerData/ ()V +MD: net/minecraft/world/level/biome/MobSpawnSettings$SpawnerData/ (Lnet/minecraft/world/entity/EntityType;III)V net/minecraft/world/level/biome/MobSpawnSettings$SpawnerData/ (Lnet/minecraft/world/entity/EntityType;III)V +MD: net/minecraft/world/level/biome/MobSpawnSettings$SpawnerData/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/util/random/Weight;II)V net/minecraft/world/level/biome/MobSpawnSettings$SpawnerData/ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/util/random/Weight;II)V +MD: net/minecraft/world/level/biome/MobSpawnSettings$SpawnerData/m_151819_ (Lnet/minecraft/world/level/biome/MobSpawnSettings$SpawnerData;)Ljava/lang/Integer; net/minecraft/world/level/biome/MobSpawnSettings$SpawnerData/lambda$static$2 (Lnet/minecraft/world/level/biome/MobSpawnSettings$SpawnerData;)Ljava/lang/Integer; +MD: net/minecraft/world/level/biome/MobSpawnSettings$SpawnerData/m_151823_ (Lnet/minecraft/world/level/biome/MobSpawnSettings$SpawnerData;)Ljava/lang/Integer; net/minecraft/world/level/biome/MobSpawnSettings$SpawnerData/lambda$static$1 (Lnet/minecraft/world/level/biome/MobSpawnSettings$SpawnerData;)Ljava/lang/Integer; +MD: net/minecraft/world/level/biome/MobSpawnSettings$SpawnerData/m_151825_ (Lnet/minecraft/world/level/biome/MobSpawnSettings$SpawnerData;)Lnet/minecraft/world/entity/EntityType; net/minecraft/world/level/biome/MobSpawnSettings$SpawnerData/lambda$static$0 (Lnet/minecraft/world/level/biome/MobSpawnSettings$SpawnerData;)Lnet/minecraft/world/entity/EntityType; +MD: net/minecraft/world/level/biome/MobSpawnSettings$SpawnerData/m_274269_ (Lnet/minecraft/world/level/biome/MobSpawnSettings$SpawnerData;)Lcom/mojang/serialization/DataResult; net/minecraft/world/level/biome/MobSpawnSettings$SpawnerData/lambda$static$5 (Lnet/minecraft/world/level/biome/MobSpawnSettings$SpawnerData;)Lcom/mojang/serialization/DataResult; +MD: net/minecraft/world/level/biome/MobSpawnSettings$SpawnerData/m_274270_ (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/world/level/biome/MobSpawnSettings$SpawnerData/lambda$static$3 (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/world/level/biome/MobSpawnSettings$SpawnerData/m_274271_ ()Ljava/lang/String; net/minecraft/world/level/biome/MobSpawnSettings$SpawnerData/lambda$static$4 ()Ljava/lang/String; +MD: net/minecraft/world/level/biome/MobSpawnSettings$SpawnerData/toString ()Ljava/lang/String; net/minecraft/world/level/biome/MobSpawnSettings$SpawnerData/toString ()Ljava/lang/String; +MD: net/minecraft/world/level/biome/MultiNoiseBiomeSource/ ()V net/minecraft/world/level/biome/MultiNoiseBiomeSource/ ()V +MD: net/minecraft/world/level/biome/MultiNoiseBiomeSource/ (Lcom/mojang/datafixers/util/Either;)V net/minecraft/world/level/biome/MultiNoiseBiomeSource/ (Lcom/mojang/datafixers/util/Either;)V +MD: net/minecraft/world/level/biome/MultiNoiseBiomeSource/m_203407_ (IIILnet/minecraft/world/level/biome/Climate$Sampler;)Lnet/minecraft/core/Holder; net/minecraft/world/level/biome/MultiNoiseBiomeSource/getNoiseBiome (IIILnet/minecraft/world/level/biome/Climate$Sampler;)Lnet/minecraft/core/Holder; +MD: net/minecraft/world/level/biome/MultiNoiseBiomeSource/m_204269_ (Lnet/minecraft/world/level/biome/Climate$TargetPoint;)Lnet/minecraft/core/Holder; net/minecraft/world/level/biome/MultiNoiseBiomeSource/getNoiseBiome (Lnet/minecraft/world/level/biome/Climate$TargetPoint;)Lnet/minecraft/core/Holder; +MD: net/minecraft/world/level/biome/MultiNoiseBiomeSource/m_207301_ (Ljava/util/List;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/biome/Climate$Sampler;)V net/minecraft/world/level/biome/MultiNoiseBiomeSource/addDebugInfo (Ljava/util/List;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/biome/Climate$Sampler;)V +MD: net/minecraft/world/level/biome/MultiNoiseBiomeSource/m_274272_ (Lnet/minecraft/world/level/biome/MultiNoiseBiomeSource;)Lcom/mojang/datafixers/util/Either; net/minecraft/world/level/biome/MultiNoiseBiomeSource/lambda$static$0 (Lnet/minecraft/world/level/biome/MultiNoiseBiomeSource;)Lcom/mojang/datafixers/util/Either; +MD: net/minecraft/world/level/biome/MultiNoiseBiomeSource/m_274273_ (Lnet/minecraft/world/level/biome/Climate$ParameterList;)Lnet/minecraft/world/level/biome/Climate$ParameterList; net/minecraft/world/level/biome/MultiNoiseBiomeSource/lambda$parameters$1 (Lnet/minecraft/world/level/biome/Climate$ParameterList;)Lnet/minecraft/world/level/biome/Climate$ParameterList; +MD: net/minecraft/world/level/biome/MultiNoiseBiomeSource/m_274274_ (Lnet/minecraft/core/Holder;)Lnet/minecraft/world/level/biome/Climate$ParameterList; net/minecraft/world/level/biome/MultiNoiseBiomeSource/lambda$parameters$2 (Lnet/minecraft/core/Holder;)Lnet/minecraft/world/level/biome/Climate$ParameterList; +MD: net/minecraft/world/level/biome/MultiNoiseBiomeSource/m_274359_ ()Ljava/util/stream/Stream; net/minecraft/world/level/biome/MultiNoiseBiomeSource/collectPossibleBiomes ()Ljava/util/stream/Stream; +MD: net/minecraft/world/level/biome/MultiNoiseBiomeSource/m_274409_ ()Lnet/minecraft/world/level/biome/Climate$ParameterList; net/minecraft/world/level/biome/MultiNoiseBiomeSource/parameters ()Lnet/minecraft/world/level/biome/Climate$ParameterList; +MD: net/minecraft/world/level/biome/MultiNoiseBiomeSource/m_274493_ (Lnet/minecraft/resources/ResourceKey;)Z net/minecraft/world/level/biome/MultiNoiseBiomeSource/stable (Lnet/minecraft/resources/ResourceKey;)Z +MD: net/minecraft/world/level/biome/MultiNoiseBiomeSource/m_274591_ (Lnet/minecraft/core/Holder;)Lnet/minecraft/world/level/biome/MultiNoiseBiomeSource; net/minecraft/world/level/biome/MultiNoiseBiomeSource/createFromPreset (Lnet/minecraft/core/Holder;)Lnet/minecraft/world/level/biome/MultiNoiseBiomeSource; +MD: net/minecraft/world/level/biome/MultiNoiseBiomeSource/m_274596_ (Lnet/minecraft/world/level/biome/Climate$ParameterList;)Lnet/minecraft/world/level/biome/MultiNoiseBiomeSource; net/minecraft/world/level/biome/MultiNoiseBiomeSource/createFromList (Lnet/minecraft/world/level/biome/Climate$ParameterList;)Lnet/minecraft/world/level/biome/MultiNoiseBiomeSource; +MD: net/minecraft/world/level/biome/MultiNoiseBiomeSource/m_5820_ ()Lcom/mojang/serialization/Codec; net/minecraft/world/level/biome/MultiNoiseBiomeSource/codec ()Lcom/mojang/serialization/Codec; +MD: net/minecraft/world/level/biome/MultiNoiseBiomeSourceParameterList/ ()V net/minecraft/world/level/biome/MultiNoiseBiomeSourceParameterList/ ()V +MD: net/minecraft/world/level/biome/MultiNoiseBiomeSourceParameterList/ (Lnet/minecraft/world/level/biome/MultiNoiseBiomeSourceParameterList$Preset;Lnet/minecraft/core/HolderGetter;)V net/minecraft/world/level/biome/MultiNoiseBiomeSourceParameterList/ (Lnet/minecraft/world/level/biome/MultiNoiseBiomeSourceParameterList$Preset;Lnet/minecraft/core/HolderGetter;)V +MD: net/minecraft/world/level/biome/MultiNoiseBiomeSourceParameterList/m_274334_ (Lnet/minecraft/resources/ResourceKey;)Lnet/minecraft/resources/ResourceKey; net/minecraft/world/level/biome/MultiNoiseBiomeSourceParameterList/lambda$knownPresets$3 (Lnet/minecraft/resources/ResourceKey;)Lnet/minecraft/resources/ResourceKey; +MD: net/minecraft/world/level/biome/MultiNoiseBiomeSourceParameterList/m_274368_ ()Ljava/util/Map; net/minecraft/world/level/biome/MultiNoiseBiomeSourceParameterList/knownPresets ()Ljava/util/Map; +MD: net/minecraft/world/level/biome/MultiNoiseBiomeSourceParameterList/m_274385_ ()Lnet/minecraft/world/level/biome/Climate$ParameterList; net/minecraft/world/level/biome/MultiNoiseBiomeSourceParameterList/parameters ()Lnet/minecraft/world/level/biome/Climate$ParameterList; +MD: net/minecraft/world/level/biome/MultiNoiseBiomeSourceParameterList/m_274390_ (Lnet/minecraft/world/level/biome/MultiNoiseBiomeSourceParameterList;)Lnet/minecraft/world/level/biome/MultiNoiseBiomeSourceParameterList$Preset; net/minecraft/world/level/biome/MultiNoiseBiomeSourceParameterList/lambda$static$0 (Lnet/minecraft/world/level/biome/MultiNoiseBiomeSourceParameterList;)Lnet/minecraft/world/level/biome/MultiNoiseBiomeSourceParameterList$Preset; +MD: net/minecraft/world/level/biome/MultiNoiseBiomeSourceParameterList/m_274470_ (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/world/level/biome/MultiNoiseBiomeSourceParameterList/lambda$static$1 (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/world/level/biome/MultiNoiseBiomeSourceParameterList/m_274544_ (Lnet/minecraft/world/level/biome/MultiNoiseBiomeSourceParameterList$Preset;)Lnet/minecraft/world/level/biome/MultiNoiseBiomeSourceParameterList$Preset; net/minecraft/world/level/biome/MultiNoiseBiomeSourceParameterList/lambda$knownPresets$2 (Lnet/minecraft/world/level/biome/MultiNoiseBiomeSourceParameterList$Preset;)Lnet/minecraft/world/level/biome/MultiNoiseBiomeSourceParameterList$Preset; +MD: net/minecraft/world/level/biome/MultiNoiseBiomeSourceParameterList/m_274547_ (Lnet/minecraft/world/level/biome/MultiNoiseBiomeSourceParameterList$Preset;)Lnet/minecraft/world/level/biome/Climate$ParameterList; net/minecraft/world/level/biome/MultiNoiseBiomeSourceParameterList/lambda$knownPresets$4 (Lnet/minecraft/world/level/biome/MultiNoiseBiomeSourceParameterList$Preset;)Lnet/minecraft/world/level/biome/Climate$ParameterList; +MD: net/minecraft/world/level/biome/MultiNoiseBiomeSourceParameterList$Preset/ ()V net/minecraft/world/level/biome/MultiNoiseBiomeSourceParameterList$Preset/ ()V +MD: net/minecraft/world/level/biome/MultiNoiseBiomeSourceParameterList$Preset/ (Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/world/level/biome/MultiNoiseBiomeSourceParameterList$Preset$SourceProvider;)V net/minecraft/world/level/biome/MultiNoiseBiomeSourceParameterList$Preset/ (Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/world/level/biome/MultiNoiseBiomeSourceParameterList$Preset$SourceProvider;)V +MD: net/minecraft/world/level/biome/MultiNoiseBiomeSourceParameterList$Preset/equals (Ljava/lang/Object;)Z net/minecraft/world/level/biome/MultiNoiseBiomeSourceParameterList$Preset/equals (Ljava/lang/Object;)Z +MD: net/minecraft/world/level/biome/MultiNoiseBiomeSourceParameterList$Preset/f_273865_ ()Lnet/minecraft/world/level/biome/MultiNoiseBiomeSourceParameterList$Preset$SourceProvider; net/minecraft/world/level/biome/MultiNoiseBiomeSourceParameterList$Preset/provider ()Lnet/minecraft/world/level/biome/MultiNoiseBiomeSourceParameterList$Preset$SourceProvider; +MD: net/minecraft/world/level/biome/MultiNoiseBiomeSourceParameterList$Preset/f_273944_ ()Lnet/minecraft/resources/ResourceLocation; net/minecraft/world/level/biome/MultiNoiseBiomeSourceParameterList$Preset/id ()Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/world/level/biome/MultiNoiseBiomeSourceParameterList$Preset/hashCode ()I net/minecraft/world/level/biome/MultiNoiseBiomeSourceParameterList$Preset/hashCode ()I +MD: net/minecraft/world/level/biome/MultiNoiseBiomeSourceParameterList$Preset/m_274315_ (Lnet/minecraft/resources/ResourceLocation;)Lcom/mojang/serialization/DataResult; net/minecraft/world/level/biome/MultiNoiseBiomeSourceParameterList$Preset/lambda$static$2 (Lnet/minecraft/resources/ResourceLocation;)Lcom/mojang/serialization/DataResult; +MD: net/minecraft/world/level/biome/MultiNoiseBiomeSourceParameterList$Preset/m_274346_ (Lnet/minecraft/world/level/biome/MultiNoiseBiomeSourceParameterList$Preset;)Lcom/mojang/serialization/DataResult; net/minecraft/world/level/biome/MultiNoiseBiomeSourceParameterList$Preset/lambda$static$4 (Lnet/minecraft/world/level/biome/MultiNoiseBiomeSourceParameterList$Preset;)Lcom/mojang/serialization/DataResult; +MD: net/minecraft/world/level/biome/MultiNoiseBiomeSourceParameterList$Preset/m_274363_ (Lnet/minecraft/resources/ResourceLocation;)Lcom/mojang/serialization/DataResult; net/minecraft/world/level/biome/MultiNoiseBiomeSourceParameterList$Preset/lambda$static$3 (Lnet/minecraft/resources/ResourceLocation;)Lcom/mojang/serialization/DataResult; +MD: net/minecraft/world/level/biome/MultiNoiseBiomeSourceParameterList$Preset/m_274423_ (Lnet/minecraft/resources/ResourceLocation;)Ljava/lang/String; net/minecraft/world/level/biome/MultiNoiseBiomeSourceParameterList$Preset/lambda$static$1 (Lnet/minecraft/resources/ResourceLocation;)Ljava/lang/String; +MD: net/minecraft/world/level/biome/MultiNoiseBiomeSourceParameterList$Preset/m_274469_ (Lnet/minecraft/world/level/biome/MultiNoiseBiomeSourceParameterList$Preset;)Lnet/minecraft/world/level/biome/MultiNoiseBiomeSourceParameterList$Preset; net/minecraft/world/level/biome/MultiNoiseBiomeSourceParameterList$Preset/lambda$static$0 (Lnet/minecraft/world/level/biome/MultiNoiseBiomeSourceParameterList$Preset;)Lnet/minecraft/world/level/biome/MultiNoiseBiomeSourceParameterList$Preset; +MD: net/minecraft/world/level/biome/MultiNoiseBiomeSourceParameterList$Preset/m_274501_ (Lcom/google/common/collect/ImmutableList$Builder;Ljava/util/function/Function;Lcom/mojang/datafixers/util/Pair;)V net/minecraft/world/level/biome/MultiNoiseBiomeSourceParameterList$Preset/lambda$generateOverworldBiomes$5 (Lcom/google/common/collect/ImmutableList$Builder;Ljava/util/function/Function;Lcom/mojang/datafixers/util/Pair;)V +MD: net/minecraft/world/level/biome/MultiNoiseBiomeSourceParameterList$Preset/m_274532_ (Lnet/minecraft/resources/ResourceKey;)Lnet/minecraft/resources/ResourceKey; net/minecraft/world/level/biome/MultiNoiseBiomeSourceParameterList$Preset/lambda$usedBiomes$6 (Lnet/minecraft/resources/ResourceKey;)Lnet/minecraft/resources/ResourceKey; +MD: net/minecraft/world/level/biome/MultiNoiseBiomeSourceParameterList$Preset/m_274593_ ()Ljava/util/stream/Stream; net/minecraft/world/level/biome/MultiNoiseBiomeSourceParameterList$Preset/usedBiomes ()Ljava/util/stream/Stream; +MD: net/minecraft/world/level/biome/MultiNoiseBiomeSourceParameterList$Preset/m_276781_ (Ljava/util/function/Function;)Lnet/minecraft/world/level/biome/Climate$ParameterList; net/minecraft/world/level/biome/MultiNoiseBiomeSourceParameterList$Preset/generateOverworldBiomes (Ljava/util/function/Function;)Lnet/minecraft/world/level/biome/Climate$ParameterList; +MD: net/minecraft/world/level/biome/MultiNoiseBiomeSourceParameterList$Preset/toString ()Ljava/lang/String; net/minecraft/world/level/biome/MultiNoiseBiomeSourceParameterList$Preset/toString ()Ljava/lang/String; +MD: net/minecraft/world/level/biome/MultiNoiseBiomeSourceParameterList$Preset$1/ ()V net/minecraft/world/level/biome/MultiNoiseBiomeSourceParameterList$Preset$1/ ()V +MD: net/minecraft/world/level/biome/MultiNoiseBiomeSourceParameterList$Preset$1/m_274430_ (Ljava/util/function/Function;)Lnet/minecraft/world/level/biome/Climate$ParameterList; net/minecraft/world/level/biome/MultiNoiseBiomeSourceParameterList$Preset$1/apply (Ljava/util/function/Function;)Lnet/minecraft/world/level/biome/Climate$ParameterList; +MD: net/minecraft/world/level/biome/MultiNoiseBiomeSourceParameterList$Preset$2/ ()V net/minecraft/world/level/biome/MultiNoiseBiomeSourceParameterList$Preset$2/ ()V +MD: net/minecraft/world/level/biome/MultiNoiseBiomeSourceParameterList$Preset$2/m_274430_ (Ljava/util/function/Function;)Lnet/minecraft/world/level/biome/Climate$ParameterList; net/minecraft/world/level/biome/MultiNoiseBiomeSourceParameterList$Preset$2/apply (Ljava/util/function/Function;)Lnet/minecraft/world/level/biome/Climate$ParameterList; +MD: net/minecraft/world/level/biome/MultiNoiseBiomeSourceParameterList$Preset$SourceProvider/m_274430_ (Ljava/util/function/Function;)Lnet/minecraft/world/level/biome/Climate$ParameterList; net/minecraft/world/level/biome/MultiNoiseBiomeSourceParameterList$Preset$SourceProvider/apply (Ljava/util/function/Function;)Lnet/minecraft/world/level/biome/Climate$ParameterList; +MD: net/minecraft/world/level/biome/MultiNoiseBiomeSourceParameterLists/ ()V net/minecraft/world/level/biome/MultiNoiseBiomeSourceParameterLists/ ()V +MD: net/minecraft/world/level/biome/MultiNoiseBiomeSourceParameterLists/ ()V net/minecraft/world/level/biome/MultiNoiseBiomeSourceParameterLists/ ()V +MD: net/minecraft/world/level/biome/MultiNoiseBiomeSourceParameterLists/m_274548_ (Ljava/lang/String;)Lnet/minecraft/resources/ResourceKey; net/minecraft/world/level/biome/MultiNoiseBiomeSourceParameterLists/register (Ljava/lang/String;)Lnet/minecraft/resources/ResourceKey; +MD: net/minecraft/world/level/biome/MultiNoiseBiomeSourceParameterLists/m_274553_ (Lnet/minecraft/data/worldgen/BootstapContext;)V net/minecraft/world/level/biome/MultiNoiseBiomeSourceParameterLists/bootstrap (Lnet/minecraft/data/worldgen/BootstapContext;)V +MD: net/minecraft/world/level/biome/OverworldBiomeBuilder/ ()V net/minecraft/world/level/biome/OverworldBiomeBuilder/ ()V +MD: net/minecraft/world/level/biome/OverworldBiomeBuilder/m_187154_ ()Ljava/util/List; net/minecraft/world/level/biome/OverworldBiomeBuilder/spawnTarget ()Ljava/util/List; +MD: net/minecraft/world/level/biome/OverworldBiomeBuilder/m_187155_ (D)Ljava/lang/String; net/minecraft/world/level/biome/OverworldBiomeBuilder/getDebugStringForPeaksAndValleys (D)Ljava/lang/String; +MD: net/minecraft/world/level/biome/OverworldBiomeBuilder/m_187157_ (D[Lnet/minecraft/world/level/biome/Climate$Parameter;)Ljava/lang/String; net/minecraft/world/level/biome/OverworldBiomeBuilder/getDebugStringForNoiseValue (D[Lnet/minecraft/world/level/biome/Climate$Parameter;)Ljava/lang/String; +MD: net/minecraft/world/level/biome/OverworldBiomeBuilder/m_187160_ (II)Lnet/minecraft/resources/ResourceKey; net/minecraft/world/level/biome/OverworldBiomeBuilder/pickBeachBiome (II)Lnet/minecraft/resources/ResourceKey; +MD: net/minecraft/world/level/biome/OverworldBiomeBuilder/m_187163_ (IILnet/minecraft/world/level/biome/Climate$Parameter;)Lnet/minecraft/resources/ResourceKey; net/minecraft/world/level/biome/OverworldBiomeBuilder/pickMiddleBiome (IILnet/minecraft/world/level/biome/Climate$Parameter;)Lnet/minecraft/resources/ResourceKey; +MD: net/minecraft/world/level/biome/OverworldBiomeBuilder/m_187172_ (ILnet/minecraft/world/level/biome/Climate$Parameter;)Lnet/minecraft/resources/ResourceKey; net/minecraft/world/level/biome/OverworldBiomeBuilder/pickBadlandsBiome (ILnet/minecraft/world/level/biome/Climate$Parameter;)Lnet/minecraft/resources/ResourceKey; +MD: net/minecraft/world/level/biome/OverworldBiomeBuilder/m_187175_ (Ljava/util/function/Consumer;)V net/minecraft/world/level/biome/OverworldBiomeBuilder/addBiomes (Ljava/util/function/Consumer;)V +MD: net/minecraft/world/level/biome/OverworldBiomeBuilder/m_187177_ (Ljava/util/function/Consumer;Lnet/minecraft/world/level/biome/Climate$Parameter;)V net/minecraft/world/level/biome/OverworldBiomeBuilder/addPeaks (Ljava/util/function/Consumer;Lnet/minecraft/world/level/biome/Climate$Parameter;)V +MD: net/minecraft/world/level/biome/OverworldBiomeBuilder/m_187180_ (Ljava/util/function/Consumer;Lnet/minecraft/world/level/biome/Climate$Parameter;Lnet/minecraft/world/level/biome/Climate$Parameter;Lnet/minecraft/world/level/biome/Climate$Parameter;Lnet/minecraft/world/level/biome/Climate$Parameter;Lnet/minecraft/world/level/biome/Climate$Parameter;FLnet/minecraft/resources/ResourceKey;)V net/minecraft/world/level/biome/OverworldBiomeBuilder/addSurfaceBiome (Ljava/util/function/Consumer;Lnet/minecraft/world/level/biome/Climate$Parameter;Lnet/minecraft/world/level/biome/Climate$Parameter;Lnet/minecraft/world/level/biome/Climate$Parameter;Lnet/minecraft/world/level/biome/Climate$Parameter;Lnet/minecraft/world/level/biome/Climate$Parameter;FLnet/minecraft/resources/ResourceKey;)V +MD: net/minecraft/world/level/biome/OverworldBiomeBuilder/m_187189_ (D)Ljava/lang/String; net/minecraft/world/level/biome/OverworldBiomeBuilder/getDebugStringForContinentalness (D)Ljava/lang/String; +MD: net/minecraft/world/level/biome/OverworldBiomeBuilder/m_187191_ (IILnet/minecraft/world/level/biome/Climate$Parameter;)Lnet/minecraft/resources/ResourceKey; net/minecraft/world/level/biome/OverworldBiomeBuilder/pickMiddleBiomeOrBadlandsIfHot (IILnet/minecraft/world/level/biome/Climate$Parameter;)Lnet/minecraft/resources/ResourceKey; +MD: net/minecraft/world/level/biome/OverworldBiomeBuilder/m_187195_ (Ljava/util/function/Consumer;)V net/minecraft/world/level/biome/OverworldBiomeBuilder/addOffCoastBiomes (Ljava/util/function/Consumer;)V +MD: net/minecraft/world/level/biome/OverworldBiomeBuilder/m_187197_ (Ljava/util/function/Consumer;Lnet/minecraft/world/level/biome/Climate$Parameter;)V net/minecraft/world/level/biome/OverworldBiomeBuilder/addHighSlice (Ljava/util/function/Consumer;Lnet/minecraft/world/level/biome/Climate$Parameter;)V +MD: net/minecraft/world/level/biome/OverworldBiomeBuilder/m_187200_ (Ljava/util/function/Consumer;Lnet/minecraft/world/level/biome/Climate$Parameter;Lnet/minecraft/world/level/biome/Climate$Parameter;Lnet/minecraft/world/level/biome/Climate$Parameter;Lnet/minecraft/world/level/biome/Climate$Parameter;Lnet/minecraft/world/level/biome/Climate$Parameter;FLnet/minecraft/resources/ResourceKey;)V net/minecraft/world/level/biome/OverworldBiomeBuilder/addUndergroundBiome (Ljava/util/function/Consumer;Lnet/minecraft/world/level/biome/Climate$Parameter;Lnet/minecraft/world/level/biome/Climate$Parameter;Lnet/minecraft/world/level/biome/Climate$Parameter;Lnet/minecraft/world/level/biome/Climate$Parameter;Lnet/minecraft/world/level/biome/Climate$Parameter;FLnet/minecraft/resources/ResourceKey;)V +MD: net/minecraft/world/level/biome/OverworldBiomeBuilder/m_187209_ (D)Ljava/lang/String; net/minecraft/world/level/biome/OverworldBiomeBuilder/getDebugStringForErosion (D)Ljava/lang/String; +MD: net/minecraft/world/level/biome/OverworldBiomeBuilder/m_187211_ (IILnet/minecraft/world/level/biome/Climate$Parameter;)Lnet/minecraft/resources/ResourceKey; net/minecraft/world/level/biome/OverworldBiomeBuilder/pickMiddleBiomeOrBadlandsIfHotOrSlopeIfCold (IILnet/minecraft/world/level/biome/Climate$Parameter;)Lnet/minecraft/resources/ResourceKey; +MD: net/minecraft/world/level/biome/OverworldBiomeBuilder/m_187215_ (Ljava/util/function/Consumer;)V net/minecraft/world/level/biome/OverworldBiomeBuilder/addInlandBiomes (Ljava/util/function/Consumer;)V +MD: net/minecraft/world/level/biome/OverworldBiomeBuilder/m_187217_ (Ljava/util/function/Consumer;Lnet/minecraft/world/level/biome/Climate$Parameter;)V net/minecraft/world/level/biome/OverworldBiomeBuilder/addMidSlice (Ljava/util/function/Consumer;Lnet/minecraft/world/level/biome/Climate$Parameter;)V +MD: net/minecraft/world/level/biome/OverworldBiomeBuilder/m_187220_ (D)Ljava/lang/String; net/minecraft/world/level/biome/OverworldBiomeBuilder/getDebugStringForTemperature (D)Ljava/lang/String; +MD: net/minecraft/world/level/biome/OverworldBiomeBuilder/m_187222_ (IILnet/minecraft/world/level/biome/Climate$Parameter;)Lnet/minecraft/resources/ResourceKey; net/minecraft/world/level/biome/OverworldBiomeBuilder/pickShatteredCoastBiome (IILnet/minecraft/world/level/biome/Climate$Parameter;)Lnet/minecraft/resources/ResourceKey; +MD: net/minecraft/world/level/biome/OverworldBiomeBuilder/m_187226_ (Ljava/util/function/Consumer;)V net/minecraft/world/level/biome/OverworldBiomeBuilder/addUndergroundBiomes (Ljava/util/function/Consumer;)V +MD: net/minecraft/world/level/biome/OverworldBiomeBuilder/m_187228_ (Ljava/util/function/Consumer;Lnet/minecraft/world/level/biome/Climate$Parameter;)V net/minecraft/world/level/biome/OverworldBiomeBuilder/addLowSlice (Ljava/util/function/Consumer;Lnet/minecraft/world/level/biome/Climate$Parameter;)V +MD: net/minecraft/world/level/biome/OverworldBiomeBuilder/m_187231_ (D)Ljava/lang/String; net/minecraft/world/level/biome/OverworldBiomeBuilder/getDebugStringForHumidity (D)Ljava/lang/String; +MD: net/minecraft/world/level/biome/OverworldBiomeBuilder/m_187233_ (IILnet/minecraft/world/level/biome/Climate$Parameter;)Lnet/minecraft/resources/ResourceKey; net/minecraft/world/level/biome/OverworldBiomeBuilder/pickPlateauBiome (IILnet/minecraft/world/level/biome/Climate$Parameter;)Lnet/minecraft/resources/ResourceKey; +MD: net/minecraft/world/level/biome/OverworldBiomeBuilder/m_187237_ (Ljava/util/function/Consumer;Lnet/minecraft/world/level/biome/Climate$Parameter;)V net/minecraft/world/level/biome/OverworldBiomeBuilder/addValleys (Ljava/util/function/Consumer;Lnet/minecraft/world/level/biome/Climate$Parameter;)V +MD: net/minecraft/world/level/biome/OverworldBiomeBuilder/m_187240_ (IILnet/minecraft/world/level/biome/Climate$Parameter;)Lnet/minecraft/resources/ResourceKey; net/minecraft/world/level/biome/OverworldBiomeBuilder/pickPeakBiome (IILnet/minecraft/world/level/biome/Climate$Parameter;)Lnet/minecraft/resources/ResourceKey; +MD: net/minecraft/world/level/biome/OverworldBiomeBuilder/m_187244_ (IILnet/minecraft/world/level/biome/Climate$Parameter;)Lnet/minecraft/resources/ResourceKey; net/minecraft/world/level/biome/OverworldBiomeBuilder/pickSlopeBiome (IILnet/minecraft/world/level/biome/Climate$Parameter;)Lnet/minecraft/resources/ResourceKey; +MD: net/minecraft/world/level/biome/OverworldBiomeBuilder/m_201990_ (IILnet/minecraft/world/level/biome/Climate$Parameter;Lnet/minecraft/resources/ResourceKey;)Lnet/minecraft/resources/ResourceKey; net/minecraft/world/level/biome/OverworldBiomeBuilder/maybePickWindsweptSavannaBiome (IILnet/minecraft/world/level/biome/Climate$Parameter;Lnet/minecraft/resources/ResourceKey;)Lnet/minecraft/resources/ResourceKey; +MD: net/minecraft/world/level/biome/OverworldBiomeBuilder/m_201995_ ()[Lnet/minecraft/world/level/biome/Climate$Parameter; net/minecraft/world/level/biome/OverworldBiomeBuilder/getTemperatureThresholds ()[Lnet/minecraft/world/level/biome/Climate$Parameter; +MD: net/minecraft/world/level/biome/OverworldBiomeBuilder/m_201996_ ()[Lnet/minecraft/world/level/biome/Climate$Parameter; net/minecraft/world/level/biome/OverworldBiomeBuilder/getHumidityThresholds ()[Lnet/minecraft/world/level/biome/Climate$Parameter; +MD: net/minecraft/world/level/biome/OverworldBiomeBuilder/m_201997_ ()[Lnet/minecraft/world/level/biome/Climate$Parameter; net/minecraft/world/level/biome/OverworldBiomeBuilder/getErosionThresholds ()[Lnet/minecraft/world/level/biome/Climate$Parameter; +MD: net/minecraft/world/level/biome/OverworldBiomeBuilder/m_201998_ ()[Lnet/minecraft/world/level/biome/Climate$Parameter; net/minecraft/world/level/biome/OverworldBiomeBuilder/getContinentalnessThresholds ()[Lnet/minecraft/world/level/biome/Climate$Parameter; +MD: net/minecraft/world/level/biome/OverworldBiomeBuilder/m_201999_ ()[Lnet/minecraft/world/level/biome/Climate$Parameter; net/minecraft/world/level/biome/OverworldBiomeBuilder/getPeaksAndValleysThresholds ()[Lnet/minecraft/world/level/biome/Climate$Parameter; +MD: net/minecraft/world/level/biome/OverworldBiomeBuilder/m_202000_ ()[Lnet/minecraft/world/level/biome/Climate$Parameter; net/minecraft/world/level/biome/OverworldBiomeBuilder/getWeirdnessThresholds ()[Lnet/minecraft/world/level/biome/Climate$Parameter; +MD: net/minecraft/world/level/biome/OverworldBiomeBuilder/m_202001_ (IILnet/minecraft/world/level/biome/Climate$Parameter;)Lnet/minecraft/resources/ResourceKey; net/minecraft/world/level/biome/OverworldBiomeBuilder/pickShatteredBiome (IILnet/minecraft/world/level/biome/Climate$Parameter;)Lnet/minecraft/resources/ResourceKey; +MD: net/minecraft/world/level/biome/OverworldBiomeBuilder/m_220668_ (Ljava/util/function/Consumer;Lnet/minecraft/world/level/biome/Climate$Parameter;Lnet/minecraft/world/level/biome/Climate$Parameter;Lnet/minecraft/world/level/biome/Climate$Parameter;Lnet/minecraft/world/level/biome/Climate$Parameter;Lnet/minecraft/world/level/biome/Climate$Parameter;FLnet/minecraft/resources/ResourceKey;)V net/minecraft/world/level/biome/OverworldBiomeBuilder/addBottomBiome (Ljava/util/function/Consumer;Lnet/minecraft/world/level/biome/Climate$Parameter;Lnet/minecraft/world/level/biome/Climate$Parameter;Lnet/minecraft/world/level/biome/Climate$Parameter;Lnet/minecraft/world/level/biome/Climate$Parameter;Lnet/minecraft/world/level/biome/Climate$Parameter;FLnet/minecraft/resources/ResourceKey;)V +MD: net/minecraft/world/level/biome/OverworldBiomeBuilder/m_246093_ (Lnet/minecraft/world/level/levelgen/DensityFunction;Lnet/minecraft/world/level/levelgen/DensityFunction;Lnet/minecraft/world/level/levelgen/DensityFunction$FunctionContext;)Z net/minecraft/world/level/biome/OverworldBiomeBuilder/isDeepDarkRegion (Lnet/minecraft/world/level/levelgen/DensityFunction;Lnet/minecraft/world/level/levelgen/DensityFunction;Lnet/minecraft/world/level/levelgen/DensityFunction$FunctionContext;)Z +MD: net/minecraft/world/level/biome/OverworldBiomeBuilder/m_255158_ (Ljava/util/function/Consumer;)V net/minecraft/world/level/biome/OverworldBiomeBuilder/addDebugBiomes (Ljava/util/function/Consumer;)V +MD: net/minecraft/world/level/biome/TheEndBiomeSource/ ()V net/minecraft/world/level/biome/TheEndBiomeSource/ ()V +MD: net/minecraft/world/level/biome/TheEndBiomeSource/ (Lnet/minecraft/core/Holder;Lnet/minecraft/core/Holder;Lnet/minecraft/core/Holder;Lnet/minecraft/core/Holder;Lnet/minecraft/core/Holder;)V net/minecraft/world/level/biome/TheEndBiomeSource/ (Lnet/minecraft/core/Holder;Lnet/minecraft/core/Holder;Lnet/minecraft/core/Holder;Lnet/minecraft/core/Holder;Lnet/minecraft/core/Holder;)V +MD: net/minecraft/world/level/biome/TheEndBiomeSource/m_203407_ (IIILnet/minecraft/world/level/biome/Climate$Sampler;)Lnet/minecraft/core/Holder; net/minecraft/world/level/biome/TheEndBiomeSource/getNoiseBiome (IIILnet/minecraft/world/level/biome/Climate$Sampler;)Lnet/minecraft/core/Holder; +MD: net/minecraft/world/level/biome/TheEndBiomeSource/m_254810_ (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/world/level/biome/TheEndBiomeSource/lambda$static$0 (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/world/level/biome/TheEndBiomeSource/m_254978_ (Lnet/minecraft/core/HolderGetter;)Lnet/minecraft/world/level/biome/TheEndBiomeSource; net/minecraft/world/level/biome/TheEndBiomeSource/create (Lnet/minecraft/core/HolderGetter;)Lnet/minecraft/world/level/biome/TheEndBiomeSource; +MD: net/minecraft/world/level/biome/TheEndBiomeSource/m_274359_ ()Ljava/util/stream/Stream; net/minecraft/world/level/biome/TheEndBiomeSource/collectPossibleBiomes ()Ljava/util/stream/Stream; +MD: net/minecraft/world/level/biome/TheEndBiomeSource/m_5820_ ()Lcom/mojang/serialization/Codec; net/minecraft/world/level/biome/TheEndBiomeSource/codec ()Lcom/mojang/serialization/Codec; +MD: net/minecraft/world/level/block/AbstractBannerBlock/ (Lnet/minecraft/world/item/DyeColor;Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V net/minecraft/world/level/block/AbstractBannerBlock/ (Lnet/minecraft/world/item/DyeColor;Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V +MD: net/minecraft/world/level/block/AbstractBannerBlock/m_142194_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/block/entity/BlockEntity; net/minecraft/world/level/block/AbstractBannerBlock/newBlockEntity (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/block/entity/BlockEntity; +MD: net/minecraft/world/level/block/AbstractBannerBlock/m_187399_ (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/level/block/entity/BannerBlockEntity;)V net/minecraft/world/level/block/AbstractBannerBlock/lambda$setPlacedBy$1 (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/level/block/entity/BannerBlockEntity;)V +MD: net/minecraft/world/level/block/AbstractBannerBlock/m_187402_ (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/level/block/entity/BannerBlockEntity;)V net/minecraft/world/level/block/AbstractBannerBlock/lambda$setPlacedBy$0 (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/level/block/entity/BannerBlockEntity;)V +MD: net/minecraft/world/level/block/AbstractBannerBlock/m_48673_ (Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/world/level/block/AbstractBannerBlock/isPossibleToRespawnInThis (Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/world/level/block/AbstractBannerBlock/m_48674_ ()Lnet/minecraft/world/item/DyeColor; net/minecraft/world/level/block/AbstractBannerBlock/getColor ()Lnet/minecraft/world/item/DyeColor; +MD: net/minecraft/world/level/block/AbstractBannerBlock/m_6402_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/item/ItemStack;)V net/minecraft/world/level/block/AbstractBannerBlock/setPlacedBy (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/item/ItemStack;)V +MD: net/minecraft/world/level/block/AbstractBannerBlock/m_7397_ (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/item/ItemStack; net/minecraft/world/level/block/AbstractBannerBlock/getCloneItemStack (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/level/block/AbstractCandleBlock/ ()V net/minecraft/world/level/block/AbstractCandleBlock/ ()V +MD: net/minecraft/world/level/block/AbstractCandleBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V net/minecraft/world/level/block/AbstractCandleBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V +MD: net/minecraft/world/level/block/AbstractCandleBlock/m_142199_ (Lnet/minecraft/world/level/block/state/BlockState;)Ljava/lang/Iterable; net/minecraft/world/level/block/AbstractCandleBlock/getParticleOffsets (Lnet/minecraft/world/level/block/state/BlockState;)Ljava/lang/Iterable; +MD: net/minecraft/world/level/block/AbstractCandleBlock/m_142595_ (Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/world/level/block/AbstractCandleBlock/canBeLit (Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/world/level/block/AbstractCandleBlock/m_151899_ (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;)V net/minecraft/world/level/block/AbstractCandleBlock/extinguish (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/world/level/block/AbstractCandleBlock/m_151918_ (Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/BlockPos;Z)V net/minecraft/world/level/block/AbstractCandleBlock/setLit (Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/BlockPos;Z)V +MD: net/minecraft/world/level/block/AbstractCandleBlock/m_151923_ (Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/Vec3;)V net/minecraft/world/level/block/AbstractCandleBlock/lambda$extinguish$1 (Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/Vec3;)V +MD: net/minecraft/world/level/block/AbstractCandleBlock/m_151933_ (Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/world/level/block/AbstractCandleBlock/isLit (Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/world/level/block/AbstractCandleBlock/m_214162_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)V net/minecraft/world/level/block/AbstractCandleBlock/animateTick (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)V +MD: net/minecraft/world/level/block/AbstractCandleBlock/m_220687_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/phys/Vec3;Lnet/minecraft/util/RandomSource;)V net/minecraft/world/level/block/AbstractCandleBlock/addParticlesAndSound (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/phys/Vec3;Lnet/minecraft/util/RandomSource;)V +MD: net/minecraft/world/level/block/AbstractCandleBlock/m_220691_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/phys/Vec3;)V net/minecraft/world/level/block/AbstractCandleBlock/lambda$animateTick$0 (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/phys/Vec3;)V +MD: net/minecraft/world/level/block/AbstractCandleBlock/m_5581_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/phys/BlockHitResult;Lnet/minecraft/world/entity/projectile/Projectile;)V net/minecraft/world/level/block/AbstractCandleBlock/onProjectileHit (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/phys/BlockHitResult;Lnet/minecraft/world/entity/projectile/Projectile;)V +MD: net/minecraft/world/level/block/AbstractCauldronBlock/ ()V net/minecraft/world/level/block/AbstractCauldronBlock/ ()V +MD: net/minecraft/world/level/block/AbstractCauldronBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;Ljava/util/Map;)V net/minecraft/world/level/block/AbstractCauldronBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;Ljava/util/Map;)V +MD: net/minecraft/world/level/block/AbstractCauldronBlock/m_142087_ (Lnet/minecraft/world/level/material/Fluid;)Z net/minecraft/world/level/block/AbstractCauldronBlock/canReceiveStalactiteDrip (Lnet/minecraft/world/level/material/Fluid;)Z +MD: net/minecraft/world/level/block/AbstractCauldronBlock/m_142310_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/material/Fluid;)V net/minecraft/world/level/block/AbstractCauldronBlock/receiveStalactiteDrip (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/material/Fluid;)V +MD: net/minecraft/world/level/block/AbstractCauldronBlock/m_142446_ (Lnet/minecraft/world/level/block/state/BlockState;)D net/minecraft/world/level/block/AbstractCauldronBlock/getContentHeight (Lnet/minecraft/world/level/block/state/BlockState;)D +MD: net/minecraft/world/level/block/AbstractCauldronBlock/m_142596_ (Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/world/level/block/AbstractCauldronBlock/isFull (Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/world/level/block/AbstractCauldronBlock/m_151979_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/Entity;)Z net/minecraft/world/level/block/AbstractCauldronBlock/isEntityInsideContent (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/Entity;)Z +MD: net/minecraft/world/level/block/AbstractCauldronBlock/m_213897_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)V net/minecraft/world/level/block/AbstractCauldronBlock/tick (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)V +MD: net/minecraft/world/level/block/AbstractCauldronBlock/m_5940_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; net/minecraft/world/level/block/AbstractCauldronBlock/getShape (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; +MD: net/minecraft/world/level/block/AbstractCauldronBlock/m_6079_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/phys/shapes/VoxelShape; net/minecraft/world/level/block/AbstractCauldronBlock/getInteractionShape (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/phys/shapes/VoxelShape; +MD: net/minecraft/world/level/block/AbstractCauldronBlock/m_6227_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;Lnet/minecraft/world/phys/BlockHitResult;)Lnet/minecraft/world/InteractionResult; net/minecraft/world/level/block/AbstractCauldronBlock/use (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;Lnet/minecraft/world/phys/BlockHitResult;)Lnet/minecraft/world/InteractionResult; +MD: net/minecraft/world/level/block/AbstractCauldronBlock/m_7278_ (Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/world/level/block/AbstractCauldronBlock/hasAnalogOutputSignal (Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/world/level/block/AbstractCauldronBlock/m_7357_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/pathfinder/PathComputationType;)Z net/minecraft/world/level/block/AbstractCauldronBlock/isPathfindable (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/pathfinder/PathComputationType;)Z +MD: net/minecraft/world/level/block/AbstractChestBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;Ljava/util/function/Supplier;)V net/minecraft/world/level/block/AbstractChestBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;Ljava/util/function/Supplier;)V +MD: net/minecraft/world/level/block/AbstractChestBlock/m_5641_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Z)Lnet/minecraft/world/level/block/DoubleBlockCombiner$NeighborCombineResult; net/minecraft/world/level/block/AbstractChestBlock/combine (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Z)Lnet/minecraft/world/level/block/DoubleBlockCombiner$NeighborCombineResult; +MD: net/minecraft/world/level/block/AbstractFurnaceBlock/ ()V net/minecraft/world/level/block/AbstractFurnaceBlock/ ()V +MD: net/minecraft/world/level/block/AbstractFurnaceBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V net/minecraft/world/level/block/AbstractFurnaceBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V +MD: net/minecraft/world/level/block/AbstractFurnaceBlock/m_151987_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/level/block/entity/BlockEntityType;Lnet/minecraft/world/level/block/entity/BlockEntityType;)Lnet/minecraft/world/level/block/entity/BlockEntityTicker; net/minecraft/world/level/block/AbstractFurnaceBlock/createFurnaceTicker (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/level/block/entity/BlockEntityType;Lnet/minecraft/world/level/block/entity/BlockEntityType;)Lnet/minecraft/world/level/block/entity/BlockEntityTicker; +MD: net/minecraft/world/level/block/AbstractFurnaceBlock/m_5573_ (Lnet/minecraft/world/item/context/BlockPlaceContext;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/AbstractFurnaceBlock/getStateForPlacement (Lnet/minecraft/world/item/context/BlockPlaceContext;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/AbstractFurnaceBlock/m_6227_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;Lnet/minecraft/world/phys/BlockHitResult;)Lnet/minecraft/world/InteractionResult; net/minecraft/world/level/block/AbstractFurnaceBlock/use (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;Lnet/minecraft/world/phys/BlockHitResult;)Lnet/minecraft/world/InteractionResult; +MD: net/minecraft/world/level/block/AbstractFurnaceBlock/m_6402_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/item/ItemStack;)V net/minecraft/world/level/block/AbstractFurnaceBlock/setPlacedBy (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/item/ItemStack;)V +MD: net/minecraft/world/level/block/AbstractFurnaceBlock/m_6782_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;)I net/minecraft/world/level/block/AbstractFurnaceBlock/getAnalogOutputSignal (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;)I +MD: net/minecraft/world/level/block/AbstractFurnaceBlock/m_6810_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Z)V net/minecraft/world/level/block/AbstractFurnaceBlock/onRemove (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Z)V +MD: net/minecraft/world/level/block/AbstractFurnaceBlock/m_6843_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/Rotation;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/AbstractFurnaceBlock/rotate (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/Rotation;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/AbstractFurnaceBlock/m_6943_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/Mirror;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/AbstractFurnaceBlock/mirror (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/Mirror;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/AbstractFurnaceBlock/m_7137_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/player/Player;)V net/minecraft/world/level/block/AbstractFurnaceBlock/openContainer (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/player/Player;)V +MD: net/minecraft/world/level/block/AbstractFurnaceBlock/m_7278_ (Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/world/level/block/AbstractFurnaceBlock/hasAnalogOutputSignal (Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/world/level/block/AbstractFurnaceBlock/m_7514_ (Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/block/RenderShape; net/minecraft/world/level/block/AbstractFurnaceBlock/getRenderShape (Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/block/RenderShape; +MD: net/minecraft/world/level/block/AbstractFurnaceBlock/m_7926_ (Lnet/minecraft/world/level/block/state/StateDefinition$Builder;)V net/minecraft/world/level/block/AbstractFurnaceBlock/createBlockStateDefinition (Lnet/minecraft/world/level/block/state/StateDefinition$Builder;)V +MD: net/minecraft/world/level/block/AbstractGlassBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V net/minecraft/world/level/block/AbstractGlassBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V +MD: net/minecraft/world/level/block/AbstractGlassBlock/m_5909_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; net/minecraft/world/level/block/AbstractGlassBlock/getVisualShape (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; +MD: net/minecraft/world/level/block/AbstractGlassBlock/m_7420_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/level/block/AbstractGlassBlock/propagatesSkylightDown (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/level/block/AbstractGlassBlock/m_7749_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)F net/minecraft/world/level/block/AbstractGlassBlock/getShadeBrightness (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)F +MD: net/minecraft/world/level/block/AbstractSkullBlock/ (Lnet/minecraft/world/level/block/SkullBlock$Type;Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V net/minecraft/world/level/block/AbstractSkullBlock/ (Lnet/minecraft/world/level/block/SkullBlock$Type;Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V +MD: net/minecraft/world/level/block/AbstractSkullBlock/m_142194_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/block/entity/BlockEntity; net/minecraft/world/level/block/AbstractSkullBlock/newBlockEntity (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/block/entity/BlockEntity; +MD: net/minecraft/world/level/block/AbstractSkullBlock/m_142354_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/entity/BlockEntityType;)Lnet/minecraft/world/level/block/entity/BlockEntityTicker; net/minecraft/world/level/block/AbstractSkullBlock/getTicker (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/entity/BlockEntityType;)Lnet/minecraft/world/level/block/entity/BlockEntityTicker; +MD: net/minecraft/world/level/block/AbstractSkullBlock/m_40402_ ()Lnet/minecraft/world/entity/EquipmentSlot; net/minecraft/world/level/block/AbstractSkullBlock/getEquipmentSlot ()Lnet/minecraft/world/entity/EquipmentSlot; +MD: net/minecraft/world/level/block/AbstractSkullBlock/m_48754_ ()Lnet/minecraft/world/level/block/SkullBlock$Type; net/minecraft/world/level/block/AbstractSkullBlock/getType ()Lnet/minecraft/world/level/block/SkullBlock$Type; +MD: net/minecraft/world/level/block/AbstractSkullBlock/m_7357_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/pathfinder/PathComputationType;)Z net/minecraft/world/level/block/AbstractSkullBlock/isPathfindable (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/pathfinder/PathComputationType;)Z +MD: net/minecraft/world/level/block/AirBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V net/minecraft/world/level/block/AirBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V +MD: net/minecraft/world/level/block/AirBlock/m_5940_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; net/minecraft/world/level/block/AirBlock/getShape (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; +MD: net/minecraft/world/level/block/AirBlock/m_7514_ (Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/block/RenderShape; net/minecraft/world/level/block/AirBlock/getRenderShape (Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/block/RenderShape; +MD: net/minecraft/world/level/block/AmethystBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V net/minecraft/world/level/block/AmethystBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V +MD: net/minecraft/world/level/block/AmethystBlock/m_5581_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/phys/BlockHitResult;Lnet/minecraft/world/entity/projectile/Projectile;)V net/minecraft/world/level/block/AmethystBlock/onProjectileHit (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/phys/BlockHitResult;Lnet/minecraft/world/entity/projectile/Projectile;)V +MD: net/minecraft/world/level/block/AmethystClusterBlock/ ()V net/minecraft/world/level/block/AmethystClusterBlock/ ()V +MD: net/minecraft/world/level/block/AmethystClusterBlock/ (IILnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V net/minecraft/world/level/block/AmethystClusterBlock/ (IILnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V +MD: net/minecraft/world/level/block/AmethystClusterBlock/m_5573_ (Lnet/minecraft/world/item/context/BlockPlaceContext;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/AmethystClusterBlock/getStateForPlacement (Lnet/minecraft/world/item/context/BlockPlaceContext;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/AmethystClusterBlock/m_5888_ (Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/material/FluidState; net/minecraft/world/level/block/AmethystClusterBlock/getFluidState (Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/material/FluidState; +MD: net/minecraft/world/level/block/AmethystClusterBlock/m_5940_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; net/minecraft/world/level/block/AmethystClusterBlock/getShape (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; +MD: net/minecraft/world/level/block/AmethystClusterBlock/m_6843_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/Rotation;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/AmethystClusterBlock/rotate (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/Rotation;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/AmethystClusterBlock/m_6943_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/Mirror;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/AmethystClusterBlock/mirror (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/Mirror;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/AmethystClusterBlock/m_7417_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/AmethystClusterBlock/updateShape (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/AmethystClusterBlock/m_7898_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/level/block/AmethystClusterBlock/canSurvive (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/level/block/AmethystClusterBlock/m_7926_ (Lnet/minecraft/world/level/block/state/StateDefinition$Builder;)V net/minecraft/world/level/block/AmethystClusterBlock/createBlockStateDefinition (Lnet/minecraft/world/level/block/state/StateDefinition$Builder;)V +MD: net/minecraft/world/level/block/AmethystClusterBlock$1/ ()V net/minecraft/world/level/block/AmethystClusterBlock$1/ ()V +MD: net/minecraft/world/level/block/AnvilBlock/ ()V net/minecraft/world/level/block/AnvilBlock/ ()V +MD: net/minecraft/world/level/block/AnvilBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V net/minecraft/world/level/block/AnvilBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V +MD: net/minecraft/world/level/block/AnvilBlock/m_142525_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/item/FallingBlockEntity;)V net/minecraft/world/level/block/AnvilBlock/onBrokenAfterFall (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/item/FallingBlockEntity;)V +MD: net/minecraft/world/level/block/AnvilBlock/m_252932_ (Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/world/damagesource/DamageSource; net/minecraft/world/level/block/AnvilBlock/getFallDamageSource (Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/world/damagesource/DamageSource; +MD: net/minecraft/world/level/block/AnvilBlock/m_48782_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;ILnet/minecraft/world/entity/player/Inventory;Lnet/minecraft/world/entity/player/Player;)Lnet/minecraft/world/inventory/AbstractContainerMenu; net/minecraft/world/level/block/AnvilBlock/lambda$getMenuProvider$0 (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;ILnet/minecraft/world/entity/player/Inventory;Lnet/minecraft/world/entity/player/Player;)Lnet/minecraft/world/inventory/AbstractContainerMenu; +MD: net/minecraft/world/level/block/AnvilBlock/m_48792_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/entity/item/FallingBlockEntity;)V net/minecraft/world/level/block/AnvilBlock/onLand (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/entity/item/FallingBlockEntity;)V +MD: net/minecraft/world/level/block/AnvilBlock/m_48824_ (Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/AnvilBlock/damage (Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/AnvilBlock/m_5573_ (Lnet/minecraft/world/item/context/BlockPlaceContext;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/AnvilBlock/getStateForPlacement (Lnet/minecraft/world/item/context/BlockPlaceContext;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/AnvilBlock/m_5940_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; net/minecraft/world/level/block/AnvilBlock/getShape (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; +MD: net/minecraft/world/level/block/AnvilBlock/m_6227_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;Lnet/minecraft/world/phys/BlockHitResult;)Lnet/minecraft/world/InteractionResult; net/minecraft/world/level/block/AnvilBlock/use (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;Lnet/minecraft/world/phys/BlockHitResult;)Lnet/minecraft/world/InteractionResult; +MD: net/minecraft/world/level/block/AnvilBlock/m_6248_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)I net/minecraft/world/level/block/AnvilBlock/getDustColor (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)I +MD: net/minecraft/world/level/block/AnvilBlock/m_6788_ (Lnet/minecraft/world/entity/item/FallingBlockEntity;)V net/minecraft/world/level/block/AnvilBlock/falling (Lnet/minecraft/world/entity/item/FallingBlockEntity;)V +MD: net/minecraft/world/level/block/AnvilBlock/m_6843_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/Rotation;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/AnvilBlock/rotate (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/Rotation;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/AnvilBlock/m_7246_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/MenuProvider; net/minecraft/world/level/block/AnvilBlock/getMenuProvider (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/MenuProvider; +MD: net/minecraft/world/level/block/AnvilBlock/m_7357_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/pathfinder/PathComputationType;)Z net/minecraft/world/level/block/AnvilBlock/isPathfindable (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/pathfinder/PathComputationType;)Z +MD: net/minecraft/world/level/block/AnvilBlock/m_7926_ (Lnet/minecraft/world/level/block/state/StateDefinition$Builder;)V net/minecraft/world/level/block/AnvilBlock/createBlockStateDefinition (Lnet/minecraft/world/level/block/state/StateDefinition$Builder;)V +MD: net/minecraft/world/level/block/AttachedStemBlock/ ()V net/minecraft/world/level/block/AttachedStemBlock/ ()V +MD: net/minecraft/world/level/block/AttachedStemBlock/ (Lnet/minecraft/world/level/block/StemGrownBlock;Ljava/util/function/Supplier;Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V net/minecraft/world/level/block/AttachedStemBlock/ (Lnet/minecraft/world/level/block/StemGrownBlock;Ljava/util/function/Supplier;Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V +MD: net/minecraft/world/level/block/AttachedStemBlock/m_5940_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; net/minecraft/world/level/block/AttachedStemBlock/getShape (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; +MD: net/minecraft/world/level/block/AttachedStemBlock/m_6266_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/level/block/AttachedStemBlock/mayPlaceOn (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/level/block/AttachedStemBlock/m_6843_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/Rotation;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/AttachedStemBlock/rotate (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/Rotation;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/AttachedStemBlock/m_6943_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/Mirror;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/AttachedStemBlock/mirror (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/Mirror;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/AttachedStemBlock/m_7397_ (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/item/ItemStack; net/minecraft/world/level/block/AttachedStemBlock/getCloneItemStack (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/level/block/AttachedStemBlock/m_7417_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/AttachedStemBlock/updateShape (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/AttachedStemBlock/m_7926_ (Lnet/minecraft/world/level/block/state/StateDefinition$Builder;)V net/minecraft/world/level/block/AttachedStemBlock/createBlockStateDefinition (Lnet/minecraft/world/level/block/state/StateDefinition$Builder;)V +MD: net/minecraft/world/level/block/AzaleaBlock/ ()V net/minecraft/world/level/block/AzaleaBlock/ ()V +MD: net/minecraft/world/level/block/AzaleaBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V net/minecraft/world/level/block/AzaleaBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V +MD: net/minecraft/world/level/block/AzaleaBlock/m_214148_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V net/minecraft/world/level/block/AzaleaBlock/performBonemeal (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V +MD: net/minecraft/world/level/block/AzaleaBlock/m_214167_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/world/level/block/AzaleaBlock/isBonemealSuccess (Lnet/minecraft/world/level/Level;Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/world/level/block/AzaleaBlock/m_5940_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; net/minecraft/world/level/block/AzaleaBlock/getShape (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; +MD: net/minecraft/world/level/block/AzaleaBlock/m_6266_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/level/block/AzaleaBlock/mayPlaceOn (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/level/block/AzaleaBlock/m_7370_ (Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Z)Z net/minecraft/world/level/block/AzaleaBlock/isValidBonemealTarget (Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Z)Z +MD: net/minecraft/world/level/block/BambooSaplingBlock/ ()V net/minecraft/world/level/block/BambooSaplingBlock/ ()V +MD: net/minecraft/world/level/block/BambooSaplingBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V net/minecraft/world/level/block/BambooSaplingBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V +MD: net/minecraft/world/level/block/BambooSaplingBlock/m_213898_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)V net/minecraft/world/level/block/BambooSaplingBlock/randomTick (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)V +MD: net/minecraft/world/level/block/BambooSaplingBlock/m_214148_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V net/minecraft/world/level/block/BambooSaplingBlock/performBonemeal (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V +MD: net/minecraft/world/level/block/BambooSaplingBlock/m_214167_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/world/level/block/BambooSaplingBlock/isBonemealSuccess (Lnet/minecraft/world/level/Level;Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/world/level/block/BambooSaplingBlock/m_48972_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;)V net/minecraft/world/level/block/BambooSaplingBlock/growBamboo (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/world/level/block/BambooSaplingBlock/m_5880_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)F net/minecraft/world/level/block/BambooSaplingBlock/getDestroyProgress (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)F +MD: net/minecraft/world/level/block/BambooSaplingBlock/m_5940_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; net/minecraft/world/level/block/BambooSaplingBlock/getShape (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; +MD: net/minecraft/world/level/block/BambooSaplingBlock/m_7370_ (Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Z)Z net/minecraft/world/level/block/BambooSaplingBlock/isValidBonemealTarget (Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Z)Z +MD: net/minecraft/world/level/block/BambooSaplingBlock/m_7397_ (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/item/ItemStack; net/minecraft/world/level/block/BambooSaplingBlock/getCloneItemStack (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/level/block/BambooSaplingBlock/m_7417_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/BambooSaplingBlock/updateShape (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/BambooSaplingBlock/m_7898_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/level/block/BambooSaplingBlock/canSurvive (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/level/block/BambooStalkBlock/ ()V net/minecraft/world/level/block/BambooStalkBlock/ ()V +MD: net/minecraft/world/level/block/BambooStalkBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V net/minecraft/world/level/block/BambooStalkBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V +MD: net/minecraft/world/level/block/BambooStalkBlock/m_180643_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/level/block/BambooStalkBlock/isCollisionShapeFullBlock (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/level/block/BambooStalkBlock/m_213897_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)V net/minecraft/world/level/block/BambooStalkBlock/tick (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)V +MD: net/minecraft/world/level/block/BambooStalkBlock/m_213898_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)V net/minecraft/world/level/block/BambooStalkBlock/randomTick (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)V +MD: net/minecraft/world/level/block/BambooStalkBlock/m_214148_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V net/minecraft/world/level/block/BambooStalkBlock/performBonemeal (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V +MD: net/minecraft/world/level/block/BambooStalkBlock/m_214167_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/world/level/block/BambooStalkBlock/isBonemealSuccess (Lnet/minecraft/world/level/Level;Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/world/level/block/BambooStalkBlock/m_261076_ (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)I net/minecraft/world/level/block/BambooStalkBlock/getHeightAboveUpToMax (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)I +MD: net/minecraft/world/level/block/BambooStalkBlock/m_261132_ (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)I net/minecraft/world/level/block/BambooStalkBlock/getHeightBelowUpToMax (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)I +MD: net/minecraft/world/level/block/BambooStalkBlock/m_261305_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;I)V net/minecraft/world/level/block/BambooStalkBlock/growBamboo (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;I)V +MD: net/minecraft/world/level/block/BambooStalkBlock/m_5573_ (Lnet/minecraft/world/item/context/BlockPlaceContext;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/BambooStalkBlock/getStateForPlacement (Lnet/minecraft/world/item/context/BlockPlaceContext;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/BambooStalkBlock/m_5880_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)F net/minecraft/world/level/block/BambooStalkBlock/getDestroyProgress (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)F +MD: net/minecraft/world/level/block/BambooStalkBlock/m_5939_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; net/minecraft/world/level/block/BambooStalkBlock/getCollisionShape (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; +MD: net/minecraft/world/level/block/BambooStalkBlock/m_5940_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; net/minecraft/world/level/block/BambooStalkBlock/getShape (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; +MD: net/minecraft/world/level/block/BambooStalkBlock/m_6724_ (Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/world/level/block/BambooStalkBlock/isRandomlyTicking (Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/world/level/block/BambooStalkBlock/m_7357_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/pathfinder/PathComputationType;)Z net/minecraft/world/level/block/BambooStalkBlock/isPathfindable (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/pathfinder/PathComputationType;)Z +MD: net/minecraft/world/level/block/BambooStalkBlock/m_7370_ (Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Z)Z net/minecraft/world/level/block/BambooStalkBlock/isValidBonemealTarget (Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Z)Z +MD: net/minecraft/world/level/block/BambooStalkBlock/m_7417_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/BambooStalkBlock/updateShape (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/BambooStalkBlock/m_7420_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/level/block/BambooStalkBlock/propagatesSkylightDown (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/level/block/BambooStalkBlock/m_7898_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/level/block/BambooStalkBlock/canSurvive (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/level/block/BambooStalkBlock/m_7926_ (Lnet/minecraft/world/level/block/state/StateDefinition$Builder;)V net/minecraft/world/level/block/BambooStalkBlock/createBlockStateDefinition (Lnet/minecraft/world/level/block/state/StateDefinition$Builder;)V +MD: net/minecraft/world/level/block/BannerBlock/ ()V net/minecraft/world/level/block/BannerBlock/ ()V +MD: net/minecraft/world/level/block/BannerBlock/ (Lnet/minecraft/world/item/DyeColor;Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V net/minecraft/world/level/block/BannerBlock/ (Lnet/minecraft/world/item/DyeColor;Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V +MD: net/minecraft/world/level/block/BannerBlock/m_49014_ (Lnet/minecraft/world/item/DyeColor;)Lnet/minecraft/world/level/block/Block; net/minecraft/world/level/block/BannerBlock/byColor (Lnet/minecraft/world/item/DyeColor;)Lnet/minecraft/world/level/block/Block; +MD: net/minecraft/world/level/block/BannerBlock/m_5573_ (Lnet/minecraft/world/item/context/BlockPlaceContext;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/BannerBlock/getStateForPlacement (Lnet/minecraft/world/item/context/BlockPlaceContext;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/BannerBlock/m_5940_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; net/minecraft/world/level/block/BannerBlock/getShape (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; +MD: net/minecraft/world/level/block/BannerBlock/m_6843_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/Rotation;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/BannerBlock/rotate (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/Rotation;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/BannerBlock/m_6943_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/Mirror;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/BannerBlock/mirror (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/Mirror;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/BannerBlock/m_7417_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/BannerBlock/updateShape (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/BannerBlock/m_7898_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/level/block/BannerBlock/canSurvive (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/level/block/BannerBlock/m_7926_ (Lnet/minecraft/world/level/block/state/StateDefinition$Builder;)V net/minecraft/world/level/block/BannerBlock/createBlockStateDefinition (Lnet/minecraft/world/level/block/state/StateDefinition$Builder;)V +MD: net/minecraft/world/level/block/BarrelBlock/ ()V net/minecraft/world/level/block/BarrelBlock/ ()V +MD: net/minecraft/world/level/block/BarrelBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V net/minecraft/world/level/block/BarrelBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V +MD: net/minecraft/world/level/block/BarrelBlock/m_142194_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/block/entity/BlockEntity; net/minecraft/world/level/block/BarrelBlock/newBlockEntity (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/block/entity/BlockEntity; +MD: net/minecraft/world/level/block/BarrelBlock/m_213897_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)V net/minecraft/world/level/block/BarrelBlock/tick (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)V +MD: net/minecraft/world/level/block/BarrelBlock/m_5573_ (Lnet/minecraft/world/item/context/BlockPlaceContext;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/BarrelBlock/getStateForPlacement (Lnet/minecraft/world/item/context/BlockPlaceContext;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/BarrelBlock/m_6227_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;Lnet/minecraft/world/phys/BlockHitResult;)Lnet/minecraft/world/InteractionResult; net/minecraft/world/level/block/BarrelBlock/use (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;Lnet/minecraft/world/phys/BlockHitResult;)Lnet/minecraft/world/InteractionResult; +MD: net/minecraft/world/level/block/BarrelBlock/m_6402_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/item/ItemStack;)V net/minecraft/world/level/block/BarrelBlock/setPlacedBy (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/item/ItemStack;)V +MD: net/minecraft/world/level/block/BarrelBlock/m_6782_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;)I net/minecraft/world/level/block/BarrelBlock/getAnalogOutputSignal (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;)I +MD: net/minecraft/world/level/block/BarrelBlock/m_6810_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Z)V net/minecraft/world/level/block/BarrelBlock/onRemove (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Z)V +MD: net/minecraft/world/level/block/BarrelBlock/m_6843_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/Rotation;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/BarrelBlock/rotate (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/Rotation;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/BarrelBlock/m_6943_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/Mirror;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/BarrelBlock/mirror (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/Mirror;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/BarrelBlock/m_7278_ (Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/world/level/block/BarrelBlock/hasAnalogOutputSignal (Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/world/level/block/BarrelBlock/m_7514_ (Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/block/RenderShape; net/minecraft/world/level/block/BarrelBlock/getRenderShape (Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/block/RenderShape; +MD: net/minecraft/world/level/block/BarrelBlock/m_7926_ (Lnet/minecraft/world/level/block/state/StateDefinition$Builder;)V net/minecraft/world/level/block/BarrelBlock/createBlockStateDefinition (Lnet/minecraft/world/level/block/state/StateDefinition$Builder;)V +MD: net/minecraft/world/level/block/BarrierBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V net/minecraft/world/level/block/BarrierBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V +MD: net/minecraft/world/level/block/BarrierBlock/m_7420_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/level/block/BarrierBlock/propagatesSkylightDown (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/level/block/BarrierBlock/m_7514_ (Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/block/RenderShape; net/minecraft/world/level/block/BarrierBlock/getRenderShape (Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/block/RenderShape; +MD: net/minecraft/world/level/block/BarrierBlock/m_7749_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)F net/minecraft/world/level/block/BarrierBlock/getShadeBrightness (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)F +MD: net/minecraft/world/level/block/BaseCoralFanBlock/ ()V net/minecraft/world/level/block/BaseCoralFanBlock/ ()V +MD: net/minecraft/world/level/block/BaseCoralFanBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V net/minecraft/world/level/block/BaseCoralFanBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V +MD: net/minecraft/world/level/block/BaseCoralFanBlock/m_5940_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; net/minecraft/world/level/block/BaseCoralFanBlock/getShape (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; +MD: net/minecraft/world/level/block/BaseCoralPlantBlock/ ()V net/minecraft/world/level/block/BaseCoralPlantBlock/ ()V +MD: net/minecraft/world/level/block/BaseCoralPlantBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V net/minecraft/world/level/block/BaseCoralPlantBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V +MD: net/minecraft/world/level/block/BaseCoralPlantBlock/m_5940_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; net/minecraft/world/level/block/BaseCoralPlantBlock/getShape (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; +MD: net/minecraft/world/level/block/BaseCoralPlantTypeBlock/ ()V net/minecraft/world/level/block/BaseCoralPlantTypeBlock/ ()V +MD: net/minecraft/world/level/block/BaseCoralPlantTypeBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V net/minecraft/world/level/block/BaseCoralPlantTypeBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V +MD: net/minecraft/world/level/block/BaseCoralPlantTypeBlock/m_49164_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;)V net/minecraft/world/level/block/BaseCoralPlantTypeBlock/tryScheduleDieTick (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/world/level/block/BaseCoralPlantTypeBlock/m_49186_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/level/block/BaseCoralPlantTypeBlock/scanForWater (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/level/block/BaseCoralPlantTypeBlock/m_5573_ (Lnet/minecraft/world/item/context/BlockPlaceContext;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/BaseCoralPlantTypeBlock/getStateForPlacement (Lnet/minecraft/world/item/context/BlockPlaceContext;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/BaseCoralPlantTypeBlock/m_5888_ (Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/material/FluidState; net/minecraft/world/level/block/BaseCoralPlantTypeBlock/getFluidState (Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/material/FluidState; +MD: net/minecraft/world/level/block/BaseCoralPlantTypeBlock/m_5940_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; net/minecraft/world/level/block/BaseCoralPlantTypeBlock/getShape (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; +MD: net/minecraft/world/level/block/BaseCoralPlantTypeBlock/m_7417_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/BaseCoralPlantTypeBlock/updateShape (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/BaseCoralPlantTypeBlock/m_7898_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/level/block/BaseCoralPlantTypeBlock/canSurvive (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/level/block/BaseCoralPlantTypeBlock/m_7926_ (Lnet/minecraft/world/level/block/state/StateDefinition$Builder;)V net/minecraft/world/level/block/BaseCoralPlantTypeBlock/createBlockStateDefinition (Lnet/minecraft/world/level/block/state/StateDefinition$Builder;)V +MD: net/minecraft/world/level/block/BaseCoralWallFanBlock/ ()V net/minecraft/world/level/block/BaseCoralWallFanBlock/ ()V +MD: net/minecraft/world/level/block/BaseCoralWallFanBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V net/minecraft/world/level/block/BaseCoralWallFanBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V +MD: net/minecraft/world/level/block/BaseCoralWallFanBlock/m_5573_ (Lnet/minecraft/world/item/context/BlockPlaceContext;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/BaseCoralWallFanBlock/getStateForPlacement (Lnet/minecraft/world/item/context/BlockPlaceContext;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/BaseCoralWallFanBlock/m_5940_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; net/minecraft/world/level/block/BaseCoralWallFanBlock/getShape (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; +MD: net/minecraft/world/level/block/BaseCoralWallFanBlock/m_6843_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/Rotation;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/BaseCoralWallFanBlock/rotate (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/Rotation;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/BaseCoralWallFanBlock/m_6943_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/Mirror;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/BaseCoralWallFanBlock/mirror (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/Mirror;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/BaseCoralWallFanBlock/m_7417_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/BaseCoralWallFanBlock/updateShape (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/BaseCoralWallFanBlock/m_7898_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/level/block/BaseCoralWallFanBlock/canSurvive (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/level/block/BaseCoralWallFanBlock/m_7926_ (Lnet/minecraft/world/level/block/state/StateDefinition$Builder;)V net/minecraft/world/level/block/BaseCoralWallFanBlock/createBlockStateDefinition (Lnet/minecraft/world/level/block/state/StateDefinition$Builder;)V +MD: net/minecraft/world/level/block/BaseEntityBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V net/minecraft/world/level/block/BaseEntityBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V +MD: net/minecraft/world/level/block/BaseEntityBlock/m_152132_ (Lnet/minecraft/world/level/block/entity/BlockEntityType;Lnet/minecraft/world/level/block/entity/BlockEntityType;Lnet/minecraft/world/level/block/entity/BlockEntityTicker;)Lnet/minecraft/world/level/block/entity/BlockEntityTicker; net/minecraft/world/level/block/BaseEntityBlock/createTickerHelper (Lnet/minecraft/world/level/block/entity/BlockEntityType;Lnet/minecraft/world/level/block/entity/BlockEntityType;Lnet/minecraft/world/level/block/entity/BlockEntityTicker;)Lnet/minecraft/world/level/block/entity/BlockEntityTicker; +MD: net/minecraft/world/level/block/BaseEntityBlock/m_7246_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/MenuProvider; net/minecraft/world/level/block/BaseEntityBlock/getMenuProvider (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/MenuProvider; +MD: net/minecraft/world/level/block/BaseEntityBlock/m_7514_ (Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/block/RenderShape; net/minecraft/world/level/block/BaseEntityBlock/getRenderShape (Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/block/RenderShape; +MD: net/minecraft/world/level/block/BaseEntityBlock/m_8133_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;II)Z net/minecraft/world/level/block/BaseEntityBlock/triggerEvent (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;II)Z +MD: net/minecraft/world/level/block/BaseFireBlock/ ()V net/minecraft/world/level/block/BaseFireBlock/ ()V +MD: net/minecraft/world/level/block/BaseFireBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;F)V net/minecraft/world/level/block/BaseFireBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;F)V +MD: net/minecraft/world/level/block/BaseFireBlock/m_142387_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V net/minecraft/world/level/block/BaseFireBlock/spawnDestroyParticles (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V +MD: net/minecraft/world/level/block/BaseFireBlock/m_214162_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)V net/minecraft/world/level/block/BaseFireBlock/animateTick (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)V +MD: net/minecraft/world/level/block/BaseFireBlock/m_49245_ (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/BaseFireBlock/getState (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/BaseFireBlock/m_49248_ (Lnet/minecraft/world/level/Level;)Z net/minecraft/world/level/block/BaseFireBlock/inPortalDimension (Lnet/minecraft/world/level/Level;)Z +MD: net/minecraft/world/level/block/BaseFireBlock/m_49255_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Direction;)Z net/minecraft/world/level/block/BaseFireBlock/canBePlacedAt (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Direction;)Z +MD: net/minecraft/world/level/block/BaseFireBlock/m_49269_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Direction;)Z net/minecraft/world/level/block/BaseFireBlock/isPortal (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Direction;)Z +MD: net/minecraft/world/level/block/BaseFireBlock/m_5573_ (Lnet/minecraft/world/item/context/BlockPlaceContext;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/BaseFireBlock/getStateForPlacement (Lnet/minecraft/world/item/context/BlockPlaceContext;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/BaseFireBlock/m_5707_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/entity/player/Player;)V net/minecraft/world/level/block/BaseFireBlock/playerWillDestroy (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/entity/player/Player;)V +MD: net/minecraft/world/level/block/BaseFireBlock/m_5940_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; net/minecraft/world/level/block/BaseFireBlock/getShape (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; +MD: net/minecraft/world/level/block/BaseFireBlock/m_6807_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Z)V net/minecraft/world/level/block/BaseFireBlock/onPlace (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Z)V +MD: net/minecraft/world/level/block/BaseFireBlock/m_7599_ (Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/world/level/block/BaseFireBlock/canBurn (Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/world/level/block/BaseFireBlock/m_7892_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/Entity;)V net/minecraft/world/level/block/BaseFireBlock/entityInside (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/Entity;)V +MD: net/minecraft/world/level/block/BasePressurePlateBlock/ ()V net/minecraft/world/level/block/BasePressurePlateBlock/ ()V +MD: net/minecraft/world/level/block/BasePressurePlateBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;Lnet/minecraft/world/level/block/state/properties/BlockSetType;)V net/minecraft/world/level/block/BasePressurePlateBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;Lnet/minecraft/world/level/block/state/properties/BlockSetType;)V +MD: net/minecraft/world/level/block/BasePressurePlateBlock/m_152143_ (Lnet/minecraft/world/entity/Entity;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;I)V net/minecraft/world/level/block/BasePressurePlateBlock/checkPressed (Lnet/minecraft/world/entity/Entity;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;I)V +MD: net/minecraft/world/level/block/BasePressurePlateBlock/m_213897_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)V net/minecraft/world/level/block/BasePressurePlateBlock/tick (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)V +MD: net/minecraft/world/level/block/BasePressurePlateBlock/m_289607_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/phys/AABB;Ljava/lang/Class;)I net/minecraft/world/level/block/BasePressurePlateBlock/getEntityCount (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/phys/AABB;Ljava/lang/Class;)I +MD: net/minecraft/world/level/block/BasePressurePlateBlock/m_289614_ (Lnet/minecraft/world/entity/Entity;)Z net/minecraft/world/level/block/BasePressurePlateBlock/lambda$getEntityCount$0 (Lnet/minecraft/world/entity/Entity;)Z +MD: net/minecraft/world/level/block/BasePressurePlateBlock/m_48673_ (Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/world/level/block/BasePressurePlateBlock/isPossibleToRespawnInThis (Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/world/level/block/BasePressurePlateBlock/m_49291_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;)V net/minecraft/world/level/block/BasePressurePlateBlock/updateNeighbours (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/world/level/block/BasePressurePlateBlock/m_5940_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; net/minecraft/world/level/block/BasePressurePlateBlock/getShape (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; +MD: net/minecraft/world/level/block/BasePressurePlateBlock/m_6016_ (Lnet/minecraft/world/level/block/state/BlockState;)I net/minecraft/world/level/block/BasePressurePlateBlock/getSignalForState (Lnet/minecraft/world/level/block/state/BlockState;)I +MD: net/minecraft/world/level/block/BasePressurePlateBlock/m_6376_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Direction;)I net/minecraft/world/level/block/BasePressurePlateBlock/getDirectSignal (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Direction;)I +MD: net/minecraft/world/level/block/BasePressurePlateBlock/m_6378_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Direction;)I net/minecraft/world/level/block/BasePressurePlateBlock/getSignal (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Direction;)I +MD: net/minecraft/world/level/block/BasePressurePlateBlock/m_6693_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;)I net/minecraft/world/level/block/BasePressurePlateBlock/getSignalStrength (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;)I +MD: net/minecraft/world/level/block/BasePressurePlateBlock/m_6810_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Z)V net/minecraft/world/level/block/BasePressurePlateBlock/onRemove (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Z)V +MD: net/minecraft/world/level/block/BasePressurePlateBlock/m_7342_ ()I net/minecraft/world/level/block/BasePressurePlateBlock/getPressedTime ()I +MD: net/minecraft/world/level/block/BasePressurePlateBlock/m_7417_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/BasePressurePlateBlock/updateShape (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/BasePressurePlateBlock/m_7422_ (Lnet/minecraft/world/level/block/state/BlockState;I)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/BasePressurePlateBlock/setSignalForState (Lnet/minecraft/world/level/block/state/BlockState;I)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/BasePressurePlateBlock/m_7892_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/Entity;)V net/minecraft/world/level/block/BasePressurePlateBlock/entityInside (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/Entity;)V +MD: net/minecraft/world/level/block/BasePressurePlateBlock/m_7898_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/level/block/BasePressurePlateBlock/canSurvive (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/level/block/BasePressurePlateBlock/m_7899_ (Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/world/level/block/BasePressurePlateBlock/isSignalSource (Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/world/level/block/BaseRailBlock/ ()V net/minecraft/world/level/block/BaseRailBlock/ ()V +MD: net/minecraft/world/level/block/BaseRailBlock/ (ZLnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V net/minecraft/world/level/block/BaseRailBlock/ (ZLnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V +MD: net/minecraft/world/level/block/BaseRailBlock/m_49364_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/level/block/BaseRailBlock/isRail (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/level/block/BaseRailBlock/m_49367_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Z)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/BaseRailBlock/updateDir (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Z)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/BaseRailBlock/m_49389_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Z)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/BaseRailBlock/updateState (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Z)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/BaseRailBlock/m_49398_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/Level;Lnet/minecraft/world/level/block/state/properties/RailShape;)Z net/minecraft/world/level/block/BaseRailBlock/shouldBeRemoved (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/Level;Lnet/minecraft/world/level/block/state/properties/RailShape;)Z +MD: net/minecraft/world/level/block/BaseRailBlock/m_49413_ ()Z net/minecraft/world/level/block/BaseRailBlock/isStraight ()Z +MD: net/minecraft/world/level/block/BaseRailBlock/m_49416_ (Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/world/level/block/BaseRailBlock/isRail (Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/world/level/block/BaseRailBlock/m_5573_ (Lnet/minecraft/world/item/context/BlockPlaceContext;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/BaseRailBlock/getStateForPlacement (Lnet/minecraft/world/item/context/BlockPlaceContext;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/BaseRailBlock/m_5888_ (Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/material/FluidState; net/minecraft/world/level/block/BaseRailBlock/getFluidState (Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/material/FluidState; +MD: net/minecraft/world/level/block/BaseRailBlock/m_5940_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; net/minecraft/world/level/block/BaseRailBlock/getShape (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; +MD: net/minecraft/world/level/block/BaseRailBlock/m_6360_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/Block;)V net/minecraft/world/level/block/BaseRailBlock/updateState (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/Block;)V +MD: net/minecraft/world/level/block/BaseRailBlock/m_6807_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Z)V net/minecraft/world/level/block/BaseRailBlock/onPlace (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Z)V +MD: net/minecraft/world/level/block/BaseRailBlock/m_6810_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Z)V net/minecraft/world/level/block/BaseRailBlock/onRemove (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Z)V +MD: net/minecraft/world/level/block/BaseRailBlock/m_6861_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/Block;Lnet/minecraft/core/BlockPos;Z)V net/minecraft/world/level/block/BaseRailBlock/neighborChanged (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/Block;Lnet/minecraft/core/BlockPos;Z)V +MD: net/minecraft/world/level/block/BaseRailBlock/m_7417_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/BaseRailBlock/updateShape (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/BaseRailBlock/m_7898_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/level/block/BaseRailBlock/canSurvive (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/level/block/BaseRailBlock/m_7978_ ()Lnet/minecraft/world/level/block/state/properties/Property; net/minecraft/world/level/block/BaseRailBlock/getShapeProperty ()Lnet/minecraft/world/level/block/state/properties/Property; +MD: net/minecraft/world/level/block/BaseRailBlock$1/ ()V net/minecraft/world/level/block/BaseRailBlock$1/ ()V +MD: net/minecraft/world/level/block/BeaconBeamBlock/m_7988_ ()Lnet/minecraft/world/item/DyeColor; net/minecraft/world/level/block/BeaconBeamBlock/getColor ()Lnet/minecraft/world/item/DyeColor; +MD: net/minecraft/world/level/block/BeaconBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V net/minecraft/world/level/block/BeaconBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V +MD: net/minecraft/world/level/block/BeaconBlock/m_142194_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/block/entity/BlockEntity; net/minecraft/world/level/block/BeaconBlock/newBlockEntity (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/block/entity/BlockEntity; +MD: net/minecraft/world/level/block/BeaconBlock/m_142354_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/entity/BlockEntityType;)Lnet/minecraft/world/level/block/entity/BlockEntityTicker; net/minecraft/world/level/block/BeaconBlock/getTicker (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/entity/BlockEntityType;)Lnet/minecraft/world/level/block/entity/BlockEntityTicker; +MD: net/minecraft/world/level/block/BeaconBlock/m_6227_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;Lnet/minecraft/world/phys/BlockHitResult;)Lnet/minecraft/world/InteractionResult; net/minecraft/world/level/block/BeaconBlock/use (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;Lnet/minecraft/world/phys/BlockHitResult;)Lnet/minecraft/world/InteractionResult; +MD: net/minecraft/world/level/block/BeaconBlock/m_6402_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/item/ItemStack;)V net/minecraft/world/level/block/BeaconBlock/setPlacedBy (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/item/ItemStack;)V +MD: net/minecraft/world/level/block/BeaconBlock/m_7514_ (Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/block/RenderShape; net/minecraft/world/level/block/BeaconBlock/getRenderShape (Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/block/RenderShape; +MD: net/minecraft/world/level/block/BeaconBlock/m_7988_ ()Lnet/minecraft/world/item/DyeColor; net/minecraft/world/level/block/BeaconBlock/getColor ()Lnet/minecraft/world/item/DyeColor; +MD: net/minecraft/world/level/block/BedBlock/ ()V net/minecraft/world/level/block/BedBlock/ ()V +MD: net/minecraft/world/level/block/BedBlock/ (Lnet/minecraft/world/item/DyeColor;Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V net/minecraft/world/level/block/BedBlock/ (Lnet/minecraft/world/item/DyeColor;Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V +MD: net/minecraft/world/level/block/BedBlock/m_142072_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/Entity;F)V net/minecraft/world/level/block/BedBlock/fallOn (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/Entity;F)V +MD: net/minecraft/world/level/block/BedBlock/m_142194_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/block/entity/BlockEntity; net/minecraft/world/level/block/BedBlock/newBlockEntity (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/block/entity/BlockEntity; +MD: net/minecraft/world/level/block/BedBlock/m_260958_ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/CollisionGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Direction;F)Ljava/util/Optional; net/minecraft/world/level/block/BedBlock/findStandUpPosition (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/CollisionGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Direction;F)Ljava/util/Optional; +MD: net/minecraft/world/level/block/BedBlock/m_49456_ (Lnet/minecraft/world/entity/Entity;)V net/minecraft/world/level/block/BedBlock/bounceUp (Lnet/minecraft/world/entity/Entity;)V +MD: net/minecraft/world/level/block/BedBlock/m_49463_ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/CollisionGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Direction;Lnet/minecraft/core/Direction;)Ljava/util/Optional; net/minecraft/world/level/block/BedBlock/findBunkBedStandUpPosition (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/CollisionGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Direction;Lnet/minecraft/core/Direction;)Ljava/util/Optional; +MD: net/minecraft/world/level/block/BedBlock/m_49469_ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/CollisionGetter;Lnet/minecraft/core/BlockPos;[[IZ)Ljava/util/Optional; net/minecraft/world/level/block/BedBlock/findStandUpPositionAtOffset (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/CollisionGetter;Lnet/minecraft/core/BlockPos;[[IZ)Ljava/util/Optional; +MD: net/minecraft/world/level/block/BedBlock/m_49475_ (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/entity/player/Player$BedSleepingProblem;)V net/minecraft/world/level/block/BedBlock/lambda$use$0 (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/entity/player/Player$BedSleepingProblem;)V +MD: net/minecraft/world/level/block/BedBlock/m_49485_ (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/core/Direction; net/minecraft/world/level/block/BedBlock/getBedOrientation (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/core/Direction; +MD: net/minecraft/world/level/block/BedBlock/m_49488_ (Lnet/minecraft/world/level/Level;)Z net/minecraft/world/level/block/BedBlock/canSetSpawn (Lnet/minecraft/world/level/Level;)Z +MD: net/minecraft/world/level/block/BedBlock/m_49490_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/level/block/BedBlock/kickVillagerOutOfBed (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/level/block/BedBlock/m_49533_ (Lnet/minecraft/world/level/block/state/properties/BedPart;Lnet/minecraft/core/Direction;)Lnet/minecraft/core/Direction; net/minecraft/world/level/block/BedBlock/getNeighbourDirection (Lnet/minecraft/world/level/block/state/properties/BedPart;Lnet/minecraft/core/Direction;)Lnet/minecraft/core/Direction; +MD: net/minecraft/world/level/block/BedBlock/m_49536_ (Lnet/minecraft/core/Direction;)[[I net/minecraft/world/level/block/BedBlock/bedAboveStandUpOffsets (Lnet/minecraft/core/Direction;)[[I +MD: net/minecraft/world/level/block/BedBlock/m_49538_ (Lnet/minecraft/core/Direction;Lnet/minecraft/core/Direction;)[[I net/minecraft/world/level/block/BedBlock/bedStandUpOffsets (Lnet/minecraft/core/Direction;Lnet/minecraft/core/Direction;)[[I +MD: net/minecraft/world/level/block/BedBlock/m_49541_ (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/level/block/BedBlock/isBunkBed (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/level/block/BedBlock/m_49551_ (Lnet/minecraft/core/Direction;Lnet/minecraft/core/Direction;)[[I net/minecraft/world/level/block/BedBlock/bedSurroundStandUpOffsets (Lnet/minecraft/core/Direction;Lnet/minecraft/core/Direction;)[[I +MD: net/minecraft/world/level/block/BedBlock/m_49554_ ()Lnet/minecraft/world/item/DyeColor; net/minecraft/world/level/block/BedBlock/getColor ()Lnet/minecraft/world/item/DyeColor; +MD: net/minecraft/world/level/block/BedBlock/m_49557_ (Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/core/Direction; net/minecraft/world/level/block/BedBlock/getConnectedDirection (Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/core/Direction; +MD: net/minecraft/world/level/block/BedBlock/m_49559_ (Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/block/DoubleBlockCombiner$BlockType; net/minecraft/world/level/block/BedBlock/getBlockType (Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/block/DoubleBlockCombiner$BlockType; +MD: net/minecraft/world/level/block/BedBlock/m_5548_ (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/world/entity/Entity;)V net/minecraft/world/level/block/BedBlock/updateEntityAfterFallOn (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/world/entity/Entity;)V +MD: net/minecraft/world/level/block/BedBlock/m_5573_ (Lnet/minecraft/world/item/context/BlockPlaceContext;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/BedBlock/getStateForPlacement (Lnet/minecraft/world/item/context/BlockPlaceContext;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/BedBlock/m_5707_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/entity/player/Player;)V net/minecraft/world/level/block/BedBlock/playerWillDestroy (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/entity/player/Player;)V +MD: net/minecraft/world/level/block/BedBlock/m_5940_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; net/minecraft/world/level/block/BedBlock/getShape (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; +MD: net/minecraft/world/level/block/BedBlock/m_6227_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;Lnet/minecraft/world/phys/BlockHitResult;)Lnet/minecraft/world/InteractionResult; net/minecraft/world/level/block/BedBlock/use (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;Lnet/minecraft/world/phys/BlockHitResult;)Lnet/minecraft/world/InteractionResult; +MD: net/minecraft/world/level/block/BedBlock/m_6402_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/item/ItemStack;)V net/minecraft/world/level/block/BedBlock/setPlacedBy (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/item/ItemStack;)V +MD: net/minecraft/world/level/block/BedBlock/m_7357_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/pathfinder/PathComputationType;)Z net/minecraft/world/level/block/BedBlock/isPathfindable (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/pathfinder/PathComputationType;)Z +MD: net/minecraft/world/level/block/BedBlock/m_7417_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/BedBlock/updateShape (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/BedBlock/m_7514_ (Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/block/RenderShape; net/minecraft/world/level/block/BedBlock/getRenderShape (Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/block/RenderShape; +MD: net/minecraft/world/level/block/BedBlock/m_7799_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/BlockPos;)J net/minecraft/world/level/block/BedBlock/getSeed (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/BlockPos;)J +MD: net/minecraft/world/level/block/BedBlock/m_7926_ (Lnet/minecraft/world/level/block/state/StateDefinition$Builder;)V net/minecraft/world/level/block/BedBlock/createBlockStateDefinition (Lnet/minecraft/world/level/block/state/StateDefinition$Builder;)V +MD: net/minecraft/world/level/block/BedBlock$1/ ()V net/minecraft/world/level/block/BedBlock$1/ ()V +MD: net/minecraft/world/level/block/BeehiveBlock/ ()V net/minecraft/world/level/block/BeehiveBlock/ ()V +MD: net/minecraft/world/level/block/BeehiveBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V net/minecraft/world/level/block/BeehiveBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V +MD: net/minecraft/world/level/block/BeehiveBlock/m_142194_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/block/entity/BlockEntity; net/minecraft/world/level/block/BeehiveBlock/newBlockEntity (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/block/entity/BlockEntity; +MD: net/minecraft/world/level/block/BeehiveBlock/m_142354_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/entity/BlockEntityType;)Lnet/minecraft/world/level/block/entity/BlockEntityTicker; net/minecraft/world/level/block/BeehiveBlock/getTicker (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/entity/BlockEntityType;)Lnet/minecraft/world/level/block/entity/BlockEntityTicker; +MD: net/minecraft/world/level/block/BeehiveBlock/m_214162_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)V net/minecraft/world/level/block/BeehiveBlock/animateTick (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)V +MD: net/minecraft/world/level/block/BeehiveBlock/m_49569_ (Lnet/minecraft/world/InteractionHand;Lnet/minecraft/world/entity/player/Player;)V net/minecraft/world/level/block/BeehiveBlock/lambda$use$0 (Lnet/minecraft/world/InteractionHand;Lnet/minecraft/world/entity/player/Player;)V +MD: net/minecraft/world/level/block/BeehiveBlock/m_49576_ (Lnet/minecraft/world/level/Level;DDDDD)V net/minecraft/world/level/block/BeehiveBlock/spawnFluidParticle (Lnet/minecraft/world/level/Level;DDDDD)V +MD: net/minecraft/world/level/block/BeehiveBlock/m_49590_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/BlockPos;)V net/minecraft/world/level/block/BeehiveBlock/resetHoneyLevel (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/world/level/block/BeehiveBlock/m_49594_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/level/block/entity/BeehiveBlockEntity$BeeReleaseStatus;)V net/minecraft/world/level/block/BeehiveBlock/releaseBeesAndResetHoneyLevel (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/level/block/entity/BeehiveBlockEntity$BeeReleaseStatus;)V +MD: net/minecraft/world/level/block/BeehiveBlock/m_49600_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;)V net/minecraft/world/level/block/BeehiveBlock/dropHoneycomb (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/world/level/block/BeehiveBlock/m_49603_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V net/minecraft/world/level/block/BeehiveBlock/trySpawnDripParticles (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V +MD: net/minecraft/world/level/block/BeehiveBlock/m_49612_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/VoxelShape;D)V net/minecraft/world/level/block/BeehiveBlock/spawnParticle (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/VoxelShape;D)V +MD: net/minecraft/world/level/block/BeehiveBlock/m_49635_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/storage/loot/LootParams$Builder;)Ljava/util/List; net/minecraft/world/level/block/BeehiveBlock/getDrops (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/storage/loot/LootParams$Builder;)Ljava/util/List; +MD: net/minecraft/world/level/block/BeehiveBlock/m_49649_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;)V net/minecraft/world/level/block/BeehiveBlock/angerNearbyBees (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/world/level/block/BeehiveBlock/m_49654_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/level/block/BeehiveBlock/hiveContainsBees (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/level/block/BeehiveBlock/m_5573_ (Lnet/minecraft/world/item/context/BlockPlaceContext;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/BeehiveBlock/getStateForPlacement (Lnet/minecraft/world/item/context/BlockPlaceContext;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/BeehiveBlock/m_5707_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/entity/player/Player;)V net/minecraft/world/level/block/BeehiveBlock/playerWillDestroy (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/entity/player/Player;)V +MD: net/minecraft/world/level/block/BeehiveBlock/m_6227_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;Lnet/minecraft/world/phys/BlockHitResult;)Lnet/minecraft/world/InteractionResult; net/minecraft/world/level/block/BeehiveBlock/use (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;Lnet/minecraft/world/phys/BlockHitResult;)Lnet/minecraft/world/InteractionResult; +MD: net/minecraft/world/level/block/BeehiveBlock/m_6240_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/entity/BlockEntity;Lnet/minecraft/world/item/ItemStack;)V net/minecraft/world/level/block/BeehiveBlock/playerDestroy (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/entity/BlockEntity;Lnet/minecraft/world/item/ItemStack;)V +MD: net/minecraft/world/level/block/BeehiveBlock/m_6782_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;)I net/minecraft/world/level/block/BeehiveBlock/getAnalogOutputSignal (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;)I +MD: net/minecraft/world/level/block/BeehiveBlock/m_7278_ (Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/world/level/block/BeehiveBlock/hasAnalogOutputSignal (Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/world/level/block/BeehiveBlock/m_7417_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/BeehiveBlock/updateShape (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/BeehiveBlock/m_7514_ (Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/block/RenderShape; net/minecraft/world/level/block/BeehiveBlock/getRenderShape (Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/block/RenderShape; +MD: net/minecraft/world/level/block/BeehiveBlock/m_7926_ (Lnet/minecraft/world/level/block/state/StateDefinition$Builder;)V net/minecraft/world/level/block/BeehiveBlock/createBlockStateDefinition (Lnet/minecraft/world/level/block/state/StateDefinition$Builder;)V +MD: net/minecraft/world/level/block/BeetrootBlock/ ()V net/minecraft/world/level/block/BeetrootBlock/ ()V +MD: net/minecraft/world/level/block/BeetrootBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V net/minecraft/world/level/block/BeetrootBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V +MD: net/minecraft/world/level/block/BeetrootBlock/m_213898_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)V net/minecraft/world/level/block/BeetrootBlock/randomTick (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)V +MD: net/minecraft/world/level/block/BeetrootBlock/m_5940_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; net/minecraft/world/level/block/BeetrootBlock/getShape (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; +MD: net/minecraft/world/level/block/BeetrootBlock/m_6404_ ()Lnet/minecraft/world/level/ItemLike; net/minecraft/world/level/block/BeetrootBlock/getBaseSeedId ()Lnet/minecraft/world/level/ItemLike; +MD: net/minecraft/world/level/block/BeetrootBlock/m_7125_ (Lnet/minecraft/world/level/Level;)I net/minecraft/world/level/block/BeetrootBlock/getBonemealAgeIncrease (Lnet/minecraft/world/level/Level;)I +MD: net/minecraft/world/level/block/BeetrootBlock/m_7419_ ()I net/minecraft/world/level/block/BeetrootBlock/getMaxAge ()I +MD: net/minecraft/world/level/block/BeetrootBlock/m_7926_ (Lnet/minecraft/world/level/block/state/StateDefinition$Builder;)V net/minecraft/world/level/block/BeetrootBlock/createBlockStateDefinition (Lnet/minecraft/world/level/block/state/StateDefinition$Builder;)V +MD: net/minecraft/world/level/block/BeetrootBlock/m_7959_ ()Lnet/minecraft/world/level/block/state/properties/IntegerProperty; net/minecraft/world/level/block/BeetrootBlock/getAgeProperty ()Lnet/minecraft/world/level/block/state/properties/IntegerProperty; +MD: net/minecraft/world/level/block/BellBlock/ ()V net/minecraft/world/level/block/BellBlock/ ()V +MD: net/minecraft/world/level/block/BellBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V net/minecraft/world/level/block/BellBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V +MD: net/minecraft/world/level/block/BellBlock/m_142194_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/block/entity/BlockEntity; net/minecraft/world/level/block/BellBlock/newBlockEntity (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/block/entity/BlockEntity; +MD: net/minecraft/world/level/block/BellBlock/m_142354_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/entity/BlockEntityType;)Lnet/minecraft/world/level/block/entity/BlockEntityTicker; net/minecraft/world/level/block/BellBlock/getTicker (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/entity/BlockEntityType;)Lnet/minecraft/world/level/block/entity/BlockEntityTicker; +MD: net/minecraft/world/level/block/BellBlock/m_152188_ (Lnet/minecraft/world/entity/Entity;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Direction;)Z net/minecraft/world/level/block/BellBlock/attemptToRing (Lnet/minecraft/world/entity/Entity;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Direction;)Z +MD: net/minecraft/world/level/block/BellBlock/m_49701_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/phys/BlockHitResult;Lnet/minecraft/world/entity/player/Player;Z)Z net/minecraft/world/level/block/BellBlock/onHit (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/phys/BlockHitResult;Lnet/minecraft/world/entity/player/Player;Z)Z +MD: net/minecraft/world/level/block/BellBlock/m_49712_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Direction;)Z net/minecraft/world/level/block/BellBlock/attemptToRing (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Direction;)Z +MD: net/minecraft/world/level/block/BellBlock/m_49739_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/Direction;D)Z net/minecraft/world/level/block/BellBlock/isProperHit (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/Direction;D)Z +MD: net/minecraft/world/level/block/BellBlock/m_49766_ (Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/phys/shapes/VoxelShape; net/minecraft/world/level/block/BellBlock/getVoxelShape (Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/phys/shapes/VoxelShape; +MD: net/minecraft/world/level/block/BellBlock/m_49768_ (Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/core/Direction; net/minecraft/world/level/block/BellBlock/getConnectedDirection (Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/core/Direction; +MD: net/minecraft/world/level/block/BellBlock/m_5573_ (Lnet/minecraft/world/item/context/BlockPlaceContext;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/BellBlock/getStateForPlacement (Lnet/minecraft/world/item/context/BlockPlaceContext;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/BellBlock/m_5581_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/phys/BlockHitResult;Lnet/minecraft/world/entity/projectile/Projectile;)V net/minecraft/world/level/block/BellBlock/onProjectileHit (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/phys/BlockHitResult;Lnet/minecraft/world/entity/projectile/Projectile;)V +MD: net/minecraft/world/level/block/BellBlock/m_5939_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; net/minecraft/world/level/block/BellBlock/getCollisionShape (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; +MD: net/minecraft/world/level/block/BellBlock/m_5940_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; net/minecraft/world/level/block/BellBlock/getShape (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; +MD: net/minecraft/world/level/block/BellBlock/m_6227_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;Lnet/minecraft/world/phys/BlockHitResult;)Lnet/minecraft/world/InteractionResult; net/minecraft/world/level/block/BellBlock/use (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;Lnet/minecraft/world/phys/BlockHitResult;)Lnet/minecraft/world/InteractionResult; +MD: net/minecraft/world/level/block/BellBlock/m_6861_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/Block;Lnet/minecraft/core/BlockPos;Z)V net/minecraft/world/level/block/BellBlock/neighborChanged (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/Block;Lnet/minecraft/core/BlockPos;Z)V +MD: net/minecraft/world/level/block/BellBlock/m_7357_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/pathfinder/PathComputationType;)Z net/minecraft/world/level/block/BellBlock/isPathfindable (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/pathfinder/PathComputationType;)Z +MD: net/minecraft/world/level/block/BellBlock/m_7417_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/BellBlock/updateShape (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/BellBlock/m_7514_ (Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/block/RenderShape; net/minecraft/world/level/block/BellBlock/getRenderShape (Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/block/RenderShape; +MD: net/minecraft/world/level/block/BellBlock/m_7898_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/level/block/BellBlock/canSurvive (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/level/block/BellBlock/m_7926_ (Lnet/minecraft/world/level/block/state/StateDefinition$Builder;)V net/minecraft/world/level/block/BellBlock/createBlockStateDefinition (Lnet/minecraft/world/level/block/state/StateDefinition$Builder;)V +MD: net/minecraft/world/level/block/BellBlock$1/ ()V net/minecraft/world/level/block/BellBlock$1/ ()V +MD: net/minecraft/world/level/block/BigDripleafBlock/ ()V net/minecraft/world/level/block/BigDripleafBlock/ ()V +MD: net/minecraft/world/level/block/BigDripleafBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V net/minecraft/world/level/block/BigDripleafBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V +MD: net/minecraft/world/level/block/BigDripleafBlock/m_152232_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/sounds/SoundEvent;)V net/minecraft/world/level/block/BigDripleafBlock/playTiltSound (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/sounds/SoundEvent;)V +MD: net/minecraft/world/level/block/BigDripleafBlock/m_152241_ (Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/material/FluidState;Lnet/minecraft/core/Direction;)Z net/minecraft/world/level/block/BigDripleafBlock/place (Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/material/FluidState;Lnet/minecraft/core/Direction;)Z +MD: net/minecraft/world/level/block/BigDripleafBlock/m_152251_ (Lnet/minecraft/world/level/LevelHeightAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/world/level/block/BigDripleafBlock/canPlaceAt (Lnet/minecraft/world/level/LevelHeightAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/world/level/block/BigDripleafBlock/m_152277_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/properties/Tilt;)V net/minecraft/world/level/block/BigDripleafBlock/setTilt (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/properties/Tilt;)V +MD: net/minecraft/world/level/block/BigDripleafBlock/m_152282_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/properties/Tilt;Lnet/minecraft/sounds/SoundEvent;)V net/minecraft/world/level/block/BigDripleafBlock/setTiltAndScheduleTick (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/properties/Tilt;Lnet/minecraft/sounds/SoundEvent;)V +MD: net/minecraft/world/level/block/BigDripleafBlock/m_152301_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/Entity;)Z net/minecraft/world/level/block/BigDripleafBlock/canEntityTilt (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/Entity;)Z +MD: net/minecraft/world/level/block/BigDripleafBlock/m_152304_ (Lit/unimi/dsi/fastutil/objects/Object2IntArrayMap;)V net/minecraft/world/level/block/BigDripleafBlock/lambda$static$0 (Lit/unimi/dsi/fastutil/objects/Object2IntArrayMap;)V +MD: net/minecraft/world/level/block/BigDripleafBlock/m_152313_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;)V net/minecraft/world/level/block/BigDripleafBlock/resetTilt (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/world/level/block/BigDripleafBlock/m_152317_ (Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/phys/shapes/VoxelShape; net/minecraft/world/level/block/BigDripleafBlock/calculateShape (Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/phys/shapes/VoxelShape; +MD: net/minecraft/world/level/block/BigDripleafBlock/m_152319_ (Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/world/level/block/BigDripleafBlock/canReplace (Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/world/level/block/BigDripleafBlock/m_213897_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)V net/minecraft/world/level/block/BigDripleafBlock/tick (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)V +MD: net/minecraft/world/level/block/BigDripleafBlock/m_214148_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V net/minecraft/world/level/block/BigDripleafBlock/performBonemeal (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V +MD: net/minecraft/world/level/block/BigDripleafBlock/m_214167_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/world/level/block/BigDripleafBlock/isBonemealSuccess (Lnet/minecraft/world/level/Level;Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/world/level/block/BigDripleafBlock/m_220792_ (Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Direction;)V net/minecraft/world/level/block/BigDripleafBlock/placeWithRandomHeight (Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Direction;)V +MD: net/minecraft/world/level/block/BigDripleafBlock/m_5573_ (Lnet/minecraft/world/item/context/BlockPlaceContext;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/BigDripleafBlock/getStateForPlacement (Lnet/minecraft/world/item/context/BlockPlaceContext;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/BigDripleafBlock/m_5581_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/phys/BlockHitResult;Lnet/minecraft/world/entity/projectile/Projectile;)V net/minecraft/world/level/block/BigDripleafBlock/onProjectileHit (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/phys/BlockHitResult;Lnet/minecraft/world/entity/projectile/Projectile;)V +MD: net/minecraft/world/level/block/BigDripleafBlock/m_5888_ (Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/material/FluidState; net/minecraft/world/level/block/BigDripleafBlock/getFluidState (Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/material/FluidState; +MD: net/minecraft/world/level/block/BigDripleafBlock/m_5939_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; net/minecraft/world/level/block/BigDripleafBlock/getCollisionShape (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; +MD: net/minecraft/world/level/block/BigDripleafBlock/m_5940_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; net/minecraft/world/level/block/BigDripleafBlock/getShape (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; +MD: net/minecraft/world/level/block/BigDripleafBlock/m_6861_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/Block;Lnet/minecraft/core/BlockPos;Z)V net/minecraft/world/level/block/BigDripleafBlock/neighborChanged (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/Block;Lnet/minecraft/core/BlockPos;Z)V +MD: net/minecraft/world/level/block/BigDripleafBlock/m_7370_ (Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Z)Z net/minecraft/world/level/block/BigDripleafBlock/isValidBonemealTarget (Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Z)Z +MD: net/minecraft/world/level/block/BigDripleafBlock/m_7417_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/BigDripleafBlock/updateShape (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/BigDripleafBlock/m_7892_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/Entity;)V net/minecraft/world/level/block/BigDripleafBlock/entityInside (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/Entity;)V +MD: net/minecraft/world/level/block/BigDripleafBlock/m_7898_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/level/block/BigDripleafBlock/canSurvive (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/level/block/BigDripleafBlock/m_7926_ (Lnet/minecraft/world/level/block/state/StateDefinition$Builder;)V net/minecraft/world/level/block/BigDripleafBlock/createBlockStateDefinition (Lnet/minecraft/world/level/block/state/StateDefinition$Builder;)V +MD: net/minecraft/world/level/block/BigDripleafStemBlock/ ()V net/minecraft/world/level/block/BigDripleafStemBlock/ ()V +MD: net/minecraft/world/level/block/BigDripleafStemBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V net/minecraft/world/level/block/BigDripleafStemBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V +MD: net/minecraft/world/level/block/BigDripleafStemBlock/m_152349_ (Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/material/FluidState;Lnet/minecraft/core/Direction;)Z net/minecraft/world/level/block/BigDripleafStemBlock/place (Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/material/FluidState;Lnet/minecraft/core/Direction;)Z +MD: net/minecraft/world/level/block/BigDripleafStemBlock/m_213897_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)V net/minecraft/world/level/block/BigDripleafStemBlock/tick (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)V +MD: net/minecraft/world/level/block/BigDripleafStemBlock/m_214148_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V net/minecraft/world/level/block/BigDripleafStemBlock/performBonemeal (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V +MD: net/minecraft/world/level/block/BigDripleafStemBlock/m_214167_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/world/level/block/BigDripleafStemBlock/isBonemealSuccess (Lnet/minecraft/world/level/Level;Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/world/level/block/BigDripleafStemBlock/m_5888_ (Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/material/FluidState; net/minecraft/world/level/block/BigDripleafStemBlock/getFluidState (Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/material/FluidState; +MD: net/minecraft/world/level/block/BigDripleafStemBlock/m_5940_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; net/minecraft/world/level/block/BigDripleafStemBlock/getShape (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; +MD: net/minecraft/world/level/block/BigDripleafStemBlock/m_7370_ (Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Z)Z net/minecraft/world/level/block/BigDripleafStemBlock/isValidBonemealTarget (Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Z)Z +MD: net/minecraft/world/level/block/BigDripleafStemBlock/m_7397_ (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/item/ItemStack; net/minecraft/world/level/block/BigDripleafStemBlock/getCloneItemStack (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/level/block/BigDripleafStemBlock/m_7417_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/BigDripleafStemBlock/updateShape (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/BigDripleafStemBlock/m_7898_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/level/block/BigDripleafStemBlock/canSurvive (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/level/block/BigDripleafStemBlock/m_7926_ (Lnet/minecraft/world/level/block/state/StateDefinition$Builder;)V net/minecraft/world/level/block/BigDripleafStemBlock/createBlockStateDefinition (Lnet/minecraft/world/level/block/state/StateDefinition$Builder;)V +MD: net/minecraft/world/level/block/BigDripleafStemBlock$1/ ()V net/minecraft/world/level/block/BigDripleafStemBlock$1/ ()V +MD: net/minecraft/world/level/block/BlastFurnaceBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V net/minecraft/world/level/block/BlastFurnaceBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V +MD: net/minecraft/world/level/block/BlastFurnaceBlock/m_142194_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/block/entity/BlockEntity; net/minecraft/world/level/block/BlastFurnaceBlock/newBlockEntity (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/block/entity/BlockEntity; +MD: net/minecraft/world/level/block/BlastFurnaceBlock/m_142354_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/entity/BlockEntityType;)Lnet/minecraft/world/level/block/entity/BlockEntityTicker; net/minecraft/world/level/block/BlastFurnaceBlock/getTicker (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/entity/BlockEntityType;)Lnet/minecraft/world/level/block/entity/BlockEntityTicker; +MD: net/minecraft/world/level/block/BlastFurnaceBlock/m_214162_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)V net/minecraft/world/level/block/BlastFurnaceBlock/animateTick (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)V +MD: net/minecraft/world/level/block/BlastFurnaceBlock/m_7137_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/player/Player;)V net/minecraft/world/level/block/BlastFurnaceBlock/openContainer (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/player/Player;)V +MD: net/minecraft/world/level/block/Block/ ()V net/minecraft/world/level/block/Block/ ()V +MD: net/minecraft/world/level/block/Block/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V net/minecraft/world/level/block/Block/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V +MD: net/minecraft/world/level/block/Block/m_141947_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/entity/Entity;)V net/minecraft/world/level/block/Block/stepOn (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/entity/Entity;)V +MD: net/minecraft/world/level/block/Block/m_141997_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/biome/Biome$Precipitation;)V net/minecraft/world/level/block/Block/handlePrecipitation (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/biome/Biome$Precipitation;)V +MD: net/minecraft/world/level/block/Block/m_142072_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/Entity;F)V net/minecraft/world/level/block/Block/fallOn (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/Entity;F)V +MD: net/minecraft/world/level/block/Block/m_142387_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V net/minecraft/world/level/block/Block/spawnDestroyParticles (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V +MD: net/minecraft/world/level/block/Block/m_152403_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/item/ItemStack;)V net/minecraft/world/level/block/Block/lambda$dropResources$1 (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/item/ItemStack;)V +MD: net/minecraft/world/level/block/Block/m_152407_ (Lnet/minecraft/world/level/Level;DDDLnet/minecraft/world/item/ItemStack;)Lnet/minecraft/world/entity/item/ItemEntity; net/minecraft/world/level/block/Block/lambda$popResource$4 (Lnet/minecraft/world/level/Level;DDDLnet/minecraft/world/item/ItemStack;)Lnet/minecraft/world/entity/item/ItemEntity; +MD: net/minecraft/world/level/block/Block/m_152413_ (Lnet/minecraft/world/level/Level;DDDLnet/minecraft/world/item/ItemStack;DDD)Lnet/minecraft/world/entity/item/ItemEntity; net/minecraft/world/level/block/Block/lambda$popResourceFromFace$5 (Lnet/minecraft/world/level/Level;DDDLnet/minecraft/world/item/ItemStack;DDD)Lnet/minecraft/world/entity/item/ItemEntity; +MD: net/minecraft/world/level/block/Block/m_152435_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Direction;Lnet/minecraft/world/item/ItemStack;)V net/minecraft/world/level/block/Block/popResourceFromFace (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Direction;Lnet/minecraft/world/item/ItemStack;)V +MD: net/minecraft/world/level/block/Block/m_152440_ (Lnet/minecraft/world/level/Level;Ljava/util/function/Supplier;Lnet/minecraft/world/item/ItemStack;)V net/minecraft/world/level/block/Block/popResource (Lnet/minecraft/world/level/Level;Ljava/util/function/Supplier;Lnet/minecraft/world/item/ItemStack;)V +MD: net/minecraft/world/level/block/Block/m_152444_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Direction;Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/level/block/Block/shouldRenderFace (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Direction;Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/level/block/Block/m_152454_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/state/properties/Property;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/Block/copyProperty (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/state/properties/Property;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/Block/m_152458_ (Ljava/util/function/Function;)Lcom/google/common/collect/ImmutableMap; net/minecraft/world/level/block/Block/getShapeForEachState (Ljava/util/function/Function;)Lcom/google/common/collect/ImmutableMap; +MD: net/minecraft/world/level/block/Block/m_152463_ (Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/world/level/block/Block/isExceptionForConnection (Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/world/level/block/Block/m_152465_ (Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/Block/withPropertiesOf (Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/Block/m_204297_ ()Lnet/minecraft/core/Holder$Reference; net/minecraft/world/level/block/Block/builtInRegistryHolder ()Lnet/minecraft/core/Holder$Reference; +MD: net/minecraft/world/level/block/Block/m_214162_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)V net/minecraft/world/level/block/Block/animateTick (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)V +MD: net/minecraft/world/level/block/Block/m_220822_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/util/valueproviders/IntProvider;)V net/minecraft/world/level/block/Block/tryDropExperience (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/util/valueproviders/IntProvider;)V +MD: net/minecraft/world/level/block/Block/m_48673_ (Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/world/level/block/Block/isPossibleToRespawnInThis (Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/world/level/block/Block/m_49796_ (DDDDDD)Lnet/minecraft/world/phys/shapes/VoxelShape; net/minecraft/world/level/block/Block/box (DDDDDD)Lnet/minecraft/world/phys/shapes/VoxelShape; +MD: net/minecraft/world/level/block/Block/m_49803_ (I)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/Block/stateById (I)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/Block/m_49805_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;I)V net/minecraft/world/level/block/Block/popExperience (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;I)V +MD: net/minecraft/world/level/block/Block/m_49814_ (Lnet/minecraft/world/item/Item;)Lnet/minecraft/world/level/block/Block; net/minecraft/world/level/block/Block/byItem (Lnet/minecraft/world/item/Item;)Lnet/minecraft/world/level/block/Block; +MD: net/minecraft/world/level/block/Block/m_49840_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/item/ItemStack;)V net/minecraft/world/level/block/Block/popResource (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/item/ItemStack;)V +MD: net/minecraft/world/level/block/Block/m_49856_ (Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/item/ItemStack;)V net/minecraft/world/level/block/Block/lambda$dropResources$2 (Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/item/ItemStack;)V +MD: net/minecraft/world/level/block/Block/m_49863_ (Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Direction;)Z net/minecraft/world/level/block/Block/canSupportCenter (Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Direction;)Z +MD: net/minecraft/world/level/block/Block/m_49869_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/entity/BlockEntity;)Ljava/util/List; net/minecraft/world/level/block/Block/getDrops (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/entity/BlockEntity;)Ljava/util/List; +MD: net/minecraft/world/level/block/Block/m_49874_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/entity/BlockEntity;Lnet/minecraft/world/entity/Entity;Lnet/minecraft/world/item/ItemStack;)Ljava/util/List; net/minecraft/world/level/block/Block/getDrops (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/entity/BlockEntity;Lnet/minecraft/world/entity/Entity;Lnet/minecraft/world/item/ItemStack;)Ljava/util/List; +MD: net/minecraft/world/level/block/Block/m_49881_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/entity/BlockEntity;Lnet/minecraft/world/entity/Entity;Lnet/minecraft/world/item/ItemStack;)V net/minecraft/world/level/block/Block/dropResources (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/entity/BlockEntity;Lnet/minecraft/world/entity/Entity;Lnet/minecraft/world/item/ItemStack;)V +MD: net/minecraft/world/level/block/Block/m_49892_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/entity/BlockEntity;)V net/minecraft/world/level/block/Block/dropResources (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/entity/BlockEntity;)V +MD: net/minecraft/world/level/block/Block/m_49897_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/Block/pushEntitiesUp (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/Block/m_49902_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;I)V net/minecraft/world/level/block/Block/updateOrDestroy (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;I)V +MD: net/minecraft/world/level/block/Block/m_49908_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;II)V net/minecraft/world/level/block/Block/updateOrDestroy (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;II)V +MD: net/minecraft/world/level/block/Block/m_49916_ (Lnet/minecraft/world/phys/shapes/VoxelShape;)Z net/minecraft/world/level/block/Block/isShapeFullBlock (Lnet/minecraft/world/phys/shapes/VoxelShape;)Z +MD: net/minecraft/world/level/block/Block/m_49918_ (Lnet/minecraft/world/phys/shapes/VoxelShape;Lnet/minecraft/core/Direction;)Z net/minecraft/world/level/block/Block/isFaceFull (Lnet/minecraft/world/phys/shapes/VoxelShape;Lnet/minecraft/core/Direction;)Z +MD: net/minecraft/world/level/block/Block/m_49931_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/Block/updateFromNeighbourShapes (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/Block/m_49935_ ()Lit/unimi/dsi/fastutil/objects/Object2ByteLinkedOpenHashMap; net/minecraft/world/level/block/Block/lambda$static$0 ()Lit/unimi/dsi/fastutil/objects/Object2ByteLinkedOpenHashMap; +MD: net/minecraft/world/level/block/Block/m_49936_ (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/level/block/Block/canSupportRigidBlock (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/level/block/Block/m_49941_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/item/ItemStack;)V net/minecraft/world/level/block/Block/lambda$dropResources$3 (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/item/ItemStack;)V +MD: net/minecraft/world/level/block/Block/m_49950_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;)V net/minecraft/world/level/block/Block/dropResources (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/world/level/block/Block/m_49954_ ()Lnet/minecraft/network/chat/MutableComponent; net/minecraft/world/level/block/Block/getName ()Lnet/minecraft/network/chat/MutableComponent; +MD: net/minecraft/world/level/block/Block/m_49956_ (Lnet/minecraft/world/level/block/state/BlockState;)I net/minecraft/world/level/block/Block/getId (Lnet/minecraft/world/level/block/state/BlockState;)I +MD: net/minecraft/world/level/block/Block/m_49958_ ()F net/minecraft/world/level/block/Block/getFriction ()F +MD: net/minecraft/world/level/block/Block/m_49959_ (Lnet/minecraft/world/level/block/state/BlockState;)V net/minecraft/world/level/block/Block/registerDefaultState (Lnet/minecraft/world/level/block/state/BlockState;)V +MD: net/minecraft/world/level/block/Block/m_49961_ ()F net/minecraft/world/level/block/Block/getSpeedFactor ()F +MD: net/minecraft/world/level/block/Block/m_49962_ (Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/block/SoundType; net/minecraft/world/level/block/Block/getSoundType (Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/block/SoundType; +MD: net/minecraft/world/level/block/Block/m_49964_ ()F net/minecraft/world/level/block/Block/getJumpFactor ()F +MD: net/minecraft/world/level/block/Block/m_49965_ ()Lnet/minecraft/world/level/block/state/StateDefinition; net/minecraft/world/level/block/Block/getStateDefinition ()Lnet/minecraft/world/level/block/state/StateDefinition; +MD: net/minecraft/world/level/block/Block/m_49966_ ()Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/Block/defaultBlockState ()Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/Block/m_49967_ ()Z net/minecraft/world/level/block/Block/hasDynamicShape ()Z +MD: net/minecraft/world/level/block/Block/m_5456_ ()Lnet/minecraft/world/item/Item; net/minecraft/world/level/block/Block/asItem ()Lnet/minecraft/world/item/Item; +MD: net/minecraft/world/level/block/Block/m_5548_ (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/world/entity/Entity;)V net/minecraft/world/level/block/Block/updateEntityAfterFallOn (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/world/entity/Entity;)V +MD: net/minecraft/world/level/block/Block/m_5573_ (Lnet/minecraft/world/item/context/BlockPlaceContext;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/Block/getStateForPlacement (Lnet/minecraft/world/item/context/BlockPlaceContext;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/Block/m_5707_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/entity/player/Player;)V net/minecraft/world/level/block/Block/playerWillDestroy (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/entity/player/Player;)V +MD: net/minecraft/world/level/block/Block/m_5871_ (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/level/BlockGetter;Ljava/util/List;Lnet/minecraft/world/item/TooltipFlag;)V net/minecraft/world/level/block/Block/appendHoverText (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/level/BlockGetter;Ljava/util/List;Lnet/minecraft/world/item/TooltipFlag;)V +MD: net/minecraft/world/level/block/Block/m_6240_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/entity/BlockEntity;Lnet/minecraft/world/item/ItemStack;)V net/minecraft/world/level/block/Block/playerDestroy (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/entity/BlockEntity;Lnet/minecraft/world/item/ItemStack;)V +MD: net/minecraft/world/level/block/Block/m_6402_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/item/ItemStack;)V net/minecraft/world/level/block/Block/setPlacedBy (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/item/ItemStack;)V +MD: net/minecraft/world/level/block/Block/m_6724_ (Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/world/level/block/Block/isRandomlyTicking (Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/world/level/block/Block/m_6786_ (Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V net/minecraft/world/level/block/Block/destroy (Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V +MD: net/minecraft/world/level/block/Block/m_6903_ (Lnet/minecraft/world/level/Explosion;)Z net/minecraft/world/level/block/Block/dropFromExplosion (Lnet/minecraft/world/level/Explosion;)Z +MD: net/minecraft/world/level/block/Block/m_7325_ ()F net/minecraft/world/level/block/Block/getExplosionResistance ()F +MD: net/minecraft/world/level/block/Block/m_7374_ ()Lnet/minecraft/world/level/block/Block; net/minecraft/world/level/block/Block/asBlock ()Lnet/minecraft/world/level/block/Block; +MD: net/minecraft/world/level/block/Block/m_7397_ (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/item/ItemStack; net/minecraft/world/level/block/Block/getCloneItemStack (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/level/block/Block/m_7420_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/level/block/Block/propagatesSkylightDown (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/level/block/Block/m_7592_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/Explosion;)V net/minecraft/world/level/block/Block/wasExploded (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/Explosion;)V +MD: net/minecraft/world/level/block/Block/m_7705_ ()Ljava/lang/String; net/minecraft/world/level/block/Block/getDescriptionId ()Ljava/lang/String; +MD: net/minecraft/world/level/block/Block/m_7926_ (Lnet/minecraft/world/level/block/state/StateDefinition$Builder;)V net/minecraft/world/level/block/Block/createBlockStateDefinition (Lnet/minecraft/world/level/block/state/StateDefinition$Builder;)V +MD: net/minecraft/world/level/block/Block/toString ()Ljava/lang/String; net/minecraft/world/level/block/Block/toString ()Ljava/lang/String; +MD: net/minecraft/world/level/block/Block$1/ ()V net/minecraft/world/level/block/Block$1/ ()V +MD: net/minecraft/world/level/block/Block$1/load (Ljava/lang/Object;)Ljava/lang/Object; net/minecraft/world/level/block/Block$1/load (Ljava/lang/Object;)Ljava/lang/Object; +MD: net/minecraft/world/level/block/Block$1/load (Lnet/minecraft/world/phys/shapes/VoxelShape;)Ljava/lang/Boolean; net/minecraft/world/level/block/Block$1/load (Lnet/minecraft/world/phys/shapes/VoxelShape;)Ljava/lang/Boolean; +MD: net/minecraft/world/level/block/Block$2/ (IF)V net/minecraft/world/level/block/Block$2/ (IF)V +MD: net/minecraft/world/level/block/Block$2/rehash (I)V net/minecraft/world/level/block/Block$2/rehash (I)V +MD: net/minecraft/world/level/block/Block$BlockStatePairKey/ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/Direction;)V net/minecraft/world/level/block/Block$BlockStatePairKey/ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/Direction;)V +MD: net/minecraft/world/level/block/Block$BlockStatePairKey/equals (Ljava/lang/Object;)Z net/minecraft/world/level/block/Block$BlockStatePairKey/equals (Ljava/lang/Object;)Z +MD: net/minecraft/world/level/block/Block$BlockStatePairKey/hashCode ()I net/minecraft/world/level/block/Block$BlockStatePairKey/hashCode ()I +MD: net/minecraft/world/level/block/Blocks/ ()V net/minecraft/world/level/block/Blocks/ ()V +MD: net/minecraft/world/level/block/Blocks/ ()V net/minecraft/world/level/block/Blocks/ ()V +MD: net/minecraft/world/level/block/Blocks/m_152604_ (Lnet/minecraft/world/level/block/state/BlockState;)I net/minecraft/world/level/block/Blocks/lambda$static$16 (Lnet/minecraft/world/level/block/state/BlockState;)I +MD: net/minecraft/world/level/block/Blocks/m_152606_ (Lnet/minecraft/world/level/block/state/BlockState;)I net/minecraft/world/level/block/Blocks/lambda$static$12 (Lnet/minecraft/world/level/block/state/BlockState;)I +MD: net/minecraft/world/level/block/Blocks/m_152614_ (Lnet/minecraft/world/level/block/SoundType;)Lnet/minecraft/world/level/block/LeavesBlock; net/minecraft/world/level/block/Blocks/leaves (Lnet/minecraft/world/level/block/SoundType;)Lnet/minecraft/world/level/block/LeavesBlock; +MD: net/minecraft/world/level/block/Blocks/m_152631_ (Lnet/minecraft/world/level/block/state/BlockState;)I net/minecraft/world/level/block/Blocks/lambda$static$48 (Lnet/minecraft/world/level/block/state/BlockState;)I +MD: net/minecraft/world/level/block/Blocks/m_152638_ (Lnet/minecraft/world/level/block/state/BlockState;)I net/minecraft/world/level/block/Blocks/lambda$static$47 (Lnet/minecraft/world/level/block/state/BlockState;)I +MD: net/minecraft/world/level/block/Blocks/m_152649_ ()Lnet/minecraft/world/item/Item; net/minecraft/world/level/block/Blocks/lambda$static$23 ()Lnet/minecraft/world/item/Item; +MD: net/minecraft/world/level/block/Blocks/m_152650_ (Lnet/minecraft/world/level/block/state/BlockState;)I net/minecraft/world/level/block/Blocks/lambda$static$46 (Lnet/minecraft/world/level/block/state/BlockState;)I +MD: net/minecraft/world/level/block/Blocks/m_152656_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/EntityType;)Z net/minecraft/world/level/block/Blocks/lambda$static$36 (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/EntityType;)Z +MD: net/minecraft/world/level/block/Blocks/m_152661_ ()Lnet/minecraft/world/item/Item; net/minecraft/world/level/block/Blocks/lambda$static$22 ()Lnet/minecraft/world/item/Item; +MD: net/minecraft/world/level/block/Blocks/m_152662_ (Lnet/minecraft/world/level/block/state/BlockState;)I net/minecraft/world/level/block/Blocks/lambda$static$45 (Lnet/minecraft/world/level/block/state/BlockState;)I +MD: net/minecraft/world/level/block/Blocks/m_152669_ ()Lnet/minecraft/world/item/Item; net/minecraft/world/level/block/Blocks/lambda$static$21 ()Lnet/minecraft/world/item/Item; +MD: net/minecraft/world/level/block/Blocks/m_152670_ (Lnet/minecraft/world/level/block/state/BlockState;)I net/minecraft/world/level/block/Blocks/lambda$static$52 (Lnet/minecraft/world/level/block/state/BlockState;)I +MD: net/minecraft/world/level/block/Blocks/m_152673_ (Lnet/minecraft/world/level/block/state/BlockState;)I net/minecraft/world/level/block/Blocks/lambda$static$44 (Lnet/minecraft/world/level/block/state/BlockState;)I +MD: net/minecraft/world/level/block/Blocks/m_152681_ (Lnet/minecraft/world/level/block/state/BlockState;)I net/minecraft/world/level/block/Blocks/lambda$static$41 (Lnet/minecraft/world/level/block/state/BlockState;)I +MD: net/minecraft/world/level/block/Blocks/m_152683_ (Lnet/minecraft/world/level/block/state/BlockState;)I net/minecraft/world/level/block/Blocks/lambda$static$39 (Lnet/minecraft/world/level/block/state/BlockState;)I +MD: net/minecraft/world/level/block/Blocks/m_152685_ (Lnet/minecraft/world/level/block/state/BlockState;)I net/minecraft/world/level/block/Blocks/lambda$static$40 (Lnet/minecraft/world/level/block/state/BlockState;)I +MD: net/minecraft/world/level/block/Blocks/m_152689_ (Lnet/minecraft/world/level/block/state/BlockState;)I net/minecraft/world/level/block/Blocks/lambda$static$29 (Lnet/minecraft/world/level/block/state/BlockState;)I +MD: net/minecraft/world/level/block/Blocks/m_152691_ (Lnet/minecraft/world/level/block/state/BlockState;)I net/minecraft/world/level/block/Blocks/lambda$static$28 (Lnet/minecraft/world/level/block/state/BlockState;)I +MD: net/minecraft/world/level/block/Blocks/m_181165_ (Lnet/minecraft/world/level/block/state/BlockState;)I net/minecraft/world/level/block/Blocks/lambda$static$10 (Lnet/minecraft/world/level/block/state/BlockState;)I +MD: net/minecraft/world/level/block/Blocks/m_181167_ (Lnet/minecraft/world/level/block/state/BlockState;)I net/minecraft/world/level/block/Blocks/lambda$static$9 (Lnet/minecraft/world/level/block/state/BlockState;)I +MD: net/minecraft/world/level/block/Blocks/m_181172_ (Lnet/minecraft/world/level/material/MapColor;Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/material/MapColor; net/minecraft/world/level/block/Blocks/lambda$netherStem$4 (Lnet/minecraft/world/level/material/MapColor;Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/material/MapColor; +MD: net/minecraft/world/level/block/Blocks/m_181175_ (Lnet/minecraft/world/level/material/MapColor;Lnet/minecraft/world/level/material/MapColor;Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/material/MapColor; net/minecraft/world/level/block/Blocks/lambda$log$2 (Lnet/minecraft/world/level/material/MapColor;Lnet/minecraft/world/level/material/MapColor;Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/material/MapColor; +MD: net/minecraft/world/level/block/Blocks/m_181185_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/level/block/Blocks/lambda$pistonBase$6 (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/level/block/Blocks/m_181206_ ()Lnet/minecraft/world/level/block/entity/BlockEntityType; net/minecraft/world/level/block/Blocks/lambda$static$13 ()Lnet/minecraft/world/level/block/entity/BlockEntityType; +MD: net/minecraft/world/level/block/Blocks/m_187405_ (Lnet/minecraft/world/level/block/state/BlockState;)I net/minecraft/world/level/block/Blocks/lambda$static$50 (Lnet/minecraft/world/level/block/state/BlockState;)I +MD: net/minecraft/world/level/block/Blocks/m_187408_ (Lnet/minecraft/world/level/block/state/BlockState;)I net/minecraft/world/level/block/Blocks/lambda$static$49 (Lnet/minecraft/world/level/block/state/BlockState;)I +MD: net/minecraft/world/level/block/Blocks/m_187411_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/level/block/Blocks/lambda$static$51 (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/level/block/Blocks/m_187415_ ()Lnet/minecraft/world/item/Item; net/minecraft/world/level/block/Blocks/lambda$static$24 ()Lnet/minecraft/world/item/Item; +MD: net/minecraft/world/level/block/Blocks/m_187416_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/level/block/Blocks/lambda$static$14 (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/level/block/Blocks/m_187420_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/EntityType;)Z net/minecraft/world/level/block/Blocks/lambda$static$38 (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/EntityType;)Z +MD: net/minecraft/world/level/block/Blocks/m_187425_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/EntityType;)Z net/minecraft/world/level/block/Blocks/lambda$static$15 (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/EntityType;)Z +MD: net/minecraft/world/level/block/Blocks/m_187430_ (Lnet/minecraft/world/level/block/state/BlockState;)I net/minecraft/world/level/block/Blocks/lambda$static$43 (Lnet/minecraft/world/level/block/state/BlockState;)I +MD: net/minecraft/world/level/block/Blocks/m_187432_ (Lnet/minecraft/world/level/block/state/BlockState;)I net/minecraft/world/level/block/Blocks/lambda$static$42 (Lnet/minecraft/world/level/block/state/BlockState;)I +MD: net/minecraft/world/level/block/Blocks/m_187434_ (Lnet/minecraft/world/level/block/state/BlockState;)I net/minecraft/world/level/block/Blocks/lambda$static$35 (Lnet/minecraft/world/level/block/state/BlockState;)I +MD: net/minecraft/world/level/block/Blocks/m_187436_ (Lnet/minecraft/world/level/block/state/BlockState;)I net/minecraft/world/level/block/Blocks/lambda$static$25 (Lnet/minecraft/world/level/block/state/BlockState;)I +MD: net/minecraft/world/level/block/Blocks/m_220866_ (Lnet/minecraft/world/level/block/state/BlockState;)I net/minecraft/world/level/block/Blocks/lambda$static$7 (Lnet/minecraft/world/level/block/state/BlockState;)I +MD: net/minecraft/world/level/block/Blocks/m_220868_ (Lnet/minecraft/world/level/block/state/BlockState;)I net/minecraft/world/level/block/Blocks/lambda$static$55 (Lnet/minecraft/world/level/block/state/BlockState;)I +MD: net/minecraft/world/level/block/Blocks/m_220870_ (Lnet/minecraft/world/level/block/state/BlockState;)I net/minecraft/world/level/block/Blocks/lambda$static$54 (Lnet/minecraft/world/level/block/state/BlockState;)I +MD: net/minecraft/world/level/block/Blocks/m_220872_ (Lnet/minecraft/world/level/block/state/BlockState;)I net/minecraft/world/level/block/Blocks/lambda$static$53 (Lnet/minecraft/world/level/block/state/BlockState;)I +MD: net/minecraft/world/level/block/Blocks/m_246720_ ()Lnet/minecraft/world/level/block/ButtonBlock; net/minecraft/world/level/block/Blocks/stoneButton ()Lnet/minecraft/world/level/block/ButtonBlock; +MD: net/minecraft/world/level/block/Blocks/m_257326_ (Lnet/minecraft/world/level/material/MapColor;Lnet/minecraft/world/level/material/MapColor;Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/material/MapColor; net/minecraft/world/level/block/Blocks/lambda$log$3 (Lnet/minecraft/world/level/material/MapColor;Lnet/minecraft/world/level/material/MapColor;Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/material/MapColor; +MD: net/minecraft/world/level/block/Blocks/m_278139_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/level/block/Blocks/lambda$shulkerBox$5 (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/level/block/Blocks/m_278156_ (Lnet/minecraft/world/level/block/state/properties/BlockSetType;[Lnet/minecraft/world/flag/FeatureFlag;)Lnet/minecraft/world/level/block/ButtonBlock; net/minecraft/world/level/block/Blocks/woodenButton (Lnet/minecraft/world/level/block/state/properties/BlockSetType;[Lnet/minecraft/world/flag/FeatureFlag;)Lnet/minecraft/world/level/block/ButtonBlock; +MD: net/minecraft/world/level/block/Blocks/m_278189_ (Lnet/minecraft/world/level/block/Block;[Lnet/minecraft/world/flag/FeatureFlag;)Lnet/minecraft/world/level/block/FlowerPotBlock; net/minecraft/world/level/block/Blocks/flowerPot (Lnet/minecraft/world/level/block/Block;[Lnet/minecraft/world/flag/FeatureFlag;)Lnet/minecraft/world/level/block/FlowerPotBlock; +MD: net/minecraft/world/level/block/Blocks/m_284094_ (Lnet/minecraft/world/item/DyeColor;Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/material/MapColor; net/minecraft/world/level/block/Blocks/lambda$bed$1 (Lnet/minecraft/world/item/DyeColor;Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/material/MapColor; +MD: net/minecraft/world/level/block/Blocks/m_284204_ (Lnet/minecraft/world/level/material/MapColor;Lnet/minecraft/world/level/material/MapColor;)Lnet/minecraft/world/level/block/RotatedPillarBlock; net/minecraft/world/level/block/Blocks/log (Lnet/minecraft/world/level/material/MapColor;Lnet/minecraft/world/level/material/MapColor;)Lnet/minecraft/world/level/block/RotatedPillarBlock; +MD: net/minecraft/world/level/block/Blocks/m_284306_ (Lnet/minecraft/world/level/material/MapColor;Lnet/minecraft/world/level/material/MapColor;Lnet/minecraft/world/level/block/SoundType;)Lnet/minecraft/world/level/block/RotatedPillarBlock; net/minecraft/world/level/block/Blocks/log (Lnet/minecraft/world/level/material/MapColor;Lnet/minecraft/world/level/material/MapColor;Lnet/minecraft/world/level/block/SoundType;)Lnet/minecraft/world/level/block/RotatedPillarBlock; +MD: net/minecraft/world/level/block/Blocks/m_284429_ (Lnet/minecraft/world/level/material/MapColor;)Lnet/minecraft/world/level/block/CandleBlock; net/minecraft/world/level/block/Blocks/candle (Lnet/minecraft/world/level/material/MapColor;)Lnet/minecraft/world/level/block/CandleBlock; +MD: net/minecraft/world/level/block/Blocks/m_284519_ (Lnet/minecraft/world/level/material/MapColor;)Lnet/minecraft/world/level/block/Block; net/minecraft/world/level/block/Blocks/netherStem (Lnet/minecraft/world/level/material/MapColor;)Lnet/minecraft/world/level/block/Block; +MD: net/minecraft/world/level/block/Blocks/m_50754_ (Lnet/minecraft/world/level/block/state/BlockState;)I net/minecraft/world/level/block/Blocks/lambda$static$8 (Lnet/minecraft/world/level/block/state/BlockState;)I +MD: net/minecraft/world/level/block/Blocks/m_50758_ ()V net/minecraft/world/level/block/Blocks/rebuildCache ()V +MD: net/minecraft/world/level/block/Blocks/m_50759_ (I)Ljava/util/function/ToIntFunction; net/minecraft/world/level/block/Blocks/litBlockEmission (I)Ljava/util/function/ToIntFunction; +MD: net/minecraft/world/level/block/Blocks/m_50761_ (ILnet/minecraft/world/level/block/state/BlockState;)I net/minecraft/world/level/block/Blocks/lambda$litBlockEmission$0 (ILnet/minecraft/world/level/block/state/BlockState;)I +MD: net/minecraft/world/level/block/Blocks/m_50764_ (Lnet/minecraft/world/item/DyeColor;)Lnet/minecraft/world/level/block/BedBlock; net/minecraft/world/level/block/Blocks/bed (Lnet/minecraft/world/item/DyeColor;)Lnet/minecraft/world/level/block/BedBlock; +MD: net/minecraft/world/level/block/Blocks/m_50766_ (Lnet/minecraft/world/item/DyeColor;Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)Lnet/minecraft/world/level/block/ShulkerBoxBlock; net/minecraft/world/level/block/Blocks/shulkerBox (Lnet/minecraft/world/item/DyeColor;Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)Lnet/minecraft/world/level/block/ShulkerBoxBlock; +MD: net/minecraft/world/level/block/Blocks/m_50774_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/level/block/Blocks/always (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/level/block/Blocks/m_50778_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/EntityType;)Ljava/lang/Boolean; net/minecraft/world/level/block/Blocks/never (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/EntityType;)Ljava/lang/Boolean; +MD: net/minecraft/world/level/block/Blocks/m_50795_ (Ljava/lang/String;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/block/Block; net/minecraft/world/level/block/Blocks/register (Ljava/lang/String;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/block/Block; +MD: net/minecraft/world/level/block/Blocks/m_50798_ (Z)Lnet/minecraft/world/level/block/piston/PistonBaseBlock; net/minecraft/world/level/block/Blocks/pistonBase (Z)Lnet/minecraft/world/level/block/piston/PistonBaseBlock; +MD: net/minecraft/world/level/block/Blocks/m_50801_ (Lnet/minecraft/world/item/DyeColor;)Lnet/minecraft/world/level/block/StainedGlassBlock; net/minecraft/world/level/block/Blocks/stainedGlass (Lnet/minecraft/world/item/DyeColor;)Lnet/minecraft/world/level/block/StainedGlassBlock; +MD: net/minecraft/world/level/block/Blocks/m_50803_ (Lnet/minecraft/world/level/block/state/BlockState;)I net/minecraft/world/level/block/Blocks/lambda$static$37 (Lnet/minecraft/world/level/block/state/BlockState;)I +MD: net/minecraft/world/level/block/Blocks/m_50805_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/level/block/Blocks/never (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/level/block/Blocks/m_50809_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/EntityType;)Ljava/lang/Boolean; net/minecraft/world/level/block/Blocks/always (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/EntityType;)Ljava/lang/Boolean; +MD: net/minecraft/world/level/block/Blocks/m_50821_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/EntityType;)Ljava/lang/Boolean; net/minecraft/world/level/block/Blocks/ocelotOrParrot (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/EntityType;)Ljava/lang/Boolean; +MD: net/minecraft/world/level/block/Blocks/m_50827_ (Lnet/minecraft/world/level/block/state/BlockState;)I net/minecraft/world/level/block/Blocks/lambda$static$34 (Lnet/minecraft/world/level/block/state/BlockState;)I +MD: net/minecraft/world/level/block/Blocks/m_50839_ (Lnet/minecraft/world/level/block/state/BlockState;)I net/minecraft/world/level/block/Blocks/lambda$static$33 (Lnet/minecraft/world/level/block/state/BlockState;)I +MD: net/minecraft/world/level/block/Blocks/m_50846_ (Lnet/minecraft/world/level/block/state/BlockState;)I net/minecraft/world/level/block/Blocks/lambda$static$32 (Lnet/minecraft/world/level/block/state/BlockState;)I +MD: net/minecraft/world/level/block/Blocks/m_50853_ (Lnet/minecraft/world/level/block/state/BlockState;)I net/minecraft/world/level/block/Blocks/lambda$static$30 (Lnet/minecraft/world/level/block/state/BlockState;)I +MD: net/minecraft/world/level/block/Blocks/m_50855_ (Lnet/minecraft/world/level/block/state/BlockState;)I net/minecraft/world/level/block/Blocks/lambda$static$31 (Lnet/minecraft/world/level/block/state/BlockState;)I +MD: net/minecraft/world/level/block/Blocks/m_50857_ (Lnet/minecraft/world/level/block/state/BlockState;)I net/minecraft/world/level/block/Blocks/lambda$static$26 (Lnet/minecraft/world/level/block/state/BlockState;)I +MD: net/minecraft/world/level/block/Blocks/m_50859_ (Lnet/minecraft/world/level/block/state/BlockState;)I net/minecraft/world/level/block/Blocks/lambda$static$27 (Lnet/minecraft/world/level/block/state/BlockState;)I +MD: net/minecraft/world/level/block/Blocks/m_50871_ (Lnet/minecraft/world/level/block/state/BlockState;)I net/minecraft/world/level/block/Blocks/lambda$static$20 (Lnet/minecraft/world/level/block/state/BlockState;)I +MD: net/minecraft/world/level/block/Blocks/m_50873_ (Lnet/minecraft/world/level/block/state/BlockState;)I net/minecraft/world/level/block/Blocks/lambda$static$19 (Lnet/minecraft/world/level/block/state/BlockState;)I +MD: net/minecraft/world/level/block/Blocks/m_50875_ (Lnet/minecraft/world/level/block/state/BlockState;)I net/minecraft/world/level/block/Blocks/lambda$static$18 (Lnet/minecraft/world/level/block/state/BlockState;)I +MD: net/minecraft/world/level/block/Blocks/m_50877_ (Lnet/minecraft/world/level/block/state/BlockState;)I net/minecraft/world/level/block/Blocks/lambda$static$17 (Lnet/minecraft/world/level/block/state/BlockState;)I +MD: net/minecraft/world/level/block/Blocks/m_50885_ (Lnet/minecraft/world/level/block/state/BlockState;)I net/minecraft/world/level/block/Blocks/lambda$static$11 (Lnet/minecraft/world/level/block/state/BlockState;)I +MD: net/minecraft/world/level/block/BonemealableBlock/m_214148_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V net/minecraft/world/level/block/BonemealableBlock/performBonemeal (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V +MD: net/minecraft/world/level/block/BonemealableBlock/m_214167_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/world/level/block/BonemealableBlock/isBonemealSuccess (Lnet/minecraft/world/level/Level;Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/world/level/block/BonemealableBlock/m_7370_ (Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Z)Z net/minecraft/world/level/block/BonemealableBlock/isValidBonemealTarget (Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Z)Z +MD: net/minecraft/world/level/block/BrewingStandBlock/ ()V net/minecraft/world/level/block/BrewingStandBlock/ ()V +MD: net/minecraft/world/level/block/BrewingStandBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V net/minecraft/world/level/block/BrewingStandBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V +MD: net/minecraft/world/level/block/BrewingStandBlock/m_142194_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/block/entity/BlockEntity; net/minecraft/world/level/block/BrewingStandBlock/newBlockEntity (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/block/entity/BlockEntity; +MD: net/minecraft/world/level/block/BrewingStandBlock/m_142354_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/entity/BlockEntityType;)Lnet/minecraft/world/level/block/entity/BlockEntityTicker; net/minecraft/world/level/block/BrewingStandBlock/getTicker (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/entity/BlockEntityType;)Lnet/minecraft/world/level/block/entity/BlockEntityTicker; +MD: net/minecraft/world/level/block/BrewingStandBlock/m_214162_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)V net/minecraft/world/level/block/BrewingStandBlock/animateTick (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)V +MD: net/minecraft/world/level/block/BrewingStandBlock/m_5940_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; net/minecraft/world/level/block/BrewingStandBlock/getShape (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; +MD: net/minecraft/world/level/block/BrewingStandBlock/m_6227_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;Lnet/minecraft/world/phys/BlockHitResult;)Lnet/minecraft/world/InteractionResult; net/minecraft/world/level/block/BrewingStandBlock/use (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;Lnet/minecraft/world/phys/BlockHitResult;)Lnet/minecraft/world/InteractionResult; +MD: net/minecraft/world/level/block/BrewingStandBlock/m_6402_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/item/ItemStack;)V net/minecraft/world/level/block/BrewingStandBlock/setPlacedBy (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/item/ItemStack;)V +MD: net/minecraft/world/level/block/BrewingStandBlock/m_6782_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;)I net/minecraft/world/level/block/BrewingStandBlock/getAnalogOutputSignal (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;)I +MD: net/minecraft/world/level/block/BrewingStandBlock/m_6810_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Z)V net/minecraft/world/level/block/BrewingStandBlock/onRemove (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Z)V +MD: net/minecraft/world/level/block/BrewingStandBlock/m_7278_ (Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/world/level/block/BrewingStandBlock/hasAnalogOutputSignal (Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/world/level/block/BrewingStandBlock/m_7357_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/pathfinder/PathComputationType;)Z net/minecraft/world/level/block/BrewingStandBlock/isPathfindable (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/pathfinder/PathComputationType;)Z +MD: net/minecraft/world/level/block/BrewingStandBlock/m_7514_ (Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/block/RenderShape; net/minecraft/world/level/block/BrewingStandBlock/getRenderShape (Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/block/RenderShape; +MD: net/minecraft/world/level/block/BrewingStandBlock/m_7926_ (Lnet/minecraft/world/level/block/state/StateDefinition$Builder;)V net/minecraft/world/level/block/BrewingStandBlock/createBlockStateDefinition (Lnet/minecraft/world/level/block/state/StateDefinition$Builder;)V +MD: net/minecraft/world/level/block/BrushableBlock/ ()V net/minecraft/world/level/block/BrushableBlock/ ()V +MD: net/minecraft/world/level/block/BrushableBlock/ (Lnet/minecraft/world/level/block/Block;Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;Lnet/minecraft/sounds/SoundEvent;Lnet/minecraft/sounds/SoundEvent;)V net/minecraft/world/level/block/BrushableBlock/ (Lnet/minecraft/world/level/block/Block;Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;Lnet/minecraft/sounds/SoundEvent;Lnet/minecraft/sounds/SoundEvent;)V +MD: net/minecraft/world/level/block/BrushableBlock/m_142194_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/block/entity/BlockEntity; net/minecraft/world/level/block/BrushableBlock/newBlockEntity (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/block/entity/BlockEntity; +MD: net/minecraft/world/level/block/BrushableBlock/m_142525_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/item/FallingBlockEntity;)V net/minecraft/world/level/block/BrushableBlock/onBrokenAfterFall (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/item/FallingBlockEntity;)V +MD: net/minecraft/world/level/block/BrushableBlock/m_213897_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)V net/minecraft/world/level/block/BrushableBlock/tick (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)V +MD: net/minecraft/world/level/block/BrushableBlock/m_214162_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)V net/minecraft/world/level/block/BrushableBlock/animateTick (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)V +MD: net/minecraft/world/level/block/BrushableBlock/m_276856_ ()Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/level/block/BrushableBlock/getBrushSound ()Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/level/block/BrushableBlock/m_277074_ ()Lnet/minecraft/world/level/block/Block; net/minecraft/world/level/block/BrushableBlock/getTurnsInto ()Lnet/minecraft/world/level/block/Block; +MD: net/minecraft/world/level/block/BrushableBlock/m_277154_ ()Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/level/block/BrushableBlock/getBrushCompletedSound ()Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/level/block/BrushableBlock/m_6807_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Z)V net/minecraft/world/level/block/BrushableBlock/onPlace (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Z)V +MD: net/minecraft/world/level/block/BrushableBlock/m_7417_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/BrushableBlock/updateShape (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/BrushableBlock/m_7514_ (Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/block/RenderShape; net/minecraft/world/level/block/BrushableBlock/getRenderShape (Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/block/RenderShape; +MD: net/minecraft/world/level/block/BrushableBlock/m_7926_ (Lnet/minecraft/world/level/block/state/StateDefinition$Builder;)V net/minecraft/world/level/block/BrushableBlock/createBlockStateDefinition (Lnet/minecraft/world/level/block/state/StateDefinition$Builder;)V +MD: net/minecraft/world/level/block/BubbleColumnBlock/ ()V net/minecraft/world/level/block/BubbleColumnBlock/ ()V +MD: net/minecraft/world/level/block/BubbleColumnBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V net/minecraft/world/level/block/BubbleColumnBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V +MD: net/minecraft/world/level/block/BubbleColumnBlock/m_142298_ ()Ljava/util/Optional; net/minecraft/world/level/block/BubbleColumnBlock/getPickupSound ()Ljava/util/Optional; +MD: net/minecraft/world/level/block/BubbleColumnBlock/m_142598_ (Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/item/ItemStack; net/minecraft/world/level/block/BubbleColumnBlock/pickupBlock (Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/level/block/BubbleColumnBlock/m_152702_ (Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/state/BlockState;)V net/minecraft/world/level/block/BubbleColumnBlock/updateColumn (Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/state/BlockState;)V +MD: net/minecraft/world/level/block/BubbleColumnBlock/m_152707_ (Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V net/minecraft/world/level/block/BubbleColumnBlock/updateColumn (Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V +MD: net/minecraft/world/level/block/BubbleColumnBlock/m_152715_ (Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/world/level/block/BubbleColumnBlock/canExistIn (Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/world/level/block/BubbleColumnBlock/m_152717_ (Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/BubbleColumnBlock/getColumnState (Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/BubbleColumnBlock/m_213897_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)V net/minecraft/world/level/block/BubbleColumnBlock/tick (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)V +MD: net/minecraft/world/level/block/BubbleColumnBlock/m_214162_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)V net/minecraft/world/level/block/BubbleColumnBlock/animateTick (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)V +MD: net/minecraft/world/level/block/BubbleColumnBlock/m_5888_ (Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/material/FluidState; net/minecraft/world/level/block/BubbleColumnBlock/getFluidState (Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/material/FluidState; +MD: net/minecraft/world/level/block/BubbleColumnBlock/m_5940_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; net/minecraft/world/level/block/BubbleColumnBlock/getShape (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; +MD: net/minecraft/world/level/block/BubbleColumnBlock/m_7417_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/BubbleColumnBlock/updateShape (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/BubbleColumnBlock/m_7514_ (Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/block/RenderShape; net/minecraft/world/level/block/BubbleColumnBlock/getRenderShape (Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/block/RenderShape; +MD: net/minecraft/world/level/block/BubbleColumnBlock/m_7892_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/Entity;)V net/minecraft/world/level/block/BubbleColumnBlock/entityInside (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/Entity;)V +MD: net/minecraft/world/level/block/BubbleColumnBlock/m_7898_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/level/block/BubbleColumnBlock/canSurvive (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/level/block/BubbleColumnBlock/m_7926_ (Lnet/minecraft/world/level/block/state/StateDefinition$Builder;)V net/minecraft/world/level/block/BubbleColumnBlock/createBlockStateDefinition (Lnet/minecraft/world/level/block/state/StateDefinition$Builder;)V +MD: net/minecraft/world/level/block/BucketPickup/m_142298_ ()Ljava/util/Optional; net/minecraft/world/level/block/BucketPickup/getPickupSound ()Ljava/util/Optional; +MD: net/minecraft/world/level/block/BucketPickup/m_142598_ (Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/item/ItemStack; net/minecraft/world/level/block/BucketPickup/pickupBlock (Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/level/block/BuddingAmethystBlock/ ()V net/minecraft/world/level/block/BuddingAmethystBlock/ ()V +MD: net/minecraft/world/level/block/BuddingAmethystBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V net/minecraft/world/level/block/BuddingAmethystBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V +MD: net/minecraft/world/level/block/BuddingAmethystBlock/m_152734_ (Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/world/level/block/BuddingAmethystBlock/canClusterGrowAtState (Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/world/level/block/BuddingAmethystBlock/m_213898_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)V net/minecraft/world/level/block/BuddingAmethystBlock/randomTick (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)V +MD: net/minecraft/world/level/block/BushBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V net/minecraft/world/level/block/BushBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V +MD: net/minecraft/world/level/block/BushBlock/m_6266_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/level/block/BushBlock/mayPlaceOn (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/level/block/BushBlock/m_7357_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/pathfinder/PathComputationType;)Z net/minecraft/world/level/block/BushBlock/isPathfindable (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/pathfinder/PathComputationType;)Z +MD: net/minecraft/world/level/block/BushBlock/m_7417_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/BushBlock/updateShape (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/BushBlock/m_7420_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/level/block/BushBlock/propagatesSkylightDown (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/level/block/BushBlock/m_7898_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/level/block/BushBlock/canSurvive (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/level/block/ButtonBlock/ ()V net/minecraft/world/level/block/ButtonBlock/ ()V +MD: net/minecraft/world/level/block/ButtonBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;Lnet/minecraft/world/level/block/state/properties/BlockSetType;IZ)V net/minecraft/world/level/block/ButtonBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;Lnet/minecraft/world/level/block/state/properties/BlockSetType;IZ)V +MD: net/minecraft/world/level/block/ButtonBlock/m_213897_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)V net/minecraft/world/level/block/ButtonBlock/tick (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)V +MD: net/minecraft/world/level/block/ButtonBlock/m_51067_ (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Z)V net/minecraft/world/level/block/ButtonBlock/playSound (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Z)V +MD: net/minecraft/world/level/block/ButtonBlock/m_51116_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;)V net/minecraft/world/level/block/ButtonBlock/press (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/world/level/block/ButtonBlock/m_51120_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;)V net/minecraft/world/level/block/ButtonBlock/checkPressed (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/world/level/block/ButtonBlock/m_51124_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;)V net/minecraft/world/level/block/ButtonBlock/updateNeighbours (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/world/level/block/ButtonBlock/m_5722_ (Z)Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/level/block/ButtonBlock/getSound (Z)Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/level/block/ButtonBlock/m_5940_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; net/minecraft/world/level/block/ButtonBlock/getShape (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; +MD: net/minecraft/world/level/block/ButtonBlock/m_6227_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;Lnet/minecraft/world/phys/BlockHitResult;)Lnet/minecraft/world/InteractionResult; net/minecraft/world/level/block/ButtonBlock/use (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;Lnet/minecraft/world/phys/BlockHitResult;)Lnet/minecraft/world/InteractionResult; +MD: net/minecraft/world/level/block/ButtonBlock/m_6376_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Direction;)I net/minecraft/world/level/block/ButtonBlock/getDirectSignal (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Direction;)I +MD: net/minecraft/world/level/block/ButtonBlock/m_6378_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Direction;)I net/minecraft/world/level/block/ButtonBlock/getSignal (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Direction;)I +MD: net/minecraft/world/level/block/ButtonBlock/m_6810_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Z)V net/minecraft/world/level/block/ButtonBlock/onRemove (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Z)V +MD: net/minecraft/world/level/block/ButtonBlock/m_7892_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/Entity;)V net/minecraft/world/level/block/ButtonBlock/entityInside (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/Entity;)V +MD: net/minecraft/world/level/block/ButtonBlock/m_7899_ (Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/world/level/block/ButtonBlock/isSignalSource (Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/world/level/block/ButtonBlock/m_7926_ (Lnet/minecraft/world/level/block/state/StateDefinition$Builder;)V net/minecraft/world/level/block/ButtonBlock/createBlockStateDefinition (Lnet/minecraft/world/level/block/state/StateDefinition$Builder;)V +MD: net/minecraft/world/level/block/ButtonBlock$1/ ()V net/minecraft/world/level/block/ButtonBlock$1/ ()V +MD: net/minecraft/world/level/block/CactusBlock/ ()V net/minecraft/world/level/block/CactusBlock/ ()V +MD: net/minecraft/world/level/block/CactusBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V net/minecraft/world/level/block/CactusBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V +MD: net/minecraft/world/level/block/CactusBlock/m_213897_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)V net/minecraft/world/level/block/CactusBlock/tick (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)V +MD: net/minecraft/world/level/block/CactusBlock/m_213898_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)V net/minecraft/world/level/block/CactusBlock/randomTick (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)V +MD: net/minecraft/world/level/block/CactusBlock/m_5939_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; net/minecraft/world/level/block/CactusBlock/getCollisionShape (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; +MD: net/minecraft/world/level/block/CactusBlock/m_5940_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; net/minecraft/world/level/block/CactusBlock/getShape (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; +MD: net/minecraft/world/level/block/CactusBlock/m_7357_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/pathfinder/PathComputationType;)Z net/minecraft/world/level/block/CactusBlock/isPathfindable (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/pathfinder/PathComputationType;)Z +MD: net/minecraft/world/level/block/CactusBlock/m_7417_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/CactusBlock/updateShape (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/CactusBlock/m_7892_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/Entity;)V net/minecraft/world/level/block/CactusBlock/entityInside (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/Entity;)V +MD: net/minecraft/world/level/block/CactusBlock/m_7898_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/level/block/CactusBlock/canSurvive (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/level/block/CactusBlock/m_7926_ (Lnet/minecraft/world/level/block/state/StateDefinition$Builder;)V net/minecraft/world/level/block/CactusBlock/createBlockStateDefinition (Lnet/minecraft/world/level/block/state/StateDefinition$Builder;)V +MD: net/minecraft/world/level/block/CakeBlock/ ()V net/minecraft/world/level/block/CakeBlock/ ()V +MD: net/minecraft/world/level/block/CakeBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V net/minecraft/world/level/block/CakeBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V +MD: net/minecraft/world/level/block/CakeBlock/m_152746_ (I)I net/minecraft/world/level/block/CakeBlock/getOutputSignal (I)I +MD: net/minecraft/world/level/block/CakeBlock/m_51185_ (Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/entity/player/Player;)Lnet/minecraft/world/InteractionResult; net/minecraft/world/level/block/CakeBlock/eat (Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/entity/player/Player;)Lnet/minecraft/world/InteractionResult; +MD: net/minecraft/world/level/block/CakeBlock/m_5940_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; net/minecraft/world/level/block/CakeBlock/getShape (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; +MD: net/minecraft/world/level/block/CakeBlock/m_6227_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;Lnet/minecraft/world/phys/BlockHitResult;)Lnet/minecraft/world/InteractionResult; net/minecraft/world/level/block/CakeBlock/use (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;Lnet/minecraft/world/phys/BlockHitResult;)Lnet/minecraft/world/InteractionResult; +MD: net/minecraft/world/level/block/CakeBlock/m_6782_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;)I net/minecraft/world/level/block/CakeBlock/getAnalogOutputSignal (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;)I +MD: net/minecraft/world/level/block/CakeBlock/m_7278_ (Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/world/level/block/CakeBlock/hasAnalogOutputSignal (Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/world/level/block/CakeBlock/m_7357_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/pathfinder/PathComputationType;)Z net/minecraft/world/level/block/CakeBlock/isPathfindable (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/pathfinder/PathComputationType;)Z +MD: net/minecraft/world/level/block/CakeBlock/m_7417_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/CakeBlock/updateShape (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/CakeBlock/m_7898_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/level/block/CakeBlock/canSurvive (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/level/block/CakeBlock/m_7926_ (Lnet/minecraft/world/level/block/state/StateDefinition$Builder;)V net/minecraft/world/level/block/CakeBlock/createBlockStateDefinition (Lnet/minecraft/world/level/block/state/StateDefinition$Builder;)V +MD: net/minecraft/world/level/block/CalibratedSculkSensorBlock/ ()V net/minecraft/world/level/block/CalibratedSculkSensorBlock/ ()V +MD: net/minecraft/world/level/block/CalibratedSculkSensorBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V net/minecraft/world/level/block/CalibratedSculkSensorBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V +MD: net/minecraft/world/level/block/CalibratedSculkSensorBlock/m_142194_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/block/entity/BlockEntity; net/minecraft/world/level/block/CalibratedSculkSensorBlock/newBlockEntity (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/block/entity/BlockEntity; +MD: net/minecraft/world/level/block/CalibratedSculkSensorBlock/m_142354_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/entity/BlockEntityType;)Lnet/minecraft/world/level/block/entity/BlockEntityTicker; net/minecraft/world/level/block/CalibratedSculkSensorBlock/getTicker (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/entity/BlockEntityType;)Lnet/minecraft/world/level/block/entity/BlockEntityTicker; +MD: net/minecraft/world/level/block/CalibratedSculkSensorBlock/m_278716_ ()I net/minecraft/world/level/block/CalibratedSculkSensorBlock/getActiveTicks ()I +MD: net/minecraft/world/level/block/CalibratedSculkSensorBlock/m_288182_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/entity/CalibratedSculkSensorBlockEntity;)V net/minecraft/world/level/block/CalibratedSculkSensorBlock/lambda$getTicker$0 (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/entity/CalibratedSculkSensorBlockEntity;)V +MD: net/minecraft/world/level/block/CalibratedSculkSensorBlock/m_5573_ (Lnet/minecraft/world/item/context/BlockPlaceContext;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/CalibratedSculkSensorBlock/getStateForPlacement (Lnet/minecraft/world/item/context/BlockPlaceContext;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/CalibratedSculkSensorBlock/m_6378_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Direction;)I net/minecraft/world/level/block/CalibratedSculkSensorBlock/getSignal (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Direction;)I +MD: net/minecraft/world/level/block/CalibratedSculkSensorBlock/m_6843_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/Rotation;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/CalibratedSculkSensorBlock/rotate (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/Rotation;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/CalibratedSculkSensorBlock/m_6943_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/Mirror;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/CalibratedSculkSensorBlock/mirror (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/Mirror;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/CalibratedSculkSensorBlock/m_7926_ (Lnet/minecraft/world/level/block/state/StateDefinition$Builder;)V net/minecraft/world/level/block/CalibratedSculkSensorBlock/createBlockStateDefinition (Lnet/minecraft/world/level/block/state/StateDefinition$Builder;)V +MD: net/minecraft/world/level/block/CampfireBlock/ ()V net/minecraft/world/level/block/CampfireBlock/ ()V +MD: net/minecraft/world/level/block/CampfireBlock/ (ZILnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V net/minecraft/world/level/block/CampfireBlock/ (ZILnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V +MD: net/minecraft/world/level/block/CampfireBlock/m_142194_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/block/entity/BlockEntity; net/minecraft/world/level/block/CampfireBlock/newBlockEntity (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/block/entity/BlockEntity; +MD: net/minecraft/world/level/block/CampfireBlock/m_142354_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/entity/BlockEntityType;)Lnet/minecraft/world/level/block/entity/BlockEntityTicker; net/minecraft/world/level/block/CampfireBlock/getTicker (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/entity/BlockEntityType;)Lnet/minecraft/world/level/block/entity/BlockEntityTicker; +MD: net/minecraft/world/level/block/CampfireBlock/m_152749_ (Lnet/minecraft/world/entity/Entity;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V net/minecraft/world/level/block/CampfireBlock/dowse (Lnet/minecraft/world/entity/Entity;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V +MD: net/minecraft/world/level/block/CampfireBlock/m_214162_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)V net/minecraft/world/level/block/CampfireBlock/animateTick (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)V +MD: net/minecraft/world/level/block/CampfireBlock/m_51248_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/level/block/CampfireBlock/isSmokeyPos (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/level/block/CampfireBlock/m_51251_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;ZZ)V net/minecraft/world/level/block/CampfireBlock/makeParticles (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;ZZ)V +MD: net/minecraft/world/level/block/CampfireBlock/m_51261_ (Lnet/minecraft/world/level/block/state/BlockBehaviour$BlockStateBase;)Z net/minecraft/world/level/block/CampfireBlock/lambda$canLight$0 (Lnet/minecraft/world/level/block/state/BlockBehaviour$BlockStateBase;)Z +MD: net/minecraft/world/level/block/CampfireBlock/m_51319_ (Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/world/level/block/CampfireBlock/isLitCampfire (Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/world/level/block/CampfireBlock/m_51321_ (Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/world/level/block/CampfireBlock/canLight (Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/world/level/block/CampfireBlock/m_51323_ (Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/world/level/block/CampfireBlock/isSmokeSource (Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/world/level/block/CampfireBlock/m_5573_ (Lnet/minecraft/world/item/context/BlockPlaceContext;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/CampfireBlock/getStateForPlacement (Lnet/minecraft/world/item/context/BlockPlaceContext;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/CampfireBlock/m_5581_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/phys/BlockHitResult;Lnet/minecraft/world/entity/projectile/Projectile;)V net/minecraft/world/level/block/CampfireBlock/onProjectileHit (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/phys/BlockHitResult;Lnet/minecraft/world/entity/projectile/Projectile;)V +MD: net/minecraft/world/level/block/CampfireBlock/m_5888_ (Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/material/FluidState; net/minecraft/world/level/block/CampfireBlock/getFluidState (Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/material/FluidState; +MD: net/minecraft/world/level/block/CampfireBlock/m_5940_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; net/minecraft/world/level/block/CampfireBlock/getShape (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; +MD: net/minecraft/world/level/block/CampfireBlock/m_6227_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;Lnet/minecraft/world/phys/BlockHitResult;)Lnet/minecraft/world/InteractionResult; net/minecraft/world/level/block/CampfireBlock/use (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;Lnet/minecraft/world/phys/BlockHitResult;)Lnet/minecraft/world/InteractionResult; +MD: net/minecraft/world/level/block/CampfireBlock/m_6810_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Z)V net/minecraft/world/level/block/CampfireBlock/onRemove (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Z)V +MD: net/minecraft/world/level/block/CampfireBlock/m_6843_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/Rotation;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/CampfireBlock/rotate (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/Rotation;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/CampfireBlock/m_6943_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/Mirror;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/CampfireBlock/mirror (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/Mirror;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/CampfireBlock/m_7357_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/pathfinder/PathComputationType;)Z net/minecraft/world/level/block/CampfireBlock/isPathfindable (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/pathfinder/PathComputationType;)Z +MD: net/minecraft/world/level/block/CampfireBlock/m_7361_ (Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/material/FluidState;)Z net/minecraft/world/level/block/CampfireBlock/placeLiquid (Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/material/FluidState;)Z +MD: net/minecraft/world/level/block/CampfireBlock/m_7417_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/CampfireBlock/updateShape (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/CampfireBlock/m_7514_ (Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/block/RenderShape; net/minecraft/world/level/block/CampfireBlock/getRenderShape (Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/block/RenderShape; +MD: net/minecraft/world/level/block/CampfireBlock/m_7892_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/Entity;)V net/minecraft/world/level/block/CampfireBlock/entityInside (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/Entity;)V +MD: net/minecraft/world/level/block/CampfireBlock/m_7926_ (Lnet/minecraft/world/level/block/state/StateDefinition$Builder;)V net/minecraft/world/level/block/CampfireBlock/createBlockStateDefinition (Lnet/minecraft/world/level/block/state/StateDefinition$Builder;)V +MD: net/minecraft/world/level/block/CandleBlock/ ()V net/minecraft/world/level/block/CandleBlock/ ()V +MD: net/minecraft/world/level/block/CandleBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V net/minecraft/world/level/block/CandleBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V +MD: net/minecraft/world/level/block/CandleBlock/m_142199_ (Lnet/minecraft/world/level/block/state/BlockState;)Ljava/lang/Iterable; net/minecraft/world/level/block/CandleBlock/getParticleOffsets (Lnet/minecraft/world/level/block/state/BlockState;)Ljava/lang/Iterable; +MD: net/minecraft/world/level/block/CandleBlock/m_142595_ (Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/world/level/block/CandleBlock/canBeLit (Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/world/level/block/CandleBlock/m_152809_ (Lnet/minecraft/world/level/block/state/BlockBehaviour$BlockStateBase;)Z net/minecraft/world/level/block/CandleBlock/lambda$canLight$2 (Lnet/minecraft/world/level/block/state/BlockBehaviour$BlockStateBase;)Z +MD: net/minecraft/world/level/block/CandleBlock/m_152845_ (Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/world/level/block/CandleBlock/canLight (Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/world/level/block/CandleBlock/m_152847_ (Lnet/minecraft/world/level/block/state/BlockState;)I net/minecraft/world/level/block/CandleBlock/lambda$static$0 (Lnet/minecraft/world/level/block/state/BlockState;)I +MD: net/minecraft/world/level/block/CandleBlock/m_152849_ ()Lit/unimi/dsi/fastutil/ints/Int2ObjectMap; net/minecraft/world/level/block/CandleBlock/lambda$static$1 ()Lit/unimi/dsi/fastutil/ints/Int2ObjectMap; +MD: net/minecraft/world/level/block/CandleBlock/m_5573_ (Lnet/minecraft/world/item/context/BlockPlaceContext;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/CandleBlock/getStateForPlacement (Lnet/minecraft/world/item/context/BlockPlaceContext;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/CandleBlock/m_5888_ (Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/material/FluidState; net/minecraft/world/level/block/CandleBlock/getFluidState (Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/material/FluidState; +MD: net/minecraft/world/level/block/CandleBlock/m_5940_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; net/minecraft/world/level/block/CandleBlock/getShape (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; +MD: net/minecraft/world/level/block/CandleBlock/m_6227_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;Lnet/minecraft/world/phys/BlockHitResult;)Lnet/minecraft/world/InteractionResult; net/minecraft/world/level/block/CandleBlock/use (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;Lnet/minecraft/world/phys/BlockHitResult;)Lnet/minecraft/world/InteractionResult; +MD: net/minecraft/world/level/block/CandleBlock/m_6864_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/item/context/BlockPlaceContext;)Z net/minecraft/world/level/block/CandleBlock/canBeReplaced (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/item/context/BlockPlaceContext;)Z +MD: net/minecraft/world/level/block/CandleBlock/m_7361_ (Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/material/FluidState;)Z net/minecraft/world/level/block/CandleBlock/placeLiquid (Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/material/FluidState;)Z +MD: net/minecraft/world/level/block/CandleBlock/m_7417_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/CandleBlock/updateShape (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/CandleBlock/m_7898_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/level/block/CandleBlock/canSurvive (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/level/block/CandleBlock/m_7926_ (Lnet/minecraft/world/level/block/state/StateDefinition$Builder;)V net/minecraft/world/level/block/CandleBlock/createBlockStateDefinition (Lnet/minecraft/world/level/block/state/StateDefinition$Builder;)V +MD: net/minecraft/world/level/block/CandleCakeBlock/ ()V net/minecraft/world/level/block/CandleCakeBlock/ ()V +MD: net/minecraft/world/level/block/CandleCakeBlock/ (Lnet/minecraft/world/level/block/Block;Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V net/minecraft/world/level/block/CandleCakeBlock/ (Lnet/minecraft/world/level/block/Block;Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V +MD: net/minecraft/world/level/block/CandleCakeBlock/m_142199_ (Lnet/minecraft/world/level/block/state/BlockState;)Ljava/lang/Iterable; net/minecraft/world/level/block/CandleCakeBlock/getParticleOffsets (Lnet/minecraft/world/level/block/state/BlockState;)Ljava/lang/Iterable; +MD: net/minecraft/world/level/block/CandleCakeBlock/m_152865_ (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/CandleCakeBlock/byCandle (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/CandleCakeBlock/m_152894_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/state/BlockBehaviour$BlockStateBase;)Z net/minecraft/world/level/block/CandleCakeBlock/lambda$canLight$0 (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/state/BlockBehaviour$BlockStateBase;)Z +MD: net/minecraft/world/level/block/CandleCakeBlock/m_152906_ (Lnet/minecraft/world/phys/BlockHitResult;)Z net/minecraft/world/level/block/CandleCakeBlock/candleHit (Lnet/minecraft/world/phys/BlockHitResult;)Z +MD: net/minecraft/world/level/block/CandleCakeBlock/m_152910_ (Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/world/level/block/CandleCakeBlock/canLight (Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/world/level/block/CandleCakeBlock/m_5940_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; net/minecraft/world/level/block/CandleCakeBlock/getShape (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; +MD: net/minecraft/world/level/block/CandleCakeBlock/m_6227_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;Lnet/minecraft/world/phys/BlockHitResult;)Lnet/minecraft/world/InteractionResult; net/minecraft/world/level/block/CandleCakeBlock/use (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;Lnet/minecraft/world/phys/BlockHitResult;)Lnet/minecraft/world/InteractionResult; +MD: net/minecraft/world/level/block/CandleCakeBlock/m_6782_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;)I net/minecraft/world/level/block/CandleCakeBlock/getAnalogOutputSignal (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;)I +MD: net/minecraft/world/level/block/CandleCakeBlock/m_7278_ (Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/world/level/block/CandleCakeBlock/hasAnalogOutputSignal (Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/world/level/block/CandleCakeBlock/m_7357_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/pathfinder/PathComputationType;)Z net/minecraft/world/level/block/CandleCakeBlock/isPathfindable (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/pathfinder/PathComputationType;)Z +MD: net/minecraft/world/level/block/CandleCakeBlock/m_7397_ (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/item/ItemStack; net/minecraft/world/level/block/CandleCakeBlock/getCloneItemStack (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/level/block/CandleCakeBlock/m_7417_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/CandleCakeBlock/updateShape (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/CandleCakeBlock/m_7898_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/level/block/CandleCakeBlock/canSurvive (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/level/block/CandleCakeBlock/m_7926_ (Lnet/minecraft/world/level/block/state/StateDefinition$Builder;)V net/minecraft/world/level/block/CandleCakeBlock/createBlockStateDefinition (Lnet/minecraft/world/level/block/state/StateDefinition$Builder;)V +MD: net/minecraft/world/level/block/CarpetBlock/ ()V net/minecraft/world/level/block/CarpetBlock/ ()V +MD: net/minecraft/world/level/block/CarpetBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V net/minecraft/world/level/block/CarpetBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V +MD: net/minecraft/world/level/block/CarpetBlock/m_5940_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; net/minecraft/world/level/block/CarpetBlock/getShape (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; +MD: net/minecraft/world/level/block/CarpetBlock/m_7417_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/CarpetBlock/updateShape (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/CarpetBlock/m_7898_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/level/block/CarpetBlock/canSurvive (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/level/block/CarrotBlock/ ()V net/minecraft/world/level/block/CarrotBlock/ ()V +MD: net/minecraft/world/level/block/CarrotBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V net/minecraft/world/level/block/CarrotBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V +MD: net/minecraft/world/level/block/CarrotBlock/m_5940_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; net/minecraft/world/level/block/CarrotBlock/getShape (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; +MD: net/minecraft/world/level/block/CarrotBlock/m_6404_ ()Lnet/minecraft/world/level/ItemLike; net/minecraft/world/level/block/CarrotBlock/getBaseSeedId ()Lnet/minecraft/world/level/ItemLike; +MD: net/minecraft/world/level/block/CartographyTableBlock/ ()V net/minecraft/world/level/block/CartographyTableBlock/ ()V +MD: net/minecraft/world/level/block/CartographyTableBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V net/minecraft/world/level/block/CartographyTableBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V +MD: net/minecraft/world/level/block/CartographyTableBlock/m_51350_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;ILnet/minecraft/world/entity/player/Inventory;Lnet/minecraft/world/entity/player/Player;)Lnet/minecraft/world/inventory/AbstractContainerMenu; net/minecraft/world/level/block/CartographyTableBlock/lambda$getMenuProvider$0 (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;ILnet/minecraft/world/entity/player/Inventory;Lnet/minecraft/world/entity/player/Player;)Lnet/minecraft/world/inventory/AbstractContainerMenu; +MD: net/minecraft/world/level/block/CartographyTableBlock/m_6227_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;Lnet/minecraft/world/phys/BlockHitResult;)Lnet/minecraft/world/InteractionResult; net/minecraft/world/level/block/CartographyTableBlock/use (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;Lnet/minecraft/world/phys/BlockHitResult;)Lnet/minecraft/world/InteractionResult; +MD: net/minecraft/world/level/block/CartographyTableBlock/m_7246_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/MenuProvider; net/minecraft/world/level/block/CartographyTableBlock/getMenuProvider (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/MenuProvider; +MD: net/minecraft/world/level/block/CarvedPumpkinBlock/ ()V net/minecraft/world/level/block/CarvedPumpkinBlock/ ()V +MD: net/minecraft/world/level/block/CarvedPumpkinBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V net/minecraft/world/level/block/CarvedPumpkinBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V +MD: net/minecraft/world/level/block/CarvedPumpkinBlock/m_245585_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/level/block/state/pattern/BlockPattern$BlockPatternMatch;)V net/minecraft/world/level/block/CarvedPumpkinBlock/clearPatternBlocks (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/level/block/state/pattern/BlockPattern$BlockPatternMatch;)V +MD: net/minecraft/world/level/block/CarvedPumpkinBlock/m_245952_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/level/block/state/pattern/BlockPattern$BlockPatternMatch;Lnet/minecraft/world/entity/Entity;Lnet/minecraft/core/BlockPos;)V net/minecraft/world/level/block/CarvedPumpkinBlock/spawnGolemInWorld (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/level/block/state/pattern/BlockPattern$BlockPatternMatch;Lnet/minecraft/world/entity/Entity;Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/world/level/block/CarvedPumpkinBlock/m_246758_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/level/block/state/pattern/BlockPattern$BlockPatternMatch;)V net/minecraft/world/level/block/CarvedPumpkinBlock/updatePatternBlocks (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/level/block/state/pattern/BlockPattern$BlockPatternMatch;)V +MD: net/minecraft/world/level/block/CarvedPumpkinBlock/m_284096_ (Lnet/minecraft/world/level/block/state/pattern/BlockInWorld;)Z net/minecraft/world/level/block/CarvedPumpkinBlock/lambda$getOrCreateIronGolemFull$2 (Lnet/minecraft/world/level/block/state/pattern/BlockInWorld;)Z +MD: net/minecraft/world/level/block/CarvedPumpkinBlock/m_284097_ (Lnet/minecraft/world/level/block/state/pattern/BlockInWorld;)Z net/minecraft/world/level/block/CarvedPumpkinBlock/lambda$getOrCreateIronGolemBase$1 (Lnet/minecraft/world/level/block/state/pattern/BlockInWorld;)Z +MD: net/minecraft/world/level/block/CarvedPumpkinBlock/m_51378_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;)V net/minecraft/world/level/block/CarvedPumpkinBlock/trySpawnGolem (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/world/level/block/CarvedPumpkinBlock/m_51381_ (Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/level/block/CarvedPumpkinBlock/canSpawnGolem (Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/level/block/CarvedPumpkinBlock/m_51392_ ()Lnet/minecraft/world/level/block/state/pattern/BlockPattern; net/minecraft/world/level/block/CarvedPumpkinBlock/getOrCreateSnowGolemBase ()Lnet/minecraft/world/level/block/state/pattern/BlockPattern; +MD: net/minecraft/world/level/block/CarvedPumpkinBlock/m_51393_ ()Lnet/minecraft/world/level/block/state/pattern/BlockPattern; net/minecraft/world/level/block/CarvedPumpkinBlock/getOrCreateSnowGolemFull ()Lnet/minecraft/world/level/block/state/pattern/BlockPattern; +MD: net/minecraft/world/level/block/CarvedPumpkinBlock/m_51394_ ()Lnet/minecraft/world/level/block/state/pattern/BlockPattern; net/minecraft/world/level/block/CarvedPumpkinBlock/getOrCreateIronGolemBase ()Lnet/minecraft/world/level/block/state/pattern/BlockPattern; +MD: net/minecraft/world/level/block/CarvedPumpkinBlock/m_51395_ (Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/world/level/block/CarvedPumpkinBlock/lambda$static$0 (Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/world/level/block/CarvedPumpkinBlock/m_51397_ ()Lnet/minecraft/world/level/block/state/pattern/BlockPattern; net/minecraft/world/level/block/CarvedPumpkinBlock/getOrCreateIronGolemFull ()Lnet/minecraft/world/level/block/state/pattern/BlockPattern; +MD: net/minecraft/world/level/block/CarvedPumpkinBlock/m_5573_ (Lnet/minecraft/world/item/context/BlockPlaceContext;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/CarvedPumpkinBlock/getStateForPlacement (Lnet/minecraft/world/item/context/BlockPlaceContext;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/CarvedPumpkinBlock/m_6807_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Z)V net/minecraft/world/level/block/CarvedPumpkinBlock/onPlace (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Z)V +MD: net/minecraft/world/level/block/CarvedPumpkinBlock/m_7926_ (Lnet/minecraft/world/level/block/state/StateDefinition$Builder;)V net/minecraft/world/level/block/CarvedPumpkinBlock/createBlockStateDefinition (Lnet/minecraft/world/level/block/state/StateDefinition$Builder;)V +MD: net/minecraft/world/level/block/CauldronBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V net/minecraft/world/level/block/CauldronBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V +MD: net/minecraft/world/level/block/CauldronBlock/m_141997_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/biome/Biome$Precipitation;)V net/minecraft/world/level/block/CauldronBlock/handlePrecipitation (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/biome/Biome$Precipitation;)V +MD: net/minecraft/world/level/block/CauldronBlock/m_142087_ (Lnet/minecraft/world/level/material/Fluid;)Z net/minecraft/world/level/block/CauldronBlock/canReceiveStalactiteDrip (Lnet/minecraft/world/level/material/Fluid;)Z +MD: net/minecraft/world/level/block/CauldronBlock/m_142310_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/material/Fluid;)V net/minecraft/world/level/block/CauldronBlock/receiveStalactiteDrip (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/material/Fluid;)V +MD: net/minecraft/world/level/block/CauldronBlock/m_142596_ (Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/world/level/block/CauldronBlock/isFull (Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/world/level/block/CauldronBlock/m_182450_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/level/biome/Biome$Precipitation;)Z net/minecraft/world/level/block/CauldronBlock/shouldHandlePrecipitation (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/level/biome/Biome$Precipitation;)Z +MD: net/minecraft/world/level/block/CaveVines/ ()V net/minecraft/world/level/block/CaveVines/ ()V +MD: net/minecraft/world/level/block/CaveVines/m_152951_ (Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/world/level/block/CaveVines/hasGlowBerries (Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/world/level/block/CaveVines/m_181214_ (ILnet/minecraft/world/level/block/state/BlockState;)I net/minecraft/world/level/block/CaveVines/lambda$emission$0 (ILnet/minecraft/world/level/block/state/BlockState;)I +MD: net/minecraft/world/level/block/CaveVines/m_181217_ (I)Ljava/util/function/ToIntFunction; net/minecraft/world/level/block/CaveVines/emission (I)Ljava/util/function/ToIntFunction; +MD: net/minecraft/world/level/block/CaveVines/m_269473_ (Lnet/minecraft/world/entity/Entity;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/InteractionResult; net/minecraft/world/level/block/CaveVines/use (Lnet/minecraft/world/entity/Entity;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/InteractionResult; +MD: net/minecraft/world/level/block/CaveVinesBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V net/minecraft/world/level/block/CaveVinesBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V +MD: net/minecraft/world/level/block/CaveVinesBlock/m_142643_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/CaveVinesBlock/updateBodyAfterConvertedFromHead (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/CaveVinesBlock/m_213627_ (Lnet/minecraft/util/RandomSource;)I net/minecraft/world/level/block/CaveVinesBlock/getBlocksToGrowWhenBonemealed (Lnet/minecraft/util/RandomSource;)I +MD: net/minecraft/world/level/block/CaveVinesBlock/m_214070_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/util/RandomSource;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/CaveVinesBlock/getGrowIntoState (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/util/RandomSource;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/CaveVinesBlock/m_214148_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V net/minecraft/world/level/block/CaveVinesBlock/performBonemeal (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V +MD: net/minecraft/world/level/block/CaveVinesBlock/m_214167_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/world/level/block/CaveVinesBlock/isBonemealSuccess (Lnet/minecraft/world/level/Level;Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/world/level/block/CaveVinesBlock/m_5971_ (Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/world/level/block/CaveVinesBlock/canGrowInto (Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/world/level/block/CaveVinesBlock/m_6227_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;Lnet/minecraft/world/phys/BlockHitResult;)Lnet/minecraft/world/InteractionResult; net/minecraft/world/level/block/CaveVinesBlock/use (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;Lnet/minecraft/world/phys/BlockHitResult;)Lnet/minecraft/world/InteractionResult; +MD: net/minecraft/world/level/block/CaveVinesBlock/m_7370_ (Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Z)Z net/minecraft/world/level/block/CaveVinesBlock/isValidBonemealTarget (Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Z)Z +MD: net/minecraft/world/level/block/CaveVinesBlock/m_7397_ (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/item/ItemStack; net/minecraft/world/level/block/CaveVinesBlock/getCloneItemStack (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/level/block/CaveVinesBlock/m_7777_ ()Lnet/minecraft/world/level/block/Block; net/minecraft/world/level/block/CaveVinesBlock/getBodyBlock ()Lnet/minecraft/world/level/block/Block; +MD: net/minecraft/world/level/block/CaveVinesBlock/m_7926_ (Lnet/minecraft/world/level/block/state/StateDefinition$Builder;)V net/minecraft/world/level/block/CaveVinesBlock/createBlockStateDefinition (Lnet/minecraft/world/level/block/state/StateDefinition$Builder;)V +MD: net/minecraft/world/level/block/CaveVinesPlantBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V net/minecraft/world/level/block/CaveVinesPlantBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V +MD: net/minecraft/world/level/block/CaveVinesPlantBlock/m_142644_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/CaveVinesPlantBlock/updateHeadAfterConvertedFromBody (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/CaveVinesPlantBlock/m_214148_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V net/minecraft/world/level/block/CaveVinesPlantBlock/performBonemeal (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V +MD: net/minecraft/world/level/block/CaveVinesPlantBlock/m_214167_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/world/level/block/CaveVinesPlantBlock/isBonemealSuccess (Lnet/minecraft/world/level/Level;Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/world/level/block/CaveVinesPlantBlock/m_6227_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;Lnet/minecraft/world/phys/BlockHitResult;)Lnet/minecraft/world/InteractionResult; net/minecraft/world/level/block/CaveVinesPlantBlock/use (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;Lnet/minecraft/world/phys/BlockHitResult;)Lnet/minecraft/world/InteractionResult; +MD: net/minecraft/world/level/block/CaveVinesPlantBlock/m_7272_ ()Lnet/minecraft/world/level/block/GrowingPlantHeadBlock; net/minecraft/world/level/block/CaveVinesPlantBlock/getHeadBlock ()Lnet/minecraft/world/level/block/GrowingPlantHeadBlock; +MD: net/minecraft/world/level/block/CaveVinesPlantBlock/m_7370_ (Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Z)Z net/minecraft/world/level/block/CaveVinesPlantBlock/isValidBonemealTarget (Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Z)Z +MD: net/minecraft/world/level/block/CaveVinesPlantBlock/m_7397_ (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/item/ItemStack; net/minecraft/world/level/block/CaveVinesPlantBlock/getCloneItemStack (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/level/block/CaveVinesPlantBlock/m_7926_ (Lnet/minecraft/world/level/block/state/StateDefinition$Builder;)V net/minecraft/world/level/block/CaveVinesPlantBlock/createBlockStateDefinition (Lnet/minecraft/world/level/block/state/StateDefinition$Builder;)V +MD: net/minecraft/world/level/block/CeilingHangingSignBlock/ ()V net/minecraft/world/level/block/CeilingHangingSignBlock/ ()V +MD: net/minecraft/world/level/block/CeilingHangingSignBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;Lnet/minecraft/world/level/block/state/properties/WoodType;)V net/minecraft/world/level/block/CeilingHangingSignBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;Lnet/minecraft/world/level/block/state/properties/WoodType;)V +MD: net/minecraft/world/level/block/CeilingHangingSignBlock/m_142194_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/block/entity/BlockEntity; net/minecraft/world/level/block/CeilingHangingSignBlock/newBlockEntity (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/block/entity/BlockEntity; +MD: net/minecraft/world/level/block/CeilingHangingSignBlock/m_142354_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/entity/BlockEntityType;)Lnet/minecraft/world/level/block/entity/BlockEntityTicker; net/minecraft/world/level/block/CeilingHangingSignBlock/getTicker (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/entity/BlockEntityType;)Lnet/minecraft/world/level/block/entity/BlockEntityTicker; +MD: net/minecraft/world/level/block/CeilingHangingSignBlock/m_276903_ (Lnet/minecraft/world/level/block/state/BlockState;)F net/minecraft/world/level/block/CeilingHangingSignBlock/getYRotationDegrees (Lnet/minecraft/world/level/block/state/BlockState;)F +MD: net/minecraft/world/level/block/CeilingHangingSignBlock/m_278197_ (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/phys/BlockHitResult;Lnet/minecraft/world/level/block/entity/SignBlockEntity;Lnet/minecraft/world/item/ItemStack;)Z net/minecraft/world/level/block/CeilingHangingSignBlock/shouldTryToChainAnotherHangingSign (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/phys/BlockHitResult;Lnet/minecraft/world/level/block/entity/SignBlockEntity;Lnet/minecraft/world/item/ItemStack;)Z +MD: net/minecraft/world/level/block/CeilingHangingSignBlock/m_5573_ (Lnet/minecraft/world/item/context/BlockPlaceContext;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/CeilingHangingSignBlock/getStateForPlacement (Lnet/minecraft/world/item/context/BlockPlaceContext;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/CeilingHangingSignBlock/m_5940_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; net/minecraft/world/level/block/CeilingHangingSignBlock/getShape (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; +MD: net/minecraft/world/level/block/CeilingHangingSignBlock/m_6227_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;Lnet/minecraft/world/phys/BlockHitResult;)Lnet/minecraft/world/InteractionResult; net/minecraft/world/level/block/CeilingHangingSignBlock/use (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;Lnet/minecraft/world/phys/BlockHitResult;)Lnet/minecraft/world/InteractionResult; +MD: net/minecraft/world/level/block/CeilingHangingSignBlock/m_6843_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/Rotation;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/CeilingHangingSignBlock/rotate (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/Rotation;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/CeilingHangingSignBlock/m_6943_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/Mirror;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/CeilingHangingSignBlock/mirror (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/Mirror;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/CeilingHangingSignBlock/m_7417_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/CeilingHangingSignBlock/updateShape (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/CeilingHangingSignBlock/m_7898_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/level/block/CeilingHangingSignBlock/canSurvive (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/level/block/CeilingHangingSignBlock/m_7926_ (Lnet/minecraft/world/level/block/state/StateDefinition$Builder;)V net/minecraft/world/level/block/CeilingHangingSignBlock/createBlockStateDefinition (Lnet/minecraft/world/level/block/state/StateDefinition$Builder;)V +MD: net/minecraft/world/level/block/CeilingHangingSignBlock/m_7947_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/phys/shapes/VoxelShape; net/minecraft/world/level/block/CeilingHangingSignBlock/getBlockSupportShape (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/phys/shapes/VoxelShape; +MD: net/minecraft/world/level/block/ChainBlock/ ()V net/minecraft/world/level/block/ChainBlock/ ()V +MD: net/minecraft/world/level/block/ChainBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V net/minecraft/world/level/block/ChainBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V +MD: net/minecraft/world/level/block/ChainBlock/m_5573_ (Lnet/minecraft/world/item/context/BlockPlaceContext;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/ChainBlock/getStateForPlacement (Lnet/minecraft/world/item/context/BlockPlaceContext;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/ChainBlock/m_5888_ (Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/material/FluidState; net/minecraft/world/level/block/ChainBlock/getFluidState (Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/material/FluidState; +MD: net/minecraft/world/level/block/ChainBlock/m_5940_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; net/minecraft/world/level/block/ChainBlock/getShape (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; +MD: net/minecraft/world/level/block/ChainBlock/m_7357_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/pathfinder/PathComputationType;)Z net/minecraft/world/level/block/ChainBlock/isPathfindable (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/pathfinder/PathComputationType;)Z +MD: net/minecraft/world/level/block/ChainBlock/m_7417_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/ChainBlock/updateShape (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/ChainBlock/m_7926_ (Lnet/minecraft/world/level/block/state/StateDefinition$Builder;)V net/minecraft/world/level/block/ChainBlock/createBlockStateDefinition (Lnet/minecraft/world/level/block/state/StateDefinition$Builder;)V +MD: net/minecraft/world/level/block/ChainBlock$1/ ()V net/minecraft/world/level/block/ChainBlock$1/ ()V +MD: net/minecraft/world/level/block/ChangeOverTimeBlock/m_142123_ (Lnet/minecraft/world/level/block/state/BlockState;)Ljava/util/Optional; net/minecraft/world/level/block/ChangeOverTimeBlock/getNext (Lnet/minecraft/world/level/block/state/BlockState;)Ljava/util/Optional; +MD: net/minecraft/world/level/block/ChangeOverTimeBlock/m_142297_ ()Ljava/lang/Enum; net/minecraft/world/level/block/ChangeOverTimeBlock/getAge ()Ljava/lang/Enum; +MD: net/minecraft/world/level/block/ChangeOverTimeBlock/m_142377_ ()F net/minecraft/world/level/block/ChangeOverTimeBlock/getChanceModifier ()F +MD: net/minecraft/world/level/block/ChangeOverTimeBlock/m_153036_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V net/minecraft/world/level/block/ChangeOverTimeBlock/lambda$applyChangeOverTime$0 (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V +MD: net/minecraft/world/level/block/ChangeOverTimeBlock/m_220947_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)V net/minecraft/world/level/block/ChangeOverTimeBlock/onRandomTick (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)V +MD: net/minecraft/world/level/block/ChangeOverTimeBlock/m_220952_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)V net/minecraft/world/level/block/ChangeOverTimeBlock/applyChangeOverTime (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)V +MD: net/minecraft/world/level/block/CherryLeavesBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V net/minecraft/world/level/block/CherryLeavesBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V +MD: net/minecraft/world/level/block/CherryLeavesBlock/m_214162_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)V net/minecraft/world/level/block/CherryLeavesBlock/animateTick (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)V +MD: net/minecraft/world/level/block/ChestBlock/ ()V net/minecraft/world/level/block/ChestBlock/ ()V +MD: net/minecraft/world/level/block/ChestBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;Ljava/util/function/Supplier;)V net/minecraft/world/level/block/ChestBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;Ljava/util/function/Supplier;)V +MD: net/minecraft/world/level/block/ChestBlock/m_142194_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/block/entity/BlockEntity; net/minecraft/world/level/block/ChestBlock/newBlockEntity (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/block/entity/BlockEntity; +MD: net/minecraft/world/level/block/ChestBlock/m_142354_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/entity/BlockEntityType;)Lnet/minecraft/world/level/block/entity/BlockEntityTicker; net/minecraft/world/level/block/ChestBlock/getTicker (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/entity/BlockEntityType;)Lnet/minecraft/world/level/block/entity/BlockEntityTicker; +MD: net/minecraft/world/level/block/ChestBlock/m_153066_ ()Lnet/minecraft/world/level/block/entity/BlockEntityType; net/minecraft/world/level/block/ChestBlock/blockEntityType ()Lnet/minecraft/world/level/block/entity/BlockEntityType; +MD: net/minecraft/world/level/block/ChestBlock/m_213897_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)V net/minecraft/world/level/block/ChestBlock/tick (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)V +MD: net/minecraft/world/level/block/ChestBlock/m_51494_ (Lnet/minecraft/world/item/context/BlockPlaceContext;Lnet/minecraft/core/Direction;)Lnet/minecraft/core/Direction; net/minecraft/world/level/block/ChestBlock/candidatePartnerFacing (Lnet/minecraft/world/item/context/BlockPlaceContext;Lnet/minecraft/core/Direction;)Lnet/minecraft/core/Direction; +MD: net/minecraft/world/level/block/ChestBlock/m_51499_ (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/level/block/ChestBlock/isBlockedChestByBlock (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/level/block/ChestBlock/m_51508_ (Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/level/block/ChestBlock/isChestBlockedAt (Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/level/block/ChestBlock/m_51511_ (Lnet/minecraft/world/level/block/ChestBlock;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Z)Lnet/minecraft/world/Container; net/minecraft/world/level/block/ChestBlock/getContainer (Lnet/minecraft/world/level/block/ChestBlock;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Z)Lnet/minecraft/world/Container; +MD: net/minecraft/world/level/block/ChestBlock/m_51517_ (Lnet/minecraft/world/level/block/entity/LidBlockEntity;)Lnet/minecraft/world/level/block/DoubleBlockCombiner$Combiner; net/minecraft/world/level/block/ChestBlock/opennessCombiner (Lnet/minecraft/world/level/block/entity/LidBlockEntity;)Lnet/minecraft/world/level/block/DoubleBlockCombiner$Combiner; +MD: net/minecraft/world/level/block/ChestBlock/m_51563_ (Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/level/block/ChestBlock/isCatSittingOnChest (Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/level/block/ChestBlock/m_51577_ (Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/level/block/ChestBlock/lambda$combine$0 (Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/level/block/ChestBlock/m_51582_ (Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/block/DoubleBlockCombiner$BlockType; net/minecraft/world/level/block/ChestBlock/getBlockType (Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/block/DoubleBlockCombiner$BlockType; +MD: net/minecraft/world/level/block/ChestBlock/m_51584_ (Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/core/Direction; net/minecraft/world/level/block/ChestBlock/getConnectedDirection (Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/core/Direction; +MD: net/minecraft/world/level/block/ChestBlock/m_5573_ (Lnet/minecraft/world/item/context/BlockPlaceContext;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/ChestBlock/getStateForPlacement (Lnet/minecraft/world/item/context/BlockPlaceContext;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/ChestBlock/m_5641_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Z)Lnet/minecraft/world/level/block/DoubleBlockCombiner$NeighborCombineResult; net/minecraft/world/level/block/ChestBlock/combine (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Z)Lnet/minecraft/world/level/block/DoubleBlockCombiner$NeighborCombineResult; +MD: net/minecraft/world/level/block/ChestBlock/m_5888_ (Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/material/FluidState; net/minecraft/world/level/block/ChestBlock/getFluidState (Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/material/FluidState; +MD: net/minecraft/world/level/block/ChestBlock/m_5940_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; net/minecraft/world/level/block/ChestBlock/getShape (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; +MD: net/minecraft/world/level/block/ChestBlock/m_6227_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;Lnet/minecraft/world/phys/BlockHitResult;)Lnet/minecraft/world/InteractionResult; net/minecraft/world/level/block/ChestBlock/use (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;Lnet/minecraft/world/phys/BlockHitResult;)Lnet/minecraft/world/InteractionResult; +MD: net/minecraft/world/level/block/ChestBlock/m_6402_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/item/ItemStack;)V net/minecraft/world/level/block/ChestBlock/setPlacedBy (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/item/ItemStack;)V +MD: net/minecraft/world/level/block/ChestBlock/m_6782_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;)I net/minecraft/world/level/block/ChestBlock/getAnalogOutputSignal (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;)I +MD: net/minecraft/world/level/block/ChestBlock/m_6810_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Z)V net/minecraft/world/level/block/ChestBlock/onRemove (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Z)V +MD: net/minecraft/world/level/block/ChestBlock/m_6843_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/Rotation;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/ChestBlock/rotate (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/Rotation;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/ChestBlock/m_6943_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/Mirror;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/ChestBlock/mirror (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/Mirror;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/ChestBlock/m_7246_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/MenuProvider; net/minecraft/world/level/block/ChestBlock/getMenuProvider (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/MenuProvider; +MD: net/minecraft/world/level/block/ChestBlock/m_7278_ (Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/world/level/block/ChestBlock/hasAnalogOutputSignal (Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/world/level/block/ChestBlock/m_7357_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/pathfinder/PathComputationType;)Z net/minecraft/world/level/block/ChestBlock/isPathfindable (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/pathfinder/PathComputationType;)Z +MD: net/minecraft/world/level/block/ChestBlock/m_7417_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/ChestBlock/updateShape (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/ChestBlock/m_7514_ (Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/block/RenderShape; net/minecraft/world/level/block/ChestBlock/getRenderShape (Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/block/RenderShape; +MD: net/minecraft/world/level/block/ChestBlock/m_7699_ ()Lnet/minecraft/stats/Stat; net/minecraft/world/level/block/ChestBlock/getOpenChestStat ()Lnet/minecraft/stats/Stat; +MD: net/minecraft/world/level/block/ChestBlock/m_7926_ (Lnet/minecraft/world/level/block/state/StateDefinition$Builder;)V net/minecraft/world/level/block/ChestBlock/createBlockStateDefinition (Lnet/minecraft/world/level/block/state/StateDefinition$Builder;)V +MD: net/minecraft/world/level/block/ChestBlock$1/ ()V net/minecraft/world/level/block/ChestBlock$1/ ()V +MD: net/minecraft/world/level/block/ChestBlock$1/m_6502_ ()Ljava/util/Optional; net/minecraft/world/level/block/ChestBlock$1/acceptNone ()Ljava/util/Optional; +MD: net/minecraft/world/level/block/ChestBlock$1/m_6502_ ()Ljava/lang/Object; net/minecraft/world/level/block/ChestBlock$1/acceptNone ()Ljava/lang/Object; +MD: net/minecraft/world/level/block/ChestBlock$1/m_6959_ (Lnet/minecraft/world/level/block/entity/ChestBlockEntity;Lnet/minecraft/world/level/block/entity/ChestBlockEntity;)Ljava/util/Optional; net/minecraft/world/level/block/ChestBlock$1/acceptDouble (Lnet/minecraft/world/level/block/entity/ChestBlockEntity;Lnet/minecraft/world/level/block/entity/ChestBlockEntity;)Ljava/util/Optional; +MD: net/minecraft/world/level/block/ChestBlock$1/m_6959_ (Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object; net/minecraft/world/level/block/ChestBlock$1/acceptDouble (Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object; +MD: net/minecraft/world/level/block/ChestBlock$1/m_7693_ (Ljava/lang/Object;)Ljava/lang/Object; net/minecraft/world/level/block/ChestBlock$1/acceptSingle (Ljava/lang/Object;)Ljava/lang/Object; +MD: net/minecraft/world/level/block/ChestBlock$1/m_7693_ (Lnet/minecraft/world/level/block/entity/ChestBlockEntity;)Ljava/util/Optional; net/minecraft/world/level/block/ChestBlock$1/acceptSingle (Lnet/minecraft/world/level/block/entity/ChestBlockEntity;)Ljava/util/Optional; +MD: net/minecraft/world/level/block/ChestBlock$2/ ()V net/minecraft/world/level/block/ChestBlock$2/ ()V +MD: net/minecraft/world/level/block/ChestBlock$2/m_6502_ ()Ljava/util/Optional; net/minecraft/world/level/block/ChestBlock$2/acceptNone ()Ljava/util/Optional; +MD: net/minecraft/world/level/block/ChestBlock$2/m_6502_ ()Ljava/lang/Object; net/minecraft/world/level/block/ChestBlock$2/acceptNone ()Ljava/lang/Object; +MD: net/minecraft/world/level/block/ChestBlock$2/m_6959_ (Lnet/minecraft/world/level/block/entity/ChestBlockEntity;Lnet/minecraft/world/level/block/entity/ChestBlockEntity;)Ljava/util/Optional; net/minecraft/world/level/block/ChestBlock$2/acceptDouble (Lnet/minecraft/world/level/block/entity/ChestBlockEntity;Lnet/minecraft/world/level/block/entity/ChestBlockEntity;)Ljava/util/Optional; +MD: net/minecraft/world/level/block/ChestBlock$2/m_6959_ (Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object; net/minecraft/world/level/block/ChestBlock$2/acceptDouble (Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object; +MD: net/minecraft/world/level/block/ChestBlock$2/m_7693_ (Ljava/lang/Object;)Ljava/lang/Object; net/minecraft/world/level/block/ChestBlock$2/acceptSingle (Ljava/lang/Object;)Ljava/lang/Object; +MD: net/minecraft/world/level/block/ChestBlock$2/m_7693_ (Lnet/minecraft/world/level/block/entity/ChestBlockEntity;)Ljava/util/Optional; net/minecraft/world/level/block/ChestBlock$2/acceptSingle (Lnet/minecraft/world/level/block/entity/ChestBlockEntity;)Ljava/util/Optional; +MD: net/minecraft/world/level/block/ChestBlock$2$1/ (Lnet/minecraft/world/level/block/ChestBlock$2;Lnet/minecraft/world/level/block/entity/ChestBlockEntity;Lnet/minecraft/world/level/block/entity/ChestBlockEntity;Lnet/minecraft/world/Container;)V net/minecraft/world/level/block/ChestBlock$2$1/ (Lnet/minecraft/world/level/block/ChestBlock$2;Lnet/minecraft/world/level/block/entity/ChestBlockEntity;Lnet/minecraft/world/level/block/entity/ChestBlockEntity;Lnet/minecraft/world/Container;)V +MD: net/minecraft/world/level/block/ChestBlock$2$1/m_5446_ ()Lnet/minecraft/network/chat/Component; net/minecraft/world/level/block/ChestBlock$2$1/getDisplayName ()Lnet/minecraft/network/chat/Component; +MD: net/minecraft/world/level/block/ChestBlock$2$1/m_7208_ (ILnet/minecraft/world/entity/player/Inventory;Lnet/minecraft/world/entity/player/Player;)Lnet/minecraft/world/inventory/AbstractContainerMenu; net/minecraft/world/level/block/ChestBlock$2$1/createMenu (ILnet/minecraft/world/entity/player/Inventory;Lnet/minecraft/world/entity/player/Player;)Lnet/minecraft/world/inventory/AbstractContainerMenu; +MD: net/minecraft/world/level/block/ChestBlock$3/ (Lnet/minecraft/world/level/block/entity/LidBlockEntity;)V net/minecraft/world/level/block/ChestBlock$3/ (Lnet/minecraft/world/level/block/entity/LidBlockEntity;)V +MD: net/minecraft/world/level/block/ChestBlock$3/m_51635_ (Lnet/minecraft/world/level/block/entity/ChestBlockEntity;Lnet/minecraft/world/level/block/entity/ChestBlockEntity;F)F net/minecraft/world/level/block/ChestBlock$3/lambda$acceptDouble$0 (Lnet/minecraft/world/level/block/entity/ChestBlockEntity;Lnet/minecraft/world/level/block/entity/ChestBlockEntity;F)F +MD: net/minecraft/world/level/block/ChestBlock$3/m_6502_ ()Lit/unimi/dsi/fastutil/floats/Float2FloatFunction; net/minecraft/world/level/block/ChestBlock$3/acceptNone ()Lit/unimi/dsi/fastutil/floats/Float2FloatFunction; +MD: net/minecraft/world/level/block/ChestBlock$3/m_6502_ ()Ljava/lang/Object; net/minecraft/world/level/block/ChestBlock$3/acceptNone ()Ljava/lang/Object; +MD: net/minecraft/world/level/block/ChestBlock$3/m_6959_ (Lnet/minecraft/world/level/block/entity/ChestBlockEntity;Lnet/minecraft/world/level/block/entity/ChestBlockEntity;)Lit/unimi/dsi/fastutil/floats/Float2FloatFunction; net/minecraft/world/level/block/ChestBlock$3/acceptDouble (Lnet/minecraft/world/level/block/entity/ChestBlockEntity;Lnet/minecraft/world/level/block/entity/ChestBlockEntity;)Lit/unimi/dsi/fastutil/floats/Float2FloatFunction; +MD: net/minecraft/world/level/block/ChestBlock$3/m_6959_ (Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object; net/minecraft/world/level/block/ChestBlock$3/acceptDouble (Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object; +MD: net/minecraft/world/level/block/ChestBlock$3/m_7693_ (Ljava/lang/Object;)Ljava/lang/Object; net/minecraft/world/level/block/ChestBlock$3/acceptSingle (Ljava/lang/Object;)Ljava/lang/Object; +MD: net/minecraft/world/level/block/ChestBlock$3/m_7693_ (Lnet/minecraft/world/level/block/entity/ChestBlockEntity;)Lit/unimi/dsi/fastutil/floats/Float2FloatFunction; net/minecraft/world/level/block/ChestBlock$3/acceptSingle (Lnet/minecraft/world/level/block/entity/ChestBlockEntity;)Lit/unimi/dsi/fastutil/floats/Float2FloatFunction; +MD: net/minecraft/world/level/block/ChestBlock$4/ ()V net/minecraft/world/level/block/ChestBlock$4/ ()V +MD: net/minecraft/world/level/block/ChiseledBookShelfBlock/ ()V net/minecraft/world/level/block/ChiseledBookShelfBlock/ ()V +MD: net/minecraft/world/level/block/ChiseledBookShelfBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V net/minecraft/world/level/block/ChiseledBookShelfBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V +MD: net/minecraft/world/level/block/ChiseledBookShelfBlock/m_142194_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/block/entity/BlockEntity; net/minecraft/world/level/block/ChiseledBookShelfBlock/newBlockEntity (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/block/entity/BlockEntity; +MD: net/minecraft/world/level/block/ChiseledBookShelfBlock/m_260793_ (Lnet/minecraft/world/level/block/state/StateDefinition$Builder;Lnet/minecraft/world/level/block/state/properties/Property;)V net/minecraft/world/level/block/ChiseledBookShelfBlock/lambda$createBlockStateDefinition$0 (Lnet/minecraft/world/level/block/state/StateDefinition$Builder;Lnet/minecraft/world/level/block/state/properties/Property;)V +MD: net/minecraft/world/level/block/ChiseledBookShelfBlock/m_260871_ (Lnet/minecraft/world/phys/BlockHitResult;Lnet/minecraft/core/Direction;)Ljava/util/Optional; net/minecraft/world/level/block/ChiseledBookShelfBlock/getRelativeHitCoordinatesForBlockFace (Lnet/minecraft/world/phys/BlockHitResult;Lnet/minecraft/core/Direction;)Ljava/util/Optional; +MD: net/minecraft/world/level/block/ChiseledBookShelfBlock/m_261181_ (F)I net/minecraft/world/level/block/ChiseledBookShelfBlock/getSection (F)I +MD: net/minecraft/world/level/block/ChiseledBookShelfBlock/m_261279_ (Lnet/minecraft/world/phys/Vec2;)I net/minecraft/world/level/block/ChiseledBookShelfBlock/getHitSlot (Lnet/minecraft/world/phys/Vec2;)I +MD: net/minecraft/world/level/block/ChiseledBookShelfBlock/m_262380_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/level/block/entity/ChiseledBookShelfBlockEntity;I)V net/minecraft/world/level/block/ChiseledBookShelfBlock/removeBook (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/level/block/entity/ChiseledBookShelfBlockEntity;I)V +MD: net/minecraft/world/level/block/ChiseledBookShelfBlock/m_262410_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/level/block/entity/ChiseledBookShelfBlockEntity;Lnet/minecraft/world/item/ItemStack;I)V net/minecraft/world/level/block/ChiseledBookShelfBlock/addBook (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/level/block/entity/ChiseledBookShelfBlockEntity;Lnet/minecraft/world/item/ItemStack;I)V +MD: net/minecraft/world/level/block/ChiseledBookShelfBlock/m_5573_ (Lnet/minecraft/world/item/context/BlockPlaceContext;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/ChiseledBookShelfBlock/getStateForPlacement (Lnet/minecraft/world/item/context/BlockPlaceContext;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/ChiseledBookShelfBlock/m_6227_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;Lnet/minecraft/world/phys/BlockHitResult;)Lnet/minecraft/world/InteractionResult; net/minecraft/world/level/block/ChiseledBookShelfBlock/use (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;Lnet/minecraft/world/phys/BlockHitResult;)Lnet/minecraft/world/InteractionResult; +MD: net/minecraft/world/level/block/ChiseledBookShelfBlock/m_6782_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;)I net/minecraft/world/level/block/ChiseledBookShelfBlock/getAnalogOutputSignal (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;)I +MD: net/minecraft/world/level/block/ChiseledBookShelfBlock/m_6810_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Z)V net/minecraft/world/level/block/ChiseledBookShelfBlock/onRemove (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Z)V +MD: net/minecraft/world/level/block/ChiseledBookShelfBlock/m_6843_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/Rotation;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/ChiseledBookShelfBlock/rotate (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/Rotation;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/ChiseledBookShelfBlock/m_6943_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/Mirror;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/ChiseledBookShelfBlock/mirror (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/Mirror;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/ChiseledBookShelfBlock/m_7278_ (Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/world/level/block/ChiseledBookShelfBlock/hasAnalogOutputSignal (Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/world/level/block/ChiseledBookShelfBlock/m_7514_ (Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/block/RenderShape; net/minecraft/world/level/block/ChiseledBookShelfBlock/getRenderShape (Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/block/RenderShape; +MD: net/minecraft/world/level/block/ChiseledBookShelfBlock/m_7926_ (Lnet/minecraft/world/level/block/state/StateDefinition$Builder;)V net/minecraft/world/level/block/ChiseledBookShelfBlock/createBlockStateDefinition (Lnet/minecraft/world/level/block/state/StateDefinition$Builder;)V +MD: net/minecraft/world/level/block/ChiseledBookShelfBlock$1/ ()V net/minecraft/world/level/block/ChiseledBookShelfBlock$1/ ()V +MD: net/minecraft/world/level/block/ChorusFlowerBlock/ ()V net/minecraft/world/level/block/ChorusFlowerBlock/ ()V +MD: net/minecraft/world/level/block/ChorusFlowerBlock/ (Lnet/minecraft/world/level/block/ChorusPlantBlock;Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V net/minecraft/world/level/block/ChorusFlowerBlock/ (Lnet/minecraft/world/level/block/ChorusPlantBlock;Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V +MD: net/minecraft/world/level/block/ChorusFlowerBlock/m_213897_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)V net/minecraft/world/level/block/ChorusFlowerBlock/tick (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)V +MD: net/minecraft/world/level/block/ChorusFlowerBlock/m_213898_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)V net/minecraft/world/level/block/ChorusFlowerBlock/randomTick (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)V +MD: net/minecraft/world/level/block/ChorusFlowerBlock/m_220962_ (Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;I)V net/minecraft/world/level/block/ChorusFlowerBlock/generatePlant (Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;I)V +MD: net/minecraft/world/level/block/ChorusFlowerBlock/m_220967_ (Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos;II)V net/minecraft/world/level/block/ChorusFlowerBlock/growTreeRecursive (Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos;II)V +MD: net/minecraft/world/level/block/ChorusFlowerBlock/m_51658_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;)V net/minecraft/world/level/block/ChorusFlowerBlock/placeDeadFlower (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/world/level/block/ChorusFlowerBlock/m_51661_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;I)V net/minecraft/world/level/block/ChorusFlowerBlock/placeGrownFlower (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;I)V +MD: net/minecraft/world/level/block/ChorusFlowerBlock/m_51697_ (Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Direction;)Z net/minecraft/world/level/block/ChorusFlowerBlock/allNeighborsEmpty (Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Direction;)Z +MD: net/minecraft/world/level/block/ChorusFlowerBlock/m_5581_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/phys/BlockHitResult;Lnet/minecraft/world/entity/projectile/Projectile;)V net/minecraft/world/level/block/ChorusFlowerBlock/onProjectileHit (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/phys/BlockHitResult;Lnet/minecraft/world/entity/projectile/Projectile;)V +MD: net/minecraft/world/level/block/ChorusFlowerBlock/m_6724_ (Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/world/level/block/ChorusFlowerBlock/isRandomlyTicking (Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/world/level/block/ChorusFlowerBlock/m_7417_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/ChorusFlowerBlock/updateShape (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/ChorusFlowerBlock/m_7898_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/level/block/ChorusFlowerBlock/canSurvive (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/level/block/ChorusFlowerBlock/m_7926_ (Lnet/minecraft/world/level/block/state/StateDefinition$Builder;)V net/minecraft/world/level/block/ChorusFlowerBlock/createBlockStateDefinition (Lnet/minecraft/world/level/block/state/StateDefinition$Builder;)V +MD: net/minecraft/world/level/block/ChorusPlantBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V net/minecraft/world/level/block/ChorusPlantBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V +MD: net/minecraft/world/level/block/ChorusPlantBlock/m_213897_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)V net/minecraft/world/level/block/ChorusPlantBlock/tick (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)V +MD: net/minecraft/world/level/block/ChorusPlantBlock/m_51710_ (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/ChorusPlantBlock/getStateForPlacement (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/ChorusPlantBlock/m_5573_ (Lnet/minecraft/world/item/context/BlockPlaceContext;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/ChorusPlantBlock/getStateForPlacement (Lnet/minecraft/world/item/context/BlockPlaceContext;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/ChorusPlantBlock/m_7357_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/pathfinder/PathComputationType;)Z net/minecraft/world/level/block/ChorusPlantBlock/isPathfindable (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/pathfinder/PathComputationType;)Z +MD: net/minecraft/world/level/block/ChorusPlantBlock/m_7417_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/ChorusPlantBlock/updateShape (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/ChorusPlantBlock/m_7898_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/level/block/ChorusPlantBlock/canSurvive (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/level/block/ChorusPlantBlock/m_7926_ (Lnet/minecraft/world/level/block/state/StateDefinition$Builder;)V net/minecraft/world/level/block/ChorusPlantBlock/createBlockStateDefinition (Lnet/minecraft/world/level/block/state/StateDefinition$Builder;)V +MD: net/minecraft/world/level/block/CocoaBlock/ ()V net/minecraft/world/level/block/CocoaBlock/ ()V +MD: net/minecraft/world/level/block/CocoaBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V net/minecraft/world/level/block/CocoaBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V +MD: net/minecraft/world/level/block/CocoaBlock/m_213898_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)V net/minecraft/world/level/block/CocoaBlock/randomTick (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)V +MD: net/minecraft/world/level/block/CocoaBlock/m_214148_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V net/minecraft/world/level/block/CocoaBlock/performBonemeal (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V +MD: net/minecraft/world/level/block/CocoaBlock/m_214167_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/world/level/block/CocoaBlock/isBonemealSuccess (Lnet/minecraft/world/level/Level;Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/world/level/block/CocoaBlock/m_5573_ (Lnet/minecraft/world/item/context/BlockPlaceContext;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/CocoaBlock/getStateForPlacement (Lnet/minecraft/world/item/context/BlockPlaceContext;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/CocoaBlock/m_5940_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; net/minecraft/world/level/block/CocoaBlock/getShape (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; +MD: net/minecraft/world/level/block/CocoaBlock/m_6724_ (Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/world/level/block/CocoaBlock/isRandomlyTicking (Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/world/level/block/CocoaBlock/m_7357_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/pathfinder/PathComputationType;)Z net/minecraft/world/level/block/CocoaBlock/isPathfindable (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/pathfinder/PathComputationType;)Z +MD: net/minecraft/world/level/block/CocoaBlock/m_7370_ (Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Z)Z net/minecraft/world/level/block/CocoaBlock/isValidBonemealTarget (Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Z)Z +MD: net/minecraft/world/level/block/CocoaBlock/m_7417_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/CocoaBlock/updateShape (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/CocoaBlock/m_7898_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/level/block/CocoaBlock/canSurvive (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/level/block/CocoaBlock/m_7926_ (Lnet/minecraft/world/level/block/state/StateDefinition$Builder;)V net/minecraft/world/level/block/CocoaBlock/createBlockStateDefinition (Lnet/minecraft/world/level/block/state/StateDefinition$Builder;)V +MD: net/minecraft/world/level/block/CocoaBlock$1/ ()V net/minecraft/world/level/block/CocoaBlock$1/ ()V +MD: net/minecraft/world/level/block/CommandBlock/ ()V net/minecraft/world/level/block/CommandBlock/ ()V +MD: net/minecraft/world/level/block/CommandBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;Z)V net/minecraft/world/level/block/CommandBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;Z)V +MD: net/minecraft/world/level/block/CommandBlock/m_142194_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/block/entity/BlockEntity; net/minecraft/world/level/block/CommandBlock/newBlockEntity (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/block/entity/BlockEntity; +MD: net/minecraft/world/level/block/CommandBlock/m_213897_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)V net/minecraft/world/level/block/CommandBlock/tick (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)V +MD: net/minecraft/world/level/block/CommandBlock/m_51809_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Direction;)V net/minecraft/world/level/block/CommandBlock/executeChain (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Direction;)V +MD: net/minecraft/world/level/block/CommandBlock/m_51831_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/BaseCommandBlock;Z)V net/minecraft/world/level/block/CommandBlock/execute (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/BaseCommandBlock;Z)V +MD: net/minecraft/world/level/block/CommandBlock/m_5573_ (Lnet/minecraft/world/item/context/BlockPlaceContext;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/CommandBlock/getStateForPlacement (Lnet/minecraft/world/item/context/BlockPlaceContext;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/CommandBlock/m_6227_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;Lnet/minecraft/world/phys/BlockHitResult;)Lnet/minecraft/world/InteractionResult; net/minecraft/world/level/block/CommandBlock/use (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;Lnet/minecraft/world/phys/BlockHitResult;)Lnet/minecraft/world/InteractionResult; +MD: net/minecraft/world/level/block/CommandBlock/m_6402_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/item/ItemStack;)V net/minecraft/world/level/block/CommandBlock/setPlacedBy (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/item/ItemStack;)V +MD: net/minecraft/world/level/block/CommandBlock/m_6782_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;)I net/minecraft/world/level/block/CommandBlock/getAnalogOutputSignal (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;)I +MD: net/minecraft/world/level/block/CommandBlock/m_6843_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/Rotation;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/CommandBlock/rotate (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/Rotation;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/CommandBlock/m_6861_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/Block;Lnet/minecraft/core/BlockPos;Z)V net/minecraft/world/level/block/CommandBlock/neighborChanged (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/Block;Lnet/minecraft/core/BlockPos;Z)V +MD: net/minecraft/world/level/block/CommandBlock/m_6943_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/Mirror;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/CommandBlock/mirror (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/Mirror;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/CommandBlock/m_7278_ (Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/world/level/block/CommandBlock/hasAnalogOutputSignal (Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/world/level/block/CommandBlock/m_7514_ (Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/block/RenderShape; net/minecraft/world/level/block/CommandBlock/getRenderShape (Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/block/RenderShape; +MD: net/minecraft/world/level/block/CommandBlock/m_7926_ (Lnet/minecraft/world/level/block/state/StateDefinition$Builder;)V net/minecraft/world/level/block/CommandBlock/createBlockStateDefinition (Lnet/minecraft/world/level/block/state/StateDefinition$Builder;)V +MD: net/minecraft/world/level/block/ComparatorBlock/ ()V net/minecraft/world/level/block/ComparatorBlock/ ()V +MD: net/minecraft/world/level/block/ComparatorBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V net/minecraft/world/level/block/ComparatorBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V +MD: net/minecraft/world/level/block/ComparatorBlock/m_142194_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/block/entity/BlockEntity; net/minecraft/world/level/block/ComparatorBlock/newBlockEntity (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/block/entity/BlockEntity; +MD: net/minecraft/world/level/block/ComparatorBlock/m_213897_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)V net/minecraft/world/level/block/ComparatorBlock/tick (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)V +MD: net/minecraft/world/level/block/ComparatorBlock/m_289176_ (Lnet/minecraft/core/Direction;Lnet/minecraft/world/entity/decoration/ItemFrame;)Z net/minecraft/world/level/block/ComparatorBlock/lambda$getItemFrame$0 (Lnet/minecraft/core/Direction;Lnet/minecraft/world/entity/decoration/ItemFrame;)Z +MD: net/minecraft/world/level/block/ComparatorBlock/m_51864_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/Direction;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/entity/decoration/ItemFrame; net/minecraft/world/level/block/ComparatorBlock/getItemFrame (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/Direction;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/entity/decoration/ItemFrame; +MD: net/minecraft/world/level/block/ComparatorBlock/m_51903_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)I net/minecraft/world/level/block/ComparatorBlock/calculateOutputSignal (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)I +MD: net/minecraft/world/level/block/ComparatorBlock/m_51907_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V net/minecraft/world/level/block/ComparatorBlock/refreshOutputState (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V +MD: net/minecraft/world/level/block/ComparatorBlock/m_5968_ (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)I net/minecraft/world/level/block/ComparatorBlock/getOutputSignal (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)I +MD: net/minecraft/world/level/block/ComparatorBlock/m_6112_ (Lnet/minecraft/world/level/block/state/BlockState;)I net/minecraft/world/level/block/ComparatorBlock/getDelay (Lnet/minecraft/world/level/block/state/BlockState;)I +MD: net/minecraft/world/level/block/ComparatorBlock/m_6227_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;Lnet/minecraft/world/phys/BlockHitResult;)Lnet/minecraft/world/InteractionResult; net/minecraft/world/level/block/ComparatorBlock/use (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;Lnet/minecraft/world/phys/BlockHitResult;)Lnet/minecraft/world/InteractionResult; +MD: net/minecraft/world/level/block/ComparatorBlock/m_7312_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)I net/minecraft/world/level/block/ComparatorBlock/getInputSignal (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)I +MD: net/minecraft/world/level/block/ComparatorBlock/m_7320_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/world/level/block/ComparatorBlock/shouldTurnOn (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/world/level/block/ComparatorBlock/m_7321_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V net/minecraft/world/level/block/ComparatorBlock/checkTickOnNeighbor (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V +MD: net/minecraft/world/level/block/ComparatorBlock/m_7926_ (Lnet/minecraft/world/level/block/state/StateDefinition$Builder;)V net/minecraft/world/level/block/ComparatorBlock/createBlockStateDefinition (Lnet/minecraft/world/level/block/state/StateDefinition$Builder;)V +MD: net/minecraft/world/level/block/ComparatorBlock/m_8133_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;II)Z net/minecraft/world/level/block/ComparatorBlock/triggerEvent (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;II)Z +MD: net/minecraft/world/level/block/ComposterBlock/ ()V net/minecraft/world/level/block/ComposterBlock/ ()V +MD: net/minecraft/world/level/block/ComposterBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V net/minecraft/world/level/block/ComposterBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V +MD: net/minecraft/world/level/block/ComposterBlock/m_213897_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)V net/minecraft/world/level/block/ComposterBlock/tick (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)V +MD: net/minecraft/world/level/block/ComposterBlock/m_268990_ (Lnet/minecraft/world/entity/Entity;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/ComposterBlock/insertItem (Lnet/minecraft/world/entity/Entity;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/ComposterBlock/m_269330_ (Lnet/minecraft/world/entity/Entity;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/item/ItemStack;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/ComposterBlock/addItem (Lnet/minecraft/world/entity/Entity;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/item/ItemStack;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/ComposterBlock/m_269590_ (Lnet/minecraft/world/entity/Entity;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/ComposterBlock/empty (Lnet/minecraft/world/entity/Entity;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/ComposterBlock/m_51920_ (FLnet/minecraft/world/level/ItemLike;)V net/minecraft/world/level/block/ComposterBlock/add (FLnet/minecraft/world/level/ItemLike;)V +MD: net/minecraft/world/level/block/ComposterBlock/m_51923_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Z)V net/minecraft/world/level/block/ComposterBlock/handleFill (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Z)V +MD: net/minecraft/world/level/block/ComposterBlock/m_51966_ ([Lnet/minecraft/world/phys/shapes/VoxelShape;)V net/minecraft/world/level/block/ComposterBlock/lambda$static$0 ([Lnet/minecraft/world/phys/shapes/VoxelShape;)V +MD: net/minecraft/world/level/block/ComposterBlock/m_51988_ ()V net/minecraft/world/level/block/ComposterBlock/bootStrap ()V +MD: net/minecraft/world/level/block/ComposterBlock/m_51998_ (Lnet/minecraft/world/entity/Entity;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/ComposterBlock/extractProduce (Lnet/minecraft/world/entity/Entity;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/ComposterBlock/m_5840_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/WorldlyContainer; net/minecraft/world/level/block/ComposterBlock/getContainer (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/WorldlyContainer; +MD: net/minecraft/world/level/block/ComposterBlock/m_5939_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; net/minecraft/world/level/block/ComposterBlock/getCollisionShape (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; +MD: net/minecraft/world/level/block/ComposterBlock/m_5940_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; net/minecraft/world/level/block/ComposterBlock/getShape (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; +MD: net/minecraft/world/level/block/ComposterBlock/m_6079_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/phys/shapes/VoxelShape; net/minecraft/world/level/block/ComposterBlock/getInteractionShape (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/phys/shapes/VoxelShape; +MD: net/minecraft/world/level/block/ComposterBlock/m_6227_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;Lnet/minecraft/world/phys/BlockHitResult;)Lnet/minecraft/world/InteractionResult; net/minecraft/world/level/block/ComposterBlock/use (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;Lnet/minecraft/world/phys/BlockHitResult;)Lnet/minecraft/world/InteractionResult; +MD: net/minecraft/world/level/block/ComposterBlock/m_6782_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;)I net/minecraft/world/level/block/ComposterBlock/getAnalogOutputSignal (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;)I +MD: net/minecraft/world/level/block/ComposterBlock/m_6807_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Z)V net/minecraft/world/level/block/ComposterBlock/onPlace (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Z)V +MD: net/minecraft/world/level/block/ComposterBlock/m_7278_ (Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/world/level/block/ComposterBlock/hasAnalogOutputSignal (Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/world/level/block/ComposterBlock/m_7357_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/pathfinder/PathComputationType;)Z net/minecraft/world/level/block/ComposterBlock/isPathfindable (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/pathfinder/PathComputationType;)Z +MD: net/minecraft/world/level/block/ComposterBlock/m_7926_ (Lnet/minecraft/world/level/block/state/StateDefinition$Builder;)V net/minecraft/world/level/block/ComposterBlock/createBlockStateDefinition (Lnet/minecraft/world/level/block/state/StateDefinition$Builder;)V +MD: net/minecraft/world/level/block/ComposterBlock$EmptyContainer/ ()V net/minecraft/world/level/block/ComposterBlock$EmptyContainer/ ()V +MD: net/minecraft/world/level/block/ComposterBlock$EmptyContainer/m_7071_ (Lnet/minecraft/core/Direction;)[I net/minecraft/world/level/block/ComposterBlock$EmptyContainer/getSlotsForFace (Lnet/minecraft/core/Direction;)[I +MD: net/minecraft/world/level/block/ComposterBlock$EmptyContainer/m_7155_ (ILnet/minecraft/world/item/ItemStack;Lnet/minecraft/core/Direction;)Z net/minecraft/world/level/block/ComposterBlock$EmptyContainer/canPlaceItemThroughFace (ILnet/minecraft/world/item/ItemStack;Lnet/minecraft/core/Direction;)Z +MD: net/minecraft/world/level/block/ComposterBlock$EmptyContainer/m_7157_ (ILnet/minecraft/world/item/ItemStack;Lnet/minecraft/core/Direction;)Z net/minecraft/world/level/block/ComposterBlock$EmptyContainer/canTakeItemThroughFace (ILnet/minecraft/world/item/ItemStack;Lnet/minecraft/core/Direction;)Z +MD: net/minecraft/world/level/block/ComposterBlock$InputContainer/ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;)V net/minecraft/world/level/block/ComposterBlock$InputContainer/ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/world/level/block/ComposterBlock$InputContainer/m_6596_ ()V net/minecraft/world/level/block/ComposterBlock$InputContainer/setChanged ()V +MD: net/minecraft/world/level/block/ComposterBlock$InputContainer/m_6893_ ()I net/minecraft/world/level/block/ComposterBlock$InputContainer/getMaxStackSize ()I +MD: net/minecraft/world/level/block/ComposterBlock$InputContainer/m_7071_ (Lnet/minecraft/core/Direction;)[I net/minecraft/world/level/block/ComposterBlock$InputContainer/getSlotsForFace (Lnet/minecraft/core/Direction;)[I +MD: net/minecraft/world/level/block/ComposterBlock$InputContainer/m_7155_ (ILnet/minecraft/world/item/ItemStack;Lnet/minecraft/core/Direction;)Z net/minecraft/world/level/block/ComposterBlock$InputContainer/canPlaceItemThroughFace (ILnet/minecraft/world/item/ItemStack;Lnet/minecraft/core/Direction;)Z +MD: net/minecraft/world/level/block/ComposterBlock$InputContainer/m_7157_ (ILnet/minecraft/world/item/ItemStack;Lnet/minecraft/core/Direction;)Z net/minecraft/world/level/block/ComposterBlock$InputContainer/canTakeItemThroughFace (ILnet/minecraft/world/item/ItemStack;Lnet/minecraft/core/Direction;)Z +MD: net/minecraft/world/level/block/ComposterBlock$OutputContainer/ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/item/ItemStack;)V net/minecraft/world/level/block/ComposterBlock$OutputContainer/ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/item/ItemStack;)V +MD: net/minecraft/world/level/block/ComposterBlock$OutputContainer/m_6596_ ()V net/minecraft/world/level/block/ComposterBlock$OutputContainer/setChanged ()V +MD: net/minecraft/world/level/block/ComposterBlock$OutputContainer/m_6893_ ()I net/minecraft/world/level/block/ComposterBlock$OutputContainer/getMaxStackSize ()I +MD: net/minecraft/world/level/block/ComposterBlock$OutputContainer/m_7071_ (Lnet/minecraft/core/Direction;)[I net/minecraft/world/level/block/ComposterBlock$OutputContainer/getSlotsForFace (Lnet/minecraft/core/Direction;)[I +MD: net/minecraft/world/level/block/ComposterBlock$OutputContainer/m_7155_ (ILnet/minecraft/world/item/ItemStack;Lnet/minecraft/core/Direction;)Z net/minecraft/world/level/block/ComposterBlock$OutputContainer/canPlaceItemThroughFace (ILnet/minecraft/world/item/ItemStack;Lnet/minecraft/core/Direction;)Z +MD: net/minecraft/world/level/block/ComposterBlock$OutputContainer/m_7157_ (ILnet/minecraft/world/item/ItemStack;Lnet/minecraft/core/Direction;)Z net/minecraft/world/level/block/ComposterBlock$OutputContainer/canTakeItemThroughFace (ILnet/minecraft/world/item/ItemStack;Lnet/minecraft/core/Direction;)Z +MD: net/minecraft/world/level/block/ConcretePowderBlock/ (Lnet/minecraft/world/level/block/Block;Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V net/minecraft/world/level/block/ConcretePowderBlock/ (Lnet/minecraft/world/level/block/Block;Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V +MD: net/minecraft/world/level/block/ConcretePowderBlock/m_48792_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/entity/item/FallingBlockEntity;)V net/minecraft/world/level/block/ConcretePowderBlock/onLand (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/entity/item/FallingBlockEntity;)V +MD: net/minecraft/world/level/block/ConcretePowderBlock/m_52064_ (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/level/block/ConcretePowderBlock/touchesLiquid (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/level/block/ConcretePowderBlock/m_52080_ (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/world/level/block/ConcretePowderBlock/shouldSolidify (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/world/level/block/ConcretePowderBlock/m_52088_ (Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/world/level/block/ConcretePowderBlock/canSolidify (Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/world/level/block/ConcretePowderBlock/m_5573_ (Lnet/minecraft/world/item/context/BlockPlaceContext;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/ConcretePowderBlock/getStateForPlacement (Lnet/minecraft/world/item/context/BlockPlaceContext;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/ConcretePowderBlock/m_6248_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)I net/minecraft/world/level/block/ConcretePowderBlock/getDustColor (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)I +MD: net/minecraft/world/level/block/ConcretePowderBlock/m_7417_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/ConcretePowderBlock/updateShape (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/ConduitBlock/ ()V net/minecraft/world/level/block/ConduitBlock/ ()V +MD: net/minecraft/world/level/block/ConduitBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V net/minecraft/world/level/block/ConduitBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V +MD: net/minecraft/world/level/block/ConduitBlock/m_142194_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/block/entity/BlockEntity; net/minecraft/world/level/block/ConduitBlock/newBlockEntity (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/block/entity/BlockEntity; +MD: net/minecraft/world/level/block/ConduitBlock/m_142354_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/entity/BlockEntityType;)Lnet/minecraft/world/level/block/entity/BlockEntityTicker; net/minecraft/world/level/block/ConduitBlock/getTicker (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/entity/BlockEntityType;)Lnet/minecraft/world/level/block/entity/BlockEntityTicker; +MD: net/minecraft/world/level/block/ConduitBlock/m_5573_ (Lnet/minecraft/world/item/context/BlockPlaceContext;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/ConduitBlock/getStateForPlacement (Lnet/minecraft/world/item/context/BlockPlaceContext;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/ConduitBlock/m_5888_ (Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/material/FluidState; net/minecraft/world/level/block/ConduitBlock/getFluidState (Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/material/FluidState; +MD: net/minecraft/world/level/block/ConduitBlock/m_5940_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; net/minecraft/world/level/block/ConduitBlock/getShape (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; +MD: net/minecraft/world/level/block/ConduitBlock/m_6402_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/item/ItemStack;)V net/minecraft/world/level/block/ConduitBlock/setPlacedBy (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/item/ItemStack;)V +MD: net/minecraft/world/level/block/ConduitBlock/m_7357_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/pathfinder/PathComputationType;)Z net/minecraft/world/level/block/ConduitBlock/isPathfindable (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/pathfinder/PathComputationType;)Z +MD: net/minecraft/world/level/block/ConduitBlock/m_7417_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/ConduitBlock/updateShape (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/ConduitBlock/m_7514_ (Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/block/RenderShape; net/minecraft/world/level/block/ConduitBlock/getRenderShape (Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/block/RenderShape; +MD: net/minecraft/world/level/block/ConduitBlock/m_7926_ (Lnet/minecraft/world/level/block/state/StateDefinition$Builder;)V net/minecraft/world/level/block/ConduitBlock/createBlockStateDefinition (Lnet/minecraft/world/level/block/state/StateDefinition$Builder;)V +MD: net/minecraft/world/level/block/CoralBlock/ (Lnet/minecraft/world/level/block/Block;Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V net/minecraft/world/level/block/CoralBlock/ (Lnet/minecraft/world/level/block/Block;Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V +MD: net/minecraft/world/level/block/CoralBlock/m_213897_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)V net/minecraft/world/level/block/CoralBlock/tick (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)V +MD: net/minecraft/world/level/block/CoralBlock/m_52134_ (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/level/block/CoralBlock/scanForWater (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/level/block/CoralBlock/m_5573_ (Lnet/minecraft/world/item/context/BlockPlaceContext;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/CoralBlock/getStateForPlacement (Lnet/minecraft/world/item/context/BlockPlaceContext;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/CoralBlock/m_7417_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/CoralBlock/updateShape (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/CoralFanBlock/ (Lnet/minecraft/world/level/block/Block;Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V net/minecraft/world/level/block/CoralFanBlock/ (Lnet/minecraft/world/level/block/Block;Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V +MD: net/minecraft/world/level/block/CoralFanBlock/m_213897_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)V net/minecraft/world/level/block/CoralFanBlock/tick (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)V +MD: net/minecraft/world/level/block/CoralFanBlock/m_6807_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Z)V net/minecraft/world/level/block/CoralFanBlock/onPlace (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Z)V +MD: net/minecraft/world/level/block/CoralFanBlock/m_7417_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/CoralFanBlock/updateShape (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/CoralPlantBlock/ ()V net/minecraft/world/level/block/CoralPlantBlock/ ()V +MD: net/minecraft/world/level/block/CoralPlantBlock/ (Lnet/minecraft/world/level/block/Block;Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V net/minecraft/world/level/block/CoralPlantBlock/ (Lnet/minecraft/world/level/block/Block;Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V +MD: net/minecraft/world/level/block/CoralPlantBlock/m_213897_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)V net/minecraft/world/level/block/CoralPlantBlock/tick (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)V +MD: net/minecraft/world/level/block/CoralPlantBlock/m_5940_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; net/minecraft/world/level/block/CoralPlantBlock/getShape (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; +MD: net/minecraft/world/level/block/CoralPlantBlock/m_6807_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Z)V net/minecraft/world/level/block/CoralPlantBlock/onPlace (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Z)V +MD: net/minecraft/world/level/block/CoralPlantBlock/m_7417_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/CoralPlantBlock/updateShape (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/CoralWallFanBlock/ (Lnet/minecraft/world/level/block/Block;Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V net/minecraft/world/level/block/CoralWallFanBlock/ (Lnet/minecraft/world/level/block/Block;Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V +MD: net/minecraft/world/level/block/CoralWallFanBlock/m_213897_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)V net/minecraft/world/level/block/CoralWallFanBlock/tick (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)V +MD: net/minecraft/world/level/block/CoralWallFanBlock/m_6807_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Z)V net/minecraft/world/level/block/CoralWallFanBlock/onPlace (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Z)V +MD: net/minecraft/world/level/block/CoralWallFanBlock/m_7417_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/CoralWallFanBlock/updateShape (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/CraftingTableBlock/ ()V net/minecraft/world/level/block/CraftingTableBlock/ ()V +MD: net/minecraft/world/level/block/CraftingTableBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V net/minecraft/world/level/block/CraftingTableBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V +MD: net/minecraft/world/level/block/CraftingTableBlock/m_52226_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;ILnet/minecraft/world/entity/player/Inventory;Lnet/minecraft/world/entity/player/Player;)Lnet/minecraft/world/inventory/AbstractContainerMenu; net/minecraft/world/level/block/CraftingTableBlock/lambda$getMenuProvider$0 (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;ILnet/minecraft/world/entity/player/Inventory;Lnet/minecraft/world/entity/player/Player;)Lnet/minecraft/world/inventory/AbstractContainerMenu; +MD: net/minecraft/world/level/block/CraftingTableBlock/m_6227_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;Lnet/minecraft/world/phys/BlockHitResult;)Lnet/minecraft/world/InteractionResult; net/minecraft/world/level/block/CraftingTableBlock/use (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;Lnet/minecraft/world/phys/BlockHitResult;)Lnet/minecraft/world/InteractionResult; +MD: net/minecraft/world/level/block/CraftingTableBlock/m_7246_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/MenuProvider; net/minecraft/world/level/block/CraftingTableBlock/getMenuProvider (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/MenuProvider; +MD: net/minecraft/world/level/block/CropBlock/ ()V net/minecraft/world/level/block/CropBlock/ ()V +MD: net/minecraft/world/level/block/CropBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V net/minecraft/world/level/block/CropBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V +MD: net/minecraft/world/level/block/CropBlock/m_213898_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)V net/minecraft/world/level/block/CropBlock/randomTick (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)V +MD: net/minecraft/world/level/block/CropBlock/m_214148_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V net/minecraft/world/level/block/CropBlock/performBonemeal (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V +MD: net/minecraft/world/level/block/CropBlock/m_214167_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/world/level/block/CropBlock/isBonemealSuccess (Lnet/minecraft/world/level/Level;Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/world/level/block/CropBlock/m_52263_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V net/minecraft/world/level/block/CropBlock/growCrops (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V +MD: net/minecraft/world/level/block/CropBlock/m_52272_ (Lnet/minecraft/world/level/block/Block;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)F net/minecraft/world/level/block/CropBlock/getGrowthSpeed (Lnet/minecraft/world/level/block/Block;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)F +MD: net/minecraft/world/level/block/CropBlock/m_52289_ (I)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/CropBlock/getStateForAge (I)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/CropBlock/m_52305_ (Lnet/minecraft/world/level/block/state/BlockState;)I net/minecraft/world/level/block/CropBlock/getAge (Lnet/minecraft/world/level/block/state/BlockState;)I +MD: net/minecraft/world/level/block/CropBlock/m_52307_ (Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/world/level/block/CropBlock/isMaxAge (Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/world/level/block/CropBlock/m_5940_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; net/minecraft/world/level/block/CropBlock/getShape (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; +MD: net/minecraft/world/level/block/CropBlock/m_6266_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/level/block/CropBlock/mayPlaceOn (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/level/block/CropBlock/m_6404_ ()Lnet/minecraft/world/level/ItemLike; net/minecraft/world/level/block/CropBlock/getBaseSeedId ()Lnet/minecraft/world/level/ItemLike; +MD: net/minecraft/world/level/block/CropBlock/m_6724_ (Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/world/level/block/CropBlock/isRandomlyTicking (Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/world/level/block/CropBlock/m_7125_ (Lnet/minecraft/world/level/Level;)I net/minecraft/world/level/block/CropBlock/getBonemealAgeIncrease (Lnet/minecraft/world/level/Level;)I +MD: net/minecraft/world/level/block/CropBlock/m_7370_ (Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Z)Z net/minecraft/world/level/block/CropBlock/isValidBonemealTarget (Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Z)Z +MD: net/minecraft/world/level/block/CropBlock/m_7397_ (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/item/ItemStack; net/minecraft/world/level/block/CropBlock/getCloneItemStack (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/level/block/CropBlock/m_7419_ ()I net/minecraft/world/level/block/CropBlock/getMaxAge ()I +MD: net/minecraft/world/level/block/CropBlock/m_7892_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/Entity;)V net/minecraft/world/level/block/CropBlock/entityInside (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/Entity;)V +MD: net/minecraft/world/level/block/CropBlock/m_7898_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/level/block/CropBlock/canSurvive (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/level/block/CropBlock/m_7926_ (Lnet/minecraft/world/level/block/state/StateDefinition$Builder;)V net/minecraft/world/level/block/CropBlock/createBlockStateDefinition (Lnet/minecraft/world/level/block/state/StateDefinition$Builder;)V +MD: net/minecraft/world/level/block/CropBlock/m_7959_ ()Lnet/minecraft/world/level/block/state/properties/IntegerProperty; net/minecraft/world/level/block/CropBlock/getAgeProperty ()Lnet/minecraft/world/level/block/state/properties/IntegerProperty; +MD: net/minecraft/world/level/block/CrossCollisionBlock/ ()V net/minecraft/world/level/block/CrossCollisionBlock/ ()V +MD: net/minecraft/world/level/block/CrossCollisionBlock/ (FFFFFLnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V net/minecraft/world/level/block/CrossCollisionBlock/ (FFFFFLnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V +MD: net/minecraft/world/level/block/CrossCollisionBlock/m_52326_ (FFFFF)[Lnet/minecraft/world/phys/shapes/VoxelShape; net/minecraft/world/level/block/CrossCollisionBlock/makeShapes (FFFFF)[Lnet/minecraft/world/phys/shapes/VoxelShape; +MD: net/minecraft/world/level/block/CrossCollisionBlock/m_52343_ (Lnet/minecraft/core/Direction;)I net/minecraft/world/level/block/CrossCollisionBlock/indexFor (Lnet/minecraft/core/Direction;)I +MD: net/minecraft/world/level/block/CrossCollisionBlock/m_52345_ (Ljava/util/Map$Entry;)Z net/minecraft/world/level/block/CrossCollisionBlock/lambda$static$0 (Ljava/util/Map$Entry;)Z +MD: net/minecraft/world/level/block/CrossCollisionBlock/m_52363_ (Lnet/minecraft/world/level/block/state/BlockState;)I net/minecraft/world/level/block/CrossCollisionBlock/getAABBIndex (Lnet/minecraft/world/level/block/state/BlockState;)I +MD: net/minecraft/world/level/block/CrossCollisionBlock/m_52365_ (Lnet/minecraft/world/level/block/state/BlockState;)I net/minecraft/world/level/block/CrossCollisionBlock/lambda$getAABBIndex$1 (Lnet/minecraft/world/level/block/state/BlockState;)I +MD: net/minecraft/world/level/block/CrossCollisionBlock/m_5888_ (Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/material/FluidState; net/minecraft/world/level/block/CrossCollisionBlock/getFluidState (Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/material/FluidState; +MD: net/minecraft/world/level/block/CrossCollisionBlock/m_5939_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; net/minecraft/world/level/block/CrossCollisionBlock/getCollisionShape (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; +MD: net/minecraft/world/level/block/CrossCollisionBlock/m_5940_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; net/minecraft/world/level/block/CrossCollisionBlock/getShape (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; +MD: net/minecraft/world/level/block/CrossCollisionBlock/m_6843_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/Rotation;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/CrossCollisionBlock/rotate (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/Rotation;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/CrossCollisionBlock/m_6943_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/Mirror;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/CrossCollisionBlock/mirror (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/Mirror;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/CrossCollisionBlock/m_7357_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/pathfinder/PathComputationType;)Z net/minecraft/world/level/block/CrossCollisionBlock/isPathfindable (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/pathfinder/PathComputationType;)Z +MD: net/minecraft/world/level/block/CrossCollisionBlock/m_7420_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/level/block/CrossCollisionBlock/propagatesSkylightDown (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/level/block/CrossCollisionBlock$1/ ()V net/minecraft/world/level/block/CrossCollisionBlock$1/ ()V +MD: net/minecraft/world/level/block/CryingObsidianBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V net/minecraft/world/level/block/CryingObsidianBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V +MD: net/minecraft/world/level/block/CryingObsidianBlock/m_214162_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)V net/minecraft/world/level/block/CryingObsidianBlock/animateTick (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)V +MD: net/minecraft/world/level/block/DaylightDetectorBlock/ ()V net/minecraft/world/level/block/DaylightDetectorBlock/ ()V +MD: net/minecraft/world/level/block/DaylightDetectorBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V net/minecraft/world/level/block/DaylightDetectorBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V +MD: net/minecraft/world/level/block/DaylightDetectorBlock/m_142194_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/block/entity/BlockEntity; net/minecraft/world/level/block/DaylightDetectorBlock/newBlockEntity (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/block/entity/BlockEntity; +MD: net/minecraft/world/level/block/DaylightDetectorBlock/m_142354_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/entity/BlockEntityType;)Lnet/minecraft/world/level/block/entity/BlockEntityTicker; net/minecraft/world/level/block/DaylightDetectorBlock/getTicker (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/entity/BlockEntityType;)Lnet/minecraft/world/level/block/entity/BlockEntityTicker; +MD: net/minecraft/world/level/block/DaylightDetectorBlock/m_153112_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/entity/DaylightDetectorBlockEntity;)V net/minecraft/world/level/block/DaylightDetectorBlock/tickEntity (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/entity/DaylightDetectorBlockEntity;)V +MD: net/minecraft/world/level/block/DaylightDetectorBlock/m_52410_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;)V net/minecraft/world/level/block/DaylightDetectorBlock/updateSignalStrength (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/world/level/block/DaylightDetectorBlock/m_5940_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; net/minecraft/world/level/block/DaylightDetectorBlock/getShape (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; +MD: net/minecraft/world/level/block/DaylightDetectorBlock/m_6227_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;Lnet/minecraft/world/phys/BlockHitResult;)Lnet/minecraft/world/InteractionResult; net/minecraft/world/level/block/DaylightDetectorBlock/use (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;Lnet/minecraft/world/phys/BlockHitResult;)Lnet/minecraft/world/InteractionResult; +MD: net/minecraft/world/level/block/DaylightDetectorBlock/m_6378_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Direction;)I net/minecraft/world/level/block/DaylightDetectorBlock/getSignal (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Direction;)I +MD: net/minecraft/world/level/block/DaylightDetectorBlock/m_7514_ (Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/block/RenderShape; net/minecraft/world/level/block/DaylightDetectorBlock/getRenderShape (Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/block/RenderShape; +MD: net/minecraft/world/level/block/DaylightDetectorBlock/m_7899_ (Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/world/level/block/DaylightDetectorBlock/isSignalSource (Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/world/level/block/DaylightDetectorBlock/m_7923_ (Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/world/level/block/DaylightDetectorBlock/useShapeForLightOcclusion (Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/world/level/block/DaylightDetectorBlock/m_7926_ (Lnet/minecraft/world/level/block/state/StateDefinition$Builder;)V net/minecraft/world/level/block/DaylightDetectorBlock/createBlockStateDefinition (Lnet/minecraft/world/level/block/state/StateDefinition$Builder;)V +MD: net/minecraft/world/level/block/DeadBushBlock/ ()V net/minecraft/world/level/block/DeadBushBlock/ ()V +MD: net/minecraft/world/level/block/DeadBushBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V net/minecraft/world/level/block/DeadBushBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V +MD: net/minecraft/world/level/block/DeadBushBlock/m_5940_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; net/minecraft/world/level/block/DeadBushBlock/getShape (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; +MD: net/minecraft/world/level/block/DeadBushBlock/m_6266_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/level/block/DeadBushBlock/mayPlaceOn (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/level/block/DecoratedPotBlock/ ()V net/minecraft/world/level/block/DecoratedPotBlock/ ()V +MD: net/minecraft/world/level/block/DecoratedPotBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V net/minecraft/world/level/block/DecoratedPotBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V +MD: net/minecraft/world/level/block/DecoratedPotBlock/m_142194_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/block/entity/BlockEntity; net/minecraft/world/level/block/DecoratedPotBlock/newBlockEntity (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/block/entity/BlockEntity; +MD: net/minecraft/world/level/block/DecoratedPotBlock/m_284099_ (Ljava/util/List;Lnet/minecraft/world/item/Item;)V net/minecraft/world/level/block/DecoratedPotBlock/lambda$appendHoverText$1 (Ljava/util/List;Lnet/minecraft/world/item/Item;)V +MD: net/minecraft/world/level/block/DecoratedPotBlock/m_284100_ (Lnet/minecraft/world/level/block/entity/DecoratedPotBlockEntity;Ljava/util/function/Consumer;)V net/minecraft/world/level/block/DecoratedPotBlock/lambda$getDrops$0 (Lnet/minecraft/world/level/block/entity/DecoratedPotBlockEntity;Ljava/util/function/Consumer;)V +MD: net/minecraft/world/level/block/DecoratedPotBlock/m_49635_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/storage/loot/LootParams$Builder;)Ljava/util/List; net/minecraft/world/level/block/DecoratedPotBlock/getDrops (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/storage/loot/LootParams$Builder;)Ljava/util/List; +MD: net/minecraft/world/level/block/DecoratedPotBlock/m_49962_ (Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/block/SoundType; net/minecraft/world/level/block/DecoratedPotBlock/getSoundType (Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/block/SoundType; +MD: net/minecraft/world/level/block/DecoratedPotBlock/m_5573_ (Lnet/minecraft/world/item/context/BlockPlaceContext;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/DecoratedPotBlock/getStateForPlacement (Lnet/minecraft/world/item/context/BlockPlaceContext;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/DecoratedPotBlock/m_5707_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/entity/player/Player;)V net/minecraft/world/level/block/DecoratedPotBlock/playerWillDestroy (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/entity/player/Player;)V +MD: net/minecraft/world/level/block/DecoratedPotBlock/m_5871_ (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/level/BlockGetter;Ljava/util/List;Lnet/minecraft/world/item/TooltipFlag;)V net/minecraft/world/level/block/DecoratedPotBlock/appendHoverText (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/level/BlockGetter;Ljava/util/List;Lnet/minecraft/world/item/TooltipFlag;)V +MD: net/minecraft/world/level/block/DecoratedPotBlock/m_5888_ (Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/material/FluidState; net/minecraft/world/level/block/DecoratedPotBlock/getFluidState (Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/material/FluidState; +MD: net/minecraft/world/level/block/DecoratedPotBlock/m_5940_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; net/minecraft/world/level/block/DecoratedPotBlock/getShape (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; +MD: net/minecraft/world/level/block/DecoratedPotBlock/m_7357_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/pathfinder/PathComputationType;)Z net/minecraft/world/level/block/DecoratedPotBlock/isPathfindable (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/pathfinder/PathComputationType;)Z +MD: net/minecraft/world/level/block/DecoratedPotBlock/m_7417_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/DecoratedPotBlock/updateShape (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/DecoratedPotBlock/m_7926_ (Lnet/minecraft/world/level/block/state/StateDefinition$Builder;)V net/minecraft/world/level/block/DecoratedPotBlock/createBlockStateDefinition (Lnet/minecraft/world/level/block/state/StateDefinition$Builder;)V +MD: net/minecraft/world/level/block/DetectorRailBlock/ ()V net/minecraft/world/level/block/DetectorRailBlock/ ()V +MD: net/minecraft/world/level/block/DetectorRailBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V net/minecraft/world/level/block/DetectorRailBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V +MD: net/minecraft/world/level/block/DetectorRailBlock/m_153122_ (Lnet/minecraft/world/entity/Entity;)Z net/minecraft/world/level/block/DetectorRailBlock/lambda$getAnalogOutputSignal$1 (Lnet/minecraft/world/entity/Entity;)Z +MD: net/minecraft/world/level/block/DetectorRailBlock/m_153124_ (Lnet/minecraft/world/entity/Entity;)Z net/minecraft/world/level/block/DetectorRailBlock/lambda$checkPressed$0 (Lnet/minecraft/world/entity/Entity;)Z +MD: net/minecraft/world/level/block/DetectorRailBlock/m_213897_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)V net/minecraft/world/level/block/DetectorRailBlock/tick (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)V +MD: net/minecraft/world/level/block/DetectorRailBlock/m_52432_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V net/minecraft/world/level/block/DetectorRailBlock/checkPressed (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V +MD: net/minecraft/world/level/block/DetectorRailBlock/m_52436_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Ljava/lang/Class;Ljava/util/function/Predicate;)Ljava/util/List; net/minecraft/world/level/block/DetectorRailBlock/getInteractingMinecartOfType (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Ljava/lang/Class;Ljava/util/function/Predicate;)Ljava/util/List; +MD: net/minecraft/world/level/block/DetectorRailBlock/m_52470_ (Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/phys/AABB; net/minecraft/world/level/block/DetectorRailBlock/getSearchBB (Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/phys/AABB; +MD: net/minecraft/world/level/block/DetectorRailBlock/m_52472_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Z)V net/minecraft/world/level/block/DetectorRailBlock/updatePowerToConnected (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Z)V +MD: net/minecraft/world/level/block/DetectorRailBlock/m_6376_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Direction;)I net/minecraft/world/level/block/DetectorRailBlock/getDirectSignal (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Direction;)I +MD: net/minecraft/world/level/block/DetectorRailBlock/m_6378_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Direction;)I net/minecraft/world/level/block/DetectorRailBlock/getSignal (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Direction;)I +MD: net/minecraft/world/level/block/DetectorRailBlock/m_6782_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;)I net/minecraft/world/level/block/DetectorRailBlock/getAnalogOutputSignal (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;)I +MD: net/minecraft/world/level/block/DetectorRailBlock/m_6807_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Z)V net/minecraft/world/level/block/DetectorRailBlock/onPlace (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Z)V +MD: net/minecraft/world/level/block/DetectorRailBlock/m_6843_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/Rotation;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/DetectorRailBlock/rotate (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/Rotation;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/DetectorRailBlock/m_6943_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/Mirror;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/DetectorRailBlock/mirror (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/Mirror;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/DetectorRailBlock/m_7278_ (Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/world/level/block/DetectorRailBlock/hasAnalogOutputSignal (Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/world/level/block/DetectorRailBlock/m_7892_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/Entity;)V net/minecraft/world/level/block/DetectorRailBlock/entityInside (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/Entity;)V +MD: net/minecraft/world/level/block/DetectorRailBlock/m_7899_ (Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/world/level/block/DetectorRailBlock/isSignalSource (Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/world/level/block/DetectorRailBlock/m_7926_ (Lnet/minecraft/world/level/block/state/StateDefinition$Builder;)V net/minecraft/world/level/block/DetectorRailBlock/createBlockStateDefinition (Lnet/minecraft/world/level/block/state/StateDefinition$Builder;)V +MD: net/minecraft/world/level/block/DetectorRailBlock/m_7978_ ()Lnet/minecraft/world/level/block/state/properties/Property; net/minecraft/world/level/block/DetectorRailBlock/getShapeProperty ()Lnet/minecraft/world/level/block/state/properties/Property; +MD: net/minecraft/world/level/block/DetectorRailBlock$1/ ()V net/minecraft/world/level/block/DetectorRailBlock$1/ ()V +MD: net/minecraft/world/level/block/DiodeBlock/ ()V net/minecraft/world/level/block/DiodeBlock/ ()V +MD: net/minecraft/world/level/block/DiodeBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V net/minecraft/world/level/block/DiodeBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V +MD: net/minecraft/world/level/block/DiodeBlock/m_213897_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)V net/minecraft/world/level/block/DiodeBlock/tick (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)V +MD: net/minecraft/world/level/block/DiodeBlock/m_276835_ (Lnet/minecraft/world/level/SignalGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)I net/minecraft/world/level/block/DiodeBlock/getAlternateSignal (Lnet/minecraft/world/level/SignalGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)I +MD: net/minecraft/world/level/block/DiodeBlock/m_276978_ ()Z net/minecraft/world/level/block/DiodeBlock/sideInputDiodesOnly ()Z +MD: net/minecraft/world/level/block/DiodeBlock/m_52573_ (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/world/level/block/DiodeBlock/shouldPrioritize (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/world/level/block/DiodeBlock/m_52580_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V net/minecraft/world/level/block/DiodeBlock/updateNeighborsInFront (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V +MD: net/minecraft/world/level/block/DiodeBlock/m_52586_ (Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/world/level/block/DiodeBlock/isDiode (Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/world/level/block/DiodeBlock/m_5573_ (Lnet/minecraft/world/item/context/BlockPlaceContext;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/DiodeBlock/getStateForPlacement (Lnet/minecraft/world/item/context/BlockPlaceContext;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/DiodeBlock/m_5940_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; net/minecraft/world/level/block/DiodeBlock/getShape (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; +MD: net/minecraft/world/level/block/DiodeBlock/m_5968_ (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)I net/minecraft/world/level/block/DiodeBlock/getOutputSignal (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)I +MD: net/minecraft/world/level/block/DiodeBlock/m_6112_ (Lnet/minecraft/world/level/block/state/BlockState;)I net/minecraft/world/level/block/DiodeBlock/getDelay (Lnet/minecraft/world/level/block/state/BlockState;)I +MD: net/minecraft/world/level/block/DiodeBlock/m_6376_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Direction;)I net/minecraft/world/level/block/DiodeBlock/getDirectSignal (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Direction;)I +MD: net/minecraft/world/level/block/DiodeBlock/m_6378_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Direction;)I net/minecraft/world/level/block/DiodeBlock/getSignal (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Direction;)I +MD: net/minecraft/world/level/block/DiodeBlock/m_6402_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/item/ItemStack;)V net/minecraft/world/level/block/DiodeBlock/setPlacedBy (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/item/ItemStack;)V +MD: net/minecraft/world/level/block/DiodeBlock/m_6807_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Z)V net/minecraft/world/level/block/DiodeBlock/onPlace (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Z)V +MD: net/minecraft/world/level/block/DiodeBlock/m_6810_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Z)V net/minecraft/world/level/block/DiodeBlock/onRemove (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Z)V +MD: net/minecraft/world/level/block/DiodeBlock/m_6861_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/Block;Lnet/minecraft/core/BlockPos;Z)V net/minecraft/world/level/block/DiodeBlock/neighborChanged (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/Block;Lnet/minecraft/core/BlockPos;Z)V +MD: net/minecraft/world/level/block/DiodeBlock/m_7312_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)I net/minecraft/world/level/block/DiodeBlock/getInputSignal (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)I +MD: net/minecraft/world/level/block/DiodeBlock/m_7320_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/world/level/block/DiodeBlock/shouldTurnOn (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/world/level/block/DiodeBlock/m_7321_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V net/minecraft/world/level/block/DiodeBlock/checkTickOnNeighbor (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V +MD: net/minecraft/world/level/block/DiodeBlock/m_7346_ (Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/world/level/block/DiodeBlock/isLocked (Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/world/level/block/DiodeBlock/m_7898_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/level/block/DiodeBlock/canSurvive (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/level/block/DiodeBlock/m_7899_ (Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/world/level/block/DiodeBlock/isSignalSource (Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/world/level/block/DirectionalBlock/ ()V net/minecraft/world/level/block/DirectionalBlock/ ()V +MD: net/minecraft/world/level/block/DirectionalBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V net/minecraft/world/level/block/DirectionalBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V +MD: net/minecraft/world/level/block/DirtPathBlock/ ()V net/minecraft/world/level/block/DirtPathBlock/ ()V +MD: net/minecraft/world/level/block/DirtPathBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V net/minecraft/world/level/block/DirtPathBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V +MD: net/minecraft/world/level/block/DirtPathBlock/m_213897_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)V net/minecraft/world/level/block/DirtPathBlock/tick (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)V +MD: net/minecraft/world/level/block/DirtPathBlock/m_5573_ (Lnet/minecraft/world/item/context/BlockPlaceContext;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/DirtPathBlock/getStateForPlacement (Lnet/minecraft/world/item/context/BlockPlaceContext;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/DirtPathBlock/m_5940_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; net/minecraft/world/level/block/DirtPathBlock/getShape (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; +MD: net/minecraft/world/level/block/DirtPathBlock/m_7357_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/pathfinder/PathComputationType;)Z net/minecraft/world/level/block/DirtPathBlock/isPathfindable (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/pathfinder/PathComputationType;)Z +MD: net/minecraft/world/level/block/DirtPathBlock/m_7417_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/DirtPathBlock/updateShape (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/DirtPathBlock/m_7898_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/level/block/DirtPathBlock/canSurvive (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/level/block/DirtPathBlock/m_7923_ (Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/world/level/block/DirtPathBlock/useShapeForLightOcclusion (Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/world/level/block/DispenserBlock/ ()V net/minecraft/world/level/block/DispenserBlock/ ()V +MD: net/minecraft/world/level/block/DispenserBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V net/minecraft/world/level/block/DispenserBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V +MD: net/minecraft/world/level/block/DispenserBlock/m_142194_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/block/entity/BlockEntity; net/minecraft/world/level/block/DispenserBlock/newBlockEntity (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/block/entity/BlockEntity; +MD: net/minecraft/world/level/block/DispenserBlock/m_213897_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)V net/minecraft/world/level/block/DispenserBlock/tick (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)V +MD: net/minecraft/world/level/block/DispenserBlock/m_52672_ (Lnet/minecraft/world/level/ItemLike;Lnet/minecraft/core/dispenser/DispenseItemBehavior;)V net/minecraft/world/level/block/DispenserBlock/registerBehavior (Lnet/minecraft/world/level/ItemLike;Lnet/minecraft/core/dispenser/DispenseItemBehavior;)V +MD: net/minecraft/world/level/block/DispenserBlock/m_52720_ (Lnet/minecraft/core/BlockSource;)Lnet/minecraft/core/Position; net/minecraft/world/level/block/DispenserBlock/getDispensePosition (Lnet/minecraft/core/BlockSource;)Lnet/minecraft/core/Position; +MD: net/minecraft/world/level/block/DispenserBlock/m_52722_ (Lit/unimi/dsi/fastutil/objects/Object2ObjectOpenHashMap;)V net/minecraft/world/level/block/DispenserBlock/lambda$static$0 (Lit/unimi/dsi/fastutil/objects/Object2ObjectOpenHashMap;)V +MD: net/minecraft/world/level/block/DispenserBlock/m_5573_ (Lnet/minecraft/world/item/context/BlockPlaceContext;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/DispenserBlock/getStateForPlacement (Lnet/minecraft/world/item/context/BlockPlaceContext;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/DispenserBlock/m_5824_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;)V net/minecraft/world/level/block/DispenserBlock/dispenseFrom (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/world/level/block/DispenserBlock/m_6227_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;Lnet/minecraft/world/phys/BlockHitResult;)Lnet/minecraft/world/InteractionResult; net/minecraft/world/level/block/DispenserBlock/use (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;Lnet/minecraft/world/phys/BlockHitResult;)Lnet/minecraft/world/InteractionResult; +MD: net/minecraft/world/level/block/DispenserBlock/m_6402_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/item/ItemStack;)V net/minecraft/world/level/block/DispenserBlock/setPlacedBy (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/item/ItemStack;)V +MD: net/minecraft/world/level/block/DispenserBlock/m_6782_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;)I net/minecraft/world/level/block/DispenserBlock/getAnalogOutputSignal (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;)I +MD: net/minecraft/world/level/block/DispenserBlock/m_6810_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Z)V net/minecraft/world/level/block/DispenserBlock/onRemove (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Z)V +MD: net/minecraft/world/level/block/DispenserBlock/m_6843_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/Rotation;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/DispenserBlock/rotate (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/Rotation;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/DispenserBlock/m_6861_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/Block;Lnet/minecraft/core/BlockPos;Z)V net/minecraft/world/level/block/DispenserBlock/neighborChanged (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/Block;Lnet/minecraft/core/BlockPos;Z)V +MD: net/minecraft/world/level/block/DispenserBlock/m_6943_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/Mirror;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/DispenserBlock/mirror (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/Mirror;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/DispenserBlock/m_7216_ (Lnet/minecraft/world/item/ItemStack;)Lnet/minecraft/core/dispenser/DispenseItemBehavior; net/minecraft/world/level/block/DispenserBlock/getDispenseMethod (Lnet/minecraft/world/item/ItemStack;)Lnet/minecraft/core/dispenser/DispenseItemBehavior; +MD: net/minecraft/world/level/block/DispenserBlock/m_7278_ (Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/world/level/block/DispenserBlock/hasAnalogOutputSignal (Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/world/level/block/DispenserBlock/m_7514_ (Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/block/RenderShape; net/minecraft/world/level/block/DispenserBlock/getRenderShape (Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/block/RenderShape; +MD: net/minecraft/world/level/block/DispenserBlock/m_7926_ (Lnet/minecraft/world/level/block/state/StateDefinition$Builder;)V net/minecraft/world/level/block/DispenserBlock/createBlockStateDefinition (Lnet/minecraft/world/level/block/state/StateDefinition$Builder;)V +MD: net/minecraft/world/level/block/DoorBlock/ ()V net/minecraft/world/level/block/DoorBlock/ ()V +MD: net/minecraft/world/level/block/DoorBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;Lnet/minecraft/world/level/block/state/properties/BlockSetType;)V net/minecraft/world/level/block/DoorBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;Lnet/minecraft/world/level/block/state/properties/BlockSetType;)V +MD: net/minecraft/world/level/block/DoorBlock/m_153165_ (Lnet/minecraft/world/entity/Entity;Lnet/minecraft/world/level/Level;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/BlockPos;Z)V net/minecraft/world/level/block/DoorBlock/setOpen (Lnet/minecraft/world/entity/Entity;Lnet/minecraft/world/level/Level;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/BlockPos;Z)V +MD: net/minecraft/world/level/block/DoorBlock/m_245755_ (Lnet/minecraft/world/entity/Entity;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Z)V net/minecraft/world/level/block/DoorBlock/playSound (Lnet/minecraft/world/entity/Entity;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Z)V +MD: net/minecraft/world/level/block/DoorBlock/m_278711_ ()Lnet/minecraft/world/level/block/state/properties/BlockSetType; net/minecraft/world/level/block/DoorBlock/type ()Lnet/minecraft/world/level/block/state/properties/BlockSetType; +MD: net/minecraft/world/level/block/DoorBlock/m_52745_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/level/block/DoorBlock/isWoodenDoor (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/level/block/DoorBlock/m_52804_ (Lnet/minecraft/world/item/context/BlockPlaceContext;)Lnet/minecraft/world/level/block/state/properties/DoorHingeSide; net/minecraft/world/level/block/DoorBlock/getHinge (Lnet/minecraft/world/item/context/BlockPlaceContext;)Lnet/minecraft/world/level/block/state/properties/DoorHingeSide; +MD: net/minecraft/world/level/block/DoorBlock/m_52815_ (Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/world/level/block/DoorBlock/isOpen (Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/world/level/block/DoorBlock/m_52817_ (Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/world/level/block/DoorBlock/isWoodenDoor (Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/world/level/block/DoorBlock/m_5573_ (Lnet/minecraft/world/item/context/BlockPlaceContext;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/DoorBlock/getStateForPlacement (Lnet/minecraft/world/item/context/BlockPlaceContext;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/DoorBlock/m_5707_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/entity/player/Player;)V net/minecraft/world/level/block/DoorBlock/playerWillDestroy (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/entity/player/Player;)V +MD: net/minecraft/world/level/block/DoorBlock/m_5940_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; net/minecraft/world/level/block/DoorBlock/getShape (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; +MD: net/minecraft/world/level/block/DoorBlock/m_6227_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;Lnet/minecraft/world/phys/BlockHitResult;)Lnet/minecraft/world/InteractionResult; net/minecraft/world/level/block/DoorBlock/use (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;Lnet/minecraft/world/phys/BlockHitResult;)Lnet/minecraft/world/InteractionResult; +MD: net/minecraft/world/level/block/DoorBlock/m_6402_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/item/ItemStack;)V net/minecraft/world/level/block/DoorBlock/setPlacedBy (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/item/ItemStack;)V +MD: net/minecraft/world/level/block/DoorBlock/m_6843_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/Rotation;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/DoorBlock/rotate (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/Rotation;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/DoorBlock/m_6861_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/Block;Lnet/minecraft/core/BlockPos;Z)V net/minecraft/world/level/block/DoorBlock/neighborChanged (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/Block;Lnet/minecraft/core/BlockPos;Z)V +MD: net/minecraft/world/level/block/DoorBlock/m_6943_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/Mirror;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/DoorBlock/mirror (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/Mirror;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/DoorBlock/m_7357_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/pathfinder/PathComputationType;)Z net/minecraft/world/level/block/DoorBlock/isPathfindable (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/pathfinder/PathComputationType;)Z +MD: net/minecraft/world/level/block/DoorBlock/m_7417_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/DoorBlock/updateShape (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/DoorBlock/m_7799_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/BlockPos;)J net/minecraft/world/level/block/DoorBlock/getSeed (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/BlockPos;)J +MD: net/minecraft/world/level/block/DoorBlock/m_7898_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/level/block/DoorBlock/canSurvive (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/level/block/DoorBlock/m_7926_ (Lnet/minecraft/world/level/block/state/StateDefinition$Builder;)V net/minecraft/world/level/block/DoorBlock/createBlockStateDefinition (Lnet/minecraft/world/level/block/state/StateDefinition$Builder;)V +MD: net/minecraft/world/level/block/DoorBlock$1/ ()V net/minecraft/world/level/block/DoorBlock$1/ ()V +MD: net/minecraft/world/level/block/DoubleBlockCombiner/ ()V net/minecraft/world/level/block/DoubleBlockCombiner/ ()V +MD: net/minecraft/world/level/block/DoubleBlockCombiner/m_52822_ (Lnet/minecraft/world/level/block/entity/BlockEntityType;Ljava/util/function/Function;Ljava/util/function/Function;Lnet/minecraft/world/level/block/state/properties/DirectionProperty;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Ljava/util/function/BiPredicate;)Lnet/minecraft/world/level/block/DoubleBlockCombiner$NeighborCombineResult; net/minecraft/world/level/block/DoubleBlockCombiner/combineWithNeigbour (Lnet/minecraft/world/level/block/entity/BlockEntityType;Ljava/util/function/Function;Ljava/util/function/Function;Lnet/minecraft/world/level/block/state/properties/DirectionProperty;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Ljava/util/function/BiPredicate;)Lnet/minecraft/world/level/block/DoubleBlockCombiner$NeighborCombineResult; +MD: net/minecraft/world/level/block/DoubleBlockCombiner$BlockType/ ()V net/minecraft/world/level/block/DoubleBlockCombiner$BlockType/ ()V +MD: net/minecraft/world/level/block/DoubleBlockCombiner$BlockType/ (Ljava/lang/String;I)V net/minecraft/world/level/block/DoubleBlockCombiner$BlockType/ (Ljava/lang/String;I)V +MD: net/minecraft/world/level/block/DoubleBlockCombiner$BlockType/m_153172_ ()[Lnet/minecraft/world/level/block/DoubleBlockCombiner$BlockType; net/minecraft/world/level/block/DoubleBlockCombiner$BlockType/$values ()[Lnet/minecraft/world/level/block/DoubleBlockCombiner$BlockType; +MD: net/minecraft/world/level/block/DoubleBlockCombiner$BlockType/valueOf (Ljava/lang/String;)Lnet/minecraft/world/level/block/DoubleBlockCombiner$BlockType; net/minecraft/world/level/block/DoubleBlockCombiner$BlockType/valueOf (Ljava/lang/String;)Lnet/minecraft/world/level/block/DoubleBlockCombiner$BlockType; +MD: net/minecraft/world/level/block/DoubleBlockCombiner$BlockType/values ()[Lnet/minecraft/world/level/block/DoubleBlockCombiner$BlockType; net/minecraft/world/level/block/DoubleBlockCombiner$BlockType/values ()[Lnet/minecraft/world/level/block/DoubleBlockCombiner$BlockType; +MD: net/minecraft/world/level/block/DoubleBlockCombiner$Combiner/m_6502_ ()Ljava/lang/Object; net/minecraft/world/level/block/DoubleBlockCombiner$Combiner/acceptNone ()Ljava/lang/Object; +MD: net/minecraft/world/level/block/DoubleBlockCombiner$Combiner/m_6959_ (Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object; net/minecraft/world/level/block/DoubleBlockCombiner$Combiner/acceptDouble (Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object; +MD: net/minecraft/world/level/block/DoubleBlockCombiner$Combiner/m_7693_ (Ljava/lang/Object;)Ljava/lang/Object; net/minecraft/world/level/block/DoubleBlockCombiner$Combiner/acceptSingle (Ljava/lang/Object;)Ljava/lang/Object; +MD: net/minecraft/world/level/block/DoubleBlockCombiner$NeighborCombineResult/m_5649_ (Lnet/minecraft/world/level/block/DoubleBlockCombiner$Combiner;)Ljava/lang/Object; net/minecraft/world/level/block/DoubleBlockCombiner$NeighborCombineResult/apply (Lnet/minecraft/world/level/block/DoubleBlockCombiner$Combiner;)Ljava/lang/Object; +MD: net/minecraft/world/level/block/DoubleBlockCombiner$NeighborCombineResult$Double/ (Ljava/lang/Object;Ljava/lang/Object;)V net/minecraft/world/level/block/DoubleBlockCombiner$NeighborCombineResult$Double/ (Ljava/lang/Object;Ljava/lang/Object;)V +MD: net/minecraft/world/level/block/DoubleBlockCombiner$NeighborCombineResult$Double/m_5649_ (Lnet/minecraft/world/level/block/DoubleBlockCombiner$Combiner;)Ljava/lang/Object; net/minecraft/world/level/block/DoubleBlockCombiner$NeighborCombineResult$Double/apply (Lnet/minecraft/world/level/block/DoubleBlockCombiner$Combiner;)Ljava/lang/Object; +MD: net/minecraft/world/level/block/DoubleBlockCombiner$NeighborCombineResult$Single/ (Ljava/lang/Object;)V net/minecraft/world/level/block/DoubleBlockCombiner$NeighborCombineResult$Single/ (Ljava/lang/Object;)V +MD: net/minecraft/world/level/block/DoubleBlockCombiner$NeighborCombineResult$Single/m_5649_ (Lnet/minecraft/world/level/block/DoubleBlockCombiner$Combiner;)Ljava/lang/Object; net/minecraft/world/level/block/DoubleBlockCombiner$NeighborCombineResult$Single/apply (Lnet/minecraft/world/level/block/DoubleBlockCombiner$Combiner;)Ljava/lang/Object; +MD: net/minecraft/world/level/block/DoublePlantBlock/ ()V net/minecraft/world/level/block/DoublePlantBlock/ ()V +MD: net/minecraft/world/level/block/DoublePlantBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V net/minecraft/world/level/block/DoublePlantBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V +MD: net/minecraft/world/level/block/DoublePlantBlock/m_153173_ (Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/BlockPos;I)V net/minecraft/world/level/block/DoublePlantBlock/placeAt (Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/BlockPos;I)V +MD: net/minecraft/world/level/block/DoublePlantBlock/m_182453_ (Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/DoublePlantBlock/copyWaterloggedFrom (Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/DoublePlantBlock/m_52903_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/entity/player/Player;)V net/minecraft/world/level/block/DoublePlantBlock/preventCreativeDropFromBottomPart (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/entity/player/Player;)V +MD: net/minecraft/world/level/block/DoublePlantBlock/m_5573_ (Lnet/minecraft/world/item/context/BlockPlaceContext;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/DoublePlantBlock/getStateForPlacement (Lnet/minecraft/world/item/context/BlockPlaceContext;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/DoublePlantBlock/m_5707_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/entity/player/Player;)V net/minecraft/world/level/block/DoublePlantBlock/playerWillDestroy (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/entity/player/Player;)V +MD: net/minecraft/world/level/block/DoublePlantBlock/m_6240_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/entity/BlockEntity;Lnet/minecraft/world/item/ItemStack;)V net/minecraft/world/level/block/DoublePlantBlock/playerDestroy (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/entity/BlockEntity;Lnet/minecraft/world/item/ItemStack;)V +MD: net/minecraft/world/level/block/DoublePlantBlock/m_6402_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/item/ItemStack;)V net/minecraft/world/level/block/DoublePlantBlock/setPlacedBy (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/item/ItemStack;)V +MD: net/minecraft/world/level/block/DoublePlantBlock/m_7417_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/DoublePlantBlock/updateShape (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/DoublePlantBlock/m_7799_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/BlockPos;)J net/minecraft/world/level/block/DoublePlantBlock/getSeed (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/BlockPos;)J +MD: net/minecraft/world/level/block/DoublePlantBlock/m_7898_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/level/block/DoublePlantBlock/canSurvive (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/level/block/DoublePlantBlock/m_7926_ (Lnet/minecraft/world/level/block/state/StateDefinition$Builder;)V net/minecraft/world/level/block/DoublePlantBlock/createBlockStateDefinition (Lnet/minecraft/world/level/block/state/StateDefinition$Builder;)V +MD: net/minecraft/world/level/block/DragonEggBlock/ ()V net/minecraft/world/level/block/DragonEggBlock/ ()V +MD: net/minecraft/world/level/block/DragonEggBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V net/minecraft/world/level/block/DragonEggBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V +MD: net/minecraft/world/level/block/DragonEggBlock/m_52935_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;)V net/minecraft/world/level/block/DragonEggBlock/teleport (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/world/level/block/DragonEggBlock/m_5940_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; net/minecraft/world/level/block/DragonEggBlock/getShape (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; +MD: net/minecraft/world/level/block/DragonEggBlock/m_6227_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;Lnet/minecraft/world/phys/BlockHitResult;)Lnet/minecraft/world/InteractionResult; net/minecraft/world/level/block/DragonEggBlock/use (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;Lnet/minecraft/world/phys/BlockHitResult;)Lnet/minecraft/world/InteractionResult; +MD: net/minecraft/world/level/block/DragonEggBlock/m_6256_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/player/Player;)V net/minecraft/world/level/block/DragonEggBlock/attack (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/player/Player;)V +MD: net/minecraft/world/level/block/DragonEggBlock/m_7198_ ()I net/minecraft/world/level/block/DragonEggBlock/getDelayAfterPlace ()I +MD: net/minecraft/world/level/block/DragonEggBlock/m_7357_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/pathfinder/PathComputationType;)Z net/minecraft/world/level/block/DragonEggBlock/isPathfindable (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/pathfinder/PathComputationType;)Z +MD: net/minecraft/world/level/block/DropExperienceBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;Lnet/minecraft/util/valueproviders/IntProvider;)V net/minecraft/world/level/block/DropExperienceBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;Lnet/minecraft/util/valueproviders/IntProvider;)V +MD: net/minecraft/world/level/block/DropExperienceBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V net/minecraft/world/level/block/DropExperienceBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V +MD: net/minecraft/world/level/block/DropExperienceBlock/m_213646_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/item/ItemStack;Z)V net/minecraft/world/level/block/DropExperienceBlock/spawnAfterBreak (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/item/ItemStack;Z)V +MD: net/minecraft/world/level/block/DropperBlock/ ()V net/minecraft/world/level/block/DropperBlock/ ()V +MD: net/minecraft/world/level/block/DropperBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V net/minecraft/world/level/block/DropperBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V +MD: net/minecraft/world/level/block/DropperBlock/m_142194_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/block/entity/BlockEntity; net/minecraft/world/level/block/DropperBlock/newBlockEntity (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/block/entity/BlockEntity; +MD: net/minecraft/world/level/block/DropperBlock/m_5824_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;)V net/minecraft/world/level/block/DropperBlock/dispenseFrom (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/world/level/block/DropperBlock/m_7216_ (Lnet/minecraft/world/item/ItemStack;)Lnet/minecraft/core/dispenser/DispenseItemBehavior; net/minecraft/world/level/block/DropperBlock/getDispenseMethod (Lnet/minecraft/world/item/ItemStack;)Lnet/minecraft/core/dispenser/DispenseItemBehavior; +MD: net/minecraft/world/level/block/EnchantmentTableBlock/ ()V net/minecraft/world/level/block/EnchantmentTableBlock/ ()V +MD: net/minecraft/world/level/block/EnchantmentTableBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V net/minecraft/world/level/block/EnchantmentTableBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V +MD: net/minecraft/world/level/block/EnchantmentTableBlock/m_142194_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/block/entity/BlockEntity; net/minecraft/world/level/block/EnchantmentTableBlock/newBlockEntity (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/block/entity/BlockEntity; +MD: net/minecraft/world/level/block/EnchantmentTableBlock/m_142354_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/entity/BlockEntityType;)Lnet/minecraft/world/level/block/entity/BlockEntityTicker; net/minecraft/world/level/block/EnchantmentTableBlock/getTicker (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/entity/BlockEntityType;)Lnet/minecraft/world/level/block/entity/BlockEntityTicker; +MD: net/minecraft/world/level/block/EnchantmentTableBlock/m_207903_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;ILnet/minecraft/world/entity/player/Inventory;Lnet/minecraft/world/entity/player/Player;)Lnet/minecraft/world/inventory/AbstractContainerMenu; net/minecraft/world/level/block/EnchantmentTableBlock/lambda$getMenuProvider$1 (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;ILnet/minecraft/world/entity/player/Inventory;Lnet/minecraft/world/entity/player/Player;)Lnet/minecraft/world/inventory/AbstractContainerMenu; +MD: net/minecraft/world/level/block/EnchantmentTableBlock/m_207909_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/level/block/EnchantmentTableBlock/isValidBookShelf (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/level/block/EnchantmentTableBlock/m_207913_ (Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/level/block/EnchantmentTableBlock/lambda$static$0 (Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/level/block/EnchantmentTableBlock/m_214162_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)V net/minecraft/world/level/block/EnchantmentTableBlock/animateTick (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)V +MD: net/minecraft/world/level/block/EnchantmentTableBlock/m_5940_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; net/minecraft/world/level/block/EnchantmentTableBlock/getShape (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; +MD: net/minecraft/world/level/block/EnchantmentTableBlock/m_6227_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;Lnet/minecraft/world/phys/BlockHitResult;)Lnet/minecraft/world/InteractionResult; net/minecraft/world/level/block/EnchantmentTableBlock/use (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;Lnet/minecraft/world/phys/BlockHitResult;)Lnet/minecraft/world/InteractionResult; +MD: net/minecraft/world/level/block/EnchantmentTableBlock/m_6402_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/item/ItemStack;)V net/minecraft/world/level/block/EnchantmentTableBlock/setPlacedBy (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/item/ItemStack;)V +MD: net/minecraft/world/level/block/EnchantmentTableBlock/m_7246_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/MenuProvider; net/minecraft/world/level/block/EnchantmentTableBlock/getMenuProvider (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/MenuProvider; +MD: net/minecraft/world/level/block/EnchantmentTableBlock/m_7357_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/pathfinder/PathComputationType;)Z net/minecraft/world/level/block/EnchantmentTableBlock/isPathfindable (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/pathfinder/PathComputationType;)Z +MD: net/minecraft/world/level/block/EnchantmentTableBlock/m_7514_ (Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/block/RenderShape; net/minecraft/world/level/block/EnchantmentTableBlock/getRenderShape (Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/block/RenderShape; +MD: net/minecraft/world/level/block/EnchantmentTableBlock/m_7923_ (Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/world/level/block/EnchantmentTableBlock/useShapeForLightOcclusion (Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/world/level/block/EndGatewayBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V net/minecraft/world/level/block/EndGatewayBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V +MD: net/minecraft/world/level/block/EndGatewayBlock/m_142194_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/block/entity/BlockEntity; net/minecraft/world/level/block/EndGatewayBlock/newBlockEntity (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/block/entity/BlockEntity; +MD: net/minecraft/world/level/block/EndGatewayBlock/m_142354_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/entity/BlockEntityType;)Lnet/minecraft/world/level/block/entity/BlockEntityTicker; net/minecraft/world/level/block/EndGatewayBlock/getTicker (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/entity/BlockEntityType;)Lnet/minecraft/world/level/block/entity/BlockEntityTicker; +MD: net/minecraft/world/level/block/EndGatewayBlock/m_214162_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)V net/minecraft/world/level/block/EndGatewayBlock/animateTick (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)V +MD: net/minecraft/world/level/block/EndGatewayBlock/m_5946_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/material/Fluid;)Z net/minecraft/world/level/block/EndGatewayBlock/canBeReplaced (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/material/Fluid;)Z +MD: net/minecraft/world/level/block/EndGatewayBlock/m_7397_ (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/item/ItemStack; net/minecraft/world/level/block/EndGatewayBlock/getCloneItemStack (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/level/block/EndPortalBlock/ ()V net/minecraft/world/level/block/EndPortalBlock/ ()V +MD: net/minecraft/world/level/block/EndPortalBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V net/minecraft/world/level/block/EndPortalBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V +MD: net/minecraft/world/level/block/EndPortalBlock/m_142194_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/block/entity/BlockEntity; net/minecraft/world/level/block/EndPortalBlock/newBlockEntity (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/block/entity/BlockEntity; +MD: net/minecraft/world/level/block/EndPortalBlock/m_214162_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)V net/minecraft/world/level/block/EndPortalBlock/animateTick (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)V +MD: net/minecraft/world/level/block/EndPortalBlock/m_5940_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; net/minecraft/world/level/block/EndPortalBlock/getShape (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; +MD: net/minecraft/world/level/block/EndPortalBlock/m_5946_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/material/Fluid;)Z net/minecraft/world/level/block/EndPortalBlock/canBeReplaced (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/material/Fluid;)Z +MD: net/minecraft/world/level/block/EndPortalBlock/m_7397_ (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/item/ItemStack; net/minecraft/world/level/block/EndPortalBlock/getCloneItemStack (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/level/block/EndPortalBlock/m_7892_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/Entity;)V net/minecraft/world/level/block/EndPortalBlock/entityInside (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/Entity;)V +MD: net/minecraft/world/level/block/EndPortalFrameBlock/ ()V net/minecraft/world/level/block/EndPortalFrameBlock/ ()V +MD: net/minecraft/world/level/block/EndPortalFrameBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V net/minecraft/world/level/block/EndPortalFrameBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V +MD: net/minecraft/world/level/block/EndPortalFrameBlock/m_53077_ ()Lnet/minecraft/world/level/block/state/pattern/BlockPattern; net/minecraft/world/level/block/EndPortalFrameBlock/getOrCreatePortalShape ()Lnet/minecraft/world/level/block/state/pattern/BlockPattern; +MD: net/minecraft/world/level/block/EndPortalFrameBlock/m_5573_ (Lnet/minecraft/world/item/context/BlockPlaceContext;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/EndPortalFrameBlock/getStateForPlacement (Lnet/minecraft/world/item/context/BlockPlaceContext;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/EndPortalFrameBlock/m_5940_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; net/minecraft/world/level/block/EndPortalFrameBlock/getShape (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; +MD: net/minecraft/world/level/block/EndPortalFrameBlock/m_6782_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;)I net/minecraft/world/level/block/EndPortalFrameBlock/getAnalogOutputSignal (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;)I +MD: net/minecraft/world/level/block/EndPortalFrameBlock/m_6843_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/Rotation;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/EndPortalFrameBlock/rotate (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/Rotation;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/EndPortalFrameBlock/m_6943_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/Mirror;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/EndPortalFrameBlock/mirror (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/Mirror;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/EndPortalFrameBlock/m_7278_ (Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/world/level/block/EndPortalFrameBlock/hasAnalogOutputSignal (Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/world/level/block/EndPortalFrameBlock/m_7357_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/pathfinder/PathComputationType;)Z net/minecraft/world/level/block/EndPortalFrameBlock/isPathfindable (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/pathfinder/PathComputationType;)Z +MD: net/minecraft/world/level/block/EndPortalFrameBlock/m_7923_ (Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/world/level/block/EndPortalFrameBlock/useShapeForLightOcclusion (Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/world/level/block/EndPortalFrameBlock/m_7926_ (Lnet/minecraft/world/level/block/state/StateDefinition$Builder;)V net/minecraft/world/level/block/EndPortalFrameBlock/createBlockStateDefinition (Lnet/minecraft/world/level/block/state/StateDefinition$Builder;)V +MD: net/minecraft/world/level/block/EndRodBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V net/minecraft/world/level/block/EndRodBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V +MD: net/minecraft/world/level/block/EndRodBlock/m_214162_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)V net/minecraft/world/level/block/EndRodBlock/animateTick (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)V +MD: net/minecraft/world/level/block/EndRodBlock/m_5573_ (Lnet/minecraft/world/item/context/BlockPlaceContext;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/EndRodBlock/getStateForPlacement (Lnet/minecraft/world/item/context/BlockPlaceContext;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/EndRodBlock/m_7926_ (Lnet/minecraft/world/level/block/state/StateDefinition$Builder;)V net/minecraft/world/level/block/EndRodBlock/createBlockStateDefinition (Lnet/minecraft/world/level/block/state/StateDefinition$Builder;)V +MD: net/minecraft/world/level/block/EnderChestBlock/ ()V net/minecraft/world/level/block/EnderChestBlock/ ()V +MD: net/minecraft/world/level/block/EnderChestBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V net/minecraft/world/level/block/EnderChestBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V +MD: net/minecraft/world/level/block/EnderChestBlock/m_142194_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/block/entity/BlockEntity; net/minecraft/world/level/block/EnderChestBlock/newBlockEntity (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/block/entity/BlockEntity; +MD: net/minecraft/world/level/block/EnderChestBlock/m_142354_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/entity/BlockEntityType;)Lnet/minecraft/world/level/block/entity/BlockEntityTicker; net/minecraft/world/level/block/EnderChestBlock/getTicker (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/entity/BlockEntityType;)Lnet/minecraft/world/level/block/entity/BlockEntityTicker; +MD: net/minecraft/world/level/block/EnderChestBlock/m_213897_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)V net/minecraft/world/level/block/EnderChestBlock/tick (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)V +MD: net/minecraft/world/level/block/EnderChestBlock/m_214162_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)V net/minecraft/world/level/block/EnderChestBlock/animateTick (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)V +MD: net/minecraft/world/level/block/EnderChestBlock/m_53122_ (Lnet/minecraft/world/inventory/PlayerEnderChestContainer;ILnet/minecraft/world/entity/player/Inventory;Lnet/minecraft/world/entity/player/Player;)Lnet/minecraft/world/inventory/AbstractContainerMenu; net/minecraft/world/level/block/EnderChestBlock/lambda$use$1 (Lnet/minecraft/world/inventory/PlayerEnderChestContainer;ILnet/minecraft/world/entity/player/Inventory;Lnet/minecraft/world/entity/player/Player;)Lnet/minecraft/world/inventory/AbstractContainerMenu; +MD: net/minecraft/world/level/block/EnderChestBlock/m_53175_ ()Lnet/minecraft/world/level/block/entity/BlockEntityType; net/minecraft/world/level/block/EnderChestBlock/lambda$new$0 ()Lnet/minecraft/world/level/block/entity/BlockEntityType; +MD: net/minecraft/world/level/block/EnderChestBlock/m_5573_ (Lnet/minecraft/world/item/context/BlockPlaceContext;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/EnderChestBlock/getStateForPlacement (Lnet/minecraft/world/item/context/BlockPlaceContext;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/EnderChestBlock/m_5641_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Z)Lnet/minecraft/world/level/block/DoubleBlockCombiner$NeighborCombineResult; net/minecraft/world/level/block/EnderChestBlock/combine (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Z)Lnet/minecraft/world/level/block/DoubleBlockCombiner$NeighborCombineResult; +MD: net/minecraft/world/level/block/EnderChestBlock/m_5888_ (Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/material/FluidState; net/minecraft/world/level/block/EnderChestBlock/getFluidState (Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/material/FluidState; +MD: net/minecraft/world/level/block/EnderChestBlock/m_5940_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; net/minecraft/world/level/block/EnderChestBlock/getShape (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; +MD: net/minecraft/world/level/block/EnderChestBlock/m_6227_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;Lnet/minecraft/world/phys/BlockHitResult;)Lnet/minecraft/world/InteractionResult; net/minecraft/world/level/block/EnderChestBlock/use (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;Lnet/minecraft/world/phys/BlockHitResult;)Lnet/minecraft/world/InteractionResult; +MD: net/minecraft/world/level/block/EnderChestBlock/m_6843_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/Rotation;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/EnderChestBlock/rotate (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/Rotation;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/EnderChestBlock/m_6943_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/Mirror;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/EnderChestBlock/mirror (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/Mirror;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/EnderChestBlock/m_7357_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/pathfinder/PathComputationType;)Z net/minecraft/world/level/block/EnderChestBlock/isPathfindable (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/pathfinder/PathComputationType;)Z +MD: net/minecraft/world/level/block/EnderChestBlock/m_7417_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/EnderChestBlock/updateShape (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/EnderChestBlock/m_7514_ (Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/block/RenderShape; net/minecraft/world/level/block/EnderChestBlock/getRenderShape (Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/block/RenderShape; +MD: net/minecraft/world/level/block/EnderChestBlock/m_7926_ (Lnet/minecraft/world/level/block/state/StateDefinition$Builder;)V net/minecraft/world/level/block/EnderChestBlock/createBlockStateDefinition (Lnet/minecraft/world/level/block/state/StateDefinition$Builder;)V +MD: net/minecraft/world/level/block/EntityBlock/m_142194_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/block/entity/BlockEntity; net/minecraft/world/level/block/EntityBlock/newBlockEntity (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/block/entity/BlockEntity; +MD: net/minecraft/world/level/block/EntityBlock/m_142354_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/entity/BlockEntityType;)Lnet/minecraft/world/level/block/entity/BlockEntityTicker; net/minecraft/world/level/block/EntityBlock/getTicker (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/entity/BlockEntityType;)Lnet/minecraft/world/level/block/entity/BlockEntityTicker; +MD: net/minecraft/world/level/block/EntityBlock/m_214009_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/level/block/entity/BlockEntity;)Lnet/minecraft/world/level/gameevent/GameEventListener; net/minecraft/world/level/block/EntityBlock/getListener (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/level/block/entity/BlockEntity;)Lnet/minecraft/world/level/gameevent/GameEventListener; +MD: net/minecraft/world/level/block/EquipableCarvedPumpkinBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V net/minecraft/world/level/block/EquipableCarvedPumpkinBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V +MD: net/minecraft/world/level/block/EquipableCarvedPumpkinBlock/m_40402_ ()Lnet/minecraft/world/entity/EquipmentSlot; net/minecraft/world/level/block/EquipableCarvedPumpkinBlock/getEquipmentSlot ()Lnet/minecraft/world/entity/EquipmentSlot; +MD: net/minecraft/world/level/block/FaceAttachedHorizontalDirectionalBlock/ ()V net/minecraft/world/level/block/FaceAttachedHorizontalDirectionalBlock/ ()V +MD: net/minecraft/world/level/block/FaceAttachedHorizontalDirectionalBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V net/minecraft/world/level/block/FaceAttachedHorizontalDirectionalBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V +MD: net/minecraft/world/level/block/FaceAttachedHorizontalDirectionalBlock/m_53196_ (Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Direction;)Z net/minecraft/world/level/block/FaceAttachedHorizontalDirectionalBlock/canAttach (Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Direction;)Z +MD: net/minecraft/world/level/block/FaceAttachedHorizontalDirectionalBlock/m_53200_ (Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/core/Direction; net/minecraft/world/level/block/FaceAttachedHorizontalDirectionalBlock/getConnectedDirection (Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/core/Direction; +MD: net/minecraft/world/level/block/FaceAttachedHorizontalDirectionalBlock/m_5573_ (Lnet/minecraft/world/item/context/BlockPlaceContext;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/FaceAttachedHorizontalDirectionalBlock/getStateForPlacement (Lnet/minecraft/world/item/context/BlockPlaceContext;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/FaceAttachedHorizontalDirectionalBlock/m_7417_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/FaceAttachedHorizontalDirectionalBlock/updateShape (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/FaceAttachedHorizontalDirectionalBlock/m_7898_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/level/block/FaceAttachedHorizontalDirectionalBlock/canSurvive (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/level/block/FaceAttachedHorizontalDirectionalBlock$1/ ()V net/minecraft/world/level/block/FaceAttachedHorizontalDirectionalBlock$1/ ()V +MD: net/minecraft/world/level/block/Fallable/m_142525_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/item/FallingBlockEntity;)V net/minecraft/world/level/block/Fallable/onBrokenAfterFall (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/item/FallingBlockEntity;)V +MD: net/minecraft/world/level/block/Fallable/m_252932_ (Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/world/damagesource/DamageSource; net/minecraft/world/level/block/Fallable/getFallDamageSource (Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/world/damagesource/DamageSource; +MD: net/minecraft/world/level/block/Fallable/m_48792_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/entity/item/FallingBlockEntity;)V net/minecraft/world/level/block/Fallable/onLand (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/entity/item/FallingBlockEntity;)V +MD: net/minecraft/world/level/block/FallingBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V net/minecraft/world/level/block/FallingBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V +MD: net/minecraft/world/level/block/FallingBlock/m_213897_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)V net/minecraft/world/level/block/FallingBlock/tick (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)V +MD: net/minecraft/world/level/block/FallingBlock/m_214162_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)V net/minecraft/world/level/block/FallingBlock/animateTick (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)V +MD: net/minecraft/world/level/block/FallingBlock/m_53241_ (Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/world/level/block/FallingBlock/isFree (Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/world/level/block/FallingBlock/m_6248_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)I net/minecraft/world/level/block/FallingBlock/getDustColor (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)I +MD: net/minecraft/world/level/block/FallingBlock/m_6788_ (Lnet/minecraft/world/entity/item/FallingBlockEntity;)V net/minecraft/world/level/block/FallingBlock/falling (Lnet/minecraft/world/entity/item/FallingBlockEntity;)V +MD: net/minecraft/world/level/block/FallingBlock/m_6807_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Z)V net/minecraft/world/level/block/FallingBlock/onPlace (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Z)V +MD: net/minecraft/world/level/block/FallingBlock/m_7198_ ()I net/minecraft/world/level/block/FallingBlock/getDelayAfterPlace ()I +MD: net/minecraft/world/level/block/FallingBlock/m_7417_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/FallingBlock/updateShape (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/FarmBlock/ ()V net/minecraft/world/level/block/FarmBlock/ ()V +MD: net/minecraft/world/level/block/FarmBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V net/minecraft/world/level/block/FarmBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V +MD: net/minecraft/world/level/block/FarmBlock/m_142072_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/Entity;F)V net/minecraft/world/level/block/FarmBlock/fallOn (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/Entity;F)V +MD: net/minecraft/world/level/block/FarmBlock/m_213897_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)V net/minecraft/world/level/block/FarmBlock/tick (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)V +MD: net/minecraft/world/level/block/FarmBlock/m_213898_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)V net/minecraft/world/level/block/FarmBlock/randomTick (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)V +MD: net/minecraft/world/level/block/FarmBlock/m_269406_ (Lnet/minecraft/world/entity/Entity;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;)V net/minecraft/world/level/block/FarmBlock/turnToDirt (Lnet/minecraft/world/entity/Entity;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/world/level/block/FarmBlock/m_53250_ (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/level/block/FarmBlock/shouldMaintainFarmland (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/level/block/FarmBlock/m_53258_ (Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/level/block/FarmBlock/isNearWater (Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/level/block/FarmBlock/m_5573_ (Lnet/minecraft/world/item/context/BlockPlaceContext;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/FarmBlock/getStateForPlacement (Lnet/minecraft/world/item/context/BlockPlaceContext;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/FarmBlock/m_5940_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; net/minecraft/world/level/block/FarmBlock/getShape (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; +MD: net/minecraft/world/level/block/FarmBlock/m_7357_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/pathfinder/PathComputationType;)Z net/minecraft/world/level/block/FarmBlock/isPathfindable (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/pathfinder/PathComputationType;)Z +MD: net/minecraft/world/level/block/FarmBlock/m_7417_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/FarmBlock/updateShape (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/FarmBlock/m_7898_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/level/block/FarmBlock/canSurvive (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/level/block/FarmBlock/m_7923_ (Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/world/level/block/FarmBlock/useShapeForLightOcclusion (Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/world/level/block/FarmBlock/m_7926_ (Lnet/minecraft/world/level/block/state/StateDefinition$Builder;)V net/minecraft/world/level/block/FarmBlock/createBlockStateDefinition (Lnet/minecraft/world/level/block/state/StateDefinition$Builder;)V +MD: net/minecraft/world/level/block/FenceBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V net/minecraft/world/level/block/FenceBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V +MD: net/minecraft/world/level/block/FenceBlock/m_153254_ (Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/world/level/block/FenceBlock/isSameFence (Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/world/level/block/FenceBlock/m_53329_ (Lnet/minecraft/world/level/block/state/BlockState;ZLnet/minecraft/core/Direction;)Z net/minecraft/world/level/block/FenceBlock/connectsTo (Lnet/minecraft/world/level/block/state/BlockState;ZLnet/minecraft/core/Direction;)Z +MD: net/minecraft/world/level/block/FenceBlock/m_5573_ (Lnet/minecraft/world/item/context/BlockPlaceContext;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/FenceBlock/getStateForPlacement (Lnet/minecraft/world/item/context/BlockPlaceContext;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/FenceBlock/m_5909_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; net/minecraft/world/level/block/FenceBlock/getVisualShape (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; +MD: net/minecraft/world/level/block/FenceBlock/m_6227_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;Lnet/minecraft/world/phys/BlockHitResult;)Lnet/minecraft/world/InteractionResult; net/minecraft/world/level/block/FenceBlock/use (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;Lnet/minecraft/world/phys/BlockHitResult;)Lnet/minecraft/world/InteractionResult; +MD: net/minecraft/world/level/block/FenceBlock/m_7357_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/pathfinder/PathComputationType;)Z net/minecraft/world/level/block/FenceBlock/isPathfindable (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/pathfinder/PathComputationType;)Z +MD: net/minecraft/world/level/block/FenceBlock/m_7417_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/FenceBlock/updateShape (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/FenceBlock/m_7926_ (Lnet/minecraft/world/level/block/state/StateDefinition$Builder;)V net/minecraft/world/level/block/FenceBlock/createBlockStateDefinition (Lnet/minecraft/world/level/block/state/StateDefinition$Builder;)V +MD: net/minecraft/world/level/block/FenceBlock/m_7952_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/phys/shapes/VoxelShape; net/minecraft/world/level/block/FenceBlock/getOcclusionShape (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/phys/shapes/VoxelShape; +MD: net/minecraft/world/level/block/FenceGateBlock/ ()V net/minecraft/world/level/block/FenceGateBlock/ ()V +MD: net/minecraft/world/level/block/FenceGateBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;Lnet/minecraft/world/level/block/state/properties/WoodType;)V net/minecraft/world/level/block/FenceGateBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;Lnet/minecraft/world/level/block/state/properties/WoodType;)V +MD: net/minecraft/world/level/block/FenceGateBlock/m_53378_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/Direction;)Z net/minecraft/world/level/block/FenceGateBlock/connectsToDirection (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/Direction;)Z +MD: net/minecraft/world/level/block/FenceGateBlock/m_53404_ (Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/world/level/block/FenceGateBlock/isWall (Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/world/level/block/FenceGateBlock/m_5573_ (Lnet/minecraft/world/item/context/BlockPlaceContext;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/FenceGateBlock/getStateForPlacement (Lnet/minecraft/world/item/context/BlockPlaceContext;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/FenceGateBlock/m_5939_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; net/minecraft/world/level/block/FenceGateBlock/getCollisionShape (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; +MD: net/minecraft/world/level/block/FenceGateBlock/m_5940_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; net/minecraft/world/level/block/FenceGateBlock/getShape (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; +MD: net/minecraft/world/level/block/FenceGateBlock/m_6227_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;Lnet/minecraft/world/phys/BlockHitResult;)Lnet/minecraft/world/InteractionResult; net/minecraft/world/level/block/FenceGateBlock/use (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;Lnet/minecraft/world/phys/BlockHitResult;)Lnet/minecraft/world/InteractionResult; +MD: net/minecraft/world/level/block/FenceGateBlock/m_6861_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/Block;Lnet/minecraft/core/BlockPos;Z)V net/minecraft/world/level/block/FenceGateBlock/neighborChanged (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/Block;Lnet/minecraft/core/BlockPos;Z)V +MD: net/minecraft/world/level/block/FenceGateBlock/m_7357_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/pathfinder/PathComputationType;)Z net/minecraft/world/level/block/FenceGateBlock/isPathfindable (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/pathfinder/PathComputationType;)Z +MD: net/minecraft/world/level/block/FenceGateBlock/m_7417_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/FenceGateBlock/updateShape (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/FenceGateBlock/m_7926_ (Lnet/minecraft/world/level/block/state/StateDefinition$Builder;)V net/minecraft/world/level/block/FenceGateBlock/createBlockStateDefinition (Lnet/minecraft/world/level/block/state/StateDefinition$Builder;)V +MD: net/minecraft/world/level/block/FenceGateBlock/m_7947_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/phys/shapes/VoxelShape; net/minecraft/world/level/block/FenceGateBlock/getBlockSupportShape (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/phys/shapes/VoxelShape; +MD: net/minecraft/world/level/block/FenceGateBlock/m_7952_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/phys/shapes/VoxelShape; net/minecraft/world/level/block/FenceGateBlock/getOcclusionShape (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/phys/shapes/VoxelShape; +MD: net/minecraft/world/level/block/FenceGateBlock$1/ ()V net/minecraft/world/level/block/FenceGateBlock$1/ ()V +MD: net/minecraft/world/level/block/FireBlock/ ()V net/minecraft/world/level/block/FireBlock/ ()V +MD: net/minecraft/world/level/block/FireBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V net/minecraft/world/level/block/FireBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V +MD: net/minecraft/world/level/block/FireBlock/m_213897_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)V net/minecraft/world/level/block/FireBlock/tick (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)V +MD: net/minecraft/world/level/block/FireBlock/m_221148_ (Lnet/minecraft/util/RandomSource;)I net/minecraft/world/level/block/FireBlock/getFireTickDelay (Lnet/minecraft/util/RandomSource;)I +MD: net/minecraft/world/level/block/FireBlock/m_221150_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;ILnet/minecraft/util/RandomSource;I)V net/minecraft/world/level/block/FireBlock/checkBurnOut (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;ILnet/minecraft/util/RandomSource;I)V +MD: net/minecraft/world/level/block/FireBlock/m_221156_ (Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;)I net/minecraft/world/level/block/FireBlock/getIgniteOdds (Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;)I +MD: net/minecraft/world/level/block/FireBlock/m_221164_ (Lnet/minecraft/world/level/block/state/BlockState;)I net/minecraft/world/level/block/FireBlock/getBurnOdds (Lnet/minecraft/world/level/block/state/BlockState;)I +MD: net/minecraft/world/level/block/FireBlock/m_221166_ (Lnet/minecraft/world/level/block/state/BlockState;)I net/minecraft/world/level/block/FireBlock/getIgniteOdds (Lnet/minecraft/world/level/block/state/BlockState;)I +MD: net/minecraft/world/level/block/FireBlock/m_53428_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/level/block/FireBlock/isNearRain (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/level/block/FireBlock/m_53437_ (Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;I)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/FireBlock/getStateWithAge (Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;I)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/FireBlock/m_53444_ (Lnet/minecraft/world/level/block/Block;II)V net/minecraft/world/level/block/FireBlock/setFlammable (Lnet/minecraft/world/level/block/Block;II)V +MD: net/minecraft/world/level/block/FireBlock/m_53466_ (Ljava/util/Map$Entry;)Z net/minecraft/world/level/block/FireBlock/lambda$static$0 (Ljava/util/Map$Entry;)Z +MD: net/minecraft/world/level/block/FireBlock/m_53470_ (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/FireBlock/getStateForPlacement (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/FireBlock/m_53484_ ()V net/minecraft/world/level/block/FireBlock/bootStrap ()V +MD: net/minecraft/world/level/block/FireBlock/m_53485_ (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/level/block/FireBlock/isValidFireLocation (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/level/block/FireBlock/m_53490_ (Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/phys/shapes/VoxelShape; net/minecraft/world/level/block/FireBlock/calculateShape (Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/phys/shapes/VoxelShape; +MD: net/minecraft/world/level/block/FireBlock/m_53496_ (Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/world/level/block/FireBlock/lambda$new$1 (Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/world/level/block/FireBlock/m_5573_ (Lnet/minecraft/world/item/context/BlockPlaceContext;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/FireBlock/getStateForPlacement (Lnet/minecraft/world/item/context/BlockPlaceContext;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/FireBlock/m_5940_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; net/minecraft/world/level/block/FireBlock/getShape (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; +MD: net/minecraft/world/level/block/FireBlock/m_6807_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Z)V net/minecraft/world/level/block/FireBlock/onPlace (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Z)V +MD: net/minecraft/world/level/block/FireBlock/m_7417_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/FireBlock/updateShape (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/FireBlock/m_7599_ (Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/world/level/block/FireBlock/canBurn (Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/world/level/block/FireBlock/m_7898_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/level/block/FireBlock/canSurvive (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/level/block/FireBlock/m_7926_ (Lnet/minecraft/world/level/block/state/StateDefinition$Builder;)V net/minecraft/world/level/block/FireBlock/createBlockStateDefinition (Lnet/minecraft/world/level/block/state/StateDefinition$Builder;)V +MD: net/minecraft/world/level/block/FletchingTableBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V net/minecraft/world/level/block/FletchingTableBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V +MD: net/minecraft/world/level/block/FletchingTableBlock/m_6227_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;Lnet/minecraft/world/phys/BlockHitResult;)Lnet/minecraft/world/InteractionResult; net/minecraft/world/level/block/FletchingTableBlock/use (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;Lnet/minecraft/world/phys/BlockHitResult;)Lnet/minecraft/world/InteractionResult; +MD: net/minecraft/world/level/block/FlowerBlock/ ()V net/minecraft/world/level/block/FlowerBlock/ ()V +MD: net/minecraft/world/level/block/FlowerBlock/ (Lnet/minecraft/world/effect/MobEffect;ILnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V net/minecraft/world/level/block/FlowerBlock/ (Lnet/minecraft/world/effect/MobEffect;ILnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V +MD: net/minecraft/world/level/block/FlowerBlock/m_53521_ ()Lnet/minecraft/world/effect/MobEffect; net/minecraft/world/level/block/FlowerBlock/getSuspiciousEffect ()Lnet/minecraft/world/effect/MobEffect; +MD: net/minecraft/world/level/block/FlowerBlock/m_53522_ ()I net/minecraft/world/level/block/FlowerBlock/getEffectDuration ()I +MD: net/minecraft/world/level/block/FlowerBlock/m_5940_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; net/minecraft/world/level/block/FlowerBlock/getShape (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; +MD: net/minecraft/world/level/block/FlowerPotBlock/ ()V net/minecraft/world/level/block/FlowerPotBlock/ ()V +MD: net/minecraft/world/level/block/FlowerPotBlock/ (Lnet/minecraft/world/level/block/Block;Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V net/minecraft/world/level/block/FlowerPotBlock/ (Lnet/minecraft/world/level/block/Block;Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V +MD: net/minecraft/world/level/block/FlowerPotBlock/m_153267_ ()Z net/minecraft/world/level/block/FlowerPotBlock/isEmpty ()Z +MD: net/minecraft/world/level/block/FlowerPotBlock/m_53560_ ()Lnet/minecraft/world/level/block/Block; net/minecraft/world/level/block/FlowerPotBlock/getContent ()Lnet/minecraft/world/level/block/Block; +MD: net/minecraft/world/level/block/FlowerPotBlock/m_5940_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; net/minecraft/world/level/block/FlowerPotBlock/getShape (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; +MD: net/minecraft/world/level/block/FlowerPotBlock/m_6227_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;Lnet/minecraft/world/phys/BlockHitResult;)Lnet/minecraft/world/InteractionResult; net/minecraft/world/level/block/FlowerPotBlock/use (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;Lnet/minecraft/world/phys/BlockHitResult;)Lnet/minecraft/world/InteractionResult; +MD: net/minecraft/world/level/block/FlowerPotBlock/m_7357_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/pathfinder/PathComputationType;)Z net/minecraft/world/level/block/FlowerPotBlock/isPathfindable (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/pathfinder/PathComputationType;)Z +MD: net/minecraft/world/level/block/FlowerPotBlock/m_7397_ (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/item/ItemStack; net/minecraft/world/level/block/FlowerPotBlock/getCloneItemStack (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/level/block/FlowerPotBlock/m_7417_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/FlowerPotBlock/updateShape (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/FlowerPotBlock/m_7514_ (Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/block/RenderShape; net/minecraft/world/level/block/FlowerPotBlock/getRenderShape (Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/block/RenderShape; +MD: net/minecraft/world/level/block/FrogspawnBlock/ ()V net/minecraft/world/level/block/FrogspawnBlock/ ()V +MD: net/minecraft/world/level/block/FrogspawnBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V net/minecraft/world/level/block/FrogspawnBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V +MD: net/minecraft/world/level/block/FrogspawnBlock/m_213897_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)V net/minecraft/world/level/block/FrogspawnBlock/tick (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)V +MD: net/minecraft/world/level/block/FrogspawnBlock/m_221178_ (II)V net/minecraft/world/level/block/FrogspawnBlock/setHatchDelay (II)V +MD: net/minecraft/world/level/block/FrogspawnBlock/m_221181_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)V net/minecraft/world/level/block/FrogspawnBlock/hatchFrogspawn (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)V +MD: net/minecraft/world/level/block/FrogspawnBlock/m_221185_ (Lnet/minecraft/util/RandomSource;)I net/minecraft/world/level/block/FrogspawnBlock/getFrogspawnHatchDelay (Lnet/minecraft/util/RandomSource;)I +MD: net/minecraft/world/level/block/FrogspawnBlock/m_221187_ (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/level/block/FrogspawnBlock/mayPlaceOn (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/level/block/FrogspawnBlock/m_221190_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;)V net/minecraft/world/level/block/FrogspawnBlock/destroyBlock (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/world/level/block/FrogspawnBlock/m_221219_ ()V net/minecraft/world/level/block/FrogspawnBlock/setDefaultHatchDelay ()V +MD: net/minecraft/world/level/block/FrogspawnBlock/m_221220_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)V net/minecraft/world/level/block/FrogspawnBlock/spawnTadpoles (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)V +MD: net/minecraft/world/level/block/FrogspawnBlock/m_221224_ (Lnet/minecraft/util/RandomSource;)D net/minecraft/world/level/block/FrogspawnBlock/getRandomTadpolePositionOffset (Lnet/minecraft/util/RandomSource;)D +MD: net/minecraft/world/level/block/FrogspawnBlock/m_5940_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; net/minecraft/world/level/block/FrogspawnBlock/getShape (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; +MD: net/minecraft/world/level/block/FrogspawnBlock/m_6807_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Z)V net/minecraft/world/level/block/FrogspawnBlock/onPlace (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Z)V +MD: net/minecraft/world/level/block/FrogspawnBlock/m_7417_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/FrogspawnBlock/updateShape (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/FrogspawnBlock/m_7892_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/Entity;)V net/minecraft/world/level/block/FrogspawnBlock/entityInside (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/Entity;)V +MD: net/minecraft/world/level/block/FrogspawnBlock/m_7898_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/level/block/FrogspawnBlock/canSurvive (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/level/block/FrostedIceBlock/ ()V net/minecraft/world/level/block/FrostedIceBlock/ ()V +MD: net/minecraft/world/level/block/FrostedIceBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V net/minecraft/world/level/block/FrostedIceBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V +MD: net/minecraft/world/level/block/FrostedIceBlock/m_213897_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)V net/minecraft/world/level/block/FrostedIceBlock/tick (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)V +MD: net/minecraft/world/level/block/FrostedIceBlock/m_213898_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)V net/minecraft/world/level/block/FrostedIceBlock/randomTick (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)V +MD: net/minecraft/world/level/block/FrostedIceBlock/m_53565_ (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;I)Z net/minecraft/world/level/block/FrostedIceBlock/fewerNeigboursThan (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;I)Z +MD: net/minecraft/world/level/block/FrostedIceBlock/m_53592_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/level/block/FrostedIceBlock/slightlyMelt (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/level/block/FrostedIceBlock/m_6861_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/Block;Lnet/minecraft/core/BlockPos;Z)V net/minecraft/world/level/block/FrostedIceBlock/neighborChanged (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/Block;Lnet/minecraft/core/BlockPos;Z)V +MD: net/minecraft/world/level/block/FrostedIceBlock/m_7397_ (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/item/ItemStack; net/minecraft/world/level/block/FrostedIceBlock/getCloneItemStack (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/level/block/FrostedIceBlock/m_7926_ (Lnet/minecraft/world/level/block/state/StateDefinition$Builder;)V net/minecraft/world/level/block/FrostedIceBlock/createBlockStateDefinition (Lnet/minecraft/world/level/block/state/StateDefinition$Builder;)V +MD: net/minecraft/world/level/block/FungusBlock/ ()V net/minecraft/world/level/block/FungusBlock/ ()V +MD: net/minecraft/world/level/block/FungusBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;Lnet/minecraft/resources/ResourceKey;Lnet/minecraft/world/level/block/Block;)V net/minecraft/world/level/block/FungusBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;Lnet/minecraft/resources/ResourceKey;Lnet/minecraft/world/level/block/Block;)V +MD: net/minecraft/world/level/block/FungusBlock/m_214148_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V net/minecraft/world/level/block/FungusBlock/performBonemeal (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V +MD: net/minecraft/world/level/block/FungusBlock/m_214167_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/world/level/block/FungusBlock/isBonemealSuccess (Lnet/minecraft/world/level/Level;Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/world/level/block/FungusBlock/m_254840_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Holder;)V net/minecraft/world/level/block/FungusBlock/lambda$performBonemeal$0 (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Holder;)V +MD: net/minecraft/world/level/block/FungusBlock/m_255216_ (Lnet/minecraft/world/level/LevelReader;)Ljava/util/Optional; net/minecraft/world/level/block/FungusBlock/getFeature (Lnet/minecraft/world/level/LevelReader;)Ljava/util/Optional; +MD: net/minecraft/world/level/block/FungusBlock/m_5940_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; net/minecraft/world/level/block/FungusBlock/getShape (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; +MD: net/minecraft/world/level/block/FungusBlock/m_6266_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/level/block/FungusBlock/mayPlaceOn (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/level/block/FungusBlock/m_7370_ (Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Z)Z net/minecraft/world/level/block/FungusBlock/isValidBonemealTarget (Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Z)Z +MD: net/minecraft/world/level/block/FurnaceBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V net/minecraft/world/level/block/FurnaceBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V +MD: net/minecraft/world/level/block/FurnaceBlock/m_142194_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/block/entity/BlockEntity; net/minecraft/world/level/block/FurnaceBlock/newBlockEntity (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/block/entity/BlockEntity; +MD: net/minecraft/world/level/block/FurnaceBlock/m_142354_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/entity/BlockEntityType;)Lnet/minecraft/world/level/block/entity/BlockEntityTicker; net/minecraft/world/level/block/FurnaceBlock/getTicker (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/entity/BlockEntityType;)Lnet/minecraft/world/level/block/entity/BlockEntityTicker; +MD: net/minecraft/world/level/block/FurnaceBlock/m_214162_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)V net/minecraft/world/level/block/FurnaceBlock/animateTick (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)V +MD: net/minecraft/world/level/block/FurnaceBlock/m_7137_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/player/Player;)V net/minecraft/world/level/block/FurnaceBlock/openContainer (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/player/Player;)V +MD: net/minecraft/world/level/block/GlassBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V net/minecraft/world/level/block/GlassBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V +MD: net/minecraft/world/level/block/GlazedTerracottaBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V net/minecraft/world/level/block/GlazedTerracottaBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V +MD: net/minecraft/world/level/block/GlazedTerracottaBlock/m_5573_ (Lnet/minecraft/world/item/context/BlockPlaceContext;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/GlazedTerracottaBlock/getStateForPlacement (Lnet/minecraft/world/item/context/BlockPlaceContext;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/GlazedTerracottaBlock/m_7926_ (Lnet/minecraft/world/level/block/state/StateDefinition$Builder;)V net/minecraft/world/level/block/GlazedTerracottaBlock/createBlockStateDefinition (Lnet/minecraft/world/level/block/state/StateDefinition$Builder;)V +MD: net/minecraft/world/level/block/GlowLichenBlock/ ()V net/minecraft/world/level/block/GlowLichenBlock/ ()V +MD: net/minecraft/world/level/block/GlowLichenBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V net/minecraft/world/level/block/GlowLichenBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V +MD: net/minecraft/world/level/block/GlowLichenBlock/m_181219_ (ILnet/minecraft/world/level/block/state/BlockState;)I net/minecraft/world/level/block/GlowLichenBlock/lambda$emission$0 (ILnet/minecraft/world/level/block/state/BlockState;)I +MD: net/minecraft/world/level/block/GlowLichenBlock/m_181222_ (I)Ljava/util/function/ToIntFunction; net/minecraft/world/level/block/GlowLichenBlock/emission (I)Ljava/util/function/ToIntFunction; +MD: net/minecraft/world/level/block/GlowLichenBlock/m_181228_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Direction;)Z net/minecraft/world/level/block/GlowLichenBlock/lambda$isValidBonemealTarget$1 (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Direction;)Z +MD: net/minecraft/world/level/block/GlowLichenBlock/m_213612_ ()Lnet/minecraft/world/level/block/MultifaceSpreader; net/minecraft/world/level/block/GlowLichenBlock/getSpreader ()Lnet/minecraft/world/level/block/MultifaceSpreader; +MD: net/minecraft/world/level/block/GlowLichenBlock/m_214148_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V net/minecraft/world/level/block/GlowLichenBlock/performBonemeal (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V +MD: net/minecraft/world/level/block/GlowLichenBlock/m_214167_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/world/level/block/GlowLichenBlock/isBonemealSuccess (Lnet/minecraft/world/level/Level;Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/world/level/block/GlowLichenBlock/m_5888_ (Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/material/FluidState; net/minecraft/world/level/block/GlowLichenBlock/getFluidState (Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/material/FluidState; +MD: net/minecraft/world/level/block/GlowLichenBlock/m_6864_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/item/context/BlockPlaceContext;)Z net/minecraft/world/level/block/GlowLichenBlock/canBeReplaced (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/item/context/BlockPlaceContext;)Z +MD: net/minecraft/world/level/block/GlowLichenBlock/m_7370_ (Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Z)Z net/minecraft/world/level/block/GlowLichenBlock/isValidBonemealTarget (Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Z)Z +MD: net/minecraft/world/level/block/GlowLichenBlock/m_7417_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/GlowLichenBlock/updateShape (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/GlowLichenBlock/m_7420_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/level/block/GlowLichenBlock/propagatesSkylightDown (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/level/block/GlowLichenBlock/m_7926_ (Lnet/minecraft/world/level/block/state/StateDefinition$Builder;)V net/minecraft/world/level/block/GlowLichenBlock/createBlockStateDefinition (Lnet/minecraft/world/level/block/state/StateDefinition$Builder;)V +MD: net/minecraft/world/level/block/GrassBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V net/minecraft/world/level/block/GrassBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V +MD: net/minecraft/world/level/block/GrassBlock/m_214148_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V net/minecraft/world/level/block/GrassBlock/performBonemeal (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V +MD: net/minecraft/world/level/block/GrassBlock/m_214167_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/world/level/block/GrassBlock/isBonemealSuccess (Lnet/minecraft/world/level/Level;Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/world/level/block/GrassBlock/m_7370_ (Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Z)Z net/minecraft/world/level/block/GrassBlock/isValidBonemealTarget (Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Z)Z +MD: net/minecraft/world/level/block/GravelBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V net/minecraft/world/level/block/GravelBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V +MD: net/minecraft/world/level/block/GravelBlock/m_6248_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)I net/minecraft/world/level/block/GravelBlock/getDustColor (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)I +MD: net/minecraft/world/level/block/GrindstoneBlock/ ()V net/minecraft/world/level/block/GrindstoneBlock/ ()V +MD: net/minecraft/world/level/block/GrindstoneBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V net/minecraft/world/level/block/GrindstoneBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V +MD: net/minecraft/world/level/block/GrindstoneBlock/m_53809_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;ILnet/minecraft/world/entity/player/Inventory;Lnet/minecraft/world/entity/player/Player;)Lnet/minecraft/world/inventory/AbstractContainerMenu; net/minecraft/world/level/block/GrindstoneBlock/lambda$getMenuProvider$0 (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;ILnet/minecraft/world/entity/player/Inventory;Lnet/minecraft/world/entity/player/Player;)Lnet/minecraft/world/inventory/AbstractContainerMenu; +MD: net/minecraft/world/level/block/GrindstoneBlock/m_53855_ (Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/phys/shapes/VoxelShape; net/minecraft/world/level/block/GrindstoneBlock/getVoxelShape (Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/phys/shapes/VoxelShape; +MD: net/minecraft/world/level/block/GrindstoneBlock/m_5939_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; net/minecraft/world/level/block/GrindstoneBlock/getCollisionShape (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; +MD: net/minecraft/world/level/block/GrindstoneBlock/m_5940_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; net/minecraft/world/level/block/GrindstoneBlock/getShape (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; +MD: net/minecraft/world/level/block/GrindstoneBlock/m_6227_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;Lnet/minecraft/world/phys/BlockHitResult;)Lnet/minecraft/world/InteractionResult; net/minecraft/world/level/block/GrindstoneBlock/use (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;Lnet/minecraft/world/phys/BlockHitResult;)Lnet/minecraft/world/InteractionResult; +MD: net/minecraft/world/level/block/GrindstoneBlock/m_6843_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/Rotation;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/GrindstoneBlock/rotate (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/Rotation;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/GrindstoneBlock/m_6943_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/Mirror;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/GrindstoneBlock/mirror (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/Mirror;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/GrindstoneBlock/m_7246_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/MenuProvider; net/minecraft/world/level/block/GrindstoneBlock/getMenuProvider (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/MenuProvider; +MD: net/minecraft/world/level/block/GrindstoneBlock/m_7357_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/pathfinder/PathComputationType;)Z net/minecraft/world/level/block/GrindstoneBlock/isPathfindable (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/pathfinder/PathComputationType;)Z +MD: net/minecraft/world/level/block/GrindstoneBlock/m_7514_ (Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/block/RenderShape; net/minecraft/world/level/block/GrindstoneBlock/getRenderShape (Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/block/RenderShape; +MD: net/minecraft/world/level/block/GrindstoneBlock/m_7898_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/level/block/GrindstoneBlock/canSurvive (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/level/block/GrindstoneBlock/m_7926_ (Lnet/minecraft/world/level/block/state/StateDefinition$Builder;)V net/minecraft/world/level/block/GrindstoneBlock/createBlockStateDefinition (Lnet/minecraft/world/level/block/state/StateDefinition$Builder;)V +MD: net/minecraft/world/level/block/GrindstoneBlock$1/ ()V net/minecraft/world/level/block/GrindstoneBlock$1/ ()V +MD: net/minecraft/world/level/block/GrowingPlantBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;Lnet/minecraft/core/Direction;Lnet/minecraft/world/phys/shapes/VoxelShape;Z)V net/minecraft/world/level/block/GrowingPlantBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;Lnet/minecraft/core/Direction;Lnet/minecraft/world/phys/shapes/VoxelShape;Z)V +MD: net/minecraft/world/level/block/GrowingPlantBlock/m_142209_ (Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/world/level/block/GrowingPlantBlock/canAttachTo (Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/world/level/block/GrowingPlantBlock/m_213897_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)V net/minecraft/world/level/block/GrowingPlantBlock/tick (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)V +MD: net/minecraft/world/level/block/GrowingPlantBlock/m_5573_ (Lnet/minecraft/world/item/context/BlockPlaceContext;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/GrowingPlantBlock/getStateForPlacement (Lnet/minecraft/world/item/context/BlockPlaceContext;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/GrowingPlantBlock/m_5940_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; net/minecraft/world/level/block/GrowingPlantBlock/getShape (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; +MD: net/minecraft/world/level/block/GrowingPlantBlock/m_7272_ ()Lnet/minecraft/world/level/block/GrowingPlantHeadBlock; net/minecraft/world/level/block/GrowingPlantBlock/getHeadBlock ()Lnet/minecraft/world/level/block/GrowingPlantHeadBlock; +MD: net/minecraft/world/level/block/GrowingPlantBlock/m_7722_ (Lnet/minecraft/world/level/LevelAccessor;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/GrowingPlantBlock/getStateForPlacement (Lnet/minecraft/world/level/LevelAccessor;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/GrowingPlantBlock/m_7777_ ()Lnet/minecraft/world/level/block/Block; net/minecraft/world/level/block/GrowingPlantBlock/getBodyBlock ()Lnet/minecraft/world/level/block/Block; +MD: net/minecraft/world/level/block/GrowingPlantBlock/m_7898_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/level/block/GrowingPlantBlock/canSurvive (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/level/block/GrowingPlantBodyBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;Lnet/minecraft/core/Direction;Lnet/minecraft/world/phys/shapes/VoxelShape;Z)V net/minecraft/world/level/block/GrowingPlantBodyBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;Lnet/minecraft/core/Direction;Lnet/minecraft/world/phys/shapes/VoxelShape;Z)V +MD: net/minecraft/world/level/block/GrowingPlantBodyBlock/m_142644_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/GrowingPlantBodyBlock/updateHeadAfterConvertedFromBody (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/GrowingPlantBodyBlock/m_153322_ (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/Block;)Ljava/util/Optional; net/minecraft/world/level/block/GrowingPlantBodyBlock/getHeadPos (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/Block;)Ljava/util/Optional; +MD: net/minecraft/world/level/block/GrowingPlantBodyBlock/m_214148_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V net/minecraft/world/level/block/GrowingPlantBodyBlock/performBonemeal (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V +MD: net/minecraft/world/level/block/GrowingPlantBodyBlock/m_214167_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/world/level/block/GrowingPlantBodyBlock/isBonemealSuccess (Lnet/minecraft/world/level/Level;Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/world/level/block/GrowingPlantBodyBlock/m_6864_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/item/context/BlockPlaceContext;)Z net/minecraft/world/level/block/GrowingPlantBodyBlock/canBeReplaced (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/item/context/BlockPlaceContext;)Z +MD: net/minecraft/world/level/block/GrowingPlantBodyBlock/m_7370_ (Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Z)Z net/minecraft/world/level/block/GrowingPlantBodyBlock/isValidBonemealTarget (Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Z)Z +MD: net/minecraft/world/level/block/GrowingPlantBodyBlock/m_7397_ (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/item/ItemStack; net/minecraft/world/level/block/GrowingPlantBodyBlock/getCloneItemStack (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/level/block/GrowingPlantBodyBlock/m_7417_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/GrowingPlantBodyBlock/updateShape (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/GrowingPlantBodyBlock/m_7777_ ()Lnet/minecraft/world/level/block/Block; net/minecraft/world/level/block/GrowingPlantBodyBlock/getBodyBlock ()Lnet/minecraft/world/level/block/Block; +MD: net/minecraft/world/level/block/GrowingPlantHeadBlock/ ()V net/minecraft/world/level/block/GrowingPlantHeadBlock/ ()V +MD: net/minecraft/world/level/block/GrowingPlantHeadBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;Lnet/minecraft/core/Direction;Lnet/minecraft/world/phys/shapes/VoxelShape;ZD)V net/minecraft/world/level/block/GrowingPlantHeadBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;Lnet/minecraft/core/Direction;Lnet/minecraft/world/phys/shapes/VoxelShape;ZD)V +MD: net/minecraft/world/level/block/GrowingPlantHeadBlock/m_142643_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/GrowingPlantHeadBlock/updateBodyAfterConvertedFromHead (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/GrowingPlantHeadBlock/m_187438_ (Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/GrowingPlantHeadBlock/getMaxAgeState (Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/GrowingPlantHeadBlock/m_187440_ (Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/world/level/block/GrowingPlantHeadBlock/isMaxAge (Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/world/level/block/GrowingPlantHeadBlock/m_213627_ (Lnet/minecraft/util/RandomSource;)I net/minecraft/world/level/block/GrowingPlantHeadBlock/getBlocksToGrowWhenBonemealed (Lnet/minecraft/util/RandomSource;)I +MD: net/minecraft/world/level/block/GrowingPlantHeadBlock/m_213898_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)V net/minecraft/world/level/block/GrowingPlantHeadBlock/randomTick (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)V +MD: net/minecraft/world/level/block/GrowingPlantHeadBlock/m_214070_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/util/RandomSource;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/GrowingPlantHeadBlock/getGrowIntoState (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/util/RandomSource;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/GrowingPlantHeadBlock/m_214148_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V net/minecraft/world/level/block/GrowingPlantHeadBlock/performBonemeal (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V +MD: net/minecraft/world/level/block/GrowingPlantHeadBlock/m_214167_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/world/level/block/GrowingPlantHeadBlock/isBonemealSuccess (Lnet/minecraft/world/level/Level;Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/world/level/block/GrowingPlantHeadBlock/m_5971_ (Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/world/level/block/GrowingPlantHeadBlock/canGrowInto (Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/world/level/block/GrowingPlantHeadBlock/m_6724_ (Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/world/level/block/GrowingPlantHeadBlock/isRandomlyTicking (Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/world/level/block/GrowingPlantHeadBlock/m_7272_ ()Lnet/minecraft/world/level/block/GrowingPlantHeadBlock; net/minecraft/world/level/block/GrowingPlantHeadBlock/getHeadBlock ()Lnet/minecraft/world/level/block/GrowingPlantHeadBlock; +MD: net/minecraft/world/level/block/GrowingPlantHeadBlock/m_7370_ (Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Z)Z net/minecraft/world/level/block/GrowingPlantHeadBlock/isValidBonemealTarget (Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Z)Z +MD: net/minecraft/world/level/block/GrowingPlantHeadBlock/m_7417_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/GrowingPlantHeadBlock/updateShape (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/GrowingPlantHeadBlock/m_7722_ (Lnet/minecraft/world/level/LevelAccessor;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/GrowingPlantHeadBlock/getStateForPlacement (Lnet/minecraft/world/level/LevelAccessor;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/GrowingPlantHeadBlock/m_7926_ (Lnet/minecraft/world/level/block/state/StateDefinition$Builder;)V net/minecraft/world/level/block/GrowingPlantHeadBlock/createBlockStateDefinition (Lnet/minecraft/world/level/block/state/StateDefinition$Builder;)V +MD: net/minecraft/world/level/block/HalfTransparentBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V net/minecraft/world/level/block/HalfTransparentBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V +MD: net/minecraft/world/level/block/HalfTransparentBlock/m_6104_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/Direction;)Z net/minecraft/world/level/block/HalfTransparentBlock/skipRendering (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/Direction;)Z +MD: net/minecraft/world/level/block/HangingRootsBlock/ ()V net/minecraft/world/level/block/HangingRootsBlock/ ()V +MD: net/minecraft/world/level/block/HangingRootsBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V net/minecraft/world/level/block/HangingRootsBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V +MD: net/minecraft/world/level/block/HangingRootsBlock/m_5573_ (Lnet/minecraft/world/item/context/BlockPlaceContext;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/HangingRootsBlock/getStateForPlacement (Lnet/minecraft/world/item/context/BlockPlaceContext;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/HangingRootsBlock/m_5888_ (Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/material/FluidState; net/minecraft/world/level/block/HangingRootsBlock/getFluidState (Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/material/FluidState; +MD: net/minecraft/world/level/block/HangingRootsBlock/m_5940_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; net/minecraft/world/level/block/HangingRootsBlock/getShape (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; +MD: net/minecraft/world/level/block/HangingRootsBlock/m_7417_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/HangingRootsBlock/updateShape (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/HangingRootsBlock/m_7898_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/level/block/HangingRootsBlock/canSurvive (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/level/block/HangingRootsBlock/m_7926_ (Lnet/minecraft/world/level/block/state/StateDefinition$Builder;)V net/minecraft/world/level/block/HangingRootsBlock/createBlockStateDefinition (Lnet/minecraft/world/level/block/state/StateDefinition$Builder;)V +MD: net/minecraft/world/level/block/HayBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V net/minecraft/world/level/block/HayBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V +MD: net/minecraft/world/level/block/HayBlock/m_142072_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/Entity;F)V net/minecraft/world/level/block/HayBlock/fallOn (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/Entity;F)V +MD: net/minecraft/world/level/block/HoneyBlock/ ()V net/minecraft/world/level/block/HoneyBlock/ ()V +MD: net/minecraft/world/level/block/HoneyBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V net/minecraft/world/level/block/HoneyBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V +MD: net/minecraft/world/level/block/HoneyBlock/m_142072_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/Entity;F)V net/minecraft/world/level/block/HoneyBlock/fallOn (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/Entity;F)V +MD: net/minecraft/world/level/block/HoneyBlock/m_53986_ (Lnet/minecraft/world/entity/Entity;)V net/minecraft/world/level/block/HoneyBlock/showSlideParticles (Lnet/minecraft/world/entity/Entity;)V +MD: net/minecraft/world/level/block/HoneyBlock/m_53988_ (Lnet/minecraft/world/entity/Entity;I)V net/minecraft/world/level/block/HoneyBlock/showParticles (Lnet/minecraft/world/entity/Entity;I)V +MD: net/minecraft/world/level/block/HoneyBlock/m_53991_ (Lnet/minecraft/world/entity/Entity;Lnet/minecraft/core/BlockPos;)V net/minecraft/world/level/block/HoneyBlock/maybeDoSlideAchievement (Lnet/minecraft/world/entity/Entity;Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/world/level/block/HoneyBlock/m_53994_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/entity/Entity;)V net/minecraft/world/level/block/HoneyBlock/maybeDoSlideEffects (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/entity/Entity;)V +MD: net/minecraft/world/level/block/HoneyBlock/m_54007_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/Entity;)Z net/minecraft/world/level/block/HoneyBlock/isSlidingDown (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/Entity;)Z +MD: net/minecraft/world/level/block/HoneyBlock/m_54010_ (Lnet/minecraft/world/entity/Entity;)V net/minecraft/world/level/block/HoneyBlock/showJumpParticles (Lnet/minecraft/world/entity/Entity;)V +MD: net/minecraft/world/level/block/HoneyBlock/m_54012_ (Lnet/minecraft/world/entity/Entity;)Z net/minecraft/world/level/block/HoneyBlock/doesEntityDoHoneyBlockSlideEffects (Lnet/minecraft/world/entity/Entity;)Z +MD: net/minecraft/world/level/block/HoneyBlock/m_54019_ (Lnet/minecraft/world/entity/Entity;)V net/minecraft/world/level/block/HoneyBlock/doSlideMovement (Lnet/minecraft/world/entity/Entity;)V +MD: net/minecraft/world/level/block/HoneyBlock/m_5939_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; net/minecraft/world/level/block/HoneyBlock/getCollisionShape (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; +MD: net/minecraft/world/level/block/HoneyBlock/m_7892_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/Entity;)V net/minecraft/world/level/block/HoneyBlock/entityInside (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/Entity;)V +MD: net/minecraft/world/level/block/HopperBlock/ ()V net/minecraft/world/level/block/HopperBlock/ ()V +MD: net/minecraft/world/level/block/HopperBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V net/minecraft/world/level/block/HopperBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V +MD: net/minecraft/world/level/block/HopperBlock/m_142194_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/block/entity/BlockEntity; net/minecraft/world/level/block/HopperBlock/newBlockEntity (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/block/entity/BlockEntity; +MD: net/minecraft/world/level/block/HopperBlock/m_142354_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/entity/BlockEntityType;)Lnet/minecraft/world/level/block/entity/BlockEntityTicker; net/minecraft/world/level/block/HopperBlock/getTicker (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/entity/BlockEntityType;)Lnet/minecraft/world/level/block/entity/BlockEntityTicker; +MD: net/minecraft/world/level/block/HopperBlock/m_274306_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;I)V net/minecraft/world/level/block/HopperBlock/checkPoweredState (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;I)V +MD: net/minecraft/world/level/block/HopperBlock/m_5573_ (Lnet/minecraft/world/item/context/BlockPlaceContext;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/HopperBlock/getStateForPlacement (Lnet/minecraft/world/item/context/BlockPlaceContext;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/HopperBlock/m_5940_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; net/minecraft/world/level/block/HopperBlock/getShape (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; +MD: net/minecraft/world/level/block/HopperBlock/m_6079_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/phys/shapes/VoxelShape; net/minecraft/world/level/block/HopperBlock/getInteractionShape (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/phys/shapes/VoxelShape; +MD: net/minecraft/world/level/block/HopperBlock/m_6227_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;Lnet/minecraft/world/phys/BlockHitResult;)Lnet/minecraft/world/InteractionResult; net/minecraft/world/level/block/HopperBlock/use (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;Lnet/minecraft/world/phys/BlockHitResult;)Lnet/minecraft/world/InteractionResult; +MD: net/minecraft/world/level/block/HopperBlock/m_6402_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/item/ItemStack;)V net/minecraft/world/level/block/HopperBlock/setPlacedBy (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/item/ItemStack;)V +MD: net/minecraft/world/level/block/HopperBlock/m_6782_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;)I net/minecraft/world/level/block/HopperBlock/getAnalogOutputSignal (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;)I +MD: net/minecraft/world/level/block/HopperBlock/m_6807_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Z)V net/minecraft/world/level/block/HopperBlock/onPlace (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Z)V +MD: net/minecraft/world/level/block/HopperBlock/m_6810_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Z)V net/minecraft/world/level/block/HopperBlock/onRemove (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Z)V +MD: net/minecraft/world/level/block/HopperBlock/m_6843_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/Rotation;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/HopperBlock/rotate (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/Rotation;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/HopperBlock/m_6861_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/Block;Lnet/minecraft/core/BlockPos;Z)V net/minecraft/world/level/block/HopperBlock/neighborChanged (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/Block;Lnet/minecraft/core/BlockPos;Z)V +MD: net/minecraft/world/level/block/HopperBlock/m_6943_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/Mirror;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/HopperBlock/mirror (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/Mirror;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/HopperBlock/m_7278_ (Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/world/level/block/HopperBlock/hasAnalogOutputSignal (Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/world/level/block/HopperBlock/m_7357_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/pathfinder/PathComputationType;)Z net/minecraft/world/level/block/HopperBlock/isPathfindable (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/pathfinder/PathComputationType;)Z +MD: net/minecraft/world/level/block/HopperBlock/m_7514_ (Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/block/RenderShape; net/minecraft/world/level/block/HopperBlock/getRenderShape (Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/block/RenderShape; +MD: net/minecraft/world/level/block/HopperBlock/m_7892_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/Entity;)V net/minecraft/world/level/block/HopperBlock/entityInside (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/Entity;)V +MD: net/minecraft/world/level/block/HopperBlock/m_7926_ (Lnet/minecraft/world/level/block/state/StateDefinition$Builder;)V net/minecraft/world/level/block/HopperBlock/createBlockStateDefinition (Lnet/minecraft/world/level/block/state/StateDefinition$Builder;)V +MD: net/minecraft/world/level/block/HopperBlock$1/ ()V net/minecraft/world/level/block/HopperBlock$1/ ()V +MD: net/minecraft/world/level/block/HorizontalDirectionalBlock/ ()V net/minecraft/world/level/block/HorizontalDirectionalBlock/ ()V +MD: net/minecraft/world/level/block/HorizontalDirectionalBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V net/minecraft/world/level/block/HorizontalDirectionalBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V +MD: net/minecraft/world/level/block/HorizontalDirectionalBlock/m_6843_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/Rotation;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/HorizontalDirectionalBlock/rotate (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/Rotation;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/HorizontalDirectionalBlock/m_6943_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/Mirror;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/HorizontalDirectionalBlock/mirror (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/Mirror;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/HugeMushroomBlock/ ()V net/minecraft/world/level/block/HugeMushroomBlock/ ()V +MD: net/minecraft/world/level/block/HugeMushroomBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V net/minecraft/world/level/block/HugeMushroomBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V +MD: net/minecraft/world/level/block/HugeMushroomBlock/m_5573_ (Lnet/minecraft/world/item/context/BlockPlaceContext;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/HugeMushroomBlock/getStateForPlacement (Lnet/minecraft/world/item/context/BlockPlaceContext;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/HugeMushroomBlock/m_6843_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/Rotation;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/HugeMushroomBlock/rotate (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/Rotation;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/HugeMushroomBlock/m_6943_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/Mirror;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/HugeMushroomBlock/mirror (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/Mirror;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/HugeMushroomBlock/m_7417_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/HugeMushroomBlock/updateShape (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/HugeMushroomBlock/m_7926_ (Lnet/minecraft/world/level/block/state/StateDefinition$Builder;)V net/minecraft/world/level/block/HugeMushroomBlock/createBlockStateDefinition (Lnet/minecraft/world/level/block/state/StateDefinition$Builder;)V +MD: net/minecraft/world/level/block/IceBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V net/minecraft/world/level/block/IceBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V +MD: net/minecraft/world/level/block/IceBlock/m_213898_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)V net/minecraft/world/level/block/IceBlock/randomTick (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)V +MD: net/minecraft/world/level/block/IceBlock/m_278844_ ()Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/IceBlock/meltsInto ()Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/IceBlock/m_54168_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;)V net/minecraft/world/level/block/IceBlock/melt (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/world/level/block/IceBlock/m_6240_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/entity/BlockEntity;Lnet/minecraft/world/item/ItemStack;)V net/minecraft/world/level/block/IceBlock/playerDestroy (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/entity/BlockEntity;Lnet/minecraft/world/item/ItemStack;)V +MD: net/minecraft/world/level/block/InfestedBlock/ ()V net/minecraft/world/level/block/InfestedBlock/ ()V +MD: net/minecraft/world/level/block/InfestedBlock/ (Lnet/minecraft/world/level/block/Block;Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V net/minecraft/world/level/block/InfestedBlock/ (Lnet/minecraft/world/level/block/Block;Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V +MD: net/minecraft/world/level/block/InfestedBlock/m_153423_ (Ljava/util/Map;Lnet/minecraft/world/level/block/state/BlockState;Ljava/util/function/Supplier;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/InfestedBlock/getNewStateWithProperties (Ljava/util/Map;Lnet/minecraft/world/level/block/state/BlockState;Ljava/util/function/Supplier;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/InfestedBlock/m_153427_ (Ljava/util/function/Supplier;Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/InfestedBlock/lambda$getNewStateWithProperties$2 (Ljava/util/function/Supplier;Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/InfestedBlock/m_153430_ (Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/InfestedBlock/infestedStateByHost (Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/InfestedBlock/m_153432_ (Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/InfestedBlock/hostStateByInfested (Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/InfestedBlock/m_153434_ (Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/InfestedBlock/lambda$infestedStateByHost$0 (Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/InfestedBlock/m_153436_ ()Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/InfestedBlock/lambda$hostStateByInfested$1 ()Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/InfestedBlock/m_213646_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/item/ItemStack;Z)V net/minecraft/world/level/block/InfestedBlock/spawnAfterBreak (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/item/ItemStack;Z)V +MD: net/minecraft/world/level/block/InfestedBlock/m_54180_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;)V net/minecraft/world/level/block/InfestedBlock/spawnInfestation (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/world/level/block/InfestedBlock/m_54192_ ()Lnet/minecraft/world/level/block/Block; net/minecraft/world/level/block/InfestedBlock/getHostBlock ()Lnet/minecraft/world/level/block/Block; +MD: net/minecraft/world/level/block/InfestedBlock/m_54195_ (Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/world/level/block/InfestedBlock/isCompatibleHostBlock (Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/world/level/block/InfestedRotatedPillarBlock/ (Lnet/minecraft/world/level/block/Block;Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V net/minecraft/world/level/block/InfestedRotatedPillarBlock/ (Lnet/minecraft/world/level/block/Block;Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V +MD: net/minecraft/world/level/block/InfestedRotatedPillarBlock/m_5573_ (Lnet/minecraft/world/item/context/BlockPlaceContext;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/InfestedRotatedPillarBlock/getStateForPlacement (Lnet/minecraft/world/item/context/BlockPlaceContext;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/InfestedRotatedPillarBlock/m_6843_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/Rotation;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/InfestedRotatedPillarBlock/rotate (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/Rotation;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/InfestedRotatedPillarBlock/m_7926_ (Lnet/minecraft/world/level/block/state/StateDefinition$Builder;)V net/minecraft/world/level/block/InfestedRotatedPillarBlock/createBlockStateDefinition (Lnet/minecraft/world/level/block/state/StateDefinition$Builder;)V +MD: net/minecraft/world/level/block/IronBarsBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V net/minecraft/world/level/block/IronBarsBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V +MD: net/minecraft/world/level/block/IronBarsBlock/m_54217_ (Lnet/minecraft/world/level/block/state/BlockState;Z)Z net/minecraft/world/level/block/IronBarsBlock/attachsTo (Lnet/minecraft/world/level/block/state/BlockState;Z)Z +MD: net/minecraft/world/level/block/IronBarsBlock/m_5573_ (Lnet/minecraft/world/item/context/BlockPlaceContext;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/IronBarsBlock/getStateForPlacement (Lnet/minecraft/world/item/context/BlockPlaceContext;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/IronBarsBlock/m_5909_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; net/minecraft/world/level/block/IronBarsBlock/getVisualShape (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; +MD: net/minecraft/world/level/block/IronBarsBlock/m_6104_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/Direction;)Z net/minecraft/world/level/block/IronBarsBlock/skipRendering (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/Direction;)Z +MD: net/minecraft/world/level/block/IronBarsBlock/m_7417_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/IronBarsBlock/updateShape (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/IronBarsBlock/m_7926_ (Lnet/minecraft/world/level/block/state/StateDefinition$Builder;)V net/minecraft/world/level/block/IronBarsBlock/createBlockStateDefinition (Lnet/minecraft/world/level/block/state/StateDefinition$Builder;)V +MD: net/minecraft/world/level/block/JigsawBlock/ ()V net/minecraft/world/level/block/JigsawBlock/ ()V +MD: net/minecraft/world/level/block/JigsawBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V net/minecraft/world/level/block/JigsawBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V +MD: net/minecraft/world/level/block/JigsawBlock/m_142194_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/block/entity/BlockEntity; net/minecraft/world/level/block/JigsawBlock/newBlockEntity (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/block/entity/BlockEntity; +MD: net/minecraft/world/level/block/JigsawBlock/m_54245_ (Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate$StructureBlockInfo;Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate$StructureBlockInfo;)Z net/minecraft/world/level/block/JigsawBlock/canAttach (Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate$StructureBlockInfo;Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate$StructureBlockInfo;)Z +MD: net/minecraft/world/level/block/JigsawBlock/m_54248_ (Lnet/minecraft/core/Direction;)Lnet/minecraft/world/level/block/entity/JigsawBlockEntity$JointType; net/minecraft/world/level/block/JigsawBlock/lambda$canAttach$0 (Lnet/minecraft/core/Direction;)Lnet/minecraft/world/level/block/entity/JigsawBlockEntity$JointType; +MD: net/minecraft/world/level/block/JigsawBlock/m_54250_ (Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/core/Direction; net/minecraft/world/level/block/JigsawBlock/getFrontFacing (Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/core/Direction; +MD: net/minecraft/world/level/block/JigsawBlock/m_54252_ (Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/core/Direction; net/minecraft/world/level/block/JigsawBlock/getTopFacing (Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/core/Direction; +MD: net/minecraft/world/level/block/JigsawBlock/m_5573_ (Lnet/minecraft/world/item/context/BlockPlaceContext;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/JigsawBlock/getStateForPlacement (Lnet/minecraft/world/item/context/BlockPlaceContext;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/JigsawBlock/m_6227_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;Lnet/minecraft/world/phys/BlockHitResult;)Lnet/minecraft/world/InteractionResult; net/minecraft/world/level/block/JigsawBlock/use (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;Lnet/minecraft/world/phys/BlockHitResult;)Lnet/minecraft/world/InteractionResult; +MD: net/minecraft/world/level/block/JigsawBlock/m_6843_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/Rotation;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/JigsawBlock/rotate (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/Rotation;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/JigsawBlock/m_6943_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/Mirror;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/JigsawBlock/mirror (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/Mirror;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/JigsawBlock/m_7926_ (Lnet/minecraft/world/level/block/state/StateDefinition$Builder;)V net/minecraft/world/level/block/JigsawBlock/createBlockStateDefinition (Lnet/minecraft/world/level/block/state/StateDefinition$Builder;)V +MD: net/minecraft/world/level/block/JukeboxBlock/ ()V net/minecraft/world/level/block/JukeboxBlock/ ()V +MD: net/minecraft/world/level/block/JukeboxBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V net/minecraft/world/level/block/JukeboxBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V +MD: net/minecraft/world/level/block/JukeboxBlock/m_142194_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/block/entity/BlockEntity; net/minecraft/world/level/block/JukeboxBlock/newBlockEntity (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/block/entity/BlockEntity; +MD: net/minecraft/world/level/block/JukeboxBlock/m_142354_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/entity/BlockEntityType;)Lnet/minecraft/world/level/block/entity/BlockEntityTicker; net/minecraft/world/level/block/JukeboxBlock/getTicker (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/entity/BlockEntityType;)Lnet/minecraft/world/level/block/entity/BlockEntityTicker; +MD: net/minecraft/world/level/block/JukeboxBlock/m_6227_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;Lnet/minecraft/world/phys/BlockHitResult;)Lnet/minecraft/world/InteractionResult; net/minecraft/world/level/block/JukeboxBlock/use (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;Lnet/minecraft/world/phys/BlockHitResult;)Lnet/minecraft/world/InteractionResult; +MD: net/minecraft/world/level/block/JukeboxBlock/m_6378_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Direction;)I net/minecraft/world/level/block/JukeboxBlock/getSignal (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Direction;)I +MD: net/minecraft/world/level/block/JukeboxBlock/m_6402_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/item/ItemStack;)V net/minecraft/world/level/block/JukeboxBlock/setPlacedBy (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/item/ItemStack;)V +MD: net/minecraft/world/level/block/JukeboxBlock/m_6782_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;)I net/minecraft/world/level/block/JukeboxBlock/getAnalogOutputSignal (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;)I +MD: net/minecraft/world/level/block/JukeboxBlock/m_6810_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Z)V net/minecraft/world/level/block/JukeboxBlock/onRemove (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Z)V +MD: net/minecraft/world/level/block/JukeboxBlock/m_7278_ (Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/world/level/block/JukeboxBlock/hasAnalogOutputSignal (Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/world/level/block/JukeboxBlock/m_7514_ (Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/block/RenderShape; net/minecraft/world/level/block/JukeboxBlock/getRenderShape (Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/block/RenderShape; +MD: net/minecraft/world/level/block/JukeboxBlock/m_7899_ (Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/world/level/block/JukeboxBlock/isSignalSource (Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/world/level/block/JukeboxBlock/m_7926_ (Lnet/minecraft/world/level/block/state/StateDefinition$Builder;)V net/minecraft/world/level/block/JukeboxBlock/createBlockStateDefinition (Lnet/minecraft/world/level/block/state/StateDefinition$Builder;)V +MD: net/minecraft/world/level/block/KelpBlock/ ()V net/minecraft/world/level/block/KelpBlock/ ()V +MD: net/minecraft/world/level/block/KelpBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V net/minecraft/world/level/block/KelpBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V +MD: net/minecraft/world/level/block/KelpBlock/m_142209_ (Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/world/level/block/KelpBlock/canAttachTo (Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/world/level/block/KelpBlock/m_213627_ (Lnet/minecraft/util/RandomSource;)I net/minecraft/world/level/block/KelpBlock/getBlocksToGrowWhenBonemealed (Lnet/minecraft/util/RandomSource;)I +MD: net/minecraft/world/level/block/KelpBlock/m_5573_ (Lnet/minecraft/world/item/context/BlockPlaceContext;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/KelpBlock/getStateForPlacement (Lnet/minecraft/world/item/context/BlockPlaceContext;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/KelpBlock/m_5888_ (Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/material/FluidState; net/minecraft/world/level/block/KelpBlock/getFluidState (Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/material/FluidState; +MD: net/minecraft/world/level/block/KelpBlock/m_5971_ (Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/world/level/block/KelpBlock/canGrowInto (Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/world/level/block/KelpBlock/m_6044_ (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/material/Fluid;)Z net/minecraft/world/level/block/KelpBlock/canPlaceLiquid (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/material/Fluid;)Z +MD: net/minecraft/world/level/block/KelpBlock/m_7361_ (Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/material/FluidState;)Z net/minecraft/world/level/block/KelpBlock/placeLiquid (Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/material/FluidState;)Z +MD: net/minecraft/world/level/block/KelpBlock/m_7777_ ()Lnet/minecraft/world/level/block/Block; net/minecraft/world/level/block/KelpBlock/getBodyBlock ()Lnet/minecraft/world/level/block/Block; +MD: net/minecraft/world/level/block/KelpPlantBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V net/minecraft/world/level/block/KelpPlantBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V +MD: net/minecraft/world/level/block/KelpPlantBlock/m_142209_ (Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/world/level/block/KelpPlantBlock/canAttachTo (Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/world/level/block/KelpPlantBlock/m_5888_ (Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/material/FluidState; net/minecraft/world/level/block/KelpPlantBlock/getFluidState (Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/material/FluidState; +MD: net/minecraft/world/level/block/KelpPlantBlock/m_6044_ (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/material/Fluid;)Z net/minecraft/world/level/block/KelpPlantBlock/canPlaceLiquid (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/material/Fluid;)Z +MD: net/minecraft/world/level/block/KelpPlantBlock/m_7272_ ()Lnet/minecraft/world/level/block/GrowingPlantHeadBlock; net/minecraft/world/level/block/KelpPlantBlock/getHeadBlock ()Lnet/minecraft/world/level/block/GrowingPlantHeadBlock; +MD: net/minecraft/world/level/block/KelpPlantBlock/m_7361_ (Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/material/FluidState;)Z net/minecraft/world/level/block/KelpPlantBlock/placeLiquid (Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/material/FluidState;)Z +MD: net/minecraft/world/level/block/LadderBlock/ ()V net/minecraft/world/level/block/LadderBlock/ ()V +MD: net/minecraft/world/level/block/LadderBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V net/minecraft/world/level/block/LadderBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V +MD: net/minecraft/world/level/block/LadderBlock/m_54348_ (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Direction;)Z net/minecraft/world/level/block/LadderBlock/canAttachTo (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Direction;)Z +MD: net/minecraft/world/level/block/LadderBlock/m_5573_ (Lnet/minecraft/world/item/context/BlockPlaceContext;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/LadderBlock/getStateForPlacement (Lnet/minecraft/world/item/context/BlockPlaceContext;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/LadderBlock/m_5888_ (Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/material/FluidState; net/minecraft/world/level/block/LadderBlock/getFluidState (Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/material/FluidState; +MD: net/minecraft/world/level/block/LadderBlock/m_5940_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; net/minecraft/world/level/block/LadderBlock/getShape (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; +MD: net/minecraft/world/level/block/LadderBlock/m_6843_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/Rotation;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/LadderBlock/rotate (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/Rotation;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/LadderBlock/m_6943_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/Mirror;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/LadderBlock/mirror (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/Mirror;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/LadderBlock/m_7417_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/LadderBlock/updateShape (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/LadderBlock/m_7898_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/level/block/LadderBlock/canSurvive (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/level/block/LadderBlock/m_7926_ (Lnet/minecraft/world/level/block/state/StateDefinition$Builder;)V net/minecraft/world/level/block/LadderBlock/createBlockStateDefinition (Lnet/minecraft/world/level/block/state/StateDefinition$Builder;)V +MD: net/minecraft/world/level/block/LadderBlock$1/ ()V net/minecraft/world/level/block/LadderBlock$1/ ()V +MD: net/minecraft/world/level/block/LanternBlock/ ()V net/minecraft/world/level/block/LanternBlock/ ()V +MD: net/minecraft/world/level/block/LanternBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V net/minecraft/world/level/block/LanternBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V +MD: net/minecraft/world/level/block/LanternBlock/m_153495_ (Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/core/Direction; net/minecraft/world/level/block/LanternBlock/getConnectedDirection (Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/core/Direction; +MD: net/minecraft/world/level/block/LanternBlock/m_5573_ (Lnet/minecraft/world/item/context/BlockPlaceContext;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/LanternBlock/getStateForPlacement (Lnet/minecraft/world/item/context/BlockPlaceContext;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/LanternBlock/m_5888_ (Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/material/FluidState; net/minecraft/world/level/block/LanternBlock/getFluidState (Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/material/FluidState; +MD: net/minecraft/world/level/block/LanternBlock/m_5940_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; net/minecraft/world/level/block/LanternBlock/getShape (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; +MD: net/minecraft/world/level/block/LanternBlock/m_7357_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/pathfinder/PathComputationType;)Z net/minecraft/world/level/block/LanternBlock/isPathfindable (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/pathfinder/PathComputationType;)Z +MD: net/minecraft/world/level/block/LanternBlock/m_7417_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/LanternBlock/updateShape (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/LanternBlock/m_7898_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/level/block/LanternBlock/canSurvive (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/level/block/LanternBlock/m_7926_ (Lnet/minecraft/world/level/block/state/StateDefinition$Builder;)V net/minecraft/world/level/block/LanternBlock/createBlockStateDefinition (Lnet/minecraft/world/level/block/state/StateDefinition$Builder;)V +MD: net/minecraft/world/level/block/LavaCauldronBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V net/minecraft/world/level/block/LavaCauldronBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V +MD: net/minecraft/world/level/block/LavaCauldronBlock/m_142446_ (Lnet/minecraft/world/level/block/state/BlockState;)D net/minecraft/world/level/block/LavaCauldronBlock/getContentHeight (Lnet/minecraft/world/level/block/state/BlockState;)D +MD: net/minecraft/world/level/block/LavaCauldronBlock/m_142596_ (Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/world/level/block/LavaCauldronBlock/isFull (Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/world/level/block/LavaCauldronBlock/m_6782_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;)I net/minecraft/world/level/block/LavaCauldronBlock/getAnalogOutputSignal (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;)I +MD: net/minecraft/world/level/block/LavaCauldronBlock/m_7892_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/Entity;)V net/minecraft/world/level/block/LavaCauldronBlock/entityInside (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/Entity;)V +MD: net/minecraft/world/level/block/LayeredCauldronBlock/ ()V net/minecraft/world/level/block/LayeredCauldronBlock/ ()V +MD: net/minecraft/world/level/block/LayeredCauldronBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;Ljava/util/function/Predicate;Ljava/util/Map;)V net/minecraft/world/level/block/LayeredCauldronBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;Ljava/util/function/Predicate;Ljava/util/Map;)V +MD: net/minecraft/world/level/block/LayeredCauldronBlock/m_141997_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/biome/Biome$Precipitation;)V net/minecraft/world/level/block/LayeredCauldronBlock/handlePrecipitation (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/biome/Biome$Precipitation;)V +MD: net/minecraft/world/level/block/LayeredCauldronBlock/m_142087_ (Lnet/minecraft/world/level/material/Fluid;)Z net/minecraft/world/level/block/LayeredCauldronBlock/canReceiveStalactiteDrip (Lnet/minecraft/world/level/material/Fluid;)Z +MD: net/minecraft/world/level/block/LayeredCauldronBlock/m_142266_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;)V net/minecraft/world/level/block/LayeredCauldronBlock/handleEntityOnFireInside (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/world/level/block/LayeredCauldronBlock/m_142310_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/material/Fluid;)V net/minecraft/world/level/block/LayeredCauldronBlock/receiveStalactiteDrip (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/material/Fluid;)V +MD: net/minecraft/world/level/block/LayeredCauldronBlock/m_142446_ (Lnet/minecraft/world/level/block/state/BlockState;)D net/minecraft/world/level/block/LayeredCauldronBlock/getContentHeight (Lnet/minecraft/world/level/block/state/BlockState;)D +MD: net/minecraft/world/level/block/LayeredCauldronBlock/m_142596_ (Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/world/level/block/LayeredCauldronBlock/isFull (Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/world/level/block/LayeredCauldronBlock/m_153525_ (Lnet/minecraft/world/level/biome/Biome$Precipitation;)Z net/minecraft/world/level/block/LayeredCauldronBlock/lambda$static$1 (Lnet/minecraft/world/level/biome/Biome$Precipitation;)Z +MD: net/minecraft/world/level/block/LayeredCauldronBlock/m_153552_ (Lnet/minecraft/world/level/biome/Biome$Precipitation;)Z net/minecraft/world/level/block/LayeredCauldronBlock/lambda$static$0 (Lnet/minecraft/world/level/biome/Biome$Precipitation;)Z +MD: net/minecraft/world/level/block/LayeredCauldronBlock/m_153559_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;)V net/minecraft/world/level/block/LayeredCauldronBlock/lowerFillLevel (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/world/level/block/LayeredCauldronBlock/m_6782_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;)I net/minecraft/world/level/block/LayeredCauldronBlock/getAnalogOutputSignal (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;)I +MD: net/minecraft/world/level/block/LayeredCauldronBlock/m_7892_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/Entity;)V net/minecraft/world/level/block/LayeredCauldronBlock/entityInside (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/Entity;)V +MD: net/minecraft/world/level/block/LayeredCauldronBlock/m_7926_ (Lnet/minecraft/world/level/block/state/StateDefinition$Builder;)V net/minecraft/world/level/block/LayeredCauldronBlock/createBlockStateDefinition (Lnet/minecraft/world/level/block/state/StateDefinition$Builder;)V +MD: net/minecraft/world/level/block/LeavesBlock/ ()V net/minecraft/world/level/block/LeavesBlock/ ()V +MD: net/minecraft/world/level/block/LeavesBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V net/minecraft/world/level/block/LeavesBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V +MD: net/minecraft/world/level/block/LeavesBlock/m_213897_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)V net/minecraft/world/level/block/LeavesBlock/tick (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)V +MD: net/minecraft/world/level/block/LeavesBlock/m_213898_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)V net/minecraft/world/level/block/LeavesBlock/randomTick (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)V +MD: net/minecraft/world/level/block/LeavesBlock/m_214162_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)V net/minecraft/world/level/block/LeavesBlock/animateTick (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)V +MD: net/minecraft/world/level/block/LeavesBlock/m_221385_ (Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/world/level/block/LeavesBlock/decaying (Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/world/level/block/LeavesBlock/m_277200_ (Lnet/minecraft/world/level/block/state/BlockState;)Ljava/util/OptionalInt; net/minecraft/world/level/block/LeavesBlock/getOptionalDistanceAt (Lnet/minecraft/world/level/block/state/BlockState;)Ljava/util/OptionalInt; +MD: net/minecraft/world/level/block/LeavesBlock/m_54435_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/LeavesBlock/updateDistance (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/LeavesBlock/m_54463_ (Lnet/minecraft/world/level/block/state/BlockState;)I net/minecraft/world/level/block/LeavesBlock/getDistanceAt (Lnet/minecraft/world/level/block/state/BlockState;)I +MD: net/minecraft/world/level/block/LeavesBlock/m_5573_ (Lnet/minecraft/world/item/context/BlockPlaceContext;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/LeavesBlock/getStateForPlacement (Lnet/minecraft/world/item/context/BlockPlaceContext;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/LeavesBlock/m_5888_ (Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/material/FluidState; net/minecraft/world/level/block/LeavesBlock/getFluidState (Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/material/FluidState; +MD: net/minecraft/world/level/block/LeavesBlock/m_6724_ (Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/world/level/block/LeavesBlock/isRandomlyTicking (Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/world/level/block/LeavesBlock/m_7417_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/LeavesBlock/updateShape (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/LeavesBlock/m_7753_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)I net/minecraft/world/level/block/LeavesBlock/getLightBlock (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)I +MD: net/minecraft/world/level/block/LeavesBlock/m_7926_ (Lnet/minecraft/world/level/block/state/StateDefinition$Builder;)V net/minecraft/world/level/block/LeavesBlock/createBlockStateDefinition (Lnet/minecraft/world/level/block/state/StateDefinition$Builder;)V +MD: net/minecraft/world/level/block/LeavesBlock/m_7947_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/phys/shapes/VoxelShape; net/minecraft/world/level/block/LeavesBlock/getBlockSupportShape (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/phys/shapes/VoxelShape; +MD: net/minecraft/world/level/block/LecternBlock/ ()V net/minecraft/world/level/block/LecternBlock/ ()V +MD: net/minecraft/world/level/block/LecternBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V net/minecraft/world/level/block/LecternBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V +MD: net/minecraft/world/level/block/LecternBlock/m_142194_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/block/entity/BlockEntity; net/minecraft/world/level/block/LecternBlock/newBlockEntity (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/block/entity/BlockEntity; +MD: net/minecraft/world/level/block/LecternBlock/m_213897_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)V net/minecraft/world/level/block/LecternBlock/tick (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)V +MD: net/minecraft/world/level/block/LecternBlock/m_269116_ (Lnet/minecraft/world/entity/Entity;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/item/ItemStack;)V net/minecraft/world/level/block/LecternBlock/placeBook (Lnet/minecraft/world/entity/Entity;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/item/ItemStack;)V +MD: net/minecraft/world/level/block/LecternBlock/m_269125_ (Lnet/minecraft/world/entity/Entity;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/item/ItemStack;)Z net/minecraft/world/level/block/LecternBlock/tryPlaceBook (Lnet/minecraft/world/entity/Entity;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/item/ItemStack;)Z +MD: net/minecraft/world/level/block/LecternBlock/m_269306_ (Lnet/minecraft/world/entity/Entity;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Z)V net/minecraft/world/level/block/LecternBlock/resetBookState (Lnet/minecraft/world/entity/Entity;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Z)V +MD: net/minecraft/world/level/block/LecternBlock/m_54484_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/player/Player;)V net/minecraft/world/level/block/LecternBlock/openScreen (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/player/Player;)V +MD: net/minecraft/world/level/block/LecternBlock/m_54488_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V net/minecraft/world/level/block/LecternBlock/signalPageChange (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V +MD: net/minecraft/world/level/block/LecternBlock/m_54544_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V net/minecraft/world/level/block/LecternBlock/updateBelow (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V +MD: net/minecraft/world/level/block/LecternBlock/m_54553_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Z)V net/minecraft/world/level/block/LecternBlock/changePowered (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Z)V +MD: net/minecraft/world/level/block/LecternBlock/m_54587_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;)V net/minecraft/world/level/block/LecternBlock/popBook (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/world/level/block/LecternBlock/m_5573_ (Lnet/minecraft/world/item/context/BlockPlaceContext;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/LecternBlock/getStateForPlacement (Lnet/minecraft/world/item/context/BlockPlaceContext;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/LecternBlock/m_5939_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; net/minecraft/world/level/block/LecternBlock/getCollisionShape (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; +MD: net/minecraft/world/level/block/LecternBlock/m_5940_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; net/minecraft/world/level/block/LecternBlock/getShape (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; +MD: net/minecraft/world/level/block/LecternBlock/m_6227_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;Lnet/minecraft/world/phys/BlockHitResult;)Lnet/minecraft/world/InteractionResult; net/minecraft/world/level/block/LecternBlock/use (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;Lnet/minecraft/world/phys/BlockHitResult;)Lnet/minecraft/world/InteractionResult; +MD: net/minecraft/world/level/block/LecternBlock/m_6376_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Direction;)I net/minecraft/world/level/block/LecternBlock/getDirectSignal (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Direction;)I +MD: net/minecraft/world/level/block/LecternBlock/m_6378_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Direction;)I net/minecraft/world/level/block/LecternBlock/getSignal (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Direction;)I +MD: net/minecraft/world/level/block/LecternBlock/m_6782_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;)I net/minecraft/world/level/block/LecternBlock/getAnalogOutputSignal (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;)I +MD: net/minecraft/world/level/block/LecternBlock/m_6810_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Z)V net/minecraft/world/level/block/LecternBlock/onRemove (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Z)V +MD: net/minecraft/world/level/block/LecternBlock/m_6843_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/Rotation;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/LecternBlock/rotate (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/Rotation;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/LecternBlock/m_6943_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/Mirror;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/LecternBlock/mirror (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/Mirror;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/LecternBlock/m_7246_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/MenuProvider; net/minecraft/world/level/block/LecternBlock/getMenuProvider (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/MenuProvider; +MD: net/minecraft/world/level/block/LecternBlock/m_7278_ (Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/world/level/block/LecternBlock/hasAnalogOutputSignal (Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/world/level/block/LecternBlock/m_7357_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/pathfinder/PathComputationType;)Z net/minecraft/world/level/block/LecternBlock/isPathfindable (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/pathfinder/PathComputationType;)Z +MD: net/minecraft/world/level/block/LecternBlock/m_7514_ (Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/block/RenderShape; net/minecraft/world/level/block/LecternBlock/getRenderShape (Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/block/RenderShape; +MD: net/minecraft/world/level/block/LecternBlock/m_7899_ (Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/world/level/block/LecternBlock/isSignalSource (Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/world/level/block/LecternBlock/m_7923_ (Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/world/level/block/LecternBlock/useShapeForLightOcclusion (Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/world/level/block/LecternBlock/m_7926_ (Lnet/minecraft/world/level/block/state/StateDefinition$Builder;)V net/minecraft/world/level/block/LecternBlock/createBlockStateDefinition (Lnet/minecraft/world/level/block/state/StateDefinition$Builder;)V +MD: net/minecraft/world/level/block/LecternBlock/m_7952_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/phys/shapes/VoxelShape; net/minecraft/world/level/block/LecternBlock/getOcclusionShape (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/phys/shapes/VoxelShape; +MD: net/minecraft/world/level/block/LecternBlock$1/ ()V net/minecraft/world/level/block/LecternBlock$1/ ()V +MD: net/minecraft/world/level/block/LevelEvent/ ()V net/minecraft/world/level/block/LevelEvent/ ()V +MD: net/minecraft/world/level/block/LeverBlock/ ()V net/minecraft/world/level/block/LeverBlock/ ()V +MD: net/minecraft/world/level/block/LeverBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V net/minecraft/world/level/block/LeverBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V +MD: net/minecraft/world/level/block/LeverBlock/m_214162_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)V net/minecraft/world/level/block/LeverBlock/animateTick (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)V +MD: net/minecraft/world/level/block/LeverBlock/m_54657_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;F)V net/minecraft/world/level/block/LeverBlock/makeParticle (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;F)V +MD: net/minecraft/world/level/block/LeverBlock/m_54676_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/LeverBlock/pull (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/LeverBlock/m_54680_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;)V net/minecraft/world/level/block/LeverBlock/updateNeighbours (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/world/level/block/LeverBlock/m_5940_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; net/minecraft/world/level/block/LeverBlock/getShape (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; +MD: net/minecraft/world/level/block/LeverBlock/m_6227_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;Lnet/minecraft/world/phys/BlockHitResult;)Lnet/minecraft/world/InteractionResult; net/minecraft/world/level/block/LeverBlock/use (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;Lnet/minecraft/world/phys/BlockHitResult;)Lnet/minecraft/world/InteractionResult; +MD: net/minecraft/world/level/block/LeverBlock/m_6376_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Direction;)I net/minecraft/world/level/block/LeverBlock/getDirectSignal (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Direction;)I +MD: net/minecraft/world/level/block/LeverBlock/m_6378_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Direction;)I net/minecraft/world/level/block/LeverBlock/getSignal (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Direction;)I +MD: net/minecraft/world/level/block/LeverBlock/m_6810_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Z)V net/minecraft/world/level/block/LeverBlock/onRemove (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Z)V +MD: net/minecraft/world/level/block/LeverBlock/m_7899_ (Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/world/level/block/LeverBlock/isSignalSource (Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/world/level/block/LeverBlock/m_7926_ (Lnet/minecraft/world/level/block/state/StateDefinition$Builder;)V net/minecraft/world/level/block/LeverBlock/createBlockStateDefinition (Lnet/minecraft/world/level/block/state/StateDefinition$Builder;)V +MD: net/minecraft/world/level/block/LeverBlock$1/ ()V net/minecraft/world/level/block/LeverBlock$1/ ()V +MD: net/minecraft/world/level/block/LightBlock/ ()V net/minecraft/world/level/block/LightBlock/ ()V +MD: net/minecraft/world/level/block/LightBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V net/minecraft/world/level/block/LightBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V +MD: net/minecraft/world/level/block/LightBlock/m_153700_ (Lnet/minecraft/world/level/block/state/BlockState;)I net/minecraft/world/level/block/LightBlock/lambda$static$0 (Lnet/minecraft/world/level/block/state/BlockState;)I +MD: net/minecraft/world/level/block/LightBlock/m_257398_ (Lnet/minecraft/world/item/ItemStack;I)Lnet/minecraft/world/item/ItemStack; net/minecraft/world/level/block/LightBlock/setLightOnStack (Lnet/minecraft/world/item/ItemStack;I)Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/level/block/LightBlock/m_5888_ (Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/material/FluidState; net/minecraft/world/level/block/LightBlock/getFluidState (Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/material/FluidState; +MD: net/minecraft/world/level/block/LightBlock/m_5940_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; net/minecraft/world/level/block/LightBlock/getShape (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; +MD: net/minecraft/world/level/block/LightBlock/m_6227_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;Lnet/minecraft/world/phys/BlockHitResult;)Lnet/minecraft/world/InteractionResult; net/minecraft/world/level/block/LightBlock/use (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;Lnet/minecraft/world/phys/BlockHitResult;)Lnet/minecraft/world/InteractionResult; +MD: net/minecraft/world/level/block/LightBlock/m_7397_ (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/item/ItemStack; net/minecraft/world/level/block/LightBlock/getCloneItemStack (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/level/block/LightBlock/m_7417_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/LightBlock/updateShape (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/LightBlock/m_7420_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/level/block/LightBlock/propagatesSkylightDown (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/level/block/LightBlock/m_7514_ (Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/block/RenderShape; net/minecraft/world/level/block/LightBlock/getRenderShape (Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/block/RenderShape; +MD: net/minecraft/world/level/block/LightBlock/m_7749_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)F net/minecraft/world/level/block/LightBlock/getShadeBrightness (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)F +MD: net/minecraft/world/level/block/LightBlock/m_7926_ (Lnet/minecraft/world/level/block/state/StateDefinition$Builder;)V net/minecraft/world/level/block/LightBlock/createBlockStateDefinition (Lnet/minecraft/world/level/block/state/StateDefinition$Builder;)V +MD: net/minecraft/world/level/block/LightningRodBlock/ ()V net/minecraft/world/level/block/LightningRodBlock/ ()V +MD: net/minecraft/world/level/block/LightningRodBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V net/minecraft/world/level/block/LightningRodBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V +MD: net/minecraft/world/level/block/LightningRodBlock/m_153760_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;)V net/minecraft/world/level/block/LightningRodBlock/onLightningStrike (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/world/level/block/LightningRodBlock/m_153764_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;)V net/minecraft/world/level/block/LightningRodBlock/updateNeighbours (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/world/level/block/LightningRodBlock/m_213897_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)V net/minecraft/world/level/block/LightningRodBlock/tick (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)V +MD: net/minecraft/world/level/block/LightningRodBlock/m_214162_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)V net/minecraft/world/level/block/LightningRodBlock/animateTick (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)V +MD: net/minecraft/world/level/block/LightningRodBlock/m_5573_ (Lnet/minecraft/world/item/context/BlockPlaceContext;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/LightningRodBlock/getStateForPlacement (Lnet/minecraft/world/item/context/BlockPlaceContext;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/LightningRodBlock/m_5581_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/phys/BlockHitResult;Lnet/minecraft/world/entity/projectile/Projectile;)V net/minecraft/world/level/block/LightningRodBlock/onProjectileHit (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/phys/BlockHitResult;Lnet/minecraft/world/entity/projectile/Projectile;)V +MD: net/minecraft/world/level/block/LightningRodBlock/m_5888_ (Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/material/FluidState; net/minecraft/world/level/block/LightningRodBlock/getFluidState (Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/material/FluidState; +MD: net/minecraft/world/level/block/LightningRodBlock/m_6376_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Direction;)I net/minecraft/world/level/block/LightningRodBlock/getDirectSignal (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Direction;)I +MD: net/minecraft/world/level/block/LightningRodBlock/m_6378_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Direction;)I net/minecraft/world/level/block/LightningRodBlock/getSignal (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Direction;)I +MD: net/minecraft/world/level/block/LightningRodBlock/m_6807_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Z)V net/minecraft/world/level/block/LightningRodBlock/onPlace (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Z)V +MD: net/minecraft/world/level/block/LightningRodBlock/m_6810_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Z)V net/minecraft/world/level/block/LightningRodBlock/onRemove (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Z)V +MD: net/minecraft/world/level/block/LightningRodBlock/m_7417_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/LightningRodBlock/updateShape (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/LightningRodBlock/m_7899_ (Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/world/level/block/LightningRodBlock/isSignalSource (Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/world/level/block/LightningRodBlock/m_7926_ (Lnet/minecraft/world/level/block/state/StateDefinition$Builder;)V net/minecraft/world/level/block/LightningRodBlock/createBlockStateDefinition (Lnet/minecraft/world/level/block/state/StateDefinition$Builder;)V +MD: net/minecraft/world/level/block/LiquidBlock/ ()V net/minecraft/world/level/block/LiquidBlock/ ()V +MD: net/minecraft/world/level/block/LiquidBlock/ (Lnet/minecraft/world/level/material/FlowingFluid;Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V net/minecraft/world/level/block/LiquidBlock/ (Lnet/minecraft/world/level/material/FlowingFluid;Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V +MD: net/minecraft/world/level/block/LiquidBlock/m_142298_ ()Ljava/util/Optional; net/minecraft/world/level/block/LiquidBlock/getPickupSound ()Ljava/util/Optional; +MD: net/minecraft/world/level/block/LiquidBlock/m_142598_ (Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/item/ItemStack; net/minecraft/world/level/block/LiquidBlock/pickupBlock (Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/level/block/LiquidBlock/m_213898_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)V net/minecraft/world/level/block/LiquidBlock/randomTick (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)V +MD: net/minecraft/world/level/block/LiquidBlock/m_49635_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/storage/loot/LootParams$Builder;)Ljava/util/List; net/minecraft/world/level/block/LiquidBlock/getDrops (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/storage/loot/LootParams$Builder;)Ljava/util/List; +MD: net/minecraft/world/level/block/LiquidBlock/m_54696_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/world/level/block/LiquidBlock/shouldSpreadLiquid (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/world/level/block/LiquidBlock/m_54700_ (Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;)V net/minecraft/world/level/block/LiquidBlock/fizz (Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/world/level/block/LiquidBlock/m_5888_ (Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/material/FluidState; net/minecraft/world/level/block/LiquidBlock/getFluidState (Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/material/FluidState; +MD: net/minecraft/world/level/block/LiquidBlock/m_5939_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; net/minecraft/world/level/block/LiquidBlock/getCollisionShape (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; +MD: net/minecraft/world/level/block/LiquidBlock/m_5940_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; net/minecraft/world/level/block/LiquidBlock/getShape (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; +MD: net/minecraft/world/level/block/LiquidBlock/m_6104_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/Direction;)Z net/minecraft/world/level/block/LiquidBlock/skipRendering (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/Direction;)Z +MD: net/minecraft/world/level/block/LiquidBlock/m_6724_ (Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/world/level/block/LiquidBlock/isRandomlyTicking (Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/world/level/block/LiquidBlock/m_6807_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Z)V net/minecraft/world/level/block/LiquidBlock/onPlace (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Z)V +MD: net/minecraft/world/level/block/LiquidBlock/m_6861_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/Block;Lnet/minecraft/core/BlockPos;Z)V net/minecraft/world/level/block/LiquidBlock/neighborChanged (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/Block;Lnet/minecraft/core/BlockPos;Z)V +MD: net/minecraft/world/level/block/LiquidBlock/m_7357_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/pathfinder/PathComputationType;)Z net/minecraft/world/level/block/LiquidBlock/isPathfindable (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/pathfinder/PathComputationType;)Z +MD: net/minecraft/world/level/block/LiquidBlock/m_7417_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/LiquidBlock/updateShape (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/LiquidBlock/m_7420_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/level/block/LiquidBlock/propagatesSkylightDown (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/level/block/LiquidBlock/m_7514_ (Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/block/RenderShape; net/minecraft/world/level/block/LiquidBlock/getRenderShape (Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/block/RenderShape; +MD: net/minecraft/world/level/block/LiquidBlock/m_7926_ (Lnet/minecraft/world/level/block/state/StateDefinition$Builder;)V net/minecraft/world/level/block/LiquidBlock/createBlockStateDefinition (Lnet/minecraft/world/level/block/state/StateDefinition$Builder;)V +MD: net/minecraft/world/level/block/LiquidBlockContainer/m_6044_ (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/material/Fluid;)Z net/minecraft/world/level/block/LiquidBlockContainer/canPlaceLiquid (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/material/Fluid;)Z +MD: net/minecraft/world/level/block/LiquidBlockContainer/m_7361_ (Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/material/FluidState;)Z net/minecraft/world/level/block/LiquidBlockContainer/placeLiquid (Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/material/FluidState;)Z +MD: net/minecraft/world/level/block/LoomBlock/ ()V net/minecraft/world/level/block/LoomBlock/ ()V +MD: net/minecraft/world/level/block/LoomBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V net/minecraft/world/level/block/LoomBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V +MD: net/minecraft/world/level/block/LoomBlock/m_54780_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;ILnet/minecraft/world/entity/player/Inventory;Lnet/minecraft/world/entity/player/Player;)Lnet/minecraft/world/inventory/AbstractContainerMenu; net/minecraft/world/level/block/LoomBlock/lambda$getMenuProvider$0 (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;ILnet/minecraft/world/entity/player/Inventory;Lnet/minecraft/world/entity/player/Player;)Lnet/minecraft/world/inventory/AbstractContainerMenu; +MD: net/minecraft/world/level/block/LoomBlock/m_5573_ (Lnet/minecraft/world/item/context/BlockPlaceContext;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/LoomBlock/getStateForPlacement (Lnet/minecraft/world/item/context/BlockPlaceContext;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/LoomBlock/m_6227_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;Lnet/minecraft/world/phys/BlockHitResult;)Lnet/minecraft/world/InteractionResult; net/minecraft/world/level/block/LoomBlock/use (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;Lnet/minecraft/world/phys/BlockHitResult;)Lnet/minecraft/world/InteractionResult; +MD: net/minecraft/world/level/block/LoomBlock/m_7246_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/MenuProvider; net/minecraft/world/level/block/LoomBlock/getMenuProvider (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/MenuProvider; +MD: net/minecraft/world/level/block/LoomBlock/m_7926_ (Lnet/minecraft/world/level/block/state/StateDefinition$Builder;)V net/minecraft/world/level/block/LoomBlock/createBlockStateDefinition (Lnet/minecraft/world/level/block/state/StateDefinition$Builder;)V +MD: net/minecraft/world/level/block/MagmaBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V net/minecraft/world/level/block/MagmaBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V +MD: net/minecraft/world/level/block/MagmaBlock/m_141947_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/entity/Entity;)V net/minecraft/world/level/block/MagmaBlock/stepOn (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/entity/Entity;)V +MD: net/minecraft/world/level/block/MagmaBlock/m_213897_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)V net/minecraft/world/level/block/MagmaBlock/tick (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)V +MD: net/minecraft/world/level/block/MagmaBlock/m_6807_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Z)V net/minecraft/world/level/block/MagmaBlock/onPlace (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Z)V +MD: net/minecraft/world/level/block/MagmaBlock/m_7417_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/MagmaBlock/updateShape (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/MangroveLeavesBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V net/minecraft/world/level/block/MangroveLeavesBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V +MD: net/minecraft/world/level/block/MangroveLeavesBlock/m_214148_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V net/minecraft/world/level/block/MangroveLeavesBlock/performBonemeal (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V +MD: net/minecraft/world/level/block/MangroveLeavesBlock/m_214167_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/world/level/block/MangroveLeavesBlock/isBonemealSuccess (Lnet/minecraft/world/level/Level;Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/world/level/block/MangroveLeavesBlock/m_7370_ (Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Z)Z net/minecraft/world/level/block/MangroveLeavesBlock/isValidBonemealTarget (Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Z)Z +MD: net/minecraft/world/level/block/MangrovePropaguleBlock/ ()V net/minecraft/world/level/block/MangrovePropaguleBlock/ ()V +MD: net/minecraft/world/level/block/MangrovePropaguleBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V net/minecraft/world/level/block/MangrovePropaguleBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V +MD: net/minecraft/world/level/block/MangrovePropaguleBlock/m_213898_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)V net/minecraft/world/level/block/MangrovePropaguleBlock/randomTick (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)V +MD: net/minecraft/world/level/block/MangrovePropaguleBlock/m_214148_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V net/minecraft/world/level/block/MangrovePropaguleBlock/performBonemeal (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V +MD: net/minecraft/world/level/block/MangrovePropaguleBlock/m_214167_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/world/level/block/MangrovePropaguleBlock/isBonemealSuccess (Lnet/minecraft/world/level/Level;Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/world/level/block/MangrovePropaguleBlock/m_221485_ (I)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/MangrovePropaguleBlock/createNewHangingPropagule (I)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/MangrovePropaguleBlock/m_221492_ ()Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/MangrovePropaguleBlock/createNewHangingPropagule ()Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/MangrovePropaguleBlock/m_221499_ (Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/world/level/block/MangrovePropaguleBlock/isHanging (Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/world/level/block/MangrovePropaguleBlock/m_221501_ (Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/world/level/block/MangrovePropaguleBlock/isFullyGrown (Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/world/level/block/MangrovePropaguleBlock/m_5573_ (Lnet/minecraft/world/item/context/BlockPlaceContext;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/MangrovePropaguleBlock/getStateForPlacement (Lnet/minecraft/world/item/context/BlockPlaceContext;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/MangrovePropaguleBlock/m_5888_ (Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/material/FluidState; net/minecraft/world/level/block/MangrovePropaguleBlock/getFluidState (Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/material/FluidState; +MD: net/minecraft/world/level/block/MangrovePropaguleBlock/m_5940_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; net/minecraft/world/level/block/MangrovePropaguleBlock/getShape (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; +MD: net/minecraft/world/level/block/MangrovePropaguleBlock/m_6266_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/level/block/MangrovePropaguleBlock/mayPlaceOn (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/level/block/MangrovePropaguleBlock/m_7370_ (Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Z)Z net/minecraft/world/level/block/MangrovePropaguleBlock/isValidBonemealTarget (Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Z)Z +MD: net/minecraft/world/level/block/MangrovePropaguleBlock/m_7417_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/MangrovePropaguleBlock/updateShape (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/MangrovePropaguleBlock/m_7898_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/level/block/MangrovePropaguleBlock/canSurvive (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/level/block/MangrovePropaguleBlock/m_7926_ (Lnet/minecraft/world/level/block/state/StateDefinition$Builder;)V net/minecraft/world/level/block/MangrovePropaguleBlock/createBlockStateDefinition (Lnet/minecraft/world/level/block/state/StateDefinition$Builder;)V +MD: net/minecraft/world/level/block/MangroveRootsBlock/ ()V net/minecraft/world/level/block/MangroveRootsBlock/ ()V +MD: net/minecraft/world/level/block/MangroveRootsBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V net/minecraft/world/level/block/MangroveRootsBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V +MD: net/minecraft/world/level/block/MangroveRootsBlock/m_5573_ (Lnet/minecraft/world/item/context/BlockPlaceContext;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/MangroveRootsBlock/getStateForPlacement (Lnet/minecraft/world/item/context/BlockPlaceContext;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/MangroveRootsBlock/m_5888_ (Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/material/FluidState; net/minecraft/world/level/block/MangroveRootsBlock/getFluidState (Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/material/FluidState; +MD: net/minecraft/world/level/block/MangroveRootsBlock/m_6104_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/Direction;)Z net/minecraft/world/level/block/MangroveRootsBlock/skipRendering (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/Direction;)Z +MD: net/minecraft/world/level/block/MangroveRootsBlock/m_7417_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/MangroveRootsBlock/updateShape (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/MangroveRootsBlock/m_7926_ (Lnet/minecraft/world/level/block/state/StateDefinition$Builder;)V net/minecraft/world/level/block/MangroveRootsBlock/createBlockStateDefinition (Lnet/minecraft/world/level/block/state/StateDefinition$Builder;)V +MD: net/minecraft/world/level/block/MelonBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V net/minecraft/world/level/block/MelonBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V +MD: net/minecraft/world/level/block/MelonBlock/m_7161_ ()Lnet/minecraft/world/level/block/StemBlock; net/minecraft/world/level/block/MelonBlock/getStem ()Lnet/minecraft/world/level/block/StemBlock; +MD: net/minecraft/world/level/block/MelonBlock/m_7810_ ()Lnet/minecraft/world/level/block/AttachedStemBlock; net/minecraft/world/level/block/MelonBlock/getAttachedStem ()Lnet/minecraft/world/level/block/AttachedStemBlock; +MD: net/minecraft/world/level/block/Mirror/ ()V net/minecraft/world/level/block/Mirror/ ()V +MD: net/minecraft/world/level/block/Mirror/ (Ljava/lang/String;ILjava/lang/String;Lcom/mojang/math/OctahedralGroup;)V net/minecraft/world/level/block/Mirror/ (Ljava/lang/String;ILjava/lang/String;Lcom/mojang/math/OctahedralGroup;)V +MD: net/minecraft/world/level/block/Mirror/m_153787_ ()Lnet/minecraft/network/chat/Component; net/minecraft/world/level/block/Mirror/symbol ()Lnet/minecraft/network/chat/Component; +MD: net/minecraft/world/level/block/Mirror/m_153788_ ()[Lnet/minecraft/world/level/block/Mirror; net/minecraft/world/level/block/Mirror/$values ()[Lnet/minecraft/world/level/block/Mirror; +MD: net/minecraft/world/level/block/Mirror/m_54842_ ()Lcom/mojang/math/OctahedralGroup; net/minecraft/world/level/block/Mirror/rotation ()Lcom/mojang/math/OctahedralGroup; +MD: net/minecraft/world/level/block/Mirror/m_54843_ (II)I net/minecraft/world/level/block/Mirror/mirror (II)I +MD: net/minecraft/world/level/block/Mirror/m_54846_ (Lnet/minecraft/core/Direction;)Lnet/minecraft/world/level/block/Rotation; net/minecraft/world/level/block/Mirror/getRotation (Lnet/minecraft/core/Direction;)Lnet/minecraft/world/level/block/Rotation; +MD: net/minecraft/world/level/block/Mirror/m_54848_ (Lnet/minecraft/core/Direction;)Lnet/minecraft/core/Direction; net/minecraft/world/level/block/Mirror/mirror (Lnet/minecraft/core/Direction;)Lnet/minecraft/core/Direction; +MD: net/minecraft/world/level/block/Mirror/m_7912_ ()Ljava/lang/String; net/minecraft/world/level/block/Mirror/getSerializedName ()Ljava/lang/String; +MD: net/minecraft/world/level/block/Mirror/valueOf (Ljava/lang/String;)Lnet/minecraft/world/level/block/Mirror; net/minecraft/world/level/block/Mirror/valueOf (Ljava/lang/String;)Lnet/minecraft/world/level/block/Mirror; +MD: net/minecraft/world/level/block/Mirror/values ()[Lnet/minecraft/world/level/block/Mirror; net/minecraft/world/level/block/Mirror/values ()[Lnet/minecraft/world/level/block/Mirror; +MD: net/minecraft/world/level/block/Mirror$1/ ()V net/minecraft/world/level/block/Mirror$1/ ()V +MD: net/minecraft/world/level/block/MossBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V net/minecraft/world/level/block/MossBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V +MD: net/minecraft/world/level/block/MossBlock/m_214148_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V net/minecraft/world/level/block/MossBlock/performBonemeal (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V +MD: net/minecraft/world/level/block/MossBlock/m_214167_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/world/level/block/MossBlock/isBonemealSuccess (Lnet/minecraft/world/level/Level;Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/world/level/block/MossBlock/m_255306_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Holder$Reference;)V net/minecraft/world/level/block/MossBlock/lambda$performBonemeal$1 (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Holder$Reference;)V +MD: net/minecraft/world/level/block/MossBlock/m_257327_ (Lnet/minecraft/core/Registry;)Ljava/util/Optional; net/minecraft/world/level/block/MossBlock/lambda$performBonemeal$0 (Lnet/minecraft/core/Registry;)Ljava/util/Optional; +MD: net/minecraft/world/level/block/MossBlock/m_7370_ (Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Z)Z net/minecraft/world/level/block/MossBlock/isValidBonemealTarget (Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Z)Z +MD: net/minecraft/world/level/block/MudBlock/ ()V net/minecraft/world/level/block/MudBlock/ ()V +MD: net/minecraft/world/level/block/MudBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V net/minecraft/world/level/block/MudBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V +MD: net/minecraft/world/level/block/MudBlock/m_5909_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; net/minecraft/world/level/block/MudBlock/getVisualShape (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; +MD: net/minecraft/world/level/block/MudBlock/m_5939_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; net/minecraft/world/level/block/MudBlock/getCollisionShape (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; +MD: net/minecraft/world/level/block/MudBlock/m_7357_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/pathfinder/PathComputationType;)Z net/minecraft/world/level/block/MudBlock/isPathfindable (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/pathfinder/PathComputationType;)Z +MD: net/minecraft/world/level/block/MudBlock/m_7749_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)F net/minecraft/world/level/block/MudBlock/getShadeBrightness (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)F +MD: net/minecraft/world/level/block/MudBlock/m_7947_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/phys/shapes/VoxelShape; net/minecraft/world/level/block/MudBlock/getBlockSupportShape (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/phys/shapes/VoxelShape; +MD: net/minecraft/world/level/block/MultifaceBlock/ ()V net/minecraft/world/level/block/MultifaceBlock/ ()V +MD: net/minecraft/world/level/block/MultifaceBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V net/minecraft/world/level/block/MultifaceBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V +MD: net/minecraft/world/level/block/MultifaceBlock/m_153829_ (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/Direction;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/world/level/block/MultifaceBlock/canAttachTo (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/Direction;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/world/level/block/MultifaceBlock/m_153861_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Direction;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/MultifaceBlock/lambda$getStateForPlacement$1 (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Direction;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/MultifaceBlock/m_153897_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/state/properties/BooleanProperty;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/MultifaceBlock/removeFace (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/state/properties/BooleanProperty;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/MultifaceBlock/m_153900_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/Direction;)Z net/minecraft/world/level/block/MultifaceBlock/hasFace (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/Direction;)Z +MD: net/minecraft/world/level/block/MultifaceBlock/m_153910_ (Lnet/minecraft/world/level/block/state/BlockState;Ljava/util/function/Function;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/MultifaceBlock/mapDirections (Lnet/minecraft/world/level/block/state/BlockState;Ljava/util/function/Function;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/MultifaceBlock/m_153918_ (Lnet/minecraft/world/level/block/state/StateDefinition;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/MultifaceBlock/getDefaultMultifaceState (Lnet/minecraft/world/level/block/state/StateDefinition;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/MultifaceBlock/m_153920_ (Lnet/minecraft/core/Direction;)Z net/minecraft/world/level/block/MultifaceBlock/isFaceSupported (Lnet/minecraft/core/Direction;)Z +MD: net/minecraft/world/level/block/MultifaceBlock/m_153922_ (Ljava/util/EnumMap;)V net/minecraft/world/level/block/MultifaceBlock/lambda$static$0 (Ljava/util/EnumMap;)V +MD: net/minecraft/world/level/block/MultifaceBlock/m_153933_ (Lnet/minecraft/core/Direction;)Lnet/minecraft/world/level/block/state/properties/BooleanProperty; net/minecraft/world/level/block/MultifaceBlock/getFaceProperty (Lnet/minecraft/core/Direction;)Lnet/minecraft/world/level/block/state/properties/BooleanProperty; +MD: net/minecraft/world/level/block/MultifaceBlock/m_153940_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Direction;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/MultifaceBlock/getStateForPlacement (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Direction;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/MultifaceBlock/m_153958_ (Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/phys/shapes/VoxelShape; net/minecraft/world/level/block/MultifaceBlock/calculateMultifaceShape (Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/phys/shapes/VoxelShape; +MD: net/minecraft/world/level/block/MultifaceBlock/m_153960_ (Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/world/level/block/MultifaceBlock/hasAnyFace (Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/world/level/block/MultifaceBlock/m_153962_ (Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/world/level/block/MultifaceBlock/hasAnyVacantFace (Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/world/level/block/MultifaceBlock/m_153964_ ()Z net/minecraft/world/level/block/MultifaceBlock/isWaterloggable ()Z +MD: net/minecraft/world/level/block/MultifaceBlock/m_213612_ ()Lnet/minecraft/world/level/block/MultifaceSpreader; net/minecraft/world/level/block/MultifaceBlock/getSpreader ()Lnet/minecraft/world/level/block/MultifaceSpreader; +MD: net/minecraft/world/level/block/MultifaceBlock/m_221569_ (B)Ljava/util/Set; net/minecraft/world/level/block/MultifaceBlock/unpack (B)Ljava/util/Set; +MD: net/minecraft/world/level/block/MultifaceBlock/m_221571_ (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Direction;)Z net/minecraft/world/level/block/MultifaceBlock/isValidStateForPlacement (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Direction;)Z +MD: net/minecraft/world/level/block/MultifaceBlock/m_221576_ (Ljava/util/Collection;)B net/minecraft/world/level/block/MultifaceBlock/pack (Ljava/util/Collection;)B +MD: net/minecraft/world/level/block/MultifaceBlock/m_221578_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/Direction;)Z net/minecraft/world/level/block/MultifaceBlock/lambda$hasAnyVacantFace$3 (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/Direction;)Z +MD: net/minecraft/world/level/block/MultifaceBlock/m_221581_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/Direction;)Z net/minecraft/world/level/block/MultifaceBlock/lambda$hasAnyFace$2 (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/Direction;)Z +MD: net/minecraft/world/level/block/MultifaceBlock/m_221584_ (Lnet/minecraft/world/level/block/state/BlockState;)Ljava/util/Set; net/minecraft/world/level/block/MultifaceBlock/availableFaces (Lnet/minecraft/world/level/block/state/BlockState;)Ljava/util/Set; +MD: net/minecraft/world/level/block/MultifaceBlock/m_5573_ (Lnet/minecraft/world/item/context/BlockPlaceContext;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/MultifaceBlock/getStateForPlacement (Lnet/minecraft/world/item/context/BlockPlaceContext;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/MultifaceBlock/m_5940_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; net/minecraft/world/level/block/MultifaceBlock/getShape (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; +MD: net/minecraft/world/level/block/MultifaceBlock/m_6843_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/Rotation;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/MultifaceBlock/rotate (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/Rotation;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/MultifaceBlock/m_6864_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/item/context/BlockPlaceContext;)Z net/minecraft/world/level/block/MultifaceBlock/canBeReplaced (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/item/context/BlockPlaceContext;)Z +MD: net/minecraft/world/level/block/MultifaceBlock/m_6943_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/Mirror;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/MultifaceBlock/mirror (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/Mirror;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/MultifaceBlock/m_7417_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/MultifaceBlock/updateShape (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/MultifaceBlock/m_7898_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/level/block/MultifaceBlock/canSurvive (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/level/block/MultifaceBlock/m_7926_ (Lnet/minecraft/world/level/block/state/StateDefinition$Builder;)V net/minecraft/world/level/block/MultifaceBlock/createBlockStateDefinition (Lnet/minecraft/world/level/block/state/StateDefinition$Builder;)V +MD: net/minecraft/world/level/block/MultifaceSpreader/ ()V net/minecraft/world/level/block/MultifaceSpreader/ ()V +MD: net/minecraft/world/level/block/MultifaceSpreader/ (Lnet/minecraft/world/level/block/MultifaceSpreader$SpreadConfig;)V net/minecraft/world/level/block/MultifaceSpreader/ (Lnet/minecraft/world/level/block/MultifaceSpreader$SpreadConfig;)V +MD: net/minecraft/world/level/block/MultifaceSpreader/ (Lnet/minecraft/world/level/block/MultifaceBlock;)V net/minecraft/world/level/block/MultifaceSpreader/ (Lnet/minecraft/world/level/block/MultifaceBlock;)V +MD: net/minecraft/world/level/block/MultifaceSpreader/m_221593_ (Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/world/level/block/MultifaceSpreader$SpreadPos;Z)Ljava/util/Optional; net/minecraft/world/level/block/MultifaceSpreader/spreadToFace (Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/world/level/block/MultifaceSpreader$SpreadPos;Z)Ljava/util/Optional; +MD: net/minecraft/world/level/block/MultifaceSpreader/m_221597_ (Lnet/minecraft/world/level/LevelAccessor;ZLnet/minecraft/world/level/block/MultifaceSpreader$SpreadPos;)Ljava/util/Optional; net/minecraft/world/level/block/MultifaceSpreader/lambda$spreadFromFaceTowardDirection$7 (Lnet/minecraft/world/level/LevelAccessor;ZLnet/minecraft/world/level/block/MultifaceSpreader$SpreadPos;)Ljava/util/Optional; +MD: net/minecraft/world/level/block/MultifaceSpreader/m_221601_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Direction;)Z net/minecraft/world/level/block/MultifaceSpreader/canSpreadInAnyDirection (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Direction;)Z +MD: net/minecraft/world/level/block/MultifaceSpreader/m_221606_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Direction;Lnet/minecraft/core/Direction;)Z net/minecraft/world/level/block/MultifaceSpreader/lambda$canSpreadInAnyDirection$0 (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Direction;Lnet/minecraft/core/Direction;)Z +MD: net/minecraft/world/level/block/MultifaceSpreader/m_221612_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Direction;Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/block/MultifaceSpreader$SpreadPredicate;)Ljava/util/Optional; net/minecraft/world/level/block/MultifaceSpreader/getSpreadFromFaceTowardDirection (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Direction;Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/block/MultifaceSpreader$SpreadPredicate;)Ljava/util/Optional; +MD: net/minecraft/world/level/block/MultifaceSpreader/m_221619_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)Ljava/util/Optional; net/minecraft/world/level/block/MultifaceSpreader/spreadFromRandomFaceTowardRandomDirection (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)Ljava/util/Optional; +MD: net/minecraft/world/level/block/MultifaceSpreader/m_221624_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/Direction;)Ljava/util/Optional; net/minecraft/world/level/block/MultifaceSpreader/lambda$spreadFromRandomFaceTowardRandomDirection$2 (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/Direction;)Ljava/util/Optional; +MD: net/minecraft/world/level/block/MultifaceSpreader/m_221630_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Direction;Lnet/minecraft/util/RandomSource;Z)Ljava/util/Optional; net/minecraft/world/level/block/MultifaceSpreader/spreadFromFaceTowardRandomDirection (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Direction;Lnet/minecraft/util/RandomSource;Z)Ljava/util/Optional; +MD: net/minecraft/world/level/block/MultifaceSpreader/m_221637_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Direction;Lnet/minecraft/core/Direction;Z)Ljava/util/Optional; net/minecraft/world/level/block/MultifaceSpreader/spreadFromFaceTowardDirection (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Direction;Lnet/minecraft/core/Direction;Z)Ljava/util/Optional; +MD: net/minecraft/world/level/block/MultifaceSpreader/m_221644_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Direction;Z)J net/minecraft/world/level/block/MultifaceSpreader/spreadFromFaceTowardAllDirections (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Direction;Z)J +MD: net/minecraft/world/level/block/MultifaceSpreader/m_221650_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Direction;ZLnet/minecraft/core/Direction;)Ljava/util/Optional; net/minecraft/world/level/block/MultifaceSpreader/lambda$spreadFromFaceTowardAllDirections$6 (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Direction;ZLnet/minecraft/core/Direction;)Ljava/util/Optional; +MD: net/minecraft/world/level/block/MultifaceSpreader/m_221657_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Z)J net/minecraft/world/level/block/MultifaceSpreader/spreadAll (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Z)J +MD: net/minecraft/world/level/block/MultifaceSpreader/m_221662_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;ZLnet/minecraft/core/Direction;)Ljava/lang/Long; net/minecraft/world/level/block/MultifaceSpreader/lambda$spreadAll$4 (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;ZLnet/minecraft/core/Direction;)Ljava/lang/Long; +MD: net/minecraft/world/level/block/MultifaceSpreader/m_221668_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/Direction;)Z net/minecraft/world/level/block/MultifaceSpreader/lambda$spreadAll$3 (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/Direction;)Z +MD: net/minecraft/world/level/block/MultifaceSpreader/m_221671_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Direction;ZLnet/minecraft/core/Direction;)Ljava/util/Optional; net/minecraft/world/level/block/MultifaceSpreader/lambda$spreadFromFaceTowardRandomDirection$5 (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Direction;ZLnet/minecraft/core/Direction;)Ljava/util/Optional; +MD: net/minecraft/world/level/block/MultifaceSpreader/m_221678_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/Direction;)Z net/minecraft/world/level/block/MultifaceSpreader/lambda$spreadFromRandomFaceTowardRandomDirection$1 (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/Direction;)Z +MD: net/minecraft/world/level/block/MultifaceSpreader$DefaultSpreaderConfig/ (Lnet/minecraft/world/level/block/MultifaceBlock;)V net/minecraft/world/level/block/MultifaceSpreader$DefaultSpreaderConfig/ (Lnet/minecraft/world/level/block/MultifaceBlock;)V +MD: net/minecraft/world/level/block/MultifaceSpreader$DefaultSpreaderConfig/m_213938_ (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/world/level/block/MultifaceSpreader$DefaultSpreaderConfig/stateCanBeReplaced (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/world/level/block/MultifaceSpreader$DefaultSpreaderConfig/m_213973_ (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/MultifaceSpreader$SpreadPos;)Z net/minecraft/world/level/block/MultifaceSpreader$DefaultSpreaderConfig/canSpreadInto (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/MultifaceSpreader$SpreadPos;)Z +MD: net/minecraft/world/level/block/MultifaceSpreader$DefaultSpreaderConfig/m_214136_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Direction;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/MultifaceSpreader$DefaultSpreaderConfig/getStateForPlacement (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Direction;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/MultifaceSpreader$SpreadConfig/m_213973_ (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/MultifaceSpreader$SpreadPos;)Z net/minecraft/world/level/block/MultifaceSpreader$SpreadConfig/canSpreadInto (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/MultifaceSpreader$SpreadPos;)Z +MD: net/minecraft/world/level/block/MultifaceSpreader$SpreadConfig/m_214107_ (Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/world/level/block/MultifaceSpreader$SpreadConfig/isOtherBlockValidAsSource (Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/world/level/block/MultifaceSpreader$SpreadConfig/m_214109_ ()[Lnet/minecraft/world/level/block/MultifaceSpreader$SpreadType; net/minecraft/world/level/block/MultifaceSpreader$SpreadConfig/getSpreadTypes ()[Lnet/minecraft/world/level/block/MultifaceSpreader$SpreadType; +MD: net/minecraft/world/level/block/MultifaceSpreader$SpreadConfig/m_214136_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Direction;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/MultifaceSpreader$SpreadConfig/getStateForPlacement (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Direction;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/MultifaceSpreader$SpreadConfig/m_221701_ (Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/world/level/block/MultifaceSpreader$SpreadPos;Lnet/minecraft/world/level/block/state/BlockState;Z)Z net/minecraft/world/level/block/MultifaceSpreader$SpreadConfig/placeBlock (Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/world/level/block/MultifaceSpreader$SpreadPos;Lnet/minecraft/world/level/block/state/BlockState;Z)Z +MD: net/minecraft/world/level/block/MultifaceSpreader$SpreadConfig/m_221711_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/Direction;)Z net/minecraft/world/level/block/MultifaceSpreader$SpreadConfig/hasFace (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/Direction;)Z +MD: net/minecraft/world/level/block/MultifaceSpreader$SpreadConfig/m_221714_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/Direction;)Z net/minecraft/world/level/block/MultifaceSpreader$SpreadConfig/canSpreadFrom (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/Direction;)Z +MD: net/minecraft/world/level/block/MultifaceSpreader$SpreadPos/ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Direction;)V net/minecraft/world/level/block/MultifaceSpreader$SpreadPos/ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Direction;)V +MD: net/minecraft/world/level/block/MultifaceSpreader$SpreadPos/equals (Ljava/lang/Object;)Z net/minecraft/world/level/block/MultifaceSpreader$SpreadPos/equals (Ljava/lang/Object;)Z +MD: net/minecraft/world/level/block/MultifaceSpreader$SpreadPos/f_221717_ ()Lnet/minecraft/core/BlockPos; net/minecraft/world/level/block/MultifaceSpreader$SpreadPos/pos ()Lnet/minecraft/core/BlockPos; +MD: net/minecraft/world/level/block/MultifaceSpreader$SpreadPos/f_221718_ ()Lnet/minecraft/core/Direction; net/minecraft/world/level/block/MultifaceSpreader$SpreadPos/face ()Lnet/minecraft/core/Direction; +MD: net/minecraft/world/level/block/MultifaceSpreader$SpreadPos/hashCode ()I net/minecraft/world/level/block/MultifaceSpreader$SpreadPos/hashCode ()I +MD: net/minecraft/world/level/block/MultifaceSpreader$SpreadPos/toString ()Ljava/lang/String; net/minecraft/world/level/block/MultifaceSpreader$SpreadPos/toString ()Ljava/lang/String; +MD: net/minecraft/world/level/block/MultifaceSpreader$SpreadPredicate/m_221728_ (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/MultifaceSpreader$SpreadPos;)Z net/minecraft/world/level/block/MultifaceSpreader$SpreadPredicate/test (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/MultifaceSpreader$SpreadPos;)Z +MD: net/minecraft/world/level/block/MultifaceSpreader$SpreadType/ ()V net/minecraft/world/level/block/MultifaceSpreader$SpreadType/ ()V +MD: net/minecraft/world/level/block/MultifaceSpreader$SpreadType/ (Ljava/lang/String;I)V net/minecraft/world/level/block/MultifaceSpreader$SpreadType/ (Ljava/lang/String;I)V +MD: net/minecraft/world/level/block/MultifaceSpreader$SpreadType/m_213941_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Direction;Lnet/minecraft/core/Direction;)Lnet/minecraft/world/level/block/MultifaceSpreader$SpreadPos; net/minecraft/world/level/block/MultifaceSpreader$SpreadType/getSpreadPos (Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Direction;Lnet/minecraft/core/Direction;)Lnet/minecraft/world/level/block/MultifaceSpreader$SpreadPos; +MD: net/minecraft/world/level/block/MultifaceSpreader$SpreadType/m_221740_ ()[Lnet/minecraft/world/level/block/MultifaceSpreader$SpreadType; net/minecraft/world/level/block/MultifaceSpreader$SpreadType/$values ()[Lnet/minecraft/world/level/block/MultifaceSpreader$SpreadType; +MD: net/minecraft/world/level/block/MultifaceSpreader$SpreadType/valueOf (Ljava/lang/String;)Lnet/minecraft/world/level/block/MultifaceSpreader$SpreadType; net/minecraft/world/level/block/MultifaceSpreader$SpreadType/valueOf (Ljava/lang/String;)Lnet/minecraft/world/level/block/MultifaceSpreader$SpreadType; +MD: net/minecraft/world/level/block/MultifaceSpreader$SpreadType/values ()[Lnet/minecraft/world/level/block/MultifaceSpreader$SpreadType; net/minecraft/world/level/block/MultifaceSpreader$SpreadType/values ()[Lnet/minecraft/world/level/block/MultifaceSpreader$SpreadType; +MD: net/minecraft/world/level/block/MultifaceSpreader$SpreadType$1/ (Ljava/lang/String;I)V net/minecraft/world/level/block/MultifaceSpreader$SpreadType$1/ (Ljava/lang/String;I)V +MD: net/minecraft/world/level/block/MultifaceSpreader$SpreadType$1/m_213941_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Direction;Lnet/minecraft/core/Direction;)Lnet/minecraft/world/level/block/MultifaceSpreader$SpreadPos; net/minecraft/world/level/block/MultifaceSpreader$SpreadType$1/getSpreadPos (Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Direction;Lnet/minecraft/core/Direction;)Lnet/minecraft/world/level/block/MultifaceSpreader$SpreadPos; +MD: net/minecraft/world/level/block/MultifaceSpreader$SpreadType$2/ (Ljava/lang/String;I)V net/minecraft/world/level/block/MultifaceSpreader$SpreadType$2/ (Ljava/lang/String;I)V +MD: net/minecraft/world/level/block/MultifaceSpreader$SpreadType$2/m_213941_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Direction;Lnet/minecraft/core/Direction;)Lnet/minecraft/world/level/block/MultifaceSpreader$SpreadPos; net/minecraft/world/level/block/MultifaceSpreader$SpreadType$2/getSpreadPos (Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Direction;Lnet/minecraft/core/Direction;)Lnet/minecraft/world/level/block/MultifaceSpreader$SpreadPos; +MD: net/minecraft/world/level/block/MultifaceSpreader$SpreadType$3/ (Ljava/lang/String;I)V net/minecraft/world/level/block/MultifaceSpreader$SpreadType$3/ (Ljava/lang/String;I)V +MD: net/minecraft/world/level/block/MultifaceSpreader$SpreadType$3/m_213941_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Direction;Lnet/minecraft/core/Direction;)Lnet/minecraft/world/level/block/MultifaceSpreader$SpreadPos; net/minecraft/world/level/block/MultifaceSpreader$SpreadType$3/getSpreadPos (Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Direction;Lnet/minecraft/core/Direction;)Lnet/minecraft/world/level/block/MultifaceSpreader$SpreadPos; +MD: net/minecraft/world/level/block/MushroomBlock/ ()V net/minecraft/world/level/block/MushroomBlock/ ()V +MD: net/minecraft/world/level/block/MushroomBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;Lnet/minecraft/resources/ResourceKey;)V net/minecraft/world/level/block/MushroomBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;Lnet/minecraft/resources/ResourceKey;)V +MD: net/minecraft/world/level/block/MushroomBlock/m_213898_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)V net/minecraft/world/level/block/MushroomBlock/randomTick (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)V +MD: net/minecraft/world/level/block/MushroomBlock/m_214148_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V net/minecraft/world/level/block/MushroomBlock/performBonemeal (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V +MD: net/minecraft/world/level/block/MushroomBlock/m_214167_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/world/level/block/MushroomBlock/isBonemealSuccess (Lnet/minecraft/world/level/Level;Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/world/level/block/MushroomBlock/m_221773_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/util/RandomSource;)Z net/minecraft/world/level/block/MushroomBlock/growMushroom (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/util/RandomSource;)Z +MD: net/minecraft/world/level/block/MushroomBlock/m_5940_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; net/minecraft/world/level/block/MushroomBlock/getShape (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; +MD: net/minecraft/world/level/block/MushroomBlock/m_6266_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/level/block/MushroomBlock/mayPlaceOn (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/level/block/MushroomBlock/m_7370_ (Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Z)Z net/minecraft/world/level/block/MushroomBlock/isValidBonemealTarget (Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Z)Z +MD: net/minecraft/world/level/block/MushroomBlock/m_7898_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/level/block/MushroomBlock/canSurvive (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/level/block/MyceliumBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V net/minecraft/world/level/block/MyceliumBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V +MD: net/minecraft/world/level/block/MyceliumBlock/m_214162_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)V net/minecraft/world/level/block/MyceliumBlock/animateTick (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)V +MD: net/minecraft/world/level/block/NetherPortalBlock/ ()V net/minecraft/world/level/block/NetherPortalBlock/ ()V +MD: net/minecraft/world/level/block/NetherPortalBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V net/minecraft/world/level/block/NetherPortalBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V +MD: net/minecraft/world/level/block/NetherPortalBlock/m_213898_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)V net/minecraft/world/level/block/NetherPortalBlock/randomTick (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)V +MD: net/minecraft/world/level/block/NetherPortalBlock/m_214162_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)V net/minecraft/world/level/block/NetherPortalBlock/animateTick (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)V +MD: net/minecraft/world/level/block/NetherPortalBlock/m_5940_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; net/minecraft/world/level/block/NetherPortalBlock/getShape (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; +MD: net/minecraft/world/level/block/NetherPortalBlock/m_6843_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/Rotation;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/NetherPortalBlock/rotate (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/Rotation;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/NetherPortalBlock/m_7397_ (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/item/ItemStack; net/minecraft/world/level/block/NetherPortalBlock/getCloneItemStack (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/level/block/NetherPortalBlock/m_7417_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/NetherPortalBlock/updateShape (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/NetherPortalBlock/m_7892_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/Entity;)V net/minecraft/world/level/block/NetherPortalBlock/entityInside (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/Entity;)V +MD: net/minecraft/world/level/block/NetherPortalBlock/m_7926_ (Lnet/minecraft/world/level/block/state/StateDefinition$Builder;)V net/minecraft/world/level/block/NetherPortalBlock/createBlockStateDefinition (Lnet/minecraft/world/level/block/state/StateDefinition$Builder;)V +MD: net/minecraft/world/level/block/NetherPortalBlock$1/ ()V net/minecraft/world/level/block/NetherPortalBlock$1/ ()V +MD: net/minecraft/world/level/block/NetherSproutsBlock/ ()V net/minecraft/world/level/block/NetherSproutsBlock/ ()V +MD: net/minecraft/world/level/block/NetherSproutsBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V net/minecraft/world/level/block/NetherSproutsBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V +MD: net/minecraft/world/level/block/NetherSproutsBlock/m_5940_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; net/minecraft/world/level/block/NetherSproutsBlock/getShape (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; +MD: net/minecraft/world/level/block/NetherSproutsBlock/m_6266_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/level/block/NetherSproutsBlock/mayPlaceOn (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/level/block/NetherVines/ ()V net/minecraft/world/level/block/NetherVines/ ()V +MD: net/minecraft/world/level/block/NetherVines/m_221803_ (Lnet/minecraft/util/RandomSource;)I net/minecraft/world/level/block/NetherVines/getBlocksToGrowWhenBonemealed (Lnet/minecraft/util/RandomSource;)I +MD: net/minecraft/world/level/block/NetherVines/m_54963_ (Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/world/level/block/NetherVines/isValidGrowthState (Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/world/level/block/NetherWartBlock/ ()V net/minecraft/world/level/block/NetherWartBlock/ ()V +MD: net/minecraft/world/level/block/NetherWartBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V net/minecraft/world/level/block/NetherWartBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V +MD: net/minecraft/world/level/block/NetherWartBlock/m_213898_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)V net/minecraft/world/level/block/NetherWartBlock/randomTick (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)V +MD: net/minecraft/world/level/block/NetherWartBlock/m_5940_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; net/minecraft/world/level/block/NetherWartBlock/getShape (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; +MD: net/minecraft/world/level/block/NetherWartBlock/m_6266_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/level/block/NetherWartBlock/mayPlaceOn (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/level/block/NetherWartBlock/m_6724_ (Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/world/level/block/NetherWartBlock/isRandomlyTicking (Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/world/level/block/NetherWartBlock/m_7397_ (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/item/ItemStack; net/minecraft/world/level/block/NetherWartBlock/getCloneItemStack (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/level/block/NetherWartBlock/m_7926_ (Lnet/minecraft/world/level/block/state/StateDefinition$Builder;)V net/minecraft/world/level/block/NetherWartBlock/createBlockStateDefinition (Lnet/minecraft/world/level/block/state/StateDefinition$Builder;)V +MD: net/minecraft/world/level/block/NetherrackBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V net/minecraft/world/level/block/NetherrackBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V +MD: net/minecraft/world/level/block/NetherrackBlock/m_214148_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V net/minecraft/world/level/block/NetherrackBlock/performBonemeal (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V +MD: net/minecraft/world/level/block/NetherrackBlock/m_214167_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/world/level/block/NetherrackBlock/isBonemealSuccess (Lnet/minecraft/world/level/Level;Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/world/level/block/NetherrackBlock/m_7370_ (Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Z)Z net/minecraft/world/level/block/NetherrackBlock/isValidBonemealTarget (Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Z)Z +MD: net/minecraft/world/level/block/NoteBlock/ ()V net/minecraft/world/level/block/NoteBlock/ ()V +MD: net/minecraft/world/level/block/NoteBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V net/minecraft/world/level/block/NoteBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V +MD: net/minecraft/world/level/block/NoteBlock/m_260916_ (Lnet/minecraft/world/entity/Entity;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;)V net/minecraft/world/level/block/NoteBlock/playNote (Lnet/minecraft/world/entity/Entity;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/world/level/block/NoteBlock/m_261136_ (Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/NoteBlock/setInstrument (Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/NoteBlock/m_262851_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/world/level/block/NoteBlock/getCustomSoundId (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/world/level/block/NoteBlock/m_276981_ (I)F net/minecraft/world/level/block/NoteBlock/getPitchFromNote (I)F +MD: net/minecraft/world/level/block/NoteBlock/m_5573_ (Lnet/minecraft/world/item/context/BlockPlaceContext;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/NoteBlock/getStateForPlacement (Lnet/minecraft/world/item/context/BlockPlaceContext;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/NoteBlock/m_6227_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;Lnet/minecraft/world/phys/BlockHitResult;)Lnet/minecraft/world/InteractionResult; net/minecraft/world/level/block/NoteBlock/use (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;Lnet/minecraft/world/phys/BlockHitResult;)Lnet/minecraft/world/InteractionResult; +MD: net/minecraft/world/level/block/NoteBlock/m_6256_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/player/Player;)V net/minecraft/world/level/block/NoteBlock/attack (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/player/Player;)V +MD: net/minecraft/world/level/block/NoteBlock/m_6861_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/Block;Lnet/minecraft/core/BlockPos;Z)V net/minecraft/world/level/block/NoteBlock/neighborChanged (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/Block;Lnet/minecraft/core/BlockPos;Z)V +MD: net/minecraft/world/level/block/NoteBlock/m_7417_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/NoteBlock/updateShape (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/NoteBlock/m_7926_ (Lnet/minecraft/world/level/block/state/StateDefinition$Builder;)V net/minecraft/world/level/block/NoteBlock/createBlockStateDefinition (Lnet/minecraft/world/level/block/state/StateDefinition$Builder;)V +MD: net/minecraft/world/level/block/NoteBlock/m_8133_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;II)Z net/minecraft/world/level/block/NoteBlock/triggerEvent (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;II)Z +MD: net/minecraft/world/level/block/NyliumBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V net/minecraft/world/level/block/NyliumBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V +MD: net/minecraft/world/level/block/NyliumBlock/m_213898_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)V net/minecraft/world/level/block/NyliumBlock/randomTick (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)V +MD: net/minecraft/world/level/block/NyliumBlock/m_214148_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V net/minecraft/world/level/block/NyliumBlock/performBonemeal (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V +MD: net/minecraft/world/level/block/NyliumBlock/m_214167_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/world/level/block/NyliumBlock/isBonemealSuccess (Lnet/minecraft/world/level/Level;Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/world/level/block/NyliumBlock/m_255256_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/level/chunk/ChunkGenerator;Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Holder$Reference;)V net/minecraft/world/level/block/NyliumBlock/lambda$place$0 (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/level/chunk/ChunkGenerator;Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Holder$Reference;)V +MD: net/minecraft/world/level/block/NyliumBlock/m_255258_ (Lnet/minecraft/core/Registry;Lnet/minecraft/resources/ResourceKey;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/level/chunk/ChunkGenerator;Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos;)V net/minecraft/world/level/block/NyliumBlock/place (Lnet/minecraft/core/Registry;Lnet/minecraft/resources/ResourceKey;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/level/chunk/ChunkGenerator;Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/world/level/block/NyliumBlock/m_55078_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/level/block/NyliumBlock/canBeNylium (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/level/block/NyliumBlock/m_7370_ (Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Z)Z net/minecraft/world/level/block/NyliumBlock/isValidBonemealTarget (Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Z)Z +MD: net/minecraft/world/level/block/ObserverBlock/ ()V net/minecraft/world/level/block/ObserverBlock/ ()V +MD: net/minecraft/world/level/block/ObserverBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V net/minecraft/world/level/block/ObserverBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V +MD: net/minecraft/world/level/block/ObserverBlock/m_213897_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)V net/minecraft/world/level/block/ObserverBlock/tick (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)V +MD: net/minecraft/world/level/block/ObserverBlock/m_55088_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V net/minecraft/world/level/block/ObserverBlock/updateNeighborsInFront (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V +MD: net/minecraft/world/level/block/ObserverBlock/m_55092_ (Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;)V net/minecraft/world/level/block/ObserverBlock/startSignal (Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/world/level/block/ObserverBlock/m_5573_ (Lnet/minecraft/world/item/context/BlockPlaceContext;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/ObserverBlock/getStateForPlacement (Lnet/minecraft/world/item/context/BlockPlaceContext;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/ObserverBlock/m_6376_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Direction;)I net/minecraft/world/level/block/ObserverBlock/getDirectSignal (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Direction;)I +MD: net/minecraft/world/level/block/ObserverBlock/m_6378_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Direction;)I net/minecraft/world/level/block/ObserverBlock/getSignal (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Direction;)I +MD: net/minecraft/world/level/block/ObserverBlock/m_6807_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Z)V net/minecraft/world/level/block/ObserverBlock/onPlace (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Z)V +MD: net/minecraft/world/level/block/ObserverBlock/m_6810_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Z)V net/minecraft/world/level/block/ObserverBlock/onRemove (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Z)V +MD: net/minecraft/world/level/block/ObserverBlock/m_6843_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/Rotation;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/ObserverBlock/rotate (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/Rotation;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/ObserverBlock/m_6943_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/Mirror;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/ObserverBlock/mirror (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/Mirror;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/ObserverBlock/m_7417_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/ObserverBlock/updateShape (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/ObserverBlock/m_7899_ (Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/world/level/block/ObserverBlock/isSignalSource (Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/world/level/block/ObserverBlock/m_7926_ (Lnet/minecraft/world/level/block/state/StateDefinition$Builder;)V net/minecraft/world/level/block/ObserverBlock/createBlockStateDefinition (Lnet/minecraft/world/level/block/state/StateDefinition$Builder;)V +MD: net/minecraft/world/level/block/PiglinWallSkullBlock/ ()V net/minecraft/world/level/block/PiglinWallSkullBlock/ ()V +MD: net/minecraft/world/level/block/PiglinWallSkullBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V net/minecraft/world/level/block/PiglinWallSkullBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V +MD: net/minecraft/world/level/block/PiglinWallSkullBlock/m_5940_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; net/minecraft/world/level/block/PiglinWallSkullBlock/getShape (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; +MD: net/minecraft/world/level/block/PinkPetalsBlock/ ()V net/minecraft/world/level/block/PinkPetalsBlock/ ()V +MD: net/minecraft/world/level/block/PinkPetalsBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V net/minecraft/world/level/block/PinkPetalsBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V +MD: net/minecraft/world/level/block/PinkPetalsBlock/m_214148_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V net/minecraft/world/level/block/PinkPetalsBlock/performBonemeal (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V +MD: net/minecraft/world/level/block/PinkPetalsBlock/m_214167_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/world/level/block/PinkPetalsBlock/isBonemealSuccess (Lnet/minecraft/world/level/Level;Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/world/level/block/PinkPetalsBlock/m_5573_ (Lnet/minecraft/world/item/context/BlockPlaceContext;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/PinkPetalsBlock/getStateForPlacement (Lnet/minecraft/world/item/context/BlockPlaceContext;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/PinkPetalsBlock/m_5940_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; net/minecraft/world/level/block/PinkPetalsBlock/getShape (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; +MD: net/minecraft/world/level/block/PinkPetalsBlock/m_6843_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/Rotation;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/PinkPetalsBlock/rotate (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/Rotation;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/PinkPetalsBlock/m_6864_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/item/context/BlockPlaceContext;)Z net/minecraft/world/level/block/PinkPetalsBlock/canBeReplaced (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/item/context/BlockPlaceContext;)Z +MD: net/minecraft/world/level/block/PinkPetalsBlock/m_6943_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/Mirror;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/PinkPetalsBlock/mirror (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/Mirror;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/PinkPetalsBlock/m_7370_ (Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Z)Z net/minecraft/world/level/block/PinkPetalsBlock/isValidBonemealTarget (Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Z)Z +MD: net/minecraft/world/level/block/PinkPetalsBlock/m_7926_ (Lnet/minecraft/world/level/block/state/StateDefinition$Builder;)V net/minecraft/world/level/block/PinkPetalsBlock/createBlockStateDefinition (Lnet/minecraft/world/level/block/state/StateDefinition$Builder;)V +MD: net/minecraft/world/level/block/PipeBlock/ ()V net/minecraft/world/level/block/PipeBlock/ ()V +MD: net/minecraft/world/level/block/PipeBlock/ (FLnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V net/minecraft/world/level/block/PipeBlock/ (FLnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V +MD: net/minecraft/world/level/block/PipeBlock/m_55161_ (F)[Lnet/minecraft/world/phys/shapes/VoxelShape; net/minecraft/world/level/block/PipeBlock/makeShapes (F)[Lnet/minecraft/world/phys/shapes/VoxelShape; +MD: net/minecraft/world/level/block/PipeBlock/m_55163_ (Ljava/util/EnumMap;)V net/minecraft/world/level/block/PipeBlock/lambda$static$0 (Ljava/util/EnumMap;)V +MD: net/minecraft/world/level/block/PipeBlock/m_55174_ (Lnet/minecraft/world/level/block/state/BlockState;)I net/minecraft/world/level/block/PipeBlock/getAABBIndex (Lnet/minecraft/world/level/block/state/BlockState;)I +MD: net/minecraft/world/level/block/PipeBlock/m_5940_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; net/minecraft/world/level/block/PipeBlock/getShape (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; +MD: net/minecraft/world/level/block/PipeBlock/m_7420_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/level/block/PipeBlock/propagatesSkylightDown (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/level/block/PitcherCropBlock/ ()V net/minecraft/world/level/block/PitcherCropBlock/ ()V +MD: net/minecraft/world/level/block/PitcherCropBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V net/minecraft/world/level/block/PitcherCropBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V +MD: net/minecraft/world/level/block/PitcherCropBlock/m_213898_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)V net/minecraft/world/level/block/PitcherCropBlock/randomTick (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)V +MD: net/minecraft/world/level/block/PitcherCropBlock/m_214148_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V net/minecraft/world/level/block/PitcherCropBlock/performBonemeal (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V +MD: net/minecraft/world/level/block/PitcherCropBlock/m_214167_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/world/level/block/PitcherCropBlock/isBonemealSuccess (Lnet/minecraft/world/level/Level;Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/world/level/block/PitcherCropBlock/m_276876_ (Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/world/level/block/PitcherCropBlock/isMaxAge (Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/world/level/block/PitcherCropBlock/m_276898_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/BlockPos;I)V net/minecraft/world/level/block/PitcherCropBlock/grow (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/BlockPos;I)V +MD: net/minecraft/world/level/block/PitcherCropBlock/m_277165_ (Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/level/block/PitcherCropBlock/canGrowInto (Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/level/block/PitcherCropBlock/m_278754_ (Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/world/level/block/PitcherCropBlock/isLower (Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/world/level/block/PitcherCropBlock/m_289996_ (Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;I)Z net/minecraft/world/level/block/PitcherCropBlock/canGrow (Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;I)Z +MD: net/minecraft/world/level/block/PitcherCropBlock/m_289999_ (Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/block/PitcherCropBlock$PosAndState; net/minecraft/world/level/block/PitcherCropBlock/getLowerHalf (Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/block/PitcherCropBlock$PosAndState; +MD: net/minecraft/world/level/block/PitcherCropBlock/m_290001_ (Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/world/level/block/PitcherCropBlock/isUpper (Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/world/level/block/PitcherCropBlock/m_290004_ (Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/level/block/PitcherCropBlock/sufficientLight (Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/level/block/PitcherCropBlock/m_5573_ (Lnet/minecraft/world/item/context/BlockPlaceContext;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/PitcherCropBlock/getStateForPlacement (Lnet/minecraft/world/item/context/BlockPlaceContext;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/PitcherCropBlock/m_5939_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; net/minecraft/world/level/block/PitcherCropBlock/getCollisionShape (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; +MD: net/minecraft/world/level/block/PitcherCropBlock/m_5940_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; net/minecraft/world/level/block/PitcherCropBlock/getShape (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; +MD: net/minecraft/world/level/block/PitcherCropBlock/m_6266_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/level/block/PitcherCropBlock/mayPlaceOn (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/level/block/PitcherCropBlock/m_6402_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/item/ItemStack;)V net/minecraft/world/level/block/PitcherCropBlock/setPlacedBy (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/item/ItemStack;)V +MD: net/minecraft/world/level/block/PitcherCropBlock/m_6724_ (Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/world/level/block/PitcherCropBlock/isRandomlyTicking (Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/world/level/block/PitcherCropBlock/m_6864_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/item/context/BlockPlaceContext;)Z net/minecraft/world/level/block/PitcherCropBlock/canBeReplaced (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/item/context/BlockPlaceContext;)Z +MD: net/minecraft/world/level/block/PitcherCropBlock/m_7370_ (Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Z)Z net/minecraft/world/level/block/PitcherCropBlock/isValidBonemealTarget (Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Z)Z +MD: net/minecraft/world/level/block/PitcherCropBlock/m_7417_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/PitcherCropBlock/updateShape (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/PitcherCropBlock/m_7892_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/Entity;)V net/minecraft/world/level/block/PitcherCropBlock/entityInside (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/Entity;)V +MD: net/minecraft/world/level/block/PitcherCropBlock/m_7898_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/level/block/PitcherCropBlock/canSurvive (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/level/block/PitcherCropBlock/m_7926_ (Lnet/minecraft/world/level/block/state/StateDefinition$Builder;)V net/minecraft/world/level/block/PitcherCropBlock/createBlockStateDefinition (Lnet/minecraft/world/level/block/state/StateDefinition$Builder;)V +MD: net/minecraft/world/level/block/PitcherCropBlock$PosAndState/ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V net/minecraft/world/level/block/PitcherCropBlock$PosAndState/ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V +MD: net/minecraft/world/level/block/PitcherCropBlock$PosAndState/equals (Ljava/lang/Object;)Z net/minecraft/world/level/block/PitcherCropBlock$PosAndState/equals (Ljava/lang/Object;)Z +MD: net/minecraft/world/level/block/PitcherCropBlock$PosAndState/f_289993_ ()Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/PitcherCropBlock$PosAndState/state ()Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/PitcherCropBlock$PosAndState/f_289994_ ()Lnet/minecraft/core/BlockPos; net/minecraft/world/level/block/PitcherCropBlock$PosAndState/pos ()Lnet/minecraft/core/BlockPos; +MD: net/minecraft/world/level/block/PitcherCropBlock$PosAndState/hashCode ()I net/minecraft/world/level/block/PitcherCropBlock$PosAndState/hashCode ()I +MD: net/minecraft/world/level/block/PitcherCropBlock$PosAndState/toString ()Ljava/lang/String; net/minecraft/world/level/block/PitcherCropBlock$PosAndState/toString ()Ljava/lang/String; +MD: net/minecraft/world/level/block/PlayerHeadBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V net/minecraft/world/level/block/PlayerHeadBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V +MD: net/minecraft/world/level/block/PlayerHeadBlock/m_6402_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/item/ItemStack;)V net/minecraft/world/level/block/PlayerHeadBlock/setPlacedBy (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/item/ItemStack;)V +MD: net/minecraft/world/level/block/PlayerWallHeadBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V net/minecraft/world/level/block/PlayerWallHeadBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V +MD: net/minecraft/world/level/block/PlayerWallHeadBlock/m_49635_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/storage/loot/LootParams$Builder;)Ljava/util/List; net/minecraft/world/level/block/PlayerWallHeadBlock/getDrops (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/storage/loot/LootParams$Builder;)Ljava/util/List; +MD: net/minecraft/world/level/block/PlayerWallHeadBlock/m_6402_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/item/ItemStack;)V net/minecraft/world/level/block/PlayerWallHeadBlock/setPlacedBy (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/item/ItemStack;)V +MD: net/minecraft/world/level/block/PointedDripstoneBlock/ ()V net/minecraft/world/level/block/PointedDripstoneBlock/ ()V +MD: net/minecraft/world/level/block/PointedDripstoneBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V net/minecraft/world/level/block/PointedDripstoneBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V +MD: net/minecraft/world/level/block/PointedDripstoneBlock/m_142072_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/Entity;F)V net/minecraft/world/level/block/PointedDripstoneBlock/fallOn (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/Entity;F)V +MD: net/minecraft/world/level/block/PointedDripstoneBlock/m_142525_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/item/FallingBlockEntity;)V net/minecraft/world/level/block/PointedDripstoneBlock/onBrokenAfterFall (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/item/FallingBlockEntity;)V +MD: net/minecraft/world/level/block/PointedDripstoneBlock/m_142740_ ()F net/minecraft/world/level/block/PointedDripstoneBlock/getMaxHorizontalOffset ()F +MD: net/minecraft/world/level/block/PointedDripstoneBlock/m_154032_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;)V net/minecraft/world/level/block/PointedDripstoneBlock/growStalagmiteBelow (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/world/level/block/PointedDripstoneBlock/m_154035_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Direction;)V net/minecraft/world/level/block/PointedDripstoneBlock/grow (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Direction;)V +MD: net/minecraft/world/level/block/PointedDripstoneBlock/m_154052_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/level/material/Fluid;)Lnet/minecraft/world/level/material/Fluid; net/minecraft/world/level/block/PointedDripstoneBlock/getDripFluid (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/level/material/Fluid;)Lnet/minecraft/world/level/material/Fluid; +MD: net/minecraft/world/level/block/PointedDripstoneBlock/m_154055_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/core/BlockPos; net/minecraft/world/level/block/PointedDripstoneBlock/findStalactiteTipAboveCauldron (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/core/BlockPos; +MD: net/minecraft/world/level/block/PointedDripstoneBlock/m_154062_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V net/minecraft/world/level/block/PointedDripstoneBlock/spawnDripParticle (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V +MD: net/minecraft/world/level/block/PointedDripstoneBlock/m_154066_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;I)Ljava/util/Optional; net/minecraft/world/level/block/PointedDripstoneBlock/findRootBlock (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;I)Ljava/util/Optional; +MD: net/minecraft/world/level/block/PointedDripstoneBlock/m_154071_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/material/Fluid;)V net/minecraft/world/level/block/PointedDripstoneBlock/spawnDripParticle (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/material/Fluid;)V +MD: net/minecraft/world/level/block/PointedDripstoneBlock/m_154076_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/material/Fluid;)Lnet/minecraft/core/BlockPos; net/minecraft/world/level/block/PointedDripstoneBlock/findFillableCauldronBelowStalactiteTip (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/material/Fluid;)Lnet/minecraft/core/BlockPos; +MD: net/minecraft/world/level/block/PointedDripstoneBlock/m_154087_ (Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/block/state/properties/DripstoneThickness;)V net/minecraft/world/level/block/PointedDripstoneBlock/createDripstone (Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/block/state/properties/DripstoneThickness;)V +MD: net/minecraft/world/level/block/PointedDripstoneBlock/m_154092_ (Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Direction;Z)Lnet/minecraft/world/level/block/state/properties/DripstoneThickness; net/minecraft/world/level/block/PointedDripstoneBlock/calculateDripstoneThickness (Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Direction;Z)Lnet/minecraft/world/level/block/state/properties/DripstoneThickness; +MD: net/minecraft/world/level/block/PointedDripstoneBlock/m_154097_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;)V net/minecraft/world/level/block/PointedDripstoneBlock/spawnFallingStalactite (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/world/level/block/PointedDripstoneBlock/m_154130_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;IZ)Lnet/minecraft/core/BlockPos; net/minecraft/world/level/block/PointedDripstoneBlock/findTip (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;IZ)Lnet/minecraft/core/BlockPos; +MD: net/minecraft/world/level/block/PointedDripstoneBlock/m_154140_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/world/level/block/PointedDripstoneBlock/canGrow (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/world/level/block/PointedDripstoneBlock/m_154143_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/Direction;)Z net/minecraft/world/level/block/PointedDripstoneBlock/isUnmergedTipWithDirection (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/Direction;)Z +MD: net/minecraft/world/level/block/PointedDripstoneBlock/m_154153_ (Lnet/minecraft/world/level/block/state/BlockState;Z)Z net/minecraft/world/level/block/PointedDripstoneBlock/isTip (Lnet/minecraft/world/level/block/state/BlockState;Z)Z +MD: net/minecraft/world/level/block/PointedDripstoneBlock/m_154158_ (Lnet/minecraft/world/level/material/Fluid;)Z net/minecraft/world/level/block/PointedDripstoneBlock/canFillCauldron (Lnet/minecraft/world/level/material/Fluid;)Z +MD: net/minecraft/world/level/block/PointedDripstoneBlock/m_154160_ (Lnet/minecraft/world/level/material/Fluid;Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/world/level/block/PointedDripstoneBlock/lambda$findFillableCauldronBelowStalactiteTip$7 (Lnet/minecraft/world/level/material/Fluid;Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/world/level/block/PointedDripstoneBlock/m_154166_ (ZLnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/world/level/block/PointedDripstoneBlock/lambda$findTip$4 (ZLnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/world/level/block/PointedDripstoneBlock/m_154181_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Ljava/util/Optional; net/minecraft/world/level/block/PointedDripstoneBlock/getFluidAboveStalactite (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Ljava/util/Optional; +MD: net/minecraft/world/level/block/PointedDripstoneBlock/m_154190_ (Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Direction;)Lnet/minecraft/core/Direction; net/minecraft/world/level/block/PointedDripstoneBlock/calculateTipDirection (Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Direction;)Lnet/minecraft/core/Direction; +MD: net/minecraft/world/level/block/PointedDripstoneBlock/m_154194_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/level/block/PointedDripstoneBlock/canTipGrow (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/level/block/PointedDripstoneBlock/m_154203_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/level/block/PointedDripstoneBlock/isStalactiteStartPos (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/level/block/PointedDripstoneBlock/m_154207_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/Direction;)Z net/minecraft/world/level/block/PointedDripstoneBlock/isPointedDripstoneWithDirection (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/Direction;)Z +MD: net/minecraft/world/level/block/PointedDripstoneBlock/m_154221_ (Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Direction;)Z net/minecraft/world/level/block/PointedDripstoneBlock/isValidPointedDripstonePlacement (Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Direction;)Z +MD: net/minecraft/world/level/block/PointedDripstoneBlock/m_154230_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;)V net/minecraft/world/level/block/PointedDripstoneBlock/createMergedTips (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/world/level/block/PointedDripstoneBlock/m_154238_ (Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/world/level/block/PointedDripstoneBlock/canDrip (Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/world/level/block/PointedDripstoneBlock/m_154240_ (Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/world/level/block/PointedDripstoneBlock/isStalactite (Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/world/level/block/PointedDripstoneBlock/m_154242_ (Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/world/level/block/PointedDripstoneBlock/isStalagmite (Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/world/level/block/PointedDripstoneBlock/m_154244_ (Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/world/level/block/PointedDripstoneBlock/lambda$findRootBlock$6 (Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/world/level/block/PointedDripstoneBlock/m_180643_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/level/block/PointedDripstoneBlock/isCollisionShapeFullBlock (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/level/block/PointedDripstoneBlock/m_202006_ (Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Direction$AxisDirection;Ljava/util/function/BiPredicate;Ljava/util/function/Predicate;I)Ljava/util/Optional; net/minecraft/world/level/block/PointedDripstoneBlock/findBlockVertical (Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Direction$AxisDirection;Ljava/util/function/BiPredicate;Ljava/util/function/Predicate;I)Ljava/util/Optional; +MD: net/minecraft/world/level/block/PointedDripstoneBlock/m_202013_ (Lnet/minecraft/core/Direction;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/world/level/block/PointedDripstoneBlock/lambda$findRootBlock$5 (Lnet/minecraft/core/Direction;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/world/level/block/PointedDripstoneBlock/m_202017_ (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/world/level/block/PointedDripstoneBlock/canDripThrough (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/world/level/block/PointedDripstoneBlock/m_202021_ (Lnet/minecraft/core/Direction;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/world/level/block/PointedDripstoneBlock/lambda$findTip$3 (Lnet/minecraft/core/Direction;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/world/level/block/PointedDripstoneBlock/m_202028_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/world/level/block/PointedDripstoneBlock/lambda$findStalactiteTipAboveCauldron$9 (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/world/level/block/PointedDripstoneBlock/m_202032_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/world/level/block/PointedDripstoneBlock/lambda$findFillableCauldronBelowStalactiteTip$8 (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/world/level/block/PointedDripstoneBlock/m_213897_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)V net/minecraft/world/level/block/PointedDripstoneBlock/tick (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)V +MD: net/minecraft/world/level/block/PointedDripstoneBlock/m_213898_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)V net/minecraft/world/level/block/PointedDripstoneBlock/randomTick (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)V +MD: net/minecraft/world/level/block/PointedDripstoneBlock/m_214162_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)V net/minecraft/world/level/block/PointedDripstoneBlock/animateTick (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)V +MD: net/minecraft/world/level/block/PointedDripstoneBlock/m_221846_ (FLnet/minecraft/world/level/block/PointedDripstoneBlock$FluidInfo;)Z net/minecraft/world/level/block/PointedDripstoneBlock/lambda$animateTick$0 (FLnet/minecraft/world/level/block/PointedDripstoneBlock$FluidInfo;)Z +MD: net/minecraft/world/level/block/PointedDripstoneBlock/m_221849_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/material/Fluid; net/minecraft/world/level/block/PointedDripstoneBlock/getCauldronFillFluidType (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/material/Fluid; +MD: net/minecraft/world/level/block/PointedDripstoneBlock/m_221852_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/PointedDripstoneBlock$FluidInfo;)V net/minecraft/world/level/block/PointedDripstoneBlock/lambda$spawnDripParticle$2 (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/PointedDripstoneBlock$FluidInfo;)V +MD: net/minecraft/world/level/block/PointedDripstoneBlock/m_221857_ (Lnet/minecraft/world/level/block/PointedDripstoneBlock$FluidInfo;)Lnet/minecraft/world/level/material/Fluid; net/minecraft/world/level/block/PointedDripstoneBlock/lambda$getCauldronFillFluidType$10 (Lnet/minecraft/world/level/block/PointedDripstoneBlock$FluidInfo;)Lnet/minecraft/world/level/material/Fluid; +MD: net/minecraft/world/level/block/PointedDripstoneBlock/m_221859_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;F)V net/minecraft/world/level/block/PointedDripstoneBlock/maybeTransferFluid (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;F)V +MD: net/minecraft/world/level/block/PointedDripstoneBlock/m_221874_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/PointedDripstoneBlock$FluidInfo; net/minecraft/world/level/block/PointedDripstoneBlock/lambda$getFluidAboveStalactite$11 (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/PointedDripstoneBlock$FluidInfo; +MD: net/minecraft/world/level/block/PointedDripstoneBlock/m_221877_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/PointedDripstoneBlock$FluidInfo;)V net/minecraft/world/level/block/PointedDripstoneBlock/lambda$animateTick$1 (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/PointedDripstoneBlock$FluidInfo;)V +MD: net/minecraft/world/level/block/PointedDripstoneBlock/m_221887_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)V net/minecraft/world/level/block/PointedDripstoneBlock/growStalactiteOrStalagmiteIfPossible (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)V +MD: net/minecraft/world/level/block/PointedDripstoneBlock/m_252932_ (Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/world/damagesource/DamageSource; net/minecraft/world/level/block/PointedDripstoneBlock/getFallDamageSource (Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/world/damagesource/DamageSource; +MD: net/minecraft/world/level/block/PointedDripstoneBlock/m_5573_ (Lnet/minecraft/world/item/context/BlockPlaceContext;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/PointedDripstoneBlock/getStateForPlacement (Lnet/minecraft/world/item/context/BlockPlaceContext;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/PointedDripstoneBlock/m_5581_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/phys/BlockHitResult;Lnet/minecraft/world/entity/projectile/Projectile;)V net/minecraft/world/level/block/PointedDripstoneBlock/onProjectileHit (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/phys/BlockHitResult;Lnet/minecraft/world/entity/projectile/Projectile;)V +MD: net/minecraft/world/level/block/PointedDripstoneBlock/m_5888_ (Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/material/FluidState; net/minecraft/world/level/block/PointedDripstoneBlock/getFluidState (Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/material/FluidState; +MD: net/minecraft/world/level/block/PointedDripstoneBlock/m_5940_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; net/minecraft/world/level/block/PointedDripstoneBlock/getShape (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; +MD: net/minecraft/world/level/block/PointedDripstoneBlock/m_7357_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/pathfinder/PathComputationType;)Z net/minecraft/world/level/block/PointedDripstoneBlock/isPathfindable (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/pathfinder/PathComputationType;)Z +MD: net/minecraft/world/level/block/PointedDripstoneBlock/m_7417_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/PointedDripstoneBlock/updateShape (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/PointedDripstoneBlock/m_7898_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/level/block/PointedDripstoneBlock/canSurvive (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/level/block/PointedDripstoneBlock/m_7926_ (Lnet/minecraft/world/level/block/state/StateDefinition$Builder;)V net/minecraft/world/level/block/PointedDripstoneBlock/createBlockStateDefinition (Lnet/minecraft/world/level/block/state/StateDefinition$Builder;)V +MD: net/minecraft/world/level/block/PointedDripstoneBlock/m_7952_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/phys/shapes/VoxelShape; net/minecraft/world/level/block/PointedDripstoneBlock/getOcclusionShape (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/phys/shapes/VoxelShape; +MD: net/minecraft/world/level/block/PointedDripstoneBlock$FluidInfo/ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/material/Fluid;Lnet/minecraft/world/level/block/state/BlockState;)V net/minecraft/world/level/block/PointedDripstoneBlock$FluidInfo/ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/material/Fluid;Lnet/minecraft/world/level/block/state/BlockState;)V +MD: net/minecraft/world/level/block/PointedDripstoneBlock$FluidInfo/equals (Ljava/lang/Object;)Z net/minecraft/world/level/block/PointedDripstoneBlock$FluidInfo/equals (Ljava/lang/Object;)Z +MD: net/minecraft/world/level/block/PointedDripstoneBlock$FluidInfo/f_221892_ ()Lnet/minecraft/core/BlockPos; net/minecraft/world/level/block/PointedDripstoneBlock$FluidInfo/pos ()Lnet/minecraft/core/BlockPos; +MD: net/minecraft/world/level/block/PointedDripstoneBlock$FluidInfo/f_221893_ ()Lnet/minecraft/world/level/material/Fluid; net/minecraft/world/level/block/PointedDripstoneBlock$FluidInfo/fluid ()Lnet/minecraft/world/level/material/Fluid; +MD: net/minecraft/world/level/block/PointedDripstoneBlock$FluidInfo/f_221894_ ()Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/PointedDripstoneBlock$FluidInfo/sourceState ()Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/PointedDripstoneBlock$FluidInfo/hashCode ()I net/minecraft/world/level/block/PointedDripstoneBlock$FluidInfo/hashCode ()I +MD: net/minecraft/world/level/block/PointedDripstoneBlock$FluidInfo/toString ()Ljava/lang/String; net/minecraft/world/level/block/PointedDripstoneBlock$FluidInfo/toString ()Ljava/lang/String; +MD: net/minecraft/world/level/block/PotatoBlock/ ()V net/minecraft/world/level/block/PotatoBlock/ ()V +MD: net/minecraft/world/level/block/PotatoBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V net/minecraft/world/level/block/PotatoBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V +MD: net/minecraft/world/level/block/PotatoBlock/m_5940_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; net/minecraft/world/level/block/PotatoBlock/getShape (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; +MD: net/minecraft/world/level/block/PotatoBlock/m_6404_ ()Lnet/minecraft/world/level/ItemLike; net/minecraft/world/level/block/PotatoBlock/getBaseSeedId ()Lnet/minecraft/world/level/ItemLike; +MD: net/minecraft/world/level/block/PowderSnowBlock/ ()V net/minecraft/world/level/block/PowderSnowBlock/ ()V +MD: net/minecraft/world/level/block/PowderSnowBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V net/minecraft/world/level/block/PowderSnowBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V +MD: net/minecraft/world/level/block/PowderSnowBlock/m_142072_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/Entity;F)V net/minecraft/world/level/block/PowderSnowBlock/fallOn (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/Entity;F)V +MD: net/minecraft/world/level/block/PowderSnowBlock/m_142298_ ()Ljava/util/Optional; net/minecraft/world/level/block/PowderSnowBlock/getPickupSound ()Ljava/util/Optional; +MD: net/minecraft/world/level/block/PowderSnowBlock/m_142598_ (Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/item/ItemStack; net/minecraft/world/level/block/PowderSnowBlock/pickupBlock (Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/level/block/PowderSnowBlock/m_154255_ (Lnet/minecraft/world/entity/Entity;)Z net/minecraft/world/level/block/PowderSnowBlock/canEntityWalkOnPowderSnow (Lnet/minecraft/world/entity/Entity;)Z +MD: net/minecraft/world/level/block/PowderSnowBlock/m_5909_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; net/minecraft/world/level/block/PowderSnowBlock/getVisualShape (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; +MD: net/minecraft/world/level/block/PowderSnowBlock/m_5939_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; net/minecraft/world/level/block/PowderSnowBlock/getCollisionShape (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; +MD: net/minecraft/world/level/block/PowderSnowBlock/m_6104_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/Direction;)Z net/minecraft/world/level/block/PowderSnowBlock/skipRendering (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/Direction;)Z +MD: net/minecraft/world/level/block/PowderSnowBlock/m_7357_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/pathfinder/PathComputationType;)Z net/minecraft/world/level/block/PowderSnowBlock/isPathfindable (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/pathfinder/PathComputationType;)Z +MD: net/minecraft/world/level/block/PowderSnowBlock/m_7892_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/Entity;)V net/minecraft/world/level/block/PowderSnowBlock/entityInside (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/Entity;)V +MD: net/minecraft/world/level/block/PowderSnowBlock/m_7952_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/phys/shapes/VoxelShape; net/minecraft/world/level/block/PowderSnowBlock/getOcclusionShape (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/phys/shapes/VoxelShape; +MD: net/minecraft/world/level/block/PowderSnowCauldronBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;Ljava/util/function/Predicate;Ljava/util/Map;)V net/minecraft/world/level/block/PowderSnowCauldronBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;Ljava/util/function/Predicate;Ljava/util/Map;)V +MD: net/minecraft/world/level/block/PowderSnowCauldronBlock/m_142266_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;)V net/minecraft/world/level/block/PowderSnowCauldronBlock/handleEntityOnFireInside (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/world/level/block/PoweredBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V net/minecraft/world/level/block/PoweredBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V +MD: net/minecraft/world/level/block/PoweredBlock/m_6378_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Direction;)I net/minecraft/world/level/block/PoweredBlock/getSignal (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Direction;)I +MD: net/minecraft/world/level/block/PoweredBlock/m_7899_ (Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/world/level/block/PoweredBlock/isSignalSource (Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/world/level/block/PoweredRailBlock/ ()V net/minecraft/world/level/block/PoweredRailBlock/ ()V +MD: net/minecraft/world/level/block/PoweredRailBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V net/minecraft/world/level/block/PoweredRailBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V +MD: net/minecraft/world/level/block/PoweredRailBlock/m_55219_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;ZI)Z net/minecraft/world/level/block/PoweredRailBlock/findPoweredRailSignal (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;ZI)Z +MD: net/minecraft/world/level/block/PoweredRailBlock/m_55225_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;ZILnet/minecraft/world/level/block/state/properties/RailShape;)Z net/minecraft/world/level/block/PoweredRailBlock/isSameRailWithPower (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;ZILnet/minecraft/world/level/block/state/properties/RailShape;)Z +MD: net/minecraft/world/level/block/PoweredRailBlock/m_6360_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/Block;)V net/minecraft/world/level/block/PoweredRailBlock/updateState (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/Block;)V +MD: net/minecraft/world/level/block/PoweredRailBlock/m_6843_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/Rotation;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/PoweredRailBlock/rotate (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/Rotation;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/PoweredRailBlock/m_6943_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/Mirror;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/PoweredRailBlock/mirror (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/Mirror;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/PoweredRailBlock/m_7926_ (Lnet/minecraft/world/level/block/state/StateDefinition$Builder;)V net/minecraft/world/level/block/PoweredRailBlock/createBlockStateDefinition (Lnet/minecraft/world/level/block/state/StateDefinition$Builder;)V +MD: net/minecraft/world/level/block/PoweredRailBlock/m_7978_ ()Lnet/minecraft/world/level/block/state/properties/Property; net/minecraft/world/level/block/PoweredRailBlock/getShapeProperty ()Lnet/minecraft/world/level/block/state/properties/Property; +MD: net/minecraft/world/level/block/PoweredRailBlock$1/ ()V net/minecraft/world/level/block/PoweredRailBlock$1/ ()V +MD: net/minecraft/world/level/block/PressurePlateBlock/ ()V net/minecraft/world/level/block/PressurePlateBlock/ ()V +MD: net/minecraft/world/level/block/PressurePlateBlock/ (Lnet/minecraft/world/level/block/PressurePlateBlock$Sensitivity;Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;Lnet/minecraft/world/level/block/state/properties/BlockSetType;)V net/minecraft/world/level/block/PressurePlateBlock/ (Lnet/minecraft/world/level/block/PressurePlateBlock$Sensitivity;Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;Lnet/minecraft/world/level/block/state/properties/BlockSetType;)V +MD: net/minecraft/world/level/block/PressurePlateBlock/m_6016_ (Lnet/minecraft/world/level/block/state/BlockState;)I net/minecraft/world/level/block/PressurePlateBlock/getSignalForState (Lnet/minecraft/world/level/block/state/BlockState;)I +MD: net/minecraft/world/level/block/PressurePlateBlock/m_6693_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;)I net/minecraft/world/level/block/PressurePlateBlock/getSignalStrength (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;)I +MD: net/minecraft/world/level/block/PressurePlateBlock/m_7422_ (Lnet/minecraft/world/level/block/state/BlockState;I)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/PressurePlateBlock/setSignalForState (Lnet/minecraft/world/level/block/state/BlockState;I)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/PressurePlateBlock/m_7926_ (Lnet/minecraft/world/level/block/state/StateDefinition$Builder;)V net/minecraft/world/level/block/PressurePlateBlock/createBlockStateDefinition (Lnet/minecraft/world/level/block/state/StateDefinition$Builder;)V +MD: net/minecraft/world/level/block/PressurePlateBlock$1/ ()V net/minecraft/world/level/block/PressurePlateBlock$1/ ()V +MD: net/minecraft/world/level/block/PressurePlateBlock$Sensitivity/ ()V net/minecraft/world/level/block/PressurePlateBlock$Sensitivity/ ()V +MD: net/minecraft/world/level/block/PressurePlateBlock$Sensitivity/ (Ljava/lang/String;I)V net/minecraft/world/level/block/PressurePlateBlock$Sensitivity/ (Ljava/lang/String;I)V +MD: net/minecraft/world/level/block/PressurePlateBlock$Sensitivity/m_154297_ ()[Lnet/minecraft/world/level/block/PressurePlateBlock$Sensitivity; net/minecraft/world/level/block/PressurePlateBlock$Sensitivity/$values ()[Lnet/minecraft/world/level/block/PressurePlateBlock$Sensitivity; +MD: net/minecraft/world/level/block/PressurePlateBlock$Sensitivity/valueOf (Ljava/lang/String;)Lnet/minecraft/world/level/block/PressurePlateBlock$Sensitivity; net/minecraft/world/level/block/PressurePlateBlock$Sensitivity/valueOf (Ljava/lang/String;)Lnet/minecraft/world/level/block/PressurePlateBlock$Sensitivity; +MD: net/minecraft/world/level/block/PressurePlateBlock$Sensitivity/values ()[Lnet/minecraft/world/level/block/PressurePlateBlock$Sensitivity; net/minecraft/world/level/block/PressurePlateBlock$Sensitivity/values ()[Lnet/minecraft/world/level/block/PressurePlateBlock$Sensitivity; +MD: net/minecraft/world/level/block/PumpkinBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V net/minecraft/world/level/block/PumpkinBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V +MD: net/minecraft/world/level/block/PumpkinBlock/m_55285_ (Lnet/minecraft/world/InteractionHand;Lnet/minecraft/world/entity/player/Player;)V net/minecraft/world/level/block/PumpkinBlock/lambda$use$0 (Lnet/minecraft/world/InteractionHand;Lnet/minecraft/world/entity/player/Player;)V +MD: net/minecraft/world/level/block/PumpkinBlock/m_6227_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;Lnet/minecraft/world/phys/BlockHitResult;)Lnet/minecraft/world/InteractionResult; net/minecraft/world/level/block/PumpkinBlock/use (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;Lnet/minecraft/world/phys/BlockHitResult;)Lnet/minecraft/world/InteractionResult; +MD: net/minecraft/world/level/block/PumpkinBlock/m_7161_ ()Lnet/minecraft/world/level/block/StemBlock; net/minecraft/world/level/block/PumpkinBlock/getStem ()Lnet/minecraft/world/level/block/StemBlock; +MD: net/minecraft/world/level/block/PumpkinBlock/m_7810_ ()Lnet/minecraft/world/level/block/AttachedStemBlock; net/minecraft/world/level/block/PumpkinBlock/getAttachedStem ()Lnet/minecraft/world/level/block/AttachedStemBlock; +MD: net/minecraft/world/level/block/RailBlock/ ()V net/minecraft/world/level/block/RailBlock/ ()V +MD: net/minecraft/world/level/block/RailBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V net/minecraft/world/level/block/RailBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V +MD: net/minecraft/world/level/block/RailBlock/m_6360_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/Block;)V net/minecraft/world/level/block/RailBlock/updateState (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/Block;)V +MD: net/minecraft/world/level/block/RailBlock/m_6843_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/Rotation;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/RailBlock/rotate (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/Rotation;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/RailBlock/m_6943_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/Mirror;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/RailBlock/mirror (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/Mirror;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/RailBlock/m_7926_ (Lnet/minecraft/world/level/block/state/StateDefinition$Builder;)V net/minecraft/world/level/block/RailBlock/createBlockStateDefinition (Lnet/minecraft/world/level/block/state/StateDefinition$Builder;)V +MD: net/minecraft/world/level/block/RailBlock/m_7978_ ()Lnet/minecraft/world/level/block/state/properties/Property; net/minecraft/world/level/block/RailBlock/getShapeProperty ()Lnet/minecraft/world/level/block/state/properties/Property; +MD: net/minecraft/world/level/block/RailBlock$1/ ()V net/minecraft/world/level/block/RailBlock$1/ ()V +MD: net/minecraft/world/level/block/RailState/ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V net/minecraft/world/level/block/RailState/ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V +MD: net/minecraft/world/level/block/RailState/m_55424_ ()Ljava/util/List; net/minecraft/world/level/block/RailState/getConnections ()Ljava/util/List; +MD: net/minecraft/world/level/block/RailState/m_55425_ (Lnet/minecraft/world/level/block/RailState;)Z net/minecraft/world/level/block/RailState/connectsTo (Lnet/minecraft/world/level/block/RailState;)Z +MD: net/minecraft/world/level/block/RailState/m_55427_ (Lnet/minecraft/world/level/block/state/properties/RailShape;)V net/minecraft/world/level/block/RailState/updateConnections (Lnet/minecraft/world/level/block/state/properties/RailShape;)V +MD: net/minecraft/world/level/block/RailState/m_55429_ (Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/level/block/RailState/hasRail (Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/level/block/RailState/m_55431_ (ZZLnet/minecraft/world/level/block/state/properties/RailShape;)Lnet/minecraft/world/level/block/RailState; net/minecraft/world/level/block/RailState/place (ZZLnet/minecraft/world/level/block/state/properties/RailShape;)Lnet/minecraft/world/level/block/RailState; +MD: net/minecraft/world/level/block/RailState/m_55435_ ()I net/minecraft/world/level/block/RailState/countPotentialConnections ()I +MD: net/minecraft/world/level/block/RailState/m_55436_ (Lnet/minecraft/world/level/block/RailState;)Z net/minecraft/world/level/block/RailState/canConnectTo (Lnet/minecraft/world/level/block/RailState;)Z +MD: net/minecraft/world/level/block/RailState/m_55438_ (Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/RailState; net/minecraft/world/level/block/RailState/getRail (Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/RailState; +MD: net/minecraft/world/level/block/RailState/m_55440_ ()Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/RailState/getState ()Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/RailState/m_55441_ (Lnet/minecraft/world/level/block/RailState;)V net/minecraft/world/level/block/RailState/connectTo (Lnet/minecraft/world/level/block/RailState;)V +MD: net/minecraft/world/level/block/RailState/m_55443_ (Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/level/block/RailState/hasConnection (Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/level/block/RailState/m_55445_ ()V net/minecraft/world/level/block/RailState/removeSoftConnections ()V +MD: net/minecraft/world/level/block/RailState/m_55446_ (Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/level/block/RailState/hasNeighborRail (Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/level/block/RailState$1/ ()V net/minecraft/world/level/block/RailState$1/ ()V +MD: net/minecraft/world/level/block/RedStoneOreBlock/ ()V net/minecraft/world/level/block/RedStoneOreBlock/ ()V +MD: net/minecraft/world/level/block/RedStoneOreBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V net/minecraft/world/level/block/RedStoneOreBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V +MD: net/minecraft/world/level/block/RedStoneOreBlock/m_141947_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/entity/Entity;)V net/minecraft/world/level/block/RedStoneOreBlock/stepOn (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/entity/Entity;)V +MD: net/minecraft/world/level/block/RedStoneOreBlock/m_213646_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/item/ItemStack;Z)V net/minecraft/world/level/block/RedStoneOreBlock/spawnAfterBreak (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/item/ItemStack;Z)V +MD: net/minecraft/world/level/block/RedStoneOreBlock/m_213898_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)V net/minecraft/world/level/block/RedStoneOreBlock/randomTick (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)V +MD: net/minecraft/world/level/block/RedStoneOreBlock/m_214162_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)V net/minecraft/world/level/block/RedStoneOreBlock/animateTick (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)V +MD: net/minecraft/world/level/block/RedStoneOreBlock/m_55454_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;)V net/minecraft/world/level/block/RedStoneOreBlock/spawnParticles (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/world/level/block/RedStoneOreBlock/m_55492_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;)V net/minecraft/world/level/block/RedStoneOreBlock/interact (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/world/level/block/RedStoneOreBlock/m_6227_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;Lnet/minecraft/world/phys/BlockHitResult;)Lnet/minecraft/world/InteractionResult; net/minecraft/world/level/block/RedStoneOreBlock/use (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;Lnet/minecraft/world/phys/BlockHitResult;)Lnet/minecraft/world/InteractionResult; +MD: net/minecraft/world/level/block/RedStoneOreBlock/m_6256_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/player/Player;)V net/minecraft/world/level/block/RedStoneOreBlock/attack (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/player/Player;)V +MD: net/minecraft/world/level/block/RedStoneOreBlock/m_6724_ (Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/world/level/block/RedStoneOreBlock/isRandomlyTicking (Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/world/level/block/RedStoneOreBlock/m_7926_ (Lnet/minecraft/world/level/block/state/StateDefinition$Builder;)V net/minecraft/world/level/block/RedStoneOreBlock/createBlockStateDefinition (Lnet/minecraft/world/level/block/state/StateDefinition$Builder;)V +MD: net/minecraft/world/level/block/RedStoneWireBlock/ ()V net/minecraft/world/level/block/RedStoneWireBlock/ ()V +MD: net/minecraft/world/level/block/RedStoneWireBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V net/minecraft/world/level/block/RedStoneWireBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V +MD: net/minecraft/world/level/block/RedStoneWireBlock/m_154318_ ([Lnet/minecraft/world/phys/Vec3;)V net/minecraft/world/level/block/RedStoneWireBlock/lambda$static$0 ([Lnet/minecraft/world/phys/Vec3;)V +MD: net/minecraft/world/level/block/RedStoneWireBlock/m_214162_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)V net/minecraft/world/level/block/RedStoneWireBlock/animateTick (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)V +MD: net/minecraft/world/level/block/RedStoneWireBlock/m_221922_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/Vec3;Lnet/minecraft/core/Direction;Lnet/minecraft/core/Direction;FF)V net/minecraft/world/level/block/RedStoneWireBlock/spawnParticlesAlongLine (Lnet/minecraft/world/level/Level;Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/Vec3;Lnet/minecraft/core/Direction;Lnet/minecraft/core/Direction;FF)V +MD: net/minecraft/world/level/block/RedStoneWireBlock/m_55514_ (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/RedStoneWireBlock/getConnectionState (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/RedStoneWireBlock/m_55518_ (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Direction;)Lnet/minecraft/world/level/block/state/properties/RedstoneSide; net/minecraft/world/level/block/RedStoneWireBlock/getConnectingSide (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Direction;)Lnet/minecraft/world/level/block/state/properties/RedstoneSide; +MD: net/minecraft/world/level/block/RedStoneWireBlock/m_55522_ (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Direction;Z)Lnet/minecraft/world/level/block/state/properties/RedstoneSide; net/minecraft/world/level/block/RedStoneWireBlock/getConnectingSide (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Direction;Z)Lnet/minecraft/world/level/block/state/properties/RedstoneSide; +MD: net/minecraft/world/level/block/RedStoneWireBlock/m_55527_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;)I net/minecraft/world/level/block/RedStoneWireBlock/calculateTargetStrength (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;)I +MD: net/minecraft/world/level/block/RedStoneWireBlock/m_55530_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V net/minecraft/world/level/block/RedStoneWireBlock/updatePowerStrength (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V +MD: net/minecraft/world/level/block/RedStoneWireBlock/m_55534_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/state/BlockState;)V net/minecraft/world/level/block/RedStoneWireBlock/updatesOnShapeChange (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/state/BlockState;)V +MD: net/minecraft/world/level/block/RedStoneWireBlock/m_55594_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/Direction;)Z net/minecraft/world/level/block/RedStoneWireBlock/shouldConnectTo (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/Direction;)Z +MD: net/minecraft/world/level/block/RedStoneWireBlock/m_55606_ (I)I net/minecraft/world/level/block/RedStoneWireBlock/getColorForPower (I)I +MD: net/minecraft/world/level/block/RedStoneWireBlock/m_55608_ (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/RedStoneWireBlock/getMissingConnections (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/RedStoneWireBlock/m_55612_ (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/world/level/block/RedStoneWireBlock/canSurviveOn (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/world/level/block/RedStoneWireBlock/m_55616_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;)V net/minecraft/world/level/block/RedStoneWireBlock/checkCornerChangeAt (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/world/level/block/RedStoneWireBlock/m_55637_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;)V net/minecraft/world/level/block/RedStoneWireBlock/updateNeighborsOfNeighboringWires (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/world/level/block/RedStoneWireBlock/m_55640_ (Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/world/level/block/RedStoneWireBlock/shouldConnectTo (Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/world/level/block/RedStoneWireBlock/m_55642_ (Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/phys/shapes/VoxelShape; net/minecraft/world/level/block/RedStoneWireBlock/calculateShape (Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/phys/shapes/VoxelShape; +MD: net/minecraft/world/level/block/RedStoneWireBlock/m_55644_ (Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/world/level/block/RedStoneWireBlock/isCross (Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/world/level/block/RedStoneWireBlock/m_55646_ (Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/world/level/block/RedStoneWireBlock/isDot (Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/world/level/block/RedStoneWireBlock/m_55648_ (Lnet/minecraft/world/level/block/state/BlockState;)I net/minecraft/world/level/block/RedStoneWireBlock/getWireSignal (Lnet/minecraft/world/level/block/state/BlockState;)I +MD: net/minecraft/world/level/block/RedStoneWireBlock/m_5573_ (Lnet/minecraft/world/item/context/BlockPlaceContext;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/RedStoneWireBlock/getStateForPlacement (Lnet/minecraft/world/item/context/BlockPlaceContext;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/RedStoneWireBlock/m_5940_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; net/minecraft/world/level/block/RedStoneWireBlock/getShape (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; +MD: net/minecraft/world/level/block/RedStoneWireBlock/m_6227_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;Lnet/minecraft/world/phys/BlockHitResult;)Lnet/minecraft/world/InteractionResult; net/minecraft/world/level/block/RedStoneWireBlock/use (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;Lnet/minecraft/world/phys/BlockHitResult;)Lnet/minecraft/world/InteractionResult; +MD: net/minecraft/world/level/block/RedStoneWireBlock/m_6376_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Direction;)I net/minecraft/world/level/block/RedStoneWireBlock/getDirectSignal (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Direction;)I +MD: net/minecraft/world/level/block/RedStoneWireBlock/m_6378_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Direction;)I net/minecraft/world/level/block/RedStoneWireBlock/getSignal (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Direction;)I +MD: net/minecraft/world/level/block/RedStoneWireBlock/m_6807_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Z)V net/minecraft/world/level/block/RedStoneWireBlock/onPlace (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Z)V +MD: net/minecraft/world/level/block/RedStoneWireBlock/m_6810_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Z)V net/minecraft/world/level/block/RedStoneWireBlock/onRemove (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Z)V +MD: net/minecraft/world/level/block/RedStoneWireBlock/m_6843_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/Rotation;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/RedStoneWireBlock/rotate (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/Rotation;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/RedStoneWireBlock/m_6861_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/Block;Lnet/minecraft/core/BlockPos;Z)V net/minecraft/world/level/block/RedStoneWireBlock/neighborChanged (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/Block;Lnet/minecraft/core/BlockPos;Z)V +MD: net/minecraft/world/level/block/RedStoneWireBlock/m_6943_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/Mirror;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/RedStoneWireBlock/mirror (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/Mirror;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/RedStoneWireBlock/m_7417_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/RedStoneWireBlock/updateShape (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/RedStoneWireBlock/m_7742_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;II)V net/minecraft/world/level/block/RedStoneWireBlock/updateIndirectNeighbourShapes (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;II)V +MD: net/minecraft/world/level/block/RedStoneWireBlock/m_7898_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/level/block/RedStoneWireBlock/canSurvive (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/level/block/RedStoneWireBlock/m_7899_ (Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/world/level/block/RedStoneWireBlock/isSignalSource (Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/world/level/block/RedStoneWireBlock/m_7926_ (Lnet/minecraft/world/level/block/state/StateDefinition$Builder;)V net/minecraft/world/level/block/RedStoneWireBlock/createBlockStateDefinition (Lnet/minecraft/world/level/block/state/StateDefinition$Builder;)V +MD: net/minecraft/world/level/block/RedStoneWireBlock$1/ ()V net/minecraft/world/level/block/RedStoneWireBlock$1/ ()V +MD: net/minecraft/world/level/block/RedstoneLampBlock/ ()V net/minecraft/world/level/block/RedstoneLampBlock/ ()V +MD: net/minecraft/world/level/block/RedstoneLampBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V net/minecraft/world/level/block/RedstoneLampBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V +MD: net/minecraft/world/level/block/RedstoneLampBlock/m_213897_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)V net/minecraft/world/level/block/RedstoneLampBlock/tick (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)V +MD: net/minecraft/world/level/block/RedstoneLampBlock/m_5573_ (Lnet/minecraft/world/item/context/BlockPlaceContext;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/RedstoneLampBlock/getStateForPlacement (Lnet/minecraft/world/item/context/BlockPlaceContext;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/RedstoneLampBlock/m_6861_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/Block;Lnet/minecraft/core/BlockPos;Z)V net/minecraft/world/level/block/RedstoneLampBlock/neighborChanged (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/Block;Lnet/minecraft/core/BlockPos;Z)V +MD: net/minecraft/world/level/block/RedstoneLampBlock/m_7926_ (Lnet/minecraft/world/level/block/state/StateDefinition$Builder;)V net/minecraft/world/level/block/RedstoneLampBlock/createBlockStateDefinition (Lnet/minecraft/world/level/block/state/StateDefinition$Builder;)V +MD: net/minecraft/world/level/block/RedstoneTorchBlock/ ()V net/minecraft/world/level/block/RedstoneTorchBlock/ ()V +MD: net/minecraft/world/level/block/RedstoneTorchBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V net/minecraft/world/level/block/RedstoneTorchBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V +MD: net/minecraft/world/level/block/RedstoneTorchBlock/m_213897_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)V net/minecraft/world/level/block/RedstoneTorchBlock/tick (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)V +MD: net/minecraft/world/level/block/RedstoneTorchBlock/m_214162_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)V net/minecraft/world/level/block/RedstoneTorchBlock/animateTick (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)V +MD: net/minecraft/world/level/block/RedstoneTorchBlock/m_55679_ (Lnet/minecraft/world/level/BlockGetter;)Ljava/util/List; net/minecraft/world/level/block/RedstoneTorchBlock/lambda$isToggledTooFrequently$0 (Lnet/minecraft/world/level/BlockGetter;)Ljava/util/List; +MD: net/minecraft/world/level/block/RedstoneTorchBlock/m_55684_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Z)Z net/minecraft/world/level/block/RedstoneTorchBlock/isToggledTooFrequently (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Z)Z +MD: net/minecraft/world/level/block/RedstoneTorchBlock/m_6376_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Direction;)I net/minecraft/world/level/block/RedstoneTorchBlock/getDirectSignal (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Direction;)I +MD: net/minecraft/world/level/block/RedstoneTorchBlock/m_6378_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Direction;)I net/minecraft/world/level/block/RedstoneTorchBlock/getSignal (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Direction;)I +MD: net/minecraft/world/level/block/RedstoneTorchBlock/m_6807_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Z)V net/minecraft/world/level/block/RedstoneTorchBlock/onPlace (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Z)V +MD: net/minecraft/world/level/block/RedstoneTorchBlock/m_6810_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Z)V net/minecraft/world/level/block/RedstoneTorchBlock/onRemove (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Z)V +MD: net/minecraft/world/level/block/RedstoneTorchBlock/m_6861_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/Block;Lnet/minecraft/core/BlockPos;Z)V net/minecraft/world/level/block/RedstoneTorchBlock/neighborChanged (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/Block;Lnet/minecraft/core/BlockPos;Z)V +MD: net/minecraft/world/level/block/RedstoneTorchBlock/m_6918_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/world/level/block/RedstoneTorchBlock/hasNeighborSignal (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/world/level/block/RedstoneTorchBlock/m_7899_ (Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/world/level/block/RedstoneTorchBlock/isSignalSource (Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/world/level/block/RedstoneTorchBlock/m_7926_ (Lnet/minecraft/world/level/block/state/StateDefinition$Builder;)V net/minecraft/world/level/block/RedstoneTorchBlock/createBlockStateDefinition (Lnet/minecraft/world/level/block/state/StateDefinition$Builder;)V +MD: net/minecraft/world/level/block/RedstoneTorchBlock$Toggle/ (Lnet/minecraft/core/BlockPos;J)V net/minecraft/world/level/block/RedstoneTorchBlock$Toggle/ (Lnet/minecraft/core/BlockPos;J)V +MD: net/minecraft/world/level/block/RedstoneWallTorchBlock/ ()V net/minecraft/world/level/block/RedstoneWallTorchBlock/ ()V +MD: net/minecraft/world/level/block/RedstoneWallTorchBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V net/minecraft/world/level/block/RedstoneWallTorchBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V +MD: net/minecraft/world/level/block/RedstoneWallTorchBlock/m_214162_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)V net/minecraft/world/level/block/RedstoneWallTorchBlock/animateTick (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)V +MD: net/minecraft/world/level/block/RedstoneWallTorchBlock/m_5573_ (Lnet/minecraft/world/item/context/BlockPlaceContext;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/RedstoneWallTorchBlock/getStateForPlacement (Lnet/minecraft/world/item/context/BlockPlaceContext;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/RedstoneWallTorchBlock/m_5940_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; net/minecraft/world/level/block/RedstoneWallTorchBlock/getShape (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; +MD: net/minecraft/world/level/block/RedstoneWallTorchBlock/m_6378_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Direction;)I net/minecraft/world/level/block/RedstoneWallTorchBlock/getSignal (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Direction;)I +MD: net/minecraft/world/level/block/RedstoneWallTorchBlock/m_6843_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/Rotation;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/RedstoneWallTorchBlock/rotate (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/Rotation;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/RedstoneWallTorchBlock/m_6918_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/world/level/block/RedstoneWallTorchBlock/hasNeighborSignal (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/world/level/block/RedstoneWallTorchBlock/m_6943_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/Mirror;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/RedstoneWallTorchBlock/mirror (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/Mirror;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/RedstoneWallTorchBlock/m_7417_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/RedstoneWallTorchBlock/updateShape (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/RedstoneWallTorchBlock/m_7705_ ()Ljava/lang/String; net/minecraft/world/level/block/RedstoneWallTorchBlock/getDescriptionId ()Ljava/lang/String; +MD: net/minecraft/world/level/block/RedstoneWallTorchBlock/m_7898_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/level/block/RedstoneWallTorchBlock/canSurvive (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/level/block/RedstoneWallTorchBlock/m_7926_ (Lnet/minecraft/world/level/block/state/StateDefinition$Builder;)V net/minecraft/world/level/block/RedstoneWallTorchBlock/createBlockStateDefinition (Lnet/minecraft/world/level/block/state/StateDefinition$Builder;)V +MD: net/minecraft/world/level/block/RenderShape/ ()V net/minecraft/world/level/block/RenderShape/ ()V +MD: net/minecraft/world/level/block/RenderShape/ (Ljava/lang/String;I)V net/minecraft/world/level/block/RenderShape/ (Ljava/lang/String;I)V +MD: net/minecraft/world/level/block/RenderShape/m_154329_ ()[Lnet/minecraft/world/level/block/RenderShape; net/minecraft/world/level/block/RenderShape/$values ()[Lnet/minecraft/world/level/block/RenderShape; +MD: net/minecraft/world/level/block/RenderShape/valueOf (Ljava/lang/String;)Lnet/minecraft/world/level/block/RenderShape; net/minecraft/world/level/block/RenderShape/valueOf (Ljava/lang/String;)Lnet/minecraft/world/level/block/RenderShape; +MD: net/minecraft/world/level/block/RenderShape/values ()[Lnet/minecraft/world/level/block/RenderShape; net/minecraft/world/level/block/RenderShape/values ()[Lnet/minecraft/world/level/block/RenderShape; +MD: net/minecraft/world/level/block/RepeaterBlock/ ()V net/minecraft/world/level/block/RepeaterBlock/ ()V +MD: net/minecraft/world/level/block/RepeaterBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V net/minecraft/world/level/block/RepeaterBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V +MD: net/minecraft/world/level/block/RepeaterBlock/m_214162_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)V net/minecraft/world/level/block/RepeaterBlock/animateTick (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)V +MD: net/minecraft/world/level/block/RepeaterBlock/m_276978_ ()Z net/minecraft/world/level/block/RepeaterBlock/sideInputDiodesOnly ()Z +MD: net/minecraft/world/level/block/RepeaterBlock/m_5573_ (Lnet/minecraft/world/item/context/BlockPlaceContext;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/RepeaterBlock/getStateForPlacement (Lnet/minecraft/world/item/context/BlockPlaceContext;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/RepeaterBlock/m_6112_ (Lnet/minecraft/world/level/block/state/BlockState;)I net/minecraft/world/level/block/RepeaterBlock/getDelay (Lnet/minecraft/world/level/block/state/BlockState;)I +MD: net/minecraft/world/level/block/RepeaterBlock/m_6227_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;Lnet/minecraft/world/phys/BlockHitResult;)Lnet/minecraft/world/InteractionResult; net/minecraft/world/level/block/RepeaterBlock/use (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;Lnet/minecraft/world/phys/BlockHitResult;)Lnet/minecraft/world/InteractionResult; +MD: net/minecraft/world/level/block/RepeaterBlock/m_7346_ (Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/world/level/block/RepeaterBlock/isLocked (Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/world/level/block/RepeaterBlock/m_7417_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/RepeaterBlock/updateShape (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/RepeaterBlock/m_7926_ (Lnet/minecraft/world/level/block/state/StateDefinition$Builder;)V net/minecraft/world/level/block/RepeaterBlock/createBlockStateDefinition (Lnet/minecraft/world/level/block/state/StateDefinition$Builder;)V +MD: net/minecraft/world/level/block/RespawnAnchorBlock/ ()V net/minecraft/world/level/block/RespawnAnchorBlock/ ()V +MD: net/minecraft/world/level/block/RespawnAnchorBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V net/minecraft/world/level/block/RespawnAnchorBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V +MD: net/minecraft/world/level/block/RespawnAnchorBlock/m_214162_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)V net/minecraft/world/level/block/RespawnAnchorBlock/animateTick (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)V +MD: net/minecraft/world/level/block/RespawnAnchorBlock/m_269573_ (Lnet/minecraft/world/entity/Entity;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V net/minecraft/world/level/block/RespawnAnchorBlock/charge (Lnet/minecraft/world/entity/Entity;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V +MD: net/minecraft/world/level/block/RespawnAnchorBlock/m_55839_ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/CollisionGetter;Lnet/minecraft/core/BlockPos;)Ljava/util/Optional; net/minecraft/world/level/block/RespawnAnchorBlock/findStandUpPosition (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/CollisionGetter;Lnet/minecraft/core/BlockPos;)Ljava/util/Optional; +MD: net/minecraft/world/level/block/RespawnAnchorBlock/m_55843_ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/CollisionGetter;Lnet/minecraft/core/BlockPos;Z)Ljava/util/Optional; net/minecraft/world/level/block/RespawnAnchorBlock/findStandUpPosition (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/world/level/CollisionGetter;Lnet/minecraft/core/BlockPos;Z)Ljava/util/Optional; +MD: net/minecraft/world/level/block/RespawnAnchorBlock/m_55848_ (Lnet/minecraft/world/item/ItemStack;)Z net/minecraft/world/level/block/RespawnAnchorBlock/isRespawnFuel (Lnet/minecraft/world/item/ItemStack;)Z +MD: net/minecraft/world/level/block/RespawnAnchorBlock/m_55850_ (Lnet/minecraft/world/level/Level;)Z net/minecraft/world/level/block/RespawnAnchorBlock/canSetSpawn (Lnet/minecraft/world/level/Level;)Z +MD: net/minecraft/world/level/block/RespawnAnchorBlock/m_55852_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/level/block/RespawnAnchorBlock/lambda$explode$0 (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/level/block/RespawnAnchorBlock/m_55861_ (Lnet/minecraft/world/level/block/state/BlockState;I)I net/minecraft/world/level/block/RespawnAnchorBlock/getScaledChargeLevel (Lnet/minecraft/world/level/block/state/BlockState;I)I +MD: net/minecraft/world/level/block/RespawnAnchorBlock/m_55887_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/Level;)Z net/minecraft/world/level/block/RespawnAnchorBlock/isWaterThatWouldFlow (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/Level;)Z +MD: net/minecraft/world/level/block/RespawnAnchorBlock/m_55890_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;)V net/minecraft/world/level/block/RespawnAnchorBlock/explode (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/world/level/block/RespawnAnchorBlock/m_55894_ (Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/world/level/block/RespawnAnchorBlock/canBeCharged (Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/world/level/block/RespawnAnchorBlock/m_6227_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;Lnet/minecraft/world/phys/BlockHitResult;)Lnet/minecraft/world/InteractionResult; net/minecraft/world/level/block/RespawnAnchorBlock/use (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;Lnet/minecraft/world/phys/BlockHitResult;)Lnet/minecraft/world/InteractionResult; +MD: net/minecraft/world/level/block/RespawnAnchorBlock/m_6782_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;)I net/minecraft/world/level/block/RespawnAnchorBlock/getAnalogOutputSignal (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;)I +MD: net/minecraft/world/level/block/RespawnAnchorBlock/m_7278_ (Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/world/level/block/RespawnAnchorBlock/hasAnalogOutputSignal (Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/world/level/block/RespawnAnchorBlock/m_7357_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/pathfinder/PathComputationType;)Z net/minecraft/world/level/block/RespawnAnchorBlock/isPathfindable (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/pathfinder/PathComputationType;)Z +MD: net/minecraft/world/level/block/RespawnAnchorBlock/m_7926_ (Lnet/minecraft/world/level/block/state/StateDefinition$Builder;)V net/minecraft/world/level/block/RespawnAnchorBlock/createBlockStateDefinition (Lnet/minecraft/world/level/block/state/StateDefinition$Builder;)V +MD: net/minecraft/world/level/block/RespawnAnchorBlock$1/ (Lnet/minecraft/world/level/block/RespawnAnchorBlock;Lnet/minecraft/core/BlockPos;Z)V net/minecraft/world/level/block/RespawnAnchorBlock$1/ (Lnet/minecraft/world/level/block/RespawnAnchorBlock;Lnet/minecraft/core/BlockPos;Z)V +MD: net/minecraft/world/level/block/RespawnAnchorBlock$1/m_6617_ (Lnet/minecraft/world/level/Explosion;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/material/FluidState;)Ljava/util/Optional; net/minecraft/world/level/block/RespawnAnchorBlock$1/getBlockExplosionResistance (Lnet/minecraft/world/level/Explosion;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/material/FluidState;)Ljava/util/Optional; +MD: net/minecraft/world/level/block/RodBlock/ ()V net/minecraft/world/level/block/RodBlock/ ()V +MD: net/minecraft/world/level/block/RodBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V net/minecraft/world/level/block/RodBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V +MD: net/minecraft/world/level/block/RodBlock/m_5940_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; net/minecraft/world/level/block/RodBlock/getShape (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; +MD: net/minecraft/world/level/block/RodBlock/m_6843_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/Rotation;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/RodBlock/rotate (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/Rotation;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/RodBlock/m_6943_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/Mirror;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/RodBlock/mirror (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/Mirror;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/RodBlock/m_7357_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/pathfinder/PathComputationType;)Z net/minecraft/world/level/block/RodBlock/isPathfindable (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/pathfinder/PathComputationType;)Z +MD: net/minecraft/world/level/block/RodBlock$1/ ()V net/minecraft/world/level/block/RodBlock$1/ ()V +MD: net/minecraft/world/level/block/RootedDirtBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V net/minecraft/world/level/block/RootedDirtBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V +MD: net/minecraft/world/level/block/RootedDirtBlock/m_214148_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V net/minecraft/world/level/block/RootedDirtBlock/performBonemeal (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V +MD: net/minecraft/world/level/block/RootedDirtBlock/m_214167_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/world/level/block/RootedDirtBlock/isBonemealSuccess (Lnet/minecraft/world/level/Level;Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/world/level/block/RootedDirtBlock/m_7370_ (Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Z)Z net/minecraft/world/level/block/RootedDirtBlock/isValidBonemealTarget (Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Z)Z +MD: net/minecraft/world/level/block/RootsBlock/ ()V net/minecraft/world/level/block/RootsBlock/ ()V +MD: net/minecraft/world/level/block/RootsBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V net/minecraft/world/level/block/RootsBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V +MD: net/minecraft/world/level/block/RootsBlock/m_5940_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; net/minecraft/world/level/block/RootsBlock/getShape (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; +MD: net/minecraft/world/level/block/RootsBlock/m_6266_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/level/block/RootsBlock/mayPlaceOn (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/level/block/RotatedPillarBlock/ ()V net/minecraft/world/level/block/RotatedPillarBlock/ ()V +MD: net/minecraft/world/level/block/RotatedPillarBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V net/minecraft/world/level/block/RotatedPillarBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V +MD: net/minecraft/world/level/block/RotatedPillarBlock/m_154376_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/Rotation;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/RotatedPillarBlock/rotatePillar (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/Rotation;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/RotatedPillarBlock/m_5573_ (Lnet/minecraft/world/item/context/BlockPlaceContext;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/RotatedPillarBlock/getStateForPlacement (Lnet/minecraft/world/item/context/BlockPlaceContext;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/RotatedPillarBlock/m_6843_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/Rotation;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/RotatedPillarBlock/rotate (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/Rotation;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/RotatedPillarBlock/m_7926_ (Lnet/minecraft/world/level/block/state/StateDefinition$Builder;)V net/minecraft/world/level/block/RotatedPillarBlock/createBlockStateDefinition (Lnet/minecraft/world/level/block/state/StateDefinition$Builder;)V +MD: net/minecraft/world/level/block/RotatedPillarBlock$1/ ()V net/minecraft/world/level/block/RotatedPillarBlock$1/ ()V +MD: net/minecraft/world/level/block/Rotation/ ()V net/minecraft/world/level/block/Rotation/ ()V +MD: net/minecraft/world/level/block/Rotation/ (Ljava/lang/String;ILjava/lang/String;Lcom/mojang/math/OctahedralGroup;)V net/minecraft/world/level/block/Rotation/ (Ljava/lang/String;ILjava/lang/String;Lcom/mojang/math/OctahedralGroup;)V +MD: net/minecraft/world/level/block/Rotation/m_154379_ ()[Lnet/minecraft/world/level/block/Rotation; net/minecraft/world/level/block/Rotation/$values ()[Lnet/minecraft/world/level/block/Rotation; +MD: net/minecraft/world/level/block/Rotation/m_221990_ (Lnet/minecraft/util/RandomSource;)Lnet/minecraft/world/level/block/Rotation; net/minecraft/world/level/block/Rotation/getRandom (Lnet/minecraft/util/RandomSource;)Lnet/minecraft/world/level/block/Rotation; +MD: net/minecraft/world/level/block/Rotation/m_221992_ (Lnet/minecraft/util/RandomSource;)Ljava/util/List; net/minecraft/world/level/block/Rotation/getShuffled (Lnet/minecraft/util/RandomSource;)Ljava/util/List; +MD: net/minecraft/world/level/block/Rotation/m_55948_ ()Lcom/mojang/math/OctahedralGroup; net/minecraft/world/level/block/Rotation/rotation ()Lcom/mojang/math/OctahedralGroup; +MD: net/minecraft/world/level/block/Rotation/m_55949_ (II)I net/minecraft/world/level/block/Rotation/rotate (II)I +MD: net/minecraft/world/level/block/Rotation/m_55952_ (Lnet/minecraft/world/level/block/Rotation;)Lnet/minecraft/world/level/block/Rotation; net/minecraft/world/level/block/Rotation/getRotated (Lnet/minecraft/world/level/block/Rotation;)Lnet/minecraft/world/level/block/Rotation; +MD: net/minecraft/world/level/block/Rotation/m_55954_ (Lnet/minecraft/core/Direction;)Lnet/minecraft/core/Direction; net/minecraft/world/level/block/Rotation/rotate (Lnet/minecraft/core/Direction;)Lnet/minecraft/core/Direction; +MD: net/minecraft/world/level/block/Rotation/m_7912_ ()Ljava/lang/String; net/minecraft/world/level/block/Rotation/getSerializedName ()Ljava/lang/String; +MD: net/minecraft/world/level/block/Rotation/valueOf (Ljava/lang/String;)Lnet/minecraft/world/level/block/Rotation; net/minecraft/world/level/block/Rotation/valueOf (Ljava/lang/String;)Lnet/minecraft/world/level/block/Rotation; +MD: net/minecraft/world/level/block/Rotation/values ()[Lnet/minecraft/world/level/block/Rotation; net/minecraft/world/level/block/Rotation/values ()[Lnet/minecraft/world/level/block/Rotation; +MD: net/minecraft/world/level/block/Rotation$1/ ()V net/minecraft/world/level/block/Rotation$1/ ()V +MD: net/minecraft/world/level/block/SandBlock/ (ILnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V net/minecraft/world/level/block/SandBlock/ (ILnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V +MD: net/minecraft/world/level/block/SandBlock/m_6248_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)I net/minecraft/world/level/block/SandBlock/getDustColor (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)I +MD: net/minecraft/world/level/block/SaplingBlock/ ()V net/minecraft/world/level/block/SaplingBlock/ ()V +MD: net/minecraft/world/level/block/SaplingBlock/ (Lnet/minecraft/world/level/block/grower/AbstractTreeGrower;Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V net/minecraft/world/level/block/SaplingBlock/ (Lnet/minecraft/world/level/block/grower/AbstractTreeGrower;Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V +MD: net/minecraft/world/level/block/SaplingBlock/m_213898_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)V net/minecraft/world/level/block/SaplingBlock/randomTick (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)V +MD: net/minecraft/world/level/block/SaplingBlock/m_214148_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V net/minecraft/world/level/block/SaplingBlock/performBonemeal (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V +MD: net/minecraft/world/level/block/SaplingBlock/m_214167_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/world/level/block/SaplingBlock/isBonemealSuccess (Lnet/minecraft/world/level/Level;Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/world/level/block/SaplingBlock/m_222000_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/util/RandomSource;)V net/minecraft/world/level/block/SaplingBlock/advanceTree (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/util/RandomSource;)V +MD: net/minecraft/world/level/block/SaplingBlock/m_5940_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; net/minecraft/world/level/block/SaplingBlock/getShape (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; +MD: net/minecraft/world/level/block/SaplingBlock/m_7370_ (Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Z)Z net/minecraft/world/level/block/SaplingBlock/isValidBonemealTarget (Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Z)Z +MD: net/minecraft/world/level/block/SaplingBlock/m_7926_ (Lnet/minecraft/world/level/block/state/StateDefinition$Builder;)V net/minecraft/world/level/block/SaplingBlock/createBlockStateDefinition (Lnet/minecraft/world/level/block/state/StateDefinition$Builder;)V +MD: net/minecraft/world/level/block/ScaffoldingBlock/ ()V net/minecraft/world/level/block/ScaffoldingBlock/ ()V +MD: net/minecraft/world/level/block/ScaffoldingBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V net/minecraft/world/level/block/ScaffoldingBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V +MD: net/minecraft/world/level/block/ScaffoldingBlock/m_213897_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)V net/minecraft/world/level/block/ScaffoldingBlock/tick (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)V +MD: net/minecraft/world/level/block/ScaffoldingBlock/m_5573_ (Lnet/minecraft/world/item/context/BlockPlaceContext;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/ScaffoldingBlock/getStateForPlacement (Lnet/minecraft/world/item/context/BlockPlaceContext;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/ScaffoldingBlock/m_56024_ (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)I net/minecraft/world/level/block/ScaffoldingBlock/getDistance (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)I +MD: net/minecraft/world/level/block/ScaffoldingBlock/m_56027_ (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;I)Z net/minecraft/world/level/block/ScaffoldingBlock/isBottom (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;I)Z +MD: net/minecraft/world/level/block/ScaffoldingBlock/m_5888_ (Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/material/FluidState; net/minecraft/world/level/block/ScaffoldingBlock/getFluidState (Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/material/FluidState; +MD: net/minecraft/world/level/block/ScaffoldingBlock/m_5939_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; net/minecraft/world/level/block/ScaffoldingBlock/getCollisionShape (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; +MD: net/minecraft/world/level/block/ScaffoldingBlock/m_5940_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; net/minecraft/world/level/block/ScaffoldingBlock/getShape (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; +MD: net/minecraft/world/level/block/ScaffoldingBlock/m_6079_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/phys/shapes/VoxelShape; net/minecraft/world/level/block/ScaffoldingBlock/getInteractionShape (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/phys/shapes/VoxelShape; +MD: net/minecraft/world/level/block/ScaffoldingBlock/m_6807_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Z)V net/minecraft/world/level/block/ScaffoldingBlock/onPlace (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Z)V +MD: net/minecraft/world/level/block/ScaffoldingBlock/m_6864_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/item/context/BlockPlaceContext;)Z net/minecraft/world/level/block/ScaffoldingBlock/canBeReplaced (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/item/context/BlockPlaceContext;)Z +MD: net/minecraft/world/level/block/ScaffoldingBlock/m_7417_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/ScaffoldingBlock/updateShape (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/ScaffoldingBlock/m_7898_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/level/block/ScaffoldingBlock/canSurvive (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/level/block/ScaffoldingBlock/m_7926_ (Lnet/minecraft/world/level/block/state/StateDefinition$Builder;)V net/minecraft/world/level/block/ScaffoldingBlock/createBlockStateDefinition (Lnet/minecraft/world/level/block/state/StateDefinition$Builder;)V +MD: net/minecraft/world/level/block/SculkBehaviour/ ()V net/minecraft/world/level/block/SculkBehaviour/ ()V +MD: net/minecraft/world/level/block/SculkBehaviour/m_213628_ (Lnet/minecraft/world/level/block/SculkSpreader$ChargeCursor;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/block/SculkSpreader;Z)I net/minecraft/world/level/block/SculkBehaviour/attemptUseCharge (Lnet/minecraft/world/level/block/SculkSpreader$ChargeCursor;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/block/SculkSpreader;Z)I +MD: net/minecraft/world/level/block/SculkBehaviour/m_213670_ (I)I net/minecraft/world/level/block/SculkBehaviour/updateDecayDelay (I)I +MD: net/minecraft/world/level/block/SculkBehaviour/m_213805_ (Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)V net/minecraft/world/level/block/SculkBehaviour/onDischarged (Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)V +MD: net/minecraft/world/level/block/SculkBehaviour/m_213999_ ()Z net/minecraft/world/level/block/SculkBehaviour/canChangeBlockStateOnSpread ()Z +MD: net/minecraft/world/level/block/SculkBehaviour/m_214094_ (Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Ljava/util/Collection;Z)Z net/minecraft/world/level/block/SculkBehaviour/attemptSpreadVein (Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Ljava/util/Collection;Z)Z +MD: net/minecraft/world/level/block/SculkBehaviour/m_222025_ ()B net/minecraft/world/level/block/SculkBehaviour/getSculkSpreadDelay ()B +MD: net/minecraft/world/level/block/SculkBehaviour/m_222030_ (Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)Z net/minecraft/world/level/block/SculkBehaviour/depositCharge (Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)Z +MD: net/minecraft/world/level/block/SculkBehaviour$1/ ()V net/minecraft/world/level/block/SculkBehaviour$1/ ()V +MD: net/minecraft/world/level/block/SculkBehaviour$1/m_213628_ (Lnet/minecraft/world/level/block/SculkSpreader$ChargeCursor;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/block/SculkSpreader;Z)I net/minecraft/world/level/block/SculkBehaviour$1/attemptUseCharge (Lnet/minecraft/world/level/block/SculkSpreader$ChargeCursor;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/block/SculkSpreader;Z)I +MD: net/minecraft/world/level/block/SculkBehaviour$1/m_213670_ (I)I net/minecraft/world/level/block/SculkBehaviour$1/updateDecayDelay (I)I +MD: net/minecraft/world/level/block/SculkBehaviour$1/m_214094_ (Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Ljava/util/Collection;Z)Z net/minecraft/world/level/block/SculkBehaviour$1/attemptSpreadVein (Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Ljava/util/Collection;Z)Z +MD: net/minecraft/world/level/block/SculkBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V net/minecraft/world/level/block/SculkBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V +MD: net/minecraft/world/level/block/SculkBlock/m_213628_ (Lnet/minecraft/world/level/block/SculkSpreader$ChargeCursor;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/block/SculkSpreader;Z)I net/minecraft/world/level/block/SculkBlock/attemptUseCharge (Lnet/minecraft/world/level/block/SculkSpreader$ChargeCursor;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/block/SculkSpreader;Z)I +MD: net/minecraft/world/level/block/SculkBlock/m_213999_ ()Z net/minecraft/world/level/block/SculkBlock/canChangeBlockStateOnSpread ()Z +MD: net/minecraft/world/level/block/SculkBlock/m_222064_ (Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/level/block/SculkBlock/canPlaceGrowth (Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/level/block/SculkBlock/m_222067_ (Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;Z)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/SculkBlock/getRandomGrowthState (Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;Z)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/SculkBlock/m_222079_ (Lnet/minecraft/world/level/block/SculkSpreader;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;I)I net/minecraft/world/level/block/SculkBlock/getDecayPenalty (Lnet/minecraft/world/level/block/SculkSpreader;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;I)I +MD: net/minecraft/world/level/block/SculkCatalystBlock/ ()V net/minecraft/world/level/block/SculkCatalystBlock/ ()V +MD: net/minecraft/world/level/block/SculkCatalystBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V net/minecraft/world/level/block/SculkCatalystBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V +MD: net/minecraft/world/level/block/SculkCatalystBlock/m_142194_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/block/entity/BlockEntity; net/minecraft/world/level/block/SculkCatalystBlock/newBlockEntity (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/block/entity/BlockEntity; +MD: net/minecraft/world/level/block/SculkCatalystBlock/m_142354_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/entity/BlockEntityType;)Lnet/minecraft/world/level/block/entity/BlockEntityTicker; net/minecraft/world/level/block/SculkCatalystBlock/getTicker (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/entity/BlockEntityType;)Lnet/minecraft/world/level/block/entity/BlockEntityTicker; +MD: net/minecraft/world/level/block/SculkCatalystBlock/m_213646_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/item/ItemStack;Z)V net/minecraft/world/level/block/SculkCatalystBlock/spawnAfterBreak (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/item/ItemStack;Z)V +MD: net/minecraft/world/level/block/SculkCatalystBlock/m_213897_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)V net/minecraft/world/level/block/SculkCatalystBlock/tick (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)V +MD: net/minecraft/world/level/block/SculkCatalystBlock/m_7514_ (Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/block/RenderShape; net/minecraft/world/level/block/SculkCatalystBlock/getRenderShape (Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/block/RenderShape; +MD: net/minecraft/world/level/block/SculkCatalystBlock/m_7926_ (Lnet/minecraft/world/level/block/state/StateDefinition$Builder;)V net/minecraft/world/level/block/SculkCatalystBlock/createBlockStateDefinition (Lnet/minecraft/world/level/block/state/StateDefinition$Builder;)V +MD: net/minecraft/world/level/block/SculkSensorBlock/ ()V net/minecraft/world/level/block/SculkSensorBlock/ ()V +MD: net/minecraft/world/level/block/SculkSensorBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V net/minecraft/world/level/block/SculkSensorBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V +MD: net/minecraft/world/level/block/SculkSensorBlock/m_141947_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/entity/Entity;)V net/minecraft/world/level/block/SculkSensorBlock/stepOn (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/entity/Entity;)V +MD: net/minecraft/world/level/block/SculkSensorBlock/m_142194_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/block/entity/BlockEntity; net/minecraft/world/level/block/SculkSensorBlock/newBlockEntity (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/block/entity/BlockEntity; +MD: net/minecraft/world/level/block/SculkSensorBlock/m_142354_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/entity/BlockEntityType;)Lnet/minecraft/world/level/block/entity/BlockEntityTicker; net/minecraft/world/level/block/SculkSensorBlock/getTicker (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/entity/BlockEntityType;)Lnet/minecraft/world/level/block/entity/BlockEntityTicker; +MD: net/minecraft/world/level/block/SculkSensorBlock/m_154407_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V net/minecraft/world/level/block/SculkSensorBlock/deactivate (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V +MD: net/minecraft/world/level/block/SculkSensorBlock/m_154487_ (Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/block/state/properties/SculkSensorPhase; net/minecraft/world/level/block/SculkSensorBlock/getPhase (Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/block/state/properties/SculkSensorPhase; +MD: net/minecraft/world/level/block/SculkSensorBlock/m_154489_ (Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/world/level/block/SculkSensorBlock/canActivate (Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/world/level/block/SculkSensorBlock/m_213646_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/item/ItemStack;Z)V net/minecraft/world/level/block/SculkSensorBlock/spawnAfterBreak (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/item/ItemStack;Z)V +MD: net/minecraft/world/level/block/SculkSensorBlock/m_213897_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)V net/minecraft/world/level/block/SculkSensorBlock/tick (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)V +MD: net/minecraft/world/level/block/SculkSensorBlock/m_214162_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)V net/minecraft/world/level/block/SculkSensorBlock/animateTick (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)V +MD: net/minecraft/world/level/block/SculkSensorBlock/m_276749_ ([F)V net/minecraft/world/level/block/SculkSensorBlock/lambda$static$0 ([F)V +MD: net/minecraft/world/level/block/SculkSensorBlock/m_276869_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V net/minecraft/world/level/block/SculkSensorBlock/updateNeighbours (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V +MD: net/minecraft/world/level/block/SculkSensorBlock/m_277033_ (Lnet/minecraft/world/entity/Entity;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;II)V net/minecraft/world/level/block/SculkSensorBlock/activate (Lnet/minecraft/world/entity/Entity;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;II)V +MD: net/minecraft/world/level/block/SculkSensorBlock/m_277083_ (Lnet/minecraft/world/entity/Entity;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;I)V net/minecraft/world/level/block/SculkSensorBlock/tryResonateVibration (Lnet/minecraft/world/entity/Entity;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;I)V +MD: net/minecraft/world/level/block/SculkSensorBlock/m_278716_ ()I net/minecraft/world/level/block/SculkSensorBlock/getActiveTicks ()I +MD: net/minecraft/world/level/block/SculkSensorBlock/m_279962_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/entity/SculkSensorBlockEntity;)V net/minecraft/world/level/block/SculkSensorBlock/lambda$getTicker$1 (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/entity/SculkSensorBlockEntity;)V +MD: net/minecraft/world/level/block/SculkSensorBlock/m_5573_ (Lnet/minecraft/world/item/context/BlockPlaceContext;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/SculkSensorBlock/getStateForPlacement (Lnet/minecraft/world/item/context/BlockPlaceContext;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/SculkSensorBlock/m_5888_ (Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/material/FluidState; net/minecraft/world/level/block/SculkSensorBlock/getFluidState (Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/material/FluidState; +MD: net/minecraft/world/level/block/SculkSensorBlock/m_5940_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; net/minecraft/world/level/block/SculkSensorBlock/getShape (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; +MD: net/minecraft/world/level/block/SculkSensorBlock/m_6376_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Direction;)I net/minecraft/world/level/block/SculkSensorBlock/getDirectSignal (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Direction;)I +MD: net/minecraft/world/level/block/SculkSensorBlock/m_6378_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Direction;)I net/minecraft/world/level/block/SculkSensorBlock/getSignal (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Direction;)I +MD: net/minecraft/world/level/block/SculkSensorBlock/m_6782_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;)I net/minecraft/world/level/block/SculkSensorBlock/getAnalogOutputSignal (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;)I +MD: net/minecraft/world/level/block/SculkSensorBlock/m_6807_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Z)V net/minecraft/world/level/block/SculkSensorBlock/onPlace (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Z)V +MD: net/minecraft/world/level/block/SculkSensorBlock/m_6810_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Z)V net/minecraft/world/level/block/SculkSensorBlock/onRemove (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Z)V +MD: net/minecraft/world/level/block/SculkSensorBlock/m_7278_ (Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/world/level/block/SculkSensorBlock/hasAnalogOutputSignal (Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/world/level/block/SculkSensorBlock/m_7357_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/pathfinder/PathComputationType;)Z net/minecraft/world/level/block/SculkSensorBlock/isPathfindable (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/pathfinder/PathComputationType;)Z +MD: net/minecraft/world/level/block/SculkSensorBlock/m_7417_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/SculkSensorBlock/updateShape (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/SculkSensorBlock/m_7514_ (Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/block/RenderShape; net/minecraft/world/level/block/SculkSensorBlock/getRenderShape (Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/block/RenderShape; +MD: net/minecraft/world/level/block/SculkSensorBlock/m_7899_ (Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/world/level/block/SculkSensorBlock/isSignalSource (Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/world/level/block/SculkSensorBlock/m_7923_ (Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/world/level/block/SculkSensorBlock/useShapeForLightOcclusion (Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/world/level/block/SculkSensorBlock/m_7926_ (Lnet/minecraft/world/level/block/state/StateDefinition$Builder;)V net/minecraft/world/level/block/SculkSensorBlock/createBlockStateDefinition (Lnet/minecraft/world/level/block/state/StateDefinition$Builder;)V +MD: net/minecraft/world/level/block/SculkShriekerBlock/ ()V net/minecraft/world/level/block/SculkShriekerBlock/ ()V +MD: net/minecraft/world/level/block/SculkShriekerBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V net/minecraft/world/level/block/SculkShriekerBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V +MD: net/minecraft/world/level/block/SculkShriekerBlock/m_141947_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/entity/Entity;)V net/minecraft/world/level/block/SculkShriekerBlock/stepOn (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/entity/Entity;)V +MD: net/minecraft/world/level/block/SculkShriekerBlock/m_142194_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/block/entity/BlockEntity; net/minecraft/world/level/block/SculkShriekerBlock/newBlockEntity (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/block/entity/BlockEntity; +MD: net/minecraft/world/level/block/SculkShriekerBlock/m_142354_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/entity/BlockEntityType;)Lnet/minecraft/world/level/block/entity/BlockEntityTicker; net/minecraft/world/level/block/SculkShriekerBlock/getTicker (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/entity/BlockEntityType;)Lnet/minecraft/world/level/block/entity/BlockEntityTicker; +MD: net/minecraft/world/level/block/SculkShriekerBlock/m_213646_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/item/ItemStack;Z)V net/minecraft/world/level/block/SculkShriekerBlock/spawnAfterBreak (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/item/ItemStack;Z)V +MD: net/minecraft/world/level/block/SculkShriekerBlock/m_213897_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)V net/minecraft/world/level/block/SculkShriekerBlock/tick (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)V +MD: net/minecraft/world/level/block/SculkShriekerBlock/m_222160_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/server/level/ServerPlayer;Lnet/minecraft/world/level/block/entity/SculkShriekerBlockEntity;)V net/minecraft/world/level/block/SculkShriekerBlock/lambda$stepOn$0 (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/server/level/ServerPlayer;Lnet/minecraft/world/level/block/entity/SculkShriekerBlockEntity;)V +MD: net/minecraft/world/level/block/SculkShriekerBlock/m_222167_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/level/block/entity/SculkShriekerBlockEntity;)V net/minecraft/world/level/block/SculkShriekerBlock/lambda$tick$2 (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/level/block/entity/SculkShriekerBlockEntity;)V +MD: net/minecraft/world/level/block/SculkShriekerBlock/m_222215_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/level/block/entity/SculkShriekerBlockEntity;)V net/minecraft/world/level/block/SculkShriekerBlock/lambda$onRemove$1 (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/level/block/entity/SculkShriekerBlockEntity;)V +MD: net/minecraft/world/level/block/SculkShriekerBlock/m_279963_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/entity/SculkShriekerBlockEntity;)V net/minecraft/world/level/block/SculkShriekerBlock/lambda$getTicker$3 (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/entity/SculkShriekerBlockEntity;)V +MD: net/minecraft/world/level/block/SculkShriekerBlock/m_5573_ (Lnet/minecraft/world/item/context/BlockPlaceContext;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/SculkShriekerBlock/getStateForPlacement (Lnet/minecraft/world/item/context/BlockPlaceContext;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/SculkShriekerBlock/m_5888_ (Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/material/FluidState; net/minecraft/world/level/block/SculkShriekerBlock/getFluidState (Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/material/FluidState; +MD: net/minecraft/world/level/block/SculkShriekerBlock/m_5939_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; net/minecraft/world/level/block/SculkShriekerBlock/getCollisionShape (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; +MD: net/minecraft/world/level/block/SculkShriekerBlock/m_6810_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Z)V net/minecraft/world/level/block/SculkShriekerBlock/onRemove (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Z)V +MD: net/minecraft/world/level/block/SculkShriekerBlock/m_7417_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/SculkShriekerBlock/updateShape (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/SculkShriekerBlock/m_7514_ (Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/block/RenderShape; net/minecraft/world/level/block/SculkShriekerBlock/getRenderShape (Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/block/RenderShape; +MD: net/minecraft/world/level/block/SculkShriekerBlock/m_7923_ (Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/world/level/block/SculkShriekerBlock/useShapeForLightOcclusion (Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/world/level/block/SculkShriekerBlock/m_7926_ (Lnet/minecraft/world/level/block/state/StateDefinition$Builder;)V net/minecraft/world/level/block/SculkShriekerBlock/createBlockStateDefinition (Lnet/minecraft/world/level/block/state/StateDefinition$Builder;)V +MD: net/minecraft/world/level/block/SculkShriekerBlock/m_7952_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/phys/shapes/VoxelShape; net/minecraft/world/level/block/SculkShriekerBlock/getOcclusionShape (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/phys/shapes/VoxelShape; +MD: net/minecraft/world/level/block/SculkSpreader/ ()V net/minecraft/world/level/block/SculkSpreader/ ()V +MD: net/minecraft/world/level/block/SculkSpreader/ (ZLnet/minecraft/tags/TagKey;IIII)V net/minecraft/world/level/block/SculkSpreader/ (ZLnet/minecraft/tags/TagKey;IIII)V +MD: net/minecraft/world/level/block/SculkSpreader/m_222254_ ()Lnet/minecraft/world/level/block/SculkSpreader; net/minecraft/world/level/block/SculkSpreader/createLevelSpreader ()Lnet/minecraft/world/level/block/SculkSpreader; +MD: net/minecraft/world/level/block/SculkSpreader/m_222255_ (Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;Z)V net/minecraft/world/level/block/SculkSpreader/updateCursors (Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;Z)V +MD: net/minecraft/world/level/block/SculkSpreader/m_222260_ (Lnet/minecraft/world/level/block/SculkSpreader$ChargeCursor;)V net/minecraft/world/level/block/SculkSpreader/addCursor (Lnet/minecraft/world/level/block/SculkSpreader$ChargeCursor;)V +MD: net/minecraft/world/level/block/SculkSpreader/m_222262_ (Lnet/minecraft/world/level/block/SculkSpreader$ChargeCursor;Lnet/minecraft/core/BlockPos;Ljava/lang/Integer;)Ljava/lang/Integer; net/minecraft/world/level/block/SculkSpreader/lambda$updateCursors$2 (Lnet/minecraft/world/level/block/SculkSpreader$ChargeCursor;Lnet/minecraft/core/BlockPos;Ljava/lang/Integer;)Ljava/lang/Integer; +MD: net/minecraft/world/level/block/SculkSpreader/m_222266_ (Lnet/minecraft/core/BlockPos;I)V net/minecraft/world/level/block/SculkSpreader/addCursors (Lnet/minecraft/core/BlockPos;I)V +MD: net/minecraft/world/level/block/SculkSpreader/m_222269_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/level/block/SculkSpreader/load (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/level/block/SculkSpreader/m_222271_ (Lnet/minecraft/nbt/CompoundTag;Lnet/minecraft/nbt/Tag;)V net/minecraft/world/level/block/SculkSpreader/lambda$save$0 (Lnet/minecraft/nbt/CompoundTag;Lnet/minecraft/nbt/Tag;)V +MD: net/minecraft/world/level/block/SculkSpreader/m_222274_ ()Lnet/minecraft/world/level/block/SculkSpreader; net/minecraft/world/level/block/SculkSpreader/createWorldGenSpreader ()Lnet/minecraft/world/level/block/SculkSpreader; +MD: net/minecraft/world/level/block/SculkSpreader/m_222275_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/level/block/SculkSpreader/save (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/level/block/SculkSpreader/m_222277_ ()Lnet/minecraft/tags/TagKey; net/minecraft/world/level/block/SculkSpreader/replaceableBlocks ()Lnet/minecraft/tags/TagKey; +MD: net/minecraft/world/level/block/SculkSpreader/m_222278_ ()I net/minecraft/world/level/block/SculkSpreader/growthSpawnCost ()I +MD: net/minecraft/world/level/block/SculkSpreader/m_222279_ ()I net/minecraft/world/level/block/SculkSpreader/noGrowthRadius ()I +MD: net/minecraft/world/level/block/SculkSpreader/m_222280_ ()I net/minecraft/world/level/block/SculkSpreader/chargeDecayRate ()I +MD: net/minecraft/world/level/block/SculkSpreader/m_222281_ ()I net/minecraft/world/level/block/SculkSpreader/additionalDecayRate ()I +MD: net/minecraft/world/level/block/SculkSpreader/m_222282_ ()Z net/minecraft/world/level/block/SculkSpreader/isWorldGeneration ()Z +MD: net/minecraft/world/level/block/SculkSpreader/m_222283_ ()Ljava/util/List; net/minecraft/world/level/block/SculkSpreader/getCursors ()Ljava/util/List; +MD: net/minecraft/world/level/block/SculkSpreader/m_222284_ ()V net/minecraft/world/level/block/SculkSpreader/clear ()V +MD: net/minecraft/world/level/block/SculkSpreader/m_279964_ (Lnet/minecraft/world/level/block/SculkSpreader$ChargeCursor;)Ljava/lang/Integer; net/minecraft/world/level/block/SculkSpreader/lambda$save$1 (Lnet/minecraft/world/level/block/SculkSpreader$ChargeCursor;)Ljava/lang/Integer; +MD: net/minecraft/world/level/block/SculkSpreader$ChargeCursor/ ()V net/minecraft/world/level/block/SculkSpreader$ChargeCursor/ ()V +MD: net/minecraft/world/level/block/SculkSpreader$ChargeCursor/ (Lnet/minecraft/core/BlockPos;IIILjava/util/Optional;)V net/minecraft/world/level/block/SculkSpreader$ChargeCursor/ (Lnet/minecraft/core/BlockPos;IIILjava/util/Optional;)V +MD: net/minecraft/world/level/block/SculkSpreader$ChargeCursor/ (Lnet/minecraft/core/BlockPos;I)V net/minecraft/world/level/block/SculkSpreader$ChargeCursor/ (Lnet/minecraft/core/BlockPos;I)V +MD: net/minecraft/world/level/block/SculkSpreader$ChargeCursor/m_222304_ ()Lnet/minecraft/core/BlockPos; net/minecraft/world/level/block/SculkSpreader$ChargeCursor/getPos ()Lnet/minecraft/core/BlockPos; +MD: net/minecraft/world/level/block/SculkSpreader$ChargeCursor/m_222305_ (Lnet/minecraft/util/RandomSource;)Ljava/util/List; net/minecraft/world/level/block/SculkSpreader$ChargeCursor/getRandomizedNonCornerNeighbourOffsets (Lnet/minecraft/util/RandomSource;)Ljava/util/List; +MD: net/minecraft/world/level/block/SculkSpreader$ChargeCursor/m_222307_ (Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)Lnet/minecraft/core/BlockPos; net/minecraft/world/level/block/SculkSpreader$ChargeCursor/getValidMovementPos (Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)Lnet/minecraft/core/BlockPos; +MD: net/minecraft/world/level/block/SculkSpreader$ChargeCursor/m_222311_ (Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/block/SculkSpreader;Z)V net/minecraft/world/level/block/SculkSpreader$ChargeCursor/update (Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/block/SculkSpreader;Z)V +MD: net/minecraft/world/level/block/SculkSpreader$ChargeCursor/m_222317_ (Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/level/block/SculkSpreader$ChargeCursor/isMovementUnobstructed (Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/level/block/SculkSpreader$ChargeCursor/m_222321_ (Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Direction;)Z net/minecraft/world/level/block/SculkSpreader$ChargeCursor/isUnobstructed (Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Direction;)Z +MD: net/minecraft/world/level/block/SculkSpreader$ChargeCursor/m_222325_ (Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Z)Z net/minecraft/world/level/block/SculkSpreader$ChargeCursor/shouldUpdate (Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Z)Z +MD: net/minecraft/world/level/block/SculkSpreader$ChargeCursor/m_222329_ (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/world/level/block/SculkSpreader$ChargeCursor/lambda$static$5 (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/world/level/block/SculkSpreader$ChargeCursor/m_222331_ (Lnet/minecraft/world/level/block/SculkSpreader$ChargeCursor;)V net/minecraft/world/level/block/SculkSpreader$ChargeCursor/mergeWith (Lnet/minecraft/world/level/block/SculkSpreader$ChargeCursor;)V +MD: net/minecraft/world/level/block/SculkSpreader$ChargeCursor/m_222333_ (Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/block/SculkBehaviour; net/minecraft/world/level/block/SculkSpreader$ChargeCursor/getBlockBehaviour (Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/block/SculkBehaviour; +MD: net/minecraft/world/level/block/SculkSpreader$ChargeCursor/m_222335_ (Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/level/block/SculkSpreader$ChargeCursor/lambda$static$0 (Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/level/block/SculkSpreader$ChargeCursor/m_222337_ (Lit/unimi/dsi/fastutil/objects/ObjectArrayList;)V net/minecraft/world/level/block/SculkSpreader$ChargeCursor/lambda$static$1 (Lit/unimi/dsi/fastutil/objects/ObjectArrayList;)V +MD: net/minecraft/world/level/block/SculkSpreader$ChargeCursor/m_222339_ (Ljava/util/List;)Ljava/util/Set; net/minecraft/world/level/block/SculkSpreader$ChargeCursor/lambda$static$2 (Ljava/util/List;)Ljava/util/Set; +MD: net/minecraft/world/level/block/SculkSpreader$ChargeCursor/m_222341_ ()I net/minecraft/world/level/block/SculkSpreader$ChargeCursor/getCharge ()I +MD: net/minecraft/world/level/block/SculkSpreader$ChargeCursor/m_222342_ (Lnet/minecraft/world/level/block/SculkSpreader$ChargeCursor;)Ljava/util/Optional; net/minecraft/world/level/block/SculkSpreader$ChargeCursor/lambda$static$4 (Lnet/minecraft/world/level/block/SculkSpreader$ChargeCursor;)Ljava/util/Optional; +MD: net/minecraft/world/level/block/SculkSpreader$ChargeCursor/m_222344_ ()I net/minecraft/world/level/block/SculkSpreader$ChargeCursor/getDecayDelay ()I +MD: net/minecraft/world/level/block/SculkSpreader$ChargeCursor/m_222345_ (Lnet/minecraft/world/level/block/SculkSpreader$ChargeCursor;)Ljava/lang/Integer; net/minecraft/world/level/block/SculkSpreader$ChargeCursor/lambda$static$3 (Lnet/minecraft/world/level/block/SculkSpreader$ChargeCursor;)Ljava/lang/Integer; +MD: net/minecraft/world/level/block/SculkSpreader$ChargeCursor/m_222347_ ()Ljava/util/Set; net/minecraft/world/level/block/SculkSpreader$ChargeCursor/getFacingData ()Ljava/util/Set; +MD: net/minecraft/world/level/block/SculkVeinBlock/ ()V net/minecraft/world/level/block/SculkVeinBlock/ ()V +MD: net/minecraft/world/level/block/SculkVeinBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V net/minecraft/world/level/block/SculkVeinBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V +MD: net/minecraft/world/level/block/SculkVeinBlock/m_213612_ ()Lnet/minecraft/world/level/block/MultifaceSpreader; net/minecraft/world/level/block/SculkVeinBlock/getSpreader ()Lnet/minecraft/world/level/block/MultifaceSpreader; +MD: net/minecraft/world/level/block/SculkVeinBlock/m_213628_ (Lnet/minecraft/world/level/block/SculkSpreader$ChargeCursor;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/block/SculkSpreader;Z)I net/minecraft/world/level/block/SculkVeinBlock/attemptUseCharge (Lnet/minecraft/world/level/block/SculkSpreader$ChargeCursor;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/block/SculkSpreader;Z)I +MD: net/minecraft/world/level/block/SculkVeinBlock/m_213805_ (Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)V net/minecraft/world/level/block/SculkVeinBlock/onDischarged (Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)V +MD: net/minecraft/world/level/block/SculkVeinBlock/m_222354_ (Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/level/block/SculkVeinBlock/hasSubstrateAccess (Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/level/block/SculkVeinBlock/m_222363_ (Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Ljava/util/Collection;)Z net/minecraft/world/level/block/SculkVeinBlock/regrow (Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Ljava/util/Collection;)Z +MD: net/minecraft/world/level/block/SculkVeinBlock/m_222375_ (Lnet/minecraft/world/level/block/SculkSpreader;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)Z net/minecraft/world/level/block/SculkVeinBlock/attemptPlaceSculk (Lnet/minecraft/world/level/block/SculkSpreader;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)Z +MD: net/minecraft/world/level/block/SculkVeinBlock/m_222395_ ()Lnet/minecraft/world/level/block/MultifaceSpreader; net/minecraft/world/level/block/SculkVeinBlock/getSameSpaceSpreader ()Lnet/minecraft/world/level/block/MultifaceSpreader; +MD: net/minecraft/world/level/block/SculkVeinBlock/m_5888_ (Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/material/FluidState; net/minecraft/world/level/block/SculkVeinBlock/getFluidState (Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/material/FluidState; +MD: net/minecraft/world/level/block/SculkVeinBlock/m_6864_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/item/context/BlockPlaceContext;)Z net/minecraft/world/level/block/SculkVeinBlock/canBeReplaced (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/item/context/BlockPlaceContext;)Z +MD: net/minecraft/world/level/block/SculkVeinBlock/m_7417_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/SculkVeinBlock/updateShape (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/SculkVeinBlock/m_7926_ (Lnet/minecraft/world/level/block/state/StateDefinition$Builder;)V net/minecraft/world/level/block/SculkVeinBlock/createBlockStateDefinition (Lnet/minecraft/world/level/block/state/StateDefinition$Builder;)V +MD: net/minecraft/world/level/block/SculkVeinBlock$SculkVeinSpreaderConfig/ (Lnet/minecraft/world/level/block/SculkVeinBlock;[Lnet/minecraft/world/level/block/MultifaceSpreader$SpreadType;)V net/minecraft/world/level/block/SculkVeinBlock$SculkVeinSpreaderConfig/ (Lnet/minecraft/world/level/block/SculkVeinBlock;[Lnet/minecraft/world/level/block/MultifaceSpreader$SpreadType;)V +MD: net/minecraft/world/level/block/SculkVeinBlock$SculkVeinSpreaderConfig/m_213938_ (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/world/level/block/SculkVeinBlock$SculkVeinSpreaderConfig/stateCanBeReplaced (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/world/level/block/SculkVeinBlock$SculkVeinSpreaderConfig/m_214107_ (Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/world/level/block/SculkVeinBlock$SculkVeinSpreaderConfig/isOtherBlockValidAsSource (Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/world/level/block/SculkVeinBlock$SculkVeinSpreaderConfig/m_214109_ ()[Lnet/minecraft/world/level/block/MultifaceSpreader$SpreadType; net/minecraft/world/level/block/SculkVeinBlock$SculkVeinSpreaderConfig/getSpreadTypes ()[Lnet/minecraft/world/level/block/MultifaceSpreader$SpreadType; +MD: net/minecraft/world/level/block/SeaPickleBlock/ ()V net/minecraft/world/level/block/SeaPickleBlock/ ()V +MD: net/minecraft/world/level/block/SeaPickleBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V net/minecraft/world/level/block/SeaPickleBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V +MD: net/minecraft/world/level/block/SeaPickleBlock/m_214148_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V net/minecraft/world/level/block/SeaPickleBlock/performBonemeal (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V +MD: net/minecraft/world/level/block/SeaPickleBlock/m_214167_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/world/level/block/SeaPickleBlock/isBonemealSuccess (Lnet/minecraft/world/level/Level;Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/world/level/block/SeaPickleBlock/m_5573_ (Lnet/minecraft/world/item/context/BlockPlaceContext;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/SeaPickleBlock/getStateForPlacement (Lnet/minecraft/world/item/context/BlockPlaceContext;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/SeaPickleBlock/m_56132_ (Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/world/level/block/SeaPickleBlock/isDead (Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/world/level/block/SeaPickleBlock/m_5888_ (Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/material/FluidState; net/minecraft/world/level/block/SeaPickleBlock/getFluidState (Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/material/FluidState; +MD: net/minecraft/world/level/block/SeaPickleBlock/m_5940_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; net/minecraft/world/level/block/SeaPickleBlock/getShape (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; +MD: net/minecraft/world/level/block/SeaPickleBlock/m_6266_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/level/block/SeaPickleBlock/mayPlaceOn (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/level/block/SeaPickleBlock/m_6864_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/item/context/BlockPlaceContext;)Z net/minecraft/world/level/block/SeaPickleBlock/canBeReplaced (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/item/context/BlockPlaceContext;)Z +MD: net/minecraft/world/level/block/SeaPickleBlock/m_7357_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/pathfinder/PathComputationType;)Z net/minecraft/world/level/block/SeaPickleBlock/isPathfindable (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/pathfinder/PathComputationType;)Z +MD: net/minecraft/world/level/block/SeaPickleBlock/m_7370_ (Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Z)Z net/minecraft/world/level/block/SeaPickleBlock/isValidBonemealTarget (Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Z)Z +MD: net/minecraft/world/level/block/SeaPickleBlock/m_7417_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/SeaPickleBlock/updateShape (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/SeaPickleBlock/m_7898_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/level/block/SeaPickleBlock/canSurvive (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/level/block/SeaPickleBlock/m_7926_ (Lnet/minecraft/world/level/block/state/StateDefinition$Builder;)V net/minecraft/world/level/block/SeaPickleBlock/createBlockStateDefinition (Lnet/minecraft/world/level/block/state/StateDefinition$Builder;)V +MD: net/minecraft/world/level/block/SeagrassBlock/ ()V net/minecraft/world/level/block/SeagrassBlock/ ()V +MD: net/minecraft/world/level/block/SeagrassBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V net/minecraft/world/level/block/SeagrassBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V +MD: net/minecraft/world/level/block/SeagrassBlock/m_214148_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V net/minecraft/world/level/block/SeagrassBlock/performBonemeal (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V +MD: net/minecraft/world/level/block/SeagrassBlock/m_214167_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/world/level/block/SeagrassBlock/isBonemealSuccess (Lnet/minecraft/world/level/Level;Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/world/level/block/SeagrassBlock/m_5573_ (Lnet/minecraft/world/item/context/BlockPlaceContext;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/SeagrassBlock/getStateForPlacement (Lnet/minecraft/world/item/context/BlockPlaceContext;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/SeagrassBlock/m_5888_ (Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/material/FluidState; net/minecraft/world/level/block/SeagrassBlock/getFluidState (Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/material/FluidState; +MD: net/minecraft/world/level/block/SeagrassBlock/m_5940_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; net/minecraft/world/level/block/SeagrassBlock/getShape (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; +MD: net/minecraft/world/level/block/SeagrassBlock/m_6044_ (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/material/Fluid;)Z net/minecraft/world/level/block/SeagrassBlock/canPlaceLiquid (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/material/Fluid;)Z +MD: net/minecraft/world/level/block/SeagrassBlock/m_6266_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/level/block/SeagrassBlock/mayPlaceOn (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/level/block/SeagrassBlock/m_7361_ (Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/material/FluidState;)Z net/minecraft/world/level/block/SeagrassBlock/placeLiquid (Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/material/FluidState;)Z +MD: net/minecraft/world/level/block/SeagrassBlock/m_7370_ (Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Z)Z net/minecraft/world/level/block/SeagrassBlock/isValidBonemealTarget (Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Z)Z +MD: net/minecraft/world/level/block/SeagrassBlock/m_7417_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/SeagrassBlock/updateShape (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/ShulkerBoxBlock/ ()V net/minecraft/world/level/block/ShulkerBoxBlock/ ()V +MD: net/minecraft/world/level/block/ShulkerBoxBlock/ (Lnet/minecraft/world/item/DyeColor;Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V net/minecraft/world/level/block/ShulkerBoxBlock/ (Lnet/minecraft/world/item/DyeColor;Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V +MD: net/minecraft/world/level/block/ShulkerBoxBlock/m_142194_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/block/entity/BlockEntity; net/minecraft/world/level/block/ShulkerBoxBlock/newBlockEntity (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/block/entity/BlockEntity; +MD: net/minecraft/world/level/block/ShulkerBoxBlock/m_142354_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/entity/BlockEntityType;)Lnet/minecraft/world/level/block/entity/BlockEntityTicker; net/minecraft/world/level/block/ShulkerBoxBlock/getTicker (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/entity/BlockEntityType;)Lnet/minecraft/world/level/block/entity/BlockEntityTicker; +MD: net/minecraft/world/level/block/ShulkerBoxBlock/m_154546_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/entity/ShulkerBoxBlockEntity;)Z net/minecraft/world/level/block/ShulkerBoxBlock/canOpen (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/entity/ShulkerBoxBlockEntity;)Z +MD: net/minecraft/world/level/block/ShulkerBoxBlock/m_187444_ (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/level/block/entity/ShulkerBoxBlockEntity;)V net/minecraft/world/level/block/ShulkerBoxBlock/lambda$getCloneItemStack$2 (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/level/block/entity/ShulkerBoxBlockEntity;)V +MD: net/minecraft/world/level/block/ShulkerBoxBlock/m_257328_ (Ljava/util/EnumMap;)V net/minecraft/world/level/block/ShulkerBoxBlock/lambda$static$0 (Ljava/util/EnumMap;)V +MD: net/minecraft/world/level/block/ShulkerBoxBlock/m_49635_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/storage/loot/LootParams$Builder;)Ljava/util/List; net/minecraft/world/level/block/ShulkerBoxBlock/getDrops (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/storage/loot/LootParams$Builder;)Ljava/util/List; +MD: net/minecraft/world/level/block/ShulkerBoxBlock/m_5573_ (Lnet/minecraft/world/item/context/BlockPlaceContext;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/ShulkerBoxBlock/getStateForPlacement (Lnet/minecraft/world/item/context/BlockPlaceContext;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/ShulkerBoxBlock/m_56190_ (Lnet/minecraft/world/item/DyeColor;)Lnet/minecraft/world/level/block/Block; net/minecraft/world/level/block/ShulkerBoxBlock/getBlockByColor (Lnet/minecraft/world/item/DyeColor;)Lnet/minecraft/world/level/block/Block; +MD: net/minecraft/world/level/block/ShulkerBoxBlock/m_56216_ (Lnet/minecraft/world/level/block/entity/ShulkerBoxBlockEntity;Ljava/util/function/Consumer;)V net/minecraft/world/level/block/ShulkerBoxBlock/lambda$getDrops$1 (Lnet/minecraft/world/level/block/entity/ShulkerBoxBlockEntity;Ljava/util/function/Consumer;)V +MD: net/minecraft/world/level/block/ShulkerBoxBlock/m_56250_ (Lnet/minecraft/world/item/DyeColor;)Lnet/minecraft/world/item/ItemStack; net/minecraft/world/level/block/ShulkerBoxBlock/getColoredItemStack (Lnet/minecraft/world/item/DyeColor;)Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/level/block/ShulkerBoxBlock/m_56252_ (Lnet/minecraft/world/item/Item;)Lnet/minecraft/world/item/DyeColor; net/minecraft/world/level/block/ShulkerBoxBlock/getColorFromItem (Lnet/minecraft/world/item/Item;)Lnet/minecraft/world/item/DyeColor; +MD: net/minecraft/world/level/block/ShulkerBoxBlock/m_56261_ ()Lnet/minecraft/world/item/DyeColor; net/minecraft/world/level/block/ShulkerBoxBlock/getColor ()Lnet/minecraft/world/item/DyeColor; +MD: net/minecraft/world/level/block/ShulkerBoxBlock/m_56262_ (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/item/DyeColor; net/minecraft/world/level/block/ShulkerBoxBlock/getColorFromBlock (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/item/DyeColor; +MD: net/minecraft/world/level/block/ShulkerBoxBlock/m_5707_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/entity/player/Player;)V net/minecraft/world/level/block/ShulkerBoxBlock/playerWillDestroy (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/entity/player/Player;)V +MD: net/minecraft/world/level/block/ShulkerBoxBlock/m_5871_ (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/level/BlockGetter;Ljava/util/List;Lnet/minecraft/world/item/TooltipFlag;)V net/minecraft/world/level/block/ShulkerBoxBlock/appendHoverText (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/level/BlockGetter;Ljava/util/List;Lnet/minecraft/world/item/TooltipFlag;)V +MD: net/minecraft/world/level/block/ShulkerBoxBlock/m_5940_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; net/minecraft/world/level/block/ShulkerBoxBlock/getShape (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; +MD: net/minecraft/world/level/block/ShulkerBoxBlock/m_6227_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;Lnet/minecraft/world/phys/BlockHitResult;)Lnet/minecraft/world/InteractionResult; net/minecraft/world/level/block/ShulkerBoxBlock/use (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;Lnet/minecraft/world/phys/BlockHitResult;)Lnet/minecraft/world/InteractionResult; +MD: net/minecraft/world/level/block/ShulkerBoxBlock/m_6402_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/item/ItemStack;)V net/minecraft/world/level/block/ShulkerBoxBlock/setPlacedBy (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/item/ItemStack;)V +MD: net/minecraft/world/level/block/ShulkerBoxBlock/m_6782_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;)I net/minecraft/world/level/block/ShulkerBoxBlock/getAnalogOutputSignal (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;)I +MD: net/minecraft/world/level/block/ShulkerBoxBlock/m_6810_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Z)V net/minecraft/world/level/block/ShulkerBoxBlock/onRemove (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Z)V +MD: net/minecraft/world/level/block/ShulkerBoxBlock/m_6843_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/Rotation;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/ShulkerBoxBlock/rotate (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/Rotation;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/ShulkerBoxBlock/m_6943_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/Mirror;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/ShulkerBoxBlock/mirror (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/Mirror;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/ShulkerBoxBlock/m_7278_ (Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/world/level/block/ShulkerBoxBlock/hasAnalogOutputSignal (Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/world/level/block/ShulkerBoxBlock/m_7397_ (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/item/ItemStack; net/minecraft/world/level/block/ShulkerBoxBlock/getCloneItemStack (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/level/block/ShulkerBoxBlock/m_7514_ (Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/block/RenderShape; net/minecraft/world/level/block/ShulkerBoxBlock/getRenderShape (Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/block/RenderShape; +MD: net/minecraft/world/level/block/ShulkerBoxBlock/m_7926_ (Lnet/minecraft/world/level/block/state/StateDefinition$Builder;)V net/minecraft/world/level/block/ShulkerBoxBlock/createBlockStateDefinition (Lnet/minecraft/world/level/block/state/StateDefinition$Builder;)V +MD: net/minecraft/world/level/block/ShulkerBoxBlock/m_7947_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/phys/shapes/VoxelShape; net/minecraft/world/level/block/ShulkerBoxBlock/getBlockSupportShape (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/phys/shapes/VoxelShape; +MD: net/minecraft/world/level/block/ShulkerBoxBlock$1/ ()V net/minecraft/world/level/block/ShulkerBoxBlock$1/ ()V +MD: net/minecraft/world/level/block/SignBlock/ ()V net/minecraft/world/level/block/SignBlock/ ()V +MD: net/minecraft/world/level/block/SignBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;Lnet/minecraft/world/level/block/state/properties/WoodType;)V net/minecraft/world/level/block/SignBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;Lnet/minecraft/world/level/block/state/properties/WoodType;)V +MD: net/minecraft/world/level/block/SignBlock/m_142194_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/block/entity/BlockEntity; net/minecraft/world/level/block/SignBlock/newBlockEntity (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/block/entity/BlockEntity; +MD: net/minecraft/world/level/block/SignBlock/m_142354_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/entity/BlockEntityType;)Lnet/minecraft/world/level/block/entity/BlockEntityTicker; net/minecraft/world/level/block/SignBlock/getTicker (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/entity/BlockEntityType;)Lnet/minecraft/world/level/block/entity/BlockEntityTicker; +MD: net/minecraft/world/level/block/SignBlock/m_247329_ (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/block/state/properties/WoodType; net/minecraft/world/level/block/SignBlock/getWoodType (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/block/state/properties/WoodType; +MD: net/minecraft/world/level/block/SignBlock/m_276903_ (Lnet/minecraft/world/level/block/state/BlockState;)F net/minecraft/world/level/block/SignBlock/getYRotationDegrees (Lnet/minecraft/world/level/block/state/BlockState;)F +MD: net/minecraft/world/level/block/SignBlock/m_276926_ (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/level/block/entity/SignBlockEntity;Z)V net/minecraft/world/level/block/SignBlock/openTextEdit (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/level/block/entity/SignBlockEntity;Z)V +MD: net/minecraft/world/level/block/SignBlock/m_277189_ (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/level/block/entity/SignBlockEntity;)Z net/minecraft/world/level/block/SignBlock/otherPlayerIsEditingSign (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/level/block/entity/SignBlockEntity;)Z +MD: net/minecraft/world/level/block/SignBlock/m_278172_ (Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/phys/Vec3; net/minecraft/world/level/block/SignBlock/getSignHitboxCenterPosition (Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/phys/Vec3; +MD: net/minecraft/world/level/block/SignBlock/m_278656_ (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/level/block/entity/SignBlockEntity;Z)Z net/minecraft/world/level/block/SignBlock/hasEditableText (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/level/block/entity/SignBlockEntity;Z)Z +MD: net/minecraft/world/level/block/SignBlock/m_278727_ (Lnet/minecraft/network/chat/Component;)Z net/minecraft/world/level/block/SignBlock/lambda$hasEditableText$0 (Lnet/minecraft/network/chat/Component;)Z +MD: net/minecraft/world/level/block/SignBlock/m_48673_ (Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/world/level/block/SignBlock/isPossibleToRespawnInThis (Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/world/level/block/SignBlock/m_56297_ ()Lnet/minecraft/world/level/block/state/properties/WoodType; net/minecraft/world/level/block/SignBlock/type ()Lnet/minecraft/world/level/block/state/properties/WoodType; +MD: net/minecraft/world/level/block/SignBlock/m_5888_ (Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/material/FluidState; net/minecraft/world/level/block/SignBlock/getFluidState (Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/material/FluidState; +MD: net/minecraft/world/level/block/SignBlock/m_5940_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; net/minecraft/world/level/block/SignBlock/getShape (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; +MD: net/minecraft/world/level/block/SignBlock/m_6227_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;Lnet/minecraft/world/phys/BlockHitResult;)Lnet/minecraft/world/InteractionResult; net/minecraft/world/level/block/SignBlock/use (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;Lnet/minecraft/world/phys/BlockHitResult;)Lnet/minecraft/world/InteractionResult; +MD: net/minecraft/world/level/block/SignBlock/m_7417_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/SignBlock/updateShape (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/SimpleWaterloggedBlock/m_142298_ ()Ljava/util/Optional; net/minecraft/world/level/block/SimpleWaterloggedBlock/getPickupSound ()Ljava/util/Optional; +MD: net/minecraft/world/level/block/SimpleWaterloggedBlock/m_142598_ (Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/item/ItemStack; net/minecraft/world/level/block/SimpleWaterloggedBlock/pickupBlock (Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/level/block/SimpleWaterloggedBlock/m_6044_ (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/material/Fluid;)Z net/minecraft/world/level/block/SimpleWaterloggedBlock/canPlaceLiquid (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/material/Fluid;)Z +MD: net/minecraft/world/level/block/SimpleWaterloggedBlock/m_7361_ (Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/material/FluidState;)Z net/minecraft/world/level/block/SimpleWaterloggedBlock/placeLiquid (Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/material/FluidState;)Z +MD: net/minecraft/world/level/block/SkullBlock/ ()V net/minecraft/world/level/block/SkullBlock/ ()V +MD: net/minecraft/world/level/block/SkullBlock/ (Lnet/minecraft/world/level/block/SkullBlock$Type;Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V net/minecraft/world/level/block/SkullBlock/ (Lnet/minecraft/world/level/block/SkullBlock$Type;Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V +MD: net/minecraft/world/level/block/SkullBlock/m_5573_ (Lnet/minecraft/world/item/context/BlockPlaceContext;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/SkullBlock/getStateForPlacement (Lnet/minecraft/world/item/context/BlockPlaceContext;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/SkullBlock/m_5940_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; net/minecraft/world/level/block/SkullBlock/getShape (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; +MD: net/minecraft/world/level/block/SkullBlock/m_6843_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/Rotation;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/SkullBlock/rotate (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/Rotation;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/SkullBlock/m_6943_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/Mirror;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/SkullBlock/mirror (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/Mirror;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/SkullBlock/m_7926_ (Lnet/minecraft/world/level/block/state/StateDefinition$Builder;)V net/minecraft/world/level/block/SkullBlock/createBlockStateDefinition (Lnet/minecraft/world/level/block/state/StateDefinition$Builder;)V +MD: net/minecraft/world/level/block/SkullBlock/m_7952_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/phys/shapes/VoxelShape; net/minecraft/world/level/block/SkullBlock/getOcclusionShape (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/phys/shapes/VoxelShape; +MD: net/minecraft/world/level/block/SkullBlock$Types/ ()V net/minecraft/world/level/block/SkullBlock$Types/ ()V +MD: net/minecraft/world/level/block/SkullBlock$Types/ (Ljava/lang/String;I)V net/minecraft/world/level/block/SkullBlock$Types/ (Ljava/lang/String;I)V +MD: net/minecraft/world/level/block/SkullBlock$Types/m_154565_ ()[Lnet/minecraft/world/level/block/SkullBlock$Types; net/minecraft/world/level/block/SkullBlock$Types/$values ()[Lnet/minecraft/world/level/block/SkullBlock$Types; +MD: net/minecraft/world/level/block/SkullBlock$Types/valueOf (Ljava/lang/String;)Lnet/minecraft/world/level/block/SkullBlock$Types; net/minecraft/world/level/block/SkullBlock$Types/valueOf (Ljava/lang/String;)Lnet/minecraft/world/level/block/SkullBlock$Types; +MD: net/minecraft/world/level/block/SkullBlock$Types/values ()[Lnet/minecraft/world/level/block/SkullBlock$Types; net/minecraft/world/level/block/SkullBlock$Types/values ()[Lnet/minecraft/world/level/block/SkullBlock$Types; +MD: net/minecraft/world/level/block/SlabBlock/ ()V net/minecraft/world/level/block/SlabBlock/ ()V +MD: net/minecraft/world/level/block/SlabBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V net/minecraft/world/level/block/SlabBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V +MD: net/minecraft/world/level/block/SlabBlock/m_5573_ (Lnet/minecraft/world/item/context/BlockPlaceContext;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/SlabBlock/getStateForPlacement (Lnet/minecraft/world/item/context/BlockPlaceContext;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/SlabBlock/m_5888_ (Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/material/FluidState; net/minecraft/world/level/block/SlabBlock/getFluidState (Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/material/FluidState; +MD: net/minecraft/world/level/block/SlabBlock/m_5940_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; net/minecraft/world/level/block/SlabBlock/getShape (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; +MD: net/minecraft/world/level/block/SlabBlock/m_6044_ (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/material/Fluid;)Z net/minecraft/world/level/block/SlabBlock/canPlaceLiquid (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/material/Fluid;)Z +MD: net/minecraft/world/level/block/SlabBlock/m_6864_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/item/context/BlockPlaceContext;)Z net/minecraft/world/level/block/SlabBlock/canBeReplaced (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/item/context/BlockPlaceContext;)Z +MD: net/minecraft/world/level/block/SlabBlock/m_7357_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/pathfinder/PathComputationType;)Z net/minecraft/world/level/block/SlabBlock/isPathfindable (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/pathfinder/PathComputationType;)Z +MD: net/minecraft/world/level/block/SlabBlock/m_7361_ (Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/material/FluidState;)Z net/minecraft/world/level/block/SlabBlock/placeLiquid (Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/material/FluidState;)Z +MD: net/minecraft/world/level/block/SlabBlock/m_7417_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/SlabBlock/updateShape (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/SlabBlock/m_7923_ (Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/world/level/block/SlabBlock/useShapeForLightOcclusion (Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/world/level/block/SlabBlock/m_7926_ (Lnet/minecraft/world/level/block/state/StateDefinition$Builder;)V net/minecraft/world/level/block/SlabBlock/createBlockStateDefinition (Lnet/minecraft/world/level/block/state/StateDefinition$Builder;)V +MD: net/minecraft/world/level/block/SlabBlock$1/ ()V net/minecraft/world/level/block/SlabBlock$1/ ()V +MD: net/minecraft/world/level/block/SlimeBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V net/minecraft/world/level/block/SlimeBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V +MD: net/minecraft/world/level/block/SlimeBlock/m_141947_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/entity/Entity;)V net/minecraft/world/level/block/SlimeBlock/stepOn (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/entity/Entity;)V +MD: net/minecraft/world/level/block/SlimeBlock/m_142072_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/Entity;F)V net/minecraft/world/level/block/SlimeBlock/fallOn (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/Entity;F)V +MD: net/minecraft/world/level/block/SlimeBlock/m_5548_ (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/world/entity/Entity;)V net/minecraft/world/level/block/SlimeBlock/updateEntityAfterFallOn (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/world/entity/Entity;)V +MD: net/minecraft/world/level/block/SlimeBlock/m_56403_ (Lnet/minecraft/world/entity/Entity;)V net/minecraft/world/level/block/SlimeBlock/bounceUp (Lnet/minecraft/world/entity/Entity;)V +MD: net/minecraft/world/level/block/SmallDripleafBlock/ ()V net/minecraft/world/level/block/SmallDripleafBlock/ ()V +MD: net/minecraft/world/level/block/SmallDripleafBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V net/minecraft/world/level/block/SmallDripleafBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V +MD: net/minecraft/world/level/block/SmallDripleafBlock/m_142627_ ()F net/minecraft/world/level/block/SmallDripleafBlock/getMaxVerticalOffset ()F +MD: net/minecraft/world/level/block/SmallDripleafBlock/m_214148_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V net/minecraft/world/level/block/SmallDripleafBlock/performBonemeal (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V +MD: net/minecraft/world/level/block/SmallDripleafBlock/m_214167_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/world/level/block/SmallDripleafBlock/isBonemealSuccess (Lnet/minecraft/world/level/Level;Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/world/level/block/SmallDripleafBlock/m_5573_ (Lnet/minecraft/world/item/context/BlockPlaceContext;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/SmallDripleafBlock/getStateForPlacement (Lnet/minecraft/world/item/context/BlockPlaceContext;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/SmallDripleafBlock/m_5888_ (Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/material/FluidState; net/minecraft/world/level/block/SmallDripleafBlock/getFluidState (Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/material/FluidState; +MD: net/minecraft/world/level/block/SmallDripleafBlock/m_5940_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; net/minecraft/world/level/block/SmallDripleafBlock/getShape (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; +MD: net/minecraft/world/level/block/SmallDripleafBlock/m_6266_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/level/block/SmallDripleafBlock/mayPlaceOn (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/level/block/SmallDripleafBlock/m_6402_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/item/ItemStack;)V net/minecraft/world/level/block/SmallDripleafBlock/setPlacedBy (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/item/ItemStack;)V +MD: net/minecraft/world/level/block/SmallDripleafBlock/m_6843_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/Rotation;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/SmallDripleafBlock/rotate (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/Rotation;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/SmallDripleafBlock/m_6943_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/Mirror;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/SmallDripleafBlock/mirror (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/Mirror;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/SmallDripleafBlock/m_7370_ (Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Z)Z net/minecraft/world/level/block/SmallDripleafBlock/isValidBonemealTarget (Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Z)Z +MD: net/minecraft/world/level/block/SmallDripleafBlock/m_7417_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/SmallDripleafBlock/updateShape (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/SmallDripleafBlock/m_7898_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/level/block/SmallDripleafBlock/canSurvive (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/level/block/SmallDripleafBlock/m_7926_ (Lnet/minecraft/world/level/block/state/StateDefinition$Builder;)V net/minecraft/world/level/block/SmallDripleafBlock/createBlockStateDefinition (Lnet/minecraft/world/level/block/state/StateDefinition$Builder;)V +MD: net/minecraft/world/level/block/SmithingTableBlock/ ()V net/minecraft/world/level/block/SmithingTableBlock/ ()V +MD: net/minecraft/world/level/block/SmithingTableBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V net/minecraft/world/level/block/SmithingTableBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V +MD: net/minecraft/world/level/block/SmithingTableBlock/m_276750_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;ILnet/minecraft/world/entity/player/Inventory;Lnet/minecraft/world/entity/player/Player;)Lnet/minecraft/world/inventory/AbstractContainerMenu; net/minecraft/world/level/block/SmithingTableBlock/lambda$getMenuProvider$0 (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;ILnet/minecraft/world/entity/player/Inventory;Lnet/minecraft/world/entity/player/Player;)Lnet/minecraft/world/inventory/AbstractContainerMenu; +MD: net/minecraft/world/level/block/SmithingTableBlock/m_6227_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;Lnet/minecraft/world/phys/BlockHitResult;)Lnet/minecraft/world/InteractionResult; net/minecraft/world/level/block/SmithingTableBlock/use (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;Lnet/minecraft/world/phys/BlockHitResult;)Lnet/minecraft/world/InteractionResult; +MD: net/minecraft/world/level/block/SmithingTableBlock/m_7246_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/MenuProvider; net/minecraft/world/level/block/SmithingTableBlock/getMenuProvider (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/MenuProvider; +MD: net/minecraft/world/level/block/SmokerBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V net/minecraft/world/level/block/SmokerBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V +MD: net/minecraft/world/level/block/SmokerBlock/m_142194_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/block/entity/BlockEntity; net/minecraft/world/level/block/SmokerBlock/newBlockEntity (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/block/entity/BlockEntity; +MD: net/minecraft/world/level/block/SmokerBlock/m_142354_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/entity/BlockEntityType;)Lnet/minecraft/world/level/block/entity/BlockEntityTicker; net/minecraft/world/level/block/SmokerBlock/getTicker (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/entity/BlockEntityType;)Lnet/minecraft/world/level/block/entity/BlockEntityTicker; +MD: net/minecraft/world/level/block/SmokerBlock/m_214162_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)V net/minecraft/world/level/block/SmokerBlock/animateTick (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)V +MD: net/minecraft/world/level/block/SmokerBlock/m_7137_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/player/Player;)V net/minecraft/world/level/block/SmokerBlock/openContainer (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/player/Player;)V +MD: net/minecraft/world/level/block/SnifferEggBlock/ ()V net/minecraft/world/level/block/SnifferEggBlock/ ()V +MD: net/minecraft/world/level/block/SnifferEggBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V net/minecraft/world/level/block/SnifferEggBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V +MD: net/minecraft/world/level/block/SnifferEggBlock/m_213897_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)V net/minecraft/world/level/block/SnifferEggBlock/tick (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)V +MD: net/minecraft/world/level/block/SnifferEggBlock/m_276851_ (Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/world/level/block/SnifferEggBlock/isReadyToHatch (Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/world/level/block/SnifferEggBlock/m_277163_ (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/level/block/SnifferEggBlock/hatchBoost (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/level/block/SnifferEggBlock/m_278758_ (Lnet/minecraft/world/level/block/state/BlockState;)I net/minecraft/world/level/block/SnifferEggBlock/getHatchLevel (Lnet/minecraft/world/level/block/state/BlockState;)I +MD: net/minecraft/world/level/block/SnifferEggBlock/m_5940_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; net/minecraft/world/level/block/SnifferEggBlock/getShape (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; +MD: net/minecraft/world/level/block/SnifferEggBlock/m_6807_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Z)V net/minecraft/world/level/block/SnifferEggBlock/onPlace (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Z)V +MD: net/minecraft/world/level/block/SnifferEggBlock/m_7357_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/pathfinder/PathComputationType;)Z net/minecraft/world/level/block/SnifferEggBlock/isPathfindable (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/pathfinder/PathComputationType;)Z +MD: net/minecraft/world/level/block/SnifferEggBlock/m_7926_ (Lnet/minecraft/world/level/block/state/StateDefinition$Builder;)V net/minecraft/world/level/block/SnifferEggBlock/createBlockStateDefinition (Lnet/minecraft/world/level/block/state/StateDefinition$Builder;)V +MD: net/minecraft/world/level/block/SnowLayerBlock/ ()V net/minecraft/world/level/block/SnowLayerBlock/ ()V +MD: net/minecraft/world/level/block/SnowLayerBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V net/minecraft/world/level/block/SnowLayerBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V +MD: net/minecraft/world/level/block/SnowLayerBlock/m_213898_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)V net/minecraft/world/level/block/SnowLayerBlock/randomTick (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)V +MD: net/minecraft/world/level/block/SnowLayerBlock/m_5573_ (Lnet/minecraft/world/item/context/BlockPlaceContext;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/SnowLayerBlock/getStateForPlacement (Lnet/minecraft/world/item/context/BlockPlaceContext;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/SnowLayerBlock/m_5909_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; net/minecraft/world/level/block/SnowLayerBlock/getVisualShape (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; +MD: net/minecraft/world/level/block/SnowLayerBlock/m_5939_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; net/minecraft/world/level/block/SnowLayerBlock/getCollisionShape (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; +MD: net/minecraft/world/level/block/SnowLayerBlock/m_5940_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; net/minecraft/world/level/block/SnowLayerBlock/getShape (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; +MD: net/minecraft/world/level/block/SnowLayerBlock/m_6864_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/item/context/BlockPlaceContext;)Z net/minecraft/world/level/block/SnowLayerBlock/canBeReplaced (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/item/context/BlockPlaceContext;)Z +MD: net/minecraft/world/level/block/SnowLayerBlock/m_7357_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/pathfinder/PathComputationType;)Z net/minecraft/world/level/block/SnowLayerBlock/isPathfindable (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/pathfinder/PathComputationType;)Z +MD: net/minecraft/world/level/block/SnowLayerBlock/m_7417_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/SnowLayerBlock/updateShape (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/SnowLayerBlock/m_7749_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)F net/minecraft/world/level/block/SnowLayerBlock/getShadeBrightness (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)F +MD: net/minecraft/world/level/block/SnowLayerBlock/m_7898_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/level/block/SnowLayerBlock/canSurvive (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/level/block/SnowLayerBlock/m_7923_ (Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/world/level/block/SnowLayerBlock/useShapeForLightOcclusion (Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/world/level/block/SnowLayerBlock/m_7926_ (Lnet/minecraft/world/level/block/state/StateDefinition$Builder;)V net/minecraft/world/level/block/SnowLayerBlock/createBlockStateDefinition (Lnet/minecraft/world/level/block/state/StateDefinition$Builder;)V +MD: net/minecraft/world/level/block/SnowLayerBlock/m_7947_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/phys/shapes/VoxelShape; net/minecraft/world/level/block/SnowLayerBlock/getBlockSupportShape (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/phys/shapes/VoxelShape; +MD: net/minecraft/world/level/block/SnowLayerBlock$1/ ()V net/minecraft/world/level/block/SnowLayerBlock$1/ ()V +MD: net/minecraft/world/level/block/SnowyDirtBlock/ ()V net/minecraft/world/level/block/SnowyDirtBlock/ ()V +MD: net/minecraft/world/level/block/SnowyDirtBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V net/minecraft/world/level/block/SnowyDirtBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V +MD: net/minecraft/world/level/block/SnowyDirtBlock/m_154648_ (Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/world/level/block/SnowyDirtBlock/isSnowySetting (Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/world/level/block/SnowyDirtBlock/m_5573_ (Lnet/minecraft/world/item/context/BlockPlaceContext;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/SnowyDirtBlock/getStateForPlacement (Lnet/minecraft/world/item/context/BlockPlaceContext;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/SnowyDirtBlock/m_7417_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/SnowyDirtBlock/updateShape (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/SnowyDirtBlock/m_7926_ (Lnet/minecraft/world/level/block/state/StateDefinition$Builder;)V net/minecraft/world/level/block/SnowyDirtBlock/createBlockStateDefinition (Lnet/minecraft/world/level/block/state/StateDefinition$Builder;)V +MD: net/minecraft/world/level/block/SoulFireBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V net/minecraft/world/level/block/SoulFireBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V +MD: net/minecraft/world/level/block/SoulFireBlock/m_154650_ (Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/world/level/block/SoulFireBlock/canSurviveOnBlock (Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/world/level/block/SoulFireBlock/m_7417_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/SoulFireBlock/updateShape (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/SoulFireBlock/m_7599_ (Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/world/level/block/SoulFireBlock/canBurn (Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/world/level/block/SoulFireBlock/m_7898_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/level/block/SoulFireBlock/canSurvive (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/level/block/SoulSandBlock/ ()V net/minecraft/world/level/block/SoulSandBlock/ ()V +MD: net/minecraft/world/level/block/SoulSandBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V net/minecraft/world/level/block/SoulSandBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V +MD: net/minecraft/world/level/block/SoulSandBlock/m_213897_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)V net/minecraft/world/level/block/SoulSandBlock/tick (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)V +MD: net/minecraft/world/level/block/SoulSandBlock/m_5909_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; net/minecraft/world/level/block/SoulSandBlock/getVisualShape (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; +MD: net/minecraft/world/level/block/SoulSandBlock/m_5939_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; net/minecraft/world/level/block/SoulSandBlock/getCollisionShape (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; +MD: net/minecraft/world/level/block/SoulSandBlock/m_6807_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Z)V net/minecraft/world/level/block/SoulSandBlock/onPlace (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Z)V +MD: net/minecraft/world/level/block/SoulSandBlock/m_7357_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/pathfinder/PathComputationType;)Z net/minecraft/world/level/block/SoulSandBlock/isPathfindable (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/pathfinder/PathComputationType;)Z +MD: net/minecraft/world/level/block/SoulSandBlock/m_7417_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/SoulSandBlock/updateShape (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/SoulSandBlock/m_7749_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)F net/minecraft/world/level/block/SoulSandBlock/getShadeBrightness (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)F +MD: net/minecraft/world/level/block/SoulSandBlock/m_7947_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/phys/shapes/VoxelShape; net/minecraft/world/level/block/SoulSandBlock/getBlockSupportShape (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/phys/shapes/VoxelShape; +MD: net/minecraft/world/level/block/SoundType/ ()V net/minecraft/world/level/block/SoundType/ ()V +MD: net/minecraft/world/level/block/SoundType/ (FFLnet/minecraft/sounds/SoundEvent;Lnet/minecraft/sounds/SoundEvent;Lnet/minecraft/sounds/SoundEvent;Lnet/minecraft/sounds/SoundEvent;Lnet/minecraft/sounds/SoundEvent;)V net/minecraft/world/level/block/SoundType/ (FFLnet/minecraft/sounds/SoundEvent;Lnet/minecraft/sounds/SoundEvent;Lnet/minecraft/sounds/SoundEvent;Lnet/minecraft/sounds/SoundEvent;Lnet/minecraft/sounds/SoundEvent;)V +MD: net/minecraft/world/level/block/SoundType/m_56773_ ()F net/minecraft/world/level/block/SoundType/getVolume ()F +MD: net/minecraft/world/level/block/SoundType/m_56774_ ()F net/minecraft/world/level/block/SoundType/getPitch ()F +MD: net/minecraft/world/level/block/SoundType/m_56775_ ()Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/level/block/SoundType/getBreakSound ()Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/level/block/SoundType/m_56776_ ()Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/level/block/SoundType/getStepSound ()Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/level/block/SoundType/m_56777_ ()Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/level/block/SoundType/getPlaceSound ()Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/level/block/SoundType/m_56778_ ()Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/level/block/SoundType/getHitSound ()Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/level/block/SoundType/m_56779_ ()Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/level/block/SoundType/getFallSound ()Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/level/block/SpawnerBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V net/minecraft/world/level/block/SpawnerBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V +MD: net/minecraft/world/level/block/SpawnerBlock/m_142194_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/block/entity/BlockEntity; net/minecraft/world/level/block/SpawnerBlock/newBlockEntity (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/block/entity/BlockEntity; +MD: net/minecraft/world/level/block/SpawnerBlock/m_142354_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/entity/BlockEntityType;)Lnet/minecraft/world/level/block/entity/BlockEntityTicker; net/minecraft/world/level/block/SpawnerBlock/getTicker (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/entity/BlockEntityType;)Lnet/minecraft/world/level/block/entity/BlockEntityTicker; +MD: net/minecraft/world/level/block/SpawnerBlock/m_213646_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/item/ItemStack;Z)V net/minecraft/world/level/block/SpawnerBlock/spawnAfterBreak (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/item/ItemStack;Z)V +MD: net/minecraft/world/level/block/SpawnerBlock/m_254931_ (Lnet/minecraft/world/item/ItemStack;)Ljava/util/Optional; net/minecraft/world/level/block/SpawnerBlock/getSpawnEntityDisplayName (Lnet/minecraft/world/item/ItemStack;)Ljava/util/Optional; +MD: net/minecraft/world/level/block/SpawnerBlock/m_255429_ (Lnet/minecraft/world/entity/EntityType;)Lnet/minecraft/network/chat/Component; net/minecraft/world/level/block/SpawnerBlock/lambda$getSpawnEntityDisplayName$0 (Lnet/minecraft/world/entity/EntityType;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/world/level/block/SpawnerBlock/m_5871_ (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/level/BlockGetter;Ljava/util/List;Lnet/minecraft/world/item/TooltipFlag;)V net/minecraft/world/level/block/SpawnerBlock/appendHoverText (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/level/BlockGetter;Ljava/util/List;Lnet/minecraft/world/item/TooltipFlag;)V +MD: net/minecraft/world/level/block/SpawnerBlock/m_7514_ (Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/block/RenderShape; net/minecraft/world/level/block/SpawnerBlock/getRenderShape (Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/block/RenderShape; +MD: net/minecraft/world/level/block/SpongeBlock/ ()V net/minecraft/world/level/block/SpongeBlock/ ()V +MD: net/minecraft/world/level/block/SpongeBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V net/minecraft/world/level/block/SpongeBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V +MD: net/minecraft/world/level/block/SpongeBlock/m_277124_ (Lnet/minecraft/core/BlockPos;Ljava/util/function/Consumer;)V net/minecraft/world/level/block/SpongeBlock/lambda$removeWaterBreadthFirstSearch$0 (Lnet/minecraft/core/BlockPos;Ljava/util/function/Consumer;)V +MD: net/minecraft/world/level/block/SpongeBlock/m_278593_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/level/block/SpongeBlock/lambda$removeWaterBreadthFirstSearch$1 (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/level/block/SpongeBlock/m_56797_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;)V net/minecraft/world/level/block/SpongeBlock/tryAbsorbWater (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/world/level/block/SpongeBlock/m_56807_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/level/block/SpongeBlock/removeWaterBreadthFirstSearch (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/level/block/SpongeBlock/m_6807_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Z)V net/minecraft/world/level/block/SpongeBlock/onPlace (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Z)V +MD: net/minecraft/world/level/block/SpongeBlock/m_6861_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/Block;Lnet/minecraft/core/BlockPos;Z)V net/minecraft/world/level/block/SpongeBlock/neighborChanged (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/Block;Lnet/minecraft/core/BlockPos;Z)V +MD: net/minecraft/world/level/block/SporeBlossomBlock/ ()V net/minecraft/world/level/block/SporeBlossomBlock/ ()V +MD: net/minecraft/world/level/block/SporeBlossomBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V net/minecraft/world/level/block/SporeBlossomBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V +MD: net/minecraft/world/level/block/SporeBlossomBlock/m_214162_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)V net/minecraft/world/level/block/SporeBlossomBlock/animateTick (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)V +MD: net/minecraft/world/level/block/SporeBlossomBlock/m_5940_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; net/minecraft/world/level/block/SporeBlossomBlock/getShape (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; +MD: net/minecraft/world/level/block/SporeBlossomBlock/m_7417_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/SporeBlossomBlock/updateShape (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/SporeBlossomBlock/m_7898_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/level/block/SporeBlossomBlock/canSurvive (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/level/block/SpreadingSnowyDirtBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V net/minecraft/world/level/block/SpreadingSnowyDirtBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V +MD: net/minecraft/world/level/block/SpreadingSnowyDirtBlock/m_213898_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)V net/minecraft/world/level/block/SpreadingSnowyDirtBlock/randomTick (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)V +MD: net/minecraft/world/level/block/SpreadingSnowyDirtBlock/m_56823_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/level/block/SpreadingSnowyDirtBlock/canBeGrass (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/level/block/SpreadingSnowyDirtBlock/m_56827_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/level/block/SpreadingSnowyDirtBlock/canPropagate (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/level/block/StainedGlassBlock/ (Lnet/minecraft/world/item/DyeColor;Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V net/minecraft/world/level/block/StainedGlassBlock/ (Lnet/minecraft/world/item/DyeColor;Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V +MD: net/minecraft/world/level/block/StainedGlassBlock/m_7988_ ()Lnet/minecraft/world/item/DyeColor; net/minecraft/world/level/block/StainedGlassBlock/getColor ()Lnet/minecraft/world/item/DyeColor; +MD: net/minecraft/world/level/block/StainedGlassPaneBlock/ (Lnet/minecraft/world/item/DyeColor;Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V net/minecraft/world/level/block/StainedGlassPaneBlock/ (Lnet/minecraft/world/item/DyeColor;Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V +MD: net/minecraft/world/level/block/StainedGlassPaneBlock/m_7988_ ()Lnet/minecraft/world/item/DyeColor; net/minecraft/world/level/block/StainedGlassPaneBlock/getColor ()Lnet/minecraft/world/item/DyeColor; +MD: net/minecraft/world/level/block/StairBlock/ ()V net/minecraft/world/level/block/StairBlock/ ()V +MD: net/minecraft/world/level/block/StairBlock/ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V net/minecraft/world/level/block/StairBlock/ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V +MD: net/minecraft/world/level/block/StairBlock/m_141947_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/entity/Entity;)V net/minecraft/world/level/block/StairBlock/stepOn (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/entity/Entity;)V +MD: net/minecraft/world/level/block/StairBlock/m_213897_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)V net/minecraft/world/level/block/StairBlock/tick (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)V +MD: net/minecraft/world/level/block/StairBlock/m_213898_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)V net/minecraft/world/level/block/StairBlock/randomTick (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)V +MD: net/minecraft/world/level/block/StairBlock/m_214162_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)V net/minecraft/world/level/block/StairBlock/animateTick (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)V +MD: net/minecraft/world/level/block/StairBlock/m_5573_ (Lnet/minecraft/world/item/context/BlockPlaceContext;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/StairBlock/getStateForPlacement (Lnet/minecraft/world/item/context/BlockPlaceContext;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/StairBlock/m_56864_ (ILnet/minecraft/world/phys/shapes/VoxelShape;Lnet/minecraft/world/phys/shapes/VoxelShape;Lnet/minecraft/world/phys/shapes/VoxelShape;Lnet/minecraft/world/phys/shapes/VoxelShape;Lnet/minecraft/world/phys/shapes/VoxelShape;)Lnet/minecraft/world/phys/shapes/VoxelShape; net/minecraft/world/level/block/StairBlock/makeStairShape (ILnet/minecraft/world/phys/shapes/VoxelShape;Lnet/minecraft/world/phys/shapes/VoxelShape;Lnet/minecraft/world/phys/shapes/VoxelShape;Lnet/minecraft/world/phys/shapes/VoxelShape;Lnet/minecraft/world/phys/shapes/VoxelShape;)Lnet/minecraft/world/phys/shapes/VoxelShape; +MD: net/minecraft/world/level/block/StairBlock/m_56933_ (Lnet/minecraft/world/phys/shapes/VoxelShape;Lnet/minecraft/world/phys/shapes/VoxelShape;Lnet/minecraft/world/phys/shapes/VoxelShape;Lnet/minecraft/world/phys/shapes/VoxelShape;Lnet/minecraft/world/phys/shapes/VoxelShape;)[Lnet/minecraft/world/phys/shapes/VoxelShape; net/minecraft/world/level/block/StairBlock/makeShapes (Lnet/minecraft/world/phys/shapes/VoxelShape;Lnet/minecraft/world/phys/shapes/VoxelShape;Lnet/minecraft/world/phys/shapes/VoxelShape;Lnet/minecraft/world/phys/shapes/VoxelShape;Lnet/minecraft/world/phys/shapes/VoxelShape;)[Lnet/minecraft/world/phys/shapes/VoxelShape; +MD: net/minecraft/world/level/block/StairBlock/m_56939_ (Lnet/minecraft/world/phys/shapes/VoxelShape;Lnet/minecraft/world/phys/shapes/VoxelShape;Lnet/minecraft/world/phys/shapes/VoxelShape;Lnet/minecraft/world/phys/shapes/VoxelShape;Lnet/minecraft/world/phys/shapes/VoxelShape;I)Lnet/minecraft/world/phys/shapes/VoxelShape; net/minecraft/world/level/block/StairBlock/lambda$makeShapes$0 (Lnet/minecraft/world/phys/shapes/VoxelShape;Lnet/minecraft/world/phys/shapes/VoxelShape;Lnet/minecraft/world/phys/shapes/VoxelShape;Lnet/minecraft/world/phys/shapes/VoxelShape;Lnet/minecraft/world/phys/shapes/VoxelShape;I)Lnet/minecraft/world/phys/shapes/VoxelShape; +MD: net/minecraft/world/level/block/StairBlock/m_56948_ (I)[Lnet/minecraft/world/phys/shapes/VoxelShape; net/minecraft/world/level/block/StairBlock/lambda$makeShapes$1 (I)[Lnet/minecraft/world/phys/shapes/VoxelShape; +MD: net/minecraft/world/level/block/StairBlock/m_56970_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Direction;)Z net/minecraft/world/level/block/StairBlock/canTakeShape (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Direction;)Z +MD: net/minecraft/world/level/block/StairBlock/m_56976_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/state/properties/StairsShape; net/minecraft/world/level/block/StairBlock/getStairsShape (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/state/properties/StairsShape; +MD: net/minecraft/world/level/block/StairBlock/m_56980_ (Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/world/level/block/StairBlock/isStairs (Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/world/level/block/StairBlock/m_56982_ (Lnet/minecraft/world/level/block/state/BlockState;)I net/minecraft/world/level/block/StairBlock/getShapeIndex (Lnet/minecraft/world/level/block/state/BlockState;)I +MD: net/minecraft/world/level/block/StairBlock/m_5888_ (Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/material/FluidState; net/minecraft/world/level/block/StairBlock/getFluidState (Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/material/FluidState; +MD: net/minecraft/world/level/block/StairBlock/m_5940_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; net/minecraft/world/level/block/StairBlock/getShape (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; +MD: net/minecraft/world/level/block/StairBlock/m_6227_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;Lnet/minecraft/world/phys/BlockHitResult;)Lnet/minecraft/world/InteractionResult; net/minecraft/world/level/block/StairBlock/use (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;Lnet/minecraft/world/phys/BlockHitResult;)Lnet/minecraft/world/InteractionResult; +MD: net/minecraft/world/level/block/StairBlock/m_6256_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/player/Player;)V net/minecraft/world/level/block/StairBlock/attack (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/player/Player;)V +MD: net/minecraft/world/level/block/StairBlock/m_6724_ (Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/world/level/block/StairBlock/isRandomlyTicking (Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/world/level/block/StairBlock/m_6786_ (Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V net/minecraft/world/level/block/StairBlock/destroy (Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V +MD: net/minecraft/world/level/block/StairBlock/m_6807_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Z)V net/minecraft/world/level/block/StairBlock/onPlace (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Z)V +MD: net/minecraft/world/level/block/StairBlock/m_6810_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Z)V net/minecraft/world/level/block/StairBlock/onRemove (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Z)V +MD: net/minecraft/world/level/block/StairBlock/m_6843_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/Rotation;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/StairBlock/rotate (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/Rotation;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/StairBlock/m_6943_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/Mirror;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/StairBlock/mirror (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/Mirror;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/StairBlock/m_7325_ ()F net/minecraft/world/level/block/StairBlock/getExplosionResistance ()F +MD: net/minecraft/world/level/block/StairBlock/m_7357_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/pathfinder/PathComputationType;)Z net/minecraft/world/level/block/StairBlock/isPathfindable (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/pathfinder/PathComputationType;)Z +MD: net/minecraft/world/level/block/StairBlock/m_7417_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/StairBlock/updateShape (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/StairBlock/m_7592_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/Explosion;)V net/minecraft/world/level/block/StairBlock/wasExploded (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/Explosion;)V +MD: net/minecraft/world/level/block/StairBlock/m_7923_ (Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/world/level/block/StairBlock/useShapeForLightOcclusion (Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/world/level/block/StairBlock/m_7926_ (Lnet/minecraft/world/level/block/state/StateDefinition$Builder;)V net/minecraft/world/level/block/StairBlock/createBlockStateDefinition (Lnet/minecraft/world/level/block/state/StateDefinition$Builder;)V +MD: net/minecraft/world/level/block/StairBlock$1/ ()V net/minecraft/world/level/block/StairBlock$1/ ()V +MD: net/minecraft/world/level/block/StandingSignBlock/ ()V net/minecraft/world/level/block/StandingSignBlock/ ()V +MD: net/minecraft/world/level/block/StandingSignBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;Lnet/minecraft/world/level/block/state/properties/WoodType;)V net/minecraft/world/level/block/StandingSignBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;Lnet/minecraft/world/level/block/state/properties/WoodType;)V +MD: net/minecraft/world/level/block/StandingSignBlock/m_276903_ (Lnet/minecraft/world/level/block/state/BlockState;)F net/minecraft/world/level/block/StandingSignBlock/getYRotationDegrees (Lnet/minecraft/world/level/block/state/BlockState;)F +MD: net/minecraft/world/level/block/StandingSignBlock/m_5573_ (Lnet/minecraft/world/item/context/BlockPlaceContext;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/StandingSignBlock/getStateForPlacement (Lnet/minecraft/world/item/context/BlockPlaceContext;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/StandingSignBlock/m_6843_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/Rotation;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/StandingSignBlock/rotate (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/Rotation;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/StandingSignBlock/m_6943_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/Mirror;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/StandingSignBlock/mirror (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/Mirror;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/StandingSignBlock/m_7417_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/StandingSignBlock/updateShape (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/StandingSignBlock/m_7898_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/level/block/StandingSignBlock/canSurvive (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/level/block/StandingSignBlock/m_7926_ (Lnet/minecraft/world/level/block/state/StateDefinition$Builder;)V net/minecraft/world/level/block/StandingSignBlock/createBlockStateDefinition (Lnet/minecraft/world/level/block/state/StateDefinition$Builder;)V +MD: net/minecraft/world/level/block/StemBlock/ ()V net/minecraft/world/level/block/StemBlock/ ()V +MD: net/minecraft/world/level/block/StemBlock/ (Lnet/minecraft/world/level/block/StemGrownBlock;Ljava/util/function/Supplier;Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V net/minecraft/world/level/block/StemBlock/ (Lnet/minecraft/world/level/block/StemGrownBlock;Ljava/util/function/Supplier;Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V +MD: net/minecraft/world/level/block/StemBlock/m_213898_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)V net/minecraft/world/level/block/StemBlock/randomTick (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)V +MD: net/minecraft/world/level/block/StemBlock/m_214148_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V net/minecraft/world/level/block/StemBlock/performBonemeal (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V +MD: net/minecraft/world/level/block/StemBlock/m_214167_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/world/level/block/StemBlock/isBonemealSuccess (Lnet/minecraft/world/level/Level;Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/world/level/block/StemBlock/m_57056_ ()Lnet/minecraft/world/level/block/StemGrownBlock; net/minecraft/world/level/block/StemBlock/getFruit ()Lnet/minecraft/world/level/block/StemGrownBlock; +MD: net/minecraft/world/level/block/StemBlock/m_5940_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; net/minecraft/world/level/block/StemBlock/getShape (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; +MD: net/minecraft/world/level/block/StemBlock/m_6266_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/level/block/StemBlock/mayPlaceOn (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/level/block/StemBlock/m_7370_ (Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Z)Z net/minecraft/world/level/block/StemBlock/isValidBonemealTarget (Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Z)Z +MD: net/minecraft/world/level/block/StemBlock/m_7397_ (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/item/ItemStack; net/minecraft/world/level/block/StemBlock/getCloneItemStack (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/level/block/StemBlock/m_7926_ (Lnet/minecraft/world/level/block/state/StateDefinition$Builder;)V net/minecraft/world/level/block/StemBlock/createBlockStateDefinition (Lnet/minecraft/world/level/block/state/StateDefinition$Builder;)V +MD: net/minecraft/world/level/block/StemGrownBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V net/minecraft/world/level/block/StemGrownBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V +MD: net/minecraft/world/level/block/StemGrownBlock/m_7161_ ()Lnet/minecraft/world/level/block/StemBlock; net/minecraft/world/level/block/StemGrownBlock/getStem ()Lnet/minecraft/world/level/block/StemBlock; +MD: net/minecraft/world/level/block/StemGrownBlock/m_7810_ ()Lnet/minecraft/world/level/block/AttachedStemBlock; net/minecraft/world/level/block/StemGrownBlock/getAttachedStem ()Lnet/minecraft/world/level/block/AttachedStemBlock; +MD: net/minecraft/world/level/block/StonecutterBlock/ ()V net/minecraft/world/level/block/StonecutterBlock/ ()V +MD: net/minecraft/world/level/block/StonecutterBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V net/minecraft/world/level/block/StonecutterBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V +MD: net/minecraft/world/level/block/StonecutterBlock/m_5573_ (Lnet/minecraft/world/item/context/BlockPlaceContext;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/StonecutterBlock/getStateForPlacement (Lnet/minecraft/world/item/context/BlockPlaceContext;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/StonecutterBlock/m_57071_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;ILnet/minecraft/world/entity/player/Inventory;Lnet/minecraft/world/entity/player/Player;)Lnet/minecraft/world/inventory/AbstractContainerMenu; net/minecraft/world/level/block/StonecutterBlock/lambda$getMenuProvider$0 (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;ILnet/minecraft/world/entity/player/Inventory;Lnet/minecraft/world/entity/player/Player;)Lnet/minecraft/world/inventory/AbstractContainerMenu; +MD: net/minecraft/world/level/block/StonecutterBlock/m_5940_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; net/minecraft/world/level/block/StonecutterBlock/getShape (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; +MD: net/minecraft/world/level/block/StonecutterBlock/m_6227_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;Lnet/minecraft/world/phys/BlockHitResult;)Lnet/minecraft/world/InteractionResult; net/minecraft/world/level/block/StonecutterBlock/use (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;Lnet/minecraft/world/phys/BlockHitResult;)Lnet/minecraft/world/InteractionResult; +MD: net/minecraft/world/level/block/StonecutterBlock/m_6843_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/Rotation;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/StonecutterBlock/rotate (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/Rotation;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/StonecutterBlock/m_6943_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/Mirror;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/StonecutterBlock/mirror (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/Mirror;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/StonecutterBlock/m_7246_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/MenuProvider; net/minecraft/world/level/block/StonecutterBlock/getMenuProvider (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/MenuProvider; +MD: net/minecraft/world/level/block/StonecutterBlock/m_7357_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/pathfinder/PathComputationType;)Z net/minecraft/world/level/block/StonecutterBlock/isPathfindable (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/pathfinder/PathComputationType;)Z +MD: net/minecraft/world/level/block/StonecutterBlock/m_7514_ (Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/block/RenderShape; net/minecraft/world/level/block/StonecutterBlock/getRenderShape (Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/block/RenderShape; +MD: net/minecraft/world/level/block/StonecutterBlock/m_7923_ (Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/world/level/block/StonecutterBlock/useShapeForLightOcclusion (Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/world/level/block/StonecutterBlock/m_7926_ (Lnet/minecraft/world/level/block/state/StateDefinition$Builder;)V net/minecraft/world/level/block/StonecutterBlock/createBlockStateDefinition (Lnet/minecraft/world/level/block/state/StateDefinition$Builder;)V +MD: net/minecraft/world/level/block/StructureBlock/ ()V net/minecraft/world/level/block/StructureBlock/ ()V +MD: net/minecraft/world/level/block/StructureBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V net/minecraft/world/level/block/StructureBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V +MD: net/minecraft/world/level/block/StructureBlock/m_142194_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/block/entity/BlockEntity; net/minecraft/world/level/block/StructureBlock/newBlockEntity (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/block/entity/BlockEntity; +MD: net/minecraft/world/level/block/StructureBlock/m_57114_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/level/block/entity/StructureBlockEntity;)V net/minecraft/world/level/block/StructureBlock/trigger (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/level/block/entity/StructureBlockEntity;)V +MD: net/minecraft/world/level/block/StructureBlock/m_6227_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;Lnet/minecraft/world/phys/BlockHitResult;)Lnet/minecraft/world/InteractionResult; net/minecraft/world/level/block/StructureBlock/use (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;Lnet/minecraft/world/phys/BlockHitResult;)Lnet/minecraft/world/InteractionResult; +MD: net/minecraft/world/level/block/StructureBlock/m_6402_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/item/ItemStack;)V net/minecraft/world/level/block/StructureBlock/setPlacedBy (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/item/ItemStack;)V +MD: net/minecraft/world/level/block/StructureBlock/m_6861_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/Block;Lnet/minecraft/core/BlockPos;Z)V net/minecraft/world/level/block/StructureBlock/neighborChanged (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/Block;Lnet/minecraft/core/BlockPos;Z)V +MD: net/minecraft/world/level/block/StructureBlock/m_7514_ (Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/block/RenderShape; net/minecraft/world/level/block/StructureBlock/getRenderShape (Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/block/RenderShape; +MD: net/minecraft/world/level/block/StructureBlock/m_7926_ (Lnet/minecraft/world/level/block/state/StateDefinition$Builder;)V net/minecraft/world/level/block/StructureBlock/createBlockStateDefinition (Lnet/minecraft/world/level/block/state/StateDefinition$Builder;)V +MD: net/minecraft/world/level/block/StructureBlock$1/ ()V net/minecraft/world/level/block/StructureBlock$1/ ()V +MD: net/minecraft/world/level/block/StructureVoidBlock/ ()V net/minecraft/world/level/block/StructureVoidBlock/ ()V +MD: net/minecraft/world/level/block/StructureVoidBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V net/minecraft/world/level/block/StructureVoidBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V +MD: net/minecraft/world/level/block/StructureVoidBlock/m_5940_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; net/minecraft/world/level/block/StructureVoidBlock/getShape (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; +MD: net/minecraft/world/level/block/StructureVoidBlock/m_7514_ (Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/block/RenderShape; net/minecraft/world/level/block/StructureVoidBlock/getRenderShape (Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/block/RenderShape; +MD: net/minecraft/world/level/block/StructureVoidBlock/m_7749_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)F net/minecraft/world/level/block/StructureVoidBlock/getShadeBrightness (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)F +MD: net/minecraft/world/level/block/SugarCaneBlock/ ()V net/minecraft/world/level/block/SugarCaneBlock/ ()V +MD: net/minecraft/world/level/block/SugarCaneBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V net/minecraft/world/level/block/SugarCaneBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V +MD: net/minecraft/world/level/block/SugarCaneBlock/m_213897_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)V net/minecraft/world/level/block/SugarCaneBlock/tick (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)V +MD: net/minecraft/world/level/block/SugarCaneBlock/m_213898_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)V net/minecraft/world/level/block/SugarCaneBlock/randomTick (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)V +MD: net/minecraft/world/level/block/SugarCaneBlock/m_5940_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; net/minecraft/world/level/block/SugarCaneBlock/getShape (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; +MD: net/minecraft/world/level/block/SugarCaneBlock/m_7417_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/SugarCaneBlock/updateShape (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/SugarCaneBlock/m_7898_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/level/block/SugarCaneBlock/canSurvive (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/level/block/SugarCaneBlock/m_7926_ (Lnet/minecraft/world/level/block/state/StateDefinition$Builder;)V net/minecraft/world/level/block/SugarCaneBlock/createBlockStateDefinition (Lnet/minecraft/world/level/block/state/StateDefinition$Builder;)V +MD: net/minecraft/world/level/block/SupportType/ ()V net/minecraft/world/level/block/SupportType/ ()V +MD: net/minecraft/world/level/block/SupportType/ (Ljava/lang/String;I)V net/minecraft/world/level/block/SupportType/ (Ljava/lang/String;I)V +MD: net/minecraft/world/level/block/SupportType/m_154736_ ()[Lnet/minecraft/world/level/block/SupportType; net/minecraft/world/level/block/SupportType/$values ()[Lnet/minecraft/world/level/block/SupportType; +MD: net/minecraft/world/level/block/SupportType/m_5588_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Direction;)Z net/minecraft/world/level/block/SupportType/isSupporting (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Direction;)Z +MD: net/minecraft/world/level/block/SupportType/valueOf (Ljava/lang/String;)Lnet/minecraft/world/level/block/SupportType; net/minecraft/world/level/block/SupportType/valueOf (Ljava/lang/String;)Lnet/minecraft/world/level/block/SupportType; +MD: net/minecraft/world/level/block/SupportType/values ()[Lnet/minecraft/world/level/block/SupportType; net/minecraft/world/level/block/SupportType/values ()[Lnet/minecraft/world/level/block/SupportType; +MD: net/minecraft/world/level/block/SupportType$1/ (Ljava/lang/String;I)V net/minecraft/world/level/block/SupportType$1/ (Ljava/lang/String;I)V +MD: net/minecraft/world/level/block/SupportType$1/m_5588_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Direction;)Z net/minecraft/world/level/block/SupportType$1/isSupporting (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Direction;)Z +MD: net/minecraft/world/level/block/SupportType$2/ (Ljava/lang/String;I)V net/minecraft/world/level/block/SupportType$2/ (Ljava/lang/String;I)V +MD: net/minecraft/world/level/block/SupportType$2/m_5588_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Direction;)Z net/minecraft/world/level/block/SupportType$2/isSupporting (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Direction;)Z +MD: net/minecraft/world/level/block/SupportType$3/ (Ljava/lang/String;I)V net/minecraft/world/level/block/SupportType$3/ (Ljava/lang/String;I)V +MD: net/minecraft/world/level/block/SupportType$3/m_5588_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Direction;)Z net/minecraft/world/level/block/SupportType$3/isSupporting (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Direction;)Z +MD: net/minecraft/world/level/block/SuspiciousEffectHolder/m_257904_ ()Ljava/util/List; net/minecraft/world/level/block/SuspiciousEffectHolder/getAllEffectHolders ()Ljava/util/List; +MD: net/minecraft/world/level/block/SuspiciousEffectHolder/m_257980_ (Lnet/minecraft/world/level/ItemLike;)Lnet/minecraft/world/level/block/SuspiciousEffectHolder; net/minecraft/world/level/block/SuspiciousEffectHolder/tryGet (Lnet/minecraft/world/level/ItemLike;)Lnet/minecraft/world/level/block/SuspiciousEffectHolder; +MD: net/minecraft/world/level/block/SuspiciousEffectHolder/m_53521_ ()Lnet/minecraft/world/effect/MobEffect; net/minecraft/world/level/block/SuspiciousEffectHolder/getSuspiciousEffect ()Lnet/minecraft/world/effect/MobEffect; +MD: net/minecraft/world/level/block/SuspiciousEffectHolder/m_53522_ ()I net/minecraft/world/level/block/SuspiciousEffectHolder/getEffectDuration ()I +MD: net/minecraft/world/level/block/SweetBerryBushBlock/ ()V net/minecraft/world/level/block/SweetBerryBushBlock/ ()V +MD: net/minecraft/world/level/block/SweetBerryBushBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V net/minecraft/world/level/block/SweetBerryBushBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V +MD: net/minecraft/world/level/block/SweetBerryBushBlock/m_213898_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)V net/minecraft/world/level/block/SweetBerryBushBlock/randomTick (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)V +MD: net/minecraft/world/level/block/SweetBerryBushBlock/m_214148_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V net/minecraft/world/level/block/SweetBerryBushBlock/performBonemeal (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V +MD: net/minecraft/world/level/block/SweetBerryBushBlock/m_214167_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/world/level/block/SweetBerryBushBlock/isBonemealSuccess (Lnet/minecraft/world/level/Level;Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/world/level/block/SweetBerryBushBlock/m_5940_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; net/minecraft/world/level/block/SweetBerryBushBlock/getShape (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; +MD: net/minecraft/world/level/block/SweetBerryBushBlock/m_6227_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;Lnet/minecraft/world/phys/BlockHitResult;)Lnet/minecraft/world/InteractionResult; net/minecraft/world/level/block/SweetBerryBushBlock/use (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;Lnet/minecraft/world/phys/BlockHitResult;)Lnet/minecraft/world/InteractionResult; +MD: net/minecraft/world/level/block/SweetBerryBushBlock/m_6724_ (Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/world/level/block/SweetBerryBushBlock/isRandomlyTicking (Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/world/level/block/SweetBerryBushBlock/m_7370_ (Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Z)Z net/minecraft/world/level/block/SweetBerryBushBlock/isValidBonemealTarget (Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Z)Z +MD: net/minecraft/world/level/block/SweetBerryBushBlock/m_7397_ (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/item/ItemStack; net/minecraft/world/level/block/SweetBerryBushBlock/getCloneItemStack (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/level/block/SweetBerryBushBlock/m_7892_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/Entity;)V net/minecraft/world/level/block/SweetBerryBushBlock/entityInside (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/Entity;)V +MD: net/minecraft/world/level/block/SweetBerryBushBlock/m_7926_ (Lnet/minecraft/world/level/block/state/StateDefinition$Builder;)V net/minecraft/world/level/block/SweetBerryBushBlock/createBlockStateDefinition (Lnet/minecraft/world/level/block/state/StateDefinition$Builder;)V +MD: net/minecraft/world/level/block/TallFlowerBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V net/minecraft/world/level/block/TallFlowerBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V +MD: net/minecraft/world/level/block/TallFlowerBlock/m_214148_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V net/minecraft/world/level/block/TallFlowerBlock/performBonemeal (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V +MD: net/minecraft/world/level/block/TallFlowerBlock/m_214167_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/world/level/block/TallFlowerBlock/isBonemealSuccess (Lnet/minecraft/world/level/Level;Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/world/level/block/TallFlowerBlock/m_7370_ (Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Z)Z net/minecraft/world/level/block/TallFlowerBlock/isValidBonemealTarget (Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Z)Z +MD: net/minecraft/world/level/block/TallGrassBlock/ ()V net/minecraft/world/level/block/TallGrassBlock/ ()V +MD: net/minecraft/world/level/block/TallGrassBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V net/minecraft/world/level/block/TallGrassBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V +MD: net/minecraft/world/level/block/TallGrassBlock/m_214148_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V net/minecraft/world/level/block/TallGrassBlock/performBonemeal (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V +MD: net/minecraft/world/level/block/TallGrassBlock/m_214167_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/world/level/block/TallGrassBlock/isBonemealSuccess (Lnet/minecraft/world/level/Level;Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/world/level/block/TallGrassBlock/m_5940_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; net/minecraft/world/level/block/TallGrassBlock/getShape (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; +MD: net/minecraft/world/level/block/TallGrassBlock/m_7370_ (Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Z)Z net/minecraft/world/level/block/TallGrassBlock/isValidBonemealTarget (Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Z)Z +MD: net/minecraft/world/level/block/TallSeagrassBlock/ ()V net/minecraft/world/level/block/TallSeagrassBlock/ ()V +MD: net/minecraft/world/level/block/TallSeagrassBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V net/minecraft/world/level/block/TallSeagrassBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V +MD: net/minecraft/world/level/block/TallSeagrassBlock/m_5573_ (Lnet/minecraft/world/item/context/BlockPlaceContext;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/TallSeagrassBlock/getStateForPlacement (Lnet/minecraft/world/item/context/BlockPlaceContext;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/TallSeagrassBlock/m_5888_ (Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/material/FluidState; net/minecraft/world/level/block/TallSeagrassBlock/getFluidState (Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/material/FluidState; +MD: net/minecraft/world/level/block/TallSeagrassBlock/m_5940_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; net/minecraft/world/level/block/TallSeagrassBlock/getShape (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; +MD: net/minecraft/world/level/block/TallSeagrassBlock/m_6044_ (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/material/Fluid;)Z net/minecraft/world/level/block/TallSeagrassBlock/canPlaceLiquid (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/material/Fluid;)Z +MD: net/minecraft/world/level/block/TallSeagrassBlock/m_6266_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/level/block/TallSeagrassBlock/mayPlaceOn (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/level/block/TallSeagrassBlock/m_7361_ (Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/material/FluidState;)Z net/minecraft/world/level/block/TallSeagrassBlock/placeLiquid (Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/material/FluidState;)Z +MD: net/minecraft/world/level/block/TallSeagrassBlock/m_7397_ (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/item/ItemStack; net/minecraft/world/level/block/TallSeagrassBlock/getCloneItemStack (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/level/block/TallSeagrassBlock/m_7898_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/level/block/TallSeagrassBlock/canSurvive (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/level/block/TargetBlock/ ()V net/minecraft/world/level/block/TargetBlock/ ()V +MD: net/minecraft/world/level/block/TargetBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V net/minecraft/world/level/block/TargetBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V +MD: net/minecraft/world/level/block/TargetBlock/m_213897_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)V net/minecraft/world/level/block/TargetBlock/tick (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)V +MD: net/minecraft/world/level/block/TargetBlock/m_5581_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/phys/BlockHitResult;Lnet/minecraft/world/entity/projectile/Projectile;)V net/minecraft/world/level/block/TargetBlock/onProjectileHit (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/phys/BlockHitResult;Lnet/minecraft/world/entity/projectile/Projectile;)V +MD: net/minecraft/world/level/block/TargetBlock/m_57385_ (Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/world/level/block/state/BlockState;ILnet/minecraft/core/BlockPos;I)V net/minecraft/world/level/block/TargetBlock/setOutputPower (Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/world/level/block/state/BlockState;ILnet/minecraft/core/BlockPos;I)V +MD: net/minecraft/world/level/block/TargetBlock/m_57391_ (Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/phys/BlockHitResult;Lnet/minecraft/world/entity/Entity;)I net/minecraft/world/level/block/TargetBlock/updateRedstoneOutput (Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/phys/BlockHitResult;Lnet/minecraft/world/entity/Entity;)I +MD: net/minecraft/world/level/block/TargetBlock/m_57408_ (Lnet/minecraft/world/phys/BlockHitResult;Lnet/minecraft/world/phys/Vec3;)I net/minecraft/world/level/block/TargetBlock/getRedstoneStrength (Lnet/minecraft/world/phys/BlockHitResult;Lnet/minecraft/world/phys/Vec3;)I +MD: net/minecraft/world/level/block/TargetBlock/m_6378_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Direction;)I net/minecraft/world/level/block/TargetBlock/getSignal (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Direction;)I +MD: net/minecraft/world/level/block/TargetBlock/m_6807_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Z)V net/minecraft/world/level/block/TargetBlock/onPlace (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Z)V +MD: net/minecraft/world/level/block/TargetBlock/m_7899_ (Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/world/level/block/TargetBlock/isSignalSource (Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/world/level/block/TargetBlock/m_7926_ (Lnet/minecraft/world/level/block/state/StateDefinition$Builder;)V net/minecraft/world/level/block/TargetBlock/createBlockStateDefinition (Lnet/minecraft/world/level/block/state/StateDefinition$Builder;)V +MD: net/minecraft/world/level/block/TintedGlassBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V net/minecraft/world/level/block/TintedGlassBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V +MD: net/minecraft/world/level/block/TintedGlassBlock/m_7420_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/level/block/TintedGlassBlock/propagatesSkylightDown (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/level/block/TintedGlassBlock/m_7753_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)I net/minecraft/world/level/block/TintedGlassBlock/getLightBlock (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)I +MD: net/minecraft/world/level/block/TntBlock/ ()V net/minecraft/world/level/block/TntBlock/ ()V +MD: net/minecraft/world/level/block/TntBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V net/minecraft/world/level/block/TntBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V +MD: net/minecraft/world/level/block/TntBlock/m_5581_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/phys/BlockHitResult;Lnet/minecraft/world/entity/projectile/Projectile;)V net/minecraft/world/level/block/TntBlock/onProjectileHit (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/phys/BlockHitResult;Lnet/minecraft/world/entity/projectile/Projectile;)V +MD: net/minecraft/world/level/block/TntBlock/m_5707_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/entity/player/Player;)V net/minecraft/world/level/block/TntBlock/playerWillDestroy (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/entity/player/Player;)V +MD: net/minecraft/world/level/block/TntBlock/m_57423_ (Lnet/minecraft/world/InteractionHand;Lnet/minecraft/world/entity/player/Player;)V net/minecraft/world/level/block/TntBlock/lambda$use$0 (Lnet/minecraft/world/InteractionHand;Lnet/minecraft/world/entity/player/Player;)V +MD: net/minecraft/world/level/block/TntBlock/m_57433_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;)V net/minecraft/world/level/block/TntBlock/explode (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/world/level/block/TntBlock/m_57436_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/LivingEntity;)V net/minecraft/world/level/block/TntBlock/explode (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/LivingEntity;)V +MD: net/minecraft/world/level/block/TntBlock/m_6227_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;Lnet/minecraft/world/phys/BlockHitResult;)Lnet/minecraft/world/InteractionResult; net/minecraft/world/level/block/TntBlock/use (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;Lnet/minecraft/world/phys/BlockHitResult;)Lnet/minecraft/world/InteractionResult; +MD: net/minecraft/world/level/block/TntBlock/m_6807_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Z)V net/minecraft/world/level/block/TntBlock/onPlace (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Z)V +MD: net/minecraft/world/level/block/TntBlock/m_6861_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/Block;Lnet/minecraft/core/BlockPos;Z)V net/minecraft/world/level/block/TntBlock/neighborChanged (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/Block;Lnet/minecraft/core/BlockPos;Z)V +MD: net/minecraft/world/level/block/TntBlock/m_6903_ (Lnet/minecraft/world/level/Explosion;)Z net/minecraft/world/level/block/TntBlock/dropFromExplosion (Lnet/minecraft/world/level/Explosion;)Z +MD: net/minecraft/world/level/block/TntBlock/m_7592_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/Explosion;)V net/minecraft/world/level/block/TntBlock/wasExploded (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/Explosion;)V +MD: net/minecraft/world/level/block/TntBlock/m_7926_ (Lnet/minecraft/world/level/block/state/StateDefinition$Builder;)V net/minecraft/world/level/block/TntBlock/createBlockStateDefinition (Lnet/minecraft/world/level/block/state/StateDefinition$Builder;)V +MD: net/minecraft/world/level/block/TorchBlock/ ()V net/minecraft/world/level/block/TorchBlock/ ()V +MD: net/minecraft/world/level/block/TorchBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;Lnet/minecraft/core/particles/ParticleOptions;)V net/minecraft/world/level/block/TorchBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;Lnet/minecraft/core/particles/ParticleOptions;)V +MD: net/minecraft/world/level/block/TorchBlock/m_214162_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)V net/minecraft/world/level/block/TorchBlock/animateTick (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)V +MD: net/minecraft/world/level/block/TorchBlock/m_5940_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; net/minecraft/world/level/block/TorchBlock/getShape (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; +MD: net/minecraft/world/level/block/TorchBlock/m_7417_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/TorchBlock/updateShape (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/TorchBlock/m_7898_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/level/block/TorchBlock/canSurvive (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/level/block/TorchflowerCropBlock/ ()V net/minecraft/world/level/block/TorchflowerCropBlock/ ()V +MD: net/minecraft/world/level/block/TorchflowerCropBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V net/minecraft/world/level/block/TorchflowerCropBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V +MD: net/minecraft/world/level/block/TorchflowerCropBlock/m_213898_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)V net/minecraft/world/level/block/TorchflowerCropBlock/randomTick (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)V +MD: net/minecraft/world/level/block/TorchflowerCropBlock/m_52289_ (I)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/TorchflowerCropBlock/getStateForAge (I)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/TorchflowerCropBlock/m_5940_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; net/minecraft/world/level/block/TorchflowerCropBlock/getShape (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; +MD: net/minecraft/world/level/block/TorchflowerCropBlock/m_6404_ ()Lnet/minecraft/world/level/ItemLike; net/minecraft/world/level/block/TorchflowerCropBlock/getBaseSeedId ()Lnet/minecraft/world/level/ItemLike; +MD: net/minecraft/world/level/block/TorchflowerCropBlock/m_7125_ (Lnet/minecraft/world/level/Level;)I net/minecraft/world/level/block/TorchflowerCropBlock/getBonemealAgeIncrease (Lnet/minecraft/world/level/Level;)I +MD: net/minecraft/world/level/block/TorchflowerCropBlock/m_7419_ ()I net/minecraft/world/level/block/TorchflowerCropBlock/getMaxAge ()I +MD: net/minecraft/world/level/block/TorchflowerCropBlock/m_7926_ (Lnet/minecraft/world/level/block/state/StateDefinition$Builder;)V net/minecraft/world/level/block/TorchflowerCropBlock/createBlockStateDefinition (Lnet/minecraft/world/level/block/state/StateDefinition$Builder;)V +MD: net/minecraft/world/level/block/TorchflowerCropBlock/m_7959_ ()Lnet/minecraft/world/level/block/state/properties/IntegerProperty; net/minecraft/world/level/block/TorchflowerCropBlock/getAgeProperty ()Lnet/minecraft/world/level/block/state/properties/IntegerProperty; +MD: net/minecraft/world/level/block/TrapDoorBlock/ ()V net/minecraft/world/level/block/TrapDoorBlock/ ()V +MD: net/minecraft/world/level/block/TrapDoorBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;Lnet/minecraft/world/level/block/state/properties/BlockSetType;)V net/minecraft/world/level/block/TrapDoorBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;Lnet/minecraft/world/level/block/state/properties/BlockSetType;)V +MD: net/minecraft/world/level/block/TrapDoorBlock/m_5573_ (Lnet/minecraft/world/item/context/BlockPlaceContext;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/TrapDoorBlock/getStateForPlacement (Lnet/minecraft/world/item/context/BlockPlaceContext;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/TrapDoorBlock/m_57527_ (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Z)V net/minecraft/world/level/block/TrapDoorBlock/playSound (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Z)V +MD: net/minecraft/world/level/block/TrapDoorBlock/m_5888_ (Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/material/FluidState; net/minecraft/world/level/block/TrapDoorBlock/getFluidState (Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/material/FluidState; +MD: net/minecraft/world/level/block/TrapDoorBlock/m_5940_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; net/minecraft/world/level/block/TrapDoorBlock/getShape (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; +MD: net/minecraft/world/level/block/TrapDoorBlock/m_6227_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;Lnet/minecraft/world/phys/BlockHitResult;)Lnet/minecraft/world/InteractionResult; net/minecraft/world/level/block/TrapDoorBlock/use (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;Lnet/minecraft/world/phys/BlockHitResult;)Lnet/minecraft/world/InteractionResult; +MD: net/minecraft/world/level/block/TrapDoorBlock/m_6861_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/Block;Lnet/minecraft/core/BlockPos;Z)V net/minecraft/world/level/block/TrapDoorBlock/neighborChanged (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/Block;Lnet/minecraft/core/BlockPos;Z)V +MD: net/minecraft/world/level/block/TrapDoorBlock/m_7357_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/pathfinder/PathComputationType;)Z net/minecraft/world/level/block/TrapDoorBlock/isPathfindable (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/pathfinder/PathComputationType;)Z +MD: net/minecraft/world/level/block/TrapDoorBlock/m_7417_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/TrapDoorBlock/updateShape (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/TrapDoorBlock/m_7926_ (Lnet/minecraft/world/level/block/state/StateDefinition$Builder;)V net/minecraft/world/level/block/TrapDoorBlock/createBlockStateDefinition (Lnet/minecraft/world/level/block/state/StateDefinition$Builder;)V +MD: net/minecraft/world/level/block/TrapDoorBlock$1/ ()V net/minecraft/world/level/block/TrapDoorBlock$1/ ()V +MD: net/minecraft/world/level/block/TrappedChestBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V net/minecraft/world/level/block/TrappedChestBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V +MD: net/minecraft/world/level/block/TrappedChestBlock/m_142194_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/block/entity/BlockEntity; net/minecraft/world/level/block/TrappedChestBlock/newBlockEntity (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/block/entity/BlockEntity; +MD: net/minecraft/world/level/block/TrappedChestBlock/m_57589_ ()Lnet/minecraft/world/level/block/entity/BlockEntityType; net/minecraft/world/level/block/TrappedChestBlock/lambda$new$0 ()Lnet/minecraft/world/level/block/entity/BlockEntityType; +MD: net/minecraft/world/level/block/TrappedChestBlock/m_6376_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Direction;)I net/minecraft/world/level/block/TrappedChestBlock/getDirectSignal (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Direction;)I +MD: net/minecraft/world/level/block/TrappedChestBlock/m_6378_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Direction;)I net/minecraft/world/level/block/TrappedChestBlock/getSignal (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Direction;)I +MD: net/minecraft/world/level/block/TrappedChestBlock/m_7699_ ()Lnet/minecraft/stats/Stat; net/minecraft/world/level/block/TrappedChestBlock/getOpenChestStat ()Lnet/minecraft/stats/Stat; +MD: net/minecraft/world/level/block/TrappedChestBlock/m_7899_ (Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/world/level/block/TrappedChestBlock/isSignalSource (Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/world/level/block/TripWireBlock/ ()V net/minecraft/world/level/block/TripWireBlock/ ()V +MD: net/minecraft/world/level/block/TripWireBlock/ (Lnet/minecraft/world/level/block/TripWireHookBlock;Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V net/minecraft/world/level/block/TripWireBlock/ (Lnet/minecraft/world/level/block/TripWireHookBlock;Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V +MD: net/minecraft/world/level/block/TripWireBlock/m_213897_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)V net/minecraft/world/level/block/TripWireBlock/tick (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)V +MD: net/minecraft/world/level/block/TripWireBlock/m_5573_ (Lnet/minecraft/world/item/context/BlockPlaceContext;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/TripWireBlock/getStateForPlacement (Lnet/minecraft/world/item/context/BlockPlaceContext;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/TripWireBlock/m_5707_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/entity/player/Player;)V net/minecraft/world/level/block/TripWireBlock/playerWillDestroy (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/entity/player/Player;)V +MD: net/minecraft/world/level/block/TripWireBlock/m_57607_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;)V net/minecraft/world/level/block/TripWireBlock/checkPressed (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/world/level/block/TripWireBlock/m_57610_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V net/minecraft/world/level/block/TripWireBlock/updateSource (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V +MD: net/minecraft/world/level/block/TripWireBlock/m_57641_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/Direction;)Z net/minecraft/world/level/block/TripWireBlock/shouldConnectTo (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/Direction;)Z +MD: net/minecraft/world/level/block/TripWireBlock/m_5940_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; net/minecraft/world/level/block/TripWireBlock/getShape (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; +MD: net/minecraft/world/level/block/TripWireBlock/m_6807_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Z)V net/minecraft/world/level/block/TripWireBlock/onPlace (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Z)V +MD: net/minecraft/world/level/block/TripWireBlock/m_6810_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Z)V net/minecraft/world/level/block/TripWireBlock/onRemove (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Z)V +MD: net/minecraft/world/level/block/TripWireBlock/m_6843_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/Rotation;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/TripWireBlock/rotate (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/Rotation;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/TripWireBlock/m_6943_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/Mirror;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/TripWireBlock/mirror (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/Mirror;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/TripWireBlock/m_7417_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/TripWireBlock/updateShape (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/TripWireBlock/m_7892_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/Entity;)V net/minecraft/world/level/block/TripWireBlock/entityInside (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/Entity;)V +MD: net/minecraft/world/level/block/TripWireBlock/m_7926_ (Lnet/minecraft/world/level/block/state/StateDefinition$Builder;)V net/minecraft/world/level/block/TripWireBlock/createBlockStateDefinition (Lnet/minecraft/world/level/block/state/StateDefinition$Builder;)V +MD: net/minecraft/world/level/block/TripWireBlock$1/ ()V net/minecraft/world/level/block/TripWireBlock$1/ ()V +MD: net/minecraft/world/level/block/TripWireHookBlock/ ()V net/minecraft/world/level/block/TripWireHookBlock/ ()V +MD: net/minecraft/world/level/block/TripWireHookBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V net/minecraft/world/level/block/TripWireHookBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V +MD: net/minecraft/world/level/block/TripWireHookBlock/m_213897_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)V net/minecraft/world/level/block/TripWireHookBlock/tick (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)V +MD: net/minecraft/world/level/block/TripWireHookBlock/m_222602_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;ZZZZ)V net/minecraft/world/level/block/TripWireHookBlock/emitState (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;ZZZZ)V +MD: net/minecraft/world/level/block/TripWireHookBlock/m_5573_ (Lnet/minecraft/world/item/context/BlockPlaceContext;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/TripWireHookBlock/getStateForPlacement (Lnet/minecraft/world/item/context/BlockPlaceContext;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/TripWireHookBlock/m_57685_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;ZZILnet/minecraft/world/level/block/state/BlockState;)V net/minecraft/world/level/block/TripWireHookBlock/calculateState (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;ZZILnet/minecraft/world/level/block/state/BlockState;)V +MD: net/minecraft/world/level/block/TripWireHookBlock/m_57693_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Direction;)V net/minecraft/world/level/block/TripWireHookBlock/notifyNeighbors (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Direction;)V +MD: net/minecraft/world/level/block/TripWireHookBlock/m_5940_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; net/minecraft/world/level/block/TripWireHookBlock/getShape (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; +MD: net/minecraft/world/level/block/TripWireHookBlock/m_6376_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Direction;)I net/minecraft/world/level/block/TripWireHookBlock/getDirectSignal (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Direction;)I +MD: net/minecraft/world/level/block/TripWireHookBlock/m_6378_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Direction;)I net/minecraft/world/level/block/TripWireHookBlock/getSignal (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Direction;)I +MD: net/minecraft/world/level/block/TripWireHookBlock/m_6402_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/item/ItemStack;)V net/minecraft/world/level/block/TripWireHookBlock/setPlacedBy (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/item/ItemStack;)V +MD: net/minecraft/world/level/block/TripWireHookBlock/m_6810_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Z)V net/minecraft/world/level/block/TripWireHookBlock/onRemove (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Z)V +MD: net/minecraft/world/level/block/TripWireHookBlock/m_6843_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/Rotation;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/TripWireHookBlock/rotate (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/Rotation;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/TripWireHookBlock/m_6943_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/Mirror;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/TripWireHookBlock/mirror (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/Mirror;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/TripWireHookBlock/m_7417_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/TripWireHookBlock/updateShape (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/TripWireHookBlock/m_7898_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/level/block/TripWireHookBlock/canSurvive (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/level/block/TripWireHookBlock/m_7899_ (Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/world/level/block/TripWireHookBlock/isSignalSource (Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/world/level/block/TripWireHookBlock/m_7926_ (Lnet/minecraft/world/level/block/state/StateDefinition$Builder;)V net/minecraft/world/level/block/TripWireHookBlock/createBlockStateDefinition (Lnet/minecraft/world/level/block/state/StateDefinition$Builder;)V +MD: net/minecraft/world/level/block/TripWireHookBlock$1/ ()V net/minecraft/world/level/block/TripWireHookBlock$1/ ()V +MD: net/minecraft/world/level/block/TurtleEggBlock/ ()V net/minecraft/world/level/block/TurtleEggBlock/ ()V +MD: net/minecraft/world/level/block/TurtleEggBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V net/minecraft/world/level/block/TurtleEggBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V +MD: net/minecraft/world/level/block/TurtleEggBlock/m_141947_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/entity/Entity;)V net/minecraft/world/level/block/TurtleEggBlock/stepOn (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/entity/Entity;)V +MD: net/minecraft/world/level/block/TurtleEggBlock/m_142072_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/Entity;F)V net/minecraft/world/level/block/TurtleEggBlock/fallOn (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/Entity;F)V +MD: net/minecraft/world/level/block/TurtleEggBlock/m_154850_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/Entity;I)V net/minecraft/world/level/block/TurtleEggBlock/destroyEgg (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/Entity;I)V +MD: net/minecraft/world/level/block/TurtleEggBlock/m_213898_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)V net/minecraft/world/level/block/TurtleEggBlock/randomTick (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)V +MD: net/minecraft/world/level/block/TurtleEggBlock/m_5573_ (Lnet/minecraft/world/item/context/BlockPlaceContext;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/TurtleEggBlock/getStateForPlacement (Lnet/minecraft/world/item/context/BlockPlaceContext;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/TurtleEggBlock/m_57762_ (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/level/block/TurtleEggBlock/onSand (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/level/block/TurtleEggBlock/m_57765_ (Lnet/minecraft/world/level/Level;)Z net/minecraft/world/level/block/TurtleEggBlock/shouldUpdateHatchLevel (Lnet/minecraft/world/level/Level;)Z +MD: net/minecraft/world/level/block/TurtleEggBlock/m_57767_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/entity/Entity;)Z net/minecraft/world/level/block/TurtleEggBlock/canDestroyEgg (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/entity/Entity;)Z +MD: net/minecraft/world/level/block/TurtleEggBlock/m_57791_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V net/minecraft/world/level/block/TurtleEggBlock/decreaseEggs (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V +MD: net/minecraft/world/level/block/TurtleEggBlock/m_57800_ (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/level/block/TurtleEggBlock/isSand (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/level/block/TurtleEggBlock/m_5940_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; net/minecraft/world/level/block/TurtleEggBlock/getShape (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; +MD: net/minecraft/world/level/block/TurtleEggBlock/m_6240_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/entity/BlockEntity;Lnet/minecraft/world/item/ItemStack;)V net/minecraft/world/level/block/TurtleEggBlock/playerDestroy (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/entity/BlockEntity;Lnet/minecraft/world/item/ItemStack;)V +MD: net/minecraft/world/level/block/TurtleEggBlock/m_6807_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Z)V net/minecraft/world/level/block/TurtleEggBlock/onPlace (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Z)V +MD: net/minecraft/world/level/block/TurtleEggBlock/m_6864_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/item/context/BlockPlaceContext;)Z net/minecraft/world/level/block/TurtleEggBlock/canBeReplaced (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/item/context/BlockPlaceContext;)Z +MD: net/minecraft/world/level/block/TurtleEggBlock/m_7926_ (Lnet/minecraft/world/level/block/state/StateDefinition$Builder;)V net/minecraft/world/level/block/TurtleEggBlock/createBlockStateDefinition (Lnet/minecraft/world/level/block/state/StateDefinition$Builder;)V +MD: net/minecraft/world/level/block/TwistingVinesBlock/ ()V net/minecraft/world/level/block/TwistingVinesBlock/ ()V +MD: net/minecraft/world/level/block/TwistingVinesBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V net/minecraft/world/level/block/TwistingVinesBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V +MD: net/minecraft/world/level/block/TwistingVinesBlock/m_213627_ (Lnet/minecraft/util/RandomSource;)I net/minecraft/world/level/block/TwistingVinesBlock/getBlocksToGrowWhenBonemealed (Lnet/minecraft/util/RandomSource;)I +MD: net/minecraft/world/level/block/TwistingVinesBlock/m_5971_ (Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/world/level/block/TwistingVinesBlock/canGrowInto (Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/world/level/block/TwistingVinesBlock/m_7777_ ()Lnet/minecraft/world/level/block/Block; net/minecraft/world/level/block/TwistingVinesBlock/getBodyBlock ()Lnet/minecraft/world/level/block/Block; +MD: net/minecraft/world/level/block/TwistingVinesPlantBlock/ ()V net/minecraft/world/level/block/TwistingVinesPlantBlock/ ()V +MD: net/minecraft/world/level/block/TwistingVinesPlantBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V net/minecraft/world/level/block/TwistingVinesPlantBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V +MD: net/minecraft/world/level/block/TwistingVinesPlantBlock/m_7272_ ()Lnet/minecraft/world/level/block/GrowingPlantHeadBlock; net/minecraft/world/level/block/TwistingVinesPlantBlock/getHeadBlock ()Lnet/minecraft/world/level/block/GrowingPlantHeadBlock; +MD: net/minecraft/world/level/block/VineBlock/ ()V net/minecraft/world/level/block/VineBlock/ ()V +MD: net/minecraft/world/level/block/VineBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V net/minecraft/world/level/block/VineBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V +MD: net/minecraft/world/level/block/VineBlock/m_213898_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)V net/minecraft/world/level/block/VineBlock/randomTick (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)V +MD: net/minecraft/world/level/block/VineBlock/m_222650_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/util/RandomSource;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/VineBlock/copyRandomFaces (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/util/RandomSource;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/VineBlock/m_5573_ (Lnet/minecraft/world/item/context/BlockPlaceContext;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/VineBlock/getStateForPlacement (Lnet/minecraft/world/item/context/BlockPlaceContext;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/VineBlock/m_57850_ (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/level/block/VineBlock/canSpread (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/level/block/VineBlock/m_57853_ (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Direction;)Z net/minecraft/world/level/block/VineBlock/isAcceptableNeighbour (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Direction;)Z +MD: net/minecraft/world/level/block/VineBlock/m_57883_ (Lnet/minecraft/core/Direction;)Lnet/minecraft/world/level/block/state/properties/BooleanProperty; net/minecraft/world/level/block/VineBlock/getPropertyForFace (Lnet/minecraft/core/Direction;)Lnet/minecraft/world/level/block/state/properties/BooleanProperty; +MD: net/minecraft/world/level/block/VineBlock/m_57885_ (Ljava/util/Map$Entry;)Z net/minecraft/world/level/block/VineBlock/lambda$static$0 (Ljava/util/Map$Entry;)Z +MD: net/minecraft/world/level/block/VineBlock/m_57887_ (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Direction;)Z net/minecraft/world/level/block/VineBlock/canSupportAtFace (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Direction;)Z +MD: net/minecraft/world/level/block/VineBlock/m_57901_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/VineBlock/getUpdatedState (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/VineBlock/m_57905_ (Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/phys/shapes/VoxelShape; net/minecraft/world/level/block/VineBlock/calculateShape (Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/phys/shapes/VoxelShape; +MD: net/minecraft/world/level/block/VineBlock/m_57907_ (Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/world/level/block/VineBlock/hasFaces (Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/world/level/block/VineBlock/m_57909_ (Lnet/minecraft/world/level/block/state/BlockState;)I net/minecraft/world/level/block/VineBlock/countFaces (Lnet/minecraft/world/level/block/state/BlockState;)I +MD: net/minecraft/world/level/block/VineBlock/m_57911_ (Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/world/level/block/VineBlock/hasHorizontalConnection (Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/world/level/block/VineBlock/m_5940_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; net/minecraft/world/level/block/VineBlock/getShape (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; +MD: net/minecraft/world/level/block/VineBlock/m_6843_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/Rotation;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/VineBlock/rotate (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/Rotation;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/VineBlock/m_6864_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/item/context/BlockPlaceContext;)Z net/minecraft/world/level/block/VineBlock/canBeReplaced (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/item/context/BlockPlaceContext;)Z +MD: net/minecraft/world/level/block/VineBlock/m_6943_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/Mirror;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/VineBlock/mirror (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/Mirror;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/VineBlock/m_7417_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/VineBlock/updateShape (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/VineBlock/m_7420_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/level/block/VineBlock/propagatesSkylightDown (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/level/block/VineBlock/m_7898_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/level/block/VineBlock/canSurvive (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/level/block/VineBlock/m_7926_ (Lnet/minecraft/world/level/block/state/StateDefinition$Builder;)V net/minecraft/world/level/block/VineBlock/createBlockStateDefinition (Lnet/minecraft/world/level/block/state/StateDefinition$Builder;)V +MD: net/minecraft/world/level/block/VineBlock$1/ ()V net/minecraft/world/level/block/VineBlock$1/ ()V +MD: net/minecraft/world/level/block/WallBannerBlock/ ()V net/minecraft/world/level/block/WallBannerBlock/ ()V +MD: net/minecraft/world/level/block/WallBannerBlock/ (Lnet/minecraft/world/item/DyeColor;Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V net/minecraft/world/level/block/WallBannerBlock/ (Lnet/minecraft/world/item/DyeColor;Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V +MD: net/minecraft/world/level/block/WallBannerBlock/m_5573_ (Lnet/minecraft/world/item/context/BlockPlaceContext;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/WallBannerBlock/getStateForPlacement (Lnet/minecraft/world/item/context/BlockPlaceContext;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/WallBannerBlock/m_5940_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; net/minecraft/world/level/block/WallBannerBlock/getShape (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; +MD: net/minecraft/world/level/block/WallBannerBlock/m_6843_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/Rotation;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/WallBannerBlock/rotate (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/Rotation;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/WallBannerBlock/m_6943_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/Mirror;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/WallBannerBlock/mirror (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/Mirror;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/WallBannerBlock/m_7417_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/WallBannerBlock/updateShape (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/WallBannerBlock/m_7705_ ()Ljava/lang/String; net/minecraft/world/level/block/WallBannerBlock/getDescriptionId ()Ljava/lang/String; +MD: net/minecraft/world/level/block/WallBannerBlock/m_7898_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/level/block/WallBannerBlock/canSurvive (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/level/block/WallBannerBlock/m_7926_ (Lnet/minecraft/world/level/block/state/StateDefinition$Builder;)V net/minecraft/world/level/block/WallBannerBlock/createBlockStateDefinition (Lnet/minecraft/world/level/block/state/StateDefinition$Builder;)V +MD: net/minecraft/world/level/block/WallBlock/ ()V net/minecraft/world/level/block/WallBlock/ ()V +MD: net/minecraft/world/level/block/WallBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V net/minecraft/world/level/block/WallBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V +MD: net/minecraft/world/level/block/WallBlock/m_5573_ (Lnet/minecraft/world/item/context/BlockPlaceContext;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/WallBlock/getStateForPlacement (Lnet/minecraft/world/item/context/BlockPlaceContext;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/WallBlock/m_57965_ (FFFFFF)Ljava/util/Map; net/minecraft/world/level/block/WallBlock/makeShapes (FFFFFF)Ljava/util/Map; +MD: net/minecraft/world/level/block/WallBlock/m_57974_ (Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/WallBlock/topUpdate (Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/WallBlock/m_57979_ (Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;ZZZZ)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/WallBlock/updateShape (Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;ZZZZ)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/WallBlock/m_57988_ (Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/Direction;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/WallBlock/sideUpdate (Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/Direction;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/WallBlock/m_58006_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/phys/shapes/VoxelShape;)Z net/minecraft/world/level/block/WallBlock/shouldRaisePost (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/phys/shapes/VoxelShape;)Z +MD: net/minecraft/world/level/block/WallBlock/m_58010_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/state/properties/Property;)Z net/minecraft/world/level/block/WallBlock/isConnected (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/state/properties/Property;)Z +MD: net/minecraft/world/level/block/WallBlock/m_58020_ (Lnet/minecraft/world/level/block/state/BlockState;ZLnet/minecraft/core/Direction;)Z net/minecraft/world/level/block/WallBlock/connectsTo (Lnet/minecraft/world/level/block/state/BlockState;ZLnet/minecraft/core/Direction;)Z +MD: net/minecraft/world/level/block/WallBlock/m_58024_ (Lnet/minecraft/world/level/block/state/BlockState;ZZZZLnet/minecraft/world/phys/shapes/VoxelShape;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/WallBlock/updateSides (Lnet/minecraft/world/level/block/state/BlockState;ZZZZLnet/minecraft/world/phys/shapes/VoxelShape;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/WallBlock/m_58033_ (Lnet/minecraft/world/phys/shapes/VoxelShape;Lnet/minecraft/world/level/block/state/properties/WallSide;Lnet/minecraft/world/phys/shapes/VoxelShape;Lnet/minecraft/world/phys/shapes/VoxelShape;)Lnet/minecraft/world/phys/shapes/VoxelShape; net/minecraft/world/level/block/WallBlock/applyWallShape (Lnet/minecraft/world/phys/shapes/VoxelShape;Lnet/minecraft/world/level/block/state/properties/WallSide;Lnet/minecraft/world/phys/shapes/VoxelShape;Lnet/minecraft/world/phys/shapes/VoxelShape;)Lnet/minecraft/world/phys/shapes/VoxelShape; +MD: net/minecraft/world/level/block/WallBlock/m_58038_ (Lnet/minecraft/world/phys/shapes/VoxelShape;Lnet/minecraft/world/phys/shapes/VoxelShape;)Z net/minecraft/world/level/block/WallBlock/isCovered (Lnet/minecraft/world/phys/shapes/VoxelShape;Lnet/minecraft/world/phys/shapes/VoxelShape;)Z +MD: net/minecraft/world/level/block/WallBlock/m_58041_ (ZLnet/minecraft/world/phys/shapes/VoxelShape;Lnet/minecraft/world/phys/shapes/VoxelShape;)Lnet/minecraft/world/level/block/state/properties/WallSide; net/minecraft/world/level/block/WallBlock/makeWallState (ZLnet/minecraft/world/phys/shapes/VoxelShape;Lnet/minecraft/world/phys/shapes/VoxelShape;)Lnet/minecraft/world/level/block/state/properties/WallSide; +MD: net/minecraft/world/level/block/WallBlock/m_5888_ (Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/material/FluidState; net/minecraft/world/level/block/WallBlock/getFluidState (Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/material/FluidState; +MD: net/minecraft/world/level/block/WallBlock/m_5939_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; net/minecraft/world/level/block/WallBlock/getCollisionShape (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; +MD: net/minecraft/world/level/block/WallBlock/m_5940_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; net/minecraft/world/level/block/WallBlock/getShape (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; +MD: net/minecraft/world/level/block/WallBlock/m_6843_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/Rotation;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/WallBlock/rotate (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/Rotation;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/WallBlock/m_6943_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/Mirror;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/WallBlock/mirror (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/Mirror;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/WallBlock/m_7357_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/pathfinder/PathComputationType;)Z net/minecraft/world/level/block/WallBlock/isPathfindable (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/pathfinder/PathComputationType;)Z +MD: net/minecraft/world/level/block/WallBlock/m_7417_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/WallBlock/updateShape (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/WallBlock/m_7420_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/level/block/WallBlock/propagatesSkylightDown (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/level/block/WallBlock/m_7926_ (Lnet/minecraft/world/level/block/state/StateDefinition$Builder;)V net/minecraft/world/level/block/WallBlock/createBlockStateDefinition (Lnet/minecraft/world/level/block/state/StateDefinition$Builder;)V +MD: net/minecraft/world/level/block/WallBlock$1/ ()V net/minecraft/world/level/block/WallBlock$1/ ()V +MD: net/minecraft/world/level/block/WallHangingSignBlock/ ()V net/minecraft/world/level/block/WallHangingSignBlock/ ()V +MD: net/minecraft/world/level/block/WallHangingSignBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;Lnet/minecraft/world/level/block/state/properties/WoodType;)V net/minecraft/world/level/block/WallHangingSignBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;Lnet/minecraft/world/level/block/state/properties/WoodType;)V +MD: net/minecraft/world/level/block/WallHangingSignBlock/m_142194_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/block/entity/BlockEntity; net/minecraft/world/level/block/WallHangingSignBlock/newBlockEntity (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/block/entity/BlockEntity; +MD: net/minecraft/world/level/block/WallHangingSignBlock/m_142354_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/entity/BlockEntityType;)Lnet/minecraft/world/level/block/entity/BlockEntityTicker; net/minecraft/world/level/block/WallHangingSignBlock/getTicker (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/entity/BlockEntityType;)Lnet/minecraft/world/level/block/entity/BlockEntityTicker; +MD: net/minecraft/world/level/block/WallHangingSignBlock/m_246366_ (Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Direction;)Z net/minecraft/world/level/block/WallHangingSignBlock/canAttachTo (Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Direction;)Z +MD: net/minecraft/world/level/block/WallHangingSignBlock/m_247551_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/level/block/WallHangingSignBlock/canPlace (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/level/block/WallHangingSignBlock/m_276903_ (Lnet/minecraft/world/level/block/state/BlockState;)F net/minecraft/world/level/block/WallHangingSignBlock/getYRotationDegrees (Lnet/minecraft/world/level/block/state/BlockState;)F +MD: net/minecraft/world/level/block/WallHangingSignBlock/m_278152_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/phys/BlockHitResult;Lnet/minecraft/world/level/block/entity/SignBlockEntity;Lnet/minecraft/world/item/ItemStack;)Z net/minecraft/world/level/block/WallHangingSignBlock/shouldTryToChainAnotherHangingSign (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/phys/BlockHitResult;Lnet/minecraft/world/level/block/entity/SignBlockEntity;Lnet/minecraft/world/item/ItemStack;)Z +MD: net/minecraft/world/level/block/WallHangingSignBlock/m_278170_ (Lnet/minecraft/world/phys/BlockHitResult;Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/world/level/block/WallHangingSignBlock/isHittingEditableSide (Lnet/minecraft/world/phys/BlockHitResult;Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/world/level/block/WallHangingSignBlock/m_5573_ (Lnet/minecraft/world/item/context/BlockPlaceContext;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/WallHangingSignBlock/getStateForPlacement (Lnet/minecraft/world/item/context/BlockPlaceContext;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/WallHangingSignBlock/m_5939_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; net/minecraft/world/level/block/WallHangingSignBlock/getCollisionShape (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; +MD: net/minecraft/world/level/block/WallHangingSignBlock/m_5940_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; net/minecraft/world/level/block/WallHangingSignBlock/getShape (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; +MD: net/minecraft/world/level/block/WallHangingSignBlock/m_6227_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;Lnet/minecraft/world/phys/BlockHitResult;)Lnet/minecraft/world/InteractionResult; net/minecraft/world/level/block/WallHangingSignBlock/use (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;Lnet/minecraft/world/phys/BlockHitResult;)Lnet/minecraft/world/InteractionResult; +MD: net/minecraft/world/level/block/WallHangingSignBlock/m_6843_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/Rotation;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/WallHangingSignBlock/rotate (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/Rotation;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/WallHangingSignBlock/m_6943_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/Mirror;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/WallHangingSignBlock/mirror (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/Mirror;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/WallHangingSignBlock/m_7357_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/pathfinder/PathComputationType;)Z net/minecraft/world/level/block/WallHangingSignBlock/isPathfindable (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/pathfinder/PathComputationType;)Z +MD: net/minecraft/world/level/block/WallHangingSignBlock/m_7417_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/WallHangingSignBlock/updateShape (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/WallHangingSignBlock/m_7705_ ()Ljava/lang/String; net/minecraft/world/level/block/WallHangingSignBlock/getDescriptionId ()Ljava/lang/String; +MD: net/minecraft/world/level/block/WallHangingSignBlock/m_7926_ (Lnet/minecraft/world/level/block/state/StateDefinition$Builder;)V net/minecraft/world/level/block/WallHangingSignBlock/createBlockStateDefinition (Lnet/minecraft/world/level/block/state/StateDefinition$Builder;)V +MD: net/minecraft/world/level/block/WallHangingSignBlock/m_7947_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/phys/shapes/VoxelShape; net/minecraft/world/level/block/WallHangingSignBlock/getBlockSupportShape (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/phys/shapes/VoxelShape; +MD: net/minecraft/world/level/block/WallHangingSignBlock$1/ ()V net/minecraft/world/level/block/WallHangingSignBlock$1/ ()V +MD: net/minecraft/world/level/block/WallSignBlock/ ()V net/minecraft/world/level/block/WallSignBlock/ ()V +MD: net/minecraft/world/level/block/WallSignBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;Lnet/minecraft/world/level/block/state/properties/WoodType;)V net/minecraft/world/level/block/WallSignBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;Lnet/minecraft/world/level/block/state/properties/WoodType;)V +MD: net/minecraft/world/level/block/WallSignBlock/m_276903_ (Lnet/minecraft/world/level/block/state/BlockState;)F net/minecraft/world/level/block/WallSignBlock/getYRotationDegrees (Lnet/minecraft/world/level/block/state/BlockState;)F +MD: net/minecraft/world/level/block/WallSignBlock/m_278172_ (Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/phys/Vec3; net/minecraft/world/level/block/WallSignBlock/getSignHitboxCenterPosition (Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/phys/Vec3; +MD: net/minecraft/world/level/block/WallSignBlock/m_5573_ (Lnet/minecraft/world/item/context/BlockPlaceContext;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/WallSignBlock/getStateForPlacement (Lnet/minecraft/world/item/context/BlockPlaceContext;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/WallSignBlock/m_5940_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; net/minecraft/world/level/block/WallSignBlock/getShape (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; +MD: net/minecraft/world/level/block/WallSignBlock/m_6843_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/Rotation;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/WallSignBlock/rotate (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/Rotation;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/WallSignBlock/m_6943_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/Mirror;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/WallSignBlock/mirror (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/Mirror;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/WallSignBlock/m_7417_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/WallSignBlock/updateShape (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/WallSignBlock/m_7705_ ()Ljava/lang/String; net/minecraft/world/level/block/WallSignBlock/getDescriptionId ()Ljava/lang/String; +MD: net/minecraft/world/level/block/WallSignBlock/m_7898_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/level/block/WallSignBlock/canSurvive (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/level/block/WallSignBlock/m_7926_ (Lnet/minecraft/world/level/block/state/StateDefinition$Builder;)V net/minecraft/world/level/block/WallSignBlock/createBlockStateDefinition (Lnet/minecraft/world/level/block/state/StateDefinition$Builder;)V +MD: net/minecraft/world/level/block/WallSkullBlock/ ()V net/minecraft/world/level/block/WallSkullBlock/ ()V +MD: net/minecraft/world/level/block/WallSkullBlock/ (Lnet/minecraft/world/level/block/SkullBlock$Type;Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V net/minecraft/world/level/block/WallSkullBlock/ (Lnet/minecraft/world/level/block/SkullBlock$Type;Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V +MD: net/minecraft/world/level/block/WallSkullBlock/m_5573_ (Lnet/minecraft/world/item/context/BlockPlaceContext;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/WallSkullBlock/getStateForPlacement (Lnet/minecraft/world/item/context/BlockPlaceContext;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/WallSkullBlock/m_5940_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; net/minecraft/world/level/block/WallSkullBlock/getShape (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; +MD: net/minecraft/world/level/block/WallSkullBlock/m_6843_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/Rotation;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/WallSkullBlock/rotate (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/Rotation;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/WallSkullBlock/m_6943_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/Mirror;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/WallSkullBlock/mirror (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/Mirror;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/WallSkullBlock/m_7705_ ()Ljava/lang/String; net/minecraft/world/level/block/WallSkullBlock/getDescriptionId ()Ljava/lang/String; +MD: net/minecraft/world/level/block/WallSkullBlock/m_7926_ (Lnet/minecraft/world/level/block/state/StateDefinition$Builder;)V net/minecraft/world/level/block/WallSkullBlock/createBlockStateDefinition (Lnet/minecraft/world/level/block/state/StateDefinition$Builder;)V +MD: net/minecraft/world/level/block/WallTorchBlock/ ()V net/minecraft/world/level/block/WallTorchBlock/ ()V +MD: net/minecraft/world/level/block/WallTorchBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;Lnet/minecraft/core/particles/ParticleOptions;)V net/minecraft/world/level/block/WallTorchBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;Lnet/minecraft/core/particles/ParticleOptions;)V +MD: net/minecraft/world/level/block/WallTorchBlock/m_214162_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)V net/minecraft/world/level/block/WallTorchBlock/animateTick (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)V +MD: net/minecraft/world/level/block/WallTorchBlock/m_5573_ (Lnet/minecraft/world/item/context/BlockPlaceContext;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/WallTorchBlock/getStateForPlacement (Lnet/minecraft/world/item/context/BlockPlaceContext;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/WallTorchBlock/m_58156_ (Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/phys/shapes/VoxelShape; net/minecraft/world/level/block/WallTorchBlock/getShape (Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/phys/shapes/VoxelShape; +MD: net/minecraft/world/level/block/WallTorchBlock/m_5940_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; net/minecraft/world/level/block/WallTorchBlock/getShape (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; +MD: net/minecraft/world/level/block/WallTorchBlock/m_6843_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/Rotation;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/WallTorchBlock/rotate (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/Rotation;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/WallTorchBlock/m_6943_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/Mirror;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/WallTorchBlock/mirror (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/Mirror;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/WallTorchBlock/m_7417_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/WallTorchBlock/updateShape (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/WallTorchBlock/m_7705_ ()Ljava/lang/String; net/minecraft/world/level/block/WallTorchBlock/getDescriptionId ()Ljava/lang/String; +MD: net/minecraft/world/level/block/WallTorchBlock/m_7898_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/level/block/WallTorchBlock/canSurvive (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/level/block/WallTorchBlock/m_7926_ (Lnet/minecraft/world/level/block/state/StateDefinition$Builder;)V net/minecraft/world/level/block/WallTorchBlock/createBlockStateDefinition (Lnet/minecraft/world/level/block/state/StateDefinition$Builder;)V +MD: net/minecraft/world/level/block/WaterlilyBlock/ ()V net/minecraft/world/level/block/WaterlilyBlock/ ()V +MD: net/minecraft/world/level/block/WaterlilyBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V net/minecraft/world/level/block/WaterlilyBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V +MD: net/minecraft/world/level/block/WaterlilyBlock/m_5940_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; net/minecraft/world/level/block/WaterlilyBlock/getShape (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; +MD: net/minecraft/world/level/block/WaterlilyBlock/m_6266_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/level/block/WaterlilyBlock/mayPlaceOn (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/level/block/WaterlilyBlock/m_7892_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/Entity;)V net/minecraft/world/level/block/WaterlilyBlock/entityInside (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/Entity;)V +MD: net/minecraft/world/level/block/WeatheringCopper/ ()V net/minecraft/world/level/block/WeatheringCopper/ ()V +MD: net/minecraft/world/level/block/WeatheringCopper/m_142123_ (Lnet/minecraft/world/level/block/state/BlockState;)Ljava/util/Optional; net/minecraft/world/level/block/WeatheringCopper/getNext (Lnet/minecraft/world/level/block/state/BlockState;)Ljava/util/Optional; +MD: net/minecraft/world/level/block/WeatheringCopper/m_142377_ ()F net/minecraft/world/level/block/WeatheringCopper/getChanceModifier ()F +MD: net/minecraft/world/level/block/WeatheringCopper/m_154890_ (Lnet/minecraft/world/level/block/Block;)Ljava/util/Optional; net/minecraft/world/level/block/WeatheringCopper/getPrevious (Lnet/minecraft/world/level/block/Block;)Ljava/util/Optional; +MD: net/minecraft/world/level/block/WeatheringCopper/m_154894_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/WeatheringCopper/lambda$getNext$3 (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/WeatheringCopper/m_154897_ (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/block/Block; net/minecraft/world/level/block/WeatheringCopper/getFirst (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/block/Block; +MD: net/minecraft/world/level/block/WeatheringCopper/m_154899_ (Lnet/minecraft/world/level/block/state/BlockState;)Ljava/util/Optional; net/minecraft/world/level/block/WeatheringCopper/getPrevious (Lnet/minecraft/world/level/block/state/BlockState;)Ljava/util/Optional; +MD: net/minecraft/world/level/block/WeatheringCopper/m_154901_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/WeatheringCopper/lambda$getPrevious$2 (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/WeatheringCopper/m_154904_ (Lnet/minecraft/world/level/block/Block;)Ljava/util/Optional; net/minecraft/world/level/block/WeatheringCopper/getNext (Lnet/minecraft/world/level/block/Block;)Ljava/util/Optional; +MD: net/minecraft/world/level/block/WeatheringCopper/m_154906_ (Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/WeatheringCopper/getFirst (Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/WeatheringCopper/m_154908_ ()Lcom/google/common/collect/BiMap; net/minecraft/world/level/block/WeatheringCopper/lambda$static$1 ()Lcom/google/common/collect/BiMap; +MD: net/minecraft/world/level/block/WeatheringCopper/m_154909_ ()Lcom/google/common/collect/BiMap; net/minecraft/world/level/block/WeatheringCopper/lambda$static$0 ()Lcom/google/common/collect/BiMap; +MD: net/minecraft/world/level/block/WeatheringCopper$WeatherState/ ()V net/minecraft/world/level/block/WeatheringCopper$WeatherState/ ()V +MD: net/minecraft/world/level/block/WeatheringCopper$WeatherState/ (Ljava/lang/String;I)V net/minecraft/world/level/block/WeatheringCopper$WeatherState/ (Ljava/lang/String;I)V +MD: net/minecraft/world/level/block/WeatheringCopper$WeatherState/m_154919_ ()[Lnet/minecraft/world/level/block/WeatheringCopper$WeatherState; net/minecraft/world/level/block/WeatheringCopper$WeatherState/$values ()[Lnet/minecraft/world/level/block/WeatheringCopper$WeatherState; +MD: net/minecraft/world/level/block/WeatheringCopper$WeatherState/valueOf (Ljava/lang/String;)Lnet/minecraft/world/level/block/WeatheringCopper$WeatherState; net/minecraft/world/level/block/WeatheringCopper$WeatherState/valueOf (Ljava/lang/String;)Lnet/minecraft/world/level/block/WeatheringCopper$WeatherState; +MD: net/minecraft/world/level/block/WeatheringCopper$WeatherState/values ()[Lnet/minecraft/world/level/block/WeatheringCopper$WeatherState; net/minecraft/world/level/block/WeatheringCopper$WeatherState/values ()[Lnet/minecraft/world/level/block/WeatheringCopper$WeatherState; +MD: net/minecraft/world/level/block/WeatheringCopperFullBlock/ (Lnet/minecraft/world/level/block/WeatheringCopper$WeatherState;Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V net/minecraft/world/level/block/WeatheringCopperFullBlock/ (Lnet/minecraft/world/level/block/WeatheringCopper$WeatherState;Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V +MD: net/minecraft/world/level/block/WeatheringCopperFullBlock/m_142297_ ()Lnet/minecraft/world/level/block/WeatheringCopper$WeatherState; net/minecraft/world/level/block/WeatheringCopperFullBlock/getAge ()Lnet/minecraft/world/level/block/WeatheringCopper$WeatherState; +MD: net/minecraft/world/level/block/WeatheringCopperFullBlock/m_142297_ ()Ljava/lang/Enum; net/minecraft/world/level/block/WeatheringCopperFullBlock/getAge ()Ljava/lang/Enum; +MD: net/minecraft/world/level/block/WeatheringCopperFullBlock/m_213898_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)V net/minecraft/world/level/block/WeatheringCopperFullBlock/randomTick (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)V +MD: net/minecraft/world/level/block/WeatheringCopperFullBlock/m_6724_ (Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/world/level/block/WeatheringCopperFullBlock/isRandomlyTicking (Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/world/level/block/WeatheringCopperSlabBlock/ (Lnet/minecraft/world/level/block/WeatheringCopper$WeatherState;Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V net/minecraft/world/level/block/WeatheringCopperSlabBlock/ (Lnet/minecraft/world/level/block/WeatheringCopper$WeatherState;Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V +MD: net/minecraft/world/level/block/WeatheringCopperSlabBlock/m_142297_ ()Lnet/minecraft/world/level/block/WeatheringCopper$WeatherState; net/minecraft/world/level/block/WeatheringCopperSlabBlock/getAge ()Lnet/minecraft/world/level/block/WeatheringCopper$WeatherState; +MD: net/minecraft/world/level/block/WeatheringCopperSlabBlock/m_142297_ ()Ljava/lang/Enum; net/minecraft/world/level/block/WeatheringCopperSlabBlock/getAge ()Ljava/lang/Enum; +MD: net/minecraft/world/level/block/WeatheringCopperSlabBlock/m_213898_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)V net/minecraft/world/level/block/WeatheringCopperSlabBlock/randomTick (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)V +MD: net/minecraft/world/level/block/WeatheringCopperSlabBlock/m_6724_ (Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/world/level/block/WeatheringCopperSlabBlock/isRandomlyTicking (Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/world/level/block/WeatheringCopperStairBlock/ (Lnet/minecraft/world/level/block/WeatheringCopper$WeatherState;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V net/minecraft/world/level/block/WeatheringCopperStairBlock/ (Lnet/minecraft/world/level/block/WeatheringCopper$WeatherState;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V +MD: net/minecraft/world/level/block/WeatheringCopperStairBlock/m_142297_ ()Lnet/minecraft/world/level/block/WeatheringCopper$WeatherState; net/minecraft/world/level/block/WeatheringCopperStairBlock/getAge ()Lnet/minecraft/world/level/block/WeatheringCopper$WeatherState; +MD: net/minecraft/world/level/block/WeatheringCopperStairBlock/m_142297_ ()Ljava/lang/Enum; net/minecraft/world/level/block/WeatheringCopperStairBlock/getAge ()Ljava/lang/Enum; +MD: net/minecraft/world/level/block/WeatheringCopperStairBlock/m_213898_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)V net/minecraft/world/level/block/WeatheringCopperStairBlock/randomTick (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)V +MD: net/minecraft/world/level/block/WeatheringCopperStairBlock/m_6724_ (Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/world/level/block/WeatheringCopperStairBlock/isRandomlyTicking (Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/world/level/block/WebBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V net/minecraft/world/level/block/WebBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V +MD: net/minecraft/world/level/block/WebBlock/m_7892_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/Entity;)V net/minecraft/world/level/block/WebBlock/entityInside (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/Entity;)V +MD: net/minecraft/world/level/block/WeepingVinesBlock/ ()V net/minecraft/world/level/block/WeepingVinesBlock/ ()V +MD: net/minecraft/world/level/block/WeepingVinesBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V net/minecraft/world/level/block/WeepingVinesBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V +MD: net/minecraft/world/level/block/WeepingVinesBlock/m_213627_ (Lnet/minecraft/util/RandomSource;)I net/minecraft/world/level/block/WeepingVinesBlock/getBlocksToGrowWhenBonemealed (Lnet/minecraft/util/RandomSource;)I +MD: net/minecraft/world/level/block/WeepingVinesBlock/m_5971_ (Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/world/level/block/WeepingVinesBlock/canGrowInto (Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/world/level/block/WeepingVinesBlock/m_7777_ ()Lnet/minecraft/world/level/block/Block; net/minecraft/world/level/block/WeepingVinesBlock/getBodyBlock ()Lnet/minecraft/world/level/block/Block; +MD: net/minecraft/world/level/block/WeepingVinesPlantBlock/ ()V net/minecraft/world/level/block/WeepingVinesPlantBlock/ ()V +MD: net/minecraft/world/level/block/WeepingVinesPlantBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V net/minecraft/world/level/block/WeepingVinesPlantBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V +MD: net/minecraft/world/level/block/WeepingVinesPlantBlock/m_7272_ ()Lnet/minecraft/world/level/block/GrowingPlantHeadBlock; net/minecraft/world/level/block/WeepingVinesPlantBlock/getHeadBlock ()Lnet/minecraft/world/level/block/GrowingPlantHeadBlock; +MD: net/minecraft/world/level/block/WeightedPressurePlateBlock/ ()V net/minecraft/world/level/block/WeightedPressurePlateBlock/ ()V +MD: net/minecraft/world/level/block/WeightedPressurePlateBlock/ (ILnet/minecraft/world/level/block/state/BlockBehaviour$Properties;Lnet/minecraft/world/level/block/state/properties/BlockSetType;)V net/minecraft/world/level/block/WeightedPressurePlateBlock/ (ILnet/minecraft/world/level/block/state/BlockBehaviour$Properties;Lnet/minecraft/world/level/block/state/properties/BlockSetType;)V +MD: net/minecraft/world/level/block/WeightedPressurePlateBlock/m_6016_ (Lnet/minecraft/world/level/block/state/BlockState;)I net/minecraft/world/level/block/WeightedPressurePlateBlock/getSignalForState (Lnet/minecraft/world/level/block/state/BlockState;)I +MD: net/minecraft/world/level/block/WeightedPressurePlateBlock/m_6693_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;)I net/minecraft/world/level/block/WeightedPressurePlateBlock/getSignalStrength (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;)I +MD: net/minecraft/world/level/block/WeightedPressurePlateBlock/m_7342_ ()I net/minecraft/world/level/block/WeightedPressurePlateBlock/getPressedTime ()I +MD: net/minecraft/world/level/block/WeightedPressurePlateBlock/m_7422_ (Lnet/minecraft/world/level/block/state/BlockState;I)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/WeightedPressurePlateBlock/setSignalForState (Lnet/minecraft/world/level/block/state/BlockState;I)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/WeightedPressurePlateBlock/m_7926_ (Lnet/minecraft/world/level/block/state/StateDefinition$Builder;)V net/minecraft/world/level/block/WeightedPressurePlateBlock/createBlockStateDefinition (Lnet/minecraft/world/level/block/state/StateDefinition$Builder;)V +MD: net/minecraft/world/level/block/WetSpongeBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V net/minecraft/world/level/block/WetSpongeBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V +MD: net/minecraft/world/level/block/WetSpongeBlock/m_214162_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)V net/minecraft/world/level/block/WetSpongeBlock/animateTick (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)V +MD: net/minecraft/world/level/block/WetSpongeBlock/m_6807_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Z)V net/minecraft/world/level/block/WetSpongeBlock/onPlace (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Z)V +MD: net/minecraft/world/level/block/WitherRoseBlock/ (Lnet/minecraft/world/effect/MobEffect;Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V net/minecraft/world/level/block/WitherRoseBlock/ (Lnet/minecraft/world/effect/MobEffect;Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V +MD: net/minecraft/world/level/block/WitherRoseBlock/m_214162_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)V net/minecraft/world/level/block/WitherRoseBlock/animateTick (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)V +MD: net/minecraft/world/level/block/WitherRoseBlock/m_6266_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/level/block/WitherRoseBlock/mayPlaceOn (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/level/block/WitherRoseBlock/m_7892_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/Entity;)V net/minecraft/world/level/block/WitherRoseBlock/entityInside (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/Entity;)V +MD: net/minecraft/world/level/block/WitherSkullBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V net/minecraft/world/level/block/WitherSkullBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V +MD: net/minecraft/world/level/block/WitherSkullBlock/m_284101_ (Lnet/minecraft/world/level/block/state/pattern/BlockInWorld;)Z net/minecraft/world/level/block/WitherSkullBlock/lambda$getOrCreateWitherFull$1 (Lnet/minecraft/world/level/block/state/pattern/BlockInWorld;)Z +MD: net/minecraft/world/level/block/WitherSkullBlock/m_284102_ (Lnet/minecraft/world/level/block/state/pattern/BlockInWorld;)Z net/minecraft/world/level/block/WitherSkullBlock/lambda$getOrCreateWitherBase$3 (Lnet/minecraft/world/level/block/state/pattern/BlockInWorld;)Z +MD: net/minecraft/world/level/block/WitherSkullBlock/m_58255_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/entity/SkullBlockEntity;)V net/minecraft/world/level/block/WitherSkullBlock/checkSpawn (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/entity/SkullBlockEntity;)V +MD: net/minecraft/world/level/block/WitherSkullBlock/m_58265_ (Lnet/minecraft/world/level/block/state/pattern/BlockInWorld;)Z net/minecraft/world/level/block/WitherSkullBlock/lambda$getOrCreateWitherBase$2 (Lnet/minecraft/world/level/block/state/pattern/BlockInWorld;)Z +MD: net/minecraft/world/level/block/WitherSkullBlock/m_58267_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/item/ItemStack;)Z net/minecraft/world/level/block/WitherSkullBlock/canSpawnMob (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/item/ItemStack;)Z +MD: net/minecraft/world/level/block/WitherSkullBlock/m_58271_ (Lnet/minecraft/world/level/block/state/pattern/BlockInWorld;)Z net/minecraft/world/level/block/WitherSkullBlock/lambda$getOrCreateWitherFull$0 (Lnet/minecraft/world/level/block/state/pattern/BlockInWorld;)Z +MD: net/minecraft/world/level/block/WitherSkullBlock/m_58273_ ()Lnet/minecraft/world/level/block/state/pattern/BlockPattern; net/minecraft/world/level/block/WitherSkullBlock/getOrCreateWitherFull ()Lnet/minecraft/world/level/block/state/pattern/BlockPattern; +MD: net/minecraft/world/level/block/WitherSkullBlock/m_58274_ ()Lnet/minecraft/world/level/block/state/pattern/BlockPattern; net/minecraft/world/level/block/WitherSkullBlock/getOrCreateWitherBase ()Lnet/minecraft/world/level/block/state/pattern/BlockPattern; +MD: net/minecraft/world/level/block/WitherSkullBlock/m_6402_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/item/ItemStack;)V net/minecraft/world/level/block/WitherSkullBlock/setPlacedBy (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/item/ItemStack;)V +MD: net/minecraft/world/level/block/WitherWallSkullBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V net/minecraft/world/level/block/WitherWallSkullBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V +MD: net/minecraft/world/level/block/WitherWallSkullBlock/m_6402_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/item/ItemStack;)V net/minecraft/world/level/block/WitherWallSkullBlock/setPlacedBy (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/item/ItemStack;)V +MD: net/minecraft/world/level/block/WoolCarpetBlock/ (Lnet/minecraft/world/item/DyeColor;Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V net/minecraft/world/level/block/WoolCarpetBlock/ (Lnet/minecraft/world/item/DyeColor;Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V +MD: net/minecraft/world/level/block/WoolCarpetBlock/m_58309_ ()Lnet/minecraft/world/item/DyeColor; net/minecraft/world/level/block/WoolCarpetBlock/getColor ()Lnet/minecraft/world/item/DyeColor; +MD: net/minecraft/world/level/block/entity/AbstractFurnaceBlockEntity/ ()V net/minecraft/world/level/block/entity/AbstractFurnaceBlockEntity/ ()V +MD: net/minecraft/world/level/block/entity/AbstractFurnaceBlockEntity/ (Lnet/minecraft/world/level/block/entity/BlockEntityType;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/item/crafting/RecipeType;)V net/minecraft/world/level/block/entity/AbstractFurnaceBlockEntity/ (Lnet/minecraft/world/level/block/entity/BlockEntityType;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/item/crafting/RecipeType;)V +MD: net/minecraft/world/level/block/entity/AbstractFurnaceBlockEntity/m_142466_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/level/block/entity/AbstractFurnaceBlockEntity/load (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/level/block/entity/AbstractFurnaceBlockEntity/m_154995_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/phys/Vec3;)Ljava/util/List; net/minecraft/world/level/block/entity/AbstractFurnaceBlockEntity/getRecipesToAwardAndPopExperience (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/phys/Vec3;)Ljava/util/List; +MD: net/minecraft/world/level/block/entity/AbstractFurnaceBlockEntity/m_154998_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/phys/Vec3;IF)V net/minecraft/world/level/block/entity/AbstractFurnaceBlockEntity/createExperience (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/phys/Vec3;IF)V +MD: net/minecraft/world/level/block/entity/AbstractFurnaceBlockEntity/m_155003_ (Lnet/minecraft/server/level/ServerPlayer;)V net/minecraft/world/level/block/entity/AbstractFurnaceBlockEntity/awardUsedRecipesAndPopExperience (Lnet/minecraft/server/level/ServerPlayer;)V +MD: net/minecraft/world/level/block/entity/AbstractFurnaceBlockEntity/m_155005_ (Lnet/minecraft/core/RegistryAccess;Lnet/minecraft/world/item/crafting/Recipe;Lnet/minecraft/core/NonNullList;I)Z net/minecraft/world/level/block/entity/AbstractFurnaceBlockEntity/canBurn (Lnet/minecraft/core/RegistryAccess;Lnet/minecraft/world/item/crafting/Recipe;Lnet/minecraft/core/NonNullList;I)Z +MD: net/minecraft/world/level/block/entity/AbstractFurnaceBlockEntity/m_155013_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/entity/AbstractFurnaceBlockEntity;)V net/minecraft/world/level/block/entity/AbstractFurnaceBlockEntity/serverTick (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/entity/AbstractFurnaceBlockEntity;)V +MD: net/minecraft/world/level/block/entity/AbstractFurnaceBlockEntity/m_155018_ (Ljava/util/List;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/phys/Vec3;Lit/unimi/dsi/fastutil/objects/Object2IntMap$Entry;Lnet/minecraft/world/item/crafting/Recipe;)V net/minecraft/world/level/block/entity/AbstractFurnaceBlockEntity/lambda$getRecipesToAwardAndPopExperience$1 (Ljava/util/List;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/phys/Vec3;Lit/unimi/dsi/fastutil/objects/Object2IntMap$Entry;Lnet/minecraft/world/item/crafting/Recipe;)V +MD: net/minecraft/world/level/block/entity/AbstractFurnaceBlockEntity/m_183515_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/level/block/entity/AbstractFurnaceBlockEntity/saveAdditional (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/level/block/entity/AbstractFurnaceBlockEntity/m_187447_ (Lnet/minecraft/nbt/CompoundTag;Lnet/minecraft/resources/ResourceLocation;Ljava/lang/Integer;)V net/minecraft/world/level/block/entity/AbstractFurnaceBlockEntity/lambda$saveAdditional$0 (Lnet/minecraft/nbt/CompoundTag;Lnet/minecraft/resources/ResourceLocation;Ljava/lang/Integer;)V +MD: net/minecraft/world/level/block/entity/AbstractFurnaceBlockEntity/m_204302_ (Ljava/util/Map;Lnet/minecraft/tags/TagKey;I)V net/minecraft/world/level/block/entity/AbstractFurnaceBlockEntity/add (Ljava/util/Map;Lnet/minecraft/tags/TagKey;I)V +MD: net/minecraft/world/level/block/entity/AbstractFurnaceBlockEntity/m_222692_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/level/block/entity/AbstractFurnaceBlockEntity;)I net/minecraft/world/level/block/entity/AbstractFurnaceBlockEntity/getTotalCookTime (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/level/block/entity/AbstractFurnaceBlockEntity;)I +MD: net/minecraft/world/level/block/entity/AbstractFurnaceBlockEntity/m_266209_ (Lnet/minecraft/core/RegistryAccess;Lnet/minecraft/world/item/crafting/Recipe;Lnet/minecraft/core/NonNullList;I)Z net/minecraft/world/level/block/entity/AbstractFurnaceBlockEntity/burn (Lnet/minecraft/core/RegistryAccess;Lnet/minecraft/world/item/crafting/Recipe;Lnet/minecraft/core/NonNullList;I)Z +MD: net/minecraft/world/level/block/entity/AbstractFurnaceBlockEntity/m_5809_ (Lnet/minecraft/world/entity/player/StackedContents;)V net/minecraft/world/level/block/entity/AbstractFurnaceBlockEntity/fillStackedContents (Lnet/minecraft/world/entity/player/StackedContents;)V +MD: net/minecraft/world/level/block/entity/AbstractFurnaceBlockEntity/m_58374_ (Ljava/util/Map;Lnet/minecraft/world/level/ItemLike;I)V net/minecraft/world/level/block/entity/AbstractFurnaceBlockEntity/add (Ljava/util/Map;Lnet/minecraft/world/level/ItemLike;I)V +MD: net/minecraft/world/level/block/entity/AbstractFurnaceBlockEntity/m_58395_ (Lnet/minecraft/world/entity/player/Player;Ljava/util/List;)V net/minecraft/world/level/block/entity/AbstractFurnaceBlockEntity/awardUsedRecipes (Lnet/minecraft/world/entity/player/Player;Ljava/util/List;)V +MD: net/minecraft/world/level/block/entity/AbstractFurnaceBlockEntity/m_58397_ (Lnet/minecraft/world/item/Item;)Z net/minecraft/world/level/block/entity/AbstractFurnaceBlockEntity/isNeverAFurnaceFuel (Lnet/minecraft/world/item/Item;)Z +MD: net/minecraft/world/level/block/entity/AbstractFurnaceBlockEntity/m_58399_ (Lnet/minecraft/world/item/ItemStack;)Z net/minecraft/world/level/block/entity/AbstractFurnaceBlockEntity/isFuel (Lnet/minecraft/world/item/ItemStack;)Z +MD: net/minecraft/world/level/block/entity/AbstractFurnaceBlockEntity/m_58423_ ()Ljava/util/Map; net/minecraft/world/level/block/entity/AbstractFurnaceBlockEntity/getFuel ()Ljava/util/Map; +MD: net/minecraft/world/level/block/entity/AbstractFurnaceBlockEntity/m_58425_ ()Z net/minecraft/world/level/block/entity/AbstractFurnaceBlockEntity/isLit ()Z +MD: net/minecraft/world/level/block/entity/AbstractFurnaceBlockEntity/m_6029_ (Lnet/minecraft/world/item/crafting/Recipe;)V net/minecraft/world/level/block/entity/AbstractFurnaceBlockEntity/setRecipeUsed (Lnet/minecraft/world/item/crafting/Recipe;)V +MD: net/minecraft/world/level/block/entity/AbstractFurnaceBlockEntity/m_6211_ ()V net/minecraft/world/level/block/entity/AbstractFurnaceBlockEntity/clearContent ()V +MD: net/minecraft/world/level/block/entity/AbstractFurnaceBlockEntity/m_6542_ (Lnet/minecraft/world/entity/player/Player;)Z net/minecraft/world/level/block/entity/AbstractFurnaceBlockEntity/stillValid (Lnet/minecraft/world/entity/player/Player;)Z +MD: net/minecraft/world/level/block/entity/AbstractFurnaceBlockEntity/m_6643_ ()I net/minecraft/world/level/block/entity/AbstractFurnaceBlockEntity/getContainerSize ()I +MD: net/minecraft/world/level/block/entity/AbstractFurnaceBlockEntity/m_6836_ (ILnet/minecraft/world/item/ItemStack;)V net/minecraft/world/level/block/entity/AbstractFurnaceBlockEntity/setItem (ILnet/minecraft/world/item/ItemStack;)V +MD: net/minecraft/world/level/block/entity/AbstractFurnaceBlockEntity/m_7013_ (ILnet/minecraft/world/item/ItemStack;)Z net/minecraft/world/level/block/entity/AbstractFurnaceBlockEntity/canPlaceItem (ILnet/minecraft/world/item/ItemStack;)Z +MD: net/minecraft/world/level/block/entity/AbstractFurnaceBlockEntity/m_7071_ (Lnet/minecraft/core/Direction;)[I net/minecraft/world/level/block/entity/AbstractFurnaceBlockEntity/getSlotsForFace (Lnet/minecraft/core/Direction;)[I +MD: net/minecraft/world/level/block/entity/AbstractFurnaceBlockEntity/m_7155_ (ILnet/minecraft/world/item/ItemStack;Lnet/minecraft/core/Direction;)Z net/minecraft/world/level/block/entity/AbstractFurnaceBlockEntity/canPlaceItemThroughFace (ILnet/minecraft/world/item/ItemStack;Lnet/minecraft/core/Direction;)Z +MD: net/minecraft/world/level/block/entity/AbstractFurnaceBlockEntity/m_7157_ (ILnet/minecraft/world/item/ItemStack;Lnet/minecraft/core/Direction;)Z net/minecraft/world/level/block/entity/AbstractFurnaceBlockEntity/canTakeItemThroughFace (ILnet/minecraft/world/item/ItemStack;Lnet/minecraft/core/Direction;)Z +MD: net/minecraft/world/level/block/entity/AbstractFurnaceBlockEntity/m_7407_ (II)Lnet/minecraft/world/item/ItemStack; net/minecraft/world/level/block/entity/AbstractFurnaceBlockEntity/removeItem (II)Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/level/block/entity/AbstractFurnaceBlockEntity/m_7743_ (Lnet/minecraft/world/item/ItemStack;)I net/minecraft/world/level/block/entity/AbstractFurnaceBlockEntity/getBurnDuration (Lnet/minecraft/world/item/ItemStack;)I +MD: net/minecraft/world/level/block/entity/AbstractFurnaceBlockEntity/m_7928_ ()Lnet/minecraft/world/item/crafting/Recipe; net/minecraft/world/level/block/entity/AbstractFurnaceBlockEntity/getRecipeUsed ()Lnet/minecraft/world/item/crafting/Recipe; +MD: net/minecraft/world/level/block/entity/AbstractFurnaceBlockEntity/m_7983_ ()Z net/minecraft/world/level/block/entity/AbstractFurnaceBlockEntity/isEmpty ()Z +MD: net/minecraft/world/level/block/entity/AbstractFurnaceBlockEntity/m_8016_ (I)Lnet/minecraft/world/item/ItemStack; net/minecraft/world/level/block/entity/AbstractFurnaceBlockEntity/removeItemNoUpdate (I)Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/level/block/entity/AbstractFurnaceBlockEntity/m_8020_ (I)Lnet/minecraft/world/item/ItemStack; net/minecraft/world/level/block/entity/AbstractFurnaceBlockEntity/getItem (I)Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/level/block/entity/AbstractFurnaceBlockEntity$1/ (Lnet/minecraft/world/level/block/entity/AbstractFurnaceBlockEntity;)V net/minecraft/world/level/block/entity/AbstractFurnaceBlockEntity$1/ (Lnet/minecraft/world/level/block/entity/AbstractFurnaceBlockEntity;)V +MD: net/minecraft/world/level/block/entity/AbstractFurnaceBlockEntity$1/m_6413_ (I)I net/minecraft/world/level/block/entity/AbstractFurnaceBlockEntity$1/get (I)I +MD: net/minecraft/world/level/block/entity/AbstractFurnaceBlockEntity$1/m_6499_ ()I net/minecraft/world/level/block/entity/AbstractFurnaceBlockEntity$1/getCount ()I +MD: net/minecraft/world/level/block/entity/AbstractFurnaceBlockEntity$1/m_8050_ (II)V net/minecraft/world/level/block/entity/AbstractFurnaceBlockEntity$1/set (II)V +MD: net/minecraft/world/level/block/entity/BannerBlockEntity/ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/item/DyeColor;)V net/minecraft/world/level/block/entity/BannerBlockEntity/ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/item/DyeColor;)V +MD: net/minecraft/world/level/block/entity/BannerBlockEntity/ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V net/minecraft/world/level/block/entity/BannerBlockEntity/ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V +MD: net/minecraft/world/level/block/entity/BannerBlockEntity/m_142466_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/level/block/entity/BannerBlockEntity/load (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/level/block/entity/BannerBlockEntity/m_155043_ ()Lnet/minecraft/world/item/ItemStack; net/minecraft/world/level/block/entity/BannerBlockEntity/getItem ()Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/level/block/entity/BannerBlockEntity/m_155044_ ()Lnet/minecraft/world/item/DyeColor; net/minecraft/world/level/block/entity/BannerBlockEntity/getBaseColor ()Lnet/minecraft/world/item/DyeColor; +MD: net/minecraft/world/level/block/entity/BannerBlockEntity/m_183515_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/level/block/entity/BannerBlockEntity/saveAdditional (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/level/block/entity/BannerBlockEntity/m_187453_ (Lnet/minecraft/world/item/ItemStack;)V net/minecraft/world/level/block/entity/BannerBlockEntity/fromItem (Lnet/minecraft/world/item/ItemStack;)V +MD: net/minecraft/world/level/block/entity/BannerBlockEntity/m_58483_ ()Lnet/minecraft/network/protocol/Packet; net/minecraft/world/level/block/entity/BannerBlockEntity/getUpdatePacket ()Lnet/minecraft/network/protocol/Packet; +MD: net/minecraft/world/level/block/entity/BannerBlockEntity/m_58483_ ()Lnet/minecraft/network/protocol/game/ClientboundBlockEntityDataPacket; net/minecraft/world/level/block/entity/BannerBlockEntity/getUpdatePacket ()Lnet/minecraft/network/protocol/game/ClientboundBlockEntityDataPacket; +MD: net/minecraft/world/level/block/entity/BannerBlockEntity/m_58484_ (Lnet/minecraft/world/item/DyeColor;Lnet/minecraft/nbt/ListTag;)Ljava/util/List; net/minecraft/world/level/block/entity/BannerBlockEntity/createPatterns (Lnet/minecraft/world/item/DyeColor;Lnet/minecraft/nbt/ListTag;)Ljava/util/List; +MD: net/minecraft/world/level/block/entity/BannerBlockEntity/m_58487_ (Lnet/minecraft/world/item/ItemStack;)Lnet/minecraft/nbt/ListTag; net/minecraft/world/level/block/entity/BannerBlockEntity/getItemPatterns (Lnet/minecraft/world/item/ItemStack;)Lnet/minecraft/nbt/ListTag; +MD: net/minecraft/world/level/block/entity/BannerBlockEntity/m_58489_ (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/item/DyeColor;)V net/minecraft/world/level/block/entity/BannerBlockEntity/fromItem (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/item/DyeColor;)V +MD: net/minecraft/world/level/block/entity/BannerBlockEntity/m_58501_ (Lnet/minecraft/network/chat/Component;)V net/minecraft/world/level/block/entity/BannerBlockEntity/setCustomName (Lnet/minecraft/network/chat/Component;)V +MD: net/minecraft/world/level/block/entity/BannerBlockEntity/m_58504_ (Lnet/minecraft/world/item/ItemStack;)I net/minecraft/world/level/block/entity/BannerBlockEntity/getPatternCount (Lnet/minecraft/world/item/ItemStack;)I +MD: net/minecraft/world/level/block/entity/BannerBlockEntity/m_58508_ ()Ljava/util/List; net/minecraft/world/level/block/entity/BannerBlockEntity/getPatterns ()Ljava/util/List; +MD: net/minecraft/world/level/block/entity/BannerBlockEntity/m_58509_ (Lnet/minecraft/world/item/ItemStack;)V net/minecraft/world/level/block/entity/BannerBlockEntity/removeLastPattern (Lnet/minecraft/world/item/ItemStack;)V +MD: net/minecraft/world/level/block/entity/BannerBlockEntity/m_5995_ ()Lnet/minecraft/nbt/CompoundTag; net/minecraft/world/level/block/entity/BannerBlockEntity/getUpdateTag ()Lnet/minecraft/nbt/CompoundTag; +MD: net/minecraft/world/level/block/entity/BannerBlockEntity/m_7755_ ()Lnet/minecraft/network/chat/Component; net/minecraft/world/level/block/entity/BannerBlockEntity/getName ()Lnet/minecraft/network/chat/Component; +MD: net/minecraft/world/level/block/entity/BannerBlockEntity/m_7770_ ()Lnet/minecraft/network/chat/Component; net/minecraft/world/level/block/entity/BannerBlockEntity/getCustomName ()Lnet/minecraft/network/chat/Component; +MD: net/minecraft/world/level/block/entity/BannerPattern/ (Ljava/lang/String;)V net/minecraft/world/level/block/entity/BannerPattern/ (Ljava/lang/String;)V +MD: net/minecraft/world/level/block/entity/BannerPattern/m_222697_ (Lnet/minecraft/resources/ResourceKey;Z)Lnet/minecraft/resources/ResourceLocation; net/minecraft/world/level/block/entity/BannerPattern/location (Lnet/minecraft/resources/ResourceKey;Z)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/world/level/block/entity/BannerPattern/m_222700_ (Ljava/lang/String;)Lnet/minecraft/core/Holder; net/minecraft/world/level/block/entity/BannerPattern/byHash (Ljava/lang/String;)Lnet/minecraft/core/Holder; +MD: net/minecraft/world/level/block/entity/BannerPattern/m_222702_ (Ljava/lang/String;Lnet/minecraft/core/Holder$Reference;)Z net/minecraft/world/level/block/entity/BannerPattern/lambda$byHash$0 (Ljava/lang/String;Lnet/minecraft/core/Holder$Reference;)Z +MD: net/minecraft/world/level/block/entity/BannerPattern/m_58579_ ()Ljava/lang/String; net/minecraft/world/level/block/entity/BannerPattern/getHashname ()Ljava/lang/String; +MD: net/minecraft/world/level/block/entity/BannerPattern$Builder/ ()V net/minecraft/world/level/block/entity/BannerPattern$Builder/ ()V +MD: net/minecraft/world/level/block/entity/BannerPattern$Builder/m_155048_ (Lcom/mojang/datafixers/util/Pair;)Lnet/minecraft/world/level/block/entity/BannerPattern$Builder; net/minecraft/world/level/block/entity/BannerPattern$Builder/addPattern (Lcom/mojang/datafixers/util/Pair;)Lnet/minecraft/world/level/block/entity/BannerPattern$Builder; +MD: net/minecraft/world/level/block/entity/BannerPattern$Builder/m_222705_ (Lnet/minecraft/resources/ResourceKey;Lnet/minecraft/world/item/DyeColor;)Lnet/minecraft/world/level/block/entity/BannerPattern$Builder; net/minecraft/world/level/block/entity/BannerPattern$Builder/addPattern (Lnet/minecraft/resources/ResourceKey;Lnet/minecraft/world/item/DyeColor;)Lnet/minecraft/world/level/block/entity/BannerPattern$Builder; +MD: net/minecraft/world/level/block/entity/BannerPattern$Builder/m_222708_ (Lnet/minecraft/core/Holder;Lnet/minecraft/world/item/DyeColor;)Lnet/minecraft/world/level/block/entity/BannerPattern$Builder; net/minecraft/world/level/block/entity/BannerPattern$Builder/addPattern (Lnet/minecraft/core/Holder;Lnet/minecraft/world/item/DyeColor;)Lnet/minecraft/world/level/block/entity/BannerPattern$Builder; +MD: net/minecraft/world/level/block/entity/BannerPattern$Builder/m_58587_ ()Lnet/minecraft/nbt/ListTag; net/minecraft/world/level/block/entity/BannerPattern$Builder/toListTag ()Lnet/minecraft/nbt/ListTag; +MD: net/minecraft/world/level/block/entity/BannerPatterns/ ()V net/minecraft/world/level/block/entity/BannerPatterns/ ()V +MD: net/minecraft/world/level/block/entity/BannerPatterns/ ()V net/minecraft/world/level/block/entity/BannerPatterns/ ()V +MD: net/minecraft/world/level/block/entity/BannerPatterns/m_222754_ (Lnet/minecraft/core/Registry;)Lnet/minecraft/world/level/block/entity/BannerPattern; net/minecraft/world/level/block/entity/BannerPatterns/bootstrap (Lnet/minecraft/core/Registry;)Lnet/minecraft/world/level/block/entity/BannerPattern; +MD: net/minecraft/world/level/block/entity/BannerPatterns/m_222756_ (Ljava/lang/String;)Lnet/minecraft/resources/ResourceKey; net/minecraft/world/level/block/entity/BannerPatterns/create (Ljava/lang/String;)Lnet/minecraft/resources/ResourceKey; +MD: net/minecraft/world/level/block/entity/BarrelBlockEntity/ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V net/minecraft/world/level/block/entity/BarrelBlockEntity/ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V +MD: net/minecraft/world/level/block/entity/BarrelBlockEntity/m_142466_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/level/block/entity/BarrelBlockEntity/load (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/level/block/entity/BarrelBlockEntity/m_183515_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/level/block/entity/BarrelBlockEntity/saveAdditional (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/level/block/entity/BarrelBlockEntity/m_5785_ (Lnet/minecraft/world/entity/player/Player;)V net/minecraft/world/level/block/entity/BarrelBlockEntity/stopOpen (Lnet/minecraft/world/entity/player/Player;)V +MD: net/minecraft/world/level/block/entity/BarrelBlockEntity/m_5856_ (Lnet/minecraft/world/entity/player/Player;)V net/minecraft/world/level/block/entity/BarrelBlockEntity/startOpen (Lnet/minecraft/world/entity/player/Player;)V +MD: net/minecraft/world/level/block/entity/BarrelBlockEntity/m_58600_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/sounds/SoundEvent;)V net/minecraft/world/level/block/entity/BarrelBlockEntity/playSound (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/sounds/SoundEvent;)V +MD: net/minecraft/world/level/block/entity/BarrelBlockEntity/m_58606_ (Lnet/minecraft/world/level/block/state/BlockState;Z)V net/minecraft/world/level/block/entity/BarrelBlockEntity/updateBlockState (Lnet/minecraft/world/level/block/state/BlockState;Z)V +MD: net/minecraft/world/level/block/entity/BarrelBlockEntity/m_58619_ ()V net/minecraft/world/level/block/entity/BarrelBlockEntity/recheckOpen ()V +MD: net/minecraft/world/level/block/entity/BarrelBlockEntity/m_6520_ (Lnet/minecraft/core/NonNullList;)V net/minecraft/world/level/block/entity/BarrelBlockEntity/setItems (Lnet/minecraft/core/NonNullList;)V +MD: net/minecraft/world/level/block/entity/BarrelBlockEntity/m_6555_ (ILnet/minecraft/world/entity/player/Inventory;)Lnet/minecraft/world/inventory/AbstractContainerMenu; net/minecraft/world/level/block/entity/BarrelBlockEntity/createMenu (ILnet/minecraft/world/entity/player/Inventory;)Lnet/minecraft/world/inventory/AbstractContainerMenu; +MD: net/minecraft/world/level/block/entity/BarrelBlockEntity/m_6643_ ()I net/minecraft/world/level/block/entity/BarrelBlockEntity/getContainerSize ()I +MD: net/minecraft/world/level/block/entity/BarrelBlockEntity/m_6820_ ()Lnet/minecraft/network/chat/Component; net/minecraft/world/level/block/entity/BarrelBlockEntity/getDefaultName ()Lnet/minecraft/network/chat/Component; +MD: net/minecraft/world/level/block/entity/BarrelBlockEntity/m_7086_ ()Lnet/minecraft/core/NonNullList; net/minecraft/world/level/block/entity/BarrelBlockEntity/getItems ()Lnet/minecraft/core/NonNullList; +MD: net/minecraft/world/level/block/entity/BarrelBlockEntity$1/ (Lnet/minecraft/world/level/block/entity/BarrelBlockEntity;)V net/minecraft/world/level/block/entity/BarrelBlockEntity$1/ (Lnet/minecraft/world/level/block/entity/BarrelBlockEntity;)V +MD: net/minecraft/world/level/block/entity/BarrelBlockEntity$1/m_142148_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;II)V net/minecraft/world/level/block/entity/BarrelBlockEntity$1/openerCountChanged (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;II)V +MD: net/minecraft/world/level/block/entity/BarrelBlockEntity$1/m_142289_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V net/minecraft/world/level/block/entity/BarrelBlockEntity$1/onClose (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V +MD: net/minecraft/world/level/block/entity/BarrelBlockEntity$1/m_142292_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V net/minecraft/world/level/block/entity/BarrelBlockEntity$1/onOpen (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V +MD: net/minecraft/world/level/block/entity/BarrelBlockEntity$1/m_142718_ (Lnet/minecraft/world/entity/player/Player;)Z net/minecraft/world/level/block/entity/BarrelBlockEntity$1/isOwnContainer (Lnet/minecraft/world/entity/player/Player;)Z +MD: net/minecraft/world/level/block/entity/BaseContainerBlockEntity/ (Lnet/minecraft/world/level/block/entity/BlockEntityType;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V net/minecraft/world/level/block/entity/BaseContainerBlockEntity/ (Lnet/minecraft/world/level/block/entity/BlockEntityType;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V +MD: net/minecraft/world/level/block/entity/BaseContainerBlockEntity/m_142466_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/level/block/entity/BaseContainerBlockEntity/load (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/level/block/entity/BaseContainerBlockEntity/m_183515_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/level/block/entity/BaseContainerBlockEntity/saveAdditional (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/level/block/entity/BaseContainerBlockEntity/m_5446_ ()Lnet/minecraft/network/chat/Component; net/minecraft/world/level/block/entity/BaseContainerBlockEntity/getDisplayName ()Lnet/minecraft/network/chat/Component; +MD: net/minecraft/world/level/block/entity/BaseContainerBlockEntity/m_58629_ (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/LockCode;Lnet/minecraft/network/chat/Component;)Z net/minecraft/world/level/block/entity/BaseContainerBlockEntity/canUnlock (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/LockCode;Lnet/minecraft/network/chat/Component;)Z +MD: net/minecraft/world/level/block/entity/BaseContainerBlockEntity/m_58638_ (Lnet/minecraft/network/chat/Component;)V net/minecraft/world/level/block/entity/BaseContainerBlockEntity/setCustomName (Lnet/minecraft/network/chat/Component;)V +MD: net/minecraft/world/level/block/entity/BaseContainerBlockEntity/m_6555_ (ILnet/minecraft/world/entity/player/Inventory;)Lnet/minecraft/world/inventory/AbstractContainerMenu; net/minecraft/world/level/block/entity/BaseContainerBlockEntity/createMenu (ILnet/minecraft/world/entity/player/Inventory;)Lnet/minecraft/world/inventory/AbstractContainerMenu; +MD: net/minecraft/world/level/block/entity/BaseContainerBlockEntity/m_6820_ ()Lnet/minecraft/network/chat/Component; net/minecraft/world/level/block/entity/BaseContainerBlockEntity/getDefaultName ()Lnet/minecraft/network/chat/Component; +MD: net/minecraft/world/level/block/entity/BaseContainerBlockEntity/m_7208_ (ILnet/minecraft/world/entity/player/Inventory;Lnet/minecraft/world/entity/player/Player;)Lnet/minecraft/world/inventory/AbstractContainerMenu; net/minecraft/world/level/block/entity/BaseContainerBlockEntity/createMenu (ILnet/minecraft/world/entity/player/Inventory;Lnet/minecraft/world/entity/player/Player;)Lnet/minecraft/world/inventory/AbstractContainerMenu; +MD: net/minecraft/world/level/block/entity/BaseContainerBlockEntity/m_7525_ (Lnet/minecraft/world/entity/player/Player;)Z net/minecraft/world/level/block/entity/BaseContainerBlockEntity/canOpen (Lnet/minecraft/world/entity/player/Player;)Z +MD: net/minecraft/world/level/block/entity/BaseContainerBlockEntity/m_7755_ ()Lnet/minecraft/network/chat/Component; net/minecraft/world/level/block/entity/BaseContainerBlockEntity/getName ()Lnet/minecraft/network/chat/Component; +MD: net/minecraft/world/level/block/entity/BaseContainerBlockEntity/m_7770_ ()Lnet/minecraft/network/chat/Component; net/minecraft/world/level/block/entity/BaseContainerBlockEntity/getCustomName ()Lnet/minecraft/network/chat/Component; +MD: net/minecraft/world/level/block/entity/BeaconBlockEntity/ ()V net/minecraft/world/level/block/entity/BeaconBlockEntity/ ()V +MD: net/minecraft/world/level/block/entity/BeaconBlockEntity/ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V net/minecraft/world/level/block/entity/BeaconBlockEntity/ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V +MD: net/minecraft/world/level/block/entity/BeaconBlockEntity/m_142339_ (Lnet/minecraft/world/level/Level;)V net/minecraft/world/level/block/entity/BeaconBlockEntity/setLevel (Lnet/minecraft/world/level/Level;)V +MD: net/minecraft/world/level/block/entity/BeaconBlockEntity/m_142466_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/level/block/entity/BeaconBlockEntity/load (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/level/block/entity/BeaconBlockEntity/m_155092_ (Lnet/minecraft/world/level/Level;III)I net/minecraft/world/level/block/entity/BeaconBlockEntity/updateBase (Lnet/minecraft/world/level/Level;III)I +MD: net/minecraft/world/level/block/entity/BeaconBlockEntity/m_155097_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;ILnet/minecraft/world/effect/MobEffect;Lnet/minecraft/world/effect/MobEffect;)V net/minecraft/world/level/block/entity/BeaconBlockEntity/applyEffects (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;ILnet/minecraft/world/effect/MobEffect;Lnet/minecraft/world/effect/MobEffect;)V +MD: net/minecraft/world/level/block/entity/BeaconBlockEntity/m_155103_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/sounds/SoundEvent;)V net/minecraft/world/level/block/entity/BeaconBlockEntity/playSound (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/sounds/SoundEvent;)V +MD: net/minecraft/world/level/block/entity/BeaconBlockEntity/m_155107_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/entity/BeaconBlockEntity;)V net/minecraft/world/level/block/entity/BeaconBlockEntity/tick (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/entity/BeaconBlockEntity;)V +MD: net/minecraft/world/level/block/entity/BeaconBlockEntity/m_183515_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/level/block/entity/BeaconBlockEntity/saveAdditional (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/level/block/entity/BeaconBlockEntity/m_5446_ ()Lnet/minecraft/network/chat/Component; net/minecraft/world/level/block/entity/BeaconBlockEntity/getDisplayName ()Lnet/minecraft/network/chat/Component; +MD: net/minecraft/world/level/block/entity/BeaconBlockEntity/m_58483_ ()Lnet/minecraft/network/protocol/Packet; net/minecraft/world/level/block/entity/BeaconBlockEntity/getUpdatePacket ()Lnet/minecraft/network/protocol/Packet; +MD: net/minecraft/world/level/block/entity/BeaconBlockEntity/m_58483_ ()Lnet/minecraft/network/protocol/game/ClientboundBlockEntityDataPacket; net/minecraft/world/level/block/entity/BeaconBlockEntity/getUpdatePacket ()Lnet/minecraft/network/protocol/game/ClientboundBlockEntityDataPacket; +MD: net/minecraft/world/level/block/entity/BeaconBlockEntity/m_58681_ (Lnet/minecraft/network/chat/Component;)V net/minecraft/world/level/block/entity/BeaconBlockEntity/setCustomName (Lnet/minecraft/network/chat/Component;)V +MD: net/minecraft/world/level/block/entity/BeaconBlockEntity/m_58686_ (I)Lnet/minecraft/world/effect/MobEffect; net/minecraft/world/level/block/entity/BeaconBlockEntity/getValidEffectById (I)Lnet/minecraft/world/effect/MobEffect; +MD: net/minecraft/world/level/block/entity/BeaconBlockEntity/m_58702_ ()Ljava/util/List; net/minecraft/world/level/block/entity/BeaconBlockEntity/getBeamSections ()Ljava/util/List; +MD: net/minecraft/world/level/block/entity/BeaconBlockEntity/m_5995_ ()Lnet/minecraft/nbt/CompoundTag; net/minecraft/world/level/block/entity/BeaconBlockEntity/getUpdateTag ()Lnet/minecraft/nbt/CompoundTag; +MD: net/minecraft/world/level/block/entity/BeaconBlockEntity/m_7208_ (ILnet/minecraft/world/entity/player/Inventory;Lnet/minecraft/world/entity/player/Player;)Lnet/minecraft/world/inventory/AbstractContainerMenu; net/minecraft/world/level/block/entity/BeaconBlockEntity/createMenu (ILnet/minecraft/world/entity/player/Inventory;Lnet/minecraft/world/entity/player/Player;)Lnet/minecraft/world/inventory/AbstractContainerMenu; +MD: net/minecraft/world/level/block/entity/BeaconBlockEntity/m_7651_ ()V net/minecraft/world/level/block/entity/BeaconBlockEntity/setRemoved ()V +MD: net/minecraft/world/level/block/entity/BeaconBlockEntity/m_7755_ ()Lnet/minecraft/network/chat/Component; net/minecraft/world/level/block/entity/BeaconBlockEntity/getName ()Lnet/minecraft/network/chat/Component; +MD: net/minecraft/world/level/block/entity/BeaconBlockEntity/m_7770_ ()Lnet/minecraft/network/chat/Component; net/minecraft/world/level/block/entity/BeaconBlockEntity/getCustomName ()Lnet/minecraft/network/chat/Component; +MD: net/minecraft/world/level/block/entity/BeaconBlockEntity$1/ (Lnet/minecraft/world/level/block/entity/BeaconBlockEntity;)V net/minecraft/world/level/block/entity/BeaconBlockEntity$1/ (Lnet/minecraft/world/level/block/entity/BeaconBlockEntity;)V +MD: net/minecraft/world/level/block/entity/BeaconBlockEntity$1/m_6413_ (I)I net/minecraft/world/level/block/entity/BeaconBlockEntity$1/get (I)I +MD: net/minecraft/world/level/block/entity/BeaconBlockEntity$1/m_6499_ ()I net/minecraft/world/level/block/entity/BeaconBlockEntity$1/getCount ()I +MD: net/minecraft/world/level/block/entity/BeaconBlockEntity$1/m_8050_ (II)V net/minecraft/world/level/block/entity/BeaconBlockEntity$1/set (II)V +MD: net/minecraft/world/level/block/entity/BeaconBlockEntity$BeaconBeamSection/ ([F)V net/minecraft/world/level/block/entity/BeaconBlockEntity$BeaconBeamSection/ ([F)V +MD: net/minecraft/world/level/block/entity/BeaconBlockEntity$BeaconBeamSection/m_58719_ ()V net/minecraft/world/level/block/entity/BeaconBlockEntity$BeaconBeamSection/increaseHeight ()V +MD: net/minecraft/world/level/block/entity/BeaconBlockEntity$BeaconBeamSection/m_58722_ ()[F net/minecraft/world/level/block/entity/BeaconBlockEntity$BeaconBeamSection/getColor ()[F +MD: net/minecraft/world/level/block/entity/BeaconBlockEntity$BeaconBeamSection/m_58723_ ()I net/minecraft/world/level/block/entity/BeaconBlockEntity$BeaconBeamSection/getHeight ()I +MD: net/minecraft/world/level/block/entity/BedBlockEntity/ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/item/DyeColor;)V net/minecraft/world/level/block/entity/BedBlockEntity/ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/item/DyeColor;)V +MD: net/minecraft/world/level/block/entity/BedBlockEntity/ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V net/minecraft/world/level/block/entity/BedBlockEntity/ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V +MD: net/minecraft/world/level/block/entity/BedBlockEntity/m_58483_ ()Lnet/minecraft/network/protocol/Packet; net/minecraft/world/level/block/entity/BedBlockEntity/getUpdatePacket ()Lnet/minecraft/network/protocol/Packet; +MD: net/minecraft/world/level/block/entity/BedBlockEntity/m_58483_ ()Lnet/minecraft/network/protocol/game/ClientboundBlockEntityDataPacket; net/minecraft/world/level/block/entity/BedBlockEntity/getUpdatePacket ()Lnet/minecraft/network/protocol/game/ClientboundBlockEntityDataPacket; +MD: net/minecraft/world/level/block/entity/BedBlockEntity/m_58729_ (Lnet/minecraft/world/item/DyeColor;)V net/minecraft/world/level/block/entity/BedBlockEntity/setColor (Lnet/minecraft/world/item/DyeColor;)V +MD: net/minecraft/world/level/block/entity/BedBlockEntity/m_58731_ ()Lnet/minecraft/world/item/DyeColor; net/minecraft/world/level/block/entity/BedBlockEntity/getColor ()Lnet/minecraft/world/item/DyeColor; +MD: net/minecraft/world/level/block/entity/BeehiveBlockEntity/ ()V net/minecraft/world/level/block/entity/BeehiveBlockEntity/ ()V +MD: net/minecraft/world/level/block/entity/BeehiveBlockEntity/ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V net/minecraft/world/level/block/entity/BeehiveBlockEntity/ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V +MD: net/minecraft/world/level/block/entity/BeehiveBlockEntity/m_142466_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/level/block/entity/BeehiveBlockEntity/load (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/level/block/entity/BeehiveBlockEntity/m_155136_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/entity/BeehiveBlockEntity$BeeData;Ljava/util/List;Lnet/minecraft/world/level/block/entity/BeehiveBlockEntity$BeeReleaseStatus;Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/level/block/entity/BeehiveBlockEntity/releaseOccupant (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/entity/BeehiveBlockEntity$BeeData;Ljava/util/List;Lnet/minecraft/world/level/block/entity/BeehiveBlockEntity$BeeReleaseStatus;Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/level/block/entity/BeehiveBlockEntity/m_155144_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/entity/BeehiveBlockEntity;)V net/minecraft/world/level/block/entity/BeehiveBlockEntity/serverTick (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/entity/BeehiveBlockEntity;)V +MD: net/minecraft/world/level/block/entity/BeehiveBlockEntity/m_155149_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Ljava/util/List;Lnet/minecraft/core/BlockPos;)V net/minecraft/world/level/block/entity/BeehiveBlockEntity/tickOccupants (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Ljava/util/List;Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/world/level/block/entity/BeehiveBlockEntity/m_155157_ (Lnet/minecraft/nbt/CompoundTag;IZ)V net/minecraft/world/level/block/entity/BeehiveBlockEntity/storeBee (Lnet/minecraft/nbt/CompoundTag;IZ)V +MD: net/minecraft/world/level/block/entity/BeehiveBlockEntity/m_155161_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/level/block/entity/BeehiveBlockEntity/removeIgnoredBeeTags (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/level/block/entity/BeehiveBlockEntity/m_183515_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/level/block/entity/BeehiveBlockEntity/saveAdditional (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/level/block/entity/BeehiveBlockEntity/m_202036_ (Lnet/minecraft/world/level/block/state/BlockBehaviour$BlockStateBase;)Z net/minecraft/world/level/block/entity/BeehiveBlockEntity/lambda$releaseOccupant$2 (Lnet/minecraft/world/level/block/state/BlockBehaviour$BlockStateBase;)Z +MD: net/minecraft/world/level/block/entity/BeehiveBlockEntity/m_271670_ (Lnet/minecraft/world/level/block/state/BlockState;Ljava/util/List;Lnet/minecraft/world/level/block/entity/BeehiveBlockEntity$BeeReleaseStatus;Lnet/minecraft/world/level/block/entity/BeehiveBlockEntity$BeeData;)Z net/minecraft/world/level/block/entity/BeehiveBlockEntity/lambda$releaseAllOccupants$0 (Lnet/minecraft/world/level/block/state/BlockState;Ljava/util/List;Lnet/minecraft/world/level/block/entity/BeehiveBlockEntity$BeeReleaseStatus;Lnet/minecraft/world/level/block/entity/BeehiveBlockEntity$BeeData;)Z +MD: net/minecraft/world/level/block/entity/BeehiveBlockEntity/m_58736_ (ILnet/minecraft/world/entity/animal/Bee;)V net/minecraft/world/level/block/entity/BeehiveBlockEntity/setBeeReleaseData (ILnet/minecraft/world/entity/animal/Bee;)V +MD: net/minecraft/world/level/block/entity/BeehiveBlockEntity/m_58739_ (Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/world/entity/Entity; net/minecraft/world/level/block/entity/BeehiveBlockEntity/lambda$releaseOccupant$1 (Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/world/entity/Entity; +MD: net/minecraft/world/level/block/entity/BeehiveBlockEntity/m_58741_ (Lnet/minecraft/world/entity/Entity;Z)V net/minecraft/world/level/block/entity/BeehiveBlockEntity/addOccupant (Lnet/minecraft/world/entity/Entity;Z)V +MD: net/minecraft/world/level/block/entity/BeehiveBlockEntity/m_58744_ (Lnet/minecraft/world/entity/Entity;ZI)V net/minecraft/world/level/block/entity/BeehiveBlockEntity/addOccupantWithPresetTicks (Lnet/minecraft/world/entity/Entity;ZI)V +MD: net/minecraft/world/level/block/entity/BeehiveBlockEntity/m_58748_ (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/entity/BeehiveBlockEntity$BeeReleaseStatus;)V net/minecraft/world/level/block/entity/BeehiveBlockEntity/emptyAllLivingFromHive (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/entity/BeehiveBlockEntity$BeeReleaseStatus;)V +MD: net/minecraft/world/level/block/entity/BeehiveBlockEntity/m_58752_ (Lnet/minecraft/world/level/block/state/BlockState;)I net/minecraft/world/level/block/entity/BeehiveBlockEntity/getHoneyLevel (Lnet/minecraft/world/level/block/state/BlockState;)I +MD: net/minecraft/world/level/block/entity/BeehiveBlockEntity/m_58759_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/entity/BeehiveBlockEntity$BeeReleaseStatus;)Ljava/util/List; net/minecraft/world/level/block/entity/BeehiveBlockEntity/releaseAllOccupants (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/entity/BeehiveBlockEntity$BeeReleaseStatus;)Ljava/util/List; +MD: net/minecraft/world/level/block/entity/BeehiveBlockEntity/m_58773_ ()Z net/minecraft/world/level/block/entity/BeehiveBlockEntity/isFireNearby ()Z +MD: net/minecraft/world/level/block/entity/BeehiveBlockEntity/m_58774_ ()Z net/minecraft/world/level/block/entity/BeehiveBlockEntity/isEmpty ()Z +MD: net/minecraft/world/level/block/entity/BeehiveBlockEntity/m_58775_ ()Z net/minecraft/world/level/block/entity/BeehiveBlockEntity/isFull ()Z +MD: net/minecraft/world/level/block/entity/BeehiveBlockEntity/m_58776_ ()I net/minecraft/world/level/block/entity/BeehiveBlockEntity/getOccupantCount ()I +MD: net/minecraft/world/level/block/entity/BeehiveBlockEntity/m_58777_ ()Z net/minecraft/world/level/block/entity/BeehiveBlockEntity/isSedated ()Z +MD: net/minecraft/world/level/block/entity/BeehiveBlockEntity/m_58779_ ()Lnet/minecraft/nbt/ListTag; net/minecraft/world/level/block/entity/BeehiveBlockEntity/writeBees ()Lnet/minecraft/nbt/ListTag; +MD: net/minecraft/world/level/block/entity/BeehiveBlockEntity/m_58780_ ()Z net/minecraft/world/level/block/entity/BeehiveBlockEntity/hasSavedFlowerPos ()Z +MD: net/minecraft/world/level/block/entity/BeehiveBlockEntity/m_6596_ ()V net/minecraft/world/level/block/entity/BeehiveBlockEntity/setChanged ()V +MD: net/minecraft/world/level/block/entity/BeehiveBlockEntity$BeeData/ (Lnet/minecraft/nbt/CompoundTag;II)V net/minecraft/world/level/block/entity/BeehiveBlockEntity$BeeData/ (Lnet/minecraft/nbt/CompoundTag;II)V +MD: net/minecraft/world/level/block/entity/BeehiveBlockEntity$BeeReleaseStatus/ ()V net/minecraft/world/level/block/entity/BeehiveBlockEntity$BeeReleaseStatus/ ()V +MD: net/minecraft/world/level/block/entity/BeehiveBlockEntity$BeeReleaseStatus/ (Ljava/lang/String;I)V net/minecraft/world/level/block/entity/BeehiveBlockEntity$BeeReleaseStatus/ (Ljava/lang/String;I)V +MD: net/minecraft/world/level/block/entity/BeehiveBlockEntity$BeeReleaseStatus/m_155163_ ()[Lnet/minecraft/world/level/block/entity/BeehiveBlockEntity$BeeReleaseStatus; net/minecraft/world/level/block/entity/BeehiveBlockEntity$BeeReleaseStatus/$values ()[Lnet/minecraft/world/level/block/entity/BeehiveBlockEntity$BeeReleaseStatus; +MD: net/minecraft/world/level/block/entity/BeehiveBlockEntity$BeeReleaseStatus/valueOf (Ljava/lang/String;)Lnet/minecraft/world/level/block/entity/BeehiveBlockEntity$BeeReleaseStatus; net/minecraft/world/level/block/entity/BeehiveBlockEntity$BeeReleaseStatus/valueOf (Ljava/lang/String;)Lnet/minecraft/world/level/block/entity/BeehiveBlockEntity$BeeReleaseStatus; +MD: net/minecraft/world/level/block/entity/BeehiveBlockEntity$BeeReleaseStatus/values ()[Lnet/minecraft/world/level/block/entity/BeehiveBlockEntity$BeeReleaseStatus; net/minecraft/world/level/block/entity/BeehiveBlockEntity$BeeReleaseStatus/values ()[Lnet/minecraft/world/level/block/entity/BeehiveBlockEntity$BeeReleaseStatus; +MD: net/minecraft/world/level/block/entity/BellBlockEntity/ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V net/minecraft/world/level/block/entity/BellBlockEntity/ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V +MD: net/minecraft/world/level/block/entity/BellBlockEntity/m_155175_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/entity/BellBlockEntity;)V net/minecraft/world/level/block/entity/BellBlockEntity/clientTick (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/entity/BellBlockEntity;)V +MD: net/minecraft/world/level/block/entity/BellBlockEntity/m_155180_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/entity/BellBlockEntity;Lnet/minecraft/world/level/block/entity/BellBlockEntity$ResonationEndAction;)V net/minecraft/world/level/block/entity/BellBlockEntity/tick (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/entity/BellBlockEntity;Lnet/minecraft/world/level/block/entity/BellBlockEntity$ResonationEndAction;)V +MD: net/minecraft/world/level/block/entity/BellBlockEntity/m_155186_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Ljava/util/List;)V net/minecraft/world/level/block/entity/BellBlockEntity/makeRaidersGlow (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Ljava/util/List;)V +MD: net/minecraft/world/level/block/entity/BellBlockEntity/m_155190_ (Lnet/minecraft/core/BlockPos;ILorg/apache/commons/lang3/mutable/MutableInt;Lnet/minecraft/world/level/Level;Lnet/minecraft/world/entity/LivingEntity;)V net/minecraft/world/level/block/entity/BellBlockEntity/lambda$showBellParticles$3 (Lnet/minecraft/core/BlockPos;ILorg/apache/commons/lang3/mutable/MutableInt;Lnet/minecraft/world/level/Level;Lnet/minecraft/world/entity/LivingEntity;)V +MD: net/minecraft/world/level/block/entity/BellBlockEntity/m_155196_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/LivingEntity;)Z net/minecraft/world/level/block/entity/BellBlockEntity/isRaiderWithinRange (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/LivingEntity;)Z +MD: net/minecraft/world/level/block/entity/BellBlockEntity/m_155199_ (Lnet/minecraft/core/BlockPos;Ljava/util/List;)Z net/minecraft/world/level/block/entity/BellBlockEntity/areRaidersNearby (Lnet/minecraft/core/BlockPos;Ljava/util/List;)Z +MD: net/minecraft/world/level/block/entity/BellBlockEntity/m_155202_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/entity/BellBlockEntity;)V net/minecraft/world/level/block/entity/BellBlockEntity/serverTick (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/entity/BellBlockEntity;)V +MD: net/minecraft/world/level/block/entity/BellBlockEntity/m_155207_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Ljava/util/List;)V net/minecraft/world/level/block/entity/BellBlockEntity/showBellParticles (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Ljava/util/List;)V +MD: net/minecraft/world/level/block/entity/BellBlockEntity/m_155211_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/LivingEntity;)Z net/minecraft/world/level/block/entity/BellBlockEntity/lambda$showBellParticles$2 (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/LivingEntity;)Z +MD: net/minecraft/world/level/block/entity/BellBlockEntity/m_155217_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/LivingEntity;)Z net/minecraft/world/level/block/entity/BellBlockEntity/lambda$makeRaidersGlow$0 (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/LivingEntity;)Z +MD: net/minecraft/world/level/block/entity/BellBlockEntity/m_289177_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/LivingEntity;)Z net/minecraft/world/level/block/entity/BellBlockEntity/lambda$showBellParticles$1 (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/LivingEntity;)Z +MD: net/minecraft/world/level/block/entity/BellBlockEntity/m_58834_ (Lnet/minecraft/core/Direction;)V net/minecraft/world/level/block/entity/BellBlockEntity/onHit (Lnet/minecraft/core/Direction;)V +MD: net/minecraft/world/level/block/entity/BellBlockEntity/m_58840_ (Lnet/minecraft/world/entity/LivingEntity;)V net/minecraft/world/level/block/entity/BellBlockEntity/glow (Lnet/minecraft/world/entity/LivingEntity;)V +MD: net/minecraft/world/level/block/entity/BellBlockEntity/m_58845_ ()V net/minecraft/world/level/block/entity/BellBlockEntity/updateEntities ()V +MD: net/minecraft/world/level/block/entity/BellBlockEntity/m_7531_ (II)Z net/minecraft/world/level/block/entity/BellBlockEntity/triggerEvent (II)Z +MD: net/minecraft/world/level/block/entity/BellBlockEntity$ResonationEndAction/m_155220_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Ljava/util/List;)V net/minecraft/world/level/block/entity/BellBlockEntity$ResonationEndAction/run (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Ljava/util/List;)V +MD: net/minecraft/world/level/block/entity/BlastFurnaceBlockEntity/ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V net/minecraft/world/level/block/entity/BlastFurnaceBlockEntity/ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V +MD: net/minecraft/world/level/block/entity/BlastFurnaceBlockEntity/m_6555_ (ILnet/minecraft/world/entity/player/Inventory;)Lnet/minecraft/world/inventory/AbstractContainerMenu; net/minecraft/world/level/block/entity/BlastFurnaceBlockEntity/createMenu (ILnet/minecraft/world/entity/player/Inventory;)Lnet/minecraft/world/inventory/AbstractContainerMenu; +MD: net/minecraft/world/level/block/entity/BlastFurnaceBlockEntity/m_6820_ ()Lnet/minecraft/network/chat/Component; net/minecraft/world/level/block/entity/BlastFurnaceBlockEntity/getDefaultName ()Lnet/minecraft/network/chat/Component; +MD: net/minecraft/world/level/block/entity/BlastFurnaceBlockEntity/m_7743_ (Lnet/minecraft/world/item/ItemStack;)I net/minecraft/world/level/block/entity/BlastFurnaceBlockEntity/getBurnDuration (Lnet/minecraft/world/item/ItemStack;)I +MD: net/minecraft/world/level/block/entity/BlockEntity/ ()V net/minecraft/world/level/block/entity/BlockEntity/ ()V +MD: net/minecraft/world/level/block/entity/BlockEntity/ (Lnet/minecraft/world/level/block/entity/BlockEntityType;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V net/minecraft/world/level/block/entity/BlockEntity/ (Lnet/minecraft/world/level/block/entity/BlockEntityType;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V +MD: net/minecraft/world/level/block/entity/BlockEntity/m_142339_ (Lnet/minecraft/world/level/Level;)V net/minecraft/world/level/block/entity/BlockEntity/setLevel (Lnet/minecraft/world/level/Level;)V +MD: net/minecraft/world/level/block/entity/BlockEntity/m_142466_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/level/block/entity/BlockEntity/load (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/level/block/entity/BlockEntity/m_155232_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V net/minecraft/world/level/block/entity/BlockEntity/setChanged (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V +MD: net/minecraft/world/level/block/entity/BlockEntity/m_155236_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Ljava/lang/String;Lnet/minecraft/world/level/block/entity/BlockEntityType;)Lnet/minecraft/world/level/block/entity/BlockEntity; net/minecraft/world/level/block/entity/BlockEntity/lambda$loadStatic$0 (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Ljava/lang/String;Lnet/minecraft/world/level/block/entity/BlockEntityType;)Lnet/minecraft/world/level/block/entity/BlockEntity; +MD: net/minecraft/world/level/block/entity/BlockEntity/m_155241_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/nbt/CompoundTag;)Lnet/minecraft/world/level/block/entity/BlockEntity; net/minecraft/world/level/block/entity/BlockEntity/loadStatic (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/nbt/CompoundTag;)Lnet/minecraft/world/level/block/entity/BlockEntity; +MD: net/minecraft/world/level/block/entity/BlockEntity/m_155246_ (Lnet/minecraft/nbt/CompoundTag;Ljava/lang/String;Lnet/minecraft/world/level/block/entity/BlockEntity;)Lnet/minecraft/world/level/block/entity/BlockEntity; net/minecraft/world/level/block/entity/BlockEntity/lambda$loadStatic$1 (Lnet/minecraft/nbt/CompoundTag;Ljava/lang/String;Lnet/minecraft/world/level/block/entity/BlockEntity;)Lnet/minecraft/world/level/block/entity/BlockEntity; +MD: net/minecraft/world/level/block/entity/BlockEntity/m_155250_ (Lnet/minecraft/world/level/block/state/BlockState;)V net/minecraft/world/level/block/entity/BlockEntity/setBlockState (Lnet/minecraft/world/level/block/state/BlockState;)V +MD: net/minecraft/world/level/block/entity/BlockEntity/m_183515_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/level/block/entity/BlockEntity/saveAdditional (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/level/block/entity/BlockEntity/m_187468_ (Lnet/minecraft/nbt/CompoundTag;Lnet/minecraft/world/level/block/entity/BlockEntityType;)V net/minecraft/world/level/block/entity/BlockEntity/addEntityType (Lnet/minecraft/nbt/CompoundTag;Lnet/minecraft/world/level/block/entity/BlockEntityType;)V +MD: net/minecraft/world/level/block/entity/BlockEntity/m_187472_ (Lnet/minecraft/nbt/CompoundTag;)Lnet/minecraft/core/BlockPos; net/minecraft/world/level/block/entity/BlockEntity/getPosFromTag (Lnet/minecraft/nbt/CompoundTag;)Lnet/minecraft/core/BlockPos; +MD: net/minecraft/world/level/block/entity/BlockEntity/m_187474_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/level/block/entity/BlockEntity/saveId (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/level/block/entity/BlockEntity/m_187476_ (Lnet/minecraft/world/item/ItemStack;)V net/minecraft/world/level/block/entity/BlockEntity/saveToItem (Lnet/minecraft/world/item/ItemStack;)V +MD: net/minecraft/world/level/block/entity/BlockEntity/m_187478_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/level/block/entity/BlockEntity/saveMetadata (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/level/block/entity/BlockEntity/m_187480_ ()Lnet/minecraft/nbt/CompoundTag; net/minecraft/world/level/block/entity/BlockEntity/saveWithFullMetadata ()Lnet/minecraft/nbt/CompoundTag; +MD: net/minecraft/world/level/block/entity/BlockEntity/m_187481_ ()Lnet/minecraft/nbt/CompoundTag; net/minecraft/world/level/block/entity/BlockEntity/saveWithId ()Lnet/minecraft/nbt/CompoundTag; +MD: net/minecraft/world/level/block/entity/BlockEntity/m_187482_ ()Lnet/minecraft/nbt/CompoundTag; net/minecraft/world/level/block/entity/BlockEntity/saveWithoutMetadata ()Lnet/minecraft/nbt/CompoundTag; +MD: net/minecraft/world/level/block/entity/BlockEntity/m_257329_ ()Ljava/lang/String; net/minecraft/world/level/block/entity/BlockEntity/lambda$fillCrashReportCategory$3 ()Ljava/lang/String; +MD: net/minecraft/world/level/block/entity/BlockEntity/m_58483_ ()Lnet/minecraft/network/protocol/Packet; net/minecraft/world/level/block/entity/BlockEntity/getUpdatePacket ()Lnet/minecraft/network/protocol/Packet; +MD: net/minecraft/world/level/block/entity/BlockEntity/m_58881_ (Ljava/lang/String;)Lnet/minecraft/world/level/block/entity/BlockEntity; net/minecraft/world/level/block/entity/BlockEntity/lambda$loadStatic$2 (Ljava/lang/String;)Lnet/minecraft/world/level/block/entity/BlockEntity; +MD: net/minecraft/world/level/block/entity/BlockEntity/m_58886_ (Lnet/minecraft/CrashReportCategory;)V net/minecraft/world/level/block/entity/BlockEntity/fillCrashReportCategory (Lnet/minecraft/CrashReportCategory;)V +MD: net/minecraft/world/level/block/entity/BlockEntity/m_58898_ ()Z net/minecraft/world/level/block/entity/BlockEntity/hasLevel ()Z +MD: net/minecraft/world/level/block/entity/BlockEntity/m_58899_ ()Lnet/minecraft/core/BlockPos; net/minecraft/world/level/block/entity/BlockEntity/getBlockPos ()Lnet/minecraft/core/BlockPos; +MD: net/minecraft/world/level/block/entity/BlockEntity/m_58900_ ()Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/entity/BlockEntity/getBlockState ()Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/entity/BlockEntity/m_58901_ ()Z net/minecraft/world/level/block/entity/BlockEntity/isRemoved ()Z +MD: net/minecraft/world/level/block/entity/BlockEntity/m_58903_ ()Lnet/minecraft/world/level/block/entity/BlockEntityType; net/minecraft/world/level/block/entity/BlockEntity/getType ()Lnet/minecraft/world/level/block/entity/BlockEntityType; +MD: net/minecraft/world/level/block/entity/BlockEntity/m_58904_ ()Lnet/minecraft/world/level/Level; net/minecraft/world/level/block/entity/BlockEntity/getLevel ()Lnet/minecraft/world/level/Level; +MD: net/minecraft/world/level/block/entity/BlockEntity/m_5995_ ()Lnet/minecraft/nbt/CompoundTag; net/minecraft/world/level/block/entity/BlockEntity/getUpdateTag ()Lnet/minecraft/nbt/CompoundTag; +MD: net/minecraft/world/level/block/entity/BlockEntity/m_6326_ ()Z net/minecraft/world/level/block/entity/BlockEntity/onlyOpCanSetNbt ()Z +MD: net/minecraft/world/level/block/entity/BlockEntity/m_6339_ ()V net/minecraft/world/level/block/entity/BlockEntity/clearRemoved ()V +MD: net/minecraft/world/level/block/entity/BlockEntity/m_6596_ ()V net/minecraft/world/level/block/entity/BlockEntity/setChanged ()V +MD: net/minecraft/world/level/block/entity/BlockEntity/m_7531_ (II)Z net/minecraft/world/level/block/entity/BlockEntity/triggerEvent (II)Z +MD: net/minecraft/world/level/block/entity/BlockEntity/m_7651_ ()V net/minecraft/world/level/block/entity/BlockEntity/setRemoved ()V +MD: net/minecraft/world/level/block/entity/BlockEntityTicker/m_155252_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/entity/BlockEntity;)V net/minecraft/world/level/block/entity/BlockEntityTicker/tick (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/entity/BlockEntity;)V +MD: net/minecraft/world/level/block/entity/BlockEntityType/ ()V net/minecraft/world/level/block/entity/BlockEntityType/ ()V +MD: net/minecraft/world/level/block/entity/BlockEntityType/ (Lnet/minecraft/world/level/block/entity/BlockEntityType$BlockEntitySupplier;Ljava/util/Set;Lcom/mojang/datafixers/types/Type;)V net/minecraft/world/level/block/entity/BlockEntityType/ (Lnet/minecraft/world/level/block/entity/BlockEntityType$BlockEntitySupplier;Ljava/util/Set;Lcom/mojang/datafixers/types/Type;)V +MD: net/minecraft/world/level/block/entity/BlockEntityType/m_155262_ (Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/world/level/block/entity/BlockEntityType/isValid (Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/world/level/block/entity/BlockEntityType/m_155264_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/block/entity/BlockEntity; net/minecraft/world/level/block/entity/BlockEntityType/create (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/block/entity/BlockEntity; +MD: net/minecraft/world/level/block/entity/BlockEntityType/m_58949_ (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/entity/BlockEntity; net/minecraft/world/level/block/entity/BlockEntityType/getBlockEntity (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/entity/BlockEntity; +MD: net/minecraft/world/level/block/entity/BlockEntityType/m_58954_ (Lnet/minecraft/world/level/block/entity/BlockEntityType;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/world/level/block/entity/BlockEntityType/getKey (Lnet/minecraft/world/level/block/entity/BlockEntityType;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/world/level/block/entity/BlockEntityType/m_58956_ (Ljava/lang/String;Lnet/minecraft/world/level/block/entity/BlockEntityType$Builder;)Lnet/minecraft/world/level/block/entity/BlockEntityType; net/minecraft/world/level/block/entity/BlockEntityType/register (Ljava/lang/String;Lnet/minecraft/world/level/block/entity/BlockEntityType$Builder;)Lnet/minecraft/world/level/block/entity/BlockEntityType; +MD: net/minecraft/world/level/block/entity/BlockEntityType$BlockEntitySupplier/m_155267_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/block/entity/BlockEntity; net/minecraft/world/level/block/entity/BlockEntityType$BlockEntitySupplier/create (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/block/entity/BlockEntity; +MD: net/minecraft/world/level/block/entity/BlockEntityType$Builder/ (Lnet/minecraft/world/level/block/entity/BlockEntityType$BlockEntitySupplier;Ljava/util/Set;)V net/minecraft/world/level/block/entity/BlockEntityType$Builder/ (Lnet/minecraft/world/level/block/entity/BlockEntityType$BlockEntitySupplier;Ljava/util/Set;)V +MD: net/minecraft/world/level/block/entity/BlockEntityType$Builder/m_155273_ (Lnet/minecraft/world/level/block/entity/BlockEntityType$BlockEntitySupplier;[Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/block/entity/BlockEntityType$Builder; net/minecraft/world/level/block/entity/BlockEntityType$Builder/of (Lnet/minecraft/world/level/block/entity/BlockEntityType$BlockEntitySupplier;[Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/block/entity/BlockEntityType$Builder; +MD: net/minecraft/world/level/block/entity/BlockEntityType$Builder/m_58966_ (Lcom/mojang/datafixers/types/Type;)Lnet/minecraft/world/level/block/entity/BlockEntityType; net/minecraft/world/level/block/entity/BlockEntityType$Builder/build (Lcom/mojang/datafixers/types/Type;)Lnet/minecraft/world/level/block/entity/BlockEntityType; +MD: net/minecraft/world/level/block/entity/BrewingStandBlockEntity/ ()V net/minecraft/world/level/block/entity/BrewingStandBlockEntity/ ()V +MD: net/minecraft/world/level/block/entity/BrewingStandBlockEntity/ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V net/minecraft/world/level/block/entity/BrewingStandBlockEntity/ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V +MD: net/minecraft/world/level/block/entity/BrewingStandBlockEntity/m_142466_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/level/block/entity/BrewingStandBlockEntity/load (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/level/block/entity/BrewingStandBlockEntity/m_155285_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/entity/BrewingStandBlockEntity;)V net/minecraft/world/level/block/entity/BrewingStandBlockEntity/serverTick (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/entity/BrewingStandBlockEntity;)V +MD: net/minecraft/world/level/block/entity/BrewingStandBlockEntity/m_155290_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/NonNullList;)V net/minecraft/world/level/block/entity/BrewingStandBlockEntity/doBrew (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/NonNullList;)V +MD: net/minecraft/world/level/block/entity/BrewingStandBlockEntity/m_155294_ (Lnet/minecraft/core/NonNullList;)Z net/minecraft/world/level/block/entity/BrewingStandBlockEntity/isBrewable (Lnet/minecraft/core/NonNullList;)Z +MD: net/minecraft/world/level/block/entity/BrewingStandBlockEntity/m_183515_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/level/block/entity/BrewingStandBlockEntity/saveAdditional (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/level/block/entity/BrewingStandBlockEntity/m_59029_ ()[Z net/minecraft/world/level/block/entity/BrewingStandBlockEntity/getPotionBits ()[Z +MD: net/minecraft/world/level/block/entity/BrewingStandBlockEntity/m_6211_ ()V net/minecraft/world/level/block/entity/BrewingStandBlockEntity/clearContent ()V +MD: net/minecraft/world/level/block/entity/BrewingStandBlockEntity/m_6542_ (Lnet/minecraft/world/entity/player/Player;)Z net/minecraft/world/level/block/entity/BrewingStandBlockEntity/stillValid (Lnet/minecraft/world/entity/player/Player;)Z +MD: net/minecraft/world/level/block/entity/BrewingStandBlockEntity/m_6555_ (ILnet/minecraft/world/entity/player/Inventory;)Lnet/minecraft/world/inventory/AbstractContainerMenu; net/minecraft/world/level/block/entity/BrewingStandBlockEntity/createMenu (ILnet/minecraft/world/entity/player/Inventory;)Lnet/minecraft/world/inventory/AbstractContainerMenu; +MD: net/minecraft/world/level/block/entity/BrewingStandBlockEntity/m_6643_ ()I net/minecraft/world/level/block/entity/BrewingStandBlockEntity/getContainerSize ()I +MD: net/minecraft/world/level/block/entity/BrewingStandBlockEntity/m_6820_ ()Lnet/minecraft/network/chat/Component; net/minecraft/world/level/block/entity/BrewingStandBlockEntity/getDefaultName ()Lnet/minecraft/network/chat/Component; +MD: net/minecraft/world/level/block/entity/BrewingStandBlockEntity/m_6836_ (ILnet/minecraft/world/item/ItemStack;)V net/minecraft/world/level/block/entity/BrewingStandBlockEntity/setItem (ILnet/minecraft/world/item/ItemStack;)V +MD: net/minecraft/world/level/block/entity/BrewingStandBlockEntity/m_7013_ (ILnet/minecraft/world/item/ItemStack;)Z net/minecraft/world/level/block/entity/BrewingStandBlockEntity/canPlaceItem (ILnet/minecraft/world/item/ItemStack;)Z +MD: net/minecraft/world/level/block/entity/BrewingStandBlockEntity/m_7071_ (Lnet/minecraft/core/Direction;)[I net/minecraft/world/level/block/entity/BrewingStandBlockEntity/getSlotsForFace (Lnet/minecraft/core/Direction;)[I +MD: net/minecraft/world/level/block/entity/BrewingStandBlockEntity/m_7155_ (ILnet/minecraft/world/item/ItemStack;Lnet/minecraft/core/Direction;)Z net/minecraft/world/level/block/entity/BrewingStandBlockEntity/canPlaceItemThroughFace (ILnet/minecraft/world/item/ItemStack;Lnet/minecraft/core/Direction;)Z +MD: net/minecraft/world/level/block/entity/BrewingStandBlockEntity/m_7157_ (ILnet/minecraft/world/item/ItemStack;Lnet/minecraft/core/Direction;)Z net/minecraft/world/level/block/entity/BrewingStandBlockEntity/canTakeItemThroughFace (ILnet/minecraft/world/item/ItemStack;Lnet/minecraft/core/Direction;)Z +MD: net/minecraft/world/level/block/entity/BrewingStandBlockEntity/m_7407_ (II)Lnet/minecraft/world/item/ItemStack; net/minecraft/world/level/block/entity/BrewingStandBlockEntity/removeItem (II)Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/level/block/entity/BrewingStandBlockEntity/m_7983_ ()Z net/minecraft/world/level/block/entity/BrewingStandBlockEntity/isEmpty ()Z +MD: net/minecraft/world/level/block/entity/BrewingStandBlockEntity/m_8016_ (I)Lnet/minecraft/world/item/ItemStack; net/minecraft/world/level/block/entity/BrewingStandBlockEntity/removeItemNoUpdate (I)Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/level/block/entity/BrewingStandBlockEntity/m_8020_ (I)Lnet/minecraft/world/item/ItemStack; net/minecraft/world/level/block/entity/BrewingStandBlockEntity/getItem (I)Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/level/block/entity/BrewingStandBlockEntity$1/ (Lnet/minecraft/world/level/block/entity/BrewingStandBlockEntity;)V net/minecraft/world/level/block/entity/BrewingStandBlockEntity$1/ (Lnet/minecraft/world/level/block/entity/BrewingStandBlockEntity;)V +MD: net/minecraft/world/level/block/entity/BrewingStandBlockEntity$1/m_6413_ (I)I net/minecraft/world/level/block/entity/BrewingStandBlockEntity$1/get (I)I +MD: net/minecraft/world/level/block/entity/BrewingStandBlockEntity$1/m_6499_ ()I net/minecraft/world/level/block/entity/BrewingStandBlockEntity$1/getCount ()I +MD: net/minecraft/world/level/block/entity/BrewingStandBlockEntity$1/m_8050_ (II)V net/minecraft/world/level/block/entity/BrewingStandBlockEntity$1/set (II)V +MD: net/minecraft/world/level/block/entity/BrushableBlockEntity/ ()V net/minecraft/world/level/block/entity/BrushableBlockEntity/ ()V +MD: net/minecraft/world/level/block/entity/BrushableBlockEntity/ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V net/minecraft/world/level/block/entity/BrushableBlockEntity/ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V +MD: net/minecraft/world/level/block/entity/BrushableBlockEntity/m_142466_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/level/block/entity/BrushableBlockEntity/load (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/level/block/entity/BrushableBlockEntity/m_183515_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/level/block/entity/BrushableBlockEntity/saveAdditional (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/level/block/entity/BrushableBlockEntity/m_276797_ (Lnet/minecraft/world/entity/player/Player;)V net/minecraft/world/level/block/entity/BrushableBlockEntity/unpackLootTable (Lnet/minecraft/world/entity/player/Player;)V +MD: net/minecraft/world/level/block/entity/BrushableBlockEntity/m_276923_ (JLnet/minecraft/world/entity/player/Player;Lnet/minecraft/core/Direction;)Z net/minecraft/world/level/block/entity/BrushableBlockEntity/brush (JLnet/minecraft/world/entity/player/Player;Lnet/minecraft/core/Direction;)Z +MD: net/minecraft/world/level/block/entity/BrushableBlockEntity/m_276934_ (Lnet/minecraft/world/entity/player/Player;)V net/minecraft/world/level/block/entity/BrushableBlockEntity/dropContent (Lnet/minecraft/world/entity/player/Player;)V +MD: net/minecraft/world/level/block/entity/BrushableBlockEntity/m_276942_ ()I net/minecraft/world/level/block/entity/BrushableBlockEntity/getCompletionState ()I +MD: net/minecraft/world/level/block/entity/BrushableBlockEntity/m_276980_ (Lnet/minecraft/world/entity/player/Player;)V net/minecraft/world/level/block/entity/BrushableBlockEntity/brushingCompleted (Lnet/minecraft/world/entity/player/Player;)V +MD: net/minecraft/world/level/block/entity/BrushableBlockEntity/m_276996_ (Lnet/minecraft/nbt/CompoundTag;)Z net/minecraft/world/level/block/entity/BrushableBlockEntity/tryLoadLootTable (Lnet/minecraft/nbt/CompoundTag;)Z +MD: net/minecraft/world/level/block/entity/BrushableBlockEntity/m_277014_ (Lnet/minecraft/nbt/CompoundTag;)Z net/minecraft/world/level/block/entity/BrushableBlockEntity/trySaveLootTable (Lnet/minecraft/nbt/CompoundTag;)Z +MD: net/minecraft/world/level/block/entity/BrushableBlockEntity/m_277042_ ()Lnet/minecraft/core/Direction; net/minecraft/world/level/block/entity/BrushableBlockEntity/getHitDirection ()Lnet/minecraft/core/Direction; +MD: net/minecraft/world/level/block/entity/BrushableBlockEntity/m_277047_ ()Lnet/minecraft/world/item/ItemStack; net/minecraft/world/level/block/entity/BrushableBlockEntity/getItem ()Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/level/block/entity/BrushableBlockEntity/m_277049_ (Lnet/minecraft/resources/ResourceLocation;J)V net/minecraft/world/level/block/entity/BrushableBlockEntity/setLootTable (Lnet/minecraft/resources/ResourceLocation;J)V +MD: net/minecraft/world/level/block/entity/BrushableBlockEntity/m_277175_ ()V net/minecraft/world/level/block/entity/BrushableBlockEntity/checkReset ()V +MD: net/minecraft/world/level/block/entity/BrushableBlockEntity/m_58483_ ()Lnet/minecraft/network/protocol/Packet; net/minecraft/world/level/block/entity/BrushableBlockEntity/getUpdatePacket ()Lnet/minecraft/network/protocol/Packet; +MD: net/minecraft/world/level/block/entity/BrushableBlockEntity/m_58483_ ()Lnet/minecraft/network/protocol/game/ClientboundBlockEntityDataPacket; net/minecraft/world/level/block/entity/BrushableBlockEntity/getUpdatePacket ()Lnet/minecraft/network/protocol/game/ClientboundBlockEntityDataPacket; +MD: net/minecraft/world/level/block/entity/BrushableBlockEntity/m_5995_ ()Lnet/minecraft/nbt/CompoundTag; net/minecraft/world/level/block/entity/BrushableBlockEntity/getUpdateTag ()Lnet/minecraft/nbt/CompoundTag; +MD: net/minecraft/world/level/block/entity/CalibratedSculkSensorBlockEntity/ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V net/minecraft/world/level/block/entity/CalibratedSculkSensorBlockEntity/ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V +MD: net/minecraft/world/level/block/entity/CalibratedSculkSensorBlockEntity/m_280175_ ()Lnet/minecraft/world/level/gameevent/vibrations/VibrationSystem$User; net/minecraft/world/level/block/entity/CalibratedSculkSensorBlockEntity/createVibrationUser ()Lnet/minecraft/world/level/gameevent/vibrations/VibrationSystem$User; +MD: net/minecraft/world/level/block/entity/CalibratedSculkSensorBlockEntity$VibrationUser/ (Lnet/minecraft/world/level/block/entity/CalibratedSculkSensorBlockEntity;Lnet/minecraft/core/BlockPos;)V net/minecraft/world/level/block/entity/CalibratedSculkSensorBlockEntity$VibrationUser/ (Lnet/minecraft/world/level/block/entity/CalibratedSculkSensorBlockEntity;Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/world/level/block/entity/CalibratedSculkSensorBlockEntity$VibrationUser/m_280080_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/gameevent/GameEvent;Lnet/minecraft/world/level/gameevent/GameEvent$Context;)Z net/minecraft/world/level/block/entity/CalibratedSculkSensorBlockEntity$VibrationUser/canReceiveVibration (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/gameevent/GameEvent;Lnet/minecraft/world/level/gameevent/GameEvent$Context;)Z +MD: net/minecraft/world/level/block/entity/CalibratedSculkSensorBlockEntity$VibrationUser/m_280214_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)I net/minecraft/world/level/block/entity/CalibratedSculkSensorBlockEntity$VibrationUser/getBackSignal (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)I +MD: net/minecraft/world/level/block/entity/CalibratedSculkSensorBlockEntity$VibrationUser/m_280351_ ()I net/minecraft/world/level/block/entity/CalibratedSculkSensorBlockEntity$VibrationUser/getListenerRadius ()I +MD: net/minecraft/world/level/block/entity/CampfireBlockEntity/ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V net/minecraft/world/level/block/entity/CampfireBlockEntity/ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V +MD: net/minecraft/world/level/block/entity/CampfireBlockEntity/m_142466_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/level/block/entity/CampfireBlockEntity/load (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/level/block/entity/CampfireBlockEntity/m_155306_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/entity/CampfireBlockEntity;)V net/minecraft/world/level/block/entity/CampfireBlockEntity/cookTick (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/entity/CampfireBlockEntity;)V +MD: net/minecraft/world/level/block/entity/CampfireBlockEntity/m_155313_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/entity/CampfireBlockEntity;)V net/minecraft/world/level/block/entity/CampfireBlockEntity/cooldownTick (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/entity/CampfireBlockEntity;)V +MD: net/minecraft/world/level/block/entity/CampfireBlockEntity/m_155318_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/entity/CampfireBlockEntity;)V net/minecraft/world/level/block/entity/CampfireBlockEntity/particleTick (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/entity/CampfireBlockEntity;)V +MD: net/minecraft/world/level/block/entity/CampfireBlockEntity/m_183515_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/level/block/entity/CampfireBlockEntity/saveAdditional (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/level/block/entity/CampfireBlockEntity/m_238284_ (Lnet/minecraft/world/entity/Entity;Lnet/minecraft/world/item/ItemStack;I)Z net/minecraft/world/level/block/entity/CampfireBlockEntity/placeFood (Lnet/minecraft/world/entity/Entity;Lnet/minecraft/world/item/ItemStack;I)Z +MD: net/minecraft/world/level/block/entity/CampfireBlockEntity/m_268985_ (Lnet/minecraft/world/Container;Lnet/minecraft/world/level/Level;Lnet/minecraft/world/item/crafting/CampfireCookingRecipe;)Lnet/minecraft/world/item/ItemStack; net/minecraft/world/level/block/entity/CampfireBlockEntity/lambda$cookTick$0 (Lnet/minecraft/world/Container;Lnet/minecraft/world/level/Level;Lnet/minecraft/world/item/crafting/CampfireCookingRecipe;)Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/level/block/entity/CampfireBlockEntity/m_58483_ ()Lnet/minecraft/network/protocol/Packet; net/minecraft/world/level/block/entity/CampfireBlockEntity/getUpdatePacket ()Lnet/minecraft/network/protocol/Packet; +MD: net/minecraft/world/level/block/entity/CampfireBlockEntity/m_58483_ ()Lnet/minecraft/network/protocol/game/ClientboundBlockEntityDataPacket; net/minecraft/world/level/block/entity/CampfireBlockEntity/getUpdatePacket ()Lnet/minecraft/network/protocol/game/ClientboundBlockEntityDataPacket; +MD: net/minecraft/world/level/block/entity/CampfireBlockEntity/m_59051_ (Lnet/minecraft/world/item/ItemStack;)Ljava/util/Optional; net/minecraft/world/level/block/entity/CampfireBlockEntity/getCookableRecipe (Lnet/minecraft/world/item/ItemStack;)Ljava/util/Optional; +MD: net/minecraft/world/level/block/entity/CampfireBlockEntity/m_59065_ ()Lnet/minecraft/core/NonNullList; net/minecraft/world/level/block/entity/CampfireBlockEntity/getItems ()Lnet/minecraft/core/NonNullList; +MD: net/minecraft/world/level/block/entity/CampfireBlockEntity/m_59066_ ()V net/minecraft/world/level/block/entity/CampfireBlockEntity/dowse ()V +MD: net/minecraft/world/level/block/entity/CampfireBlockEntity/m_59069_ ()V net/minecraft/world/level/block/entity/CampfireBlockEntity/markUpdated ()V +MD: net/minecraft/world/level/block/entity/CampfireBlockEntity/m_5995_ ()Lnet/minecraft/nbt/CompoundTag; net/minecraft/world/level/block/entity/CampfireBlockEntity/getUpdateTag ()Lnet/minecraft/nbt/CompoundTag; +MD: net/minecraft/world/level/block/entity/CampfireBlockEntity/m_6211_ ()V net/minecraft/world/level/block/entity/CampfireBlockEntity/clearContent ()V +MD: net/minecraft/world/level/block/entity/ChestBlockEntity/ (Lnet/minecraft/world/level/block/entity/BlockEntityType;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V net/minecraft/world/level/block/entity/ChestBlockEntity/ (Lnet/minecraft/world/level/block/entity/BlockEntityType;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V +MD: net/minecraft/world/level/block/entity/ChestBlockEntity/ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V net/minecraft/world/level/block/entity/ChestBlockEntity/ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V +MD: net/minecraft/world/level/block/entity/ChestBlockEntity/m_142151_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;II)V net/minecraft/world/level/block/entity/ChestBlockEntity/signalOpenCount (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;II)V +MD: net/minecraft/world/level/block/entity/ChestBlockEntity/m_142466_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/level/block/entity/ChestBlockEntity/load (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/level/block/entity/ChestBlockEntity/m_155338_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/sounds/SoundEvent;)V net/minecraft/world/level/block/entity/ChestBlockEntity/playSound (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/sounds/SoundEvent;)V +MD: net/minecraft/world/level/block/entity/ChestBlockEntity/m_155343_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/entity/ChestBlockEntity;)V net/minecraft/world/level/block/entity/ChestBlockEntity/lidAnimateTick (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/entity/ChestBlockEntity;)V +MD: net/minecraft/world/level/block/entity/ChestBlockEntity/m_155350_ ()V net/minecraft/world/level/block/entity/ChestBlockEntity/recheckOpen ()V +MD: net/minecraft/world/level/block/entity/ChestBlockEntity/m_183515_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/level/block/entity/ChestBlockEntity/saveAdditional (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/level/block/entity/ChestBlockEntity/m_5785_ (Lnet/minecraft/world/entity/player/Player;)V net/minecraft/world/level/block/entity/ChestBlockEntity/stopOpen (Lnet/minecraft/world/entity/player/Player;)V +MD: net/minecraft/world/level/block/entity/ChestBlockEntity/m_5856_ (Lnet/minecraft/world/entity/player/Player;)V net/minecraft/world/level/block/entity/ChestBlockEntity/startOpen (Lnet/minecraft/world/entity/player/Player;)V +MD: net/minecraft/world/level/block/entity/ChestBlockEntity/m_59086_ (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)I net/minecraft/world/level/block/entity/ChestBlockEntity/getOpenCount (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)I +MD: net/minecraft/world/level/block/entity/ChestBlockEntity/m_59103_ (Lnet/minecraft/world/level/block/entity/ChestBlockEntity;Lnet/minecraft/world/level/block/entity/ChestBlockEntity;)V net/minecraft/world/level/block/entity/ChestBlockEntity/swapContents (Lnet/minecraft/world/level/block/entity/ChestBlockEntity;Lnet/minecraft/world/level/block/entity/ChestBlockEntity;)V +MD: net/minecraft/world/level/block/entity/ChestBlockEntity/m_6520_ (Lnet/minecraft/core/NonNullList;)V net/minecraft/world/level/block/entity/ChestBlockEntity/setItems (Lnet/minecraft/core/NonNullList;)V +MD: net/minecraft/world/level/block/entity/ChestBlockEntity/m_6555_ (ILnet/minecraft/world/entity/player/Inventory;)Lnet/minecraft/world/inventory/AbstractContainerMenu; net/minecraft/world/level/block/entity/ChestBlockEntity/createMenu (ILnet/minecraft/world/entity/player/Inventory;)Lnet/minecraft/world/inventory/AbstractContainerMenu; +MD: net/minecraft/world/level/block/entity/ChestBlockEntity/m_6643_ ()I net/minecraft/world/level/block/entity/ChestBlockEntity/getContainerSize ()I +MD: net/minecraft/world/level/block/entity/ChestBlockEntity/m_6683_ (F)F net/minecraft/world/level/block/entity/ChestBlockEntity/getOpenNess (F)F +MD: net/minecraft/world/level/block/entity/ChestBlockEntity/m_6820_ ()Lnet/minecraft/network/chat/Component; net/minecraft/world/level/block/entity/ChestBlockEntity/getDefaultName ()Lnet/minecraft/network/chat/Component; +MD: net/minecraft/world/level/block/entity/ChestBlockEntity/m_7086_ ()Lnet/minecraft/core/NonNullList; net/minecraft/world/level/block/entity/ChestBlockEntity/getItems ()Lnet/minecraft/core/NonNullList; +MD: net/minecraft/world/level/block/entity/ChestBlockEntity/m_7531_ (II)Z net/minecraft/world/level/block/entity/ChestBlockEntity/triggerEvent (II)Z +MD: net/minecraft/world/level/block/entity/ChestBlockEntity$1/ (Lnet/minecraft/world/level/block/entity/ChestBlockEntity;)V net/minecraft/world/level/block/entity/ChestBlockEntity$1/ (Lnet/minecraft/world/level/block/entity/ChestBlockEntity;)V +MD: net/minecraft/world/level/block/entity/ChestBlockEntity$1/m_142148_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;II)V net/minecraft/world/level/block/entity/ChestBlockEntity$1/openerCountChanged (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;II)V +MD: net/minecraft/world/level/block/entity/ChestBlockEntity$1/m_142289_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V net/minecraft/world/level/block/entity/ChestBlockEntity$1/onClose (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V +MD: net/minecraft/world/level/block/entity/ChestBlockEntity$1/m_142292_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V net/minecraft/world/level/block/entity/ChestBlockEntity$1/onOpen (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V +MD: net/minecraft/world/level/block/entity/ChestBlockEntity$1/m_142718_ (Lnet/minecraft/world/entity/player/Player;)Z net/minecraft/world/level/block/entity/ChestBlockEntity$1/isOwnContainer (Lnet/minecraft/world/entity/player/Player;)Z +MD: net/minecraft/world/level/block/entity/ChestLidController/ ()V net/minecraft/world/level/block/entity/ChestLidController/ ()V +MD: net/minecraft/world/level/block/entity/ChestLidController/m_155374_ ()V net/minecraft/world/level/block/entity/ChestLidController/tickLid ()V +MD: net/minecraft/world/level/block/entity/ChestLidController/m_155375_ (F)F net/minecraft/world/level/block/entity/ChestLidController/getOpenness (F)F +MD: net/minecraft/world/level/block/entity/ChestLidController/m_155377_ (Z)V net/minecraft/world/level/block/entity/ChestLidController/shouldBeOpen (Z)V +MD: net/minecraft/world/level/block/entity/ChiseledBookShelfBlockEntity/ ()V net/minecraft/world/level/block/entity/ChiseledBookShelfBlockEntity/ ()V +MD: net/minecraft/world/level/block/entity/ChiseledBookShelfBlockEntity/ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V net/minecraft/world/level/block/entity/ChiseledBookShelfBlockEntity/ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V +MD: net/minecraft/world/level/block/entity/ChiseledBookShelfBlockEntity/m_142466_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/level/block/entity/ChiseledBookShelfBlockEntity/load (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/level/block/entity/ChiseledBookShelfBlockEntity/m_183515_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/level/block/entity/ChiseledBookShelfBlockEntity/saveAdditional (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/level/block/entity/ChiseledBookShelfBlockEntity/m_260842_ ()I net/minecraft/world/level/block/entity/ChiseledBookShelfBlockEntity/count ()I +MD: net/minecraft/world/level/block/entity/ChiseledBookShelfBlockEntity/m_261204_ (I)V net/minecraft/world/level/block/entity/ChiseledBookShelfBlockEntity/updateState (I)V +MD: net/minecraft/world/level/block/entity/ChiseledBookShelfBlockEntity/m_262444_ ()I net/minecraft/world/level/block/entity/ChiseledBookShelfBlockEntity/getLastInteractedSlot ()I +MD: net/minecraft/world/level/block/entity/ChiseledBookShelfBlockEntity/m_271862_ (Lnet/minecraft/world/Container;ILnet/minecraft/world/item/ItemStack;)Z net/minecraft/world/level/block/entity/ChiseledBookShelfBlockEntity/canTakeItem (Lnet/minecraft/world/Container;ILnet/minecraft/world/item/ItemStack;)Z +MD: net/minecraft/world/level/block/entity/ChiseledBookShelfBlockEntity/m_280244_ (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/Container;Lnet/minecraft/world/item/ItemStack;)Z net/minecraft/world/level/block/entity/ChiseledBookShelfBlockEntity/lambda$canTakeItem$0 (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/Container;Lnet/minecraft/world/item/ItemStack;)Z +MD: net/minecraft/world/level/block/entity/ChiseledBookShelfBlockEntity/m_6211_ ()V net/minecraft/world/level/block/entity/ChiseledBookShelfBlockEntity/clearContent ()V +MD: net/minecraft/world/level/block/entity/ChiseledBookShelfBlockEntity/m_6542_ (Lnet/minecraft/world/entity/player/Player;)Z net/minecraft/world/level/block/entity/ChiseledBookShelfBlockEntity/stillValid (Lnet/minecraft/world/entity/player/Player;)Z +MD: net/minecraft/world/level/block/entity/ChiseledBookShelfBlockEntity/m_6643_ ()I net/minecraft/world/level/block/entity/ChiseledBookShelfBlockEntity/getContainerSize ()I +MD: net/minecraft/world/level/block/entity/ChiseledBookShelfBlockEntity/m_6836_ (ILnet/minecraft/world/item/ItemStack;)V net/minecraft/world/level/block/entity/ChiseledBookShelfBlockEntity/setItem (ILnet/minecraft/world/item/ItemStack;)V +MD: net/minecraft/world/level/block/entity/ChiseledBookShelfBlockEntity/m_6893_ ()I net/minecraft/world/level/block/entity/ChiseledBookShelfBlockEntity/getMaxStackSize ()I +MD: net/minecraft/world/level/block/entity/ChiseledBookShelfBlockEntity/m_7013_ (ILnet/minecraft/world/item/ItemStack;)Z net/minecraft/world/level/block/entity/ChiseledBookShelfBlockEntity/canPlaceItem (ILnet/minecraft/world/item/ItemStack;)Z +MD: net/minecraft/world/level/block/entity/ChiseledBookShelfBlockEntity/m_7407_ (II)Lnet/minecraft/world/item/ItemStack; net/minecraft/world/level/block/entity/ChiseledBookShelfBlockEntity/removeItem (II)Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/level/block/entity/ChiseledBookShelfBlockEntity/m_7983_ ()Z net/minecraft/world/level/block/entity/ChiseledBookShelfBlockEntity/isEmpty ()Z +MD: net/minecraft/world/level/block/entity/ChiseledBookShelfBlockEntity/m_8016_ (I)Lnet/minecraft/world/item/ItemStack; net/minecraft/world/level/block/entity/ChiseledBookShelfBlockEntity/removeItemNoUpdate (I)Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/level/block/entity/ChiseledBookShelfBlockEntity/m_8020_ (I)Lnet/minecraft/world/item/ItemStack; net/minecraft/world/level/block/entity/ChiseledBookShelfBlockEntity/getItem (I)Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/level/block/entity/CommandBlockEntity/ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V net/minecraft/world/level/block/entity/CommandBlockEntity/ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V +MD: net/minecraft/world/level/block/entity/CommandBlockEntity/m_142466_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/level/block/entity/CommandBlockEntity/load (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/level/block/entity/CommandBlockEntity/m_183515_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/level/block/entity/CommandBlockEntity/saveAdditional (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/level/block/entity/CommandBlockEntity/m_59135_ (Z)V net/minecraft/world/level/block/entity/CommandBlockEntity/setPowered (Z)V +MD: net/minecraft/world/level/block/entity/CommandBlockEntity/m_59137_ (Z)V net/minecraft/world/level/block/entity/CommandBlockEntity/setAutomatic (Z)V +MD: net/minecraft/world/level/block/entity/CommandBlockEntity/m_59141_ ()Lnet/minecraft/world/level/BaseCommandBlock; net/minecraft/world/level/block/entity/CommandBlockEntity/getCommandBlock ()Lnet/minecraft/world/level/BaseCommandBlock; +MD: net/minecraft/world/level/block/entity/CommandBlockEntity/m_59142_ ()Z net/minecraft/world/level/block/entity/CommandBlockEntity/isPowered ()Z +MD: net/minecraft/world/level/block/entity/CommandBlockEntity/m_59143_ ()Z net/minecraft/world/level/block/entity/CommandBlockEntity/isAutomatic ()Z +MD: net/minecraft/world/level/block/entity/CommandBlockEntity/m_59144_ ()V net/minecraft/world/level/block/entity/CommandBlockEntity/onModeSwitch ()V +MD: net/minecraft/world/level/block/entity/CommandBlockEntity/m_59145_ ()Z net/minecraft/world/level/block/entity/CommandBlockEntity/wasConditionMet ()Z +MD: net/minecraft/world/level/block/entity/CommandBlockEntity/m_59146_ ()Z net/minecraft/world/level/block/entity/CommandBlockEntity/markConditionMet ()Z +MD: net/minecraft/world/level/block/entity/CommandBlockEntity/m_59148_ ()Lnet/minecraft/world/level/block/entity/CommandBlockEntity$Mode; net/minecraft/world/level/block/entity/CommandBlockEntity/getMode ()Lnet/minecraft/world/level/block/entity/CommandBlockEntity$Mode; +MD: net/minecraft/world/level/block/entity/CommandBlockEntity/m_59151_ ()Z net/minecraft/world/level/block/entity/CommandBlockEntity/isConditional ()Z +MD: net/minecraft/world/level/block/entity/CommandBlockEntity/m_59152_ ()V net/minecraft/world/level/block/entity/CommandBlockEntity/scheduleTick ()V +MD: net/minecraft/world/level/block/entity/CommandBlockEntity/m_6326_ ()Z net/minecraft/world/level/block/entity/CommandBlockEntity/onlyOpCanSetNbt ()Z +MD: net/minecraft/world/level/block/entity/CommandBlockEntity$1/ (Lnet/minecraft/world/level/block/entity/CommandBlockEntity;)V net/minecraft/world/level/block/entity/CommandBlockEntity$1/ (Lnet/minecraft/world/level/block/entity/CommandBlockEntity;)V +MD: net/minecraft/world/level/block/entity/CommandBlockEntity$1/m_288209_ ()Z net/minecraft/world/level/block/entity/CommandBlockEntity$1/isValid ()Z +MD: net/minecraft/world/level/block/entity/CommandBlockEntity$1/m_5991_ ()Lnet/minecraft/server/level/ServerLevel; net/minecraft/world/level/block/entity/CommandBlockEntity$1/getLevel ()Lnet/minecraft/server/level/ServerLevel; +MD: net/minecraft/world/level/block/entity/CommandBlockEntity$1/m_6590_ (Ljava/lang/String;)V net/minecraft/world/level/block/entity/CommandBlockEntity$1/setCommand (Ljava/lang/String;)V +MD: net/minecraft/world/level/block/entity/CommandBlockEntity$1/m_6607_ ()Lnet/minecraft/world/phys/Vec3; net/minecraft/world/level/block/entity/CommandBlockEntity$1/getPosition ()Lnet/minecraft/world/phys/Vec3; +MD: net/minecraft/world/level/block/entity/CommandBlockEntity$1/m_6712_ ()Lnet/minecraft/commands/CommandSourceStack; net/minecraft/world/level/block/entity/CommandBlockEntity$1/createCommandSourceStack ()Lnet/minecraft/commands/CommandSourceStack; +MD: net/minecraft/world/level/block/entity/CommandBlockEntity$1/m_7368_ ()V net/minecraft/world/level/block/entity/CommandBlockEntity$1/onUpdated ()V +MD: net/minecraft/world/level/block/entity/CommandBlockEntity$Mode/ ()V net/minecraft/world/level/block/entity/CommandBlockEntity$Mode/ ()V +MD: net/minecraft/world/level/block/entity/CommandBlockEntity$Mode/ (Ljava/lang/String;I)V net/minecraft/world/level/block/entity/CommandBlockEntity$Mode/ (Ljava/lang/String;I)V +MD: net/minecraft/world/level/block/entity/CommandBlockEntity$Mode/m_155384_ ()[Lnet/minecraft/world/level/block/entity/CommandBlockEntity$Mode; net/minecraft/world/level/block/entity/CommandBlockEntity$Mode/$values ()[Lnet/minecraft/world/level/block/entity/CommandBlockEntity$Mode; +MD: net/minecraft/world/level/block/entity/CommandBlockEntity$Mode/valueOf (Ljava/lang/String;)Lnet/minecraft/world/level/block/entity/CommandBlockEntity$Mode; net/minecraft/world/level/block/entity/CommandBlockEntity$Mode/valueOf (Ljava/lang/String;)Lnet/minecraft/world/level/block/entity/CommandBlockEntity$Mode; +MD: net/minecraft/world/level/block/entity/CommandBlockEntity$Mode/values ()[Lnet/minecraft/world/level/block/entity/CommandBlockEntity$Mode; net/minecraft/world/level/block/entity/CommandBlockEntity$Mode/values ()[Lnet/minecraft/world/level/block/entity/CommandBlockEntity$Mode; +MD: net/minecraft/world/level/block/entity/ComparatorBlockEntity/ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V net/minecraft/world/level/block/entity/ComparatorBlockEntity/ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V +MD: net/minecraft/world/level/block/entity/ComparatorBlockEntity/m_142466_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/level/block/entity/ComparatorBlockEntity/load (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/level/block/entity/ComparatorBlockEntity/m_183515_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/level/block/entity/ComparatorBlockEntity/saveAdditional (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/level/block/entity/ComparatorBlockEntity/m_59175_ (I)V net/minecraft/world/level/block/entity/ComparatorBlockEntity/setOutputSignal (I)V +MD: net/minecraft/world/level/block/entity/ComparatorBlockEntity/m_59182_ ()I net/minecraft/world/level/block/entity/ComparatorBlockEntity/getOutputSignal ()I +MD: net/minecraft/world/level/block/entity/ConduitBlockEntity/ ()V net/minecraft/world/level/block/entity/ConduitBlockEntity/ ()V +MD: net/minecraft/world/level/block/entity/ConduitBlockEntity/ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V net/minecraft/world/level/block/entity/ConduitBlockEntity/ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V +MD: net/minecraft/world/level/block/entity/ConduitBlockEntity/m_142466_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/level/block/entity/ConduitBlockEntity/load (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/level/block/entity/ConduitBlockEntity/m_155399_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/entity/ConduitBlockEntity;)V net/minecraft/world/level/block/entity/ConduitBlockEntity/updateClientTarget (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/entity/ConduitBlockEntity;)V +MD: net/minecraft/world/level/block/entity/ConduitBlockEntity/m_155403_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/entity/ConduitBlockEntity;)V net/minecraft/world/level/block/entity/ConduitBlockEntity/clientTick (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/entity/ConduitBlockEntity;)V +MD: net/minecraft/world/level/block/entity/ConduitBlockEntity/m_155408_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Ljava/util/List;Lnet/minecraft/world/level/block/entity/ConduitBlockEntity;)V net/minecraft/world/level/block/entity/ConduitBlockEntity/updateDestroyTarget (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Ljava/util/List;Lnet/minecraft/world/level/block/entity/ConduitBlockEntity;)V +MD: net/minecraft/world/level/block/entity/ConduitBlockEntity/m_155414_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Ljava/util/List;)Z net/minecraft/world/level/block/entity/ConduitBlockEntity/updateShape (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Ljava/util/List;)Z +MD: net/minecraft/world/level/block/entity/ConduitBlockEntity/m_155418_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Ljava/util/List;Lnet/minecraft/world/entity/Entity;I)V net/minecraft/world/level/block/entity/ConduitBlockEntity/animationTick (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Ljava/util/List;Lnet/minecraft/world/entity/Entity;I)V +MD: net/minecraft/world/level/block/entity/ConduitBlockEntity/m_155424_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Ljava/util/UUID;)Lnet/minecraft/world/entity/LivingEntity; net/minecraft/world/level/block/entity/ConduitBlockEntity/findDestroyTarget (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Ljava/util/UUID;)Lnet/minecraft/world/entity/LivingEntity; +MD: net/minecraft/world/level/block/entity/ConduitBlockEntity/m_155428_ (Lnet/minecraft/world/level/block/entity/ConduitBlockEntity;Ljava/util/List;)V net/minecraft/world/level/block/entity/ConduitBlockEntity/updateHunting (Lnet/minecraft/world/level/block/entity/ConduitBlockEntity;Ljava/util/List;)V +MD: net/minecraft/world/level/block/entity/ConduitBlockEntity/m_155431_ (Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/phys/AABB; net/minecraft/world/level/block/entity/ConduitBlockEntity/getDestroyRangeAABB (Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/phys/AABB; +MD: net/minecraft/world/level/block/entity/ConduitBlockEntity/m_155438_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/entity/ConduitBlockEntity;)V net/minecraft/world/level/block/entity/ConduitBlockEntity/serverTick (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/entity/ConduitBlockEntity;)V +MD: net/minecraft/world/level/block/entity/ConduitBlockEntity/m_155443_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Ljava/util/List;)V net/minecraft/world/level/block/entity/ConduitBlockEntity/applyEffects (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Ljava/util/List;)V +MD: net/minecraft/world/level/block/entity/ConduitBlockEntity/m_183515_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/level/block/entity/ConduitBlockEntity/saveAdditional (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/level/block/entity/ConduitBlockEntity/m_289178_ (Ljava/util/UUID;Lnet/minecraft/world/entity/LivingEntity;)Z net/minecraft/world/level/block/entity/ConduitBlockEntity/lambda$findDestroyTarget$1 (Ljava/util/UUID;Lnet/minecraft/world/entity/LivingEntity;)Z +MD: net/minecraft/world/level/block/entity/ConduitBlockEntity/m_289179_ (Lnet/minecraft/world/entity/LivingEntity;)Z net/minecraft/world/level/block/entity/ConduitBlockEntity/lambda$updateDestroyTarget$0 (Lnet/minecraft/world/entity/LivingEntity;)Z +MD: net/minecraft/world/level/block/entity/ConduitBlockEntity/m_58483_ ()Lnet/minecraft/network/protocol/Packet; net/minecraft/world/level/block/entity/ConduitBlockEntity/getUpdatePacket ()Lnet/minecraft/network/protocol/Packet; +MD: net/minecraft/world/level/block/entity/ConduitBlockEntity/m_58483_ ()Lnet/minecraft/network/protocol/game/ClientboundBlockEntityDataPacket; net/minecraft/world/level/block/entity/ConduitBlockEntity/getUpdatePacket ()Lnet/minecraft/network/protocol/game/ClientboundBlockEntityDataPacket; +MD: net/minecraft/world/level/block/entity/ConduitBlockEntity/m_59197_ (F)F net/minecraft/world/level/block/entity/ConduitBlockEntity/getActiveRotation (F)F +MD: net/minecraft/world/level/block/entity/ConduitBlockEntity/m_59214_ (Z)V net/minecraft/world/level/block/entity/ConduitBlockEntity/setHunting (Z)V +MD: net/minecraft/world/level/block/entity/ConduitBlockEntity/m_59216_ ()Z net/minecraft/world/level/block/entity/ConduitBlockEntity/isActive ()Z +MD: net/minecraft/world/level/block/entity/ConduitBlockEntity/m_59217_ ()Z net/minecraft/world/level/block/entity/ConduitBlockEntity/isHunting ()Z +MD: net/minecraft/world/level/block/entity/ConduitBlockEntity/m_5995_ ()Lnet/minecraft/nbt/CompoundTag; net/minecraft/world/level/block/entity/ConduitBlockEntity/getUpdateTag ()Lnet/minecraft/nbt/CompoundTag; +MD: net/minecraft/world/level/block/entity/ContainerOpenersCounter/ ()V net/minecraft/world/level/block/entity/ContainerOpenersCounter/ ()V +MD: net/minecraft/world/level/block/entity/ContainerOpenersCounter/m_142148_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;II)V net/minecraft/world/level/block/entity/ContainerOpenersCounter/openerCountChanged (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;II)V +MD: net/minecraft/world/level/block/entity/ContainerOpenersCounter/m_142289_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V net/minecraft/world/level/block/entity/ContainerOpenersCounter/onClose (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V +MD: net/minecraft/world/level/block/entity/ContainerOpenersCounter/m_142292_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V net/minecraft/world/level/block/entity/ContainerOpenersCounter/onOpen (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V +MD: net/minecraft/world/level/block/entity/ContainerOpenersCounter/m_142718_ (Lnet/minecraft/world/entity/player/Player;)Z net/minecraft/world/level/block/entity/ContainerOpenersCounter/isOwnContainer (Lnet/minecraft/world/entity/player/Player;)Z +MD: net/minecraft/world/level/block/entity/ContainerOpenersCounter/m_155450_ ()I net/minecraft/world/level/block/entity/ContainerOpenersCounter/getOpenerCount ()I +MD: net/minecraft/world/level/block/entity/ContainerOpenersCounter/m_155452_ (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V net/minecraft/world/level/block/entity/ContainerOpenersCounter/incrementOpeners (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V +MD: net/minecraft/world/level/block/entity/ContainerOpenersCounter/m_155457_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;)I net/minecraft/world/level/block/entity/ContainerOpenersCounter/getOpenCount (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;)I +MD: net/minecraft/world/level/block/entity/ContainerOpenersCounter/m_155468_ (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V net/minecraft/world/level/block/entity/ContainerOpenersCounter/decrementOpeners (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V +MD: net/minecraft/world/level/block/entity/ContainerOpenersCounter/m_155476_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V net/minecraft/world/level/block/entity/ContainerOpenersCounter/recheckOpeners (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V +MD: net/minecraft/world/level/block/entity/ContainerOpenersCounter/m_155480_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V net/minecraft/world/level/block/entity/ContainerOpenersCounter/scheduleRecheck (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V +MD: net/minecraft/world/level/block/entity/DaylightDetectorBlockEntity/ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V net/minecraft/world/level/block/entity/DaylightDetectorBlockEntity/ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V +MD: net/minecraft/world/level/block/entity/DecoratedPotBlockEntity/ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V net/minecraft/world/level/block/entity/DecoratedPotBlockEntity/ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V +MD: net/minecraft/world/level/block/entity/DecoratedPotBlockEntity/m_142466_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/level/block/entity/DecoratedPotBlockEntity/load (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/level/block/entity/DecoratedPotBlockEntity/m_183515_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/level/block/entity/DecoratedPotBlockEntity/saveAdditional (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/level/block/entity/DecoratedPotBlockEntity/m_271870_ (Lnet/minecraft/world/item/ItemStack;)V net/minecraft/world/level/block/entity/DecoratedPotBlockEntity/setFromItem (Lnet/minecraft/world/item/ItemStack;)V +MD: net/minecraft/world/level/block/entity/DecoratedPotBlockEntity/m_271886_ ()Lnet/minecraft/core/Direction; net/minecraft/world/level/block/entity/DecoratedPotBlockEntity/getDirection ()Lnet/minecraft/core/Direction; +MD: net/minecraft/world/level/block/entity/DecoratedPotBlockEntity/m_284296_ ()Lnet/minecraft/world/level/block/entity/DecoratedPotBlockEntity$Decorations; net/minecraft/world/level/block/entity/DecoratedPotBlockEntity/getDecorations ()Lnet/minecraft/world/level/block/entity/DecoratedPotBlockEntity$Decorations; +MD: net/minecraft/world/level/block/entity/DecoratedPotBlockEntity/m_58483_ ()Lnet/minecraft/network/protocol/Packet; net/minecraft/world/level/block/entity/DecoratedPotBlockEntity/getUpdatePacket ()Lnet/minecraft/network/protocol/Packet; +MD: net/minecraft/world/level/block/entity/DecoratedPotBlockEntity/m_58483_ ()Lnet/minecraft/network/protocol/game/ClientboundBlockEntityDataPacket; net/minecraft/world/level/block/entity/DecoratedPotBlockEntity/getUpdatePacket ()Lnet/minecraft/network/protocol/game/ClientboundBlockEntityDataPacket; +MD: net/minecraft/world/level/block/entity/DecoratedPotBlockEntity/m_5995_ ()Lnet/minecraft/nbt/CompoundTag; net/minecraft/world/level/block/entity/DecoratedPotBlockEntity/getUpdateTag ()Lnet/minecraft/nbt/CompoundTag; +MD: net/minecraft/world/level/block/entity/DecoratedPotBlockEntity$Decorations/ ()V net/minecraft/world/level/block/entity/DecoratedPotBlockEntity$Decorations/ ()V +MD: net/minecraft/world/level/block/entity/DecoratedPotBlockEntity$Decorations/ (Lnet/minecraft/world/item/Item;Lnet/minecraft/world/item/Item;Lnet/minecraft/world/item/Item;Lnet/minecraft/world/item/Item;)V net/minecraft/world/level/block/entity/DecoratedPotBlockEntity$Decorations/ (Lnet/minecraft/world/item/Item;Lnet/minecraft/world/item/Item;Lnet/minecraft/world/item/Item;Lnet/minecraft/world/item/Item;)V +MD: net/minecraft/world/level/block/entity/DecoratedPotBlockEntity$Decorations/equals (Ljava/lang/Object;)Z net/minecraft/world/level/block/entity/DecoratedPotBlockEntity$Decorations/equals (Ljava/lang/Object;)Z +MD: net/minecraft/world/level/block/entity/DecoratedPotBlockEntity$Decorations/f_283809_ ()Lnet/minecraft/world/item/Item; net/minecraft/world/level/block/entity/DecoratedPotBlockEntity$Decorations/left ()Lnet/minecraft/world/item/Item; +MD: net/minecraft/world/level/block/entity/DecoratedPotBlockEntity$Decorations/f_283810_ ()Lnet/minecraft/world/item/Item; net/minecraft/world/level/block/entity/DecoratedPotBlockEntity$Decorations/front ()Lnet/minecraft/world/item/Item; +MD: net/minecraft/world/level/block/entity/DecoratedPotBlockEntity$Decorations/f_283873_ ()Lnet/minecraft/world/item/Item; net/minecraft/world/level/block/entity/DecoratedPotBlockEntity$Decorations/right ()Lnet/minecraft/world/item/Item; +MD: net/minecraft/world/level/block/entity/DecoratedPotBlockEntity$Decorations/f_283886_ ()Lnet/minecraft/world/item/Item; net/minecraft/world/level/block/entity/DecoratedPotBlockEntity$Decorations/back ()Lnet/minecraft/world/item/Item; +MD: net/minecraft/world/level/block/entity/DecoratedPotBlockEntity$Decorations/hashCode ()I net/minecraft/world/level/block/entity/DecoratedPotBlockEntity$Decorations/hashCode ()I +MD: net/minecraft/world/level/block/entity/DecoratedPotBlockEntity$Decorations/m_284135_ (Lnet/minecraft/nbt/CompoundTag;)Lnet/minecraft/nbt/CompoundTag; net/minecraft/world/level/block/entity/DecoratedPotBlockEntity$Decorations/save (Lnet/minecraft/nbt/CompoundTag;)Lnet/minecraft/nbt/CompoundTag; +MD: net/minecraft/world/level/block/entity/DecoratedPotBlockEntity$Decorations/m_284195_ ()Ljava/util/stream/Stream; net/minecraft/world/level/block/entity/DecoratedPotBlockEntity$Decorations/sorted ()Ljava/util/stream/Stream; +MD: net/minecraft/world/level/block/entity/DecoratedPotBlockEntity$Decorations/m_284207_ (Lnet/minecraft/nbt/CompoundTag;)Lnet/minecraft/world/level/block/entity/DecoratedPotBlockEntity$Decorations; net/minecraft/world/level/block/entity/DecoratedPotBlockEntity$Decorations/load (Lnet/minecraft/nbt/CompoundTag;)Lnet/minecraft/world/level/block/entity/DecoratedPotBlockEntity$Decorations; +MD: net/minecraft/world/level/block/entity/DecoratedPotBlockEntity$Decorations/m_284442_ (Lnet/minecraft/nbt/ListTag;Lnet/minecraft/world/item/Item;)V net/minecraft/world/level/block/entity/DecoratedPotBlockEntity$Decorations/lambda$save$0 (Lnet/minecraft/nbt/ListTag;Lnet/minecraft/world/item/Item;)V +MD: net/minecraft/world/level/block/entity/DecoratedPotBlockEntity$Decorations/m_284538_ (Lnet/minecraft/nbt/ListTag;I)Lnet/minecraft/world/item/Item; net/minecraft/world/level/block/entity/DecoratedPotBlockEntity$Decorations/itemFromTag (Lnet/minecraft/nbt/ListTag;I)Lnet/minecraft/world/item/Item; +MD: net/minecraft/world/level/block/entity/DecoratedPotBlockEntity$Decorations/toString ()Ljava/lang/String; net/minecraft/world/level/block/entity/DecoratedPotBlockEntity$Decorations/toString ()Ljava/lang/String; +MD: net/minecraft/world/level/block/entity/DecoratedPotPatterns/ ()V net/minecraft/world/level/block/entity/DecoratedPotPatterns/ ()V +MD: net/minecraft/world/level/block/entity/DecoratedPotPatterns/ ()V net/minecraft/world/level/block/entity/DecoratedPotPatterns/ ()V +MD: net/minecraft/world/level/block/entity/DecoratedPotPatterns/m_271696_ (Lnet/minecraft/world/item/Item;)Lnet/minecraft/resources/ResourceKey; net/minecraft/world/level/block/entity/DecoratedPotPatterns/getResourceKey (Lnet/minecraft/world/item/Item;)Lnet/minecraft/resources/ResourceKey; +MD: net/minecraft/world/level/block/entity/DecoratedPotPatterns/m_271723_ (Ljava/lang/String;)Lnet/minecraft/resources/ResourceKey; net/minecraft/world/level/block/entity/DecoratedPotPatterns/create (Ljava/lang/String;)Lnet/minecraft/resources/ResourceKey; +MD: net/minecraft/world/level/block/entity/DecoratedPotPatterns/m_271757_ (Lnet/minecraft/resources/ResourceKey;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/world/level/block/entity/DecoratedPotPatterns/location (Lnet/minecraft/resources/ResourceKey;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/world/level/block/entity/DecoratedPotPatterns/m_271825_ (Lnet/minecraft/core/Registry;)Ljava/lang/String; net/minecraft/world/level/block/entity/DecoratedPotPatterns/bootstrap (Lnet/minecraft/core/Registry;)Ljava/lang/String; +MD: net/minecraft/world/level/block/entity/DispenserBlockEntity/ (Lnet/minecraft/world/level/block/entity/BlockEntityType;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V net/minecraft/world/level/block/entity/DispenserBlockEntity/ (Lnet/minecraft/world/level/block/entity/BlockEntityType;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V +MD: net/minecraft/world/level/block/entity/DispenserBlockEntity/ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V net/minecraft/world/level/block/entity/DispenserBlockEntity/ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V +MD: net/minecraft/world/level/block/entity/DispenserBlockEntity/m_142466_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/level/block/entity/DispenserBlockEntity/load (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/level/block/entity/DispenserBlockEntity/m_183515_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/level/block/entity/DispenserBlockEntity/saveAdditional (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/level/block/entity/DispenserBlockEntity/m_222761_ (Lnet/minecraft/util/RandomSource;)I net/minecraft/world/level/block/entity/DispenserBlockEntity/getRandomSlot (Lnet/minecraft/util/RandomSource;)I +MD: net/minecraft/world/level/block/entity/DispenserBlockEntity/m_59237_ (Lnet/minecraft/world/item/ItemStack;)I net/minecraft/world/level/block/entity/DispenserBlockEntity/addItem (Lnet/minecraft/world/item/ItemStack;)I +MD: net/minecraft/world/level/block/entity/DispenserBlockEntity/m_6520_ (Lnet/minecraft/core/NonNullList;)V net/minecraft/world/level/block/entity/DispenserBlockEntity/setItems (Lnet/minecraft/core/NonNullList;)V +MD: net/minecraft/world/level/block/entity/DispenserBlockEntity/m_6555_ (ILnet/minecraft/world/entity/player/Inventory;)Lnet/minecraft/world/inventory/AbstractContainerMenu; net/minecraft/world/level/block/entity/DispenserBlockEntity/createMenu (ILnet/minecraft/world/entity/player/Inventory;)Lnet/minecraft/world/inventory/AbstractContainerMenu; +MD: net/minecraft/world/level/block/entity/DispenserBlockEntity/m_6643_ ()I net/minecraft/world/level/block/entity/DispenserBlockEntity/getContainerSize ()I +MD: net/minecraft/world/level/block/entity/DispenserBlockEntity/m_6820_ ()Lnet/minecraft/network/chat/Component; net/minecraft/world/level/block/entity/DispenserBlockEntity/getDefaultName ()Lnet/minecraft/network/chat/Component; +MD: net/minecraft/world/level/block/entity/DispenserBlockEntity/m_7086_ ()Lnet/minecraft/core/NonNullList; net/minecraft/world/level/block/entity/DispenserBlockEntity/getItems ()Lnet/minecraft/core/NonNullList; +MD: net/minecraft/world/level/block/entity/DropperBlockEntity/ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V net/minecraft/world/level/block/entity/DropperBlockEntity/ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V +MD: net/minecraft/world/level/block/entity/DropperBlockEntity/m_6820_ ()Lnet/minecraft/network/chat/Component; net/minecraft/world/level/block/entity/DropperBlockEntity/getDefaultName ()Lnet/minecraft/network/chat/Component; +MD: net/minecraft/world/level/block/entity/EnchantmentTableBlockEntity/ ()V net/minecraft/world/level/block/entity/EnchantmentTableBlockEntity/ ()V +MD: net/minecraft/world/level/block/entity/EnchantmentTableBlockEntity/ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V net/minecraft/world/level/block/entity/EnchantmentTableBlockEntity/ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V +MD: net/minecraft/world/level/block/entity/EnchantmentTableBlockEntity/m_142466_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/level/block/entity/EnchantmentTableBlockEntity/load (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/level/block/entity/EnchantmentTableBlockEntity/m_155503_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/entity/EnchantmentTableBlockEntity;)V net/minecraft/world/level/block/entity/EnchantmentTableBlockEntity/bookAnimationTick (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/entity/EnchantmentTableBlockEntity;)V +MD: net/minecraft/world/level/block/entity/EnchantmentTableBlockEntity/m_183515_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/level/block/entity/EnchantmentTableBlockEntity/saveAdditional (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/level/block/entity/EnchantmentTableBlockEntity/m_59272_ (Lnet/minecraft/network/chat/Component;)V net/minecraft/world/level/block/entity/EnchantmentTableBlockEntity/setCustomName (Lnet/minecraft/network/chat/Component;)V +MD: net/minecraft/world/level/block/entity/EnchantmentTableBlockEntity/m_7755_ ()Lnet/minecraft/network/chat/Component; net/minecraft/world/level/block/entity/EnchantmentTableBlockEntity/getName ()Lnet/minecraft/network/chat/Component; +MD: net/minecraft/world/level/block/entity/EnchantmentTableBlockEntity/m_7770_ ()Lnet/minecraft/network/chat/Component; net/minecraft/world/level/block/entity/EnchantmentTableBlockEntity/getCustomName ()Lnet/minecraft/network/chat/Component; +MD: net/minecraft/world/level/block/entity/EnderChestBlockEntity/ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V net/minecraft/world/level/block/entity/EnderChestBlockEntity/ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V +MD: net/minecraft/world/level/block/entity/EnderChestBlockEntity/m_155515_ (Lnet/minecraft/world/entity/player/Player;)V net/minecraft/world/level/block/entity/EnderChestBlockEntity/startOpen (Lnet/minecraft/world/entity/player/Player;)V +MD: net/minecraft/world/level/block/entity/EnderChestBlockEntity/m_155517_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/entity/EnderChestBlockEntity;)V net/minecraft/world/level/block/entity/EnderChestBlockEntity/lidAnimateTick (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/entity/EnderChestBlockEntity;)V +MD: net/minecraft/world/level/block/entity/EnderChestBlockEntity/m_155522_ (Lnet/minecraft/world/entity/player/Player;)V net/minecraft/world/level/block/entity/EnderChestBlockEntity/stopOpen (Lnet/minecraft/world/entity/player/Player;)V +MD: net/minecraft/world/level/block/entity/EnderChestBlockEntity/m_155524_ ()V net/minecraft/world/level/block/entity/EnderChestBlockEntity/recheckOpen ()V +MD: net/minecraft/world/level/block/entity/EnderChestBlockEntity/m_59282_ (Lnet/minecraft/world/entity/player/Player;)Z net/minecraft/world/level/block/entity/EnderChestBlockEntity/stillValid (Lnet/minecraft/world/entity/player/Player;)Z +MD: net/minecraft/world/level/block/entity/EnderChestBlockEntity/m_6683_ (F)F net/minecraft/world/level/block/entity/EnderChestBlockEntity/getOpenNess (F)F +MD: net/minecraft/world/level/block/entity/EnderChestBlockEntity/m_7531_ (II)Z net/minecraft/world/level/block/entity/EnderChestBlockEntity/triggerEvent (II)Z +MD: net/minecraft/world/level/block/entity/EnderChestBlockEntity$1/ (Lnet/minecraft/world/level/block/entity/EnderChestBlockEntity;)V net/minecraft/world/level/block/entity/EnderChestBlockEntity$1/ (Lnet/minecraft/world/level/block/entity/EnderChestBlockEntity;)V +MD: net/minecraft/world/level/block/entity/EnderChestBlockEntity$1/m_142148_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;II)V net/minecraft/world/level/block/entity/EnderChestBlockEntity$1/openerCountChanged (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;II)V +MD: net/minecraft/world/level/block/entity/EnderChestBlockEntity$1/m_142289_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V net/minecraft/world/level/block/entity/EnderChestBlockEntity$1/onClose (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V +MD: net/minecraft/world/level/block/entity/EnderChestBlockEntity$1/m_142292_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V net/minecraft/world/level/block/entity/EnderChestBlockEntity$1/onOpen (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V +MD: net/minecraft/world/level/block/entity/EnderChestBlockEntity$1/m_142718_ (Lnet/minecraft/world/entity/player/Player;)Z net/minecraft/world/level/block/entity/EnderChestBlockEntity$1/isOwnContainer (Lnet/minecraft/world/entity/player/Player;)Z +MD: net/minecraft/world/level/block/entity/FurnaceBlockEntity/ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V net/minecraft/world/level/block/entity/FurnaceBlockEntity/ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V +MD: net/minecraft/world/level/block/entity/FurnaceBlockEntity/m_6555_ (ILnet/minecraft/world/entity/player/Inventory;)Lnet/minecraft/world/inventory/AbstractContainerMenu; net/minecraft/world/level/block/entity/FurnaceBlockEntity/createMenu (ILnet/minecraft/world/entity/player/Inventory;)Lnet/minecraft/world/inventory/AbstractContainerMenu; +MD: net/minecraft/world/level/block/entity/FurnaceBlockEntity/m_6820_ ()Lnet/minecraft/network/chat/Component; net/minecraft/world/level/block/entity/FurnaceBlockEntity/getDefaultName ()Lnet/minecraft/network/chat/Component; +MD: net/minecraft/world/level/block/entity/HangingSignBlockEntity/ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V net/minecraft/world/level/block/entity/HangingSignBlockEntity/ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V +MD: net/minecraft/world/level/block/entity/HangingSignBlockEntity/m_245065_ ()I net/minecraft/world/level/block/entity/HangingSignBlockEntity/getTextLineHeight ()I +MD: net/minecraft/world/level/block/entity/HangingSignBlockEntity/m_245123_ ()I net/minecraft/world/level/block/entity/HangingSignBlockEntity/getMaxTextLineWidth ()I +MD: net/minecraft/world/level/block/entity/Hopper/ ()V net/minecraft/world/level/block/entity/Hopper/ ()V +MD: net/minecraft/world/level/block/entity/Hopper/m_59300_ ()Lnet/minecraft/world/phys/shapes/VoxelShape; net/minecraft/world/level/block/entity/Hopper/getSuckShape ()Lnet/minecraft/world/phys/shapes/VoxelShape; +MD: net/minecraft/world/level/block/entity/Hopper/m_6343_ ()D net/minecraft/world/level/block/entity/Hopper/getLevelX ()D +MD: net/minecraft/world/level/block/entity/Hopper/m_6358_ ()D net/minecraft/world/level/block/entity/Hopper/getLevelY ()D +MD: net/minecraft/world/level/block/entity/Hopper/m_6446_ ()D net/minecraft/world/level/block/entity/Hopper/getLevelZ ()D +MD: net/minecraft/world/level/block/entity/HopperBlockEntity/ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V net/minecraft/world/level/block/entity/HopperBlockEntity/ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V +MD: net/minecraft/world/level/block/entity/HopperBlockEntity/m_142466_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/level/block/entity/HopperBlockEntity/load (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/level/block/entity/HopperBlockEntity/m_155552_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/level/block/entity/Hopper;)Z net/minecraft/world/level/block/entity/HopperBlockEntity/suckInItems (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/level/block/entity/Hopper;)Z +MD: net/minecraft/world/level/block/entity/HopperBlockEntity/m_155555_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/level/block/entity/Hopper;Lnet/minecraft/world/phys/AABB;)Ljava/util/stream/Stream; net/minecraft/world/level/block/entity/HopperBlockEntity/lambda$getItemsAtAndAbove$4 (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/level/block/entity/Hopper;Lnet/minecraft/world/phys/AABB;)Ljava/util/stream/Stream; +MD: net/minecraft/world/level/block/entity/HopperBlockEntity/m_155559_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/level/block/entity/HopperBlockEntity;)Z net/minecraft/world/level/block/entity/HopperBlockEntity/lambda$pushItemsTick$0 (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/level/block/entity/HopperBlockEntity;)Z +MD: net/minecraft/world/level/block/entity/HopperBlockEntity/m_155562_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/Container;)Z net/minecraft/world/level/block/entity/HopperBlockEntity/ejectItems (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/Container;)Z +MD: net/minecraft/world/level/block/entity/HopperBlockEntity/m_155567_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/entity/Entity;Lnet/minecraft/world/level/block/entity/HopperBlockEntity;)V net/minecraft/world/level/block/entity/HopperBlockEntity/entityInside (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/entity/Entity;Lnet/minecraft/world/level/block/entity/HopperBlockEntity;)V +MD: net/minecraft/world/level/block/entity/HopperBlockEntity/m_155573_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/entity/HopperBlockEntity;)V net/minecraft/world/level/block/entity/HopperBlockEntity/pushItemsTick (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/entity/HopperBlockEntity;)V +MD: net/minecraft/world/level/block/entity/HopperBlockEntity/m_155578_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/entity/HopperBlockEntity;Ljava/util/function/BooleanSupplier;)Z net/minecraft/world/level/block/entity/HopperBlockEntity/tryMoveItems (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/entity/HopperBlockEntity;Ljava/util/function/BooleanSupplier;)Z +MD: net/minecraft/world/level/block/entity/HopperBlockEntity/m_155584_ (Lnet/minecraft/world/level/block/entity/HopperBlockEntity;Lnet/minecraft/world/entity/Entity;)Z net/minecraft/world/level/block/entity/HopperBlockEntity/lambda$entityInside$5 (Lnet/minecraft/world/level/block/entity/HopperBlockEntity;Lnet/minecraft/world/entity/Entity;)Z +MD: net/minecraft/world/level/block/entity/HopperBlockEntity/m_155589_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/level/block/entity/Hopper;)Ljava/util/List; net/minecraft/world/level/block/entity/HopperBlockEntity/getItemsAtAndAbove (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/level/block/entity/Hopper;)Ljava/util/List; +MD: net/minecraft/world/level/block/entity/HopperBlockEntity/m_155592_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/Container; net/minecraft/world/level/block/entity/HopperBlockEntity/getAttachedContainer (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/Container; +MD: net/minecraft/world/level/block/entity/HopperBlockEntity/m_155596_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/level/block/entity/Hopper;)Lnet/minecraft/world/Container; net/minecraft/world/level/block/entity/HopperBlockEntity/getSourceContainer (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/level/block/entity/Hopper;)Lnet/minecraft/world/Container; +MD: net/minecraft/world/level/block/entity/HopperBlockEntity/m_183515_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/level/block/entity/HopperBlockEntity/saveAdditional (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/level/block/entity/HopperBlockEntity/m_271906_ (Lnet/minecraft/world/Container;Lnet/minecraft/world/Container;Lnet/minecraft/world/item/ItemStack;ILnet/minecraft/core/Direction;)Z net/minecraft/world/level/block/entity/HopperBlockEntity/canTakeItemFromContainer (Lnet/minecraft/world/Container;Lnet/minecraft/world/Container;Lnet/minecraft/world/item/ItemStack;ILnet/minecraft/core/Direction;)Z +MD: net/minecraft/world/level/block/entity/HopperBlockEntity/m_59317_ (Lnet/minecraft/world/Container;I)Z net/minecraft/world/level/block/entity/HopperBlockEntity/lambda$isEmptyContainer$2 (Lnet/minecraft/world/Container;I)Z +MD: net/minecraft/world/level/block/entity/HopperBlockEntity/m_59320_ (Lnet/minecraft/world/Container;Lnet/minecraft/world/Container;Lnet/minecraft/world/item/ItemStack;ILnet/minecraft/core/Direction;)Lnet/minecraft/world/item/ItemStack; net/minecraft/world/level/block/entity/HopperBlockEntity/tryMoveInItem (Lnet/minecraft/world/Container;Lnet/minecraft/world/Container;Lnet/minecraft/world/item/ItemStack;ILnet/minecraft/core/Direction;)Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/level/block/entity/HopperBlockEntity/m_59326_ (Lnet/minecraft/world/Container;Lnet/minecraft/world/Container;Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/core/Direction;)Lnet/minecraft/world/item/ItemStack; net/minecraft/world/level/block/entity/HopperBlockEntity/addItem (Lnet/minecraft/world/Container;Lnet/minecraft/world/Container;Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/core/Direction;)Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/level/block/entity/HopperBlockEntity/m_59331_ (Lnet/minecraft/world/Container;Lnet/minecraft/world/entity/item/ItemEntity;)Z net/minecraft/world/level/block/entity/HopperBlockEntity/addItem (Lnet/minecraft/world/Container;Lnet/minecraft/world/entity/item/ItemEntity;)Z +MD: net/minecraft/world/level/block/entity/HopperBlockEntity/m_59334_ (Lnet/minecraft/world/Container;Lnet/minecraft/world/item/ItemStack;ILnet/minecraft/core/Direction;)Z net/minecraft/world/level/block/entity/HopperBlockEntity/canPlaceItemInContainer (Lnet/minecraft/world/Container;Lnet/minecraft/world/item/ItemStack;ILnet/minecraft/core/Direction;)Z +MD: net/minecraft/world/level/block/entity/HopperBlockEntity/m_59339_ (Lnet/minecraft/world/Container;Lnet/minecraft/core/Direction;)Ljava/util/stream/IntStream; net/minecraft/world/level/block/entity/HopperBlockEntity/getSlots (Lnet/minecraft/world/Container;Lnet/minecraft/core/Direction;)Ljava/util/stream/IntStream; +MD: net/minecraft/world/level/block/entity/HopperBlockEntity/m_59344_ (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/item/ItemStack;)Z net/minecraft/world/level/block/entity/HopperBlockEntity/canMergeItems (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/item/ItemStack;)Z +MD: net/minecraft/world/level/block/entity/HopperBlockEntity/m_59347_ (Lnet/minecraft/world/level/Level;DDD)Lnet/minecraft/world/Container; net/minecraft/world/level/block/entity/HopperBlockEntity/getContainerAt (Lnet/minecraft/world/level/Level;DDD)Lnet/minecraft/world/Container; +MD: net/minecraft/world/level/block/entity/HopperBlockEntity/m_59354_ (Lnet/minecraft/world/level/block/entity/Hopper;Lnet/minecraft/world/Container;ILnet/minecraft/core/Direction;)Z net/minecraft/world/level/block/entity/HopperBlockEntity/tryTakeInItemFromSlot (Lnet/minecraft/world/level/block/entity/Hopper;Lnet/minecraft/world/Container;ILnet/minecraft/core/Direction;)Z +MD: net/minecraft/world/level/block/entity/HopperBlockEntity/m_59359_ (Lnet/minecraft/world/level/block/entity/Hopper;Lnet/minecraft/world/Container;Lnet/minecraft/core/Direction;I)Z net/minecraft/world/level/block/entity/HopperBlockEntity/lambda$suckInItems$3 (Lnet/minecraft/world/level/block/entity/Hopper;Lnet/minecraft/world/Container;Lnet/minecraft/core/Direction;I)Z +MD: net/minecraft/world/level/block/entity/HopperBlockEntity/m_59377_ (Lnet/minecraft/world/Container;I)Z net/minecraft/world/level/block/entity/HopperBlockEntity/lambda$isFullContainer$1 (Lnet/minecraft/world/Container;I)Z +MD: net/minecraft/world/level/block/entity/HopperBlockEntity/m_59385_ (Lnet/minecraft/world/Container;Lnet/minecraft/core/Direction;)Z net/minecraft/world/level/block/entity/HopperBlockEntity/isFullContainer (Lnet/minecraft/world/Container;Lnet/minecraft/core/Direction;)Z +MD: net/minecraft/world/level/block/entity/HopperBlockEntity/m_59390_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/Container; net/minecraft/world/level/block/entity/HopperBlockEntity/getContainerAt (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/Container; +MD: net/minecraft/world/level/block/entity/HopperBlockEntity/m_59395_ (I)V net/minecraft/world/level/block/entity/HopperBlockEntity/setCooldown (I)V +MD: net/minecraft/world/level/block/entity/HopperBlockEntity/m_59397_ (Lnet/minecraft/world/Container;Lnet/minecraft/core/Direction;)Z net/minecraft/world/level/block/entity/HopperBlockEntity/isEmptyContainer (Lnet/minecraft/world/Container;Lnet/minecraft/core/Direction;)Z +MD: net/minecraft/world/level/block/entity/HopperBlockEntity/m_59404_ ()Z net/minecraft/world/level/block/entity/HopperBlockEntity/inventoryFull ()Z +MD: net/minecraft/world/level/block/entity/HopperBlockEntity/m_59407_ ()Z net/minecraft/world/level/block/entity/HopperBlockEntity/isOnCooldown ()Z +MD: net/minecraft/world/level/block/entity/HopperBlockEntity/m_59409_ ()Z net/minecraft/world/level/block/entity/HopperBlockEntity/isOnCustomCooldown ()Z +MD: net/minecraft/world/level/block/entity/HopperBlockEntity/m_6343_ ()D net/minecraft/world/level/block/entity/HopperBlockEntity/getLevelX ()D +MD: net/minecraft/world/level/block/entity/HopperBlockEntity/m_6358_ ()D net/minecraft/world/level/block/entity/HopperBlockEntity/getLevelY ()D +MD: net/minecraft/world/level/block/entity/HopperBlockEntity/m_6446_ ()D net/minecraft/world/level/block/entity/HopperBlockEntity/getLevelZ ()D +MD: net/minecraft/world/level/block/entity/HopperBlockEntity/m_6520_ (Lnet/minecraft/core/NonNullList;)V net/minecraft/world/level/block/entity/HopperBlockEntity/setItems (Lnet/minecraft/core/NonNullList;)V +MD: net/minecraft/world/level/block/entity/HopperBlockEntity/m_6555_ (ILnet/minecraft/world/entity/player/Inventory;)Lnet/minecraft/world/inventory/AbstractContainerMenu; net/minecraft/world/level/block/entity/HopperBlockEntity/createMenu (ILnet/minecraft/world/entity/player/Inventory;)Lnet/minecraft/world/inventory/AbstractContainerMenu; +MD: net/minecraft/world/level/block/entity/HopperBlockEntity/m_6643_ ()I net/minecraft/world/level/block/entity/HopperBlockEntity/getContainerSize ()I +MD: net/minecraft/world/level/block/entity/HopperBlockEntity/m_6820_ ()Lnet/minecraft/network/chat/Component; net/minecraft/world/level/block/entity/HopperBlockEntity/getDefaultName ()Lnet/minecraft/network/chat/Component; +MD: net/minecraft/world/level/block/entity/HopperBlockEntity/m_6836_ (ILnet/minecraft/world/item/ItemStack;)V net/minecraft/world/level/block/entity/HopperBlockEntity/setItem (ILnet/minecraft/world/item/ItemStack;)V +MD: net/minecraft/world/level/block/entity/HopperBlockEntity/m_7086_ ()Lnet/minecraft/core/NonNullList; net/minecraft/world/level/block/entity/HopperBlockEntity/getItems ()Lnet/minecraft/core/NonNullList; +MD: net/minecraft/world/level/block/entity/HopperBlockEntity/m_7407_ (II)Lnet/minecraft/world/item/ItemStack; net/minecraft/world/level/block/entity/HopperBlockEntity/removeItem (II)Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/level/block/entity/JigsawBlockEntity/ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V net/minecraft/world/level/block/entity/JigsawBlockEntity/ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V +MD: net/minecraft/world/level/block/entity/JigsawBlockEntity/m_142466_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/level/block/entity/JigsawBlockEntity/load (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/level/block/entity/JigsawBlockEntity/m_155609_ ()Lnet/minecraft/world/level/block/entity/JigsawBlockEntity$JointType; net/minecraft/world/level/block/entity/JigsawBlockEntity/lambda$load$0 ()Lnet/minecraft/world/level/block/entity/JigsawBlockEntity$JointType; +MD: net/minecraft/world/level/block/entity/JigsawBlockEntity/m_183515_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/level/block/entity/JigsawBlockEntity/saveAdditional (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/level/block/entity/JigsawBlockEntity/m_222763_ (Lnet/minecraft/resources/ResourceKey;)V net/minecraft/world/level/block/entity/JigsawBlockEntity/setPool (Lnet/minecraft/resources/ResourceKey;)V +MD: net/minecraft/world/level/block/entity/JigsawBlockEntity/m_222765_ ()Lnet/minecraft/resources/ResourceKey; net/minecraft/world/level/block/entity/JigsawBlockEntity/getPool ()Lnet/minecraft/resources/ResourceKey; +MD: net/minecraft/world/level/block/entity/JigsawBlockEntity/m_58483_ ()Lnet/minecraft/network/protocol/Packet; net/minecraft/world/level/block/entity/JigsawBlockEntity/getUpdatePacket ()Lnet/minecraft/network/protocol/Packet; +MD: net/minecraft/world/level/block/entity/JigsawBlockEntity/m_58483_ ()Lnet/minecraft/network/protocol/game/ClientboundBlockEntityDataPacket; net/minecraft/world/level/block/entity/JigsawBlockEntity/getUpdatePacket ()Lnet/minecraft/network/protocol/game/ClientboundBlockEntityDataPacket; +MD: net/minecraft/world/level/block/entity/JigsawBlockEntity/m_59420_ (Lnet/minecraft/server/level/ServerLevel;IZ)V net/minecraft/world/level/block/entity/JigsawBlockEntity/generate (Lnet/minecraft/server/level/ServerLevel;IZ)V +MD: net/minecraft/world/level/block/entity/JigsawBlockEntity/m_59424_ (Lnet/minecraft/world/level/block/entity/JigsawBlockEntity$JointType;)V net/minecraft/world/level/block/entity/JigsawBlockEntity/setJoint (Lnet/minecraft/world/level/block/entity/JigsawBlockEntity$JointType;)V +MD: net/minecraft/world/level/block/entity/JigsawBlockEntity/m_59431_ (Ljava/lang/String;)V net/minecraft/world/level/block/entity/JigsawBlockEntity/setFinalState (Ljava/lang/String;)V +MD: net/minecraft/world/level/block/entity/JigsawBlockEntity/m_59435_ (Lnet/minecraft/resources/ResourceLocation;)V net/minecraft/world/level/block/entity/JigsawBlockEntity/setName (Lnet/minecraft/resources/ResourceLocation;)V +MD: net/minecraft/world/level/block/entity/JigsawBlockEntity/m_59438_ (Lnet/minecraft/resources/ResourceLocation;)V net/minecraft/world/level/block/entity/JigsawBlockEntity/setTarget (Lnet/minecraft/resources/ResourceLocation;)V +MD: net/minecraft/world/level/block/entity/JigsawBlockEntity/m_59442_ ()Lnet/minecraft/resources/ResourceLocation; net/minecraft/world/level/block/entity/JigsawBlockEntity/getName ()Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/world/level/block/entity/JigsawBlockEntity/m_59443_ ()Lnet/minecraft/resources/ResourceLocation; net/minecraft/world/level/block/entity/JigsawBlockEntity/getTarget ()Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/world/level/block/entity/JigsawBlockEntity/m_59445_ ()Ljava/lang/String; net/minecraft/world/level/block/entity/JigsawBlockEntity/getFinalState ()Ljava/lang/String; +MD: net/minecraft/world/level/block/entity/JigsawBlockEntity/m_59446_ ()Lnet/minecraft/world/level/block/entity/JigsawBlockEntity$JointType; net/minecraft/world/level/block/entity/JigsawBlockEntity/getJoint ()Lnet/minecraft/world/level/block/entity/JigsawBlockEntity$JointType; +MD: net/minecraft/world/level/block/entity/JigsawBlockEntity/m_5995_ ()Lnet/minecraft/nbt/CompoundTag; net/minecraft/world/level/block/entity/JigsawBlockEntity/getUpdateTag ()Lnet/minecraft/nbt/CompoundTag; +MD: net/minecraft/world/level/block/entity/JigsawBlockEntity$JointType/ ()V net/minecraft/world/level/block/entity/JigsawBlockEntity$JointType/ ()V +MD: net/minecraft/world/level/block/entity/JigsawBlockEntity$JointType/ (Ljava/lang/String;ILjava/lang/String;)V net/minecraft/world/level/block/entity/JigsawBlockEntity$JointType/ (Ljava/lang/String;ILjava/lang/String;)V +MD: net/minecraft/world/level/block/entity/JigsawBlockEntity$JointType/m_155610_ ()Lnet/minecraft/network/chat/Component; net/minecraft/world/level/block/entity/JigsawBlockEntity$JointType/getTranslatedName ()Lnet/minecraft/network/chat/Component; +MD: net/minecraft/world/level/block/entity/JigsawBlockEntity$JointType/m_155611_ ()[Lnet/minecraft/world/level/block/entity/JigsawBlockEntity$JointType; net/minecraft/world/level/block/entity/JigsawBlockEntity$JointType/$values ()[Lnet/minecraft/world/level/block/entity/JigsawBlockEntity$JointType; +MD: net/minecraft/world/level/block/entity/JigsawBlockEntity$JointType/m_59457_ (Ljava/lang/String;)Ljava/util/Optional; net/minecraft/world/level/block/entity/JigsawBlockEntity$JointType/byName (Ljava/lang/String;)Ljava/util/Optional; +MD: net/minecraft/world/level/block/entity/JigsawBlockEntity$JointType/m_59459_ (Ljava/lang/String;Lnet/minecraft/world/level/block/entity/JigsawBlockEntity$JointType;)Z net/minecraft/world/level/block/entity/JigsawBlockEntity$JointType/lambda$byName$0 (Ljava/lang/String;Lnet/minecraft/world/level/block/entity/JigsawBlockEntity$JointType;)Z +MD: net/minecraft/world/level/block/entity/JigsawBlockEntity$JointType/m_7912_ ()Ljava/lang/String; net/minecraft/world/level/block/entity/JigsawBlockEntity$JointType/getSerializedName ()Ljava/lang/String; +MD: net/minecraft/world/level/block/entity/JigsawBlockEntity$JointType/valueOf (Ljava/lang/String;)Lnet/minecraft/world/level/block/entity/JigsawBlockEntity$JointType; net/minecraft/world/level/block/entity/JigsawBlockEntity$JointType/valueOf (Ljava/lang/String;)Lnet/minecraft/world/level/block/entity/JigsawBlockEntity$JointType; +MD: net/minecraft/world/level/block/entity/JigsawBlockEntity$JointType/values ()[Lnet/minecraft/world/level/block/entity/JigsawBlockEntity$JointType; net/minecraft/world/level/block/entity/JigsawBlockEntity$JointType/values ()[Lnet/minecraft/world/level/block/entity/JigsawBlockEntity$JointType; +MD: net/minecraft/world/level/block/entity/JukeboxBlockEntity/ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V net/minecraft/world/level/block/entity/JukeboxBlockEntity/ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V +MD: net/minecraft/world/level/block/entity/JukeboxBlockEntity/m_142466_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/level/block/entity/JukeboxBlockEntity/load (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/level/block/entity/JukeboxBlockEntity/m_183515_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/level/block/entity/JukeboxBlockEntity/saveAdditional (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/level/block/entity/JukeboxBlockEntity/m_239365_ ()Z net/minecraft/world/level/block/entity/JukeboxBlockEntity/shouldSendJukeboxPlayingEvent ()Z +MD: net/minecraft/world/level/block/entity/JukeboxBlockEntity/m_239937_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/entity/JukeboxBlockEntity;)V net/minecraft/world/level/block/entity/JukeboxBlockEntity/playRecordTick (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/entity/JukeboxBlockEntity;)V +MD: net/minecraft/world/level/block/entity/JukeboxBlockEntity/m_269320_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;)V net/minecraft/world/level/block/entity/JukeboxBlockEntity/spawnMusicParticles (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/world/level/block/entity/JukeboxBlockEntity/m_271687_ ()V net/minecraft/world/level/block/entity/JukeboxBlockEntity/startPlaying ()V +MD: net/minecraft/world/level/block/entity/JukeboxBlockEntity/m_271713_ (Lnet/minecraft/world/item/RecordItem;)Z net/minecraft/world/level/block/entity/JukeboxBlockEntity/shouldRecordStopPlaying (Lnet/minecraft/world/item/RecordItem;)Z +MD: net/minecraft/world/level/block/entity/JukeboxBlockEntity/m_271862_ (Lnet/minecraft/world/Container;ILnet/minecraft/world/item/ItemStack;)Z net/minecraft/world/level/block/entity/JukeboxBlockEntity/canTakeItem (Lnet/minecraft/world/Container;ILnet/minecraft/world/item/ItemStack;)Z +MD: net/minecraft/world/level/block/entity/JukeboxBlockEntity/m_271871_ (Lnet/minecraft/world/entity/Entity;Z)V net/minecraft/world/level/block/entity/JukeboxBlockEntity/setHasRecordBlockState (Lnet/minecraft/world/entity/Entity;Z)V +MD: net/minecraft/world/level/block/entity/JukeboxBlockEntity/m_272025_ ()Z net/minecraft/world/level/block/entity/JukeboxBlockEntity/isRecordPlaying ()Z +MD: net/minecraft/world/level/block/entity/JukeboxBlockEntity/m_272088_ ()V net/minecraft/world/level/block/entity/JukeboxBlockEntity/stopPlaying ()V +MD: net/minecraft/world/level/block/entity/JukeboxBlockEntity/m_272139_ (Lnet/minecraft/world/item/ItemStack;)V net/minecraft/world/level/block/entity/JukeboxBlockEntity/setRecordWithoutPlaying (Lnet/minecraft/world/item/ItemStack;)V +MD: net/minecraft/world/level/block/entity/JukeboxBlockEntity/m_272252_ ()V net/minecraft/world/level/block/entity/JukeboxBlockEntity/popOutRecord ()V +MD: net/minecraft/world/level/block/entity/JukeboxBlockEntity/m_272276_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V net/minecraft/world/level/block/entity/JukeboxBlockEntity/tick (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V +MD: net/minecraft/world/level/block/entity/JukeboxBlockEntity/m_6542_ (Lnet/minecraft/world/entity/player/Player;)Z net/minecraft/world/level/block/entity/JukeboxBlockEntity/stillValid (Lnet/minecraft/world/entity/player/Player;)Z +MD: net/minecraft/world/level/block/entity/JukeboxBlockEntity/m_6836_ (ILnet/minecraft/world/item/ItemStack;)V net/minecraft/world/level/block/entity/JukeboxBlockEntity/setItem (ILnet/minecraft/world/item/ItemStack;)V +MD: net/minecraft/world/level/block/entity/JukeboxBlockEntity/m_6893_ ()I net/minecraft/world/level/block/entity/JukeboxBlockEntity/getMaxStackSize ()I +MD: net/minecraft/world/level/block/entity/JukeboxBlockEntity/m_7013_ (ILnet/minecraft/world/item/ItemStack;)Z net/minecraft/world/level/block/entity/JukeboxBlockEntity/canPlaceItem (ILnet/minecraft/world/item/ItemStack;)Z +MD: net/minecraft/world/level/block/entity/JukeboxBlockEntity/m_7407_ (II)Lnet/minecraft/world/item/ItemStack; net/minecraft/world/level/block/entity/JukeboxBlockEntity/removeItem (II)Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/level/block/entity/JukeboxBlockEntity/m_8020_ (I)Lnet/minecraft/world/item/ItemStack; net/minecraft/world/level/block/entity/JukeboxBlockEntity/getItem (I)Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/level/block/entity/LecternBlockEntity/ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V net/minecraft/world/level/block/entity/LecternBlockEntity/ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V +MD: net/minecraft/world/level/block/entity/LecternBlockEntity/m_142466_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/level/block/entity/LecternBlockEntity/load (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/level/block/entity/LecternBlockEntity/m_183515_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/level/block/entity/LecternBlockEntity/saveAdditional (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/level/block/entity/LecternBlockEntity/m_5446_ ()Lnet/minecraft/network/chat/Component; net/minecraft/world/level/block/entity/LecternBlockEntity/getDisplayName ()Lnet/minecraft/network/chat/Component; +MD: net/minecraft/world/level/block/entity/LecternBlockEntity/m_59532_ (I)V net/minecraft/world/level/block/entity/LecternBlockEntity/setPage (I)V +MD: net/minecraft/world/level/block/entity/LecternBlockEntity/m_59534_ (Lnet/minecraft/world/entity/player/Player;)Lnet/minecraft/commands/CommandSourceStack; net/minecraft/world/level/block/entity/LecternBlockEntity/createCommandSourceStack (Lnet/minecraft/world/entity/player/Player;)Lnet/minecraft/commands/CommandSourceStack; +MD: net/minecraft/world/level/block/entity/LecternBlockEntity/m_59536_ (Lnet/minecraft/world/item/ItemStack;)V net/minecraft/world/level/block/entity/LecternBlockEntity/setBook (Lnet/minecraft/world/item/ItemStack;)V +MD: net/minecraft/world/level/block/entity/LecternBlockEntity/m_59538_ (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/entity/player/Player;)V net/minecraft/world/level/block/entity/LecternBlockEntity/setBook (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/entity/player/Player;)V +MD: net/minecraft/world/level/block/entity/LecternBlockEntity/m_59554_ (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/entity/player/Player;)Lnet/minecraft/world/item/ItemStack; net/minecraft/world/level/block/entity/LecternBlockEntity/resolveBook (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/entity/player/Player;)Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/level/block/entity/LecternBlockEntity/m_59566_ ()Lnet/minecraft/world/item/ItemStack; net/minecraft/world/level/block/entity/LecternBlockEntity/getBook ()Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/level/block/entity/LecternBlockEntity/m_59567_ ()Z net/minecraft/world/level/block/entity/LecternBlockEntity/hasBook ()Z +MD: net/minecraft/world/level/block/entity/LecternBlockEntity/m_59568_ ()I net/minecraft/world/level/block/entity/LecternBlockEntity/getPage ()I +MD: net/minecraft/world/level/block/entity/LecternBlockEntity/m_59569_ ()I net/minecraft/world/level/block/entity/LecternBlockEntity/getRedstoneSignal ()I +MD: net/minecraft/world/level/block/entity/LecternBlockEntity/m_59570_ ()V net/minecraft/world/level/block/entity/LecternBlockEntity/onBookItemRemove ()V +MD: net/minecraft/world/level/block/entity/LecternBlockEntity/m_6211_ ()V net/minecraft/world/level/block/entity/LecternBlockEntity/clearContent ()V +MD: net/minecraft/world/level/block/entity/LecternBlockEntity/m_6326_ ()Z net/minecraft/world/level/block/entity/LecternBlockEntity/onlyOpCanSetNbt ()Z +MD: net/minecraft/world/level/block/entity/LecternBlockEntity/m_7208_ (ILnet/minecraft/world/entity/player/Inventory;Lnet/minecraft/world/entity/player/Player;)Lnet/minecraft/world/inventory/AbstractContainerMenu; net/minecraft/world/level/block/entity/LecternBlockEntity/createMenu (ILnet/minecraft/world/entity/player/Inventory;Lnet/minecraft/world/entity/player/Player;)Lnet/minecraft/world/inventory/AbstractContainerMenu; +MD: net/minecraft/world/level/block/entity/LecternBlockEntity$1/ (Lnet/minecraft/world/level/block/entity/LecternBlockEntity;)V net/minecraft/world/level/block/entity/LecternBlockEntity$1/ (Lnet/minecraft/world/level/block/entity/LecternBlockEntity;)V +MD: net/minecraft/world/level/block/entity/LecternBlockEntity$1/m_6211_ ()V net/minecraft/world/level/block/entity/LecternBlockEntity$1/clearContent ()V +MD: net/minecraft/world/level/block/entity/LecternBlockEntity$1/m_6542_ (Lnet/minecraft/world/entity/player/Player;)Z net/minecraft/world/level/block/entity/LecternBlockEntity$1/stillValid (Lnet/minecraft/world/entity/player/Player;)Z +MD: net/minecraft/world/level/block/entity/LecternBlockEntity$1/m_6596_ ()V net/minecraft/world/level/block/entity/LecternBlockEntity$1/setChanged ()V +MD: net/minecraft/world/level/block/entity/LecternBlockEntity$1/m_6643_ ()I net/minecraft/world/level/block/entity/LecternBlockEntity$1/getContainerSize ()I +MD: net/minecraft/world/level/block/entity/LecternBlockEntity$1/m_6836_ (ILnet/minecraft/world/item/ItemStack;)V net/minecraft/world/level/block/entity/LecternBlockEntity$1/setItem (ILnet/minecraft/world/item/ItemStack;)V +MD: net/minecraft/world/level/block/entity/LecternBlockEntity$1/m_6893_ ()I net/minecraft/world/level/block/entity/LecternBlockEntity$1/getMaxStackSize ()I +MD: net/minecraft/world/level/block/entity/LecternBlockEntity$1/m_7013_ (ILnet/minecraft/world/item/ItemStack;)Z net/minecraft/world/level/block/entity/LecternBlockEntity$1/canPlaceItem (ILnet/minecraft/world/item/ItemStack;)Z +MD: net/minecraft/world/level/block/entity/LecternBlockEntity$1/m_7407_ (II)Lnet/minecraft/world/item/ItemStack; net/minecraft/world/level/block/entity/LecternBlockEntity$1/removeItem (II)Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/level/block/entity/LecternBlockEntity$1/m_7983_ ()Z net/minecraft/world/level/block/entity/LecternBlockEntity$1/isEmpty ()Z +MD: net/minecraft/world/level/block/entity/LecternBlockEntity$1/m_8016_ (I)Lnet/minecraft/world/item/ItemStack; net/minecraft/world/level/block/entity/LecternBlockEntity$1/removeItemNoUpdate (I)Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/level/block/entity/LecternBlockEntity$1/m_8020_ (I)Lnet/minecraft/world/item/ItemStack; net/minecraft/world/level/block/entity/LecternBlockEntity$1/getItem (I)Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/level/block/entity/LecternBlockEntity$2/ (Lnet/minecraft/world/level/block/entity/LecternBlockEntity;)V net/minecraft/world/level/block/entity/LecternBlockEntity$2/ (Lnet/minecraft/world/level/block/entity/LecternBlockEntity;)V +MD: net/minecraft/world/level/block/entity/LecternBlockEntity$2/m_6413_ (I)I net/minecraft/world/level/block/entity/LecternBlockEntity$2/get (I)I +MD: net/minecraft/world/level/block/entity/LecternBlockEntity$2/m_6499_ ()I net/minecraft/world/level/block/entity/LecternBlockEntity$2/getCount ()I +MD: net/minecraft/world/level/block/entity/LecternBlockEntity$2/m_8050_ (II)V net/minecraft/world/level/block/entity/LecternBlockEntity$2/set (II)V +MD: net/minecraft/world/level/block/entity/LidBlockEntity/m_6683_ (F)F net/minecraft/world/level/block/entity/LidBlockEntity/getOpenNess (F)F +MD: net/minecraft/world/level/block/entity/RandomizableContainerBlockEntity/ (Lnet/minecraft/world/level/block/entity/BlockEntityType;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V net/minecraft/world/level/block/entity/RandomizableContainerBlockEntity/ (Lnet/minecraft/world/level/block/entity/BlockEntityType;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V +MD: net/minecraft/world/level/block/entity/RandomizableContainerBlockEntity/m_222766_ (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos;Lnet/minecraft/resources/ResourceLocation;)V net/minecraft/world/level/block/entity/RandomizableContainerBlockEntity/setLootTable (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos;Lnet/minecraft/resources/ResourceLocation;)V +MD: net/minecraft/world/level/block/entity/RandomizableContainerBlockEntity/m_59626_ (Lnet/minecraft/resources/ResourceLocation;J)V net/minecraft/world/level/block/entity/RandomizableContainerBlockEntity/setLootTable (Lnet/minecraft/resources/ResourceLocation;J)V +MD: net/minecraft/world/level/block/entity/RandomizableContainerBlockEntity/m_59631_ (Lnet/minecraft/nbt/CompoundTag;)Z net/minecraft/world/level/block/entity/RandomizableContainerBlockEntity/tryLoadLootTable (Lnet/minecraft/nbt/CompoundTag;)Z +MD: net/minecraft/world/level/block/entity/RandomizableContainerBlockEntity/m_59634_ (Lnet/minecraft/nbt/CompoundTag;)Z net/minecraft/world/level/block/entity/RandomizableContainerBlockEntity/trySaveLootTable (Lnet/minecraft/nbt/CompoundTag;)Z +MD: net/minecraft/world/level/block/entity/RandomizableContainerBlockEntity/m_59640_ (Lnet/minecraft/world/entity/player/Player;)V net/minecraft/world/level/block/entity/RandomizableContainerBlockEntity/unpackLootTable (Lnet/minecraft/world/entity/player/Player;)V +MD: net/minecraft/world/level/block/entity/RandomizableContainerBlockEntity/m_6211_ ()V net/minecraft/world/level/block/entity/RandomizableContainerBlockEntity/clearContent ()V +MD: net/minecraft/world/level/block/entity/RandomizableContainerBlockEntity/m_6520_ (Lnet/minecraft/core/NonNullList;)V net/minecraft/world/level/block/entity/RandomizableContainerBlockEntity/setItems (Lnet/minecraft/core/NonNullList;)V +MD: net/minecraft/world/level/block/entity/RandomizableContainerBlockEntity/m_6542_ (Lnet/minecraft/world/entity/player/Player;)Z net/minecraft/world/level/block/entity/RandomizableContainerBlockEntity/stillValid (Lnet/minecraft/world/entity/player/Player;)Z +MD: net/minecraft/world/level/block/entity/RandomizableContainerBlockEntity/m_6836_ (ILnet/minecraft/world/item/ItemStack;)V net/minecraft/world/level/block/entity/RandomizableContainerBlockEntity/setItem (ILnet/minecraft/world/item/ItemStack;)V +MD: net/minecraft/world/level/block/entity/RandomizableContainerBlockEntity/m_7086_ ()Lnet/minecraft/core/NonNullList; net/minecraft/world/level/block/entity/RandomizableContainerBlockEntity/getItems ()Lnet/minecraft/core/NonNullList; +MD: net/minecraft/world/level/block/entity/RandomizableContainerBlockEntity/m_7208_ (ILnet/minecraft/world/entity/player/Inventory;Lnet/minecraft/world/entity/player/Player;)Lnet/minecraft/world/inventory/AbstractContainerMenu; net/minecraft/world/level/block/entity/RandomizableContainerBlockEntity/createMenu (ILnet/minecraft/world/entity/player/Inventory;Lnet/minecraft/world/entity/player/Player;)Lnet/minecraft/world/inventory/AbstractContainerMenu; +MD: net/minecraft/world/level/block/entity/RandomizableContainerBlockEntity/m_7407_ (II)Lnet/minecraft/world/item/ItemStack; net/minecraft/world/level/block/entity/RandomizableContainerBlockEntity/removeItem (II)Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/level/block/entity/RandomizableContainerBlockEntity/m_7525_ (Lnet/minecraft/world/entity/player/Player;)Z net/minecraft/world/level/block/entity/RandomizableContainerBlockEntity/canOpen (Lnet/minecraft/world/entity/player/Player;)Z +MD: net/minecraft/world/level/block/entity/RandomizableContainerBlockEntity/m_7983_ ()Z net/minecraft/world/level/block/entity/RandomizableContainerBlockEntity/isEmpty ()Z +MD: net/minecraft/world/level/block/entity/RandomizableContainerBlockEntity/m_8016_ (I)Lnet/minecraft/world/item/ItemStack; net/minecraft/world/level/block/entity/RandomizableContainerBlockEntity/removeItemNoUpdate (I)Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/level/block/entity/RandomizableContainerBlockEntity/m_8020_ (I)Lnet/minecraft/world/item/ItemStack; net/minecraft/world/level/block/entity/RandomizableContainerBlockEntity/getItem (I)Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/level/block/entity/SculkCatalystBlockEntity/ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V net/minecraft/world/level/block/entity/SculkCatalystBlockEntity/ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V +MD: net/minecraft/world/level/block/entity/SculkCatalystBlockEntity/m_142466_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/level/block/entity/SculkCatalystBlockEntity/load (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/level/block/entity/SculkCatalystBlockEntity/m_183515_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/level/block/entity/SculkCatalystBlockEntity/saveAdditional (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/level/block/entity/SculkCatalystBlockEntity/m_222779_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/entity/SculkCatalystBlockEntity;)V net/minecraft/world/level/block/entity/SculkCatalystBlockEntity/serverTick (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/entity/SculkCatalystBlockEntity;)V +MD: net/minecraft/world/level/block/entity/SculkCatalystBlockEntity/m_280052_ ()Lnet/minecraft/world/level/gameevent/GameEventListener; net/minecraft/world/level/block/entity/SculkCatalystBlockEntity/getListener ()Lnet/minecraft/world/level/gameevent/GameEventListener; +MD: net/minecraft/world/level/block/entity/SculkCatalystBlockEntity/m_280052_ ()Lnet/minecraft/world/level/block/entity/SculkCatalystBlockEntity$CatalystListener; net/minecraft/world/level/block/entity/SculkCatalystBlockEntity/getListener ()Lnet/minecraft/world/level/block/entity/SculkCatalystBlockEntity$CatalystListener; +MD: net/minecraft/world/level/block/entity/SculkCatalystBlockEntity$CatalystListener/ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/gameevent/PositionSource;)V net/minecraft/world/level/block/entity/SculkCatalystBlockEntity$CatalystListener/ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/gameevent/PositionSource;)V +MD: net/minecraft/world/level/block/entity/SculkCatalystBlockEntity$CatalystListener/m_142078_ ()I net/minecraft/world/level/block/entity/SculkCatalystBlockEntity$CatalystListener/getListenerRadius ()I +MD: net/minecraft/world/level/block/entity/SculkCatalystBlockEntity$CatalystListener/m_142460_ ()Lnet/minecraft/world/level/gameevent/PositionSource; net/minecraft/world/level/block/entity/SculkCatalystBlockEntity$CatalystListener/getListenerSource ()Lnet/minecraft/world/level/gameevent/PositionSource; +MD: net/minecraft/world/level/block/entity/SculkCatalystBlockEntity$CatalystListener/m_214068_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/level/gameevent/GameEvent;Lnet/minecraft/world/level/gameevent/GameEvent$Context;Lnet/minecraft/world/phys/Vec3;)Z net/minecraft/world/level/block/entity/SculkCatalystBlockEntity$CatalystListener/handleGameEvent (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/level/gameevent/GameEvent;Lnet/minecraft/world/level/gameevent/GameEvent$Context;Lnet/minecraft/world/phys/Vec3;)Z +MD: net/minecraft/world/level/block/entity/SculkCatalystBlockEntity$CatalystListener/m_247514_ ()Lnet/minecraft/world/level/gameevent/GameEventListener$DeliveryMode; net/minecraft/world/level/block/entity/SculkCatalystBlockEntity$CatalystListener/getDeliveryMode ()Lnet/minecraft/world/level/gameevent/GameEventListener$DeliveryMode; +MD: net/minecraft/world/level/block/entity/SculkCatalystBlockEntity$CatalystListener/m_280309_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/util/RandomSource;)V net/minecraft/world/level/block/entity/SculkCatalystBlockEntity$CatalystListener/bloom (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/util/RandomSource;)V +MD: net/minecraft/world/level/block/entity/SculkCatalystBlockEntity$CatalystListener/m_280407_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/entity/LivingEntity;)V net/minecraft/world/level/block/entity/SculkCatalystBlockEntity$CatalystListener/tryAwardItSpreadsAdvancement (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/entity/LivingEntity;)V +MD: net/minecraft/world/level/block/entity/SculkCatalystBlockEntity$CatalystListener/m_280490_ ()Lnet/minecraft/world/level/block/SculkSpreader; net/minecraft/world/level/block/entity/SculkCatalystBlockEntity$CatalystListener/getSculkSpreader ()Lnet/minecraft/world/level/block/SculkSpreader; +MD: net/minecraft/world/level/block/entity/SculkCatalystBlockEntity$CatalystListener/m_289180_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/phys/Vec3;)V net/minecraft/world/level/block/entity/SculkCatalystBlockEntity$CatalystListener/lambda$handleGameEvent$0 (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/phys/Vec3;)V +MD: net/minecraft/world/level/block/entity/SculkSensorBlockEntity/ ()V net/minecraft/world/level/block/entity/SculkSensorBlockEntity/ ()V +MD: net/minecraft/world/level/block/entity/SculkSensorBlockEntity/ (Lnet/minecraft/world/level/block/entity/BlockEntityType;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V net/minecraft/world/level/block/entity/SculkSensorBlockEntity/ (Lnet/minecraft/world/level/block/entity/BlockEntityType;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V +MD: net/minecraft/world/level/block/entity/SculkSensorBlockEntity/ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V net/minecraft/world/level/block/entity/SculkSensorBlockEntity/ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V +MD: net/minecraft/world/level/block/entity/SculkSensorBlockEntity/m_142466_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/level/block/entity/SculkSensorBlockEntity/load (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/level/block/entity/SculkSensorBlockEntity/m_155656_ ()I net/minecraft/world/level/block/entity/SculkSensorBlockEntity/getLastVibrationFrequency ()I +MD: net/minecraft/world/level/block/entity/SculkSensorBlockEntity/m_183515_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/level/block/entity/SculkSensorBlockEntity/saveAdditional (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/level/block/entity/SculkSensorBlockEntity/m_222800_ (I)V net/minecraft/world/level/block/entity/SculkSensorBlockEntity/setLastVibrationFrequency (I)V +MD: net/minecraft/world/level/block/entity/SculkSensorBlockEntity/m_222818_ (Lnet/minecraft/nbt/CompoundTag;Lnet/minecraft/nbt/Tag;)V net/minecraft/world/level/block/entity/SculkSensorBlockEntity/lambda$saveAdditional$1 (Lnet/minecraft/nbt/CompoundTag;Lnet/minecraft/nbt/Tag;)V +MD: net/minecraft/world/level/block/entity/SculkSensorBlockEntity/m_279970_ (Lnet/minecraft/world/level/gameevent/vibrations/VibrationSystem$Data;)V net/minecraft/world/level/block/entity/SculkSensorBlockEntity/lambda$load$0 (Lnet/minecraft/world/level/gameevent/vibrations/VibrationSystem$Data;)V +MD: net/minecraft/world/level/block/entity/SculkSensorBlockEntity/m_280002_ ()Lnet/minecraft/world/level/gameevent/vibrations/VibrationSystem$Data; net/minecraft/world/level/block/entity/SculkSensorBlockEntity/getVibrationData ()Lnet/minecraft/world/level/gameevent/vibrations/VibrationSystem$Data; +MD: net/minecraft/world/level/block/entity/SculkSensorBlockEntity/m_280052_ ()Lnet/minecraft/world/level/gameevent/GameEventListener; net/minecraft/world/level/block/entity/SculkSensorBlockEntity/getListener ()Lnet/minecraft/world/level/gameevent/GameEventListener; +MD: net/minecraft/world/level/block/entity/SculkSensorBlockEntity/m_280052_ ()Lnet/minecraft/world/level/gameevent/vibrations/VibrationSystem$Listener; net/minecraft/world/level/block/entity/SculkSensorBlockEntity/getListener ()Lnet/minecraft/world/level/gameevent/vibrations/VibrationSystem$Listener; +MD: net/minecraft/world/level/block/entity/SculkSensorBlockEntity/m_280175_ ()Lnet/minecraft/world/level/gameevent/vibrations/VibrationSystem$User; net/minecraft/world/level/block/entity/SculkSensorBlockEntity/createVibrationUser ()Lnet/minecraft/world/level/gameevent/vibrations/VibrationSystem$User; +MD: net/minecraft/world/level/block/entity/SculkSensorBlockEntity/m_280445_ ()Lnet/minecraft/world/level/gameevent/vibrations/VibrationSystem$User; net/minecraft/world/level/block/entity/SculkSensorBlockEntity/getVibrationUser ()Lnet/minecraft/world/level/gameevent/vibrations/VibrationSystem$User; +MD: net/minecraft/world/level/block/entity/SculkSensorBlockEntity$VibrationUser/ (Lnet/minecraft/world/level/block/entity/SculkSensorBlockEntity;Lnet/minecraft/core/BlockPos;)V net/minecraft/world/level/block/entity/SculkSensorBlockEntity$VibrationUser/ (Lnet/minecraft/world/level/block/entity/SculkSensorBlockEntity;Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/world/level/block/entity/SculkSensorBlockEntity$VibrationUser/m_280010_ ()Lnet/minecraft/world/level/gameevent/PositionSource; net/minecraft/world/level/block/entity/SculkSensorBlockEntity$VibrationUser/getPositionSource ()Lnet/minecraft/world/level/gameevent/PositionSource; +MD: net/minecraft/world/level/block/entity/SculkSensorBlockEntity$VibrationUser/m_280022_ ()V net/minecraft/world/level/block/entity/SculkSensorBlockEntity$VibrationUser/onDataChanged ()V +MD: net/minecraft/world/level/block/entity/SculkSensorBlockEntity$VibrationUser/m_280076_ ()Z net/minecraft/world/level/block/entity/SculkSensorBlockEntity$VibrationUser/canTriggerAvoidVibration ()Z +MD: net/minecraft/world/level/block/entity/SculkSensorBlockEntity$VibrationUser/m_280080_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/gameevent/GameEvent;Lnet/minecraft/world/level/gameevent/GameEvent$Context;)Z net/minecraft/world/level/block/entity/SculkSensorBlockEntity$VibrationUser/canReceiveVibration (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/gameevent/GameEvent;Lnet/minecraft/world/level/gameevent/GameEvent$Context;)Z +MD: net/minecraft/world/level/block/entity/SculkSensorBlockEntity$VibrationUser/m_280215_ ()Z net/minecraft/world/level/block/entity/SculkSensorBlockEntity$VibrationUser/requiresAdjacentChunksToBeTicking ()Z +MD: net/minecraft/world/level/block/entity/SculkSensorBlockEntity$VibrationUser/m_280271_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/gameevent/GameEvent;Lnet/minecraft/world/entity/Entity;Lnet/minecraft/world/entity/Entity;F)V net/minecraft/world/level/block/entity/SculkSensorBlockEntity$VibrationUser/onReceiveVibration (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/gameevent/GameEvent;Lnet/minecraft/world/entity/Entity;Lnet/minecraft/world/entity/Entity;F)V +MD: net/minecraft/world/level/block/entity/SculkSensorBlockEntity$VibrationUser/m_280351_ ()I net/minecraft/world/level/block/entity/SculkSensorBlockEntity$VibrationUser/getListenerRadius ()I +MD: net/minecraft/world/level/block/entity/SculkShriekerBlockEntity/ ()V net/minecraft/world/level/block/entity/SculkShriekerBlockEntity/ ()V +MD: net/minecraft/world/level/block/entity/SculkShriekerBlockEntity/ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V net/minecraft/world/level/block/entity/SculkShriekerBlockEntity/ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V +MD: net/minecraft/world/level/block/entity/SculkShriekerBlockEntity/m_142466_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/level/block/entity/SculkShriekerBlockEntity/load (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/level/block/entity/SculkShriekerBlockEntity/m_183515_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/level/block/entity/SculkShriekerBlockEntity/saveAdditional (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/level/block/entity/SculkShriekerBlockEntity/m_222837_ (I)V net/minecraft/world/level/block/entity/SculkShriekerBlockEntity/lambda$tryToWarn$3 (I)V +MD: net/minecraft/world/level/block/entity/SculkShriekerBlockEntity/m_222839_ (Lnet/minecraft/server/level/ServerLevel;)V net/minecraft/world/level/block/entity/SculkShriekerBlockEntity/tryRespond (Lnet/minecraft/server/level/ServerLevel;)V +MD: net/minecraft/world/level/block/entity/SculkShriekerBlockEntity/m_222841_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/server/level/ServerPlayer;)V net/minecraft/world/level/block/entity/SculkShriekerBlockEntity/tryShriek (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/server/level/ServerPlayer;)V +MD: net/minecraft/world/level/block/entity/SculkShriekerBlockEntity/m_222844_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/Entity;)V net/minecraft/world/level/block/entity/SculkShriekerBlockEntity/shriek (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/Entity;)V +MD: net/minecraft/world/level/block/entity/SculkShriekerBlockEntity/m_222861_ (Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/server/level/ServerPlayer; net/minecraft/world/level/block/entity/SculkShriekerBlockEntity/tryGetPlayer (Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/server/level/ServerPlayer; +MD: net/minecraft/world/level/block/entity/SculkShriekerBlockEntity/m_222865_ (Lit/unimi/dsi/fastutil/ints/Int2ObjectOpenHashMap;)V net/minecraft/world/level/block/entity/SculkShriekerBlockEntity/lambda$static$0 (Lit/unimi/dsi/fastutil/ints/Int2ObjectOpenHashMap;)V +MD: net/minecraft/world/level/block/entity/SculkShriekerBlockEntity/m_222869_ (Lnet/minecraft/nbt/CompoundTag;Lnet/minecraft/nbt/Tag;)V net/minecraft/world/level/block/entity/SculkShriekerBlockEntity/lambda$saveAdditional$2 (Lnet/minecraft/nbt/CompoundTag;Lnet/minecraft/nbt/Tag;)V +MD: net/minecraft/world/level/block/entity/SculkShriekerBlockEntity/m_222872_ (Lnet/minecraft/server/level/ServerLevel;)Z net/minecraft/world/level/block/entity/SculkShriekerBlockEntity/canRespond (Lnet/minecraft/server/level/ServerLevel;)Z +MD: net/minecraft/world/level/block/entity/SculkShriekerBlockEntity/m_222874_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/server/level/ServerPlayer;)Z net/minecraft/world/level/block/entity/SculkShriekerBlockEntity/tryToWarn (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/server/level/ServerPlayer;)Z +MD: net/minecraft/world/level/block/entity/SculkShriekerBlockEntity/m_222880_ (Lnet/minecraft/server/level/ServerLevel;)Z net/minecraft/world/level/block/entity/SculkShriekerBlockEntity/trySummonWarden (Lnet/minecraft/server/level/ServerLevel;)Z +MD: net/minecraft/world/level/block/entity/SculkShriekerBlockEntity/m_279971_ (Lnet/minecraft/world/level/gameevent/vibrations/VibrationSystem$Data;)V net/minecraft/world/level/block/entity/SculkShriekerBlockEntity/lambda$load$1 (Lnet/minecraft/world/level/gameevent/vibrations/VibrationSystem$Data;)V +MD: net/minecraft/world/level/block/entity/SculkShriekerBlockEntity/m_280002_ ()Lnet/minecraft/world/level/gameevent/vibrations/VibrationSystem$Data; net/minecraft/world/level/block/entity/SculkShriekerBlockEntity/getVibrationData ()Lnet/minecraft/world/level/gameevent/vibrations/VibrationSystem$Data; +MD: net/minecraft/world/level/block/entity/SculkShriekerBlockEntity/m_280052_ ()Lnet/minecraft/world/level/gameevent/GameEventListener; net/minecraft/world/level/block/entity/SculkShriekerBlockEntity/getListener ()Lnet/minecraft/world/level/gameevent/GameEventListener; +MD: net/minecraft/world/level/block/entity/SculkShriekerBlockEntity/m_280052_ ()Lnet/minecraft/world/level/gameevent/vibrations/VibrationSystem$Listener; net/minecraft/world/level/block/entity/SculkShriekerBlockEntity/getListener ()Lnet/minecraft/world/level/gameevent/vibrations/VibrationSystem$Listener; +MD: net/minecraft/world/level/block/entity/SculkShriekerBlockEntity/m_280188_ (Lnet/minecraft/world/level/Level;)V net/minecraft/world/level/block/entity/SculkShriekerBlockEntity/playWardenReplySound (Lnet/minecraft/world/level/Level;)V +MD: net/minecraft/world/level/block/entity/SculkShriekerBlockEntity/m_280445_ ()Lnet/minecraft/world/level/gameevent/vibrations/VibrationSystem$User; net/minecraft/world/level/block/entity/SculkShriekerBlockEntity/getVibrationUser ()Lnet/minecraft/world/level/gameevent/vibrations/VibrationSystem$User; +MD: net/minecraft/world/level/block/entity/SculkShriekerBlockEntity$VibrationUser/ (Lnet/minecraft/world/level/block/entity/SculkShriekerBlockEntity;)V net/minecraft/world/level/block/entity/SculkShriekerBlockEntity$VibrationUser/ (Lnet/minecraft/world/level/block/entity/SculkShriekerBlockEntity;)V +MD: net/minecraft/world/level/block/entity/SculkShriekerBlockEntity$VibrationUser/m_280010_ ()Lnet/minecraft/world/level/gameevent/PositionSource; net/minecraft/world/level/block/entity/SculkShriekerBlockEntity$VibrationUser/getPositionSource ()Lnet/minecraft/world/level/gameevent/PositionSource; +MD: net/minecraft/world/level/block/entity/SculkShriekerBlockEntity$VibrationUser/m_280022_ ()V net/minecraft/world/level/block/entity/SculkShriekerBlockEntity$VibrationUser/onDataChanged ()V +MD: net/minecraft/world/level/block/entity/SculkShriekerBlockEntity$VibrationUser/m_280028_ ()Lnet/minecraft/tags/TagKey; net/minecraft/world/level/block/entity/SculkShriekerBlockEntity$VibrationUser/getListenableEvents ()Lnet/minecraft/tags/TagKey; +MD: net/minecraft/world/level/block/entity/SculkShriekerBlockEntity$VibrationUser/m_280080_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/gameevent/GameEvent;Lnet/minecraft/world/level/gameevent/GameEvent$Context;)Z net/minecraft/world/level/block/entity/SculkShriekerBlockEntity$VibrationUser/canReceiveVibration (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/gameevent/GameEvent;Lnet/minecraft/world/level/gameevent/GameEvent$Context;)Z +MD: net/minecraft/world/level/block/entity/SculkShriekerBlockEntity$VibrationUser/m_280215_ ()Z net/minecraft/world/level/block/entity/SculkShriekerBlockEntity$VibrationUser/requiresAdjacentChunksToBeTicking ()Z +MD: net/minecraft/world/level/block/entity/SculkShriekerBlockEntity$VibrationUser/m_280271_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/gameevent/GameEvent;Lnet/minecraft/world/entity/Entity;Lnet/minecraft/world/entity/Entity;F)V net/minecraft/world/level/block/entity/SculkShriekerBlockEntity$VibrationUser/onReceiveVibration (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/gameevent/GameEvent;Lnet/minecraft/world/entity/Entity;Lnet/minecraft/world/entity/Entity;F)V +MD: net/minecraft/world/level/block/entity/SculkShriekerBlockEntity$VibrationUser/m_280351_ ()I net/minecraft/world/level/block/entity/SculkShriekerBlockEntity$VibrationUser/getListenerRadius ()I +MD: net/minecraft/world/level/block/entity/ShulkerBoxBlockEntity/ ()V net/minecraft/world/level/block/entity/ShulkerBoxBlockEntity/ ()V +MD: net/minecraft/world/level/block/entity/ShulkerBoxBlockEntity/ (Lnet/minecraft/world/item/DyeColor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V net/minecraft/world/level/block/entity/ShulkerBoxBlockEntity/ (Lnet/minecraft/world/item/DyeColor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V +MD: net/minecraft/world/level/block/entity/ShulkerBoxBlockEntity/ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V net/minecraft/world/level/block/entity/ShulkerBoxBlockEntity/ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V +MD: net/minecraft/world/level/block/entity/ShulkerBoxBlockEntity/m_142466_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/level/block/entity/ShulkerBoxBlockEntity/load (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/level/block/entity/ShulkerBoxBlockEntity/m_155672_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/entity/ShulkerBoxBlockEntity;)V net/minecraft/world/level/block/entity/ShulkerBoxBlockEntity/tick (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/entity/ShulkerBoxBlockEntity;)V +MD: net/minecraft/world/level/block/entity/ShulkerBoxBlockEntity/m_155679_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V net/minecraft/world/level/block/entity/ShulkerBoxBlockEntity/updateAnimation (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V +MD: net/minecraft/world/level/block/entity/ShulkerBoxBlockEntity/m_155683_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V net/minecraft/world/level/block/entity/ShulkerBoxBlockEntity/moveCollidedEntities (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V +MD: net/minecraft/world/level/block/entity/ShulkerBoxBlockEntity/m_155687_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V net/minecraft/world/level/block/entity/ShulkerBoxBlockEntity/doNeighborUpdates (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V +MD: net/minecraft/world/level/block/entity/ShulkerBoxBlockEntity/m_183515_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/level/block/entity/ShulkerBoxBlockEntity/saveAdditional (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/level/block/entity/ShulkerBoxBlockEntity/m_5785_ (Lnet/minecraft/world/entity/player/Player;)V net/minecraft/world/level/block/entity/ShulkerBoxBlockEntity/stopOpen (Lnet/minecraft/world/entity/player/Player;)V +MD: net/minecraft/world/level/block/entity/ShulkerBoxBlockEntity/m_5856_ (Lnet/minecraft/world/entity/player/Player;)V net/minecraft/world/level/block/entity/ShulkerBoxBlockEntity/startOpen (Lnet/minecraft/world/entity/player/Player;)V +MD: net/minecraft/world/level/block/entity/ShulkerBoxBlockEntity/m_59657_ (F)F net/minecraft/world/level/block/entity/ShulkerBoxBlockEntity/getProgress (F)F +MD: net/minecraft/world/level/block/entity/ShulkerBoxBlockEntity/m_59666_ (Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/phys/AABB; net/minecraft/world/level/block/entity/ShulkerBoxBlockEntity/getBoundingBox (Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/phys/AABB; +MD: net/minecraft/world/level/block/entity/ShulkerBoxBlockEntity/m_59693_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/level/block/entity/ShulkerBoxBlockEntity/loadFromTag (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/level/block/entity/ShulkerBoxBlockEntity/m_59700_ ()Lnet/minecraft/world/level/block/entity/ShulkerBoxBlockEntity$AnimationStatus; net/minecraft/world/level/block/entity/ShulkerBoxBlockEntity/getAnimationStatus ()Lnet/minecraft/world/level/block/entity/ShulkerBoxBlockEntity$AnimationStatus; +MD: net/minecraft/world/level/block/entity/ShulkerBoxBlockEntity/m_59701_ ()Lnet/minecraft/world/item/DyeColor; net/minecraft/world/level/block/entity/ShulkerBoxBlockEntity/getColor ()Lnet/minecraft/world/item/DyeColor; +MD: net/minecraft/world/level/block/entity/ShulkerBoxBlockEntity/m_59702_ ()Z net/minecraft/world/level/block/entity/ShulkerBoxBlockEntity/isClosed ()Z +MD: net/minecraft/world/level/block/entity/ShulkerBoxBlockEntity/m_6520_ (Lnet/minecraft/core/NonNullList;)V net/minecraft/world/level/block/entity/ShulkerBoxBlockEntity/setItems (Lnet/minecraft/core/NonNullList;)V +MD: net/minecraft/world/level/block/entity/ShulkerBoxBlockEntity/m_6555_ (ILnet/minecraft/world/entity/player/Inventory;)Lnet/minecraft/world/inventory/AbstractContainerMenu; net/minecraft/world/level/block/entity/ShulkerBoxBlockEntity/createMenu (ILnet/minecraft/world/entity/player/Inventory;)Lnet/minecraft/world/inventory/AbstractContainerMenu; +MD: net/minecraft/world/level/block/entity/ShulkerBoxBlockEntity/m_6643_ ()I net/minecraft/world/level/block/entity/ShulkerBoxBlockEntity/getContainerSize ()I +MD: net/minecraft/world/level/block/entity/ShulkerBoxBlockEntity/m_6820_ ()Lnet/minecraft/network/chat/Component; net/minecraft/world/level/block/entity/ShulkerBoxBlockEntity/getDefaultName ()Lnet/minecraft/network/chat/Component; +MD: net/minecraft/world/level/block/entity/ShulkerBoxBlockEntity/m_7071_ (Lnet/minecraft/core/Direction;)[I net/minecraft/world/level/block/entity/ShulkerBoxBlockEntity/getSlotsForFace (Lnet/minecraft/core/Direction;)[I +MD: net/minecraft/world/level/block/entity/ShulkerBoxBlockEntity/m_7086_ ()Lnet/minecraft/core/NonNullList; net/minecraft/world/level/block/entity/ShulkerBoxBlockEntity/getItems ()Lnet/minecraft/core/NonNullList; +MD: net/minecraft/world/level/block/entity/ShulkerBoxBlockEntity/m_7155_ (ILnet/minecraft/world/item/ItemStack;Lnet/minecraft/core/Direction;)Z net/minecraft/world/level/block/entity/ShulkerBoxBlockEntity/canPlaceItemThroughFace (ILnet/minecraft/world/item/ItemStack;Lnet/minecraft/core/Direction;)Z +MD: net/minecraft/world/level/block/entity/ShulkerBoxBlockEntity/m_7157_ (ILnet/minecraft/world/item/ItemStack;Lnet/minecraft/core/Direction;)Z net/minecraft/world/level/block/entity/ShulkerBoxBlockEntity/canTakeItemThroughFace (ILnet/minecraft/world/item/ItemStack;Lnet/minecraft/core/Direction;)Z +MD: net/minecraft/world/level/block/entity/ShulkerBoxBlockEntity/m_7531_ (II)Z net/minecraft/world/level/block/entity/ShulkerBoxBlockEntity/triggerEvent (II)Z +MD: net/minecraft/world/level/block/entity/ShulkerBoxBlockEntity$1/ ()V net/minecraft/world/level/block/entity/ShulkerBoxBlockEntity$1/ ()V +MD: net/minecraft/world/level/block/entity/ShulkerBoxBlockEntity$AnimationStatus/ ()V net/minecraft/world/level/block/entity/ShulkerBoxBlockEntity$AnimationStatus/ ()V +MD: net/minecraft/world/level/block/entity/ShulkerBoxBlockEntity$AnimationStatus/ (Ljava/lang/String;I)V net/minecraft/world/level/block/entity/ShulkerBoxBlockEntity$AnimationStatus/ (Ljava/lang/String;I)V +MD: net/minecraft/world/level/block/entity/ShulkerBoxBlockEntity$AnimationStatus/m_155691_ ()[Lnet/minecraft/world/level/block/entity/ShulkerBoxBlockEntity$AnimationStatus; net/minecraft/world/level/block/entity/ShulkerBoxBlockEntity$AnimationStatus/$values ()[Lnet/minecraft/world/level/block/entity/ShulkerBoxBlockEntity$AnimationStatus; +MD: net/minecraft/world/level/block/entity/ShulkerBoxBlockEntity$AnimationStatus/valueOf (Ljava/lang/String;)Lnet/minecraft/world/level/block/entity/ShulkerBoxBlockEntity$AnimationStatus; net/minecraft/world/level/block/entity/ShulkerBoxBlockEntity$AnimationStatus/valueOf (Ljava/lang/String;)Lnet/minecraft/world/level/block/entity/ShulkerBoxBlockEntity$AnimationStatus; +MD: net/minecraft/world/level/block/entity/ShulkerBoxBlockEntity$AnimationStatus/values ()[Lnet/minecraft/world/level/block/entity/ShulkerBoxBlockEntity$AnimationStatus; net/minecraft/world/level/block/entity/ShulkerBoxBlockEntity$AnimationStatus/values ()[Lnet/minecraft/world/level/block/entity/ShulkerBoxBlockEntity$AnimationStatus; +MD: net/minecraft/world/level/block/entity/SignBlockEntity/ ()V net/minecraft/world/level/block/entity/SignBlockEntity/ ()V +MD: net/minecraft/world/level/block/entity/SignBlockEntity/ (Lnet/minecraft/world/level/block/entity/BlockEntityType;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V net/minecraft/world/level/block/entity/SignBlockEntity/ (Lnet/minecraft/world/level/block/entity/BlockEntityType;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V +MD: net/minecraft/world/level/block/entity/SignBlockEntity/ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V net/minecraft/world/level/block/entity/SignBlockEntity/ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V +MD: net/minecraft/world/level/block/entity/SignBlockEntity/m_142466_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/level/block/entity/SignBlockEntity/load (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/level/block/entity/SignBlockEntity/m_155713_ (Ljava/util/UUID;)V net/minecraft/world/level/block/entity/SignBlockEntity/setAllowedPlayerEditor (Ljava/util/UUID;)V +MD: net/minecraft/world/level/block/entity/SignBlockEntity/m_155726_ ()Ljava/util/UUID; net/minecraft/world/level/block/entity/SignBlockEntity/getPlayerWhoMayEdit ()Ljava/util/UUID; +MD: net/minecraft/world/level/block/entity/SignBlockEntity/m_155728_ ()V net/minecraft/world/level/block/entity/SignBlockEntity/markUpdated ()V +MD: net/minecraft/world/level/block/entity/SignBlockEntity/m_183515_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/level/block/entity/SignBlockEntity/saveAdditional (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/level/block/entity/SignBlockEntity/m_245065_ ()I net/minecraft/world/level/block/entity/SignBlockEntity/getTextLineHeight ()I +MD: net/minecraft/world/level/block/entity/SignBlockEntity/m_245123_ ()I net/minecraft/world/level/block/entity/SignBlockEntity/getMaxTextLineWidth ()I +MD: net/minecraft/world/level/block/entity/SignBlockEntity/m_276813_ (Ljava/util/UUID;)Z net/minecraft/world/level/block/entity/SignBlockEntity/playerIsTooFarAwayToEdit (Ljava/util/UUID;)Z +MD: net/minecraft/world/level/block/entity/SignBlockEntity/m_276836_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/entity/SignBlockEntity;)V net/minecraft/world/level/block/entity/SignBlockEntity/tick (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/entity/SignBlockEntity;)V +MD: net/minecraft/world/level/block/entity/SignBlockEntity/m_276838_ (Lnet/minecraft/nbt/CompoundTag;Lnet/minecraft/nbt/Tag;)V net/minecraft/world/level/block/entity/SignBlockEntity/lambda$saveAdditional$0 (Lnet/minecraft/nbt/CompoundTag;Lnet/minecraft/nbt/Tag;)V +MD: net/minecraft/world/level/block/entity/SignBlockEntity/m_276884_ (Lnet/minecraft/world/entity/player/Player;Ljava/util/List;Lnet/minecraft/world/level/block/entity/SignText;)Lnet/minecraft/world/level/block/entity/SignText; net/minecraft/world/level/block/entity/SignBlockEntity/lambda$updateSignText$4 (Lnet/minecraft/world/entity/player/Player;Ljava/util/List;Lnet/minecraft/world/level/block/entity/SignText;)Lnet/minecraft/world/level/block/entity/SignText; +MD: net/minecraft/world/level/block/entity/SignBlockEntity/m_276929_ (Lnet/minecraft/world/entity/player/Player;Ljava/util/List;Lnet/minecraft/world/level/block/entity/SignText;)Lnet/minecraft/world/level/block/entity/SignText; net/minecraft/world/level/block/entity/SignBlockEntity/setMessages (Lnet/minecraft/world/entity/player/Player;Ljava/util/List;Lnet/minecraft/world/level/block/entity/SignText;)Lnet/minecraft/world/level/block/entity/SignText; +MD: net/minecraft/world/level/block/entity/SignBlockEntity/m_276956_ (Lnet/minecraft/world/level/block/entity/SignText;Z)Z net/minecraft/world/level/block/entity/SignBlockEntity/setText (Lnet/minecraft/world/level/block/entity/SignText;Z)Z +MD: net/minecraft/world/level/block/entity/SignBlockEntity/m_276964_ (Lnet/minecraft/world/level/block/entity/SignText;)Z net/minecraft/world/level/block/entity/SignBlockEntity/setFrontText (Lnet/minecraft/world/level/block/entity/SignText;)Z +MD: net/minecraft/world/level/block/entity/SignBlockEntity/m_276965_ (Lnet/minecraft/world/level/block/entity/SignBlockEntity;Lnet/minecraft/world/level/Level;Ljava/util/UUID;)V net/minecraft/world/level/block/entity/SignBlockEntity/clearInvalidPlayerWhoMayEdit (Lnet/minecraft/world/level/block/entity/SignBlockEntity;Lnet/minecraft/world/level/Level;Ljava/util/UUID;)V +MD: net/minecraft/world/level/block/entity/SignBlockEntity/m_277006_ ()Lnet/minecraft/world/level/block/entity/SignText; net/minecraft/world/level/block/entity/SignBlockEntity/createDefaultSignText ()Lnet/minecraft/world/level/block/entity/SignText; +MD: net/minecraft/world/level/block/entity/SignBlockEntity/m_277031_ (Z)Z net/minecraft/world/level/block/entity/SignBlockEntity/setWaxed (Z)Z +MD: net/minecraft/world/level/block/entity/SignBlockEntity/m_277073_ (Ljava/util/function/UnaryOperator;Z)Z net/minecraft/world/level/block/entity/SignBlockEntity/updateText (Ljava/util/function/UnaryOperator;Z)Z +MD: net/minecraft/world/level/block/entity/SignBlockEntity/m_277084_ (Lnet/minecraft/nbt/CompoundTag;Lnet/minecraft/nbt/Tag;)V net/minecraft/world/level/block/entity/SignBlockEntity/lambda$saveAdditional$1 (Lnet/minecraft/nbt/CompoundTag;Lnet/minecraft/nbt/Tag;)V +MD: net/minecraft/world/level/block/entity/SignBlockEntity/m_277118_ ()Z net/minecraft/world/level/block/entity/SignBlockEntity/isWaxed ()Z +MD: net/minecraft/world/level/block/entity/SignBlockEntity/m_277134_ (Lnet/minecraft/world/entity/player/Player;ZLjava/util/List;)V net/minecraft/world/level/block/entity/SignBlockEntity/updateSignText (Lnet/minecraft/world/entity/player/Player;ZLjava/util/List;)V +MD: net/minecraft/world/level/block/entity/SignBlockEntity/m_277142_ ()Lnet/minecraft/world/level/block/entity/SignText; net/minecraft/world/level/block/entity/SignBlockEntity/getFrontText ()Lnet/minecraft/world/level/block/entity/SignText; +MD: net/minecraft/world/level/block/entity/SignBlockEntity/m_277157_ (Z)Lnet/minecraft/world/level/block/entity/SignText; net/minecraft/world/level/block/entity/SignBlockEntity/getText (Z)Lnet/minecraft/world/level/block/entity/SignText; +MD: net/minecraft/world/level/block/entity/SignBlockEntity/m_277159_ ()Lnet/minecraft/world/level/block/entity/SignText; net/minecraft/world/level/block/entity/SignBlockEntity/getBackText ()Lnet/minecraft/world/level/block/entity/SignText; +MD: net/minecraft/world/level/block/entity/SignBlockEntity/m_277170_ (Lnet/minecraft/world/level/block/entity/SignText;)Z net/minecraft/world/level/block/entity/SignBlockEntity/setBackText (Lnet/minecraft/world/level/block/entity/SignText;)Z +MD: net/minecraft/world/level/block/entity/SignBlockEntity/m_277176_ (Lnet/minecraft/world/entity/player/Player;)Lnet/minecraft/world/level/block/entity/SignText; net/minecraft/world/level/block/entity/SignBlockEntity/getTextFacingPlayer (Lnet/minecraft/world/entity/player/Player;)Lnet/minecraft/world/level/block/entity/SignText; +MD: net/minecraft/world/level/block/entity/SignBlockEntity/m_277202_ (Lnet/minecraft/world/entity/player/Player;)Z net/minecraft/world/level/block/entity/SignBlockEntity/isFacingFrontText (Lnet/minecraft/world/entity/player/Player;)Z +MD: net/minecraft/world/level/block/entity/SignBlockEntity/m_278140_ (Lnet/minecraft/world/level/block/entity/SignText;)V net/minecraft/world/level/block/entity/SignBlockEntity/lambda$load$2 (Lnet/minecraft/world/level/block/entity/SignText;)V +MD: net/minecraft/world/level/block/entity/SignBlockEntity/m_278141_ (Lnet/minecraft/world/level/block/entity/SignText;)V net/minecraft/world/level/block/entity/SignBlockEntity/lambda$load$3 (Lnet/minecraft/world/level/block/entity/SignText;)V +MD: net/minecraft/world/level/block/entity/SignBlockEntity/m_278155_ (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Z)Z net/minecraft/world/level/block/entity/SignBlockEntity/executeClickCommandsIfPresent (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Z)Z +MD: net/minecraft/world/level/block/entity/SignBlockEntity/m_278157_ (ZLnet/minecraft/world/entity/player/Player;)Z net/minecraft/world/level/block/entity/SignBlockEntity/canExecuteClickCommands (ZLnet/minecraft/world/entity/player/Player;)Z +MD: net/minecraft/world/level/block/entity/SignBlockEntity/m_278165_ (Lnet/minecraft/network/chat/Component;)Lnet/minecraft/network/chat/Component; net/minecraft/world/level/block/entity/SignBlockEntity/loadLine (Lnet/minecraft/network/chat/Component;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/world/level/block/entity/SignBlockEntity/m_278182_ (Lnet/minecraft/world/level/block/entity/SignText;)Lnet/minecraft/world/level/block/entity/SignText; net/minecraft/world/level/block/entity/SignBlockEntity/loadLines (Lnet/minecraft/world/level/block/entity/SignText;)Lnet/minecraft/world/level/block/entity/SignText; +MD: net/minecraft/world/level/block/entity/SignBlockEntity/m_278808_ (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/commands/CommandSourceStack; net/minecraft/world/level/block/entity/SignBlockEntity/createCommandSourceStack (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/commands/CommandSourceStack; +MD: net/minecraft/world/level/block/entity/SignBlockEntity/m_58483_ ()Lnet/minecraft/network/protocol/Packet; net/minecraft/world/level/block/entity/SignBlockEntity/getUpdatePacket ()Lnet/minecraft/network/protocol/Packet; +MD: net/minecraft/world/level/block/entity/SignBlockEntity/m_58483_ ()Lnet/minecraft/network/protocol/game/ClientboundBlockEntityDataPacket; net/minecraft/world/level/block/entity/SignBlockEntity/getUpdatePacket ()Lnet/minecraft/network/protocol/game/ClientboundBlockEntityDataPacket; +MD: net/minecraft/world/level/block/entity/SignBlockEntity/m_5995_ ()Lnet/minecraft/nbt/CompoundTag; net/minecraft/world/level/block/entity/SignBlockEntity/getUpdateTag ()Lnet/minecraft/nbt/CompoundTag; +MD: net/minecraft/world/level/block/entity/SignBlockEntity/m_6326_ ()Z net/minecraft/world/level/block/entity/SignBlockEntity/onlyOpCanSetNbt ()Z +MD: net/minecraft/world/level/block/entity/SignText/ ()V net/minecraft/world/level/block/entity/SignText/ ()V +MD: net/minecraft/world/level/block/entity/SignText/ ([Lnet/minecraft/network/chat/Component;[Lnet/minecraft/network/chat/Component;Lnet/minecraft/world/item/DyeColor;Z)V net/minecraft/world/level/block/entity/SignText/ ([Lnet/minecraft/network/chat/Component;[Lnet/minecraft/network/chat/Component;Lnet/minecraft/world/item/DyeColor;Z)V +MD: net/minecraft/world/level/block/entity/SignText/ ()V net/minecraft/world/level/block/entity/SignText/ ()V +MD: net/minecraft/world/level/block/entity/SignText/m_276773_ ()Lnet/minecraft/world/item/DyeColor; net/minecraft/world/level/block/entity/SignText/getColor ()Lnet/minecraft/world/item/DyeColor; +MD: net/minecraft/world/level/block/entity/SignText/m_276776_ (Lnet/minecraft/world/entity/player/Player;)Z net/minecraft/world/level/block/entity/SignText/hasMessage (Lnet/minecraft/world/entity/player/Player;)Z +MD: net/minecraft/world/level/block/entity/SignText/m_276780_ (Lnet/minecraft/world/level/block/entity/SignText;)Ljava/lang/Boolean; net/minecraft/world/level/block/entity/SignText/lambda$static$5 (Lnet/minecraft/world/level/block/entity/SignText;)Ljava/lang/Boolean; +MD: net/minecraft/world/level/block/entity/SignText/m_276784_ ()[Lnet/minecraft/network/chat/Component; net/minecraft/world/level/block/entity/SignText/emptyMessages ()[Lnet/minecraft/network/chat/Component; +MD: net/minecraft/world/level/block/entity/SignText/m_276807_ (Lnet/minecraft/world/entity/player/Player;)Z net/minecraft/world/level/block/entity/SignText/hasAnyClickCommands (Lnet/minecraft/world/entity/player/Player;)Z +MD: net/minecraft/world/level/block/entity/SignText/m_276814_ (Lnet/minecraft/network/chat/Component;)Z net/minecraft/world/level/block/entity/SignText/lambda$hasMessage$7 (Lnet/minecraft/network/chat/Component;)Z +MD: net/minecraft/world/level/block/entity/SignText/m_276843_ ()Z net/minecraft/world/level/block/entity/SignText/hasGlowingText ()Z +MD: net/minecraft/world/level/block/entity/SignText/m_276901_ (Lnet/minecraft/world/item/DyeColor;)Lnet/minecraft/world/level/block/entity/SignText; net/minecraft/world/level/block/entity/SignText/setColor (Lnet/minecraft/world/item/DyeColor;)Lnet/minecraft/world/level/block/entity/SignText; +MD: net/minecraft/world/level/block/entity/SignText/m_276913_ (ILnet/minecraft/network/chat/Component;)Lnet/minecraft/world/level/block/entity/SignText; net/minecraft/world/level/block/entity/SignText/setMessage (ILnet/minecraft/network/chat/Component;)Lnet/minecraft/world/level/block/entity/SignText; +MD: net/minecraft/world/level/block/entity/SignText/m_276932_ (Lnet/minecraft/world/level/block/entity/SignText;)Lnet/minecraft/world/item/DyeColor; net/minecraft/world/level/block/entity/SignText/lambda$static$4 (Lnet/minecraft/world/level/block/entity/SignText;)Lnet/minecraft/world/item/DyeColor; +MD: net/minecraft/world/level/block/entity/SignText/m_276933_ (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/world/level/block/entity/SignText/lambda$static$6 (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/world/level/block/entity/SignText/m_276937_ (Lnet/minecraft/world/level/block/entity/SignText;)[Lnet/minecraft/network/chat/Component; net/minecraft/world/level/block/entity/SignText/lambda$static$3 (Lnet/minecraft/world/level/block/entity/SignText;)[Lnet/minecraft/network/chat/Component; +MD: net/minecraft/world/level/block/entity/SignText/m_276943_ ([Lnet/minecraft/network/chat/Component;)Ljava/util/List; net/minecraft/world/level/block/entity/SignText/lambda$static$2 ([Lnet/minecraft/network/chat/Component;)Ljava/util/List; +MD: net/minecraft/world/level/block/entity/SignText/m_276945_ (Z)[Lnet/minecraft/network/chat/Component; net/minecraft/world/level/block/entity/SignText/getMessages (Z)[Lnet/minecraft/network/chat/Component; +MD: net/minecraft/world/level/block/entity/SignText/m_276946_ ()Ljava/util/Optional; net/minecraft/world/level/block/entity/SignText/getOnlyFilteredMessages ()Ljava/util/Optional; +MD: net/minecraft/world/level/block/entity/SignText/m_276948_ (ILnet/minecraft/network/chat/Component;Lnet/minecraft/network/chat/Component;)Lnet/minecraft/world/level/block/entity/SignText; net/minecraft/world/level/block/entity/SignText/setMessage (ILnet/minecraft/network/chat/Component;Lnet/minecraft/network/chat/Component;)Lnet/minecraft/world/level/block/entity/SignText; +MD: net/minecraft/world/level/block/entity/SignText/m_276973_ ([Lnet/minecraft/network/chat/Component;[Lnet/minecraft/network/chat/Component;)V net/minecraft/world/level/block/entity/SignText/populateFilteredMessagesWithRawMessages ([Lnet/minecraft/network/chat/Component;[Lnet/minecraft/network/chat/Component;)V +MD: net/minecraft/world/level/block/entity/SignText/m_277020_ ([Lnet/minecraft/network/chat/Component;Ljava/util/Optional;Lnet/minecraft/world/item/DyeColor;Z)Lnet/minecraft/world/level/block/entity/SignText; net/minecraft/world/level/block/entity/SignText/load ([Lnet/minecraft/network/chat/Component;Ljava/util/Optional;Lnet/minecraft/world/item/DyeColor;Z)Lnet/minecraft/world/level/block/entity/SignText; +MD: net/minecraft/world/level/block/entity/SignText/m_277088_ (Ljava/util/List;)[Lnet/minecraft/network/chat/Component; net/minecraft/world/level/block/entity/SignText/lambda$static$0 (Ljava/util/List;)[Lnet/minecraft/network/chat/Component; +MD: net/minecraft/world/level/block/entity/SignText/m_277130_ (ZLjava/util/function/Function;)[Lnet/minecraft/util/FormattedCharSequence; net/minecraft/world/level/block/entity/SignText/getRenderMessages (ZLjava/util/function/Function;)[Lnet/minecraft/util/FormattedCharSequence; +MD: net/minecraft/world/level/block/entity/SignText/m_277132_ (Z)Lnet/minecraft/world/level/block/entity/SignText; net/minecraft/world/level/block/entity/SignText/setHasGlowingText (Z)Lnet/minecraft/world/level/block/entity/SignText; +MD: net/minecraft/world/level/block/entity/SignText/m_277138_ (IZ)Lnet/minecraft/network/chat/Component; net/minecraft/world/level/block/entity/SignText/getMessage (IZ)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/world/level/block/entity/SignText/m_277164_ (Ljava/util/List;)Lcom/mojang/serialization/DataResult; net/minecraft/world/level/block/entity/SignText/lambda$static$1 (Ljava/util/List;)Lcom/mojang/serialization/DataResult; +MD: net/minecraft/world/level/block/entity/SkullBlockEntity/ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V net/minecraft/world/level/block/entity/SkullBlockEntity/ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V +MD: net/minecraft/world/level/block/entity/SkullBlockEntity/m_142466_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/level/block/entity/SkullBlockEntity/load (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/level/block/entity/SkullBlockEntity/m_155738_ (Lcom/mojang/authlib/GameProfile;Ljava/util/function/Consumer;)V net/minecraft/world/level/block/entity/SkullBlockEntity/updateGameprofile (Lcom/mojang/authlib/GameProfile;Ljava/util/function/Consumer;)V +MD: net/minecraft/world/level/block/entity/SkullBlockEntity/m_155746_ (Lcom/mojang/authlib/GameProfile;)V net/minecraft/world/level/block/entity/SkullBlockEntity/lambda$updateOwnerProfile$0 (Lcom/mojang/authlib/GameProfile;)V +MD: net/minecraft/world/level/block/entity/SkullBlockEntity/m_182458_ (Ljava/util/Optional;Ljava/util/function/Consumer;Lcom/mojang/authlib/GameProfile;)V net/minecraft/world/level/block/entity/SkullBlockEntity/lambda$updateGameprofile$5 (Ljava/util/Optional;Ljava/util/function/Consumer;Lcom/mojang/authlib/GameProfile;)V +MD: net/minecraft/world/level/block/entity/SkullBlockEntity/m_182467_ (Ljava/util/function/Consumer;Lcom/mojang/authlib/GameProfile;Ljava/util/Optional;)V net/minecraft/world/level/block/entity/SkullBlockEntity/lambda$updateGameprofile$6 (Ljava/util/function/Consumer;Lcom/mojang/authlib/GameProfile;Ljava/util/Optional;)V +MD: net/minecraft/world/level/block/entity/SkullBlockEntity/m_182474_ (Ljava/util/function/Consumer;Lcom/mojang/authlib/GameProfile;)V net/minecraft/world/level/block/entity/SkullBlockEntity/lambda$updateGameprofile$3 (Ljava/util/function/Consumer;Lcom/mojang/authlib/GameProfile;)V +MD: net/minecraft/world/level/block/entity/SkullBlockEntity/m_183515_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/level/block/entity/SkullBlockEntity/saveAdditional (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/level/block/entity/SkullBlockEntity/m_196704_ ()V net/minecraft/world/level/block/entity/SkullBlockEntity/clear ()V +MD: net/minecraft/world/level/block/entity/SkullBlockEntity/m_222885_ (Lnet/minecraft/server/Services;Ljava/util/concurrent/Executor;)V net/minecraft/world/level/block/entity/SkullBlockEntity/setup (Lnet/minecraft/server/Services;Ljava/util/concurrent/Executor;)V +MD: net/minecraft/world/level/block/entity/SkullBlockEntity/m_261082_ (F)F net/minecraft/world/level/block/entity/SkullBlockEntity/getAnimation (F)F +MD: net/minecraft/world/level/block/entity/SkullBlockEntity/m_261318_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/entity/SkullBlockEntity;)V net/minecraft/world/level/block/entity/SkullBlockEntity/animation (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/entity/SkullBlockEntity;)V +MD: net/minecraft/world/level/block/entity/SkullBlockEntity/m_262374_ ()Lnet/minecraft/resources/ResourceLocation; net/minecraft/world/level/block/entity/SkullBlockEntity/getNoteBlockSound ()Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/world/level/block/entity/SkullBlockEntity/m_276179_ (Ljava/util/function/Consumer;Lcom/mojang/authlib/GameProfile;)V net/minecraft/world/level/block/entity/SkullBlockEntity/lambda$updateGameprofile$2 (Ljava/util/function/Consumer;Lcom/mojang/authlib/GameProfile;)V +MD: net/minecraft/world/level/block/entity/SkullBlockEntity/m_276180_ (Lcom/mojang/authlib/GameProfile;Ljava/util/function/Consumer;)V net/minecraft/world/level/block/entity/SkullBlockEntity/lambda$updateGameprofile$1 (Lcom/mojang/authlib/GameProfile;Ljava/util/function/Consumer;)V +MD: net/minecraft/world/level/block/entity/SkullBlockEntity/m_276181_ (Ljava/util/function/Consumer;Lcom/mojang/authlib/GameProfile;)V net/minecraft/world/level/block/entity/SkullBlockEntity/lambda$updateGameprofile$4 (Ljava/util/function/Consumer;Lcom/mojang/authlib/GameProfile;)V +MD: net/minecraft/world/level/block/entity/SkullBlockEntity/m_58483_ ()Lnet/minecraft/network/protocol/Packet; net/minecraft/world/level/block/entity/SkullBlockEntity/getUpdatePacket ()Lnet/minecraft/network/protocol/Packet; +MD: net/minecraft/world/level/block/entity/SkullBlockEntity/m_58483_ ()Lnet/minecraft/network/protocol/game/ClientboundBlockEntityDataPacket; net/minecraft/world/level/block/entity/SkullBlockEntity/getUpdatePacket ()Lnet/minecraft/network/protocol/game/ClientboundBlockEntityDataPacket; +MD: net/minecraft/world/level/block/entity/SkullBlockEntity/m_59769_ (Lcom/mojang/authlib/GameProfile;)V net/minecraft/world/level/block/entity/SkullBlockEntity/setOwner (Lcom/mojang/authlib/GameProfile;)V +MD: net/minecraft/world/level/block/entity/SkullBlockEntity/m_59779_ ()Lcom/mojang/authlib/GameProfile; net/minecraft/world/level/block/entity/SkullBlockEntity/getOwnerProfile ()Lcom/mojang/authlib/GameProfile; +MD: net/minecraft/world/level/block/entity/SkullBlockEntity/m_59780_ ()V net/minecraft/world/level/block/entity/SkullBlockEntity/updateOwnerProfile ()V +MD: net/minecraft/world/level/block/entity/SkullBlockEntity/m_5995_ ()Lnet/minecraft/nbt/CompoundTag; net/minecraft/world/level/block/entity/SkullBlockEntity/getUpdateTag ()Lnet/minecraft/nbt/CompoundTag; +MD: net/minecraft/world/level/block/entity/SmokerBlockEntity/ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V net/minecraft/world/level/block/entity/SmokerBlockEntity/ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V +MD: net/minecraft/world/level/block/entity/SmokerBlockEntity/m_6555_ (ILnet/minecraft/world/entity/player/Inventory;)Lnet/minecraft/world/inventory/AbstractContainerMenu; net/minecraft/world/level/block/entity/SmokerBlockEntity/createMenu (ILnet/minecraft/world/entity/player/Inventory;)Lnet/minecraft/world/inventory/AbstractContainerMenu; +MD: net/minecraft/world/level/block/entity/SmokerBlockEntity/m_6820_ ()Lnet/minecraft/network/chat/Component; net/minecraft/world/level/block/entity/SmokerBlockEntity/getDefaultName ()Lnet/minecraft/network/chat/Component; +MD: net/minecraft/world/level/block/entity/SmokerBlockEntity/m_7743_ (Lnet/minecraft/world/item/ItemStack;)I net/minecraft/world/level/block/entity/SmokerBlockEntity/getBurnDuration (Lnet/minecraft/world/item/ItemStack;)I +MD: net/minecraft/world/level/block/entity/SpawnerBlockEntity/ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V net/minecraft/world/level/block/entity/SpawnerBlockEntity/ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V +MD: net/minecraft/world/level/block/entity/SpawnerBlockEntity/m_142466_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/level/block/entity/SpawnerBlockEntity/load (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/level/block/entity/SpawnerBlockEntity/m_155754_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/entity/SpawnerBlockEntity;)V net/minecraft/world/level/block/entity/SpawnerBlockEntity/clientTick (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/entity/SpawnerBlockEntity;)V +MD: net/minecraft/world/level/block/entity/SpawnerBlockEntity/m_155761_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/entity/SpawnerBlockEntity;)V net/minecraft/world/level/block/entity/SpawnerBlockEntity/serverTick (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/entity/SpawnerBlockEntity;)V +MD: net/minecraft/world/level/block/entity/SpawnerBlockEntity/m_183515_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/level/block/entity/SpawnerBlockEntity/saveAdditional (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/level/block/entity/SpawnerBlockEntity/m_252803_ (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/util/RandomSource;)V net/minecraft/world/level/block/entity/SpawnerBlockEntity/setEntityId (Lnet/minecraft/world/entity/EntityType;Lnet/minecraft/util/RandomSource;)V +MD: net/minecraft/world/level/block/entity/SpawnerBlockEntity/m_58483_ ()Lnet/minecraft/network/protocol/Packet; net/minecraft/world/level/block/entity/SpawnerBlockEntity/getUpdatePacket ()Lnet/minecraft/network/protocol/Packet; +MD: net/minecraft/world/level/block/entity/SpawnerBlockEntity/m_58483_ ()Lnet/minecraft/network/protocol/game/ClientboundBlockEntityDataPacket; net/minecraft/world/level/block/entity/SpawnerBlockEntity/getUpdatePacket ()Lnet/minecraft/network/protocol/game/ClientboundBlockEntityDataPacket; +MD: net/minecraft/world/level/block/entity/SpawnerBlockEntity/m_59801_ ()Lnet/minecraft/world/level/BaseSpawner; net/minecraft/world/level/block/entity/SpawnerBlockEntity/getSpawner ()Lnet/minecraft/world/level/BaseSpawner; +MD: net/minecraft/world/level/block/entity/SpawnerBlockEntity/m_5995_ ()Lnet/minecraft/nbt/CompoundTag; net/minecraft/world/level/block/entity/SpawnerBlockEntity/getUpdateTag ()Lnet/minecraft/nbt/CompoundTag; +MD: net/minecraft/world/level/block/entity/SpawnerBlockEntity/m_6326_ ()Z net/minecraft/world/level/block/entity/SpawnerBlockEntity/onlyOpCanSetNbt ()Z +MD: net/minecraft/world/level/block/entity/SpawnerBlockEntity/m_7531_ (II)Z net/minecraft/world/level/block/entity/SpawnerBlockEntity/triggerEvent (II)Z +MD: net/minecraft/world/level/block/entity/SpawnerBlockEntity$1/ (Lnet/minecraft/world/level/block/entity/SpawnerBlockEntity;)V net/minecraft/world/level/block/entity/SpawnerBlockEntity$1/ (Lnet/minecraft/world/level/block/entity/SpawnerBlockEntity;)V +MD: net/minecraft/world/level/block/entity/SpawnerBlockEntity$1/m_142523_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;I)V net/minecraft/world/level/block/entity/SpawnerBlockEntity$1/broadcastEvent (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;I)V +MD: net/minecraft/world/level/block/entity/SpawnerBlockEntity$1/m_142667_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/SpawnData;)V net/minecraft/world/level/block/entity/SpawnerBlockEntity$1/setNextSpawnData (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/SpawnData;)V +MD: net/minecraft/world/level/block/entity/StructureBlockEntity/ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V net/minecraft/world/level/block/entity/StructureBlockEntity/ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V +MD: net/minecraft/world/level/block/entity/StructureBlockEntity/m_142466_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/level/block/entity/StructureBlockEntity/load (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/level/block/entity/StructureBlockEntity/m_155781_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;)V net/minecraft/world/level/block/entity/StructureBlockEntity/lambda$loadStructure$5 (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/world/level/block/entity/StructureBlockEntity/m_155784_ (Lnet/minecraft/world/level/block/entity/BlockEntity;)Lnet/minecraft/world/level/block/entity/StructureBlockEntity; net/minecraft/world/level/block/entity/StructureBlockEntity/lambda$getRelatedCorners$3 (Lnet/minecraft/world/level/block/entity/BlockEntity;)Lnet/minecraft/world/level/block/entity/StructureBlockEntity; +MD: net/minecraft/world/level/block/entity/StructureBlockEntity/m_155786_ (Lnet/minecraft/world/level/block/entity/StructureBlockEntity;)Z net/minecraft/world/level/block/entity/StructureBlockEntity/lambda$getRelatedCorners$4 (Lnet/minecraft/world/level/block/entity/StructureBlockEntity;)Z +MD: net/minecraft/world/level/block/entity/StructureBlockEntity/m_155788_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/levelgen/structure/BoundingBox;)Z net/minecraft/world/level/block/entity/StructureBlockEntity/lambda$detectSize$0 (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/levelgen/structure/BoundingBox;)Z +MD: net/minecraft/world/level/block/entity/StructureBlockEntity/m_155791_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;)Ljava/util/stream/Stream; net/minecraft/world/level/block/entity/StructureBlockEntity/getRelatedCorners (Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;)Ljava/util/stream/Stream; +MD: net/minecraft/world/level/block/entity/StructureBlockEntity/m_155794_ (Lnet/minecraft/core/BlockPos;Ljava/util/stream/Stream;)Ljava/util/Optional; net/minecraft/world/level/block/entity/StructureBlockEntity/calculateEnclosingBoundingBox (Lnet/minecraft/core/BlockPos;Ljava/util/stream/Stream;)Ljava/util/Optional; +MD: net/minecraft/world/level/block/entity/StructureBlockEntity/m_155797_ (Lnet/minecraft/core/Vec3i;)V net/minecraft/world/level/block/entity/StructureBlockEntity/setStructureSize (Lnet/minecraft/core/Vec3i;)V +MD: net/minecraft/world/level/block/entity/StructureBlockEntity/m_155801_ (Lnet/minecraft/world/level/block/entity/BlockEntity;)Z net/minecraft/world/level/block/entity/StructureBlockEntity/lambda$getRelatedCorners$2 (Lnet/minecraft/world/level/block/entity/BlockEntity;)Z +MD: net/minecraft/world/level/block/entity/StructureBlockEntity/m_155805_ ()Lnet/minecraft/core/Vec3i; net/minecraft/world/level/block/entity/StructureBlockEntity/getStructureSize ()Lnet/minecraft/core/Vec3i; +MD: net/minecraft/world/level/block/entity/StructureBlockEntity/m_183515_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/level/block/entity/StructureBlockEntity/saveAdditional (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/level/block/entity/StructureBlockEntity/m_222888_ (J)Lnet/minecraft/util/RandomSource; net/minecraft/world/level/block/entity/StructureBlockEntity/createRandom (J)Lnet/minecraft/util/RandomSource; +MD: net/minecraft/world/level/block/entity/StructureBlockEntity/m_271673_ (Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/level/block/entity/StructureBlockEntity/lambda$getRelatedCorners$1 (Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/level/block/entity/StructureBlockEntity/m_58483_ ()Lnet/minecraft/network/protocol/Packet; net/minecraft/world/level/block/entity/StructureBlockEntity/getUpdatePacket ()Lnet/minecraft/network/protocol/Packet; +MD: net/minecraft/world/level/block/entity/StructureBlockEntity/m_58483_ ()Lnet/minecraft/network/protocol/game/ClientboundBlockEntityDataPacket; net/minecraft/world/level/block/entity/StructureBlockEntity/getUpdatePacket ()Lnet/minecraft/network/protocol/game/ClientboundBlockEntityDataPacket; +MD: net/minecraft/world/level/block/entity/StructureBlockEntity/m_59827_ ()F net/minecraft/world/level/block/entity/StructureBlockEntity/getIntegrity ()F +MD: net/minecraft/world/level/block/entity/StructureBlockEntity/m_59828_ ()J net/minecraft/world/level/block/entity/StructureBlockEntity/getSeed ()J +MD: net/minecraft/world/level/block/entity/StructureBlockEntity/m_59829_ ()Z net/minecraft/world/level/block/entity/StructureBlockEntity/detectSize ()Z +MD: net/minecraft/world/level/block/entity/StructureBlockEntity/m_59830_ ()Z net/minecraft/world/level/block/entity/StructureBlockEntity/saveStructure ()Z +MD: net/minecraft/world/level/block/entity/StructureBlockEntity/m_59831_ ()V net/minecraft/world/level/block/entity/StructureBlockEntity/unloadStructure ()V +MD: net/minecraft/world/level/block/entity/StructureBlockEntity/m_59832_ ()Z net/minecraft/world/level/block/entity/StructureBlockEntity/isStructureLoadable ()Z +MD: net/minecraft/world/level/block/entity/StructureBlockEntity/m_59833_ ()Z net/minecraft/world/level/block/entity/StructureBlockEntity/isPowered ()Z +MD: net/minecraft/world/level/block/entity/StructureBlockEntity/m_59834_ ()Z net/minecraft/world/level/block/entity/StructureBlockEntity/getShowAir ()Z +MD: net/minecraft/world/level/block/entity/StructureBlockEntity/m_59835_ ()Z net/minecraft/world/level/block/entity/StructureBlockEntity/getShowBoundingBox ()Z +MD: net/minecraft/world/level/block/entity/StructureBlockEntity/m_59836_ ()V net/minecraft/world/level/block/entity/StructureBlockEntity/updateBlockState ()V +MD: net/minecraft/world/level/block/entity/StructureBlockEntity/m_59838_ (F)V net/minecraft/world/level/block/entity/StructureBlockEntity/setIntegrity (F)V +MD: net/minecraft/world/level/block/entity/StructureBlockEntity/m_59840_ (J)V net/minecraft/world/level/block/entity/StructureBlockEntity/setSeed (J)V +MD: net/minecraft/world/level/block/entity/StructureBlockEntity/m_59842_ (Lnet/minecraft/server/level/ServerLevel;)Z net/minecraft/world/level/block/entity/StructureBlockEntity/loadStructure (Lnet/minecraft/server/level/ServerLevel;)Z +MD: net/minecraft/world/level/block/entity/StructureBlockEntity/m_59844_ (Lnet/minecraft/server/level/ServerLevel;Z)Z net/minecraft/world/level/block/entity/StructureBlockEntity/loadStructure (Lnet/minecraft/server/level/ServerLevel;Z)Z +MD: net/minecraft/world/level/block/entity/StructureBlockEntity/m_59847_ (Lnet/minecraft/server/level/ServerLevel;ZLnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate;)Z net/minecraft/world/level/block/entity/StructureBlockEntity/loadStructure (Lnet/minecraft/server/level/ServerLevel;ZLnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate;)Z +MD: net/minecraft/world/level/block/entity/StructureBlockEntity/m_59851_ (Lnet/minecraft/world/entity/LivingEntity;)V net/minecraft/world/level/block/entity/StructureBlockEntity/createdBy (Lnet/minecraft/world/entity/LivingEntity;)V +MD: net/minecraft/world/level/block/entity/StructureBlockEntity/m_59853_ (Lnet/minecraft/world/entity/player/Player;)Z net/minecraft/world/level/block/entity/StructureBlockEntity/usedBy (Lnet/minecraft/world/entity/player/Player;)Z +MD: net/minecraft/world/level/block/entity/StructureBlockEntity/m_59860_ (Lnet/minecraft/world/level/block/state/properties/StructureMode;)V net/minecraft/world/level/block/entity/StructureBlockEntity/setMode (Lnet/minecraft/world/level/block/state/properties/StructureMode;)V +MD: net/minecraft/world/level/block/entity/StructureBlockEntity/m_59868_ (Ljava/lang/String;)V net/minecraft/world/level/block/entity/StructureBlockEntity/setStructureName (Ljava/lang/String;)V +MD: net/minecraft/world/level/block/entity/StructureBlockEntity/m_59874_ (Lnet/minecraft/resources/ResourceLocation;)V net/minecraft/world/level/block/entity/StructureBlockEntity/setStructureName (Lnet/minecraft/resources/ResourceLocation;)V +MD: net/minecraft/world/level/block/entity/StructureBlockEntity/m_59876_ (Z)V net/minecraft/world/level/block/entity/StructureBlockEntity/setIgnoreEntities (Z)V +MD: net/minecraft/world/level/block/entity/StructureBlockEntity/m_59881_ (Lnet/minecraft/world/level/block/Mirror;)V net/minecraft/world/level/block/entity/StructureBlockEntity/setMirror (Lnet/minecraft/world/level/block/Mirror;)V +MD: net/minecraft/world/level/block/entity/StructureBlockEntity/m_59883_ (Lnet/minecraft/world/level/block/Rotation;)V net/minecraft/world/level/block/entity/StructureBlockEntity/setRotation (Lnet/minecraft/world/level/block/Rotation;)V +MD: net/minecraft/world/level/block/entity/StructureBlockEntity/m_59885_ (Lnet/minecraft/core/BlockPos;)V net/minecraft/world/level/block/entity/StructureBlockEntity/setStructurePos (Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/world/level/block/entity/StructureBlockEntity/m_59887_ (Ljava/lang/String;)V net/minecraft/world/level/block/entity/StructureBlockEntity/setMetaData (Ljava/lang/String;)V +MD: net/minecraft/world/level/block/entity/StructureBlockEntity/m_59889_ (Z)Z net/minecraft/world/level/block/entity/StructureBlockEntity/saveStructure (Z)Z +MD: net/minecraft/world/level/block/entity/StructureBlockEntity/m_59893_ (Z)V net/minecraft/world/level/block/entity/StructureBlockEntity/setPowered (Z)V +MD: net/minecraft/world/level/block/entity/StructureBlockEntity/m_59895_ ()Ljava/lang/String; net/minecraft/world/level/block/entity/StructureBlockEntity/getStructureName ()Ljava/lang/String; +MD: net/minecraft/world/level/block/entity/StructureBlockEntity/m_59896_ (Z)V net/minecraft/world/level/block/entity/StructureBlockEntity/setShowAir (Z)V +MD: net/minecraft/world/level/block/entity/StructureBlockEntity/m_59898_ (Z)V net/minecraft/world/level/block/entity/StructureBlockEntity/setShowBoundingBox (Z)V +MD: net/minecraft/world/level/block/entity/StructureBlockEntity/m_59900_ ()Ljava/lang/String; net/minecraft/world/level/block/entity/StructureBlockEntity/getStructurePath ()Ljava/lang/String; +MD: net/minecraft/world/level/block/entity/StructureBlockEntity/m_59901_ ()Z net/minecraft/world/level/block/entity/StructureBlockEntity/hasStructureName ()Z +MD: net/minecraft/world/level/block/entity/StructureBlockEntity/m_59902_ ()Lnet/minecraft/core/BlockPos; net/minecraft/world/level/block/entity/StructureBlockEntity/getStructurePos ()Lnet/minecraft/core/BlockPos; +MD: net/minecraft/world/level/block/entity/StructureBlockEntity/m_59905_ ()Lnet/minecraft/world/level/block/Mirror; net/minecraft/world/level/block/entity/StructureBlockEntity/getMirror ()Lnet/minecraft/world/level/block/Mirror; +MD: net/minecraft/world/level/block/entity/StructureBlockEntity/m_59906_ ()Lnet/minecraft/world/level/block/Rotation; net/minecraft/world/level/block/entity/StructureBlockEntity/getRotation ()Lnet/minecraft/world/level/block/Rotation; +MD: net/minecraft/world/level/block/entity/StructureBlockEntity/m_59907_ ()Ljava/lang/String; net/minecraft/world/level/block/entity/StructureBlockEntity/getMetaData ()Ljava/lang/String; +MD: net/minecraft/world/level/block/entity/StructureBlockEntity/m_59908_ ()Lnet/minecraft/world/level/block/state/properties/StructureMode; net/minecraft/world/level/block/entity/StructureBlockEntity/getMode ()Lnet/minecraft/world/level/block/state/properties/StructureMode; +MD: net/minecraft/world/level/block/entity/StructureBlockEntity/m_59910_ ()Z net/minecraft/world/level/block/entity/StructureBlockEntity/isIgnoreEntities ()Z +MD: net/minecraft/world/level/block/entity/StructureBlockEntity/m_5995_ ()Lnet/minecraft/nbt/CompoundTag; net/minecraft/world/level/block/entity/StructureBlockEntity/getUpdateTag ()Lnet/minecraft/nbt/CompoundTag; +MD: net/minecraft/world/level/block/entity/StructureBlockEntity$UpdateType/ ()V net/minecraft/world/level/block/entity/StructureBlockEntity$UpdateType/ ()V +MD: net/minecraft/world/level/block/entity/StructureBlockEntity$UpdateType/ (Ljava/lang/String;I)V net/minecraft/world/level/block/entity/StructureBlockEntity$UpdateType/ (Ljava/lang/String;I)V +MD: net/minecraft/world/level/block/entity/StructureBlockEntity$UpdateType/m_155806_ ()[Lnet/minecraft/world/level/block/entity/StructureBlockEntity$UpdateType; net/minecraft/world/level/block/entity/StructureBlockEntity$UpdateType/$values ()[Lnet/minecraft/world/level/block/entity/StructureBlockEntity$UpdateType; +MD: net/minecraft/world/level/block/entity/StructureBlockEntity$UpdateType/valueOf (Ljava/lang/String;)Lnet/minecraft/world/level/block/entity/StructureBlockEntity$UpdateType; net/minecraft/world/level/block/entity/StructureBlockEntity$UpdateType/valueOf (Ljava/lang/String;)Lnet/minecraft/world/level/block/entity/StructureBlockEntity$UpdateType; +MD: net/minecraft/world/level/block/entity/StructureBlockEntity$UpdateType/values ()[Lnet/minecraft/world/level/block/entity/StructureBlockEntity$UpdateType; net/minecraft/world/level/block/entity/StructureBlockEntity$UpdateType/values ()[Lnet/minecraft/world/level/block/entity/StructureBlockEntity$UpdateType; +MD: net/minecraft/world/level/block/entity/TheEndGatewayBlockEntity/ ()V net/minecraft/world/level/block/entity/TheEndGatewayBlockEntity/ ()V +MD: net/minecraft/world/level/block/entity/TheEndGatewayBlockEntity/ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V net/minecraft/world/level/block/entity/TheEndGatewayBlockEntity/ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V +MD: net/minecraft/world/level/block/entity/TheEndGatewayBlockEntity/m_142466_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/level/block/entity/TheEndGatewayBlockEntity/load (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/level/block/entity/TheEndGatewayBlockEntity/m_155815_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/phys/Vec3;)Z net/minecraft/world/level/block/entity/TheEndGatewayBlockEntity/isChunkEmpty (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/phys/Vec3;)Z +MD: net/minecraft/world/level/block/entity/TheEndGatewayBlockEntity/m_155818_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/core/BlockPos; net/minecraft/world/level/block/entity/TheEndGatewayBlockEntity/findOrCreateValidTeleportPos (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/core/BlockPos; +MD: net/minecraft/world/level/block/entity/TheEndGatewayBlockEntity/m_155821_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/levelgen/feature/configurations/EndGatewayConfiguration;)V net/minecraft/world/level/block/entity/TheEndGatewayBlockEntity/spawnGatewayPortal (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/levelgen/feature/configurations/EndGatewayConfiguration;)V +MD: net/minecraft/world/level/block/entity/TheEndGatewayBlockEntity/m_155825_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/core/BlockPos; net/minecraft/world/level/block/entity/TheEndGatewayBlockEntity/findExitPosition (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/core/BlockPos; +MD: net/minecraft/world/level/block/entity/TheEndGatewayBlockEntity/m_155828_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/entity/Entity;Lnet/minecraft/world/level/block/entity/TheEndGatewayBlockEntity;)V net/minecraft/world/level/block/entity/TheEndGatewayBlockEntity/teleportEntity (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/entity/Entity;Lnet/minecraft/world/level/block/entity/TheEndGatewayBlockEntity;)V +MD: net/minecraft/world/level/block/entity/TheEndGatewayBlockEntity/m_155834_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/entity/TheEndGatewayBlockEntity;)V net/minecraft/world/level/block/entity/TheEndGatewayBlockEntity/beamAnimationTick (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/entity/TheEndGatewayBlockEntity;)V +MD: net/minecraft/world/level/block/entity/TheEndGatewayBlockEntity/m_155841_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/phys/Vec3; net/minecraft/world/level/block/entity/TheEndGatewayBlockEntity/findExitPortalXZPosTentative (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/phys/Vec3; +MD: net/minecraft/world/level/block/entity/TheEndGatewayBlockEntity/m_155844_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/entity/TheEndGatewayBlockEntity;)V net/minecraft/world/level/block/entity/TheEndGatewayBlockEntity/teleportTick (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/entity/TheEndGatewayBlockEntity;)V +MD: net/minecraft/world/level/block/entity/TheEndGatewayBlockEntity/m_155849_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/entity/TheEndGatewayBlockEntity;)V net/minecraft/world/level/block/entity/TheEndGatewayBlockEntity/triggerCooldown (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/entity/TheEndGatewayBlockEntity;)V +MD: net/minecraft/world/level/block/entity/TheEndGatewayBlockEntity/m_183515_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/level/block/entity/TheEndGatewayBlockEntity/saveAdditional (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/level/block/entity/TheEndGatewayBlockEntity/m_255321_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Holder$Reference;)V net/minecraft/world/level/block/entity/TheEndGatewayBlockEntity/lambda$findOrCreateValidTeleportPos$1 (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Holder$Reference;)V +MD: net/minecraft/world/level/block/entity/TheEndGatewayBlockEntity/m_257330_ (Lnet/minecraft/core/Registry;)Ljava/util/Optional; net/minecraft/world/level/block/entity/TheEndGatewayBlockEntity/lambda$findOrCreateValidTeleportPos$0 (Lnet/minecraft/core/Registry;)Ljava/util/Optional; +MD: net/minecraft/world/level/block/entity/TheEndGatewayBlockEntity/m_58483_ ()Lnet/minecraft/network/protocol/Packet; net/minecraft/world/level/block/entity/TheEndGatewayBlockEntity/getUpdatePacket ()Lnet/minecraft/network/protocol/Packet; +MD: net/minecraft/world/level/block/entity/TheEndGatewayBlockEntity/m_58483_ ()Lnet/minecraft/network/protocol/game/ClientboundBlockEntityDataPacket; net/minecraft/world/level/block/entity/TheEndGatewayBlockEntity/getUpdatePacket ()Lnet/minecraft/network/protocol/game/ClientboundBlockEntityDataPacket; +MD: net/minecraft/world/level/block/entity/TheEndGatewayBlockEntity/m_59933_ (F)F net/minecraft/world/level/block/entity/TheEndGatewayBlockEntity/getSpawnPercent (F)F +MD: net/minecraft/world/level/block/entity/TheEndGatewayBlockEntity/m_59940_ (Lnet/minecraft/world/entity/Entity;)Z net/minecraft/world/level/block/entity/TheEndGatewayBlockEntity/canEntityTeleport (Lnet/minecraft/world/entity/Entity;)Z +MD: net/minecraft/world/level/block/entity/TheEndGatewayBlockEntity/m_59942_ (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;IZ)Lnet/minecraft/core/BlockPos; net/minecraft/world/level/block/entity/TheEndGatewayBlockEntity/findTallestBlock (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;IZ)Lnet/minecraft/core/BlockPos; +MD: net/minecraft/world/level/block/entity/TheEndGatewayBlockEntity/m_59947_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/phys/Vec3;)Lnet/minecraft/world/level/chunk/LevelChunk; net/minecraft/world/level/block/entity/TheEndGatewayBlockEntity/getChunk (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/phys/Vec3;)Lnet/minecraft/world/level/chunk/LevelChunk; +MD: net/minecraft/world/level/block/entity/TheEndGatewayBlockEntity/m_59953_ (Lnet/minecraft/world/level/chunk/LevelChunk;)Lnet/minecraft/core/BlockPos; net/minecraft/world/level/block/entity/TheEndGatewayBlockEntity/findValidSpawnInChunk (Lnet/minecraft/world/level/chunk/LevelChunk;)Lnet/minecraft/core/BlockPos; +MD: net/minecraft/world/level/block/entity/TheEndGatewayBlockEntity/m_59955_ (Lnet/minecraft/core/BlockPos;Z)V net/minecraft/world/level/block/entity/TheEndGatewayBlockEntity/setExitPosition (Lnet/minecraft/core/BlockPos;Z)V +MD: net/minecraft/world/level/block/entity/TheEndGatewayBlockEntity/m_5995_ ()Lnet/minecraft/nbt/CompoundTag; net/minecraft/world/level/block/entity/TheEndGatewayBlockEntity/getUpdateTag ()Lnet/minecraft/nbt/CompoundTag; +MD: net/minecraft/world/level/block/entity/TheEndGatewayBlockEntity/m_59967_ (F)F net/minecraft/world/level/block/entity/TheEndGatewayBlockEntity/getCooldownPercent (F)F +MD: net/minecraft/world/level/block/entity/TheEndGatewayBlockEntity/m_59971_ ()Z net/minecraft/world/level/block/entity/TheEndGatewayBlockEntity/isSpawning ()Z +MD: net/minecraft/world/level/block/entity/TheEndGatewayBlockEntity/m_59972_ ()Z net/minecraft/world/level/block/entity/TheEndGatewayBlockEntity/isCoolingDown ()Z +MD: net/minecraft/world/level/block/entity/TheEndGatewayBlockEntity/m_59975_ ()I net/minecraft/world/level/block/entity/TheEndGatewayBlockEntity/getParticleAmount ()I +MD: net/minecraft/world/level/block/entity/TheEndGatewayBlockEntity/m_6665_ (Lnet/minecraft/core/Direction;)Z net/minecraft/world/level/block/entity/TheEndGatewayBlockEntity/shouldRenderFace (Lnet/minecraft/core/Direction;)Z +MD: net/minecraft/world/level/block/entity/TheEndGatewayBlockEntity/m_7531_ (II)Z net/minecraft/world/level/block/entity/TheEndGatewayBlockEntity/triggerEvent (II)Z +MD: net/minecraft/world/level/block/entity/TheEndPortalBlockEntity/ (Lnet/minecraft/world/level/block/entity/BlockEntityType;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V net/minecraft/world/level/block/entity/TheEndPortalBlockEntity/ (Lnet/minecraft/world/level/block/entity/BlockEntityType;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V +MD: net/minecraft/world/level/block/entity/TheEndPortalBlockEntity/ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V net/minecraft/world/level/block/entity/TheEndPortalBlockEntity/ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V +MD: net/minecraft/world/level/block/entity/TheEndPortalBlockEntity/m_6665_ (Lnet/minecraft/core/Direction;)Z net/minecraft/world/level/block/entity/TheEndPortalBlockEntity/shouldRenderFace (Lnet/minecraft/core/Direction;)Z +MD: net/minecraft/world/level/block/entity/TickingBlockEntity/m_142220_ ()Z net/minecraft/world/level/block/entity/TickingBlockEntity/isRemoved ()Z +MD: net/minecraft/world/level/block/entity/TickingBlockEntity/m_142224_ ()V net/minecraft/world/level/block/entity/TickingBlockEntity/tick ()V +MD: net/minecraft/world/level/block/entity/TickingBlockEntity/m_142280_ ()Ljava/lang/String; net/minecraft/world/level/block/entity/TickingBlockEntity/getType ()Ljava/lang/String; +MD: net/minecraft/world/level/block/entity/TickingBlockEntity/m_142689_ ()Lnet/minecraft/core/BlockPos; net/minecraft/world/level/block/entity/TickingBlockEntity/getPos ()Lnet/minecraft/core/BlockPos; +MD: net/minecraft/world/level/block/entity/TrappedChestBlockEntity/ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V net/minecraft/world/level/block/entity/TrappedChestBlockEntity/ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V +MD: net/minecraft/world/level/block/entity/TrappedChestBlockEntity/m_142151_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;II)V net/minecraft/world/level/block/entity/TrappedChestBlockEntity/signalOpenCount (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;II)V +MD: net/minecraft/world/level/block/grower/AbstractMegaTreeGrower/ ()V net/minecraft/world/level/block/grower/AbstractMegaTreeGrower/ ()V +MD: net/minecraft/world/level/block/grower/AbstractMegaTreeGrower/m_213566_ (Lnet/minecraft/util/RandomSource;)Lnet/minecraft/resources/ResourceKey; net/minecraft/world/level/block/grower/AbstractMegaTreeGrower/getConfiguredMegaFeature (Lnet/minecraft/util/RandomSource;)Lnet/minecraft/resources/ResourceKey; +MD: net/minecraft/world/level/block/grower/AbstractMegaTreeGrower/m_213817_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/level/chunk/ChunkGenerator;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/util/RandomSource;)Z net/minecraft/world/level/block/grower/AbstractMegaTreeGrower/growTree (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/level/chunk/ChunkGenerator;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/util/RandomSource;)Z +MD: net/minecraft/world/level/block/grower/AbstractMegaTreeGrower/m_222896_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/level/chunk/ChunkGenerator;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/util/RandomSource;II)Z net/minecraft/world/level/block/grower/AbstractMegaTreeGrower/placeMega (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/level/chunk/ChunkGenerator;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/util/RandomSource;II)Z +MD: net/minecraft/world/level/block/grower/AbstractMegaTreeGrower/m_59998_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;II)Z net/minecraft/world/level/block/grower/AbstractMegaTreeGrower/isTwoByTwoSapling (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;II)Z +MD: net/minecraft/world/level/block/grower/AbstractTreeGrower/ ()V net/minecraft/world/level/block/grower/AbstractTreeGrower/ ()V +MD: net/minecraft/world/level/block/grower/AbstractTreeGrower/m_213817_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/level/chunk/ChunkGenerator;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/util/RandomSource;)Z net/minecraft/world/level/block/grower/AbstractTreeGrower/growTree (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/level/chunk/ChunkGenerator;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/util/RandomSource;)Z +MD: net/minecraft/world/level/block/grower/AbstractTreeGrower/m_213888_ (Lnet/minecraft/util/RandomSource;Z)Lnet/minecraft/resources/ResourceKey; net/minecraft/world/level/block/grower/AbstractTreeGrower/getConfiguredFeature (Lnet/minecraft/util/RandomSource;Z)Lnet/minecraft/resources/ResourceKey; +MD: net/minecraft/world/level/block/grower/AbstractTreeGrower/m_60011_ (Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/level/block/grower/AbstractTreeGrower/hasFlowers (Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/level/block/grower/AcaciaTreeGrower/ ()V net/minecraft/world/level/block/grower/AcaciaTreeGrower/ ()V +MD: net/minecraft/world/level/block/grower/AcaciaTreeGrower/m_213888_ (Lnet/minecraft/util/RandomSource;Z)Lnet/minecraft/resources/ResourceKey; net/minecraft/world/level/block/grower/AcaciaTreeGrower/getConfiguredFeature (Lnet/minecraft/util/RandomSource;Z)Lnet/minecraft/resources/ResourceKey; +MD: net/minecraft/world/level/block/grower/AzaleaTreeGrower/ ()V net/minecraft/world/level/block/grower/AzaleaTreeGrower/ ()V +MD: net/minecraft/world/level/block/grower/AzaleaTreeGrower/m_213888_ (Lnet/minecraft/util/RandomSource;Z)Lnet/minecraft/resources/ResourceKey; net/minecraft/world/level/block/grower/AzaleaTreeGrower/getConfiguredFeature (Lnet/minecraft/util/RandomSource;Z)Lnet/minecraft/resources/ResourceKey; +MD: net/minecraft/world/level/block/grower/BirchTreeGrower/ ()V net/minecraft/world/level/block/grower/BirchTreeGrower/ ()V +MD: net/minecraft/world/level/block/grower/BirchTreeGrower/m_213888_ (Lnet/minecraft/util/RandomSource;Z)Lnet/minecraft/resources/ResourceKey; net/minecraft/world/level/block/grower/BirchTreeGrower/getConfiguredFeature (Lnet/minecraft/util/RandomSource;Z)Lnet/minecraft/resources/ResourceKey; +MD: net/minecraft/world/level/block/grower/CherryTreeGrower/ ()V net/minecraft/world/level/block/grower/CherryTreeGrower/ ()V +MD: net/minecraft/world/level/block/grower/CherryTreeGrower/m_213888_ (Lnet/minecraft/util/RandomSource;Z)Lnet/minecraft/resources/ResourceKey; net/minecraft/world/level/block/grower/CherryTreeGrower/getConfiguredFeature (Lnet/minecraft/util/RandomSource;Z)Lnet/minecraft/resources/ResourceKey; +MD: net/minecraft/world/level/block/grower/DarkOakTreeGrower/ ()V net/minecraft/world/level/block/grower/DarkOakTreeGrower/ ()V +MD: net/minecraft/world/level/block/grower/DarkOakTreeGrower/m_213566_ (Lnet/minecraft/util/RandomSource;)Lnet/minecraft/resources/ResourceKey; net/minecraft/world/level/block/grower/DarkOakTreeGrower/getConfiguredMegaFeature (Lnet/minecraft/util/RandomSource;)Lnet/minecraft/resources/ResourceKey; +MD: net/minecraft/world/level/block/grower/DarkOakTreeGrower/m_213888_ (Lnet/minecraft/util/RandomSource;Z)Lnet/minecraft/resources/ResourceKey; net/minecraft/world/level/block/grower/DarkOakTreeGrower/getConfiguredFeature (Lnet/minecraft/util/RandomSource;Z)Lnet/minecraft/resources/ResourceKey; +MD: net/minecraft/world/level/block/grower/JungleTreeGrower/ ()V net/minecraft/world/level/block/grower/JungleTreeGrower/ ()V +MD: net/minecraft/world/level/block/grower/JungleTreeGrower/m_213566_ (Lnet/minecraft/util/RandomSource;)Lnet/minecraft/resources/ResourceKey; net/minecraft/world/level/block/grower/JungleTreeGrower/getConfiguredMegaFeature (Lnet/minecraft/util/RandomSource;)Lnet/minecraft/resources/ResourceKey; +MD: net/minecraft/world/level/block/grower/JungleTreeGrower/m_213888_ (Lnet/minecraft/util/RandomSource;Z)Lnet/minecraft/resources/ResourceKey; net/minecraft/world/level/block/grower/JungleTreeGrower/getConfiguredFeature (Lnet/minecraft/util/RandomSource;Z)Lnet/minecraft/resources/ResourceKey; +MD: net/minecraft/world/level/block/grower/MangroveTreeGrower/ (F)V net/minecraft/world/level/block/grower/MangroveTreeGrower/ (F)V +MD: net/minecraft/world/level/block/grower/MangroveTreeGrower/m_213888_ (Lnet/minecraft/util/RandomSource;Z)Lnet/minecraft/resources/ResourceKey; net/minecraft/world/level/block/grower/MangroveTreeGrower/getConfiguredFeature (Lnet/minecraft/util/RandomSource;Z)Lnet/minecraft/resources/ResourceKey; +MD: net/minecraft/world/level/block/grower/OakTreeGrower/ ()V net/minecraft/world/level/block/grower/OakTreeGrower/ ()V +MD: net/minecraft/world/level/block/grower/OakTreeGrower/m_213888_ (Lnet/minecraft/util/RandomSource;Z)Lnet/minecraft/resources/ResourceKey; net/minecraft/world/level/block/grower/OakTreeGrower/getConfiguredFeature (Lnet/minecraft/util/RandomSource;Z)Lnet/minecraft/resources/ResourceKey; +MD: net/minecraft/world/level/block/grower/SpruceTreeGrower/ ()V net/minecraft/world/level/block/grower/SpruceTreeGrower/ ()V +MD: net/minecraft/world/level/block/grower/SpruceTreeGrower/m_213566_ (Lnet/minecraft/util/RandomSource;)Lnet/minecraft/resources/ResourceKey; net/minecraft/world/level/block/grower/SpruceTreeGrower/getConfiguredMegaFeature (Lnet/minecraft/util/RandomSource;)Lnet/minecraft/resources/ResourceKey; +MD: net/minecraft/world/level/block/grower/SpruceTreeGrower/m_213888_ (Lnet/minecraft/util/RandomSource;Z)Lnet/minecraft/resources/ResourceKey; net/minecraft/world/level/block/grower/SpruceTreeGrower/getConfiguredFeature (Lnet/minecraft/util/RandomSource;Z)Lnet/minecraft/resources/ResourceKey; +MD: net/minecraft/world/level/block/piston/MovingPistonBlock/ ()V net/minecraft/world/level/block/piston/MovingPistonBlock/ ()V +MD: net/minecraft/world/level/block/piston/MovingPistonBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V net/minecraft/world/level/block/piston/MovingPistonBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V +MD: net/minecraft/world/level/block/piston/MovingPistonBlock/m_142194_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/block/entity/BlockEntity; net/minecraft/world/level/block/piston/MovingPistonBlock/newBlockEntity (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/block/entity/BlockEntity; +MD: net/minecraft/world/level/block/piston/MovingPistonBlock/m_142354_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/entity/BlockEntityType;)Lnet/minecraft/world/level/block/entity/BlockEntityTicker; net/minecraft/world/level/block/piston/MovingPistonBlock/getTicker (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/entity/BlockEntityType;)Lnet/minecraft/world/level/block/entity/BlockEntityTicker; +MD: net/minecraft/world/level/block/piston/MovingPistonBlock/m_155881_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/Direction;ZZ)Lnet/minecraft/world/level/block/entity/BlockEntity; net/minecraft/world/level/block/piston/MovingPistonBlock/newMovingBlockEntity (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/Direction;ZZ)Lnet/minecraft/world/level/block/entity/BlockEntity; +MD: net/minecraft/world/level/block/piston/MovingPistonBlock/m_49635_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/storage/loot/LootParams$Builder;)Ljava/util/List; net/minecraft/world/level/block/piston/MovingPistonBlock/getDrops (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/storage/loot/LootParams$Builder;)Ljava/util/List; +MD: net/minecraft/world/level/block/piston/MovingPistonBlock/m_5939_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; net/minecraft/world/level/block/piston/MovingPistonBlock/getCollisionShape (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; +MD: net/minecraft/world/level/block/piston/MovingPistonBlock/m_5940_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; net/minecraft/world/level/block/piston/MovingPistonBlock/getShape (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; +MD: net/minecraft/world/level/block/piston/MovingPistonBlock/m_60053_ (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/piston/PistonMovingBlockEntity; net/minecraft/world/level/block/piston/MovingPistonBlock/getBlockEntity (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/piston/PistonMovingBlockEntity; +MD: net/minecraft/world/level/block/piston/MovingPistonBlock/m_6227_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;Lnet/minecraft/world/phys/BlockHitResult;)Lnet/minecraft/world/InteractionResult; net/minecraft/world/level/block/piston/MovingPistonBlock/use (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;Lnet/minecraft/world/phys/BlockHitResult;)Lnet/minecraft/world/InteractionResult; +MD: net/minecraft/world/level/block/piston/MovingPistonBlock/m_6786_ (Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V net/minecraft/world/level/block/piston/MovingPistonBlock/destroy (Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V +MD: net/minecraft/world/level/block/piston/MovingPistonBlock/m_6810_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Z)V net/minecraft/world/level/block/piston/MovingPistonBlock/onRemove (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Z)V +MD: net/minecraft/world/level/block/piston/MovingPistonBlock/m_6843_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/Rotation;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/piston/MovingPistonBlock/rotate (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/Rotation;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/piston/MovingPistonBlock/m_6943_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/Mirror;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/piston/MovingPistonBlock/mirror (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/Mirror;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/piston/MovingPistonBlock/m_7357_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/pathfinder/PathComputationType;)Z net/minecraft/world/level/block/piston/MovingPistonBlock/isPathfindable (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/pathfinder/PathComputationType;)Z +MD: net/minecraft/world/level/block/piston/MovingPistonBlock/m_7397_ (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/item/ItemStack; net/minecraft/world/level/block/piston/MovingPistonBlock/getCloneItemStack (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/level/block/piston/MovingPistonBlock/m_7926_ (Lnet/minecraft/world/level/block/state/StateDefinition$Builder;)V net/minecraft/world/level/block/piston/MovingPistonBlock/createBlockStateDefinition (Lnet/minecraft/world/level/block/state/StateDefinition$Builder;)V +MD: net/minecraft/world/level/block/piston/PistonBaseBlock/ ()V net/minecraft/world/level/block/piston/PistonBaseBlock/ ()V +MD: net/minecraft/world/level/block/piston/PistonBaseBlock/ (ZLnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V net/minecraft/world/level/block/piston/PistonBaseBlock/ (ZLnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V +MD: net/minecraft/world/level/block/piston/PistonBaseBlock/m_5573_ (Lnet/minecraft/world/item/context/BlockPlaceContext;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/piston/PistonBaseBlock/getStateForPlacement (Lnet/minecraft/world/item/context/BlockPlaceContext;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/piston/PistonBaseBlock/m_5940_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; net/minecraft/world/level/block/piston/PistonBaseBlock/getShape (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; +MD: net/minecraft/world/level/block/piston/PistonBaseBlock/m_60167_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V net/minecraft/world/level/block/piston/PistonBaseBlock/checkIfExtend (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V +MD: net/minecraft/world/level/block/piston/PistonBaseBlock/m_60177_ (Lnet/minecraft/world/level/SignalGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Direction;)Z net/minecraft/world/level/block/piston/PistonBaseBlock/getNeighborSignal (Lnet/minecraft/world/level/SignalGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Direction;)Z +MD: net/minecraft/world/level/block/piston/PistonBaseBlock/m_60181_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Direction;Z)Z net/minecraft/world/level/block/piston/PistonBaseBlock/moveBlocks (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Direction;Z)Z +MD: net/minecraft/world/level/block/piston/PistonBaseBlock/m_60204_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Direction;ZLnet/minecraft/core/Direction;)Z net/minecraft/world/level/block/piston/PistonBaseBlock/isPushable (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Direction;ZLnet/minecraft/core/Direction;)Z +MD: net/minecraft/world/level/block/piston/PistonBaseBlock/m_6402_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/item/ItemStack;)V net/minecraft/world/level/block/piston/PistonBaseBlock/setPlacedBy (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/entity/LivingEntity;Lnet/minecraft/world/item/ItemStack;)V +MD: net/minecraft/world/level/block/piston/PistonBaseBlock/m_6807_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Z)V net/minecraft/world/level/block/piston/PistonBaseBlock/onPlace (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Z)V +MD: net/minecraft/world/level/block/piston/PistonBaseBlock/m_6843_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/Rotation;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/piston/PistonBaseBlock/rotate (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/Rotation;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/piston/PistonBaseBlock/m_6861_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/Block;Lnet/minecraft/core/BlockPos;Z)V net/minecraft/world/level/block/piston/PistonBaseBlock/neighborChanged (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/Block;Lnet/minecraft/core/BlockPos;Z)V +MD: net/minecraft/world/level/block/piston/PistonBaseBlock/m_6943_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/Mirror;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/piston/PistonBaseBlock/mirror (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/Mirror;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/piston/PistonBaseBlock/m_7357_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/pathfinder/PathComputationType;)Z net/minecraft/world/level/block/piston/PistonBaseBlock/isPathfindable (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/pathfinder/PathComputationType;)Z +MD: net/minecraft/world/level/block/piston/PistonBaseBlock/m_7923_ (Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/world/level/block/piston/PistonBaseBlock/useShapeForLightOcclusion (Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/world/level/block/piston/PistonBaseBlock/m_7926_ (Lnet/minecraft/world/level/block/state/StateDefinition$Builder;)V net/minecraft/world/level/block/piston/PistonBaseBlock/createBlockStateDefinition (Lnet/minecraft/world/level/block/state/StateDefinition$Builder;)V +MD: net/minecraft/world/level/block/piston/PistonBaseBlock/m_8133_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;II)Z net/minecraft/world/level/block/piston/PistonBaseBlock/triggerEvent (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;II)Z +MD: net/minecraft/world/level/block/piston/PistonBaseBlock$1/ ()V net/minecraft/world/level/block/piston/PistonBaseBlock$1/ ()V +MD: net/minecraft/world/level/block/piston/PistonHeadBlock/ ()V net/minecraft/world/level/block/piston/PistonHeadBlock/ ()V +MD: net/minecraft/world/level/block/piston/PistonHeadBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V net/minecraft/world/level/block/piston/PistonHeadBlock/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V +MD: net/minecraft/world/level/block/piston/PistonHeadBlock/m_5707_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/entity/player/Player;)V net/minecraft/world/level/block/piston/PistonHeadBlock/playerWillDestroy (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/entity/player/Player;)V +MD: net/minecraft/world/level/block/piston/PistonHeadBlock/m_5940_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; net/minecraft/world/level/block/piston/PistonHeadBlock/getShape (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; +MD: net/minecraft/world/level/block/piston/PistonHeadBlock/m_60297_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/world/level/block/piston/PistonHeadBlock/isFittingBase (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/world/level/block/piston/PistonHeadBlock/m_60309_ (Lnet/minecraft/core/Direction;Z)Lnet/minecraft/world/phys/shapes/VoxelShape; net/minecraft/world/level/block/piston/PistonHeadBlock/calculateShape (Lnet/minecraft/core/Direction;Z)Lnet/minecraft/world/phys/shapes/VoxelShape; +MD: net/minecraft/world/level/block/piston/PistonHeadBlock/m_60312_ (Z)[Lnet/minecraft/world/phys/shapes/VoxelShape; net/minecraft/world/level/block/piston/PistonHeadBlock/makeShapes (Z)[Lnet/minecraft/world/phys/shapes/VoxelShape; +MD: net/minecraft/world/level/block/piston/PistonHeadBlock/m_60314_ (ZLnet/minecraft/core/Direction;)Lnet/minecraft/world/phys/shapes/VoxelShape; net/minecraft/world/level/block/piston/PistonHeadBlock/lambda$makeShapes$0 (ZLnet/minecraft/core/Direction;)Lnet/minecraft/world/phys/shapes/VoxelShape; +MD: net/minecraft/world/level/block/piston/PistonHeadBlock/m_60317_ (I)[Lnet/minecraft/world/phys/shapes/VoxelShape; net/minecraft/world/level/block/piston/PistonHeadBlock/lambda$makeShapes$1 (I)[Lnet/minecraft/world/phys/shapes/VoxelShape; +MD: net/minecraft/world/level/block/piston/PistonHeadBlock/m_6810_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Z)V net/minecraft/world/level/block/piston/PistonHeadBlock/onRemove (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Z)V +MD: net/minecraft/world/level/block/piston/PistonHeadBlock/m_6843_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/Rotation;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/piston/PistonHeadBlock/rotate (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/Rotation;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/piston/PistonHeadBlock/m_6861_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/Block;Lnet/minecraft/core/BlockPos;Z)V net/minecraft/world/level/block/piston/PistonHeadBlock/neighborChanged (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/Block;Lnet/minecraft/core/BlockPos;Z)V +MD: net/minecraft/world/level/block/piston/PistonHeadBlock/m_6943_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/Mirror;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/piston/PistonHeadBlock/mirror (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/Mirror;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/piston/PistonHeadBlock/m_7357_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/pathfinder/PathComputationType;)Z net/minecraft/world/level/block/piston/PistonHeadBlock/isPathfindable (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/pathfinder/PathComputationType;)Z +MD: net/minecraft/world/level/block/piston/PistonHeadBlock/m_7397_ (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/item/ItemStack; net/minecraft/world/level/block/piston/PistonHeadBlock/getCloneItemStack (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/level/block/piston/PistonHeadBlock/m_7417_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/piston/PistonHeadBlock/updateShape (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/piston/PistonHeadBlock/m_7898_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/level/block/piston/PistonHeadBlock/canSurvive (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/level/block/piston/PistonHeadBlock/m_7923_ (Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/world/level/block/piston/PistonHeadBlock/useShapeForLightOcclusion (Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/world/level/block/piston/PistonHeadBlock/m_7926_ (Lnet/minecraft/world/level/block/state/StateDefinition$Builder;)V net/minecraft/world/level/block/piston/PistonHeadBlock/createBlockStateDefinition (Lnet/minecraft/world/level/block/state/StateDefinition$Builder;)V +MD: net/minecraft/world/level/block/piston/PistonHeadBlock$1/ ()V net/minecraft/world/level/block/piston/PistonHeadBlock$1/ ()V +MD: net/minecraft/world/level/block/piston/PistonMath/ ()V net/minecraft/world/level/block/piston/PistonMath/ ()V +MD: net/minecraft/world/level/block/piston/PistonMath/m_60328_ (Lnet/minecraft/world/phys/AABB;Lnet/minecraft/core/Direction;D)Lnet/minecraft/world/phys/AABB; net/minecraft/world/level/block/piston/PistonMath/getMovementArea (Lnet/minecraft/world/phys/AABB;Lnet/minecraft/core/Direction;D)Lnet/minecraft/world/phys/AABB; +MD: net/minecraft/world/level/block/piston/PistonMath$1/ ()V net/minecraft/world/level/block/piston/PistonMath$1/ ()V +MD: net/minecraft/world/level/block/piston/PistonMovingBlockEntity/ ()V net/minecraft/world/level/block/piston/PistonMovingBlockEntity/ ()V +MD: net/minecraft/world/level/block/piston/PistonMovingBlockEntity/ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/Direction;ZZ)V net/minecraft/world/level/block/piston/PistonMovingBlockEntity/ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/Direction;ZZ)V +MD: net/minecraft/world/level/block/piston/PistonMovingBlockEntity/ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V net/minecraft/world/level/block/piston/PistonMovingBlockEntity/ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V +MD: net/minecraft/world/level/block/piston/PistonMovingBlockEntity/m_142339_ (Lnet/minecraft/world/level/Level;)V net/minecraft/world/level/block/piston/PistonMovingBlockEntity/setLevel (Lnet/minecraft/world/level/Level;)V +MD: net/minecraft/world/level/block/piston/PistonMovingBlockEntity/m_142466_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/level/block/piston/PistonMovingBlockEntity/load (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/level/block/piston/PistonMovingBlockEntity/m_155910_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;FLnet/minecraft/world/level/block/piston/PistonMovingBlockEntity;)V net/minecraft/world/level/block/piston/PistonMovingBlockEntity/moveCollidedEntities (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;FLnet/minecraft/world/level/block/piston/PistonMovingBlockEntity;)V +MD: net/minecraft/world/level/block/piston/PistonMovingBlockEntity/m_155915_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/piston/PistonMovingBlockEntity;)V net/minecraft/world/level/block/piston/PistonMovingBlockEntity/tick (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/piston/PistonMovingBlockEntity;)V +MD: net/minecraft/world/level/block/piston/PistonMovingBlockEntity/m_155920_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/Entity;Lnet/minecraft/core/Direction;D)V net/minecraft/world/level/block/piston/PistonMovingBlockEntity/fixEntityWithinPistonBase (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/Entity;Lnet/minecraft/core/Direction;D)V +MD: net/minecraft/world/level/block/piston/PistonMovingBlockEntity/m_155925_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/AABB;Lnet/minecraft/world/level/block/piston/PistonMovingBlockEntity;)Lnet/minecraft/world/phys/AABB; net/minecraft/world/level/block/piston/PistonMovingBlockEntity/moveByPositionAndProgress (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/AABB;Lnet/minecraft/world/level/block/piston/PistonMovingBlockEntity;)Lnet/minecraft/world/phys/AABB; +MD: net/minecraft/world/level/block/piston/PistonMovingBlockEntity/m_155931_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;FLnet/minecraft/world/level/block/piston/PistonMovingBlockEntity;)V net/minecraft/world/level/block/piston/PistonMovingBlockEntity/moveStuckEntities (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;FLnet/minecraft/world/level/block/piston/PistonMovingBlockEntity;)V +MD: net/minecraft/world/level/block/piston/PistonMovingBlockEntity/m_183515_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/level/block/piston/PistonMovingBlockEntity/saveAdditional (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/level/block/piston/PistonMovingBlockEntity/m_287130_ (Lnet/minecraft/world/phys/AABB;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/Entity;)Z net/minecraft/world/level/block/piston/PistonMovingBlockEntity/lambda$moveStuckEntities$1 (Lnet/minecraft/world/phys/AABB;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/Entity;)Z +MD: net/minecraft/world/level/block/piston/PistonMovingBlockEntity/m_287216_ (Lnet/minecraft/world/phys/AABB;Lnet/minecraft/world/entity/Entity;Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/level/block/piston/PistonMovingBlockEntity/matchesStickyCritera (Lnet/minecraft/world/phys/AABB;Lnet/minecraft/world/entity/Entity;Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/level/block/piston/PistonMovingBlockEntity/m_5995_ ()Lnet/minecraft/nbt/CompoundTag; net/minecraft/world/level/block/piston/PistonMovingBlockEntity/getUpdateTag ()Lnet/minecraft/nbt/CompoundTag; +MD: net/minecraft/world/level/block/piston/PistonMovingBlockEntity/m_60350_ (F)F net/minecraft/world/level/block/piston/PistonMovingBlockEntity/getProgress (F)F +MD: net/minecraft/world/level/block/piston/PistonMovingBlockEntity/m_60356_ (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/phys/shapes/VoxelShape; net/minecraft/world/level/block/piston/PistonMovingBlockEntity/getCollisionShape (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/phys/shapes/VoxelShape; +MD: net/minecraft/world/level/block/piston/PistonMovingBlockEntity/m_60367_ (Lnet/minecraft/world/phys/AABB;Lnet/minecraft/core/Direction;Lnet/minecraft/world/phys/AABB;)D net/minecraft/world/level/block/piston/PistonMovingBlockEntity/getMovement (Lnet/minecraft/world/phys/AABB;Lnet/minecraft/core/Direction;Lnet/minecraft/world/phys/AABB;)D +MD: net/minecraft/world/level/block/piston/PistonMovingBlockEntity/m_60371_ (Lnet/minecraft/core/Direction;Lnet/minecraft/world/entity/Entity;DLnet/minecraft/core/Direction;)V net/minecraft/world/level/block/piston/PistonMovingBlockEntity/moveEntityByPiston (Lnet/minecraft/core/Direction;Lnet/minecraft/world/entity/Entity;DLnet/minecraft/core/Direction;)V +MD: net/minecraft/world/level/block/piston/PistonMovingBlockEntity/m_60380_ (F)F net/minecraft/world/level/block/piston/PistonMovingBlockEntity/getXOff (F)F +MD: net/minecraft/world/level/block/piston/PistonMovingBlockEntity/m_60385_ (F)F net/minecraft/world/level/block/piston/PistonMovingBlockEntity/getYOff (F)F +MD: net/minecraft/world/level/block/piston/PistonMovingBlockEntity/m_60387_ ()Z net/minecraft/world/level/block/piston/PistonMovingBlockEntity/isExtending ()Z +MD: net/minecraft/world/level/block/piston/PistonMovingBlockEntity/m_60388_ (F)F net/minecraft/world/level/block/piston/PistonMovingBlockEntity/getZOff (F)F +MD: net/minecraft/world/level/block/piston/PistonMovingBlockEntity/m_60390_ (F)F net/minecraft/world/level/block/piston/PistonMovingBlockEntity/getExtendedProgress (F)F +MD: net/minecraft/world/level/block/piston/PistonMovingBlockEntity/m_60392_ ()Lnet/minecraft/core/Direction; net/minecraft/world/level/block/piston/PistonMovingBlockEntity/getDirection ()Lnet/minecraft/core/Direction; +MD: net/minecraft/world/level/block/piston/PistonMovingBlockEntity/m_60397_ ()Z net/minecraft/world/level/block/piston/PistonMovingBlockEntity/isSourcePiston ()Z +MD: net/minecraft/world/level/block/piston/PistonMovingBlockEntity/m_60399_ ()Lnet/minecraft/core/Direction; net/minecraft/world/level/block/piston/PistonMovingBlockEntity/getMovementDirection ()Lnet/minecraft/core/Direction; +MD: net/minecraft/world/level/block/piston/PistonMovingBlockEntity/m_60400_ ()Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/piston/PistonMovingBlockEntity/getMovedState ()Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/piston/PistonMovingBlockEntity/m_60401_ ()V net/minecraft/world/level/block/piston/PistonMovingBlockEntity/finalTick ()V +MD: net/minecraft/world/level/block/piston/PistonMovingBlockEntity/m_60402_ ()J net/minecraft/world/level/block/piston/PistonMovingBlockEntity/getLastTicked ()J +MD: net/minecraft/world/level/block/piston/PistonMovingBlockEntity/m_60403_ ()Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/piston/PistonMovingBlockEntity/getCollisionRelatedBlockState ()Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/piston/PistonMovingBlockEntity/m_60404_ ()Z net/minecraft/world/level/block/piston/PistonMovingBlockEntity/isStickyForEntities ()Z +MD: net/minecraft/world/level/block/piston/PistonMovingBlockEntity/m_60405_ ()Lnet/minecraft/core/Direction; net/minecraft/world/level/block/piston/PistonMovingBlockEntity/lambda$static$0 ()Lnet/minecraft/core/Direction; +MD: net/minecraft/world/level/block/piston/PistonMovingBlockEntity$1/ ()V net/minecraft/world/level/block/piston/PistonMovingBlockEntity$1/ ()V +MD: net/minecraft/world/level/block/piston/PistonStructureResolver/ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Direction;Z)V net/minecraft/world/level/block/piston/PistonStructureResolver/ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Direction;Z)V +MD: net/minecraft/world/level/block/piston/PistonStructureResolver/m_155937_ (Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/world/level/block/piston/PistonStructureResolver/isSticky (Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/world/level/block/piston/PistonStructureResolver/m_155939_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/world/level/block/piston/PistonStructureResolver/canStickToEachOther (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/world/level/block/piston/PistonStructureResolver/m_155942_ ()Lnet/minecraft/core/Direction; net/minecraft/world/level/block/piston/PistonStructureResolver/getPushDirection ()Lnet/minecraft/core/Direction; +MD: net/minecraft/world/level/block/piston/PistonStructureResolver/m_60422_ ()Z net/minecraft/world/level/block/piston/PistonStructureResolver/resolve ()Z +MD: net/minecraft/world/level/block/piston/PistonStructureResolver/m_60423_ (II)V net/minecraft/world/level/block/piston/PistonStructureResolver/reorderListAtCollision (II)V +MD: net/minecraft/world/level/block/piston/PistonStructureResolver/m_60431_ (Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/level/block/piston/PistonStructureResolver/addBranchingBlocks (Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/level/block/piston/PistonStructureResolver/m_60433_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Direction;)Z net/minecraft/world/level/block/piston/PistonStructureResolver/addBlockLine (Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Direction;)Z +MD: net/minecraft/world/level/block/piston/PistonStructureResolver/m_60436_ ()Ljava/util/List; net/minecraft/world/level/block/piston/PistonStructureResolver/getToPush ()Ljava/util/List; +MD: net/minecraft/world/level/block/piston/PistonStructureResolver/m_60437_ ()Ljava/util/List; net/minecraft/world/level/block/piston/PistonStructureResolver/getToDestroy ()Ljava/util/List; +MD: net/minecraft/world/level/block/state/BlockBehaviour/ ()V net/minecraft/world/level/block/state/BlockBehaviour/ ()V +MD: net/minecraft/world/level/block/state/BlockBehaviour/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V net/minecraft/world/level/block/state/BlockBehaviour/ (Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties;)V +MD: net/minecraft/world/level/block/state/BlockBehaviour/m_142627_ ()F net/minecraft/world/level/block/state/BlockBehaviour/getMaxVerticalOffset ()F +MD: net/minecraft/world/level/block/state/BlockBehaviour/m_142740_ ()F net/minecraft/world/level/block/state/BlockBehaviour/getMaxHorizontalOffset ()F +MD: net/minecraft/world/level/block/state/BlockBehaviour/m_155943_ ()F net/minecraft/world/level/block/state/BlockBehaviour/defaultDestroyTime ()F +MD: net/minecraft/world/level/block/state/BlockBehaviour/m_180643_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/level/block/state/BlockBehaviour/isCollisionShapeFullBlock (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/level/block/state/BlockBehaviour/m_213646_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/item/ItemStack;Z)V net/minecraft/world/level/block/state/BlockBehaviour/spawnAfterBreak (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/item/ItemStack;Z)V +MD: net/minecraft/world/level/block/state/BlockBehaviour/m_213897_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)V net/minecraft/world/level/block/state/BlockBehaviour/tick (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)V +MD: net/minecraft/world/level/block/state/BlockBehaviour/m_213898_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)V net/minecraft/world/level/block/state/BlockBehaviour/randomTick (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)V +MD: net/minecraft/world/level/block/state/BlockBehaviour/m_222958_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/level/block/state/BlockBehaviour/isOcclusionShapeFullBlock (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/level/block/state/BlockBehaviour/m_245183_ ()Lnet/minecraft/world/flag/FeatureFlagSet; net/minecraft/world/level/block/state/BlockBehaviour/requiredFeatures ()Lnet/minecraft/world/flag/FeatureFlagSet; +MD: net/minecraft/world/level/block/state/BlockBehaviour/m_284356_ ()Lnet/minecraft/world/level/material/MapColor; net/minecraft/world/level/block/state/BlockBehaviour/defaultMapColor ()Lnet/minecraft/world/level/material/MapColor; +MD: net/minecraft/world/level/block/state/BlockBehaviour/m_49635_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/storage/loot/LootParams$Builder;)Ljava/util/List; net/minecraft/world/level/block/state/BlockBehaviour/getDrops (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/storage/loot/LootParams$Builder;)Ljava/util/List; +MD: net/minecraft/world/level/block/state/BlockBehaviour/m_5456_ ()Lnet/minecraft/world/item/Item; net/minecraft/world/level/block/state/BlockBehaviour/asItem ()Lnet/minecraft/world/item/Item; +MD: net/minecraft/world/level/block/state/BlockBehaviour/m_5581_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/phys/BlockHitResult;Lnet/minecraft/world/entity/projectile/Projectile;)V net/minecraft/world/level/block/state/BlockBehaviour/onProjectileHit (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/phys/BlockHitResult;Lnet/minecraft/world/entity/projectile/Projectile;)V +MD: net/minecraft/world/level/block/state/BlockBehaviour/m_5880_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)F net/minecraft/world/level/block/state/BlockBehaviour/getDestroyProgress (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)F +MD: net/minecraft/world/level/block/state/BlockBehaviour/m_5888_ (Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/material/FluidState; net/minecraft/world/level/block/state/BlockBehaviour/getFluidState (Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/material/FluidState; +MD: net/minecraft/world/level/block/state/BlockBehaviour/m_5909_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; net/minecraft/world/level/block/state/BlockBehaviour/getVisualShape (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; +MD: net/minecraft/world/level/block/state/BlockBehaviour/m_5939_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; net/minecraft/world/level/block/state/BlockBehaviour/getCollisionShape (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; +MD: net/minecraft/world/level/block/state/BlockBehaviour/m_5940_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; net/minecraft/world/level/block/state/BlockBehaviour/getShape (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; +MD: net/minecraft/world/level/block/state/BlockBehaviour/m_5946_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/material/Fluid;)Z net/minecraft/world/level/block/state/BlockBehaviour/canBeReplaced (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/material/Fluid;)Z +MD: net/minecraft/world/level/block/state/BlockBehaviour/m_60589_ ()Lnet/minecraft/resources/ResourceLocation; net/minecraft/world/level/block/state/BlockBehaviour/getLootTable ()Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/world/level/block/state/BlockBehaviour/m_6079_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/phys/shapes/VoxelShape; net/minecraft/world/level/block/state/BlockBehaviour/getInteractionShape (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/phys/shapes/VoxelShape; +MD: net/minecraft/world/level/block/state/BlockBehaviour/m_6104_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/Direction;)Z net/minecraft/world/level/block/state/BlockBehaviour/skipRendering (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/Direction;)Z +MD: net/minecraft/world/level/block/state/BlockBehaviour/m_6227_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;Lnet/minecraft/world/phys/BlockHitResult;)Lnet/minecraft/world/InteractionResult; net/minecraft/world/level/block/state/BlockBehaviour/use (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;Lnet/minecraft/world/phys/BlockHitResult;)Lnet/minecraft/world/InteractionResult; +MD: net/minecraft/world/level/block/state/BlockBehaviour/m_6256_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/player/Player;)V net/minecraft/world/level/block/state/BlockBehaviour/attack (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/player/Player;)V +MD: net/minecraft/world/level/block/state/BlockBehaviour/m_6376_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Direction;)I net/minecraft/world/level/block/state/BlockBehaviour/getDirectSignal (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Direction;)I +MD: net/minecraft/world/level/block/state/BlockBehaviour/m_6378_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Direction;)I net/minecraft/world/level/block/state/BlockBehaviour/getSignal (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Direction;)I +MD: net/minecraft/world/level/block/state/BlockBehaviour/m_6782_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;)I net/minecraft/world/level/block/state/BlockBehaviour/getAnalogOutputSignal (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;)I +MD: net/minecraft/world/level/block/state/BlockBehaviour/m_6807_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Z)V net/minecraft/world/level/block/state/BlockBehaviour/onPlace (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Z)V +MD: net/minecraft/world/level/block/state/BlockBehaviour/m_6810_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Z)V net/minecraft/world/level/block/state/BlockBehaviour/onRemove (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Z)V +MD: net/minecraft/world/level/block/state/BlockBehaviour/m_6843_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/Rotation;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/state/BlockBehaviour/rotate (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/Rotation;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/state/BlockBehaviour/m_6861_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/Block;Lnet/minecraft/core/BlockPos;Z)V net/minecraft/world/level/block/state/BlockBehaviour/neighborChanged (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/Block;Lnet/minecraft/core/BlockPos;Z)V +MD: net/minecraft/world/level/block/state/BlockBehaviour/m_6864_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/item/context/BlockPlaceContext;)Z net/minecraft/world/level/block/state/BlockBehaviour/canBeReplaced (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/item/context/BlockPlaceContext;)Z +MD: net/minecraft/world/level/block/state/BlockBehaviour/m_6943_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/Mirror;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/state/BlockBehaviour/mirror (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/Mirror;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/state/BlockBehaviour/m_7246_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/MenuProvider; net/minecraft/world/level/block/state/BlockBehaviour/getMenuProvider (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/MenuProvider; +MD: net/minecraft/world/level/block/state/BlockBehaviour/m_7278_ (Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/world/level/block/state/BlockBehaviour/hasAnalogOutputSignal (Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/world/level/block/state/BlockBehaviour/m_7357_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/pathfinder/PathComputationType;)Z net/minecraft/world/level/block/state/BlockBehaviour/isPathfindable (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/pathfinder/PathComputationType;)Z +MD: net/minecraft/world/level/block/state/BlockBehaviour/m_7374_ ()Lnet/minecraft/world/level/block/Block; net/minecraft/world/level/block/state/BlockBehaviour/asBlock ()Lnet/minecraft/world/level/block/Block; +MD: net/minecraft/world/level/block/state/BlockBehaviour/m_7417_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/state/BlockBehaviour/updateShape (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/state/BlockBehaviour/m_7514_ (Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/block/RenderShape; net/minecraft/world/level/block/state/BlockBehaviour/getRenderShape (Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/block/RenderShape; +MD: net/minecraft/world/level/block/state/BlockBehaviour/m_7742_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;II)V net/minecraft/world/level/block/state/BlockBehaviour/updateIndirectNeighbourShapes (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;II)V +MD: net/minecraft/world/level/block/state/BlockBehaviour/m_7749_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)F net/minecraft/world/level/block/state/BlockBehaviour/getShadeBrightness (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)F +MD: net/minecraft/world/level/block/state/BlockBehaviour/m_7753_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)I net/minecraft/world/level/block/state/BlockBehaviour/getLightBlock (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)I +MD: net/minecraft/world/level/block/state/BlockBehaviour/m_7799_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/BlockPos;)J net/minecraft/world/level/block/state/BlockBehaviour/getSeed (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/BlockPos;)J +MD: net/minecraft/world/level/block/state/BlockBehaviour/m_7892_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/Entity;)V net/minecraft/world/level/block/state/BlockBehaviour/entityInside (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/Entity;)V +MD: net/minecraft/world/level/block/state/BlockBehaviour/m_7898_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/level/block/state/BlockBehaviour/canSurvive (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/level/block/state/BlockBehaviour/m_7899_ (Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/world/level/block/state/BlockBehaviour/isSignalSource (Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/world/level/block/state/BlockBehaviour/m_7923_ (Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/world/level/block/state/BlockBehaviour/useShapeForLightOcclusion (Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/world/level/block/state/BlockBehaviour/m_7947_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/phys/shapes/VoxelShape; net/minecraft/world/level/block/state/BlockBehaviour/getBlockSupportShape (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/phys/shapes/VoxelShape; +MD: net/minecraft/world/level/block/state/BlockBehaviour/m_7952_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/phys/shapes/VoxelShape; net/minecraft/world/level/block/state/BlockBehaviour/getOcclusionShape (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/phys/shapes/VoxelShape; +MD: net/minecraft/world/level/block/state/BlockBehaviour/m_8133_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;II)Z net/minecraft/world/level/block/state/BlockBehaviour/triggerEvent (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;II)Z +MD: net/minecraft/world/level/block/state/BlockBehaviour$1/ ()V net/minecraft/world/level/block/state/BlockBehaviour$1/ ()V +MD: net/minecraft/world/level/block/state/BlockBehaviour$BlockStateBase/ (Lnet/minecraft/world/level/block/Block;Lcom/google/common/collect/ImmutableMap;Lcom/mojang/serialization/MapCodec;)V net/minecraft/world/level/block/state/BlockBehaviour$BlockStateBase/ (Lnet/minecraft/world/level/block/Block;Lcom/google/common/collect/ImmutableMap;Lcom/mojang/serialization/MapCodec;)V +MD: net/minecraft/world/level/block/state/BlockBehaviour$BlockStateBase/m_155944_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/level/block/entity/BlockEntityType;)Lnet/minecraft/world/level/block/entity/BlockEntityTicker; net/minecraft/world/level/block/state/BlockBehaviour$BlockStateBase/getTicker (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/level/block/entity/BlockEntityType;)Lnet/minecraft/world/level/block/entity/BlockEntityTicker; +MD: net/minecraft/world/level/block/state/BlockBehaviour$BlockStateBase/m_155947_ ()Z net/minecraft/world/level/block/state/BlockBehaviour$BlockStateBase/hasBlockEntity ()Z +MD: net/minecraft/world/level/block/state/BlockBehaviour$BlockStateBase/m_204336_ (Lnet/minecraft/tags/TagKey;)Z net/minecraft/world/level/block/state/BlockBehaviour$BlockStateBase/is (Lnet/minecraft/tags/TagKey;)Z +MD: net/minecraft/world/level/block/state/BlockBehaviour$BlockStateBase/m_204338_ (Lnet/minecraft/tags/TagKey;Ljava/util/function/Predicate;)Z net/minecraft/world/level/block/state/BlockBehaviour$BlockStateBase/is (Lnet/minecraft/tags/TagKey;Ljava/util/function/Predicate;)Z +MD: net/minecraft/world/level/block/state/BlockBehaviour$BlockStateBase/m_204341_ (Lnet/minecraft/core/HolderSet;)Z net/minecraft/world/level/block/state/BlockBehaviour$BlockStateBase/is (Lnet/minecraft/core/HolderSet;)Z +MD: net/minecraft/world/level/block/state/BlockBehaviour$BlockStateBase/m_204343_ ()Ljava/util/stream/Stream; net/minecraft/world/level/block/state/BlockBehaviour$BlockStateBase/getTags ()Ljava/util/stream/Stream; +MD: net/minecraft/world/level/block/state/BlockBehaviour$BlockStateBase/m_222963_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)V net/minecraft/world/level/block/state/BlockBehaviour$BlockStateBase/tick (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)V +MD: net/minecraft/world/level/block/state/BlockBehaviour$BlockStateBase/m_222967_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/item/ItemStack;Z)V net/minecraft/world/level/block/state/BlockBehaviour$BlockStateBase/spawnAfterBreak (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/item/ItemStack;Z)V +MD: net/minecraft/world/level/block/state/BlockBehaviour$BlockStateBase/m_222972_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)V net/minecraft/world/level/block/state/BlockBehaviour$BlockStateBase/randomTick (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)V +MD: net/minecraft/world/level/block/state/BlockBehaviour$BlockStateBase/m_222976_ ()Lnet/minecraft/core/Holder; net/minecraft/world/level/block/state/BlockBehaviour$BlockStateBase/getBlockHolder ()Lnet/minecraft/core/Holder; +MD: net/minecraft/world/level/block/state/BlockBehaviour$BlockStateBase/m_245147_ ()Z net/minecraft/world/level/block/state/BlockBehaviour$BlockStateBase/shouldSpawnParticlesOnBreak ()Z +MD: net/minecraft/world/level/block/state/BlockBehaviour$BlockStateBase/m_247087_ ()Z net/minecraft/world/level/block/state/BlockBehaviour$BlockStateBase/canBeReplaced ()Z +MD: net/minecraft/world/level/block/state/BlockBehaviour$BlockStateBase/m_271730_ ()Z net/minecraft/world/level/block/state/BlockBehaviour$BlockStateBase/hasOffsetFunction ()Z +MD: net/minecraft/world/level/block/state/BlockBehaviour$BlockStateBase/m_272178_ (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockBehaviour$OffsetFunction;)Lnet/minecraft/world/phys/Vec3; net/minecraft/world/level/block/state/BlockBehaviour$BlockStateBase/lambda$getOffset$0 (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockBehaviour$OffsetFunction;)Lnet/minecraft/world/phys/Vec3; +MD: net/minecraft/world/level/block/state/BlockBehaviour$BlockStateBase/m_278200_ ()Z net/minecraft/world/level/block/state/BlockBehaviour$BlockStateBase/ignitedByLava ()Z +MD: net/minecraft/world/level/block/state/BlockBehaviour$BlockStateBase/m_278721_ ()Z net/minecraft/world/level/block/state/BlockBehaviour$BlockStateBase/liquid ()Z +MD: net/minecraft/world/level/block/state/BlockBehaviour$BlockStateBase/m_280210_ ()Z net/minecraft/world/level/block/state/BlockBehaviour$BlockStateBase/calculateSolid ()Z +MD: net/minecraft/world/level/block/state/BlockBehaviour$BlockStateBase/m_280296_ ()Z net/minecraft/world/level/block/state/BlockBehaviour$BlockStateBase/isSolid ()Z +MD: net/minecraft/world/level/block/state/BlockBehaviour$BlockStateBase/m_280555_ ()Z net/minecraft/world/level/block/state/BlockBehaviour$BlockStateBase/blocksMotion ()Z +MD: net/minecraft/world/level/block/state/BlockBehaviour$BlockStateBase/m_280603_ ()Lnet/minecraft/world/level/block/state/properties/NoteBlockInstrument; net/minecraft/world/level/block/state/BlockBehaviour$BlockStateBase/instrument ()Lnet/minecraft/world/level/block/state/properties/NoteBlockInstrument; +MD: net/minecraft/world/level/block/state/BlockBehaviour$BlockStateBase/m_284242_ (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/material/MapColor; net/minecraft/world/level/block/state/BlockBehaviour$BlockStateBase/getMapColor (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/material/MapColor; +MD: net/minecraft/world/level/block/state/BlockBehaviour$BlockStateBase/m_287290_ (Lnet/minecraft/world/level/storage/loot/LootParams$Builder;)Ljava/util/List; net/minecraft/world/level/block/state/BlockBehaviour$BlockStateBase/getDrops (Lnet/minecraft/world/level/storage/loot/LootParams$Builder;)Ljava/util/List; +MD: net/minecraft/world/level/block/state/BlockBehaviour$BlockStateBase/m_60611_ ()V net/minecraft/world/level/block/state/BlockBehaviour$BlockStateBase/initCache ()V +MD: net/minecraft/world/level/block/state/BlockBehaviour$BlockStateBase/m_60625_ (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)F net/minecraft/world/level/block/state/BlockBehaviour$BlockStateBase/getDestroyProgress (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)F +MD: net/minecraft/world/level/block/state/BlockBehaviour$BlockStateBase/m_60629_ (Lnet/minecraft/world/item/context/BlockPlaceContext;)Z net/minecraft/world/level/block/state/BlockBehaviour$BlockStateBase/canBeReplaced (Lnet/minecraft/world/item/context/BlockPlaceContext;)Z +MD: net/minecraft/world/level/block/state/BlockBehaviour$BlockStateBase/m_60631_ (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/level/block/state/BlockBehaviour$BlockStateBase/propagatesSkylightDown (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/level/block/state/BlockBehaviour$BlockStateBase/m_60634_ (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/Entity;)Z net/minecraft/world/level/block/state/BlockBehaviour$BlockStateBase/entityCanStandOn (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/Entity;)Z +MD: net/minecraft/world/level/block/state/BlockBehaviour$BlockStateBase/m_60638_ (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/Entity;Lnet/minecraft/core/Direction;)Z net/minecraft/world/level/block/state/BlockBehaviour$BlockStateBase/entityCanStandOnFace (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/Entity;Lnet/minecraft/core/Direction;)Z +MD: net/minecraft/world/level/block/state/BlockBehaviour$BlockStateBase/m_60643_ (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/EntityType;)Z net/minecraft/world/level/block/state/BlockBehaviour$BlockStateBase/isValidSpawn (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/EntityType;)Z +MD: net/minecraft/world/level/block/state/BlockBehaviour$BlockStateBase/m_60647_ (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/pathfinder/PathComputationType;)Z net/minecraft/world/level/block/state/BlockBehaviour$BlockStateBase/isPathfindable (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/pathfinder/PathComputationType;)Z +MD: net/minecraft/world/level/block/state/BlockBehaviour$BlockStateBase/m_60651_ (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; net/minecraft/world/level/block/state/BlockBehaviour$BlockStateBase/getShape (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; +MD: net/minecraft/world/level/block/state/BlockBehaviour$BlockStateBase/m_60655_ (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Direction;)Lnet/minecraft/world/phys/shapes/VoxelShape; net/minecraft/world/level/block/state/BlockBehaviour$BlockStateBase/getFaceOcclusionShape (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Direction;)Lnet/minecraft/world/phys/shapes/VoxelShape; +MD: net/minecraft/world/level/block/state/BlockBehaviour$BlockStateBase/m_60659_ (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/block/SupportType;)Z net/minecraft/world/level/block/state/BlockBehaviour$BlockStateBase/isFaceSturdy (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/block/SupportType;)Z +MD: net/minecraft/world/level/block/state/BlockBehaviour$BlockStateBase/m_60664_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;Lnet/minecraft/world/phys/BlockHitResult;)Lnet/minecraft/world/InteractionResult; net/minecraft/world/level/block/state/BlockBehaviour$BlockStateBase/use (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/InteractionHand;Lnet/minecraft/world/phys/BlockHitResult;)Lnet/minecraft/world/InteractionResult; +MD: net/minecraft/world/level/block/state/BlockBehaviour$BlockStateBase/m_60669_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/phys/BlockHitResult;Lnet/minecraft/world/entity/projectile/Projectile;)V net/minecraft/world/level/block/state/BlockBehaviour$BlockStateBase/onProjectileHit (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/phys/BlockHitResult;Lnet/minecraft/world/entity/projectile/Projectile;)V +MD: net/minecraft/world/level/block/state/BlockBehaviour$BlockStateBase/m_60674_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;)I net/minecraft/world/level/block/state/BlockBehaviour$BlockStateBase/getAnalogOutputSignal (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;)I +MD: net/minecraft/world/level/block/state/BlockBehaviour$BlockStateBase/m_60677_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;II)Z net/minecraft/world/level/block/state/BlockBehaviour$BlockStateBase/triggerEvent (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;II)Z +MD: net/minecraft/world/level/block/state/BlockBehaviour$BlockStateBase/m_60682_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/Entity;)V net/minecraft/world/level/block/state/BlockBehaviour$BlockStateBase/entityInside (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/Entity;)V +MD: net/minecraft/world/level/block/state/BlockBehaviour$BlockStateBase/m_60686_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/player/Player;)V net/minecraft/world/level/block/state/BlockBehaviour$BlockStateBase/attack (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/player/Player;)V +MD: net/minecraft/world/level/block/state/BlockBehaviour$BlockStateBase/m_60690_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/Block;Lnet/minecraft/core/BlockPos;Z)V net/minecraft/world/level/block/state/BlockBehaviour$BlockStateBase/neighborChanged (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/Block;Lnet/minecraft/core/BlockPos;Z)V +MD: net/minecraft/world/level/block/state/BlockBehaviour$BlockStateBase/m_60696_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Z)V net/minecraft/world/level/block/state/BlockBehaviour$BlockStateBase/onPlace (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Z)V +MD: net/minecraft/world/level/block/state/BlockBehaviour$BlockStateBase/m_60701_ (Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;I)V net/minecraft/world/level/block/state/BlockBehaviour$BlockStateBase/updateNeighbourShapes (Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;I)V +MD: net/minecraft/world/level/block/state/BlockBehaviour$BlockStateBase/m_60705_ (Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;II)V net/minecraft/world/level/block/state/BlockBehaviour$BlockStateBase/updateNeighbourShapes (Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;II)V +MD: net/minecraft/world/level/block/state/BlockBehaviour$BlockStateBase/m_60710_ (Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/level/block/state/BlockBehaviour$BlockStateBase/canSurvive (Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/level/block/state/BlockBehaviour$BlockStateBase/m_60713_ (Lnet/minecraft/world/level/block/Block;)Z net/minecraft/world/level/block/state/BlockBehaviour$BlockStateBase/is (Lnet/minecraft/world/level/block/Block;)Z +MD: net/minecraft/world/level/block/state/BlockBehaviour$BlockStateBase/m_60715_ (Lnet/minecraft/world/level/block/Mirror;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/state/BlockBehaviour$BlockStateBase/mirror (Lnet/minecraft/world/level/block/Mirror;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/state/BlockBehaviour$BlockStateBase/m_60717_ (Lnet/minecraft/world/level/block/Rotation;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/state/BlockBehaviour$BlockStateBase/rotate (Lnet/minecraft/world/level/block/Rotation;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/state/BlockBehaviour$BlockStateBase/m_60719_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/Direction;)Z net/minecraft/world/level/block/state/BlockBehaviour$BlockStateBase/skipRendering (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/Direction;)Z +MD: net/minecraft/world/level/block/state/BlockBehaviour$BlockStateBase/m_60722_ (Lnet/minecraft/world/level/material/Fluid;)Z net/minecraft/world/level/block/state/BlockBehaviour$BlockStateBase/canBeReplaced (Lnet/minecraft/world/level/material/Fluid;)Z +MD: net/minecraft/world/level/block/state/BlockBehaviour$BlockStateBase/m_60726_ (Lnet/minecraft/core/BlockPos;)J net/minecraft/world/level/block/state/BlockBehaviour$BlockStateBase/getSeed (Lnet/minecraft/core/BlockPos;)J +MD: net/minecraft/world/level/block/state/BlockBehaviour$BlockStateBase/m_60728_ (Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/state/BlockBehaviour$BlockStateBase/updateShape (Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/state/BlockBehaviour$BlockStateBase/m_60734_ ()Lnet/minecraft/world/level/block/Block; net/minecraft/world/level/block/state/BlockBehaviour$BlockStateBase/getBlock ()Lnet/minecraft/world/level/block/Block; +MD: net/minecraft/world/level/block/state/BlockBehaviour$BlockStateBase/m_60739_ (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)I net/minecraft/world/level/block/state/BlockBehaviour$BlockStateBase/getLightBlock (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)I +MD: net/minecraft/world/level/block/state/BlockBehaviour$BlockStateBase/m_60742_ (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; net/minecraft/world/level/block/state/BlockBehaviour$BlockStateBase/getCollisionShape (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; +MD: net/minecraft/world/level/block/state/BlockBehaviour$BlockStateBase/m_60746_ (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Direction;)I net/minecraft/world/level/block/state/BlockBehaviour$BlockStateBase/getSignal (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Direction;)I +MD: net/minecraft/world/level/block/state/BlockBehaviour$BlockStateBase/m_60750_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/MenuProvider; net/minecraft/world/level/block/state/BlockBehaviour$BlockStateBase/getMenuProvider (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/MenuProvider; +MD: net/minecraft/world/level/block/state/BlockBehaviour$BlockStateBase/m_60753_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Z)V net/minecraft/world/level/block/state/BlockBehaviour$BlockStateBase/onRemove (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Z)V +MD: net/minecraft/world/level/block/state/BlockBehaviour$BlockStateBase/m_60758_ (Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;I)V net/minecraft/world/level/block/state/BlockBehaviour$BlockStateBase/updateIndirectNeighbourShapes (Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;I)V +MD: net/minecraft/world/level/block/state/BlockBehaviour$BlockStateBase/m_60762_ (Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;II)V net/minecraft/world/level/block/state/BlockBehaviour$BlockStateBase/updateIndirectNeighbourShapes (Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;II)V +MD: net/minecraft/world/level/block/state/BlockBehaviour$BlockStateBase/m_60768_ (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/phys/shapes/VoxelShape; net/minecraft/world/level/block/state/BlockBehaviour$BlockStateBase/getOcclusionShape (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/phys/shapes/VoxelShape; +MD: net/minecraft/world/level/block/state/BlockBehaviour$BlockStateBase/m_60771_ (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; net/minecraft/world/level/block/state/BlockBehaviour$BlockStateBase/getVisualShape (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/phys/shapes/CollisionContext;)Lnet/minecraft/world/phys/shapes/VoxelShape; +MD: net/minecraft/world/level/block/state/BlockBehaviour$BlockStateBase/m_60775_ (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Direction;)I net/minecraft/world/level/block/state/BlockBehaviour$BlockStateBase/getDirectSignal (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Direction;)I +MD: net/minecraft/world/level/block/state/BlockBehaviour$BlockStateBase/m_60779_ ()Z net/minecraft/world/level/block/state/BlockBehaviour$BlockStateBase/hasLargeCollisionShape ()Z +MD: net/minecraft/world/level/block/state/BlockBehaviour$BlockStateBase/m_60783_ (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Direction;)Z net/minecraft/world/level/block/state/BlockBehaviour$BlockStateBase/isFaceSturdy (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Direction;)Z +MD: net/minecraft/world/level/block/state/BlockBehaviour$BlockStateBase/m_60787_ ()Z net/minecraft/world/level/block/state/BlockBehaviour$BlockStateBase/useShapeForLightOcclusion ()Z +MD: net/minecraft/world/level/block/state/BlockBehaviour$BlockStateBase/m_60788_ (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/level/block/state/BlockBehaviour$BlockStateBase/emissiveRendering (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/level/block/state/BlockBehaviour$BlockStateBase/m_60791_ ()I net/minecraft/world/level/block/state/BlockBehaviour$BlockStateBase/getLightEmission ()I +MD: net/minecraft/world/level/block/state/BlockBehaviour$BlockStateBase/m_60792_ (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)F net/minecraft/world/level/block/state/BlockBehaviour$BlockStateBase/getShadeBrightness (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)F +MD: net/minecraft/world/level/block/state/BlockBehaviour$BlockStateBase/m_60795_ ()Z net/minecraft/world/level/block/state/BlockBehaviour$BlockStateBase/isAir ()Z +MD: net/minecraft/world/level/block/state/BlockBehaviour$BlockStateBase/m_60796_ (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/level/block/state/BlockBehaviour$BlockStateBase/isRedstoneConductor (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/level/block/state/BlockBehaviour$BlockStateBase/m_60799_ ()Lnet/minecraft/world/level/block/RenderShape; net/minecraft/world/level/block/state/BlockBehaviour$BlockStateBase/getRenderShape ()Lnet/minecraft/world/level/block/RenderShape; +MD: net/minecraft/world/level/block/state/BlockBehaviour$BlockStateBase/m_60800_ (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)F net/minecraft/world/level/block/state/BlockBehaviour$BlockStateBase/getDestroySpeed (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)F +MD: net/minecraft/world/level/block/state/BlockBehaviour$BlockStateBase/m_60803_ ()Z net/minecraft/world/level/block/state/BlockBehaviour$BlockStateBase/isSignalSource ()Z +MD: net/minecraft/world/level/block/state/BlockBehaviour$BlockStateBase/m_60804_ (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/level/block/state/BlockBehaviour$BlockStateBase/isSolidRender (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/level/block/state/BlockBehaviour$BlockStateBase/m_60807_ ()Z net/minecraft/world/level/block/state/BlockBehaviour$BlockStateBase/hasAnalogOutputSignal ()Z +MD: net/minecraft/world/level/block/state/BlockBehaviour$BlockStateBase/m_60808_ (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/phys/shapes/VoxelShape; net/minecraft/world/level/block/state/BlockBehaviour$BlockStateBase/getShape (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/phys/shapes/VoxelShape; +MD: net/minecraft/world/level/block/state/BlockBehaviour$BlockStateBase/m_60811_ ()Lnet/minecraft/world/level/material/PushReaction; net/minecraft/world/level/block/state/BlockBehaviour$BlockStateBase/getPistonPushReaction ()Lnet/minecraft/world/level/material/PushReaction; +MD: net/minecraft/world/level/block/state/BlockBehaviour$BlockStateBase/m_60812_ (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/phys/shapes/VoxelShape; net/minecraft/world/level/block/state/BlockBehaviour$BlockStateBase/getCollisionShape (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/phys/shapes/VoxelShape; +MD: net/minecraft/world/level/block/state/BlockBehaviour$BlockStateBase/m_60815_ ()Z net/minecraft/world/level/block/state/BlockBehaviour$BlockStateBase/canOcclude ()Z +MD: net/minecraft/world/level/block/state/BlockBehaviour$BlockStateBase/m_60816_ (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/phys/shapes/VoxelShape; net/minecraft/world/level/block/state/BlockBehaviour$BlockStateBase/getBlockSupportShape (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/phys/shapes/VoxelShape; +MD: net/minecraft/world/level/block/state/BlockBehaviour$BlockStateBase/m_60819_ ()Lnet/minecraft/world/level/material/FluidState; net/minecraft/world/level/block/state/BlockBehaviour$BlockStateBase/getFluidState ()Lnet/minecraft/world/level/material/FluidState; +MD: net/minecraft/world/level/block/state/BlockBehaviour$BlockStateBase/m_60820_ (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/phys/shapes/VoxelShape; net/minecraft/world/level/block/state/BlockBehaviour$BlockStateBase/getInteractionShape (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/phys/shapes/VoxelShape; +MD: net/minecraft/world/level/block/state/BlockBehaviour$BlockStateBase/m_60823_ ()Z net/minecraft/world/level/block/state/BlockBehaviour$BlockStateBase/isRandomlyTicking ()Z +MD: net/minecraft/world/level/block/state/BlockBehaviour$BlockStateBase/m_60824_ (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/phys/Vec3; net/minecraft/world/level/block/state/BlockBehaviour$BlockStateBase/getOffset (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/phys/Vec3; +MD: net/minecraft/world/level/block/state/BlockBehaviour$BlockStateBase/m_60827_ ()Lnet/minecraft/world/level/block/SoundType; net/minecraft/world/level/block/state/BlockBehaviour$BlockStateBase/getSoundType ()Lnet/minecraft/world/level/block/SoundType; +MD: net/minecraft/world/level/block/state/BlockBehaviour$BlockStateBase/m_60828_ (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/level/block/state/BlockBehaviour$BlockStateBase/isSuffocating (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/level/block/state/BlockBehaviour$BlockStateBase/m_60831_ (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/level/block/state/BlockBehaviour$BlockStateBase/isViewBlocking (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/level/block/state/BlockBehaviour$BlockStateBase/m_60834_ ()Z net/minecraft/world/level/block/state/BlockBehaviour$BlockStateBase/requiresCorrectToolForDrops ()Z +MD: net/minecraft/world/level/block/state/BlockBehaviour$BlockStateBase/m_60835_ (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/level/block/state/BlockBehaviour$BlockStateBase/hasPostProcess (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/level/block/state/BlockBehaviour$BlockStateBase/m_60838_ (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/level/block/state/BlockBehaviour$BlockStateBase/isCollisionShapeFullBlock (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/level/block/state/BlockBehaviour$BlockStateBase/m_7160_ ()Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/state/BlockBehaviour$BlockStateBase/asState ()Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/state/BlockBehaviour$BlockStateBase$Cache/ ()V net/minecraft/world/level/block/state/BlockBehaviour$BlockStateBase$Cache/ ()V +MD: net/minecraft/world/level/block/state/BlockBehaviour$BlockStateBase$Cache/ (Lnet/minecraft/world/level/block/state/BlockState;)V net/minecraft/world/level/block/state/BlockBehaviour$BlockStateBase$Cache/ (Lnet/minecraft/world/level/block/state/BlockState;)V +MD: net/minecraft/world/level/block/state/BlockBehaviour$BlockStateBase$Cache/m_60859_ (Lnet/minecraft/core/Direction$Axis;)Z net/minecraft/world/level/block/state/BlockBehaviour$BlockStateBase$Cache/lambda$new$0 (Lnet/minecraft/core/Direction$Axis;)Z +MD: net/minecraft/world/level/block/state/BlockBehaviour$BlockStateBase$Cache/m_60861_ (Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/block/SupportType;)Z net/minecraft/world/level/block/state/BlockBehaviour$BlockStateBase$Cache/isFaceSturdy (Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/block/SupportType;)Z +MD: net/minecraft/world/level/block/state/BlockBehaviour$BlockStateBase$Cache/m_60866_ (Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/block/SupportType;)I net/minecraft/world/level/block/state/BlockBehaviour$BlockStateBase$Cache/getFaceSupportIndex (Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/block/SupportType;)I +MD: net/minecraft/world/level/block/state/BlockBehaviour$OffsetFunction/m_271794_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/phys/Vec3; net/minecraft/world/level/block/state/BlockBehaviour$OffsetFunction/evaluate (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/phys/Vec3; +MD: net/minecraft/world/level/block/state/BlockBehaviour$OffsetType/ ()V net/minecraft/world/level/block/state/BlockBehaviour$OffsetType/ ()V +MD: net/minecraft/world/level/block/state/BlockBehaviour$OffsetType/ (Ljava/lang/String;I)V net/minecraft/world/level/block/state/BlockBehaviour$OffsetType/ (Ljava/lang/String;I)V +MD: net/minecraft/world/level/block/state/BlockBehaviour$OffsetType/m_155948_ ()[Lnet/minecraft/world/level/block/state/BlockBehaviour$OffsetType; net/minecraft/world/level/block/state/BlockBehaviour$OffsetType/$values ()[Lnet/minecraft/world/level/block/state/BlockBehaviour$OffsetType; +MD: net/minecraft/world/level/block/state/BlockBehaviour$OffsetType/valueOf (Ljava/lang/String;)Lnet/minecraft/world/level/block/state/BlockBehaviour$OffsetType; net/minecraft/world/level/block/state/BlockBehaviour$OffsetType/valueOf (Ljava/lang/String;)Lnet/minecraft/world/level/block/state/BlockBehaviour$OffsetType; +MD: net/minecraft/world/level/block/state/BlockBehaviour$OffsetType/values ()[Lnet/minecraft/world/level/block/state/BlockBehaviour$OffsetType; net/minecraft/world/level/block/state/BlockBehaviour$OffsetType/values ()[Lnet/minecraft/world/level/block/state/BlockBehaviour$OffsetType; +MD: net/minecraft/world/level/block/state/BlockBehaviour$Properties/ ()V net/minecraft/world/level/block/state/BlockBehaviour$Properties/ ()V +MD: net/minecraft/world/level/block/state/BlockBehaviour$Properties/m_155954_ (F)Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties; net/minecraft/world/level/block/state/BlockBehaviour$Properties/destroyTime (F)Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties; +MD: net/minecraft/world/level/block/state/BlockBehaviour$Properties/m_155956_ (F)Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties; net/minecraft/world/level/block/state/BlockBehaviour$Properties/explosionResistance (F)Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties; +MD: net/minecraft/world/level/block/state/BlockBehaviour$Properties/m_222979_ (Lnet/minecraft/world/level/block/state/BlockBehaviour$OffsetType;)Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties; net/minecraft/world/level/block/state/BlockBehaviour$Properties/offsetType (Lnet/minecraft/world/level/block/state/BlockBehaviour$OffsetType;)Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties; +MD: net/minecraft/world/level/block/state/BlockBehaviour$Properties/m_222986_ (Lnet/minecraft/world/level/material/MapColor;Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/material/MapColor; net/minecraft/world/level/block/state/BlockBehaviour$Properties/lambda$mapColor$8 (Lnet/minecraft/world/level/material/MapColor;Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/material/MapColor; +MD: net/minecraft/world/level/block/state/BlockBehaviour$Properties/m_222994_ ()Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties; net/minecraft/world/level/block/state/BlockBehaviour$Properties/noLootTable ()Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties; +MD: net/minecraft/world/level/block/state/BlockBehaviour$Properties/m_246721_ ()Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties; net/minecraft/world/level/block/state/BlockBehaviour$Properties/noParticlesOnBreak ()Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties; +MD: net/minecraft/world/level/block/state/BlockBehaviour$Properties/m_246843_ ([Lnet/minecraft/world/flag/FeatureFlag;)Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties; net/minecraft/world/level/block/state/BlockBehaviour$Properties/requiredFeatures ([Lnet/minecraft/world/flag/FeatureFlag;)Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties; +MD: net/minecraft/world/level/block/state/BlockBehaviour$Properties/m_271674_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/phys/Vec3; net/minecraft/world/level/block/state/BlockBehaviour$Properties/lambda$offsetType$9 (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/phys/Vec3; +MD: net/minecraft/world/level/block/state/BlockBehaviour$Properties/m_271675_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/phys/Vec3; net/minecraft/world/level/block/state/BlockBehaviour$Properties/lambda$offsetType$10 (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/phys/Vec3; +MD: net/minecraft/world/level/block/state/BlockBehaviour$Properties/m_278166_ (Lnet/minecraft/world/level/material/PushReaction;)Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties; net/minecraft/world/level/block/state/BlockBehaviour$Properties/pushReaction (Lnet/minecraft/world/level/material/PushReaction;)Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties; +MD: net/minecraft/world/level/block/state/BlockBehaviour$Properties/m_278183_ ()Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties; net/minecraft/world/level/block/state/BlockBehaviour$Properties/ignitedByLava ()Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties; +MD: net/minecraft/world/level/block/state/BlockBehaviour$Properties/m_278788_ ()Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties; net/minecraft/world/level/block/state/BlockBehaviour$Properties/liquid ()Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties; +MD: net/minecraft/world/level/block/state/BlockBehaviour$Properties/m_280170_ ()Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties; net/minecraft/world/level/block/state/BlockBehaviour$Properties/replaceable ()Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties; +MD: net/minecraft/world/level/block/state/BlockBehaviour$Properties/m_280574_ ()Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties; net/minecraft/world/level/block/state/BlockBehaviour$Properties/forceSolidOff ()Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties; +MD: net/minecraft/world/level/block/state/BlockBehaviour$Properties/m_280606_ ()Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties; net/minecraft/world/level/block/state/BlockBehaviour$Properties/forceSolidOn ()Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties; +MD: net/minecraft/world/level/block/state/BlockBehaviour$Properties/m_280658_ (Lnet/minecraft/world/level/block/state/properties/NoteBlockInstrument;)Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties; net/minecraft/world/level/block/state/BlockBehaviour$Properties/instrument (Lnet/minecraft/world/level/block/state/properties/NoteBlockInstrument;)Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties; +MD: net/minecraft/world/level/block/state/BlockBehaviour$Properties/m_284106_ (Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/material/MapColor; net/minecraft/world/level/block/state/BlockBehaviour$Properties/lambda$new$0 (Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/material/MapColor; +MD: net/minecraft/world/level/block/state/BlockBehaviour$Properties/m_284107_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/level/block/state/BlockBehaviour$Properties/lambda$new$4 (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/level/block/state/BlockBehaviour$Properties/m_284108_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/level/block/state/BlockBehaviour$Properties/lambda$new$3 (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/level/block/state/BlockBehaviour$Properties/m_284109_ (Lnet/minecraft/world/item/DyeColor;Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/material/MapColor; net/minecraft/world/level/block/state/BlockBehaviour$Properties/lambda$mapColor$7 (Lnet/minecraft/world/item/DyeColor;Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/material/MapColor; +MD: net/minecraft/world/level/block/state/BlockBehaviour$Properties/m_284110_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/EntityType;)Z net/minecraft/world/level/block/state/BlockBehaviour$Properties/lambda$new$2 (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/EntityType;)Z +MD: net/minecraft/world/level/block/state/BlockBehaviour$Properties/m_284180_ (Lnet/minecraft/world/level/material/MapColor;)Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties; net/minecraft/world/level/block/state/BlockBehaviour$Properties/mapColor (Lnet/minecraft/world/level/material/MapColor;)Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties; +MD: net/minecraft/world/level/block/state/BlockBehaviour$Properties/m_284268_ (Lnet/minecraft/world/item/DyeColor;)Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties; net/minecraft/world/level/block/state/BlockBehaviour$Properties/mapColor (Lnet/minecraft/world/item/DyeColor;)Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties; +MD: net/minecraft/world/level/block/state/BlockBehaviour$Properties/m_284310_ ()Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties; net/minecraft/world/level/block/state/BlockBehaviour$Properties/of ()Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties; +MD: net/minecraft/world/level/block/state/BlockBehaviour$Properties/m_284495_ (Ljava/util/function/Function;)Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties; net/minecraft/world/level/block/state/BlockBehaviour$Properties/mapColor (Ljava/util/function/Function;)Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties; +MD: net/minecraft/world/level/block/state/BlockBehaviour$Properties/m_60910_ ()Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties; net/minecraft/world/level/block/state/BlockBehaviour$Properties/noCollission ()Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties; +MD: net/minecraft/world/level/block/state/BlockBehaviour$Properties/m_60911_ (F)Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties; net/minecraft/world/level/block/state/BlockBehaviour$Properties/friction (F)Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties; +MD: net/minecraft/world/level/block/state/BlockBehaviour$Properties/m_60913_ (FF)Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties; net/minecraft/world/level/block/state/BlockBehaviour$Properties/strength (FF)Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties; +MD: net/minecraft/world/level/block/state/BlockBehaviour$Properties/m_60916_ (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties; net/minecraft/world/level/block/state/BlockBehaviour$Properties/dropsLike (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties; +MD: net/minecraft/world/level/block/state/BlockBehaviour$Properties/m_60918_ (Lnet/minecraft/world/level/block/SoundType;)Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties; net/minecraft/world/level/block/state/BlockBehaviour$Properties/sound (Lnet/minecraft/world/level/block/SoundType;)Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties; +MD: net/minecraft/world/level/block/state/BlockBehaviour$Properties/m_60922_ (Lnet/minecraft/world/level/block/state/BlockBehaviour$StateArgumentPredicate;)Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties; net/minecraft/world/level/block/state/BlockBehaviour$Properties/isValidSpawn (Lnet/minecraft/world/level/block/state/BlockBehaviour$StateArgumentPredicate;)Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties; +MD: net/minecraft/world/level/block/state/BlockBehaviour$Properties/m_60924_ (Lnet/minecraft/world/level/block/state/BlockBehaviour$StatePredicate;)Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties; net/minecraft/world/level/block/state/BlockBehaviour$Properties/isRedstoneConductor (Lnet/minecraft/world/level/block/state/BlockBehaviour$StatePredicate;)Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties; +MD: net/minecraft/world/level/block/state/BlockBehaviour$Properties/m_60926_ (Lnet/minecraft/world/level/block/state/BlockBehaviour;)Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties; net/minecraft/world/level/block/state/BlockBehaviour$Properties/copy (Lnet/minecraft/world/level/block/state/BlockBehaviour;)Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties; +MD: net/minecraft/world/level/block/state/BlockBehaviour$Properties/m_60928_ (Lnet/minecraft/world/level/block/state/BlockState;)I net/minecraft/world/level/block/state/BlockBehaviour$Properties/lambda$new$1 (Lnet/minecraft/world/level/block/state/BlockState;)I +MD: net/minecraft/world/level/block/state/BlockBehaviour$Properties/m_60930_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/level/block/state/BlockBehaviour$Properties/lambda$new$6 (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/level/block/state/BlockBehaviour$Properties/m_60953_ (Ljava/util/function/ToIntFunction;)Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties; net/minecraft/world/level/block/state/BlockBehaviour$Properties/lightLevel (Ljava/util/function/ToIntFunction;)Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties; +MD: net/minecraft/world/level/block/state/BlockBehaviour$Properties/m_60955_ ()Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties; net/minecraft/world/level/block/state/BlockBehaviour$Properties/noOcclusion ()Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties; +MD: net/minecraft/world/level/block/state/BlockBehaviour$Properties/m_60956_ (F)Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties; net/minecraft/world/level/block/state/BlockBehaviour$Properties/speedFactor (F)Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties; +MD: net/minecraft/world/level/block/state/BlockBehaviour$Properties/m_60960_ (Lnet/minecraft/world/level/block/state/BlockBehaviour$StatePredicate;)Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties; net/minecraft/world/level/block/state/BlockBehaviour$Properties/isSuffocating (Lnet/minecraft/world/level/block/state/BlockBehaviour$StatePredicate;)Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties; +MD: net/minecraft/world/level/block/state/BlockBehaviour$Properties/m_60962_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/level/block/state/BlockBehaviour$Properties/lambda$new$5 (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/level/block/state/BlockBehaviour$Properties/m_60966_ ()Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties; net/minecraft/world/level/block/state/BlockBehaviour$Properties/instabreak ()Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties; +MD: net/minecraft/world/level/block/state/BlockBehaviour$Properties/m_60967_ (F)Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties; net/minecraft/world/level/block/state/BlockBehaviour$Properties/jumpFactor (F)Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties; +MD: net/minecraft/world/level/block/state/BlockBehaviour$Properties/m_60971_ (Lnet/minecraft/world/level/block/state/BlockBehaviour$StatePredicate;)Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties; net/minecraft/world/level/block/state/BlockBehaviour$Properties/isViewBlocking (Lnet/minecraft/world/level/block/state/BlockBehaviour$StatePredicate;)Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties; +MD: net/minecraft/world/level/block/state/BlockBehaviour$Properties/m_60977_ ()Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties; net/minecraft/world/level/block/state/BlockBehaviour$Properties/randomTicks ()Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties; +MD: net/minecraft/world/level/block/state/BlockBehaviour$Properties/m_60978_ (F)Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties; net/minecraft/world/level/block/state/BlockBehaviour$Properties/strength (F)Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties; +MD: net/minecraft/world/level/block/state/BlockBehaviour$Properties/m_60982_ (Lnet/minecraft/world/level/block/state/BlockBehaviour$StatePredicate;)Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties; net/minecraft/world/level/block/state/BlockBehaviour$Properties/hasPostProcess (Lnet/minecraft/world/level/block/state/BlockBehaviour$StatePredicate;)Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties; +MD: net/minecraft/world/level/block/state/BlockBehaviour$Properties/m_60988_ ()Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties; net/minecraft/world/level/block/state/BlockBehaviour$Properties/dynamicShape ()Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties; +MD: net/minecraft/world/level/block/state/BlockBehaviour$Properties/m_60991_ (Lnet/minecraft/world/level/block/state/BlockBehaviour$StatePredicate;)Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties; net/minecraft/world/level/block/state/BlockBehaviour$Properties/emissiveRendering (Lnet/minecraft/world/level/block/state/BlockBehaviour$StatePredicate;)Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties; +MD: net/minecraft/world/level/block/state/BlockBehaviour$Properties/m_60996_ ()Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties; net/minecraft/world/level/block/state/BlockBehaviour$Properties/air ()Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties; +MD: net/minecraft/world/level/block/state/BlockBehaviour$Properties/m_60999_ ()Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties; net/minecraft/world/level/block/state/BlockBehaviour$Properties/requiresCorrectToolForDrops ()Lnet/minecraft/world/level/block/state/BlockBehaviour$Properties; +MD: net/minecraft/world/level/block/state/BlockBehaviour$StateArgumentPredicate/m_61030_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Ljava/lang/Object;)Z net/minecraft/world/level/block/state/BlockBehaviour$StateArgumentPredicate/test (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Ljava/lang/Object;)Z +MD: net/minecraft/world/level/block/state/BlockBehaviour$StatePredicate/m_61035_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/level/block/state/BlockBehaviour$StatePredicate/test (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/level/block/state/BlockState/ ()V net/minecraft/world/level/block/state/BlockState/ ()V +MD: net/minecraft/world/level/block/state/BlockState/ (Lnet/minecraft/world/level/block/Block;Lcom/google/common/collect/ImmutableMap;Lcom/mojang/serialization/MapCodec;)V net/minecraft/world/level/block/state/BlockState/ (Lnet/minecraft/world/level/block/Block;Lcom/google/common/collect/ImmutableMap;Lcom/mojang/serialization/MapCodec;)V +MD: net/minecraft/world/level/block/state/BlockState/m_7160_ ()Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/state/BlockState/asState ()Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/state/StateDefinition/ ()V net/minecraft/world/level/block/state/StateDefinition/ ()V +MD: net/minecraft/world/level/block/state/StateDefinition/ (Ljava/util/function/Function;Ljava/lang/Object;Lnet/minecraft/world/level/block/state/StateDefinition$Factory;Ljava/util/Map;)V net/minecraft/world/level/block/state/StateDefinition/ (Ljava/util/function/Function;Ljava/lang/Object;Lnet/minecraft/world/level/block/state/StateDefinition$Factory;Ljava/util/Map;)V +MD: net/minecraft/world/level/block/state/StateDefinition/m_155958_ (Ljava/util/List;Lnet/minecraft/world/level/block/state/properties/Property;Ljava/lang/Comparable;)Ljava/util/List; net/minecraft/world/level/block/state/StateDefinition/lambda$new$1 (Ljava/util/List;Lnet/minecraft/world/level/block/state/properties/Property;Ljava/lang/Comparable;)Ljava/util/List; +MD: net/minecraft/world/level/block/state/StateDefinition/m_187531_ (Lnet/minecraft/world/level/block/state/properties/Property;Lnet/minecraft/world/level/block/state/StateHolder;)Lcom/mojang/datafixers/util/Pair; net/minecraft/world/level/block/state/StateDefinition/lambda$appendPropertyCodec$7 (Lnet/minecraft/world/level/block/state/properties/Property;Lnet/minecraft/world/level/block/state/StateHolder;)Lcom/mojang/datafixers/util/Pair; +MD: net/minecraft/world/level/block/state/StateDefinition/m_187534_ (Lnet/minecraft/world/level/block/state/properties/Property;Lcom/mojang/datafixers/util/Pair;)Lnet/minecraft/world/level/block/state/StateHolder; net/minecraft/world/level/block/state/StateDefinition/lambda$appendPropertyCodec$6 (Lnet/minecraft/world/level/block/state/properties/Property;Lcom/mojang/datafixers/util/Pair;)Lnet/minecraft/world/level/block/state/StateHolder; +MD: net/minecraft/world/level/block/state/StateDefinition/m_187537_ (Lnet/minecraft/world/level/block/state/properties/Property;Ljava/util/function/Supplier;)Lnet/minecraft/world/level/block/state/properties/Property$Value; net/minecraft/world/level/block/state/StateDefinition/lambda$appendPropertyCodec$5 (Lnet/minecraft/world/level/block/state/properties/Property;Ljava/util/function/Supplier;)Lnet/minecraft/world/level/block/state/properties/Property$Value; +MD: net/minecraft/world/level/block/state/StateDefinition/m_187540_ (Ljava/lang/String;)V net/minecraft/world/level/block/state/StateDefinition/lambda$appendPropertyCodec$4 (Ljava/lang/String;)V +MD: net/minecraft/world/level/block/state/StateDefinition/m_61056_ ()Lcom/google/common/collect/ImmutableList; net/minecraft/world/level/block/state/StateDefinition/getPossibleStates ()Lcom/google/common/collect/ImmutableList; +MD: net/minecraft/world/level/block/state/StateDefinition/m_61057_ (Lnet/minecraft/world/level/block/state/StateDefinition$Factory;Ljava/lang/Object;Lcom/mojang/serialization/MapCodec;Ljava/util/Map;Ljava/util/List;Ljava/util/List;)V net/minecraft/world/level/block/state/StateDefinition/lambda$new$3 (Lnet/minecraft/world/level/block/state/StateDefinition$Factory;Ljava/lang/Object;Lcom/mojang/serialization/MapCodec;Ljava/util/Map;Ljava/util/List;Ljava/util/List;)V +MD: net/minecraft/world/level/block/state/StateDefinition/m_61070_ (Lnet/minecraft/world/level/block/state/properties/Property;Ljava/util/List;)Ljava/util/stream/Stream; net/minecraft/world/level/block/state/StateDefinition/lambda$new$2 (Lnet/minecraft/world/level/block/state/properties/Property;Ljava/util/List;)Ljava/util/stream/Stream; +MD: net/minecraft/world/level/block/state/StateDefinition/m_61076_ (Lcom/mojang/serialization/MapCodec;Ljava/util/function/Supplier;Ljava/lang/String;Lnet/minecraft/world/level/block/state/properties/Property;)Lcom/mojang/serialization/MapCodec; net/minecraft/world/level/block/state/StateDefinition/appendPropertyCodec (Lcom/mojang/serialization/MapCodec;Ljava/util/function/Supplier;Ljava/lang/String;Lnet/minecraft/world/level/block/state/properties/Property;)Lcom/mojang/serialization/MapCodec; +MD: net/minecraft/world/level/block/state/StateDefinition/m_61081_ (Ljava/lang/String;)Lnet/minecraft/world/level/block/state/properties/Property; net/minecraft/world/level/block/state/StateDefinition/getProperty (Ljava/lang/String;)Lnet/minecraft/world/level/block/state/properties/Property; +MD: net/minecraft/world/level/block/state/StateDefinition/m_61087_ (Ljava/util/function/Function;Ljava/lang/Object;)Lnet/minecraft/world/level/block/state/StateHolder; net/minecraft/world/level/block/state/StateDefinition/lambda$new$0 (Ljava/util/function/Function;Ljava/lang/Object;)Lnet/minecraft/world/level/block/state/StateHolder; +MD: net/minecraft/world/level/block/state/StateDefinition/m_61090_ ()Lnet/minecraft/world/level/block/state/StateHolder; net/minecraft/world/level/block/state/StateDefinition/any ()Lnet/minecraft/world/level/block/state/StateHolder; +MD: net/minecraft/world/level/block/state/StateDefinition/m_61091_ ()Ljava/lang/Object; net/minecraft/world/level/block/state/StateDefinition/getOwner ()Ljava/lang/Object; +MD: net/minecraft/world/level/block/state/StateDefinition/m_61092_ ()Ljava/util/Collection; net/minecraft/world/level/block/state/StateDefinition/getProperties ()Ljava/util/Collection; +MD: net/minecraft/world/level/block/state/StateDefinition/toString ()Ljava/lang/String; net/minecraft/world/level/block/state/StateDefinition/toString ()Ljava/lang/String; +MD: net/minecraft/world/level/block/state/StateDefinition$Builder/ (Ljava/lang/Object;)V net/minecraft/world/level/block/state/StateDefinition$Builder/ (Ljava/lang/Object;)V +MD: net/minecraft/world/level/block/state/StateDefinition$Builder/m_61099_ (Lnet/minecraft/world/level/block/state/properties/Property;)V net/minecraft/world/level/block/state/StateDefinition$Builder/validateProperty (Lnet/minecraft/world/level/block/state/properties/Property;)V +MD: net/minecraft/world/level/block/state/StateDefinition$Builder/m_61101_ (Ljava/util/function/Function;Lnet/minecraft/world/level/block/state/StateDefinition$Factory;)Lnet/minecraft/world/level/block/state/StateDefinition; net/minecraft/world/level/block/state/StateDefinition$Builder/create (Ljava/util/function/Function;Lnet/minecraft/world/level/block/state/StateDefinition$Factory;)Lnet/minecraft/world/level/block/state/StateDefinition; +MD: net/minecraft/world/level/block/state/StateDefinition$Builder/m_61104_ ([Lnet/minecraft/world/level/block/state/properties/Property;)Lnet/minecraft/world/level/block/state/StateDefinition$Builder; net/minecraft/world/level/block/state/StateDefinition$Builder/add ([Lnet/minecraft/world/level/block/state/properties/Property;)Lnet/minecraft/world/level/block/state/StateDefinition$Builder; +MD: net/minecraft/world/level/block/state/StateDefinition$Factory/m_61106_ (Ljava/lang/Object;Lcom/google/common/collect/ImmutableMap;Lcom/mojang/serialization/MapCodec;)Ljava/lang/Object; net/minecraft/world/level/block/state/StateDefinition$Factory/create (Ljava/lang/Object;Lcom/google/common/collect/ImmutableMap;Lcom/mojang/serialization/MapCodec;)Ljava/lang/Object; +MD: net/minecraft/world/level/block/state/StateHolder/ ()V net/minecraft/world/level/block/state/StateHolder/ ()V +MD: net/minecraft/world/level/block/state/StateHolder/ (Ljava/lang/Object;Lcom/google/common/collect/ImmutableMap;Lcom/mojang/serialization/MapCodec;)V net/minecraft/world/level/block/state/StateHolder/ (Ljava/lang/Object;Lcom/google/common/collect/ImmutableMap;Lcom/mojang/serialization/MapCodec;)V +MD: net/minecraft/world/level/block/state/StateHolder/m_187542_ (Lnet/minecraft/world/level/block/state/StateHolder;Ljava/util/Optional;)Lnet/minecraft/world/level/block/state/StateHolder; net/minecraft/world/level/block/state/StateHolder/lambda$codec$1 (Lnet/minecraft/world/level/block/state/StateHolder;Ljava/util/Optional;)Lnet/minecraft/world/level/block/state/StateHolder; +MD: net/minecraft/world/level/block/state/StateHolder/m_187545_ (Ljava/util/function/Function;Ljava/lang/Object;)Lcom/mojang/serialization/Codec; net/minecraft/world/level/block/state/StateHolder/lambda$codec$2 (Ljava/util/function/Function;Ljava/lang/Object;)Lcom/mojang/serialization/Codec; +MD: net/minecraft/world/level/block/state/StateHolder/m_263224_ (Lnet/minecraft/world/level/block/state/properties/Property;Ljava/lang/Comparable;)Ljava/lang/Object; net/minecraft/world/level/block/state/StateHolder/trySetValue (Lnet/minecraft/world/level/block/state/properties/Property;Ljava/lang/Comparable;)Ljava/lang/Object; +MD: net/minecraft/world/level/block/state/StateHolder/m_61120_ (Lnet/minecraft/world/level/block/state/StateHolder;)Ljava/lang/Object; net/minecraft/world/level/block/state/StateHolder/lambda$codec$0 (Lnet/minecraft/world/level/block/state/StateHolder;)Ljava/lang/Object; +MD: net/minecraft/world/level/block/state/StateHolder/m_61122_ (Lnet/minecraft/world/level/block/state/properties/Property;)Ljava/lang/Object; net/minecraft/world/level/block/state/StateHolder/cycle (Lnet/minecraft/world/level/block/state/properties/Property;)Ljava/lang/Object; +MD: net/minecraft/world/level/block/state/StateHolder/m_61124_ (Lnet/minecraft/world/level/block/state/properties/Property;Ljava/lang/Comparable;)Ljava/lang/Object; net/minecraft/world/level/block/state/StateHolder/setValue (Lnet/minecraft/world/level/block/state/properties/Property;Ljava/lang/Comparable;)Ljava/lang/Object; +MD: net/minecraft/world/level/block/state/StateHolder/m_61127_ (Lcom/mojang/serialization/Codec;Ljava/util/function/Function;)Lcom/mojang/serialization/Codec; net/minecraft/world/level/block/state/StateHolder/codec (Lcom/mojang/serialization/Codec;Ljava/util/function/Function;)Lcom/mojang/serialization/Codec; +MD: net/minecraft/world/level/block/state/StateHolder/m_61130_ (Ljava/util/Collection;Ljava/lang/Object;)Ljava/lang/Object; net/minecraft/world/level/block/state/StateHolder/findNextInCollection (Ljava/util/Collection;Ljava/lang/Object;)Ljava/lang/Object; +MD: net/minecraft/world/level/block/state/StateHolder/m_61133_ (Ljava/util/Map;)V net/minecraft/world/level/block/state/StateHolder/populateNeighbours (Ljava/util/Map;)V +MD: net/minecraft/world/level/block/state/StateHolder/m_61138_ (Lnet/minecraft/world/level/block/state/properties/Property;)Z net/minecraft/world/level/block/state/StateHolder/hasProperty (Lnet/minecraft/world/level/block/state/properties/Property;)Z +MD: net/minecraft/world/level/block/state/StateHolder/m_61140_ (Lnet/minecraft/world/level/block/state/properties/Property;Ljava/lang/Comparable;)Ljava/util/Map; net/minecraft/world/level/block/state/StateHolder/makeNeighbourValues (Lnet/minecraft/world/level/block/state/properties/Property;Ljava/lang/Comparable;)Ljava/util/Map; +MD: net/minecraft/world/level/block/state/StateHolder/m_61143_ (Lnet/minecraft/world/level/block/state/properties/Property;)Ljava/lang/Comparable; net/minecraft/world/level/block/state/StateHolder/getValue (Lnet/minecraft/world/level/block/state/properties/Property;)Ljava/lang/Comparable; +MD: net/minecraft/world/level/block/state/StateHolder/m_61145_ (Lnet/minecraft/world/level/block/state/properties/Property;)Ljava/util/Optional; net/minecraft/world/level/block/state/StateHolder/getOptionalValue (Lnet/minecraft/world/level/block/state/properties/Property;)Ljava/util/Optional; +MD: net/minecraft/world/level/block/state/StateHolder/m_61147_ ()Ljava/util/Collection; net/minecraft/world/level/block/state/StateHolder/getProperties ()Ljava/util/Collection; +MD: net/minecraft/world/level/block/state/StateHolder/m_61148_ ()Lcom/google/common/collect/ImmutableMap; net/minecraft/world/level/block/state/StateHolder/getValues ()Lcom/google/common/collect/ImmutableMap; +MD: net/minecraft/world/level/block/state/StateHolder/toString ()Ljava/lang/String; net/minecraft/world/level/block/state/StateHolder/toString ()Ljava/lang/String; +MD: net/minecraft/world/level/block/state/StateHolder$1/ ()V net/minecraft/world/level/block/state/StateHolder$1/ ()V +MD: net/minecraft/world/level/block/state/StateHolder$1/apply (Ljava/lang/Object;)Ljava/lang/Object; net/minecraft/world/level/block/state/StateHolder$1/apply (Ljava/lang/Object;)Ljava/lang/Object; +MD: net/minecraft/world/level/block/state/StateHolder$1/apply (Ljava/util/Map$Entry;)Ljava/lang/String; net/minecraft/world/level/block/state/StateHolder$1/apply (Ljava/util/Map$Entry;)Ljava/lang/String; +MD: net/minecraft/world/level/block/state/StateHolder$1/m_61151_ (Lnet/minecraft/world/level/block/state/properties/Property;Ljava/lang/Comparable;)Ljava/lang/String; net/minecraft/world/level/block/state/StateHolder$1/getName (Lnet/minecraft/world/level/block/state/properties/Property;Ljava/lang/Comparable;)Ljava/lang/String; +MD: net/minecraft/world/level/block/state/pattern/BlockInWorld/ (Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;Z)V net/minecraft/world/level/block/state/pattern/BlockInWorld/ (Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;Z)V +MD: net/minecraft/world/level/block/state/pattern/BlockInWorld/m_61168_ ()Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/block/state/pattern/BlockInWorld/getState ()Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/block/state/pattern/BlockInWorld/m_61169_ (Ljava/util/function/Predicate;)Ljava/util/function/Predicate; net/minecraft/world/level/block/state/pattern/BlockInWorld/hasState (Ljava/util/function/Predicate;)Ljava/util/function/Predicate; +MD: net/minecraft/world/level/block/state/pattern/BlockInWorld/m_61171_ (Ljava/util/function/Predicate;Lnet/minecraft/world/level/block/state/pattern/BlockInWorld;)Z net/minecraft/world/level/block/state/pattern/BlockInWorld/lambda$hasState$0 (Ljava/util/function/Predicate;Lnet/minecraft/world/level/block/state/pattern/BlockInWorld;)Z +MD: net/minecraft/world/level/block/state/pattern/BlockInWorld/m_61174_ ()Lnet/minecraft/world/level/block/entity/BlockEntity; net/minecraft/world/level/block/state/pattern/BlockInWorld/getEntity ()Lnet/minecraft/world/level/block/entity/BlockEntity; +MD: net/minecraft/world/level/block/state/pattern/BlockInWorld/m_61175_ ()Lnet/minecraft/world/level/LevelReader; net/minecraft/world/level/block/state/pattern/BlockInWorld/getLevel ()Lnet/minecraft/world/level/LevelReader; +MD: net/minecraft/world/level/block/state/pattern/BlockInWorld/m_61176_ ()Lnet/minecraft/core/BlockPos; net/minecraft/world/level/block/state/pattern/BlockInWorld/getPos ()Lnet/minecraft/core/BlockPos; +MD: net/minecraft/world/level/block/state/pattern/BlockPattern/ ([[[Ljava/util/function/Predicate;)V net/minecraft/world/level/block/state/pattern/BlockPattern/ ([[[Ljava/util/function/Predicate;)V +MD: net/minecraft/world/level/block/state/pattern/BlockPattern/m_155964_ (Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Direction;Lnet/minecraft/core/Direction;)Lnet/minecraft/world/level/block/state/pattern/BlockPattern$BlockPatternMatch; net/minecraft/world/level/block/state/pattern/BlockPattern/matches (Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Direction;Lnet/minecraft/core/Direction;)Lnet/minecraft/world/level/block/state/pattern/BlockPattern$BlockPatternMatch; +MD: net/minecraft/world/level/block/state/pattern/BlockPattern/m_155969_ ()[[[Ljava/util/function/Predicate; net/minecraft/world/level/block/state/pattern/BlockPattern/getPattern ()[[[Ljava/util/function/Predicate; +MD: net/minecraft/world/level/block/state/pattern/BlockPattern/m_61183_ ()I net/minecraft/world/level/block/state/pattern/BlockPattern/getDepth ()I +MD: net/minecraft/world/level/block/state/pattern/BlockPattern/m_61184_ (Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/state/pattern/BlockPattern$BlockPatternMatch; net/minecraft/world/level/block/state/pattern/BlockPattern/find (Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/state/pattern/BlockPattern$BlockPatternMatch; +MD: net/minecraft/world/level/block/state/pattern/BlockPattern/m_61187_ (Lnet/minecraft/world/level/LevelReader;Z)Lcom/google/common/cache/LoadingCache; net/minecraft/world/level/block/state/pattern/BlockPattern/createLevelCache (Lnet/minecraft/world/level/LevelReader;Z)Lcom/google/common/cache/LoadingCache; +MD: net/minecraft/world/level/block/state/pattern/BlockPattern/m_61190_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Direction;Lnet/minecraft/core/Direction;III)Lnet/minecraft/core/BlockPos; net/minecraft/world/level/block/state/pattern/BlockPattern/translateAndRotate (Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Direction;Lnet/minecraft/core/Direction;III)Lnet/minecraft/core/BlockPos; +MD: net/minecraft/world/level/block/state/pattern/BlockPattern/m_61197_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Direction;Lnet/minecraft/core/Direction;Lcom/google/common/cache/LoadingCache;)Lnet/minecraft/world/level/block/state/pattern/BlockPattern$BlockPatternMatch; net/minecraft/world/level/block/state/pattern/BlockPattern/matches (Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Direction;Lnet/minecraft/core/Direction;Lcom/google/common/cache/LoadingCache;)Lnet/minecraft/world/level/block/state/pattern/BlockPattern$BlockPatternMatch; +MD: net/minecraft/world/level/block/state/pattern/BlockPattern/m_61202_ ()I net/minecraft/world/level/block/state/pattern/BlockPattern/getHeight ()I +MD: net/minecraft/world/level/block/state/pattern/BlockPattern/m_61203_ ()I net/minecraft/world/level/block/state/pattern/BlockPattern/getWidth ()I +MD: net/minecraft/world/level/block/state/pattern/BlockPattern$BlockCacheLoader/ (Lnet/minecraft/world/level/LevelReader;Z)V net/minecraft/world/level/block/state/pattern/BlockPattern$BlockCacheLoader/ (Lnet/minecraft/world/level/LevelReader;Z)V +MD: net/minecraft/world/level/block/state/pattern/BlockPattern$BlockCacheLoader/load (Ljava/lang/Object;)Ljava/lang/Object; net/minecraft/world/level/block/state/pattern/BlockPattern$BlockCacheLoader/load (Ljava/lang/Object;)Ljava/lang/Object; +MD: net/minecraft/world/level/block/state/pattern/BlockPattern$BlockCacheLoader/load (Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/state/pattern/BlockInWorld; net/minecraft/world/level/block/state/pattern/BlockPattern$BlockCacheLoader/load (Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/state/pattern/BlockInWorld; +MD: net/minecraft/world/level/block/state/pattern/BlockPattern$BlockPatternMatch/ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Direction;Lnet/minecraft/core/Direction;Lcom/google/common/cache/LoadingCache;III)V net/minecraft/world/level/block/state/pattern/BlockPattern$BlockPatternMatch/ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Direction;Lnet/minecraft/core/Direction;Lcom/google/common/cache/LoadingCache;III)V +MD: net/minecraft/world/level/block/state/pattern/BlockPattern$BlockPatternMatch/m_155970_ ()I net/minecraft/world/level/block/state/pattern/BlockPattern$BlockPatternMatch/getWidth ()I +MD: net/minecraft/world/level/block/state/pattern/BlockPattern$BlockPatternMatch/m_155971_ ()I net/minecraft/world/level/block/state/pattern/BlockPattern$BlockPatternMatch/getHeight ()I +MD: net/minecraft/world/level/block/state/pattern/BlockPattern$BlockPatternMatch/m_155972_ ()I net/minecraft/world/level/block/state/pattern/BlockPattern$BlockPatternMatch/getDepth ()I +MD: net/minecraft/world/level/block/state/pattern/BlockPattern$BlockPatternMatch/m_61228_ ()Lnet/minecraft/core/BlockPos; net/minecraft/world/level/block/state/pattern/BlockPattern$BlockPatternMatch/getFrontTopLeft ()Lnet/minecraft/core/BlockPos; +MD: net/minecraft/world/level/block/state/pattern/BlockPattern$BlockPatternMatch/m_61229_ (III)Lnet/minecraft/world/level/block/state/pattern/BlockInWorld; net/minecraft/world/level/block/state/pattern/BlockPattern$BlockPatternMatch/getBlock (III)Lnet/minecraft/world/level/block/state/pattern/BlockInWorld; +MD: net/minecraft/world/level/block/state/pattern/BlockPattern$BlockPatternMatch/m_61233_ ()Lnet/minecraft/core/Direction; net/minecraft/world/level/block/state/pattern/BlockPattern$BlockPatternMatch/getForwards ()Lnet/minecraft/core/Direction; +MD: net/minecraft/world/level/block/state/pattern/BlockPattern$BlockPatternMatch/m_61234_ ()Lnet/minecraft/core/Direction; net/minecraft/world/level/block/state/pattern/BlockPattern$BlockPatternMatch/getUp ()Lnet/minecraft/core/Direction; +MD: net/minecraft/world/level/block/state/pattern/BlockPattern$BlockPatternMatch/toString ()Ljava/lang/String; net/minecraft/world/level/block/state/pattern/BlockPattern$BlockPatternMatch/toString ()Ljava/lang/String; +MD: net/minecraft/world/level/block/state/pattern/BlockPatternBuilder/ ()V net/minecraft/world/level/block/state/pattern/BlockPatternBuilder/ ()V +MD: net/minecraft/world/level/block/state/pattern/BlockPatternBuilder/ ()V net/minecraft/world/level/block/state/pattern/BlockPatternBuilder/ ()V +MD: net/minecraft/world/level/block/state/pattern/BlockPatternBuilder/m_187548_ (Lnet/minecraft/world/level/block/state/pattern/BlockInWorld;)Z net/minecraft/world/level/block/state/pattern/BlockPatternBuilder/lambda$new$0 (Lnet/minecraft/world/level/block/state/pattern/BlockInWorld;)Z +MD: net/minecraft/world/level/block/state/pattern/BlockPatternBuilder/m_61243_ ()Lnet/minecraft/world/level/block/state/pattern/BlockPatternBuilder; net/minecraft/world/level/block/state/pattern/BlockPatternBuilder/start ()Lnet/minecraft/world/level/block/state/pattern/BlockPatternBuilder; +MD: net/minecraft/world/level/block/state/pattern/BlockPatternBuilder/m_61244_ (CLjava/util/function/Predicate;)Lnet/minecraft/world/level/block/state/pattern/BlockPatternBuilder; net/minecraft/world/level/block/state/pattern/BlockPatternBuilder/where (CLjava/util/function/Predicate;)Lnet/minecraft/world/level/block/state/pattern/BlockPatternBuilder; +MD: net/minecraft/world/level/block/state/pattern/BlockPatternBuilder/m_61247_ ([Ljava/lang/String;)Lnet/minecraft/world/level/block/state/pattern/BlockPatternBuilder; net/minecraft/world/level/block/state/pattern/BlockPatternBuilder/aisle ([Ljava/lang/String;)Lnet/minecraft/world/level/block/state/pattern/BlockPatternBuilder; +MD: net/minecraft/world/level/block/state/pattern/BlockPatternBuilder/m_61249_ ()Lnet/minecraft/world/level/block/state/pattern/BlockPattern; net/minecraft/world/level/block/state/pattern/BlockPatternBuilder/build ()Lnet/minecraft/world/level/block/state/pattern/BlockPattern; +MD: net/minecraft/world/level/block/state/pattern/BlockPatternBuilder/m_61250_ ()[[[Ljava/util/function/Predicate; net/minecraft/world/level/block/state/pattern/BlockPatternBuilder/createPattern ()[[[Ljava/util/function/Predicate; +MD: net/minecraft/world/level/block/state/pattern/BlockPatternBuilder/m_61251_ ()V net/minecraft/world/level/block/state/pattern/BlockPatternBuilder/ensureAllCharactersMatched ()V +MD: net/minecraft/world/level/block/state/predicate/BlockPredicate/ (Lnet/minecraft/world/level/block/Block;)V net/minecraft/world/level/block/state/predicate/BlockPredicate/ (Lnet/minecraft/world/level/block/Block;)V +MD: net/minecraft/world/level/block/state/predicate/BlockPredicate/m_61275_ (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/block/state/predicate/BlockPredicate; net/minecraft/world/level/block/state/predicate/BlockPredicate/forBlock (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/block/state/predicate/BlockPredicate; +MD: net/minecraft/world/level/block/state/predicate/BlockPredicate/test (Ljava/lang/Object;)Z net/minecraft/world/level/block/state/predicate/BlockPredicate/test (Ljava/lang/Object;)Z +MD: net/minecraft/world/level/block/state/predicate/BlockPredicate/test (Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/world/level/block/state/predicate/BlockPredicate/test (Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/world/level/block/state/predicate/BlockStatePredicate/ ()V net/minecraft/world/level/block/state/predicate/BlockStatePredicate/ ()V +MD: net/minecraft/world/level/block/state/predicate/BlockStatePredicate/ (Lnet/minecraft/world/level/block/state/StateDefinition;)V net/minecraft/world/level/block/state/predicate/BlockStatePredicate/ (Lnet/minecraft/world/level/block/state/StateDefinition;)V +MD: net/minecraft/world/level/block/state/predicate/BlockStatePredicate/m_61287_ (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/block/state/predicate/BlockStatePredicate; net/minecraft/world/level/block/state/predicate/BlockStatePredicate/forBlock (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/block/state/predicate/BlockStatePredicate; +MD: net/minecraft/world/level/block/state/predicate/BlockStatePredicate/m_61291_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/state/properties/Property;Ljava/util/function/Predicate;)Z net/minecraft/world/level/block/state/predicate/BlockStatePredicate/applies (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/state/properties/Property;Ljava/util/function/Predicate;)Z +MD: net/minecraft/world/level/block/state/predicate/BlockStatePredicate/m_61295_ (Lnet/minecraft/world/level/block/state/properties/Property;Ljava/util/function/Predicate;)Lnet/minecraft/world/level/block/state/predicate/BlockStatePredicate; net/minecraft/world/level/block/state/predicate/BlockStatePredicate/where (Lnet/minecraft/world/level/block/state/properties/Property;Ljava/util/function/Predicate;)Lnet/minecraft/world/level/block/state/predicate/BlockStatePredicate; +MD: net/minecraft/world/level/block/state/predicate/BlockStatePredicate/m_61298_ (Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/world/level/block/state/predicate/BlockStatePredicate/lambda$static$0 (Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/world/level/block/state/predicate/BlockStatePredicate/test (Ljava/lang/Object;)Z net/minecraft/world/level/block/state/predicate/BlockStatePredicate/test (Ljava/lang/Object;)Z +MD: net/minecraft/world/level/block/state/predicate/BlockStatePredicate/test (Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/world/level/block/state/predicate/BlockStatePredicate/test (Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/world/level/block/state/properties/AttachFace/ ()V net/minecraft/world/level/block/state/properties/AttachFace/ ()V +MD: net/minecraft/world/level/block/state/properties/AttachFace/ (Ljava/lang/String;ILjava/lang/String;)V net/minecraft/world/level/block/state/properties/AttachFace/ (Ljava/lang/String;ILjava/lang/String;)V +MD: net/minecraft/world/level/block/state/properties/AttachFace/m_155973_ ()[Lnet/minecraft/world/level/block/state/properties/AttachFace; net/minecraft/world/level/block/state/properties/AttachFace/$values ()[Lnet/minecraft/world/level/block/state/properties/AttachFace; +MD: net/minecraft/world/level/block/state/properties/AttachFace/m_7912_ ()Ljava/lang/String; net/minecraft/world/level/block/state/properties/AttachFace/getSerializedName ()Ljava/lang/String; +MD: net/minecraft/world/level/block/state/properties/AttachFace/valueOf (Ljava/lang/String;)Lnet/minecraft/world/level/block/state/properties/AttachFace; net/minecraft/world/level/block/state/properties/AttachFace/valueOf (Ljava/lang/String;)Lnet/minecraft/world/level/block/state/properties/AttachFace; +MD: net/minecraft/world/level/block/state/properties/AttachFace/values ()[Lnet/minecraft/world/level/block/state/properties/AttachFace; net/minecraft/world/level/block/state/properties/AttachFace/values ()[Lnet/minecraft/world/level/block/state/properties/AttachFace; +MD: net/minecraft/world/level/block/state/properties/BambooLeaves/ ()V net/minecraft/world/level/block/state/properties/BambooLeaves/ ()V +MD: net/minecraft/world/level/block/state/properties/BambooLeaves/ (Ljava/lang/String;ILjava/lang/String;)V net/minecraft/world/level/block/state/properties/BambooLeaves/ (Ljava/lang/String;ILjava/lang/String;)V +MD: net/minecraft/world/level/block/state/properties/BambooLeaves/m_155974_ ()[Lnet/minecraft/world/level/block/state/properties/BambooLeaves; net/minecraft/world/level/block/state/properties/BambooLeaves/$values ()[Lnet/minecraft/world/level/block/state/properties/BambooLeaves; +MD: net/minecraft/world/level/block/state/properties/BambooLeaves/m_7912_ ()Ljava/lang/String; net/minecraft/world/level/block/state/properties/BambooLeaves/getSerializedName ()Ljava/lang/String; +MD: net/minecraft/world/level/block/state/properties/BambooLeaves/toString ()Ljava/lang/String; net/minecraft/world/level/block/state/properties/BambooLeaves/toString ()Ljava/lang/String; +MD: net/minecraft/world/level/block/state/properties/BambooLeaves/valueOf (Ljava/lang/String;)Lnet/minecraft/world/level/block/state/properties/BambooLeaves; net/minecraft/world/level/block/state/properties/BambooLeaves/valueOf (Ljava/lang/String;)Lnet/minecraft/world/level/block/state/properties/BambooLeaves; +MD: net/minecraft/world/level/block/state/properties/BambooLeaves/values ()[Lnet/minecraft/world/level/block/state/properties/BambooLeaves; net/minecraft/world/level/block/state/properties/BambooLeaves/values ()[Lnet/minecraft/world/level/block/state/properties/BambooLeaves; +MD: net/minecraft/world/level/block/state/properties/BedPart/ ()V net/minecraft/world/level/block/state/properties/BedPart/ ()V +MD: net/minecraft/world/level/block/state/properties/BedPart/ (Ljava/lang/String;ILjava/lang/String;)V net/minecraft/world/level/block/state/properties/BedPart/ (Ljava/lang/String;ILjava/lang/String;)V +MD: net/minecraft/world/level/block/state/properties/BedPart/m_155975_ ()[Lnet/minecraft/world/level/block/state/properties/BedPart; net/minecraft/world/level/block/state/properties/BedPart/$values ()[Lnet/minecraft/world/level/block/state/properties/BedPart; +MD: net/minecraft/world/level/block/state/properties/BedPart/m_7912_ ()Ljava/lang/String; net/minecraft/world/level/block/state/properties/BedPart/getSerializedName ()Ljava/lang/String; +MD: net/minecraft/world/level/block/state/properties/BedPart/toString ()Ljava/lang/String; net/minecraft/world/level/block/state/properties/BedPart/toString ()Ljava/lang/String; +MD: net/minecraft/world/level/block/state/properties/BedPart/valueOf (Ljava/lang/String;)Lnet/minecraft/world/level/block/state/properties/BedPart; net/minecraft/world/level/block/state/properties/BedPart/valueOf (Ljava/lang/String;)Lnet/minecraft/world/level/block/state/properties/BedPart; +MD: net/minecraft/world/level/block/state/properties/BedPart/values ()[Lnet/minecraft/world/level/block/state/properties/BedPart; net/minecraft/world/level/block/state/properties/BedPart/values ()[Lnet/minecraft/world/level/block/state/properties/BedPart; +MD: net/minecraft/world/level/block/state/properties/BellAttachType/ ()V net/minecraft/world/level/block/state/properties/BellAttachType/ ()V +MD: net/minecraft/world/level/block/state/properties/BellAttachType/ (Ljava/lang/String;ILjava/lang/String;)V net/minecraft/world/level/block/state/properties/BellAttachType/ (Ljava/lang/String;ILjava/lang/String;)V +MD: net/minecraft/world/level/block/state/properties/BellAttachType/m_155976_ ()[Lnet/minecraft/world/level/block/state/properties/BellAttachType; net/minecraft/world/level/block/state/properties/BellAttachType/$values ()[Lnet/minecraft/world/level/block/state/properties/BellAttachType; +MD: net/minecraft/world/level/block/state/properties/BellAttachType/m_7912_ ()Ljava/lang/String; net/minecraft/world/level/block/state/properties/BellAttachType/getSerializedName ()Ljava/lang/String; +MD: net/minecraft/world/level/block/state/properties/BellAttachType/valueOf (Ljava/lang/String;)Lnet/minecraft/world/level/block/state/properties/BellAttachType; net/minecraft/world/level/block/state/properties/BellAttachType/valueOf (Ljava/lang/String;)Lnet/minecraft/world/level/block/state/properties/BellAttachType; +MD: net/minecraft/world/level/block/state/properties/BellAttachType/values ()[Lnet/minecraft/world/level/block/state/properties/BellAttachType; net/minecraft/world/level/block/state/properties/BellAttachType/values ()[Lnet/minecraft/world/level/block/state/properties/BellAttachType; +MD: net/minecraft/world/level/block/state/properties/BlockSetType/ ()V net/minecraft/world/level/block/state/properties/BlockSetType/ ()V +MD: net/minecraft/world/level/block/state/properties/BlockSetType/ (Ljava/lang/String;ZLnet/minecraft/world/level/block/SoundType;Lnet/minecraft/sounds/SoundEvent;Lnet/minecraft/sounds/SoundEvent;Lnet/minecraft/sounds/SoundEvent;Lnet/minecraft/sounds/SoundEvent;Lnet/minecraft/sounds/SoundEvent;Lnet/minecraft/sounds/SoundEvent;Lnet/minecraft/sounds/SoundEvent;Lnet/minecraft/sounds/SoundEvent;)V net/minecraft/world/level/block/state/properties/BlockSetType/ (Ljava/lang/String;ZLnet/minecraft/world/level/block/SoundType;Lnet/minecraft/sounds/SoundEvent;Lnet/minecraft/sounds/SoundEvent;Lnet/minecraft/sounds/SoundEvent;Lnet/minecraft/sounds/SoundEvent;Lnet/minecraft/sounds/SoundEvent;Lnet/minecraft/sounds/SoundEvent;Lnet/minecraft/sounds/SoundEvent;Lnet/minecraft/sounds/SoundEvent;)V +MD: net/minecraft/world/level/block/state/properties/BlockSetType/ (Ljava/lang/String;)V net/minecraft/world/level/block/state/properties/BlockSetType/ (Ljava/lang/String;)V +MD: net/minecraft/world/level/block/state/properties/BlockSetType/equals (Ljava/lang/Object;)Z net/minecraft/world/level/block/state/properties/BlockSetType/equals (Ljava/lang/Object;)Z +MD: net/minecraft/world/level/block/state/properties/BlockSetType/f_271136_ ()Lnet/minecraft/world/level/block/SoundType; net/minecraft/world/level/block/state/properties/BlockSetType/soundType ()Lnet/minecraft/world/level/block/SoundType; +MD: net/minecraft/world/level/block/state/properties/BlockSetType/f_271141_ ()Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/level/block/state/properties/BlockSetType/doorOpen ()Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/level/block/state/properties/BlockSetType/f_271194_ ()Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/level/block/state/properties/BlockSetType/buttonClickOff ()Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/level/block/state/properties/BlockSetType/f_271234_ ()Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/level/block/state/properties/BlockSetType/pressurePlateClickOff ()Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/level/block/state/properties/BlockSetType/f_271253_ ()Ljava/lang/String; net/minecraft/world/level/block/state/properties/BlockSetType/name ()Ljava/lang/String; +MD: net/minecraft/world/level/block/state/properties/BlockSetType/f_271258_ ()Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/level/block/state/properties/BlockSetType/trapdoorOpen ()Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/level/block/state/properties/BlockSetType/f_271394_ ()Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/level/block/state/properties/BlockSetType/buttonClickOn ()Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/level/block/state/properties/BlockSetType/f_271425_ ()Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/level/block/state/properties/BlockSetType/trapdoorClose ()Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/level/block/state/properties/BlockSetType/f_271481_ ()Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/level/block/state/properties/BlockSetType/pressurePlateClickOn ()Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/level/block/state/properties/BlockSetType/f_271502_ ()Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/level/block/state/properties/BlockSetType/doorClose ()Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/level/block/state/properties/BlockSetType/f_278463_ ()Z net/minecraft/world/level/block/state/properties/BlockSetType/canOpenByHand ()Z +MD: net/minecraft/world/level/block/state/properties/BlockSetType/hashCode ()I net/minecraft/world/level/block/state/properties/BlockSetType/hashCode ()I +MD: net/minecraft/world/level/block/state/properties/BlockSetType/m_271801_ ()Ljava/util/stream/Stream; net/minecraft/world/level/block/state/properties/BlockSetType/values ()Ljava/util/stream/Stream; +MD: net/minecraft/world/level/block/state/properties/BlockSetType/m_272115_ (Lnet/minecraft/world/level/block/state/properties/BlockSetType;)Lnet/minecraft/world/level/block/state/properties/BlockSetType; net/minecraft/world/level/block/state/properties/BlockSetType/register (Lnet/minecraft/world/level/block/state/properties/BlockSetType;)Lnet/minecraft/world/level/block/state/properties/BlockSetType; +MD: net/minecraft/world/level/block/state/properties/BlockSetType/toString ()Ljava/lang/String; net/minecraft/world/level/block/state/properties/BlockSetType/toString ()Ljava/lang/String; +MD: net/minecraft/world/level/block/state/properties/BlockStateProperties/ ()V net/minecraft/world/level/block/state/properties/BlockStateProperties/ ()V +MD: net/minecraft/world/level/block/state/properties/BlockStateProperties/ ()V net/minecraft/world/level/block/state/properties/BlockStateProperties/ ()V +MD: net/minecraft/world/level/block/state/properties/BlockStateProperties/m_61453_ (Lnet/minecraft/world/level/block/state/properties/RailShape;)Z net/minecraft/world/level/block/state/properties/BlockStateProperties/lambda$static$1 (Lnet/minecraft/world/level/block/state/properties/RailShape;)Z +MD: net/minecraft/world/level/block/state/properties/BlockStateProperties/m_61455_ (Lnet/minecraft/core/Direction;)Z net/minecraft/world/level/block/state/properties/BlockStateProperties/lambda$static$0 (Lnet/minecraft/core/Direction;)Z +MD: net/minecraft/world/level/block/state/properties/BooleanProperty/ (Ljava/lang/String;)V net/minecraft/world/level/block/state/properties/BooleanProperty/ (Ljava/lang/String;)V +MD: net/minecraft/world/level/block/state/properties/BooleanProperty/equals (Ljava/lang/Object;)Z net/minecraft/world/level/block/state/properties/BooleanProperty/equals (Ljava/lang/Object;)Z +MD: net/minecraft/world/level/block/state/properties/BooleanProperty/m_61465_ (Ljava/lang/String;)Lnet/minecraft/world/level/block/state/properties/BooleanProperty; net/minecraft/world/level/block/state/properties/BooleanProperty/create (Ljava/lang/String;)Lnet/minecraft/world/level/block/state/properties/BooleanProperty; +MD: net/minecraft/world/level/block/state/properties/BooleanProperty/m_6215_ (Ljava/lang/String;)Ljava/util/Optional; net/minecraft/world/level/block/state/properties/BooleanProperty/getValue (Ljava/lang/String;)Ljava/util/Optional; +MD: net/minecraft/world/level/block/state/properties/BooleanProperty/m_6310_ ()I net/minecraft/world/level/block/state/properties/BooleanProperty/generateHashCode ()I +MD: net/minecraft/world/level/block/state/properties/BooleanProperty/m_6908_ ()Ljava/util/Collection; net/minecraft/world/level/block/state/properties/BooleanProperty/getPossibleValues ()Ljava/util/Collection; +MD: net/minecraft/world/level/block/state/properties/BooleanProperty/m_6940_ (Ljava/lang/Comparable;)Ljava/lang/String; net/minecraft/world/level/block/state/properties/BooleanProperty/getName (Ljava/lang/Comparable;)Ljava/lang/String; +MD: net/minecraft/world/level/block/state/properties/BooleanProperty/m_6940_ (Ljava/lang/Boolean;)Ljava/lang/String; net/minecraft/world/level/block/state/properties/BooleanProperty/getName (Ljava/lang/Boolean;)Ljava/lang/String; +MD: net/minecraft/world/level/block/state/properties/ChestType/ ()V net/minecraft/world/level/block/state/properties/ChestType/ ()V +MD: net/minecraft/world/level/block/state/properties/ChestType/ (Ljava/lang/String;ILjava/lang/String;)V net/minecraft/world/level/block/state/properties/ChestType/ (Ljava/lang/String;ILjava/lang/String;)V +MD: net/minecraft/world/level/block/state/properties/ChestType/m_156001_ ()[Lnet/minecraft/world/level/block/state/properties/ChestType; net/minecraft/world/level/block/state/properties/ChestType/$values ()[Lnet/minecraft/world/level/block/state/properties/ChestType; +MD: net/minecraft/world/level/block/state/properties/ChestType/m_61486_ ()Lnet/minecraft/world/level/block/state/properties/ChestType; net/minecraft/world/level/block/state/properties/ChestType/getOpposite ()Lnet/minecraft/world/level/block/state/properties/ChestType; +MD: net/minecraft/world/level/block/state/properties/ChestType/m_7912_ ()Ljava/lang/String; net/minecraft/world/level/block/state/properties/ChestType/getSerializedName ()Ljava/lang/String; +MD: net/minecraft/world/level/block/state/properties/ChestType/valueOf (Ljava/lang/String;)Lnet/minecraft/world/level/block/state/properties/ChestType; net/minecraft/world/level/block/state/properties/ChestType/valueOf (Ljava/lang/String;)Lnet/minecraft/world/level/block/state/properties/ChestType; +MD: net/minecraft/world/level/block/state/properties/ChestType/values ()[Lnet/minecraft/world/level/block/state/properties/ChestType; net/minecraft/world/level/block/state/properties/ChestType/values ()[Lnet/minecraft/world/level/block/state/properties/ChestType; +MD: net/minecraft/world/level/block/state/properties/ChestType$1/ ()V net/minecraft/world/level/block/state/properties/ChestType$1/ ()V +MD: net/minecraft/world/level/block/state/properties/ComparatorMode/ ()V net/minecraft/world/level/block/state/properties/ComparatorMode/ ()V +MD: net/minecraft/world/level/block/state/properties/ComparatorMode/ (Ljava/lang/String;ILjava/lang/String;)V net/minecraft/world/level/block/state/properties/ComparatorMode/ (Ljava/lang/String;ILjava/lang/String;)V +MD: net/minecraft/world/level/block/state/properties/ComparatorMode/m_156002_ ()[Lnet/minecraft/world/level/block/state/properties/ComparatorMode; net/minecraft/world/level/block/state/properties/ComparatorMode/$values ()[Lnet/minecraft/world/level/block/state/properties/ComparatorMode; +MD: net/minecraft/world/level/block/state/properties/ComparatorMode/m_7912_ ()Ljava/lang/String; net/minecraft/world/level/block/state/properties/ComparatorMode/getSerializedName ()Ljava/lang/String; +MD: net/minecraft/world/level/block/state/properties/ComparatorMode/toString ()Ljava/lang/String; net/minecraft/world/level/block/state/properties/ComparatorMode/toString ()Ljava/lang/String; +MD: net/minecraft/world/level/block/state/properties/ComparatorMode/valueOf (Ljava/lang/String;)Lnet/minecraft/world/level/block/state/properties/ComparatorMode; net/minecraft/world/level/block/state/properties/ComparatorMode/valueOf (Ljava/lang/String;)Lnet/minecraft/world/level/block/state/properties/ComparatorMode; +MD: net/minecraft/world/level/block/state/properties/ComparatorMode/values ()[Lnet/minecraft/world/level/block/state/properties/ComparatorMode; net/minecraft/world/level/block/state/properties/ComparatorMode/values ()[Lnet/minecraft/world/level/block/state/properties/ComparatorMode; +MD: net/minecraft/world/level/block/state/properties/DirectionProperty/ (Ljava/lang/String;Ljava/util/Collection;)V net/minecraft/world/level/block/state/properties/DirectionProperty/ (Ljava/lang/String;Ljava/util/Collection;)V +MD: net/minecraft/world/level/block/state/properties/DirectionProperty/m_156003_ (Ljava/lang/String;)Lnet/minecraft/world/level/block/state/properties/DirectionProperty; net/minecraft/world/level/block/state/properties/DirectionProperty/create (Ljava/lang/String;)Lnet/minecraft/world/level/block/state/properties/DirectionProperty; +MD: net/minecraft/world/level/block/state/properties/DirectionProperty/m_187557_ (Lnet/minecraft/core/Direction;)Z net/minecraft/world/level/block/state/properties/DirectionProperty/lambda$create$0 (Lnet/minecraft/core/Direction;)Z +MD: net/minecraft/world/level/block/state/properties/DirectionProperty/m_61543_ (Ljava/lang/String;Ljava/util/Collection;)Lnet/minecraft/world/level/block/state/properties/DirectionProperty; net/minecraft/world/level/block/state/properties/DirectionProperty/create (Ljava/lang/String;Ljava/util/Collection;)Lnet/minecraft/world/level/block/state/properties/DirectionProperty; +MD: net/minecraft/world/level/block/state/properties/DirectionProperty/m_61546_ (Ljava/lang/String;Ljava/util/function/Predicate;)Lnet/minecraft/world/level/block/state/properties/DirectionProperty; net/minecraft/world/level/block/state/properties/DirectionProperty/create (Ljava/lang/String;Ljava/util/function/Predicate;)Lnet/minecraft/world/level/block/state/properties/DirectionProperty; +MD: net/minecraft/world/level/block/state/properties/DirectionProperty/m_61549_ (Ljava/lang/String;[Lnet/minecraft/core/Direction;)Lnet/minecraft/world/level/block/state/properties/DirectionProperty; net/minecraft/world/level/block/state/properties/DirectionProperty/create (Ljava/lang/String;[Lnet/minecraft/core/Direction;)Lnet/minecraft/world/level/block/state/properties/DirectionProperty; +MD: net/minecraft/world/level/block/state/properties/DoorHingeSide/ ()V net/minecraft/world/level/block/state/properties/DoorHingeSide/ ()V +MD: net/minecraft/world/level/block/state/properties/DoorHingeSide/ (Ljava/lang/String;I)V net/minecraft/world/level/block/state/properties/DoorHingeSide/ (Ljava/lang/String;I)V +MD: net/minecraft/world/level/block/state/properties/DoorHingeSide/m_156005_ ()[Lnet/minecraft/world/level/block/state/properties/DoorHingeSide; net/minecraft/world/level/block/state/properties/DoorHingeSide/$values ()[Lnet/minecraft/world/level/block/state/properties/DoorHingeSide; +MD: net/minecraft/world/level/block/state/properties/DoorHingeSide/m_7912_ ()Ljava/lang/String; net/minecraft/world/level/block/state/properties/DoorHingeSide/getSerializedName ()Ljava/lang/String; +MD: net/minecraft/world/level/block/state/properties/DoorHingeSide/toString ()Ljava/lang/String; net/minecraft/world/level/block/state/properties/DoorHingeSide/toString ()Ljava/lang/String; +MD: net/minecraft/world/level/block/state/properties/DoorHingeSide/valueOf (Ljava/lang/String;)Lnet/minecraft/world/level/block/state/properties/DoorHingeSide; net/minecraft/world/level/block/state/properties/DoorHingeSide/valueOf (Ljava/lang/String;)Lnet/minecraft/world/level/block/state/properties/DoorHingeSide; +MD: net/minecraft/world/level/block/state/properties/DoorHingeSide/values ()[Lnet/minecraft/world/level/block/state/properties/DoorHingeSide; net/minecraft/world/level/block/state/properties/DoorHingeSide/values ()[Lnet/minecraft/world/level/block/state/properties/DoorHingeSide; +MD: net/minecraft/world/level/block/state/properties/DoubleBlockHalf/ ()V net/minecraft/world/level/block/state/properties/DoubleBlockHalf/ ()V +MD: net/minecraft/world/level/block/state/properties/DoubleBlockHalf/ (Ljava/lang/String;I)V net/minecraft/world/level/block/state/properties/DoubleBlockHalf/ (Ljava/lang/String;I)V +MD: net/minecraft/world/level/block/state/properties/DoubleBlockHalf/m_156006_ ()[Lnet/minecraft/world/level/block/state/properties/DoubleBlockHalf; net/minecraft/world/level/block/state/properties/DoubleBlockHalf/$values ()[Lnet/minecraft/world/level/block/state/properties/DoubleBlockHalf; +MD: net/minecraft/world/level/block/state/properties/DoubleBlockHalf/m_7912_ ()Ljava/lang/String; net/minecraft/world/level/block/state/properties/DoubleBlockHalf/getSerializedName ()Ljava/lang/String; +MD: net/minecraft/world/level/block/state/properties/DoubleBlockHalf/toString ()Ljava/lang/String; net/minecraft/world/level/block/state/properties/DoubleBlockHalf/toString ()Ljava/lang/String; +MD: net/minecraft/world/level/block/state/properties/DoubleBlockHalf/valueOf (Ljava/lang/String;)Lnet/minecraft/world/level/block/state/properties/DoubleBlockHalf; net/minecraft/world/level/block/state/properties/DoubleBlockHalf/valueOf (Ljava/lang/String;)Lnet/minecraft/world/level/block/state/properties/DoubleBlockHalf; +MD: net/minecraft/world/level/block/state/properties/DoubleBlockHalf/values ()[Lnet/minecraft/world/level/block/state/properties/DoubleBlockHalf; net/minecraft/world/level/block/state/properties/DoubleBlockHalf/values ()[Lnet/minecraft/world/level/block/state/properties/DoubleBlockHalf; +MD: net/minecraft/world/level/block/state/properties/DripstoneThickness/ ()V net/minecraft/world/level/block/state/properties/DripstoneThickness/ ()V +MD: net/minecraft/world/level/block/state/properties/DripstoneThickness/ (Ljava/lang/String;ILjava/lang/String;)V net/minecraft/world/level/block/state/properties/DripstoneThickness/ (Ljava/lang/String;ILjava/lang/String;)V +MD: net/minecraft/world/level/block/state/properties/DripstoneThickness/m_156019_ ()[Lnet/minecraft/world/level/block/state/properties/DripstoneThickness; net/minecraft/world/level/block/state/properties/DripstoneThickness/$values ()[Lnet/minecraft/world/level/block/state/properties/DripstoneThickness; +MD: net/minecraft/world/level/block/state/properties/DripstoneThickness/m_7912_ ()Ljava/lang/String; net/minecraft/world/level/block/state/properties/DripstoneThickness/getSerializedName ()Ljava/lang/String; +MD: net/minecraft/world/level/block/state/properties/DripstoneThickness/toString ()Ljava/lang/String; net/minecraft/world/level/block/state/properties/DripstoneThickness/toString ()Ljava/lang/String; +MD: net/minecraft/world/level/block/state/properties/DripstoneThickness/valueOf (Ljava/lang/String;)Lnet/minecraft/world/level/block/state/properties/DripstoneThickness; net/minecraft/world/level/block/state/properties/DripstoneThickness/valueOf (Ljava/lang/String;)Lnet/minecraft/world/level/block/state/properties/DripstoneThickness; +MD: net/minecraft/world/level/block/state/properties/DripstoneThickness/values ()[Lnet/minecraft/world/level/block/state/properties/DripstoneThickness; net/minecraft/world/level/block/state/properties/DripstoneThickness/values ()[Lnet/minecraft/world/level/block/state/properties/DripstoneThickness; +MD: net/minecraft/world/level/block/state/properties/EnumProperty/ (Ljava/lang/String;Ljava/lang/Class;Ljava/util/Collection;)V net/minecraft/world/level/block/state/properties/EnumProperty/ (Ljava/lang/String;Ljava/lang/Class;Ljava/util/Collection;)V +MD: net/minecraft/world/level/block/state/properties/EnumProperty/equals (Ljava/lang/Object;)Z net/minecraft/world/level/block/state/properties/EnumProperty/equals (Ljava/lang/Object;)Z +MD: net/minecraft/world/level/block/state/properties/EnumProperty/m_187559_ (Ljava/lang/Enum;)Z net/minecraft/world/level/block/state/properties/EnumProperty/lambda$create$0 (Ljava/lang/Enum;)Z +MD: net/minecraft/world/level/block/state/properties/EnumProperty/m_61587_ (Ljava/lang/String;Ljava/lang/Class;)Lnet/minecraft/world/level/block/state/properties/EnumProperty; net/minecraft/world/level/block/state/properties/EnumProperty/create (Ljava/lang/String;Ljava/lang/Class;)Lnet/minecraft/world/level/block/state/properties/EnumProperty; +MD: net/minecraft/world/level/block/state/properties/EnumProperty/m_61590_ (Ljava/lang/String;Ljava/lang/Class;Ljava/util/Collection;)Lnet/minecraft/world/level/block/state/properties/EnumProperty; net/minecraft/world/level/block/state/properties/EnumProperty/create (Ljava/lang/String;Ljava/lang/Class;Ljava/util/Collection;)Lnet/minecraft/world/level/block/state/properties/EnumProperty; +MD: net/minecraft/world/level/block/state/properties/EnumProperty/m_61594_ (Ljava/lang/String;Ljava/lang/Class;Ljava/util/function/Predicate;)Lnet/minecraft/world/level/block/state/properties/EnumProperty; net/minecraft/world/level/block/state/properties/EnumProperty/create (Ljava/lang/String;Ljava/lang/Class;Ljava/util/function/Predicate;)Lnet/minecraft/world/level/block/state/properties/EnumProperty; +MD: net/minecraft/world/level/block/state/properties/EnumProperty/m_61598_ (Ljava/lang/String;Ljava/lang/Class;[Ljava/lang/Enum;)Lnet/minecraft/world/level/block/state/properties/EnumProperty; net/minecraft/world/level/block/state/properties/EnumProperty/create (Ljava/lang/String;Ljava/lang/Class;[Ljava/lang/Enum;)Lnet/minecraft/world/level/block/state/properties/EnumProperty; +MD: net/minecraft/world/level/block/state/properties/EnumProperty/m_6215_ (Ljava/lang/String;)Ljava/util/Optional; net/minecraft/world/level/block/state/properties/EnumProperty/getValue (Ljava/lang/String;)Ljava/util/Optional; +MD: net/minecraft/world/level/block/state/properties/EnumProperty/m_6310_ ()I net/minecraft/world/level/block/state/properties/EnumProperty/generateHashCode ()I +MD: net/minecraft/world/level/block/state/properties/EnumProperty/m_6908_ ()Ljava/util/Collection; net/minecraft/world/level/block/state/properties/EnumProperty/getPossibleValues ()Ljava/util/Collection; +MD: net/minecraft/world/level/block/state/properties/EnumProperty/m_6940_ (Ljava/lang/Comparable;)Ljava/lang/String; net/minecraft/world/level/block/state/properties/EnumProperty/getName (Ljava/lang/Comparable;)Ljava/lang/String; +MD: net/minecraft/world/level/block/state/properties/EnumProperty/m_6940_ (Ljava/lang/Enum;)Ljava/lang/String; net/minecraft/world/level/block/state/properties/EnumProperty/getName (Ljava/lang/Enum;)Ljava/lang/String; +MD: net/minecraft/world/level/block/state/properties/Half/ ()V net/minecraft/world/level/block/state/properties/Half/ ()V +MD: net/minecraft/world/level/block/state/properties/Half/ (Ljava/lang/String;ILjava/lang/String;)V net/minecraft/world/level/block/state/properties/Half/ (Ljava/lang/String;ILjava/lang/String;)V +MD: net/minecraft/world/level/block/state/properties/Half/m_156025_ ()[Lnet/minecraft/world/level/block/state/properties/Half; net/minecraft/world/level/block/state/properties/Half/$values ()[Lnet/minecraft/world/level/block/state/properties/Half; +MD: net/minecraft/world/level/block/state/properties/Half/m_7912_ ()Ljava/lang/String; net/minecraft/world/level/block/state/properties/Half/getSerializedName ()Ljava/lang/String; +MD: net/minecraft/world/level/block/state/properties/Half/toString ()Ljava/lang/String; net/minecraft/world/level/block/state/properties/Half/toString ()Ljava/lang/String; +MD: net/minecraft/world/level/block/state/properties/Half/valueOf (Ljava/lang/String;)Lnet/minecraft/world/level/block/state/properties/Half; net/minecraft/world/level/block/state/properties/Half/valueOf (Ljava/lang/String;)Lnet/minecraft/world/level/block/state/properties/Half; +MD: net/minecraft/world/level/block/state/properties/Half/values ()[Lnet/minecraft/world/level/block/state/properties/Half; net/minecraft/world/level/block/state/properties/Half/values ()[Lnet/minecraft/world/level/block/state/properties/Half; +MD: net/minecraft/world/level/block/state/properties/IntegerProperty/ (Ljava/lang/String;II)V net/minecraft/world/level/block/state/properties/IntegerProperty/ (Ljava/lang/String;II)V +MD: net/minecraft/world/level/block/state/properties/IntegerProperty/equals (Ljava/lang/Object;)Z net/minecraft/world/level/block/state/properties/IntegerProperty/equals (Ljava/lang/Object;)Z +MD: net/minecraft/world/level/block/state/properties/IntegerProperty/m_61631_ (Ljava/lang/String;II)Lnet/minecraft/world/level/block/state/properties/IntegerProperty; net/minecraft/world/level/block/state/properties/IntegerProperty/create (Ljava/lang/String;II)Lnet/minecraft/world/level/block/state/properties/IntegerProperty; +MD: net/minecraft/world/level/block/state/properties/IntegerProperty/m_6215_ (Ljava/lang/String;)Ljava/util/Optional; net/minecraft/world/level/block/state/properties/IntegerProperty/getValue (Ljava/lang/String;)Ljava/util/Optional; +MD: net/minecraft/world/level/block/state/properties/IntegerProperty/m_6310_ ()I net/minecraft/world/level/block/state/properties/IntegerProperty/generateHashCode ()I +MD: net/minecraft/world/level/block/state/properties/IntegerProperty/m_6908_ ()Ljava/util/Collection; net/minecraft/world/level/block/state/properties/IntegerProperty/getPossibleValues ()Ljava/util/Collection; +MD: net/minecraft/world/level/block/state/properties/IntegerProperty/m_6940_ (Ljava/lang/Comparable;)Ljava/lang/String; net/minecraft/world/level/block/state/properties/IntegerProperty/getName (Ljava/lang/Comparable;)Ljava/lang/String; +MD: net/minecraft/world/level/block/state/properties/IntegerProperty/m_6940_ (Ljava/lang/Integer;)Ljava/lang/String; net/minecraft/world/level/block/state/properties/IntegerProperty/getName (Ljava/lang/Integer;)Ljava/lang/String; +MD: net/minecraft/world/level/block/state/properties/NoteBlockInstrument/ ()V net/minecraft/world/level/block/state/properties/NoteBlockInstrument/ ()V +MD: net/minecraft/world/level/block/state/properties/NoteBlockInstrument/ (Ljava/lang/String;ILjava/lang/String;Lnet/minecraft/core/Holder;Lnet/minecraft/world/level/block/state/properties/NoteBlockInstrument$Type;)V net/minecraft/world/level/block/state/properties/NoteBlockInstrument/ (Ljava/lang/String;ILjava/lang/String;Lnet/minecraft/core/Holder;Lnet/minecraft/world/level/block/state/properties/NoteBlockInstrument$Type;)V +MD: net/minecraft/world/level/block/state/properties/NoteBlockInstrument/m_156026_ ()[Lnet/minecraft/world/level/block/state/properties/NoteBlockInstrument; net/minecraft/world/level/block/state/properties/NoteBlockInstrument/$values ()[Lnet/minecraft/world/level/block/state/properties/NoteBlockInstrument; +MD: net/minecraft/world/level/block/state/properties/NoteBlockInstrument/m_262394_ ()Z net/minecraft/world/level/block/state/properties/NoteBlockInstrument/hasCustomSound ()Z +MD: net/minecraft/world/level/block/state/properties/NoteBlockInstrument/m_262503_ ()Z net/minecraft/world/level/block/state/properties/NoteBlockInstrument/isTunable ()Z +MD: net/minecraft/world/level/block/state/properties/NoteBlockInstrument/m_263188_ ()Lnet/minecraft/core/Holder; net/minecraft/world/level/block/state/properties/NoteBlockInstrument/getSoundEvent ()Lnet/minecraft/core/Holder; +MD: net/minecraft/world/level/block/state/properties/NoteBlockInstrument/m_280504_ ()Z net/minecraft/world/level/block/state/properties/NoteBlockInstrument/worksAboveNoteBlock ()Z +MD: net/minecraft/world/level/block/state/properties/NoteBlockInstrument/m_7912_ ()Ljava/lang/String; net/minecraft/world/level/block/state/properties/NoteBlockInstrument/getSerializedName ()Ljava/lang/String; +MD: net/minecraft/world/level/block/state/properties/NoteBlockInstrument/valueOf (Ljava/lang/String;)Lnet/minecraft/world/level/block/state/properties/NoteBlockInstrument; net/minecraft/world/level/block/state/properties/NoteBlockInstrument/valueOf (Ljava/lang/String;)Lnet/minecraft/world/level/block/state/properties/NoteBlockInstrument; +MD: net/minecraft/world/level/block/state/properties/NoteBlockInstrument/values ()[Lnet/minecraft/world/level/block/state/properties/NoteBlockInstrument; net/minecraft/world/level/block/state/properties/NoteBlockInstrument/values ()[Lnet/minecraft/world/level/block/state/properties/NoteBlockInstrument; +MD: net/minecraft/world/level/block/state/properties/NoteBlockInstrument$Type/ ()V net/minecraft/world/level/block/state/properties/NoteBlockInstrument$Type/ ()V +MD: net/minecraft/world/level/block/state/properties/NoteBlockInstrument$Type/ (Ljava/lang/String;I)V net/minecraft/world/level/block/state/properties/NoteBlockInstrument$Type/ (Ljava/lang/String;I)V +MD: net/minecraft/world/level/block/state/properties/NoteBlockInstrument$Type/m_262420_ ()[Lnet/minecraft/world/level/block/state/properties/NoteBlockInstrument$Type; net/minecraft/world/level/block/state/properties/NoteBlockInstrument$Type/$values ()[Lnet/minecraft/world/level/block/state/properties/NoteBlockInstrument$Type; +MD: net/minecraft/world/level/block/state/properties/NoteBlockInstrument$Type/valueOf (Ljava/lang/String;)Lnet/minecraft/world/level/block/state/properties/NoteBlockInstrument$Type; net/minecraft/world/level/block/state/properties/NoteBlockInstrument$Type/valueOf (Ljava/lang/String;)Lnet/minecraft/world/level/block/state/properties/NoteBlockInstrument$Type; +MD: net/minecraft/world/level/block/state/properties/NoteBlockInstrument$Type/values ()[Lnet/minecraft/world/level/block/state/properties/NoteBlockInstrument$Type; net/minecraft/world/level/block/state/properties/NoteBlockInstrument$Type/values ()[Lnet/minecraft/world/level/block/state/properties/NoteBlockInstrument$Type; +MD: net/minecraft/world/level/block/state/properties/PistonType/ ()V net/minecraft/world/level/block/state/properties/PistonType/ ()V +MD: net/minecraft/world/level/block/state/properties/PistonType/ (Ljava/lang/String;ILjava/lang/String;)V net/minecraft/world/level/block/state/properties/PistonType/ (Ljava/lang/String;ILjava/lang/String;)V +MD: net/minecraft/world/level/block/state/properties/PistonType/m_156027_ ()[Lnet/minecraft/world/level/block/state/properties/PistonType; net/minecraft/world/level/block/state/properties/PistonType/$values ()[Lnet/minecraft/world/level/block/state/properties/PistonType; +MD: net/minecraft/world/level/block/state/properties/PistonType/m_7912_ ()Ljava/lang/String; net/minecraft/world/level/block/state/properties/PistonType/getSerializedName ()Ljava/lang/String; +MD: net/minecraft/world/level/block/state/properties/PistonType/toString ()Ljava/lang/String; net/minecraft/world/level/block/state/properties/PistonType/toString ()Ljava/lang/String; +MD: net/minecraft/world/level/block/state/properties/PistonType/valueOf (Ljava/lang/String;)Lnet/minecraft/world/level/block/state/properties/PistonType; net/minecraft/world/level/block/state/properties/PistonType/valueOf (Ljava/lang/String;)Lnet/minecraft/world/level/block/state/properties/PistonType; +MD: net/minecraft/world/level/block/state/properties/PistonType/values ()[Lnet/minecraft/world/level/block/state/properties/PistonType; net/minecraft/world/level/block/state/properties/PistonType/values ()[Lnet/minecraft/world/level/block/state/properties/PistonType; +MD: net/minecraft/world/level/block/state/properties/Property/ (Ljava/lang/String;Ljava/lang/Class;)V net/minecraft/world/level/block/state/properties/Property/ (Ljava/lang/String;Ljava/lang/Class;)V +MD: net/minecraft/world/level/block/state/properties/Property/equals (Ljava/lang/Object;)Z net/minecraft/world/level/block/state/properties/Property/equals (Ljava/lang/Object;)Z +MD: net/minecraft/world/level/block/state/properties/Property/hashCode ()I net/minecraft/world/level/block/state/properties/Property/hashCode ()I +MD: net/minecraft/world/level/block/state/properties/Property/m_156028_ (Lnet/minecraft/world/level/block/state/StateHolder;Ljava/lang/Comparable;)Lnet/minecraft/world/level/block/state/StateHolder; net/minecraft/world/level/block/state/properties/Property/lambda$parseValue$3 (Lnet/minecraft/world/level/block/state/StateHolder;Ljava/lang/Comparable;)Lnet/minecraft/world/level/block/state/StateHolder; +MD: net/minecraft/world/level/block/state/properties/Property/m_156031_ (Lcom/mojang/serialization/DynamicOps;Lnet/minecraft/world/level/block/state/StateHolder;Ljava/lang/Object;)Lcom/mojang/serialization/DataResult; net/minecraft/world/level/block/state/properties/Property/parseValue (Lcom/mojang/serialization/DynamicOps;Lnet/minecraft/world/level/block/state/StateHolder;Ljava/lang/Object;)Lcom/mojang/serialization/DataResult; +MD: net/minecraft/world/level/block/state/properties/Property/m_156037_ ()Lcom/mojang/serialization/Codec; net/minecraft/world/level/block/state/properties/Property/codec ()Lcom/mojang/serialization/Codec; +MD: net/minecraft/world/level/block/state/properties/Property/m_274277_ (Ljava/lang/String;)Ljava/lang/String; net/minecraft/world/level/block/state/properties/Property/lambda$new$0 (Ljava/lang/String;)Ljava/lang/String; +MD: net/minecraft/world/level/block/state/properties/Property/m_274278_ (Ljava/lang/String;)Lcom/mojang/serialization/DataResult; net/minecraft/world/level/block/state/properties/Property/lambda$new$1 (Ljava/lang/String;)Lcom/mojang/serialization/DataResult; +MD: net/minecraft/world/level/block/state/properties/Property/m_61694_ (Lnet/minecraft/world/level/block/state/StateHolder;)Lnet/minecraft/world/level/block/state/properties/Property$Value; net/minecraft/world/level/block/state/properties/Property/value (Lnet/minecraft/world/level/block/state/StateHolder;)Lnet/minecraft/world/level/block/state/properties/Property$Value; +MD: net/minecraft/world/level/block/state/properties/Property/m_61697_ (Ljava/lang/String;)Lcom/mojang/serialization/DataResult; net/minecraft/world/level/block/state/properties/Property/lambda$new$2 (Ljava/lang/String;)Lcom/mojang/serialization/DataResult; +MD: net/minecraft/world/level/block/state/properties/Property/m_61699_ (Ljava/lang/Comparable;)Lnet/minecraft/world/level/block/state/properties/Property$Value; net/minecraft/world/level/block/state/properties/Property/value (Ljava/lang/Comparable;)Lnet/minecraft/world/level/block/state/properties/Property$Value; +MD: net/minecraft/world/level/block/state/properties/Property/m_61702_ ()Ljava/util/stream/Stream; net/minecraft/world/level/block/state/properties/Property/getAllValues ()Ljava/util/stream/Stream; +MD: net/minecraft/world/level/block/state/properties/Property/m_61705_ ()Lcom/mojang/serialization/Codec; net/minecraft/world/level/block/state/properties/Property/valueCodec ()Lcom/mojang/serialization/Codec; +MD: net/minecraft/world/level/block/state/properties/Property/m_61708_ ()Ljava/lang/String; net/minecraft/world/level/block/state/properties/Property/getName ()Ljava/lang/String; +MD: net/minecraft/world/level/block/state/properties/Property/m_61709_ ()Ljava/lang/Class; net/minecraft/world/level/block/state/properties/Property/getValueClass ()Ljava/lang/Class; +MD: net/minecraft/world/level/block/state/properties/Property/m_6215_ (Ljava/lang/String;)Ljava/util/Optional; net/minecraft/world/level/block/state/properties/Property/getValue (Ljava/lang/String;)Ljava/util/Optional; +MD: net/minecraft/world/level/block/state/properties/Property/m_6310_ ()I net/minecraft/world/level/block/state/properties/Property/generateHashCode ()I +MD: net/minecraft/world/level/block/state/properties/Property/m_6908_ ()Ljava/util/Collection; net/minecraft/world/level/block/state/properties/Property/getPossibleValues ()Ljava/util/Collection; +MD: net/minecraft/world/level/block/state/properties/Property/m_6940_ (Ljava/lang/Comparable;)Ljava/lang/String; net/minecraft/world/level/block/state/properties/Property/getName (Ljava/lang/Comparable;)Ljava/lang/String; +MD: net/minecraft/world/level/block/state/properties/Property/toString ()Ljava/lang/String; net/minecraft/world/level/block/state/properties/Property/toString ()Ljava/lang/String; +MD: net/minecraft/world/level/block/state/properties/Property$Value/ (Lnet/minecraft/world/level/block/state/properties/Property;Ljava/lang/Comparable;)V net/minecraft/world/level/block/state/properties/Property$Value/ (Lnet/minecraft/world/level/block/state/properties/Property;Ljava/lang/Comparable;)V +MD: net/minecraft/world/level/block/state/properties/Property$Value/equals (Ljava/lang/Object;)Z net/minecraft/world/level/block/state/properties/Property$Value/equals (Ljava/lang/Object;)Z +MD: net/minecraft/world/level/block/state/properties/Property$Value/f_61712_ ()Lnet/minecraft/world/level/block/state/properties/Property; net/minecraft/world/level/block/state/properties/Property$Value/property ()Lnet/minecraft/world/level/block/state/properties/Property; +MD: net/minecraft/world/level/block/state/properties/Property$Value/f_61713_ ()Ljava/lang/Comparable; net/minecraft/world/level/block/state/properties/Property$Value/value ()Ljava/lang/Comparable; +MD: net/minecraft/world/level/block/state/properties/Property$Value/hashCode ()I net/minecraft/world/level/block/state/properties/Property$Value/hashCode ()I +MD: net/minecraft/world/level/block/state/properties/Property$Value/toString ()Ljava/lang/String; net/minecraft/world/level/block/state/properties/Property$Value/toString ()Ljava/lang/String; +MD: net/minecraft/world/level/block/state/properties/RailShape/ ()V net/minecraft/world/level/block/state/properties/RailShape/ ()V +MD: net/minecraft/world/level/block/state/properties/RailShape/ (Ljava/lang/String;ILjava/lang/String;)V net/minecraft/world/level/block/state/properties/RailShape/ (Ljava/lang/String;ILjava/lang/String;)V +MD: net/minecraft/world/level/block/state/properties/RailShape/m_156038_ ()Ljava/lang/String; net/minecraft/world/level/block/state/properties/RailShape/getName ()Ljava/lang/String; +MD: net/minecraft/world/level/block/state/properties/RailShape/m_156039_ ()[Lnet/minecraft/world/level/block/state/properties/RailShape; net/minecraft/world/level/block/state/properties/RailShape/$values ()[Lnet/minecraft/world/level/block/state/properties/RailShape; +MD: net/minecraft/world/level/block/state/properties/RailShape/m_61745_ ()Z net/minecraft/world/level/block/state/properties/RailShape/isAscending ()Z +MD: net/minecraft/world/level/block/state/properties/RailShape/m_7912_ ()Ljava/lang/String; net/minecraft/world/level/block/state/properties/RailShape/getSerializedName ()Ljava/lang/String; +MD: net/minecraft/world/level/block/state/properties/RailShape/toString ()Ljava/lang/String; net/minecraft/world/level/block/state/properties/RailShape/toString ()Ljava/lang/String; +MD: net/minecraft/world/level/block/state/properties/RailShape/valueOf (Ljava/lang/String;)Lnet/minecraft/world/level/block/state/properties/RailShape; net/minecraft/world/level/block/state/properties/RailShape/valueOf (Ljava/lang/String;)Lnet/minecraft/world/level/block/state/properties/RailShape; +MD: net/minecraft/world/level/block/state/properties/RailShape/values ()[Lnet/minecraft/world/level/block/state/properties/RailShape; net/minecraft/world/level/block/state/properties/RailShape/values ()[Lnet/minecraft/world/level/block/state/properties/RailShape; +MD: net/minecraft/world/level/block/state/properties/RedstoneSide/ ()V net/minecraft/world/level/block/state/properties/RedstoneSide/ ()V +MD: net/minecraft/world/level/block/state/properties/RedstoneSide/ (Ljava/lang/String;ILjava/lang/String;)V net/minecraft/world/level/block/state/properties/RedstoneSide/ (Ljava/lang/String;ILjava/lang/String;)V +MD: net/minecraft/world/level/block/state/properties/RedstoneSide/m_156040_ ()[Lnet/minecraft/world/level/block/state/properties/RedstoneSide; net/minecraft/world/level/block/state/properties/RedstoneSide/$values ()[Lnet/minecraft/world/level/block/state/properties/RedstoneSide; +MD: net/minecraft/world/level/block/state/properties/RedstoneSide/m_61761_ ()Z net/minecraft/world/level/block/state/properties/RedstoneSide/isConnected ()Z +MD: net/minecraft/world/level/block/state/properties/RedstoneSide/m_7912_ ()Ljava/lang/String; net/minecraft/world/level/block/state/properties/RedstoneSide/getSerializedName ()Ljava/lang/String; +MD: net/minecraft/world/level/block/state/properties/RedstoneSide/toString ()Ljava/lang/String; net/minecraft/world/level/block/state/properties/RedstoneSide/toString ()Ljava/lang/String; +MD: net/minecraft/world/level/block/state/properties/RedstoneSide/valueOf (Ljava/lang/String;)Lnet/minecraft/world/level/block/state/properties/RedstoneSide; net/minecraft/world/level/block/state/properties/RedstoneSide/valueOf (Ljava/lang/String;)Lnet/minecraft/world/level/block/state/properties/RedstoneSide; +MD: net/minecraft/world/level/block/state/properties/RedstoneSide/values ()[Lnet/minecraft/world/level/block/state/properties/RedstoneSide; net/minecraft/world/level/block/state/properties/RedstoneSide/values ()[Lnet/minecraft/world/level/block/state/properties/RedstoneSide; +MD: net/minecraft/world/level/block/state/properties/RotationSegment/ ()V net/minecraft/world/level/block/state/properties/RotationSegment/ ()V +MD: net/minecraft/world/level/block/state/properties/RotationSegment/ ()V net/minecraft/world/level/block/state/properties/RotationSegment/ ()V +MD: net/minecraft/world/level/block/state/properties/RotationSegment/m_245107_ (I)F net/minecraft/world/level/block/state/properties/RotationSegment/convertToDegrees (I)F +MD: net/minecraft/world/level/block/state/properties/RotationSegment/m_245225_ (Lnet/minecraft/core/Direction;)I net/minecraft/world/level/block/state/properties/RotationSegment/convertToSegment (Lnet/minecraft/core/Direction;)I +MD: net/minecraft/world/level/block/state/properties/RotationSegment/m_246374_ (F)I net/minecraft/world/level/block/state/properties/RotationSegment/convertToSegment (F)I +MD: net/minecraft/world/level/block/state/properties/RotationSegment/m_247348_ ()I net/minecraft/world/level/block/state/properties/RotationSegment/getMaxSegmentIndex ()I +MD: net/minecraft/world/level/block/state/properties/RotationSegment/m_247487_ (I)Ljava/util/Optional; net/minecraft/world/level/block/state/properties/RotationSegment/convertToDirection (I)Ljava/util/Optional; +MD: net/minecraft/world/level/block/state/properties/SculkSensorPhase/ ()V net/minecraft/world/level/block/state/properties/SculkSensorPhase/ ()V +MD: net/minecraft/world/level/block/state/properties/SculkSensorPhase/ (Ljava/lang/String;ILjava/lang/String;)V net/minecraft/world/level/block/state/properties/SculkSensorPhase/ (Ljava/lang/String;ILjava/lang/String;)V +MD: net/minecraft/world/level/block/state/properties/SculkSensorPhase/m_156051_ ()[Lnet/minecraft/world/level/block/state/properties/SculkSensorPhase; net/minecraft/world/level/block/state/properties/SculkSensorPhase/$values ()[Lnet/minecraft/world/level/block/state/properties/SculkSensorPhase; +MD: net/minecraft/world/level/block/state/properties/SculkSensorPhase/m_7912_ ()Ljava/lang/String; net/minecraft/world/level/block/state/properties/SculkSensorPhase/getSerializedName ()Ljava/lang/String; +MD: net/minecraft/world/level/block/state/properties/SculkSensorPhase/toString ()Ljava/lang/String; net/minecraft/world/level/block/state/properties/SculkSensorPhase/toString ()Ljava/lang/String; +MD: net/minecraft/world/level/block/state/properties/SculkSensorPhase/valueOf (Ljava/lang/String;)Lnet/minecraft/world/level/block/state/properties/SculkSensorPhase; net/minecraft/world/level/block/state/properties/SculkSensorPhase/valueOf (Ljava/lang/String;)Lnet/minecraft/world/level/block/state/properties/SculkSensorPhase; +MD: net/minecraft/world/level/block/state/properties/SculkSensorPhase/values ()[Lnet/minecraft/world/level/block/state/properties/SculkSensorPhase; net/minecraft/world/level/block/state/properties/SculkSensorPhase/values ()[Lnet/minecraft/world/level/block/state/properties/SculkSensorPhase; +MD: net/minecraft/world/level/block/state/properties/SlabType/ ()V net/minecraft/world/level/block/state/properties/SlabType/ ()V +MD: net/minecraft/world/level/block/state/properties/SlabType/ (Ljava/lang/String;ILjava/lang/String;)V net/minecraft/world/level/block/state/properties/SlabType/ (Ljava/lang/String;ILjava/lang/String;)V +MD: net/minecraft/world/level/block/state/properties/SlabType/m_156057_ ()[Lnet/minecraft/world/level/block/state/properties/SlabType; net/minecraft/world/level/block/state/properties/SlabType/$values ()[Lnet/minecraft/world/level/block/state/properties/SlabType; +MD: net/minecraft/world/level/block/state/properties/SlabType/m_7912_ ()Ljava/lang/String; net/minecraft/world/level/block/state/properties/SlabType/getSerializedName ()Ljava/lang/String; +MD: net/minecraft/world/level/block/state/properties/SlabType/toString ()Ljava/lang/String; net/minecraft/world/level/block/state/properties/SlabType/toString ()Ljava/lang/String; +MD: net/minecraft/world/level/block/state/properties/SlabType/valueOf (Ljava/lang/String;)Lnet/minecraft/world/level/block/state/properties/SlabType; net/minecraft/world/level/block/state/properties/SlabType/valueOf (Ljava/lang/String;)Lnet/minecraft/world/level/block/state/properties/SlabType; +MD: net/minecraft/world/level/block/state/properties/SlabType/values ()[Lnet/minecraft/world/level/block/state/properties/SlabType; net/minecraft/world/level/block/state/properties/SlabType/values ()[Lnet/minecraft/world/level/block/state/properties/SlabType; +MD: net/minecraft/world/level/block/state/properties/StairsShape/ ()V net/minecraft/world/level/block/state/properties/StairsShape/ ()V +MD: net/minecraft/world/level/block/state/properties/StairsShape/ (Ljava/lang/String;ILjava/lang/String;)V net/minecraft/world/level/block/state/properties/StairsShape/ (Ljava/lang/String;ILjava/lang/String;)V +MD: net/minecraft/world/level/block/state/properties/StairsShape/m_156069_ ()[Lnet/minecraft/world/level/block/state/properties/StairsShape; net/minecraft/world/level/block/state/properties/StairsShape/$values ()[Lnet/minecraft/world/level/block/state/properties/StairsShape; +MD: net/minecraft/world/level/block/state/properties/StairsShape/m_7912_ ()Ljava/lang/String; net/minecraft/world/level/block/state/properties/StairsShape/getSerializedName ()Ljava/lang/String; +MD: net/minecraft/world/level/block/state/properties/StairsShape/toString ()Ljava/lang/String; net/minecraft/world/level/block/state/properties/StairsShape/toString ()Ljava/lang/String; +MD: net/minecraft/world/level/block/state/properties/StairsShape/valueOf (Ljava/lang/String;)Lnet/minecraft/world/level/block/state/properties/StairsShape; net/minecraft/world/level/block/state/properties/StairsShape/valueOf (Ljava/lang/String;)Lnet/minecraft/world/level/block/state/properties/StairsShape; +MD: net/minecraft/world/level/block/state/properties/StairsShape/values ()[Lnet/minecraft/world/level/block/state/properties/StairsShape; net/minecraft/world/level/block/state/properties/StairsShape/values ()[Lnet/minecraft/world/level/block/state/properties/StairsShape; +MD: net/minecraft/world/level/block/state/properties/StructureMode/ ()V net/minecraft/world/level/block/state/properties/StructureMode/ ()V +MD: net/minecraft/world/level/block/state/properties/StructureMode/ (Ljava/lang/String;ILjava/lang/String;)V net/minecraft/world/level/block/state/properties/StructureMode/ (Ljava/lang/String;ILjava/lang/String;)V +MD: net/minecraft/world/level/block/state/properties/StructureMode/m_156070_ ()[Lnet/minecraft/world/level/block/state/properties/StructureMode; net/minecraft/world/level/block/state/properties/StructureMode/$values ()[Lnet/minecraft/world/level/block/state/properties/StructureMode; +MD: net/minecraft/world/level/block/state/properties/StructureMode/m_61811_ ()Lnet/minecraft/network/chat/Component; net/minecraft/world/level/block/state/properties/StructureMode/getDisplayName ()Lnet/minecraft/network/chat/Component; +MD: net/minecraft/world/level/block/state/properties/StructureMode/m_7912_ ()Ljava/lang/String; net/minecraft/world/level/block/state/properties/StructureMode/getSerializedName ()Ljava/lang/String; +MD: net/minecraft/world/level/block/state/properties/StructureMode/valueOf (Ljava/lang/String;)Lnet/minecraft/world/level/block/state/properties/StructureMode; net/minecraft/world/level/block/state/properties/StructureMode/valueOf (Ljava/lang/String;)Lnet/minecraft/world/level/block/state/properties/StructureMode; +MD: net/minecraft/world/level/block/state/properties/StructureMode/values ()[Lnet/minecraft/world/level/block/state/properties/StructureMode; net/minecraft/world/level/block/state/properties/StructureMode/values ()[Lnet/minecraft/world/level/block/state/properties/StructureMode; +MD: net/minecraft/world/level/block/state/properties/Tilt/ ()V net/minecraft/world/level/block/state/properties/Tilt/ ()V +MD: net/minecraft/world/level/block/state/properties/Tilt/ (Ljava/lang/String;ILjava/lang/String;Z)V net/minecraft/world/level/block/state/properties/Tilt/ (Ljava/lang/String;ILjava/lang/String;Z)V +MD: net/minecraft/world/level/block/state/properties/Tilt/m_156084_ ()Z net/minecraft/world/level/block/state/properties/Tilt/causesVibration ()Z +MD: net/minecraft/world/level/block/state/properties/Tilt/m_156085_ ()[Lnet/minecraft/world/level/block/state/properties/Tilt; net/minecraft/world/level/block/state/properties/Tilt/$values ()[Lnet/minecraft/world/level/block/state/properties/Tilt; +MD: net/minecraft/world/level/block/state/properties/Tilt/m_7912_ ()Ljava/lang/String; net/minecraft/world/level/block/state/properties/Tilt/getSerializedName ()Ljava/lang/String; +MD: net/minecraft/world/level/block/state/properties/Tilt/valueOf (Ljava/lang/String;)Lnet/minecraft/world/level/block/state/properties/Tilt; net/minecraft/world/level/block/state/properties/Tilt/valueOf (Ljava/lang/String;)Lnet/minecraft/world/level/block/state/properties/Tilt; +MD: net/minecraft/world/level/block/state/properties/Tilt/values ()[Lnet/minecraft/world/level/block/state/properties/Tilt; net/minecraft/world/level/block/state/properties/Tilt/values ()[Lnet/minecraft/world/level/block/state/properties/Tilt; +MD: net/minecraft/world/level/block/state/properties/WallSide/ ()V net/minecraft/world/level/block/state/properties/WallSide/ ()V +MD: net/minecraft/world/level/block/state/properties/WallSide/ (Ljava/lang/String;ILjava/lang/String;)V net/minecraft/world/level/block/state/properties/WallSide/ (Ljava/lang/String;ILjava/lang/String;)V +MD: net/minecraft/world/level/block/state/properties/WallSide/m_156090_ ()[Lnet/minecraft/world/level/block/state/properties/WallSide; net/minecraft/world/level/block/state/properties/WallSide/$values ()[Lnet/minecraft/world/level/block/state/properties/WallSide; +MD: net/minecraft/world/level/block/state/properties/WallSide/m_7912_ ()Ljava/lang/String; net/minecraft/world/level/block/state/properties/WallSide/getSerializedName ()Ljava/lang/String; +MD: net/minecraft/world/level/block/state/properties/WallSide/toString ()Ljava/lang/String; net/minecraft/world/level/block/state/properties/WallSide/toString ()Ljava/lang/String; +MD: net/minecraft/world/level/block/state/properties/WallSide/valueOf (Ljava/lang/String;)Lnet/minecraft/world/level/block/state/properties/WallSide; net/minecraft/world/level/block/state/properties/WallSide/valueOf (Ljava/lang/String;)Lnet/minecraft/world/level/block/state/properties/WallSide; +MD: net/minecraft/world/level/block/state/properties/WallSide/values ()[Lnet/minecraft/world/level/block/state/properties/WallSide; net/minecraft/world/level/block/state/properties/WallSide/values ()[Lnet/minecraft/world/level/block/state/properties/WallSide; +MD: net/minecraft/world/level/block/state/properties/WoodType/ ()V net/minecraft/world/level/block/state/properties/WoodType/ ()V +MD: net/minecraft/world/level/block/state/properties/WoodType/ (Ljava/lang/String;Lnet/minecraft/world/level/block/state/properties/BlockSetType;Lnet/minecraft/world/level/block/SoundType;Lnet/minecraft/world/level/block/SoundType;Lnet/minecraft/sounds/SoundEvent;Lnet/minecraft/sounds/SoundEvent;)V net/minecraft/world/level/block/state/properties/WoodType/ (Ljava/lang/String;Lnet/minecraft/world/level/block/state/properties/BlockSetType;Lnet/minecraft/world/level/block/SoundType;Lnet/minecraft/world/level/block/SoundType;Lnet/minecraft/sounds/SoundEvent;Lnet/minecraft/sounds/SoundEvent;)V +MD: net/minecraft/world/level/block/state/properties/WoodType/ (Ljava/lang/String;Lnet/minecraft/world/level/block/state/properties/BlockSetType;)V net/minecraft/world/level/block/state/properties/WoodType/ (Ljava/lang/String;Lnet/minecraft/world/level/block/state/properties/BlockSetType;)V +MD: net/minecraft/world/level/block/state/properties/WoodType/equals (Ljava/lang/Object;)Z net/minecraft/world/level/block/state/properties/WoodType/equals (Ljava/lang/Object;)Z +MD: net/minecraft/world/level/block/state/properties/WoodType/f_271162_ ()Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/level/block/state/properties/WoodType/fenceGateOpen ()Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/level/block/state/properties/WoodType/f_271309_ ()Lnet/minecraft/world/level/block/SoundType; net/minecraft/world/level/block/state/properties/WoodType/hangingSignSoundType ()Lnet/minecraft/world/level/block/SoundType; +MD: net/minecraft/world/level/block/state/properties/WoodType/f_271317_ ()Lnet/minecraft/world/level/block/SoundType; net/minecraft/world/level/block/state/properties/WoodType/soundType ()Lnet/minecraft/world/level/block/SoundType; +MD: net/minecraft/world/level/block/state/properties/WoodType/f_271340_ ()Lnet/minecraft/world/level/block/state/properties/BlockSetType; net/minecraft/world/level/block/state/properties/WoodType/setType ()Lnet/minecraft/world/level/block/state/properties/BlockSetType; +MD: net/minecraft/world/level/block/state/properties/WoodType/f_271365_ ()Lnet/minecraft/sounds/SoundEvent; net/minecraft/world/level/block/state/properties/WoodType/fenceGateClose ()Lnet/minecraft/sounds/SoundEvent; +MD: net/minecraft/world/level/block/state/properties/WoodType/f_61839_ ()Ljava/lang/String; net/minecraft/world/level/block/state/properties/WoodType/name ()Ljava/lang/String; +MD: net/minecraft/world/level/block/state/properties/WoodType/hashCode ()I net/minecraft/world/level/block/state/properties/WoodType/hashCode ()I +MD: net/minecraft/world/level/block/state/properties/WoodType/m_61843_ ()Ljava/util/stream/Stream; net/minecraft/world/level/block/state/properties/WoodType/values ()Ljava/util/stream/Stream; +MD: net/minecraft/world/level/block/state/properties/WoodType/m_61844_ (Lnet/minecraft/world/level/block/state/properties/WoodType;)Lnet/minecraft/world/level/block/state/properties/WoodType; net/minecraft/world/level/block/state/properties/WoodType/register (Lnet/minecraft/world/level/block/state/properties/WoodType;)Lnet/minecraft/world/level/block/state/properties/WoodType; +MD: net/minecraft/world/level/block/state/properties/WoodType/toString ()Ljava/lang/String; net/minecraft/world/level/block/state/properties/WoodType/toString ()Ljava/lang/String; +MD: net/minecraft/world/level/border/BorderChangeListener/m_5903_ (Lnet/minecraft/world/level/border/WorldBorder;I)V net/minecraft/world/level/border/BorderChangeListener/onBorderSetWarningBlocks (Lnet/minecraft/world/level/border/WorldBorder;I)V +MD: net/minecraft/world/level/border/BorderChangeListener/m_5904_ (Lnet/minecraft/world/level/border/WorldBorder;I)V net/minecraft/world/level/border/BorderChangeListener/onBorderSetWarningTime (Lnet/minecraft/world/level/border/WorldBorder;I)V +MD: net/minecraft/world/level/border/BorderChangeListener/m_6312_ (Lnet/minecraft/world/level/border/WorldBorder;D)V net/minecraft/world/level/border/BorderChangeListener/onBorderSizeSet (Lnet/minecraft/world/level/border/WorldBorder;D)V +MD: net/minecraft/world/level/border/BorderChangeListener/m_6313_ (Lnet/minecraft/world/level/border/WorldBorder;D)V net/minecraft/world/level/border/BorderChangeListener/onBorderSetDamageSafeZOne (Lnet/minecraft/world/level/border/WorldBorder;D)V +MD: net/minecraft/world/level/border/BorderChangeListener/m_6315_ (Lnet/minecraft/world/level/border/WorldBorder;D)V net/minecraft/world/level/border/BorderChangeListener/onBorderSetDamagePerBlock (Lnet/minecraft/world/level/border/WorldBorder;D)V +MD: net/minecraft/world/level/border/BorderChangeListener/m_6689_ (Lnet/minecraft/world/level/border/WorldBorder;DDJ)V net/minecraft/world/level/border/BorderChangeListener/onBorderSizeLerping (Lnet/minecraft/world/level/border/WorldBorder;DDJ)V +MD: net/minecraft/world/level/border/BorderChangeListener/m_7721_ (Lnet/minecraft/world/level/border/WorldBorder;DD)V net/minecraft/world/level/border/BorderChangeListener/onBorderCenterSet (Lnet/minecraft/world/level/border/WorldBorder;DD)V +MD: net/minecraft/world/level/border/BorderChangeListener$DelegateBorderChangeListener/ (Lnet/minecraft/world/level/border/WorldBorder;)V net/minecraft/world/level/border/BorderChangeListener$DelegateBorderChangeListener/ (Lnet/minecraft/world/level/border/WorldBorder;)V +MD: net/minecraft/world/level/border/BorderChangeListener$DelegateBorderChangeListener/m_5903_ (Lnet/minecraft/world/level/border/WorldBorder;I)V net/minecraft/world/level/border/BorderChangeListener$DelegateBorderChangeListener/onBorderSetWarningBlocks (Lnet/minecraft/world/level/border/WorldBorder;I)V +MD: net/minecraft/world/level/border/BorderChangeListener$DelegateBorderChangeListener/m_5904_ (Lnet/minecraft/world/level/border/WorldBorder;I)V net/minecraft/world/level/border/BorderChangeListener$DelegateBorderChangeListener/onBorderSetWarningTime (Lnet/minecraft/world/level/border/WorldBorder;I)V +MD: net/minecraft/world/level/border/BorderChangeListener$DelegateBorderChangeListener/m_6312_ (Lnet/minecraft/world/level/border/WorldBorder;D)V net/minecraft/world/level/border/BorderChangeListener$DelegateBorderChangeListener/onBorderSizeSet (Lnet/minecraft/world/level/border/WorldBorder;D)V +MD: net/minecraft/world/level/border/BorderChangeListener$DelegateBorderChangeListener/m_6313_ (Lnet/minecraft/world/level/border/WorldBorder;D)V net/minecraft/world/level/border/BorderChangeListener$DelegateBorderChangeListener/onBorderSetDamageSafeZOne (Lnet/minecraft/world/level/border/WorldBorder;D)V +MD: net/minecraft/world/level/border/BorderChangeListener$DelegateBorderChangeListener/m_6315_ (Lnet/minecraft/world/level/border/WorldBorder;D)V net/minecraft/world/level/border/BorderChangeListener$DelegateBorderChangeListener/onBorderSetDamagePerBlock (Lnet/minecraft/world/level/border/WorldBorder;D)V +MD: net/minecraft/world/level/border/BorderChangeListener$DelegateBorderChangeListener/m_6689_ (Lnet/minecraft/world/level/border/WorldBorder;DDJ)V net/minecraft/world/level/border/BorderChangeListener$DelegateBorderChangeListener/onBorderSizeLerping (Lnet/minecraft/world/level/border/WorldBorder;DDJ)V +MD: net/minecraft/world/level/border/BorderChangeListener$DelegateBorderChangeListener/m_7721_ (Lnet/minecraft/world/level/border/WorldBorder;DD)V net/minecraft/world/level/border/BorderChangeListener$DelegateBorderChangeListener/onBorderCenterSet (Lnet/minecraft/world/level/border/WorldBorder;DD)V +MD: net/minecraft/world/level/border/BorderStatus/ ()V net/minecraft/world/level/border/BorderStatus/ ()V +MD: net/minecraft/world/level/border/BorderStatus/ (Ljava/lang/String;II)V net/minecraft/world/level/border/BorderStatus/ (Ljava/lang/String;II)V +MD: net/minecraft/world/level/border/BorderStatus/m_156091_ ()[Lnet/minecraft/world/level/border/BorderStatus; net/minecraft/world/level/border/BorderStatus/$values ()[Lnet/minecraft/world/level/border/BorderStatus; +MD: net/minecraft/world/level/border/BorderStatus/m_61901_ ()I net/minecraft/world/level/border/BorderStatus/getColor ()I +MD: net/minecraft/world/level/border/BorderStatus/valueOf (Ljava/lang/String;)Lnet/minecraft/world/level/border/BorderStatus; net/minecraft/world/level/border/BorderStatus/valueOf (Ljava/lang/String;)Lnet/minecraft/world/level/border/BorderStatus; +MD: net/minecraft/world/level/border/BorderStatus/values ()[Lnet/minecraft/world/level/border/BorderStatus; net/minecraft/world/level/border/BorderStatus/values ()[Lnet/minecraft/world/level/border/BorderStatus; +MD: net/minecraft/world/level/border/WorldBorder/ ()V net/minecraft/world/level/border/WorldBorder/ ()V +MD: net/minecraft/world/level/border/WorldBorder/ ()V net/minecraft/world/level/border/WorldBorder/ ()V +MD: net/minecraft/world/level/border/WorldBorder/m_156093_ (DD)Z net/minecraft/world/level/border/WorldBorder/isWithinBounds (DD)Z +MD: net/minecraft/world/level/border/WorldBorder/m_156096_ (Lnet/minecraft/world/level/border/BorderChangeListener;)V net/minecraft/world/level/border/WorldBorder/removeListener (Lnet/minecraft/world/level/border/BorderChangeListener;)V +MD: net/minecraft/world/level/border/WorldBorder/m_187562_ (DDD)Z net/minecraft/world/level/border/WorldBorder/isWithinBounds (DDD)Z +MD: net/minecraft/world/level/border/WorldBorder/m_187566_ (Lnet/minecraft/world/entity/Entity;Lnet/minecraft/world/phys/AABB;)Z net/minecraft/world/level/border/WorldBorder/isInsideCloseToBorder (Lnet/minecraft/world/entity/Entity;Lnet/minecraft/world/phys/AABB;)Z +MD: net/minecraft/world/level/border/WorldBorder/m_187569_ (DDD)Lnet/minecraft/core/BlockPos; net/minecraft/world/level/border/WorldBorder/clampToBounds (DDD)Lnet/minecraft/core/BlockPos; +MD: net/minecraft/world/level/border/WorldBorder/m_61917_ (D)V net/minecraft/world/level/border/WorldBorder/setSize (D)V +MD: net/minecraft/world/level/border/WorldBorder/m_61919_ (DDJ)V net/minecraft/world/level/border/WorldBorder/lerpSizeBetween (DDJ)V +MD: net/minecraft/world/level/border/WorldBorder/m_61923_ (I)V net/minecraft/world/level/border/WorldBorder/setAbsoluteMaxSize (I)V +MD: net/minecraft/world/level/border/WorldBorder/m_61925_ (Lnet/minecraft/world/entity/Entity;)D net/minecraft/world/level/border/WorldBorder/getDistanceToBorder (Lnet/minecraft/world/entity/Entity;)D +MD: net/minecraft/world/level/border/WorldBorder/m_61927_ (Lnet/minecraft/world/level/ChunkPos;)Z net/minecraft/world/level/border/WorldBorder/isWithinBounds (Lnet/minecraft/world/level/ChunkPos;)Z +MD: net/minecraft/world/level/border/WorldBorder/m_61929_ (Lnet/minecraft/world/level/border/BorderChangeListener;)V net/minecraft/world/level/border/WorldBorder/addListener (Lnet/minecraft/world/level/border/BorderChangeListener;)V +MD: net/minecraft/world/level/border/WorldBorder/m_61931_ (Lnet/minecraft/world/level/border/WorldBorder$Settings;)V net/minecraft/world/level/border/WorldBorder/applySettings (Lnet/minecraft/world/level/border/WorldBorder$Settings;)V +MD: net/minecraft/world/level/border/WorldBorder/m_61935_ (Lnet/minecraft/world/phys/AABB;)Z net/minecraft/world/level/border/WorldBorder/isWithinBounds (Lnet/minecraft/world/phys/AABB;)Z +MD: net/minecraft/world/level/border/WorldBorder/m_61937_ (Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/level/border/WorldBorder/isWithinBounds (Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/level/border/WorldBorder/m_61939_ (D)V net/minecraft/world/level/border/WorldBorder/setDamageSafeZone (D)V +MD: net/minecraft/world/level/border/WorldBorder/m_61941_ (DD)D net/minecraft/world/level/border/WorldBorder/getDistanceToBorder (DD)D +MD: net/minecraft/world/level/border/WorldBorder/m_61944_ (I)V net/minecraft/world/level/border/WorldBorder/setWarningTime (I)V +MD: net/minecraft/world/level/border/WorldBorder/m_61946_ ()Lnet/minecraft/world/phys/shapes/VoxelShape; net/minecraft/world/level/border/WorldBorder/getCollisionShape ()Lnet/minecraft/world/phys/shapes/VoxelShape; +MD: net/minecraft/world/level/border/WorldBorder/m_61947_ (D)V net/minecraft/world/level/border/WorldBorder/setDamagePerBlock (D)V +MD: net/minecraft/world/level/border/WorldBorder/m_61949_ (DD)V net/minecraft/world/level/border/WorldBorder/setCenter (DD)V +MD: net/minecraft/world/level/border/WorldBorder/m_61952_ (I)V net/minecraft/world/level/border/WorldBorder/setWarningBlocks (I)V +MD: net/minecraft/world/level/border/WorldBorder/m_61954_ ()Lnet/minecraft/world/level/border/BorderStatus; net/minecraft/world/level/border/WorldBorder/getStatus ()Lnet/minecraft/world/level/border/BorderStatus; +MD: net/minecraft/world/level/border/WorldBorder/m_61955_ ()D net/minecraft/world/level/border/WorldBorder/getMinX ()D +MD: net/minecraft/world/level/border/WorldBorder/m_61956_ ()D net/minecraft/world/level/border/WorldBorder/getMinZ ()D +MD: net/minecraft/world/level/border/WorldBorder/m_61957_ ()D net/minecraft/world/level/border/WorldBorder/getMaxX ()D +MD: net/minecraft/world/level/border/WorldBorder/m_61958_ ()D net/minecraft/world/level/border/WorldBorder/getMaxZ ()D +MD: net/minecraft/world/level/border/WorldBorder/m_61959_ ()D net/minecraft/world/level/border/WorldBorder/getSize ()D +MD: net/minecraft/world/level/border/WorldBorder/m_61960_ ()J net/minecraft/world/level/border/WorldBorder/getLerpRemainingTime ()J +MD: net/minecraft/world/level/border/WorldBorder/m_61961_ ()D net/minecraft/world/level/border/WorldBorder/getLerpTarget ()D +MD: net/minecraft/world/level/border/WorldBorder/m_61962_ ()Ljava/util/List; net/minecraft/world/level/border/WorldBorder/getListeners ()Ljava/util/List; +MD: net/minecraft/world/level/border/WorldBorder/m_61963_ ()I net/minecraft/world/level/border/WorldBorder/getAbsoluteMaxSize ()I +MD: net/minecraft/world/level/border/WorldBorder/m_61964_ ()D net/minecraft/world/level/border/WorldBorder/getDamageSafeZone ()D +MD: net/minecraft/world/level/border/WorldBorder/m_61965_ ()D net/minecraft/world/level/border/WorldBorder/getDamagePerBlock ()D +MD: net/minecraft/world/level/border/WorldBorder/m_61966_ ()D net/minecraft/world/level/border/WorldBorder/getLerpSpeed ()D +MD: net/minecraft/world/level/border/WorldBorder/m_61967_ ()I net/minecraft/world/level/border/WorldBorder/getWarningTime ()I +MD: net/minecraft/world/level/border/WorldBorder/m_61968_ ()I net/minecraft/world/level/border/WorldBorder/getWarningBlocks ()I +MD: net/minecraft/world/level/border/WorldBorder/m_61969_ ()V net/minecraft/world/level/border/WorldBorder/tick ()V +MD: net/minecraft/world/level/border/WorldBorder/m_61970_ ()Lnet/minecraft/world/level/border/WorldBorder$Settings; net/minecraft/world/level/border/WorldBorder/createSettings ()Lnet/minecraft/world/level/border/WorldBorder$Settings; +MD: net/minecraft/world/level/border/WorldBorder/m_6345_ ()D net/minecraft/world/level/border/WorldBorder/getCenterZ ()D +MD: net/minecraft/world/level/border/WorldBorder/m_6347_ ()D net/minecraft/world/level/border/WorldBorder/getCenterX ()D +MD: net/minecraft/world/level/border/WorldBorder$BorderExtent/m_5570_ ()Lnet/minecraft/world/level/border/BorderStatus; net/minecraft/world/level/border/WorldBorder$BorderExtent/getStatus ()Lnet/minecraft/world/level/border/BorderStatus; +MD: net/minecraft/world/level/border/WorldBorder$BorderExtent/m_5794_ ()Lnet/minecraft/world/level/border/WorldBorder$BorderExtent; net/minecraft/world/level/border/WorldBorder$BorderExtent/update ()Lnet/minecraft/world/level/border/WorldBorder$BorderExtent; +MD: net/minecraft/world/level/border/WorldBorder$BorderExtent/m_6186_ ()Lnet/minecraft/world/phys/shapes/VoxelShape; net/minecraft/world/level/border/WorldBorder$BorderExtent/getCollisionShape ()Lnet/minecraft/world/phys/shapes/VoxelShape; +MD: net/minecraft/world/level/border/WorldBorder$BorderExtent/m_6605_ ()D net/minecraft/world/level/border/WorldBorder$BorderExtent/getLerpTarget ()D +MD: net/minecraft/world/level/border/WorldBorder$BorderExtent/m_6606_ ()D net/minecraft/world/level/border/WorldBorder$BorderExtent/getMinZ ()D +MD: net/minecraft/world/level/border/WorldBorder$BorderExtent/m_6608_ ()D net/minecraft/world/level/border/WorldBorder$BorderExtent/getMaxX ()D +MD: net/minecraft/world/level/border/WorldBorder$BorderExtent/m_6611_ ()D net/minecraft/world/level/border/WorldBorder$BorderExtent/getLerpSpeed ()D +MD: net/minecraft/world/level/border/WorldBorder$BorderExtent/m_6613_ ()D net/minecraft/world/level/border/WorldBorder$BorderExtent/getMinX ()D +MD: net/minecraft/world/level/border/WorldBorder$BorderExtent/m_6618_ ()D net/minecraft/world/level/border/WorldBorder$BorderExtent/getSize ()D +MD: net/minecraft/world/level/border/WorldBorder$BorderExtent/m_6619_ ()D net/minecraft/world/level/border/WorldBorder$BorderExtent/getMaxZ ()D +MD: net/minecraft/world/level/border/WorldBorder$BorderExtent/m_6622_ ()V net/minecraft/world/level/border/WorldBorder$BorderExtent/onCenterChange ()V +MD: net/minecraft/world/level/border/WorldBorder$BorderExtent/m_6623_ ()V net/minecraft/world/level/border/WorldBorder$BorderExtent/onAbsoluteMaxSizeChange ()V +MD: net/minecraft/world/level/border/WorldBorder$BorderExtent/m_6738_ ()J net/minecraft/world/level/border/WorldBorder$BorderExtent/getLerpRemainingTime ()J +MD: net/minecraft/world/level/border/WorldBorder$MovingBorderExtent/ (Lnet/minecraft/world/level/border/WorldBorder;DDJ)V net/minecraft/world/level/border/WorldBorder$MovingBorderExtent/ (Lnet/minecraft/world/level/border/WorldBorder;DDJ)V +MD: net/minecraft/world/level/border/WorldBorder$MovingBorderExtent/m_5570_ ()Lnet/minecraft/world/level/border/BorderStatus; net/minecraft/world/level/border/WorldBorder$MovingBorderExtent/getStatus ()Lnet/minecraft/world/level/border/BorderStatus; +MD: net/minecraft/world/level/border/WorldBorder$MovingBorderExtent/m_5794_ ()Lnet/minecraft/world/level/border/WorldBorder$BorderExtent; net/minecraft/world/level/border/WorldBorder$MovingBorderExtent/update ()Lnet/minecraft/world/level/border/WorldBorder$BorderExtent; +MD: net/minecraft/world/level/border/WorldBorder$MovingBorderExtent/m_6186_ ()Lnet/minecraft/world/phys/shapes/VoxelShape; net/minecraft/world/level/border/WorldBorder$MovingBorderExtent/getCollisionShape ()Lnet/minecraft/world/phys/shapes/VoxelShape; +MD: net/minecraft/world/level/border/WorldBorder$MovingBorderExtent/m_6605_ ()D net/minecraft/world/level/border/WorldBorder$MovingBorderExtent/getLerpTarget ()D +MD: net/minecraft/world/level/border/WorldBorder$MovingBorderExtent/m_6606_ ()D net/minecraft/world/level/border/WorldBorder$MovingBorderExtent/getMinZ ()D +MD: net/minecraft/world/level/border/WorldBorder$MovingBorderExtent/m_6608_ ()D net/minecraft/world/level/border/WorldBorder$MovingBorderExtent/getMaxX ()D +MD: net/minecraft/world/level/border/WorldBorder$MovingBorderExtent/m_6611_ ()D net/minecraft/world/level/border/WorldBorder$MovingBorderExtent/getLerpSpeed ()D +MD: net/minecraft/world/level/border/WorldBorder$MovingBorderExtent/m_6613_ ()D net/minecraft/world/level/border/WorldBorder$MovingBorderExtent/getMinX ()D +MD: net/minecraft/world/level/border/WorldBorder$MovingBorderExtent/m_6618_ ()D net/minecraft/world/level/border/WorldBorder$MovingBorderExtent/getSize ()D +MD: net/minecraft/world/level/border/WorldBorder$MovingBorderExtent/m_6619_ ()D net/minecraft/world/level/border/WorldBorder$MovingBorderExtent/getMaxZ ()D +MD: net/minecraft/world/level/border/WorldBorder$MovingBorderExtent/m_6622_ ()V net/minecraft/world/level/border/WorldBorder$MovingBorderExtent/onCenterChange ()V +MD: net/minecraft/world/level/border/WorldBorder$MovingBorderExtent/m_6623_ ()V net/minecraft/world/level/border/WorldBorder$MovingBorderExtent/onAbsoluteMaxSizeChange ()V +MD: net/minecraft/world/level/border/WorldBorder$MovingBorderExtent/m_6738_ ()J net/minecraft/world/level/border/WorldBorder$MovingBorderExtent/getLerpRemainingTime ()J +MD: net/minecraft/world/level/border/WorldBorder$Settings/ (DDDDIIDJD)V net/minecraft/world/level/border/WorldBorder$Settings/ (DDDDIIDJD)V +MD: net/minecraft/world/level/border/WorldBorder$Settings/ (Lnet/minecraft/world/level/border/WorldBorder;)V net/minecraft/world/level/border/WorldBorder$Settings/ (Lnet/minecraft/world/level/border/WorldBorder;)V +MD: net/minecraft/world/level/border/WorldBorder$Settings/m_62036_ ()D net/minecraft/world/level/border/WorldBorder$Settings/getCenterX ()D +MD: net/minecraft/world/level/border/WorldBorder$Settings/m_62037_ (Lcom/mojang/serialization/DynamicLike;Lnet/minecraft/world/level/border/WorldBorder$Settings;)Lnet/minecraft/world/level/border/WorldBorder$Settings; net/minecraft/world/level/border/WorldBorder$Settings/read (Lcom/mojang/serialization/DynamicLike;Lnet/minecraft/world/level/border/WorldBorder$Settings;)Lnet/minecraft/world/level/border/WorldBorder$Settings; +MD: net/minecraft/world/level/border/WorldBorder$Settings/m_62040_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/level/border/WorldBorder$Settings/write (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/level/border/WorldBorder$Settings/m_62042_ ()D net/minecraft/world/level/border/WorldBorder$Settings/getCenterZ ()D +MD: net/minecraft/world/level/border/WorldBorder$Settings/m_62043_ ()D net/minecraft/world/level/border/WorldBorder$Settings/getDamagePerBlock ()D +MD: net/minecraft/world/level/border/WorldBorder$Settings/m_62044_ ()D net/minecraft/world/level/border/WorldBorder$Settings/getSafeZone ()D +MD: net/minecraft/world/level/border/WorldBorder$Settings/m_62045_ ()I net/minecraft/world/level/border/WorldBorder$Settings/getWarningBlocks ()I +MD: net/minecraft/world/level/border/WorldBorder$Settings/m_62046_ ()I net/minecraft/world/level/border/WorldBorder$Settings/getWarningTime ()I +MD: net/minecraft/world/level/border/WorldBorder$Settings/m_62047_ ()D net/minecraft/world/level/border/WorldBorder$Settings/getSize ()D +MD: net/minecraft/world/level/border/WorldBorder$Settings/m_62048_ ()J net/minecraft/world/level/border/WorldBorder$Settings/getSizeLerpTime ()J +MD: net/minecraft/world/level/border/WorldBorder$Settings/m_62049_ ()D net/minecraft/world/level/border/WorldBorder$Settings/getSizeLerpTarget ()D +MD: net/minecraft/world/level/border/WorldBorder$StaticBorderExtent/ (Lnet/minecraft/world/level/border/WorldBorder;D)V net/minecraft/world/level/border/WorldBorder$StaticBorderExtent/ (Lnet/minecraft/world/level/border/WorldBorder;D)V +MD: net/minecraft/world/level/border/WorldBorder$StaticBorderExtent/m_5570_ ()Lnet/minecraft/world/level/border/BorderStatus; net/minecraft/world/level/border/WorldBorder$StaticBorderExtent/getStatus ()Lnet/minecraft/world/level/border/BorderStatus; +MD: net/minecraft/world/level/border/WorldBorder$StaticBorderExtent/m_5794_ ()Lnet/minecraft/world/level/border/WorldBorder$BorderExtent; net/minecraft/world/level/border/WorldBorder$StaticBorderExtent/update ()Lnet/minecraft/world/level/border/WorldBorder$BorderExtent; +MD: net/minecraft/world/level/border/WorldBorder$StaticBorderExtent/m_6186_ ()Lnet/minecraft/world/phys/shapes/VoxelShape; net/minecraft/world/level/border/WorldBorder$StaticBorderExtent/getCollisionShape ()Lnet/minecraft/world/phys/shapes/VoxelShape; +MD: net/minecraft/world/level/border/WorldBorder$StaticBorderExtent/m_62073_ ()V net/minecraft/world/level/border/WorldBorder$StaticBorderExtent/updateBox ()V +MD: net/minecraft/world/level/border/WorldBorder$StaticBorderExtent/m_6605_ ()D net/minecraft/world/level/border/WorldBorder$StaticBorderExtent/getLerpTarget ()D +MD: net/minecraft/world/level/border/WorldBorder$StaticBorderExtent/m_6606_ ()D net/minecraft/world/level/border/WorldBorder$StaticBorderExtent/getMinZ ()D +MD: net/minecraft/world/level/border/WorldBorder$StaticBorderExtent/m_6608_ ()D net/minecraft/world/level/border/WorldBorder$StaticBorderExtent/getMaxX ()D +MD: net/minecraft/world/level/border/WorldBorder$StaticBorderExtent/m_6611_ ()D net/minecraft/world/level/border/WorldBorder$StaticBorderExtent/getLerpSpeed ()D +MD: net/minecraft/world/level/border/WorldBorder$StaticBorderExtent/m_6613_ ()D net/minecraft/world/level/border/WorldBorder$StaticBorderExtent/getMinX ()D +MD: net/minecraft/world/level/border/WorldBorder$StaticBorderExtent/m_6618_ ()D net/minecraft/world/level/border/WorldBorder$StaticBorderExtent/getSize ()D +MD: net/minecraft/world/level/border/WorldBorder$StaticBorderExtent/m_6619_ ()D net/minecraft/world/level/border/WorldBorder$StaticBorderExtent/getMaxZ ()D +MD: net/minecraft/world/level/border/WorldBorder$StaticBorderExtent/m_6622_ ()V net/minecraft/world/level/border/WorldBorder$StaticBorderExtent/onCenterChange ()V +MD: net/minecraft/world/level/border/WorldBorder$StaticBorderExtent/m_6623_ ()V net/minecraft/world/level/border/WorldBorder$StaticBorderExtent/onAbsoluteMaxSizeChange ()V +MD: net/minecraft/world/level/border/WorldBorder$StaticBorderExtent/m_6738_ ()J net/minecraft/world/level/border/WorldBorder$StaticBorderExtent/getLerpRemainingTime ()J +MD: net/minecraft/world/level/chunk/BlockColumn/m_183556_ (I)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/chunk/BlockColumn/getBlock (I)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/chunk/BlockColumn/m_183639_ (ILnet/minecraft/world/level/block/state/BlockState;)V net/minecraft/world/level/chunk/BlockColumn/setBlock (ILnet/minecraft/world/level/block/state/BlockState;)V +MD: net/minecraft/world/level/chunk/BulkSectionAccess/ (Lnet/minecraft/world/level/LevelAccessor;)V net/minecraft/world/level/chunk/BulkSectionAccess/ (Lnet/minecraft/world/level/LevelAccessor;)V +MD: net/minecraft/world/level/chunk/BulkSectionAccess/close ()V net/minecraft/world/level/chunk/BulkSectionAccess/close ()V +MD: net/minecraft/world/level/chunk/BulkSectionAccess/m_156104_ (Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/chunk/LevelChunkSection; net/minecraft/world/level/chunk/BulkSectionAccess/getSection (Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/chunk/LevelChunkSection; +MD: net/minecraft/world/level/chunk/BulkSectionAccess/m_156106_ (Lnet/minecraft/core/BlockPos;IJ)Lnet/minecraft/world/level/chunk/LevelChunkSection; net/minecraft/world/level/chunk/BulkSectionAccess/lambda$getSection$0 (Lnet/minecraft/core/BlockPos;IJ)Lnet/minecraft/world/level/chunk/LevelChunkSection; +MD: net/minecraft/world/level/chunk/BulkSectionAccess/m_156110_ (Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/chunk/BulkSectionAccess/getBlockState (Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/chunk/CarvingMask/ ([JI)V net/minecraft/world/level/chunk/CarvingMask/ ([JI)V +MD: net/minecraft/world/level/chunk/CarvingMask/ (II)V net/minecraft/world/level/chunk/CarvingMask/ (II)V +MD: net/minecraft/world/level/chunk/CarvingMask/m_187584_ ()[J net/minecraft/world/level/chunk/CarvingMask/toArray ()[J +MD: net/minecraft/world/level/chunk/CarvingMask/m_187585_ (III)V net/minecraft/world/level/chunk/CarvingMask/set (III)V +MD: net/minecraft/world/level/chunk/CarvingMask/m_187589_ (Lnet/minecraft/world/level/ChunkPos;)Ljava/util/stream/Stream; net/minecraft/world/level/chunk/CarvingMask/stream (Lnet/minecraft/world/level/ChunkPos;)Ljava/util/stream/Stream; +MD: net/minecraft/world/level/chunk/CarvingMask/m_187594_ (III)Z net/minecraft/world/level/chunk/CarvingMask/get (III)Z +MD: net/minecraft/world/level/chunk/CarvingMask/m_187598_ (III)I net/minecraft/world/level/chunk/CarvingMask/getIndex (III)I +MD: net/minecraft/world/level/chunk/CarvingMask/m_196707_ (Lnet/minecraft/world/level/ChunkPos;I)Lnet/minecraft/core/BlockPos; net/minecraft/world/level/chunk/CarvingMask/lambda$stream$1 (Lnet/minecraft/world/level/ChunkPos;I)Lnet/minecraft/core/BlockPos; +MD: net/minecraft/world/level/chunk/CarvingMask/m_196710_ (Lnet/minecraft/world/level/chunk/CarvingMask$Mask;)V net/minecraft/world/level/chunk/CarvingMask/setAdditionalMask (Lnet/minecraft/world/level/chunk/CarvingMask$Mask;)V +MD: net/minecraft/world/level/chunk/CarvingMask/m_196712_ (III)Z net/minecraft/world/level/chunk/CarvingMask/lambda$new$0 (III)Z +MD: net/minecraft/world/level/chunk/CarvingMask$Mask/m_196716_ (III)Z net/minecraft/world/level/chunk/CarvingMask$Mask/test (III)Z +MD: net/minecraft/world/level/chunk/ChunkAccess/ ()V net/minecraft/world/level/chunk/ChunkAccess/ ()V +MD: net/minecraft/world/level/chunk/ChunkAccess/ (Lnet/minecraft/world/level/ChunkPos;Lnet/minecraft/world/level/chunk/UpgradeData;Lnet/minecraft/world/level/LevelHeightAccessor;Lnet/minecraft/core/Registry;J[Lnet/minecraft/world/level/chunk/LevelChunkSection;Lnet/minecraft/world/level/levelgen/blending/BlendingData;)V net/minecraft/world/level/chunk/ChunkAccess/ (Lnet/minecraft/world/level/ChunkPos;Lnet/minecraft/world/level/chunk/UpgradeData;Lnet/minecraft/world/level/LevelHeightAccessor;Lnet/minecraft/core/Registry;J[Lnet/minecraft/world/level/chunk/LevelChunkSection;Lnet/minecraft/world/level/levelgen/blending/BlendingData;)V +MD: net/minecraft/world/level/chunk/ChunkAccess/m_141928_ ()I net/minecraft/world/level/chunk/ChunkAccess/getHeight ()I +MD: net/minecraft/world/level/chunk/ChunkAccess/m_141937_ ()I net/minecraft/world/level/chunk/ChunkAccess/getMinBuildHeight ()I +MD: net/minecraft/world/level/chunk/ChunkAccess/m_142169_ (Lnet/minecraft/world/level/block/entity/BlockEntity;)V net/minecraft/world/level/chunk/ChunkAccess/setBlockEntity (Lnet/minecraft/world/level/block/entity/BlockEntity;)V +MD: net/minecraft/world/level/chunk/ChunkAccess/m_183278_ (I)Lnet/minecraft/world/level/chunk/LevelChunkSection; net/minecraft/world/level/chunk/ChunkAccess/getSection (I)Lnet/minecraft/world/level/chunk/LevelChunkSection; +MD: net/minecraft/world/level/chunk/ChunkAccess/m_183376_ ()Lnet/minecraft/world/level/levelgen/BelowZeroRetrogen; net/minecraft/world/level/chunk/ChunkAccess/getBelowZeroRetrogen ()Lnet/minecraft/world/level/levelgen/BelowZeroRetrogen; +MD: net/minecraft/world/level/chunk/ChunkAccess/m_183400_ (Lnet/minecraft/world/level/levelgen/blending/BlendingData;)V net/minecraft/world/level/chunk/ChunkAccess/setBlendingData (Lnet/minecraft/world/level/levelgen/blending/BlendingData;)V +MD: net/minecraft/world/level/chunk/ChunkAccess/m_183407_ ()Lnet/minecraft/world/level/levelgen/blending/BlendingData; net/minecraft/world/level/chunk/ChunkAccess/getBlendingData ()Lnet/minecraft/world/level/levelgen/blending/BlendingData; +MD: net/minecraft/world/level/chunk/ChunkAccess/m_183442_ (Lnet/minecraft/world/level/biome/BiomeResolver;Lnet/minecraft/world/level/biome/Climate$Sampler;)V net/minecraft/world/level/chunk/ChunkAccess/fillBiomesFromNoise (Lnet/minecraft/world/level/biome/BiomeResolver;Lnet/minecraft/world/level/biome/Climate$Sampler;)V +MD: net/minecraft/world/level/chunk/ChunkAccess/m_183526_ ()Lnet/minecraft/world/ticks/TickContainerAccess; net/minecraft/world/level/chunk/ChunkAccess/getFluidTicks ()Lnet/minecraft/world/ticks/TickContainerAccess; +MD: net/minecraft/world/level/chunk/ChunkAccess/m_183531_ ()Lnet/minecraft/world/ticks/TickContainerAccess; net/minecraft/world/level/chunk/ChunkAccess/getBlockTicks ()Lnet/minecraft/world/ticks/TickContainerAccess; +MD: net/minecraft/world/level/chunk/ChunkAccess/m_183568_ ()Lnet/minecraft/world/level/chunk/ChunkAccess$TicksToSave; net/minecraft/world/level/chunk/ChunkAccess/getTicksForSerialization ()Lnet/minecraft/world/level/chunk/ChunkAccess$TicksToSave; +MD: net/minecraft/world/level/chunk/ChunkAccess/m_183618_ ()Lnet/minecraft/world/level/LevelHeightAccessor; net/minecraft/world/level/chunk/ChunkAccess/getHeightAccessorForGeneration ()Lnet/minecraft/world/level/LevelHeightAccessor; +MD: net/minecraft/world/level/chunk/ChunkAccess/m_187632_ (J)V net/minecraft/world/level/chunk/ChunkAccess/incrementInhabitedTime (J)V +MD: net/minecraft/world/level/chunk/ChunkAccess/m_187658_ (Lnet/minecraft/world/level/levelgen/Heightmap$Types;)Z net/minecraft/world/level/chunk/ChunkAccess/hasPrimedHeightmap (Lnet/minecraft/world/level/levelgen/Heightmap$Types;)Z +MD: net/minecraft/world/level/chunk/ChunkAccess/m_187664_ (Lnet/minecraft/world/level/levelgen/Heightmap$Types;)Lnet/minecraft/world/level/levelgen/Heightmap; net/minecraft/world/level/chunk/ChunkAccess/lambda$getOrCreateHeightmapUnprimed$0 (Lnet/minecraft/world/level/levelgen/Heightmap$Types;)Lnet/minecraft/world/level/levelgen/Heightmap; +MD: net/minecraft/world/level/chunk/ChunkAccess/m_187675_ ()Z net/minecraft/world/level/chunk/ChunkAccess/isOldNoiseGeneration ()Z +MD: net/minecraft/world/level/chunk/ChunkAccess/m_187678_ ()Z net/minecraft/world/level/chunk/ChunkAccess/hasAnyStructureReferences ()Z +MD: net/minecraft/world/level/chunk/ChunkAccess/m_187679_ ()Z net/minecraft/world/level/chunk/ChunkAccess/isUpgrading ()Z +MD: net/minecraft/world/level/chunk/ChunkAccess/m_203495_ (III)Lnet/minecraft/core/Holder; net/minecraft/world/level/chunk/ChunkAccess/getNoiseBiome (III)Lnet/minecraft/core/Holder; +MD: net/minecraft/world/level/chunk/ChunkAccess/m_207933_ (III)Ljava/lang/String; net/minecraft/world/level/chunk/ChunkAccess/lambda$getNoiseBiome$3 (III)Ljava/lang/String; +MD: net/minecraft/world/level/chunk/ChunkAccess/m_213649_ (Lnet/minecraft/world/level/levelgen/structure/Structure;)Lit/unimi/dsi/fastutil/longs/LongSet; net/minecraft/world/level/chunk/ChunkAccess/getReferencesForStructure (Lnet/minecraft/world/level/levelgen/structure/Structure;)Lit/unimi/dsi/fastutil/longs/LongSet; +MD: net/minecraft/world/level/chunk/ChunkAccess/m_213652_ (Lnet/minecraft/world/level/levelgen/structure/Structure;)Lnet/minecraft/world/level/levelgen/structure/StructureStart; net/minecraft/world/level/chunk/ChunkAccess/getStartForStructure (Lnet/minecraft/world/level/levelgen/structure/Structure;)Lnet/minecraft/world/level/levelgen/structure/StructureStart; +MD: net/minecraft/world/level/chunk/ChunkAccess/m_213792_ (Lnet/minecraft/world/level/levelgen/structure/Structure;Lnet/minecraft/world/level/levelgen/structure/StructureStart;)V net/minecraft/world/level/chunk/ChunkAccess/setStartForStructure (Lnet/minecraft/world/level/levelgen/structure/Structure;Lnet/minecraft/world/level/levelgen/structure/StructureStart;)V +MD: net/minecraft/world/level/chunk/ChunkAccess/m_213843_ (Lnet/minecraft/world/level/levelgen/structure/Structure;J)V net/minecraft/world/level/chunk/ChunkAccess/addReferenceForStructure (Lnet/minecraft/world/level/levelgen/structure/Structure;J)V +MD: net/minecraft/world/level/chunk/ChunkAccess/m_223012_ (Ljava/util/function/Function;)Lnet/minecraft/world/level/levelgen/NoiseChunk; net/minecraft/world/level/chunk/ChunkAccess/getOrCreateNoiseChunk (Ljava/util/function/Function;)Lnet/minecraft/world/level/levelgen/NoiseChunk; +MD: net/minecraft/world/level/chunk/ChunkAccess/m_223014_ (Ljava/util/function/Supplier;)Lnet/minecraft/world/level/biome/BiomeGenerationSettings; net/minecraft/world/level/chunk/ChunkAccess/carverBiome (Ljava/util/function/Supplier;)Lnet/minecraft/world/level/biome/BiomeGenerationSettings; +MD: net/minecraft/world/level/chunk/ChunkAccess/m_223018_ (Lnet/minecraft/world/level/levelgen/structure/Structure;)Lit/unimi/dsi/fastutil/longs/LongSet; net/minecraft/world/level/chunk/ChunkAccess/lambda$addReferenceForStructure$1 (Lnet/minecraft/world/level/levelgen/structure/Structure;)Lit/unimi/dsi/fastutil/longs/LongSet; +MD: net/minecraft/world/level/chunk/ChunkAccess/m_246686_ (I)Lnet/minecraft/world/level/gameevent/GameEventListenerRegistry; net/minecraft/world/level/chunk/ChunkAccess/getListenerRegistry (I)Lnet/minecraft/world/level/gameevent/GameEventListenerRegistry; +MD: net/minecraft/world/level/chunk/ChunkAccess/m_280116_ (Lnet/minecraft/core/Registry;[Lnet/minecraft/world/level/chunk/LevelChunkSection;)V net/minecraft/world/level/chunk/ChunkAccess/replaceMissingSections (Lnet/minecraft/core/Registry;[Lnet/minecraft/world/level/chunk/LevelChunkSection;)V +MD: net/minecraft/world/level/chunk/ChunkAccess/m_280525_ ()I net/minecraft/world/level/chunk/ChunkAccess/getHighestFilledSectionIndex ()I +MD: net/minecraft/world/level/chunk/ChunkAccess/m_284111_ (Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/world/level/chunk/ChunkAccess/lambda$findBlockLightSources$2 (Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/world/level/chunk/ChunkAccess/m_284190_ ()V net/minecraft/world/level/chunk/ChunkAccess/initializeLightSources ()V +MD: net/minecraft/world/level/chunk/ChunkAccess/m_284254_ (Ljava/util/function/BiConsumer;)V net/minecraft/world/level/chunk/ChunkAccess/findBlockLightSources (Ljava/util/function/BiConsumer;)V +MD: net/minecraft/world/level/chunk/ChunkAccess/m_284331_ ()Lnet/minecraft/world/level/chunk/ChunkStatus; net/minecraft/world/level/chunk/ChunkAccess/getHighestGeneratedStatus ()Lnet/minecraft/world/level/chunk/ChunkStatus; +MD: net/minecraft/world/level/chunk/ChunkAccess/m_284400_ ()Lnet/minecraft/world/level/lighting/ChunkSkyLightSources; net/minecraft/world/level/chunk/ChunkAccess/getSkyLightSources ()Lnet/minecraft/world/level/lighting/ChunkSkyLightSources; +MD: net/minecraft/world/level/chunk/ChunkAccess/m_284478_ (Ljava/util/function/Predicate;Ljava/util/function/BiConsumer;)V net/minecraft/world/level/chunk/ChunkAccess/findBlocks (Ljava/util/function/Predicate;Ljava/util/function/BiConsumer;)V +MD: net/minecraft/world/level/chunk/ChunkAccess/m_5566_ (II)Z net/minecraft/world/level/chunk/ChunkAccess/isYSpaceEmpty (II)Z +MD: net/minecraft/world/level/chunk/ChunkAccess/m_5604_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/level/chunk/ChunkAccess/setBlockEntityNbt (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/level/chunk/ChunkAccess/m_5885_ (Lnet/minecraft/world/level/levelgen/Heightmap$Types;II)I net/minecraft/world/level/chunk/ChunkAccess/getHeight (Lnet/minecraft/world/level/levelgen/Heightmap$Types;II)I +MD: net/minecraft/world/level/chunk/ChunkAccess/m_5928_ ()Ljava/util/Set; net/minecraft/world/level/chunk/ChunkAccess/getBlockEntitiesPos ()Ljava/util/Set; +MD: net/minecraft/world/level/chunk/ChunkAccess/m_6005_ (Lnet/minecraft/world/level/levelgen/Heightmap$Types;)Lnet/minecraft/world/level/levelgen/Heightmap; net/minecraft/world/level/chunk/ChunkAccess/getOrCreateHeightmapUnprimed (Lnet/minecraft/world/level/levelgen/Heightmap$Types;)Lnet/minecraft/world/level/levelgen/Heightmap; +MD: net/minecraft/world/level/chunk/ChunkAccess/m_6141_ (J)V net/minecraft/world/level/chunk/ChunkAccess/setInhabitedTime (J)V +MD: net/minecraft/world/level/chunk/ChunkAccess/m_62095_ ([Lit/unimi/dsi/fastutil/shorts/ShortList;I)Lit/unimi/dsi/fastutil/shorts/ShortList; net/minecraft/world/level/chunk/ChunkAccess/getOrCreateOffsetList ([Lit/unimi/dsi/fastutil/shorts/ShortList;I)Lit/unimi/dsi/fastutil/shorts/ShortList; +MD: net/minecraft/world/level/chunk/ChunkAccess/m_62098_ ()I net/minecraft/world/level/chunk/ChunkAccess/getHighestSectionPosition ()I +MD: net/minecraft/world/level/chunk/ChunkAccess/m_62737_ (Ljava/util/Map;)V net/minecraft/world/level/chunk/ChunkAccess/setAllReferences (Ljava/util/Map;)V +MD: net/minecraft/world/level/chunk/ChunkAccess/m_62769_ ()Ljava/util/Map; net/minecraft/world/level/chunk/ChunkAccess/getAllReferences ()Ljava/util/Map; +MD: net/minecraft/world/level/chunk/ChunkAccess/m_6286_ (Lnet/minecraft/world/entity/Entity;)V net/minecraft/world/level/chunk/ChunkAccess/addEntity (Lnet/minecraft/world/entity/Entity;)V +MD: net/minecraft/world/level/chunk/ChunkAccess/m_6319_ ()J net/minecraft/world/level/chunk/ChunkAccess/getInhabitedTime ()J +MD: net/minecraft/world/level/chunk/ChunkAccess/m_6332_ ()Z net/minecraft/world/level/chunk/ChunkAccess/isLightCorrect ()Z +MD: net/minecraft/world/level/chunk/ChunkAccess/m_6344_ ()Z net/minecraft/world/level/chunk/ChunkAccess/isUnsaved ()Z +MD: net/minecraft/world/level/chunk/ChunkAccess/m_6415_ ()Lnet/minecraft/world/level/chunk/ChunkStatus; net/minecraft/world/level/chunk/ChunkAccess/getStatus ()Lnet/minecraft/world/level/chunk/ChunkStatus; +MD: net/minecraft/world/level/chunk/ChunkAccess/m_6511_ (Lnet/minecraft/world/level/levelgen/Heightmap$Types;[J)V net/minecraft/world/level/chunk/ChunkAccess/setHeightmap (Lnet/minecraft/world/level/levelgen/Heightmap$Types;[J)V +MD: net/minecraft/world/level/chunk/ChunkAccess/m_6561_ (SI)V net/minecraft/world/level/chunk/ChunkAccess/addPackedPostProcess (SI)V +MD: net/minecraft/world/level/chunk/ChunkAccess/m_6633_ ()Ljava/util/Map; net/minecraft/world/level/chunk/ChunkAccess/getAllStarts ()Ljava/util/Map; +MD: net/minecraft/world/level/chunk/ChunkAccess/m_6720_ ()[Lit/unimi/dsi/fastutil/shorts/ShortList; net/minecraft/world/level/chunk/ChunkAccess/getPostProcessing ()[Lit/unimi/dsi/fastutil/shorts/ShortList; +MD: net/minecraft/world/level/chunk/ChunkAccess/m_6890_ ()Ljava/util/Collection; net/minecraft/world/level/chunk/ChunkAccess/getHeightmaps ()Ljava/util/Collection; +MD: net/minecraft/world/level/chunk/ChunkAccess/m_6978_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Z)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/chunk/ChunkAccess/setBlockState (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Z)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/chunk/ChunkAccess/m_7103_ ()[Lnet/minecraft/world/level/chunk/LevelChunkSection; net/minecraft/world/level/chunk/ChunkAccess/getSections ()[Lnet/minecraft/world/level/chunk/LevelChunkSection; +MD: net/minecraft/world/level/chunk/ChunkAccess/m_7387_ ()Lnet/minecraft/world/level/chunk/UpgradeData; net/minecraft/world/level/chunk/ChunkAccess/getUpgradeData ()Lnet/minecraft/world/level/chunk/UpgradeData; +MD: net/minecraft/world/level/chunk/ChunkAccess/m_7697_ ()Lnet/minecraft/world/level/ChunkPos; net/minecraft/world/level/chunk/ChunkAccess/getPos ()Lnet/minecraft/world/level/ChunkPos; +MD: net/minecraft/world/level/chunk/ChunkAccess/m_8040_ (Ljava/util/Map;)V net/minecraft/world/level/chunk/ChunkAccess/setAllStarts (Ljava/util/Map;)V +MD: net/minecraft/world/level/chunk/ChunkAccess/m_8049_ (Lnet/minecraft/core/BlockPos;)Lnet/minecraft/nbt/CompoundTag; net/minecraft/world/level/chunk/ChunkAccess/getBlockEntityNbt (Lnet/minecraft/core/BlockPos;)Lnet/minecraft/nbt/CompoundTag; +MD: net/minecraft/world/level/chunk/ChunkAccess/m_8051_ (Lnet/minecraft/core/BlockPos;)Lnet/minecraft/nbt/CompoundTag; net/minecraft/world/level/chunk/ChunkAccess/getBlockEntityNbtForSaving (Lnet/minecraft/core/BlockPos;)Lnet/minecraft/nbt/CompoundTag; +MD: net/minecraft/world/level/chunk/ChunkAccess/m_8092_ (Z)V net/minecraft/world/level/chunk/ChunkAccess/setUnsaved (Z)V +MD: net/minecraft/world/level/chunk/ChunkAccess/m_8094_ (Z)V net/minecraft/world/level/chunk/ChunkAccess/setLightCorrect (Z)V +MD: net/minecraft/world/level/chunk/ChunkAccess/m_8113_ (Lnet/minecraft/core/BlockPos;)V net/minecraft/world/level/chunk/ChunkAccess/markPosForPostprocessing (Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/world/level/chunk/ChunkAccess/m_8114_ (Lnet/minecraft/core/BlockPos;)V net/minecraft/world/level/chunk/ChunkAccess/removeBlockEntity (Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/world/level/chunk/ChunkAccess$TicksToSave/ (Lnet/minecraft/world/ticks/SerializableTickContainer;Lnet/minecraft/world/ticks/SerializableTickContainer;)V net/minecraft/world/level/chunk/ChunkAccess$TicksToSave/ (Lnet/minecraft/world/ticks/SerializableTickContainer;Lnet/minecraft/world/ticks/SerializableTickContainer;)V +MD: net/minecraft/world/level/chunk/ChunkAccess$TicksToSave/equals (Ljava/lang/Object;)Z net/minecraft/world/level/chunk/ChunkAccess$TicksToSave/equals (Ljava/lang/Object;)Z +MD: net/minecraft/world/level/chunk/ChunkAccess$TicksToSave/f_187680_ ()Lnet/minecraft/world/ticks/SerializableTickContainer; net/minecraft/world/level/chunk/ChunkAccess$TicksToSave/blocks ()Lnet/minecraft/world/ticks/SerializableTickContainer; +MD: net/minecraft/world/level/chunk/ChunkAccess$TicksToSave/f_187681_ ()Lnet/minecraft/world/ticks/SerializableTickContainer; net/minecraft/world/level/chunk/ChunkAccess$TicksToSave/fluids ()Lnet/minecraft/world/ticks/SerializableTickContainer; +MD: net/minecraft/world/level/chunk/ChunkAccess$TicksToSave/hashCode ()I net/minecraft/world/level/chunk/ChunkAccess$TicksToSave/hashCode ()I +MD: net/minecraft/world/level/chunk/ChunkAccess$TicksToSave/toString ()Ljava/lang/String; net/minecraft/world/level/chunk/ChunkAccess$TicksToSave/toString ()Ljava/lang/String; +MD: net/minecraft/world/level/chunk/ChunkGenerator/ ()V net/minecraft/world/level/chunk/ChunkGenerator/ ()V +MD: net/minecraft/world/level/chunk/ChunkGenerator/ (Lnet/minecraft/world/level/biome/BiomeSource;)V net/minecraft/world/level/chunk/ChunkGenerator/ (Lnet/minecraft/world/level/biome/BiomeSource;)V +MD: net/minecraft/world/level/chunk/ChunkGenerator/ (Lnet/minecraft/world/level/biome/BiomeSource;Ljava/util/function/Function;)V net/minecraft/world/level/chunk/ChunkGenerator/ (Lnet/minecraft/world/level/biome/BiomeSource;Ljava/util/function/Function;)V +MD: net/minecraft/world/level/chunk/ChunkGenerator/m_142051_ (Lnet/minecraft/world/level/LevelHeightAccessor;)I net/minecraft/world/level/chunk/ChunkGenerator/getSpawnHeight (Lnet/minecraft/world/level/LevelHeightAccessor;)I +MD: net/minecraft/world/level/chunk/ChunkGenerator/m_142062_ ()I net/minecraft/world/level/chunk/ChunkGenerator/getMinY ()I +MD: net/minecraft/world/level/chunk/ChunkGenerator/m_187717_ (Lnet/minecraft/world/level/chunk/ChunkAccess;)Lnet/minecraft/world/level/levelgen/structure/BoundingBox; net/minecraft/world/level/chunk/ChunkGenerator/getWritableArea (Lnet/minecraft/world/level/chunk/ChunkAccess;)Lnet/minecraft/world/level/levelgen/structure/BoundingBox; +MD: net/minecraft/world/level/chunk/ChunkGenerator/m_187743_ ()Ljava/util/Optional; net/minecraft/world/level/chunk/ChunkGenerator/getTypeNameForDataFixer ()Ljava/util/Optional; +MD: net/minecraft/world/level/chunk/ChunkGenerator/m_213600_ (Ljava/util/List;Lnet/minecraft/world/level/levelgen/RandomState;Lnet/minecraft/core/BlockPos;)V net/minecraft/world/level/chunk/ChunkGenerator/addDebugScreenInfo (Ljava/util/List;Lnet/minecraft/world/level/levelgen/RandomState;Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/world/level/chunk/ChunkGenerator/m_213609_ (Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/world/level/chunk/ChunkAccess;Lnet/minecraft/world/level/StructureManager;)V net/minecraft/world/level/chunk/ChunkGenerator/applyBiomeDecoration (Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/world/level/chunk/ChunkAccess;Lnet/minecraft/world/level/StructureManager;)V +MD: net/minecraft/world/level/chunk/ChunkGenerator/m_213679_ (Lnet/minecraft/server/level/WorldGenRegion;JLnet/minecraft/world/level/levelgen/RandomState;Lnet/minecraft/world/level/biome/BiomeManager;Lnet/minecraft/world/level/StructureManager;Lnet/minecraft/world/level/chunk/ChunkAccess;Lnet/minecraft/world/level/levelgen/GenerationStep$Carving;)V net/minecraft/world/level/chunk/ChunkGenerator/applyCarvers (Lnet/minecraft/server/level/WorldGenRegion;JLnet/minecraft/world/level/levelgen/RandomState;Lnet/minecraft/world/level/biome/BiomeManager;Lnet/minecraft/world/level/StructureManager;Lnet/minecraft/world/level/chunk/ChunkAccess;Lnet/minecraft/world/level/levelgen/GenerationStep$Carving;)V +MD: net/minecraft/world/level/chunk/ChunkGenerator/m_213908_ (Ljava/util/concurrent/Executor;Lnet/minecraft/world/level/levelgen/RandomState;Lnet/minecraft/world/level/levelgen/blending/Blender;Lnet/minecraft/world/level/StructureManager;Lnet/minecraft/world/level/chunk/ChunkAccess;)Ljava/util/concurrent/CompletableFuture; net/minecraft/world/level/chunk/ChunkGenerator/createBiomes (Ljava/util/concurrent/Executor;Lnet/minecraft/world/level/levelgen/RandomState;Lnet/minecraft/world/level/levelgen/blending/Blender;Lnet/minecraft/world/level/StructureManager;Lnet/minecraft/world/level/chunk/ChunkAccess;)Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/world/level/chunk/ChunkGenerator/m_213974_ (Ljava/util/concurrent/Executor;Lnet/minecraft/world/level/levelgen/blending/Blender;Lnet/minecraft/world/level/levelgen/RandomState;Lnet/minecraft/world/level/StructureManager;Lnet/minecraft/world/level/chunk/ChunkAccess;)Ljava/util/concurrent/CompletableFuture; net/minecraft/world/level/chunk/ChunkGenerator/fillFromNoise (Ljava/util/concurrent/Executor;Lnet/minecraft/world/level/levelgen/blending/Blender;Lnet/minecraft/world/level/levelgen/RandomState;Lnet/minecraft/world/level/StructureManager;Lnet/minecraft/world/level/chunk/ChunkAccess;)Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/world/level/chunk/ChunkGenerator/m_214096_ (IILnet/minecraft/world/level/levelgen/Heightmap$Types;Lnet/minecraft/world/level/LevelHeightAccessor;Lnet/minecraft/world/level/levelgen/RandomState;)I net/minecraft/world/level/chunk/ChunkGenerator/getBaseHeight (IILnet/minecraft/world/level/levelgen/Heightmap$Types;Lnet/minecraft/world/level/LevelHeightAccessor;Lnet/minecraft/world/level/levelgen/RandomState;)I +MD: net/minecraft/world/level/chunk/ChunkGenerator/m_214184_ (IILnet/minecraft/world/level/LevelHeightAccessor;Lnet/minecraft/world/level/levelgen/RandomState;)Lnet/minecraft/world/level/NoiseColumn; net/minecraft/world/level/chunk/ChunkGenerator/getBaseColumn (IILnet/minecraft/world/level/LevelHeightAccessor;Lnet/minecraft/world/level/levelgen/RandomState;)Lnet/minecraft/world/level/NoiseColumn; +MD: net/minecraft/world/level/chunk/ChunkGenerator/m_214194_ (Lnet/minecraft/server/level/WorldGenRegion;Lnet/minecraft/world/level/StructureManager;Lnet/minecraft/world/level/levelgen/RandomState;Lnet/minecraft/world/level/chunk/ChunkAccess;)V net/minecraft/world/level/chunk/ChunkGenerator/buildSurface (Lnet/minecraft/server/level/WorldGenRegion;Lnet/minecraft/world/level/StructureManager;Lnet/minecraft/world/level/levelgen/RandomState;Lnet/minecraft/world/level/chunk/ChunkAccess;)V +MD: net/minecraft/world/level/chunk/ChunkGenerator/m_223037_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/HolderSet;Lnet/minecraft/core/BlockPos;IZ)Lcom/mojang/datafixers/util/Pair; net/minecraft/world/level/chunk/ChunkGenerator/findNearestMapStructure (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/HolderSet;Lnet/minecraft/core/BlockPos;IZ)Lcom/mojang/datafixers/util/Pair; +MD: net/minecraft/world/level/chunk/ChunkGenerator/m_223054_ (Lnet/minecraft/world/level/StructureManager;Lnet/minecraft/world/level/chunk/ChunkAccess;Lnet/minecraft/core/SectionPos;Lnet/minecraft/world/level/levelgen/structure/Structure;)I net/minecraft/world/level/chunk/ChunkGenerator/fetchReferences (Lnet/minecraft/world/level/StructureManager;Lnet/minecraft/world/level/chunk/ChunkAccess;Lnet/minecraft/core/SectionPos;Lnet/minecraft/world/level/levelgen/structure/Structure;)I +MD: net/minecraft/world/level/chunk/ChunkGenerator/m_223059_ (Lnet/minecraft/world/level/StructureManager;Lnet/minecraft/world/level/levelgen/structure/StructureStart;)Z net/minecraft/world/level/chunk/ChunkGenerator/tryAddReference (Lnet/minecraft/world/level/StructureManager;Lnet/minecraft/world/level/levelgen/structure/StructureStart;)Z +MD: net/minecraft/world/level/chunk/ChunkGenerator/m_223062_ (Lnet/minecraft/world/level/StructureManager;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/levelgen/structure/StructureStart;)Z net/minecraft/world/level/chunk/ChunkGenerator/lambda$getMobsAt$11 (Lnet/minecraft/world/level/StructureManager;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/levelgen/structure/StructureStart;)Z +MD: net/minecraft/world/level/chunk/ChunkGenerator/m_223076_ (Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/world/level/StructureManager;Lnet/minecraft/world/level/chunk/ChunkAccess;)V net/minecraft/world/level/chunk/ChunkGenerator/createReferences (Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/world/level/StructureManager;Lnet/minecraft/world/level/chunk/ChunkAccess;)V +MD: net/minecraft/world/level/chunk/ChunkGenerator/m_223080_ (Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/world/level/StructureManager;Lnet/minecraft/world/level/levelgen/WorldgenRandom;Lnet/minecraft/world/level/chunk/ChunkAccess;Lnet/minecraft/world/level/ChunkPos;Lnet/minecraft/world/level/levelgen/structure/StructureStart;)V net/minecraft/world/level/chunk/ChunkGenerator/lambda$applyBiomeDecoration$8 (Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/world/level/StructureManager;Lnet/minecraft/world/level/levelgen/WorldgenRandom;Lnet/minecraft/world/level/chunk/ChunkAccess;Lnet/minecraft/world/level/ChunkPos;Lnet/minecraft/world/level/levelgen/structure/StructureStart;)V +MD: net/minecraft/world/level/chunk/ChunkGenerator/m_223090_ (Lnet/minecraft/world/level/WorldGenLevel;Ljava/util/Set;Lnet/minecraft/world/level/ChunkPos;)V net/minecraft/world/level/chunk/ChunkGenerator/lambda$applyBiomeDecoration$6 (Lnet/minecraft/world/level/WorldGenLevel;Ljava/util/Set;Lnet/minecraft/world/level/ChunkPos;)V +MD: net/minecraft/world/level/chunk/ChunkGenerator/m_223094_ (Lnet/minecraft/world/level/biome/BiomeSource;Ljava/util/function/Function;)Ljava/util/List; net/minecraft/world/level/chunk/ChunkGenerator/lambda$new$2 (Lnet/minecraft/world/level/biome/BiomeSource;Ljava/util/function/Function;)Ljava/util/List; +MD: net/minecraft/world/level/chunk/ChunkGenerator/m_223097_ (Lnet/minecraft/world/level/chunk/ChunkAccess;Lnet/minecraft/world/level/levelgen/RandomState;)Lnet/minecraft/world/level/chunk/ChunkAccess; net/minecraft/world/level/chunk/ChunkGenerator/lambda$createBiomes$3 (Lnet/minecraft/world/level/chunk/ChunkAccess;Lnet/minecraft/world/level/levelgen/RandomState;)Lnet/minecraft/world/level/chunk/ChunkAccess; +MD: net/minecraft/world/level/chunk/ChunkGenerator/m_223102_ (Lnet/minecraft/world/level/levelgen/structure/Structure;)Ljava/lang/Integer; net/minecraft/world/level/chunk/ChunkGenerator/lambda$applyBiomeDecoration$5 (Lnet/minecraft/world/level/levelgen/structure/Structure;)Ljava/lang/Integer; +MD: net/minecraft/world/level/chunk/ChunkGenerator/m_223104_ (Lnet/minecraft/world/level/levelgen/structure/StructureSet$StructureSelectionEntry;Lnet/minecraft/world/level/StructureManager;Lnet/minecraft/core/RegistryAccess;Lnet/minecraft/world/level/levelgen/RandomState;Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager;JLnet/minecraft/world/level/chunk/ChunkAccess;Lnet/minecraft/world/level/ChunkPos;Lnet/minecraft/core/SectionPos;)Z net/minecraft/world/level/chunk/ChunkGenerator/tryGenerateStructure (Lnet/minecraft/world/level/levelgen/structure/StructureSet$StructureSelectionEntry;Lnet/minecraft/world/level/StructureManager;Lnet/minecraft/core/RegistryAccess;Lnet/minecraft/world/level/levelgen/RandomState;Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager;JLnet/minecraft/world/level/chunk/ChunkAccess;Lnet/minecraft/world/level/ChunkPos;Lnet/minecraft/core/SectionPos;)Z +MD: net/minecraft/world/level/chunk/ChunkGenerator/m_223114_ (Lnet/minecraft/world/level/levelgen/structure/StructureStart;)Ljava/lang/String; net/minecraft/world/level/chunk/ChunkGenerator/lambda$createReferences$18 (Lnet/minecraft/world/level/levelgen/structure/StructureStart;)Ljava/lang/String; +MD: net/minecraft/world/level/chunk/ChunkGenerator/m_223126_ (Lnet/minecraft/world/level/levelgen/structure/placement/StructurePlacement;)Ljava/util/Set; net/minecraft/world/level/chunk/ChunkGenerator/lambda$findNearestMapStructure$4 (Lnet/minecraft/world/level/levelgen/structure/placement/StructurePlacement;)Ljava/util/Set; +MD: net/minecraft/world/level/chunk/ChunkGenerator/m_223128_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/levelgen/structure/StructureStart;)Z net/minecraft/world/level/chunk/ChunkGenerator/lambda$getMobsAt$12 (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/levelgen/structure/StructureStart;)Z +MD: net/minecraft/world/level/chunk/ChunkGenerator/m_223131_ (Lnet/minecraft/core/Holder;)Lnet/minecraft/world/level/biome/BiomeGenerationSettings; net/minecraft/world/level/chunk/ChunkGenerator/getBiomeGenerationSettings (Lnet/minecraft/core/Holder;)Lnet/minecraft/world/level/biome/BiomeGenerationSettings; +MD: net/minecraft/world/level/chunk/ChunkGenerator/m_223133_ (Lnet/minecraft/core/Holder;Lnet/minecraft/world/level/StructureManager;Lnet/minecraft/world/entity/MobCategory;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/util/random/WeightedRandomList; net/minecraft/world/level/chunk/ChunkGenerator/getMobsAt (Lnet/minecraft/core/Holder;Lnet/minecraft/world/level/StructureManager;Lnet/minecraft/world/entity/MobCategory;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/util/random/WeightedRandomList; +MD: net/minecraft/world/level/chunk/ChunkGenerator/m_223171_ (Lit/unimi/dsi/fastutil/ints/IntSet;Lnet/minecraft/world/level/biome/FeatureSorter$StepFeatureData;Lnet/minecraft/world/level/levelgen/placement/PlacedFeature;)V net/minecraft/world/level/chunk/ChunkGenerator/lambda$applyBiomeDecoration$9 (Lit/unimi/dsi/fastutil/ints/IntSet;Lnet/minecraft/world/level/biome/FeatureSorter$StepFeatureData;Lnet/minecraft/world/level/levelgen/placement/PlacedFeature;)V +MD: net/minecraft/world/level/chunk/ChunkGenerator/m_223178_ (Ljava/util/Optional;Lnet/minecraft/world/level/levelgen/structure/StructureStart;)Ljava/lang/String; net/minecraft/world/level/chunk/ChunkGenerator/lambda$createReferences$16 (Ljava/util/Optional;Lnet/minecraft/world/level/levelgen/structure/StructureStart;)Ljava/lang/String; +MD: net/minecraft/world/level/chunk/ChunkGenerator/m_223181_ (Ljava/util/Set;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/level/StructureManager;Lnet/minecraft/core/BlockPos;ZLnet/minecraft/world/level/levelgen/structure/placement/ConcentricRingsStructurePlacement;)Lcom/mojang/datafixers/util/Pair; net/minecraft/world/level/chunk/ChunkGenerator/getNearestGeneratedStructure (Ljava/util/Set;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/level/StructureManager;Lnet/minecraft/core/BlockPos;ZLnet/minecraft/world/level/levelgen/structure/placement/ConcentricRingsStructurePlacement;)Lcom/mojang/datafixers/util/Pair; +MD: net/minecraft/world/level/chunk/ChunkGenerator/m_223188_ (Ljava/util/Set;Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/world/level/StructureManager;IIIZJLnet/minecraft/world/level/levelgen/structure/placement/RandomSpreadStructurePlacement;)Lcom/mojang/datafixers/util/Pair; net/minecraft/world/level/chunk/ChunkGenerator/getNearestGeneratedStructure (Ljava/util/Set;Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/world/level/StructureManager;IIIZJLnet/minecraft/world/level/levelgen/structure/placement/RandomSpreadStructurePlacement;)Lcom/mojang/datafixers/util/Pair; +MD: net/minecraft/world/level/chunk/ChunkGenerator/m_223198_ (Ljava/util/Set;Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/world/level/StructureManager;ZLnet/minecraft/world/level/levelgen/structure/placement/StructurePlacement;Lnet/minecraft/world/level/ChunkPos;)Lcom/mojang/datafixers/util/Pair; net/minecraft/world/level/chunk/ChunkGenerator/getStructureGeneratingAt (Ljava/util/Set;Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/world/level/StructureManager;ZLnet/minecraft/world/level/levelgen/structure/placement/StructurePlacement;Lnet/minecraft/world/level/ChunkPos;)Lcom/mojang/datafixers/util/Pair; +MD: net/minecraft/world/level/chunk/ChunkGenerator/m_223214_ (Ljava/util/function/Function;Lnet/minecraft/core/Holder;)Ljava/util/List; net/minecraft/world/level/chunk/ChunkGenerator/lambda$new$1 (Ljava/util/function/Function;Lnet/minecraft/core/Holder;)Ljava/util/List; +MD: net/minecraft/world/level/chunk/ChunkGenerator/m_223217_ (Lorg/apache/commons/lang3/mutable/MutableBoolean;Ljava/util/function/Predicate;Lnet/minecraft/world/level/levelgen/structure/StructureStart;)V net/minecraft/world/level/chunk/ChunkGenerator/lambda$getMobsAt$13 (Lorg/apache/commons/lang3/mutable/MutableBoolean;Ljava/util/function/Predicate;Lnet/minecraft/world/level/levelgen/structure/StructureStart;)V +MD: net/minecraft/world/level/chunk/ChunkGenerator/m_223221_ (IILnet/minecraft/world/level/levelgen/Heightmap$Types;Lnet/minecraft/world/level/LevelHeightAccessor;Lnet/minecraft/world/level/levelgen/RandomState;)I net/minecraft/world/level/chunk/ChunkGenerator/getFirstFreeHeight (IILnet/minecraft/world/level/levelgen/Heightmap$Types;Lnet/minecraft/world/level/LevelHeightAccessor;Lnet/minecraft/world/level/levelgen/RandomState;)I +MD: net/minecraft/world/level/chunk/ChunkGenerator/m_223233_ (Lnet/minecraft/core/Holder;)Lnet/minecraft/world/level/biome/BiomeGenerationSettings; net/minecraft/world/level/chunk/ChunkGenerator/lambda$new$0 (Lnet/minecraft/core/Holder;)Lnet/minecraft/world/level/biome/BiomeGenerationSettings; +MD: net/minecraft/world/level/chunk/ChunkGenerator/m_223235_ (IILnet/minecraft/world/level/levelgen/Heightmap$Types;Lnet/minecraft/world/level/LevelHeightAccessor;Lnet/minecraft/world/level/levelgen/RandomState;)I net/minecraft/world/level/chunk/ChunkGenerator/getFirstOccupiedHeight (IILnet/minecraft/world/level/levelgen/Heightmap$Types;Lnet/minecraft/world/level/LevelHeightAccessor;Lnet/minecraft/world/level/levelgen/RandomState;)I +MD: net/minecraft/world/level/chunk/ChunkGenerator/m_254811_ (Lnet/minecraft/world/level/StructureManager;Lnet/minecraft/core/SectionPos;Lnet/minecraft/world/level/chunk/ChunkAccess;Lnet/minecraft/world/level/chunk/ChunkGeneratorStructureState;Lnet/minecraft/world/level/ChunkPos;Lnet/minecraft/core/RegistryAccess;Lnet/minecraft/world/level/levelgen/RandomState;Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager;Lnet/minecraft/core/Holder;)V net/minecraft/world/level/chunk/ChunkGenerator/lambda$createStructures$14 (Lnet/minecraft/world/level/StructureManager;Lnet/minecraft/core/SectionPos;Lnet/minecraft/world/level/chunk/ChunkAccess;Lnet/minecraft/world/level/chunk/ChunkGeneratorStructureState;Lnet/minecraft/world/level/ChunkPos;Lnet/minecraft/core/RegistryAccess;Lnet/minecraft/world/level/levelgen/RandomState;Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager;Lnet/minecraft/core/Holder;)V +MD: net/minecraft/world/level/chunk/ChunkGenerator/m_255037_ (Lnet/minecraft/core/RegistryAccess;Lnet/minecraft/world/level/chunk/ChunkGeneratorStructureState;Lnet/minecraft/world/level/StructureManager;Lnet/minecraft/world/level/chunk/ChunkAccess;Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager;)V net/minecraft/world/level/chunk/ChunkGenerator/createStructures (Lnet/minecraft/core/RegistryAccess;Lnet/minecraft/world/level/chunk/ChunkGeneratorStructureState;Lnet/minecraft/world/level/StructureManager;Lnet/minecraft/world/level/chunk/ChunkAccess;Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager;)V +MD: net/minecraft/world/level/chunk/ChunkGenerator/m_255169_ (Lnet/minecraft/core/HolderLookup;Lnet/minecraft/world/level/levelgen/RandomState;J)Lnet/minecraft/world/level/chunk/ChunkGeneratorStructureState; net/minecraft/world/level/chunk/ChunkGenerator/createState (Lnet/minecraft/core/HolderLookup;Lnet/minecraft/world/level/levelgen/RandomState;J)Lnet/minecraft/world/level/chunk/ChunkGeneratorStructureState; +MD: net/minecraft/world/level/chunk/ChunkGenerator/m_257331_ (Lnet/minecraft/world/level/levelgen/structure/StructureStart;Lnet/minecraft/core/Registry;)Ljava/lang/String; net/minecraft/world/level/chunk/ChunkGenerator/lambda$createReferences$15 (Lnet/minecraft/world/level/levelgen/structure/StructureStart;Lnet/minecraft/core/Registry;)Ljava/lang/String; +MD: net/minecraft/world/level/chunk/ChunkGenerator/m_257332_ (Lnet/minecraft/core/Registry;Lnet/minecraft/world/level/levelgen/placement/PlacedFeature;)Ljava/lang/String; net/minecraft/world/level/chunk/ChunkGenerator/lambda$applyBiomeDecoration$10 (Lnet/minecraft/core/Registry;Lnet/minecraft/world/level/levelgen/placement/PlacedFeature;)Ljava/lang/String; +MD: net/minecraft/world/level/chunk/ChunkGenerator/m_257333_ (Lnet/minecraft/world/level/levelgen/structure/StructureStart;)Ljava/lang/String; net/minecraft/world/level/chunk/ChunkGenerator/lambda$createReferences$17 (Lnet/minecraft/world/level/levelgen/structure/StructureStart;)Ljava/lang/String; +MD: net/minecraft/world/level/chunk/ChunkGenerator/m_257334_ (Lnet/minecraft/core/Registry;Lnet/minecraft/world/level/levelgen/structure/Structure;)Ljava/lang/String; net/minecraft/world/level/chunk/ChunkGenerator/lambda$applyBiomeDecoration$7 (Lnet/minecraft/core/Registry;Lnet/minecraft/world/level/levelgen/structure/Structure;)Ljava/lang/String; +MD: net/minecraft/world/level/chunk/ChunkGenerator/m_62218_ ()Lnet/minecraft/world/level/biome/BiomeSource; net/minecraft/world/level/chunk/ChunkGenerator/getBiomeSource ()Lnet/minecraft/world/level/biome/BiomeSource; +MD: net/minecraft/world/level/chunk/ChunkGenerator/m_6331_ ()I net/minecraft/world/level/chunk/ChunkGenerator/getGenDepth ()I +MD: net/minecraft/world/level/chunk/ChunkGenerator/m_6337_ ()I net/minecraft/world/level/chunk/ChunkGenerator/getSeaLevel ()I +MD: net/minecraft/world/level/chunk/ChunkGenerator/m_6909_ ()Lcom/mojang/serialization/Codec; net/minecraft/world/level/chunk/ChunkGenerator/codec ()Lcom/mojang/serialization/Codec; +MD: net/minecraft/world/level/chunk/ChunkGenerator/m_6929_ (Lnet/minecraft/server/level/WorldGenRegion;)V net/minecraft/world/level/chunk/ChunkGenerator/spawnOriginalMobs (Lnet/minecraft/server/level/WorldGenRegion;)V +MD: net/minecraft/world/level/chunk/ChunkGeneratorStructureState/ ()V net/minecraft/world/level/chunk/ChunkGeneratorStructureState/ ()V +MD: net/minecraft/world/level/chunk/ChunkGeneratorStructureState/ (Lnet/minecraft/world/level/levelgen/RandomState;Lnet/minecraft/world/level/biome/BiomeSource;JJLjava/util/List;)V net/minecraft/world/level/chunk/ChunkGeneratorStructureState/ (Lnet/minecraft/world/level/levelgen/RandomState;Lnet/minecraft/world/level/biome/BiomeSource;JJLjava/util/List;)V +MD: net/minecraft/world/level/chunk/ChunkGeneratorStructureState/m_254876_ (Lnet/minecraft/world/level/biome/BiomeSource;Lnet/minecraft/core/Holder$Reference;)Z net/minecraft/world/level/chunk/ChunkGeneratorStructureState/lambda$createForNormal$1 (Lnet/minecraft/world/level/biome/BiomeSource;Lnet/minecraft/core/Holder$Reference;)Z +MD: net/minecraft/world/level/chunk/ChunkGeneratorStructureState/m_254887_ ()J net/minecraft/world/level/chunk/ChunkGeneratorStructureState/getLevelSeed ()J +MD: net/minecraft/world/level/chunk/ChunkGeneratorStructureState/m_254933_ (Lcom/google/common/base/Stopwatch;Lnet/minecraft/core/Holder;Ljava/util/List;)Ljava/util/List; net/minecraft/world/level/chunk/ChunkGeneratorStructureState/lambda$generateRingPositions$6 (Lcom/google/common/base/Stopwatch;Lnet/minecraft/core/Holder;Ljava/util/List;)Ljava/util/List; +MD: net/minecraft/world/level/chunk/ChunkGeneratorStructureState/m_254936_ (Lnet/minecraft/core/Holder;III)Z net/minecraft/world/level/chunk/ChunkGeneratorStructureState/hasStructureChunkInRange (Lnet/minecraft/core/Holder;III)Z +MD: net/minecraft/world/level/chunk/ChunkGeneratorStructureState/m_254937_ (IILnet/minecraft/core/HolderSet;Lnet/minecraft/util/RandomSource;)Lnet/minecraft/world/level/ChunkPos; net/minecraft/world/level/chunk/ChunkGeneratorStructureState/lambda$generateRingPositions$5 (IILnet/minecraft/core/HolderSet;Lnet/minecraft/util/RandomSource;)Lnet/minecraft/world/level/ChunkPos; +MD: net/minecraft/world/level/chunk/ChunkGeneratorStructureState/m_254958_ ()V net/minecraft/world/level/chunk/ChunkGeneratorStructureState/ensureStructuresGenerated ()V +MD: net/minecraft/world/level/chunk/ChunkGeneratorStructureState/m_255018_ (Lnet/minecraft/world/level/levelgen/structure/StructureSet$StructureSelectionEntry;)Ljava/util/stream/Stream; net/minecraft/world/level/chunk/ChunkGeneratorStructureState/lambda$hasBiomesForStructureSet$2 (Lnet/minecraft/world/level/levelgen/structure/StructureSet$StructureSelectionEntry;)Ljava/util/stream/Stream; +MD: net/minecraft/world/level/chunk/ChunkGeneratorStructureState/m_255046_ ()Lnet/minecraft/world/level/levelgen/RandomState; net/minecraft/world/level/chunk/ChunkGeneratorStructureState/randomState ()Lnet/minecraft/world/level/levelgen/RandomState; +MD: net/minecraft/world/level/chunk/ChunkGeneratorStructureState/m_255081_ (Lnet/minecraft/world/level/levelgen/RandomState;JLnet/minecraft/world/level/biome/BiomeSource;Lnet/minecraft/core/HolderLookup;)Lnet/minecraft/world/level/chunk/ChunkGeneratorStructureState; net/minecraft/world/level/chunk/ChunkGeneratorStructureState/createForNormal (Lnet/minecraft/world/level/levelgen/RandomState;JLnet/minecraft/world/level/biome/BiomeSource;Lnet/minecraft/core/HolderLookup;)Lnet/minecraft/world/level/chunk/ChunkGeneratorStructureState; +MD: net/minecraft/world/level/chunk/ChunkGeneratorStructureState/m_255138_ ()V net/minecraft/world/level/chunk/ChunkGeneratorStructureState/generatePositions ()V +MD: net/minecraft/world/level/chunk/ChunkGeneratorStructureState/m_255168_ (Ljava/util/Set;Lnet/minecraft/core/Holder;)V net/minecraft/world/level/chunk/ChunkGeneratorStructureState/lambda$generatePositions$4 (Ljava/util/Set;Lnet/minecraft/core/Holder;)V +MD: net/minecraft/world/level/chunk/ChunkGeneratorStructureState/m_255180_ (Lnet/minecraft/world/level/levelgen/structure/StructureSet;Lnet/minecraft/world/level/biome/BiomeSource;)Z net/minecraft/world/level/chunk/ChunkGeneratorStructureState/hasBiomesForStructureSet (Lnet/minecraft/world/level/levelgen/structure/StructureSet;Lnet/minecraft/world/level/biome/BiomeSource;)Z +MD: net/minecraft/world/level/chunk/ChunkGeneratorStructureState/m_255182_ (Lnet/minecraft/world/level/levelgen/structure/placement/ConcentricRingsStructurePlacement;)Ljava/util/List; net/minecraft/world/level/chunk/ChunkGeneratorStructureState/getRingPositionsFor (Lnet/minecraft/world/level/levelgen/structure/placement/ConcentricRingsStructurePlacement;)Ljava/util/List; +MD: net/minecraft/world/level/chunk/ChunkGeneratorStructureState/m_255187_ (Lnet/minecraft/world/level/biome/BiomeSource;Lnet/minecraft/core/Holder;)Z net/minecraft/world/level/chunk/ChunkGeneratorStructureState/lambda$createForFlat$0 (Lnet/minecraft/world/level/biome/BiomeSource;Lnet/minecraft/core/Holder;)Z +MD: net/minecraft/world/level/chunk/ChunkGeneratorStructureState/m_255252_ ()Ljava/util/List; net/minecraft/world/level/chunk/ChunkGeneratorStructureState/possibleStructureSets ()Ljava/util/List; +MD: net/minecraft/world/level/chunk/ChunkGeneratorStructureState/m_255260_ (Lnet/minecraft/core/Holder;)Ljava/util/List; net/minecraft/world/level/chunk/ChunkGeneratorStructureState/getPlacementsForStructure (Lnet/minecraft/core/Holder;)Ljava/util/List; +MD: net/minecraft/world/level/chunk/ChunkGeneratorStructureState/m_255294_ (Lnet/minecraft/core/Holder;Lnet/minecraft/world/level/levelgen/structure/placement/ConcentricRingsStructurePlacement;)Ljava/util/concurrent/CompletableFuture; net/minecraft/world/level/chunk/ChunkGeneratorStructureState/generateRingPositions (Lnet/minecraft/core/Holder;Lnet/minecraft/world/level/levelgen/structure/placement/ConcentricRingsStructurePlacement;)Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/world/level/chunk/ChunkGeneratorStructureState/m_255343_ (Lnet/minecraft/world/level/levelgen/RandomState;JLnet/minecraft/world/level/biome/BiomeSource;Ljava/util/stream/Stream;)Lnet/minecraft/world/level/chunk/ChunkGeneratorStructureState; net/minecraft/world/level/chunk/ChunkGeneratorStructureState/createForFlat (Lnet/minecraft/world/level/levelgen/RandomState;JLnet/minecraft/world/level/biome/BiomeSource;Ljava/util/stream/Stream;)Lnet/minecraft/world/level/chunk/ChunkGeneratorStructureState; +MD: net/minecraft/world/level/chunk/ChunkGeneratorStructureState/m_255431_ (Lnet/minecraft/world/level/levelgen/structure/Structure;)Ljava/util/List; net/minecraft/world/level/chunk/ChunkGeneratorStructureState/lambda$generatePositions$3 (Lnet/minecraft/world/level/levelgen/structure/Structure;)Ljava/util/List; +MD: net/minecraft/world/level/chunk/ChunkGenerators/ ()V net/minecraft/world/level/chunk/ChunkGenerators/ ()V +MD: net/minecraft/world/level/chunk/ChunkGenerators/m_223242_ (Lnet/minecraft/core/Registry;)Lcom/mojang/serialization/Codec; net/minecraft/world/level/chunk/ChunkGenerators/bootstrap (Lnet/minecraft/core/Registry;)Lcom/mojang/serialization/Codec; +MD: net/minecraft/world/level/chunk/ChunkSource/ ()V net/minecraft/world/level/chunk/ChunkSource/ ()V +MD: net/minecraft/world/level/chunk/ChunkSource/close ()V net/minecraft/world/level/chunk/ChunkSource/close ()V +MD: net/minecraft/world/level/chunk/ChunkSource/m_201698_ (Ljava/util/function/BooleanSupplier;Z)V net/minecraft/world/level/chunk/ChunkSource/tick (Ljava/util/function/BooleanSupplier;Z)V +MD: net/minecraft/world/level/chunk/ChunkSource/m_5563_ (II)Z net/minecraft/world/level/chunk/ChunkSource/hasChunk (II)Z +MD: net/minecraft/world/level/chunk/ChunkSource/m_6196_ (II)Lnet/minecraft/world/level/chunk/LightChunk; net/minecraft/world/level/chunk/ChunkSource/getChunkForLighting (II)Lnet/minecraft/world/level/chunk/LightChunk; +MD: net/minecraft/world/level/chunk/ChunkSource/m_62227_ (IIZ)Lnet/minecraft/world/level/chunk/LevelChunk; net/minecraft/world/level/chunk/ChunkSource/getChunk (IIZ)Lnet/minecraft/world/level/chunk/LevelChunk; +MD: net/minecraft/world/level/chunk/ChunkSource/m_6692_ (Lnet/minecraft/world/level/ChunkPos;Z)V net/minecraft/world/level/chunk/ChunkSource/updateChunkForced (Lnet/minecraft/world/level/ChunkPos;Z)V +MD: net/minecraft/world/level/chunk/ChunkSource/m_6707_ (ZZ)V net/minecraft/world/level/chunk/ChunkSource/setSpawnSettings (ZZ)V +MD: net/minecraft/world/level/chunk/ChunkSource/m_6754_ ()Ljava/lang/String; net/minecraft/world/level/chunk/ChunkSource/gatherStats ()Ljava/lang/String; +MD: net/minecraft/world/level/chunk/ChunkSource/m_7131_ (II)Lnet/minecraft/world/level/chunk/LevelChunk; net/minecraft/world/level/chunk/ChunkSource/getChunkNow (II)Lnet/minecraft/world/level/chunk/LevelChunk; +MD: net/minecraft/world/level/chunk/ChunkSource/m_7587_ (IILnet/minecraft/world/level/chunk/ChunkStatus;Z)Lnet/minecraft/world/level/chunk/ChunkAccess; net/minecraft/world/level/chunk/ChunkSource/getChunk (IILnet/minecraft/world/level/chunk/ChunkStatus;Z)Lnet/minecraft/world/level/chunk/ChunkAccess; +MD: net/minecraft/world/level/chunk/ChunkSource/m_7827_ ()Lnet/minecraft/world/level/lighting/LevelLightEngine; net/minecraft/world/level/chunk/ChunkSource/getLightEngine ()Lnet/minecraft/world/level/lighting/LevelLightEngine; +MD: net/minecraft/world/level/chunk/ChunkSource/m_8482_ ()I net/minecraft/world/level/chunk/ChunkSource/getLoadedChunksCount ()I +MD: net/minecraft/world/level/chunk/ChunkStatus/ ()V net/minecraft/world/level/chunk/ChunkStatus/ ()V +MD: net/minecraft/world/level/chunk/ChunkStatus/ (Lnet/minecraft/world/level/chunk/ChunkStatus;IZLjava/util/EnumSet;Lnet/minecraft/world/level/chunk/ChunkStatus$ChunkType;Lnet/minecraft/world/level/chunk/ChunkStatus$GenerationTask;Lnet/minecraft/world/level/chunk/ChunkStatus$LoadingTask;)V net/minecraft/world/level/chunk/ChunkStatus/ (Lnet/minecraft/world/level/chunk/ChunkStatus;IZLjava/util/EnumSet;Lnet/minecraft/world/level/chunk/ChunkStatus$ChunkType;Lnet/minecraft/world/level/chunk/ChunkStatus$GenerationTask;Lnet/minecraft/world/level/chunk/ChunkStatus$LoadingTask;)V +MD: net/minecraft/world/level/chunk/ChunkStatus/m_156185_ (I)Lnet/minecraft/world/level/chunk/ChunkStatus; net/minecraft/world/level/chunk/ChunkStatus/getStatusAroundFullChunk (I)Lnet/minecraft/world/level/chunk/ChunkStatus; +MD: net/minecraft/world/level/chunk/ChunkStatus/m_156246_ (Lnet/minecraft/world/level/chunk/ChunkStatus;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/level/chunk/ChunkGenerator;Ljava/util/List;Lnet/minecraft/world/level/chunk/ChunkAccess;)V net/minecraft/world/level/chunk/ChunkStatus/lambda$static$9 (Lnet/minecraft/world/level/chunk/ChunkStatus;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/level/chunk/ChunkGenerator;Ljava/util/List;Lnet/minecraft/world/level/chunk/ChunkAccess;)V +MD: net/minecraft/world/level/chunk/ChunkStatus/m_156306_ (Lnet/minecraft/world/level/chunk/ChunkStatus;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/level/chunk/ChunkGenerator;Ljava/util/List;Lnet/minecraft/world/level/chunk/ChunkAccess;)V net/minecraft/world/level/chunk/ChunkStatus/lambda$static$1 (Lnet/minecraft/world/level/chunk/ChunkStatus;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/level/chunk/ChunkGenerator;Ljava/util/List;Lnet/minecraft/world/level/chunk/ChunkAccess;)V +MD: net/minecraft/world/level/chunk/ChunkStatus/m_196757_ (Lnet/minecraft/world/level/chunk/ChunkStatus;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/level/chunk/ChunkGenerator;Ljava/util/List;Lnet/minecraft/world/level/chunk/ChunkAccess;)V net/minecraft/world/level/chunk/ChunkStatus/lambda$static$16 (Lnet/minecraft/world/level/chunk/ChunkStatus;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/level/chunk/ChunkGenerator;Ljava/util/List;Lnet/minecraft/world/level/chunk/ChunkAccess;)V +MD: net/minecraft/world/level/chunk/ChunkStatus/m_196842_ (Lnet/minecraft/world/level/chunk/ChunkStatus;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/level/chunk/ChunkGenerator;Ljava/util/List;Lnet/minecraft/world/level/chunk/ChunkAccess;)V net/minecraft/world/level/chunk/ChunkStatus/lambda$static$4 (Lnet/minecraft/world/level/chunk/ChunkStatus;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/level/chunk/ChunkGenerator;Ljava/util/List;Lnet/minecraft/world/level/chunk/ChunkAccess;)V +MD: net/minecraft/world/level/chunk/ChunkStatus/m_223244_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager;Lnet/minecraft/server/level/ThreadedLevelLightEngine;Ljava/util/function/Function;Lnet/minecraft/world/level/chunk/ChunkAccess;)Ljava/util/concurrent/CompletableFuture; net/minecraft/world/level/chunk/ChunkStatus/load (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager;Lnet/minecraft/server/level/ThreadedLevelLightEngine;Ljava/util/function/Function;Lnet/minecraft/world/level/chunk/ChunkAccess;)Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/world/level/chunk/ChunkStatus/m_223259_ (Lnet/minecraft/world/level/chunk/ChunkStatus;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager;Lnet/minecraft/server/level/ThreadedLevelLightEngine;Ljava/util/function/Function;Lnet/minecraft/world/level/chunk/ChunkAccess;)Ljava/util/concurrent/CompletableFuture; net/minecraft/world/level/chunk/ChunkStatus/lambda$static$18 (Lnet/minecraft/world/level/chunk/ChunkStatus;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager;Lnet/minecraft/server/level/ThreadedLevelLightEngine;Ljava/util/function/Function;Lnet/minecraft/world/level/chunk/ChunkAccess;)Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/world/level/chunk/ChunkStatus/m_223266_ (Lnet/minecraft/world/level/chunk/ChunkStatus;Ljava/util/concurrent/Executor;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/level/chunk/ChunkGenerator;Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager;Lnet/minecraft/server/level/ThreadedLevelLightEngine;Ljava/util/function/Function;Ljava/util/List;Lnet/minecraft/world/level/chunk/ChunkAccess;)Ljava/util/concurrent/CompletableFuture; net/minecraft/world/level/chunk/ChunkStatus/lambda$static$17 (Lnet/minecraft/world/level/chunk/ChunkStatus;Ljava/util/concurrent/Executor;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/level/chunk/ChunkGenerator;Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager;Lnet/minecraft/server/level/ThreadedLevelLightEngine;Ljava/util/function/Function;Ljava/util/List;Lnet/minecraft/world/level/chunk/ChunkAccess;)Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/world/level/chunk/ChunkStatus/m_223313_ (Lit/unimi/dsi/fastutil/ints/IntArrayList;)V net/minecraft/world/level/chunk/ChunkStatus/lambda$static$19 (Lit/unimi/dsi/fastutil/ints/IntArrayList;)V +MD: net/minecraft/world/level/chunk/ChunkStatus/m_279974_ (Lnet/minecraft/world/level/chunk/ChunkStatus;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager;Lnet/minecraft/server/level/ThreadedLevelLightEngine;Ljava/util/function/Function;Lnet/minecraft/world/level/chunk/ChunkAccess;)Ljava/util/concurrent/CompletableFuture; net/minecraft/world/level/chunk/ChunkStatus/lambda$static$13 (Lnet/minecraft/world/level/chunk/ChunkStatus;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager;Lnet/minecraft/server/level/ThreadedLevelLightEngine;Ljava/util/function/Function;Lnet/minecraft/world/level/chunk/ChunkAccess;)Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/world/level/chunk/ChunkStatus/m_279975_ (Lnet/minecraft/world/level/chunk/ChunkStatus;Ljava/util/concurrent/Executor;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/level/chunk/ChunkGenerator;Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager;Lnet/minecraft/server/level/ThreadedLevelLightEngine;Ljava/util/function/Function;Ljava/util/List;Lnet/minecraft/world/level/chunk/ChunkAccess;)Ljava/util/concurrent/CompletableFuture; net/minecraft/world/level/chunk/ChunkStatus/lambda$static$8 (Lnet/minecraft/world/level/chunk/ChunkStatus;Ljava/util/concurrent/Executor;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/level/chunk/ChunkGenerator;Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager;Lnet/minecraft/server/level/ThreadedLevelLightEngine;Ljava/util/function/Function;Ljava/util/List;Lnet/minecraft/world/level/chunk/ChunkAccess;)Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/world/level/chunk/ChunkStatus/m_279977_ (Lnet/minecraft/world/level/chunk/ChunkStatus;Ljava/util/concurrent/Executor;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/level/chunk/ChunkGenerator;Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager;Lnet/minecraft/server/level/ThreadedLevelLightEngine;Ljava/util/function/Function;Ljava/util/List;Lnet/minecraft/world/level/chunk/ChunkAccess;)Ljava/util/concurrent/CompletableFuture; net/minecraft/world/level/chunk/ChunkStatus/lambda$static$12 (Lnet/minecraft/world/level/chunk/ChunkStatus;Ljava/util/concurrent/Executor;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/level/chunk/ChunkGenerator;Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager;Lnet/minecraft/server/level/ThreadedLevelLightEngine;Ljava/util/function/Function;Ljava/util/List;Lnet/minecraft/world/level/chunk/ChunkAccess;)Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/world/level/chunk/ChunkStatus/m_279978_ (Lnet/minecraft/world/level/chunk/ChunkStatus;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/level/chunk/ChunkGenerator;Ljava/util/List;Lnet/minecraft/world/level/chunk/ChunkAccess;)V net/minecraft/world/level/chunk/ChunkStatus/lambda$static$11 (Lnet/minecraft/world/level/chunk/ChunkStatus;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/level/chunk/ChunkGenerator;Ljava/util/List;Lnet/minecraft/world/level/chunk/ChunkAccess;)V +MD: net/minecraft/world/level/chunk/ChunkStatus/m_279979_ (Lnet/minecraft/world/level/chunk/ChunkAccess;)Lcom/mojang/datafixers/util/Either; net/minecraft/world/level/chunk/ChunkStatus/lambda$static$5 (Lnet/minecraft/world/level/chunk/ChunkAccess;)Lcom/mojang/datafixers/util/Either; +MD: net/minecraft/world/level/chunk/ChunkStatus/m_279980_ (Lnet/minecraft/world/level/chunk/ChunkStatus;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager;Lnet/minecraft/server/level/ThreadedLevelLightEngine;Ljava/util/function/Function;Lnet/minecraft/world/level/chunk/ChunkAccess;)Ljava/util/concurrent/CompletableFuture; net/minecraft/world/level/chunk/ChunkStatus/lambda$static$0 (Lnet/minecraft/world/level/chunk/ChunkStatus;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager;Lnet/minecraft/server/level/ThreadedLevelLightEngine;Ljava/util/function/Function;Lnet/minecraft/world/level/chunk/ChunkAccess;)Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/world/level/chunk/ChunkStatus/m_279981_ (Lnet/minecraft/world/level/chunk/ChunkStatus;Ljava/util/concurrent/Executor;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/level/chunk/ChunkGenerator;Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager;Lnet/minecraft/server/level/ThreadedLevelLightEngine;Ljava/util/function/Function;Ljava/util/List;Lnet/minecraft/world/level/chunk/ChunkAccess;)Ljava/util/concurrent/CompletableFuture; net/minecraft/world/level/chunk/ChunkStatus/lambda$static$6 (Lnet/minecraft/world/level/chunk/ChunkStatus;Ljava/util/concurrent/Executor;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/level/chunk/ChunkGenerator;Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager;Lnet/minecraft/server/level/ThreadedLevelLightEngine;Ljava/util/function/Function;Ljava/util/List;Lnet/minecraft/world/level/chunk/ChunkAccess;)Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/world/level/chunk/ChunkStatus/m_279982_ (Lnet/minecraft/world/level/chunk/ChunkStatus;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager;Lnet/minecraft/server/level/ThreadedLevelLightEngine;Ljava/util/function/Function;Lnet/minecraft/world/level/chunk/ChunkAccess;)Ljava/util/concurrent/CompletableFuture; net/minecraft/world/level/chunk/ChunkStatus/lambda$static$3 (Lnet/minecraft/world/level/chunk/ChunkStatus;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager;Lnet/minecraft/server/level/ThreadedLevelLightEngine;Ljava/util/function/Function;Lnet/minecraft/world/level/chunk/ChunkAccess;)Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/world/level/chunk/ChunkStatus/m_279984_ (Lnet/minecraft/world/level/chunk/ChunkAccess;)Lcom/mojang/datafixers/util/Either; net/minecraft/world/level/chunk/ChunkStatus/lambda$static$7 (Lnet/minecraft/world/level/chunk/ChunkAccess;)Lcom/mojang/datafixers/util/Either; +MD: net/minecraft/world/level/chunk/ChunkStatus/m_280108_ (Ljava/lang/String;Lnet/minecraft/world/level/chunk/ChunkStatus;IZLjava/util/EnumSet;Lnet/minecraft/world/level/chunk/ChunkStatus$ChunkType;Lnet/minecraft/world/level/chunk/ChunkStatus$GenerationTask;Lnet/minecraft/world/level/chunk/ChunkStatus$LoadingTask;)Lnet/minecraft/world/level/chunk/ChunkStatus; net/minecraft/world/level/chunk/ChunkStatus/register (Ljava/lang/String;Lnet/minecraft/world/level/chunk/ChunkStatus;IZLjava/util/EnumSet;Lnet/minecraft/world/level/chunk/ChunkStatus$ChunkType;Lnet/minecraft/world/level/chunk/ChunkStatus$GenerationTask;Lnet/minecraft/world/level/chunk/ChunkStatus$LoadingTask;)Lnet/minecraft/world/level/chunk/ChunkStatus; +MD: net/minecraft/world/level/chunk/ChunkStatus/m_280141_ (Lnet/minecraft/server/level/ThreadedLevelLightEngine;Lnet/minecraft/world/level/chunk/ChunkAccess;)Ljava/util/concurrent/CompletableFuture; net/minecraft/world/level/chunk/ChunkStatus/initializeLight (Lnet/minecraft/server/level/ThreadedLevelLightEngine;Lnet/minecraft/world/level/chunk/ChunkAccess;)Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/world/level/chunk/ChunkStatus/m_280148_ ()Z net/minecraft/world/level/chunk/ChunkStatus/hasLoadDependencies ()Z +MD: net/minecraft/world/level/chunk/ChunkStatus/m_280308_ (Ljava/util/concurrent/Executor;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/level/chunk/ChunkGenerator;Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager;Lnet/minecraft/server/level/ThreadedLevelLightEngine;Ljava/util/function/Function;Ljava/util/List;)Ljava/util/concurrent/CompletableFuture; net/minecraft/world/level/chunk/ChunkStatus/generate (Ljava/util/concurrent/Executor;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/level/chunk/ChunkGenerator;Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager;Lnet/minecraft/server/level/ThreadedLevelLightEngine;Ljava/util/function/Function;Ljava/util/List;)Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/world/level/chunk/ChunkStatus/m_284112_ (Lnet/minecraft/world/level/chunk/ChunkStatus;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager;Lnet/minecraft/server/level/ThreadedLevelLightEngine;Ljava/util/function/Function;Lnet/minecraft/world/level/chunk/ChunkAccess;)Ljava/util/concurrent/CompletableFuture; net/minecraft/world/level/chunk/ChunkStatus/lambda$static$15 (Lnet/minecraft/world/level/chunk/ChunkStatus;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager;Lnet/minecraft/server/level/ThreadedLevelLightEngine;Ljava/util/function/Function;Lnet/minecraft/world/level/chunk/ChunkAccess;)Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/world/level/chunk/ChunkStatus/m_284113_ (Lnet/minecraft/world/level/chunk/ChunkStatus;Ljava/util/concurrent/Executor;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/level/chunk/ChunkGenerator;Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager;Lnet/minecraft/server/level/ThreadedLevelLightEngine;Ljava/util/function/Function;Ljava/util/List;Lnet/minecraft/world/level/chunk/ChunkAccess;)Ljava/util/concurrent/CompletableFuture; net/minecraft/world/level/chunk/ChunkStatus/lambda$static$14 (Lnet/minecraft/world/level/chunk/ChunkStatus;Ljava/util/concurrent/Executor;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/level/chunk/ChunkGenerator;Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager;Lnet/minecraft/server/level/ThreadedLevelLightEngine;Ljava/util/function/Function;Ljava/util/List;Lnet/minecraft/world/level/chunk/ChunkAccess;)Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/world/level/chunk/ChunkStatus/m_284159_ (Lnet/minecraft/server/level/ThreadedLevelLightEngine;Lnet/minecraft/world/level/chunk/ChunkAccess;)Ljava/util/concurrent/CompletableFuture; net/minecraft/world/level/chunk/ChunkStatus/lightChunk (Lnet/minecraft/server/level/ThreadedLevelLightEngine;Lnet/minecraft/world/level/chunk/ChunkAccess;)Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/world/level/chunk/ChunkStatus/m_284462_ (Lnet/minecraft/world/level/chunk/ChunkAccess;)Z net/minecraft/world/level/chunk/ChunkStatus/isLighted (Lnet/minecraft/world/level/chunk/ChunkAccess;)Z +MD: net/minecraft/world/level/chunk/ChunkStatus/m_289181_ (Lnet/minecraft/world/level/chunk/ChunkStatus;Ljava/util/concurrent/Executor;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/level/chunk/ChunkGenerator;Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager;Lnet/minecraft/server/level/ThreadedLevelLightEngine;Ljava/util/function/Function;Ljava/util/List;Lnet/minecraft/world/level/chunk/ChunkAccess;)Ljava/util/concurrent/CompletableFuture; net/minecraft/world/level/chunk/ChunkStatus/lambda$static$2 (Lnet/minecraft/world/level/chunk/ChunkStatus;Ljava/util/concurrent/Executor;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/level/chunk/ChunkGenerator;Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager;Lnet/minecraft/server/level/ThreadedLevelLightEngine;Ljava/util/function/Function;Ljava/util/List;Lnet/minecraft/world/level/chunk/ChunkAccess;)Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/world/level/chunk/ChunkStatus/m_289182_ (Lnet/minecraft/world/level/chunk/ChunkStatus;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/level/chunk/ChunkGenerator;Ljava/util/List;Lnet/minecraft/world/level/chunk/ChunkAccess;)V net/minecraft/world/level/chunk/ChunkStatus/lambda$static$10 (Lnet/minecraft/world/level/chunk/ChunkStatus;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/level/chunk/ChunkGenerator;Ljava/util/List;Lnet/minecraft/world/level/chunk/ChunkAccess;)V +MD: net/minecraft/world/level/chunk/ChunkStatus/m_290023_ (Lnet/minecraft/util/profiling/jfr/callback/ProfiledDuration;Lcom/mojang/datafixers/util/Either;)Lcom/mojang/datafixers/util/Either; net/minecraft/world/level/chunk/ChunkStatus/lambda$generate$21 (Lnet/minecraft/util/profiling/jfr/callback/ProfiledDuration;Lcom/mojang/datafixers/util/Either;)Lcom/mojang/datafixers/util/Either; +MD: net/minecraft/world/level/chunk/ChunkStatus/m_290024_ (Lnet/minecraft/world/level/chunk/ChunkAccess;)V net/minecraft/world/level/chunk/ChunkStatus/lambda$generate$20 (Lnet/minecraft/world/level/chunk/ChunkAccess;)V +MD: net/minecraft/world/level/chunk/ChunkStatus/m_62349_ ()Ljava/util/List; net/minecraft/world/level/chunk/ChunkStatus/getStatusList ()Ljava/util/List; +MD: net/minecraft/world/level/chunk/ChunkStatus/m_62370_ (Lnet/minecraft/world/level/chunk/ChunkStatus;)I net/minecraft/world/level/chunk/ChunkStatus/getDistance (Lnet/minecraft/world/level/chunk/ChunkStatus;)I +MD: net/minecraft/world/level/chunk/ChunkStatus/m_62397_ (Ljava/lang/String;)Lnet/minecraft/world/level/chunk/ChunkStatus; net/minecraft/world/level/chunk/ChunkStatus/byName (Ljava/lang/String;)Lnet/minecraft/world/level/chunk/ChunkStatus; +MD: net/minecraft/world/level/chunk/ChunkStatus/m_62399_ (Ljava/lang/String;Lnet/minecraft/world/level/chunk/ChunkStatus;ILjava/util/EnumSet;Lnet/minecraft/world/level/chunk/ChunkStatus$ChunkType;Lnet/minecraft/world/level/chunk/ChunkStatus$GenerationTask;)Lnet/minecraft/world/level/chunk/ChunkStatus; net/minecraft/world/level/chunk/ChunkStatus/register (Ljava/lang/String;Lnet/minecraft/world/level/chunk/ChunkStatus;ILjava/util/EnumSet;Lnet/minecraft/world/level/chunk/ChunkStatus$ChunkType;Lnet/minecraft/world/level/chunk/ChunkStatus$GenerationTask;)Lnet/minecraft/world/level/chunk/ChunkStatus; +MD: net/minecraft/world/level/chunk/ChunkStatus/m_62414_ (Ljava/lang/String;Lnet/minecraft/world/level/chunk/ChunkStatus;ILjava/util/EnumSet;Lnet/minecraft/world/level/chunk/ChunkStatus$ChunkType;Lnet/minecraft/world/level/chunk/ChunkStatus$SimpleGenerationTask;)Lnet/minecraft/world/level/chunk/ChunkStatus; net/minecraft/world/level/chunk/ChunkStatus/registerSimple (Ljava/lang/String;Lnet/minecraft/world/level/chunk/ChunkStatus;ILjava/util/EnumSet;Lnet/minecraft/world/level/chunk/ChunkStatus$ChunkType;Lnet/minecraft/world/level/chunk/ChunkStatus$SimpleGenerationTask;)Lnet/minecraft/world/level/chunk/ChunkStatus; +MD: net/minecraft/world/level/chunk/ChunkStatus/m_62421_ ()I net/minecraft/world/level/chunk/ChunkStatus/maxDistance ()I +MD: net/minecraft/world/level/chunk/ChunkStatus/m_62427_ (Lnet/minecraft/world/level/chunk/ChunkStatus;)Z net/minecraft/world/level/chunk/ChunkStatus/isOrAfter (Lnet/minecraft/world/level/chunk/ChunkStatus;)Z +MD: net/minecraft/world/level/chunk/ChunkStatus/m_62445_ ()I net/minecraft/world/level/chunk/ChunkStatus/getIndex ()I +MD: net/minecraft/world/level/chunk/ChunkStatus/m_62482_ ()Lnet/minecraft/world/level/chunk/ChunkStatus; net/minecraft/world/level/chunk/ChunkStatus/getParent ()Lnet/minecraft/world/level/chunk/ChunkStatus; +MD: net/minecraft/world/level/chunk/ChunkStatus/m_62488_ ()I net/minecraft/world/level/chunk/ChunkStatus/getRange ()I +MD: net/minecraft/world/level/chunk/ChunkStatus/m_62494_ ()Lnet/minecraft/world/level/chunk/ChunkStatus$ChunkType; net/minecraft/world/level/chunk/ChunkStatus/getChunkType ()Lnet/minecraft/world/level/chunk/ChunkStatus$ChunkType; +MD: net/minecraft/world/level/chunk/ChunkStatus/m_62500_ ()Ljava/util/EnumSet; net/minecraft/world/level/chunk/ChunkStatus/heightmapsAfter ()Ljava/util/EnumSet; +MD: net/minecraft/world/level/chunk/ChunkStatus/toString ()Ljava/lang/String; net/minecraft/world/level/chunk/ChunkStatus/toString ()Ljava/lang/String; +MD: net/minecraft/world/level/chunk/ChunkStatus$ChunkType/ ()V net/minecraft/world/level/chunk/ChunkStatus$ChunkType/ ()V +MD: net/minecraft/world/level/chunk/ChunkStatus$ChunkType/ (Ljava/lang/String;I)V net/minecraft/world/level/chunk/ChunkStatus$ChunkType/ (Ljava/lang/String;I)V +MD: net/minecraft/world/level/chunk/ChunkStatus$ChunkType/m_156312_ ()[Lnet/minecraft/world/level/chunk/ChunkStatus$ChunkType; net/minecraft/world/level/chunk/ChunkStatus$ChunkType/$values ()[Lnet/minecraft/world/level/chunk/ChunkStatus$ChunkType; +MD: net/minecraft/world/level/chunk/ChunkStatus$ChunkType/valueOf (Ljava/lang/String;)Lnet/minecraft/world/level/chunk/ChunkStatus$ChunkType; net/minecraft/world/level/chunk/ChunkStatus$ChunkType/valueOf (Ljava/lang/String;)Lnet/minecraft/world/level/chunk/ChunkStatus$ChunkType; +MD: net/minecraft/world/level/chunk/ChunkStatus$ChunkType/values ()[Lnet/minecraft/world/level/chunk/ChunkStatus$ChunkType; net/minecraft/world/level/chunk/ChunkStatus$ChunkType/values ()[Lnet/minecraft/world/level/chunk/ChunkStatus$ChunkType; +MD: net/minecraft/world/level/chunk/ChunkStatus$GenerationTask/m_214024_ (Lnet/minecraft/world/level/chunk/ChunkStatus;Ljava/util/concurrent/Executor;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/level/chunk/ChunkGenerator;Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager;Lnet/minecraft/server/level/ThreadedLevelLightEngine;Ljava/util/function/Function;Ljava/util/List;Lnet/minecraft/world/level/chunk/ChunkAccess;)Ljava/util/concurrent/CompletableFuture; net/minecraft/world/level/chunk/ChunkStatus$GenerationTask/doWork (Lnet/minecraft/world/level/chunk/ChunkStatus;Ljava/util/concurrent/Executor;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/level/chunk/ChunkGenerator;Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager;Lnet/minecraft/server/level/ThreadedLevelLightEngine;Ljava/util/function/Function;Ljava/util/List;Lnet/minecraft/world/level/chunk/ChunkAccess;)Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/world/level/chunk/ChunkStatus$LoadingTask/m_223381_ (Lnet/minecraft/world/level/chunk/ChunkStatus;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager;Lnet/minecraft/server/level/ThreadedLevelLightEngine;Ljava/util/function/Function;Lnet/minecraft/world/level/chunk/ChunkAccess;)Ljava/util/concurrent/CompletableFuture; net/minecraft/world/level/chunk/ChunkStatus$LoadingTask/doWork (Lnet/minecraft/world/level/chunk/ChunkStatus;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager;Lnet/minecraft/server/level/ThreadedLevelLightEngine;Ljava/util/function/Function;Lnet/minecraft/world/level/chunk/ChunkAccess;)Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/world/level/chunk/ChunkStatus$SimpleGenerationTask/m_156322_ (Lnet/minecraft/world/level/chunk/ChunkStatus;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/level/chunk/ChunkGenerator;Ljava/util/List;Lnet/minecraft/world/level/chunk/ChunkAccess;)V net/minecraft/world/level/chunk/ChunkStatus$SimpleGenerationTask/doWork (Lnet/minecraft/world/level/chunk/ChunkStatus;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/level/chunk/ChunkGenerator;Ljava/util/List;Lnet/minecraft/world/level/chunk/ChunkAccess;)V +MD: net/minecraft/world/level/chunk/ChunkStatus$SimpleGenerationTask/m_214024_ (Lnet/minecraft/world/level/chunk/ChunkStatus;Ljava/util/concurrent/Executor;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/level/chunk/ChunkGenerator;Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager;Lnet/minecraft/server/level/ThreadedLevelLightEngine;Ljava/util/function/Function;Ljava/util/List;Lnet/minecraft/world/level/chunk/ChunkAccess;)Ljava/util/concurrent/CompletableFuture; net/minecraft/world/level/chunk/ChunkStatus$SimpleGenerationTask/doWork (Lnet/minecraft/world/level/chunk/ChunkStatus;Ljava/util/concurrent/Executor;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/level/chunk/ChunkGenerator;Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager;Lnet/minecraft/server/level/ThreadedLevelLightEngine;Ljava/util/function/Function;Ljava/util/List;Lnet/minecraft/world/level/chunk/ChunkAccess;)Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/world/level/chunk/DataLayer/ (I)V net/minecraft/world/level/chunk/DataLayer/ (I)V +MD: net/minecraft/world/level/chunk/DataLayer/ ([B)V net/minecraft/world/level/chunk/DataLayer/ ([B)V +MD: net/minecraft/world/level/chunk/DataLayer/ ()V net/minecraft/world/level/chunk/DataLayer/ ()V +MD: net/minecraft/world/level/chunk/DataLayer/m_156341_ (I)Ljava/lang/String; net/minecraft/world/level/chunk/DataLayer/layerToString (I)Ljava/lang/String; +MD: net/minecraft/world/level/chunk/DataLayer/m_182481_ (I)I net/minecraft/world/level/chunk/DataLayer/getNibbleIndex (I)I +MD: net/minecraft/world/level/chunk/DataLayer/m_280098_ ()Z net/minecraft/world/level/chunk/DataLayer/isDefinitelyHomogenous ()Z +MD: net/minecraft/world/level/chunk/DataLayer/m_280353_ (I)B net/minecraft/world/level/chunk/DataLayer/packFilled (I)B +MD: net/minecraft/world/level/chunk/DataLayer/m_280484_ (I)Z net/minecraft/world/level/chunk/DataLayer/isDefinitelyFilledWith (I)Z +MD: net/minecraft/world/level/chunk/DataLayer/m_284173_ (I)V net/minecraft/world/level/chunk/DataLayer/fill (I)V +MD: net/minecraft/world/level/chunk/DataLayer/m_62557_ (II)V net/minecraft/world/level/chunk/DataLayer/set (II)V +MD: net/minecraft/world/level/chunk/DataLayer/m_62560_ (III)I net/minecraft/world/level/chunk/DataLayer/get (III)I +MD: net/minecraft/world/level/chunk/DataLayer/m_62564_ (IIII)V net/minecraft/world/level/chunk/DataLayer/set (IIII)V +MD: net/minecraft/world/level/chunk/DataLayer/m_62569_ ()Lnet/minecraft/world/level/chunk/DataLayer; net/minecraft/world/level/chunk/DataLayer/copy ()Lnet/minecraft/world/level/chunk/DataLayer; +MD: net/minecraft/world/level/chunk/DataLayer/m_62570_ (I)I net/minecraft/world/level/chunk/DataLayer/get (I)I +MD: net/minecraft/world/level/chunk/DataLayer/m_62575_ ()Z net/minecraft/world/level/chunk/DataLayer/isEmpty ()Z +MD: net/minecraft/world/level/chunk/DataLayer/m_62578_ (I)I net/minecraft/world/level/chunk/DataLayer/getByteIndex (I)I +MD: net/minecraft/world/level/chunk/DataLayer/m_6406_ (III)I net/minecraft/world/level/chunk/DataLayer/getIndex (III)I +MD: net/minecraft/world/level/chunk/DataLayer/m_7877_ ()[B net/minecraft/world/level/chunk/DataLayer/getData ()[B +MD: net/minecraft/world/level/chunk/DataLayer/toString ()Ljava/lang/String; net/minecraft/world/level/chunk/DataLayer/toString ()Ljava/lang/String; +MD: net/minecraft/world/level/chunk/EmptyLevelChunk/ (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/level/ChunkPos;Lnet/minecraft/core/Holder;)V net/minecraft/world/level/chunk/EmptyLevelChunk/ (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/level/ChunkPos;Lnet/minecraft/core/Holder;)V +MD: net/minecraft/world/level/chunk/EmptyLevelChunk/m_142169_ (Lnet/minecraft/world/level/block/entity/BlockEntity;)V net/minecraft/world/level/chunk/EmptyLevelChunk/setBlockEntity (Lnet/minecraft/world/level/block/entity/BlockEntity;)V +MD: net/minecraft/world/level/chunk/EmptyLevelChunk/m_142170_ (Lnet/minecraft/world/level/block/entity/BlockEntity;)V net/minecraft/world/level/chunk/EmptyLevelChunk/addAndRegisterBlockEntity (Lnet/minecraft/world/level/block/entity/BlockEntity;)V +MD: net/minecraft/world/level/chunk/EmptyLevelChunk/m_203495_ (III)Lnet/minecraft/core/Holder; net/minecraft/world/level/chunk/EmptyLevelChunk/getNoiseBiome (III)Lnet/minecraft/core/Holder; +MD: net/minecraft/world/level/chunk/EmptyLevelChunk/m_287138_ ()Lnet/minecraft/server/level/FullChunkStatus; net/minecraft/world/level/chunk/EmptyLevelChunk/getFullStatus ()Lnet/minecraft/server/level/FullChunkStatus; +MD: net/minecraft/world/level/chunk/EmptyLevelChunk/m_5566_ (II)Z net/minecraft/world/level/chunk/EmptyLevelChunk/isYSpaceEmpty (II)Z +MD: net/minecraft/world/level/chunk/EmptyLevelChunk/m_5685_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/chunk/LevelChunk$EntityCreationType;)Lnet/minecraft/world/level/block/entity/BlockEntity; net/minecraft/world/level/chunk/EmptyLevelChunk/getBlockEntity (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/chunk/LevelChunk$EntityCreationType;)Lnet/minecraft/world/level/block/entity/BlockEntity; +MD: net/minecraft/world/level/chunk/EmptyLevelChunk/m_6425_ (Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/material/FluidState; net/minecraft/world/level/chunk/EmptyLevelChunk/getFluidState (Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/material/FluidState; +MD: net/minecraft/world/level/chunk/EmptyLevelChunk/m_6430_ ()Z net/minecraft/world/level/chunk/EmptyLevelChunk/isEmpty ()Z +MD: net/minecraft/world/level/chunk/EmptyLevelChunk/m_6978_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Z)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/chunk/EmptyLevelChunk/setBlockState (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Z)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/chunk/EmptyLevelChunk/m_7146_ (Lnet/minecraft/core/BlockPos;)I net/minecraft/world/level/chunk/EmptyLevelChunk/getLightEmission (Lnet/minecraft/core/BlockPos;)I +MD: net/minecraft/world/level/chunk/EmptyLevelChunk/m_8055_ (Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/chunk/EmptyLevelChunk/getBlockState (Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/chunk/EmptyLevelChunk/m_8114_ (Lnet/minecraft/core/BlockPos;)V net/minecraft/world/level/chunk/EmptyLevelChunk/removeBlockEntity (Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/world/level/chunk/GlobalPalette/ (Lnet/minecraft/core/IdMap;)V net/minecraft/world/level/chunk/GlobalPalette/ (Lnet/minecraft/core/IdMap;)V +MD: net/minecraft/world/level/chunk/GlobalPalette/m_187898_ (ILnet/minecraft/core/IdMap;Lnet/minecraft/world/level/chunk/PaletteResize;Ljava/util/List;)Lnet/minecraft/world/level/chunk/Palette; net/minecraft/world/level/chunk/GlobalPalette/create (ILnet/minecraft/core/IdMap;Lnet/minecraft/world/level/chunk/PaletteResize;Ljava/util/List;)Lnet/minecraft/world/level/chunk/Palette; +MD: net/minecraft/world/level/chunk/GlobalPalette/m_199814_ ()Lnet/minecraft/world/level/chunk/Palette; net/minecraft/world/level/chunk/GlobalPalette/copy ()Lnet/minecraft/world/level/chunk/Palette; +MD: net/minecraft/world/level/chunk/GlobalPalette/m_5678_ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/world/level/chunk/GlobalPalette/write (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/world/level/chunk/GlobalPalette/m_5680_ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/world/level/chunk/GlobalPalette/read (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/world/level/chunk/GlobalPalette/m_5795_ (I)Ljava/lang/Object; net/minecraft/world/level/chunk/GlobalPalette/valueFor (I)Ljava/lang/Object; +MD: net/minecraft/world/level/chunk/GlobalPalette/m_62680_ ()I net/minecraft/world/level/chunk/GlobalPalette/getSize ()I +MD: net/minecraft/world/level/chunk/GlobalPalette/m_6419_ (Ljava/util/function/Predicate;)Z net/minecraft/world/level/chunk/GlobalPalette/maybeHas (Ljava/util/function/Predicate;)Z +MD: net/minecraft/world/level/chunk/GlobalPalette/m_6429_ ()I net/minecraft/world/level/chunk/GlobalPalette/getSerializedSize ()I +MD: net/minecraft/world/level/chunk/GlobalPalette/m_6796_ (Ljava/lang/Object;)I net/minecraft/world/level/chunk/GlobalPalette/idFor (Ljava/lang/Object;)I +MD: net/minecraft/world/level/chunk/HashMapPalette/ (Lnet/minecraft/core/IdMap;ILnet/minecraft/world/level/chunk/PaletteResize;Ljava/util/List;)V net/minecraft/world/level/chunk/HashMapPalette/ (Lnet/minecraft/core/IdMap;ILnet/minecraft/world/level/chunk/PaletteResize;Ljava/util/List;)V +MD: net/minecraft/world/level/chunk/HashMapPalette/ (Lnet/minecraft/core/IdMap;ILnet/minecraft/world/level/chunk/PaletteResize;)V net/minecraft/world/level/chunk/HashMapPalette/ (Lnet/minecraft/core/IdMap;ILnet/minecraft/world/level/chunk/PaletteResize;)V +MD: net/minecraft/world/level/chunk/HashMapPalette/ (Lnet/minecraft/core/IdMap;ILnet/minecraft/world/level/chunk/PaletteResize;Lnet/minecraft/util/CrudeIncrementalIntIdentityHashBiMap;)V net/minecraft/world/level/chunk/HashMapPalette/ (Lnet/minecraft/core/IdMap;ILnet/minecraft/world/level/chunk/PaletteResize;Lnet/minecraft/util/CrudeIncrementalIntIdentityHashBiMap;)V +MD: net/minecraft/world/level/chunk/HashMapPalette/m_187912_ (ILnet/minecraft/core/IdMap;Lnet/minecraft/world/level/chunk/PaletteResize;Ljava/util/List;)Lnet/minecraft/world/level/chunk/Palette; net/minecraft/world/level/chunk/HashMapPalette/create (ILnet/minecraft/core/IdMap;Lnet/minecraft/world/level/chunk/PaletteResize;Ljava/util/List;)Lnet/minecraft/world/level/chunk/Palette; +MD: net/minecraft/world/level/chunk/HashMapPalette/m_187917_ ()Ljava/util/List; net/minecraft/world/level/chunk/HashMapPalette/getEntries ()Ljava/util/List; +MD: net/minecraft/world/level/chunk/HashMapPalette/m_199814_ ()Lnet/minecraft/world/level/chunk/Palette; net/minecraft/world/level/chunk/HashMapPalette/copy ()Lnet/minecraft/world/level/chunk/Palette; +MD: net/minecraft/world/level/chunk/HashMapPalette/m_5678_ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/world/level/chunk/HashMapPalette/write (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/world/level/chunk/HashMapPalette/m_5680_ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/world/level/chunk/HashMapPalette/read (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/world/level/chunk/HashMapPalette/m_5795_ (I)Ljava/lang/Object; net/minecraft/world/level/chunk/HashMapPalette/valueFor (I)Ljava/lang/Object; +MD: net/minecraft/world/level/chunk/HashMapPalette/m_62680_ ()I net/minecraft/world/level/chunk/HashMapPalette/getSize ()I +MD: net/minecraft/world/level/chunk/HashMapPalette/m_6419_ (Ljava/util/function/Predicate;)Z net/minecraft/world/level/chunk/HashMapPalette/maybeHas (Ljava/util/function/Predicate;)Z +MD: net/minecraft/world/level/chunk/HashMapPalette/m_6429_ ()I net/minecraft/world/level/chunk/HashMapPalette/getSerializedSize ()I +MD: net/minecraft/world/level/chunk/HashMapPalette/m_6796_ (Ljava/lang/Object;)I net/minecraft/world/level/chunk/HashMapPalette/idFor (Ljava/lang/Object;)I +MD: net/minecraft/world/level/chunk/ImposterProtoChunk/ (Lnet/minecraft/world/level/chunk/LevelChunk;Z)V net/minecraft/world/level/chunk/ImposterProtoChunk/ (Lnet/minecraft/world/level/chunk/LevelChunk;Z)V +MD: net/minecraft/world/level/chunk/ImposterProtoChunk/m_142169_ (Lnet/minecraft/world/level/block/entity/BlockEntity;)V net/minecraft/world/level/chunk/ImposterProtoChunk/setBlockEntity (Lnet/minecraft/world/level/block/entity/BlockEntity;)V +MD: net/minecraft/world/level/chunk/ImposterProtoChunk/m_183278_ (I)Lnet/minecraft/world/level/chunk/LevelChunkSection; net/minecraft/world/level/chunk/ImposterProtoChunk/getSection (I)Lnet/minecraft/world/level/chunk/LevelChunkSection; +MD: net/minecraft/world/level/chunk/ImposterProtoChunk/m_183400_ (Lnet/minecraft/world/level/levelgen/blending/BlendingData;)V net/minecraft/world/level/chunk/ImposterProtoChunk/setBlendingData (Lnet/minecraft/world/level/levelgen/blending/BlendingData;)V +MD: net/minecraft/world/level/chunk/ImposterProtoChunk/m_183407_ ()Lnet/minecraft/world/level/levelgen/blending/BlendingData; net/minecraft/world/level/chunk/ImposterProtoChunk/getBlendingData ()Lnet/minecraft/world/level/levelgen/blending/BlendingData; +MD: net/minecraft/world/level/chunk/ImposterProtoChunk/m_183442_ (Lnet/minecraft/world/level/biome/BiomeResolver;Lnet/minecraft/world/level/biome/Climate$Sampler;)V net/minecraft/world/level/chunk/ImposterProtoChunk/fillBiomesFromNoise (Lnet/minecraft/world/level/biome/BiomeResolver;Lnet/minecraft/world/level/biome/Climate$Sampler;)V +MD: net/minecraft/world/level/chunk/ImposterProtoChunk/m_183526_ ()Lnet/minecraft/world/ticks/TickContainerAccess; net/minecraft/world/level/chunk/ImposterProtoChunk/getFluidTicks ()Lnet/minecraft/world/ticks/TickContainerAccess; +MD: net/minecraft/world/level/chunk/ImposterProtoChunk/m_183531_ ()Lnet/minecraft/world/ticks/TickContainerAccess; net/minecraft/world/level/chunk/ImposterProtoChunk/getBlockTicks ()Lnet/minecraft/world/ticks/TickContainerAccess; +MD: net/minecraft/world/level/chunk/ImposterProtoChunk/m_183568_ ()Lnet/minecraft/world/level/chunk/ChunkAccess$TicksToSave; net/minecraft/world/level/chunk/ImposterProtoChunk/getTicksForSerialization ()Lnet/minecraft/world/level/chunk/ChunkAccess$TicksToSave; +MD: net/minecraft/world/level/chunk/ImposterProtoChunk/m_183612_ (Lnet/minecraft/world/level/levelgen/GenerationStep$Carving;)Lnet/minecraft/world/level/chunk/CarvingMask; net/minecraft/world/level/chunk/ImposterProtoChunk/getCarvingMask (Lnet/minecraft/world/level/levelgen/GenerationStep$Carving;)Lnet/minecraft/world/level/chunk/CarvingMask; +MD: net/minecraft/world/level/chunk/ImposterProtoChunk/m_183613_ (Lnet/minecraft/world/level/levelgen/GenerationStep$Carving;)Lnet/minecraft/world/level/chunk/CarvingMask; net/minecraft/world/level/chunk/ImposterProtoChunk/getOrCreateCarvingMask (Lnet/minecraft/world/level/levelgen/GenerationStep$Carving;)Lnet/minecraft/world/level/chunk/CarvingMask; +MD: net/minecraft/world/level/chunk/ImposterProtoChunk/m_203495_ (III)Lnet/minecraft/core/Holder; net/minecraft/world/level/chunk/ImposterProtoChunk/getNoiseBiome (III)Lnet/minecraft/core/Holder; +MD: net/minecraft/world/level/chunk/ImposterProtoChunk/m_213649_ (Lnet/minecraft/world/level/levelgen/structure/Structure;)Lit/unimi/dsi/fastutil/longs/LongSet; net/minecraft/world/level/chunk/ImposterProtoChunk/getReferencesForStructure (Lnet/minecraft/world/level/levelgen/structure/Structure;)Lit/unimi/dsi/fastutil/longs/LongSet; +MD: net/minecraft/world/level/chunk/ImposterProtoChunk/m_213652_ (Lnet/minecraft/world/level/levelgen/structure/Structure;)Lnet/minecraft/world/level/levelgen/structure/StructureStart; net/minecraft/world/level/chunk/ImposterProtoChunk/getStartForStructure (Lnet/minecraft/world/level/levelgen/structure/Structure;)Lnet/minecraft/world/level/levelgen/structure/StructureStart; +MD: net/minecraft/world/level/chunk/ImposterProtoChunk/m_213792_ (Lnet/minecraft/world/level/levelgen/structure/Structure;Lnet/minecraft/world/level/levelgen/structure/StructureStart;)V net/minecraft/world/level/chunk/ImposterProtoChunk/setStartForStructure (Lnet/minecraft/world/level/levelgen/structure/Structure;Lnet/minecraft/world/level/levelgen/structure/StructureStart;)V +MD: net/minecraft/world/level/chunk/ImposterProtoChunk/m_213843_ (Lnet/minecraft/world/level/levelgen/structure/Structure;J)V net/minecraft/world/level/chunk/ImposterProtoChunk/addReferenceForStructure (Lnet/minecraft/world/level/levelgen/structure/Structure;J)V +MD: net/minecraft/world/level/chunk/ImposterProtoChunk/m_284190_ ()V net/minecraft/world/level/chunk/ImposterProtoChunk/initializeLightSources ()V +MD: net/minecraft/world/level/chunk/ImposterProtoChunk/m_284400_ ()Lnet/minecraft/world/level/lighting/ChunkSkyLightSources; net/minecraft/world/level/chunk/ImposterProtoChunk/getSkyLightSources ()Lnet/minecraft/world/level/lighting/ChunkSkyLightSources; +MD: net/minecraft/world/level/chunk/ImposterProtoChunk/m_284478_ (Ljava/util/function/Predicate;Ljava/util/function/BiConsumer;)V net/minecraft/world/level/chunk/ImposterProtoChunk/findBlocks (Ljava/util/function/Predicate;Ljava/util/function/BiConsumer;)V +MD: net/minecraft/world/level/chunk/ImposterProtoChunk/m_5604_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/level/chunk/ImposterProtoChunk/setBlockEntityNbt (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/level/chunk/ImposterProtoChunk/m_5885_ (Lnet/minecraft/world/level/levelgen/Heightmap$Types;II)I net/minecraft/world/level/chunk/ImposterProtoChunk/getHeight (Lnet/minecraft/world/level/levelgen/Heightmap$Types;II)I +MD: net/minecraft/world/level/chunk/ImposterProtoChunk/m_6005_ (Lnet/minecraft/world/level/levelgen/Heightmap$Types;)Lnet/minecraft/world/level/levelgen/Heightmap; net/minecraft/world/level/chunk/ImposterProtoChunk/getOrCreateHeightmapUnprimed (Lnet/minecraft/world/level/levelgen/Heightmap$Types;)Lnet/minecraft/world/level/levelgen/Heightmap; +MD: net/minecraft/world/level/chunk/ImposterProtoChunk/m_62737_ (Ljava/util/Map;)V net/minecraft/world/level/chunk/ImposterProtoChunk/setAllReferences (Ljava/util/Map;)V +MD: net/minecraft/world/level/chunk/ImposterProtoChunk/m_62741_ (Lnet/minecraft/world/level/levelgen/Heightmap$Types;)Lnet/minecraft/world/level/levelgen/Heightmap$Types; net/minecraft/world/level/chunk/ImposterProtoChunk/fixType (Lnet/minecraft/world/level/levelgen/Heightmap$Types;)Lnet/minecraft/world/level/levelgen/Heightmap$Types; +MD: net/minecraft/world/level/chunk/ImposterProtoChunk/m_62768_ ()Lnet/minecraft/world/level/chunk/LevelChunk; net/minecraft/world/level/chunk/ImposterProtoChunk/getWrapped ()Lnet/minecraft/world/level/chunk/LevelChunk; +MD: net/minecraft/world/level/chunk/ImposterProtoChunk/m_62769_ ()Ljava/util/Map; net/minecraft/world/level/chunk/ImposterProtoChunk/getAllReferences ()Ljava/util/Map; +MD: net/minecraft/world/level/chunk/ImposterProtoChunk/m_6286_ (Lnet/minecraft/world/entity/Entity;)V net/minecraft/world/level/chunk/ImposterProtoChunk/addEntity (Lnet/minecraft/world/entity/Entity;)V +MD: net/minecraft/world/level/chunk/ImposterProtoChunk/m_6332_ ()Z net/minecraft/world/level/chunk/ImposterProtoChunk/isLightCorrect ()Z +MD: net/minecraft/world/level/chunk/ImposterProtoChunk/m_6344_ ()Z net/minecraft/world/level/chunk/ImposterProtoChunk/isUnsaved ()Z +MD: net/minecraft/world/level/chunk/ImposterProtoChunk/m_6415_ ()Lnet/minecraft/world/level/chunk/ChunkStatus; net/minecraft/world/level/chunk/ImposterProtoChunk/getStatus ()Lnet/minecraft/world/level/chunk/ChunkStatus; +MD: net/minecraft/world/level/chunk/ImposterProtoChunk/m_6425_ (Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/material/FluidState; net/minecraft/world/level/chunk/ImposterProtoChunk/getFluidState (Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/material/FluidState; +MD: net/minecraft/world/level/chunk/ImposterProtoChunk/m_6511_ (Lnet/minecraft/world/level/levelgen/Heightmap$Types;[J)V net/minecraft/world/level/chunk/ImposterProtoChunk/setHeightmap (Lnet/minecraft/world/level/levelgen/Heightmap$Types;[J)V +MD: net/minecraft/world/level/chunk/ImposterProtoChunk/m_6633_ ()Ljava/util/Map; net/minecraft/world/level/chunk/ImposterProtoChunk/getAllStarts ()Ljava/util/Map; +MD: net/minecraft/world/level/chunk/ImposterProtoChunk/m_6978_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Z)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/chunk/ImposterProtoChunk/setBlockState (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Z)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/chunk/ImposterProtoChunk/m_7103_ ()[Lnet/minecraft/world/level/chunk/LevelChunkSection; net/minecraft/world/level/chunk/ImposterProtoChunk/getSections ()[Lnet/minecraft/world/level/chunk/LevelChunkSection; +MD: net/minecraft/world/level/chunk/ImposterProtoChunk/m_7150_ (Lnet/minecraft/world/level/chunk/ChunkStatus;)V net/minecraft/world/level/chunk/ImposterProtoChunk/setStatus (Lnet/minecraft/world/level/chunk/ChunkStatus;)V +MD: net/minecraft/world/level/chunk/ImposterProtoChunk/m_7469_ ()I net/minecraft/world/level/chunk/ImposterProtoChunk/getMaxLightLevel ()I +MD: net/minecraft/world/level/chunk/ImposterProtoChunk/m_7697_ ()Lnet/minecraft/world/level/ChunkPos; net/minecraft/world/level/chunk/ImposterProtoChunk/getPos ()Lnet/minecraft/world/level/ChunkPos; +MD: net/minecraft/world/level/chunk/ImposterProtoChunk/m_7702_ (Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/entity/BlockEntity; net/minecraft/world/level/chunk/ImposterProtoChunk/getBlockEntity (Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/entity/BlockEntity; +MD: net/minecraft/world/level/chunk/ImposterProtoChunk/m_8040_ (Ljava/util/Map;)V net/minecraft/world/level/chunk/ImposterProtoChunk/setAllStarts (Ljava/util/Map;)V +MD: net/minecraft/world/level/chunk/ImposterProtoChunk/m_8049_ (Lnet/minecraft/core/BlockPos;)Lnet/minecraft/nbt/CompoundTag; net/minecraft/world/level/chunk/ImposterProtoChunk/getBlockEntityNbt (Lnet/minecraft/core/BlockPos;)Lnet/minecraft/nbt/CompoundTag; +MD: net/minecraft/world/level/chunk/ImposterProtoChunk/m_8051_ (Lnet/minecraft/core/BlockPos;)Lnet/minecraft/nbt/CompoundTag; net/minecraft/world/level/chunk/ImposterProtoChunk/getBlockEntityNbtForSaving (Lnet/minecraft/core/BlockPos;)Lnet/minecraft/nbt/CompoundTag; +MD: net/minecraft/world/level/chunk/ImposterProtoChunk/m_8055_ (Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/chunk/ImposterProtoChunk/getBlockState (Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/chunk/ImposterProtoChunk/m_8092_ (Z)V net/minecraft/world/level/chunk/ImposterProtoChunk/setUnsaved (Z)V +MD: net/minecraft/world/level/chunk/ImposterProtoChunk/m_8094_ (Z)V net/minecraft/world/level/chunk/ImposterProtoChunk/setLightCorrect (Z)V +MD: net/minecraft/world/level/chunk/ImposterProtoChunk/m_8113_ (Lnet/minecraft/core/BlockPos;)V net/minecraft/world/level/chunk/ImposterProtoChunk/markPosForPostprocessing (Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/world/level/chunk/ImposterProtoChunk/m_8114_ (Lnet/minecraft/core/BlockPos;)V net/minecraft/world/level/chunk/ImposterProtoChunk/removeBlockEntity (Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/world/level/chunk/LevelChunk/ ()V net/minecraft/world/level/chunk/LevelChunk/ ()V +MD: net/minecraft/world/level/chunk/LevelChunk/ (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/level/ChunkPos;Lnet/minecraft/world/level/chunk/UpgradeData;Lnet/minecraft/world/ticks/LevelChunkTicks;Lnet/minecraft/world/ticks/LevelChunkTicks;J[Lnet/minecraft/world/level/chunk/LevelChunkSection;Lnet/minecraft/world/level/chunk/LevelChunk$PostLoadProcessor;Lnet/minecraft/world/level/levelgen/blending/BlendingData;)V net/minecraft/world/level/chunk/LevelChunk/ (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/level/ChunkPos;Lnet/minecraft/world/level/chunk/UpgradeData;Lnet/minecraft/world/ticks/LevelChunkTicks;Lnet/minecraft/world/ticks/LevelChunkTicks;J[Lnet/minecraft/world/level/chunk/LevelChunkSection;Lnet/minecraft/world/level/chunk/LevelChunk$PostLoadProcessor;Lnet/minecraft/world/level/levelgen/blending/BlendingData;)V +MD: net/minecraft/world/level/chunk/LevelChunk/ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/level/chunk/ProtoChunk;Lnet/minecraft/world/level/chunk/LevelChunk$PostLoadProcessor;)V net/minecraft/world/level/chunk/LevelChunk/ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/level/chunk/ProtoChunk;Lnet/minecraft/world/level/chunk/LevelChunk$PostLoadProcessor;)V +MD: net/minecraft/world/level/chunk/LevelChunk/ (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/level/ChunkPos;)V net/minecraft/world/level/chunk/LevelChunk/ (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/level/ChunkPos;)V +MD: net/minecraft/world/level/chunk/LevelChunk/m_142169_ (Lnet/minecraft/world/level/block/entity/BlockEntity;)V net/minecraft/world/level/chunk/LevelChunk/setBlockEntity (Lnet/minecraft/world/level/block/entity/BlockEntity;)V +MD: net/minecraft/world/level/chunk/LevelChunk/m_142170_ (Lnet/minecraft/world/level/block/entity/BlockEntity;)V net/minecraft/world/level/chunk/LevelChunk/addAndRegisterBlockEntity (Lnet/minecraft/world/level/block/entity/BlockEntity;)V +MD: net/minecraft/world/level/chunk/LevelChunk/m_156369_ ()V net/minecraft/world/level/chunk/LevelChunk/registerAllBlockEntitiesAfterLevelLoad ()V +MD: net/minecraft/world/level/chunk/LevelChunk/m_156370_ ()Z net/minecraft/world/level/chunk/LevelChunk/isInLevel ()Z +MD: net/minecraft/world/level/chunk/LevelChunk/m_156375_ (Lnet/minecraft/world/level/block/entity/BlockEntity;Lnet/minecraft/world/level/block/entity/BlockEntityTicker;)Lnet/minecraft/world/level/block/entity/TickingBlockEntity; net/minecraft/world/level/chunk/LevelChunk/createTicker (Lnet/minecraft/world/level/block/entity/BlockEntity;Lnet/minecraft/world/level/block/entity/BlockEntityTicker;)Lnet/minecraft/world/level/block/entity/TickingBlockEntity; +MD: net/minecraft/world/level/chunk/LevelChunk/m_156406_ (Lnet/minecraft/world/level/block/entity/BlockEntity;)V net/minecraft/world/level/chunk/LevelChunk/updateBlockEntityTicker (Lnet/minecraft/world/level/block/entity/BlockEntity;)V +MD: net/minecraft/world/level/chunk/LevelChunk/m_156410_ (Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/level/chunk/LevelChunk/isTicking (Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/level/chunk/LevelChunk/m_156412_ (Lnet/minecraft/core/BlockPos;)V net/minecraft/world/level/chunk/LevelChunk/removeBlockEntityTicker (Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/world/level/chunk/LevelChunk/m_183526_ ()Lnet/minecraft/world/ticks/TickContainerAccess; net/minecraft/world/level/chunk/LevelChunk/getFluidTicks ()Lnet/minecraft/world/ticks/TickContainerAccess; +MD: net/minecraft/world/level/chunk/LevelChunk/m_183531_ ()Lnet/minecraft/world/ticks/TickContainerAccess; net/minecraft/world/level/chunk/LevelChunk/getBlockTicks ()Lnet/minecraft/world/ticks/TickContainerAccess; +MD: net/minecraft/world/level/chunk/LevelChunk/m_183568_ ()Lnet/minecraft/world/level/chunk/ChunkAccess$TicksToSave; net/minecraft/world/level/chunk/LevelChunk/getTicksForSerialization ()Lnet/minecraft/world/level/chunk/ChunkAccess$TicksToSave; +MD: net/minecraft/world/level/chunk/LevelChunk/m_187957_ ()V net/minecraft/world/level/chunk/LevelChunk/clearAllBlockEntities ()V +MD: net/minecraft/world/level/chunk/LevelChunk/m_187958_ (Lnet/minecraft/server/level/ServerLevel;)V net/minecraft/world/level/chunk/LevelChunk/registerTickContainerInLevel (Lnet/minecraft/server/level/ServerLevel;)V +MD: net/minecraft/world/level/chunk/LevelChunk/m_187960_ (Lnet/minecraft/world/level/block/entity/BlockEntity;Lnet/minecraft/world/level/block/entity/BlockEntityTicker;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/chunk/LevelChunk$RebindableTickingBlockEntityWrapper;)Lnet/minecraft/world/level/chunk/LevelChunk$RebindableTickingBlockEntityWrapper; net/minecraft/world/level/chunk/LevelChunk/lambda$updateBlockEntityTicker$6 (Lnet/minecraft/world/level/block/entity/BlockEntity;Lnet/minecraft/world/level/block/entity/BlockEntityTicker;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/chunk/LevelChunk$RebindableTickingBlockEntityWrapper;)Lnet/minecraft/world/level/chunk/LevelChunk$RebindableTickingBlockEntityWrapper; +MD: net/minecraft/world/level/chunk/LevelChunk/m_187965_ (Lnet/minecraft/world/level/chunk/LevelChunk$RebindableTickingBlockEntityWrapper;)V net/minecraft/world/level/chunk/LevelChunk/lambda$clearAllBlockEntities$4 (Lnet/minecraft/world/level/chunk/LevelChunk$RebindableTickingBlockEntityWrapper;)V +MD: net/minecraft/world/level/chunk/LevelChunk/m_187967_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/entity/BlockEntityType;Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/level/chunk/LevelChunk/lambda$replaceWithPacketData$3 (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/entity/BlockEntityType;Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/level/chunk/LevelChunk/m_187971_ (Lnet/minecraft/network/FriendlyByteBuf;Lnet/minecraft/nbt/CompoundTag;Ljava/util/function/Consumer;)V net/minecraft/world/level/chunk/LevelChunk/replaceWithPacketData (Lnet/minecraft/network/FriendlyByteBuf;Lnet/minecraft/nbt/CompoundTag;Ljava/util/function/Consumer;)V +MD: net/minecraft/world/level/chunk/LevelChunk/m_187975_ (III)Ljava/lang/String; net/minecraft/world/level/chunk/LevelChunk/lambda$getFluidState$2 (III)Ljava/lang/String; +MD: net/minecraft/world/level/chunk/LevelChunk/m_187979_ (Lnet/minecraft/server/level/ServerLevel;)V net/minecraft/world/level/chunk/LevelChunk/unregisterTickContainerFromLevel (Lnet/minecraft/server/level/ServerLevel;)V +MD: net/minecraft/world/level/chunk/LevelChunk/m_187981_ (III)Ljava/lang/String; net/minecraft/world/level/chunk/LevelChunk/lambda$getBlockState$1 (III)Ljava/lang/String; +MD: net/minecraft/world/level/chunk/LevelChunk/m_187985_ (J)V net/minecraft/world/level/chunk/LevelChunk/unpackTicks (J)V +MD: net/minecraft/world/level/chunk/LevelChunk/m_187987_ (Lnet/minecraft/world/level/block/entity/BlockEntity;)V net/minecraft/world/level/chunk/LevelChunk/lambda$registerAllBlockEntitiesAfterLevelLoad$5 (Lnet/minecraft/world/level/block/entity/BlockEntity;)V +MD: net/minecraft/world/level/chunk/LevelChunk/m_223412_ (Lnet/minecraft/world/level/block/entity/BlockEntity;Lnet/minecraft/server/level/ServerLevel;)V net/minecraft/world/level/chunk/LevelChunk/removeGameEventListener (Lnet/minecraft/world/level/block/entity/BlockEntity;Lnet/minecraft/server/level/ServerLevel;)V +MD: net/minecraft/world/level/chunk/LevelChunk/m_223415_ (Lnet/minecraft/world/level/block/entity/BlockEntity;Lnet/minecraft/server/level/ServerLevel;)V net/minecraft/world/level/chunk/LevelChunk/addGameEventListener (Lnet/minecraft/world/level/block/entity/BlockEntity;Lnet/minecraft/server/level/ServerLevel;)V +MD: net/minecraft/world/level/chunk/LevelChunk/m_246686_ (I)Lnet/minecraft/world/level/gameevent/GameEventListenerRegistry; net/minecraft/world/level/chunk/LevelChunk/getListenerRegistry (I)Lnet/minecraft/world/level/gameevent/GameEventListenerRegistry; +MD: net/minecraft/world/level/chunk/LevelChunk/m_274381_ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/world/level/chunk/LevelChunk/replaceBiomes (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/world/level/chunk/LevelChunk/m_279985_ (Lnet/minecraft/server/level/ServerLevel;II)Lnet/minecraft/world/level/gameevent/GameEventListenerRegistry; net/minecraft/world/level/chunk/LevelChunk/lambda$getListenerRegistry$0 (Lnet/minecraft/server/level/ServerLevel;II)Lnet/minecraft/world/level/gameevent/GameEventListenerRegistry; +MD: net/minecraft/world/level/chunk/LevelChunk/m_280642_ (I)V net/minecraft/world/level/chunk/LevelChunk/removeGameEventListenerRegistry (I)V +MD: net/minecraft/world/level/chunk/LevelChunk/m_287138_ ()Lnet/minecraft/server/level/FullChunkStatus; net/minecraft/world/level/chunk/LevelChunk/getFullStatus ()Lnet/minecraft/server/level/FullChunkStatus; +MD: net/minecraft/world/level/chunk/LevelChunk/m_5685_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/chunk/LevelChunk$EntityCreationType;)Lnet/minecraft/world/level/block/entity/BlockEntity; net/minecraft/world/level/chunk/LevelChunk/getBlockEntity (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/chunk/LevelChunk$EntityCreationType;)Lnet/minecraft/world/level/block/entity/BlockEntity; +MD: net/minecraft/world/level/chunk/LevelChunk/m_62812_ ()V net/minecraft/world/level/chunk/LevelChunk/postProcessGeneration ()V +MD: net/minecraft/world/level/chunk/LevelChunk/m_62814_ (III)Lnet/minecraft/world/level/material/FluidState; net/minecraft/world/level/chunk/LevelChunk/getFluidState (III)Lnet/minecraft/world/level/material/FluidState; +MD: net/minecraft/world/level/chunk/LevelChunk/m_6286_ (Lnet/minecraft/world/entity/Entity;)V net/minecraft/world/level/chunk/LevelChunk/addEntity (Lnet/minecraft/world/entity/Entity;)V +MD: net/minecraft/world/level/chunk/LevelChunk/m_62870_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/nbt/CompoundTag;)Lnet/minecraft/world/level/block/entity/BlockEntity; net/minecraft/world/level/chunk/LevelChunk/promotePendingBlockEntity (Lnet/minecraft/core/BlockPos;Lnet/minecraft/nbt/CompoundTag;)Lnet/minecraft/world/level/block/entity/BlockEntity; +MD: net/minecraft/world/level/chunk/LevelChunk/m_62879_ (Ljava/util/function/Supplier;)V net/minecraft/world/level/chunk/LevelChunk/setFullStatus (Ljava/util/function/Supplier;)V +MD: net/minecraft/world/level/chunk/LevelChunk/m_62913_ (Z)V net/minecraft/world/level/chunk/LevelChunk/setLoaded (Z)V +MD: net/minecraft/world/level/chunk/LevelChunk/m_62934_ (Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/entity/BlockEntity; net/minecraft/world/level/chunk/LevelChunk/createBlockEntity (Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/entity/BlockEntity; +MD: net/minecraft/world/level/chunk/LevelChunk/m_62952_ ()V net/minecraft/world/level/chunk/LevelChunk/runPostLoad ()V +MD: net/minecraft/world/level/chunk/LevelChunk/m_62953_ ()Lnet/minecraft/world/level/Level; net/minecraft/world/level/chunk/LevelChunk/getLevel ()Lnet/minecraft/world/level/Level; +MD: net/minecraft/world/level/chunk/LevelChunk/m_62954_ ()Ljava/util/Map; net/minecraft/world/level/chunk/LevelChunk/getBlockEntities ()Ljava/util/Map; +MD: net/minecraft/world/level/chunk/LevelChunk/m_6415_ ()Lnet/minecraft/world/level/chunk/ChunkStatus; net/minecraft/world/level/chunk/LevelChunk/getStatus ()Lnet/minecraft/world/level/chunk/ChunkStatus; +MD: net/minecraft/world/level/chunk/LevelChunk/m_6425_ (Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/material/FluidState; net/minecraft/world/level/chunk/LevelChunk/getFluidState (Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/material/FluidState; +MD: net/minecraft/world/level/chunk/LevelChunk/m_6430_ ()Z net/minecraft/world/level/chunk/LevelChunk/isEmpty ()Z +MD: net/minecraft/world/level/chunk/LevelChunk/m_6978_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Z)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/chunk/LevelChunk/setBlockState (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Z)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/chunk/LevelChunk/m_7702_ (Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/entity/BlockEntity; net/minecraft/world/level/chunk/LevelChunk/getBlockEntity (Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/entity/BlockEntity; +MD: net/minecraft/world/level/chunk/LevelChunk/m_8051_ (Lnet/minecraft/core/BlockPos;)Lnet/minecraft/nbt/CompoundTag; net/minecraft/world/level/chunk/LevelChunk/getBlockEntityNbtForSaving (Lnet/minecraft/core/BlockPos;)Lnet/minecraft/nbt/CompoundTag; +MD: net/minecraft/world/level/chunk/LevelChunk/m_8055_ (Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/chunk/LevelChunk/getBlockState (Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/chunk/LevelChunk/m_8114_ (Lnet/minecraft/core/BlockPos;)V net/minecraft/world/level/chunk/LevelChunk/removeBlockEntity (Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/world/level/chunk/LevelChunk$1/ ()V net/minecraft/world/level/chunk/LevelChunk$1/ ()V +MD: net/minecraft/world/level/chunk/LevelChunk$1/m_142220_ ()Z net/minecraft/world/level/chunk/LevelChunk$1/isRemoved ()Z +MD: net/minecraft/world/level/chunk/LevelChunk$1/m_142224_ ()V net/minecraft/world/level/chunk/LevelChunk$1/tick ()V +MD: net/minecraft/world/level/chunk/LevelChunk$1/m_142280_ ()Ljava/lang/String; net/minecraft/world/level/chunk/LevelChunk$1/getType ()Ljava/lang/String; +MD: net/minecraft/world/level/chunk/LevelChunk$1/m_142689_ ()Lnet/minecraft/core/BlockPos; net/minecraft/world/level/chunk/LevelChunk$1/getPos ()Lnet/minecraft/core/BlockPos; +MD: net/minecraft/world/level/chunk/LevelChunk$BoundTickingBlockEntity/ (Lnet/minecraft/world/level/chunk/LevelChunk;Lnet/minecraft/world/level/block/entity/BlockEntity;Lnet/minecraft/world/level/block/entity/BlockEntityTicker;)V net/minecraft/world/level/chunk/LevelChunk$BoundTickingBlockEntity/ (Lnet/minecraft/world/level/chunk/LevelChunk;Lnet/minecraft/world/level/block/entity/BlockEntity;Lnet/minecraft/world/level/block/entity/BlockEntityTicker;)V +MD: net/minecraft/world/level/chunk/LevelChunk$BoundTickingBlockEntity/m_142220_ ()Z net/minecraft/world/level/chunk/LevelChunk$BoundTickingBlockEntity/isRemoved ()Z +MD: net/minecraft/world/level/chunk/LevelChunk$BoundTickingBlockEntity/m_142224_ ()V net/minecraft/world/level/chunk/LevelChunk$BoundTickingBlockEntity/tick ()V +MD: net/minecraft/world/level/chunk/LevelChunk$BoundTickingBlockEntity/m_142280_ ()Ljava/lang/String; net/minecraft/world/level/chunk/LevelChunk$BoundTickingBlockEntity/getType ()Ljava/lang/String; +MD: net/minecraft/world/level/chunk/LevelChunk$BoundTickingBlockEntity/m_142689_ ()Lnet/minecraft/core/BlockPos; net/minecraft/world/level/chunk/LevelChunk$BoundTickingBlockEntity/getPos ()Lnet/minecraft/core/BlockPos; +MD: net/minecraft/world/level/chunk/LevelChunk$BoundTickingBlockEntity/toString ()Ljava/lang/String; net/minecraft/world/level/chunk/LevelChunk$BoundTickingBlockEntity/toString ()Ljava/lang/String; +MD: net/minecraft/world/level/chunk/LevelChunk$EntityCreationType/ ()V net/minecraft/world/level/chunk/LevelChunk$EntityCreationType/ ()V +MD: net/minecraft/world/level/chunk/LevelChunk$EntityCreationType/ (Ljava/lang/String;I)V net/minecraft/world/level/chunk/LevelChunk$EntityCreationType/ (Ljava/lang/String;I)V +MD: net/minecraft/world/level/chunk/LevelChunk$EntityCreationType/m_156442_ ()[Lnet/minecraft/world/level/chunk/LevelChunk$EntityCreationType; net/minecraft/world/level/chunk/LevelChunk$EntityCreationType/$values ()[Lnet/minecraft/world/level/chunk/LevelChunk$EntityCreationType; +MD: net/minecraft/world/level/chunk/LevelChunk$EntityCreationType/valueOf (Ljava/lang/String;)Lnet/minecraft/world/level/chunk/LevelChunk$EntityCreationType; net/minecraft/world/level/chunk/LevelChunk$EntityCreationType/valueOf (Ljava/lang/String;)Lnet/minecraft/world/level/chunk/LevelChunk$EntityCreationType; +MD: net/minecraft/world/level/chunk/LevelChunk$EntityCreationType/values ()[Lnet/minecraft/world/level/chunk/LevelChunk$EntityCreationType; net/minecraft/world/level/chunk/LevelChunk$EntityCreationType/values ()[Lnet/minecraft/world/level/chunk/LevelChunk$EntityCreationType; +MD: net/minecraft/world/level/chunk/LevelChunk$PostLoadProcessor/m_196866_ (Lnet/minecraft/world/level/chunk/LevelChunk;)V net/minecraft/world/level/chunk/LevelChunk$PostLoadProcessor/run (Lnet/minecraft/world/level/chunk/LevelChunk;)V +MD: net/minecraft/world/level/chunk/LevelChunk$RebindableTickingBlockEntityWrapper/ (Lnet/minecraft/world/level/chunk/LevelChunk;Lnet/minecraft/world/level/block/entity/TickingBlockEntity;)V net/minecraft/world/level/chunk/LevelChunk$RebindableTickingBlockEntityWrapper/ (Lnet/minecraft/world/level/chunk/LevelChunk;Lnet/minecraft/world/level/block/entity/TickingBlockEntity;)V +MD: net/minecraft/world/level/chunk/LevelChunk$RebindableTickingBlockEntityWrapper/m_142220_ ()Z net/minecraft/world/level/chunk/LevelChunk$RebindableTickingBlockEntityWrapper/isRemoved ()Z +MD: net/minecraft/world/level/chunk/LevelChunk$RebindableTickingBlockEntityWrapper/m_142224_ ()V net/minecraft/world/level/chunk/LevelChunk$RebindableTickingBlockEntityWrapper/tick ()V +MD: net/minecraft/world/level/chunk/LevelChunk$RebindableTickingBlockEntityWrapper/m_142280_ ()Ljava/lang/String; net/minecraft/world/level/chunk/LevelChunk$RebindableTickingBlockEntityWrapper/getType ()Ljava/lang/String; +MD: net/minecraft/world/level/chunk/LevelChunk$RebindableTickingBlockEntityWrapper/m_142689_ ()Lnet/minecraft/core/BlockPos; net/minecraft/world/level/chunk/LevelChunk$RebindableTickingBlockEntityWrapper/getPos ()Lnet/minecraft/core/BlockPos; +MD: net/minecraft/world/level/chunk/LevelChunk$RebindableTickingBlockEntityWrapper/m_156449_ (Lnet/minecraft/world/level/block/entity/TickingBlockEntity;)V net/minecraft/world/level/chunk/LevelChunk$RebindableTickingBlockEntityWrapper/rebind (Lnet/minecraft/world/level/block/entity/TickingBlockEntity;)V +MD: net/minecraft/world/level/chunk/LevelChunk$RebindableTickingBlockEntityWrapper/toString ()Ljava/lang/String; net/minecraft/world/level/chunk/LevelChunk$RebindableTickingBlockEntityWrapper/toString ()Ljava/lang/String; +MD: net/minecraft/world/level/chunk/LevelChunkSection/ (Lnet/minecraft/core/Registry;)V net/minecraft/world/level/chunk/LevelChunkSection/ (Lnet/minecraft/core/Registry;)V +MD: net/minecraft/world/level/chunk/LevelChunkSection/ (Lnet/minecraft/world/level/chunk/PalettedContainer;Lnet/minecraft/world/level/chunk/PalettedContainerRO;)V net/minecraft/world/level/chunk/LevelChunkSection/ (Lnet/minecraft/world/level/chunk/PalettedContainer;Lnet/minecraft/world/level/chunk/PalettedContainerRO;)V +MD: net/minecraft/world/level/chunk/LevelChunkSection/m_187996_ ()Lnet/minecraft/world/level/chunk/PalettedContainerRO; net/minecraft/world/level/chunk/LevelChunkSection/getBiomes ()Lnet/minecraft/world/level/chunk/PalettedContainerRO; +MD: net/minecraft/world/level/chunk/LevelChunkSection/m_188008_ ()Z net/minecraft/world/level/chunk/LevelChunkSection/hasOnlyAir ()Z +MD: net/minecraft/world/level/chunk/LevelChunkSection/m_204433_ (III)Lnet/minecraft/core/Holder; net/minecraft/world/level/chunk/LevelChunkSection/getNoiseBiome (III)Lnet/minecraft/core/Holder; +MD: net/minecraft/world/level/chunk/LevelChunkSection/m_274599_ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/world/level/chunk/LevelChunkSection/readBiomes (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/world/level/chunk/LevelChunkSection/m_280631_ (Lnet/minecraft/world/level/biome/BiomeResolver;Lnet/minecraft/world/level/biome/Climate$Sampler;III)V net/minecraft/world/level/chunk/LevelChunkSection/fillBiomesFromNoise (Lnet/minecraft/world/level/biome/BiomeResolver;Lnet/minecraft/world/level/biome/Climate$Sampler;III)V +MD: net/minecraft/world/level/chunk/LevelChunkSection/m_62981_ ()V net/minecraft/world/level/chunk/LevelChunkSection/acquire ()V +MD: net/minecraft/world/level/chunk/LevelChunkSection/m_62982_ (III)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/chunk/LevelChunkSection/getBlockState (III)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/chunk/LevelChunkSection/m_62986_ (IIILnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/chunk/LevelChunkSection/setBlockState (IIILnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/chunk/LevelChunkSection/m_62991_ (IIILnet/minecraft/world/level/block/state/BlockState;Z)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/chunk/LevelChunkSection/setBlockState (IIILnet/minecraft/world/level/block/state/BlockState;Z)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/chunk/LevelChunkSection/m_63002_ (Ljava/util/function/Predicate;)Z net/minecraft/world/level/chunk/LevelChunkSection/maybeHas (Ljava/util/function/Predicate;)Z +MD: net/minecraft/world/level/chunk/LevelChunkSection/m_63004_ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/world/level/chunk/LevelChunkSection/read (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/world/level/chunk/LevelChunkSection/m_63006_ ()V net/minecraft/world/level/chunk/LevelChunkSection/release ()V +MD: net/minecraft/world/level/chunk/LevelChunkSection/m_63007_ (III)Lnet/minecraft/world/level/material/FluidState; net/minecraft/world/level/chunk/LevelChunkSection/getFluidState (III)Lnet/minecraft/world/level/material/FluidState; +MD: net/minecraft/world/level/chunk/LevelChunkSection/m_63011_ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/world/level/chunk/LevelChunkSection/write (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/world/level/chunk/LevelChunkSection/m_63014_ ()Z net/minecraft/world/level/chunk/LevelChunkSection/isRandomlyTicking ()Z +MD: net/minecraft/world/level/chunk/LevelChunkSection/m_63015_ ()Z net/minecraft/world/level/chunk/LevelChunkSection/isRandomlyTickingBlocks ()Z +MD: net/minecraft/world/level/chunk/LevelChunkSection/m_63016_ ()Z net/minecraft/world/level/chunk/LevelChunkSection/isRandomlyTickingFluids ()Z +MD: net/minecraft/world/level/chunk/LevelChunkSection/m_63018_ ()V net/minecraft/world/level/chunk/LevelChunkSection/recalcBlockCounts ()V +MD: net/minecraft/world/level/chunk/LevelChunkSection/m_63019_ ()Lnet/minecraft/world/level/chunk/PalettedContainer; net/minecraft/world/level/chunk/LevelChunkSection/getStates ()Lnet/minecraft/world/level/chunk/PalettedContainer; +MD: net/minecraft/world/level/chunk/LevelChunkSection/m_63020_ ()I net/minecraft/world/level/chunk/LevelChunkSection/getSerializedSize ()I +MD: net/minecraft/world/level/chunk/LevelChunkSection$1BlockCounter/ (Lnet/minecraft/world/level/chunk/LevelChunkSection;)V net/minecraft/world/level/chunk/LevelChunkSection$1BlockCounter/ (Lnet/minecraft/world/level/chunk/LevelChunkSection;)V +MD: net/minecraft/world/level/chunk/LevelChunkSection$1BlockCounter/m_63144_ (Lnet/minecraft/world/level/block/state/BlockState;I)V net/minecraft/world/level/chunk/LevelChunkSection$1BlockCounter/accept (Lnet/minecraft/world/level/block/state/BlockState;I)V +MD: net/minecraft/world/level/chunk/LevelChunkSection$1BlockCounter/m_63144_ (Ljava/lang/Object;I)V net/minecraft/world/level/chunk/LevelChunkSection$1BlockCounter/accept (Ljava/lang/Object;I)V +MD: net/minecraft/world/level/chunk/LightChunk/m_284254_ (Ljava/util/function/BiConsumer;)V net/minecraft/world/level/chunk/LightChunk/findBlockLightSources (Ljava/util/function/BiConsumer;)V +MD: net/minecraft/world/level/chunk/LightChunk/m_284400_ ()Lnet/minecraft/world/level/lighting/ChunkSkyLightSources; net/minecraft/world/level/chunk/LightChunk/getSkyLightSources ()Lnet/minecraft/world/level/lighting/ChunkSkyLightSources; +MD: net/minecraft/world/level/chunk/LightChunkGetter/m_6196_ (II)Lnet/minecraft/world/level/chunk/LightChunk; net/minecraft/world/level/chunk/LightChunkGetter/getChunkForLighting (II)Lnet/minecraft/world/level/chunk/LightChunk; +MD: net/minecraft/world/level/chunk/LightChunkGetter/m_6506_ (Lnet/minecraft/world/level/LightLayer;Lnet/minecraft/core/SectionPos;)V net/minecraft/world/level/chunk/LightChunkGetter/onLightUpdate (Lnet/minecraft/world/level/LightLayer;Lnet/minecraft/core/SectionPos;)V +MD: net/minecraft/world/level/chunk/LightChunkGetter/m_7653_ ()Lnet/minecraft/world/level/BlockGetter; net/minecraft/world/level/chunk/LightChunkGetter/getLevel ()Lnet/minecraft/world/level/BlockGetter; +MD: net/minecraft/world/level/chunk/LinearPalette/ (Lnet/minecraft/core/IdMap;ILnet/minecraft/world/level/chunk/PaletteResize;Ljava/util/List;)V net/minecraft/world/level/chunk/LinearPalette/ (Lnet/minecraft/core/IdMap;ILnet/minecraft/world/level/chunk/PaletteResize;Ljava/util/List;)V +MD: net/minecraft/world/level/chunk/LinearPalette/ (Lnet/minecraft/core/IdMap;[Ljava/lang/Object;Lnet/minecraft/world/level/chunk/PaletteResize;II)V net/minecraft/world/level/chunk/LinearPalette/ (Lnet/minecraft/core/IdMap;[Ljava/lang/Object;Lnet/minecraft/world/level/chunk/PaletteResize;II)V +MD: net/minecraft/world/level/chunk/LinearPalette/m_188019_ (ILnet/minecraft/core/IdMap;Lnet/minecraft/world/level/chunk/PaletteResize;Ljava/util/List;)Lnet/minecraft/world/level/chunk/Palette; net/minecraft/world/level/chunk/LinearPalette/create (ILnet/minecraft/core/IdMap;Lnet/minecraft/world/level/chunk/PaletteResize;Ljava/util/List;)Lnet/minecraft/world/level/chunk/Palette; +MD: net/minecraft/world/level/chunk/LinearPalette/m_199814_ ()Lnet/minecraft/world/level/chunk/Palette; net/minecraft/world/level/chunk/LinearPalette/copy ()Lnet/minecraft/world/level/chunk/Palette; +MD: net/minecraft/world/level/chunk/LinearPalette/m_5678_ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/world/level/chunk/LinearPalette/write (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/world/level/chunk/LinearPalette/m_5680_ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/world/level/chunk/LinearPalette/read (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/world/level/chunk/LinearPalette/m_5795_ (I)Ljava/lang/Object; net/minecraft/world/level/chunk/LinearPalette/valueFor (I)Ljava/lang/Object; +MD: net/minecraft/world/level/chunk/LinearPalette/m_62680_ ()I net/minecraft/world/level/chunk/LinearPalette/getSize ()I +MD: net/minecraft/world/level/chunk/LinearPalette/m_6419_ (Ljava/util/function/Predicate;)Z net/minecraft/world/level/chunk/LinearPalette/maybeHas (Ljava/util/function/Predicate;)Z +MD: net/minecraft/world/level/chunk/LinearPalette/m_6429_ ()I net/minecraft/world/level/chunk/LinearPalette/getSerializedSize ()I +MD: net/minecraft/world/level/chunk/LinearPalette/m_6796_ (Ljava/lang/Object;)I net/minecraft/world/level/chunk/LinearPalette/idFor (Ljava/lang/Object;)I +MD: net/minecraft/world/level/chunk/MissingPaletteEntryException/ (I)V net/minecraft/world/level/chunk/MissingPaletteEntryException/ (I)V +MD: net/minecraft/world/level/chunk/Palette/m_199814_ ()Lnet/minecraft/world/level/chunk/Palette; net/minecraft/world/level/chunk/Palette/copy ()Lnet/minecraft/world/level/chunk/Palette; +MD: net/minecraft/world/level/chunk/Palette/m_5678_ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/world/level/chunk/Palette/write (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/world/level/chunk/Palette/m_5680_ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/world/level/chunk/Palette/read (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/world/level/chunk/Palette/m_5795_ (I)Ljava/lang/Object; net/minecraft/world/level/chunk/Palette/valueFor (I)Ljava/lang/Object; +MD: net/minecraft/world/level/chunk/Palette/m_62680_ ()I net/minecraft/world/level/chunk/Palette/getSize ()I +MD: net/minecraft/world/level/chunk/Palette/m_6419_ (Ljava/util/function/Predicate;)Z net/minecraft/world/level/chunk/Palette/maybeHas (Ljava/util/function/Predicate;)Z +MD: net/minecraft/world/level/chunk/Palette/m_6429_ ()I net/minecraft/world/level/chunk/Palette/getSerializedSize ()I +MD: net/minecraft/world/level/chunk/Palette/m_6796_ (Ljava/lang/Object;)I net/minecraft/world/level/chunk/Palette/idFor (Ljava/lang/Object;)I +MD: net/minecraft/world/level/chunk/Palette$Factory/m_188026_ (ILnet/minecraft/core/IdMap;Lnet/minecraft/world/level/chunk/PaletteResize;Ljava/util/List;)Lnet/minecraft/world/level/chunk/Palette; net/minecraft/world/level/chunk/Palette$Factory/create (ILnet/minecraft/core/IdMap;Lnet/minecraft/world/level/chunk/PaletteResize;Ljava/util/List;)Lnet/minecraft/world/level/chunk/Palette; +MD: net/minecraft/world/level/chunk/PaletteResize/m_7248_ (ILjava/lang/Object;)I net/minecraft/world/level/chunk/PaletteResize/onResize (ILjava/lang/Object;)I +MD: net/minecraft/world/level/chunk/PalettedContainer/ (Lnet/minecraft/core/IdMap;Lnet/minecraft/world/level/chunk/PalettedContainer$Strategy;Lnet/minecraft/world/level/chunk/PalettedContainer$Data;)V net/minecraft/world/level/chunk/PalettedContainer/ (Lnet/minecraft/core/IdMap;Lnet/minecraft/world/level/chunk/PalettedContainer$Strategy;Lnet/minecraft/world/level/chunk/PalettedContainer$Data;)V +MD: net/minecraft/world/level/chunk/PalettedContainer/ (Lnet/minecraft/core/IdMap;Lnet/minecraft/world/level/chunk/PalettedContainer$Strategy;Lnet/minecraft/world/level/chunk/PalettedContainer$Configuration;Lnet/minecraft/util/BitStorage;Ljava/util/List;)V net/minecraft/world/level/chunk/PalettedContainer/ (Lnet/minecraft/core/IdMap;Lnet/minecraft/world/level/chunk/PalettedContainer$Strategy;Lnet/minecraft/world/level/chunk/PalettedContainer$Configuration;Lnet/minecraft/util/BitStorage;Ljava/util/List;)V +MD: net/minecraft/world/level/chunk/PalettedContainer/ (Lnet/minecraft/core/IdMap;Ljava/lang/Object;Lnet/minecraft/world/level/chunk/PalettedContainer$Strategy;)V net/minecraft/world/level/chunk/PalettedContainer/ (Lnet/minecraft/core/IdMap;Ljava/lang/Object;Lnet/minecraft/world/level/chunk/PalettedContainer$Strategy;)V +MD: net/minecraft/world/level/chunk/PalettedContainer/m_156470_ (IIILjava/lang/Object;)V net/minecraft/world/level/chunk/PalettedContainer/set (IIILjava/lang/Object;)V +MD: net/minecraft/world/level/chunk/PalettedContainer/m_188044_ (Lcom/mojang/serialization/Codec;Ljava/lang/Object;Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/world/level/chunk/PalettedContainer/lambda$codec$3 (Lcom/mojang/serialization/Codec;Ljava/lang/Object;Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/world/level/chunk/PalettedContainer/m_188051_ (Lnet/minecraft/world/level/chunk/PalettedContainer$Data;I)Lnet/minecraft/world/level/chunk/PalettedContainer$Data; net/minecraft/world/level/chunk/PalettedContainer/createOrReuseData (Lnet/minecraft/world/level/chunk/PalettedContainer$Data;I)Lnet/minecraft/world/level/chunk/PalettedContainer$Data; +MD: net/minecraft/world/level/chunk/PalettedContainer/m_188064_ (Lnet/minecraft/core/IdMap;Lnet/minecraft/world/level/chunk/PalettedContainer$Strategy;)Lnet/minecraft/world/level/chunk/PalettedContainerRO$PackedData; net/minecraft/world/level/chunk/PalettedContainer/pack (Lnet/minecraft/core/IdMap;Lnet/minecraft/world/level/chunk/PalettedContainer$Strategy;)Lnet/minecraft/world/level/chunk/PalettedContainerRO$PackedData; +MD: net/minecraft/world/level/chunk/PalettedContainer/m_188067_ (Lnet/minecraft/core/IdMap;Lnet/minecraft/world/level/chunk/PalettedContainer$Strategy;Lnet/minecraft/world/level/chunk/PalettedContainerRO$PackedData;)Lcom/mojang/serialization/DataResult; net/minecraft/world/level/chunk/PalettedContainer/unpack (Lnet/minecraft/core/IdMap;Lnet/minecraft/world/level/chunk/PalettedContainer$Strategy;Lnet/minecraft/world/level/chunk/PalettedContainerRO$PackedData;)Lcom/mojang/serialization/DataResult; +MD: net/minecraft/world/level/chunk/PalettedContainer/m_188071_ (Lnet/minecraft/core/IdMap;Lnet/minecraft/world/level/chunk/PalettedContainer$Strategy;Lnet/minecraft/world/level/chunk/PalettedContainerRO;)Lnet/minecraft/world/level/chunk/PalettedContainerRO$PackedData; net/minecraft/world/level/chunk/PalettedContainer/lambda$codec$5 (Lnet/minecraft/core/IdMap;Lnet/minecraft/world/level/chunk/PalettedContainer$Strategy;Lnet/minecraft/world/level/chunk/PalettedContainerRO;)Lnet/minecraft/world/level/chunk/PalettedContainerRO$PackedData; +MD: net/minecraft/world/level/chunk/PalettedContainer/m_188078_ (Lnet/minecraft/world/level/chunk/PalettedContainerRO$Unpacker;Lnet/minecraft/core/IdMap;Lnet/minecraft/world/level/chunk/PalettedContainer$Strategy;Lnet/minecraft/world/level/chunk/PalettedContainerRO$PackedData;)Lcom/mojang/serialization/DataResult; net/minecraft/world/level/chunk/PalettedContainer/lambda$codec$4 (Lnet/minecraft/world/level/chunk/PalettedContainerRO$Unpacker;Lnet/minecraft/core/IdMap;Lnet/minecraft/world/level/chunk/PalettedContainer$Strategy;Lnet/minecraft/world/level/chunk/PalettedContainerRO$PackedData;)Lcom/mojang/serialization/DataResult; +MD: net/minecraft/world/level/chunk/PalettedContainer/m_196879_ (Ljava/util/function/Consumer;)V net/minecraft/world/level/chunk/PalettedContainer/getAll (Ljava/util/function/Consumer;)V +MD: net/minecraft/world/level/chunk/PalettedContainer/m_196881_ (Lnet/minecraft/core/IdMap;Lnet/minecraft/world/level/chunk/PalettedContainer$Strategy;Lnet/minecraft/world/level/chunk/PalettedContainerRO$PackedData;)Lcom/mojang/serialization/DataResult; net/minecraft/world/level/chunk/PalettedContainer/lambda$codecRO$2 (Lnet/minecraft/core/IdMap;Lnet/minecraft/world/level/chunk/PalettedContainer$Strategy;Lnet/minecraft/world/level/chunk/PalettedContainerRO$PackedData;)Lcom/mojang/serialization/DataResult; +MD: net/minecraft/world/level/chunk/PalettedContainer/m_196885_ (Ljava/util/function/Consumer;Lnet/minecraft/world/level/chunk/Palette;I)V net/minecraft/world/level/chunk/PalettedContainer/lambda$getAll$6 (Ljava/util/function/Consumer;Lnet/minecraft/world/level/chunk/Palette;I)V +MD: net/minecraft/world/level/chunk/PalettedContainer/m_198176_ (Lnet/minecraft/world/level/chunk/HashMapPalette;I)I net/minecraft/world/level/chunk/PalettedContainer/lambda$pack$11 (Lnet/minecraft/world/level/chunk/HashMapPalette;I)I +MD: net/minecraft/world/level/chunk/PalettedContainer/m_198179_ (Lit/unimi/dsi/fastutil/ints/Int2IntOpenHashMap;I)V net/minecraft/world/level/chunk/PalettedContainer/lambda$count$12 (Lit/unimi/dsi/fastutil/ints/Int2IntOpenHashMap;I)V +MD: net/minecraft/world/level/chunk/PalettedContainer/m_198182_ (ILjava/lang/Object;)I net/minecraft/world/level/chunk/PalettedContainer/lambda$new$0 (ILjava/lang/Object;)I +MD: net/minecraft/world/level/chunk/PalettedContainer/m_198189_ ([ILjava/util/function/IntUnaryOperator;)V net/minecraft/world/level/chunk/PalettedContainer/swapPalette ([ILjava/util/function/IntUnaryOperator;)V +MD: net/minecraft/world/level/chunk/PalettedContainer/m_199931_ ()Lnet/minecraft/world/level/chunk/PalettedContainer; net/minecraft/world/level/chunk/PalettedContainer/copy ()Lnet/minecraft/world/level/chunk/PalettedContainer; +MD: net/minecraft/world/level/chunk/PalettedContainer/m_200428_ (Lnet/minecraft/world/level/chunk/PalettedContainer;)Lnet/minecraft/world/level/chunk/PalettedContainerRO; net/minecraft/world/level/chunk/PalettedContainer/lambda$codecRO$1 (Lnet/minecraft/world/level/chunk/PalettedContainer;)Lnet/minecraft/world/level/chunk/PalettedContainerRO; +MD: net/minecraft/world/level/chunk/PalettedContainer/m_238277_ (ILjava/lang/Object;)I net/minecraft/world/level/chunk/PalettedContainer/lambda$unpack$8 (ILjava/lang/Object;)I +MD: net/minecraft/world/level/chunk/PalettedContainer/m_238280_ (Lnet/minecraft/core/IdMap;Lnet/minecraft/world/level/chunk/Palette;I)I net/minecraft/world/level/chunk/PalettedContainer/lambda$unpack$9 (Lnet/minecraft/core/IdMap;Lnet/minecraft/world/level/chunk/Palette;I)I +MD: net/minecraft/world/level/chunk/PalettedContainer/m_238334_ ()Lnet/minecraft/world/level/chunk/PalettedContainer; net/minecraft/world/level/chunk/PalettedContainer/recreate ()Lnet/minecraft/world/level/chunk/PalettedContainer; +MD: net/minecraft/world/level/chunk/PalettedContainer/m_238371_ (Lnet/minecraft/core/IdMap;Lcom/mojang/serialization/Codec;Lnet/minecraft/world/level/chunk/PalettedContainer$Strategy;Ljava/lang/Object;)Lcom/mojang/serialization/Codec; net/minecraft/world/level/chunk/PalettedContainer/codecRW (Lnet/minecraft/core/IdMap;Lcom/mojang/serialization/Codec;Lnet/minecraft/world/level/chunk/PalettedContainer$Strategy;Ljava/lang/Object;)Lcom/mojang/serialization/Codec; +MD: net/minecraft/world/level/chunk/PalettedContainer/m_238418_ (Lnet/minecraft/core/IdMap;Lcom/mojang/serialization/Codec;Lnet/minecraft/world/level/chunk/PalettedContainer$Strategy;Ljava/lang/Object;)Lcom/mojang/serialization/Codec; net/minecraft/world/level/chunk/PalettedContainer/codecRO (Lnet/minecraft/core/IdMap;Lcom/mojang/serialization/Codec;Lnet/minecraft/world/level/chunk/PalettedContainer$Strategy;Ljava/lang/Object;)Lcom/mojang/serialization/Codec; +MD: net/minecraft/world/level/chunk/PalettedContainer/m_238427_ (Lnet/minecraft/core/IdMap;Lcom/mojang/serialization/Codec;Lnet/minecraft/world/level/chunk/PalettedContainer$Strategy;Ljava/lang/Object;Lnet/minecraft/world/level/chunk/PalettedContainerRO$Unpacker;)Lcom/mojang/serialization/Codec; net/minecraft/world/level/chunk/PalettedContainer/codec (Lnet/minecraft/core/IdMap;Lcom/mojang/serialization/Codec;Lnet/minecraft/world/level/chunk/PalettedContainer$Strategy;Ljava/lang/Object;Lnet/minecraft/world/level/chunk/PalettedContainerRO$Unpacker;)Lcom/mojang/serialization/Codec; +MD: net/minecraft/world/level/chunk/PalettedContainer/m_274279_ (Lnet/minecraft/util/SimpleBitStorage$InitializationException;)Ljava/lang/String; net/minecraft/world/level/chunk/PalettedContainer/lambda$unpack$10 (Lnet/minecraft/util/SimpleBitStorage$InitializationException;)Ljava/lang/String; +MD: net/minecraft/world/level/chunk/PalettedContainer/m_274280_ ()Ljava/lang/String; net/minecraft/world/level/chunk/PalettedContainer/lambda$unpack$7 ()Ljava/lang/String; +MD: net/minecraft/world/level/chunk/PalettedContainer/m_63084_ ()V net/minecraft/world/level/chunk/PalettedContainer/acquire ()V +MD: net/minecraft/world/level/chunk/PalettedContainer/m_63085_ (I)Ljava/lang/Object; net/minecraft/world/level/chunk/PalettedContainer/get (I)Ljava/lang/Object; +MD: net/minecraft/world/level/chunk/PalettedContainer/m_63087_ (III)Ljava/lang/Object; net/minecraft/world/level/chunk/PalettedContainer/get (III)Ljava/lang/Object; +MD: net/minecraft/world/level/chunk/PalettedContainer/m_63091_ (IIILjava/lang/Object;)Ljava/lang/Object; net/minecraft/world/level/chunk/PalettedContainer/getAndSet (IIILjava/lang/Object;)Ljava/lang/Object; +MD: net/minecraft/world/level/chunk/PalettedContainer/m_63096_ (ILjava/lang/Object;)Ljava/lang/Object; net/minecraft/world/level/chunk/PalettedContainer/getAndSet (ILjava/lang/Object;)Ljava/lang/Object; +MD: net/minecraft/world/level/chunk/PalettedContainer/m_63099_ (Lnet/minecraft/world/level/chunk/PalettedContainer$CountConsumer;)V net/minecraft/world/level/chunk/PalettedContainer/count (Lnet/minecraft/world/level/chunk/PalettedContainer$CountConsumer;)V +MD: net/minecraft/world/level/chunk/PalettedContainer/m_63109_ (Ljava/util/function/Predicate;)Z net/minecraft/world/level/chunk/PalettedContainer/maybeHas (Ljava/util/function/Predicate;)Z +MD: net/minecraft/world/level/chunk/PalettedContainer/m_63118_ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/world/level/chunk/PalettedContainer/read (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/world/level/chunk/PalettedContainer/m_63120_ ()V net/minecraft/world/level/chunk/PalettedContainer/release ()V +MD: net/minecraft/world/level/chunk/PalettedContainer/m_63127_ (IIILjava/lang/Object;)Ljava/lang/Object; net/minecraft/world/level/chunk/PalettedContainer/getAndSetUnchecked (IIILjava/lang/Object;)Ljava/lang/Object; +MD: net/minecraft/world/level/chunk/PalettedContainer/m_63132_ (ILjava/lang/Object;)V net/minecraft/world/level/chunk/PalettedContainer/set (ILjava/lang/Object;)V +MD: net/minecraft/world/level/chunk/PalettedContainer/m_63135_ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/world/level/chunk/PalettedContainer/write (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/world/level/chunk/PalettedContainer/m_63137_ ()I net/minecraft/world/level/chunk/PalettedContainer/getSerializedSize ()I +MD: net/minecraft/world/level/chunk/PalettedContainer/m_63138_ (Lnet/minecraft/world/level/chunk/PalettedContainer$CountConsumer;Lit/unimi/dsi/fastutil/ints/Int2IntMap$Entry;)V net/minecraft/world/level/chunk/PalettedContainer/lambda$count$13 (Lnet/minecraft/world/level/chunk/PalettedContainer$CountConsumer;Lit/unimi/dsi/fastutil/ints/Int2IntMap$Entry;)V +MD: net/minecraft/world/level/chunk/PalettedContainer/m_7248_ (ILjava/lang/Object;)I net/minecraft/world/level/chunk/PalettedContainer/onResize (ILjava/lang/Object;)I +MD: net/minecraft/world/level/chunk/PalettedContainer$Configuration/ (Lnet/minecraft/world/level/chunk/Palette$Factory;I)V net/minecraft/world/level/chunk/PalettedContainer$Configuration/ (Lnet/minecraft/world/level/chunk/Palette$Factory;I)V +MD: net/minecraft/world/level/chunk/PalettedContainer$Configuration/equals (Ljava/lang/Object;)Z net/minecraft/world/level/chunk/PalettedContainer$Configuration/equals (Ljava/lang/Object;)Z +MD: net/minecraft/world/level/chunk/PalettedContainer$Configuration/f_188085_ ()Lnet/minecraft/world/level/chunk/Palette$Factory; net/minecraft/world/level/chunk/PalettedContainer$Configuration/factory ()Lnet/minecraft/world/level/chunk/Palette$Factory; +MD: net/minecraft/world/level/chunk/PalettedContainer$Configuration/f_188086_ ()I net/minecraft/world/level/chunk/PalettedContainer$Configuration/bits ()I +MD: net/minecraft/world/level/chunk/PalettedContainer$Configuration/hashCode ()I net/minecraft/world/level/chunk/PalettedContainer$Configuration/hashCode ()I +MD: net/minecraft/world/level/chunk/PalettedContainer$Configuration/m_188091_ (Lnet/minecraft/core/IdMap;Lnet/minecraft/world/level/chunk/PaletteResize;I)Lnet/minecraft/world/level/chunk/PalettedContainer$Data; net/minecraft/world/level/chunk/PalettedContainer$Configuration/createData (Lnet/minecraft/core/IdMap;Lnet/minecraft/world/level/chunk/PaletteResize;I)Lnet/minecraft/world/level/chunk/PalettedContainer$Data; +MD: net/minecraft/world/level/chunk/PalettedContainer$Configuration/toString ()Ljava/lang/String; net/minecraft/world/level/chunk/PalettedContainer$Configuration/toString ()Ljava/lang/String; +MD: net/minecraft/world/level/chunk/PalettedContainer$CountConsumer/m_63144_ (Ljava/lang/Object;I)V net/minecraft/world/level/chunk/PalettedContainer$CountConsumer/accept (Ljava/lang/Object;I)V +MD: net/minecraft/world/level/chunk/PalettedContainer$Data/ (Lnet/minecraft/world/level/chunk/PalettedContainer$Configuration;Lnet/minecraft/util/BitStorage;Lnet/minecraft/world/level/chunk/Palette;)V net/minecraft/world/level/chunk/PalettedContainer$Data/ (Lnet/minecraft/world/level/chunk/PalettedContainer$Configuration;Lnet/minecraft/util/BitStorage;Lnet/minecraft/world/level/chunk/Palette;)V +MD: net/minecraft/world/level/chunk/PalettedContainer$Data/equals (Ljava/lang/Object;)Z net/minecraft/world/level/chunk/PalettedContainer$Data/equals (Ljava/lang/Object;)Z +MD: net/minecraft/world/level/chunk/PalettedContainer$Data/f_188100_ ()Lnet/minecraft/world/level/chunk/PalettedContainer$Configuration; net/minecraft/world/level/chunk/PalettedContainer$Data/configuration ()Lnet/minecraft/world/level/chunk/PalettedContainer$Configuration; +MD: net/minecraft/world/level/chunk/PalettedContainer$Data/f_188101_ ()Lnet/minecraft/util/BitStorage; net/minecraft/world/level/chunk/PalettedContainer$Data/storage ()Lnet/minecraft/util/BitStorage; +MD: net/minecraft/world/level/chunk/PalettedContainer$Data/f_188102_ ()Lnet/minecraft/world/level/chunk/Palette; net/minecraft/world/level/chunk/PalettedContainer$Data/palette ()Lnet/minecraft/world/level/chunk/Palette; +MD: net/minecraft/world/level/chunk/PalettedContainer$Data/hashCode ()I net/minecraft/world/level/chunk/PalettedContainer$Data/hashCode ()I +MD: net/minecraft/world/level/chunk/PalettedContainer$Data/m_188107_ ()I net/minecraft/world/level/chunk/PalettedContainer$Data/getSerializedSize ()I +MD: net/minecraft/world/level/chunk/PalettedContainer$Data/m_188111_ (Lnet/minecraft/world/level/chunk/Palette;Lnet/minecraft/util/BitStorage;)V net/minecraft/world/level/chunk/PalettedContainer$Data/copyFrom (Lnet/minecraft/world/level/chunk/Palette;Lnet/minecraft/util/BitStorage;)V +MD: net/minecraft/world/level/chunk/PalettedContainer$Data/m_188114_ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/world/level/chunk/PalettedContainer$Data/write (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/world/level/chunk/PalettedContainer$Data/m_238361_ ()Lnet/minecraft/world/level/chunk/PalettedContainer$Data; net/minecraft/world/level/chunk/PalettedContainer$Data/copy ()Lnet/minecraft/world/level/chunk/PalettedContainer$Data; +MD: net/minecraft/world/level/chunk/PalettedContainer$Data/toString ()Ljava/lang/String; net/minecraft/world/level/chunk/PalettedContainer$Data/toString ()Ljava/lang/String; +MD: net/minecraft/world/level/chunk/PalettedContainer$Strategy/ ()V net/minecraft/world/level/chunk/PalettedContainer$Strategy/ ()V +MD: net/minecraft/world/level/chunk/PalettedContainer$Strategy/ (I)V net/minecraft/world/level/chunk/PalettedContainer$Strategy/ (I)V +MD: net/minecraft/world/level/chunk/PalettedContainer$Strategy/m_183248_ (Lnet/minecraft/core/IdMap;I)Lnet/minecraft/world/level/chunk/PalettedContainer$Configuration; net/minecraft/world/level/chunk/PalettedContainer$Strategy/getConfiguration (Lnet/minecraft/core/IdMap;I)Lnet/minecraft/world/level/chunk/PalettedContainer$Configuration; +MD: net/minecraft/world/level/chunk/PalettedContainer$Strategy/m_188144_ ()I net/minecraft/world/level/chunk/PalettedContainer$Strategy/size ()I +MD: net/minecraft/world/level/chunk/PalettedContainer$Strategy/m_188145_ (III)I net/minecraft/world/level/chunk/PalettedContainer$Strategy/getIndex (III)I +MD: net/minecraft/world/level/chunk/PalettedContainer$Strategy/m_188151_ (Lnet/minecraft/core/IdMap;I)I net/minecraft/world/level/chunk/PalettedContainer$Strategy/calculateBitsForSerialization (Lnet/minecraft/core/IdMap;I)I +MD: net/minecraft/world/level/chunk/PalettedContainer$Strategy$1/ (I)V net/minecraft/world/level/chunk/PalettedContainer$Strategy$1/ (I)V +MD: net/minecraft/world/level/chunk/PalettedContainer$Strategy$1/m_183248_ (Lnet/minecraft/core/IdMap;I)Lnet/minecraft/world/level/chunk/PalettedContainer$Configuration; net/minecraft/world/level/chunk/PalettedContainer$Strategy$1/getConfiguration (Lnet/minecraft/core/IdMap;I)Lnet/minecraft/world/level/chunk/PalettedContainer$Configuration; +MD: net/minecraft/world/level/chunk/PalettedContainer$Strategy$2/ (I)V net/minecraft/world/level/chunk/PalettedContainer$Strategy$2/ (I)V +MD: net/minecraft/world/level/chunk/PalettedContainer$Strategy$2/m_183248_ (Lnet/minecraft/core/IdMap;I)Lnet/minecraft/world/level/chunk/PalettedContainer$Configuration; net/minecraft/world/level/chunk/PalettedContainer$Strategy$2/getConfiguration (Lnet/minecraft/core/IdMap;I)Lnet/minecraft/world/level/chunk/PalettedContainer$Configuration; +MD: net/minecraft/world/level/chunk/PalettedContainerRO/m_188064_ (Lnet/minecraft/core/IdMap;Lnet/minecraft/world/level/chunk/PalettedContainer$Strategy;)Lnet/minecraft/world/level/chunk/PalettedContainerRO$PackedData; net/minecraft/world/level/chunk/PalettedContainerRO/pack (Lnet/minecraft/core/IdMap;Lnet/minecraft/world/level/chunk/PalettedContainer$Strategy;)Lnet/minecraft/world/level/chunk/PalettedContainerRO$PackedData; +MD: net/minecraft/world/level/chunk/PalettedContainerRO/m_196879_ (Ljava/util/function/Consumer;)V net/minecraft/world/level/chunk/PalettedContainerRO/getAll (Ljava/util/function/Consumer;)V +MD: net/minecraft/world/level/chunk/PalettedContainerRO/m_238334_ ()Lnet/minecraft/world/level/chunk/PalettedContainer; net/minecraft/world/level/chunk/PalettedContainerRO/recreate ()Lnet/minecraft/world/level/chunk/PalettedContainer; +MD: net/minecraft/world/level/chunk/PalettedContainerRO/m_63087_ (III)Ljava/lang/Object; net/minecraft/world/level/chunk/PalettedContainerRO/get (III)Ljava/lang/Object; +MD: net/minecraft/world/level/chunk/PalettedContainerRO/m_63099_ (Lnet/minecraft/world/level/chunk/PalettedContainer$CountConsumer;)V net/minecraft/world/level/chunk/PalettedContainerRO/count (Lnet/minecraft/world/level/chunk/PalettedContainer$CountConsumer;)V +MD: net/minecraft/world/level/chunk/PalettedContainerRO/m_63109_ (Ljava/util/function/Predicate;)Z net/minecraft/world/level/chunk/PalettedContainerRO/maybeHas (Ljava/util/function/Predicate;)Z +MD: net/minecraft/world/level/chunk/PalettedContainerRO/m_63135_ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/world/level/chunk/PalettedContainerRO/write (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/world/level/chunk/PalettedContainerRO/m_63137_ ()I net/minecraft/world/level/chunk/PalettedContainerRO/getSerializedSize ()I +MD: net/minecraft/world/level/chunk/PalettedContainerRO$PackedData/ (Ljava/util/List;Ljava/util/Optional;)V net/minecraft/world/level/chunk/PalettedContainerRO$PackedData/ (Ljava/util/List;Ljava/util/Optional;)V +MD: net/minecraft/world/level/chunk/PalettedContainerRO$PackedData/equals (Ljava/lang/Object;)Z net/minecraft/world/level/chunk/PalettedContainerRO$PackedData/equals (Ljava/lang/Object;)Z +MD: net/minecraft/world/level/chunk/PalettedContainerRO$PackedData/f_238179_ ()Ljava/util/Optional; net/minecraft/world/level/chunk/PalettedContainerRO$PackedData/storage ()Ljava/util/Optional; +MD: net/minecraft/world/level/chunk/PalettedContainerRO$PackedData/f_238184_ ()Ljava/util/List; net/minecraft/world/level/chunk/PalettedContainerRO$PackedData/paletteEntries ()Ljava/util/List; +MD: net/minecraft/world/level/chunk/PalettedContainerRO$PackedData/hashCode ()I net/minecraft/world/level/chunk/PalettedContainerRO$PackedData/hashCode ()I +MD: net/minecraft/world/level/chunk/PalettedContainerRO$PackedData/toString ()Ljava/lang/String; net/minecraft/world/level/chunk/PalettedContainerRO$PackedData/toString ()Ljava/lang/String; +MD: net/minecraft/world/level/chunk/PalettedContainerRO$Unpacker/m_238363_ (Lnet/minecraft/core/IdMap;Lnet/minecraft/world/level/chunk/PalettedContainer$Strategy;Lnet/minecraft/world/level/chunk/PalettedContainerRO$PackedData;)Lcom/mojang/serialization/DataResult; net/minecraft/world/level/chunk/PalettedContainerRO$Unpacker/read (Lnet/minecraft/core/IdMap;Lnet/minecraft/world/level/chunk/PalettedContainer$Strategy;Lnet/minecraft/world/level/chunk/PalettedContainerRO$PackedData;)Lcom/mojang/serialization/DataResult; +MD: net/minecraft/world/level/chunk/ProtoChunk/ (Lnet/minecraft/world/level/ChunkPos;Lnet/minecraft/world/level/chunk/UpgradeData;Lnet/minecraft/world/level/LevelHeightAccessor;Lnet/minecraft/core/Registry;Lnet/minecraft/world/level/levelgen/blending/BlendingData;)V net/minecraft/world/level/chunk/ProtoChunk/ (Lnet/minecraft/world/level/ChunkPos;Lnet/minecraft/world/level/chunk/UpgradeData;Lnet/minecraft/world/level/LevelHeightAccessor;Lnet/minecraft/core/Registry;Lnet/minecraft/world/level/levelgen/blending/BlendingData;)V +MD: net/minecraft/world/level/chunk/ProtoChunk/ (Lnet/minecraft/world/level/ChunkPos;Lnet/minecraft/world/level/chunk/UpgradeData;[Lnet/minecraft/world/level/chunk/LevelChunkSection;Lnet/minecraft/world/ticks/ProtoChunkTicks;Lnet/minecraft/world/ticks/ProtoChunkTicks;Lnet/minecraft/world/level/LevelHeightAccessor;Lnet/minecraft/core/Registry;Lnet/minecraft/world/level/levelgen/blending/BlendingData;)V net/minecraft/world/level/chunk/ProtoChunk/ (Lnet/minecraft/world/level/ChunkPos;Lnet/minecraft/world/level/chunk/UpgradeData;[Lnet/minecraft/world/level/chunk/LevelChunkSection;Lnet/minecraft/world/ticks/ProtoChunkTicks;Lnet/minecraft/world/ticks/ProtoChunkTicks;Lnet/minecraft/world/level/LevelHeightAccessor;Lnet/minecraft/core/Registry;Lnet/minecraft/world/level/levelgen/blending/BlendingData;)V +MD: net/minecraft/world/level/chunk/ProtoChunk/m_142169_ (Lnet/minecraft/world/level/block/entity/BlockEntity;)V net/minecraft/world/level/chunk/ProtoChunk/setBlockEntity (Lnet/minecraft/world/level/block/entity/BlockEntity;)V +MD: net/minecraft/world/level/chunk/ProtoChunk/m_183376_ ()Lnet/minecraft/world/level/levelgen/BelowZeroRetrogen; net/minecraft/world/level/chunk/ProtoChunk/getBelowZeroRetrogen ()Lnet/minecraft/world/level/levelgen/BelowZeroRetrogen; +MD: net/minecraft/world/level/chunk/ProtoChunk/m_183526_ ()Lnet/minecraft/world/ticks/TickContainerAccess; net/minecraft/world/level/chunk/ProtoChunk/getFluidTicks ()Lnet/minecraft/world/ticks/TickContainerAccess; +MD: net/minecraft/world/level/chunk/ProtoChunk/m_183531_ ()Lnet/minecraft/world/ticks/TickContainerAccess; net/minecraft/world/level/chunk/ProtoChunk/getBlockTicks ()Lnet/minecraft/world/ticks/TickContainerAccess; +MD: net/minecraft/world/level/chunk/ProtoChunk/m_183568_ ()Lnet/minecraft/world/level/chunk/ChunkAccess$TicksToSave; net/minecraft/world/level/chunk/ProtoChunk/getTicksForSerialization ()Lnet/minecraft/world/level/chunk/ChunkAccess$TicksToSave; +MD: net/minecraft/world/level/chunk/ProtoChunk/m_183612_ (Lnet/minecraft/world/level/levelgen/GenerationStep$Carving;)Lnet/minecraft/world/level/chunk/CarvingMask; net/minecraft/world/level/chunk/ProtoChunk/getCarvingMask (Lnet/minecraft/world/level/levelgen/GenerationStep$Carving;)Lnet/minecraft/world/level/chunk/CarvingMask; +MD: net/minecraft/world/level/chunk/ProtoChunk/m_183613_ (Lnet/minecraft/world/level/levelgen/GenerationStep$Carving;)Lnet/minecraft/world/level/chunk/CarvingMask; net/minecraft/world/level/chunk/ProtoChunk/getOrCreateCarvingMask (Lnet/minecraft/world/level/levelgen/GenerationStep$Carving;)Lnet/minecraft/world/level/chunk/CarvingMask; +MD: net/minecraft/world/level/chunk/ProtoChunk/m_183618_ ()Lnet/minecraft/world/level/LevelHeightAccessor; net/minecraft/world/level/chunk/ProtoChunk/getHeightAccessorForGeneration ()Lnet/minecraft/world/level/LevelHeightAccessor; +MD: net/minecraft/world/level/chunk/ProtoChunk/m_188181_ ()Lnet/minecraft/world/ticks/LevelChunkTicks; net/minecraft/world/level/chunk/ProtoChunk/unpackBlockTicks ()Lnet/minecraft/world/ticks/LevelChunkTicks; +MD: net/minecraft/world/level/chunk/ProtoChunk/m_188182_ ()Lnet/minecraft/world/ticks/LevelChunkTicks; net/minecraft/world/level/chunk/ProtoChunk/unpackFluidTicks ()Lnet/minecraft/world/ticks/LevelChunkTicks; +MD: net/minecraft/world/level/chunk/ProtoChunk/m_188183_ (Lnet/minecraft/world/level/levelgen/BelowZeroRetrogen;)V net/minecraft/world/level/chunk/ProtoChunk/setBelowZeroRetrogen (Lnet/minecraft/world/level/levelgen/BelowZeroRetrogen;)V +MD: net/minecraft/world/level/chunk/ProtoChunk/m_188186_ (Lnet/minecraft/world/level/levelgen/GenerationStep$Carving;Lnet/minecraft/world/level/chunk/CarvingMask;)V net/minecraft/world/level/chunk/ProtoChunk/setCarvingMask (Lnet/minecraft/world/level/levelgen/GenerationStep$Carving;Lnet/minecraft/world/level/chunk/CarvingMask;)V +MD: net/minecraft/world/level/chunk/ProtoChunk/m_188189_ (Lnet/minecraft/world/ticks/ProtoChunkTicks;)Lnet/minecraft/world/ticks/LevelChunkTicks; net/minecraft/world/level/chunk/ProtoChunk/unpackTicks (Lnet/minecraft/world/ticks/ProtoChunkTicks;)Lnet/minecraft/world/ticks/LevelChunkTicks; +MD: net/minecraft/world/level/chunk/ProtoChunk/m_203495_ (III)Lnet/minecraft/core/Holder; net/minecraft/world/level/chunk/ProtoChunk/getNoiseBiome (III)Lnet/minecraft/core/Holder; +MD: net/minecraft/world/level/chunk/ProtoChunk/m_213792_ (Lnet/minecraft/world/level/levelgen/structure/Structure;Lnet/minecraft/world/level/levelgen/structure/StructureStart;)V net/minecraft/world/level/chunk/ProtoChunk/setStartForStructure (Lnet/minecraft/world/level/levelgen/structure/Structure;Lnet/minecraft/world/level/levelgen/structure/StructureStart;)V +MD: net/minecraft/world/level/chunk/ProtoChunk/m_289183_ (Lnet/minecraft/world/level/levelgen/GenerationStep$Carving;)Lnet/minecraft/world/level/chunk/CarvingMask; net/minecraft/world/level/chunk/ProtoChunk/lambda$getOrCreateCarvingMask$0 (Lnet/minecraft/world/level/levelgen/GenerationStep$Carving;)Lnet/minecraft/world/level/chunk/CarvingMask; +MD: net/minecraft/world/level/chunk/ProtoChunk/m_6286_ (Lnet/minecraft/world/entity/Entity;)V net/minecraft/world/level/chunk/ProtoChunk/addEntity (Lnet/minecraft/world/entity/Entity;)V +MD: net/minecraft/world/level/chunk/ProtoChunk/m_63209_ (Lnet/minecraft/world/level/lighting/LevelLightEngine;)V net/minecraft/world/level/chunk/ProtoChunk/setLightEngine (Lnet/minecraft/world/level/lighting/LevelLightEngine;)V +MD: net/minecraft/world/level/chunk/ProtoChunk/m_63227_ (SILnet/minecraft/world/level/ChunkPos;)Lnet/minecraft/core/BlockPos; net/minecraft/world/level/chunk/ProtoChunk/unpackOffsetCoordinates (SILnet/minecraft/world/level/ChunkPos;)Lnet/minecraft/core/BlockPos; +MD: net/minecraft/world/level/chunk/ProtoChunk/m_63242_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/level/chunk/ProtoChunk/addEntity (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/level/chunk/ProtoChunk/m_63280_ (Lnet/minecraft/core/BlockPos;)S net/minecraft/world/level/chunk/ProtoChunk/packOffsetCoordinates (Lnet/minecraft/core/BlockPos;)S +MD: net/minecraft/world/level/chunk/ProtoChunk/m_63292_ ()Ljava/util/Map; net/minecraft/world/level/chunk/ProtoChunk/getBlockEntities ()Ljava/util/Map; +MD: net/minecraft/world/level/chunk/ProtoChunk/m_63293_ ()Ljava/util/List; net/minecraft/world/level/chunk/ProtoChunk/getEntities ()Ljava/util/List; +MD: net/minecraft/world/level/chunk/ProtoChunk/m_63294_ ()Ljava/util/Map; net/minecraft/world/level/chunk/ProtoChunk/getBlockEntityNbts ()Ljava/util/Map; +MD: net/minecraft/world/level/chunk/ProtoChunk/m_6415_ ()Lnet/minecraft/world/level/chunk/ChunkStatus; net/minecraft/world/level/chunk/ProtoChunk/getStatus ()Lnet/minecraft/world/level/chunk/ChunkStatus; +MD: net/minecraft/world/level/chunk/ProtoChunk/m_6425_ (Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/material/FluidState; net/minecraft/world/level/chunk/ProtoChunk/getFluidState (Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/material/FluidState; +MD: net/minecraft/world/level/chunk/ProtoChunk/m_6561_ (SI)V net/minecraft/world/level/chunk/ProtoChunk/addPackedPostProcess (SI)V +MD: net/minecraft/world/level/chunk/ProtoChunk/m_6978_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Z)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/chunk/ProtoChunk/setBlockState (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Z)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/chunk/ProtoChunk/m_7150_ (Lnet/minecraft/world/level/chunk/ChunkStatus;)V net/minecraft/world/level/chunk/ProtoChunk/setStatus (Lnet/minecraft/world/level/chunk/ChunkStatus;)V +MD: net/minecraft/world/level/chunk/ProtoChunk/m_7702_ (Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/entity/BlockEntity; net/minecraft/world/level/chunk/ProtoChunk/getBlockEntity (Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/entity/BlockEntity; +MD: net/minecraft/world/level/chunk/ProtoChunk/m_8051_ (Lnet/minecraft/core/BlockPos;)Lnet/minecraft/nbt/CompoundTag; net/minecraft/world/level/chunk/ProtoChunk/getBlockEntityNbtForSaving (Lnet/minecraft/core/BlockPos;)Lnet/minecraft/nbt/CompoundTag; +MD: net/minecraft/world/level/chunk/ProtoChunk/m_8055_ (Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/chunk/ProtoChunk/getBlockState (Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/chunk/ProtoChunk/m_8113_ (Lnet/minecraft/core/BlockPos;)V net/minecraft/world/level/chunk/ProtoChunk/markPosForPostprocessing (Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/world/level/chunk/ProtoChunk/m_8114_ (Lnet/minecraft/core/BlockPos;)V net/minecraft/world/level/chunk/ProtoChunk/removeBlockEntity (Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/world/level/chunk/SingleValuePalette/ (Lnet/minecraft/core/IdMap;Lnet/minecraft/world/level/chunk/PaletteResize;Ljava/util/List;)V net/minecraft/world/level/chunk/SingleValuePalette/ (Lnet/minecraft/core/IdMap;Lnet/minecraft/world/level/chunk/PaletteResize;Ljava/util/List;)V +MD: net/minecraft/world/level/chunk/SingleValuePalette/m_188213_ (ILnet/minecraft/core/IdMap;Lnet/minecraft/world/level/chunk/PaletteResize;Ljava/util/List;)Lnet/minecraft/world/level/chunk/Palette; net/minecraft/world/level/chunk/SingleValuePalette/create (ILnet/minecraft/core/IdMap;Lnet/minecraft/world/level/chunk/PaletteResize;Ljava/util/List;)Lnet/minecraft/world/level/chunk/Palette; +MD: net/minecraft/world/level/chunk/SingleValuePalette/m_199814_ ()Lnet/minecraft/world/level/chunk/Palette; net/minecraft/world/level/chunk/SingleValuePalette/copy ()Lnet/minecraft/world/level/chunk/Palette; +MD: net/minecraft/world/level/chunk/SingleValuePalette/m_5678_ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/world/level/chunk/SingleValuePalette/write (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/world/level/chunk/SingleValuePalette/m_5680_ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/world/level/chunk/SingleValuePalette/read (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/world/level/chunk/SingleValuePalette/m_5795_ (I)Ljava/lang/Object; net/minecraft/world/level/chunk/SingleValuePalette/valueFor (I)Ljava/lang/Object; +MD: net/minecraft/world/level/chunk/SingleValuePalette/m_62680_ ()I net/minecraft/world/level/chunk/SingleValuePalette/getSize ()I +MD: net/minecraft/world/level/chunk/SingleValuePalette/m_6419_ (Ljava/util/function/Predicate;)Z net/minecraft/world/level/chunk/SingleValuePalette/maybeHas (Ljava/util/function/Predicate;)Z +MD: net/minecraft/world/level/chunk/SingleValuePalette/m_6429_ ()I net/minecraft/world/level/chunk/SingleValuePalette/getSerializedSize ()I +MD: net/minecraft/world/level/chunk/SingleValuePalette/m_6796_ (Ljava/lang/Object;)I net/minecraft/world/level/chunk/SingleValuePalette/idFor (Ljava/lang/Object;)I +MD: net/minecraft/world/level/chunk/StructureAccess/m_213649_ (Lnet/minecraft/world/level/levelgen/structure/Structure;)Lit/unimi/dsi/fastutil/longs/LongSet; net/minecraft/world/level/chunk/StructureAccess/getReferencesForStructure (Lnet/minecraft/world/level/levelgen/structure/Structure;)Lit/unimi/dsi/fastutil/longs/LongSet; +MD: net/minecraft/world/level/chunk/StructureAccess/m_213652_ (Lnet/minecraft/world/level/levelgen/structure/Structure;)Lnet/minecraft/world/level/levelgen/structure/StructureStart; net/minecraft/world/level/chunk/StructureAccess/getStartForStructure (Lnet/minecraft/world/level/levelgen/structure/Structure;)Lnet/minecraft/world/level/levelgen/structure/StructureStart; +MD: net/minecraft/world/level/chunk/StructureAccess/m_213792_ (Lnet/minecraft/world/level/levelgen/structure/Structure;Lnet/minecraft/world/level/levelgen/structure/StructureStart;)V net/minecraft/world/level/chunk/StructureAccess/setStartForStructure (Lnet/minecraft/world/level/levelgen/structure/Structure;Lnet/minecraft/world/level/levelgen/structure/StructureStart;)V +MD: net/minecraft/world/level/chunk/StructureAccess/m_213843_ (Lnet/minecraft/world/level/levelgen/structure/Structure;J)V net/minecraft/world/level/chunk/StructureAccess/addReferenceForStructure (Lnet/minecraft/world/level/levelgen/structure/Structure;J)V +MD: net/minecraft/world/level/chunk/StructureAccess/m_62737_ (Ljava/util/Map;)V net/minecraft/world/level/chunk/StructureAccess/setAllReferences (Ljava/util/Map;)V +MD: net/minecraft/world/level/chunk/StructureAccess/m_62769_ ()Ljava/util/Map; net/minecraft/world/level/chunk/StructureAccess/getAllReferences ()Ljava/util/Map; +MD: net/minecraft/world/level/chunk/UpgradeData/ ()V net/minecraft/world/level/chunk/UpgradeData/ ()V +MD: net/minecraft/world/level/chunk/UpgradeData/ (Lnet/minecraft/nbt/CompoundTag;Lnet/minecraft/world/level/LevelHeightAccessor;)V net/minecraft/world/level/chunk/UpgradeData/ (Lnet/minecraft/nbt/CompoundTag;Lnet/minecraft/world/level/LevelHeightAccessor;)V +MD: net/minecraft/world/level/chunk/UpgradeData/ (Lnet/minecraft/world/level/LevelHeightAccessor;)V net/minecraft/world/level/chunk/UpgradeData/ (Lnet/minecraft/world/level/LevelHeightAccessor;)V +MD: net/minecraft/world/level/chunk/UpgradeData/m_208120_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/level/chunk/UpgradeData$BlockFixer;)V net/minecraft/world/level/chunk/UpgradeData/lambda$upgrade$6 (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/level/chunk/UpgradeData$BlockFixer;)V +MD: net/minecraft/world/level/chunk/UpgradeData/m_208123_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/ticks/SavedTick;)V net/minecraft/world/level/chunk/UpgradeData/lambda$upgrade$5 (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/ticks/SavedTick;)V +MD: net/minecraft/world/level/chunk/UpgradeData/m_208132_ (Lnet/minecraft/nbt/CompoundTag;Ljava/lang/String;Ljava/util/function/Function;Ljava/util/List;)V net/minecraft/world/level/chunk/UpgradeData/loadTicks (Lnet/minecraft/nbt/CompoundTag;Ljava/lang/String;Ljava/util/function/Function;Ljava/util/List;)V +MD: net/minecraft/world/level/chunk/UpgradeData/m_208137_ (Lnet/minecraft/nbt/ListTag;Lnet/minecraft/world/ticks/SavedTick;)V net/minecraft/world/level/chunk/UpgradeData/lambda$write$10 (Lnet/minecraft/nbt/ListTag;Lnet/minecraft/world/ticks/SavedTick;)V +MD: net/minecraft/world/level/chunk/UpgradeData/m_208140_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/ticks/SavedTick;)V net/minecraft/world/level/chunk/UpgradeData/lambda$upgrade$4 (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/ticks/SavedTick;)V +MD: net/minecraft/world/level/chunk/UpgradeData/m_208145_ (Lnet/minecraft/nbt/ListTag;Lnet/minecraft/world/ticks/SavedTick;)V net/minecraft/world/level/chunk/UpgradeData/lambda$write$8 (Lnet/minecraft/nbt/ListTag;Lnet/minecraft/world/ticks/SavedTick;)V +MD: net/minecraft/world/level/chunk/UpgradeData/m_208148_ ()Ljava/util/Optional; net/minecraft/world/level/chunk/UpgradeData/lambda$new$2 ()Ljava/util/Optional; +MD: net/minecraft/world/level/chunk/UpgradeData/m_208149_ ()Ljava/util/Optional; net/minecraft/world/level/chunk/UpgradeData/lambda$new$0 ()Ljava/util/Optional; +MD: net/minecraft/world/level/chunk/UpgradeData/m_257335_ (Ljava/lang/String;)Ljava/util/Optional; net/minecraft/world/level/chunk/UpgradeData/lambda$new$1 (Ljava/lang/String;)Ljava/util/Optional; +MD: net/minecraft/world/level/chunk/UpgradeData/m_257336_ (Lnet/minecraft/world/level/block/Block;)Ljava/lang/String; net/minecraft/world/level/chunk/UpgradeData/lambda$write$7 (Lnet/minecraft/world/level/block/Block;)Ljava/lang/String; +MD: net/minecraft/world/level/chunk/UpgradeData/m_257337_ (Lnet/minecraft/world/level/material/Fluid;)Ljava/lang/String; net/minecraft/world/level/chunk/UpgradeData/lambda$write$9 (Lnet/minecraft/world/level/material/Fluid;)Ljava/lang/String; +MD: net/minecraft/world/level/chunk/UpgradeData/m_257338_ (Ljava/lang/String;)Ljava/util/Optional; net/minecraft/world/level/chunk/UpgradeData/lambda$new$3 (Ljava/lang/String;)Ljava/util/Optional; +MD: net/minecraft/world/level/chunk/UpgradeData/m_63331_ ()Z net/minecraft/world/level/chunk/UpgradeData/isEmpty ()Z +MD: net/minecraft/world/level/chunk/UpgradeData/m_63335_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/chunk/UpgradeData/updateState (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/chunk/UpgradeData/m_63341_ (Lnet/minecraft/world/level/chunk/LevelChunk;)V net/minecraft/world/level/chunk/UpgradeData/upgrade (Lnet/minecraft/world/level/chunk/LevelChunk;)V +MD: net/minecraft/world/level/chunk/UpgradeData/m_63343_ (Lnet/minecraft/world/level/chunk/LevelChunk;Lnet/minecraft/core/Direction8;)V net/minecraft/world/level/chunk/UpgradeData/upgradeSides (Lnet/minecraft/world/level/chunk/LevelChunk;Lnet/minecraft/core/Direction8;)V +MD: net/minecraft/world/level/chunk/UpgradeData/m_63346_ ()Lnet/minecraft/nbt/CompoundTag; net/minecraft/world/level/chunk/UpgradeData/write ()Lnet/minecraft/nbt/CompoundTag; +MD: net/minecraft/world/level/chunk/UpgradeData/m_63347_ (Lnet/minecraft/world/level/chunk/LevelChunk;)V net/minecraft/world/level/chunk/UpgradeData/upgradeInside (Lnet/minecraft/world/level/chunk/LevelChunk;)V +MD: net/minecraft/world/level/chunk/UpgradeData$BlockFixer/m_5731_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/chunk/UpgradeData$BlockFixer/updateShape (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/chunk/UpgradeData$BlockFixer/m_5870_ (Lnet/minecraft/world/level/LevelAccessor;)V net/minecraft/world/level/chunk/UpgradeData$BlockFixer/processChunk (Lnet/minecraft/world/level/LevelAccessor;)V +MD: net/minecraft/world/level/chunk/UpgradeData$BlockFixers/ ()V net/minecraft/world/level/chunk/UpgradeData$BlockFixers/ ()V +MD: net/minecraft/world/level/chunk/UpgradeData$BlockFixers/ (Ljava/lang/String;IZ[Lnet/minecraft/world/level/block/Block;)V net/minecraft/world/level/chunk/UpgradeData$BlockFixers/ (Ljava/lang/String;IZ[Lnet/minecraft/world/level/block/Block;)V +MD: net/minecraft/world/level/chunk/UpgradeData$BlockFixers/ (Ljava/lang/String;I[Lnet/minecraft/world/level/block/Block;)V net/minecraft/world/level/chunk/UpgradeData$BlockFixers/ (Ljava/lang/String;I[Lnet/minecraft/world/level/block/Block;)V +MD: net/minecraft/world/level/chunk/UpgradeData$BlockFixers/m_156510_ ()[Lnet/minecraft/world/level/chunk/UpgradeData$BlockFixers; net/minecraft/world/level/chunk/UpgradeData$BlockFixers/$values ()[Lnet/minecraft/world/level/chunk/UpgradeData$BlockFixers; +MD: net/minecraft/world/level/chunk/UpgradeData$BlockFixers/valueOf (Ljava/lang/String;)Lnet/minecraft/world/level/chunk/UpgradeData$BlockFixers; net/minecraft/world/level/chunk/UpgradeData$BlockFixers/valueOf (Ljava/lang/String;)Lnet/minecraft/world/level/chunk/UpgradeData$BlockFixers; +MD: net/minecraft/world/level/chunk/UpgradeData$BlockFixers/values ()[Lnet/minecraft/world/level/chunk/UpgradeData$BlockFixers; net/minecraft/world/level/chunk/UpgradeData$BlockFixers/values ()[Lnet/minecraft/world/level/chunk/UpgradeData$BlockFixers; +MD: net/minecraft/world/level/chunk/UpgradeData$BlockFixers$1/ (Ljava/lang/String;I[Lnet/minecraft/world/level/block/Block;)V net/minecraft/world/level/chunk/UpgradeData$BlockFixers$1/ (Ljava/lang/String;I[Lnet/minecraft/world/level/block/Block;)V +MD: net/minecraft/world/level/chunk/UpgradeData$BlockFixers$1/m_5731_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/chunk/UpgradeData$BlockFixers$1/updateShape (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/chunk/UpgradeData$BlockFixers$2/ (Ljava/lang/String;I[Lnet/minecraft/world/level/block/Block;)V net/minecraft/world/level/chunk/UpgradeData$BlockFixers$2/ (Ljava/lang/String;I[Lnet/minecraft/world/level/block/Block;)V +MD: net/minecraft/world/level/chunk/UpgradeData$BlockFixers$2/m_5731_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/chunk/UpgradeData$BlockFixers$2/updateShape (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/chunk/UpgradeData$BlockFixers$3/ (Ljava/lang/String;I[Lnet/minecraft/world/level/block/Block;)V net/minecraft/world/level/chunk/UpgradeData$BlockFixers$3/ (Ljava/lang/String;I[Lnet/minecraft/world/level/block/Block;)V +MD: net/minecraft/world/level/chunk/UpgradeData$BlockFixers$3/m_5731_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/chunk/UpgradeData$BlockFixers$3/updateShape (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/chunk/UpgradeData$BlockFixers$4/ (Ljava/lang/String;IZ[Lnet/minecraft/world/level/block/Block;)V net/minecraft/world/level/chunk/UpgradeData$BlockFixers$4/ (Ljava/lang/String;IZ[Lnet/minecraft/world/level/block/Block;)V +MD: net/minecraft/world/level/chunk/UpgradeData$BlockFixers$4/m_5731_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/chunk/UpgradeData$BlockFixers$4/updateShape (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/chunk/UpgradeData$BlockFixers$4/m_5870_ (Lnet/minecraft/world/level/LevelAccessor;)V net/minecraft/world/level/chunk/UpgradeData$BlockFixers$4/processChunk (Lnet/minecraft/world/level/LevelAccessor;)V +MD: net/minecraft/world/level/chunk/UpgradeData$BlockFixers$4/m_63428_ ()Ljava/util/List; net/minecraft/world/level/chunk/UpgradeData$BlockFixers$4/lambda$$0 ()Ljava/util/List; +MD: net/minecraft/world/level/chunk/UpgradeData$BlockFixers$5/ (Ljava/lang/String;I[Lnet/minecraft/world/level/block/Block;)V net/minecraft/world/level/chunk/UpgradeData$BlockFixers$5/ (Ljava/lang/String;I[Lnet/minecraft/world/level/block/Block;)V +MD: net/minecraft/world/level/chunk/UpgradeData$BlockFixers$5/m_5731_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/chunk/UpgradeData$BlockFixers$5/updateShape (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/chunk/storage/ChunkScanAccess/m_196358_ (Lnet/minecraft/world/level/ChunkPos;Lnet/minecraft/nbt/StreamTagVisitor;)Ljava/util/concurrent/CompletableFuture; net/minecraft/world/level/chunk/storage/ChunkScanAccess/scanChunk (Lnet/minecraft/world/level/ChunkPos;Lnet/minecraft/nbt/StreamTagVisitor;)Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/world/level/chunk/storage/ChunkSerializer/ ()V net/minecraft/world/level/chunk/storage/ChunkSerializer/ ()V +MD: net/minecraft/world/level/chunk/storage/ChunkSerializer/ ()V net/minecraft/world/level/chunk/storage/ChunkSerializer/ ()V +MD: net/minecraft/world/level/chunk/storage/ChunkSerializer/m_188230_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/ai/village/poi/PoiManager;Lnet/minecraft/world/level/ChunkPos;Lnet/minecraft/nbt/CompoundTag;)Lnet/minecraft/world/level/chunk/ProtoChunk; net/minecraft/world/level/chunk/storage/ChunkSerializer/read (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/ai/village/poi/PoiManager;Lnet/minecraft/world/level/ChunkPos;Lnet/minecraft/nbt/CompoundTag;)Lnet/minecraft/world/level/chunk/ProtoChunk; +MD: net/minecraft/world/level/chunk/storage/ChunkSerializer/m_188235_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/nbt/CompoundTag;Lnet/minecraft/world/level/chunk/ChunkAccess$TicksToSave;)V net/minecraft/world/level/chunk/storage/ChunkSerializer/saveTicks (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/nbt/CompoundTag;Lnet/minecraft/world/level/chunk/ChunkAccess$TicksToSave;)V +MD: net/minecraft/world/level/chunk/storage/ChunkSerializer/m_188239_ (Lnet/minecraft/world/level/ChunkPos;ILjava/lang/String;)V net/minecraft/world/level/chunk/storage/ChunkSerializer/logErrors (Lnet/minecraft/world/level/ChunkPos;ILjava/lang/String;)V +MD: net/minecraft/world/level/chunk/storage/ChunkSerializer/m_188249_ (Lnet/minecraft/world/level/levelgen/structure/pieces/StructurePieceSerializationContext;Lnet/minecraft/world/level/ChunkPos;Ljava/util/Map;Ljava/util/Map;)Lnet/minecraft/nbt/CompoundTag; net/minecraft/world/level/chunk/storage/ChunkSerializer/packStructureData (Lnet/minecraft/world/level/levelgen/structure/pieces/StructurePieceSerializationContext;Lnet/minecraft/world/level/ChunkPos;Ljava/util/Map;Ljava/util/Map;)Lnet/minecraft/nbt/CompoundTag; +MD: net/minecraft/world/level/chunk/storage/ChunkSerializer/m_188254_ (Lnet/minecraft/world/level/levelgen/structure/pieces/StructurePieceSerializationContext;Lnet/minecraft/nbt/CompoundTag;J)Ljava/util/Map; net/minecraft/world/level/chunk/storage/ChunkSerializer/unpackStructureStart (Lnet/minecraft/world/level/levelgen/structure/pieces/StructurePieceSerializationContext;Lnet/minecraft/nbt/CompoundTag;J)Ljava/util/Map; +MD: net/minecraft/world/level/chunk/storage/ChunkSerializer/m_188260_ (Lnet/minecraft/core/Registry;)Lcom/mojang/serialization/Codec; net/minecraft/world/level/chunk/storage/ChunkSerializer/makeBiomeCodec (Lnet/minecraft/core/Registry;)Lcom/mojang/serialization/Codec; +MD: net/minecraft/world/level/chunk/storage/ChunkSerializer/m_188271_ (Lnet/minecraft/world/level/ChunkPos;ILjava/lang/String;)V net/minecraft/world/level/chunk/storage/ChunkSerializer/lambda$read$1 (Lnet/minecraft/world/level/ChunkPos;ILjava/lang/String;)V +MD: net/minecraft/world/level/chunk/storage/ChunkSerializer/m_188277_ (Lnet/minecraft/nbt/CompoundTag;Lnet/minecraft/nbt/Tag;)V net/minecraft/world/level/chunk/storage/ChunkSerializer/lambda$write$7 (Lnet/minecraft/nbt/CompoundTag;Lnet/minecraft/nbt/Tag;)V +MD: net/minecraft/world/level/chunk/storage/ChunkSerializer/m_188280_ (Lnet/minecraft/world/level/ChunkPos;ILjava/lang/String;)V net/minecraft/world/level/chunk/storage/ChunkSerializer/lambda$read$0 (Lnet/minecraft/world/level/ChunkPos;ILjava/lang/String;)V +MD: net/minecraft/world/level/chunk/storage/ChunkSerializer/m_196890_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/nbt/CompoundTag;)Lnet/minecraft/world/level/chunk/LevelChunk$PostLoadProcessor; net/minecraft/world/level/chunk/storage/ChunkSerializer/postLoadChunk (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/nbt/CompoundTag;)Lnet/minecraft/world/level/chunk/LevelChunk$PostLoadProcessor; +MD: net/minecraft/world/level/chunk/storage/ChunkSerializer/m_196897_ (Lnet/minecraft/nbt/CompoundTag;Ljava/lang/String;)Lnet/minecraft/nbt/ListTag; net/minecraft/world/level/chunk/storage/ChunkSerializer/getListOfCompoundsOrNull (Lnet/minecraft/nbt/CompoundTag;Ljava/lang/String;)Lnet/minecraft/nbt/ListTag; +MD: net/minecraft/world/level/chunk/storage/ChunkSerializer/m_196900_ (Lnet/minecraft/nbt/ListTag;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/nbt/ListTag;Lnet/minecraft/world/level/chunk/LevelChunk;)V net/minecraft/world/level/chunk/storage/ChunkSerializer/lambda$postLoadChunk$10 (Lnet/minecraft/nbt/ListTag;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/nbt/ListTag;Lnet/minecraft/world/level/chunk/LevelChunk;)V +MD: net/minecraft/world/level/chunk/storage/ChunkSerializer/m_196907_ (Lnet/minecraft/nbt/CompoundTag;Lnet/minecraft/nbt/Tag;)V net/minecraft/world/level/chunk/storage/ChunkSerializer/lambda$write$6 (Lnet/minecraft/nbt/CompoundTag;Lnet/minecraft/nbt/Tag;)V +MD: net/minecraft/world/level/chunk/storage/ChunkSerializer/m_208150_ (Lnet/minecraft/world/level/ChunkPos;Lnet/minecraft/resources/ResourceLocation;J)Z net/minecraft/world/level/chunk/storage/ChunkSerializer/lambda$unpackStructureReferences$11 (Lnet/minecraft/world/level/ChunkPos;Lnet/minecraft/resources/ResourceLocation;J)Z +MD: net/minecraft/world/level/chunk/storage/ChunkSerializer/m_208154_ (Lnet/minecraft/core/RegistryAccess;Lnet/minecraft/world/level/ChunkPos;Lnet/minecraft/nbt/CompoundTag;)Ljava/util/Map; net/minecraft/world/level/chunk/storage/ChunkSerializer/unpackStructureReferences (Lnet/minecraft/core/RegistryAccess;Lnet/minecraft/world/level/ChunkPos;Lnet/minecraft/nbt/CompoundTag;)Ljava/util/Map; +MD: net/minecraft/world/level/chunk/storage/ChunkSerializer/m_257339_ (Lnet/minecraft/world/level/block/Block;)Ljava/lang/String; net/minecraft/world/level/chunk/storage/ChunkSerializer/lambda$saveTicks$8 (Lnet/minecraft/world/level/block/Block;)Ljava/lang/String; +MD: net/minecraft/world/level/chunk/storage/ChunkSerializer/m_257340_ (Ljava/lang/String;)Ljava/util/Optional; net/minecraft/world/level/chunk/storage/ChunkSerializer/lambda$read$2 (Ljava/lang/String;)Ljava/util/Optional; +MD: net/minecraft/world/level/chunk/storage/ChunkSerializer/m_257341_ (Lnet/minecraft/world/level/material/Fluid;)Ljava/lang/String; net/minecraft/world/level/chunk/storage/ChunkSerializer/lambda$saveTicks$9 (Lnet/minecraft/world/level/material/Fluid;)Ljava/lang/String; +MD: net/minecraft/world/level/chunk/storage/ChunkSerializer/m_257342_ (Ljava/lang/String;)Ljava/util/Optional; net/minecraft/world/level/chunk/storage/ChunkSerializer/lambda$read$3 (Ljava/lang/String;)Ljava/util/Optional; +MD: net/minecraft/world/level/chunk/storage/ChunkSerializer/m_257343_ (Ljava/lang/String;)Ljava/util/Optional; net/minecraft/world/level/chunk/storage/ChunkSerializer/lambda$read$5 (Ljava/lang/String;)Ljava/util/Optional; +MD: net/minecraft/world/level/chunk/storage/ChunkSerializer/m_257344_ (Ljava/lang/String;)Ljava/util/Optional; net/minecraft/world/level/chunk/storage/ChunkSerializer/lambda$read$4 (Ljava/lang/String;)Ljava/util/Optional; +MD: net/minecraft/world/level/chunk/storage/ChunkSerializer/m_63454_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/level/chunk/ChunkAccess;)Lnet/minecraft/nbt/CompoundTag; net/minecraft/world/level/chunk/storage/ChunkSerializer/write (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/level/chunk/ChunkAccess;)Lnet/minecraft/nbt/CompoundTag; +MD: net/minecraft/world/level/chunk/storage/ChunkSerializer/m_63485_ (Lnet/minecraft/nbt/CompoundTag;)Lnet/minecraft/world/level/chunk/ChunkStatus$ChunkType; net/minecraft/world/level/chunk/storage/ChunkSerializer/getChunkTypeFromTag (Lnet/minecraft/nbt/CompoundTag;)Lnet/minecraft/world/level/chunk/ChunkStatus$ChunkType; +MD: net/minecraft/world/level/chunk/storage/ChunkSerializer/m_63490_ ([Lit/unimi/dsi/fastutil/shorts/ShortList;)Lnet/minecraft/nbt/ListTag; net/minecraft/world/level/chunk/storage/ChunkSerializer/packOffsets ([Lit/unimi/dsi/fastutil/shorts/ShortList;)Lnet/minecraft/nbt/ListTag; +MD: net/minecraft/world/level/chunk/storage/ChunkStorage/ (Ljava/nio/file/Path;Lcom/mojang/datafixers/DataFixer;Z)V net/minecraft/world/level/chunk/storage/ChunkStorage/ (Ljava/nio/file/Path;Lcom/mojang/datafixers/DataFixer;Z)V +MD: net/minecraft/world/level/chunk/storage/ChunkStorage/close ()V net/minecraft/world/level/chunk/storage/ChunkStorage/close ()V +MD: net/minecraft/world/level/chunk/storage/ChunkStorage/m_188288_ (Lnet/minecraft/resources/ResourceKey;Ljava/util/function/Supplier;Lnet/minecraft/nbt/CompoundTag;Ljava/util/Optional;)Lnet/minecraft/nbt/CompoundTag; net/minecraft/world/level/chunk/storage/ChunkStorage/upgradeChunkTag (Lnet/minecraft/resources/ResourceKey;Ljava/util/function/Supplier;Lnet/minecraft/nbt/CompoundTag;Ljava/util/Optional;)Lnet/minecraft/nbt/CompoundTag; +MD: net/minecraft/world/level/chunk/storage/ChunkStorage/m_196915_ (Lnet/minecraft/nbt/CompoundTag;Lnet/minecraft/resources/ResourceKey;)V net/minecraft/world/level/chunk/storage/ChunkStorage/lambda$injectDatafixingContext$0 (Lnet/minecraft/nbt/CompoundTag;Lnet/minecraft/resources/ResourceKey;)V +MD: net/minecraft/world/level/chunk/storage/ChunkStorage/m_196918_ (Lnet/minecraft/nbt/CompoundTag;Lnet/minecraft/resources/ResourceKey;Ljava/util/Optional;)V net/minecraft/world/level/chunk/storage/ChunkStorage/injectDatafixingContext (Lnet/minecraft/nbt/CompoundTag;Lnet/minecraft/resources/ResourceKey;Ljava/util/Optional;)V +MD: net/minecraft/world/level/chunk/storage/ChunkStorage/m_196922_ ()Lnet/minecraft/world/level/chunk/storage/ChunkScanAccess; net/minecraft/world/level/chunk/storage/ChunkStorage/chunkScanner ()Lnet/minecraft/world/level/chunk/storage/ChunkScanAccess; +MD: net/minecraft/world/level/chunk/storage/ChunkStorage/m_223448_ (Lnet/minecraft/resources/ResourceKey;Ljava/util/function/Supplier;)Lnet/minecraft/world/level/levelgen/structure/LegacyStructureDataHandler; net/minecraft/world/level/chunk/storage/ChunkStorage/getLegacyStructureHandler (Lnet/minecraft/resources/ResourceKey;Ljava/util/function/Supplier;)Lnet/minecraft/world/level/levelgen/structure/LegacyStructureDataHandler; +MD: net/minecraft/world/level/chunk/storage/ChunkStorage/m_223451_ (Lnet/minecraft/world/level/ChunkPos;I)Z net/minecraft/world/level/chunk/storage/ChunkStorage/isOldChunkAround (Lnet/minecraft/world/level/ChunkPos;I)Z +MD: net/minecraft/world/level/chunk/storage/ChunkStorage/m_223454_ (Lnet/minecraft/world/level/ChunkPos;)Ljava/util/concurrent/CompletableFuture; net/minecraft/world/level/chunk/storage/ChunkStorage/read (Lnet/minecraft/world/level/ChunkPos;)Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/world/level/chunk/storage/ChunkStorage/m_63502_ (Lnet/minecraft/world/level/ChunkPos;Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/level/chunk/storage/ChunkStorage/write (Lnet/minecraft/world/level/ChunkPos;Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/level/chunk/storage/ChunkStorage/m_63505_ (Lnet/minecraft/nbt/CompoundTag;)I net/minecraft/world/level/chunk/storage/ChunkStorage/getVersion (Lnet/minecraft/nbt/CompoundTag;)I +MD: net/minecraft/world/level/chunk/storage/ChunkStorage/m_63514_ ()V net/minecraft/world/level/chunk/storage/ChunkStorage/flushWorker ()V +MD: net/minecraft/world/level/chunk/storage/EntityStorage/ ()V net/minecraft/world/level/chunk/storage/EntityStorage/ ()V +MD: net/minecraft/world/level/chunk/storage/EntityStorage/ (Lnet/minecraft/server/level/ServerLevel;Ljava/nio/file/Path;Lcom/mojang/datafixers/DataFixer;ZLjava/util/concurrent/Executor;)V net/minecraft/world/level/chunk/storage/EntityStorage/ (Lnet/minecraft/server/level/ServerLevel;Ljava/nio/file/Path;Lcom/mojang/datafixers/DataFixer;ZLjava/util/concurrent/Executor;)V +MD: net/minecraft/world/level/chunk/storage/EntityStorage/close ()V net/minecraft/world/level/chunk/storage/EntityStorage/close ()V +MD: net/minecraft/world/level/chunk/storage/EntityStorage/m_141930_ (Lnet/minecraft/world/level/ChunkPos;)Ljava/util/concurrent/CompletableFuture; net/minecraft/world/level/chunk/storage/EntityStorage/loadEntities (Lnet/minecraft/world/level/ChunkPos;)Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/world/level/chunk/storage/EntityStorage/m_141971_ (Lnet/minecraft/world/level/entity/ChunkEntities;)V net/minecraft/world/level/chunk/storage/EntityStorage/storeEntities (Lnet/minecraft/world/level/entity/ChunkEntities;)V +MD: net/minecraft/world/level/chunk/storage/EntityStorage/m_156552_ (Lnet/minecraft/world/level/ChunkPos;Ljava/lang/Throwable;)Ljava/lang/Void; net/minecraft/world/level/chunk/storage/EntityStorage/lambda$storeEntities$2 (Lnet/minecraft/world/level/ChunkPos;Ljava/lang/Throwable;)Ljava/lang/Void; +MD: net/minecraft/world/level/chunk/storage/EntityStorage/m_156562_ (Lnet/minecraft/nbt/CompoundTag;Lnet/minecraft/world/level/ChunkPos;)V net/minecraft/world/level/chunk/storage/EntityStorage/writeChunkPos (Lnet/minecraft/nbt/CompoundTag;Lnet/minecraft/world/level/ChunkPos;)V +MD: net/minecraft/world/level/chunk/storage/EntityStorage/m_156565_ (Lnet/minecraft/nbt/ListTag;Lnet/minecraft/world/entity/Entity;)V net/minecraft/world/level/chunk/storage/EntityStorage/lambda$storeEntities$1 (Lnet/minecraft/nbt/ListTag;Lnet/minecraft/world/entity/Entity;)V +MD: net/minecraft/world/level/chunk/storage/EntityStorage/m_156568_ (Lnet/minecraft/world/level/ChunkPos;)Lnet/minecraft/world/level/entity/ChunkEntities; net/minecraft/world/level/chunk/storage/EntityStorage/emptyChunk (Lnet/minecraft/world/level/ChunkPos;)Lnet/minecraft/world/level/entity/ChunkEntities; +MD: net/minecraft/world/level/chunk/storage/EntityStorage/m_156570_ (Lnet/minecraft/nbt/CompoundTag;)Lnet/minecraft/world/level/ChunkPos; net/minecraft/world/level/chunk/storage/EntityStorage/readChunkPos (Lnet/minecraft/nbt/CompoundTag;)Lnet/minecraft/world/level/ChunkPos; +MD: net/minecraft/world/level/chunk/storage/EntityStorage/m_156572_ (Lnet/minecraft/nbt/CompoundTag;)Lnet/minecraft/nbt/CompoundTag; net/minecraft/world/level/chunk/storage/EntityStorage/upgradeChunkTag (Lnet/minecraft/nbt/CompoundTag;)Lnet/minecraft/nbt/CompoundTag; +MD: net/minecraft/world/level/chunk/storage/EntityStorage/m_182219_ (Z)V net/minecraft/world/level/chunk/storage/EntityStorage/flush (Z)V +MD: net/minecraft/world/level/chunk/storage/EntityStorage/m_223456_ (Lnet/minecraft/world/level/ChunkPos;Ljava/util/Optional;)Lnet/minecraft/world/level/entity/ChunkEntities; net/minecraft/world/level/chunk/storage/EntityStorage/lambda$loadEntities$0 (Lnet/minecraft/world/level/ChunkPos;Ljava/util/Optional;)Lnet/minecraft/world/level/entity/ChunkEntities; +MD: net/minecraft/world/level/chunk/storage/IOWorker/ ()V net/minecraft/world/level/chunk/storage/IOWorker/ ()V +MD: net/minecraft/world/level/chunk/storage/IOWorker/ (Ljava/nio/file/Path;ZLjava/lang/String;)V net/minecraft/world/level/chunk/storage/IOWorker/ (Ljava/nio/file/Path;ZLjava/lang/String;)V +MD: net/minecraft/world/level/chunk/storage/IOWorker/close ()V net/minecraft/world/level/chunk/storage/IOWorker/close ()V +MD: net/minecraft/world/level/chunk/storage/IOWorker/m_156587_ (Lnet/minecraft/world/level/ChunkPos;)Ljava/util/concurrent/CompletableFuture; net/minecraft/world/level/chunk/storage/IOWorker/loadAsync (Lnet/minecraft/world/level/ChunkPos;)Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/world/level/chunk/storage/IOWorker/m_182493_ (Ljava/lang/Void;)Ljava/util/concurrent/CompletionStage; net/minecraft/world/level/chunk/storage/IOWorker/lambda$synchronize$9 (Ljava/lang/Void;)Ljava/util/concurrent/CompletionStage; +MD: net/minecraft/world/level/chunk/storage/IOWorker/m_182498_ (Z)Ljava/util/concurrent/CompletableFuture; net/minecraft/world/level/chunk/storage/IOWorker/synchronize (Z)Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/world/level/chunk/storage/IOWorker/m_182502_ ()Lcom/mojang/datafixers/util/Either; net/minecraft/world/level/chunk/storage/IOWorker/lambda$synchronize$8 ()Lcom/mojang/datafixers/util/Either; +MD: net/minecraft/world/level/chunk/storage/IOWorker/m_196358_ (Lnet/minecraft/world/level/ChunkPos;Lnet/minecraft/nbt/StreamTagVisitor;)Ljava/util/concurrent/CompletableFuture; net/minecraft/world/level/chunk/storage/IOWorker/scanChunk (Lnet/minecraft/world/level/ChunkPos;Lnet/minecraft/nbt/StreamTagVisitor;)Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/world/level/chunk/storage/IOWorker/m_223461_ (I)[Ljava/util/concurrent/CompletableFuture; net/minecraft/world/level/chunk/storage/IOWorker/lambda$synchronize$6 (I)[Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/world/level/chunk/storage/IOWorker/m_223463_ (II)Ljava/util/concurrent/CompletableFuture; net/minecraft/world/level/chunk/storage/IOWorker/getOrCreateOldDataForRegion (II)Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/world/level/chunk/storage/IOWorker/m_223466_ (Lnet/minecraft/util/thread/ProcessorHandle;)Lnet/minecraft/util/thread/StrictQueue$IntRunnable; net/minecraft/world/level/chunk/storage/IOWorker/lambda$close$16 (Lnet/minecraft/util/thread/ProcessorHandle;)Lnet/minecraft/util/thread/StrictQueue$IntRunnable; +MD: net/minecraft/world/level/chunk/storage/IOWorker/m_223468_ (Lnet/minecraft/util/thread/ProcessorHandle;Ljava/util/function/Supplier;)V net/minecraft/world/level/chunk/storage/IOWorker/lambda$submitTask$13 (Lnet/minecraft/util/thread/ProcessorHandle;Ljava/util/function/Supplier;)V +MD: net/minecraft/world/level/chunk/storage/IOWorker/m_223471_ (Lnet/minecraft/world/level/ChunkPos;I)Z net/minecraft/world/level/chunk/storage/IOWorker/isOldChunkAround (Lnet/minecraft/world/level/ChunkPos;I)Z +MD: net/minecraft/world/level/chunk/storage/IOWorker/m_223474_ (Lnet/minecraft/world/level/chunk/storage/IOWorker$PendingStore;)Ljava/util/concurrent/CompletableFuture; net/minecraft/world/level/chunk/storage/IOWorker/lambda$synchronize$5 (Lnet/minecraft/world/level/chunk/storage/IOWorker$PendingStore;)Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/world/level/chunk/storage/IOWorker/m_223476_ (Ljava/lang/Void;)Ljava/util/concurrent/CompletionStage; net/minecraft/world/level/chunk/storage/IOWorker/lambda$synchronize$11 (Ljava/lang/Void;)Ljava/util/concurrent/CompletionStage; +MD: net/minecraft/world/level/chunk/storage/IOWorker/m_223478_ (Ljava/util/BitSet;Lnet/minecraft/world/level/ChunkPos;)V net/minecraft/world/level/chunk/storage/IOWorker/lambda$createOldDataForRegion$0 (Ljava/util/BitSet;Lnet/minecraft/world/level/ChunkPos;)V +MD: net/minecraft/world/level/chunk/storage/IOWorker/m_223481_ (Ljava/util/function/Supplier;Lnet/minecraft/util/thread/ProcessorHandle;)Lnet/minecraft/util/thread/StrictQueue$IntRunnable; net/minecraft/world/level/chunk/storage/IOWorker/lambda$submitTask$14 (Ljava/util/function/Supplier;Lnet/minecraft/util/thread/ProcessorHandle;)Lnet/minecraft/util/thread/StrictQueue$IntRunnable; +MD: net/minecraft/world/level/chunk/storage/IOWorker/m_223484_ (Lnet/minecraft/nbt/CompoundTag;)Z net/minecraft/world/level/chunk/storage/IOWorker/isOldChunk (Lnet/minecraft/nbt/CompoundTag;)Z +MD: net/minecraft/world/level/chunk/storage/IOWorker/m_223486_ (Lnet/minecraft/nbt/CompoundTag;Lnet/minecraft/world/level/ChunkPos;)Lnet/minecraft/world/level/chunk/storage/IOWorker$PendingStore; net/minecraft/world/level/chunk/storage/IOWorker/lambda$store$2 (Lnet/minecraft/nbt/CompoundTag;Lnet/minecraft/world/level/ChunkPos;)Lnet/minecraft/world/level/chunk/storage/IOWorker$PendingStore; +MD: net/minecraft/world/level/chunk/storage/IOWorker/m_223489_ (II)Ljava/util/concurrent/CompletableFuture; net/minecraft/world/level/chunk/storage/IOWorker/createOldDataForRegion (II)Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/world/level/chunk/storage/IOWorker/m_223492_ (Lnet/minecraft/util/thread/ProcessorHandle;)V net/minecraft/world/level/chunk/storage/IOWorker/lambda$close$15 (Lnet/minecraft/util/thread/ProcessorHandle;)V +MD: net/minecraft/world/level/chunk/storage/IOWorker/m_223494_ (Lnet/minecraft/world/level/ChunkPos;)Lcom/mojang/datafixers/util/Either; net/minecraft/world/level/chunk/storage/IOWorker/lambda$loadAsync$4 (Lnet/minecraft/world/level/ChunkPos;)Lcom/mojang/datafixers/util/Either; +MD: net/minecraft/world/level/chunk/storage/IOWorker/m_223496_ (Lnet/minecraft/world/level/ChunkPos;Lnet/minecraft/nbt/CompoundTag;)Lcom/mojang/datafixers/util/Either; net/minecraft/world/level/chunk/storage/IOWorker/lambda$store$3 (Lnet/minecraft/world/level/ChunkPos;Lnet/minecraft/nbt/CompoundTag;)Lcom/mojang/datafixers/util/Either; +MD: net/minecraft/world/level/chunk/storage/IOWorker/m_223499_ (Lnet/minecraft/world/level/ChunkPos;Lnet/minecraft/nbt/StreamTagVisitor;)Lcom/mojang/datafixers/util/Either; net/minecraft/world/level/chunk/storage/IOWorker/lambda$scanChunk$12 (Lnet/minecraft/world/level/ChunkPos;Lnet/minecraft/nbt/StreamTagVisitor;)Lcom/mojang/datafixers/util/Either; +MD: net/minecraft/world/level/chunk/storage/IOWorker/m_223502_ ()Lcom/mojang/datafixers/util/Either; net/minecraft/world/level/chunk/storage/IOWorker/lambda$synchronize$10 ()Lcom/mojang/datafixers/util/Either; +MD: net/minecraft/world/level/chunk/storage/IOWorker/m_223503_ (II)Ljava/util/BitSet; net/minecraft/world/level/chunk/storage/IOWorker/lambda$createOldDataForRegion$1 (II)Ljava/util/BitSet; +MD: net/minecraft/world/level/chunk/storage/IOWorker/m_223506_ ()Lcom/mojang/datafixers/util/Either; net/minecraft/world/level/chunk/storage/IOWorker/lambda$synchronize$7 ()Lcom/mojang/datafixers/util/Either; +MD: net/minecraft/world/level/chunk/storage/IOWorker/m_63535_ (Lnet/minecraft/world/level/ChunkPos;Lnet/minecraft/world/level/chunk/storage/IOWorker$PendingStore;)V net/minecraft/world/level/chunk/storage/IOWorker/runStore (Lnet/minecraft/world/level/ChunkPos;Lnet/minecraft/world/level/chunk/storage/IOWorker$PendingStore;)V +MD: net/minecraft/world/level/chunk/storage/IOWorker/m_63538_ (Lnet/minecraft/world/level/ChunkPos;Lnet/minecraft/nbt/CompoundTag;)Ljava/util/concurrent/CompletableFuture; net/minecraft/world/level/chunk/storage/IOWorker/store (Lnet/minecraft/world/level/ChunkPos;Lnet/minecraft/nbt/CompoundTag;)Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/world/level/chunk/storage/IOWorker/m_63545_ (Ljava/util/function/Supplier;)Ljava/util/concurrent/CompletableFuture; net/minecraft/world/level/chunk/storage/IOWorker/submitTask (Ljava/util/function/Supplier;)Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/world/level/chunk/storage/IOWorker/m_63553_ ()V net/minecraft/world/level/chunk/storage/IOWorker/storePendingChunk ()V +MD: net/minecraft/world/level/chunk/storage/IOWorker/m_63561_ ()V net/minecraft/world/level/chunk/storage/IOWorker/tellStorePending ()V +MD: net/minecraft/world/level/chunk/storage/IOWorker$PendingStore/ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/level/chunk/storage/IOWorker$PendingStore/ (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/level/chunk/storage/IOWorker$Priority/ ()V net/minecraft/world/level/chunk/storage/IOWorker$Priority/ ()V +MD: net/minecraft/world/level/chunk/storage/IOWorker$Priority/ (Ljava/lang/String;I)V net/minecraft/world/level/chunk/storage/IOWorker$Priority/ (Ljava/lang/String;I)V +MD: net/minecraft/world/level/chunk/storage/IOWorker$Priority/m_156595_ ()[Lnet/minecraft/world/level/chunk/storage/IOWorker$Priority; net/minecraft/world/level/chunk/storage/IOWorker$Priority/$values ()[Lnet/minecraft/world/level/chunk/storage/IOWorker$Priority; +MD: net/minecraft/world/level/chunk/storage/IOWorker$Priority/valueOf (Ljava/lang/String;)Lnet/minecraft/world/level/chunk/storage/IOWorker$Priority; net/minecraft/world/level/chunk/storage/IOWorker$Priority/valueOf (Ljava/lang/String;)Lnet/minecraft/world/level/chunk/storage/IOWorker$Priority; +MD: net/minecraft/world/level/chunk/storage/IOWorker$Priority/values ()[Lnet/minecraft/world/level/chunk/storage/IOWorker$Priority; net/minecraft/world/level/chunk/storage/IOWorker$Priority/values ()[Lnet/minecraft/world/level/chunk/storage/IOWorker$Priority; +MD: net/minecraft/world/level/chunk/storage/RegionBitmap/ ()V net/minecraft/world/level/chunk/storage/RegionBitmap/ ()V +MD: net/minecraft/world/level/chunk/storage/RegionBitmap/m_156603_ ()Lit/unimi/dsi/fastutil/ints/IntSet; net/minecraft/world/level/chunk/storage/RegionBitmap/getUsed ()Lit/unimi/dsi/fastutil/ints/IntSet; +MD: net/minecraft/world/level/chunk/storage/RegionBitmap/m_63610_ (I)I net/minecraft/world/level/chunk/storage/RegionBitmap/allocate (I)I +MD: net/minecraft/world/level/chunk/storage/RegionBitmap/m_63612_ (II)V net/minecraft/world/level/chunk/storage/RegionBitmap/force (II)V +MD: net/minecraft/world/level/chunk/storage/RegionBitmap/m_63615_ (II)V net/minecraft/world/level/chunk/storage/RegionBitmap/free (II)V +MD: net/minecraft/world/level/chunk/storage/RegionFile/ ()V net/minecraft/world/level/chunk/storage/RegionFile/ ()V +MD: net/minecraft/world/level/chunk/storage/RegionFile/ (Ljava/nio/file/Path;Ljava/nio/file/Path;Lnet/minecraft/world/level/chunk/storage/RegionFileVersion;Z)V net/minecraft/world/level/chunk/storage/RegionFile/ (Ljava/nio/file/Path;Ljava/nio/file/Path;Lnet/minecraft/world/level/chunk/storage/RegionFileVersion;Z)V +MD: net/minecraft/world/level/chunk/storage/RegionFile/ (Ljava/nio/file/Path;Ljava/nio/file/Path;Z)V net/minecraft/world/level/chunk/storage/RegionFile/ (Ljava/nio/file/Path;Ljava/nio/file/Path;Z)V +MD: net/minecraft/world/level/chunk/storage/RegionFile/close ()V net/minecraft/world/level/chunk/storage/RegionFile/close ()V +MD: net/minecraft/world/level/chunk/storage/RegionFile/m_156612_ ()I net/minecraft/world/level/chunk/storage/RegionFile/getTimestamp ()I +MD: net/minecraft/world/level/chunk/storage/RegionFile/m_156613_ (Lnet/minecraft/world/level/ChunkPos;)V net/minecraft/world/level/chunk/storage/RegionFile/clear (Lnet/minecraft/world/level/ChunkPos;)V +MD: net/minecraft/world/level/chunk/storage/RegionFile/m_63637_ ()V net/minecraft/world/level/chunk/storage/RegionFile/flush ()V +MD: net/minecraft/world/level/chunk/storage/RegionFile/m_63638_ (B)Z net/minecraft/world/level/chunk/storage/RegionFile/isExternalStreamChunk (B)Z +MD: net/minecraft/world/level/chunk/storage/RegionFile/m_63640_ (I)I net/minecraft/world/level/chunk/storage/RegionFile/getNumSectors (I)I +MD: net/minecraft/world/level/chunk/storage/RegionFile/m_63642_ (II)I net/minecraft/world/level/chunk/storage/RegionFile/packSectorOffset (II)I +MD: net/minecraft/world/level/chunk/storage/RegionFile/m_63645_ (Lnet/minecraft/world/level/ChunkPos;)Ljava/io/DataInputStream; net/minecraft/world/level/chunk/storage/RegionFile/getChunkDataInputStream (Lnet/minecraft/world/level/ChunkPos;)Ljava/io/DataInputStream; +MD: net/minecraft/world/level/chunk/storage/RegionFile/m_63647_ (Lnet/minecraft/world/level/ChunkPos;B)Ljava/io/DataInputStream; net/minecraft/world/level/chunk/storage/RegionFile/createExternalChunkInputStream (Lnet/minecraft/world/level/ChunkPos;B)Ljava/io/DataInputStream; +MD: net/minecraft/world/level/chunk/storage/RegionFile/m_63650_ (Lnet/minecraft/world/level/ChunkPos;BLjava/io/InputStream;)Ljava/io/DataInputStream; net/minecraft/world/level/chunk/storage/RegionFile/createChunkInputStream (Lnet/minecraft/world/level/ChunkPos;BLjava/io/InputStream;)Ljava/io/DataInputStream; +MD: net/minecraft/world/level/chunk/storage/RegionFile/m_63654_ (Lnet/minecraft/world/level/ChunkPos;Ljava/nio/ByteBuffer;)V net/minecraft/world/level/chunk/storage/RegionFile/write (Lnet/minecraft/world/level/ChunkPos;Ljava/nio/ByteBuffer;)V +MD: net/minecraft/world/level/chunk/storage/RegionFile/m_63659_ (Ljava/nio/ByteBuffer;I)Ljava/io/ByteArrayInputStream; net/minecraft/world/level/chunk/storage/RegionFile/createStream (Ljava/nio/ByteBuffer;I)Ljava/io/ByteArrayInputStream; +MD: net/minecraft/world/level/chunk/storage/RegionFile/m_63662_ (Ljava/nio/file/Path;Ljava/nio/ByteBuffer;)Lnet/minecraft/world/level/chunk/storage/RegionFile$CommitOp; net/minecraft/world/level/chunk/storage/RegionFile/writeToExternalFile (Ljava/nio/file/Path;Ljava/nio/ByteBuffer;)Lnet/minecraft/world/level/chunk/storage/RegionFile$CommitOp; +MD: net/minecraft/world/level/chunk/storage/RegionFile/m_63665_ (Ljava/nio/file/Path;Ljava/nio/file/Path;)V net/minecraft/world/level/chunk/storage/RegionFile/lambda$writeToExternalFile$1 (Ljava/nio/file/Path;Ljava/nio/file/Path;)V +MD: net/minecraft/world/level/chunk/storage/RegionFile/m_63668_ ()Ljava/nio/ByteBuffer; net/minecraft/world/level/chunk/storage/RegionFile/createExternalStub ()Ljava/nio/ByteBuffer; +MD: net/minecraft/world/level/chunk/storage/RegionFile/m_63669_ (B)B net/minecraft/world/level/chunk/storage/RegionFile/getExternalChunkVersion (B)B +MD: net/minecraft/world/level/chunk/storage/RegionFile/m_63671_ (I)I net/minecraft/world/level/chunk/storage/RegionFile/getSectorNumber (I)I +MD: net/minecraft/world/level/chunk/storage/RegionFile/m_63673_ (Lnet/minecraft/world/level/ChunkPos;)Z net/minecraft/world/level/chunk/storage/RegionFile/doesChunkExist (Lnet/minecraft/world/level/ChunkPos;)Z +MD: net/minecraft/world/level/chunk/storage/RegionFile/m_63675_ ()V net/minecraft/world/level/chunk/storage/RegionFile/writeHeader ()V +MD: net/minecraft/world/level/chunk/storage/RegionFile/m_63676_ (I)I net/minecraft/world/level/chunk/storage/RegionFile/sizeToSectors (I)I +MD: net/minecraft/world/level/chunk/storage/RegionFile/m_63678_ (Lnet/minecraft/world/level/ChunkPos;)Ljava/io/DataOutputStream; net/minecraft/world/level/chunk/storage/RegionFile/getChunkDataOutputStream (Lnet/minecraft/world/level/ChunkPos;)Ljava/io/DataOutputStream; +MD: net/minecraft/world/level/chunk/storage/RegionFile/m_63681_ ()V net/minecraft/world/level/chunk/storage/RegionFile/padToFullSector ()V +MD: net/minecraft/world/level/chunk/storage/RegionFile/m_63682_ (Lnet/minecraft/world/level/ChunkPos;)Z net/minecraft/world/level/chunk/storage/RegionFile/hasChunk (Lnet/minecraft/world/level/ChunkPos;)Z +MD: net/minecraft/world/level/chunk/storage/RegionFile/m_63684_ (Lnet/minecraft/world/level/ChunkPos;)Ljava/nio/file/Path; net/minecraft/world/level/chunk/storage/RegionFile/getExternalChunkPath (Lnet/minecraft/world/level/ChunkPos;)Ljava/nio/file/Path; +MD: net/minecraft/world/level/chunk/storage/RegionFile/m_63686_ (Lnet/minecraft/world/level/ChunkPos;)I net/minecraft/world/level/chunk/storage/RegionFile/getOffset (Lnet/minecraft/world/level/ChunkPos;)I +MD: net/minecraft/world/level/chunk/storage/RegionFile/m_63688_ (Lnet/minecraft/world/level/ChunkPos;)I net/minecraft/world/level/chunk/storage/RegionFile/getOffsetIndex (Lnet/minecraft/world/level/ChunkPos;)I +MD: net/minecraft/world/level/chunk/storage/RegionFile/m_63690_ (Lnet/minecraft/world/level/ChunkPos;)V net/minecraft/world/level/chunk/storage/RegionFile/lambda$write$0 (Lnet/minecraft/world/level/ChunkPos;)V +MD: net/minecraft/world/level/chunk/storage/RegionFile$ChunkBuffer/ (Lnet/minecraft/world/level/chunk/storage/RegionFile;Lnet/minecraft/world/level/ChunkPos;)V net/minecraft/world/level/chunk/storage/RegionFile$ChunkBuffer/ (Lnet/minecraft/world/level/chunk/storage/RegionFile;Lnet/minecraft/world/level/ChunkPos;)V +MD: net/minecraft/world/level/chunk/storage/RegionFile$ChunkBuffer/close ()V net/minecraft/world/level/chunk/storage/RegionFile$ChunkBuffer/close ()V +MD: net/minecraft/world/level/chunk/storage/RegionFile$CommitOp/m_63698_ ()V net/minecraft/world/level/chunk/storage/RegionFile$CommitOp/run ()V +MD: net/minecraft/world/level/chunk/storage/RegionFileStorage/ (Ljava/nio/file/Path;Z)V net/minecraft/world/level/chunk/storage/RegionFileStorage/ (Ljava/nio/file/Path;Z)V +MD: net/minecraft/world/level/chunk/storage/RegionFileStorage/close ()V net/minecraft/world/level/chunk/storage/RegionFileStorage/close ()V +MD: net/minecraft/world/level/chunk/storage/RegionFileStorage/m_196956_ (Lnet/minecraft/world/level/ChunkPos;Lnet/minecraft/nbt/StreamTagVisitor;)V net/minecraft/world/level/chunk/storage/RegionFileStorage/scanChunk (Lnet/minecraft/world/level/ChunkPos;Lnet/minecraft/nbt/StreamTagVisitor;)V +MD: net/minecraft/world/level/chunk/storage/RegionFileStorage/m_63705_ ()V net/minecraft/world/level/chunk/storage/RegionFileStorage/flush ()V +MD: net/minecraft/world/level/chunk/storage/RegionFileStorage/m_63706_ (Lnet/minecraft/world/level/ChunkPos;)Lnet/minecraft/nbt/CompoundTag; net/minecraft/world/level/chunk/storage/RegionFileStorage/read (Lnet/minecraft/world/level/ChunkPos;)Lnet/minecraft/nbt/CompoundTag; +MD: net/minecraft/world/level/chunk/storage/RegionFileStorage/m_63708_ (Lnet/minecraft/world/level/ChunkPos;Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/level/chunk/storage/RegionFileStorage/write (Lnet/minecraft/world/level/ChunkPos;Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/level/chunk/storage/RegionFileStorage/m_63711_ (Lnet/minecraft/world/level/ChunkPos;)Lnet/minecraft/world/level/chunk/storage/RegionFile; net/minecraft/world/level/chunk/storage/RegionFileStorage/getRegionFile (Lnet/minecraft/world/level/ChunkPos;)Lnet/minecraft/world/level/chunk/storage/RegionFile; +MD: net/minecraft/world/level/chunk/storage/RegionFileVersion/ ()V net/minecraft/world/level/chunk/storage/RegionFileVersion/ ()V +MD: net/minecraft/world/level/chunk/storage/RegionFileVersion/ (ILnet/minecraft/world/level/chunk/storage/RegionFileVersion$StreamWrapper;Lnet/minecraft/world/level/chunk/storage/RegionFileVersion$StreamWrapper;)V net/minecraft/world/level/chunk/storage/RegionFileVersion/ (ILnet/minecraft/world/level/chunk/storage/RegionFileVersion$StreamWrapper;Lnet/minecraft/world/level/chunk/storage/RegionFileVersion$StreamWrapper;)V +MD: net/minecraft/world/level/chunk/storage/RegionFileVersion/m_196959_ (Ljava/io/InputStream;)Ljava/io/InputStream; net/minecraft/world/level/chunk/storage/RegionFileVersion/lambda$static$4 (Ljava/io/InputStream;)Ljava/io/InputStream; +MD: net/minecraft/world/level/chunk/storage/RegionFileVersion/m_196961_ (Ljava/io/OutputStream;)Ljava/io/OutputStream; net/minecraft/world/level/chunk/storage/RegionFileVersion/lambda$static$5 (Ljava/io/OutputStream;)Ljava/io/OutputStream; +MD: net/minecraft/world/level/chunk/storage/RegionFileVersion/m_196963_ (Ljava/io/InputStream;)Ljava/io/InputStream; net/minecraft/world/level/chunk/storage/RegionFileVersion/lambda$static$2 (Ljava/io/InputStream;)Ljava/io/InputStream; +MD: net/minecraft/world/level/chunk/storage/RegionFileVersion/m_196965_ (Ljava/io/OutputStream;)Ljava/io/OutputStream; net/minecraft/world/level/chunk/storage/RegionFileVersion/lambda$static$3 (Ljava/io/OutputStream;)Ljava/io/OutputStream; +MD: net/minecraft/world/level/chunk/storage/RegionFileVersion/m_63755_ ()I net/minecraft/world/level/chunk/storage/RegionFileVersion/getId ()I +MD: net/minecraft/world/level/chunk/storage/RegionFileVersion/m_63756_ (I)Lnet/minecraft/world/level/chunk/storage/RegionFileVersion; net/minecraft/world/level/chunk/storage/RegionFileVersion/fromId (I)Lnet/minecraft/world/level/chunk/storage/RegionFileVersion; +MD: net/minecraft/world/level/chunk/storage/RegionFileVersion/m_63758_ (Lnet/minecraft/world/level/chunk/storage/RegionFileVersion;)Lnet/minecraft/world/level/chunk/storage/RegionFileVersion; net/minecraft/world/level/chunk/storage/RegionFileVersion/register (Lnet/minecraft/world/level/chunk/storage/RegionFileVersion;)Lnet/minecraft/world/level/chunk/storage/RegionFileVersion; +MD: net/minecraft/world/level/chunk/storage/RegionFileVersion/m_63760_ (Ljava/io/InputStream;)Ljava/io/InputStream; net/minecraft/world/level/chunk/storage/RegionFileVersion/wrap (Ljava/io/InputStream;)Ljava/io/InputStream; +MD: net/minecraft/world/level/chunk/storage/RegionFileVersion/m_63762_ (Ljava/io/OutputStream;)Ljava/io/OutputStream; net/minecraft/world/level/chunk/storage/RegionFileVersion/wrap (Ljava/io/OutputStream;)Ljava/io/OutputStream; +MD: net/minecraft/world/level/chunk/storage/RegionFileVersion/m_63764_ (I)Z net/minecraft/world/level/chunk/storage/RegionFileVersion/isValidVersion (I)Z +MD: net/minecraft/world/level/chunk/storage/RegionFileVersion/m_63766_ (Ljava/io/InputStream;)Ljava/io/InputStream; net/minecraft/world/level/chunk/storage/RegionFileVersion/lambda$static$0 (Ljava/io/InputStream;)Ljava/io/InputStream; +MD: net/minecraft/world/level/chunk/storage/RegionFileVersion/m_63768_ (Ljava/io/OutputStream;)Ljava/io/OutputStream; net/minecraft/world/level/chunk/storage/RegionFileVersion/lambda$static$1 (Ljava/io/OutputStream;)Ljava/io/OutputStream; +MD: net/minecraft/world/level/chunk/storage/RegionFileVersion$StreamWrapper/m_63770_ (Ljava/lang/Object;)Ljava/lang/Object; net/minecraft/world/level/chunk/storage/RegionFileVersion$StreamWrapper/wrap (Ljava/lang/Object;)Ljava/lang/Object; +MD: net/minecraft/world/level/chunk/storage/SectionStorage/ ()V net/minecraft/world/level/chunk/storage/SectionStorage/ ()V +MD: net/minecraft/world/level/chunk/storage/SectionStorage/ (Ljava/nio/file/Path;Ljava/util/function/Function;Ljava/util/function/Function;Lcom/mojang/datafixers/DataFixer;Lnet/minecraft/util/datafix/DataFixTypes;ZLnet/minecraft/core/RegistryAccess;Lnet/minecraft/world/level/LevelHeightAccessor;)V net/minecraft/world/level/chunk/storage/SectionStorage/ (Ljava/nio/file/Path;Ljava/util/function/Function;Ljava/util/function/Function;Lcom/mojang/datafixers/DataFixer;Lnet/minecraft/util/datafix/DataFixTypes;ZLnet/minecraft/core/RegistryAccess;Lnet/minecraft/world/level/LevelHeightAccessor;)V +MD: net/minecraft/world/level/chunk/storage/SectionStorage/close ()V net/minecraft/world/level/chunk/storage/SectionStorage/close ()V +MD: net/minecraft/world/level/chunk/storage/SectionStorage/m_156627_ (Lnet/minecraft/world/level/ChunkPos;I)J net/minecraft/world/level/chunk/storage/SectionStorage/getKey (Lnet/minecraft/world/level/ChunkPos;I)J +MD: net/minecraft/world/level/chunk/storage/SectionStorage/m_156630_ (J)Z net/minecraft/world/level/chunk/storage/SectionStorage/outsideStoredRange (J)Z +MD: net/minecraft/world/level/chunk/storage/SectionStorage/m_202164_ ()Z net/minecraft/world/level/chunk/storage/SectionStorage/hasWork ()Z +MD: net/minecraft/world/level/chunk/storage/SectionStorage/m_223517_ (JLcom/mojang/serialization/Dynamic;)Ljava/util/Optional; net/minecraft/world/level/chunk/storage/SectionStorage/lambda$readColumn$3 (JLcom/mojang/serialization/Dynamic;)Ljava/util/Optional; +MD: net/minecraft/world/level/chunk/storage/SectionStorage/m_223520_ (JZLjava/lang/Object;)V net/minecraft/world/level/chunk/storage/SectionStorage/lambda$readColumn$4 (JZLjava/lang/Object;)V +MD: net/minecraft/world/level/chunk/storage/SectionStorage/m_223524_ (Lnet/minecraft/world/level/ChunkPos;Ljava/lang/Throwable;)Ljava/util/Optional; net/minecraft/world/level/chunk/storage/SectionStorage/lambda$tryRead$1 (Lnet/minecraft/world/level/ChunkPos;Ljava/lang/Throwable;)Ljava/util/Optional; +MD: net/minecraft/world/level/chunk/storage/SectionStorage/m_223527_ (Ljava/util/Map;Lcom/mojang/serialization/DynamicOps;Ljava/lang/String;Ljava/lang/Object;)V net/minecraft/world/level/chunk/storage/SectionStorage/lambda$writeColumn$6 (Ljava/util/Map;Lcom/mojang/serialization/DynamicOps;Ljava/lang/String;Ljava/lang/Object;)V +MD: net/minecraft/world/level/chunk/storage/SectionStorage/m_223532_ (Lnet/minecraft/world/level/ChunkPos;)Ljava/util/concurrent/CompletableFuture; net/minecraft/world/level/chunk/storage/SectionStorage/tryRead (Lnet/minecraft/world/level/ChunkPos;)Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/world/level/chunk/storage/SectionStorage/m_223534_ (J)V net/minecraft/world/level/chunk/storage/SectionStorage/lambda$writeColumn$5 (J)V +MD: net/minecraft/world/level/chunk/storage/SectionStorage/m_223536_ (J)V net/minecraft/world/level/chunk/storage/SectionStorage/lambda$readColumn$2 (J)V +MD: net/minecraft/world/level/chunk/storage/SectionStorage/m_5838_ (J)V net/minecraft/world/level/chunk/storage/SectionStorage/setDirty (J)V +MD: net/minecraft/world/level/chunk/storage/SectionStorage/m_5839_ (J)V net/minecraft/world/level/chunk/storage/SectionStorage/onSectionLoad (J)V +MD: net/minecraft/world/level/chunk/storage/SectionStorage/m_6202_ (Ljava/util/function/BooleanSupplier;)V net/minecraft/world/level/chunk/storage/SectionStorage/tick (Ljava/util/function/BooleanSupplier;)V +MD: net/minecraft/world/level/chunk/storage/SectionStorage/m_63796_ (Lnet/minecraft/world/level/ChunkPos;)V net/minecraft/world/level/chunk/storage/SectionStorage/flush (Lnet/minecraft/world/level/ChunkPos;)V +MD: net/minecraft/world/level/chunk/storage/SectionStorage/m_63798_ (Lnet/minecraft/world/level/ChunkPos;Lcom/mojang/serialization/DynamicOps;)Lcom/mojang/serialization/Dynamic; net/minecraft/world/level/chunk/storage/SectionStorage/writeColumn (Lnet/minecraft/world/level/ChunkPos;Lcom/mojang/serialization/DynamicOps;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/world/level/chunk/storage/SectionStorage/m_63801_ (Lnet/minecraft/world/level/ChunkPos;Lcom/mojang/serialization/DynamicOps;Ljava/lang/Object;)V net/minecraft/world/level/chunk/storage/SectionStorage/readColumn (Lnet/minecraft/world/level/ChunkPos;Lcom/mojang/serialization/DynamicOps;Ljava/lang/Object;)V +MD: net/minecraft/world/level/chunk/storage/SectionStorage/m_63805_ (Lcom/mojang/serialization/Dynamic;)I net/minecraft/world/level/chunk/storage/SectionStorage/getVersion (Lcom/mojang/serialization/Dynamic;)I +MD: net/minecraft/world/level/chunk/storage/SectionStorage/m_63814_ (Lnet/minecraft/world/level/ChunkPos;)V net/minecraft/world/level/chunk/storage/SectionStorage/readColumn (Lnet/minecraft/world/level/ChunkPos;)V +MD: net/minecraft/world/level/chunk/storage/SectionStorage/m_63818_ (J)Ljava/util/Optional; net/minecraft/world/level/chunk/storage/SectionStorage/get (J)Ljava/util/Optional; +MD: net/minecraft/world/level/chunk/storage/SectionStorage/m_63823_ (J)Ljava/util/Optional; net/minecraft/world/level/chunk/storage/SectionStorage/getOrLoad (J)Ljava/util/Optional; +MD: net/minecraft/world/level/chunk/storage/SectionStorage/m_63825_ (Lnet/minecraft/world/level/ChunkPos;)V net/minecraft/world/level/chunk/storage/SectionStorage/writeColumn (Lnet/minecraft/world/level/ChunkPos;)V +MD: net/minecraft/world/level/chunk/storage/SectionStorage/m_63827_ (J)Ljava/lang/Object; net/minecraft/world/level/chunk/storage/SectionStorage/getOrCreate (J)Ljava/lang/Object; +MD: net/minecraft/world/level/chunk/storage/SectionStorage/m_63833_ (J)V net/minecraft/world/level/chunk/storage/SectionStorage/lambda$getOrCreate$0 (J)V +MD: net/minecraft/world/level/dimension/BuiltinDimensionTypes/ ()V net/minecraft/world/level/dimension/BuiltinDimensionTypes/ ()V +MD: net/minecraft/world/level/dimension/BuiltinDimensionTypes/ ()V net/minecraft/world/level/dimension/BuiltinDimensionTypes/ ()V +MD: net/minecraft/world/level/dimension/BuiltinDimensionTypes/m_223547_ (Ljava/lang/String;)Lnet/minecraft/resources/ResourceKey; net/minecraft/world/level/dimension/BuiltinDimensionTypes/register (Ljava/lang/String;)Lnet/minecraft/resources/ResourceKey; +MD: net/minecraft/world/level/dimension/DimensionDefaults/ ()V net/minecraft/world/level/dimension/DimensionDefaults/ ()V +MD: net/minecraft/world/level/dimension/DimensionType/ ()V net/minecraft/world/level/dimension/DimensionType/ ()V +MD: net/minecraft/world/level/dimension/DimensionType/ (Ljava/util/OptionalLong;ZZZZDZZIIILnet/minecraft/tags/TagKey;Lnet/minecraft/resources/ResourceLocation;FLnet/minecraft/world/level/dimension/DimensionType$MonsterSettings;)V net/minecraft/world/level/dimension/DimensionType/ (Ljava/util/OptionalLong;ZZZZDZZIIILnet/minecraft/tags/TagKey;Lnet/minecraft/resources/ResourceLocation;FLnet/minecraft/world/level/dimension/DimensionType$MonsterSettings;)V +MD: net/minecraft/world/level/dimension/DimensionType/equals (Ljava/lang/Object;)Z net/minecraft/world/level/dimension/DimensionType/equals (Ljava/lang/Object;)Z +MD: net/minecraft/world/level/dimension/DimensionType/f_156647_ ()I net/minecraft/world/level/dimension/DimensionType/minY ()I +MD: net/minecraft/world/level/dimension/DimensionType/f_156648_ ()I net/minecraft/world/level/dimension/DimensionType/height ()I +MD: net/minecraft/world/level/dimension/DimensionType/f_223549_ ()Z net/minecraft/world/level/dimension/DimensionType/hasSkyLight ()Z +MD: net/minecraft/world/level/dimension/DimensionType/f_223550_ ()Lnet/minecraft/world/level/dimension/DimensionType$MonsterSettings; net/minecraft/world/level/dimension/DimensionType/monsterSettings ()Lnet/minecraft/world/level/dimension/DimensionType$MonsterSettings; +MD: net/minecraft/world/level/dimension/DimensionType/f_63836_ ()Lnet/minecraft/tags/TagKey; net/minecraft/world/level/dimension/DimensionType/infiniburn ()Lnet/minecraft/tags/TagKey; +MD: net/minecraft/world/level/dimension/DimensionType/f_63837_ ()Lnet/minecraft/resources/ResourceLocation; net/minecraft/world/level/dimension/DimensionType/effectsLocation ()Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/world/level/dimension/DimensionType/f_63838_ ()F net/minecraft/world/level/dimension/DimensionType/ambientLight ()F +MD: net/minecraft/world/level/dimension/DimensionType/f_63854_ ()Ljava/util/OptionalLong; net/minecraft/world/level/dimension/DimensionType/fixedTime ()Ljava/util/OptionalLong; +MD: net/minecraft/world/level/dimension/DimensionType/f_63856_ ()Z net/minecraft/world/level/dimension/DimensionType/hasCeiling ()Z +MD: net/minecraft/world/level/dimension/DimensionType/f_63857_ ()Z net/minecraft/world/level/dimension/DimensionType/ultraWarm ()Z +MD: net/minecraft/world/level/dimension/DimensionType/f_63858_ ()Z net/minecraft/world/level/dimension/DimensionType/natural ()Z +MD: net/minecraft/world/level/dimension/DimensionType/f_63859_ ()D net/minecraft/world/level/dimension/DimensionType/coordinateScale ()D +MD: net/minecraft/world/level/dimension/DimensionType/f_63862_ ()Z net/minecraft/world/level/dimension/DimensionType/bedWorks ()Z +MD: net/minecraft/world/level/dimension/DimensionType/f_63863_ ()Z net/minecraft/world/level/dimension/DimensionType/respawnAnchorWorks ()Z +MD: net/minecraft/world/level/dimension/DimensionType/f_63865_ ()I net/minecraft/world/level/dimension/DimensionType/logicalHeight ()I +MD: net/minecraft/world/level/dimension/DimensionType/hashCode ()I net/minecraft/world/level/dimension/DimensionType/hashCode ()I +MD: net/minecraft/world/level/dimension/DimensionType/m_196975_ (Lnet/minecraft/resources/ResourceKey;Ljava/nio/file/Path;)Ljava/nio/file/Path; net/minecraft/world/level/dimension/DimensionType/getStorageFolder (Lnet/minecraft/resources/ResourceKey;Ljava/nio/file/Path;)Ljava/nio/file/Path; +MD: net/minecraft/world/level/dimension/DimensionType/m_223567_ (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/world/level/dimension/DimensionType/lambda$static$0 (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/world/level/dimension/DimensionType/m_223569_ ()Lnet/minecraft/util/valueproviders/IntProvider; net/minecraft/world/level/dimension/DimensionType/monsterSpawnLightTest ()Lnet/minecraft/util/valueproviders/IntProvider; +MD: net/minecraft/world/level/dimension/DimensionType/m_223570_ ()I net/minecraft/world/level/dimension/DimensionType/monsterSpawnBlockLightLimit ()I +MD: net/minecraft/world/level/dimension/DimensionType/m_63904_ (J)F net/minecraft/world/level/dimension/DimensionType/timeOfDay (J)F +MD: net/minecraft/world/level/dimension/DimensionType/m_63908_ (Lnet/minecraft/world/level/dimension/DimensionType;Lnet/minecraft/world/level/dimension/DimensionType;)D net/minecraft/world/level/dimension/DimensionType/getTeleportationScale (Lnet/minecraft/world/level/dimension/DimensionType;Lnet/minecraft/world/level/dimension/DimensionType;)D +MD: net/minecraft/world/level/dimension/DimensionType/m_63911_ (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/DataResult; net/minecraft/world/level/dimension/DimensionType/parseLegacy (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/DataResult; +MD: net/minecraft/world/level/dimension/DimensionType/m_63936_ (J)I net/minecraft/world/level/dimension/DimensionType/moonPhase (J)I +MD: net/minecraft/world/level/dimension/DimensionType/m_63960_ ()Z net/minecraft/world/level/dimension/DimensionType/piglinSafe ()Z +MD: net/minecraft/world/level/dimension/DimensionType/m_63963_ ()Z net/minecraft/world/level/dimension/DimensionType/hasRaids ()Z +MD: net/minecraft/world/level/dimension/DimensionType/m_63967_ ()Z net/minecraft/world/level/dimension/DimensionType/hasFixedTime ()Z +MD: net/minecraft/world/level/dimension/DimensionType/toString ()Ljava/lang/String; net/minecraft/world/level/dimension/DimensionType/toString ()Ljava/lang/String; +MD: net/minecraft/world/level/dimension/DimensionType$MonsterSettings/ ()V net/minecraft/world/level/dimension/DimensionType$MonsterSettings/ ()V +MD: net/minecraft/world/level/dimension/DimensionType$MonsterSettings/ (ZZLnet/minecraft/util/valueproviders/IntProvider;I)V net/minecraft/world/level/dimension/DimensionType$MonsterSettings/ (ZZLnet/minecraft/util/valueproviders/IntProvider;I)V +MD: net/minecraft/world/level/dimension/DimensionType$MonsterSettings/equals (Ljava/lang/Object;)Z net/minecraft/world/level/dimension/DimensionType$MonsterSettings/equals (Ljava/lang/Object;)Z +MD: net/minecraft/world/level/dimension/DimensionType$MonsterSettings/f_223579_ ()Z net/minecraft/world/level/dimension/DimensionType$MonsterSettings/piglinSafe ()Z +MD: net/minecraft/world/level/dimension/DimensionType$MonsterSettings/f_223580_ ()Z net/minecraft/world/level/dimension/DimensionType$MonsterSettings/hasRaids ()Z +MD: net/minecraft/world/level/dimension/DimensionType$MonsterSettings/f_223581_ ()Lnet/minecraft/util/valueproviders/IntProvider; net/minecraft/world/level/dimension/DimensionType$MonsterSettings/monsterSpawnLightTest ()Lnet/minecraft/util/valueproviders/IntProvider; +MD: net/minecraft/world/level/dimension/DimensionType$MonsterSettings/f_223582_ ()I net/minecraft/world/level/dimension/DimensionType$MonsterSettings/monsterSpawnBlockLightLimit ()I +MD: net/minecraft/world/level/dimension/DimensionType$MonsterSettings/hashCode ()I net/minecraft/world/level/dimension/DimensionType$MonsterSettings/hashCode ()I +MD: net/minecraft/world/level/dimension/DimensionType$MonsterSettings/m_223590_ (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/world/level/dimension/DimensionType$MonsterSettings/lambda$static$0 (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/world/level/dimension/DimensionType$MonsterSettings/toString ()Ljava/lang/String; net/minecraft/world/level/dimension/DimensionType$MonsterSettings/toString ()Ljava/lang/String; +MD: net/minecraft/world/level/dimension/LevelStem/ ()V net/minecraft/world/level/dimension/LevelStem/ ()V +MD: net/minecraft/world/level/dimension/LevelStem/ (Lnet/minecraft/core/Holder;Lnet/minecraft/world/level/chunk/ChunkGenerator;)V net/minecraft/world/level/dimension/LevelStem/ (Lnet/minecraft/core/Holder;Lnet/minecraft/world/level/chunk/ChunkGenerator;)V +MD: net/minecraft/world/level/dimension/LevelStem/equals (Ljava/lang/Object;)Z net/minecraft/world/level/dimension/LevelStem/equals (Ljava/lang/Object;)Z +MD: net/minecraft/world/level/dimension/LevelStem/f_63975_ ()Lnet/minecraft/core/Holder; net/minecraft/world/level/dimension/LevelStem/type ()Lnet/minecraft/core/Holder; +MD: net/minecraft/world/level/dimension/LevelStem/f_63976_ ()Lnet/minecraft/world/level/chunk/ChunkGenerator; net/minecraft/world/level/dimension/LevelStem/generator ()Lnet/minecraft/world/level/chunk/ChunkGenerator; +MD: net/minecraft/world/level/dimension/LevelStem/hashCode ()I net/minecraft/world/level/dimension/LevelStem/hashCode ()I +MD: net/minecraft/world/level/dimension/LevelStem/m_63985_ (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/world/level/dimension/LevelStem/lambda$static$0 (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/world/level/dimension/LevelStem/toString ()Ljava/lang/String; net/minecraft/world/level/dimension/LevelStem/toString ()Ljava/lang/String; +MD: net/minecraft/world/level/dimension/end/DragonRespawnAnimation/ ()V net/minecraft/world/level/dimension/end/DragonRespawnAnimation/ ()V +MD: net/minecraft/world/level/dimension/end/DragonRespawnAnimation/ (Ljava/lang/String;I)V net/minecraft/world/level/dimension/end/DragonRespawnAnimation/ (Ljava/lang/String;I)V +MD: net/minecraft/world/level/dimension/end/DragonRespawnAnimation/m_156734_ ()[Lnet/minecraft/world/level/dimension/end/DragonRespawnAnimation; net/minecraft/world/level/dimension/end/DragonRespawnAnimation/$values ()[Lnet/minecraft/world/level/dimension/end/DragonRespawnAnimation; +MD: net/minecraft/world/level/dimension/end/DragonRespawnAnimation/m_6363_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/level/dimension/end/EndDragonFight;Ljava/util/List;ILnet/minecraft/core/BlockPos;)V net/minecraft/world/level/dimension/end/DragonRespawnAnimation/tick (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/level/dimension/end/EndDragonFight;Ljava/util/List;ILnet/minecraft/core/BlockPos;)V +MD: net/minecraft/world/level/dimension/end/DragonRespawnAnimation/valueOf (Ljava/lang/String;)Lnet/minecraft/world/level/dimension/end/DragonRespawnAnimation; net/minecraft/world/level/dimension/end/DragonRespawnAnimation/valueOf (Ljava/lang/String;)Lnet/minecraft/world/level/dimension/end/DragonRespawnAnimation; +MD: net/minecraft/world/level/dimension/end/DragonRespawnAnimation/values ()[Lnet/minecraft/world/level/dimension/end/DragonRespawnAnimation; net/minecraft/world/level/dimension/end/DragonRespawnAnimation/values ()[Lnet/minecraft/world/level/dimension/end/DragonRespawnAnimation; +MD: net/minecraft/world/level/dimension/end/DragonRespawnAnimation$1/ (Ljava/lang/String;I)V net/minecraft/world/level/dimension/end/DragonRespawnAnimation$1/ (Ljava/lang/String;I)V +MD: net/minecraft/world/level/dimension/end/DragonRespawnAnimation$1/m_6363_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/level/dimension/end/EndDragonFight;Ljava/util/List;ILnet/minecraft/core/BlockPos;)V net/minecraft/world/level/dimension/end/DragonRespawnAnimation$1/tick (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/level/dimension/end/EndDragonFight;Ljava/util/List;ILnet/minecraft/core/BlockPos;)V +MD: net/minecraft/world/level/dimension/end/DragonRespawnAnimation$2/ (Ljava/lang/String;I)V net/minecraft/world/level/dimension/end/DragonRespawnAnimation$2/ (Ljava/lang/String;I)V +MD: net/minecraft/world/level/dimension/end/DragonRespawnAnimation$2/m_6363_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/level/dimension/end/EndDragonFight;Ljava/util/List;ILnet/minecraft/core/BlockPos;)V net/minecraft/world/level/dimension/end/DragonRespawnAnimation$2/tick (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/level/dimension/end/EndDragonFight;Ljava/util/List;ILnet/minecraft/core/BlockPos;)V +MD: net/minecraft/world/level/dimension/end/DragonRespawnAnimation$3/ (Ljava/lang/String;I)V net/minecraft/world/level/dimension/end/DragonRespawnAnimation$3/ (Ljava/lang/String;I)V +MD: net/minecraft/world/level/dimension/end/DragonRespawnAnimation$3/m_6363_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/level/dimension/end/EndDragonFight;Ljava/util/List;ILnet/minecraft/core/BlockPos;)V net/minecraft/world/level/dimension/end/DragonRespawnAnimation$3/tick (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/level/dimension/end/EndDragonFight;Ljava/util/List;ILnet/minecraft/core/BlockPos;)V +MD: net/minecraft/world/level/dimension/end/DragonRespawnAnimation$4/ (Ljava/lang/String;I)V net/minecraft/world/level/dimension/end/DragonRespawnAnimation$4/ (Ljava/lang/String;I)V +MD: net/minecraft/world/level/dimension/end/DragonRespawnAnimation$4/m_6363_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/level/dimension/end/EndDragonFight;Ljava/util/List;ILnet/minecraft/core/BlockPos;)V net/minecraft/world/level/dimension/end/DragonRespawnAnimation$4/tick (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/level/dimension/end/EndDragonFight;Ljava/util/List;ILnet/minecraft/core/BlockPos;)V +MD: net/minecraft/world/level/dimension/end/DragonRespawnAnimation$5/ (Ljava/lang/String;I)V net/minecraft/world/level/dimension/end/DragonRespawnAnimation$5/ (Ljava/lang/String;I)V +MD: net/minecraft/world/level/dimension/end/DragonRespawnAnimation$5/m_6363_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/level/dimension/end/EndDragonFight;Ljava/util/List;ILnet/minecraft/core/BlockPos;)V net/minecraft/world/level/dimension/end/DragonRespawnAnimation$5/tick (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/level/dimension/end/EndDragonFight;Ljava/util/List;ILnet/minecraft/core/BlockPos;)V +MD: net/minecraft/world/level/dimension/end/EndDragonFight/ ()V net/minecraft/world/level/dimension/end/EndDragonFight/ ()V +MD: net/minecraft/world/level/dimension/end/EndDragonFight/ (Lnet/minecraft/server/level/ServerLevel;JLnet/minecraft/world/level/dimension/end/EndDragonFight$Data;Lnet/minecraft/core/BlockPos;)V net/minecraft/world/level/dimension/end/EndDragonFight/ (Lnet/minecraft/server/level/ServerLevel;JLnet/minecraft/world/level/dimension/end/EndDragonFight$Data;Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/world/level/dimension/end/EndDragonFight/ (Lnet/minecraft/server/level/ServerLevel;JLnet/minecraft/world/level/dimension/end/EndDragonFight$Data;)V net/minecraft/world/level/dimension/end/EndDragonFight/ (Lnet/minecraft/server/level/ServerLevel;JLnet/minecraft/world/level/dimension/end/EndDragonFight$Data;)V +MD: net/minecraft/world/level/dimension/end/EndDragonFight/m_255387_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Holder$Reference;)V net/minecraft/world/level/dimension/end/EndDragonFight/lambda$spawnNewGateway$2 (Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Holder$Reference;)V +MD: net/minecraft/world/level/dimension/end/EndDragonFight/m_257345_ (Lnet/minecraft/core/Registry;)Ljava/util/Optional; net/minecraft/world/level/dimension/end/EndDragonFight/lambda$spawnNewGateway$1 (Lnet/minecraft/core/Registry;)Ljava/util/Optional; +MD: net/minecraft/world/level/dimension/end/EndDragonFight/m_287238_ ()V net/minecraft/world/level/dimension/end/EndDragonFight/removeAllGateways ()V +MD: net/minecraft/world/level/dimension/end/EndDragonFight/m_287277_ ()V net/minecraft/world/level/dimension/end/EndDragonFight/skipArenaLoadedCheck ()V +MD: net/minecraft/world/level/dimension/end/EndDragonFight/m_288211_ ()Ljava/util/UUID; net/minecraft/world/level/dimension/end/EndDragonFight/getDragonUUID ()Ljava/util/UUID; +MD: net/minecraft/world/level/dimension/end/EndDragonFight/m_289714_ (J)Ljava/util/List; net/minecraft/world/level/dimension/end/EndDragonFight/lambda$new$0 (J)Ljava/util/List; +MD: net/minecraft/world/level/dimension/end/EndDragonFight/m_289745_ ()Lnet/minecraft/world/level/dimension/end/EndDragonFight$Data; net/minecraft/world/level/dimension/end/EndDragonFight/saveData ()Lnet/minecraft/world/level/dimension/end/EndDragonFight$Data; +MD: net/minecraft/world/level/dimension/end/EndDragonFight/m_64082_ (Lnet/minecraft/world/entity/boss/enderdragon/EndCrystal;Lnet/minecraft/world/damagesource/DamageSource;)V net/minecraft/world/level/dimension/end/EndDragonFight/onCrystalDestroyed (Lnet/minecraft/world/entity/boss/enderdragon/EndCrystal;Lnet/minecraft/world/damagesource/DamageSource;)V +MD: net/minecraft/world/level/dimension/end/EndDragonFight/m_64085_ (Lnet/minecraft/world/entity/boss/enderdragon/EnderDragon;)V net/minecraft/world/level/dimension/end/EndDragonFight/setDragonKilled (Lnet/minecraft/world/entity/boss/enderdragon/EnderDragon;)V +MD: net/minecraft/world/level/dimension/end/EndDragonFight/m_64087_ (Lnet/minecraft/world/level/dimension/end/DragonRespawnAnimation;)V net/minecraft/world/level/dimension/end/EndDragonFight/setRespawnStage (Lnet/minecraft/world/level/dimension/end/DragonRespawnAnimation;)V +MD: net/minecraft/world/level/dimension/end/EndDragonFight/m_64089_ (Lnet/minecraft/core/BlockPos;)V net/minecraft/world/level/dimension/end/EndDragonFight/spawnNewGateway (Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/world/level/dimension/end/EndDragonFight/m_64091_ (Ljava/util/List;)V net/minecraft/world/level/dimension/end/EndDragonFight/respawnDragon (Ljava/util/List;)V +MD: net/minecraft/world/level/dimension/end/EndDragonFight/m_64093_ (Z)V net/minecraft/world/level/dimension/end/EndDragonFight/spawnExitPortal (Z)V +MD: net/minecraft/world/level/dimension/end/EndDragonFight/m_64095_ ()V net/minecraft/world/level/dimension/end/EndDragonFight/tick ()V +MD: net/minecraft/world/level/dimension/end/EndDragonFight/m_64096_ (Lnet/minecraft/world/entity/boss/enderdragon/EnderDragon;)V net/minecraft/world/level/dimension/end/EndDragonFight/updateDragon (Lnet/minecraft/world/entity/boss/enderdragon/EnderDragon;)V +MD: net/minecraft/world/level/dimension/end/EndDragonFight/m_64098_ ()I net/minecraft/world/level/dimension/end/EndDragonFight/getCrystalsAlive ()I +MD: net/minecraft/world/level/dimension/end/EndDragonFight/m_64099_ ()Z net/minecraft/world/level/dimension/end/EndDragonFight/hasPreviouslyKilledDragon ()Z +MD: net/minecraft/world/level/dimension/end/EndDragonFight/m_64100_ ()V net/minecraft/world/level/dimension/end/EndDragonFight/tryRespawn ()V +MD: net/minecraft/world/level/dimension/end/EndDragonFight/m_64101_ ()V net/minecraft/world/level/dimension/end/EndDragonFight/resetSpikeCrystals ()V +MD: net/minecraft/world/level/dimension/end/EndDragonFight/m_64102_ ()V net/minecraft/world/level/dimension/end/EndDragonFight/scanState ()V +MD: net/minecraft/world/level/dimension/end/EndDragonFight/m_64103_ ()V net/minecraft/world/level/dimension/end/EndDragonFight/findOrCreateDragon ()V +MD: net/minecraft/world/level/dimension/end/EndDragonFight/m_64104_ ()Z net/minecraft/world/level/dimension/end/EndDragonFight/hasActiveExitPortal ()Z +MD: net/minecraft/world/level/dimension/end/EndDragonFight/m_64105_ ()Lnet/minecraft/world/level/block/state/pattern/BlockPattern$BlockPatternMatch; net/minecraft/world/level/dimension/end/EndDragonFight/findExitPortal ()Lnet/minecraft/world/level/block/state/pattern/BlockPattern$BlockPatternMatch; +MD: net/minecraft/world/level/dimension/end/EndDragonFight/m_64106_ ()Z net/minecraft/world/level/dimension/end/EndDragonFight/isArenaLoaded ()Z +MD: net/minecraft/world/level/dimension/end/EndDragonFight/m_64107_ ()V net/minecraft/world/level/dimension/end/EndDragonFight/updatePlayers ()V +MD: net/minecraft/world/level/dimension/end/EndDragonFight/m_64108_ ()V net/minecraft/world/level/dimension/end/EndDragonFight/updateCrystalCount ()V +MD: net/minecraft/world/level/dimension/end/EndDragonFight/m_64109_ ()V net/minecraft/world/level/dimension/end/EndDragonFight/spawnNewGateway ()V +MD: net/minecraft/world/level/dimension/end/EndDragonFight/m_64110_ ()Lnet/minecraft/world/entity/boss/enderdragon/EnderDragon; net/minecraft/world/level/dimension/end/EndDragonFight/createNewDragon ()Lnet/minecraft/world/entity/boss/enderdragon/EnderDragon; +MD: net/minecraft/world/level/dimension/end/EndDragonFight$Data/ ()V net/minecraft/world/level/dimension/end/EndDragonFight$Data/ ()V +MD: net/minecraft/world/level/dimension/end/EndDragonFight$Data/ (ZZZZLjava/util/Optional;Ljava/util/Optional;Ljava/util/Optional;)V net/minecraft/world/level/dimension/end/EndDragonFight$Data/ (ZZZZLjava/util/Optional;Ljava/util/Optional;Ljava/util/Optional;)V +MD: net/minecraft/world/level/dimension/end/EndDragonFight$Data/equals (Ljava/lang/Object;)Z net/minecraft/world/level/dimension/end/EndDragonFight$Data/equals (Ljava/lang/Object;)Z +MD: net/minecraft/world/level/dimension/end/EndDragonFight$Data/f_289702_ ()Ljava/util/Optional; net/minecraft/world/level/dimension/end/EndDragonFight$Data/dragonUUID ()Ljava/util/Optional; +MD: net/minecraft/world/level/dimension/end/EndDragonFight$Data/f_289703_ ()Z net/minecraft/world/level/dimension/end/EndDragonFight$Data/isRespawning ()Z +MD: net/minecraft/world/level/dimension/end/EndDragonFight$Data/f_289704_ ()Z net/minecraft/world/level/dimension/end/EndDragonFight$Data/previouslyKilled ()Z +MD: net/minecraft/world/level/dimension/end/EndDragonFight$Data/f_289705_ ()Ljava/util/Optional; net/minecraft/world/level/dimension/end/EndDragonFight$Data/gateways ()Ljava/util/Optional; +MD: net/minecraft/world/level/dimension/end/EndDragonFight$Data/f_289708_ ()Ljava/util/Optional; net/minecraft/world/level/dimension/end/EndDragonFight$Data/exitPortalLocation ()Ljava/util/Optional; +MD: net/minecraft/world/level/dimension/end/EndDragonFight$Data/f_289710_ ()Z net/minecraft/world/level/dimension/end/EndDragonFight$Data/needsStateScanning ()Z +MD: net/minecraft/world/level/dimension/end/EndDragonFight$Data/f_289711_ ()Z net/minecraft/world/level/dimension/end/EndDragonFight$Data/dragonKilled ()Z +MD: net/minecraft/world/level/dimension/end/EndDragonFight$Data/hashCode ()I net/minecraft/world/level/dimension/end/EndDragonFight$Data/hashCode ()I +MD: net/minecraft/world/level/dimension/end/EndDragonFight$Data/m_289715_ (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/world/level/dimension/end/EndDragonFight$Data/lambda$static$0 (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/world/level/dimension/end/EndDragonFight$Data/toString ()Ljava/lang/String; net/minecraft/world/level/dimension/end/EndDragonFight$Data/toString ()Ljava/lang/String; +MD: net/minecraft/world/level/entity/ChunkEntities/ (Lnet/minecraft/world/level/ChunkPos;Ljava/util/List;)V net/minecraft/world/level/entity/ChunkEntities/ (Lnet/minecraft/world/level/ChunkPos;Ljava/util/List;)V +MD: net/minecraft/world/level/entity/ChunkEntities/m_156791_ ()Lnet/minecraft/world/level/ChunkPos; net/minecraft/world/level/entity/ChunkEntities/getPos ()Lnet/minecraft/world/level/ChunkPos; +MD: net/minecraft/world/level/entity/ChunkEntities/m_156792_ ()Ljava/util/stream/Stream; net/minecraft/world/level/entity/ChunkEntities/getEntities ()Ljava/util/stream/Stream; +MD: net/minecraft/world/level/entity/ChunkEntities/m_156793_ ()Z net/minecraft/world/level/entity/ChunkEntities/isEmpty ()Z +MD: net/minecraft/world/level/entity/ChunkStatusUpdateListener/m_156794_ (Lnet/minecraft/world/level/ChunkPos;Lnet/minecraft/server/level/FullChunkStatus;)V net/minecraft/world/level/entity/ChunkStatusUpdateListener/onChunkStatusChange (Lnet/minecraft/world/level/ChunkPos;Lnet/minecraft/server/level/FullChunkStatus;)V +MD: net/minecraft/world/level/entity/EntityAccess/m_141960_ (Lnet/minecraft/world/level/entity/EntityInLevelCallback;)V net/minecraft/world/level/entity/EntityAccess/setLevelCallback (Lnet/minecraft/world/level/entity/EntityInLevelCallback;)V +MD: net/minecraft/world/level/entity/EntityAccess/m_142389_ ()Z net/minecraft/world/level/entity/EntityAccess/isAlwaysTicking ()Z +MD: net/minecraft/world/level/entity/EntityAccess/m_142391_ ()Z net/minecraft/world/level/entity/EntityAccess/shouldBeSaved ()Z +MD: net/minecraft/world/level/entity/EntityAccess/m_142429_ ()Ljava/util/stream/Stream; net/minecraft/world/level/entity/EntityAccess/getPassengersAndSelf ()Ljava/util/stream/Stream; +MD: net/minecraft/world/level/entity/EntityAccess/m_142467_ (Lnet/minecraft/world/entity/Entity$RemovalReason;)V net/minecraft/world/level/entity/EntityAccess/setRemoved (Lnet/minecraft/world/entity/Entity$RemovalReason;)V +MD: net/minecraft/world/level/entity/EntityAccess/m_19879_ ()I net/minecraft/world/level/entity/EntityAccess/getId ()I +MD: net/minecraft/world/level/entity/EntityAccess/m_20148_ ()Ljava/util/UUID; net/minecraft/world/level/entity/EntityAccess/getUUID ()Ljava/util/UUID; +MD: net/minecraft/world/level/entity/EntityAccess/m_20183_ ()Lnet/minecraft/core/BlockPos; net/minecraft/world/level/entity/EntityAccess/blockPosition ()Lnet/minecraft/core/BlockPos; +MD: net/minecraft/world/level/entity/EntityAccess/m_20191_ ()Lnet/minecraft/world/phys/AABB; net/minecraft/world/level/entity/EntityAccess/getBoundingBox ()Lnet/minecraft/world/phys/AABB; +MD: net/minecraft/world/level/entity/EntityAccess/m_20199_ ()Ljava/util/stream/Stream; net/minecraft/world/level/entity/EntityAccess/getSelfAndPassengers ()Ljava/util/stream/Stream; +MD: net/minecraft/world/level/entity/EntityInLevelCallback/ ()V net/minecraft/world/level/entity/EntityInLevelCallback/ ()V +MD: net/minecraft/world/level/entity/EntityInLevelCallback/m_142044_ ()V net/minecraft/world/level/entity/EntityInLevelCallback/onMove ()V +MD: net/minecraft/world/level/entity/EntityInLevelCallback/m_142472_ (Lnet/minecraft/world/entity/Entity$RemovalReason;)V net/minecraft/world/level/entity/EntityInLevelCallback/onRemove (Lnet/minecraft/world/entity/Entity$RemovalReason;)V +MD: net/minecraft/world/level/entity/EntityInLevelCallback$1/ ()V net/minecraft/world/level/entity/EntityInLevelCallback$1/ ()V +MD: net/minecraft/world/level/entity/EntityInLevelCallback$1/m_142044_ ()V net/minecraft/world/level/entity/EntityInLevelCallback$1/onMove ()V +MD: net/minecraft/world/level/entity/EntityInLevelCallback$1/m_142472_ (Lnet/minecraft/world/entity/Entity$RemovalReason;)V net/minecraft/world/level/entity/EntityInLevelCallback$1/onRemove (Lnet/minecraft/world/entity/Entity$RemovalReason;)V +MD: net/minecraft/world/level/entity/EntityLookup/ ()V net/minecraft/world/level/entity/EntityLookup/ ()V +MD: net/minecraft/world/level/entity/EntityLookup/ ()V net/minecraft/world/level/entity/EntityLookup/ ()V +MD: net/minecraft/world/level/entity/EntityLookup/m_156811_ ()Ljava/lang/Iterable; net/minecraft/world/level/entity/EntityLookup/getAllEntities ()Ljava/lang/Iterable; +MD: net/minecraft/world/level/entity/EntityLookup/m_156812_ (I)Lnet/minecraft/world/level/entity/EntityAccess; net/minecraft/world/level/entity/EntityLookup/getEntity (I)Lnet/minecraft/world/level/entity/EntityAccess; +MD: net/minecraft/world/level/entity/EntityLookup/m_156814_ (Lnet/minecraft/world/level/entity/EntityAccess;)V net/minecraft/world/level/entity/EntityLookup/add (Lnet/minecraft/world/level/entity/EntityAccess;)V +MD: net/minecraft/world/level/entity/EntityLookup/m_156819_ (Ljava/util/UUID;)Lnet/minecraft/world/level/entity/EntityAccess; net/minecraft/world/level/entity/EntityLookup/getEntity (Ljava/util/UUID;)Lnet/minecraft/world/level/entity/EntityAccess; +MD: net/minecraft/world/level/entity/EntityLookup/m_156821_ ()I net/minecraft/world/level/entity/EntityLookup/count ()I +MD: net/minecraft/world/level/entity/EntityLookup/m_156822_ (Lnet/minecraft/world/level/entity/EntityAccess;)V net/minecraft/world/level/entity/EntityLookup/remove (Lnet/minecraft/world/level/entity/EntityAccess;)V +MD: net/minecraft/world/level/entity/EntityLookup/m_260822_ (Lnet/minecraft/world/level/entity/EntityTypeTest;Lnet/minecraft/util/AbortableIterationConsumer;)V net/minecraft/world/level/entity/EntityLookup/getEntities (Lnet/minecraft/world/level/entity/EntityTypeTest;Lnet/minecraft/util/AbortableIterationConsumer;)V +MD: net/minecraft/world/level/entity/EntityPersistentStorage/close ()V net/minecraft/world/level/entity/EntityPersistentStorage/close ()V +MD: net/minecraft/world/level/entity/EntityPersistentStorage/m_141930_ (Lnet/minecraft/world/level/ChunkPos;)Ljava/util/concurrent/CompletableFuture; net/minecraft/world/level/entity/EntityPersistentStorage/loadEntities (Lnet/minecraft/world/level/ChunkPos;)Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/world/level/entity/EntityPersistentStorage/m_141971_ (Lnet/minecraft/world/level/entity/ChunkEntities;)V net/minecraft/world/level/entity/EntityPersistentStorage/storeEntities (Lnet/minecraft/world/level/entity/ChunkEntities;)V +MD: net/minecraft/world/level/entity/EntityPersistentStorage/m_182219_ (Z)V net/minecraft/world/level/entity/EntityPersistentStorage/flush (Z)V +MD: net/minecraft/world/level/entity/EntitySection/ ()V net/minecraft/world/level/entity/EntitySection/ ()V +MD: net/minecraft/world/level/entity/EntitySection/ (Ljava/lang/Class;Lnet/minecraft/world/level/entity/Visibility;)V net/minecraft/world/level/entity/EntitySection/ (Ljava/lang/Class;Lnet/minecraft/world/level/entity/Visibility;)V +MD: net/minecraft/world/level/entity/EntitySection/m_156833_ ()Z net/minecraft/world/level/entity/EntitySection/isEmpty ()Z +MD: net/minecraft/world/level/entity/EntitySection/m_156838_ (Lnet/minecraft/world/level/entity/Visibility;)Lnet/minecraft/world/level/entity/Visibility; net/minecraft/world/level/entity/EntitySection/updateChunkStatus (Lnet/minecraft/world/level/entity/Visibility;)Lnet/minecraft/world/level/entity/Visibility; +MD: net/minecraft/world/level/entity/EntitySection/m_156845_ ()Ljava/util/stream/Stream; net/minecraft/world/level/entity/EntitySection/getEntities ()Ljava/util/stream/Stream; +MD: net/minecraft/world/level/entity/EntitySection/m_156848_ ()Lnet/minecraft/world/level/entity/Visibility; net/minecraft/world/level/entity/EntitySection/getStatus ()Lnet/minecraft/world/level/entity/Visibility; +MD: net/minecraft/world/level/entity/EntitySection/m_156849_ ()I net/minecraft/world/level/entity/EntitySection/size ()I +MD: net/minecraft/world/level/entity/EntitySection/m_188346_ (Lnet/minecraft/world/level/entity/EntityAccess;)V net/minecraft/world/level/entity/EntitySection/add (Lnet/minecraft/world/level/entity/EntityAccess;)V +MD: net/minecraft/world/level/entity/EntitySection/m_188348_ (Lnet/minecraft/world/level/entity/EntityTypeTest;Lnet/minecraft/world/phys/AABB;Lnet/minecraft/util/AbortableIterationConsumer;)Lnet/minecraft/util/AbortableIterationConsumer$Continuation; net/minecraft/world/level/entity/EntitySection/getEntities (Lnet/minecraft/world/level/entity/EntityTypeTest;Lnet/minecraft/world/phys/AABB;Lnet/minecraft/util/AbortableIterationConsumer;)Lnet/minecraft/util/AbortableIterationConsumer$Continuation; +MD: net/minecraft/world/level/entity/EntitySection/m_188355_ (Lnet/minecraft/world/level/entity/EntityAccess;)Z net/minecraft/world/level/entity/EntitySection/remove (Lnet/minecraft/world/level/entity/EntityAccess;)Z +MD: net/minecraft/world/level/entity/EntitySection/m_260830_ (Lnet/minecraft/world/phys/AABB;Lnet/minecraft/util/AbortableIterationConsumer;)Lnet/minecraft/util/AbortableIterationConsumer$Continuation; net/minecraft/world/level/entity/EntitySection/getEntities (Lnet/minecraft/world/phys/AABB;Lnet/minecraft/util/AbortableIterationConsumer;)Lnet/minecraft/util/AbortableIterationConsumer$Continuation; +MD: net/minecraft/world/level/entity/EntitySectionStorage/ (Ljava/lang/Class;Lit/unimi/dsi/fastutil/longs/Long2ObjectFunction;)V net/minecraft/world/level/entity/EntitySectionStorage/ (Ljava/lang/Class;Lit/unimi/dsi/fastutil/longs/Long2ObjectFunction;)V +MD: net/minecraft/world/level/entity/EntitySectionStorage/m_156857_ ()Lit/unimi/dsi/fastutil/longs/LongSet; net/minecraft/world/level/entity/EntitySectionStorage/getAllChunksWithExistingSections ()Lit/unimi/dsi/fastutil/longs/LongSet; +MD: net/minecraft/world/level/entity/EntitySectionStorage/m_156858_ (II)Lit/unimi/dsi/fastutil/longs/LongSortedSet; net/minecraft/world/level/entity/EntitySectionStorage/getChunkSections (II)Lit/unimi/dsi/fastutil/longs/LongSortedSet; +MD: net/minecraft/world/level/entity/EntitySectionStorage/m_156861_ (J)Ljava/util/stream/LongStream; net/minecraft/world/level/entity/EntitySectionStorage/getExistingSectionPositionsInChunk (J)Ljava/util/stream/LongStream; +MD: net/minecraft/world/level/entity/EntitySectionStorage/m_156884_ (Lit/unimi/dsi/fastutil/longs/LongSet;J)V net/minecraft/world/level/entity/EntitySectionStorage/lambda$getAllChunksWithExistingSections$0 (Lit/unimi/dsi/fastutil/longs/LongSet;J)V +MD: net/minecraft/world/level/entity/EntitySectionStorage/m_156887_ ()I net/minecraft/world/level/entity/EntitySectionStorage/count ()I +MD: net/minecraft/world/level/entity/EntitySectionStorage/m_156888_ (J)Ljava/util/stream/Stream; net/minecraft/world/level/entity/EntitySectionStorage/getExistingSectionsInChunk (J)Ljava/util/stream/Stream; +MD: net/minecraft/world/level/entity/EntitySectionStorage/m_156893_ (J)Lnet/minecraft/world/level/entity/EntitySection; net/minecraft/world/level/entity/EntitySectionStorage/getOrCreateSection (J)Lnet/minecraft/world/level/entity/EntitySection; +MD: net/minecraft/world/level/entity/EntitySectionStorage/m_156895_ (J)Lnet/minecraft/world/level/entity/EntitySection; net/minecraft/world/level/entity/EntitySectionStorage/getSection (J)Lnet/minecraft/world/level/entity/EntitySection; +MD: net/minecraft/world/level/entity/EntitySectionStorage/m_156897_ (J)V net/minecraft/world/level/entity/EntitySectionStorage/remove (J)V +MD: net/minecraft/world/level/entity/EntitySectionStorage/m_156899_ (J)J net/minecraft/world/level/entity/EntitySectionStorage/getChunkKeyFromSectionKey (J)J +MD: net/minecraft/world/level/entity/EntitySectionStorage/m_156901_ (J)Lnet/minecraft/world/level/entity/EntitySection; net/minecraft/world/level/entity/EntitySectionStorage/createSection (J)Lnet/minecraft/world/level/entity/EntitySection; +MD: net/minecraft/world/level/entity/EntitySectionStorage/m_188362_ (Lnet/minecraft/world/phys/AABB;Lnet/minecraft/util/AbortableIterationConsumer;)V net/minecraft/world/level/entity/EntitySectionStorage/forEachAccessibleNonEmptySection (Lnet/minecraft/world/phys/AABB;Lnet/minecraft/util/AbortableIterationConsumer;)V +MD: net/minecraft/world/level/entity/EntitySectionStorage/m_260794_ (Lnet/minecraft/world/phys/AABB;Lnet/minecraft/util/AbortableIterationConsumer;Lnet/minecraft/world/level/entity/EntitySection;)Lnet/minecraft/util/AbortableIterationConsumer$Continuation; net/minecraft/world/level/entity/EntitySectionStorage/lambda$getEntities$1 (Lnet/minecraft/world/phys/AABB;Lnet/minecraft/util/AbortableIterationConsumer;Lnet/minecraft/world/level/entity/EntitySection;)Lnet/minecraft/util/AbortableIterationConsumer$Continuation; +MD: net/minecraft/world/level/entity/EntitySectionStorage/m_260795_ (Lnet/minecraft/world/level/entity/EntityTypeTest;Lnet/minecraft/world/phys/AABB;Lnet/minecraft/util/AbortableIterationConsumer;Lnet/minecraft/world/level/entity/EntitySection;)Lnet/minecraft/util/AbortableIterationConsumer$Continuation; net/minecraft/world/level/entity/EntitySectionStorage/lambda$getEntities$2 (Lnet/minecraft/world/level/entity/EntityTypeTest;Lnet/minecraft/world/phys/AABB;Lnet/minecraft/util/AbortableIterationConsumer;Lnet/minecraft/world/level/entity/EntitySection;)Lnet/minecraft/util/AbortableIterationConsumer$Continuation; +MD: net/minecraft/world/level/entity/EntitySectionStorage/m_261111_ (Lnet/minecraft/world/phys/AABB;Lnet/minecraft/util/AbortableIterationConsumer;)V net/minecraft/world/level/entity/EntitySectionStorage/getEntities (Lnet/minecraft/world/phys/AABB;Lnet/minecraft/util/AbortableIterationConsumer;)V +MD: net/minecraft/world/level/entity/EntitySectionStorage/m_261191_ (Lnet/minecraft/world/level/entity/EntityTypeTest;Lnet/minecraft/world/phys/AABB;Lnet/minecraft/util/AbortableIterationConsumer;)V net/minecraft/world/level/entity/EntitySectionStorage/getEntities (Lnet/minecraft/world/level/entity/EntityTypeTest;Lnet/minecraft/world/phys/AABB;Lnet/minecraft/util/AbortableIterationConsumer;)V +MD: net/minecraft/world/level/entity/EntityTickList/ ()V net/minecraft/world/level/entity/EntityTickList/ ()V +MD: net/minecraft/world/level/entity/EntityTickList/m_156907_ ()V net/minecraft/world/level/entity/EntityTickList/ensureActiveIsNotIterated ()V +MD: net/minecraft/world/level/entity/EntityTickList/m_156908_ (Lnet/minecraft/world/entity/Entity;)V net/minecraft/world/level/entity/EntityTickList/add (Lnet/minecraft/world/entity/Entity;)V +MD: net/minecraft/world/level/entity/EntityTickList/m_156910_ (Ljava/util/function/Consumer;)V net/minecraft/world/level/entity/EntityTickList/forEach (Ljava/util/function/Consumer;)V +MD: net/minecraft/world/level/entity/EntityTickList/m_156912_ (Lnet/minecraft/world/entity/Entity;)V net/minecraft/world/level/entity/EntityTickList/remove (Lnet/minecraft/world/entity/Entity;)V +MD: net/minecraft/world/level/entity/EntityTickList/m_156914_ (Lnet/minecraft/world/entity/Entity;)Z net/minecraft/world/level/entity/EntityTickList/contains (Lnet/minecraft/world/entity/Entity;)Z +MD: net/minecraft/world/level/entity/EntityTypeTest/m_141992_ (Ljava/lang/Object;)Ljava/lang/Object; net/minecraft/world/level/entity/EntityTypeTest/tryCast (Ljava/lang/Object;)Ljava/lang/Object; +MD: net/minecraft/world/level/entity/EntityTypeTest/m_142225_ ()Ljava/lang/Class; net/minecraft/world/level/entity/EntityTypeTest/getBaseClass ()Ljava/lang/Class; +MD: net/minecraft/world/level/entity/EntityTypeTest/m_156916_ (Ljava/lang/Class;)Lnet/minecraft/world/level/entity/EntityTypeTest; net/minecraft/world/level/entity/EntityTypeTest/forClass (Ljava/lang/Class;)Lnet/minecraft/world/level/entity/EntityTypeTest; +MD: net/minecraft/world/level/entity/EntityTypeTest$1/ (Ljava/lang/Class;)V net/minecraft/world/level/entity/EntityTypeTest$1/ (Ljava/lang/Class;)V +MD: net/minecraft/world/level/entity/EntityTypeTest$1/m_141992_ (Ljava/lang/Object;)Ljava/lang/Object; net/minecraft/world/level/entity/EntityTypeTest$1/tryCast (Ljava/lang/Object;)Ljava/lang/Object; +MD: net/minecraft/world/level/entity/EntityTypeTest$1/m_142225_ ()Ljava/lang/Class; net/minecraft/world/level/entity/EntityTypeTest$1/getBaseClass ()Ljava/lang/Class; +MD: net/minecraft/world/level/entity/LevelCallback/m_141981_ (Ljava/lang/Object;)V net/minecraft/world/level/entity/LevelCallback/onTrackingEnd (Ljava/lang/Object;)V +MD: net/minecraft/world/level/entity/LevelCallback/m_141983_ (Ljava/lang/Object;)V net/minecraft/world/level/entity/LevelCallback/onTickingEnd (Ljava/lang/Object;)V +MD: net/minecraft/world/level/entity/LevelCallback/m_141985_ (Ljava/lang/Object;)V net/minecraft/world/level/entity/LevelCallback/onTrackingStart (Ljava/lang/Object;)V +MD: net/minecraft/world/level/entity/LevelCallback/m_141986_ (Ljava/lang/Object;)V net/minecraft/world/level/entity/LevelCallback/onDestroyed (Ljava/lang/Object;)V +MD: net/minecraft/world/level/entity/LevelCallback/m_141987_ (Ljava/lang/Object;)V net/minecraft/world/level/entity/LevelCallback/onTickingStart (Ljava/lang/Object;)V +MD: net/minecraft/world/level/entity/LevelCallback/m_141989_ (Ljava/lang/Object;)V net/minecraft/world/level/entity/LevelCallback/onCreated (Ljava/lang/Object;)V +MD: net/minecraft/world/level/entity/LevelCallback/m_214006_ (Ljava/lang/Object;)V net/minecraft/world/level/entity/LevelCallback/onSectionChange (Ljava/lang/Object;)V +MD: net/minecraft/world/level/entity/LevelEntityGetter/m_142137_ (Lnet/minecraft/world/level/entity/EntityTypeTest;Lnet/minecraft/world/phys/AABB;Lnet/minecraft/util/AbortableIterationConsumer;)V net/minecraft/world/level/entity/LevelEntityGetter/get (Lnet/minecraft/world/level/entity/EntityTypeTest;Lnet/minecraft/world/phys/AABB;Lnet/minecraft/util/AbortableIterationConsumer;)V +MD: net/minecraft/world/level/entity/LevelEntityGetter/m_142232_ (Lnet/minecraft/world/phys/AABB;Ljava/util/function/Consumer;)V net/minecraft/world/level/entity/LevelEntityGetter/get (Lnet/minecraft/world/phys/AABB;Ljava/util/function/Consumer;)V +MD: net/minecraft/world/level/entity/LevelEntityGetter/m_142273_ ()Ljava/lang/Iterable; net/minecraft/world/level/entity/LevelEntityGetter/getAll ()Ljava/lang/Iterable; +MD: net/minecraft/world/level/entity/LevelEntityGetter/m_142597_ (I)Lnet/minecraft/world/level/entity/EntityAccess; net/minecraft/world/level/entity/LevelEntityGetter/get (I)Lnet/minecraft/world/level/entity/EntityAccess; +MD: net/minecraft/world/level/entity/LevelEntityGetter/m_142690_ (Lnet/minecraft/world/level/entity/EntityTypeTest;Lnet/minecraft/util/AbortableIterationConsumer;)V net/minecraft/world/level/entity/LevelEntityGetter/get (Lnet/minecraft/world/level/entity/EntityTypeTest;Lnet/minecraft/util/AbortableIterationConsumer;)V +MD: net/minecraft/world/level/entity/LevelEntityGetter/m_142694_ (Ljava/util/UUID;)Lnet/minecraft/world/level/entity/EntityAccess; net/minecraft/world/level/entity/LevelEntityGetter/get (Ljava/util/UUID;)Lnet/minecraft/world/level/entity/EntityAccess; +MD: net/minecraft/world/level/entity/LevelEntityGetterAdapter/ (Lnet/minecraft/world/level/entity/EntityLookup;Lnet/minecraft/world/level/entity/EntitySectionStorage;)V net/minecraft/world/level/entity/LevelEntityGetterAdapter/ (Lnet/minecraft/world/level/entity/EntityLookup;Lnet/minecraft/world/level/entity/EntitySectionStorage;)V +MD: net/minecraft/world/level/entity/LevelEntityGetterAdapter/m_142137_ (Lnet/minecraft/world/level/entity/EntityTypeTest;Lnet/minecraft/world/phys/AABB;Lnet/minecraft/util/AbortableIterationConsumer;)V net/minecraft/world/level/entity/LevelEntityGetterAdapter/get (Lnet/minecraft/world/level/entity/EntityTypeTest;Lnet/minecraft/world/phys/AABB;Lnet/minecraft/util/AbortableIterationConsumer;)V +MD: net/minecraft/world/level/entity/LevelEntityGetterAdapter/m_142232_ (Lnet/minecraft/world/phys/AABB;Ljava/util/function/Consumer;)V net/minecraft/world/level/entity/LevelEntityGetterAdapter/get (Lnet/minecraft/world/phys/AABB;Ljava/util/function/Consumer;)V +MD: net/minecraft/world/level/entity/LevelEntityGetterAdapter/m_142273_ ()Ljava/lang/Iterable; net/minecraft/world/level/entity/LevelEntityGetterAdapter/getAll ()Ljava/lang/Iterable; +MD: net/minecraft/world/level/entity/LevelEntityGetterAdapter/m_142597_ (I)Lnet/minecraft/world/level/entity/EntityAccess; net/minecraft/world/level/entity/LevelEntityGetterAdapter/get (I)Lnet/minecraft/world/level/entity/EntityAccess; +MD: net/minecraft/world/level/entity/LevelEntityGetterAdapter/m_142690_ (Lnet/minecraft/world/level/entity/EntityTypeTest;Lnet/minecraft/util/AbortableIterationConsumer;)V net/minecraft/world/level/entity/LevelEntityGetterAdapter/get (Lnet/minecraft/world/level/entity/EntityTypeTest;Lnet/minecraft/util/AbortableIterationConsumer;)V +MD: net/minecraft/world/level/entity/LevelEntityGetterAdapter/m_142694_ (Ljava/util/UUID;)Lnet/minecraft/world/level/entity/EntityAccess; net/minecraft/world/level/entity/LevelEntityGetterAdapter/get (Ljava/util/UUID;)Lnet/minecraft/world/level/entity/EntityAccess; +MD: net/minecraft/world/level/entity/PersistentEntitySectionManager/ ()V net/minecraft/world/level/entity/PersistentEntitySectionManager/ ()V +MD: net/minecraft/world/level/entity/PersistentEntitySectionManager/ (Ljava/lang/Class;Lnet/minecraft/world/level/entity/LevelCallback;Lnet/minecraft/world/level/entity/EntityPersistentStorage;)V net/minecraft/world/level/entity/PersistentEntitySectionManager/ (Ljava/lang/Class;Lnet/minecraft/world/level/entity/LevelCallback;Lnet/minecraft/world/level/entity/EntityPersistentStorage;)V +MD: net/minecraft/world/level/entity/PersistentEntitySectionManager/close ()V net/minecraft/world/level/entity/PersistentEntitySectionManager/close ()V +MD: net/minecraft/world/level/entity/PersistentEntitySectionManager/m_157506_ ()V net/minecraft/world/level/entity/PersistentEntitySectionManager/tick ()V +MD: net/minecraft/world/level/entity/PersistentEntitySectionManager/m_157507_ (J)Z net/minecraft/world/level/entity/PersistentEntitySectionManager/areEntitiesLoaded (J)Z +MD: net/minecraft/world/level/entity/PersistentEntitySectionManager/m_157509_ (JLnet/minecraft/world/level/entity/EntitySection;)V net/minecraft/world/level/entity/PersistentEntitySectionManager/removeSectionIfEmpty (JLnet/minecraft/world/level/entity/EntitySection;)V +MD: net/minecraft/world/level/entity/PersistentEntitySectionManager/m_157512_ (JLjava/util/function/Consumer;)Z net/minecraft/world/level/entity/PersistentEntitySectionManager/storeChunkSections (JLjava/util/function/Consumer;)Z +MD: net/minecraft/world/level/entity/PersistentEntitySectionManager/m_157515_ (Lnet/minecraft/util/CsvOutput;J)V net/minecraft/world/level/entity/PersistentEntitySectionManager/lambda$dumpSections$17 (Lnet/minecraft/util/CsvOutput;J)V +MD: net/minecraft/world/level/entity/PersistentEntitySectionManager/m_157518_ (Lnet/minecraft/util/CsvOutput;Lnet/minecraft/world/level/entity/PersistentEntitySectionManager$ChunkLoadStatus;J)V net/minecraft/world/level/entity/PersistentEntitySectionManager/lambda$dumpSections$16 (Lnet/minecraft/util/CsvOutput;Lnet/minecraft/world/level/entity/PersistentEntitySectionManager$ChunkLoadStatus;J)V +MD: net/minecraft/world/level/entity/PersistentEntitySectionManager/m_157527_ (Lnet/minecraft/world/level/ChunkPos;Lnet/minecraft/world/level/entity/Visibility;)V net/minecraft/world/level/entity/PersistentEntitySectionManager/updateChunkStatus (Lnet/minecraft/world/level/ChunkPos;Lnet/minecraft/world/level/entity/Visibility;)V +MD: net/minecraft/world/level/entity/PersistentEntitySectionManager/m_157530_ (Lnet/minecraft/world/level/ChunkPos;Ljava/lang/Throwable;)Ljava/lang/Void; net/minecraft/world/level/entity/PersistentEntitySectionManager/lambda$requestChunkLoad$8 (Lnet/minecraft/world/level/ChunkPos;Ljava/lang/Throwable;)Ljava/lang/Void; +MD: net/minecraft/world/level/entity/PersistentEntitySectionManager/m_157533_ (Lnet/minecraft/world/level/entity/EntityAccess;)Z net/minecraft/world/level/entity/PersistentEntitySectionManager/addNewEntity (Lnet/minecraft/world/level/entity/EntityAccess;)Z +MD: net/minecraft/world/level/entity/PersistentEntitySectionManager/m_157535_ (Lnet/minecraft/world/level/entity/EntityAccess;Lnet/minecraft/world/level/entity/Visibility;)Lnet/minecraft/world/level/entity/Visibility; net/minecraft/world/level/entity/PersistentEntitySectionManager/getEffectiveStatus (Lnet/minecraft/world/level/entity/EntityAccess;Lnet/minecraft/world/level/entity/Visibility;)Lnet/minecraft/world/level/entity/Visibility; +MD: net/minecraft/world/level/entity/PersistentEntitySectionManager/m_157538_ (Lnet/minecraft/world/level/entity/EntityAccess;Z)Z net/minecraft/world/level/entity/PersistentEntitySectionManager/addEntity (Lnet/minecraft/world/level/entity/EntityAccess;Z)Z +MD: net/minecraft/world/level/entity/PersistentEntitySectionManager/m_157541_ (Lnet/minecraft/world/level/entity/EntitySection;)Ljava/util/stream/Stream; net/minecraft/world/level/entity/PersistentEntitySectionManager/lambda$storeChunkSections$7 (Lnet/minecraft/world/level/entity/EntitySection;)Ljava/util/stream/Stream; +MD: net/minecraft/world/level/entity/PersistentEntitySectionManager/m_157543_ (Lnet/minecraft/world/level/entity/Visibility;Lnet/minecraft/world/level/entity/EntitySection;)V net/minecraft/world/level/entity/PersistentEntitySectionManager/lambda$updateChunkStatus$6 (Lnet/minecraft/world/level/entity/Visibility;Lnet/minecraft/world/level/entity/EntitySection;)V +MD: net/minecraft/world/level/entity/PersistentEntitySectionManager/m_157548_ (Ljava/io/Writer;)V net/minecraft/world/level/entity/PersistentEntitySectionManager/dumpSections (Ljava/io/Writer;)V +MD: net/minecraft/world/level/entity/PersistentEntitySectionManager/m_157550_ (Ljava/util/UUID;)Z net/minecraft/world/level/entity/PersistentEntitySectionManager/isLoaded (Ljava/util/UUID;)Z +MD: net/minecraft/world/level/entity/PersistentEntitySectionManager/m_157552_ (Ljava/util/stream/Stream;)V net/minecraft/world/level/entity/PersistentEntitySectionManager/addLegacyChunkEntities (Ljava/util/stream/Stream;)V +MD: net/minecraft/world/level/entity/PersistentEntitySectionManager/m_157554_ ()V net/minecraft/world/level/entity/PersistentEntitySectionManager/autoSave ()V +MD: net/minecraft/world/level/entity/PersistentEntitySectionManager/m_157555_ (J)V net/minecraft/world/level/entity/PersistentEntitySectionManager/ensureChunkQueuedForLoad (J)V +MD: net/minecraft/world/level/entity/PersistentEntitySectionManager/m_157557_ (Lnet/minecraft/world/level/entity/EntityAccess;)Z net/minecraft/world/level/entity/PersistentEntitySectionManager/addEntityUuid (Lnet/minecraft/world/level/entity/EntityAccess;)Z +MD: net/minecraft/world/level/entity/PersistentEntitySectionManager/m_157559_ (Ljava/util/stream/Stream;)V net/minecraft/world/level/entity/PersistentEntitySectionManager/addWorldGenChunkEntities (Ljava/util/stream/Stream;)V +MD: net/minecraft/world/level/entity/PersistentEntitySectionManager/m_157561_ ()V net/minecraft/world/level/entity/PersistentEntitySectionManager/saveAll ()V +MD: net/minecraft/world/level/entity/PersistentEntitySectionManager/m_157562_ (J)V net/minecraft/world/level/entity/PersistentEntitySectionManager/requestChunkLoad (J)V +MD: net/minecraft/world/level/entity/PersistentEntitySectionManager/m_157564_ (Lnet/minecraft/world/level/entity/EntityAccess;)V net/minecraft/world/level/entity/PersistentEntitySectionManager/startTicking (Lnet/minecraft/world/level/entity/EntityAccess;)V +MD: net/minecraft/world/level/entity/PersistentEntitySectionManager/m_157567_ ()Lnet/minecraft/world/level/entity/LevelEntityGetter; net/minecraft/world/level/entity/PersistentEntitySectionManager/getEntityGetter ()Lnet/minecraft/world/level/entity/LevelEntityGetter; +MD: net/minecraft/world/level/entity/PersistentEntitySectionManager/m_157568_ (J)Z net/minecraft/world/level/entity/PersistentEntitySectionManager/processChunkUnload (J)Z +MD: net/minecraft/world/level/entity/PersistentEntitySectionManager/m_157570_ (Lnet/minecraft/world/level/entity/EntityAccess;)V net/minecraft/world/level/entity/PersistentEntitySectionManager/stopTicking (Lnet/minecraft/world/level/entity/EntityAccess;)V +MD: net/minecraft/world/level/entity/PersistentEntitySectionManager/m_157572_ ()Ljava/lang/String; net/minecraft/world/level/entity/PersistentEntitySectionManager/gatherStats ()Ljava/lang/String; +MD: net/minecraft/world/level/entity/PersistentEntitySectionManager/m_157573_ (J)Z net/minecraft/world/level/entity/PersistentEntitySectionManager/lambda$saveAll$15 (J)Z +MD: net/minecraft/world/level/entity/PersistentEntitySectionManager/m_157575_ (Lnet/minecraft/world/level/entity/EntityAccess;)V net/minecraft/world/level/entity/PersistentEntitySectionManager/startTracking (Lnet/minecraft/world/level/entity/EntityAccess;)V +MD: net/minecraft/world/level/entity/PersistentEntitySectionManager/m_157577_ ()V net/minecraft/world/level/entity/PersistentEntitySectionManager/processUnloads ()V +MD: net/minecraft/world/level/entity/PersistentEntitySectionManager/m_157578_ (J)V net/minecraft/world/level/entity/PersistentEntitySectionManager/lambda$autoSave$13 (J)V +MD: net/minecraft/world/level/entity/PersistentEntitySectionManager/m_157580_ (Lnet/minecraft/world/level/entity/EntityAccess;)V net/minecraft/world/level/entity/PersistentEntitySectionManager/stopTracking (Lnet/minecraft/world/level/entity/EntityAccess;)V +MD: net/minecraft/world/level/entity/PersistentEntitySectionManager/m_157582_ ()V net/minecraft/world/level/entity/PersistentEntitySectionManager/processPendingLoads ()V +MD: net/minecraft/world/level/entity/PersistentEntitySectionManager/m_157583_ (J)Z net/minecraft/world/level/entity/PersistentEntitySectionManager/lambda$processUnloads$10 (J)Z +MD: net/minecraft/world/level/entity/PersistentEntitySectionManager/m_157585_ (Lnet/minecraft/world/level/entity/EntityAccess;)V net/minecraft/world/level/entity/PersistentEntitySectionManager/unloadEntity (Lnet/minecraft/world/level/entity/EntityAccess;)V +MD: net/minecraft/world/level/entity/PersistentEntitySectionManager/m_157587_ ()Lit/unimi/dsi/fastutil/longs/LongSet; net/minecraft/world/level/entity/PersistentEntitySectionManager/getAllChunksToSave ()Lit/unimi/dsi/fastutil/longs/LongSet; +MD: net/minecraft/world/level/entity/PersistentEntitySectionManager/m_157588_ (Lnet/minecraft/world/level/entity/EntityAccess;)V net/minecraft/world/level/entity/PersistentEntitySectionManager/lambda$saveAll$14 (Lnet/minecraft/world/level/entity/EntityAccess;)V +MD: net/minecraft/world/level/entity/PersistentEntitySectionManager/m_157590_ (Lnet/minecraft/world/level/entity/EntityAccess;)V net/minecraft/world/level/entity/PersistentEntitySectionManager/lambda$autoSave$12 (Lnet/minecraft/world/level/entity/EntityAccess;)V +MD: net/minecraft/world/level/entity/PersistentEntitySectionManager/m_157592_ (Lnet/minecraft/world/level/entity/EntityAccess;)V net/minecraft/world/level/entity/PersistentEntitySectionManager/lambda$processPendingLoads$11 (Lnet/minecraft/world/level/entity/EntityAccess;)V +MD: net/minecraft/world/level/entity/PersistentEntitySectionManager/m_157594_ (Lnet/minecraft/world/level/entity/EntityAccess;)V net/minecraft/world/level/entity/PersistentEntitySectionManager/lambda$processChunkUnload$9 (Lnet/minecraft/world/level/entity/EntityAccess;)V +MD: net/minecraft/world/level/entity/PersistentEntitySectionManager/m_157596_ (Lnet/minecraft/world/level/entity/EntityAccess;)Z net/minecraft/world/level/entity/PersistentEntitySectionManager/lambda$updateChunkStatus$5 (Lnet/minecraft/world/level/entity/EntityAccess;)Z +MD: net/minecraft/world/level/entity/PersistentEntitySectionManager/m_157598_ (Lnet/minecraft/world/level/entity/EntityAccess;)Z net/minecraft/world/level/entity/PersistentEntitySectionManager/lambda$updateChunkStatus$4 (Lnet/minecraft/world/level/entity/EntityAccess;)Z +MD: net/minecraft/world/level/entity/PersistentEntitySectionManager/m_157600_ (Lnet/minecraft/world/level/entity/EntityAccess;)Z net/minecraft/world/level/entity/PersistentEntitySectionManager/lambda$updateChunkStatus$3 (Lnet/minecraft/world/level/entity/EntityAccess;)Z +MD: net/minecraft/world/level/entity/PersistentEntitySectionManager/m_157602_ (Lnet/minecraft/world/level/entity/EntityAccess;)Z net/minecraft/world/level/entity/PersistentEntitySectionManager/lambda$updateChunkStatus$2 (Lnet/minecraft/world/level/entity/EntityAccess;)Z +MD: net/minecraft/world/level/entity/PersistentEntitySectionManager/m_157604_ (Lnet/minecraft/world/level/entity/EntityAccess;)V net/minecraft/world/level/entity/PersistentEntitySectionManager/lambda$addWorldGenChunkEntities$1 (Lnet/minecraft/world/level/entity/EntityAccess;)V +MD: net/minecraft/world/level/entity/PersistentEntitySectionManager/m_157606_ (Lnet/minecraft/world/level/entity/EntityAccess;)V net/minecraft/world/level/entity/PersistentEntitySectionManager/lambda$addLegacyChunkEntities$0 (Lnet/minecraft/world/level/entity/EntityAccess;)V +MD: net/minecraft/world/level/entity/PersistentEntitySectionManager/m_202165_ (Lnet/minecraft/world/level/ChunkPos;)Z net/minecraft/world/level/entity/PersistentEntitySectionManager/canPositionTick (Lnet/minecraft/world/level/ChunkPos;)Z +MD: net/minecraft/world/level/entity/PersistentEntitySectionManager/m_202167_ (Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/level/entity/PersistentEntitySectionManager/canPositionTick (Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/level/entity/PersistentEntitySectionManager/m_287207_ (Lnet/minecraft/world/level/ChunkPos;Lnet/minecraft/server/level/FullChunkStatus;)V net/minecraft/world/level/entity/PersistentEntitySectionManager/updateChunkStatus (Lnet/minecraft/world/level/ChunkPos;Lnet/minecraft/server/level/FullChunkStatus;)V +MD: net/minecraft/world/level/entity/PersistentEntitySectionManager$Callback/ (Lnet/minecraft/world/level/entity/PersistentEntitySectionManager;Lnet/minecraft/world/level/entity/EntityAccess;JLnet/minecraft/world/level/entity/EntitySection;)V net/minecraft/world/level/entity/PersistentEntitySectionManager$Callback/ (Lnet/minecraft/world/level/entity/PersistentEntitySectionManager;Lnet/minecraft/world/level/entity/EntityAccess;JLnet/minecraft/world/level/entity/EntitySection;)V +MD: net/minecraft/world/level/entity/PersistentEntitySectionManager$Callback/m_142044_ ()V net/minecraft/world/level/entity/PersistentEntitySectionManager$Callback/onMove ()V +MD: net/minecraft/world/level/entity/PersistentEntitySectionManager$Callback/m_142472_ (Lnet/minecraft/world/entity/Entity$RemovalReason;)V net/minecraft/world/level/entity/PersistentEntitySectionManager$Callback/onRemove (Lnet/minecraft/world/entity/Entity$RemovalReason;)V +MD: net/minecraft/world/level/entity/PersistentEntitySectionManager$Callback/m_157620_ (Lnet/minecraft/world/level/entity/Visibility;Lnet/minecraft/world/level/entity/Visibility;)V net/minecraft/world/level/entity/PersistentEntitySectionManager$Callback/updateStatus (Lnet/minecraft/world/level/entity/Visibility;Lnet/minecraft/world/level/entity/Visibility;)V +MD: net/minecraft/world/level/entity/PersistentEntitySectionManager$ChunkLoadStatus/ ()V net/minecraft/world/level/entity/PersistentEntitySectionManager$ChunkLoadStatus/ ()V +MD: net/minecraft/world/level/entity/PersistentEntitySectionManager$ChunkLoadStatus/ (Ljava/lang/String;I)V net/minecraft/world/level/entity/PersistentEntitySectionManager$ChunkLoadStatus/ (Ljava/lang/String;I)V +MD: net/minecraft/world/level/entity/PersistentEntitySectionManager$ChunkLoadStatus/m_157631_ ()[Lnet/minecraft/world/level/entity/PersistentEntitySectionManager$ChunkLoadStatus; net/minecraft/world/level/entity/PersistentEntitySectionManager$ChunkLoadStatus/$values ()[Lnet/minecraft/world/level/entity/PersistentEntitySectionManager$ChunkLoadStatus; +MD: net/minecraft/world/level/entity/PersistentEntitySectionManager$ChunkLoadStatus/valueOf (Ljava/lang/String;)Lnet/minecraft/world/level/entity/PersistentEntitySectionManager$ChunkLoadStatus; net/minecraft/world/level/entity/PersistentEntitySectionManager$ChunkLoadStatus/valueOf (Ljava/lang/String;)Lnet/minecraft/world/level/entity/PersistentEntitySectionManager$ChunkLoadStatus; +MD: net/minecraft/world/level/entity/PersistentEntitySectionManager$ChunkLoadStatus/values ()[Lnet/minecraft/world/level/entity/PersistentEntitySectionManager$ChunkLoadStatus; net/minecraft/world/level/entity/PersistentEntitySectionManager$ChunkLoadStatus/values ()[Lnet/minecraft/world/level/entity/PersistentEntitySectionManager$ChunkLoadStatus; +MD: net/minecraft/world/level/entity/TransientEntitySectionManager/ ()V net/minecraft/world/level/entity/TransientEntitySectionManager/ ()V +MD: net/minecraft/world/level/entity/TransientEntitySectionManager/ (Ljava/lang/Class;Lnet/minecraft/world/level/entity/LevelCallback;)V net/minecraft/world/level/entity/TransientEntitySectionManager/ (Ljava/lang/Class;Lnet/minecraft/world/level/entity/LevelCallback;)V +MD: net/minecraft/world/level/entity/TransientEntitySectionManager/m_157645_ ()Lnet/minecraft/world/level/entity/LevelEntityGetter; net/minecraft/world/level/entity/TransientEntitySectionManager/getEntityGetter ()Lnet/minecraft/world/level/entity/LevelEntityGetter; +MD: net/minecraft/world/level/entity/TransientEntitySectionManager/m_157646_ (J)Lnet/minecraft/world/level/entity/Visibility; net/minecraft/world/level/entity/TransientEntitySectionManager/lambda$new$0 (J)Lnet/minecraft/world/level/entity/Visibility; +MD: net/minecraft/world/level/entity/TransientEntitySectionManager/m_157648_ (JLnet/minecraft/world/level/entity/EntitySection;)V net/minecraft/world/level/entity/TransientEntitySectionManager/removeSectionIfEmpty (JLnet/minecraft/world/level/entity/EntitySection;)V +MD: net/minecraft/world/level/entity/TransientEntitySectionManager/m_157651_ (Lnet/minecraft/world/level/ChunkPos;)V net/minecraft/world/level/entity/TransientEntitySectionManager/startTicking (Lnet/minecraft/world/level/ChunkPos;)V +MD: net/minecraft/world/level/entity/TransientEntitySectionManager/m_157653_ (Lnet/minecraft/world/level/entity/EntityAccess;)V net/minecraft/world/level/entity/TransientEntitySectionManager/addEntity (Lnet/minecraft/world/level/entity/EntityAccess;)V +MD: net/minecraft/world/level/entity/TransientEntitySectionManager/m_157655_ (Lnet/minecraft/world/level/entity/EntitySection;)V net/minecraft/world/level/entity/TransientEntitySectionManager/lambda$stopTicking$4 (Lnet/minecraft/world/level/entity/EntitySection;)V +MD: net/minecraft/world/level/entity/TransientEntitySectionManager/m_157657_ ()I net/minecraft/world/level/entity/TransientEntitySectionManager/count ()I +MD: net/minecraft/world/level/entity/TransientEntitySectionManager/m_157658_ (Lnet/minecraft/world/level/ChunkPos;)V net/minecraft/world/level/entity/TransientEntitySectionManager/stopTicking (Lnet/minecraft/world/level/ChunkPos;)V +MD: net/minecraft/world/level/entity/TransientEntitySectionManager/m_157660_ (Lnet/minecraft/world/level/entity/EntityAccess;)Z net/minecraft/world/level/entity/TransientEntitySectionManager/lambda$stopTicking$3 (Lnet/minecraft/world/level/entity/EntityAccess;)Z +MD: net/minecraft/world/level/entity/TransientEntitySectionManager/m_157662_ (Lnet/minecraft/world/level/entity/EntitySection;)V net/minecraft/world/level/entity/TransientEntitySectionManager/lambda$startTicking$2 (Lnet/minecraft/world/level/entity/EntitySection;)V +MD: net/minecraft/world/level/entity/TransientEntitySectionManager/m_157664_ ()Ljava/lang/String; net/minecraft/world/level/entity/TransientEntitySectionManager/gatherStats ()Ljava/lang/String; +MD: net/minecraft/world/level/entity/TransientEntitySectionManager/m_157665_ (Lnet/minecraft/world/level/entity/EntityAccess;)Z net/minecraft/world/level/entity/TransientEntitySectionManager/lambda$startTicking$1 (Lnet/minecraft/world/level/entity/EntityAccess;)Z +MD: net/minecraft/world/level/entity/TransientEntitySectionManager$Callback/ (Lnet/minecraft/world/level/entity/TransientEntitySectionManager;Lnet/minecraft/world/level/entity/EntityAccess;JLnet/minecraft/world/level/entity/EntitySection;)V net/minecraft/world/level/entity/TransientEntitySectionManager$Callback/ (Lnet/minecraft/world/level/entity/TransientEntitySectionManager;Lnet/minecraft/world/level/entity/EntityAccess;JLnet/minecraft/world/level/entity/EntitySection;)V +MD: net/minecraft/world/level/entity/TransientEntitySectionManager$Callback/m_142044_ ()V net/minecraft/world/level/entity/TransientEntitySectionManager$Callback/onMove ()V +MD: net/minecraft/world/level/entity/TransientEntitySectionManager$Callback/m_142472_ (Lnet/minecraft/world/entity/Entity$RemovalReason;)V net/minecraft/world/level/entity/TransientEntitySectionManager$Callback/onRemove (Lnet/minecraft/world/entity/Entity$RemovalReason;)V +MD: net/minecraft/world/level/entity/Visibility/ ()V net/minecraft/world/level/entity/Visibility/ ()V +MD: net/minecraft/world/level/entity/Visibility/ (Ljava/lang/String;IZZ)V net/minecraft/world/level/entity/Visibility/ (Ljava/lang/String;IZZ)V +MD: net/minecraft/world/level/entity/Visibility/m_157691_ ()Z net/minecraft/world/level/entity/Visibility/isTicking ()Z +MD: net/minecraft/world/level/entity/Visibility/m_157694_ ()Z net/minecraft/world/level/entity/Visibility/isAccessible ()Z +MD: net/minecraft/world/level/entity/Visibility/m_157695_ ()[Lnet/minecraft/world/level/entity/Visibility; net/minecraft/world/level/entity/Visibility/$values ()[Lnet/minecraft/world/level/entity/Visibility; +MD: net/minecraft/world/level/entity/Visibility/m_287140_ (Lnet/minecraft/server/level/FullChunkStatus;)Lnet/minecraft/world/level/entity/Visibility; net/minecraft/world/level/entity/Visibility/fromFullChunkStatus (Lnet/minecraft/server/level/FullChunkStatus;)Lnet/minecraft/world/level/entity/Visibility; +MD: net/minecraft/world/level/entity/Visibility/valueOf (Ljava/lang/String;)Lnet/minecraft/world/level/entity/Visibility; net/minecraft/world/level/entity/Visibility/valueOf (Ljava/lang/String;)Lnet/minecraft/world/level/entity/Visibility; +MD: net/minecraft/world/level/entity/Visibility/values ()[Lnet/minecraft/world/level/entity/Visibility; net/minecraft/world/level/entity/Visibility/values ()[Lnet/minecraft/world/level/entity/Visibility; +MD: net/minecraft/world/level/gameevent/BlockPositionSource/ ()V net/minecraft/world/level/gameevent/BlockPositionSource/ ()V +MD: net/minecraft/world/level/gameevent/BlockPositionSource/ (Lnet/minecraft/core/BlockPos;)V net/minecraft/world/level/gameevent/BlockPositionSource/ (Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/world/level/gameevent/BlockPositionSource/m_142502_ (Lnet/minecraft/world/level/Level;)Ljava/util/Optional; net/minecraft/world/level/gameevent/BlockPositionSource/getPosition (Lnet/minecraft/world/level/Level;)Ljava/util/Optional; +MD: net/minecraft/world/level/gameevent/BlockPositionSource/m_142510_ ()Lnet/minecraft/world/level/gameevent/PositionSourceType; net/minecraft/world/level/gameevent/BlockPositionSource/getType ()Lnet/minecraft/world/level/gameevent/PositionSourceType; +MD: net/minecraft/world/level/gameevent/BlockPositionSource/m_157709_ (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/world/level/gameevent/BlockPositionSource/lambda$static$1 (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/world/level/gameevent/BlockPositionSource/m_223610_ (Lnet/minecraft/world/level/gameevent/BlockPositionSource;)Lnet/minecraft/core/BlockPos; net/minecraft/world/level/gameevent/BlockPositionSource/lambda$static$0 (Lnet/minecraft/world/level/gameevent/BlockPositionSource;)Lnet/minecraft/core/BlockPos; +MD: net/minecraft/world/level/gameevent/BlockPositionSource$Type/ ()V net/minecraft/world/level/gameevent/BlockPositionSource$Type/ ()V +MD: net/minecraft/world/level/gameevent/BlockPositionSource$Type/m_142235_ (Lnet/minecraft/network/FriendlyByteBuf;Lnet/minecraft/world/level/gameevent/BlockPositionSource;)V net/minecraft/world/level/gameevent/BlockPositionSource$Type/write (Lnet/minecraft/network/FriendlyByteBuf;Lnet/minecraft/world/level/gameevent/BlockPositionSource;)V +MD: net/minecraft/world/level/gameevent/BlockPositionSource$Type/m_142235_ (Lnet/minecraft/network/FriendlyByteBuf;Lnet/minecraft/world/level/gameevent/PositionSource;)V net/minecraft/world/level/gameevent/BlockPositionSource$Type/write (Lnet/minecraft/network/FriendlyByteBuf;Lnet/minecraft/world/level/gameevent/PositionSource;)V +MD: net/minecraft/world/level/gameevent/BlockPositionSource$Type/m_142281_ (Lnet/minecraft/network/FriendlyByteBuf;)Lnet/minecraft/world/level/gameevent/BlockPositionSource; net/minecraft/world/level/gameevent/BlockPositionSource$Type/read (Lnet/minecraft/network/FriendlyByteBuf;)Lnet/minecraft/world/level/gameevent/BlockPositionSource; +MD: net/minecraft/world/level/gameevent/BlockPositionSource$Type/m_142281_ (Lnet/minecraft/network/FriendlyByteBuf;)Lnet/minecraft/world/level/gameevent/PositionSource; net/minecraft/world/level/gameevent/BlockPositionSource$Type/read (Lnet/minecraft/network/FriendlyByteBuf;)Lnet/minecraft/world/level/gameevent/PositionSource; +MD: net/minecraft/world/level/gameevent/BlockPositionSource$Type/m_142341_ ()Lcom/mojang/serialization/Codec; net/minecraft/world/level/gameevent/BlockPositionSource$Type/codec ()Lcom/mojang/serialization/Codec; +MD: net/minecraft/world/level/gameevent/DynamicGameEventListener/ (Lnet/minecraft/world/level/gameevent/GameEventListener;)V net/minecraft/world/level/gameevent/DynamicGameEventListener/ (Lnet/minecraft/world/level/gameevent/GameEventListener;)V +MD: net/minecraft/world/level/gameevent/DynamicGameEventListener/m_223616_ ()Lnet/minecraft/world/level/gameevent/GameEventListener; net/minecraft/world/level/gameevent/DynamicGameEventListener/getListener ()Lnet/minecraft/world/level/gameevent/GameEventListener; +MD: net/minecraft/world/level/gameevent/DynamicGameEventListener/m_223617_ (Lnet/minecraft/server/level/ServerLevel;)V net/minecraft/world/level/gameevent/DynamicGameEventListener/add (Lnet/minecraft/server/level/ServerLevel;)V +MD: net/minecraft/world/level/gameevent/DynamicGameEventListener/m_223619_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/SectionPos;)V net/minecraft/world/level/gameevent/DynamicGameEventListener/lambda$move$3 (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/SectionPos;)V +MD: net/minecraft/world/level/gameevent/DynamicGameEventListener/m_223622_ (Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/SectionPos;Ljava/util/function/Consumer;)V net/minecraft/world/level/gameevent/DynamicGameEventListener/ifChunkExists (Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/SectionPos;Ljava/util/function/Consumer;)V +MD: net/minecraft/world/level/gameevent/DynamicGameEventListener/m_223634_ (Lnet/minecraft/server/level/ServerLevel;)V net/minecraft/world/level/gameevent/DynamicGameEventListener/remove (Lnet/minecraft/server/level/ServerLevel;)V +MD: net/minecraft/world/level/gameevent/DynamicGameEventListener/m_223641_ (Lnet/minecraft/server/level/ServerLevel;)V net/minecraft/world/level/gameevent/DynamicGameEventListener/move (Lnet/minecraft/server/level/ServerLevel;)V +MD: net/minecraft/world/level/gameevent/DynamicGameEventListener/m_245008_ (Lnet/minecraft/world/level/gameevent/GameEventListenerRegistry;)V net/minecraft/world/level/gameevent/DynamicGameEventListener/lambda$move$2 (Lnet/minecraft/world/level/gameevent/GameEventListenerRegistry;)V +MD: net/minecraft/world/level/gameevent/DynamicGameEventListener/m_245009_ (Lnet/minecraft/world/level/gameevent/GameEventListenerRegistry;)V net/minecraft/world/level/gameevent/DynamicGameEventListener/lambda$move$1 (Lnet/minecraft/world/level/gameevent/GameEventListenerRegistry;)V +MD: net/minecraft/world/level/gameevent/DynamicGameEventListener/m_245010_ (Lnet/minecraft/world/level/gameevent/GameEventListenerRegistry;)V net/minecraft/world/level/gameevent/DynamicGameEventListener/lambda$remove$0 (Lnet/minecraft/world/level/gameevent/GameEventListenerRegistry;)V +MD: net/minecraft/world/level/gameevent/EntityPositionSource/ ()V net/minecraft/world/level/gameevent/EntityPositionSource/ ()V +MD: net/minecraft/world/level/gameevent/EntityPositionSource/ (Lnet/minecraft/world/entity/Entity;F)V net/minecraft/world/level/gameevent/EntityPositionSource/ (Lnet/minecraft/world/entity/Entity;F)V +MD: net/minecraft/world/level/gameevent/EntityPositionSource/ (Lcom/mojang/datafixers/util/Either;F)V net/minecraft/world/level/gameevent/EntityPositionSource/ (Lcom/mojang/datafixers/util/Either;F)V +MD: net/minecraft/world/level/gameevent/EntityPositionSource/m_142502_ (Lnet/minecraft/world/level/Level;)Ljava/util/Optional; net/minecraft/world/level/gameevent/EntityPositionSource/getPosition (Lnet/minecraft/world/level/Level;)Ljava/util/Optional; +MD: net/minecraft/world/level/gameevent/EntityPositionSource/m_142510_ ()Lnet/minecraft/world/level/gameevent/PositionSourceType; net/minecraft/world/level/gameevent/EntityPositionSource/getType ()Lnet/minecraft/world/level/gameevent/PositionSourceType; +MD: net/minecraft/world/level/gameevent/EntityPositionSource/m_223653_ (Lnet/minecraft/world/entity/Entity;)V net/minecraft/world/level/gameevent/EntityPositionSource/lambda$resolveEntity$6 (Lnet/minecraft/world/entity/Entity;)V +MD: net/minecraft/world/level/gameevent/EntityPositionSource/m_223655_ (Lnet/minecraft/world/level/Level;Lcom/mojang/datafixers/util/Either;)Ljava/util/Optional; net/minecraft/world/level/gameevent/EntityPositionSource/lambda$resolveEntity$5 (Lnet/minecraft/world/level/Level;Lcom/mojang/datafixers/util/Either;)Ljava/util/Optional; +MD: net/minecraft/world/level/gameevent/EntityPositionSource/m_223658_ (Lnet/minecraft/world/level/Level;Ljava/util/UUID;)Lnet/minecraft/world/entity/Entity; net/minecraft/world/level/gameevent/EntityPositionSource/lambda$resolveEntity$4 (Lnet/minecraft/world/level/Level;Ljava/util/UUID;)Lnet/minecraft/world/entity/Entity; +MD: net/minecraft/world/level/gameevent/EntityPositionSource/m_223661_ (Lcom/mojang/datafixers/util/Either;)Ljava/lang/Integer; net/minecraft/world/level/gameevent/EntityPositionSource/lambda$getId$10 (Lcom/mojang/datafixers/util/Either;)Ljava/lang/Integer; +MD: net/minecraft/world/level/gameevent/EntityPositionSource/m_223665_ (Lnet/minecraft/world/level/gameevent/EntityPositionSource;)Ljava/lang/Float; net/minecraft/world/level/gameevent/EntityPositionSource/lambda$static$0 (Lnet/minecraft/world/level/gameevent/EntityPositionSource;)Ljava/lang/Float; +MD: net/minecraft/world/level/gameevent/EntityPositionSource/m_223667_ (Ljava/lang/Integer;)Ljava/util/UUID; net/minecraft/world/level/gameevent/EntityPositionSource/lambda$getUuid$7 (Ljava/lang/Integer;)Ljava/util/UUID; +MD: net/minecraft/world/level/gameevent/EntityPositionSource/m_223669_ (Ljava/util/UUID;)Ljava/lang/Integer; net/minecraft/world/level/gameevent/EntityPositionSource/lambda$getId$9 (Ljava/util/UUID;)Ljava/lang/Integer; +MD: net/minecraft/world/level/gameevent/EntityPositionSource/m_223671_ (Ljava/util/UUID;Ljava/lang/Float;)Lnet/minecraft/world/level/gameevent/EntityPositionSource; net/minecraft/world/level/gameevent/EntityPositionSource/lambda$static$1 (Ljava/util/UUID;Ljava/lang/Float;)Lnet/minecraft/world/level/gameevent/EntityPositionSource; +MD: net/minecraft/world/level/gameevent/EntityPositionSource/m_223674_ ()Ljava/util/UUID; net/minecraft/world/level/gameevent/EntityPositionSource/getUuid ()Ljava/util/UUID; +MD: net/minecraft/world/level/gameevent/EntityPositionSource/m_223675_ (Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/world/phys/Vec3; net/minecraft/world/level/gameevent/EntityPositionSource/lambda$getPosition$3 (Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/world/phys/Vec3; +MD: net/minecraft/world/level/gameevent/EntityPositionSource/m_223677_ (Lnet/minecraft/world/level/Level;)V net/minecraft/world/level/gameevent/EntityPositionSource/resolveEntity (Lnet/minecraft/world/level/Level;)V +MD: net/minecraft/world/level/gameevent/EntityPositionSource/m_223679_ (Lcom/mojang/datafixers/util/Either;)Ljava/util/UUID; net/minecraft/world/level/gameevent/EntityPositionSource/lambda$getUuid$8 (Lcom/mojang/datafixers/util/Either;)Ljava/util/UUID; +MD: net/minecraft/world/level/gameevent/EntityPositionSource/m_223681_ ()I net/minecraft/world/level/gameevent/EntityPositionSource/getId ()I +MD: net/minecraft/world/level/gameevent/EntityPositionSource/m_252733_ (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/world/level/gameevent/EntityPositionSource/lambda$static$2 (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/world/level/gameevent/EntityPositionSource$Type/ ()V net/minecraft/world/level/gameevent/EntityPositionSource$Type/ ()V +MD: net/minecraft/world/level/gameevent/EntityPositionSource$Type/m_142235_ (Lnet/minecraft/network/FriendlyByteBuf;Lnet/minecraft/world/level/gameevent/EntityPositionSource;)V net/minecraft/world/level/gameevent/EntityPositionSource$Type/write (Lnet/minecraft/network/FriendlyByteBuf;Lnet/minecraft/world/level/gameevent/EntityPositionSource;)V +MD: net/minecraft/world/level/gameevent/EntityPositionSource$Type/m_142235_ (Lnet/minecraft/network/FriendlyByteBuf;Lnet/minecraft/world/level/gameevent/PositionSource;)V net/minecraft/world/level/gameevent/EntityPositionSource$Type/write (Lnet/minecraft/network/FriendlyByteBuf;Lnet/minecraft/world/level/gameevent/PositionSource;)V +MD: net/minecraft/world/level/gameevent/EntityPositionSource$Type/m_142281_ (Lnet/minecraft/network/FriendlyByteBuf;)Lnet/minecraft/world/level/gameevent/EntityPositionSource; net/minecraft/world/level/gameevent/EntityPositionSource$Type/read (Lnet/minecraft/network/FriendlyByteBuf;)Lnet/minecraft/world/level/gameevent/EntityPositionSource; +MD: net/minecraft/world/level/gameevent/EntityPositionSource$Type/m_142281_ (Lnet/minecraft/network/FriendlyByteBuf;)Lnet/minecraft/world/level/gameevent/PositionSource; net/minecraft/world/level/gameevent/EntityPositionSource$Type/read (Lnet/minecraft/network/FriendlyByteBuf;)Lnet/minecraft/world/level/gameevent/PositionSource; +MD: net/minecraft/world/level/gameevent/EntityPositionSource$Type/m_142341_ ()Lcom/mojang/serialization/Codec; net/minecraft/world/level/gameevent/EntityPositionSource$Type/codec ()Lcom/mojang/serialization/Codec; +MD: net/minecraft/world/level/gameevent/EuclideanGameEventListenerRegistry/ (Lnet/minecraft/server/level/ServerLevel;ILnet/minecraft/world/level/gameevent/EuclideanGameEventListenerRegistry$OnEmptyAction;)V net/minecraft/world/level/gameevent/EuclideanGameEventListenerRegistry/ (Lnet/minecraft/server/level/ServerLevel;ILnet/minecraft/world/level/gameevent/EuclideanGameEventListenerRegistry$OnEmptyAction;)V +MD: net/minecraft/world/level/gameevent/EuclideanGameEventListenerRegistry/m_245428_ ()Z net/minecraft/world/level/gameevent/EuclideanGameEventListenerRegistry/isEmpty ()Z +MD: net/minecraft/world/level/gameevent/EuclideanGameEventListenerRegistry/m_245521_ (Lnet/minecraft/world/level/gameevent/GameEvent;Lnet/minecraft/world/phys/Vec3;Lnet/minecraft/world/level/gameevent/GameEvent$Context;Lnet/minecraft/world/level/gameevent/GameEventListenerRegistry$ListenerVisitor;)Z net/minecraft/world/level/gameevent/EuclideanGameEventListenerRegistry/visitInRangeListeners (Lnet/minecraft/world/level/gameevent/GameEvent;Lnet/minecraft/world/phys/Vec3;Lnet/minecraft/world/level/gameevent/GameEvent$Context;Lnet/minecraft/world/level/gameevent/GameEventListenerRegistry$ListenerVisitor;)Z +MD: net/minecraft/world/level/gameevent/EuclideanGameEventListenerRegistry/m_245531_ (Lnet/minecraft/world/level/gameevent/GameEventListener;)V net/minecraft/world/level/gameevent/EuclideanGameEventListenerRegistry/register (Lnet/minecraft/world/level/gameevent/GameEventListener;)V +MD: net/minecraft/world/level/gameevent/EuclideanGameEventListenerRegistry/m_246052_ (Lnet/minecraft/world/level/gameevent/GameEventListener;)V net/minecraft/world/level/gameevent/EuclideanGameEventListenerRegistry/unregister (Lnet/minecraft/world/level/gameevent/GameEventListener;)V +MD: net/minecraft/world/level/gameevent/EuclideanGameEventListenerRegistry/m_247048_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/phys/Vec3;Lnet/minecraft/world/level/gameevent/GameEventListener;)Ljava/util/Optional; net/minecraft/world/level/gameevent/EuclideanGameEventListenerRegistry/getPostableListenerPosition (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/phys/Vec3;Lnet/minecraft/world/level/gameevent/GameEventListener;)Ljava/util/Optional; +MD: net/minecraft/world/level/gameevent/EuclideanGameEventListenerRegistry$OnEmptyAction/m_280077_ (I)V net/minecraft/world/level/gameevent/EuclideanGameEventListenerRegistry$OnEmptyAction/apply (I)V +MD: net/minecraft/world/level/gameevent/GameEvent/ ()V net/minecraft/world/level/gameevent/GameEvent/ ()V +MD: net/minecraft/world/level/gameevent/GameEvent/ (Ljava/lang/String;I)V net/minecraft/world/level/gameevent/GameEvent/ (Ljava/lang/String;I)V +MD: net/minecraft/world/level/gameevent/GameEvent/m_157821_ ()Ljava/lang/String; net/minecraft/world/level/gameevent/GameEvent/getName ()Ljava/lang/String; +MD: net/minecraft/world/level/gameevent/GameEvent/m_157822_ (Ljava/lang/String;)Lnet/minecraft/world/level/gameevent/GameEvent; net/minecraft/world/level/gameevent/GameEvent/register (Ljava/lang/String;)Lnet/minecraft/world/level/gameevent/GameEvent; +MD: net/minecraft/world/level/gameevent/GameEvent/m_157824_ (Ljava/lang/String;I)Lnet/minecraft/world/level/gameevent/GameEvent; net/minecraft/world/level/gameevent/GameEvent/register (Ljava/lang/String;I)Lnet/minecraft/world/level/gameevent/GameEvent; +MD: net/minecraft/world/level/gameevent/GameEvent/m_157827_ ()I net/minecraft/world/level/gameevent/GameEvent/getNotificationRadius ()I +MD: net/minecraft/world/level/gameevent/GameEvent/m_204528_ (Lnet/minecraft/tags/TagKey;)Z net/minecraft/world/level/gameevent/GameEvent/is (Lnet/minecraft/tags/TagKey;)Z +MD: net/minecraft/world/level/gameevent/GameEvent/m_204530_ ()Lnet/minecraft/core/Holder$Reference; net/minecraft/world/level/gameevent/GameEvent/builtInRegistryHolder ()Lnet/minecraft/core/Holder$Reference; +MD: net/minecraft/world/level/gameevent/GameEvent/toString ()Ljava/lang/String; net/minecraft/world/level/gameevent/GameEvent/toString ()Ljava/lang/String; +MD: net/minecraft/world/level/gameevent/GameEvent$Context/ (Lnet/minecraft/world/entity/Entity;Lnet/minecraft/world/level/block/state/BlockState;)V net/minecraft/world/level/gameevent/GameEvent$Context/ (Lnet/minecraft/world/entity/Entity;Lnet/minecraft/world/level/block/state/BlockState;)V +MD: net/minecraft/world/level/gameevent/GameEvent$Context/equals (Ljava/lang/Object;)Z net/minecraft/world/level/gameevent/GameEvent$Context/equals (Ljava/lang/Object;)Z +MD: net/minecraft/world/level/gameevent/GameEvent$Context/f_223711_ ()Lnet/minecraft/world/entity/Entity; net/minecraft/world/level/gameevent/GameEvent$Context/sourceEntity ()Lnet/minecraft/world/entity/Entity; +MD: net/minecraft/world/level/gameevent/GameEvent$Context/f_223712_ ()Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/gameevent/GameEvent$Context/affectedState ()Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/gameevent/GameEvent$Context/hashCode ()I net/minecraft/world/level/gameevent/GameEvent$Context/hashCode ()I +MD: net/minecraft/world/level/gameevent/GameEvent$Context/m_223717_ (Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/world/level/gameevent/GameEvent$Context; net/minecraft/world/level/gameevent/GameEvent$Context/of (Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/world/level/gameevent/GameEvent$Context; +MD: net/minecraft/world/level/gameevent/GameEvent$Context/m_223719_ (Lnet/minecraft/world/entity/Entity;Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/gameevent/GameEvent$Context; net/minecraft/world/level/gameevent/GameEvent$Context/of (Lnet/minecraft/world/entity/Entity;Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/gameevent/GameEvent$Context; +MD: net/minecraft/world/level/gameevent/GameEvent$Context/m_223722_ (Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/gameevent/GameEvent$Context; net/minecraft/world/level/gameevent/GameEvent$Context/of (Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/gameevent/GameEvent$Context; +MD: net/minecraft/world/level/gameevent/GameEvent$Context/toString ()Ljava/lang/String; net/minecraft/world/level/gameevent/GameEvent$Context/toString ()Ljava/lang/String; +MD: net/minecraft/world/level/gameevent/GameEvent$ListenerInfo/ (Lnet/minecraft/world/level/gameevent/GameEvent;Lnet/minecraft/world/phys/Vec3;Lnet/minecraft/world/level/gameevent/GameEvent$Context;Lnet/minecraft/world/level/gameevent/GameEventListener;Lnet/minecraft/world/phys/Vec3;)V net/minecraft/world/level/gameevent/GameEvent$ListenerInfo/ (Lnet/minecraft/world/level/gameevent/GameEvent;Lnet/minecraft/world/phys/Vec3;Lnet/minecraft/world/level/gameevent/GameEvent$Context;Lnet/minecraft/world/level/gameevent/GameEventListener;Lnet/minecraft/world/phys/Vec3;)V +MD: net/minecraft/world/level/gameevent/GameEvent$ListenerInfo/compareTo (Lnet/minecraft/world/level/gameevent/GameEvent$ListenerInfo;)I net/minecraft/world/level/gameevent/GameEvent$ListenerInfo/compareTo (Lnet/minecraft/world/level/gameevent/GameEvent$ListenerInfo;)I +MD: net/minecraft/world/level/gameevent/GameEvent$ListenerInfo/compareTo (Ljava/lang/Object;)I net/minecraft/world/level/gameevent/GameEvent$ListenerInfo/compareTo (Ljava/lang/Object;)I +MD: net/minecraft/world/level/gameevent/GameEvent$ListenerInfo/m_246300_ ()Lnet/minecraft/world/level/gameevent/GameEvent$Context; net/minecraft/world/level/gameevent/GameEvent$ListenerInfo/context ()Lnet/minecraft/world/level/gameevent/GameEvent$Context; +MD: net/minecraft/world/level/gameevent/GameEvent$ListenerInfo/m_247093_ ()Lnet/minecraft/world/level/gameevent/GameEventListener; net/minecraft/world/level/gameevent/GameEvent$ListenerInfo/recipient ()Lnet/minecraft/world/level/gameevent/GameEventListener; +MD: net/minecraft/world/level/gameevent/GameEvent$ListenerInfo/m_247303_ ()Lnet/minecraft/world/level/gameevent/GameEvent; net/minecraft/world/level/gameevent/GameEvent$ListenerInfo/gameEvent ()Lnet/minecraft/world/level/gameevent/GameEvent; +MD: net/minecraft/world/level/gameevent/GameEvent$ListenerInfo/m_247585_ ()Lnet/minecraft/world/phys/Vec3; net/minecraft/world/level/gameevent/GameEvent$ListenerInfo/source ()Lnet/minecraft/world/phys/Vec3; +MD: net/minecraft/world/level/gameevent/GameEventDispatcher/ (Lnet/minecraft/server/level/ServerLevel;)V net/minecraft/world/level/gameevent/GameEventDispatcher/ (Lnet/minecraft/server/level/ServerLevel;)V +MD: net/minecraft/world/level/gameevent/GameEventDispatcher/m_245095_ (Ljava/util/List;)V net/minecraft/world/level/gameevent/GameEventDispatcher/handleGameEventMessagesInQueue (Ljava/util/List;)V +MD: net/minecraft/world/level/gameevent/GameEventDispatcher/m_245905_ (Lnet/minecraft/world/level/gameevent/GameEvent;Lnet/minecraft/world/phys/Vec3;Lnet/minecraft/world/level/gameevent/GameEvent$Context;)V net/minecraft/world/level/gameevent/GameEventDispatcher/post (Lnet/minecraft/world/level/gameevent/GameEvent;Lnet/minecraft/world/phys/Vec3;Lnet/minecraft/world/level/gameevent/GameEvent$Context;)V +MD: net/minecraft/world/level/gameevent/GameEventDispatcher/m_246660_ (Ljava/util/List;Lnet/minecraft/world/level/gameevent/GameEvent;Lnet/minecraft/world/phys/Vec3;Lnet/minecraft/world/level/gameevent/GameEvent$Context;Lnet/minecraft/world/level/gameevent/GameEventListener;Lnet/minecraft/world/phys/Vec3;)V net/minecraft/world/level/gameevent/GameEventDispatcher/lambda$post$0 (Ljava/util/List;Lnet/minecraft/world/level/gameevent/GameEvent;Lnet/minecraft/world/phys/Vec3;Lnet/minecraft/world/level/gameevent/GameEvent$Context;Lnet/minecraft/world/level/gameevent/GameEventListener;Lnet/minecraft/world/phys/Vec3;)V +MD: net/minecraft/world/level/gameevent/GameEventListener/m_142078_ ()I net/minecraft/world/level/gameevent/GameEventListener/getListenerRadius ()I +MD: net/minecraft/world/level/gameevent/GameEventListener/m_142460_ ()Lnet/minecraft/world/level/gameevent/PositionSource; net/minecraft/world/level/gameevent/GameEventListener/getListenerSource ()Lnet/minecraft/world/level/gameevent/PositionSource; +MD: net/minecraft/world/level/gameevent/GameEventListener/m_214068_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/level/gameevent/GameEvent;Lnet/minecraft/world/level/gameevent/GameEvent$Context;Lnet/minecraft/world/phys/Vec3;)Z net/minecraft/world/level/gameevent/GameEventListener/handleGameEvent (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/level/gameevent/GameEvent;Lnet/minecraft/world/level/gameevent/GameEvent$Context;Lnet/minecraft/world/phys/Vec3;)Z +MD: net/minecraft/world/level/gameevent/GameEventListener/m_247514_ ()Lnet/minecraft/world/level/gameevent/GameEventListener$DeliveryMode; net/minecraft/world/level/gameevent/GameEventListener/getDeliveryMode ()Lnet/minecraft/world/level/gameevent/GameEventListener$DeliveryMode; +MD: net/minecraft/world/level/gameevent/GameEventListener$DeliveryMode/ ()V net/minecraft/world/level/gameevent/GameEventListener$DeliveryMode/ ()V +MD: net/minecraft/world/level/gameevent/GameEventListener$DeliveryMode/ (Ljava/lang/String;I)V net/minecraft/world/level/gameevent/GameEventListener$DeliveryMode/ (Ljava/lang/String;I)V +MD: net/minecraft/world/level/gameevent/GameEventListener$DeliveryMode/m_245393_ ()[Lnet/minecraft/world/level/gameevent/GameEventListener$DeliveryMode; net/minecraft/world/level/gameevent/GameEventListener$DeliveryMode/$values ()[Lnet/minecraft/world/level/gameevent/GameEventListener$DeliveryMode; +MD: net/minecraft/world/level/gameevent/GameEventListener$DeliveryMode/valueOf (Ljava/lang/String;)Lnet/minecraft/world/level/gameevent/GameEventListener$DeliveryMode; net/minecraft/world/level/gameevent/GameEventListener$DeliveryMode/valueOf (Ljava/lang/String;)Lnet/minecraft/world/level/gameevent/GameEventListener$DeliveryMode; +MD: net/minecraft/world/level/gameevent/GameEventListener$DeliveryMode/values ()[Lnet/minecraft/world/level/gameevent/GameEventListener$DeliveryMode; net/minecraft/world/level/gameevent/GameEventListener$DeliveryMode/values ()[Lnet/minecraft/world/level/gameevent/GameEventListener$DeliveryMode; +MD: net/minecraft/world/level/gameevent/GameEventListener$Holder/m_280052_ ()Lnet/minecraft/world/level/gameevent/GameEventListener; net/minecraft/world/level/gameevent/GameEventListener$Holder/getListener ()Lnet/minecraft/world/level/gameevent/GameEventListener; +MD: net/minecraft/world/level/gameevent/GameEventListenerRegistry/ ()V net/minecraft/world/level/gameevent/GameEventListenerRegistry/ ()V +MD: net/minecraft/world/level/gameevent/GameEventListenerRegistry/m_245428_ ()Z net/minecraft/world/level/gameevent/GameEventListenerRegistry/isEmpty ()Z +MD: net/minecraft/world/level/gameevent/GameEventListenerRegistry/m_245521_ (Lnet/minecraft/world/level/gameevent/GameEvent;Lnet/minecraft/world/phys/Vec3;Lnet/minecraft/world/level/gameevent/GameEvent$Context;Lnet/minecraft/world/level/gameevent/GameEventListenerRegistry$ListenerVisitor;)Z net/minecraft/world/level/gameevent/GameEventListenerRegistry/visitInRangeListeners (Lnet/minecraft/world/level/gameevent/GameEvent;Lnet/minecraft/world/phys/Vec3;Lnet/minecraft/world/level/gameevent/GameEvent$Context;Lnet/minecraft/world/level/gameevent/GameEventListenerRegistry$ListenerVisitor;)Z +MD: net/minecraft/world/level/gameevent/GameEventListenerRegistry/m_245531_ (Lnet/minecraft/world/level/gameevent/GameEventListener;)V net/minecraft/world/level/gameevent/GameEventListenerRegistry/register (Lnet/minecraft/world/level/gameevent/GameEventListener;)V +MD: net/minecraft/world/level/gameevent/GameEventListenerRegistry/m_246052_ (Lnet/minecraft/world/level/gameevent/GameEventListener;)V net/minecraft/world/level/gameevent/GameEventListenerRegistry/unregister (Lnet/minecraft/world/level/gameevent/GameEventListener;)V +MD: net/minecraft/world/level/gameevent/GameEventListenerRegistry$1/ ()V net/minecraft/world/level/gameevent/GameEventListenerRegistry$1/ ()V +MD: net/minecraft/world/level/gameevent/GameEventListenerRegistry$1/m_245428_ ()Z net/minecraft/world/level/gameevent/GameEventListenerRegistry$1/isEmpty ()Z +MD: net/minecraft/world/level/gameevent/GameEventListenerRegistry$1/m_245521_ (Lnet/minecraft/world/level/gameevent/GameEvent;Lnet/minecraft/world/phys/Vec3;Lnet/minecraft/world/level/gameevent/GameEvent$Context;Lnet/minecraft/world/level/gameevent/GameEventListenerRegistry$ListenerVisitor;)Z net/minecraft/world/level/gameevent/GameEventListenerRegistry$1/visitInRangeListeners (Lnet/minecraft/world/level/gameevent/GameEvent;Lnet/minecraft/world/phys/Vec3;Lnet/minecraft/world/level/gameevent/GameEvent$Context;Lnet/minecraft/world/level/gameevent/GameEventListenerRegistry$ListenerVisitor;)Z +MD: net/minecraft/world/level/gameevent/GameEventListenerRegistry$1/m_245531_ (Lnet/minecraft/world/level/gameevent/GameEventListener;)V net/minecraft/world/level/gameevent/GameEventListenerRegistry$1/register (Lnet/minecraft/world/level/gameevent/GameEventListener;)V +MD: net/minecraft/world/level/gameevent/GameEventListenerRegistry$1/m_246052_ (Lnet/minecraft/world/level/gameevent/GameEventListener;)V net/minecraft/world/level/gameevent/GameEventListenerRegistry$1/unregister (Lnet/minecraft/world/level/gameevent/GameEventListener;)V +MD: net/minecraft/world/level/gameevent/GameEventListenerRegistry$ListenerVisitor/m_247726_ (Lnet/minecraft/world/level/gameevent/GameEventListener;Lnet/minecraft/world/phys/Vec3;)V net/minecraft/world/level/gameevent/GameEventListenerRegistry$ListenerVisitor/visit (Lnet/minecraft/world/level/gameevent/GameEventListener;Lnet/minecraft/world/phys/Vec3;)V +MD: net/minecraft/world/level/gameevent/PositionSource/ ()V net/minecraft/world/level/gameevent/PositionSource/ ()V +MD: net/minecraft/world/level/gameevent/PositionSource/m_142502_ (Lnet/minecraft/world/level/Level;)Ljava/util/Optional; net/minecraft/world/level/gameevent/PositionSource/getPosition (Lnet/minecraft/world/level/Level;)Ljava/util/Optional; +MD: net/minecraft/world/level/gameevent/PositionSource/m_142510_ ()Lnet/minecraft/world/level/gameevent/PositionSourceType; net/minecraft/world/level/gameevent/PositionSource/getType ()Lnet/minecraft/world/level/gameevent/PositionSourceType; +MD: net/minecraft/world/level/gameevent/PositionSourceType/ ()V net/minecraft/world/level/gameevent/PositionSourceType/ ()V +MD: net/minecraft/world/level/gameevent/PositionSourceType/m_142235_ (Lnet/minecraft/network/FriendlyByteBuf;Lnet/minecraft/world/level/gameevent/PositionSource;)V net/minecraft/world/level/gameevent/PositionSourceType/write (Lnet/minecraft/network/FriendlyByteBuf;Lnet/minecraft/world/level/gameevent/PositionSource;)V +MD: net/minecraft/world/level/gameevent/PositionSourceType/m_142281_ (Lnet/minecraft/network/FriendlyByteBuf;)Lnet/minecraft/world/level/gameevent/PositionSource; net/minecraft/world/level/gameevent/PositionSourceType/read (Lnet/minecraft/network/FriendlyByteBuf;)Lnet/minecraft/world/level/gameevent/PositionSource; +MD: net/minecraft/world/level/gameevent/PositionSourceType/m_142341_ ()Lcom/mojang/serialization/Codec; net/minecraft/world/level/gameevent/PositionSourceType/codec ()Lcom/mojang/serialization/Codec; +MD: net/minecraft/world/level/gameevent/PositionSourceType/m_157874_ (Lnet/minecraft/world/level/gameevent/PositionSource;Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/world/level/gameevent/PositionSourceType/toNetwork (Lnet/minecraft/world/level/gameevent/PositionSource;Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/world/level/gameevent/PositionSourceType/m_157877_ (Ljava/lang/String;Lnet/minecraft/world/level/gameevent/PositionSourceType;)Lnet/minecraft/world/level/gameevent/PositionSourceType; net/minecraft/world/level/gameevent/PositionSourceType/register (Ljava/lang/String;Lnet/minecraft/world/level/gameevent/PositionSourceType;)Lnet/minecraft/world/level/gameevent/PositionSourceType; +MD: net/minecraft/world/level/gameevent/PositionSourceType/m_157882_ (Lnet/minecraft/resources/ResourceLocation;)Ljava/lang/IllegalArgumentException; net/minecraft/world/level/gameevent/PositionSourceType/lambda$fromNetwork$0 (Lnet/minecraft/resources/ResourceLocation;)Ljava/lang/IllegalArgumentException; +MD: net/minecraft/world/level/gameevent/PositionSourceType/m_157885_ (Lnet/minecraft/network/FriendlyByteBuf;)Lnet/minecraft/world/level/gameevent/PositionSource; net/minecraft/world/level/gameevent/PositionSourceType/fromNetwork (Lnet/minecraft/network/FriendlyByteBuf;)Lnet/minecraft/world/level/gameevent/PositionSource; +MD: net/minecraft/world/level/gameevent/vibrations/VibrationInfo/ ()V net/minecraft/world/level/gameevent/vibrations/VibrationInfo/ ()V +MD: net/minecraft/world/level/gameevent/vibrations/VibrationInfo/ (Lnet/minecraft/world/level/gameevent/GameEvent;FLnet/minecraft/world/phys/Vec3;Ljava/util/UUID;Ljava/util/UUID;Lnet/minecraft/world/entity/Entity;)V net/minecraft/world/level/gameevent/vibrations/VibrationInfo/ (Lnet/minecraft/world/level/gameevent/GameEvent;FLnet/minecraft/world/phys/Vec3;Ljava/util/UUID;Ljava/util/UUID;Lnet/minecraft/world/entity/Entity;)V +MD: net/minecraft/world/level/gameevent/vibrations/VibrationInfo/ (Lnet/minecraft/world/level/gameevent/GameEvent;FLnet/minecraft/world/phys/Vec3;Ljava/util/UUID;Ljava/util/UUID;)V net/minecraft/world/level/gameevent/vibrations/VibrationInfo/ (Lnet/minecraft/world/level/gameevent/GameEvent;FLnet/minecraft/world/phys/Vec3;Ljava/util/UUID;Ljava/util/UUID;)V +MD: net/minecraft/world/level/gameevent/vibrations/VibrationInfo/ (Lnet/minecraft/world/level/gameevent/GameEvent;FLnet/minecraft/world/phys/Vec3;Lnet/minecraft/world/entity/Entity;)V net/minecraft/world/level/gameevent/vibrations/VibrationInfo/ (Lnet/minecraft/world/level/gameevent/GameEvent;FLnet/minecraft/world/phys/Vec3;Lnet/minecraft/world/entity/Entity;)V +MD: net/minecraft/world/level/gameevent/vibrations/VibrationInfo/equals (Ljava/lang/Object;)Z net/minecraft/world/level/gameevent/vibrations/VibrationInfo/equals (Ljava/lang/Object;)Z +MD: net/minecraft/world/level/gameevent/vibrations/VibrationInfo/f_243709_ ()Lnet/minecraft/world/level/gameevent/GameEvent; net/minecraft/world/level/gameevent/vibrations/VibrationInfo/gameEvent ()Lnet/minecraft/world/level/gameevent/GameEvent; +MD: net/minecraft/world/level/gameevent/vibrations/VibrationInfo/f_243776_ ()F net/minecraft/world/level/gameevent/vibrations/VibrationInfo/distance ()F +MD: net/minecraft/world/level/gameevent/vibrations/VibrationInfo/f_243797_ ()Ljava/util/UUID; net/minecraft/world/level/gameevent/vibrations/VibrationInfo/uuid ()Ljava/util/UUID; +MD: net/minecraft/world/level/gameevent/vibrations/VibrationInfo/f_243906_ ()Lnet/minecraft/world/phys/Vec3; net/minecraft/world/level/gameevent/vibrations/VibrationInfo/pos ()Lnet/minecraft/world/phys/Vec3; +MD: net/minecraft/world/level/gameevent/vibrations/VibrationInfo/f_243913_ ()Ljava/util/UUID; net/minecraft/world/level/gameevent/vibrations/VibrationInfo/projectileOwnerUuid ()Ljava/util/UUID; +MD: net/minecraft/world/level/gameevent/vibrations/VibrationInfo/f_244048_ ()Lnet/minecraft/world/entity/Entity; net/minecraft/world/level/gameevent/vibrations/VibrationInfo/entity ()Lnet/minecraft/world/entity/Entity; +MD: net/minecraft/world/level/gameevent/vibrations/VibrationInfo/hashCode ()I net/minecraft/world/level/gameevent/vibrations/VibrationInfo/hashCode ()I +MD: net/minecraft/world/level/gameevent/vibrations/VibrationInfo/m_245851_ (Lnet/minecraft/server/level/ServerLevel;)Ljava/util/Optional; net/minecraft/world/level/gameevent/vibrations/VibrationInfo/lambda$getEntity$4 (Lnet/minecraft/server/level/ServerLevel;)Ljava/util/Optional; +MD: net/minecraft/world/level/gameevent/vibrations/VibrationInfo/m_246457_ (Lnet/minecraft/world/level/gameevent/GameEvent;Ljava/lang/Float;Lnet/minecraft/world/phys/Vec3;Ljava/util/Optional;Ljava/util/Optional;)Lnet/minecraft/world/level/gameevent/vibrations/VibrationInfo; net/minecraft/world/level/gameevent/vibrations/VibrationInfo/lambda$static$2 (Lnet/minecraft/world/level/gameevent/GameEvent;Ljava/lang/Float;Lnet/minecraft/world/phys/Vec3;Ljava/util/Optional;Ljava/util/Optional;)Lnet/minecraft/world/level/gameevent/vibrations/VibrationInfo; +MD: net/minecraft/world/level/gameevent/vibrations/VibrationInfo/m_246490_ (Lnet/minecraft/world/entity/Entity;)Z net/minecraft/world/level/gameevent/vibrations/VibrationInfo/lambda$getProjectileOwner$5 (Lnet/minecraft/world/entity/Entity;)Z +MD: net/minecraft/world/level/gameevent/vibrations/VibrationInfo/m_246642_ (Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/world/entity/projectile/Projectile; net/minecraft/world/level/gameevent/vibrations/VibrationInfo/lambda$getProjectileOwner$6 (Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/world/entity/projectile/Projectile; +MD: net/minecraft/world/level/gameevent/vibrations/VibrationInfo/m_246794_ (Lnet/minecraft/server/level/ServerLevel;)Ljava/util/Optional; net/minecraft/world/level/gameevent/vibrations/VibrationInfo/getEntity (Lnet/minecraft/server/level/ServerLevel;)Ljava/util/Optional; +MD: net/minecraft/world/level/gameevent/vibrations/VibrationInfo/m_247126_ (Lnet/minecraft/server/level/ServerLevel;)Ljava/util/Optional; net/minecraft/world/level/gameevent/vibrations/VibrationInfo/getProjectileOwner (Lnet/minecraft/server/level/ServerLevel;)Ljava/util/Optional; +MD: net/minecraft/world/level/gameevent/vibrations/VibrationInfo/m_247210_ (Lnet/minecraft/server/level/ServerLevel;)Ljava/util/Optional; net/minecraft/world/level/gameevent/vibrations/VibrationInfo/lambda$getProjectileOwner$7 (Lnet/minecraft/server/level/ServerLevel;)Ljava/util/Optional; +MD: net/minecraft/world/level/gameevent/vibrations/VibrationInfo/m_247424_ (Lnet/minecraft/world/level/gameevent/vibrations/VibrationInfo;)Ljava/util/Optional; net/minecraft/world/level/gameevent/vibrations/VibrationInfo/lambda$static$1 (Lnet/minecraft/world/level/gameevent/vibrations/VibrationInfo;)Ljava/util/Optional; +MD: net/minecraft/world/level/gameevent/vibrations/VibrationInfo/m_247491_ (Lnet/minecraft/world/level/gameevent/vibrations/VibrationInfo;)Ljava/util/Optional; net/minecraft/world/level/gameevent/vibrations/VibrationInfo/lambda$static$0 (Lnet/minecraft/world/level/gameevent/vibrations/VibrationInfo;)Ljava/util/Optional; +MD: net/minecraft/world/level/gameevent/vibrations/VibrationInfo/m_247625_ (Lnet/minecraft/world/entity/Entity;)Ljava/util/UUID; net/minecraft/world/level/gameevent/vibrations/VibrationInfo/getProjectileOwner (Lnet/minecraft/world/entity/Entity;)Ljava/util/UUID; +MD: net/minecraft/world/level/gameevent/vibrations/VibrationInfo/m_257346_ (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/world/level/gameevent/vibrations/VibrationInfo/lambda$static$3 (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/world/level/gameevent/vibrations/VibrationInfo/toString ()Ljava/lang/String; net/minecraft/world/level/gameevent/vibrations/VibrationInfo/toString ()Ljava/lang/String; +MD: net/minecraft/world/level/gameevent/vibrations/VibrationSelector/ ()V net/minecraft/world/level/gameevent/vibrations/VibrationSelector/ ()V +MD: net/minecraft/world/level/gameevent/vibrations/VibrationSelector/ ()V net/minecraft/world/level/gameevent/vibrations/VibrationSelector/ ()V +MD: net/minecraft/world/level/gameevent/vibrations/VibrationSelector/ (Ljava/util/Optional;J)V net/minecraft/world/level/gameevent/vibrations/VibrationSelector/ (Ljava/util/Optional;J)V +MD: net/minecraft/world/level/gameevent/vibrations/VibrationSelector/m_245156_ (J)Ljava/util/Optional; net/minecraft/world/level/gameevent/vibrations/VibrationSelector/chosenCandidate (J)Ljava/util/Optional; +MD: net/minecraft/world/level/gameevent/vibrations/VibrationSelector/m_245756_ (JLnet/minecraft/world/level/gameevent/vibrations/VibrationInfo;)Lorg/apache/commons/lang3/tuple/Pair; net/minecraft/world/level/gameevent/vibrations/VibrationSelector/lambda$new$3 (JLnet/minecraft/world/level/gameevent/vibrations/VibrationInfo;)Lorg/apache/commons/lang3/tuple/Pair; +MD: net/minecraft/world/level/gameevent/vibrations/VibrationSelector/m_246022_ (Lnet/minecraft/world/level/gameevent/vibrations/VibrationSelector;)Ljava/lang/Long; net/minecraft/world/level/gameevent/vibrations/VibrationSelector/lambda$static$1 (Lnet/minecraft/world/level/gameevent/vibrations/VibrationSelector;)Ljava/lang/Long; +MD: net/minecraft/world/level/gameevent/vibrations/VibrationSelector/m_246080_ ()V net/minecraft/world/level/gameevent/vibrations/VibrationSelector/startOver ()V +MD: net/minecraft/world/level/gameevent/vibrations/VibrationSelector/m_246604_ (Lnet/minecraft/world/level/gameevent/vibrations/VibrationSelector;)Ljava/util/Optional; net/minecraft/world/level/gameevent/vibrations/VibrationSelector/lambda$static$0 (Lnet/minecraft/world/level/gameevent/vibrations/VibrationSelector;)Ljava/util/Optional; +MD: net/minecraft/world/level/gameevent/vibrations/VibrationSelector/m_246723_ (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/world/level/gameevent/vibrations/VibrationSelector/lambda$static$2 (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/world/level/gameevent/vibrations/VibrationSelector/m_247012_ (Lnet/minecraft/world/level/gameevent/vibrations/VibrationInfo;J)Z net/minecraft/world/level/gameevent/vibrations/VibrationSelector/shouldReplaceVibration (Lnet/minecraft/world/level/gameevent/vibrations/VibrationInfo;J)Z +MD: net/minecraft/world/level/gameevent/vibrations/VibrationSelector/m_247691_ (Lnet/minecraft/world/level/gameevent/vibrations/VibrationInfo;J)V net/minecraft/world/level/gameevent/vibrations/VibrationSelector/addCandidate (Lnet/minecraft/world/level/gameevent/vibrations/VibrationInfo;J)V +MD: net/minecraft/world/level/gameevent/vibrations/VibrationSystem/ ()V net/minecraft/world/level/gameevent/vibrations/VibrationSystem/ ()V +MD: net/minecraft/world/level/gameevent/vibrations/VibrationSystem/m_280002_ ()Lnet/minecraft/world/level/gameevent/vibrations/VibrationSystem$Data; net/minecraft/world/level/gameevent/vibrations/VibrationSystem/getVibrationData ()Lnet/minecraft/world/level/gameevent/vibrations/VibrationSystem$Data; +MD: net/minecraft/world/level/gameevent/vibrations/VibrationSystem/m_280007_ (FI)I net/minecraft/world/level/gameevent/vibrations/VibrationSystem/getRedstoneStrengthForDistance (FI)I +MD: net/minecraft/world/level/gameevent/vibrations/VibrationSystem/m_280122_ (Lnet/minecraft/world/level/gameevent/GameEvent;)I net/minecraft/world/level/gameevent/vibrations/VibrationSystem/getGameEventFrequency (Lnet/minecraft/world/level/gameevent/GameEvent;)I +MD: net/minecraft/world/level/gameevent/vibrations/VibrationSystem/m_280224_ (Lit/unimi/dsi/fastutil/objects/Object2IntOpenHashMap;)V net/minecraft/world/level/gameevent/vibrations/VibrationSystem/lambda$static$0 (Lit/unimi/dsi/fastutil/objects/Object2IntOpenHashMap;)V +MD: net/minecraft/world/level/gameevent/vibrations/VibrationSystem/m_280393_ (I)Lnet/minecraft/world/level/gameevent/GameEvent; net/minecraft/world/level/gameevent/vibrations/VibrationSystem/getResonanceEventByFrequency (I)Lnet/minecraft/world/level/gameevent/GameEvent; +MD: net/minecraft/world/level/gameevent/vibrations/VibrationSystem/m_280445_ ()Lnet/minecraft/world/level/gameevent/vibrations/VibrationSystem$User; net/minecraft/world/level/gameevent/vibrations/VibrationSystem/getVibrationUser ()Lnet/minecraft/world/level/gameevent/vibrations/VibrationSystem$User; +MD: net/minecraft/world/level/gameevent/vibrations/VibrationSystem$Data/ ()V net/minecraft/world/level/gameevent/vibrations/VibrationSystem$Data/ ()V +MD: net/minecraft/world/level/gameevent/vibrations/VibrationSystem$Data/ ()V net/minecraft/world/level/gameevent/vibrations/VibrationSystem$Data/ ()V +MD: net/minecraft/world/level/gameevent/vibrations/VibrationSystem$Data/ (Lnet/minecraft/world/level/gameevent/vibrations/VibrationInfo;Lnet/minecraft/world/level/gameevent/vibrations/VibrationSelector;IZ)V net/minecraft/world/level/gameevent/vibrations/VibrationSystem$Data/ (Lnet/minecraft/world/level/gameevent/vibrations/VibrationInfo;Lnet/minecraft/world/level/gameevent/vibrations/VibrationSelector;IZ)V +MD: net/minecraft/world/level/gameevent/vibrations/VibrationSystem$Data/m_280036_ (Lnet/minecraft/world/level/gameevent/vibrations/VibrationInfo;)V net/minecraft/world/level/gameevent/vibrations/VibrationSystem$Data/setCurrentVibration (Lnet/minecraft/world/level/gameevent/vibrations/VibrationInfo;)V +MD: net/minecraft/world/level/gameevent/vibrations/VibrationSystem$Data/m_280067_ (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/world/level/gameevent/vibrations/VibrationSystem$Data/lambda$static$2 (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/world/level/gameevent/vibrations/VibrationSystem$Data/m_280178_ (I)V net/minecraft/world/level/gameevent/vibrations/VibrationSystem$Data/setTravelTimeInTicks (I)V +MD: net/minecraft/world/level/gameevent/vibrations/VibrationSystem$Data/m_280274_ ()I net/minecraft/world/level/gameevent/vibrations/VibrationSystem$Data/getTravelTimeInTicks ()I +MD: net/minecraft/world/level/gameevent/vibrations/VibrationSystem$Data/m_280457_ ()Lnet/minecraft/world/level/gameevent/vibrations/VibrationSelector; net/minecraft/world/level/gameevent/vibrations/VibrationSystem$Data/getSelectionStrategy ()Lnet/minecraft/world/level/gameevent/vibrations/VibrationSelector; +MD: net/minecraft/world/level/gameevent/vibrations/VibrationSystem$Data/m_280502_ ()V net/minecraft/world/level/gameevent/vibrations/VibrationSystem$Data/decrementTravelTime ()V +MD: net/minecraft/world/level/gameevent/vibrations/VibrationSystem$Data/m_280562_ (Ljava/util/Optional;Lnet/minecraft/world/level/gameevent/vibrations/VibrationSelector;Ljava/lang/Integer;)Lnet/minecraft/world/level/gameevent/vibrations/VibrationSystem$Data; net/minecraft/world/level/gameevent/vibrations/VibrationSystem$Data/lambda$static$1 (Ljava/util/Optional;Lnet/minecraft/world/level/gameevent/vibrations/VibrationSelector;Ljava/lang/Integer;)Lnet/minecraft/world/level/gameevent/vibrations/VibrationSystem$Data; +MD: net/minecraft/world/level/gameevent/vibrations/VibrationSystem$Data/m_280602_ ()Lnet/minecraft/world/level/gameevent/vibrations/VibrationInfo; net/minecraft/world/level/gameevent/vibrations/VibrationSystem$Data/getCurrentVibration ()Lnet/minecraft/world/level/gameevent/vibrations/VibrationInfo; +MD: net/minecraft/world/level/gameevent/vibrations/VibrationSystem$Data/m_280609_ (Lnet/minecraft/world/level/gameevent/vibrations/VibrationSystem$Data;)Ljava/util/Optional; net/minecraft/world/level/gameevent/vibrations/VibrationSystem$Data/lambda$static$0 (Lnet/minecraft/world/level/gameevent/vibrations/VibrationSystem$Data;)Ljava/util/Optional; +MD: net/minecraft/world/level/gameevent/vibrations/VibrationSystem$Data/m_280616_ ()Z net/minecraft/world/level/gameevent/vibrations/VibrationSystem$Data/shouldReloadVibrationParticle ()Z +MD: net/minecraft/world/level/gameevent/vibrations/VibrationSystem$Data/m_280671_ (Z)V net/minecraft/world/level/gameevent/vibrations/VibrationSystem$Data/setReloadVibrationParticle (Z)V +MD: net/minecraft/world/level/gameevent/vibrations/VibrationSystem$Listener/ (Lnet/minecraft/world/level/gameevent/vibrations/VibrationSystem;)V net/minecraft/world/level/gameevent/vibrations/VibrationSystem$Listener/ (Lnet/minecraft/world/level/gameevent/vibrations/VibrationSystem;)V +MD: net/minecraft/world/level/gameevent/vibrations/VibrationSystem$Listener/m_142078_ ()I net/minecraft/world/level/gameevent/vibrations/VibrationSystem$Listener/getListenerRadius ()I +MD: net/minecraft/world/level/gameevent/vibrations/VibrationSystem$Listener/m_142460_ ()Lnet/minecraft/world/level/gameevent/PositionSource; net/minecraft/world/level/gameevent/vibrations/VibrationSystem$Listener/getListenerSource ()Lnet/minecraft/world/level/gameevent/PositionSource; +MD: net/minecraft/world/level/gameevent/vibrations/VibrationSystem$Listener/m_214068_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/level/gameevent/GameEvent;Lnet/minecraft/world/level/gameevent/GameEvent$Context;Lnet/minecraft/world/phys/Vec3;)Z net/minecraft/world/level/gameevent/vibrations/VibrationSystem$Listener/handleGameEvent (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/level/gameevent/GameEvent;Lnet/minecraft/world/level/gameevent/GameEvent$Context;Lnet/minecraft/world/phys/Vec3;)Z +MD: net/minecraft/world/level/gameevent/vibrations/VibrationSystem$Listener/m_280099_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/level/gameevent/vibrations/VibrationSystem$Data;Lnet/minecraft/world/level/gameevent/GameEvent;Lnet/minecraft/world/level/gameevent/GameEvent$Context;Lnet/minecraft/world/phys/Vec3;Lnet/minecraft/world/phys/Vec3;)V net/minecraft/world/level/gameevent/vibrations/VibrationSystem$Listener/scheduleVibration (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/level/gameevent/vibrations/VibrationSystem$Data;Lnet/minecraft/world/level/gameevent/GameEvent;Lnet/minecraft/world/level/gameevent/GameEvent$Context;Lnet/minecraft/world/phys/Vec3;Lnet/minecraft/world/phys/Vec3;)V +MD: net/minecraft/world/level/gameevent/vibrations/VibrationSystem$Listener/m_280258_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/phys/Vec3;Lnet/minecraft/world/phys/Vec3;)Z net/minecraft/world/level/gameevent/vibrations/VibrationSystem$Listener/isOccluded (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/phys/Vec3;Lnet/minecraft/world/phys/Vec3;)Z +MD: net/minecraft/world/level/gameevent/vibrations/VibrationSystem$Listener/m_280268_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/level/gameevent/GameEvent;Lnet/minecraft/world/level/gameevent/GameEvent$Context;Lnet/minecraft/world/phys/Vec3;Lnet/minecraft/world/phys/Vec3;)V net/minecraft/world/level/gameevent/vibrations/VibrationSystem$Listener/lambda$forceScheduleVibration$0 (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/level/gameevent/GameEvent;Lnet/minecraft/world/level/gameevent/GameEvent$Context;Lnet/minecraft/world/phys/Vec3;Lnet/minecraft/world/phys/Vec3;)V +MD: net/minecraft/world/level/gameevent/vibrations/VibrationSystem$Listener/m_280275_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/level/gameevent/GameEvent;Lnet/minecraft/world/level/gameevent/GameEvent$Context;Lnet/minecraft/world/phys/Vec3;)V net/minecraft/world/level/gameevent/vibrations/VibrationSystem$Listener/forceScheduleVibration (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/level/gameevent/GameEvent;Lnet/minecraft/world/level/gameevent/GameEvent$Context;Lnet/minecraft/world/phys/Vec3;)V +MD: net/minecraft/world/level/gameevent/vibrations/VibrationSystem$Listener/m_280466_ (Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/world/level/gameevent/vibrations/VibrationSystem$Listener/lambda$isOccluded$1 (Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/world/level/gameevent/vibrations/VibrationSystem$Listener/m_280659_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;)F net/minecraft/world/level/gameevent/vibrations/VibrationSystem$Listener/distanceBetweenInBlocks (Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;)F +MD: net/minecraft/world/level/gameevent/vibrations/VibrationSystem$Ticker/m_280174_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/level/gameevent/vibrations/VibrationSystem$Data;Lnet/minecraft/world/level/gameevent/vibrations/VibrationSystem$User;Lnet/minecraft/world/level/gameevent/vibrations/VibrationInfo;)Z net/minecraft/world/level/gameevent/vibrations/VibrationSystem$Ticker/receiveVibration (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/level/gameevent/vibrations/VibrationSystem$Data;Lnet/minecraft/world/level/gameevent/vibrations/VibrationSystem$User;Lnet/minecraft/world/level/gameevent/vibrations/VibrationInfo;)Z +MD: net/minecraft/world/level/gameevent/vibrations/VibrationSystem$Ticker/m_280257_ (Lnet/minecraft/world/level/gameevent/vibrations/VibrationSystem$Data;Lnet/minecraft/world/level/gameevent/vibrations/VibrationSystem$User;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/level/gameevent/vibrations/VibrationInfo;)V net/minecraft/world/level/gameevent/vibrations/VibrationSystem$Ticker/lambda$trySelectAndScheduleVibration$0 (Lnet/minecraft/world/level/gameevent/vibrations/VibrationSystem$Data;Lnet/minecraft/world/level/gameevent/vibrations/VibrationSystem$User;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/level/gameevent/vibrations/VibrationInfo;)V +MD: net/minecraft/world/level/gameevent/vibrations/VibrationSystem$Ticker/m_280259_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/level/gameevent/vibrations/VibrationSystem$Data;Lnet/minecraft/world/level/gameevent/vibrations/VibrationSystem$User;)V net/minecraft/world/level/gameevent/vibrations/VibrationSystem$Ticker/tick (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/level/gameevent/vibrations/VibrationSystem$Data;Lnet/minecraft/world/level/gameevent/vibrations/VibrationSystem$User;)V +MD: net/minecraft/world/level/gameevent/vibrations/VibrationSystem$Ticker/m_280404_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/level/gameevent/vibrations/VibrationSystem$Data;Lnet/minecraft/world/level/gameevent/vibrations/VibrationSystem$User;)V net/minecraft/world/level/gameevent/vibrations/VibrationSystem$Ticker/tryReloadVibrationParticle (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/level/gameevent/vibrations/VibrationSystem$Data;Lnet/minecraft/world/level/gameevent/vibrations/VibrationSystem$User;)V +MD: net/minecraft/world/level/gameevent/vibrations/VibrationSystem$Ticker/m_280446_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/level/gameevent/vibrations/VibrationSystem$Ticker/areAdjacentChunksTicking (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/level/gameevent/vibrations/VibrationSystem$Ticker/m_280634_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/level/gameevent/vibrations/VibrationSystem$Data;Lnet/minecraft/world/level/gameevent/vibrations/VibrationSystem$User;)V net/minecraft/world/level/gameevent/vibrations/VibrationSystem$Ticker/trySelectAndScheduleVibration (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/level/gameevent/vibrations/VibrationSystem$Data;Lnet/minecraft/world/level/gameevent/vibrations/VibrationSystem$User;)V +MD: net/minecraft/world/level/gameevent/vibrations/VibrationSystem$User/m_280010_ ()Lnet/minecraft/world/level/gameevent/PositionSource; net/minecraft/world/level/gameevent/vibrations/VibrationSystem$User/getPositionSource ()Lnet/minecraft/world/level/gameevent/PositionSource; +MD: net/minecraft/world/level/gameevent/vibrations/VibrationSystem$User/m_280022_ ()V net/minecraft/world/level/gameevent/vibrations/VibrationSystem$User/onDataChanged ()V +MD: net/minecraft/world/level/gameevent/vibrations/VibrationSystem$User/m_280028_ ()Lnet/minecraft/tags/TagKey; net/minecraft/world/level/gameevent/vibrations/VibrationSystem$User/getListenableEvents ()Lnet/minecraft/tags/TagKey; +MD: net/minecraft/world/level/gameevent/vibrations/VibrationSystem$User/m_280076_ ()Z net/minecraft/world/level/gameevent/vibrations/VibrationSystem$User/canTriggerAvoidVibration ()Z +MD: net/minecraft/world/level/gameevent/vibrations/VibrationSystem$User/m_280080_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/gameevent/GameEvent;Lnet/minecraft/world/level/gameevent/GameEvent$Context;)Z net/minecraft/world/level/gameevent/vibrations/VibrationSystem$User/canReceiveVibration (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/gameevent/GameEvent;Lnet/minecraft/world/level/gameevent/GameEvent$Context;)Z +MD: net/minecraft/world/level/gameevent/vibrations/VibrationSystem$User/m_280215_ ()Z net/minecraft/world/level/gameevent/vibrations/VibrationSystem$User/requiresAdjacentChunksToBeTicking ()Z +MD: net/minecraft/world/level/gameevent/vibrations/VibrationSystem$User/m_280271_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/gameevent/GameEvent;Lnet/minecraft/world/entity/Entity;Lnet/minecraft/world/entity/Entity;F)V net/minecraft/world/level/gameevent/vibrations/VibrationSystem$User/onReceiveVibration (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/gameevent/GameEvent;Lnet/minecraft/world/entity/Entity;Lnet/minecraft/world/entity/Entity;F)V +MD: net/minecraft/world/level/gameevent/vibrations/VibrationSystem$User/m_280351_ ()I net/minecraft/world/level/gameevent/vibrations/VibrationSystem$User/getListenerRadius ()I +MD: net/minecraft/world/level/gameevent/vibrations/VibrationSystem$User/m_280576_ (F)I net/minecraft/world/level/gameevent/vibrations/VibrationSystem$User/calculateTravelTimeInTicks (F)I +MD: net/minecraft/world/level/gameevent/vibrations/VibrationSystem$User/m_280612_ (Lnet/minecraft/world/level/gameevent/GameEvent;Lnet/minecraft/world/level/gameevent/GameEvent$Context;)Z net/minecraft/world/level/gameevent/vibrations/VibrationSystem$User/isValidVibration (Lnet/minecraft/world/level/gameevent/GameEvent;Lnet/minecraft/world/level/gameevent/GameEvent$Context;)Z +MD: net/minecraft/world/level/levelgen/Aquifer/m_142203_ ()Z net/minecraft/world/level/levelgen/Aquifer/shouldScheduleFluidUpdate ()Z +MD: net/minecraft/world/level/levelgen/Aquifer/m_188374_ (Lnet/minecraft/world/level/levelgen/Aquifer$FluidPicker;)Lnet/minecraft/world/level/levelgen/Aquifer; net/minecraft/world/level/levelgen/Aquifer/createDisabled (Lnet/minecraft/world/level/levelgen/Aquifer$FluidPicker;)Lnet/minecraft/world/level/levelgen/Aquifer; +MD: net/minecraft/world/level/levelgen/Aquifer/m_207104_ (Lnet/minecraft/world/level/levelgen/DensityFunction$FunctionContext;D)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/levelgen/Aquifer/computeSubstance (Lnet/minecraft/world/level/levelgen/DensityFunction$FunctionContext;D)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/levelgen/Aquifer/m_223880_ (Lnet/minecraft/world/level/levelgen/NoiseChunk;Lnet/minecraft/world/level/ChunkPos;Lnet/minecraft/world/level/levelgen/NoiseRouter;Lnet/minecraft/world/level/levelgen/PositionalRandomFactory;IILnet/minecraft/world/level/levelgen/Aquifer$FluidPicker;)Lnet/minecraft/world/level/levelgen/Aquifer; net/minecraft/world/level/levelgen/Aquifer/create (Lnet/minecraft/world/level/levelgen/NoiseChunk;Lnet/minecraft/world/level/ChunkPos;Lnet/minecraft/world/level/levelgen/NoiseRouter;Lnet/minecraft/world/level/levelgen/PositionalRandomFactory;IILnet/minecraft/world/level/levelgen/Aquifer$FluidPicker;)Lnet/minecraft/world/level/levelgen/Aquifer; +MD: net/minecraft/world/level/levelgen/Aquifer$1/ (Lnet/minecraft/world/level/levelgen/Aquifer$FluidPicker;)V net/minecraft/world/level/levelgen/Aquifer$1/ (Lnet/minecraft/world/level/levelgen/Aquifer$FluidPicker;)V +MD: net/minecraft/world/level/levelgen/Aquifer$1/m_142203_ ()Z net/minecraft/world/level/levelgen/Aquifer$1/shouldScheduleFluidUpdate ()Z +MD: net/minecraft/world/level/levelgen/Aquifer$1/m_207104_ (Lnet/minecraft/world/level/levelgen/DensityFunction$FunctionContext;D)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/levelgen/Aquifer$1/computeSubstance (Lnet/minecraft/world/level/levelgen/DensityFunction$FunctionContext;D)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/levelgen/Aquifer$FluidPicker/m_183538_ (III)Lnet/minecraft/world/level/levelgen/Aquifer$FluidStatus; net/minecraft/world/level/levelgen/Aquifer$FluidPicker/computeFluid (III)Lnet/minecraft/world/level/levelgen/Aquifer$FluidStatus; +MD: net/minecraft/world/level/levelgen/Aquifer$FluidStatus/ (ILnet/minecraft/world/level/block/state/BlockState;)V net/minecraft/world/level/levelgen/Aquifer$FluidStatus/ (ILnet/minecraft/world/level/block/state/BlockState;)V +MD: net/minecraft/world/level/levelgen/Aquifer$FluidStatus/m_188405_ (I)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/levelgen/Aquifer$FluidStatus/at (I)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/levelgen/Aquifer$NoiseBasedAquifer/ ()V net/minecraft/world/level/levelgen/Aquifer$NoiseBasedAquifer/ ()V +MD: net/minecraft/world/level/levelgen/Aquifer$NoiseBasedAquifer/ (Lnet/minecraft/world/level/levelgen/NoiseChunk;Lnet/minecraft/world/level/ChunkPos;Lnet/minecraft/world/level/levelgen/NoiseRouter;Lnet/minecraft/world/level/levelgen/PositionalRandomFactory;IILnet/minecraft/world/level/levelgen/Aquifer$FluidPicker;)V net/minecraft/world/level/levelgen/Aquifer$NoiseBasedAquifer/ (Lnet/minecraft/world/level/levelgen/NoiseChunk;Lnet/minecraft/world/level/ChunkPos;Lnet/minecraft/world/level/levelgen/NoiseRouter;Lnet/minecraft/world/level/levelgen/PositionalRandomFactory;IILnet/minecraft/world/level/levelgen/Aquifer$FluidPicker;)V +MD: net/minecraft/world/level/levelgen/Aquifer$NoiseBasedAquifer/m_142203_ ()Z net/minecraft/world/level/levelgen/Aquifer$NoiseBasedAquifer/shouldScheduleFluidUpdate ()Z +MD: net/minecraft/world/level/levelgen/Aquifer$NoiseBasedAquifer/m_158024_ (II)D net/minecraft/world/level/levelgen/Aquifer$NoiseBasedAquifer/similarity (II)D +MD: net/minecraft/world/level/levelgen/Aquifer$NoiseBasedAquifer/m_158027_ (III)I net/minecraft/world/level/levelgen/Aquifer$NoiseBasedAquifer/getIndex (III)I +MD: net/minecraft/world/level/levelgen/Aquifer$NoiseBasedAquifer/m_158039_ (I)I net/minecraft/world/level/levelgen/Aquifer$NoiseBasedAquifer/gridX (I)I +MD: net/minecraft/world/level/levelgen/Aquifer$NoiseBasedAquifer/m_158045_ (I)I net/minecraft/world/level/levelgen/Aquifer$NoiseBasedAquifer/gridY (I)I +MD: net/minecraft/world/level/levelgen/Aquifer$NoiseBasedAquifer/m_158047_ (I)I net/minecraft/world/level/levelgen/Aquifer$NoiseBasedAquifer/gridZ (I)I +MD: net/minecraft/world/level/levelgen/Aquifer$NoiseBasedAquifer/m_188445_ (J)Lnet/minecraft/world/level/levelgen/Aquifer$FluidStatus; net/minecraft/world/level/levelgen/Aquifer$NoiseBasedAquifer/getAquiferStatus (J)Lnet/minecraft/world/level/levelgen/Aquifer$FluidStatus; +MD: net/minecraft/world/level/levelgen/Aquifer$NoiseBasedAquifer/m_188447_ (III)Lnet/minecraft/world/level/levelgen/Aquifer$FluidStatus; net/minecraft/world/level/levelgen/Aquifer$NoiseBasedAquifer/computeFluid (III)Lnet/minecraft/world/level/levelgen/Aquifer$FluidStatus; +MD: net/minecraft/world/level/levelgen/Aquifer$NoiseBasedAquifer/m_207104_ (Lnet/minecraft/world/level/levelgen/DensityFunction$FunctionContext;D)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/levelgen/Aquifer$NoiseBasedAquifer/computeSubstance (Lnet/minecraft/world/level/levelgen/DensityFunction$FunctionContext;D)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/levelgen/Aquifer$NoiseBasedAquifer/m_208188_ (Lnet/minecraft/world/level/levelgen/DensityFunction$FunctionContext;Lorg/apache/commons/lang3/mutable/MutableDouble;Lnet/minecraft/world/level/levelgen/Aquifer$FluidStatus;Lnet/minecraft/world/level/levelgen/Aquifer$FluidStatus;)D net/minecraft/world/level/levelgen/Aquifer$NoiseBasedAquifer/calculatePressure (Lnet/minecraft/world/level/levelgen/DensityFunction$FunctionContext;Lorg/apache/commons/lang3/mutable/MutableDouble;Lnet/minecraft/world/level/levelgen/Aquifer$FluidStatus;Lnet/minecraft/world/level/levelgen/Aquifer$FluidStatus;)D +MD: net/minecraft/world/level/levelgen/Aquifer$NoiseBasedAquifer/m_223898_ (IIII)I net/minecraft/world/level/levelgen/Aquifer$NoiseBasedAquifer/computeRandomizedFluidSurfaceLevel (IIII)I +MD: net/minecraft/world/level/levelgen/Aquifer$NoiseBasedAquifer/m_223903_ (IIILnet/minecraft/world/level/levelgen/Aquifer$FluidStatus;I)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/levelgen/Aquifer$NoiseBasedAquifer/computeFluidType (IIILnet/minecraft/world/level/levelgen/Aquifer$FluidStatus;I)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/levelgen/Aquifer$NoiseBasedAquifer/m_223909_ (IIILnet/minecraft/world/level/levelgen/Aquifer$FluidStatus;IZ)I net/minecraft/world/level/levelgen/Aquifer$NoiseBasedAquifer/computeSurfaceLevel (IIILnet/minecraft/world/level/levelgen/Aquifer$FluidStatus;IZ)I +MD: net/minecraft/world/level/levelgen/Beardifier/ ()V net/minecraft/world/level/levelgen/Beardifier/ ()V +MD: net/minecraft/world/level/levelgen/Beardifier/ (Lit/unimi/dsi/fastutil/objects/ObjectListIterator;Lit/unimi/dsi/fastutil/objects/ObjectListIterator;)V net/minecraft/world/level/levelgen/Beardifier/ (Lit/unimi/dsi/fastutil/objects/ObjectListIterator;Lit/unimi/dsi/fastutil/objects/ObjectListIterator;)V +MD: net/minecraft/world/level/levelgen/Beardifier/m_158081_ ([F)V net/minecraft/world/level/levelgen/Beardifier/lambda$static$0 ([F)V +MD: net/minecraft/world/level/levelgen/Beardifier/m_158083_ (III)D net/minecraft/world/level/levelgen/Beardifier/getBuryContribution (III)D +MD: net/minecraft/world/level/levelgen/Beardifier/m_158091_ (III)D net/minecraft/world/level/levelgen/Beardifier/computeBeardContribution (III)D +MD: net/minecraft/world/level/levelgen/Beardifier/m_207386_ (Lnet/minecraft/world/level/levelgen/DensityFunction$FunctionContext;)D net/minecraft/world/level/levelgen/Beardifier/compute (Lnet/minecraft/world/level/levelgen/DensityFunction$FunctionContext;)D +MD: net/minecraft/world/level/levelgen/Beardifier/m_207401_ ()D net/minecraft/world/level/levelgen/Beardifier/maxValue ()D +MD: net/minecraft/world/level/levelgen/Beardifier/m_207402_ ()D net/minecraft/world/level/levelgen/Beardifier/minValue ()D +MD: net/minecraft/world/level/levelgen/Beardifier/m_223919_ (I)Z net/minecraft/world/level/levelgen/Beardifier/isInKernelRange (I)Z +MD: net/minecraft/world/level/levelgen/Beardifier/m_223921_ (IDI)D net/minecraft/world/level/levelgen/Beardifier/computeBeardContribution (IDI)D +MD: net/minecraft/world/level/levelgen/Beardifier/m_223925_ (IIII)D net/minecraft/world/level/levelgen/Beardifier/getBeardContribution (IIII)D +MD: net/minecraft/world/level/levelgen/Beardifier/m_223930_ (Lnet/minecraft/world/level/ChunkPos;Lit/unimi/dsi/fastutil/objects/ObjectList;IILit/unimi/dsi/fastutil/objects/ObjectList;Lnet/minecraft/world/level/levelgen/structure/StructureStart;)V net/minecraft/world/level/levelgen/Beardifier/lambda$forStructuresInChunk$2 (Lnet/minecraft/world/level/ChunkPos;Lit/unimi/dsi/fastutil/objects/ObjectList;IILit/unimi/dsi/fastutil/objects/ObjectList;Lnet/minecraft/world/level/levelgen/structure/StructureStart;)V +MD: net/minecraft/world/level/levelgen/Beardifier/m_223937_ (Lnet/minecraft/world/level/StructureManager;Lnet/minecraft/world/level/ChunkPos;)Lnet/minecraft/world/level/levelgen/Beardifier; net/minecraft/world/level/levelgen/Beardifier/forStructuresInChunk (Lnet/minecraft/world/level/StructureManager;Lnet/minecraft/world/level/ChunkPos;)Lnet/minecraft/world/level/levelgen/Beardifier; +MD: net/minecraft/world/level/levelgen/Beardifier/m_223940_ (Lnet/minecraft/world/level/levelgen/structure/Structure;)Z net/minecraft/world/level/levelgen/Beardifier/lambda$forStructuresInChunk$1 (Lnet/minecraft/world/level/levelgen/structure/Structure;)Z +MD: net/minecraft/world/level/levelgen/Beardifier$1/ ()V net/minecraft/world/level/levelgen/Beardifier$1/ ()V +MD: net/minecraft/world/level/levelgen/Beardifier$Rigid/ (Lnet/minecraft/world/level/levelgen/structure/BoundingBox;Lnet/minecraft/world/level/levelgen/structure/TerrainAdjustment;I)V net/minecraft/world/level/levelgen/Beardifier$Rigid/ (Lnet/minecraft/world/level/levelgen/structure/BoundingBox;Lnet/minecraft/world/level/levelgen/structure/TerrainAdjustment;I)V +MD: net/minecraft/world/level/levelgen/Beardifier$Rigid/equals (Ljava/lang/Object;)Z net/minecraft/world/level/levelgen/Beardifier$Rigid/equals (Ljava/lang/Object;)Z +MD: net/minecraft/world/level/levelgen/Beardifier$Rigid/f_223944_ ()Lnet/minecraft/world/level/levelgen/structure/BoundingBox; net/minecraft/world/level/levelgen/Beardifier$Rigid/box ()Lnet/minecraft/world/level/levelgen/structure/BoundingBox; +MD: net/minecraft/world/level/levelgen/Beardifier$Rigid/f_223945_ ()Lnet/minecraft/world/level/levelgen/structure/TerrainAdjustment; net/minecraft/world/level/levelgen/Beardifier$Rigid/terrainAdjustment ()Lnet/minecraft/world/level/levelgen/structure/TerrainAdjustment; +MD: net/minecraft/world/level/levelgen/Beardifier$Rigid/f_223946_ ()I net/minecraft/world/level/levelgen/Beardifier$Rigid/groundLevelDelta ()I +MD: net/minecraft/world/level/levelgen/Beardifier$Rigid/hashCode ()I net/minecraft/world/level/levelgen/Beardifier$Rigid/hashCode ()I +MD: net/minecraft/world/level/levelgen/Beardifier$Rigid/toString ()Ljava/lang/String; net/minecraft/world/level/levelgen/Beardifier$Rigid/toString ()Ljava/lang/String; +MD: net/minecraft/world/level/levelgen/BelowZeroRetrogen/ ()V net/minecraft/world/level/levelgen/BelowZeroRetrogen/ ()V +MD: net/minecraft/world/level/levelgen/BelowZeroRetrogen/ (Lnet/minecraft/world/level/chunk/ChunkStatus;Ljava/util/Optional;)V net/minecraft/world/level/levelgen/BelowZeroRetrogen/ (Lnet/minecraft/world/level/chunk/ChunkStatus;Ljava/util/Optional;)V +MD: net/minecraft/world/level/levelgen/BelowZeroRetrogen/m_188466_ ()Lnet/minecraft/world/level/chunk/ChunkStatus; net/minecraft/world/level/levelgen/BelowZeroRetrogen/targetStatus ()Lnet/minecraft/world/level/chunk/ChunkStatus; +MD: net/minecraft/world/level/levelgen/BelowZeroRetrogen/m_188470_ (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/world/level/levelgen/BelowZeroRetrogen/lambda$static$5 (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/world/level/levelgen/BelowZeroRetrogen/m_188474_ (Lnet/minecraft/world/level/chunk/ProtoChunk;)V net/minecraft/world/level/levelgen/BelowZeroRetrogen/replaceOldBedrock (Lnet/minecraft/world/level/chunk/ProtoChunk;)V +MD: net/minecraft/world/level/levelgen/BelowZeroRetrogen/m_188479_ (Lnet/minecraft/world/level/levelgen/BelowZeroRetrogen;)Ljava/util/Optional; net/minecraft/world/level/levelgen/BelowZeroRetrogen/lambda$static$4 (Lnet/minecraft/world/level/levelgen/BelowZeroRetrogen;)Ljava/util/Optional; +MD: net/minecraft/world/level/levelgen/BelowZeroRetrogen/m_188481_ (Ljava/util/BitSet;)Ljava/util/stream/LongStream; net/minecraft/world/level/levelgen/BelowZeroRetrogen/lambda$static$1 (Ljava/util/BitSet;)Ljava/util/stream/LongStream; +MD: net/minecraft/world/level/levelgen/BelowZeroRetrogen/m_188483_ (Ljava/util/stream/LongStream;)Ljava/util/BitSet; net/minecraft/world/level/levelgen/BelowZeroRetrogen/lambda$static$0 (Ljava/util/stream/LongStream;)Ljava/util/BitSet; +MD: net/minecraft/world/level/levelgen/BelowZeroRetrogen/m_188485_ (Lnet/minecraft/nbt/CompoundTag;)Lnet/minecraft/world/level/levelgen/BelowZeroRetrogen; net/minecraft/world/level/levelgen/BelowZeroRetrogen/read (Lnet/minecraft/nbt/CompoundTag;)Lnet/minecraft/world/level/levelgen/BelowZeroRetrogen; +MD: net/minecraft/world/level/levelgen/BelowZeroRetrogen/m_188490_ (Lnet/minecraft/world/level/chunk/ProtoChunk;Lnet/minecraft/core/BlockPos;)V net/minecraft/world/level/levelgen/BelowZeroRetrogen/lambda$replaceOldBedrock$6 (Lnet/minecraft/world/level/chunk/ProtoChunk;Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/world/level/levelgen/BelowZeroRetrogen/m_198214_ (II)Z net/minecraft/world/level/levelgen/BelowZeroRetrogen/hasBedrockHole (II)Z +MD: net/minecraft/world/level/levelgen/BelowZeroRetrogen/m_198217_ (Lnet/minecraft/world/level/chunk/ProtoChunk;Lnet/minecraft/core/BlockPos;)V net/minecraft/world/level/levelgen/BelowZeroRetrogen/lambda$applyBedrockMask$7 (Lnet/minecraft/world/level/chunk/ProtoChunk;Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/world/level/levelgen/BelowZeroRetrogen/m_198220_ ()Z net/minecraft/world/level/levelgen/BelowZeroRetrogen/hasBedrockHoles ()Z +MD: net/minecraft/world/level/levelgen/BelowZeroRetrogen/m_198221_ (Lnet/minecraft/world/level/chunk/ProtoChunk;)V net/minecraft/world/level/levelgen/BelowZeroRetrogen/applyBedrockMask (Lnet/minecraft/world/level/chunk/ProtoChunk;)V +MD: net/minecraft/world/level/levelgen/BelowZeroRetrogen/m_204531_ (Lnet/minecraft/world/level/biome/BiomeResolver;Lnet/minecraft/world/level/chunk/ChunkAccess;)Lnet/minecraft/world/level/biome/BiomeResolver; net/minecraft/world/level/levelgen/BelowZeroRetrogen/getBiomeResolver (Lnet/minecraft/world/level/biome/BiomeResolver;Lnet/minecraft/world/level/chunk/ChunkAccess;)Lnet/minecraft/world/level/biome/BiomeResolver; +MD: net/minecraft/world/level/levelgen/BelowZeroRetrogen/m_204534_ (Lnet/minecraft/world/level/biome/BiomeResolver;Ljava/util/function/Predicate;Lnet/minecraft/world/level/chunk/ChunkAccess;IIILnet/minecraft/world/level/biome/Climate$Sampler;)Lnet/minecraft/core/Holder; net/minecraft/world/level/levelgen/BelowZeroRetrogen/lambda$getBiomeResolver$8 (Lnet/minecraft/world/level/biome/BiomeResolver;Ljava/util/function/Predicate;Lnet/minecraft/world/level/chunk/ChunkAccess;IIILnet/minecraft/world/level/biome/Climate$Sampler;)Lnet/minecraft/core/Holder; +MD: net/minecraft/world/level/levelgen/BelowZeroRetrogen/m_274282_ (Lnet/minecraft/world/level/chunk/ChunkStatus;)Lcom/mojang/serialization/DataResult; net/minecraft/world/level/levelgen/BelowZeroRetrogen/lambda$static$3 (Lnet/minecraft/world/level/chunk/ChunkStatus;)Lcom/mojang/serialization/DataResult; +MD: net/minecraft/world/level/levelgen/BelowZeroRetrogen/m_274283_ ()Ljava/lang/String; net/minecraft/world/level/levelgen/BelowZeroRetrogen/lambda$static$2 ()Ljava/lang/String; +MD: net/minecraft/world/level/levelgen/BelowZeroRetrogen$1/ ()V net/minecraft/world/level/levelgen/BelowZeroRetrogen$1/ ()V +MD: net/minecraft/world/level/levelgen/BelowZeroRetrogen$1/m_141928_ ()I net/minecraft/world/level/levelgen/BelowZeroRetrogen$1/getHeight ()I +MD: net/minecraft/world/level/levelgen/BelowZeroRetrogen$1/m_141937_ ()I net/minecraft/world/level/levelgen/BelowZeroRetrogen$1/getMinBuildHeight ()I +MD: net/minecraft/world/level/levelgen/BitRandomSource/m_188499_ ()Z net/minecraft/world/level/levelgen/BitRandomSource/nextBoolean ()Z +MD: net/minecraft/world/level/levelgen/BitRandomSource/m_188500_ ()D net/minecraft/world/level/levelgen/BitRandomSource/nextDouble ()D +MD: net/minecraft/world/level/levelgen/BitRandomSource/m_188501_ ()F net/minecraft/world/level/levelgen/BitRandomSource/nextFloat ()F +MD: net/minecraft/world/level/levelgen/BitRandomSource/m_188502_ ()I net/minecraft/world/level/levelgen/BitRandomSource/nextInt ()I +MD: net/minecraft/world/level/levelgen/BitRandomSource/m_188503_ (I)I net/minecraft/world/level/levelgen/BitRandomSource/nextInt (I)I +MD: net/minecraft/world/level/levelgen/BitRandomSource/m_188505_ ()J net/minecraft/world/level/levelgen/BitRandomSource/nextLong ()J +MD: net/minecraft/world/level/levelgen/BitRandomSource/m_64707_ (I)I net/minecraft/world/level/levelgen/BitRandomSource/next (I)I +MD: net/minecraft/world/level/levelgen/Column/ ()V net/minecraft/world/level/levelgen/Column/ ()V +MD: net/minecraft/world/level/levelgen/Column/m_142009_ ()Ljava/util/OptionalInt; net/minecraft/world/level/levelgen/Column/getFloor ()Ljava/util/OptionalInt; +MD: net/minecraft/world/level/levelgen/Column/m_142011_ ()Ljava/util/OptionalInt; net/minecraft/world/level/levelgen/Column/getCeiling ()Ljava/util/OptionalInt; +MD: net/minecraft/world/level/levelgen/Column/m_142030_ ()Ljava/util/OptionalInt; net/minecraft/world/level/levelgen/Column/getHeight ()Ljava/util/OptionalInt; +MD: net/minecraft/world/level/levelgen/Column/m_158161_ ()Lnet/minecraft/world/level/levelgen/Column; net/minecraft/world/level/levelgen/Column/line ()Lnet/minecraft/world/level/levelgen/Column; +MD: net/minecraft/world/level/levelgen/Column/m_158162_ (I)Lnet/minecraft/world/level/levelgen/Column; net/minecraft/world/level/levelgen/Column/below (I)Lnet/minecraft/world/level/levelgen/Column; +MD: net/minecraft/world/level/levelgen/Column/m_158164_ (II)Lnet/minecraft/world/level/levelgen/Column$Range; net/minecraft/world/level/levelgen/Column/around (II)Lnet/minecraft/world/level/levelgen/Column$Range; +MD: net/minecraft/world/level/levelgen/Column/m_158167_ (Lnet/minecraft/world/level/LevelSimulatedReader;ILjava/util/function/Predicate;Ljava/util/function/Predicate;Lnet/minecraft/core/BlockPos$MutableBlockPos;ILnet/minecraft/core/Direction;)Ljava/util/OptionalInt; net/minecraft/world/level/levelgen/Column/scanDirection (Lnet/minecraft/world/level/LevelSimulatedReader;ILjava/util/function/Predicate;Ljava/util/function/Predicate;Lnet/minecraft/core/BlockPos$MutableBlockPos;ILnet/minecraft/core/Direction;)Ljava/util/OptionalInt; +MD: net/minecraft/world/level/levelgen/Column/m_158175_ (Lnet/minecraft/world/level/LevelSimulatedReader;Lnet/minecraft/core/BlockPos;ILjava/util/function/Predicate;Ljava/util/function/Predicate;)Ljava/util/Optional; net/minecraft/world/level/levelgen/Column/scan (Lnet/minecraft/world/level/LevelSimulatedReader;Lnet/minecraft/core/BlockPos;ILjava/util/function/Predicate;Ljava/util/function/Predicate;)Ljava/util/Optional; +MD: net/minecraft/world/level/levelgen/Column/m_158181_ (Ljava/util/OptionalInt;)Lnet/minecraft/world/level/levelgen/Column; net/minecraft/world/level/levelgen/Column/withFloor (Ljava/util/OptionalInt;)Lnet/minecraft/world/level/levelgen/Column; +MD: net/minecraft/world/level/levelgen/Column/m_158183_ (Ljava/util/OptionalInt;Ljava/util/OptionalInt;)Lnet/minecraft/world/level/levelgen/Column; net/minecraft/world/level/levelgen/Column/create (Ljava/util/OptionalInt;Ljava/util/OptionalInt;)Lnet/minecraft/world/level/levelgen/Column; +MD: net/minecraft/world/level/levelgen/Column/m_158186_ (I)Lnet/minecraft/world/level/levelgen/Column; net/minecraft/world/level/levelgen/Column/fromHighest (I)Lnet/minecraft/world/level/levelgen/Column; +MD: net/minecraft/world/level/levelgen/Column/m_158188_ (II)Lnet/minecraft/world/level/levelgen/Column$Range; net/minecraft/world/level/levelgen/Column/inside (II)Lnet/minecraft/world/level/levelgen/Column$Range; +MD: net/minecraft/world/level/levelgen/Column/m_158191_ (Ljava/util/OptionalInt;)Lnet/minecraft/world/level/levelgen/Column; net/minecraft/world/level/levelgen/Column/withCeiling (Ljava/util/OptionalInt;)Lnet/minecraft/world/level/levelgen/Column; +MD: net/minecraft/world/level/levelgen/Column/m_158193_ (I)Lnet/minecraft/world/level/levelgen/Column; net/minecraft/world/level/levelgen/Column/above (I)Lnet/minecraft/world/level/levelgen/Column; +MD: net/minecraft/world/level/levelgen/Column/m_158195_ (I)Lnet/minecraft/world/level/levelgen/Column; net/minecraft/world/level/levelgen/Column/fromLowest (I)Lnet/minecraft/world/level/levelgen/Column; +MD: net/minecraft/world/level/levelgen/Column$Line/ ()V net/minecraft/world/level/levelgen/Column$Line/ ()V +MD: net/minecraft/world/level/levelgen/Column$Line/ ()V net/minecraft/world/level/levelgen/Column$Line/ ()V +MD: net/minecraft/world/level/levelgen/Column$Line/m_142009_ ()Ljava/util/OptionalInt; net/minecraft/world/level/levelgen/Column$Line/getFloor ()Ljava/util/OptionalInt; +MD: net/minecraft/world/level/levelgen/Column$Line/m_142011_ ()Ljava/util/OptionalInt; net/minecraft/world/level/levelgen/Column$Line/getCeiling ()Ljava/util/OptionalInt; +MD: net/minecraft/world/level/levelgen/Column$Line/m_142030_ ()Ljava/util/OptionalInt; net/minecraft/world/level/levelgen/Column$Line/getHeight ()Ljava/util/OptionalInt; +MD: net/minecraft/world/level/levelgen/Column$Line/toString ()Ljava/lang/String; net/minecraft/world/level/levelgen/Column$Line/toString ()Ljava/lang/String; +MD: net/minecraft/world/level/levelgen/Column$Range/ (II)V net/minecraft/world/level/levelgen/Column$Range/ (II)V +MD: net/minecraft/world/level/levelgen/Column$Range/m_142009_ ()Ljava/util/OptionalInt; net/minecraft/world/level/levelgen/Column$Range/getFloor ()Ljava/util/OptionalInt; +MD: net/minecraft/world/level/levelgen/Column$Range/m_142011_ ()Ljava/util/OptionalInt; net/minecraft/world/level/levelgen/Column$Range/getCeiling ()Ljava/util/OptionalInt; +MD: net/minecraft/world/level/levelgen/Column$Range/m_142030_ ()Ljava/util/OptionalInt; net/minecraft/world/level/levelgen/Column$Range/getHeight ()Ljava/util/OptionalInt; +MD: net/minecraft/world/level/levelgen/Column$Range/m_158212_ ()I net/minecraft/world/level/levelgen/Column$Range/ceiling ()I +MD: net/minecraft/world/level/levelgen/Column$Range/m_158213_ ()I net/minecraft/world/level/levelgen/Column$Range/floor ()I +MD: net/minecraft/world/level/levelgen/Column$Range/m_158214_ ()I net/minecraft/world/level/levelgen/Column$Range/height ()I +MD: net/minecraft/world/level/levelgen/Column$Range/toString ()Ljava/lang/String; net/minecraft/world/level/levelgen/Column$Range/toString ()Ljava/lang/String; +MD: net/minecraft/world/level/levelgen/Column$Ray/ (IZ)V net/minecraft/world/level/levelgen/Column$Ray/ (IZ)V +MD: net/minecraft/world/level/levelgen/Column$Ray/m_142009_ ()Ljava/util/OptionalInt; net/minecraft/world/level/levelgen/Column$Ray/getFloor ()Ljava/util/OptionalInt; +MD: net/minecraft/world/level/levelgen/Column$Ray/m_142011_ ()Ljava/util/OptionalInt; net/minecraft/world/level/levelgen/Column$Ray/getCeiling ()Ljava/util/OptionalInt; +MD: net/minecraft/world/level/levelgen/Column$Ray/m_142030_ ()Ljava/util/OptionalInt; net/minecraft/world/level/levelgen/Column$Ray/getHeight ()Ljava/util/OptionalInt; +MD: net/minecraft/world/level/levelgen/Column$Ray/toString ()Ljava/lang/String; net/minecraft/world/level/levelgen/Column$Ray/toString ()Ljava/lang/String; +MD: net/minecraft/world/level/levelgen/DebugLevelSource/ ()V net/minecraft/world/level/levelgen/DebugLevelSource/ ()V +MD: net/minecraft/world/level/levelgen/DebugLevelSource/ (Lnet/minecraft/core/Holder$Reference;)V net/minecraft/world/level/levelgen/DebugLevelSource/ (Lnet/minecraft/core/Holder$Reference;)V +MD: net/minecraft/world/level/levelgen/DebugLevelSource/m_142062_ ()I net/minecraft/world/level/levelgen/DebugLevelSource/getMinY ()I +MD: net/minecraft/world/level/levelgen/DebugLevelSource/m_208207_ (Lnet/minecraft/world/level/block/Block;)Ljava/util/stream/Stream; net/minecraft/world/level/levelgen/DebugLevelSource/lambda$static$1 (Lnet/minecraft/world/level/block/Block;)Ljava/util/stream/Stream; +MD: net/minecraft/world/level/levelgen/DebugLevelSource/m_213600_ (Ljava/util/List;Lnet/minecraft/world/level/levelgen/RandomState;Lnet/minecraft/core/BlockPos;)V net/minecraft/world/level/levelgen/DebugLevelSource/addDebugScreenInfo (Ljava/util/List;Lnet/minecraft/world/level/levelgen/RandomState;Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/world/level/levelgen/DebugLevelSource/m_213609_ (Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/world/level/chunk/ChunkAccess;Lnet/minecraft/world/level/StructureManager;)V net/minecraft/world/level/levelgen/DebugLevelSource/applyBiomeDecoration (Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/world/level/chunk/ChunkAccess;Lnet/minecraft/world/level/StructureManager;)V +MD: net/minecraft/world/level/levelgen/DebugLevelSource/m_213679_ (Lnet/minecraft/server/level/WorldGenRegion;JLnet/minecraft/world/level/levelgen/RandomState;Lnet/minecraft/world/level/biome/BiomeManager;Lnet/minecraft/world/level/StructureManager;Lnet/minecraft/world/level/chunk/ChunkAccess;Lnet/minecraft/world/level/levelgen/GenerationStep$Carving;)V net/minecraft/world/level/levelgen/DebugLevelSource/applyCarvers (Lnet/minecraft/server/level/WorldGenRegion;JLnet/minecraft/world/level/levelgen/RandomState;Lnet/minecraft/world/level/biome/BiomeManager;Lnet/minecraft/world/level/StructureManager;Lnet/minecraft/world/level/chunk/ChunkAccess;Lnet/minecraft/world/level/levelgen/GenerationStep$Carving;)V +MD: net/minecraft/world/level/levelgen/DebugLevelSource/m_213974_ (Ljava/util/concurrent/Executor;Lnet/minecraft/world/level/levelgen/blending/Blender;Lnet/minecraft/world/level/levelgen/RandomState;Lnet/minecraft/world/level/StructureManager;Lnet/minecraft/world/level/chunk/ChunkAccess;)Ljava/util/concurrent/CompletableFuture; net/minecraft/world/level/levelgen/DebugLevelSource/fillFromNoise (Ljava/util/concurrent/Executor;Lnet/minecraft/world/level/levelgen/blending/Blender;Lnet/minecraft/world/level/levelgen/RandomState;Lnet/minecraft/world/level/StructureManager;Lnet/minecraft/world/level/chunk/ChunkAccess;)Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/world/level/levelgen/DebugLevelSource/m_214096_ (IILnet/minecraft/world/level/levelgen/Heightmap$Types;Lnet/minecraft/world/level/LevelHeightAccessor;Lnet/minecraft/world/level/levelgen/RandomState;)I net/minecraft/world/level/levelgen/DebugLevelSource/getBaseHeight (IILnet/minecraft/world/level/levelgen/Heightmap$Types;Lnet/minecraft/world/level/LevelHeightAccessor;Lnet/minecraft/world/level/levelgen/RandomState;)I +MD: net/minecraft/world/level/levelgen/DebugLevelSource/m_214184_ (IILnet/minecraft/world/level/LevelHeightAccessor;Lnet/minecraft/world/level/levelgen/RandomState;)Lnet/minecraft/world/level/NoiseColumn; net/minecraft/world/level/levelgen/DebugLevelSource/getBaseColumn (IILnet/minecraft/world/level/LevelHeightAccessor;Lnet/minecraft/world/level/levelgen/RandomState;)Lnet/minecraft/world/level/NoiseColumn; +MD: net/minecraft/world/level/levelgen/DebugLevelSource/m_214194_ (Lnet/minecraft/server/level/WorldGenRegion;Lnet/minecraft/world/level/StructureManager;Lnet/minecraft/world/level/levelgen/RandomState;Lnet/minecraft/world/level/chunk/ChunkAccess;)V net/minecraft/world/level/levelgen/DebugLevelSource/buildSurface (Lnet/minecraft/server/level/WorldGenRegion;Lnet/minecraft/world/level/StructureManager;Lnet/minecraft/world/level/levelgen/RandomState;Lnet/minecraft/world/level/chunk/ChunkAccess;)V +MD: net/minecraft/world/level/levelgen/DebugLevelSource/m_254814_ (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/world/level/levelgen/DebugLevelSource/lambda$static$0 (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/world/level/levelgen/DebugLevelSource/m_6331_ ()I net/minecraft/world/level/levelgen/DebugLevelSource/getGenDepth ()I +MD: net/minecraft/world/level/levelgen/DebugLevelSource/m_6337_ ()I net/minecraft/world/level/levelgen/DebugLevelSource/getSeaLevel ()I +MD: net/minecraft/world/level/levelgen/DebugLevelSource/m_64148_ (II)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/levelgen/DebugLevelSource/getBlockStateFor (II)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/levelgen/DebugLevelSource/m_6909_ ()Lcom/mojang/serialization/Codec; net/minecraft/world/level/levelgen/DebugLevelSource/codec ()Lcom/mojang/serialization/Codec; +MD: net/minecraft/world/level/levelgen/DebugLevelSource/m_6929_ (Lnet/minecraft/server/level/WorldGenRegion;)V net/minecraft/world/level/levelgen/DebugLevelSource/spawnOriginalMobs (Lnet/minecraft/server/level/WorldGenRegion;)V +MD: net/minecraft/world/level/levelgen/Density/ ()V net/minecraft/world/level/levelgen/Density/ ()V +MD: net/minecraft/world/level/levelgen/DensityFunction/ ()V net/minecraft/world/level/levelgen/DensityFunction/ ()V +MD: net/minecraft/world/level/levelgen/DensityFunction/m_207362_ ([DLnet/minecraft/world/level/levelgen/DensityFunction$ContextProvider;)V net/minecraft/world/level/levelgen/DensityFunction/fillArray ([DLnet/minecraft/world/level/levelgen/DensityFunction$ContextProvider;)V +MD: net/minecraft/world/level/levelgen/DensityFunction/m_207386_ (Lnet/minecraft/world/level/levelgen/DensityFunction$FunctionContext;)D net/minecraft/world/level/levelgen/DensityFunction/compute (Lnet/minecraft/world/level/levelgen/DensityFunction$FunctionContext;)D +MD: net/minecraft/world/level/levelgen/DensityFunction/m_207401_ ()D net/minecraft/world/level/levelgen/DensityFunction/maxValue ()D +MD: net/minecraft/world/level/levelgen/DensityFunction/m_207402_ ()D net/minecraft/world/level/levelgen/DensityFunction/minValue ()D +MD: net/minecraft/world/level/levelgen/DensityFunction/m_207456_ (Lnet/minecraft/world/level/levelgen/DensityFunction$Visitor;)Lnet/minecraft/world/level/levelgen/DensityFunction; net/minecraft/world/level/levelgen/DensityFunction/mapAll (Lnet/minecraft/world/level/levelgen/DensityFunction$Visitor;)Lnet/minecraft/world/level/levelgen/DensityFunction; +MD: net/minecraft/world/level/levelgen/DensityFunction/m_208220_ (DD)Lnet/minecraft/world/level/levelgen/DensityFunction; net/minecraft/world/level/levelgen/DensityFunction/clamp (DD)Lnet/minecraft/world/level/levelgen/DensityFunction; +MD: net/minecraft/world/level/levelgen/DensityFunction/m_208225_ (Lnet/minecraft/world/level/levelgen/DensityFunction;)Lnet/minecraft/core/Holder; net/minecraft/world/level/levelgen/DensityFunction/lambda$static$0 (Lnet/minecraft/world/level/levelgen/DensityFunction;)Lnet/minecraft/core/Holder; +MD: net/minecraft/world/level/levelgen/DensityFunction/m_208229_ ()Lnet/minecraft/world/level/levelgen/DensityFunction; net/minecraft/world/level/levelgen/DensityFunction/abs ()Lnet/minecraft/world/level/levelgen/DensityFunction; +MD: net/minecraft/world/level/levelgen/DensityFunction/m_208230_ ()Lnet/minecraft/world/level/levelgen/DensityFunction; net/minecraft/world/level/levelgen/DensityFunction/square ()Lnet/minecraft/world/level/levelgen/DensityFunction; +MD: net/minecraft/world/level/levelgen/DensityFunction/m_208231_ ()Lnet/minecraft/world/level/levelgen/DensityFunction; net/minecraft/world/level/levelgen/DensityFunction/cube ()Lnet/minecraft/world/level/levelgen/DensityFunction; +MD: net/minecraft/world/level/levelgen/DensityFunction/m_208232_ ()Lnet/minecraft/world/level/levelgen/DensityFunction; net/minecraft/world/level/levelgen/DensityFunction/halfNegative ()Lnet/minecraft/world/level/levelgen/DensityFunction; +MD: net/minecraft/world/level/levelgen/DensityFunction/m_208233_ ()Lnet/minecraft/world/level/levelgen/DensityFunction; net/minecraft/world/level/levelgen/DensityFunction/quarterNegative ()Lnet/minecraft/world/level/levelgen/DensityFunction; +MD: net/minecraft/world/level/levelgen/DensityFunction/m_208234_ ()Lnet/minecraft/world/level/levelgen/DensityFunction; net/minecraft/world/level/levelgen/DensityFunction/squeeze ()Lnet/minecraft/world/level/levelgen/DensityFunction; +MD: net/minecraft/world/level/levelgen/DensityFunction/m_214023_ ()Lnet/minecraft/util/KeyDispatchDataCodec; net/minecraft/world/level/levelgen/DensityFunction/codec ()Lnet/minecraft/util/KeyDispatchDataCodec; +MD: net/minecraft/world/level/levelgen/DensityFunction$ContextProvider/m_207207_ ([DLnet/minecraft/world/level/levelgen/DensityFunction;)V net/minecraft/world/level/levelgen/DensityFunction$ContextProvider/fillAllDirectly ([DLnet/minecraft/world/level/levelgen/DensityFunction;)V +MD: net/minecraft/world/level/levelgen/DensityFunction$ContextProvider/m_207263_ (I)Lnet/minecraft/world/level/levelgen/DensityFunction$FunctionContext; net/minecraft/world/level/levelgen/DensityFunction$ContextProvider/forIndex (I)Lnet/minecraft/world/level/levelgen/DensityFunction$FunctionContext; +MD: net/minecraft/world/level/levelgen/DensityFunction$FunctionContext/m_188743_ ()Lnet/minecraft/world/level/levelgen/blending/Blender; net/minecraft/world/level/levelgen/DensityFunction$FunctionContext/getBlender ()Lnet/minecraft/world/level/levelgen/blending/Blender; +MD: net/minecraft/world/level/levelgen/DensityFunction$FunctionContext/m_207113_ ()I net/minecraft/world/level/levelgen/DensityFunction$FunctionContext/blockZ ()I +MD: net/minecraft/world/level/levelgen/DensityFunction$FunctionContext/m_207114_ ()I net/minecraft/world/level/levelgen/DensityFunction$FunctionContext/blockY ()I +MD: net/minecraft/world/level/levelgen/DensityFunction$FunctionContext/m_207115_ ()I net/minecraft/world/level/levelgen/DensityFunction$FunctionContext/blockX ()I +MD: net/minecraft/world/level/levelgen/DensityFunction$NoiseHolder/ ()V net/minecraft/world/level/levelgen/DensityFunction$NoiseHolder/ ()V +MD: net/minecraft/world/level/levelgen/DensityFunction$NoiseHolder/ (Lnet/minecraft/core/Holder;Lnet/minecraft/world/level/levelgen/synth/NormalNoise;)V net/minecraft/world/level/levelgen/DensityFunction$NoiseHolder/ (Lnet/minecraft/core/Holder;Lnet/minecraft/world/level/levelgen/synth/NormalNoise;)V +MD: net/minecraft/world/level/levelgen/DensityFunction$NoiseHolder/ (Lnet/minecraft/core/Holder;)V net/minecraft/world/level/levelgen/DensityFunction$NoiseHolder/ (Lnet/minecraft/core/Holder;)V +MD: net/minecraft/world/level/levelgen/DensityFunction$NoiseHolder/equals (Ljava/lang/Object;)Z net/minecraft/world/level/levelgen/DensityFunction$NoiseHolder/equals (Ljava/lang/Object;)Z +MD: net/minecraft/world/level/levelgen/DensityFunction$NoiseHolder/f_223997_ ()Lnet/minecraft/core/Holder; net/minecraft/world/level/levelgen/DensityFunction$NoiseHolder/noiseData ()Lnet/minecraft/core/Holder; +MD: net/minecraft/world/level/levelgen/DensityFunction$NoiseHolder/f_223998_ ()Lnet/minecraft/world/level/levelgen/synth/NormalNoise; net/minecraft/world/level/levelgen/DensityFunction$NoiseHolder/noise ()Lnet/minecraft/world/level/levelgen/synth/NormalNoise; +MD: net/minecraft/world/level/levelgen/DensityFunction$NoiseHolder/hashCode ()I net/minecraft/world/level/levelgen/DensityFunction$NoiseHolder/hashCode ()I +MD: net/minecraft/world/level/levelgen/DensityFunction$NoiseHolder/m_224005_ ()D net/minecraft/world/level/levelgen/DensityFunction$NoiseHolder/maxValue ()D +MD: net/minecraft/world/level/levelgen/DensityFunction$NoiseHolder/m_224006_ (DDD)D net/minecraft/world/level/levelgen/DensityFunction$NoiseHolder/getValue (DDD)D +MD: net/minecraft/world/level/levelgen/DensityFunction$NoiseHolder/m_224010_ (Lnet/minecraft/core/Holder;)Lnet/minecraft/world/level/levelgen/DensityFunction$NoiseHolder; net/minecraft/world/level/levelgen/DensityFunction$NoiseHolder/lambda$static$0 (Lnet/minecraft/core/Holder;)Lnet/minecraft/world/level/levelgen/DensityFunction$NoiseHolder; +MD: net/minecraft/world/level/levelgen/DensityFunction$NoiseHolder/toString ()Ljava/lang/String; net/minecraft/world/level/levelgen/DensityFunction$NoiseHolder/toString ()Ljava/lang/String; +MD: net/minecraft/world/level/levelgen/DensityFunction$SimpleFunction/m_207362_ ([DLnet/minecraft/world/level/levelgen/DensityFunction$ContextProvider;)V net/minecraft/world/level/levelgen/DensityFunction$SimpleFunction/fillArray ([DLnet/minecraft/world/level/levelgen/DensityFunction$ContextProvider;)V +MD: net/minecraft/world/level/levelgen/DensityFunction$SimpleFunction/m_207456_ (Lnet/minecraft/world/level/levelgen/DensityFunction$Visitor;)Lnet/minecraft/world/level/levelgen/DensityFunction; net/minecraft/world/level/levelgen/DensityFunction$SimpleFunction/mapAll (Lnet/minecraft/world/level/levelgen/DensityFunction$Visitor;)Lnet/minecraft/world/level/levelgen/DensityFunction; +MD: net/minecraft/world/level/levelgen/DensityFunction$SinglePointContext/ (III)V net/minecraft/world/level/levelgen/DensityFunction$SinglePointContext/ (III)V +MD: net/minecraft/world/level/levelgen/DensityFunction$SinglePointContext/equals (Ljava/lang/Object;)Z net/minecraft/world/level/levelgen/DensityFunction$SinglePointContext/equals (Ljava/lang/Object;)Z +MD: net/minecraft/world/level/levelgen/DensityFunction$SinglePointContext/hashCode ()I net/minecraft/world/level/levelgen/DensityFunction$SinglePointContext/hashCode ()I +MD: net/minecraft/world/level/levelgen/DensityFunction$SinglePointContext/m_207113_ ()I net/minecraft/world/level/levelgen/DensityFunction$SinglePointContext/blockZ ()I +MD: net/minecraft/world/level/levelgen/DensityFunction$SinglePointContext/m_207114_ ()I net/minecraft/world/level/levelgen/DensityFunction$SinglePointContext/blockY ()I +MD: net/minecraft/world/level/levelgen/DensityFunction$SinglePointContext/m_207115_ ()I net/minecraft/world/level/levelgen/DensityFunction$SinglePointContext/blockX ()I +MD: net/minecraft/world/level/levelgen/DensityFunction$SinglePointContext/toString ()Ljava/lang/String; net/minecraft/world/level/levelgen/DensityFunction$SinglePointContext/toString ()Ljava/lang/String; +MD: net/minecraft/world/level/levelgen/DensityFunction$Visitor/m_213918_ (Lnet/minecraft/world/level/levelgen/DensityFunction$NoiseHolder;)Lnet/minecraft/world/level/levelgen/DensityFunction$NoiseHolder; net/minecraft/world/level/levelgen/DensityFunction$Visitor/visitNoise (Lnet/minecraft/world/level/levelgen/DensityFunction$NoiseHolder;)Lnet/minecraft/world/level/levelgen/DensityFunction$NoiseHolder; +MD: net/minecraft/world/level/levelgen/DensityFunction$Visitor/m_214017_ (Lnet/minecraft/world/level/levelgen/DensityFunction;)Lnet/minecraft/world/level/levelgen/DensityFunction; net/minecraft/world/level/levelgen/DensityFunction$Visitor/apply (Lnet/minecraft/world/level/levelgen/DensityFunction;)Lnet/minecraft/world/level/levelgen/DensityFunction; +MD: net/minecraft/world/level/levelgen/DensityFunctions/ ()V net/minecraft/world/level/levelgen/DensityFunctions/ ()V +MD: net/minecraft/world/level/levelgen/DensityFunctions/ ()V net/minecraft/world/level/levelgen/DensityFunctions/ ()V +MD: net/minecraft/world/level/levelgen/DensityFunctions/m_208263_ ()Lnet/minecraft/world/level/levelgen/DensityFunction; net/minecraft/world/level/levelgen/DensityFunctions/zero ()Lnet/minecraft/world/level/levelgen/DensityFunction; +MD: net/minecraft/world/level/levelgen/DensityFunctions/m_208264_ (D)Lnet/minecraft/world/level/levelgen/DensityFunction; net/minecraft/world/level/levelgen/DensityFunctions/constant (D)Lnet/minecraft/world/level/levelgen/DensityFunction; +MD: net/minecraft/world/level/levelgen/DensityFunctions/m_208266_ (IIDD)Lnet/minecraft/world/level/levelgen/DensityFunction; net/minecraft/world/level/levelgen/DensityFunctions/yClampedGradient (IIDD)Lnet/minecraft/world/level/levelgen/DensityFunction; +MD: net/minecraft/world/level/levelgen/DensityFunctions/m_208271_ (J)Lnet/minecraft/world/level/levelgen/DensityFunction; net/minecraft/world/level/levelgen/DensityFunctions/endIslands (J)Lnet/minecraft/world/level/levelgen/DensityFunction; +MD: net/minecraft/world/level/levelgen/DensityFunctions/m_208281_ (Lnet/minecraft/world/level/levelgen/DensityFunction;)Lnet/minecraft/world/level/levelgen/DensityFunction; net/minecraft/world/level/levelgen/DensityFunctions/interpolated (Lnet/minecraft/world/level/levelgen/DensityFunction;)Lnet/minecraft/world/level/levelgen/DensityFunction; +MD: net/minecraft/world/level/levelgen/DensityFunctions/m_208283_ (Lnet/minecraft/world/level/levelgen/DensityFunction;DD)Lnet/minecraft/world/level/levelgen/DensityFunction; net/minecraft/world/level/levelgen/DensityFunctions/mapFromUnitTo (Lnet/minecraft/world/level/levelgen/DensityFunction;DD)Lnet/minecraft/world/level/levelgen/DensityFunction; +MD: net/minecraft/world/level/levelgen/DensityFunctions/m_208287_ (Lnet/minecraft/world/level/levelgen/DensityFunction;DDLnet/minecraft/world/level/levelgen/DensityFunction;Lnet/minecraft/world/level/levelgen/DensityFunction;)Lnet/minecraft/world/level/levelgen/DensityFunction; net/minecraft/world/level/levelgen/DensityFunctions/rangeChoice (Lnet/minecraft/world/level/levelgen/DensityFunction;DDLnet/minecraft/world/level/levelgen/DensityFunction;Lnet/minecraft/world/level/levelgen/DensityFunction;)Lnet/minecraft/world/level/levelgen/DensityFunction; +MD: net/minecraft/world/level/levelgen/DensityFunctions/m_208293_ (Lnet/minecraft/world/level/levelgen/DensityFunction;Lnet/minecraft/world/level/levelgen/DensityFunction;)Lnet/minecraft/world/level/levelgen/DensityFunction; net/minecraft/world/level/levelgen/DensityFunctions/add (Lnet/minecraft/world/level/levelgen/DensityFunction;Lnet/minecraft/world/level/levelgen/DensityFunction;)Lnet/minecraft/world/level/levelgen/DensityFunction; +MD: net/minecraft/world/level/levelgen/DensityFunctions/m_208296_ (Lnet/minecraft/world/level/levelgen/DensityFunction;Lnet/minecraft/world/level/levelgen/DensityFunction;DLnet/minecraft/core/Holder;)Lnet/minecraft/world/level/levelgen/DensityFunction; net/minecraft/world/level/levelgen/DensityFunctions/shiftedNoise2d (Lnet/minecraft/world/level/levelgen/DensityFunction;Lnet/minecraft/world/level/levelgen/DensityFunction;DLnet/minecraft/core/Holder;)Lnet/minecraft/world/level/levelgen/DensityFunction; +MD: net/minecraft/world/level/levelgen/DensityFunctions/m_208301_ (Lnet/minecraft/world/level/levelgen/DensityFunction;Lnet/minecraft/world/level/levelgen/DensityFunction;Lnet/minecraft/world/level/levelgen/DensityFunction;)Lnet/minecraft/world/level/levelgen/DensityFunction; net/minecraft/world/level/levelgen/DensityFunctions/lerp (Lnet/minecraft/world/level/levelgen/DensityFunction;Lnet/minecraft/world/level/levelgen/DensityFunction;Lnet/minecraft/world/level/levelgen/DensityFunction;)Lnet/minecraft/world/level/levelgen/DensityFunction; +MD: net/minecraft/world/level/levelgen/DensityFunctions/m_208312_ (Lnet/minecraft/world/level/levelgen/DensityFunction;Lnet/minecraft/world/level/levelgen/DensityFunctions$Mapped$Type;)Lnet/minecraft/world/level/levelgen/DensityFunction; net/minecraft/world/level/levelgen/DensityFunctions/map (Lnet/minecraft/world/level/levelgen/DensityFunction;Lnet/minecraft/world/level/levelgen/DensityFunctions$Mapped$Type;)Lnet/minecraft/world/level/levelgen/DensityFunction; +MD: net/minecraft/world/level/levelgen/DensityFunctions/m_208315_ (Lnet/minecraft/world/level/levelgen/DensityFunction;Lnet/minecraft/core/Holder;Lnet/minecraft/world/level/levelgen/DensityFunctions$WeirdScaledSampler$RarityValueMapper;)Lnet/minecraft/world/level/levelgen/DensityFunction; net/minecraft/world/level/levelgen/DensityFunctions/weirdScaledSampler (Lnet/minecraft/world/level/levelgen/DensityFunction;Lnet/minecraft/core/Holder;Lnet/minecraft/world/level/levelgen/DensityFunctions$WeirdScaledSampler$RarityValueMapper;)Lnet/minecraft/world/level/levelgen/DensityFunction; +MD: net/minecraft/world/level/levelgen/DensityFunctions/m_208322_ (Lnet/minecraft/core/Holder;)Lnet/minecraft/world/level/levelgen/DensityFunction; net/minecraft/world/level/levelgen/DensityFunctions/noise (Lnet/minecraft/core/Holder;)Lnet/minecraft/world/level/levelgen/DensityFunction; +MD: net/minecraft/world/level/levelgen/DensityFunctions/m_208324_ (Lnet/minecraft/core/Holder;D)Lnet/minecraft/world/level/levelgen/DensityFunction; net/minecraft/world/level/levelgen/DensityFunctions/noise (Lnet/minecraft/core/Holder;D)Lnet/minecraft/world/level/levelgen/DensityFunction; +MD: net/minecraft/world/level/levelgen/DensityFunctions/m_208327_ (Lnet/minecraft/core/Holder;DD)Lnet/minecraft/world/level/levelgen/DensityFunction; net/minecraft/world/level/levelgen/DensityFunctions/mappedNoise (Lnet/minecraft/core/Holder;DD)Lnet/minecraft/world/level/levelgen/DensityFunction; +MD: net/minecraft/world/level/levelgen/DensityFunctions/m_208331_ (Lnet/minecraft/core/Holder;DDD)Lnet/minecraft/world/level/levelgen/DensityFunction; net/minecraft/world/level/levelgen/DensityFunctions/mappedNoise (Lnet/minecraft/core/Holder;DDD)Lnet/minecraft/world/level/levelgen/DensityFunction; +MD: net/minecraft/world/level/levelgen/DensityFunctions/m_208336_ (Lnet/minecraft/core/Holder;DDDD)Lnet/minecraft/world/level/levelgen/DensityFunction; net/minecraft/world/level/levelgen/DensityFunctions/mappedNoise (Lnet/minecraft/core/Holder;DDDD)Lnet/minecraft/world/level/levelgen/DensityFunction; +MD: net/minecraft/world/level/levelgen/DensityFunctions/m_208342_ (Lnet/minecraft/core/Registry;)Lcom/mojang/serialization/Codec; net/minecraft/world/level/levelgen/DensityFunctions/bootstrap (Lnet/minecraft/core/Registry;)Lcom/mojang/serialization/Codec; +MD: net/minecraft/world/level/levelgen/DensityFunctions/m_208360_ ()Lnet/minecraft/world/level/levelgen/DensityFunction; net/minecraft/world/level/levelgen/DensityFunctions/blendAlpha ()Lnet/minecraft/world/level/levelgen/DensityFunction; +MD: net/minecraft/world/level/levelgen/DensityFunctions/m_208361_ (Lnet/minecraft/world/level/levelgen/DensityFunction;)Lnet/minecraft/world/level/levelgen/DensityFunction; net/minecraft/world/level/levelgen/DensityFunctions/flatCache (Lnet/minecraft/world/level/levelgen/DensityFunction;)Lnet/minecraft/world/level/levelgen/DensityFunction; +MD: net/minecraft/world/level/levelgen/DensityFunctions/m_208363_ (Lnet/minecraft/world/level/levelgen/DensityFunction;Lnet/minecraft/world/level/levelgen/DensityFunction;)Lnet/minecraft/world/level/levelgen/DensityFunction; net/minecraft/world/level/levelgen/DensityFunctions/mul (Lnet/minecraft/world/level/levelgen/DensityFunction;Lnet/minecraft/world/level/levelgen/DensityFunction;)Lnet/minecraft/world/level/levelgen/DensityFunction; +MD: net/minecraft/world/level/levelgen/DensityFunctions/m_208366_ (Lnet/minecraft/core/Holder;)Lnet/minecraft/world/level/levelgen/DensityFunction; net/minecraft/world/level/levelgen/DensityFunctions/shiftA (Lnet/minecraft/core/Holder;)Lnet/minecraft/world/level/levelgen/DensityFunction; +MD: net/minecraft/world/level/levelgen/DensityFunctions/m_208368_ (Lnet/minecraft/core/Holder;DD)Lnet/minecraft/world/level/levelgen/DensityFunction; net/minecraft/world/level/levelgen/DensityFunctions/noise (Lnet/minecraft/core/Holder;DD)Lnet/minecraft/world/level/levelgen/DensityFunction; +MD: net/minecraft/world/level/levelgen/DensityFunctions/m_208372_ ()Lnet/minecraft/world/level/levelgen/DensityFunction; net/minecraft/world/level/levelgen/DensityFunctions/blendOffset ()Lnet/minecraft/world/level/levelgen/DensityFunction; +MD: net/minecraft/world/level/levelgen/DensityFunctions/m_208373_ (Lnet/minecraft/world/level/levelgen/DensityFunction;)Lnet/minecraft/world/level/levelgen/DensityFunction; net/minecraft/world/level/levelgen/DensityFunctions/cache2d (Lnet/minecraft/world/level/levelgen/DensityFunction;)Lnet/minecraft/world/level/levelgen/DensityFunction; +MD: net/minecraft/world/level/levelgen/DensityFunctions/m_208375_ (Lnet/minecraft/world/level/levelgen/DensityFunction;Lnet/minecraft/world/level/levelgen/DensityFunction;)Lnet/minecraft/world/level/levelgen/DensityFunction; net/minecraft/world/level/levelgen/DensityFunctions/min (Lnet/minecraft/world/level/levelgen/DensityFunction;Lnet/minecraft/world/level/levelgen/DensityFunction;)Lnet/minecraft/world/level/levelgen/DensityFunction; +MD: net/minecraft/world/level/levelgen/DensityFunctions/m_208378_ (Lnet/minecraft/core/Holder;)Lnet/minecraft/world/level/levelgen/DensityFunction; net/minecraft/world/level/levelgen/DensityFunctions/shiftB (Lnet/minecraft/core/Holder;)Lnet/minecraft/world/level/levelgen/DensityFunction; +MD: net/minecraft/world/level/levelgen/DensityFunctions/m_208380_ (Lnet/minecraft/world/level/levelgen/DensityFunction;)Lnet/minecraft/world/level/levelgen/DensityFunction; net/minecraft/world/level/levelgen/DensityFunctions/cacheOnce (Lnet/minecraft/world/level/levelgen/DensityFunction;)Lnet/minecraft/world/level/levelgen/DensityFunction; +MD: net/minecraft/world/level/levelgen/DensityFunctions/m_208382_ (Lnet/minecraft/world/level/levelgen/DensityFunction;Lnet/minecraft/world/level/levelgen/DensityFunction;)Lnet/minecraft/world/level/levelgen/DensityFunction; net/minecraft/world/level/levelgen/DensityFunctions/max (Lnet/minecraft/world/level/levelgen/DensityFunction;Lnet/minecraft/world/level/levelgen/DensityFunction;)Lnet/minecraft/world/level/levelgen/DensityFunction; +MD: net/minecraft/world/level/levelgen/DensityFunctions/m_208385_ (Lnet/minecraft/core/Holder;)Lnet/minecraft/world/level/levelgen/DensityFunction; net/minecraft/world/level/levelgen/DensityFunctions/shift (Lnet/minecraft/core/Holder;)Lnet/minecraft/world/level/levelgen/DensityFunction; +MD: net/minecraft/world/level/levelgen/DensityFunctions/m_208387_ (Lnet/minecraft/world/level/levelgen/DensityFunction;)Lnet/minecraft/world/level/levelgen/DensityFunction; net/minecraft/world/level/levelgen/DensityFunctions/cacheAllInCell (Lnet/minecraft/world/level/levelgen/DensityFunction;)Lnet/minecraft/world/level/levelgen/DensityFunction; +MD: net/minecraft/world/level/levelgen/DensityFunctions/m_208389_ (Lnet/minecraft/world/level/levelgen/DensityFunction;)Lnet/minecraft/world/level/levelgen/DensityFunction; net/minecraft/world/level/levelgen/DensityFunctions/blendDensity (Lnet/minecraft/world/level/levelgen/DensityFunction;)Lnet/minecraft/world/level/levelgen/DensityFunction; +MD: net/minecraft/world/level/levelgen/DensityFunctions/m_224020_ (Lnet/minecraft/util/CubicSpline;)Lnet/minecraft/world/level/levelgen/DensityFunction; net/minecraft/world/level/levelgen/DensityFunctions/spline (Lnet/minecraft/util/CubicSpline;)Lnet/minecraft/world/level/levelgen/DensityFunction; +MD: net/minecraft/world/level/levelgen/DensityFunctions/m_224022_ (Lcom/mojang/datafixers/util/Either;)Lnet/minecraft/world/level/levelgen/DensityFunction; net/minecraft/world/level/levelgen/DensityFunctions/lambda$static$1 (Lcom/mojang/datafixers/util/Either;)Lnet/minecraft/world/level/levelgen/DensityFunction; +MD: net/minecraft/world/level/levelgen/DensityFunctions/m_224024_ (Lcom/mojang/serialization/Codec;Ljava/util/function/Function;Ljava/util/function/Function;)Lnet/minecraft/util/KeyDispatchDataCodec; net/minecraft/world/level/levelgen/DensityFunctions/singleArgumentCodec (Lcom/mojang/serialization/Codec;Ljava/util/function/Function;Ljava/util/function/Function;)Lnet/minecraft/util/KeyDispatchDataCodec; +MD: net/minecraft/world/level/levelgen/DensityFunctions/m_224028_ (Lcom/mojang/serialization/MapCodec;)Lnet/minecraft/util/KeyDispatchDataCodec; net/minecraft/world/level/levelgen/DensityFunctions/makeCodec (Lcom/mojang/serialization/MapCodec;)Lnet/minecraft/util/KeyDispatchDataCodec; +MD: net/minecraft/world/level/levelgen/DensityFunctions/m_224030_ (Lnet/minecraft/world/level/levelgen/DensityFunction;DLnet/minecraft/world/level/levelgen/DensityFunction;)Lnet/minecraft/world/level/levelgen/DensityFunction; net/minecraft/world/level/levelgen/DensityFunctions/lerp (Lnet/minecraft/world/level/levelgen/DensityFunction;DLnet/minecraft/world/level/levelgen/DensityFunction;)Lnet/minecraft/world/level/levelgen/DensityFunction; +MD: net/minecraft/world/level/levelgen/DensityFunctions/m_224034_ (Lnet/minecraft/core/Registry;Ljava/lang/String;Lnet/minecraft/util/KeyDispatchDataCodec;)Lcom/mojang/serialization/Codec; net/minecraft/world/level/levelgen/DensityFunctions/register (Lnet/minecraft/core/Registry;Ljava/lang/String;Lnet/minecraft/util/KeyDispatchDataCodec;)Lcom/mojang/serialization/Codec; +MD: net/minecraft/world/level/levelgen/DensityFunctions/m_224038_ (Ljava/util/function/BiFunction;Ljava/util/function/Function;Ljava/util/function/Function;)Lnet/minecraft/util/KeyDispatchDataCodec; net/minecraft/world/level/levelgen/DensityFunctions/doubleFunctionArgumentCodec (Ljava/util/function/BiFunction;Ljava/util/function/Function;Ljava/util/function/Function;)Lnet/minecraft/util/KeyDispatchDataCodec; +MD: net/minecraft/world/level/levelgen/DensityFunctions/m_224042_ (Ljava/util/function/Function;Ljava/util/function/Function;)Lnet/minecraft/util/KeyDispatchDataCodec; net/minecraft/world/level/levelgen/DensityFunctions/singleFunctionArgumentCodec (Ljava/util/function/Function;Ljava/util/function/Function;)Lnet/minecraft/util/KeyDispatchDataCodec; +MD: net/minecraft/world/level/levelgen/DensityFunctions/m_224045_ (Ljava/util/function/Function;Ljava/util/function/Function;Ljava/util/function/BiFunction;Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/world/level/levelgen/DensityFunctions/lambda$doubleFunctionArgumentCodec$3 (Ljava/util/function/Function;Ljava/util/function/Function;Ljava/util/function/BiFunction;Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/world/level/levelgen/DensityFunctions/m_224050_ (Lnet/minecraft/world/level/levelgen/DensityFunction;)Lcom/mojang/datafixers/util/Either; net/minecraft/world/level/levelgen/DensityFunctions/lambda$static$2 (Lnet/minecraft/world/level/levelgen/DensityFunction;)Lcom/mojang/datafixers/util/Either; +MD: net/minecraft/world/level/levelgen/DensityFunctions/m_224052_ (Lnet/minecraft/world/level/levelgen/DensityFunction;)Lcom/mojang/serialization/Codec; net/minecraft/world/level/levelgen/DensityFunctions/lambda$static$0 (Lnet/minecraft/world/level/levelgen/DensityFunction;)Lcom/mojang/serialization/Codec; +MD: net/minecraft/world/level/levelgen/DensityFunctions$1/ ()V net/minecraft/world/level/levelgen/DensityFunctions$1/ ()V +MD: net/minecraft/world/level/levelgen/DensityFunctions$Ap2/ (Lnet/minecraft/world/level/levelgen/DensityFunctions$TwoArgumentSimpleFunction$Type;Lnet/minecraft/world/level/levelgen/DensityFunction;Lnet/minecraft/world/level/levelgen/DensityFunction;DD)V net/minecraft/world/level/levelgen/DensityFunctions$Ap2/ (Lnet/minecraft/world/level/levelgen/DensityFunctions$TwoArgumentSimpleFunction$Type;Lnet/minecraft/world/level/levelgen/DensityFunction;Lnet/minecraft/world/level/levelgen/DensityFunction;DD)V +MD: net/minecraft/world/level/levelgen/DensityFunctions$Ap2/equals (Ljava/lang/Object;)Z net/minecraft/world/level/levelgen/DensityFunctions$Ap2/equals (Ljava/lang/Object;)Z +MD: net/minecraft/world/level/levelgen/DensityFunctions$Ap2/hashCode ()I net/minecraft/world/level/levelgen/DensityFunctions$Ap2/hashCode ()I +MD: net/minecraft/world/level/levelgen/DensityFunctions$Ap2/m_207119_ ()Lnet/minecraft/world/level/levelgen/DensityFunctions$TwoArgumentSimpleFunction$Type; net/minecraft/world/level/levelgen/DensityFunctions$Ap2/type ()Lnet/minecraft/world/level/levelgen/DensityFunctions$TwoArgumentSimpleFunction$Type; +MD: net/minecraft/world/level/levelgen/DensityFunctions$Ap2/m_207185_ ()Lnet/minecraft/world/level/levelgen/DensityFunction; net/minecraft/world/level/levelgen/DensityFunctions$Ap2/argument1 ()Lnet/minecraft/world/level/levelgen/DensityFunction; +MD: net/minecraft/world/level/levelgen/DensityFunctions$Ap2/m_207190_ ()Lnet/minecraft/world/level/levelgen/DensityFunction; net/minecraft/world/level/levelgen/DensityFunctions$Ap2/argument2 ()Lnet/minecraft/world/level/levelgen/DensityFunction; +MD: net/minecraft/world/level/levelgen/DensityFunctions$Ap2/m_207362_ ([DLnet/minecraft/world/level/levelgen/DensityFunction$ContextProvider;)V net/minecraft/world/level/levelgen/DensityFunctions$Ap2/fillArray ([DLnet/minecraft/world/level/levelgen/DensityFunction$ContextProvider;)V +MD: net/minecraft/world/level/levelgen/DensityFunctions$Ap2/m_207386_ (Lnet/minecraft/world/level/levelgen/DensityFunction$FunctionContext;)D net/minecraft/world/level/levelgen/DensityFunctions$Ap2/compute (Lnet/minecraft/world/level/levelgen/DensityFunction$FunctionContext;)D +MD: net/minecraft/world/level/levelgen/DensityFunctions$Ap2/m_207401_ ()D net/minecraft/world/level/levelgen/DensityFunctions$Ap2/maxValue ()D +MD: net/minecraft/world/level/levelgen/DensityFunctions$Ap2/m_207402_ ()D net/minecraft/world/level/levelgen/DensityFunctions$Ap2/minValue ()D +MD: net/minecraft/world/level/levelgen/DensityFunctions$Ap2/m_207456_ (Lnet/minecraft/world/level/levelgen/DensityFunction$Visitor;)Lnet/minecraft/world/level/levelgen/DensityFunction; net/minecraft/world/level/levelgen/DensityFunctions$Ap2/mapAll (Lnet/minecraft/world/level/levelgen/DensityFunction$Visitor;)Lnet/minecraft/world/level/levelgen/DensityFunction; +MD: net/minecraft/world/level/levelgen/DensityFunctions$Ap2/toString ()Ljava/lang/String; net/minecraft/world/level/levelgen/DensityFunctions$Ap2/toString ()Ljava/lang/String; +MD: net/minecraft/world/level/levelgen/DensityFunctions$BeardifierMarker/ ()V net/minecraft/world/level/levelgen/DensityFunctions$BeardifierMarker/ ()V +MD: net/minecraft/world/level/levelgen/DensityFunctions$BeardifierMarker/ (Ljava/lang/String;I)V net/minecraft/world/level/levelgen/DensityFunctions$BeardifierMarker/ (Ljava/lang/String;I)V +MD: net/minecraft/world/level/levelgen/DensityFunctions$BeardifierMarker/m_207362_ ([DLnet/minecraft/world/level/levelgen/DensityFunction$ContextProvider;)V net/minecraft/world/level/levelgen/DensityFunctions$BeardifierMarker/fillArray ([DLnet/minecraft/world/level/levelgen/DensityFunction$ContextProvider;)V +MD: net/minecraft/world/level/levelgen/DensityFunctions$BeardifierMarker/m_207386_ (Lnet/minecraft/world/level/levelgen/DensityFunction$FunctionContext;)D net/minecraft/world/level/levelgen/DensityFunctions$BeardifierMarker/compute (Lnet/minecraft/world/level/levelgen/DensityFunction$FunctionContext;)D +MD: net/minecraft/world/level/levelgen/DensityFunctions$BeardifierMarker/m_207401_ ()D net/minecraft/world/level/levelgen/DensityFunctions$BeardifierMarker/maxValue ()D +MD: net/minecraft/world/level/levelgen/DensityFunctions$BeardifierMarker/m_207402_ ()D net/minecraft/world/level/levelgen/DensityFunctions$BeardifierMarker/minValue ()D +MD: net/minecraft/world/level/levelgen/DensityFunctions$BeardifierMarker/m_208520_ ()[Lnet/minecraft/world/level/levelgen/DensityFunctions$BeardifierMarker; net/minecraft/world/level/levelgen/DensityFunctions$BeardifierMarker/$values ()[Lnet/minecraft/world/level/levelgen/DensityFunctions$BeardifierMarker; +MD: net/minecraft/world/level/levelgen/DensityFunctions$BeardifierMarker/valueOf (Ljava/lang/String;)Lnet/minecraft/world/level/levelgen/DensityFunctions$BeardifierMarker; net/minecraft/world/level/levelgen/DensityFunctions$BeardifierMarker/valueOf (Ljava/lang/String;)Lnet/minecraft/world/level/levelgen/DensityFunctions$BeardifierMarker; +MD: net/minecraft/world/level/levelgen/DensityFunctions$BeardifierMarker/values ()[Lnet/minecraft/world/level/levelgen/DensityFunctions$BeardifierMarker; net/minecraft/world/level/levelgen/DensityFunctions$BeardifierMarker/values ()[Lnet/minecraft/world/level/levelgen/DensityFunctions$BeardifierMarker; +MD: net/minecraft/world/level/levelgen/DensityFunctions$BeardifierOrMarker/ ()V net/minecraft/world/level/levelgen/DensityFunctions$BeardifierOrMarker/ ()V +MD: net/minecraft/world/level/levelgen/DensityFunctions$BeardifierOrMarker/m_214023_ ()Lnet/minecraft/util/KeyDispatchDataCodec; net/minecraft/world/level/levelgen/DensityFunctions$BeardifierOrMarker/codec ()Lnet/minecraft/util/KeyDispatchDataCodec; +MD: net/minecraft/world/level/levelgen/DensityFunctions$BlendAlpha/ ()V net/minecraft/world/level/levelgen/DensityFunctions$BlendAlpha/ ()V +MD: net/minecraft/world/level/levelgen/DensityFunctions$BlendAlpha/ (Ljava/lang/String;I)V net/minecraft/world/level/levelgen/DensityFunctions$BlendAlpha/ (Ljava/lang/String;I)V +MD: net/minecraft/world/level/levelgen/DensityFunctions$BlendAlpha/m_207362_ ([DLnet/minecraft/world/level/levelgen/DensityFunction$ContextProvider;)V net/minecraft/world/level/levelgen/DensityFunctions$BlendAlpha/fillArray ([DLnet/minecraft/world/level/levelgen/DensityFunction$ContextProvider;)V +MD: net/minecraft/world/level/levelgen/DensityFunctions$BlendAlpha/m_207386_ (Lnet/minecraft/world/level/levelgen/DensityFunction$FunctionContext;)D net/minecraft/world/level/levelgen/DensityFunctions$BlendAlpha/compute (Lnet/minecraft/world/level/levelgen/DensityFunction$FunctionContext;)D +MD: net/minecraft/world/level/levelgen/DensityFunctions$BlendAlpha/m_207401_ ()D net/minecraft/world/level/levelgen/DensityFunctions$BlendAlpha/maxValue ()D +MD: net/minecraft/world/level/levelgen/DensityFunctions$BlendAlpha/m_207402_ ()D net/minecraft/world/level/levelgen/DensityFunctions$BlendAlpha/minValue ()D +MD: net/minecraft/world/level/levelgen/DensityFunctions$BlendAlpha/m_208542_ ()[Lnet/minecraft/world/level/levelgen/DensityFunctions$BlendAlpha; net/minecraft/world/level/levelgen/DensityFunctions$BlendAlpha/$values ()[Lnet/minecraft/world/level/levelgen/DensityFunctions$BlendAlpha; +MD: net/minecraft/world/level/levelgen/DensityFunctions$BlendAlpha/m_214023_ ()Lnet/minecraft/util/KeyDispatchDataCodec; net/minecraft/world/level/levelgen/DensityFunctions$BlendAlpha/codec ()Lnet/minecraft/util/KeyDispatchDataCodec; +MD: net/minecraft/world/level/levelgen/DensityFunctions$BlendAlpha/valueOf (Ljava/lang/String;)Lnet/minecraft/world/level/levelgen/DensityFunctions$BlendAlpha; net/minecraft/world/level/levelgen/DensityFunctions$BlendAlpha/valueOf (Ljava/lang/String;)Lnet/minecraft/world/level/levelgen/DensityFunctions$BlendAlpha; +MD: net/minecraft/world/level/levelgen/DensityFunctions$BlendAlpha/values ()[Lnet/minecraft/world/level/levelgen/DensityFunctions$BlendAlpha; net/minecraft/world/level/levelgen/DensityFunctions$BlendAlpha/values ()[Lnet/minecraft/world/level/levelgen/DensityFunctions$BlendAlpha; +MD: net/minecraft/world/level/levelgen/DensityFunctions$BlendDensity/ ()V net/minecraft/world/level/levelgen/DensityFunctions$BlendDensity/ ()V +MD: net/minecraft/world/level/levelgen/DensityFunctions$BlendDensity/ (Lnet/minecraft/world/level/levelgen/DensityFunction;)V net/minecraft/world/level/levelgen/DensityFunctions$BlendDensity/ (Lnet/minecraft/world/level/levelgen/DensityFunction;)V +MD: net/minecraft/world/level/levelgen/DensityFunctions$BlendDensity/equals (Ljava/lang/Object;)Z net/minecraft/world/level/levelgen/DensityFunctions$BlendDensity/equals (Ljava/lang/Object;)Z +MD: net/minecraft/world/level/levelgen/DensityFunctions$BlendDensity/hashCode ()I net/minecraft/world/level/levelgen/DensityFunctions$BlendDensity/hashCode ()I +MD: net/minecraft/world/level/levelgen/DensityFunctions$BlendDensity/m_207189_ ()Lnet/minecraft/world/level/levelgen/DensityFunction; net/minecraft/world/level/levelgen/DensityFunctions$BlendDensity/input ()Lnet/minecraft/world/level/levelgen/DensityFunction; +MD: net/minecraft/world/level/levelgen/DensityFunctions$BlendDensity/m_207219_ (Lnet/minecraft/world/level/levelgen/DensityFunction$FunctionContext;D)D net/minecraft/world/level/levelgen/DensityFunctions$BlendDensity/transform (Lnet/minecraft/world/level/levelgen/DensityFunction$FunctionContext;D)D +MD: net/minecraft/world/level/levelgen/DensityFunctions$BlendDensity/m_207401_ ()D net/minecraft/world/level/levelgen/DensityFunctions$BlendDensity/maxValue ()D +MD: net/minecraft/world/level/levelgen/DensityFunctions$BlendDensity/m_207402_ ()D net/minecraft/world/level/levelgen/DensityFunctions$BlendDensity/minValue ()D +MD: net/minecraft/world/level/levelgen/DensityFunctions$BlendDensity/m_207456_ (Lnet/minecraft/world/level/levelgen/DensityFunction$Visitor;)Lnet/minecraft/world/level/levelgen/DensityFunction; net/minecraft/world/level/levelgen/DensityFunctions$BlendDensity/mapAll (Lnet/minecraft/world/level/levelgen/DensityFunction$Visitor;)Lnet/minecraft/world/level/levelgen/DensityFunction; +MD: net/minecraft/world/level/levelgen/DensityFunctions$BlendDensity/m_214023_ ()Lnet/minecraft/util/KeyDispatchDataCodec; net/minecraft/world/level/levelgen/DensityFunctions$BlendDensity/codec ()Lnet/minecraft/util/KeyDispatchDataCodec; +MD: net/minecraft/world/level/levelgen/DensityFunctions$BlendDensity/toString ()Ljava/lang/String; net/minecraft/world/level/levelgen/DensityFunctions$BlendDensity/toString ()Ljava/lang/String; +MD: net/minecraft/world/level/levelgen/DensityFunctions$BlendOffset/ ()V net/minecraft/world/level/levelgen/DensityFunctions$BlendOffset/ ()V +MD: net/minecraft/world/level/levelgen/DensityFunctions$BlendOffset/ (Ljava/lang/String;I)V net/minecraft/world/level/levelgen/DensityFunctions$BlendOffset/ (Ljava/lang/String;I)V +MD: net/minecraft/world/level/levelgen/DensityFunctions$BlendOffset/m_207362_ ([DLnet/minecraft/world/level/levelgen/DensityFunction$ContextProvider;)V net/minecraft/world/level/levelgen/DensityFunctions$BlendOffset/fillArray ([DLnet/minecraft/world/level/levelgen/DensityFunction$ContextProvider;)V +MD: net/minecraft/world/level/levelgen/DensityFunctions$BlendOffset/m_207386_ (Lnet/minecraft/world/level/levelgen/DensityFunction$FunctionContext;)D net/minecraft/world/level/levelgen/DensityFunctions$BlendOffset/compute (Lnet/minecraft/world/level/levelgen/DensityFunction$FunctionContext;)D +MD: net/minecraft/world/level/levelgen/DensityFunctions$BlendOffset/m_207401_ ()D net/minecraft/world/level/levelgen/DensityFunctions$BlendOffset/maxValue ()D +MD: net/minecraft/world/level/levelgen/DensityFunctions$BlendOffset/m_207402_ ()D net/minecraft/world/level/levelgen/DensityFunctions$BlendOffset/minValue ()D +MD: net/minecraft/world/level/levelgen/DensityFunctions$BlendOffset/m_208579_ ()[Lnet/minecraft/world/level/levelgen/DensityFunctions$BlendOffset; net/minecraft/world/level/levelgen/DensityFunctions$BlendOffset/$values ()[Lnet/minecraft/world/level/levelgen/DensityFunctions$BlendOffset; +MD: net/minecraft/world/level/levelgen/DensityFunctions$BlendOffset/m_214023_ ()Lnet/minecraft/util/KeyDispatchDataCodec; net/minecraft/world/level/levelgen/DensityFunctions$BlendOffset/codec ()Lnet/minecraft/util/KeyDispatchDataCodec; +MD: net/minecraft/world/level/levelgen/DensityFunctions$BlendOffset/valueOf (Ljava/lang/String;)Lnet/minecraft/world/level/levelgen/DensityFunctions$BlendOffset; net/minecraft/world/level/levelgen/DensityFunctions$BlendOffset/valueOf (Ljava/lang/String;)Lnet/minecraft/world/level/levelgen/DensityFunctions$BlendOffset; +MD: net/minecraft/world/level/levelgen/DensityFunctions$BlendOffset/values ()[Lnet/minecraft/world/level/levelgen/DensityFunctions$BlendOffset; net/minecraft/world/level/levelgen/DensityFunctions$BlendOffset/values ()[Lnet/minecraft/world/level/levelgen/DensityFunctions$BlendOffset; +MD: net/minecraft/world/level/levelgen/DensityFunctions$Clamp/ ()V net/minecraft/world/level/levelgen/DensityFunctions$Clamp/ ()V +MD: net/minecraft/world/level/levelgen/DensityFunctions$Clamp/ (Lnet/minecraft/world/level/levelgen/DensityFunction;DD)V net/minecraft/world/level/levelgen/DensityFunctions$Clamp/ (Lnet/minecraft/world/level/levelgen/DensityFunction;DD)V +MD: net/minecraft/world/level/levelgen/DensityFunctions$Clamp/equals (Ljava/lang/Object;)Z net/minecraft/world/level/levelgen/DensityFunctions$Clamp/equals (Ljava/lang/Object;)Z +MD: net/minecraft/world/level/levelgen/DensityFunctions$Clamp/hashCode ()I net/minecraft/world/level/levelgen/DensityFunctions$Clamp/hashCode ()I +MD: net/minecraft/world/level/levelgen/DensityFunctions$Clamp/m_207305_ ()Lnet/minecraft/world/level/levelgen/DensityFunction; net/minecraft/world/level/levelgen/DensityFunctions$Clamp/input ()Lnet/minecraft/world/level/levelgen/DensityFunction; +MD: net/minecraft/world/level/levelgen/DensityFunctions$Clamp/m_207382_ (D)D net/minecraft/world/level/levelgen/DensityFunctions$Clamp/transform (D)D +MD: net/minecraft/world/level/levelgen/DensityFunctions$Clamp/m_207401_ ()D net/minecraft/world/level/levelgen/DensityFunctions$Clamp/maxValue ()D +MD: net/minecraft/world/level/levelgen/DensityFunctions$Clamp/m_207402_ ()D net/minecraft/world/level/levelgen/DensityFunctions$Clamp/minValue ()D +MD: net/minecraft/world/level/levelgen/DensityFunctions$Clamp/m_207456_ (Lnet/minecraft/world/level/levelgen/DensityFunction$Visitor;)Lnet/minecraft/world/level/levelgen/DensityFunction; net/minecraft/world/level/levelgen/DensityFunctions$Clamp/mapAll (Lnet/minecraft/world/level/levelgen/DensityFunction$Visitor;)Lnet/minecraft/world/level/levelgen/DensityFunction; +MD: net/minecraft/world/level/levelgen/DensityFunctions$Clamp/m_208596_ (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/world/level/levelgen/DensityFunctions$Clamp/lambda$static$0 (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/world/level/levelgen/DensityFunctions$Clamp/m_214023_ ()Lnet/minecraft/util/KeyDispatchDataCodec; net/minecraft/world/level/levelgen/DensityFunctions$Clamp/codec ()Lnet/minecraft/util/KeyDispatchDataCodec; +MD: net/minecraft/world/level/levelgen/DensityFunctions$Clamp/toString ()Ljava/lang/String; net/minecraft/world/level/levelgen/DensityFunctions$Clamp/toString ()Ljava/lang/String; +MD: net/minecraft/world/level/levelgen/DensityFunctions$Constant/ ()V net/minecraft/world/level/levelgen/DensityFunctions$Constant/ ()V +MD: net/minecraft/world/level/levelgen/DensityFunctions$Constant/ (D)V net/minecraft/world/level/levelgen/DensityFunctions$Constant/ (D)V +MD: net/minecraft/world/level/levelgen/DensityFunctions$Constant/equals (Ljava/lang/Object;)Z net/minecraft/world/level/levelgen/DensityFunctions$Constant/equals (Ljava/lang/Object;)Z +MD: net/minecraft/world/level/levelgen/DensityFunctions$Constant/f_208607_ ()D net/minecraft/world/level/levelgen/DensityFunctions$Constant/value ()D +MD: net/minecraft/world/level/levelgen/DensityFunctions$Constant/hashCode ()I net/minecraft/world/level/levelgen/DensityFunctions$Constant/hashCode ()I +MD: net/minecraft/world/level/levelgen/DensityFunctions$Constant/m_207362_ ([DLnet/minecraft/world/level/levelgen/DensityFunction$ContextProvider;)V net/minecraft/world/level/levelgen/DensityFunctions$Constant/fillArray ([DLnet/minecraft/world/level/levelgen/DensityFunction$ContextProvider;)V +MD: net/minecraft/world/level/levelgen/DensityFunctions$Constant/m_207386_ (Lnet/minecraft/world/level/levelgen/DensityFunction$FunctionContext;)D net/minecraft/world/level/levelgen/DensityFunctions$Constant/compute (Lnet/minecraft/world/level/levelgen/DensityFunction$FunctionContext;)D +MD: net/minecraft/world/level/levelgen/DensityFunctions$Constant/m_207401_ ()D net/minecraft/world/level/levelgen/DensityFunctions$Constant/maxValue ()D +MD: net/minecraft/world/level/levelgen/DensityFunctions$Constant/m_207402_ ()D net/minecraft/world/level/levelgen/DensityFunctions$Constant/minValue ()D +MD: net/minecraft/world/level/levelgen/DensityFunctions$Constant/m_214023_ ()Lnet/minecraft/util/KeyDispatchDataCodec; net/minecraft/world/level/levelgen/DensityFunctions$Constant/codec ()Lnet/minecraft/util/KeyDispatchDataCodec; +MD: net/minecraft/world/level/levelgen/DensityFunctions$Constant/toString ()Ljava/lang/String; net/minecraft/world/level/levelgen/DensityFunctions$Constant/toString ()Ljava/lang/String; +MD: net/minecraft/world/level/levelgen/DensityFunctions$EndIslandDensityFunction/ ()V net/minecraft/world/level/levelgen/DensityFunctions$EndIslandDensityFunction/ ()V +MD: net/minecraft/world/level/levelgen/DensityFunctions$EndIslandDensityFunction/ (J)V net/minecraft/world/level/levelgen/DensityFunctions$EndIslandDensityFunction/ (J)V +MD: net/minecraft/world/level/levelgen/DensityFunctions$EndIslandDensityFunction/m_207386_ (Lnet/minecraft/world/level/levelgen/DensityFunction$FunctionContext;)D net/minecraft/world/level/levelgen/DensityFunctions$EndIslandDensityFunction/compute (Lnet/minecraft/world/level/levelgen/DensityFunction$FunctionContext;)D +MD: net/minecraft/world/level/levelgen/DensityFunctions$EndIslandDensityFunction/m_207401_ ()D net/minecraft/world/level/levelgen/DensityFunctions$EndIslandDensityFunction/maxValue ()D +MD: net/minecraft/world/level/levelgen/DensityFunctions$EndIslandDensityFunction/m_207402_ ()D net/minecraft/world/level/levelgen/DensityFunctions$EndIslandDensityFunction/minValue ()D +MD: net/minecraft/world/level/levelgen/DensityFunctions$EndIslandDensityFunction/m_214023_ ()Lnet/minecraft/util/KeyDispatchDataCodec; net/minecraft/world/level/levelgen/DensityFunctions$EndIslandDensityFunction/codec ()Lnet/minecraft/util/KeyDispatchDataCodec; +MD: net/minecraft/world/level/levelgen/DensityFunctions$EndIslandDensityFunction/m_224062_ (Lnet/minecraft/world/level/levelgen/synth/SimplexNoise;II)F net/minecraft/world/level/levelgen/DensityFunctions$EndIslandDensityFunction/getHeightValue (Lnet/minecraft/world/level/levelgen/synth/SimplexNoise;II)F +MD: net/minecraft/world/level/levelgen/DensityFunctions$HolderHolder/ (Lnet/minecraft/core/Holder;)V net/minecraft/world/level/levelgen/DensityFunctions$HolderHolder/ (Lnet/minecraft/core/Holder;)V +MD: net/minecraft/world/level/levelgen/DensityFunctions$HolderHolder/equals (Ljava/lang/Object;)Z net/minecraft/world/level/levelgen/DensityFunctions$HolderHolder/equals (Ljava/lang/Object;)Z +MD: net/minecraft/world/level/levelgen/DensityFunctions$HolderHolder/f_208636_ ()Lnet/minecraft/core/Holder; net/minecraft/world/level/levelgen/DensityFunctions$HolderHolder/function ()Lnet/minecraft/core/Holder; +MD: net/minecraft/world/level/levelgen/DensityFunctions$HolderHolder/hashCode ()I net/minecraft/world/level/levelgen/DensityFunctions$HolderHolder/hashCode ()I +MD: net/minecraft/world/level/levelgen/DensityFunctions$HolderHolder/m_207362_ ([DLnet/minecraft/world/level/levelgen/DensityFunction$ContextProvider;)V net/minecraft/world/level/levelgen/DensityFunctions$HolderHolder/fillArray ([DLnet/minecraft/world/level/levelgen/DensityFunction$ContextProvider;)V +MD: net/minecraft/world/level/levelgen/DensityFunctions$HolderHolder/m_207386_ (Lnet/minecraft/world/level/levelgen/DensityFunction$FunctionContext;)D net/minecraft/world/level/levelgen/DensityFunctions$HolderHolder/compute (Lnet/minecraft/world/level/levelgen/DensityFunction$FunctionContext;)D +MD: net/minecraft/world/level/levelgen/DensityFunctions$HolderHolder/m_207401_ ()D net/minecraft/world/level/levelgen/DensityFunctions$HolderHolder/maxValue ()D +MD: net/minecraft/world/level/levelgen/DensityFunctions$HolderHolder/m_207402_ ()D net/minecraft/world/level/levelgen/DensityFunctions$HolderHolder/minValue ()D +MD: net/minecraft/world/level/levelgen/DensityFunctions$HolderHolder/m_207456_ (Lnet/minecraft/world/level/levelgen/DensityFunction$Visitor;)Lnet/minecraft/world/level/levelgen/DensityFunction; net/minecraft/world/level/levelgen/DensityFunctions$HolderHolder/mapAll (Lnet/minecraft/world/level/levelgen/DensityFunction$Visitor;)Lnet/minecraft/world/level/levelgen/DensityFunction; +MD: net/minecraft/world/level/levelgen/DensityFunctions$HolderHolder/m_214023_ ()Lnet/minecraft/util/KeyDispatchDataCodec; net/minecraft/world/level/levelgen/DensityFunctions$HolderHolder/codec ()Lnet/minecraft/util/KeyDispatchDataCodec; +MD: net/minecraft/world/level/levelgen/DensityFunctions$HolderHolder/toString ()Ljava/lang/String; net/minecraft/world/level/levelgen/DensityFunctions$HolderHolder/toString ()Ljava/lang/String; +MD: net/minecraft/world/level/levelgen/DensityFunctions$Mapped/ (Lnet/minecraft/world/level/levelgen/DensityFunctions$Mapped$Type;Lnet/minecraft/world/level/levelgen/DensityFunction;DD)V net/minecraft/world/level/levelgen/DensityFunctions$Mapped/ (Lnet/minecraft/world/level/levelgen/DensityFunctions$Mapped$Type;Lnet/minecraft/world/level/levelgen/DensityFunction;DD)V +MD: net/minecraft/world/level/levelgen/DensityFunctions$Mapped/equals (Ljava/lang/Object;)Z net/minecraft/world/level/levelgen/DensityFunctions$Mapped/equals (Ljava/lang/Object;)Z +MD: net/minecraft/world/level/levelgen/DensityFunctions$Mapped/f_208654_ ()Lnet/minecraft/world/level/levelgen/DensityFunctions$Mapped$Type; net/minecraft/world/level/levelgen/DensityFunctions$Mapped/type ()Lnet/minecraft/world/level/levelgen/DensityFunctions$Mapped$Type; +MD: net/minecraft/world/level/levelgen/DensityFunctions$Mapped/hashCode ()I net/minecraft/world/level/levelgen/DensityFunctions$Mapped/hashCode ()I +MD: net/minecraft/world/level/levelgen/DensityFunctions$Mapped/m_207305_ ()Lnet/minecraft/world/level/levelgen/DensityFunction; net/minecraft/world/level/levelgen/DensityFunctions$Mapped/input ()Lnet/minecraft/world/level/levelgen/DensityFunction; +MD: net/minecraft/world/level/levelgen/DensityFunctions$Mapped/m_207382_ (D)D net/minecraft/world/level/levelgen/DensityFunctions$Mapped/transform (D)D +MD: net/minecraft/world/level/levelgen/DensityFunctions$Mapped/m_207401_ ()D net/minecraft/world/level/levelgen/DensityFunctions$Mapped/maxValue ()D +MD: net/minecraft/world/level/levelgen/DensityFunctions$Mapped/m_207402_ ()D net/minecraft/world/level/levelgen/DensityFunctions$Mapped/minValue ()D +MD: net/minecraft/world/level/levelgen/DensityFunctions$Mapped/m_207456_ (Lnet/minecraft/world/level/levelgen/DensityFunction$Visitor;)Lnet/minecraft/world/level/levelgen/DensityFunctions$Mapped; net/minecraft/world/level/levelgen/DensityFunctions$Mapped/mapAll (Lnet/minecraft/world/level/levelgen/DensityFunction$Visitor;)Lnet/minecraft/world/level/levelgen/DensityFunctions$Mapped; +MD: net/minecraft/world/level/levelgen/DensityFunctions$Mapped/m_207456_ (Lnet/minecraft/world/level/levelgen/DensityFunction$Visitor;)Lnet/minecraft/world/level/levelgen/DensityFunction; net/minecraft/world/level/levelgen/DensityFunctions$Mapped/mapAll (Lnet/minecraft/world/level/levelgen/DensityFunction$Visitor;)Lnet/minecraft/world/level/levelgen/DensityFunction; +MD: net/minecraft/world/level/levelgen/DensityFunctions$Mapped/m_208668_ (Lnet/minecraft/world/level/levelgen/DensityFunctions$Mapped$Type;D)D net/minecraft/world/level/levelgen/DensityFunctions$Mapped/transform (Lnet/minecraft/world/level/levelgen/DensityFunctions$Mapped$Type;D)D +MD: net/minecraft/world/level/levelgen/DensityFunctions$Mapped/m_208671_ (Lnet/minecraft/world/level/levelgen/DensityFunctions$Mapped$Type;Lnet/minecraft/world/level/levelgen/DensityFunction;)Lnet/minecraft/world/level/levelgen/DensityFunctions$Mapped; net/minecraft/world/level/levelgen/DensityFunctions$Mapped/create (Lnet/minecraft/world/level/levelgen/DensityFunctions$Mapped$Type;Lnet/minecraft/world/level/levelgen/DensityFunction;)Lnet/minecraft/world/level/levelgen/DensityFunctions$Mapped; +MD: net/minecraft/world/level/levelgen/DensityFunctions$Mapped/m_214023_ ()Lnet/minecraft/util/KeyDispatchDataCodec; net/minecraft/world/level/levelgen/DensityFunctions$Mapped/codec ()Lnet/minecraft/util/KeyDispatchDataCodec; +MD: net/minecraft/world/level/levelgen/DensityFunctions$Mapped/toString ()Ljava/lang/String; net/minecraft/world/level/levelgen/DensityFunctions$Mapped/toString ()Ljava/lang/String; +MD: net/minecraft/world/level/levelgen/DensityFunctions$Mapped$Type/ ()V net/minecraft/world/level/levelgen/DensityFunctions$Mapped$Type/ ()V +MD: net/minecraft/world/level/levelgen/DensityFunctions$Mapped$Type/ (Ljava/lang/String;ILjava/lang/String;)V net/minecraft/world/level/levelgen/DensityFunctions$Mapped$Type/ (Ljava/lang/String;ILjava/lang/String;)V +MD: net/minecraft/world/level/levelgen/DensityFunctions$Mapped$Type/m_208698_ ()[Lnet/minecraft/world/level/levelgen/DensityFunctions$Mapped$Type; net/minecraft/world/level/levelgen/DensityFunctions$Mapped$Type/$values ()[Lnet/minecraft/world/level/levelgen/DensityFunctions$Mapped$Type; +MD: net/minecraft/world/level/levelgen/DensityFunctions$Mapped$Type/m_208699_ (Lnet/minecraft/world/level/levelgen/DensityFunction;)Lnet/minecraft/world/level/levelgen/DensityFunctions$Mapped; net/minecraft/world/level/levelgen/DensityFunctions$Mapped$Type/lambda$new$0 (Lnet/minecraft/world/level/levelgen/DensityFunction;)Lnet/minecraft/world/level/levelgen/DensityFunctions$Mapped; +MD: net/minecraft/world/level/levelgen/DensityFunctions$Mapped$Type/m_7912_ ()Ljava/lang/String; net/minecraft/world/level/levelgen/DensityFunctions$Mapped$Type/getSerializedName ()Ljava/lang/String; +MD: net/minecraft/world/level/levelgen/DensityFunctions$Mapped$Type/valueOf (Ljava/lang/String;)Lnet/minecraft/world/level/levelgen/DensityFunctions$Mapped$Type; net/minecraft/world/level/levelgen/DensityFunctions$Mapped$Type/valueOf (Ljava/lang/String;)Lnet/minecraft/world/level/levelgen/DensityFunctions$Mapped$Type; +MD: net/minecraft/world/level/levelgen/DensityFunctions$Mapped$Type/values ()[Lnet/minecraft/world/level/levelgen/DensityFunctions$Mapped$Type; net/minecraft/world/level/levelgen/DensityFunctions$Mapped$Type/values ()[Lnet/minecraft/world/level/levelgen/DensityFunctions$Mapped$Type; +MD: net/minecraft/world/level/levelgen/DensityFunctions$Marker/ (Lnet/minecraft/world/level/levelgen/DensityFunctions$Marker$Type;Lnet/minecraft/world/level/levelgen/DensityFunction;)V net/minecraft/world/level/levelgen/DensityFunctions$Marker/ (Lnet/minecraft/world/level/levelgen/DensityFunctions$Marker$Type;Lnet/minecraft/world/level/levelgen/DensityFunction;)V +MD: net/minecraft/world/level/levelgen/DensityFunctions$Marker/equals (Ljava/lang/Object;)Z net/minecraft/world/level/levelgen/DensityFunctions$Marker/equals (Ljava/lang/Object;)Z +MD: net/minecraft/world/level/levelgen/DensityFunctions$Marker/hashCode ()I net/minecraft/world/level/levelgen/DensityFunctions$Marker/hashCode ()I +MD: net/minecraft/world/level/levelgen/DensityFunctions$Marker/m_207056_ ()Lnet/minecraft/world/level/levelgen/DensityFunction; net/minecraft/world/level/levelgen/DensityFunctions$Marker/wrapped ()Lnet/minecraft/world/level/levelgen/DensityFunction; +MD: net/minecraft/world/level/levelgen/DensityFunctions$Marker/m_207136_ ()Lnet/minecraft/world/level/levelgen/DensityFunctions$Marker$Type; net/minecraft/world/level/levelgen/DensityFunctions$Marker/type ()Lnet/minecraft/world/level/levelgen/DensityFunctions$Marker$Type; +MD: net/minecraft/world/level/levelgen/DensityFunctions$Marker/m_207362_ ([DLnet/minecraft/world/level/levelgen/DensityFunction$ContextProvider;)V net/minecraft/world/level/levelgen/DensityFunctions$Marker/fillArray ([DLnet/minecraft/world/level/levelgen/DensityFunction$ContextProvider;)V +MD: net/minecraft/world/level/levelgen/DensityFunctions$Marker/m_207386_ (Lnet/minecraft/world/level/levelgen/DensityFunction$FunctionContext;)D net/minecraft/world/level/levelgen/DensityFunctions$Marker/compute (Lnet/minecraft/world/level/levelgen/DensityFunction$FunctionContext;)D +MD: net/minecraft/world/level/levelgen/DensityFunctions$Marker/m_207401_ ()D net/minecraft/world/level/levelgen/DensityFunctions$Marker/maxValue ()D +MD: net/minecraft/world/level/levelgen/DensityFunctions$Marker/m_207402_ ()D net/minecraft/world/level/levelgen/DensityFunctions$Marker/minValue ()D +MD: net/minecraft/world/level/levelgen/DensityFunctions$Marker/toString ()Ljava/lang/String; net/minecraft/world/level/levelgen/DensityFunctions$Marker/toString ()Ljava/lang/String; +MD: net/minecraft/world/level/levelgen/DensityFunctions$Marker$Type/ ()V net/minecraft/world/level/levelgen/DensityFunctions$Marker$Type/ ()V +MD: net/minecraft/world/level/levelgen/DensityFunctions$Marker$Type/ (Ljava/lang/String;ILjava/lang/String;)V net/minecraft/world/level/levelgen/DensityFunctions$Marker$Type/ (Ljava/lang/String;ILjava/lang/String;)V +MD: net/minecraft/world/level/levelgen/DensityFunctions$Marker$Type/m_208738_ ()[Lnet/minecraft/world/level/levelgen/DensityFunctions$Marker$Type; net/minecraft/world/level/levelgen/DensityFunctions$Marker$Type/$values ()[Lnet/minecraft/world/level/levelgen/DensityFunctions$Marker$Type; +MD: net/minecraft/world/level/levelgen/DensityFunctions$Marker$Type/m_208739_ (Lnet/minecraft/world/level/levelgen/DensityFunction;)Lnet/minecraft/world/level/levelgen/DensityFunctions$MarkerOrMarked; net/minecraft/world/level/levelgen/DensityFunctions$Marker$Type/lambda$new$0 (Lnet/minecraft/world/level/levelgen/DensityFunction;)Lnet/minecraft/world/level/levelgen/DensityFunctions$MarkerOrMarked; +MD: net/minecraft/world/level/levelgen/DensityFunctions$Marker$Type/m_7912_ ()Ljava/lang/String; net/minecraft/world/level/levelgen/DensityFunctions$Marker$Type/getSerializedName ()Ljava/lang/String; +MD: net/minecraft/world/level/levelgen/DensityFunctions$Marker$Type/valueOf (Ljava/lang/String;)Lnet/minecraft/world/level/levelgen/DensityFunctions$Marker$Type; net/minecraft/world/level/levelgen/DensityFunctions$Marker$Type/valueOf (Ljava/lang/String;)Lnet/minecraft/world/level/levelgen/DensityFunctions$Marker$Type; +MD: net/minecraft/world/level/levelgen/DensityFunctions$Marker$Type/values ()[Lnet/minecraft/world/level/levelgen/DensityFunctions$Marker$Type; net/minecraft/world/level/levelgen/DensityFunctions$Marker$Type/values ()[Lnet/minecraft/world/level/levelgen/DensityFunctions$Marker$Type; +MD: net/minecraft/world/level/levelgen/DensityFunctions$MarkerOrMarked/m_207056_ ()Lnet/minecraft/world/level/levelgen/DensityFunction; net/minecraft/world/level/levelgen/DensityFunctions$MarkerOrMarked/wrapped ()Lnet/minecraft/world/level/levelgen/DensityFunction; +MD: net/minecraft/world/level/levelgen/DensityFunctions$MarkerOrMarked/m_207136_ ()Lnet/minecraft/world/level/levelgen/DensityFunctions$Marker$Type; net/minecraft/world/level/levelgen/DensityFunctions$MarkerOrMarked/type ()Lnet/minecraft/world/level/levelgen/DensityFunctions$Marker$Type; +MD: net/minecraft/world/level/levelgen/DensityFunctions$MarkerOrMarked/m_207456_ (Lnet/minecraft/world/level/levelgen/DensityFunction$Visitor;)Lnet/minecraft/world/level/levelgen/DensityFunction; net/minecraft/world/level/levelgen/DensityFunctions$MarkerOrMarked/mapAll (Lnet/minecraft/world/level/levelgen/DensityFunction$Visitor;)Lnet/minecraft/world/level/levelgen/DensityFunction; +MD: net/minecraft/world/level/levelgen/DensityFunctions$MarkerOrMarked/m_214023_ ()Lnet/minecraft/util/KeyDispatchDataCodec; net/minecraft/world/level/levelgen/DensityFunctions$MarkerOrMarked/codec ()Lnet/minecraft/util/KeyDispatchDataCodec; +MD: net/minecraft/world/level/levelgen/DensityFunctions$MulOrAdd/ (Lnet/minecraft/world/level/levelgen/DensityFunctions$MulOrAdd$Type;Lnet/minecraft/world/level/levelgen/DensityFunction;DDD)V net/minecraft/world/level/levelgen/DensityFunctions$MulOrAdd/ (Lnet/minecraft/world/level/levelgen/DensityFunctions$MulOrAdd$Type;Lnet/minecraft/world/level/levelgen/DensityFunction;DDD)V +MD: net/minecraft/world/level/levelgen/DensityFunctions$MulOrAdd/equals (Ljava/lang/Object;)Z net/minecraft/world/level/levelgen/DensityFunctions$MulOrAdd/equals (Ljava/lang/Object;)Z +MD: net/minecraft/world/level/levelgen/DensityFunctions$MulOrAdd/f_208746_ ()Lnet/minecraft/world/level/levelgen/DensityFunctions$MulOrAdd$Type; net/minecraft/world/level/levelgen/DensityFunctions$MulOrAdd/specificType ()Lnet/minecraft/world/level/levelgen/DensityFunctions$MulOrAdd$Type; +MD: net/minecraft/world/level/levelgen/DensityFunctions$MulOrAdd/f_208750_ ()D net/minecraft/world/level/levelgen/DensityFunctions$MulOrAdd/argument ()D +MD: net/minecraft/world/level/levelgen/DensityFunctions$MulOrAdd/hashCode ()I net/minecraft/world/level/levelgen/DensityFunctions$MulOrAdd/hashCode ()I +MD: net/minecraft/world/level/levelgen/DensityFunctions$MulOrAdd/m_207119_ ()Lnet/minecraft/world/level/levelgen/DensityFunctions$TwoArgumentSimpleFunction$Type; net/minecraft/world/level/levelgen/DensityFunctions$MulOrAdd/type ()Lnet/minecraft/world/level/levelgen/DensityFunctions$TwoArgumentSimpleFunction$Type; +MD: net/minecraft/world/level/levelgen/DensityFunctions$MulOrAdd/m_207185_ ()Lnet/minecraft/world/level/levelgen/DensityFunction; net/minecraft/world/level/levelgen/DensityFunctions$MulOrAdd/argument1 ()Lnet/minecraft/world/level/levelgen/DensityFunction; +MD: net/minecraft/world/level/levelgen/DensityFunctions$MulOrAdd/m_207190_ ()Lnet/minecraft/world/level/levelgen/DensityFunction; net/minecraft/world/level/levelgen/DensityFunctions$MulOrAdd/argument2 ()Lnet/minecraft/world/level/levelgen/DensityFunction; +MD: net/minecraft/world/level/levelgen/DensityFunctions$MulOrAdd/m_207305_ ()Lnet/minecraft/world/level/levelgen/DensityFunction; net/minecraft/world/level/levelgen/DensityFunctions$MulOrAdd/input ()Lnet/minecraft/world/level/levelgen/DensityFunction; +MD: net/minecraft/world/level/levelgen/DensityFunctions$MulOrAdd/m_207382_ (D)D net/minecraft/world/level/levelgen/DensityFunctions$MulOrAdd/transform (D)D +MD: net/minecraft/world/level/levelgen/DensityFunctions$MulOrAdd/m_207401_ ()D net/minecraft/world/level/levelgen/DensityFunctions$MulOrAdd/maxValue ()D +MD: net/minecraft/world/level/levelgen/DensityFunctions$MulOrAdd/m_207402_ ()D net/minecraft/world/level/levelgen/DensityFunctions$MulOrAdd/minValue ()D +MD: net/minecraft/world/level/levelgen/DensityFunctions$MulOrAdd/m_207456_ (Lnet/minecraft/world/level/levelgen/DensityFunction$Visitor;)Lnet/minecraft/world/level/levelgen/DensityFunction; net/minecraft/world/level/levelgen/DensityFunctions$MulOrAdd/mapAll (Lnet/minecraft/world/level/levelgen/DensityFunction$Visitor;)Lnet/minecraft/world/level/levelgen/DensityFunction; +MD: net/minecraft/world/level/levelgen/DensityFunctions$MulOrAdd/toString ()Ljava/lang/String; net/minecraft/world/level/levelgen/DensityFunctions$MulOrAdd/toString ()Ljava/lang/String; +MD: net/minecraft/world/level/levelgen/DensityFunctions$MulOrAdd$Type/ ()V net/minecraft/world/level/levelgen/DensityFunctions$MulOrAdd$Type/ ()V +MD: net/minecraft/world/level/levelgen/DensityFunctions$MulOrAdd$Type/ (Ljava/lang/String;I)V net/minecraft/world/level/levelgen/DensityFunctions$MulOrAdd$Type/ (Ljava/lang/String;I)V +MD: net/minecraft/world/level/levelgen/DensityFunctions$MulOrAdd$Type/m_208780_ ()[Lnet/minecraft/world/level/levelgen/DensityFunctions$MulOrAdd$Type; net/minecraft/world/level/levelgen/DensityFunctions$MulOrAdd$Type/$values ()[Lnet/minecraft/world/level/levelgen/DensityFunctions$MulOrAdd$Type; +MD: net/minecraft/world/level/levelgen/DensityFunctions$MulOrAdd$Type/valueOf (Ljava/lang/String;)Lnet/minecraft/world/level/levelgen/DensityFunctions$MulOrAdd$Type; net/minecraft/world/level/levelgen/DensityFunctions$MulOrAdd$Type/valueOf (Ljava/lang/String;)Lnet/minecraft/world/level/levelgen/DensityFunctions$MulOrAdd$Type; +MD: net/minecraft/world/level/levelgen/DensityFunctions$MulOrAdd$Type/values ()[Lnet/minecraft/world/level/levelgen/DensityFunctions$MulOrAdd$Type; net/minecraft/world/level/levelgen/DensityFunctions$MulOrAdd$Type/values ()[Lnet/minecraft/world/level/levelgen/DensityFunctions$MulOrAdd$Type; +MD: net/minecraft/world/level/levelgen/DensityFunctions$Noise/ ()V net/minecraft/world/level/levelgen/DensityFunctions$Noise/ ()V +MD: net/minecraft/world/level/levelgen/DensityFunctions$Noise/ (Lnet/minecraft/world/level/levelgen/DensityFunction$NoiseHolder;DD)V net/minecraft/world/level/levelgen/DensityFunctions$Noise/ (Lnet/minecraft/world/level/levelgen/DensityFunction$NoiseHolder;DD)V +MD: net/minecraft/world/level/levelgen/DensityFunctions$Noise/equals (Ljava/lang/Object;)Z net/minecraft/world/level/levelgen/DensityFunctions$Noise/equals (Ljava/lang/Object;)Z +MD: net/minecraft/world/level/levelgen/DensityFunctions$Noise/f_208787_ ()Lnet/minecraft/world/level/levelgen/DensityFunction$NoiseHolder; net/minecraft/world/level/levelgen/DensityFunctions$Noise/noise ()Lnet/minecraft/world/level/levelgen/DensityFunction$NoiseHolder; +MD: net/minecraft/world/level/levelgen/DensityFunctions$Noise/f_208788_ ()D net/minecraft/world/level/levelgen/DensityFunctions$Noise/xzScale ()D +MD: net/minecraft/world/level/levelgen/DensityFunctions$Noise/f_208789_ ()D net/minecraft/world/level/levelgen/DensityFunctions$Noise/yScale ()D +MD: net/minecraft/world/level/levelgen/DensityFunctions$Noise/hashCode ()I net/minecraft/world/level/levelgen/DensityFunctions$Noise/hashCode ()I +MD: net/minecraft/world/level/levelgen/DensityFunctions$Noise/m_207362_ ([DLnet/minecraft/world/level/levelgen/DensityFunction$ContextProvider;)V net/minecraft/world/level/levelgen/DensityFunctions$Noise/fillArray ([DLnet/minecraft/world/level/levelgen/DensityFunction$ContextProvider;)V +MD: net/minecraft/world/level/levelgen/DensityFunctions$Noise/m_207386_ (Lnet/minecraft/world/level/levelgen/DensityFunction$FunctionContext;)D net/minecraft/world/level/levelgen/DensityFunctions$Noise/compute (Lnet/minecraft/world/level/levelgen/DensityFunction$FunctionContext;)D +MD: net/minecraft/world/level/levelgen/DensityFunctions$Noise/m_207401_ ()D net/minecraft/world/level/levelgen/DensityFunctions$Noise/maxValue ()D +MD: net/minecraft/world/level/levelgen/DensityFunctions$Noise/m_207402_ ()D net/minecraft/world/level/levelgen/DensityFunctions$Noise/minValue ()D +MD: net/minecraft/world/level/levelgen/DensityFunctions$Noise/m_207456_ (Lnet/minecraft/world/level/levelgen/DensityFunction$Visitor;)Lnet/minecraft/world/level/levelgen/DensityFunction; net/minecraft/world/level/levelgen/DensityFunctions$Noise/mapAll (Lnet/minecraft/world/level/levelgen/DensityFunction$Visitor;)Lnet/minecraft/world/level/levelgen/DensityFunction; +MD: net/minecraft/world/level/levelgen/DensityFunctions$Noise/m_208797_ (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/world/level/levelgen/DensityFunctions$Noise/lambda$static$0 (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/world/level/levelgen/DensityFunctions$Noise/m_214023_ ()Lnet/minecraft/util/KeyDispatchDataCodec; net/minecraft/world/level/levelgen/DensityFunctions$Noise/codec ()Lnet/minecraft/util/KeyDispatchDataCodec; +MD: net/minecraft/world/level/levelgen/DensityFunctions$Noise/toString ()Ljava/lang/String; net/minecraft/world/level/levelgen/DensityFunctions$Noise/toString ()Ljava/lang/String; +MD: net/minecraft/world/level/levelgen/DensityFunctions$PureTransformer/m_207305_ ()Lnet/minecraft/world/level/levelgen/DensityFunction; net/minecraft/world/level/levelgen/DensityFunctions$PureTransformer/input ()Lnet/minecraft/world/level/levelgen/DensityFunction; +MD: net/minecraft/world/level/levelgen/DensityFunctions$PureTransformer/m_207362_ ([DLnet/minecraft/world/level/levelgen/DensityFunction$ContextProvider;)V net/minecraft/world/level/levelgen/DensityFunctions$PureTransformer/fillArray ([DLnet/minecraft/world/level/levelgen/DensityFunction$ContextProvider;)V +MD: net/minecraft/world/level/levelgen/DensityFunctions$PureTransformer/m_207382_ (D)D net/minecraft/world/level/levelgen/DensityFunctions$PureTransformer/transform (D)D +MD: net/minecraft/world/level/levelgen/DensityFunctions$PureTransformer/m_207386_ (Lnet/minecraft/world/level/levelgen/DensityFunction$FunctionContext;)D net/minecraft/world/level/levelgen/DensityFunctions$PureTransformer/compute (Lnet/minecraft/world/level/levelgen/DensityFunction$FunctionContext;)D +MD: net/minecraft/world/level/levelgen/DensityFunctions$RangeChoice/ ()V net/minecraft/world/level/levelgen/DensityFunctions$RangeChoice/ ()V +MD: net/minecraft/world/level/levelgen/DensityFunctions$RangeChoice/ (Lnet/minecraft/world/level/levelgen/DensityFunction;DDLnet/minecraft/world/level/levelgen/DensityFunction;Lnet/minecraft/world/level/levelgen/DensityFunction;)V net/minecraft/world/level/levelgen/DensityFunctions$RangeChoice/ (Lnet/minecraft/world/level/levelgen/DensityFunction;DDLnet/minecraft/world/level/levelgen/DensityFunction;Lnet/minecraft/world/level/levelgen/DensityFunction;)V +MD: net/minecraft/world/level/levelgen/DensityFunctions$RangeChoice/equals (Ljava/lang/Object;)Z net/minecraft/world/level/levelgen/DensityFunctions$RangeChoice/equals (Ljava/lang/Object;)Z +MD: net/minecraft/world/level/levelgen/DensityFunctions$RangeChoice/f_208823_ ()Lnet/minecraft/world/level/levelgen/DensityFunction; net/minecraft/world/level/levelgen/DensityFunctions$RangeChoice/input ()Lnet/minecraft/world/level/levelgen/DensityFunction; +MD: net/minecraft/world/level/levelgen/DensityFunctions$RangeChoice/f_208824_ ()D net/minecraft/world/level/levelgen/DensityFunctions$RangeChoice/minInclusive ()D +MD: net/minecraft/world/level/levelgen/DensityFunctions$RangeChoice/f_208825_ ()D net/minecraft/world/level/levelgen/DensityFunctions$RangeChoice/maxExclusive ()D +MD: net/minecraft/world/level/levelgen/DensityFunctions$RangeChoice/f_208826_ ()Lnet/minecraft/world/level/levelgen/DensityFunction; net/minecraft/world/level/levelgen/DensityFunctions$RangeChoice/whenInRange ()Lnet/minecraft/world/level/levelgen/DensityFunction; +MD: net/minecraft/world/level/levelgen/DensityFunctions$RangeChoice/f_208827_ ()Lnet/minecraft/world/level/levelgen/DensityFunction; net/minecraft/world/level/levelgen/DensityFunctions$RangeChoice/whenOutOfRange ()Lnet/minecraft/world/level/levelgen/DensityFunction; +MD: net/minecraft/world/level/levelgen/DensityFunctions$RangeChoice/hashCode ()I net/minecraft/world/level/levelgen/DensityFunctions$RangeChoice/hashCode ()I +MD: net/minecraft/world/level/levelgen/DensityFunctions$RangeChoice/m_207362_ ([DLnet/minecraft/world/level/levelgen/DensityFunction$ContextProvider;)V net/minecraft/world/level/levelgen/DensityFunctions$RangeChoice/fillArray ([DLnet/minecraft/world/level/levelgen/DensityFunction$ContextProvider;)V +MD: net/minecraft/world/level/levelgen/DensityFunctions$RangeChoice/m_207386_ (Lnet/minecraft/world/level/levelgen/DensityFunction$FunctionContext;)D net/minecraft/world/level/levelgen/DensityFunctions$RangeChoice/compute (Lnet/minecraft/world/level/levelgen/DensityFunction$FunctionContext;)D +MD: net/minecraft/world/level/levelgen/DensityFunctions$RangeChoice/m_207401_ ()D net/minecraft/world/level/levelgen/DensityFunctions$RangeChoice/maxValue ()D +MD: net/minecraft/world/level/levelgen/DensityFunctions$RangeChoice/m_207402_ ()D net/minecraft/world/level/levelgen/DensityFunctions$RangeChoice/minValue ()D +MD: net/minecraft/world/level/levelgen/DensityFunctions$RangeChoice/m_207456_ (Lnet/minecraft/world/level/levelgen/DensityFunction$Visitor;)Lnet/minecraft/world/level/levelgen/DensityFunction; net/minecraft/world/level/levelgen/DensityFunctions$RangeChoice/mapAll (Lnet/minecraft/world/level/levelgen/DensityFunction$Visitor;)Lnet/minecraft/world/level/levelgen/DensityFunction; +MD: net/minecraft/world/level/levelgen/DensityFunctions$RangeChoice/m_208836_ (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/world/level/levelgen/DensityFunctions$RangeChoice/lambda$static$0 (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/world/level/levelgen/DensityFunctions$RangeChoice/m_214023_ ()Lnet/minecraft/util/KeyDispatchDataCodec; net/minecraft/world/level/levelgen/DensityFunctions$RangeChoice/codec ()Lnet/minecraft/util/KeyDispatchDataCodec; +MD: net/minecraft/world/level/levelgen/DensityFunctions$RangeChoice/toString ()Ljava/lang/String; net/minecraft/world/level/levelgen/DensityFunctions$RangeChoice/toString ()Ljava/lang/String; +MD: net/minecraft/world/level/levelgen/DensityFunctions$Shift/ ()V net/minecraft/world/level/levelgen/DensityFunctions$Shift/ ()V +MD: net/minecraft/world/level/levelgen/DensityFunctions$Shift/ (Lnet/minecraft/world/level/levelgen/DensityFunction$NoiseHolder;)V net/minecraft/world/level/levelgen/DensityFunctions$Shift/ (Lnet/minecraft/world/level/levelgen/DensityFunction$NoiseHolder;)V +MD: net/minecraft/world/level/levelgen/DensityFunctions$Shift/equals (Ljava/lang/Object;)Z net/minecraft/world/level/levelgen/DensityFunctions$Shift/equals (Ljava/lang/Object;)Z +MD: net/minecraft/world/level/levelgen/DensityFunctions$Shift/hashCode ()I net/minecraft/world/level/levelgen/DensityFunctions$Shift/hashCode ()I +MD: net/minecraft/world/level/levelgen/DensityFunctions$Shift/m_207386_ (Lnet/minecraft/world/level/levelgen/DensityFunction$FunctionContext;)D net/minecraft/world/level/levelgen/DensityFunctions$Shift/compute (Lnet/minecraft/world/level/levelgen/DensityFunction$FunctionContext;)D +MD: net/minecraft/world/level/levelgen/DensityFunctions$Shift/m_207456_ (Lnet/minecraft/world/level/levelgen/DensityFunction$Visitor;)Lnet/minecraft/world/level/levelgen/DensityFunction; net/minecraft/world/level/levelgen/DensityFunctions$Shift/mapAll (Lnet/minecraft/world/level/levelgen/DensityFunction$Visitor;)Lnet/minecraft/world/level/levelgen/DensityFunction; +MD: net/minecraft/world/level/levelgen/DensityFunctions$Shift/m_214023_ ()Lnet/minecraft/util/KeyDispatchDataCodec; net/minecraft/world/level/levelgen/DensityFunctions$Shift/codec ()Lnet/minecraft/util/KeyDispatchDataCodec; +MD: net/minecraft/world/level/levelgen/DensityFunctions$Shift/m_214040_ ()Lnet/minecraft/world/level/levelgen/DensityFunction$NoiseHolder; net/minecraft/world/level/levelgen/DensityFunctions$Shift/offsetNoise ()Lnet/minecraft/world/level/levelgen/DensityFunction$NoiseHolder; +MD: net/minecraft/world/level/levelgen/DensityFunctions$Shift/toString ()Ljava/lang/String; net/minecraft/world/level/levelgen/DensityFunctions$Shift/toString ()Ljava/lang/String; +MD: net/minecraft/world/level/levelgen/DensityFunctions$ShiftA/ ()V net/minecraft/world/level/levelgen/DensityFunctions$ShiftA/ ()V +MD: net/minecraft/world/level/levelgen/DensityFunctions$ShiftA/ (Lnet/minecraft/world/level/levelgen/DensityFunction$NoiseHolder;)V net/minecraft/world/level/levelgen/DensityFunctions$ShiftA/ (Lnet/minecraft/world/level/levelgen/DensityFunction$NoiseHolder;)V +MD: net/minecraft/world/level/levelgen/DensityFunctions$ShiftA/equals (Ljava/lang/Object;)Z net/minecraft/world/level/levelgen/DensityFunctions$ShiftA/equals (Ljava/lang/Object;)Z +MD: net/minecraft/world/level/levelgen/DensityFunctions$ShiftA/hashCode ()I net/minecraft/world/level/levelgen/DensityFunctions$ShiftA/hashCode ()I +MD: net/minecraft/world/level/levelgen/DensityFunctions$ShiftA/m_207386_ (Lnet/minecraft/world/level/levelgen/DensityFunction$FunctionContext;)D net/minecraft/world/level/levelgen/DensityFunctions$ShiftA/compute (Lnet/minecraft/world/level/levelgen/DensityFunction$FunctionContext;)D +MD: net/minecraft/world/level/levelgen/DensityFunctions$ShiftA/m_207456_ (Lnet/minecraft/world/level/levelgen/DensityFunction$Visitor;)Lnet/minecraft/world/level/levelgen/DensityFunction; net/minecraft/world/level/levelgen/DensityFunctions$ShiftA/mapAll (Lnet/minecraft/world/level/levelgen/DensityFunction$Visitor;)Lnet/minecraft/world/level/levelgen/DensityFunction; +MD: net/minecraft/world/level/levelgen/DensityFunctions$ShiftA/m_214023_ ()Lnet/minecraft/util/KeyDispatchDataCodec; net/minecraft/world/level/levelgen/DensityFunctions$ShiftA/codec ()Lnet/minecraft/util/KeyDispatchDataCodec; +MD: net/minecraft/world/level/levelgen/DensityFunctions$ShiftA/m_214040_ ()Lnet/minecraft/world/level/levelgen/DensityFunction$NoiseHolder; net/minecraft/world/level/levelgen/DensityFunctions$ShiftA/offsetNoise ()Lnet/minecraft/world/level/levelgen/DensityFunction$NoiseHolder; +MD: net/minecraft/world/level/levelgen/DensityFunctions$ShiftA/toString ()Ljava/lang/String; net/minecraft/world/level/levelgen/DensityFunctions$ShiftA/toString ()Ljava/lang/String; +MD: net/minecraft/world/level/levelgen/DensityFunctions$ShiftB/ ()V net/minecraft/world/level/levelgen/DensityFunctions$ShiftB/ ()V +MD: net/minecraft/world/level/levelgen/DensityFunctions$ShiftB/ (Lnet/minecraft/world/level/levelgen/DensityFunction$NoiseHolder;)V net/minecraft/world/level/levelgen/DensityFunctions$ShiftB/ (Lnet/minecraft/world/level/levelgen/DensityFunction$NoiseHolder;)V +MD: net/minecraft/world/level/levelgen/DensityFunctions$ShiftB/equals (Ljava/lang/Object;)Z net/minecraft/world/level/levelgen/DensityFunctions$ShiftB/equals (Ljava/lang/Object;)Z +MD: net/minecraft/world/level/levelgen/DensityFunctions$ShiftB/hashCode ()I net/minecraft/world/level/levelgen/DensityFunctions$ShiftB/hashCode ()I +MD: net/minecraft/world/level/levelgen/DensityFunctions$ShiftB/m_207386_ (Lnet/minecraft/world/level/levelgen/DensityFunction$FunctionContext;)D net/minecraft/world/level/levelgen/DensityFunctions$ShiftB/compute (Lnet/minecraft/world/level/levelgen/DensityFunction$FunctionContext;)D +MD: net/minecraft/world/level/levelgen/DensityFunctions$ShiftB/m_207456_ (Lnet/minecraft/world/level/levelgen/DensityFunction$Visitor;)Lnet/minecraft/world/level/levelgen/DensityFunction; net/minecraft/world/level/levelgen/DensityFunctions$ShiftB/mapAll (Lnet/minecraft/world/level/levelgen/DensityFunction$Visitor;)Lnet/minecraft/world/level/levelgen/DensityFunction; +MD: net/minecraft/world/level/levelgen/DensityFunctions$ShiftB/m_214023_ ()Lnet/minecraft/util/KeyDispatchDataCodec; net/minecraft/world/level/levelgen/DensityFunctions$ShiftB/codec ()Lnet/minecraft/util/KeyDispatchDataCodec; +MD: net/minecraft/world/level/levelgen/DensityFunctions$ShiftB/m_214040_ ()Lnet/minecraft/world/level/levelgen/DensityFunction$NoiseHolder; net/minecraft/world/level/levelgen/DensityFunctions$ShiftB/offsetNoise ()Lnet/minecraft/world/level/levelgen/DensityFunction$NoiseHolder; +MD: net/minecraft/world/level/levelgen/DensityFunctions$ShiftB/toString ()Ljava/lang/String; net/minecraft/world/level/levelgen/DensityFunctions$ShiftB/toString ()Ljava/lang/String; +MD: net/minecraft/world/level/levelgen/DensityFunctions$ShiftNoise/m_207362_ ([DLnet/minecraft/world/level/levelgen/DensityFunction$ContextProvider;)V net/minecraft/world/level/levelgen/DensityFunctions$ShiftNoise/fillArray ([DLnet/minecraft/world/level/levelgen/DensityFunction$ContextProvider;)V +MD: net/minecraft/world/level/levelgen/DensityFunctions$ShiftNoise/m_207401_ ()D net/minecraft/world/level/levelgen/DensityFunctions$ShiftNoise/maxValue ()D +MD: net/minecraft/world/level/levelgen/DensityFunctions$ShiftNoise/m_207402_ ()D net/minecraft/world/level/levelgen/DensityFunctions$ShiftNoise/minValue ()D +MD: net/minecraft/world/level/levelgen/DensityFunctions$ShiftNoise/m_208917_ (DDD)D net/minecraft/world/level/levelgen/DensityFunctions$ShiftNoise/compute (DDD)D +MD: net/minecraft/world/level/levelgen/DensityFunctions$ShiftNoise/m_214040_ ()Lnet/minecraft/world/level/levelgen/DensityFunction$NoiseHolder; net/minecraft/world/level/levelgen/DensityFunctions$ShiftNoise/offsetNoise ()Lnet/minecraft/world/level/levelgen/DensityFunction$NoiseHolder; +MD: net/minecraft/world/level/levelgen/DensityFunctions$ShiftedNoise/ ()V net/minecraft/world/level/levelgen/DensityFunctions$ShiftedNoise/ ()V +MD: net/minecraft/world/level/levelgen/DensityFunctions$ShiftedNoise/ (Lnet/minecraft/world/level/levelgen/DensityFunction;Lnet/minecraft/world/level/levelgen/DensityFunction;Lnet/minecraft/world/level/levelgen/DensityFunction;DDLnet/minecraft/world/level/levelgen/DensityFunction$NoiseHolder;)V net/minecraft/world/level/levelgen/DensityFunctions$ShiftedNoise/ (Lnet/minecraft/world/level/levelgen/DensityFunction;Lnet/minecraft/world/level/levelgen/DensityFunction;Lnet/minecraft/world/level/levelgen/DensityFunction;DDLnet/minecraft/world/level/levelgen/DensityFunction$NoiseHolder;)V +MD: net/minecraft/world/level/levelgen/DensityFunctions$ShiftedNoise/equals (Ljava/lang/Object;)Z net/minecraft/world/level/levelgen/DensityFunctions$ShiftedNoise/equals (Ljava/lang/Object;)Z +MD: net/minecraft/world/level/levelgen/DensityFunctions$ShiftedNoise/f_208924_ ()Lnet/minecraft/world/level/levelgen/DensityFunction; net/minecraft/world/level/levelgen/DensityFunctions$ShiftedNoise/shiftX ()Lnet/minecraft/world/level/levelgen/DensityFunction; +MD: net/minecraft/world/level/levelgen/DensityFunctions$ShiftedNoise/f_208925_ ()Lnet/minecraft/world/level/levelgen/DensityFunction; net/minecraft/world/level/levelgen/DensityFunctions$ShiftedNoise/shiftY ()Lnet/minecraft/world/level/levelgen/DensityFunction; +MD: net/minecraft/world/level/levelgen/DensityFunctions$ShiftedNoise/f_208926_ ()Lnet/minecraft/world/level/levelgen/DensityFunction; net/minecraft/world/level/levelgen/DensityFunctions$ShiftedNoise/shiftZ ()Lnet/minecraft/world/level/levelgen/DensityFunction; +MD: net/minecraft/world/level/levelgen/DensityFunctions$ShiftedNoise/f_208927_ ()D net/minecraft/world/level/levelgen/DensityFunctions$ShiftedNoise/xzScale ()D +MD: net/minecraft/world/level/levelgen/DensityFunctions$ShiftedNoise/f_208928_ ()D net/minecraft/world/level/levelgen/DensityFunctions$ShiftedNoise/yScale ()D +MD: net/minecraft/world/level/levelgen/DensityFunctions$ShiftedNoise/f_208930_ ()Lnet/minecraft/world/level/levelgen/DensityFunction$NoiseHolder; net/minecraft/world/level/levelgen/DensityFunctions$ShiftedNoise/noise ()Lnet/minecraft/world/level/levelgen/DensityFunction$NoiseHolder; +MD: net/minecraft/world/level/levelgen/DensityFunctions$ShiftedNoise/hashCode ()I net/minecraft/world/level/levelgen/DensityFunctions$ShiftedNoise/hashCode ()I +MD: net/minecraft/world/level/levelgen/DensityFunctions$ShiftedNoise/m_207362_ ([DLnet/minecraft/world/level/levelgen/DensityFunction$ContextProvider;)V net/minecraft/world/level/levelgen/DensityFunctions$ShiftedNoise/fillArray ([DLnet/minecraft/world/level/levelgen/DensityFunction$ContextProvider;)V +MD: net/minecraft/world/level/levelgen/DensityFunctions$ShiftedNoise/m_207386_ (Lnet/minecraft/world/level/levelgen/DensityFunction$FunctionContext;)D net/minecraft/world/level/levelgen/DensityFunctions$ShiftedNoise/compute (Lnet/minecraft/world/level/levelgen/DensityFunction$FunctionContext;)D +MD: net/minecraft/world/level/levelgen/DensityFunctions$ShiftedNoise/m_207401_ ()D net/minecraft/world/level/levelgen/DensityFunctions$ShiftedNoise/maxValue ()D +MD: net/minecraft/world/level/levelgen/DensityFunctions$ShiftedNoise/m_207402_ ()D net/minecraft/world/level/levelgen/DensityFunctions$ShiftedNoise/minValue ()D +MD: net/minecraft/world/level/levelgen/DensityFunctions$ShiftedNoise/m_207456_ (Lnet/minecraft/world/level/levelgen/DensityFunction$Visitor;)Lnet/minecraft/world/level/levelgen/DensityFunction; net/minecraft/world/level/levelgen/DensityFunctions$ShiftedNoise/mapAll (Lnet/minecraft/world/level/levelgen/DensityFunction$Visitor;)Lnet/minecraft/world/level/levelgen/DensityFunction; +MD: net/minecraft/world/level/levelgen/DensityFunctions$ShiftedNoise/m_208942_ (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/world/level/levelgen/DensityFunctions$ShiftedNoise/lambda$static$0 (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/world/level/levelgen/DensityFunctions$ShiftedNoise/m_214023_ ()Lnet/minecraft/util/KeyDispatchDataCodec; net/minecraft/world/level/levelgen/DensityFunctions$ShiftedNoise/codec ()Lnet/minecraft/util/KeyDispatchDataCodec; +MD: net/minecraft/world/level/levelgen/DensityFunctions$ShiftedNoise/toString ()Ljava/lang/String; net/minecraft/world/level/levelgen/DensityFunctions$ShiftedNoise/toString ()Ljava/lang/String; +MD: net/minecraft/world/level/levelgen/DensityFunctions$Spline/ ()V net/minecraft/world/level/levelgen/DensityFunctions$Spline/ ()V +MD: net/minecraft/world/level/levelgen/DensityFunctions$Spline/ (Lnet/minecraft/util/CubicSpline;)V net/minecraft/world/level/levelgen/DensityFunctions$Spline/ (Lnet/minecraft/util/CubicSpline;)V +MD: net/minecraft/world/level/levelgen/DensityFunctions$Spline/equals (Ljava/lang/Object;)Z net/minecraft/world/level/levelgen/DensityFunctions$Spline/equals (Ljava/lang/Object;)Z +MD: net/minecraft/world/level/levelgen/DensityFunctions$Spline/f_211702_ ()Lnet/minecraft/util/CubicSpline; net/minecraft/world/level/levelgen/DensityFunctions$Spline/spline ()Lnet/minecraft/util/CubicSpline; +MD: net/minecraft/world/level/levelgen/DensityFunctions$Spline/hashCode ()I net/minecraft/world/level/levelgen/DensityFunctions$Spline/hashCode ()I +MD: net/minecraft/world/level/levelgen/DensityFunctions$Spline/m_207362_ ([DLnet/minecraft/world/level/levelgen/DensityFunction$ContextProvider;)V net/minecraft/world/level/levelgen/DensityFunctions$Spline/fillArray ([DLnet/minecraft/world/level/levelgen/DensityFunction$ContextProvider;)V +MD: net/minecraft/world/level/levelgen/DensityFunctions$Spline/m_207386_ (Lnet/minecraft/world/level/levelgen/DensityFunction$FunctionContext;)D net/minecraft/world/level/levelgen/DensityFunctions$Spline/compute (Lnet/minecraft/world/level/levelgen/DensityFunction$FunctionContext;)D +MD: net/minecraft/world/level/levelgen/DensityFunctions$Spline/m_207401_ ()D net/minecraft/world/level/levelgen/DensityFunctions$Spline/maxValue ()D +MD: net/minecraft/world/level/levelgen/DensityFunctions$Spline/m_207402_ ()D net/minecraft/world/level/levelgen/DensityFunctions$Spline/minValue ()D +MD: net/minecraft/world/level/levelgen/DensityFunctions$Spline/m_207456_ (Lnet/minecraft/world/level/levelgen/DensityFunction$Visitor;)Lnet/minecraft/world/level/levelgen/DensityFunction; net/minecraft/world/level/levelgen/DensityFunctions$Spline/mapAll (Lnet/minecraft/world/level/levelgen/DensityFunction$Visitor;)Lnet/minecraft/world/level/levelgen/DensityFunction; +MD: net/minecraft/world/level/levelgen/DensityFunctions$Spline/m_214023_ ()Lnet/minecraft/util/KeyDispatchDataCodec; net/minecraft/world/level/levelgen/DensityFunctions$Spline/codec ()Lnet/minecraft/util/KeyDispatchDataCodec; +MD: net/minecraft/world/level/levelgen/DensityFunctions$Spline/m_224117_ (Lnet/minecraft/world/level/levelgen/DensityFunction$Visitor;Lnet/minecraft/world/level/levelgen/DensityFunctions$Spline$Coordinate;)Lnet/minecraft/world/level/levelgen/DensityFunctions$Spline$Coordinate; net/minecraft/world/level/levelgen/DensityFunctions$Spline/lambda$mapAll$0 (Lnet/minecraft/world/level/levelgen/DensityFunction$Visitor;Lnet/minecraft/world/level/levelgen/DensityFunctions$Spline$Coordinate;)Lnet/minecraft/world/level/levelgen/DensityFunctions$Spline$Coordinate; +MD: net/minecraft/world/level/levelgen/DensityFunctions$Spline/toString ()Ljava/lang/String; net/minecraft/world/level/levelgen/DensityFunctions$Spline/toString ()Ljava/lang/String; +MD: net/minecraft/world/level/levelgen/DensityFunctions$Spline$Coordinate/ ()V net/minecraft/world/level/levelgen/DensityFunctions$Spline$Coordinate/ ()V +MD: net/minecraft/world/level/levelgen/DensityFunctions$Spline$Coordinate/ (Lnet/minecraft/core/Holder;)V net/minecraft/world/level/levelgen/DensityFunctions$Spline$Coordinate/ (Lnet/minecraft/core/Holder;)V +MD: net/minecraft/world/level/levelgen/DensityFunctions$Spline$Coordinate/equals (Ljava/lang/Object;)Z net/minecraft/world/level/levelgen/DensityFunctions$Spline$Coordinate/equals (Ljava/lang/Object;)Z +MD: net/minecraft/world/level/levelgen/DensityFunctions$Spline$Coordinate/f_224122_ ()Lnet/minecraft/core/Holder; net/minecraft/world/level/levelgen/DensityFunctions$Spline$Coordinate/function ()Lnet/minecraft/core/Holder; +MD: net/minecraft/world/level/levelgen/DensityFunctions$Spline$Coordinate/hashCode ()I net/minecraft/world/level/levelgen/DensityFunctions$Spline$Coordinate/hashCode ()I +MD: net/minecraft/world/level/levelgen/DensityFunctions$Spline$Coordinate/m_183321_ (Lnet/minecraft/world/level/levelgen/DensityFunctions$Spline$Point;)F net/minecraft/world/level/levelgen/DensityFunctions$Spline$Coordinate/apply (Lnet/minecraft/world/level/levelgen/DensityFunctions$Spline$Point;)F +MD: net/minecraft/world/level/levelgen/DensityFunctions$Spline$Coordinate/m_183321_ (Ljava/lang/Object;)F net/minecraft/world/level/levelgen/DensityFunctions$Spline$Coordinate/apply (Ljava/lang/Object;)F +MD: net/minecraft/world/level/levelgen/DensityFunctions$Spline$Coordinate/m_213849_ ()F net/minecraft/world/level/levelgen/DensityFunctions$Spline$Coordinate/maxValue ()F +MD: net/minecraft/world/level/levelgen/DensityFunctions$Spline$Coordinate/m_213850_ ()F net/minecraft/world/level/levelgen/DensityFunctions$Spline$Coordinate/minValue ()F +MD: net/minecraft/world/level/levelgen/DensityFunctions$Spline$Coordinate/m_224127_ (Lnet/minecraft/world/level/levelgen/DensityFunction$Visitor;)Lnet/minecraft/world/level/levelgen/DensityFunctions$Spline$Coordinate; net/minecraft/world/level/levelgen/DensityFunctions$Spline$Coordinate/mapAll (Lnet/minecraft/world/level/levelgen/DensityFunction$Visitor;)Lnet/minecraft/world/level/levelgen/DensityFunctions$Spline$Coordinate; +MD: net/minecraft/world/level/levelgen/DensityFunctions$Spline$Coordinate/toString ()Ljava/lang/String; net/minecraft/world/level/levelgen/DensityFunctions$Spline$Coordinate/toString ()Ljava/lang/String; +MD: net/minecraft/world/level/levelgen/DensityFunctions$Spline$Point/ (Lnet/minecraft/world/level/levelgen/DensityFunction$FunctionContext;)V net/minecraft/world/level/levelgen/DensityFunctions$Spline$Point/ (Lnet/minecraft/world/level/levelgen/DensityFunction$FunctionContext;)V +MD: net/minecraft/world/level/levelgen/DensityFunctions$Spline$Point/equals (Ljava/lang/Object;)Z net/minecraft/world/level/levelgen/DensityFunctions$Spline$Point/equals (Ljava/lang/Object;)Z +MD: net/minecraft/world/level/levelgen/DensityFunctions$Spline$Point/f_224139_ ()Lnet/minecraft/world/level/levelgen/DensityFunction$FunctionContext; net/minecraft/world/level/levelgen/DensityFunctions$Spline$Point/context ()Lnet/minecraft/world/level/levelgen/DensityFunction$FunctionContext; +MD: net/minecraft/world/level/levelgen/DensityFunctions$Spline$Point/hashCode ()I net/minecraft/world/level/levelgen/DensityFunctions$Spline$Point/hashCode ()I +MD: net/minecraft/world/level/levelgen/DensityFunctions$Spline$Point/toString ()Ljava/lang/String; net/minecraft/world/level/levelgen/DensityFunctions$Spline$Point/toString ()Ljava/lang/String; +MD: net/minecraft/world/level/levelgen/DensityFunctions$TransformerWithContext/m_207189_ ()Lnet/minecraft/world/level/levelgen/DensityFunction; net/minecraft/world/level/levelgen/DensityFunctions$TransformerWithContext/input ()Lnet/minecraft/world/level/levelgen/DensityFunction; +MD: net/minecraft/world/level/levelgen/DensityFunctions$TransformerWithContext/m_207219_ (Lnet/minecraft/world/level/levelgen/DensityFunction$FunctionContext;D)D net/minecraft/world/level/levelgen/DensityFunctions$TransformerWithContext/transform (Lnet/minecraft/world/level/levelgen/DensityFunction$FunctionContext;D)D +MD: net/minecraft/world/level/levelgen/DensityFunctions$TransformerWithContext/m_207362_ ([DLnet/minecraft/world/level/levelgen/DensityFunction$ContextProvider;)V net/minecraft/world/level/levelgen/DensityFunctions$TransformerWithContext/fillArray ([DLnet/minecraft/world/level/levelgen/DensityFunction$ContextProvider;)V +MD: net/minecraft/world/level/levelgen/DensityFunctions$TransformerWithContext/m_207386_ (Lnet/minecraft/world/level/levelgen/DensityFunction$FunctionContext;)D net/minecraft/world/level/levelgen/DensityFunctions$TransformerWithContext/compute (Lnet/minecraft/world/level/levelgen/DensityFunction$FunctionContext;)D +MD: net/minecraft/world/level/levelgen/DensityFunctions$TwoArgumentSimpleFunction/ ()V net/minecraft/world/level/levelgen/DensityFunctions$TwoArgumentSimpleFunction/ ()V +MD: net/minecraft/world/level/levelgen/DensityFunctions$TwoArgumentSimpleFunction/m_207119_ ()Lnet/minecraft/world/level/levelgen/DensityFunctions$TwoArgumentSimpleFunction$Type; net/minecraft/world/level/levelgen/DensityFunctions$TwoArgumentSimpleFunction/type ()Lnet/minecraft/world/level/levelgen/DensityFunctions$TwoArgumentSimpleFunction$Type; +MD: net/minecraft/world/level/levelgen/DensityFunctions$TwoArgumentSimpleFunction/m_207185_ ()Lnet/minecraft/world/level/levelgen/DensityFunction; net/minecraft/world/level/levelgen/DensityFunctions$TwoArgumentSimpleFunction/argument1 ()Lnet/minecraft/world/level/levelgen/DensityFunction; +MD: net/minecraft/world/level/levelgen/DensityFunctions$TwoArgumentSimpleFunction/m_207190_ ()Lnet/minecraft/world/level/levelgen/DensityFunction; net/minecraft/world/level/levelgen/DensityFunctions$TwoArgumentSimpleFunction/argument2 ()Lnet/minecraft/world/level/levelgen/DensityFunction; +MD: net/minecraft/world/level/levelgen/DensityFunctions$TwoArgumentSimpleFunction/m_209073_ (Lnet/minecraft/world/level/levelgen/DensityFunctions$TwoArgumentSimpleFunction$Type;Lnet/minecraft/world/level/levelgen/DensityFunction;Lnet/minecraft/world/level/levelgen/DensityFunction;)Lnet/minecraft/world/level/levelgen/DensityFunctions$TwoArgumentSimpleFunction; net/minecraft/world/level/levelgen/DensityFunctions$TwoArgumentSimpleFunction/create (Lnet/minecraft/world/level/levelgen/DensityFunctions$TwoArgumentSimpleFunction$Type;Lnet/minecraft/world/level/levelgen/DensityFunction;Lnet/minecraft/world/level/levelgen/DensityFunction;)Lnet/minecraft/world/level/levelgen/DensityFunctions$TwoArgumentSimpleFunction; +MD: net/minecraft/world/level/levelgen/DensityFunctions$TwoArgumentSimpleFunction/m_214023_ ()Lnet/minecraft/util/KeyDispatchDataCodec; net/minecraft/world/level/levelgen/DensityFunctions$TwoArgumentSimpleFunction/codec ()Lnet/minecraft/util/KeyDispatchDataCodec; +MD: net/minecraft/world/level/levelgen/DensityFunctions$TwoArgumentSimpleFunction$Type/ ()V net/minecraft/world/level/levelgen/DensityFunctions$TwoArgumentSimpleFunction$Type/ ()V +MD: net/minecraft/world/level/levelgen/DensityFunctions$TwoArgumentSimpleFunction$Type/ (Ljava/lang/String;ILjava/lang/String;)V net/minecraft/world/level/levelgen/DensityFunctions$TwoArgumentSimpleFunction$Type/ (Ljava/lang/String;ILjava/lang/String;)V +MD: net/minecraft/world/level/levelgen/DensityFunctions$TwoArgumentSimpleFunction$Type/m_209090_ ()[Lnet/minecraft/world/level/levelgen/DensityFunctions$TwoArgumentSimpleFunction$Type; net/minecraft/world/level/levelgen/DensityFunctions$TwoArgumentSimpleFunction$Type/$values ()[Lnet/minecraft/world/level/levelgen/DensityFunctions$TwoArgumentSimpleFunction$Type; +MD: net/minecraft/world/level/levelgen/DensityFunctions$TwoArgumentSimpleFunction$Type/m_209091_ (Lnet/minecraft/world/level/levelgen/DensityFunction;Lnet/minecraft/world/level/levelgen/DensityFunction;)Lnet/minecraft/world/level/levelgen/DensityFunctions$TwoArgumentSimpleFunction; net/minecraft/world/level/levelgen/DensityFunctions$TwoArgumentSimpleFunction$Type/lambda$new$0 (Lnet/minecraft/world/level/levelgen/DensityFunction;Lnet/minecraft/world/level/levelgen/DensityFunction;)Lnet/minecraft/world/level/levelgen/DensityFunctions$TwoArgumentSimpleFunction; +MD: net/minecraft/world/level/levelgen/DensityFunctions$TwoArgumentSimpleFunction$Type/m_7912_ ()Ljava/lang/String; net/minecraft/world/level/levelgen/DensityFunctions$TwoArgumentSimpleFunction$Type/getSerializedName ()Ljava/lang/String; +MD: net/minecraft/world/level/levelgen/DensityFunctions$TwoArgumentSimpleFunction$Type/valueOf (Ljava/lang/String;)Lnet/minecraft/world/level/levelgen/DensityFunctions$TwoArgumentSimpleFunction$Type; net/minecraft/world/level/levelgen/DensityFunctions$TwoArgumentSimpleFunction$Type/valueOf (Ljava/lang/String;)Lnet/minecraft/world/level/levelgen/DensityFunctions$TwoArgumentSimpleFunction$Type; +MD: net/minecraft/world/level/levelgen/DensityFunctions$TwoArgumentSimpleFunction$Type/values ()[Lnet/minecraft/world/level/levelgen/DensityFunctions$TwoArgumentSimpleFunction$Type; net/minecraft/world/level/levelgen/DensityFunctions$TwoArgumentSimpleFunction$Type/values ()[Lnet/minecraft/world/level/levelgen/DensityFunctions$TwoArgumentSimpleFunction$Type; +MD: net/minecraft/world/level/levelgen/DensityFunctions$WeirdScaledSampler/ ()V net/minecraft/world/level/levelgen/DensityFunctions$WeirdScaledSampler/ ()V +MD: net/minecraft/world/level/levelgen/DensityFunctions$WeirdScaledSampler/ (Lnet/minecraft/world/level/levelgen/DensityFunction;Lnet/minecraft/world/level/levelgen/DensityFunction$NoiseHolder;Lnet/minecraft/world/level/levelgen/DensityFunctions$WeirdScaledSampler$RarityValueMapper;)V net/minecraft/world/level/levelgen/DensityFunctions$WeirdScaledSampler/ (Lnet/minecraft/world/level/levelgen/DensityFunction;Lnet/minecraft/world/level/levelgen/DensityFunction$NoiseHolder;Lnet/minecraft/world/level/levelgen/DensityFunctions$WeirdScaledSampler$RarityValueMapper;)V +MD: net/minecraft/world/level/levelgen/DensityFunctions$WeirdScaledSampler/equals (Ljava/lang/Object;)Z net/minecraft/world/level/levelgen/DensityFunctions$WeirdScaledSampler/equals (Ljava/lang/Object;)Z +MD: net/minecraft/world/level/levelgen/DensityFunctions$WeirdScaledSampler/f_208427_ ()Lnet/minecraft/world/level/levelgen/DensityFunction$NoiseHolder; net/minecraft/world/level/levelgen/DensityFunctions$WeirdScaledSampler/noise ()Lnet/minecraft/world/level/levelgen/DensityFunction$NoiseHolder; +MD: net/minecraft/world/level/levelgen/DensityFunctions$WeirdScaledSampler/f_208428_ ()Lnet/minecraft/world/level/levelgen/DensityFunctions$WeirdScaledSampler$RarityValueMapper; net/minecraft/world/level/levelgen/DensityFunctions$WeirdScaledSampler/rarityValueMapper ()Lnet/minecraft/world/level/levelgen/DensityFunctions$WeirdScaledSampler$RarityValueMapper; +MD: net/minecraft/world/level/levelgen/DensityFunctions$WeirdScaledSampler/hashCode ()I net/minecraft/world/level/levelgen/DensityFunctions$WeirdScaledSampler/hashCode ()I +MD: net/minecraft/world/level/levelgen/DensityFunctions$WeirdScaledSampler/m_207189_ ()Lnet/minecraft/world/level/levelgen/DensityFunction; net/minecraft/world/level/levelgen/DensityFunctions$WeirdScaledSampler/input ()Lnet/minecraft/world/level/levelgen/DensityFunction; +MD: net/minecraft/world/level/levelgen/DensityFunctions$WeirdScaledSampler/m_207219_ (Lnet/minecraft/world/level/levelgen/DensityFunction$FunctionContext;D)D net/minecraft/world/level/levelgen/DensityFunctions$WeirdScaledSampler/transform (Lnet/minecraft/world/level/levelgen/DensityFunction$FunctionContext;D)D +MD: net/minecraft/world/level/levelgen/DensityFunctions$WeirdScaledSampler/m_207401_ ()D net/minecraft/world/level/levelgen/DensityFunctions$WeirdScaledSampler/maxValue ()D +MD: net/minecraft/world/level/levelgen/DensityFunctions$WeirdScaledSampler/m_207402_ ()D net/minecraft/world/level/levelgen/DensityFunctions$WeirdScaledSampler/minValue ()D +MD: net/minecraft/world/level/levelgen/DensityFunctions$WeirdScaledSampler/m_207456_ (Lnet/minecraft/world/level/levelgen/DensityFunction$Visitor;)Lnet/minecraft/world/level/levelgen/DensityFunction; net/minecraft/world/level/levelgen/DensityFunctions$WeirdScaledSampler/mapAll (Lnet/minecraft/world/level/levelgen/DensityFunction$Visitor;)Lnet/minecraft/world/level/levelgen/DensityFunction; +MD: net/minecraft/world/level/levelgen/DensityFunctions$WeirdScaledSampler/m_208437_ (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/world/level/levelgen/DensityFunctions$WeirdScaledSampler/lambda$static$0 (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/world/level/levelgen/DensityFunctions$WeirdScaledSampler/m_214023_ ()Lnet/minecraft/util/KeyDispatchDataCodec; net/minecraft/world/level/levelgen/DensityFunctions$WeirdScaledSampler/codec ()Lnet/minecraft/util/KeyDispatchDataCodec; +MD: net/minecraft/world/level/levelgen/DensityFunctions$WeirdScaledSampler/toString ()Ljava/lang/String; net/minecraft/world/level/levelgen/DensityFunctions$WeirdScaledSampler/toString ()Ljava/lang/String; +MD: net/minecraft/world/level/levelgen/DensityFunctions$WeirdScaledSampler$RarityValueMapper/ ()V net/minecraft/world/level/levelgen/DensityFunctions$WeirdScaledSampler$RarityValueMapper/ ()V +MD: net/minecraft/world/level/levelgen/DensityFunctions$WeirdScaledSampler$RarityValueMapper/ (Ljava/lang/String;ILjava/lang/String;Lit/unimi/dsi/fastutil/doubles/Double2DoubleFunction;D)V net/minecraft/world/level/levelgen/DensityFunctions$WeirdScaledSampler$RarityValueMapper/ (Ljava/lang/String;ILjava/lang/String;Lit/unimi/dsi/fastutil/doubles/Double2DoubleFunction;D)V +MD: net/minecraft/world/level/levelgen/DensityFunctions$WeirdScaledSampler$RarityValueMapper/m_208473_ ()[Lnet/minecraft/world/level/levelgen/DensityFunctions$WeirdScaledSampler$RarityValueMapper; net/minecraft/world/level/levelgen/DensityFunctions$WeirdScaledSampler$RarityValueMapper/$values ()[Lnet/minecraft/world/level/levelgen/DensityFunctions$WeirdScaledSampler$RarityValueMapper; +MD: net/minecraft/world/level/levelgen/DensityFunctions$WeirdScaledSampler$RarityValueMapper/m_7912_ ()Ljava/lang/String; net/minecraft/world/level/levelgen/DensityFunctions$WeirdScaledSampler$RarityValueMapper/getSerializedName ()Ljava/lang/String; +MD: net/minecraft/world/level/levelgen/DensityFunctions$WeirdScaledSampler$RarityValueMapper/valueOf (Ljava/lang/String;)Lnet/minecraft/world/level/levelgen/DensityFunctions$WeirdScaledSampler$RarityValueMapper; net/minecraft/world/level/levelgen/DensityFunctions$WeirdScaledSampler$RarityValueMapper/valueOf (Ljava/lang/String;)Lnet/minecraft/world/level/levelgen/DensityFunctions$WeirdScaledSampler$RarityValueMapper; +MD: net/minecraft/world/level/levelgen/DensityFunctions$WeirdScaledSampler$RarityValueMapper/values ()[Lnet/minecraft/world/level/levelgen/DensityFunctions$WeirdScaledSampler$RarityValueMapper; net/minecraft/world/level/levelgen/DensityFunctions$WeirdScaledSampler$RarityValueMapper/values ()[Lnet/minecraft/world/level/levelgen/DensityFunctions$WeirdScaledSampler$RarityValueMapper; +MD: net/minecraft/world/level/levelgen/DensityFunctions$YClampedGradient/ ()V net/minecraft/world/level/levelgen/DensityFunctions$YClampedGradient/ ()V +MD: net/minecraft/world/level/levelgen/DensityFunctions$YClampedGradient/ (IIDD)V net/minecraft/world/level/levelgen/DensityFunctions$YClampedGradient/ (IIDD)V +MD: net/minecraft/world/level/levelgen/DensityFunctions$YClampedGradient/equals (Ljava/lang/Object;)Z net/minecraft/world/level/levelgen/DensityFunctions$YClampedGradient/equals (Ljava/lang/Object;)Z +MD: net/minecraft/world/level/levelgen/DensityFunctions$YClampedGradient/f_208481_ ()I net/minecraft/world/level/levelgen/DensityFunctions$YClampedGradient/fromY ()I +MD: net/minecraft/world/level/levelgen/DensityFunctions$YClampedGradient/f_208482_ ()I net/minecraft/world/level/levelgen/DensityFunctions$YClampedGradient/toY ()I +MD: net/minecraft/world/level/levelgen/DensityFunctions$YClampedGradient/f_208483_ ()D net/minecraft/world/level/levelgen/DensityFunctions$YClampedGradient/fromValue ()D +MD: net/minecraft/world/level/levelgen/DensityFunctions$YClampedGradient/f_208484_ ()D net/minecraft/world/level/levelgen/DensityFunctions$YClampedGradient/toValue ()D +MD: net/minecraft/world/level/levelgen/DensityFunctions$YClampedGradient/hashCode ()I net/minecraft/world/level/levelgen/DensityFunctions$YClampedGradient/hashCode ()I +MD: net/minecraft/world/level/levelgen/DensityFunctions$YClampedGradient/m_207386_ (Lnet/minecraft/world/level/levelgen/DensityFunction$FunctionContext;)D net/minecraft/world/level/levelgen/DensityFunctions$YClampedGradient/compute (Lnet/minecraft/world/level/levelgen/DensityFunction$FunctionContext;)D +MD: net/minecraft/world/level/levelgen/DensityFunctions$YClampedGradient/m_207401_ ()D net/minecraft/world/level/levelgen/DensityFunctions$YClampedGradient/maxValue ()D +MD: net/minecraft/world/level/levelgen/DensityFunctions$YClampedGradient/m_207402_ ()D net/minecraft/world/level/levelgen/DensityFunctions$YClampedGradient/minValue ()D +MD: net/minecraft/world/level/levelgen/DensityFunctions$YClampedGradient/m_208493_ (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/world/level/levelgen/DensityFunctions$YClampedGradient/lambda$static$0 (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/world/level/levelgen/DensityFunctions$YClampedGradient/m_214023_ ()Lnet/minecraft/util/KeyDispatchDataCodec; net/minecraft/world/level/levelgen/DensityFunctions$YClampedGradient/codec ()Lnet/minecraft/util/KeyDispatchDataCodec; +MD: net/minecraft/world/level/levelgen/DensityFunctions$YClampedGradient/toString ()Ljava/lang/String; net/minecraft/world/level/levelgen/DensityFunctions$YClampedGradient/toString ()Ljava/lang/String; +MD: net/minecraft/world/level/levelgen/FlatLevelSource/ ()V net/minecraft/world/level/levelgen/FlatLevelSource/ ()V +MD: net/minecraft/world/level/levelgen/FlatLevelSource/ (Lnet/minecraft/world/level/levelgen/flat/FlatLevelGeneratorSettings;)V net/minecraft/world/level/levelgen/FlatLevelSource/ (Lnet/minecraft/world/level/levelgen/flat/FlatLevelGeneratorSettings;)V +MD: net/minecraft/world/level/levelgen/FlatLevelSource/m_142051_ (Lnet/minecraft/world/level/LevelHeightAccessor;)I net/minecraft/world/level/levelgen/FlatLevelSource/getSpawnHeight (Lnet/minecraft/world/level/LevelHeightAccessor;)I +MD: net/minecraft/world/level/levelgen/FlatLevelSource/m_142062_ ()I net/minecraft/world/level/levelgen/FlatLevelSource/getMinY ()I +MD: net/minecraft/world/level/levelgen/FlatLevelSource/m_204542_ (I)[Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/levelgen/FlatLevelSource/lambda$getBaseColumn$4 (I)[Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/levelgen/FlatLevelSource/m_204548_ (Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/levelgen/FlatLevelSource/lambda$getBaseColumn$3 (Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/levelgen/FlatLevelSource/m_213600_ (Ljava/util/List;Lnet/minecraft/world/level/levelgen/RandomState;Lnet/minecraft/core/BlockPos;)V net/minecraft/world/level/levelgen/FlatLevelSource/addDebugScreenInfo (Ljava/util/List;Lnet/minecraft/world/level/levelgen/RandomState;Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/world/level/levelgen/FlatLevelSource/m_213679_ (Lnet/minecraft/server/level/WorldGenRegion;JLnet/minecraft/world/level/levelgen/RandomState;Lnet/minecraft/world/level/biome/BiomeManager;Lnet/minecraft/world/level/StructureManager;Lnet/minecraft/world/level/chunk/ChunkAccess;Lnet/minecraft/world/level/levelgen/GenerationStep$Carving;)V net/minecraft/world/level/levelgen/FlatLevelSource/applyCarvers (Lnet/minecraft/server/level/WorldGenRegion;JLnet/minecraft/world/level/levelgen/RandomState;Lnet/minecraft/world/level/biome/BiomeManager;Lnet/minecraft/world/level/StructureManager;Lnet/minecraft/world/level/chunk/ChunkAccess;Lnet/minecraft/world/level/levelgen/GenerationStep$Carving;)V +MD: net/minecraft/world/level/levelgen/FlatLevelSource/m_213974_ (Ljava/util/concurrent/Executor;Lnet/minecraft/world/level/levelgen/blending/Blender;Lnet/minecraft/world/level/levelgen/RandomState;Lnet/minecraft/world/level/StructureManager;Lnet/minecraft/world/level/chunk/ChunkAccess;)Ljava/util/concurrent/CompletableFuture; net/minecraft/world/level/levelgen/FlatLevelSource/fillFromNoise (Ljava/util/concurrent/Executor;Lnet/minecraft/world/level/levelgen/blending/Blender;Lnet/minecraft/world/level/levelgen/RandomState;Lnet/minecraft/world/level/StructureManager;Lnet/minecraft/world/level/chunk/ChunkAccess;)Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/world/level/levelgen/FlatLevelSource/m_214096_ (IILnet/minecraft/world/level/levelgen/Heightmap$Types;Lnet/minecraft/world/level/LevelHeightAccessor;Lnet/minecraft/world/level/levelgen/RandomState;)I net/minecraft/world/level/levelgen/FlatLevelSource/getBaseHeight (IILnet/minecraft/world/level/levelgen/Heightmap$Types;Lnet/minecraft/world/level/LevelHeightAccessor;Lnet/minecraft/world/level/levelgen/RandomState;)I +MD: net/minecraft/world/level/levelgen/FlatLevelSource/m_214184_ (IILnet/minecraft/world/level/LevelHeightAccessor;Lnet/minecraft/world/level/levelgen/RandomState;)Lnet/minecraft/world/level/NoiseColumn; net/minecraft/world/level/levelgen/FlatLevelSource/getBaseColumn (IILnet/minecraft/world/level/LevelHeightAccessor;Lnet/minecraft/world/level/levelgen/RandomState;)Lnet/minecraft/world/level/NoiseColumn; +MD: net/minecraft/world/level/levelgen/FlatLevelSource/m_214194_ (Lnet/minecraft/server/level/WorldGenRegion;Lnet/minecraft/world/level/StructureManager;Lnet/minecraft/world/level/levelgen/RandomState;Lnet/minecraft/world/level/chunk/ChunkAccess;)V net/minecraft/world/level/levelgen/FlatLevelSource/buildSurface (Lnet/minecraft/server/level/WorldGenRegion;Lnet/minecraft/world/level/StructureManager;Lnet/minecraft/world/level/levelgen/RandomState;Lnet/minecraft/world/level/chunk/ChunkAccess;)V +MD: net/minecraft/world/level/levelgen/FlatLevelSource/m_254815_ (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/world/level/levelgen/FlatLevelSource/lambda$static$0 (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/world/level/levelgen/FlatLevelSource/m_254816_ (Lnet/minecraft/core/HolderLookup;)Ljava/util/stream/Stream; net/minecraft/world/level/levelgen/FlatLevelSource/lambda$createState$2 (Lnet/minecraft/core/HolderLookup;)Ljava/util/stream/Stream; +MD: net/minecraft/world/level/levelgen/FlatLevelSource/m_254817_ (Lnet/minecraft/core/Holder$Reference;)Lnet/minecraft/core/Holder; net/minecraft/world/level/levelgen/FlatLevelSource/lambda$createState$1 (Lnet/minecraft/core/Holder$Reference;)Lnet/minecraft/core/Holder; +MD: net/minecraft/world/level/levelgen/FlatLevelSource/m_255169_ (Lnet/minecraft/core/HolderLookup;Lnet/minecraft/world/level/levelgen/RandomState;J)Lnet/minecraft/world/level/chunk/ChunkGeneratorStructureState; net/minecraft/world/level/levelgen/FlatLevelSource/createState (Lnet/minecraft/core/HolderLookup;Lnet/minecraft/world/level/levelgen/RandomState;J)Lnet/minecraft/world/level/chunk/ChunkGeneratorStructureState; +MD: net/minecraft/world/level/levelgen/FlatLevelSource/m_6331_ ()I net/minecraft/world/level/levelgen/FlatLevelSource/getGenDepth ()I +MD: net/minecraft/world/level/levelgen/FlatLevelSource/m_6337_ ()I net/minecraft/world/level/levelgen/FlatLevelSource/getSeaLevel ()I +MD: net/minecraft/world/level/levelgen/FlatLevelSource/m_64191_ ()Lnet/minecraft/world/level/levelgen/flat/FlatLevelGeneratorSettings; net/minecraft/world/level/levelgen/FlatLevelSource/settings ()Lnet/minecraft/world/level/levelgen/flat/FlatLevelGeneratorSettings; +MD: net/minecraft/world/level/levelgen/FlatLevelSource/m_6909_ ()Lcom/mojang/serialization/Codec; net/minecraft/world/level/levelgen/FlatLevelSource/codec ()Lcom/mojang/serialization/Codec; +MD: net/minecraft/world/level/levelgen/FlatLevelSource/m_6929_ (Lnet/minecraft/server/level/WorldGenRegion;)V net/minecraft/world/level/levelgen/FlatLevelSource/spawnOriginalMobs (Lnet/minecraft/server/level/WorldGenRegion;)V +MD: net/minecraft/world/level/levelgen/GenerationStep/ ()V net/minecraft/world/level/levelgen/GenerationStep/ ()V +MD: net/minecraft/world/level/levelgen/GenerationStep$Carving/ ()V net/minecraft/world/level/levelgen/GenerationStep$Carving/ ()V +MD: net/minecraft/world/level/levelgen/GenerationStep$Carving/ (Ljava/lang/String;ILjava/lang/String;)V net/minecraft/world/level/levelgen/GenerationStep$Carving/ (Ljava/lang/String;ILjava/lang/String;)V +MD: net/minecraft/world/level/levelgen/GenerationStep$Carving/m_158285_ ()[Lnet/minecraft/world/level/levelgen/GenerationStep$Carving; net/minecraft/world/level/levelgen/GenerationStep$Carving/$values ()[Lnet/minecraft/world/level/levelgen/GenerationStep$Carving; +MD: net/minecraft/world/level/levelgen/GenerationStep$Carving/m_64208_ ()Ljava/lang/String; net/minecraft/world/level/levelgen/GenerationStep$Carving/getName ()Ljava/lang/String; +MD: net/minecraft/world/level/levelgen/GenerationStep$Carving/m_7912_ ()Ljava/lang/String; net/minecraft/world/level/levelgen/GenerationStep$Carving/getSerializedName ()Ljava/lang/String; +MD: net/minecraft/world/level/levelgen/GenerationStep$Carving/valueOf (Ljava/lang/String;)Lnet/minecraft/world/level/levelgen/GenerationStep$Carving; net/minecraft/world/level/levelgen/GenerationStep$Carving/valueOf (Ljava/lang/String;)Lnet/minecraft/world/level/levelgen/GenerationStep$Carving; +MD: net/minecraft/world/level/levelgen/GenerationStep$Carving/values ()[Lnet/minecraft/world/level/levelgen/GenerationStep$Carving; net/minecraft/world/level/levelgen/GenerationStep$Carving/values ()[Lnet/minecraft/world/level/levelgen/GenerationStep$Carving; +MD: net/minecraft/world/level/levelgen/GenerationStep$Decoration/ ()V net/minecraft/world/level/levelgen/GenerationStep$Decoration/ ()V +MD: net/minecraft/world/level/levelgen/GenerationStep$Decoration/ (Ljava/lang/String;ILjava/lang/String;)V net/minecraft/world/level/levelgen/GenerationStep$Decoration/ (Ljava/lang/String;ILjava/lang/String;)V +MD: net/minecraft/world/level/levelgen/GenerationStep$Decoration/m_158286_ ()[Lnet/minecraft/world/level/levelgen/GenerationStep$Decoration; net/minecraft/world/level/levelgen/GenerationStep$Decoration/$values ()[Lnet/minecraft/world/level/levelgen/GenerationStep$Decoration; +MD: net/minecraft/world/level/levelgen/GenerationStep$Decoration/m_224194_ ()Ljava/lang/String; net/minecraft/world/level/levelgen/GenerationStep$Decoration/getName ()Ljava/lang/String; +MD: net/minecraft/world/level/levelgen/GenerationStep$Decoration/m_7912_ ()Ljava/lang/String; net/minecraft/world/level/levelgen/GenerationStep$Decoration/getSerializedName ()Ljava/lang/String; +MD: net/minecraft/world/level/levelgen/GenerationStep$Decoration/valueOf (Ljava/lang/String;)Lnet/minecraft/world/level/levelgen/GenerationStep$Decoration; net/minecraft/world/level/levelgen/GenerationStep$Decoration/valueOf (Ljava/lang/String;)Lnet/minecraft/world/level/levelgen/GenerationStep$Decoration; +MD: net/minecraft/world/level/levelgen/GenerationStep$Decoration/values ()[Lnet/minecraft/world/level/levelgen/GenerationStep$Decoration; net/minecraft/world/level/levelgen/GenerationStep$Decoration/values ()[Lnet/minecraft/world/level/levelgen/GenerationStep$Decoration; +MD: net/minecraft/world/level/levelgen/GeodeBlockSettings/ ()V net/minecraft/world/level/levelgen/GeodeBlockSettings/ ()V +MD: net/minecraft/world/level/levelgen/GeodeBlockSettings/ (Lnet/minecraft/world/level/levelgen/feature/stateproviders/BlockStateProvider;Lnet/minecraft/world/level/levelgen/feature/stateproviders/BlockStateProvider;Lnet/minecraft/world/level/levelgen/feature/stateproviders/BlockStateProvider;Lnet/minecraft/world/level/levelgen/feature/stateproviders/BlockStateProvider;Lnet/minecraft/world/level/levelgen/feature/stateproviders/BlockStateProvider;Ljava/util/List;Lnet/minecraft/tags/TagKey;Lnet/minecraft/tags/TagKey;)V net/minecraft/world/level/levelgen/GeodeBlockSettings/ (Lnet/minecraft/world/level/levelgen/feature/stateproviders/BlockStateProvider;Lnet/minecraft/world/level/levelgen/feature/stateproviders/BlockStateProvider;Lnet/minecraft/world/level/levelgen/feature/stateproviders/BlockStateProvider;Lnet/minecraft/world/level/levelgen/feature/stateproviders/BlockStateProvider;Lnet/minecraft/world/level/levelgen/feature/stateproviders/BlockStateProvider;Ljava/util/List;Lnet/minecraft/tags/TagKey;Lnet/minecraft/tags/TagKey;)V +MD: net/minecraft/world/level/levelgen/GeodeBlockSettings/m_158306_ (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/world/level/levelgen/GeodeBlockSettings/lambda$static$8 (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/world/level/levelgen/GeodeBlockSettings/m_158312_ (Lnet/minecraft/world/level/levelgen/GeodeBlockSettings;)Ljava/util/List; net/minecraft/world/level/levelgen/GeodeBlockSettings/lambda$static$5 (Lnet/minecraft/world/level/levelgen/GeodeBlockSettings;)Ljava/util/List; +MD: net/minecraft/world/level/levelgen/GeodeBlockSettings/m_158314_ (Lnet/minecraft/world/level/levelgen/GeodeBlockSettings;)Lnet/minecraft/world/level/levelgen/feature/stateproviders/BlockStateProvider; net/minecraft/world/level/levelgen/GeodeBlockSettings/lambda$static$4 (Lnet/minecraft/world/level/levelgen/GeodeBlockSettings;)Lnet/minecraft/world/level/levelgen/feature/stateproviders/BlockStateProvider; +MD: net/minecraft/world/level/levelgen/GeodeBlockSettings/m_158316_ (Lnet/minecraft/world/level/levelgen/GeodeBlockSettings;)Lnet/minecraft/world/level/levelgen/feature/stateproviders/BlockStateProvider; net/minecraft/world/level/levelgen/GeodeBlockSettings/lambda$static$3 (Lnet/minecraft/world/level/levelgen/GeodeBlockSettings;)Lnet/minecraft/world/level/levelgen/feature/stateproviders/BlockStateProvider; +MD: net/minecraft/world/level/levelgen/GeodeBlockSettings/m_158318_ (Lnet/minecraft/world/level/levelgen/GeodeBlockSettings;)Lnet/minecraft/world/level/levelgen/feature/stateproviders/BlockStateProvider; net/minecraft/world/level/levelgen/GeodeBlockSettings/lambda$static$2 (Lnet/minecraft/world/level/levelgen/GeodeBlockSettings;)Lnet/minecraft/world/level/levelgen/feature/stateproviders/BlockStateProvider; +MD: net/minecraft/world/level/levelgen/GeodeBlockSettings/m_158320_ (Lnet/minecraft/world/level/levelgen/GeodeBlockSettings;)Lnet/minecraft/world/level/levelgen/feature/stateproviders/BlockStateProvider; net/minecraft/world/level/levelgen/GeodeBlockSettings/lambda$static$1 (Lnet/minecraft/world/level/levelgen/GeodeBlockSettings;)Lnet/minecraft/world/level/levelgen/feature/stateproviders/BlockStateProvider; +MD: net/minecraft/world/level/levelgen/GeodeBlockSettings/m_158322_ (Lnet/minecraft/world/level/levelgen/GeodeBlockSettings;)Lnet/minecraft/world/level/levelgen/feature/stateproviders/BlockStateProvider; net/minecraft/world/level/levelgen/GeodeBlockSettings/lambda$static$0 (Lnet/minecraft/world/level/levelgen/GeodeBlockSettings;)Lnet/minecraft/world/level/levelgen/feature/stateproviders/BlockStateProvider; +MD: net/minecraft/world/level/levelgen/GeodeBlockSettings/m_204563_ (Lnet/minecraft/world/level/levelgen/GeodeBlockSettings;)Lnet/minecraft/tags/TagKey; net/minecraft/world/level/levelgen/GeodeBlockSettings/lambda$static$7 (Lnet/minecraft/world/level/levelgen/GeodeBlockSettings;)Lnet/minecraft/tags/TagKey; +MD: net/minecraft/world/level/levelgen/GeodeBlockSettings/m_204565_ (Lnet/minecraft/world/level/levelgen/GeodeBlockSettings;)Lnet/minecraft/tags/TagKey; net/minecraft/world/level/levelgen/GeodeBlockSettings/lambda$static$6 (Lnet/minecraft/world/level/levelgen/GeodeBlockSettings;)Lnet/minecraft/tags/TagKey; +MD: net/minecraft/world/level/levelgen/GeodeCrackSettings/ ()V net/minecraft/world/level/levelgen/GeodeCrackSettings/ ()V +MD: net/minecraft/world/level/levelgen/GeodeCrackSettings/ (DDI)V net/minecraft/world/level/levelgen/GeodeCrackSettings/ (DDI)V +MD: net/minecraft/world/level/levelgen/GeodeCrackSettings/m_158333_ (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/world/level/levelgen/GeodeCrackSettings/lambda$static$3 (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/world/level/levelgen/GeodeCrackSettings/m_158335_ (Lnet/minecraft/world/level/levelgen/GeodeCrackSettings;)Ljava/lang/Integer; net/minecraft/world/level/levelgen/GeodeCrackSettings/lambda$static$2 (Lnet/minecraft/world/level/levelgen/GeodeCrackSettings;)Ljava/lang/Integer; +MD: net/minecraft/world/level/levelgen/GeodeCrackSettings/m_158337_ (Lnet/minecraft/world/level/levelgen/GeodeCrackSettings;)Ljava/lang/Double; net/minecraft/world/level/levelgen/GeodeCrackSettings/lambda$static$1 (Lnet/minecraft/world/level/levelgen/GeodeCrackSettings;)Ljava/lang/Double; +MD: net/minecraft/world/level/levelgen/GeodeCrackSettings/m_158339_ (Lnet/minecraft/world/level/levelgen/GeodeCrackSettings;)Ljava/lang/Double; net/minecraft/world/level/levelgen/GeodeCrackSettings/lambda$static$0 (Lnet/minecraft/world/level/levelgen/GeodeCrackSettings;)Ljava/lang/Double; +MD: net/minecraft/world/level/levelgen/GeodeLayerSettings/ ()V net/minecraft/world/level/levelgen/GeodeLayerSettings/ ()V +MD: net/minecraft/world/level/levelgen/GeodeLayerSettings/ (DDDD)V net/minecraft/world/level/levelgen/GeodeLayerSettings/ (DDDD)V +MD: net/minecraft/world/level/levelgen/GeodeLayerSettings/m_158353_ (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/world/level/levelgen/GeodeLayerSettings/lambda$static$4 (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/world/level/levelgen/GeodeLayerSettings/m_158355_ (Lnet/minecraft/world/level/levelgen/GeodeLayerSettings;)Ljava/lang/Double; net/minecraft/world/level/levelgen/GeodeLayerSettings/lambda$static$3 (Lnet/minecraft/world/level/levelgen/GeodeLayerSettings;)Ljava/lang/Double; +MD: net/minecraft/world/level/levelgen/GeodeLayerSettings/m_158357_ (Lnet/minecraft/world/level/levelgen/GeodeLayerSettings;)Ljava/lang/Double; net/minecraft/world/level/levelgen/GeodeLayerSettings/lambda$static$2 (Lnet/minecraft/world/level/levelgen/GeodeLayerSettings;)Ljava/lang/Double; +MD: net/minecraft/world/level/levelgen/GeodeLayerSettings/m_158359_ (Lnet/minecraft/world/level/levelgen/GeodeLayerSettings;)Ljava/lang/Double; net/minecraft/world/level/levelgen/GeodeLayerSettings/lambda$static$1 (Lnet/minecraft/world/level/levelgen/GeodeLayerSettings;)Ljava/lang/Double; +MD: net/minecraft/world/level/levelgen/GeodeLayerSettings/m_158361_ (Lnet/minecraft/world/level/levelgen/GeodeLayerSettings;)Ljava/lang/Double; net/minecraft/world/level/levelgen/GeodeLayerSettings/lambda$static$0 (Lnet/minecraft/world/level/levelgen/GeodeLayerSettings;)Ljava/lang/Double; +MD: net/minecraft/world/level/levelgen/Heightmap/ ()V net/minecraft/world/level/levelgen/Heightmap/ ()V +MD: net/minecraft/world/level/levelgen/Heightmap/ (Lnet/minecraft/world/level/chunk/ChunkAccess;Lnet/minecraft/world/level/levelgen/Heightmap$Types;)V net/minecraft/world/level/levelgen/Heightmap/ (Lnet/minecraft/world/level/chunk/ChunkAccess;Lnet/minecraft/world/level/levelgen/Heightmap$Types;)V +MD: net/minecraft/world/level/levelgen/Heightmap/m_158364_ (Lnet/minecraft/world/level/chunk/ChunkAccess;Lnet/minecraft/world/level/levelgen/Heightmap$Types;[J)V net/minecraft/world/level/levelgen/Heightmap/setRawData (Lnet/minecraft/world/level/chunk/ChunkAccess;Lnet/minecraft/world/level/levelgen/Heightmap$Types;[J)V +MD: net/minecraft/world/level/levelgen/Heightmap/m_158368_ (II)I net/minecraft/world/level/levelgen/Heightmap/getHighestTaken (II)I +MD: net/minecraft/world/level/levelgen/Heightmap/m_284114_ (Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/world/level/levelgen/Heightmap/lambda$static$0 (Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/world/level/levelgen/Heightmap/m_64239_ ()[J net/minecraft/world/level/levelgen/Heightmap/getRawData ()[J +MD: net/minecraft/world/level/levelgen/Heightmap/m_64240_ (I)I net/minecraft/world/level/levelgen/Heightmap/getFirstAvailable (I)I +MD: net/minecraft/world/level/levelgen/Heightmap/m_64242_ (II)I net/minecraft/world/level/levelgen/Heightmap/getFirstAvailable (II)I +MD: net/minecraft/world/level/levelgen/Heightmap/m_64245_ (III)V net/minecraft/world/level/levelgen/Heightmap/setHeight (III)V +MD: net/minecraft/world/level/levelgen/Heightmap/m_64249_ (IIILnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/world/level/levelgen/Heightmap/update (IIILnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/world/level/levelgen/Heightmap/m_64256_ (Lnet/minecraft/world/level/chunk/ChunkAccess;Ljava/util/Set;)V net/minecraft/world/level/levelgen/Heightmap/primeHeightmaps (Lnet/minecraft/world/level/chunk/ChunkAccess;Ljava/util/Set;)V +MD: net/minecraft/world/level/levelgen/Heightmap/m_64265_ (II)I net/minecraft/world/level/levelgen/Heightmap/getIndex (II)I +MD: net/minecraft/world/level/levelgen/Heightmap$Types/ ()V net/minecraft/world/level/levelgen/Heightmap$Types/ ()V +MD: net/minecraft/world/level/levelgen/Heightmap$Types/ (Ljava/lang/String;ILjava/lang/String;Lnet/minecraft/world/level/levelgen/Heightmap$Usage;Ljava/util/function/Predicate;)V net/minecraft/world/level/levelgen/Heightmap$Types/ (Ljava/lang/String;ILjava/lang/String;Lnet/minecraft/world/level/levelgen/Heightmap$Usage;Ljava/util/function/Predicate;)V +MD: net/minecraft/world/level/levelgen/Heightmap$Types/m_158371_ ()[Lnet/minecraft/world/level/levelgen/Heightmap$Types; net/minecraft/world/level/levelgen/Heightmap$Types/$values ()[Lnet/minecraft/world/level/levelgen/Heightmap$Types; +MD: net/minecraft/world/level/levelgen/Heightmap$Types/m_284115_ (Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/world/level/levelgen/Heightmap$Types/lambda$static$1 (Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/world/level/levelgen/Heightmap$Types/m_284116_ (Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/world/level/levelgen/Heightmap$Types/lambda$static$0 (Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/world/level/levelgen/Heightmap$Types/m_64294_ ()Ljava/lang/String; net/minecraft/world/level/levelgen/Heightmap$Types/getSerializationKey ()Ljava/lang/String; +MD: net/minecraft/world/level/levelgen/Heightmap$Types/m_64297_ ()Z net/minecraft/world/level/levelgen/Heightmap$Types/sendToClient ()Z +MD: net/minecraft/world/level/levelgen/Heightmap$Types/m_64298_ ()Z net/minecraft/world/level/levelgen/Heightmap$Types/keepAfterWorldgen ()Z +MD: net/minecraft/world/level/levelgen/Heightmap$Types/m_64299_ ()Ljava/util/function/Predicate; net/minecraft/world/level/levelgen/Heightmap$Types/isOpaque ()Ljava/util/function/Predicate; +MD: net/minecraft/world/level/levelgen/Heightmap$Types/m_7912_ ()Ljava/lang/String; net/minecraft/world/level/levelgen/Heightmap$Types/getSerializedName ()Ljava/lang/String; +MD: net/minecraft/world/level/levelgen/Heightmap$Types/valueOf (Ljava/lang/String;)Lnet/minecraft/world/level/levelgen/Heightmap$Types; net/minecraft/world/level/levelgen/Heightmap$Types/valueOf (Ljava/lang/String;)Lnet/minecraft/world/level/levelgen/Heightmap$Types; +MD: net/minecraft/world/level/levelgen/Heightmap$Types/values ()[Lnet/minecraft/world/level/levelgen/Heightmap$Types; net/minecraft/world/level/levelgen/Heightmap$Types/values ()[Lnet/minecraft/world/level/levelgen/Heightmap$Types; +MD: net/minecraft/world/level/levelgen/Heightmap$Usage/ ()V net/minecraft/world/level/levelgen/Heightmap$Usage/ ()V +MD: net/minecraft/world/level/levelgen/Heightmap$Usage/ (Ljava/lang/String;I)V net/minecraft/world/level/levelgen/Heightmap$Usage/ (Ljava/lang/String;I)V +MD: net/minecraft/world/level/levelgen/Heightmap$Usage/m_158372_ ()[Lnet/minecraft/world/level/levelgen/Heightmap$Usage; net/minecraft/world/level/levelgen/Heightmap$Usage/$values ()[Lnet/minecraft/world/level/levelgen/Heightmap$Usage; +MD: net/minecraft/world/level/levelgen/Heightmap$Usage/valueOf (Ljava/lang/String;)Lnet/minecraft/world/level/levelgen/Heightmap$Usage; net/minecraft/world/level/levelgen/Heightmap$Usage/valueOf (Ljava/lang/String;)Lnet/minecraft/world/level/levelgen/Heightmap$Usage; +MD: net/minecraft/world/level/levelgen/Heightmap$Usage/values ()[Lnet/minecraft/world/level/levelgen/Heightmap$Usage; net/minecraft/world/level/levelgen/Heightmap$Usage/values ()[Lnet/minecraft/world/level/levelgen/Heightmap$Usage; +MD: net/minecraft/world/level/levelgen/LegacyRandomSource/ (J)V net/minecraft/world/level/levelgen/LegacyRandomSource/ (J)V +MD: net/minecraft/world/level/levelgen/LegacyRandomSource/m_188582_ ()Lnet/minecraft/world/level/levelgen/PositionalRandomFactory; net/minecraft/world/level/levelgen/LegacyRandomSource/forkPositional ()Lnet/minecraft/world/level/levelgen/PositionalRandomFactory; +MD: net/minecraft/world/level/levelgen/LegacyRandomSource/m_188583_ ()D net/minecraft/world/level/levelgen/LegacyRandomSource/nextGaussian ()D +MD: net/minecraft/world/level/levelgen/LegacyRandomSource/m_188584_ (J)V net/minecraft/world/level/levelgen/LegacyRandomSource/setSeed (J)V +MD: net/minecraft/world/level/levelgen/LegacyRandomSource/m_213769_ ()Lnet/minecraft/util/RandomSource; net/minecraft/world/level/levelgen/LegacyRandomSource/fork ()Lnet/minecraft/util/RandomSource; +MD: net/minecraft/world/level/levelgen/LegacyRandomSource/m_64707_ (I)I net/minecraft/world/level/levelgen/LegacyRandomSource/next (I)I +MD: net/minecraft/world/level/levelgen/LegacyRandomSource$LegacyPositionalRandomFactory/ (J)V net/minecraft/world/level/levelgen/LegacyRandomSource$LegacyPositionalRandomFactory/ (J)V +MD: net/minecraft/world/level/levelgen/LegacyRandomSource$LegacyPositionalRandomFactory/m_183502_ (Ljava/lang/StringBuilder;)V net/minecraft/world/level/levelgen/LegacyRandomSource$LegacyPositionalRandomFactory/parityConfigString (Ljava/lang/StringBuilder;)V +MD: net/minecraft/world/level/levelgen/LegacyRandomSource$LegacyPositionalRandomFactory/m_213715_ (III)Lnet/minecraft/util/RandomSource; net/minecraft/world/level/levelgen/LegacyRandomSource$LegacyPositionalRandomFactory/at (III)Lnet/minecraft/util/RandomSource; +MD: net/minecraft/world/level/levelgen/LegacyRandomSource$LegacyPositionalRandomFactory/m_214111_ (Ljava/lang/String;)Lnet/minecraft/util/RandomSource; net/minecraft/world/level/levelgen/LegacyRandomSource$LegacyPositionalRandomFactory/fromHashOf (Ljava/lang/String;)Lnet/minecraft/util/RandomSource; +MD: net/minecraft/world/level/levelgen/MarsagliaPolarGaussian/ (Lnet/minecraft/util/RandomSource;)V net/minecraft/world/level/levelgen/MarsagliaPolarGaussian/ (Lnet/minecraft/util/RandomSource;)V +MD: net/minecraft/world/level/levelgen/MarsagliaPolarGaussian/m_188602_ ()V net/minecraft/world/level/levelgen/MarsagliaPolarGaussian/reset ()V +MD: net/minecraft/world/level/levelgen/MarsagliaPolarGaussian/m_188603_ ()D net/minecraft/world/level/levelgen/MarsagliaPolarGaussian/nextGaussian ()D +MD: net/minecraft/world/level/levelgen/NoiseBasedChunkGenerator/ ()V net/minecraft/world/level/levelgen/NoiseBasedChunkGenerator/ ()V +MD: net/minecraft/world/level/levelgen/NoiseBasedChunkGenerator/ (Lnet/minecraft/world/level/biome/BiomeSource;Lnet/minecraft/core/Holder;)V net/minecraft/world/level/levelgen/NoiseBasedChunkGenerator/ (Lnet/minecraft/world/level/biome/BiomeSource;Lnet/minecraft/core/Holder;)V +MD: net/minecraft/world/level/levelgen/NoiseBasedChunkGenerator/m_142062_ ()I net/minecraft/world/level/levelgen/NoiseBasedChunkGenerator/getMinY ()I +MD: net/minecraft/world/level/levelgen/NoiseBasedChunkGenerator/m_198231_ (Lnet/minecraft/world/level/levelgen/NoiseChunk;IIILnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/levelgen/NoiseBasedChunkGenerator/debugPreliminarySurfaceLevel (Lnet/minecraft/world/level/levelgen/NoiseChunk;IIILnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/levelgen/NoiseBasedChunkGenerator/m_213600_ (Ljava/util/List;Lnet/minecraft/world/level/levelgen/RandomState;Lnet/minecraft/core/BlockPos;)V net/minecraft/world/level/levelgen/NoiseBasedChunkGenerator/addDebugScreenInfo (Ljava/util/List;Lnet/minecraft/world/level/levelgen/RandomState;Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/world/level/levelgen/NoiseBasedChunkGenerator/m_213679_ (Lnet/minecraft/server/level/WorldGenRegion;JLnet/minecraft/world/level/levelgen/RandomState;Lnet/minecraft/world/level/biome/BiomeManager;Lnet/minecraft/world/level/StructureManager;Lnet/minecraft/world/level/chunk/ChunkAccess;Lnet/minecraft/world/level/levelgen/GenerationStep$Carving;)V net/minecraft/world/level/levelgen/NoiseBasedChunkGenerator/applyCarvers (Lnet/minecraft/server/level/WorldGenRegion;JLnet/minecraft/world/level/levelgen/RandomState;Lnet/minecraft/world/level/biome/BiomeManager;Lnet/minecraft/world/level/StructureManager;Lnet/minecraft/world/level/chunk/ChunkAccess;Lnet/minecraft/world/level/levelgen/GenerationStep$Carving;)V +MD: net/minecraft/world/level/levelgen/NoiseBasedChunkGenerator/m_213908_ (Ljava/util/concurrent/Executor;Lnet/minecraft/world/level/levelgen/RandomState;Lnet/minecraft/world/level/levelgen/blending/Blender;Lnet/minecraft/world/level/StructureManager;Lnet/minecraft/world/level/chunk/ChunkAccess;)Ljava/util/concurrent/CompletableFuture; net/minecraft/world/level/levelgen/NoiseBasedChunkGenerator/createBiomes (Ljava/util/concurrent/Executor;Lnet/minecraft/world/level/levelgen/RandomState;Lnet/minecraft/world/level/levelgen/blending/Blender;Lnet/minecraft/world/level/StructureManager;Lnet/minecraft/world/level/chunk/ChunkAccess;)Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/world/level/levelgen/NoiseBasedChunkGenerator/m_213974_ (Ljava/util/concurrent/Executor;Lnet/minecraft/world/level/levelgen/blending/Blender;Lnet/minecraft/world/level/levelgen/RandomState;Lnet/minecraft/world/level/StructureManager;Lnet/minecraft/world/level/chunk/ChunkAccess;)Ljava/util/concurrent/CompletableFuture; net/minecraft/world/level/levelgen/NoiseBasedChunkGenerator/fillFromNoise (Ljava/util/concurrent/Executor;Lnet/minecraft/world/level/levelgen/blending/Blender;Lnet/minecraft/world/level/levelgen/RandomState;Lnet/minecraft/world/level/StructureManager;Lnet/minecraft/world/level/chunk/ChunkAccess;)Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/world/level/levelgen/NoiseBasedChunkGenerator/m_214096_ (IILnet/minecraft/world/level/levelgen/Heightmap$Types;Lnet/minecraft/world/level/LevelHeightAccessor;Lnet/minecraft/world/level/levelgen/RandomState;)I net/minecraft/world/level/levelgen/NoiseBasedChunkGenerator/getBaseHeight (IILnet/minecraft/world/level/levelgen/Heightmap$Types;Lnet/minecraft/world/level/LevelHeightAccessor;Lnet/minecraft/world/level/levelgen/RandomState;)I +MD: net/minecraft/world/level/levelgen/NoiseBasedChunkGenerator/m_214184_ (IILnet/minecraft/world/level/LevelHeightAccessor;Lnet/minecraft/world/level/levelgen/RandomState;)Lnet/minecraft/world/level/NoiseColumn; net/minecraft/world/level/levelgen/NoiseBasedChunkGenerator/getBaseColumn (IILnet/minecraft/world/level/LevelHeightAccessor;Lnet/minecraft/world/level/levelgen/RandomState;)Lnet/minecraft/world/level/NoiseColumn; +MD: net/minecraft/world/level/levelgen/NoiseBasedChunkGenerator/m_214194_ (Lnet/minecraft/server/level/WorldGenRegion;Lnet/minecraft/world/level/StructureManager;Lnet/minecraft/world/level/levelgen/RandomState;Lnet/minecraft/world/level/chunk/ChunkAccess;)V net/minecraft/world/level/levelgen/NoiseBasedChunkGenerator/buildSurface (Lnet/minecraft/server/level/WorldGenRegion;Lnet/minecraft/world/level/StructureManager;Lnet/minecraft/world/level/levelgen/RandomState;Lnet/minecraft/world/level/chunk/ChunkAccess;)V +MD: net/minecraft/world/level/levelgen/NoiseBasedChunkGenerator/m_224221_ (Lnet/minecraft/resources/ResourceKey;)Z net/minecraft/world/level/levelgen/NoiseBasedChunkGenerator/stable (Lnet/minecraft/resources/ResourceKey;)Z +MD: net/minecraft/world/level/levelgen/NoiseBasedChunkGenerator/m_224239_ (Lnet/minecraft/world/level/LevelHeightAccessor;Lnet/minecraft/world/level/levelgen/RandomState;IILorg/apache/commons/lang3/mutable/MutableObject;Ljava/util/function/Predicate;)Ljava/util/OptionalInt; net/minecraft/world/level/levelgen/NoiseBasedChunkGenerator/iterateNoiseColumn (Lnet/minecraft/world/level/LevelHeightAccessor;Lnet/minecraft/world/level/levelgen/RandomState;IILorg/apache/commons/lang3/mutable/MutableObject;Ljava/util/function/Predicate;)Ljava/util/OptionalInt; +MD: net/minecraft/world/level/levelgen/NoiseBasedChunkGenerator/m_224246_ (Lnet/minecraft/world/level/StructureManager;Lnet/minecraft/server/level/WorldGenRegion;Lnet/minecraft/world/level/levelgen/RandomState;Lnet/minecraft/world/level/chunk/ChunkAccess;)Lnet/minecraft/world/level/levelgen/NoiseChunk; net/minecraft/world/level/levelgen/NoiseBasedChunkGenerator/lambda$applyCarvers$9 (Lnet/minecraft/world/level/StructureManager;Lnet/minecraft/server/level/WorldGenRegion;Lnet/minecraft/world/level/levelgen/RandomState;Lnet/minecraft/world/level/chunk/ChunkAccess;)Lnet/minecraft/world/level/levelgen/NoiseChunk; +MD: net/minecraft/world/level/levelgen/NoiseBasedChunkGenerator/m_224251_ (Lnet/minecraft/world/level/StructureManager;Lnet/minecraft/world/level/levelgen/blending/Blender;Lnet/minecraft/world/level/levelgen/RandomState;Lnet/minecraft/world/level/chunk/ChunkAccess;)Lnet/minecraft/world/level/levelgen/NoiseChunk; net/minecraft/world/level/levelgen/NoiseBasedChunkGenerator/lambda$doFill$13 (Lnet/minecraft/world/level/StructureManager;Lnet/minecraft/world/level/levelgen/blending/Blender;Lnet/minecraft/world/level/levelgen/RandomState;Lnet/minecraft/world/level/chunk/ChunkAccess;)Lnet/minecraft/world/level/levelgen/NoiseChunk; +MD: net/minecraft/world/level/levelgen/NoiseBasedChunkGenerator/m_224256_ (Lnet/minecraft/world/level/chunk/ChunkAccess;Lnet/minecraft/world/level/StructureManager;Lnet/minecraft/world/level/levelgen/blending/Blender;Lnet/minecraft/world/level/levelgen/RandomState;)Lnet/minecraft/world/level/levelgen/NoiseChunk; net/minecraft/world/level/levelgen/NoiseBasedChunkGenerator/createNoiseChunk (Lnet/minecraft/world/level/chunk/ChunkAccess;Lnet/minecraft/world/level/StructureManager;Lnet/minecraft/world/level/levelgen/blending/Blender;Lnet/minecraft/world/level/levelgen/RandomState;)Lnet/minecraft/world/level/levelgen/NoiseChunk; +MD: net/minecraft/world/level/levelgen/NoiseBasedChunkGenerator/m_224261_ (Lnet/minecraft/world/level/chunk/ChunkAccess;Lnet/minecraft/world/level/levelgen/WorldGenerationContext;Lnet/minecraft/world/level/levelgen/RandomState;Lnet/minecraft/world/level/StructureManager;Lnet/minecraft/world/level/biome/BiomeManager;Lnet/minecraft/core/Registry;Lnet/minecraft/world/level/levelgen/blending/Blender;)V net/minecraft/world/level/levelgen/NoiseBasedChunkGenerator/buildSurface (Lnet/minecraft/world/level/chunk/ChunkAccess;Lnet/minecraft/world/level/levelgen/WorldGenerationContext;Lnet/minecraft/world/level/levelgen/RandomState;Lnet/minecraft/world/level/StructureManager;Lnet/minecraft/world/level/biome/BiomeManager;Lnet/minecraft/core/Registry;Lnet/minecraft/world/level/levelgen/blending/Blender;)V +MD: net/minecraft/world/level/levelgen/NoiseBasedChunkGenerator/m_224269_ (Lnet/minecraft/world/level/levelgen/Aquifer$FluidStatus;ILnet/minecraft/world/level/levelgen/Aquifer$FluidStatus;Lnet/minecraft/world/level/levelgen/Aquifer$FluidStatus;III)Lnet/minecraft/world/level/levelgen/Aquifer$FluidStatus; net/minecraft/world/level/levelgen/NoiseBasedChunkGenerator/lambda$createFluidPicker$4 (Lnet/minecraft/world/level/levelgen/Aquifer$FluidStatus;ILnet/minecraft/world/level/levelgen/Aquifer$FluidStatus;Lnet/minecraft/world/level/levelgen/Aquifer$FluidStatus;III)Lnet/minecraft/world/level/levelgen/Aquifer$FluidStatus; +MD: net/minecraft/world/level/levelgen/NoiseBasedChunkGenerator/m_224277_ (Lnet/minecraft/world/level/levelgen/NoiseBasedChunkGenerator;)Lnet/minecraft/core/Holder; net/minecraft/world/level/levelgen/NoiseBasedChunkGenerator/lambda$static$1 (Lnet/minecraft/world/level/levelgen/NoiseBasedChunkGenerator;)Lnet/minecraft/core/Holder; +MD: net/minecraft/world/level/levelgen/NoiseBasedChunkGenerator/m_224284_ (Lnet/minecraft/world/level/levelgen/blending/Blender;Lnet/minecraft/world/level/StructureManager;Lnet/minecraft/world/level/levelgen/RandomState;Lnet/minecraft/world/level/chunk/ChunkAccess;II)Lnet/minecraft/world/level/chunk/ChunkAccess; net/minecraft/world/level/levelgen/NoiseBasedChunkGenerator/doFill (Lnet/minecraft/world/level/levelgen/blending/Blender;Lnet/minecraft/world/level/StructureManager;Lnet/minecraft/world/level/levelgen/RandomState;Lnet/minecraft/world/level/chunk/ChunkAccess;II)Lnet/minecraft/world/level/chunk/ChunkAccess; +MD: net/minecraft/world/level/levelgen/NoiseBasedChunkGenerator/m_224291_ (Lnet/minecraft/world/level/levelgen/blending/Blender;Lnet/minecraft/world/level/levelgen/RandomState;Lnet/minecraft/world/level/StructureManager;Lnet/minecraft/world/level/chunk/ChunkAccess;)V net/minecraft/world/level/levelgen/NoiseBasedChunkGenerator/doCreateBiomes (Lnet/minecraft/world/level/levelgen/blending/Blender;Lnet/minecraft/world/level/levelgen/RandomState;Lnet/minecraft/world/level/StructureManager;Lnet/minecraft/world/level/chunk/ChunkAccess;)V +MD: net/minecraft/world/level/levelgen/NoiseBasedChunkGenerator/m_224307_ (Ljava/util/Set;Lnet/minecraft/world/level/chunk/ChunkAccess;Ljava/lang/Throwable;)V net/minecraft/world/level/levelgen/NoiseBasedChunkGenerator/lambda$fillFromNoise$12 (Ljava/util/Set;Lnet/minecraft/world/level/chunk/ChunkAccess;Ljava/lang/Throwable;)V +MD: net/minecraft/world/level/levelgen/NoiseBasedChunkGenerator/m_224317_ (Lnet/minecraft/world/level/StructureManager;Lnet/minecraft/world/level/levelgen/blending/Blender;Lnet/minecraft/world/level/levelgen/RandomState;Lnet/minecraft/world/level/chunk/ChunkAccess;)Lnet/minecraft/world/level/levelgen/NoiseChunk; net/minecraft/world/level/levelgen/NoiseBasedChunkGenerator/lambda$buildSurface$7 (Lnet/minecraft/world/level/StructureManager;Lnet/minecraft/world/level/levelgen/blending/Blender;Lnet/minecraft/world/level/levelgen/RandomState;Lnet/minecraft/world/level/chunk/ChunkAccess;)Lnet/minecraft/world/level/levelgen/NoiseChunk; +MD: net/minecraft/world/level/levelgen/NoiseBasedChunkGenerator/m_224324_ (Lnet/minecraft/world/level/levelgen/blending/Blender;Lnet/minecraft/world/level/StructureManager;Lnet/minecraft/world/level/levelgen/RandomState;Lnet/minecraft/world/level/chunk/ChunkAccess;II)Lnet/minecraft/world/level/chunk/ChunkAccess; net/minecraft/world/level/levelgen/NoiseBasedChunkGenerator/lambda$fillFromNoise$11 (Lnet/minecraft/world/level/levelgen/blending/Blender;Lnet/minecraft/world/level/StructureManager;Lnet/minecraft/world/level/levelgen/RandomState;Lnet/minecraft/world/level/chunk/ChunkAccess;II)Lnet/minecraft/world/level/chunk/ChunkAccess; +MD: net/minecraft/world/level/levelgen/NoiseBasedChunkGenerator/m_224331_ (Lnet/minecraft/world/level/levelgen/blending/Blender;Lnet/minecraft/world/level/levelgen/RandomState;Lnet/minecraft/world/level/StructureManager;Lnet/minecraft/world/level/chunk/ChunkAccess;)Lnet/minecraft/world/level/chunk/ChunkAccess; net/minecraft/world/level/levelgen/NoiseBasedChunkGenerator/lambda$createBiomes$5 (Lnet/minecraft/world/level/levelgen/blending/Blender;Lnet/minecraft/world/level/levelgen/RandomState;Lnet/minecraft/world/level/StructureManager;Lnet/minecraft/world/level/chunk/ChunkAccess;)Lnet/minecraft/world/level/chunk/ChunkAccess; +MD: net/minecraft/world/level/levelgen/NoiseBasedChunkGenerator/m_224336_ (Lnet/minecraft/world/level/StructureManager;Lnet/minecraft/world/level/levelgen/blending/Blender;Lnet/minecraft/world/level/levelgen/RandomState;Lnet/minecraft/world/level/chunk/ChunkAccess;)Lnet/minecraft/world/level/levelgen/NoiseChunk; net/minecraft/world/level/levelgen/NoiseBasedChunkGenerator/lambda$doCreateBiomes$6 (Lnet/minecraft/world/level/StructureManager;Lnet/minecraft/world/level/levelgen/blending/Blender;Lnet/minecraft/world/level/levelgen/RandomState;Lnet/minecraft/world/level/chunk/ChunkAccess;)Lnet/minecraft/world/level/levelgen/NoiseChunk; +MD: net/minecraft/world/level/levelgen/NoiseBasedChunkGenerator/m_224341_ ()Lnet/minecraft/core/Holder; net/minecraft/world/level/levelgen/NoiseBasedChunkGenerator/generatorSettings ()Lnet/minecraft/core/Holder; +MD: net/minecraft/world/level/levelgen/NoiseBasedChunkGenerator/m_245021_ (Lnet/minecraft/core/Holder;)Lnet/minecraft/world/level/levelgen/Aquifer$FluidPicker; net/minecraft/world/level/levelgen/NoiseBasedChunkGenerator/lambda$new$3 (Lnet/minecraft/core/Holder;)Lnet/minecraft/world/level/levelgen/Aquifer$FluidPicker; +MD: net/minecraft/world/level/levelgen/NoiseBasedChunkGenerator/m_247703_ (Lnet/minecraft/world/level/levelgen/NoiseGeneratorSettings;)Lnet/minecraft/world/level/levelgen/Aquifer$FluidPicker; net/minecraft/world/level/levelgen/NoiseBasedChunkGenerator/createFluidPicker (Lnet/minecraft/world/level/levelgen/NoiseGeneratorSettings;)Lnet/minecraft/world/level/levelgen/Aquifer$FluidPicker; +MD: net/minecraft/world/level/levelgen/NoiseBasedChunkGenerator/m_254818_ (Lnet/minecraft/world/level/levelgen/RandomState;III)Lnet/minecraft/core/Holder; net/minecraft/world/level/levelgen/NoiseBasedChunkGenerator/lambda$applyCarvers$8 (Lnet/minecraft/world/level/levelgen/RandomState;III)Lnet/minecraft/core/Holder; +MD: net/minecraft/world/level/levelgen/NoiseBasedChunkGenerator/m_254819_ (Lnet/minecraft/world/level/levelgen/NoiseBasedChunkGenerator;)Lnet/minecraft/world/level/biome/BiomeSource; net/minecraft/world/level/levelgen/NoiseBasedChunkGenerator/lambda$static$0 (Lnet/minecraft/world/level/levelgen/NoiseBasedChunkGenerator;)Lnet/minecraft/world/level/biome/BiomeSource; +MD: net/minecraft/world/level/levelgen/NoiseBasedChunkGenerator/m_254820_ (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/world/level/levelgen/NoiseBasedChunkGenerator/lambda$static$2 (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/world/level/levelgen/NoiseBasedChunkGenerator/m_254821_ (Lnet/minecraft/world/level/ChunkPos;Lnet/minecraft/world/level/levelgen/RandomState;)Lnet/minecraft/world/level/biome/BiomeGenerationSettings; net/minecraft/world/level/levelgen/NoiseBasedChunkGenerator/lambda$applyCarvers$10 (Lnet/minecraft/world/level/ChunkPos;Lnet/minecraft/world/level/levelgen/RandomState;)Lnet/minecraft/world/level/biome/BiomeGenerationSettings; +MD: net/minecraft/world/level/levelgen/NoiseBasedChunkGenerator/m_6331_ ()I net/minecraft/world/level/levelgen/NoiseBasedChunkGenerator/getGenDepth ()I +MD: net/minecraft/world/level/levelgen/NoiseBasedChunkGenerator/m_6337_ ()I net/minecraft/world/level/levelgen/NoiseBasedChunkGenerator/getSeaLevel ()I +MD: net/minecraft/world/level/levelgen/NoiseBasedChunkGenerator/m_6909_ ()Lcom/mojang/serialization/Codec; net/minecraft/world/level/levelgen/NoiseBasedChunkGenerator/codec ()Lcom/mojang/serialization/Codec; +MD: net/minecraft/world/level/levelgen/NoiseBasedChunkGenerator/m_6929_ (Lnet/minecraft/server/level/WorldGenRegion;)V net/minecraft/world/level/levelgen/NoiseBasedChunkGenerator/spawnOriginalMobs (Lnet/minecraft/server/level/WorldGenRegion;)V +MD: net/minecraft/world/level/levelgen/NoiseChunk/ (ILnet/minecraft/world/level/levelgen/RandomState;IILnet/minecraft/world/level/levelgen/NoiseSettings;Lnet/minecraft/world/level/levelgen/DensityFunctions$BeardifierOrMarker;Lnet/minecraft/world/level/levelgen/NoiseGeneratorSettings;Lnet/minecraft/world/level/levelgen/Aquifer$FluidPicker;Lnet/minecraft/world/level/levelgen/blending/Blender;)V net/minecraft/world/level/levelgen/NoiseChunk/ (ILnet/minecraft/world/level/levelgen/RandomState;IILnet/minecraft/world/level/levelgen/NoiseSettings;Lnet/minecraft/world/level/levelgen/DensityFunctions$BeardifierOrMarker;Lnet/minecraft/world/level/levelgen/NoiseGeneratorSettings;Lnet/minecraft/world/level/levelgen/Aquifer$FluidPicker;Lnet/minecraft/world/level/levelgen/blending/Blender;)V +MD: net/minecraft/world/level/levelgen/NoiseChunk/m_188743_ ()Lnet/minecraft/world/level/levelgen/blending/Blender; net/minecraft/world/level/levelgen/NoiseChunk/getBlender ()Lnet/minecraft/world/level/levelgen/blending/Blender; +MD: net/minecraft/world/level/levelgen/NoiseChunk/m_188749_ (I)V net/minecraft/world/level/levelgen/NoiseChunk/advanceCellX (I)V +MD: net/minecraft/world/level/levelgen/NoiseChunk/m_188791_ ()V net/minecraft/world/level/levelgen/NoiseChunk/initializeForFirstCellX ()V +MD: net/minecraft/world/level/levelgen/NoiseChunk/m_188804_ ()V net/minecraft/world/level/levelgen/NoiseChunk/swapSlices ()V +MD: net/minecraft/world/level/levelgen/NoiseChunk/m_188810_ (II)V net/minecraft/world/level/levelgen/NoiseChunk/selectCellYZ (II)V +MD: net/minecraft/world/level/levelgen/NoiseChunk/m_188817_ ()Lnet/minecraft/world/level/levelgen/Aquifer; net/minecraft/world/level/levelgen/NoiseChunk/aquifer ()Lnet/minecraft/world/level/levelgen/Aquifer; +MD: net/minecraft/world/level/levelgen/NoiseChunk/m_198249_ (J)I net/minecraft/world/level/levelgen/NoiseChunk/computePreliminarySurfaceLevel (J)I +MD: net/minecraft/world/level/levelgen/NoiseChunk/m_198256_ (II)I net/minecraft/world/level/levelgen/NoiseChunk/preliminarySurfaceLevel (II)I +MD: net/minecraft/world/level/levelgen/NoiseChunk/m_207113_ ()I net/minecraft/world/level/levelgen/NoiseChunk/blockZ ()I +MD: net/minecraft/world/level/levelgen/NoiseChunk/m_207114_ ()I net/minecraft/world/level/levelgen/NoiseChunk/blockY ()I +MD: net/minecraft/world/level/levelgen/NoiseChunk/m_207115_ ()I net/minecraft/world/level/levelgen/NoiseChunk/blockX ()I +MD: net/minecraft/world/level/levelgen/NoiseChunk/m_207207_ ([DLnet/minecraft/world/level/levelgen/DensityFunction;)V net/minecraft/world/level/levelgen/NoiseChunk/fillAllDirectly ([DLnet/minecraft/world/level/levelgen/DensityFunction;)V +MD: net/minecraft/world/level/levelgen/NoiseChunk/m_207263_ (I)Lnet/minecraft/world/level/levelgen/NoiseChunk; net/minecraft/world/level/levelgen/NoiseChunk/forIndex (I)Lnet/minecraft/world/level/levelgen/NoiseChunk; +MD: net/minecraft/world/level/levelgen/NoiseChunk/m_207263_ (I)Lnet/minecraft/world/level/levelgen/DensityFunction$FunctionContext; net/minecraft/world/level/levelgen/NoiseChunk/forIndex (I)Lnet/minecraft/world/level/levelgen/DensityFunction$FunctionContext; +MD: net/minecraft/world/level/levelgen/NoiseChunk/m_209186_ (DLnet/minecraft/world/level/levelgen/NoiseChunk$NoiseInterpolator;)V net/minecraft/world/level/levelgen/NoiseChunk/lambda$updateForZ$4 (DLnet/minecraft/world/level/levelgen/NoiseChunk$NoiseInterpolator;)V +MD: net/minecraft/world/level/levelgen/NoiseChunk/m_209191_ (ID)V net/minecraft/world/level/levelgen/NoiseChunk/updateForY (ID)V +MD: net/minecraft/world/level/levelgen/NoiseChunk/m_209202_ (IILnet/minecraft/world/level/levelgen/NoiseChunk$NoiseInterpolator;)V net/minecraft/world/level/levelgen/NoiseChunk/lambda$selectCellYZ$1 (IILnet/minecraft/world/level/levelgen/NoiseChunk$NoiseInterpolator;)V +MD: net/minecraft/world/level/levelgen/NoiseChunk/m_209213_ (Lnet/minecraft/world/level/levelgen/DensityFunction;)Lnet/minecraft/world/level/levelgen/DensityFunction; net/minecraft/world/level/levelgen/NoiseChunk/wrap (Lnet/minecraft/world/level/levelgen/DensityFunction;)Lnet/minecraft/world/level/levelgen/DensityFunction; +MD: net/minecraft/world/level/levelgen/NoiseChunk/m_209215_ (Lnet/minecraft/world/level/levelgen/DensityFunction;Lnet/minecraft/world/level/levelgen/DensityFunction$FunctionContext;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/levelgen/NoiseChunk/lambda$new$0 (Lnet/minecraft/world/level/levelgen/DensityFunction;Lnet/minecraft/world/level/levelgen/DensityFunction$FunctionContext;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/levelgen/NoiseChunk/m_209220_ (ZI)V net/minecraft/world/level/levelgen/NoiseChunk/fillSlice (ZI)V +MD: net/minecraft/world/level/levelgen/NoiseChunk/m_209227_ (DLnet/minecraft/world/level/levelgen/NoiseChunk$NoiseInterpolator;)V net/minecraft/world/level/levelgen/NoiseChunk/lambda$updateForX$3 (DLnet/minecraft/world/level/levelgen/NoiseChunk$NoiseInterpolator;)V +MD: net/minecraft/world/level/levelgen/NoiseChunk/m_209230_ (ID)V net/minecraft/world/level/levelgen/NoiseChunk/updateForX (ID)V +MD: net/minecraft/world/level/levelgen/NoiseChunk/m_209233_ (Lnet/minecraft/world/level/levelgen/DensityFunction;)Lnet/minecraft/world/level/levelgen/DensityFunction; net/minecraft/world/level/levelgen/NoiseChunk/wrapNew (Lnet/minecraft/world/level/levelgen/DensityFunction;)Lnet/minecraft/world/level/levelgen/DensityFunction; +MD: net/minecraft/world/level/levelgen/NoiseChunk/m_209236_ (DLnet/minecraft/world/level/levelgen/NoiseChunk$NoiseInterpolator;)V net/minecraft/world/level/levelgen/NoiseChunk/lambda$updateForY$2 (DLnet/minecraft/world/level/levelgen/NoiseChunk$NoiseInterpolator;)V +MD: net/minecraft/world/level/levelgen/NoiseChunk/m_209241_ (ID)V net/minecraft/world/level/levelgen/NoiseChunk/updateForZ (ID)V +MD: net/minecraft/world/level/levelgen/NoiseChunk/m_209244_ (II)Lnet/minecraft/world/level/levelgen/blending/Blender$BlendingOutput; net/minecraft/world/level/levelgen/NoiseChunk/getOrComputeBlendingOutput (II)Lnet/minecraft/world/level/levelgen/blending/Blender$BlendingOutput; +MD: net/minecraft/world/level/levelgen/NoiseChunk/m_209247_ ()Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/levelgen/NoiseChunk/getInterpolatedState ()Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/levelgen/NoiseChunk/m_209248_ ()V net/minecraft/world/level/levelgen/NoiseChunk/stopInterpolation ()V +MD: net/minecraft/world/level/levelgen/NoiseChunk/m_224352_ (Lnet/minecraft/world/level/chunk/ChunkAccess;Lnet/minecraft/world/level/levelgen/RandomState;Lnet/minecraft/world/level/levelgen/DensityFunctions$BeardifierOrMarker;Lnet/minecraft/world/level/levelgen/NoiseGeneratorSettings;Lnet/minecraft/world/level/levelgen/Aquifer$FluidPicker;Lnet/minecraft/world/level/levelgen/blending/Blender;)Lnet/minecraft/world/level/levelgen/NoiseChunk; net/minecraft/world/level/levelgen/NoiseChunk/forChunk (Lnet/minecraft/world/level/chunk/ChunkAccess;Lnet/minecraft/world/level/levelgen/RandomState;Lnet/minecraft/world/level/levelgen/DensityFunctions$BeardifierOrMarker;Lnet/minecraft/world/level/levelgen/NoiseGeneratorSettings;Lnet/minecraft/world/level/levelgen/Aquifer$FluidPicker;Lnet/minecraft/world/level/levelgen/blending/Blender;)Lnet/minecraft/world/level/levelgen/NoiseChunk; +MD: net/minecraft/world/level/levelgen/NoiseChunk/m_224359_ (Lnet/minecraft/world/level/levelgen/NoiseRouter;Ljava/util/List;)Lnet/minecraft/world/level/biome/Climate$Sampler; net/minecraft/world/level/levelgen/NoiseChunk/cachedClimateSampler (Lnet/minecraft/world/level/levelgen/NoiseRouter;Ljava/util/List;)Lnet/minecraft/world/level/biome/Climate$Sampler; +MD: net/minecraft/world/level/levelgen/NoiseChunk/m_224362_ ()I net/minecraft/world/level/levelgen/NoiseChunk/cellWidth ()I +MD: net/minecraft/world/level/levelgen/NoiseChunk/m_224363_ ()I net/minecraft/world/level/levelgen/NoiseChunk/cellHeight ()I +MD: net/minecraft/world/level/levelgen/NoiseChunk$1/ (Lnet/minecraft/world/level/levelgen/NoiseChunk;)V net/minecraft/world/level/levelgen/NoiseChunk$1/ (Lnet/minecraft/world/level/levelgen/NoiseChunk;)V +MD: net/minecraft/world/level/levelgen/NoiseChunk$1/m_207207_ ([DLnet/minecraft/world/level/levelgen/DensityFunction;)V net/minecraft/world/level/levelgen/NoiseChunk$1/fillAllDirectly ([DLnet/minecraft/world/level/levelgen/DensityFunction;)V +MD: net/minecraft/world/level/levelgen/NoiseChunk$1/m_207263_ (I)Lnet/minecraft/world/level/levelgen/DensityFunction$FunctionContext; net/minecraft/world/level/levelgen/NoiseChunk$1/forIndex (I)Lnet/minecraft/world/level/levelgen/DensityFunction$FunctionContext; +MD: net/minecraft/world/level/levelgen/NoiseChunk$2/ ()V net/minecraft/world/level/levelgen/NoiseChunk$2/ ()V +MD: net/minecraft/world/level/levelgen/NoiseChunk$BlendAlpha/ (Lnet/minecraft/world/level/levelgen/NoiseChunk;)V net/minecraft/world/level/levelgen/NoiseChunk$BlendAlpha/ (Lnet/minecraft/world/level/levelgen/NoiseChunk;)V +MD: net/minecraft/world/level/levelgen/NoiseChunk$BlendAlpha/m_207056_ ()Lnet/minecraft/world/level/levelgen/DensityFunction; net/minecraft/world/level/levelgen/NoiseChunk$BlendAlpha/wrapped ()Lnet/minecraft/world/level/levelgen/DensityFunction; +MD: net/minecraft/world/level/levelgen/NoiseChunk$BlendAlpha/m_207362_ ([DLnet/minecraft/world/level/levelgen/DensityFunction$ContextProvider;)V net/minecraft/world/level/levelgen/NoiseChunk$BlendAlpha/fillArray ([DLnet/minecraft/world/level/levelgen/DensityFunction$ContextProvider;)V +MD: net/minecraft/world/level/levelgen/NoiseChunk$BlendAlpha/m_207386_ (Lnet/minecraft/world/level/levelgen/DensityFunction$FunctionContext;)D net/minecraft/world/level/levelgen/NoiseChunk$BlendAlpha/compute (Lnet/minecraft/world/level/levelgen/DensityFunction$FunctionContext;)D +MD: net/minecraft/world/level/levelgen/NoiseChunk$BlendAlpha/m_207401_ ()D net/minecraft/world/level/levelgen/NoiseChunk$BlendAlpha/maxValue ()D +MD: net/minecraft/world/level/levelgen/NoiseChunk$BlendAlpha/m_207402_ ()D net/minecraft/world/level/levelgen/NoiseChunk$BlendAlpha/minValue ()D +MD: net/minecraft/world/level/levelgen/NoiseChunk$BlendAlpha/m_207456_ (Lnet/minecraft/world/level/levelgen/DensityFunction$Visitor;)Lnet/minecraft/world/level/levelgen/DensityFunction; net/minecraft/world/level/levelgen/NoiseChunk$BlendAlpha/mapAll (Lnet/minecraft/world/level/levelgen/DensityFunction$Visitor;)Lnet/minecraft/world/level/levelgen/DensityFunction; +MD: net/minecraft/world/level/levelgen/NoiseChunk$BlendAlpha/m_214023_ ()Lnet/minecraft/util/KeyDispatchDataCodec; net/minecraft/world/level/levelgen/NoiseChunk$BlendAlpha/codec ()Lnet/minecraft/util/KeyDispatchDataCodec; +MD: net/minecraft/world/level/levelgen/NoiseChunk$BlendOffset/ (Lnet/minecraft/world/level/levelgen/NoiseChunk;)V net/minecraft/world/level/levelgen/NoiseChunk$BlendOffset/ (Lnet/minecraft/world/level/levelgen/NoiseChunk;)V +MD: net/minecraft/world/level/levelgen/NoiseChunk$BlendOffset/m_207056_ ()Lnet/minecraft/world/level/levelgen/DensityFunction; net/minecraft/world/level/levelgen/NoiseChunk$BlendOffset/wrapped ()Lnet/minecraft/world/level/levelgen/DensityFunction; +MD: net/minecraft/world/level/levelgen/NoiseChunk$BlendOffset/m_207362_ ([DLnet/minecraft/world/level/levelgen/DensityFunction$ContextProvider;)V net/minecraft/world/level/levelgen/NoiseChunk$BlendOffset/fillArray ([DLnet/minecraft/world/level/levelgen/DensityFunction$ContextProvider;)V +MD: net/minecraft/world/level/levelgen/NoiseChunk$BlendOffset/m_207386_ (Lnet/minecraft/world/level/levelgen/DensityFunction$FunctionContext;)D net/minecraft/world/level/levelgen/NoiseChunk$BlendOffset/compute (Lnet/minecraft/world/level/levelgen/DensityFunction$FunctionContext;)D +MD: net/minecraft/world/level/levelgen/NoiseChunk$BlendOffset/m_207401_ ()D net/minecraft/world/level/levelgen/NoiseChunk$BlendOffset/maxValue ()D +MD: net/minecraft/world/level/levelgen/NoiseChunk$BlendOffset/m_207402_ ()D net/minecraft/world/level/levelgen/NoiseChunk$BlendOffset/minValue ()D +MD: net/minecraft/world/level/levelgen/NoiseChunk$BlendOffset/m_207456_ (Lnet/minecraft/world/level/levelgen/DensityFunction$Visitor;)Lnet/minecraft/world/level/levelgen/DensityFunction; net/minecraft/world/level/levelgen/NoiseChunk$BlendOffset/mapAll (Lnet/minecraft/world/level/levelgen/DensityFunction$Visitor;)Lnet/minecraft/world/level/levelgen/DensityFunction; +MD: net/minecraft/world/level/levelgen/NoiseChunk$BlendOffset/m_214023_ ()Lnet/minecraft/util/KeyDispatchDataCodec; net/minecraft/world/level/levelgen/NoiseChunk$BlendOffset/codec ()Lnet/minecraft/util/KeyDispatchDataCodec; +MD: net/minecraft/world/level/levelgen/NoiseChunk$BlockStateFiller/m_207387_ (Lnet/minecraft/world/level/levelgen/DensityFunction$FunctionContext;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/levelgen/NoiseChunk$BlockStateFiller/calculate (Lnet/minecraft/world/level/levelgen/DensityFunction$FunctionContext;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/levelgen/NoiseChunk$Cache2D/ (Lnet/minecraft/world/level/levelgen/DensityFunction;)V net/minecraft/world/level/levelgen/NoiseChunk$Cache2D/ (Lnet/minecraft/world/level/levelgen/DensityFunction;)V +MD: net/minecraft/world/level/levelgen/NoiseChunk$Cache2D/m_207056_ ()Lnet/minecraft/world/level/levelgen/DensityFunction; net/minecraft/world/level/levelgen/NoiseChunk$Cache2D/wrapped ()Lnet/minecraft/world/level/levelgen/DensityFunction; +MD: net/minecraft/world/level/levelgen/NoiseChunk$Cache2D/m_207136_ ()Lnet/minecraft/world/level/levelgen/DensityFunctions$Marker$Type; net/minecraft/world/level/levelgen/NoiseChunk$Cache2D/type ()Lnet/minecraft/world/level/levelgen/DensityFunctions$Marker$Type; +MD: net/minecraft/world/level/levelgen/NoiseChunk$Cache2D/m_207362_ ([DLnet/minecraft/world/level/levelgen/DensityFunction$ContextProvider;)V net/minecraft/world/level/levelgen/NoiseChunk$Cache2D/fillArray ([DLnet/minecraft/world/level/levelgen/DensityFunction$ContextProvider;)V +MD: net/minecraft/world/level/levelgen/NoiseChunk$Cache2D/m_207386_ (Lnet/minecraft/world/level/levelgen/DensityFunction$FunctionContext;)D net/minecraft/world/level/levelgen/NoiseChunk$Cache2D/compute (Lnet/minecraft/world/level/levelgen/DensityFunction$FunctionContext;)D +MD: net/minecraft/world/level/levelgen/NoiseChunk$CacheAllInCell/ (Lnet/minecraft/world/level/levelgen/NoiseChunk;Lnet/minecraft/world/level/levelgen/DensityFunction;)V net/minecraft/world/level/levelgen/NoiseChunk$CacheAllInCell/ (Lnet/minecraft/world/level/levelgen/NoiseChunk;Lnet/minecraft/world/level/levelgen/DensityFunction;)V +MD: net/minecraft/world/level/levelgen/NoiseChunk$CacheAllInCell/m_207056_ ()Lnet/minecraft/world/level/levelgen/DensityFunction; net/minecraft/world/level/levelgen/NoiseChunk$CacheAllInCell/wrapped ()Lnet/minecraft/world/level/levelgen/DensityFunction; +MD: net/minecraft/world/level/levelgen/NoiseChunk$CacheAllInCell/m_207136_ ()Lnet/minecraft/world/level/levelgen/DensityFunctions$Marker$Type; net/minecraft/world/level/levelgen/NoiseChunk$CacheAllInCell/type ()Lnet/minecraft/world/level/levelgen/DensityFunctions$Marker$Type; +MD: net/minecraft/world/level/levelgen/NoiseChunk$CacheAllInCell/m_207362_ ([DLnet/minecraft/world/level/levelgen/DensityFunction$ContextProvider;)V net/minecraft/world/level/levelgen/NoiseChunk$CacheAllInCell/fillArray ([DLnet/minecraft/world/level/levelgen/DensityFunction$ContextProvider;)V +MD: net/minecraft/world/level/levelgen/NoiseChunk$CacheAllInCell/m_207386_ (Lnet/minecraft/world/level/levelgen/DensityFunction$FunctionContext;)D net/minecraft/world/level/levelgen/NoiseChunk$CacheAllInCell/compute (Lnet/minecraft/world/level/levelgen/DensityFunction$FunctionContext;)D +MD: net/minecraft/world/level/levelgen/NoiseChunk$CacheOnce/ (Lnet/minecraft/world/level/levelgen/NoiseChunk;Lnet/minecraft/world/level/levelgen/DensityFunction;)V net/minecraft/world/level/levelgen/NoiseChunk$CacheOnce/ (Lnet/minecraft/world/level/levelgen/NoiseChunk;Lnet/minecraft/world/level/levelgen/DensityFunction;)V +MD: net/minecraft/world/level/levelgen/NoiseChunk$CacheOnce/m_207056_ ()Lnet/minecraft/world/level/levelgen/DensityFunction; net/minecraft/world/level/levelgen/NoiseChunk$CacheOnce/wrapped ()Lnet/minecraft/world/level/levelgen/DensityFunction; +MD: net/minecraft/world/level/levelgen/NoiseChunk$CacheOnce/m_207136_ ()Lnet/minecraft/world/level/levelgen/DensityFunctions$Marker$Type; net/minecraft/world/level/levelgen/NoiseChunk$CacheOnce/type ()Lnet/minecraft/world/level/levelgen/DensityFunctions$Marker$Type; +MD: net/minecraft/world/level/levelgen/NoiseChunk$CacheOnce/m_207362_ ([DLnet/minecraft/world/level/levelgen/DensityFunction$ContextProvider;)V net/minecraft/world/level/levelgen/NoiseChunk$CacheOnce/fillArray ([DLnet/minecraft/world/level/levelgen/DensityFunction$ContextProvider;)V +MD: net/minecraft/world/level/levelgen/NoiseChunk$CacheOnce/m_207386_ (Lnet/minecraft/world/level/levelgen/DensityFunction$FunctionContext;)D net/minecraft/world/level/levelgen/NoiseChunk$CacheOnce/compute (Lnet/minecraft/world/level/levelgen/DensityFunction$FunctionContext;)D +MD: net/minecraft/world/level/levelgen/NoiseChunk$FlatCache/ (Lnet/minecraft/world/level/levelgen/NoiseChunk;Lnet/minecraft/world/level/levelgen/DensityFunction;Z)V net/minecraft/world/level/levelgen/NoiseChunk$FlatCache/ (Lnet/minecraft/world/level/levelgen/NoiseChunk;Lnet/minecraft/world/level/levelgen/DensityFunction;Z)V +MD: net/minecraft/world/level/levelgen/NoiseChunk$FlatCache/m_207056_ ()Lnet/minecraft/world/level/levelgen/DensityFunction; net/minecraft/world/level/levelgen/NoiseChunk$FlatCache/wrapped ()Lnet/minecraft/world/level/levelgen/DensityFunction; +MD: net/minecraft/world/level/levelgen/NoiseChunk$FlatCache/m_207136_ ()Lnet/minecraft/world/level/levelgen/DensityFunctions$Marker$Type; net/minecraft/world/level/levelgen/NoiseChunk$FlatCache/type ()Lnet/minecraft/world/level/levelgen/DensityFunctions$Marker$Type; +MD: net/minecraft/world/level/levelgen/NoiseChunk$FlatCache/m_207362_ ([DLnet/minecraft/world/level/levelgen/DensityFunction$ContextProvider;)V net/minecraft/world/level/levelgen/NoiseChunk$FlatCache/fillArray ([DLnet/minecraft/world/level/levelgen/DensityFunction$ContextProvider;)V +MD: net/minecraft/world/level/levelgen/NoiseChunk$FlatCache/m_207386_ (Lnet/minecraft/world/level/levelgen/DensityFunction$FunctionContext;)D net/minecraft/world/level/levelgen/NoiseChunk$FlatCache/compute (Lnet/minecraft/world/level/levelgen/DensityFunction$FunctionContext;)D +MD: net/minecraft/world/level/levelgen/NoiseChunk$NoiseChunkDensityFunction/m_207056_ ()Lnet/minecraft/world/level/levelgen/DensityFunction; net/minecraft/world/level/levelgen/NoiseChunk$NoiseChunkDensityFunction/wrapped ()Lnet/minecraft/world/level/levelgen/DensityFunction; +MD: net/minecraft/world/level/levelgen/NoiseChunk$NoiseChunkDensityFunction/m_207401_ ()D net/minecraft/world/level/levelgen/NoiseChunk$NoiseChunkDensityFunction/maxValue ()D +MD: net/minecraft/world/level/levelgen/NoiseChunk$NoiseChunkDensityFunction/m_207402_ ()D net/minecraft/world/level/levelgen/NoiseChunk$NoiseChunkDensityFunction/minValue ()D +MD: net/minecraft/world/level/levelgen/NoiseChunk$NoiseInterpolator/ (Lnet/minecraft/world/level/levelgen/NoiseChunk;Lnet/minecraft/world/level/levelgen/DensityFunction;)V net/minecraft/world/level/levelgen/NoiseChunk$NoiseInterpolator/ (Lnet/minecraft/world/level/levelgen/NoiseChunk;Lnet/minecraft/world/level/levelgen/DensityFunction;)V +MD: net/minecraft/world/level/levelgen/NoiseChunk$NoiseInterpolator/m_188850_ (D)V net/minecraft/world/level/levelgen/NoiseChunk$NoiseInterpolator/updateForY (D)V +MD: net/minecraft/world/level/levelgen/NoiseChunk$NoiseInterpolator/m_188854_ (II)[[D net/minecraft/world/level/levelgen/NoiseChunk$NoiseInterpolator/allocateSlice (II)[[D +MD: net/minecraft/world/level/levelgen/NoiseChunk$NoiseInterpolator/m_188860_ ()V net/minecraft/world/level/levelgen/NoiseChunk$NoiseInterpolator/swapSlices ()V +MD: net/minecraft/world/level/levelgen/NoiseChunk$NoiseInterpolator/m_188861_ (D)V net/minecraft/world/level/levelgen/NoiseChunk$NoiseInterpolator/updateForX (D)V +MD: net/minecraft/world/level/levelgen/NoiseChunk$NoiseInterpolator/m_188863_ (II)V net/minecraft/world/level/levelgen/NoiseChunk$NoiseInterpolator/selectCellYZ (II)V +MD: net/minecraft/world/level/levelgen/NoiseChunk$NoiseInterpolator/m_188866_ (D)V net/minecraft/world/level/levelgen/NoiseChunk$NoiseInterpolator/updateForZ (D)V +MD: net/minecraft/world/level/levelgen/NoiseChunk$NoiseInterpolator/m_207056_ ()Lnet/minecraft/world/level/levelgen/DensityFunction; net/minecraft/world/level/levelgen/NoiseChunk$NoiseInterpolator/wrapped ()Lnet/minecraft/world/level/levelgen/DensityFunction; +MD: net/minecraft/world/level/levelgen/NoiseChunk$NoiseInterpolator/m_207136_ ()Lnet/minecraft/world/level/levelgen/DensityFunctions$Marker$Type; net/minecraft/world/level/levelgen/NoiseChunk$NoiseInterpolator/type ()Lnet/minecraft/world/level/levelgen/DensityFunctions$Marker$Type; +MD: net/minecraft/world/level/levelgen/NoiseChunk$NoiseInterpolator/m_207362_ ([DLnet/minecraft/world/level/levelgen/DensityFunction$ContextProvider;)V net/minecraft/world/level/levelgen/NoiseChunk$NoiseInterpolator/fillArray ([DLnet/minecraft/world/level/levelgen/DensityFunction$ContextProvider;)V +MD: net/minecraft/world/level/levelgen/NoiseChunk$NoiseInterpolator/m_207386_ (Lnet/minecraft/world/level/levelgen/DensityFunction$FunctionContext;)D net/minecraft/world/level/levelgen/NoiseChunk$NoiseInterpolator/compute (Lnet/minecraft/world/level/levelgen/DensityFunction$FunctionContext;)D +MD: net/minecraft/world/level/levelgen/NoiseGeneratorSettings/ ()V net/minecraft/world/level/levelgen/NoiseGeneratorSettings/ ()V +MD: net/minecraft/world/level/levelgen/NoiseGeneratorSettings/ (Lnet/minecraft/world/level/levelgen/NoiseSettings;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/levelgen/NoiseRouter;Lnet/minecraft/world/level/levelgen/SurfaceRules$RuleSource;Ljava/util/List;IZZZZ)V net/minecraft/world/level/levelgen/NoiseGeneratorSettings/ (Lnet/minecraft/world/level/levelgen/NoiseSettings;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/levelgen/NoiseRouter;Lnet/minecraft/world/level/levelgen/SurfaceRules$RuleSource;Ljava/util/List;IZZZZ)V +MD: net/minecraft/world/level/levelgen/NoiseGeneratorSettings/equals (Ljava/lang/Object;)Z net/minecraft/world/level/levelgen/NoiseGeneratorSettings/equals (Ljava/lang/Object;)Z +MD: net/minecraft/world/level/levelgen/NoiseGeneratorSettings/f_158533_ ()Z net/minecraft/world/level/levelgen/NoiseGeneratorSettings/aquifersEnabled ()Z +MD: net/minecraft/world/level/levelgen/NoiseGeneratorSettings/f_188871_ ()Lnet/minecraft/world/level/levelgen/SurfaceRules$RuleSource; net/minecraft/world/level/levelgen/NoiseGeneratorSettings/surfaceRule ()Lnet/minecraft/world/level/levelgen/SurfaceRules$RuleSource; +MD: net/minecraft/world/level/levelgen/NoiseGeneratorSettings/f_209353_ ()Lnet/minecraft/world/level/levelgen/NoiseRouter; net/minecraft/world/level/levelgen/NoiseGeneratorSettings/noiseRouter ()Lnet/minecraft/world/level/levelgen/NoiseRouter; +MD: net/minecraft/world/level/levelgen/NoiseGeneratorSettings/f_209354_ ()Z net/minecraft/world/level/levelgen/NoiseGeneratorSettings/useLegacyRandomSource ()Z +MD: net/minecraft/world/level/levelgen/NoiseGeneratorSettings/f_224370_ ()Ljava/util/List; net/minecraft/world/level/levelgen/NoiseGeneratorSettings/spawnTarget ()Ljava/util/List; +MD: net/minecraft/world/level/levelgen/NoiseGeneratorSettings/f_64439_ ()Lnet/minecraft/world/level/levelgen/NoiseSettings; net/minecraft/world/level/levelgen/NoiseGeneratorSettings/noiseSettings ()Lnet/minecraft/world/level/levelgen/NoiseSettings; +MD: net/minecraft/world/level/levelgen/NoiseGeneratorSettings/f_64440_ ()Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/levelgen/NoiseGeneratorSettings/defaultBlock ()Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/levelgen/NoiseGeneratorSettings/f_64441_ ()Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/levelgen/NoiseGeneratorSettings/defaultFluid ()Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/levelgen/NoiseGeneratorSettings/f_64444_ ()I net/minecraft/world/level/levelgen/NoiseGeneratorSettings/seaLevel ()I +MD: net/minecraft/world/level/levelgen/NoiseGeneratorSettings/f_64445_ ()Z net/minecraft/world/level/levelgen/NoiseGeneratorSettings/disableMobGeneration ()Z +MD: net/minecraft/world/level/levelgen/NoiseGeneratorSettings/hashCode ()I net/minecraft/world/level/levelgen/NoiseGeneratorSettings/hashCode ()I +MD: net/minecraft/world/level/levelgen/NoiseGeneratorSettings/m_158567_ ()Z net/minecraft/world/level/levelgen/NoiseGeneratorSettings/isAquifersEnabled ()Z +MD: net/minecraft/world/level/levelgen/NoiseGeneratorSettings/m_188893_ ()Lnet/minecraft/world/level/levelgen/WorldgenRandom$Algorithm; net/minecraft/world/level/levelgen/NoiseGeneratorSettings/getRandomSource ()Lnet/minecraft/world/level/levelgen/WorldgenRandom$Algorithm; +MD: net/minecraft/world/level/levelgen/NoiseGeneratorSettings/m_209369_ ()Z net/minecraft/world/level/levelgen/NoiseGeneratorSettings/oreVeinsEnabled ()Z +MD: net/minecraft/world/level/levelgen/NoiseGeneratorSettings/m_238396_ ()Lnet/minecraft/world/level/levelgen/NoiseGeneratorSettings; net/minecraft/world/level/levelgen/NoiseGeneratorSettings/dummy ()Lnet/minecraft/world/level/levelgen/NoiseGeneratorSettings; +MD: net/minecraft/world/level/levelgen/NoiseGeneratorSettings/m_254959_ (Lnet/minecraft/data/worldgen/BootstapContext;)V net/minecraft/world/level/levelgen/NoiseGeneratorSettings/bootstrap (Lnet/minecraft/data/worldgen/BootstapContext;)V +MD: net/minecraft/world/level/levelgen/NoiseGeneratorSettings/m_255038_ (Lnet/minecraft/data/worldgen/BootstapContext;)Lnet/minecraft/world/level/levelgen/NoiseGeneratorSettings; net/minecraft/world/level/levelgen/NoiseGeneratorSettings/caves (Lnet/minecraft/data/worldgen/BootstapContext;)Lnet/minecraft/world/level/levelgen/NoiseGeneratorSettings; +MD: net/minecraft/world/level/levelgen/NoiseGeneratorSettings/m_255186_ (Lnet/minecraft/data/worldgen/BootstapContext;)Lnet/minecraft/world/level/levelgen/NoiseGeneratorSettings; net/minecraft/world/level/levelgen/NoiseGeneratorSettings/end (Lnet/minecraft/data/worldgen/BootstapContext;)Lnet/minecraft/world/level/levelgen/NoiseGeneratorSettings; +MD: net/minecraft/world/level/levelgen/NoiseGeneratorSettings/m_255226_ (Lnet/minecraft/data/worldgen/BootstapContext;ZZ)Lnet/minecraft/world/level/levelgen/NoiseGeneratorSettings; net/minecraft/world/level/levelgen/NoiseGeneratorSettings/overworld (Lnet/minecraft/data/worldgen/BootstapContext;ZZ)Lnet/minecraft/world/level/levelgen/NoiseGeneratorSettings; +MD: net/minecraft/world/level/levelgen/NoiseGeneratorSettings/m_255230_ (Lnet/minecraft/data/worldgen/BootstapContext;)Lnet/minecraft/world/level/levelgen/NoiseGeneratorSettings; net/minecraft/world/level/levelgen/NoiseGeneratorSettings/floatingIslands (Lnet/minecraft/data/worldgen/BootstapContext;)Lnet/minecraft/world/level/levelgen/NoiseGeneratorSettings; +MD: net/minecraft/world/level/levelgen/NoiseGeneratorSettings/m_255410_ (Lnet/minecraft/data/worldgen/BootstapContext;)Lnet/minecraft/world/level/levelgen/NoiseGeneratorSettings; net/minecraft/world/level/levelgen/NoiseGeneratorSettings/nether (Lnet/minecraft/data/worldgen/BootstapContext;)Lnet/minecraft/world/level/levelgen/NoiseGeneratorSettings; +MD: net/minecraft/world/level/levelgen/NoiseGeneratorSettings/m_64474_ (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/world/level/levelgen/NoiseGeneratorSettings/lambda$static$0 (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/world/level/levelgen/NoiseGeneratorSettings/toString ()Ljava/lang/String; net/minecraft/world/level/levelgen/NoiseGeneratorSettings/toString ()Ljava/lang/String; +MD: net/minecraft/world/level/levelgen/NoiseRouter/ ()V net/minecraft/world/level/levelgen/NoiseRouter/ ()V +MD: net/minecraft/world/level/levelgen/NoiseRouter/ (Lnet/minecraft/world/level/levelgen/DensityFunction;Lnet/minecraft/world/level/levelgen/DensityFunction;Lnet/minecraft/world/level/levelgen/DensityFunction;Lnet/minecraft/world/level/levelgen/DensityFunction;Lnet/minecraft/world/level/levelgen/DensityFunction;Lnet/minecraft/world/level/levelgen/DensityFunction;Lnet/minecraft/world/level/levelgen/DensityFunction;Lnet/minecraft/world/level/levelgen/DensityFunction;Lnet/minecraft/world/level/levelgen/DensityFunction;Lnet/minecraft/world/level/levelgen/DensityFunction;Lnet/minecraft/world/level/levelgen/DensityFunction;Lnet/minecraft/world/level/levelgen/DensityFunction;Lnet/minecraft/world/level/levelgen/DensityFunction;Lnet/minecraft/world/level/levelgen/DensityFunction;Lnet/minecraft/world/level/levelgen/DensityFunction;)V net/minecraft/world/level/levelgen/NoiseRouter/ (Lnet/minecraft/world/level/levelgen/DensityFunction;Lnet/minecraft/world/level/levelgen/DensityFunction;Lnet/minecraft/world/level/levelgen/DensityFunction;Lnet/minecraft/world/level/levelgen/DensityFunction;Lnet/minecraft/world/level/levelgen/DensityFunction;Lnet/minecraft/world/level/levelgen/DensityFunction;Lnet/minecraft/world/level/levelgen/DensityFunction;Lnet/minecraft/world/level/levelgen/DensityFunction;Lnet/minecraft/world/level/levelgen/DensityFunction;Lnet/minecraft/world/level/levelgen/DensityFunction;Lnet/minecraft/world/level/levelgen/DensityFunction;Lnet/minecraft/world/level/levelgen/DensityFunction;Lnet/minecraft/world/level/levelgen/DensityFunction;Lnet/minecraft/world/level/levelgen/DensityFunction;Lnet/minecraft/world/level/levelgen/DensityFunction;)V +MD: net/minecraft/world/level/levelgen/NoiseRouter/equals (Ljava/lang/Object;)Z net/minecraft/world/level/levelgen/NoiseRouter/equals (Ljava/lang/Object;)Z +MD: net/minecraft/world/level/levelgen/NoiseRouter/f_209378_ ()Lnet/minecraft/world/level/levelgen/DensityFunction; net/minecraft/world/level/levelgen/NoiseRouter/barrierNoise ()Lnet/minecraft/world/level/levelgen/DensityFunction; +MD: net/minecraft/world/level/levelgen/NoiseRouter/f_209379_ ()Lnet/minecraft/world/level/levelgen/DensityFunction; net/minecraft/world/level/levelgen/NoiseRouter/fluidLevelFloodednessNoise ()Lnet/minecraft/world/level/levelgen/DensityFunction; +MD: net/minecraft/world/level/levelgen/NoiseRouter/f_209380_ ()Lnet/minecraft/world/level/levelgen/DensityFunction; net/minecraft/world/level/levelgen/NoiseRouter/fluidLevelSpreadNoise ()Lnet/minecraft/world/level/levelgen/DensityFunction; +MD: net/minecraft/world/level/levelgen/NoiseRouter/f_209381_ ()Lnet/minecraft/world/level/levelgen/DensityFunction; net/minecraft/world/level/levelgen/NoiseRouter/lavaNoise ()Lnet/minecraft/world/level/levelgen/DensityFunction; +MD: net/minecraft/world/level/levelgen/NoiseRouter/f_209384_ ()Lnet/minecraft/world/level/levelgen/DensityFunction; net/minecraft/world/level/levelgen/NoiseRouter/temperature ()Lnet/minecraft/world/level/levelgen/DensityFunction; +MD: net/minecraft/world/level/levelgen/NoiseRouter/f_209386_ ()Lnet/minecraft/world/level/levelgen/DensityFunction; net/minecraft/world/level/levelgen/NoiseRouter/continents ()Lnet/minecraft/world/level/levelgen/DensityFunction; +MD: net/minecraft/world/level/levelgen/NoiseRouter/f_209387_ ()Lnet/minecraft/world/level/levelgen/DensityFunction; net/minecraft/world/level/levelgen/NoiseRouter/erosion ()Lnet/minecraft/world/level/levelgen/DensityFunction; +MD: net/minecraft/world/level/levelgen/NoiseRouter/f_209388_ ()Lnet/minecraft/world/level/levelgen/DensityFunction; net/minecraft/world/level/levelgen/NoiseRouter/depth ()Lnet/minecraft/world/level/levelgen/DensityFunction; +MD: net/minecraft/world/level/levelgen/NoiseRouter/f_209389_ ()Lnet/minecraft/world/level/levelgen/DensityFunction; net/minecraft/world/level/levelgen/NoiseRouter/ridges ()Lnet/minecraft/world/level/levelgen/DensityFunction; +MD: net/minecraft/world/level/levelgen/NoiseRouter/f_209390_ ()Lnet/minecraft/world/level/levelgen/DensityFunction; net/minecraft/world/level/levelgen/NoiseRouter/initialDensityWithoutJaggedness ()Lnet/minecraft/world/level/levelgen/DensityFunction; +MD: net/minecraft/world/level/levelgen/NoiseRouter/f_209391_ ()Lnet/minecraft/world/level/levelgen/DensityFunction; net/minecraft/world/level/levelgen/NoiseRouter/finalDensity ()Lnet/minecraft/world/level/levelgen/DensityFunction; +MD: net/minecraft/world/level/levelgen/NoiseRouter/f_209392_ ()Lnet/minecraft/world/level/levelgen/DensityFunction; net/minecraft/world/level/levelgen/NoiseRouter/veinToggle ()Lnet/minecraft/world/level/levelgen/DensityFunction; +MD: net/minecraft/world/level/levelgen/NoiseRouter/f_209393_ ()Lnet/minecraft/world/level/levelgen/DensityFunction; net/minecraft/world/level/levelgen/NoiseRouter/veinRidged ()Lnet/minecraft/world/level/levelgen/DensityFunction; +MD: net/minecraft/world/level/levelgen/NoiseRouter/f_209394_ ()Lnet/minecraft/world/level/levelgen/DensityFunction; net/minecraft/world/level/levelgen/NoiseRouter/veinGap ()Lnet/minecraft/world/level/levelgen/DensityFunction; +MD: net/minecraft/world/level/levelgen/NoiseRouter/f_224392_ ()Lnet/minecraft/world/level/levelgen/DensityFunction; net/minecraft/world/level/levelgen/NoiseRouter/vegetation ()Lnet/minecraft/world/level/levelgen/DensityFunction; +MD: net/minecraft/world/level/levelgen/NoiseRouter/hashCode ()I net/minecraft/world/level/levelgen/NoiseRouter/hashCode ()I +MD: net/minecraft/world/level/levelgen/NoiseRouter/m_224410_ (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/world/level/levelgen/NoiseRouter/lambda$static$0 (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/world/level/levelgen/NoiseRouter/m_224412_ (Lnet/minecraft/world/level/levelgen/DensityFunction$Visitor;)Lnet/minecraft/world/level/levelgen/NoiseRouter; net/minecraft/world/level/levelgen/NoiseRouter/mapAll (Lnet/minecraft/world/level/levelgen/DensityFunction$Visitor;)Lnet/minecraft/world/level/levelgen/NoiseRouter; +MD: net/minecraft/world/level/levelgen/NoiseRouter/m_224414_ (Ljava/lang/String;Ljava/util/function/Function;)Lcom/mojang/serialization/codecs/RecordCodecBuilder; net/minecraft/world/level/levelgen/NoiseRouter/field (Ljava/lang/String;Ljava/util/function/Function;)Lcom/mojang/serialization/codecs/RecordCodecBuilder; +MD: net/minecraft/world/level/levelgen/NoiseRouter/toString ()Ljava/lang/String; net/minecraft/world/level/levelgen/NoiseRouter/toString ()Ljava/lang/String; +MD: net/minecraft/world/level/levelgen/NoiseRouterData/ ()V net/minecraft/world/level/levelgen/NoiseRouterData/ ()V +MD: net/minecraft/world/level/levelgen/NoiseRouterData/ ()V net/minecraft/world/level/levelgen/NoiseRouterData/ ()V +MD: net/minecraft/world/level/levelgen/NoiseRouterData/m_209471_ (Lnet/minecraft/world/level/levelgen/DensityFunction;Lnet/minecraft/world/level/levelgen/DensityFunction;III)Lnet/minecraft/world/level/levelgen/DensityFunction; net/minecraft/world/level/levelgen/NoiseRouterData/yLimitedInterpolatable (Lnet/minecraft/world/level/levelgen/DensityFunction;Lnet/minecraft/world/level/levelgen/DensityFunction;III)Lnet/minecraft/world/level/levelgen/DensityFunction; +MD: net/minecraft/world/level/levelgen/NoiseRouterData/m_209536_ (Ljava/lang/String;)Lnet/minecraft/resources/ResourceKey; net/minecraft/world/level/levelgen/NoiseRouterData/createKey (Ljava/lang/String;)Lnet/minecraft/resources/ResourceKey; +MD: net/minecraft/world/level/levelgen/NoiseRouterData/m_212271_ (Lnet/minecraft/world/level/levelgen/DensityFunction;Lnet/minecraft/world/level/levelgen/DensityFunction;)Lnet/minecraft/world/level/levelgen/DensityFunction; net/minecraft/world/level/levelgen/NoiseRouterData/noiseGradientDensity (Lnet/minecraft/world/level/levelgen/DensityFunction;Lnet/minecraft/world/level/levelgen/DensityFunction;)Lnet/minecraft/world/level/levelgen/DensityFunction; +MD: net/minecraft/world/level/levelgen/NoiseRouterData/m_224435_ (F)F net/minecraft/world/level/levelgen/NoiseRouterData/peaksAndValleys (F)F +MD: net/minecraft/world/level/levelgen/NoiseRouterData/m_224437_ (Lnet/minecraft/world/level/levelgen/DensityFunction;)Lnet/minecraft/world/level/levelgen/DensityFunction; net/minecraft/world/level/levelgen/NoiseRouterData/peaksAndValleys (Lnet/minecraft/world/level/levelgen/DensityFunction;)Lnet/minecraft/world/level/levelgen/DensityFunction; +MD: net/minecraft/world/level/levelgen/NoiseRouterData/m_224439_ (Lnet/minecraft/world/level/levelgen/DensityFunction;II)Lnet/minecraft/world/level/levelgen/DensityFunction; net/minecraft/world/level/levelgen/NoiseRouterData/slideEndLike (Lnet/minecraft/world/level/levelgen/DensityFunction;II)Lnet/minecraft/world/level/levelgen/DensityFunction; +MD: net/minecraft/world/level/levelgen/NoiseRouterData/m_224443_ (Lnet/minecraft/world/level/levelgen/DensityFunction;IIIIDIID)Lnet/minecraft/world/level/levelgen/DensityFunction; net/minecraft/world/level/levelgen/NoiseRouterData/slide (Lnet/minecraft/world/level/levelgen/DensityFunction;IIIIDIID)Lnet/minecraft/world/level/levelgen/DensityFunction; +MD: net/minecraft/world/level/levelgen/NoiseRouterData/m_224453_ (Lnet/minecraft/world/level/levelgen/DensityFunction;Lnet/minecraft/world/level/levelgen/DensityFunction;)Lnet/minecraft/world/level/levelgen/DensityFunction; net/minecraft/world/level/levelgen/NoiseRouterData/splineWithBlending (Lnet/minecraft/world/level/levelgen/DensityFunction;Lnet/minecraft/world/level/levelgen/DensityFunction;)Lnet/minecraft/world/level/levelgen/DensityFunction; +MD: net/minecraft/world/level/levelgen/NoiseRouterData/m_224456_ (Lnet/minecraft/world/level/levelgen/OreVeinifier$VeinType;)I net/minecraft/world/level/levelgen/NoiseRouterData/lambda$overworld$1 (Lnet/minecraft/world/level/levelgen/OreVeinifier$VeinType;)I +MD: net/minecraft/world/level/levelgen/NoiseRouterData/m_224474_ (Lnet/minecraft/data/worldgen/BootstapContext;Lnet/minecraft/core/HolderGetter;Lnet/minecraft/world/level/levelgen/DensityFunction;Lnet/minecraft/core/Holder;Lnet/minecraft/core/Holder;Lnet/minecraft/resources/ResourceKey;Lnet/minecraft/resources/ResourceKey;Lnet/minecraft/resources/ResourceKey;Lnet/minecraft/resources/ResourceKey;Lnet/minecraft/resources/ResourceKey;Z)V net/minecraft/world/level/levelgen/NoiseRouterData/registerTerrainNoises (Lnet/minecraft/data/worldgen/BootstapContext;Lnet/minecraft/core/HolderGetter;Lnet/minecraft/world/level/levelgen/DensityFunction;Lnet/minecraft/core/Holder;Lnet/minecraft/core/Holder;Lnet/minecraft/resources/ResourceKey;Lnet/minecraft/resources/ResourceKey;Lnet/minecraft/resources/ResourceKey;Lnet/minecraft/resources/ResourceKey;Lnet/minecraft/resources/ResourceKey;Z)V +MD: net/minecraft/world/level/levelgen/NoiseRouterData/m_224489_ (ZLnet/minecraft/world/level/levelgen/DensityFunction;)Lnet/minecraft/world/level/levelgen/DensityFunction; net/minecraft/world/level/levelgen/NoiseRouterData/slideOverworld (ZLnet/minecraft/world/level/levelgen/DensityFunction;)Lnet/minecraft/world/level/levelgen/DensityFunction; +MD: net/minecraft/world/level/levelgen/NoiseRouterData/m_224492_ (Lnet/minecraft/world/level/levelgen/DensityFunction;)Lnet/minecraft/world/level/levelgen/DensityFunction; net/minecraft/world/level/levelgen/NoiseRouterData/postProcess (Lnet/minecraft/world/level/levelgen/DensityFunction;)Lnet/minecraft/world/level/levelgen/DensityFunction; +MD: net/minecraft/world/level/levelgen/NoiseRouterData/m_224494_ (Lnet/minecraft/world/level/levelgen/OreVeinifier$VeinType;)I net/minecraft/world/level/levelgen/NoiseRouterData/lambda$overworld$0 (Lnet/minecraft/world/level/levelgen/OreVeinifier$VeinType;)I +MD: net/minecraft/world/level/levelgen/NoiseRouterData/m_224505_ (Lnet/minecraft/world/level/levelgen/DensityFunction;)Lnet/minecraft/world/level/levelgen/DensityFunction; net/minecraft/world/level/levelgen/NoiseRouterData/slideEnd (Lnet/minecraft/world/level/levelgen/DensityFunction;)Lnet/minecraft/world/level/levelgen/DensityFunction; +MD: net/minecraft/world/level/levelgen/NoiseRouterData/m_238384_ ()Lnet/minecraft/world/level/levelgen/NoiseRouter; net/minecraft/world/level/levelgen/NoiseRouterData/none ()Lnet/minecraft/world/level/levelgen/NoiseRouter; +MD: net/minecraft/world/level/levelgen/NoiseRouterData/m_254847_ (Lnet/minecraft/core/HolderGetter;)Lnet/minecraft/world/level/levelgen/DensityFunction; net/minecraft/world/level/levelgen/NoiseRouterData/spaghettiRoughnessFunction (Lnet/minecraft/core/HolderGetter;)Lnet/minecraft/world/level/levelgen/DensityFunction; +MD: net/minecraft/world/level/levelgen/NoiseRouterData/m_254860_ (Lnet/minecraft/core/HolderGetter;Lnet/minecraft/core/HolderGetter;)Lnet/minecraft/world/level/levelgen/NoiseRouter; net/minecraft/world/level/levelgen/NoiseRouterData/floatingIslands (Lnet/minecraft/core/HolderGetter;Lnet/minecraft/core/HolderGetter;)Lnet/minecraft/world/level/levelgen/NoiseRouter; +MD: net/minecraft/world/level/levelgen/NoiseRouterData/m_254915_ (Lnet/minecraft/core/HolderGetter;II)Lnet/minecraft/world/level/levelgen/DensityFunction; net/minecraft/world/level/levelgen/NoiseRouterData/slideNetherLike (Lnet/minecraft/core/HolderGetter;II)Lnet/minecraft/world/level/levelgen/DensityFunction; +MD: net/minecraft/world/level/levelgen/NoiseRouterData/m_254999_ (Lnet/minecraft/core/HolderGetter;Lnet/minecraft/core/HolderGetter;Lnet/minecraft/world/level/levelgen/DensityFunction;)Lnet/minecraft/world/level/levelgen/NoiseRouter; net/minecraft/world/level/levelgen/NoiseRouterData/noNewCaves (Lnet/minecraft/core/HolderGetter;Lnet/minecraft/core/HolderGetter;Lnet/minecraft/world/level/levelgen/DensityFunction;)Lnet/minecraft/world/level/levelgen/NoiseRouter; +MD: net/minecraft/world/level/levelgen/NoiseRouterData/m_255020_ (Lnet/minecraft/core/HolderGetter;Lnet/minecraft/core/HolderGetter;)Lnet/minecraft/world/level/levelgen/NoiseRouter; net/minecraft/world/level/levelgen/NoiseRouterData/caves (Lnet/minecraft/core/HolderGetter;Lnet/minecraft/core/HolderGetter;)Lnet/minecraft/world/level/levelgen/NoiseRouter; +MD: net/minecraft/world/level/levelgen/NoiseRouterData/m_255104_ (Lnet/minecraft/core/HolderGetter;)Lnet/minecraft/world/level/levelgen/NoiseRouter; net/minecraft/world/level/levelgen/NoiseRouterData/end (Lnet/minecraft/core/HolderGetter;)Lnet/minecraft/world/level/levelgen/NoiseRouter; +MD: net/minecraft/world/level/levelgen/NoiseRouterData/m_255105_ (Lnet/minecraft/data/worldgen/BootstapContext;Lnet/minecraft/resources/ResourceKey;Lnet/minecraft/world/level/levelgen/DensityFunction;)Lnet/minecraft/world/level/levelgen/DensityFunction; net/minecraft/world/level/levelgen/NoiseRouterData/registerAndWrap (Lnet/minecraft/data/worldgen/BootstapContext;Lnet/minecraft/resources/ResourceKey;Lnet/minecraft/world/level/levelgen/DensityFunction;)Lnet/minecraft/world/level/levelgen/DensityFunction; +MD: net/minecraft/world/level/levelgen/NoiseRouterData/m_255130_ (Lnet/minecraft/core/HolderGetter;Lnet/minecraft/core/HolderGetter;)Lnet/minecraft/world/level/levelgen/DensityFunction; net/minecraft/world/level/levelgen/NoiseRouterData/spaghetti2D (Lnet/minecraft/core/HolderGetter;Lnet/minecraft/core/HolderGetter;)Lnet/minecraft/world/level/levelgen/DensityFunction; +MD: net/minecraft/world/level/levelgen/NoiseRouterData/m_255167_ (Lnet/minecraft/core/HolderGetter;)Lnet/minecraft/world/level/levelgen/DensityFunction; net/minecraft/world/level/levelgen/NoiseRouterData/pillars (Lnet/minecraft/core/HolderGetter;)Lnet/minecraft/world/level/levelgen/DensityFunction; +MD: net/minecraft/world/level/levelgen/NoiseRouterData/m_255262_ (Lnet/minecraft/core/HolderGetter;Lnet/minecraft/core/HolderGetter;ZZ)Lnet/minecraft/world/level/levelgen/NoiseRouter; net/minecraft/world/level/levelgen/NoiseRouterData/overworld (Lnet/minecraft/core/HolderGetter;Lnet/minecraft/core/HolderGetter;ZZ)Lnet/minecraft/world/level/levelgen/NoiseRouter; +MD: net/minecraft/world/level/levelgen/NoiseRouterData/m_255275_ (Lnet/minecraft/core/HolderGetter;Lnet/minecraft/core/HolderGetter;)Lnet/minecraft/world/level/levelgen/DensityFunction; net/minecraft/world/level/levelgen/NoiseRouterData/entrances (Lnet/minecraft/core/HolderGetter;Lnet/minecraft/core/HolderGetter;)Lnet/minecraft/world/level/levelgen/DensityFunction; +MD: net/minecraft/world/level/levelgen/NoiseRouterData/m_255288_ (Lnet/minecraft/data/worldgen/BootstapContext;)Lnet/minecraft/core/Holder; net/minecraft/world/level/levelgen/NoiseRouterData/bootstrap (Lnet/minecraft/data/worldgen/BootstapContext;)Lnet/minecraft/core/Holder; +MD: net/minecraft/world/level/levelgen/NoiseRouterData/m_255300_ (Lnet/minecraft/core/HolderGetter;Lnet/minecraft/core/HolderGetter;)Lnet/minecraft/world/level/levelgen/DensityFunction; net/minecraft/world/level/levelgen/NoiseRouterData/noodle (Lnet/minecraft/core/HolderGetter;Lnet/minecraft/core/HolderGetter;)Lnet/minecraft/world/level/levelgen/DensityFunction; +MD: net/minecraft/world/level/levelgen/NoiseRouterData/m_255355_ (Lnet/minecraft/core/HolderGetter;Lnet/minecraft/core/HolderGetter;Lnet/minecraft/world/level/levelgen/DensityFunction;)Lnet/minecraft/world/level/levelgen/DensityFunction; net/minecraft/world/level/levelgen/NoiseRouterData/underground (Lnet/minecraft/core/HolderGetter;Lnet/minecraft/core/HolderGetter;Lnet/minecraft/world/level/levelgen/DensityFunction;)Lnet/minecraft/world/level/levelgen/DensityFunction; +MD: net/minecraft/world/level/levelgen/NoiseRouterData/m_255403_ (Lnet/minecraft/core/HolderGetter;Lnet/minecraft/resources/ResourceKey;)Lnet/minecraft/world/level/levelgen/DensityFunction; net/minecraft/world/level/levelgen/NoiseRouterData/getFunction (Lnet/minecraft/core/HolderGetter;Lnet/minecraft/resources/ResourceKey;)Lnet/minecraft/world/level/levelgen/DensityFunction; +MD: net/minecraft/world/level/levelgen/NoiseRouterData/m_255404_ (Lnet/minecraft/core/HolderGetter;Lnet/minecraft/core/HolderGetter;)Lnet/minecraft/world/level/levelgen/NoiseRouter; net/minecraft/world/level/levelgen/NoiseRouterData/nether (Lnet/minecraft/core/HolderGetter;Lnet/minecraft/core/HolderGetter;)Lnet/minecraft/world/level/levelgen/NoiseRouter; +MD: net/minecraft/world/level/levelgen/NoiseRouterData$QuantizedSpaghettiRarity/ ()V net/minecraft/world/level/levelgen/NoiseRouterData$QuantizedSpaghettiRarity/ ()V +MD: net/minecraft/world/level/levelgen/NoiseRouterData$QuantizedSpaghettiRarity/m_209563_ (D)D net/minecraft/world/level/levelgen/NoiseRouterData$QuantizedSpaghettiRarity/getSphaghettiRarity2D (D)D +MD: net/minecraft/world/level/levelgen/NoiseRouterData$QuantizedSpaghettiRarity/m_209565_ (D)D net/minecraft/world/level/levelgen/NoiseRouterData$QuantizedSpaghettiRarity/getSpaghettiRarity3D (D)D +MD: net/minecraft/world/level/levelgen/NoiseSettings/ ()V net/minecraft/world/level/levelgen/NoiseSettings/ ()V +MD: net/minecraft/world/level/levelgen/NoiseSettings/ (IIII)V net/minecraft/world/level/levelgen/NoiseSettings/ (IIII)V +MD: net/minecraft/world/level/levelgen/NoiseSettings/equals (Ljava/lang/Object;)Z net/minecraft/world/level/levelgen/NoiseSettings/equals (Ljava/lang/Object;)Z +MD: net/minecraft/world/level/levelgen/NoiseSettings/f_158688_ ()I net/minecraft/world/level/levelgen/NoiseSettings/minY ()I +MD: net/minecraft/world/level/levelgen/NoiseSettings/f_64508_ ()I net/minecraft/world/level/levelgen/NoiseSettings/height ()I +MD: net/minecraft/world/level/levelgen/NoiseSettings/f_64512_ ()I net/minecraft/world/level/levelgen/NoiseSettings/noiseSizeHorizontal ()I +MD: net/minecraft/world/level/levelgen/NoiseSettings/f_64513_ ()I net/minecraft/world/level/levelgen/NoiseSettings/noiseSizeVertical ()I +MD: net/minecraft/world/level/levelgen/NoiseSettings/hashCode ()I net/minecraft/world/level/levelgen/NoiseSettings/hashCode ()I +MD: net/minecraft/world/level/levelgen/NoiseSettings/m_158718_ (Lcom/mojang/serialization/DataResult$PartialResult;)V net/minecraft/world/level/levelgen/NoiseSettings/lambda$create$4 (Lcom/mojang/serialization/DataResult$PartialResult;)V +MD: net/minecraft/world/level/levelgen/NoiseSettings/m_158720_ (Lnet/minecraft/world/level/levelgen/NoiseSettings;)Lcom/mojang/serialization/DataResult; net/minecraft/world/level/levelgen/NoiseSettings/guardY (Lnet/minecraft/world/level/levelgen/NoiseSettings;)Lcom/mojang/serialization/DataResult; +MD: net/minecraft/world/level/levelgen/NoiseSettings/m_189212_ ()I net/minecraft/world/level/levelgen/NoiseSettings/getCellHeight ()I +MD: net/minecraft/world/level/levelgen/NoiseSettings/m_189213_ ()I net/minecraft/world/level/levelgen/NoiseSettings/getCellWidth ()I +MD: net/minecraft/world/level/levelgen/NoiseSettings/m_224525_ (IIII)Lnet/minecraft/world/level/levelgen/NoiseSettings; net/minecraft/world/level/levelgen/NoiseSettings/create (IIII)Lnet/minecraft/world/level/levelgen/NoiseSettings; +MD: net/minecraft/world/level/levelgen/NoiseSettings/m_224530_ (Lnet/minecraft/world/level/LevelHeightAccessor;)Lnet/minecraft/world/level/levelgen/NoiseSettings; net/minecraft/world/level/levelgen/NoiseSettings/clampToHeightAccessor (Lnet/minecraft/world/level/LevelHeightAccessor;)Lnet/minecraft/world/level/levelgen/NoiseSettings; +MD: net/minecraft/world/level/levelgen/NoiseSettings/m_274284_ ()Ljava/lang/String; net/minecraft/world/level/levelgen/NoiseSettings/lambda$guardY$2 ()Ljava/lang/String; +MD: net/minecraft/world/level/levelgen/NoiseSettings/m_274285_ ()Ljava/lang/String; net/minecraft/world/level/levelgen/NoiseSettings/lambda$guardY$1 ()Ljava/lang/String; +MD: net/minecraft/world/level/levelgen/NoiseSettings/m_274286_ ()Ljava/lang/String; net/minecraft/world/level/levelgen/NoiseSettings/lambda$guardY$3 ()Ljava/lang/String; +MD: net/minecraft/world/level/levelgen/NoiseSettings/m_64535_ (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/world/level/levelgen/NoiseSettings/lambda$static$0 (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/world/level/levelgen/NoiseSettings/toString ()Ljava/lang/String; net/minecraft/world/level/levelgen/NoiseSettings/toString ()Ljava/lang/String; +MD: net/minecraft/world/level/levelgen/Noises/ ()V net/minecraft/world/level/levelgen/Noises/ ()V +MD: net/minecraft/world/level/levelgen/Noises/ ()V net/minecraft/world/level/levelgen/Noises/ ()V +MD: net/minecraft/world/level/levelgen/Noises/m_189309_ (Ljava/lang/String;)Lnet/minecraft/resources/ResourceKey; net/minecraft/world/level/levelgen/Noises/createKey (Ljava/lang/String;)Lnet/minecraft/resources/ResourceKey; +MD: net/minecraft/world/level/levelgen/Noises/m_255421_ (Lnet/minecraft/core/HolderGetter;Lnet/minecraft/world/level/levelgen/PositionalRandomFactory;Lnet/minecraft/resources/ResourceKey;)Lnet/minecraft/world/level/levelgen/synth/NormalNoise; net/minecraft/world/level/levelgen/Noises/instantiate (Lnet/minecraft/core/HolderGetter;Lnet/minecraft/world/level/levelgen/PositionalRandomFactory;Lnet/minecraft/resources/ResourceKey;)Lnet/minecraft/world/level/levelgen/synth/NormalNoise; +MD: net/minecraft/world/level/levelgen/OreVeinifier/ ()V net/minecraft/world/level/levelgen/OreVeinifier/ ()V +MD: net/minecraft/world/level/levelgen/OreVeinifier/m_209660_ (Lnet/minecraft/world/level/levelgen/DensityFunction;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/levelgen/PositionalRandomFactory;Lnet/minecraft/world/level/levelgen/DensityFunction;Lnet/minecraft/world/level/levelgen/DensityFunction;Lnet/minecraft/world/level/levelgen/DensityFunction$FunctionContext;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/levelgen/OreVeinifier/lambda$create$0 (Lnet/minecraft/world/level/levelgen/DensityFunction;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/levelgen/PositionalRandomFactory;Lnet/minecraft/world/level/levelgen/DensityFunction;Lnet/minecraft/world/level/levelgen/DensityFunction;Lnet/minecraft/world/level/levelgen/DensityFunction$FunctionContext;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/levelgen/OreVeinifier/m_209667_ (Lnet/minecraft/world/level/levelgen/DensityFunction;Lnet/minecraft/world/level/levelgen/DensityFunction;Lnet/minecraft/world/level/levelgen/DensityFunction;Lnet/minecraft/world/level/levelgen/PositionalRandomFactory;)Lnet/minecraft/world/level/levelgen/NoiseChunk$BlockStateFiller; net/minecraft/world/level/levelgen/OreVeinifier/create (Lnet/minecraft/world/level/levelgen/DensityFunction;Lnet/minecraft/world/level/levelgen/DensityFunction;Lnet/minecraft/world/level/levelgen/DensityFunction;Lnet/minecraft/world/level/levelgen/PositionalRandomFactory;)Lnet/minecraft/world/level/levelgen/NoiseChunk$BlockStateFiller; +MD: net/minecraft/world/level/levelgen/OreVeinifier$VeinType/ ()V net/minecraft/world/level/levelgen/OreVeinifier$VeinType/ ()V +MD: net/minecraft/world/level/levelgen/OreVeinifier$VeinType/ (Ljava/lang/String;ILnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/state/BlockState;II)V net/minecraft/world/level/levelgen/OreVeinifier$VeinType/ (Ljava/lang/String;ILnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/state/BlockState;II)V +MD: net/minecraft/world/level/levelgen/OreVeinifier$VeinType/m_209689_ ()[Lnet/minecraft/world/level/levelgen/OreVeinifier$VeinType; net/minecraft/world/level/levelgen/OreVeinifier$VeinType/$values ()[Lnet/minecraft/world/level/levelgen/OreVeinifier$VeinType; +MD: net/minecraft/world/level/levelgen/OreVeinifier$VeinType/valueOf (Ljava/lang/String;)Lnet/minecraft/world/level/levelgen/OreVeinifier$VeinType; net/minecraft/world/level/levelgen/OreVeinifier$VeinType/valueOf (Ljava/lang/String;)Lnet/minecraft/world/level/levelgen/OreVeinifier$VeinType; +MD: net/minecraft/world/level/levelgen/OreVeinifier$VeinType/values ()[Lnet/minecraft/world/level/levelgen/OreVeinifier$VeinType; net/minecraft/world/level/levelgen/OreVeinifier$VeinType/values ()[Lnet/minecraft/world/level/levelgen/OreVeinifier$VeinType; +MD: net/minecraft/world/level/levelgen/PatrolSpawner/ ()V net/minecraft/world/level/levelgen/PatrolSpawner/ ()V +MD: net/minecraft/world/level/levelgen/PatrolSpawner/m_224532_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;Z)Z net/minecraft/world/level/levelgen/PatrolSpawner/spawnPatrolMember (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;Z)Z +MD: net/minecraft/world/level/levelgen/PatrolSpawner/m_7995_ (Lnet/minecraft/server/level/ServerLevel;ZZ)I net/minecraft/world/level/levelgen/PatrolSpawner/tick (Lnet/minecraft/server/level/ServerLevel;ZZ)I +MD: net/minecraft/world/level/levelgen/PhantomSpawner/ ()V net/minecraft/world/level/levelgen/PhantomSpawner/ ()V +MD: net/minecraft/world/level/levelgen/PhantomSpawner/m_7995_ (Lnet/minecraft/server/level/ServerLevel;ZZ)I net/minecraft/world/level/levelgen/PhantomSpawner/tick (Lnet/minecraft/server/level/ServerLevel;ZZ)I +MD: net/minecraft/world/level/levelgen/PositionalRandomFactory/m_183502_ (Ljava/lang/StringBuilder;)V net/minecraft/world/level/levelgen/PositionalRandomFactory/parityConfigString (Ljava/lang/StringBuilder;)V +MD: net/minecraft/world/level/levelgen/PositionalRandomFactory/m_213715_ (III)Lnet/minecraft/util/RandomSource; net/minecraft/world/level/levelgen/PositionalRandomFactory/at (III)Lnet/minecraft/util/RandomSource; +MD: net/minecraft/world/level/levelgen/PositionalRandomFactory/m_214111_ (Ljava/lang/String;)Lnet/minecraft/util/RandomSource; net/minecraft/world/level/levelgen/PositionalRandomFactory/fromHashOf (Ljava/lang/String;)Lnet/minecraft/util/RandomSource; +MD: net/minecraft/world/level/levelgen/PositionalRandomFactory/m_224540_ (Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/util/RandomSource; net/minecraft/world/level/levelgen/PositionalRandomFactory/fromHashOf (Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/util/RandomSource; +MD: net/minecraft/world/level/levelgen/PositionalRandomFactory/m_224542_ (Lnet/minecraft/core/BlockPos;)Lnet/minecraft/util/RandomSource; net/minecraft/world/level/levelgen/PositionalRandomFactory/at (Lnet/minecraft/core/BlockPos;)Lnet/minecraft/util/RandomSource; +MD: net/minecraft/world/level/levelgen/RandomState/ (Lnet/minecraft/world/level/levelgen/NoiseGeneratorSettings;Lnet/minecraft/core/HolderGetter;J)V net/minecraft/world/level/levelgen/RandomState/ (Lnet/minecraft/world/level/levelgen/NoiseGeneratorSettings;Lnet/minecraft/core/HolderGetter;J)V +MD: net/minecraft/world/level/levelgen/RandomState/m_224560_ (Lnet/minecraft/resources/ResourceKey;)Lnet/minecraft/world/level/levelgen/synth/NormalNoise; net/minecraft/world/level/levelgen/RandomState/getOrCreateNoise (Lnet/minecraft/resources/ResourceKey;)Lnet/minecraft/world/level/levelgen/synth/NormalNoise; +MD: net/minecraft/world/level/levelgen/RandomState/m_224565_ (Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/world/level/levelgen/PositionalRandomFactory; net/minecraft/world/level/levelgen/RandomState/getOrCreateRandomFactory (Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/world/level/levelgen/PositionalRandomFactory; +MD: net/minecraft/world/level/levelgen/RandomState/m_224567_ (Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/world/level/levelgen/PositionalRandomFactory; net/minecraft/world/level/levelgen/RandomState/lambda$getOrCreateRandomFactory$1 (Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/world/level/levelgen/PositionalRandomFactory; +MD: net/minecraft/world/level/levelgen/RandomState/m_224578_ ()Lnet/minecraft/world/level/levelgen/NoiseRouter; net/minecraft/world/level/levelgen/RandomState/router ()Lnet/minecraft/world/level/levelgen/NoiseRouter; +MD: net/minecraft/world/level/levelgen/RandomState/m_224579_ ()Lnet/minecraft/world/level/biome/Climate$Sampler; net/minecraft/world/level/levelgen/RandomState/sampler ()Lnet/minecraft/world/level/biome/Climate$Sampler; +MD: net/minecraft/world/level/levelgen/RandomState/m_224580_ ()Lnet/minecraft/world/level/levelgen/SurfaceSystem; net/minecraft/world/level/levelgen/RandomState/surfaceSystem ()Lnet/minecraft/world/level/levelgen/SurfaceSystem; +MD: net/minecraft/world/level/levelgen/RandomState/m_224581_ ()Lnet/minecraft/world/level/levelgen/PositionalRandomFactory; net/minecraft/world/level/levelgen/RandomState/aquiferRandom ()Lnet/minecraft/world/level/levelgen/PositionalRandomFactory; +MD: net/minecraft/world/level/levelgen/RandomState/m_224582_ ()Lnet/minecraft/world/level/levelgen/PositionalRandomFactory; net/minecraft/world/level/levelgen/RandomState/oreRandom ()Lnet/minecraft/world/level/levelgen/PositionalRandomFactory; +MD: net/minecraft/world/level/levelgen/RandomState/m_254822_ (Lnet/minecraft/resources/ResourceKey;Lnet/minecraft/resources/ResourceKey;)Lnet/minecraft/world/level/levelgen/synth/NormalNoise; net/minecraft/world/level/levelgen/RandomState/lambda$getOrCreateNoise$0 (Lnet/minecraft/resources/ResourceKey;Lnet/minecraft/resources/ResourceKey;)Lnet/minecraft/world/level/levelgen/synth/NormalNoise; +MD: net/minecraft/world/level/levelgen/RandomState/m_255077_ (Lnet/minecraft/core/HolderGetter$Provider;Lnet/minecraft/resources/ResourceKey;J)Lnet/minecraft/world/level/levelgen/RandomState; net/minecraft/world/level/levelgen/RandomState/create (Lnet/minecraft/core/HolderGetter$Provider;Lnet/minecraft/resources/ResourceKey;J)Lnet/minecraft/world/level/levelgen/RandomState; +MD: net/minecraft/world/level/levelgen/RandomState/m_255302_ (Lnet/minecraft/world/level/levelgen/NoiseGeneratorSettings;Lnet/minecraft/core/HolderGetter;J)Lnet/minecraft/world/level/levelgen/RandomState; net/minecraft/world/level/levelgen/RandomState/create (Lnet/minecraft/world/level/levelgen/NoiseGeneratorSettings;Lnet/minecraft/core/HolderGetter;J)Lnet/minecraft/world/level/levelgen/RandomState; +MD: net/minecraft/world/level/levelgen/RandomState$1/ (Lnet/minecraft/world/level/levelgen/RandomState;)V net/minecraft/world/level/levelgen/RandomState$1/ (Lnet/minecraft/world/level/levelgen/RandomState;)V +MD: net/minecraft/world/level/levelgen/RandomState$1/m_214017_ (Lnet/minecraft/world/level/levelgen/DensityFunction;)Lnet/minecraft/world/level/levelgen/DensityFunction; net/minecraft/world/level/levelgen/RandomState$1/apply (Lnet/minecraft/world/level/levelgen/DensityFunction;)Lnet/minecraft/world/level/levelgen/DensityFunction; +MD: net/minecraft/world/level/levelgen/RandomState$1/m_246139_ (Lnet/minecraft/world/level/levelgen/DensityFunction;)Lnet/minecraft/world/level/levelgen/DensityFunction; net/minecraft/world/level/levelgen/RandomState$1/wrapNew (Lnet/minecraft/world/level/levelgen/DensityFunction;)Lnet/minecraft/world/level/levelgen/DensityFunction; +MD: net/minecraft/world/level/levelgen/RandomState$1NoiseWiringHelper/ (Lnet/minecraft/world/level/levelgen/RandomState;JZ)V net/minecraft/world/level/levelgen/RandomState$1NoiseWiringHelper/ (Lnet/minecraft/world/level/levelgen/RandomState;JZ)V +MD: net/minecraft/world/level/levelgen/RandomState$1NoiseWiringHelper/m_213918_ (Lnet/minecraft/world/level/levelgen/DensityFunction$NoiseHolder;)Lnet/minecraft/world/level/levelgen/DensityFunction$NoiseHolder; net/minecraft/world/level/levelgen/RandomState$1NoiseWiringHelper/visitNoise (Lnet/minecraft/world/level/levelgen/DensityFunction$NoiseHolder;)Lnet/minecraft/world/level/levelgen/DensityFunction$NoiseHolder; +MD: net/minecraft/world/level/levelgen/RandomState$1NoiseWiringHelper/m_214017_ (Lnet/minecraft/world/level/levelgen/DensityFunction;)Lnet/minecraft/world/level/levelgen/DensityFunction; net/minecraft/world/level/levelgen/RandomState$1NoiseWiringHelper/apply (Lnet/minecraft/world/level/levelgen/DensityFunction;)Lnet/minecraft/world/level/levelgen/DensityFunction; +MD: net/minecraft/world/level/levelgen/RandomState$1NoiseWiringHelper/m_224591_ (J)Lnet/minecraft/util/RandomSource; net/minecraft/world/level/levelgen/RandomState$1NoiseWiringHelper/newLegacyInstance (J)Lnet/minecraft/util/RandomSource; +MD: net/minecraft/world/level/levelgen/RandomState$1NoiseWiringHelper/m_224595_ (Lnet/minecraft/world/level/levelgen/DensityFunction;)Lnet/minecraft/world/level/levelgen/DensityFunction; net/minecraft/world/level/levelgen/RandomState$1NoiseWiringHelper/wrapNew (Lnet/minecraft/world/level/levelgen/DensityFunction;)Lnet/minecraft/world/level/levelgen/DensityFunction; +MD: net/minecraft/world/level/levelgen/RandomSupport/ ()V net/minecraft/world/level/levelgen/RandomSupport/ ()V +MD: net/minecraft/world/level/levelgen/RandomSupport/ ()V net/minecraft/world/level/levelgen/RandomSupport/ ()V +MD: net/minecraft/world/level/levelgen/RandomSupport/m_189329_ (J)J net/minecraft/world/level/levelgen/RandomSupport/mixStafford13 (J)J +MD: net/minecraft/world/level/levelgen/RandomSupport/m_189331_ (J)Lnet/minecraft/world/level/levelgen/RandomSupport$Seed128bit; net/minecraft/world/level/levelgen/RandomSupport/upgradeSeedTo128bit (J)Lnet/minecraft/world/level/levelgen/RandomSupport$Seed128bit; +MD: net/minecraft/world/level/levelgen/RandomSupport/m_224599_ ()J net/minecraft/world/level/levelgen/RandomSupport/generateUniqueSeed ()J +MD: net/minecraft/world/level/levelgen/RandomSupport/m_224600_ (J)J net/minecraft/world/level/levelgen/RandomSupport/lambda$generateUniqueSeed$0 (J)J +MD: net/minecraft/world/level/levelgen/RandomSupport/m_288212_ (Ljava/lang/String;)Lnet/minecraft/world/level/levelgen/RandomSupport$Seed128bit; net/minecraft/world/level/levelgen/RandomSupport/seedFromHashOf (Ljava/lang/String;)Lnet/minecraft/world/level/levelgen/RandomSupport$Seed128bit; +MD: net/minecraft/world/level/levelgen/RandomSupport/m_289611_ (J)Lnet/minecraft/world/level/levelgen/RandomSupport$Seed128bit; net/minecraft/world/level/levelgen/RandomSupport/upgradeSeedTo128bitUnmixed (J)Lnet/minecraft/world/level/levelgen/RandomSupport$Seed128bit; +MD: net/minecraft/world/level/levelgen/RandomSupport$Seed128bit/ (JJ)V net/minecraft/world/level/levelgen/RandomSupport$Seed128bit/ (JJ)V +MD: net/minecraft/world/level/levelgen/RandomSupport$Seed128bit/equals (Ljava/lang/Object;)Z net/minecraft/world/level/levelgen/RandomSupport$Seed128bit/equals (Ljava/lang/Object;)Z +MD: net/minecraft/world/level/levelgen/RandomSupport$Seed128bit/f_189335_ ()J net/minecraft/world/level/levelgen/RandomSupport$Seed128bit/seedLo ()J +MD: net/minecraft/world/level/levelgen/RandomSupport$Seed128bit/f_189336_ ()J net/minecraft/world/level/levelgen/RandomSupport$Seed128bit/seedHi ()J +MD: net/minecraft/world/level/levelgen/RandomSupport$Seed128bit/hashCode ()I net/minecraft/world/level/levelgen/RandomSupport$Seed128bit/hashCode ()I +MD: net/minecraft/world/level/levelgen/RandomSupport$Seed128bit/m_288194_ (JJ)Lnet/minecraft/world/level/levelgen/RandomSupport$Seed128bit; net/minecraft/world/level/levelgen/RandomSupport$Seed128bit/xor (JJ)Lnet/minecraft/world/level/levelgen/RandomSupport$Seed128bit; +MD: net/minecraft/world/level/levelgen/RandomSupport$Seed128bit/m_288205_ (Lnet/minecraft/world/level/levelgen/RandomSupport$Seed128bit;)Lnet/minecraft/world/level/levelgen/RandomSupport$Seed128bit; net/minecraft/world/level/levelgen/RandomSupport$Seed128bit/xor (Lnet/minecraft/world/level/levelgen/RandomSupport$Seed128bit;)Lnet/minecraft/world/level/levelgen/RandomSupport$Seed128bit; +MD: net/minecraft/world/level/levelgen/RandomSupport$Seed128bit/m_289608_ ()Lnet/minecraft/world/level/levelgen/RandomSupport$Seed128bit; net/minecraft/world/level/levelgen/RandomSupport$Seed128bit/mixed ()Lnet/minecraft/world/level/levelgen/RandomSupport$Seed128bit; +MD: net/minecraft/world/level/levelgen/RandomSupport$Seed128bit/toString ()Ljava/lang/String; net/minecraft/world/level/levelgen/RandomSupport$Seed128bit/toString ()Ljava/lang/String; +MD: net/minecraft/world/level/levelgen/SingleThreadedRandomSource/ (J)V net/minecraft/world/level/levelgen/SingleThreadedRandomSource/ (J)V +MD: net/minecraft/world/level/levelgen/SingleThreadedRandomSource/m_188582_ ()Lnet/minecraft/world/level/levelgen/PositionalRandomFactory; net/minecraft/world/level/levelgen/SingleThreadedRandomSource/forkPositional ()Lnet/minecraft/world/level/levelgen/PositionalRandomFactory; +MD: net/minecraft/world/level/levelgen/SingleThreadedRandomSource/m_188583_ ()D net/minecraft/world/level/levelgen/SingleThreadedRandomSource/nextGaussian ()D +MD: net/minecraft/world/level/levelgen/SingleThreadedRandomSource/m_188584_ (J)V net/minecraft/world/level/levelgen/SingleThreadedRandomSource/setSeed (J)V +MD: net/minecraft/world/level/levelgen/SingleThreadedRandomSource/m_213769_ ()Lnet/minecraft/util/RandomSource; net/minecraft/world/level/levelgen/SingleThreadedRandomSource/fork ()Lnet/minecraft/util/RandomSource; +MD: net/minecraft/world/level/levelgen/SingleThreadedRandomSource/m_64707_ (I)I net/minecraft/world/level/levelgen/SingleThreadedRandomSource/next (I)I +MD: net/minecraft/world/level/levelgen/SurfaceRules/ ()V net/minecraft/world/level/levelgen/SurfaceRules/ ()V +MD: net/minecraft/world/level/levelgen/SurfaceRules/ ()V net/minecraft/world/level/levelgen/SurfaceRules/ ()V +MD: net/minecraft/world/level/levelgen/SurfaceRules/m_189381_ ()Lnet/minecraft/world/level/levelgen/SurfaceRules$ConditionSource; net/minecraft/world/level/levelgen/SurfaceRules/steep ()Lnet/minecraft/world/level/levelgen/SurfaceRules$ConditionSource; +MD: net/minecraft/world/level/levelgen/SurfaceRules/m_189382_ (II)Lnet/minecraft/world/level/levelgen/SurfaceRules$ConditionSource; net/minecraft/world/level/levelgen/SurfaceRules/waterBlockCheck (II)Lnet/minecraft/world/level/levelgen/SurfaceRules$ConditionSource; +MD: net/minecraft/world/level/levelgen/SurfaceRules/m_189390_ (Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/levelgen/SurfaceRules$RuleSource; net/minecraft/world/level/levelgen/SurfaceRules/state (Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/levelgen/SurfaceRules$RuleSource; +MD: net/minecraft/world/level/levelgen/SurfaceRules/m_189392_ (Lnet/minecraft/world/level/levelgen/SurfaceRules$ConditionSource;)Lnet/minecraft/world/level/levelgen/SurfaceRules$ConditionSource; net/minecraft/world/level/levelgen/SurfaceRules/not (Lnet/minecraft/world/level/levelgen/SurfaceRules$ConditionSource;)Lnet/minecraft/world/level/levelgen/SurfaceRules$ConditionSource; +MD: net/minecraft/world/level/levelgen/SurfaceRules/m_189394_ (Lnet/minecraft/world/level/levelgen/SurfaceRules$ConditionSource;Lnet/minecraft/world/level/levelgen/SurfaceRules$RuleSource;)Lnet/minecraft/world/level/levelgen/SurfaceRules$RuleSource; net/minecraft/world/level/levelgen/SurfaceRules/ifTrue (Lnet/minecraft/world/level/levelgen/SurfaceRules$ConditionSource;Lnet/minecraft/world/level/levelgen/SurfaceRules$RuleSource;)Lnet/minecraft/world/level/levelgen/SurfaceRules$RuleSource; +MD: net/minecraft/world/level/levelgen/SurfaceRules/m_189400_ (Lnet/minecraft/world/level/levelgen/VerticalAnchor;I)Lnet/minecraft/world/level/levelgen/SurfaceRules$ConditionSource; net/minecraft/world/level/levelgen/SurfaceRules/yBlockCheck (Lnet/minecraft/world/level/levelgen/VerticalAnchor;I)Lnet/minecraft/world/level/levelgen/SurfaceRules$ConditionSource; +MD: net/minecraft/world/level/levelgen/SurfaceRules/m_189403_ (Ljava/lang/String;Lnet/minecraft/world/level/levelgen/VerticalAnchor;Lnet/minecraft/world/level/levelgen/VerticalAnchor;)Lnet/minecraft/world/level/levelgen/SurfaceRules$ConditionSource; net/minecraft/world/level/levelgen/SurfaceRules/verticalGradient (Ljava/lang/String;Lnet/minecraft/world/level/levelgen/VerticalAnchor;Lnet/minecraft/world/level/levelgen/VerticalAnchor;)Lnet/minecraft/world/level/levelgen/SurfaceRules$ConditionSource; +MD: net/minecraft/world/level/levelgen/SurfaceRules/m_189407_ (Ljava/util/List;)Lnet/minecraft/world/level/levelgen/SurfaceRules$BiomeConditionSource; net/minecraft/world/level/levelgen/SurfaceRules/isBiome (Ljava/util/List;)Lnet/minecraft/world/level/levelgen/SurfaceRules$BiomeConditionSource; +MD: net/minecraft/world/level/levelgen/SurfaceRules/m_189409_ (Lnet/minecraft/resources/ResourceKey;D)Lnet/minecraft/world/level/levelgen/SurfaceRules$ConditionSource; net/minecraft/world/level/levelgen/SurfaceRules/noiseCondition (Lnet/minecraft/resources/ResourceKey;D)Lnet/minecraft/world/level/levelgen/SurfaceRules$ConditionSource; +MD: net/minecraft/world/level/levelgen/SurfaceRules/m_189412_ (Lnet/minecraft/resources/ResourceKey;DD)Lnet/minecraft/world/level/levelgen/SurfaceRules$ConditionSource; net/minecraft/world/level/levelgen/SurfaceRules/noiseCondition (Lnet/minecraft/resources/ResourceKey;DD)Lnet/minecraft/world/level/levelgen/SurfaceRules$ConditionSource; +MD: net/minecraft/world/level/levelgen/SurfaceRules/m_189416_ ([Lnet/minecraft/resources/ResourceKey;)Lnet/minecraft/world/level/levelgen/SurfaceRules$ConditionSource; net/minecraft/world/level/levelgen/SurfaceRules/isBiome ([Lnet/minecraft/resources/ResourceKey;)Lnet/minecraft/world/level/levelgen/SurfaceRules$ConditionSource; +MD: net/minecraft/world/level/levelgen/SurfaceRules/m_189418_ ()Lnet/minecraft/world/level/levelgen/SurfaceRules$ConditionSource; net/minecraft/world/level/levelgen/SurfaceRules/hole ()Lnet/minecraft/world/level/levelgen/SurfaceRules$ConditionSource; +MD: net/minecraft/world/level/levelgen/SurfaceRules/m_189419_ (II)Lnet/minecraft/world/level/levelgen/SurfaceRules$ConditionSource; net/minecraft/world/level/levelgen/SurfaceRules/waterStartCheck (II)Lnet/minecraft/world/level/levelgen/SurfaceRules$ConditionSource; +MD: net/minecraft/world/level/levelgen/SurfaceRules/m_189422_ (Lnet/minecraft/world/level/levelgen/VerticalAnchor;I)Lnet/minecraft/world/level/levelgen/SurfaceRules$ConditionSource; net/minecraft/world/level/levelgen/SurfaceRules/yStartCheck (Lnet/minecraft/world/level/levelgen/VerticalAnchor;I)Lnet/minecraft/world/level/levelgen/SurfaceRules$ConditionSource; +MD: net/minecraft/world/level/levelgen/SurfaceRules/m_189425_ ()Lnet/minecraft/world/level/levelgen/SurfaceRules$ConditionSource; net/minecraft/world/level/levelgen/SurfaceRules/abovePreliminarySurface ()Lnet/minecraft/world/level/levelgen/SurfaceRules$ConditionSource; +MD: net/minecraft/world/level/levelgen/SurfaceRules/m_189426_ ()Lnet/minecraft/world/level/levelgen/SurfaceRules$ConditionSource; net/minecraft/world/level/levelgen/SurfaceRules/temperature ()Lnet/minecraft/world/level/levelgen/SurfaceRules$ConditionSource; +MD: net/minecraft/world/level/levelgen/SurfaceRules/m_189427_ ()Lnet/minecraft/world/level/levelgen/SurfaceRules$RuleSource; net/minecraft/world/level/levelgen/SurfaceRules/bandlands ()Lnet/minecraft/world/level/levelgen/SurfaceRules$RuleSource; +MD: net/minecraft/world/level/levelgen/SurfaceRules/m_198272_ ([Lnet/minecraft/world/level/levelgen/SurfaceRules$RuleSource;)Lnet/minecraft/world/level/levelgen/SurfaceRules$RuleSource; net/minecraft/world/level/levelgen/SurfaceRules/sequence ([Lnet/minecraft/world/level/levelgen/SurfaceRules$RuleSource;)Lnet/minecraft/world/level/levelgen/SurfaceRules$RuleSource; +MD: net/minecraft/world/level/levelgen/SurfaceRules/m_202171_ (IZILnet/minecraft/world/level/levelgen/placement/CaveSurface;)Lnet/minecraft/world/level/levelgen/SurfaceRules$ConditionSource; net/minecraft/world/level/levelgen/SurfaceRules/stoneDepthCheck (IZILnet/minecraft/world/level/levelgen/placement/CaveSurface;)Lnet/minecraft/world/level/levelgen/SurfaceRules$ConditionSource; +MD: net/minecraft/world/level/levelgen/SurfaceRules/m_202176_ (IZLnet/minecraft/world/level/levelgen/placement/CaveSurface;)Lnet/minecraft/world/level/levelgen/SurfaceRules$ConditionSource; net/minecraft/world/level/levelgen/SurfaceRules/stoneDepthCheck (IZLnet/minecraft/world/level/levelgen/placement/CaveSurface;)Lnet/minecraft/world/level/levelgen/SurfaceRules$ConditionSource; +MD: net/minecraft/world/level/levelgen/SurfaceRules/m_224603_ (Lnet/minecraft/core/Registry;Ljava/lang/String;Lnet/minecraft/util/KeyDispatchDataCodec;)Lcom/mojang/serialization/Codec; net/minecraft/world/level/levelgen/SurfaceRules/register (Lnet/minecraft/core/Registry;Ljava/lang/String;Lnet/minecraft/util/KeyDispatchDataCodec;)Lcom/mojang/serialization/Codec; +MD: net/minecraft/world/level/levelgen/SurfaceRules$AbovePreliminarySurface/ ()V net/minecraft/world/level/levelgen/SurfaceRules$AbovePreliminarySurface/ ()V +MD: net/minecraft/world/level/levelgen/SurfaceRules$AbovePreliminarySurface/ (Ljava/lang/String;I)V net/minecraft/world/level/levelgen/SurfaceRules$AbovePreliminarySurface/ (Ljava/lang/String;I)V +MD: net/minecraft/world/level/levelgen/SurfaceRules$AbovePreliminarySurface/apply (Ljava/lang/Object;)Ljava/lang/Object; net/minecraft/world/level/levelgen/SurfaceRules$AbovePreliminarySurface/apply (Ljava/lang/Object;)Ljava/lang/Object; +MD: net/minecraft/world/level/levelgen/SurfaceRules$AbovePreliminarySurface/apply (Lnet/minecraft/world/level/levelgen/SurfaceRules$Context;)Lnet/minecraft/world/level/levelgen/SurfaceRules$Condition; net/minecraft/world/level/levelgen/SurfaceRules$AbovePreliminarySurface/apply (Lnet/minecraft/world/level/levelgen/SurfaceRules$Context;)Lnet/minecraft/world/level/levelgen/SurfaceRules$Condition; +MD: net/minecraft/world/level/levelgen/SurfaceRules$AbovePreliminarySurface/m_189440_ ()[Lnet/minecraft/world/level/levelgen/SurfaceRules$AbovePreliminarySurface; net/minecraft/world/level/levelgen/SurfaceRules$AbovePreliminarySurface/$values ()[Lnet/minecraft/world/level/levelgen/SurfaceRules$AbovePreliminarySurface; +MD: net/minecraft/world/level/levelgen/SurfaceRules$AbovePreliminarySurface/m_213794_ ()Lnet/minecraft/util/KeyDispatchDataCodec; net/minecraft/world/level/levelgen/SurfaceRules$AbovePreliminarySurface/codec ()Lnet/minecraft/util/KeyDispatchDataCodec; +MD: net/minecraft/world/level/levelgen/SurfaceRules$AbovePreliminarySurface/valueOf (Ljava/lang/String;)Lnet/minecraft/world/level/levelgen/SurfaceRules$AbovePreliminarySurface; net/minecraft/world/level/levelgen/SurfaceRules$AbovePreliminarySurface/valueOf (Ljava/lang/String;)Lnet/minecraft/world/level/levelgen/SurfaceRules$AbovePreliminarySurface; +MD: net/minecraft/world/level/levelgen/SurfaceRules$AbovePreliminarySurface/values ()[Lnet/minecraft/world/level/levelgen/SurfaceRules$AbovePreliminarySurface; net/minecraft/world/level/levelgen/SurfaceRules$AbovePreliminarySurface/values ()[Lnet/minecraft/world/level/levelgen/SurfaceRules$AbovePreliminarySurface; +MD: net/minecraft/world/level/levelgen/SurfaceRules$Bandlands/ ()V net/minecraft/world/level/levelgen/SurfaceRules$Bandlands/ ()V +MD: net/minecraft/world/level/levelgen/SurfaceRules$Bandlands/ (Ljava/lang/String;I)V net/minecraft/world/level/levelgen/SurfaceRules$Bandlands/ (Ljava/lang/String;I)V +MD: net/minecraft/world/level/levelgen/SurfaceRules$Bandlands/apply (Ljava/lang/Object;)Ljava/lang/Object; net/minecraft/world/level/levelgen/SurfaceRules$Bandlands/apply (Ljava/lang/Object;)Ljava/lang/Object; +MD: net/minecraft/world/level/levelgen/SurfaceRules$Bandlands/apply (Lnet/minecraft/world/level/levelgen/SurfaceRules$Context;)Lnet/minecraft/world/level/levelgen/SurfaceRules$SurfaceRule; net/minecraft/world/level/levelgen/SurfaceRules$Bandlands/apply (Lnet/minecraft/world/level/levelgen/SurfaceRules$Context;)Lnet/minecraft/world/level/levelgen/SurfaceRules$SurfaceRule; +MD: net/minecraft/world/level/levelgen/SurfaceRules$Bandlands/m_189485_ ()[Lnet/minecraft/world/level/levelgen/SurfaceRules$Bandlands; net/minecraft/world/level/levelgen/SurfaceRules$Bandlands/$values ()[Lnet/minecraft/world/level/levelgen/SurfaceRules$Bandlands; +MD: net/minecraft/world/level/levelgen/SurfaceRules$Bandlands/m_213795_ ()Lnet/minecraft/util/KeyDispatchDataCodec; net/minecraft/world/level/levelgen/SurfaceRules$Bandlands/codec ()Lnet/minecraft/util/KeyDispatchDataCodec; +MD: net/minecraft/world/level/levelgen/SurfaceRules$Bandlands/valueOf (Ljava/lang/String;)Lnet/minecraft/world/level/levelgen/SurfaceRules$Bandlands; net/minecraft/world/level/levelgen/SurfaceRules$Bandlands/valueOf (Ljava/lang/String;)Lnet/minecraft/world/level/levelgen/SurfaceRules$Bandlands; +MD: net/minecraft/world/level/levelgen/SurfaceRules$Bandlands/values ()[Lnet/minecraft/world/level/levelgen/SurfaceRules$Bandlands; net/minecraft/world/level/levelgen/SurfaceRules$Bandlands/values ()[Lnet/minecraft/world/level/levelgen/SurfaceRules$Bandlands; +MD: net/minecraft/world/level/levelgen/SurfaceRules$BiomeConditionSource/ ()V net/minecraft/world/level/levelgen/SurfaceRules$BiomeConditionSource/ ()V +MD: net/minecraft/world/level/levelgen/SurfaceRules$BiomeConditionSource/ (Ljava/util/List;)V net/minecraft/world/level/levelgen/SurfaceRules$BiomeConditionSource/ (Ljava/util/List;)V +MD: net/minecraft/world/level/levelgen/SurfaceRules$BiomeConditionSource/apply (Ljava/lang/Object;)Ljava/lang/Object; net/minecraft/world/level/levelgen/SurfaceRules$BiomeConditionSource/apply (Ljava/lang/Object;)Ljava/lang/Object; +MD: net/minecraft/world/level/levelgen/SurfaceRules$BiomeConditionSource/apply (Lnet/minecraft/world/level/levelgen/SurfaceRules$Context;)Lnet/minecraft/world/level/levelgen/SurfaceRules$Condition; net/minecraft/world/level/levelgen/SurfaceRules$BiomeConditionSource/apply (Lnet/minecraft/world/level/levelgen/SurfaceRules$Context;)Lnet/minecraft/world/level/levelgen/SurfaceRules$Condition; +MD: net/minecraft/world/level/levelgen/SurfaceRules$BiomeConditionSource/equals (Ljava/lang/Object;)Z net/minecraft/world/level/levelgen/SurfaceRules$BiomeConditionSource/equals (Ljava/lang/Object;)Z +MD: net/minecraft/world/level/levelgen/SurfaceRules$BiomeConditionSource/hashCode ()I net/minecraft/world/level/levelgen/SurfaceRules$BiomeConditionSource/hashCode ()I +MD: net/minecraft/world/level/levelgen/SurfaceRules$BiomeConditionSource/m_204619_ (Lnet/minecraft/world/level/levelgen/SurfaceRules$BiomeConditionSource;)Ljava/util/List; net/minecraft/world/level/levelgen/SurfaceRules$BiomeConditionSource/lambda$static$0 (Lnet/minecraft/world/level/levelgen/SurfaceRules$BiomeConditionSource;)Ljava/util/List; +MD: net/minecraft/world/level/levelgen/SurfaceRules$BiomeConditionSource/m_213794_ ()Lnet/minecraft/util/KeyDispatchDataCodec; net/minecraft/world/level/levelgen/SurfaceRules$BiomeConditionSource/codec ()Lnet/minecraft/util/KeyDispatchDataCodec; +MD: net/minecraft/world/level/levelgen/SurfaceRules$BiomeConditionSource/toString ()Ljava/lang/String; net/minecraft/world/level/levelgen/SurfaceRules$BiomeConditionSource/toString ()Ljava/lang/String; +MD: net/minecraft/world/level/levelgen/SurfaceRules$BiomeConditionSource$1BiomeCondition/ (Lnet/minecraft/world/level/levelgen/SurfaceRules$BiomeConditionSource;Lnet/minecraft/world/level/levelgen/SurfaceRules$Context;)V net/minecraft/world/level/levelgen/SurfaceRules$BiomeConditionSource$1BiomeCondition/ (Lnet/minecraft/world/level/levelgen/SurfaceRules$BiomeConditionSource;Lnet/minecraft/world/level/levelgen/SurfaceRules$Context;)V +MD: net/minecraft/world/level/levelgen/SurfaceRules$BiomeConditionSource$1BiomeCondition/m_183479_ ()Z net/minecraft/world/level/levelgen/SurfaceRules$BiomeConditionSource$1BiomeCondition/compute ()Z +MD: net/minecraft/world/level/levelgen/SurfaceRules$BlockRuleSource/ ()V net/minecraft/world/level/levelgen/SurfaceRules$BlockRuleSource/ ()V +MD: net/minecraft/world/level/levelgen/SurfaceRules$BlockRuleSource/ (Lnet/minecraft/world/level/block/state/BlockState;)V net/minecraft/world/level/levelgen/SurfaceRules$BlockRuleSource/ (Lnet/minecraft/world/level/block/state/BlockState;)V +MD: net/minecraft/world/level/levelgen/SurfaceRules$BlockRuleSource/ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/levelgen/SurfaceRules$StateRule;)V net/minecraft/world/level/levelgen/SurfaceRules$BlockRuleSource/ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/levelgen/SurfaceRules$StateRule;)V +MD: net/minecraft/world/level/levelgen/SurfaceRules$BlockRuleSource/apply (Ljava/lang/Object;)Ljava/lang/Object; net/minecraft/world/level/levelgen/SurfaceRules$BlockRuleSource/apply (Ljava/lang/Object;)Ljava/lang/Object; +MD: net/minecraft/world/level/levelgen/SurfaceRules$BlockRuleSource/apply (Lnet/minecraft/world/level/levelgen/SurfaceRules$Context;)Lnet/minecraft/world/level/levelgen/SurfaceRules$SurfaceRule; net/minecraft/world/level/levelgen/SurfaceRules$BlockRuleSource/apply (Lnet/minecraft/world/level/levelgen/SurfaceRules$Context;)Lnet/minecraft/world/level/levelgen/SurfaceRules$SurfaceRule; +MD: net/minecraft/world/level/levelgen/SurfaceRules$BlockRuleSource/equals (Ljava/lang/Object;)Z net/minecraft/world/level/levelgen/SurfaceRules$BlockRuleSource/equals (Ljava/lang/Object;)Z +MD: net/minecraft/world/level/levelgen/SurfaceRules$BlockRuleSource/f_189512_ ()Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/levelgen/SurfaceRules$BlockRuleSource/resultState ()Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/levelgen/SurfaceRules$BlockRuleSource/f_189513_ ()Lnet/minecraft/world/level/levelgen/SurfaceRules$StateRule; net/minecraft/world/level/levelgen/SurfaceRules$BlockRuleSource/rule ()Lnet/minecraft/world/level/levelgen/SurfaceRules$StateRule; +MD: net/minecraft/world/level/levelgen/SurfaceRules$BlockRuleSource/hashCode ()I net/minecraft/world/level/levelgen/SurfaceRules$BlockRuleSource/hashCode ()I +MD: net/minecraft/world/level/levelgen/SurfaceRules$BlockRuleSource/m_213795_ ()Lnet/minecraft/util/KeyDispatchDataCodec; net/minecraft/world/level/levelgen/SurfaceRules$BlockRuleSource/codec ()Lnet/minecraft/util/KeyDispatchDataCodec; +MD: net/minecraft/world/level/levelgen/SurfaceRules$BlockRuleSource/toString ()Ljava/lang/String; net/minecraft/world/level/levelgen/SurfaceRules$BlockRuleSource/toString ()Ljava/lang/String; +MD: net/minecraft/world/level/levelgen/SurfaceRules$Condition/m_183475_ ()Z net/minecraft/world/level/levelgen/SurfaceRules$Condition/test ()Z +MD: net/minecraft/world/level/levelgen/SurfaceRules$ConditionSource/ ()V net/minecraft/world/level/levelgen/SurfaceRules$ConditionSource/ ()V +MD: net/minecraft/world/level/levelgen/SurfaceRules$ConditionSource/m_204624_ (Lnet/minecraft/core/Registry;)Lcom/mojang/serialization/Codec; net/minecraft/world/level/levelgen/SurfaceRules$ConditionSource/bootstrap (Lnet/minecraft/core/Registry;)Lcom/mojang/serialization/Codec; +MD: net/minecraft/world/level/levelgen/SurfaceRules$ConditionSource/m_213794_ ()Lnet/minecraft/util/KeyDispatchDataCodec; net/minecraft/world/level/levelgen/SurfaceRules$ConditionSource/codec ()Lnet/minecraft/util/KeyDispatchDataCodec; +MD: net/minecraft/world/level/levelgen/SurfaceRules$ConditionSource/m_224612_ (Lnet/minecraft/world/level/levelgen/SurfaceRules$ConditionSource;)Lcom/mojang/serialization/Codec; net/minecraft/world/level/levelgen/SurfaceRules$ConditionSource/lambda$static$0 (Lnet/minecraft/world/level/levelgen/SurfaceRules$ConditionSource;)Lcom/mojang/serialization/Codec; +MD: net/minecraft/world/level/levelgen/SurfaceRules$Context/ (Lnet/minecraft/world/level/levelgen/SurfaceSystem;Lnet/minecraft/world/level/levelgen/RandomState;Lnet/minecraft/world/level/chunk/ChunkAccess;Lnet/minecraft/world/level/levelgen/NoiseChunk;Ljava/util/function/Function;Lnet/minecraft/core/Registry;Lnet/minecraft/world/level/levelgen/WorldGenerationContext;)V net/minecraft/world/level/levelgen/SurfaceRules$Context/ (Lnet/minecraft/world/level/levelgen/SurfaceSystem;Lnet/minecraft/world/level/levelgen/RandomState;Lnet/minecraft/world/level/chunk/ChunkAccess;Lnet/minecraft/world/level/levelgen/NoiseChunk;Ljava/util/function/Function;Lnet/minecraft/core/Registry;Lnet/minecraft/world/level/levelgen/WorldGenerationContext;)V +MD: net/minecraft/world/level/levelgen/SurfaceRules$Context/m_189569_ (II)V net/minecraft/world/level/levelgen/SurfaceRules$Context/updateXZ (II)V +MD: net/minecraft/world/level/levelgen/SurfaceRules$Context/m_189576_ (IIIIII)V net/minecraft/world/level/levelgen/SurfaceRules$Context/updateY (IIIIII)V +MD: net/minecraft/world/level/levelgen/SurfaceRules$Context/m_189583_ ()I net/minecraft/world/level/levelgen/SurfaceRules$Context/getMinSurfaceLevel ()I +MD: net/minecraft/world/level/levelgen/SurfaceRules$Context/m_198280_ (I)I net/minecraft/world/level/levelgen/SurfaceRules$Context/blockCoordToSurfaceCell (I)I +MD: net/minecraft/world/level/levelgen/SurfaceRules$Context/m_198282_ (I)I net/minecraft/world/level/levelgen/SurfaceRules$Context/surfaceCellToBlockCoord (I)I +MD: net/minecraft/world/level/levelgen/SurfaceRules$Context/m_202181_ ()D net/minecraft/world/level/levelgen/SurfaceRules$Context/getSurfaceSecondary ()D +MD: net/minecraft/world/level/levelgen/SurfaceRules$Context/m_204626_ (III)Lnet/minecraft/core/Holder; net/minecraft/world/level/levelgen/SurfaceRules$Context/lambda$updateY$0 (III)Lnet/minecraft/core/Holder; +MD: net/minecraft/world/level/levelgen/SurfaceRules$Context$AbovePreliminarySurfaceCondition/ (Lnet/minecraft/world/level/levelgen/SurfaceRules$Context;)V net/minecraft/world/level/levelgen/SurfaceRules$Context$AbovePreliminarySurfaceCondition/ (Lnet/minecraft/world/level/levelgen/SurfaceRules$Context;)V +MD: net/minecraft/world/level/levelgen/SurfaceRules$Context$AbovePreliminarySurfaceCondition/m_183475_ ()Z net/minecraft/world/level/levelgen/SurfaceRules$Context$AbovePreliminarySurfaceCondition/test ()Z +MD: net/minecraft/world/level/levelgen/SurfaceRules$Context$HoleCondition/ (Lnet/minecraft/world/level/levelgen/SurfaceRules$Context;)V net/minecraft/world/level/levelgen/SurfaceRules$Context$HoleCondition/ (Lnet/minecraft/world/level/levelgen/SurfaceRules$Context;)V +MD: net/minecraft/world/level/levelgen/SurfaceRules$Context$HoleCondition/m_183479_ ()Z net/minecraft/world/level/levelgen/SurfaceRules$Context$HoleCondition/compute ()Z +MD: net/minecraft/world/level/levelgen/SurfaceRules$Context$SteepMaterialCondition/ (Lnet/minecraft/world/level/levelgen/SurfaceRules$Context;)V net/minecraft/world/level/levelgen/SurfaceRules$Context$SteepMaterialCondition/ (Lnet/minecraft/world/level/levelgen/SurfaceRules$Context;)V +MD: net/minecraft/world/level/levelgen/SurfaceRules$Context$SteepMaterialCondition/m_183479_ ()Z net/minecraft/world/level/levelgen/SurfaceRules$Context$SteepMaterialCondition/compute ()Z +MD: net/minecraft/world/level/levelgen/SurfaceRules$Context$TemperatureHelperCondition/ (Lnet/minecraft/world/level/levelgen/SurfaceRules$Context;)V net/minecraft/world/level/levelgen/SurfaceRules$Context$TemperatureHelperCondition/ (Lnet/minecraft/world/level/levelgen/SurfaceRules$Context;)V +MD: net/minecraft/world/level/levelgen/SurfaceRules$Context$TemperatureHelperCondition/m_183479_ ()Z net/minecraft/world/level/levelgen/SurfaceRules$Context$TemperatureHelperCondition/compute ()Z +MD: net/minecraft/world/level/levelgen/SurfaceRules$Hole/ ()V net/minecraft/world/level/levelgen/SurfaceRules$Hole/ ()V +MD: net/minecraft/world/level/levelgen/SurfaceRules$Hole/ (Ljava/lang/String;I)V net/minecraft/world/level/levelgen/SurfaceRules$Hole/ (Ljava/lang/String;I)V +MD: net/minecraft/world/level/levelgen/SurfaceRules$Hole/apply (Ljava/lang/Object;)Ljava/lang/Object; net/minecraft/world/level/levelgen/SurfaceRules$Hole/apply (Ljava/lang/Object;)Ljava/lang/Object; +MD: net/minecraft/world/level/levelgen/SurfaceRules$Hole/apply (Lnet/minecraft/world/level/levelgen/SurfaceRules$Context;)Lnet/minecraft/world/level/levelgen/SurfaceRules$Condition; net/minecraft/world/level/levelgen/SurfaceRules$Hole/apply (Lnet/minecraft/world/level/levelgen/SurfaceRules$Context;)Lnet/minecraft/world/level/levelgen/SurfaceRules$Condition; +MD: net/minecraft/world/level/levelgen/SurfaceRules$Hole/m_189611_ ()[Lnet/minecraft/world/level/levelgen/SurfaceRules$Hole; net/minecraft/world/level/levelgen/SurfaceRules$Hole/$values ()[Lnet/minecraft/world/level/levelgen/SurfaceRules$Hole; +MD: net/minecraft/world/level/levelgen/SurfaceRules$Hole/m_213794_ ()Lnet/minecraft/util/KeyDispatchDataCodec; net/minecraft/world/level/levelgen/SurfaceRules$Hole/codec ()Lnet/minecraft/util/KeyDispatchDataCodec; +MD: net/minecraft/world/level/levelgen/SurfaceRules$Hole/valueOf (Ljava/lang/String;)Lnet/minecraft/world/level/levelgen/SurfaceRules$Hole; net/minecraft/world/level/levelgen/SurfaceRules$Hole/valueOf (Ljava/lang/String;)Lnet/minecraft/world/level/levelgen/SurfaceRules$Hole; +MD: net/minecraft/world/level/levelgen/SurfaceRules$Hole/values ()[Lnet/minecraft/world/level/levelgen/SurfaceRules$Hole; net/minecraft/world/level/levelgen/SurfaceRules$Hole/values ()[Lnet/minecraft/world/level/levelgen/SurfaceRules$Hole; +MD: net/minecraft/world/level/levelgen/SurfaceRules$LazyCondition/ (Lnet/minecraft/world/level/levelgen/SurfaceRules$Context;)V net/minecraft/world/level/levelgen/SurfaceRules$LazyCondition/ (Lnet/minecraft/world/level/levelgen/SurfaceRules$Context;)V +MD: net/minecraft/world/level/levelgen/SurfaceRules$LazyCondition/m_183475_ ()Z net/minecraft/world/level/levelgen/SurfaceRules$LazyCondition/test ()Z +MD: net/minecraft/world/level/levelgen/SurfaceRules$LazyCondition/m_183477_ ()J net/minecraft/world/level/levelgen/SurfaceRules$LazyCondition/getContextLastUpdate ()J +MD: net/minecraft/world/level/levelgen/SurfaceRules$LazyCondition/m_183479_ ()Z net/minecraft/world/level/levelgen/SurfaceRules$LazyCondition/compute ()Z +MD: net/minecraft/world/level/levelgen/SurfaceRules$LazyXZCondition/ (Lnet/minecraft/world/level/levelgen/SurfaceRules$Context;)V net/minecraft/world/level/levelgen/SurfaceRules$LazyXZCondition/ (Lnet/minecraft/world/level/levelgen/SurfaceRules$Context;)V +MD: net/minecraft/world/level/levelgen/SurfaceRules$LazyXZCondition/m_183477_ ()J net/minecraft/world/level/levelgen/SurfaceRules$LazyXZCondition/getContextLastUpdate ()J +MD: net/minecraft/world/level/levelgen/SurfaceRules$LazyYCondition/ (Lnet/minecraft/world/level/levelgen/SurfaceRules$Context;)V net/minecraft/world/level/levelgen/SurfaceRules$LazyYCondition/ (Lnet/minecraft/world/level/levelgen/SurfaceRules$Context;)V +MD: net/minecraft/world/level/levelgen/SurfaceRules$LazyYCondition/m_183477_ ()J net/minecraft/world/level/levelgen/SurfaceRules$LazyYCondition/getContextLastUpdate ()J +MD: net/minecraft/world/level/levelgen/SurfaceRules$NoiseThresholdConditionSource/ ()V net/minecraft/world/level/levelgen/SurfaceRules$NoiseThresholdConditionSource/ ()V +MD: net/minecraft/world/level/levelgen/SurfaceRules$NoiseThresholdConditionSource/ (Lnet/minecraft/resources/ResourceKey;DD)V net/minecraft/world/level/levelgen/SurfaceRules$NoiseThresholdConditionSource/ (Lnet/minecraft/resources/ResourceKey;DD)V +MD: net/minecraft/world/level/levelgen/SurfaceRules$NoiseThresholdConditionSource/apply (Ljava/lang/Object;)Ljava/lang/Object; net/minecraft/world/level/levelgen/SurfaceRules$NoiseThresholdConditionSource/apply (Ljava/lang/Object;)Ljava/lang/Object; +MD: net/minecraft/world/level/levelgen/SurfaceRules$NoiseThresholdConditionSource/apply (Lnet/minecraft/world/level/levelgen/SurfaceRules$Context;)Lnet/minecraft/world/level/levelgen/SurfaceRules$Condition; net/minecraft/world/level/levelgen/SurfaceRules$NoiseThresholdConditionSource/apply (Lnet/minecraft/world/level/levelgen/SurfaceRules$Context;)Lnet/minecraft/world/level/levelgen/SurfaceRules$Condition; +MD: net/minecraft/world/level/levelgen/SurfaceRules$NoiseThresholdConditionSource/equals (Ljava/lang/Object;)Z net/minecraft/world/level/levelgen/SurfaceRules$NoiseThresholdConditionSource/equals (Ljava/lang/Object;)Z +MD: net/minecraft/world/level/levelgen/SurfaceRules$NoiseThresholdConditionSource/f_189627_ ()Lnet/minecraft/resources/ResourceKey; net/minecraft/world/level/levelgen/SurfaceRules$NoiseThresholdConditionSource/noise ()Lnet/minecraft/resources/ResourceKey; +MD: net/minecraft/world/level/levelgen/SurfaceRules$NoiseThresholdConditionSource/f_189628_ ()D net/minecraft/world/level/levelgen/SurfaceRules$NoiseThresholdConditionSource/minThreshold ()D +MD: net/minecraft/world/level/levelgen/SurfaceRules$NoiseThresholdConditionSource/f_189629_ ()D net/minecraft/world/level/levelgen/SurfaceRules$NoiseThresholdConditionSource/maxThreshold ()D +MD: net/minecraft/world/level/levelgen/SurfaceRules$NoiseThresholdConditionSource/hashCode ()I net/minecraft/world/level/levelgen/SurfaceRules$NoiseThresholdConditionSource/hashCode ()I +MD: net/minecraft/world/level/levelgen/SurfaceRules$NoiseThresholdConditionSource/m_213794_ ()Lnet/minecraft/util/KeyDispatchDataCodec; net/minecraft/world/level/levelgen/SurfaceRules$NoiseThresholdConditionSource/codec ()Lnet/minecraft/util/KeyDispatchDataCodec; +MD: net/minecraft/world/level/levelgen/SurfaceRules$NoiseThresholdConditionSource/m_257347_ (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/world/level/levelgen/SurfaceRules$NoiseThresholdConditionSource/lambda$static$0 (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/world/level/levelgen/SurfaceRules$NoiseThresholdConditionSource/toString ()Ljava/lang/String; net/minecraft/world/level/levelgen/SurfaceRules$NoiseThresholdConditionSource/toString ()Ljava/lang/String; +MD: net/minecraft/world/level/levelgen/SurfaceRules$NoiseThresholdConditionSource$1NoiseThresholdCondition/ (Lnet/minecraft/world/level/levelgen/SurfaceRules$NoiseThresholdConditionSource;Lnet/minecraft/world/level/levelgen/SurfaceRules$Context;Lnet/minecraft/world/level/levelgen/synth/NormalNoise;)V net/minecraft/world/level/levelgen/SurfaceRules$NoiseThresholdConditionSource$1NoiseThresholdCondition/ (Lnet/minecraft/world/level/levelgen/SurfaceRules$NoiseThresholdConditionSource;Lnet/minecraft/world/level/levelgen/SurfaceRules$Context;Lnet/minecraft/world/level/levelgen/synth/NormalNoise;)V +MD: net/minecraft/world/level/levelgen/SurfaceRules$NoiseThresholdConditionSource$1NoiseThresholdCondition/m_183479_ ()Z net/minecraft/world/level/levelgen/SurfaceRules$NoiseThresholdConditionSource$1NoiseThresholdCondition/compute ()Z +MD: net/minecraft/world/level/levelgen/SurfaceRules$NotCondition/ (Lnet/minecraft/world/level/levelgen/SurfaceRules$Condition;)V net/minecraft/world/level/levelgen/SurfaceRules$NotCondition/ (Lnet/minecraft/world/level/levelgen/SurfaceRules$Condition;)V +MD: net/minecraft/world/level/levelgen/SurfaceRules$NotCondition/equals (Ljava/lang/Object;)Z net/minecraft/world/level/levelgen/SurfaceRules$NotCondition/equals (Ljava/lang/Object;)Z +MD: net/minecraft/world/level/levelgen/SurfaceRules$NotCondition/f_189658_ ()Lnet/minecraft/world/level/levelgen/SurfaceRules$Condition; net/minecraft/world/level/levelgen/SurfaceRules$NotCondition/target ()Lnet/minecraft/world/level/levelgen/SurfaceRules$Condition; +MD: net/minecraft/world/level/levelgen/SurfaceRules$NotCondition/hashCode ()I net/minecraft/world/level/levelgen/SurfaceRules$NotCondition/hashCode ()I +MD: net/minecraft/world/level/levelgen/SurfaceRules$NotCondition/m_183475_ ()Z net/minecraft/world/level/levelgen/SurfaceRules$NotCondition/test ()Z +MD: net/minecraft/world/level/levelgen/SurfaceRules$NotCondition/toString ()Ljava/lang/String; net/minecraft/world/level/levelgen/SurfaceRules$NotCondition/toString ()Ljava/lang/String; +MD: net/minecraft/world/level/levelgen/SurfaceRules$NotConditionSource/ ()V net/minecraft/world/level/levelgen/SurfaceRules$NotConditionSource/ ()V +MD: net/minecraft/world/level/levelgen/SurfaceRules$NotConditionSource/ (Lnet/minecraft/world/level/levelgen/SurfaceRules$ConditionSource;)V net/minecraft/world/level/levelgen/SurfaceRules$NotConditionSource/ (Lnet/minecraft/world/level/levelgen/SurfaceRules$ConditionSource;)V +MD: net/minecraft/world/level/levelgen/SurfaceRules$NotConditionSource/apply (Ljava/lang/Object;)Ljava/lang/Object; net/minecraft/world/level/levelgen/SurfaceRules$NotConditionSource/apply (Ljava/lang/Object;)Ljava/lang/Object; +MD: net/minecraft/world/level/levelgen/SurfaceRules$NotConditionSource/apply (Lnet/minecraft/world/level/levelgen/SurfaceRules$Context;)Lnet/minecraft/world/level/levelgen/SurfaceRules$Condition; net/minecraft/world/level/levelgen/SurfaceRules$NotConditionSource/apply (Lnet/minecraft/world/level/levelgen/SurfaceRules$Context;)Lnet/minecraft/world/level/levelgen/SurfaceRules$Condition; +MD: net/minecraft/world/level/levelgen/SurfaceRules$NotConditionSource/equals (Ljava/lang/Object;)Z net/minecraft/world/level/levelgen/SurfaceRules$NotConditionSource/equals (Ljava/lang/Object;)Z +MD: net/minecraft/world/level/levelgen/SurfaceRules$NotConditionSource/f_189667_ ()Lnet/minecraft/world/level/levelgen/SurfaceRules$ConditionSource; net/minecraft/world/level/levelgen/SurfaceRules$NotConditionSource/target ()Lnet/minecraft/world/level/levelgen/SurfaceRules$ConditionSource; +MD: net/minecraft/world/level/levelgen/SurfaceRules$NotConditionSource/hashCode ()I net/minecraft/world/level/levelgen/SurfaceRules$NotConditionSource/hashCode ()I +MD: net/minecraft/world/level/levelgen/SurfaceRules$NotConditionSource/m_213794_ ()Lnet/minecraft/util/KeyDispatchDataCodec; net/minecraft/world/level/levelgen/SurfaceRules$NotConditionSource/codec ()Lnet/minecraft/util/KeyDispatchDataCodec; +MD: net/minecraft/world/level/levelgen/SurfaceRules$NotConditionSource/toString ()Ljava/lang/String; net/minecraft/world/level/levelgen/SurfaceRules$NotConditionSource/toString ()Ljava/lang/String; +MD: net/minecraft/world/level/levelgen/SurfaceRules$RuleSource/ ()V net/minecraft/world/level/levelgen/SurfaceRules$RuleSource/ ()V +MD: net/minecraft/world/level/levelgen/SurfaceRules$RuleSource/m_204630_ (Lnet/minecraft/core/Registry;)Lcom/mojang/serialization/Codec; net/minecraft/world/level/levelgen/SurfaceRules$RuleSource/bootstrap (Lnet/minecraft/core/Registry;)Lcom/mojang/serialization/Codec; +MD: net/minecraft/world/level/levelgen/SurfaceRules$RuleSource/m_213795_ ()Lnet/minecraft/util/KeyDispatchDataCodec; net/minecraft/world/level/levelgen/SurfaceRules$RuleSource/codec ()Lnet/minecraft/util/KeyDispatchDataCodec; +MD: net/minecraft/world/level/levelgen/SurfaceRules$RuleSource/m_224626_ (Lnet/minecraft/world/level/levelgen/SurfaceRules$RuleSource;)Lcom/mojang/serialization/Codec; net/minecraft/world/level/levelgen/SurfaceRules$RuleSource/lambda$static$0 (Lnet/minecraft/world/level/levelgen/SurfaceRules$RuleSource;)Lcom/mojang/serialization/Codec; +MD: net/minecraft/world/level/levelgen/SurfaceRules$SequenceRule/ (Ljava/util/List;)V net/minecraft/world/level/levelgen/SurfaceRules$SequenceRule/ (Ljava/util/List;)V +MD: net/minecraft/world/level/levelgen/SurfaceRules$SequenceRule/equals (Ljava/lang/Object;)Z net/minecraft/world/level/levelgen/SurfaceRules$SequenceRule/equals (Ljava/lang/Object;)Z +MD: net/minecraft/world/level/levelgen/SurfaceRules$SequenceRule/f_189685_ ()Ljava/util/List; net/minecraft/world/level/levelgen/SurfaceRules$SequenceRule/rules ()Ljava/util/List; +MD: net/minecraft/world/level/levelgen/SurfaceRules$SequenceRule/hashCode ()I net/minecraft/world/level/levelgen/SurfaceRules$SequenceRule/hashCode ()I +MD: net/minecraft/world/level/levelgen/SurfaceRules$SequenceRule/m_183550_ (III)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/levelgen/SurfaceRules$SequenceRule/tryApply (III)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/levelgen/SurfaceRules$SequenceRule/toString ()Ljava/lang/String; net/minecraft/world/level/levelgen/SurfaceRules$SequenceRule/toString ()Ljava/lang/String; +MD: net/minecraft/world/level/levelgen/SurfaceRules$SequenceRuleSource/ ()V net/minecraft/world/level/levelgen/SurfaceRules$SequenceRuleSource/ ()V +MD: net/minecraft/world/level/levelgen/SurfaceRules$SequenceRuleSource/ (Ljava/util/List;)V net/minecraft/world/level/levelgen/SurfaceRules$SequenceRuleSource/ (Ljava/util/List;)V +MD: net/minecraft/world/level/levelgen/SurfaceRules$SequenceRuleSource/apply (Ljava/lang/Object;)Ljava/lang/Object; net/minecraft/world/level/levelgen/SurfaceRules$SequenceRuleSource/apply (Ljava/lang/Object;)Ljava/lang/Object; +MD: net/minecraft/world/level/levelgen/SurfaceRules$SequenceRuleSource/apply (Lnet/minecraft/world/level/levelgen/SurfaceRules$Context;)Lnet/minecraft/world/level/levelgen/SurfaceRules$SurfaceRule; net/minecraft/world/level/levelgen/SurfaceRules$SequenceRuleSource/apply (Lnet/minecraft/world/level/levelgen/SurfaceRules$Context;)Lnet/minecraft/world/level/levelgen/SurfaceRules$SurfaceRule; +MD: net/minecraft/world/level/levelgen/SurfaceRules$SequenceRuleSource/equals (Ljava/lang/Object;)Z net/minecraft/world/level/levelgen/SurfaceRules$SequenceRuleSource/equals (Ljava/lang/Object;)Z +MD: net/minecraft/world/level/levelgen/SurfaceRules$SequenceRuleSource/f_189697_ ()Ljava/util/List; net/minecraft/world/level/levelgen/SurfaceRules$SequenceRuleSource/sequence ()Ljava/util/List; +MD: net/minecraft/world/level/levelgen/SurfaceRules$SequenceRuleSource/hashCode ()I net/minecraft/world/level/levelgen/SurfaceRules$SequenceRuleSource/hashCode ()I +MD: net/minecraft/world/level/levelgen/SurfaceRules$SequenceRuleSource/m_213795_ ()Lnet/minecraft/util/KeyDispatchDataCodec; net/minecraft/world/level/levelgen/SurfaceRules$SequenceRuleSource/codec ()Lnet/minecraft/util/KeyDispatchDataCodec; +MD: net/minecraft/world/level/levelgen/SurfaceRules$SequenceRuleSource/toString ()Ljava/lang/String; net/minecraft/world/level/levelgen/SurfaceRules$SequenceRuleSource/toString ()Ljava/lang/String; +MD: net/minecraft/world/level/levelgen/SurfaceRules$StateRule/ (Lnet/minecraft/world/level/block/state/BlockState;)V net/minecraft/world/level/levelgen/SurfaceRules$StateRule/ (Lnet/minecraft/world/level/block/state/BlockState;)V +MD: net/minecraft/world/level/levelgen/SurfaceRules$StateRule/equals (Ljava/lang/Object;)Z net/minecraft/world/level/levelgen/SurfaceRules$StateRule/equals (Ljava/lang/Object;)Z +MD: net/minecraft/world/level/levelgen/SurfaceRules$StateRule/f_189712_ ()Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/levelgen/SurfaceRules$StateRule/state ()Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/levelgen/SurfaceRules$StateRule/hashCode ()I net/minecraft/world/level/levelgen/SurfaceRules$StateRule/hashCode ()I +MD: net/minecraft/world/level/levelgen/SurfaceRules$StateRule/m_183550_ (III)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/levelgen/SurfaceRules$StateRule/tryApply (III)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/levelgen/SurfaceRules$StateRule/toString ()Ljava/lang/String; net/minecraft/world/level/levelgen/SurfaceRules$StateRule/toString ()Ljava/lang/String; +MD: net/minecraft/world/level/levelgen/SurfaceRules$Steep/ ()V net/minecraft/world/level/levelgen/SurfaceRules$Steep/ ()V +MD: net/minecraft/world/level/levelgen/SurfaceRules$Steep/ (Ljava/lang/String;I)V net/minecraft/world/level/levelgen/SurfaceRules$Steep/ (Ljava/lang/String;I)V +MD: net/minecraft/world/level/levelgen/SurfaceRules$Steep/apply (Ljava/lang/Object;)Ljava/lang/Object; net/minecraft/world/level/levelgen/SurfaceRules$Steep/apply (Ljava/lang/Object;)Ljava/lang/Object; +MD: net/minecraft/world/level/levelgen/SurfaceRules$Steep/apply (Lnet/minecraft/world/level/levelgen/SurfaceRules$Context;)Lnet/minecraft/world/level/levelgen/SurfaceRules$Condition; net/minecraft/world/level/levelgen/SurfaceRules$Steep/apply (Lnet/minecraft/world/level/levelgen/SurfaceRules$Context;)Lnet/minecraft/world/level/levelgen/SurfaceRules$Condition; +MD: net/minecraft/world/level/levelgen/SurfaceRules$Steep/m_189736_ ()[Lnet/minecraft/world/level/levelgen/SurfaceRules$Steep; net/minecraft/world/level/levelgen/SurfaceRules$Steep/$values ()[Lnet/minecraft/world/level/levelgen/SurfaceRules$Steep; +MD: net/minecraft/world/level/levelgen/SurfaceRules$Steep/m_213794_ ()Lnet/minecraft/util/KeyDispatchDataCodec; net/minecraft/world/level/levelgen/SurfaceRules$Steep/codec ()Lnet/minecraft/util/KeyDispatchDataCodec; +MD: net/minecraft/world/level/levelgen/SurfaceRules$Steep/valueOf (Ljava/lang/String;)Lnet/minecraft/world/level/levelgen/SurfaceRules$Steep; net/minecraft/world/level/levelgen/SurfaceRules$Steep/valueOf (Ljava/lang/String;)Lnet/minecraft/world/level/levelgen/SurfaceRules$Steep; +MD: net/minecraft/world/level/levelgen/SurfaceRules$Steep/values ()[Lnet/minecraft/world/level/levelgen/SurfaceRules$Steep; net/minecraft/world/level/levelgen/SurfaceRules$Steep/values ()[Lnet/minecraft/world/level/levelgen/SurfaceRules$Steep; +MD: net/minecraft/world/level/levelgen/SurfaceRules$StoneDepthCheck/ ()V net/minecraft/world/level/levelgen/SurfaceRules$StoneDepthCheck/ ()V +MD: net/minecraft/world/level/levelgen/SurfaceRules$StoneDepthCheck/ (IZILnet/minecraft/world/level/levelgen/placement/CaveSurface;)V net/minecraft/world/level/levelgen/SurfaceRules$StoneDepthCheck/ (IZILnet/minecraft/world/level/levelgen/placement/CaveSurface;)V +MD: net/minecraft/world/level/levelgen/SurfaceRules$StoneDepthCheck/apply (Ljava/lang/Object;)Ljava/lang/Object; net/minecraft/world/level/levelgen/SurfaceRules$StoneDepthCheck/apply (Ljava/lang/Object;)Ljava/lang/Object; +MD: net/minecraft/world/level/levelgen/SurfaceRules$StoneDepthCheck/apply (Lnet/minecraft/world/level/levelgen/SurfaceRules$Context;)Lnet/minecraft/world/level/levelgen/SurfaceRules$Condition; net/minecraft/world/level/levelgen/SurfaceRules$StoneDepthCheck/apply (Lnet/minecraft/world/level/levelgen/SurfaceRules$Context;)Lnet/minecraft/world/level/levelgen/SurfaceRules$Condition; +MD: net/minecraft/world/level/levelgen/SurfaceRules$StoneDepthCheck/equals (Ljava/lang/Object;)Z net/minecraft/world/level/levelgen/SurfaceRules$StoneDepthCheck/equals (Ljava/lang/Object;)Z +MD: net/minecraft/world/level/levelgen/SurfaceRules$StoneDepthCheck/f_189740_ ()I net/minecraft/world/level/levelgen/SurfaceRules$StoneDepthCheck/offset ()I +MD: net/minecraft/world/level/levelgen/SurfaceRules$StoneDepthCheck/f_189741_ ()Z net/minecraft/world/level/levelgen/SurfaceRules$StoneDepthCheck/addSurfaceDepth ()Z +MD: net/minecraft/world/level/levelgen/SurfaceRules$StoneDepthCheck/f_189743_ ()Lnet/minecraft/world/level/levelgen/placement/CaveSurface; net/minecraft/world/level/levelgen/SurfaceRules$StoneDepthCheck/surfaceType ()Lnet/minecraft/world/level/levelgen/placement/CaveSurface; +MD: net/minecraft/world/level/levelgen/SurfaceRules$StoneDepthCheck/f_202182_ ()I net/minecraft/world/level/levelgen/SurfaceRules$StoneDepthCheck/secondaryDepthRange ()I +MD: net/minecraft/world/level/levelgen/SurfaceRules$StoneDepthCheck/hashCode ()I net/minecraft/world/level/levelgen/SurfaceRules$StoneDepthCheck/hashCode ()I +MD: net/minecraft/world/level/levelgen/SurfaceRules$StoneDepthCheck/m_189752_ (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/world/level/levelgen/SurfaceRules$StoneDepthCheck/lambda$static$0 (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/world/level/levelgen/SurfaceRules$StoneDepthCheck/m_213794_ ()Lnet/minecraft/util/KeyDispatchDataCodec; net/minecraft/world/level/levelgen/SurfaceRules$StoneDepthCheck/codec ()Lnet/minecraft/util/KeyDispatchDataCodec; +MD: net/minecraft/world/level/levelgen/SurfaceRules$StoneDepthCheck/toString ()Ljava/lang/String; net/minecraft/world/level/levelgen/SurfaceRules$StoneDepthCheck/toString ()Ljava/lang/String; +MD: net/minecraft/world/level/levelgen/SurfaceRules$StoneDepthCheck$1StoneDepthCondition/ (Lnet/minecraft/world/level/levelgen/SurfaceRules$StoneDepthCheck;Lnet/minecraft/world/level/levelgen/SurfaceRules$Context;Z)V net/minecraft/world/level/levelgen/SurfaceRules$StoneDepthCheck$1StoneDepthCondition/ (Lnet/minecraft/world/level/levelgen/SurfaceRules$StoneDepthCheck;Lnet/minecraft/world/level/levelgen/SurfaceRules$Context;Z)V +MD: net/minecraft/world/level/levelgen/SurfaceRules$StoneDepthCheck$1StoneDepthCondition/m_183479_ ()Z net/minecraft/world/level/levelgen/SurfaceRules$StoneDepthCheck$1StoneDepthCondition/compute ()Z +MD: net/minecraft/world/level/levelgen/SurfaceRules$SurfaceRule/m_183550_ (III)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/levelgen/SurfaceRules$SurfaceRule/tryApply (III)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/levelgen/SurfaceRules$Temperature/ ()V net/minecraft/world/level/levelgen/SurfaceRules$Temperature/ ()V +MD: net/minecraft/world/level/levelgen/SurfaceRules$Temperature/ (Ljava/lang/String;I)V net/minecraft/world/level/levelgen/SurfaceRules$Temperature/ (Ljava/lang/String;I)V +MD: net/minecraft/world/level/levelgen/SurfaceRules$Temperature/apply (Ljava/lang/Object;)Ljava/lang/Object; net/minecraft/world/level/levelgen/SurfaceRules$Temperature/apply (Ljava/lang/Object;)Ljava/lang/Object; +MD: net/minecraft/world/level/levelgen/SurfaceRules$Temperature/apply (Lnet/minecraft/world/level/levelgen/SurfaceRules$Context;)Lnet/minecraft/world/level/levelgen/SurfaceRules$Condition; net/minecraft/world/level/levelgen/SurfaceRules$Temperature/apply (Lnet/minecraft/world/level/levelgen/SurfaceRules$Context;)Lnet/minecraft/world/level/levelgen/SurfaceRules$Condition; +MD: net/minecraft/world/level/levelgen/SurfaceRules$Temperature/m_189789_ ()[Lnet/minecraft/world/level/levelgen/SurfaceRules$Temperature; net/minecraft/world/level/levelgen/SurfaceRules$Temperature/$values ()[Lnet/minecraft/world/level/levelgen/SurfaceRules$Temperature; +MD: net/minecraft/world/level/levelgen/SurfaceRules$Temperature/m_213794_ ()Lnet/minecraft/util/KeyDispatchDataCodec; net/minecraft/world/level/levelgen/SurfaceRules$Temperature/codec ()Lnet/minecraft/util/KeyDispatchDataCodec; +MD: net/minecraft/world/level/levelgen/SurfaceRules$Temperature/valueOf (Ljava/lang/String;)Lnet/minecraft/world/level/levelgen/SurfaceRules$Temperature; net/minecraft/world/level/levelgen/SurfaceRules$Temperature/valueOf (Ljava/lang/String;)Lnet/minecraft/world/level/levelgen/SurfaceRules$Temperature; +MD: net/minecraft/world/level/levelgen/SurfaceRules$Temperature/values ()[Lnet/minecraft/world/level/levelgen/SurfaceRules$Temperature; net/minecraft/world/level/levelgen/SurfaceRules$Temperature/values ()[Lnet/minecraft/world/level/levelgen/SurfaceRules$Temperature; +MD: net/minecraft/world/level/levelgen/SurfaceRules$TestRule/ (Lnet/minecraft/world/level/levelgen/SurfaceRules$Condition;Lnet/minecraft/world/level/levelgen/SurfaceRules$SurfaceRule;)V net/minecraft/world/level/levelgen/SurfaceRules$TestRule/ (Lnet/minecraft/world/level/levelgen/SurfaceRules$Condition;Lnet/minecraft/world/level/levelgen/SurfaceRules$SurfaceRule;)V +MD: net/minecraft/world/level/levelgen/SurfaceRules$TestRule/equals (Ljava/lang/Object;)Z net/minecraft/world/level/levelgen/SurfaceRules$TestRule/equals (Ljava/lang/Object;)Z +MD: net/minecraft/world/level/levelgen/SurfaceRules$TestRule/f_189793_ ()Lnet/minecraft/world/level/levelgen/SurfaceRules$Condition; net/minecraft/world/level/levelgen/SurfaceRules$TestRule/condition ()Lnet/minecraft/world/level/levelgen/SurfaceRules$Condition; +MD: net/minecraft/world/level/levelgen/SurfaceRules$TestRule/f_189794_ ()Lnet/minecraft/world/level/levelgen/SurfaceRules$SurfaceRule; net/minecraft/world/level/levelgen/SurfaceRules$TestRule/followup ()Lnet/minecraft/world/level/levelgen/SurfaceRules$SurfaceRule; +MD: net/minecraft/world/level/levelgen/SurfaceRules$TestRule/hashCode ()I net/minecraft/world/level/levelgen/SurfaceRules$TestRule/hashCode ()I +MD: net/minecraft/world/level/levelgen/SurfaceRules$TestRule/m_183550_ (III)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/levelgen/SurfaceRules$TestRule/tryApply (III)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/levelgen/SurfaceRules$TestRule/toString ()Ljava/lang/String; net/minecraft/world/level/levelgen/SurfaceRules$TestRule/toString ()Ljava/lang/String; +MD: net/minecraft/world/level/levelgen/SurfaceRules$TestRuleSource/ ()V net/minecraft/world/level/levelgen/SurfaceRules$TestRuleSource/ ()V +MD: net/minecraft/world/level/levelgen/SurfaceRules$TestRuleSource/ (Lnet/minecraft/world/level/levelgen/SurfaceRules$ConditionSource;Lnet/minecraft/world/level/levelgen/SurfaceRules$RuleSource;)V net/minecraft/world/level/levelgen/SurfaceRules$TestRuleSource/ (Lnet/minecraft/world/level/levelgen/SurfaceRules$ConditionSource;Lnet/minecraft/world/level/levelgen/SurfaceRules$RuleSource;)V +MD: net/minecraft/world/level/levelgen/SurfaceRules$TestRuleSource/apply (Ljava/lang/Object;)Ljava/lang/Object; net/minecraft/world/level/levelgen/SurfaceRules$TestRuleSource/apply (Ljava/lang/Object;)Ljava/lang/Object; +MD: net/minecraft/world/level/levelgen/SurfaceRules$TestRuleSource/apply (Lnet/minecraft/world/level/levelgen/SurfaceRules$Context;)Lnet/minecraft/world/level/levelgen/SurfaceRules$SurfaceRule; net/minecraft/world/level/levelgen/SurfaceRules$TestRuleSource/apply (Lnet/minecraft/world/level/levelgen/SurfaceRules$Context;)Lnet/minecraft/world/level/levelgen/SurfaceRules$SurfaceRule; +MD: net/minecraft/world/level/levelgen/SurfaceRules$TestRuleSource/equals (Ljava/lang/Object;)Z net/minecraft/world/level/levelgen/SurfaceRules$TestRuleSource/equals (Ljava/lang/Object;)Z +MD: net/minecraft/world/level/levelgen/SurfaceRules$TestRuleSource/f_189808_ ()Lnet/minecraft/world/level/levelgen/SurfaceRules$ConditionSource; net/minecraft/world/level/levelgen/SurfaceRules$TestRuleSource/ifTrue ()Lnet/minecraft/world/level/levelgen/SurfaceRules$ConditionSource; +MD: net/minecraft/world/level/levelgen/SurfaceRules$TestRuleSource/f_189809_ ()Lnet/minecraft/world/level/levelgen/SurfaceRules$RuleSource; net/minecraft/world/level/levelgen/SurfaceRules$TestRuleSource/thenRun ()Lnet/minecraft/world/level/levelgen/SurfaceRules$RuleSource; +MD: net/minecraft/world/level/levelgen/SurfaceRules$TestRuleSource/hashCode ()I net/minecraft/world/level/levelgen/SurfaceRules$TestRuleSource/hashCode ()I +MD: net/minecraft/world/level/levelgen/SurfaceRules$TestRuleSource/m_189816_ (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/world/level/levelgen/SurfaceRules$TestRuleSource/lambda$static$0 (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/world/level/levelgen/SurfaceRules$TestRuleSource/m_213795_ ()Lnet/minecraft/util/KeyDispatchDataCodec; net/minecraft/world/level/levelgen/SurfaceRules$TestRuleSource/codec ()Lnet/minecraft/util/KeyDispatchDataCodec; +MD: net/minecraft/world/level/levelgen/SurfaceRules$TestRuleSource/toString ()Ljava/lang/String; net/minecraft/world/level/levelgen/SurfaceRules$TestRuleSource/toString ()Ljava/lang/String; +MD: net/minecraft/world/level/levelgen/SurfaceRules$VerticalGradientConditionSource/ ()V net/minecraft/world/level/levelgen/SurfaceRules$VerticalGradientConditionSource/ ()V +MD: net/minecraft/world/level/levelgen/SurfaceRules$VerticalGradientConditionSource/ (Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/world/level/levelgen/VerticalAnchor;Lnet/minecraft/world/level/levelgen/VerticalAnchor;)V net/minecraft/world/level/levelgen/SurfaceRules$VerticalGradientConditionSource/ (Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/world/level/levelgen/VerticalAnchor;Lnet/minecraft/world/level/levelgen/VerticalAnchor;)V +MD: net/minecraft/world/level/levelgen/SurfaceRules$VerticalGradientConditionSource/apply (Ljava/lang/Object;)Ljava/lang/Object; net/minecraft/world/level/levelgen/SurfaceRules$VerticalGradientConditionSource/apply (Ljava/lang/Object;)Ljava/lang/Object; +MD: net/minecraft/world/level/levelgen/SurfaceRules$VerticalGradientConditionSource/apply (Lnet/minecraft/world/level/levelgen/SurfaceRules$Context;)Lnet/minecraft/world/level/levelgen/SurfaceRules$Condition; net/minecraft/world/level/levelgen/SurfaceRules$VerticalGradientConditionSource/apply (Lnet/minecraft/world/level/levelgen/SurfaceRules$Context;)Lnet/minecraft/world/level/levelgen/SurfaceRules$Condition; +MD: net/minecraft/world/level/levelgen/SurfaceRules$VerticalGradientConditionSource/equals (Ljava/lang/Object;)Z net/minecraft/world/level/levelgen/SurfaceRules$VerticalGradientConditionSource/equals (Ljava/lang/Object;)Z +MD: net/minecraft/world/level/levelgen/SurfaceRules$VerticalGradientConditionSource/f_189828_ ()Lnet/minecraft/resources/ResourceLocation; net/minecraft/world/level/levelgen/SurfaceRules$VerticalGradientConditionSource/randomName ()Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/world/level/levelgen/SurfaceRules$VerticalGradientConditionSource/f_189829_ ()Lnet/minecraft/world/level/levelgen/VerticalAnchor; net/minecraft/world/level/levelgen/SurfaceRules$VerticalGradientConditionSource/trueAtAndBelow ()Lnet/minecraft/world/level/levelgen/VerticalAnchor; +MD: net/minecraft/world/level/levelgen/SurfaceRules$VerticalGradientConditionSource/f_189830_ ()Lnet/minecraft/world/level/levelgen/VerticalAnchor; net/minecraft/world/level/levelgen/SurfaceRules$VerticalGradientConditionSource/falseAtAndAbove ()Lnet/minecraft/world/level/levelgen/VerticalAnchor; +MD: net/minecraft/world/level/levelgen/SurfaceRules$VerticalGradientConditionSource/hashCode ()I net/minecraft/world/level/levelgen/SurfaceRules$VerticalGradientConditionSource/hashCode ()I +MD: net/minecraft/world/level/levelgen/SurfaceRules$VerticalGradientConditionSource/m_189838_ (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/world/level/levelgen/SurfaceRules$VerticalGradientConditionSource/lambda$static$0 (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/world/level/levelgen/SurfaceRules$VerticalGradientConditionSource/m_213794_ ()Lnet/minecraft/util/KeyDispatchDataCodec; net/minecraft/world/level/levelgen/SurfaceRules$VerticalGradientConditionSource/codec ()Lnet/minecraft/util/KeyDispatchDataCodec; +MD: net/minecraft/world/level/levelgen/SurfaceRules$VerticalGradientConditionSource/toString ()Ljava/lang/String; net/minecraft/world/level/levelgen/SurfaceRules$VerticalGradientConditionSource/toString ()Ljava/lang/String; +MD: net/minecraft/world/level/levelgen/SurfaceRules$VerticalGradientConditionSource$1VerticalGradientCondition/ (Lnet/minecraft/world/level/levelgen/SurfaceRules$VerticalGradientConditionSource;Lnet/minecraft/world/level/levelgen/SurfaceRules$Context;IILnet/minecraft/world/level/levelgen/PositionalRandomFactory;)V net/minecraft/world/level/levelgen/SurfaceRules$VerticalGradientConditionSource$1VerticalGradientCondition/ (Lnet/minecraft/world/level/levelgen/SurfaceRules$VerticalGradientConditionSource;Lnet/minecraft/world/level/levelgen/SurfaceRules$Context;IILnet/minecraft/world/level/levelgen/PositionalRandomFactory;)V +MD: net/minecraft/world/level/levelgen/SurfaceRules$VerticalGradientConditionSource$1VerticalGradientCondition/m_183479_ ()Z net/minecraft/world/level/levelgen/SurfaceRules$VerticalGradientConditionSource$1VerticalGradientCondition/compute ()Z +MD: net/minecraft/world/level/levelgen/SurfaceRules$WaterConditionSource/ ()V net/minecraft/world/level/levelgen/SurfaceRules$WaterConditionSource/ ()V +MD: net/minecraft/world/level/levelgen/SurfaceRules$WaterConditionSource/ (IIZ)V net/minecraft/world/level/levelgen/SurfaceRules$WaterConditionSource/ (IIZ)V +MD: net/minecraft/world/level/levelgen/SurfaceRules$WaterConditionSource/apply (Ljava/lang/Object;)Ljava/lang/Object; net/minecraft/world/level/levelgen/SurfaceRules$WaterConditionSource/apply (Ljava/lang/Object;)Ljava/lang/Object; +MD: net/minecraft/world/level/levelgen/SurfaceRules$WaterConditionSource/apply (Lnet/minecraft/world/level/levelgen/SurfaceRules$Context;)Lnet/minecraft/world/level/levelgen/SurfaceRules$Condition; net/minecraft/world/level/levelgen/SurfaceRules$WaterConditionSource/apply (Lnet/minecraft/world/level/levelgen/SurfaceRules$Context;)Lnet/minecraft/world/level/levelgen/SurfaceRules$Condition; +MD: net/minecraft/world/level/levelgen/SurfaceRules$WaterConditionSource/equals (Ljava/lang/Object;)Z net/minecraft/world/level/levelgen/SurfaceRules$WaterConditionSource/equals (Ljava/lang/Object;)Z +MD: net/minecraft/world/level/levelgen/SurfaceRules$WaterConditionSource/f_189863_ ()I net/minecraft/world/level/levelgen/SurfaceRules$WaterConditionSource/offset ()I +MD: net/minecraft/world/level/levelgen/SurfaceRules$WaterConditionSource/f_189864_ ()I net/minecraft/world/level/levelgen/SurfaceRules$WaterConditionSource/surfaceDepthMultiplier ()I +MD: net/minecraft/world/level/levelgen/SurfaceRules$WaterConditionSource/f_189865_ ()Z net/minecraft/world/level/levelgen/SurfaceRules$WaterConditionSource/addStoneDepth ()Z +MD: net/minecraft/world/level/levelgen/SurfaceRules$WaterConditionSource/hashCode ()I net/minecraft/world/level/levelgen/SurfaceRules$WaterConditionSource/hashCode ()I +MD: net/minecraft/world/level/levelgen/SurfaceRules$WaterConditionSource/m_189873_ (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/world/level/levelgen/SurfaceRules$WaterConditionSource/lambda$static$0 (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/world/level/levelgen/SurfaceRules$WaterConditionSource/m_213794_ ()Lnet/minecraft/util/KeyDispatchDataCodec; net/minecraft/world/level/levelgen/SurfaceRules$WaterConditionSource/codec ()Lnet/minecraft/util/KeyDispatchDataCodec; +MD: net/minecraft/world/level/levelgen/SurfaceRules$WaterConditionSource/toString ()Ljava/lang/String; net/minecraft/world/level/levelgen/SurfaceRules$WaterConditionSource/toString ()Ljava/lang/String; +MD: net/minecraft/world/level/levelgen/SurfaceRules$WaterConditionSource$1WaterCondition/ (Lnet/minecraft/world/level/levelgen/SurfaceRules$WaterConditionSource;Lnet/minecraft/world/level/levelgen/SurfaceRules$Context;)V net/minecraft/world/level/levelgen/SurfaceRules$WaterConditionSource$1WaterCondition/ (Lnet/minecraft/world/level/levelgen/SurfaceRules$WaterConditionSource;Lnet/minecraft/world/level/levelgen/SurfaceRules$Context;)V +MD: net/minecraft/world/level/levelgen/SurfaceRules$WaterConditionSource$1WaterCondition/m_183479_ ()Z net/minecraft/world/level/levelgen/SurfaceRules$WaterConditionSource$1WaterCondition/compute ()Z +MD: net/minecraft/world/level/levelgen/SurfaceRules$YConditionSource/ ()V net/minecraft/world/level/levelgen/SurfaceRules$YConditionSource/ ()V +MD: net/minecraft/world/level/levelgen/SurfaceRules$YConditionSource/ (Lnet/minecraft/world/level/levelgen/VerticalAnchor;IZ)V net/minecraft/world/level/levelgen/SurfaceRules$YConditionSource/ (Lnet/minecraft/world/level/levelgen/VerticalAnchor;IZ)V +MD: net/minecraft/world/level/levelgen/SurfaceRules$YConditionSource/apply (Ljava/lang/Object;)Ljava/lang/Object; net/minecraft/world/level/levelgen/SurfaceRules$YConditionSource/apply (Ljava/lang/Object;)Ljava/lang/Object; +MD: net/minecraft/world/level/levelgen/SurfaceRules$YConditionSource/apply (Lnet/minecraft/world/level/levelgen/SurfaceRules$Context;)Lnet/minecraft/world/level/levelgen/SurfaceRules$Condition; net/minecraft/world/level/levelgen/SurfaceRules$YConditionSource/apply (Lnet/minecraft/world/level/levelgen/SurfaceRules$Context;)Lnet/minecraft/world/level/levelgen/SurfaceRules$Condition; +MD: net/minecraft/world/level/levelgen/SurfaceRules$YConditionSource/equals (Ljava/lang/Object;)Z net/minecraft/world/level/levelgen/SurfaceRules$YConditionSource/equals (Ljava/lang/Object;)Z +MD: net/minecraft/world/level/levelgen/SurfaceRules$YConditionSource/f_189444_ ()Lnet/minecraft/world/level/levelgen/VerticalAnchor; net/minecraft/world/level/levelgen/SurfaceRules$YConditionSource/anchor ()Lnet/minecraft/world/level/levelgen/VerticalAnchor; +MD: net/minecraft/world/level/levelgen/SurfaceRules$YConditionSource/f_189445_ ()I net/minecraft/world/level/levelgen/SurfaceRules$YConditionSource/surfaceDepthMultiplier ()I +MD: net/minecraft/world/level/levelgen/SurfaceRules$YConditionSource/f_189446_ ()Z net/minecraft/world/level/levelgen/SurfaceRules$YConditionSource/addStoneDepth ()Z +MD: net/minecraft/world/level/levelgen/SurfaceRules$YConditionSource/hashCode ()I net/minecraft/world/level/levelgen/SurfaceRules$YConditionSource/hashCode ()I +MD: net/minecraft/world/level/levelgen/SurfaceRules$YConditionSource/m_189454_ (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/world/level/levelgen/SurfaceRules$YConditionSource/lambda$static$0 (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/world/level/levelgen/SurfaceRules$YConditionSource/m_213794_ ()Lnet/minecraft/util/KeyDispatchDataCodec; net/minecraft/world/level/levelgen/SurfaceRules$YConditionSource/codec ()Lnet/minecraft/util/KeyDispatchDataCodec; +MD: net/minecraft/world/level/levelgen/SurfaceRules$YConditionSource/toString ()Ljava/lang/String; net/minecraft/world/level/levelgen/SurfaceRules$YConditionSource/toString ()Ljava/lang/String; +MD: net/minecraft/world/level/levelgen/SurfaceRules$YConditionSource$1YCondition/ (Lnet/minecraft/world/level/levelgen/SurfaceRules$YConditionSource;Lnet/minecraft/world/level/levelgen/SurfaceRules$Context;)V net/minecraft/world/level/levelgen/SurfaceRules$YConditionSource$1YCondition/ (Lnet/minecraft/world/level/levelgen/SurfaceRules$YConditionSource;Lnet/minecraft/world/level/levelgen/SurfaceRules$Context;)V +MD: net/minecraft/world/level/levelgen/SurfaceRules$YConditionSource$1YCondition/m_183479_ ()Z net/minecraft/world/level/levelgen/SurfaceRules$YConditionSource$1YCondition/compute ()Z +MD: net/minecraft/world/level/levelgen/SurfaceSystem/ ()V net/minecraft/world/level/levelgen/SurfaceSystem/ ()V +MD: net/minecraft/world/level/levelgen/SurfaceSystem/ (Lnet/minecraft/world/level/levelgen/RandomState;Lnet/minecraft/world/level/block/state/BlockState;ILnet/minecraft/world/level/levelgen/PositionalRandomFactory;)V net/minecraft/world/level/levelgen/SurfaceSystem/ (Lnet/minecraft/world/level/levelgen/RandomState;Lnet/minecraft/world/level/block/state/BlockState;ILnet/minecraft/world/level/levelgen/PositionalRandomFactory;)V +MD: net/minecraft/world/level/levelgen/SurfaceSystem/m_189927_ (II)I net/minecraft/world/level/levelgen/SurfaceSystem/getSurfaceDepth (II)I +MD: net/minecraft/world/level/levelgen/SurfaceSystem/m_189930_ (III)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/levelgen/SurfaceSystem/getBand (III)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/levelgen/SurfaceSystem/m_189934_ (ILnet/minecraft/world/level/biome/Biome;Lnet/minecraft/world/level/chunk/BlockColumn;Lnet/minecraft/core/BlockPos$MutableBlockPos;III)V net/minecraft/world/level/levelgen/SurfaceSystem/frozenOceanExtension (ILnet/minecraft/world/level/biome/Biome;Lnet/minecraft/world/level/chunk/BlockColumn;Lnet/minecraft/core/BlockPos$MutableBlockPos;III)V +MD: net/minecraft/world/level/levelgen/SurfaceSystem/m_189952_ (Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/world/level/levelgen/SurfaceSystem/isStone (Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/world/level/levelgen/SurfaceSystem/m_189954_ (Lnet/minecraft/world/level/chunk/BlockColumn;IIILnet/minecraft/world/level/LevelHeightAccessor;)V net/minecraft/world/level/levelgen/SurfaceSystem/erodedBadlandsExtension (Lnet/minecraft/world/level/chunk/BlockColumn;IIILnet/minecraft/world/level/LevelHeightAccessor;)V +MD: net/minecraft/world/level/levelgen/SurfaceSystem/m_189971_ (Lnet/minecraft/world/level/levelgen/SurfaceRules$RuleSource;Lnet/minecraft/world/level/levelgen/carver/CarvingContext;Ljava/util/function/Function;Lnet/minecraft/world/level/chunk/ChunkAccess;Lnet/minecraft/world/level/levelgen/NoiseChunk;Lnet/minecraft/core/BlockPos;Z)Ljava/util/Optional; net/minecraft/world/level/levelgen/SurfaceSystem/topMaterial (Lnet/minecraft/world/level/levelgen/SurfaceRules$RuleSource;Lnet/minecraft/world/level/levelgen/carver/CarvingContext;Ljava/util/function/Function;Lnet/minecraft/world/level/chunk/ChunkAccess;Lnet/minecraft/world/level/levelgen/NoiseChunk;Lnet/minecraft/core/BlockPos;Z)Ljava/util/Optional; +MD: net/minecraft/world/level/levelgen/SurfaceSystem/m_202189_ (II)D net/minecraft/world/level/levelgen/SurfaceSystem/getSurfaceSecondary (II)D +MD: net/minecraft/world/level/levelgen/SurfaceSystem/m_224641_ (Lnet/minecraft/util/RandomSource;)[Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/levelgen/SurfaceSystem/generateBands (Lnet/minecraft/util/RandomSource;)[Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/levelgen/SurfaceSystem/m_224643_ (Lnet/minecraft/util/RandomSource;[Lnet/minecraft/world/level/block/state/BlockState;ILnet/minecraft/world/level/block/state/BlockState;)V net/minecraft/world/level/levelgen/SurfaceSystem/makeBands (Lnet/minecraft/util/RandomSource;[Lnet/minecraft/world/level/block/state/BlockState;ILnet/minecraft/world/level/block/state/BlockState;)V +MD: net/minecraft/world/level/levelgen/SurfaceSystem/m_224648_ (Lnet/minecraft/world/level/levelgen/RandomState;Lnet/minecraft/world/level/biome/BiomeManager;Lnet/minecraft/core/Registry;ZLnet/minecraft/world/level/levelgen/WorldGenerationContext;Lnet/minecraft/world/level/chunk/ChunkAccess;Lnet/minecraft/world/level/levelgen/NoiseChunk;Lnet/minecraft/world/level/levelgen/SurfaceRules$RuleSource;)V net/minecraft/world/level/levelgen/SurfaceSystem/buildSurface (Lnet/minecraft/world/level/levelgen/RandomState;Lnet/minecraft/world/level/biome/BiomeManager;Lnet/minecraft/core/Registry;ZLnet/minecraft/world/level/levelgen/WorldGenerationContext;Lnet/minecraft/world/level/chunk/ChunkAccess;Lnet/minecraft/world/level/levelgen/NoiseChunk;Lnet/minecraft/world/level/levelgen/SurfaceRules$RuleSource;)V +MD: net/minecraft/world/level/levelgen/SurfaceSystem$1/ (Lnet/minecraft/world/level/levelgen/SurfaceSystem;Lnet/minecraft/world/level/chunk/ChunkAccess;Lnet/minecraft/core/BlockPos$MutableBlockPos;Lnet/minecraft/world/level/ChunkPos;)V net/minecraft/world/level/levelgen/SurfaceSystem$1/ (Lnet/minecraft/world/level/levelgen/SurfaceSystem;Lnet/minecraft/world/level/chunk/ChunkAccess;Lnet/minecraft/core/BlockPos$MutableBlockPos;Lnet/minecraft/world/level/ChunkPos;)V +MD: net/minecraft/world/level/levelgen/SurfaceSystem$1/m_183556_ (I)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/levelgen/SurfaceSystem$1/getBlock (I)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/levelgen/SurfaceSystem$1/m_183639_ (ILnet/minecraft/world/level/block/state/BlockState;)V net/minecraft/world/level/levelgen/SurfaceSystem$1/setBlock (ILnet/minecraft/world/level/block/state/BlockState;)V +MD: net/minecraft/world/level/levelgen/SurfaceSystem$1/toString ()Ljava/lang/String; net/minecraft/world/level/levelgen/SurfaceSystem$1/toString ()Ljava/lang/String; +MD: net/minecraft/world/level/levelgen/ThreadSafeLegacyRandomSource/ (J)V net/minecraft/world/level/levelgen/ThreadSafeLegacyRandomSource/ (J)V +MD: net/minecraft/world/level/levelgen/ThreadSafeLegacyRandomSource/m_188582_ ()Lnet/minecraft/world/level/levelgen/PositionalRandomFactory; net/minecraft/world/level/levelgen/ThreadSafeLegacyRandomSource/forkPositional ()Lnet/minecraft/world/level/levelgen/PositionalRandomFactory; +MD: net/minecraft/world/level/levelgen/ThreadSafeLegacyRandomSource/m_188583_ ()D net/minecraft/world/level/levelgen/ThreadSafeLegacyRandomSource/nextGaussian ()D +MD: net/minecraft/world/level/levelgen/ThreadSafeLegacyRandomSource/m_188584_ (J)V net/minecraft/world/level/levelgen/ThreadSafeLegacyRandomSource/setSeed (J)V +MD: net/minecraft/world/level/levelgen/ThreadSafeLegacyRandomSource/m_213769_ ()Lnet/minecraft/util/RandomSource; net/minecraft/world/level/levelgen/ThreadSafeLegacyRandomSource/fork ()Lnet/minecraft/util/RandomSource; +MD: net/minecraft/world/level/levelgen/ThreadSafeLegacyRandomSource/m_64707_ (I)I net/minecraft/world/level/levelgen/ThreadSafeLegacyRandomSource/next (I)I +MD: net/minecraft/world/level/levelgen/VerticalAnchor/ ()V net/minecraft/world/level/levelgen/VerticalAnchor/ ()V +MD: net/minecraft/world/level/levelgen/VerticalAnchor/m_142322_ (Lnet/minecraft/world/level/levelgen/WorldGenerationContext;)I net/minecraft/world/level/levelgen/VerticalAnchor/resolveY (Lnet/minecraft/world/level/levelgen/WorldGenerationContext;)I +MD: net/minecraft/world/level/levelgen/VerticalAnchor/m_158921_ ()Lnet/minecraft/world/level/levelgen/VerticalAnchor; net/minecraft/world/level/levelgen/VerticalAnchor/bottom ()Lnet/minecraft/world/level/levelgen/VerticalAnchor; +MD: net/minecraft/world/level/levelgen/VerticalAnchor/m_158922_ (I)Lnet/minecraft/world/level/levelgen/VerticalAnchor; net/minecraft/world/level/levelgen/VerticalAnchor/absolute (I)Lnet/minecraft/world/level/levelgen/VerticalAnchor; +MD: net/minecraft/world/level/levelgen/VerticalAnchor/m_158924_ (Lcom/mojang/datafixers/util/Either;)Lnet/minecraft/world/level/levelgen/VerticalAnchor; net/minecraft/world/level/levelgen/VerticalAnchor/merge (Lcom/mojang/datafixers/util/Either;)Lnet/minecraft/world/level/levelgen/VerticalAnchor; +MD: net/minecraft/world/level/levelgen/VerticalAnchor/m_158926_ (Lnet/minecraft/world/level/levelgen/VerticalAnchor;)Lcom/mojang/datafixers/util/Either; net/minecraft/world/level/levelgen/VerticalAnchor/split (Lnet/minecraft/world/level/levelgen/VerticalAnchor;)Lcom/mojang/datafixers/util/Either; +MD: net/minecraft/world/level/levelgen/VerticalAnchor/m_158929_ ()Lnet/minecraft/world/level/levelgen/VerticalAnchor; net/minecraft/world/level/levelgen/VerticalAnchor/top ()Lnet/minecraft/world/level/levelgen/VerticalAnchor; +MD: net/minecraft/world/level/levelgen/VerticalAnchor/m_158930_ (I)Lnet/minecraft/world/level/levelgen/VerticalAnchor; net/minecraft/world/level/levelgen/VerticalAnchor/aboveBottom (I)Lnet/minecraft/world/level/levelgen/VerticalAnchor; +MD: net/minecraft/world/level/levelgen/VerticalAnchor/m_158935_ (I)Lnet/minecraft/world/level/levelgen/VerticalAnchor; net/minecraft/world/level/levelgen/VerticalAnchor/belowTop (I)Lnet/minecraft/world/level/levelgen/VerticalAnchor; +MD: net/minecraft/world/level/levelgen/VerticalAnchor/m_209697_ (Lcom/mojang/datafixers/util/Either;)Ljava/lang/Record; net/minecraft/world/level/levelgen/VerticalAnchor/lambda$merge$0 (Lcom/mojang/datafixers/util/Either;)Ljava/lang/Record; +MD: net/minecraft/world/level/levelgen/VerticalAnchor$AboveBottom/ ()V net/minecraft/world/level/levelgen/VerticalAnchor$AboveBottom/ ()V +MD: net/minecraft/world/level/levelgen/VerticalAnchor$AboveBottom/ (I)V net/minecraft/world/level/levelgen/VerticalAnchor$AboveBottom/ (I)V +MD: net/minecraft/world/level/levelgen/VerticalAnchor$AboveBottom/equals (Ljava/lang/Object;)Z net/minecraft/world/level/levelgen/VerticalAnchor$AboveBottom/equals (Ljava/lang/Object;)Z +MD: net/minecraft/world/level/levelgen/VerticalAnchor$AboveBottom/f_209699_ ()I net/minecraft/world/level/levelgen/VerticalAnchor$AboveBottom/offset ()I +MD: net/minecraft/world/level/levelgen/VerticalAnchor$AboveBottom/hashCode ()I net/minecraft/world/level/levelgen/VerticalAnchor$AboveBottom/hashCode ()I +MD: net/minecraft/world/level/levelgen/VerticalAnchor$AboveBottom/m_142322_ (Lnet/minecraft/world/level/levelgen/WorldGenerationContext;)I net/minecraft/world/level/levelgen/VerticalAnchor$AboveBottom/resolveY (Lnet/minecraft/world/level/levelgen/WorldGenerationContext;)I +MD: net/minecraft/world/level/levelgen/VerticalAnchor$AboveBottom/toString ()Ljava/lang/String; net/minecraft/world/level/levelgen/VerticalAnchor$AboveBottom/toString ()Ljava/lang/String; +MD: net/minecraft/world/level/levelgen/VerticalAnchor$Absolute/ ()V net/minecraft/world/level/levelgen/VerticalAnchor$Absolute/ ()V +MD: net/minecraft/world/level/levelgen/VerticalAnchor$Absolute/ (I)V net/minecraft/world/level/levelgen/VerticalAnchor$Absolute/ (I)V +MD: net/minecraft/world/level/levelgen/VerticalAnchor$Absolute/equals (Ljava/lang/Object;)Z net/minecraft/world/level/levelgen/VerticalAnchor$Absolute/equals (Ljava/lang/Object;)Z +MD: net/minecraft/world/level/levelgen/VerticalAnchor$Absolute/f_209704_ ()I net/minecraft/world/level/levelgen/VerticalAnchor$Absolute/y ()I +MD: net/minecraft/world/level/levelgen/VerticalAnchor$Absolute/hashCode ()I net/minecraft/world/level/levelgen/VerticalAnchor$Absolute/hashCode ()I +MD: net/minecraft/world/level/levelgen/VerticalAnchor$Absolute/m_142322_ (Lnet/minecraft/world/level/levelgen/WorldGenerationContext;)I net/minecraft/world/level/levelgen/VerticalAnchor$Absolute/resolveY (Lnet/minecraft/world/level/levelgen/WorldGenerationContext;)I +MD: net/minecraft/world/level/levelgen/VerticalAnchor$Absolute/toString ()Ljava/lang/String; net/minecraft/world/level/levelgen/VerticalAnchor$Absolute/toString ()Ljava/lang/String; +MD: net/minecraft/world/level/levelgen/VerticalAnchor$BelowTop/ ()V net/minecraft/world/level/levelgen/VerticalAnchor$BelowTop/ ()V +MD: net/minecraft/world/level/levelgen/VerticalAnchor$BelowTop/ (I)V net/minecraft/world/level/levelgen/VerticalAnchor$BelowTop/ (I)V +MD: net/minecraft/world/level/levelgen/VerticalAnchor$BelowTop/equals (Ljava/lang/Object;)Z net/minecraft/world/level/levelgen/VerticalAnchor$BelowTop/equals (Ljava/lang/Object;)Z +MD: net/minecraft/world/level/levelgen/VerticalAnchor$BelowTop/f_209709_ ()I net/minecraft/world/level/levelgen/VerticalAnchor$BelowTop/offset ()I +MD: net/minecraft/world/level/levelgen/VerticalAnchor$BelowTop/hashCode ()I net/minecraft/world/level/levelgen/VerticalAnchor$BelowTop/hashCode ()I +MD: net/minecraft/world/level/levelgen/VerticalAnchor$BelowTop/m_142322_ (Lnet/minecraft/world/level/levelgen/WorldGenerationContext;)I net/minecraft/world/level/levelgen/VerticalAnchor$BelowTop/resolveY (Lnet/minecraft/world/level/levelgen/WorldGenerationContext;)I +MD: net/minecraft/world/level/levelgen/VerticalAnchor$BelowTop/toString ()Ljava/lang/String; net/minecraft/world/level/levelgen/VerticalAnchor$BelowTop/toString ()Ljava/lang/String; +MD: net/minecraft/world/level/levelgen/WorldDimensions/ ()V net/minecraft/world/level/levelgen/WorldDimensions/ ()V +MD: net/minecraft/world/level/levelgen/WorldDimensions/ (Lnet/minecraft/core/Registry;)V net/minecraft/world/level/levelgen/WorldDimensions/ (Lnet/minecraft/core/Registry;)V +MD: net/minecraft/world/level/levelgen/WorldDimensions/equals (Ljava/lang/Object;)Z net/minecraft/world/level/levelgen/WorldDimensions/equals (Ljava/lang/Object;)Z +MD: net/minecraft/world/level/levelgen/WorldDimensions/f_243948_ ()Lnet/minecraft/core/Registry; net/minecraft/world/level/levelgen/WorldDimensions/dimensions ()Lnet/minecraft/core/Registry; +MD: net/minecraft/world/level/levelgen/WorldDimensions/hashCode ()I net/minecraft/world/level/levelgen/WorldDimensions/hashCode ()I +MD: net/minecraft/world/level/levelgen/WorldDimensions/m_245300_ (Lnet/minecraft/core/Registry;)Lnet/minecraft/world/level/levelgen/WorldDimensions$Complete; net/minecraft/world/level/levelgen/WorldDimensions/bake (Lnet/minecraft/core/Registry;)Lnet/minecraft/world/level/levelgen/WorldDimensions$Complete; +MD: net/minecraft/world/level/levelgen/WorldDimensions/m_245357_ (Lnet/minecraft/resources/ResourceKey;Lnet/minecraft/world/level/dimension/LevelStem;)Lcom/mojang/serialization/Lifecycle; net/minecraft/world/level/levelgen/WorldDimensions/checkStability (Lnet/minecraft/resources/ResourceKey;Lnet/minecraft/world/level/dimension/LevelStem;)Lcom/mojang/serialization/Lifecycle; +MD: net/minecraft/world/level/levelgen/WorldDimensions/m_245587_ (Lnet/minecraft/world/level/dimension/LevelStem;)Lnet/minecraft/world/level/storage/PrimaryLevelData$SpecialWorldProperty; net/minecraft/world/level/levelgen/WorldDimensions/lambda$specialWorldProperty$2 (Lnet/minecraft/world/level/dimension/LevelStem;)Lnet/minecraft/world/level/storage/PrimaryLevelData$SpecialWorldProperty; +MD: net/minecraft/world/level/levelgen/WorldDimensions/m_245847_ (Lnet/minecraft/world/level/dimension/LevelStem;)Z net/minecraft/world/level/levelgen/WorldDimensions/isStableOverworld (Lnet/minecraft/world/level/dimension/LevelStem;)Z +MD: net/minecraft/world/level/levelgen/WorldDimensions/m_245858_ (Lnet/minecraft/resources/ResourceKey;Lnet/minecraft/world/level/dimension/LevelStem;)Z net/minecraft/world/level/levelgen/WorldDimensions/isVanillaLike (Lnet/minecraft/resources/ResourceKey;Lnet/minecraft/world/level/dimension/LevelStem;)Z +MD: net/minecraft/world/level/levelgen/WorldDimensions/m_245957_ (Lnet/minecraft/resources/ResourceKey;)Ljava/util/Optional; net/minecraft/world/level/levelgen/WorldDimensions/get (Lnet/minecraft/resources/ResourceKey;)Ljava/util/Optional; +MD: net/minecraft/world/level/levelgen/WorldDimensions/m_246477_ (Lnet/minecraft/core/Registry;Lnet/minecraft/core/Registry;Lnet/minecraft/world/level/chunk/ChunkGenerator;)Lnet/minecraft/core/Registry; net/minecraft/world/level/levelgen/WorldDimensions/withOverworld (Lnet/minecraft/core/Registry;Lnet/minecraft/core/Registry;Lnet/minecraft/world/level/chunk/ChunkGenerator;)Lnet/minecraft/core/Registry; +MD: net/minecraft/world/level/levelgen/WorldDimensions/m_246533_ (Ljava/util/List;Lnet/minecraft/resources/ResourceKey;Lnet/minecraft/world/level/dimension/LevelStem;)V net/minecraft/world/level/levelgen/WorldDimensions/lambda$bake$4 (Ljava/util/List;Lnet/minecraft/resources/ResourceKey;Lnet/minecraft/world/level/dimension/LevelStem;)V +MD: net/minecraft/world/level/levelgen/WorldDimensions/m_246615_ (Lnet/minecraft/world/level/dimension/LevelStem;)Z net/minecraft/world/level/levelgen/WorldDimensions/isStableNether (Lnet/minecraft/world/level/dimension/LevelStem;)Z +MD: net/minecraft/world/level/levelgen/WorldDimensions/m_246737_ ()Lnet/minecraft/world/level/chunk/ChunkGenerator; net/minecraft/world/level/levelgen/WorldDimensions/overworld ()Lnet/minecraft/world/level/chunk/ChunkGenerator; +MD: net/minecraft/world/level/levelgen/WorldDimensions/m_246739_ ()Z net/minecraft/world/level/levelgen/WorldDimensions/isDebug ()Z +MD: net/minecraft/world/level/levelgen/WorldDimensions/m_246747_ (Lnet/minecraft/core/RegistryAccess;Lnet/minecraft/world/level/chunk/ChunkGenerator;)Lnet/minecraft/world/level/levelgen/WorldDimensions; net/minecraft/world/level/levelgen/WorldDimensions/replaceOverworldGenerator (Lnet/minecraft/core/RegistryAccess;Lnet/minecraft/world/level/chunk/ChunkGenerator;)Lnet/minecraft/world/level/levelgen/WorldDimensions; +MD: net/minecraft/world/level/levelgen/WorldDimensions/m_246830_ (Lnet/minecraft/core/Registry;)Lnet/minecraft/world/level/storage/PrimaryLevelData$SpecialWorldProperty; net/minecraft/world/level/levelgen/WorldDimensions/specialWorldProperty (Lnet/minecraft/core/Registry;)Lnet/minecraft/world/level/storage/PrimaryLevelData$SpecialWorldProperty; +MD: net/minecraft/world/level/levelgen/WorldDimensions/m_246921_ (Lnet/minecraft/resources/ResourceKey;)Z net/minecraft/world/level/levelgen/WorldDimensions/lambda$keysInOrder$1 (Lnet/minecraft/resources/ResourceKey;)Z +MD: net/minecraft/world/level/levelgen/WorldDimensions/m_247421_ (Ljava/util/stream/Stream;)Ljava/util/stream/Stream; net/minecraft/world/level/levelgen/WorldDimensions/keysInOrder (Ljava/util/stream/Stream;)Ljava/util/stream/Stream; +MD: net/minecraft/world/level/levelgen/WorldDimensions/m_247534_ (Lnet/minecraft/core/Registry;Lnet/minecraft/core/Holder;Lnet/minecraft/world/level/chunk/ChunkGenerator;)Lnet/minecraft/core/Registry; net/minecraft/world/level/levelgen/WorldDimensions/withOverworld (Lnet/minecraft/core/Registry;Lnet/minecraft/core/Holder;Lnet/minecraft/world/level/chunk/ChunkGenerator;)Lnet/minecraft/core/Registry; +MD: net/minecraft/world/level/levelgen/WorldDimensions/m_247539_ ()Lcom/google/common/collect/ImmutableSet; net/minecraft/world/level/levelgen/WorldDimensions/levels ()Lcom/google/common/collect/ImmutableSet; +MD: net/minecraft/world/level/levelgen/WorldDimensions/m_247592_ (Lnet/minecraft/world/level/dimension/LevelStem;)Z net/minecraft/world/level/levelgen/WorldDimensions/isStableEnd (Lnet/minecraft/world/level/dimension/LevelStem;)Z +MD: net/minecraft/world/level/levelgen/WorldDimensions/m_257348_ (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/world/level/levelgen/WorldDimensions/lambda$static$0 (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/world/level/levelgen/WorldDimensions/m_257349_ (Lnet/minecraft/core/Registry;Ljava/util/List;Lnet/minecraft/resources/ResourceKey;)V net/minecraft/world/level/levelgen/WorldDimensions/lambda$bake$5 (Lnet/minecraft/core/Registry;Ljava/util/List;Lnet/minecraft/resources/ResourceKey;)V +MD: net/minecraft/world/level/levelgen/WorldDimensions/m_257350_ (Lnet/minecraft/core/WritableRegistry;Lnet/minecraft/world/level/levelgen/WorldDimensions$1Entry;)V net/minecraft/world/level/levelgen/WorldDimensions/lambda$bake$6 (Lnet/minecraft/core/WritableRegistry;Lnet/minecraft/world/level/levelgen/WorldDimensions$1Entry;)V +MD: net/minecraft/world/level/levelgen/WorldDimensions/m_257351_ (Lnet/minecraft/resources/ResourceKey;)Ljava/util/Optional; net/minecraft/world/level/levelgen/WorldDimensions/lambda$bake$3 (Lnet/minecraft/resources/ResourceKey;)Ljava/util/Optional; +MD: net/minecraft/world/level/levelgen/WorldDimensions/toString ()Ljava/lang/String; net/minecraft/world/level/levelgen/WorldDimensions/toString ()Ljava/lang/String; +MD: net/minecraft/world/level/levelgen/WorldDimensions$1Entry/ (Lnet/minecraft/resources/ResourceKey;Lnet/minecraft/world/level/dimension/LevelStem;)V net/minecraft/world/level/levelgen/WorldDimensions$1Entry/ (Lnet/minecraft/resources/ResourceKey;Lnet/minecraft/world/level/dimension/LevelStem;)V +MD: net/minecraft/world/level/levelgen/WorldDimensions$1Entry/equals (Ljava/lang/Object;)Z net/minecraft/world/level/levelgen/WorldDimensions$1Entry/equals (Ljava/lang/Object;)Z +MD: net/minecraft/world/level/levelgen/WorldDimensions$1Entry/f_243758_ ()Lnet/minecraft/world/level/dimension/LevelStem; net/minecraft/world/level/levelgen/WorldDimensions$1Entry/value ()Lnet/minecraft/world/level/dimension/LevelStem; +MD: net/minecraft/world/level/levelgen/WorldDimensions$1Entry/f_244236_ ()Lnet/minecraft/resources/ResourceKey; net/minecraft/world/level/levelgen/WorldDimensions$1Entry/key ()Lnet/minecraft/resources/ResourceKey; +MD: net/minecraft/world/level/levelgen/WorldDimensions$1Entry/hashCode ()I net/minecraft/world/level/levelgen/WorldDimensions$1Entry/hashCode ()I +MD: net/minecraft/world/level/levelgen/WorldDimensions$1Entry/m_246583_ ()Lcom/mojang/serialization/Lifecycle; net/minecraft/world/level/levelgen/WorldDimensions$1Entry/lifecycle ()Lcom/mojang/serialization/Lifecycle; +MD: net/minecraft/world/level/levelgen/WorldDimensions$1Entry/toString ()Ljava/lang/String; net/minecraft/world/level/levelgen/WorldDimensions$1Entry/toString ()Ljava/lang/String; +MD: net/minecraft/world/level/levelgen/WorldDimensions$Complete/ (Lnet/minecraft/core/Registry;Lnet/minecraft/world/level/storage/PrimaryLevelData$SpecialWorldProperty;)V net/minecraft/world/level/levelgen/WorldDimensions$Complete/ (Lnet/minecraft/core/Registry;Lnet/minecraft/world/level/storage/PrimaryLevelData$SpecialWorldProperty;)V +MD: net/minecraft/world/level/levelgen/WorldDimensions$Complete/equals (Ljava/lang/Object;)Z net/minecraft/world/level/levelgen/WorldDimensions$Complete/equals (Ljava/lang/Object;)Z +MD: net/minecraft/world/level/levelgen/WorldDimensions$Complete/f_244049_ ()Lnet/minecraft/core/Registry; net/minecraft/world/level/levelgen/WorldDimensions$Complete/dimensions ()Lnet/minecraft/core/Registry; +MD: net/minecraft/world/level/levelgen/WorldDimensions$Complete/f_244634_ ()Lnet/minecraft/world/level/storage/PrimaryLevelData$SpecialWorldProperty; net/minecraft/world/level/levelgen/WorldDimensions$Complete/specialWorldProperty ()Lnet/minecraft/world/level/storage/PrimaryLevelData$SpecialWorldProperty; +MD: net/minecraft/world/level/levelgen/WorldDimensions$Complete/hashCode ()I net/minecraft/world/level/levelgen/WorldDimensions$Complete/hashCode ()I +MD: net/minecraft/world/level/levelgen/WorldDimensions$Complete/m_245593_ ()Lnet/minecraft/core/RegistryAccess$Frozen; net/minecraft/world/level/levelgen/WorldDimensions$Complete/dimensionsRegistryAccess ()Lnet/minecraft/core/RegistryAccess$Frozen; +MD: net/minecraft/world/level/levelgen/WorldDimensions$Complete/m_245945_ ()Lcom/mojang/serialization/Lifecycle; net/minecraft/world/level/levelgen/WorldDimensions$Complete/lifecycle ()Lcom/mojang/serialization/Lifecycle; +MD: net/minecraft/world/level/levelgen/WorldDimensions$Complete/toString ()Ljava/lang/String; net/minecraft/world/level/levelgen/WorldDimensions$Complete/toString ()Ljava/lang/String; +MD: net/minecraft/world/level/levelgen/WorldGenSettings/ ()V net/minecraft/world/level/levelgen/WorldGenSettings/ ()V +MD: net/minecraft/world/level/levelgen/WorldGenSettings/ (Lnet/minecraft/world/level/levelgen/WorldOptions;Lnet/minecraft/world/level/levelgen/WorldDimensions;)V net/minecraft/world/level/levelgen/WorldGenSettings/ (Lnet/minecraft/world/level/levelgen/WorldOptions;Lnet/minecraft/world/level/levelgen/WorldDimensions;)V +MD: net/minecraft/world/level/levelgen/WorldGenSettings/equals (Ljava/lang/Object;)Z net/minecraft/world/level/levelgen/WorldGenSettings/equals (Ljava/lang/Object;)Z +MD: net/minecraft/world/level/levelgen/WorldGenSettings/f_243992_ ()Lnet/minecraft/world/level/levelgen/WorldOptions; net/minecraft/world/level/levelgen/WorldGenSettings/options ()Lnet/minecraft/world/level/levelgen/WorldOptions; +MD: net/minecraft/world/level/levelgen/WorldGenSettings/f_64605_ ()Lnet/minecraft/world/level/levelgen/WorldDimensions; net/minecraft/world/level/levelgen/WorldGenSettings/dimensions ()Lnet/minecraft/world/level/levelgen/WorldDimensions; +MD: net/minecraft/world/level/levelgen/WorldGenSettings/hashCode ()I net/minecraft/world/level/levelgen/WorldGenSettings/hashCode ()I +MD: net/minecraft/world/level/levelgen/WorldGenSettings/m_245022_ (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/world/level/levelgen/WorldGenSettings/lambda$static$0 (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/world/level/levelgen/WorldGenSettings/m_245563_ (Lcom/mojang/serialization/DynamicOps;Lnet/minecraft/world/level/levelgen/WorldOptions;Lnet/minecraft/core/RegistryAccess;)Lcom/mojang/serialization/DataResult; net/minecraft/world/level/levelgen/WorldGenSettings/encode (Lcom/mojang/serialization/DynamicOps;Lnet/minecraft/world/level/levelgen/WorldOptions;Lnet/minecraft/core/RegistryAccess;)Lcom/mojang/serialization/DataResult; +MD: net/minecraft/world/level/levelgen/WorldGenSettings/m_246823_ (Lcom/mojang/serialization/DynamicOps;Lnet/minecraft/world/level/levelgen/WorldOptions;Lnet/minecraft/world/level/levelgen/WorldDimensions;)Lcom/mojang/serialization/DataResult; net/minecraft/world/level/levelgen/WorldGenSettings/encode (Lcom/mojang/serialization/DynamicOps;Lnet/minecraft/world/level/levelgen/WorldOptions;Lnet/minecraft/world/level/levelgen/WorldDimensions;)Lcom/mojang/serialization/DataResult; +MD: net/minecraft/world/level/levelgen/WorldGenSettings/toString ()Ljava/lang/String; net/minecraft/world/level/levelgen/WorldGenSettings/toString ()Ljava/lang/String; +MD: net/minecraft/world/level/levelgen/WorldGenerationContext/ (Lnet/minecraft/world/level/chunk/ChunkGenerator;Lnet/minecraft/world/level/LevelHeightAccessor;)V net/minecraft/world/level/levelgen/WorldGenerationContext/ (Lnet/minecraft/world/level/chunk/ChunkGenerator;Lnet/minecraft/world/level/LevelHeightAccessor;)V +MD: net/minecraft/world/level/levelgen/WorldGenerationContext/m_142201_ ()I net/minecraft/world/level/levelgen/WorldGenerationContext/getMinGenY ()I +MD: net/minecraft/world/level/levelgen/WorldGenerationContext/m_142208_ ()I net/minecraft/world/level/levelgen/WorldGenerationContext/getGenDepth ()I +MD: net/minecraft/world/level/levelgen/WorldOptions/ ()V net/minecraft/world/level/levelgen/WorldOptions/ ()V +MD: net/minecraft/world/level/levelgen/WorldOptions/ (JZZLjava/util/Optional;)V net/minecraft/world/level/levelgen/WorldOptions/ (JZZLjava/util/Optional;)V +MD: net/minecraft/world/level/levelgen/WorldOptions/ (JZZ)V net/minecraft/world/level/levelgen/WorldOptions/ (JZZ)V +MD: net/minecraft/world/level/levelgen/WorldOptions/m_245056_ (Lnet/minecraft/world/level/levelgen/WorldOptions;)Ljava/util/Optional; net/minecraft/world/level/levelgen/WorldOptions/lambda$static$0 (Lnet/minecraft/world/level/levelgen/WorldOptions;)Ljava/util/Optional; +MD: net/minecraft/world/level/levelgen/WorldOptions/m_245100_ ()Z net/minecraft/world/level/levelgen/WorldOptions/generateBonusChest ()Z +MD: net/minecraft/world/level/levelgen/WorldOptions/m_245499_ ()J net/minecraft/world/level/levelgen/WorldOptions/seed ()J +MD: net/minecraft/world/level/levelgen/WorldOptions/m_247070_ ()Z net/minecraft/world/level/levelgen/WorldOptions/isOldCustomizedWorld ()Z +MD: net/minecraft/world/level/levelgen/WorldOptions/m_247237_ (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/world/level/levelgen/WorldOptions/lambda$static$1 (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/world/level/levelgen/WorldOptions/m_247283_ (Z)Lnet/minecraft/world/level/levelgen/WorldOptions; net/minecraft/world/level/levelgen/WorldOptions/withStructures (Z)Lnet/minecraft/world/level/levelgen/WorldOptions; +MD: net/minecraft/world/level/levelgen/WorldOptions/m_247325_ (Z)Lnet/minecraft/world/level/levelgen/WorldOptions; net/minecraft/world/level/levelgen/WorldOptions/withBonusChest (Z)Lnet/minecraft/world/level/levelgen/WorldOptions; +MD: net/minecraft/world/level/levelgen/WorldOptions/m_247394_ ()Lnet/minecraft/world/level/levelgen/WorldOptions; net/minecraft/world/level/levelgen/WorldOptions/defaultWithRandomSeed ()Lnet/minecraft/world/level/levelgen/WorldOptions; +MD: net/minecraft/world/level/levelgen/WorldOptions/m_247749_ ()Z net/minecraft/world/level/levelgen/WorldOptions/generateStructures ()Z +MD: net/minecraft/world/level/levelgen/WorldOptions/m_255240_ ()J net/minecraft/world/level/levelgen/WorldOptions/randomSeed ()J +MD: net/minecraft/world/level/levelgen/WorldOptions/m_261051_ (Ljava/util/OptionalLong;)Lnet/minecraft/world/level/levelgen/WorldOptions; net/minecraft/world/level/levelgen/WorldOptions/withSeed (Ljava/util/OptionalLong;)Lnet/minecraft/world/level/levelgen/WorldOptions; +MD: net/minecraft/world/level/levelgen/WorldOptions/m_261063_ (Ljava/lang/String;)Ljava/util/OptionalLong; net/minecraft/world/level/levelgen/WorldOptions/parseSeed (Ljava/lang/String;)Ljava/util/OptionalLong; +MD: net/minecraft/world/level/levelgen/WorldgenRandom/ (Lnet/minecraft/util/RandomSource;)V net/minecraft/world/level/levelgen/WorldgenRandom/ (Lnet/minecraft/util/RandomSource;)V +MD: net/minecraft/world/level/levelgen/WorldgenRandom/m_158960_ ()I net/minecraft/world/level/levelgen/WorldgenRandom/getCount ()I +MD: net/minecraft/world/level/levelgen/WorldgenRandom/m_188582_ ()Lnet/minecraft/world/level/levelgen/PositionalRandomFactory; net/minecraft/world/level/levelgen/WorldgenRandom/forkPositional ()Lnet/minecraft/world/level/levelgen/PositionalRandomFactory; +MD: net/minecraft/world/level/levelgen/WorldgenRandom/m_188584_ (J)V net/minecraft/world/level/levelgen/WorldgenRandom/setSeed (J)V +MD: net/minecraft/world/level/levelgen/WorldgenRandom/m_190058_ (JIII)V net/minecraft/world/level/levelgen/WorldgenRandom/setLargeFeatureWithSalt (JIII)V +MD: net/minecraft/world/level/levelgen/WorldgenRandom/m_190064_ (JII)V net/minecraft/world/level/levelgen/WorldgenRandom/setFeatureSeed (JII)V +MD: net/minecraft/world/level/levelgen/WorldgenRandom/m_190068_ (JII)V net/minecraft/world/level/levelgen/WorldgenRandom/setLargeFeatureSeed (JII)V +MD: net/minecraft/world/level/levelgen/WorldgenRandom/m_213769_ ()Lnet/minecraft/util/RandomSource; net/minecraft/world/level/levelgen/WorldgenRandom/fork ()Lnet/minecraft/util/RandomSource; +MD: net/minecraft/world/level/levelgen/WorldgenRandom/m_224681_ (IIJJ)Lnet/minecraft/util/RandomSource; net/minecraft/world/level/levelgen/WorldgenRandom/seedSlimeChunk (IIJJ)Lnet/minecraft/util/RandomSource; +MD: net/minecraft/world/level/levelgen/WorldgenRandom/m_64690_ (JII)J net/minecraft/world/level/levelgen/WorldgenRandom/setDecorationSeed (JII)J +MD: net/minecraft/world/level/levelgen/WorldgenRandom/m_64707_ (I)I net/minecraft/world/level/levelgen/WorldgenRandom/next (I)I +MD: net/minecraft/world/level/levelgen/WorldgenRandom$Algorithm/ ()V net/minecraft/world/level/levelgen/WorldgenRandom$Algorithm/ ()V +MD: net/minecraft/world/level/levelgen/WorldgenRandom$Algorithm/ (Ljava/lang/String;ILjava/util/function/LongFunction;)V net/minecraft/world/level/levelgen/WorldgenRandom$Algorithm/ (Ljava/lang/String;ILjava/util/function/LongFunction;)V +MD: net/minecraft/world/level/levelgen/WorldgenRandom$Algorithm/m_190083_ ()[Lnet/minecraft/world/level/levelgen/WorldgenRandom$Algorithm; net/minecraft/world/level/levelgen/WorldgenRandom$Algorithm/$values ()[Lnet/minecraft/world/level/levelgen/WorldgenRandom$Algorithm; +MD: net/minecraft/world/level/levelgen/WorldgenRandom$Algorithm/m_224687_ (J)Lnet/minecraft/util/RandomSource; net/minecraft/world/level/levelgen/WorldgenRandom$Algorithm/newInstance (J)Lnet/minecraft/util/RandomSource; +MD: net/minecraft/world/level/levelgen/WorldgenRandom$Algorithm/valueOf (Ljava/lang/String;)Lnet/minecraft/world/level/levelgen/WorldgenRandom$Algorithm; net/minecraft/world/level/levelgen/WorldgenRandom$Algorithm/valueOf (Ljava/lang/String;)Lnet/minecraft/world/level/levelgen/WorldgenRandom$Algorithm; +MD: net/minecraft/world/level/levelgen/WorldgenRandom$Algorithm/values ()[Lnet/minecraft/world/level/levelgen/WorldgenRandom$Algorithm; net/minecraft/world/level/levelgen/WorldgenRandom$Algorithm/values ()[Lnet/minecraft/world/level/levelgen/WorldgenRandom$Algorithm; +MD: net/minecraft/world/level/levelgen/Xoroshiro128PlusPlus/ ()V net/minecraft/world/level/levelgen/Xoroshiro128PlusPlus/ ()V +MD: net/minecraft/world/level/levelgen/Xoroshiro128PlusPlus/ (JJ)V net/minecraft/world/level/levelgen/Xoroshiro128PlusPlus/ (JJ)V +MD: net/minecraft/world/level/levelgen/Xoroshiro128PlusPlus/ (Lnet/minecraft/world/level/levelgen/RandomSupport$Seed128bit;)V net/minecraft/world/level/levelgen/Xoroshiro128PlusPlus/ (Lnet/minecraft/world/level/levelgen/RandomSupport$Seed128bit;)V +MD: net/minecraft/world/level/levelgen/Xoroshiro128PlusPlus/m_190096_ ()J net/minecraft/world/level/levelgen/Xoroshiro128PlusPlus/nextLong ()J +MD: net/minecraft/world/level/levelgen/Xoroshiro128PlusPlus/m_287194_ (Ljava/util/stream/LongStream;)Lcom/mojang/serialization/DataResult; net/minecraft/world/level/levelgen/Xoroshiro128PlusPlus/lambda$static$1 (Ljava/util/stream/LongStream;)Lcom/mojang/serialization/DataResult; +MD: net/minecraft/world/level/levelgen/Xoroshiro128PlusPlus/m_287249_ ([J)Lnet/minecraft/world/level/levelgen/Xoroshiro128PlusPlus; net/minecraft/world/level/levelgen/Xoroshiro128PlusPlus/lambda$static$0 ([J)Lnet/minecraft/world/level/levelgen/Xoroshiro128PlusPlus; +MD: net/minecraft/world/level/levelgen/Xoroshiro128PlusPlus/m_287273_ (Lnet/minecraft/world/level/levelgen/Xoroshiro128PlusPlus;)Ljava/util/stream/LongStream; net/minecraft/world/level/levelgen/Xoroshiro128PlusPlus/lambda$static$2 (Lnet/minecraft/world/level/levelgen/Xoroshiro128PlusPlus;)Ljava/util/stream/LongStream; +MD: net/minecraft/world/level/levelgen/XoroshiroRandomSource/ ()V net/minecraft/world/level/levelgen/XoroshiroRandomSource/ ()V +MD: net/minecraft/world/level/levelgen/XoroshiroRandomSource/ (Lnet/minecraft/world/level/levelgen/RandomSupport$Seed128bit;)V net/minecraft/world/level/levelgen/XoroshiroRandomSource/ (Lnet/minecraft/world/level/levelgen/RandomSupport$Seed128bit;)V +MD: net/minecraft/world/level/levelgen/XoroshiroRandomSource/ (J)V net/minecraft/world/level/levelgen/XoroshiroRandomSource/ (J)V +MD: net/minecraft/world/level/levelgen/XoroshiroRandomSource/ (Lnet/minecraft/world/level/levelgen/Xoroshiro128PlusPlus;)V net/minecraft/world/level/levelgen/XoroshiroRandomSource/ (Lnet/minecraft/world/level/levelgen/Xoroshiro128PlusPlus;)V +MD: net/minecraft/world/level/levelgen/XoroshiroRandomSource/ (JJ)V net/minecraft/world/level/levelgen/XoroshiroRandomSource/ (JJ)V +MD: net/minecraft/world/level/levelgen/XoroshiroRandomSource/m_188499_ ()Z net/minecraft/world/level/levelgen/XoroshiroRandomSource/nextBoolean ()Z +MD: net/minecraft/world/level/levelgen/XoroshiroRandomSource/m_188500_ ()D net/minecraft/world/level/levelgen/XoroshiroRandomSource/nextDouble ()D +MD: net/minecraft/world/level/levelgen/XoroshiroRandomSource/m_188501_ ()F net/minecraft/world/level/levelgen/XoroshiroRandomSource/nextFloat ()F +MD: net/minecraft/world/level/levelgen/XoroshiroRandomSource/m_188502_ ()I net/minecraft/world/level/levelgen/XoroshiroRandomSource/nextInt ()I +MD: net/minecraft/world/level/levelgen/XoroshiroRandomSource/m_188503_ (I)I net/minecraft/world/level/levelgen/XoroshiroRandomSource/nextInt (I)I +MD: net/minecraft/world/level/levelgen/XoroshiroRandomSource/m_188505_ ()J net/minecraft/world/level/levelgen/XoroshiroRandomSource/nextLong ()J +MD: net/minecraft/world/level/levelgen/XoroshiroRandomSource/m_188582_ ()Lnet/minecraft/world/level/levelgen/PositionalRandomFactory; net/minecraft/world/level/levelgen/XoroshiroRandomSource/forkPositional ()Lnet/minecraft/world/level/levelgen/PositionalRandomFactory; +MD: net/minecraft/world/level/levelgen/XoroshiroRandomSource/m_188583_ ()D net/minecraft/world/level/levelgen/XoroshiroRandomSource/nextGaussian ()D +MD: net/minecraft/world/level/levelgen/XoroshiroRandomSource/m_188584_ (J)V net/minecraft/world/level/levelgen/XoroshiroRandomSource/setSeed (J)V +MD: net/minecraft/world/level/levelgen/XoroshiroRandomSource/m_190107_ (I)J net/minecraft/world/level/levelgen/XoroshiroRandomSource/nextBits (I)J +MD: net/minecraft/world/level/levelgen/XoroshiroRandomSource/m_190110_ (I)V net/minecraft/world/level/levelgen/XoroshiroRandomSource/consumeCount (I)V +MD: net/minecraft/world/level/levelgen/XoroshiroRandomSource/m_213769_ ()Lnet/minecraft/util/RandomSource; net/minecraft/world/level/levelgen/XoroshiroRandomSource/fork ()Lnet/minecraft/util/RandomSource; +MD: net/minecraft/world/level/levelgen/XoroshiroRandomSource/m_287168_ (Lnet/minecraft/world/level/levelgen/Xoroshiro128PlusPlus;)Lnet/minecraft/world/level/levelgen/XoroshiroRandomSource; net/minecraft/world/level/levelgen/XoroshiroRandomSource/lambda$static$0 (Lnet/minecraft/world/level/levelgen/Xoroshiro128PlusPlus;)Lnet/minecraft/world/level/levelgen/XoroshiroRandomSource; +MD: net/minecraft/world/level/levelgen/XoroshiroRandomSource/m_287215_ (Lnet/minecraft/world/level/levelgen/XoroshiroRandomSource;)Lnet/minecraft/world/level/levelgen/Xoroshiro128PlusPlus; net/minecraft/world/level/levelgen/XoroshiroRandomSource/lambda$static$1 (Lnet/minecraft/world/level/levelgen/XoroshiroRandomSource;)Lnet/minecraft/world/level/levelgen/Xoroshiro128PlusPlus; +MD: net/minecraft/world/level/levelgen/XoroshiroRandomSource$XoroshiroPositionalRandomFactory/ (JJ)V net/minecraft/world/level/levelgen/XoroshiroRandomSource$XoroshiroPositionalRandomFactory/ (JJ)V +MD: net/minecraft/world/level/levelgen/XoroshiroRandomSource$XoroshiroPositionalRandomFactory/m_183502_ (Ljava/lang/StringBuilder;)V net/minecraft/world/level/levelgen/XoroshiroRandomSource$XoroshiroPositionalRandomFactory/parityConfigString (Ljava/lang/StringBuilder;)V +MD: net/minecraft/world/level/levelgen/XoroshiroRandomSource$XoroshiroPositionalRandomFactory/m_213715_ (III)Lnet/minecraft/util/RandomSource; net/minecraft/world/level/levelgen/XoroshiroRandomSource$XoroshiroPositionalRandomFactory/at (III)Lnet/minecraft/util/RandomSource; +MD: net/minecraft/world/level/levelgen/XoroshiroRandomSource$XoroshiroPositionalRandomFactory/m_214111_ (Ljava/lang/String;)Lnet/minecraft/util/RandomSource; net/minecraft/world/level/levelgen/XoroshiroRandomSource$XoroshiroPositionalRandomFactory/fromHashOf (Ljava/lang/String;)Lnet/minecraft/util/RandomSource; +MD: net/minecraft/world/level/levelgen/blending/Blender/ ()V net/minecraft/world/level/levelgen/blending/Blender/ ()V +MD: net/minecraft/world/level/levelgen/blending/Blender/ (Lit/unimi/dsi/fastutil/longs/Long2ObjectOpenHashMap;Lit/unimi/dsi/fastutil/longs/Long2ObjectOpenHashMap;)V net/minecraft/world/level/levelgen/blending/Blender/ (Lit/unimi/dsi/fastutil/longs/Long2ObjectOpenHashMap;Lit/unimi/dsi/fastutil/longs/Long2ObjectOpenHashMap;)V +MD: net/minecraft/world/level/levelgen/blending/Blender/m_183383_ (Lnet/minecraft/world/level/biome/BiomeResolver;)Lnet/minecraft/world/level/biome/BiomeResolver; net/minecraft/world/level/levelgen/blending/Blender/getBiomeResolver (Lnet/minecraft/world/level/biome/BiomeResolver;)Lnet/minecraft/world/level/biome/BiomeResolver; +MD: net/minecraft/world/level/levelgen/blending/Blender/m_190153_ ()Lnet/minecraft/world/level/levelgen/blending/Blender; net/minecraft/world/level/levelgen/blending/Blender/empty ()Lnet/minecraft/world/level/levelgen/blending/Blender; +MD: net/minecraft/world/level/levelgen/blending/Blender/m_190154_ (D)D net/minecraft/world/level/levelgen/blending/Blender/heightToOffset (D)D +MD: net/minecraft/world/level/levelgen/blending/Blender/m_190174_ (IIILnet/minecraft/world/level/levelgen/blending/Blender$CellValueGetter;)D net/minecraft/world/level/levelgen/blending/Blender/getBlendingDataValue (IIILnet/minecraft/world/level/levelgen/blending/Blender$CellValueGetter;)D +MD: net/minecraft/world/level/levelgen/blending/Blender/m_190193_ (IILorg/apache/commons/lang3/mutable/MutableDouble;Lorg/apache/commons/lang3/mutable/MutableDouble;Lorg/apache/commons/lang3/mutable/MutableDouble;IID)V net/minecraft/world/level/levelgen/blending/Blender/lambda$blendOffsetAndFactor$0 (IILorg/apache/commons/lang3/mutable/MutableDouble;Lorg/apache/commons/lang3/mutable/MutableDouble;Lorg/apache/commons/lang3/mutable/MutableDouble;IID)V +MD: net/minecraft/world/level/levelgen/blending/Blender/m_190202_ (Lnet/minecraft/server/level/WorldGenRegion;)Lnet/minecraft/world/level/levelgen/blending/Blender; net/minecraft/world/level/levelgen/blending/Blender/of (Lnet/minecraft/server/level/WorldGenRegion;)Lnet/minecraft/world/level/levelgen/blending/Blender; +MD: net/minecraft/world/level/levelgen/blending/Blender/m_190211_ (Lnet/minecraft/world/level/levelgen/blending/Blender$CellValueGetter;IIIII)D net/minecraft/world/level/levelgen/blending/Blender/getBlendingDataValue (Lnet/minecraft/world/level/levelgen/blending/Blender$CellValueGetter;IIIII)D +MD: net/minecraft/world/level/levelgen/blending/Blender/m_197024_ (DDDDDD)D net/minecraft/world/level/levelgen/blending/Blender/distanceToCube (DDDDDD)D +MD: net/minecraft/world/level/levelgen/blending/Blender/m_197031_ (Lnet/minecraft/server/level/WorldGenRegion;Lnet/minecraft/world/level/chunk/ChunkAccess;)V net/minecraft/world/level/levelgen/blending/Blender/generateBorderTicks (Lnet/minecraft/server/level/WorldGenRegion;Lnet/minecraft/world/level/chunk/ChunkAccess;)V +MD: net/minecraft/world/level/levelgen/blending/Blender/m_197034_ (Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/world/level/chunk/ProtoChunk;)V net/minecraft/world/level/levelgen/blending/Blender/addAroundOldChunksCarvingMaskFilter (Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/world/level/chunk/ProtoChunk;)V +MD: net/minecraft/world/level/levelgen/blending/Blender/m_197040_ (Lnet/minecraft/world/level/chunk/ChunkAccess;Lnet/minecraft/core/BlockPos;)V net/minecraft/world/level/levelgen/blending/Blender/generateBorderTick (Lnet/minecraft/world/level/chunk/ChunkAccess;Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/world/level/levelgen/blending/Blender/m_202223_ (IIILorg/apache/commons/lang3/mutable/MutableDouble;Lorg/apache/commons/lang3/mutable/MutableDouble;Lorg/apache/commons/lang3/mutable/MutableDouble;IIID)V net/minecraft/world/level/levelgen/blending/Blender/lambda$blendDensity$2 (IIILorg/apache/commons/lang3/mutable/MutableDouble;Lorg/apache/commons/lang3/mutable/MutableDouble;Lorg/apache/commons/lang3/mutable/MutableDouble;IIID)V +MD: net/minecraft/world/level/levelgen/blending/Blender/m_202234_ (IIILorg/apache/commons/lang3/mutable/MutableDouble;Lorg/apache/commons/lang3/mutable/MutableDouble;Lorg/apache/commons/lang3/mutable/MutableDouble;Ljava/lang/Long;Lnet/minecraft/world/level/levelgen/blending/BlendingData;)V net/minecraft/world/level/levelgen/blending/Blender/lambda$blendDensity$3 (IIILorg/apache/commons/lang3/mutable/MutableDouble;Lorg/apache/commons/lang3/mutable/MutableDouble;Lorg/apache/commons/lang3/mutable/MutableDouble;Ljava/lang/Long;Lnet/minecraft/world/level/levelgen/blending/BlendingData;)V +MD: net/minecraft/world/level/levelgen/blending/Blender/m_202243_ (IILorg/apache/commons/lang3/mutable/MutableDouble;Lorg/apache/commons/lang3/mutable/MutableDouble;Lorg/apache/commons/lang3/mutable/MutableDouble;Ljava/lang/Long;Lnet/minecraft/world/level/levelgen/blending/BlendingData;)V net/minecraft/world/level/levelgen/blending/Blender/lambda$blendOffsetAndFactor$1 (IILorg/apache/commons/lang3/mutable/MutableDouble;Lorg/apache/commons/lang3/mutable/MutableDouble;Lorg/apache/commons/lang3/mutable/MutableDouble;Ljava/lang/Long;Lnet/minecraft/world/level/levelgen/blending/BlendingData;)V +MD: net/minecraft/world/level/levelgen/blending/Blender/m_202257_ (Lnet/minecraft/world/level/chunk/CarvingMask$Mask;Lnet/minecraft/world/level/chunk/CarvingMask;)V net/minecraft/world/level/levelgen/blending/Blender/lambda$addAroundOldChunksCarvingMaskFilter$8 (Lnet/minecraft/world/level/chunk/CarvingMask$Mask;Lnet/minecraft/world/level/chunk/CarvingMask;)V +MD: net/minecraft/world/level/levelgen/blending/Blender/m_202260_ (Lnet/minecraft/world/level/levelgen/blending/Blender$DistanceGetter;III)Z net/minecraft/world/level/levelgen/blending/Blender/lambda$addAroundOldChunksCarvingMaskFilter$7 (Lnet/minecraft/world/level/levelgen/blending/Blender$DistanceGetter;III)Z +MD: net/minecraft/world/level/levelgen/blending/Blender/m_202265_ (Ljava/util/List;DDD)D net/minecraft/world/level/levelgen/blending/Blender/lambda$makeOldChunkDistanceGetter$10 (Ljava/util/List;DDD)D +MD: net/minecraft/world/level/levelgen/blending/Blender/m_204667_ (Lnet/minecraft/world/level/biome/BiomeResolver;IIILnet/minecraft/world/level/biome/Climate$Sampler;)Lnet/minecraft/core/Holder; net/minecraft/world/level/levelgen/blending/Blender/lambda$getBiomeResolver$4 (Lnet/minecraft/world/level/biome/BiomeResolver;IIILnet/minecraft/world/level/biome/Climate$Sampler;)Lnet/minecraft/core/Holder; +MD: net/minecraft/world/level/levelgen/blending/Blender/m_207103_ (Lnet/minecraft/world/level/levelgen/DensityFunction$FunctionContext;D)D net/minecraft/world/level/levelgen/blending/Blender/blendDensity (Lnet/minecraft/world/level/levelgen/DensityFunction$FunctionContext;D)D +MD: net/minecraft/world/level/levelgen/blending/Blender/m_207242_ (II)Lnet/minecraft/world/level/levelgen/blending/Blender$BlendingOutput; net/minecraft/world/level/levelgen/blending/Blender/blendOffsetAndFactor (II)Lnet/minecraft/world/level/levelgen/blending/Blender$BlendingOutput; +MD: net/minecraft/world/level/levelgen/blending/Blender/m_224698_ (DDDDDDD)D net/minecraft/world/level/levelgen/blending/Blender/lambda$makeOffsetOldChunkDistanceGetter$11 (DDDDDDD)D +MD: net/minecraft/world/level/levelgen/blending/Blender/m_224706_ (III)Lnet/minecraft/core/Holder; net/minecraft/world/level/levelgen/blending/Blender/blendBiome (III)Lnet/minecraft/core/Holder; +MD: net/minecraft/world/level/levelgen/blending/Blender/m_224710_ (IIILorg/apache/commons/lang3/mutable/MutableDouble;Lorg/apache/commons/lang3/mutable/MutableObject;Ljava/lang/Long;Lnet/minecraft/world/level/levelgen/blending/BlendingData;)V net/minecraft/world/level/levelgen/blending/Blender/lambda$blendBiome$6 (IIILorg/apache/commons/lang3/mutable/MutableDouble;Lorg/apache/commons/lang3/mutable/MutableObject;Ljava/lang/Long;Lnet/minecraft/world/level/levelgen/blending/BlendingData;)V +MD: net/minecraft/world/level/levelgen/blending/Blender/m_224718_ (IILorg/apache/commons/lang3/mutable/MutableDouble;Lorg/apache/commons/lang3/mutable/MutableObject;IILnet/minecraft/core/Holder;)V net/minecraft/world/level/levelgen/blending/Blender/lambda$blendBiome$5 (IILorg/apache/commons/lang3/mutable/MutableDouble;Lorg/apache/commons/lang3/mutable/MutableObject;IILnet/minecraft/core/Holder;)V +MD: net/minecraft/world/level/levelgen/blending/Blender/m_224726_ (Lnet/minecraft/world/level/levelgen/blending/BlendingData;Ljava/util/Map;)Lnet/minecraft/world/level/levelgen/blending/Blender$DistanceGetter; net/minecraft/world/level/levelgen/blending/Blender/makeOldChunkDistanceGetter (Lnet/minecraft/world/level/levelgen/blending/BlendingData;Ljava/util/Map;)Lnet/minecraft/world/level/levelgen/blending/Blender$DistanceGetter; +MD: net/minecraft/world/level/levelgen/blending/Blender/m_224729_ (Lnet/minecraft/core/Direction8;Lnet/minecraft/world/level/levelgen/blending/BlendingData;)Lnet/minecraft/world/level/levelgen/blending/Blender$DistanceGetter; net/minecraft/world/level/levelgen/blending/Blender/makeOffsetOldChunkDistanceGetter (Lnet/minecraft/core/Direction8;Lnet/minecraft/world/level/levelgen/blending/BlendingData;)Lnet/minecraft/world/level/levelgen/blending/Blender$DistanceGetter; +MD: net/minecraft/world/level/levelgen/blending/Blender/m_224732_ (Ljava/util/List;Lnet/minecraft/core/Direction8;Lnet/minecraft/world/level/levelgen/blending/BlendingData;)V net/minecraft/world/level/levelgen/blending/Blender/lambda$makeOldChunkDistanceGetter$9 (Ljava/util/List;Lnet/minecraft/core/Direction8;Lnet/minecraft/world/level/levelgen/blending/BlendingData;)V +MD: net/minecraft/world/level/levelgen/blending/Blender$1/ (Lit/unimi/dsi/fastutil/longs/Long2ObjectOpenHashMap;Lit/unimi/dsi/fastutil/longs/Long2ObjectOpenHashMap;)V net/minecraft/world/level/levelgen/blending/Blender$1/ (Lit/unimi/dsi/fastutil/longs/Long2ObjectOpenHashMap;Lit/unimi/dsi/fastutil/longs/Long2ObjectOpenHashMap;)V +MD: net/minecraft/world/level/levelgen/blending/Blender$1/m_183383_ (Lnet/minecraft/world/level/biome/BiomeResolver;)Lnet/minecraft/world/level/biome/BiomeResolver; net/minecraft/world/level/levelgen/blending/Blender$1/getBiomeResolver (Lnet/minecraft/world/level/biome/BiomeResolver;)Lnet/minecraft/world/level/biome/BiomeResolver; +MD: net/minecraft/world/level/levelgen/blending/Blender$1/m_207103_ (Lnet/minecraft/world/level/levelgen/DensityFunction$FunctionContext;D)D net/minecraft/world/level/levelgen/blending/Blender$1/blendDensity (Lnet/minecraft/world/level/levelgen/DensityFunction$FunctionContext;D)D +MD: net/minecraft/world/level/levelgen/blending/Blender$1/m_207242_ (II)Lnet/minecraft/world/level/levelgen/blending/Blender$BlendingOutput; net/minecraft/world/level/levelgen/blending/Blender$1/blendOffsetAndFactor (II)Lnet/minecraft/world/level/levelgen/blending/Blender$BlendingOutput; +MD: net/minecraft/world/level/levelgen/blending/Blender$BlendingOutput/ (DD)V net/minecraft/world/level/levelgen/blending/Blender$BlendingOutput/ (DD)V +MD: net/minecraft/world/level/levelgen/blending/Blender$BlendingOutput/equals (Ljava/lang/Object;)Z net/minecraft/world/level/levelgen/blending/Blender$BlendingOutput/equals (Ljava/lang/Object;)Z +MD: net/minecraft/world/level/levelgen/blending/Blender$BlendingOutput/f_209729_ ()D net/minecraft/world/level/levelgen/blending/Blender$BlendingOutput/alpha ()D +MD: net/minecraft/world/level/levelgen/blending/Blender$BlendingOutput/f_209730_ ()D net/minecraft/world/level/levelgen/blending/Blender$BlendingOutput/blendingOffset ()D +MD: net/minecraft/world/level/levelgen/blending/Blender$BlendingOutput/hashCode ()I net/minecraft/world/level/levelgen/blending/Blender$BlendingOutput/hashCode ()I +MD: net/minecraft/world/level/levelgen/blending/Blender$BlendingOutput/toString ()Ljava/lang/String; net/minecraft/world/level/levelgen/blending/Blender$BlendingOutput/toString ()Ljava/lang/String; +MD: net/minecraft/world/level/levelgen/blending/Blender$CellValueGetter/m_190233_ (Lnet/minecraft/world/level/levelgen/blending/BlendingData;III)D net/minecraft/world/level/levelgen/blending/Blender$CellValueGetter/get (Lnet/minecraft/world/level/levelgen/blending/BlendingData;III)D +MD: net/minecraft/world/level/levelgen/blending/Blender$DistanceGetter/m_197061_ (DDD)D net/minecraft/world/level/levelgen/blending/Blender$DistanceGetter/getDistance (DDD)D +MD: net/minecraft/world/level/levelgen/blending/BlendingData/ ()V net/minecraft/world/level/levelgen/blending/BlendingData/ ()V +MD: net/minecraft/world/level/levelgen/blending/BlendingData/ (IILjava/util/Optional;)V net/minecraft/world/level/levelgen/blending/BlendingData/ (IILjava/util/Optional;)V +MD: net/minecraft/world/level/levelgen/blending/BlendingData/m_190285_ (III)D net/minecraft/world/level/levelgen/blending/BlendingData/getHeight (III)D +MD: net/minecraft/world/level/levelgen/blending/BlendingData/m_190289_ (IIIILnet/minecraft/world/level/levelgen/blending/BlendingData$DensityConsumer;)V net/minecraft/world/level/levelgen/blending/BlendingData/iterateDensities (IIIILnet/minecraft/world/level/levelgen/blending/BlendingData$DensityConsumer;)V +MD: net/minecraft/world/level/levelgen/blending/BlendingData/m_190295_ (IILnet/minecraft/world/level/levelgen/blending/BlendingData$HeightConsumer;)V net/minecraft/world/level/levelgen/blending/BlendingData/iterateHeights (IILnet/minecraft/world/level/levelgen/blending/BlendingData$HeightConsumer;)V +MD: net/minecraft/world/level/levelgen/blending/BlendingData/m_190299_ (ILnet/minecraft/world/level/chunk/ChunkAccess;II)V net/minecraft/world/level/levelgen/blending/BlendingData/addValuesForColumn (ILnet/minecraft/world/level/chunk/ChunkAccess;II)V +MD: net/minecraft/world/level/levelgen/blending/BlendingData/m_190304_ (Lnet/minecraft/server/level/WorldGenRegion;II)Lnet/minecraft/world/level/levelgen/blending/BlendingData; net/minecraft/world/level/levelgen/blending/BlendingData/getOrUpdateBlendingData (Lnet/minecraft/server/level/WorldGenRegion;II)Lnet/minecraft/world/level/levelgen/blending/BlendingData; +MD: net/minecraft/world/level/levelgen/blending/BlendingData/m_190310_ (Lnet/minecraft/world/level/chunk/ChunkAccess;II)I net/minecraft/world/level/levelgen/blending/BlendingData/getHeightAtXZ (Lnet/minecraft/world/level/chunk/ChunkAccess;II)I +MD: net/minecraft/world/level/levelgen/blending/BlendingData/m_190314_ (Lnet/minecraft/world/level/chunk/ChunkAccess;Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/level/levelgen/blending/BlendingData/isGround (Lnet/minecraft/world/level/chunk/ChunkAccess;Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/level/levelgen/blending/BlendingData/m_190317_ (Lnet/minecraft/world/level/chunk/ChunkAccess;Ljava/util/Set;)V net/minecraft/world/level/levelgen/blending/BlendingData/calculateData (Lnet/minecraft/world/level/chunk/ChunkAccess;Ljava/util/Set;)V +MD: net/minecraft/world/level/levelgen/blending/BlendingData/m_190320_ (Lnet/minecraft/world/level/levelgen/blending/BlendingData;)Lcom/mojang/serialization/DataResult; net/minecraft/world/level/levelgen/blending/BlendingData/validateArraySize (Lnet/minecraft/world/level/levelgen/blending/BlendingData;)Lcom/mojang/serialization/DataResult; +MD: net/minecraft/world/level/levelgen/blending/BlendingData/m_190324_ ([DI)D net/minecraft/world/level/levelgen/blending/BlendingData/getDensity ([DI)D +MD: net/minecraft/world/level/levelgen/blending/BlendingData/m_190327_ ()I net/minecraft/world/level/levelgen/blending/BlendingData/cellCountPerColumn ()I +MD: net/minecraft/world/level/levelgen/blending/BlendingData/m_190330_ (II)I net/minecraft/world/level/levelgen/blending/BlendingData/getInsideIndex (II)I +MD: net/minecraft/world/level/levelgen/blending/BlendingData/m_190333_ (III)D net/minecraft/world/level/levelgen/blending/BlendingData/getDensity (III)D +MD: net/minecraft/world/level/levelgen/blending/BlendingData/m_190347_ ()I net/minecraft/world/level/levelgen/blending/BlendingData/getColumnMinY ()I +MD: net/minecraft/world/level/levelgen/blending/BlendingData/m_190348_ (I)I net/minecraft/world/level/levelgen/blending/BlendingData/getX (I)I +MD: net/minecraft/world/level/levelgen/blending/BlendingData/m_190350_ (II)I net/minecraft/world/level/levelgen/blending/BlendingData/getOutsideIndex (II)I +MD: net/minecraft/world/level/levelgen/blending/BlendingData/m_190353_ ()I net/minecraft/world/level/levelgen/blending/BlendingData/getMinY ()I +MD: net/minecraft/world/level/levelgen/blending/BlendingData/m_190354_ (I)I net/minecraft/world/level/levelgen/blending/BlendingData/getZ (I)I +MD: net/minecraft/world/level/levelgen/blending/BlendingData/m_190356_ (I)I net/minecraft/world/level/levelgen/blending/BlendingData/zeroIfNegative (I)I +MD: net/minecraft/world/level/levelgen/blending/BlendingData/m_197065_ (Lnet/minecraft/world/level/WorldGenLevel;IIZ)Ljava/util/Set; net/minecraft/world/level/levelgen/blending/BlendingData/sideByGenerationAge (Lnet/minecraft/world/level/WorldGenLevel;IIZ)Ljava/util/Set; +MD: net/minecraft/world/level/levelgen/blending/BlendingData/m_198292_ (Lnet/minecraft/world/level/chunk/ChunkAccess;III)[D net/minecraft/world/level/levelgen/blending/BlendingData/getDensityColumn (Lnet/minecraft/world/level/chunk/ChunkAccess;III)[D +MD: net/minecraft/world/level/levelgen/blending/BlendingData/m_198297_ (Lnet/minecraft/world/level/chunk/ChunkAccess;Lnet/minecraft/core/BlockPos$MutableBlockPos;)D net/minecraft/world/level/levelgen/blending/BlendingData/read1 (Lnet/minecraft/world/level/chunk/ChunkAccess;Lnet/minecraft/core/BlockPos$MutableBlockPos;)D +MD: net/minecraft/world/level/levelgen/blending/BlendingData/m_198300_ (Lnet/minecraft/world/level/chunk/ChunkAccess;Lnet/minecraft/core/BlockPos$MutableBlockPos;)D net/minecraft/world/level/levelgen/blending/BlendingData/read7 (Lnet/minecraft/world/level/chunk/ChunkAccess;Lnet/minecraft/core/BlockPos$MutableBlockPos;)D +MD: net/minecraft/world/level/levelgen/blending/BlendingData/m_224743_ ()Lnet/minecraft/world/level/LevelHeightAccessor; net/minecraft/world/level/levelgen/blending/BlendingData/getAreaWithOldGeneration ()Lnet/minecraft/world/level/LevelHeightAccessor; +MD: net/minecraft/world/level/levelgen/blending/BlendingData/m_224744_ (D)Z net/minecraft/world/level/levelgen/blending/BlendingData/lambda$static$2 (D)Z +MD: net/minecraft/world/level/levelgen/blending/BlendingData/m_224746_ (I)I net/minecraft/world/level/levelgen/blending/BlendingData/getCellYIndex (I)I +MD: net/minecraft/world/level/levelgen/blending/BlendingData/m_224748_ (IIILnet/minecraft/world/level/levelgen/blending/BlendingData$BiomeConsumer;)V net/minecraft/world/level/levelgen/blending/BlendingData/iterateBiomes (IIILnet/minecraft/world/level/levelgen/blending/BlendingData$BiomeConsumer;)V +MD: net/minecraft/world/level/levelgen/blending/BlendingData/m_224753_ (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/world/level/levelgen/blending/BlendingData/lambda$static$4 (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/world/level/levelgen/blending/BlendingData/m_224755_ ([D)V net/minecraft/world/level/levelgen/blending/BlendingData/lambda$new$6 ([D)V +MD: net/minecraft/world/level/levelgen/blending/BlendingData/m_224757_ (Lnet/minecraft/world/level/chunk/ChunkAccess;II)Ljava/util/List; net/minecraft/world/level/levelgen/blending/BlendingData/getBiomeColumn (Lnet/minecraft/world/level/chunk/ChunkAccess;II)Ljava/util/List; +MD: net/minecraft/world/level/levelgen/blending/BlendingData/m_224761_ (Lnet/minecraft/world/level/levelgen/blending/BlendingData;)Ljava/util/Optional; net/minecraft/world/level/levelgen/blending/BlendingData/lambda$static$3 (Lnet/minecraft/world/level/levelgen/blending/BlendingData;)Ljava/util/Optional; +MD: net/minecraft/world/level/levelgen/blending/BlendingData/m_224763_ ()I net/minecraft/world/level/levelgen/blending/BlendingData/quartCountPerColumn ()I +MD: net/minecraft/world/level/levelgen/blending/BlendingData/m_224764_ (Lnet/minecraft/world/level/levelgen/blending/BlendingData;)Ljava/lang/Integer; net/minecraft/world/level/levelgen/blending/BlendingData/lambda$static$1 (Lnet/minecraft/world/level/levelgen/blending/BlendingData;)Ljava/lang/Integer; +MD: net/minecraft/world/level/levelgen/blending/BlendingData/m_224766_ (Lnet/minecraft/world/level/levelgen/blending/BlendingData;)Ljava/lang/Integer; net/minecraft/world/level/levelgen/blending/BlendingData/lambda$static$0 (Lnet/minecraft/world/level/levelgen/blending/BlendingData;)Ljava/lang/Integer; +MD: net/minecraft/world/level/levelgen/blending/BlendingData/m_274287_ ()Ljava/lang/String; net/minecraft/world/level/levelgen/blending/BlendingData/lambda$validateArraySize$5 ()Ljava/lang/String; +MD: net/minecraft/world/level/levelgen/blending/BlendingData$BiomeConsumer/m_204673_ (IILnet/minecraft/core/Holder;)V net/minecraft/world/level/levelgen/blending/BlendingData$BiomeConsumer/consume (IILnet/minecraft/core/Holder;)V +MD: net/minecraft/world/level/levelgen/blending/BlendingData$DensityConsumer/m_190361_ (IIID)V net/minecraft/world/level/levelgen/blending/BlendingData$DensityConsumer/consume (IIID)V +MD: net/minecraft/world/level/levelgen/blending/BlendingData$HeightConsumer/m_190366_ (IID)V net/minecraft/world/level/levelgen/blending/BlendingData$HeightConsumer/consume (IID)V +MD: net/minecraft/world/level/levelgen/blockpredicates/AllOfPredicate/ ()V net/minecraft/world/level/levelgen/blockpredicates/AllOfPredicate/ ()V +MD: net/minecraft/world/level/levelgen/blockpredicates/AllOfPredicate/ (Ljava/util/List;)V net/minecraft/world/level/levelgen/blockpredicates/AllOfPredicate/ (Ljava/util/List;)V +MD: net/minecraft/world/level/levelgen/blockpredicates/AllOfPredicate/m_183575_ ()Lnet/minecraft/world/level/levelgen/blockpredicates/BlockPredicateType; net/minecraft/world/level/levelgen/blockpredicates/AllOfPredicate/type ()Lnet/minecraft/world/level/levelgen/blockpredicates/BlockPredicateType; +MD: net/minecraft/world/level/levelgen/blockpredicates/AllOfPredicate/test (Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/level/levelgen/blockpredicates/AllOfPredicate/test (Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/level/levelgen/blockpredicates/AllOfPredicate/test (Ljava/lang/Object;Ljava/lang/Object;)Z net/minecraft/world/level/levelgen/blockpredicates/AllOfPredicate/test (Ljava/lang/Object;Ljava/lang/Object;)Z +MD: net/minecraft/world/level/levelgen/blockpredicates/AnyOfPredicate/ ()V net/minecraft/world/level/levelgen/blockpredicates/AnyOfPredicate/ ()V +MD: net/minecraft/world/level/levelgen/blockpredicates/AnyOfPredicate/ (Ljava/util/List;)V net/minecraft/world/level/levelgen/blockpredicates/AnyOfPredicate/ (Ljava/util/List;)V +MD: net/minecraft/world/level/levelgen/blockpredicates/AnyOfPredicate/m_183575_ ()Lnet/minecraft/world/level/levelgen/blockpredicates/BlockPredicateType; net/minecraft/world/level/levelgen/blockpredicates/AnyOfPredicate/type ()Lnet/minecraft/world/level/levelgen/blockpredicates/BlockPredicateType; +MD: net/minecraft/world/level/levelgen/blockpredicates/AnyOfPredicate/test (Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/level/levelgen/blockpredicates/AnyOfPredicate/test (Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/level/levelgen/blockpredicates/AnyOfPredicate/test (Ljava/lang/Object;Ljava/lang/Object;)Z net/minecraft/world/level/levelgen/blockpredicates/AnyOfPredicate/test (Ljava/lang/Object;Ljava/lang/Object;)Z +MD: net/minecraft/world/level/levelgen/blockpredicates/BlockPredicate/ ()V net/minecraft/world/level/levelgen/blockpredicates/BlockPredicate/ ()V +MD: net/minecraft/world/level/levelgen/blockpredicates/BlockPredicate/m_183575_ ()Lnet/minecraft/world/level/levelgen/blockpredicates/BlockPredicateType; net/minecraft/world/level/levelgen/blockpredicates/BlockPredicate/type ()Lnet/minecraft/world/level/levelgen/blockpredicates/BlockPredicateType; +MD: net/minecraft/world/level/levelgen/blockpredicates/BlockPredicate/m_190399_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/Vec3i;)Lnet/minecraft/world/level/levelgen/blockpredicates/BlockPredicate; net/minecraft/world/level/levelgen/blockpredicates/BlockPredicate/wouldSurvive (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/Vec3i;)Lnet/minecraft/world/level/levelgen/blockpredicates/BlockPredicate; +MD: net/minecraft/world/level/levelgen/blockpredicates/BlockPredicate/m_190402_ (Lnet/minecraft/world/level/levelgen/blockpredicates/BlockPredicate;)Lnet/minecraft/world/level/levelgen/blockpredicates/BlockPredicate; net/minecraft/world/level/levelgen/blockpredicates/BlockPredicate/not (Lnet/minecraft/world/level/levelgen/blockpredicates/BlockPredicate;)Lnet/minecraft/world/level/levelgen/blockpredicates/BlockPredicate; +MD: net/minecraft/world/level/levelgen/blockpredicates/BlockPredicate/m_190404_ (Lnet/minecraft/world/level/levelgen/blockpredicates/BlockPredicate;Lnet/minecraft/world/level/levelgen/blockpredicates/BlockPredicate;)Lnet/minecraft/world/level/levelgen/blockpredicates/BlockPredicate; net/minecraft/world/level/levelgen/blockpredicates/BlockPredicate/allOf (Lnet/minecraft/world/level/levelgen/blockpredicates/BlockPredicate;Lnet/minecraft/world/level/levelgen/blockpredicates/BlockPredicate;)Lnet/minecraft/world/level/levelgen/blockpredicates/BlockPredicate; +MD: net/minecraft/world/level/levelgen/blockpredicates/BlockPredicate/m_190410_ (Lnet/minecraft/core/Vec3i;)Lnet/minecraft/world/level/levelgen/blockpredicates/BlockPredicate; net/minecraft/world/level/levelgen/blockpredicates/BlockPredicate/replaceable (Lnet/minecraft/core/Vec3i;)Lnet/minecraft/world/level/levelgen/blockpredicates/BlockPredicate; +MD: net/minecraft/world/level/levelgen/blockpredicates/BlockPredicate/m_190412_ (Ljava/util/List;)Lnet/minecraft/world/level/levelgen/blockpredicates/BlockPredicate; net/minecraft/world/level/levelgen/blockpredicates/BlockPredicate/allOf (Ljava/util/List;)Lnet/minecraft/world/level/levelgen/blockpredicates/BlockPredicate; +MD: net/minecraft/world/level/levelgen/blockpredicates/BlockPredicate/m_190417_ ([Lnet/minecraft/world/level/levelgen/blockpredicates/BlockPredicate;)Lnet/minecraft/world/level/levelgen/blockpredicates/BlockPredicate; net/minecraft/world/level/levelgen/blockpredicates/BlockPredicate/allOf ([Lnet/minecraft/world/level/levelgen/blockpredicates/BlockPredicate;)Lnet/minecraft/world/level/levelgen/blockpredicates/BlockPredicate; +MD: net/minecraft/world/level/levelgen/blockpredicates/BlockPredicate/m_190419_ ()Lnet/minecraft/world/level/levelgen/blockpredicates/BlockPredicate; net/minecraft/world/level/levelgen/blockpredicates/BlockPredicate/replaceable ()Lnet/minecraft/world/level/levelgen/blockpredicates/BlockPredicate; +MD: net/minecraft/world/level/levelgen/blockpredicates/BlockPredicate/m_190420_ (Lnet/minecraft/world/level/levelgen/blockpredicates/BlockPredicate;Lnet/minecraft/world/level/levelgen/blockpredicates/BlockPredicate;)Lnet/minecraft/world/level/levelgen/blockpredicates/BlockPredicate; net/minecraft/world/level/levelgen/blockpredicates/BlockPredicate/anyOf (Lnet/minecraft/world/level/levelgen/blockpredicates/BlockPredicate;Lnet/minecraft/world/level/levelgen/blockpredicates/BlockPredicate;)Lnet/minecraft/world/level/levelgen/blockpredicates/BlockPredicate; +MD: net/minecraft/world/level/levelgen/blockpredicates/BlockPredicate/m_190423_ (Lnet/minecraft/core/Vec3i;)Lnet/minecraft/world/level/levelgen/blockpredicates/BlockPredicate; net/minecraft/world/level/levelgen/blockpredicates/BlockPredicate/solid (Lnet/minecraft/core/Vec3i;)Lnet/minecraft/world/level/levelgen/blockpredicates/BlockPredicate; +MD: net/minecraft/world/level/levelgen/blockpredicates/BlockPredicate/m_190425_ (Ljava/util/List;)Lnet/minecraft/world/level/levelgen/blockpredicates/BlockPredicate; net/minecraft/world/level/levelgen/blockpredicates/BlockPredicate/anyOf (Ljava/util/List;)Lnet/minecraft/world/level/levelgen/blockpredicates/BlockPredicate; +MD: net/minecraft/world/level/levelgen/blockpredicates/BlockPredicate/m_190430_ ([Lnet/minecraft/world/level/levelgen/blockpredicates/BlockPredicate;)Lnet/minecraft/world/level/levelgen/blockpredicates/BlockPredicate; net/minecraft/world/level/levelgen/blockpredicates/BlockPredicate/anyOf ([Lnet/minecraft/world/level/levelgen/blockpredicates/BlockPredicate;)Lnet/minecraft/world/level/levelgen/blockpredicates/BlockPredicate; +MD: net/minecraft/world/level/levelgen/blockpredicates/BlockPredicate/m_190432_ ()Lnet/minecraft/world/level/levelgen/blockpredicates/BlockPredicate; net/minecraft/world/level/levelgen/blockpredicates/BlockPredicate/solid ()Lnet/minecraft/world/level/levelgen/blockpredicates/BlockPredicate; +MD: net/minecraft/world/level/levelgen/blockpredicates/BlockPredicate/m_190433_ (Lnet/minecraft/core/Vec3i;)Lnet/minecraft/world/level/levelgen/blockpredicates/BlockPredicate; net/minecraft/world/level/levelgen/blockpredicates/BlockPredicate/insideWorld (Lnet/minecraft/core/Vec3i;)Lnet/minecraft/world/level/levelgen/blockpredicates/BlockPredicate; +MD: net/minecraft/world/level/levelgen/blockpredicates/BlockPredicate/m_190435_ ()Lnet/minecraft/world/level/levelgen/blockpredicates/BlockPredicate; net/minecraft/world/level/levelgen/blockpredicates/BlockPredicate/alwaysTrue ()Lnet/minecraft/world/level/levelgen/blockpredicates/BlockPredicate; +MD: net/minecraft/world/level/levelgen/blockpredicates/BlockPredicate/m_198308_ (Lnet/minecraft/core/Vec3i;Lnet/minecraft/core/Direction;)Lnet/minecraft/world/level/levelgen/blockpredicates/BlockPredicate; net/minecraft/world/level/levelgen/blockpredicates/BlockPredicate/hasSturdyFace (Lnet/minecraft/core/Vec3i;Lnet/minecraft/core/Direction;)Lnet/minecraft/world/level/levelgen/blockpredicates/BlockPredicate; +MD: net/minecraft/world/level/levelgen/blockpredicates/BlockPredicate/m_198311_ (Ljava/util/List;)Lnet/minecraft/world/level/levelgen/blockpredicates/BlockPredicate; net/minecraft/world/level/levelgen/blockpredicates/BlockPredicate/matchesBlocks (Ljava/util/List;)Lnet/minecraft/world/level/levelgen/blockpredicates/BlockPredicate; +MD: net/minecraft/world/level/levelgen/blockpredicates/BlockPredicate/m_198913_ (Lnet/minecraft/core/Direction;)Lnet/minecraft/world/level/levelgen/blockpredicates/BlockPredicate; net/minecraft/world/level/levelgen/blockpredicates/BlockPredicate/hasSturdyFace (Lnet/minecraft/core/Direction;)Lnet/minecraft/world/level/levelgen/blockpredicates/BlockPredicate; +MD: net/minecraft/world/level/levelgen/blockpredicates/BlockPredicate/m_204677_ (Lnet/minecraft/tags/TagKey;)Lnet/minecraft/world/level/levelgen/blockpredicates/BlockPredicate; net/minecraft/world/level/levelgen/blockpredicates/BlockPredicate/matchesTag (Lnet/minecraft/tags/TagKey;)Lnet/minecraft/world/level/levelgen/blockpredicates/BlockPredicate; +MD: net/minecraft/world/level/levelgen/blockpredicates/BlockPredicate/m_224768_ (Lnet/minecraft/core/Vec3i;Lnet/minecraft/tags/TagKey;)Lnet/minecraft/world/level/levelgen/blockpredicates/BlockPredicate; net/minecraft/world/level/levelgen/blockpredicates/BlockPredicate/matchesTag (Lnet/minecraft/core/Vec3i;Lnet/minecraft/tags/TagKey;)Lnet/minecraft/world/level/levelgen/blockpredicates/BlockPredicate; +MD: net/minecraft/world/level/levelgen/blockpredicates/BlockPredicate/m_224771_ (Lnet/minecraft/core/Vec3i;Ljava/util/List;)Lnet/minecraft/world/level/levelgen/blockpredicates/BlockPredicate; net/minecraft/world/level/levelgen/blockpredicates/BlockPredicate/matchesBlocks (Lnet/minecraft/core/Vec3i;Ljava/util/List;)Lnet/minecraft/world/level/levelgen/blockpredicates/BlockPredicate; +MD: net/minecraft/world/level/levelgen/blockpredicates/BlockPredicate/m_224774_ (Lnet/minecraft/core/Vec3i;[Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/levelgen/blockpredicates/BlockPredicate; net/minecraft/world/level/levelgen/blockpredicates/BlockPredicate/matchesBlocks (Lnet/minecraft/core/Vec3i;[Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/levelgen/blockpredicates/BlockPredicate; +MD: net/minecraft/world/level/levelgen/blockpredicates/BlockPredicate/m_224777_ (Lnet/minecraft/core/Vec3i;[Lnet/minecraft/world/level/material/Fluid;)Lnet/minecraft/world/level/levelgen/blockpredicates/BlockPredicate; net/minecraft/world/level/levelgen/blockpredicates/BlockPredicate/matchesFluids (Lnet/minecraft/core/Vec3i;[Lnet/minecraft/world/level/material/Fluid;)Lnet/minecraft/world/level/levelgen/blockpredicates/BlockPredicate; +MD: net/minecraft/world/level/levelgen/blockpredicates/BlockPredicate/m_224780_ ([Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/levelgen/blockpredicates/BlockPredicate; net/minecraft/world/level/levelgen/blockpredicates/BlockPredicate/matchesBlocks ([Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/levelgen/blockpredicates/BlockPredicate; +MD: net/minecraft/world/level/levelgen/blockpredicates/BlockPredicate/m_224782_ ([Lnet/minecraft/world/level/material/Fluid;)Lnet/minecraft/world/level/levelgen/blockpredicates/BlockPredicate; net/minecraft/world/level/levelgen/blockpredicates/BlockPredicate/matchesFluids ([Lnet/minecraft/world/level/material/Fluid;)Lnet/minecraft/world/level/levelgen/blockpredicates/BlockPredicate; +MD: net/minecraft/world/level/levelgen/blockpredicates/BlockPredicate/m_224784_ (Lnet/minecraft/core/Vec3i;Ljava/util/List;)Lnet/minecraft/world/level/levelgen/blockpredicates/BlockPredicate; net/minecraft/world/level/levelgen/blockpredicates/BlockPredicate/matchesFluids (Lnet/minecraft/core/Vec3i;Ljava/util/List;)Lnet/minecraft/world/level/levelgen/blockpredicates/BlockPredicate; +MD: net/minecraft/world/level/levelgen/blockpredicates/BlockPredicate/m_245833_ (Lnet/minecraft/core/Vec3i;)Lnet/minecraft/world/level/levelgen/blockpredicates/BlockPredicate; net/minecraft/world/level/levelgen/blockpredicates/BlockPredicate/noFluid (Lnet/minecraft/core/Vec3i;)Lnet/minecraft/world/level/levelgen/blockpredicates/BlockPredicate; +MD: net/minecraft/world/level/levelgen/blockpredicates/BlockPredicate/m_246848_ ()Lnet/minecraft/world/level/levelgen/blockpredicates/BlockPredicate; net/minecraft/world/level/levelgen/blockpredicates/BlockPredicate/noFluid ()Lnet/minecraft/world/level/levelgen/blockpredicates/BlockPredicate; +MD: net/minecraft/world/level/levelgen/blockpredicates/BlockPredicateType/ ()V net/minecraft/world/level/levelgen/blockpredicates/BlockPredicateType/ ()V +MD: net/minecraft/world/level/levelgen/blockpredicates/BlockPredicateType/m_190447_ (Lcom/mojang/serialization/Codec;)Lcom/mojang/serialization/Codec; net/minecraft/world/level/levelgen/blockpredicates/BlockPredicateType/lambda$register$0 (Lcom/mojang/serialization/Codec;)Lcom/mojang/serialization/Codec; +MD: net/minecraft/world/level/levelgen/blockpredicates/BlockPredicateType/m_190449_ (Ljava/lang/String;Lcom/mojang/serialization/Codec;)Lnet/minecraft/world/level/levelgen/blockpredicates/BlockPredicateType; net/minecraft/world/level/levelgen/blockpredicates/BlockPredicateType/register (Ljava/lang/String;Lcom/mojang/serialization/Codec;)Lnet/minecraft/world/level/levelgen/blockpredicates/BlockPredicateType; +MD: net/minecraft/world/level/levelgen/blockpredicates/BlockPredicateType/m_190452_ ()Lcom/mojang/serialization/Codec; net/minecraft/world/level/levelgen/blockpredicates/BlockPredicateType/codec ()Lcom/mojang/serialization/Codec; +MD: net/minecraft/world/level/levelgen/blockpredicates/CombiningPredicate/ (Ljava/util/List;)V net/minecraft/world/level/levelgen/blockpredicates/CombiningPredicate/ (Ljava/util/List;)V +MD: net/minecraft/world/level/levelgen/blockpredicates/CombiningPredicate/m_190456_ (Lnet/minecraft/world/level/levelgen/blockpredicates/CombiningPredicate;)Ljava/util/List; net/minecraft/world/level/levelgen/blockpredicates/CombiningPredicate/lambda$codec$0 (Lnet/minecraft/world/level/levelgen/blockpredicates/CombiningPredicate;)Ljava/util/List; +MD: net/minecraft/world/level/levelgen/blockpredicates/CombiningPredicate/m_190458_ (Ljava/util/function/Function;)Lcom/mojang/serialization/Codec; net/minecraft/world/level/levelgen/blockpredicates/CombiningPredicate/codec (Ljava/util/function/Function;)Lcom/mojang/serialization/Codec; +MD: net/minecraft/world/level/levelgen/blockpredicates/CombiningPredicate/m_190460_ (Ljava/util/function/Function;Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/world/level/levelgen/blockpredicates/CombiningPredicate/lambda$codec$1 (Ljava/util/function/Function;Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/world/level/levelgen/blockpredicates/HasSturdyFacePredicate/ ()V net/minecraft/world/level/levelgen/blockpredicates/HasSturdyFacePredicate/ ()V +MD: net/minecraft/world/level/levelgen/blockpredicates/HasSturdyFacePredicate/ (Lnet/minecraft/core/Vec3i;Lnet/minecraft/core/Direction;)V net/minecraft/world/level/levelgen/blockpredicates/HasSturdyFacePredicate/ (Lnet/minecraft/core/Vec3i;Lnet/minecraft/core/Direction;)V +MD: net/minecraft/world/level/levelgen/blockpredicates/HasSturdyFacePredicate/m_183575_ ()Lnet/minecraft/world/level/levelgen/blockpredicates/BlockPredicateType; net/minecraft/world/level/levelgen/blockpredicates/HasSturdyFacePredicate/type ()Lnet/minecraft/world/level/levelgen/blockpredicates/BlockPredicateType; +MD: net/minecraft/world/level/levelgen/blockpredicates/HasSturdyFacePredicate/m_198326_ (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/world/level/levelgen/blockpredicates/HasSturdyFacePredicate/lambda$static$2 (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/world/level/levelgen/blockpredicates/HasSturdyFacePredicate/m_198328_ (Lnet/minecraft/world/level/levelgen/blockpredicates/HasSturdyFacePredicate;)Lnet/minecraft/core/Direction; net/minecraft/world/level/levelgen/blockpredicates/HasSturdyFacePredicate/lambda$static$1 (Lnet/minecraft/world/level/levelgen/blockpredicates/HasSturdyFacePredicate;)Lnet/minecraft/core/Direction; +MD: net/minecraft/world/level/levelgen/blockpredicates/HasSturdyFacePredicate/m_198330_ (Lnet/minecraft/world/level/levelgen/blockpredicates/HasSturdyFacePredicate;)Lnet/minecraft/core/Vec3i; net/minecraft/world/level/levelgen/blockpredicates/HasSturdyFacePredicate/lambda$static$0 (Lnet/minecraft/world/level/levelgen/blockpredicates/HasSturdyFacePredicate;)Lnet/minecraft/core/Vec3i; +MD: net/minecraft/world/level/levelgen/blockpredicates/HasSturdyFacePredicate/test (Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/level/levelgen/blockpredicates/HasSturdyFacePredicate/test (Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/level/levelgen/blockpredicates/HasSturdyFacePredicate/test (Ljava/lang/Object;Ljava/lang/Object;)Z net/minecraft/world/level/levelgen/blockpredicates/HasSturdyFacePredicate/test (Ljava/lang/Object;Ljava/lang/Object;)Z +MD: net/minecraft/world/level/levelgen/blockpredicates/InsideWorldBoundsPredicate/ ()V net/minecraft/world/level/levelgen/blockpredicates/InsideWorldBoundsPredicate/ ()V +MD: net/minecraft/world/level/levelgen/blockpredicates/InsideWorldBoundsPredicate/ (Lnet/minecraft/core/Vec3i;)V net/minecraft/world/level/levelgen/blockpredicates/InsideWorldBoundsPredicate/ (Lnet/minecraft/core/Vec3i;)V +MD: net/minecraft/world/level/levelgen/blockpredicates/InsideWorldBoundsPredicate/m_183575_ ()Lnet/minecraft/world/level/levelgen/blockpredicates/BlockPredicateType; net/minecraft/world/level/levelgen/blockpredicates/InsideWorldBoundsPredicate/type ()Lnet/minecraft/world/level/levelgen/blockpredicates/BlockPredicateType; +MD: net/minecraft/world/level/levelgen/blockpredicates/InsideWorldBoundsPredicate/m_190472_ (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/world/level/levelgen/blockpredicates/InsideWorldBoundsPredicate/lambda$static$1 (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/world/level/levelgen/blockpredicates/InsideWorldBoundsPredicate/m_190474_ (Lnet/minecraft/world/level/levelgen/blockpredicates/InsideWorldBoundsPredicate;)Lnet/minecraft/core/Vec3i; net/minecraft/world/level/levelgen/blockpredicates/InsideWorldBoundsPredicate/lambda$static$0 (Lnet/minecraft/world/level/levelgen/blockpredicates/InsideWorldBoundsPredicate;)Lnet/minecraft/core/Vec3i; +MD: net/minecraft/world/level/levelgen/blockpredicates/InsideWorldBoundsPredicate/test (Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/level/levelgen/blockpredicates/InsideWorldBoundsPredicate/test (Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/level/levelgen/blockpredicates/InsideWorldBoundsPredicate/test (Ljava/lang/Object;Ljava/lang/Object;)Z net/minecraft/world/level/levelgen/blockpredicates/InsideWorldBoundsPredicate/test (Ljava/lang/Object;Ljava/lang/Object;)Z +MD: net/minecraft/world/level/levelgen/blockpredicates/MatchingBlockTagPredicate/ ()V net/minecraft/world/level/levelgen/blockpredicates/MatchingBlockTagPredicate/ ()V +MD: net/minecraft/world/level/levelgen/blockpredicates/MatchingBlockTagPredicate/ (Lnet/minecraft/core/Vec3i;Lnet/minecraft/tags/TagKey;)V net/minecraft/world/level/levelgen/blockpredicates/MatchingBlockTagPredicate/ (Lnet/minecraft/core/Vec3i;Lnet/minecraft/tags/TagKey;)V +MD: net/minecraft/world/level/levelgen/blockpredicates/MatchingBlockTagPredicate/m_183454_ (Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/world/level/levelgen/blockpredicates/MatchingBlockTagPredicate/test (Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/world/level/levelgen/blockpredicates/MatchingBlockTagPredicate/m_183575_ ()Lnet/minecraft/world/level/levelgen/blockpredicates/BlockPredicateType; net/minecraft/world/level/levelgen/blockpredicates/MatchingBlockTagPredicate/type ()Lnet/minecraft/world/level/levelgen/blockpredicates/BlockPredicateType; +MD: net/minecraft/world/level/levelgen/blockpredicates/MatchingBlockTagPredicate/m_204685_ (Lnet/minecraft/world/level/levelgen/blockpredicates/MatchingBlockTagPredicate;)Lnet/minecraft/tags/TagKey; net/minecraft/world/level/levelgen/blockpredicates/MatchingBlockTagPredicate/lambda$static$0 (Lnet/minecraft/world/level/levelgen/blockpredicates/MatchingBlockTagPredicate;)Lnet/minecraft/tags/TagKey; +MD: net/minecraft/world/level/levelgen/blockpredicates/MatchingBlockTagPredicate/m_257352_ (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/world/level/levelgen/blockpredicates/MatchingBlockTagPredicate/lambda$static$1 (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/world/level/levelgen/blockpredicates/MatchingBlocksPredicate/ ()V net/minecraft/world/level/levelgen/blockpredicates/MatchingBlocksPredicate/ ()V +MD: net/minecraft/world/level/levelgen/blockpredicates/MatchingBlocksPredicate/ (Lnet/minecraft/core/Vec3i;Lnet/minecraft/core/HolderSet;)V net/minecraft/world/level/levelgen/blockpredicates/MatchingBlocksPredicate/ (Lnet/minecraft/core/Vec3i;Lnet/minecraft/core/HolderSet;)V +MD: net/minecraft/world/level/levelgen/blockpredicates/MatchingBlocksPredicate/m_183454_ (Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/world/level/levelgen/blockpredicates/MatchingBlocksPredicate/test (Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/world/level/levelgen/blockpredicates/MatchingBlocksPredicate/m_183575_ ()Lnet/minecraft/world/level/levelgen/blockpredicates/BlockPredicateType; net/minecraft/world/level/levelgen/blockpredicates/MatchingBlocksPredicate/type ()Lnet/minecraft/world/level/levelgen/blockpredicates/BlockPredicateType; +MD: net/minecraft/world/level/levelgen/blockpredicates/MatchingBlocksPredicate/m_204692_ (Lnet/minecraft/world/level/levelgen/blockpredicates/MatchingBlocksPredicate;)Lnet/minecraft/core/HolderSet; net/minecraft/world/level/levelgen/blockpredicates/MatchingBlocksPredicate/lambda$static$0 (Lnet/minecraft/world/level/levelgen/blockpredicates/MatchingBlocksPredicate;)Lnet/minecraft/core/HolderSet; +MD: net/minecraft/world/level/levelgen/blockpredicates/MatchingBlocksPredicate/m_257353_ (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/world/level/levelgen/blockpredicates/MatchingBlocksPredicate/lambda$static$1 (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/world/level/levelgen/blockpredicates/MatchingFluidsPredicate/ ()V net/minecraft/world/level/levelgen/blockpredicates/MatchingFluidsPredicate/ ()V +MD: net/minecraft/world/level/levelgen/blockpredicates/MatchingFluidsPredicate/ (Lnet/minecraft/core/Vec3i;Lnet/minecraft/core/HolderSet;)V net/minecraft/world/level/levelgen/blockpredicates/MatchingFluidsPredicate/ (Lnet/minecraft/core/Vec3i;Lnet/minecraft/core/HolderSet;)V +MD: net/minecraft/world/level/levelgen/blockpredicates/MatchingFluidsPredicate/m_183454_ (Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/world/level/levelgen/blockpredicates/MatchingFluidsPredicate/test (Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/world/level/levelgen/blockpredicates/MatchingFluidsPredicate/m_183575_ ()Lnet/minecraft/world/level/levelgen/blockpredicates/BlockPredicateType; net/minecraft/world/level/levelgen/blockpredicates/MatchingFluidsPredicate/type ()Lnet/minecraft/world/level/levelgen/blockpredicates/BlockPredicateType; +MD: net/minecraft/world/level/levelgen/blockpredicates/MatchingFluidsPredicate/m_204697_ (Lnet/minecraft/world/level/levelgen/blockpredicates/MatchingFluidsPredicate;)Lnet/minecraft/core/HolderSet; net/minecraft/world/level/levelgen/blockpredicates/MatchingFluidsPredicate/lambda$static$0 (Lnet/minecraft/world/level/levelgen/blockpredicates/MatchingFluidsPredicate;)Lnet/minecraft/core/HolderSet; +MD: net/minecraft/world/level/levelgen/blockpredicates/MatchingFluidsPredicate/m_257354_ (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/world/level/levelgen/blockpredicates/MatchingFluidsPredicate/lambda$static$1 (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/world/level/levelgen/blockpredicates/NotPredicate/ ()V net/minecraft/world/level/levelgen/blockpredicates/NotPredicate/ ()V +MD: net/minecraft/world/level/levelgen/blockpredicates/NotPredicate/ (Lnet/minecraft/world/level/levelgen/blockpredicates/BlockPredicate;)V net/minecraft/world/level/levelgen/blockpredicates/NotPredicate/ (Lnet/minecraft/world/level/levelgen/blockpredicates/BlockPredicate;)V +MD: net/minecraft/world/level/levelgen/blockpredicates/NotPredicate/m_183575_ ()Lnet/minecraft/world/level/levelgen/blockpredicates/BlockPredicateType; net/minecraft/world/level/levelgen/blockpredicates/NotPredicate/type ()Lnet/minecraft/world/level/levelgen/blockpredicates/BlockPredicateType; +MD: net/minecraft/world/level/levelgen/blockpredicates/NotPredicate/m_190514_ (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/world/level/levelgen/blockpredicates/NotPredicate/lambda$static$1 (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/world/level/levelgen/blockpredicates/NotPredicate/m_190516_ (Lnet/minecraft/world/level/levelgen/blockpredicates/NotPredicate;)Lnet/minecraft/world/level/levelgen/blockpredicates/BlockPredicate; net/minecraft/world/level/levelgen/blockpredicates/NotPredicate/lambda$static$0 (Lnet/minecraft/world/level/levelgen/blockpredicates/NotPredicate;)Lnet/minecraft/world/level/levelgen/blockpredicates/BlockPredicate; +MD: net/minecraft/world/level/levelgen/blockpredicates/NotPredicate/test (Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/level/levelgen/blockpredicates/NotPredicate/test (Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/level/levelgen/blockpredicates/NotPredicate/test (Ljava/lang/Object;Ljava/lang/Object;)Z net/minecraft/world/level/levelgen/blockpredicates/NotPredicate/test (Ljava/lang/Object;Ljava/lang/Object;)Z +MD: net/minecraft/world/level/levelgen/blockpredicates/ReplaceablePredicate/ ()V net/minecraft/world/level/levelgen/blockpredicates/ReplaceablePredicate/ ()V +MD: net/minecraft/world/level/levelgen/blockpredicates/ReplaceablePredicate/ (Lnet/minecraft/core/Vec3i;)V net/minecraft/world/level/levelgen/blockpredicates/ReplaceablePredicate/ (Lnet/minecraft/core/Vec3i;)V +MD: net/minecraft/world/level/levelgen/blockpredicates/ReplaceablePredicate/m_183454_ (Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/world/level/levelgen/blockpredicates/ReplaceablePredicate/test (Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/world/level/levelgen/blockpredicates/ReplaceablePredicate/m_183575_ ()Lnet/minecraft/world/level/levelgen/blockpredicates/BlockPredicateType; net/minecraft/world/level/levelgen/blockpredicates/ReplaceablePredicate/type ()Lnet/minecraft/world/level/levelgen/blockpredicates/BlockPredicateType; +MD: net/minecraft/world/level/levelgen/blockpredicates/ReplaceablePredicate/m_190528_ (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/world/level/levelgen/blockpredicates/ReplaceablePredicate/lambda$static$0 (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/world/level/levelgen/blockpredicates/SolidPredicate/ ()V net/minecraft/world/level/levelgen/blockpredicates/SolidPredicate/ ()V +MD: net/minecraft/world/level/levelgen/blockpredicates/SolidPredicate/ (Lnet/minecraft/core/Vec3i;)V net/minecraft/world/level/levelgen/blockpredicates/SolidPredicate/ (Lnet/minecraft/core/Vec3i;)V +MD: net/minecraft/world/level/levelgen/blockpredicates/SolidPredicate/m_183454_ (Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/world/level/levelgen/blockpredicates/SolidPredicate/test (Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/world/level/levelgen/blockpredicates/SolidPredicate/m_183575_ ()Lnet/minecraft/world/level/levelgen/blockpredicates/BlockPredicateType; net/minecraft/world/level/levelgen/blockpredicates/SolidPredicate/type ()Lnet/minecraft/world/level/levelgen/blockpredicates/BlockPredicateType; +MD: net/minecraft/world/level/levelgen/blockpredicates/SolidPredicate/m_190537_ (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/world/level/levelgen/blockpredicates/SolidPredicate/lambda$static$0 (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/world/level/levelgen/blockpredicates/StateTestingPredicate/ (Lnet/minecraft/core/Vec3i;)V net/minecraft/world/level/levelgen/blockpredicates/StateTestingPredicate/ (Lnet/minecraft/core/Vec3i;)V +MD: net/minecraft/world/level/levelgen/blockpredicates/StateTestingPredicate/m_183454_ (Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/world/level/levelgen/blockpredicates/StateTestingPredicate/test (Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/world/level/levelgen/blockpredicates/StateTestingPredicate/m_190546_ (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/Products$P1; net/minecraft/world/level/levelgen/blockpredicates/StateTestingPredicate/stateTestingCodec (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/Products$P1; +MD: net/minecraft/world/level/levelgen/blockpredicates/StateTestingPredicate/m_190548_ (Lnet/minecraft/world/level/levelgen/blockpredicates/StateTestingPredicate;)Lnet/minecraft/core/Vec3i; net/minecraft/world/level/levelgen/blockpredicates/StateTestingPredicate/lambda$stateTestingCodec$0 (Lnet/minecraft/world/level/levelgen/blockpredicates/StateTestingPredicate;)Lnet/minecraft/core/Vec3i; +MD: net/minecraft/world/level/levelgen/blockpredicates/StateTestingPredicate/test (Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/level/levelgen/blockpredicates/StateTestingPredicate/test (Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/level/levelgen/blockpredicates/StateTestingPredicate/test (Ljava/lang/Object;Ljava/lang/Object;)Z net/minecraft/world/level/levelgen/blockpredicates/StateTestingPredicate/test (Ljava/lang/Object;Ljava/lang/Object;)Z +MD: net/minecraft/world/level/levelgen/blockpredicates/TrueBlockPredicate/ ()V net/minecraft/world/level/levelgen/blockpredicates/TrueBlockPredicate/ ()V +MD: net/minecraft/world/level/levelgen/blockpredicates/TrueBlockPredicate/ ()V net/minecraft/world/level/levelgen/blockpredicates/TrueBlockPredicate/ ()V +MD: net/minecraft/world/level/levelgen/blockpredicates/TrueBlockPredicate/m_183575_ ()Lnet/minecraft/world/level/levelgen/blockpredicates/BlockPredicateType; net/minecraft/world/level/levelgen/blockpredicates/TrueBlockPredicate/type ()Lnet/minecraft/world/level/levelgen/blockpredicates/BlockPredicateType; +MD: net/minecraft/world/level/levelgen/blockpredicates/TrueBlockPredicate/m_190561_ ()Lnet/minecraft/world/level/levelgen/blockpredicates/TrueBlockPredicate; net/minecraft/world/level/levelgen/blockpredicates/TrueBlockPredicate/lambda$static$0 ()Lnet/minecraft/world/level/levelgen/blockpredicates/TrueBlockPredicate; +MD: net/minecraft/world/level/levelgen/blockpredicates/TrueBlockPredicate/test (Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/level/levelgen/blockpredicates/TrueBlockPredicate/test (Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/level/levelgen/blockpredicates/TrueBlockPredicate/test (Ljava/lang/Object;Ljava/lang/Object;)Z net/minecraft/world/level/levelgen/blockpredicates/TrueBlockPredicate/test (Ljava/lang/Object;Ljava/lang/Object;)Z +MD: net/minecraft/world/level/levelgen/blockpredicates/WouldSurvivePredicate/ ()V net/minecraft/world/level/levelgen/blockpredicates/WouldSurvivePredicate/ ()V +MD: net/minecraft/world/level/levelgen/blockpredicates/WouldSurvivePredicate/ (Lnet/minecraft/core/Vec3i;Lnet/minecraft/world/level/block/state/BlockState;)V net/minecraft/world/level/levelgen/blockpredicates/WouldSurvivePredicate/ (Lnet/minecraft/core/Vec3i;Lnet/minecraft/world/level/block/state/BlockState;)V +MD: net/minecraft/world/level/levelgen/blockpredicates/WouldSurvivePredicate/m_183575_ ()Lnet/minecraft/world/level/levelgen/blockpredicates/BlockPredicateType; net/minecraft/world/level/levelgen/blockpredicates/WouldSurvivePredicate/type ()Lnet/minecraft/world/level/levelgen/blockpredicates/BlockPredicateType; +MD: net/minecraft/world/level/levelgen/blockpredicates/WouldSurvivePredicate/m_190576_ (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/world/level/levelgen/blockpredicates/WouldSurvivePredicate/lambda$static$2 (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/world/level/levelgen/blockpredicates/WouldSurvivePredicate/m_190578_ (Lnet/minecraft/world/level/levelgen/blockpredicates/WouldSurvivePredicate;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/levelgen/blockpredicates/WouldSurvivePredicate/lambda$static$1 (Lnet/minecraft/world/level/levelgen/blockpredicates/WouldSurvivePredicate;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/levelgen/blockpredicates/WouldSurvivePredicate/m_190580_ (Lnet/minecraft/world/level/levelgen/blockpredicates/WouldSurvivePredicate;)Lnet/minecraft/core/Vec3i; net/minecraft/world/level/levelgen/blockpredicates/WouldSurvivePredicate/lambda$static$0 (Lnet/minecraft/world/level/levelgen/blockpredicates/WouldSurvivePredicate;)Lnet/minecraft/core/Vec3i; +MD: net/minecraft/world/level/levelgen/blockpredicates/WouldSurvivePredicate/test (Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/level/levelgen/blockpredicates/WouldSurvivePredicate/test (Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/level/levelgen/blockpredicates/WouldSurvivePredicate/test (Ljava/lang/Object;Ljava/lang/Object;)Z net/minecraft/world/level/levelgen/blockpredicates/WouldSurvivePredicate/test (Ljava/lang/Object;Ljava/lang/Object;)Z +MD: net/minecraft/world/level/levelgen/carver/CanyonCarverConfiguration/ ()V net/minecraft/world/level/levelgen/carver/CanyonCarverConfiguration/ ()V +MD: net/minecraft/world/level/levelgen/carver/CanyonCarverConfiguration/ (Lnet/minecraft/world/level/levelgen/carver/CarverConfiguration;Lnet/minecraft/util/valueproviders/FloatProvider;Lnet/minecraft/world/level/levelgen/carver/CanyonCarverConfiguration$CanyonShapeConfiguration;)V net/minecraft/world/level/levelgen/carver/CanyonCarverConfiguration/ (Lnet/minecraft/world/level/levelgen/carver/CarverConfiguration;Lnet/minecraft/util/valueproviders/FloatProvider;Lnet/minecraft/world/level/levelgen/carver/CanyonCarverConfiguration$CanyonShapeConfiguration;)V +MD: net/minecraft/world/level/levelgen/carver/CanyonCarverConfiguration/ (FLnet/minecraft/world/level/levelgen/heightproviders/HeightProvider;Lnet/minecraft/util/valueproviders/FloatProvider;Lnet/minecraft/world/level/levelgen/VerticalAnchor;Lnet/minecraft/world/level/levelgen/carver/CarverDebugSettings;Lnet/minecraft/core/HolderSet;Lnet/minecraft/util/valueproviders/FloatProvider;Lnet/minecraft/world/level/levelgen/carver/CanyonCarverConfiguration$CanyonShapeConfiguration;)V net/minecraft/world/level/levelgen/carver/CanyonCarverConfiguration/ (FLnet/minecraft/world/level/levelgen/heightproviders/HeightProvider;Lnet/minecraft/util/valueproviders/FloatProvider;Lnet/minecraft/world/level/levelgen/VerticalAnchor;Lnet/minecraft/world/level/levelgen/carver/CarverDebugSettings;Lnet/minecraft/core/HolderSet;Lnet/minecraft/util/valueproviders/FloatProvider;Lnet/minecraft/world/level/levelgen/carver/CanyonCarverConfiguration$CanyonShapeConfiguration;)V +MD: net/minecraft/world/level/levelgen/carver/CanyonCarverConfiguration/m_158983_ (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/world/level/levelgen/carver/CanyonCarverConfiguration/lambda$static$3 (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/world/level/levelgen/carver/CanyonCarverConfiguration/m_158985_ (Lnet/minecraft/world/level/levelgen/carver/CanyonCarverConfiguration;)Lnet/minecraft/world/level/levelgen/carver/CanyonCarverConfiguration$CanyonShapeConfiguration; net/minecraft/world/level/levelgen/carver/CanyonCarverConfiguration/lambda$static$2 (Lnet/minecraft/world/level/levelgen/carver/CanyonCarverConfiguration;)Lnet/minecraft/world/level/levelgen/carver/CanyonCarverConfiguration$CanyonShapeConfiguration; +MD: net/minecraft/world/level/levelgen/carver/CanyonCarverConfiguration/m_158987_ (Lnet/minecraft/world/level/levelgen/carver/CanyonCarverConfiguration;)Lnet/minecraft/util/valueproviders/FloatProvider; net/minecraft/world/level/levelgen/carver/CanyonCarverConfiguration/lambda$static$1 (Lnet/minecraft/world/level/levelgen/carver/CanyonCarverConfiguration;)Lnet/minecraft/util/valueproviders/FloatProvider; +MD: net/minecraft/world/level/levelgen/carver/CanyonCarverConfiguration/m_158989_ (Lnet/minecraft/world/level/levelgen/carver/CanyonCarverConfiguration;)Lnet/minecraft/world/level/levelgen/carver/CarverConfiguration; net/minecraft/world/level/levelgen/carver/CanyonCarverConfiguration/lambda$static$0 (Lnet/minecraft/world/level/levelgen/carver/CanyonCarverConfiguration;)Lnet/minecraft/world/level/levelgen/carver/CarverConfiguration; +MD: net/minecraft/world/level/levelgen/carver/CanyonCarverConfiguration$CanyonShapeConfiguration/ ()V net/minecraft/world/level/levelgen/carver/CanyonCarverConfiguration$CanyonShapeConfiguration/ ()V +MD: net/minecraft/world/level/levelgen/carver/CanyonCarverConfiguration$CanyonShapeConfiguration/ (Lnet/minecraft/util/valueproviders/FloatProvider;Lnet/minecraft/util/valueproviders/FloatProvider;ILnet/minecraft/util/valueproviders/FloatProvider;FF)V net/minecraft/world/level/levelgen/carver/CanyonCarverConfiguration$CanyonShapeConfiguration/ (Lnet/minecraft/util/valueproviders/FloatProvider;Lnet/minecraft/util/valueproviders/FloatProvider;ILnet/minecraft/util/valueproviders/FloatProvider;FF)V +MD: net/minecraft/world/level/levelgen/carver/CanyonCarverConfiguration$CanyonShapeConfiguration/m_159006_ (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/world/level/levelgen/carver/CanyonCarverConfiguration$CanyonShapeConfiguration/lambda$static$6 (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/world/level/levelgen/carver/CanyonCarverConfiguration$CanyonShapeConfiguration/m_159008_ (Lnet/minecraft/world/level/levelgen/carver/CanyonCarverConfiguration$CanyonShapeConfiguration;)Ljava/lang/Float; net/minecraft/world/level/levelgen/carver/CanyonCarverConfiguration$CanyonShapeConfiguration/lambda$static$5 (Lnet/minecraft/world/level/levelgen/carver/CanyonCarverConfiguration$CanyonShapeConfiguration;)Ljava/lang/Float; +MD: net/minecraft/world/level/levelgen/carver/CanyonCarverConfiguration$CanyonShapeConfiguration/m_159010_ (Lnet/minecraft/world/level/levelgen/carver/CanyonCarverConfiguration$CanyonShapeConfiguration;)Ljava/lang/Float; net/minecraft/world/level/levelgen/carver/CanyonCarverConfiguration$CanyonShapeConfiguration/lambda$static$4 (Lnet/minecraft/world/level/levelgen/carver/CanyonCarverConfiguration$CanyonShapeConfiguration;)Ljava/lang/Float; +MD: net/minecraft/world/level/levelgen/carver/CanyonCarverConfiguration$CanyonShapeConfiguration/m_159012_ (Lnet/minecraft/world/level/levelgen/carver/CanyonCarverConfiguration$CanyonShapeConfiguration;)Lnet/minecraft/util/valueproviders/FloatProvider; net/minecraft/world/level/levelgen/carver/CanyonCarverConfiguration$CanyonShapeConfiguration/lambda$static$3 (Lnet/minecraft/world/level/levelgen/carver/CanyonCarverConfiguration$CanyonShapeConfiguration;)Lnet/minecraft/util/valueproviders/FloatProvider; +MD: net/minecraft/world/level/levelgen/carver/CanyonCarverConfiguration$CanyonShapeConfiguration/m_159014_ (Lnet/minecraft/world/level/levelgen/carver/CanyonCarverConfiguration$CanyonShapeConfiguration;)Ljava/lang/Integer; net/minecraft/world/level/levelgen/carver/CanyonCarverConfiguration$CanyonShapeConfiguration/lambda$static$2 (Lnet/minecraft/world/level/levelgen/carver/CanyonCarverConfiguration$CanyonShapeConfiguration;)Ljava/lang/Integer; +MD: net/minecraft/world/level/levelgen/carver/CanyonCarverConfiguration$CanyonShapeConfiguration/m_159016_ (Lnet/minecraft/world/level/levelgen/carver/CanyonCarverConfiguration$CanyonShapeConfiguration;)Lnet/minecraft/util/valueproviders/FloatProvider; net/minecraft/world/level/levelgen/carver/CanyonCarverConfiguration$CanyonShapeConfiguration/lambda$static$1 (Lnet/minecraft/world/level/levelgen/carver/CanyonCarverConfiguration$CanyonShapeConfiguration;)Lnet/minecraft/util/valueproviders/FloatProvider; +MD: net/minecraft/world/level/levelgen/carver/CanyonCarverConfiguration$CanyonShapeConfiguration/m_159018_ (Lnet/minecraft/world/level/levelgen/carver/CanyonCarverConfiguration$CanyonShapeConfiguration;)Lnet/minecraft/util/valueproviders/FloatProvider; net/minecraft/world/level/levelgen/carver/CanyonCarverConfiguration$CanyonShapeConfiguration/lambda$static$0 (Lnet/minecraft/world/level/levelgen/carver/CanyonCarverConfiguration$CanyonShapeConfiguration;)Lnet/minecraft/util/valueproviders/FloatProvider; +MD: net/minecraft/world/level/levelgen/carver/CanyonWorldCarver/ (Lcom/mojang/serialization/Codec;)V net/minecraft/world/level/levelgen/carver/CanyonWorldCarver/ (Lcom/mojang/serialization/Codec;)V +MD: net/minecraft/world/level/levelgen/carver/CanyonWorldCarver/m_159073_ (Lnet/minecraft/world/level/levelgen/carver/CarvingContext;[FDDDI)Z net/minecraft/world/level/levelgen/carver/CanyonWorldCarver/shouldSkip (Lnet/minecraft/world/level/levelgen/carver/CarvingContext;[FDDDI)Z +MD: net/minecraft/world/level/levelgen/carver/CanyonWorldCarver/m_159080_ ([FLnet/minecraft/world/level/levelgen/carver/CarvingContext;DDDI)Z net/minecraft/world/level/levelgen/carver/CanyonWorldCarver/lambda$doCarve$0 ([FLnet/minecraft/world/level/levelgen/carver/CarvingContext;DDDI)Z +MD: net/minecraft/world/level/levelgen/carver/CanyonWorldCarver/m_190593_ (Lnet/minecraft/world/level/levelgen/carver/CarvingContext;Lnet/minecraft/world/level/levelgen/carver/CanyonCarverConfiguration;Lnet/minecraft/world/level/chunk/ChunkAccess;Ljava/util/function/Function;JLnet/minecraft/world/level/levelgen/Aquifer;DDDFFFIIDLnet/minecraft/world/level/chunk/CarvingMask;)V net/minecraft/world/level/levelgen/carver/CanyonWorldCarver/doCarve (Lnet/minecraft/world/level/levelgen/carver/CarvingContext;Lnet/minecraft/world/level/levelgen/carver/CanyonCarverConfiguration;Lnet/minecraft/world/level/chunk/ChunkAccess;Ljava/util/function/Function;JLnet/minecraft/world/level/levelgen/Aquifer;DDDFFFIIDLnet/minecraft/world/level/chunk/CarvingMask;)V +MD: net/minecraft/world/level/levelgen/carver/CanyonWorldCarver/m_213788_ (Lnet/minecraft/world/level/levelgen/carver/CarvingContext;Lnet/minecraft/world/level/levelgen/carver/CarverConfiguration;Lnet/minecraft/world/level/chunk/ChunkAccess;Ljava/util/function/Function;Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/levelgen/Aquifer;Lnet/minecraft/world/level/ChunkPos;Lnet/minecraft/world/level/chunk/CarvingMask;)Z net/minecraft/world/level/levelgen/carver/CanyonWorldCarver/carve (Lnet/minecraft/world/level/levelgen/carver/CarvingContext;Lnet/minecraft/world/level/levelgen/carver/CarverConfiguration;Lnet/minecraft/world/level/chunk/ChunkAccess;Ljava/util/function/Function;Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/levelgen/Aquifer;Lnet/minecraft/world/level/ChunkPos;Lnet/minecraft/world/level/chunk/CarvingMask;)Z +MD: net/minecraft/world/level/levelgen/carver/CanyonWorldCarver/m_213788_ (Lnet/minecraft/world/level/levelgen/carver/CarvingContext;Lnet/minecraft/world/level/levelgen/carver/CanyonCarverConfiguration;Lnet/minecraft/world/level/chunk/ChunkAccess;Ljava/util/function/Function;Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/levelgen/Aquifer;Lnet/minecraft/world/level/ChunkPos;Lnet/minecraft/world/level/chunk/CarvingMask;)Z net/minecraft/world/level/levelgen/carver/CanyonWorldCarver/carve (Lnet/minecraft/world/level/levelgen/carver/CarvingContext;Lnet/minecraft/world/level/levelgen/carver/CanyonCarverConfiguration;Lnet/minecraft/world/level/chunk/ChunkAccess;Ljava/util/function/Function;Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/levelgen/Aquifer;Lnet/minecraft/world/level/ChunkPos;Lnet/minecraft/world/level/chunk/CarvingMask;)Z +MD: net/minecraft/world/level/levelgen/carver/CanyonWorldCarver/m_214133_ (Lnet/minecraft/world/level/levelgen/carver/CanyonCarverConfiguration;Lnet/minecraft/util/RandomSource;)Z net/minecraft/world/level/levelgen/carver/CanyonWorldCarver/isStartChunk (Lnet/minecraft/world/level/levelgen/carver/CanyonCarverConfiguration;Lnet/minecraft/util/RandomSource;)Z +MD: net/minecraft/world/level/levelgen/carver/CanyonWorldCarver/m_214133_ (Lnet/minecraft/world/level/levelgen/carver/CarverConfiguration;Lnet/minecraft/util/RandomSource;)Z net/minecraft/world/level/levelgen/carver/CanyonWorldCarver/isStartChunk (Lnet/minecraft/world/level/levelgen/carver/CarverConfiguration;Lnet/minecraft/util/RandomSource;)Z +MD: net/minecraft/world/level/levelgen/carver/CanyonWorldCarver/m_224799_ (Lnet/minecraft/world/level/levelgen/carver/CanyonCarverConfiguration;Lnet/minecraft/util/RandomSource;DFF)D net/minecraft/world/level/levelgen/carver/CanyonWorldCarver/updateVerticalRadius (Lnet/minecraft/world/level/levelgen/carver/CanyonCarverConfiguration;Lnet/minecraft/util/RandomSource;DFF)D +MD: net/minecraft/world/level/levelgen/carver/CanyonWorldCarver/m_224808_ (Lnet/minecraft/world/level/levelgen/carver/CarvingContext;Lnet/minecraft/world/level/levelgen/carver/CanyonCarverConfiguration;Lnet/minecraft/util/RandomSource;)[F net/minecraft/world/level/levelgen/carver/CanyonWorldCarver/initWidthFactors (Lnet/minecraft/world/level/levelgen/carver/CarvingContext;Lnet/minecraft/world/level/levelgen/carver/CanyonCarverConfiguration;Lnet/minecraft/util/RandomSource;)[F +MD: net/minecraft/world/level/levelgen/carver/CarverConfiguration/ ()V net/minecraft/world/level/levelgen/carver/CarverConfiguration/ ()V +MD: net/minecraft/world/level/levelgen/carver/CarverConfiguration/ (FLnet/minecraft/world/level/levelgen/heightproviders/HeightProvider;Lnet/minecraft/util/valueproviders/FloatProvider;Lnet/minecraft/world/level/levelgen/VerticalAnchor;Lnet/minecraft/world/level/levelgen/carver/CarverDebugSettings;Lnet/minecraft/core/HolderSet;)V net/minecraft/world/level/levelgen/carver/CarverConfiguration/ (FLnet/minecraft/world/level/levelgen/heightproviders/HeightProvider;Lnet/minecraft/util/valueproviders/FloatProvider;Lnet/minecraft/world/level/levelgen/VerticalAnchor;Lnet/minecraft/world/level/levelgen/carver/CarverDebugSettings;Lnet/minecraft/core/HolderSet;)V +MD: net/minecraft/world/level/levelgen/carver/CarverConfiguration/m_159106_ (Lnet/minecraft/world/level/levelgen/carver/CarverConfiguration;)Lnet/minecraft/world/level/levelgen/VerticalAnchor; net/minecraft/world/level/levelgen/carver/CarverConfiguration/lambda$static$3 (Lnet/minecraft/world/level/levelgen/carver/CarverConfiguration;)Lnet/minecraft/world/level/levelgen/VerticalAnchor; +MD: net/minecraft/world/level/levelgen/carver/CarverConfiguration/m_159108_ (Lnet/minecraft/world/level/levelgen/carver/CarverConfiguration;)Lnet/minecraft/util/valueproviders/FloatProvider; net/minecraft/world/level/levelgen/carver/CarverConfiguration/lambda$static$2 (Lnet/minecraft/world/level/levelgen/carver/CarverConfiguration;)Lnet/minecraft/util/valueproviders/FloatProvider; +MD: net/minecraft/world/level/levelgen/carver/CarverConfiguration/m_159110_ (Lnet/minecraft/world/level/levelgen/carver/CarverConfiguration;)Lnet/minecraft/world/level/levelgen/heightproviders/HeightProvider; net/minecraft/world/level/levelgen/carver/CarverConfiguration/lambda$static$1 (Lnet/minecraft/world/level/levelgen/carver/CarverConfiguration;)Lnet/minecraft/world/level/levelgen/heightproviders/HeightProvider; +MD: net/minecraft/world/level/levelgen/carver/CarverConfiguration/m_159112_ (Lnet/minecraft/world/level/levelgen/carver/CarverConfiguration;)Ljava/lang/Float; net/minecraft/world/level/levelgen/carver/CarverConfiguration/lambda$static$0 (Lnet/minecraft/world/level/levelgen/carver/CarverConfiguration;)Ljava/lang/Float; +MD: net/minecraft/world/level/levelgen/carver/CarverConfiguration/m_190636_ (Lnet/minecraft/world/level/levelgen/carver/CarverConfiguration;)Lnet/minecraft/world/level/levelgen/carver/CarverDebugSettings; net/minecraft/world/level/levelgen/carver/CarverConfiguration/lambda$static$4 (Lnet/minecraft/world/level/levelgen/carver/CarverConfiguration;)Lnet/minecraft/world/level/levelgen/carver/CarverDebugSettings; +MD: net/minecraft/world/level/levelgen/carver/CarverConfiguration/m_224838_ (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/world/level/levelgen/carver/CarverConfiguration/lambda$static$6 (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/world/level/levelgen/carver/CarverConfiguration/m_224840_ (Lnet/minecraft/world/level/levelgen/carver/CarverConfiguration;)Lnet/minecraft/core/HolderSet; net/minecraft/world/level/levelgen/carver/CarverConfiguration/lambda$static$5 (Lnet/minecraft/world/level/levelgen/carver/CarverConfiguration;)Lnet/minecraft/core/HolderSet; +MD: net/minecraft/world/level/levelgen/carver/CarverDebugSettings/ ()V net/minecraft/world/level/levelgen/carver/CarverDebugSettings/ ()V +MD: net/minecraft/world/level/levelgen/carver/CarverDebugSettings/ (ZLnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/state/BlockState;)V net/minecraft/world/level/levelgen/carver/CarverDebugSettings/ (ZLnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/state/BlockState;)V +MD: net/minecraft/world/level/levelgen/carver/CarverDebugSettings/m_159128_ ()Z net/minecraft/world/level/levelgen/carver/CarverDebugSettings/isDebugMode ()Z +MD: net/minecraft/world/level/levelgen/carver/CarverDebugSettings/m_159129_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/levelgen/carver/CarverDebugSettings; net/minecraft/world/level/levelgen/carver/CarverDebugSettings/of (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/levelgen/carver/CarverDebugSettings; +MD: net/minecraft/world/level/levelgen/carver/CarverDebugSettings/m_159134_ (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/world/level/levelgen/carver/CarverDebugSettings/lambda$static$0 (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/world/level/levelgen/carver/CarverDebugSettings/m_159136_ (ZLnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/levelgen/carver/CarverDebugSettings; net/minecraft/world/level/levelgen/carver/CarverDebugSettings/of (ZLnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/levelgen/carver/CarverDebugSettings; +MD: net/minecraft/world/level/levelgen/carver/CarverDebugSettings/m_159139_ (ZLnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/levelgen/carver/CarverDebugSettings; net/minecraft/world/level/levelgen/carver/CarverDebugSettings/of (ZLnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/levelgen/carver/CarverDebugSettings; +MD: net/minecraft/world/level/levelgen/carver/CarverDebugSettings/m_159145_ ()Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/levelgen/carver/CarverDebugSettings/getAirState ()Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/levelgen/carver/CarverDebugSettings/m_159146_ ()Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/levelgen/carver/CarverDebugSettings/getWaterState ()Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/levelgen/carver/CarverDebugSettings/m_159147_ ()Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/levelgen/carver/CarverDebugSettings/getLavaState ()Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/levelgen/carver/CarverDebugSettings/m_159148_ ()Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/levelgen/carver/CarverDebugSettings/getBarrierState ()Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/levelgen/carver/CarvingContext/ (Lnet/minecraft/world/level/levelgen/NoiseBasedChunkGenerator;Lnet/minecraft/core/RegistryAccess;Lnet/minecraft/world/level/LevelHeightAccessor;Lnet/minecraft/world/level/levelgen/NoiseChunk;Lnet/minecraft/world/level/levelgen/RandomState;Lnet/minecraft/world/level/levelgen/SurfaceRules$RuleSource;)V net/minecraft/world/level/levelgen/carver/CarvingContext/ (Lnet/minecraft/world/level/levelgen/NoiseBasedChunkGenerator;Lnet/minecraft/core/RegistryAccess;Lnet/minecraft/world/level/LevelHeightAccessor;Lnet/minecraft/world/level/levelgen/NoiseChunk;Lnet/minecraft/world/level/levelgen/RandomState;Lnet/minecraft/world/level/levelgen/SurfaceRules$RuleSource;)V +MD: net/minecraft/world/level/levelgen/carver/CarvingContext/m_190646_ (Ljava/util/function/Function;Lnet/minecraft/world/level/chunk/ChunkAccess;Lnet/minecraft/core/BlockPos;Z)Ljava/util/Optional; net/minecraft/world/level/levelgen/carver/CarvingContext/topMaterial (Ljava/util/function/Function;Lnet/minecraft/world/level/chunk/ChunkAccess;Lnet/minecraft/core/BlockPos;Z)Ljava/util/Optional; +MD: net/minecraft/world/level/levelgen/carver/CarvingContext/m_190651_ ()Lnet/minecraft/core/RegistryAccess; net/minecraft/world/level/levelgen/carver/CarvingContext/registryAccess ()Lnet/minecraft/core/RegistryAccess; +MD: net/minecraft/world/level/levelgen/carver/CarvingContext/m_224851_ ()Lnet/minecraft/world/level/levelgen/RandomState; net/minecraft/world/level/levelgen/carver/CarvingContext/randomState ()Lnet/minecraft/world/level/levelgen/RandomState; +MD: net/minecraft/world/level/levelgen/carver/CaveCarverConfiguration/ ()V net/minecraft/world/level/levelgen/carver/CaveCarverConfiguration/ ()V +MD: net/minecraft/world/level/levelgen/carver/CaveCarverConfiguration/ (Lnet/minecraft/world/level/levelgen/carver/CarverConfiguration;Lnet/minecraft/util/valueproviders/FloatProvider;Lnet/minecraft/util/valueproviders/FloatProvider;Lnet/minecraft/util/valueproviders/FloatProvider;)V net/minecraft/world/level/levelgen/carver/CaveCarverConfiguration/ (Lnet/minecraft/world/level/levelgen/carver/CarverConfiguration;Lnet/minecraft/util/valueproviders/FloatProvider;Lnet/minecraft/util/valueproviders/FloatProvider;Lnet/minecraft/util/valueproviders/FloatProvider;)V +MD: net/minecraft/world/level/levelgen/carver/CaveCarverConfiguration/ (FLnet/minecraft/world/level/levelgen/heightproviders/HeightProvider;Lnet/minecraft/util/valueproviders/FloatProvider;Lnet/minecraft/world/level/levelgen/VerticalAnchor;Lnet/minecraft/core/HolderSet;Lnet/minecraft/util/valueproviders/FloatProvider;Lnet/minecraft/util/valueproviders/FloatProvider;Lnet/minecraft/util/valueproviders/FloatProvider;)V net/minecraft/world/level/levelgen/carver/CaveCarverConfiguration/ (FLnet/minecraft/world/level/levelgen/heightproviders/HeightProvider;Lnet/minecraft/util/valueproviders/FloatProvider;Lnet/minecraft/world/level/levelgen/VerticalAnchor;Lnet/minecraft/core/HolderSet;Lnet/minecraft/util/valueproviders/FloatProvider;Lnet/minecraft/util/valueproviders/FloatProvider;Lnet/minecraft/util/valueproviders/FloatProvider;)V +MD: net/minecraft/world/level/levelgen/carver/CaveCarverConfiguration/ (FLnet/minecraft/world/level/levelgen/heightproviders/HeightProvider;Lnet/minecraft/util/valueproviders/FloatProvider;Lnet/minecraft/world/level/levelgen/VerticalAnchor;Lnet/minecraft/world/level/levelgen/carver/CarverDebugSettings;Lnet/minecraft/core/HolderSet;Lnet/minecraft/util/valueproviders/FloatProvider;Lnet/minecraft/util/valueproviders/FloatProvider;Lnet/minecraft/util/valueproviders/FloatProvider;)V net/minecraft/world/level/levelgen/carver/CaveCarverConfiguration/ (FLnet/minecraft/world/level/levelgen/heightproviders/HeightProvider;Lnet/minecraft/util/valueproviders/FloatProvider;Lnet/minecraft/world/level/levelgen/VerticalAnchor;Lnet/minecraft/world/level/levelgen/carver/CarverDebugSettings;Lnet/minecraft/core/HolderSet;Lnet/minecraft/util/valueproviders/FloatProvider;Lnet/minecraft/util/valueproviders/FloatProvider;Lnet/minecraft/util/valueproviders/FloatProvider;)V +MD: net/minecraft/world/level/levelgen/carver/CaveCarverConfiguration/m_159183_ (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/world/level/levelgen/carver/CaveCarverConfiguration/lambda$static$4 (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/world/level/levelgen/carver/CaveCarverConfiguration/m_159185_ (Lnet/minecraft/world/level/levelgen/carver/CaveCarverConfiguration;)Lnet/minecraft/util/valueproviders/FloatProvider; net/minecraft/world/level/levelgen/carver/CaveCarverConfiguration/lambda$static$3 (Lnet/minecraft/world/level/levelgen/carver/CaveCarverConfiguration;)Lnet/minecraft/util/valueproviders/FloatProvider; +MD: net/minecraft/world/level/levelgen/carver/CaveCarverConfiguration/m_159187_ (Lnet/minecraft/world/level/levelgen/carver/CaveCarverConfiguration;)Lnet/minecraft/util/valueproviders/FloatProvider; net/minecraft/world/level/levelgen/carver/CaveCarverConfiguration/lambda$static$2 (Lnet/minecraft/world/level/levelgen/carver/CaveCarverConfiguration;)Lnet/minecraft/util/valueproviders/FloatProvider; +MD: net/minecraft/world/level/levelgen/carver/CaveCarverConfiguration/m_159189_ (Lnet/minecraft/world/level/levelgen/carver/CaveCarverConfiguration;)Lnet/minecraft/util/valueproviders/FloatProvider; net/minecraft/world/level/levelgen/carver/CaveCarverConfiguration/lambda$static$1 (Lnet/minecraft/world/level/levelgen/carver/CaveCarverConfiguration;)Lnet/minecraft/util/valueproviders/FloatProvider; +MD: net/minecraft/world/level/levelgen/carver/CaveCarverConfiguration/m_159191_ (Lnet/minecraft/world/level/levelgen/carver/CaveCarverConfiguration;)Lnet/minecraft/world/level/levelgen/carver/CarverConfiguration; net/minecraft/world/level/levelgen/carver/CaveCarverConfiguration/lambda$static$0 (Lnet/minecraft/world/level/levelgen/carver/CaveCarverConfiguration;)Lnet/minecraft/world/level/levelgen/carver/CarverConfiguration; +MD: net/minecraft/world/level/levelgen/carver/CaveWorldCarver/ (Lcom/mojang/serialization/Codec;)V net/minecraft/world/level/levelgen/carver/CaveWorldCarver/ (Lcom/mojang/serialization/Codec;)V +MD: net/minecraft/world/level/levelgen/carver/CaveWorldCarver/m_159195_ (DDDD)Z net/minecraft/world/level/levelgen/carver/CaveWorldCarver/shouldSkip (DDDD)Z +MD: net/minecraft/world/level/levelgen/carver/CaveWorldCarver/m_159200_ (DLnet/minecraft/world/level/levelgen/carver/CarvingContext;DDDI)Z net/minecraft/world/level/levelgen/carver/CaveWorldCarver/lambda$carve$0 (DLnet/minecraft/world/level/levelgen/carver/CarvingContext;DDDI)Z +MD: net/minecraft/world/level/levelgen/carver/CaveWorldCarver/m_190670_ (Lnet/minecraft/world/level/levelgen/carver/CarvingContext;Lnet/minecraft/world/level/levelgen/carver/CaveCarverConfiguration;Lnet/minecraft/world/level/chunk/ChunkAccess;Ljava/util/function/Function;JLnet/minecraft/world/level/levelgen/Aquifer;DDDDDFFFIIDLnet/minecraft/world/level/chunk/CarvingMask;Lnet/minecraft/world/level/levelgen/carver/WorldCarver$CarveSkipChecker;)V net/minecraft/world/level/levelgen/carver/CaveWorldCarver/createTunnel (Lnet/minecraft/world/level/levelgen/carver/CarvingContext;Lnet/minecraft/world/level/levelgen/carver/CaveCarverConfiguration;Lnet/minecraft/world/level/chunk/ChunkAccess;Ljava/util/function/Function;JLnet/minecraft/world/level/levelgen/Aquifer;DDDDDFFFIIDLnet/minecraft/world/level/chunk/CarvingMask;Lnet/minecraft/world/level/levelgen/carver/WorldCarver$CarveSkipChecker;)V +MD: net/minecraft/world/level/levelgen/carver/CaveWorldCarver/m_190690_ (Lnet/minecraft/world/level/levelgen/carver/CarvingContext;Lnet/minecraft/world/level/levelgen/carver/CaveCarverConfiguration;Lnet/minecraft/world/level/chunk/ChunkAccess;Ljava/util/function/Function;Lnet/minecraft/world/level/levelgen/Aquifer;DDDFDLnet/minecraft/world/level/chunk/CarvingMask;Lnet/minecraft/world/level/levelgen/carver/WorldCarver$CarveSkipChecker;)V net/minecraft/world/level/levelgen/carver/CaveWorldCarver/createRoom (Lnet/minecraft/world/level/levelgen/carver/CarvingContext;Lnet/minecraft/world/level/levelgen/carver/CaveCarverConfiguration;Lnet/minecraft/world/level/chunk/ChunkAccess;Ljava/util/function/Function;Lnet/minecraft/world/level/levelgen/Aquifer;DDDFDLnet/minecraft/world/level/chunk/CarvingMask;Lnet/minecraft/world/level/levelgen/carver/WorldCarver$CarveSkipChecker;)V +MD: net/minecraft/world/level/levelgen/carver/CaveWorldCarver/m_213592_ (Lnet/minecraft/util/RandomSource;)F net/minecraft/world/level/levelgen/carver/CaveWorldCarver/getThickness (Lnet/minecraft/util/RandomSource;)F +MD: net/minecraft/world/level/levelgen/carver/CaveWorldCarver/m_213788_ (Lnet/minecraft/world/level/levelgen/carver/CarvingContext;Lnet/minecraft/world/level/levelgen/carver/CaveCarverConfiguration;Lnet/minecraft/world/level/chunk/ChunkAccess;Ljava/util/function/Function;Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/levelgen/Aquifer;Lnet/minecraft/world/level/ChunkPos;Lnet/minecraft/world/level/chunk/CarvingMask;)Z net/minecraft/world/level/levelgen/carver/CaveWorldCarver/carve (Lnet/minecraft/world/level/levelgen/carver/CarvingContext;Lnet/minecraft/world/level/levelgen/carver/CaveCarverConfiguration;Lnet/minecraft/world/level/chunk/ChunkAccess;Ljava/util/function/Function;Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/levelgen/Aquifer;Lnet/minecraft/world/level/ChunkPos;Lnet/minecraft/world/level/chunk/CarvingMask;)Z +MD: net/minecraft/world/level/levelgen/carver/CaveWorldCarver/m_213788_ (Lnet/minecraft/world/level/levelgen/carver/CarvingContext;Lnet/minecraft/world/level/levelgen/carver/CarverConfiguration;Lnet/minecraft/world/level/chunk/ChunkAccess;Ljava/util/function/Function;Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/levelgen/Aquifer;Lnet/minecraft/world/level/ChunkPos;Lnet/minecraft/world/level/chunk/CarvingMask;)Z net/minecraft/world/level/levelgen/carver/CaveWorldCarver/carve (Lnet/minecraft/world/level/levelgen/carver/CarvingContext;Lnet/minecraft/world/level/levelgen/carver/CarverConfiguration;Lnet/minecraft/world/level/chunk/ChunkAccess;Ljava/util/function/Function;Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/levelgen/Aquifer;Lnet/minecraft/world/level/ChunkPos;Lnet/minecraft/world/level/chunk/CarvingMask;)Z +MD: net/minecraft/world/level/levelgen/carver/CaveWorldCarver/m_214133_ (Lnet/minecraft/world/level/levelgen/carver/CaveCarverConfiguration;Lnet/minecraft/util/RandomSource;)Z net/minecraft/world/level/levelgen/carver/CaveWorldCarver/isStartChunk (Lnet/minecraft/world/level/levelgen/carver/CaveCarverConfiguration;Lnet/minecraft/util/RandomSource;)Z +MD: net/minecraft/world/level/levelgen/carver/CaveWorldCarver/m_214133_ (Lnet/minecraft/world/level/levelgen/carver/CarverConfiguration;Lnet/minecraft/util/RandomSource;)Z net/minecraft/world/level/levelgen/carver/CaveWorldCarver/isStartChunk (Lnet/minecraft/world/level/levelgen/carver/CarverConfiguration;Lnet/minecraft/util/RandomSource;)Z +MD: net/minecraft/world/level/levelgen/carver/CaveWorldCarver/m_6203_ ()D net/minecraft/world/level/levelgen/carver/CaveWorldCarver/getYScale ()D +MD: net/minecraft/world/level/levelgen/carver/CaveWorldCarver/m_6208_ ()I net/minecraft/world/level/levelgen/carver/CaveWorldCarver/getCaveBound ()I +MD: net/minecraft/world/level/levelgen/carver/ConfiguredWorldCarver/ ()V net/minecraft/world/level/levelgen/carver/ConfiguredWorldCarver/ ()V +MD: net/minecraft/world/level/levelgen/carver/ConfiguredWorldCarver/ (Lnet/minecraft/world/level/levelgen/carver/WorldCarver;Lnet/minecraft/world/level/levelgen/carver/CarverConfiguration;)V net/minecraft/world/level/levelgen/carver/ConfiguredWorldCarver/ (Lnet/minecraft/world/level/levelgen/carver/WorldCarver;Lnet/minecraft/world/level/levelgen/carver/CarverConfiguration;)V +MD: net/minecraft/world/level/levelgen/carver/ConfiguredWorldCarver/equals (Ljava/lang/Object;)Z net/minecraft/world/level/levelgen/carver/ConfiguredWorldCarver/equals (Ljava/lang/Object;)Z +MD: net/minecraft/world/level/levelgen/carver/ConfiguredWorldCarver/f_64849_ ()Lnet/minecraft/world/level/levelgen/carver/WorldCarver; net/minecraft/world/level/levelgen/carver/ConfiguredWorldCarver/worldCarver ()Lnet/minecraft/world/level/levelgen/carver/WorldCarver; +MD: net/minecraft/world/level/levelgen/carver/ConfiguredWorldCarver/f_64850_ ()Lnet/minecraft/world/level/levelgen/carver/CarverConfiguration; net/minecraft/world/level/levelgen/carver/ConfiguredWorldCarver/config ()Lnet/minecraft/world/level/levelgen/carver/CarverConfiguration; +MD: net/minecraft/world/level/levelgen/carver/ConfiguredWorldCarver/hashCode ()I net/minecraft/world/level/levelgen/carver/ConfiguredWorldCarver/hashCode ()I +MD: net/minecraft/world/level/levelgen/carver/ConfiguredWorldCarver/m_224896_ (Lnet/minecraft/util/RandomSource;)Z net/minecraft/world/level/levelgen/carver/ConfiguredWorldCarver/isStartChunk (Lnet/minecraft/util/RandomSource;)Z +MD: net/minecraft/world/level/levelgen/carver/ConfiguredWorldCarver/m_224898_ (Lnet/minecraft/world/level/levelgen/carver/CarvingContext;Lnet/minecraft/world/level/chunk/ChunkAccess;Ljava/util/function/Function;Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/levelgen/Aquifer;Lnet/minecraft/world/level/ChunkPos;Lnet/minecraft/world/level/chunk/CarvingMask;)Z net/minecraft/world/level/levelgen/carver/ConfiguredWorldCarver/carve (Lnet/minecraft/world/level/levelgen/carver/CarvingContext;Lnet/minecraft/world/level/chunk/ChunkAccess;Ljava/util/function/Function;Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/levelgen/Aquifer;Lnet/minecraft/world/level/ChunkPos;Lnet/minecraft/world/level/chunk/CarvingMask;)Z +MD: net/minecraft/world/level/levelgen/carver/ConfiguredWorldCarver/m_64866_ (Lnet/minecraft/world/level/levelgen/carver/ConfiguredWorldCarver;)Lnet/minecraft/world/level/levelgen/carver/WorldCarver; net/minecraft/world/level/levelgen/carver/ConfiguredWorldCarver/lambda$static$0 (Lnet/minecraft/world/level/levelgen/carver/ConfiguredWorldCarver;)Lnet/minecraft/world/level/levelgen/carver/WorldCarver; +MD: net/minecraft/world/level/levelgen/carver/ConfiguredWorldCarver/toString ()Ljava/lang/String; net/minecraft/world/level/levelgen/carver/ConfiguredWorldCarver/toString ()Ljava/lang/String; +MD: net/minecraft/world/level/levelgen/carver/NetherWorldCarver/ (Lcom/mojang/serialization/Codec;)V net/minecraft/world/level/levelgen/carver/NetherWorldCarver/ (Lcom/mojang/serialization/Codec;)V +MD: net/minecraft/world/level/levelgen/carver/NetherWorldCarver/m_183633_ (Lnet/minecraft/world/level/levelgen/carver/CarvingContext;Lnet/minecraft/world/level/levelgen/carver/CarverConfiguration;Lnet/minecraft/world/level/chunk/ChunkAccess;Ljava/util/function/Function;Lnet/minecraft/world/level/chunk/CarvingMask;Lnet/minecraft/core/BlockPos$MutableBlockPos;Lnet/minecraft/core/BlockPos$MutableBlockPos;Lnet/minecraft/world/level/levelgen/Aquifer;Lorg/apache/commons/lang3/mutable/MutableBoolean;)Z net/minecraft/world/level/levelgen/carver/NetherWorldCarver/carveBlock (Lnet/minecraft/world/level/levelgen/carver/CarvingContext;Lnet/minecraft/world/level/levelgen/carver/CarverConfiguration;Lnet/minecraft/world/level/chunk/ChunkAccess;Ljava/util/function/Function;Lnet/minecraft/world/level/chunk/CarvingMask;Lnet/minecraft/core/BlockPos$MutableBlockPos;Lnet/minecraft/core/BlockPos$MutableBlockPos;Lnet/minecraft/world/level/levelgen/Aquifer;Lorg/apache/commons/lang3/mutable/MutableBoolean;)Z +MD: net/minecraft/world/level/levelgen/carver/NetherWorldCarver/m_183633_ (Lnet/minecraft/world/level/levelgen/carver/CarvingContext;Lnet/minecraft/world/level/levelgen/carver/CaveCarverConfiguration;Lnet/minecraft/world/level/chunk/ChunkAccess;Ljava/util/function/Function;Lnet/minecraft/world/level/chunk/CarvingMask;Lnet/minecraft/core/BlockPos$MutableBlockPos;Lnet/minecraft/core/BlockPos$MutableBlockPos;Lnet/minecraft/world/level/levelgen/Aquifer;Lorg/apache/commons/lang3/mutable/MutableBoolean;)Z net/minecraft/world/level/levelgen/carver/NetherWorldCarver/carveBlock (Lnet/minecraft/world/level/levelgen/carver/CarvingContext;Lnet/minecraft/world/level/levelgen/carver/CaveCarverConfiguration;Lnet/minecraft/world/level/chunk/ChunkAccess;Ljava/util/function/Function;Lnet/minecraft/world/level/chunk/CarvingMask;Lnet/minecraft/core/BlockPos$MutableBlockPos;Lnet/minecraft/core/BlockPos$MutableBlockPos;Lnet/minecraft/world/level/levelgen/Aquifer;Lorg/apache/commons/lang3/mutable/MutableBoolean;)Z +MD: net/minecraft/world/level/levelgen/carver/NetherWorldCarver/m_213592_ (Lnet/minecraft/util/RandomSource;)F net/minecraft/world/level/levelgen/carver/NetherWorldCarver/getThickness (Lnet/minecraft/util/RandomSource;)F +MD: net/minecraft/world/level/levelgen/carver/NetherWorldCarver/m_6203_ ()D net/minecraft/world/level/levelgen/carver/NetherWorldCarver/getYScale ()D +MD: net/minecraft/world/level/levelgen/carver/NetherWorldCarver/m_6208_ ()I net/minecraft/world/level/levelgen/carver/NetherWorldCarver/getCaveBound ()I +MD: net/minecraft/world/level/levelgen/carver/WorldCarver/ ()V net/minecraft/world/level/levelgen/carver/WorldCarver/ ()V +MD: net/minecraft/world/level/levelgen/carver/WorldCarver/ (Lcom/mojang/serialization/Codec;)V net/minecraft/world/level/levelgen/carver/WorldCarver/ (Lcom/mojang/serialization/Codec;)V +MD: net/minecraft/world/level/levelgen/carver/WorldCarver/m_159367_ (Lnet/minecraft/world/level/ChunkPos;DDIIF)Z net/minecraft/world/level/levelgen/carver/WorldCarver/canReach (Lnet/minecraft/world/level/ChunkPos;DDIIF)Z +MD: net/minecraft/world/level/levelgen/carver/WorldCarver/m_159381_ (Lnet/minecraft/world/level/levelgen/carver/CarverConfiguration;Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/levelgen/carver/WorldCarver/getDebugState (Lnet/minecraft/world/level/levelgen/carver/CarverConfiguration;Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/levelgen/carver/WorldCarver/m_159418_ (Lnet/minecraft/world/level/levelgen/carver/CarvingContext;Lnet/minecraft/world/level/levelgen/carver/CarverConfiguration;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/levelgen/Aquifer;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/levelgen/carver/WorldCarver/getCarveState (Lnet/minecraft/world/level/levelgen/carver/CarvingContext;Lnet/minecraft/world/level/levelgen/carver/CarverConfiguration;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/levelgen/Aquifer;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/levelgen/carver/WorldCarver/m_159423_ (Lnet/minecraft/world/level/levelgen/carver/CarverConfiguration;)Z net/minecraft/world/level/levelgen/carver/WorldCarver/isDebugEnabled (Lnet/minecraft/world/level/levelgen/carver/CarverConfiguration;)Z +MD: net/minecraft/world/level/levelgen/carver/WorldCarver/m_183633_ (Lnet/minecraft/world/level/levelgen/carver/CarvingContext;Lnet/minecraft/world/level/levelgen/carver/CarverConfiguration;Lnet/minecraft/world/level/chunk/ChunkAccess;Ljava/util/function/Function;Lnet/minecraft/world/level/chunk/CarvingMask;Lnet/minecraft/core/BlockPos$MutableBlockPos;Lnet/minecraft/core/BlockPos$MutableBlockPos;Lnet/minecraft/world/level/levelgen/Aquifer;Lorg/apache/commons/lang3/mutable/MutableBoolean;)Z net/minecraft/world/level/levelgen/carver/WorldCarver/carveBlock (Lnet/minecraft/world/level/levelgen/carver/CarvingContext;Lnet/minecraft/world/level/levelgen/carver/CarverConfiguration;Lnet/minecraft/world/level/chunk/ChunkAccess;Ljava/util/function/Function;Lnet/minecraft/world/level/chunk/CarvingMask;Lnet/minecraft/core/BlockPos$MutableBlockPos;Lnet/minecraft/core/BlockPos$MutableBlockPos;Lnet/minecraft/world/level/levelgen/Aquifer;Lorg/apache/commons/lang3/mutable/MutableBoolean;)Z +MD: net/minecraft/world/level/levelgen/carver/WorldCarver/m_190753_ (Lnet/minecraft/world/level/levelgen/carver/CarvingContext;Lnet/minecraft/world/level/levelgen/carver/CarverConfiguration;Lnet/minecraft/world/level/chunk/ChunkAccess;Ljava/util/function/Function;Lnet/minecraft/world/level/levelgen/Aquifer;DDDDDLnet/minecraft/world/level/chunk/CarvingMask;Lnet/minecraft/world/level/levelgen/carver/WorldCarver$CarveSkipChecker;)Z net/minecraft/world/level/levelgen/carver/WorldCarver/carveEllipsoid (Lnet/minecraft/world/level/levelgen/carver/CarvingContext;Lnet/minecraft/world/level/levelgen/carver/CarverConfiguration;Lnet/minecraft/world/level/chunk/ChunkAccess;Ljava/util/function/Function;Lnet/minecraft/world/level/levelgen/Aquifer;DDDDDLnet/minecraft/world/level/chunk/CarvingMask;Lnet/minecraft/world/level/levelgen/carver/WorldCarver$CarveSkipChecker;)Z +MD: net/minecraft/world/level/levelgen/carver/WorldCarver/m_213788_ (Lnet/minecraft/world/level/levelgen/carver/CarvingContext;Lnet/minecraft/world/level/levelgen/carver/CarverConfiguration;Lnet/minecraft/world/level/chunk/ChunkAccess;Ljava/util/function/Function;Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/levelgen/Aquifer;Lnet/minecraft/world/level/ChunkPos;Lnet/minecraft/world/level/chunk/CarvingMask;)Z net/minecraft/world/level/levelgen/carver/WorldCarver/carve (Lnet/minecraft/world/level/levelgen/carver/CarvingContext;Lnet/minecraft/world/level/levelgen/carver/CarverConfiguration;Lnet/minecraft/world/level/chunk/ChunkAccess;Ljava/util/function/Function;Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/levelgen/Aquifer;Lnet/minecraft/world/level/ChunkPos;Lnet/minecraft/world/level/chunk/CarvingMask;)Z +MD: net/minecraft/world/level/levelgen/carver/WorldCarver/m_214133_ (Lnet/minecraft/world/level/levelgen/carver/CarverConfiguration;Lnet/minecraft/util/RandomSource;)Z net/minecraft/world/level/levelgen/carver/WorldCarver/isStartChunk (Lnet/minecraft/world/level/levelgen/carver/CarverConfiguration;Lnet/minecraft/util/RandomSource;)Z +MD: net/minecraft/world/level/levelgen/carver/WorldCarver/m_224910_ (Lnet/minecraft/world/level/levelgen/carver/CarverConfiguration;Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/world/level/levelgen/carver/WorldCarver/canReplaceBlock (Lnet/minecraft/world/level/levelgen/carver/CarverConfiguration;Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/world/level/levelgen/carver/WorldCarver/m_284117_ (Lnet/minecraft/world/level/chunk/ChunkAccess;Lnet/minecraft/core/BlockPos$MutableBlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V net/minecraft/world/level/levelgen/carver/WorldCarver/lambda$carveBlock$0 (Lnet/minecraft/world/level/chunk/ChunkAccess;Lnet/minecraft/core/BlockPos$MutableBlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V +MD: net/minecraft/world/level/levelgen/carver/WorldCarver/m_65063_ (Lnet/minecraft/world/level/levelgen/carver/CarverConfiguration;)Lnet/minecraft/world/level/levelgen/carver/ConfiguredWorldCarver; net/minecraft/world/level/levelgen/carver/WorldCarver/configured (Lnet/minecraft/world/level/levelgen/carver/CarverConfiguration;)Lnet/minecraft/world/level/levelgen/carver/ConfiguredWorldCarver; +MD: net/minecraft/world/level/levelgen/carver/WorldCarver/m_65065_ (Ljava/lang/String;Lnet/minecraft/world/level/levelgen/carver/WorldCarver;)Lnet/minecraft/world/level/levelgen/carver/WorldCarver; net/minecraft/world/level/levelgen/carver/WorldCarver/register (Ljava/lang/String;Lnet/minecraft/world/level/levelgen/carver/WorldCarver;)Lnet/minecraft/world/level/levelgen/carver/WorldCarver; +MD: net/minecraft/world/level/levelgen/carver/WorldCarver/m_65072_ ()Lcom/mojang/serialization/Codec; net/minecraft/world/level/levelgen/carver/WorldCarver/configuredCodec ()Lcom/mojang/serialization/Codec; +MD: net/minecraft/world/level/levelgen/carver/WorldCarver/m_65073_ ()I net/minecraft/world/level/levelgen/carver/WorldCarver/getRange ()I +MD: net/minecraft/world/level/levelgen/carver/WorldCarver$CarveSkipChecker/m_159425_ (Lnet/minecraft/world/level/levelgen/carver/CarvingContext;DDDI)Z net/minecraft/world/level/levelgen/carver/WorldCarver$CarveSkipChecker/shouldSkip (Lnet/minecraft/world/level/levelgen/carver/CarvingContext;DDDI)Z +MD: net/minecraft/world/level/levelgen/feature/AbstractHugeMushroomFeature/ (Lcom/mojang/serialization/Codec;)V net/minecraft/world/level/levelgen/feature/AbstractHugeMushroomFeature/ (Lcom/mojang/serialization/Codec;)V +MD: net/minecraft/world/level/levelgen/feature/AbstractHugeMushroomFeature/m_142674_ (Lnet/minecraft/world/level/levelgen/feature/FeaturePlaceContext;)Z net/minecraft/world/level/levelgen/feature/AbstractHugeMushroomFeature/place (Lnet/minecraft/world/level/levelgen/feature/FeaturePlaceContext;)Z +MD: net/minecraft/world/level/levelgen/feature/AbstractHugeMushroomFeature/m_213950_ (Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos;ILnet/minecraft/core/BlockPos$MutableBlockPos;Lnet/minecraft/world/level/levelgen/feature/configurations/HugeMushroomFeatureConfiguration;)V net/minecraft/world/level/levelgen/feature/AbstractHugeMushroomFeature/makeCap (Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos;ILnet/minecraft/core/BlockPos$MutableBlockPos;Lnet/minecraft/world/level/levelgen/feature/configurations/HugeMushroomFeatureConfiguration;)V +MD: net/minecraft/world/level/levelgen/feature/AbstractHugeMushroomFeature/m_224921_ (Lnet/minecraft/util/RandomSource;)I net/minecraft/world/level/levelgen/feature/AbstractHugeMushroomFeature/getTreeHeight (Lnet/minecraft/util/RandomSource;)I +MD: net/minecraft/world/level/levelgen/feature/AbstractHugeMushroomFeature/m_224929_ (Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/levelgen/feature/configurations/HugeMushroomFeatureConfiguration;ILnet/minecraft/core/BlockPos$MutableBlockPos;)V net/minecraft/world/level/levelgen/feature/AbstractHugeMushroomFeature/placeTrunk (Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/levelgen/feature/configurations/HugeMushroomFeatureConfiguration;ILnet/minecraft/core/BlockPos$MutableBlockPos;)V +MD: net/minecraft/world/level/levelgen/feature/AbstractHugeMushroomFeature/m_65098_ (Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;ILnet/minecraft/core/BlockPos$MutableBlockPos;Lnet/minecraft/world/level/levelgen/feature/configurations/HugeMushroomFeatureConfiguration;)Z net/minecraft/world/level/levelgen/feature/AbstractHugeMushroomFeature/isValidPosition (Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;ILnet/minecraft/core/BlockPos$MutableBlockPos;Lnet/minecraft/world/level/levelgen/feature/configurations/HugeMushroomFeatureConfiguration;)Z +MD: net/minecraft/world/level/levelgen/feature/AbstractHugeMushroomFeature/m_6794_ (IIII)I net/minecraft/world/level/levelgen/feature/AbstractHugeMushroomFeature/getTreeRadiusForHeight (IIII)I +MD: net/minecraft/world/level/levelgen/feature/BambooFeature/ ()V net/minecraft/world/level/levelgen/feature/BambooFeature/ ()V +MD: net/minecraft/world/level/levelgen/feature/BambooFeature/ (Lcom/mojang/serialization/Codec;)V net/minecraft/world/level/levelgen/feature/BambooFeature/ (Lcom/mojang/serialization/Codec;)V +MD: net/minecraft/world/level/levelgen/feature/BambooFeature/m_142674_ (Lnet/minecraft/world/level/levelgen/feature/FeaturePlaceContext;)Z net/minecraft/world/level/levelgen/feature/BambooFeature/place (Lnet/minecraft/world/level/levelgen/feature/FeaturePlaceContext;)Z +MD: net/minecraft/world/level/levelgen/feature/BasaltColumnsFeature/ ()V net/minecraft/world/level/levelgen/feature/BasaltColumnsFeature/ ()V +MD: net/minecraft/world/level/levelgen/feature/BasaltColumnsFeature/ (Lcom/mojang/serialization/Codec;)V net/minecraft/world/level/levelgen/feature/BasaltColumnsFeature/ (Lcom/mojang/serialization/Codec;)V +MD: net/minecraft/world/level/levelgen/feature/BasaltColumnsFeature/m_142674_ (Lnet/minecraft/world/level/levelgen/feature/FeaturePlaceContext;)Z net/minecraft/world/level/levelgen/feature/BasaltColumnsFeature/place (Lnet/minecraft/world/level/levelgen/feature/FeaturePlaceContext;)Z +MD: net/minecraft/world/level/levelgen/feature/BasaltColumnsFeature/m_65154_ (Lnet/minecraft/world/level/LevelAccessor;ILnet/minecraft/core/BlockPos$MutableBlockPos;)Z net/minecraft/world/level/levelgen/feature/BasaltColumnsFeature/canPlaceAt (Lnet/minecraft/world/level/LevelAccessor;ILnet/minecraft/core/BlockPos$MutableBlockPos;)Z +MD: net/minecraft/world/level/levelgen/feature/BasaltColumnsFeature/m_65158_ (Lnet/minecraft/world/level/LevelAccessor;ILnet/minecraft/core/BlockPos$MutableBlockPos;I)Lnet/minecraft/core/BlockPos; net/minecraft/world/level/levelgen/feature/BasaltColumnsFeature/findSurface (Lnet/minecraft/world/level/LevelAccessor;ILnet/minecraft/core/BlockPos$MutableBlockPos;I)Lnet/minecraft/core/BlockPos; +MD: net/minecraft/world/level/levelgen/feature/BasaltColumnsFeature/m_65163_ (Lnet/minecraft/world/level/LevelAccessor;ILnet/minecraft/core/BlockPos;)Z net/minecraft/world/level/levelgen/feature/BasaltColumnsFeature/isAirOrLavaOcean (Lnet/minecraft/world/level/LevelAccessor;ILnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/level/levelgen/feature/BasaltColumnsFeature/m_65167_ (Lnet/minecraft/world/level/LevelAccessor;ILnet/minecraft/core/BlockPos;II)Z net/minecraft/world/level/levelgen/feature/BasaltColumnsFeature/placeColumn (Lnet/minecraft/world/level/LevelAccessor;ILnet/minecraft/core/BlockPos;II)Z +MD: net/minecraft/world/level/levelgen/feature/BasaltColumnsFeature/m_65173_ (Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos$MutableBlockPos;I)Lnet/minecraft/core/BlockPos; net/minecraft/world/level/levelgen/feature/BasaltColumnsFeature/findAir (Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos$MutableBlockPos;I)Lnet/minecraft/core/BlockPos; +MD: net/minecraft/world/level/levelgen/feature/BasaltPillarFeature/ (Lcom/mojang/serialization/Codec;)V net/minecraft/world/level/levelgen/feature/BasaltPillarFeature/ (Lcom/mojang/serialization/Codec;)V +MD: net/minecraft/world/level/levelgen/feature/BasaltPillarFeature/m_142674_ (Lnet/minecraft/world/level/levelgen/feature/FeaturePlaceContext;)Z net/minecraft/world/level/levelgen/feature/BasaltPillarFeature/place (Lnet/minecraft/world/level/levelgen/feature/FeaturePlaceContext;)Z +MD: net/minecraft/world/level/levelgen/feature/BasaltPillarFeature/m_224936_ (Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos;)V net/minecraft/world/level/levelgen/feature/BasaltPillarFeature/placeBaseHangOff (Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/world/level/levelgen/feature/BasaltPillarFeature/m_224940_ (Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/level/levelgen/feature/BasaltPillarFeature/placeHangOff (Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/level/levelgen/feature/BlockBlobFeature/ (Lcom/mojang/serialization/Codec;)V net/minecraft/world/level/levelgen/feature/BlockBlobFeature/ (Lcom/mojang/serialization/Codec;)V +MD: net/minecraft/world/level/levelgen/feature/BlockBlobFeature/m_142674_ (Lnet/minecraft/world/level/levelgen/feature/FeaturePlaceContext;)Z net/minecraft/world/level/levelgen/feature/BlockBlobFeature/place (Lnet/minecraft/world/level/levelgen/feature/FeaturePlaceContext;)Z +MD: net/minecraft/world/level/levelgen/feature/BlockColumnFeature/ (Lcom/mojang/serialization/Codec;)V net/minecraft/world/level/levelgen/feature/BlockColumnFeature/ (Lcom/mojang/serialization/Codec;)V +MD: net/minecraft/world/level/levelgen/feature/BlockColumnFeature/m_142674_ (Lnet/minecraft/world/level/levelgen/feature/FeaturePlaceContext;)Z net/minecraft/world/level/levelgen/feature/BlockColumnFeature/place (Lnet/minecraft/world/level/levelgen/feature/FeaturePlaceContext;)Z +MD: net/minecraft/world/level/levelgen/feature/BlockColumnFeature/m_190792_ ([IIIZ)V net/minecraft/world/level/levelgen/feature/BlockColumnFeature/truncate ([IIIZ)V +MD: net/minecraft/world/level/levelgen/feature/BlockPileFeature/ (Lcom/mojang/serialization/Codec;)V net/minecraft/world/level/levelgen/feature/BlockPileFeature/ (Lcom/mojang/serialization/Codec;)V +MD: net/minecraft/world/level/levelgen/feature/BlockPileFeature/m_142674_ (Lnet/minecraft/world/level/levelgen/feature/FeaturePlaceContext;)Z net/minecraft/world/level/levelgen/feature/BlockPileFeature/place (Lnet/minecraft/world/level/levelgen/feature/FeaturePlaceContext;)Z +MD: net/minecraft/world/level/levelgen/feature/BlockPileFeature/m_224944_ (Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)Z net/minecraft/world/level/levelgen/feature/BlockPileFeature/mayPlaceOn (Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)Z +MD: net/minecraft/world/level/levelgen/feature/BlockPileFeature/m_224948_ (Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/levelgen/feature/configurations/BlockPileConfiguration;)V net/minecraft/world/level/levelgen/feature/BlockPileFeature/tryPlaceBlock (Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/levelgen/feature/configurations/BlockPileConfiguration;)V +MD: net/minecraft/world/level/levelgen/feature/BlueIceFeature/ (Lcom/mojang/serialization/Codec;)V net/minecraft/world/level/levelgen/feature/BlueIceFeature/ (Lcom/mojang/serialization/Codec;)V +MD: net/minecraft/world/level/levelgen/feature/BlueIceFeature/m_142674_ (Lnet/minecraft/world/level/levelgen/feature/FeaturePlaceContext;)Z net/minecraft/world/level/levelgen/feature/BlueIceFeature/place (Lnet/minecraft/world/level/levelgen/feature/FeaturePlaceContext;)Z +MD: net/minecraft/world/level/levelgen/feature/BonusChestFeature/ (Lcom/mojang/serialization/Codec;)V net/minecraft/world/level/levelgen/feature/BonusChestFeature/ (Lcom/mojang/serialization/Codec;)V +MD: net/minecraft/world/level/levelgen/feature/BonusChestFeature/m_142674_ (Lnet/minecraft/world/level/levelgen/feature/FeaturePlaceContext;)Z net/minecraft/world/level/levelgen/feature/BonusChestFeature/place (Lnet/minecraft/world/level/levelgen/feature/FeaturePlaceContext;)Z +MD: net/minecraft/world/level/levelgen/feature/ChorusPlantFeature/ (Lcom/mojang/serialization/Codec;)V net/minecraft/world/level/levelgen/feature/ChorusPlantFeature/ (Lcom/mojang/serialization/Codec;)V +MD: net/minecraft/world/level/levelgen/feature/ChorusPlantFeature/m_142674_ (Lnet/minecraft/world/level/levelgen/feature/FeaturePlaceContext;)Z net/minecraft/world/level/levelgen/feature/ChorusPlantFeature/place (Lnet/minecraft/world/level/levelgen/feature/FeaturePlaceContext;)Z +MD: net/minecraft/world/level/levelgen/feature/ConfiguredFeature/ ()V net/minecraft/world/level/levelgen/feature/ConfiguredFeature/ ()V +MD: net/minecraft/world/level/levelgen/feature/ConfiguredFeature/ (Lnet/minecraft/world/level/levelgen/feature/Feature;Lnet/minecraft/world/level/levelgen/feature/configurations/FeatureConfiguration;)V net/minecraft/world/level/levelgen/feature/ConfiguredFeature/ (Lnet/minecraft/world/level/levelgen/feature/Feature;Lnet/minecraft/world/level/levelgen/feature/configurations/FeatureConfiguration;)V +MD: net/minecraft/world/level/levelgen/feature/ConfiguredFeature/equals (Ljava/lang/Object;)Z net/minecraft/world/level/levelgen/feature/ConfiguredFeature/equals (Ljava/lang/Object;)Z +MD: net/minecraft/world/level/levelgen/feature/ConfiguredFeature/f_65377_ ()Lnet/minecraft/world/level/levelgen/feature/Feature; net/minecraft/world/level/levelgen/feature/ConfiguredFeature/feature ()Lnet/minecraft/world/level/levelgen/feature/Feature; +MD: net/minecraft/world/level/levelgen/feature/ConfiguredFeature/f_65378_ ()Lnet/minecraft/world/level/levelgen/feature/configurations/FeatureConfiguration; net/minecraft/world/level/levelgen/feature/ConfiguredFeature/config ()Lnet/minecraft/world/level/levelgen/feature/configurations/FeatureConfiguration; +MD: net/minecraft/world/level/levelgen/feature/ConfiguredFeature/hashCode ()I net/minecraft/world/level/levelgen/feature/ConfiguredFeature/hashCode ()I +MD: net/minecraft/world/level/levelgen/feature/ConfiguredFeature/m_224953_ (Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/world/level/chunk/ChunkGenerator;Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/level/levelgen/feature/ConfiguredFeature/place (Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/world/level/chunk/ChunkGenerator;Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/level/levelgen/feature/ConfiguredFeature/m_65390_ (Lnet/minecraft/world/level/levelgen/feature/ConfiguredFeature;)Lnet/minecraft/world/level/levelgen/feature/Feature; net/minecraft/world/level/levelgen/feature/ConfiguredFeature/lambda$static$0 (Lnet/minecraft/world/level/levelgen/feature/ConfiguredFeature;)Lnet/minecraft/world/level/levelgen/feature/Feature; +MD: net/minecraft/world/level/levelgen/feature/ConfiguredFeature/m_65398_ ()Ljava/util/stream/Stream; net/minecraft/world/level/levelgen/feature/ConfiguredFeature/getFeatures ()Ljava/util/stream/Stream; +MD: net/minecraft/world/level/levelgen/feature/ConfiguredFeature/toString ()Ljava/lang/String; net/minecraft/world/level/levelgen/feature/ConfiguredFeature/toString ()Ljava/lang/String; +MD: net/minecraft/world/level/levelgen/feature/CoralClawFeature/ (Lcom/mojang/serialization/Codec;)V net/minecraft/world/level/levelgen/feature/CoralClawFeature/ (Lcom/mojang/serialization/Codec;)V +MD: net/minecraft/world/level/levelgen/feature/CoralClawFeature/m_214196_ (Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/world/level/levelgen/feature/CoralClawFeature/placeFeature (Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/world/level/levelgen/feature/CoralFeature/ (Lcom/mojang/serialization/Codec;)V net/minecraft/world/level/levelgen/feature/CoralFeature/ (Lcom/mojang/serialization/Codec;)V +MD: net/minecraft/world/level/levelgen/feature/CoralFeature/m_142674_ (Lnet/minecraft/world/level/levelgen/feature/FeaturePlaceContext;)Z net/minecraft/world/level/levelgen/feature/CoralFeature/place (Lnet/minecraft/world/level/levelgen/feature/FeaturePlaceContext;)Z +MD: net/minecraft/world/level/levelgen/feature/CoralFeature/m_204717_ (Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/Block;)V net/minecraft/world/level/levelgen/feature/CoralFeature/lambda$placeCoralBlock$2 (Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/Block;)V +MD: net/minecraft/world/level/levelgen/feature/CoralFeature/m_204721_ (Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/Block;)V net/minecraft/world/level/levelgen/feature/CoralFeature/lambda$placeCoralBlock$4 (Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/Block;)V +MD: net/minecraft/world/level/levelgen/feature/CoralFeature/m_214196_ (Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/world/level/levelgen/feature/CoralFeature/placeFeature (Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/world/level/levelgen/feature/CoralFeature/m_224963_ (Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/HolderSet$Named;)Ljava/util/Optional; net/minecraft/world/level/levelgen/feature/CoralFeature/lambda$placeCoralBlock$3 (Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/HolderSet$Named;)Ljava/util/Optional; +MD: net/minecraft/world/level/levelgen/feature/CoralFeature/m_224970_ (Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/HolderSet$Named;)Ljava/util/Optional; net/minecraft/world/level/levelgen/feature/CoralFeature/lambda$placeCoralBlock$1 (Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/HolderSet$Named;)Ljava/util/Optional; +MD: net/minecraft/world/level/levelgen/feature/CoralFeature/m_224973_ (Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/world/level/levelgen/feature/CoralFeature/placeCoralBlock (Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/world/level/levelgen/feature/CoralFeature/m_224978_ (Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/HolderSet$Named;)Ljava/util/Optional; net/minecraft/world/level/levelgen/feature/CoralFeature/lambda$place$0 (Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/HolderSet$Named;)Ljava/util/Optional; +MD: net/minecraft/world/level/levelgen/feature/CoralMushroomFeature/ (Lcom/mojang/serialization/Codec;)V net/minecraft/world/level/levelgen/feature/CoralMushroomFeature/ (Lcom/mojang/serialization/Codec;)V +MD: net/minecraft/world/level/levelgen/feature/CoralMushroomFeature/m_214196_ (Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/world/level/levelgen/feature/CoralMushroomFeature/placeFeature (Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/world/level/levelgen/feature/CoralTreeFeature/ (Lcom/mojang/serialization/Codec;)V net/minecraft/world/level/levelgen/feature/CoralTreeFeature/ (Lcom/mojang/serialization/Codec;)V +MD: net/minecraft/world/level/levelgen/feature/CoralTreeFeature/m_214196_ (Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/world/level/levelgen/feature/CoralTreeFeature/placeFeature (Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/world/level/levelgen/feature/DeltaFeature/ ()V net/minecraft/world/level/levelgen/feature/DeltaFeature/ ()V +MD: net/minecraft/world/level/levelgen/feature/DeltaFeature/ (Lcom/mojang/serialization/Codec;)V net/minecraft/world/level/levelgen/feature/DeltaFeature/ (Lcom/mojang/serialization/Codec;)V +MD: net/minecraft/world/level/levelgen/feature/DeltaFeature/m_142674_ (Lnet/minecraft/world/level/levelgen/feature/FeaturePlaceContext;)Z net/minecraft/world/level/levelgen/feature/DeltaFeature/place (Lnet/minecraft/world/level/levelgen/feature/FeaturePlaceContext;)Z +MD: net/minecraft/world/level/levelgen/feature/DeltaFeature/m_65551_ (Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/levelgen/feature/configurations/DeltaFeatureConfiguration;)Z net/minecraft/world/level/levelgen/feature/DeltaFeature/isClear (Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/levelgen/feature/configurations/DeltaFeatureConfiguration;)Z +MD: net/minecraft/world/level/levelgen/feature/DesertWellFeature/ ()V net/minecraft/world/level/levelgen/feature/DesertWellFeature/ ()V +MD: net/minecraft/world/level/levelgen/feature/DesertWellFeature/ (Lcom/mojang/serialization/Codec;)V net/minecraft/world/level/levelgen/feature/DesertWellFeature/ (Lcom/mojang/serialization/Codec;)V +MD: net/minecraft/world/level/levelgen/feature/DesertWellFeature/m_142674_ (Lnet/minecraft/world/level/levelgen/feature/FeaturePlaceContext;)Z net/minecraft/world/level/levelgen/feature/DesertWellFeature/place (Lnet/minecraft/world/level/levelgen/feature/FeaturePlaceContext;)Z +MD: net/minecraft/world/level/levelgen/feature/DesertWellFeature/m_276756_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/entity/BrushableBlockEntity;)V net/minecraft/world/level/levelgen/feature/DesertWellFeature/lambda$placeSusSand$0 (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/entity/BrushableBlockEntity;)V +MD: net/minecraft/world/level/levelgen/feature/DesertWellFeature/m_277210_ (Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/core/BlockPos;)V net/minecraft/world/level/levelgen/feature/DesertWellFeature/placeSusSand (Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/world/level/levelgen/feature/DiskFeature/ (Lcom/mojang/serialization/Codec;)V net/minecraft/world/level/levelgen/feature/DiskFeature/ (Lcom/mojang/serialization/Codec;)V +MD: net/minecraft/world/level/levelgen/feature/DiskFeature/m_142674_ (Lnet/minecraft/world/level/levelgen/feature/FeaturePlaceContext;)Z net/minecraft/world/level/levelgen/feature/DiskFeature/place (Lnet/minecraft/world/level/levelgen/feature/FeaturePlaceContext;)Z +MD: net/minecraft/world/level/levelgen/feature/DiskFeature/m_224995_ (Lnet/minecraft/world/level/levelgen/feature/configurations/DiskConfiguration;Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/util/RandomSource;IILnet/minecraft/core/BlockPos$MutableBlockPos;)Z net/minecraft/world/level/levelgen/feature/DiskFeature/placeColumn (Lnet/minecraft/world/level/levelgen/feature/configurations/DiskConfiguration;Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/util/RandomSource;IILnet/minecraft/core/BlockPos$MutableBlockPos;)Z +MD: net/minecraft/world/level/levelgen/feature/DripstoneClusterFeature/ (Lcom/mojang/serialization/Codec;)V net/minecraft/world/level/levelgen/feature/DripstoneClusterFeature/ (Lcom/mojang/serialization/Codec;)V +MD: net/minecraft/world/level/levelgen/feature/DripstoneClusterFeature/m_142674_ (Lnet/minecraft/world/level/levelgen/feature/FeaturePlaceContext;)Z net/minecraft/world/level/levelgen/feature/DripstoneClusterFeature/place (Lnet/minecraft/world/level/levelgen/feature/FeaturePlaceContext;)Z +MD: net/minecraft/world/level/levelgen/feature/DripstoneClusterFeature/m_159576_ (IIIILnet/minecraft/world/level/levelgen/feature/configurations/DripstoneClusterConfiguration;)D net/minecraft/world/level/levelgen/feature/DripstoneClusterFeature/getChanceOfStalagmiteOrStalactite (IIIILnet/minecraft/world/level/levelgen/feature/configurations/DripstoneClusterConfiguration;)D +MD: net/minecraft/world/level/levelgen/feature/DripstoneClusterFeature/m_159582_ (Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/level/levelgen/feature/DripstoneClusterFeature/canBeAdjacentToWater (Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/level/levelgen/feature/DripstoneClusterFeature/m_159585_ (Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/level/levelgen/feature/DripstoneClusterFeature/isLava (Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/level/levelgen/feature/DripstoneClusterFeature/m_159588_ (Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/core/BlockPos;ILnet/minecraft/core/Direction;)V net/minecraft/world/level/levelgen/feature/DripstoneClusterFeature/replaceBlocksWithDripstoneBlocks (Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/core/BlockPos;ILnet/minecraft/core/Direction;)V +MD: net/minecraft/world/level/levelgen/feature/DripstoneClusterFeature/m_159619_ (Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/level/levelgen/feature/DripstoneClusterFeature/canPlacePool (Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/level/levelgen/feature/DripstoneClusterFeature/m_225002_ (Lnet/minecraft/util/RandomSource;FFFF)F net/minecraft/world/level/levelgen/feature/DripstoneClusterFeature/randomBetweenBiased (Lnet/minecraft/util/RandomSource;FFFF)F +MD: net/minecraft/world/level/levelgen/feature/DripstoneClusterFeature/m_225008_ (Lnet/minecraft/util/RandomSource;IIFILnet/minecraft/world/level/levelgen/feature/configurations/DripstoneClusterConfiguration;)I net/minecraft/world/level/levelgen/feature/DripstoneClusterFeature/getDripstoneHeight (Lnet/minecraft/util/RandomSource;IIFILnet/minecraft/world/level/levelgen/feature/configurations/DripstoneClusterConfiguration;)I +MD: net/minecraft/world/level/levelgen/feature/DripstoneClusterFeature/m_225015_ (Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos;IIFDIFLnet/minecraft/world/level/levelgen/feature/configurations/DripstoneClusterConfiguration;)V net/minecraft/world/level/levelgen/feature/DripstoneClusterFeature/placeColumn (Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos;IIFDIFLnet/minecraft/world/level/levelgen/feature/configurations/DripstoneClusterConfiguration;)V +MD: net/minecraft/world/level/levelgen/feature/DripstoneUtils/ ()V net/minecraft/world/level/levelgen/feature/DripstoneUtils/ ()V +MD: net/minecraft/world/level/levelgen/feature/DripstoneUtils/m_159623_ (DDDD)D net/minecraft/world/level/levelgen/feature/DripstoneUtils/getDripstoneHeight (DDDD)D +MD: net/minecraft/world/level/levelgen/feature/DripstoneUtils/m_159628_ (Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/level/levelgen/feature/DripstoneUtils/isEmptyOrWater (Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/level/levelgen/feature/DripstoneUtils/m_159639_ (Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/core/BlockPos;I)Z net/minecraft/world/level/levelgen/feature/DripstoneUtils/isCircleMostlyEmbeddedInStone (Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/core/BlockPos;I)Z +MD: net/minecraft/world/level/levelgen/feature/DripstoneUtils/m_159649_ (Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/world/level/levelgen/feature/DripstoneUtils/isDripstoneBaseOrLava (Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/world/level/levelgen/feature/DripstoneUtils/m_159651_ (Lnet/minecraft/core/Direction;IZLjava/util/function/Consumer;)V net/minecraft/world/level/levelgen/feature/DripstoneUtils/buildBaseToTipColumn (Lnet/minecraft/core/Direction;IZLjava/util/function/Consumer;)V +MD: net/minecraft/world/level/levelgen/feature/DripstoneUtils/m_159656_ (Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/block/state/properties/DripstoneThickness;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/levelgen/feature/DripstoneUtils/createPointedDripstone (Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/block/state/properties/DripstoneThickness;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/levelgen/feature/DripstoneUtils/m_159659_ (Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/level/levelgen/feature/DripstoneUtils/isEmptyOrWaterOrLava (Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/level/levelgen/feature/DripstoneUtils/m_159662_ (Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/world/level/levelgen/feature/DripstoneUtils/isDripstoneBase (Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/world/level/levelgen/feature/DripstoneUtils/m_159664_ (Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/world/level/levelgen/feature/DripstoneUtils/isEmptyOrWater (Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/world/level/levelgen/feature/DripstoneUtils/m_159666_ (Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/world/level/levelgen/feature/DripstoneUtils/isEmptyOrWaterOrLava (Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/world/level/levelgen/feature/DripstoneUtils/m_190847_ (Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Direction;IZ)V net/minecraft/world/level/levelgen/feature/DripstoneUtils/growPointedDripstone (Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Direction;IZ)V +MD: net/minecraft/world/level/levelgen/feature/DripstoneUtils/m_190853_ (Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/level/levelgen/feature/DripstoneUtils/placeDripstoneBlockIfPossible (Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/level/levelgen/feature/DripstoneUtils/m_203130_ (Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/world/level/levelgen/feature/DripstoneUtils/isNeitherEmptyNorWater (Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/world/level/levelgen/feature/DripstoneUtils/m_276757_ (Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos$MutableBlockPos;Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/block/state/BlockState;)V net/minecraft/world/level/levelgen/feature/DripstoneUtils/lambda$growPointedDripstone$0 (Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos$MutableBlockPos;Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/block/state/BlockState;)V +MD: net/minecraft/world/level/levelgen/feature/EndGatewayFeature/ (Lcom/mojang/serialization/Codec;)V net/minecraft/world/level/levelgen/feature/EndGatewayFeature/ (Lcom/mojang/serialization/Codec;)V +MD: net/minecraft/world/level/levelgen/feature/EndGatewayFeature/m_142674_ (Lnet/minecraft/world/level/levelgen/feature/FeaturePlaceContext;)Z net/minecraft/world/level/levelgen/feature/EndGatewayFeature/place (Lnet/minecraft/world/level/levelgen/feature/FeaturePlaceContext;)Z +MD: net/minecraft/world/level/levelgen/feature/EndGatewayFeature/m_65695_ (Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/levelgen/feature/configurations/EndGatewayConfiguration;Lnet/minecraft/core/BlockPos;)V net/minecraft/world/level/levelgen/feature/EndGatewayFeature/lambda$place$0 (Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/levelgen/feature/configurations/EndGatewayConfiguration;Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/world/level/levelgen/feature/EndIslandFeature/ (Lcom/mojang/serialization/Codec;)V net/minecraft/world/level/levelgen/feature/EndIslandFeature/ (Lcom/mojang/serialization/Codec;)V +MD: net/minecraft/world/level/levelgen/feature/EndIslandFeature/m_142674_ (Lnet/minecraft/world/level/levelgen/feature/FeaturePlaceContext;)Z net/minecraft/world/level/levelgen/feature/EndIslandFeature/place (Lnet/minecraft/world/level/levelgen/feature/FeaturePlaceContext;)Z +MD: net/minecraft/world/level/levelgen/feature/EndPodiumFeature/ ()V net/minecraft/world/level/levelgen/feature/EndPodiumFeature/ ()V +MD: net/minecraft/world/level/levelgen/feature/EndPodiumFeature/ (Z)V net/minecraft/world/level/levelgen/feature/EndPodiumFeature/ (Z)V +MD: net/minecraft/world/level/levelgen/feature/EndPodiumFeature/m_142674_ (Lnet/minecraft/world/level/levelgen/feature/FeaturePlaceContext;)Z net/minecraft/world/level/levelgen/feature/EndPodiumFeature/place (Lnet/minecraft/world/level/levelgen/feature/FeaturePlaceContext;)Z +MD: net/minecraft/world/level/levelgen/feature/EndPodiumFeature/m_287210_ (Lnet/minecraft/core/BlockPos;)Lnet/minecraft/core/BlockPos; net/minecraft/world/level/levelgen/feature/EndPodiumFeature/getLocation (Lnet/minecraft/core/BlockPos;)Lnet/minecraft/core/BlockPos; +MD: net/minecraft/world/level/levelgen/feature/Feature/ ()V net/minecraft/world/level/levelgen/feature/Feature/ ()V +MD: net/minecraft/world/level/levelgen/feature/Feature/ (Lcom/mojang/serialization/Codec;)V net/minecraft/world/level/levelgen/feature/Feature/ (Lcom/mojang/serialization/Codec;)V +MD: net/minecraft/world/level/levelgen/feature/Feature/m_142674_ (Lnet/minecraft/world/level/levelgen/feature/FeaturePlaceContext;)Z net/minecraft/world/level/levelgen/feature/Feature/place (Lnet/minecraft/world/level/levelgen/feature/FeaturePlaceContext;)Z +MD: net/minecraft/world/level/levelgen/feature/Feature/m_159739_ (Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/core/BlockPos;)V net/minecraft/world/level/levelgen/feature/Feature/markAboveForPostProcessing (Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/world/level/levelgen/feature/Feature/m_159742_ (Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Ljava/util/function/Predicate;)V net/minecraft/world/level/levelgen/feature/Feature/safeSetBlock (Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Ljava/util/function/Predicate;)V +MD: net/minecraft/world/level/levelgen/feature/Feature/m_159747_ (Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/world/level/levelgen/feature/Feature/isStone (Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/world/level/levelgen/feature/Feature/m_159750_ (Ljava/util/function/Function;Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/level/levelgen/feature/Feature/isAdjacentToAir (Ljava/util/function/Function;Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/level/levelgen/feature/Feature/m_159753_ (Ljava/util/function/Function;Lnet/minecraft/core/BlockPos;Ljava/util/function/Predicate;)Z net/minecraft/world/level/levelgen/feature/Feature/checkNeighbors (Ljava/util/function/Function;Lnet/minecraft/core/BlockPos;Ljava/util/function/Predicate;)Z +MD: net/minecraft/world/level/levelgen/feature/Feature/m_159759_ (Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/world/level/levelgen/feature/Feature/isDirt (Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/world/level/levelgen/feature/Feature/m_204735_ (Lnet/minecraft/tags/TagKey;)Ljava/util/function/Predicate; net/minecraft/world/level/levelgen/feature/Feature/isReplaceable (Lnet/minecraft/tags/TagKey;)Ljava/util/function/Predicate; +MD: net/minecraft/world/level/levelgen/feature/Feature/m_204737_ (Lnet/minecraft/tags/TagKey;Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/world/level/levelgen/feature/Feature/lambda$isReplaceable$1 (Lnet/minecraft/tags/TagKey;Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/world/level/levelgen/feature/Feature/m_225028_ (Lnet/minecraft/world/level/levelgen/feature/configurations/FeatureConfiguration;Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/world/level/chunk/ChunkGenerator;Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/level/levelgen/feature/Feature/place (Lnet/minecraft/world/level/levelgen/feature/configurations/FeatureConfiguration;Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/world/level/chunk/ChunkGenerator;Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/level/levelgen/feature/Feature/m_5974_ (Lnet/minecraft/world/level/LevelWriter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V net/minecraft/world/level/levelgen/feature/Feature/setBlock (Lnet/minecraft/world/level/LevelWriter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V +MD: net/minecraft/world/level/levelgen/feature/Feature/m_65787_ ()Lcom/mojang/serialization/Codec; net/minecraft/world/level/levelgen/feature/Feature/configuredCodec ()Lcom/mojang/serialization/Codec; +MD: net/minecraft/world/level/levelgen/feature/Feature/m_65788_ (Lnet/minecraft/world/level/LevelSimulatedReader;Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/level/levelgen/feature/Feature/isGrassOrDirt (Lnet/minecraft/world/level/LevelSimulatedReader;Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/level/levelgen/feature/Feature/m_65805_ (Lnet/minecraft/world/level/levelgen/feature/configurations/FeatureConfiguration;)Lnet/minecraft/world/level/levelgen/feature/ConfiguredFeature; net/minecraft/world/level/levelgen/feature/Feature/lambda$new$0 (Lnet/minecraft/world/level/levelgen/feature/configurations/FeatureConfiguration;)Lnet/minecraft/world/level/levelgen/feature/ConfiguredFeature; +MD: net/minecraft/world/level/levelgen/feature/Feature/m_65807_ (Ljava/lang/String;Lnet/minecraft/world/level/levelgen/feature/Feature;)Lnet/minecraft/world/level/levelgen/feature/Feature; net/minecraft/world/level/levelgen/feature/Feature/register (Ljava/lang/String;Lnet/minecraft/world/level/levelgen/feature/Feature;)Lnet/minecraft/world/level/levelgen/feature/Feature; +MD: net/minecraft/world/level/levelgen/feature/FeatureCountTracker/ ()V net/minecraft/world/level/levelgen/feature/FeatureCountTracker/ ()V +MD: net/minecraft/world/level/levelgen/feature/FeatureCountTracker/ ()V net/minecraft/world/level/levelgen/feature/FeatureCountTracker/ ()V +MD: net/minecraft/world/level/levelgen/feature/FeatureCountTracker/m_190880_ ()V net/minecraft/world/level/levelgen/feature/FeatureCountTracker/clearCounts ()V +MD: net/minecraft/world/level/levelgen/feature/FeatureCountTracker/m_190881_ (Lnet/minecraft/server/level/ServerLevel;)V net/minecraft/world/level/levelgen/feature/FeatureCountTracker/chunkDecorated (Lnet/minecraft/server/level/ServerLevel;)V +MD: net/minecraft/world/level/levelgen/feature/FeatureCountTracker/m_190883_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/level/levelgen/feature/ConfiguredFeature;Ljava/util/Optional;)V net/minecraft/world/level/levelgen/feature/FeatureCountTracker/featurePlaced (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/level/levelgen/feature/ConfiguredFeature;Ljava/util/Optional;)V +MD: net/minecraft/world/level/levelgen/feature/FeatureCountTracker/m_190887_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/level/levelgen/feature/FeatureCountTracker$LevelData;)V net/minecraft/world/level/levelgen/feature/FeatureCountTracker/lambda$logCounts$2 (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/level/levelgen/feature/FeatureCountTracker$LevelData;)V +MD: net/minecraft/world/level/levelgen/feature/FeatureCountTracker/m_190890_ (Lnet/minecraft/world/level/levelgen/feature/FeatureCountTracker$FeatureData;Ljava/lang/Integer;)Ljava/lang/Integer; net/minecraft/world/level/levelgen/feature/FeatureCountTracker/lambda$featurePlaced$0 (Lnet/minecraft/world/level/levelgen/feature/FeatureCountTracker$FeatureData;Ljava/lang/Integer;)Ljava/lang/Integer; +MD: net/minecraft/world/level/levelgen/feature/FeatureCountTracker/m_190899_ ()V net/minecraft/world/level/levelgen/feature/FeatureCountTracker/logCounts ()V +MD: net/minecraft/world/level/levelgen/feature/FeatureCountTracker/m_241761_ (Ljava/lang/String;Ljava/lang/Integer;Lnet/minecraft/core/Registry;Lnet/minecraft/world/level/levelgen/feature/FeatureCountTracker$FeatureData;Ljava/lang/Integer;)V net/minecraft/world/level/levelgen/feature/FeatureCountTracker/lambda$logCounts$1 (Ljava/lang/String;Ljava/lang/Integer;Lnet/minecraft/core/Registry;Lnet/minecraft/world/level/levelgen/feature/FeatureCountTracker$FeatureData;Ljava/lang/Integer;)V +MD: net/minecraft/world/level/levelgen/feature/FeatureCountTracker$1/ ()V net/minecraft/world/level/levelgen/feature/FeatureCountTracker$1/ ()V +MD: net/minecraft/world/level/levelgen/feature/FeatureCountTracker$1/load (Lnet/minecraft/server/level/ServerLevel;)Lnet/minecraft/world/level/levelgen/feature/FeatureCountTracker$LevelData; net/minecraft/world/level/levelgen/feature/FeatureCountTracker$1/load (Lnet/minecraft/server/level/ServerLevel;)Lnet/minecraft/world/level/levelgen/feature/FeatureCountTracker$LevelData; +MD: net/minecraft/world/level/levelgen/feature/FeatureCountTracker$1/load (Ljava/lang/Object;)Ljava/lang/Object; net/minecraft/world/level/levelgen/feature/FeatureCountTracker$1/load (Ljava/lang/Object;)Ljava/lang/Object; +MD: net/minecraft/world/level/levelgen/feature/FeatureCountTracker$FeatureData/ (Lnet/minecraft/world/level/levelgen/feature/ConfiguredFeature;Ljava/util/Optional;)V net/minecraft/world/level/levelgen/feature/FeatureCountTracker$FeatureData/ (Lnet/minecraft/world/level/levelgen/feature/ConfiguredFeature;Ljava/util/Optional;)V +MD: net/minecraft/world/level/levelgen/feature/FeatureCountTracker$FeatureData/equals (Ljava/lang/Object;)Z net/minecraft/world/level/levelgen/feature/FeatureCountTracker$FeatureData/equals (Ljava/lang/Object;)Z +MD: net/minecraft/world/level/levelgen/feature/FeatureCountTracker$FeatureData/f_190905_ ()Lnet/minecraft/world/level/levelgen/feature/ConfiguredFeature; net/minecraft/world/level/levelgen/feature/FeatureCountTracker$FeatureData/feature ()Lnet/minecraft/world/level/levelgen/feature/ConfiguredFeature; +MD: net/minecraft/world/level/levelgen/feature/FeatureCountTracker$FeatureData/f_190906_ ()Ljava/util/Optional; net/minecraft/world/level/levelgen/feature/FeatureCountTracker$FeatureData/topFeature ()Ljava/util/Optional; +MD: net/minecraft/world/level/levelgen/feature/FeatureCountTracker$FeatureData/hashCode ()I net/minecraft/world/level/levelgen/feature/FeatureCountTracker$FeatureData/hashCode ()I +MD: net/minecraft/world/level/levelgen/feature/FeatureCountTracker$FeatureData/toString ()Ljava/lang/String; net/minecraft/world/level/levelgen/feature/FeatureCountTracker$FeatureData/toString ()Ljava/lang/String; +MD: net/minecraft/world/level/levelgen/feature/FeatureCountTracker$LevelData/ (Lit/unimi/dsi/fastutil/objects/Object2IntMap;Lorg/apache/commons/lang3/mutable/MutableInt;)V net/minecraft/world/level/levelgen/feature/FeatureCountTracker$LevelData/ (Lit/unimi/dsi/fastutil/objects/Object2IntMap;Lorg/apache/commons/lang3/mutable/MutableInt;)V +MD: net/minecraft/world/level/levelgen/feature/FeatureCountTracker$LevelData/equals (Ljava/lang/Object;)Z net/minecraft/world/level/levelgen/feature/FeatureCountTracker$LevelData/equals (Ljava/lang/Object;)Z +MD: net/minecraft/world/level/levelgen/feature/FeatureCountTracker$LevelData/f_190916_ ()Lit/unimi/dsi/fastutil/objects/Object2IntMap; net/minecraft/world/level/levelgen/feature/FeatureCountTracker$LevelData/featureData ()Lit/unimi/dsi/fastutil/objects/Object2IntMap; +MD: net/minecraft/world/level/levelgen/feature/FeatureCountTracker$LevelData/f_190917_ ()Lorg/apache/commons/lang3/mutable/MutableInt; net/minecraft/world/level/levelgen/feature/FeatureCountTracker$LevelData/chunksWithFeatures ()Lorg/apache/commons/lang3/mutable/MutableInt; +MD: net/minecraft/world/level/levelgen/feature/FeatureCountTracker$LevelData/hashCode ()I net/minecraft/world/level/levelgen/feature/FeatureCountTracker$LevelData/hashCode ()I +MD: net/minecraft/world/level/levelgen/feature/FeatureCountTracker$LevelData/toString ()Ljava/lang/String; net/minecraft/world/level/levelgen/feature/FeatureCountTracker$LevelData/toString ()Ljava/lang/String; +MD: net/minecraft/world/level/levelgen/feature/FeaturePlaceContext/ (Ljava/util/Optional;Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/world/level/chunk/ChunkGenerator;Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/levelgen/feature/configurations/FeatureConfiguration;)V net/minecraft/world/level/levelgen/feature/FeaturePlaceContext/ (Ljava/util/Optional;Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/world/level/chunk/ChunkGenerator;Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/levelgen/feature/configurations/FeatureConfiguration;)V +MD: net/minecraft/world/level/levelgen/feature/FeaturePlaceContext/m_159774_ ()Lnet/minecraft/world/level/WorldGenLevel; net/minecraft/world/level/levelgen/feature/FeaturePlaceContext/level ()Lnet/minecraft/world/level/WorldGenLevel; +MD: net/minecraft/world/level/levelgen/feature/FeaturePlaceContext/m_159775_ ()Lnet/minecraft/world/level/chunk/ChunkGenerator; net/minecraft/world/level/levelgen/feature/FeaturePlaceContext/chunkGenerator ()Lnet/minecraft/world/level/chunk/ChunkGenerator; +MD: net/minecraft/world/level/levelgen/feature/FeaturePlaceContext/m_159777_ ()Lnet/minecraft/core/BlockPos; net/minecraft/world/level/levelgen/feature/FeaturePlaceContext/origin ()Lnet/minecraft/core/BlockPos; +MD: net/minecraft/world/level/levelgen/feature/FeaturePlaceContext/m_159778_ ()Lnet/minecraft/world/level/levelgen/feature/configurations/FeatureConfiguration; net/minecraft/world/level/levelgen/feature/FeaturePlaceContext/config ()Lnet/minecraft/world/level/levelgen/feature/configurations/FeatureConfiguration; +MD: net/minecraft/world/level/levelgen/feature/FeaturePlaceContext/m_190935_ ()Ljava/util/Optional; net/minecraft/world/level/levelgen/feature/FeaturePlaceContext/topFeature ()Ljava/util/Optional; +MD: net/minecraft/world/level/levelgen/feature/FeaturePlaceContext/m_225041_ ()Lnet/minecraft/util/RandomSource; net/minecraft/world/level/levelgen/feature/FeaturePlaceContext/random ()Lnet/minecraft/util/RandomSource; +MD: net/minecraft/world/level/levelgen/feature/FillLayerFeature/ (Lcom/mojang/serialization/Codec;)V net/minecraft/world/level/levelgen/feature/FillLayerFeature/ (Lcom/mojang/serialization/Codec;)V +MD: net/minecraft/world/level/levelgen/feature/FillLayerFeature/m_142674_ (Lnet/minecraft/world/level/levelgen/feature/FeaturePlaceContext;)Z net/minecraft/world/level/levelgen/feature/FillLayerFeature/place (Lnet/minecraft/world/level/levelgen/feature/FeaturePlaceContext;)Z +MD: net/minecraft/world/level/levelgen/feature/FossilFeature/ (Lcom/mojang/serialization/Codec;)V net/minecraft/world/level/levelgen/feature/FossilFeature/ (Lcom/mojang/serialization/Codec;)V +MD: net/minecraft/world/level/levelgen/feature/FossilFeature/m_142674_ (Lnet/minecraft/world/level/levelgen/feature/FeaturePlaceContext;)Z net/minecraft/world/level/levelgen/feature/FossilFeature/place (Lnet/minecraft/world/level/levelgen/feature/FeaturePlaceContext;)Z +MD: net/minecraft/world/level/levelgen/feature/FossilFeature/m_159781_ (Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/world/level/levelgen/structure/BoundingBox;)I net/minecraft/world/level/levelgen/feature/FossilFeature/countEmptyCorners (Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/world/level/levelgen/structure/BoundingBox;)I +MD: net/minecraft/world/level/levelgen/feature/FossilFeature/m_284118_ (Lnet/minecraft/world/level/WorldGenLevel;Lorg/apache/commons/lang3/mutable/MutableInt;Lnet/minecraft/core/BlockPos;)V net/minecraft/world/level/levelgen/feature/FossilFeature/lambda$countEmptyCorners$0 (Lnet/minecraft/world/level/WorldGenLevel;Lorg/apache/commons/lang3/mutable/MutableInt;Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/world/level/levelgen/feature/FossilFeatureConfiguration/ ()V net/minecraft/world/level/levelgen/feature/FossilFeatureConfiguration/ ()V +MD: net/minecraft/world/level/levelgen/feature/FossilFeatureConfiguration/ (Ljava/util/List;Ljava/util/List;Lnet/minecraft/core/Holder;Lnet/minecraft/core/Holder;I)V net/minecraft/world/level/levelgen/feature/FossilFeatureConfiguration/ (Ljava/util/List;Ljava/util/List;Lnet/minecraft/core/Holder;Lnet/minecraft/core/Holder;I)V +MD: net/minecraft/world/level/levelgen/feature/FossilFeatureConfiguration/m_159815_ (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/world/level/levelgen/feature/FossilFeatureConfiguration/lambda$static$5 (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/world/level/levelgen/feature/FossilFeatureConfiguration/m_159817_ (Lnet/minecraft/world/level/levelgen/feature/FossilFeatureConfiguration;)Ljava/lang/Integer; net/minecraft/world/level/levelgen/feature/FossilFeatureConfiguration/lambda$static$4 (Lnet/minecraft/world/level/levelgen/feature/FossilFeatureConfiguration;)Ljava/lang/Integer; +MD: net/minecraft/world/level/levelgen/feature/FossilFeatureConfiguration/m_159827_ (Lnet/minecraft/world/level/levelgen/feature/FossilFeatureConfiguration;)Ljava/util/List; net/minecraft/world/level/levelgen/feature/FossilFeatureConfiguration/lambda$static$1 (Lnet/minecraft/world/level/levelgen/feature/FossilFeatureConfiguration;)Ljava/util/List; +MD: net/minecraft/world/level/levelgen/feature/FossilFeatureConfiguration/m_159829_ (Lnet/minecraft/world/level/levelgen/feature/FossilFeatureConfiguration;)Ljava/util/List; net/minecraft/world/level/levelgen/feature/FossilFeatureConfiguration/lambda$static$0 (Lnet/minecraft/world/level/levelgen/feature/FossilFeatureConfiguration;)Ljava/util/List; +MD: net/minecraft/world/level/levelgen/feature/FossilFeatureConfiguration/m_204756_ (Lnet/minecraft/world/level/levelgen/feature/FossilFeatureConfiguration;)Lnet/minecraft/core/Holder; net/minecraft/world/level/levelgen/feature/FossilFeatureConfiguration/lambda$static$3 (Lnet/minecraft/world/level/levelgen/feature/FossilFeatureConfiguration;)Lnet/minecraft/core/Holder; +MD: net/minecraft/world/level/levelgen/feature/FossilFeatureConfiguration/m_204758_ (Lnet/minecraft/world/level/levelgen/feature/FossilFeatureConfiguration;)Lnet/minecraft/core/Holder; net/minecraft/world/level/levelgen/feature/FossilFeatureConfiguration/lambda$static$2 (Lnet/minecraft/world/level/levelgen/feature/FossilFeatureConfiguration;)Lnet/minecraft/core/Holder; +MD: net/minecraft/world/level/levelgen/feature/GeodeFeature/ ()V net/minecraft/world/level/levelgen/feature/GeodeFeature/ ()V +MD: net/minecraft/world/level/levelgen/feature/GeodeFeature/ (Lcom/mojang/serialization/Codec;)V net/minecraft/world/level/levelgen/feature/GeodeFeature/ (Lcom/mojang/serialization/Codec;)V +MD: net/minecraft/world/level/levelgen/feature/GeodeFeature/m_142674_ (Lnet/minecraft/world/level/levelgen/feature/FeaturePlaceContext;)Z net/minecraft/world/level/levelgen/feature/GeodeFeature/place (Lnet/minecraft/world/level/levelgen/feature/FeaturePlaceContext;)Z +MD: net/minecraft/world/level/levelgen/feature/GlowstoneFeature/ (Lcom/mojang/serialization/Codec;)V net/minecraft/world/level/levelgen/feature/GlowstoneFeature/ (Lcom/mojang/serialization/Codec;)V +MD: net/minecraft/world/level/levelgen/feature/GlowstoneFeature/m_142674_ (Lnet/minecraft/world/level/levelgen/feature/FeaturePlaceContext;)Z net/minecraft/world/level/levelgen/feature/GlowstoneFeature/place (Lnet/minecraft/world/level/levelgen/feature/FeaturePlaceContext;)Z +MD: net/minecraft/world/level/levelgen/feature/HugeBrownMushroomFeature/ (Lcom/mojang/serialization/Codec;)V net/minecraft/world/level/levelgen/feature/HugeBrownMushroomFeature/ (Lcom/mojang/serialization/Codec;)V +MD: net/minecraft/world/level/levelgen/feature/HugeBrownMushroomFeature/m_213950_ (Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos;ILnet/minecraft/core/BlockPos$MutableBlockPos;Lnet/minecraft/world/level/levelgen/feature/configurations/HugeMushroomFeatureConfiguration;)V net/minecraft/world/level/levelgen/feature/HugeBrownMushroomFeature/makeCap (Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos;ILnet/minecraft/core/BlockPos$MutableBlockPos;Lnet/minecraft/world/level/levelgen/feature/configurations/HugeMushroomFeatureConfiguration;)V +MD: net/minecraft/world/level/levelgen/feature/HugeBrownMushroomFeature/m_6794_ (IIII)I net/minecraft/world/level/levelgen/feature/HugeBrownMushroomFeature/getTreeRadiusForHeight (IIII)I +MD: net/minecraft/world/level/levelgen/feature/HugeFungusConfiguration/ ()V net/minecraft/world/level/levelgen/feature/HugeFungusConfiguration/ ()V +MD: net/minecraft/world/level/levelgen/feature/HugeFungusConfiguration/ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/levelgen/blockpredicates/BlockPredicate;Z)V net/minecraft/world/level/levelgen/feature/HugeFungusConfiguration/ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/levelgen/blockpredicates/BlockPredicate;Z)V +MD: net/minecraft/world/level/levelgen/feature/HugeFungusConfiguration/m_159866_ (Lnet/minecraft/world/level/levelgen/feature/HugeFungusConfiguration;)Ljava/lang/Boolean; net/minecraft/world/level/levelgen/feature/HugeFungusConfiguration/lambda$static$5 (Lnet/minecraft/world/level/levelgen/feature/HugeFungusConfiguration;)Ljava/lang/Boolean; +MD: net/minecraft/world/level/levelgen/feature/HugeFungusConfiguration/m_159868_ (Lnet/minecraft/world/level/levelgen/feature/HugeFungusConfiguration;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/levelgen/feature/HugeFungusConfiguration/lambda$static$3 (Lnet/minecraft/world/level/levelgen/feature/HugeFungusConfiguration;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/levelgen/feature/HugeFungusConfiguration/m_159870_ (Lnet/minecraft/world/level/levelgen/feature/HugeFungusConfiguration;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/levelgen/feature/HugeFungusConfiguration/lambda$static$2 (Lnet/minecraft/world/level/levelgen/feature/HugeFungusConfiguration;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/levelgen/feature/HugeFungusConfiguration/m_159872_ (Lnet/minecraft/world/level/levelgen/feature/HugeFungusConfiguration;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/levelgen/feature/HugeFungusConfiguration/lambda$static$1 (Lnet/minecraft/world/level/levelgen/feature/HugeFungusConfiguration;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/levelgen/feature/HugeFungusConfiguration/m_159874_ (Lnet/minecraft/world/level/levelgen/feature/HugeFungusConfiguration;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/levelgen/feature/HugeFungusConfiguration/lambda$static$0 (Lnet/minecraft/world/level/levelgen/feature/HugeFungusConfiguration;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/levelgen/feature/HugeFungusConfiguration/m_284119_ (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/world/level/levelgen/feature/HugeFungusConfiguration/lambda$static$6 (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/world/level/levelgen/feature/HugeFungusConfiguration/m_284120_ (Lnet/minecraft/world/level/levelgen/feature/HugeFungusConfiguration;)Lnet/minecraft/world/level/levelgen/blockpredicates/BlockPredicate; net/minecraft/world/level/levelgen/feature/HugeFungusConfiguration/lambda$static$4 (Lnet/minecraft/world/level/levelgen/feature/HugeFungusConfiguration;)Lnet/minecraft/world/level/levelgen/blockpredicates/BlockPredicate; +MD: net/minecraft/world/level/levelgen/feature/HugeFungusFeature/ (Lcom/mojang/serialization/Codec;)V net/minecraft/world/level/levelgen/feature/HugeFungusFeature/ (Lcom/mojang/serialization/Codec;)V +MD: net/minecraft/world/level/levelgen/feature/HugeFungusFeature/m_142674_ (Lnet/minecraft/world/level/levelgen/feature/FeaturePlaceContext;)Z net/minecraft/world/level/levelgen/feature/HugeFungusFeature/place (Lnet/minecraft/world/level/levelgen/feature/FeaturePlaceContext;)Z +MD: net/minecraft/world/level/levelgen/feature/HugeFungusFeature/m_225049_ (Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/levelgen/feature/HugeFungusConfiguration;Lnet/minecraft/core/BlockPos$MutableBlockPos;FFF)V net/minecraft/world/level/levelgen/feature/HugeFungusFeature/placeHatBlock (Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/levelgen/feature/HugeFungusConfiguration;Lnet/minecraft/core/BlockPos$MutableBlockPos;FFF)V +MD: net/minecraft/world/level/levelgen/feature/HugeFungusFeature/m_225064_ (Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Z)V net/minecraft/world/level/levelgen/feature/HugeFungusFeature/placeHatDropBlock (Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Z)V +MD: net/minecraft/world/level/levelgen/feature/HugeFungusFeature/m_225070_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/util/RandomSource;)V net/minecraft/world/level/levelgen/feature/HugeFungusFeature/tryPlaceWeepingVines (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/util/RandomSource;)V +MD: net/minecraft/world/level/levelgen/feature/HugeFungusFeature/m_284273_ (Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/levelgen/feature/HugeFungusConfiguration;Lnet/minecraft/core/BlockPos;IZ)V net/minecraft/world/level/levelgen/feature/HugeFungusFeature/placeStem (Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/levelgen/feature/HugeFungusConfiguration;Lnet/minecraft/core/BlockPos;IZ)V +MD: net/minecraft/world/level/levelgen/feature/HugeFungusFeature/m_284325_ (Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/levelgen/feature/HugeFungusConfiguration;Lnet/minecraft/core/BlockPos;IZ)V net/minecraft/world/level/levelgen/feature/HugeFungusFeature/placeHat (Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/levelgen/feature/HugeFungusConfiguration;Lnet/minecraft/core/BlockPos;IZ)V +MD: net/minecraft/world/level/levelgen/feature/HugeFungusFeature/m_284534_ (Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/levelgen/feature/HugeFungusConfiguration;Z)Z net/minecraft/world/level/levelgen/feature/HugeFungusFeature/isReplaceable (Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/levelgen/feature/HugeFungusConfiguration;Z)Z +MD: net/minecraft/world/level/levelgen/feature/HugeRedMushroomFeature/ (Lcom/mojang/serialization/Codec;)V net/minecraft/world/level/levelgen/feature/HugeRedMushroomFeature/ (Lcom/mojang/serialization/Codec;)V +MD: net/minecraft/world/level/levelgen/feature/HugeRedMushroomFeature/m_213950_ (Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos;ILnet/minecraft/core/BlockPos$MutableBlockPos;Lnet/minecraft/world/level/levelgen/feature/configurations/HugeMushroomFeatureConfiguration;)V net/minecraft/world/level/levelgen/feature/HugeRedMushroomFeature/makeCap (Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos;ILnet/minecraft/core/BlockPos$MutableBlockPos;Lnet/minecraft/world/level/levelgen/feature/configurations/HugeMushroomFeatureConfiguration;)V +MD: net/minecraft/world/level/levelgen/feature/HugeRedMushroomFeature/m_6794_ (IIII)I net/minecraft/world/level/levelgen/feature/HugeRedMushroomFeature/getTreeRadiusForHeight (IIII)I +MD: net/minecraft/world/level/levelgen/feature/IceSpikeFeature/ (Lcom/mojang/serialization/Codec;)V net/minecraft/world/level/levelgen/feature/IceSpikeFeature/ (Lcom/mojang/serialization/Codec;)V +MD: net/minecraft/world/level/levelgen/feature/IceSpikeFeature/m_142674_ (Lnet/minecraft/world/level/levelgen/feature/FeaturePlaceContext;)Z net/minecraft/world/level/levelgen/feature/IceSpikeFeature/place (Lnet/minecraft/world/level/levelgen/feature/FeaturePlaceContext;)Z +MD: net/minecraft/world/level/levelgen/feature/IcebergFeature/ (Lcom/mojang/serialization/Codec;)V net/minecraft/world/level/levelgen/feature/IcebergFeature/ (Lcom/mojang/serialization/Codec;)V +MD: net/minecraft/world/level/levelgen/feature/IcebergFeature/m_142674_ (Lnet/minecraft/world/level/levelgen/feature/FeaturePlaceContext;)Z net/minecraft/world/level/levelgen/feature/IcebergFeature/place (Lnet/minecraft/world/level/levelgen/feature/FeaturePlaceContext;)Z +MD: net/minecraft/world/level/levelgen/feature/IcebergFeature/m_159885_ (Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/world/level/levelgen/feature/IcebergFeature/isIcebergState (Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/world/level/levelgen/feature/IcebergFeature/m_225088_ (IILnet/minecraft/core/BlockPos;ILnet/minecraft/util/RandomSource;)D net/minecraft/world/level/levelgen/feature/IcebergFeature/signedDistanceCircle (IILnet/minecraft/core/BlockPos;ILnet/minecraft/util/RandomSource;)D +MD: net/minecraft/world/level/levelgen/feature/IcebergFeature/m_225094_ (Lnet/minecraft/util/RandomSource;III)I net/minecraft/world/level/levelgen/feature/IcebergFeature/heightDependentRadiusRound (Lnet/minecraft/util/RandomSource;III)I +MD: net/minecraft/world/level/levelgen/feature/IcebergFeature/m_225099_ (Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/LevelAccessor;IILnet/minecraft/core/BlockPos;ZIDI)V net/minecraft/world/level/levelgen/feature/IcebergFeature/generateCutOut (Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/LevelAccessor;IILnet/minecraft/core/BlockPos;ZIDI)V +MD: net/minecraft/world/level/levelgen/feature/IcebergFeature/m_225109_ (Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos;IIIIIIZIDZLnet/minecraft/world/level/block/state/BlockState;)V net/minecraft/world/level/levelgen/feature/IcebergFeature/generateIcebergBlock (Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos;IIIIIIZIDZLnet/minecraft/world/level/block/state/BlockState;)V +MD: net/minecraft/world/level/levelgen/feature/IcebergFeature/m_225124_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/util/RandomSource;IIZZLnet/minecraft/world/level/block/state/BlockState;)V net/minecraft/world/level/levelgen/feature/IcebergFeature/setIcebergBlock (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/util/RandomSource;IIZZLnet/minecraft/world/level/block/state/BlockState;)V +MD: net/minecraft/world/level/levelgen/feature/IcebergFeature/m_225133_ (Lnet/minecraft/util/RandomSource;III)I net/minecraft/world/level/levelgen/feature/IcebergFeature/heightDependentRadiusSteep (Lnet/minecraft/util/RandomSource;III)I +MD: net/minecraft/world/level/levelgen/feature/IcebergFeature/m_66018_ (III)I net/minecraft/world/level/levelgen/feature/IcebergFeature/getEllipseC (III)I +MD: net/minecraft/world/level/levelgen/feature/IcebergFeature/m_66022_ (IILnet/minecraft/core/BlockPos;IID)D net/minecraft/world/level/levelgen/feature/IcebergFeature/signedDistanceEllipse (IILnet/minecraft/core/BlockPos;IID)D +MD: net/minecraft/world/level/levelgen/feature/IcebergFeature/m_66035_ (IILnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/LevelAccessor;ZDLnet/minecraft/core/BlockPos;II)V net/minecraft/world/level/levelgen/feature/IcebergFeature/carve (IILnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/LevelAccessor;ZDLnet/minecraft/core/BlockPos;II)V +MD: net/minecraft/world/level/levelgen/feature/IcebergFeature/m_66045_ (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/level/levelgen/feature/IcebergFeature/belowIsAir (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/level/levelgen/feature/IcebergFeature/m_66048_ (Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;)V net/minecraft/world/level/levelgen/feature/IcebergFeature/removeFloatingSnowLayer (Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/world/level/levelgen/feature/IcebergFeature/m_66051_ (Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;IIZI)V net/minecraft/world/level/levelgen/feature/IcebergFeature/smooth (Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;IIZI)V +MD: net/minecraft/world/level/levelgen/feature/IcebergFeature/m_66109_ (III)I net/minecraft/world/level/levelgen/feature/IcebergFeature/heightDependentRadiusEllipse (III)I +MD: net/minecraft/world/level/levelgen/feature/KelpFeature/ (Lcom/mojang/serialization/Codec;)V net/minecraft/world/level/levelgen/feature/KelpFeature/ (Lcom/mojang/serialization/Codec;)V +MD: net/minecraft/world/level/levelgen/feature/KelpFeature/m_142674_ (Lnet/minecraft/world/level/levelgen/feature/FeaturePlaceContext;)Z net/minecraft/world/level/levelgen/feature/KelpFeature/place (Lnet/minecraft/world/level/levelgen/feature/FeaturePlaceContext;)Z +MD: net/minecraft/world/level/levelgen/feature/LakeFeature/ ()V net/minecraft/world/level/levelgen/feature/LakeFeature/ ()V +MD: net/minecraft/world/level/levelgen/feature/LakeFeature/ (Lcom/mojang/serialization/Codec;)V net/minecraft/world/level/levelgen/feature/LakeFeature/ (Lcom/mojang/serialization/Codec;)V +MD: net/minecraft/world/level/levelgen/feature/LakeFeature/m_142674_ (Lnet/minecraft/world/level/levelgen/feature/FeaturePlaceContext;)Z net/minecraft/world/level/levelgen/feature/LakeFeature/place (Lnet/minecraft/world/level/levelgen/feature/FeaturePlaceContext;)Z +MD: net/minecraft/world/level/levelgen/feature/LakeFeature/m_190951_ (Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/world/level/levelgen/feature/LakeFeature/canReplaceBlock (Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/world/level/levelgen/feature/LakeFeature$Configuration/ ()V net/minecraft/world/level/levelgen/feature/LakeFeature$Configuration/ ()V +MD: net/minecraft/world/level/levelgen/feature/LakeFeature$Configuration/ (Lnet/minecraft/world/level/levelgen/feature/stateproviders/BlockStateProvider;Lnet/minecraft/world/level/levelgen/feature/stateproviders/BlockStateProvider;)V net/minecraft/world/level/levelgen/feature/LakeFeature$Configuration/ (Lnet/minecraft/world/level/levelgen/feature/stateproviders/BlockStateProvider;Lnet/minecraft/world/level/levelgen/feature/stateproviders/BlockStateProvider;)V +MD: net/minecraft/world/level/levelgen/feature/LakeFeature$Configuration/equals (Ljava/lang/Object;)Z net/minecraft/world/level/levelgen/feature/LakeFeature$Configuration/equals (Ljava/lang/Object;)Z +MD: net/minecraft/world/level/levelgen/feature/LakeFeature$Configuration/f_190954_ ()Lnet/minecraft/world/level/levelgen/feature/stateproviders/BlockStateProvider; net/minecraft/world/level/levelgen/feature/LakeFeature$Configuration/fluid ()Lnet/minecraft/world/level/levelgen/feature/stateproviders/BlockStateProvider; +MD: net/minecraft/world/level/levelgen/feature/LakeFeature$Configuration/f_190955_ ()Lnet/minecraft/world/level/levelgen/feature/stateproviders/BlockStateProvider; net/minecraft/world/level/levelgen/feature/LakeFeature$Configuration/barrier ()Lnet/minecraft/world/level/levelgen/feature/stateproviders/BlockStateProvider; +MD: net/minecraft/world/level/levelgen/feature/LakeFeature$Configuration/hashCode ()I net/minecraft/world/level/levelgen/feature/LakeFeature$Configuration/hashCode ()I +MD: net/minecraft/world/level/levelgen/feature/LakeFeature$Configuration/m_190961_ (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/world/level/levelgen/feature/LakeFeature$Configuration/lambda$static$0 (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/world/level/levelgen/feature/LakeFeature$Configuration/toString ()Ljava/lang/String; net/minecraft/world/level/levelgen/feature/LakeFeature$Configuration/toString ()Ljava/lang/String; +MD: net/minecraft/world/level/levelgen/feature/LargeDripstoneFeature/ (Lcom/mojang/serialization/Codec;)V net/minecraft/world/level/levelgen/feature/LargeDripstoneFeature/ (Lcom/mojang/serialization/Codec;)V +MD: net/minecraft/world/level/levelgen/feature/LargeDripstoneFeature/m_142674_ (Lnet/minecraft/world/level/levelgen/feature/FeaturePlaceContext;)Z net/minecraft/world/level/levelgen/feature/LargeDripstoneFeature/place (Lnet/minecraft/world/level/levelgen/feature/FeaturePlaceContext;)Z +MD: net/minecraft/world/level/levelgen/feature/LargeDripstoneFeature/m_159961_ (Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/levelgen/Column$Range;Lnet/minecraft/world/level/levelgen/feature/LargeDripstoneFeature$WindOffsetter;)V net/minecraft/world/level/levelgen/feature/LargeDripstoneFeature/placeDebugMarkers (Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/levelgen/Column$Range;Lnet/minecraft/world/level/levelgen/feature/LargeDripstoneFeature$WindOffsetter;)V +MD: net/minecraft/world/level/levelgen/feature/LargeDripstoneFeature/m_225138_ (Lnet/minecraft/core/BlockPos;ZLnet/minecraft/util/RandomSource;ILnet/minecraft/util/valueproviders/FloatProvider;Lnet/minecraft/util/valueproviders/FloatProvider;)Lnet/minecraft/world/level/levelgen/feature/LargeDripstoneFeature$LargeDripstone; net/minecraft/world/level/levelgen/feature/LargeDripstoneFeature/makeDripstone (Lnet/minecraft/core/BlockPos;ZLnet/minecraft/util/RandomSource;ILnet/minecraft/util/valueproviders/FloatProvider;Lnet/minecraft/util/valueproviders/FloatProvider;)Lnet/minecraft/world/level/levelgen/feature/LargeDripstoneFeature$LargeDripstone; +MD: net/minecraft/world/level/levelgen/feature/LargeDripstoneFeature$LargeDripstone/ (Lnet/minecraft/core/BlockPos;ZIDD)V net/minecraft/world/level/levelgen/feature/LargeDripstoneFeature$LargeDripstone/ (Lnet/minecraft/core/BlockPos;ZIDD)V +MD: net/minecraft/world/level/levelgen/feature/LargeDripstoneFeature$LargeDripstone/m_159986_ ()I net/minecraft/world/level/levelgen/feature/LargeDripstoneFeature$LargeDripstone/getHeight ()I +MD: net/minecraft/world/level/levelgen/feature/LargeDripstoneFeature$LargeDripstone/m_159987_ (F)I net/minecraft/world/level/levelgen/feature/LargeDripstoneFeature$LargeDripstone/getHeightAtRadius (F)I +MD: net/minecraft/world/level/levelgen/feature/LargeDripstoneFeature$LargeDripstone/m_159989_ (Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/world/level/levelgen/feature/LargeDripstoneFeature$WindOffsetter;)Z net/minecraft/world/level/levelgen/feature/LargeDripstoneFeature$LargeDripstone/moveBackUntilBaseIsInsideStoneAndShrinkRadiusIfNecessary (Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/world/level/levelgen/feature/LargeDripstoneFeature$WindOffsetter;)Z +MD: net/minecraft/world/level/levelgen/feature/LargeDripstoneFeature$LargeDripstone/m_159996_ (Lnet/minecraft/world/level/levelgen/feature/configurations/LargeDripstoneConfiguration;)Z net/minecraft/world/level/levelgen/feature/LargeDripstoneFeature$LargeDripstone/isSuitableForWind (Lnet/minecraft/world/level/levelgen/feature/configurations/LargeDripstoneConfiguration;)Z +MD: net/minecraft/world/level/levelgen/feature/LargeDripstoneFeature$LargeDripstone/m_159998_ ()I net/minecraft/world/level/levelgen/feature/LargeDripstoneFeature$LargeDripstone/getMinY ()I +MD: net/minecraft/world/level/levelgen/feature/LargeDripstoneFeature$LargeDripstone/m_159999_ ()I net/minecraft/world/level/levelgen/feature/LargeDripstoneFeature$LargeDripstone/getMaxY ()I +MD: net/minecraft/world/level/levelgen/feature/LargeDripstoneFeature$LargeDripstone/m_225145_ (Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/levelgen/feature/LargeDripstoneFeature$WindOffsetter;)V net/minecraft/world/level/levelgen/feature/LargeDripstoneFeature$LargeDripstone/placeBlocks (Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/levelgen/feature/LargeDripstoneFeature$WindOffsetter;)V +MD: net/minecraft/world/level/levelgen/feature/LargeDripstoneFeature$WindOffsetter/ (ILnet/minecraft/util/RandomSource;Lnet/minecraft/util/valueproviders/FloatProvider;)V net/minecraft/world/level/levelgen/feature/LargeDripstoneFeature$WindOffsetter/ (ILnet/minecraft/util/RandomSource;Lnet/minecraft/util/valueproviders/FloatProvider;)V +MD: net/minecraft/world/level/levelgen/feature/LargeDripstoneFeature$WindOffsetter/ ()V net/minecraft/world/level/levelgen/feature/LargeDripstoneFeature$WindOffsetter/ ()V +MD: net/minecraft/world/level/levelgen/feature/LargeDripstoneFeature$WindOffsetter/m_160007_ ()Lnet/minecraft/world/level/levelgen/feature/LargeDripstoneFeature$WindOffsetter; net/minecraft/world/level/levelgen/feature/LargeDripstoneFeature$WindOffsetter/noWind ()Lnet/minecraft/world/level/levelgen/feature/LargeDripstoneFeature$WindOffsetter; +MD: net/minecraft/world/level/levelgen/feature/LargeDripstoneFeature$WindOffsetter/m_160008_ (Lnet/minecraft/core/BlockPos;)Lnet/minecraft/core/BlockPos; net/minecraft/world/level/levelgen/feature/LargeDripstoneFeature$WindOffsetter/offset (Lnet/minecraft/core/BlockPos;)Lnet/minecraft/core/BlockPos; +MD: net/minecraft/world/level/levelgen/feature/MonsterRoomFeature/ ()V net/minecraft/world/level/levelgen/feature/MonsterRoomFeature/ ()V +MD: net/minecraft/world/level/levelgen/feature/MonsterRoomFeature/ (Lcom/mojang/serialization/Codec;)V net/minecraft/world/level/levelgen/feature/MonsterRoomFeature/ (Lcom/mojang/serialization/Codec;)V +MD: net/minecraft/world/level/levelgen/feature/MonsterRoomFeature/m_142674_ (Lnet/minecraft/world/level/levelgen/feature/FeaturePlaceContext;)Z net/minecraft/world/level/levelgen/feature/MonsterRoomFeature/place (Lnet/minecraft/world/level/levelgen/feature/FeaturePlaceContext;)Z +MD: net/minecraft/world/level/levelgen/feature/MonsterRoomFeature/m_225153_ (Lnet/minecraft/util/RandomSource;)Lnet/minecraft/world/entity/EntityType; net/minecraft/world/level/levelgen/feature/MonsterRoomFeature/randomEntityId (Lnet/minecraft/util/RandomSource;)Lnet/minecraft/world/entity/EntityType; +MD: net/minecraft/world/level/levelgen/feature/MultifaceGrowthFeature/ (Lcom/mojang/serialization/Codec;)V net/minecraft/world/level/levelgen/feature/MultifaceGrowthFeature/ (Lcom/mojang/serialization/Codec;)V +MD: net/minecraft/world/level/levelgen/feature/MultifaceGrowthFeature/m_142674_ (Lnet/minecraft/world/level/levelgen/feature/FeaturePlaceContext;)Z net/minecraft/world/level/levelgen/feature/MultifaceGrowthFeature/place (Lnet/minecraft/world/level/levelgen/feature/FeaturePlaceContext;)Z +MD: net/minecraft/world/level/levelgen/feature/MultifaceGrowthFeature/m_225157_ (Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/levelgen/feature/configurations/MultifaceGrowthConfiguration;Lnet/minecraft/util/RandomSource;Ljava/util/List;)Z net/minecraft/world/level/levelgen/feature/MultifaceGrowthFeature/placeGrowthIfPossible (Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/levelgen/feature/configurations/MultifaceGrowthConfiguration;Lnet/minecraft/util/RandomSource;Ljava/util/List;)Z +MD: net/minecraft/world/level/levelgen/feature/MultifaceGrowthFeature/m_225166_ (Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/world/level/levelgen/feature/MultifaceGrowthFeature/isAirOrWater (Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/world/level/levelgen/feature/NetherForestVegetationFeature/ (Lcom/mojang/serialization/Codec;)V net/minecraft/world/level/levelgen/feature/NetherForestVegetationFeature/ (Lcom/mojang/serialization/Codec;)V +MD: net/minecraft/world/level/levelgen/feature/NetherForestVegetationFeature/m_142674_ (Lnet/minecraft/world/level/levelgen/feature/FeaturePlaceContext;)Z net/minecraft/world/level/levelgen/feature/NetherForestVegetationFeature/place (Lnet/minecraft/world/level/levelgen/feature/FeaturePlaceContext;)Z +MD: net/minecraft/world/level/levelgen/feature/NoOpFeature/ (Lcom/mojang/serialization/Codec;)V net/minecraft/world/level/levelgen/feature/NoOpFeature/ (Lcom/mojang/serialization/Codec;)V +MD: net/minecraft/world/level/levelgen/feature/NoOpFeature/m_142674_ (Lnet/minecraft/world/level/levelgen/feature/FeaturePlaceContext;)Z net/minecraft/world/level/levelgen/feature/NoOpFeature/place (Lnet/minecraft/world/level/levelgen/feature/FeaturePlaceContext;)Z +MD: net/minecraft/world/level/levelgen/feature/OreFeature/ (Lcom/mojang/serialization/Codec;)V net/minecraft/world/level/levelgen/feature/OreFeature/ (Lcom/mojang/serialization/Codec;)V +MD: net/minecraft/world/level/levelgen/feature/OreFeature/m_142674_ (Lnet/minecraft/world/level/levelgen/feature/FeaturePlaceContext;)Z net/minecraft/world/level/levelgen/feature/OreFeature/place (Lnet/minecraft/world/level/levelgen/feature/FeaturePlaceContext;)Z +MD: net/minecraft/world/level/levelgen/feature/OreFeature/m_225168_ (Lnet/minecraft/util/RandomSource;F)Z net/minecraft/world/level/levelgen/feature/OreFeature/shouldSkipAirCheck (Lnet/minecraft/util/RandomSource;F)Z +MD: net/minecraft/world/level/levelgen/feature/OreFeature/m_225171_ (Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/levelgen/feature/configurations/OreConfiguration;DDDDDDIIIII)Z net/minecraft/world/level/levelgen/feature/OreFeature/doPlace (Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/levelgen/feature/configurations/OreConfiguration;DDDDDDIIIII)Z +MD: net/minecraft/world/level/levelgen/feature/OreFeature/m_225186_ (Lnet/minecraft/world/level/block/state/BlockState;Ljava/util/function/Function;Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/levelgen/feature/configurations/OreConfiguration;Lnet/minecraft/world/level/levelgen/feature/configurations/OreConfiguration$TargetBlockState;Lnet/minecraft/core/BlockPos$MutableBlockPos;)Z net/minecraft/world/level/levelgen/feature/OreFeature/canPlaceOre (Lnet/minecraft/world/level/block/state/BlockState;Ljava/util/function/Function;Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/levelgen/feature/configurations/OreConfiguration;Lnet/minecraft/world/level/levelgen/feature/configurations/OreConfiguration$TargetBlockState;Lnet/minecraft/core/BlockPos$MutableBlockPos;)Z +MD: net/minecraft/world/level/levelgen/feature/PointedDripstoneFeature/ (Lcom/mojang/serialization/Codec;)V net/minecraft/world/level/levelgen/feature/PointedDripstoneFeature/ (Lcom/mojang/serialization/Codec;)V +MD: net/minecraft/world/level/levelgen/feature/PointedDripstoneFeature/m_142674_ (Lnet/minecraft/world/level/levelgen/feature/FeaturePlaceContext;)Z net/minecraft/world/level/levelgen/feature/PointedDripstoneFeature/place (Lnet/minecraft/world/level/levelgen/feature/FeaturePlaceContext;)Z +MD: net/minecraft/world/level/levelgen/feature/PointedDripstoneFeature/m_225193_ (Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/levelgen/feature/configurations/PointedDripstoneConfiguration;)V net/minecraft/world/level/levelgen/feature/PointedDripstoneFeature/createPatchOfDripstoneBlocks (Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/levelgen/feature/configurations/PointedDripstoneConfiguration;)V +MD: net/minecraft/world/level/levelgen/feature/PointedDripstoneFeature/m_225198_ (Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)Ljava/util/Optional; net/minecraft/world/level/levelgen/feature/PointedDripstoneFeature/getTipDirection (Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)Ljava/util/Optional; +MD: net/minecraft/world/level/levelgen/feature/RandomBooleanSelectorFeature/ (Lcom/mojang/serialization/Codec;)V net/minecraft/world/level/levelgen/feature/RandomBooleanSelectorFeature/ (Lcom/mojang/serialization/Codec;)V +MD: net/minecraft/world/level/levelgen/feature/RandomBooleanSelectorFeature/m_142674_ (Lnet/minecraft/world/level/levelgen/feature/FeaturePlaceContext;)Z net/minecraft/world/level/levelgen/feature/RandomBooleanSelectorFeature/place (Lnet/minecraft/world/level/levelgen/feature/FeaturePlaceContext;)Z +MD: net/minecraft/world/level/levelgen/feature/RandomPatchFeature/ (Lcom/mojang/serialization/Codec;)V net/minecraft/world/level/levelgen/feature/RandomPatchFeature/ (Lcom/mojang/serialization/Codec;)V +MD: net/minecraft/world/level/levelgen/feature/RandomPatchFeature/m_142674_ (Lnet/minecraft/world/level/levelgen/feature/FeaturePlaceContext;)Z net/minecraft/world/level/levelgen/feature/RandomPatchFeature/place (Lnet/minecraft/world/level/levelgen/feature/FeaturePlaceContext;)Z +MD: net/minecraft/world/level/levelgen/feature/RandomSelectorFeature/ (Lcom/mojang/serialization/Codec;)V net/minecraft/world/level/levelgen/feature/RandomSelectorFeature/ (Lcom/mojang/serialization/Codec;)V +MD: net/minecraft/world/level/levelgen/feature/RandomSelectorFeature/m_142674_ (Lnet/minecraft/world/level/levelgen/feature/FeaturePlaceContext;)Z net/minecraft/world/level/levelgen/feature/RandomSelectorFeature/place (Lnet/minecraft/world/level/levelgen/feature/FeaturePlaceContext;)Z +MD: net/minecraft/world/level/levelgen/feature/ReplaceBlobsFeature/ (Lcom/mojang/serialization/Codec;)V net/minecraft/world/level/levelgen/feature/ReplaceBlobsFeature/ (Lcom/mojang/serialization/Codec;)V +MD: net/minecraft/world/level/levelgen/feature/ReplaceBlobsFeature/m_142674_ (Lnet/minecraft/world/level/levelgen/feature/FeaturePlaceContext;)Z net/minecraft/world/level/levelgen/feature/ReplaceBlobsFeature/place (Lnet/minecraft/world/level/levelgen/feature/FeaturePlaceContext;)Z +MD: net/minecraft/world/level/levelgen/feature/ReplaceBlobsFeature/m_66634_ (Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos$MutableBlockPos;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/core/BlockPos; net/minecraft/world/level/levelgen/feature/ReplaceBlobsFeature/findTarget (Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos$MutableBlockPos;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/core/BlockPos; +MD: net/minecraft/world/level/levelgen/feature/ReplaceBlockFeature/ (Lcom/mojang/serialization/Codec;)V net/minecraft/world/level/levelgen/feature/ReplaceBlockFeature/ (Lcom/mojang/serialization/Codec;)V +MD: net/minecraft/world/level/levelgen/feature/ReplaceBlockFeature/m_142674_ (Lnet/minecraft/world/level/levelgen/feature/FeaturePlaceContext;)Z net/minecraft/world/level/levelgen/feature/ReplaceBlockFeature/place (Lnet/minecraft/world/level/levelgen/feature/FeaturePlaceContext;)Z +MD: net/minecraft/world/level/levelgen/feature/RootSystemFeature/ (Lcom/mojang/serialization/Codec;)V net/minecraft/world/level/levelgen/feature/RootSystemFeature/ (Lcom/mojang/serialization/Codec;)V +MD: net/minecraft/world/level/levelgen/feature/RootSystemFeature/m_142674_ (Lnet/minecraft/world/level/levelgen/feature/FeaturePlaceContext;)Z net/minecraft/world/level/levelgen/feature/RootSystemFeature/place (Lnet/minecraft/world/level/levelgen/feature/FeaturePlaceContext;)Z +MD: net/minecraft/world/level/levelgen/feature/RootSystemFeature/m_160235_ (Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/world/level/levelgen/feature/configurations/RootSystemConfiguration;Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/level/levelgen/feature/RootSystemFeature/spaceForTree (Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/world/level/levelgen/feature/configurations/RootSystemConfiguration;Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/level/levelgen/feature/RootSystemFeature/m_160252_ (Lnet/minecraft/world/level/block/state/BlockState;II)Z net/minecraft/world/level/levelgen/feature/RootSystemFeature/isAllowedTreeSpace (Lnet/minecraft/world/level/block/state/BlockState;II)Z +MD: net/minecraft/world/level/levelgen/feature/RootSystemFeature/m_204760_ (Lnet/minecraft/world/level/levelgen/feature/configurations/RootSystemConfiguration;Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/world/level/levelgen/feature/RootSystemFeature/lambda$placeRootedDirt$0 (Lnet/minecraft/world/level/levelgen/feature/configurations/RootSystemConfiguration;Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/world/level/levelgen/feature/RootSystemFeature/m_225202_ (Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/world/level/chunk/ChunkGenerator;Lnet/minecraft/world/level/levelgen/feature/configurations/RootSystemConfiguration;Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos$MutableBlockPos;Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/level/levelgen/feature/RootSystemFeature/placeDirtAndTree (Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/world/level/chunk/ChunkGenerator;Lnet/minecraft/world/level/levelgen/feature/configurations/RootSystemConfiguration;Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos$MutableBlockPos;Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/level/levelgen/feature/RootSystemFeature/m_225209_ (Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/world/level/levelgen/feature/configurations/RootSystemConfiguration;Lnet/minecraft/util/RandomSource;IILnet/minecraft/core/BlockPos$MutableBlockPos;)V net/minecraft/world/level/levelgen/feature/RootSystemFeature/placeRootedDirt (Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/world/level/levelgen/feature/configurations/RootSystemConfiguration;Lnet/minecraft/util/RandomSource;IILnet/minecraft/core/BlockPos$MutableBlockPos;)V +MD: net/minecraft/world/level/levelgen/feature/RootSystemFeature/m_225216_ (Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/world/level/levelgen/feature/configurations/RootSystemConfiguration;Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos$MutableBlockPos;)V net/minecraft/world/level/levelgen/feature/RootSystemFeature/placeRoots (Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/world/level/levelgen/feature/configurations/RootSystemConfiguration;Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos$MutableBlockPos;)V +MD: net/minecraft/world/level/levelgen/feature/RootSystemFeature/m_225222_ (Lnet/minecraft/core/BlockPos;ILnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/world/level/levelgen/feature/configurations/RootSystemConfiguration;Lnet/minecraft/util/RandomSource;)V net/minecraft/world/level/levelgen/feature/RootSystemFeature/placeDirt (Lnet/minecraft/core/BlockPos;ILnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/world/level/levelgen/feature/configurations/RootSystemConfiguration;Lnet/minecraft/util/RandomSource;)V +MD: net/minecraft/world/level/levelgen/feature/ScatteredOreFeature/ (Lcom/mojang/serialization/Codec;)V net/minecraft/world/level/levelgen/feature/ScatteredOreFeature/ (Lcom/mojang/serialization/Codec;)V +MD: net/minecraft/world/level/levelgen/feature/ScatteredOreFeature/m_142674_ (Lnet/minecraft/world/level/levelgen/feature/FeaturePlaceContext;)Z net/minecraft/world/level/levelgen/feature/ScatteredOreFeature/place (Lnet/minecraft/world/level/levelgen/feature/FeaturePlaceContext;)Z +MD: net/minecraft/world/level/levelgen/feature/ScatteredOreFeature/m_225228_ (Lnet/minecraft/util/RandomSource;I)I net/minecraft/world/level/levelgen/feature/ScatteredOreFeature/getRandomPlacementInOneAxisRelativeToOrigin (Lnet/minecraft/util/RandomSource;I)I +MD: net/minecraft/world/level/levelgen/feature/ScatteredOreFeature/m_225231_ (Lnet/minecraft/core/BlockPos$MutableBlockPos;Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos;I)V net/minecraft/world/level/levelgen/feature/ScatteredOreFeature/offsetTargetPos (Lnet/minecraft/core/BlockPos$MutableBlockPos;Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos;I)V +MD: net/minecraft/world/level/levelgen/feature/SculkPatchFeature/ (Lcom/mojang/serialization/Codec;)V net/minecraft/world/level/levelgen/feature/SculkPatchFeature/ (Lcom/mojang/serialization/Codec;)V +MD: net/minecraft/world/level/levelgen/feature/SculkPatchFeature/m_142674_ (Lnet/minecraft/world/level/levelgen/feature/FeaturePlaceContext;)Z net/minecraft/world/level/levelgen/feature/SculkPatchFeature/place (Lnet/minecraft/world/level/levelgen/feature/FeaturePlaceContext;)Z +MD: net/minecraft/world/level/levelgen/feature/SculkPatchFeature/m_225238_ (Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/level/levelgen/feature/SculkPatchFeature/canSpreadFrom (Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/level/levelgen/feature/SculkPatchFeature/m_225243_ (Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/level/levelgen/feature/SculkPatchFeature/lambda$canSpreadFrom$0 (Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/level/levelgen/feature/SeaPickleFeature/ (Lcom/mojang/serialization/Codec;)V net/minecraft/world/level/levelgen/feature/SeaPickleFeature/ (Lcom/mojang/serialization/Codec;)V +MD: net/minecraft/world/level/levelgen/feature/SeaPickleFeature/m_142674_ (Lnet/minecraft/world/level/levelgen/feature/FeaturePlaceContext;)Z net/minecraft/world/level/levelgen/feature/SeaPickleFeature/place (Lnet/minecraft/world/level/levelgen/feature/FeaturePlaceContext;)Z +MD: net/minecraft/world/level/levelgen/feature/SeagrassFeature/ (Lcom/mojang/serialization/Codec;)V net/minecraft/world/level/levelgen/feature/SeagrassFeature/ (Lcom/mojang/serialization/Codec;)V +MD: net/minecraft/world/level/levelgen/feature/SeagrassFeature/m_142674_ (Lnet/minecraft/world/level/levelgen/feature/FeaturePlaceContext;)Z net/minecraft/world/level/levelgen/feature/SeagrassFeature/place (Lnet/minecraft/world/level/levelgen/feature/FeaturePlaceContext;)Z +MD: net/minecraft/world/level/levelgen/feature/SimpleBlockFeature/ (Lcom/mojang/serialization/Codec;)V net/minecraft/world/level/levelgen/feature/SimpleBlockFeature/ (Lcom/mojang/serialization/Codec;)V +MD: net/minecraft/world/level/levelgen/feature/SimpleBlockFeature/m_142674_ (Lnet/minecraft/world/level/levelgen/feature/FeaturePlaceContext;)Z net/minecraft/world/level/levelgen/feature/SimpleBlockFeature/place (Lnet/minecraft/world/level/levelgen/feature/FeaturePlaceContext;)Z +MD: net/minecraft/world/level/levelgen/feature/SimpleRandomSelectorFeature/ (Lcom/mojang/serialization/Codec;)V net/minecraft/world/level/levelgen/feature/SimpleRandomSelectorFeature/ (Lcom/mojang/serialization/Codec;)V +MD: net/minecraft/world/level/levelgen/feature/SimpleRandomSelectorFeature/m_142674_ (Lnet/minecraft/world/level/levelgen/feature/FeaturePlaceContext;)Z net/minecraft/world/level/levelgen/feature/SimpleRandomSelectorFeature/place (Lnet/minecraft/world/level/levelgen/feature/FeaturePlaceContext;)Z +MD: net/minecraft/world/level/levelgen/feature/SnowAndFreezeFeature/ (Lcom/mojang/serialization/Codec;)V net/minecraft/world/level/levelgen/feature/SnowAndFreezeFeature/ (Lcom/mojang/serialization/Codec;)V +MD: net/minecraft/world/level/levelgen/feature/SnowAndFreezeFeature/m_142674_ (Lnet/minecraft/world/level/levelgen/feature/FeaturePlaceContext;)Z net/minecraft/world/level/levelgen/feature/SnowAndFreezeFeature/place (Lnet/minecraft/world/level/levelgen/feature/FeaturePlaceContext;)Z +MD: net/minecraft/world/level/levelgen/feature/SpikeFeature/ ()V net/minecraft/world/level/levelgen/feature/SpikeFeature/ ()V +MD: net/minecraft/world/level/levelgen/feature/SpikeFeature/ (Lcom/mojang/serialization/Codec;)V net/minecraft/world/level/levelgen/feature/SpikeFeature/ (Lcom/mojang/serialization/Codec;)V +MD: net/minecraft/world/level/levelgen/feature/SpikeFeature/m_142674_ (Lnet/minecraft/world/level/levelgen/feature/FeaturePlaceContext;)Z net/minecraft/world/level/levelgen/feature/SpikeFeature/place (Lnet/minecraft/world/level/levelgen/feature/FeaturePlaceContext;)Z +MD: net/minecraft/world/level/levelgen/feature/SpikeFeature/m_225246_ (Lnet/minecraft/world/level/ServerLevelAccessor;Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/levelgen/feature/configurations/SpikeConfiguration;Lnet/minecraft/world/level/levelgen/feature/SpikeFeature$EndSpike;)V net/minecraft/world/level/levelgen/feature/SpikeFeature/placeSpike (Lnet/minecraft/world/level/ServerLevelAccessor;Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/levelgen/feature/configurations/SpikeConfiguration;Lnet/minecraft/world/level/levelgen/feature/SpikeFeature$EndSpike;)V +MD: net/minecraft/world/level/levelgen/feature/SpikeFeature/m_66858_ (Lnet/minecraft/world/level/WorldGenLevel;)Ljava/util/List; net/minecraft/world/level/levelgen/feature/SpikeFeature/getSpikesForLevel (Lnet/minecraft/world/level/WorldGenLevel;)Ljava/util/List; +MD: net/minecraft/world/level/levelgen/feature/SpikeFeature$EndSpike/ ()V net/minecraft/world/level/levelgen/feature/SpikeFeature$EndSpike/ ()V +MD: net/minecraft/world/level/levelgen/feature/SpikeFeature$EndSpike/ (IIIIZ)V net/minecraft/world/level/levelgen/feature/SpikeFeature$EndSpike/ (IIIIZ)V +MD: net/minecraft/world/level/levelgen/feature/SpikeFeature$EndSpike/m_160373_ (Lnet/minecraft/world/level/levelgen/feature/SpikeFeature$EndSpike;)Ljava/lang/Boolean; net/minecraft/world/level/levelgen/feature/SpikeFeature$EndSpike/lambda$static$4 (Lnet/minecraft/world/level/levelgen/feature/SpikeFeature$EndSpike;)Ljava/lang/Boolean; +MD: net/minecraft/world/level/levelgen/feature/SpikeFeature$EndSpike/m_160375_ (Lnet/minecraft/world/level/levelgen/feature/SpikeFeature$EndSpike;)Ljava/lang/Integer; net/minecraft/world/level/levelgen/feature/SpikeFeature$EndSpike/lambda$static$3 (Lnet/minecraft/world/level/levelgen/feature/SpikeFeature$EndSpike;)Ljava/lang/Integer; +MD: net/minecraft/world/level/levelgen/feature/SpikeFeature$EndSpike/m_160377_ (Lnet/minecraft/world/level/levelgen/feature/SpikeFeature$EndSpike;)Ljava/lang/Integer; net/minecraft/world/level/levelgen/feature/SpikeFeature$EndSpike/lambda$static$2 (Lnet/minecraft/world/level/levelgen/feature/SpikeFeature$EndSpike;)Ljava/lang/Integer; +MD: net/minecraft/world/level/levelgen/feature/SpikeFeature$EndSpike/m_160379_ (Lnet/minecraft/world/level/levelgen/feature/SpikeFeature$EndSpike;)Ljava/lang/Integer; net/minecraft/world/level/levelgen/feature/SpikeFeature$EndSpike/lambda$static$1 (Lnet/minecraft/world/level/levelgen/feature/SpikeFeature$EndSpike;)Ljava/lang/Integer; +MD: net/minecraft/world/level/levelgen/feature/SpikeFeature$EndSpike/m_160381_ (Lnet/minecraft/world/level/levelgen/feature/SpikeFeature$EndSpike;)Ljava/lang/Integer; net/minecraft/world/level/levelgen/feature/SpikeFeature$EndSpike/lambda$static$0 (Lnet/minecraft/world/level/levelgen/feature/SpikeFeature$EndSpike;)Ljava/lang/Integer; +MD: net/minecraft/world/level/levelgen/feature/SpikeFeature$EndSpike/m_66886_ ()I net/minecraft/world/level/levelgen/feature/SpikeFeature$EndSpike/getCenterX ()I +MD: net/minecraft/world/level/levelgen/feature/SpikeFeature$EndSpike/m_66889_ (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/world/level/levelgen/feature/SpikeFeature$EndSpike/lambda$static$5 (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/world/level/levelgen/feature/SpikeFeature$EndSpike/m_66891_ (Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/level/levelgen/feature/SpikeFeature$EndSpike/isCenterWithinChunk (Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/level/levelgen/feature/SpikeFeature$EndSpike/m_66893_ ()I net/minecraft/world/level/levelgen/feature/SpikeFeature$EndSpike/getCenterZ ()I +MD: net/minecraft/world/level/levelgen/feature/SpikeFeature$EndSpike/m_66896_ ()I net/minecraft/world/level/levelgen/feature/SpikeFeature$EndSpike/getRadius ()I +MD: net/minecraft/world/level/levelgen/feature/SpikeFeature$EndSpike/m_66899_ ()I net/minecraft/world/level/levelgen/feature/SpikeFeature$EndSpike/getHeight ()I +MD: net/minecraft/world/level/levelgen/feature/SpikeFeature$EndSpike/m_66902_ ()Z net/minecraft/world/level/levelgen/feature/SpikeFeature$EndSpike/isGuarded ()Z +MD: net/minecraft/world/level/levelgen/feature/SpikeFeature$EndSpike/m_66905_ ()Lnet/minecraft/world/phys/AABB; net/minecraft/world/level/levelgen/feature/SpikeFeature$EndSpike/getTopBoundingBox ()Lnet/minecraft/world/phys/AABB; +MD: net/minecraft/world/level/levelgen/feature/SpikeFeature$SpikeCacheLoader/ ()V net/minecraft/world/level/levelgen/feature/SpikeFeature$SpikeCacheLoader/ ()V +MD: net/minecraft/world/level/levelgen/feature/SpikeFeature$SpikeCacheLoader/load (Ljava/lang/Long;)Ljava/util/List; net/minecraft/world/level/levelgen/feature/SpikeFeature$SpikeCacheLoader/load (Ljava/lang/Long;)Ljava/util/List; +MD: net/minecraft/world/level/levelgen/feature/SpikeFeature$SpikeCacheLoader/load (Ljava/lang/Object;)Ljava/lang/Object; net/minecraft/world/level/levelgen/feature/SpikeFeature$SpikeCacheLoader/load (Ljava/lang/Object;)Ljava/lang/Object; +MD: net/minecraft/world/level/levelgen/feature/SpringFeature/ (Lcom/mojang/serialization/Codec;)V net/minecraft/world/level/levelgen/feature/SpringFeature/ (Lcom/mojang/serialization/Codec;)V +MD: net/minecraft/world/level/levelgen/feature/SpringFeature/m_142674_ (Lnet/minecraft/world/level/levelgen/feature/FeaturePlaceContext;)Z net/minecraft/world/level/levelgen/feature/SpringFeature/place (Lnet/minecraft/world/level/levelgen/feature/FeaturePlaceContext;)Z +MD: net/minecraft/world/level/levelgen/feature/TreeFeature/ (Lcom/mojang/serialization/Codec;)V net/minecraft/world/level/levelgen/feature/TreeFeature/ (Lcom/mojang/serialization/Codec;)V +MD: net/minecraft/world/level/levelgen/feature/TreeFeature/m_142674_ (Lnet/minecraft/world/level/levelgen/feature/FeaturePlaceContext;)Z net/minecraft/world/level/levelgen/feature/TreeFeature/place (Lnet/minecraft/world/level/levelgen/feature/FeaturePlaceContext;)Z +MD: net/minecraft/world/level/levelgen/feature/TreeFeature/m_160540_ (Ljava/util/Set;Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V net/minecraft/world/level/levelgen/feature/TreeFeature/lambda$place$7 (Ljava/util/Set;Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V +MD: net/minecraft/world/level/levelgen/feature/TreeFeature/m_160545_ (Ljava/util/Set;Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V net/minecraft/world/level/levelgen/feature/TreeFeature/lambda$place$6 (Ljava/util/Set;Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V +MD: net/minecraft/world/level/levelgen/feature/TreeFeature/m_160552_ (Ljava/util/Set;Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V net/minecraft/world/level/levelgen/feature/TreeFeature/lambda$place$5 (Ljava/util/Set;Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V +MD: net/minecraft/world/level/levelgen/feature/TreeFeature/m_225251_ (Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/world/level/levelgen/structure/BoundingBox;Ljava/util/Set;Ljava/util/Set;Ljava/util/Set;)Lnet/minecraft/world/phys/shapes/DiscreteVoxelShape; net/minecraft/world/level/levelgen/feature/TreeFeature/updateLeaves (Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/world/level/levelgen/structure/BoundingBox;Ljava/util/Set;Ljava/util/Set;Ljava/util/Set;)Lnet/minecraft/world/phys/shapes/DiscreteVoxelShape; +MD: net/minecraft/world/level/levelgen/feature/TreeFeature/m_225257_ (Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos;Ljava/util/function/BiConsumer;Ljava/util/function/BiConsumer;Lnet/minecraft/world/level/levelgen/feature/foliageplacers/FoliagePlacer$FoliageSetter;Lnet/minecraft/world/level/levelgen/feature/configurations/TreeConfiguration;)Z net/minecraft/world/level/levelgen/feature/TreeFeature/doPlace (Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos;Ljava/util/function/BiConsumer;Ljava/util/function/BiConsumer;Lnet/minecraft/world/level/levelgen/feature/foliageplacers/FoliagePlacer$FoliageSetter;Lnet/minecraft/world/level/levelgen/feature/configurations/TreeConfiguration;)Z +MD: net/minecraft/world/level/levelgen/feature/TreeFeature/m_225265_ (Lnet/minecraft/world/level/WorldGenLevel;Ljava/util/Set;Ljava/util/Set;Ljava/util/Set;Lnet/minecraft/world/level/levelgen/structure/BoundingBox;)Ljava/lang/Boolean; net/minecraft/world/level/levelgen/feature/TreeFeature/lambda$place$9 (Lnet/minecraft/world/level/WorldGenLevel;Ljava/util/Set;Ljava/util/Set;Ljava/util/Set;Lnet/minecraft/world/level/levelgen/structure/BoundingBox;)Ljava/lang/Boolean; +MD: net/minecraft/world/level/levelgen/feature/TreeFeature/m_225280_ (Lnet/minecraft/world/level/levelgen/feature/treedecorators/TreeDecorator$Context;Lnet/minecraft/world/level/levelgen/feature/treedecorators/TreeDecorator;)V net/minecraft/world/level/levelgen/feature/TreeFeature/lambda$place$8 (Lnet/minecraft/world/level/levelgen/feature/treedecorators/TreeDecorator$Context;Lnet/minecraft/world/level/levelgen/feature/treedecorators/TreeDecorator;)V +MD: net/minecraft/world/level/levelgen/feature/TreeFeature/m_225283_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/levelgen/feature/rootplacers/RootPlacer;)Lnet/minecraft/core/BlockPos; net/minecraft/world/level/levelgen/feature/TreeFeature/lambda$doPlace$3 (Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/levelgen/feature/rootplacers/RootPlacer;)Lnet/minecraft/core/BlockPos; +MD: net/minecraft/world/level/levelgen/feature/TreeFeature/m_225298_ (Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/world/level/levelgen/feature/TreeFeature/lambda$isVine$0 (Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/world/level/levelgen/feature/TreeFeature/m_271680_ (Lnet/minecraft/world/level/levelgen/feature/configurations/TreeConfiguration;Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/world/level/levelgen/feature/foliageplacers/FoliagePlacer$FoliageSetter;Lnet/minecraft/util/RandomSource;IIILnet/minecraft/world/level/levelgen/feature/foliageplacers/FoliagePlacer$FoliageAttachment;)V net/minecraft/world/level/levelgen/feature/TreeFeature/lambda$doPlace$4 (Lnet/minecraft/world/level/levelgen/feature/configurations/TreeConfiguration;Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/world/level/levelgen/feature/foliageplacers/FoliagePlacer$FoliageSetter;Lnet/minecraft/util/RandomSource;IIILnet/minecraft/world/level/levelgen/feature/foliageplacers/FoliagePlacer$FoliageAttachment;)V +MD: net/minecraft/world/level/levelgen/feature/TreeFeature/m_284121_ (Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/world/level/levelgen/feature/TreeFeature/lambda$isAirOrLeaves$1 (Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/world/level/levelgen/feature/TreeFeature/m_284122_ (Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/world/level/levelgen/feature/TreeFeature/lambda$validTreePos$2 (Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/world/level/levelgen/feature/TreeFeature/m_5974_ (Lnet/minecraft/world/level/LevelWriter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V net/minecraft/world/level/levelgen/feature/TreeFeature/setBlock (Lnet/minecraft/world/level/LevelWriter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V +MD: net/minecraft/world/level/levelgen/feature/TreeFeature/m_67215_ (Lnet/minecraft/world/level/LevelSimulatedReader;ILnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/levelgen/feature/configurations/TreeConfiguration;)I net/minecraft/world/level/levelgen/feature/TreeFeature/getMaxFreeTreeHeight (Lnet/minecraft/world/level/LevelSimulatedReader;ILnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/levelgen/feature/configurations/TreeConfiguration;)I +MD: net/minecraft/world/level/levelgen/feature/TreeFeature/m_67256_ (Lnet/minecraft/world/level/LevelWriter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V net/minecraft/world/level/levelgen/feature/TreeFeature/setBlockKnownShape (Lnet/minecraft/world/level/LevelWriter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V +MD: net/minecraft/world/level/levelgen/feature/TreeFeature/m_67267_ (Lnet/minecraft/world/level/LevelSimulatedReader;Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/level/levelgen/feature/TreeFeature/isAirOrLeaves (Lnet/minecraft/world/level/LevelSimulatedReader;Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/level/levelgen/feature/TreeFeature/m_67272_ (Lnet/minecraft/world/level/LevelSimulatedReader;Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/level/levelgen/feature/TreeFeature/validTreePos (Lnet/minecraft/world/level/LevelSimulatedReader;Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/level/levelgen/feature/TreeFeature/m_67277_ (Lnet/minecraft/world/level/LevelSimulatedReader;Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/level/levelgen/feature/TreeFeature/isVine (Lnet/minecraft/world/level/LevelSimulatedReader;Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/level/levelgen/feature/TreeFeature$1/ (Lnet/minecraft/world/level/levelgen/feature/TreeFeature;Ljava/util/Set;Lnet/minecraft/world/level/WorldGenLevel;)V net/minecraft/world/level/levelgen/feature/TreeFeature$1/ (Lnet/minecraft/world/level/levelgen/feature/TreeFeature;Ljava/util/Set;Lnet/minecraft/world/level/WorldGenLevel;)V +MD: net/minecraft/world/level/levelgen/feature/TreeFeature$1/m_271808_ (Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/level/levelgen/feature/TreeFeature$1/isSet (Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/level/levelgen/feature/TreeFeature$1/m_271838_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V net/minecraft/world/level/levelgen/feature/TreeFeature$1/set (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V +MD: net/minecraft/world/level/levelgen/feature/TwistingVinesFeature/ (Lcom/mojang/serialization/Codec;)V net/minecraft/world/level/levelgen/feature/TwistingVinesFeature/ (Lcom/mojang/serialization/Codec;)V +MD: net/minecraft/world/level/levelgen/feature/TwistingVinesFeature/m_142674_ (Lnet/minecraft/world/level/levelgen/feature/FeaturePlaceContext;)Z net/minecraft/world/level/levelgen/feature/TwistingVinesFeature/place (Lnet/minecraft/world/level/levelgen/feature/FeaturePlaceContext;)Z +MD: net/minecraft/world/level/levelgen/feature/TwistingVinesFeature/m_225300_ (Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos$MutableBlockPos;III)V net/minecraft/world/level/levelgen/feature/TwistingVinesFeature/placeWeepingVinesColumn (Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos$MutableBlockPos;III)V +MD: net/minecraft/world/level/levelgen/feature/TwistingVinesFeature/m_67293_ (Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos$MutableBlockPos;)Z net/minecraft/world/level/levelgen/feature/TwistingVinesFeature/findFirstAirBlockAboveGround (Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos$MutableBlockPos;)Z +MD: net/minecraft/world/level/levelgen/feature/TwistingVinesFeature/m_67296_ (Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/level/levelgen/feature/TwistingVinesFeature/isInvalidPlacementLocation (Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/level/levelgen/feature/UnderwaterMagmaFeature/ (Lcom/mojang/serialization/Codec;)V net/minecraft/world/level/levelgen/feature/UnderwaterMagmaFeature/ (Lcom/mojang/serialization/Codec;)V +MD: net/minecraft/world/level/levelgen/feature/UnderwaterMagmaFeature/m_142674_ (Lnet/minecraft/world/level/levelgen/feature/FeaturePlaceContext;)Z net/minecraft/world/level/levelgen/feature/UnderwaterMagmaFeature/place (Lnet/minecraft/world/level/levelgen/feature/FeaturePlaceContext;)Z +MD: net/minecraft/world/level/levelgen/feature/UnderwaterMagmaFeature/m_160561_ (Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/level/levelgen/feature/UnderwaterMagmaFeature/isWaterOrAir (Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/level/levelgen/feature/UnderwaterMagmaFeature/m_160564_ (Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/levelgen/feature/configurations/UnderwaterMagmaConfiguration;)Ljava/util/OptionalInt; net/minecraft/world/level/levelgen/feature/UnderwaterMagmaFeature/getFloorY (Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/levelgen/feature/configurations/UnderwaterMagmaConfiguration;)Ljava/util/OptionalInt; +MD: net/minecraft/world/level/levelgen/feature/UnderwaterMagmaFeature/m_160574_ (Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/level/levelgen/feature/UnderwaterMagmaFeature/isValidPlacement (Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/level/levelgen/feature/UnderwaterMagmaFeature/m_160577_ (Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/core/BlockPos;)I net/minecraft/world/level/levelgen/feature/UnderwaterMagmaFeature/lambda$place$2 (Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/core/BlockPos;)I +MD: net/minecraft/world/level/levelgen/feature/UnderwaterMagmaFeature/m_160580_ (Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/world/level/levelgen/feature/UnderwaterMagmaFeature/lambda$getFloorY$4 (Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/world/level/levelgen/feature/UnderwaterMagmaFeature/m_160582_ (Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/level/levelgen/feature/UnderwaterMagmaFeature/lambda$place$1 (Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/level/levelgen/feature/UnderwaterMagmaFeature/m_160585_ (Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/world/level/levelgen/feature/UnderwaterMagmaFeature/lambda$getFloorY$3 (Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/world/level/levelgen/feature/UnderwaterMagmaFeature/m_225307_ (Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/levelgen/feature/configurations/UnderwaterMagmaConfiguration;Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/level/levelgen/feature/UnderwaterMagmaFeature/lambda$place$0 (Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/levelgen/feature/configurations/UnderwaterMagmaConfiguration;Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/level/levelgen/feature/VegetationPatchFeature/ (Lcom/mojang/serialization/Codec;)V net/minecraft/world/level/levelgen/feature/VegetationPatchFeature/ (Lcom/mojang/serialization/Codec;)V +MD: net/minecraft/world/level/levelgen/feature/VegetationPatchFeature/m_142674_ (Lnet/minecraft/world/level/levelgen/feature/FeaturePlaceContext;)Z net/minecraft/world/level/levelgen/feature/VegetationPatchFeature/place (Lnet/minecraft/world/level/levelgen/feature/FeaturePlaceContext;)Z +MD: net/minecraft/world/level/levelgen/feature/VegetationPatchFeature/m_204780_ (Lnet/minecraft/world/level/levelgen/feature/configurations/VegetationPatchConfiguration;Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/world/level/levelgen/feature/VegetationPatchFeature/lambda$place$0 (Lnet/minecraft/world/level/levelgen/feature/configurations/VegetationPatchConfiguration;Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/world/level/levelgen/feature/VegetationPatchFeature/m_213555_ (Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/world/level/levelgen/feature/configurations/VegetationPatchConfiguration;Lnet/minecraft/world/level/chunk/ChunkGenerator;Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/level/levelgen/feature/VegetationPatchFeature/placeVegetation (Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/world/level/levelgen/feature/configurations/VegetationPatchConfiguration;Lnet/minecraft/world/level/chunk/ChunkGenerator;Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/level/levelgen/feature/VegetationPatchFeature/m_213631_ (Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/world/level/levelgen/feature/configurations/VegetationPatchConfiguration;Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos;Ljava/util/function/Predicate;II)Ljava/util/Set; net/minecraft/world/level/levelgen/feature/VegetationPatchFeature/placeGroundPatch (Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/world/level/levelgen/feature/configurations/VegetationPatchConfiguration;Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos;Ljava/util/function/Predicate;II)Ljava/util/Set; +MD: net/minecraft/world/level/levelgen/feature/VegetationPatchFeature/m_225323_ (Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/world/level/levelgen/feature/configurations/VegetationPatchConfiguration;Ljava/util/function/Predicate;Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos$MutableBlockPos;I)Z net/minecraft/world/level/levelgen/feature/VegetationPatchFeature/placeGround (Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/world/level/levelgen/feature/configurations/VegetationPatchConfiguration;Ljava/util/function/Predicate;Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos$MutableBlockPos;I)Z +MD: net/minecraft/world/level/levelgen/feature/VegetationPatchFeature/m_225330_ (Lnet/minecraft/world/level/levelgen/feature/FeaturePlaceContext;Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/world/level/levelgen/feature/configurations/VegetationPatchConfiguration;Lnet/minecraft/util/RandomSource;Ljava/util/Set;II)V net/minecraft/world/level/levelgen/feature/VegetationPatchFeature/distributeVegetation (Lnet/minecraft/world/level/levelgen/feature/FeaturePlaceContext;Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/world/level/levelgen/feature/configurations/VegetationPatchConfiguration;Lnet/minecraft/util/RandomSource;Ljava/util/Set;II)V +MD: net/minecraft/world/level/levelgen/feature/VegetationPatchFeature/m_284123_ (Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/world/level/levelgen/feature/VegetationPatchFeature/lambda$placeGroundPatch$1 (Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/world/level/levelgen/feature/VinesFeature/ (Lcom/mojang/serialization/Codec;)V net/minecraft/world/level/levelgen/feature/VinesFeature/ (Lcom/mojang/serialization/Codec;)V +MD: net/minecraft/world/level/levelgen/feature/VinesFeature/m_142674_ (Lnet/minecraft/world/level/levelgen/feature/FeaturePlaceContext;)Z net/minecraft/world/level/levelgen/feature/VinesFeature/place (Lnet/minecraft/world/level/levelgen/feature/FeaturePlaceContext;)Z +MD: net/minecraft/world/level/levelgen/feature/VoidStartPlatformFeature/ ()V net/minecraft/world/level/levelgen/feature/VoidStartPlatformFeature/ ()V +MD: net/minecraft/world/level/levelgen/feature/VoidStartPlatformFeature/ (Lcom/mojang/serialization/Codec;)V net/minecraft/world/level/levelgen/feature/VoidStartPlatformFeature/ (Lcom/mojang/serialization/Codec;)V +MD: net/minecraft/world/level/levelgen/feature/VoidStartPlatformFeature/m_142674_ (Lnet/minecraft/world/level/levelgen/feature/FeaturePlaceContext;)Z net/minecraft/world/level/levelgen/feature/VoidStartPlatformFeature/place (Lnet/minecraft/world/level/levelgen/feature/FeaturePlaceContext;)Z +MD: net/minecraft/world/level/levelgen/feature/VoidStartPlatformFeature/m_67355_ (IIII)I net/minecraft/world/level/levelgen/feature/VoidStartPlatformFeature/checkerboardDistance (IIII)I +MD: net/minecraft/world/level/levelgen/feature/WaterloggedVegetationPatchFeature/ (Lcom/mojang/serialization/Codec;)V net/minecraft/world/level/levelgen/feature/WaterloggedVegetationPatchFeature/ (Lcom/mojang/serialization/Codec;)V +MD: net/minecraft/world/level/levelgen/feature/WaterloggedVegetationPatchFeature/m_160650_ (Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos$MutableBlockPos;Lnet/minecraft/core/Direction;)Z net/minecraft/world/level/levelgen/feature/WaterloggedVegetationPatchFeature/isExposedDirection (Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos$MutableBlockPos;Lnet/minecraft/core/Direction;)Z +MD: net/minecraft/world/level/levelgen/feature/WaterloggedVegetationPatchFeature/m_160655_ (Lnet/minecraft/world/level/WorldGenLevel;Ljava/util/Set;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos$MutableBlockPos;)Z net/minecraft/world/level/levelgen/feature/WaterloggedVegetationPatchFeature/isExposed (Lnet/minecraft/world/level/WorldGenLevel;Ljava/util/Set;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos$MutableBlockPos;)Z +MD: net/minecraft/world/level/levelgen/feature/WaterloggedVegetationPatchFeature/m_213555_ (Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/world/level/levelgen/feature/configurations/VegetationPatchConfiguration;Lnet/minecraft/world/level/chunk/ChunkGenerator;Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/level/levelgen/feature/WaterloggedVegetationPatchFeature/placeVegetation (Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/world/level/levelgen/feature/configurations/VegetationPatchConfiguration;Lnet/minecraft/world/level/chunk/ChunkGenerator;Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/level/levelgen/feature/WaterloggedVegetationPatchFeature/m_213631_ (Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/world/level/levelgen/feature/configurations/VegetationPatchConfiguration;Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos;Ljava/util/function/Predicate;II)Ljava/util/Set; net/minecraft/world/level/levelgen/feature/WaterloggedVegetationPatchFeature/placeGroundPatch (Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/world/level/levelgen/feature/configurations/VegetationPatchConfiguration;Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos;Ljava/util/function/Predicate;II)Ljava/util/Set; +MD: net/minecraft/world/level/levelgen/feature/WeepingVinesFeature/ ()V net/minecraft/world/level/levelgen/feature/WeepingVinesFeature/ ()V +MD: net/minecraft/world/level/levelgen/feature/WeepingVinesFeature/ (Lcom/mojang/serialization/Codec;)V net/minecraft/world/level/levelgen/feature/WeepingVinesFeature/ (Lcom/mojang/serialization/Codec;)V +MD: net/minecraft/world/level/levelgen/feature/WeepingVinesFeature/m_142674_ (Lnet/minecraft/world/level/levelgen/feature/FeaturePlaceContext;)Z net/minecraft/world/level/levelgen/feature/WeepingVinesFeature/place (Lnet/minecraft/world/level/levelgen/feature/FeaturePlaceContext;)Z +MD: net/minecraft/world/level/levelgen/feature/WeepingVinesFeature/m_225352_ (Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos$MutableBlockPos;III)V net/minecraft/world/level/levelgen/feature/WeepingVinesFeature/placeWeepingVinesColumn (Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos$MutableBlockPos;III)V +MD: net/minecraft/world/level/levelgen/feature/WeepingVinesFeature/m_225359_ (Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos;)V net/minecraft/world/level/levelgen/feature/WeepingVinesFeature/placeRoofNetherWart (Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/world/level/levelgen/feature/WeepingVinesFeature/m_225363_ (Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos;)V net/minecraft/world/level/levelgen/feature/WeepingVinesFeature/placeRoofWeepingVines (Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/world/level/levelgen/feature/WeightedPlacedFeature/ ()V net/minecraft/world/level/levelgen/feature/WeightedPlacedFeature/ ()V +MD: net/minecraft/world/level/levelgen/feature/WeightedPlacedFeature/ (Lnet/minecraft/core/Holder;F)V net/minecraft/world/level/levelgen/feature/WeightedPlacedFeature/ (Lnet/minecraft/core/Holder;F)V +MD: net/minecraft/world/level/levelgen/feature/WeightedPlacedFeature/m_191186_ (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/world/level/levelgen/feature/WeightedPlacedFeature/lambda$static$2 (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/world/level/levelgen/feature/WeightedPlacedFeature/m_191188_ (Lnet/minecraft/world/level/levelgen/feature/WeightedPlacedFeature;)Ljava/lang/Float; net/minecraft/world/level/levelgen/feature/WeightedPlacedFeature/lambda$static$1 (Lnet/minecraft/world/level/levelgen/feature/WeightedPlacedFeature;)Ljava/lang/Float; +MD: net/minecraft/world/level/levelgen/feature/WeightedPlacedFeature/m_204788_ (Lnet/minecraft/world/level/levelgen/feature/WeightedPlacedFeature;)Lnet/minecraft/core/Holder; net/minecraft/world/level/levelgen/feature/WeightedPlacedFeature/lambda$static$0 (Lnet/minecraft/world/level/levelgen/feature/WeightedPlacedFeature;)Lnet/minecraft/core/Holder; +MD: net/minecraft/world/level/levelgen/feature/WeightedPlacedFeature/m_225367_ (Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/world/level/chunk/ChunkGenerator;Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/level/levelgen/feature/WeightedPlacedFeature/place (Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/world/level/chunk/ChunkGenerator;Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/level/levelgen/feature/configurations/BlockColumnConfiguration/ ()V net/minecraft/world/level/levelgen/feature/configurations/BlockColumnConfiguration/ ()V +MD: net/minecraft/world/level/levelgen/feature/configurations/BlockColumnConfiguration/ (Ljava/util/List;Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/levelgen/blockpredicates/BlockPredicate;Z)V net/minecraft/world/level/levelgen/feature/configurations/BlockColumnConfiguration/ (Ljava/util/List;Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/levelgen/blockpredicates/BlockPredicate;Z)V +MD: net/minecraft/world/level/levelgen/feature/configurations/BlockColumnConfiguration/equals (Ljava/lang/Object;)Z net/minecraft/world/level/levelgen/feature/configurations/BlockColumnConfiguration/equals (Ljava/lang/Object;)Z +MD: net/minecraft/world/level/levelgen/feature/configurations/BlockColumnConfiguration/f_191207_ ()Ljava/util/List; net/minecraft/world/level/levelgen/feature/configurations/BlockColumnConfiguration/layers ()Ljava/util/List; +MD: net/minecraft/world/level/levelgen/feature/configurations/BlockColumnConfiguration/f_191208_ ()Lnet/minecraft/core/Direction; net/minecraft/world/level/levelgen/feature/configurations/BlockColumnConfiguration/direction ()Lnet/minecraft/core/Direction; +MD: net/minecraft/world/level/levelgen/feature/configurations/BlockColumnConfiguration/f_191209_ ()Lnet/minecraft/world/level/levelgen/blockpredicates/BlockPredicate; net/minecraft/world/level/levelgen/feature/configurations/BlockColumnConfiguration/allowedPlacement ()Lnet/minecraft/world/level/levelgen/blockpredicates/BlockPredicate; +MD: net/minecraft/world/level/levelgen/feature/configurations/BlockColumnConfiguration/f_191210_ ()Z net/minecraft/world/level/levelgen/feature/configurations/BlockColumnConfiguration/prioritizeTip ()Z +MD: net/minecraft/world/level/levelgen/feature/configurations/BlockColumnConfiguration/hashCode ()I net/minecraft/world/level/levelgen/feature/configurations/BlockColumnConfiguration/hashCode ()I +MD: net/minecraft/world/level/levelgen/feature/configurations/BlockColumnConfiguration/m_191218_ (Lnet/minecraft/util/valueproviders/IntProvider;Lnet/minecraft/world/level/levelgen/feature/stateproviders/BlockStateProvider;)Lnet/minecraft/world/level/levelgen/feature/configurations/BlockColumnConfiguration$Layer; net/minecraft/world/level/levelgen/feature/configurations/BlockColumnConfiguration/layer (Lnet/minecraft/util/valueproviders/IntProvider;Lnet/minecraft/world/level/levelgen/feature/stateproviders/BlockStateProvider;)Lnet/minecraft/world/level/levelgen/feature/configurations/BlockColumnConfiguration$Layer; +MD: net/minecraft/world/level/levelgen/feature/configurations/BlockColumnConfiguration/m_191221_ (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/world/level/levelgen/feature/configurations/BlockColumnConfiguration/lambda$static$0 (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/world/level/levelgen/feature/configurations/BlockColumnConfiguration/m_191224_ (Lnet/minecraft/util/valueproviders/IntProvider;Lnet/minecraft/world/level/levelgen/feature/stateproviders/BlockStateProvider;)Lnet/minecraft/world/level/levelgen/feature/configurations/BlockColumnConfiguration; net/minecraft/world/level/levelgen/feature/configurations/BlockColumnConfiguration/simple (Lnet/minecraft/util/valueproviders/IntProvider;Lnet/minecraft/world/level/levelgen/feature/stateproviders/BlockStateProvider;)Lnet/minecraft/world/level/levelgen/feature/configurations/BlockColumnConfiguration; +MD: net/minecraft/world/level/levelgen/feature/configurations/BlockColumnConfiguration/toString ()Ljava/lang/String; net/minecraft/world/level/levelgen/feature/configurations/BlockColumnConfiguration/toString ()Ljava/lang/String; +MD: net/minecraft/world/level/levelgen/feature/configurations/BlockColumnConfiguration$Layer/ ()V net/minecraft/world/level/levelgen/feature/configurations/BlockColumnConfiguration$Layer/ ()V +MD: net/minecraft/world/level/levelgen/feature/configurations/BlockColumnConfiguration$Layer/ (Lnet/minecraft/util/valueproviders/IntProvider;Lnet/minecraft/world/level/levelgen/feature/stateproviders/BlockStateProvider;)V net/minecraft/world/level/levelgen/feature/configurations/BlockColumnConfiguration$Layer/ (Lnet/minecraft/util/valueproviders/IntProvider;Lnet/minecraft/world/level/levelgen/feature/stateproviders/BlockStateProvider;)V +MD: net/minecraft/world/level/levelgen/feature/configurations/BlockColumnConfiguration$Layer/equals (Ljava/lang/Object;)Z net/minecraft/world/level/levelgen/feature/configurations/BlockColumnConfiguration$Layer/equals (Ljava/lang/Object;)Z +MD: net/minecraft/world/level/levelgen/feature/configurations/BlockColumnConfiguration$Layer/f_191234_ ()Lnet/minecraft/util/valueproviders/IntProvider; net/minecraft/world/level/levelgen/feature/configurations/BlockColumnConfiguration$Layer/height ()Lnet/minecraft/util/valueproviders/IntProvider; +MD: net/minecraft/world/level/levelgen/feature/configurations/BlockColumnConfiguration$Layer/f_191235_ ()Lnet/minecraft/world/level/levelgen/feature/stateproviders/BlockStateProvider; net/minecraft/world/level/levelgen/feature/configurations/BlockColumnConfiguration$Layer/state ()Lnet/minecraft/world/level/levelgen/feature/stateproviders/BlockStateProvider; +MD: net/minecraft/world/level/levelgen/feature/configurations/BlockColumnConfiguration$Layer/hashCode ()I net/minecraft/world/level/levelgen/feature/configurations/BlockColumnConfiguration$Layer/hashCode ()I +MD: net/minecraft/world/level/levelgen/feature/configurations/BlockColumnConfiguration$Layer/m_191241_ (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/world/level/levelgen/feature/configurations/BlockColumnConfiguration$Layer/lambda$static$0 (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/world/level/levelgen/feature/configurations/BlockColumnConfiguration$Layer/toString ()Ljava/lang/String; net/minecraft/world/level/levelgen/feature/configurations/BlockColumnConfiguration$Layer/toString ()Ljava/lang/String; +MD: net/minecraft/world/level/levelgen/feature/configurations/BlockPileConfiguration/ ()V net/minecraft/world/level/levelgen/feature/configurations/BlockPileConfiguration/ ()V +MD: net/minecraft/world/level/levelgen/feature/configurations/BlockPileConfiguration/ (Lnet/minecraft/world/level/levelgen/feature/stateproviders/BlockStateProvider;)V net/minecraft/world/level/levelgen/feature/configurations/BlockPileConfiguration/ (Lnet/minecraft/world/level/levelgen/feature/stateproviders/BlockStateProvider;)V +MD: net/minecraft/world/level/levelgen/feature/configurations/BlockPileConfiguration/m_67544_ (Lnet/minecraft/world/level/levelgen/feature/configurations/BlockPileConfiguration;)Lnet/minecraft/world/level/levelgen/feature/stateproviders/BlockStateProvider; net/minecraft/world/level/levelgen/feature/configurations/BlockPileConfiguration/lambda$static$0 (Lnet/minecraft/world/level/levelgen/feature/configurations/BlockPileConfiguration;)Lnet/minecraft/world/level/levelgen/feature/stateproviders/BlockStateProvider; +MD: net/minecraft/world/level/levelgen/feature/configurations/BlockStateConfiguration/ ()V net/minecraft/world/level/levelgen/feature/configurations/BlockStateConfiguration/ ()V +MD: net/minecraft/world/level/levelgen/feature/configurations/BlockStateConfiguration/ (Lnet/minecraft/world/level/block/state/BlockState;)V net/minecraft/world/level/levelgen/feature/configurations/BlockStateConfiguration/ (Lnet/minecraft/world/level/block/state/BlockState;)V +MD: net/minecraft/world/level/levelgen/feature/configurations/BlockStateConfiguration/m_67551_ (Lnet/minecraft/world/level/levelgen/feature/configurations/BlockStateConfiguration;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/levelgen/feature/configurations/BlockStateConfiguration/lambda$static$0 (Lnet/minecraft/world/level/levelgen/feature/configurations/BlockStateConfiguration;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/levelgen/feature/configurations/ColumnFeatureConfiguration/ ()V net/minecraft/world/level/levelgen/feature/configurations/ColumnFeatureConfiguration/ ()V +MD: net/minecraft/world/level/levelgen/feature/configurations/ColumnFeatureConfiguration/ (Lnet/minecraft/util/valueproviders/IntProvider;Lnet/minecraft/util/valueproviders/IntProvider;)V net/minecraft/world/level/levelgen/feature/configurations/ColumnFeatureConfiguration/ (Lnet/minecraft/util/valueproviders/IntProvider;Lnet/minecraft/util/valueproviders/IntProvider;)V +MD: net/minecraft/world/level/levelgen/feature/configurations/ColumnFeatureConfiguration/m_160717_ ()Lnet/minecraft/util/valueproviders/IntProvider; net/minecraft/world/level/levelgen/feature/configurations/ColumnFeatureConfiguration/reach ()Lnet/minecraft/util/valueproviders/IntProvider; +MD: net/minecraft/world/level/levelgen/feature/configurations/ColumnFeatureConfiguration/m_160718_ (Lnet/minecraft/world/level/levelgen/feature/configurations/ColumnFeatureConfiguration;)Lnet/minecraft/util/valueproviders/IntProvider; net/minecraft/world/level/levelgen/feature/configurations/ColumnFeatureConfiguration/lambda$static$1 (Lnet/minecraft/world/level/levelgen/feature/configurations/ColumnFeatureConfiguration;)Lnet/minecraft/util/valueproviders/IntProvider; +MD: net/minecraft/world/level/levelgen/feature/configurations/ColumnFeatureConfiguration/m_160720_ ()Lnet/minecraft/util/valueproviders/IntProvider; net/minecraft/world/level/levelgen/feature/configurations/ColumnFeatureConfiguration/height ()Lnet/minecraft/util/valueproviders/IntProvider; +MD: net/minecraft/world/level/levelgen/feature/configurations/ColumnFeatureConfiguration/m_160721_ (Lnet/minecraft/world/level/levelgen/feature/configurations/ColumnFeatureConfiguration;)Lnet/minecraft/util/valueproviders/IntProvider; net/minecraft/world/level/levelgen/feature/configurations/ColumnFeatureConfiguration/lambda$static$0 (Lnet/minecraft/world/level/levelgen/feature/configurations/ColumnFeatureConfiguration;)Lnet/minecraft/util/valueproviders/IntProvider; +MD: net/minecraft/world/level/levelgen/feature/configurations/ColumnFeatureConfiguration/m_67562_ (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/world/level/levelgen/feature/configurations/ColumnFeatureConfiguration/lambda$static$2 (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/world/level/levelgen/feature/configurations/CountConfiguration/ ()V net/minecraft/world/level/levelgen/feature/configurations/CountConfiguration/ ()V +MD: net/minecraft/world/level/levelgen/feature/configurations/CountConfiguration/ (Lnet/minecraft/util/valueproviders/IntProvider;)V net/minecraft/world/level/levelgen/feature/configurations/CountConfiguration/ (Lnet/minecraft/util/valueproviders/IntProvider;)V +MD: net/minecraft/world/level/levelgen/feature/configurations/CountConfiguration/ (I)V net/minecraft/world/level/levelgen/feature/configurations/CountConfiguration/ (I)V +MD: net/minecraft/world/level/levelgen/feature/configurations/CountConfiguration/m_160725_ ()Lnet/minecraft/util/valueproviders/IntProvider; net/minecraft/world/level/levelgen/feature/configurations/CountConfiguration/count ()Lnet/minecraft/util/valueproviders/IntProvider; +MD: net/minecraft/world/level/levelgen/feature/configurations/DeltaFeatureConfiguration/ ()V net/minecraft/world/level/levelgen/feature/configurations/DeltaFeatureConfiguration/ ()V +MD: net/minecraft/world/level/levelgen/feature/configurations/DeltaFeatureConfiguration/ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/util/valueproviders/IntProvider;Lnet/minecraft/util/valueproviders/IntProvider;)V net/minecraft/world/level/levelgen/feature/configurations/DeltaFeatureConfiguration/ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/util/valueproviders/IntProvider;Lnet/minecraft/util/valueproviders/IntProvider;)V +MD: net/minecraft/world/level/levelgen/feature/configurations/DeltaFeatureConfiguration/m_160735_ (Lnet/minecraft/world/level/levelgen/feature/configurations/DeltaFeatureConfiguration;)Lnet/minecraft/util/valueproviders/IntProvider; net/minecraft/world/level/levelgen/feature/configurations/DeltaFeatureConfiguration/lambda$static$3 (Lnet/minecraft/world/level/levelgen/feature/configurations/DeltaFeatureConfiguration;)Lnet/minecraft/util/valueproviders/IntProvider; +MD: net/minecraft/world/level/levelgen/feature/configurations/DeltaFeatureConfiguration/m_160737_ (Lnet/minecraft/world/level/levelgen/feature/configurations/DeltaFeatureConfiguration;)Lnet/minecraft/util/valueproviders/IntProvider; net/minecraft/world/level/levelgen/feature/configurations/DeltaFeatureConfiguration/lambda$static$2 (Lnet/minecraft/world/level/levelgen/feature/configurations/DeltaFeatureConfiguration;)Lnet/minecraft/util/valueproviders/IntProvider; +MD: net/minecraft/world/level/levelgen/feature/configurations/DeltaFeatureConfiguration/m_160739_ (Lnet/minecraft/world/level/levelgen/feature/configurations/DeltaFeatureConfiguration;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/levelgen/feature/configurations/DeltaFeatureConfiguration/lambda$static$1 (Lnet/minecraft/world/level/levelgen/feature/configurations/DeltaFeatureConfiguration;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/levelgen/feature/configurations/DeltaFeatureConfiguration/m_160741_ ()Lnet/minecraft/util/valueproviders/IntProvider; net/minecraft/world/level/levelgen/feature/configurations/DeltaFeatureConfiguration/size ()Lnet/minecraft/util/valueproviders/IntProvider; +MD: net/minecraft/world/level/levelgen/feature/configurations/DeltaFeatureConfiguration/m_160742_ (Lnet/minecraft/world/level/levelgen/feature/configurations/DeltaFeatureConfiguration;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/levelgen/feature/configurations/DeltaFeatureConfiguration/lambda$static$0 (Lnet/minecraft/world/level/levelgen/feature/configurations/DeltaFeatureConfiguration;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/levelgen/feature/configurations/DeltaFeatureConfiguration/m_160744_ ()Lnet/minecraft/util/valueproviders/IntProvider; net/minecraft/world/level/levelgen/feature/configurations/DeltaFeatureConfiguration/rimSize ()Lnet/minecraft/util/valueproviders/IntProvider; +MD: net/minecraft/world/level/levelgen/feature/configurations/DeltaFeatureConfiguration/m_67606_ (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/world/level/levelgen/feature/configurations/DeltaFeatureConfiguration/lambda$static$4 (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/world/level/levelgen/feature/configurations/DeltaFeatureConfiguration/m_67608_ ()Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/levelgen/feature/configurations/DeltaFeatureConfiguration/contents ()Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/levelgen/feature/configurations/DeltaFeatureConfiguration/m_67611_ ()Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/levelgen/feature/configurations/DeltaFeatureConfiguration/rim ()Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/levelgen/feature/configurations/DiskConfiguration/ ()V net/minecraft/world/level/levelgen/feature/configurations/DiskConfiguration/ ()V +MD: net/minecraft/world/level/levelgen/feature/configurations/DiskConfiguration/ (Lnet/minecraft/world/level/levelgen/feature/stateproviders/RuleBasedBlockStateProvider;Lnet/minecraft/world/level/levelgen/blockpredicates/BlockPredicate;Lnet/minecraft/util/valueproviders/IntProvider;I)V net/minecraft/world/level/levelgen/feature/configurations/DiskConfiguration/ (Lnet/minecraft/world/level/levelgen/feature/stateproviders/RuleBasedBlockStateProvider;Lnet/minecraft/world/level/levelgen/blockpredicates/BlockPredicate;Lnet/minecraft/util/valueproviders/IntProvider;I)V +MD: net/minecraft/world/level/levelgen/feature/configurations/DiskConfiguration/equals (Ljava/lang/Object;)Z net/minecraft/world/level/levelgen/feature/configurations/DiskConfiguration/equals (Ljava/lang/Object;)Z +MD: net/minecraft/world/level/levelgen/feature/configurations/DiskConfiguration/f_225372_ ()Lnet/minecraft/world/level/levelgen/feature/stateproviders/RuleBasedBlockStateProvider; net/minecraft/world/level/levelgen/feature/configurations/DiskConfiguration/stateProvider ()Lnet/minecraft/world/level/levelgen/feature/stateproviders/RuleBasedBlockStateProvider; +MD: net/minecraft/world/level/levelgen/feature/configurations/DiskConfiguration/f_225373_ ()Lnet/minecraft/world/level/levelgen/blockpredicates/BlockPredicate; net/minecraft/world/level/levelgen/feature/configurations/DiskConfiguration/target ()Lnet/minecraft/world/level/levelgen/blockpredicates/BlockPredicate; +MD: net/minecraft/world/level/levelgen/feature/configurations/DiskConfiguration/f_67620_ ()Lnet/minecraft/util/valueproviders/IntProvider; net/minecraft/world/level/levelgen/feature/configurations/DiskConfiguration/radius ()Lnet/minecraft/util/valueproviders/IntProvider; +MD: net/minecraft/world/level/levelgen/feature/configurations/DiskConfiguration/f_67621_ ()I net/minecraft/world/level/levelgen/feature/configurations/DiskConfiguration/halfHeight ()I +MD: net/minecraft/world/level/levelgen/feature/configurations/DiskConfiguration/hashCode ()I net/minecraft/world/level/levelgen/feature/configurations/DiskConfiguration/hashCode ()I +MD: net/minecraft/world/level/levelgen/feature/configurations/DiskConfiguration/m_191249_ (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/world/level/levelgen/feature/configurations/DiskConfiguration/lambda$static$0 (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/world/level/levelgen/feature/configurations/DiskConfiguration/toString ()Ljava/lang/String; net/minecraft/world/level/levelgen/feature/configurations/DiskConfiguration/toString ()Ljava/lang/String; +MD: net/minecraft/world/level/levelgen/feature/configurations/DripstoneClusterConfiguration/ ()V net/minecraft/world/level/levelgen/feature/configurations/DripstoneClusterConfiguration/ ()V +MD: net/minecraft/world/level/levelgen/feature/configurations/DripstoneClusterConfiguration/ (ILnet/minecraft/util/valueproviders/IntProvider;Lnet/minecraft/util/valueproviders/IntProvider;IILnet/minecraft/util/valueproviders/IntProvider;Lnet/minecraft/util/valueproviders/FloatProvider;Lnet/minecraft/util/valueproviders/FloatProvider;FII)V net/minecraft/world/level/levelgen/feature/configurations/DripstoneClusterConfiguration/ (ILnet/minecraft/util/valueproviders/IntProvider;Lnet/minecraft/util/valueproviders/IntProvider;IILnet/minecraft/util/valueproviders/IntProvider;Lnet/minecraft/util/valueproviders/FloatProvider;Lnet/minecraft/util/valueproviders/FloatProvider;FII)V +MD: net/minecraft/world/level/levelgen/feature/configurations/DripstoneClusterConfiguration/m_160783_ (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/world/level/levelgen/feature/configurations/DripstoneClusterConfiguration/lambda$static$11 (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/world/level/levelgen/feature/configurations/DripstoneClusterConfiguration/m_160785_ (Lnet/minecraft/world/level/levelgen/feature/configurations/DripstoneClusterConfiguration;)Ljava/lang/Integer; net/minecraft/world/level/levelgen/feature/configurations/DripstoneClusterConfiguration/lambda$static$10 (Lnet/minecraft/world/level/levelgen/feature/configurations/DripstoneClusterConfiguration;)Ljava/lang/Integer; +MD: net/minecraft/world/level/levelgen/feature/configurations/DripstoneClusterConfiguration/m_160787_ (Lnet/minecraft/world/level/levelgen/feature/configurations/DripstoneClusterConfiguration;)Ljava/lang/Integer; net/minecraft/world/level/levelgen/feature/configurations/DripstoneClusterConfiguration/lambda$static$9 (Lnet/minecraft/world/level/levelgen/feature/configurations/DripstoneClusterConfiguration;)Ljava/lang/Integer; +MD: net/minecraft/world/level/levelgen/feature/configurations/DripstoneClusterConfiguration/m_160789_ (Lnet/minecraft/world/level/levelgen/feature/configurations/DripstoneClusterConfiguration;)Ljava/lang/Float; net/minecraft/world/level/levelgen/feature/configurations/DripstoneClusterConfiguration/lambda$static$8 (Lnet/minecraft/world/level/levelgen/feature/configurations/DripstoneClusterConfiguration;)Ljava/lang/Float; +MD: net/minecraft/world/level/levelgen/feature/configurations/DripstoneClusterConfiguration/m_160791_ (Lnet/minecraft/world/level/levelgen/feature/configurations/DripstoneClusterConfiguration;)Lnet/minecraft/util/valueproviders/FloatProvider; net/minecraft/world/level/levelgen/feature/configurations/DripstoneClusterConfiguration/lambda$static$7 (Lnet/minecraft/world/level/levelgen/feature/configurations/DripstoneClusterConfiguration;)Lnet/minecraft/util/valueproviders/FloatProvider; +MD: net/minecraft/world/level/levelgen/feature/configurations/DripstoneClusterConfiguration/m_160793_ (Lnet/minecraft/world/level/levelgen/feature/configurations/DripstoneClusterConfiguration;)Lnet/minecraft/util/valueproviders/FloatProvider; net/minecraft/world/level/levelgen/feature/configurations/DripstoneClusterConfiguration/lambda$static$6 (Lnet/minecraft/world/level/levelgen/feature/configurations/DripstoneClusterConfiguration;)Lnet/minecraft/util/valueproviders/FloatProvider; +MD: net/minecraft/world/level/levelgen/feature/configurations/DripstoneClusterConfiguration/m_160795_ (Lnet/minecraft/world/level/levelgen/feature/configurations/DripstoneClusterConfiguration;)Lnet/minecraft/util/valueproviders/IntProvider; net/minecraft/world/level/levelgen/feature/configurations/DripstoneClusterConfiguration/lambda$static$5 (Lnet/minecraft/world/level/levelgen/feature/configurations/DripstoneClusterConfiguration;)Lnet/minecraft/util/valueproviders/IntProvider; +MD: net/minecraft/world/level/levelgen/feature/configurations/DripstoneClusterConfiguration/m_160797_ (Lnet/minecraft/world/level/levelgen/feature/configurations/DripstoneClusterConfiguration;)Ljava/lang/Integer; net/minecraft/world/level/levelgen/feature/configurations/DripstoneClusterConfiguration/lambda$static$4 (Lnet/minecraft/world/level/levelgen/feature/configurations/DripstoneClusterConfiguration;)Ljava/lang/Integer; +MD: net/minecraft/world/level/levelgen/feature/configurations/DripstoneClusterConfiguration/m_160799_ (Lnet/minecraft/world/level/levelgen/feature/configurations/DripstoneClusterConfiguration;)Ljava/lang/Integer; net/minecraft/world/level/levelgen/feature/configurations/DripstoneClusterConfiguration/lambda$static$3 (Lnet/minecraft/world/level/levelgen/feature/configurations/DripstoneClusterConfiguration;)Ljava/lang/Integer; +MD: net/minecraft/world/level/levelgen/feature/configurations/DripstoneClusterConfiguration/m_160801_ (Lnet/minecraft/world/level/levelgen/feature/configurations/DripstoneClusterConfiguration;)Lnet/minecraft/util/valueproviders/IntProvider; net/minecraft/world/level/levelgen/feature/configurations/DripstoneClusterConfiguration/lambda$static$2 (Lnet/minecraft/world/level/levelgen/feature/configurations/DripstoneClusterConfiguration;)Lnet/minecraft/util/valueproviders/IntProvider; +MD: net/minecraft/world/level/levelgen/feature/configurations/DripstoneClusterConfiguration/m_160803_ (Lnet/minecraft/world/level/levelgen/feature/configurations/DripstoneClusterConfiguration;)Lnet/minecraft/util/valueproviders/IntProvider; net/minecraft/world/level/levelgen/feature/configurations/DripstoneClusterConfiguration/lambda$static$1 (Lnet/minecraft/world/level/levelgen/feature/configurations/DripstoneClusterConfiguration;)Lnet/minecraft/util/valueproviders/IntProvider; +MD: net/minecraft/world/level/levelgen/feature/configurations/DripstoneClusterConfiguration/m_160805_ (Lnet/minecraft/world/level/levelgen/feature/configurations/DripstoneClusterConfiguration;)Ljava/lang/Integer; net/minecraft/world/level/levelgen/feature/configurations/DripstoneClusterConfiguration/lambda$static$0 (Lnet/minecraft/world/level/levelgen/feature/configurations/DripstoneClusterConfiguration;)Ljava/lang/Integer; +MD: net/minecraft/world/level/levelgen/feature/configurations/EndGatewayConfiguration/ ()V net/minecraft/world/level/levelgen/feature/configurations/EndGatewayConfiguration/ ()V +MD: net/minecraft/world/level/levelgen/feature/configurations/EndGatewayConfiguration/ (Ljava/util/Optional;Z)V net/minecraft/world/level/levelgen/feature/configurations/EndGatewayConfiguration/ (Ljava/util/Optional;Z)V +MD: net/minecraft/world/level/levelgen/feature/configurations/EndGatewayConfiguration/m_160807_ (Lnet/minecraft/world/level/levelgen/feature/configurations/EndGatewayConfiguration;)Ljava/lang/Boolean; net/minecraft/world/level/levelgen/feature/configurations/EndGatewayConfiguration/lambda$static$1 (Lnet/minecraft/world/level/levelgen/feature/configurations/EndGatewayConfiguration;)Ljava/lang/Boolean; +MD: net/minecraft/world/level/levelgen/feature/configurations/EndGatewayConfiguration/m_160809_ (Lnet/minecraft/world/level/levelgen/feature/configurations/EndGatewayConfiguration;)Ljava/util/Optional; net/minecraft/world/level/levelgen/feature/configurations/EndGatewayConfiguration/lambda$static$0 (Lnet/minecraft/world/level/levelgen/feature/configurations/EndGatewayConfiguration;)Ljava/util/Optional; +MD: net/minecraft/world/level/levelgen/feature/configurations/EndGatewayConfiguration/m_67648_ (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/world/level/levelgen/feature/configurations/EndGatewayConfiguration/lambda$static$2 (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/world/level/levelgen/feature/configurations/EndGatewayConfiguration/m_67650_ (Lnet/minecraft/core/BlockPos;Z)Lnet/minecraft/world/level/levelgen/feature/configurations/EndGatewayConfiguration; net/minecraft/world/level/levelgen/feature/configurations/EndGatewayConfiguration/knownExit (Lnet/minecraft/core/BlockPos;Z)Lnet/minecraft/world/level/levelgen/feature/configurations/EndGatewayConfiguration; +MD: net/minecraft/world/level/levelgen/feature/configurations/EndGatewayConfiguration/m_67653_ ()Lnet/minecraft/world/level/levelgen/feature/configurations/EndGatewayConfiguration; net/minecraft/world/level/levelgen/feature/configurations/EndGatewayConfiguration/delayedExitSearch ()Lnet/minecraft/world/level/levelgen/feature/configurations/EndGatewayConfiguration; +MD: net/minecraft/world/level/levelgen/feature/configurations/EndGatewayConfiguration/m_67656_ ()Ljava/util/Optional; net/minecraft/world/level/levelgen/feature/configurations/EndGatewayConfiguration/getExit ()Ljava/util/Optional; +MD: net/minecraft/world/level/levelgen/feature/configurations/EndGatewayConfiguration/m_67657_ ()Z net/minecraft/world/level/levelgen/feature/configurations/EndGatewayConfiguration/isExitExact ()Z +MD: net/minecraft/world/level/levelgen/feature/configurations/FeatureConfiguration/ ()V net/minecraft/world/level/levelgen/feature/configurations/FeatureConfiguration/ ()V +MD: net/minecraft/world/level/levelgen/feature/configurations/FeatureConfiguration/m_7817_ ()Ljava/util/stream/Stream; net/minecraft/world/level/levelgen/feature/configurations/FeatureConfiguration/getFeatures ()Ljava/util/stream/Stream; +MD: net/minecraft/world/level/levelgen/feature/configurations/GeodeConfiguration/ ()V net/minecraft/world/level/levelgen/feature/configurations/GeodeConfiguration/ ()V +MD: net/minecraft/world/level/levelgen/feature/configurations/GeodeConfiguration/ (Lnet/minecraft/world/level/levelgen/GeodeBlockSettings;Lnet/minecraft/world/level/levelgen/GeodeLayerSettings;Lnet/minecraft/world/level/levelgen/GeodeCrackSettings;DDZLnet/minecraft/util/valueproviders/IntProvider;Lnet/minecraft/util/valueproviders/IntProvider;Lnet/minecraft/util/valueproviders/IntProvider;IIDI)V net/minecraft/world/level/levelgen/feature/configurations/GeodeConfiguration/ (Lnet/minecraft/world/level/levelgen/GeodeBlockSettings;Lnet/minecraft/world/level/levelgen/GeodeLayerSettings;Lnet/minecraft/world/level/levelgen/GeodeCrackSettings;DDZLnet/minecraft/util/valueproviders/IntProvider;Lnet/minecraft/util/valueproviders/IntProvider;Lnet/minecraft/util/valueproviders/IntProvider;IIDI)V +MD: net/minecraft/world/level/levelgen/feature/configurations/GeodeConfiguration/m_160841_ (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/world/level/levelgen/feature/configurations/GeodeConfiguration/lambda$static$13 (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/world/level/levelgen/feature/configurations/GeodeConfiguration/m_160843_ (Lnet/minecraft/world/level/levelgen/feature/configurations/GeodeConfiguration;)Ljava/lang/Integer; net/minecraft/world/level/levelgen/feature/configurations/GeodeConfiguration/lambda$static$12 (Lnet/minecraft/world/level/levelgen/feature/configurations/GeodeConfiguration;)Ljava/lang/Integer; +MD: net/minecraft/world/level/levelgen/feature/configurations/GeodeConfiguration/m_160845_ (Lnet/minecraft/world/level/levelgen/feature/configurations/GeodeConfiguration;)Ljava/lang/Double; net/minecraft/world/level/levelgen/feature/configurations/GeodeConfiguration/lambda$static$11 (Lnet/minecraft/world/level/levelgen/feature/configurations/GeodeConfiguration;)Ljava/lang/Double; +MD: net/minecraft/world/level/levelgen/feature/configurations/GeodeConfiguration/m_160847_ (Lnet/minecraft/world/level/levelgen/feature/configurations/GeodeConfiguration;)Ljava/lang/Integer; net/minecraft/world/level/levelgen/feature/configurations/GeodeConfiguration/lambda$static$10 (Lnet/minecraft/world/level/levelgen/feature/configurations/GeodeConfiguration;)Ljava/lang/Integer; +MD: net/minecraft/world/level/levelgen/feature/configurations/GeodeConfiguration/m_160849_ (Lnet/minecraft/world/level/levelgen/feature/configurations/GeodeConfiguration;)Ljava/lang/Integer; net/minecraft/world/level/levelgen/feature/configurations/GeodeConfiguration/lambda$static$9 (Lnet/minecraft/world/level/levelgen/feature/configurations/GeodeConfiguration;)Ljava/lang/Integer; +MD: net/minecraft/world/level/levelgen/feature/configurations/GeodeConfiguration/m_160851_ (Lnet/minecraft/world/level/levelgen/feature/configurations/GeodeConfiguration;)Lnet/minecraft/util/valueproviders/IntProvider; net/minecraft/world/level/levelgen/feature/configurations/GeodeConfiguration/lambda$static$8 (Lnet/minecraft/world/level/levelgen/feature/configurations/GeodeConfiguration;)Lnet/minecraft/util/valueproviders/IntProvider; +MD: net/minecraft/world/level/levelgen/feature/configurations/GeodeConfiguration/m_160853_ (Lnet/minecraft/world/level/levelgen/feature/configurations/GeodeConfiguration;)Lnet/minecraft/util/valueproviders/IntProvider; net/minecraft/world/level/levelgen/feature/configurations/GeodeConfiguration/lambda$static$7 (Lnet/minecraft/world/level/levelgen/feature/configurations/GeodeConfiguration;)Lnet/minecraft/util/valueproviders/IntProvider; +MD: net/minecraft/world/level/levelgen/feature/configurations/GeodeConfiguration/m_160855_ (Lnet/minecraft/world/level/levelgen/feature/configurations/GeodeConfiguration;)Lnet/minecraft/util/valueproviders/IntProvider; net/minecraft/world/level/levelgen/feature/configurations/GeodeConfiguration/lambda$static$6 (Lnet/minecraft/world/level/levelgen/feature/configurations/GeodeConfiguration;)Lnet/minecraft/util/valueproviders/IntProvider; +MD: net/minecraft/world/level/levelgen/feature/configurations/GeodeConfiguration/m_160857_ (Lnet/minecraft/world/level/levelgen/feature/configurations/GeodeConfiguration;)Ljava/lang/Boolean; net/minecraft/world/level/levelgen/feature/configurations/GeodeConfiguration/lambda$static$5 (Lnet/minecraft/world/level/levelgen/feature/configurations/GeodeConfiguration;)Ljava/lang/Boolean; +MD: net/minecraft/world/level/levelgen/feature/configurations/GeodeConfiguration/m_160859_ (Lnet/minecraft/world/level/levelgen/feature/configurations/GeodeConfiguration;)Ljava/lang/Double; net/minecraft/world/level/levelgen/feature/configurations/GeodeConfiguration/lambda$static$4 (Lnet/minecraft/world/level/levelgen/feature/configurations/GeodeConfiguration;)Ljava/lang/Double; +MD: net/minecraft/world/level/levelgen/feature/configurations/GeodeConfiguration/m_160861_ (Lnet/minecraft/world/level/levelgen/feature/configurations/GeodeConfiguration;)Ljava/lang/Double; net/minecraft/world/level/levelgen/feature/configurations/GeodeConfiguration/lambda$static$3 (Lnet/minecraft/world/level/levelgen/feature/configurations/GeodeConfiguration;)Ljava/lang/Double; +MD: net/minecraft/world/level/levelgen/feature/configurations/GeodeConfiguration/m_160863_ (Lnet/minecraft/world/level/levelgen/feature/configurations/GeodeConfiguration;)Lnet/minecraft/world/level/levelgen/GeodeCrackSettings; net/minecraft/world/level/levelgen/feature/configurations/GeodeConfiguration/lambda$static$2 (Lnet/minecraft/world/level/levelgen/feature/configurations/GeodeConfiguration;)Lnet/minecraft/world/level/levelgen/GeodeCrackSettings; +MD: net/minecraft/world/level/levelgen/feature/configurations/GeodeConfiguration/m_160865_ (Lnet/minecraft/world/level/levelgen/feature/configurations/GeodeConfiguration;)Lnet/minecraft/world/level/levelgen/GeodeLayerSettings; net/minecraft/world/level/levelgen/feature/configurations/GeodeConfiguration/lambda$static$1 (Lnet/minecraft/world/level/levelgen/feature/configurations/GeodeConfiguration;)Lnet/minecraft/world/level/levelgen/GeodeLayerSettings; +MD: net/minecraft/world/level/levelgen/feature/configurations/GeodeConfiguration/m_160867_ (Lnet/minecraft/world/level/levelgen/feature/configurations/GeodeConfiguration;)Lnet/minecraft/world/level/levelgen/GeodeBlockSettings; net/minecraft/world/level/levelgen/feature/configurations/GeodeConfiguration/lambda$static$0 (Lnet/minecraft/world/level/levelgen/feature/configurations/GeodeConfiguration;)Lnet/minecraft/world/level/levelgen/GeodeBlockSettings; +MD: net/minecraft/world/level/levelgen/feature/configurations/HugeMushroomFeatureConfiguration/ ()V net/minecraft/world/level/levelgen/feature/configurations/HugeMushroomFeatureConfiguration/ ()V +MD: net/minecraft/world/level/levelgen/feature/configurations/HugeMushroomFeatureConfiguration/ (Lnet/minecraft/world/level/levelgen/feature/stateproviders/BlockStateProvider;Lnet/minecraft/world/level/levelgen/feature/stateproviders/BlockStateProvider;I)V net/minecraft/world/level/levelgen/feature/configurations/HugeMushroomFeatureConfiguration/ (Lnet/minecraft/world/level/levelgen/feature/stateproviders/BlockStateProvider;Lnet/minecraft/world/level/levelgen/feature/stateproviders/BlockStateProvider;I)V +MD: net/minecraft/world/level/levelgen/feature/configurations/HugeMushroomFeatureConfiguration/m_160938_ (Lnet/minecraft/world/level/levelgen/feature/configurations/HugeMushroomFeatureConfiguration;)Ljava/lang/Integer; net/minecraft/world/level/levelgen/feature/configurations/HugeMushroomFeatureConfiguration/lambda$static$2 (Lnet/minecraft/world/level/levelgen/feature/configurations/HugeMushroomFeatureConfiguration;)Ljava/lang/Integer; +MD: net/minecraft/world/level/levelgen/feature/configurations/HugeMushroomFeatureConfiguration/m_160940_ (Lnet/minecraft/world/level/levelgen/feature/configurations/HugeMushroomFeatureConfiguration;)Lnet/minecraft/world/level/levelgen/feature/stateproviders/BlockStateProvider; net/minecraft/world/level/levelgen/feature/configurations/HugeMushroomFeatureConfiguration/lambda$static$1 (Lnet/minecraft/world/level/levelgen/feature/configurations/HugeMushroomFeatureConfiguration;)Lnet/minecraft/world/level/levelgen/feature/stateproviders/BlockStateProvider; +MD: net/minecraft/world/level/levelgen/feature/configurations/HugeMushroomFeatureConfiguration/m_160942_ (Lnet/minecraft/world/level/levelgen/feature/configurations/HugeMushroomFeatureConfiguration;)Lnet/minecraft/world/level/levelgen/feature/stateproviders/BlockStateProvider; net/minecraft/world/level/levelgen/feature/configurations/HugeMushroomFeatureConfiguration/lambda$static$0 (Lnet/minecraft/world/level/levelgen/feature/configurations/HugeMushroomFeatureConfiguration;)Lnet/minecraft/world/level/levelgen/feature/stateproviders/BlockStateProvider; +MD: net/minecraft/world/level/levelgen/feature/configurations/HugeMushroomFeatureConfiguration/m_67750_ (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/world/level/levelgen/feature/configurations/HugeMushroomFeatureConfiguration/lambda$static$3 (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/world/level/levelgen/feature/configurations/LargeDripstoneConfiguration/ ()V net/minecraft/world/level/levelgen/feature/configurations/LargeDripstoneConfiguration/ ()V +MD: net/minecraft/world/level/levelgen/feature/configurations/LargeDripstoneConfiguration/ (ILnet/minecraft/util/valueproviders/IntProvider;Lnet/minecraft/util/valueproviders/FloatProvider;FLnet/minecraft/util/valueproviders/FloatProvider;Lnet/minecraft/util/valueproviders/FloatProvider;Lnet/minecraft/util/valueproviders/FloatProvider;IF)V net/minecraft/world/level/levelgen/feature/configurations/LargeDripstoneConfiguration/ (ILnet/minecraft/util/valueproviders/IntProvider;Lnet/minecraft/util/valueproviders/FloatProvider;FLnet/minecraft/util/valueproviders/FloatProvider;Lnet/minecraft/util/valueproviders/FloatProvider;Lnet/minecraft/util/valueproviders/FloatProvider;IF)V +MD: net/minecraft/world/level/levelgen/feature/configurations/LargeDripstoneConfiguration/m_160965_ (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/world/level/levelgen/feature/configurations/LargeDripstoneConfiguration/lambda$static$9 (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/world/level/levelgen/feature/configurations/LargeDripstoneConfiguration/m_160967_ (Lnet/minecraft/world/level/levelgen/feature/configurations/LargeDripstoneConfiguration;)Ljava/lang/Float; net/minecraft/world/level/levelgen/feature/configurations/LargeDripstoneConfiguration/lambda$static$8 (Lnet/minecraft/world/level/levelgen/feature/configurations/LargeDripstoneConfiguration;)Ljava/lang/Float; +MD: net/minecraft/world/level/levelgen/feature/configurations/LargeDripstoneConfiguration/m_160969_ (Lnet/minecraft/world/level/levelgen/feature/configurations/LargeDripstoneConfiguration;)Ljava/lang/Integer; net/minecraft/world/level/levelgen/feature/configurations/LargeDripstoneConfiguration/lambda$static$7 (Lnet/minecraft/world/level/levelgen/feature/configurations/LargeDripstoneConfiguration;)Ljava/lang/Integer; +MD: net/minecraft/world/level/levelgen/feature/configurations/LargeDripstoneConfiguration/m_160971_ (Lnet/minecraft/world/level/levelgen/feature/configurations/LargeDripstoneConfiguration;)Lnet/minecraft/util/valueproviders/FloatProvider; net/minecraft/world/level/levelgen/feature/configurations/LargeDripstoneConfiguration/lambda$static$6 (Lnet/minecraft/world/level/levelgen/feature/configurations/LargeDripstoneConfiguration;)Lnet/minecraft/util/valueproviders/FloatProvider; +MD: net/minecraft/world/level/levelgen/feature/configurations/LargeDripstoneConfiguration/m_160973_ (Lnet/minecraft/world/level/levelgen/feature/configurations/LargeDripstoneConfiguration;)Lnet/minecraft/util/valueproviders/FloatProvider; net/minecraft/world/level/levelgen/feature/configurations/LargeDripstoneConfiguration/lambda$static$5 (Lnet/minecraft/world/level/levelgen/feature/configurations/LargeDripstoneConfiguration;)Lnet/minecraft/util/valueproviders/FloatProvider; +MD: net/minecraft/world/level/levelgen/feature/configurations/LargeDripstoneConfiguration/m_160975_ (Lnet/minecraft/world/level/levelgen/feature/configurations/LargeDripstoneConfiguration;)Lnet/minecraft/util/valueproviders/FloatProvider; net/minecraft/world/level/levelgen/feature/configurations/LargeDripstoneConfiguration/lambda$static$4 (Lnet/minecraft/world/level/levelgen/feature/configurations/LargeDripstoneConfiguration;)Lnet/minecraft/util/valueproviders/FloatProvider; +MD: net/minecraft/world/level/levelgen/feature/configurations/LargeDripstoneConfiguration/m_160977_ (Lnet/minecraft/world/level/levelgen/feature/configurations/LargeDripstoneConfiguration;)Ljava/lang/Float; net/minecraft/world/level/levelgen/feature/configurations/LargeDripstoneConfiguration/lambda$static$3 (Lnet/minecraft/world/level/levelgen/feature/configurations/LargeDripstoneConfiguration;)Ljava/lang/Float; +MD: net/minecraft/world/level/levelgen/feature/configurations/LargeDripstoneConfiguration/m_160979_ (Lnet/minecraft/world/level/levelgen/feature/configurations/LargeDripstoneConfiguration;)Lnet/minecraft/util/valueproviders/FloatProvider; net/minecraft/world/level/levelgen/feature/configurations/LargeDripstoneConfiguration/lambda$static$2 (Lnet/minecraft/world/level/levelgen/feature/configurations/LargeDripstoneConfiguration;)Lnet/minecraft/util/valueproviders/FloatProvider; +MD: net/minecraft/world/level/levelgen/feature/configurations/LargeDripstoneConfiguration/m_160981_ (Lnet/minecraft/world/level/levelgen/feature/configurations/LargeDripstoneConfiguration;)Lnet/minecraft/util/valueproviders/IntProvider; net/minecraft/world/level/levelgen/feature/configurations/LargeDripstoneConfiguration/lambda$static$1 (Lnet/minecraft/world/level/levelgen/feature/configurations/LargeDripstoneConfiguration;)Lnet/minecraft/util/valueproviders/IntProvider; +MD: net/minecraft/world/level/levelgen/feature/configurations/LargeDripstoneConfiguration/m_160983_ (Lnet/minecraft/world/level/levelgen/feature/configurations/LargeDripstoneConfiguration;)Ljava/lang/Integer; net/minecraft/world/level/levelgen/feature/configurations/LargeDripstoneConfiguration/lambda$static$0 (Lnet/minecraft/world/level/levelgen/feature/configurations/LargeDripstoneConfiguration;)Ljava/lang/Integer; +MD: net/minecraft/world/level/levelgen/feature/configurations/LayerConfiguration/ ()V net/minecraft/world/level/levelgen/feature/configurations/LayerConfiguration/ ()V +MD: net/minecraft/world/level/levelgen/feature/configurations/LayerConfiguration/ (ILnet/minecraft/world/level/block/state/BlockState;)V net/minecraft/world/level/levelgen/feature/configurations/LayerConfiguration/ (ILnet/minecraft/world/level/block/state/BlockState;)V +MD: net/minecraft/world/level/levelgen/feature/configurations/LayerConfiguration/m_160985_ (Lnet/minecraft/world/level/levelgen/feature/configurations/LayerConfiguration;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/levelgen/feature/configurations/LayerConfiguration/lambda$static$1 (Lnet/minecraft/world/level/levelgen/feature/configurations/LayerConfiguration;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/levelgen/feature/configurations/LayerConfiguration/m_160987_ (Lnet/minecraft/world/level/levelgen/feature/configurations/LayerConfiguration;)Ljava/lang/Integer; net/minecraft/world/level/levelgen/feature/configurations/LayerConfiguration/lambda$static$0 (Lnet/minecraft/world/level/levelgen/feature/configurations/LayerConfiguration;)Ljava/lang/Integer; +MD: net/minecraft/world/level/levelgen/feature/configurations/LayerConfiguration/m_67776_ (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/world/level/levelgen/feature/configurations/LayerConfiguration/lambda$static$2 (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/world/level/levelgen/feature/configurations/MultifaceGrowthConfiguration/ ()V net/minecraft/world/level/levelgen/feature/configurations/MultifaceGrowthConfiguration/ ()V +MD: net/minecraft/world/level/levelgen/feature/configurations/MultifaceGrowthConfiguration/ (Lnet/minecraft/world/level/block/MultifaceBlock;IZZZFLnet/minecraft/core/HolderSet;)V net/minecraft/world/level/levelgen/feature/configurations/MultifaceGrowthConfiguration/ (Lnet/minecraft/world/level/block/MultifaceBlock;IZZZFLnet/minecraft/core/HolderSet;)V +MD: net/minecraft/world/level/levelgen/feature/configurations/MultifaceGrowthConfiguration/m_225399_ (Lnet/minecraft/util/RandomSource;)Ljava/util/List; net/minecraft/world/level/levelgen/feature/configurations/MultifaceGrowthConfiguration/getShuffledDirections (Lnet/minecraft/util/RandomSource;)Ljava/util/List; +MD: net/minecraft/world/level/levelgen/feature/configurations/MultifaceGrowthConfiguration/m_225401_ (Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/Direction;)Ljava/util/List; net/minecraft/world/level/levelgen/feature/configurations/MultifaceGrowthConfiguration/getShuffledDirectionsExcept (Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/Direction;)Ljava/util/List; +MD: net/minecraft/world/level/levelgen/feature/configurations/MultifaceGrowthConfiguration/m_225404_ (Lnet/minecraft/world/level/block/Block;)Lcom/mojang/serialization/DataResult; net/minecraft/world/level/levelgen/feature/configurations/MultifaceGrowthConfiguration/apply (Lnet/minecraft/world/level/block/Block;)Lcom/mojang/serialization/DataResult; +MD: net/minecraft/world/level/levelgen/feature/configurations/MultifaceGrowthConfiguration/m_225406_ (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/world/level/levelgen/feature/configurations/MultifaceGrowthConfiguration/lambda$static$7 (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/world/level/levelgen/feature/configurations/MultifaceGrowthConfiguration/m_225408_ (Lnet/minecraft/world/level/levelgen/feature/configurations/MultifaceGrowthConfiguration;)Lnet/minecraft/core/HolderSet; net/minecraft/world/level/levelgen/feature/configurations/MultifaceGrowthConfiguration/lambda$static$6 (Lnet/minecraft/world/level/levelgen/feature/configurations/MultifaceGrowthConfiguration;)Lnet/minecraft/core/HolderSet; +MD: net/minecraft/world/level/levelgen/feature/configurations/MultifaceGrowthConfiguration/m_225410_ (Lnet/minecraft/core/Direction;Lnet/minecraft/core/Direction;)Z net/minecraft/world/level/levelgen/feature/configurations/MultifaceGrowthConfiguration/lambda$getShuffledDirectionsExcept$9 (Lnet/minecraft/core/Direction;Lnet/minecraft/core/Direction;)Z +MD: net/minecraft/world/level/levelgen/feature/configurations/MultifaceGrowthConfiguration/m_225413_ (Lnet/minecraft/world/level/levelgen/feature/configurations/MultifaceGrowthConfiguration;)Ljava/lang/Float; net/minecraft/world/level/levelgen/feature/configurations/MultifaceGrowthConfiguration/lambda$static$5 (Lnet/minecraft/world/level/levelgen/feature/configurations/MultifaceGrowthConfiguration;)Ljava/lang/Float; +MD: net/minecraft/world/level/levelgen/feature/configurations/MultifaceGrowthConfiguration/m_225415_ (Lnet/minecraft/world/level/levelgen/feature/configurations/MultifaceGrowthConfiguration;)Ljava/lang/Boolean; net/minecraft/world/level/levelgen/feature/configurations/MultifaceGrowthConfiguration/lambda$static$4 (Lnet/minecraft/world/level/levelgen/feature/configurations/MultifaceGrowthConfiguration;)Ljava/lang/Boolean; +MD: net/minecraft/world/level/levelgen/feature/configurations/MultifaceGrowthConfiguration/m_225417_ (Lnet/minecraft/world/level/levelgen/feature/configurations/MultifaceGrowthConfiguration;)Ljava/lang/Boolean; net/minecraft/world/level/levelgen/feature/configurations/MultifaceGrowthConfiguration/lambda$static$3 (Lnet/minecraft/world/level/levelgen/feature/configurations/MultifaceGrowthConfiguration;)Ljava/lang/Boolean; +MD: net/minecraft/world/level/levelgen/feature/configurations/MultifaceGrowthConfiguration/m_225419_ (Lnet/minecraft/world/level/levelgen/feature/configurations/MultifaceGrowthConfiguration;)Ljava/lang/Boolean; net/minecraft/world/level/levelgen/feature/configurations/MultifaceGrowthConfiguration/lambda$static$2 (Lnet/minecraft/world/level/levelgen/feature/configurations/MultifaceGrowthConfiguration;)Ljava/lang/Boolean; +MD: net/minecraft/world/level/levelgen/feature/configurations/MultifaceGrowthConfiguration/m_225421_ (Lnet/minecraft/world/level/levelgen/feature/configurations/MultifaceGrowthConfiguration;)Ljava/lang/Integer; net/minecraft/world/level/levelgen/feature/configurations/MultifaceGrowthConfiguration/lambda$static$1 (Lnet/minecraft/world/level/levelgen/feature/configurations/MultifaceGrowthConfiguration;)Ljava/lang/Integer; +MD: net/minecraft/world/level/levelgen/feature/configurations/MultifaceGrowthConfiguration/m_225423_ (Lnet/minecraft/world/level/levelgen/feature/configurations/MultifaceGrowthConfiguration;)Lnet/minecraft/world/level/block/MultifaceBlock; net/minecraft/world/level/levelgen/feature/configurations/MultifaceGrowthConfiguration/lambda$static$0 (Lnet/minecraft/world/level/levelgen/feature/configurations/MultifaceGrowthConfiguration;)Lnet/minecraft/world/level/block/MultifaceBlock; +MD: net/minecraft/world/level/levelgen/feature/configurations/MultifaceGrowthConfiguration/m_274288_ ()Ljava/lang/String; net/minecraft/world/level/levelgen/feature/configurations/MultifaceGrowthConfiguration/lambda$apply$8 ()Ljava/lang/String; +MD: net/minecraft/world/level/levelgen/feature/configurations/NetherForestVegetationConfig/ ()V net/minecraft/world/level/levelgen/feature/configurations/NetherForestVegetationConfig/ ()V +MD: net/minecraft/world/level/levelgen/feature/configurations/NetherForestVegetationConfig/ (Lnet/minecraft/world/level/levelgen/feature/stateproviders/BlockStateProvider;II)V net/minecraft/world/level/levelgen/feature/configurations/NetherForestVegetationConfig/ (Lnet/minecraft/world/level/levelgen/feature/stateproviders/BlockStateProvider;II)V +MD: net/minecraft/world/level/levelgen/feature/configurations/NetherForestVegetationConfig/m_191266_ (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/world/level/levelgen/feature/configurations/NetherForestVegetationConfig/lambda$static$3 (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/world/level/levelgen/feature/configurations/NetherForestVegetationConfig/m_191268_ (Lnet/minecraft/world/level/levelgen/feature/configurations/NetherForestVegetationConfig;)Ljava/lang/Integer; net/minecraft/world/level/levelgen/feature/configurations/NetherForestVegetationConfig/lambda$static$2 (Lnet/minecraft/world/level/levelgen/feature/configurations/NetherForestVegetationConfig;)Ljava/lang/Integer; +MD: net/minecraft/world/level/levelgen/feature/configurations/NetherForestVegetationConfig/m_191270_ (Lnet/minecraft/world/level/levelgen/feature/configurations/NetherForestVegetationConfig;)Ljava/lang/Integer; net/minecraft/world/level/levelgen/feature/configurations/NetherForestVegetationConfig/lambda$static$1 (Lnet/minecraft/world/level/levelgen/feature/configurations/NetherForestVegetationConfig;)Ljava/lang/Integer; +MD: net/minecraft/world/level/levelgen/feature/configurations/NetherForestVegetationConfig/m_191272_ (Lnet/minecraft/world/level/levelgen/feature/configurations/NetherForestVegetationConfig;)Lnet/minecraft/world/level/levelgen/feature/stateproviders/BlockStateProvider; net/minecraft/world/level/levelgen/feature/configurations/NetherForestVegetationConfig/lambda$static$0 (Lnet/minecraft/world/level/levelgen/feature/configurations/NetherForestVegetationConfig;)Lnet/minecraft/world/level/levelgen/feature/stateproviders/BlockStateProvider; +MD: net/minecraft/world/level/levelgen/feature/configurations/NoneFeatureConfiguration/ ()V net/minecraft/world/level/levelgen/feature/configurations/NoneFeatureConfiguration/ ()V +MD: net/minecraft/world/level/levelgen/feature/configurations/NoneFeatureConfiguration/ ()V net/minecraft/world/level/levelgen/feature/configurations/NoneFeatureConfiguration/ ()V +MD: net/minecraft/world/level/levelgen/feature/configurations/NoneFeatureConfiguration/m_67819_ ()Lnet/minecraft/world/level/levelgen/feature/configurations/NoneFeatureConfiguration; net/minecraft/world/level/levelgen/feature/configurations/NoneFeatureConfiguration/lambda$static$0 ()Lnet/minecraft/world/level/levelgen/feature/configurations/NoneFeatureConfiguration; +MD: net/minecraft/world/level/levelgen/feature/configurations/OreConfiguration/ ()V net/minecraft/world/level/levelgen/feature/configurations/OreConfiguration/ ()V +MD: net/minecraft/world/level/levelgen/feature/configurations/OreConfiguration/ (Ljava/util/List;IF)V net/minecraft/world/level/levelgen/feature/configurations/OreConfiguration/ (Ljava/util/List;IF)V +MD: net/minecraft/world/level/levelgen/feature/configurations/OreConfiguration/ (Ljava/util/List;I)V net/minecraft/world/level/levelgen/feature/configurations/OreConfiguration/ (Ljava/util/List;I)V +MD: net/minecraft/world/level/levelgen/feature/configurations/OreConfiguration/ (Lnet/minecraft/world/level/levelgen/structure/templatesystem/RuleTest;Lnet/minecraft/world/level/block/state/BlockState;IF)V net/minecraft/world/level/levelgen/feature/configurations/OreConfiguration/ (Lnet/minecraft/world/level/levelgen/structure/templatesystem/RuleTest;Lnet/minecraft/world/level/block/state/BlockState;IF)V +MD: net/minecraft/world/level/levelgen/feature/configurations/OreConfiguration/ (Lnet/minecraft/world/level/levelgen/structure/templatesystem/RuleTest;Lnet/minecraft/world/level/block/state/BlockState;I)V net/minecraft/world/level/levelgen/feature/configurations/OreConfiguration/ (Lnet/minecraft/world/level/levelgen/structure/templatesystem/RuleTest;Lnet/minecraft/world/level/block/state/BlockState;I)V +MD: net/minecraft/world/level/levelgen/feature/configurations/OreConfiguration/m_161019_ (Lnet/minecraft/world/level/levelgen/feature/configurations/OreConfiguration;)Ljava/lang/Float; net/minecraft/world/level/levelgen/feature/configurations/OreConfiguration/lambda$static$2 (Lnet/minecraft/world/level/levelgen/feature/configurations/OreConfiguration;)Ljava/lang/Float; +MD: net/minecraft/world/level/levelgen/feature/configurations/OreConfiguration/m_161021_ (Lnet/minecraft/world/level/levelgen/structure/templatesystem/RuleTest;Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/levelgen/feature/configurations/OreConfiguration$TargetBlockState; net/minecraft/world/level/levelgen/feature/configurations/OreConfiguration/target (Lnet/minecraft/world/level/levelgen/structure/templatesystem/RuleTest;Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/levelgen/feature/configurations/OreConfiguration$TargetBlockState; +MD: net/minecraft/world/level/levelgen/feature/configurations/OreConfiguration/m_161024_ (Lnet/minecraft/world/level/levelgen/feature/configurations/OreConfiguration;)Ljava/lang/Integer; net/minecraft/world/level/levelgen/feature/configurations/OreConfiguration/lambda$static$1 (Lnet/minecraft/world/level/levelgen/feature/configurations/OreConfiguration;)Ljava/lang/Integer; +MD: net/minecraft/world/level/levelgen/feature/configurations/OreConfiguration/m_161026_ (Lnet/minecraft/world/level/levelgen/feature/configurations/OreConfiguration;)Ljava/util/List; net/minecraft/world/level/levelgen/feature/configurations/OreConfiguration/lambda$static$0 (Lnet/minecraft/world/level/levelgen/feature/configurations/OreConfiguration;)Ljava/util/List; +MD: net/minecraft/world/level/levelgen/feature/configurations/OreConfiguration/m_67848_ (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/world/level/levelgen/feature/configurations/OreConfiguration/lambda$static$3 (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/world/level/levelgen/feature/configurations/OreConfiguration$TargetBlockState/ ()V net/minecraft/world/level/levelgen/feature/configurations/OreConfiguration$TargetBlockState/ ()V +MD: net/minecraft/world/level/levelgen/feature/configurations/OreConfiguration$TargetBlockState/ (Lnet/minecraft/world/level/levelgen/structure/templatesystem/RuleTest;Lnet/minecraft/world/level/block/state/BlockState;)V net/minecraft/world/level/levelgen/feature/configurations/OreConfiguration$TargetBlockState/ (Lnet/minecraft/world/level/levelgen/structure/templatesystem/RuleTest;Lnet/minecraft/world/level/block/state/BlockState;)V +MD: net/minecraft/world/level/levelgen/feature/configurations/OreConfiguration$TargetBlockState/m_161038_ (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/world/level/levelgen/feature/configurations/OreConfiguration$TargetBlockState/lambda$static$2 (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/world/level/levelgen/feature/configurations/OreConfiguration$TargetBlockState/m_161040_ (Lnet/minecraft/world/level/levelgen/feature/configurations/OreConfiguration$TargetBlockState;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/levelgen/feature/configurations/OreConfiguration$TargetBlockState/lambda$static$1 (Lnet/minecraft/world/level/levelgen/feature/configurations/OreConfiguration$TargetBlockState;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/levelgen/feature/configurations/OreConfiguration$TargetBlockState/m_161042_ (Lnet/minecraft/world/level/levelgen/feature/configurations/OreConfiguration$TargetBlockState;)Lnet/minecraft/world/level/levelgen/structure/templatesystem/RuleTest; net/minecraft/world/level/levelgen/feature/configurations/OreConfiguration$TargetBlockState/lambda$static$0 (Lnet/minecraft/world/level/levelgen/feature/configurations/OreConfiguration$TargetBlockState;)Lnet/minecraft/world/level/levelgen/structure/templatesystem/RuleTest; +MD: net/minecraft/world/level/levelgen/feature/configurations/PointedDripstoneConfiguration/ ()V net/minecraft/world/level/levelgen/feature/configurations/PointedDripstoneConfiguration/ ()V +MD: net/minecraft/world/level/levelgen/feature/configurations/PointedDripstoneConfiguration/ (FFFF)V net/minecraft/world/level/levelgen/feature/configurations/PointedDripstoneConfiguration/ (FFFF)V +MD: net/minecraft/world/level/levelgen/feature/configurations/PointedDripstoneConfiguration/m_191285_ (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/world/level/levelgen/feature/configurations/PointedDripstoneConfiguration/lambda$static$4 (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/world/level/levelgen/feature/configurations/PointedDripstoneConfiguration/m_191287_ (Lnet/minecraft/world/level/levelgen/feature/configurations/PointedDripstoneConfiguration;)Ljava/lang/Float; net/minecraft/world/level/levelgen/feature/configurations/PointedDripstoneConfiguration/lambda$static$3 (Lnet/minecraft/world/level/levelgen/feature/configurations/PointedDripstoneConfiguration;)Ljava/lang/Float; +MD: net/minecraft/world/level/levelgen/feature/configurations/PointedDripstoneConfiguration/m_191289_ (Lnet/minecraft/world/level/levelgen/feature/configurations/PointedDripstoneConfiguration;)Ljava/lang/Float; net/minecraft/world/level/levelgen/feature/configurations/PointedDripstoneConfiguration/lambda$static$2 (Lnet/minecraft/world/level/levelgen/feature/configurations/PointedDripstoneConfiguration;)Ljava/lang/Float; +MD: net/minecraft/world/level/levelgen/feature/configurations/PointedDripstoneConfiguration/m_191291_ (Lnet/minecraft/world/level/levelgen/feature/configurations/PointedDripstoneConfiguration;)Ljava/lang/Float; net/minecraft/world/level/levelgen/feature/configurations/PointedDripstoneConfiguration/lambda$static$1 (Lnet/minecraft/world/level/levelgen/feature/configurations/PointedDripstoneConfiguration;)Ljava/lang/Float; +MD: net/minecraft/world/level/levelgen/feature/configurations/PointedDripstoneConfiguration/m_191293_ (Lnet/minecraft/world/level/levelgen/feature/configurations/PointedDripstoneConfiguration;)Ljava/lang/Float; net/minecraft/world/level/levelgen/feature/configurations/PointedDripstoneConfiguration/lambda$static$0 (Lnet/minecraft/world/level/levelgen/feature/configurations/PointedDripstoneConfiguration;)Ljava/lang/Float; +MD: net/minecraft/world/level/levelgen/feature/configurations/ProbabilityFeatureConfiguration/ ()V net/minecraft/world/level/levelgen/feature/configurations/ProbabilityFeatureConfiguration/ ()V +MD: net/minecraft/world/level/levelgen/feature/configurations/ProbabilityFeatureConfiguration/ (F)V net/minecraft/world/level/levelgen/feature/configurations/ProbabilityFeatureConfiguration/ (F)V +MD: net/minecraft/world/level/levelgen/feature/configurations/ProbabilityFeatureConfiguration/m_161044_ (Lnet/minecraft/world/level/levelgen/feature/configurations/ProbabilityFeatureConfiguration;)Ljava/lang/Float; net/minecraft/world/level/levelgen/feature/configurations/ProbabilityFeatureConfiguration/lambda$static$0 (Lnet/minecraft/world/level/levelgen/feature/configurations/ProbabilityFeatureConfiguration;)Ljava/lang/Float; +MD: net/minecraft/world/level/levelgen/feature/configurations/ProbabilityFeatureConfiguration/m_67865_ (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/world/level/levelgen/feature/configurations/ProbabilityFeatureConfiguration/lambda$static$1 (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/world/level/levelgen/feature/configurations/RandomBooleanFeatureConfiguration/ ()V net/minecraft/world/level/levelgen/feature/configurations/RandomBooleanFeatureConfiguration/ ()V +MD: net/minecraft/world/level/levelgen/feature/configurations/RandomBooleanFeatureConfiguration/ (Lnet/minecraft/core/Holder;Lnet/minecraft/core/Holder;)V net/minecraft/world/level/levelgen/feature/configurations/RandomBooleanFeatureConfiguration/ (Lnet/minecraft/core/Holder;Lnet/minecraft/core/Holder;)V +MD: net/minecraft/world/level/levelgen/feature/configurations/RandomBooleanFeatureConfiguration/m_204806_ (Lnet/minecraft/world/level/levelgen/feature/configurations/RandomBooleanFeatureConfiguration;)Lnet/minecraft/core/Holder; net/minecraft/world/level/levelgen/feature/configurations/RandomBooleanFeatureConfiguration/lambda$static$1 (Lnet/minecraft/world/level/levelgen/feature/configurations/RandomBooleanFeatureConfiguration;)Lnet/minecraft/core/Holder; +MD: net/minecraft/world/level/levelgen/feature/configurations/RandomBooleanFeatureConfiguration/m_204808_ (Lnet/minecraft/world/level/levelgen/feature/configurations/RandomBooleanFeatureConfiguration;)Lnet/minecraft/core/Holder; net/minecraft/world/level/levelgen/feature/configurations/RandomBooleanFeatureConfiguration/lambda$static$0 (Lnet/minecraft/world/level/levelgen/feature/configurations/RandomBooleanFeatureConfiguration;)Lnet/minecraft/core/Holder; +MD: net/minecraft/world/level/levelgen/feature/configurations/RandomBooleanFeatureConfiguration/m_67876_ (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/world/level/levelgen/feature/configurations/RandomBooleanFeatureConfiguration/lambda$static$2 (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/world/level/levelgen/feature/configurations/RandomBooleanFeatureConfiguration/m_7817_ ()Ljava/util/stream/Stream; net/minecraft/world/level/levelgen/feature/configurations/RandomBooleanFeatureConfiguration/getFeatures ()Ljava/util/stream/Stream; +MD: net/minecraft/world/level/levelgen/feature/configurations/RandomFeatureConfiguration/ ()V net/minecraft/world/level/levelgen/feature/configurations/RandomFeatureConfiguration/ ()V +MD: net/minecraft/world/level/levelgen/feature/configurations/RandomFeatureConfiguration/ (Ljava/util/List;Lnet/minecraft/core/Holder;)V net/minecraft/world/level/levelgen/feature/configurations/RandomFeatureConfiguration/ (Ljava/util/List;Lnet/minecraft/core/Holder;)V +MD: net/minecraft/world/level/levelgen/feature/configurations/RandomFeatureConfiguration/m_161052_ (Lnet/minecraft/world/level/levelgen/feature/configurations/RandomFeatureConfiguration;)Ljava/util/List; net/minecraft/world/level/levelgen/feature/configurations/RandomFeatureConfiguration/lambda$static$0 (Lnet/minecraft/world/level/levelgen/feature/configurations/RandomFeatureConfiguration;)Ljava/util/List; +MD: net/minecraft/world/level/levelgen/feature/configurations/RandomFeatureConfiguration/m_204813_ (Lnet/minecraft/world/level/levelgen/feature/WeightedPlacedFeature;)Ljava/util/stream/Stream; net/minecraft/world/level/levelgen/feature/configurations/RandomFeatureConfiguration/lambda$getFeatures$3 (Lnet/minecraft/world/level/levelgen/feature/WeightedPlacedFeature;)Ljava/util/stream/Stream; +MD: net/minecraft/world/level/levelgen/feature/configurations/RandomFeatureConfiguration/m_204815_ (Lnet/minecraft/world/level/levelgen/feature/configurations/RandomFeatureConfiguration;)Lnet/minecraft/core/Holder; net/minecraft/world/level/levelgen/feature/configurations/RandomFeatureConfiguration/lambda$static$1 (Lnet/minecraft/world/level/levelgen/feature/configurations/RandomFeatureConfiguration;)Lnet/minecraft/core/Holder; +MD: net/minecraft/world/level/levelgen/feature/configurations/RandomFeatureConfiguration/m_67897_ (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/world/level/levelgen/feature/configurations/RandomFeatureConfiguration/lambda$static$2 (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/world/level/levelgen/feature/configurations/RandomFeatureConfiguration/m_7817_ ()Ljava/util/stream/Stream; net/minecraft/world/level/levelgen/feature/configurations/RandomFeatureConfiguration/getFeatures ()Ljava/util/stream/Stream; +MD: net/minecraft/world/level/levelgen/feature/configurations/RandomPatchConfiguration/ ()V net/minecraft/world/level/levelgen/feature/configurations/RandomPatchConfiguration/ ()V +MD: net/minecraft/world/level/levelgen/feature/configurations/RandomPatchConfiguration/ (IIILnet/minecraft/core/Holder;)V net/minecraft/world/level/levelgen/feature/configurations/RandomPatchConfiguration/ (IIILnet/minecraft/core/Holder;)V +MD: net/minecraft/world/level/levelgen/feature/configurations/RandomPatchConfiguration/equals (Ljava/lang/Object;)Z net/minecraft/world/level/levelgen/feature/configurations/RandomPatchConfiguration/equals (Ljava/lang/Object;)Z +MD: net/minecraft/world/level/levelgen/feature/configurations/RandomPatchConfiguration/f_191302_ ()I net/minecraft/world/level/levelgen/feature/configurations/RandomPatchConfiguration/xzSpread ()I +MD: net/minecraft/world/level/levelgen/feature/configurations/RandomPatchConfiguration/f_191303_ ()I net/minecraft/world/level/levelgen/feature/configurations/RandomPatchConfiguration/ySpread ()I +MD: net/minecraft/world/level/levelgen/feature/configurations/RandomPatchConfiguration/f_191304_ ()Lnet/minecraft/core/Holder; net/minecraft/world/level/levelgen/feature/configurations/RandomPatchConfiguration/feature ()Lnet/minecraft/core/Holder; +MD: net/minecraft/world/level/levelgen/feature/configurations/RandomPatchConfiguration/f_67907_ ()I net/minecraft/world/level/levelgen/feature/configurations/RandomPatchConfiguration/tries ()I +MD: net/minecraft/world/level/levelgen/feature/configurations/RandomPatchConfiguration/hashCode ()I net/minecraft/world/level/levelgen/feature/configurations/RandomPatchConfiguration/hashCode ()I +MD: net/minecraft/world/level/levelgen/feature/configurations/RandomPatchConfiguration/m_191311_ (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/world/level/levelgen/feature/configurations/RandomPatchConfiguration/lambda$static$0 (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/world/level/levelgen/feature/configurations/RandomPatchConfiguration/toString ()Ljava/lang/String; net/minecraft/world/level/levelgen/feature/configurations/RandomPatchConfiguration/toString ()Ljava/lang/String; +MD: net/minecraft/world/level/levelgen/feature/configurations/ReplaceBlockConfiguration/ ()V net/minecraft/world/level/levelgen/feature/configurations/ReplaceBlockConfiguration/ ()V +MD: net/minecraft/world/level/levelgen/feature/configurations/ReplaceBlockConfiguration/ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/state/BlockState;)V net/minecraft/world/level/levelgen/feature/configurations/ReplaceBlockConfiguration/ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/state/BlockState;)V +MD: net/minecraft/world/level/levelgen/feature/configurations/ReplaceBlockConfiguration/ (Ljava/util/List;)V net/minecraft/world/level/levelgen/feature/configurations/ReplaceBlockConfiguration/ (Ljava/util/List;)V +MD: net/minecraft/world/level/levelgen/feature/configurations/ReplaceBlockConfiguration/m_161086_ (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/world/level/levelgen/feature/configurations/ReplaceBlockConfiguration/lambda$static$1 (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/world/level/levelgen/feature/configurations/ReplaceBlockConfiguration/m_161088_ (Lnet/minecraft/world/level/levelgen/feature/configurations/ReplaceBlockConfiguration;)Ljava/util/List; net/minecraft/world/level/levelgen/feature/configurations/ReplaceBlockConfiguration/lambda$static$0 (Lnet/minecraft/world/level/levelgen/feature/configurations/ReplaceBlockConfiguration;)Ljava/util/List; +MD: net/minecraft/world/level/levelgen/feature/configurations/ReplaceSphereConfiguration/ ()V net/minecraft/world/level/levelgen/feature/configurations/ReplaceSphereConfiguration/ ()V +MD: net/minecraft/world/level/levelgen/feature/configurations/ReplaceSphereConfiguration/ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/util/valueproviders/IntProvider;)V net/minecraft/world/level/levelgen/feature/configurations/ReplaceSphereConfiguration/ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/util/valueproviders/IntProvider;)V +MD: net/minecraft/world/level/levelgen/feature/configurations/ReplaceSphereConfiguration/m_161094_ (Lnet/minecraft/world/level/levelgen/feature/configurations/ReplaceSphereConfiguration;)Lnet/minecraft/util/valueproviders/IntProvider; net/minecraft/world/level/levelgen/feature/configurations/ReplaceSphereConfiguration/lambda$static$2 (Lnet/minecraft/world/level/levelgen/feature/configurations/ReplaceSphereConfiguration;)Lnet/minecraft/util/valueproviders/IntProvider; +MD: net/minecraft/world/level/levelgen/feature/configurations/ReplaceSphereConfiguration/m_161096_ ()Lnet/minecraft/util/valueproviders/IntProvider; net/minecraft/world/level/levelgen/feature/configurations/ReplaceSphereConfiguration/radius ()Lnet/minecraft/util/valueproviders/IntProvider; +MD: net/minecraft/world/level/levelgen/feature/configurations/ReplaceSphereConfiguration/m_161097_ (Lnet/minecraft/world/level/levelgen/feature/configurations/ReplaceSphereConfiguration;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/levelgen/feature/configurations/ReplaceSphereConfiguration/lambda$static$1 (Lnet/minecraft/world/level/levelgen/feature/configurations/ReplaceSphereConfiguration;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/levelgen/feature/configurations/ReplaceSphereConfiguration/m_161099_ (Lnet/minecraft/world/level/levelgen/feature/configurations/ReplaceSphereConfiguration;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/levelgen/feature/configurations/ReplaceSphereConfiguration/lambda$static$0 (Lnet/minecraft/world/level/levelgen/feature/configurations/ReplaceSphereConfiguration;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/levelgen/feature/configurations/ReplaceSphereConfiguration/m_68047_ (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/world/level/levelgen/feature/configurations/ReplaceSphereConfiguration/lambda$static$3 (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/world/level/levelgen/feature/configurations/RootSystemConfiguration/ ()V net/minecraft/world/level/levelgen/feature/configurations/RootSystemConfiguration/ ()V +MD: net/minecraft/world/level/levelgen/feature/configurations/RootSystemConfiguration/ (Lnet/minecraft/core/Holder;IILnet/minecraft/tags/TagKey;Lnet/minecraft/world/level/levelgen/feature/stateproviders/BlockStateProvider;IIIILnet/minecraft/world/level/levelgen/feature/stateproviders/BlockStateProvider;IILnet/minecraft/world/level/levelgen/blockpredicates/BlockPredicate;)V net/minecraft/world/level/levelgen/feature/configurations/RootSystemConfiguration/ (Lnet/minecraft/core/Holder;IILnet/minecraft/tags/TagKey;Lnet/minecraft/world/level/levelgen/feature/stateproviders/BlockStateProvider;IIIILnet/minecraft/world/level/levelgen/feature/stateproviders/BlockStateProvider;IILnet/minecraft/world/level/levelgen/blockpredicates/BlockPredicate;)V +MD: net/minecraft/world/level/levelgen/feature/configurations/RootSystemConfiguration/m_161130_ (Lnet/minecraft/world/level/levelgen/feature/configurations/RootSystemConfiguration;)Ljava/lang/Integer; net/minecraft/world/level/levelgen/feature/configurations/RootSystemConfiguration/lambda$static$11 (Lnet/minecraft/world/level/levelgen/feature/configurations/RootSystemConfiguration;)Ljava/lang/Integer; +MD: net/minecraft/world/level/levelgen/feature/configurations/RootSystemConfiguration/m_161132_ (Lnet/minecraft/world/level/levelgen/feature/configurations/RootSystemConfiguration;)Ljava/lang/Integer; net/minecraft/world/level/levelgen/feature/configurations/RootSystemConfiguration/lambda$static$10 (Lnet/minecraft/world/level/levelgen/feature/configurations/RootSystemConfiguration;)Ljava/lang/Integer; +MD: net/minecraft/world/level/levelgen/feature/configurations/RootSystemConfiguration/m_161134_ (Lnet/minecraft/world/level/levelgen/feature/configurations/RootSystemConfiguration;)Lnet/minecraft/world/level/levelgen/feature/stateproviders/BlockStateProvider; net/minecraft/world/level/levelgen/feature/configurations/RootSystemConfiguration/lambda$static$9 (Lnet/minecraft/world/level/levelgen/feature/configurations/RootSystemConfiguration;)Lnet/minecraft/world/level/levelgen/feature/stateproviders/BlockStateProvider; +MD: net/minecraft/world/level/levelgen/feature/configurations/RootSystemConfiguration/m_161136_ (Lnet/minecraft/world/level/levelgen/feature/configurations/RootSystemConfiguration;)Ljava/lang/Integer; net/minecraft/world/level/levelgen/feature/configurations/RootSystemConfiguration/lambda$static$8 (Lnet/minecraft/world/level/levelgen/feature/configurations/RootSystemConfiguration;)Ljava/lang/Integer; +MD: net/minecraft/world/level/levelgen/feature/configurations/RootSystemConfiguration/m_161138_ (Lnet/minecraft/world/level/levelgen/feature/configurations/RootSystemConfiguration;)Ljava/lang/Integer; net/minecraft/world/level/levelgen/feature/configurations/RootSystemConfiguration/lambda$static$7 (Lnet/minecraft/world/level/levelgen/feature/configurations/RootSystemConfiguration;)Ljava/lang/Integer; +MD: net/minecraft/world/level/levelgen/feature/configurations/RootSystemConfiguration/m_161140_ (Lnet/minecraft/world/level/levelgen/feature/configurations/RootSystemConfiguration;)Ljava/lang/Integer; net/minecraft/world/level/levelgen/feature/configurations/RootSystemConfiguration/lambda$static$6 (Lnet/minecraft/world/level/levelgen/feature/configurations/RootSystemConfiguration;)Ljava/lang/Integer; +MD: net/minecraft/world/level/levelgen/feature/configurations/RootSystemConfiguration/m_161142_ (Lnet/minecraft/world/level/levelgen/feature/configurations/RootSystemConfiguration;)Ljava/lang/Integer; net/minecraft/world/level/levelgen/feature/configurations/RootSystemConfiguration/lambda$static$5 (Lnet/minecraft/world/level/levelgen/feature/configurations/RootSystemConfiguration;)Ljava/lang/Integer; +MD: net/minecraft/world/level/levelgen/feature/configurations/RootSystemConfiguration/m_161144_ (Lnet/minecraft/world/level/levelgen/feature/configurations/RootSystemConfiguration;)Lnet/minecraft/world/level/levelgen/feature/stateproviders/BlockStateProvider; net/minecraft/world/level/levelgen/feature/configurations/RootSystemConfiguration/lambda$static$4 (Lnet/minecraft/world/level/levelgen/feature/configurations/RootSystemConfiguration;)Lnet/minecraft/world/level/levelgen/feature/stateproviders/BlockStateProvider; +MD: net/minecraft/world/level/levelgen/feature/configurations/RootSystemConfiguration/m_161148_ (Lnet/minecraft/world/level/levelgen/feature/configurations/RootSystemConfiguration;)Ljava/lang/Integer; net/minecraft/world/level/levelgen/feature/configurations/RootSystemConfiguration/lambda$static$2 (Lnet/minecraft/world/level/levelgen/feature/configurations/RootSystemConfiguration;)Ljava/lang/Integer; +MD: net/minecraft/world/level/levelgen/feature/configurations/RootSystemConfiguration/m_161150_ (Lnet/minecraft/world/level/levelgen/feature/configurations/RootSystemConfiguration;)Ljava/lang/Integer; net/minecraft/world/level/levelgen/feature/configurations/RootSystemConfiguration/lambda$static$1 (Lnet/minecraft/world/level/levelgen/feature/configurations/RootSystemConfiguration;)Ljava/lang/Integer; +MD: net/minecraft/world/level/levelgen/feature/configurations/RootSystemConfiguration/m_198370_ (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/world/level/levelgen/feature/configurations/RootSystemConfiguration/lambda$static$13 (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/world/level/levelgen/feature/configurations/RootSystemConfiguration/m_198372_ (Lnet/minecraft/world/level/levelgen/feature/configurations/RootSystemConfiguration;)Lnet/minecraft/world/level/levelgen/blockpredicates/BlockPredicate; net/minecraft/world/level/levelgen/feature/configurations/RootSystemConfiguration/lambda$static$12 (Lnet/minecraft/world/level/levelgen/feature/configurations/RootSystemConfiguration;)Lnet/minecraft/world/level/levelgen/blockpredicates/BlockPredicate; +MD: net/minecraft/world/level/levelgen/feature/configurations/RootSystemConfiguration/m_204837_ (Lnet/minecraft/world/level/levelgen/feature/configurations/RootSystemConfiguration;)Lnet/minecraft/tags/TagKey; net/minecraft/world/level/levelgen/feature/configurations/RootSystemConfiguration/lambda$static$3 (Lnet/minecraft/world/level/levelgen/feature/configurations/RootSystemConfiguration;)Lnet/minecraft/tags/TagKey; +MD: net/minecraft/world/level/levelgen/feature/configurations/RootSystemConfiguration/m_204839_ (Lnet/minecraft/world/level/levelgen/feature/configurations/RootSystemConfiguration;)Lnet/minecraft/core/Holder; net/minecraft/world/level/levelgen/feature/configurations/RootSystemConfiguration/lambda$static$0 (Lnet/minecraft/world/level/levelgen/feature/configurations/RootSystemConfiguration;)Lnet/minecraft/core/Holder; +MD: net/minecraft/world/level/levelgen/feature/configurations/SculkPatchConfiguration/ ()V net/minecraft/world/level/levelgen/feature/configurations/SculkPatchConfiguration/ ()V +MD: net/minecraft/world/level/levelgen/feature/configurations/SculkPatchConfiguration/ (IIIIILnet/minecraft/util/valueproviders/IntProvider;F)V net/minecraft/world/level/levelgen/feature/configurations/SculkPatchConfiguration/ (IIIIILnet/minecraft/util/valueproviders/IntProvider;F)V +MD: net/minecraft/world/level/levelgen/feature/configurations/SculkPatchConfiguration/equals (Ljava/lang/Object;)Z net/minecraft/world/level/levelgen/feature/configurations/SculkPatchConfiguration/equals (Ljava/lang/Object;)Z +MD: net/minecraft/world/level/levelgen/feature/configurations/SculkPatchConfiguration/f_225426_ ()I net/minecraft/world/level/levelgen/feature/configurations/SculkPatchConfiguration/chargeCount ()I +MD: net/minecraft/world/level/levelgen/feature/configurations/SculkPatchConfiguration/f_225427_ ()I net/minecraft/world/level/levelgen/feature/configurations/SculkPatchConfiguration/amountPerCharge ()I +MD: net/minecraft/world/level/levelgen/feature/configurations/SculkPatchConfiguration/f_225428_ ()I net/minecraft/world/level/levelgen/feature/configurations/SculkPatchConfiguration/spreadAttempts ()I +MD: net/minecraft/world/level/levelgen/feature/configurations/SculkPatchConfiguration/f_225429_ ()I net/minecraft/world/level/levelgen/feature/configurations/SculkPatchConfiguration/growthRounds ()I +MD: net/minecraft/world/level/levelgen/feature/configurations/SculkPatchConfiguration/f_225430_ ()I net/minecraft/world/level/levelgen/feature/configurations/SculkPatchConfiguration/spreadRounds ()I +MD: net/minecraft/world/level/levelgen/feature/configurations/SculkPatchConfiguration/f_225431_ ()Lnet/minecraft/util/valueproviders/IntProvider; net/minecraft/world/level/levelgen/feature/configurations/SculkPatchConfiguration/extraRareGrowths ()Lnet/minecraft/util/valueproviders/IntProvider; +MD: net/minecraft/world/level/levelgen/feature/configurations/SculkPatchConfiguration/f_225432_ ()F net/minecraft/world/level/levelgen/feature/configurations/SculkPatchConfiguration/catalystChance ()F +MD: net/minecraft/world/level/levelgen/feature/configurations/SculkPatchConfiguration/hashCode ()I net/minecraft/world/level/levelgen/feature/configurations/SculkPatchConfiguration/hashCode ()I +MD: net/minecraft/world/level/levelgen/feature/configurations/SculkPatchConfiguration/m_225443_ (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/world/level/levelgen/feature/configurations/SculkPatchConfiguration/lambda$static$0 (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/world/level/levelgen/feature/configurations/SculkPatchConfiguration/toString ()Ljava/lang/String; net/minecraft/world/level/levelgen/feature/configurations/SculkPatchConfiguration/toString ()Ljava/lang/String; +MD: net/minecraft/world/level/levelgen/feature/configurations/SimpleBlockConfiguration/ ()V net/minecraft/world/level/levelgen/feature/configurations/SimpleBlockConfiguration/ ()V +MD: net/minecraft/world/level/levelgen/feature/configurations/SimpleBlockConfiguration/ (Lnet/minecraft/world/level/levelgen/feature/stateproviders/BlockStateProvider;)V net/minecraft/world/level/levelgen/feature/configurations/SimpleBlockConfiguration/ (Lnet/minecraft/world/level/levelgen/feature/stateproviders/BlockStateProvider;)V +MD: net/minecraft/world/level/levelgen/feature/configurations/SimpleBlockConfiguration/equals (Ljava/lang/Object;)Z net/minecraft/world/level/levelgen/feature/configurations/SimpleBlockConfiguration/equals (Ljava/lang/Object;)Z +MD: net/minecraft/world/level/levelgen/feature/configurations/SimpleBlockConfiguration/f_68069_ ()Lnet/minecraft/world/level/levelgen/feature/stateproviders/BlockStateProvider; net/minecraft/world/level/levelgen/feature/configurations/SimpleBlockConfiguration/toPlace ()Lnet/minecraft/world/level/levelgen/feature/stateproviders/BlockStateProvider; +MD: net/minecraft/world/level/levelgen/feature/configurations/SimpleBlockConfiguration/hashCode ()I net/minecraft/world/level/levelgen/feature/configurations/SimpleBlockConfiguration/hashCode ()I +MD: net/minecraft/world/level/levelgen/feature/configurations/SimpleBlockConfiguration/m_161167_ (Lnet/minecraft/world/level/levelgen/feature/configurations/SimpleBlockConfiguration;)Lnet/minecraft/world/level/levelgen/feature/stateproviders/BlockStateProvider; net/minecraft/world/level/levelgen/feature/configurations/SimpleBlockConfiguration/lambda$static$0 (Lnet/minecraft/world/level/levelgen/feature/configurations/SimpleBlockConfiguration;)Lnet/minecraft/world/level/levelgen/feature/stateproviders/BlockStateProvider; +MD: net/minecraft/world/level/levelgen/feature/configurations/SimpleBlockConfiguration/m_191330_ (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/world/level/levelgen/feature/configurations/SimpleBlockConfiguration/lambda$static$1 (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/world/level/levelgen/feature/configurations/SimpleBlockConfiguration/toString ()Ljava/lang/String; net/minecraft/world/level/levelgen/feature/configurations/SimpleBlockConfiguration/toString ()Ljava/lang/String; +MD: net/minecraft/world/level/levelgen/feature/configurations/SimpleRandomFeatureConfiguration/ ()V net/minecraft/world/level/levelgen/feature/configurations/SimpleRandomFeatureConfiguration/ ()V +MD: net/minecraft/world/level/levelgen/feature/configurations/SimpleRandomFeatureConfiguration/ (Lnet/minecraft/core/HolderSet;)V net/minecraft/world/level/levelgen/feature/configurations/SimpleRandomFeatureConfiguration/ (Lnet/minecraft/core/HolderSet;)V +MD: net/minecraft/world/level/levelgen/feature/configurations/SimpleRandomFeatureConfiguration/m_204843_ (Lnet/minecraft/world/level/levelgen/feature/configurations/SimpleRandomFeatureConfiguration;)Lnet/minecraft/core/HolderSet; net/minecraft/world/level/levelgen/feature/configurations/SimpleRandomFeatureConfiguration/lambda$static$0 (Lnet/minecraft/world/level/levelgen/feature/configurations/SimpleRandomFeatureConfiguration;)Lnet/minecraft/core/HolderSet; +MD: net/minecraft/world/level/levelgen/feature/configurations/SimpleRandomFeatureConfiguration/m_204845_ (Lnet/minecraft/core/Holder;)Ljava/util/stream/Stream; net/minecraft/world/level/levelgen/feature/configurations/SimpleRandomFeatureConfiguration/lambda$getFeatures$1 (Lnet/minecraft/core/Holder;)Ljava/util/stream/Stream; +MD: net/minecraft/world/level/levelgen/feature/configurations/SimpleRandomFeatureConfiguration/m_7817_ ()Ljava/util/stream/Stream; net/minecraft/world/level/levelgen/feature/configurations/SimpleRandomFeatureConfiguration/getFeatures ()Ljava/util/stream/Stream; +MD: net/minecraft/world/level/levelgen/feature/configurations/SpikeConfiguration/ ()V net/minecraft/world/level/levelgen/feature/configurations/SpikeConfiguration/ ()V +MD: net/minecraft/world/level/levelgen/feature/configurations/SpikeConfiguration/ (ZLjava/util/List;Lnet/minecraft/core/BlockPos;)V net/minecraft/world/level/levelgen/feature/configurations/SpikeConfiguration/ (ZLjava/util/List;Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/world/level/levelgen/feature/configurations/SpikeConfiguration/ (ZLjava/util/List;Ljava/util/Optional;)V net/minecraft/world/level/levelgen/feature/configurations/SpikeConfiguration/ (ZLjava/util/List;Ljava/util/Optional;)V +MD: net/minecraft/world/level/levelgen/feature/configurations/SpikeConfiguration/m_161190_ (Lnet/minecraft/world/level/levelgen/feature/configurations/SpikeConfiguration;)Ljava/util/Optional; net/minecraft/world/level/levelgen/feature/configurations/SpikeConfiguration/lambda$static$2 (Lnet/minecraft/world/level/levelgen/feature/configurations/SpikeConfiguration;)Ljava/util/Optional; +MD: net/minecraft/world/level/levelgen/feature/configurations/SpikeConfiguration/m_161192_ (Lnet/minecraft/world/level/levelgen/feature/configurations/SpikeConfiguration;)Ljava/util/List; net/minecraft/world/level/levelgen/feature/configurations/SpikeConfiguration/lambda$static$1 (Lnet/minecraft/world/level/levelgen/feature/configurations/SpikeConfiguration;)Ljava/util/List; +MD: net/minecraft/world/level/levelgen/feature/configurations/SpikeConfiguration/m_161194_ (Lnet/minecraft/world/level/levelgen/feature/configurations/SpikeConfiguration;)Ljava/lang/Boolean; net/minecraft/world/level/levelgen/feature/configurations/SpikeConfiguration/lambda$static$0 (Lnet/minecraft/world/level/levelgen/feature/configurations/SpikeConfiguration;)Ljava/lang/Boolean; +MD: net/minecraft/world/level/levelgen/feature/configurations/SpikeConfiguration/m_68114_ (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/world/level/levelgen/feature/configurations/SpikeConfiguration/lambda$static$3 (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/world/level/levelgen/feature/configurations/SpikeConfiguration/m_68116_ ()Z net/minecraft/world/level/levelgen/feature/configurations/SpikeConfiguration/isCrystalInvulnerable ()Z +MD: net/minecraft/world/level/levelgen/feature/configurations/SpikeConfiguration/m_68119_ ()Ljava/util/List; net/minecraft/world/level/levelgen/feature/configurations/SpikeConfiguration/getSpikes ()Ljava/util/List; +MD: net/minecraft/world/level/levelgen/feature/configurations/SpikeConfiguration/m_68122_ ()Lnet/minecraft/core/BlockPos; net/minecraft/world/level/levelgen/feature/configurations/SpikeConfiguration/getCrystalBeamTarget ()Lnet/minecraft/core/BlockPos; +MD: net/minecraft/world/level/levelgen/feature/configurations/SpringConfiguration/ ()V net/minecraft/world/level/levelgen/feature/configurations/SpringConfiguration/ ()V +MD: net/minecraft/world/level/levelgen/feature/configurations/SpringConfiguration/ (Lnet/minecraft/world/level/material/FluidState;ZIILnet/minecraft/core/HolderSet;)V net/minecraft/world/level/levelgen/feature/configurations/SpringConfiguration/ (Lnet/minecraft/world/level/material/FluidState;ZIILnet/minecraft/core/HolderSet;)V +MD: net/minecraft/world/level/levelgen/feature/configurations/SpringConfiguration/m_161198_ (Lnet/minecraft/world/level/levelgen/feature/configurations/SpringConfiguration;)Ljava/lang/Integer; net/minecraft/world/level/levelgen/feature/configurations/SpringConfiguration/lambda$static$3 (Lnet/minecraft/world/level/levelgen/feature/configurations/SpringConfiguration;)Ljava/lang/Integer; +MD: net/minecraft/world/level/levelgen/feature/configurations/SpringConfiguration/m_161200_ (Lnet/minecraft/world/level/levelgen/feature/configurations/SpringConfiguration;)Ljava/lang/Integer; net/minecraft/world/level/levelgen/feature/configurations/SpringConfiguration/lambda$static$2 (Lnet/minecraft/world/level/levelgen/feature/configurations/SpringConfiguration;)Ljava/lang/Integer; +MD: net/minecraft/world/level/levelgen/feature/configurations/SpringConfiguration/m_161202_ (Lnet/minecraft/world/level/levelgen/feature/configurations/SpringConfiguration;)Ljava/lang/Boolean; net/minecraft/world/level/levelgen/feature/configurations/SpringConfiguration/lambda$static$1 (Lnet/minecraft/world/level/levelgen/feature/configurations/SpringConfiguration;)Ljava/lang/Boolean; +MD: net/minecraft/world/level/levelgen/feature/configurations/SpringConfiguration/m_161204_ (Lnet/minecraft/world/level/levelgen/feature/configurations/SpringConfiguration;)Lnet/minecraft/world/level/material/FluidState; net/minecraft/world/level/levelgen/feature/configurations/SpringConfiguration/lambda$static$0 (Lnet/minecraft/world/level/levelgen/feature/configurations/SpringConfiguration;)Lnet/minecraft/world/level/material/FluidState; +MD: net/minecraft/world/level/levelgen/feature/configurations/SpringConfiguration/m_204853_ (Lnet/minecraft/world/level/levelgen/feature/configurations/SpringConfiguration;)Lnet/minecraft/core/HolderSet; net/minecraft/world/level/levelgen/feature/configurations/SpringConfiguration/lambda$static$4 (Lnet/minecraft/world/level/levelgen/feature/configurations/SpringConfiguration;)Lnet/minecraft/core/HolderSet; +MD: net/minecraft/world/level/levelgen/feature/configurations/SpringConfiguration/m_68138_ (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/world/level/levelgen/feature/configurations/SpringConfiguration/lambda$static$5 (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/world/level/levelgen/feature/configurations/TreeConfiguration/ ()V net/minecraft/world/level/levelgen/feature/configurations/TreeConfiguration/ ()V +MD: net/minecraft/world/level/levelgen/feature/configurations/TreeConfiguration/ (Lnet/minecraft/world/level/levelgen/feature/stateproviders/BlockStateProvider;Lnet/minecraft/world/level/levelgen/feature/trunkplacers/TrunkPlacer;Lnet/minecraft/world/level/levelgen/feature/stateproviders/BlockStateProvider;Lnet/minecraft/world/level/levelgen/feature/foliageplacers/FoliagePlacer;Ljava/util/Optional;Lnet/minecraft/world/level/levelgen/feature/stateproviders/BlockStateProvider;Lnet/minecraft/world/level/levelgen/feature/featuresize/FeatureSize;Ljava/util/List;ZZ)V net/minecraft/world/level/levelgen/feature/configurations/TreeConfiguration/ (Lnet/minecraft/world/level/levelgen/feature/stateproviders/BlockStateProvider;Lnet/minecraft/world/level/levelgen/feature/trunkplacers/TrunkPlacer;Lnet/minecraft/world/level/levelgen/feature/stateproviders/BlockStateProvider;Lnet/minecraft/world/level/levelgen/feature/foliageplacers/FoliagePlacer;Ljava/util/Optional;Lnet/minecraft/world/level/levelgen/feature/stateproviders/BlockStateProvider;Lnet/minecraft/world/level/levelgen/feature/featuresize/FeatureSize;Ljava/util/List;ZZ)V +MD: net/minecraft/world/level/levelgen/feature/configurations/TreeConfiguration/m_161231_ (Lnet/minecraft/world/level/levelgen/feature/configurations/TreeConfiguration;)Ljava/lang/Boolean; net/minecraft/world/level/levelgen/feature/configurations/TreeConfiguration/lambda$static$8 (Lnet/minecraft/world/level/levelgen/feature/configurations/TreeConfiguration;)Ljava/lang/Boolean; +MD: net/minecraft/world/level/levelgen/feature/configurations/TreeConfiguration/m_161243_ (Lnet/minecraft/world/level/levelgen/feature/configurations/TreeConfiguration;)Lnet/minecraft/world/level/levelgen/feature/stateproviders/BlockStateProvider; net/minecraft/world/level/levelgen/feature/configurations/TreeConfiguration/lambda$static$2 (Lnet/minecraft/world/level/levelgen/feature/configurations/TreeConfiguration;)Lnet/minecraft/world/level/levelgen/feature/stateproviders/BlockStateProvider; +MD: net/minecraft/world/level/levelgen/feature/configurations/TreeConfiguration/m_161245_ (Lnet/minecraft/world/level/levelgen/feature/configurations/TreeConfiguration;)Lnet/minecraft/world/level/levelgen/feature/trunkplacers/TrunkPlacer; net/minecraft/world/level/levelgen/feature/configurations/TreeConfiguration/lambda$static$1 (Lnet/minecraft/world/level/levelgen/feature/configurations/TreeConfiguration;)Lnet/minecraft/world/level/levelgen/feature/trunkplacers/TrunkPlacer; +MD: net/minecraft/world/level/levelgen/feature/configurations/TreeConfiguration/m_161247_ (Lnet/minecraft/world/level/levelgen/feature/configurations/TreeConfiguration;)Lnet/minecraft/world/level/levelgen/feature/stateproviders/BlockStateProvider; net/minecraft/world/level/levelgen/feature/configurations/TreeConfiguration/lambda$static$0 (Lnet/minecraft/world/level/levelgen/feature/configurations/TreeConfiguration;)Lnet/minecraft/world/level/levelgen/feature/stateproviders/BlockStateProvider; +MD: net/minecraft/world/level/levelgen/feature/configurations/TreeConfiguration/m_191356_ (Lnet/minecraft/world/level/levelgen/feature/configurations/TreeConfiguration;)Lnet/minecraft/world/level/levelgen/feature/foliageplacers/FoliagePlacer; net/minecraft/world/level/levelgen/feature/configurations/TreeConfiguration/lambda$static$3 (Lnet/minecraft/world/level/levelgen/feature/configurations/TreeConfiguration;)Lnet/minecraft/world/level/levelgen/feature/foliageplacers/FoliagePlacer; +MD: net/minecraft/world/level/levelgen/feature/configurations/TreeConfiguration/m_225467_ (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/world/level/levelgen/feature/configurations/TreeConfiguration/lambda$static$10 (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/world/level/levelgen/feature/configurations/TreeConfiguration/m_225469_ (Lnet/minecraft/world/level/levelgen/feature/configurations/TreeConfiguration;)Ljava/lang/Boolean; net/minecraft/world/level/levelgen/feature/configurations/TreeConfiguration/lambda$static$9 (Lnet/minecraft/world/level/levelgen/feature/configurations/TreeConfiguration;)Ljava/lang/Boolean; +MD: net/minecraft/world/level/levelgen/feature/configurations/TreeConfiguration/m_225471_ (Lnet/minecraft/world/level/levelgen/feature/configurations/TreeConfiguration;)Ljava/util/List; net/minecraft/world/level/levelgen/feature/configurations/TreeConfiguration/lambda$static$7 (Lnet/minecraft/world/level/levelgen/feature/configurations/TreeConfiguration;)Ljava/util/List; +MD: net/minecraft/world/level/levelgen/feature/configurations/TreeConfiguration/m_225473_ (Lnet/minecraft/world/level/levelgen/feature/configurations/TreeConfiguration;)Lnet/minecraft/world/level/levelgen/feature/featuresize/FeatureSize; net/minecraft/world/level/levelgen/feature/configurations/TreeConfiguration/lambda$static$6 (Lnet/minecraft/world/level/levelgen/feature/configurations/TreeConfiguration;)Lnet/minecraft/world/level/levelgen/feature/featuresize/FeatureSize; +MD: net/minecraft/world/level/levelgen/feature/configurations/TreeConfiguration/m_225475_ (Lnet/minecraft/world/level/levelgen/feature/configurations/TreeConfiguration;)Lnet/minecraft/world/level/levelgen/feature/stateproviders/BlockStateProvider; net/minecraft/world/level/levelgen/feature/configurations/TreeConfiguration/lambda$static$5 (Lnet/minecraft/world/level/levelgen/feature/configurations/TreeConfiguration;)Lnet/minecraft/world/level/levelgen/feature/stateproviders/BlockStateProvider; +MD: net/minecraft/world/level/levelgen/feature/configurations/TreeConfiguration/m_225477_ (Lnet/minecraft/world/level/levelgen/feature/configurations/TreeConfiguration;)Ljava/util/Optional; net/minecraft/world/level/levelgen/feature/configurations/TreeConfiguration/lambda$static$4 (Lnet/minecraft/world/level/levelgen/feature/configurations/TreeConfiguration;)Ljava/util/Optional; +MD: net/minecraft/world/level/levelgen/feature/configurations/TreeConfiguration$TreeConfigurationBuilder/ (Lnet/minecraft/world/level/levelgen/feature/stateproviders/BlockStateProvider;Lnet/minecraft/world/level/levelgen/feature/trunkplacers/TrunkPlacer;Lnet/minecraft/world/level/levelgen/feature/stateproviders/BlockStateProvider;Lnet/minecraft/world/level/levelgen/feature/foliageplacers/FoliagePlacer;Lnet/minecraft/world/level/levelgen/feature/featuresize/FeatureSize;)V net/minecraft/world/level/levelgen/feature/configurations/TreeConfiguration$TreeConfigurationBuilder/ (Lnet/minecraft/world/level/levelgen/feature/stateproviders/BlockStateProvider;Lnet/minecraft/world/level/levelgen/feature/trunkplacers/TrunkPlacer;Lnet/minecraft/world/level/levelgen/feature/stateproviders/BlockStateProvider;Lnet/minecraft/world/level/levelgen/feature/foliageplacers/FoliagePlacer;Lnet/minecraft/world/level/levelgen/feature/featuresize/FeatureSize;)V +MD: net/minecraft/world/level/levelgen/feature/configurations/TreeConfiguration$TreeConfigurationBuilder/ (Lnet/minecraft/world/level/levelgen/feature/stateproviders/BlockStateProvider;Lnet/minecraft/world/level/levelgen/feature/trunkplacers/TrunkPlacer;Lnet/minecraft/world/level/levelgen/feature/stateproviders/BlockStateProvider;Lnet/minecraft/world/level/levelgen/feature/foliageplacers/FoliagePlacer;Ljava/util/Optional;Lnet/minecraft/world/level/levelgen/feature/featuresize/FeatureSize;)V net/minecraft/world/level/levelgen/feature/configurations/TreeConfiguration$TreeConfigurationBuilder/ (Lnet/minecraft/world/level/levelgen/feature/stateproviders/BlockStateProvider;Lnet/minecraft/world/level/levelgen/feature/trunkplacers/TrunkPlacer;Lnet/minecraft/world/level/levelgen/feature/stateproviders/BlockStateProvider;Lnet/minecraft/world/level/levelgen/feature/foliageplacers/FoliagePlacer;Ljava/util/Optional;Lnet/minecraft/world/level/levelgen/feature/featuresize/FeatureSize;)V +MD: net/minecraft/world/level/levelgen/feature/configurations/TreeConfiguration$TreeConfigurationBuilder/m_161260_ (Lnet/minecraft/world/level/levelgen/feature/stateproviders/BlockStateProvider;)Lnet/minecraft/world/level/levelgen/feature/configurations/TreeConfiguration$TreeConfigurationBuilder; net/minecraft/world/level/levelgen/feature/configurations/TreeConfiguration$TreeConfigurationBuilder/dirt (Lnet/minecraft/world/level/levelgen/feature/stateproviders/BlockStateProvider;)Lnet/minecraft/world/level/levelgen/feature/configurations/TreeConfiguration$TreeConfigurationBuilder; +MD: net/minecraft/world/level/levelgen/feature/configurations/TreeConfiguration$TreeConfigurationBuilder/m_161262_ ()Lnet/minecraft/world/level/levelgen/feature/configurations/TreeConfiguration$TreeConfigurationBuilder; net/minecraft/world/level/levelgen/feature/configurations/TreeConfiguration$TreeConfigurationBuilder/forceDirt ()Lnet/minecraft/world/level/levelgen/feature/configurations/TreeConfiguration$TreeConfigurationBuilder; +MD: net/minecraft/world/level/levelgen/feature/configurations/TreeConfiguration$TreeConfigurationBuilder/m_68244_ ()Lnet/minecraft/world/level/levelgen/feature/configurations/TreeConfiguration$TreeConfigurationBuilder; net/minecraft/world/level/levelgen/feature/configurations/TreeConfiguration$TreeConfigurationBuilder/ignoreVines ()Lnet/minecraft/world/level/levelgen/feature/configurations/TreeConfiguration$TreeConfigurationBuilder; +MD: net/minecraft/world/level/levelgen/feature/configurations/TreeConfiguration$TreeConfigurationBuilder/m_68249_ (Ljava/util/List;)Lnet/minecraft/world/level/levelgen/feature/configurations/TreeConfiguration$TreeConfigurationBuilder; net/minecraft/world/level/levelgen/feature/configurations/TreeConfiguration$TreeConfigurationBuilder/decorators (Ljava/util/List;)Lnet/minecraft/world/level/levelgen/feature/configurations/TreeConfiguration$TreeConfigurationBuilder; +MD: net/minecraft/world/level/levelgen/feature/configurations/TreeConfiguration$TreeConfigurationBuilder/m_68251_ ()Lnet/minecraft/world/level/levelgen/feature/configurations/TreeConfiguration; net/minecraft/world/level/levelgen/feature/configurations/TreeConfiguration$TreeConfigurationBuilder/build ()Lnet/minecraft/world/level/levelgen/feature/configurations/TreeConfiguration; +MD: net/minecraft/world/level/levelgen/feature/configurations/TwistingVinesConfig/ ()V net/minecraft/world/level/levelgen/feature/configurations/TwistingVinesConfig/ ()V +MD: net/minecraft/world/level/levelgen/feature/configurations/TwistingVinesConfig/ (III)V net/minecraft/world/level/levelgen/feature/configurations/TwistingVinesConfig/ (III)V +MD: net/minecraft/world/level/levelgen/feature/configurations/TwistingVinesConfig/equals (Ljava/lang/Object;)Z net/minecraft/world/level/levelgen/feature/configurations/TwistingVinesConfig/equals (Ljava/lang/Object;)Z +MD: net/minecraft/world/level/levelgen/feature/configurations/TwistingVinesConfig/f_191365_ ()I net/minecraft/world/level/levelgen/feature/configurations/TwistingVinesConfig/spreadWidth ()I +MD: net/minecraft/world/level/levelgen/feature/configurations/TwistingVinesConfig/f_191366_ ()I net/minecraft/world/level/levelgen/feature/configurations/TwistingVinesConfig/spreadHeight ()I +MD: net/minecraft/world/level/levelgen/feature/configurations/TwistingVinesConfig/f_191367_ ()I net/minecraft/world/level/levelgen/feature/configurations/TwistingVinesConfig/maxHeight ()I +MD: net/minecraft/world/level/levelgen/feature/configurations/TwistingVinesConfig/hashCode ()I net/minecraft/world/level/levelgen/feature/configurations/TwistingVinesConfig/hashCode ()I +MD: net/minecraft/world/level/levelgen/feature/configurations/TwistingVinesConfig/m_191374_ (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/world/level/levelgen/feature/configurations/TwistingVinesConfig/lambda$static$0 (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/world/level/levelgen/feature/configurations/TwistingVinesConfig/toString ()Ljava/lang/String; net/minecraft/world/level/levelgen/feature/configurations/TwistingVinesConfig/toString ()Ljava/lang/String; +MD: net/minecraft/world/level/levelgen/feature/configurations/UnderwaterMagmaConfiguration/ ()V net/minecraft/world/level/levelgen/feature/configurations/UnderwaterMagmaConfiguration/ ()V +MD: net/minecraft/world/level/levelgen/feature/configurations/UnderwaterMagmaConfiguration/ (IIF)V net/minecraft/world/level/levelgen/feature/configurations/UnderwaterMagmaConfiguration/ (IIF)V +MD: net/minecraft/world/level/levelgen/feature/configurations/UnderwaterMagmaConfiguration/m_161272_ (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/world/level/levelgen/feature/configurations/UnderwaterMagmaConfiguration/lambda$static$3 (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/world/level/levelgen/feature/configurations/UnderwaterMagmaConfiguration/m_161274_ (Lnet/minecraft/world/level/levelgen/feature/configurations/UnderwaterMagmaConfiguration;)Ljava/lang/Float; net/minecraft/world/level/levelgen/feature/configurations/UnderwaterMagmaConfiguration/lambda$static$2 (Lnet/minecraft/world/level/levelgen/feature/configurations/UnderwaterMagmaConfiguration;)Ljava/lang/Float; +MD: net/minecraft/world/level/levelgen/feature/configurations/UnderwaterMagmaConfiguration/m_161276_ (Lnet/minecraft/world/level/levelgen/feature/configurations/UnderwaterMagmaConfiguration;)Ljava/lang/Integer; net/minecraft/world/level/levelgen/feature/configurations/UnderwaterMagmaConfiguration/lambda$static$1 (Lnet/minecraft/world/level/levelgen/feature/configurations/UnderwaterMagmaConfiguration;)Ljava/lang/Integer; +MD: net/minecraft/world/level/levelgen/feature/configurations/UnderwaterMagmaConfiguration/m_161278_ (Lnet/minecraft/world/level/levelgen/feature/configurations/UnderwaterMagmaConfiguration;)Ljava/lang/Integer; net/minecraft/world/level/levelgen/feature/configurations/UnderwaterMagmaConfiguration/lambda$static$0 (Lnet/minecraft/world/level/levelgen/feature/configurations/UnderwaterMagmaConfiguration;)Ljava/lang/Integer; +MD: net/minecraft/world/level/levelgen/feature/configurations/VegetationPatchConfiguration/ ()V net/minecraft/world/level/levelgen/feature/configurations/VegetationPatchConfiguration/ ()V +MD: net/minecraft/world/level/levelgen/feature/configurations/VegetationPatchConfiguration/ (Lnet/minecraft/tags/TagKey;Lnet/minecraft/world/level/levelgen/feature/stateproviders/BlockStateProvider;Lnet/minecraft/core/Holder;Lnet/minecraft/world/level/levelgen/placement/CaveSurface;Lnet/minecraft/util/valueproviders/IntProvider;FIFLnet/minecraft/util/valueproviders/IntProvider;F)V net/minecraft/world/level/levelgen/feature/configurations/VegetationPatchConfiguration/ (Lnet/minecraft/tags/TagKey;Lnet/minecraft/world/level/levelgen/feature/stateproviders/BlockStateProvider;Lnet/minecraft/core/Holder;Lnet/minecraft/world/level/levelgen/placement/CaveSurface;Lnet/minecraft/util/valueproviders/IntProvider;FIFLnet/minecraft/util/valueproviders/IntProvider;F)V +MD: net/minecraft/world/level/levelgen/feature/configurations/VegetationPatchConfiguration/m_161303_ (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/world/level/levelgen/feature/configurations/VegetationPatchConfiguration/lambda$static$10 (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/world/level/levelgen/feature/configurations/VegetationPatchConfiguration/m_161305_ (Lnet/minecraft/world/level/levelgen/feature/configurations/VegetationPatchConfiguration;)Ljava/lang/Float; net/minecraft/world/level/levelgen/feature/configurations/VegetationPatchConfiguration/lambda$static$9 (Lnet/minecraft/world/level/levelgen/feature/configurations/VegetationPatchConfiguration;)Ljava/lang/Float; +MD: net/minecraft/world/level/levelgen/feature/configurations/VegetationPatchConfiguration/m_161307_ (Lnet/minecraft/world/level/levelgen/feature/configurations/VegetationPatchConfiguration;)Lnet/minecraft/util/valueproviders/IntProvider; net/minecraft/world/level/levelgen/feature/configurations/VegetationPatchConfiguration/lambda$static$8 (Lnet/minecraft/world/level/levelgen/feature/configurations/VegetationPatchConfiguration;)Lnet/minecraft/util/valueproviders/IntProvider; +MD: net/minecraft/world/level/levelgen/feature/configurations/VegetationPatchConfiguration/m_161309_ (Lnet/minecraft/world/level/levelgen/feature/configurations/VegetationPatchConfiguration;)Ljava/lang/Float; net/minecraft/world/level/levelgen/feature/configurations/VegetationPatchConfiguration/lambda$static$7 (Lnet/minecraft/world/level/levelgen/feature/configurations/VegetationPatchConfiguration;)Ljava/lang/Float; +MD: net/minecraft/world/level/levelgen/feature/configurations/VegetationPatchConfiguration/m_161311_ (Lnet/minecraft/world/level/levelgen/feature/configurations/VegetationPatchConfiguration;)Ljava/lang/Integer; net/minecraft/world/level/levelgen/feature/configurations/VegetationPatchConfiguration/lambda$static$6 (Lnet/minecraft/world/level/levelgen/feature/configurations/VegetationPatchConfiguration;)Ljava/lang/Integer; +MD: net/minecraft/world/level/levelgen/feature/configurations/VegetationPatchConfiguration/m_161313_ (Lnet/minecraft/world/level/levelgen/feature/configurations/VegetationPatchConfiguration;)Ljava/lang/Float; net/minecraft/world/level/levelgen/feature/configurations/VegetationPatchConfiguration/lambda$static$5 (Lnet/minecraft/world/level/levelgen/feature/configurations/VegetationPatchConfiguration;)Ljava/lang/Float; +MD: net/minecraft/world/level/levelgen/feature/configurations/VegetationPatchConfiguration/m_161315_ (Lnet/minecraft/world/level/levelgen/feature/configurations/VegetationPatchConfiguration;)Lnet/minecraft/util/valueproviders/IntProvider; net/minecraft/world/level/levelgen/feature/configurations/VegetationPatchConfiguration/lambda$static$4 (Lnet/minecraft/world/level/levelgen/feature/configurations/VegetationPatchConfiguration;)Lnet/minecraft/util/valueproviders/IntProvider; +MD: net/minecraft/world/level/levelgen/feature/configurations/VegetationPatchConfiguration/m_161317_ (Lnet/minecraft/world/level/levelgen/feature/configurations/VegetationPatchConfiguration;)Lnet/minecraft/world/level/levelgen/placement/CaveSurface; net/minecraft/world/level/levelgen/feature/configurations/VegetationPatchConfiguration/lambda$static$3 (Lnet/minecraft/world/level/levelgen/feature/configurations/VegetationPatchConfiguration;)Lnet/minecraft/world/level/levelgen/placement/CaveSurface; +MD: net/minecraft/world/level/levelgen/feature/configurations/VegetationPatchConfiguration/m_161321_ (Lnet/minecraft/world/level/levelgen/feature/configurations/VegetationPatchConfiguration;)Lnet/minecraft/world/level/levelgen/feature/stateproviders/BlockStateProvider; net/minecraft/world/level/levelgen/feature/configurations/VegetationPatchConfiguration/lambda$static$1 (Lnet/minecraft/world/level/levelgen/feature/configurations/VegetationPatchConfiguration;)Lnet/minecraft/world/level/levelgen/feature/stateproviders/BlockStateProvider; +MD: net/minecraft/world/level/levelgen/feature/configurations/VegetationPatchConfiguration/m_204866_ (Lnet/minecraft/world/level/levelgen/feature/configurations/VegetationPatchConfiguration;)Lnet/minecraft/core/Holder; net/minecraft/world/level/levelgen/feature/configurations/VegetationPatchConfiguration/lambda$static$2 (Lnet/minecraft/world/level/levelgen/feature/configurations/VegetationPatchConfiguration;)Lnet/minecraft/core/Holder; +MD: net/minecraft/world/level/levelgen/feature/configurations/VegetationPatchConfiguration/m_204868_ (Lnet/minecraft/world/level/levelgen/feature/configurations/VegetationPatchConfiguration;)Lnet/minecraft/tags/TagKey; net/minecraft/world/level/levelgen/feature/configurations/VegetationPatchConfiguration/lambda$static$0 (Lnet/minecraft/world/level/levelgen/feature/configurations/VegetationPatchConfiguration;)Lnet/minecraft/tags/TagKey; +MD: net/minecraft/world/level/levelgen/feature/featuresize/FeatureSize/ ()V net/minecraft/world/level/levelgen/feature/featuresize/FeatureSize/ ()V +MD: net/minecraft/world/level/levelgen/feature/featuresize/FeatureSize/ (Ljava/util/OptionalInt;)V net/minecraft/world/level/levelgen/feature/featuresize/FeatureSize/ (Ljava/util/OptionalInt;)V +MD: net/minecraft/world/level/levelgen/feature/featuresize/FeatureSize/m_6133_ (II)I net/minecraft/world/level/levelgen/feature/featuresize/FeatureSize/getSizeAtHeight (II)I +MD: net/minecraft/world/level/levelgen/feature/featuresize/FeatureSize/m_68286_ ()Lcom/mojang/serialization/codecs/RecordCodecBuilder; net/minecraft/world/level/levelgen/feature/featuresize/FeatureSize/minClippedHeightCodec ()Lcom/mojang/serialization/codecs/RecordCodecBuilder; +MD: net/minecraft/world/level/levelgen/feature/featuresize/FeatureSize/m_68289_ (Lnet/minecraft/world/level/levelgen/feature/featuresize/FeatureSize;)Ljava/util/OptionalInt; net/minecraft/world/level/levelgen/feature/featuresize/FeatureSize/lambda$minClippedHeightCodec$2 (Lnet/minecraft/world/level/levelgen/feature/featuresize/FeatureSize;)Ljava/util/OptionalInt; +MD: net/minecraft/world/level/levelgen/feature/featuresize/FeatureSize/m_68291_ (Ljava/util/Optional;)Ljava/util/OptionalInt; net/minecraft/world/level/levelgen/feature/featuresize/FeatureSize/lambda$minClippedHeightCodec$0 (Ljava/util/Optional;)Ljava/util/OptionalInt; +MD: net/minecraft/world/level/levelgen/feature/featuresize/FeatureSize/m_68293_ (Ljava/util/OptionalInt;)Ljava/util/Optional; net/minecraft/world/level/levelgen/feature/featuresize/FeatureSize/lambda$minClippedHeightCodec$1 (Ljava/util/OptionalInt;)Ljava/util/Optional; +MD: net/minecraft/world/level/levelgen/feature/featuresize/FeatureSize/m_68295_ ()Ljava/util/OptionalInt; net/minecraft/world/level/levelgen/feature/featuresize/FeatureSize/minClippedHeight ()Ljava/util/OptionalInt; +MD: net/minecraft/world/level/levelgen/feature/featuresize/FeatureSize/m_7612_ ()Lnet/minecraft/world/level/levelgen/feature/featuresize/FeatureSizeType; net/minecraft/world/level/levelgen/feature/featuresize/FeatureSize/type ()Lnet/minecraft/world/level/levelgen/feature/featuresize/FeatureSizeType; +MD: net/minecraft/world/level/levelgen/feature/featuresize/FeatureSizeType/ ()V net/minecraft/world/level/levelgen/feature/featuresize/FeatureSizeType/ ()V +MD: net/minecraft/world/level/levelgen/feature/featuresize/FeatureSizeType/ (Lcom/mojang/serialization/Codec;)V net/minecraft/world/level/levelgen/feature/featuresize/FeatureSizeType/ (Lcom/mojang/serialization/Codec;)V +MD: net/minecraft/world/level/levelgen/feature/featuresize/FeatureSizeType/m_68302_ ()Lcom/mojang/serialization/Codec; net/minecraft/world/level/levelgen/feature/featuresize/FeatureSizeType/codec ()Lcom/mojang/serialization/Codec; +MD: net/minecraft/world/level/levelgen/feature/featuresize/FeatureSizeType/m_68303_ (Ljava/lang/String;Lcom/mojang/serialization/Codec;)Lnet/minecraft/world/level/levelgen/feature/featuresize/FeatureSizeType; net/minecraft/world/level/levelgen/feature/featuresize/FeatureSizeType/register (Ljava/lang/String;Lcom/mojang/serialization/Codec;)Lnet/minecraft/world/level/levelgen/feature/featuresize/FeatureSizeType; +MD: net/minecraft/world/level/levelgen/feature/featuresize/ThreeLayersFeatureSize/ ()V net/minecraft/world/level/levelgen/feature/featuresize/ThreeLayersFeatureSize/ ()V +MD: net/minecraft/world/level/levelgen/feature/featuresize/ThreeLayersFeatureSize/ (IIIIILjava/util/OptionalInt;)V net/minecraft/world/level/levelgen/feature/featuresize/ThreeLayersFeatureSize/ (IIIIILjava/util/OptionalInt;)V +MD: net/minecraft/world/level/levelgen/feature/featuresize/ThreeLayersFeatureSize/m_161326_ (Lnet/minecraft/world/level/levelgen/feature/featuresize/ThreeLayersFeatureSize;)Ljava/lang/Integer; net/minecraft/world/level/levelgen/feature/featuresize/ThreeLayersFeatureSize/lambda$static$4 (Lnet/minecraft/world/level/levelgen/feature/featuresize/ThreeLayersFeatureSize;)Ljava/lang/Integer; +MD: net/minecraft/world/level/levelgen/feature/featuresize/ThreeLayersFeatureSize/m_161328_ (Lnet/minecraft/world/level/levelgen/feature/featuresize/ThreeLayersFeatureSize;)Ljava/lang/Integer; net/minecraft/world/level/levelgen/feature/featuresize/ThreeLayersFeatureSize/lambda$static$3 (Lnet/minecraft/world/level/levelgen/feature/featuresize/ThreeLayersFeatureSize;)Ljava/lang/Integer; +MD: net/minecraft/world/level/levelgen/feature/featuresize/ThreeLayersFeatureSize/m_161330_ (Lnet/minecraft/world/level/levelgen/feature/featuresize/ThreeLayersFeatureSize;)Ljava/lang/Integer; net/minecraft/world/level/levelgen/feature/featuresize/ThreeLayersFeatureSize/lambda$static$2 (Lnet/minecraft/world/level/levelgen/feature/featuresize/ThreeLayersFeatureSize;)Ljava/lang/Integer; +MD: net/minecraft/world/level/levelgen/feature/featuresize/ThreeLayersFeatureSize/m_161332_ (Lnet/minecraft/world/level/levelgen/feature/featuresize/ThreeLayersFeatureSize;)Ljava/lang/Integer; net/minecraft/world/level/levelgen/feature/featuresize/ThreeLayersFeatureSize/lambda$static$1 (Lnet/minecraft/world/level/levelgen/feature/featuresize/ThreeLayersFeatureSize;)Ljava/lang/Integer; +MD: net/minecraft/world/level/levelgen/feature/featuresize/ThreeLayersFeatureSize/m_161334_ (Lnet/minecraft/world/level/levelgen/feature/featuresize/ThreeLayersFeatureSize;)Ljava/lang/Integer; net/minecraft/world/level/levelgen/feature/featuresize/ThreeLayersFeatureSize/lambda$static$0 (Lnet/minecraft/world/level/levelgen/feature/featuresize/ThreeLayersFeatureSize;)Ljava/lang/Integer; +MD: net/minecraft/world/level/levelgen/feature/featuresize/ThreeLayersFeatureSize/m_6133_ (II)I net/minecraft/world/level/levelgen/feature/featuresize/ThreeLayersFeatureSize/getSizeAtHeight (II)I +MD: net/minecraft/world/level/levelgen/feature/featuresize/ThreeLayersFeatureSize/m_68325_ (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/world/level/levelgen/feature/featuresize/ThreeLayersFeatureSize/lambda$static$5 (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/world/level/levelgen/feature/featuresize/ThreeLayersFeatureSize/m_7612_ ()Lnet/minecraft/world/level/levelgen/feature/featuresize/FeatureSizeType; net/minecraft/world/level/levelgen/feature/featuresize/ThreeLayersFeatureSize/type ()Lnet/minecraft/world/level/levelgen/feature/featuresize/FeatureSizeType; +MD: net/minecraft/world/level/levelgen/feature/featuresize/TwoLayersFeatureSize/ ()V net/minecraft/world/level/levelgen/feature/featuresize/TwoLayersFeatureSize/ ()V +MD: net/minecraft/world/level/levelgen/feature/featuresize/TwoLayersFeatureSize/ (III)V net/minecraft/world/level/levelgen/feature/featuresize/TwoLayersFeatureSize/ (III)V +MD: net/minecraft/world/level/levelgen/feature/featuresize/TwoLayersFeatureSize/ (IIILjava/util/OptionalInt;)V net/minecraft/world/level/levelgen/feature/featuresize/TwoLayersFeatureSize/ (IIILjava/util/OptionalInt;)V +MD: net/minecraft/world/level/levelgen/feature/featuresize/TwoLayersFeatureSize/m_161336_ (Lnet/minecraft/world/level/levelgen/feature/featuresize/TwoLayersFeatureSize;)Ljava/lang/Integer; net/minecraft/world/level/levelgen/feature/featuresize/TwoLayersFeatureSize/lambda$static$2 (Lnet/minecraft/world/level/levelgen/feature/featuresize/TwoLayersFeatureSize;)Ljava/lang/Integer; +MD: net/minecraft/world/level/levelgen/feature/featuresize/TwoLayersFeatureSize/m_161338_ (Lnet/minecraft/world/level/levelgen/feature/featuresize/TwoLayersFeatureSize;)Ljava/lang/Integer; net/minecraft/world/level/levelgen/feature/featuresize/TwoLayersFeatureSize/lambda$static$1 (Lnet/minecraft/world/level/levelgen/feature/featuresize/TwoLayersFeatureSize;)Ljava/lang/Integer; +MD: net/minecraft/world/level/levelgen/feature/featuresize/TwoLayersFeatureSize/m_161340_ (Lnet/minecraft/world/level/levelgen/feature/featuresize/TwoLayersFeatureSize;)Ljava/lang/Integer; net/minecraft/world/level/levelgen/feature/featuresize/TwoLayersFeatureSize/lambda$static$0 (Lnet/minecraft/world/level/levelgen/feature/featuresize/TwoLayersFeatureSize;)Ljava/lang/Integer; +MD: net/minecraft/world/level/levelgen/feature/featuresize/TwoLayersFeatureSize/m_6133_ (II)I net/minecraft/world/level/levelgen/feature/featuresize/TwoLayersFeatureSize/getSizeAtHeight (II)I +MD: net/minecraft/world/level/levelgen/feature/featuresize/TwoLayersFeatureSize/m_68355_ (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/world/level/levelgen/feature/featuresize/TwoLayersFeatureSize/lambda$static$3 (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/world/level/levelgen/feature/featuresize/TwoLayersFeatureSize/m_7612_ ()Lnet/minecraft/world/level/levelgen/feature/featuresize/FeatureSizeType; net/minecraft/world/level/levelgen/feature/featuresize/TwoLayersFeatureSize/type ()Lnet/minecraft/world/level/levelgen/feature/featuresize/FeatureSizeType; +MD: net/minecraft/world/level/levelgen/feature/foliageplacers/AcaciaFoliagePlacer/ ()V net/minecraft/world/level/levelgen/feature/foliageplacers/AcaciaFoliagePlacer/ ()V +MD: net/minecraft/world/level/levelgen/feature/foliageplacers/AcaciaFoliagePlacer/ (Lnet/minecraft/util/valueproviders/IntProvider;Lnet/minecraft/util/valueproviders/IntProvider;)V net/minecraft/world/level/levelgen/feature/foliageplacers/AcaciaFoliagePlacer/ (Lnet/minecraft/util/valueproviders/IntProvider;Lnet/minecraft/util/valueproviders/IntProvider;)V +MD: net/minecraft/world/level/levelgen/feature/foliageplacers/AcaciaFoliagePlacer/m_213633_ (Lnet/minecraft/world/level/LevelSimulatedReader;Lnet/minecraft/world/level/levelgen/feature/foliageplacers/FoliagePlacer$FoliageSetter;Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/levelgen/feature/configurations/TreeConfiguration;ILnet/minecraft/world/level/levelgen/feature/foliageplacers/FoliagePlacer$FoliageAttachment;III)V net/minecraft/world/level/levelgen/feature/foliageplacers/AcaciaFoliagePlacer/createFoliage (Lnet/minecraft/world/level/LevelSimulatedReader;Lnet/minecraft/world/level/levelgen/feature/foliageplacers/FoliagePlacer$FoliageSetter;Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/levelgen/feature/configurations/TreeConfiguration;ILnet/minecraft/world/level/levelgen/feature/foliageplacers/FoliagePlacer$FoliageAttachment;III)V +MD: net/minecraft/world/level/levelgen/feature/foliageplacers/AcaciaFoliagePlacer/m_214116_ (Lnet/minecraft/util/RandomSource;ILnet/minecraft/world/level/levelgen/feature/configurations/TreeConfiguration;)I net/minecraft/world/level/levelgen/feature/foliageplacers/AcaciaFoliagePlacer/foliageHeight (Lnet/minecraft/util/RandomSource;ILnet/minecraft/world/level/levelgen/feature/configurations/TreeConfiguration;)I +MD: net/minecraft/world/level/levelgen/feature/foliageplacers/AcaciaFoliagePlacer/m_214203_ (Lnet/minecraft/util/RandomSource;IIIIZ)Z net/minecraft/world/level/levelgen/feature/foliageplacers/AcaciaFoliagePlacer/shouldSkipLocation (Lnet/minecraft/util/RandomSource;IIIIZ)Z +MD: net/minecraft/world/level/levelgen/feature/foliageplacers/AcaciaFoliagePlacer/m_5897_ ()Lnet/minecraft/world/level/levelgen/feature/foliageplacers/FoliagePlacerType; net/minecraft/world/level/levelgen/feature/foliageplacers/AcaciaFoliagePlacer/type ()Lnet/minecraft/world/level/levelgen/feature/foliageplacers/FoliagePlacerType; +MD: net/minecraft/world/level/levelgen/feature/foliageplacers/AcaciaFoliagePlacer/m_68379_ (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/world/level/levelgen/feature/foliageplacers/AcaciaFoliagePlacer/lambda$static$0 (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/world/level/levelgen/feature/foliageplacers/BlobFoliagePlacer/ ()V net/minecraft/world/level/levelgen/feature/foliageplacers/BlobFoliagePlacer/ ()V +MD: net/minecraft/world/level/levelgen/feature/foliageplacers/BlobFoliagePlacer/ (Lnet/minecraft/util/valueproviders/IntProvider;Lnet/minecraft/util/valueproviders/IntProvider;I)V net/minecraft/world/level/levelgen/feature/foliageplacers/BlobFoliagePlacer/ (Lnet/minecraft/util/valueproviders/IntProvider;Lnet/minecraft/util/valueproviders/IntProvider;I)V +MD: net/minecraft/world/level/levelgen/feature/foliageplacers/BlobFoliagePlacer/m_213633_ (Lnet/minecraft/world/level/LevelSimulatedReader;Lnet/minecraft/world/level/levelgen/feature/foliageplacers/FoliagePlacer$FoliageSetter;Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/levelgen/feature/configurations/TreeConfiguration;ILnet/minecraft/world/level/levelgen/feature/foliageplacers/FoliagePlacer$FoliageAttachment;III)V net/minecraft/world/level/levelgen/feature/foliageplacers/BlobFoliagePlacer/createFoliage (Lnet/minecraft/world/level/LevelSimulatedReader;Lnet/minecraft/world/level/levelgen/feature/foliageplacers/FoliagePlacer$FoliageSetter;Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/levelgen/feature/configurations/TreeConfiguration;ILnet/minecraft/world/level/levelgen/feature/foliageplacers/FoliagePlacer$FoliageAttachment;III)V +MD: net/minecraft/world/level/levelgen/feature/foliageplacers/BlobFoliagePlacer/m_214116_ (Lnet/minecraft/util/RandomSource;ILnet/minecraft/world/level/levelgen/feature/configurations/TreeConfiguration;)I net/minecraft/world/level/levelgen/feature/foliageplacers/BlobFoliagePlacer/foliageHeight (Lnet/minecraft/util/RandomSource;ILnet/minecraft/world/level/levelgen/feature/configurations/TreeConfiguration;)I +MD: net/minecraft/world/level/levelgen/feature/foliageplacers/BlobFoliagePlacer/m_214203_ (Lnet/minecraft/util/RandomSource;IIIIZ)Z net/minecraft/world/level/levelgen/feature/foliageplacers/BlobFoliagePlacer/shouldSkipLocation (Lnet/minecraft/util/RandomSource;IIIIZ)Z +MD: net/minecraft/world/level/levelgen/feature/foliageplacers/BlobFoliagePlacer/m_5897_ ()Lnet/minecraft/world/level/levelgen/feature/foliageplacers/FoliagePlacerType; net/minecraft/world/level/levelgen/feature/foliageplacers/BlobFoliagePlacer/type ()Lnet/minecraft/world/level/levelgen/feature/foliageplacers/FoliagePlacerType; +MD: net/minecraft/world/level/levelgen/feature/foliageplacers/BlobFoliagePlacer/m_68411_ (Lnet/minecraft/world/level/levelgen/feature/foliageplacers/BlobFoliagePlacer;)Ljava/lang/Integer; net/minecraft/world/level/levelgen/feature/foliageplacers/BlobFoliagePlacer/lambda$blobParts$1 (Lnet/minecraft/world/level/levelgen/feature/foliageplacers/BlobFoliagePlacer;)Ljava/lang/Integer; +MD: net/minecraft/world/level/levelgen/feature/foliageplacers/BlobFoliagePlacer/m_68413_ (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/Products$P3; net/minecraft/world/level/levelgen/feature/foliageplacers/BlobFoliagePlacer/blobParts (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/Products$P3; +MD: net/minecraft/world/level/levelgen/feature/foliageplacers/BlobFoliagePlacer/m_68426_ (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/world/level/levelgen/feature/foliageplacers/BlobFoliagePlacer/lambda$static$0 (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/world/level/levelgen/feature/foliageplacers/BushFoliagePlacer/ ()V net/minecraft/world/level/levelgen/feature/foliageplacers/BushFoliagePlacer/ ()V +MD: net/minecraft/world/level/levelgen/feature/foliageplacers/BushFoliagePlacer/ (Lnet/minecraft/util/valueproviders/IntProvider;Lnet/minecraft/util/valueproviders/IntProvider;I)V net/minecraft/world/level/levelgen/feature/foliageplacers/BushFoliagePlacer/ (Lnet/minecraft/util/valueproviders/IntProvider;Lnet/minecraft/util/valueproviders/IntProvider;I)V +MD: net/minecraft/world/level/levelgen/feature/foliageplacers/BushFoliagePlacer/m_213633_ (Lnet/minecraft/world/level/LevelSimulatedReader;Lnet/minecraft/world/level/levelgen/feature/foliageplacers/FoliagePlacer$FoliageSetter;Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/levelgen/feature/configurations/TreeConfiguration;ILnet/minecraft/world/level/levelgen/feature/foliageplacers/FoliagePlacer$FoliageAttachment;III)V net/minecraft/world/level/levelgen/feature/foliageplacers/BushFoliagePlacer/createFoliage (Lnet/minecraft/world/level/LevelSimulatedReader;Lnet/minecraft/world/level/levelgen/feature/foliageplacers/FoliagePlacer$FoliageSetter;Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/levelgen/feature/configurations/TreeConfiguration;ILnet/minecraft/world/level/levelgen/feature/foliageplacers/FoliagePlacer$FoliageAttachment;III)V +MD: net/minecraft/world/level/levelgen/feature/foliageplacers/BushFoliagePlacer/m_214203_ (Lnet/minecraft/util/RandomSource;IIIIZ)Z net/minecraft/world/level/levelgen/feature/foliageplacers/BushFoliagePlacer/shouldSkipLocation (Lnet/minecraft/util/RandomSource;IIIIZ)Z +MD: net/minecraft/world/level/levelgen/feature/foliageplacers/BushFoliagePlacer/m_5897_ ()Lnet/minecraft/world/level/levelgen/feature/foliageplacers/FoliagePlacerType; net/minecraft/world/level/levelgen/feature/foliageplacers/BushFoliagePlacer/type ()Lnet/minecraft/world/level/levelgen/feature/foliageplacers/FoliagePlacerType; +MD: net/minecraft/world/level/levelgen/feature/foliageplacers/BushFoliagePlacer/m_68453_ (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/world/level/levelgen/feature/foliageplacers/BushFoliagePlacer/lambda$static$0 (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/world/level/levelgen/feature/foliageplacers/CherryFoliagePlacer/ ()V net/minecraft/world/level/levelgen/feature/foliageplacers/CherryFoliagePlacer/ ()V +MD: net/minecraft/world/level/levelgen/feature/foliageplacers/CherryFoliagePlacer/ (Lnet/minecraft/util/valueproviders/IntProvider;Lnet/minecraft/util/valueproviders/IntProvider;Lnet/minecraft/util/valueproviders/IntProvider;FFFF)V net/minecraft/world/level/levelgen/feature/foliageplacers/CherryFoliagePlacer/ (Lnet/minecraft/util/valueproviders/IntProvider;Lnet/minecraft/util/valueproviders/IntProvider;Lnet/minecraft/util/valueproviders/IntProvider;FFFF)V +MD: net/minecraft/world/level/levelgen/feature/foliageplacers/CherryFoliagePlacer/m_213633_ (Lnet/minecraft/world/level/LevelSimulatedReader;Lnet/minecraft/world/level/levelgen/feature/foliageplacers/FoliagePlacer$FoliageSetter;Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/levelgen/feature/configurations/TreeConfiguration;ILnet/minecraft/world/level/levelgen/feature/foliageplacers/FoliagePlacer$FoliageAttachment;III)V net/minecraft/world/level/levelgen/feature/foliageplacers/CherryFoliagePlacer/createFoliage (Lnet/minecraft/world/level/LevelSimulatedReader;Lnet/minecraft/world/level/levelgen/feature/foliageplacers/FoliagePlacer$FoliageSetter;Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/levelgen/feature/configurations/TreeConfiguration;ILnet/minecraft/world/level/levelgen/feature/foliageplacers/FoliagePlacer$FoliageAttachment;III)V +MD: net/minecraft/world/level/levelgen/feature/foliageplacers/CherryFoliagePlacer/m_214116_ (Lnet/minecraft/util/RandomSource;ILnet/minecraft/world/level/levelgen/feature/configurations/TreeConfiguration;)I net/minecraft/world/level/levelgen/feature/foliageplacers/CherryFoliagePlacer/foliageHeight (Lnet/minecraft/util/RandomSource;ILnet/minecraft/world/level/levelgen/feature/configurations/TreeConfiguration;)I +MD: net/minecraft/world/level/levelgen/feature/foliageplacers/CherryFoliagePlacer/m_214203_ (Lnet/minecraft/util/RandomSource;IIIIZ)Z net/minecraft/world/level/levelgen/feature/foliageplacers/CherryFoliagePlacer/shouldSkipLocation (Lnet/minecraft/util/RandomSource;IIIIZ)Z +MD: net/minecraft/world/level/levelgen/feature/foliageplacers/CherryFoliagePlacer/m_271778_ (Lnet/minecraft/world/level/levelgen/feature/foliageplacers/CherryFoliagePlacer;)Ljava/lang/Float; net/minecraft/world/level/levelgen/feature/foliageplacers/CherryFoliagePlacer/lambda$static$3 (Lnet/minecraft/world/level/levelgen/feature/foliageplacers/CherryFoliagePlacer;)Ljava/lang/Float; +MD: net/minecraft/world/level/levelgen/feature/foliageplacers/CherryFoliagePlacer/m_271820_ (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/world/level/levelgen/feature/foliageplacers/CherryFoliagePlacer/lambda$static$5 (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/world/level/levelgen/feature/foliageplacers/CherryFoliagePlacer/m_272111_ (Lnet/minecraft/world/level/levelgen/feature/foliageplacers/CherryFoliagePlacer;)Ljava/lang/Float; net/minecraft/world/level/levelgen/feature/foliageplacers/CherryFoliagePlacer/lambda$static$2 (Lnet/minecraft/world/level/levelgen/feature/foliageplacers/CherryFoliagePlacer;)Ljava/lang/Float; +MD: net/minecraft/world/level/levelgen/feature/foliageplacers/CherryFoliagePlacer/m_272122_ (Lnet/minecraft/world/level/levelgen/feature/foliageplacers/CherryFoliagePlacer;)Ljava/lang/Float; net/minecraft/world/level/levelgen/feature/foliageplacers/CherryFoliagePlacer/lambda$static$1 (Lnet/minecraft/world/level/levelgen/feature/foliageplacers/CherryFoliagePlacer;)Ljava/lang/Float; +MD: net/minecraft/world/level/levelgen/feature/foliageplacers/CherryFoliagePlacer/m_272124_ (Lnet/minecraft/world/level/levelgen/feature/foliageplacers/CherryFoliagePlacer;)Lnet/minecraft/util/valueproviders/IntProvider; net/minecraft/world/level/levelgen/feature/foliageplacers/CherryFoliagePlacer/lambda$static$0 (Lnet/minecraft/world/level/levelgen/feature/foliageplacers/CherryFoliagePlacer;)Lnet/minecraft/util/valueproviders/IntProvider; +MD: net/minecraft/world/level/levelgen/feature/foliageplacers/CherryFoliagePlacer/m_272211_ (Lnet/minecraft/world/level/levelgen/feature/foliageplacers/CherryFoliagePlacer;)Ljava/lang/Float; net/minecraft/world/level/levelgen/feature/foliageplacers/CherryFoliagePlacer/lambda$static$4 (Lnet/minecraft/world/level/levelgen/feature/foliageplacers/CherryFoliagePlacer;)Ljava/lang/Float; +MD: net/minecraft/world/level/levelgen/feature/foliageplacers/CherryFoliagePlacer/m_5897_ ()Lnet/minecraft/world/level/levelgen/feature/foliageplacers/FoliagePlacerType; net/minecraft/world/level/levelgen/feature/foliageplacers/CherryFoliagePlacer/type ()Lnet/minecraft/world/level/levelgen/feature/foliageplacers/FoliagePlacerType; +MD: net/minecraft/world/level/levelgen/feature/foliageplacers/DarkOakFoliagePlacer/ ()V net/minecraft/world/level/levelgen/feature/foliageplacers/DarkOakFoliagePlacer/ ()V +MD: net/minecraft/world/level/levelgen/feature/foliageplacers/DarkOakFoliagePlacer/ (Lnet/minecraft/util/valueproviders/IntProvider;Lnet/minecraft/util/valueproviders/IntProvider;)V net/minecraft/world/level/levelgen/feature/foliageplacers/DarkOakFoliagePlacer/ (Lnet/minecraft/util/valueproviders/IntProvider;Lnet/minecraft/util/valueproviders/IntProvider;)V +MD: net/minecraft/world/level/levelgen/feature/foliageplacers/DarkOakFoliagePlacer/m_213633_ (Lnet/minecraft/world/level/LevelSimulatedReader;Lnet/minecraft/world/level/levelgen/feature/foliageplacers/FoliagePlacer$FoliageSetter;Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/levelgen/feature/configurations/TreeConfiguration;ILnet/minecraft/world/level/levelgen/feature/foliageplacers/FoliagePlacer$FoliageAttachment;III)V net/minecraft/world/level/levelgen/feature/foliageplacers/DarkOakFoliagePlacer/createFoliage (Lnet/minecraft/world/level/LevelSimulatedReader;Lnet/minecraft/world/level/levelgen/feature/foliageplacers/FoliagePlacer$FoliageSetter;Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/levelgen/feature/configurations/TreeConfiguration;ILnet/minecraft/world/level/levelgen/feature/foliageplacers/FoliagePlacer$FoliageAttachment;III)V +MD: net/minecraft/world/level/levelgen/feature/foliageplacers/DarkOakFoliagePlacer/m_214116_ (Lnet/minecraft/util/RandomSource;ILnet/minecraft/world/level/levelgen/feature/configurations/TreeConfiguration;)I net/minecraft/world/level/levelgen/feature/foliageplacers/DarkOakFoliagePlacer/foliageHeight (Lnet/minecraft/util/RandomSource;ILnet/minecraft/world/level/levelgen/feature/configurations/TreeConfiguration;)I +MD: net/minecraft/world/level/levelgen/feature/foliageplacers/DarkOakFoliagePlacer/m_214202_ (Lnet/minecraft/util/RandomSource;IIIIZ)Z net/minecraft/world/level/levelgen/feature/foliageplacers/DarkOakFoliagePlacer/shouldSkipLocationSigned (Lnet/minecraft/util/RandomSource;IIIIZ)Z +MD: net/minecraft/world/level/levelgen/feature/foliageplacers/DarkOakFoliagePlacer/m_214203_ (Lnet/minecraft/util/RandomSource;IIIIZ)Z net/minecraft/world/level/levelgen/feature/foliageplacers/DarkOakFoliagePlacer/shouldSkipLocation (Lnet/minecraft/util/RandomSource;IIIIZ)Z +MD: net/minecraft/world/level/levelgen/feature/foliageplacers/DarkOakFoliagePlacer/m_5897_ ()Lnet/minecraft/world/level/levelgen/feature/foliageplacers/FoliagePlacerType; net/minecraft/world/level/levelgen/feature/foliageplacers/DarkOakFoliagePlacer/type ()Lnet/minecraft/world/level/levelgen/feature/foliageplacers/FoliagePlacerType; +MD: net/minecraft/world/level/levelgen/feature/foliageplacers/DarkOakFoliagePlacer/m_68472_ (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/world/level/levelgen/feature/foliageplacers/DarkOakFoliagePlacer/lambda$static$0 (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/world/level/levelgen/feature/foliageplacers/FancyFoliagePlacer/ ()V net/minecraft/world/level/levelgen/feature/foliageplacers/FancyFoliagePlacer/ ()V +MD: net/minecraft/world/level/levelgen/feature/foliageplacers/FancyFoliagePlacer/ (Lnet/minecraft/util/valueproviders/IntProvider;Lnet/minecraft/util/valueproviders/IntProvider;I)V net/minecraft/world/level/levelgen/feature/foliageplacers/FancyFoliagePlacer/ (Lnet/minecraft/util/valueproviders/IntProvider;Lnet/minecraft/util/valueproviders/IntProvider;I)V +MD: net/minecraft/world/level/levelgen/feature/foliageplacers/FancyFoliagePlacer/m_213633_ (Lnet/minecraft/world/level/LevelSimulatedReader;Lnet/minecraft/world/level/levelgen/feature/foliageplacers/FoliagePlacer$FoliageSetter;Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/levelgen/feature/configurations/TreeConfiguration;ILnet/minecraft/world/level/levelgen/feature/foliageplacers/FoliagePlacer$FoliageAttachment;III)V net/minecraft/world/level/levelgen/feature/foliageplacers/FancyFoliagePlacer/createFoliage (Lnet/minecraft/world/level/LevelSimulatedReader;Lnet/minecraft/world/level/levelgen/feature/foliageplacers/FoliagePlacer$FoliageSetter;Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/levelgen/feature/configurations/TreeConfiguration;ILnet/minecraft/world/level/levelgen/feature/foliageplacers/FoliagePlacer$FoliageAttachment;III)V +MD: net/minecraft/world/level/levelgen/feature/foliageplacers/FancyFoliagePlacer/m_214203_ (Lnet/minecraft/util/RandomSource;IIIIZ)Z net/minecraft/world/level/levelgen/feature/foliageplacers/FancyFoliagePlacer/shouldSkipLocation (Lnet/minecraft/util/RandomSource;IIIIZ)Z +MD: net/minecraft/world/level/levelgen/feature/foliageplacers/FancyFoliagePlacer/m_5897_ ()Lnet/minecraft/world/level/levelgen/feature/foliageplacers/FoliagePlacerType; net/minecraft/world/level/levelgen/feature/foliageplacers/FancyFoliagePlacer/type ()Lnet/minecraft/world/level/levelgen/feature/foliageplacers/FoliagePlacerType; +MD: net/minecraft/world/level/levelgen/feature/foliageplacers/FancyFoliagePlacer/m_68517_ (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/world/level/levelgen/feature/foliageplacers/FancyFoliagePlacer/lambda$static$0 (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/world/level/levelgen/feature/foliageplacers/FoliagePlacer/ ()V net/minecraft/world/level/levelgen/feature/foliageplacers/FoliagePlacer/ ()V +MD: net/minecraft/world/level/levelgen/feature/foliageplacers/FoliagePlacer/ (Lnet/minecraft/util/valueproviders/IntProvider;Lnet/minecraft/util/valueproviders/IntProvider;)V net/minecraft/world/level/levelgen/feature/foliageplacers/FoliagePlacer/ (Lnet/minecraft/util/valueproviders/IntProvider;Lnet/minecraft/util/valueproviders/IntProvider;)V +MD: net/minecraft/world/level/levelgen/feature/foliageplacers/FoliagePlacer/m_161446_ (Lnet/minecraft/world/level/levelgen/feature/foliageplacers/FoliagePlacer;)Lnet/minecraft/util/valueproviders/IntProvider; net/minecraft/world/level/levelgen/feature/foliageplacers/FoliagePlacer/lambda$foliagePlacerParts$1 (Lnet/minecraft/world/level/levelgen/feature/foliageplacers/FoliagePlacer;)Lnet/minecraft/util/valueproviders/IntProvider; +MD: net/minecraft/world/level/levelgen/feature/foliageplacers/FoliagePlacer/m_161448_ (Lnet/minecraft/world/level/levelgen/feature/foliageplacers/FoliagePlacer;)Lnet/minecraft/util/valueproviders/IntProvider; net/minecraft/world/level/levelgen/feature/foliageplacers/FoliagePlacer/lambda$foliagePlacerParts$0 (Lnet/minecraft/world/level/levelgen/feature/foliageplacers/FoliagePlacer;)Lnet/minecraft/util/valueproviders/IntProvider; +MD: net/minecraft/world/level/levelgen/feature/foliageplacers/FoliagePlacer/m_213633_ (Lnet/minecraft/world/level/LevelSimulatedReader;Lnet/minecraft/world/level/levelgen/feature/foliageplacers/FoliagePlacer$FoliageSetter;Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/levelgen/feature/configurations/TreeConfiguration;ILnet/minecraft/world/level/levelgen/feature/foliageplacers/FoliagePlacer$FoliageAttachment;III)V net/minecraft/world/level/levelgen/feature/foliageplacers/FoliagePlacer/createFoliage (Lnet/minecraft/world/level/LevelSimulatedReader;Lnet/minecraft/world/level/levelgen/feature/foliageplacers/FoliagePlacer$FoliageSetter;Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/levelgen/feature/configurations/TreeConfiguration;ILnet/minecraft/world/level/levelgen/feature/foliageplacers/FoliagePlacer$FoliageAttachment;III)V +MD: net/minecraft/world/level/levelgen/feature/foliageplacers/FoliagePlacer/m_214116_ (Lnet/minecraft/util/RandomSource;ILnet/minecraft/world/level/levelgen/feature/configurations/TreeConfiguration;)I net/minecraft/world/level/levelgen/feature/foliageplacers/FoliagePlacer/foliageHeight (Lnet/minecraft/util/RandomSource;ILnet/minecraft/world/level/levelgen/feature/configurations/TreeConfiguration;)I +MD: net/minecraft/world/level/levelgen/feature/foliageplacers/FoliagePlacer/m_214117_ (Lnet/minecraft/util/RandomSource;I)I net/minecraft/world/level/levelgen/feature/foliageplacers/FoliagePlacer/foliageRadius (Lnet/minecraft/util/RandomSource;I)I +MD: net/minecraft/world/level/levelgen/feature/foliageplacers/FoliagePlacer/m_214202_ (Lnet/minecraft/util/RandomSource;IIIIZ)Z net/minecraft/world/level/levelgen/feature/foliageplacers/FoliagePlacer/shouldSkipLocationSigned (Lnet/minecraft/util/RandomSource;IIIIZ)Z +MD: net/minecraft/world/level/levelgen/feature/foliageplacers/FoliagePlacer/m_214203_ (Lnet/minecraft/util/RandomSource;IIIIZ)Z net/minecraft/world/level/levelgen/feature/foliageplacers/FoliagePlacer/shouldSkipLocation (Lnet/minecraft/util/RandomSource;IIIIZ)Z +MD: net/minecraft/world/level/levelgen/feature/foliageplacers/FoliagePlacer/m_225591_ (Lnet/minecraft/util/RandomSource;)I net/minecraft/world/level/levelgen/feature/foliageplacers/FoliagePlacer/offset (Lnet/minecraft/util/RandomSource;)I +MD: net/minecraft/world/level/levelgen/feature/foliageplacers/FoliagePlacer/m_225628_ (Lnet/minecraft/world/level/LevelSimulatedReader;Lnet/minecraft/world/level/levelgen/feature/foliageplacers/FoliagePlacer$FoliageSetter;Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/levelgen/feature/configurations/TreeConfiguration;Lnet/minecraft/core/BlockPos;IIZ)V net/minecraft/world/level/levelgen/feature/foliageplacers/FoliagePlacer/placeLeavesRow (Lnet/minecraft/world/level/LevelSimulatedReader;Lnet/minecraft/world/level/levelgen/feature/foliageplacers/FoliagePlacer$FoliageSetter;Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/levelgen/feature/configurations/TreeConfiguration;Lnet/minecraft/core/BlockPos;IIZ)V +MD: net/minecraft/world/level/levelgen/feature/foliageplacers/FoliagePlacer/m_225637_ (Lnet/minecraft/world/level/material/FluidState;)Z net/minecraft/world/level/levelgen/feature/foliageplacers/FoliagePlacer/lambda$tryPlaceLeaf$2 (Lnet/minecraft/world/level/material/FluidState;)Z +MD: net/minecraft/world/level/levelgen/feature/foliageplacers/FoliagePlacer/m_271927_ (Lnet/minecraft/world/level/LevelSimulatedReader;Lnet/minecraft/world/level/levelgen/feature/foliageplacers/FoliagePlacer$FoliageSetter;Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/levelgen/feature/configurations/TreeConfiguration;ILnet/minecraft/world/level/levelgen/feature/foliageplacers/FoliagePlacer$FoliageAttachment;II)V net/minecraft/world/level/levelgen/feature/foliageplacers/FoliagePlacer/createFoliage (Lnet/minecraft/world/level/LevelSimulatedReader;Lnet/minecraft/world/level/levelgen/feature/foliageplacers/FoliagePlacer$FoliageSetter;Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/levelgen/feature/configurations/TreeConfiguration;ILnet/minecraft/world/level/levelgen/feature/foliageplacers/FoliagePlacer$FoliageAttachment;II)V +MD: net/minecraft/world/level/levelgen/feature/foliageplacers/FoliagePlacer/m_272160_ (Lnet/minecraft/world/level/LevelSimulatedReader;Lnet/minecraft/world/level/levelgen/feature/foliageplacers/FoliagePlacer$FoliageSetter;Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/levelgen/feature/configurations/TreeConfiguration;Lnet/minecraft/core/BlockPos;IIZFF)V net/minecraft/world/level/levelgen/feature/foliageplacers/FoliagePlacer/placeLeavesRowWithHangingLeavesBelow (Lnet/minecraft/world/level/LevelSimulatedReader;Lnet/minecraft/world/level/levelgen/feature/foliageplacers/FoliagePlacer$FoliageSetter;Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/levelgen/feature/configurations/TreeConfiguration;Lnet/minecraft/core/BlockPos;IIZFF)V +MD: net/minecraft/world/level/levelgen/feature/foliageplacers/FoliagePlacer/m_272253_ (Lnet/minecraft/world/level/LevelSimulatedReader;Lnet/minecraft/world/level/levelgen/feature/foliageplacers/FoliagePlacer$FoliageSetter;Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/levelgen/feature/configurations/TreeConfiguration;Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/level/levelgen/feature/foliageplacers/FoliagePlacer/tryPlaceLeaf (Lnet/minecraft/world/level/LevelSimulatedReader;Lnet/minecraft/world/level/levelgen/feature/foliageplacers/FoliagePlacer$FoliageSetter;Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/levelgen/feature/configurations/TreeConfiguration;Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/level/levelgen/feature/foliageplacers/FoliagePlacer/m_277091_ (Lnet/minecraft/world/level/LevelSimulatedReader;Lnet/minecraft/world/level/levelgen/feature/foliageplacers/FoliagePlacer$FoliageSetter;Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/levelgen/feature/configurations/TreeConfiguration;FLnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos$MutableBlockPos;)Z net/minecraft/world/level/levelgen/feature/foliageplacers/FoliagePlacer/tryPlaceExtension (Lnet/minecraft/world/level/LevelSimulatedReader;Lnet/minecraft/world/level/levelgen/feature/foliageplacers/FoliagePlacer$FoliageSetter;Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/levelgen/feature/configurations/TreeConfiguration;FLnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos$MutableBlockPos;)Z +MD: net/minecraft/world/level/levelgen/feature/foliageplacers/FoliagePlacer/m_5897_ ()Lnet/minecraft/world/level/levelgen/feature/foliageplacers/FoliagePlacerType; net/minecraft/world/level/levelgen/feature/foliageplacers/FoliagePlacer/type ()Lnet/minecraft/world/level/levelgen/feature/foliageplacers/FoliagePlacerType; +MD: net/minecraft/world/level/levelgen/feature/foliageplacers/FoliagePlacer/m_68573_ (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/Products$P2; net/minecraft/world/level/levelgen/feature/foliageplacers/FoliagePlacer/foliagePlacerParts (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/Products$P2; +MD: net/minecraft/world/level/levelgen/feature/foliageplacers/FoliagePlacer$FoliageAttachment/ (Lnet/minecraft/core/BlockPos;IZ)V net/minecraft/world/level/levelgen/feature/foliageplacers/FoliagePlacer$FoliageAttachment/ (Lnet/minecraft/core/BlockPos;IZ)V +MD: net/minecraft/world/level/levelgen/feature/foliageplacers/FoliagePlacer$FoliageAttachment/m_161451_ ()Lnet/minecraft/core/BlockPos; net/minecraft/world/level/levelgen/feature/foliageplacers/FoliagePlacer$FoliageAttachment/pos ()Lnet/minecraft/core/BlockPos; +MD: net/minecraft/world/level/levelgen/feature/foliageplacers/FoliagePlacer$FoliageAttachment/m_68589_ ()I net/minecraft/world/level/levelgen/feature/foliageplacers/FoliagePlacer$FoliageAttachment/radiusOffset ()I +MD: net/minecraft/world/level/levelgen/feature/foliageplacers/FoliagePlacer$FoliageAttachment/m_68590_ ()Z net/minecraft/world/level/levelgen/feature/foliageplacers/FoliagePlacer$FoliageAttachment/doubleTrunk ()Z +MD: net/minecraft/world/level/levelgen/feature/foliageplacers/FoliagePlacer$FoliageSetter/m_271808_ (Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/level/levelgen/feature/foliageplacers/FoliagePlacer$FoliageSetter/isSet (Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/level/levelgen/feature/foliageplacers/FoliagePlacer$FoliageSetter/m_271838_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V net/minecraft/world/level/levelgen/feature/foliageplacers/FoliagePlacer$FoliageSetter/set (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V +MD: net/minecraft/world/level/levelgen/feature/foliageplacers/FoliagePlacerType/ ()V net/minecraft/world/level/levelgen/feature/foliageplacers/FoliagePlacerType/ ()V +MD: net/minecraft/world/level/levelgen/feature/foliageplacers/FoliagePlacerType/ (Lcom/mojang/serialization/Codec;)V net/minecraft/world/level/levelgen/feature/foliageplacers/FoliagePlacerType/ (Lcom/mojang/serialization/Codec;)V +MD: net/minecraft/world/level/levelgen/feature/foliageplacers/FoliagePlacerType/m_68604_ ()Lcom/mojang/serialization/Codec; net/minecraft/world/level/levelgen/feature/foliageplacers/FoliagePlacerType/codec ()Lcom/mojang/serialization/Codec; +MD: net/minecraft/world/level/levelgen/feature/foliageplacers/FoliagePlacerType/m_68605_ (Ljava/lang/String;Lcom/mojang/serialization/Codec;)Lnet/minecraft/world/level/levelgen/feature/foliageplacers/FoliagePlacerType; net/minecraft/world/level/levelgen/feature/foliageplacers/FoliagePlacerType/register (Ljava/lang/String;Lcom/mojang/serialization/Codec;)Lnet/minecraft/world/level/levelgen/feature/foliageplacers/FoliagePlacerType; +MD: net/minecraft/world/level/levelgen/feature/foliageplacers/MegaJungleFoliagePlacer/ ()V net/minecraft/world/level/levelgen/feature/foliageplacers/MegaJungleFoliagePlacer/ ()V +MD: net/minecraft/world/level/levelgen/feature/foliageplacers/MegaJungleFoliagePlacer/ (Lnet/minecraft/util/valueproviders/IntProvider;Lnet/minecraft/util/valueproviders/IntProvider;I)V net/minecraft/world/level/levelgen/feature/foliageplacers/MegaJungleFoliagePlacer/ (Lnet/minecraft/util/valueproviders/IntProvider;Lnet/minecraft/util/valueproviders/IntProvider;I)V +MD: net/minecraft/world/level/levelgen/feature/foliageplacers/MegaJungleFoliagePlacer/m_161467_ (Lnet/minecraft/world/level/levelgen/feature/foliageplacers/MegaJungleFoliagePlacer;)Ljava/lang/Integer; net/minecraft/world/level/levelgen/feature/foliageplacers/MegaJungleFoliagePlacer/lambda$static$0 (Lnet/minecraft/world/level/levelgen/feature/foliageplacers/MegaJungleFoliagePlacer;)Ljava/lang/Integer; +MD: net/minecraft/world/level/levelgen/feature/foliageplacers/MegaJungleFoliagePlacer/m_213633_ (Lnet/minecraft/world/level/LevelSimulatedReader;Lnet/minecraft/world/level/levelgen/feature/foliageplacers/FoliagePlacer$FoliageSetter;Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/levelgen/feature/configurations/TreeConfiguration;ILnet/minecraft/world/level/levelgen/feature/foliageplacers/FoliagePlacer$FoliageAttachment;III)V net/minecraft/world/level/levelgen/feature/foliageplacers/MegaJungleFoliagePlacer/createFoliage (Lnet/minecraft/world/level/LevelSimulatedReader;Lnet/minecraft/world/level/levelgen/feature/foliageplacers/FoliagePlacer$FoliageSetter;Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/levelgen/feature/configurations/TreeConfiguration;ILnet/minecraft/world/level/levelgen/feature/foliageplacers/FoliagePlacer$FoliageAttachment;III)V +MD: net/minecraft/world/level/levelgen/feature/foliageplacers/MegaJungleFoliagePlacer/m_214116_ (Lnet/minecraft/util/RandomSource;ILnet/minecraft/world/level/levelgen/feature/configurations/TreeConfiguration;)I net/minecraft/world/level/levelgen/feature/foliageplacers/MegaJungleFoliagePlacer/foliageHeight (Lnet/minecraft/util/RandomSource;ILnet/minecraft/world/level/levelgen/feature/configurations/TreeConfiguration;)I +MD: net/minecraft/world/level/levelgen/feature/foliageplacers/MegaJungleFoliagePlacer/m_214203_ (Lnet/minecraft/util/RandomSource;IIIIZ)Z net/minecraft/world/level/levelgen/feature/foliageplacers/MegaJungleFoliagePlacer/shouldSkipLocation (Lnet/minecraft/util/RandomSource;IIIIZ)Z +MD: net/minecraft/world/level/levelgen/feature/foliageplacers/MegaJungleFoliagePlacer/m_5897_ ()Lnet/minecraft/world/level/levelgen/feature/foliageplacers/FoliagePlacerType; net/minecraft/world/level/levelgen/feature/foliageplacers/MegaJungleFoliagePlacer/type ()Lnet/minecraft/world/level/levelgen/feature/foliageplacers/FoliagePlacerType; +MD: net/minecraft/world/level/levelgen/feature/foliageplacers/MegaJungleFoliagePlacer/m_68629_ (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/world/level/levelgen/feature/foliageplacers/MegaJungleFoliagePlacer/lambda$static$1 (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/world/level/levelgen/feature/foliageplacers/MegaPineFoliagePlacer/ ()V net/minecraft/world/level/levelgen/feature/foliageplacers/MegaPineFoliagePlacer/ ()V +MD: net/minecraft/world/level/levelgen/feature/foliageplacers/MegaPineFoliagePlacer/ (Lnet/minecraft/util/valueproviders/IntProvider;Lnet/minecraft/util/valueproviders/IntProvider;Lnet/minecraft/util/valueproviders/IntProvider;)V net/minecraft/world/level/levelgen/feature/foliageplacers/MegaPineFoliagePlacer/ (Lnet/minecraft/util/valueproviders/IntProvider;Lnet/minecraft/util/valueproviders/IntProvider;Lnet/minecraft/util/valueproviders/IntProvider;)V +MD: net/minecraft/world/level/levelgen/feature/foliageplacers/MegaPineFoliagePlacer/m_161483_ (Lnet/minecraft/world/level/levelgen/feature/foliageplacers/MegaPineFoliagePlacer;)Lnet/minecraft/util/valueproviders/IntProvider; net/minecraft/world/level/levelgen/feature/foliageplacers/MegaPineFoliagePlacer/lambda$static$0 (Lnet/minecraft/world/level/levelgen/feature/foliageplacers/MegaPineFoliagePlacer;)Lnet/minecraft/util/valueproviders/IntProvider; +MD: net/minecraft/world/level/levelgen/feature/foliageplacers/MegaPineFoliagePlacer/m_213633_ (Lnet/minecraft/world/level/LevelSimulatedReader;Lnet/minecraft/world/level/levelgen/feature/foliageplacers/FoliagePlacer$FoliageSetter;Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/levelgen/feature/configurations/TreeConfiguration;ILnet/minecraft/world/level/levelgen/feature/foliageplacers/FoliagePlacer$FoliageAttachment;III)V net/minecraft/world/level/levelgen/feature/foliageplacers/MegaPineFoliagePlacer/createFoliage (Lnet/minecraft/world/level/LevelSimulatedReader;Lnet/minecraft/world/level/levelgen/feature/foliageplacers/FoliagePlacer$FoliageSetter;Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/levelgen/feature/configurations/TreeConfiguration;ILnet/minecraft/world/level/levelgen/feature/foliageplacers/FoliagePlacer$FoliageAttachment;III)V +MD: net/minecraft/world/level/levelgen/feature/foliageplacers/MegaPineFoliagePlacer/m_214116_ (Lnet/minecraft/util/RandomSource;ILnet/minecraft/world/level/levelgen/feature/configurations/TreeConfiguration;)I net/minecraft/world/level/levelgen/feature/foliageplacers/MegaPineFoliagePlacer/foliageHeight (Lnet/minecraft/util/RandomSource;ILnet/minecraft/world/level/levelgen/feature/configurations/TreeConfiguration;)I +MD: net/minecraft/world/level/levelgen/feature/foliageplacers/MegaPineFoliagePlacer/m_214203_ (Lnet/minecraft/util/RandomSource;IIIIZ)Z net/minecraft/world/level/levelgen/feature/foliageplacers/MegaPineFoliagePlacer/shouldSkipLocation (Lnet/minecraft/util/RandomSource;IIIIZ)Z +MD: net/minecraft/world/level/levelgen/feature/foliageplacers/MegaPineFoliagePlacer/m_5897_ ()Lnet/minecraft/world/level/levelgen/feature/foliageplacers/FoliagePlacerType; net/minecraft/world/level/levelgen/feature/foliageplacers/MegaPineFoliagePlacer/type ()Lnet/minecraft/world/level/levelgen/feature/foliageplacers/FoliagePlacerType; +MD: net/minecraft/world/level/levelgen/feature/foliageplacers/MegaPineFoliagePlacer/m_68663_ (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/world/level/levelgen/feature/foliageplacers/MegaPineFoliagePlacer/lambda$static$1 (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/world/level/levelgen/feature/foliageplacers/PineFoliagePlacer/ ()V net/minecraft/world/level/levelgen/feature/foliageplacers/PineFoliagePlacer/ ()V +MD: net/minecraft/world/level/levelgen/feature/foliageplacers/PineFoliagePlacer/ (Lnet/minecraft/util/valueproviders/IntProvider;Lnet/minecraft/util/valueproviders/IntProvider;Lnet/minecraft/util/valueproviders/IntProvider;)V net/minecraft/world/level/levelgen/feature/foliageplacers/PineFoliagePlacer/ (Lnet/minecraft/util/valueproviders/IntProvider;Lnet/minecraft/util/valueproviders/IntProvider;Lnet/minecraft/util/valueproviders/IntProvider;)V +MD: net/minecraft/world/level/levelgen/feature/foliageplacers/PineFoliagePlacer/m_161499_ (Lnet/minecraft/world/level/levelgen/feature/foliageplacers/PineFoliagePlacer;)Lnet/minecraft/util/valueproviders/IntProvider; net/minecraft/world/level/levelgen/feature/foliageplacers/PineFoliagePlacer/lambda$static$0 (Lnet/minecraft/world/level/levelgen/feature/foliageplacers/PineFoliagePlacer;)Lnet/minecraft/util/valueproviders/IntProvider; +MD: net/minecraft/world/level/levelgen/feature/foliageplacers/PineFoliagePlacer/m_213633_ (Lnet/minecraft/world/level/LevelSimulatedReader;Lnet/minecraft/world/level/levelgen/feature/foliageplacers/FoliagePlacer$FoliageSetter;Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/levelgen/feature/configurations/TreeConfiguration;ILnet/minecraft/world/level/levelgen/feature/foliageplacers/FoliagePlacer$FoliageAttachment;III)V net/minecraft/world/level/levelgen/feature/foliageplacers/PineFoliagePlacer/createFoliage (Lnet/minecraft/world/level/LevelSimulatedReader;Lnet/minecraft/world/level/levelgen/feature/foliageplacers/FoliagePlacer$FoliageSetter;Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/levelgen/feature/configurations/TreeConfiguration;ILnet/minecraft/world/level/levelgen/feature/foliageplacers/FoliagePlacer$FoliageAttachment;III)V +MD: net/minecraft/world/level/levelgen/feature/foliageplacers/PineFoliagePlacer/m_214116_ (Lnet/minecraft/util/RandomSource;ILnet/minecraft/world/level/levelgen/feature/configurations/TreeConfiguration;)I net/minecraft/world/level/levelgen/feature/foliageplacers/PineFoliagePlacer/foliageHeight (Lnet/minecraft/util/RandomSource;ILnet/minecraft/world/level/levelgen/feature/configurations/TreeConfiguration;)I +MD: net/minecraft/world/level/levelgen/feature/foliageplacers/PineFoliagePlacer/m_214117_ (Lnet/minecraft/util/RandomSource;I)I net/minecraft/world/level/levelgen/feature/foliageplacers/PineFoliagePlacer/foliageRadius (Lnet/minecraft/util/RandomSource;I)I +MD: net/minecraft/world/level/levelgen/feature/foliageplacers/PineFoliagePlacer/m_214203_ (Lnet/minecraft/util/RandomSource;IIIIZ)Z net/minecraft/world/level/levelgen/feature/foliageplacers/PineFoliagePlacer/shouldSkipLocation (Lnet/minecraft/util/RandomSource;IIIIZ)Z +MD: net/minecraft/world/level/levelgen/feature/foliageplacers/PineFoliagePlacer/m_5897_ ()Lnet/minecraft/world/level/levelgen/feature/foliageplacers/FoliagePlacerType; net/minecraft/world/level/levelgen/feature/foliageplacers/PineFoliagePlacer/type ()Lnet/minecraft/world/level/levelgen/feature/foliageplacers/FoliagePlacerType; +MD: net/minecraft/world/level/levelgen/feature/foliageplacers/PineFoliagePlacer/m_68697_ (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/world/level/levelgen/feature/foliageplacers/PineFoliagePlacer/lambda$static$1 (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/world/level/levelgen/feature/foliageplacers/RandomSpreadFoliagePlacer/ ()V net/minecraft/world/level/levelgen/feature/foliageplacers/RandomSpreadFoliagePlacer/ ()V +MD: net/minecraft/world/level/levelgen/feature/foliageplacers/RandomSpreadFoliagePlacer/ (Lnet/minecraft/util/valueproviders/IntProvider;Lnet/minecraft/util/valueproviders/IntProvider;Lnet/minecraft/util/valueproviders/IntProvider;I)V net/minecraft/world/level/levelgen/feature/foliageplacers/RandomSpreadFoliagePlacer/ (Lnet/minecraft/util/valueproviders/IntProvider;Lnet/minecraft/util/valueproviders/IntProvider;Lnet/minecraft/util/valueproviders/IntProvider;I)V +MD: net/minecraft/world/level/levelgen/feature/foliageplacers/RandomSpreadFoliagePlacer/m_161521_ (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/world/level/levelgen/feature/foliageplacers/RandomSpreadFoliagePlacer/lambda$static$2 (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/world/level/levelgen/feature/foliageplacers/RandomSpreadFoliagePlacer/m_161523_ (Lnet/minecraft/world/level/levelgen/feature/foliageplacers/RandomSpreadFoliagePlacer;)Ljava/lang/Integer; net/minecraft/world/level/levelgen/feature/foliageplacers/RandomSpreadFoliagePlacer/lambda$static$1 (Lnet/minecraft/world/level/levelgen/feature/foliageplacers/RandomSpreadFoliagePlacer;)Ljava/lang/Integer; +MD: net/minecraft/world/level/levelgen/feature/foliageplacers/RandomSpreadFoliagePlacer/m_161536_ (Lnet/minecraft/world/level/levelgen/feature/foliageplacers/RandomSpreadFoliagePlacer;)Lnet/minecraft/util/valueproviders/IntProvider; net/minecraft/world/level/levelgen/feature/foliageplacers/RandomSpreadFoliagePlacer/lambda$static$0 (Lnet/minecraft/world/level/levelgen/feature/foliageplacers/RandomSpreadFoliagePlacer;)Lnet/minecraft/util/valueproviders/IntProvider; +MD: net/minecraft/world/level/levelgen/feature/foliageplacers/RandomSpreadFoliagePlacer/m_213633_ (Lnet/minecraft/world/level/LevelSimulatedReader;Lnet/minecraft/world/level/levelgen/feature/foliageplacers/FoliagePlacer$FoliageSetter;Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/levelgen/feature/configurations/TreeConfiguration;ILnet/minecraft/world/level/levelgen/feature/foliageplacers/FoliagePlacer$FoliageAttachment;III)V net/minecraft/world/level/levelgen/feature/foliageplacers/RandomSpreadFoliagePlacer/createFoliage (Lnet/minecraft/world/level/LevelSimulatedReader;Lnet/minecraft/world/level/levelgen/feature/foliageplacers/FoliagePlacer$FoliageSetter;Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/levelgen/feature/configurations/TreeConfiguration;ILnet/minecraft/world/level/levelgen/feature/foliageplacers/FoliagePlacer$FoliageAttachment;III)V +MD: net/minecraft/world/level/levelgen/feature/foliageplacers/RandomSpreadFoliagePlacer/m_214116_ (Lnet/minecraft/util/RandomSource;ILnet/minecraft/world/level/levelgen/feature/configurations/TreeConfiguration;)I net/minecraft/world/level/levelgen/feature/foliageplacers/RandomSpreadFoliagePlacer/foliageHeight (Lnet/minecraft/util/RandomSource;ILnet/minecraft/world/level/levelgen/feature/configurations/TreeConfiguration;)I +MD: net/minecraft/world/level/levelgen/feature/foliageplacers/RandomSpreadFoliagePlacer/m_214203_ (Lnet/minecraft/util/RandomSource;IIIIZ)Z net/minecraft/world/level/levelgen/feature/foliageplacers/RandomSpreadFoliagePlacer/shouldSkipLocation (Lnet/minecraft/util/RandomSource;IIIIZ)Z +MD: net/minecraft/world/level/levelgen/feature/foliageplacers/RandomSpreadFoliagePlacer/m_5897_ ()Lnet/minecraft/world/level/levelgen/feature/foliageplacers/FoliagePlacerType; net/minecraft/world/level/levelgen/feature/foliageplacers/RandomSpreadFoliagePlacer/type ()Lnet/minecraft/world/level/levelgen/feature/foliageplacers/FoliagePlacerType; +MD: net/minecraft/world/level/levelgen/feature/foliageplacers/SpruceFoliagePlacer/ ()V net/minecraft/world/level/levelgen/feature/foliageplacers/SpruceFoliagePlacer/ ()V +MD: net/minecraft/world/level/levelgen/feature/foliageplacers/SpruceFoliagePlacer/ (Lnet/minecraft/util/valueproviders/IntProvider;Lnet/minecraft/util/valueproviders/IntProvider;Lnet/minecraft/util/valueproviders/IntProvider;)V net/minecraft/world/level/levelgen/feature/foliageplacers/SpruceFoliagePlacer/ (Lnet/minecraft/util/valueproviders/IntProvider;Lnet/minecraft/util/valueproviders/IntProvider;Lnet/minecraft/util/valueproviders/IntProvider;)V +MD: net/minecraft/world/level/levelgen/feature/foliageplacers/SpruceFoliagePlacer/m_161552_ (Lnet/minecraft/world/level/levelgen/feature/foliageplacers/SpruceFoliagePlacer;)Lnet/minecraft/util/valueproviders/IntProvider; net/minecraft/world/level/levelgen/feature/foliageplacers/SpruceFoliagePlacer/lambda$static$0 (Lnet/minecraft/world/level/levelgen/feature/foliageplacers/SpruceFoliagePlacer;)Lnet/minecraft/util/valueproviders/IntProvider; +MD: net/minecraft/world/level/levelgen/feature/foliageplacers/SpruceFoliagePlacer/m_213633_ (Lnet/minecraft/world/level/LevelSimulatedReader;Lnet/minecraft/world/level/levelgen/feature/foliageplacers/FoliagePlacer$FoliageSetter;Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/levelgen/feature/configurations/TreeConfiguration;ILnet/minecraft/world/level/levelgen/feature/foliageplacers/FoliagePlacer$FoliageAttachment;III)V net/minecraft/world/level/levelgen/feature/foliageplacers/SpruceFoliagePlacer/createFoliage (Lnet/minecraft/world/level/LevelSimulatedReader;Lnet/minecraft/world/level/levelgen/feature/foliageplacers/FoliagePlacer$FoliageSetter;Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/levelgen/feature/configurations/TreeConfiguration;ILnet/minecraft/world/level/levelgen/feature/foliageplacers/FoliagePlacer$FoliageAttachment;III)V +MD: net/minecraft/world/level/levelgen/feature/foliageplacers/SpruceFoliagePlacer/m_214116_ (Lnet/minecraft/util/RandomSource;ILnet/minecraft/world/level/levelgen/feature/configurations/TreeConfiguration;)I net/minecraft/world/level/levelgen/feature/foliageplacers/SpruceFoliagePlacer/foliageHeight (Lnet/minecraft/util/RandomSource;ILnet/minecraft/world/level/levelgen/feature/configurations/TreeConfiguration;)I +MD: net/minecraft/world/level/levelgen/feature/foliageplacers/SpruceFoliagePlacer/m_214203_ (Lnet/minecraft/util/RandomSource;IIIIZ)Z net/minecraft/world/level/levelgen/feature/foliageplacers/SpruceFoliagePlacer/shouldSkipLocation (Lnet/minecraft/util/RandomSource;IIIIZ)Z +MD: net/minecraft/world/level/levelgen/feature/foliageplacers/SpruceFoliagePlacer/m_5897_ ()Lnet/minecraft/world/level/levelgen/feature/foliageplacers/FoliagePlacerType; net/minecraft/world/level/levelgen/feature/foliageplacers/SpruceFoliagePlacer/type ()Lnet/minecraft/world/level/levelgen/feature/foliageplacers/FoliagePlacerType; +MD: net/minecraft/world/level/levelgen/feature/foliageplacers/SpruceFoliagePlacer/m_68734_ (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/world/level/levelgen/feature/foliageplacers/SpruceFoliagePlacer/lambda$static$1 (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/world/level/levelgen/feature/rootplacers/AboveRootPlacement/ ()V net/minecraft/world/level/levelgen/feature/rootplacers/AboveRootPlacement/ ()V +MD: net/minecraft/world/level/levelgen/feature/rootplacers/AboveRootPlacement/ (Lnet/minecraft/world/level/levelgen/feature/stateproviders/BlockStateProvider;F)V net/minecraft/world/level/levelgen/feature/rootplacers/AboveRootPlacement/ (Lnet/minecraft/world/level/levelgen/feature/stateproviders/BlockStateProvider;F)V +MD: net/minecraft/world/level/levelgen/feature/rootplacers/AboveRootPlacement/equals (Ljava/lang/Object;)Z net/minecraft/world/level/levelgen/feature/rootplacers/AboveRootPlacement/equals (Ljava/lang/Object;)Z +MD: net/minecraft/world/level/levelgen/feature/rootplacers/AboveRootPlacement/f_225754_ ()Lnet/minecraft/world/level/levelgen/feature/stateproviders/BlockStateProvider; net/minecraft/world/level/levelgen/feature/rootplacers/AboveRootPlacement/aboveRootProvider ()Lnet/minecraft/world/level/levelgen/feature/stateproviders/BlockStateProvider; +MD: net/minecraft/world/level/levelgen/feature/rootplacers/AboveRootPlacement/f_225755_ ()F net/minecraft/world/level/levelgen/feature/rootplacers/AboveRootPlacement/aboveRootPlacementChance ()F +MD: net/minecraft/world/level/levelgen/feature/rootplacers/AboveRootPlacement/hashCode ()I net/minecraft/world/level/levelgen/feature/rootplacers/AboveRootPlacement/hashCode ()I +MD: net/minecraft/world/level/levelgen/feature/rootplacers/AboveRootPlacement/m_225761_ (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/world/level/levelgen/feature/rootplacers/AboveRootPlacement/lambda$static$2 (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/world/level/levelgen/feature/rootplacers/AboveRootPlacement/m_225763_ (Lnet/minecraft/world/level/levelgen/feature/rootplacers/AboveRootPlacement;)Ljava/lang/Float; net/minecraft/world/level/levelgen/feature/rootplacers/AboveRootPlacement/lambda$static$1 (Lnet/minecraft/world/level/levelgen/feature/rootplacers/AboveRootPlacement;)Ljava/lang/Float; +MD: net/minecraft/world/level/levelgen/feature/rootplacers/AboveRootPlacement/m_225766_ (Lnet/minecraft/world/level/levelgen/feature/rootplacers/AboveRootPlacement;)Lnet/minecraft/world/level/levelgen/feature/stateproviders/BlockStateProvider; net/minecraft/world/level/levelgen/feature/rootplacers/AboveRootPlacement/lambda$static$0 (Lnet/minecraft/world/level/levelgen/feature/rootplacers/AboveRootPlacement;)Lnet/minecraft/world/level/levelgen/feature/stateproviders/BlockStateProvider; +MD: net/minecraft/world/level/levelgen/feature/rootplacers/AboveRootPlacement/toString ()Ljava/lang/String; net/minecraft/world/level/levelgen/feature/rootplacers/AboveRootPlacement/toString ()Ljava/lang/String; +MD: net/minecraft/world/level/levelgen/feature/rootplacers/MangroveRootPlacement/ ()V net/minecraft/world/level/levelgen/feature/rootplacers/MangroveRootPlacement/ ()V +MD: net/minecraft/world/level/levelgen/feature/rootplacers/MangroveRootPlacement/ (Lnet/minecraft/core/HolderSet;Lnet/minecraft/core/HolderSet;Lnet/minecraft/world/level/levelgen/feature/stateproviders/BlockStateProvider;IIF)V net/minecraft/world/level/levelgen/feature/rootplacers/MangroveRootPlacement/ (Lnet/minecraft/core/HolderSet;Lnet/minecraft/core/HolderSet;Lnet/minecraft/world/level/levelgen/feature/stateproviders/BlockStateProvider;IIF)V +MD: net/minecraft/world/level/levelgen/feature/rootplacers/MangroveRootPlacement/equals (Ljava/lang/Object;)Z net/minecraft/world/level/levelgen/feature/rootplacers/MangroveRootPlacement/equals (Ljava/lang/Object;)Z +MD: net/minecraft/world/level/levelgen/feature/rootplacers/MangroveRootPlacement/f_225773_ ()Lnet/minecraft/core/HolderSet; net/minecraft/world/level/levelgen/feature/rootplacers/MangroveRootPlacement/canGrowThrough ()Lnet/minecraft/core/HolderSet; +MD: net/minecraft/world/level/levelgen/feature/rootplacers/MangroveRootPlacement/f_225774_ ()Lnet/minecraft/core/HolderSet; net/minecraft/world/level/levelgen/feature/rootplacers/MangroveRootPlacement/muddyRootsIn ()Lnet/minecraft/core/HolderSet; +MD: net/minecraft/world/level/levelgen/feature/rootplacers/MangroveRootPlacement/f_225775_ ()Lnet/minecraft/world/level/levelgen/feature/stateproviders/BlockStateProvider; net/minecraft/world/level/levelgen/feature/rootplacers/MangroveRootPlacement/muddyRootsProvider ()Lnet/minecraft/world/level/levelgen/feature/stateproviders/BlockStateProvider; +MD: net/minecraft/world/level/levelgen/feature/rootplacers/MangroveRootPlacement/f_225776_ ()I net/minecraft/world/level/levelgen/feature/rootplacers/MangroveRootPlacement/maxRootWidth ()I +MD: net/minecraft/world/level/levelgen/feature/rootplacers/MangroveRootPlacement/f_225777_ ()I net/minecraft/world/level/levelgen/feature/rootplacers/MangroveRootPlacement/maxRootLength ()I +MD: net/minecraft/world/level/levelgen/feature/rootplacers/MangroveRootPlacement/f_225778_ ()F net/minecraft/world/level/levelgen/feature/rootplacers/MangroveRootPlacement/randomSkewChance ()F +MD: net/minecraft/world/level/levelgen/feature/rootplacers/MangroveRootPlacement/hashCode ()I net/minecraft/world/level/levelgen/feature/rootplacers/MangroveRootPlacement/hashCode ()I +MD: net/minecraft/world/level/levelgen/feature/rootplacers/MangroveRootPlacement/m_225788_ (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/world/level/levelgen/feature/rootplacers/MangroveRootPlacement/lambda$static$6 (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/world/level/levelgen/feature/rootplacers/MangroveRootPlacement/m_225790_ (Lnet/minecraft/world/level/levelgen/feature/rootplacers/MangroveRootPlacement;)Ljava/lang/Float; net/minecraft/world/level/levelgen/feature/rootplacers/MangroveRootPlacement/lambda$static$5 (Lnet/minecraft/world/level/levelgen/feature/rootplacers/MangroveRootPlacement;)Ljava/lang/Float; +MD: net/minecraft/world/level/levelgen/feature/rootplacers/MangroveRootPlacement/m_225793_ (Lnet/minecraft/world/level/levelgen/feature/rootplacers/MangroveRootPlacement;)Ljava/lang/Integer; net/minecraft/world/level/levelgen/feature/rootplacers/MangroveRootPlacement/lambda$static$4 (Lnet/minecraft/world/level/levelgen/feature/rootplacers/MangroveRootPlacement;)Ljava/lang/Integer; +MD: net/minecraft/world/level/levelgen/feature/rootplacers/MangroveRootPlacement/m_225796_ (Lnet/minecraft/world/level/levelgen/feature/rootplacers/MangroveRootPlacement;)Ljava/lang/Integer; net/minecraft/world/level/levelgen/feature/rootplacers/MangroveRootPlacement/lambda$static$3 (Lnet/minecraft/world/level/levelgen/feature/rootplacers/MangroveRootPlacement;)Ljava/lang/Integer; +MD: net/minecraft/world/level/levelgen/feature/rootplacers/MangroveRootPlacement/m_225799_ (Lnet/minecraft/world/level/levelgen/feature/rootplacers/MangroveRootPlacement;)Lnet/minecraft/world/level/levelgen/feature/stateproviders/BlockStateProvider; net/minecraft/world/level/levelgen/feature/rootplacers/MangroveRootPlacement/lambda$static$2 (Lnet/minecraft/world/level/levelgen/feature/rootplacers/MangroveRootPlacement;)Lnet/minecraft/world/level/levelgen/feature/stateproviders/BlockStateProvider; +MD: net/minecraft/world/level/levelgen/feature/rootplacers/MangroveRootPlacement/m_225802_ (Lnet/minecraft/world/level/levelgen/feature/rootplacers/MangroveRootPlacement;)Lnet/minecraft/core/HolderSet; net/minecraft/world/level/levelgen/feature/rootplacers/MangroveRootPlacement/lambda$static$1 (Lnet/minecraft/world/level/levelgen/feature/rootplacers/MangroveRootPlacement;)Lnet/minecraft/core/HolderSet; +MD: net/minecraft/world/level/levelgen/feature/rootplacers/MangroveRootPlacement/m_225807_ (Lnet/minecraft/world/level/levelgen/feature/rootplacers/MangroveRootPlacement;)Lnet/minecraft/core/HolderSet; net/minecraft/world/level/levelgen/feature/rootplacers/MangroveRootPlacement/lambda$static$0 (Lnet/minecraft/world/level/levelgen/feature/rootplacers/MangroveRootPlacement;)Lnet/minecraft/core/HolderSet; +MD: net/minecraft/world/level/levelgen/feature/rootplacers/MangroveRootPlacement/toString ()Ljava/lang/String; net/minecraft/world/level/levelgen/feature/rootplacers/MangroveRootPlacement/toString ()Ljava/lang/String; +MD: net/minecraft/world/level/levelgen/feature/rootplacers/MangroveRootPlacer/ ()V net/minecraft/world/level/levelgen/feature/rootplacers/MangroveRootPlacer/ ()V +MD: net/minecraft/world/level/levelgen/feature/rootplacers/MangroveRootPlacer/ (Lnet/minecraft/util/valueproviders/IntProvider;Lnet/minecraft/world/level/levelgen/feature/stateproviders/BlockStateProvider;Ljava/util/Optional;Lnet/minecraft/world/level/levelgen/feature/rootplacers/MangroveRootPlacement;)V net/minecraft/world/level/levelgen/feature/rootplacers/MangroveRootPlacer/ (Lnet/minecraft/util/valueproviders/IntProvider;Lnet/minecraft/world/level/levelgen/feature/stateproviders/BlockStateProvider;Ljava/util/Optional;Lnet/minecraft/world/level/levelgen/feature/rootplacers/MangroveRootPlacement;)V +MD: net/minecraft/world/level/levelgen/feature/rootplacers/MangroveRootPlacer/m_213551_ (Lnet/minecraft/world/level/LevelSimulatedReader;Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/level/levelgen/feature/rootplacers/MangroveRootPlacer/canPlaceRoot (Lnet/minecraft/world/level/LevelSimulatedReader;Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/level/levelgen/feature/rootplacers/MangroveRootPlacer/m_213654_ (Lnet/minecraft/world/level/LevelSimulatedReader;Ljava/util/function/BiConsumer;Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/levelgen/feature/configurations/TreeConfiguration;)V net/minecraft/world/level/levelgen/feature/rootplacers/MangroveRootPlacer/placeRoot (Lnet/minecraft/world/level/LevelSimulatedReader;Ljava/util/function/BiConsumer;Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/levelgen/feature/configurations/TreeConfiguration;)V +MD: net/minecraft/world/level/levelgen/feature/rootplacers/MangroveRootPlacer/m_213684_ (Lnet/minecraft/world/level/LevelSimulatedReader;Ljava/util/function/BiConsumer;Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/levelgen/feature/configurations/TreeConfiguration;)Z net/minecraft/world/level/levelgen/feature/rootplacers/MangroveRootPlacer/placeRoots (Lnet/minecraft/world/level/LevelSimulatedReader;Ljava/util/function/BiConsumer;Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/levelgen/feature/configurations/TreeConfiguration;)Z +MD: net/minecraft/world/level/levelgen/feature/rootplacers/MangroveRootPlacer/m_213745_ ()Lnet/minecraft/world/level/levelgen/feature/rootplacers/RootPlacerType; net/minecraft/world/level/levelgen/feature/rootplacers/MangroveRootPlacer/type ()Lnet/minecraft/world/level/levelgen/feature/rootplacers/RootPlacerType; +MD: net/minecraft/world/level/levelgen/feature/rootplacers/MangroveRootPlacer/m_225822_ (Lnet/minecraft/world/level/LevelSimulatedReader;Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Direction;Lnet/minecraft/core/BlockPos;Ljava/util/List;I)Z net/minecraft/world/level/levelgen/feature/rootplacers/MangroveRootPlacer/simulateRoots (Lnet/minecraft/world/level/LevelSimulatedReader;Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Direction;Lnet/minecraft/core/BlockPos;Ljava/util/List;I)Z +MD: net/minecraft/world/level/levelgen/feature/rootplacers/MangroveRootPlacer/m_225846_ (Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/world/level/levelgen/feature/rootplacers/MangroveRootPlacer/lambda$placeRoot$3 (Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/world/level/levelgen/feature/rootplacers/MangroveRootPlacer/m_225848_ (Lnet/minecraft/world/level/levelgen/feature/rootplacers/MangroveRootPlacer;)Lnet/minecraft/world/level/levelgen/feature/rootplacers/MangroveRootPlacement; net/minecraft/world/level/levelgen/feature/rootplacers/MangroveRootPlacer/lambda$static$0 (Lnet/minecraft/world/level/levelgen/feature/rootplacers/MangroveRootPlacer;)Lnet/minecraft/world/level/levelgen/feature/rootplacers/MangroveRootPlacement; +MD: net/minecraft/world/level/levelgen/feature/rootplacers/MangroveRootPlacer/m_225850_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Direction;Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos;)Ljava/util/List; net/minecraft/world/level/levelgen/feature/rootplacers/MangroveRootPlacer/potentialRootPositions (Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Direction;Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos;)Ljava/util/List; +MD: net/minecraft/world/level/levelgen/feature/rootplacers/MangroveRootPlacer/m_225855_ (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/world/level/levelgen/feature/rootplacers/MangroveRootPlacer/lambda$static$1 (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/world/level/levelgen/feature/rootplacers/MangroveRootPlacer/m_225857_ (Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/world/level/levelgen/feature/rootplacers/MangroveRootPlacer/lambda$canPlaceRoot$2 (Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/world/level/levelgen/feature/rootplacers/RootPlacer/ ()V net/minecraft/world/level/levelgen/feature/rootplacers/RootPlacer/ ()V +MD: net/minecraft/world/level/levelgen/feature/rootplacers/RootPlacer/ (Lnet/minecraft/util/valueproviders/IntProvider;Lnet/minecraft/world/level/levelgen/feature/stateproviders/BlockStateProvider;Ljava/util/Optional;)V net/minecraft/world/level/levelgen/feature/rootplacers/RootPlacer/ (Lnet/minecraft/util/valueproviders/IntProvider;Lnet/minecraft/world/level/levelgen/feature/stateproviders/BlockStateProvider;Ljava/util/Optional;)V +MD: net/minecraft/world/level/levelgen/feature/rootplacers/RootPlacer/m_213551_ (Lnet/minecraft/world/level/LevelSimulatedReader;Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/level/levelgen/feature/rootplacers/RootPlacer/canPlaceRoot (Lnet/minecraft/world/level/LevelSimulatedReader;Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/level/levelgen/feature/rootplacers/RootPlacer/m_213654_ (Lnet/minecraft/world/level/LevelSimulatedReader;Ljava/util/function/BiConsumer;Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/levelgen/feature/configurations/TreeConfiguration;)V net/minecraft/world/level/levelgen/feature/rootplacers/RootPlacer/placeRoot (Lnet/minecraft/world/level/LevelSimulatedReader;Ljava/util/function/BiConsumer;Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/levelgen/feature/configurations/TreeConfiguration;)V +MD: net/minecraft/world/level/levelgen/feature/rootplacers/RootPlacer/m_213684_ (Lnet/minecraft/world/level/LevelSimulatedReader;Ljava/util/function/BiConsumer;Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/levelgen/feature/configurations/TreeConfiguration;)Z net/minecraft/world/level/levelgen/feature/rootplacers/RootPlacer/placeRoots (Lnet/minecraft/world/level/LevelSimulatedReader;Ljava/util/function/BiConsumer;Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/levelgen/feature/configurations/TreeConfiguration;)Z +MD: net/minecraft/world/level/levelgen/feature/rootplacers/RootPlacer/m_213745_ ()Lnet/minecraft/world/level/levelgen/feature/rootplacers/RootPlacerType; net/minecraft/world/level/levelgen/feature/rootplacers/RootPlacer/type ()Lnet/minecraft/world/level/levelgen/feature/rootplacers/RootPlacerType; +MD: net/minecraft/world/level/levelgen/feature/rootplacers/RootPlacer/m_225870_ (Lnet/minecraft/world/level/LevelSimulatedReader;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/levelgen/feature/rootplacers/RootPlacer/getPotentiallyWaterloggedState (Lnet/minecraft/world/level/LevelSimulatedReader;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/levelgen/feature/rootplacers/RootPlacer/m_225885_ (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/Products$P3; net/minecraft/world/level/levelgen/feature/rootplacers/RootPlacer/rootPlacerParts (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/Products$P3; +MD: net/minecraft/world/level/levelgen/feature/rootplacers/RootPlacer/m_225887_ (Lnet/minecraft/world/level/levelgen/feature/rootplacers/RootPlacer;)Ljava/util/Optional; net/minecraft/world/level/levelgen/feature/rootplacers/RootPlacer/lambda$rootPlacerParts$2 (Lnet/minecraft/world/level/levelgen/feature/rootplacers/RootPlacer;)Ljava/util/Optional; +MD: net/minecraft/world/level/levelgen/feature/rootplacers/RootPlacer/m_225889_ (Lnet/minecraft/world/level/material/FluidState;)Z net/minecraft/world/level/levelgen/feature/rootplacers/RootPlacer/lambda$getPotentiallyWaterloggedState$3 (Lnet/minecraft/world/level/material/FluidState;)Z +MD: net/minecraft/world/level/levelgen/feature/rootplacers/RootPlacer/m_225891_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)Lnet/minecraft/core/BlockPos; net/minecraft/world/level/levelgen/feature/rootplacers/RootPlacer/getTrunkOrigin (Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)Lnet/minecraft/core/BlockPos; +MD: net/minecraft/world/level/levelgen/feature/rootplacers/RootPlacer/m_225894_ (Lnet/minecraft/world/level/levelgen/feature/rootplacers/RootPlacer;)Lnet/minecraft/world/level/levelgen/feature/stateproviders/BlockStateProvider; net/minecraft/world/level/levelgen/feature/rootplacers/RootPlacer/lambda$rootPlacerParts$1 (Lnet/minecraft/world/level/levelgen/feature/rootplacers/RootPlacer;)Lnet/minecraft/world/level/levelgen/feature/stateproviders/BlockStateProvider; +MD: net/minecraft/world/level/levelgen/feature/rootplacers/RootPlacer/m_225896_ (Lnet/minecraft/world/level/levelgen/feature/rootplacers/RootPlacer;)Lnet/minecraft/util/valueproviders/IntProvider; net/minecraft/world/level/levelgen/feature/rootplacers/RootPlacer/lambda$rootPlacerParts$0 (Lnet/minecraft/world/level/levelgen/feature/rootplacers/RootPlacer;)Lnet/minecraft/util/valueproviders/IntProvider; +MD: net/minecraft/world/level/levelgen/feature/rootplacers/RootPlacerType/ ()V net/minecraft/world/level/levelgen/feature/rootplacers/RootPlacerType/ ()V +MD: net/minecraft/world/level/levelgen/feature/rootplacers/RootPlacerType/ (Lcom/mojang/serialization/Codec;)V net/minecraft/world/level/levelgen/feature/rootplacers/RootPlacerType/ (Lcom/mojang/serialization/Codec;)V +MD: net/minecraft/world/level/levelgen/feature/rootplacers/RootPlacerType/m_225903_ ()Lcom/mojang/serialization/Codec; net/minecraft/world/level/levelgen/feature/rootplacers/RootPlacerType/codec ()Lcom/mojang/serialization/Codec; +MD: net/minecraft/world/level/levelgen/feature/rootplacers/RootPlacerType/m_225904_ (Ljava/lang/String;Lcom/mojang/serialization/Codec;)Lnet/minecraft/world/level/levelgen/feature/rootplacers/RootPlacerType; net/minecraft/world/level/levelgen/feature/rootplacers/RootPlacerType/register (Ljava/lang/String;Lcom/mojang/serialization/Codec;)Lnet/minecraft/world/level/levelgen/feature/rootplacers/RootPlacerType; +MD: net/minecraft/world/level/levelgen/feature/stateproviders/BlockStateProvider/ ()V net/minecraft/world/level/levelgen/feature/stateproviders/BlockStateProvider/ ()V +MD: net/minecraft/world/level/levelgen/feature/stateproviders/BlockStateProvider/ ()V net/minecraft/world/level/levelgen/feature/stateproviders/BlockStateProvider/ ()V +MD: net/minecraft/world/level/levelgen/feature/stateproviders/BlockStateProvider/m_191382_ (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/levelgen/feature/stateproviders/SimpleStateProvider; net/minecraft/world/level/levelgen/feature/stateproviders/BlockStateProvider/simple (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/levelgen/feature/stateproviders/SimpleStateProvider; +MD: net/minecraft/world/level/levelgen/feature/stateproviders/BlockStateProvider/m_191384_ (Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/levelgen/feature/stateproviders/SimpleStateProvider; net/minecraft/world/level/levelgen/feature/stateproviders/BlockStateProvider/simple (Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/levelgen/feature/stateproviders/SimpleStateProvider; +MD: net/minecraft/world/level/levelgen/feature/stateproviders/BlockStateProvider/m_213972_ (Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/levelgen/feature/stateproviders/BlockStateProvider/getState (Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/levelgen/feature/stateproviders/BlockStateProvider/m_5923_ ()Lnet/minecraft/world/level/levelgen/feature/stateproviders/BlockStateProviderType; net/minecraft/world/level/levelgen/feature/stateproviders/BlockStateProvider/type ()Lnet/minecraft/world/level/levelgen/feature/stateproviders/BlockStateProviderType; +MD: net/minecraft/world/level/levelgen/feature/stateproviders/BlockStateProviderType/ ()V net/minecraft/world/level/levelgen/feature/stateproviders/BlockStateProviderType/ ()V +MD: net/minecraft/world/level/levelgen/feature/stateproviders/BlockStateProviderType/ (Lcom/mojang/serialization/Codec;)V net/minecraft/world/level/levelgen/feature/stateproviders/BlockStateProviderType/ (Lcom/mojang/serialization/Codec;)V +MD: net/minecraft/world/level/levelgen/feature/stateproviders/BlockStateProviderType/m_68761_ ()Lcom/mojang/serialization/Codec; net/minecraft/world/level/levelgen/feature/stateproviders/BlockStateProviderType/codec ()Lcom/mojang/serialization/Codec; +MD: net/minecraft/world/level/levelgen/feature/stateproviders/BlockStateProviderType/m_68762_ (Ljava/lang/String;Lcom/mojang/serialization/Codec;)Lnet/minecraft/world/level/levelgen/feature/stateproviders/BlockStateProviderType; net/minecraft/world/level/levelgen/feature/stateproviders/BlockStateProviderType/register (Ljava/lang/String;Lcom/mojang/serialization/Codec;)Lnet/minecraft/world/level/levelgen/feature/stateproviders/BlockStateProviderType; +MD: net/minecraft/world/level/levelgen/feature/stateproviders/DualNoiseProvider/ ()V net/minecraft/world/level/levelgen/feature/stateproviders/DualNoiseProvider/ ()V +MD: net/minecraft/world/level/levelgen/feature/stateproviders/DualNoiseProvider/ (Lnet/minecraft/util/InclusiveRange;Lnet/minecraft/world/level/levelgen/synth/NormalNoise$NoiseParameters;FJLnet/minecraft/world/level/levelgen/synth/NormalNoise$NoiseParameters;FLjava/util/List;)V net/minecraft/world/level/levelgen/feature/stateproviders/DualNoiseProvider/ (Lnet/minecraft/util/InclusiveRange;Lnet/minecraft/world/level/levelgen/synth/NormalNoise$NoiseParameters;FJLnet/minecraft/world/level/levelgen/synth/NormalNoise$NoiseParameters;FLjava/util/List;)V +MD: net/minecraft/world/level/levelgen/feature/stateproviders/DualNoiseProvider/m_191404_ (Lnet/minecraft/world/level/levelgen/feature/stateproviders/DualNoiseProvider;)Ljava/lang/Float; net/minecraft/world/level/levelgen/feature/stateproviders/DualNoiseProvider/lambda$static$2 (Lnet/minecraft/world/level/levelgen/feature/stateproviders/DualNoiseProvider;)Ljava/lang/Float; +MD: net/minecraft/world/level/levelgen/feature/stateproviders/DualNoiseProvider/m_191406_ (Lnet/minecraft/core/BlockPos;)D net/minecraft/world/level/levelgen/feature/stateproviders/DualNoiseProvider/getSlowNoiseValue (Lnet/minecraft/core/BlockPos;)D +MD: net/minecraft/world/level/levelgen/feature/stateproviders/DualNoiseProvider/m_191411_ (Lnet/minecraft/world/level/levelgen/feature/stateproviders/DualNoiseProvider;)Lnet/minecraft/world/level/levelgen/synth/NormalNoise$NoiseParameters; net/minecraft/world/level/levelgen/feature/stateproviders/DualNoiseProvider/lambda$static$1 (Lnet/minecraft/world/level/levelgen/feature/stateproviders/DualNoiseProvider;)Lnet/minecraft/world/level/levelgen/synth/NormalNoise$NoiseParameters; +MD: net/minecraft/world/level/levelgen/feature/stateproviders/DualNoiseProvider/m_191413_ (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/world/level/levelgen/feature/stateproviders/DualNoiseProvider/lambda$static$3 (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/world/level/levelgen/feature/stateproviders/DualNoiseProvider/m_191415_ (Lnet/minecraft/world/level/levelgen/feature/stateproviders/DualNoiseProvider;)Lnet/minecraft/util/InclusiveRange; net/minecraft/world/level/levelgen/feature/stateproviders/DualNoiseProvider/lambda$static$0 (Lnet/minecraft/world/level/levelgen/feature/stateproviders/DualNoiseProvider;)Lnet/minecraft/util/InclusiveRange; +MD: net/minecraft/world/level/levelgen/feature/stateproviders/DualNoiseProvider/m_213972_ (Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/levelgen/feature/stateproviders/DualNoiseProvider/getState (Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/levelgen/feature/stateproviders/DualNoiseProvider/m_5923_ ()Lnet/minecraft/world/level/levelgen/feature/stateproviders/BlockStateProviderType; net/minecraft/world/level/levelgen/feature/stateproviders/DualNoiseProvider/type ()Lnet/minecraft/world/level/levelgen/feature/stateproviders/BlockStateProviderType; +MD: net/minecraft/world/level/levelgen/feature/stateproviders/NoiseBasedStateProvider/ (JLnet/minecraft/world/level/levelgen/synth/NormalNoise$NoiseParameters;F)V net/minecraft/world/level/levelgen/feature/stateproviders/NoiseBasedStateProvider/ (JLnet/minecraft/world/level/levelgen/synth/NormalNoise$NoiseParameters;F)V +MD: net/minecraft/world/level/levelgen/feature/stateproviders/NoiseBasedStateProvider/m_191425_ (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/Products$P3; net/minecraft/world/level/levelgen/feature/stateproviders/NoiseBasedStateProvider/noiseCodec (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/Products$P3; +MD: net/minecraft/world/level/levelgen/feature/stateproviders/NoiseBasedStateProvider/m_191427_ (Lnet/minecraft/world/level/levelgen/feature/stateproviders/NoiseBasedStateProvider;)Ljava/lang/Float; net/minecraft/world/level/levelgen/feature/stateproviders/NoiseBasedStateProvider/lambda$noiseCodec$2 (Lnet/minecraft/world/level/levelgen/feature/stateproviders/NoiseBasedStateProvider;)Ljava/lang/Float; +MD: net/minecraft/world/level/levelgen/feature/stateproviders/NoiseBasedStateProvider/m_191429_ (Lnet/minecraft/core/BlockPos;D)D net/minecraft/world/level/levelgen/feature/stateproviders/NoiseBasedStateProvider/getNoiseValue (Lnet/minecraft/core/BlockPos;D)D +MD: net/minecraft/world/level/levelgen/feature/stateproviders/NoiseBasedStateProvider/m_191432_ (Lnet/minecraft/world/level/levelgen/feature/stateproviders/NoiseBasedStateProvider;)Lnet/minecraft/world/level/levelgen/synth/NormalNoise$NoiseParameters; net/minecraft/world/level/levelgen/feature/stateproviders/NoiseBasedStateProvider/lambda$noiseCodec$1 (Lnet/minecraft/world/level/levelgen/feature/stateproviders/NoiseBasedStateProvider;)Lnet/minecraft/world/level/levelgen/synth/NormalNoise$NoiseParameters; +MD: net/minecraft/world/level/levelgen/feature/stateproviders/NoiseBasedStateProvider/m_191434_ (Lnet/minecraft/world/level/levelgen/feature/stateproviders/NoiseBasedStateProvider;)Ljava/lang/Long; net/minecraft/world/level/levelgen/feature/stateproviders/NoiseBasedStateProvider/lambda$noiseCodec$0 (Lnet/minecraft/world/level/levelgen/feature/stateproviders/NoiseBasedStateProvider;)Ljava/lang/Long; +MD: net/minecraft/world/level/levelgen/feature/stateproviders/NoiseProvider/ ()V net/minecraft/world/level/levelgen/feature/stateproviders/NoiseProvider/ ()V +MD: net/minecraft/world/level/levelgen/feature/stateproviders/NoiseProvider/ (JLnet/minecraft/world/level/levelgen/synth/NormalNoise$NoiseParameters;FLjava/util/List;)V net/minecraft/world/level/levelgen/feature/stateproviders/NoiseProvider/ (JLnet/minecraft/world/level/levelgen/synth/NormalNoise$NoiseParameters;FLjava/util/List;)V +MD: net/minecraft/world/level/levelgen/feature/stateproviders/NoiseProvider/m_191447_ (Lnet/minecraft/world/level/levelgen/feature/stateproviders/NoiseProvider;)Ljava/util/List; net/minecraft/world/level/levelgen/feature/stateproviders/NoiseProvider/lambda$noiseProviderCodec$0 (Lnet/minecraft/world/level/levelgen/feature/stateproviders/NoiseProvider;)Ljava/util/List; +MD: net/minecraft/world/level/levelgen/feature/stateproviders/NoiseProvider/m_191449_ (Ljava/util/List;D)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/levelgen/feature/stateproviders/NoiseProvider/getRandomState (Ljava/util/List;D)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/levelgen/feature/stateproviders/NoiseProvider/m_191452_ (Ljava/util/List;Lnet/minecraft/core/BlockPos;D)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/levelgen/feature/stateproviders/NoiseProvider/getRandomState (Ljava/util/List;Lnet/minecraft/core/BlockPos;D)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/levelgen/feature/stateproviders/NoiseProvider/m_191459_ (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/Products$P4; net/minecraft/world/level/levelgen/feature/stateproviders/NoiseProvider/noiseProviderCodec (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/Products$P4; +MD: net/minecraft/world/level/levelgen/feature/stateproviders/NoiseProvider/m_191461_ (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/world/level/levelgen/feature/stateproviders/NoiseProvider/lambda$static$1 (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/world/level/levelgen/feature/stateproviders/NoiseProvider/m_213972_ (Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/levelgen/feature/stateproviders/NoiseProvider/getState (Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/levelgen/feature/stateproviders/NoiseProvider/m_5923_ ()Lnet/minecraft/world/level/levelgen/feature/stateproviders/BlockStateProviderType; net/minecraft/world/level/levelgen/feature/stateproviders/NoiseProvider/type ()Lnet/minecraft/world/level/levelgen/feature/stateproviders/BlockStateProviderType; +MD: net/minecraft/world/level/levelgen/feature/stateproviders/NoiseThresholdProvider/ ()V net/minecraft/world/level/levelgen/feature/stateproviders/NoiseThresholdProvider/ ()V +MD: net/minecraft/world/level/levelgen/feature/stateproviders/NoiseThresholdProvider/ (JLnet/minecraft/world/level/levelgen/synth/NormalNoise$NoiseParameters;FFFLnet/minecraft/world/level/block/state/BlockState;Ljava/util/List;Ljava/util/List;)V net/minecraft/world/level/levelgen/feature/stateproviders/NoiseThresholdProvider/ (JLnet/minecraft/world/level/levelgen/synth/NormalNoise$NoiseParameters;FFFLnet/minecraft/world/level/block/state/BlockState;Ljava/util/List;Ljava/util/List;)V +MD: net/minecraft/world/level/levelgen/feature/stateproviders/NoiseThresholdProvider/m_191480_ (Lnet/minecraft/world/level/levelgen/feature/stateproviders/NoiseThresholdProvider;)Ljava/util/List; net/minecraft/world/level/levelgen/feature/stateproviders/NoiseThresholdProvider/lambda$static$4 (Lnet/minecraft/world/level/levelgen/feature/stateproviders/NoiseThresholdProvider;)Ljava/util/List; +MD: net/minecraft/world/level/levelgen/feature/stateproviders/NoiseThresholdProvider/m_191485_ (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/world/level/levelgen/feature/stateproviders/NoiseThresholdProvider/lambda$static$5 (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/world/level/levelgen/feature/stateproviders/NoiseThresholdProvider/m_191487_ (Lnet/minecraft/world/level/levelgen/feature/stateproviders/NoiseThresholdProvider;)Ljava/util/List; net/minecraft/world/level/levelgen/feature/stateproviders/NoiseThresholdProvider/lambda$static$3 (Lnet/minecraft/world/level/levelgen/feature/stateproviders/NoiseThresholdProvider;)Ljava/util/List; +MD: net/minecraft/world/level/levelgen/feature/stateproviders/NoiseThresholdProvider/m_191489_ (Lnet/minecraft/world/level/levelgen/feature/stateproviders/NoiseThresholdProvider;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/levelgen/feature/stateproviders/NoiseThresholdProvider/lambda$static$2 (Lnet/minecraft/world/level/levelgen/feature/stateproviders/NoiseThresholdProvider;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/levelgen/feature/stateproviders/NoiseThresholdProvider/m_191491_ (Lnet/minecraft/world/level/levelgen/feature/stateproviders/NoiseThresholdProvider;)Ljava/lang/Float; net/minecraft/world/level/levelgen/feature/stateproviders/NoiseThresholdProvider/lambda$static$1 (Lnet/minecraft/world/level/levelgen/feature/stateproviders/NoiseThresholdProvider;)Ljava/lang/Float; +MD: net/minecraft/world/level/levelgen/feature/stateproviders/NoiseThresholdProvider/m_191493_ (Lnet/minecraft/world/level/levelgen/feature/stateproviders/NoiseThresholdProvider;)Ljava/lang/Float; net/minecraft/world/level/levelgen/feature/stateproviders/NoiseThresholdProvider/lambda$static$0 (Lnet/minecraft/world/level/levelgen/feature/stateproviders/NoiseThresholdProvider;)Ljava/lang/Float; +MD: net/minecraft/world/level/levelgen/feature/stateproviders/NoiseThresholdProvider/m_213972_ (Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/levelgen/feature/stateproviders/NoiseThresholdProvider/getState (Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/levelgen/feature/stateproviders/NoiseThresholdProvider/m_5923_ ()Lnet/minecraft/world/level/levelgen/feature/stateproviders/BlockStateProviderType; net/minecraft/world/level/levelgen/feature/stateproviders/NoiseThresholdProvider/type ()Lnet/minecraft/world/level/levelgen/feature/stateproviders/BlockStateProviderType; +MD: net/minecraft/world/level/levelgen/feature/stateproviders/RandomizedIntStateProvider/ ()V net/minecraft/world/level/levelgen/feature/stateproviders/RandomizedIntStateProvider/ ()V +MD: net/minecraft/world/level/levelgen/feature/stateproviders/RandomizedIntStateProvider/ (Lnet/minecraft/world/level/levelgen/feature/stateproviders/BlockStateProvider;Lnet/minecraft/world/level/block/state/properties/IntegerProperty;Lnet/minecraft/util/valueproviders/IntProvider;)V net/minecraft/world/level/levelgen/feature/stateproviders/RandomizedIntStateProvider/ (Lnet/minecraft/world/level/levelgen/feature/stateproviders/BlockStateProvider;Lnet/minecraft/world/level/block/state/properties/IntegerProperty;Lnet/minecraft/util/valueproviders/IntProvider;)V +MD: net/minecraft/world/level/levelgen/feature/stateproviders/RandomizedIntStateProvider/ (Lnet/minecraft/world/level/levelgen/feature/stateproviders/BlockStateProvider;Ljava/lang/String;Lnet/minecraft/util/valueproviders/IntProvider;)V net/minecraft/world/level/levelgen/feature/stateproviders/RandomizedIntStateProvider/ (Lnet/minecraft/world/level/levelgen/feature/stateproviders/BlockStateProvider;Ljava/lang/String;Lnet/minecraft/util/valueproviders/IntProvider;)V +MD: net/minecraft/world/level/levelgen/feature/stateproviders/RandomizedIntStateProvider/m_161570_ (Lnet/minecraft/world/level/block/state/BlockState;Ljava/lang/String;)Lnet/minecraft/world/level/block/state/properties/IntegerProperty; net/minecraft/world/level/levelgen/feature/stateproviders/RandomizedIntStateProvider/findProperty (Lnet/minecraft/world/level/block/state/BlockState;Ljava/lang/String;)Lnet/minecraft/world/level/block/state/properties/IntegerProperty; +MD: net/minecraft/world/level/levelgen/feature/stateproviders/RandomizedIntStateProvider/m_161573_ (Lnet/minecraft/world/level/block/state/properties/Property;)Lnet/minecraft/world/level/block/state/properties/IntegerProperty; net/minecraft/world/level/levelgen/feature/stateproviders/RandomizedIntStateProvider/lambda$findProperty$6 (Lnet/minecraft/world/level/block/state/properties/Property;)Lnet/minecraft/world/level/block/state/properties/IntegerProperty; +MD: net/minecraft/world/level/levelgen/feature/stateproviders/RandomizedIntStateProvider/m_161575_ (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/world/level/levelgen/feature/stateproviders/RandomizedIntStateProvider/lambda$static$3 (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/world/level/levelgen/feature/stateproviders/RandomizedIntStateProvider/m_161577_ (Lnet/minecraft/world/level/levelgen/feature/stateproviders/RandomizedIntStateProvider;)Lnet/minecraft/util/valueproviders/IntProvider; net/minecraft/world/level/levelgen/feature/stateproviders/RandomizedIntStateProvider/lambda$static$2 (Lnet/minecraft/world/level/levelgen/feature/stateproviders/RandomizedIntStateProvider;)Lnet/minecraft/util/valueproviders/IntProvider; +MD: net/minecraft/world/level/levelgen/feature/stateproviders/RandomizedIntStateProvider/m_161579_ (Ljava/lang/String;)Ljava/lang/IllegalArgumentException; net/minecraft/world/level/levelgen/feature/stateproviders/RandomizedIntStateProvider/lambda$findProperty$7 (Ljava/lang/String;)Ljava/lang/IllegalArgumentException; +MD: net/minecraft/world/level/levelgen/feature/stateproviders/RandomizedIntStateProvider/m_161581_ (Ljava/lang/String;Lnet/minecraft/world/level/block/state/properties/Property;)Z net/minecraft/world/level/levelgen/feature/stateproviders/RandomizedIntStateProvider/lambda$findProperty$4 (Ljava/lang/String;Lnet/minecraft/world/level/block/state/properties/Property;)Z +MD: net/minecraft/world/level/levelgen/feature/stateproviders/RandomizedIntStateProvider/m_161587_ (Lnet/minecraft/world/level/block/state/properties/Property;)Z net/minecraft/world/level/levelgen/feature/stateproviders/RandomizedIntStateProvider/lambda$findProperty$5 (Lnet/minecraft/world/level/block/state/properties/Property;)Z +MD: net/minecraft/world/level/levelgen/feature/stateproviders/RandomizedIntStateProvider/m_161589_ (Lnet/minecraft/world/level/levelgen/feature/stateproviders/RandomizedIntStateProvider;)Ljava/lang/String; net/minecraft/world/level/levelgen/feature/stateproviders/RandomizedIntStateProvider/lambda$static$1 (Lnet/minecraft/world/level/levelgen/feature/stateproviders/RandomizedIntStateProvider;)Ljava/lang/String; +MD: net/minecraft/world/level/levelgen/feature/stateproviders/RandomizedIntStateProvider/m_161591_ (Lnet/minecraft/world/level/levelgen/feature/stateproviders/RandomizedIntStateProvider;)Lnet/minecraft/world/level/levelgen/feature/stateproviders/BlockStateProvider; net/minecraft/world/level/levelgen/feature/stateproviders/RandomizedIntStateProvider/lambda$static$0 (Lnet/minecraft/world/level/levelgen/feature/stateproviders/RandomizedIntStateProvider;)Lnet/minecraft/world/level/levelgen/feature/stateproviders/BlockStateProvider; +MD: net/minecraft/world/level/levelgen/feature/stateproviders/RandomizedIntStateProvider/m_213972_ (Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/levelgen/feature/stateproviders/RandomizedIntStateProvider/getState (Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/levelgen/feature/stateproviders/RandomizedIntStateProvider/m_5923_ ()Lnet/minecraft/world/level/levelgen/feature/stateproviders/BlockStateProviderType; net/minecraft/world/level/levelgen/feature/stateproviders/RandomizedIntStateProvider/type ()Lnet/minecraft/world/level/levelgen/feature/stateproviders/BlockStateProviderType; +MD: net/minecraft/world/level/levelgen/feature/stateproviders/RotatedBlockProvider/ ()V net/minecraft/world/level/levelgen/feature/stateproviders/RotatedBlockProvider/ ()V +MD: net/minecraft/world/level/levelgen/feature/stateproviders/RotatedBlockProvider/ (Lnet/minecraft/world/level/block/Block;)V net/minecraft/world/level/levelgen/feature/stateproviders/RotatedBlockProvider/ (Lnet/minecraft/world/level/block/Block;)V +MD: net/minecraft/world/level/levelgen/feature/stateproviders/RotatedBlockProvider/m_213972_ (Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/levelgen/feature/stateproviders/RotatedBlockProvider/getState (Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/levelgen/feature/stateproviders/RotatedBlockProvider/m_5923_ ()Lnet/minecraft/world/level/levelgen/feature/stateproviders/BlockStateProviderType; net/minecraft/world/level/levelgen/feature/stateproviders/RotatedBlockProvider/type ()Lnet/minecraft/world/level/levelgen/feature/stateproviders/BlockStateProviderType; +MD: net/minecraft/world/level/levelgen/feature/stateproviders/RotatedBlockProvider/m_68792_ (Lnet/minecraft/world/level/levelgen/feature/stateproviders/RotatedBlockProvider;)Lnet/minecraft/world/level/block/Block; net/minecraft/world/level/levelgen/feature/stateproviders/RotatedBlockProvider/lambda$static$0 (Lnet/minecraft/world/level/levelgen/feature/stateproviders/RotatedBlockProvider;)Lnet/minecraft/world/level/block/Block; +MD: net/minecraft/world/level/levelgen/feature/stateproviders/RuleBasedBlockStateProvider/ ()V net/minecraft/world/level/levelgen/feature/stateproviders/RuleBasedBlockStateProvider/ ()V +MD: net/minecraft/world/level/levelgen/feature/stateproviders/RuleBasedBlockStateProvider/ (Lnet/minecraft/world/level/levelgen/feature/stateproviders/BlockStateProvider;Ljava/util/List;)V net/minecraft/world/level/levelgen/feature/stateproviders/RuleBasedBlockStateProvider/ (Lnet/minecraft/world/level/levelgen/feature/stateproviders/BlockStateProvider;Ljava/util/List;)V +MD: net/minecraft/world/level/levelgen/feature/stateproviders/RuleBasedBlockStateProvider/equals (Ljava/lang/Object;)Z net/minecraft/world/level/levelgen/feature/stateproviders/RuleBasedBlockStateProvider/equals (Ljava/lang/Object;)Z +MD: net/minecraft/world/level/levelgen/feature/stateproviders/RuleBasedBlockStateProvider/f_225925_ ()Lnet/minecraft/world/level/levelgen/feature/stateproviders/BlockStateProvider; net/minecraft/world/level/levelgen/feature/stateproviders/RuleBasedBlockStateProvider/fallback ()Lnet/minecraft/world/level/levelgen/feature/stateproviders/BlockStateProvider; +MD: net/minecraft/world/level/levelgen/feature/stateproviders/RuleBasedBlockStateProvider/f_225926_ ()Ljava/util/List; net/minecraft/world/level/levelgen/feature/stateproviders/RuleBasedBlockStateProvider/rules ()Ljava/util/List; +MD: net/minecraft/world/level/levelgen/feature/stateproviders/RuleBasedBlockStateProvider/hashCode ()I net/minecraft/world/level/levelgen/feature/stateproviders/RuleBasedBlockStateProvider/hashCode ()I +MD: net/minecraft/world/level/levelgen/feature/stateproviders/RuleBasedBlockStateProvider/m_225932_ (Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/levelgen/feature/stateproviders/RuleBasedBlockStateProvider/getState (Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/levelgen/feature/stateproviders/RuleBasedBlockStateProvider/m_225936_ (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/levelgen/feature/stateproviders/RuleBasedBlockStateProvider; net/minecraft/world/level/levelgen/feature/stateproviders/RuleBasedBlockStateProvider/simple (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/levelgen/feature/stateproviders/RuleBasedBlockStateProvider; +MD: net/minecraft/world/level/levelgen/feature/stateproviders/RuleBasedBlockStateProvider/m_225938_ (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/world/level/levelgen/feature/stateproviders/RuleBasedBlockStateProvider/lambda$static$0 (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/world/level/levelgen/feature/stateproviders/RuleBasedBlockStateProvider/m_225940_ (Lnet/minecraft/world/level/levelgen/feature/stateproviders/BlockStateProvider;)Lnet/minecraft/world/level/levelgen/feature/stateproviders/RuleBasedBlockStateProvider; net/minecraft/world/level/levelgen/feature/stateproviders/RuleBasedBlockStateProvider/simple (Lnet/minecraft/world/level/levelgen/feature/stateproviders/BlockStateProvider;)Lnet/minecraft/world/level/levelgen/feature/stateproviders/RuleBasedBlockStateProvider; +MD: net/minecraft/world/level/levelgen/feature/stateproviders/RuleBasedBlockStateProvider/toString ()Ljava/lang/String; net/minecraft/world/level/levelgen/feature/stateproviders/RuleBasedBlockStateProvider/toString ()Ljava/lang/String; +MD: net/minecraft/world/level/levelgen/feature/stateproviders/RuleBasedBlockStateProvider$Rule/ ()V net/minecraft/world/level/levelgen/feature/stateproviders/RuleBasedBlockStateProvider$Rule/ ()V +MD: net/minecraft/world/level/levelgen/feature/stateproviders/RuleBasedBlockStateProvider$Rule/ (Lnet/minecraft/world/level/levelgen/blockpredicates/BlockPredicate;Lnet/minecraft/world/level/levelgen/feature/stateproviders/BlockStateProvider;)V net/minecraft/world/level/levelgen/feature/stateproviders/RuleBasedBlockStateProvider$Rule/ (Lnet/minecraft/world/level/levelgen/blockpredicates/BlockPredicate;Lnet/minecraft/world/level/levelgen/feature/stateproviders/BlockStateProvider;)V +MD: net/minecraft/world/level/levelgen/feature/stateproviders/RuleBasedBlockStateProvider$Rule/equals (Ljava/lang/Object;)Z net/minecraft/world/level/levelgen/feature/stateproviders/RuleBasedBlockStateProvider$Rule/equals (Ljava/lang/Object;)Z +MD: net/minecraft/world/level/levelgen/feature/stateproviders/RuleBasedBlockStateProvider$Rule/f_225948_ ()Lnet/minecraft/world/level/levelgen/blockpredicates/BlockPredicate; net/minecraft/world/level/levelgen/feature/stateproviders/RuleBasedBlockStateProvider$Rule/ifTrue ()Lnet/minecraft/world/level/levelgen/blockpredicates/BlockPredicate; +MD: net/minecraft/world/level/levelgen/feature/stateproviders/RuleBasedBlockStateProvider$Rule/f_225949_ ()Lnet/minecraft/world/level/levelgen/feature/stateproviders/BlockStateProvider; net/minecraft/world/level/levelgen/feature/stateproviders/RuleBasedBlockStateProvider$Rule/then ()Lnet/minecraft/world/level/levelgen/feature/stateproviders/BlockStateProvider; +MD: net/minecraft/world/level/levelgen/feature/stateproviders/RuleBasedBlockStateProvider$Rule/hashCode ()I net/minecraft/world/level/levelgen/feature/stateproviders/RuleBasedBlockStateProvider$Rule/hashCode ()I +MD: net/minecraft/world/level/levelgen/feature/stateproviders/RuleBasedBlockStateProvider$Rule/m_225955_ (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/world/level/levelgen/feature/stateproviders/RuleBasedBlockStateProvider$Rule/lambda$static$0 (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/world/level/levelgen/feature/stateproviders/RuleBasedBlockStateProvider$Rule/toString ()Ljava/lang/String; net/minecraft/world/level/levelgen/feature/stateproviders/RuleBasedBlockStateProvider$Rule/toString ()Ljava/lang/String; +MD: net/minecraft/world/level/levelgen/feature/stateproviders/SimpleStateProvider/ ()V net/minecraft/world/level/levelgen/feature/stateproviders/SimpleStateProvider/ ()V +MD: net/minecraft/world/level/levelgen/feature/stateproviders/SimpleStateProvider/ (Lnet/minecraft/world/level/block/state/BlockState;)V net/minecraft/world/level/levelgen/feature/stateproviders/SimpleStateProvider/ (Lnet/minecraft/world/level/block/state/BlockState;)V +MD: net/minecraft/world/level/levelgen/feature/stateproviders/SimpleStateProvider/m_213972_ (Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/levelgen/feature/stateproviders/SimpleStateProvider/getState (Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/levelgen/feature/stateproviders/SimpleStateProvider/m_5923_ ()Lnet/minecraft/world/level/levelgen/feature/stateproviders/BlockStateProviderType; net/minecraft/world/level/levelgen/feature/stateproviders/SimpleStateProvider/type ()Lnet/minecraft/world/level/levelgen/feature/stateproviders/BlockStateProviderType; +MD: net/minecraft/world/level/levelgen/feature/stateproviders/SimpleStateProvider/m_68803_ (Lnet/minecraft/world/level/levelgen/feature/stateproviders/SimpleStateProvider;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/levelgen/feature/stateproviders/SimpleStateProvider/lambda$static$0 (Lnet/minecraft/world/level/levelgen/feature/stateproviders/SimpleStateProvider;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/levelgen/feature/stateproviders/WeightedStateProvider/ ()V net/minecraft/world/level/levelgen/feature/stateproviders/WeightedStateProvider/ ()V +MD: net/minecraft/world/level/levelgen/feature/stateproviders/WeightedStateProvider/ (Lnet/minecraft/util/random/SimpleWeightedRandomList;)V net/minecraft/world/level/levelgen/feature/stateproviders/WeightedStateProvider/ (Lnet/minecraft/util/random/SimpleWeightedRandomList;)V +MD: net/minecraft/world/level/levelgen/feature/stateproviders/WeightedStateProvider/ (Lnet/minecraft/util/random/SimpleWeightedRandomList$Builder;)V net/minecraft/world/level/levelgen/feature/stateproviders/WeightedStateProvider/ (Lnet/minecraft/util/random/SimpleWeightedRandomList$Builder;)V +MD: net/minecraft/world/level/levelgen/feature/stateproviders/WeightedStateProvider/m_161597_ (Lnet/minecraft/util/random/SimpleWeightedRandomList;)Lcom/mojang/serialization/DataResult; net/minecraft/world/level/levelgen/feature/stateproviders/WeightedStateProvider/create (Lnet/minecraft/util/random/SimpleWeightedRandomList;)Lcom/mojang/serialization/DataResult; +MD: net/minecraft/world/level/levelgen/feature/stateproviders/WeightedStateProvider/m_161599_ (Lnet/minecraft/world/level/levelgen/feature/stateproviders/WeightedStateProvider;)Lnet/minecraft/util/random/SimpleWeightedRandomList; net/minecraft/world/level/levelgen/feature/stateproviders/WeightedStateProvider/lambda$static$0 (Lnet/minecraft/world/level/levelgen/feature/stateproviders/WeightedStateProvider;)Lnet/minecraft/util/random/SimpleWeightedRandomList; +MD: net/minecraft/world/level/levelgen/feature/stateproviders/WeightedStateProvider/m_213972_ (Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/levelgen/feature/stateproviders/WeightedStateProvider/getState (Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/levelgen/feature/stateproviders/WeightedStateProvider/m_274289_ ()Ljava/lang/String; net/minecraft/world/level/levelgen/feature/stateproviders/WeightedStateProvider/lambda$create$1 ()Ljava/lang/String; +MD: net/minecraft/world/level/levelgen/feature/stateproviders/WeightedStateProvider/m_5923_ ()Lnet/minecraft/world/level/levelgen/feature/stateproviders/BlockStateProviderType; net/minecraft/world/level/levelgen/feature/stateproviders/WeightedStateProvider/type ()Lnet/minecraft/world/level/levelgen/feature/stateproviders/BlockStateProviderType; +MD: net/minecraft/world/level/levelgen/feature/treedecorators/AlterGroundDecorator/ ()V net/minecraft/world/level/levelgen/feature/treedecorators/AlterGroundDecorator/ ()V +MD: net/minecraft/world/level/levelgen/feature/treedecorators/AlterGroundDecorator/ (Lnet/minecraft/world/level/levelgen/feature/stateproviders/BlockStateProvider;)V net/minecraft/world/level/levelgen/feature/treedecorators/AlterGroundDecorator/ (Lnet/minecraft/world/level/levelgen/feature/stateproviders/BlockStateProvider;)V +MD: net/minecraft/world/level/levelgen/feature/treedecorators/AlterGroundDecorator/m_214187_ (Lnet/minecraft/world/level/levelgen/feature/treedecorators/TreeDecorator$Context;)V net/minecraft/world/level/levelgen/feature/treedecorators/AlterGroundDecorator/place (Lnet/minecraft/world/level/levelgen/feature/treedecorators/TreeDecorator$Context;)V +MD: net/minecraft/world/level/levelgen/feature/treedecorators/AlterGroundDecorator/m_225970_ (Lnet/minecraft/world/level/levelgen/feature/treedecorators/TreeDecorator$Context;Lnet/minecraft/core/BlockPos;)V net/minecraft/world/level/levelgen/feature/treedecorators/AlterGroundDecorator/placeCircle (Lnet/minecraft/world/level/levelgen/feature/treedecorators/TreeDecorator$Context;Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/world/level/levelgen/feature/treedecorators/AlterGroundDecorator/m_225973_ (Lnet/minecraft/world/level/levelgen/feature/treedecorators/TreeDecorator$Context;Lnet/minecraft/core/BlockPos;)V net/minecraft/world/level/levelgen/feature/treedecorators/AlterGroundDecorator/placeBlockAt (Lnet/minecraft/world/level/levelgen/feature/treedecorators/TreeDecorator$Context;Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/world/level/levelgen/feature/treedecorators/AlterGroundDecorator/m_225976_ (Lnet/minecraft/world/level/levelgen/feature/treedecorators/TreeDecorator$Context;Lnet/minecraft/core/BlockPos;)V net/minecraft/world/level/levelgen/feature/treedecorators/AlterGroundDecorator/lambda$place$2 (Lnet/minecraft/world/level/levelgen/feature/treedecorators/TreeDecorator$Context;Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/world/level/levelgen/feature/treedecorators/AlterGroundDecorator/m_6663_ ()Lnet/minecraft/world/level/levelgen/feature/treedecorators/TreeDecoratorType; net/minecraft/world/level/levelgen/feature/treedecorators/AlterGroundDecorator/type ()Lnet/minecraft/world/level/levelgen/feature/treedecorators/TreeDecoratorType; +MD: net/minecraft/world/level/levelgen/feature/treedecorators/AlterGroundDecorator/m_69308_ (ILnet/minecraft/core/BlockPos;)Z net/minecraft/world/level/levelgen/feature/treedecorators/AlterGroundDecorator/lambda$place$1 (ILnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/level/levelgen/feature/treedecorators/AlterGroundDecorator/m_69326_ (Lnet/minecraft/world/level/levelgen/feature/treedecorators/AlterGroundDecorator;)Lnet/minecraft/world/level/levelgen/feature/stateproviders/BlockStateProvider; net/minecraft/world/level/levelgen/feature/treedecorators/AlterGroundDecorator/lambda$static$0 (Lnet/minecraft/world/level/levelgen/feature/treedecorators/AlterGroundDecorator;)Lnet/minecraft/world/level/levelgen/feature/stateproviders/BlockStateProvider; +MD: net/minecraft/world/level/levelgen/feature/treedecorators/AttachedToLeavesDecorator/ ()V net/minecraft/world/level/levelgen/feature/treedecorators/AttachedToLeavesDecorator/ ()V +MD: net/minecraft/world/level/levelgen/feature/treedecorators/AttachedToLeavesDecorator/ (FIILnet/minecraft/world/level/levelgen/feature/stateproviders/BlockStateProvider;ILjava/util/List;)V net/minecraft/world/level/levelgen/feature/treedecorators/AttachedToLeavesDecorator/ (FIILnet/minecraft/world/level/levelgen/feature/stateproviders/BlockStateProvider;ILjava/util/List;)V +MD: net/minecraft/world/level/levelgen/feature/treedecorators/AttachedToLeavesDecorator/m_214187_ (Lnet/minecraft/world/level/levelgen/feature/treedecorators/TreeDecorator$Context;)V net/minecraft/world/level/levelgen/feature/treedecorators/AttachedToLeavesDecorator/place (Lnet/minecraft/world/level/levelgen/feature/treedecorators/TreeDecorator$Context;)V +MD: net/minecraft/world/level/levelgen/feature/treedecorators/AttachedToLeavesDecorator/m_225995_ (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/world/level/levelgen/feature/treedecorators/AttachedToLeavesDecorator/lambda$static$6 (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/world/level/levelgen/feature/treedecorators/AttachedToLeavesDecorator/m_225997_ (Lnet/minecraft/world/level/levelgen/feature/treedecorators/AttachedToLeavesDecorator;)Ljava/util/List; net/minecraft/world/level/levelgen/feature/treedecorators/AttachedToLeavesDecorator/lambda$static$5 (Lnet/minecraft/world/level/levelgen/feature/treedecorators/AttachedToLeavesDecorator;)Ljava/util/List; +MD: net/minecraft/world/level/levelgen/feature/treedecorators/AttachedToLeavesDecorator/m_226001_ (Lnet/minecraft/world/level/levelgen/feature/treedecorators/TreeDecorator$Context;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Direction;)Z net/minecraft/world/level/levelgen/feature/treedecorators/AttachedToLeavesDecorator/hasRequiredEmptyBlocks (Lnet/minecraft/world/level/levelgen/feature/treedecorators/TreeDecorator$Context;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Direction;)Z +MD: net/minecraft/world/level/levelgen/feature/treedecorators/AttachedToLeavesDecorator/m_226005_ (Lnet/minecraft/world/level/levelgen/feature/treedecorators/AttachedToLeavesDecorator;)Ljava/lang/Integer; net/minecraft/world/level/levelgen/feature/treedecorators/AttachedToLeavesDecorator/lambda$static$4 (Lnet/minecraft/world/level/levelgen/feature/treedecorators/AttachedToLeavesDecorator;)Ljava/lang/Integer; +MD: net/minecraft/world/level/levelgen/feature/treedecorators/AttachedToLeavesDecorator/m_226007_ (Lnet/minecraft/world/level/levelgen/feature/treedecorators/AttachedToLeavesDecorator;)Lnet/minecraft/world/level/levelgen/feature/stateproviders/BlockStateProvider; net/minecraft/world/level/levelgen/feature/treedecorators/AttachedToLeavesDecorator/lambda$static$3 (Lnet/minecraft/world/level/levelgen/feature/treedecorators/AttachedToLeavesDecorator;)Lnet/minecraft/world/level/levelgen/feature/stateproviders/BlockStateProvider; +MD: net/minecraft/world/level/levelgen/feature/treedecorators/AttachedToLeavesDecorator/m_226009_ (Lnet/minecraft/world/level/levelgen/feature/treedecorators/AttachedToLeavesDecorator;)Ljava/lang/Integer; net/minecraft/world/level/levelgen/feature/treedecorators/AttachedToLeavesDecorator/lambda$static$2 (Lnet/minecraft/world/level/levelgen/feature/treedecorators/AttachedToLeavesDecorator;)Ljava/lang/Integer; +MD: net/minecraft/world/level/levelgen/feature/treedecorators/AttachedToLeavesDecorator/m_226011_ (Lnet/minecraft/world/level/levelgen/feature/treedecorators/AttachedToLeavesDecorator;)Ljava/lang/Integer; net/minecraft/world/level/levelgen/feature/treedecorators/AttachedToLeavesDecorator/lambda$static$1 (Lnet/minecraft/world/level/levelgen/feature/treedecorators/AttachedToLeavesDecorator;)Ljava/lang/Integer; +MD: net/minecraft/world/level/levelgen/feature/treedecorators/AttachedToLeavesDecorator/m_226013_ (Lnet/minecraft/world/level/levelgen/feature/treedecorators/AttachedToLeavesDecorator;)Ljava/lang/Float; net/minecraft/world/level/levelgen/feature/treedecorators/AttachedToLeavesDecorator/lambda$static$0 (Lnet/minecraft/world/level/levelgen/feature/treedecorators/AttachedToLeavesDecorator;)Ljava/lang/Float; +MD: net/minecraft/world/level/levelgen/feature/treedecorators/AttachedToLeavesDecorator/m_6663_ ()Lnet/minecraft/world/level/levelgen/feature/treedecorators/TreeDecoratorType; net/minecraft/world/level/levelgen/feature/treedecorators/AttachedToLeavesDecorator/type ()Lnet/minecraft/world/level/levelgen/feature/treedecorators/TreeDecoratorType; +MD: net/minecraft/world/level/levelgen/feature/treedecorators/BeehiveDecorator/ ()V net/minecraft/world/level/levelgen/feature/treedecorators/BeehiveDecorator/ ()V +MD: net/minecraft/world/level/levelgen/feature/treedecorators/BeehiveDecorator/ (F)V net/minecraft/world/level/levelgen/feature/treedecorators/BeehiveDecorator/ (F)V +MD: net/minecraft/world/level/levelgen/feature/treedecorators/BeehiveDecorator/m_202296_ (I)[Lnet/minecraft/core/Direction; net/minecraft/world/level/levelgen/feature/treedecorators/BeehiveDecorator/lambda$static$2 (I)[Lnet/minecraft/core/Direction; +MD: net/minecraft/world/level/levelgen/feature/treedecorators/BeehiveDecorator/m_202298_ (ILnet/minecraft/core/BlockPos;)Z net/minecraft/world/level/levelgen/feature/treedecorators/BeehiveDecorator/lambda$place$3 (ILnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/level/levelgen/feature/treedecorators/BeehiveDecorator/m_202304_ (Lnet/minecraft/core/BlockPos;)Ljava/util/stream/Stream; net/minecraft/world/level/levelgen/feature/treedecorators/BeehiveDecorator/lambda$place$4 (Lnet/minecraft/core/BlockPos;)Ljava/util/stream/Stream; +MD: net/minecraft/world/level/levelgen/feature/treedecorators/BeehiveDecorator/m_202306_ (Lnet/minecraft/core/Direction;)Z net/minecraft/world/level/levelgen/feature/treedecorators/BeehiveDecorator/lambda$static$1 (Lnet/minecraft/core/Direction;)Z +MD: net/minecraft/world/level/levelgen/feature/treedecorators/BeehiveDecorator/m_214187_ (Lnet/minecraft/world/level/levelgen/feature/treedecorators/TreeDecorator$Context;)V net/minecraft/world/level/levelgen/feature/treedecorators/BeehiveDecorator/place (Lnet/minecraft/world/level/levelgen/feature/treedecorators/TreeDecorator$Context;)V +MD: net/minecraft/world/level/levelgen/feature/treedecorators/BeehiveDecorator/m_226020_ (Lnet/minecraft/world/level/levelgen/feature/treedecorators/TreeDecorator$Context;Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/level/levelgen/feature/treedecorators/BeehiveDecorator/lambda$place$5 (Lnet/minecraft/world/level/levelgen/feature/treedecorators/TreeDecorator$Context;Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/level/levelgen/feature/treedecorators/BeehiveDecorator/m_257355_ (Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/block/entity/BeehiveBlockEntity;)V net/minecraft/world/level/levelgen/feature/treedecorators/BeehiveDecorator/lambda$place$6 (Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/block/entity/BeehiveBlockEntity;)V +MD: net/minecraft/world/level/levelgen/feature/treedecorators/BeehiveDecorator/m_6663_ ()Lnet/minecraft/world/level/levelgen/feature/treedecorators/TreeDecoratorType; net/minecraft/world/level/levelgen/feature/treedecorators/BeehiveDecorator/type ()Lnet/minecraft/world/level/levelgen/feature/treedecorators/TreeDecoratorType; +MD: net/minecraft/world/level/levelgen/feature/treedecorators/BeehiveDecorator/m_69970_ (Lnet/minecraft/world/level/levelgen/feature/treedecorators/BeehiveDecorator;)Ljava/lang/Float; net/minecraft/world/level/levelgen/feature/treedecorators/BeehiveDecorator/lambda$static$0 (Lnet/minecraft/world/level/levelgen/feature/treedecorators/BeehiveDecorator;)Ljava/lang/Float; +MD: net/minecraft/world/level/levelgen/feature/treedecorators/CocoaDecorator/ ()V net/minecraft/world/level/levelgen/feature/treedecorators/CocoaDecorator/ ()V +MD: net/minecraft/world/level/levelgen/feature/treedecorators/CocoaDecorator/ (F)V net/minecraft/world/level/levelgen/feature/treedecorators/CocoaDecorator/ (F)V +MD: net/minecraft/world/level/levelgen/feature/treedecorators/CocoaDecorator/m_214187_ (Lnet/minecraft/world/level/levelgen/feature/treedecorators/TreeDecorator$Context;)V net/minecraft/world/level/levelgen/feature/treedecorators/CocoaDecorator/place (Lnet/minecraft/world/level/levelgen/feature/treedecorators/TreeDecorator$Context;)V +MD: net/minecraft/world/level/levelgen/feature/treedecorators/CocoaDecorator/m_226023_ (Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/levelgen/feature/treedecorators/TreeDecorator$Context;Lnet/minecraft/core/BlockPos;)V net/minecraft/world/level/levelgen/feature/treedecorators/CocoaDecorator/lambda$place$2 (Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/levelgen/feature/treedecorators/TreeDecorator$Context;Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/world/level/levelgen/feature/treedecorators/CocoaDecorator/m_6663_ ()Lnet/minecraft/world/level/levelgen/feature/treedecorators/TreeDecoratorType; net/minecraft/world/level/levelgen/feature/treedecorators/CocoaDecorator/type ()Lnet/minecraft/world/level/levelgen/feature/treedecorators/TreeDecoratorType; +MD: net/minecraft/world/level/levelgen/feature/treedecorators/CocoaDecorator/m_69978_ (ILnet/minecraft/core/BlockPos;)Z net/minecraft/world/level/levelgen/feature/treedecorators/CocoaDecorator/lambda$place$1 (ILnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/level/levelgen/feature/treedecorators/CocoaDecorator/m_69988_ (Lnet/minecraft/world/level/levelgen/feature/treedecorators/CocoaDecorator;)Ljava/lang/Float; net/minecraft/world/level/levelgen/feature/treedecorators/CocoaDecorator/lambda$static$0 (Lnet/minecraft/world/level/levelgen/feature/treedecorators/CocoaDecorator;)Ljava/lang/Float; +MD: net/minecraft/world/level/levelgen/feature/treedecorators/LeaveVineDecorator/ ()V net/minecraft/world/level/levelgen/feature/treedecorators/LeaveVineDecorator/ ()V +MD: net/minecraft/world/level/levelgen/feature/treedecorators/LeaveVineDecorator/ (F)V net/minecraft/world/level/levelgen/feature/treedecorators/LeaveVineDecorator/ (F)V +MD: net/minecraft/world/level/levelgen/feature/treedecorators/LeaveVineDecorator/m_214187_ (Lnet/minecraft/world/level/levelgen/feature/treedecorators/TreeDecorator$Context;)V net/minecraft/world/level/levelgen/feature/treedecorators/LeaveVineDecorator/place (Lnet/minecraft/world/level/levelgen/feature/treedecorators/TreeDecorator$Context;)V +MD: net/minecraft/world/level/levelgen/feature/treedecorators/LeaveVineDecorator/m_226032_ (Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/levelgen/feature/treedecorators/TreeDecorator$Context;Lnet/minecraft/core/BlockPos;)V net/minecraft/world/level/levelgen/feature/treedecorators/LeaveVineDecorator/lambda$place$1 (Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/levelgen/feature/treedecorators/TreeDecorator$Context;Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/world/level/levelgen/feature/treedecorators/LeaveVineDecorator/m_226036_ (Lnet/minecraft/world/level/levelgen/feature/treedecorators/LeaveVineDecorator;)Ljava/lang/Float; net/minecraft/world/level/levelgen/feature/treedecorators/LeaveVineDecorator/lambda$static$0 (Lnet/minecraft/world/level/levelgen/feature/treedecorators/LeaveVineDecorator;)Ljava/lang/Float; +MD: net/minecraft/world/level/levelgen/feature/treedecorators/LeaveVineDecorator/m_226040_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/properties/BooleanProperty;Lnet/minecraft/world/level/levelgen/feature/treedecorators/TreeDecorator$Context;)V net/minecraft/world/level/levelgen/feature/treedecorators/LeaveVineDecorator/addHangingVine (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/properties/BooleanProperty;Lnet/minecraft/world/level/levelgen/feature/treedecorators/TreeDecorator$Context;)V +MD: net/minecraft/world/level/levelgen/feature/treedecorators/LeaveVineDecorator/m_6663_ ()Lnet/minecraft/world/level/levelgen/feature/treedecorators/TreeDecoratorType; net/minecraft/world/level/levelgen/feature/treedecorators/LeaveVineDecorator/type ()Lnet/minecraft/world/level/levelgen/feature/treedecorators/TreeDecoratorType; +MD: net/minecraft/world/level/levelgen/feature/treedecorators/TreeDecorator/ ()V net/minecraft/world/level/levelgen/feature/treedecorators/TreeDecorator/ ()V +MD: net/minecraft/world/level/levelgen/feature/treedecorators/TreeDecorator/ ()V net/minecraft/world/level/levelgen/feature/treedecorators/TreeDecorator/ ()V +MD: net/minecraft/world/level/levelgen/feature/treedecorators/TreeDecorator/m_214187_ (Lnet/minecraft/world/level/levelgen/feature/treedecorators/TreeDecorator$Context;)V net/minecraft/world/level/levelgen/feature/treedecorators/TreeDecorator/place (Lnet/minecraft/world/level/levelgen/feature/treedecorators/TreeDecorator$Context;)V +MD: net/minecraft/world/level/levelgen/feature/treedecorators/TreeDecorator/m_6663_ ()Lnet/minecraft/world/level/levelgen/feature/treedecorators/TreeDecoratorType; net/minecraft/world/level/levelgen/feature/treedecorators/TreeDecorator/type ()Lnet/minecraft/world/level/levelgen/feature/treedecorators/TreeDecoratorType; +MD: net/minecraft/world/level/levelgen/feature/treedecorators/TreeDecorator$Context/ (Lnet/minecraft/world/level/LevelSimulatedReader;Ljava/util/function/BiConsumer;Lnet/minecraft/util/RandomSource;Ljava/util/Set;Ljava/util/Set;Ljava/util/Set;)V net/minecraft/world/level/levelgen/feature/treedecorators/TreeDecorator$Context/ (Lnet/minecraft/world/level/LevelSimulatedReader;Ljava/util/function/BiConsumer;Lnet/minecraft/util/RandomSource;Ljava/util/Set;Ljava/util/Set;Ljava/util/Set;)V +MD: net/minecraft/world/level/levelgen/feature/treedecorators/TreeDecorator$Context/m_226058_ ()Lnet/minecraft/world/level/LevelSimulatedReader; net/minecraft/world/level/levelgen/feature/treedecorators/TreeDecorator$Context/level ()Lnet/minecraft/world/level/LevelSimulatedReader; +MD: net/minecraft/world/level/levelgen/feature/treedecorators/TreeDecorator$Context/m_226059_ (Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/level/levelgen/feature/treedecorators/TreeDecorator$Context/isAir (Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/level/levelgen/feature/treedecorators/TreeDecorator$Context/m_226061_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V net/minecraft/world/level/levelgen/feature/treedecorators/TreeDecorator$Context/setBlock (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V +MD: net/minecraft/world/level/levelgen/feature/treedecorators/TreeDecorator$Context/m_226064_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/properties/BooleanProperty;)V net/minecraft/world/level/levelgen/feature/treedecorators/TreeDecorator$Context/placeVine (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/properties/BooleanProperty;)V +MD: net/minecraft/world/level/levelgen/feature/treedecorators/TreeDecorator$Context/m_226067_ ()Lnet/minecraft/util/RandomSource; net/minecraft/world/level/levelgen/feature/treedecorators/TreeDecorator$Context/random ()Lnet/minecraft/util/RandomSource; +MD: net/minecraft/world/level/levelgen/feature/treedecorators/TreeDecorator$Context/m_226068_ ()Lit/unimi/dsi/fastutil/objects/ObjectArrayList; net/minecraft/world/level/levelgen/feature/treedecorators/TreeDecorator$Context/logs ()Lit/unimi/dsi/fastutil/objects/ObjectArrayList; +MD: net/minecraft/world/level/levelgen/feature/treedecorators/TreeDecorator$Context/m_226069_ ()Lit/unimi/dsi/fastutil/objects/ObjectArrayList; net/minecraft/world/level/levelgen/feature/treedecorators/TreeDecorator$Context/leaves ()Lit/unimi/dsi/fastutil/objects/ObjectArrayList; +MD: net/minecraft/world/level/levelgen/feature/treedecorators/TreeDecorator$Context/m_226070_ ()Lit/unimi/dsi/fastutil/objects/ObjectArrayList; net/minecraft/world/level/levelgen/feature/treedecorators/TreeDecorator$Context/roots ()Lit/unimi/dsi/fastutil/objects/ObjectArrayList; +MD: net/minecraft/world/level/levelgen/feature/treedecorators/TreeDecoratorType/ ()V net/minecraft/world/level/levelgen/feature/treedecorators/TreeDecoratorType/ ()V +MD: net/minecraft/world/level/levelgen/feature/treedecorators/TreeDecoratorType/ (Lcom/mojang/serialization/Codec;)V net/minecraft/world/level/levelgen/feature/treedecorators/TreeDecoratorType/ (Lcom/mojang/serialization/Codec;)V +MD: net/minecraft/world/level/levelgen/feature/treedecorators/TreeDecoratorType/m_70051_ ()Lcom/mojang/serialization/Codec; net/minecraft/world/level/levelgen/feature/treedecorators/TreeDecoratorType/codec ()Lcom/mojang/serialization/Codec; +MD: net/minecraft/world/level/levelgen/feature/treedecorators/TreeDecoratorType/m_70052_ (Ljava/lang/String;Lcom/mojang/serialization/Codec;)Lnet/minecraft/world/level/levelgen/feature/treedecorators/TreeDecoratorType; net/minecraft/world/level/levelgen/feature/treedecorators/TreeDecoratorType/register (Ljava/lang/String;Lcom/mojang/serialization/Codec;)Lnet/minecraft/world/level/levelgen/feature/treedecorators/TreeDecoratorType; +MD: net/minecraft/world/level/levelgen/feature/treedecorators/TrunkVineDecorator/ ()V net/minecraft/world/level/levelgen/feature/treedecorators/TrunkVineDecorator/ ()V +MD: net/minecraft/world/level/levelgen/feature/treedecorators/TrunkVineDecorator/ ()V net/minecraft/world/level/levelgen/feature/treedecorators/TrunkVineDecorator/ ()V +MD: net/minecraft/world/level/levelgen/feature/treedecorators/TrunkVineDecorator/m_214187_ (Lnet/minecraft/world/level/levelgen/feature/treedecorators/TreeDecorator$Context;)V net/minecraft/world/level/levelgen/feature/treedecorators/TrunkVineDecorator/place (Lnet/minecraft/world/level/levelgen/feature/treedecorators/TreeDecorator$Context;)V +MD: net/minecraft/world/level/levelgen/feature/treedecorators/TrunkVineDecorator/m_226072_ (Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/levelgen/feature/treedecorators/TreeDecorator$Context;Lnet/minecraft/core/BlockPos;)V net/minecraft/world/level/levelgen/feature/treedecorators/TrunkVineDecorator/lambda$place$1 (Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/levelgen/feature/treedecorators/TreeDecorator$Context;Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/world/level/levelgen/feature/treedecorators/TrunkVineDecorator/m_6663_ ()Lnet/minecraft/world/level/levelgen/feature/treedecorators/TreeDecoratorType; net/minecraft/world/level/levelgen/feature/treedecorators/TrunkVineDecorator/type ()Lnet/minecraft/world/level/levelgen/feature/treedecorators/TreeDecoratorType; +MD: net/minecraft/world/level/levelgen/feature/treedecorators/TrunkVineDecorator/m_70073_ ()Lnet/minecraft/world/level/levelgen/feature/treedecorators/TrunkVineDecorator; net/minecraft/world/level/levelgen/feature/treedecorators/TrunkVineDecorator/lambda$static$0 ()Lnet/minecraft/world/level/levelgen/feature/treedecorators/TrunkVineDecorator; +MD: net/minecraft/world/level/levelgen/feature/trunkplacers/BendingTrunkPlacer/ ()V net/minecraft/world/level/levelgen/feature/trunkplacers/BendingTrunkPlacer/ ()V +MD: net/minecraft/world/level/levelgen/feature/trunkplacers/BendingTrunkPlacer/ (IIIILnet/minecraft/util/valueproviders/IntProvider;)V net/minecraft/world/level/levelgen/feature/trunkplacers/BendingTrunkPlacer/ (IIIILnet/minecraft/util/valueproviders/IntProvider;)V +MD: net/minecraft/world/level/levelgen/feature/trunkplacers/BendingTrunkPlacer/m_161783_ (Lnet/minecraft/world/level/levelgen/feature/trunkplacers/BendingTrunkPlacer;)Lnet/minecraft/util/valueproviders/IntProvider; net/minecraft/world/level/levelgen/feature/trunkplacers/BendingTrunkPlacer/lambda$static$1 (Lnet/minecraft/world/level/levelgen/feature/trunkplacers/BendingTrunkPlacer;)Lnet/minecraft/util/valueproviders/IntProvider; +MD: net/minecraft/world/level/levelgen/feature/trunkplacers/BendingTrunkPlacer/m_161785_ (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/world/level/levelgen/feature/trunkplacers/BendingTrunkPlacer/lambda$static$2 (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/world/level/levelgen/feature/trunkplacers/BendingTrunkPlacer/m_161787_ (Lnet/minecraft/world/level/levelgen/feature/trunkplacers/BendingTrunkPlacer;)Ljava/lang/Integer; net/minecraft/world/level/levelgen/feature/trunkplacers/BendingTrunkPlacer/lambda$static$0 (Lnet/minecraft/world/level/levelgen/feature/trunkplacers/BendingTrunkPlacer;)Ljava/lang/Integer; +MD: net/minecraft/world/level/levelgen/feature/trunkplacers/BendingTrunkPlacer/m_213934_ (Lnet/minecraft/world/level/LevelSimulatedReader;Ljava/util/function/BiConsumer;Lnet/minecraft/util/RandomSource;ILnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/levelgen/feature/configurations/TreeConfiguration;)Ljava/util/List; net/minecraft/world/level/levelgen/feature/trunkplacers/BendingTrunkPlacer/placeTrunk (Lnet/minecraft/world/level/LevelSimulatedReader;Ljava/util/function/BiConsumer;Lnet/minecraft/util/RandomSource;ILnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/levelgen/feature/configurations/TreeConfiguration;)Ljava/util/List; +MD: net/minecraft/world/level/levelgen/feature/trunkplacers/BendingTrunkPlacer/m_7362_ ()Lnet/minecraft/world/level/levelgen/feature/trunkplacers/TrunkPlacerType; net/minecraft/world/level/levelgen/feature/trunkplacers/BendingTrunkPlacer/type ()Lnet/minecraft/world/level/levelgen/feature/trunkplacers/TrunkPlacerType; +MD: net/minecraft/world/level/levelgen/feature/trunkplacers/CherryTrunkPlacer/ ()V net/minecraft/world/level/levelgen/feature/trunkplacers/CherryTrunkPlacer/ ()V +MD: net/minecraft/world/level/levelgen/feature/trunkplacers/CherryTrunkPlacer/ (IIILnet/minecraft/util/valueproviders/IntProvider;Lnet/minecraft/util/valueproviders/IntProvider;Lnet/minecraft/util/valueproviders/UniformInt;Lnet/minecraft/util/valueproviders/IntProvider;)V net/minecraft/world/level/levelgen/feature/trunkplacers/CherryTrunkPlacer/ (IIILnet/minecraft/util/valueproviders/IntProvider;Lnet/minecraft/util/valueproviders/IntProvider;Lnet/minecraft/util/valueproviders/UniformInt;Lnet/minecraft/util/valueproviders/IntProvider;)V +MD: net/minecraft/world/level/levelgen/feature/trunkplacers/CherryTrunkPlacer/m_213934_ (Lnet/minecraft/world/level/LevelSimulatedReader;Ljava/util/function/BiConsumer;Lnet/minecraft/util/RandomSource;ILnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/levelgen/feature/configurations/TreeConfiguration;)Ljava/util/List; net/minecraft/world/level/levelgen/feature/trunkplacers/CherryTrunkPlacer/placeTrunk (Lnet/minecraft/world/level/LevelSimulatedReader;Ljava/util/function/BiConsumer;Lnet/minecraft/util/RandomSource;ILnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/levelgen/feature/configurations/TreeConfiguration;)Ljava/util/List; +MD: net/minecraft/world/level/levelgen/feature/trunkplacers/CherryTrunkPlacer/m_271878_ (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/world/level/levelgen/feature/trunkplacers/CherryTrunkPlacer/lambda$static$6 (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/world/level/levelgen/feature/trunkplacers/CherryTrunkPlacer/m_271967_ (Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/levelgen/feature/trunkplacers/CherryTrunkPlacer/lambda$placeTrunk$7 (Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/levelgen/feature/trunkplacers/CherryTrunkPlacer/m_271969_ (Lnet/minecraft/world/level/LevelSimulatedReader;Ljava/util/function/BiConsumer;Lnet/minecraft/util/RandomSource;ILnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/levelgen/feature/configurations/TreeConfiguration;Ljava/util/function/Function;Lnet/minecraft/core/Direction;IZLnet/minecraft/core/BlockPos$MutableBlockPos;)Lnet/minecraft/world/level/levelgen/feature/foliageplacers/FoliagePlacer$FoliageAttachment; net/minecraft/world/level/levelgen/feature/trunkplacers/CherryTrunkPlacer/generateBranch (Lnet/minecraft/world/level/LevelSimulatedReader;Ljava/util/function/BiConsumer;Lnet/minecraft/util/RandomSource;ILnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/levelgen/feature/configurations/TreeConfiguration;Ljava/util/function/Function;Lnet/minecraft/core/Direction;IZLnet/minecraft/core/BlockPos$MutableBlockPos;)Lnet/minecraft/world/level/levelgen/feature/foliageplacers/FoliagePlacer$FoliageAttachment; +MD: net/minecraft/world/level/levelgen/feature/trunkplacers/CherryTrunkPlacer/m_272093_ (Lnet/minecraft/world/level/levelgen/feature/trunkplacers/CherryTrunkPlacer;)Lnet/minecraft/util/valueproviders/IntProvider; net/minecraft/world/level/levelgen/feature/trunkplacers/CherryTrunkPlacer/lambda$static$2 (Lnet/minecraft/world/level/levelgen/feature/trunkplacers/CherryTrunkPlacer;)Lnet/minecraft/util/valueproviders/IntProvider; +MD: net/minecraft/world/level/levelgen/feature/trunkplacers/CherryTrunkPlacer/m_272118_ (Lnet/minecraft/world/level/levelgen/feature/trunkplacers/CherryTrunkPlacer;)Lnet/minecraft/util/valueproviders/UniformInt; net/minecraft/world/level/levelgen/feature/trunkplacers/CherryTrunkPlacer/lambda$static$4 (Lnet/minecraft/world/level/levelgen/feature/trunkplacers/CherryTrunkPlacer;)Lnet/minecraft/util/valueproviders/UniformInt; +MD: net/minecraft/world/level/levelgen/feature/trunkplacers/CherryTrunkPlacer/m_272205_ (Lnet/minecraft/world/level/levelgen/feature/trunkplacers/CherryTrunkPlacer;)Lnet/minecraft/util/valueproviders/IntProvider; net/minecraft/world/level/levelgen/feature/trunkplacers/CherryTrunkPlacer/lambda$static$3 (Lnet/minecraft/world/level/levelgen/feature/trunkplacers/CherryTrunkPlacer;)Lnet/minecraft/util/valueproviders/IntProvider; +MD: net/minecraft/world/level/levelgen/feature/trunkplacers/CherryTrunkPlacer/m_272249_ (Lnet/minecraft/world/level/levelgen/feature/trunkplacers/CherryTrunkPlacer;)Lnet/minecraft/util/valueproviders/IntProvider; net/minecraft/world/level/levelgen/feature/trunkplacers/CherryTrunkPlacer/lambda$static$5 (Lnet/minecraft/world/level/levelgen/feature/trunkplacers/CherryTrunkPlacer;)Lnet/minecraft/util/valueproviders/IntProvider; +MD: net/minecraft/world/level/levelgen/feature/trunkplacers/CherryTrunkPlacer/m_274290_ ()Ljava/lang/String; net/minecraft/world/level/levelgen/feature/trunkplacers/CherryTrunkPlacer/lambda$static$0 ()Ljava/lang/String; +MD: net/minecraft/world/level/levelgen/feature/trunkplacers/CherryTrunkPlacer/m_274291_ (Lnet/minecraft/util/valueproviders/UniformInt;)Lcom/mojang/serialization/DataResult; net/minecraft/world/level/levelgen/feature/trunkplacers/CherryTrunkPlacer/lambda$static$1 (Lnet/minecraft/util/valueproviders/UniformInt;)Lcom/mojang/serialization/DataResult; +MD: net/minecraft/world/level/levelgen/feature/trunkplacers/CherryTrunkPlacer/m_7362_ ()Lnet/minecraft/world/level/levelgen/feature/trunkplacers/TrunkPlacerType; net/minecraft/world/level/levelgen/feature/trunkplacers/CherryTrunkPlacer/type ()Lnet/minecraft/world/level/levelgen/feature/trunkplacers/TrunkPlacerType; +MD: net/minecraft/world/level/levelgen/feature/trunkplacers/DarkOakTrunkPlacer/ ()V net/minecraft/world/level/levelgen/feature/trunkplacers/DarkOakTrunkPlacer/ ()V +MD: net/minecraft/world/level/levelgen/feature/trunkplacers/DarkOakTrunkPlacer/ (III)V net/minecraft/world/level/levelgen/feature/trunkplacers/DarkOakTrunkPlacer/ (III)V +MD: net/minecraft/world/level/levelgen/feature/trunkplacers/DarkOakTrunkPlacer/m_213934_ (Lnet/minecraft/world/level/LevelSimulatedReader;Ljava/util/function/BiConsumer;Lnet/minecraft/util/RandomSource;ILnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/levelgen/feature/configurations/TreeConfiguration;)Ljava/util/List; net/minecraft/world/level/levelgen/feature/trunkplacers/DarkOakTrunkPlacer/placeTrunk (Lnet/minecraft/world/level/LevelSimulatedReader;Ljava/util/function/BiConsumer;Lnet/minecraft/util/RandomSource;ILnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/levelgen/feature/configurations/TreeConfiguration;)Ljava/util/List; +MD: net/minecraft/world/level/levelgen/feature/trunkplacers/DarkOakTrunkPlacer/m_70089_ (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/world/level/levelgen/feature/trunkplacers/DarkOakTrunkPlacer/lambda$static$0 (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/world/level/levelgen/feature/trunkplacers/DarkOakTrunkPlacer/m_7362_ ()Lnet/minecraft/world/level/levelgen/feature/trunkplacers/TrunkPlacerType; net/minecraft/world/level/levelgen/feature/trunkplacers/DarkOakTrunkPlacer/type ()Lnet/minecraft/world/level/levelgen/feature/trunkplacers/TrunkPlacerType; +MD: net/minecraft/world/level/levelgen/feature/trunkplacers/FancyTrunkPlacer/ ()V net/minecraft/world/level/levelgen/feature/trunkplacers/FancyTrunkPlacer/ ()V +MD: net/minecraft/world/level/levelgen/feature/trunkplacers/FancyTrunkPlacer/ (III)V net/minecraft/world/level/levelgen/feature/trunkplacers/FancyTrunkPlacer/ (III)V +MD: net/minecraft/world/level/levelgen/feature/trunkplacers/FancyTrunkPlacer/m_213934_ (Lnet/minecraft/world/level/LevelSimulatedReader;Ljava/util/function/BiConsumer;Lnet/minecraft/util/RandomSource;ILnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/levelgen/feature/configurations/TreeConfiguration;)Ljava/util/List; net/minecraft/world/level/levelgen/feature/trunkplacers/FancyTrunkPlacer/placeTrunk (Lnet/minecraft/world/level/LevelSimulatedReader;Ljava/util/function/BiConsumer;Lnet/minecraft/util/RandomSource;ILnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/levelgen/feature/configurations/TreeConfiguration;)Ljava/util/List; +MD: net/minecraft/world/level/levelgen/feature/trunkplacers/FancyTrunkPlacer/m_226099_ (Lnet/minecraft/world/level/LevelSimulatedReader;Ljava/util/function/BiConsumer;Lnet/minecraft/util/RandomSource;ILnet/minecraft/core/BlockPos;Ljava/util/List;Lnet/minecraft/world/level/levelgen/feature/configurations/TreeConfiguration;)V net/minecraft/world/level/levelgen/feature/trunkplacers/FancyTrunkPlacer/makeBranches (Lnet/minecraft/world/level/LevelSimulatedReader;Ljava/util/function/BiConsumer;Lnet/minecraft/util/RandomSource;ILnet/minecraft/core/BlockPos;Ljava/util/List;Lnet/minecraft/world/level/levelgen/feature/configurations/TreeConfiguration;)V +MD: net/minecraft/world/level/levelgen/feature/trunkplacers/FancyTrunkPlacer/m_226107_ (Lnet/minecraft/world/level/LevelSimulatedReader;Ljava/util/function/BiConsumer;Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;ZLnet/minecraft/world/level/levelgen/feature/configurations/TreeConfiguration;)Z net/minecraft/world/level/levelgen/feature/trunkplacers/FancyTrunkPlacer/makeLimb (Lnet/minecraft/world/level/LevelSimulatedReader;Ljava/util/function/BiConsumer;Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;ZLnet/minecraft/world/level/levelgen/feature/configurations/TreeConfiguration;)Z +MD: net/minecraft/world/level/levelgen/feature/trunkplacers/FancyTrunkPlacer/m_263170_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/levelgen/feature/trunkplacers/FancyTrunkPlacer/lambda$makeLimb$1 (Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/levelgen/feature/trunkplacers/FancyTrunkPlacer/m_70098_ (II)Z net/minecraft/world/level/levelgen/feature/trunkplacers/FancyTrunkPlacer/trimBranches (II)Z +MD: net/minecraft/world/level/levelgen/feature/trunkplacers/FancyTrunkPlacer/m_70127_ (Lnet/minecraft/core/BlockPos;)I net/minecraft/world/level/levelgen/feature/trunkplacers/FancyTrunkPlacer/getSteps (Lnet/minecraft/core/BlockPos;)I +MD: net/minecraft/world/level/levelgen/feature/trunkplacers/FancyTrunkPlacer/m_70129_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/core/Direction$Axis; net/minecraft/world/level/levelgen/feature/trunkplacers/FancyTrunkPlacer/getLogAxis (Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/core/Direction$Axis; +MD: net/minecraft/world/level/levelgen/feature/trunkplacers/FancyTrunkPlacer/m_70132_ (II)F net/minecraft/world/level/levelgen/feature/trunkplacers/FancyTrunkPlacer/treeShape (II)F +MD: net/minecraft/world/level/levelgen/feature/trunkplacers/FancyTrunkPlacer/m_70135_ (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/world/level/levelgen/feature/trunkplacers/FancyTrunkPlacer/lambda$static$0 (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/world/level/levelgen/feature/trunkplacers/FancyTrunkPlacer/m_7362_ ()Lnet/minecraft/world/level/levelgen/feature/trunkplacers/TrunkPlacerType; net/minecraft/world/level/levelgen/feature/trunkplacers/FancyTrunkPlacer/type ()Lnet/minecraft/world/level/levelgen/feature/trunkplacers/TrunkPlacerType; +MD: net/minecraft/world/level/levelgen/feature/trunkplacers/FancyTrunkPlacer$FoliageCoords/ (Lnet/minecraft/core/BlockPos;I)V net/minecraft/world/level/levelgen/feature/trunkplacers/FancyTrunkPlacer$FoliageCoords/ (Lnet/minecraft/core/BlockPos;I)V +MD: net/minecraft/world/level/levelgen/feature/trunkplacers/FancyTrunkPlacer$FoliageCoords/m_70142_ ()I net/minecraft/world/level/levelgen/feature/trunkplacers/FancyTrunkPlacer$FoliageCoords/getBranchBase ()I +MD: net/minecraft/world/level/levelgen/feature/trunkplacers/ForkingTrunkPlacer/ ()V net/minecraft/world/level/levelgen/feature/trunkplacers/ForkingTrunkPlacer/ ()V +MD: net/minecraft/world/level/levelgen/feature/trunkplacers/ForkingTrunkPlacer/ (III)V net/minecraft/world/level/levelgen/feature/trunkplacers/ForkingTrunkPlacer/ (III)V +MD: net/minecraft/world/level/levelgen/feature/trunkplacers/ForkingTrunkPlacer/m_213934_ (Lnet/minecraft/world/level/LevelSimulatedReader;Ljava/util/function/BiConsumer;Lnet/minecraft/util/RandomSource;ILnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/levelgen/feature/configurations/TreeConfiguration;)Ljava/util/List; net/minecraft/world/level/levelgen/feature/trunkplacers/ForkingTrunkPlacer/placeTrunk (Lnet/minecraft/world/level/LevelSimulatedReader;Ljava/util/function/BiConsumer;Lnet/minecraft/util/RandomSource;ILnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/levelgen/feature/configurations/TreeConfiguration;)Ljava/util/List; +MD: net/minecraft/world/level/levelgen/feature/trunkplacers/ForkingTrunkPlacer/m_70160_ (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/world/level/levelgen/feature/trunkplacers/ForkingTrunkPlacer/lambda$static$0 (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/world/level/levelgen/feature/trunkplacers/ForkingTrunkPlacer/m_7362_ ()Lnet/minecraft/world/level/levelgen/feature/trunkplacers/TrunkPlacerType; net/minecraft/world/level/levelgen/feature/trunkplacers/ForkingTrunkPlacer/type ()Lnet/minecraft/world/level/levelgen/feature/trunkplacers/TrunkPlacerType; +MD: net/minecraft/world/level/levelgen/feature/trunkplacers/GiantTrunkPlacer/ ()V net/minecraft/world/level/levelgen/feature/trunkplacers/GiantTrunkPlacer/ ()V +MD: net/minecraft/world/level/levelgen/feature/trunkplacers/GiantTrunkPlacer/ (III)V net/minecraft/world/level/levelgen/feature/trunkplacers/GiantTrunkPlacer/ (III)V +MD: net/minecraft/world/level/levelgen/feature/trunkplacers/GiantTrunkPlacer/m_213934_ (Lnet/minecraft/world/level/LevelSimulatedReader;Ljava/util/function/BiConsumer;Lnet/minecraft/util/RandomSource;ILnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/levelgen/feature/configurations/TreeConfiguration;)Ljava/util/List; net/minecraft/world/level/levelgen/feature/trunkplacers/GiantTrunkPlacer/placeTrunk (Lnet/minecraft/world/level/LevelSimulatedReader;Ljava/util/function/BiConsumer;Lnet/minecraft/util/RandomSource;ILnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/levelgen/feature/configurations/TreeConfiguration;)Ljava/util/List; +MD: net/minecraft/world/level/levelgen/feature/trunkplacers/GiantTrunkPlacer/m_226129_ (Lnet/minecraft/world/level/LevelSimulatedReader;Ljava/util/function/BiConsumer;Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos$MutableBlockPos;Lnet/minecraft/world/level/levelgen/feature/configurations/TreeConfiguration;Lnet/minecraft/core/BlockPos;III)V net/minecraft/world/level/levelgen/feature/trunkplacers/GiantTrunkPlacer/placeLogIfFreeWithOffset (Lnet/minecraft/world/level/LevelSimulatedReader;Ljava/util/function/BiConsumer;Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos$MutableBlockPos;Lnet/minecraft/world/level/levelgen/feature/configurations/TreeConfiguration;Lnet/minecraft/core/BlockPos;III)V +MD: net/minecraft/world/level/levelgen/feature/trunkplacers/GiantTrunkPlacer/m_70188_ (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/world/level/levelgen/feature/trunkplacers/GiantTrunkPlacer/lambda$static$0 (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/world/level/levelgen/feature/trunkplacers/GiantTrunkPlacer/m_7362_ ()Lnet/minecraft/world/level/levelgen/feature/trunkplacers/TrunkPlacerType; net/minecraft/world/level/levelgen/feature/trunkplacers/GiantTrunkPlacer/type ()Lnet/minecraft/world/level/levelgen/feature/trunkplacers/TrunkPlacerType; +MD: net/minecraft/world/level/levelgen/feature/trunkplacers/MegaJungleTrunkPlacer/ ()V net/minecraft/world/level/levelgen/feature/trunkplacers/MegaJungleTrunkPlacer/ ()V +MD: net/minecraft/world/level/levelgen/feature/trunkplacers/MegaJungleTrunkPlacer/ (III)V net/minecraft/world/level/levelgen/feature/trunkplacers/MegaJungleTrunkPlacer/ (III)V +MD: net/minecraft/world/level/levelgen/feature/trunkplacers/MegaJungleTrunkPlacer/m_213934_ (Lnet/minecraft/world/level/LevelSimulatedReader;Ljava/util/function/BiConsumer;Lnet/minecraft/util/RandomSource;ILnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/levelgen/feature/configurations/TreeConfiguration;)Ljava/util/List; net/minecraft/world/level/levelgen/feature/trunkplacers/MegaJungleTrunkPlacer/placeTrunk (Lnet/minecraft/world/level/LevelSimulatedReader;Ljava/util/function/BiConsumer;Lnet/minecraft/util/RandomSource;ILnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/levelgen/feature/configurations/TreeConfiguration;)Ljava/util/List; +MD: net/minecraft/world/level/levelgen/feature/trunkplacers/MegaJungleTrunkPlacer/m_70205_ (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/world/level/levelgen/feature/trunkplacers/MegaJungleTrunkPlacer/lambda$static$0 (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/world/level/levelgen/feature/trunkplacers/MegaJungleTrunkPlacer/m_7362_ ()Lnet/minecraft/world/level/levelgen/feature/trunkplacers/TrunkPlacerType; net/minecraft/world/level/levelgen/feature/trunkplacers/MegaJungleTrunkPlacer/type ()Lnet/minecraft/world/level/levelgen/feature/trunkplacers/TrunkPlacerType; +MD: net/minecraft/world/level/levelgen/feature/trunkplacers/StraightTrunkPlacer/ ()V net/minecraft/world/level/levelgen/feature/trunkplacers/StraightTrunkPlacer/ ()V +MD: net/minecraft/world/level/levelgen/feature/trunkplacers/StraightTrunkPlacer/ (III)V net/minecraft/world/level/levelgen/feature/trunkplacers/StraightTrunkPlacer/ (III)V +MD: net/minecraft/world/level/levelgen/feature/trunkplacers/StraightTrunkPlacer/m_213934_ (Lnet/minecraft/world/level/LevelSimulatedReader;Ljava/util/function/BiConsumer;Lnet/minecraft/util/RandomSource;ILnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/levelgen/feature/configurations/TreeConfiguration;)Ljava/util/List; net/minecraft/world/level/levelgen/feature/trunkplacers/StraightTrunkPlacer/placeTrunk (Lnet/minecraft/world/level/LevelSimulatedReader;Ljava/util/function/BiConsumer;Lnet/minecraft/util/RandomSource;ILnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/levelgen/feature/configurations/TreeConfiguration;)Ljava/util/List; +MD: net/minecraft/world/level/levelgen/feature/trunkplacers/StraightTrunkPlacer/m_70260_ (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/world/level/levelgen/feature/trunkplacers/StraightTrunkPlacer/lambda$static$0 (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/world/level/levelgen/feature/trunkplacers/StraightTrunkPlacer/m_7362_ ()Lnet/minecraft/world/level/levelgen/feature/trunkplacers/TrunkPlacerType; net/minecraft/world/level/levelgen/feature/trunkplacers/StraightTrunkPlacer/type ()Lnet/minecraft/world/level/levelgen/feature/trunkplacers/TrunkPlacerType; +MD: net/minecraft/world/level/levelgen/feature/trunkplacers/TrunkPlacer/ ()V net/minecraft/world/level/levelgen/feature/trunkplacers/TrunkPlacer/ ()V +MD: net/minecraft/world/level/levelgen/feature/trunkplacers/TrunkPlacer/ (III)V net/minecraft/world/level/levelgen/feature/trunkplacers/TrunkPlacer/ (III)V +MD: net/minecraft/world/level/levelgen/feature/trunkplacers/TrunkPlacer/m_213554_ (Lnet/minecraft/world/level/LevelSimulatedReader;Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/level/levelgen/feature/trunkplacers/TrunkPlacer/validTreePos (Lnet/minecraft/world/level/LevelSimulatedReader;Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/level/levelgen/feature/trunkplacers/TrunkPlacer/m_213934_ (Lnet/minecraft/world/level/LevelSimulatedReader;Ljava/util/function/BiConsumer;Lnet/minecraft/util/RandomSource;ILnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/levelgen/feature/configurations/TreeConfiguration;)Ljava/util/List; net/minecraft/world/level/levelgen/feature/trunkplacers/TrunkPlacer/placeTrunk (Lnet/minecraft/world/level/LevelSimulatedReader;Ljava/util/function/BiConsumer;Lnet/minecraft/util/RandomSource;ILnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/levelgen/feature/configurations/TreeConfiguration;)Ljava/util/List; +MD: net/minecraft/world/level/levelgen/feature/trunkplacers/TrunkPlacer/m_226153_ (Lnet/minecraft/util/RandomSource;)I net/minecraft/world/level/levelgen/feature/trunkplacers/TrunkPlacer/getTreeHeight (Lnet/minecraft/util/RandomSource;)I +MD: net/minecraft/world/level/levelgen/feature/trunkplacers/TrunkPlacer/m_226163_ (Lnet/minecraft/world/level/LevelSimulatedReader;Ljava/util/function/BiConsumer;Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos$MutableBlockPos;Lnet/minecraft/world/level/levelgen/feature/configurations/TreeConfiguration;)V net/minecraft/world/level/levelgen/feature/trunkplacers/TrunkPlacer/placeLogIfFree (Lnet/minecraft/world/level/LevelSimulatedReader;Ljava/util/function/BiConsumer;Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos$MutableBlockPos;Lnet/minecraft/world/level/levelgen/feature/configurations/TreeConfiguration;)V +MD: net/minecraft/world/level/levelgen/feature/trunkplacers/TrunkPlacer/m_226169_ (Lnet/minecraft/world/level/LevelSimulatedReader;Ljava/util/function/BiConsumer;Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/levelgen/feature/configurations/TreeConfiguration;)V net/minecraft/world/level/levelgen/feature/trunkplacers/TrunkPlacer/setDirtAt (Lnet/minecraft/world/level/LevelSimulatedReader;Ljava/util/function/BiConsumer;Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/levelgen/feature/configurations/TreeConfiguration;)V +MD: net/minecraft/world/level/levelgen/feature/trunkplacers/TrunkPlacer/m_226175_ (Lnet/minecraft/world/level/LevelSimulatedReader;Ljava/util/function/BiConsumer;Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/levelgen/feature/configurations/TreeConfiguration;Ljava/util/function/Function;)Z net/minecraft/world/level/levelgen/feature/trunkplacers/TrunkPlacer/placeLog (Lnet/minecraft/world/level/LevelSimulatedReader;Ljava/util/function/BiConsumer;Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/levelgen/feature/configurations/TreeConfiguration;Ljava/util/function/Function;)Z +MD: net/minecraft/world/level/levelgen/feature/trunkplacers/TrunkPlacer/m_226182_ (Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/world/level/levelgen/feature/trunkplacers/TrunkPlacer/lambda$isFree$4 (Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/world/level/levelgen/feature/trunkplacers/TrunkPlacer/m_226184_ (Lnet/minecraft/world/level/LevelSimulatedReader;Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/level/levelgen/feature/trunkplacers/TrunkPlacer/isFree (Lnet/minecraft/world/level/LevelSimulatedReader;Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/level/levelgen/feature/trunkplacers/TrunkPlacer/m_226187_ (Lnet/minecraft/world/level/LevelSimulatedReader;Ljava/util/function/BiConsumer;Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/levelgen/feature/configurations/TreeConfiguration;)Z net/minecraft/world/level/levelgen/feature/trunkplacers/TrunkPlacer/placeLog (Lnet/minecraft/world/level/LevelSimulatedReader;Ljava/util/function/BiConsumer;Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/levelgen/feature/configurations/TreeConfiguration;)Z +MD: net/minecraft/world/level/levelgen/feature/trunkplacers/TrunkPlacer/m_70295_ (Lnet/minecraft/world/level/LevelSimulatedReader;Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/level/levelgen/feature/trunkplacers/TrunkPlacer/isDirt (Lnet/minecraft/world/level/LevelSimulatedReader;Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/level/levelgen/feature/trunkplacers/TrunkPlacer/m_70303_ (Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/world/level/levelgen/feature/trunkplacers/TrunkPlacer/lambda$isDirt$3 (Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/world/level/levelgen/feature/trunkplacers/TrunkPlacer/m_70305_ (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/Products$P3; net/minecraft/world/level/levelgen/feature/trunkplacers/TrunkPlacer/trunkPlacerParts (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/Products$P3; +MD: net/minecraft/world/level/levelgen/feature/trunkplacers/TrunkPlacer/m_70307_ (Lnet/minecraft/world/level/levelgen/feature/trunkplacers/TrunkPlacer;)Ljava/lang/Integer; net/minecraft/world/level/levelgen/feature/trunkplacers/TrunkPlacer/lambda$trunkPlacerParts$2 (Lnet/minecraft/world/level/levelgen/feature/trunkplacers/TrunkPlacer;)Ljava/lang/Integer; +MD: net/minecraft/world/level/levelgen/feature/trunkplacers/TrunkPlacer/m_70311_ (Lnet/minecraft/world/level/levelgen/feature/trunkplacers/TrunkPlacer;)Ljava/lang/Integer; net/minecraft/world/level/levelgen/feature/trunkplacers/TrunkPlacer/lambda$trunkPlacerParts$1 (Lnet/minecraft/world/level/levelgen/feature/trunkplacers/TrunkPlacer;)Ljava/lang/Integer; +MD: net/minecraft/world/level/levelgen/feature/trunkplacers/TrunkPlacer/m_70313_ (Lnet/minecraft/world/level/levelgen/feature/trunkplacers/TrunkPlacer;)Ljava/lang/Integer; net/minecraft/world/level/levelgen/feature/trunkplacers/TrunkPlacer/lambda$trunkPlacerParts$0 (Lnet/minecraft/world/level/levelgen/feature/trunkplacers/TrunkPlacer;)Ljava/lang/Integer; +MD: net/minecraft/world/level/levelgen/feature/trunkplacers/TrunkPlacer/m_7362_ ()Lnet/minecraft/world/level/levelgen/feature/trunkplacers/TrunkPlacerType; net/minecraft/world/level/levelgen/feature/trunkplacers/TrunkPlacer/type ()Lnet/minecraft/world/level/levelgen/feature/trunkplacers/TrunkPlacerType; +MD: net/minecraft/world/level/levelgen/feature/trunkplacers/TrunkPlacerType/ ()V net/minecraft/world/level/levelgen/feature/trunkplacers/TrunkPlacerType/ ()V +MD: net/minecraft/world/level/levelgen/feature/trunkplacers/TrunkPlacerType/ (Lcom/mojang/serialization/Codec;)V net/minecraft/world/level/levelgen/feature/trunkplacers/TrunkPlacerType/ (Lcom/mojang/serialization/Codec;)V +MD: net/minecraft/world/level/levelgen/feature/trunkplacers/TrunkPlacerType/m_70325_ ()Lcom/mojang/serialization/Codec; net/minecraft/world/level/levelgen/feature/trunkplacers/TrunkPlacerType/codec ()Lcom/mojang/serialization/Codec; +MD: net/minecraft/world/level/levelgen/feature/trunkplacers/TrunkPlacerType/m_70326_ (Ljava/lang/String;Lcom/mojang/serialization/Codec;)Lnet/minecraft/world/level/levelgen/feature/trunkplacers/TrunkPlacerType; net/minecraft/world/level/levelgen/feature/trunkplacers/TrunkPlacerType/register (Ljava/lang/String;Lcom/mojang/serialization/Codec;)Lnet/minecraft/world/level/levelgen/feature/trunkplacers/TrunkPlacerType; +MD: net/minecraft/world/level/levelgen/feature/trunkplacers/UpwardsBranchingTrunkPlacer/ ()V net/minecraft/world/level/levelgen/feature/trunkplacers/UpwardsBranchingTrunkPlacer/ ()V +MD: net/minecraft/world/level/levelgen/feature/trunkplacers/UpwardsBranchingTrunkPlacer/ (IIILnet/minecraft/util/valueproviders/IntProvider;FLnet/minecraft/util/valueproviders/IntProvider;Lnet/minecraft/core/HolderSet;)V net/minecraft/world/level/levelgen/feature/trunkplacers/UpwardsBranchingTrunkPlacer/ (IIILnet/minecraft/util/valueproviders/IntProvider;FLnet/minecraft/util/valueproviders/IntProvider;Lnet/minecraft/core/HolderSet;)V +MD: net/minecraft/world/level/levelgen/feature/trunkplacers/UpwardsBranchingTrunkPlacer/m_213554_ (Lnet/minecraft/world/level/LevelSimulatedReader;Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/level/levelgen/feature/trunkplacers/UpwardsBranchingTrunkPlacer/validTreePos (Lnet/minecraft/world/level/LevelSimulatedReader;Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/level/levelgen/feature/trunkplacers/UpwardsBranchingTrunkPlacer/m_213934_ (Lnet/minecraft/world/level/LevelSimulatedReader;Ljava/util/function/BiConsumer;Lnet/minecraft/util/RandomSource;ILnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/levelgen/feature/configurations/TreeConfiguration;)Ljava/util/List; net/minecraft/world/level/levelgen/feature/trunkplacers/UpwardsBranchingTrunkPlacer/placeTrunk (Lnet/minecraft/world/level/LevelSimulatedReader;Ljava/util/function/BiConsumer;Lnet/minecraft/util/RandomSource;ILnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/levelgen/feature/configurations/TreeConfiguration;)Ljava/util/List; +MD: net/minecraft/world/level/levelgen/feature/trunkplacers/UpwardsBranchingTrunkPlacer/m_226212_ (Lnet/minecraft/world/level/LevelSimulatedReader;Ljava/util/function/BiConsumer;Lnet/minecraft/util/RandomSource;ILnet/minecraft/world/level/levelgen/feature/configurations/TreeConfiguration;Ljava/util/List;Lnet/minecraft/core/BlockPos$MutableBlockPos;ILnet/minecraft/core/Direction;II)V net/minecraft/world/level/levelgen/feature/trunkplacers/UpwardsBranchingTrunkPlacer/placeBranch (Lnet/minecraft/world/level/LevelSimulatedReader;Ljava/util/function/BiConsumer;Lnet/minecraft/util/RandomSource;ILnet/minecraft/world/level/levelgen/feature/configurations/TreeConfiguration;Ljava/util/List;Lnet/minecraft/core/BlockPos$MutableBlockPos;ILnet/minecraft/core/Direction;II)V +MD: net/minecraft/world/level/levelgen/feature/trunkplacers/UpwardsBranchingTrunkPlacer/m_226231_ (Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/world/level/levelgen/feature/trunkplacers/UpwardsBranchingTrunkPlacer/lambda$validTreePos$5 (Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/world/level/levelgen/feature/trunkplacers/UpwardsBranchingTrunkPlacer/m_226233_ (Lnet/minecraft/world/level/levelgen/feature/trunkplacers/UpwardsBranchingTrunkPlacer;)Lnet/minecraft/core/HolderSet; net/minecraft/world/level/levelgen/feature/trunkplacers/UpwardsBranchingTrunkPlacer/lambda$static$3 (Lnet/minecraft/world/level/levelgen/feature/trunkplacers/UpwardsBranchingTrunkPlacer;)Lnet/minecraft/core/HolderSet; +MD: net/minecraft/world/level/levelgen/feature/trunkplacers/UpwardsBranchingTrunkPlacer/m_226237_ (Lnet/minecraft/world/level/levelgen/feature/trunkplacers/UpwardsBranchingTrunkPlacer;)Lnet/minecraft/util/valueproviders/IntProvider; net/minecraft/world/level/levelgen/feature/trunkplacers/UpwardsBranchingTrunkPlacer/lambda$static$2 (Lnet/minecraft/world/level/levelgen/feature/trunkplacers/UpwardsBranchingTrunkPlacer;)Lnet/minecraft/util/valueproviders/IntProvider; +MD: net/minecraft/world/level/levelgen/feature/trunkplacers/UpwardsBranchingTrunkPlacer/m_226239_ (Lnet/minecraft/world/level/levelgen/feature/trunkplacers/UpwardsBranchingTrunkPlacer;)Ljava/lang/Float; net/minecraft/world/level/levelgen/feature/trunkplacers/UpwardsBranchingTrunkPlacer/lambda$static$1 (Lnet/minecraft/world/level/levelgen/feature/trunkplacers/UpwardsBranchingTrunkPlacer;)Ljava/lang/Float; +MD: net/minecraft/world/level/levelgen/feature/trunkplacers/UpwardsBranchingTrunkPlacer/m_226241_ (Lnet/minecraft/world/level/levelgen/feature/trunkplacers/UpwardsBranchingTrunkPlacer;)Lnet/minecraft/util/valueproviders/IntProvider; net/minecraft/world/level/levelgen/feature/trunkplacers/UpwardsBranchingTrunkPlacer/lambda$static$0 (Lnet/minecraft/world/level/levelgen/feature/trunkplacers/UpwardsBranchingTrunkPlacer;)Lnet/minecraft/util/valueproviders/IntProvider; +MD: net/minecraft/world/level/levelgen/feature/trunkplacers/UpwardsBranchingTrunkPlacer/m_257356_ (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/world/level/levelgen/feature/trunkplacers/UpwardsBranchingTrunkPlacer/lambda$static$4 (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/world/level/levelgen/feature/trunkplacers/UpwardsBranchingTrunkPlacer/m_7362_ ()Lnet/minecraft/world/level/levelgen/feature/trunkplacers/TrunkPlacerType; net/minecraft/world/level/levelgen/feature/trunkplacers/UpwardsBranchingTrunkPlacer/type ()Lnet/minecraft/world/level/levelgen/feature/trunkplacers/TrunkPlacerType; +MD: net/minecraft/world/level/levelgen/flat/FlatLayerInfo/ ()V net/minecraft/world/level/levelgen/flat/FlatLayerInfo/ ()V +MD: net/minecraft/world/level/levelgen/flat/FlatLayerInfo/ (ILnet/minecraft/world/level/block/Block;)V net/minecraft/world/level/levelgen/flat/FlatLayerInfo/ (ILnet/minecraft/world/level/block/Block;)V +MD: net/minecraft/world/level/levelgen/flat/FlatLayerInfo/m_161901_ (Lnet/minecraft/world/level/levelgen/flat/FlatLayerInfo;)Lnet/minecraft/world/level/block/Block; net/minecraft/world/level/levelgen/flat/FlatLayerInfo/lambda$static$0 (Lnet/minecraft/world/level/levelgen/flat/FlatLayerInfo;)Lnet/minecraft/world/level/block/Block; +MD: net/minecraft/world/level/levelgen/flat/FlatLayerInfo/m_257357_ (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/world/level/levelgen/flat/FlatLayerInfo/lambda$static$1 (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/world/level/levelgen/flat/FlatLayerInfo/m_70337_ ()I net/minecraft/world/level/levelgen/flat/FlatLayerInfo/getHeight ()I +MD: net/minecraft/world/level/levelgen/flat/FlatLayerInfo/m_70344_ ()Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/levelgen/flat/FlatLayerInfo/getBlockState ()Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/levelgen/flat/FlatLayerInfo/toString ()Ljava/lang/String; net/minecraft/world/level/levelgen/flat/FlatLayerInfo/toString ()Ljava/lang/String; +MD: net/minecraft/world/level/levelgen/flat/FlatLevelGeneratorPreset/ ()V net/minecraft/world/level/levelgen/flat/FlatLevelGeneratorPreset/ ()V +MD: net/minecraft/world/level/levelgen/flat/FlatLevelGeneratorPreset/ (Lnet/minecraft/core/Holder;Lnet/minecraft/world/level/levelgen/flat/FlatLevelGeneratorSettings;)V net/minecraft/world/level/levelgen/flat/FlatLevelGeneratorPreset/ (Lnet/minecraft/core/Holder;Lnet/minecraft/world/level/levelgen/flat/FlatLevelGeneratorSettings;)V +MD: net/minecraft/world/level/levelgen/flat/FlatLevelGeneratorPreset/equals (Ljava/lang/Object;)Z net/minecraft/world/level/levelgen/flat/FlatLevelGeneratorPreset/equals (Ljava/lang/Object;)Z +MD: net/minecraft/world/level/levelgen/flat/FlatLevelGeneratorPreset/f_226245_ ()Lnet/minecraft/core/Holder; net/minecraft/world/level/levelgen/flat/FlatLevelGeneratorPreset/displayItem ()Lnet/minecraft/core/Holder; +MD: net/minecraft/world/level/levelgen/flat/FlatLevelGeneratorPreset/f_226246_ ()Lnet/minecraft/world/level/levelgen/flat/FlatLevelGeneratorSettings; net/minecraft/world/level/levelgen/flat/FlatLevelGeneratorPreset/settings ()Lnet/minecraft/world/level/levelgen/flat/FlatLevelGeneratorSettings; +MD: net/minecraft/world/level/levelgen/flat/FlatLevelGeneratorPreset/hashCode ()I net/minecraft/world/level/levelgen/flat/FlatLevelGeneratorPreset/hashCode ()I +MD: net/minecraft/world/level/levelgen/flat/FlatLevelGeneratorPreset/m_226254_ (Lnet/minecraft/world/level/levelgen/flat/FlatLevelGeneratorPreset;)Lnet/minecraft/world/level/levelgen/flat/FlatLevelGeneratorSettings; net/minecraft/world/level/levelgen/flat/FlatLevelGeneratorPreset/lambda$static$1 (Lnet/minecraft/world/level/levelgen/flat/FlatLevelGeneratorPreset;)Lnet/minecraft/world/level/levelgen/flat/FlatLevelGeneratorSettings; +MD: net/minecraft/world/level/levelgen/flat/FlatLevelGeneratorPreset/m_226257_ (Lnet/minecraft/world/level/levelgen/flat/FlatLevelGeneratorPreset;)Lnet/minecraft/core/Holder; net/minecraft/world/level/levelgen/flat/FlatLevelGeneratorPreset/lambda$static$0 (Lnet/minecraft/world/level/levelgen/flat/FlatLevelGeneratorPreset;)Lnet/minecraft/core/Holder; +MD: net/minecraft/world/level/levelgen/flat/FlatLevelGeneratorPreset/m_257358_ (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/world/level/levelgen/flat/FlatLevelGeneratorPreset/lambda$static$2 (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/world/level/levelgen/flat/FlatLevelGeneratorPreset/toString ()Ljava/lang/String; net/minecraft/world/level/levelgen/flat/FlatLevelGeneratorPreset/toString ()Ljava/lang/String; +MD: net/minecraft/world/level/levelgen/flat/FlatLevelGeneratorPresets/ ()V net/minecraft/world/level/levelgen/flat/FlatLevelGeneratorPresets/ ()V +MD: net/minecraft/world/level/levelgen/flat/FlatLevelGeneratorPresets/ ()V net/minecraft/world/level/levelgen/flat/FlatLevelGeneratorPresets/ ()V +MD: net/minecraft/world/level/levelgen/flat/FlatLevelGeneratorPresets/m_226276_ (Ljava/lang/String;)Lnet/minecraft/resources/ResourceKey; net/minecraft/world/level/levelgen/flat/FlatLevelGeneratorPresets/register (Ljava/lang/String;)Lnet/minecraft/resources/ResourceKey; +MD: net/minecraft/world/level/levelgen/flat/FlatLevelGeneratorPresets/m_254848_ (Lnet/minecraft/data/worldgen/BootstapContext;)V net/minecraft/world/level/levelgen/flat/FlatLevelGeneratorPresets/bootstrap (Lnet/minecraft/data/worldgen/BootstapContext;)V +MD: net/minecraft/world/level/levelgen/flat/FlatLevelGeneratorPresets$Bootstrap/ (Lnet/minecraft/data/worldgen/BootstapContext;)V net/minecraft/world/level/levelgen/flat/FlatLevelGeneratorPresets$Bootstrap/ (Lnet/minecraft/data/worldgen/BootstapContext;)V +MD: net/minecraft/world/level/levelgen/flat/FlatLevelGeneratorPresets$Bootstrap/m_226283_ ()V net/minecraft/world/level/levelgen/flat/FlatLevelGeneratorPresets$Bootstrap/run ()V +MD: net/minecraft/world/level/levelgen/flat/FlatLevelGeneratorPresets$Bootstrap/m_255284_ (Lnet/minecraft/resources/ResourceKey;Lnet/minecraft/world/level/ItemLike;Lnet/minecraft/resources/ResourceKey;Ljava/util/Set;ZZ[Lnet/minecraft/world/level/levelgen/flat/FlatLayerInfo;)V net/minecraft/world/level/levelgen/flat/FlatLevelGeneratorPresets$Bootstrap/register (Lnet/minecraft/resources/ResourceKey;Lnet/minecraft/world/level/ItemLike;Lnet/minecraft/resources/ResourceKey;Ljava/util/Set;ZZ[Lnet/minecraft/world/level/levelgen/flat/FlatLayerInfo;)V +MD: net/minecraft/world/level/levelgen/flat/FlatLevelGeneratorSettings/ ()V net/minecraft/world/level/levelgen/flat/FlatLevelGeneratorSettings/ ()V +MD: net/minecraft/world/level/levelgen/flat/FlatLevelGeneratorSettings/ (Ljava/util/Optional;Ljava/util/List;ZZLjava/util/Optional;Lnet/minecraft/core/Holder$Reference;Lnet/minecraft/core/Holder;Lnet/minecraft/core/Holder;)V net/minecraft/world/level/levelgen/flat/FlatLevelGeneratorSettings/ (Ljava/util/Optional;Ljava/util/List;ZZLjava/util/Optional;Lnet/minecraft/core/Holder$Reference;Lnet/minecraft/core/Holder;Lnet/minecraft/core/Holder;)V +MD: net/minecraft/world/level/levelgen/flat/FlatLevelGeneratorSettings/ (Ljava/util/Optional;Lnet/minecraft/core/Holder;Ljava/util/List;)V net/minecraft/world/level/levelgen/flat/FlatLevelGeneratorSettings/ (Ljava/util/Optional;Lnet/minecraft/core/Holder;Ljava/util/List;)V +MD: net/minecraft/world/level/levelgen/flat/FlatLevelGeneratorSettings/m_161905_ (Lnet/minecraft/world/level/levelgen/flat/FlatLevelGeneratorSettings;)Lcom/mojang/serialization/DataResult; net/minecraft/world/level/levelgen/flat/FlatLevelGeneratorSettings/validateHeight (Lnet/minecraft/world/level/levelgen/flat/FlatLevelGeneratorSettings;)Lcom/mojang/serialization/DataResult; +MD: net/minecraft/world/level/levelgen/flat/FlatLevelGeneratorSettings/m_161911_ (Lnet/minecraft/world/level/levelgen/flat/FlatLevelGeneratorSettings;)Ljava/lang/Boolean; net/minecraft/world/level/levelgen/flat/FlatLevelGeneratorSettings/lambda$static$1 (Lnet/minecraft/world/level/levelgen/flat/FlatLevelGeneratorSettings;)Ljava/lang/Boolean; +MD: net/minecraft/world/level/levelgen/flat/FlatLevelGeneratorSettings/m_161917_ ()Ljava/util/List; net/minecraft/world/level/levelgen/flat/FlatLevelGeneratorSettings/getLayers ()Ljava/util/List; +MD: net/minecraft/world/level/levelgen/flat/FlatLevelGeneratorSettings/m_204921_ ()Lnet/minecraft/core/Holder; net/minecraft/world/level/levelgen/flat/FlatLevelGeneratorSettings/getBiome ()Lnet/minecraft/core/Holder; +MD: net/minecraft/world/level/levelgen/flat/FlatLevelGeneratorSettings/m_209801_ (Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/world/level/levelgen/flat/FlatLevelGeneratorSettings/lambda$updateLayers$6 (Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/world/level/levelgen/flat/FlatLevelGeneratorSettings/m_209806_ (Lnet/minecraft/world/level/levelgen/flat/FlatLevelGeneratorSettings;)Ljava/util/Optional; net/minecraft/world/level/levelgen/flat/FlatLevelGeneratorSettings/lambda$static$3 (Lnet/minecraft/world/level/levelgen/flat/FlatLevelGeneratorSettings;)Ljava/util/Optional; +MD: net/minecraft/world/level/levelgen/flat/FlatLevelGeneratorSettings/m_209808_ (Lnet/minecraft/world/level/levelgen/flat/FlatLevelGeneratorSettings;)Ljava/lang/Boolean; net/minecraft/world/level/levelgen/flat/FlatLevelGeneratorSettings/lambda$static$2 (Lnet/minecraft/world/level/levelgen/flat/FlatLevelGeneratorSettings;)Ljava/lang/Boolean; +MD: net/minecraft/world/level/levelgen/flat/FlatLevelGeneratorSettings/m_209810_ ()Ljava/util/Optional; net/minecraft/world/level/levelgen/flat/FlatLevelGeneratorSettings/structureOverrides ()Ljava/util/Optional; +MD: net/minecraft/world/level/levelgen/flat/FlatLevelGeneratorSettings/m_209811_ (Lnet/minecraft/world/level/levelgen/flat/FlatLevelGeneratorSettings;)Ljava/util/Optional; net/minecraft/world/level/levelgen/flat/FlatLevelGeneratorSettings/lambda$static$0 (Lnet/minecraft/world/level/levelgen/flat/FlatLevelGeneratorSettings;)Ljava/util/Optional; +MD: net/minecraft/world/level/levelgen/flat/FlatLevelGeneratorSettings/m_226294_ (Lnet/minecraft/core/Holder;)Lnet/minecraft/world/level/biome/BiomeGenerationSettings; net/minecraft/world/level/levelgen/flat/FlatLevelGeneratorSettings/adjustGenerationSettings (Lnet/minecraft/core/Holder;)Lnet/minecraft/world/level/biome/BiomeGenerationSettings; +MD: net/minecraft/world/level/levelgen/flat/FlatLevelGeneratorSettings/m_254825_ (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/world/level/levelgen/flat/FlatLevelGeneratorSettings/lambda$static$4 (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/world/level/levelgen/flat/FlatLevelGeneratorSettings/m_254853_ (Ljava/util/List;Ljava/util/Optional;Lnet/minecraft/core/Holder;)Lnet/minecraft/world/level/levelgen/flat/FlatLevelGeneratorSettings; net/minecraft/world/level/levelgen/flat/FlatLevelGeneratorSettings/withBiomeAndLayers (Ljava/util/List;Ljava/util/Optional;Lnet/minecraft/core/Holder;)Lnet/minecraft/world/level/levelgen/flat/FlatLevelGeneratorSettings; +MD: net/minecraft/world/level/levelgen/flat/FlatLevelGeneratorSettings/m_254980_ (Lnet/minecraft/core/HolderGetter;Lnet/minecraft/core/HolderGetter;Lnet/minecraft/core/HolderGetter;)Lnet/minecraft/world/level/levelgen/flat/FlatLevelGeneratorSettings; net/minecraft/world/level/levelgen/flat/FlatLevelGeneratorSettings/getDefault (Lnet/minecraft/core/HolderGetter;Lnet/minecraft/core/HolderGetter;Lnet/minecraft/core/HolderGetter;)Lnet/minecraft/world/level/levelgen/flat/FlatLevelGeneratorSettings; +MD: net/minecraft/world/level/levelgen/flat/FlatLevelGeneratorSettings/m_255047_ (Lnet/minecraft/core/HolderGetter;)Ljava/util/List; net/minecraft/world/level/levelgen/flat/FlatLevelGeneratorSettings/createLakesList (Lnet/minecraft/core/HolderGetter;)Ljava/util/List; +MD: net/minecraft/world/level/levelgen/flat/FlatLevelGeneratorSettings/m_255268_ (Lnet/minecraft/core/HolderGetter;)Lnet/minecraft/core/Holder; net/minecraft/world/level/levelgen/flat/FlatLevelGeneratorSettings/getDefaultBiome (Lnet/minecraft/core/HolderGetter;)Lnet/minecraft/core/Holder; +MD: net/minecraft/world/level/levelgen/flat/FlatLevelGeneratorSettings/m_255287_ (Ljava/util/Optional;Lnet/minecraft/core/Holder;)Lnet/minecraft/core/Holder; net/minecraft/world/level/levelgen/flat/FlatLevelGeneratorSettings/getBiome (Ljava/util/Optional;Lnet/minecraft/core/Holder;)Lnet/minecraft/core/Holder; +MD: net/minecraft/world/level/levelgen/flat/FlatLevelGeneratorSettings/m_274292_ ()Ljava/lang/String; net/minecraft/world/level/levelgen/flat/FlatLevelGeneratorSettings/lambda$validateHeight$5 ()Ljava/lang/String; +MD: net/minecraft/world/level/levelgen/flat/FlatLevelGeneratorSettings/m_70369_ ()V net/minecraft/world/level/levelgen/flat/FlatLevelGeneratorSettings/setDecoration ()V +MD: net/minecraft/world/level/levelgen/flat/FlatLevelGeneratorSettings/m_70385_ ()V net/minecraft/world/level/levelgen/flat/FlatLevelGeneratorSettings/setAddLakes ()V +MD: net/minecraft/world/level/levelgen/flat/FlatLevelGeneratorSettings/m_70401_ ()Ljava/util/List; net/minecraft/world/level/levelgen/flat/FlatLevelGeneratorSettings/getLayersInfo ()Ljava/util/List; +MD: net/minecraft/world/level/levelgen/flat/FlatLevelGeneratorSettings/m_70403_ ()V net/minecraft/world/level/levelgen/flat/FlatLevelGeneratorSettings/updateLayers ()V +MD: net/minecraft/world/level/levelgen/heightproviders/BiasedToBottomHeight/ ()V net/minecraft/world/level/levelgen/heightproviders/BiasedToBottomHeight/ ()V +MD: net/minecraft/world/level/levelgen/heightproviders/BiasedToBottomHeight/ (Lnet/minecraft/world/level/levelgen/VerticalAnchor;Lnet/minecraft/world/level/levelgen/VerticalAnchor;I)V net/minecraft/world/level/levelgen/heightproviders/BiasedToBottomHeight/ (Lnet/minecraft/world/level/levelgen/VerticalAnchor;Lnet/minecraft/world/level/levelgen/VerticalAnchor;I)V +MD: net/minecraft/world/level/levelgen/heightproviders/BiasedToBottomHeight/m_142002_ ()Lnet/minecraft/world/level/levelgen/heightproviders/HeightProviderType; net/minecraft/world/level/levelgen/heightproviders/BiasedToBottomHeight/getType ()Lnet/minecraft/world/level/levelgen/heightproviders/HeightProviderType; +MD: net/minecraft/world/level/levelgen/heightproviders/BiasedToBottomHeight/m_161929_ (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/world/level/levelgen/heightproviders/BiasedToBottomHeight/lambda$static$3 (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/world/level/levelgen/heightproviders/BiasedToBottomHeight/m_161931_ (Lnet/minecraft/world/level/levelgen/VerticalAnchor;Lnet/minecraft/world/level/levelgen/VerticalAnchor;I)Lnet/minecraft/world/level/levelgen/heightproviders/BiasedToBottomHeight; net/minecraft/world/level/levelgen/heightproviders/BiasedToBottomHeight/of (Lnet/minecraft/world/level/levelgen/VerticalAnchor;Lnet/minecraft/world/level/levelgen/VerticalAnchor;I)Lnet/minecraft/world/level/levelgen/heightproviders/BiasedToBottomHeight; +MD: net/minecraft/world/level/levelgen/heightproviders/BiasedToBottomHeight/m_161935_ (Lnet/minecraft/world/level/levelgen/heightproviders/BiasedToBottomHeight;)Ljava/lang/Integer; net/minecraft/world/level/levelgen/heightproviders/BiasedToBottomHeight/lambda$static$2 (Lnet/minecraft/world/level/levelgen/heightproviders/BiasedToBottomHeight;)Ljava/lang/Integer; +MD: net/minecraft/world/level/levelgen/heightproviders/BiasedToBottomHeight/m_161940_ (Lnet/minecraft/world/level/levelgen/heightproviders/BiasedToBottomHeight;)Lnet/minecraft/world/level/levelgen/VerticalAnchor; net/minecraft/world/level/levelgen/heightproviders/BiasedToBottomHeight/lambda$static$1 (Lnet/minecraft/world/level/levelgen/heightproviders/BiasedToBottomHeight;)Lnet/minecraft/world/level/levelgen/VerticalAnchor; +MD: net/minecraft/world/level/levelgen/heightproviders/BiasedToBottomHeight/m_161942_ (Lnet/minecraft/world/level/levelgen/heightproviders/BiasedToBottomHeight;)Lnet/minecraft/world/level/levelgen/VerticalAnchor; net/minecraft/world/level/levelgen/heightproviders/BiasedToBottomHeight/lambda$static$0 (Lnet/minecraft/world/level/levelgen/heightproviders/BiasedToBottomHeight;)Lnet/minecraft/world/level/levelgen/VerticalAnchor; +MD: net/minecraft/world/level/levelgen/heightproviders/BiasedToBottomHeight/m_213859_ (Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/levelgen/WorldGenerationContext;)I net/minecraft/world/level/levelgen/heightproviders/BiasedToBottomHeight/sample (Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/levelgen/WorldGenerationContext;)I +MD: net/minecraft/world/level/levelgen/heightproviders/BiasedToBottomHeight/toString ()Ljava/lang/String; net/minecraft/world/level/levelgen/heightproviders/BiasedToBottomHeight/toString ()Ljava/lang/String; +MD: net/minecraft/world/level/levelgen/heightproviders/ConstantHeight/ ()V net/minecraft/world/level/levelgen/heightproviders/ConstantHeight/ ()V +MD: net/minecraft/world/level/levelgen/heightproviders/ConstantHeight/ (Lnet/minecraft/world/level/levelgen/VerticalAnchor;)V net/minecraft/world/level/levelgen/heightproviders/ConstantHeight/ (Lnet/minecraft/world/level/levelgen/VerticalAnchor;)V +MD: net/minecraft/world/level/levelgen/heightproviders/ConstantHeight/m_142002_ ()Lnet/minecraft/world/level/levelgen/heightproviders/HeightProviderType; net/minecraft/world/level/levelgen/heightproviders/ConstantHeight/getType ()Lnet/minecraft/world/level/levelgen/heightproviders/HeightProviderType; +MD: net/minecraft/world/level/levelgen/heightproviders/ConstantHeight/m_161952_ (Lcom/mojang/datafixers/util/Either;)Lnet/minecraft/world/level/levelgen/heightproviders/ConstantHeight; net/minecraft/world/level/levelgen/heightproviders/ConstantHeight/lambda$static$3 (Lcom/mojang/datafixers/util/Either;)Lnet/minecraft/world/level/levelgen/heightproviders/ConstantHeight; +MD: net/minecraft/world/level/levelgen/heightproviders/ConstantHeight/m_161954_ (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/world/level/levelgen/heightproviders/ConstantHeight/lambda$static$1 (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/world/level/levelgen/heightproviders/ConstantHeight/m_161956_ (Lnet/minecraft/world/level/levelgen/VerticalAnchor;)Lnet/minecraft/world/level/levelgen/heightproviders/ConstantHeight; net/minecraft/world/level/levelgen/heightproviders/ConstantHeight/of (Lnet/minecraft/world/level/levelgen/VerticalAnchor;)Lnet/minecraft/world/level/levelgen/heightproviders/ConstantHeight; +MD: net/minecraft/world/level/levelgen/heightproviders/ConstantHeight/m_161958_ (Lnet/minecraft/world/level/levelgen/heightproviders/ConstantHeight;)Lcom/mojang/datafixers/util/Either; net/minecraft/world/level/levelgen/heightproviders/ConstantHeight/lambda$static$4 (Lnet/minecraft/world/level/levelgen/heightproviders/ConstantHeight;)Lcom/mojang/datafixers/util/Either; +MD: net/minecraft/world/level/levelgen/heightproviders/ConstantHeight/m_161963_ ()Lnet/minecraft/world/level/levelgen/VerticalAnchor; net/minecraft/world/level/levelgen/heightproviders/ConstantHeight/getValue ()Lnet/minecraft/world/level/levelgen/VerticalAnchor; +MD: net/minecraft/world/level/levelgen/heightproviders/ConstantHeight/m_161964_ (Lnet/minecraft/world/level/levelgen/heightproviders/ConstantHeight;)Lnet/minecraft/world/level/levelgen/heightproviders/ConstantHeight; net/minecraft/world/level/levelgen/heightproviders/ConstantHeight/lambda$static$2 (Lnet/minecraft/world/level/levelgen/heightproviders/ConstantHeight;)Lnet/minecraft/world/level/levelgen/heightproviders/ConstantHeight; +MD: net/minecraft/world/level/levelgen/heightproviders/ConstantHeight/m_161966_ (Lnet/minecraft/world/level/levelgen/heightproviders/ConstantHeight;)Lnet/minecraft/world/level/levelgen/VerticalAnchor; net/minecraft/world/level/levelgen/heightproviders/ConstantHeight/lambda$static$0 (Lnet/minecraft/world/level/levelgen/heightproviders/ConstantHeight;)Lnet/minecraft/world/level/levelgen/VerticalAnchor; +MD: net/minecraft/world/level/levelgen/heightproviders/ConstantHeight/m_213859_ (Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/levelgen/WorldGenerationContext;)I net/minecraft/world/level/levelgen/heightproviders/ConstantHeight/sample (Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/levelgen/WorldGenerationContext;)I +MD: net/minecraft/world/level/levelgen/heightproviders/ConstantHeight/toString ()Ljava/lang/String; net/minecraft/world/level/levelgen/heightproviders/ConstantHeight/toString ()Ljava/lang/String; +MD: net/minecraft/world/level/levelgen/heightproviders/HeightProvider/ ()V net/minecraft/world/level/levelgen/heightproviders/HeightProvider/ ()V +MD: net/minecraft/world/level/levelgen/heightproviders/HeightProvider/ ()V net/minecraft/world/level/levelgen/heightproviders/HeightProvider/ ()V +MD: net/minecraft/world/level/levelgen/heightproviders/HeightProvider/m_142002_ ()Lnet/minecraft/world/level/levelgen/heightproviders/HeightProviderType; net/minecraft/world/level/levelgen/heightproviders/HeightProvider/getType ()Lnet/minecraft/world/level/levelgen/heightproviders/HeightProviderType; +MD: net/minecraft/world/level/levelgen/heightproviders/HeightProvider/m_161973_ (Lcom/mojang/datafixers/util/Either;)Lnet/minecraft/world/level/levelgen/heightproviders/HeightProvider; net/minecraft/world/level/levelgen/heightproviders/HeightProvider/lambda$static$1 (Lcom/mojang/datafixers/util/Either;)Lnet/minecraft/world/level/levelgen/heightproviders/HeightProvider; +MD: net/minecraft/world/level/levelgen/heightproviders/HeightProvider/m_161975_ (Lnet/minecraft/world/level/levelgen/heightproviders/HeightProvider;)Lcom/mojang/datafixers/util/Either; net/minecraft/world/level/levelgen/heightproviders/HeightProvider/lambda$static$2 (Lnet/minecraft/world/level/levelgen/heightproviders/HeightProvider;)Lcom/mojang/datafixers/util/Either; +MD: net/minecraft/world/level/levelgen/heightproviders/HeightProvider/m_161979_ (Lnet/minecraft/world/level/levelgen/heightproviders/HeightProvider;)Lnet/minecraft/world/level/levelgen/heightproviders/HeightProvider; net/minecraft/world/level/levelgen/heightproviders/HeightProvider/lambda$static$0 (Lnet/minecraft/world/level/levelgen/heightproviders/HeightProvider;)Lnet/minecraft/world/level/levelgen/heightproviders/HeightProvider; +MD: net/minecraft/world/level/levelgen/heightproviders/HeightProvider/m_213859_ (Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/levelgen/WorldGenerationContext;)I net/minecraft/world/level/levelgen/heightproviders/HeightProvider/sample (Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/levelgen/WorldGenerationContext;)I +MD: net/minecraft/world/level/levelgen/heightproviders/HeightProviderType/ ()V net/minecraft/world/level/levelgen/heightproviders/HeightProviderType/ ()V +MD: net/minecraft/world/level/levelgen/heightproviders/HeightProviderType/m_161987_ (Lcom/mojang/serialization/Codec;)Lcom/mojang/serialization/Codec; net/minecraft/world/level/levelgen/heightproviders/HeightProviderType/lambda$register$0 (Lcom/mojang/serialization/Codec;)Lcom/mojang/serialization/Codec; +MD: net/minecraft/world/level/levelgen/heightproviders/HeightProviderType/m_161989_ (Ljava/lang/String;Lcom/mojang/serialization/Codec;)Lnet/minecraft/world/level/levelgen/heightproviders/HeightProviderType; net/minecraft/world/level/levelgen/heightproviders/HeightProviderType/register (Ljava/lang/String;Lcom/mojang/serialization/Codec;)Lnet/minecraft/world/level/levelgen/heightproviders/HeightProviderType; +MD: net/minecraft/world/level/levelgen/heightproviders/HeightProviderType/m_161992_ ()Lcom/mojang/serialization/Codec; net/minecraft/world/level/levelgen/heightproviders/HeightProviderType/codec ()Lcom/mojang/serialization/Codec; +MD: net/minecraft/world/level/levelgen/heightproviders/TrapezoidHeight/ ()V net/minecraft/world/level/levelgen/heightproviders/TrapezoidHeight/ ()V +MD: net/minecraft/world/level/levelgen/heightproviders/TrapezoidHeight/ (Lnet/minecraft/world/level/levelgen/VerticalAnchor;Lnet/minecraft/world/level/levelgen/VerticalAnchor;I)V net/minecraft/world/level/levelgen/heightproviders/TrapezoidHeight/ (Lnet/minecraft/world/level/levelgen/VerticalAnchor;Lnet/minecraft/world/level/levelgen/VerticalAnchor;I)V +MD: net/minecraft/world/level/levelgen/heightproviders/TrapezoidHeight/m_142002_ ()Lnet/minecraft/world/level/levelgen/heightproviders/HeightProviderType; net/minecraft/world/level/levelgen/heightproviders/TrapezoidHeight/getType ()Lnet/minecraft/world/level/levelgen/heightproviders/HeightProviderType; +MD: net/minecraft/world/level/levelgen/heightproviders/TrapezoidHeight/m_162004_ (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/world/level/levelgen/heightproviders/TrapezoidHeight/lambda$static$3 (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/world/level/levelgen/heightproviders/TrapezoidHeight/m_162006_ (Lnet/minecraft/world/level/levelgen/VerticalAnchor;Lnet/minecraft/world/level/levelgen/VerticalAnchor;)Lnet/minecraft/world/level/levelgen/heightproviders/TrapezoidHeight; net/minecraft/world/level/levelgen/heightproviders/TrapezoidHeight/of (Lnet/minecraft/world/level/levelgen/VerticalAnchor;Lnet/minecraft/world/level/levelgen/VerticalAnchor;)Lnet/minecraft/world/level/levelgen/heightproviders/TrapezoidHeight; +MD: net/minecraft/world/level/levelgen/heightproviders/TrapezoidHeight/m_162009_ (Lnet/minecraft/world/level/levelgen/VerticalAnchor;Lnet/minecraft/world/level/levelgen/VerticalAnchor;I)Lnet/minecraft/world/level/levelgen/heightproviders/TrapezoidHeight; net/minecraft/world/level/levelgen/heightproviders/TrapezoidHeight/of (Lnet/minecraft/world/level/levelgen/VerticalAnchor;Lnet/minecraft/world/level/levelgen/VerticalAnchor;I)Lnet/minecraft/world/level/levelgen/heightproviders/TrapezoidHeight; +MD: net/minecraft/world/level/levelgen/heightproviders/TrapezoidHeight/m_162013_ (Lnet/minecraft/world/level/levelgen/heightproviders/TrapezoidHeight;)Ljava/lang/Integer; net/minecraft/world/level/levelgen/heightproviders/TrapezoidHeight/lambda$static$2 (Lnet/minecraft/world/level/levelgen/heightproviders/TrapezoidHeight;)Ljava/lang/Integer; +MD: net/minecraft/world/level/levelgen/heightproviders/TrapezoidHeight/m_162018_ (Lnet/minecraft/world/level/levelgen/heightproviders/TrapezoidHeight;)Lnet/minecraft/world/level/levelgen/VerticalAnchor; net/minecraft/world/level/levelgen/heightproviders/TrapezoidHeight/lambda$static$1 (Lnet/minecraft/world/level/levelgen/heightproviders/TrapezoidHeight;)Lnet/minecraft/world/level/levelgen/VerticalAnchor; +MD: net/minecraft/world/level/levelgen/heightproviders/TrapezoidHeight/m_162020_ (Lnet/minecraft/world/level/levelgen/heightproviders/TrapezoidHeight;)Lnet/minecraft/world/level/levelgen/VerticalAnchor; net/minecraft/world/level/levelgen/heightproviders/TrapezoidHeight/lambda$static$0 (Lnet/minecraft/world/level/levelgen/heightproviders/TrapezoidHeight;)Lnet/minecraft/world/level/levelgen/VerticalAnchor; +MD: net/minecraft/world/level/levelgen/heightproviders/TrapezoidHeight/m_213859_ (Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/levelgen/WorldGenerationContext;)I net/minecraft/world/level/levelgen/heightproviders/TrapezoidHeight/sample (Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/levelgen/WorldGenerationContext;)I +MD: net/minecraft/world/level/levelgen/heightproviders/TrapezoidHeight/toString ()Ljava/lang/String; net/minecraft/world/level/levelgen/heightproviders/TrapezoidHeight/toString ()Ljava/lang/String; +MD: net/minecraft/world/level/levelgen/heightproviders/UniformHeight/ ()V net/minecraft/world/level/levelgen/heightproviders/UniformHeight/ ()V +MD: net/minecraft/world/level/levelgen/heightproviders/UniformHeight/ (Lnet/minecraft/world/level/levelgen/VerticalAnchor;Lnet/minecraft/world/level/levelgen/VerticalAnchor;)V net/minecraft/world/level/levelgen/heightproviders/UniformHeight/ (Lnet/minecraft/world/level/levelgen/VerticalAnchor;Lnet/minecraft/world/level/levelgen/VerticalAnchor;)V +MD: net/minecraft/world/level/levelgen/heightproviders/UniformHeight/m_142002_ ()Lnet/minecraft/world/level/levelgen/heightproviders/HeightProviderType; net/minecraft/world/level/levelgen/heightproviders/UniformHeight/getType ()Lnet/minecraft/world/level/levelgen/heightproviders/HeightProviderType; +MD: net/minecraft/world/level/levelgen/heightproviders/UniformHeight/m_162032_ (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/world/level/levelgen/heightproviders/UniformHeight/lambda$static$2 (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/world/level/levelgen/heightproviders/UniformHeight/m_162034_ (Lnet/minecraft/world/level/levelgen/VerticalAnchor;Lnet/minecraft/world/level/levelgen/VerticalAnchor;)Lnet/minecraft/world/level/levelgen/heightproviders/UniformHeight; net/minecraft/world/level/levelgen/heightproviders/UniformHeight/of (Lnet/minecraft/world/level/levelgen/VerticalAnchor;Lnet/minecraft/world/level/levelgen/VerticalAnchor;)Lnet/minecraft/world/level/levelgen/heightproviders/UniformHeight; +MD: net/minecraft/world/level/levelgen/heightproviders/UniformHeight/m_162037_ (Lnet/minecraft/world/level/levelgen/heightproviders/UniformHeight;)Lnet/minecraft/world/level/levelgen/VerticalAnchor; net/minecraft/world/level/levelgen/heightproviders/UniformHeight/lambda$static$1 (Lnet/minecraft/world/level/levelgen/heightproviders/UniformHeight;)Lnet/minecraft/world/level/levelgen/VerticalAnchor; +MD: net/minecraft/world/level/levelgen/heightproviders/UniformHeight/m_162042_ (Lnet/minecraft/world/level/levelgen/heightproviders/UniformHeight;)Lnet/minecraft/world/level/levelgen/VerticalAnchor; net/minecraft/world/level/levelgen/heightproviders/UniformHeight/lambda$static$0 (Lnet/minecraft/world/level/levelgen/heightproviders/UniformHeight;)Lnet/minecraft/world/level/levelgen/VerticalAnchor; +MD: net/minecraft/world/level/levelgen/heightproviders/UniformHeight/m_213859_ (Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/levelgen/WorldGenerationContext;)I net/minecraft/world/level/levelgen/heightproviders/UniformHeight/sample (Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/levelgen/WorldGenerationContext;)I +MD: net/minecraft/world/level/levelgen/heightproviders/UniformHeight/toString ()Ljava/lang/String; net/minecraft/world/level/levelgen/heightproviders/UniformHeight/toString ()Ljava/lang/String; +MD: net/minecraft/world/level/levelgen/heightproviders/VeryBiasedToBottomHeight/ ()V net/minecraft/world/level/levelgen/heightproviders/VeryBiasedToBottomHeight/ ()V +MD: net/minecraft/world/level/levelgen/heightproviders/VeryBiasedToBottomHeight/ (Lnet/minecraft/world/level/levelgen/VerticalAnchor;Lnet/minecraft/world/level/levelgen/VerticalAnchor;I)V net/minecraft/world/level/levelgen/heightproviders/VeryBiasedToBottomHeight/ (Lnet/minecraft/world/level/levelgen/VerticalAnchor;Lnet/minecraft/world/level/levelgen/VerticalAnchor;I)V +MD: net/minecraft/world/level/levelgen/heightproviders/VeryBiasedToBottomHeight/m_142002_ ()Lnet/minecraft/world/level/levelgen/heightproviders/HeightProviderType; net/minecraft/world/level/levelgen/heightproviders/VeryBiasedToBottomHeight/getType ()Lnet/minecraft/world/level/levelgen/heightproviders/HeightProviderType; +MD: net/minecraft/world/level/levelgen/heightproviders/VeryBiasedToBottomHeight/m_162056_ (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/world/level/levelgen/heightproviders/VeryBiasedToBottomHeight/lambda$static$3 (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/world/level/levelgen/heightproviders/VeryBiasedToBottomHeight/m_162058_ (Lnet/minecraft/world/level/levelgen/VerticalAnchor;Lnet/minecraft/world/level/levelgen/VerticalAnchor;I)Lnet/minecraft/world/level/levelgen/heightproviders/VeryBiasedToBottomHeight; net/minecraft/world/level/levelgen/heightproviders/VeryBiasedToBottomHeight/of (Lnet/minecraft/world/level/levelgen/VerticalAnchor;Lnet/minecraft/world/level/levelgen/VerticalAnchor;I)Lnet/minecraft/world/level/levelgen/heightproviders/VeryBiasedToBottomHeight; +MD: net/minecraft/world/level/levelgen/heightproviders/VeryBiasedToBottomHeight/m_162062_ (Lnet/minecraft/world/level/levelgen/heightproviders/VeryBiasedToBottomHeight;)Ljava/lang/Integer; net/minecraft/world/level/levelgen/heightproviders/VeryBiasedToBottomHeight/lambda$static$2 (Lnet/minecraft/world/level/levelgen/heightproviders/VeryBiasedToBottomHeight;)Ljava/lang/Integer; +MD: net/minecraft/world/level/levelgen/heightproviders/VeryBiasedToBottomHeight/m_162067_ (Lnet/minecraft/world/level/levelgen/heightproviders/VeryBiasedToBottomHeight;)Lnet/minecraft/world/level/levelgen/VerticalAnchor; net/minecraft/world/level/levelgen/heightproviders/VeryBiasedToBottomHeight/lambda$static$1 (Lnet/minecraft/world/level/levelgen/heightproviders/VeryBiasedToBottomHeight;)Lnet/minecraft/world/level/levelgen/VerticalAnchor; +MD: net/minecraft/world/level/levelgen/heightproviders/VeryBiasedToBottomHeight/m_162069_ (Lnet/minecraft/world/level/levelgen/heightproviders/VeryBiasedToBottomHeight;)Lnet/minecraft/world/level/levelgen/VerticalAnchor; net/minecraft/world/level/levelgen/heightproviders/VeryBiasedToBottomHeight/lambda$static$0 (Lnet/minecraft/world/level/levelgen/heightproviders/VeryBiasedToBottomHeight;)Lnet/minecraft/world/level/levelgen/VerticalAnchor; +MD: net/minecraft/world/level/levelgen/heightproviders/VeryBiasedToBottomHeight/m_213859_ (Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/levelgen/WorldGenerationContext;)I net/minecraft/world/level/levelgen/heightproviders/VeryBiasedToBottomHeight/sample (Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/levelgen/WorldGenerationContext;)I +MD: net/minecraft/world/level/levelgen/heightproviders/VeryBiasedToBottomHeight/toString ()Ljava/lang/String; net/minecraft/world/level/levelgen/heightproviders/VeryBiasedToBottomHeight/toString ()Ljava/lang/String; +MD: net/minecraft/world/level/levelgen/heightproviders/WeightedListHeight/ ()V net/minecraft/world/level/levelgen/heightproviders/WeightedListHeight/ ()V +MD: net/minecraft/world/level/levelgen/heightproviders/WeightedListHeight/ (Lnet/minecraft/util/random/SimpleWeightedRandomList;)V net/minecraft/world/level/levelgen/heightproviders/WeightedListHeight/ (Lnet/minecraft/util/random/SimpleWeightedRandomList;)V +MD: net/minecraft/world/level/levelgen/heightproviders/WeightedListHeight/m_142002_ ()Lnet/minecraft/world/level/levelgen/heightproviders/HeightProviderType; net/minecraft/world/level/levelgen/heightproviders/WeightedListHeight/getType ()Lnet/minecraft/world/level/levelgen/heightproviders/HeightProviderType; +MD: net/minecraft/world/level/levelgen/heightproviders/WeightedListHeight/m_191538_ (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/world/level/levelgen/heightproviders/WeightedListHeight/lambda$static$1 (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/world/level/levelgen/heightproviders/WeightedListHeight/m_191540_ (Lnet/minecraft/world/level/levelgen/heightproviders/WeightedListHeight;)Lnet/minecraft/util/random/SimpleWeightedRandomList; net/minecraft/world/level/levelgen/heightproviders/WeightedListHeight/lambda$static$0 (Lnet/minecraft/world/level/levelgen/heightproviders/WeightedListHeight;)Lnet/minecraft/util/random/SimpleWeightedRandomList; +MD: net/minecraft/world/level/levelgen/heightproviders/WeightedListHeight/m_213859_ (Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/levelgen/WorldGenerationContext;)I net/minecraft/world/level/levelgen/heightproviders/WeightedListHeight/sample (Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/levelgen/WorldGenerationContext;)I +MD: net/minecraft/world/level/levelgen/material/MaterialRuleList/ (Ljava/util/List;)V net/minecraft/world/level/levelgen/material/MaterialRuleList/ (Ljava/util/List;)V +MD: net/minecraft/world/level/levelgen/material/MaterialRuleList/equals (Ljava/lang/Object;)Z net/minecraft/world/level/levelgen/material/MaterialRuleList/equals (Ljava/lang/Object;)Z +MD: net/minecraft/world/level/levelgen/material/MaterialRuleList/f_191545_ ()Ljava/util/List; net/minecraft/world/level/levelgen/material/MaterialRuleList/materialRuleList ()Ljava/util/List; +MD: net/minecraft/world/level/levelgen/material/MaterialRuleList/hashCode ()I net/minecraft/world/level/levelgen/material/MaterialRuleList/hashCode ()I +MD: net/minecraft/world/level/levelgen/material/MaterialRuleList/m_207387_ (Lnet/minecraft/world/level/levelgen/DensityFunction$FunctionContext;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/levelgen/material/MaterialRuleList/calculate (Lnet/minecraft/world/level/levelgen/DensityFunction$FunctionContext;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/levelgen/material/MaterialRuleList/toString ()Ljava/lang/String; net/minecraft/world/level/levelgen/material/MaterialRuleList/toString ()Ljava/lang/String; +MD: net/minecraft/world/level/levelgen/material/WorldGenMaterialRule/m_183577_ (Lnet/minecraft/world/level/levelgen/NoiseChunk;III)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/levelgen/material/WorldGenMaterialRule/apply (Lnet/minecraft/world/level/levelgen/NoiseChunk;III)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/levelgen/placement/BiomeFilter/ ()V net/minecraft/world/level/levelgen/placement/BiomeFilter/ ()V +MD: net/minecraft/world/level/levelgen/placement/BiomeFilter/ ()V net/minecraft/world/level/levelgen/placement/BiomeFilter/ ()V +MD: net/minecraft/world/level/levelgen/placement/BiomeFilter/m_183327_ ()Lnet/minecraft/world/level/levelgen/placement/PlacementModifierType; net/minecraft/world/level/levelgen/placement/BiomeFilter/type ()Lnet/minecraft/world/level/levelgen/placement/PlacementModifierType; +MD: net/minecraft/world/level/levelgen/placement/BiomeFilter/m_191561_ ()Lnet/minecraft/world/level/levelgen/placement/BiomeFilter; net/minecraft/world/level/levelgen/placement/BiomeFilter/biome ()Lnet/minecraft/world/level/levelgen/placement/BiomeFilter; +MD: net/minecraft/world/level/levelgen/placement/BiomeFilter/m_191567_ ()Ljava/lang/IllegalStateException; net/minecraft/world/level/levelgen/placement/BiomeFilter/lambda$shouldPlace$1 ()Ljava/lang/IllegalStateException; +MD: net/minecraft/world/level/levelgen/placement/BiomeFilter/m_191568_ ()Lnet/minecraft/world/level/levelgen/placement/BiomeFilter; net/minecraft/world/level/levelgen/placement/BiomeFilter/lambda$static$0 ()Lnet/minecraft/world/level/levelgen/placement/BiomeFilter; +MD: net/minecraft/world/level/levelgen/placement/BiomeFilter/m_213917_ (Lnet/minecraft/world/level/levelgen/placement/PlacementContext;Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/level/levelgen/placement/BiomeFilter/shouldPlace (Lnet/minecraft/world/level/levelgen/placement/PlacementContext;Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/level/levelgen/placement/BlockPredicateFilter/ ()V net/minecraft/world/level/levelgen/placement/BlockPredicateFilter/ ()V +MD: net/minecraft/world/level/levelgen/placement/BlockPredicateFilter/ (Lnet/minecraft/world/level/levelgen/blockpredicates/BlockPredicate;)V net/minecraft/world/level/levelgen/placement/BlockPredicateFilter/ (Lnet/minecraft/world/level/levelgen/blockpredicates/BlockPredicate;)V +MD: net/minecraft/world/level/levelgen/placement/BlockPredicateFilter/m_183327_ ()Lnet/minecraft/world/level/levelgen/placement/PlacementModifierType; net/minecraft/world/level/levelgen/placement/BlockPredicateFilter/type ()Lnet/minecraft/world/level/levelgen/placement/PlacementModifierType; +MD: net/minecraft/world/level/levelgen/placement/BlockPredicateFilter/m_191574_ (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/world/level/levelgen/placement/BlockPredicateFilter/lambda$static$1 (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/world/level/levelgen/placement/BlockPredicateFilter/m_191576_ (Lnet/minecraft/world/level/levelgen/blockpredicates/BlockPredicate;)Lnet/minecraft/world/level/levelgen/placement/BlockPredicateFilter; net/minecraft/world/level/levelgen/placement/BlockPredicateFilter/forPredicate (Lnet/minecraft/world/level/levelgen/blockpredicates/BlockPredicate;)Lnet/minecraft/world/level/levelgen/placement/BlockPredicateFilter; +MD: net/minecraft/world/level/levelgen/placement/BlockPredicateFilter/m_191578_ (Lnet/minecraft/world/level/levelgen/placement/BlockPredicateFilter;)Lnet/minecraft/world/level/levelgen/blockpredicates/BlockPredicate; net/minecraft/world/level/levelgen/placement/BlockPredicateFilter/lambda$static$0 (Lnet/minecraft/world/level/levelgen/placement/BlockPredicateFilter;)Lnet/minecraft/world/level/levelgen/blockpredicates/BlockPredicate; +MD: net/minecraft/world/level/levelgen/placement/BlockPredicateFilter/m_213917_ (Lnet/minecraft/world/level/levelgen/placement/PlacementContext;Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/level/levelgen/placement/BlockPredicateFilter/shouldPlace (Lnet/minecraft/world/level/levelgen/placement/PlacementContext;Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/level/levelgen/placement/CarvingMaskPlacement/ ()V net/minecraft/world/level/levelgen/placement/CarvingMaskPlacement/ ()V +MD: net/minecraft/world/level/levelgen/placement/CarvingMaskPlacement/ (Lnet/minecraft/world/level/levelgen/GenerationStep$Carving;)V net/minecraft/world/level/levelgen/placement/CarvingMaskPlacement/ (Lnet/minecraft/world/level/levelgen/GenerationStep$Carving;)V +MD: net/minecraft/world/level/levelgen/placement/CarvingMaskPlacement/m_183327_ ()Lnet/minecraft/world/level/levelgen/placement/PlacementModifierType; net/minecraft/world/level/levelgen/placement/CarvingMaskPlacement/type ()Lnet/minecraft/world/level/levelgen/placement/PlacementModifierType; +MD: net/minecraft/world/level/levelgen/placement/CarvingMaskPlacement/m_191590_ (Lnet/minecraft/world/level/levelgen/GenerationStep$Carving;)Lnet/minecraft/world/level/levelgen/placement/CarvingMaskPlacement; net/minecraft/world/level/levelgen/placement/CarvingMaskPlacement/forStep (Lnet/minecraft/world/level/levelgen/GenerationStep$Carving;)Lnet/minecraft/world/level/levelgen/placement/CarvingMaskPlacement; +MD: net/minecraft/world/level/levelgen/placement/CarvingMaskPlacement/m_191592_ (Lnet/minecraft/world/level/levelgen/placement/CarvingMaskPlacement;)Lnet/minecraft/world/level/levelgen/GenerationStep$Carving; net/minecraft/world/level/levelgen/placement/CarvingMaskPlacement/lambda$static$0 (Lnet/minecraft/world/level/levelgen/placement/CarvingMaskPlacement;)Lnet/minecraft/world/level/levelgen/GenerationStep$Carving; +MD: net/minecraft/world/level/levelgen/placement/CarvingMaskPlacement/m_213676_ (Lnet/minecraft/world/level/levelgen/placement/PlacementContext;Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos;)Ljava/util/stream/Stream; net/minecraft/world/level/levelgen/placement/CarvingMaskPlacement/getPositions (Lnet/minecraft/world/level/levelgen/placement/PlacementContext;Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos;)Ljava/util/stream/Stream; +MD: net/minecraft/world/level/levelgen/placement/CaveSurface/ ()V net/minecraft/world/level/levelgen/placement/CaveSurface/ ()V +MD: net/minecraft/world/level/levelgen/placement/CaveSurface/ (Ljava/lang/String;ILnet/minecraft/core/Direction;ILjava/lang/String;)V net/minecraft/world/level/levelgen/placement/CaveSurface/ (Ljava/lang/String;ILnet/minecraft/core/Direction;ILjava/lang/String;)V +MD: net/minecraft/world/level/levelgen/placement/CaveSurface/m_162107_ ()Lnet/minecraft/core/Direction; net/minecraft/world/level/levelgen/placement/CaveSurface/getDirection ()Lnet/minecraft/core/Direction; +MD: net/minecraft/world/level/levelgen/placement/CaveSurface/m_162110_ ()I net/minecraft/world/level/levelgen/placement/CaveSurface/getY ()I +MD: net/minecraft/world/level/levelgen/placement/CaveSurface/m_162112_ ()[Lnet/minecraft/world/level/levelgen/placement/CaveSurface; net/minecraft/world/level/levelgen/placement/CaveSurface/$values ()[Lnet/minecraft/world/level/levelgen/placement/CaveSurface; +MD: net/minecraft/world/level/levelgen/placement/CaveSurface/m_7912_ ()Ljava/lang/String; net/minecraft/world/level/levelgen/placement/CaveSurface/getSerializedName ()Ljava/lang/String; +MD: net/minecraft/world/level/levelgen/placement/CaveSurface/valueOf (Ljava/lang/String;)Lnet/minecraft/world/level/levelgen/placement/CaveSurface; net/minecraft/world/level/levelgen/placement/CaveSurface/valueOf (Ljava/lang/String;)Lnet/minecraft/world/level/levelgen/placement/CaveSurface; +MD: net/minecraft/world/level/levelgen/placement/CaveSurface/values ()[Lnet/minecraft/world/level/levelgen/placement/CaveSurface; net/minecraft/world/level/levelgen/placement/CaveSurface/values ()[Lnet/minecraft/world/level/levelgen/placement/CaveSurface; +MD: net/minecraft/world/level/levelgen/placement/CountOnEveryLayerPlacement/ ()V net/minecraft/world/level/levelgen/placement/CountOnEveryLayerPlacement/ ()V +MD: net/minecraft/world/level/levelgen/placement/CountOnEveryLayerPlacement/ (Lnet/minecraft/util/valueproviders/IntProvider;)V net/minecraft/world/level/levelgen/placement/CountOnEveryLayerPlacement/ (Lnet/minecraft/util/valueproviders/IntProvider;)V +MD: net/minecraft/world/level/levelgen/placement/CountOnEveryLayerPlacement/m_183327_ ()Lnet/minecraft/world/level/levelgen/placement/PlacementModifierType; net/minecraft/world/level/levelgen/placement/CountOnEveryLayerPlacement/type ()Lnet/minecraft/world/level/levelgen/placement/PlacementModifierType; +MD: net/minecraft/world/level/levelgen/placement/CountOnEveryLayerPlacement/m_191604_ (I)Lnet/minecraft/world/level/levelgen/placement/CountOnEveryLayerPlacement; net/minecraft/world/level/levelgen/placement/CountOnEveryLayerPlacement/of (I)Lnet/minecraft/world/level/levelgen/placement/CountOnEveryLayerPlacement; +MD: net/minecraft/world/level/levelgen/placement/CountOnEveryLayerPlacement/m_191606_ (Lnet/minecraft/util/valueproviders/IntProvider;)Lnet/minecraft/world/level/levelgen/placement/CountOnEveryLayerPlacement; net/minecraft/world/level/levelgen/placement/CountOnEveryLayerPlacement/of (Lnet/minecraft/util/valueproviders/IntProvider;)Lnet/minecraft/world/level/levelgen/placement/CountOnEveryLayerPlacement; +MD: net/minecraft/world/level/levelgen/placement/CountOnEveryLayerPlacement/m_191608_ (Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/world/level/levelgen/placement/CountOnEveryLayerPlacement/isEmpty (Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/world/level/levelgen/placement/CountOnEveryLayerPlacement/m_191610_ (Lnet/minecraft/world/level/levelgen/placement/CountOnEveryLayerPlacement;)Lnet/minecraft/util/valueproviders/IntProvider; net/minecraft/world/level/levelgen/placement/CountOnEveryLayerPlacement/lambda$static$0 (Lnet/minecraft/world/level/levelgen/placement/CountOnEveryLayerPlacement;)Lnet/minecraft/util/valueproviders/IntProvider; +MD: net/minecraft/world/level/levelgen/placement/CountOnEveryLayerPlacement/m_191612_ (Lnet/minecraft/world/level/levelgen/placement/PlacementContext;IIII)I net/minecraft/world/level/levelgen/placement/CountOnEveryLayerPlacement/findOnGroundYPosition (Lnet/minecraft/world/level/levelgen/placement/PlacementContext;IIII)I +MD: net/minecraft/world/level/levelgen/placement/CountOnEveryLayerPlacement/m_213676_ (Lnet/minecraft/world/level/levelgen/placement/PlacementContext;Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos;)Ljava/util/stream/Stream; net/minecraft/world/level/levelgen/placement/CountOnEveryLayerPlacement/getPositions (Lnet/minecraft/world/level/levelgen/placement/PlacementContext;Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos;)Ljava/util/stream/Stream; +MD: net/minecraft/world/level/levelgen/placement/CountPlacement/ ()V net/minecraft/world/level/levelgen/placement/CountPlacement/ ()V +MD: net/minecraft/world/level/levelgen/placement/CountPlacement/ (Lnet/minecraft/util/valueproviders/IntProvider;)V net/minecraft/world/level/levelgen/placement/CountPlacement/ (Lnet/minecraft/util/valueproviders/IntProvider;)V +MD: net/minecraft/world/level/levelgen/placement/CountPlacement/m_183327_ ()Lnet/minecraft/world/level/levelgen/placement/PlacementModifierType; net/minecraft/world/level/levelgen/placement/CountPlacement/type ()Lnet/minecraft/world/level/levelgen/placement/PlacementModifierType; +MD: net/minecraft/world/level/levelgen/placement/CountPlacement/m_191628_ (I)Lnet/minecraft/world/level/levelgen/placement/CountPlacement; net/minecraft/world/level/levelgen/placement/CountPlacement/of (I)Lnet/minecraft/world/level/levelgen/placement/CountPlacement; +MD: net/minecraft/world/level/levelgen/placement/CountPlacement/m_191630_ (Lnet/minecraft/util/valueproviders/IntProvider;)Lnet/minecraft/world/level/levelgen/placement/CountPlacement; net/minecraft/world/level/levelgen/placement/CountPlacement/of (Lnet/minecraft/util/valueproviders/IntProvider;)Lnet/minecraft/world/level/levelgen/placement/CountPlacement; +MD: net/minecraft/world/level/levelgen/placement/CountPlacement/m_191632_ (Lnet/minecraft/world/level/levelgen/placement/CountPlacement;)Lnet/minecraft/util/valueproviders/IntProvider; net/minecraft/world/level/levelgen/placement/CountPlacement/lambda$static$0 (Lnet/minecraft/world/level/levelgen/placement/CountPlacement;)Lnet/minecraft/util/valueproviders/IntProvider; +MD: net/minecraft/world/level/levelgen/placement/CountPlacement/m_213944_ (Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos;)I net/minecraft/world/level/levelgen/placement/CountPlacement/count (Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos;)I +MD: net/minecraft/world/level/levelgen/placement/EnvironmentScanPlacement/ ()V net/minecraft/world/level/levelgen/placement/EnvironmentScanPlacement/ ()V +MD: net/minecraft/world/level/levelgen/placement/EnvironmentScanPlacement/ (Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/levelgen/blockpredicates/BlockPredicate;Lnet/minecraft/world/level/levelgen/blockpredicates/BlockPredicate;I)V net/minecraft/world/level/levelgen/placement/EnvironmentScanPlacement/ (Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/levelgen/blockpredicates/BlockPredicate;Lnet/minecraft/world/level/levelgen/blockpredicates/BlockPredicate;I)V +MD: net/minecraft/world/level/levelgen/placement/EnvironmentScanPlacement/m_183327_ ()Lnet/minecraft/world/level/levelgen/placement/PlacementModifierType; net/minecraft/world/level/levelgen/placement/EnvironmentScanPlacement/type ()Lnet/minecraft/world/level/levelgen/placement/PlacementModifierType; +MD: net/minecraft/world/level/levelgen/placement/EnvironmentScanPlacement/m_191649_ (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/world/level/levelgen/placement/EnvironmentScanPlacement/lambda$static$4 (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/world/level/levelgen/placement/EnvironmentScanPlacement/m_191651_ (Lnet/minecraft/world/level/levelgen/placement/EnvironmentScanPlacement;)Ljava/lang/Integer; net/minecraft/world/level/levelgen/placement/EnvironmentScanPlacement/lambda$static$3 (Lnet/minecraft/world/level/levelgen/placement/EnvironmentScanPlacement;)Ljava/lang/Integer; +MD: net/minecraft/world/level/levelgen/placement/EnvironmentScanPlacement/m_191653_ (Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/levelgen/blockpredicates/BlockPredicate;I)Lnet/minecraft/world/level/levelgen/placement/EnvironmentScanPlacement; net/minecraft/world/level/levelgen/placement/EnvironmentScanPlacement/scanningFor (Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/levelgen/blockpredicates/BlockPredicate;I)Lnet/minecraft/world/level/levelgen/placement/EnvironmentScanPlacement; +MD: net/minecraft/world/level/levelgen/placement/EnvironmentScanPlacement/m_191657_ (Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/levelgen/blockpredicates/BlockPredicate;Lnet/minecraft/world/level/levelgen/blockpredicates/BlockPredicate;I)Lnet/minecraft/world/level/levelgen/placement/EnvironmentScanPlacement; net/minecraft/world/level/levelgen/placement/EnvironmentScanPlacement/scanningFor (Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/levelgen/blockpredicates/BlockPredicate;Lnet/minecraft/world/level/levelgen/blockpredicates/BlockPredicate;I)Lnet/minecraft/world/level/levelgen/placement/EnvironmentScanPlacement; +MD: net/minecraft/world/level/levelgen/placement/EnvironmentScanPlacement/m_191667_ (Lnet/minecraft/world/level/levelgen/placement/EnvironmentScanPlacement;)Lnet/minecraft/world/level/levelgen/blockpredicates/BlockPredicate; net/minecraft/world/level/levelgen/placement/EnvironmentScanPlacement/lambda$static$2 (Lnet/minecraft/world/level/levelgen/placement/EnvironmentScanPlacement;)Lnet/minecraft/world/level/levelgen/blockpredicates/BlockPredicate; +MD: net/minecraft/world/level/levelgen/placement/EnvironmentScanPlacement/m_191669_ (Lnet/minecraft/world/level/levelgen/placement/EnvironmentScanPlacement;)Lnet/minecraft/world/level/levelgen/blockpredicates/BlockPredicate; net/minecraft/world/level/levelgen/placement/EnvironmentScanPlacement/lambda$static$1 (Lnet/minecraft/world/level/levelgen/placement/EnvironmentScanPlacement;)Lnet/minecraft/world/level/levelgen/blockpredicates/BlockPredicate; +MD: net/minecraft/world/level/levelgen/placement/EnvironmentScanPlacement/m_191671_ (Lnet/minecraft/world/level/levelgen/placement/EnvironmentScanPlacement;)Lnet/minecraft/core/Direction; net/minecraft/world/level/levelgen/placement/EnvironmentScanPlacement/lambda$static$0 (Lnet/minecraft/world/level/levelgen/placement/EnvironmentScanPlacement;)Lnet/minecraft/core/Direction; +MD: net/minecraft/world/level/levelgen/placement/EnvironmentScanPlacement/m_213676_ (Lnet/minecraft/world/level/levelgen/placement/PlacementContext;Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos;)Ljava/util/stream/Stream; net/minecraft/world/level/levelgen/placement/EnvironmentScanPlacement/getPositions (Lnet/minecraft/world/level/levelgen/placement/PlacementContext;Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos;)Ljava/util/stream/Stream; +MD: net/minecraft/world/level/levelgen/placement/HeightRangePlacement/ ()V net/minecraft/world/level/levelgen/placement/HeightRangePlacement/ ()V +MD: net/minecraft/world/level/levelgen/placement/HeightRangePlacement/ (Lnet/minecraft/world/level/levelgen/heightproviders/HeightProvider;)V net/minecraft/world/level/levelgen/placement/HeightRangePlacement/ (Lnet/minecraft/world/level/levelgen/heightproviders/HeightProvider;)V +MD: net/minecraft/world/level/levelgen/placement/HeightRangePlacement/m_183327_ ()Lnet/minecraft/world/level/levelgen/placement/PlacementModifierType; net/minecraft/world/level/levelgen/placement/HeightRangePlacement/type ()Lnet/minecraft/world/level/levelgen/placement/PlacementModifierType; +MD: net/minecraft/world/level/levelgen/placement/HeightRangePlacement/m_191678_ (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/world/level/levelgen/placement/HeightRangePlacement/lambda$static$1 (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/world/level/levelgen/placement/HeightRangePlacement/m_191680_ (Lnet/minecraft/world/level/levelgen/VerticalAnchor;Lnet/minecraft/world/level/levelgen/VerticalAnchor;)Lnet/minecraft/world/level/levelgen/placement/HeightRangePlacement; net/minecraft/world/level/levelgen/placement/HeightRangePlacement/uniform (Lnet/minecraft/world/level/levelgen/VerticalAnchor;Lnet/minecraft/world/level/levelgen/VerticalAnchor;)Lnet/minecraft/world/level/levelgen/placement/HeightRangePlacement; +MD: net/minecraft/world/level/levelgen/placement/HeightRangePlacement/m_191683_ (Lnet/minecraft/world/level/levelgen/heightproviders/HeightProvider;)Lnet/minecraft/world/level/levelgen/placement/HeightRangePlacement; net/minecraft/world/level/levelgen/placement/HeightRangePlacement/of (Lnet/minecraft/world/level/levelgen/heightproviders/HeightProvider;)Lnet/minecraft/world/level/levelgen/placement/HeightRangePlacement; +MD: net/minecraft/world/level/levelgen/placement/HeightRangePlacement/m_191685_ (Lnet/minecraft/world/level/levelgen/placement/HeightRangePlacement;)Lnet/minecraft/world/level/levelgen/heightproviders/HeightProvider; net/minecraft/world/level/levelgen/placement/HeightRangePlacement/lambda$static$0 (Lnet/minecraft/world/level/levelgen/placement/HeightRangePlacement;)Lnet/minecraft/world/level/levelgen/heightproviders/HeightProvider; +MD: net/minecraft/world/level/levelgen/placement/HeightRangePlacement/m_191692_ (Lnet/minecraft/world/level/levelgen/VerticalAnchor;Lnet/minecraft/world/level/levelgen/VerticalAnchor;)Lnet/minecraft/world/level/levelgen/placement/HeightRangePlacement; net/minecraft/world/level/levelgen/placement/HeightRangePlacement/triangle (Lnet/minecraft/world/level/levelgen/VerticalAnchor;Lnet/minecraft/world/level/levelgen/VerticalAnchor;)Lnet/minecraft/world/level/levelgen/placement/HeightRangePlacement; +MD: net/minecraft/world/level/levelgen/placement/HeightRangePlacement/m_213676_ (Lnet/minecraft/world/level/levelgen/placement/PlacementContext;Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos;)Ljava/util/stream/Stream; net/minecraft/world/level/levelgen/placement/HeightRangePlacement/getPositions (Lnet/minecraft/world/level/levelgen/placement/PlacementContext;Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos;)Ljava/util/stream/Stream; +MD: net/minecraft/world/level/levelgen/placement/HeightmapPlacement/ ()V net/minecraft/world/level/levelgen/placement/HeightmapPlacement/ ()V +MD: net/minecraft/world/level/levelgen/placement/HeightmapPlacement/ (Lnet/minecraft/world/level/levelgen/Heightmap$Types;)V net/minecraft/world/level/levelgen/placement/HeightmapPlacement/ (Lnet/minecraft/world/level/levelgen/Heightmap$Types;)V +MD: net/minecraft/world/level/levelgen/placement/HeightmapPlacement/m_183327_ ()Lnet/minecraft/world/level/levelgen/placement/PlacementModifierType; net/minecraft/world/level/levelgen/placement/HeightmapPlacement/type ()Lnet/minecraft/world/level/levelgen/placement/PlacementModifierType; +MD: net/minecraft/world/level/levelgen/placement/HeightmapPlacement/m_191700_ (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/world/level/levelgen/placement/HeightmapPlacement/lambda$static$1 (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/world/level/levelgen/placement/HeightmapPlacement/m_191702_ (Lnet/minecraft/world/level/levelgen/Heightmap$Types;)Lnet/minecraft/world/level/levelgen/placement/HeightmapPlacement; net/minecraft/world/level/levelgen/placement/HeightmapPlacement/onHeightmap (Lnet/minecraft/world/level/levelgen/Heightmap$Types;)Lnet/minecraft/world/level/levelgen/placement/HeightmapPlacement; +MD: net/minecraft/world/level/levelgen/placement/HeightmapPlacement/m_191704_ (Lnet/minecraft/world/level/levelgen/placement/HeightmapPlacement;)Lnet/minecraft/world/level/levelgen/Heightmap$Types; net/minecraft/world/level/levelgen/placement/HeightmapPlacement/lambda$static$0 (Lnet/minecraft/world/level/levelgen/placement/HeightmapPlacement;)Lnet/minecraft/world/level/levelgen/Heightmap$Types; +MD: net/minecraft/world/level/levelgen/placement/HeightmapPlacement/m_213676_ (Lnet/minecraft/world/level/levelgen/placement/PlacementContext;Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos;)Ljava/util/stream/Stream; net/minecraft/world/level/levelgen/placement/HeightmapPlacement/getPositions (Lnet/minecraft/world/level/levelgen/placement/PlacementContext;Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos;)Ljava/util/stream/Stream; +MD: net/minecraft/world/level/levelgen/placement/InSquarePlacement/ ()V net/minecraft/world/level/levelgen/placement/InSquarePlacement/ ()V +MD: net/minecraft/world/level/levelgen/placement/InSquarePlacement/ ()V net/minecraft/world/level/levelgen/placement/InSquarePlacement/ ()V +MD: net/minecraft/world/level/levelgen/placement/InSquarePlacement/m_183327_ ()Lnet/minecraft/world/level/levelgen/placement/PlacementModifierType; net/minecraft/world/level/levelgen/placement/InSquarePlacement/type ()Lnet/minecraft/world/level/levelgen/placement/PlacementModifierType; +MD: net/minecraft/world/level/levelgen/placement/InSquarePlacement/m_191715_ ()Lnet/minecraft/world/level/levelgen/placement/InSquarePlacement; net/minecraft/world/level/levelgen/placement/InSquarePlacement/spread ()Lnet/minecraft/world/level/levelgen/placement/InSquarePlacement; +MD: net/minecraft/world/level/levelgen/placement/InSquarePlacement/m_191721_ ()Lnet/minecraft/world/level/levelgen/placement/InSquarePlacement; net/minecraft/world/level/levelgen/placement/InSquarePlacement/lambda$static$0 ()Lnet/minecraft/world/level/levelgen/placement/InSquarePlacement; +MD: net/minecraft/world/level/levelgen/placement/InSquarePlacement/m_213676_ (Lnet/minecraft/world/level/levelgen/placement/PlacementContext;Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos;)Ljava/util/stream/Stream; net/minecraft/world/level/levelgen/placement/InSquarePlacement/getPositions (Lnet/minecraft/world/level/levelgen/placement/PlacementContext;Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos;)Ljava/util/stream/Stream; +MD: net/minecraft/world/level/levelgen/placement/NoiseBasedCountPlacement/ ()V net/minecraft/world/level/levelgen/placement/NoiseBasedCountPlacement/ ()V +MD: net/minecraft/world/level/levelgen/placement/NoiseBasedCountPlacement/ (IDD)V net/minecraft/world/level/levelgen/placement/NoiseBasedCountPlacement/ (IDD)V +MD: net/minecraft/world/level/levelgen/placement/NoiseBasedCountPlacement/m_183327_ ()Lnet/minecraft/world/level/levelgen/placement/PlacementModifierType; net/minecraft/world/level/levelgen/placement/NoiseBasedCountPlacement/type ()Lnet/minecraft/world/level/levelgen/placement/PlacementModifierType; +MD: net/minecraft/world/level/levelgen/placement/NoiseBasedCountPlacement/m_191731_ (IDD)Lnet/minecraft/world/level/levelgen/placement/NoiseBasedCountPlacement; net/minecraft/world/level/levelgen/placement/NoiseBasedCountPlacement/of (IDD)Lnet/minecraft/world/level/levelgen/placement/NoiseBasedCountPlacement; +MD: net/minecraft/world/level/levelgen/placement/NoiseBasedCountPlacement/m_191735_ (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/world/level/levelgen/placement/NoiseBasedCountPlacement/lambda$static$3 (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/world/level/levelgen/placement/NoiseBasedCountPlacement/m_191737_ (Lnet/minecraft/world/level/levelgen/placement/NoiseBasedCountPlacement;)Ljava/lang/Double; net/minecraft/world/level/levelgen/placement/NoiseBasedCountPlacement/lambda$static$2 (Lnet/minecraft/world/level/levelgen/placement/NoiseBasedCountPlacement;)Ljava/lang/Double; +MD: net/minecraft/world/level/levelgen/placement/NoiseBasedCountPlacement/m_191743_ (Lnet/minecraft/world/level/levelgen/placement/NoiseBasedCountPlacement;)Ljava/lang/Double; net/minecraft/world/level/levelgen/placement/NoiseBasedCountPlacement/lambda$static$1 (Lnet/minecraft/world/level/levelgen/placement/NoiseBasedCountPlacement;)Ljava/lang/Double; +MD: net/minecraft/world/level/levelgen/placement/NoiseBasedCountPlacement/m_191745_ (Lnet/minecraft/world/level/levelgen/placement/NoiseBasedCountPlacement;)Ljava/lang/Integer; net/minecraft/world/level/levelgen/placement/NoiseBasedCountPlacement/lambda$static$0 (Lnet/minecraft/world/level/levelgen/placement/NoiseBasedCountPlacement;)Ljava/lang/Integer; +MD: net/minecraft/world/level/levelgen/placement/NoiseBasedCountPlacement/m_213944_ (Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos;)I net/minecraft/world/level/levelgen/placement/NoiseBasedCountPlacement/count (Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos;)I +MD: net/minecraft/world/level/levelgen/placement/NoiseThresholdCountPlacement/ ()V net/minecraft/world/level/levelgen/placement/NoiseThresholdCountPlacement/ ()V +MD: net/minecraft/world/level/levelgen/placement/NoiseThresholdCountPlacement/ (DII)V net/minecraft/world/level/levelgen/placement/NoiseThresholdCountPlacement/ (DII)V +MD: net/minecraft/world/level/levelgen/placement/NoiseThresholdCountPlacement/m_183327_ ()Lnet/minecraft/world/level/levelgen/placement/PlacementModifierType; net/minecraft/world/level/levelgen/placement/NoiseThresholdCountPlacement/type ()Lnet/minecraft/world/level/levelgen/placement/PlacementModifierType; +MD: net/minecraft/world/level/levelgen/placement/NoiseThresholdCountPlacement/m_191756_ (DII)Lnet/minecraft/world/level/levelgen/placement/NoiseThresholdCountPlacement; net/minecraft/world/level/levelgen/placement/NoiseThresholdCountPlacement/of (DII)Lnet/minecraft/world/level/levelgen/placement/NoiseThresholdCountPlacement; +MD: net/minecraft/world/level/levelgen/placement/NoiseThresholdCountPlacement/m_191760_ (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/world/level/levelgen/placement/NoiseThresholdCountPlacement/lambda$static$3 (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/world/level/levelgen/placement/NoiseThresholdCountPlacement/m_191762_ (Lnet/minecraft/world/level/levelgen/placement/NoiseThresholdCountPlacement;)Ljava/lang/Integer; net/minecraft/world/level/levelgen/placement/NoiseThresholdCountPlacement/lambda$static$2 (Lnet/minecraft/world/level/levelgen/placement/NoiseThresholdCountPlacement;)Ljava/lang/Integer; +MD: net/minecraft/world/level/levelgen/placement/NoiseThresholdCountPlacement/m_191768_ (Lnet/minecraft/world/level/levelgen/placement/NoiseThresholdCountPlacement;)Ljava/lang/Integer; net/minecraft/world/level/levelgen/placement/NoiseThresholdCountPlacement/lambda$static$1 (Lnet/minecraft/world/level/levelgen/placement/NoiseThresholdCountPlacement;)Ljava/lang/Integer; +MD: net/minecraft/world/level/levelgen/placement/NoiseThresholdCountPlacement/m_191770_ (Lnet/minecraft/world/level/levelgen/placement/NoiseThresholdCountPlacement;)Ljava/lang/Double; net/minecraft/world/level/levelgen/placement/NoiseThresholdCountPlacement/lambda$static$0 (Lnet/minecraft/world/level/levelgen/placement/NoiseThresholdCountPlacement;)Ljava/lang/Double; +MD: net/minecraft/world/level/levelgen/placement/NoiseThresholdCountPlacement/m_213944_ (Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos;)I net/minecraft/world/level/levelgen/placement/NoiseThresholdCountPlacement/count (Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos;)I +MD: net/minecraft/world/level/levelgen/placement/PlacedFeature/ ()V net/minecraft/world/level/levelgen/placement/PlacedFeature/ ()V +MD: net/minecraft/world/level/levelgen/placement/PlacedFeature/ (Lnet/minecraft/core/Holder;Ljava/util/List;)V net/minecraft/world/level/levelgen/placement/PlacedFeature/ (Lnet/minecraft/core/Holder;Ljava/util/List;)V +MD: net/minecraft/world/level/levelgen/placement/PlacedFeature/equals (Ljava/lang/Object;)Z net/minecraft/world/level/levelgen/placement/PlacedFeature/equals (Ljava/lang/Object;)Z +MD: net/minecraft/world/level/levelgen/placement/PlacedFeature/f_191775_ ()Lnet/minecraft/core/Holder; net/minecraft/world/level/levelgen/placement/PlacedFeature/feature ()Lnet/minecraft/core/Holder; +MD: net/minecraft/world/level/levelgen/placement/PlacedFeature/f_191776_ ()Ljava/util/List; net/minecraft/world/level/levelgen/placement/PlacedFeature/placement ()Ljava/util/List; +MD: net/minecraft/world/level/levelgen/placement/PlacedFeature/hashCode ()I net/minecraft/world/level/levelgen/placement/PlacedFeature/hashCode ()I +MD: net/minecraft/world/level/levelgen/placement/PlacedFeature/m_191781_ ()Ljava/util/stream/Stream; net/minecraft/world/level/levelgen/placement/PlacedFeature/getFeatures ()Ljava/util/stream/Stream; +MD: net/minecraft/world/level/levelgen/placement/PlacedFeature/m_191787_ (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/world/level/levelgen/placement/PlacedFeature/lambda$static$2 (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/world/level/levelgen/placement/PlacedFeature/m_191795_ (Lnet/minecraft/world/level/levelgen/placement/PlacedFeature;)Ljava/util/List; net/minecraft/world/level/levelgen/placement/PlacedFeature/lambda$static$1 (Lnet/minecraft/world/level/levelgen/placement/PlacedFeature;)Ljava/util/List; +MD: net/minecraft/world/level/levelgen/placement/PlacedFeature/m_204927_ (Lnet/minecraft/world/level/levelgen/placement/PlacedFeature;)Lnet/minecraft/core/Holder; net/minecraft/world/level/levelgen/placement/PlacedFeature/lambda$static$0 (Lnet/minecraft/world/level/levelgen/placement/PlacedFeature;)Lnet/minecraft/core/Holder; +MD: net/minecraft/world/level/levelgen/placement/PlacedFeature/m_226357_ (Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/world/level/chunk/ChunkGenerator;Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/level/levelgen/placement/PlacedFeature/place (Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/world/level/chunk/ChunkGenerator;Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/level/levelgen/placement/PlacedFeature/m_226362_ (Lnet/minecraft/world/level/levelgen/feature/ConfiguredFeature;Lnet/minecraft/world/level/levelgen/placement/PlacementContext;Lnet/minecraft/util/RandomSource;Lorg/apache/commons/lang3/mutable/MutableBoolean;Lnet/minecraft/core/BlockPos;)V net/minecraft/world/level/levelgen/placement/PlacedFeature/lambda$placeWithContext$4 (Lnet/minecraft/world/level/levelgen/feature/ConfiguredFeature;Lnet/minecraft/world/level/levelgen/placement/PlacementContext;Lnet/minecraft/util/RandomSource;Lorg/apache/commons/lang3/mutable/MutableBoolean;Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/world/level/levelgen/placement/PlacedFeature/m_226368_ (Lnet/minecraft/world/level/levelgen/placement/PlacementContext;Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/level/levelgen/placement/PlacedFeature/placeWithContext (Lnet/minecraft/world/level/levelgen/placement/PlacementContext;Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/level/levelgen/placement/PlacedFeature/m_226372_ (Lnet/minecraft/world/level/levelgen/placement/PlacementModifier;Lnet/minecraft/world/level/levelgen/placement/PlacementContext;Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos;)Ljava/util/stream/Stream; net/minecraft/world/level/levelgen/placement/PlacedFeature/lambda$placeWithContext$3 (Lnet/minecraft/world/level/levelgen/placement/PlacementModifier;Lnet/minecraft/world/level/levelgen/placement/PlacementContext;Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos;)Ljava/util/stream/Stream; +MD: net/minecraft/world/level/levelgen/placement/PlacedFeature/m_226377_ (Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/world/level/chunk/ChunkGenerator;Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/level/levelgen/placement/PlacedFeature/placeWithBiomeCheck (Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/world/level/chunk/ChunkGenerator;Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/level/levelgen/placement/PlacedFeature/toString ()Ljava/lang/String; net/minecraft/world/level/levelgen/placement/PlacedFeature/toString ()Ljava/lang/String; +MD: net/minecraft/world/level/levelgen/placement/PlacementContext/ (Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/world/level/chunk/ChunkGenerator;Ljava/util/Optional;)V net/minecraft/world/level/levelgen/placement/PlacementContext/ (Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/world/level/chunk/ChunkGenerator;Ljava/util/Optional;)V +MD: net/minecraft/world/level/levelgen/placement/PlacementContext/m_191821_ (Lnet/minecraft/world/level/ChunkPos;Lnet/minecraft/world/level/levelgen/GenerationStep$Carving;)Lnet/minecraft/world/level/chunk/CarvingMask; net/minecraft/world/level/levelgen/placement/PlacementContext/getCarvingMask (Lnet/minecraft/world/level/ChunkPos;Lnet/minecraft/world/level/levelgen/GenerationStep$Carving;)Lnet/minecraft/world/level/chunk/CarvingMask; +MD: net/minecraft/world/level/levelgen/placement/PlacementContext/m_191824_ (Lnet/minecraft/world/level/levelgen/Heightmap$Types;II)I net/minecraft/world/level/levelgen/placement/PlacementContext/getHeight (Lnet/minecraft/world/level/levelgen/Heightmap$Types;II)I +MD: net/minecraft/world/level/levelgen/placement/PlacementContext/m_191828_ (Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/levelgen/placement/PlacementContext/getBlockState (Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/levelgen/placement/PlacementContext/m_191830_ ()I net/minecraft/world/level/levelgen/placement/PlacementContext/getMinBuildHeight ()I +MD: net/minecraft/world/level/levelgen/placement/PlacementContext/m_191831_ ()Lnet/minecraft/world/level/WorldGenLevel; net/minecraft/world/level/levelgen/placement/PlacementContext/getLevel ()Lnet/minecraft/world/level/WorldGenLevel; +MD: net/minecraft/world/level/levelgen/placement/PlacementContext/m_191832_ ()Ljava/util/Optional; net/minecraft/world/level/levelgen/placement/PlacementContext/topFeature ()Ljava/util/Optional; +MD: net/minecraft/world/level/levelgen/placement/PlacementContext/m_191833_ ()Lnet/minecraft/world/level/chunk/ChunkGenerator; net/minecraft/world/level/levelgen/placement/PlacementContext/generator ()Lnet/minecraft/world/level/chunk/ChunkGenerator; +MD: net/minecraft/world/level/levelgen/placement/PlacementFilter/ ()V net/minecraft/world/level/levelgen/placement/PlacementFilter/ ()V +MD: net/minecraft/world/level/levelgen/placement/PlacementFilter/m_213676_ (Lnet/minecraft/world/level/levelgen/placement/PlacementContext;Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos;)Ljava/util/stream/Stream; net/minecraft/world/level/levelgen/placement/PlacementFilter/getPositions (Lnet/minecraft/world/level/levelgen/placement/PlacementContext;Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos;)Ljava/util/stream/Stream; +MD: net/minecraft/world/level/levelgen/placement/PlacementFilter/m_213917_ (Lnet/minecraft/world/level/levelgen/placement/PlacementContext;Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/level/levelgen/placement/PlacementFilter/shouldPlace (Lnet/minecraft/world/level/levelgen/placement/PlacementContext;Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/level/levelgen/placement/PlacementModifier/ ()V net/minecraft/world/level/levelgen/placement/PlacementModifier/ ()V +MD: net/minecraft/world/level/levelgen/placement/PlacementModifier/ ()V net/minecraft/world/level/levelgen/placement/PlacementModifier/ ()V +MD: net/minecraft/world/level/levelgen/placement/PlacementModifier/m_183327_ ()Lnet/minecraft/world/level/levelgen/placement/PlacementModifierType; net/minecraft/world/level/levelgen/placement/PlacementModifier/type ()Lnet/minecraft/world/level/levelgen/placement/PlacementModifierType; +MD: net/minecraft/world/level/levelgen/placement/PlacementModifier/m_213676_ (Lnet/minecraft/world/level/levelgen/placement/PlacementContext;Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos;)Ljava/util/stream/Stream; net/minecraft/world/level/levelgen/placement/PlacementModifier/getPositions (Lnet/minecraft/world/level/levelgen/placement/PlacementContext;Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos;)Ljava/util/stream/Stream; +MD: net/minecraft/world/level/levelgen/placement/PlacementModifierType/ ()V net/minecraft/world/level/levelgen/placement/PlacementModifierType/ ()V +MD: net/minecraft/world/level/levelgen/placement/PlacementModifierType/m_191864_ (Lcom/mojang/serialization/Codec;)Lcom/mojang/serialization/Codec; net/minecraft/world/level/levelgen/placement/PlacementModifierType/lambda$register$0 (Lcom/mojang/serialization/Codec;)Lcom/mojang/serialization/Codec; +MD: net/minecraft/world/level/levelgen/placement/PlacementModifierType/m_191866_ (Ljava/lang/String;Lcom/mojang/serialization/Codec;)Lnet/minecraft/world/level/levelgen/placement/PlacementModifierType; net/minecraft/world/level/levelgen/placement/PlacementModifierType/register (Ljava/lang/String;Lcom/mojang/serialization/Codec;)Lnet/minecraft/world/level/levelgen/placement/PlacementModifierType; +MD: net/minecraft/world/level/levelgen/placement/PlacementModifierType/m_191869_ ()Lcom/mojang/serialization/Codec; net/minecraft/world/level/levelgen/placement/PlacementModifierType/codec ()Lcom/mojang/serialization/Codec; +MD: net/minecraft/world/level/levelgen/placement/RandomOffsetPlacement/ ()V net/minecraft/world/level/levelgen/placement/RandomOffsetPlacement/ ()V +MD: net/minecraft/world/level/levelgen/placement/RandomOffsetPlacement/ (Lnet/minecraft/util/valueproviders/IntProvider;Lnet/minecraft/util/valueproviders/IntProvider;)V net/minecraft/world/level/levelgen/placement/RandomOffsetPlacement/ (Lnet/minecraft/util/valueproviders/IntProvider;Lnet/minecraft/util/valueproviders/IntProvider;)V +MD: net/minecraft/world/level/levelgen/placement/RandomOffsetPlacement/m_183327_ ()Lnet/minecraft/world/level/levelgen/placement/PlacementModifierType; net/minecraft/world/level/levelgen/placement/RandomOffsetPlacement/type ()Lnet/minecraft/world/level/levelgen/placement/PlacementModifierType; +MD: net/minecraft/world/level/levelgen/placement/RandomOffsetPlacement/m_191877_ (Lnet/minecraft/util/valueproviders/IntProvider;)Lnet/minecraft/world/level/levelgen/placement/RandomOffsetPlacement; net/minecraft/world/level/levelgen/placement/RandomOffsetPlacement/vertical (Lnet/minecraft/util/valueproviders/IntProvider;)Lnet/minecraft/world/level/levelgen/placement/RandomOffsetPlacement; +MD: net/minecraft/world/level/levelgen/placement/RandomOffsetPlacement/m_191879_ (Lnet/minecraft/util/valueproviders/IntProvider;Lnet/minecraft/util/valueproviders/IntProvider;)Lnet/minecraft/world/level/levelgen/placement/RandomOffsetPlacement; net/minecraft/world/level/levelgen/placement/RandomOffsetPlacement/of (Lnet/minecraft/util/valueproviders/IntProvider;Lnet/minecraft/util/valueproviders/IntProvider;)Lnet/minecraft/world/level/levelgen/placement/RandomOffsetPlacement; +MD: net/minecraft/world/level/levelgen/placement/RandomOffsetPlacement/m_191882_ (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/world/level/levelgen/placement/RandomOffsetPlacement/lambda$static$2 (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/world/level/levelgen/placement/RandomOffsetPlacement/m_191884_ (Lnet/minecraft/world/level/levelgen/placement/RandomOffsetPlacement;)Lnet/minecraft/util/valueproviders/IntProvider; net/minecraft/world/level/levelgen/placement/RandomOffsetPlacement/lambda$static$1 (Lnet/minecraft/world/level/levelgen/placement/RandomOffsetPlacement;)Lnet/minecraft/util/valueproviders/IntProvider; +MD: net/minecraft/world/level/levelgen/placement/RandomOffsetPlacement/m_191891_ (Lnet/minecraft/util/valueproviders/IntProvider;)Lnet/minecraft/world/level/levelgen/placement/RandomOffsetPlacement; net/minecraft/world/level/levelgen/placement/RandomOffsetPlacement/horizontal (Lnet/minecraft/util/valueproviders/IntProvider;)Lnet/minecraft/world/level/levelgen/placement/RandomOffsetPlacement; +MD: net/minecraft/world/level/levelgen/placement/RandomOffsetPlacement/m_191893_ (Lnet/minecraft/world/level/levelgen/placement/RandomOffsetPlacement;)Lnet/minecraft/util/valueproviders/IntProvider; net/minecraft/world/level/levelgen/placement/RandomOffsetPlacement/lambda$static$0 (Lnet/minecraft/world/level/levelgen/placement/RandomOffsetPlacement;)Lnet/minecraft/util/valueproviders/IntProvider; +MD: net/minecraft/world/level/levelgen/placement/RandomOffsetPlacement/m_213676_ (Lnet/minecraft/world/level/levelgen/placement/PlacementContext;Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos;)Ljava/util/stream/Stream; net/minecraft/world/level/levelgen/placement/RandomOffsetPlacement/getPositions (Lnet/minecraft/world/level/levelgen/placement/PlacementContext;Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos;)Ljava/util/stream/Stream; +MD: net/minecraft/world/level/levelgen/placement/RarityFilter/ ()V net/minecraft/world/level/levelgen/placement/RarityFilter/ ()V +MD: net/minecraft/world/level/levelgen/placement/RarityFilter/ (I)V net/minecraft/world/level/levelgen/placement/RarityFilter/ (I)V +MD: net/minecraft/world/level/levelgen/placement/RarityFilter/m_183327_ ()Lnet/minecraft/world/level/levelgen/placement/PlacementModifierType; net/minecraft/world/level/levelgen/placement/RarityFilter/type ()Lnet/minecraft/world/level/levelgen/placement/PlacementModifierType; +MD: net/minecraft/world/level/levelgen/placement/RarityFilter/m_191900_ (I)Lnet/minecraft/world/level/levelgen/placement/RarityFilter; net/minecraft/world/level/levelgen/placement/RarityFilter/onAverageOnceEvery (I)Lnet/minecraft/world/level/levelgen/placement/RarityFilter; +MD: net/minecraft/world/level/levelgen/placement/RarityFilter/m_191906_ (Lnet/minecraft/world/level/levelgen/placement/RarityFilter;)Ljava/lang/Integer; net/minecraft/world/level/levelgen/placement/RarityFilter/lambda$static$0 (Lnet/minecraft/world/level/levelgen/placement/RarityFilter;)Ljava/lang/Integer; +MD: net/minecraft/world/level/levelgen/placement/RarityFilter/m_213917_ (Lnet/minecraft/world/level/levelgen/placement/PlacementContext;Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/level/levelgen/placement/RarityFilter/shouldPlace (Lnet/minecraft/world/level/levelgen/placement/PlacementContext;Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/level/levelgen/placement/RepeatingPlacement/ ()V net/minecraft/world/level/levelgen/placement/RepeatingPlacement/ ()V +MD: net/minecraft/world/level/levelgen/placement/RepeatingPlacement/m_191910_ (Lnet/minecraft/core/BlockPos;I)Lnet/minecraft/core/BlockPos; net/minecraft/world/level/levelgen/placement/RepeatingPlacement/lambda$getPositions$0 (Lnet/minecraft/core/BlockPos;I)Lnet/minecraft/core/BlockPos; +MD: net/minecraft/world/level/levelgen/placement/RepeatingPlacement/m_213676_ (Lnet/minecraft/world/level/levelgen/placement/PlacementContext;Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos;)Ljava/util/stream/Stream; net/minecraft/world/level/levelgen/placement/RepeatingPlacement/getPositions (Lnet/minecraft/world/level/levelgen/placement/PlacementContext;Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos;)Ljava/util/stream/Stream; +MD: net/minecraft/world/level/levelgen/placement/RepeatingPlacement/m_213944_ (Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos;)I net/minecraft/world/level/levelgen/placement/RepeatingPlacement/count (Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos;)I +MD: net/minecraft/world/level/levelgen/placement/SurfaceRelativeThresholdFilter/ ()V net/minecraft/world/level/levelgen/placement/SurfaceRelativeThresholdFilter/ ()V +MD: net/minecraft/world/level/levelgen/placement/SurfaceRelativeThresholdFilter/ (Lnet/minecraft/world/level/levelgen/Heightmap$Types;II)V net/minecraft/world/level/levelgen/placement/SurfaceRelativeThresholdFilter/ (Lnet/minecraft/world/level/levelgen/Heightmap$Types;II)V +MD: net/minecraft/world/level/levelgen/placement/SurfaceRelativeThresholdFilter/m_183327_ ()Lnet/minecraft/world/level/levelgen/placement/PlacementModifierType; net/minecraft/world/level/levelgen/placement/SurfaceRelativeThresholdFilter/type ()Lnet/minecraft/world/level/levelgen/placement/PlacementModifierType; +MD: net/minecraft/world/level/levelgen/placement/SurfaceRelativeThresholdFilter/m_191928_ (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/world/level/levelgen/placement/SurfaceRelativeThresholdFilter/lambda$static$3 (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/world/level/levelgen/placement/SurfaceRelativeThresholdFilter/m_191930_ (Lnet/minecraft/world/level/levelgen/Heightmap$Types;II)Lnet/minecraft/world/level/levelgen/placement/SurfaceRelativeThresholdFilter; net/minecraft/world/level/levelgen/placement/SurfaceRelativeThresholdFilter/of (Lnet/minecraft/world/level/levelgen/Heightmap$Types;II)Lnet/minecraft/world/level/levelgen/placement/SurfaceRelativeThresholdFilter; +MD: net/minecraft/world/level/levelgen/placement/SurfaceRelativeThresholdFilter/m_191938_ (Lnet/minecraft/world/level/levelgen/placement/SurfaceRelativeThresholdFilter;)Ljava/lang/Integer; net/minecraft/world/level/levelgen/placement/SurfaceRelativeThresholdFilter/lambda$static$2 (Lnet/minecraft/world/level/levelgen/placement/SurfaceRelativeThresholdFilter;)Ljava/lang/Integer; +MD: net/minecraft/world/level/levelgen/placement/SurfaceRelativeThresholdFilter/m_191941_ (Lnet/minecraft/world/level/levelgen/placement/SurfaceRelativeThresholdFilter;)Ljava/lang/Integer; net/minecraft/world/level/levelgen/placement/SurfaceRelativeThresholdFilter/lambda$static$1 (Lnet/minecraft/world/level/levelgen/placement/SurfaceRelativeThresholdFilter;)Ljava/lang/Integer; +MD: net/minecraft/world/level/levelgen/placement/SurfaceRelativeThresholdFilter/m_191943_ (Lnet/minecraft/world/level/levelgen/placement/SurfaceRelativeThresholdFilter;)Lnet/minecraft/world/level/levelgen/Heightmap$Types; net/minecraft/world/level/levelgen/placement/SurfaceRelativeThresholdFilter/lambda$static$0 (Lnet/minecraft/world/level/levelgen/placement/SurfaceRelativeThresholdFilter;)Lnet/minecraft/world/level/levelgen/Heightmap$Types; +MD: net/minecraft/world/level/levelgen/placement/SurfaceRelativeThresholdFilter/m_213917_ (Lnet/minecraft/world/level/levelgen/placement/PlacementContext;Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/level/levelgen/placement/SurfaceRelativeThresholdFilter/shouldPlace (Lnet/minecraft/world/level/levelgen/placement/PlacementContext;Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/level/levelgen/placement/SurfaceWaterDepthFilter/ ()V net/minecraft/world/level/levelgen/placement/SurfaceWaterDepthFilter/ ()V +MD: net/minecraft/world/level/levelgen/placement/SurfaceWaterDepthFilter/ (I)V net/minecraft/world/level/levelgen/placement/SurfaceWaterDepthFilter/ (I)V +MD: net/minecraft/world/level/levelgen/placement/SurfaceWaterDepthFilter/m_183327_ ()Lnet/minecraft/world/level/levelgen/placement/PlacementModifierType; net/minecraft/world/level/levelgen/placement/SurfaceWaterDepthFilter/type ()Lnet/minecraft/world/level/levelgen/placement/PlacementModifierType; +MD: net/minecraft/world/level/levelgen/placement/SurfaceWaterDepthFilter/m_191950_ (I)Lnet/minecraft/world/level/levelgen/placement/SurfaceWaterDepthFilter; net/minecraft/world/level/levelgen/placement/SurfaceWaterDepthFilter/forMaxDepth (I)Lnet/minecraft/world/level/levelgen/placement/SurfaceWaterDepthFilter; +MD: net/minecraft/world/level/levelgen/placement/SurfaceWaterDepthFilter/m_191952_ (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/world/level/levelgen/placement/SurfaceWaterDepthFilter/lambda$static$1 (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/world/level/levelgen/placement/SurfaceWaterDepthFilter/m_191958_ (Lnet/minecraft/world/level/levelgen/placement/SurfaceWaterDepthFilter;)Ljava/lang/Integer; net/minecraft/world/level/levelgen/placement/SurfaceWaterDepthFilter/lambda$static$0 (Lnet/minecraft/world/level/levelgen/placement/SurfaceWaterDepthFilter;)Ljava/lang/Integer; +MD: net/minecraft/world/level/levelgen/placement/SurfaceWaterDepthFilter/m_213917_ (Lnet/minecraft/world/level/levelgen/placement/PlacementContext;Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/level/levelgen/placement/SurfaceWaterDepthFilter/shouldPlace (Lnet/minecraft/world/level/levelgen/placement/PlacementContext;Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/level/levelgen/presets/WorldPreset/ ()V net/minecraft/world/level/levelgen/presets/WorldPreset/ ()V +MD: net/minecraft/world/level/levelgen/presets/WorldPreset/ (Ljava/util/Map;)V net/minecraft/world/level/levelgen/presets/WorldPreset/ (Ljava/util/Map;)V +MD: net/minecraft/world/level/levelgen/presets/WorldPreset/m_226420_ ()Ljava/util/Optional; net/minecraft/world/level/levelgen/presets/WorldPreset/overworld ()Ljava/util/Optional; +MD: net/minecraft/world/level/levelgen/presets/WorldPreset/m_226429_ (Lnet/minecraft/world/level/levelgen/presets/WorldPreset;)Ljava/util/Map; net/minecraft/world/level/levelgen/presets/WorldPreset/lambda$static$0 (Lnet/minecraft/world/level/levelgen/presets/WorldPreset;)Ljava/util/Map; +MD: net/minecraft/world/level/levelgen/presets/WorldPreset/m_226435_ ()Lnet/minecraft/core/Registry; net/minecraft/world/level/levelgen/presets/WorldPreset/createRegistry ()Lnet/minecraft/core/Registry; +MD: net/minecraft/world/level/levelgen/presets/WorldPreset/m_238378_ (Lnet/minecraft/world/level/levelgen/presets/WorldPreset;)Lcom/mojang/serialization/DataResult; net/minecraft/world/level/levelgen/presets/WorldPreset/requireOverworld (Lnet/minecraft/world/level/levelgen/presets/WorldPreset;)Lcom/mojang/serialization/DataResult; +MD: net/minecraft/world/level/levelgen/presets/WorldPreset/m_247748_ ()Lnet/minecraft/world/level/levelgen/WorldDimensions; net/minecraft/world/level/levelgen/presets/WorldPreset/createWorldDimensions ()Lnet/minecraft/world/level/levelgen/WorldDimensions; +MD: net/minecraft/world/level/levelgen/presets/WorldPreset/m_257359_ (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/world/level/levelgen/presets/WorldPreset/lambda$static$1 (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/world/level/levelgen/presets/WorldPreset/m_257360_ (Lnet/minecraft/core/WritableRegistry;Lnet/minecraft/resources/ResourceKey;)V net/minecraft/world/level/levelgen/presets/WorldPreset/lambda$createRegistry$2 (Lnet/minecraft/core/WritableRegistry;Lnet/minecraft/resources/ResourceKey;)V +MD: net/minecraft/world/level/levelgen/presets/WorldPreset/m_274293_ ()Ljava/lang/String; net/minecraft/world/level/levelgen/presets/WorldPreset/lambda$requireOverworld$3 ()Ljava/lang/String; +MD: net/minecraft/world/level/levelgen/presets/WorldPresets/ ()V net/minecraft/world/level/levelgen/presets/WorldPresets/ ()V +MD: net/minecraft/world/level/levelgen/presets/WorldPresets/ ()V net/minecraft/world/level/levelgen/presets/WorldPresets/ ()V +MD: net/minecraft/world/level/levelgen/presets/WorldPresets/m_226459_ (Ljava/lang/String;)Lnet/minecraft/resources/ResourceKey; net/minecraft/world/level/levelgen/presets/WorldPresets/register (Ljava/lang/String;)Lnet/minecraft/resources/ResourceKey; +MD: net/minecraft/world/level/levelgen/presets/WorldPresets/m_226463_ (Lnet/minecraft/core/RegistryAccess;)Lnet/minecraft/world/level/dimension/LevelStem; net/minecraft/world/level/levelgen/presets/WorldPresets/getNormalOverworld (Lnet/minecraft/core/RegistryAccess;)Lnet/minecraft/world/level/dimension/LevelStem; +MD: net/minecraft/world/level/levelgen/presets/WorldPresets/m_246029_ (Lnet/minecraft/world/level/dimension/LevelStem;)Ljava/util/Optional; net/minecraft/world/level/levelgen/presets/WorldPresets/lambda$fromSettings$0 (Lnet/minecraft/world/level/dimension/LevelStem;)Ljava/util/Optional; +MD: net/minecraft/world/level/levelgen/presets/WorldPresets/m_246552_ (Lnet/minecraft/core/RegistryAccess;)Lnet/minecraft/world/level/levelgen/WorldDimensions; net/minecraft/world/level/levelgen/presets/WorldPresets/createNormalWorldDimensions (Lnet/minecraft/core/RegistryAccess;)Lnet/minecraft/world/level/levelgen/WorldDimensions; +MD: net/minecraft/world/level/levelgen/presets/WorldPresets/m_246618_ (Lnet/minecraft/core/Registry;)Ljava/util/Optional; net/minecraft/world/level/levelgen/presets/WorldPresets/fromSettings (Lnet/minecraft/core/Registry;)Ljava/util/Optional; +MD: net/minecraft/world/level/levelgen/presets/WorldPresets/m_254897_ (Lnet/minecraft/data/worldgen/BootstapContext;)V net/minecraft/world/level/levelgen/presets/WorldPresets/bootstrap (Lnet/minecraft/data/worldgen/BootstapContext;)V +MD: net/minecraft/world/level/levelgen/presets/WorldPresets$Bootstrap/ (Lnet/minecraft/data/worldgen/BootstapContext;)V net/minecraft/world/level/levelgen/presets/WorldPresets$Bootstrap/ (Lnet/minecraft/data/worldgen/BootstapContext;)V +MD: net/minecraft/world/level/levelgen/presets/WorldPresets$Bootstrap/m_226484_ (Lnet/minecraft/world/level/biome/BiomeSource;Lnet/minecraft/core/Holder;)Lnet/minecraft/world/level/dimension/LevelStem; net/minecraft/world/level/levelgen/presets/WorldPresets$Bootstrap/makeNoiseBasedOverworld (Lnet/minecraft/world/level/biome/BiomeSource;Lnet/minecraft/core/Holder;)Lnet/minecraft/world/level/dimension/LevelStem; +MD: net/minecraft/world/level/levelgen/presets/WorldPresets$Bootstrap/m_226487_ (Lnet/minecraft/world/level/chunk/ChunkGenerator;)Lnet/minecraft/world/level/dimension/LevelStem; net/minecraft/world/level/levelgen/presets/WorldPresets$Bootstrap/makeOverworld (Lnet/minecraft/world/level/chunk/ChunkGenerator;)Lnet/minecraft/world/level/dimension/LevelStem; +MD: net/minecraft/world/level/levelgen/presets/WorldPresets$Bootstrap/m_226489_ (Lnet/minecraft/world/level/dimension/LevelStem;)Lnet/minecraft/world/level/levelgen/presets/WorldPreset; net/minecraft/world/level/levelgen/presets/WorldPresets$Bootstrap/createPresetWithCustomOverworld (Lnet/minecraft/world/level/dimension/LevelStem;)Lnet/minecraft/world/level/levelgen/presets/WorldPreset; +MD: net/minecraft/world/level/levelgen/presets/WorldPresets$Bootstrap/m_254854_ (Lnet/minecraft/resources/ResourceKey;Lnet/minecraft/world/level/dimension/LevelStem;)V net/minecraft/world/level/levelgen/presets/WorldPresets$Bootstrap/registerCustomOverworldPreset (Lnet/minecraft/resources/ResourceKey;Lnet/minecraft/world/level/dimension/LevelStem;)V +MD: net/minecraft/world/level/levelgen/presets/WorldPresets$Bootstrap/m_271735_ ()V net/minecraft/world/level/levelgen/presets/WorldPresets$Bootstrap/bootstrap ()V +MD: net/minecraft/world/level/levelgen/presets/WorldPresets$Bootstrap/m_271739_ (Lnet/minecraft/world/level/biome/BiomeSource;)V net/minecraft/world/level/levelgen/presets/WorldPresets$Bootstrap/registerOverworlds (Lnet/minecraft/world/level/biome/BiomeSource;)V +MD: net/minecraft/world/level/levelgen/structure/BoundingBox/ ()V net/minecraft/world/level/levelgen/structure/BoundingBox/ ()V +MD: net/minecraft/world/level/levelgen/structure/BoundingBox/ (IIIIII)V net/minecraft/world/level/levelgen/structure/BoundingBox/ (IIIIII)V +MD: net/minecraft/world/level/levelgen/structure/BoundingBox/ (Lnet/minecraft/core/BlockPos;)V net/minecraft/world/level/levelgen/structure/BoundingBox/ (Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/world/level/levelgen/structure/BoundingBox/equals (Ljava/lang/Object;)Z net/minecraft/world/level/levelgen/structure/BoundingBox/equals (Ljava/lang/Object;)Z +MD: net/minecraft/world/level/levelgen/structure/BoundingBox/hashCode ()I net/minecraft/world/level/levelgen/structure/BoundingBox/hashCode ()I +MD: net/minecraft/world/level/levelgen/structure/BoundingBox/m_162367_ (III)Lnet/minecraft/world/level/levelgen/structure/BoundingBox; net/minecraft/world/level/levelgen/structure/BoundingBox/move (III)Lnet/minecraft/world/level/levelgen/structure/BoundingBox; +MD: net/minecraft/world/level/levelgen/structure/BoundingBox/m_162371_ (Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/levelgen/structure/BoundingBox; net/minecraft/world/level/levelgen/structure/BoundingBox/encapsulate (Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/levelgen/structure/BoundingBox; +MD: net/minecraft/world/level/levelgen/structure/BoundingBox/m_162373_ (Lnet/minecraft/core/Vec3i;)Lnet/minecraft/world/level/levelgen/structure/BoundingBox; net/minecraft/world/level/levelgen/structure/BoundingBox/move (Lnet/minecraft/core/Vec3i;)Lnet/minecraft/world/level/levelgen/structure/BoundingBox; +MD: net/minecraft/world/level/levelgen/structure/BoundingBox/m_162375_ (Lnet/minecraft/core/Vec3i;Lnet/minecraft/core/Vec3i;)Lnet/minecraft/world/level/levelgen/structure/BoundingBox; net/minecraft/world/level/levelgen/structure/BoundingBox/fromCorners (Lnet/minecraft/core/Vec3i;Lnet/minecraft/core/Vec3i;)Lnet/minecraft/world/level/levelgen/structure/BoundingBox; +MD: net/minecraft/world/level/levelgen/structure/BoundingBox/m_162378_ (Ljava/lang/Iterable;)Ljava/util/Optional; net/minecraft/world/level/levelgen/structure/BoundingBox/encapsulatingPositions (Ljava/lang/Iterable;)Ljava/util/Optional; +MD: net/minecraft/world/level/levelgen/structure/BoundingBox/m_162380_ (Ljava/util/function/Consumer;)V net/minecraft/world/level/levelgen/structure/BoundingBox/forAllCorners (Ljava/util/function/Consumer;)V +MD: net/minecraft/world/level/levelgen/structure/BoundingBox/m_162382_ (Ljava/util/stream/IntStream;)Lcom/mojang/serialization/DataResult; net/minecraft/world/level/levelgen/structure/BoundingBox/lambda$static$1 (Ljava/util/stream/IntStream;)Lcom/mojang/serialization/DataResult; +MD: net/minecraft/world/level/levelgen/structure/BoundingBox/m_162384_ ([I)Lnet/minecraft/world/level/levelgen/structure/BoundingBox; net/minecraft/world/level/levelgen/structure/BoundingBox/lambda$static$0 ([I)Lnet/minecraft/world/level/levelgen/structure/BoundingBox; +MD: net/minecraft/world/level/levelgen/structure/BoundingBox/m_162386_ (Lnet/minecraft/world/level/levelgen/structure/BoundingBox;)Lnet/minecraft/world/level/levelgen/structure/BoundingBox; net/minecraft/world/level/levelgen/structure/BoundingBox/encapsulate (Lnet/minecraft/world/level/levelgen/structure/BoundingBox;)Lnet/minecraft/world/level/levelgen/structure/BoundingBox; +MD: net/minecraft/world/level/levelgen/structure/BoundingBox/m_162388_ (Ljava/lang/Iterable;)Ljava/util/Optional; net/minecraft/world/level/levelgen/structure/BoundingBox/encapsulatingBoxes (Ljava/lang/Iterable;)Ljava/util/Optional; +MD: net/minecraft/world/level/levelgen/structure/BoundingBox/m_162390_ (Lnet/minecraft/world/level/levelgen/structure/BoundingBox;)Ljava/util/stream/IntStream; net/minecraft/world/level/levelgen/structure/BoundingBox/lambda$static$2 (Lnet/minecraft/world/level/levelgen/structure/BoundingBox;)Ljava/util/stream/IntStream; +MD: net/minecraft/world/level/levelgen/structure/BoundingBox/m_162394_ ()Lnet/minecraft/core/BlockPos; net/minecraft/world/level/levelgen/structure/BoundingBox/getCenter ()Lnet/minecraft/core/BlockPos; +MD: net/minecraft/world/level/levelgen/structure/BoundingBox/m_162395_ ()I net/minecraft/world/level/levelgen/structure/BoundingBox/minX ()I +MD: net/minecraft/world/level/levelgen/structure/BoundingBox/m_162396_ ()I net/minecraft/world/level/levelgen/structure/BoundingBox/minY ()I +MD: net/minecraft/world/level/levelgen/structure/BoundingBox/m_162398_ ()I net/minecraft/world/level/levelgen/structure/BoundingBox/minZ ()I +MD: net/minecraft/world/level/levelgen/structure/BoundingBox/m_162399_ ()I net/minecraft/world/level/levelgen/structure/BoundingBox/maxX ()I +MD: net/minecraft/world/level/levelgen/structure/BoundingBox/m_162400_ ()I net/minecraft/world/level/levelgen/structure/BoundingBox/maxY ()I +MD: net/minecraft/world/level/levelgen/structure/BoundingBox/m_162401_ ()I net/minecraft/world/level/levelgen/structure/BoundingBox/maxZ ()I +MD: net/minecraft/world/level/levelgen/structure/BoundingBox/m_191961_ (I)Lnet/minecraft/world/level/levelgen/structure/BoundingBox; net/minecraft/world/level/levelgen/structure/BoundingBox/inflatedBy (I)Lnet/minecraft/world/level/levelgen/structure/BoundingBox; +MD: net/minecraft/world/level/levelgen/structure/BoundingBox/m_260866_ (III)Z net/minecraft/world/level/levelgen/structure/BoundingBox/isInside (III)Z +MD: net/minecraft/world/level/levelgen/structure/BoundingBox/m_71019_ (IIII)Z net/minecraft/world/level/levelgen/structure/BoundingBox/intersects (IIII)Z +MD: net/minecraft/world/level/levelgen/structure/BoundingBox/m_71031_ (IIIIIIIIILnet/minecraft/core/Direction;)Lnet/minecraft/world/level/levelgen/structure/BoundingBox; net/minecraft/world/level/levelgen/structure/BoundingBox/orientBox (IIIIIIIIILnet/minecraft/core/Direction;)Lnet/minecraft/world/level/levelgen/structure/BoundingBox; +MD: net/minecraft/world/level/levelgen/structure/BoundingBox/m_71044_ ()Lnet/minecraft/world/level/levelgen/structure/BoundingBox; net/minecraft/world/level/levelgen/structure/BoundingBox/infinite ()Lnet/minecraft/world/level/levelgen/structure/BoundingBox; +MD: net/minecraft/world/level/levelgen/structure/BoundingBox/m_71045_ (III)Lnet/minecraft/world/level/levelgen/structure/BoundingBox; net/minecraft/world/level/levelgen/structure/BoundingBox/moved (III)Lnet/minecraft/world/level/levelgen/structure/BoundingBox; +MD: net/minecraft/world/level/levelgen/structure/BoundingBox/m_71049_ (Lnet/minecraft/world/level/levelgen/structure/BoundingBox;)Z net/minecraft/world/level/levelgen/structure/BoundingBox/intersects (Lnet/minecraft/world/level/levelgen/structure/BoundingBox;)Z +MD: net/minecraft/world/level/levelgen/structure/BoundingBox/m_71051_ (Lnet/minecraft/core/Vec3i;)Z net/minecraft/world/level/levelgen/structure/BoundingBox/isInside (Lnet/minecraft/core/Vec3i;)Z +MD: net/minecraft/world/level/levelgen/structure/BoundingBox/m_71053_ ()Lnet/minecraft/core/Vec3i; net/minecraft/world/level/levelgen/structure/BoundingBox/getLength ()Lnet/minecraft/core/Vec3i; +MD: net/minecraft/world/level/levelgen/structure/BoundingBox/m_71056_ ()I net/minecraft/world/level/levelgen/structure/BoundingBox/getXSpan ()I +MD: net/minecraft/world/level/levelgen/structure/BoundingBox/m_71057_ ()I net/minecraft/world/level/levelgen/structure/BoundingBox/getYSpan ()I +MD: net/minecraft/world/level/levelgen/structure/BoundingBox/m_71058_ ()I net/minecraft/world/level/levelgen/structure/BoundingBox/getZSpan ()I +MD: net/minecraft/world/level/levelgen/structure/BoundingBox/toString ()Ljava/lang/String; net/minecraft/world/level/levelgen/structure/BoundingBox/toString ()Ljava/lang/String; +MD: net/minecraft/world/level/levelgen/structure/BoundingBox$1/ ()V net/minecraft/world/level/levelgen/structure/BoundingBox$1/ ()V +MD: net/minecraft/world/level/levelgen/structure/BuiltinStructureSets/ ()V net/minecraft/world/level/levelgen/structure/BuiltinStructureSets/ ()V +MD: net/minecraft/world/level/levelgen/structure/BuiltinStructureSets/m_209838_ (Ljava/lang/String;)Lnet/minecraft/resources/ResourceKey; net/minecraft/world/level/levelgen/structure/BuiltinStructureSets/register (Ljava/lang/String;)Lnet/minecraft/resources/ResourceKey; +MD: net/minecraft/world/level/levelgen/structure/BuiltinStructures/ ()V net/minecraft/world/level/levelgen/structure/BuiltinStructures/ ()V +MD: net/minecraft/world/level/levelgen/structure/BuiltinStructures/m_209872_ (Ljava/lang/String;)Lnet/minecraft/resources/ResourceKey; net/minecraft/world/level/levelgen/structure/BuiltinStructures/createKey (Ljava/lang/String;)Lnet/minecraft/resources/ResourceKey; +MD: net/minecraft/world/level/levelgen/structure/LegacyStructureDataHandler/ ()V net/minecraft/world/level/levelgen/structure/LegacyStructureDataHandler/ ()V +MD: net/minecraft/world/level/levelgen/structure/LegacyStructureDataHandler/ (Lnet/minecraft/world/level/storage/DimensionDataStorage;Ljava/util/List;Ljava/util/List;)V net/minecraft/world/level/levelgen/structure/LegacyStructureDataHandler/ (Lnet/minecraft/world/level/storage/DimensionDataStorage;Ljava/util/List;Ljava/util/List;)V +MD: net/minecraft/world/level/levelgen/structure/LegacyStructureDataHandler/m_71311_ (II)Z net/minecraft/world/level/levelgen/structure/LegacyStructureDataHandler/isUnhandledStructureStart (II)Z +MD: net/minecraft/world/level/levelgen/structure/LegacyStructureDataHandler/m_71314_ (IILjava/lang/String;)Z net/minecraft/world/level/levelgen/structure/LegacyStructureDataHandler/hasLegacyStart (IILjava/lang/String;)Z +MD: net/minecraft/world/level/levelgen/structure/LegacyStructureDataHandler/m_71318_ (J)V net/minecraft/world/level/levelgen/structure/LegacyStructureDataHandler/removeIndex (J)V +MD: net/minecraft/world/level/levelgen/structure/LegacyStructureDataHandler/m_71320_ (Lnet/minecraft/world/level/storage/DimensionDataStorage;)V net/minecraft/world/level/levelgen/structure/LegacyStructureDataHandler/populateCaches (Lnet/minecraft/world/level/storage/DimensionDataStorage;)V +MD: net/minecraft/world/level/levelgen/structure/LegacyStructureDataHandler/m_71324_ (Ljava/util/HashMap;)V net/minecraft/world/level/levelgen/structure/LegacyStructureDataHandler/lambda$static$1 (Ljava/util/HashMap;)V +MD: net/minecraft/world/level/levelgen/structure/LegacyStructureDataHandler/m_71326_ (Lnet/minecraft/nbt/CompoundTag;)Lnet/minecraft/nbt/CompoundTag; net/minecraft/world/level/levelgen/structure/LegacyStructureDataHandler/updateFromLegacy (Lnet/minecraft/nbt/CompoundTag;)Lnet/minecraft/nbt/CompoundTag; +MD: net/minecraft/world/level/levelgen/structure/LegacyStructureDataHandler/m_71328_ (Lnet/minecraft/nbt/CompoundTag;Lnet/minecraft/world/level/ChunkPos;)Lnet/minecraft/nbt/CompoundTag; net/minecraft/world/level/levelgen/structure/LegacyStructureDataHandler/updateStructureStart (Lnet/minecraft/nbt/CompoundTag;Lnet/minecraft/world/level/ChunkPos;)Lnet/minecraft/nbt/CompoundTag; +MD: net/minecraft/world/level/levelgen/structure/LegacyStructureDataHandler/m_71331_ (Lnet/minecraft/resources/ResourceKey;Lnet/minecraft/world/level/storage/DimensionDataStorage;)Lnet/minecraft/world/level/levelgen/structure/LegacyStructureDataHandler; net/minecraft/world/level/levelgen/structure/LegacyStructureDataHandler/getLegacyStructureHandler (Lnet/minecraft/resources/ResourceKey;Lnet/minecraft/world/level/storage/DimensionDataStorage;)Lnet/minecraft/world/level/levelgen/structure/LegacyStructureDataHandler; +MD: net/minecraft/world/level/levelgen/structure/LegacyStructureDataHandler/m_71334_ (Ljava/lang/String;)Lit/unimi/dsi/fastutil/longs/Long2ObjectMap; net/minecraft/world/level/levelgen/structure/LegacyStructureDataHandler/lambda$populateCaches$2 (Ljava/lang/String;)Lit/unimi/dsi/fastutil/longs/Long2ObjectMap; +MD: net/minecraft/world/level/levelgen/structure/LegacyStructureDataHandler/m_71336_ (Ljava/util/HashMap;)V net/minecraft/world/level/levelgen/structure/LegacyStructureDataHandler/lambda$static$0 (Ljava/util/HashMap;)V +MD: net/minecraft/world/level/levelgen/structure/PoolElementStructurePiece/ ()V net/minecraft/world/level/levelgen/structure/PoolElementStructurePiece/ ()V +MD: net/minecraft/world/level/levelgen/structure/PoolElementStructurePiece/ (Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager;Lnet/minecraft/world/level/levelgen/structure/pools/StructurePoolElement;Lnet/minecraft/core/BlockPos;ILnet/minecraft/world/level/block/Rotation;Lnet/minecraft/world/level/levelgen/structure/BoundingBox;)V net/minecraft/world/level/levelgen/structure/PoolElementStructurePiece/ (Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager;Lnet/minecraft/world/level/levelgen/structure/pools/StructurePoolElement;Lnet/minecraft/core/BlockPos;ILnet/minecraft/world/level/block/Rotation;Lnet/minecraft/world/level/levelgen/structure/BoundingBox;)V +MD: net/minecraft/world/level/levelgen/structure/PoolElementStructurePiece/ (Lnet/minecraft/world/level/levelgen/structure/pieces/StructurePieceSerializationContext;Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/level/levelgen/structure/PoolElementStructurePiece/ (Lnet/minecraft/world/level/levelgen/structure/pieces/StructurePieceSerializationContext;Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/level/levelgen/structure/PoolElementStructurePiece/m_163123_ (Lnet/minecraft/nbt/CompoundTag;Lnet/minecraft/nbt/Tag;)V net/minecraft/world/level/levelgen/structure/PoolElementStructurePiece/lambda$addAdditionalSaveData$2 (Lnet/minecraft/nbt/CompoundTag;Lnet/minecraft/nbt/Tag;)V +MD: net/minecraft/world/level/levelgen/structure/PoolElementStructurePiece/m_163129_ ()Ljava/lang/IllegalStateException; net/minecraft/world/level/levelgen/structure/PoolElementStructurePiece/lambda$new$0 ()Ljava/lang/IllegalStateException; +MD: net/minecraft/world/level/levelgen/structure/PoolElementStructurePiece/m_183620_ (Lnet/minecraft/world/level/levelgen/structure/pieces/StructurePieceSerializationContext;Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/level/levelgen/structure/PoolElementStructurePiece/addAdditionalSaveData (Lnet/minecraft/world/level/levelgen/structure/pieces/StructurePieceSerializationContext;Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/level/levelgen/structure/PoolElementStructurePiece/m_204941_ (Lcom/mojang/serialization/DynamicOps;Lnet/minecraft/nbt/Tag;)V net/minecraft/world/level/levelgen/structure/PoolElementStructurePiece/lambda$new$1 (Lcom/mojang/serialization/DynamicOps;Lnet/minecraft/nbt/Tag;)V +MD: net/minecraft/world/level/levelgen/structure/PoolElementStructurePiece/m_209916_ (Lnet/minecraft/world/level/levelgen/structure/pools/JigsawJunction;)V net/minecraft/world/level/levelgen/structure/PoolElementStructurePiece/addJunction (Lnet/minecraft/world/level/levelgen/structure/pools/JigsawJunction;)V +MD: net/minecraft/world/level/levelgen/structure/PoolElementStructurePiece/m_209918_ ()Lnet/minecraft/world/level/levelgen/structure/pools/StructurePoolElement; net/minecraft/world/level/levelgen/structure/PoolElementStructurePiece/getElement ()Lnet/minecraft/world/level/levelgen/structure/pools/StructurePoolElement; +MD: net/minecraft/world/level/levelgen/structure/PoolElementStructurePiece/m_213694_ (Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/world/level/StructureManager;Lnet/minecraft/world/level/chunk/ChunkGenerator;Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/levelgen/structure/BoundingBox;Lnet/minecraft/world/level/ChunkPos;Lnet/minecraft/core/BlockPos;)V net/minecraft/world/level/levelgen/structure/PoolElementStructurePiece/postProcess (Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/world/level/StructureManager;Lnet/minecraft/world/level/chunk/ChunkGenerator;Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/levelgen/structure/BoundingBox;Lnet/minecraft/world/level/ChunkPos;Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/world/level/levelgen/structure/PoolElementStructurePiece/m_226509_ (Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/world/level/StructureManager;Lnet/minecraft/world/level/chunk/ChunkGenerator;Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/levelgen/structure/BoundingBox;Lnet/minecraft/core/BlockPos;Z)V net/minecraft/world/level/levelgen/structure/PoolElementStructurePiece/place (Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/world/level/StructureManager;Lnet/minecraft/world/level/chunk/ChunkGenerator;Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/levelgen/structure/BoundingBox;Lnet/minecraft/core/BlockPos;Z)V +MD: net/minecraft/world/level/levelgen/structure/PoolElementStructurePiece/m_6324_ (III)V net/minecraft/world/level/levelgen/structure/PoolElementStructurePiece/move (III)V +MD: net/minecraft/world/level/levelgen/structure/PoolElementStructurePiece/m_6830_ ()Lnet/minecraft/world/level/block/Rotation; net/minecraft/world/level/levelgen/structure/PoolElementStructurePiece/getRotation ()Lnet/minecraft/world/level/block/Rotation; +MD: net/minecraft/world/level/levelgen/structure/PoolElementStructurePiece/m_72646_ ()Lnet/minecraft/core/BlockPos; net/minecraft/world/level/levelgen/structure/PoolElementStructurePiece/getPosition ()Lnet/minecraft/core/BlockPos; +MD: net/minecraft/world/level/levelgen/structure/PoolElementStructurePiece/m_72647_ ()I net/minecraft/world/level/levelgen/structure/PoolElementStructurePiece/getGroundLevelDelta ()I +MD: net/minecraft/world/level/levelgen/structure/PoolElementStructurePiece/m_72648_ ()Ljava/util/List; net/minecraft/world/level/levelgen/structure/PoolElementStructurePiece/getJunctions ()Ljava/util/List; +MD: net/minecraft/world/level/levelgen/structure/PoolElementStructurePiece/toString ()Ljava/lang/String; net/minecraft/world/level/levelgen/structure/PoolElementStructurePiece/toString ()Ljava/lang/String; +MD: net/minecraft/world/level/levelgen/structure/PostPlacementProcessor/ ()V net/minecraft/world/level/levelgen/structure/PostPlacementProcessor/ ()V +MD: net/minecraft/world/level/levelgen/structure/PostPlacementProcessor/m_226517_ (Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/world/level/StructureManager;Lnet/minecraft/world/level/chunk/ChunkGenerator;Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/levelgen/structure/BoundingBox;Lnet/minecraft/world/level/ChunkPos;Lnet/minecraft/world/level/levelgen/structure/pieces/PiecesContainer;)V net/minecraft/world/level/levelgen/structure/PostPlacementProcessor/lambda$static$0 (Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/world/level/StructureManager;Lnet/minecraft/world/level/chunk/ChunkGenerator;Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/levelgen/structure/BoundingBox;Lnet/minecraft/world/level/ChunkPos;Lnet/minecraft/world/level/levelgen/structure/pieces/PiecesContainer;)V +MD: net/minecraft/world/level/levelgen/structure/PostPlacementProcessor/m_226525_ (Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/world/level/StructureManager;Lnet/minecraft/world/level/chunk/ChunkGenerator;Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/levelgen/structure/BoundingBox;Lnet/minecraft/world/level/ChunkPos;Lnet/minecraft/world/level/levelgen/structure/pieces/PiecesContainer;)V net/minecraft/world/level/levelgen/structure/PostPlacementProcessor/afterPlace (Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/world/level/StructureManager;Lnet/minecraft/world/level/chunk/ChunkGenerator;Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/levelgen/structure/BoundingBox;Lnet/minecraft/world/level/ChunkPos;Lnet/minecraft/world/level/levelgen/structure/pieces/PiecesContainer;)V +MD: net/minecraft/world/level/levelgen/structure/ScatteredFeaturePiece/ (Lnet/minecraft/world/level/levelgen/structure/pieces/StructurePieceType;IIIIIILnet/minecraft/core/Direction;)V net/minecraft/world/level/levelgen/structure/ScatteredFeaturePiece/ (Lnet/minecraft/world/level/levelgen/structure/pieces/StructurePieceType;IIIIIILnet/minecraft/core/Direction;)V +MD: net/minecraft/world/level/levelgen/structure/ScatteredFeaturePiece/ (Lnet/minecraft/world/level/levelgen/structure/pieces/StructurePieceType;Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/level/levelgen/structure/ScatteredFeaturePiece/ (Lnet/minecraft/world/level/levelgen/structure/pieces/StructurePieceType;Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/level/levelgen/structure/ScatteredFeaturePiece/m_183620_ (Lnet/minecraft/world/level/levelgen/structure/pieces/StructurePieceSerializationContext;Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/level/levelgen/structure/ScatteredFeaturePiece/addAdditionalSaveData (Lnet/minecraft/world/level/levelgen/structure/pieces/StructurePieceSerializationContext;Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/level/levelgen/structure/ScatteredFeaturePiece/m_192467_ (Lnet/minecraft/world/level/LevelAccessor;I)Z net/minecraft/world/level/levelgen/structure/ScatteredFeaturePiece/updateHeightPositionToLowestGroundHeight (Lnet/minecraft/world/level/LevelAccessor;I)Z +MD: net/minecraft/world/level/levelgen/structure/ScatteredFeaturePiece/m_72803_ (Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/world/level/levelgen/structure/BoundingBox;I)Z net/minecraft/world/level/levelgen/structure/ScatteredFeaturePiece/updateAverageGroundHeight (Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/world/level/levelgen/structure/BoundingBox;I)Z +MD: net/minecraft/world/level/levelgen/structure/SinglePieceStructure/ (Lnet/minecraft/world/level/levelgen/structure/SinglePieceStructure$PieceConstructor;IILnet/minecraft/world/level/levelgen/structure/Structure$StructureSettings;)V net/minecraft/world/level/levelgen/structure/SinglePieceStructure/ (Lnet/minecraft/world/level/levelgen/structure/SinglePieceStructure$PieceConstructor;IILnet/minecraft/world/level/levelgen/structure/Structure$StructureSettings;)V +MD: net/minecraft/world/level/levelgen/structure/SinglePieceStructure/m_214086_ (Lnet/minecraft/world/level/levelgen/structure/Structure$GenerationContext;)Ljava/util/Optional; net/minecraft/world/level/levelgen/structure/SinglePieceStructure/findGenerationPoint (Lnet/minecraft/world/level/levelgen/structure/Structure$GenerationContext;)Ljava/util/Optional; +MD: net/minecraft/world/level/levelgen/structure/SinglePieceStructure/m_226543_ (Lnet/minecraft/world/level/levelgen/structure/Structure$GenerationContext;Lnet/minecraft/world/level/levelgen/structure/pieces/StructurePiecesBuilder;)V net/minecraft/world/level/levelgen/structure/SinglePieceStructure/lambda$findGenerationPoint$0 (Lnet/minecraft/world/level/levelgen/structure/Structure$GenerationContext;Lnet/minecraft/world/level/levelgen/structure/pieces/StructurePiecesBuilder;)V +MD: net/minecraft/world/level/levelgen/structure/SinglePieceStructure/m_226546_ (Lnet/minecraft/world/level/levelgen/structure/pieces/StructurePiecesBuilder;Lnet/minecraft/world/level/levelgen/structure/Structure$GenerationContext;)V net/minecraft/world/level/levelgen/structure/SinglePieceStructure/generatePieces (Lnet/minecraft/world/level/levelgen/structure/pieces/StructurePiecesBuilder;Lnet/minecraft/world/level/levelgen/structure/Structure$GenerationContext;)V +MD: net/minecraft/world/level/levelgen/structure/SinglePieceStructure$PieceConstructor/m_226549_ (Lnet/minecraft/world/level/levelgen/WorldgenRandom;II)Lnet/minecraft/world/level/levelgen/structure/StructurePiece; net/minecraft/world/level/levelgen/structure/SinglePieceStructure$PieceConstructor/construct (Lnet/minecraft/world/level/levelgen/WorldgenRandom;II)Lnet/minecraft/world/level/levelgen/structure/StructurePiece; +MD: net/minecraft/world/level/levelgen/structure/Structure/ ()V net/minecraft/world/level/levelgen/structure/Structure/ ()V +MD: net/minecraft/world/level/levelgen/structure/Structure/ (Lnet/minecraft/world/level/levelgen/structure/Structure$StructureSettings;)V net/minecraft/world/level/levelgen/structure/Structure/ (Lnet/minecraft/world/level/levelgen/structure/Structure$StructureSettings;)V +MD: net/minecraft/world/level/levelgen/structure/Structure/m_213658_ ()Lnet/minecraft/world/level/levelgen/structure/StructureType; net/minecraft/world/level/levelgen/structure/Structure/type ()Lnet/minecraft/world/level/levelgen/structure/StructureType; +MD: net/minecraft/world/level/levelgen/structure/Structure/m_214086_ (Lnet/minecraft/world/level/levelgen/structure/Structure$GenerationContext;)Ljava/util/Optional; net/minecraft/world/level/levelgen/structure/Structure/findGenerationPoint (Lnet/minecraft/world/level/levelgen/structure/Structure$GenerationContext;)Ljava/util/Optional; +MD: net/minecraft/world/level/levelgen/structure/Structure/m_214110_ (Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/world/level/StructureManager;Lnet/minecraft/world/level/chunk/ChunkGenerator;Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/levelgen/structure/BoundingBox;Lnet/minecraft/world/level/ChunkPos;Lnet/minecraft/world/level/levelgen/structure/pieces/PiecesContainer;)V net/minecraft/world/level/levelgen/structure/Structure/afterPlace (Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/world/level/StructureManager;Lnet/minecraft/world/level/chunk/ChunkGenerator;Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/levelgen/structure/BoundingBox;Lnet/minecraft/world/level/ChunkPos;Lnet/minecraft/world/level/levelgen/structure/pieces/PiecesContainer;)V +MD: net/minecraft/world/level/levelgen/structure/Structure/m_226559_ ()Lnet/minecraft/core/HolderSet; net/minecraft/world/level/levelgen/structure/Structure/biomes ()Lnet/minecraft/core/HolderSet; +MD: net/minecraft/world/level/levelgen/structure/Structure/m_226567_ (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/serialization/codecs/RecordCodecBuilder; net/minecraft/world/level/levelgen/structure/Structure/settingsCodec (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/serialization/codecs/RecordCodecBuilder; +MD: net/minecraft/world/level/levelgen/structure/Structure/m_226569_ (Lnet/minecraft/world/level/levelgen/structure/BoundingBox;)Lnet/minecraft/world/level/levelgen/structure/BoundingBox; net/minecraft/world/level/levelgen/structure/Structure/adjustBoundingBox (Lnet/minecraft/world/level/levelgen/structure/BoundingBox;)Lnet/minecraft/world/level/levelgen/structure/BoundingBox; +MD: net/minecraft/world/level/levelgen/structure/Structure/m_226572_ (Lnet/minecraft/world/level/levelgen/structure/Structure$GenerationContext;II)I net/minecraft/world/level/levelgen/structure/Structure/getLowestY (Lnet/minecraft/world/level/levelgen/structure/Structure$GenerationContext;II)I +MD: net/minecraft/world/level/levelgen/structure/Structure/m_226576_ (Lnet/minecraft/world/level/levelgen/structure/Structure$GenerationContext;IIII)I net/minecraft/world/level/levelgen/structure/Structure/getLowestY (Lnet/minecraft/world/level/levelgen/structure/Structure$GenerationContext;IIII)I +MD: net/minecraft/world/level/levelgen/structure/Structure/m_226582_ (Lnet/minecraft/world/level/levelgen/structure/Structure$GenerationContext;Lnet/minecraft/world/level/block/Rotation;)Lnet/minecraft/core/BlockPos; net/minecraft/world/level/levelgen/structure/Structure/getLowestYIn5by5BoxOffset7Blocks (Lnet/minecraft/world/level/levelgen/structure/Structure$GenerationContext;Lnet/minecraft/world/level/block/Rotation;)Lnet/minecraft/core/BlockPos; +MD: net/minecraft/world/level/levelgen/structure/Structure/m_226585_ (Lnet/minecraft/world/level/levelgen/structure/Structure$GenerationContext;Lnet/minecraft/world/level/levelgen/Heightmap$Types;Ljava/util/function/Consumer;)Ljava/util/Optional; net/minecraft/world/level/levelgen/structure/Structure/onTopOfChunkCenter (Lnet/minecraft/world/level/levelgen/structure/Structure$GenerationContext;Lnet/minecraft/world/level/levelgen/Heightmap$Types;Ljava/util/function/Consumer;)Ljava/util/Optional; +MD: net/minecraft/world/level/levelgen/structure/Structure/m_226594_ (Lnet/minecraft/world/level/levelgen/structure/Structure;)Lnet/minecraft/world/level/levelgen/structure/Structure$StructureSettings; net/minecraft/world/level/levelgen/structure/Structure/lambda$settingsCodec$0 (Lnet/minecraft/world/level/levelgen/structure/Structure;)Lnet/minecraft/world/level/levelgen/structure/Structure$StructureSettings; +MD: net/minecraft/world/level/levelgen/structure/Structure/m_226596_ (Lnet/minecraft/core/RegistryAccess;Lnet/minecraft/world/level/chunk/ChunkGenerator;Lnet/minecraft/world/level/biome/BiomeSource;Lnet/minecraft/world/level/levelgen/RandomState;Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager;JLnet/minecraft/world/level/ChunkPos;ILnet/minecraft/world/level/LevelHeightAccessor;Ljava/util/function/Predicate;)Lnet/minecraft/world/level/levelgen/structure/StructureStart; net/minecraft/world/level/levelgen/structure/Structure/generate (Lnet/minecraft/core/RegistryAccess;Lnet/minecraft/world/level/chunk/ChunkGenerator;Lnet/minecraft/world/level/biome/BiomeSource;Lnet/minecraft/world/level/levelgen/RandomState;Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager;JLnet/minecraft/world/level/ChunkPos;ILnet/minecraft/world/level/LevelHeightAccessor;Ljava/util/function/Predicate;)Lnet/minecraft/world/level/levelgen/structure/StructureStart; +MD: net/minecraft/world/level/levelgen/structure/Structure/m_226607_ (Ljava/util/function/Function;)Lcom/mojang/serialization/Codec; net/minecraft/world/level/levelgen/structure/Structure/simpleCodec (Ljava/util/function/Function;)Lcom/mojang/serialization/Codec; +MD: net/minecraft/world/level/levelgen/structure/Structure/m_226609_ (Ljava/util/function/Function;Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/world/level/levelgen/structure/Structure/lambda$simpleCodec$1 (Ljava/util/function/Function;Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/world/level/levelgen/structure/Structure/m_226612_ ()Ljava/util/Map; net/minecraft/world/level/levelgen/structure/Structure/spawnOverrides ()Ljava/util/Map; +MD: net/minecraft/world/level/levelgen/structure/Structure/m_226613_ (Lnet/minecraft/world/level/levelgen/structure/Structure$GenerationContext;IIII)[I net/minecraft/world/level/levelgen/structure/Structure/getCornerHeights (Lnet/minecraft/world/level/levelgen/structure/Structure$GenerationContext;IIII)[I +MD: net/minecraft/world/level/levelgen/structure/Structure/m_226619_ ()Lnet/minecraft/world/level/levelgen/GenerationStep$Decoration; net/minecraft/world/level/levelgen/structure/Structure/step ()Lnet/minecraft/world/level/levelgen/GenerationStep$Decoration; +MD: net/minecraft/world/level/levelgen/structure/Structure/m_226620_ ()Lnet/minecraft/world/level/levelgen/structure/TerrainAdjustment; net/minecraft/world/level/levelgen/structure/Structure/terrainAdaptation ()Lnet/minecraft/world/level/levelgen/structure/TerrainAdjustment; +MD: net/minecraft/world/level/levelgen/structure/Structure/m_262787_ (Lnet/minecraft/world/level/levelgen/structure/Structure$GenerationContext;Lnet/minecraft/world/level/levelgen/structure/Structure$GenerationStub;)Z net/minecraft/world/level/levelgen/structure/Structure/lambda$findValidGenerationPoint$2 (Lnet/minecraft/world/level/levelgen/structure/Structure$GenerationContext;Lnet/minecraft/world/level/levelgen/structure/Structure$GenerationStub;)Z +MD: net/minecraft/world/level/levelgen/structure/Structure/m_262828_ (Lnet/minecraft/world/level/levelgen/structure/Structure$GenerationStub;Lnet/minecraft/world/level/levelgen/structure/Structure$GenerationContext;)Z net/minecraft/world/level/levelgen/structure/Structure/isValidBiome (Lnet/minecraft/world/level/levelgen/structure/Structure$GenerationStub;Lnet/minecraft/world/level/levelgen/structure/Structure$GenerationContext;)Z +MD: net/minecraft/world/level/levelgen/structure/Structure/m_262864_ (Lnet/minecraft/world/level/levelgen/structure/Structure$GenerationContext;)Ljava/util/Optional; net/minecraft/world/level/levelgen/structure/Structure/findValidGenerationPoint (Lnet/minecraft/world/level/levelgen/structure/Structure$GenerationContext;)Ljava/util/Optional; +MD: net/minecraft/world/level/levelgen/structure/Structure$GenerationContext/ (Lnet/minecraft/core/RegistryAccess;Lnet/minecraft/world/level/chunk/ChunkGenerator;Lnet/minecraft/world/level/biome/BiomeSource;Lnet/minecraft/world/level/levelgen/RandomState;Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager;JLnet/minecraft/world/level/ChunkPos;Lnet/minecraft/world/level/LevelHeightAccessor;Ljava/util/function/Predicate;)V net/minecraft/world/level/levelgen/structure/Structure$GenerationContext/ (Lnet/minecraft/core/RegistryAccess;Lnet/minecraft/world/level/chunk/ChunkGenerator;Lnet/minecraft/world/level/biome/BiomeSource;Lnet/minecraft/world/level/levelgen/RandomState;Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager;JLnet/minecraft/world/level/ChunkPos;Lnet/minecraft/world/level/LevelHeightAccessor;Ljava/util/function/Predicate;)V +MD: net/minecraft/world/level/levelgen/structure/Structure$GenerationContext/ (Lnet/minecraft/core/RegistryAccess;Lnet/minecraft/world/level/chunk/ChunkGenerator;Lnet/minecraft/world/level/biome/BiomeSource;Lnet/minecraft/world/level/levelgen/RandomState;Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager;Lnet/minecraft/world/level/levelgen/WorldgenRandom;JLnet/minecraft/world/level/ChunkPos;Lnet/minecraft/world/level/LevelHeightAccessor;Ljava/util/function/Predicate;)V net/minecraft/world/level/levelgen/structure/Structure$GenerationContext/ (Lnet/minecraft/core/RegistryAccess;Lnet/minecraft/world/level/chunk/ChunkGenerator;Lnet/minecraft/world/level/biome/BiomeSource;Lnet/minecraft/world/level/levelgen/RandomState;Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager;Lnet/minecraft/world/level/levelgen/WorldgenRandom;JLnet/minecraft/world/level/ChunkPos;Lnet/minecraft/world/level/LevelHeightAccessor;Ljava/util/function/Predicate;)V +MD: net/minecraft/world/level/levelgen/structure/Structure$GenerationContext/equals (Ljava/lang/Object;)Z net/minecraft/world/level/levelgen/structure/Structure$GenerationContext/equals (Ljava/lang/Object;)Z +MD: net/minecraft/world/level/levelgen/structure/Structure$GenerationContext/f_226621_ ()Lnet/minecraft/core/RegistryAccess; net/minecraft/world/level/levelgen/structure/Structure$GenerationContext/registryAccess ()Lnet/minecraft/core/RegistryAccess; +MD: net/minecraft/world/level/levelgen/structure/Structure$GenerationContext/f_226622_ ()Lnet/minecraft/world/level/chunk/ChunkGenerator; net/minecraft/world/level/levelgen/structure/Structure$GenerationContext/chunkGenerator ()Lnet/minecraft/world/level/chunk/ChunkGenerator; +MD: net/minecraft/world/level/levelgen/structure/Structure$GenerationContext/f_226623_ ()Lnet/minecraft/world/level/biome/BiomeSource; net/minecraft/world/level/levelgen/structure/Structure$GenerationContext/biomeSource ()Lnet/minecraft/world/level/biome/BiomeSource; +MD: net/minecraft/world/level/levelgen/structure/Structure$GenerationContext/f_226624_ ()Lnet/minecraft/world/level/levelgen/RandomState; net/minecraft/world/level/levelgen/structure/Structure$GenerationContext/randomState ()Lnet/minecraft/world/level/levelgen/RandomState; +MD: net/minecraft/world/level/levelgen/structure/Structure$GenerationContext/f_226625_ ()Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager; net/minecraft/world/level/levelgen/structure/Structure$GenerationContext/structureTemplateManager ()Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager; +MD: net/minecraft/world/level/levelgen/structure/Structure$GenerationContext/f_226626_ ()Lnet/minecraft/world/level/levelgen/WorldgenRandom; net/minecraft/world/level/levelgen/structure/Structure$GenerationContext/random ()Lnet/minecraft/world/level/levelgen/WorldgenRandom; +MD: net/minecraft/world/level/levelgen/structure/Structure$GenerationContext/f_226627_ ()J net/minecraft/world/level/levelgen/structure/Structure$GenerationContext/seed ()J +MD: net/minecraft/world/level/levelgen/structure/Structure$GenerationContext/f_226628_ ()Lnet/minecraft/world/level/ChunkPos; net/minecraft/world/level/levelgen/structure/Structure$GenerationContext/chunkPos ()Lnet/minecraft/world/level/ChunkPos; +MD: net/minecraft/world/level/levelgen/structure/Structure$GenerationContext/f_226629_ ()Lnet/minecraft/world/level/LevelHeightAccessor; net/minecraft/world/level/levelgen/structure/Structure$GenerationContext/heightAccessor ()Lnet/minecraft/world/level/LevelHeightAccessor; +MD: net/minecraft/world/level/levelgen/structure/Structure$GenerationContext/f_226630_ ()Ljava/util/function/Predicate; net/minecraft/world/level/levelgen/structure/Structure$GenerationContext/validBiome ()Ljava/util/function/Predicate; +MD: net/minecraft/world/level/levelgen/structure/Structure$GenerationContext/hashCode ()I net/minecraft/world/level/levelgen/structure/Structure$GenerationContext/hashCode ()I +MD: net/minecraft/world/level/levelgen/structure/Structure$GenerationContext/m_226653_ (JLnet/minecraft/world/level/ChunkPos;)Lnet/minecraft/world/level/levelgen/WorldgenRandom; net/minecraft/world/level/levelgen/structure/Structure$GenerationContext/makeRandom (JLnet/minecraft/world/level/ChunkPos;)Lnet/minecraft/world/level/levelgen/WorldgenRandom; +MD: net/minecraft/world/level/levelgen/structure/Structure$GenerationContext/toString ()Ljava/lang/String; net/minecraft/world/level/levelgen/structure/Structure$GenerationContext/toString ()Ljava/lang/String; +MD: net/minecraft/world/level/levelgen/structure/Structure$GenerationStub/ (Lnet/minecraft/core/BlockPos;Ljava/util/function/Consumer;)V net/minecraft/world/level/levelgen/structure/Structure$GenerationStub/ (Lnet/minecraft/core/BlockPos;Ljava/util/function/Consumer;)V +MD: net/minecraft/world/level/levelgen/structure/Structure$GenerationStub/ (Lnet/minecraft/core/BlockPos;Lcom/mojang/datafixers/util/Either;)V net/minecraft/world/level/levelgen/structure/Structure$GenerationStub/ (Lnet/minecraft/core/BlockPos;Lcom/mojang/datafixers/util/Either;)V +MD: net/minecraft/world/level/levelgen/structure/Structure$GenerationStub/equals (Ljava/lang/Object;)Z net/minecraft/world/level/levelgen/structure/Structure$GenerationStub/equals (Ljava/lang/Object;)Z +MD: net/minecraft/world/level/levelgen/structure/Structure$GenerationStub/f_226669_ ()Lnet/minecraft/core/BlockPos; net/minecraft/world/level/levelgen/structure/Structure$GenerationStub/position ()Lnet/minecraft/core/BlockPos; +MD: net/minecraft/world/level/levelgen/structure/Structure$GenerationStub/f_226670_ ()Lcom/mojang/datafixers/util/Either; net/minecraft/world/level/levelgen/structure/Structure$GenerationStub/generator ()Lcom/mojang/datafixers/util/Either; +MD: net/minecraft/world/level/levelgen/structure/Structure$GenerationStub/hashCode ()I net/minecraft/world/level/levelgen/structure/Structure$GenerationStub/hashCode ()I +MD: net/minecraft/world/level/levelgen/structure/Structure$GenerationStub/m_226677_ ()Lnet/minecraft/world/level/levelgen/structure/pieces/StructurePiecesBuilder; net/minecraft/world/level/levelgen/structure/Structure$GenerationStub/getPiecesBuilder ()Lnet/minecraft/world/level/levelgen/structure/pieces/StructurePiecesBuilder; +MD: net/minecraft/world/level/levelgen/structure/Structure$GenerationStub/m_226678_ (Lnet/minecraft/world/level/levelgen/structure/pieces/StructurePiecesBuilder;)Lnet/minecraft/world/level/levelgen/structure/pieces/StructurePiecesBuilder; net/minecraft/world/level/levelgen/structure/Structure$GenerationStub/lambda$getPiecesBuilder$1 (Lnet/minecraft/world/level/levelgen/structure/pieces/StructurePiecesBuilder;)Lnet/minecraft/world/level/levelgen/structure/pieces/StructurePiecesBuilder; +MD: net/minecraft/world/level/levelgen/structure/Structure$GenerationStub/m_226680_ (Ljava/util/function/Consumer;)Lnet/minecraft/world/level/levelgen/structure/pieces/StructurePiecesBuilder; net/minecraft/world/level/levelgen/structure/Structure$GenerationStub/lambda$getPiecesBuilder$0 (Ljava/util/function/Consumer;)Lnet/minecraft/world/level/levelgen/structure/pieces/StructurePiecesBuilder; +MD: net/minecraft/world/level/levelgen/structure/Structure$GenerationStub/toString ()Ljava/lang/String; net/minecraft/world/level/levelgen/structure/Structure$GenerationStub/toString ()Ljava/lang/String; +MD: net/minecraft/world/level/levelgen/structure/Structure$StructureSettings/ ()V net/minecraft/world/level/levelgen/structure/Structure$StructureSettings/ ()V +MD: net/minecraft/world/level/levelgen/structure/Structure$StructureSettings/ (Lnet/minecraft/core/HolderSet;Ljava/util/Map;Lnet/minecraft/world/level/levelgen/GenerationStep$Decoration;Lnet/minecraft/world/level/levelgen/structure/TerrainAdjustment;)V net/minecraft/world/level/levelgen/structure/Structure$StructureSettings/ (Lnet/minecraft/core/HolderSet;Ljava/util/Map;Lnet/minecraft/world/level/levelgen/GenerationStep$Decoration;Lnet/minecraft/world/level/levelgen/structure/TerrainAdjustment;)V +MD: net/minecraft/world/level/levelgen/structure/Structure$StructureSettings/equals (Ljava/lang/Object;)Z net/minecraft/world/level/levelgen/structure/Structure$StructureSettings/equals (Ljava/lang/Object;)Z +MD: net/minecraft/world/level/levelgen/structure/Structure$StructureSettings/f_226689_ ()Lnet/minecraft/core/HolderSet; net/minecraft/world/level/levelgen/structure/Structure$StructureSettings/biomes ()Lnet/minecraft/core/HolderSet; +MD: net/minecraft/world/level/levelgen/structure/Structure$StructureSettings/f_226690_ ()Ljava/util/Map; net/minecraft/world/level/levelgen/structure/Structure$StructureSettings/spawnOverrides ()Ljava/util/Map; +MD: net/minecraft/world/level/levelgen/structure/Structure$StructureSettings/f_226691_ ()Lnet/minecraft/world/level/levelgen/GenerationStep$Decoration; net/minecraft/world/level/levelgen/structure/Structure$StructureSettings/step ()Lnet/minecraft/world/level/levelgen/GenerationStep$Decoration; +MD: net/minecraft/world/level/levelgen/structure/Structure$StructureSettings/f_226692_ ()Lnet/minecraft/world/level/levelgen/structure/TerrainAdjustment; net/minecraft/world/level/levelgen/structure/Structure$StructureSettings/terrainAdaptation ()Lnet/minecraft/world/level/levelgen/structure/TerrainAdjustment; +MD: net/minecraft/world/level/levelgen/structure/Structure$StructureSettings/hashCode ()I net/minecraft/world/level/levelgen/structure/Structure$StructureSettings/hashCode ()I +MD: net/minecraft/world/level/levelgen/structure/Structure$StructureSettings/m_257361_ (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/world/level/levelgen/structure/Structure$StructureSettings/lambda$static$0 (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/world/level/levelgen/structure/Structure$StructureSettings/toString ()Ljava/lang/String; net/minecraft/world/level/levelgen/structure/Structure$StructureSettings/toString ()Ljava/lang/String; +MD: net/minecraft/world/level/levelgen/structure/StructureCheck/ ()V net/minecraft/world/level/levelgen/structure/StructureCheck/ ()V +MD: net/minecraft/world/level/levelgen/structure/StructureCheck/ (Lnet/minecraft/world/level/chunk/storage/ChunkScanAccess;Lnet/minecraft/core/RegistryAccess;Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager;Lnet/minecraft/resources/ResourceKey;Lnet/minecraft/world/level/chunk/ChunkGenerator;Lnet/minecraft/world/level/levelgen/RandomState;Lnet/minecraft/world/level/LevelHeightAccessor;Lnet/minecraft/world/level/biome/BiomeSource;JLcom/mojang/datafixers/DataFixer;)V net/minecraft/world/level/levelgen/structure/StructureCheck/ (Lnet/minecraft/world/level/chunk/storage/ChunkScanAccess;Lnet/minecraft/core/RegistryAccess;Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager;Lnet/minecraft/resources/ResourceKey;Lnet/minecraft/world/level/chunk/ChunkGenerator;Lnet/minecraft/world/level/levelgen/RandomState;Lnet/minecraft/world/level/LevelHeightAccessor;Lnet/minecraft/world/level/biome/BiomeSource;JLcom/mojang/datafixers/DataFixer;)V +MD: net/minecraft/world/level/levelgen/structure/StructureCheck/m_197263_ (JLit/unimi/dsi/fastutil/objects/Object2IntMap;)V net/minecraft/world/level/levelgen/structure/StructureCheck/storeFullResults (JLit/unimi/dsi/fastutil/objects/Object2IntMap;)V +MD: net/minecraft/world/level/levelgen/structure/StructureCheck/m_197282_ (Lnet/minecraft/world/level/ChunkPos;Ljava/util/Map;)V net/minecraft/world/level/levelgen/structure/StructureCheck/onStructureLoad (Lnet/minecraft/world/level/ChunkPos;Ljava/util/Map;)V +MD: net/minecraft/world/level/levelgen/structure/StructureCheck/m_197298_ (Lit/unimi/dsi/fastutil/objects/Object2IntMap;)Lit/unimi/dsi/fastutil/objects/Object2IntMap; net/minecraft/world/level/levelgen/structure/StructureCheck/deduplicateEmptyMap (Lit/unimi/dsi/fastutil/objects/Object2IntMap;)Lit/unimi/dsi/fastutil/objects/Object2IntMap; +MD: net/minecraft/world/level/levelgen/structure/StructureCheck/m_197311_ (Lnet/minecraft/nbt/CompoundTag;)Lit/unimi/dsi/fastutil/objects/Object2IntMap; net/minecraft/world/level/levelgen/structure/StructureCheck/loadStructures (Lnet/minecraft/nbt/CompoundTag;)Lit/unimi/dsi/fastutil/objects/Object2IntMap; +MD: net/minecraft/world/level/levelgen/structure/StructureCheck/m_209954_ (JLit/unimi/dsi/fastutil/longs/Long2BooleanMap;)V net/minecraft/world/level/levelgen/structure/StructureCheck/lambda$storeFullResults$3 (JLit/unimi/dsi/fastutil/longs/Long2BooleanMap;)V +MD: net/minecraft/world/level/levelgen/structure/StructureCheck/m_226722_ (Lnet/minecraft/world/level/ChunkPos;Lnet/minecraft/world/level/levelgen/structure/Structure;)V net/minecraft/world/level/levelgen/structure/StructureCheck/incrementReference (Lnet/minecraft/world/level/ChunkPos;Lnet/minecraft/world/level/levelgen/structure/Structure;)V +MD: net/minecraft/world/level/levelgen/structure/StructureCheck/m_226725_ (Lnet/minecraft/world/level/ChunkPos;Lnet/minecraft/world/level/levelgen/structure/Structure;J)Z net/minecraft/world/level/levelgen/structure/StructureCheck/lambda$checkStart$1 (Lnet/minecraft/world/level/ChunkPos;Lnet/minecraft/world/level/levelgen/structure/Structure;J)Z +MD: net/minecraft/world/level/levelgen/structure/StructureCheck/m_226729_ (Lnet/minecraft/world/level/ChunkPos;Lnet/minecraft/world/level/levelgen/structure/Structure;Z)Lnet/minecraft/world/level/levelgen/structure/StructureCheckResult; net/minecraft/world/level/levelgen/structure/StructureCheck/checkStart (Lnet/minecraft/world/level/ChunkPos;Lnet/minecraft/world/level/levelgen/structure/Structure;Z)Lnet/minecraft/world/level/levelgen/structure/StructureCheckResult; +MD: net/minecraft/world/level/levelgen/structure/StructureCheck/m_226733_ (Lnet/minecraft/world/level/ChunkPos;Lnet/minecraft/world/level/levelgen/structure/Structure;ZJ)Lnet/minecraft/world/level/levelgen/structure/StructureCheckResult; net/minecraft/world/level/levelgen/structure/StructureCheck/tryLoadFromStorage (Lnet/minecraft/world/level/ChunkPos;Lnet/minecraft/world/level/levelgen/structure/Structure;ZJ)Lnet/minecraft/world/level/levelgen/structure/StructureCheckResult; +MD: net/minecraft/world/level/levelgen/structure/StructureCheck/m_226738_ (Lnet/minecraft/world/level/levelgen/structure/Structure;)Lit/unimi/dsi/fastutil/longs/Long2BooleanMap; net/minecraft/world/level/levelgen/structure/StructureCheck/lambda$checkStart$0 (Lnet/minecraft/world/level/levelgen/structure/Structure;)Lit/unimi/dsi/fastutil/longs/Long2BooleanMap; +MD: net/minecraft/world/level/levelgen/structure/StructureCheck/m_226740_ (Lnet/minecraft/world/level/levelgen/structure/Structure;Ljava/lang/Integer;)Ljava/lang/Integer; net/minecraft/world/level/levelgen/structure/StructureCheck/lambda$incrementReference$4 (Lnet/minecraft/world/level/levelgen/structure/Structure;Ljava/lang/Integer;)Ljava/lang/Integer; +MD: net/minecraft/world/level/levelgen/structure/StructureCheck/m_226743_ (Lnet/minecraft/world/level/levelgen/structure/Structure;Ljava/lang/Long;Lit/unimi/dsi/fastutil/objects/Object2IntMap;)Lit/unimi/dsi/fastutil/objects/Object2IntMap; net/minecraft/world/level/levelgen/structure/StructureCheck/lambda$incrementReference$5 (Lnet/minecraft/world/level/levelgen/structure/Structure;Ljava/lang/Long;Lit/unimi/dsi/fastutil/objects/Object2IntMap;)Lit/unimi/dsi/fastutil/objects/Object2IntMap; +MD: net/minecraft/world/level/levelgen/structure/StructureCheck/m_226747_ (Lit/unimi/dsi/fastutil/objects/Object2IntMap;Lnet/minecraft/world/level/levelgen/structure/Structure;Lnet/minecraft/world/level/levelgen/structure/StructureStart;)V net/minecraft/world/level/levelgen/structure/StructureCheck/lambda$onStructureLoad$2 (Lit/unimi/dsi/fastutil/objects/Object2IntMap;Lnet/minecraft/world/level/levelgen/structure/Structure;Lnet/minecraft/world/level/levelgen/structure/StructureStart;)V +MD: net/minecraft/world/level/levelgen/structure/StructureCheck/m_226751_ (Lit/unimi/dsi/fastutil/objects/Object2IntMap;Lnet/minecraft/world/level/levelgen/structure/Structure;Z)Lnet/minecraft/world/level/levelgen/structure/StructureCheckResult; net/minecraft/world/level/levelgen/structure/StructureCheck/checkStructureInfo (Lit/unimi/dsi/fastutil/objects/Object2IntMap;Lnet/minecraft/world/level/levelgen/structure/Structure;Z)Lnet/minecraft/world/level/levelgen/structure/StructureCheckResult; +MD: net/minecraft/world/level/levelgen/structure/StructureCheck/m_226755_ (Lnet/minecraft/world/level/ChunkPos;Lnet/minecraft/world/level/levelgen/structure/Structure;)Z net/minecraft/world/level/levelgen/structure/StructureCheck/canCreateStructure (Lnet/minecraft/world/level/ChunkPos;Lnet/minecraft/world/level/levelgen/structure/Structure;)Z +MD: net/minecraft/world/level/levelgen/structure/StructureCheckResult/ ()V net/minecraft/world/level/levelgen/structure/StructureCheckResult/ ()V +MD: net/minecraft/world/level/levelgen/structure/StructureCheckResult/ (Ljava/lang/String;I)V net/minecraft/world/level/levelgen/structure/StructureCheckResult/ (Ljava/lang/String;I)V +MD: net/minecraft/world/level/levelgen/structure/StructureCheckResult/m_197321_ ()[Lnet/minecraft/world/level/levelgen/structure/StructureCheckResult; net/minecraft/world/level/levelgen/structure/StructureCheckResult/$values ()[Lnet/minecraft/world/level/levelgen/structure/StructureCheckResult; +MD: net/minecraft/world/level/levelgen/structure/StructureCheckResult/valueOf (Ljava/lang/String;)Lnet/minecraft/world/level/levelgen/structure/StructureCheckResult; net/minecraft/world/level/levelgen/structure/StructureCheckResult/valueOf (Ljava/lang/String;)Lnet/minecraft/world/level/levelgen/structure/StructureCheckResult; +MD: net/minecraft/world/level/levelgen/structure/StructureCheckResult/values ()[Lnet/minecraft/world/level/levelgen/structure/StructureCheckResult; net/minecraft/world/level/levelgen/structure/StructureCheckResult/values ()[Lnet/minecraft/world/level/levelgen/structure/StructureCheckResult; +MD: net/minecraft/world/level/levelgen/structure/StructureFeatureIndexSavedData/ (Lit/unimi/dsi/fastutil/longs/LongSet;Lit/unimi/dsi/fastutil/longs/LongSet;)V net/minecraft/world/level/levelgen/structure/StructureFeatureIndexSavedData/ (Lit/unimi/dsi/fastutil/longs/LongSet;Lit/unimi/dsi/fastutil/longs/LongSet;)V +MD: net/minecraft/world/level/levelgen/structure/StructureFeatureIndexSavedData/ ()V net/minecraft/world/level/levelgen/structure/StructureFeatureIndexSavedData/ ()V +MD: net/minecraft/world/level/levelgen/structure/StructureFeatureIndexSavedData/m_163534_ (Lnet/minecraft/nbt/CompoundTag;)Lnet/minecraft/world/level/levelgen/structure/StructureFeatureIndexSavedData; net/minecraft/world/level/levelgen/structure/StructureFeatureIndexSavedData/load (Lnet/minecraft/nbt/CompoundTag;)Lnet/minecraft/world/level/levelgen/structure/StructureFeatureIndexSavedData; +MD: net/minecraft/world/level/levelgen/structure/StructureFeatureIndexSavedData/m_7176_ (Lnet/minecraft/nbt/CompoundTag;)Lnet/minecraft/nbt/CompoundTag; net/minecraft/world/level/levelgen/structure/StructureFeatureIndexSavedData/save (Lnet/minecraft/nbt/CompoundTag;)Lnet/minecraft/nbt/CompoundTag; +MD: net/minecraft/world/level/levelgen/structure/StructureFeatureIndexSavedData/m_73364_ ()Lit/unimi/dsi/fastutil/longs/LongSet; net/minecraft/world/level/levelgen/structure/StructureFeatureIndexSavedData/getAll ()Lit/unimi/dsi/fastutil/longs/LongSet; +MD: net/minecraft/world/level/levelgen/structure/StructureFeatureIndexSavedData/m_73365_ (J)V net/minecraft/world/level/levelgen/structure/StructureFeatureIndexSavedData/addIndex (J)V +MD: net/minecraft/world/level/levelgen/structure/StructureFeatureIndexSavedData/m_73369_ (J)Z net/minecraft/world/level/levelgen/structure/StructureFeatureIndexSavedData/hasStartIndex (J)Z +MD: net/minecraft/world/level/levelgen/structure/StructureFeatureIndexSavedData/m_73373_ (J)Z net/minecraft/world/level/levelgen/structure/StructureFeatureIndexSavedData/hasUnhandledIndex (J)Z +MD: net/minecraft/world/level/levelgen/structure/StructureFeatureIndexSavedData/m_73375_ (J)V net/minecraft/world/level/levelgen/structure/StructureFeatureIndexSavedData/removeIndex (J)V +MD: net/minecraft/world/level/levelgen/structure/StructurePiece/ ()V net/minecraft/world/level/levelgen/structure/StructurePiece/ ()V +MD: net/minecraft/world/level/levelgen/structure/StructurePiece/ (Lnet/minecraft/world/level/levelgen/structure/pieces/StructurePieceType;ILnet/minecraft/world/level/levelgen/structure/BoundingBox;)V net/minecraft/world/level/levelgen/structure/StructurePiece/ (Lnet/minecraft/world/level/levelgen/structure/pieces/StructurePieceType;ILnet/minecraft/world/level/levelgen/structure/BoundingBox;)V +MD: net/minecraft/world/level/levelgen/structure/StructurePiece/ (Lnet/minecraft/world/level/levelgen/structure/pieces/StructurePieceType;Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/level/levelgen/structure/StructurePiece/ (Lnet/minecraft/world/level/levelgen/structure/pieces/StructurePieceType;Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/level/levelgen/structure/StructurePiece/m_142085_ (Lnet/minecraft/world/level/LevelReader;IIILnet/minecraft/world/level/levelgen/structure/BoundingBox;)Z net/minecraft/world/level/levelgen/structure/StructurePiece/canBeReplaced (Lnet/minecraft/world/level/LevelReader;IIILnet/minecraft/world/level/levelgen/structure/BoundingBox;)Z +MD: net/minecraft/world/level/levelgen/structure/StructurePiece/m_142171_ ()Lnet/minecraft/core/BlockPos; net/minecraft/world/level/levelgen/structure/StructurePiece/getLocatorPosition ()Lnet/minecraft/core/BlockPos; +MD: net/minecraft/world/level/levelgen/structure/StructurePiece/m_163541_ (IIILnet/minecraft/core/Direction;III)Lnet/minecraft/world/level/levelgen/structure/BoundingBox; net/minecraft/world/level/levelgen/structure/StructurePiece/makeBoundingBox (IIILnet/minecraft/core/Direction;III)Lnet/minecraft/world/level/levelgen/structure/BoundingBox; +MD: net/minecraft/world/level/levelgen/structure/StructurePiece/m_163558_ (Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/world/level/levelgen/structure/BoundingBox;Lnet/minecraft/world/level/levelgen/structure/BoundingBox;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/state/BlockState;Z)V net/minecraft/world/level/levelgen/structure/StructurePiece/generateBox (Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/world/level/levelgen/structure/BoundingBox;Lnet/minecraft/world/level/levelgen/structure/BoundingBox;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/state/BlockState;Z)V +MD: net/minecraft/world/level/levelgen/structure/StructurePiece/m_163572_ (Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/world/level/levelgen/structure/StructurePiece/isReplaceableByStructures (Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/world/level/levelgen/structure/StructurePiece/m_163577_ (Lnet/minecraft/nbt/CompoundTag;Lnet/minecraft/nbt/Tag;)V net/minecraft/world/level/levelgen/structure/StructurePiece/lambda$createTag$1 (Lnet/minecraft/nbt/CompoundTag;Lnet/minecraft/nbt/Tag;)V +MD: net/minecraft/world/level/levelgen/structure/StructurePiece/m_163582_ (III)Lnet/minecraft/core/BlockPos$MutableBlockPos; net/minecraft/world/level/levelgen/structure/StructurePiece/getWorldPos (III)Lnet/minecraft/core/BlockPos$MutableBlockPos; +MD: net/minecraft/world/level/levelgen/structure/StructurePiece/m_163586_ ()Ljava/lang/IllegalArgumentException; net/minecraft/world/level/levelgen/structure/StructurePiece/lambda$new$0 ()Ljava/lang/IllegalArgumentException; +MD: net/minecraft/world/level/levelgen/structure/StructurePiece/m_163587_ ()Lnet/minecraft/world/level/block/Mirror; net/minecraft/world/level/levelgen/structure/StructurePiece/getMirror ()Lnet/minecraft/world/level/block/Mirror; +MD: net/minecraft/world/level/levelgen/structure/StructurePiece/m_183620_ (Lnet/minecraft/world/level/levelgen/structure/pieces/StructurePieceSerializationContext;Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/level/levelgen/structure/StructurePiece/addAdditionalSaveData (Lnet/minecraft/world/level/levelgen/structure/pieces/StructurePieceSerializationContext;Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/level/levelgen/structure/StructurePiece/m_192644_ (Lnet/minecraft/world/level/levelgen/structure/pieces/StructurePieceSerializationContext;)Lnet/minecraft/nbt/CompoundTag; net/minecraft/world/level/levelgen/structure/StructurePiece/createTag (Lnet/minecraft/world/level/levelgen/structure/pieces/StructurePieceSerializationContext;)Lnet/minecraft/nbt/CompoundTag; +MD: net/minecraft/world/level/levelgen/structure/StructurePiece/m_192648_ (Ljava/util/List;Lnet/minecraft/world/level/levelgen/structure/BoundingBox;)Lnet/minecraft/world/level/levelgen/structure/StructurePiece; net/minecraft/world/level/levelgen/structure/StructurePiece/findCollisionPiece (Ljava/util/List;Lnet/minecraft/world/level/levelgen/structure/BoundingBox;)Lnet/minecraft/world/level/levelgen/structure/StructurePiece; +MD: net/minecraft/world/level/levelgen/structure/StructurePiece/m_192651_ (Ljava/util/stream/Stream;)Lnet/minecraft/world/level/levelgen/structure/BoundingBox; net/minecraft/world/level/levelgen/structure/StructurePiece/createBoundingBox (Ljava/util/stream/Stream;)Lnet/minecraft/world/level/levelgen/structure/BoundingBox; +MD: net/minecraft/world/level/levelgen/structure/StructurePiece/m_192653_ ()Ljava/lang/IllegalStateException; net/minecraft/world/level/levelgen/structure/StructurePiece/lambda$createBoundingBox$2 ()Ljava/lang/IllegalStateException; +MD: net/minecraft/world/level/levelgen/structure/StructurePiece/m_210000_ ()Lnet/minecraft/world/level/levelgen/structure/pieces/StructurePieceType; net/minecraft/world/level/levelgen/structure/StructurePiece/getType ()Lnet/minecraft/world/level/levelgen/structure/pieces/StructurePieceType; +MD: net/minecraft/world/level/levelgen/structure/StructurePiece/m_213694_ (Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/world/level/StructureManager;Lnet/minecraft/world/level/chunk/ChunkGenerator;Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/levelgen/structure/BoundingBox;Lnet/minecraft/world/level/ChunkPos;Lnet/minecraft/core/BlockPos;)V net/minecraft/world/level/levelgen/structure/StructurePiece/postProcess (Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/world/level/StructureManager;Lnet/minecraft/world/level/chunk/ChunkGenerator;Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/levelgen/structure/BoundingBox;Lnet/minecraft/world/level/ChunkPos;Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/world/level/levelgen/structure/StructurePiece/m_213787_ (Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/world/level/levelgen/structure/BoundingBox;Lnet/minecraft/util/RandomSource;IIILnet/minecraft/resources/ResourceLocation;)Z net/minecraft/world/level/levelgen/structure/StructurePiece/createChest (Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/world/level/levelgen/structure/BoundingBox;Lnet/minecraft/util/RandomSource;IIILnet/minecraft/resources/ResourceLocation;)Z +MD: net/minecraft/world/level/levelgen/structure/StructurePiece/m_214092_ (Lnet/minecraft/world/level/levelgen/structure/StructurePiece;Lnet/minecraft/world/level/levelgen/structure/StructurePieceAccessor;Lnet/minecraft/util/RandomSource;)V net/minecraft/world/level/levelgen/structure/StructurePiece/addChildren (Lnet/minecraft/world/level/levelgen/structure/StructurePiece;Lnet/minecraft/world/level/levelgen/structure/StructurePieceAccessor;Lnet/minecraft/util/RandomSource;)V +MD: net/minecraft/world/level/levelgen/structure/StructurePiece/m_226758_ (I)V net/minecraft/world/level/levelgen/structure/StructurePiece/setGenDepth (I)V +MD: net/minecraft/world/level/levelgen/structure/StructurePiece/m_226760_ (Lnet/minecraft/util/RandomSource;)Lnet/minecraft/core/Direction; net/minecraft/world/level/levelgen/structure/StructurePiece/getRandomHorizontalDirection (Lnet/minecraft/util/RandomSource;)Lnet/minecraft/core/Direction; +MD: net/minecraft/world/level/levelgen/structure/StructurePiece/m_226762_ (Lnet/minecraft/world/level/ServerLevelAccessor;Lnet/minecraft/world/level/levelgen/structure/BoundingBox;Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos;Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/world/level/levelgen/structure/StructurePiece/createChest (Lnet/minecraft/world/level/ServerLevelAccessor;Lnet/minecraft/world/level/levelgen/structure/BoundingBox;Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos;Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/world/level/levelgen/structure/StructurePiece/m_226776_ (Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/world/level/levelgen/structure/BoundingBox;IIIIIIZLnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/levelgen/structure/StructurePiece$BlockSelector;)V net/minecraft/world/level/levelgen/structure/StructurePiece/generateBox (Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/world/level/levelgen/structure/BoundingBox;IIIIIIZLnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/levelgen/structure/StructurePiece$BlockSelector;)V +MD: net/minecraft/world/level/levelgen/structure/StructurePiece/m_226788_ (Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/world/level/levelgen/structure/BoundingBox;Lnet/minecraft/util/RandomSource;FIIIIIILnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/state/BlockState;ZZ)V net/minecraft/world/level/levelgen/structure/StructurePiece/generateMaybeBox (Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/world/level/levelgen/structure/BoundingBox;Lnet/minecraft/util/RandomSource;FIIIIIILnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/state/BlockState;ZZ)V +MD: net/minecraft/world/level/levelgen/structure/StructurePiece/m_226803_ (Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/world/level/levelgen/structure/BoundingBox;Lnet/minecraft/util/RandomSource;FIIILnet/minecraft/world/level/block/state/BlockState;)V net/minecraft/world/level/levelgen/structure/StructurePiece/maybeGenerateBlock (Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/world/level/levelgen/structure/BoundingBox;Lnet/minecraft/util/RandomSource;FIIILnet/minecraft/world/level/block/state/BlockState;)V +MD: net/minecraft/world/level/levelgen/structure/StructurePiece/m_226819_ (Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/world/level/levelgen/structure/BoundingBox;Lnet/minecraft/util/RandomSource;IIILnet/minecraft/core/Direction;Lnet/minecraft/resources/ResourceLocation;)Z net/minecraft/world/level/levelgen/structure/StructurePiece/createDispenser (Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/world/level/levelgen/structure/BoundingBox;Lnet/minecraft/util/RandomSource;IIILnet/minecraft/core/Direction;Lnet/minecraft/resources/ResourceLocation;)Z +MD: net/minecraft/world/level/levelgen/structure/StructurePiece/m_226828_ (Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/world/level/levelgen/structure/BoundingBox;Lnet/minecraft/world/level/levelgen/structure/BoundingBox;ZLnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/levelgen/structure/StructurePiece$BlockSelector;)V net/minecraft/world/level/levelgen/structure/StructurePiece/generateBox (Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/world/level/levelgen/structure/BoundingBox;Lnet/minecraft/world/level/levelgen/structure/BoundingBox;ZLnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/levelgen/structure/StructurePiece$BlockSelector;)V +MD: net/minecraft/world/level/levelgen/structure/StructurePiece/m_6324_ (III)V net/minecraft/world/level/levelgen/structure/StructurePiece/move (III)V +MD: net/minecraft/world/level/levelgen/structure/StructurePiece/m_6830_ ()Lnet/minecraft/world/level/block/Rotation; net/minecraft/world/level/levelgen/structure/StructurePiece/getRotation ()Lnet/minecraft/world/level/block/Rotation; +MD: net/minecraft/world/level/levelgen/structure/StructurePiece/m_73392_ (II)I net/minecraft/world/level/levelgen/structure/StructurePiece/getWorldX (II)I +MD: net/minecraft/world/level/levelgen/structure/StructurePiece/m_73398_ (Lnet/minecraft/world/level/BlockGetter;IIILnet/minecraft/world/level/levelgen/structure/BoundingBox;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/levelgen/structure/StructurePiece/getBlock (Lnet/minecraft/world/level/BlockGetter;IIILnet/minecraft/world/level/levelgen/structure/BoundingBox;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/levelgen/structure/StructurePiece/m_73407_ (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/levelgen/structure/StructurePiece/reorient (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/levelgen/structure/StructurePiece/m_73411_ (Lnet/minecraft/world/level/ChunkPos;I)Z net/minecraft/world/level/levelgen/structure/StructurePiece/isCloseToChunk (Lnet/minecraft/world/level/ChunkPos;I)Z +MD: net/minecraft/world/level/levelgen/structure/StructurePiece/m_73414_ (Lnet/minecraft/world/level/LevelReader;IIILnet/minecraft/world/level/levelgen/structure/BoundingBox;)Z net/minecraft/world/level/levelgen/structure/StructurePiece/isInterior (Lnet/minecraft/world/level/LevelReader;IIILnet/minecraft/world/level/levelgen/structure/BoundingBox;)Z +MD: net/minecraft/world/level/levelgen/structure/StructurePiece/m_73434_ (Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/world/level/block/state/BlockState;IIILnet/minecraft/world/level/levelgen/structure/BoundingBox;)V net/minecraft/world/level/levelgen/structure/StructurePiece/placeBlock (Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/world/level/block/state/BlockState;IIILnet/minecraft/world/level/levelgen/structure/BoundingBox;)V +MD: net/minecraft/world/level/levelgen/structure/StructurePiece/m_73441_ (Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/world/level/levelgen/structure/BoundingBox;IIIIIILnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/state/BlockState;Z)V net/minecraft/world/level/levelgen/structure/StructurePiece/generateBox (Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/world/level/levelgen/structure/BoundingBox;IIIIIILnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/state/BlockState;Z)V +MD: net/minecraft/world/level/levelgen/structure/StructurePiece/m_73453_ (Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/world/level/levelgen/structure/BoundingBox;IIIIIILnet/minecraft/world/level/block/state/BlockState;Z)V net/minecraft/world/level/levelgen/structure/StructurePiece/generateUpperHalfSphere (Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/world/level/levelgen/structure/BoundingBox;IIIIIILnet/minecraft/world/level/block/state/BlockState;Z)V +MD: net/minecraft/world/level/levelgen/structure/StructurePiece/m_73519_ (Lnet/minecraft/core/Direction;)V net/minecraft/world/level/levelgen/structure/StructurePiece/setOrientation (Lnet/minecraft/core/Direction;)V +MD: net/minecraft/world/level/levelgen/structure/StructurePiece/m_73525_ (II)I net/minecraft/world/level/levelgen/structure/StructurePiece/getWorldZ (II)I +MD: net/minecraft/world/level/levelgen/structure/StructurePiece/m_73528_ (Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/world/level/block/state/BlockState;IIILnet/minecraft/world/level/levelgen/structure/BoundingBox;)V net/minecraft/world/level/levelgen/structure/StructurePiece/fillColumnDown (Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/world/level/block/state/BlockState;IIILnet/minecraft/world/level/levelgen/structure/BoundingBox;)V +MD: net/minecraft/world/level/levelgen/structure/StructurePiece/m_73535_ (Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/world/level/levelgen/structure/BoundingBox;IIIIII)V net/minecraft/world/level/levelgen/structure/StructurePiece/generateAirBox (Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/world/level/levelgen/structure/BoundingBox;IIIIII)V +MD: net/minecraft/world/level/levelgen/structure/StructurePiece/m_73544_ (I)I net/minecraft/world/level/levelgen/structure/StructurePiece/getWorldY (I)I +MD: net/minecraft/world/level/levelgen/structure/StructurePiece/m_73547_ ()Lnet/minecraft/world/level/levelgen/structure/BoundingBox; net/minecraft/world/level/levelgen/structure/StructurePiece/getBoundingBox ()Lnet/minecraft/world/level/levelgen/structure/BoundingBox; +MD: net/minecraft/world/level/levelgen/structure/StructurePiece/m_73548_ ()I net/minecraft/world/level/levelgen/structure/StructurePiece/getGenDepth ()I +MD: net/minecraft/world/level/levelgen/structure/StructurePiece/m_73549_ ()Lnet/minecraft/core/Direction; net/minecraft/world/level/levelgen/structure/StructurePiece/getOrientation ()Lnet/minecraft/core/Direction; +MD: net/minecraft/world/level/levelgen/structure/StructurePiece$1/ ()V net/minecraft/world/level/levelgen/structure/StructurePiece$1/ ()V +MD: net/minecraft/world/level/levelgen/structure/StructurePiece$BlockSelector/ ()V net/minecraft/world/level/levelgen/structure/StructurePiece$BlockSelector/ ()V +MD: net/minecraft/world/level/levelgen/structure/StructurePiece$BlockSelector/m_213766_ (Lnet/minecraft/util/RandomSource;IIIZ)V net/minecraft/world/level/levelgen/structure/StructurePiece$BlockSelector/next (Lnet/minecraft/util/RandomSource;IIIZ)V +MD: net/minecraft/world/level/levelgen/structure/StructurePiece$BlockSelector/m_73555_ ()Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/levelgen/structure/StructurePiece$BlockSelector/getNext ()Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/levelgen/structure/StructurePieceAccessor/m_141921_ (Lnet/minecraft/world/level/levelgen/structure/BoundingBox;)Lnet/minecraft/world/level/levelgen/structure/StructurePiece; net/minecraft/world/level/levelgen/structure/StructurePieceAccessor/findCollisionPiece (Lnet/minecraft/world/level/levelgen/structure/BoundingBox;)Lnet/minecraft/world/level/levelgen/structure/StructurePiece; +MD: net/minecraft/world/level/levelgen/structure/StructurePieceAccessor/m_142679_ (Lnet/minecraft/world/level/levelgen/structure/StructurePiece;)V net/minecraft/world/level/levelgen/structure/StructurePieceAccessor/addPiece (Lnet/minecraft/world/level/levelgen/structure/StructurePiece;)V +MD: net/minecraft/world/level/levelgen/structure/StructureSet/ ()V net/minecraft/world/level/levelgen/structure/StructureSet/ ()V +MD: net/minecraft/world/level/levelgen/structure/StructureSet/ (Lnet/minecraft/core/Holder;Lnet/minecraft/world/level/levelgen/structure/placement/StructurePlacement;)V net/minecraft/world/level/levelgen/structure/StructureSet/ (Lnet/minecraft/core/Holder;Lnet/minecraft/world/level/levelgen/structure/placement/StructurePlacement;)V +MD: net/minecraft/world/level/levelgen/structure/StructureSet/ (Ljava/util/List;Lnet/minecraft/world/level/levelgen/structure/placement/StructurePlacement;)V net/minecraft/world/level/levelgen/structure/StructureSet/ (Ljava/util/List;Lnet/minecraft/world/level/levelgen/structure/placement/StructurePlacement;)V +MD: net/minecraft/world/level/levelgen/structure/StructureSet/equals (Ljava/lang/Object;)Z net/minecraft/world/level/levelgen/structure/StructureSet/equals (Ljava/lang/Object;)Z +MD: net/minecraft/world/level/levelgen/structure/StructureSet/f_210003_ ()Ljava/util/List; net/minecraft/world/level/levelgen/structure/StructureSet/structures ()Ljava/util/List; +MD: net/minecraft/world/level/levelgen/structure/StructureSet/f_210004_ ()Lnet/minecraft/world/level/levelgen/structure/placement/StructurePlacement; net/minecraft/world/level/levelgen/structure/StructureSet/placement ()Lnet/minecraft/world/level/levelgen/structure/placement/StructurePlacement; +MD: net/minecraft/world/level/levelgen/structure/StructureSet/hashCode ()I net/minecraft/world/level/levelgen/structure/StructureSet/hashCode ()I +MD: net/minecraft/world/level/levelgen/structure/StructureSet/m_210013_ (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/world/level/levelgen/structure/StructureSet/lambda$static$0 (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/world/level/levelgen/structure/StructureSet/m_210015_ (Lnet/minecraft/core/Holder;)Lnet/minecraft/world/level/levelgen/structure/StructureSet$StructureSelectionEntry; net/minecraft/world/level/levelgen/structure/StructureSet/entry (Lnet/minecraft/core/Holder;)Lnet/minecraft/world/level/levelgen/structure/StructureSet$StructureSelectionEntry; +MD: net/minecraft/world/level/levelgen/structure/StructureSet/m_210017_ (Lnet/minecraft/core/Holder;I)Lnet/minecraft/world/level/levelgen/structure/StructureSet$StructureSelectionEntry; net/minecraft/world/level/levelgen/structure/StructureSet/entry (Lnet/minecraft/core/Holder;I)Lnet/minecraft/world/level/levelgen/structure/StructureSet$StructureSelectionEntry; +MD: net/minecraft/world/level/levelgen/structure/StructureSet/toString ()Ljava/lang/String; net/minecraft/world/level/levelgen/structure/StructureSet/toString ()Ljava/lang/String; +MD: net/minecraft/world/level/levelgen/structure/StructureSet$StructureSelectionEntry/ ()V net/minecraft/world/level/levelgen/structure/StructureSet$StructureSelectionEntry/ ()V +MD: net/minecraft/world/level/levelgen/structure/StructureSet$StructureSelectionEntry/ (Lnet/minecraft/core/Holder;I)V net/minecraft/world/level/levelgen/structure/StructureSet$StructureSelectionEntry/ (Lnet/minecraft/core/Holder;I)V +MD: net/minecraft/world/level/levelgen/structure/StructureSet$StructureSelectionEntry/equals (Ljava/lang/Object;)Z net/minecraft/world/level/levelgen/structure/StructureSet$StructureSelectionEntry/equals (Ljava/lang/Object;)Z +MD: net/minecraft/world/level/levelgen/structure/StructureSet$StructureSelectionEntry/f_210026_ ()Lnet/minecraft/core/Holder; net/minecraft/world/level/levelgen/structure/StructureSet$StructureSelectionEntry/structure ()Lnet/minecraft/core/Holder; +MD: net/minecraft/world/level/levelgen/structure/StructureSet$StructureSelectionEntry/f_210027_ ()I net/minecraft/world/level/levelgen/structure/StructureSet$StructureSelectionEntry/weight ()I +MD: net/minecraft/world/level/levelgen/structure/StructureSet$StructureSelectionEntry/hashCode ()I net/minecraft/world/level/levelgen/structure/StructureSet$StructureSelectionEntry/hashCode ()I +MD: net/minecraft/world/level/levelgen/structure/StructureSet$StructureSelectionEntry/m_210033_ (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/world/level/levelgen/structure/StructureSet$StructureSelectionEntry/lambda$static$0 (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/world/level/levelgen/structure/StructureSet$StructureSelectionEntry/toString ()Ljava/lang/String; net/minecraft/world/level/levelgen/structure/StructureSet$StructureSelectionEntry/toString ()Ljava/lang/String; +MD: net/minecraft/world/level/levelgen/structure/StructureSpawnOverride/ ()V net/minecraft/world/level/levelgen/structure/StructureSpawnOverride/ ()V +MD: net/minecraft/world/level/levelgen/structure/StructureSpawnOverride/ (Lnet/minecraft/world/level/levelgen/structure/StructureSpawnOverride$BoundingBoxType;Lnet/minecraft/util/random/WeightedRandomList;)V net/minecraft/world/level/levelgen/structure/StructureSpawnOverride/ (Lnet/minecraft/world/level/levelgen/structure/StructureSpawnOverride$BoundingBoxType;Lnet/minecraft/util/random/WeightedRandomList;)V +MD: net/minecraft/world/level/levelgen/structure/StructureSpawnOverride/equals (Ljava/lang/Object;)Z net/minecraft/world/level/levelgen/structure/StructureSpawnOverride/equals (Ljava/lang/Object;)Z +MD: net/minecraft/world/level/levelgen/structure/StructureSpawnOverride/f_210043_ ()Lnet/minecraft/world/level/levelgen/structure/StructureSpawnOverride$BoundingBoxType; net/minecraft/world/level/levelgen/structure/StructureSpawnOverride/boundingBox ()Lnet/minecraft/world/level/levelgen/structure/StructureSpawnOverride$BoundingBoxType; +MD: net/minecraft/world/level/levelgen/structure/StructureSpawnOverride/f_210044_ ()Lnet/minecraft/util/random/WeightedRandomList; net/minecraft/world/level/levelgen/structure/StructureSpawnOverride/spawns ()Lnet/minecraft/util/random/WeightedRandomList; +MD: net/minecraft/world/level/levelgen/structure/StructureSpawnOverride/hashCode ()I net/minecraft/world/level/levelgen/structure/StructureSpawnOverride/hashCode ()I +MD: net/minecraft/world/level/levelgen/structure/StructureSpawnOverride/m_210050_ (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/world/level/levelgen/structure/StructureSpawnOverride/lambda$static$0 (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/world/level/levelgen/structure/StructureSpawnOverride/toString ()Ljava/lang/String; net/minecraft/world/level/levelgen/structure/StructureSpawnOverride/toString ()Ljava/lang/String; +MD: net/minecraft/world/level/levelgen/structure/StructureSpawnOverride$BoundingBoxType/ ()V net/minecraft/world/level/levelgen/structure/StructureSpawnOverride$BoundingBoxType/ ()V +MD: net/minecraft/world/level/levelgen/structure/StructureSpawnOverride$BoundingBoxType/ (Ljava/lang/String;ILjava/lang/String;)V net/minecraft/world/level/levelgen/structure/StructureSpawnOverride$BoundingBoxType/ (Ljava/lang/String;ILjava/lang/String;)V +MD: net/minecraft/world/level/levelgen/structure/StructureSpawnOverride$BoundingBoxType/m_210071_ ()[Lnet/minecraft/world/level/levelgen/structure/StructureSpawnOverride$BoundingBoxType; net/minecraft/world/level/levelgen/structure/StructureSpawnOverride$BoundingBoxType/$values ()[Lnet/minecraft/world/level/levelgen/structure/StructureSpawnOverride$BoundingBoxType; +MD: net/minecraft/world/level/levelgen/structure/StructureSpawnOverride$BoundingBoxType/m_7912_ ()Ljava/lang/String; net/minecraft/world/level/levelgen/structure/StructureSpawnOverride$BoundingBoxType/getSerializedName ()Ljava/lang/String; +MD: net/minecraft/world/level/levelgen/structure/StructureSpawnOverride$BoundingBoxType/valueOf (Ljava/lang/String;)Lnet/minecraft/world/level/levelgen/structure/StructureSpawnOverride$BoundingBoxType; net/minecraft/world/level/levelgen/structure/StructureSpawnOverride$BoundingBoxType/valueOf (Ljava/lang/String;)Lnet/minecraft/world/level/levelgen/structure/StructureSpawnOverride$BoundingBoxType; +MD: net/minecraft/world/level/levelgen/structure/StructureSpawnOverride$BoundingBoxType/values ()[Lnet/minecraft/world/level/levelgen/structure/StructureSpawnOverride$BoundingBoxType; net/minecraft/world/level/levelgen/structure/StructureSpawnOverride$BoundingBoxType/values ()[Lnet/minecraft/world/level/levelgen/structure/StructureSpawnOverride$BoundingBoxType; +MD: net/minecraft/world/level/levelgen/structure/StructureStart/ ()V net/minecraft/world/level/levelgen/structure/StructureStart/ ()V +MD: net/minecraft/world/level/levelgen/structure/StructureStart/ (Lnet/minecraft/world/level/levelgen/structure/Structure;Lnet/minecraft/world/level/ChunkPos;ILnet/minecraft/world/level/levelgen/structure/pieces/PiecesContainer;)V net/minecraft/world/level/levelgen/structure/StructureStart/ (Lnet/minecraft/world/level/levelgen/structure/Structure;Lnet/minecraft/world/level/ChunkPos;ILnet/minecraft/world/level/levelgen/structure/pieces/PiecesContainer;)V +MD: net/minecraft/world/level/levelgen/structure/StructureStart/m_163625_ ()Lnet/minecraft/world/level/ChunkPos; net/minecraft/world/level/levelgen/structure/StructureStart/getChunkPos ()Lnet/minecraft/world/level/ChunkPos; +MD: net/minecraft/world/level/levelgen/structure/StructureStart/m_192660_ (Lnet/minecraft/world/level/levelgen/structure/pieces/StructurePieceSerializationContext;Lnet/minecraft/world/level/ChunkPos;)Lnet/minecraft/nbt/CompoundTag; net/minecraft/world/level/levelgen/structure/StructureStart/createTag (Lnet/minecraft/world/level/levelgen/structure/pieces/StructurePieceSerializationContext;Lnet/minecraft/world/level/ChunkPos;)Lnet/minecraft/nbt/CompoundTag; +MD: net/minecraft/world/level/levelgen/structure/StructureStart/m_226850_ (Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/world/level/StructureManager;Lnet/minecraft/world/level/chunk/ChunkGenerator;Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/levelgen/structure/BoundingBox;Lnet/minecraft/world/level/ChunkPos;)V net/minecraft/world/level/levelgen/structure/StructureStart/placeInChunk (Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/world/level/StructureManager;Lnet/minecraft/world/level/chunk/ChunkGenerator;Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/levelgen/structure/BoundingBox;Lnet/minecraft/world/level/ChunkPos;)V +MD: net/minecraft/world/level/levelgen/structure/StructureStart/m_226857_ (Lnet/minecraft/world/level/levelgen/structure/pieces/StructurePieceSerializationContext;Lnet/minecraft/nbt/CompoundTag;J)Lnet/minecraft/world/level/levelgen/structure/StructureStart; net/minecraft/world/level/levelgen/structure/StructureStart/loadStaticStart (Lnet/minecraft/world/level/levelgen/structure/pieces/StructurePieceSerializationContext;Lnet/minecraft/nbt/CompoundTag;J)Lnet/minecraft/world/level/levelgen/structure/StructureStart; +MD: net/minecraft/world/level/levelgen/structure/StructureStart/m_226861_ ()Lnet/minecraft/world/level/levelgen/structure/Structure; net/minecraft/world/level/levelgen/structure/StructureStart/getStructure ()Lnet/minecraft/world/level/levelgen/structure/Structure; +MD: net/minecraft/world/level/levelgen/structure/StructureStart/m_73601_ ()Lnet/minecraft/world/level/levelgen/structure/BoundingBox; net/minecraft/world/level/levelgen/structure/StructureStart/getBoundingBox ()Lnet/minecraft/world/level/levelgen/structure/BoundingBox; +MD: net/minecraft/world/level/levelgen/structure/StructureStart/m_73602_ ()Ljava/util/List; net/minecraft/world/level/levelgen/structure/StructureStart/getPieces ()Ljava/util/List; +MD: net/minecraft/world/level/levelgen/structure/StructureStart/m_73603_ ()Z net/minecraft/world/level/levelgen/structure/StructureStart/isValid ()Z +MD: net/minecraft/world/level/levelgen/structure/StructureStart/m_73606_ ()Z net/minecraft/world/level/levelgen/structure/StructureStart/canBeReferenced ()Z +MD: net/minecraft/world/level/levelgen/structure/StructureStart/m_73607_ ()V net/minecraft/world/level/levelgen/structure/StructureStart/addReference ()V +MD: net/minecraft/world/level/levelgen/structure/StructureStart/m_73608_ ()I net/minecraft/world/level/levelgen/structure/StructureStart/getReferences ()I +MD: net/minecraft/world/level/levelgen/structure/StructureStart/m_73609_ ()I net/minecraft/world/level/levelgen/structure/StructureStart/getMaxReferences ()I +MD: net/minecraft/world/level/levelgen/structure/StructureType/ ()V net/minecraft/world/level/levelgen/structure/StructureType/ ()V +MD: net/minecraft/world/level/levelgen/structure/StructureType/m_226879_ (Lcom/mojang/serialization/Codec;)Lcom/mojang/serialization/Codec; net/minecraft/world/level/levelgen/structure/StructureType/lambda$register$0 (Lcom/mojang/serialization/Codec;)Lcom/mojang/serialization/Codec; +MD: net/minecraft/world/level/levelgen/structure/StructureType/m_226881_ (Ljava/lang/String;Lcom/mojang/serialization/Codec;)Lnet/minecraft/world/level/levelgen/structure/StructureType; net/minecraft/world/level/levelgen/structure/StructureType/register (Ljava/lang/String;Lcom/mojang/serialization/Codec;)Lnet/minecraft/world/level/levelgen/structure/StructureType; +MD: net/minecraft/world/level/levelgen/structure/StructureType/m_226884_ ()Lcom/mojang/serialization/Codec; net/minecraft/world/level/levelgen/structure/StructureType/codec ()Lcom/mojang/serialization/Codec; +MD: net/minecraft/world/level/levelgen/structure/TemplateStructurePiece/ ()V net/minecraft/world/level/levelgen/structure/TemplateStructurePiece/ ()V +MD: net/minecraft/world/level/levelgen/structure/TemplateStructurePiece/ (Lnet/minecraft/world/level/levelgen/structure/pieces/StructurePieceType;Lnet/minecraft/nbt/CompoundTag;Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager;Ljava/util/function/Function;)V net/minecraft/world/level/levelgen/structure/TemplateStructurePiece/ (Lnet/minecraft/world/level/levelgen/structure/pieces/StructurePieceType;Lnet/minecraft/nbt/CompoundTag;Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager;Ljava/util/function/Function;)V +MD: net/minecraft/world/level/levelgen/structure/TemplateStructurePiece/ (Lnet/minecraft/world/level/levelgen/structure/pieces/StructurePieceType;ILnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager;Lnet/minecraft/resources/ResourceLocation;Ljava/lang/String;Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructurePlaceSettings;Lnet/minecraft/core/BlockPos;)V net/minecraft/world/level/levelgen/structure/TemplateStructurePiece/ (Lnet/minecraft/world/level/levelgen/structure/pieces/StructurePieceType;ILnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager;Lnet/minecraft/resources/ResourceLocation;Ljava/lang/String;Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructurePlaceSettings;Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/world/level/levelgen/structure/TemplateStructurePiece/m_142415_ ()Lnet/minecraft/resources/ResourceLocation; net/minecraft/world/level/levelgen/structure/TemplateStructurePiece/makeTemplateLocation ()Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/world/level/levelgen/structure/TemplateStructurePiece/m_183620_ (Lnet/minecraft/world/level/levelgen/structure/pieces/StructurePieceSerializationContext;Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/level/levelgen/structure/TemplateStructurePiece/addAdditionalSaveData (Lnet/minecraft/world/level/levelgen/structure/pieces/StructurePieceSerializationContext;Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/level/levelgen/structure/TemplateStructurePiece/m_213694_ (Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/world/level/StructureManager;Lnet/minecraft/world/level/chunk/ChunkGenerator;Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/levelgen/structure/BoundingBox;Lnet/minecraft/world/level/ChunkPos;Lnet/minecraft/core/BlockPos;)V net/minecraft/world/level/levelgen/structure/TemplateStructurePiece/postProcess (Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/world/level/StructureManager;Lnet/minecraft/world/level/chunk/ChunkGenerator;Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/levelgen/structure/BoundingBox;Lnet/minecraft/world/level/ChunkPos;Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/world/level/levelgen/structure/TemplateStructurePiece/m_213704_ (Ljava/lang/String;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/ServerLevelAccessor;Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/levelgen/structure/BoundingBox;)V net/minecraft/world/level/levelgen/structure/TemplateStructurePiece/handleDataMarker (Ljava/lang/String;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/ServerLevelAccessor;Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/levelgen/structure/BoundingBox;)V +MD: net/minecraft/world/level/levelgen/structure/TemplateStructurePiece/m_226911_ ()Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate; net/minecraft/world/level/levelgen/structure/TemplateStructurePiece/template ()Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate; +MD: net/minecraft/world/level/levelgen/structure/TemplateStructurePiece/m_226912_ ()Lnet/minecraft/core/BlockPos; net/minecraft/world/level/levelgen/structure/TemplateStructurePiece/templatePosition ()Lnet/minecraft/core/BlockPos; +MD: net/minecraft/world/level/levelgen/structure/TemplateStructurePiece/m_226913_ ()Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructurePlaceSettings; net/minecraft/world/level/levelgen/structure/TemplateStructurePiece/placeSettings ()Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructurePlaceSettings; +MD: net/minecraft/world/level/levelgen/structure/TemplateStructurePiece/m_6324_ (III)V net/minecraft/world/level/levelgen/structure/TemplateStructurePiece/move (III)V +MD: net/minecraft/world/level/levelgen/structure/TemplateStructurePiece/m_6830_ ()Lnet/minecraft/world/level/block/Rotation; net/minecraft/world/level/levelgen/structure/TemplateStructurePiece/getRotation ()Lnet/minecraft/world/level/block/Rotation; +MD: net/minecraft/world/level/levelgen/structure/TerrainAdjustment/ ()V net/minecraft/world/level/levelgen/structure/TerrainAdjustment/ ()V +MD: net/minecraft/world/level/levelgen/structure/TerrainAdjustment/ (Ljava/lang/String;ILjava/lang/String;)V net/minecraft/world/level/levelgen/structure/TerrainAdjustment/ (Ljava/lang/String;ILjava/lang/String;)V +MD: net/minecraft/world/level/levelgen/structure/TerrainAdjustment/m_226926_ ()[Lnet/minecraft/world/level/levelgen/structure/TerrainAdjustment; net/minecraft/world/level/levelgen/structure/TerrainAdjustment/$values ()[Lnet/minecraft/world/level/levelgen/structure/TerrainAdjustment; +MD: net/minecraft/world/level/levelgen/structure/TerrainAdjustment/m_7912_ ()Ljava/lang/String; net/minecraft/world/level/levelgen/structure/TerrainAdjustment/getSerializedName ()Ljava/lang/String; +MD: net/minecraft/world/level/levelgen/structure/TerrainAdjustment/valueOf (Ljava/lang/String;)Lnet/minecraft/world/level/levelgen/structure/TerrainAdjustment; net/minecraft/world/level/levelgen/structure/TerrainAdjustment/valueOf (Ljava/lang/String;)Lnet/minecraft/world/level/levelgen/structure/TerrainAdjustment; +MD: net/minecraft/world/level/levelgen/structure/TerrainAdjustment/values ()[Lnet/minecraft/world/level/levelgen/structure/TerrainAdjustment; net/minecraft/world/level/levelgen/structure/TerrainAdjustment/values ()[Lnet/minecraft/world/level/levelgen/structure/TerrainAdjustment; +MD: net/minecraft/world/level/levelgen/structure/pieces/PieceGenerator/m_197325_ (Lnet/minecraft/world/level/levelgen/structure/pieces/StructurePiecesBuilder;Lnet/minecraft/world/level/levelgen/structure/pieces/PieceGenerator$Context;)V net/minecraft/world/level/levelgen/structure/pieces/PieceGenerator/generatePieces (Lnet/minecraft/world/level/levelgen/structure/pieces/StructurePiecesBuilder;Lnet/minecraft/world/level/levelgen/structure/pieces/PieceGenerator$Context;)V +MD: net/minecraft/world/level/levelgen/structure/pieces/PieceGenerator$Context/ (Lnet/minecraft/world/level/levelgen/feature/configurations/FeatureConfiguration;Lnet/minecraft/world/level/chunk/ChunkGenerator;Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager;Lnet/minecraft/world/level/ChunkPos;Lnet/minecraft/world/level/LevelHeightAccessor;Lnet/minecraft/world/level/levelgen/WorldgenRandom;J)V net/minecraft/world/level/levelgen/structure/pieces/PieceGenerator$Context/ (Lnet/minecraft/world/level/levelgen/feature/configurations/FeatureConfiguration;Lnet/minecraft/world/level/chunk/ChunkGenerator;Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager;Lnet/minecraft/world/level/ChunkPos;Lnet/minecraft/world/level/LevelHeightAccessor;Lnet/minecraft/world/level/levelgen/WorldgenRandom;J)V +MD: net/minecraft/world/level/levelgen/structure/pieces/PieceGenerator$Context/equals (Ljava/lang/Object;)Z net/minecraft/world/level/levelgen/structure/pieces/PieceGenerator$Context/equals (Ljava/lang/Object;)Z +MD: net/minecraft/world/level/levelgen/structure/pieces/PieceGenerator$Context/f_192703_ ()Lnet/minecraft/world/level/chunk/ChunkGenerator; net/minecraft/world/level/levelgen/structure/pieces/PieceGenerator$Context/chunkGenerator ()Lnet/minecraft/world/level/chunk/ChunkGenerator; +MD: net/minecraft/world/level/levelgen/structure/pieces/PieceGenerator$Context/f_192705_ ()Lnet/minecraft/world/level/ChunkPos; net/minecraft/world/level/levelgen/structure/pieces/PieceGenerator$Context/chunkPos ()Lnet/minecraft/world/level/ChunkPos; +MD: net/minecraft/world/level/levelgen/structure/pieces/PieceGenerator$Context/f_192707_ ()Lnet/minecraft/world/level/LevelHeightAccessor; net/minecraft/world/level/levelgen/structure/pieces/PieceGenerator$Context/heightAccessor ()Lnet/minecraft/world/level/LevelHeightAccessor; +MD: net/minecraft/world/level/levelgen/structure/pieces/PieceGenerator$Context/f_192708_ ()Lnet/minecraft/world/level/levelgen/WorldgenRandom; net/minecraft/world/level/levelgen/structure/pieces/PieceGenerator$Context/random ()Lnet/minecraft/world/level/levelgen/WorldgenRandom; +MD: net/minecraft/world/level/levelgen/structure/pieces/PieceGenerator$Context/f_192709_ ()J net/minecraft/world/level/levelgen/structure/pieces/PieceGenerator$Context/seed ()J +MD: net/minecraft/world/level/levelgen/structure/pieces/PieceGenerator$Context/f_197328_ ()Lnet/minecraft/world/level/levelgen/feature/configurations/FeatureConfiguration; net/minecraft/world/level/levelgen/structure/pieces/PieceGenerator$Context/config ()Lnet/minecraft/world/level/levelgen/feature/configurations/FeatureConfiguration; +MD: net/minecraft/world/level/levelgen/structure/pieces/PieceGenerator$Context/f_226931_ ()Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager; net/minecraft/world/level/levelgen/structure/pieces/PieceGenerator$Context/structureTemplateManager ()Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager; +MD: net/minecraft/world/level/levelgen/structure/pieces/PieceGenerator$Context/hashCode ()I net/minecraft/world/level/levelgen/structure/pieces/PieceGenerator$Context/hashCode ()I +MD: net/minecraft/world/level/levelgen/structure/pieces/PieceGenerator$Context/toString ()Ljava/lang/String; net/minecraft/world/level/levelgen/structure/pieces/PieceGenerator$Context/toString ()Ljava/lang/String; +MD: net/minecraft/world/level/levelgen/structure/pieces/PieceGeneratorSupplier/m_197338_ (Lnet/minecraft/world/level/levelgen/Heightmap$Types;Lnet/minecraft/world/level/levelgen/structure/pieces/PieceGeneratorSupplier$Context;)Z net/minecraft/world/level/levelgen/structure/pieces/PieceGeneratorSupplier/lambda$checkForBiomeOnTop$1 (Lnet/minecraft/world/level/levelgen/Heightmap$Types;Lnet/minecraft/world/level/levelgen/structure/pieces/PieceGeneratorSupplier$Context;)Z +MD: net/minecraft/world/level/levelgen/structure/pieces/PieceGeneratorSupplier/m_197341_ (Ljava/util/function/Predicate;Ljava/util/Optional;Lnet/minecraft/world/level/levelgen/structure/pieces/PieceGeneratorSupplier$Context;)Ljava/util/Optional; net/minecraft/world/level/levelgen/structure/pieces/PieceGeneratorSupplier/lambda$simple$0 (Ljava/util/function/Predicate;Ljava/util/Optional;Lnet/minecraft/world/level/levelgen/structure/pieces/PieceGeneratorSupplier$Context;)Ljava/util/Optional; +MD: net/minecraft/world/level/levelgen/structure/pieces/PieceGeneratorSupplier/m_197345_ (Lnet/minecraft/world/level/levelgen/Heightmap$Types;)Ljava/util/function/Predicate; net/minecraft/world/level/levelgen/structure/pieces/PieceGeneratorSupplier/checkForBiomeOnTop (Lnet/minecraft/world/level/levelgen/Heightmap$Types;)Ljava/util/function/Predicate; +MD: net/minecraft/world/level/levelgen/structure/pieces/PieceGeneratorSupplier/m_197347_ (Lnet/minecraft/world/level/levelgen/structure/pieces/PieceGeneratorSupplier$Context;)Ljava/util/Optional; net/minecraft/world/level/levelgen/structure/pieces/PieceGeneratorSupplier/createGenerator (Lnet/minecraft/world/level/levelgen/structure/pieces/PieceGeneratorSupplier$Context;)Ljava/util/Optional; +MD: net/minecraft/world/level/levelgen/structure/pieces/PieceGeneratorSupplier/m_197349_ (Ljava/util/function/Predicate;Lnet/minecraft/world/level/levelgen/structure/pieces/PieceGenerator;)Lnet/minecraft/world/level/levelgen/structure/pieces/PieceGeneratorSupplier; net/minecraft/world/level/levelgen/structure/pieces/PieceGeneratorSupplier/simple (Ljava/util/function/Predicate;Lnet/minecraft/world/level/levelgen/structure/pieces/PieceGenerator;)Lnet/minecraft/world/level/levelgen/structure/pieces/PieceGeneratorSupplier; +MD: net/minecraft/world/level/levelgen/structure/pieces/PieceGeneratorSupplier$Context/ (Lnet/minecraft/world/level/chunk/ChunkGenerator;Lnet/minecraft/world/level/biome/BiomeSource;Lnet/minecraft/world/level/levelgen/RandomState;JLnet/minecraft/world/level/ChunkPos;Lnet/minecraft/world/level/levelgen/feature/configurations/FeatureConfiguration;Lnet/minecraft/world/level/LevelHeightAccessor;Ljava/util/function/Predicate;Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager;Lnet/minecraft/core/RegistryAccess;)V net/minecraft/world/level/levelgen/structure/pieces/PieceGeneratorSupplier$Context/ (Lnet/minecraft/world/level/chunk/ChunkGenerator;Lnet/minecraft/world/level/biome/BiomeSource;Lnet/minecraft/world/level/levelgen/RandomState;JLnet/minecraft/world/level/ChunkPos;Lnet/minecraft/world/level/levelgen/feature/configurations/FeatureConfiguration;Lnet/minecraft/world/level/LevelHeightAccessor;Ljava/util/function/Predicate;Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager;Lnet/minecraft/core/RegistryAccess;)V +MD: net/minecraft/world/level/levelgen/structure/pieces/PieceGeneratorSupplier$Context/equals (Ljava/lang/Object;)Z net/minecraft/world/level/levelgen/structure/pieces/PieceGeneratorSupplier$Context/equals (Ljava/lang/Object;)Z +MD: net/minecraft/world/level/levelgen/structure/pieces/PieceGeneratorSupplier$Context/f_197352_ ()Lnet/minecraft/world/level/chunk/ChunkGenerator; net/minecraft/world/level/levelgen/structure/pieces/PieceGeneratorSupplier$Context/chunkGenerator ()Lnet/minecraft/world/level/chunk/ChunkGenerator; +MD: net/minecraft/world/level/levelgen/structure/pieces/PieceGeneratorSupplier$Context/f_197353_ ()Lnet/minecraft/world/level/biome/BiomeSource; net/minecraft/world/level/levelgen/structure/pieces/PieceGeneratorSupplier$Context/biomeSource ()Lnet/minecraft/world/level/biome/BiomeSource; +MD: net/minecraft/world/level/levelgen/structure/pieces/PieceGeneratorSupplier$Context/f_197354_ ()J net/minecraft/world/level/levelgen/structure/pieces/PieceGeneratorSupplier$Context/seed ()J +MD: net/minecraft/world/level/levelgen/structure/pieces/PieceGeneratorSupplier$Context/f_197355_ ()Lnet/minecraft/world/level/ChunkPos; net/minecraft/world/level/levelgen/structure/pieces/PieceGeneratorSupplier$Context/chunkPos ()Lnet/minecraft/world/level/ChunkPos; +MD: net/minecraft/world/level/levelgen/structure/pieces/PieceGeneratorSupplier$Context/f_197356_ ()Lnet/minecraft/world/level/levelgen/feature/configurations/FeatureConfiguration; net/minecraft/world/level/levelgen/structure/pieces/PieceGeneratorSupplier$Context/config ()Lnet/minecraft/world/level/levelgen/feature/configurations/FeatureConfiguration; +MD: net/minecraft/world/level/levelgen/structure/pieces/PieceGeneratorSupplier$Context/f_197357_ ()Lnet/minecraft/world/level/LevelHeightAccessor; net/minecraft/world/level/levelgen/structure/pieces/PieceGeneratorSupplier$Context/heightAccessor ()Lnet/minecraft/world/level/LevelHeightAccessor; +MD: net/minecraft/world/level/levelgen/structure/pieces/PieceGeneratorSupplier$Context/f_197358_ ()Ljava/util/function/Predicate; net/minecraft/world/level/levelgen/structure/pieces/PieceGeneratorSupplier$Context/validBiome ()Ljava/util/function/Predicate; +MD: net/minecraft/world/level/levelgen/structure/pieces/PieceGeneratorSupplier$Context/f_197360_ ()Lnet/minecraft/core/RegistryAccess; net/minecraft/world/level/levelgen/structure/pieces/PieceGeneratorSupplier$Context/registryAccess ()Lnet/minecraft/core/RegistryAccess; +MD: net/minecraft/world/level/levelgen/structure/pieces/PieceGeneratorSupplier$Context/f_226941_ ()Lnet/minecraft/world/level/levelgen/RandomState; net/minecraft/world/level/levelgen/structure/pieces/PieceGeneratorSupplier$Context/randomState ()Lnet/minecraft/world/level/levelgen/RandomState; +MD: net/minecraft/world/level/levelgen/structure/pieces/PieceGeneratorSupplier$Context/f_226942_ ()Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager; net/minecraft/world/level/levelgen/structure/pieces/PieceGeneratorSupplier$Context/structureTemplateManager ()Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager; +MD: net/minecraft/world/level/levelgen/structure/pieces/PieceGeneratorSupplier$Context/hashCode ()I net/minecraft/world/level/levelgen/structure/pieces/PieceGeneratorSupplier$Context/hashCode ()I +MD: net/minecraft/world/level/levelgen/structure/pieces/PieceGeneratorSupplier$Context/m_197380_ (Lnet/minecraft/world/level/levelgen/Heightmap$Types;)Z net/minecraft/world/level/levelgen/structure/pieces/PieceGeneratorSupplier$Context/validBiomeOnTop (Lnet/minecraft/world/level/levelgen/Heightmap$Types;)Z +MD: net/minecraft/world/level/levelgen/structure/pieces/PieceGeneratorSupplier$Context/toString ()Ljava/lang/String; net/minecraft/world/level/levelgen/structure/pieces/PieceGeneratorSupplier$Context/toString ()Ljava/lang/String; +MD: net/minecraft/world/level/levelgen/structure/pieces/PiecesContainer/ ()V net/minecraft/world/level/levelgen/structure/pieces/PiecesContainer/ ()V +MD: net/minecraft/world/level/levelgen/structure/pieces/PiecesContainer/ (Ljava/util/List;)V net/minecraft/world/level/levelgen/structure/pieces/PiecesContainer/ (Ljava/util/List;)V +MD: net/minecraft/world/level/levelgen/structure/pieces/PiecesContainer/equals (Ljava/lang/Object;)Z net/minecraft/world/level/levelgen/structure/pieces/PiecesContainer/equals (Ljava/lang/Object;)Z +MD: net/minecraft/world/level/levelgen/structure/pieces/PiecesContainer/f_192741_ ()Ljava/util/List; net/minecraft/world/level/levelgen/structure/pieces/PiecesContainer/pieces ()Ljava/util/List; +MD: net/minecraft/world/level/levelgen/structure/pieces/PiecesContainer/hashCode ()I net/minecraft/world/level/levelgen/structure/pieces/PiecesContainer/hashCode ()I +MD: net/minecraft/world/level/levelgen/structure/pieces/PiecesContainer/m_192748_ ()Z net/minecraft/world/level/levelgen/structure/pieces/PiecesContainer/isEmpty ()Z +MD: net/minecraft/world/level/levelgen/structure/pieces/PiecesContainer/m_192749_ (Lnet/minecraft/world/level/levelgen/structure/pieces/StructurePieceSerializationContext;)Lnet/minecraft/nbt/Tag; net/minecraft/world/level/levelgen/structure/pieces/PiecesContainer/save (Lnet/minecraft/world/level/levelgen/structure/pieces/StructurePieceSerializationContext;)Lnet/minecraft/nbt/Tag; +MD: net/minecraft/world/level/levelgen/structure/pieces/PiecesContainer/m_192751_ (Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/level/levelgen/structure/pieces/PiecesContainer/isInsidePiece (Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/level/levelgen/structure/pieces/PiecesContainer/m_192753_ (Lnet/minecraft/nbt/ListTag;Lnet/minecraft/world/level/levelgen/structure/pieces/StructurePieceSerializationContext;)Lnet/minecraft/world/level/levelgen/structure/pieces/PiecesContainer; net/minecraft/world/level/levelgen/structure/pieces/PiecesContainer/load (Lnet/minecraft/nbt/ListTag;Lnet/minecraft/world/level/levelgen/structure/pieces/StructurePieceSerializationContext;)Lnet/minecraft/world/level/levelgen/structure/pieces/PiecesContainer; +MD: net/minecraft/world/level/levelgen/structure/pieces/PiecesContainer/m_192756_ ()Lnet/minecraft/world/level/levelgen/structure/BoundingBox; net/minecraft/world/level/levelgen/structure/pieces/PiecesContainer/calculateBoundingBox ()Lnet/minecraft/world/level/levelgen/structure/BoundingBox; +MD: net/minecraft/world/level/levelgen/structure/pieces/PiecesContainer/toString ()Ljava/lang/String; net/minecraft/world/level/levelgen/structure/pieces/PiecesContainer/toString ()Ljava/lang/String; +MD: net/minecraft/world/level/levelgen/structure/pieces/StructurePieceSerializationContext/ (Lnet/minecraft/server/packs/resources/ResourceManager;Lnet/minecraft/core/RegistryAccess;Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager;)V net/minecraft/world/level/levelgen/structure/pieces/StructurePieceSerializationContext/ (Lnet/minecraft/server/packs/resources/ResourceManager;Lnet/minecraft/core/RegistryAccess;Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager;)V +MD: net/minecraft/world/level/levelgen/structure/pieces/StructurePieceSerializationContext/equals (Ljava/lang/Object;)Z net/minecraft/world/level/levelgen/structure/pieces/StructurePieceSerializationContext/equals (Ljava/lang/Object;)Z +MD: net/minecraft/world/level/levelgen/structure/pieces/StructurePieceSerializationContext/f_192762_ ()Lnet/minecraft/server/packs/resources/ResourceManager; net/minecraft/world/level/levelgen/structure/pieces/StructurePieceSerializationContext/resourceManager ()Lnet/minecraft/server/packs/resources/ResourceManager; +MD: net/minecraft/world/level/levelgen/structure/pieces/StructurePieceSerializationContext/f_192763_ ()Lnet/minecraft/core/RegistryAccess; net/minecraft/world/level/levelgen/structure/pieces/StructurePieceSerializationContext/registryAccess ()Lnet/minecraft/core/RegistryAccess; +MD: net/minecraft/world/level/levelgen/structure/pieces/StructurePieceSerializationContext/f_226956_ ()Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager; net/minecraft/world/level/levelgen/structure/pieces/StructurePieceSerializationContext/structureTemplateManager ()Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager; +MD: net/minecraft/world/level/levelgen/structure/pieces/StructurePieceSerializationContext/hashCode ()I net/minecraft/world/level/levelgen/structure/pieces/StructurePieceSerializationContext/hashCode ()I +MD: net/minecraft/world/level/levelgen/structure/pieces/StructurePieceSerializationContext/m_192770_ (Lnet/minecraft/server/level/ServerLevel;)Lnet/minecraft/world/level/levelgen/structure/pieces/StructurePieceSerializationContext; net/minecraft/world/level/levelgen/structure/pieces/StructurePieceSerializationContext/fromLevel (Lnet/minecraft/server/level/ServerLevel;)Lnet/minecraft/world/level/levelgen/structure/pieces/StructurePieceSerializationContext; +MD: net/minecraft/world/level/levelgen/structure/pieces/StructurePieceSerializationContext/toString ()Ljava/lang/String; net/minecraft/world/level/levelgen/structure/pieces/StructurePieceSerializationContext/toString ()Ljava/lang/String; +MD: net/minecraft/world/level/levelgen/structure/pieces/StructurePieceType/ ()V net/minecraft/world/level/levelgen/structure/pieces/StructurePieceType/ ()V +MD: net/minecraft/world/level/levelgen/structure/pieces/StructurePieceType/m_207333_ (Lnet/minecraft/world/level/levelgen/structure/pieces/StructurePieceSerializationContext;Lnet/minecraft/nbt/CompoundTag;)Lnet/minecraft/world/level/levelgen/structure/StructurePiece; net/minecraft/world/level/levelgen/structure/pieces/StructurePieceType/load (Lnet/minecraft/world/level/levelgen/structure/pieces/StructurePieceSerializationContext;Lnet/minecraft/nbt/CompoundTag;)Lnet/minecraft/world/level/levelgen/structure/StructurePiece; +MD: net/minecraft/world/level/levelgen/structure/pieces/StructurePieceType/m_210152_ (Lnet/minecraft/world/level/levelgen/structure/pieces/StructurePieceType$ContextlessType;Ljava/lang/String;)Lnet/minecraft/world/level/levelgen/structure/pieces/StructurePieceType; net/minecraft/world/level/levelgen/structure/pieces/StructurePieceType/setPieceId (Lnet/minecraft/world/level/levelgen/structure/pieces/StructurePieceType$ContextlessType;Ljava/lang/String;)Lnet/minecraft/world/level/levelgen/structure/pieces/StructurePieceType; +MD: net/minecraft/world/level/levelgen/structure/pieces/StructurePieceType/m_210155_ (Lnet/minecraft/world/level/levelgen/structure/pieces/StructurePieceType$StructureTemplateType;Ljava/lang/String;)Lnet/minecraft/world/level/levelgen/structure/pieces/StructurePieceType; net/minecraft/world/level/levelgen/structure/pieces/StructurePieceType/setTemplatePieceId (Lnet/minecraft/world/level/levelgen/structure/pieces/StructurePieceType$StructureTemplateType;Ljava/lang/String;)Lnet/minecraft/world/level/levelgen/structure/pieces/StructurePieceType; +MD: net/minecraft/world/level/levelgen/structure/pieces/StructurePieceType/m_210158_ (Lnet/minecraft/world/level/levelgen/structure/pieces/StructurePieceType;Ljava/lang/String;)Lnet/minecraft/world/level/levelgen/structure/pieces/StructurePieceType; net/minecraft/world/level/levelgen/structure/pieces/StructurePieceType/setFullContextPieceId (Lnet/minecraft/world/level/levelgen/structure/pieces/StructurePieceType;Ljava/lang/String;)Lnet/minecraft/world/level/levelgen/structure/pieces/StructurePieceType; +MD: net/minecraft/world/level/levelgen/structure/pieces/StructurePieceType$ContextlessType/m_207333_ (Lnet/minecraft/world/level/levelgen/structure/pieces/StructurePieceSerializationContext;Lnet/minecraft/nbt/CompoundTag;)Lnet/minecraft/world/level/levelgen/structure/StructurePiece; net/minecraft/world/level/levelgen/structure/pieces/StructurePieceType$ContextlessType/load (Lnet/minecraft/world/level/levelgen/structure/pieces/StructurePieceSerializationContext;Lnet/minecraft/nbt/CompoundTag;)Lnet/minecraft/world/level/levelgen/structure/StructurePiece; +MD: net/minecraft/world/level/levelgen/structure/pieces/StructurePieceType$ContextlessType/m_210166_ (Lnet/minecraft/nbt/CompoundTag;)Lnet/minecraft/world/level/levelgen/structure/StructurePiece; net/minecraft/world/level/levelgen/structure/pieces/StructurePieceType$ContextlessType/load (Lnet/minecraft/nbt/CompoundTag;)Lnet/minecraft/world/level/levelgen/structure/StructurePiece; +MD: net/minecraft/world/level/levelgen/structure/pieces/StructurePieceType$StructureTemplateType/m_207333_ (Lnet/minecraft/world/level/levelgen/structure/pieces/StructurePieceSerializationContext;Lnet/minecraft/nbt/CompoundTag;)Lnet/minecraft/world/level/levelgen/structure/StructurePiece; net/minecraft/world/level/levelgen/structure/pieces/StructurePieceType$StructureTemplateType/load (Lnet/minecraft/world/level/levelgen/structure/pieces/StructurePieceSerializationContext;Lnet/minecraft/nbt/CompoundTag;)Lnet/minecraft/world/level/levelgen/structure/StructurePiece; +MD: net/minecraft/world/level/levelgen/structure/pieces/StructurePieceType$StructureTemplateType/m_226962_ (Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager;Lnet/minecraft/nbt/CompoundTag;)Lnet/minecraft/world/level/levelgen/structure/StructurePiece; net/minecraft/world/level/levelgen/structure/pieces/StructurePieceType$StructureTemplateType/load (Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager;Lnet/minecraft/nbt/CompoundTag;)Lnet/minecraft/world/level/levelgen/structure/StructurePiece; +MD: net/minecraft/world/level/levelgen/structure/pieces/StructurePiecesBuilder/ ()V net/minecraft/world/level/levelgen/structure/pieces/StructurePiecesBuilder/ ()V +MD: net/minecraft/world/level/levelgen/structure/pieces/StructurePiecesBuilder/m_141921_ (Lnet/minecraft/world/level/levelgen/structure/BoundingBox;)Lnet/minecraft/world/level/levelgen/structure/StructurePiece; net/minecraft/world/level/levelgen/structure/pieces/StructurePiecesBuilder/findCollisionPiece (Lnet/minecraft/world/level/levelgen/structure/BoundingBox;)Lnet/minecraft/world/level/levelgen/structure/StructurePiece; +MD: net/minecraft/world/level/levelgen/structure/pieces/StructurePiecesBuilder/m_142679_ (Lnet/minecraft/world/level/levelgen/structure/StructurePiece;)V net/minecraft/world/level/levelgen/structure/pieces/StructurePiecesBuilder/addPiece (Lnet/minecraft/world/level/levelgen/structure/StructurePiece;)V +MD: net/minecraft/world/level/levelgen/structure/pieces/StructurePiecesBuilder/m_192780_ ()Lnet/minecraft/world/level/levelgen/structure/pieces/PiecesContainer; net/minecraft/world/level/levelgen/structure/pieces/StructurePiecesBuilder/build ()Lnet/minecraft/world/level/levelgen/structure/pieces/PiecesContainer; +MD: net/minecraft/world/level/levelgen/structure/pieces/StructurePiecesBuilder/m_192781_ (I)V net/minecraft/world/level/levelgen/structure/pieces/StructurePiecesBuilder/offsetPiecesVertically (I)V +MD: net/minecraft/world/level/levelgen/structure/pieces/StructurePiecesBuilder/m_192796_ ()V net/minecraft/world/level/levelgen/structure/pieces/StructurePiecesBuilder/clear ()V +MD: net/minecraft/world/level/levelgen/structure/pieces/StructurePiecesBuilder/m_192797_ ()Z net/minecraft/world/level/levelgen/structure/pieces/StructurePiecesBuilder/isEmpty ()Z +MD: net/minecraft/world/level/levelgen/structure/pieces/StructurePiecesBuilder/m_192798_ ()Lnet/minecraft/world/level/levelgen/structure/BoundingBox; net/minecraft/world/level/levelgen/structure/pieces/StructurePiecesBuilder/getBoundingBox ()Lnet/minecraft/world/level/levelgen/structure/BoundingBox; +MD: net/minecraft/world/level/levelgen/structure/pieces/StructurePiecesBuilder/m_226965_ (IILnet/minecraft/util/RandomSource;I)I net/minecraft/world/level/levelgen/structure/pieces/StructurePiecesBuilder/moveBelowSeaLevel (IILnet/minecraft/util/RandomSource;I)I +MD: net/minecraft/world/level/levelgen/structure/pieces/StructurePiecesBuilder/m_226970_ (Lnet/minecraft/util/RandomSource;II)V net/minecraft/world/level/levelgen/structure/pieces/StructurePiecesBuilder/moveInsideHeights (Lnet/minecraft/util/RandomSource;II)V +MD: net/minecraft/world/level/levelgen/structure/placement/ConcentricRingsStructurePlacement/ ()V net/minecraft/world/level/levelgen/structure/placement/ConcentricRingsStructurePlacement/ ()V +MD: net/minecraft/world/level/levelgen/structure/placement/ConcentricRingsStructurePlacement/ (Lnet/minecraft/core/Vec3i;Lnet/minecraft/world/level/levelgen/structure/placement/StructurePlacement$FrequencyReductionMethod;FILjava/util/Optional;IIILnet/minecraft/core/HolderSet;)V net/minecraft/world/level/levelgen/structure/placement/ConcentricRingsStructurePlacement/ (Lnet/minecraft/core/Vec3i;Lnet/minecraft/world/level/levelgen/structure/placement/StructurePlacement$FrequencyReductionMethod;FILjava/util/Optional;IIILnet/minecraft/core/HolderSet;)V +MD: net/minecraft/world/level/levelgen/structure/placement/ConcentricRingsStructurePlacement/ (IIILnet/minecraft/core/HolderSet;)V net/minecraft/world/level/levelgen/structure/placement/ConcentricRingsStructurePlacement/ (IIILnet/minecraft/core/HolderSet;)V +MD: net/minecraft/world/level/levelgen/structure/placement/ConcentricRingsStructurePlacement/m_203443_ ()Lnet/minecraft/world/level/levelgen/structure/placement/StructurePlacementType; net/minecraft/world/level/levelgen/structure/placement/ConcentricRingsStructurePlacement/type ()Lnet/minecraft/world/level/levelgen/structure/placement/StructurePlacementType; +MD: net/minecraft/world/level/levelgen/structure/placement/ConcentricRingsStructurePlacement/m_204959_ (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/world/level/levelgen/structure/placement/ConcentricRingsStructurePlacement/lambda$static$0 (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/world/level/levelgen/structure/placement/ConcentricRingsStructurePlacement/m_204965_ ()I net/minecraft/world/level/levelgen/structure/placement/ConcentricRingsStructurePlacement/distance ()I +MD: net/minecraft/world/level/levelgen/structure/placement/ConcentricRingsStructurePlacement/m_204966_ ()I net/minecraft/world/level/levelgen/structure/placement/ConcentricRingsStructurePlacement/spread ()I +MD: net/minecraft/world/level/levelgen/structure/placement/ConcentricRingsStructurePlacement/m_204967_ ()I net/minecraft/world/level/levelgen/structure/placement/ConcentricRingsStructurePlacement/count ()I +MD: net/minecraft/world/level/levelgen/structure/placement/ConcentricRingsStructurePlacement/m_214090_ (Lnet/minecraft/world/level/chunk/ChunkGeneratorStructureState;II)Z net/minecraft/world/level/levelgen/structure/placement/ConcentricRingsStructurePlacement/isPlacementChunk (Lnet/minecraft/world/level/chunk/ChunkGeneratorStructureState;II)Z +MD: net/minecraft/world/level/levelgen/structure/placement/ConcentricRingsStructurePlacement/m_226996_ (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/Products$P9; net/minecraft/world/level/levelgen/structure/placement/ConcentricRingsStructurePlacement/codec (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/Products$P9; +MD: net/minecraft/world/level/levelgen/structure/placement/ConcentricRingsStructurePlacement/m_226998_ ()Lnet/minecraft/core/HolderSet; net/minecraft/world/level/levelgen/structure/placement/ConcentricRingsStructurePlacement/preferredBiomes ()Lnet/minecraft/core/HolderSet; +MD: net/minecraft/world/level/levelgen/structure/placement/RandomSpreadStructurePlacement/ ()V net/minecraft/world/level/levelgen/structure/placement/RandomSpreadStructurePlacement/ ()V +MD: net/minecraft/world/level/levelgen/structure/placement/RandomSpreadStructurePlacement/ (IILnet/minecraft/world/level/levelgen/structure/placement/RandomSpreadType;I)V net/minecraft/world/level/levelgen/structure/placement/RandomSpreadStructurePlacement/ (IILnet/minecraft/world/level/levelgen/structure/placement/RandomSpreadType;I)V +MD: net/minecraft/world/level/levelgen/structure/placement/RandomSpreadStructurePlacement/ (Lnet/minecraft/core/Vec3i;Lnet/minecraft/world/level/levelgen/structure/placement/StructurePlacement$FrequencyReductionMethod;FILjava/util/Optional;IILnet/minecraft/world/level/levelgen/structure/placement/RandomSpreadType;)V net/minecraft/world/level/levelgen/structure/placement/RandomSpreadStructurePlacement/ (Lnet/minecraft/core/Vec3i;Lnet/minecraft/world/level/levelgen/structure/placement/StructurePlacement$FrequencyReductionMethod;FILjava/util/Optional;IILnet/minecraft/world/level/levelgen/structure/placement/RandomSpreadType;)V +MD: net/minecraft/world/level/levelgen/structure/placement/RandomSpreadStructurePlacement/m_203443_ ()Lnet/minecraft/world/level/levelgen/structure/placement/StructurePlacementType; net/minecraft/world/level/levelgen/structure/placement/RandomSpreadStructurePlacement/type ()Lnet/minecraft/world/level/levelgen/structure/placement/StructurePlacementType; +MD: net/minecraft/world/level/levelgen/structure/placement/RandomSpreadStructurePlacement/m_204995_ (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/world/level/levelgen/structure/placement/RandomSpreadStructurePlacement/lambda$static$0 (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/world/level/levelgen/structure/placement/RandomSpreadStructurePlacement/m_205003_ ()I net/minecraft/world/level/levelgen/structure/placement/RandomSpreadStructurePlacement/spacing ()I +MD: net/minecraft/world/level/levelgen/structure/placement/RandomSpreadStructurePlacement/m_205004_ ()I net/minecraft/world/level/levelgen/structure/placement/RandomSpreadStructurePlacement/separation ()I +MD: net/minecraft/world/level/levelgen/structure/placement/RandomSpreadStructurePlacement/m_205005_ ()Lnet/minecraft/world/level/levelgen/structure/placement/RandomSpreadType; net/minecraft/world/level/levelgen/structure/placement/RandomSpreadStructurePlacement/spreadType ()Lnet/minecraft/world/level/levelgen/structure/placement/RandomSpreadType; +MD: net/minecraft/world/level/levelgen/structure/placement/RandomSpreadStructurePlacement/m_214090_ (Lnet/minecraft/world/level/chunk/ChunkGeneratorStructureState;II)Z net/minecraft/world/level/levelgen/structure/placement/RandomSpreadStructurePlacement/isPlacementChunk (Lnet/minecraft/world/level/chunk/ChunkGeneratorStructureState;II)Z +MD: net/minecraft/world/level/levelgen/structure/placement/RandomSpreadStructurePlacement/m_227008_ (JII)Lnet/minecraft/world/level/ChunkPos; net/minecraft/world/level/levelgen/structure/placement/RandomSpreadStructurePlacement/getPotentialStructureChunk (JII)Lnet/minecraft/world/level/ChunkPos; +MD: net/minecraft/world/level/levelgen/structure/placement/RandomSpreadStructurePlacement/m_274295_ ()Ljava/lang/String; net/minecraft/world/level/levelgen/structure/placement/RandomSpreadStructurePlacement/lambda$validate$1 ()Ljava/lang/String; +MD: net/minecraft/world/level/levelgen/structure/placement/RandomSpreadStructurePlacement/m_285838_ (Lnet/minecraft/world/level/levelgen/structure/placement/RandomSpreadStructurePlacement;)Lcom/mojang/serialization/DataResult; net/minecraft/world/level/levelgen/structure/placement/RandomSpreadStructurePlacement/validate (Lnet/minecraft/world/level/levelgen/structure/placement/RandomSpreadStructurePlacement;)Lcom/mojang/serialization/DataResult; +MD: net/minecraft/world/level/levelgen/structure/placement/RandomSpreadType/ ()V net/minecraft/world/level/levelgen/structure/placement/RandomSpreadType/ ()V +MD: net/minecraft/world/level/levelgen/structure/placement/RandomSpreadType/ (Ljava/lang/String;ILjava/lang/String;)V net/minecraft/world/level/levelgen/structure/placement/RandomSpreadType/ (Ljava/lang/String;ILjava/lang/String;)V +MD: net/minecraft/world/level/levelgen/structure/placement/RandomSpreadType/m_205029_ ()[Lnet/minecraft/world/level/levelgen/structure/placement/RandomSpreadType; net/minecraft/world/level/levelgen/structure/placement/RandomSpreadType/$values ()[Lnet/minecraft/world/level/levelgen/structure/placement/RandomSpreadType; +MD: net/minecraft/world/level/levelgen/structure/placement/RandomSpreadType/m_227018_ (Lnet/minecraft/util/RandomSource;I)I net/minecraft/world/level/levelgen/structure/placement/RandomSpreadType/evaluate (Lnet/minecraft/util/RandomSource;I)I +MD: net/minecraft/world/level/levelgen/structure/placement/RandomSpreadType/m_7912_ ()Ljava/lang/String; net/minecraft/world/level/levelgen/structure/placement/RandomSpreadType/getSerializedName ()Ljava/lang/String; +MD: net/minecraft/world/level/levelgen/structure/placement/RandomSpreadType/valueOf (Ljava/lang/String;)Lnet/minecraft/world/level/levelgen/structure/placement/RandomSpreadType; net/minecraft/world/level/levelgen/structure/placement/RandomSpreadType/valueOf (Ljava/lang/String;)Lnet/minecraft/world/level/levelgen/structure/placement/RandomSpreadType; +MD: net/minecraft/world/level/levelgen/structure/placement/RandomSpreadType/values ()[Lnet/minecraft/world/level/levelgen/structure/placement/RandomSpreadType; net/minecraft/world/level/levelgen/structure/placement/RandomSpreadType/values ()[Lnet/minecraft/world/level/levelgen/structure/placement/RandomSpreadType; +MD: net/minecraft/world/level/levelgen/structure/placement/RandomSpreadType$1/ ()V net/minecraft/world/level/levelgen/structure/placement/RandomSpreadType$1/ ()V +MD: net/minecraft/world/level/levelgen/structure/placement/StructurePlacement/ ()V net/minecraft/world/level/levelgen/structure/placement/StructurePlacement/ ()V +MD: net/minecraft/world/level/levelgen/structure/placement/StructurePlacement/ (Lnet/minecraft/core/Vec3i;Lnet/minecraft/world/level/levelgen/structure/placement/StructurePlacement$FrequencyReductionMethod;FILjava/util/Optional;)V net/minecraft/world/level/levelgen/structure/placement/StructurePlacement/ (Lnet/minecraft/core/Vec3i;Lnet/minecraft/world/level/levelgen/structure/placement/StructurePlacement$FrequencyReductionMethod;FILjava/util/Optional;)V +MD: net/minecraft/world/level/levelgen/structure/placement/StructurePlacement/m_203443_ ()Lnet/minecraft/world/level/levelgen/structure/placement/StructurePlacementType; net/minecraft/world/level/levelgen/structure/placement/StructurePlacement/type ()Lnet/minecraft/world/level/levelgen/structure/placement/StructurePlacementType; +MD: net/minecraft/world/level/levelgen/structure/placement/StructurePlacement/m_214090_ (Lnet/minecraft/world/level/chunk/ChunkGeneratorStructureState;II)Z net/minecraft/world/level/levelgen/structure/placement/StructurePlacement/isPlacementChunk (Lnet/minecraft/world/level/chunk/ChunkGeneratorStructureState;II)Z +MD: net/minecraft/world/level/levelgen/structure/placement/StructurePlacement/m_227033_ (JIIIF)Z net/minecraft/world/level/levelgen/structure/placement/StructurePlacement/probabilityReducer (JIIIF)Z +MD: net/minecraft/world/level/levelgen/structure/placement/StructurePlacement/m_227039_ (Lnet/minecraft/world/level/ChunkPos;)Lnet/minecraft/core/BlockPos; net/minecraft/world/level/levelgen/structure/placement/StructurePlacement/getLocatePos (Lnet/minecraft/world/level/ChunkPos;)Lnet/minecraft/core/BlockPos; +MD: net/minecraft/world/level/levelgen/structure/placement/StructurePlacement/m_227041_ (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/Products$P5; net/minecraft/world/level/levelgen/structure/placement/StructurePlacement/placementCodec (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/Products$P5; +MD: net/minecraft/world/level/levelgen/structure/placement/StructurePlacement/m_227048_ (JIIIF)Z net/minecraft/world/level/levelgen/structure/placement/StructurePlacement/legacyProbabilityReducerWithDouble (JIIIF)Z +MD: net/minecraft/world/level/levelgen/structure/placement/StructurePlacement/m_227060_ (JIIIF)Z net/minecraft/world/level/levelgen/structure/placement/StructurePlacement/legacyArbitrarySaltProbabilityReducer (JIIIF)Z +MD: net/minecraft/world/level/levelgen/structure/placement/StructurePlacement/m_227066_ (JIIIF)Z net/minecraft/world/level/levelgen/structure/placement/StructurePlacement/legacyPillagerOutpostReducer (JIIIF)Z +MD: net/minecraft/world/level/levelgen/structure/placement/StructurePlacement/m_227072_ ()Lnet/minecraft/core/Vec3i; net/minecraft/world/level/levelgen/structure/placement/StructurePlacement/locateOffset ()Lnet/minecraft/core/Vec3i; +MD: net/minecraft/world/level/levelgen/structure/placement/StructurePlacement/m_227073_ ()Lnet/minecraft/world/level/levelgen/structure/placement/StructurePlacement$FrequencyReductionMethod; net/minecraft/world/level/levelgen/structure/placement/StructurePlacement/frequencyReductionMethod ()Lnet/minecraft/world/level/levelgen/structure/placement/StructurePlacement$FrequencyReductionMethod; +MD: net/minecraft/world/level/levelgen/structure/placement/StructurePlacement/m_227074_ ()F net/minecraft/world/level/levelgen/structure/placement/StructurePlacement/frequency ()F +MD: net/minecraft/world/level/levelgen/structure/placement/StructurePlacement/m_227075_ ()I net/minecraft/world/level/levelgen/structure/placement/StructurePlacement/salt ()I +MD: net/minecraft/world/level/levelgen/structure/placement/StructurePlacement/m_227076_ ()Ljava/util/Optional; net/minecraft/world/level/levelgen/structure/placement/StructurePlacement/exclusionZone ()Ljava/util/Optional; +MD: net/minecraft/world/level/levelgen/structure/placement/StructurePlacement/m_255071_ (Lnet/minecraft/world/level/chunk/ChunkGeneratorStructureState;II)Z net/minecraft/world/level/levelgen/structure/placement/StructurePlacement/isStructureChunk (Lnet/minecraft/world/level/chunk/ChunkGeneratorStructureState;II)Z +MD: net/minecraft/world/level/levelgen/structure/placement/StructurePlacement$ExclusionZone/ ()V net/minecraft/world/level/levelgen/structure/placement/StructurePlacement$ExclusionZone/ ()V +MD: net/minecraft/world/level/levelgen/structure/placement/StructurePlacement$ExclusionZone/ (Lnet/minecraft/core/Holder;I)V net/minecraft/world/level/levelgen/structure/placement/StructurePlacement$ExclusionZone/ (Lnet/minecraft/core/Holder;I)V +MD: net/minecraft/world/level/levelgen/structure/placement/StructurePlacement$ExclusionZone/equals (Ljava/lang/Object;)Z net/minecraft/world/level/levelgen/structure/placement/StructurePlacement$ExclusionZone/equals (Ljava/lang/Object;)Z +MD: net/minecraft/world/level/levelgen/structure/placement/StructurePlacement$ExclusionZone/f_227078_ ()Lnet/minecraft/core/Holder; net/minecraft/world/level/levelgen/structure/placement/StructurePlacement$ExclusionZone/otherSet ()Lnet/minecraft/core/Holder; +MD: net/minecraft/world/level/levelgen/structure/placement/StructurePlacement$ExclusionZone/f_227079_ ()I net/minecraft/world/level/levelgen/structure/placement/StructurePlacement$ExclusionZone/chunkCount ()I +MD: net/minecraft/world/level/levelgen/structure/placement/StructurePlacement$ExclusionZone/hashCode ()I net/minecraft/world/level/levelgen/structure/placement/StructurePlacement$ExclusionZone/hashCode ()I +MD: net/minecraft/world/level/levelgen/structure/placement/StructurePlacement$ExclusionZone/m_254908_ (Lnet/minecraft/world/level/chunk/ChunkGeneratorStructureState;II)Z net/minecraft/world/level/levelgen/structure/placement/StructurePlacement$ExclusionZone/isPlacementForbidden (Lnet/minecraft/world/level/chunk/ChunkGeneratorStructureState;II)Z +MD: net/minecraft/world/level/levelgen/structure/placement/StructurePlacement$ExclusionZone/m_257362_ (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/world/level/levelgen/structure/placement/StructurePlacement$ExclusionZone/lambda$static$0 (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/world/level/levelgen/structure/placement/StructurePlacement$ExclusionZone/toString ()Ljava/lang/String; net/minecraft/world/level/levelgen/structure/placement/StructurePlacement$ExclusionZone/toString ()Ljava/lang/String; +MD: net/minecraft/world/level/levelgen/structure/placement/StructurePlacement$FrequencyReducer/m_227098_ (JIIIF)Z net/minecraft/world/level/levelgen/structure/placement/StructurePlacement$FrequencyReducer/shouldGenerate (JIIIF)Z +MD: net/minecraft/world/level/levelgen/structure/placement/StructurePlacement$FrequencyReductionMethod/ ()V net/minecraft/world/level/levelgen/structure/placement/StructurePlacement$FrequencyReductionMethod/ ()V +MD: net/minecraft/world/level/levelgen/structure/placement/StructurePlacement$FrequencyReductionMethod/ (Ljava/lang/String;ILjava/lang/String;Lnet/minecraft/world/level/levelgen/structure/placement/StructurePlacement$FrequencyReducer;)V net/minecraft/world/level/levelgen/structure/placement/StructurePlacement$FrequencyReductionMethod/ (Ljava/lang/String;ILjava/lang/String;Lnet/minecraft/world/level/levelgen/structure/placement/StructurePlacement$FrequencyReducer;)V +MD: net/minecraft/world/level/levelgen/structure/placement/StructurePlacement$FrequencyReductionMethod/m_227118_ ()[Lnet/minecraft/world/level/levelgen/structure/placement/StructurePlacement$FrequencyReductionMethod; net/minecraft/world/level/levelgen/structure/placement/StructurePlacement$FrequencyReductionMethod/$values ()[Lnet/minecraft/world/level/levelgen/structure/placement/StructurePlacement$FrequencyReductionMethod; +MD: net/minecraft/world/level/levelgen/structure/placement/StructurePlacement$FrequencyReductionMethod/m_227119_ (JIIIF)Z net/minecraft/world/level/levelgen/structure/placement/StructurePlacement$FrequencyReductionMethod/shouldGenerate (JIIIF)Z +MD: net/minecraft/world/level/levelgen/structure/placement/StructurePlacement$FrequencyReductionMethod/m_7912_ ()Ljava/lang/String; net/minecraft/world/level/levelgen/structure/placement/StructurePlacement$FrequencyReductionMethod/getSerializedName ()Ljava/lang/String; +MD: net/minecraft/world/level/levelgen/structure/placement/StructurePlacement$FrequencyReductionMethod/valueOf (Ljava/lang/String;)Lnet/minecraft/world/level/levelgen/structure/placement/StructurePlacement$FrequencyReductionMethod; net/minecraft/world/level/levelgen/structure/placement/StructurePlacement$FrequencyReductionMethod/valueOf (Ljava/lang/String;)Lnet/minecraft/world/level/levelgen/structure/placement/StructurePlacement$FrequencyReductionMethod; +MD: net/minecraft/world/level/levelgen/structure/placement/StructurePlacement$FrequencyReductionMethod/values ()[Lnet/minecraft/world/level/levelgen/structure/placement/StructurePlacement$FrequencyReductionMethod; net/minecraft/world/level/levelgen/structure/placement/StructurePlacement$FrequencyReductionMethod/values ()[Lnet/minecraft/world/level/levelgen/structure/placement/StructurePlacement$FrequencyReductionMethod; +MD: net/minecraft/world/level/levelgen/structure/placement/StructurePlacementType/ ()V net/minecraft/world/level/levelgen/structure/placement/StructurePlacementType/ ()V +MD: net/minecraft/world/level/levelgen/structure/placement/StructurePlacementType/m_205044_ (Lcom/mojang/serialization/Codec;)Lcom/mojang/serialization/Codec; net/minecraft/world/level/levelgen/structure/placement/StructurePlacementType/lambda$register$0 (Lcom/mojang/serialization/Codec;)Lcom/mojang/serialization/Codec; +MD: net/minecraft/world/level/levelgen/structure/placement/StructurePlacementType/m_205046_ (Ljava/lang/String;Lcom/mojang/serialization/Codec;)Lnet/minecraft/world/level/levelgen/structure/placement/StructurePlacementType; net/minecraft/world/level/levelgen/structure/placement/StructurePlacementType/register (Ljava/lang/String;Lcom/mojang/serialization/Codec;)Lnet/minecraft/world/level/levelgen/structure/placement/StructurePlacementType; +MD: net/minecraft/world/level/levelgen/structure/placement/StructurePlacementType/m_205049_ ()Lcom/mojang/serialization/Codec; net/minecraft/world/level/levelgen/structure/placement/StructurePlacementType/codec ()Lcom/mojang/serialization/Codec; +MD: net/minecraft/world/level/levelgen/structure/pools/EmptyPoolElement/ ()V net/minecraft/world/level/levelgen/structure/pools/EmptyPoolElement/ ()V +MD: net/minecraft/world/level/levelgen/structure/pools/EmptyPoolElement/ ()V net/minecraft/world/level/levelgen/structure/pools/EmptyPoolElement/ ()V +MD: net/minecraft/world/level/levelgen/structure/pools/EmptyPoolElement/m_207234_ ()Lnet/minecraft/world/level/levelgen/structure/pools/StructurePoolElementType; net/minecraft/world/level/levelgen/structure/pools/EmptyPoolElement/getType ()Lnet/minecraft/world/level/levelgen/structure/pools/StructurePoolElementType; +MD: net/minecraft/world/level/levelgen/structure/pools/EmptyPoolElement/m_210202_ ()Lnet/minecraft/world/level/levelgen/structure/pools/EmptyPoolElement; net/minecraft/world/level/levelgen/structure/pools/EmptyPoolElement/lambda$static$0 ()Lnet/minecraft/world/level/levelgen/structure/pools/EmptyPoolElement; +MD: net/minecraft/world/level/levelgen/structure/pools/EmptyPoolElement/m_213577_ (Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager;Lnet/minecraft/world/level/block/Rotation;)Lnet/minecraft/core/Vec3i; net/minecraft/world/level/levelgen/structure/pools/EmptyPoolElement/getSize (Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager;Lnet/minecraft/world/level/block/Rotation;)Lnet/minecraft/core/Vec3i; +MD: net/minecraft/world/level/levelgen/structure/pools/EmptyPoolElement/m_213638_ (Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/Rotation;Lnet/minecraft/util/RandomSource;)Ljava/util/List; net/minecraft/world/level/levelgen/structure/pools/EmptyPoolElement/getShuffledJigsawBlocks (Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/Rotation;Lnet/minecraft/util/RandomSource;)Ljava/util/List; +MD: net/minecraft/world/level/levelgen/structure/pools/EmptyPoolElement/m_213695_ (Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager;Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/world/level/StructureManager;Lnet/minecraft/world/level/chunk/ChunkGenerator;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/Rotation;Lnet/minecraft/world/level/levelgen/structure/BoundingBox;Lnet/minecraft/util/RandomSource;Z)Z net/minecraft/world/level/levelgen/structure/pools/EmptyPoolElement/place (Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager;Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/world/level/StructureManager;Lnet/minecraft/world/level/chunk/ChunkGenerator;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/Rotation;Lnet/minecraft/world/level/levelgen/structure/BoundingBox;Lnet/minecraft/util/RandomSource;Z)Z +MD: net/minecraft/world/level/levelgen/structure/pools/EmptyPoolElement/m_214015_ (Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/Rotation;)Lnet/minecraft/world/level/levelgen/structure/BoundingBox; net/minecraft/world/level/levelgen/structure/pools/EmptyPoolElement/getBoundingBox (Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/Rotation;)Lnet/minecraft/world/level/levelgen/structure/BoundingBox; +MD: net/minecraft/world/level/levelgen/structure/pools/EmptyPoolElement/toString ()Ljava/lang/String; net/minecraft/world/level/levelgen/structure/pools/EmptyPoolElement/toString ()Ljava/lang/String; +MD: net/minecraft/world/level/levelgen/structure/pools/FeaturePoolElement/ ()V net/minecraft/world/level/levelgen/structure/pools/FeaturePoolElement/ ()V +MD: net/minecraft/world/level/levelgen/structure/pools/FeaturePoolElement/ (Lnet/minecraft/core/Holder;Lnet/minecraft/world/level/levelgen/structure/pools/StructureTemplatePool$Projection;)V net/minecraft/world/level/levelgen/structure/pools/FeaturePoolElement/ (Lnet/minecraft/core/Holder;Lnet/minecraft/world/level/levelgen/structure/pools/StructureTemplatePool$Projection;)V +MD: net/minecraft/world/level/levelgen/structure/pools/FeaturePoolElement/m_207234_ ()Lnet/minecraft/world/level/levelgen/structure/pools/StructurePoolElementType; net/minecraft/world/level/levelgen/structure/pools/FeaturePoolElement/getType ()Lnet/minecraft/world/level/levelgen/structure/pools/StructurePoolElementType; +MD: net/minecraft/world/level/levelgen/structure/pools/FeaturePoolElement/m_210212_ (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/world/level/levelgen/structure/pools/FeaturePoolElement/lambda$static$1 (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/world/level/levelgen/structure/pools/FeaturePoolElement/m_210214_ (Lnet/minecraft/world/level/levelgen/structure/pools/FeaturePoolElement;)Lnet/minecraft/core/Holder; net/minecraft/world/level/levelgen/structure/pools/FeaturePoolElement/lambda$static$0 (Lnet/minecraft/world/level/levelgen/structure/pools/FeaturePoolElement;)Lnet/minecraft/core/Holder; +MD: net/minecraft/world/level/levelgen/structure/pools/FeaturePoolElement/m_210239_ ()Lnet/minecraft/nbt/CompoundTag; net/minecraft/world/level/levelgen/structure/pools/FeaturePoolElement/fillDefaultJigsawNBT ()Lnet/minecraft/nbt/CompoundTag; +MD: net/minecraft/world/level/levelgen/structure/pools/FeaturePoolElement/m_213577_ (Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager;Lnet/minecraft/world/level/block/Rotation;)Lnet/minecraft/core/Vec3i; net/minecraft/world/level/levelgen/structure/pools/FeaturePoolElement/getSize (Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager;Lnet/minecraft/world/level/block/Rotation;)Lnet/minecraft/core/Vec3i; +MD: net/minecraft/world/level/levelgen/structure/pools/FeaturePoolElement/m_213638_ (Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/Rotation;Lnet/minecraft/util/RandomSource;)Ljava/util/List; net/minecraft/world/level/levelgen/structure/pools/FeaturePoolElement/getShuffledJigsawBlocks (Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/Rotation;Lnet/minecraft/util/RandomSource;)Ljava/util/List; +MD: net/minecraft/world/level/levelgen/structure/pools/FeaturePoolElement/m_213695_ (Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager;Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/world/level/StructureManager;Lnet/minecraft/world/level/chunk/ChunkGenerator;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/Rotation;Lnet/minecraft/world/level/levelgen/structure/BoundingBox;Lnet/minecraft/util/RandomSource;Z)Z net/minecraft/world/level/levelgen/structure/pools/FeaturePoolElement/place (Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager;Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/world/level/StructureManager;Lnet/minecraft/world/level/chunk/ChunkGenerator;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/Rotation;Lnet/minecraft/world/level/levelgen/structure/BoundingBox;Lnet/minecraft/util/RandomSource;Z)Z +MD: net/minecraft/world/level/levelgen/structure/pools/FeaturePoolElement/m_214015_ (Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/Rotation;)Lnet/minecraft/world/level/levelgen/structure/BoundingBox; net/minecraft/world/level/levelgen/structure/pools/FeaturePoolElement/getBoundingBox (Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/Rotation;)Lnet/minecraft/world/level/levelgen/structure/BoundingBox; +MD: net/minecraft/world/level/levelgen/structure/pools/FeaturePoolElement/toString ()Ljava/lang/String; net/minecraft/world/level/levelgen/structure/pools/FeaturePoolElement/toString ()Ljava/lang/String; +MD: net/minecraft/world/level/levelgen/structure/pools/JigsawJunction/ (IIIILnet/minecraft/world/level/levelgen/structure/pools/StructureTemplatePool$Projection;)V net/minecraft/world/level/levelgen/structure/pools/JigsawJunction/ (IIIILnet/minecraft/world/level/levelgen/structure/pools/StructureTemplatePool$Projection;)V +MD: net/minecraft/world/level/levelgen/structure/pools/JigsawJunction/equals (Ljava/lang/Object;)Z net/minecraft/world/level/levelgen/structure/pools/JigsawJunction/equals (Ljava/lang/Object;)Z +MD: net/minecraft/world/level/levelgen/structure/pools/JigsawJunction/hashCode ()I net/minecraft/world/level/levelgen/structure/pools/JigsawJunction/hashCode ()I +MD: net/minecraft/world/level/levelgen/structure/pools/JigsawJunction/m_210252_ ()I net/minecraft/world/level/levelgen/structure/pools/JigsawJunction/getSourceX ()I +MD: net/minecraft/world/level/levelgen/structure/pools/JigsawJunction/m_210253_ (Lcom/mojang/serialization/Dynamic;)Lnet/minecraft/world/level/levelgen/structure/pools/JigsawJunction; net/minecraft/world/level/levelgen/structure/pools/JigsawJunction/deserialize (Lcom/mojang/serialization/Dynamic;)Lnet/minecraft/world/level/levelgen/structure/pools/JigsawJunction; +MD: net/minecraft/world/level/levelgen/structure/pools/JigsawJunction/m_210255_ (Lcom/mojang/serialization/DynamicOps;)Lcom/mojang/serialization/Dynamic; net/minecraft/world/level/levelgen/structure/pools/JigsawJunction/serialize (Lcom/mojang/serialization/DynamicOps;)Lcom/mojang/serialization/Dynamic; +MD: net/minecraft/world/level/levelgen/structure/pools/JigsawJunction/m_210257_ ()I net/minecraft/world/level/levelgen/structure/pools/JigsawJunction/getSourceGroundY ()I +MD: net/minecraft/world/level/levelgen/structure/pools/JigsawJunction/m_210258_ ()I net/minecraft/world/level/levelgen/structure/pools/JigsawJunction/getSourceZ ()I +MD: net/minecraft/world/level/levelgen/structure/pools/JigsawJunction/m_210259_ ()I net/minecraft/world/level/levelgen/structure/pools/JigsawJunction/getDeltaY ()I +MD: net/minecraft/world/level/levelgen/structure/pools/JigsawJunction/m_210260_ ()Lnet/minecraft/world/level/levelgen/structure/pools/StructureTemplatePool$Projection; net/minecraft/world/level/levelgen/structure/pools/JigsawJunction/getDestProjection ()Lnet/minecraft/world/level/levelgen/structure/pools/StructureTemplatePool$Projection; +MD: net/minecraft/world/level/levelgen/structure/pools/JigsawJunction/toString ()Ljava/lang/String; net/minecraft/world/level/levelgen/structure/pools/JigsawJunction/toString ()Ljava/lang/String; +MD: net/minecraft/world/level/levelgen/structure/pools/JigsawPlacement/ ()V net/minecraft/world/level/levelgen/structure/pools/JigsawPlacement/ ()V +MD: net/minecraft/world/level/levelgen/structure/pools/JigsawPlacement/ ()V net/minecraft/world/level/levelgen/structure/pools/JigsawPlacement/ ()V +MD: net/minecraft/world/level/levelgen/structure/pools/JigsawPlacement/m_227203_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/Holder;Lnet/minecraft/resources/ResourceLocation;ILnet/minecraft/core/BlockPos;Z)Z net/minecraft/world/level/levelgen/structure/pools/JigsawPlacement/generateJigsaw (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/Holder;Lnet/minecraft/resources/ResourceLocation;ILnet/minecraft/core/BlockPos;Z)Z +MD: net/minecraft/world/level/levelgen/structure/pools/JigsawPlacement/m_227210_ (Lnet/minecraft/world/level/levelgen/RandomState;IZLnet/minecraft/world/level/chunk/ChunkGenerator;Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager;Lnet/minecraft/world/level/LevelHeightAccessor;Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/Registry;Lnet/minecraft/world/level/levelgen/structure/PoolElementStructurePiece;Ljava/util/List;Lnet/minecraft/world/phys/shapes/VoxelShape;)V net/minecraft/world/level/levelgen/structure/pools/JigsawPlacement/addPieces (Lnet/minecraft/world/level/levelgen/RandomState;IZLnet/minecraft/world/level/chunk/ChunkGenerator;Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager;Lnet/minecraft/world/level/LevelHeightAccessor;Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/Registry;Lnet/minecraft/world/level/levelgen/structure/PoolElementStructurePiece;Ljava/util/List;Lnet/minecraft/world/phys/shapes/VoxelShape;)V +MD: net/minecraft/world/level/levelgen/structure/pools/JigsawPlacement/m_227222_ (Lnet/minecraft/world/level/levelgen/structure/PoolElementStructurePiece;IIIIILnet/minecraft/world/level/levelgen/structure/BoundingBox;Lnet/minecraft/world/level/levelgen/structure/Structure$GenerationContext;ZLnet/minecraft/world/level/chunk/ChunkGenerator;Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager;Lnet/minecraft/world/level/LevelHeightAccessor;Lnet/minecraft/world/level/levelgen/WorldgenRandom;Lnet/minecraft/core/Registry;Lnet/minecraft/world/level/levelgen/structure/pieces/StructurePiecesBuilder;)V net/minecraft/world/level/levelgen/structure/pools/JigsawPlacement/lambda$addPieces$1 (Lnet/minecraft/world/level/levelgen/structure/PoolElementStructurePiece;IIIIILnet/minecraft/world/level/levelgen/structure/BoundingBox;Lnet/minecraft/world/level/levelgen/structure/Structure$GenerationContext;ZLnet/minecraft/world/level/chunk/ChunkGenerator;Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager;Lnet/minecraft/world/level/LevelHeightAccessor;Lnet/minecraft/world/level/levelgen/WorldgenRandom;Lnet/minecraft/core/Registry;Lnet/minecraft/world/level/levelgen/structure/pieces/StructurePiecesBuilder;)V +MD: net/minecraft/world/level/levelgen/structure/pools/JigsawPlacement/m_227238_ (Lnet/minecraft/world/level/levelgen/structure/Structure$GenerationContext;Lnet/minecraft/core/Holder;Ljava/util/Optional;ILnet/minecraft/core/BlockPos;ZLjava/util/Optional;I)Ljava/util/Optional; net/minecraft/world/level/levelgen/structure/pools/JigsawPlacement/addPieces (Lnet/minecraft/world/level/levelgen/structure/Structure$GenerationContext;Lnet/minecraft/core/Holder;Ljava/util/Optional;ILnet/minecraft/core/BlockPos;ZLjava/util/Optional;I)Ljava/util/Optional; +MD: net/minecraft/world/level/levelgen/structure/pools/JigsawPlacement/m_227247_ (Lnet/minecraft/world/level/levelgen/structure/pools/StructurePoolElement;Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/Rotation;Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager;Lnet/minecraft/world/level/levelgen/WorldgenRandom;)Ljava/util/Optional; net/minecraft/world/level/levelgen/structure/pools/JigsawPlacement/getRandomNamedJigsaw (Lnet/minecraft/world/level/levelgen/structure/pools/StructurePoolElement;Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/Rotation;Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager;Lnet/minecraft/world/level/levelgen/WorldgenRandom;)Ljava/util/Optional; +MD: net/minecraft/world/level/levelgen/structure/pools/JigsawPlacement/m_227254_ (Lnet/minecraft/core/Holder;)Z net/minecraft/world/level/levelgen/structure/pools/JigsawPlacement/lambda$generateJigsaw$2 (Lnet/minecraft/core/Holder;)Z +MD: net/minecraft/world/level/levelgen/structure/pools/JigsawPlacement/m_245026_ (Lnet/minecraft/resources/ResourceKey;)Ljava/lang/String; net/minecraft/world/level/levelgen/structure/pools/JigsawPlacement/lambda$addPieces$0 (Lnet/minecraft/resources/ResourceKey;)Ljava/lang/String; +MD: net/minecraft/world/level/levelgen/structure/pools/JigsawPlacement$PieceState/ (Lnet/minecraft/world/level/levelgen/structure/PoolElementStructurePiece;Lorg/apache/commons/lang3/mutable/MutableObject;I)V net/minecraft/world/level/levelgen/structure/pools/JigsawPlacement$PieceState/ (Lnet/minecraft/world/level/levelgen/structure/PoolElementStructurePiece;Lorg/apache/commons/lang3/mutable/MutableObject;I)V +MD: net/minecraft/world/level/levelgen/structure/pools/JigsawPlacement$Placer/ (Lnet/minecraft/core/Registry;ILnet/minecraft/world/level/chunk/ChunkGenerator;Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager;Ljava/util/List;Lnet/minecraft/util/RandomSource;)V net/minecraft/world/level/levelgen/structure/pools/JigsawPlacement$Placer/ (Lnet/minecraft/core/Registry;ILnet/minecraft/world/level/chunk/ChunkGenerator;Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager;Ljava/util/List;Lnet/minecraft/util/RandomSource;)V +MD: net/minecraft/world/level/levelgen/structure/pools/JigsawPlacement$Placer/m_227264_ (Lnet/minecraft/world/level/levelgen/structure/PoolElementStructurePiece;Lorg/apache/commons/lang3/mutable/MutableObject;IZLnet/minecraft/world/level/LevelHeightAccessor;Lnet/minecraft/world/level/levelgen/RandomState;)V net/minecraft/world/level/levelgen/structure/pools/JigsawPlacement$Placer/tryPlacingChildren (Lnet/minecraft/world/level/levelgen/structure/PoolElementStructurePiece;Lorg/apache/commons/lang3/mutable/MutableObject;IZLnet/minecraft/world/level/LevelHeightAccessor;Lnet/minecraft/world/level/levelgen/RandomState;)V +MD: net/minecraft/world/level/levelgen/structure/pools/JigsawPlacement$Placer/m_254827_ (Lnet/minecraft/core/Holder;)Ljava/lang/Integer; net/minecraft/world/level/levelgen/structure/pools/JigsawPlacement$Placer/lambda$tryPlacingChildren$2 (Lnet/minecraft/core/Holder;)Ljava/lang/Integer; +MD: net/minecraft/world/level/levelgen/structure/pools/JigsawPlacement$Placer/m_254828_ (Lnet/minecraft/world/level/levelgen/structure/BoundingBox;Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate$StructureBlockInfo;)I net/minecraft/world/level/levelgen/structure/pools/JigsawPlacement$Placer/lambda$tryPlacingChildren$4 (Lnet/minecraft/world/level/levelgen/structure/BoundingBox;Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate$StructureBlockInfo;)I +MD: net/minecraft/world/level/levelgen/structure/pools/JigsawPlacement$Placer/m_254829_ (Lnet/minecraft/resources/ResourceKey;)Ljava/lang/String; net/minecraft/world/level/levelgen/structure/pools/JigsawPlacement$Placer/lambda$tryPlacingChildren$0 (Lnet/minecraft/resources/ResourceKey;)Ljava/lang/String; +MD: net/minecraft/world/level/levelgen/structure/pools/JigsawPlacement$Placer/m_254830_ (Lnet/minecraft/core/Holder;)Lnet/minecraft/core/Holder; net/minecraft/world/level/levelgen/structure/pools/JigsawPlacement$Placer/lambda$tryPlacingChildren$1 (Lnet/minecraft/core/Holder;)Lnet/minecraft/core/Holder; +MD: net/minecraft/world/level/levelgen/structure/pools/JigsawPlacement$Placer/m_254831_ (Lnet/minecraft/core/Holder;)Ljava/lang/Integer; net/minecraft/world/level/levelgen/structure/pools/JigsawPlacement$Placer/lambda$tryPlacingChildren$3 (Lnet/minecraft/core/Holder;)Ljava/lang/Integer; +MD: net/minecraft/world/level/levelgen/structure/pools/JigsawPlacement$Placer/m_254924_ (Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate$StructureBlockInfo;)Lnet/minecraft/resources/ResourceKey; net/minecraft/world/level/levelgen/structure/pools/JigsawPlacement$Placer/readPoolName (Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate$StructureBlockInfo;)Lnet/minecraft/resources/ResourceKey; +MD: net/minecraft/world/level/levelgen/structure/pools/LegacySinglePoolElement/ ()V net/minecraft/world/level/levelgen/structure/pools/LegacySinglePoolElement/ ()V +MD: net/minecraft/world/level/levelgen/structure/pools/LegacySinglePoolElement/ (Lcom/mojang/datafixers/util/Either;Lnet/minecraft/core/Holder;Lnet/minecraft/world/level/levelgen/structure/pools/StructureTemplatePool$Projection;)V net/minecraft/world/level/levelgen/structure/pools/LegacySinglePoolElement/ (Lcom/mojang/datafixers/util/Either;Lnet/minecraft/core/Holder;Lnet/minecraft/world/level/levelgen/structure/pools/StructureTemplatePool$Projection;)V +MD: net/minecraft/world/level/levelgen/structure/pools/LegacySinglePoolElement/m_207169_ (Lnet/minecraft/world/level/block/Rotation;Lnet/minecraft/world/level/levelgen/structure/BoundingBox;Z)Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructurePlaceSettings; net/minecraft/world/level/levelgen/structure/pools/LegacySinglePoolElement/getSettings (Lnet/minecraft/world/level/block/Rotation;Lnet/minecraft/world/level/levelgen/structure/BoundingBox;Z)Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructurePlaceSettings; +MD: net/minecraft/world/level/levelgen/structure/pools/LegacySinglePoolElement/m_207234_ ()Lnet/minecraft/world/level/levelgen/structure/pools/StructurePoolElementType; net/minecraft/world/level/levelgen/structure/pools/LegacySinglePoolElement/getType ()Lnet/minecraft/world/level/levelgen/structure/pools/StructurePoolElementType; +MD: net/minecraft/world/level/levelgen/structure/pools/LegacySinglePoolElement/m_210356_ (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/world/level/levelgen/structure/pools/LegacySinglePoolElement/lambda$static$0 (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/world/level/levelgen/structure/pools/LegacySinglePoolElement/toString ()Ljava/lang/String; net/minecraft/world/level/levelgen/structure/pools/LegacySinglePoolElement/toString ()Ljava/lang/String; +MD: net/minecraft/world/level/levelgen/structure/pools/ListPoolElement/ ()V net/minecraft/world/level/levelgen/structure/pools/ListPoolElement/ ()V +MD: net/minecraft/world/level/levelgen/structure/pools/ListPoolElement/ (Ljava/util/List;Lnet/minecraft/world/level/levelgen/structure/pools/StructureTemplatePool$Projection;)V net/minecraft/world/level/levelgen/structure/pools/ListPoolElement/ (Ljava/util/List;Lnet/minecraft/world/level/levelgen/structure/pools/StructureTemplatePool$Projection;)V +MD: net/minecraft/world/level/levelgen/structure/pools/ListPoolElement/m_207234_ ()Lnet/minecraft/world/level/levelgen/structure/pools/StructurePoolElementType; net/minecraft/world/level/levelgen/structure/pools/ListPoolElement/getType ()Lnet/minecraft/world/level/levelgen/structure/pools/StructurePoolElementType; +MD: net/minecraft/world/level/levelgen/structure/pools/ListPoolElement/m_207247_ (Lnet/minecraft/world/level/levelgen/structure/pools/StructureTemplatePool$Projection;)Lnet/minecraft/world/level/levelgen/structure/pools/StructurePoolElement; net/minecraft/world/level/levelgen/structure/pools/ListPoolElement/setProjection (Lnet/minecraft/world/level/levelgen/structure/pools/StructureTemplatePool$Projection;)Lnet/minecraft/world/level/levelgen/structure/pools/StructurePoolElement; +MD: net/minecraft/world/level/levelgen/structure/pools/ListPoolElement/m_210366_ (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/world/level/levelgen/structure/pools/ListPoolElement/lambda$static$1 (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/world/level/levelgen/structure/pools/ListPoolElement/m_210368_ (Lnet/minecraft/world/level/levelgen/structure/pools/ListPoolElement;)Ljava/util/List; net/minecraft/world/level/levelgen/structure/pools/ListPoolElement/lambda$static$0 (Lnet/minecraft/world/level/levelgen/structure/pools/ListPoolElement;)Ljava/util/List; +MD: net/minecraft/world/level/levelgen/structure/pools/ListPoolElement/m_210370_ (Lnet/minecraft/world/level/levelgen/structure/pools/StructurePoolElement;)Z net/minecraft/world/level/levelgen/structure/pools/ListPoolElement/lambda$getBoundingBox$2 (Lnet/minecraft/world/level/levelgen/structure/pools/StructurePoolElement;)Z +MD: net/minecraft/world/level/levelgen/structure/pools/ListPoolElement/m_210374_ (Lnet/minecraft/world/level/levelgen/structure/pools/StructureTemplatePool$Projection;Lnet/minecraft/world/level/levelgen/structure/pools/StructurePoolElement;)V net/minecraft/world/level/levelgen/structure/pools/ListPoolElement/lambda$setProjectionOnEachElement$5 (Lnet/minecraft/world/level/levelgen/structure/pools/StructureTemplatePool$Projection;Lnet/minecraft/world/level/levelgen/structure/pools/StructurePoolElement;)V +MD: net/minecraft/world/level/levelgen/structure/pools/ListPoolElement/m_210405_ ()Ljava/lang/IllegalStateException; net/minecraft/world/level/levelgen/structure/pools/ListPoolElement/lambda$getBoundingBox$4 ()Ljava/lang/IllegalStateException; +MD: net/minecraft/world/level/levelgen/structure/pools/ListPoolElement/m_210406_ (Lnet/minecraft/world/level/levelgen/structure/pools/StructureTemplatePool$Projection;)V net/minecraft/world/level/levelgen/structure/pools/ListPoolElement/setProjectionOnEachElement (Lnet/minecraft/world/level/levelgen/structure/pools/StructureTemplatePool$Projection;)V +MD: net/minecraft/world/level/levelgen/structure/pools/ListPoolElement/m_213577_ (Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager;Lnet/minecraft/world/level/block/Rotation;)Lnet/minecraft/core/Vec3i; net/minecraft/world/level/levelgen/structure/pools/ListPoolElement/getSize (Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager;Lnet/minecraft/world/level/block/Rotation;)Lnet/minecraft/core/Vec3i; +MD: net/minecraft/world/level/levelgen/structure/pools/ListPoolElement/m_213638_ (Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/Rotation;Lnet/minecraft/util/RandomSource;)Ljava/util/List; net/minecraft/world/level/levelgen/structure/pools/ListPoolElement/getShuffledJigsawBlocks (Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/Rotation;Lnet/minecraft/util/RandomSource;)Ljava/util/List; +MD: net/minecraft/world/level/levelgen/structure/pools/ListPoolElement/m_213695_ (Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager;Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/world/level/StructureManager;Lnet/minecraft/world/level/chunk/ChunkGenerator;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/Rotation;Lnet/minecraft/world/level/levelgen/structure/BoundingBox;Lnet/minecraft/util/RandomSource;Z)Z net/minecraft/world/level/levelgen/structure/pools/ListPoolElement/place (Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager;Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/world/level/StructureManager;Lnet/minecraft/world/level/chunk/ChunkGenerator;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/Rotation;Lnet/minecraft/world/level/levelgen/structure/BoundingBox;Lnet/minecraft/util/RandomSource;Z)Z +MD: net/minecraft/world/level/levelgen/structure/pools/ListPoolElement/m_214015_ (Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/Rotation;)Lnet/minecraft/world/level/levelgen/structure/BoundingBox; net/minecraft/world/level/levelgen/structure/pools/ListPoolElement/getBoundingBox (Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/Rotation;)Lnet/minecraft/world/level/levelgen/structure/BoundingBox; +MD: net/minecraft/world/level/levelgen/structure/pools/ListPoolElement/m_227294_ (Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/Rotation;Lnet/minecraft/world/level/levelgen/structure/pools/StructurePoolElement;)Lnet/minecraft/world/level/levelgen/structure/BoundingBox; net/minecraft/world/level/levelgen/structure/pools/ListPoolElement/lambda$getBoundingBox$3 (Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/Rotation;Lnet/minecraft/world/level/levelgen/structure/pools/StructurePoolElement;)Lnet/minecraft/world/level/levelgen/structure/BoundingBox; +MD: net/minecraft/world/level/levelgen/structure/pools/ListPoolElement/toString ()Ljava/lang/String; net/minecraft/world/level/levelgen/structure/pools/ListPoolElement/toString ()Ljava/lang/String; +MD: net/minecraft/world/level/levelgen/structure/pools/SinglePoolElement/ ()V net/minecraft/world/level/levelgen/structure/pools/SinglePoolElement/ ()V +MD: net/minecraft/world/level/levelgen/structure/pools/SinglePoolElement/ (Lcom/mojang/datafixers/util/Either;Lnet/minecraft/core/Holder;Lnet/minecraft/world/level/levelgen/structure/pools/StructureTemplatePool$Projection;)V net/minecraft/world/level/levelgen/structure/pools/SinglePoolElement/ (Lcom/mojang/datafixers/util/Either;Lnet/minecraft/core/Holder;Lnet/minecraft/world/level/levelgen/structure/pools/StructureTemplatePool$Projection;)V +MD: net/minecraft/world/level/levelgen/structure/pools/SinglePoolElement/m_207169_ (Lnet/minecraft/world/level/block/Rotation;Lnet/minecraft/world/level/levelgen/structure/BoundingBox;Z)Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructurePlaceSettings; net/minecraft/world/level/levelgen/structure/pools/SinglePoolElement/getSettings (Lnet/minecraft/world/level/block/Rotation;Lnet/minecraft/world/level/levelgen/structure/BoundingBox;Z)Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructurePlaceSettings; +MD: net/minecraft/world/level/levelgen/structure/pools/SinglePoolElement/m_207234_ ()Lnet/minecraft/world/level/levelgen/structure/pools/StructurePoolElementType; net/minecraft/world/level/levelgen/structure/pools/SinglePoolElement/getType ()Lnet/minecraft/world/level/levelgen/structure/pools/StructurePoolElementType; +MD: net/minecraft/world/level/levelgen/structure/pools/SinglePoolElement/m_210424_ (Lcom/mojang/datafixers/util/Either;Lcom/mojang/serialization/DynamicOps;Ljava/lang/Object;)Lcom/mojang/serialization/DataResult; net/minecraft/world/level/levelgen/structure/pools/SinglePoolElement/encodeTemplate (Lcom/mojang/datafixers/util/Either;Lcom/mojang/serialization/DynamicOps;Ljava/lang/Object;)Lcom/mojang/serialization/DataResult; +MD: net/minecraft/world/level/levelgen/structure/pools/SinglePoolElement/m_210428_ (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/world/level/levelgen/structure/pools/SinglePoolElement/lambda$static$1 (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/world/level/levelgen/structure/pools/SinglePoolElement/m_210430_ (Lnet/minecraft/world/level/levelgen/structure/pools/SinglePoolElement;)Lcom/mojang/datafixers/util/Either; net/minecraft/world/level/levelgen/structure/pools/SinglePoolElement/lambda$templateCodec$3 (Lnet/minecraft/world/level/levelgen/structure/pools/SinglePoolElement;)Lcom/mojang/datafixers/util/Either; +MD: net/minecraft/world/level/levelgen/structure/pools/SinglePoolElement/m_210462_ ()Lcom/mojang/serialization/codecs/RecordCodecBuilder; net/minecraft/world/level/levelgen/structure/pools/SinglePoolElement/processorsCodec ()Lcom/mojang/serialization/codecs/RecordCodecBuilder; +MD: net/minecraft/world/level/levelgen/structure/pools/SinglePoolElement/m_210463_ (Lnet/minecraft/world/level/levelgen/structure/pools/SinglePoolElement;)Lnet/minecraft/core/Holder; net/minecraft/world/level/levelgen/structure/pools/SinglePoolElement/lambda$processorsCodec$2 (Lnet/minecraft/world/level/levelgen/structure/pools/SinglePoolElement;)Lnet/minecraft/core/Holder; +MD: net/minecraft/world/level/levelgen/structure/pools/SinglePoolElement/m_210465_ ()Lcom/mojang/serialization/codecs/RecordCodecBuilder; net/minecraft/world/level/levelgen/structure/pools/SinglePoolElement/templateCodec ()Lcom/mojang/serialization/codecs/RecordCodecBuilder; +MD: net/minecraft/world/level/levelgen/structure/pools/SinglePoolElement/m_213577_ (Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager;Lnet/minecraft/world/level/block/Rotation;)Lnet/minecraft/core/Vec3i; net/minecraft/world/level/levelgen/structure/pools/SinglePoolElement/getSize (Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager;Lnet/minecraft/world/level/block/Rotation;)Lnet/minecraft/core/Vec3i; +MD: net/minecraft/world/level/levelgen/structure/pools/SinglePoolElement/m_213638_ (Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/Rotation;Lnet/minecraft/util/RandomSource;)Ljava/util/List; net/minecraft/world/level/levelgen/structure/pools/SinglePoolElement/getShuffledJigsawBlocks (Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/Rotation;Lnet/minecraft/util/RandomSource;)Ljava/util/List; +MD: net/minecraft/world/level/levelgen/structure/pools/SinglePoolElement/m_213695_ (Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager;Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/world/level/StructureManager;Lnet/minecraft/world/level/chunk/ChunkGenerator;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/Rotation;Lnet/minecraft/world/level/levelgen/structure/BoundingBox;Lnet/minecraft/util/RandomSource;Z)Z net/minecraft/world/level/levelgen/structure/pools/SinglePoolElement/place (Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager;Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/world/level/StructureManager;Lnet/minecraft/world/level/chunk/ChunkGenerator;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/Rotation;Lnet/minecraft/world/level/levelgen/structure/BoundingBox;Lnet/minecraft/util/RandomSource;Z)Z +MD: net/minecraft/world/level/levelgen/structure/pools/SinglePoolElement/m_214015_ (Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/Rotation;)Lnet/minecraft/world/level/levelgen/structure/BoundingBox; net/minecraft/world/level/levelgen/structure/pools/SinglePoolElement/getBoundingBox (Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/Rotation;)Lnet/minecraft/world/level/levelgen/structure/BoundingBox; +MD: net/minecraft/world/level/levelgen/structure/pools/SinglePoolElement/m_227299_ (Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager;)Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate; net/minecraft/world/level/levelgen/structure/pools/SinglePoolElement/getTemplate (Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager;)Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate; +MD: net/minecraft/world/level/levelgen/structure/pools/SinglePoolElement/m_227324_ (Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/Rotation;Z)Ljava/util/List; net/minecraft/world/level/levelgen/structure/pools/SinglePoolElement/getDataMarkers (Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/Rotation;Z)Ljava/util/List; +MD: net/minecraft/world/level/levelgen/structure/pools/SinglePoolElement/m_274296_ ()Ljava/lang/String; net/minecraft/world/level/levelgen/structure/pools/SinglePoolElement/lambda$encodeTemplate$0 ()Ljava/lang/String; +MD: net/minecraft/world/level/levelgen/structure/pools/SinglePoolElement/toString ()Ljava/lang/String; net/minecraft/world/level/levelgen/structure/pools/SinglePoolElement/toString ()Ljava/lang/String; +MD: net/minecraft/world/level/levelgen/structure/pools/StructurePoolElement/ ()V net/minecraft/world/level/levelgen/structure/pools/StructurePoolElement/ ()V +MD: net/minecraft/world/level/levelgen/structure/pools/StructurePoolElement/ (Lnet/minecraft/world/level/levelgen/structure/pools/StructureTemplatePool$Projection;)V net/minecraft/world/level/levelgen/structure/pools/StructurePoolElement/ (Lnet/minecraft/world/level/levelgen/structure/pools/StructureTemplatePool$Projection;)V +MD: net/minecraft/world/level/levelgen/structure/pools/StructurePoolElement/m_207234_ ()Lnet/minecraft/world/level/levelgen/structure/pools/StructurePoolElementType; net/minecraft/world/level/levelgen/structure/pools/StructurePoolElement/getType ()Lnet/minecraft/world/level/levelgen/structure/pools/StructurePoolElementType; +MD: net/minecraft/world/level/levelgen/structure/pools/StructurePoolElement/m_207247_ (Lnet/minecraft/world/level/levelgen/structure/pools/StructureTemplatePool$Projection;)Lnet/minecraft/world/level/levelgen/structure/pools/StructurePoolElement; net/minecraft/world/level/levelgen/structure/pools/StructurePoolElement/setProjection (Lnet/minecraft/world/level/levelgen/structure/pools/StructureTemplatePool$Projection;)Lnet/minecraft/world/level/levelgen/structure/pools/StructurePoolElement; +MD: net/minecraft/world/level/levelgen/structure/pools/StructurePoolElement/m_210480_ (Lnet/minecraft/world/level/levelgen/structure/pools/StructureTemplatePool$Projection;Ljava/util/function/Function;)Lnet/minecraft/world/level/levelgen/structure/pools/StructurePoolElement; net/minecraft/world/level/levelgen/structure/pools/StructurePoolElement/lambda$list$6 (Lnet/minecraft/world/level/levelgen/structure/pools/StructureTemplatePool$Projection;Ljava/util/function/Function;)Lnet/minecraft/world/level/levelgen/structure/pools/StructurePoolElement; +MD: net/minecraft/world/level/levelgen/structure/pools/StructurePoolElement/m_210502_ (Lnet/minecraft/core/Holder;)Ljava/util/function/Function; net/minecraft/world/level/levelgen/structure/pools/StructurePoolElement/feature (Lnet/minecraft/core/Holder;)Ljava/util/function/Function; +MD: net/minecraft/world/level/levelgen/structure/pools/StructurePoolElement/m_210504_ (Lnet/minecraft/core/Holder;Lnet/minecraft/world/level/levelgen/structure/pools/StructureTemplatePool$Projection;)Lnet/minecraft/world/level/levelgen/structure/pools/FeaturePoolElement; net/minecraft/world/level/levelgen/structure/pools/StructurePoolElement/lambda$feature$5 (Lnet/minecraft/core/Holder;Lnet/minecraft/world/level/levelgen/structure/pools/StructureTemplatePool$Projection;)Lnet/minecraft/world/level/levelgen/structure/pools/FeaturePoolElement; +MD: net/minecraft/world/level/levelgen/structure/pools/StructurePoolElement/m_210507_ (Ljava/lang/String;)Ljava/util/function/Function; net/minecraft/world/level/levelgen/structure/pools/StructurePoolElement/legacy (Ljava/lang/String;)Ljava/util/function/Function; +MD: net/minecraft/world/level/levelgen/structure/pools/StructurePoolElement/m_210512_ (Ljava/lang/String;Lnet/minecraft/core/Holder;)Ljava/util/function/Function; net/minecraft/world/level/levelgen/structure/pools/StructurePoolElement/legacy (Ljava/lang/String;Lnet/minecraft/core/Holder;)Ljava/util/function/Function; +MD: net/minecraft/world/level/levelgen/structure/pools/StructurePoolElement/m_210515_ (Ljava/lang/String;Lnet/minecraft/core/Holder;Lnet/minecraft/world/level/levelgen/structure/pools/StructureTemplatePool$Projection;)Lnet/minecraft/world/level/levelgen/structure/pools/SinglePoolElement; net/minecraft/world/level/levelgen/structure/pools/StructurePoolElement/lambda$single$4 (Ljava/lang/String;Lnet/minecraft/core/Holder;Lnet/minecraft/world/level/levelgen/structure/pools/StructureTemplatePool$Projection;)Lnet/minecraft/world/level/levelgen/structure/pools/SinglePoolElement; +MD: net/minecraft/world/level/levelgen/structure/pools/StructurePoolElement/m_210519_ (Ljava/util/List;)Ljava/util/function/Function; net/minecraft/world/level/levelgen/structure/pools/StructurePoolElement/list (Ljava/util/List;)Ljava/util/function/Function; +MD: net/minecraft/world/level/levelgen/structure/pools/StructurePoolElement/m_210521_ (Ljava/util/List;Lnet/minecraft/world/level/levelgen/structure/pools/StructureTemplatePool$Projection;)Lnet/minecraft/world/level/levelgen/structure/pools/ListPoolElement; net/minecraft/world/level/levelgen/structure/pools/StructurePoolElement/lambda$list$7 (Ljava/util/List;Lnet/minecraft/world/level/levelgen/structure/pools/StructureTemplatePool$Projection;)Lnet/minecraft/world/level/levelgen/structure/pools/ListPoolElement; +MD: net/minecraft/world/level/levelgen/structure/pools/StructurePoolElement/m_210524_ (Lnet/minecraft/world/level/levelgen/structure/pools/StructureTemplatePool$Projection;)Lnet/minecraft/world/level/levelgen/structure/pools/EmptyPoolElement; net/minecraft/world/level/levelgen/structure/pools/StructurePoolElement/lambda$empty$0 (Lnet/minecraft/world/level/levelgen/structure/pools/StructureTemplatePool$Projection;)Lnet/minecraft/world/level/levelgen/structure/pools/EmptyPoolElement; +MD: net/minecraft/world/level/levelgen/structure/pools/StructurePoolElement/m_210526_ (Ljava/lang/String;)Ljava/util/function/Function; net/minecraft/world/level/levelgen/structure/pools/StructurePoolElement/single (Ljava/lang/String;)Ljava/util/function/Function; +MD: net/minecraft/world/level/levelgen/structure/pools/StructurePoolElement/m_210531_ (Ljava/lang/String;Lnet/minecraft/core/Holder;)Ljava/util/function/Function; net/minecraft/world/level/levelgen/structure/pools/StructurePoolElement/single (Ljava/lang/String;Lnet/minecraft/core/Holder;)Ljava/util/function/Function; +MD: net/minecraft/world/level/levelgen/structure/pools/StructurePoolElement/m_210534_ (Ljava/lang/String;Lnet/minecraft/core/Holder;Lnet/minecraft/world/level/levelgen/structure/pools/StructureTemplatePool$Projection;)Lnet/minecraft/world/level/levelgen/structure/pools/LegacySinglePoolElement; net/minecraft/world/level/levelgen/structure/pools/StructurePoolElement/lambda$legacy$2 (Ljava/lang/String;Lnet/minecraft/core/Holder;Lnet/minecraft/world/level/levelgen/structure/pools/StructureTemplatePool$Projection;)Lnet/minecraft/world/level/levelgen/structure/pools/LegacySinglePoolElement; +MD: net/minecraft/world/level/levelgen/structure/pools/StructurePoolElement/m_210538_ ()Lcom/mojang/serialization/codecs/RecordCodecBuilder; net/minecraft/world/level/levelgen/structure/pools/StructurePoolElement/projectionCodec ()Lcom/mojang/serialization/codecs/RecordCodecBuilder; +MD: net/minecraft/world/level/levelgen/structure/pools/StructurePoolElement/m_210539_ ()Lnet/minecraft/world/level/levelgen/structure/pools/StructureTemplatePool$Projection; net/minecraft/world/level/levelgen/structure/pools/StructurePoolElement/getProjection ()Lnet/minecraft/world/level/levelgen/structure/pools/StructureTemplatePool$Projection; +MD: net/minecraft/world/level/levelgen/structure/pools/StructurePoolElement/m_210540_ ()I net/minecraft/world/level/levelgen/structure/pools/StructurePoolElement/getGroundLevelDelta ()I +MD: net/minecraft/world/level/levelgen/structure/pools/StructurePoolElement/m_210541_ ()Ljava/util/function/Function; net/minecraft/world/level/levelgen/structure/pools/StructurePoolElement/empty ()Ljava/util/function/Function; +MD: net/minecraft/world/level/levelgen/structure/pools/StructurePoolElement/m_213577_ (Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager;Lnet/minecraft/world/level/block/Rotation;)Lnet/minecraft/core/Vec3i; net/minecraft/world/level/levelgen/structure/pools/StructurePoolElement/getSize (Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager;Lnet/minecraft/world/level/block/Rotation;)Lnet/minecraft/core/Vec3i; +MD: net/minecraft/world/level/levelgen/structure/pools/StructurePoolElement/m_213638_ (Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/Rotation;Lnet/minecraft/util/RandomSource;)Ljava/util/List; net/minecraft/world/level/levelgen/structure/pools/StructurePoolElement/getShuffledJigsawBlocks (Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/Rotation;Lnet/minecraft/util/RandomSource;)Ljava/util/List; +MD: net/minecraft/world/level/levelgen/structure/pools/StructurePoolElement/m_213695_ (Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager;Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/world/level/StructureManager;Lnet/minecraft/world/level/chunk/ChunkGenerator;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/Rotation;Lnet/minecraft/world/level/levelgen/structure/BoundingBox;Lnet/minecraft/util/RandomSource;Z)Z net/minecraft/world/level/levelgen/structure/pools/StructurePoolElement/place (Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager;Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/world/level/StructureManager;Lnet/minecraft/world/level/chunk/ChunkGenerator;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/Rotation;Lnet/minecraft/world/level/levelgen/structure/BoundingBox;Lnet/minecraft/util/RandomSource;Z)Z +MD: net/minecraft/world/level/levelgen/structure/pools/StructurePoolElement/m_214015_ (Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/Rotation;)Lnet/minecraft/world/level/levelgen/structure/BoundingBox; net/minecraft/world/level/levelgen/structure/pools/StructurePoolElement/getBoundingBox (Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/Rotation;)Lnet/minecraft/world/level/levelgen/structure/BoundingBox; +MD: net/minecraft/world/level/levelgen/structure/pools/StructurePoolElement/m_227329_ (Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate$StructureBlockInfo;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/Rotation;Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/levelgen/structure/BoundingBox;)V net/minecraft/world/level/levelgen/structure/pools/StructurePoolElement/handleDataMarker (Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate$StructureBlockInfo;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/Rotation;Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/levelgen/structure/BoundingBox;)V +MD: net/minecraft/world/level/levelgen/structure/pools/StructurePoolElement/m_254832_ (Ljava/lang/String;Lnet/minecraft/world/level/levelgen/structure/pools/StructureTemplatePool$Projection;)Lnet/minecraft/world/level/levelgen/structure/pools/SinglePoolElement; net/minecraft/world/level/levelgen/structure/pools/StructurePoolElement/lambda$single$3 (Ljava/lang/String;Lnet/minecraft/world/level/levelgen/structure/pools/StructureTemplatePool$Projection;)Lnet/minecraft/world/level/levelgen/structure/pools/SinglePoolElement; +MD: net/minecraft/world/level/levelgen/structure/pools/StructurePoolElement/m_254833_ (Ljava/lang/String;Lnet/minecraft/world/level/levelgen/structure/pools/StructureTemplatePool$Projection;)Lnet/minecraft/world/level/levelgen/structure/pools/LegacySinglePoolElement; net/minecraft/world/level/levelgen/structure/pools/StructurePoolElement/lambda$legacy$1 (Ljava/lang/String;Lnet/minecraft/world/level/levelgen/structure/pools/StructureTemplatePool$Projection;)Lnet/minecraft/world/level/levelgen/structure/pools/LegacySinglePoolElement; +MD: net/minecraft/world/level/levelgen/structure/pools/StructurePoolElementType/ ()V net/minecraft/world/level/levelgen/structure/pools/StructurePoolElementType/ ()V +MD: net/minecraft/world/level/levelgen/structure/pools/StructurePoolElementType/m_210548_ (Lcom/mojang/serialization/Codec;)Lcom/mojang/serialization/Codec; net/minecraft/world/level/levelgen/structure/pools/StructurePoolElementType/lambda$register$0 (Lcom/mojang/serialization/Codec;)Lcom/mojang/serialization/Codec; +MD: net/minecraft/world/level/levelgen/structure/pools/StructurePoolElementType/m_210550_ (Ljava/lang/String;Lcom/mojang/serialization/Codec;)Lnet/minecraft/world/level/levelgen/structure/pools/StructurePoolElementType; net/minecraft/world/level/levelgen/structure/pools/StructurePoolElementType/register (Ljava/lang/String;Lcom/mojang/serialization/Codec;)Lnet/minecraft/world/level/levelgen/structure/pools/StructurePoolElementType; +MD: net/minecraft/world/level/levelgen/structure/pools/StructurePoolElementType/m_210553_ ()Lcom/mojang/serialization/Codec; net/minecraft/world/level/levelgen/structure/pools/StructurePoolElementType/codec ()Lcom/mojang/serialization/Codec; +MD: net/minecraft/world/level/levelgen/structure/pools/StructureTemplatePool/ ()V net/minecraft/world/level/levelgen/structure/pools/StructureTemplatePool/ ()V +MD: net/minecraft/world/level/levelgen/structure/pools/StructureTemplatePool/ (Lnet/minecraft/core/Holder;Ljava/util/List;)V net/minecraft/world/level/levelgen/structure/pools/StructureTemplatePool/ (Lnet/minecraft/core/Holder;Ljava/util/List;)V +MD: net/minecraft/world/level/levelgen/structure/pools/StructureTemplatePool/ (Lnet/minecraft/core/Holder;Ljava/util/List;Lnet/minecraft/world/level/levelgen/structure/pools/StructureTemplatePool$Projection;)V net/minecraft/world/level/levelgen/structure/pools/StructureTemplatePool/ (Lnet/minecraft/core/Holder;Ljava/util/List;Lnet/minecraft/world/level/levelgen/structure/pools/StructureTemplatePool$Projection;)V +MD: net/minecraft/world/level/levelgen/structure/pools/StructureTemplatePool/m_210576_ (Lnet/minecraft/world/level/levelgen/structure/pools/StructurePoolElement;)Z net/minecraft/world/level/levelgen/structure/pools/StructureTemplatePool/lambda$getMaxSize$2 (Lnet/minecraft/world/level/levelgen/structure/pools/StructurePoolElement;)Z +MD: net/minecraft/world/level/levelgen/structure/pools/StructureTemplatePool/m_210578_ (Lnet/minecraft/world/level/levelgen/structure/pools/StructureTemplatePool;)Ljava/util/List; net/minecraft/world/level/levelgen/structure/pools/StructureTemplatePool/lambda$static$0 (Lnet/minecraft/world/level/levelgen/structure/pools/StructureTemplatePool;)Ljava/util/List; +MD: net/minecraft/world/level/levelgen/structure/pools/StructureTemplatePool/m_210590_ ()I net/minecraft/world/level/levelgen/structure/pools/StructureTemplatePool/size ()I +MD: net/minecraft/world/level/levelgen/structure/pools/StructureTemplatePool/m_227355_ (Lnet/minecraft/util/RandomSource;)Lnet/minecraft/world/level/levelgen/structure/pools/StructurePoolElement; net/minecraft/world/level/levelgen/structure/pools/StructureTemplatePool/getRandomTemplate (Lnet/minecraft/util/RandomSource;)Lnet/minecraft/world/level/levelgen/structure/pools/StructurePoolElement; +MD: net/minecraft/world/level/levelgen/structure/pools/StructureTemplatePool/m_227357_ (Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager;)I net/minecraft/world/level/levelgen/structure/pools/StructureTemplatePool/getMaxSize (Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager;)I +MD: net/minecraft/world/level/levelgen/structure/pools/StructureTemplatePool/m_227359_ (Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager;Lnet/minecraft/world/level/levelgen/structure/pools/StructurePoolElement;)I net/minecraft/world/level/levelgen/structure/pools/StructureTemplatePool/lambda$getMaxSize$3 (Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager;Lnet/minecraft/world/level/levelgen/structure/pools/StructurePoolElement;)I +MD: net/minecraft/world/level/levelgen/structure/pools/StructureTemplatePool/m_227362_ (Lnet/minecraft/util/RandomSource;)Ljava/util/List; net/minecraft/world/level/levelgen/structure/pools/StructureTemplatePool/getShuffledTemplates (Lnet/minecraft/util/RandomSource;)Ljava/util/List; +MD: net/minecraft/world/level/levelgen/structure/pools/StructureTemplatePool/m_254834_ (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/world/level/levelgen/structure/pools/StructureTemplatePool/lambda$static$1 (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/world/level/levelgen/structure/pools/StructureTemplatePool/m_254935_ ()Lnet/minecraft/core/Holder; net/minecraft/world/level/levelgen/structure/pools/StructureTemplatePool/getFallback ()Lnet/minecraft/core/Holder; +MD: net/minecraft/world/level/levelgen/structure/pools/StructureTemplatePool$Projection/ ()V net/minecraft/world/level/levelgen/structure/pools/StructureTemplatePool$Projection/ ()V +MD: net/minecraft/world/level/levelgen/structure/pools/StructureTemplatePool$Projection/ (Ljava/lang/String;ILjava/lang/String;Lcom/google/common/collect/ImmutableList;)V net/minecraft/world/level/levelgen/structure/pools/StructureTemplatePool$Projection/ (Ljava/lang/String;ILjava/lang/String;Lcom/google/common/collect/ImmutableList;)V +MD: net/minecraft/world/level/levelgen/structure/pools/StructureTemplatePool$Projection/m_210604_ ()Ljava/lang/String; net/minecraft/world/level/levelgen/structure/pools/StructureTemplatePool$Projection/getName ()Ljava/lang/String; +MD: net/minecraft/world/level/levelgen/structure/pools/StructureTemplatePool$Projection/m_210607_ (Ljava/lang/String;)Lnet/minecraft/world/level/levelgen/structure/pools/StructureTemplatePool$Projection; net/minecraft/world/level/levelgen/structure/pools/StructureTemplatePool$Projection/byName (Ljava/lang/String;)Lnet/minecraft/world/level/levelgen/structure/pools/StructureTemplatePool$Projection; +MD: net/minecraft/world/level/levelgen/structure/pools/StructureTemplatePool$Projection/m_210609_ ()Lcom/google/common/collect/ImmutableList; net/minecraft/world/level/levelgen/structure/pools/StructureTemplatePool$Projection/getProcessors ()Lcom/google/common/collect/ImmutableList; +MD: net/minecraft/world/level/levelgen/structure/pools/StructureTemplatePool$Projection/m_210611_ ()[Lnet/minecraft/world/level/levelgen/structure/pools/StructureTemplatePool$Projection; net/minecraft/world/level/levelgen/structure/pools/StructureTemplatePool$Projection/$values ()[Lnet/minecraft/world/level/levelgen/structure/pools/StructureTemplatePool$Projection; +MD: net/minecraft/world/level/levelgen/structure/pools/StructureTemplatePool$Projection/m_7912_ ()Ljava/lang/String; net/minecraft/world/level/levelgen/structure/pools/StructureTemplatePool$Projection/getSerializedName ()Ljava/lang/String; +MD: net/minecraft/world/level/levelgen/structure/pools/StructureTemplatePool$Projection/valueOf (Ljava/lang/String;)Lnet/minecraft/world/level/levelgen/structure/pools/StructureTemplatePool$Projection; net/minecraft/world/level/levelgen/structure/pools/StructureTemplatePool$Projection/valueOf (Ljava/lang/String;)Lnet/minecraft/world/level/levelgen/structure/pools/StructureTemplatePool$Projection; +MD: net/minecraft/world/level/levelgen/structure/pools/StructureTemplatePool$Projection/values ()[Lnet/minecraft/world/level/levelgen/structure/pools/StructureTemplatePool$Projection; net/minecraft/world/level/levelgen/structure/pools/StructureTemplatePool$Projection/values ()[Lnet/minecraft/world/level/levelgen/structure/pools/StructureTemplatePool$Projection; +MD: net/minecraft/world/level/levelgen/structure/structures/BuriedTreasurePieces/ ()V net/minecraft/world/level/levelgen/structure/structures/BuriedTreasurePieces/ ()V +MD: net/minecraft/world/level/levelgen/structure/structures/BuriedTreasurePieces$BuriedTreasurePiece/ (Lnet/minecraft/core/BlockPos;)V net/minecraft/world/level/levelgen/structure/structures/BuriedTreasurePieces$BuriedTreasurePiece/ (Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/world/level/levelgen/structure/structures/BuriedTreasurePieces$BuriedTreasurePiece/ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/level/levelgen/structure/structures/BuriedTreasurePieces$BuriedTreasurePiece/ (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/level/levelgen/structure/structures/BuriedTreasurePieces$BuriedTreasurePiece/m_183620_ (Lnet/minecraft/world/level/levelgen/structure/pieces/StructurePieceSerializationContext;Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/level/levelgen/structure/structures/BuriedTreasurePieces$BuriedTreasurePiece/addAdditionalSaveData (Lnet/minecraft/world/level/levelgen/structure/pieces/StructurePieceSerializationContext;Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/level/levelgen/structure/structures/BuriedTreasurePieces$BuriedTreasurePiece/m_213694_ (Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/world/level/StructureManager;Lnet/minecraft/world/level/chunk/ChunkGenerator;Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/levelgen/structure/BoundingBox;Lnet/minecraft/world/level/ChunkPos;Lnet/minecraft/core/BlockPos;)V net/minecraft/world/level/levelgen/structure/structures/BuriedTreasurePieces$BuriedTreasurePiece/postProcess (Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/world/level/StructureManager;Lnet/minecraft/world/level/chunk/ChunkGenerator;Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/levelgen/structure/BoundingBox;Lnet/minecraft/world/level/ChunkPos;Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/world/level/levelgen/structure/structures/BuriedTreasurePieces$BuriedTreasurePiece/m_227380_ (Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/world/level/levelgen/structure/structures/BuriedTreasurePieces$BuriedTreasurePiece/isLiquid (Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/world/level/levelgen/structure/structures/BuriedTreasureStructure/ ()V net/minecraft/world/level/levelgen/structure/structures/BuriedTreasureStructure/ ()V +MD: net/minecraft/world/level/levelgen/structure/structures/BuriedTreasureStructure/ (Lnet/minecraft/world/level/levelgen/structure/Structure$StructureSettings;)V net/minecraft/world/level/levelgen/structure/structures/BuriedTreasureStructure/ (Lnet/minecraft/world/level/levelgen/structure/Structure$StructureSettings;)V +MD: net/minecraft/world/level/levelgen/structure/structures/BuriedTreasureStructure/m_213658_ ()Lnet/minecraft/world/level/levelgen/structure/StructureType; net/minecraft/world/level/levelgen/structure/structures/BuriedTreasureStructure/type ()Lnet/minecraft/world/level/levelgen/structure/StructureType; +MD: net/minecraft/world/level/levelgen/structure/structures/BuriedTreasureStructure/m_214086_ (Lnet/minecraft/world/level/levelgen/structure/Structure$GenerationContext;)Ljava/util/Optional; net/minecraft/world/level/levelgen/structure/structures/BuriedTreasureStructure/findGenerationPoint (Lnet/minecraft/world/level/levelgen/structure/Structure$GenerationContext;)Ljava/util/Optional; +MD: net/minecraft/world/level/levelgen/structure/structures/BuriedTreasureStructure/m_227388_ (Lnet/minecraft/world/level/levelgen/structure/Structure$GenerationContext;Lnet/minecraft/world/level/levelgen/structure/pieces/StructurePiecesBuilder;)V net/minecraft/world/level/levelgen/structure/structures/BuriedTreasureStructure/lambda$findGenerationPoint$0 (Lnet/minecraft/world/level/levelgen/structure/Structure$GenerationContext;Lnet/minecraft/world/level/levelgen/structure/pieces/StructurePiecesBuilder;)V +MD: net/minecraft/world/level/levelgen/structure/structures/BuriedTreasureStructure/m_227391_ (Lnet/minecraft/world/level/levelgen/structure/pieces/StructurePiecesBuilder;Lnet/minecraft/world/level/levelgen/structure/Structure$GenerationContext;)V net/minecraft/world/level/levelgen/structure/structures/BuriedTreasureStructure/generatePieces (Lnet/minecraft/world/level/levelgen/structure/pieces/StructurePiecesBuilder;Lnet/minecraft/world/level/levelgen/structure/Structure$GenerationContext;)V +MD: net/minecraft/world/level/levelgen/structure/structures/DesertPyramidPiece/ (Lnet/minecraft/util/RandomSource;II)V net/minecraft/world/level/levelgen/structure/structures/DesertPyramidPiece/ (Lnet/minecraft/util/RandomSource;II)V +MD: net/minecraft/world/level/levelgen/structure/structures/DesertPyramidPiece/ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/level/levelgen/structure/structures/DesertPyramidPiece/ (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/level/levelgen/structure/structures/DesertPyramidPiece/m_183620_ (Lnet/minecraft/world/level/levelgen/structure/pieces/StructurePieceSerializationContext;Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/level/levelgen/structure/structures/DesertPyramidPiece/addAdditionalSaveData (Lnet/minecraft/world/level/levelgen/structure/pieces/StructurePieceSerializationContext;Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/level/levelgen/structure/structures/DesertPyramidPiece/m_213694_ (Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/world/level/StructureManager;Lnet/minecraft/world/level/chunk/ChunkGenerator;Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/levelgen/structure/BoundingBox;Lnet/minecraft/world/level/ChunkPos;Lnet/minecraft/core/BlockPos;)V net/minecraft/world/level/levelgen/structure/structures/DesertPyramidPiece/postProcess (Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/world/level/StructureManager;Lnet/minecraft/world/level/chunk/ChunkGenerator;Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/levelgen/structure/BoundingBox;Lnet/minecraft/world/level/ChunkPos;Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/world/level/levelgen/structure/structures/DesertPyramidPiece/m_271833_ (Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/world/level/levelgen/structure/BoundingBox;IIIII)V net/minecraft/world/level/levelgen/structure/structures/DesertPyramidPiece/placeCollapsedRoof (Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/world/level/levelgen/structure/BoundingBox;IIIII)V +MD: net/minecraft/world/level/levelgen/structure/structures/DesertPyramidPiece/m_271881_ (Lnet/minecraft/world/level/WorldGenLevel;IIILnet/minecraft/world/level/levelgen/structure/BoundingBox;)V net/minecraft/world/level/levelgen/structure/structures/DesertPyramidPiece/placeCollapsedRoofPiece (Lnet/minecraft/world/level/WorldGenLevel;IIILnet/minecraft/world/level/levelgen/structure/BoundingBox;)V +MD: net/minecraft/world/level/levelgen/structure/structures/DesertPyramidPiece/m_271901_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/world/level/levelgen/structure/BoundingBox;)V net/minecraft/world/level/levelgen/structure/structures/DesertPyramidPiece/addCellarStairs (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/world/level/levelgen/structure/BoundingBox;)V +MD: net/minecraft/world/level/levelgen/structure/structures/DesertPyramidPiece/m_271942_ ()Ljava/util/List; net/minecraft/world/level/levelgen/structure/structures/DesertPyramidPiece/getPotentialSuspiciousSandWorldPositions ()Ljava/util/List; +MD: net/minecraft/world/level/levelgen/structure/structures/DesertPyramidPiece/m_272053_ (Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/world/level/levelgen/structure/BoundingBox;)V net/minecraft/world/level/levelgen/structure/structures/DesertPyramidPiece/addCellar (Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/world/level/levelgen/structure/BoundingBox;)V +MD: net/minecraft/world/level/levelgen/structure/structures/DesertPyramidPiece/m_272212_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/world/level/levelgen/structure/BoundingBox;)V net/minecraft/world/level/levelgen/structure/structures/DesertPyramidPiece/addCellarRoom (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/world/level/levelgen/structure/BoundingBox;)V +MD: net/minecraft/world/level/levelgen/structure/structures/DesertPyramidPiece/m_278617_ ()Lnet/minecraft/core/BlockPos; net/minecraft/world/level/levelgen/structure/structures/DesertPyramidPiece/getRandomCollapsedRoofPos ()Lnet/minecraft/core/BlockPos; +MD: net/minecraft/world/level/levelgen/structure/structures/DesertPyramidPiece/m_278669_ (IIIIII)V net/minecraft/world/level/levelgen/structure/structures/DesertPyramidPiece/placeSandBox (IIIIII)V +MD: net/minecraft/world/level/levelgen/structure/structures/DesertPyramidPiece/m_278861_ (III)V net/minecraft/world/level/levelgen/structure/structures/DesertPyramidPiece/placeSand (III)V +MD: net/minecraft/world/level/levelgen/structure/structures/DesertPyramidStructure/ ()V net/minecraft/world/level/levelgen/structure/structures/DesertPyramidStructure/ ()V +MD: net/minecraft/world/level/levelgen/structure/structures/DesertPyramidStructure/ (Lnet/minecraft/world/level/levelgen/structure/Structure$StructureSettings;)V net/minecraft/world/level/levelgen/structure/structures/DesertPyramidStructure/ (Lnet/minecraft/world/level/levelgen/structure/Structure$StructureSettings;)V +MD: net/minecraft/world/level/levelgen/structure/structures/DesertPyramidStructure/m_213658_ ()Lnet/minecraft/world/level/levelgen/structure/StructureType; net/minecraft/world/level/levelgen/structure/structures/DesertPyramidStructure/type ()Lnet/minecraft/world/level/levelgen/structure/StructureType; +MD: net/minecraft/world/level/levelgen/structure/structures/DesertPyramidStructure/m_214110_ (Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/world/level/StructureManager;Lnet/minecraft/world/level/chunk/ChunkGenerator;Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/levelgen/structure/BoundingBox;Lnet/minecraft/world/level/ChunkPos;Lnet/minecraft/world/level/levelgen/structure/pieces/PiecesContainer;)V net/minecraft/world/level/levelgen/structure/structures/DesertPyramidStructure/afterPlace (Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/world/level/StructureManager;Lnet/minecraft/world/level/chunk/ChunkGenerator;Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/levelgen/structure/BoundingBox;Lnet/minecraft/world/level/ChunkPos;Lnet/minecraft/world/level/levelgen/structure/pieces/PiecesContainer;)V +MD: net/minecraft/world/level/levelgen/structure/structures/DesertPyramidStructure/m_276758_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/entity/BrushableBlockEntity;)V net/minecraft/world/level/levelgen/structure/structures/DesertPyramidStructure/lambda$placeSuspiciousSand$0 (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/entity/BrushableBlockEntity;)V +MD: net/minecraft/world/level/levelgen/structure/structures/DesertPyramidStructure/m_278858_ (Lnet/minecraft/world/level/levelgen/structure/BoundingBox;Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/core/BlockPos;)V net/minecraft/world/level/levelgen/structure/structures/DesertPyramidStructure/placeSuspiciousSand (Lnet/minecraft/world/level/levelgen/structure/BoundingBox;Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/world/level/levelgen/structure/structures/EndCityPieces/ ()V net/minecraft/world/level/levelgen/structure/structures/EndCityPieces/ ()V +MD: net/minecraft/world/level/levelgen/structure/structures/EndCityPieces/ ()V net/minecraft/world/level/levelgen/structure/structures/EndCityPieces/ ()V +MD: net/minecraft/world/level/levelgen/structure/structures/EndCityPieces/m_227429_ (Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager;Lnet/minecraft/world/level/levelgen/structure/structures/EndCityPieces$EndCityPiece;Lnet/minecraft/core/BlockPos;Ljava/lang/String;Lnet/minecraft/world/level/block/Rotation;Z)Lnet/minecraft/world/level/levelgen/structure/structures/EndCityPieces$EndCityPiece; net/minecraft/world/level/levelgen/structure/structures/EndCityPieces/addPiece (Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager;Lnet/minecraft/world/level/levelgen/structure/structures/EndCityPieces$EndCityPiece;Lnet/minecraft/core/BlockPos;Ljava/lang/String;Lnet/minecraft/world/level/block/Rotation;Z)Lnet/minecraft/world/level/levelgen/structure/structures/EndCityPieces$EndCityPiece; +MD: net/minecraft/world/level/levelgen/structure/structures/EndCityPieces/m_227436_ (Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager;Lnet/minecraft/world/level/levelgen/structure/structures/EndCityPieces$SectionGenerator;ILnet/minecraft/world/level/levelgen/structure/structures/EndCityPieces$EndCityPiece;Lnet/minecraft/core/BlockPos;Ljava/util/List;Lnet/minecraft/util/RandomSource;)Z net/minecraft/world/level/levelgen/structure/structures/EndCityPieces/recursiveChildren (Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager;Lnet/minecraft/world/level/levelgen/structure/structures/EndCityPieces$SectionGenerator;ILnet/minecraft/world/level/levelgen/structure/structures/EndCityPieces$EndCityPiece;Lnet/minecraft/core/BlockPos;Ljava/util/List;Lnet/minecraft/util/RandomSource;)Z +MD: net/minecraft/world/level/levelgen/structure/structures/EndCityPieces/m_227444_ (Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/Rotation;Ljava/util/List;Lnet/minecraft/util/RandomSource;)V net/minecraft/world/level/levelgen/structure/structures/EndCityPieces/startHouseTower (Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/Rotation;Ljava/util/List;Lnet/minecraft/util/RandomSource;)V +MD: net/minecraft/world/level/levelgen/structure/structures/EndCityPieces/m_227450_ (Ljava/util/List;Lnet/minecraft/world/level/levelgen/structure/structures/EndCityPieces$EndCityPiece;)Lnet/minecraft/world/level/levelgen/structure/structures/EndCityPieces$EndCityPiece; net/minecraft/world/level/levelgen/structure/structures/EndCityPieces/addHelper (Ljava/util/List;Lnet/minecraft/world/level/levelgen/structure/structures/EndCityPieces$EndCityPiece;)Lnet/minecraft/world/level/levelgen/structure/structures/EndCityPieces$EndCityPiece; +MD: net/minecraft/world/level/levelgen/structure/structures/EndCityPieces$1/ ()V net/minecraft/world/level/levelgen/structure/structures/EndCityPieces$1/ ()V +MD: net/minecraft/world/level/levelgen/structure/structures/EndCityPieces$1/m_213717_ ()V net/minecraft/world/level/levelgen/structure/structures/EndCityPieces$1/init ()V +MD: net/minecraft/world/level/levelgen/structure/structures/EndCityPieces$1/m_214120_ (Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager;ILnet/minecraft/world/level/levelgen/structure/structures/EndCityPieces$EndCityPiece;Lnet/minecraft/core/BlockPos;Ljava/util/List;Lnet/minecraft/util/RandomSource;)Z net/minecraft/world/level/levelgen/structure/structures/EndCityPieces$1/generate (Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager;ILnet/minecraft/world/level/levelgen/structure/structures/EndCityPieces$EndCityPiece;Lnet/minecraft/core/BlockPos;Ljava/util/List;Lnet/minecraft/util/RandomSource;)Z +MD: net/minecraft/world/level/levelgen/structure/structures/EndCityPieces$2/ ()V net/minecraft/world/level/levelgen/structure/structures/EndCityPieces$2/ ()V +MD: net/minecraft/world/level/levelgen/structure/structures/EndCityPieces$2/m_213717_ ()V net/minecraft/world/level/levelgen/structure/structures/EndCityPieces$2/init ()V +MD: net/minecraft/world/level/levelgen/structure/structures/EndCityPieces$2/m_214120_ (Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager;ILnet/minecraft/world/level/levelgen/structure/structures/EndCityPieces$EndCityPiece;Lnet/minecraft/core/BlockPos;Ljava/util/List;Lnet/minecraft/util/RandomSource;)Z net/minecraft/world/level/levelgen/structure/structures/EndCityPieces$2/generate (Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager;ILnet/minecraft/world/level/levelgen/structure/structures/EndCityPieces$EndCityPiece;Lnet/minecraft/core/BlockPos;Ljava/util/List;Lnet/minecraft/util/RandomSource;)Z +MD: net/minecraft/world/level/levelgen/structure/structures/EndCityPieces$3/ ()V net/minecraft/world/level/levelgen/structure/structures/EndCityPieces$3/ ()V +MD: net/minecraft/world/level/levelgen/structure/structures/EndCityPieces$3/m_213717_ ()V net/minecraft/world/level/levelgen/structure/structures/EndCityPieces$3/init ()V +MD: net/minecraft/world/level/levelgen/structure/structures/EndCityPieces$3/m_214120_ (Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager;ILnet/minecraft/world/level/levelgen/structure/structures/EndCityPieces$EndCityPiece;Lnet/minecraft/core/BlockPos;Ljava/util/List;Lnet/minecraft/util/RandomSource;)Z net/minecraft/world/level/levelgen/structure/structures/EndCityPieces$3/generate (Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager;ILnet/minecraft/world/level/levelgen/structure/structures/EndCityPieces$EndCityPiece;Lnet/minecraft/core/BlockPos;Ljava/util/List;Lnet/minecraft/util/RandomSource;)Z +MD: net/minecraft/world/level/levelgen/structure/structures/EndCityPieces$4/ ()V net/minecraft/world/level/levelgen/structure/structures/EndCityPieces$4/ ()V +MD: net/minecraft/world/level/levelgen/structure/structures/EndCityPieces$4/m_213717_ ()V net/minecraft/world/level/levelgen/structure/structures/EndCityPieces$4/init ()V +MD: net/minecraft/world/level/levelgen/structure/structures/EndCityPieces$4/m_214120_ (Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager;ILnet/minecraft/world/level/levelgen/structure/structures/EndCityPieces$EndCityPiece;Lnet/minecraft/core/BlockPos;Ljava/util/List;Lnet/minecraft/util/RandomSource;)Z net/minecraft/world/level/levelgen/structure/structures/EndCityPieces$4/generate (Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager;ILnet/minecraft/world/level/levelgen/structure/structures/EndCityPieces$EndCityPiece;Lnet/minecraft/core/BlockPos;Ljava/util/List;Lnet/minecraft/util/RandomSource;)Z +MD: net/minecraft/world/level/levelgen/structure/structures/EndCityPieces$EndCityPiece/ (Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager;Ljava/lang/String;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/Rotation;Z)V net/minecraft/world/level/levelgen/structure/structures/EndCityPieces$EndCityPiece/ (Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager;Ljava/lang/String;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/Rotation;Z)V +MD: net/minecraft/world/level/levelgen/structure/structures/EndCityPieces$EndCityPiece/ (Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager;Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/level/levelgen/structure/structures/EndCityPieces$EndCityPiece/ (Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager;Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/level/levelgen/structure/structures/EndCityPieces$EndCityPiece/m_142415_ ()Lnet/minecraft/resources/ResourceLocation; net/minecraft/world/level/levelgen/structure/structures/EndCityPieces$EndCityPiece/makeTemplateLocation ()Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/world/level/levelgen/structure/structures/EndCityPieces$EndCityPiece/m_183620_ (Lnet/minecraft/world/level/levelgen/structure/pieces/StructurePieceSerializationContext;Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/level/levelgen/structure/structures/EndCityPieces$EndCityPiece/addAdditionalSaveData (Lnet/minecraft/world/level/levelgen/structure/pieces/StructurePieceSerializationContext;Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/level/levelgen/structure/structures/EndCityPieces$EndCityPiece/m_213704_ (Ljava/lang/String;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/ServerLevelAccessor;Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/levelgen/structure/BoundingBox;)V net/minecraft/world/level/levelgen/structure/structures/EndCityPieces$EndCityPiece/handleDataMarker (Ljava/lang/String;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/ServerLevelAccessor;Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/levelgen/structure/BoundingBox;)V +MD: net/minecraft/world/level/levelgen/structure/structures/EndCityPieces$EndCityPiece/m_227502_ (Ljava/lang/String;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/world/level/levelgen/structure/structures/EndCityPieces$EndCityPiece/makeResourceLocation (Ljava/lang/String;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/world/level/levelgen/structure/structures/EndCityPieces$EndCityPiece/m_227510_ (Lnet/minecraft/nbt/CompoundTag;Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructurePlaceSettings; net/minecraft/world/level/levelgen/structure/structures/EndCityPieces$EndCityPiece/lambda$new$0 (Lnet/minecraft/nbt/CompoundTag;Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructurePlaceSettings; +MD: net/minecraft/world/level/levelgen/structure/structures/EndCityPieces$EndCityPiece/m_227513_ (ZLnet/minecraft/world/level/block/Rotation;)Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructurePlaceSettings; net/minecraft/world/level/levelgen/structure/structures/EndCityPieces$EndCityPiece/makeSettings (ZLnet/minecraft/world/level/block/Rotation;)Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructurePlaceSettings; +MD: net/minecraft/world/level/levelgen/structure/structures/EndCityPieces$SectionGenerator/m_213717_ ()V net/minecraft/world/level/levelgen/structure/structures/EndCityPieces$SectionGenerator/init ()V +MD: net/minecraft/world/level/levelgen/structure/structures/EndCityPieces$SectionGenerator/m_214120_ (Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager;ILnet/minecraft/world/level/levelgen/structure/structures/EndCityPieces$EndCityPiece;Lnet/minecraft/core/BlockPos;Ljava/util/List;Lnet/minecraft/util/RandomSource;)Z net/minecraft/world/level/levelgen/structure/structures/EndCityPieces$SectionGenerator/generate (Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager;ILnet/minecraft/world/level/levelgen/structure/structures/EndCityPieces$EndCityPiece;Lnet/minecraft/core/BlockPos;Ljava/util/List;Lnet/minecraft/util/RandomSource;)Z +MD: net/minecraft/world/level/levelgen/structure/structures/EndCityStructure/ ()V net/minecraft/world/level/levelgen/structure/structures/EndCityStructure/ ()V +MD: net/minecraft/world/level/levelgen/structure/structures/EndCityStructure/ (Lnet/minecraft/world/level/levelgen/structure/Structure$StructureSettings;)V net/minecraft/world/level/levelgen/structure/structures/EndCityStructure/ (Lnet/minecraft/world/level/levelgen/structure/Structure$StructureSettings;)V +MD: net/minecraft/world/level/levelgen/structure/structures/EndCityStructure/m_213658_ ()Lnet/minecraft/world/level/levelgen/structure/StructureType; net/minecraft/world/level/levelgen/structure/structures/EndCityStructure/type ()Lnet/minecraft/world/level/levelgen/structure/StructureType; +MD: net/minecraft/world/level/levelgen/structure/structures/EndCityStructure/m_214086_ (Lnet/minecraft/world/level/levelgen/structure/Structure$GenerationContext;)Ljava/util/Optional; net/minecraft/world/level/levelgen/structure/structures/EndCityStructure/findGenerationPoint (Lnet/minecraft/world/level/levelgen/structure/Structure$GenerationContext;)Ljava/util/Optional; +MD: net/minecraft/world/level/levelgen/structure/structures/EndCityStructure/m_227529_ (Lnet/minecraft/world/level/levelgen/structure/pieces/StructurePiecesBuilder;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/Rotation;Lnet/minecraft/world/level/levelgen/structure/Structure$GenerationContext;)V net/minecraft/world/level/levelgen/structure/structures/EndCityStructure/generatePieces (Lnet/minecraft/world/level/levelgen/structure/pieces/StructurePiecesBuilder;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/Rotation;Lnet/minecraft/world/level/levelgen/structure/Structure$GenerationContext;)V +MD: net/minecraft/world/level/levelgen/structure/structures/EndCityStructure/m_227534_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/Rotation;Lnet/minecraft/world/level/levelgen/structure/Structure$GenerationContext;Lnet/minecraft/world/level/levelgen/structure/pieces/StructurePiecesBuilder;)V net/minecraft/world/level/levelgen/structure/structures/EndCityStructure/lambda$findGenerationPoint$0 (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/Rotation;Lnet/minecraft/world/level/levelgen/structure/Structure$GenerationContext;Lnet/minecraft/world/level/levelgen/structure/pieces/StructurePiecesBuilder;)V +MD: net/minecraft/world/level/levelgen/structure/structures/IglooPieces/ ()V net/minecraft/world/level/levelgen/structure/structures/IglooPieces/ ()V +MD: net/minecraft/world/level/levelgen/structure/structures/IglooPieces/ ()V net/minecraft/world/level/levelgen/structure/structures/IglooPieces/ ()V +MD: net/minecraft/world/level/levelgen/structure/structures/IglooPieces/m_227548_ (Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/Rotation;Lnet/minecraft/world/level/levelgen/structure/StructurePieceAccessor;Lnet/minecraft/util/RandomSource;)V net/minecraft/world/level/levelgen/structure/structures/IglooPieces/addPieces (Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/Rotation;Lnet/minecraft/world/level/levelgen/structure/StructurePieceAccessor;Lnet/minecraft/util/RandomSource;)V +MD: net/minecraft/world/level/levelgen/structure/structures/IglooPieces$IglooPiece/ (Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager;Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/level/levelgen/structure/structures/IglooPieces$IglooPiece/ (Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager;Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/level/levelgen/structure/structures/IglooPieces$IglooPiece/ (Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager;Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/Rotation;I)V net/minecraft/world/level/levelgen/structure/structures/IglooPieces$IglooPiece/ (Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager;Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/Rotation;I)V +MD: net/minecraft/world/level/levelgen/structure/structures/IglooPieces$IglooPiece/m_183620_ (Lnet/minecraft/world/level/levelgen/structure/pieces/StructurePieceSerializationContext;Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/level/levelgen/structure/structures/IglooPieces$IglooPiece/addAdditionalSaveData (Lnet/minecraft/world/level/levelgen/structure/pieces/StructurePieceSerializationContext;Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/level/levelgen/structure/structures/IglooPieces$IglooPiece/m_213694_ (Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/world/level/StructureManager;Lnet/minecraft/world/level/chunk/ChunkGenerator;Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/levelgen/structure/BoundingBox;Lnet/minecraft/world/level/ChunkPos;Lnet/minecraft/core/BlockPos;)V net/minecraft/world/level/levelgen/structure/structures/IglooPieces$IglooPiece/postProcess (Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/world/level/StructureManager;Lnet/minecraft/world/level/chunk/ChunkGenerator;Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/levelgen/structure/BoundingBox;Lnet/minecraft/world/level/ChunkPos;Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/world/level/levelgen/structure/structures/IglooPieces$IglooPiece/m_213704_ (Ljava/lang/String;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/ServerLevelAccessor;Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/levelgen/structure/BoundingBox;)V net/minecraft/world/level/levelgen/structure/structures/IglooPieces$IglooPiece/handleDataMarker (Ljava/lang/String;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/ServerLevelAccessor;Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/levelgen/structure/BoundingBox;)V +MD: net/minecraft/world/level/levelgen/structure/structures/IglooPieces$IglooPiece/m_227563_ (Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/core/BlockPos;I)Lnet/minecraft/core/BlockPos; net/minecraft/world/level/levelgen/structure/structures/IglooPieces$IglooPiece/makePosition (Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/core/BlockPos;I)Lnet/minecraft/core/BlockPos; +MD: net/minecraft/world/level/levelgen/structure/structures/IglooPieces$IglooPiece/m_227575_ (Lnet/minecraft/world/level/block/Rotation;Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructurePlaceSettings; net/minecraft/world/level/levelgen/structure/structures/IglooPieces$IglooPiece/makeSettings (Lnet/minecraft/world/level/block/Rotation;Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructurePlaceSettings; +MD: net/minecraft/world/level/levelgen/structure/structures/IglooPieces$IglooPiece/m_227587_ (Lnet/minecraft/nbt/CompoundTag;Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructurePlaceSettings; net/minecraft/world/level/levelgen/structure/structures/IglooPieces$IglooPiece/lambda$new$0 (Lnet/minecraft/nbt/CompoundTag;Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructurePlaceSettings; +MD: net/minecraft/world/level/levelgen/structure/structures/IglooStructure/ ()V net/minecraft/world/level/levelgen/structure/structures/IglooStructure/ ()V +MD: net/minecraft/world/level/levelgen/structure/structures/IglooStructure/ (Lnet/minecraft/world/level/levelgen/structure/Structure$StructureSettings;)V net/minecraft/world/level/levelgen/structure/structures/IglooStructure/ (Lnet/minecraft/world/level/levelgen/structure/Structure$StructureSettings;)V +MD: net/minecraft/world/level/levelgen/structure/structures/IglooStructure/m_213658_ ()Lnet/minecraft/world/level/levelgen/structure/StructureType; net/minecraft/world/level/levelgen/structure/structures/IglooStructure/type ()Lnet/minecraft/world/level/levelgen/structure/StructureType; +MD: net/minecraft/world/level/levelgen/structure/structures/IglooStructure/m_214086_ (Lnet/minecraft/world/level/levelgen/structure/Structure$GenerationContext;)Ljava/util/Optional; net/minecraft/world/level/levelgen/structure/structures/IglooStructure/findGenerationPoint (Lnet/minecraft/world/level/levelgen/structure/Structure$GenerationContext;)Ljava/util/Optional; +MD: net/minecraft/world/level/levelgen/structure/structures/IglooStructure/m_227596_ (Lnet/minecraft/world/level/levelgen/structure/Structure$GenerationContext;Lnet/minecraft/world/level/levelgen/structure/pieces/StructurePiecesBuilder;)V net/minecraft/world/level/levelgen/structure/structures/IglooStructure/lambda$findGenerationPoint$0 (Lnet/minecraft/world/level/levelgen/structure/Structure$GenerationContext;Lnet/minecraft/world/level/levelgen/structure/pieces/StructurePiecesBuilder;)V +MD: net/minecraft/world/level/levelgen/structure/structures/IglooStructure/m_227599_ (Lnet/minecraft/world/level/levelgen/structure/pieces/StructurePiecesBuilder;Lnet/minecraft/world/level/levelgen/structure/Structure$GenerationContext;)V net/minecraft/world/level/levelgen/structure/structures/IglooStructure/generatePieces (Lnet/minecraft/world/level/levelgen/structure/pieces/StructurePiecesBuilder;Lnet/minecraft/world/level/levelgen/structure/Structure$GenerationContext;)V +MD: net/minecraft/world/level/levelgen/structure/structures/JigsawStructure/ ()V net/minecraft/world/level/levelgen/structure/structures/JigsawStructure/ ()V +MD: net/minecraft/world/level/levelgen/structure/structures/JigsawStructure/ (Lnet/minecraft/world/level/levelgen/structure/Structure$StructureSettings;Lnet/minecraft/core/Holder;ILnet/minecraft/world/level/levelgen/heightproviders/HeightProvider;ZLnet/minecraft/world/level/levelgen/Heightmap$Types;)V net/minecraft/world/level/levelgen/structure/structures/JigsawStructure/ (Lnet/minecraft/world/level/levelgen/structure/Structure$StructureSettings;Lnet/minecraft/core/Holder;ILnet/minecraft/world/level/levelgen/heightproviders/HeightProvider;ZLnet/minecraft/world/level/levelgen/Heightmap$Types;)V +MD: net/minecraft/world/level/levelgen/structure/structures/JigsawStructure/ (Lnet/minecraft/world/level/levelgen/structure/Structure$StructureSettings;Lnet/minecraft/core/Holder;ILnet/minecraft/world/level/levelgen/heightproviders/HeightProvider;Z)V net/minecraft/world/level/levelgen/structure/structures/JigsawStructure/ (Lnet/minecraft/world/level/levelgen/structure/Structure$StructureSettings;Lnet/minecraft/core/Holder;ILnet/minecraft/world/level/levelgen/heightproviders/HeightProvider;Z)V +MD: net/minecraft/world/level/levelgen/structure/structures/JigsawStructure/ (Lnet/minecraft/world/level/levelgen/structure/Structure$StructureSettings;Lnet/minecraft/core/Holder;Ljava/util/Optional;ILnet/minecraft/world/level/levelgen/heightproviders/HeightProvider;ZLjava/util/Optional;I)V net/minecraft/world/level/levelgen/structure/structures/JigsawStructure/ (Lnet/minecraft/world/level/levelgen/structure/Structure$StructureSettings;Lnet/minecraft/core/Holder;Ljava/util/Optional;ILnet/minecraft/world/level/levelgen/heightproviders/HeightProvider;ZLjava/util/Optional;I)V +MD: net/minecraft/world/level/levelgen/structure/structures/JigsawStructure/m_213658_ ()Lnet/minecraft/world/level/levelgen/structure/StructureType; net/minecraft/world/level/levelgen/structure/structures/JigsawStructure/type ()Lnet/minecraft/world/level/levelgen/structure/StructureType; +MD: net/minecraft/world/level/levelgen/structure/structures/JigsawStructure/m_214086_ (Lnet/minecraft/world/level/levelgen/structure/Structure$GenerationContext;)Ljava/util/Optional; net/minecraft/world/level/levelgen/structure/structures/JigsawStructure/findGenerationPoint (Lnet/minecraft/world/level/levelgen/structure/Structure$GenerationContext;)Ljava/util/Optional; +MD: net/minecraft/world/level/levelgen/structure/structures/JigsawStructure/m_227639_ (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/world/level/levelgen/structure/structures/JigsawStructure/lambda$static$7 (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/world/level/levelgen/structure/structures/JigsawStructure/m_227641_ (Lnet/minecraft/world/level/levelgen/structure/structures/JigsawStructure;)Ljava/lang/Integer; net/minecraft/world/level/levelgen/structure/structures/JigsawStructure/lambda$static$6 (Lnet/minecraft/world/level/levelgen/structure/structures/JigsawStructure;)Ljava/lang/Integer; +MD: net/minecraft/world/level/levelgen/structure/structures/JigsawStructure/m_227643_ (Lnet/minecraft/world/level/levelgen/structure/structures/JigsawStructure;)Ljava/util/Optional; net/minecraft/world/level/levelgen/structure/structures/JigsawStructure/lambda$static$5 (Lnet/minecraft/world/level/levelgen/structure/structures/JigsawStructure;)Ljava/util/Optional; +MD: net/minecraft/world/level/levelgen/structure/structures/JigsawStructure/m_227645_ (Lnet/minecraft/world/level/levelgen/structure/structures/JigsawStructure;)Ljava/lang/Boolean; net/minecraft/world/level/levelgen/structure/structures/JigsawStructure/lambda$static$4 (Lnet/minecraft/world/level/levelgen/structure/structures/JigsawStructure;)Ljava/lang/Boolean; +MD: net/minecraft/world/level/levelgen/structure/structures/JigsawStructure/m_227648_ (Lnet/minecraft/world/level/levelgen/structure/structures/JigsawStructure;)Lnet/minecraft/world/level/levelgen/heightproviders/HeightProvider; net/minecraft/world/level/levelgen/structure/structures/JigsawStructure/lambda$static$3 (Lnet/minecraft/world/level/levelgen/structure/structures/JigsawStructure;)Lnet/minecraft/world/level/levelgen/heightproviders/HeightProvider; +MD: net/minecraft/world/level/levelgen/structure/structures/JigsawStructure/m_227651_ (Lnet/minecraft/world/level/levelgen/structure/structures/JigsawStructure;)Ljava/lang/Integer; net/minecraft/world/level/levelgen/structure/structures/JigsawStructure/lambda$static$2 (Lnet/minecraft/world/level/levelgen/structure/structures/JigsawStructure;)Ljava/lang/Integer; +MD: net/minecraft/world/level/levelgen/structure/structures/JigsawStructure/m_227653_ (Lnet/minecraft/world/level/levelgen/structure/structures/JigsawStructure;)Ljava/util/Optional; net/minecraft/world/level/levelgen/structure/structures/JigsawStructure/lambda$static$1 (Lnet/minecraft/world/level/levelgen/structure/structures/JigsawStructure;)Ljava/util/Optional; +MD: net/minecraft/world/level/levelgen/structure/structures/JigsawStructure/m_227655_ (Lnet/minecraft/world/level/levelgen/structure/structures/JigsawStructure;)Lnet/minecraft/core/Holder; net/minecraft/world/level/levelgen/structure/structures/JigsawStructure/lambda$static$0 (Lnet/minecraft/world/level/levelgen/structure/structures/JigsawStructure;)Lnet/minecraft/core/Holder; +MD: net/minecraft/world/level/levelgen/structure/structures/JigsawStructure/m_274297_ ()Ljava/lang/String; net/minecraft/world/level/levelgen/structure/structures/JigsawStructure/lambda$verifyRange$8 ()Ljava/lang/String; +MD: net/minecraft/world/level/levelgen/structure/structures/JigsawStructure/m_286028_ (Lnet/minecraft/world/level/levelgen/structure/structures/JigsawStructure;)Lcom/mojang/serialization/DataResult; net/minecraft/world/level/levelgen/structure/structures/JigsawStructure/verifyRange (Lnet/minecraft/world/level/levelgen/structure/structures/JigsawStructure;)Lcom/mojang/serialization/DataResult; +MD: net/minecraft/world/level/levelgen/structure/structures/JigsawStructure$1/ ()V net/minecraft/world/level/levelgen/structure/structures/JigsawStructure$1/ ()V +MD: net/minecraft/world/level/levelgen/structure/structures/JungleTemplePiece/ ()V net/minecraft/world/level/levelgen/structure/structures/JungleTemplePiece/ ()V +MD: net/minecraft/world/level/levelgen/structure/structures/JungleTemplePiece/ (Lnet/minecraft/util/RandomSource;II)V net/minecraft/world/level/levelgen/structure/structures/JungleTemplePiece/ (Lnet/minecraft/util/RandomSource;II)V +MD: net/minecraft/world/level/levelgen/structure/structures/JungleTemplePiece/ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/level/levelgen/structure/structures/JungleTemplePiece/ (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/level/levelgen/structure/structures/JungleTemplePiece/m_183620_ (Lnet/minecraft/world/level/levelgen/structure/pieces/StructurePieceSerializationContext;Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/level/levelgen/structure/structures/JungleTemplePiece/addAdditionalSaveData (Lnet/minecraft/world/level/levelgen/structure/pieces/StructurePieceSerializationContext;Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/level/levelgen/structure/structures/JungleTemplePiece/m_213694_ (Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/world/level/StructureManager;Lnet/minecraft/world/level/chunk/ChunkGenerator;Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/levelgen/structure/BoundingBox;Lnet/minecraft/world/level/ChunkPos;Lnet/minecraft/core/BlockPos;)V net/minecraft/world/level/levelgen/structure/structures/JungleTemplePiece/postProcess (Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/world/level/StructureManager;Lnet/minecraft/world/level/chunk/ChunkGenerator;Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/levelgen/structure/BoundingBox;Lnet/minecraft/world/level/ChunkPos;Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/world/level/levelgen/structure/structures/JungleTemplePiece$MossStoneSelector/ ()V net/minecraft/world/level/levelgen/structure/structures/JungleTemplePiece$MossStoneSelector/ ()V +MD: net/minecraft/world/level/levelgen/structure/structures/JungleTemplePiece$MossStoneSelector/m_213766_ (Lnet/minecraft/util/RandomSource;IIIZ)V net/minecraft/world/level/levelgen/structure/structures/JungleTemplePiece$MossStoneSelector/next (Lnet/minecraft/util/RandomSource;IIIZ)V +MD: net/minecraft/world/level/levelgen/structure/structures/JungleTempleStructure/ ()V net/minecraft/world/level/levelgen/structure/structures/JungleTempleStructure/ ()V +MD: net/minecraft/world/level/levelgen/structure/structures/JungleTempleStructure/ (Lnet/minecraft/world/level/levelgen/structure/Structure$StructureSettings;)V net/minecraft/world/level/levelgen/structure/structures/JungleTempleStructure/ (Lnet/minecraft/world/level/levelgen/structure/Structure$StructureSettings;)V +MD: net/minecraft/world/level/levelgen/structure/structures/JungleTempleStructure/m_213658_ ()Lnet/minecraft/world/level/levelgen/structure/StructureType; net/minecraft/world/level/levelgen/structure/structures/JungleTempleStructure/type ()Lnet/minecraft/world/level/levelgen/structure/StructureType; +MD: net/minecraft/world/level/levelgen/structure/structures/MineshaftPieces/ ()V net/minecraft/world/level/levelgen/structure/structures/MineshaftPieces/ ()V +MD: net/minecraft/world/level/levelgen/structure/structures/MineshaftPieces/ ()V net/minecraft/world/level/levelgen/structure/structures/MineshaftPieces/ ()V +MD: net/minecraft/world/level/levelgen/structure/structures/MineshaftPieces/m_227706_ (Lnet/minecraft/world/level/levelgen/structure/StructurePiece;Lnet/minecraft/world/level/levelgen/structure/StructurePieceAccessor;Lnet/minecraft/util/RandomSource;IIILnet/minecraft/core/Direction;I)Lnet/minecraft/world/level/levelgen/structure/structures/MineshaftPieces$MineShaftPiece; net/minecraft/world/level/levelgen/structure/structures/MineshaftPieces/generateAndAddPiece (Lnet/minecraft/world/level/levelgen/structure/StructurePiece;Lnet/minecraft/world/level/levelgen/structure/StructurePieceAccessor;Lnet/minecraft/util/RandomSource;IIILnet/minecraft/core/Direction;I)Lnet/minecraft/world/level/levelgen/structure/structures/MineshaftPieces$MineShaftPiece; +MD: net/minecraft/world/level/levelgen/structure/structures/MineshaftPieces/m_227715_ (Lnet/minecraft/world/level/levelgen/structure/StructurePieceAccessor;Lnet/minecraft/util/RandomSource;IIILnet/minecraft/core/Direction;ILnet/minecraft/world/level/levelgen/structure/structures/MineshaftStructure$Type;)Lnet/minecraft/world/level/levelgen/structure/structures/MineshaftPieces$MineShaftPiece; net/minecraft/world/level/levelgen/structure/structures/MineshaftPieces/createRandomShaftPiece (Lnet/minecraft/world/level/levelgen/structure/StructurePieceAccessor;Lnet/minecraft/util/RandomSource;IIILnet/minecraft/core/Direction;ILnet/minecraft/world/level/levelgen/structure/structures/MineshaftStructure$Type;)Lnet/minecraft/world/level/levelgen/structure/structures/MineshaftPieces$MineShaftPiece; +MD: net/minecraft/world/level/levelgen/structure/structures/MineshaftPieces$1/ ()V net/minecraft/world/level/levelgen/structure/structures/MineshaftPieces$1/ ()V +MD: net/minecraft/world/level/levelgen/structure/structures/MineshaftPieces$MineShaftCorridor/ (ILnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/levelgen/structure/BoundingBox;Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/levelgen/structure/structures/MineshaftStructure$Type;)V net/minecraft/world/level/levelgen/structure/structures/MineshaftPieces$MineShaftCorridor/ (ILnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/levelgen/structure/BoundingBox;Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/levelgen/structure/structures/MineshaftStructure$Type;)V +MD: net/minecraft/world/level/levelgen/structure/structures/MineshaftPieces$MineShaftCorridor/ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/level/levelgen/structure/structures/MineshaftPieces$MineShaftCorridor/ (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/level/levelgen/structure/structures/MineshaftPieces$MineShaftCorridor/m_183620_ (Lnet/minecraft/world/level/levelgen/structure/pieces/StructurePieceSerializationContext;Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/level/levelgen/structure/structures/MineshaftPieces$MineShaftCorridor/addAdditionalSaveData (Lnet/minecraft/world/level/levelgen/structure/pieces/StructurePieceSerializationContext;Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/level/levelgen/structure/structures/MineshaftPieces$MineShaftCorridor/m_213694_ (Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/world/level/StructureManager;Lnet/minecraft/world/level/chunk/ChunkGenerator;Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/levelgen/structure/BoundingBox;Lnet/minecraft/world/level/ChunkPos;Lnet/minecraft/core/BlockPos;)V net/minecraft/world/level/levelgen/structure/structures/MineshaftPieces$MineShaftCorridor/postProcess (Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/world/level/StructureManager;Lnet/minecraft/world/level/chunk/ChunkGenerator;Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/levelgen/structure/BoundingBox;Lnet/minecraft/world/level/ChunkPos;Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/world/level/levelgen/structure/structures/MineshaftPieces$MineShaftCorridor/m_213787_ (Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/world/level/levelgen/structure/BoundingBox;Lnet/minecraft/util/RandomSource;IIILnet/minecraft/resources/ResourceLocation;)Z net/minecraft/world/level/levelgen/structure/structures/MineshaftPieces$MineShaftCorridor/createChest (Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/world/level/levelgen/structure/BoundingBox;Lnet/minecraft/util/RandomSource;IIILnet/minecraft/resources/ResourceLocation;)Z +MD: net/minecraft/world/level/levelgen/structure/structures/MineshaftPieces$MineShaftCorridor/m_214092_ (Lnet/minecraft/world/level/levelgen/structure/StructurePiece;Lnet/minecraft/world/level/levelgen/structure/StructurePieceAccessor;Lnet/minecraft/util/RandomSource;)V net/minecraft/world/level/levelgen/structure/structures/MineshaftPieces$MineShaftCorridor/addChildren (Lnet/minecraft/world/level/levelgen/structure/StructurePiece;Lnet/minecraft/world/level/levelgen/structure/StructurePieceAccessor;Lnet/minecraft/util/RandomSource;)V +MD: net/minecraft/world/level/levelgen/structure/structures/MineshaftPieces$MineShaftCorridor/m_227738_ (Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/world/level/levelgen/structure/structures/MineshaftPieces$MineShaftCorridor/canPlaceColumnOnTopOf (Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/world/level/levelgen/structure/structures/MineshaftPieces$MineShaftCorridor/m_227750_ (Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/BlockPos$MutableBlockPos;II)V net/minecraft/world/level/levelgen/structure/structures/MineshaftPieces$MineShaftCorridor/fillColumnBetween (Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/BlockPos$MutableBlockPos;II)V +MD: net/minecraft/world/level/levelgen/structure/structures/MineshaftPieces$MineShaftCorridor/m_227756_ (Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/world/level/levelgen/structure/BoundingBox;III)V net/minecraft/world/level/levelgen/structure/structures/MineshaftPieces$MineShaftCorridor/placeDoubleLowerOrUpperSupport (Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/world/level/levelgen/structure/BoundingBox;III)V +MD: net/minecraft/world/level/levelgen/structure/structures/MineshaftPieces$MineShaftCorridor/m_227762_ (Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/world/level/levelgen/structure/BoundingBox;IIII)Z net/minecraft/world/level/levelgen/structure/structures/MineshaftPieces$MineShaftCorridor/hasSturdyNeighbours (Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/world/level/levelgen/structure/BoundingBox;IIII)Z +MD: net/minecraft/world/level/levelgen/structure/structures/MineshaftPieces$MineShaftCorridor/m_227769_ (Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/world/level/levelgen/structure/BoundingBox;IIIIILnet/minecraft/util/RandomSource;)V net/minecraft/world/level/levelgen/structure/structures/MineshaftPieces$MineShaftCorridor/placeSupport (Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/world/level/levelgen/structure/BoundingBox;IIIIILnet/minecraft/util/RandomSource;)V +MD: net/minecraft/world/level/levelgen/structure/structures/MineshaftPieces$MineShaftCorridor/m_227778_ (Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/world/level/levelgen/structure/BoundingBox;Lnet/minecraft/util/RandomSource;FIII)V net/minecraft/world/level/levelgen/structure/structures/MineshaftPieces$MineShaftCorridor/maybePlaceCobWeb (Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/world/level/levelgen/structure/BoundingBox;Lnet/minecraft/util/RandomSource;FIII)V +MD: net/minecraft/world/level/levelgen/structure/structures/MineshaftPieces$MineShaftCorridor/m_227798_ (Lnet/minecraft/world/level/levelgen/structure/StructurePieceAccessor;Lnet/minecraft/util/RandomSource;IIILnet/minecraft/core/Direction;)Lnet/minecraft/world/level/levelgen/structure/BoundingBox; net/minecraft/world/level/levelgen/structure/structures/MineshaftPieces$MineShaftCorridor/findCorridorSize (Lnet/minecraft/world/level/levelgen/structure/StructurePieceAccessor;Lnet/minecraft/util/RandomSource;IIILnet/minecraft/core/Direction;)Lnet/minecraft/world/level/levelgen/structure/BoundingBox; +MD: net/minecraft/world/level/levelgen/structure/structures/MineshaftPieces$MineShaftCorridor/m_227808_ (Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/world/level/levelgen/structure/structures/MineshaftPieces$MineShaftCorridor/canHangChainBelow (Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/world/level/levelgen/structure/structures/MineshaftPieces$MineShaftCorridor/m_227819_ (Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/world/level/block/state/BlockState;IIILnet/minecraft/world/level/levelgen/structure/BoundingBox;)V net/minecraft/world/level/levelgen/structure/structures/MineshaftPieces$MineShaftCorridor/fillPillarDownOrChainUp (Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/world/level/block/state/BlockState;IIILnet/minecraft/world/level/levelgen/structure/BoundingBox;)V +MD: net/minecraft/world/level/levelgen/structure/structures/MineshaftPieces$MineShaftCorridor/m_73528_ (Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/world/level/block/state/BlockState;IIILnet/minecraft/world/level/levelgen/structure/BoundingBox;)V net/minecraft/world/level/levelgen/structure/structures/MineshaftPieces$MineShaftCorridor/fillColumnDown (Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/world/level/block/state/BlockState;IIILnet/minecraft/world/level/levelgen/structure/BoundingBox;)V +MD: net/minecraft/world/level/levelgen/structure/structures/MineshaftPieces$MineShaftCrossing/ (ILnet/minecraft/world/level/levelgen/structure/BoundingBox;Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/levelgen/structure/structures/MineshaftStructure$Type;)V net/minecraft/world/level/levelgen/structure/structures/MineshaftPieces$MineShaftCrossing/ (ILnet/minecraft/world/level/levelgen/structure/BoundingBox;Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/levelgen/structure/structures/MineshaftStructure$Type;)V +MD: net/minecraft/world/level/levelgen/structure/structures/MineshaftPieces$MineShaftCrossing/ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/level/levelgen/structure/structures/MineshaftPieces$MineShaftCrossing/ (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/level/levelgen/structure/structures/MineshaftPieces$MineShaftCrossing/m_183620_ (Lnet/minecraft/world/level/levelgen/structure/pieces/StructurePieceSerializationContext;Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/level/levelgen/structure/structures/MineshaftPieces$MineShaftCrossing/addAdditionalSaveData (Lnet/minecraft/world/level/levelgen/structure/pieces/StructurePieceSerializationContext;Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/level/levelgen/structure/structures/MineshaftPieces$MineShaftCrossing/m_213694_ (Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/world/level/StructureManager;Lnet/minecraft/world/level/chunk/ChunkGenerator;Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/levelgen/structure/BoundingBox;Lnet/minecraft/world/level/ChunkPos;Lnet/minecraft/core/BlockPos;)V net/minecraft/world/level/levelgen/structure/structures/MineshaftPieces$MineShaftCrossing/postProcess (Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/world/level/StructureManager;Lnet/minecraft/world/level/chunk/ChunkGenerator;Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/levelgen/structure/BoundingBox;Lnet/minecraft/world/level/ChunkPos;Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/world/level/levelgen/structure/structures/MineshaftPieces$MineShaftCrossing/m_214092_ (Lnet/minecraft/world/level/levelgen/structure/StructurePiece;Lnet/minecraft/world/level/levelgen/structure/StructurePieceAccessor;Lnet/minecraft/util/RandomSource;)V net/minecraft/world/level/levelgen/structure/structures/MineshaftPieces$MineShaftCrossing/addChildren (Lnet/minecraft/world/level/levelgen/structure/StructurePiece;Lnet/minecraft/world/level/levelgen/structure/StructurePieceAccessor;Lnet/minecraft/util/RandomSource;)V +MD: net/minecraft/world/level/levelgen/structure/structures/MineshaftPieces$MineShaftCrossing/m_227843_ (Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/world/level/levelgen/structure/BoundingBox;IIII)V net/minecraft/world/level/levelgen/structure/structures/MineshaftPieces$MineShaftCrossing/placeSupportPillar (Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/world/level/levelgen/structure/BoundingBox;IIII)V +MD: net/minecraft/world/level/levelgen/structure/structures/MineshaftPieces$MineShaftCrossing/m_227854_ (Lnet/minecraft/world/level/levelgen/structure/StructurePieceAccessor;Lnet/minecraft/util/RandomSource;IIILnet/minecraft/core/Direction;)Lnet/minecraft/world/level/levelgen/structure/BoundingBox; net/minecraft/world/level/levelgen/structure/structures/MineshaftPieces$MineShaftCrossing/findCrossing (Lnet/minecraft/world/level/levelgen/structure/StructurePieceAccessor;Lnet/minecraft/util/RandomSource;IIILnet/minecraft/core/Direction;)Lnet/minecraft/world/level/levelgen/structure/BoundingBox; +MD: net/minecraft/world/level/levelgen/structure/structures/MineshaftPieces$MineShaftPiece/ (Lnet/minecraft/world/level/levelgen/structure/pieces/StructurePieceType;ILnet/minecraft/world/level/levelgen/structure/structures/MineshaftStructure$Type;Lnet/minecraft/world/level/levelgen/structure/BoundingBox;)V net/minecraft/world/level/levelgen/structure/structures/MineshaftPieces$MineShaftPiece/ (Lnet/minecraft/world/level/levelgen/structure/pieces/StructurePieceType;ILnet/minecraft/world/level/levelgen/structure/structures/MineshaftStructure$Type;Lnet/minecraft/world/level/levelgen/structure/BoundingBox;)V +MD: net/minecraft/world/level/levelgen/structure/structures/MineshaftPieces$MineShaftPiece/ (Lnet/minecraft/world/level/levelgen/structure/pieces/StructurePieceType;Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/level/levelgen/structure/structures/MineshaftPieces$MineShaftPiece/ (Lnet/minecraft/world/level/levelgen/structure/pieces/StructurePieceType;Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/level/levelgen/structure/structures/MineshaftPieces$MineShaftPiece/m_142085_ (Lnet/minecraft/world/level/LevelReader;IIILnet/minecraft/world/level/levelgen/structure/BoundingBox;)Z net/minecraft/world/level/levelgen/structure/structures/MineshaftPieces$MineShaftPiece/canBeReplaced (Lnet/minecraft/world/level/LevelReader;IIILnet/minecraft/world/level/levelgen/structure/BoundingBox;)Z +MD: net/minecraft/world/level/levelgen/structure/structures/MineshaftPieces$MineShaftPiece/m_183620_ (Lnet/minecraft/world/level/levelgen/structure/pieces/StructurePieceSerializationContext;Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/level/levelgen/structure/structures/MineshaftPieces$MineShaftPiece/addAdditionalSaveData (Lnet/minecraft/world/level/levelgen/structure/pieces/StructurePieceSerializationContext;Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/level/levelgen/structure/structures/MineshaftPieces$MineShaftPiece/m_227874_ (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/world/level/levelgen/structure/BoundingBox;IIII)Z net/minecraft/world/level/levelgen/structure/structures/MineshaftPieces$MineShaftPiece/isSupportingBox (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/world/level/levelgen/structure/BoundingBox;IIII)Z +MD: net/minecraft/world/level/levelgen/structure/structures/MineshaftPieces$MineShaftPiece/m_227881_ (Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/world/level/levelgen/structure/BoundingBox;)Z net/minecraft/world/level/levelgen/structure/structures/MineshaftPieces$MineShaftPiece/isInInvalidLocation (Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/world/level/levelgen/structure/BoundingBox;)Z +MD: net/minecraft/world/level/levelgen/structure/structures/MineshaftPieces$MineShaftPiece/m_227890_ (Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/world/level/levelgen/structure/BoundingBox;Lnet/minecraft/world/level/block/state/BlockState;III)V net/minecraft/world/level/levelgen/structure/structures/MineshaftPieces$MineShaftPiece/setPlanksBlock (Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/world/level/levelgen/structure/BoundingBox;Lnet/minecraft/world/level/block/state/BlockState;III)V +MD: net/minecraft/world/level/levelgen/structure/structures/MineshaftPieces$MineShaftRoom/ (ILnet/minecraft/util/RandomSource;IILnet/minecraft/world/level/levelgen/structure/structures/MineshaftStructure$Type;)V net/minecraft/world/level/levelgen/structure/structures/MineshaftPieces$MineShaftRoom/ (ILnet/minecraft/util/RandomSource;IILnet/minecraft/world/level/levelgen/structure/structures/MineshaftStructure$Type;)V +MD: net/minecraft/world/level/levelgen/structure/structures/MineshaftPieces$MineShaftRoom/ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/level/levelgen/structure/structures/MineshaftPieces$MineShaftRoom/ (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/level/levelgen/structure/structures/MineshaftPieces$MineShaftRoom/m_183620_ (Lnet/minecraft/world/level/levelgen/structure/pieces/StructurePieceSerializationContext;Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/level/levelgen/structure/structures/MineshaftPieces$MineShaftRoom/addAdditionalSaveData (Lnet/minecraft/world/level/levelgen/structure/pieces/StructurePieceSerializationContext;Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/level/levelgen/structure/structures/MineshaftPieces$MineShaftRoom/m_213694_ (Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/world/level/StructureManager;Lnet/minecraft/world/level/chunk/ChunkGenerator;Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/levelgen/structure/BoundingBox;Lnet/minecraft/world/level/ChunkPos;Lnet/minecraft/core/BlockPos;)V net/minecraft/world/level/levelgen/structure/structures/MineshaftPieces$MineShaftRoom/postProcess (Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/world/level/StructureManager;Lnet/minecraft/world/level/chunk/ChunkGenerator;Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/levelgen/structure/BoundingBox;Lnet/minecraft/world/level/ChunkPos;Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/world/level/levelgen/structure/structures/MineshaftPieces$MineShaftRoom/m_214092_ (Lnet/minecraft/world/level/levelgen/structure/StructurePiece;Lnet/minecraft/world/level/levelgen/structure/StructurePieceAccessor;Lnet/minecraft/util/RandomSource;)V net/minecraft/world/level/levelgen/structure/structures/MineshaftPieces$MineShaftRoom/addChildren (Lnet/minecraft/world/level/levelgen/structure/StructurePiece;Lnet/minecraft/world/level/levelgen/structure/StructurePieceAccessor;Lnet/minecraft/util/RandomSource;)V +MD: net/minecraft/world/level/levelgen/structure/structures/MineshaftPieces$MineShaftRoom/m_227928_ (Lnet/minecraft/nbt/CompoundTag;Lnet/minecraft/nbt/Tag;)V net/minecraft/world/level/levelgen/structure/structures/MineshaftPieces$MineShaftRoom/lambda$addAdditionalSaveData$0 (Lnet/minecraft/nbt/CompoundTag;Lnet/minecraft/nbt/Tag;)V +MD: net/minecraft/world/level/levelgen/structure/structures/MineshaftPieces$MineShaftRoom/m_6324_ (III)V net/minecraft/world/level/levelgen/structure/structures/MineshaftPieces$MineShaftRoom/move (III)V +MD: net/minecraft/world/level/levelgen/structure/structures/MineshaftPieces$MineShaftStairs/ (ILnet/minecraft/world/level/levelgen/structure/BoundingBox;Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/levelgen/structure/structures/MineshaftStructure$Type;)V net/minecraft/world/level/levelgen/structure/structures/MineshaftPieces$MineShaftStairs/ (ILnet/minecraft/world/level/levelgen/structure/BoundingBox;Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/levelgen/structure/structures/MineshaftStructure$Type;)V +MD: net/minecraft/world/level/levelgen/structure/structures/MineshaftPieces$MineShaftStairs/ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/level/levelgen/structure/structures/MineshaftPieces$MineShaftStairs/ (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/level/levelgen/structure/structures/MineshaftPieces$MineShaftStairs/m_213694_ (Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/world/level/StructureManager;Lnet/minecraft/world/level/chunk/ChunkGenerator;Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/levelgen/structure/BoundingBox;Lnet/minecraft/world/level/ChunkPos;Lnet/minecraft/core/BlockPos;)V net/minecraft/world/level/levelgen/structure/structures/MineshaftPieces$MineShaftStairs/postProcess (Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/world/level/StructureManager;Lnet/minecraft/world/level/chunk/ChunkGenerator;Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/levelgen/structure/BoundingBox;Lnet/minecraft/world/level/ChunkPos;Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/world/level/levelgen/structure/structures/MineshaftPieces$MineShaftStairs/m_214092_ (Lnet/minecraft/world/level/levelgen/structure/StructurePiece;Lnet/minecraft/world/level/levelgen/structure/StructurePieceAccessor;Lnet/minecraft/util/RandomSource;)V net/minecraft/world/level/levelgen/structure/structures/MineshaftPieces$MineShaftStairs/addChildren (Lnet/minecraft/world/level/levelgen/structure/StructurePiece;Lnet/minecraft/world/level/levelgen/structure/StructurePieceAccessor;Lnet/minecraft/util/RandomSource;)V +MD: net/minecraft/world/level/levelgen/structure/structures/MineshaftPieces$MineShaftStairs/m_227950_ (Lnet/minecraft/world/level/levelgen/structure/StructurePieceAccessor;Lnet/minecraft/util/RandomSource;IIILnet/minecraft/core/Direction;)Lnet/minecraft/world/level/levelgen/structure/BoundingBox; net/minecraft/world/level/levelgen/structure/structures/MineshaftPieces$MineShaftStairs/findStairs (Lnet/minecraft/world/level/levelgen/structure/StructurePieceAccessor;Lnet/minecraft/util/RandomSource;IIILnet/minecraft/core/Direction;)Lnet/minecraft/world/level/levelgen/structure/BoundingBox; +MD: net/minecraft/world/level/levelgen/structure/structures/MineshaftStructure/ ()V net/minecraft/world/level/levelgen/structure/structures/MineshaftStructure/ ()V +MD: net/minecraft/world/level/levelgen/structure/structures/MineshaftStructure/ (Lnet/minecraft/world/level/levelgen/structure/Structure$StructureSettings;Lnet/minecraft/world/level/levelgen/structure/structures/MineshaftStructure$Type;)V net/minecraft/world/level/levelgen/structure/structures/MineshaftStructure/ (Lnet/minecraft/world/level/levelgen/structure/Structure$StructureSettings;Lnet/minecraft/world/level/levelgen/structure/structures/MineshaftStructure$Type;)V +MD: net/minecraft/world/level/levelgen/structure/structures/MineshaftStructure/m_213658_ ()Lnet/minecraft/world/level/levelgen/structure/StructureType; net/minecraft/world/level/levelgen/structure/structures/MineshaftStructure/type ()Lnet/minecraft/world/level/levelgen/structure/StructureType; +MD: net/minecraft/world/level/levelgen/structure/structures/MineshaftStructure/m_214086_ (Lnet/minecraft/world/level/levelgen/structure/Structure$GenerationContext;)Ljava/util/Optional; net/minecraft/world/level/levelgen/structure/structures/MineshaftStructure/findGenerationPoint (Lnet/minecraft/world/level/levelgen/structure/Structure$GenerationContext;)Ljava/util/Optional; +MD: net/minecraft/world/level/levelgen/structure/structures/MineshaftStructure/m_227965_ (Lnet/minecraft/world/level/levelgen/structure/pieces/StructurePiecesBuilder;Lnet/minecraft/world/level/levelgen/structure/Structure$GenerationContext;)I net/minecraft/world/level/levelgen/structure/structures/MineshaftStructure/generatePiecesAndAdjust (Lnet/minecraft/world/level/levelgen/structure/pieces/StructurePiecesBuilder;Lnet/minecraft/world/level/levelgen/structure/Structure$GenerationContext;)I +MD: net/minecraft/world/level/levelgen/structure/structures/MineshaftStructure/m_227968_ (Lnet/minecraft/world/level/levelgen/structure/structures/MineshaftStructure;)Lnet/minecraft/world/level/levelgen/structure/structures/MineshaftStructure$Type; net/minecraft/world/level/levelgen/structure/structures/MineshaftStructure/lambda$static$0 (Lnet/minecraft/world/level/levelgen/structure/structures/MineshaftStructure;)Lnet/minecraft/world/level/levelgen/structure/structures/MineshaftStructure$Type; +MD: net/minecraft/world/level/levelgen/structure/structures/MineshaftStructure/m_227970_ (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/world/level/levelgen/structure/structures/MineshaftStructure/lambda$static$1 (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/world/level/levelgen/structure/structures/MineshaftStructure$Type/ ()V net/minecraft/world/level/levelgen/structure/structures/MineshaftStructure$Type/ ()V +MD: net/minecraft/world/level/levelgen/structure/structures/MineshaftStructure$Type/ (Ljava/lang/String;ILjava/lang/String;Lnet/minecraft/world/level/block/Block;Lnet/minecraft/world/level/block/Block;Lnet/minecraft/world/level/block/Block;)V net/minecraft/world/level/levelgen/structure/structures/MineshaftStructure$Type/ (Ljava/lang/String;ILjava/lang/String;Lnet/minecraft/world/level/block/Block;Lnet/minecraft/world/level/block/Block;Lnet/minecraft/world/level/block/Block;)V +MD: net/minecraft/world/level/levelgen/structure/structures/MineshaftStructure$Type/m_227989_ ()Ljava/lang/String; net/minecraft/world/level/levelgen/structure/structures/MineshaftStructure$Type/getName ()Ljava/lang/String; +MD: net/minecraft/world/level/levelgen/structure/structures/MineshaftStructure$Type/m_227990_ (I)Lnet/minecraft/world/level/levelgen/structure/structures/MineshaftStructure$Type; net/minecraft/world/level/levelgen/structure/structures/MineshaftStructure$Type/byId (I)Lnet/minecraft/world/level/levelgen/structure/structures/MineshaftStructure$Type; +MD: net/minecraft/world/level/levelgen/structure/structures/MineshaftStructure$Type/m_227992_ ()Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/levelgen/structure/structures/MineshaftStructure$Type/getWoodState ()Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/levelgen/structure/structures/MineshaftStructure$Type/m_227994_ ()Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/levelgen/structure/structures/MineshaftStructure$Type/getPlanksState ()Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/levelgen/structure/structures/MineshaftStructure$Type/m_227995_ ()Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/levelgen/structure/structures/MineshaftStructure$Type/getFenceState ()Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/levelgen/structure/structures/MineshaftStructure$Type/m_227996_ ()[Lnet/minecraft/world/level/levelgen/structure/structures/MineshaftStructure$Type; net/minecraft/world/level/levelgen/structure/structures/MineshaftStructure$Type/$values ()[Lnet/minecraft/world/level/levelgen/structure/structures/MineshaftStructure$Type; +MD: net/minecraft/world/level/levelgen/structure/structures/MineshaftStructure$Type/m_7912_ ()Ljava/lang/String; net/minecraft/world/level/levelgen/structure/structures/MineshaftStructure$Type/getSerializedName ()Ljava/lang/String; +MD: net/minecraft/world/level/levelgen/structure/structures/MineshaftStructure$Type/valueOf (Ljava/lang/String;)Lnet/minecraft/world/level/levelgen/structure/structures/MineshaftStructure$Type; net/minecraft/world/level/levelgen/structure/structures/MineshaftStructure$Type/valueOf (Ljava/lang/String;)Lnet/minecraft/world/level/levelgen/structure/structures/MineshaftStructure$Type; +MD: net/minecraft/world/level/levelgen/structure/structures/MineshaftStructure$Type/values ()[Lnet/minecraft/world/level/levelgen/structure/structures/MineshaftStructure$Type; net/minecraft/world/level/levelgen/structure/structures/MineshaftStructure$Type/values ()[Lnet/minecraft/world/level/levelgen/structure/structures/MineshaftStructure$Type; +MD: net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces/ ()V net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces/ ()V +MD: net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces/ ()V net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces/ ()V +MD: net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces/m_228007_ (Lnet/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$PieceWeight;Lnet/minecraft/world/level/levelgen/structure/StructurePieceAccessor;Lnet/minecraft/util/RandomSource;IIILnet/minecraft/core/Direction;I)Lnet/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$NetherBridgePiece; net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces/findAndCreateBridgePieceFactory (Lnet/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$PieceWeight;Lnet/minecraft/world/level/levelgen/structure/StructurePieceAccessor;Lnet/minecraft/util/RandomSource;IIILnet/minecraft/core/Direction;I)Lnet/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$NetherBridgePiece; +MD: net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$1/ ()V net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$1/ ()V +MD: net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$BridgeCrossing/ (IILnet/minecraft/core/Direction;)V net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$BridgeCrossing/ (IILnet/minecraft/core/Direction;)V +MD: net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$BridgeCrossing/ (ILnet/minecraft/world/level/levelgen/structure/BoundingBox;Lnet/minecraft/core/Direction;)V net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$BridgeCrossing/ (ILnet/minecraft/world/level/levelgen/structure/BoundingBox;Lnet/minecraft/core/Direction;)V +MD: net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$BridgeCrossing/ (Lnet/minecraft/world/level/levelgen/structure/pieces/StructurePieceType;Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$BridgeCrossing/ (Lnet/minecraft/world/level/levelgen/structure/pieces/StructurePieceType;Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$BridgeCrossing/ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$BridgeCrossing/ (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$BridgeCrossing/m_213694_ (Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/world/level/StructureManager;Lnet/minecraft/world/level/chunk/ChunkGenerator;Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/levelgen/structure/BoundingBox;Lnet/minecraft/world/level/ChunkPos;Lnet/minecraft/core/BlockPos;)V net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$BridgeCrossing/postProcess (Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/world/level/StructureManager;Lnet/minecraft/world/level/chunk/ChunkGenerator;Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/levelgen/structure/BoundingBox;Lnet/minecraft/world/level/ChunkPos;Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$BridgeCrossing/m_214092_ (Lnet/minecraft/world/level/levelgen/structure/StructurePiece;Lnet/minecraft/world/level/levelgen/structure/StructurePieceAccessor;Lnet/minecraft/util/RandomSource;)V net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$BridgeCrossing/addChildren (Lnet/minecraft/world/level/levelgen/structure/StructurePiece;Lnet/minecraft/world/level/levelgen/structure/StructurePieceAccessor;Lnet/minecraft/util/RandomSource;)V +MD: net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$BridgeCrossing/m_228046_ (Lnet/minecraft/world/level/levelgen/structure/StructurePieceAccessor;IIILnet/minecraft/core/Direction;I)Lnet/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$BridgeCrossing; net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$BridgeCrossing/createPiece (Lnet/minecraft/world/level/levelgen/structure/StructurePieceAccessor;IIILnet/minecraft/core/Direction;I)Lnet/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$BridgeCrossing; +MD: net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$BridgeEndFiller/ (ILnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/levelgen/structure/BoundingBox;Lnet/minecraft/core/Direction;)V net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$BridgeEndFiller/ (ILnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/levelgen/structure/BoundingBox;Lnet/minecraft/core/Direction;)V +MD: net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$BridgeEndFiller/ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$BridgeEndFiller/ (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$BridgeEndFiller/m_183620_ (Lnet/minecraft/world/level/levelgen/structure/pieces/StructurePieceSerializationContext;Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$BridgeEndFiller/addAdditionalSaveData (Lnet/minecraft/world/level/levelgen/structure/pieces/StructurePieceSerializationContext;Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$BridgeEndFiller/m_213694_ (Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/world/level/StructureManager;Lnet/minecraft/world/level/chunk/ChunkGenerator;Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/levelgen/structure/BoundingBox;Lnet/minecraft/world/level/ChunkPos;Lnet/minecraft/core/BlockPos;)V net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$BridgeEndFiller/postProcess (Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/world/level/StructureManager;Lnet/minecraft/world/level/chunk/ChunkGenerator;Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/levelgen/structure/BoundingBox;Lnet/minecraft/world/level/ChunkPos;Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$BridgeEndFiller/m_228072_ (Lnet/minecraft/world/level/levelgen/structure/StructurePieceAccessor;Lnet/minecraft/util/RandomSource;IIILnet/minecraft/core/Direction;I)Lnet/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$BridgeEndFiller; net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$BridgeEndFiller/createPiece (Lnet/minecraft/world/level/levelgen/structure/StructurePieceAccessor;Lnet/minecraft/util/RandomSource;IIILnet/minecraft/core/Direction;I)Lnet/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$BridgeEndFiller; +MD: net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$BridgeStraight/ (ILnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/levelgen/structure/BoundingBox;Lnet/minecraft/core/Direction;)V net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$BridgeStraight/ (ILnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/levelgen/structure/BoundingBox;Lnet/minecraft/core/Direction;)V +MD: net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$BridgeStraight/ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$BridgeStraight/ (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$BridgeStraight/m_213694_ (Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/world/level/StructureManager;Lnet/minecraft/world/level/chunk/ChunkGenerator;Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/levelgen/structure/BoundingBox;Lnet/minecraft/world/level/ChunkPos;Lnet/minecraft/core/BlockPos;)V net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$BridgeStraight/postProcess (Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/world/level/StructureManager;Lnet/minecraft/world/level/chunk/ChunkGenerator;Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/levelgen/structure/BoundingBox;Lnet/minecraft/world/level/ChunkPos;Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$BridgeStraight/m_214092_ (Lnet/minecraft/world/level/levelgen/structure/StructurePiece;Lnet/minecraft/world/level/levelgen/structure/StructurePieceAccessor;Lnet/minecraft/util/RandomSource;)V net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$BridgeStraight/addChildren (Lnet/minecraft/world/level/levelgen/structure/StructurePiece;Lnet/minecraft/world/level/levelgen/structure/StructurePieceAccessor;Lnet/minecraft/util/RandomSource;)V +MD: net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$BridgeStraight/m_228105_ (Lnet/minecraft/world/level/levelgen/structure/StructurePieceAccessor;Lnet/minecraft/util/RandomSource;IIILnet/minecraft/core/Direction;I)Lnet/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$BridgeStraight; net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$BridgeStraight/createPiece (Lnet/minecraft/world/level/levelgen/structure/StructurePieceAccessor;Lnet/minecraft/util/RandomSource;IIILnet/minecraft/core/Direction;I)Lnet/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$BridgeStraight; +MD: net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$CastleCorridorStairsPiece/ (ILnet/minecraft/world/level/levelgen/structure/BoundingBox;Lnet/minecraft/core/Direction;)V net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$CastleCorridorStairsPiece/ (ILnet/minecraft/world/level/levelgen/structure/BoundingBox;Lnet/minecraft/core/Direction;)V +MD: net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$CastleCorridorStairsPiece/ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$CastleCorridorStairsPiece/ (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$CastleCorridorStairsPiece/m_213694_ (Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/world/level/StructureManager;Lnet/minecraft/world/level/chunk/ChunkGenerator;Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/levelgen/structure/BoundingBox;Lnet/minecraft/world/level/ChunkPos;Lnet/minecraft/core/BlockPos;)V net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$CastleCorridorStairsPiece/postProcess (Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/world/level/StructureManager;Lnet/minecraft/world/level/chunk/ChunkGenerator;Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/levelgen/structure/BoundingBox;Lnet/minecraft/world/level/ChunkPos;Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$CastleCorridorStairsPiece/m_214092_ (Lnet/minecraft/world/level/levelgen/structure/StructurePiece;Lnet/minecraft/world/level/levelgen/structure/StructurePieceAccessor;Lnet/minecraft/util/RandomSource;)V net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$CastleCorridorStairsPiece/addChildren (Lnet/minecraft/world/level/levelgen/structure/StructurePiece;Lnet/minecraft/world/level/levelgen/structure/StructurePieceAccessor;Lnet/minecraft/util/RandomSource;)V +MD: net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$CastleCorridorStairsPiece/m_228134_ (Lnet/minecraft/world/level/levelgen/structure/StructurePieceAccessor;IIILnet/minecraft/core/Direction;I)Lnet/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$CastleCorridorStairsPiece; net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$CastleCorridorStairsPiece/createPiece (Lnet/minecraft/world/level/levelgen/structure/StructurePieceAccessor;IIILnet/minecraft/core/Direction;I)Lnet/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$CastleCorridorStairsPiece; +MD: net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$CastleCorridorTBalconyPiece/ (ILnet/minecraft/world/level/levelgen/structure/BoundingBox;Lnet/minecraft/core/Direction;)V net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$CastleCorridorTBalconyPiece/ (ILnet/minecraft/world/level/levelgen/structure/BoundingBox;Lnet/minecraft/core/Direction;)V +MD: net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$CastleCorridorTBalconyPiece/ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$CastleCorridorTBalconyPiece/ (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$CastleCorridorTBalconyPiece/m_213694_ (Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/world/level/StructureManager;Lnet/minecraft/world/level/chunk/ChunkGenerator;Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/levelgen/structure/BoundingBox;Lnet/minecraft/world/level/ChunkPos;Lnet/minecraft/core/BlockPos;)V net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$CastleCorridorTBalconyPiece/postProcess (Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/world/level/StructureManager;Lnet/minecraft/world/level/chunk/ChunkGenerator;Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/levelgen/structure/BoundingBox;Lnet/minecraft/world/level/ChunkPos;Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$CastleCorridorTBalconyPiece/m_214092_ (Lnet/minecraft/world/level/levelgen/structure/StructurePiece;Lnet/minecraft/world/level/levelgen/structure/StructurePieceAccessor;Lnet/minecraft/util/RandomSource;)V net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$CastleCorridorTBalconyPiece/addChildren (Lnet/minecraft/world/level/levelgen/structure/StructurePiece;Lnet/minecraft/world/level/levelgen/structure/StructurePieceAccessor;Lnet/minecraft/util/RandomSource;)V +MD: net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$CastleCorridorTBalconyPiece/m_228162_ (Lnet/minecraft/world/level/levelgen/structure/StructurePieceAccessor;IIILnet/minecraft/core/Direction;I)Lnet/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$CastleCorridorTBalconyPiece; net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$CastleCorridorTBalconyPiece/createPiece (Lnet/minecraft/world/level/levelgen/structure/StructurePieceAccessor;IIILnet/minecraft/core/Direction;I)Lnet/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$CastleCorridorTBalconyPiece; +MD: net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$CastleEntrance/ (ILnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/levelgen/structure/BoundingBox;Lnet/minecraft/core/Direction;)V net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$CastleEntrance/ (ILnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/levelgen/structure/BoundingBox;Lnet/minecraft/core/Direction;)V +MD: net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$CastleEntrance/ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$CastleEntrance/ (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$CastleEntrance/m_213694_ (Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/world/level/StructureManager;Lnet/minecraft/world/level/chunk/ChunkGenerator;Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/levelgen/structure/BoundingBox;Lnet/minecraft/world/level/ChunkPos;Lnet/minecraft/core/BlockPos;)V net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$CastleEntrance/postProcess (Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/world/level/StructureManager;Lnet/minecraft/world/level/chunk/ChunkGenerator;Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/levelgen/structure/BoundingBox;Lnet/minecraft/world/level/ChunkPos;Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$CastleEntrance/m_214092_ (Lnet/minecraft/world/level/levelgen/structure/StructurePiece;Lnet/minecraft/world/level/levelgen/structure/StructurePieceAccessor;Lnet/minecraft/util/RandomSource;)V net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$CastleEntrance/addChildren (Lnet/minecraft/world/level/levelgen/structure/StructurePiece;Lnet/minecraft/world/level/levelgen/structure/StructurePieceAccessor;Lnet/minecraft/util/RandomSource;)V +MD: net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$CastleEntrance/m_228191_ (Lnet/minecraft/world/level/levelgen/structure/StructurePieceAccessor;Lnet/minecraft/util/RandomSource;IIILnet/minecraft/core/Direction;I)Lnet/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$CastleEntrance; net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$CastleEntrance/createPiece (Lnet/minecraft/world/level/levelgen/structure/StructurePieceAccessor;Lnet/minecraft/util/RandomSource;IIILnet/minecraft/core/Direction;I)Lnet/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$CastleEntrance; +MD: net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$CastleSmallCorridorCrossingPiece/ (ILnet/minecraft/world/level/levelgen/structure/BoundingBox;Lnet/minecraft/core/Direction;)V net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$CastleSmallCorridorCrossingPiece/ (ILnet/minecraft/world/level/levelgen/structure/BoundingBox;Lnet/minecraft/core/Direction;)V +MD: net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$CastleSmallCorridorCrossingPiece/ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$CastleSmallCorridorCrossingPiece/ (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$CastleSmallCorridorCrossingPiece/m_213694_ (Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/world/level/StructureManager;Lnet/minecraft/world/level/chunk/ChunkGenerator;Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/levelgen/structure/BoundingBox;Lnet/minecraft/world/level/ChunkPos;Lnet/minecraft/core/BlockPos;)V net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$CastleSmallCorridorCrossingPiece/postProcess (Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/world/level/StructureManager;Lnet/minecraft/world/level/chunk/ChunkGenerator;Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/levelgen/structure/BoundingBox;Lnet/minecraft/world/level/ChunkPos;Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$CastleSmallCorridorCrossingPiece/m_214092_ (Lnet/minecraft/world/level/levelgen/structure/StructurePiece;Lnet/minecraft/world/level/levelgen/structure/StructurePieceAccessor;Lnet/minecraft/util/RandomSource;)V net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$CastleSmallCorridorCrossingPiece/addChildren (Lnet/minecraft/world/level/levelgen/structure/StructurePiece;Lnet/minecraft/world/level/levelgen/structure/StructurePieceAccessor;Lnet/minecraft/util/RandomSource;)V +MD: net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$CastleSmallCorridorCrossingPiece/m_228220_ (Lnet/minecraft/world/level/levelgen/structure/StructurePieceAccessor;IIILnet/minecraft/core/Direction;I)Lnet/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$CastleSmallCorridorCrossingPiece; net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$CastleSmallCorridorCrossingPiece/createPiece (Lnet/minecraft/world/level/levelgen/structure/StructurePieceAccessor;IIILnet/minecraft/core/Direction;I)Lnet/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$CastleSmallCorridorCrossingPiece; +MD: net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$CastleSmallCorridorLeftTurnPiece/ (ILnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/levelgen/structure/BoundingBox;Lnet/minecraft/core/Direction;)V net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$CastleSmallCorridorLeftTurnPiece/ (ILnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/levelgen/structure/BoundingBox;Lnet/minecraft/core/Direction;)V +MD: net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$CastleSmallCorridorLeftTurnPiece/ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$CastleSmallCorridorLeftTurnPiece/ (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$CastleSmallCorridorLeftTurnPiece/m_183620_ (Lnet/minecraft/world/level/levelgen/structure/pieces/StructurePieceSerializationContext;Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$CastleSmallCorridorLeftTurnPiece/addAdditionalSaveData (Lnet/minecraft/world/level/levelgen/structure/pieces/StructurePieceSerializationContext;Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$CastleSmallCorridorLeftTurnPiece/m_213694_ (Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/world/level/StructureManager;Lnet/minecraft/world/level/chunk/ChunkGenerator;Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/levelgen/structure/BoundingBox;Lnet/minecraft/world/level/ChunkPos;Lnet/minecraft/core/BlockPos;)V net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$CastleSmallCorridorLeftTurnPiece/postProcess (Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/world/level/StructureManager;Lnet/minecraft/world/level/chunk/ChunkGenerator;Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/levelgen/structure/BoundingBox;Lnet/minecraft/world/level/ChunkPos;Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$CastleSmallCorridorLeftTurnPiece/m_214092_ (Lnet/minecraft/world/level/levelgen/structure/StructurePiece;Lnet/minecraft/world/level/levelgen/structure/StructurePieceAccessor;Lnet/minecraft/util/RandomSource;)V net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$CastleSmallCorridorLeftTurnPiece/addChildren (Lnet/minecraft/world/level/levelgen/structure/StructurePiece;Lnet/minecraft/world/level/levelgen/structure/StructurePieceAccessor;Lnet/minecraft/util/RandomSource;)V +MD: net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$CastleSmallCorridorLeftTurnPiece/m_228250_ (Lnet/minecraft/world/level/levelgen/structure/StructurePieceAccessor;Lnet/minecraft/util/RandomSource;IIILnet/minecraft/core/Direction;I)Lnet/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$CastleSmallCorridorLeftTurnPiece; net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$CastleSmallCorridorLeftTurnPiece/createPiece (Lnet/minecraft/world/level/levelgen/structure/StructurePieceAccessor;Lnet/minecraft/util/RandomSource;IIILnet/minecraft/core/Direction;I)Lnet/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$CastleSmallCorridorLeftTurnPiece; +MD: net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$CastleSmallCorridorPiece/ (ILnet/minecraft/world/level/levelgen/structure/BoundingBox;Lnet/minecraft/core/Direction;)V net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$CastleSmallCorridorPiece/ (ILnet/minecraft/world/level/levelgen/structure/BoundingBox;Lnet/minecraft/core/Direction;)V +MD: net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$CastleSmallCorridorPiece/ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$CastleSmallCorridorPiece/ (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$CastleSmallCorridorPiece/m_213694_ (Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/world/level/StructureManager;Lnet/minecraft/world/level/chunk/ChunkGenerator;Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/levelgen/structure/BoundingBox;Lnet/minecraft/world/level/ChunkPos;Lnet/minecraft/core/BlockPos;)V net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$CastleSmallCorridorPiece/postProcess (Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/world/level/StructureManager;Lnet/minecraft/world/level/chunk/ChunkGenerator;Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/levelgen/structure/BoundingBox;Lnet/minecraft/world/level/ChunkPos;Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$CastleSmallCorridorPiece/m_214092_ (Lnet/minecraft/world/level/levelgen/structure/StructurePiece;Lnet/minecraft/world/level/levelgen/structure/StructurePieceAccessor;Lnet/minecraft/util/RandomSource;)V net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$CastleSmallCorridorPiece/addChildren (Lnet/minecraft/world/level/levelgen/structure/StructurePiece;Lnet/minecraft/world/level/levelgen/structure/StructurePieceAccessor;Lnet/minecraft/util/RandomSource;)V +MD: net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$CastleSmallCorridorPiece/m_228282_ (Lnet/minecraft/world/level/levelgen/structure/StructurePieceAccessor;IIILnet/minecraft/core/Direction;I)Lnet/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$CastleSmallCorridorPiece; net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$CastleSmallCorridorPiece/createPiece (Lnet/minecraft/world/level/levelgen/structure/StructurePieceAccessor;IIILnet/minecraft/core/Direction;I)Lnet/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$CastleSmallCorridorPiece; +MD: net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$CastleSmallCorridorRightTurnPiece/ (ILnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/levelgen/structure/BoundingBox;Lnet/minecraft/core/Direction;)V net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$CastleSmallCorridorRightTurnPiece/ (ILnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/levelgen/structure/BoundingBox;Lnet/minecraft/core/Direction;)V +MD: net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$CastleSmallCorridorRightTurnPiece/ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$CastleSmallCorridorRightTurnPiece/ (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$CastleSmallCorridorRightTurnPiece/m_183620_ (Lnet/minecraft/world/level/levelgen/structure/pieces/StructurePieceSerializationContext;Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$CastleSmallCorridorRightTurnPiece/addAdditionalSaveData (Lnet/minecraft/world/level/levelgen/structure/pieces/StructurePieceSerializationContext;Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$CastleSmallCorridorRightTurnPiece/m_213694_ (Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/world/level/StructureManager;Lnet/minecraft/world/level/chunk/ChunkGenerator;Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/levelgen/structure/BoundingBox;Lnet/minecraft/world/level/ChunkPos;Lnet/minecraft/core/BlockPos;)V net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$CastleSmallCorridorRightTurnPiece/postProcess (Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/world/level/StructureManager;Lnet/minecraft/world/level/chunk/ChunkGenerator;Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/levelgen/structure/BoundingBox;Lnet/minecraft/world/level/ChunkPos;Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$CastleSmallCorridorRightTurnPiece/m_214092_ (Lnet/minecraft/world/level/levelgen/structure/StructurePiece;Lnet/minecraft/world/level/levelgen/structure/StructurePieceAccessor;Lnet/minecraft/util/RandomSource;)V net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$CastleSmallCorridorRightTurnPiece/addChildren (Lnet/minecraft/world/level/levelgen/structure/StructurePiece;Lnet/minecraft/world/level/levelgen/structure/StructurePieceAccessor;Lnet/minecraft/util/RandomSource;)V +MD: net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$CastleSmallCorridorRightTurnPiece/m_228312_ (Lnet/minecraft/world/level/levelgen/structure/StructurePieceAccessor;Lnet/minecraft/util/RandomSource;IIILnet/minecraft/core/Direction;I)Lnet/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$CastleSmallCorridorRightTurnPiece; net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$CastleSmallCorridorRightTurnPiece/createPiece (Lnet/minecraft/world/level/levelgen/structure/StructurePieceAccessor;Lnet/minecraft/util/RandomSource;IIILnet/minecraft/core/Direction;I)Lnet/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$CastleSmallCorridorRightTurnPiece; +MD: net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$CastleStalkRoom/ (ILnet/minecraft/world/level/levelgen/structure/BoundingBox;Lnet/minecraft/core/Direction;)V net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$CastleStalkRoom/ (ILnet/minecraft/world/level/levelgen/structure/BoundingBox;Lnet/minecraft/core/Direction;)V +MD: net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$CastleStalkRoom/ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$CastleStalkRoom/ (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$CastleStalkRoom/m_213694_ (Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/world/level/StructureManager;Lnet/minecraft/world/level/chunk/ChunkGenerator;Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/levelgen/structure/BoundingBox;Lnet/minecraft/world/level/ChunkPos;Lnet/minecraft/core/BlockPos;)V net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$CastleStalkRoom/postProcess (Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/world/level/StructureManager;Lnet/minecraft/world/level/chunk/ChunkGenerator;Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/levelgen/structure/BoundingBox;Lnet/minecraft/world/level/ChunkPos;Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$CastleStalkRoom/m_214092_ (Lnet/minecraft/world/level/levelgen/structure/StructurePiece;Lnet/minecraft/world/level/levelgen/structure/StructurePieceAccessor;Lnet/minecraft/util/RandomSource;)V net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$CastleStalkRoom/addChildren (Lnet/minecraft/world/level/levelgen/structure/StructurePiece;Lnet/minecraft/world/level/levelgen/structure/StructurePieceAccessor;Lnet/minecraft/util/RandomSource;)V +MD: net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$CastleStalkRoom/m_228344_ (Lnet/minecraft/world/level/levelgen/structure/StructurePieceAccessor;IIILnet/minecraft/core/Direction;I)Lnet/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$CastleStalkRoom; net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$CastleStalkRoom/createPiece (Lnet/minecraft/world/level/levelgen/structure/StructurePieceAccessor;IIILnet/minecraft/core/Direction;I)Lnet/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$CastleStalkRoom; +MD: net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$MonsterThrone/ (ILnet/minecraft/world/level/levelgen/structure/BoundingBox;Lnet/minecraft/core/Direction;)V net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$MonsterThrone/ (ILnet/minecraft/world/level/levelgen/structure/BoundingBox;Lnet/minecraft/core/Direction;)V +MD: net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$MonsterThrone/ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$MonsterThrone/ (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$MonsterThrone/m_183620_ (Lnet/minecraft/world/level/levelgen/structure/pieces/StructurePieceSerializationContext;Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$MonsterThrone/addAdditionalSaveData (Lnet/minecraft/world/level/levelgen/structure/pieces/StructurePieceSerializationContext;Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$MonsterThrone/m_213694_ (Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/world/level/StructureManager;Lnet/minecraft/world/level/chunk/ChunkGenerator;Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/levelgen/structure/BoundingBox;Lnet/minecraft/world/level/ChunkPos;Lnet/minecraft/core/BlockPos;)V net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$MonsterThrone/postProcess (Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/world/level/StructureManager;Lnet/minecraft/world/level/chunk/ChunkGenerator;Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/levelgen/structure/BoundingBox;Lnet/minecraft/world/level/ChunkPos;Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$MonsterThrone/m_228369_ (Lnet/minecraft/world/level/levelgen/structure/StructurePieceAccessor;IIIILnet/minecraft/core/Direction;)Lnet/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$MonsterThrone; net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$MonsterThrone/createPiece (Lnet/minecraft/world/level/levelgen/structure/StructurePieceAccessor;IIIILnet/minecraft/core/Direction;)Lnet/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$MonsterThrone; +MD: net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$NetherBridgePiece/ (Lnet/minecraft/world/level/levelgen/structure/pieces/StructurePieceType;Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$NetherBridgePiece/ (Lnet/minecraft/world/level/levelgen/structure/pieces/StructurePieceType;Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$NetherBridgePiece/ (Lnet/minecraft/world/level/levelgen/structure/pieces/StructurePieceType;ILnet/minecraft/world/level/levelgen/structure/BoundingBox;)V net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$NetherBridgePiece/ (Lnet/minecraft/world/level/levelgen/structure/pieces/StructurePieceType;ILnet/minecraft/world/level/levelgen/structure/BoundingBox;)V +MD: net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$NetherBridgePiece/m_183620_ (Lnet/minecraft/world/level/levelgen/structure/pieces/StructurePieceSerializationContext;Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$NetherBridgePiece/addAdditionalSaveData (Lnet/minecraft/world/level/levelgen/structure/pieces/StructurePieceSerializationContext;Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$NetherBridgePiece/m_228386_ (Lnet/minecraft/world/level/levelgen/structure/BoundingBox;)Z net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$NetherBridgePiece/isOkBox (Lnet/minecraft/world/level/levelgen/structure/BoundingBox;)Z +MD: net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$NetherBridgePiece/m_228391_ (Lnet/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$StartPiece;Lnet/minecraft/world/level/levelgen/structure/StructurePieceAccessor;Lnet/minecraft/util/RandomSource;IIILnet/minecraft/core/Direction;IZ)Lnet/minecraft/world/level/levelgen/structure/StructurePiece; net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$NetherBridgePiece/generateAndAddPiece (Lnet/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$StartPiece;Lnet/minecraft/world/level/levelgen/structure/StructurePieceAccessor;Lnet/minecraft/util/RandomSource;IIILnet/minecraft/core/Direction;IZ)Lnet/minecraft/world/level/levelgen/structure/StructurePiece; +MD: net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$NetherBridgePiece/m_228401_ (Lnet/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$StartPiece;Lnet/minecraft/world/level/levelgen/structure/StructurePieceAccessor;Lnet/minecraft/util/RandomSource;IIZ)Lnet/minecraft/world/level/levelgen/structure/StructurePiece; net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$NetherBridgePiece/generateChildForward (Lnet/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$StartPiece;Lnet/minecraft/world/level/levelgen/structure/StructurePieceAccessor;Lnet/minecraft/util/RandomSource;IIZ)Lnet/minecraft/world/level/levelgen/structure/StructurePiece; +MD: net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$NetherBridgePiece/m_228408_ (Lnet/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$StartPiece;Ljava/util/List;Lnet/minecraft/world/level/levelgen/structure/StructurePieceAccessor;Lnet/minecraft/util/RandomSource;IIILnet/minecraft/core/Direction;I)Lnet/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$NetherBridgePiece; net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$NetherBridgePiece/generatePiece (Lnet/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$StartPiece;Ljava/util/List;Lnet/minecraft/world/level/levelgen/structure/StructurePieceAccessor;Lnet/minecraft/util/RandomSource;IIILnet/minecraft/core/Direction;I)Lnet/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$NetherBridgePiece; +MD: net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$NetherBridgePiece/m_228418_ (Ljava/util/List;)I net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$NetherBridgePiece/updatePieceWeight (Ljava/util/List;)I +MD: net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$NetherBridgePiece/m_228420_ (Lnet/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$StartPiece;Lnet/minecraft/world/level/levelgen/structure/StructurePieceAccessor;Lnet/minecraft/util/RandomSource;IIZ)Lnet/minecraft/world/level/levelgen/structure/StructurePiece; net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$NetherBridgePiece/generateChildLeft (Lnet/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$StartPiece;Lnet/minecraft/world/level/levelgen/structure/StructurePieceAccessor;Lnet/minecraft/util/RandomSource;IIZ)Lnet/minecraft/world/level/levelgen/structure/StructurePiece; +MD: net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$NetherBridgePiece/m_228427_ (Lnet/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$StartPiece;Lnet/minecraft/world/level/levelgen/structure/StructurePieceAccessor;Lnet/minecraft/util/RandomSource;IIZ)Lnet/minecraft/world/level/levelgen/structure/StructurePiece; net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$NetherBridgePiece/generateChildRight (Lnet/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$StartPiece;Lnet/minecraft/world/level/levelgen/structure/StructurePieceAccessor;Lnet/minecraft/util/RandomSource;IIZ)Lnet/minecraft/world/level/levelgen/structure/StructurePiece; +MD: net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$PieceWeight/ (Ljava/lang/Class;IIZ)V net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$PieceWeight/ (Ljava/lang/Class;IIZ)V +MD: net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$PieceWeight/ (Ljava/lang/Class;II)V net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$PieceWeight/ (Ljava/lang/Class;II)V +MD: net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$PieceWeight/m_228448_ ()Z net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$PieceWeight/isValid ()Z +MD: net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$PieceWeight/m_228449_ (I)Z net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$PieceWeight/doPlace (I)Z +MD: net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$RoomCrossing/ (ILnet/minecraft/world/level/levelgen/structure/BoundingBox;Lnet/minecraft/core/Direction;)V net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$RoomCrossing/ (ILnet/minecraft/world/level/levelgen/structure/BoundingBox;Lnet/minecraft/core/Direction;)V +MD: net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$RoomCrossing/ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$RoomCrossing/ (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$RoomCrossing/m_213694_ (Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/world/level/StructureManager;Lnet/minecraft/world/level/chunk/ChunkGenerator;Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/levelgen/structure/BoundingBox;Lnet/minecraft/world/level/ChunkPos;Lnet/minecraft/core/BlockPos;)V net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$RoomCrossing/postProcess (Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/world/level/StructureManager;Lnet/minecraft/world/level/chunk/ChunkGenerator;Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/levelgen/structure/BoundingBox;Lnet/minecraft/world/level/ChunkPos;Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$RoomCrossing/m_214092_ (Lnet/minecraft/world/level/levelgen/structure/StructurePiece;Lnet/minecraft/world/level/levelgen/structure/StructurePieceAccessor;Lnet/minecraft/util/RandomSource;)V net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$RoomCrossing/addChildren (Lnet/minecraft/world/level/levelgen/structure/StructurePiece;Lnet/minecraft/world/level/levelgen/structure/StructurePieceAccessor;Lnet/minecraft/util/RandomSource;)V +MD: net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$RoomCrossing/m_228472_ (Lnet/minecraft/world/level/levelgen/structure/StructurePieceAccessor;IIILnet/minecraft/core/Direction;I)Lnet/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$RoomCrossing; net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$RoomCrossing/createPiece (Lnet/minecraft/world/level/levelgen/structure/StructurePieceAccessor;IIILnet/minecraft/core/Direction;I)Lnet/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$RoomCrossing; +MD: net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$StairsRoom/ (ILnet/minecraft/world/level/levelgen/structure/BoundingBox;Lnet/minecraft/core/Direction;)V net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$StairsRoom/ (ILnet/minecraft/world/level/levelgen/structure/BoundingBox;Lnet/minecraft/core/Direction;)V +MD: net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$StairsRoom/ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$StairsRoom/ (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$StairsRoom/m_213694_ (Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/world/level/StructureManager;Lnet/minecraft/world/level/chunk/ChunkGenerator;Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/levelgen/structure/BoundingBox;Lnet/minecraft/world/level/ChunkPos;Lnet/minecraft/core/BlockPos;)V net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$StairsRoom/postProcess (Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/world/level/StructureManager;Lnet/minecraft/world/level/chunk/ChunkGenerator;Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/levelgen/structure/BoundingBox;Lnet/minecraft/world/level/ChunkPos;Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$StairsRoom/m_214092_ (Lnet/minecraft/world/level/levelgen/structure/StructurePiece;Lnet/minecraft/world/level/levelgen/structure/StructurePieceAccessor;Lnet/minecraft/util/RandomSource;)V net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$StairsRoom/addChildren (Lnet/minecraft/world/level/levelgen/structure/StructurePiece;Lnet/minecraft/world/level/levelgen/structure/StructurePieceAccessor;Lnet/minecraft/util/RandomSource;)V +MD: net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$StairsRoom/m_228500_ (Lnet/minecraft/world/level/levelgen/structure/StructurePieceAccessor;IIIILnet/minecraft/core/Direction;)Lnet/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$StairsRoom; net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$StairsRoom/createPiece (Lnet/minecraft/world/level/levelgen/structure/StructurePieceAccessor;IIIILnet/minecraft/core/Direction;)Lnet/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$StairsRoom; +MD: net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$StartPiece/ (Lnet/minecraft/util/RandomSource;II)V net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$StartPiece/ (Lnet/minecraft/util/RandomSource;II)V +MD: net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$StartPiece/ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$StartPiece/ (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/level/levelgen/structure/structures/NetherFortressStructure/ ()V net/minecraft/world/level/levelgen/structure/structures/NetherFortressStructure/ ()V +MD: net/minecraft/world/level/levelgen/structure/structures/NetherFortressStructure/ (Lnet/minecraft/world/level/levelgen/structure/Structure$StructureSettings;)V net/minecraft/world/level/levelgen/structure/structures/NetherFortressStructure/ (Lnet/minecraft/world/level/levelgen/structure/Structure$StructureSettings;)V +MD: net/minecraft/world/level/levelgen/structure/structures/NetherFortressStructure/m_213658_ ()Lnet/minecraft/world/level/levelgen/structure/StructureType; net/minecraft/world/level/levelgen/structure/structures/NetherFortressStructure/type ()Lnet/minecraft/world/level/levelgen/structure/StructureType; +MD: net/minecraft/world/level/levelgen/structure/structures/NetherFortressStructure/m_214086_ (Lnet/minecraft/world/level/levelgen/structure/Structure$GenerationContext;)Ljava/util/Optional; net/minecraft/world/level/levelgen/structure/structures/NetherFortressStructure/findGenerationPoint (Lnet/minecraft/world/level/levelgen/structure/Structure$GenerationContext;)Ljava/util/Optional; +MD: net/minecraft/world/level/levelgen/structure/structures/NetherFortressStructure/m_228524_ (Lnet/minecraft/world/level/levelgen/structure/Structure$GenerationContext;Lnet/minecraft/world/level/levelgen/structure/pieces/StructurePiecesBuilder;)V net/minecraft/world/level/levelgen/structure/structures/NetherFortressStructure/lambda$findGenerationPoint$0 (Lnet/minecraft/world/level/levelgen/structure/Structure$GenerationContext;Lnet/minecraft/world/level/levelgen/structure/pieces/StructurePiecesBuilder;)V +MD: net/minecraft/world/level/levelgen/structure/structures/NetherFortressStructure/m_228527_ (Lnet/minecraft/world/level/levelgen/structure/pieces/StructurePiecesBuilder;Lnet/minecraft/world/level/levelgen/structure/Structure$GenerationContext;)V net/minecraft/world/level/levelgen/structure/structures/NetherFortressStructure/generatePieces (Lnet/minecraft/world/level/levelgen/structure/pieces/StructurePiecesBuilder;Lnet/minecraft/world/level/levelgen/structure/Structure$GenerationContext;)V +MD: net/minecraft/world/level/levelgen/structure/structures/NetherFossilPieces/ ()V net/minecraft/world/level/levelgen/structure/structures/NetherFossilPieces/ ()V +MD: net/minecraft/world/level/levelgen/structure/structures/NetherFossilPieces/ ()V net/minecraft/world/level/levelgen/structure/structures/NetherFossilPieces/ ()V +MD: net/minecraft/world/level/levelgen/structure/structures/NetherFossilPieces/m_228534_ (Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager;Lnet/minecraft/world/level/levelgen/structure/StructurePieceAccessor;Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos;)V net/minecraft/world/level/levelgen/structure/structures/NetherFossilPieces/addPieces (Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager;Lnet/minecraft/world/level/levelgen/structure/StructurePieceAccessor;Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/world/level/levelgen/structure/structures/NetherFossilPieces$NetherFossilPiece/ (Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager;Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/level/levelgen/structure/structures/NetherFossilPieces$NetherFossilPiece/ (Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager;Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/level/levelgen/structure/structures/NetherFossilPieces$NetherFossilPiece/ (Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager;Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/Rotation;)V net/minecraft/world/level/levelgen/structure/structures/NetherFossilPieces$NetherFossilPiece/ (Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager;Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/Rotation;)V +MD: net/minecraft/world/level/levelgen/structure/structures/NetherFossilPieces$NetherFossilPiece/m_183620_ (Lnet/minecraft/world/level/levelgen/structure/pieces/StructurePieceSerializationContext;Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/level/levelgen/structure/structures/NetherFossilPieces$NetherFossilPiece/addAdditionalSaveData (Lnet/minecraft/world/level/levelgen/structure/pieces/StructurePieceSerializationContext;Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/level/levelgen/structure/structures/NetherFossilPieces$NetherFossilPiece/m_213694_ (Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/world/level/StructureManager;Lnet/minecraft/world/level/chunk/ChunkGenerator;Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/levelgen/structure/BoundingBox;Lnet/minecraft/world/level/ChunkPos;Lnet/minecraft/core/BlockPos;)V net/minecraft/world/level/levelgen/structure/structures/NetherFossilPieces$NetherFossilPiece/postProcess (Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/world/level/StructureManager;Lnet/minecraft/world/level/chunk/ChunkGenerator;Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/levelgen/structure/BoundingBox;Lnet/minecraft/world/level/ChunkPos;Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/world/level/levelgen/structure/structures/NetherFossilPieces$NetherFossilPiece/m_213704_ (Ljava/lang/String;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/ServerLevelAccessor;Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/levelgen/structure/BoundingBox;)V net/minecraft/world/level/levelgen/structure/structures/NetherFossilPieces$NetherFossilPiece/handleDataMarker (Ljava/lang/String;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/ServerLevelAccessor;Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/levelgen/structure/BoundingBox;)V +MD: net/minecraft/world/level/levelgen/structure/structures/NetherFossilPieces$NetherFossilPiece/m_228555_ (Lnet/minecraft/world/level/block/Rotation;)Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructurePlaceSettings; net/minecraft/world/level/levelgen/structure/structures/NetherFossilPieces$NetherFossilPiece/makeSettings (Lnet/minecraft/world/level/block/Rotation;)Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructurePlaceSettings; +MD: net/minecraft/world/level/levelgen/structure/structures/NetherFossilPieces$NetherFossilPiece/m_228566_ (Lnet/minecraft/nbt/CompoundTag;Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructurePlaceSettings; net/minecraft/world/level/levelgen/structure/structures/NetherFossilPieces$NetherFossilPiece/lambda$new$0 (Lnet/minecraft/nbt/CompoundTag;Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructurePlaceSettings; +MD: net/minecraft/world/level/levelgen/structure/structures/NetherFossilStructure/ ()V net/minecraft/world/level/levelgen/structure/structures/NetherFossilStructure/ ()V +MD: net/minecraft/world/level/levelgen/structure/structures/NetherFossilStructure/ (Lnet/minecraft/world/level/levelgen/structure/Structure$StructureSettings;Lnet/minecraft/world/level/levelgen/heightproviders/HeightProvider;)V net/minecraft/world/level/levelgen/structure/structures/NetherFossilStructure/ (Lnet/minecraft/world/level/levelgen/structure/Structure$StructureSettings;Lnet/minecraft/world/level/levelgen/heightproviders/HeightProvider;)V +MD: net/minecraft/world/level/levelgen/structure/structures/NetherFossilStructure/m_213658_ ()Lnet/minecraft/world/level/levelgen/structure/StructureType; net/minecraft/world/level/levelgen/structure/structures/NetherFossilStructure/type ()Lnet/minecraft/world/level/levelgen/structure/StructureType; +MD: net/minecraft/world/level/levelgen/structure/structures/NetherFossilStructure/m_214086_ (Lnet/minecraft/world/level/levelgen/structure/Structure$GenerationContext;)Ljava/util/Optional; net/minecraft/world/level/levelgen/structure/structures/NetherFossilStructure/findGenerationPoint (Lnet/minecraft/world/level/levelgen/structure/Structure$GenerationContext;)Ljava/util/Optional; +MD: net/minecraft/world/level/levelgen/structure/structures/NetherFossilStructure/m_228577_ (Lnet/minecraft/world/level/levelgen/structure/Structure$GenerationContext;Lnet/minecraft/world/level/levelgen/WorldgenRandom;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/levelgen/structure/pieces/StructurePiecesBuilder;)V net/minecraft/world/level/levelgen/structure/structures/NetherFossilStructure/lambda$findGenerationPoint$2 (Lnet/minecraft/world/level/levelgen/structure/Structure$GenerationContext;Lnet/minecraft/world/level/levelgen/WorldgenRandom;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/levelgen/structure/pieces/StructurePiecesBuilder;)V +MD: net/minecraft/world/level/levelgen/structure/structures/NetherFossilStructure/m_228582_ (Lnet/minecraft/world/level/levelgen/structure/structures/NetherFossilStructure;)Lnet/minecraft/world/level/levelgen/heightproviders/HeightProvider; net/minecraft/world/level/levelgen/structure/structures/NetherFossilStructure/lambda$static$0 (Lnet/minecraft/world/level/levelgen/structure/structures/NetherFossilStructure;)Lnet/minecraft/world/level/levelgen/heightproviders/HeightProvider; +MD: net/minecraft/world/level/levelgen/structure/structures/NetherFossilStructure/m_228584_ (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/world/level/levelgen/structure/structures/NetherFossilStructure/lambda$static$1 (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces/ ()V net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces/ ()V +MD: net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$1/ ()V net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$1/ ()V +MD: net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$FitDoubleXRoom/ ()V net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$FitDoubleXRoom/ ()V +MD: net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$FitDoubleXRoom/m_213925_ (Lnet/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$RoomDefinition;)Z net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$FitDoubleXRoom/fits (Lnet/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$RoomDefinition;)Z +MD: net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$FitDoubleXRoom/m_214153_ (Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$RoomDefinition;Lnet/minecraft/util/RandomSource;)Lnet/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$OceanMonumentPiece; net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$FitDoubleXRoom/create (Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$RoomDefinition;Lnet/minecraft/util/RandomSource;)Lnet/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$OceanMonumentPiece; +MD: net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$FitDoubleXYRoom/ ()V net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$FitDoubleXYRoom/ ()V +MD: net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$FitDoubleXYRoom/m_213925_ (Lnet/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$RoomDefinition;)Z net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$FitDoubleXYRoom/fits (Lnet/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$RoomDefinition;)Z +MD: net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$FitDoubleXYRoom/m_214153_ (Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$RoomDefinition;Lnet/minecraft/util/RandomSource;)Lnet/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$OceanMonumentPiece; net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$FitDoubleXYRoom/create (Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$RoomDefinition;Lnet/minecraft/util/RandomSource;)Lnet/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$OceanMonumentPiece; +MD: net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$FitDoubleYRoom/ ()V net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$FitDoubleYRoom/ ()V +MD: net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$FitDoubleYRoom/m_213925_ (Lnet/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$RoomDefinition;)Z net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$FitDoubleYRoom/fits (Lnet/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$RoomDefinition;)Z +MD: net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$FitDoubleYRoom/m_214153_ (Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$RoomDefinition;Lnet/minecraft/util/RandomSource;)Lnet/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$OceanMonumentPiece; net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$FitDoubleYRoom/create (Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$RoomDefinition;Lnet/minecraft/util/RandomSource;)Lnet/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$OceanMonumentPiece; +MD: net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$FitDoubleYZRoom/ ()V net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$FitDoubleYZRoom/ ()V +MD: net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$FitDoubleYZRoom/m_213925_ (Lnet/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$RoomDefinition;)Z net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$FitDoubleYZRoom/fits (Lnet/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$RoomDefinition;)Z +MD: net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$FitDoubleYZRoom/m_214153_ (Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$RoomDefinition;Lnet/minecraft/util/RandomSource;)Lnet/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$OceanMonumentPiece; net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$FitDoubleYZRoom/create (Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$RoomDefinition;Lnet/minecraft/util/RandomSource;)Lnet/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$OceanMonumentPiece; +MD: net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$FitDoubleZRoom/ ()V net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$FitDoubleZRoom/ ()V +MD: net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$FitDoubleZRoom/m_213925_ (Lnet/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$RoomDefinition;)Z net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$FitDoubleZRoom/fits (Lnet/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$RoomDefinition;)Z +MD: net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$FitDoubleZRoom/m_214153_ (Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$RoomDefinition;Lnet/minecraft/util/RandomSource;)Lnet/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$OceanMonumentPiece; net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$FitDoubleZRoom/create (Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$RoomDefinition;Lnet/minecraft/util/RandomSource;)Lnet/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$OceanMonumentPiece; +MD: net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$FitSimpleRoom/ ()V net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$FitSimpleRoom/ ()V +MD: net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$FitSimpleRoom/m_213925_ (Lnet/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$RoomDefinition;)Z net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$FitSimpleRoom/fits (Lnet/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$RoomDefinition;)Z +MD: net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$FitSimpleRoom/m_214153_ (Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$RoomDefinition;Lnet/minecraft/util/RandomSource;)Lnet/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$OceanMonumentPiece; net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$FitSimpleRoom/create (Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$RoomDefinition;Lnet/minecraft/util/RandomSource;)Lnet/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$OceanMonumentPiece; +MD: net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$FitSimpleTopRoom/ ()V net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$FitSimpleTopRoom/ ()V +MD: net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$FitSimpleTopRoom/m_213925_ (Lnet/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$RoomDefinition;)Z net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$FitSimpleTopRoom/fits (Lnet/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$RoomDefinition;)Z +MD: net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$FitSimpleTopRoom/m_214153_ (Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$RoomDefinition;Lnet/minecraft/util/RandomSource;)Lnet/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$OceanMonumentPiece; net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$FitSimpleTopRoom/create (Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$RoomDefinition;Lnet/minecraft/util/RandomSource;)Lnet/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$OceanMonumentPiece; +MD: net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$MonumentBuilding/ (Lnet/minecraft/util/RandomSource;IILnet/minecraft/core/Direction;)V net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$MonumentBuilding/ (Lnet/minecraft/util/RandomSource;IILnet/minecraft/core/Direction;)V +MD: net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$MonumentBuilding/ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$MonumentBuilding/ (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$MonumentBuilding/m_213694_ (Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/world/level/StructureManager;Lnet/minecraft/world/level/chunk/ChunkGenerator;Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/levelgen/structure/BoundingBox;Lnet/minecraft/world/level/ChunkPos;Lnet/minecraft/core/BlockPos;)V net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$MonumentBuilding/postProcess (Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/world/level/StructureManager;Lnet/minecraft/world/level/chunk/ChunkGenerator;Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/levelgen/structure/BoundingBox;Lnet/minecraft/world/level/ChunkPos;Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$MonumentBuilding/m_228654_ (Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/levelgen/structure/BoundingBox;)V net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$MonumentBuilding/generateEntranceArchs (Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/levelgen/structure/BoundingBox;)V +MD: net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$MonumentBuilding/m_228666_ (ZILnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/levelgen/structure/BoundingBox;)V net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$MonumentBuilding/generateWing (ZILnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/levelgen/structure/BoundingBox;)V +MD: net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$MonumentBuilding/m_228672_ (Lnet/minecraft/util/RandomSource;)Ljava/util/List; net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$MonumentBuilding/generateRoomGraph (Lnet/minecraft/util/RandomSource;)Ljava/util/List; +MD: net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$MonumentBuilding/m_228674_ (Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/levelgen/structure/BoundingBox;)V net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$MonumentBuilding/generateEntranceWall (Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/levelgen/structure/BoundingBox;)V +MD: net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$MonumentBuilding/m_228678_ (Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/levelgen/structure/BoundingBox;)V net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$MonumentBuilding/generateRoofPiece (Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/levelgen/structure/BoundingBox;)V +MD: net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$MonumentBuilding/m_228682_ (Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/levelgen/structure/BoundingBox;)V net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$MonumentBuilding/generateLowerWall (Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/levelgen/structure/BoundingBox;)V +MD: net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$MonumentBuilding/m_228686_ (Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/levelgen/structure/BoundingBox;)V net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$MonumentBuilding/generateMiddleWall (Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/levelgen/structure/BoundingBox;)V +MD: net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$MonumentBuilding/m_228690_ (Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/levelgen/structure/BoundingBox;)V net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$MonumentBuilding/generateUpperWall (Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/levelgen/structure/BoundingBox;)V +MD: net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$MonumentRoomFitter/m_213925_ (Lnet/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$RoomDefinition;)Z net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$MonumentRoomFitter/fits (Lnet/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$RoomDefinition;)Z +MD: net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$MonumentRoomFitter/m_214153_ (Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$RoomDefinition;Lnet/minecraft/util/RandomSource;)Lnet/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$OceanMonumentPiece; net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$MonumentRoomFitter/create (Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$RoomDefinition;Lnet/minecraft/util/RandomSource;)Lnet/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$OceanMonumentPiece; +MD: net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$OceanMonumentCoreRoom/ (Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$RoomDefinition;)V net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$OceanMonumentCoreRoom/ (Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$RoomDefinition;)V +MD: net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$OceanMonumentCoreRoom/ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$OceanMonumentCoreRoom/ (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$OceanMonumentCoreRoom/m_213694_ (Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/world/level/StructureManager;Lnet/minecraft/world/level/chunk/ChunkGenerator;Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/levelgen/structure/BoundingBox;Lnet/minecraft/world/level/ChunkPos;Lnet/minecraft/core/BlockPos;)V net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$OceanMonumentCoreRoom/postProcess (Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/world/level/StructureManager;Lnet/minecraft/world/level/chunk/ChunkGenerator;Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/levelgen/structure/BoundingBox;Lnet/minecraft/world/level/ChunkPos;Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$OceanMonumentDoubleXRoom/ (Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$RoomDefinition;)V net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$OceanMonumentDoubleXRoom/ (Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$RoomDefinition;)V +MD: net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$OceanMonumentDoubleXRoom/ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$OceanMonumentDoubleXRoom/ (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$OceanMonumentDoubleXRoom/m_213694_ (Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/world/level/StructureManager;Lnet/minecraft/world/level/chunk/ChunkGenerator;Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/levelgen/structure/BoundingBox;Lnet/minecraft/world/level/ChunkPos;Lnet/minecraft/core/BlockPos;)V net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$OceanMonumentDoubleXRoom/postProcess (Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/world/level/StructureManager;Lnet/minecraft/world/level/chunk/ChunkGenerator;Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/levelgen/structure/BoundingBox;Lnet/minecraft/world/level/ChunkPos;Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$OceanMonumentDoubleXYRoom/ (Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$RoomDefinition;)V net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$OceanMonumentDoubleXYRoom/ (Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$RoomDefinition;)V +MD: net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$OceanMonumentDoubleXYRoom/ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$OceanMonumentDoubleXYRoom/ (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$OceanMonumentDoubleXYRoom/m_213694_ (Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/world/level/StructureManager;Lnet/minecraft/world/level/chunk/ChunkGenerator;Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/levelgen/structure/BoundingBox;Lnet/minecraft/world/level/ChunkPos;Lnet/minecraft/core/BlockPos;)V net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$OceanMonumentDoubleXYRoom/postProcess (Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/world/level/StructureManager;Lnet/minecraft/world/level/chunk/ChunkGenerator;Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/levelgen/structure/BoundingBox;Lnet/minecraft/world/level/ChunkPos;Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$OceanMonumentDoubleYRoom/ (Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$RoomDefinition;)V net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$OceanMonumentDoubleYRoom/ (Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$RoomDefinition;)V +MD: net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$OceanMonumentDoubleYRoom/ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$OceanMonumentDoubleYRoom/ (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$OceanMonumentDoubleYRoom/m_213694_ (Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/world/level/StructureManager;Lnet/minecraft/world/level/chunk/ChunkGenerator;Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/levelgen/structure/BoundingBox;Lnet/minecraft/world/level/ChunkPos;Lnet/minecraft/core/BlockPos;)V net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$OceanMonumentDoubleYRoom/postProcess (Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/world/level/StructureManager;Lnet/minecraft/world/level/chunk/ChunkGenerator;Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/levelgen/structure/BoundingBox;Lnet/minecraft/world/level/ChunkPos;Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$OceanMonumentDoubleYZRoom/ (Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$RoomDefinition;)V net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$OceanMonumentDoubleYZRoom/ (Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$RoomDefinition;)V +MD: net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$OceanMonumentDoubleYZRoom/ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$OceanMonumentDoubleYZRoom/ (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$OceanMonumentDoubleYZRoom/m_213694_ (Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/world/level/StructureManager;Lnet/minecraft/world/level/chunk/ChunkGenerator;Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/levelgen/structure/BoundingBox;Lnet/minecraft/world/level/ChunkPos;Lnet/minecraft/core/BlockPos;)V net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$OceanMonumentDoubleYZRoom/postProcess (Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/world/level/StructureManager;Lnet/minecraft/world/level/chunk/ChunkGenerator;Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/levelgen/structure/BoundingBox;Lnet/minecraft/world/level/ChunkPos;Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$OceanMonumentDoubleZRoom/ (Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$RoomDefinition;)V net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$OceanMonumentDoubleZRoom/ (Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$RoomDefinition;)V +MD: net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$OceanMonumentDoubleZRoom/ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$OceanMonumentDoubleZRoom/ (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$OceanMonumentDoubleZRoom/m_213694_ (Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/world/level/StructureManager;Lnet/minecraft/world/level/chunk/ChunkGenerator;Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/levelgen/structure/BoundingBox;Lnet/minecraft/world/level/ChunkPos;Lnet/minecraft/core/BlockPos;)V net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$OceanMonumentDoubleZRoom/postProcess (Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/world/level/StructureManager;Lnet/minecraft/world/level/chunk/ChunkGenerator;Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/levelgen/structure/BoundingBox;Lnet/minecraft/world/level/ChunkPos;Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$OceanMonumentEntryRoom/ (Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$RoomDefinition;)V net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$OceanMonumentEntryRoom/ (Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$RoomDefinition;)V +MD: net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$OceanMonumentEntryRoom/ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$OceanMonumentEntryRoom/ (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$OceanMonumentEntryRoom/m_213694_ (Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/world/level/StructureManager;Lnet/minecraft/world/level/chunk/ChunkGenerator;Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/levelgen/structure/BoundingBox;Lnet/minecraft/world/level/ChunkPos;Lnet/minecraft/core/BlockPos;)V net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$OceanMonumentEntryRoom/postProcess (Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/world/level/StructureManager;Lnet/minecraft/world/level/chunk/ChunkGenerator;Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/levelgen/structure/BoundingBox;Lnet/minecraft/world/level/ChunkPos;Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$OceanMonumentPenthouse/ (Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/levelgen/structure/BoundingBox;)V net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$OceanMonumentPenthouse/ (Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/levelgen/structure/BoundingBox;)V +MD: net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$OceanMonumentPenthouse/ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$OceanMonumentPenthouse/ (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$OceanMonumentPenthouse/m_213694_ (Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/world/level/StructureManager;Lnet/minecraft/world/level/chunk/ChunkGenerator;Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/levelgen/structure/BoundingBox;Lnet/minecraft/world/level/ChunkPos;Lnet/minecraft/core/BlockPos;)V net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$OceanMonumentPenthouse/postProcess (Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/world/level/StructureManager;Lnet/minecraft/world/level/chunk/ChunkGenerator;Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/levelgen/structure/BoundingBox;Lnet/minecraft/world/level/ChunkPos;Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$OceanMonumentPiece/ ()V net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$OceanMonumentPiece/ ()V +MD: net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$OceanMonumentPiece/ (Lnet/minecraft/world/level/levelgen/structure/pieces/StructurePieceType;Lnet/minecraft/core/Direction;ILnet/minecraft/world/level/levelgen/structure/BoundingBox;)V net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$OceanMonumentPiece/ (Lnet/minecraft/world/level/levelgen/structure/pieces/StructurePieceType;Lnet/minecraft/core/Direction;ILnet/minecraft/world/level/levelgen/structure/BoundingBox;)V +MD: net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$OceanMonumentPiece/ (Lnet/minecraft/world/level/levelgen/structure/pieces/StructurePieceType;Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$OceanMonumentPiece/ (Lnet/minecraft/world/level/levelgen/structure/pieces/StructurePieceType;Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$OceanMonumentPiece/ (Lnet/minecraft/world/level/levelgen/structure/pieces/StructurePieceType;ILnet/minecraft/core/Direction;Lnet/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$RoomDefinition;III)V net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$OceanMonumentPiece/ (Lnet/minecraft/world/level/levelgen/structure/pieces/StructurePieceType;ILnet/minecraft/core/Direction;Lnet/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$RoomDefinition;III)V +MD: net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$OceanMonumentPiece/m_183620_ (Lnet/minecraft/world/level/levelgen/structure/pieces/StructurePieceSerializationContext;Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$OceanMonumentPiece/addAdditionalSaveData (Lnet/minecraft/world/level/levelgen/structure/pieces/StructurePieceSerializationContext;Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$OceanMonumentPiece/m_228849_ (Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/world/level/levelgen/structure/BoundingBox;IIIIIILnet/minecraft/world/level/block/state/BlockState;)V net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$OceanMonumentPiece/generateBoxOnFillOnly (Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/world/level/levelgen/structure/BoundingBox;IIIIIILnet/minecraft/world/level/block/state/BlockState;)V +MD: net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$OceanMonumentPiece/m_228859_ (Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/world/level/levelgen/structure/BoundingBox;IIZ)V net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$OceanMonumentPiece/generateDefaultFloor (Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/world/level/levelgen/structure/BoundingBox;IIZ)V +MD: net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$OceanMonumentPiece/m_228865_ (Lnet/minecraft/world/level/levelgen/structure/BoundingBox;IIII)Z net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$OceanMonumentPiece/chunkIntersects (Lnet/minecraft/world/level/levelgen/structure/BoundingBox;IIII)Z +MD: net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$OceanMonumentPiece/m_228874_ (Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$RoomDefinition;III)Lnet/minecraft/world/level/levelgen/structure/BoundingBox; net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$OceanMonumentPiece/makeBoundingBox (Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$RoomDefinition;III)Lnet/minecraft/world/level/levelgen/structure/BoundingBox; +MD: net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$OceanMonumentPiece/m_228880_ (Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/world/level/levelgen/structure/BoundingBox;IIIIII)V net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$OceanMonumentPiece/generateWaterBox (Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/world/level/levelgen/structure/BoundingBox;IIIIII)V +MD: net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$OceanMonumentPiece/m_228889_ (III)I net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$OceanMonumentPiece/getRoomIndex (III)I +MD: net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$OceanMonumentPiece/m_247483_ (Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/world/level/levelgen/structure/BoundingBox;III)V net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$OceanMonumentPiece/spawnElder (Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/world/level/levelgen/structure/BoundingBox;III)V +MD: net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$OceanMonumentSimpleRoom/ (Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$RoomDefinition;Lnet/minecraft/util/RandomSource;)V net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$OceanMonumentSimpleRoom/ (Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$RoomDefinition;Lnet/minecraft/util/RandomSource;)V +MD: net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$OceanMonumentSimpleRoom/ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$OceanMonumentSimpleRoom/ (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$OceanMonumentSimpleRoom/m_213694_ (Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/world/level/StructureManager;Lnet/minecraft/world/level/chunk/ChunkGenerator;Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/levelgen/structure/BoundingBox;Lnet/minecraft/world/level/ChunkPos;Lnet/minecraft/core/BlockPos;)V net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$OceanMonumentSimpleRoom/postProcess (Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/world/level/StructureManager;Lnet/minecraft/world/level/chunk/ChunkGenerator;Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/levelgen/structure/BoundingBox;Lnet/minecraft/world/level/ChunkPos;Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$OceanMonumentSimpleTopRoom/ (Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$RoomDefinition;)V net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$OceanMonumentSimpleTopRoom/ (Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$RoomDefinition;)V +MD: net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$OceanMonumentSimpleTopRoom/ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$OceanMonumentSimpleTopRoom/ (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$OceanMonumentSimpleTopRoom/m_213694_ (Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/world/level/StructureManager;Lnet/minecraft/world/level/chunk/ChunkGenerator;Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/levelgen/structure/BoundingBox;Lnet/minecraft/world/level/ChunkPos;Lnet/minecraft/core/BlockPos;)V net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$OceanMonumentSimpleTopRoom/postProcess (Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/world/level/StructureManager;Lnet/minecraft/world/level/chunk/ChunkGenerator;Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/levelgen/structure/BoundingBox;Lnet/minecraft/world/level/ChunkPos;Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$OceanMonumentWingRoom/ (Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/levelgen/structure/BoundingBox;I)V net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$OceanMonumentWingRoom/ (Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/levelgen/structure/BoundingBox;I)V +MD: net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$OceanMonumentWingRoom/ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$OceanMonumentWingRoom/ (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$OceanMonumentWingRoom/m_213694_ (Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/world/level/StructureManager;Lnet/minecraft/world/level/chunk/ChunkGenerator;Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/levelgen/structure/BoundingBox;Lnet/minecraft/world/level/ChunkPos;Lnet/minecraft/core/BlockPos;)V net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$OceanMonumentWingRoom/postProcess (Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/world/level/StructureManager;Lnet/minecraft/world/level/chunk/ChunkGenerator;Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/levelgen/structure/BoundingBox;Lnet/minecraft/world/level/ChunkPos;Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$RoomDefinition/ (I)V net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$RoomDefinition/ (I)V +MD: net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$RoomDefinition/m_228944_ ()V net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$RoomDefinition/updateOpenings ()V +MD: net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$RoomDefinition/m_228945_ (I)Z net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$RoomDefinition/findSource (I)Z +MD: net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$RoomDefinition/m_228947_ (Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$RoomDefinition;)V net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$RoomDefinition/setConnection (Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$RoomDefinition;)V +MD: net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$RoomDefinition/m_228950_ ()Z net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$RoomDefinition/isSpecial ()Z +MD: net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$RoomDefinition/m_228951_ ()I net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$RoomDefinition/countOpenings ()I +MD: net/minecraft/world/level/levelgen/structure/structures/OceanMonumentStructure/ ()V net/minecraft/world/level/levelgen/structure/structures/OceanMonumentStructure/ ()V +MD: net/minecraft/world/level/levelgen/structure/structures/OceanMonumentStructure/ (Lnet/minecraft/world/level/levelgen/structure/Structure$StructureSettings;)V net/minecraft/world/level/levelgen/structure/structures/OceanMonumentStructure/ (Lnet/minecraft/world/level/levelgen/structure/Structure$StructureSettings;)V +MD: net/minecraft/world/level/levelgen/structure/structures/OceanMonumentStructure/m_213658_ ()Lnet/minecraft/world/level/levelgen/structure/StructureType; net/minecraft/world/level/levelgen/structure/structures/OceanMonumentStructure/type ()Lnet/minecraft/world/level/levelgen/structure/StructureType; +MD: net/minecraft/world/level/levelgen/structure/structures/OceanMonumentStructure/m_214086_ (Lnet/minecraft/world/level/levelgen/structure/Structure$GenerationContext;)Ljava/util/Optional; net/minecraft/world/level/levelgen/structure/structures/OceanMonumentStructure/findGenerationPoint (Lnet/minecraft/world/level/levelgen/structure/Structure$GenerationContext;)Ljava/util/Optional; +MD: net/minecraft/world/level/levelgen/structure/structures/OceanMonumentStructure/m_228956_ (Lnet/minecraft/world/level/ChunkPos;JLnet/minecraft/world/level/levelgen/structure/pieces/PiecesContainer;)Lnet/minecraft/world/level/levelgen/structure/pieces/PiecesContainer; net/minecraft/world/level/levelgen/structure/structures/OceanMonumentStructure/regeneratePiecesAfterLoad (Lnet/minecraft/world/level/ChunkPos;JLnet/minecraft/world/level/levelgen/structure/pieces/PiecesContainer;)Lnet/minecraft/world/level/levelgen/structure/pieces/PiecesContainer; +MD: net/minecraft/world/level/levelgen/structure/structures/OceanMonumentStructure/m_228960_ (Lnet/minecraft/world/level/ChunkPos;Lnet/minecraft/world/level/levelgen/WorldgenRandom;)Lnet/minecraft/world/level/levelgen/structure/StructurePiece; net/minecraft/world/level/levelgen/structure/structures/OceanMonumentStructure/createTopPiece (Lnet/minecraft/world/level/ChunkPos;Lnet/minecraft/world/level/levelgen/WorldgenRandom;)Lnet/minecraft/world/level/levelgen/structure/StructurePiece; +MD: net/minecraft/world/level/levelgen/structure/structures/OceanMonumentStructure/m_228965_ (Lnet/minecraft/world/level/levelgen/structure/Structure$GenerationContext;Lnet/minecraft/world/level/levelgen/structure/pieces/StructurePiecesBuilder;)V net/minecraft/world/level/levelgen/structure/structures/OceanMonumentStructure/lambda$findGenerationPoint$0 (Lnet/minecraft/world/level/levelgen/structure/Structure$GenerationContext;Lnet/minecraft/world/level/levelgen/structure/pieces/StructurePiecesBuilder;)V +MD: net/minecraft/world/level/levelgen/structure/structures/OceanMonumentStructure/m_228968_ (Lnet/minecraft/world/level/levelgen/structure/pieces/StructurePiecesBuilder;Lnet/minecraft/world/level/levelgen/structure/Structure$GenerationContext;)V net/minecraft/world/level/levelgen/structure/structures/OceanMonumentStructure/generatePieces (Lnet/minecraft/world/level/levelgen/structure/pieces/StructurePiecesBuilder;Lnet/minecraft/world/level/levelgen/structure/Structure$GenerationContext;)V +MD: net/minecraft/world/level/levelgen/structure/structures/OceanRuinPieces/ ()V net/minecraft/world/level/levelgen/structure/structures/OceanRuinPieces/ ()V +MD: net/minecraft/world/level/levelgen/structure/structures/OceanRuinPieces/ ()V net/minecraft/world/level/levelgen/structure/structures/OceanRuinPieces/ ()V +MD: net/minecraft/world/level/levelgen/structure/structures/OceanRuinPieces/m_228982_ (Lnet/minecraft/util/RandomSource;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/world/level/levelgen/structure/structures/OceanRuinPieces/getSmallWarmRuin (Lnet/minecraft/util/RandomSource;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/world/level/levelgen/structure/structures/OceanRuinPieces/m_228984_ (Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos;)Ljava/util/List; net/minecraft/world/level/levelgen/structure/structures/OceanRuinPieces/allPositions (Lnet/minecraft/util/RandomSource;Lnet/minecraft/core/BlockPos;)Ljava/util/List; +MD: net/minecraft/world/level/levelgen/structure/structures/OceanRuinPieces/m_228987_ (Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager;Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/block/Rotation;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/levelgen/structure/structures/OceanRuinStructure;Lnet/minecraft/world/level/levelgen/structure/StructurePieceAccessor;)V net/minecraft/world/level/levelgen/structure/structures/OceanRuinPieces/addClusterRuins (Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager;Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/block/Rotation;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/levelgen/structure/structures/OceanRuinStructure;Lnet/minecraft/world/level/levelgen/structure/StructurePieceAccessor;)V +MD: net/minecraft/world/level/levelgen/structure/structures/OceanRuinPieces/m_228994_ (Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/Rotation;Lnet/minecraft/world/level/levelgen/structure/StructurePieceAccessor;Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/levelgen/structure/structures/OceanRuinStructure;)V net/minecraft/world/level/levelgen/structure/structures/OceanRuinPieces/addPieces (Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/Rotation;Lnet/minecraft/world/level/levelgen/structure/StructurePieceAccessor;Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/levelgen/structure/structures/OceanRuinStructure;)V +MD: net/minecraft/world/level/levelgen/structure/structures/OceanRuinPieces/m_229001_ (Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/Rotation;Lnet/minecraft/world/level/levelgen/structure/StructurePieceAccessor;Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/levelgen/structure/structures/OceanRuinStructure;ZF)V net/minecraft/world/level/levelgen/structure/structures/OceanRuinPieces/addPiece (Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/Rotation;Lnet/minecraft/world/level/levelgen/structure/StructurePieceAccessor;Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/levelgen/structure/structures/OceanRuinStructure;ZF)V +MD: net/minecraft/world/level/levelgen/structure/structures/OceanRuinPieces/m_229010_ (Lnet/minecraft/util/RandomSource;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/world/level/levelgen/structure/structures/OceanRuinPieces/getBigWarmRuin (Lnet/minecraft/util/RandomSource;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/world/level/levelgen/structure/structures/OceanRuinPieces/m_277092_ (Lnet/minecraft/world/level/block/Block;Lnet/minecraft/world/level/block/Block;Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureProcessor; net/minecraft/world/level/levelgen/structure/structures/OceanRuinPieces/archyRuleProcessor (Lnet/minecraft/world/level/block/Block;Lnet/minecraft/world/level/block/Block;Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureProcessor; +MD: net/minecraft/world/level/levelgen/structure/structures/OceanRuinPieces$1/ ()V net/minecraft/world/level/levelgen/structure/structures/OceanRuinPieces$1/ ()V +MD: net/minecraft/world/level/levelgen/structure/structures/OceanRuinPieces$OceanRuinPiece/ (Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager;Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/Rotation;FLnet/minecraft/world/level/levelgen/structure/structures/OceanRuinStructure$Type;Z)V net/minecraft/world/level/levelgen/structure/structures/OceanRuinPieces$OceanRuinPiece/ (Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager;Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/Rotation;FLnet/minecraft/world/level/levelgen/structure/structures/OceanRuinStructure$Type;Z)V +MD: net/minecraft/world/level/levelgen/structure/structures/OceanRuinPieces$OceanRuinPiece/ (Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager;Lnet/minecraft/nbt/CompoundTag;Lnet/minecraft/world/level/block/Rotation;FLnet/minecraft/world/level/levelgen/structure/structures/OceanRuinStructure$Type;Z)V net/minecraft/world/level/levelgen/structure/structures/OceanRuinPieces$OceanRuinPiece/ (Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager;Lnet/minecraft/nbt/CompoundTag;Lnet/minecraft/world/level/block/Rotation;FLnet/minecraft/world/level/levelgen/structure/structures/OceanRuinStructure$Type;Z)V +MD: net/minecraft/world/level/levelgen/structure/structures/OceanRuinPieces$OceanRuinPiece/m_183620_ (Lnet/minecraft/world/level/levelgen/structure/pieces/StructurePieceSerializationContext;Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/level/levelgen/structure/structures/OceanRuinPieces$OceanRuinPiece/addAdditionalSaveData (Lnet/minecraft/world/level/levelgen/structure/pieces/StructurePieceSerializationContext;Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/level/levelgen/structure/structures/OceanRuinPieces$OceanRuinPiece/m_213694_ (Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/world/level/StructureManager;Lnet/minecraft/world/level/chunk/ChunkGenerator;Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/levelgen/structure/BoundingBox;Lnet/minecraft/world/level/ChunkPos;Lnet/minecraft/core/BlockPos;)V net/minecraft/world/level/levelgen/structure/structures/OceanRuinPieces$OceanRuinPiece/postProcess (Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/world/level/StructureManager;Lnet/minecraft/world/level/chunk/ChunkGenerator;Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/levelgen/structure/BoundingBox;Lnet/minecraft/world/level/ChunkPos;Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/world/level/levelgen/structure/structures/OceanRuinPieces$OceanRuinPiece/m_213704_ (Ljava/lang/String;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/ServerLevelAccessor;Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/levelgen/structure/BoundingBox;)V net/minecraft/world/level/levelgen/structure/structures/OceanRuinPieces$OceanRuinPiece/handleDataMarker (Ljava/lang/String;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/ServerLevelAccessor;Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/levelgen/structure/BoundingBox;)V +MD: net/minecraft/world/level/levelgen/structure/structures/OceanRuinPieces$OceanRuinPiece/m_229041_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)I net/minecraft/world/level/levelgen/structure/structures/OceanRuinPieces$OceanRuinPiece/getHeight (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)I +MD: net/minecraft/world/level/levelgen/structure/structures/OceanRuinPieces$OceanRuinPiece/m_276759_ (Lnet/minecraft/world/level/block/Rotation;FLnet/minecraft/world/level/levelgen/structure/structures/OceanRuinStructure$Type;Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructurePlaceSettings; net/minecraft/world/level/levelgen/structure/structures/OceanRuinPieces$OceanRuinPiece/lambda$new$0 (Lnet/minecraft/world/level/block/Rotation;FLnet/minecraft/world/level/levelgen/structure/structures/OceanRuinStructure$Type;Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructurePlaceSettings; +MD: net/minecraft/world/level/levelgen/structure/structures/OceanRuinPieces$OceanRuinPiece/m_277007_ (Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager;Lnet/minecraft/nbt/CompoundTag;)Lnet/minecraft/world/level/levelgen/structure/structures/OceanRuinPieces$OceanRuinPiece; net/minecraft/world/level/levelgen/structure/structures/OceanRuinPieces$OceanRuinPiece/create (Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager;Lnet/minecraft/nbt/CompoundTag;)Lnet/minecraft/world/level/levelgen/structure/structures/OceanRuinPieces$OceanRuinPiece; +MD: net/minecraft/world/level/levelgen/structure/structures/OceanRuinPieces$OceanRuinPiece/m_277082_ (Lnet/minecraft/world/level/block/Rotation;FLnet/minecraft/world/level/levelgen/structure/structures/OceanRuinStructure$Type;)Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructurePlaceSettings; net/minecraft/world/level/levelgen/structure/structures/OceanRuinPieces$OceanRuinPiece/makeSettings (Lnet/minecraft/world/level/block/Rotation;FLnet/minecraft/world/level/levelgen/structure/structures/OceanRuinStructure$Type;)Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructurePlaceSettings; +MD: net/minecraft/world/level/levelgen/structure/structures/OceanRuinStructure/ ()V net/minecraft/world/level/levelgen/structure/structures/OceanRuinStructure/ ()V +MD: net/minecraft/world/level/levelgen/structure/structures/OceanRuinStructure/ (Lnet/minecraft/world/level/levelgen/structure/Structure$StructureSettings;Lnet/minecraft/world/level/levelgen/structure/structures/OceanRuinStructure$Type;FF)V net/minecraft/world/level/levelgen/structure/structures/OceanRuinStructure/ (Lnet/minecraft/world/level/levelgen/structure/Structure$StructureSettings;Lnet/minecraft/world/level/levelgen/structure/structures/OceanRuinStructure$Type;FF)V +MD: net/minecraft/world/level/levelgen/structure/structures/OceanRuinStructure/m_213658_ ()Lnet/minecraft/world/level/levelgen/structure/StructureType; net/minecraft/world/level/levelgen/structure/structures/OceanRuinStructure/type ()Lnet/minecraft/world/level/levelgen/structure/StructureType; +MD: net/minecraft/world/level/levelgen/structure/structures/OceanRuinStructure/m_214086_ (Lnet/minecraft/world/level/levelgen/structure/Structure$GenerationContext;)Ljava/util/Optional; net/minecraft/world/level/levelgen/structure/structures/OceanRuinStructure/findGenerationPoint (Lnet/minecraft/world/level/levelgen/structure/Structure$GenerationContext;)Ljava/util/Optional; +MD: net/minecraft/world/level/levelgen/structure/structures/OceanRuinStructure/m_229066_ (Lnet/minecraft/world/level/levelgen/structure/Structure$GenerationContext;Lnet/minecraft/world/level/levelgen/structure/pieces/StructurePiecesBuilder;)V net/minecraft/world/level/levelgen/structure/structures/OceanRuinStructure/lambda$findGenerationPoint$4 (Lnet/minecraft/world/level/levelgen/structure/Structure$GenerationContext;Lnet/minecraft/world/level/levelgen/structure/pieces/StructurePiecesBuilder;)V +MD: net/minecraft/world/level/levelgen/structure/structures/OceanRuinStructure/m_229069_ (Lnet/minecraft/world/level/levelgen/structure/pieces/StructurePiecesBuilder;Lnet/minecraft/world/level/levelgen/structure/Structure$GenerationContext;)V net/minecraft/world/level/levelgen/structure/structures/OceanRuinStructure/generatePieces (Lnet/minecraft/world/level/levelgen/structure/pieces/StructurePiecesBuilder;Lnet/minecraft/world/level/levelgen/structure/Structure$GenerationContext;)V +MD: net/minecraft/world/level/levelgen/structure/structures/OceanRuinStructure/m_229072_ (Lnet/minecraft/world/level/levelgen/structure/structures/OceanRuinStructure;)Ljava/lang/Float; net/minecraft/world/level/levelgen/structure/structures/OceanRuinStructure/lambda$static$2 (Lnet/minecraft/world/level/levelgen/structure/structures/OceanRuinStructure;)Ljava/lang/Float; +MD: net/minecraft/world/level/levelgen/structure/structures/OceanRuinStructure/m_229074_ (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/world/level/levelgen/structure/structures/OceanRuinStructure/lambda$static$3 (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/world/level/levelgen/structure/structures/OceanRuinStructure/m_229076_ (Lnet/minecraft/world/level/levelgen/structure/structures/OceanRuinStructure;)Ljava/lang/Float; net/minecraft/world/level/levelgen/structure/structures/OceanRuinStructure/lambda$static$1 (Lnet/minecraft/world/level/levelgen/structure/structures/OceanRuinStructure;)Ljava/lang/Float; +MD: net/minecraft/world/level/levelgen/structure/structures/OceanRuinStructure/m_229078_ (Lnet/minecraft/world/level/levelgen/structure/structures/OceanRuinStructure;)Lnet/minecraft/world/level/levelgen/structure/structures/OceanRuinStructure$Type; net/minecraft/world/level/levelgen/structure/structures/OceanRuinStructure/lambda$static$0 (Lnet/minecraft/world/level/levelgen/structure/structures/OceanRuinStructure;)Lnet/minecraft/world/level/levelgen/structure/structures/OceanRuinStructure$Type; +MD: net/minecraft/world/level/levelgen/structure/structures/OceanRuinStructure$Type/ ()V net/minecraft/world/level/levelgen/structure/structures/OceanRuinStructure$Type/ ()V +MD: net/minecraft/world/level/levelgen/structure/structures/OceanRuinStructure$Type/ (Ljava/lang/String;ILjava/lang/String;)V net/minecraft/world/level/levelgen/structure/structures/OceanRuinStructure$Type/ (Ljava/lang/String;ILjava/lang/String;)V +MD: net/minecraft/world/level/levelgen/structure/structures/OceanRuinStructure$Type/m_229091_ ()Ljava/lang/String; net/minecraft/world/level/levelgen/structure/structures/OceanRuinStructure$Type/getName ()Ljava/lang/String; +MD: net/minecraft/world/level/levelgen/structure/structures/OceanRuinStructure$Type/m_229092_ ()[Lnet/minecraft/world/level/levelgen/structure/structures/OceanRuinStructure$Type; net/minecraft/world/level/levelgen/structure/structures/OceanRuinStructure$Type/$values ()[Lnet/minecraft/world/level/levelgen/structure/structures/OceanRuinStructure$Type; +MD: net/minecraft/world/level/levelgen/structure/structures/OceanRuinStructure$Type/m_7912_ ()Ljava/lang/String; net/minecraft/world/level/levelgen/structure/structures/OceanRuinStructure$Type/getSerializedName ()Ljava/lang/String; +MD: net/minecraft/world/level/levelgen/structure/structures/OceanRuinStructure$Type/valueOf (Ljava/lang/String;)Lnet/minecraft/world/level/levelgen/structure/structures/OceanRuinStructure$Type; net/minecraft/world/level/levelgen/structure/structures/OceanRuinStructure$Type/valueOf (Ljava/lang/String;)Lnet/minecraft/world/level/levelgen/structure/structures/OceanRuinStructure$Type; +MD: net/minecraft/world/level/levelgen/structure/structures/OceanRuinStructure$Type/values ()[Lnet/minecraft/world/level/levelgen/structure/structures/OceanRuinStructure$Type; net/minecraft/world/level/levelgen/structure/structures/OceanRuinStructure$Type/values ()[Lnet/minecraft/world/level/levelgen/structure/structures/OceanRuinStructure$Type; +MD: net/minecraft/world/level/levelgen/structure/structures/RuinedPortalPiece/ ()V net/minecraft/world/level/levelgen/structure/structures/RuinedPortalPiece/ ()V +MD: net/minecraft/world/level/levelgen/structure/structures/RuinedPortalPiece/ (Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/levelgen/structure/structures/RuinedPortalPiece$VerticalPlacement;Lnet/minecraft/world/level/levelgen/structure/structures/RuinedPortalPiece$Properties;Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate;Lnet/minecraft/world/level/block/Rotation;Lnet/minecraft/world/level/block/Mirror;Lnet/minecraft/core/BlockPos;)V net/minecraft/world/level/levelgen/structure/structures/RuinedPortalPiece/ (Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/levelgen/structure/structures/RuinedPortalPiece$VerticalPlacement;Lnet/minecraft/world/level/levelgen/structure/structures/RuinedPortalPiece$Properties;Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate;Lnet/minecraft/world/level/block/Rotation;Lnet/minecraft/world/level/block/Mirror;Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/world/level/levelgen/structure/structures/RuinedPortalPiece/ (Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager;Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/level/levelgen/structure/structures/RuinedPortalPiece/ (Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager;Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/level/levelgen/structure/structures/RuinedPortalPiece/m_183620_ (Lnet/minecraft/world/level/levelgen/structure/pieces/StructurePieceSerializationContext;Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/level/levelgen/structure/structures/RuinedPortalPiece/addAdditionalSaveData (Lnet/minecraft/world/level/levelgen/structure/pieces/StructurePieceSerializationContext;Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/level/levelgen/structure/structures/RuinedPortalPiece/m_213694_ (Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/world/level/StructureManager;Lnet/minecraft/world/level/chunk/ChunkGenerator;Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/levelgen/structure/BoundingBox;Lnet/minecraft/world/level/ChunkPos;Lnet/minecraft/core/BlockPos;)V net/minecraft/world/level/levelgen/structure/structures/RuinedPortalPiece/postProcess (Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/world/level/StructureManager;Lnet/minecraft/world/level/chunk/ChunkGenerator;Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/levelgen/structure/BoundingBox;Lnet/minecraft/world/level/ChunkPos;Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/world/level/levelgen/structure/structures/RuinedPortalPiece/m_213704_ (Ljava/lang/String;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/ServerLevelAccessor;Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/levelgen/structure/BoundingBox;)V net/minecraft/world/level/levelgen/structure/structures/RuinedPortalPiece/handleDataMarker (Ljava/lang/String;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/ServerLevelAccessor;Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/levelgen/structure/BoundingBox;)V +MD: net/minecraft/world/level/levelgen/structure/structures/RuinedPortalPiece/m_229117_ (Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/LevelAccessor;)V net/minecraft/world/level/levelgen/structure/structures/RuinedPortalPiece/addNetherrackDripColumnsBelowPortal (Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/LevelAccessor;)V +MD: net/minecraft/world/level/levelgen/structure/structures/RuinedPortalPiece/m_229120_ (Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;)V net/minecraft/world/level/levelgen/structure/structures/RuinedPortalPiece/maybeAddVines (Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/world/level/levelgen/structure/structures/RuinedPortalPiece/m_229124_ (Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/core/BlockPos;)V net/minecraft/world/level/levelgen/structure/structures/RuinedPortalPiece/lambda$postProcess$2 (Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/world/level/levelgen/structure/structures/RuinedPortalPiece/m_229128_ (Lnet/minecraft/world/level/LevelAccessor;IILnet/minecraft/world/level/levelgen/structure/structures/RuinedPortalPiece$VerticalPlacement;)I net/minecraft/world/level/levelgen/structure/structures/RuinedPortalPiece/getSurfaceY (Lnet/minecraft/world/level/LevelAccessor;IILnet/minecraft/world/level/levelgen/structure/structures/RuinedPortalPiece$VerticalPlacement;)I +MD: net/minecraft/world/level/levelgen/structure/structures/RuinedPortalPiece/m_229133_ (Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/level/levelgen/structure/structures/RuinedPortalPiece/canBlockBeReplacedByNetherrackOrMagma (Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/level/levelgen/structure/structures/RuinedPortalPiece/m_229144_ (Lnet/minecraft/world/level/block/Block;FLnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/levelgen/structure/templatesystem/ProcessorRule; net/minecraft/world/level/levelgen/structure/structures/RuinedPortalPiece/getBlockReplaceRule (Lnet/minecraft/world/level/block/Block;FLnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/levelgen/structure/templatesystem/ProcessorRule; +MD: net/minecraft/world/level/levelgen/structure/structures/RuinedPortalPiece/m_229148_ (Lnet/minecraft/world/level/block/Block;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/levelgen/structure/templatesystem/ProcessorRule; net/minecraft/world/level/levelgen/structure/structures/RuinedPortalPiece/getBlockReplaceRule (Lnet/minecraft/world/level/block/Block;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/levelgen/structure/templatesystem/ProcessorRule; +MD: net/minecraft/world/level/levelgen/structure/structures/RuinedPortalPiece/m_229151_ (Lnet/minecraft/world/level/block/Mirror;Lnet/minecraft/world/level/block/Rotation;Lnet/minecraft/world/level/levelgen/structure/structures/RuinedPortalPiece$VerticalPlacement;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/levelgen/structure/structures/RuinedPortalPiece$Properties;)Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructurePlaceSettings; net/minecraft/world/level/levelgen/structure/structures/RuinedPortalPiece/makeSettings (Lnet/minecraft/world/level/block/Mirror;Lnet/minecraft/world/level/block/Rotation;Lnet/minecraft/world/level/levelgen/structure/structures/RuinedPortalPiece$VerticalPlacement;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/levelgen/structure/structures/RuinedPortalPiece$Properties;)Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructurePlaceSettings; +MD: net/minecraft/world/level/levelgen/structure/structures/RuinedPortalPiece/m_229160_ (Lnet/minecraft/world/level/levelgen/structure/structures/RuinedPortalPiece$VerticalPlacement;)Lnet/minecraft/world/level/levelgen/Heightmap$Types; net/minecraft/world/level/levelgen/structure/structures/RuinedPortalPiece/getHeightMapType (Lnet/minecraft/world/level/levelgen/structure/structures/RuinedPortalPiece$VerticalPlacement;)Lnet/minecraft/world/level/levelgen/Heightmap$Types; +MD: net/minecraft/world/level/levelgen/structure/structures/RuinedPortalPiece/m_229162_ (Lnet/minecraft/world/level/levelgen/structure/structures/RuinedPortalPiece$VerticalPlacement;Lnet/minecraft/world/level/levelgen/structure/structures/RuinedPortalPiece$Properties;)Lnet/minecraft/world/level/levelgen/structure/templatesystem/ProcessorRule; net/minecraft/world/level/levelgen/structure/structures/RuinedPortalPiece/getLavaProcessorRule (Lnet/minecraft/world/level/levelgen/structure/structures/RuinedPortalPiece$VerticalPlacement;Lnet/minecraft/world/level/levelgen/structure/structures/RuinedPortalPiece$Properties;)Lnet/minecraft/world/level/levelgen/structure/templatesystem/ProcessorRule; +MD: net/minecraft/world/level/levelgen/structure/structures/RuinedPortalPiece/m_229165_ (Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager;Lnet/minecraft/nbt/CompoundTag;Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructurePlaceSettings; net/minecraft/world/level/levelgen/structure/structures/RuinedPortalPiece/makeSettings (Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager;Lnet/minecraft/nbt/CompoundTag;Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructurePlaceSettings; +MD: net/minecraft/world/level/levelgen/structure/structures/RuinedPortalPiece/m_229175_ (Lnet/minecraft/nbt/CompoundTag;Lnet/minecraft/nbt/Tag;)V net/minecraft/world/level/levelgen/structure/structures/RuinedPortalPiece/lambda$addAdditionalSaveData$1 (Lnet/minecraft/nbt/CompoundTag;Lnet/minecraft/nbt/Tag;)V +MD: net/minecraft/world/level/levelgen/structure/structures/RuinedPortalPiece/m_229178_ (Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/LevelAccessor;)V net/minecraft/world/level/levelgen/structure/structures/RuinedPortalPiece/spreadNetherrack (Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/LevelAccessor;)V +MD: net/minecraft/world/level/levelgen/structure/structures/RuinedPortalPiece/m_229181_ (Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;)V net/minecraft/world/level/levelgen/structure/structures/RuinedPortalPiece/maybeAddLeavesAbove (Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/world/level/levelgen/structure/structures/RuinedPortalPiece/m_229185_ (Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager;Lnet/minecraft/nbt/CompoundTag;Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructurePlaceSettings; net/minecraft/world/level/levelgen/structure/structures/RuinedPortalPiece/lambda$new$0 (Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager;Lnet/minecraft/nbt/CompoundTag;Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructurePlaceSettings; +MD: net/minecraft/world/level/levelgen/structure/structures/RuinedPortalPiece/m_229189_ (Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;)V net/minecraft/world/level/levelgen/structure/structures/RuinedPortalPiece/addNetherrackDripColumn (Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/world/level/levelgen/structure/structures/RuinedPortalPiece/m_229193_ (Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;)V net/minecraft/world/level/levelgen/structure/structures/RuinedPortalPiece/placeNetherrackOrMagma (Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/world/level/levelgen/structure/structures/RuinedPortalPiece$Properties/ ()V net/minecraft/world/level/levelgen/structure/structures/RuinedPortalPiece$Properties/ ()V +MD: net/minecraft/world/level/levelgen/structure/structures/RuinedPortalPiece$Properties/ (ZFZZZZ)V net/minecraft/world/level/levelgen/structure/structures/RuinedPortalPiece$Properties/ (ZFZZZZ)V +MD: net/minecraft/world/level/levelgen/structure/structures/RuinedPortalPiece$Properties/ ()V net/minecraft/world/level/levelgen/structure/structures/RuinedPortalPiece$Properties/ ()V +MD: net/minecraft/world/level/levelgen/structure/structures/RuinedPortalPiece$Properties/m_229213_ (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/world/level/levelgen/structure/structures/RuinedPortalPiece$Properties/lambda$static$6 (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/world/level/levelgen/structure/structures/RuinedPortalPiece$Properties/m_229215_ (Lnet/minecraft/world/level/levelgen/structure/structures/RuinedPortalPiece$Properties;)Ljava/lang/Boolean; net/minecraft/world/level/levelgen/structure/structures/RuinedPortalPiece$Properties/lambda$static$5 (Lnet/minecraft/world/level/levelgen/structure/structures/RuinedPortalPiece$Properties;)Ljava/lang/Boolean; +MD: net/minecraft/world/level/levelgen/structure/structures/RuinedPortalPiece$Properties/m_229217_ (Lnet/minecraft/world/level/levelgen/structure/structures/RuinedPortalPiece$Properties;)Ljava/lang/Boolean; net/minecraft/world/level/levelgen/structure/structures/RuinedPortalPiece$Properties/lambda$static$4 (Lnet/minecraft/world/level/levelgen/structure/structures/RuinedPortalPiece$Properties;)Ljava/lang/Boolean; +MD: net/minecraft/world/level/levelgen/structure/structures/RuinedPortalPiece$Properties/m_229219_ (Lnet/minecraft/world/level/levelgen/structure/structures/RuinedPortalPiece$Properties;)Ljava/lang/Boolean; net/minecraft/world/level/levelgen/structure/structures/RuinedPortalPiece$Properties/lambda$static$3 (Lnet/minecraft/world/level/levelgen/structure/structures/RuinedPortalPiece$Properties;)Ljava/lang/Boolean; +MD: net/minecraft/world/level/levelgen/structure/structures/RuinedPortalPiece$Properties/m_229221_ (Lnet/minecraft/world/level/levelgen/structure/structures/RuinedPortalPiece$Properties;)Ljava/lang/Boolean; net/minecraft/world/level/levelgen/structure/structures/RuinedPortalPiece$Properties/lambda$static$2 (Lnet/minecraft/world/level/levelgen/structure/structures/RuinedPortalPiece$Properties;)Ljava/lang/Boolean; +MD: net/minecraft/world/level/levelgen/structure/structures/RuinedPortalPiece$Properties/m_229223_ (Lnet/minecraft/world/level/levelgen/structure/structures/RuinedPortalPiece$Properties;)Ljava/lang/Float; net/minecraft/world/level/levelgen/structure/structures/RuinedPortalPiece$Properties/lambda$static$1 (Lnet/minecraft/world/level/levelgen/structure/structures/RuinedPortalPiece$Properties;)Ljava/lang/Float; +MD: net/minecraft/world/level/levelgen/structure/structures/RuinedPortalPiece$Properties/m_229225_ (Lnet/minecraft/world/level/levelgen/structure/structures/RuinedPortalPiece$Properties;)Ljava/lang/Boolean; net/minecraft/world/level/levelgen/structure/structures/RuinedPortalPiece$Properties/lambda$static$0 (Lnet/minecraft/world/level/levelgen/structure/structures/RuinedPortalPiece$Properties;)Ljava/lang/Boolean; +MD: net/minecraft/world/level/levelgen/structure/structures/RuinedPortalPiece$VerticalPlacement/ ()V net/minecraft/world/level/levelgen/structure/structures/RuinedPortalPiece$VerticalPlacement/ ()V +MD: net/minecraft/world/level/levelgen/structure/structures/RuinedPortalPiece$VerticalPlacement/ (Ljava/lang/String;ILjava/lang/String;)V net/minecraft/world/level/levelgen/structure/structures/RuinedPortalPiece$VerticalPlacement/ (Ljava/lang/String;ILjava/lang/String;)V +MD: net/minecraft/world/level/levelgen/structure/structures/RuinedPortalPiece$VerticalPlacement/m_229241_ ()Ljava/lang/String; net/minecraft/world/level/levelgen/structure/structures/RuinedPortalPiece$VerticalPlacement/getName ()Ljava/lang/String; +MD: net/minecraft/world/level/levelgen/structure/structures/RuinedPortalPiece$VerticalPlacement/m_229242_ (Ljava/lang/String;)Lnet/minecraft/world/level/levelgen/structure/structures/RuinedPortalPiece$VerticalPlacement; net/minecraft/world/level/levelgen/structure/structures/RuinedPortalPiece$VerticalPlacement/byName (Ljava/lang/String;)Lnet/minecraft/world/level/levelgen/structure/structures/RuinedPortalPiece$VerticalPlacement; +MD: net/minecraft/world/level/levelgen/structure/structures/RuinedPortalPiece$VerticalPlacement/m_229244_ ()[Lnet/minecraft/world/level/levelgen/structure/structures/RuinedPortalPiece$VerticalPlacement; net/minecraft/world/level/levelgen/structure/structures/RuinedPortalPiece$VerticalPlacement/$values ()[Lnet/minecraft/world/level/levelgen/structure/structures/RuinedPortalPiece$VerticalPlacement; +MD: net/minecraft/world/level/levelgen/structure/structures/RuinedPortalPiece$VerticalPlacement/m_7912_ ()Ljava/lang/String; net/minecraft/world/level/levelgen/structure/structures/RuinedPortalPiece$VerticalPlacement/getSerializedName ()Ljava/lang/String; +MD: net/minecraft/world/level/levelgen/structure/structures/RuinedPortalPiece$VerticalPlacement/valueOf (Ljava/lang/String;)Lnet/minecraft/world/level/levelgen/structure/structures/RuinedPortalPiece$VerticalPlacement; net/minecraft/world/level/levelgen/structure/structures/RuinedPortalPiece$VerticalPlacement/valueOf (Ljava/lang/String;)Lnet/minecraft/world/level/levelgen/structure/structures/RuinedPortalPiece$VerticalPlacement; +MD: net/minecraft/world/level/levelgen/structure/structures/RuinedPortalPiece$VerticalPlacement/values ()[Lnet/minecraft/world/level/levelgen/structure/structures/RuinedPortalPiece$VerticalPlacement; net/minecraft/world/level/levelgen/structure/structures/RuinedPortalPiece$VerticalPlacement/values ()[Lnet/minecraft/world/level/levelgen/structure/structures/RuinedPortalPiece$VerticalPlacement; +MD: net/minecraft/world/level/levelgen/structure/structures/RuinedPortalStructure/ ()V net/minecraft/world/level/levelgen/structure/structures/RuinedPortalStructure/ ()V +MD: net/minecraft/world/level/levelgen/structure/structures/RuinedPortalStructure/ (Lnet/minecraft/world/level/levelgen/structure/Structure$StructureSettings;Ljava/util/List;)V net/minecraft/world/level/levelgen/structure/structures/RuinedPortalStructure/ (Lnet/minecraft/world/level/levelgen/structure/Structure$StructureSettings;Ljava/util/List;)V +MD: net/minecraft/world/level/levelgen/structure/structures/RuinedPortalStructure/ (Lnet/minecraft/world/level/levelgen/structure/Structure$StructureSettings;Lnet/minecraft/world/level/levelgen/structure/structures/RuinedPortalStructure$Setup;)V net/minecraft/world/level/levelgen/structure/structures/RuinedPortalStructure/ (Lnet/minecraft/world/level/levelgen/structure/Structure$StructureSettings;Lnet/minecraft/world/level/levelgen/structure/structures/RuinedPortalStructure$Setup;)V +MD: net/minecraft/world/level/levelgen/structure/structures/RuinedPortalStructure/m_213658_ ()Lnet/minecraft/world/level/levelgen/structure/StructureType; net/minecraft/world/level/levelgen/structure/structures/RuinedPortalStructure/type ()Lnet/minecraft/world/level/levelgen/structure/StructureType; +MD: net/minecraft/world/level/levelgen/structure/structures/RuinedPortalStructure/m_214086_ (Lnet/minecraft/world/level/levelgen/structure/Structure$GenerationContext;)Ljava/util/Optional; net/minecraft/world/level/levelgen/structure/structures/RuinedPortalStructure/findGenerationPoint (Lnet/minecraft/world/level/levelgen/structure/Structure$GenerationContext;)Ljava/util/Optional; +MD: net/minecraft/world/level/levelgen/structure/structures/RuinedPortalStructure/m_229262_ (Lnet/minecraft/util/RandomSource;II)I net/minecraft/world/level/levelgen/structure/structures/RuinedPortalStructure/getRandomWithinInterval (Lnet/minecraft/util/RandomSource;II)I +MD: net/minecraft/world/level/levelgen/structure/structures/RuinedPortalStructure/m_229266_ (Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/chunk/ChunkGenerator;Lnet/minecraft/world/level/levelgen/structure/structures/RuinedPortalPiece$VerticalPlacement;ZIILnet/minecraft/world/level/levelgen/structure/BoundingBox;Lnet/minecraft/world/level/LevelHeightAccessor;Lnet/minecraft/world/level/levelgen/RandomState;)I net/minecraft/world/level/levelgen/structure/structures/RuinedPortalStructure/findSuitableY (Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/chunk/ChunkGenerator;Lnet/minecraft/world/level/levelgen/structure/structures/RuinedPortalPiece$VerticalPlacement;ZIILnet/minecraft/world/level/levelgen/structure/BoundingBox;Lnet/minecraft/world/level/LevelHeightAccessor;Lnet/minecraft/world/level/levelgen/RandomState;)I +MD: net/minecraft/world/level/levelgen/structure/structures/RuinedPortalStructure/m_229276_ (Lnet/minecraft/world/level/chunk/ChunkGenerator;Lnet/minecraft/world/level/LevelHeightAccessor;Lnet/minecraft/world/level/levelgen/RandomState;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/NoiseColumn; net/minecraft/world/level/levelgen/structure/structures/RuinedPortalStructure/lambda$findSuitableY$3 (Lnet/minecraft/world/level/chunk/ChunkGenerator;Lnet/minecraft/world/level/LevelHeightAccessor;Lnet/minecraft/world/level/levelgen/RandomState;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/NoiseColumn; +MD: net/minecraft/world/level/levelgen/structure/structures/RuinedPortalStructure/m_229281_ (Lnet/minecraft/world/level/levelgen/WorldgenRandom;F)Z net/minecraft/world/level/levelgen/structure/structures/RuinedPortalStructure/sample (Lnet/minecraft/world/level/levelgen/WorldgenRandom;F)Z +MD: net/minecraft/world/level/levelgen/structure/structures/RuinedPortalStructure/m_229286_ (Lnet/minecraft/world/level/levelgen/structure/structures/RuinedPortalStructure$Setup;Lnet/minecraft/world/level/levelgen/structure/structures/RuinedPortalPiece$Properties;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/levelgen/structure/Structure$GenerationContext;Lnet/minecraft/world/level/levelgen/RandomState;Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate;Lnet/minecraft/world/level/block/Rotation;Lnet/minecraft/world/level/block/Mirror;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/levelgen/structure/pieces/StructurePiecesBuilder;)V net/minecraft/world/level/levelgen/structure/structures/RuinedPortalStructure/lambda$findGenerationPoint$2 (Lnet/minecraft/world/level/levelgen/structure/structures/RuinedPortalStructure$Setup;Lnet/minecraft/world/level/levelgen/structure/structures/RuinedPortalPiece$Properties;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/levelgen/structure/Structure$GenerationContext;Lnet/minecraft/world/level/levelgen/RandomState;Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate;Lnet/minecraft/world/level/block/Rotation;Lnet/minecraft/world/level/block/Mirror;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/levelgen/structure/pieces/StructurePiecesBuilder;)V +MD: net/minecraft/world/level/levelgen/structure/structures/RuinedPortalStructure/m_229298_ (Lnet/minecraft/world/level/levelgen/structure/structures/RuinedPortalStructure;)Ljava/util/List; net/minecraft/world/level/levelgen/structure/structures/RuinedPortalStructure/lambda$static$0 (Lnet/minecraft/world/level/levelgen/structure/structures/RuinedPortalStructure;)Ljava/util/List; +MD: net/minecraft/world/level/levelgen/structure/structures/RuinedPortalStructure/m_229300_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Holder;)Z net/minecraft/world/level/levelgen/structure/structures/RuinedPortalStructure/isCold (Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Holder;)Z +MD: net/minecraft/world/level/levelgen/structure/structures/RuinedPortalStructure/m_229303_ (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/world/level/levelgen/structure/structures/RuinedPortalStructure/lambda$static$1 (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/world/level/levelgen/structure/structures/RuinedPortalStructure$Setup/ ()V net/minecraft/world/level/levelgen/structure/structures/RuinedPortalStructure$Setup/ ()V +MD: net/minecraft/world/level/levelgen/structure/structures/RuinedPortalStructure$Setup/ (Lnet/minecraft/world/level/levelgen/structure/structures/RuinedPortalPiece$VerticalPlacement;FFZZZZF)V net/minecraft/world/level/levelgen/structure/structures/RuinedPortalStructure$Setup/ (Lnet/minecraft/world/level/levelgen/structure/structures/RuinedPortalPiece$VerticalPlacement;FFZZZZF)V +MD: net/minecraft/world/level/levelgen/structure/structures/RuinedPortalStructure$Setup/equals (Ljava/lang/Object;)Z net/minecraft/world/level/levelgen/structure/structures/RuinedPortalStructure$Setup/equals (Ljava/lang/Object;)Z +MD: net/minecraft/world/level/levelgen/structure/structures/RuinedPortalStructure$Setup/f_229307_ ()Lnet/minecraft/world/level/levelgen/structure/structures/RuinedPortalPiece$VerticalPlacement; net/minecraft/world/level/levelgen/structure/structures/RuinedPortalStructure$Setup/placement ()Lnet/minecraft/world/level/levelgen/structure/structures/RuinedPortalPiece$VerticalPlacement; +MD: net/minecraft/world/level/levelgen/structure/structures/RuinedPortalStructure$Setup/f_229308_ ()F net/minecraft/world/level/levelgen/structure/structures/RuinedPortalStructure$Setup/airPocketProbability ()F +MD: net/minecraft/world/level/levelgen/structure/structures/RuinedPortalStructure$Setup/f_229309_ ()F net/minecraft/world/level/levelgen/structure/structures/RuinedPortalStructure$Setup/mossiness ()F +MD: net/minecraft/world/level/levelgen/structure/structures/RuinedPortalStructure$Setup/f_229310_ ()Z net/minecraft/world/level/levelgen/structure/structures/RuinedPortalStructure$Setup/overgrown ()Z +MD: net/minecraft/world/level/levelgen/structure/structures/RuinedPortalStructure$Setup/f_229311_ ()Z net/minecraft/world/level/levelgen/structure/structures/RuinedPortalStructure$Setup/vines ()Z +MD: net/minecraft/world/level/levelgen/structure/structures/RuinedPortalStructure$Setup/f_229312_ ()Z net/minecraft/world/level/levelgen/structure/structures/RuinedPortalStructure$Setup/canBeCold ()Z +MD: net/minecraft/world/level/levelgen/structure/structures/RuinedPortalStructure$Setup/f_229313_ ()Z net/minecraft/world/level/levelgen/structure/structures/RuinedPortalStructure$Setup/replaceWithBlackstone ()Z +MD: net/minecraft/world/level/levelgen/structure/structures/RuinedPortalStructure$Setup/f_229314_ ()F net/minecraft/world/level/levelgen/structure/structures/RuinedPortalStructure$Setup/weight ()F +MD: net/minecraft/world/level/levelgen/structure/structures/RuinedPortalStructure$Setup/hashCode ()I net/minecraft/world/level/levelgen/structure/structures/RuinedPortalStructure$Setup/hashCode ()I +MD: net/minecraft/world/level/levelgen/structure/structures/RuinedPortalStructure$Setup/m_229326_ (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/world/level/levelgen/structure/structures/RuinedPortalStructure$Setup/lambda$static$0 (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/world/level/levelgen/structure/structures/RuinedPortalStructure$Setup/toString ()Ljava/lang/String; net/minecraft/world/level/levelgen/structure/structures/RuinedPortalStructure$Setup/toString ()Ljava/lang/String; +MD: net/minecraft/world/level/levelgen/structure/structures/ShipwreckPieces/ ()V net/minecraft/world/level/levelgen/structure/structures/ShipwreckPieces/ ()V +MD: net/minecraft/world/level/levelgen/structure/structures/ShipwreckPieces/ ()V net/minecraft/world/level/levelgen/structure/structures/ShipwreckPieces/ ()V +MD: net/minecraft/world/level/levelgen/structure/structures/ShipwreckPieces/m_229345_ (Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/Rotation;Lnet/minecraft/world/level/levelgen/structure/StructurePieceAccessor;Lnet/minecraft/util/RandomSource;Z)V net/minecraft/world/level/levelgen/structure/structures/ShipwreckPieces/addPieces (Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/Rotation;Lnet/minecraft/world/level/levelgen/structure/StructurePieceAccessor;Lnet/minecraft/util/RandomSource;Z)V +MD: net/minecraft/world/level/levelgen/structure/structures/ShipwreckPieces$ShipwreckPiece/ (Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager;Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/Rotation;Z)V net/minecraft/world/level/levelgen/structure/structures/ShipwreckPieces$ShipwreckPiece/ (Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager;Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/Rotation;Z)V +MD: net/minecraft/world/level/levelgen/structure/structures/ShipwreckPieces$ShipwreckPiece/ (Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager;Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/level/levelgen/structure/structures/ShipwreckPieces$ShipwreckPiece/ (Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager;Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/level/levelgen/structure/structures/ShipwreckPieces$ShipwreckPiece/m_183620_ (Lnet/minecraft/world/level/levelgen/structure/pieces/StructurePieceSerializationContext;Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/level/levelgen/structure/structures/ShipwreckPieces$ShipwreckPiece/addAdditionalSaveData (Lnet/minecraft/world/level/levelgen/structure/pieces/StructurePieceSerializationContext;Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/level/levelgen/structure/structures/ShipwreckPieces$ShipwreckPiece/m_213694_ (Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/world/level/StructureManager;Lnet/minecraft/world/level/chunk/ChunkGenerator;Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/levelgen/structure/BoundingBox;Lnet/minecraft/world/level/ChunkPos;Lnet/minecraft/core/BlockPos;)V net/minecraft/world/level/levelgen/structure/structures/ShipwreckPieces$ShipwreckPiece/postProcess (Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/world/level/StructureManager;Lnet/minecraft/world/level/chunk/ChunkGenerator;Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/levelgen/structure/BoundingBox;Lnet/minecraft/world/level/ChunkPos;Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/world/level/levelgen/structure/structures/ShipwreckPieces$ShipwreckPiece/m_213704_ (Ljava/lang/String;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/ServerLevelAccessor;Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/levelgen/structure/BoundingBox;)V net/minecraft/world/level/levelgen/structure/structures/ShipwreckPieces$ShipwreckPiece/handleDataMarker (Ljava/lang/String;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/ServerLevelAccessor;Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/levelgen/structure/BoundingBox;)V +MD: net/minecraft/world/level/levelgen/structure/structures/ShipwreckPieces$ShipwreckPiece/m_229370_ (Lnet/minecraft/world/level/block/Rotation;)Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructurePlaceSettings; net/minecraft/world/level/levelgen/structure/structures/ShipwreckPieces$ShipwreckPiece/makeSettings (Lnet/minecraft/world/level/block/Rotation;)Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructurePlaceSettings; +MD: net/minecraft/world/level/levelgen/structure/structures/ShipwreckPieces$ShipwreckPiece/m_229381_ (Lnet/minecraft/nbt/CompoundTag;Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructurePlaceSettings; net/minecraft/world/level/levelgen/structure/structures/ShipwreckPieces$ShipwreckPiece/lambda$new$0 (Lnet/minecraft/nbt/CompoundTag;Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructurePlaceSettings; +MD: net/minecraft/world/level/levelgen/structure/structures/ShipwreckStructure/ ()V net/minecraft/world/level/levelgen/structure/structures/ShipwreckStructure/ ()V +MD: net/minecraft/world/level/levelgen/structure/structures/ShipwreckStructure/ (Lnet/minecraft/world/level/levelgen/structure/Structure$StructureSettings;Z)V net/minecraft/world/level/levelgen/structure/structures/ShipwreckStructure/ (Lnet/minecraft/world/level/levelgen/structure/Structure$StructureSettings;Z)V +MD: net/minecraft/world/level/levelgen/structure/structures/ShipwreckStructure/m_213658_ ()Lnet/minecraft/world/level/levelgen/structure/StructureType; net/minecraft/world/level/levelgen/structure/structures/ShipwreckStructure/type ()Lnet/minecraft/world/level/levelgen/structure/StructureType; +MD: net/minecraft/world/level/levelgen/structure/structures/ShipwreckStructure/m_214086_ (Lnet/minecraft/world/level/levelgen/structure/Structure$GenerationContext;)Ljava/util/Optional; net/minecraft/world/level/levelgen/structure/structures/ShipwreckStructure/findGenerationPoint (Lnet/minecraft/world/level/levelgen/structure/Structure$GenerationContext;)Ljava/util/Optional; +MD: net/minecraft/world/level/levelgen/structure/structures/ShipwreckStructure/m_229392_ (Lnet/minecraft/world/level/levelgen/structure/Structure$GenerationContext;Lnet/minecraft/world/level/levelgen/structure/pieces/StructurePiecesBuilder;)V net/minecraft/world/level/levelgen/structure/structures/ShipwreckStructure/lambda$findGenerationPoint$2 (Lnet/minecraft/world/level/levelgen/structure/Structure$GenerationContext;Lnet/minecraft/world/level/levelgen/structure/pieces/StructurePiecesBuilder;)V +MD: net/minecraft/world/level/levelgen/structure/structures/ShipwreckStructure/m_229395_ (Lnet/minecraft/world/level/levelgen/structure/pieces/StructurePiecesBuilder;Lnet/minecraft/world/level/levelgen/structure/Structure$GenerationContext;)V net/minecraft/world/level/levelgen/structure/structures/ShipwreckStructure/generatePieces (Lnet/minecraft/world/level/levelgen/structure/pieces/StructurePiecesBuilder;Lnet/minecraft/world/level/levelgen/structure/Structure$GenerationContext;)V +MD: net/minecraft/world/level/levelgen/structure/structures/ShipwreckStructure/m_229398_ (Lnet/minecraft/world/level/levelgen/structure/structures/ShipwreckStructure;)Ljava/lang/Boolean; net/minecraft/world/level/levelgen/structure/structures/ShipwreckStructure/lambda$static$0 (Lnet/minecraft/world/level/levelgen/structure/structures/ShipwreckStructure;)Ljava/lang/Boolean; +MD: net/minecraft/world/level/levelgen/structure/structures/ShipwreckStructure/m_229400_ (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/world/level/levelgen/structure/structures/ShipwreckStructure/lambda$static$1 (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces/ ()V net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces/ ()V +MD: net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces/ ()V net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces/ ()V +MD: net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces/m_229416_ ()V net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces/resetPieces ()V +MD: net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces/m_229417_ (Lnet/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$StartPiece;Lnet/minecraft/world/level/levelgen/structure/StructurePieceAccessor;Lnet/minecraft/util/RandomSource;IIILnet/minecraft/core/Direction;I)Lnet/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$StrongholdPiece; net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces/generatePieceFromSmallDoor (Lnet/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$StartPiece;Lnet/minecraft/world/level/levelgen/structure/StructurePieceAccessor;Lnet/minecraft/util/RandomSource;IIILnet/minecraft/core/Direction;I)Lnet/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$StrongholdPiece; +MD: net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces/m_229426_ (Ljava/lang/Class;Lnet/minecraft/world/level/levelgen/structure/StructurePieceAccessor;Lnet/minecraft/util/RandomSource;IIILnet/minecraft/core/Direction;I)Lnet/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$StrongholdPiece; net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces/findAndCreatePieceFactory (Ljava/lang/Class;Lnet/minecraft/world/level/levelgen/structure/StructurePieceAccessor;Lnet/minecraft/util/RandomSource;IIILnet/minecraft/core/Direction;I)Lnet/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$StrongholdPiece; +MD: net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces/m_229435_ ()Z net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces/updatePieceWeight ()Z +MD: net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces/m_229436_ (Lnet/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$StartPiece;Lnet/minecraft/world/level/levelgen/structure/StructurePieceAccessor;Lnet/minecraft/util/RandomSource;IIILnet/minecraft/core/Direction;I)Lnet/minecraft/world/level/levelgen/structure/StructurePiece; net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces/generateAndAddPiece (Lnet/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$StartPiece;Lnet/minecraft/world/level/levelgen/structure/StructurePieceAccessor;Lnet/minecraft/util/RandomSource;IIILnet/minecraft/core/Direction;I)Lnet/minecraft/world/level/levelgen/structure/StructurePiece; +MD: net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$1/ (Ljava/lang/Class;II)V net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$1/ (Ljava/lang/Class;II)V +MD: net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$1/m_214198_ (I)Z net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$1/doPlace (I)Z +MD: net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$2/ (Ljava/lang/Class;II)V net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$2/ (Ljava/lang/Class;II)V +MD: net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$2/m_214198_ (I)Z net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$2/doPlace (I)Z +MD: net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$3/ ()V net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$3/ ()V +MD: net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$ChestCorridor/ (ILnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/levelgen/structure/BoundingBox;Lnet/minecraft/core/Direction;)V net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$ChestCorridor/ (ILnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/levelgen/structure/BoundingBox;Lnet/minecraft/core/Direction;)V +MD: net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$ChestCorridor/ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$ChestCorridor/ (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$ChestCorridor/m_183620_ (Lnet/minecraft/world/level/levelgen/structure/pieces/StructurePieceSerializationContext;Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$ChestCorridor/addAdditionalSaveData (Lnet/minecraft/world/level/levelgen/structure/pieces/StructurePieceSerializationContext;Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$ChestCorridor/m_213694_ (Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/world/level/StructureManager;Lnet/minecraft/world/level/chunk/ChunkGenerator;Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/levelgen/structure/BoundingBox;Lnet/minecraft/world/level/ChunkPos;Lnet/minecraft/core/BlockPos;)V net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$ChestCorridor/postProcess (Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/world/level/StructureManager;Lnet/minecraft/world/level/chunk/ChunkGenerator;Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/levelgen/structure/BoundingBox;Lnet/minecraft/world/level/ChunkPos;Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$ChestCorridor/m_214092_ (Lnet/minecraft/world/level/levelgen/structure/StructurePiece;Lnet/minecraft/world/level/levelgen/structure/StructurePieceAccessor;Lnet/minecraft/util/RandomSource;)V net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$ChestCorridor/addChildren (Lnet/minecraft/world/level/levelgen/structure/StructurePiece;Lnet/minecraft/world/level/levelgen/structure/StructurePieceAccessor;Lnet/minecraft/util/RandomSource;)V +MD: net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$ChestCorridor/m_229483_ (Lnet/minecraft/world/level/levelgen/structure/StructurePieceAccessor;Lnet/minecraft/util/RandomSource;IIILnet/minecraft/core/Direction;I)Lnet/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$ChestCorridor; net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$ChestCorridor/createPiece (Lnet/minecraft/world/level/levelgen/structure/StructurePieceAccessor;Lnet/minecraft/util/RandomSource;IIILnet/minecraft/core/Direction;I)Lnet/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$ChestCorridor; +MD: net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$FillerCorridor/ (ILnet/minecraft/world/level/levelgen/structure/BoundingBox;Lnet/minecraft/core/Direction;)V net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$FillerCorridor/ (ILnet/minecraft/world/level/levelgen/structure/BoundingBox;Lnet/minecraft/core/Direction;)V +MD: net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$FillerCorridor/ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$FillerCorridor/ (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$FillerCorridor/m_183620_ (Lnet/minecraft/world/level/levelgen/structure/pieces/StructurePieceSerializationContext;Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$FillerCorridor/addAdditionalSaveData (Lnet/minecraft/world/level/levelgen/structure/pieces/StructurePieceSerializationContext;Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$FillerCorridor/m_213694_ (Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/world/level/StructureManager;Lnet/minecraft/world/level/chunk/ChunkGenerator;Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/levelgen/structure/BoundingBox;Lnet/minecraft/world/level/ChunkPos;Lnet/minecraft/core/BlockPos;)V net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$FillerCorridor/postProcess (Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/world/level/StructureManager;Lnet/minecraft/world/level/chunk/ChunkGenerator;Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/levelgen/structure/BoundingBox;Lnet/minecraft/world/level/ChunkPos;Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$FillerCorridor/m_229509_ (Lnet/minecraft/world/level/levelgen/structure/StructurePieceAccessor;Lnet/minecraft/util/RandomSource;IIILnet/minecraft/core/Direction;)Lnet/minecraft/world/level/levelgen/structure/BoundingBox; net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$FillerCorridor/findPieceBox (Lnet/minecraft/world/level/levelgen/structure/StructurePieceAccessor;Lnet/minecraft/util/RandomSource;IIILnet/minecraft/core/Direction;)Lnet/minecraft/world/level/levelgen/structure/BoundingBox; +MD: net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$FiveCrossing/ (ILnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/levelgen/structure/BoundingBox;Lnet/minecraft/core/Direction;)V net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$FiveCrossing/ (ILnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/levelgen/structure/BoundingBox;Lnet/minecraft/core/Direction;)V +MD: net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$FiveCrossing/ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$FiveCrossing/ (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$FiveCrossing/m_183620_ (Lnet/minecraft/world/level/levelgen/structure/pieces/StructurePieceSerializationContext;Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$FiveCrossing/addAdditionalSaveData (Lnet/minecraft/world/level/levelgen/structure/pieces/StructurePieceSerializationContext;Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$FiveCrossing/m_213694_ (Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/world/level/StructureManager;Lnet/minecraft/world/level/chunk/ChunkGenerator;Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/levelgen/structure/BoundingBox;Lnet/minecraft/world/level/ChunkPos;Lnet/minecraft/core/BlockPos;)V net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$FiveCrossing/postProcess (Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/world/level/StructureManager;Lnet/minecraft/world/level/chunk/ChunkGenerator;Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/levelgen/structure/BoundingBox;Lnet/minecraft/world/level/ChunkPos;Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$FiveCrossing/m_214092_ (Lnet/minecraft/world/level/levelgen/structure/StructurePiece;Lnet/minecraft/world/level/levelgen/structure/StructurePieceAccessor;Lnet/minecraft/util/RandomSource;)V net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$FiveCrossing/addChildren (Lnet/minecraft/world/level/levelgen/structure/StructurePiece;Lnet/minecraft/world/level/levelgen/structure/StructurePieceAccessor;Lnet/minecraft/util/RandomSource;)V +MD: net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$FiveCrossing/m_229545_ (Lnet/minecraft/world/level/levelgen/structure/StructurePieceAccessor;Lnet/minecraft/util/RandomSource;IIILnet/minecraft/core/Direction;I)Lnet/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$FiveCrossing; net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$FiveCrossing/createPiece (Lnet/minecraft/world/level/levelgen/structure/StructurePieceAccessor;Lnet/minecraft/util/RandomSource;IIILnet/minecraft/core/Direction;I)Lnet/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$FiveCrossing; +MD: net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$LeftTurn/ (ILnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/levelgen/structure/BoundingBox;Lnet/minecraft/core/Direction;)V net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$LeftTurn/ (ILnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/levelgen/structure/BoundingBox;Lnet/minecraft/core/Direction;)V +MD: net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$LeftTurn/ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$LeftTurn/ (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$LeftTurn/m_213694_ (Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/world/level/StructureManager;Lnet/minecraft/world/level/chunk/ChunkGenerator;Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/levelgen/structure/BoundingBox;Lnet/minecraft/world/level/ChunkPos;Lnet/minecraft/core/BlockPos;)V net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$LeftTurn/postProcess (Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/world/level/StructureManager;Lnet/minecraft/world/level/chunk/ChunkGenerator;Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/levelgen/structure/BoundingBox;Lnet/minecraft/world/level/ChunkPos;Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$LeftTurn/m_214092_ (Lnet/minecraft/world/level/levelgen/structure/StructurePiece;Lnet/minecraft/world/level/levelgen/structure/StructurePieceAccessor;Lnet/minecraft/util/RandomSource;)V net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$LeftTurn/addChildren (Lnet/minecraft/world/level/levelgen/structure/StructurePiece;Lnet/minecraft/world/level/levelgen/structure/StructurePieceAccessor;Lnet/minecraft/util/RandomSource;)V +MD: net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$LeftTurn/m_229575_ (Lnet/minecraft/world/level/levelgen/structure/StructurePieceAccessor;Lnet/minecraft/util/RandomSource;IIILnet/minecraft/core/Direction;I)Lnet/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$LeftTurn; net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$LeftTurn/createPiece (Lnet/minecraft/world/level/levelgen/structure/StructurePieceAccessor;Lnet/minecraft/util/RandomSource;IIILnet/minecraft/core/Direction;I)Lnet/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$LeftTurn; +MD: net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$Library/ (ILnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/levelgen/structure/BoundingBox;Lnet/minecraft/core/Direction;)V net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$Library/ (ILnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/levelgen/structure/BoundingBox;Lnet/minecraft/core/Direction;)V +MD: net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$Library/ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$Library/ (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$Library/m_183620_ (Lnet/minecraft/world/level/levelgen/structure/pieces/StructurePieceSerializationContext;Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$Library/addAdditionalSaveData (Lnet/minecraft/world/level/levelgen/structure/pieces/StructurePieceSerializationContext;Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$Library/m_213694_ (Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/world/level/StructureManager;Lnet/minecraft/world/level/chunk/ChunkGenerator;Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/levelgen/structure/BoundingBox;Lnet/minecraft/world/level/ChunkPos;Lnet/minecraft/core/BlockPos;)V net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$Library/postProcess (Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/world/level/StructureManager;Lnet/minecraft/world/level/chunk/ChunkGenerator;Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/levelgen/structure/BoundingBox;Lnet/minecraft/world/level/ChunkPos;Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$Library/m_229603_ (Lnet/minecraft/world/level/levelgen/structure/StructurePieceAccessor;Lnet/minecraft/util/RandomSource;IIILnet/minecraft/core/Direction;I)Lnet/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$Library; net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$Library/createPiece (Lnet/minecraft/world/level/levelgen/structure/StructurePieceAccessor;Lnet/minecraft/util/RandomSource;IIILnet/minecraft/core/Direction;I)Lnet/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$Library; +MD: net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$PieceWeight/ (Ljava/lang/Class;II)V net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$PieceWeight/ (Ljava/lang/Class;II)V +MD: net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$PieceWeight/m_214198_ (I)Z net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$PieceWeight/doPlace (I)Z +MD: net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$PieceWeight/m_229622_ ()Z net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$PieceWeight/isValid ()Z +MD: net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$PortalRoom/ (ILnet/minecraft/world/level/levelgen/structure/BoundingBox;Lnet/minecraft/core/Direction;)V net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$PortalRoom/ (ILnet/minecraft/world/level/levelgen/structure/BoundingBox;Lnet/minecraft/core/Direction;)V +MD: net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$PortalRoom/ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$PortalRoom/ (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$PortalRoom/m_183620_ (Lnet/minecraft/world/level/levelgen/structure/pieces/StructurePieceSerializationContext;Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$PortalRoom/addAdditionalSaveData (Lnet/minecraft/world/level/levelgen/structure/pieces/StructurePieceSerializationContext;Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$PortalRoom/m_213694_ (Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/world/level/StructureManager;Lnet/minecraft/world/level/chunk/ChunkGenerator;Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/levelgen/structure/BoundingBox;Lnet/minecraft/world/level/ChunkPos;Lnet/minecraft/core/BlockPos;)V net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$PortalRoom/postProcess (Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/world/level/StructureManager;Lnet/minecraft/world/level/chunk/ChunkGenerator;Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/levelgen/structure/BoundingBox;Lnet/minecraft/world/level/ChunkPos;Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$PortalRoom/m_214092_ (Lnet/minecraft/world/level/levelgen/structure/StructurePiece;Lnet/minecraft/world/level/levelgen/structure/StructurePieceAccessor;Lnet/minecraft/util/RandomSource;)V net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$PortalRoom/addChildren (Lnet/minecraft/world/level/levelgen/structure/StructurePiece;Lnet/minecraft/world/level/levelgen/structure/StructurePieceAccessor;Lnet/minecraft/util/RandomSource;)V +MD: net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$PortalRoom/m_229646_ (Lnet/minecraft/world/level/levelgen/structure/StructurePieceAccessor;IIILnet/minecraft/core/Direction;I)Lnet/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$PortalRoom; net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$PortalRoom/createPiece (Lnet/minecraft/world/level/levelgen/structure/StructurePieceAccessor;IIILnet/minecraft/core/Direction;I)Lnet/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$PortalRoom; +MD: net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$PrisonHall/ (ILnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/levelgen/structure/BoundingBox;Lnet/minecraft/core/Direction;)V net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$PrisonHall/ (ILnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/levelgen/structure/BoundingBox;Lnet/minecraft/core/Direction;)V +MD: net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$PrisonHall/ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$PrisonHall/ (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$PrisonHall/m_213694_ (Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/world/level/StructureManager;Lnet/minecraft/world/level/chunk/ChunkGenerator;Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/levelgen/structure/BoundingBox;Lnet/minecraft/world/level/ChunkPos;Lnet/minecraft/core/BlockPos;)V net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$PrisonHall/postProcess (Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/world/level/StructureManager;Lnet/minecraft/world/level/chunk/ChunkGenerator;Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/levelgen/structure/BoundingBox;Lnet/minecraft/world/level/ChunkPos;Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$PrisonHall/m_214092_ (Lnet/minecraft/world/level/levelgen/structure/StructurePiece;Lnet/minecraft/world/level/levelgen/structure/StructurePieceAccessor;Lnet/minecraft/util/RandomSource;)V net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$PrisonHall/addChildren (Lnet/minecraft/world/level/levelgen/structure/StructurePiece;Lnet/minecraft/world/level/levelgen/structure/StructurePieceAccessor;Lnet/minecraft/util/RandomSource;)V +MD: net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$PrisonHall/m_229678_ (Lnet/minecraft/world/level/levelgen/structure/StructurePieceAccessor;Lnet/minecraft/util/RandomSource;IIILnet/minecraft/core/Direction;I)Lnet/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$PrisonHall; net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$PrisonHall/createPiece (Lnet/minecraft/world/level/levelgen/structure/StructurePieceAccessor;Lnet/minecraft/util/RandomSource;IIILnet/minecraft/core/Direction;I)Lnet/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$PrisonHall; +MD: net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$RightTurn/ (ILnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/levelgen/structure/BoundingBox;Lnet/minecraft/core/Direction;)V net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$RightTurn/ (ILnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/levelgen/structure/BoundingBox;Lnet/minecraft/core/Direction;)V +MD: net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$RightTurn/ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$RightTurn/ (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$RightTurn/m_213694_ (Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/world/level/StructureManager;Lnet/minecraft/world/level/chunk/ChunkGenerator;Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/levelgen/structure/BoundingBox;Lnet/minecraft/world/level/ChunkPos;Lnet/minecraft/core/BlockPos;)V net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$RightTurn/postProcess (Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/world/level/StructureManager;Lnet/minecraft/world/level/chunk/ChunkGenerator;Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/levelgen/structure/BoundingBox;Lnet/minecraft/world/level/ChunkPos;Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$RightTurn/m_214092_ (Lnet/minecraft/world/level/levelgen/structure/StructurePiece;Lnet/minecraft/world/level/levelgen/structure/StructurePieceAccessor;Lnet/minecraft/util/RandomSource;)V net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$RightTurn/addChildren (Lnet/minecraft/world/level/levelgen/structure/StructurePiece;Lnet/minecraft/world/level/levelgen/structure/StructurePieceAccessor;Lnet/minecraft/util/RandomSource;)V +MD: net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$RightTurn/m_229705_ (Lnet/minecraft/world/level/levelgen/structure/StructurePieceAccessor;Lnet/minecraft/util/RandomSource;IIILnet/minecraft/core/Direction;I)Lnet/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$RightTurn; net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$RightTurn/createPiece (Lnet/minecraft/world/level/levelgen/structure/StructurePieceAccessor;Lnet/minecraft/util/RandomSource;IIILnet/minecraft/core/Direction;I)Lnet/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$RightTurn; +MD: net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$RoomCrossing/ (ILnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/levelgen/structure/BoundingBox;Lnet/minecraft/core/Direction;)V net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$RoomCrossing/ (ILnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/levelgen/structure/BoundingBox;Lnet/minecraft/core/Direction;)V +MD: net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$RoomCrossing/ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$RoomCrossing/ (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$RoomCrossing/m_183620_ (Lnet/minecraft/world/level/levelgen/structure/pieces/StructurePieceSerializationContext;Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$RoomCrossing/addAdditionalSaveData (Lnet/minecraft/world/level/levelgen/structure/pieces/StructurePieceSerializationContext;Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$RoomCrossing/m_213694_ (Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/world/level/StructureManager;Lnet/minecraft/world/level/chunk/ChunkGenerator;Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/levelgen/structure/BoundingBox;Lnet/minecraft/world/level/ChunkPos;Lnet/minecraft/core/BlockPos;)V net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$RoomCrossing/postProcess (Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/world/level/StructureManager;Lnet/minecraft/world/level/chunk/ChunkGenerator;Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/levelgen/structure/BoundingBox;Lnet/minecraft/world/level/ChunkPos;Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$RoomCrossing/m_214092_ (Lnet/minecraft/world/level/levelgen/structure/StructurePiece;Lnet/minecraft/world/level/levelgen/structure/StructurePieceAccessor;Lnet/minecraft/util/RandomSource;)V net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$RoomCrossing/addChildren (Lnet/minecraft/world/level/levelgen/structure/StructurePiece;Lnet/minecraft/world/level/levelgen/structure/StructurePieceAccessor;Lnet/minecraft/util/RandomSource;)V +MD: net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$RoomCrossing/m_229736_ (Lnet/minecraft/world/level/levelgen/structure/StructurePieceAccessor;Lnet/minecraft/util/RandomSource;IIILnet/minecraft/core/Direction;I)Lnet/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$RoomCrossing; net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$RoomCrossing/createPiece (Lnet/minecraft/world/level/levelgen/structure/StructurePieceAccessor;Lnet/minecraft/util/RandomSource;IIILnet/minecraft/core/Direction;I)Lnet/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$RoomCrossing; +MD: net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$SmoothStoneSelector/ ()V net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$SmoothStoneSelector/ ()V +MD: net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$SmoothStoneSelector/m_213766_ (Lnet/minecraft/util/RandomSource;IIIZ)V net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$SmoothStoneSelector/next (Lnet/minecraft/util/RandomSource;IIIZ)V +MD: net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$StairsDown/ (Lnet/minecraft/world/level/levelgen/structure/pieces/StructurePieceType;Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$StairsDown/ (Lnet/minecraft/world/level/levelgen/structure/pieces/StructurePieceType;Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$StairsDown/ (Lnet/minecraft/world/level/levelgen/structure/pieces/StructurePieceType;IIILnet/minecraft/core/Direction;)V net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$StairsDown/ (Lnet/minecraft/world/level/levelgen/structure/pieces/StructurePieceType;IIILnet/minecraft/core/Direction;)V +MD: net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$StairsDown/ (ILnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/levelgen/structure/BoundingBox;Lnet/minecraft/core/Direction;)V net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$StairsDown/ (ILnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/levelgen/structure/BoundingBox;Lnet/minecraft/core/Direction;)V +MD: net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$StairsDown/ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$StairsDown/ (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$StairsDown/m_183620_ (Lnet/minecraft/world/level/levelgen/structure/pieces/StructurePieceSerializationContext;Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$StairsDown/addAdditionalSaveData (Lnet/minecraft/world/level/levelgen/structure/pieces/StructurePieceSerializationContext;Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$StairsDown/m_213694_ (Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/world/level/StructureManager;Lnet/minecraft/world/level/chunk/ChunkGenerator;Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/levelgen/structure/BoundingBox;Lnet/minecraft/world/level/ChunkPos;Lnet/minecraft/core/BlockPos;)V net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$StairsDown/postProcess (Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/world/level/StructureManager;Lnet/minecraft/world/level/chunk/ChunkGenerator;Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/levelgen/structure/BoundingBox;Lnet/minecraft/world/level/ChunkPos;Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$StairsDown/m_214092_ (Lnet/minecraft/world/level/levelgen/structure/StructurePiece;Lnet/minecraft/world/level/levelgen/structure/StructurePieceAccessor;Lnet/minecraft/util/RandomSource;)V net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$StairsDown/addChildren (Lnet/minecraft/world/level/levelgen/structure/StructurePiece;Lnet/minecraft/world/level/levelgen/structure/StructurePieceAccessor;Lnet/minecraft/util/RandomSource;)V +MD: net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$StairsDown/m_229786_ (Lnet/minecraft/world/level/levelgen/structure/StructurePieceAccessor;Lnet/minecraft/util/RandomSource;IIILnet/minecraft/core/Direction;I)Lnet/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$StairsDown; net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$StairsDown/createPiece (Lnet/minecraft/world/level/levelgen/structure/StructurePieceAccessor;Lnet/minecraft/util/RandomSource;IIILnet/minecraft/core/Direction;I)Lnet/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$StairsDown; +MD: net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$StartPiece/ (Lnet/minecraft/util/RandomSource;II)V net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$StartPiece/ (Lnet/minecraft/util/RandomSource;II)V +MD: net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$StartPiece/ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$StartPiece/ (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$StartPiece/m_142171_ ()Lnet/minecraft/core/BlockPos; net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$StartPiece/getLocatorPosition ()Lnet/minecraft/core/BlockPos; +MD: net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$Straight/ (ILnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/levelgen/structure/BoundingBox;Lnet/minecraft/core/Direction;)V net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$Straight/ (ILnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/levelgen/structure/BoundingBox;Lnet/minecraft/core/Direction;)V +MD: net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$Straight/ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$Straight/ (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$Straight/m_183620_ (Lnet/minecraft/world/level/levelgen/structure/pieces/StructurePieceSerializationContext;Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$Straight/addAdditionalSaveData (Lnet/minecraft/world/level/levelgen/structure/pieces/StructurePieceSerializationContext;Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$Straight/m_213694_ (Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/world/level/StructureManager;Lnet/minecraft/world/level/chunk/ChunkGenerator;Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/levelgen/structure/BoundingBox;Lnet/minecraft/world/level/ChunkPos;Lnet/minecraft/core/BlockPos;)V net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$Straight/postProcess (Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/world/level/StructureManager;Lnet/minecraft/world/level/chunk/ChunkGenerator;Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/levelgen/structure/BoundingBox;Lnet/minecraft/world/level/ChunkPos;Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$Straight/m_214092_ (Lnet/minecraft/world/level/levelgen/structure/StructurePiece;Lnet/minecraft/world/level/levelgen/structure/StructurePieceAccessor;Lnet/minecraft/util/RandomSource;)V net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$Straight/addChildren (Lnet/minecraft/world/level/levelgen/structure/StructurePiece;Lnet/minecraft/world/level/levelgen/structure/StructurePieceAccessor;Lnet/minecraft/util/RandomSource;)V +MD: net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$Straight/m_229831_ (Lnet/minecraft/world/level/levelgen/structure/StructurePieceAccessor;Lnet/minecraft/util/RandomSource;IIILnet/minecraft/core/Direction;I)Lnet/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$Straight; net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$Straight/createPiece (Lnet/minecraft/world/level/levelgen/structure/StructurePieceAccessor;Lnet/minecraft/util/RandomSource;IIILnet/minecraft/core/Direction;I)Lnet/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$Straight; +MD: net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$StraightStairsDown/ (ILnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/levelgen/structure/BoundingBox;Lnet/minecraft/core/Direction;)V net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$StraightStairsDown/ (ILnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/levelgen/structure/BoundingBox;Lnet/minecraft/core/Direction;)V +MD: net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$StraightStairsDown/ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$StraightStairsDown/ (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$StraightStairsDown/m_213694_ (Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/world/level/StructureManager;Lnet/minecraft/world/level/chunk/ChunkGenerator;Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/levelgen/structure/BoundingBox;Lnet/minecraft/world/level/ChunkPos;Lnet/minecraft/core/BlockPos;)V net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$StraightStairsDown/postProcess (Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/world/level/StructureManager;Lnet/minecraft/world/level/chunk/ChunkGenerator;Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/levelgen/structure/BoundingBox;Lnet/minecraft/world/level/ChunkPos;Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$StraightStairsDown/m_214092_ (Lnet/minecraft/world/level/levelgen/structure/StructurePiece;Lnet/minecraft/world/level/levelgen/structure/StructurePieceAccessor;Lnet/minecraft/util/RandomSource;)V net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$StraightStairsDown/addChildren (Lnet/minecraft/world/level/levelgen/structure/StructurePiece;Lnet/minecraft/world/level/levelgen/structure/StructurePieceAccessor;Lnet/minecraft/util/RandomSource;)V +MD: net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$StraightStairsDown/m_229864_ (Lnet/minecraft/world/level/levelgen/structure/StructurePieceAccessor;Lnet/minecraft/util/RandomSource;IIILnet/minecraft/core/Direction;I)Lnet/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$StraightStairsDown; net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$StraightStairsDown/createPiece (Lnet/minecraft/world/level/levelgen/structure/StructurePieceAccessor;Lnet/minecraft/util/RandomSource;IIILnet/minecraft/core/Direction;I)Lnet/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$StraightStairsDown; +MD: net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$StrongholdPiece/ (Lnet/minecraft/world/level/levelgen/structure/pieces/StructurePieceType;Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$StrongholdPiece/ (Lnet/minecraft/world/level/levelgen/structure/pieces/StructurePieceType;Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$StrongholdPiece/ (Lnet/minecraft/world/level/levelgen/structure/pieces/StructurePieceType;ILnet/minecraft/world/level/levelgen/structure/BoundingBox;)V net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$StrongholdPiece/ (Lnet/minecraft/world/level/levelgen/structure/pieces/StructurePieceType;ILnet/minecraft/world/level/levelgen/structure/BoundingBox;)V +MD: net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$StrongholdPiece/m_183620_ (Lnet/minecraft/world/level/levelgen/structure/pieces/StructurePieceSerializationContext;Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$StrongholdPiece/addAdditionalSaveData (Lnet/minecraft/world/level/levelgen/structure/pieces/StructurePieceSerializationContext;Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$StrongholdPiece/m_229880_ (Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/levelgen/structure/BoundingBox;Lnet/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$StrongholdPiece$SmallDoorType;III)V net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$StrongholdPiece/generateSmallDoor (Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/levelgen/structure/BoundingBox;Lnet/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$StrongholdPiece$SmallDoorType;III)V +MD: net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$StrongholdPiece/m_229888_ (Lnet/minecraft/world/level/levelgen/structure/BoundingBox;)Z net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$StrongholdPiece/isOkBox (Lnet/minecraft/world/level/levelgen/structure/BoundingBox;)Z +MD: net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$StrongholdPiece/m_229893_ (Lnet/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$StartPiece;Lnet/minecraft/world/level/levelgen/structure/StructurePieceAccessor;Lnet/minecraft/util/RandomSource;II)Lnet/minecraft/world/level/levelgen/structure/StructurePiece; net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$StrongholdPiece/generateSmallDoorChildForward (Lnet/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$StartPiece;Lnet/minecraft/world/level/levelgen/structure/StructurePieceAccessor;Lnet/minecraft/util/RandomSource;II)Lnet/minecraft/world/level/levelgen/structure/StructurePiece; +MD: net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$StrongholdPiece/m_229899_ (Lnet/minecraft/util/RandomSource;)Lnet/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$StrongholdPiece$SmallDoorType; net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$StrongholdPiece/randomSmallDoor (Lnet/minecraft/util/RandomSource;)Lnet/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$StrongholdPiece$SmallDoorType; +MD: net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$StrongholdPiece/m_229901_ (Lnet/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$StartPiece;Lnet/minecraft/world/level/levelgen/structure/StructurePieceAccessor;Lnet/minecraft/util/RandomSource;II)Lnet/minecraft/world/level/levelgen/structure/StructurePiece; net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$StrongholdPiece/generateSmallDoorChildLeft (Lnet/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$StartPiece;Lnet/minecraft/world/level/levelgen/structure/StructurePieceAccessor;Lnet/minecraft/util/RandomSource;II)Lnet/minecraft/world/level/levelgen/structure/StructurePiece; +MD: net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$StrongholdPiece/m_229907_ (Lnet/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$StartPiece;Lnet/minecraft/world/level/levelgen/structure/StructurePieceAccessor;Lnet/minecraft/util/RandomSource;II)Lnet/minecraft/world/level/levelgen/structure/StructurePiece; net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$StrongholdPiece/generateSmallDoorChildRight (Lnet/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$StartPiece;Lnet/minecraft/world/level/levelgen/structure/StructurePieceAccessor;Lnet/minecraft/util/RandomSource;II)Lnet/minecraft/world/level/levelgen/structure/StructurePiece; +MD: net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$StrongholdPiece$SmallDoorType/ ()V net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$StrongholdPiece$SmallDoorType/ ()V +MD: net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$StrongholdPiece$SmallDoorType/ (Ljava/lang/String;I)V net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$StrongholdPiece$SmallDoorType/ (Ljava/lang/String;I)V +MD: net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$StrongholdPiece$SmallDoorType/m_229922_ ()[Lnet/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$StrongholdPiece$SmallDoorType; net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$StrongholdPiece$SmallDoorType/$values ()[Lnet/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$StrongholdPiece$SmallDoorType; +MD: net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$StrongholdPiece$SmallDoorType/valueOf (Ljava/lang/String;)Lnet/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$StrongholdPiece$SmallDoorType; net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$StrongholdPiece$SmallDoorType/valueOf (Ljava/lang/String;)Lnet/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$StrongholdPiece$SmallDoorType; +MD: net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$StrongholdPiece$SmallDoorType/values ()[Lnet/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$StrongholdPiece$SmallDoorType; net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$StrongholdPiece$SmallDoorType/values ()[Lnet/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$StrongholdPiece$SmallDoorType; +MD: net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$Turn/ (Lnet/minecraft/world/level/levelgen/structure/pieces/StructurePieceType;Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$Turn/ (Lnet/minecraft/world/level/levelgen/structure/pieces/StructurePieceType;Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$Turn/ (Lnet/minecraft/world/level/levelgen/structure/pieces/StructurePieceType;ILnet/minecraft/world/level/levelgen/structure/BoundingBox;)V net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$Turn/ (Lnet/minecraft/world/level/levelgen/structure/pieces/StructurePieceType;ILnet/minecraft/world/level/levelgen/structure/BoundingBox;)V +MD: net/minecraft/world/level/levelgen/structure/structures/StrongholdStructure/ ()V net/minecraft/world/level/levelgen/structure/structures/StrongholdStructure/ ()V +MD: net/minecraft/world/level/levelgen/structure/structures/StrongholdStructure/ (Lnet/minecraft/world/level/levelgen/structure/Structure$StructureSettings;)V net/minecraft/world/level/levelgen/structure/structures/StrongholdStructure/ (Lnet/minecraft/world/level/levelgen/structure/Structure$StructureSettings;)V +MD: net/minecraft/world/level/levelgen/structure/structures/StrongholdStructure/m_213658_ ()Lnet/minecraft/world/level/levelgen/structure/StructureType; net/minecraft/world/level/levelgen/structure/structures/StrongholdStructure/type ()Lnet/minecraft/world/level/levelgen/structure/StructureType; +MD: net/minecraft/world/level/levelgen/structure/structures/StrongholdStructure/m_214086_ (Lnet/minecraft/world/level/levelgen/structure/Structure$GenerationContext;)Ljava/util/Optional; net/minecraft/world/level/levelgen/structure/structures/StrongholdStructure/findGenerationPoint (Lnet/minecraft/world/level/levelgen/structure/Structure$GenerationContext;)Ljava/util/Optional; +MD: net/minecraft/world/level/levelgen/structure/structures/StrongholdStructure/m_229942_ (Lnet/minecraft/world/level/levelgen/structure/Structure$GenerationContext;Lnet/minecraft/world/level/levelgen/structure/pieces/StructurePiecesBuilder;)V net/minecraft/world/level/levelgen/structure/structures/StrongholdStructure/lambda$findGenerationPoint$0 (Lnet/minecraft/world/level/levelgen/structure/Structure$GenerationContext;Lnet/minecraft/world/level/levelgen/structure/pieces/StructurePiecesBuilder;)V +MD: net/minecraft/world/level/levelgen/structure/structures/StrongholdStructure/m_229945_ (Lnet/minecraft/world/level/levelgen/structure/pieces/StructurePiecesBuilder;Lnet/minecraft/world/level/levelgen/structure/Structure$GenerationContext;)V net/minecraft/world/level/levelgen/structure/structures/StrongholdStructure/generatePieces (Lnet/minecraft/world/level/levelgen/structure/pieces/StructurePiecesBuilder;Lnet/minecraft/world/level/levelgen/structure/Structure$GenerationContext;)V +MD: net/minecraft/world/level/levelgen/structure/structures/SwampHutPiece/ (Lnet/minecraft/util/RandomSource;II)V net/minecraft/world/level/levelgen/structure/structures/SwampHutPiece/ (Lnet/minecraft/util/RandomSource;II)V +MD: net/minecraft/world/level/levelgen/structure/structures/SwampHutPiece/ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/level/levelgen/structure/structures/SwampHutPiece/ (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/level/levelgen/structure/structures/SwampHutPiece/m_183620_ (Lnet/minecraft/world/level/levelgen/structure/pieces/StructurePieceSerializationContext;Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/level/levelgen/structure/structures/SwampHutPiece/addAdditionalSaveData (Lnet/minecraft/world/level/levelgen/structure/pieces/StructurePieceSerializationContext;Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/level/levelgen/structure/structures/SwampHutPiece/m_213694_ (Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/world/level/StructureManager;Lnet/minecraft/world/level/chunk/ChunkGenerator;Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/levelgen/structure/BoundingBox;Lnet/minecraft/world/level/ChunkPos;Lnet/minecraft/core/BlockPos;)V net/minecraft/world/level/levelgen/structure/structures/SwampHutPiece/postProcess (Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/world/level/StructureManager;Lnet/minecraft/world/level/chunk/ChunkGenerator;Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/levelgen/structure/BoundingBox;Lnet/minecraft/world/level/ChunkPos;Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/world/level/levelgen/structure/structures/SwampHutPiece/m_229957_ (Lnet/minecraft/world/level/ServerLevelAccessor;Lnet/minecraft/world/level/levelgen/structure/BoundingBox;)V net/minecraft/world/level/levelgen/structure/structures/SwampHutPiece/spawnCat (Lnet/minecraft/world/level/ServerLevelAccessor;Lnet/minecraft/world/level/levelgen/structure/BoundingBox;)V +MD: net/minecraft/world/level/levelgen/structure/structures/SwampHutStructure/ ()V net/minecraft/world/level/levelgen/structure/structures/SwampHutStructure/ ()V +MD: net/minecraft/world/level/levelgen/structure/structures/SwampHutStructure/ (Lnet/minecraft/world/level/levelgen/structure/Structure$StructureSettings;)V net/minecraft/world/level/levelgen/structure/structures/SwampHutStructure/ (Lnet/minecraft/world/level/levelgen/structure/Structure$StructureSettings;)V +MD: net/minecraft/world/level/levelgen/structure/structures/SwampHutStructure/m_213658_ ()Lnet/minecraft/world/level/levelgen/structure/StructureType; net/minecraft/world/level/levelgen/structure/structures/SwampHutStructure/type ()Lnet/minecraft/world/level/levelgen/structure/StructureType; +MD: net/minecraft/world/level/levelgen/structure/structures/SwampHutStructure/m_214086_ (Lnet/minecraft/world/level/levelgen/structure/Structure$GenerationContext;)Ljava/util/Optional; net/minecraft/world/level/levelgen/structure/structures/SwampHutStructure/findGenerationPoint (Lnet/minecraft/world/level/levelgen/structure/Structure$GenerationContext;)Ljava/util/Optional; +MD: net/minecraft/world/level/levelgen/structure/structures/SwampHutStructure/m_229977_ (Lnet/minecraft/world/level/levelgen/structure/Structure$GenerationContext;Lnet/minecraft/world/level/levelgen/structure/pieces/StructurePiecesBuilder;)V net/minecraft/world/level/levelgen/structure/structures/SwampHutStructure/lambda$findGenerationPoint$0 (Lnet/minecraft/world/level/levelgen/structure/Structure$GenerationContext;Lnet/minecraft/world/level/levelgen/structure/pieces/StructurePiecesBuilder;)V +MD: net/minecraft/world/level/levelgen/structure/structures/SwampHutStructure/m_229980_ (Lnet/minecraft/world/level/levelgen/structure/pieces/StructurePiecesBuilder;Lnet/minecraft/world/level/levelgen/structure/Structure$GenerationContext;)V net/minecraft/world/level/levelgen/structure/structures/SwampHutStructure/generatePieces (Lnet/minecraft/world/level/levelgen/structure/pieces/StructurePiecesBuilder;Lnet/minecraft/world/level/levelgen/structure/Structure$GenerationContext;)V +MD: net/minecraft/world/level/levelgen/structure/structures/WoodlandMansionPieces/ ()V net/minecraft/world/level/levelgen/structure/structures/WoodlandMansionPieces/ ()V +MD: net/minecraft/world/level/levelgen/structure/structures/WoodlandMansionPieces/m_229985_ (Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/Rotation;Ljava/util/List;Lnet/minecraft/util/RandomSource;)V net/minecraft/world/level/levelgen/structure/structures/WoodlandMansionPieces/generateMansion (Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/Rotation;Ljava/util/List;Lnet/minecraft/util/RandomSource;)V +MD: net/minecraft/world/level/levelgen/structure/structures/WoodlandMansionPieces/main ([Ljava/lang/String;)V net/minecraft/world/level/levelgen/structure/structures/WoodlandMansionPieces/main ([Ljava/lang/String;)V +MD: net/minecraft/world/level/levelgen/structure/structures/WoodlandMansionPieces$FirstFloorRoomCollection/ ()V net/minecraft/world/level/levelgen/structure/structures/WoodlandMansionPieces$FirstFloorRoomCollection/ ()V +MD: net/minecraft/world/level/levelgen/structure/structures/WoodlandMansionPieces$FirstFloorRoomCollection/m_213985_ (Lnet/minecraft/util/RandomSource;Z)Ljava/lang/String; net/minecraft/world/level/levelgen/structure/structures/WoodlandMansionPieces$FirstFloorRoomCollection/get1x2FrontEntrance (Lnet/minecraft/util/RandomSource;Z)Ljava/lang/String; +MD: net/minecraft/world/level/levelgen/structure/structures/WoodlandMansionPieces$FirstFloorRoomCollection/m_213986_ (Lnet/minecraft/util/RandomSource;Z)Ljava/lang/String; net/minecraft/world/level/levelgen/structure/structures/WoodlandMansionPieces$FirstFloorRoomCollection/get1x2SideEntrance (Lnet/minecraft/util/RandomSource;Z)Ljava/lang/String; +MD: net/minecraft/world/level/levelgen/structure/structures/WoodlandMansionPieces$FirstFloorRoomCollection/m_214124_ (Lnet/minecraft/util/RandomSource;)Ljava/lang/String; net/minecraft/world/level/levelgen/structure/structures/WoodlandMansionPieces$FirstFloorRoomCollection/get2x2 (Lnet/minecraft/util/RandomSource;)Ljava/lang/String; +MD: net/minecraft/world/level/levelgen/structure/structures/WoodlandMansionPieces$FirstFloorRoomCollection/m_214125_ (Lnet/minecraft/util/RandomSource;)Ljava/lang/String; net/minecraft/world/level/levelgen/structure/structures/WoodlandMansionPieces$FirstFloorRoomCollection/get2x2Secret (Lnet/minecraft/util/RandomSource;)Ljava/lang/String; +MD: net/minecraft/world/level/levelgen/structure/structures/WoodlandMansionPieces$FirstFloorRoomCollection/m_214126_ (Lnet/minecraft/util/RandomSource;)Ljava/lang/String; net/minecraft/world/level/levelgen/structure/structures/WoodlandMansionPieces$FirstFloorRoomCollection/get1x1 (Lnet/minecraft/util/RandomSource;)Ljava/lang/String; +MD: net/minecraft/world/level/levelgen/structure/structures/WoodlandMansionPieces$FirstFloorRoomCollection/m_214127_ (Lnet/minecraft/util/RandomSource;)Ljava/lang/String; net/minecraft/world/level/levelgen/structure/structures/WoodlandMansionPieces$FirstFloorRoomCollection/get1x1Secret (Lnet/minecraft/util/RandomSource;)Ljava/lang/String; +MD: net/minecraft/world/level/levelgen/structure/structures/WoodlandMansionPieces$FirstFloorRoomCollection/m_214128_ (Lnet/minecraft/util/RandomSource;)Ljava/lang/String; net/minecraft/world/level/levelgen/structure/structures/WoodlandMansionPieces$FirstFloorRoomCollection/get1x2Secret (Lnet/minecraft/util/RandomSource;)Ljava/lang/String; +MD: net/minecraft/world/level/levelgen/structure/structures/WoodlandMansionPieces$FloorRoomCollection/ ()V net/minecraft/world/level/levelgen/structure/structures/WoodlandMansionPieces$FloorRoomCollection/ ()V +MD: net/minecraft/world/level/levelgen/structure/structures/WoodlandMansionPieces$FloorRoomCollection/m_213985_ (Lnet/minecraft/util/RandomSource;Z)Ljava/lang/String; net/minecraft/world/level/levelgen/structure/structures/WoodlandMansionPieces$FloorRoomCollection/get1x2FrontEntrance (Lnet/minecraft/util/RandomSource;Z)Ljava/lang/String; +MD: net/minecraft/world/level/levelgen/structure/structures/WoodlandMansionPieces$FloorRoomCollection/m_213986_ (Lnet/minecraft/util/RandomSource;Z)Ljava/lang/String; net/minecraft/world/level/levelgen/structure/structures/WoodlandMansionPieces$FloorRoomCollection/get1x2SideEntrance (Lnet/minecraft/util/RandomSource;Z)Ljava/lang/String; +MD: net/minecraft/world/level/levelgen/structure/structures/WoodlandMansionPieces$FloorRoomCollection/m_214124_ (Lnet/minecraft/util/RandomSource;)Ljava/lang/String; net/minecraft/world/level/levelgen/structure/structures/WoodlandMansionPieces$FloorRoomCollection/get2x2 (Lnet/minecraft/util/RandomSource;)Ljava/lang/String; +MD: net/minecraft/world/level/levelgen/structure/structures/WoodlandMansionPieces$FloorRoomCollection/m_214125_ (Lnet/minecraft/util/RandomSource;)Ljava/lang/String; net/minecraft/world/level/levelgen/structure/structures/WoodlandMansionPieces$FloorRoomCollection/get2x2Secret (Lnet/minecraft/util/RandomSource;)Ljava/lang/String; +MD: net/minecraft/world/level/levelgen/structure/structures/WoodlandMansionPieces$FloorRoomCollection/m_214126_ (Lnet/minecraft/util/RandomSource;)Ljava/lang/String; net/minecraft/world/level/levelgen/structure/structures/WoodlandMansionPieces$FloorRoomCollection/get1x1 (Lnet/minecraft/util/RandomSource;)Ljava/lang/String; +MD: net/minecraft/world/level/levelgen/structure/structures/WoodlandMansionPieces$FloorRoomCollection/m_214127_ (Lnet/minecraft/util/RandomSource;)Ljava/lang/String; net/minecraft/world/level/levelgen/structure/structures/WoodlandMansionPieces$FloorRoomCollection/get1x1Secret (Lnet/minecraft/util/RandomSource;)Ljava/lang/String; +MD: net/minecraft/world/level/levelgen/structure/structures/WoodlandMansionPieces$FloorRoomCollection/m_214128_ (Lnet/minecraft/util/RandomSource;)Ljava/lang/String; net/minecraft/world/level/levelgen/structure/structures/WoodlandMansionPieces$FloorRoomCollection/get1x2Secret (Lnet/minecraft/util/RandomSource;)Ljava/lang/String; +MD: net/minecraft/world/level/levelgen/structure/structures/WoodlandMansionPieces$MansionGrid/ (Lnet/minecraft/util/RandomSource;)V net/minecraft/world/level/levelgen/structure/structures/WoodlandMansionPieces$MansionGrid/ (Lnet/minecraft/util/RandomSource;)V +MD: net/minecraft/world/level/levelgen/structure/structures/WoodlandMansionPieces$MansionGrid/m_230044_ ()V net/minecraft/world/level/levelgen/structure/structures/WoodlandMansionPieces$MansionGrid/print ()V +MD: net/minecraft/world/level/levelgen/structure/structures/WoodlandMansionPieces$MansionGrid/m_230045_ (Lnet/minecraft/world/level/levelgen/structure/structures/WoodlandMansionPieces$SimpleGrid;)Z net/minecraft/world/level/levelgen/structure/structures/WoodlandMansionPieces$MansionGrid/cleanEdges (Lnet/minecraft/world/level/levelgen/structure/structures/WoodlandMansionPieces$SimpleGrid;)Z +MD: net/minecraft/world/level/levelgen/structure/structures/WoodlandMansionPieces$MansionGrid/m_230047_ (Lnet/minecraft/world/level/levelgen/structure/structures/WoodlandMansionPieces$SimpleGrid;II)Z net/minecraft/world/level/levelgen/structure/structures/WoodlandMansionPieces$MansionGrid/isHouse (Lnet/minecraft/world/level/levelgen/structure/structures/WoodlandMansionPieces$SimpleGrid;II)Z +MD: net/minecraft/world/level/levelgen/structure/structures/WoodlandMansionPieces$MansionGrid/m_230051_ (Lnet/minecraft/world/level/levelgen/structure/structures/WoodlandMansionPieces$SimpleGrid;IIII)Z net/minecraft/world/level/levelgen/structure/structures/WoodlandMansionPieces$MansionGrid/isRoomId (Lnet/minecraft/world/level/levelgen/structure/structures/WoodlandMansionPieces$SimpleGrid;IIII)Z +MD: net/minecraft/world/level/levelgen/structure/structures/WoodlandMansionPieces$MansionGrid/m_230057_ (Lnet/minecraft/world/level/levelgen/structure/structures/WoodlandMansionPieces$SimpleGrid;IILnet/minecraft/core/Direction;I)V net/minecraft/world/level/levelgen/structure/structures/WoodlandMansionPieces$MansionGrid/recursiveCorridor (Lnet/minecraft/world/level/levelgen/structure/structures/WoodlandMansionPieces$SimpleGrid;IILnet/minecraft/core/Direction;I)V +MD: net/minecraft/world/level/levelgen/structure/structures/WoodlandMansionPieces$MansionGrid/m_230063_ (Lnet/minecraft/world/level/levelgen/structure/structures/WoodlandMansionPieces$SimpleGrid;Lnet/minecraft/world/level/levelgen/structure/structures/WoodlandMansionPieces$SimpleGrid;)V net/minecraft/world/level/levelgen/structure/structures/WoodlandMansionPieces$MansionGrid/identifyRooms (Lnet/minecraft/world/level/levelgen/structure/structures/WoodlandMansionPieces$SimpleGrid;Lnet/minecraft/world/level/levelgen/structure/structures/WoodlandMansionPieces$SimpleGrid;)V +MD: net/minecraft/world/level/levelgen/structure/structures/WoodlandMansionPieces$MansionGrid/m_230066_ ()V net/minecraft/world/level/levelgen/structure/structures/WoodlandMansionPieces$MansionGrid/setupThirdFloor ()V +MD: net/minecraft/world/level/levelgen/structure/structures/WoodlandMansionPieces$MansionGrid/m_230067_ (Lnet/minecraft/world/level/levelgen/structure/structures/WoodlandMansionPieces$SimpleGrid;IIII)Lnet/minecraft/core/Direction; net/minecraft/world/level/levelgen/structure/structures/WoodlandMansionPieces$MansionGrid/get1x2RoomDirection (Lnet/minecraft/world/level/levelgen/structure/structures/WoodlandMansionPieces$SimpleGrid;IIII)Lnet/minecraft/core/Direction; +MD: net/minecraft/world/level/levelgen/structure/structures/WoodlandMansionPieces$MansionPiecePlacer/ (Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager;Lnet/minecraft/util/RandomSource;)V net/minecraft/world/level/levelgen/structure/structures/WoodlandMansionPieces$MansionPiecePlacer/ (Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager;Lnet/minecraft/util/RandomSource;)V +MD: net/minecraft/world/level/levelgen/structure/structures/WoodlandMansionPieces$MansionPiecePlacer/m_230080_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/Rotation;Ljava/util/List;Lnet/minecraft/world/level/levelgen/structure/structures/WoodlandMansionPieces$MansionGrid;)V net/minecraft/world/level/levelgen/structure/structures/WoodlandMansionPieces$MansionPiecePlacer/createMansion (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/Rotation;Ljava/util/List;Lnet/minecraft/world/level/levelgen/structure/structures/WoodlandMansionPieces$MansionGrid;)V +MD: net/minecraft/world/level/levelgen/structure/structures/WoodlandMansionPieces$MansionPiecePlacer/m_230085_ (Ljava/util/List;Lnet/minecraft/world/level/levelgen/structure/structures/WoodlandMansionPieces$PlacementData;)V net/minecraft/world/level/levelgen/structure/structures/WoodlandMansionPieces$MansionPiecePlacer/entrance (Ljava/util/List;Lnet/minecraft/world/level/levelgen/structure/structures/WoodlandMansionPieces$PlacementData;)V +MD: net/minecraft/world/level/levelgen/structure/structures/WoodlandMansionPieces$MansionPiecePlacer/m_230088_ (Ljava/util/List;Lnet/minecraft/world/level/levelgen/structure/structures/WoodlandMansionPieces$PlacementData;Lnet/minecraft/world/level/levelgen/structure/structures/WoodlandMansionPieces$SimpleGrid;Lnet/minecraft/core/Direction;IIII)V net/minecraft/world/level/levelgen/structure/structures/WoodlandMansionPieces$MansionPiecePlacer/traverseOuterWalls (Ljava/util/List;Lnet/minecraft/world/level/levelgen/structure/structures/WoodlandMansionPieces$PlacementData;Lnet/minecraft/world/level/levelgen/structure/structures/WoodlandMansionPieces$SimpleGrid;Lnet/minecraft/core/Direction;IIII)V +MD: net/minecraft/world/level/levelgen/structure/structures/WoodlandMansionPieces$MansionPiecePlacer/m_230097_ (Ljava/util/List;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/Rotation;Lnet/minecraft/world/level/levelgen/structure/structures/WoodlandMansionPieces$FloorRoomCollection;)V net/minecraft/world/level/levelgen/structure/structures/WoodlandMansionPieces$MansionPiecePlacer/addRoom2x2Secret (Ljava/util/List;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/Rotation;Lnet/minecraft/world/level/levelgen/structure/structures/WoodlandMansionPieces$FloorRoomCollection;)V +MD: net/minecraft/world/level/levelgen/structure/structures/WoodlandMansionPieces$MansionPiecePlacer/m_230102_ (Ljava/util/List;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/Rotation;Lnet/minecraft/world/level/levelgen/structure/structures/WoodlandMansionPieces$SimpleGrid;Lnet/minecraft/world/level/levelgen/structure/structures/WoodlandMansionPieces$SimpleGrid;)V net/minecraft/world/level/levelgen/structure/structures/WoodlandMansionPieces$MansionPiecePlacer/createRoof (Ljava/util/List;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/Rotation;Lnet/minecraft/world/level/levelgen/structure/structures/WoodlandMansionPieces$SimpleGrid;Lnet/minecraft/world/level/levelgen/structure/structures/WoodlandMansionPieces$SimpleGrid;)V +MD: net/minecraft/world/level/levelgen/structure/structures/WoodlandMansionPieces$MansionPiecePlacer/m_230108_ (Ljava/util/List;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/Rotation;Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/levelgen/structure/structures/WoodlandMansionPieces$FloorRoomCollection;)V net/minecraft/world/level/levelgen/structure/structures/WoodlandMansionPieces$MansionPiecePlacer/addRoom1x1 (Ljava/util/List;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/Rotation;Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/levelgen/structure/structures/WoodlandMansionPieces$FloorRoomCollection;)V +MD: net/minecraft/world/level/levelgen/structure/structures/WoodlandMansionPieces$MansionPiecePlacer/m_230114_ (Ljava/util/List;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/Rotation;Lnet/minecraft/core/Direction;Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/levelgen/structure/structures/WoodlandMansionPieces$FloorRoomCollection;)V net/minecraft/world/level/levelgen/structure/structures/WoodlandMansionPieces$MansionPiecePlacer/addRoom2x2 (Ljava/util/List;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/Rotation;Lnet/minecraft/core/Direction;Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/levelgen/structure/structures/WoodlandMansionPieces$FloorRoomCollection;)V +MD: net/minecraft/world/level/levelgen/structure/structures/WoodlandMansionPieces$MansionPiecePlacer/m_230121_ (Ljava/util/List;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/Rotation;Lnet/minecraft/core/Direction;Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/levelgen/structure/structures/WoodlandMansionPieces$FloorRoomCollection;Z)V net/minecraft/world/level/levelgen/structure/structures/WoodlandMansionPieces$MansionPiecePlacer/addRoom1x2 (Ljava/util/List;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/Rotation;Lnet/minecraft/core/Direction;Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/levelgen/structure/structures/WoodlandMansionPieces$FloorRoomCollection;Z)V +MD: net/minecraft/world/level/levelgen/structure/structures/WoodlandMansionPieces$MansionPiecePlacer/m_230129_ (Ljava/util/List;Lnet/minecraft/world/level/levelgen/structure/structures/WoodlandMansionPieces$PlacementData;)V net/minecraft/world/level/levelgen/structure/structures/WoodlandMansionPieces$MansionPiecePlacer/traverseWallPiece (Ljava/util/List;Lnet/minecraft/world/level/levelgen/structure/structures/WoodlandMansionPieces$PlacementData;)V +MD: net/minecraft/world/level/levelgen/structure/structures/WoodlandMansionPieces$MansionPiecePlacer/m_230132_ (Ljava/util/List;Lnet/minecraft/world/level/levelgen/structure/structures/WoodlandMansionPieces$PlacementData;)V net/minecraft/world/level/levelgen/structure/structures/WoodlandMansionPieces$MansionPiecePlacer/traverseTurn (Ljava/util/List;Lnet/minecraft/world/level/levelgen/structure/structures/WoodlandMansionPieces$PlacementData;)V +MD: net/minecraft/world/level/levelgen/structure/structures/WoodlandMansionPieces$MansionPiecePlacer/m_230135_ (Ljava/util/List;Lnet/minecraft/world/level/levelgen/structure/structures/WoodlandMansionPieces$PlacementData;)V net/minecraft/world/level/levelgen/structure/structures/WoodlandMansionPieces$MansionPiecePlacer/traverseInnerTurn (Ljava/util/List;Lnet/minecraft/world/level/levelgen/structure/structures/WoodlandMansionPieces$PlacementData;)V +MD: net/minecraft/world/level/levelgen/structure/structures/WoodlandMansionPieces$PlacementData/ ()V net/minecraft/world/level/levelgen/structure/structures/WoodlandMansionPieces$PlacementData/ ()V +MD: net/minecraft/world/level/levelgen/structure/structures/WoodlandMansionPieces$SecondFloorRoomCollection/ ()V net/minecraft/world/level/levelgen/structure/structures/WoodlandMansionPieces$SecondFloorRoomCollection/ ()V +MD: net/minecraft/world/level/levelgen/structure/structures/WoodlandMansionPieces$SecondFloorRoomCollection/m_213985_ (Lnet/minecraft/util/RandomSource;Z)Ljava/lang/String; net/minecraft/world/level/levelgen/structure/structures/WoodlandMansionPieces$SecondFloorRoomCollection/get1x2FrontEntrance (Lnet/minecraft/util/RandomSource;Z)Ljava/lang/String; +MD: net/minecraft/world/level/levelgen/structure/structures/WoodlandMansionPieces$SecondFloorRoomCollection/m_213986_ (Lnet/minecraft/util/RandomSource;Z)Ljava/lang/String; net/minecraft/world/level/levelgen/structure/structures/WoodlandMansionPieces$SecondFloorRoomCollection/get1x2SideEntrance (Lnet/minecraft/util/RandomSource;Z)Ljava/lang/String; +MD: net/minecraft/world/level/levelgen/structure/structures/WoodlandMansionPieces$SecondFloorRoomCollection/m_214124_ (Lnet/minecraft/util/RandomSource;)Ljava/lang/String; net/minecraft/world/level/levelgen/structure/structures/WoodlandMansionPieces$SecondFloorRoomCollection/get2x2 (Lnet/minecraft/util/RandomSource;)Ljava/lang/String; +MD: net/minecraft/world/level/levelgen/structure/structures/WoodlandMansionPieces$SecondFloorRoomCollection/m_214125_ (Lnet/minecraft/util/RandomSource;)Ljava/lang/String; net/minecraft/world/level/levelgen/structure/structures/WoodlandMansionPieces$SecondFloorRoomCollection/get2x2Secret (Lnet/minecraft/util/RandomSource;)Ljava/lang/String; +MD: net/minecraft/world/level/levelgen/structure/structures/WoodlandMansionPieces$SecondFloorRoomCollection/m_214126_ (Lnet/minecraft/util/RandomSource;)Ljava/lang/String; net/minecraft/world/level/levelgen/structure/structures/WoodlandMansionPieces$SecondFloorRoomCollection/get1x1 (Lnet/minecraft/util/RandomSource;)Ljava/lang/String; +MD: net/minecraft/world/level/levelgen/structure/structures/WoodlandMansionPieces$SecondFloorRoomCollection/m_214127_ (Lnet/minecraft/util/RandomSource;)Ljava/lang/String; net/minecraft/world/level/levelgen/structure/structures/WoodlandMansionPieces$SecondFloorRoomCollection/get1x1Secret (Lnet/minecraft/util/RandomSource;)Ljava/lang/String; +MD: net/minecraft/world/level/levelgen/structure/structures/WoodlandMansionPieces$SecondFloorRoomCollection/m_214128_ (Lnet/minecraft/util/RandomSource;)Ljava/lang/String; net/minecraft/world/level/levelgen/structure/structures/WoodlandMansionPieces$SecondFloorRoomCollection/get1x2Secret (Lnet/minecraft/util/RandomSource;)Ljava/lang/String; +MD: net/minecraft/world/level/levelgen/structure/structures/WoodlandMansionPieces$SimpleGrid/ (III)V net/minecraft/world/level/levelgen/structure/structures/WoodlandMansionPieces$SimpleGrid/ (III)V +MD: net/minecraft/world/level/levelgen/structure/structures/WoodlandMansionPieces$SimpleGrid/m_230167_ (II)I net/minecraft/world/level/levelgen/structure/structures/WoodlandMansionPieces$SimpleGrid/get (II)I +MD: net/minecraft/world/level/levelgen/structure/structures/WoodlandMansionPieces$SimpleGrid/m_230170_ (III)V net/minecraft/world/level/levelgen/structure/structures/WoodlandMansionPieces$SimpleGrid/set (III)V +MD: net/minecraft/world/level/levelgen/structure/structures/WoodlandMansionPieces$SimpleGrid/m_230174_ (IIII)V net/minecraft/world/level/levelgen/structure/structures/WoodlandMansionPieces$SimpleGrid/setif (IIII)V +MD: net/minecraft/world/level/levelgen/structure/structures/WoodlandMansionPieces$SimpleGrid/m_230179_ (IIIII)V net/minecraft/world/level/levelgen/structure/structures/WoodlandMansionPieces$SimpleGrid/set (IIIII)V +MD: net/minecraft/world/level/levelgen/structure/structures/WoodlandMansionPieces$SimpleGrid/m_230185_ (III)Z net/minecraft/world/level/levelgen/structure/structures/WoodlandMansionPieces$SimpleGrid/edgesTo (III)Z +MD: net/minecraft/world/level/levelgen/structure/structures/WoodlandMansionPieces$ThirdFloorRoomCollection/ ()V net/minecraft/world/level/levelgen/structure/structures/WoodlandMansionPieces$ThirdFloorRoomCollection/ ()V +MD: net/minecraft/world/level/levelgen/structure/structures/WoodlandMansionPieces$WoodlandMansionPiece/ (Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager;Ljava/lang/String;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/Rotation;Lnet/minecraft/world/level/block/Mirror;)V net/minecraft/world/level/levelgen/structure/structures/WoodlandMansionPieces$WoodlandMansionPiece/ (Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager;Ljava/lang/String;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/Rotation;Lnet/minecraft/world/level/block/Mirror;)V +MD: net/minecraft/world/level/levelgen/structure/structures/WoodlandMansionPieces$WoodlandMansionPiece/ (Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager;Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/level/levelgen/structure/structures/WoodlandMansionPieces$WoodlandMansionPiece/ (Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager;Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/level/levelgen/structure/structures/WoodlandMansionPieces$WoodlandMansionPiece/ (Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager;Ljava/lang/String;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/Rotation;)V net/minecraft/world/level/levelgen/structure/structures/WoodlandMansionPieces$WoodlandMansionPiece/ (Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager;Ljava/lang/String;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/Rotation;)V +MD: net/minecraft/world/level/levelgen/structure/structures/WoodlandMansionPieces$WoodlandMansionPiece/m_142415_ ()Lnet/minecraft/resources/ResourceLocation; net/minecraft/world/level/levelgen/structure/structures/WoodlandMansionPieces$WoodlandMansionPiece/makeTemplateLocation ()Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/world/level/levelgen/structure/structures/WoodlandMansionPieces$WoodlandMansionPiece/m_183620_ (Lnet/minecraft/world/level/levelgen/structure/pieces/StructurePieceSerializationContext;Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/level/levelgen/structure/structures/WoodlandMansionPieces$WoodlandMansionPiece/addAdditionalSaveData (Lnet/minecraft/world/level/levelgen/structure/pieces/StructurePieceSerializationContext;Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/level/levelgen/structure/structures/WoodlandMansionPieces$WoodlandMansionPiece/m_213704_ (Ljava/lang/String;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/ServerLevelAccessor;Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/levelgen/structure/BoundingBox;)V net/minecraft/world/level/levelgen/structure/structures/WoodlandMansionPieces$WoodlandMansionPiece/handleDataMarker (Ljava/lang/String;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/ServerLevelAccessor;Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/levelgen/structure/BoundingBox;)V +MD: net/minecraft/world/level/levelgen/structure/structures/WoodlandMansionPieces$WoodlandMansionPiece/m_230204_ (Lnet/minecraft/world/level/block/Mirror;Lnet/minecraft/world/level/block/Rotation;)Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructurePlaceSettings; net/minecraft/world/level/levelgen/structure/structures/WoodlandMansionPieces$WoodlandMansionPiece/makeSettings (Lnet/minecraft/world/level/block/Mirror;Lnet/minecraft/world/level/block/Rotation;)Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructurePlaceSettings; +MD: net/minecraft/world/level/levelgen/structure/structures/WoodlandMansionPieces$WoodlandMansionPiece/m_230210_ (Ljava/lang/String;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/world/level/levelgen/structure/structures/WoodlandMansionPieces$WoodlandMansionPiece/makeLocation (Ljava/lang/String;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/world/level/levelgen/structure/structures/WoodlandMansionPieces$WoodlandMansionPiece/m_230218_ (Lnet/minecraft/nbt/CompoundTag;Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructurePlaceSettings; net/minecraft/world/level/levelgen/structure/structures/WoodlandMansionPieces$WoodlandMansionPiece/lambda$new$0 (Lnet/minecraft/nbt/CompoundTag;Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructurePlaceSettings; +MD: net/minecraft/world/level/levelgen/structure/structures/WoodlandMansionStructure/ ()V net/minecraft/world/level/levelgen/structure/structures/WoodlandMansionStructure/ ()V +MD: net/minecraft/world/level/levelgen/structure/structures/WoodlandMansionStructure/ (Lnet/minecraft/world/level/levelgen/structure/Structure$StructureSettings;)V net/minecraft/world/level/levelgen/structure/structures/WoodlandMansionStructure/ (Lnet/minecraft/world/level/levelgen/structure/Structure$StructureSettings;)V +MD: net/minecraft/world/level/levelgen/structure/structures/WoodlandMansionStructure/m_213658_ ()Lnet/minecraft/world/level/levelgen/structure/StructureType; net/minecraft/world/level/levelgen/structure/structures/WoodlandMansionStructure/type ()Lnet/minecraft/world/level/levelgen/structure/StructureType; +MD: net/minecraft/world/level/levelgen/structure/structures/WoodlandMansionStructure/m_214086_ (Lnet/minecraft/world/level/levelgen/structure/Structure$GenerationContext;)Ljava/util/Optional; net/minecraft/world/level/levelgen/structure/structures/WoodlandMansionStructure/findGenerationPoint (Lnet/minecraft/world/level/levelgen/structure/Structure$GenerationContext;)Ljava/util/Optional; +MD: net/minecraft/world/level/levelgen/structure/structures/WoodlandMansionStructure/m_214110_ (Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/world/level/StructureManager;Lnet/minecraft/world/level/chunk/ChunkGenerator;Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/levelgen/structure/BoundingBox;Lnet/minecraft/world/level/ChunkPos;Lnet/minecraft/world/level/levelgen/structure/pieces/PiecesContainer;)V net/minecraft/world/level/levelgen/structure/structures/WoodlandMansionStructure/afterPlace (Lnet/minecraft/world/level/WorldGenLevel;Lnet/minecraft/world/level/StructureManager;Lnet/minecraft/world/level/chunk/ChunkGenerator;Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/levelgen/structure/BoundingBox;Lnet/minecraft/world/level/ChunkPos;Lnet/minecraft/world/level/levelgen/structure/pieces/PiecesContainer;)V +MD: net/minecraft/world/level/levelgen/structure/structures/WoodlandMansionStructure/m_230236_ (Lnet/minecraft/world/level/levelgen/structure/Structure$GenerationContext;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/Rotation;Lnet/minecraft/world/level/levelgen/structure/pieces/StructurePiecesBuilder;)V net/minecraft/world/level/levelgen/structure/structures/WoodlandMansionStructure/lambda$findGenerationPoint$0 (Lnet/minecraft/world/level/levelgen/structure/Structure$GenerationContext;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/Rotation;Lnet/minecraft/world/level/levelgen/structure/pieces/StructurePiecesBuilder;)V +MD: net/minecraft/world/level/levelgen/structure/structures/WoodlandMansionStructure/m_230241_ (Lnet/minecraft/world/level/levelgen/structure/pieces/StructurePiecesBuilder;Lnet/minecraft/world/level/levelgen/structure/Structure$GenerationContext;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/Rotation;)V net/minecraft/world/level/levelgen/structure/structures/WoodlandMansionStructure/generatePieces (Lnet/minecraft/world/level/levelgen/structure/pieces/StructurePiecesBuilder;Lnet/minecraft/world/level/levelgen/structure/Structure$GenerationContext;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/Rotation;)V +MD: net/minecraft/world/level/levelgen/structure/templatesystem/AlwaysTrueTest/ ()V net/minecraft/world/level/levelgen/structure/templatesystem/AlwaysTrueTest/ ()V +MD: net/minecraft/world/level/levelgen/structure/templatesystem/AlwaysTrueTest/ ()V net/minecraft/world/level/levelgen/structure/templatesystem/AlwaysTrueTest/ ()V +MD: net/minecraft/world/level/levelgen/structure/templatesystem/AlwaysTrueTest/m_213865_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/util/RandomSource;)Z net/minecraft/world/level/levelgen/structure/templatesystem/AlwaysTrueTest/test (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/util/RandomSource;)Z +MD: net/minecraft/world/level/levelgen/structure/templatesystem/AlwaysTrueTest/m_7319_ ()Lnet/minecraft/world/level/levelgen/structure/templatesystem/RuleTestType; net/minecraft/world/level/levelgen/structure/templatesystem/AlwaysTrueTest/getType ()Lnet/minecraft/world/level/levelgen/structure/templatesystem/RuleTestType; +MD: net/minecraft/world/level/levelgen/structure/templatesystem/AlwaysTrueTest/m_73961_ ()Lnet/minecraft/world/level/levelgen/structure/templatesystem/AlwaysTrueTest; net/minecraft/world/level/levelgen/structure/templatesystem/AlwaysTrueTest/lambda$static$0 ()Lnet/minecraft/world/level/levelgen/structure/templatesystem/AlwaysTrueTest; +MD: net/minecraft/world/level/levelgen/structure/templatesystem/AxisAlignedLinearPosTest/ ()V net/minecraft/world/level/levelgen/structure/templatesystem/AxisAlignedLinearPosTest/ ()V +MD: net/minecraft/world/level/levelgen/structure/templatesystem/AxisAlignedLinearPosTest/ (FFIILnet/minecraft/core/Direction$Axis;)V net/minecraft/world/level/levelgen/structure/templatesystem/AxisAlignedLinearPosTest/ (FFIILnet/minecraft/core/Direction$Axis;)V +MD: net/minecraft/world/level/levelgen/structure/templatesystem/AxisAlignedLinearPosTest/m_163710_ (Lnet/minecraft/world/level/levelgen/structure/templatesystem/AxisAlignedLinearPosTest;)Lnet/minecraft/core/Direction$Axis; net/minecraft/world/level/levelgen/structure/templatesystem/AxisAlignedLinearPosTest/lambda$static$4 (Lnet/minecraft/world/level/levelgen/structure/templatesystem/AxisAlignedLinearPosTest;)Lnet/minecraft/core/Direction$Axis; +MD: net/minecraft/world/level/levelgen/structure/templatesystem/AxisAlignedLinearPosTest/m_163712_ (Lnet/minecraft/world/level/levelgen/structure/templatesystem/AxisAlignedLinearPosTest;)Ljava/lang/Integer; net/minecraft/world/level/levelgen/structure/templatesystem/AxisAlignedLinearPosTest/lambda$static$3 (Lnet/minecraft/world/level/levelgen/structure/templatesystem/AxisAlignedLinearPosTest;)Ljava/lang/Integer; +MD: net/minecraft/world/level/levelgen/structure/templatesystem/AxisAlignedLinearPosTest/m_163714_ (Lnet/minecraft/world/level/levelgen/structure/templatesystem/AxisAlignedLinearPosTest;)Ljava/lang/Integer; net/minecraft/world/level/levelgen/structure/templatesystem/AxisAlignedLinearPosTest/lambda$static$2 (Lnet/minecraft/world/level/levelgen/structure/templatesystem/AxisAlignedLinearPosTest;)Ljava/lang/Integer; +MD: net/minecraft/world/level/levelgen/structure/templatesystem/AxisAlignedLinearPosTest/m_163716_ (Lnet/minecraft/world/level/levelgen/structure/templatesystem/AxisAlignedLinearPosTest;)Ljava/lang/Float; net/minecraft/world/level/levelgen/structure/templatesystem/AxisAlignedLinearPosTest/lambda$static$1 (Lnet/minecraft/world/level/levelgen/structure/templatesystem/AxisAlignedLinearPosTest;)Ljava/lang/Float; +MD: net/minecraft/world/level/levelgen/structure/templatesystem/AxisAlignedLinearPosTest/m_163718_ (Lnet/minecraft/world/level/levelgen/structure/templatesystem/AxisAlignedLinearPosTest;)Ljava/lang/Float; net/minecraft/world/level/levelgen/structure/templatesystem/AxisAlignedLinearPosTest/lambda$static$0 (Lnet/minecraft/world/level/levelgen/structure/templatesystem/AxisAlignedLinearPosTest;)Ljava/lang/Float; +MD: net/minecraft/world/level/levelgen/structure/templatesystem/AxisAlignedLinearPosTest/m_213782_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)Z net/minecraft/world/level/levelgen/structure/templatesystem/AxisAlignedLinearPosTest/test (Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)Z +MD: net/minecraft/world/level/levelgen/structure/templatesystem/AxisAlignedLinearPosTest/m_6158_ ()Lnet/minecraft/world/level/levelgen/structure/templatesystem/PosRuleTestType; net/minecraft/world/level/levelgen/structure/templatesystem/AxisAlignedLinearPosTest/getType ()Lnet/minecraft/world/level/levelgen/structure/templatesystem/PosRuleTestType; +MD: net/minecraft/world/level/levelgen/structure/templatesystem/AxisAlignedLinearPosTest/m_73976_ (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/world/level/levelgen/structure/templatesystem/AxisAlignedLinearPosTest/lambda$static$5 (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/world/level/levelgen/structure/templatesystem/BlackstoneReplaceProcessor/ ()V net/minecraft/world/level/levelgen/structure/templatesystem/BlackstoneReplaceProcessor/ ()V +MD: net/minecraft/world/level/levelgen/structure/templatesystem/BlackstoneReplaceProcessor/ ()V net/minecraft/world/level/levelgen/structure/templatesystem/BlackstoneReplaceProcessor/ ()V +MD: net/minecraft/world/level/levelgen/structure/templatesystem/BlackstoneReplaceProcessor/m_6953_ ()Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureProcessorType; net/minecraft/world/level/levelgen/structure/templatesystem/BlackstoneReplaceProcessor/getType ()Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureProcessorType; +MD: net/minecraft/world/level/levelgen/structure/templatesystem/BlackstoneReplaceProcessor/m_7382_ (Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate$StructureBlockInfo;Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate$StructureBlockInfo;Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructurePlaceSettings;)Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate$StructureBlockInfo; net/minecraft/world/level/levelgen/structure/templatesystem/BlackstoneReplaceProcessor/processBlock (Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate$StructureBlockInfo;Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate$StructureBlockInfo;Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructurePlaceSettings;)Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate$StructureBlockInfo; +MD: net/minecraft/world/level/levelgen/structure/templatesystem/BlackstoneReplaceProcessor/m_74006_ (Ljava/util/HashMap;)V net/minecraft/world/level/levelgen/structure/templatesystem/BlackstoneReplaceProcessor/lambda$new$1 (Ljava/util/HashMap;)V +MD: net/minecraft/world/level/levelgen/structure/templatesystem/BlackstoneReplaceProcessor/m_74008_ ()Lnet/minecraft/world/level/levelgen/structure/templatesystem/BlackstoneReplaceProcessor; net/minecraft/world/level/levelgen/structure/templatesystem/BlackstoneReplaceProcessor/lambda$static$0 ()Lnet/minecraft/world/level/levelgen/structure/templatesystem/BlackstoneReplaceProcessor; +MD: net/minecraft/world/level/levelgen/structure/templatesystem/BlockAgeProcessor/ ()V net/minecraft/world/level/levelgen/structure/templatesystem/BlockAgeProcessor/ ()V +MD: net/minecraft/world/level/levelgen/structure/templatesystem/BlockAgeProcessor/ (F)V net/minecraft/world/level/levelgen/structure/templatesystem/BlockAgeProcessor/ (F)V +MD: net/minecraft/world/level/levelgen/structure/templatesystem/BlockAgeProcessor/m_230255_ (Lnet/minecraft/util/RandomSource;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/levelgen/structure/templatesystem/BlockAgeProcessor/maybeReplaceFullStoneBlock (Lnet/minecraft/util/RandomSource;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/levelgen/structure/templatesystem/BlockAgeProcessor/m_230257_ (Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/levelgen/structure/templatesystem/BlockAgeProcessor/getRandomFacingStairs (Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/levelgen/structure/templatesystem/BlockAgeProcessor/m_230260_ (Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/levelgen/structure/templatesystem/BlockAgeProcessor/maybeReplaceStairs (Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/levelgen/structure/templatesystem/BlockAgeProcessor/m_230263_ (Lnet/minecraft/util/RandomSource;[Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/levelgen/structure/templatesystem/BlockAgeProcessor/getRandomBlock (Lnet/minecraft/util/RandomSource;[Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/levelgen/structure/templatesystem/BlockAgeProcessor/m_230266_ (Lnet/minecraft/util/RandomSource;[Lnet/minecraft/world/level/block/state/BlockState;[Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/levelgen/structure/templatesystem/BlockAgeProcessor/getRandomBlock (Lnet/minecraft/util/RandomSource;[Lnet/minecraft/world/level/block/state/BlockState;[Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/levelgen/structure/templatesystem/BlockAgeProcessor/m_230270_ (Lnet/minecraft/util/RandomSource;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/levelgen/structure/templatesystem/BlockAgeProcessor/maybeReplaceSlab (Lnet/minecraft/util/RandomSource;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/levelgen/structure/templatesystem/BlockAgeProcessor/m_230272_ (Lnet/minecraft/util/RandomSource;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/levelgen/structure/templatesystem/BlockAgeProcessor/maybeReplaceWall (Lnet/minecraft/util/RandomSource;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/levelgen/structure/templatesystem/BlockAgeProcessor/m_230274_ (Lnet/minecraft/util/RandomSource;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/levelgen/structure/templatesystem/BlockAgeProcessor/maybeReplaceObsidian (Lnet/minecraft/util/RandomSource;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/levelgen/structure/templatesystem/BlockAgeProcessor/m_6953_ ()Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureProcessorType; net/minecraft/world/level/levelgen/structure/templatesystem/BlockAgeProcessor/getType ()Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureProcessorType; +MD: net/minecraft/world/level/levelgen/structure/templatesystem/BlockAgeProcessor/m_7382_ (Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate$StructureBlockInfo;Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate$StructureBlockInfo;Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructurePlaceSettings;)Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate$StructureBlockInfo; net/minecraft/world/level/levelgen/structure/templatesystem/BlockAgeProcessor/processBlock (Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate$StructureBlockInfo;Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate$StructureBlockInfo;Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructurePlaceSettings;)Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate$StructureBlockInfo; +MD: net/minecraft/world/level/levelgen/structure/templatesystem/BlockAgeProcessor/m_74022_ (Lnet/minecraft/world/level/levelgen/structure/templatesystem/BlockAgeProcessor;)Ljava/lang/Float; net/minecraft/world/level/levelgen/structure/templatesystem/BlockAgeProcessor/lambda$static$0 (Lnet/minecraft/world/level/levelgen/structure/templatesystem/BlockAgeProcessor;)Ljava/lang/Float; +MD: net/minecraft/world/level/levelgen/structure/templatesystem/BlockIgnoreProcessor/ ()V net/minecraft/world/level/levelgen/structure/templatesystem/BlockIgnoreProcessor/ ()V +MD: net/minecraft/world/level/levelgen/structure/templatesystem/BlockIgnoreProcessor/ (Ljava/util/List;)V net/minecraft/world/level/levelgen/structure/templatesystem/BlockIgnoreProcessor/ (Ljava/util/List;)V +MD: net/minecraft/world/level/levelgen/structure/templatesystem/BlockIgnoreProcessor/m_6953_ ()Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureProcessorType; net/minecraft/world/level/levelgen/structure/templatesystem/BlockIgnoreProcessor/getType ()Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureProcessorType; +MD: net/minecraft/world/level/levelgen/structure/templatesystem/BlockIgnoreProcessor/m_7382_ (Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate$StructureBlockInfo;Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate$StructureBlockInfo;Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructurePlaceSettings;)Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate$StructureBlockInfo; net/minecraft/world/level/levelgen/structure/templatesystem/BlockIgnoreProcessor/processBlock (Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate$StructureBlockInfo;Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate$StructureBlockInfo;Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructurePlaceSettings;)Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate$StructureBlockInfo; +MD: net/minecraft/world/level/levelgen/structure/templatesystem/BlockIgnoreProcessor/m_74061_ (Lnet/minecraft/world/level/levelgen/structure/templatesystem/BlockIgnoreProcessor;)Ljava/util/List; net/minecraft/world/level/levelgen/structure/templatesystem/BlockIgnoreProcessor/lambda$static$0 (Lnet/minecraft/world/level/levelgen/structure/templatesystem/BlockIgnoreProcessor;)Ljava/util/List; +MD: net/minecraft/world/level/levelgen/structure/templatesystem/BlockMatchTest/ ()V net/minecraft/world/level/levelgen/structure/templatesystem/BlockMatchTest/ ()V +MD: net/minecraft/world/level/levelgen/structure/templatesystem/BlockMatchTest/ (Lnet/minecraft/world/level/block/Block;)V net/minecraft/world/level/levelgen/structure/templatesystem/BlockMatchTest/ (Lnet/minecraft/world/level/block/Block;)V +MD: net/minecraft/world/level/levelgen/structure/templatesystem/BlockMatchTest/m_213865_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/util/RandomSource;)Z net/minecraft/world/level/levelgen/structure/templatesystem/BlockMatchTest/test (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/util/RandomSource;)Z +MD: net/minecraft/world/level/levelgen/structure/templatesystem/BlockMatchTest/m_7319_ ()Lnet/minecraft/world/level/levelgen/structure/templatesystem/RuleTestType; net/minecraft/world/level/levelgen/structure/templatesystem/BlockMatchTest/getType ()Lnet/minecraft/world/level/levelgen/structure/templatesystem/RuleTestType; +MD: net/minecraft/world/level/levelgen/structure/templatesystem/BlockMatchTest/m_74072_ (Lnet/minecraft/world/level/levelgen/structure/templatesystem/BlockMatchTest;)Lnet/minecraft/world/level/block/Block; net/minecraft/world/level/levelgen/structure/templatesystem/BlockMatchTest/lambda$static$0 (Lnet/minecraft/world/level/levelgen/structure/templatesystem/BlockMatchTest;)Lnet/minecraft/world/level/block/Block; +MD: net/minecraft/world/level/levelgen/structure/templatesystem/BlockRotProcessor/ ()V net/minecraft/world/level/levelgen/structure/templatesystem/BlockRotProcessor/ ()V +MD: net/minecraft/world/level/levelgen/structure/templatesystem/BlockRotProcessor/ (Ljava/util/Optional;F)V net/minecraft/world/level/levelgen/structure/templatesystem/BlockRotProcessor/ (Ljava/util/Optional;F)V +MD: net/minecraft/world/level/levelgen/structure/templatesystem/BlockRotProcessor/ (Lnet/minecraft/core/HolderSet;F)V net/minecraft/world/level/levelgen/structure/templatesystem/BlockRotProcessor/ (Lnet/minecraft/core/HolderSet;F)V +MD: net/minecraft/world/level/levelgen/structure/templatesystem/BlockRotProcessor/ (F)V net/minecraft/world/level/levelgen/structure/templatesystem/BlockRotProcessor/ (F)V +MD: net/minecraft/world/level/levelgen/structure/templatesystem/BlockRotProcessor/m_230288_ (Lnet/minecraft/world/level/levelgen/structure/templatesystem/BlockRotProcessor;)Ljava/lang/Float; net/minecraft/world/level/levelgen/structure/templatesystem/BlockRotProcessor/lambda$static$1 (Lnet/minecraft/world/level/levelgen/structure/templatesystem/BlockRotProcessor;)Ljava/lang/Float; +MD: net/minecraft/world/level/levelgen/structure/templatesystem/BlockRotProcessor/m_230290_ (Lnet/minecraft/world/level/levelgen/structure/templatesystem/BlockRotProcessor;)Ljava/util/Optional; net/minecraft/world/level/levelgen/structure/templatesystem/BlockRotProcessor/lambda$static$0 (Lnet/minecraft/world/level/levelgen/structure/templatesystem/BlockRotProcessor;)Ljava/util/Optional; +MD: net/minecraft/world/level/levelgen/structure/templatesystem/BlockRotProcessor/m_257363_ (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/world/level/levelgen/structure/templatesystem/BlockRotProcessor/lambda$static$2 (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/world/level/levelgen/structure/templatesystem/BlockRotProcessor/m_6953_ ()Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureProcessorType; net/minecraft/world/level/levelgen/structure/templatesystem/BlockRotProcessor/getType ()Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureProcessorType; +MD: net/minecraft/world/level/levelgen/structure/templatesystem/BlockRotProcessor/m_7382_ (Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate$StructureBlockInfo;Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate$StructureBlockInfo;Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructurePlaceSettings;)Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate$StructureBlockInfo; net/minecraft/world/level/levelgen/structure/templatesystem/BlockRotProcessor/processBlock (Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate$StructureBlockInfo;Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate$StructureBlockInfo;Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructurePlaceSettings;)Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate$StructureBlockInfo; +MD: net/minecraft/world/level/levelgen/structure/templatesystem/BlockStateMatchTest/ ()V net/minecraft/world/level/levelgen/structure/templatesystem/BlockStateMatchTest/ ()V +MD: net/minecraft/world/level/levelgen/structure/templatesystem/BlockStateMatchTest/ (Lnet/minecraft/world/level/block/state/BlockState;)V net/minecraft/world/level/levelgen/structure/templatesystem/BlockStateMatchTest/ (Lnet/minecraft/world/level/block/state/BlockState;)V +MD: net/minecraft/world/level/levelgen/structure/templatesystem/BlockStateMatchTest/m_213865_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/util/RandomSource;)Z net/minecraft/world/level/levelgen/structure/templatesystem/BlockStateMatchTest/test (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/util/RandomSource;)Z +MD: net/minecraft/world/level/levelgen/structure/templatesystem/BlockStateMatchTest/m_7319_ ()Lnet/minecraft/world/level/levelgen/structure/templatesystem/RuleTestType; net/minecraft/world/level/levelgen/structure/templatesystem/BlockStateMatchTest/getType ()Lnet/minecraft/world/level/levelgen/structure/templatesystem/RuleTestType; +MD: net/minecraft/world/level/levelgen/structure/templatesystem/BlockStateMatchTest/m_74098_ (Lnet/minecraft/world/level/levelgen/structure/templatesystem/BlockStateMatchTest;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/levelgen/structure/templatesystem/BlockStateMatchTest/lambda$static$0 (Lnet/minecraft/world/level/levelgen/structure/templatesystem/BlockStateMatchTest;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/levelgen/structure/templatesystem/CappedProcessor/ ()V net/minecraft/world/level/levelgen/structure/templatesystem/CappedProcessor/ ()V +MD: net/minecraft/world/level/levelgen/structure/templatesystem/CappedProcessor/ (Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureProcessor;Lnet/minecraft/util/valueproviders/IntProvider;)V net/minecraft/world/level/levelgen/structure/templatesystem/CappedProcessor/ (Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureProcessor;Lnet/minecraft/util/valueproviders/IntProvider;)V +MD: net/minecraft/world/level/levelgen/structure/templatesystem/CappedProcessor/m_276769_ (Lnet/minecraft/world/level/levelgen/structure/templatesystem/CappedProcessor;)Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureProcessor; net/minecraft/world/level/levelgen/structure/templatesystem/CappedProcessor/lambda$static$0 (Lnet/minecraft/world/level/levelgen/structure/templatesystem/CappedProcessor;)Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureProcessor; +MD: net/minecraft/world/level/levelgen/structure/templatesystem/CappedProcessor/m_276771_ (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/world/level/levelgen/structure/templatesystem/CappedProcessor/lambda$static$2 (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/world/level/levelgen/structure/templatesystem/CappedProcessor/m_276976_ (Lnet/minecraft/world/level/ServerLevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;Ljava/util/List;Ljava/util/List;Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructurePlaceSettings;)Ljava/util/List; net/minecraft/world/level/levelgen/structure/templatesystem/CappedProcessor/finalizeProcessing (Lnet/minecraft/world/level/ServerLevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;Ljava/util/List;Ljava/util/List;Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructurePlaceSettings;)Ljava/util/List; +MD: net/minecraft/world/level/levelgen/structure/templatesystem/CappedProcessor/m_277153_ (Lnet/minecraft/world/level/levelgen/structure/templatesystem/CappedProcessor;)Lnet/minecraft/util/valueproviders/IntProvider; net/minecraft/world/level/levelgen/structure/templatesystem/CappedProcessor/lambda$static$1 (Lnet/minecraft/world/level/levelgen/structure/templatesystem/CappedProcessor;)Lnet/minecraft/util/valueproviders/IntProvider; +MD: net/minecraft/world/level/levelgen/structure/templatesystem/CappedProcessor/m_6953_ ()Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureProcessorType; net/minecraft/world/level/levelgen/structure/templatesystem/CappedProcessor/getType ()Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureProcessorType; +MD: net/minecraft/world/level/levelgen/structure/templatesystem/GravityProcessor/ ()V net/minecraft/world/level/levelgen/structure/templatesystem/GravityProcessor/ ()V +MD: net/minecraft/world/level/levelgen/structure/templatesystem/GravityProcessor/ (Lnet/minecraft/world/level/levelgen/Heightmap$Types;I)V net/minecraft/world/level/levelgen/structure/templatesystem/GravityProcessor/ (Lnet/minecraft/world/level/levelgen/Heightmap$Types;I)V +MD: net/minecraft/world/level/levelgen/structure/templatesystem/GravityProcessor/m_163726_ (Lnet/minecraft/world/level/levelgen/structure/templatesystem/GravityProcessor;)Ljava/lang/Integer; net/minecraft/world/level/levelgen/structure/templatesystem/GravityProcessor/lambda$static$1 (Lnet/minecraft/world/level/levelgen/structure/templatesystem/GravityProcessor;)Ljava/lang/Integer; +MD: net/minecraft/world/level/levelgen/structure/templatesystem/GravityProcessor/m_163728_ (Lnet/minecraft/world/level/levelgen/structure/templatesystem/GravityProcessor;)Lnet/minecraft/world/level/levelgen/Heightmap$Types; net/minecraft/world/level/levelgen/structure/templatesystem/GravityProcessor/lambda$static$0 (Lnet/minecraft/world/level/levelgen/structure/templatesystem/GravityProcessor;)Lnet/minecraft/world/level/levelgen/Heightmap$Types; +MD: net/minecraft/world/level/levelgen/structure/templatesystem/GravityProcessor/m_6953_ ()Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureProcessorType; net/minecraft/world/level/levelgen/structure/templatesystem/GravityProcessor/getType ()Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureProcessorType; +MD: net/minecraft/world/level/levelgen/structure/templatesystem/GravityProcessor/m_7382_ (Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate$StructureBlockInfo;Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate$StructureBlockInfo;Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructurePlaceSettings;)Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate$StructureBlockInfo; net/minecraft/world/level/levelgen/structure/templatesystem/GravityProcessor/processBlock (Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate$StructureBlockInfo;Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate$StructureBlockInfo;Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructurePlaceSettings;)Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate$StructureBlockInfo; +MD: net/minecraft/world/level/levelgen/structure/templatesystem/GravityProcessor/m_74115_ (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/world/level/levelgen/structure/templatesystem/GravityProcessor/lambda$static$2 (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/world/level/levelgen/structure/templatesystem/JigsawReplacementProcessor/ ()V net/minecraft/world/level/levelgen/structure/templatesystem/JigsawReplacementProcessor/ ()V +MD: net/minecraft/world/level/levelgen/structure/templatesystem/JigsawReplacementProcessor/ ()V net/minecraft/world/level/levelgen/structure/templatesystem/JigsawReplacementProcessor/ ()V +MD: net/minecraft/world/level/levelgen/structure/templatesystem/JigsawReplacementProcessor/m_6953_ ()Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureProcessorType; net/minecraft/world/level/levelgen/structure/templatesystem/JigsawReplacementProcessor/getType ()Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureProcessorType; +MD: net/minecraft/world/level/levelgen/structure/templatesystem/JigsawReplacementProcessor/m_7382_ (Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate$StructureBlockInfo;Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate$StructureBlockInfo;Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructurePlaceSettings;)Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate$StructureBlockInfo; net/minecraft/world/level/levelgen/structure/templatesystem/JigsawReplacementProcessor/processBlock (Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate$StructureBlockInfo;Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate$StructureBlockInfo;Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructurePlaceSettings;)Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate$StructureBlockInfo; +MD: net/minecraft/world/level/levelgen/structure/templatesystem/JigsawReplacementProcessor/m_74133_ ()Lnet/minecraft/world/level/levelgen/structure/templatesystem/JigsawReplacementProcessor; net/minecraft/world/level/levelgen/structure/templatesystem/JigsawReplacementProcessor/lambda$static$0 ()Lnet/minecraft/world/level/levelgen/structure/templatesystem/JigsawReplacementProcessor; +MD: net/minecraft/world/level/levelgen/structure/templatesystem/LavaSubmergedBlockProcessor/ ()V net/minecraft/world/level/levelgen/structure/templatesystem/LavaSubmergedBlockProcessor/ ()V +MD: net/minecraft/world/level/levelgen/structure/templatesystem/LavaSubmergedBlockProcessor/ ()V net/minecraft/world/level/levelgen/structure/templatesystem/LavaSubmergedBlockProcessor/ ()V +MD: net/minecraft/world/level/levelgen/structure/templatesystem/LavaSubmergedBlockProcessor/m_6953_ ()Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureProcessorType; net/minecraft/world/level/levelgen/structure/templatesystem/LavaSubmergedBlockProcessor/getType ()Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureProcessorType; +MD: net/minecraft/world/level/levelgen/structure/templatesystem/LavaSubmergedBlockProcessor/m_7382_ (Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate$StructureBlockInfo;Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate$StructureBlockInfo;Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructurePlaceSettings;)Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate$StructureBlockInfo; net/minecraft/world/level/levelgen/structure/templatesystem/LavaSubmergedBlockProcessor/processBlock (Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate$StructureBlockInfo;Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate$StructureBlockInfo;Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructurePlaceSettings;)Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate$StructureBlockInfo; +MD: net/minecraft/world/level/levelgen/structure/templatesystem/LavaSubmergedBlockProcessor/m_74146_ ()Lnet/minecraft/world/level/levelgen/structure/templatesystem/LavaSubmergedBlockProcessor; net/minecraft/world/level/levelgen/structure/templatesystem/LavaSubmergedBlockProcessor/lambda$static$0 ()Lnet/minecraft/world/level/levelgen/structure/templatesystem/LavaSubmergedBlockProcessor; +MD: net/minecraft/world/level/levelgen/structure/templatesystem/LinearPosTest/ ()V net/minecraft/world/level/levelgen/structure/templatesystem/LinearPosTest/ ()V +MD: net/minecraft/world/level/levelgen/structure/templatesystem/LinearPosTest/ (FFII)V net/minecraft/world/level/levelgen/structure/templatesystem/LinearPosTest/ (FFII)V +MD: net/minecraft/world/level/levelgen/structure/templatesystem/LinearPosTest/m_163730_ (Lnet/minecraft/world/level/levelgen/structure/templatesystem/LinearPosTest;)Ljava/lang/Integer; net/minecraft/world/level/levelgen/structure/templatesystem/LinearPosTest/lambda$static$3 (Lnet/minecraft/world/level/levelgen/structure/templatesystem/LinearPosTest;)Ljava/lang/Integer; +MD: net/minecraft/world/level/levelgen/structure/templatesystem/LinearPosTest/m_163732_ (Lnet/minecraft/world/level/levelgen/structure/templatesystem/LinearPosTest;)Ljava/lang/Integer; net/minecraft/world/level/levelgen/structure/templatesystem/LinearPosTest/lambda$static$2 (Lnet/minecraft/world/level/levelgen/structure/templatesystem/LinearPosTest;)Ljava/lang/Integer; +MD: net/minecraft/world/level/levelgen/structure/templatesystem/LinearPosTest/m_163734_ (Lnet/minecraft/world/level/levelgen/structure/templatesystem/LinearPosTest;)Ljava/lang/Float; net/minecraft/world/level/levelgen/structure/templatesystem/LinearPosTest/lambda$static$1 (Lnet/minecraft/world/level/levelgen/structure/templatesystem/LinearPosTest;)Ljava/lang/Float; +MD: net/minecraft/world/level/levelgen/structure/templatesystem/LinearPosTest/m_163736_ (Lnet/minecraft/world/level/levelgen/structure/templatesystem/LinearPosTest;)Ljava/lang/Float; net/minecraft/world/level/levelgen/structure/templatesystem/LinearPosTest/lambda$static$0 (Lnet/minecraft/world/level/levelgen/structure/templatesystem/LinearPosTest;)Ljava/lang/Float; +MD: net/minecraft/world/level/levelgen/structure/templatesystem/LinearPosTest/m_213782_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)Z net/minecraft/world/level/levelgen/structure/templatesystem/LinearPosTest/test (Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)Z +MD: net/minecraft/world/level/levelgen/structure/templatesystem/LinearPosTest/m_6158_ ()Lnet/minecraft/world/level/levelgen/structure/templatesystem/PosRuleTestType; net/minecraft/world/level/levelgen/structure/templatesystem/LinearPosTest/getType ()Lnet/minecraft/world/level/levelgen/structure/templatesystem/PosRuleTestType; +MD: net/minecraft/world/level/levelgen/structure/templatesystem/LinearPosTest/m_74159_ (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/world/level/levelgen/structure/templatesystem/LinearPosTest/lambda$static$4 (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/world/level/levelgen/structure/templatesystem/NopProcessor/ ()V net/minecraft/world/level/levelgen/structure/templatesystem/NopProcessor/ ()V +MD: net/minecraft/world/level/levelgen/structure/templatesystem/NopProcessor/ ()V net/minecraft/world/level/levelgen/structure/templatesystem/NopProcessor/ ()V +MD: net/minecraft/world/level/levelgen/structure/templatesystem/NopProcessor/m_6953_ ()Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureProcessorType; net/minecraft/world/level/levelgen/structure/templatesystem/NopProcessor/getType ()Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureProcessorType; +MD: net/minecraft/world/level/levelgen/structure/templatesystem/NopProcessor/m_74186_ ()Lnet/minecraft/world/level/levelgen/structure/templatesystem/NopProcessor; net/minecraft/world/level/levelgen/structure/templatesystem/NopProcessor/lambda$static$0 ()Lnet/minecraft/world/level/levelgen/structure/templatesystem/NopProcessor; +MD: net/minecraft/world/level/levelgen/structure/templatesystem/PosAlwaysTrueTest/ ()V net/minecraft/world/level/levelgen/structure/templatesystem/PosAlwaysTrueTest/ ()V +MD: net/minecraft/world/level/levelgen/structure/templatesystem/PosAlwaysTrueTest/ ()V net/minecraft/world/level/levelgen/structure/templatesystem/PosAlwaysTrueTest/ ()V +MD: net/minecraft/world/level/levelgen/structure/templatesystem/PosAlwaysTrueTest/m_213782_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)Z net/minecraft/world/level/levelgen/structure/templatesystem/PosAlwaysTrueTest/test (Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)Z +MD: net/minecraft/world/level/levelgen/structure/templatesystem/PosAlwaysTrueTest/m_6158_ ()Lnet/minecraft/world/level/levelgen/structure/templatesystem/PosRuleTestType; net/minecraft/world/level/levelgen/structure/templatesystem/PosAlwaysTrueTest/getType ()Lnet/minecraft/world/level/levelgen/structure/templatesystem/PosRuleTestType; +MD: net/minecraft/world/level/levelgen/structure/templatesystem/PosAlwaysTrueTest/m_74197_ ()Lnet/minecraft/world/level/levelgen/structure/templatesystem/PosAlwaysTrueTest; net/minecraft/world/level/levelgen/structure/templatesystem/PosAlwaysTrueTest/lambda$static$0 ()Lnet/minecraft/world/level/levelgen/structure/templatesystem/PosAlwaysTrueTest; +MD: net/minecraft/world/level/levelgen/structure/templatesystem/PosRuleTest/ ()V net/minecraft/world/level/levelgen/structure/templatesystem/PosRuleTest/ ()V +MD: net/minecraft/world/level/levelgen/structure/templatesystem/PosRuleTest/ ()V net/minecraft/world/level/levelgen/structure/templatesystem/PosRuleTest/ ()V +MD: net/minecraft/world/level/levelgen/structure/templatesystem/PosRuleTest/m_213782_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)Z net/minecraft/world/level/levelgen/structure/templatesystem/PosRuleTest/test (Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)Z +MD: net/minecraft/world/level/levelgen/structure/templatesystem/PosRuleTest/m_6158_ ()Lnet/minecraft/world/level/levelgen/structure/templatesystem/PosRuleTestType; net/minecraft/world/level/levelgen/structure/templatesystem/PosRuleTest/getType ()Lnet/minecraft/world/level/levelgen/structure/templatesystem/PosRuleTestType; +MD: net/minecraft/world/level/levelgen/structure/templatesystem/PosRuleTestType/ ()V net/minecraft/world/level/levelgen/structure/templatesystem/PosRuleTestType/ ()V +MD: net/minecraft/world/level/levelgen/structure/templatesystem/PosRuleTestType/m_74209_ (Lcom/mojang/serialization/Codec;)Lcom/mojang/serialization/Codec; net/minecraft/world/level/levelgen/structure/templatesystem/PosRuleTestType/lambda$register$0 (Lcom/mojang/serialization/Codec;)Lcom/mojang/serialization/Codec; +MD: net/minecraft/world/level/levelgen/structure/templatesystem/PosRuleTestType/m_74211_ (Ljava/lang/String;Lcom/mojang/serialization/Codec;)Lnet/minecraft/world/level/levelgen/structure/templatesystem/PosRuleTestType; net/minecraft/world/level/levelgen/structure/templatesystem/PosRuleTestType/register (Ljava/lang/String;Lcom/mojang/serialization/Codec;)Lnet/minecraft/world/level/levelgen/structure/templatesystem/PosRuleTestType; +MD: net/minecraft/world/level/levelgen/structure/templatesystem/PosRuleTestType/m_74214_ ()Lcom/mojang/serialization/Codec; net/minecraft/world/level/levelgen/structure/templatesystem/PosRuleTestType/codec ()Lcom/mojang/serialization/Codec; +MD: net/minecraft/world/level/levelgen/structure/templatesystem/ProcessorRule/ ()V net/minecraft/world/level/levelgen/structure/templatesystem/ProcessorRule/ ()V +MD: net/minecraft/world/level/levelgen/structure/templatesystem/ProcessorRule/ (Lnet/minecraft/world/level/levelgen/structure/templatesystem/RuleTest;Lnet/minecraft/world/level/levelgen/structure/templatesystem/RuleTest;Lnet/minecraft/world/level/block/state/BlockState;)V net/minecraft/world/level/levelgen/structure/templatesystem/ProcessorRule/ (Lnet/minecraft/world/level/levelgen/structure/templatesystem/RuleTest;Lnet/minecraft/world/level/levelgen/structure/templatesystem/RuleTest;Lnet/minecraft/world/level/block/state/BlockState;)V +MD: net/minecraft/world/level/levelgen/structure/templatesystem/ProcessorRule/ (Lnet/minecraft/world/level/levelgen/structure/templatesystem/RuleTest;Lnet/minecraft/world/level/levelgen/structure/templatesystem/RuleTest;Lnet/minecraft/world/level/levelgen/structure/templatesystem/PosRuleTest;Lnet/minecraft/world/level/block/state/BlockState;)V net/minecraft/world/level/levelgen/structure/templatesystem/ProcessorRule/ (Lnet/minecraft/world/level/levelgen/structure/templatesystem/RuleTest;Lnet/minecraft/world/level/levelgen/structure/templatesystem/RuleTest;Lnet/minecraft/world/level/levelgen/structure/templatesystem/PosRuleTest;Lnet/minecraft/world/level/block/state/BlockState;)V +MD: net/minecraft/world/level/levelgen/structure/templatesystem/ProcessorRule/ (Lnet/minecraft/world/level/levelgen/structure/templatesystem/RuleTest;Lnet/minecraft/world/level/levelgen/structure/templatesystem/RuleTest;Lnet/minecraft/world/level/levelgen/structure/templatesystem/PosRuleTest;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/levelgen/structure/templatesystem/rule/blockentity/RuleBlockEntityModifier;)V net/minecraft/world/level/levelgen/structure/templatesystem/ProcessorRule/ (Lnet/minecraft/world/level/levelgen/structure/templatesystem/RuleTest;Lnet/minecraft/world/level/levelgen/structure/templatesystem/RuleTest;Lnet/minecraft/world/level/levelgen/structure/templatesystem/PosRuleTest;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/levelgen/structure/templatesystem/rule/blockentity/RuleBlockEntityModifier;)V +MD: net/minecraft/world/level/levelgen/structure/templatesystem/ProcessorRule/m_163740_ (Lnet/minecraft/world/level/levelgen/structure/templatesystem/ProcessorRule;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/levelgen/structure/templatesystem/ProcessorRule/lambda$static$3 (Lnet/minecraft/world/level/levelgen/structure/templatesystem/ProcessorRule;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/levelgen/structure/templatesystem/ProcessorRule/m_163742_ (Lnet/minecraft/world/level/levelgen/structure/templatesystem/ProcessorRule;)Lnet/minecraft/world/level/levelgen/structure/templatesystem/PosRuleTest; net/minecraft/world/level/levelgen/structure/templatesystem/ProcessorRule/lambda$static$2 (Lnet/minecraft/world/level/levelgen/structure/templatesystem/ProcessorRule;)Lnet/minecraft/world/level/levelgen/structure/templatesystem/PosRuleTest; +MD: net/minecraft/world/level/levelgen/structure/templatesystem/ProcessorRule/m_163744_ (Lnet/minecraft/world/level/levelgen/structure/templatesystem/ProcessorRule;)Lnet/minecraft/world/level/levelgen/structure/templatesystem/RuleTest; net/minecraft/world/level/levelgen/structure/templatesystem/ProcessorRule/lambda$static$1 (Lnet/minecraft/world/level/levelgen/structure/templatesystem/ProcessorRule;)Lnet/minecraft/world/level/levelgen/structure/templatesystem/RuleTest; +MD: net/minecraft/world/level/levelgen/structure/templatesystem/ProcessorRule/m_163746_ (Lnet/minecraft/world/level/levelgen/structure/templatesystem/ProcessorRule;)Lnet/minecraft/world/level/levelgen/structure/templatesystem/RuleTest; net/minecraft/world/level/levelgen/structure/templatesystem/ProcessorRule/lambda$static$0 (Lnet/minecraft/world/level/levelgen/structure/templatesystem/ProcessorRule;)Lnet/minecraft/world/level/levelgen/structure/templatesystem/RuleTest; +MD: net/minecraft/world/level/levelgen/structure/templatesystem/ProcessorRule/m_230309_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)Z net/minecraft/world/level/levelgen/structure/templatesystem/ProcessorRule/test (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)Z +MD: net/minecraft/world/level/levelgen/structure/templatesystem/ProcessorRule/m_276760_ (Lnet/minecraft/world/level/levelgen/structure/templatesystem/ProcessorRule;)Lnet/minecraft/world/level/levelgen/structure/templatesystem/rule/blockentity/RuleBlockEntityModifier; net/minecraft/world/level/levelgen/structure/templatesystem/ProcessorRule/lambda$static$4 (Lnet/minecraft/world/level/levelgen/structure/templatesystem/ProcessorRule;)Lnet/minecraft/world/level/levelgen/structure/templatesystem/rule/blockentity/RuleBlockEntityModifier; +MD: net/minecraft/world/level/levelgen/structure/templatesystem/ProcessorRule/m_276761_ (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/world/level/levelgen/structure/templatesystem/ProcessorRule/lambda$static$5 (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/world/level/levelgen/structure/templatesystem/ProcessorRule/m_276991_ (Lnet/minecraft/util/RandomSource;Lnet/minecraft/nbt/CompoundTag;)Lnet/minecraft/nbt/CompoundTag; net/minecraft/world/level/levelgen/structure/templatesystem/ProcessorRule/getOutputTag (Lnet/minecraft/util/RandomSource;Lnet/minecraft/nbt/CompoundTag;)Lnet/minecraft/nbt/CompoundTag; +MD: net/minecraft/world/level/levelgen/structure/templatesystem/ProcessorRule/m_74237_ ()Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/levelgen/structure/templatesystem/ProcessorRule/getOutputState ()Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/levelgen/structure/templatesystem/ProtectedBlockProcessor/ ()V net/minecraft/world/level/levelgen/structure/templatesystem/ProtectedBlockProcessor/ ()V +MD: net/minecraft/world/level/levelgen/structure/templatesystem/ProtectedBlockProcessor/ (Lnet/minecraft/tags/TagKey;)V net/minecraft/world/level/levelgen/structure/templatesystem/ProtectedBlockProcessor/ (Lnet/minecraft/tags/TagKey;)V +MD: net/minecraft/world/level/levelgen/structure/templatesystem/ProtectedBlockProcessor/m_205052_ (Lnet/minecraft/world/level/levelgen/structure/templatesystem/ProtectedBlockProcessor;)Lnet/minecraft/tags/TagKey; net/minecraft/world/level/levelgen/structure/templatesystem/ProtectedBlockProcessor/lambda$static$0 (Lnet/minecraft/world/level/levelgen/structure/templatesystem/ProtectedBlockProcessor;)Lnet/minecraft/tags/TagKey; +MD: net/minecraft/world/level/levelgen/structure/templatesystem/ProtectedBlockProcessor/m_6953_ ()Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureProcessorType; net/minecraft/world/level/levelgen/structure/templatesystem/ProtectedBlockProcessor/getType ()Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureProcessorType; +MD: net/minecraft/world/level/levelgen/structure/templatesystem/ProtectedBlockProcessor/m_7382_ (Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate$StructureBlockInfo;Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate$StructureBlockInfo;Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructurePlaceSettings;)Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate$StructureBlockInfo; net/minecraft/world/level/levelgen/structure/templatesystem/ProtectedBlockProcessor/processBlock (Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate$StructureBlockInfo;Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate$StructureBlockInfo;Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructurePlaceSettings;)Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate$StructureBlockInfo; +MD: net/minecraft/world/level/levelgen/structure/templatesystem/RandomBlockMatchTest/ ()V net/minecraft/world/level/levelgen/structure/templatesystem/RandomBlockMatchTest/ ()V +MD: net/minecraft/world/level/levelgen/structure/templatesystem/RandomBlockMatchTest/ (Lnet/minecraft/world/level/block/Block;F)V net/minecraft/world/level/levelgen/structure/templatesystem/RandomBlockMatchTest/ (Lnet/minecraft/world/level/block/Block;F)V +MD: net/minecraft/world/level/levelgen/structure/templatesystem/RandomBlockMatchTest/m_163763_ (Lnet/minecraft/world/level/levelgen/structure/templatesystem/RandomBlockMatchTest;)Ljava/lang/Float; net/minecraft/world/level/levelgen/structure/templatesystem/RandomBlockMatchTest/lambda$static$1 (Lnet/minecraft/world/level/levelgen/structure/templatesystem/RandomBlockMatchTest;)Ljava/lang/Float; +MD: net/minecraft/world/level/levelgen/structure/templatesystem/RandomBlockMatchTest/m_163765_ (Lnet/minecraft/world/level/levelgen/structure/templatesystem/RandomBlockMatchTest;)Lnet/minecraft/world/level/block/Block; net/minecraft/world/level/levelgen/structure/templatesystem/RandomBlockMatchTest/lambda$static$0 (Lnet/minecraft/world/level/levelgen/structure/templatesystem/RandomBlockMatchTest;)Lnet/minecraft/world/level/block/Block; +MD: net/minecraft/world/level/levelgen/structure/templatesystem/RandomBlockMatchTest/m_213865_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/util/RandomSource;)Z net/minecraft/world/level/levelgen/structure/templatesystem/RandomBlockMatchTest/test (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/util/RandomSource;)Z +MD: net/minecraft/world/level/levelgen/structure/templatesystem/RandomBlockMatchTest/m_257364_ (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/world/level/levelgen/structure/templatesystem/RandomBlockMatchTest/lambda$static$2 (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/world/level/levelgen/structure/templatesystem/RandomBlockMatchTest/m_7319_ ()Lnet/minecraft/world/level/levelgen/structure/templatesystem/RuleTestType; net/minecraft/world/level/levelgen/structure/templatesystem/RandomBlockMatchTest/getType ()Lnet/minecraft/world/level/levelgen/structure/templatesystem/RuleTestType; +MD: net/minecraft/world/level/levelgen/structure/templatesystem/RandomBlockStateMatchTest/ ()V net/minecraft/world/level/levelgen/structure/templatesystem/RandomBlockStateMatchTest/ ()V +MD: net/minecraft/world/level/levelgen/structure/templatesystem/RandomBlockStateMatchTest/ (Lnet/minecraft/world/level/block/state/BlockState;F)V net/minecraft/world/level/levelgen/structure/templatesystem/RandomBlockStateMatchTest/ (Lnet/minecraft/world/level/block/state/BlockState;F)V +MD: net/minecraft/world/level/levelgen/structure/templatesystem/RandomBlockStateMatchTest/m_163767_ (Lnet/minecraft/world/level/levelgen/structure/templatesystem/RandomBlockStateMatchTest;)Ljava/lang/Float; net/minecraft/world/level/levelgen/structure/templatesystem/RandomBlockStateMatchTest/lambda$static$1 (Lnet/minecraft/world/level/levelgen/structure/templatesystem/RandomBlockStateMatchTest;)Ljava/lang/Float; +MD: net/minecraft/world/level/levelgen/structure/templatesystem/RandomBlockStateMatchTest/m_163769_ (Lnet/minecraft/world/level/levelgen/structure/templatesystem/RandomBlockStateMatchTest;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/levelgen/structure/templatesystem/RandomBlockStateMatchTest/lambda$static$0 (Lnet/minecraft/world/level/levelgen/structure/templatesystem/RandomBlockStateMatchTest;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/levelgen/structure/templatesystem/RandomBlockStateMatchTest/m_213865_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/util/RandomSource;)Z net/minecraft/world/level/levelgen/structure/templatesystem/RandomBlockStateMatchTest/test (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/util/RandomSource;)Z +MD: net/minecraft/world/level/levelgen/structure/templatesystem/RandomBlockStateMatchTest/m_7319_ ()Lnet/minecraft/world/level/levelgen/structure/templatesystem/RuleTestType; net/minecraft/world/level/levelgen/structure/templatesystem/RandomBlockStateMatchTest/getType ()Lnet/minecraft/world/level/levelgen/structure/templatesystem/RuleTestType; +MD: net/minecraft/world/level/levelgen/structure/templatesystem/RandomBlockStateMatchTest/m_74286_ (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/world/level/levelgen/structure/templatesystem/RandomBlockStateMatchTest/lambda$static$2 (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/world/level/levelgen/structure/templatesystem/RuleProcessor/ ()V net/minecraft/world/level/levelgen/structure/templatesystem/RuleProcessor/ ()V +MD: net/minecraft/world/level/levelgen/structure/templatesystem/RuleProcessor/ (Ljava/util/List;)V net/minecraft/world/level/levelgen/structure/templatesystem/RuleProcessor/ (Ljava/util/List;)V +MD: net/minecraft/world/level/levelgen/structure/templatesystem/RuleProcessor/m_6953_ ()Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureProcessorType; net/minecraft/world/level/levelgen/structure/templatesystem/RuleProcessor/getType ()Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureProcessorType; +MD: net/minecraft/world/level/levelgen/structure/templatesystem/RuleProcessor/m_7382_ (Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate$StructureBlockInfo;Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate$StructureBlockInfo;Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructurePlaceSettings;)Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate$StructureBlockInfo; net/minecraft/world/level/levelgen/structure/templatesystem/RuleProcessor/processBlock (Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate$StructureBlockInfo;Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate$StructureBlockInfo;Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructurePlaceSettings;)Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate$StructureBlockInfo; +MD: net/minecraft/world/level/levelgen/structure/templatesystem/RuleProcessor/m_74305_ (Lnet/minecraft/world/level/levelgen/structure/templatesystem/RuleProcessor;)Ljava/util/List; net/minecraft/world/level/levelgen/structure/templatesystem/RuleProcessor/lambda$static$0 (Lnet/minecraft/world/level/levelgen/structure/templatesystem/RuleProcessor;)Ljava/util/List; +MD: net/minecraft/world/level/levelgen/structure/templatesystem/RuleTest/ ()V net/minecraft/world/level/levelgen/structure/templatesystem/RuleTest/ ()V +MD: net/minecraft/world/level/levelgen/structure/templatesystem/RuleTest/ ()V net/minecraft/world/level/levelgen/structure/templatesystem/RuleTest/ ()V +MD: net/minecraft/world/level/levelgen/structure/templatesystem/RuleTest/m_213865_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/util/RandomSource;)Z net/minecraft/world/level/levelgen/structure/templatesystem/RuleTest/test (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/util/RandomSource;)Z +MD: net/minecraft/world/level/levelgen/structure/templatesystem/RuleTest/m_7319_ ()Lnet/minecraft/world/level/levelgen/structure/templatesystem/RuleTestType; net/minecraft/world/level/levelgen/structure/templatesystem/RuleTest/getType ()Lnet/minecraft/world/level/levelgen/structure/templatesystem/RuleTestType; +MD: net/minecraft/world/level/levelgen/structure/templatesystem/RuleTestType/ ()V net/minecraft/world/level/levelgen/structure/templatesystem/RuleTestType/ ()V +MD: net/minecraft/world/level/levelgen/structure/templatesystem/RuleTestType/m_74319_ (Lcom/mojang/serialization/Codec;)Lcom/mojang/serialization/Codec; net/minecraft/world/level/levelgen/structure/templatesystem/RuleTestType/lambda$register$0 (Lcom/mojang/serialization/Codec;)Lcom/mojang/serialization/Codec; +MD: net/minecraft/world/level/levelgen/structure/templatesystem/RuleTestType/m_74321_ (Ljava/lang/String;Lcom/mojang/serialization/Codec;)Lnet/minecraft/world/level/levelgen/structure/templatesystem/RuleTestType; net/minecraft/world/level/levelgen/structure/templatesystem/RuleTestType/register (Ljava/lang/String;Lcom/mojang/serialization/Codec;)Lnet/minecraft/world/level/levelgen/structure/templatesystem/RuleTestType; +MD: net/minecraft/world/level/levelgen/structure/templatesystem/RuleTestType/m_74324_ ()Lcom/mojang/serialization/Codec; net/minecraft/world/level/levelgen/structure/templatesystem/RuleTestType/codec ()Lcom/mojang/serialization/Codec; +MD: net/minecraft/world/level/levelgen/structure/templatesystem/StructurePlaceSettings/ ()V net/minecraft/world/level/levelgen/structure/templatesystem/StructurePlaceSettings/ ()V +MD: net/minecraft/world/level/levelgen/structure/templatesystem/StructurePlaceSettings/m_163782_ (Z)Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructurePlaceSettings; net/minecraft/world/level/levelgen/structure/templatesystem/StructurePlaceSettings/setKeepLiquids (Z)Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructurePlaceSettings; +MD: net/minecraft/world/level/levelgen/structure/templatesystem/StructurePlaceSettings/m_230324_ (Lnet/minecraft/util/RandomSource;)Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructurePlaceSettings; net/minecraft/world/level/levelgen/structure/templatesystem/StructurePlaceSettings/setRandom (Lnet/minecraft/util/RandomSource;)Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructurePlaceSettings; +MD: net/minecraft/world/level/levelgen/structure/templatesystem/StructurePlaceSettings/m_230326_ (Lnet/minecraft/core/BlockPos;)Lnet/minecraft/util/RandomSource; net/minecraft/world/level/levelgen/structure/templatesystem/StructurePlaceSettings/getRandom (Lnet/minecraft/core/BlockPos;)Lnet/minecraft/util/RandomSource; +MD: net/minecraft/world/level/levelgen/structure/templatesystem/StructurePlaceSettings/m_74374_ ()Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructurePlaceSettings; net/minecraft/world/level/levelgen/structure/templatesystem/StructurePlaceSettings/copy ()Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructurePlaceSettings; +MD: net/minecraft/world/level/levelgen/structure/templatesystem/StructurePlaceSettings/m_74377_ (Lnet/minecraft/world/level/block/Mirror;)Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructurePlaceSettings; net/minecraft/world/level/levelgen/structure/templatesystem/StructurePlaceSettings/setMirror (Lnet/minecraft/world/level/block/Mirror;)Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructurePlaceSettings; +MD: net/minecraft/world/level/levelgen/structure/templatesystem/StructurePlaceSettings/m_74379_ (Lnet/minecraft/world/level/block/Rotation;)Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructurePlaceSettings; net/minecraft/world/level/levelgen/structure/templatesystem/StructurePlaceSettings/setRotation (Lnet/minecraft/world/level/block/Rotation;)Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructurePlaceSettings; +MD: net/minecraft/world/level/levelgen/structure/templatesystem/StructurePlaceSettings/m_74381_ (Lnet/minecraft/world/level/levelgen/structure/BoundingBox;)Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructurePlaceSettings; net/minecraft/world/level/levelgen/structure/templatesystem/StructurePlaceSettings/setBoundingBox (Lnet/minecraft/world/level/levelgen/structure/BoundingBox;)Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructurePlaceSettings; +MD: net/minecraft/world/level/levelgen/structure/templatesystem/StructurePlaceSettings/m_74383_ (Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureProcessor;)Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructurePlaceSettings; net/minecraft/world/level/levelgen/structure/templatesystem/StructurePlaceSettings/addProcessor (Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureProcessor;)Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructurePlaceSettings; +MD: net/minecraft/world/level/levelgen/structure/templatesystem/StructurePlaceSettings/m_74385_ (Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructurePlaceSettings; net/minecraft/world/level/levelgen/structure/templatesystem/StructurePlaceSettings/setRotationPivot (Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructurePlaceSettings; +MD: net/minecraft/world/level/levelgen/structure/templatesystem/StructurePlaceSettings/m_74387_ (Ljava/util/List;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate$Palette; net/minecraft/world/level/levelgen/structure/templatesystem/StructurePlaceSettings/getRandomPalette (Ljava/util/List;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate$Palette; +MD: net/minecraft/world/level/levelgen/structure/templatesystem/StructurePlaceSettings/m_74392_ (Z)Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructurePlaceSettings; net/minecraft/world/level/levelgen/structure/templatesystem/StructurePlaceSettings/setIgnoreEntities (Z)Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructurePlaceSettings; +MD: net/minecraft/world/level/levelgen/structure/templatesystem/StructurePlaceSettings/m_74394_ ()Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructurePlaceSettings; net/minecraft/world/level/levelgen/structure/templatesystem/StructurePlaceSettings/clearProcessors ()Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructurePlaceSettings; +MD: net/minecraft/world/level/levelgen/structure/templatesystem/StructurePlaceSettings/m_74397_ (Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureProcessor;)Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructurePlaceSettings; net/minecraft/world/level/levelgen/structure/templatesystem/StructurePlaceSettings/popProcessor (Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureProcessor;)Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructurePlaceSettings; +MD: net/minecraft/world/level/levelgen/structure/templatesystem/StructurePlaceSettings/m_74401_ ()Lnet/minecraft/world/level/block/Mirror; net/minecraft/world/level/levelgen/structure/templatesystem/StructurePlaceSettings/getMirror ()Lnet/minecraft/world/level/block/Mirror; +MD: net/minecraft/world/level/levelgen/structure/templatesystem/StructurePlaceSettings/m_74402_ (Z)Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructurePlaceSettings; net/minecraft/world/level/levelgen/structure/templatesystem/StructurePlaceSettings/setKnownShape (Z)Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructurePlaceSettings; +MD: net/minecraft/world/level/levelgen/structure/templatesystem/StructurePlaceSettings/m_74404_ ()Lnet/minecraft/world/level/block/Rotation; net/minecraft/world/level/levelgen/structure/templatesystem/StructurePlaceSettings/getRotation ()Lnet/minecraft/world/level/block/Rotation; +MD: net/minecraft/world/level/levelgen/structure/templatesystem/StructurePlaceSettings/m_74405_ (Z)Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructurePlaceSettings; net/minecraft/world/level/levelgen/structure/templatesystem/StructurePlaceSettings/setFinalizeEntities (Z)Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructurePlaceSettings; +MD: net/minecraft/world/level/levelgen/structure/templatesystem/StructurePlaceSettings/m_74407_ ()Lnet/minecraft/core/BlockPos; net/minecraft/world/level/levelgen/structure/templatesystem/StructurePlaceSettings/getRotationPivot ()Lnet/minecraft/core/BlockPos; +MD: net/minecraft/world/level/levelgen/structure/templatesystem/StructurePlaceSettings/m_74408_ ()Z net/minecraft/world/level/levelgen/structure/templatesystem/StructurePlaceSettings/isIgnoreEntities ()Z +MD: net/minecraft/world/level/levelgen/structure/templatesystem/StructurePlaceSettings/m_74409_ ()Lnet/minecraft/world/level/levelgen/structure/BoundingBox; net/minecraft/world/level/levelgen/structure/templatesystem/StructurePlaceSettings/getBoundingBox ()Lnet/minecraft/world/level/levelgen/structure/BoundingBox; +MD: net/minecraft/world/level/levelgen/structure/templatesystem/StructurePlaceSettings/m_74410_ ()Z net/minecraft/world/level/levelgen/structure/templatesystem/StructurePlaceSettings/getKnownShape ()Z +MD: net/minecraft/world/level/levelgen/structure/templatesystem/StructurePlaceSettings/m_74411_ ()Ljava/util/List; net/minecraft/world/level/levelgen/structure/templatesystem/StructurePlaceSettings/getProcessors ()Ljava/util/List; +MD: net/minecraft/world/level/levelgen/structure/templatesystem/StructurePlaceSettings/m_74413_ ()Z net/minecraft/world/level/levelgen/structure/templatesystem/StructurePlaceSettings/shouldKeepLiquids ()Z +MD: net/minecraft/world/level/levelgen/structure/templatesystem/StructurePlaceSettings/m_74414_ ()Z net/minecraft/world/level/levelgen/structure/templatesystem/StructurePlaceSettings/shouldFinalizeEntities ()Z +MD: net/minecraft/world/level/levelgen/structure/templatesystem/StructureProcessor/ ()V net/minecraft/world/level/levelgen/structure/templatesystem/StructureProcessor/ ()V +MD: net/minecraft/world/level/levelgen/structure/templatesystem/StructureProcessor/m_276976_ (Lnet/minecraft/world/level/ServerLevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;Ljava/util/List;Ljava/util/List;Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructurePlaceSettings;)Ljava/util/List; net/minecraft/world/level/levelgen/structure/templatesystem/StructureProcessor/finalizeProcessing (Lnet/minecraft/world/level/ServerLevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;Ljava/util/List;Ljava/util/List;Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructurePlaceSettings;)Ljava/util/List; +MD: net/minecraft/world/level/levelgen/structure/templatesystem/StructureProcessor/m_6953_ ()Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureProcessorType; net/minecraft/world/level/levelgen/structure/templatesystem/StructureProcessor/getType ()Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureProcessorType; +MD: net/minecraft/world/level/levelgen/structure/templatesystem/StructureProcessor/m_7382_ (Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate$StructureBlockInfo;Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate$StructureBlockInfo;Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructurePlaceSettings;)Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate$StructureBlockInfo; net/minecraft/world/level/levelgen/structure/templatesystem/StructureProcessor/processBlock (Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate$StructureBlockInfo;Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate$StructureBlockInfo;Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructurePlaceSettings;)Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate$StructureBlockInfo; +MD: net/minecraft/world/level/levelgen/structure/templatesystem/StructureProcessorList/ (Ljava/util/List;)V net/minecraft/world/level/levelgen/structure/templatesystem/StructureProcessorList/ (Ljava/util/List;)V +MD: net/minecraft/world/level/levelgen/structure/templatesystem/StructureProcessorList/m_74425_ ()Ljava/util/List; net/minecraft/world/level/levelgen/structure/templatesystem/StructureProcessorList/list ()Ljava/util/List; +MD: net/minecraft/world/level/levelgen/structure/templatesystem/StructureProcessorList/toString ()Ljava/lang/String; net/minecraft/world/level/levelgen/structure/templatesystem/StructureProcessorList/toString ()Ljava/lang/String; +MD: net/minecraft/world/level/levelgen/structure/templatesystem/StructureProcessorType/ ()V net/minecraft/world/level/levelgen/structure/templatesystem/StructureProcessorType/ ()V +MD: net/minecraft/world/level/levelgen/structure/templatesystem/StructureProcessorType/m_163785_ (Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureProcessorList;)Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureProcessorList; net/minecraft/world/level/levelgen/structure/templatesystem/StructureProcessorType/lambda$static$1 (Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureProcessorList;)Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureProcessorList; +MD: net/minecraft/world/level/levelgen/structure/templatesystem/StructureProcessorType/m_163787_ (Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureProcessorList;)Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureProcessorList; net/minecraft/world/level/levelgen/structure/templatesystem/StructureProcessorType/lambda$static$0 (Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureProcessorList;)Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureProcessorList; +MD: net/minecraft/world/level/levelgen/structure/templatesystem/StructureProcessorType/m_74470_ (Lcom/mojang/datafixers/util/Either;)Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureProcessorList; net/minecraft/world/level/levelgen/structure/templatesystem/StructureProcessorType/lambda$static$2 (Lcom/mojang/datafixers/util/Either;)Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureProcessorList; +MD: net/minecraft/world/level/levelgen/structure/templatesystem/StructureProcessorType/m_74472_ (Lcom/mojang/serialization/Codec;)Lcom/mojang/serialization/Codec; net/minecraft/world/level/levelgen/structure/templatesystem/StructureProcessorType/lambda$register$3 (Lcom/mojang/serialization/Codec;)Lcom/mojang/serialization/Codec; +MD: net/minecraft/world/level/levelgen/structure/templatesystem/StructureProcessorType/m_74476_ (Ljava/lang/String;Lcom/mojang/serialization/Codec;)Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureProcessorType; net/minecraft/world/level/levelgen/structure/templatesystem/StructureProcessorType/register (Ljava/lang/String;Lcom/mojang/serialization/Codec;)Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureProcessorType; +MD: net/minecraft/world/level/levelgen/structure/templatesystem/StructureProcessorType/m_74481_ ()Lcom/mojang/serialization/Codec; net/minecraft/world/level/levelgen/structure/templatesystem/StructureProcessorType/codec ()Lcom/mojang/serialization/Codec; +MD: net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate/ ()V net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate/ ()V +MD: net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate/m_163801_ ()Lnet/minecraft/core/Vec3i; net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate/getSize ()Lnet/minecraft/core/Vec3i; +MD: net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate/m_163802_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Vec3i;ZLnet/minecraft/world/level/block/Block;)V net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate/fillFromWorld (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Vec3i;ZLnet/minecraft/world/level/block/Block;)V +MD: net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate/m_163808_ (Lnet/minecraft/world/level/block/Rotation;)Lnet/minecraft/core/Vec3i; net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate/getSize (Lnet/minecraft/world/level/block/Rotation;)Lnet/minecraft/core/Vec3i; +MD: net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate/m_163810_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/Rotation;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/Mirror;Lnet/minecraft/core/Vec3i;)Lnet/minecraft/world/level/levelgen/structure/BoundingBox; net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate/getBoundingBox (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/Rotation;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/Mirror;Lnet/minecraft/core/Vec3i;)Lnet/minecraft/world/level/levelgen/structure/BoundingBox; +MD: net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate/m_230328_ (Lnet/minecraft/world/level/ServerLevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructurePlaceSettings;Lnet/minecraft/util/RandomSource;I)Z net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate/placeInWorld (Lnet/minecraft/world/level/ServerLevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructurePlaceSettings;Lnet/minecraft/util/RandomSource;I)Z +MD: net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate/m_230335_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructurePlaceSettings;Lnet/minecraft/world/level/block/Block;Z)Lit/unimi/dsi/fastutil/objects/ObjectArrayList; net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate/filterBlocks (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructurePlaceSettings;Lnet/minecraft/world/level/block/Block;Z)Lit/unimi/dsi/fastutil/objects/ObjectArrayList; +MD: net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate/m_246595_ (Lnet/minecraft/core/HolderGetter;Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate/load (Lnet/minecraft/core/HolderGetter;Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate/m_247272_ (Lnet/minecraft/core/HolderGetter;Lnet/minecraft/nbt/ListTag;Lnet/minecraft/nbt/ListTag;)V net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate/loadPalette (Lnet/minecraft/core/HolderGetter;Lnet/minecraft/nbt/ListTag;Lnet/minecraft/nbt/ListTag;)V +MD: net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate/m_274299_ (Lnet/minecraft/world/level/block/Rotation;Lnet/minecraft/world/level/block/Mirror;Lnet/minecraft/world/phys/Vec3;ZLnet/minecraft/world/level/ServerLevelAccessor;Lnet/minecraft/nbt/CompoundTag;Lnet/minecraft/world/entity/Entity;)V net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate/lambda$placeEntities$5 (Lnet/minecraft/world/level/block/Rotation;Lnet/minecraft/world/level/block/Mirror;Lnet/minecraft/world/phys/Vec3;ZLnet/minecraft/world/level/ServerLevelAccessor;Lnet/minecraft/nbt/CompoundTag;Lnet/minecraft/world/entity/Entity;)V +MD: net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate/m_74488_ (IIILnet/minecraft/world/level/LevelAccessor;ILnet/minecraft/core/Direction;III)V net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate/lambda$updateShapeAtEdge$4 (IIILnet/minecraft/world/level/LevelAccessor;ILnet/minecraft/core/Direction;III)V +MD: net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate/m_74498_ (Lnet/minecraft/world/entity/Entity;)Z net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate/lambda$fillEntityList$3 (Lnet/minecraft/world/entity/Entity;)Z +MD: net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate/m_74500_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;)V net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate/fillEntityList (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate/m_74510_ (Lnet/minecraft/world/level/LevelAccessor;ILnet/minecraft/world/phys/shapes/DiscreteVoxelShape;III)V net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate/updateShapeAtEdge (Lnet/minecraft/world/level/LevelAccessor;ILnet/minecraft/world/phys/shapes/DiscreteVoxelShape;III)V +MD: net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate/m_74517_ (Lnet/minecraft/world/level/ServerLevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructurePlaceSettings;Ljava/util/List;)Ljava/util/List; net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate/processBlockInfos (Lnet/minecraft/world/level/ServerLevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructurePlaceSettings;Ljava/util/List;)Ljava/util/List; +MD: net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate/m_74523_ (Lnet/minecraft/world/level/ServerLevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/Mirror;Lnet/minecraft/world/level/block/Rotation;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/levelgen/structure/BoundingBox;Z)V net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate/placeEntities (Lnet/minecraft/world/level/ServerLevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/Mirror;Lnet/minecraft/world/level/block/Rotation;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/levelgen/structure/BoundingBox;Z)V +MD: net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate/m_74543_ (Lnet/minecraft/world/level/ServerLevelAccessor;Lnet/minecraft/nbt/CompoundTag;)Ljava/util/Optional; net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate/createEntityIgnoreException (Lnet/minecraft/world/level/ServerLevelAccessor;Lnet/minecraft/nbt/CompoundTag;)Ljava/util/Optional; +MD: net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate/m_74563_ (Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructurePlaceSettings;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/core/BlockPos; net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate/calculateRelativePosition (Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructurePlaceSettings;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/core/BlockPos; +MD: net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate/m_74566_ (Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructurePlaceSettings;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructurePlaceSettings;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/core/BlockPos; net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate/calculateConnectedPosition (Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructurePlaceSettings;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructurePlaceSettings;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/core/BlockPos; +MD: net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate/m_74571_ (Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate$StructureBlockInfo;)I net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate/lambda$buildInfoList$2 (Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate$StructureBlockInfo;)I +MD: net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate/m_74573_ (Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate$StructureBlockInfo;Ljava/util/List;Ljava/util/List;Ljava/util/List;)V net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate/addToLists (Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate$StructureBlockInfo;Ljava/util/List;Ljava/util/List;Ljava/util/List;)V +MD: net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate/m_74578_ (Lnet/minecraft/world/phys/Vec3;Lnet/minecraft/world/level/block/Mirror;Lnet/minecraft/world/level/block/Rotation;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/phys/Vec3; net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate/transform (Lnet/minecraft/world/phys/Vec3;Lnet/minecraft/world/level/block/Mirror;Lnet/minecraft/world/level/block/Rotation;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/phys/Vec3; +MD: net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate/m_74583_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/Mirror;Lnet/minecraft/world/level/block/Rotation;)Lnet/minecraft/core/BlockPos; net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate/getZeroPositionWithTransform (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/Mirror;Lnet/minecraft/world/level/block/Rotation;)Lnet/minecraft/core/BlockPos; +MD: net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate/m_74587_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/Mirror;Lnet/minecraft/world/level/block/Rotation;II)Lnet/minecraft/core/BlockPos; net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate/getZeroPositionWithTransform (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/Mirror;Lnet/minecraft/world/level/block/Rotation;II)Lnet/minecraft/core/BlockPos; +MD: net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate/m_74593_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/Mirror;Lnet/minecraft/world/level/block/Rotation;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/core/BlockPos; net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate/transform (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/Mirror;Lnet/minecraft/world/level/block/Rotation;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/core/BlockPos; +MD: net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate/m_74598_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/Rotation;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/Mirror;)Lnet/minecraft/world/level/levelgen/structure/BoundingBox; net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate/getBoundingBox (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/Rotation;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/Mirror;)Lnet/minecraft/world/level/levelgen/structure/BoundingBox; +MD: net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate/m_74603_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructurePlaceSettings;Lnet/minecraft/world/level/block/Block;)Ljava/util/List; net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate/filterBlocks (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructurePlaceSettings;Lnet/minecraft/world/level/block/Block;)Ljava/util/List; +MD: net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate/m_74612_ (Ljava/lang/String;)V net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate/setAuthor (Ljava/lang/String;)V +MD: net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate/m_74614_ (Ljava/util/List;Ljava/util/List;Ljava/util/List;)Ljava/util/List; net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate/buildInfoList (Ljava/util/List;Ljava/util/List;Ljava/util/List;)Ljava/util/List; +MD: net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate/m_74618_ (Lnet/minecraft/nbt/CompoundTag;)Lnet/minecraft/nbt/CompoundTag; net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate/save (Lnet/minecraft/nbt/CompoundTag;)Lnet/minecraft/nbt/CompoundTag; +MD: net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate/m_74623_ ([D)Lnet/minecraft/nbt/ListTag; net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate/newDoubleList ([D)Lnet/minecraft/nbt/ListTag; +MD: net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate/m_74625_ ([I)Lnet/minecraft/nbt/ListTag; net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate/newIntegerList ([I)Lnet/minecraft/nbt/ListTag; +MD: net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate/m_74627_ ()Ljava/lang/String; net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate/getAuthor ()Ljava/lang/String; +MD: net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate/m_74633_ (Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructurePlaceSettings;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/levelgen/structure/BoundingBox; net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate/getBoundingBox (Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructurePlaceSettings;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/levelgen/structure/BoundingBox; +MD: net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate/m_74636_ (Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate$StructureBlockInfo;)I net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate/lambda$buildInfoList$1 (Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate$StructureBlockInfo;)I +MD: net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate/m_74640_ (Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate$StructureBlockInfo;)I net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate/lambda$buildInfoList$0 (Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate$StructureBlockInfo;)I +MD: net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate$1/ ()V net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate$1/ ()V +MD: net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate$Palette/ (Ljava/util/List;)V net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate$Palette/ (Ljava/util/List;)V +MD: net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate$Palette/m_163816_ (Lnet/minecraft/world/level/block/Block;Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate$StructureBlockInfo;)Z net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate$Palette/lambda$blocks$0 (Lnet/minecraft/world/level/block/Block;Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate$StructureBlockInfo;)Z +MD: net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate$Palette/m_74652_ ()Ljava/util/List; net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate$Palette/blocks ()Ljava/util/List; +MD: net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate$Palette/m_74653_ (Lnet/minecraft/world/level/block/Block;)Ljava/util/List; net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate$Palette/blocks (Lnet/minecraft/world/level/block/Block;)Ljava/util/List; +MD: net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate$Palette/m_74658_ (Lnet/minecraft/world/level/block/Block;)Ljava/util/List; net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate$Palette/lambda$blocks$1 (Lnet/minecraft/world/level/block/Block;)Ljava/util/List; +MD: net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate$SimplePalette/ ()V net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate$SimplePalette/ ()V +MD: net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate$SimplePalette/ ()V net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate$SimplePalette/ ()V +MD: net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate$SimplePalette/iterator ()Ljava/util/Iterator; net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate$SimplePalette/iterator ()Ljava/util/Iterator; +MD: net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate$SimplePalette/m_74667_ (I)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate$SimplePalette/stateFor (I)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate$SimplePalette/m_74669_ (Lnet/minecraft/world/level/block/state/BlockState;)I net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate$SimplePalette/idFor (Lnet/minecraft/world/level/block/state/BlockState;)I +MD: net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate$SimplePalette/m_74671_ (Lnet/minecraft/world/level/block/state/BlockState;I)V net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate$SimplePalette/addMapping (Lnet/minecraft/world/level/block/state/BlockState;I)V +MD: net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate$StructureBlockInfo/ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate$StructureBlockInfo/ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate$StructureBlockInfo/equals (Ljava/lang/Object;)Z net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate$StructureBlockInfo/equals (Ljava/lang/Object;)Z +MD: net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate$StructureBlockInfo/f_74675_ ()Lnet/minecraft/core/BlockPos; net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate$StructureBlockInfo/pos ()Lnet/minecraft/core/BlockPos; +MD: net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate$StructureBlockInfo/f_74676_ ()Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate$StructureBlockInfo/state ()Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate$StructureBlockInfo/f_74677_ ()Lnet/minecraft/nbt/CompoundTag; net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate$StructureBlockInfo/nbt ()Lnet/minecraft/nbt/CompoundTag; +MD: net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate$StructureBlockInfo/hashCode ()I net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate$StructureBlockInfo/hashCode ()I +MD: net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate$StructureBlockInfo/toString ()Ljava/lang/String; net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate$StructureBlockInfo/toString ()Ljava/lang/String; +MD: net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate$StructureEntityInfo/ (Lnet/minecraft/world/phys/Vec3;Lnet/minecraft/core/BlockPos;Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate$StructureEntityInfo/ (Lnet/minecraft/world/phys/Vec3;Lnet/minecraft/core/BlockPos;Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager/ ()V net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager/ ()V +MD: net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager/ (Lnet/minecraft/server/packs/resources/ResourceManager;Lnet/minecraft/world/level/storage/LevelStorageSource$LevelStorageAccess;Lcom/mojang/datafixers/DataFixer;Lnet/minecraft/core/HolderGetter;)V net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager/ (Lnet/minecraft/server/packs/resources/ResourceManager;Lnet/minecraft/world/level/storage/LevelStorageSource$LevelStorageAccess;Lcom/mojang/datafixers/DataFixer;Lnet/minecraft/core/HolderGetter;)V +MD: net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager/m_230355_ ()Ljava/util/stream/Stream; net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager/listTemplates ()Ljava/util/stream/Stream; +MD: net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager/m_230356_ (ILjava/lang/String;)Ljava/lang/String; net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager/lambda$listFolderContents$7 (ILjava/lang/String;)Ljava/lang/String; +MD: net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager/m_230359_ (Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate; net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager/getOrCreate (Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate; +MD: net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager/m_230361_ (Lnet/minecraft/resources/ResourceLocation;Ljava/lang/String;)Ljava/nio/file/Path; net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager/getPathToGeneratedStructure (Lnet/minecraft/resources/ResourceLocation;Ljava/lang/String;)Ljava/nio/file/Path; +MD: net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager/m_230364_ (Lnet/minecraft/resources/ResourceLocation;Ljava/lang/Throwable;)V net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager/lambda$loadFromResource$2 (Lnet/minecraft/resources/ResourceLocation;Ljava/lang/Throwable;)V +MD: net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager/m_230367_ (Lnet/minecraft/resources/ResourceLocation;Ljava/nio/file/Path;)Ljava/util/Optional; net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager/loadFromSnbt (Lnet/minecraft/resources/ResourceLocation;Ljava/nio/file/Path;)Ljava/util/Optional; +MD: net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager/m_230370_ (Lnet/minecraft/server/packs/resources/ResourceManager;)V net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager/onResourceManagerReload (Lnet/minecraft/server/packs/resources/ResourceManager;)V +MD: net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager/m_230372_ (Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager$InputStreamOpener;Ljava/util/function/Consumer;)Ljava/util/Optional; net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager/load (Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager$InputStreamOpener;Ljava/util/function/Consumer;)Ljava/util/Optional; +MD: net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager/m_230375_ (Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager$Source;)Ljava/util/stream/Stream; net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager/lambda$listTemplates$0 (Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager$Source;)Ljava/util/stream/Stream; +MD: net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager/m_230377_ (Ljava/io/InputStream;)Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate; net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager/readStructure (Ljava/io/InputStream;)Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate; +MD: net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager/m_230379_ (Ljava/lang/String;Ljava/nio/file/Path;)Z net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager/lambda$listFolderContents$8 (Ljava/lang/String;Ljava/nio/file/Path;)Z +MD: net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager/m_230382_ (Ljava/lang/String;Ljava/util/function/Function;Ljava/nio/file/Path;Ljava/nio/file/Path;Ljava/util/function/Consumer;)V net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager/lambda$listFolderContents$9 (Ljava/lang/String;Ljava/util/function/Function;Ljava/nio/file/Path;Ljava/nio/file/Path;Ljava/util/function/Consumer;)V +MD: net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager/m_230388_ (Ljava/nio/file/Path;)Ljava/util/stream/Stream; net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager/listGeneratedInNamespace (Ljava/nio/file/Path;)Ljava/util/stream/Stream; +MD: net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager/m_230390_ (Ljava/nio/file/Path;Lnet/minecraft/resources/ResourceLocation;Ljava/lang/String;)Ljava/nio/file/Path; net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager/createPathToStructure (Ljava/nio/file/Path;Lnet/minecraft/resources/ResourceLocation;Ljava/lang/String;)Ljava/nio/file/Path; +MD: net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager/m_230394_ (Ljava/nio/file/Path;Ljava/lang/String;Ljava/lang/String;)Ljava/util/stream/Stream; net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager/listFolderContents (Ljava/nio/file/Path;Ljava/lang/String;Ljava/lang/String;)Ljava/util/stream/Stream; +MD: net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager/m_230398_ (Ljava/nio/file/Path;Ljava/lang/Throwable;)V net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager/lambda$loadFromGenerated$4 (Ljava/nio/file/Path;Ljava/lang/Throwable;)V +MD: net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager/m_230401_ (Ljava/nio/file/Path;Ljava/nio/file/Path;)Ljava/lang/String; net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager/relativize (Ljava/nio/file/Path;Ljava/nio/file/Path;)Ljava/lang/String; +MD: net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager/m_230404_ (Lnet/minecraft/nbt/CompoundTag;)Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate; net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager/readStructure (Lnet/minecraft/nbt/CompoundTag;)Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate; +MD: net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager/m_230406_ ()Ljava/util/stream/Stream; net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager/listResources ()Ljava/util/stream/Stream; +MD: net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager/m_230407_ (Lnet/minecraft/resources/ResourceLocation;)Ljava/util/Optional; net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager/get (Lnet/minecraft/resources/ResourceLocation;)Ljava/util/Optional; +MD: net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager/m_230409_ (Ljava/nio/file/Path;)Ljava/util/stream/Stream; net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager/lambda$listGenerated$6 (Ljava/nio/file/Path;)Ljava/util/stream/Stream; +MD: net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager/m_230411_ (Ljava/nio/file/Path;Lnet/minecraft/resources/ResourceLocation;Ljava/lang/String;)Ljava/nio/file/Path; net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager/createAndValidatePathToStructure (Ljava/nio/file/Path;Lnet/minecraft/resources/ResourceLocation;Ljava/lang/String;)Ljava/nio/file/Path; +MD: net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager/m_230415_ ()Ljava/util/stream/Stream; net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager/listTestStructures ()Ljava/util/stream/Stream; +MD: net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager/m_230416_ (Lnet/minecraft/resources/ResourceLocation;)Z net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager/save (Lnet/minecraft/resources/ResourceLocation;)Z +MD: net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager/m_230418_ (Ljava/nio/file/Path;)Z net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager/lambda$listGenerated$5 (Ljava/nio/file/Path;)Z +MD: net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager/m_230420_ ()Ljava/util/stream/Stream; net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager/listGenerated ()Ljava/util/stream/Stream; +MD: net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager/m_230421_ (Lnet/minecraft/resources/ResourceLocation;)V net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager/remove (Lnet/minecraft/resources/ResourceLocation;)V +MD: net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager/m_230423_ (Ljava/nio/file/Path;)Ljava/io/InputStream; net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager/lambda$loadFromGenerated$3 (Ljava/nio/file/Path;)Ljava/io/InputStream; +MD: net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager/m_230425_ (Lnet/minecraft/resources/ResourceLocation;)Ljava/util/Optional; net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager/tryLoad (Lnet/minecraft/resources/ResourceLocation;)Ljava/util/Optional; +MD: net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager/m_230427_ (Lnet/minecraft/resources/ResourceLocation;)Ljava/util/Optional; net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager/loadFromResource (Lnet/minecraft/resources/ResourceLocation;)Ljava/util/Optional; +MD: net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager/m_230429_ (Lnet/minecraft/resources/ResourceLocation;)Ljava/util/Optional; net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager/loadFromTestStructures (Lnet/minecraft/resources/ResourceLocation;)Ljava/util/Optional; +MD: net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager/m_230431_ (Lnet/minecraft/resources/ResourceLocation;)Ljava/util/Optional; net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager/loadFromGenerated (Lnet/minecraft/resources/ResourceLocation;)Ljava/util/Optional; +MD: net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager/m_230437_ (Lnet/minecraft/resources/ResourceLocation;)Ljava/io/InputStream; net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager/lambda$loadFromResource$1 (Lnet/minecraft/resources/ResourceLocation;)Ljava/io/InputStream; +MD: net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager$InputStreamOpener/m_230439_ ()Ljava/io/InputStream; net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager$InputStreamOpener/open ()Ljava/io/InputStream; +MD: net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager$Source/ (Ljava/util/function/Function;Ljava/util/function/Supplier;)V net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager$Source/ (Ljava/util/function/Function;Ljava/util/function/Supplier;)V +MD: net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager$Source/equals (Ljava/lang/Object;)Z net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager$Source/equals (Ljava/lang/Object;)Z +MD: net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager$Source/f_230440_ ()Ljava/util/function/Function; net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager$Source/loader ()Ljava/util/function/Function; +MD: net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager$Source/f_230441_ ()Ljava/util/function/Supplier; net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager$Source/lister ()Ljava/util/function/Supplier; +MD: net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager$Source/hashCode ()I net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager$Source/hashCode ()I +MD: net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager$Source/toString ()Ljava/lang/String; net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager$Source/toString ()Ljava/lang/String; +MD: net/minecraft/world/level/levelgen/structure/templatesystem/TagMatchTest/ ()V net/minecraft/world/level/levelgen/structure/templatesystem/TagMatchTest/ ()V +MD: net/minecraft/world/level/levelgen/structure/templatesystem/TagMatchTest/ (Lnet/minecraft/tags/TagKey;)V net/minecraft/world/level/levelgen/structure/templatesystem/TagMatchTest/ (Lnet/minecraft/tags/TagKey;)V +MD: net/minecraft/world/level/levelgen/structure/templatesystem/TagMatchTest/m_205064_ (Lnet/minecraft/world/level/levelgen/structure/templatesystem/TagMatchTest;)Lnet/minecraft/tags/TagKey; net/minecraft/world/level/levelgen/structure/templatesystem/TagMatchTest/lambda$static$0 (Lnet/minecraft/world/level/levelgen/structure/templatesystem/TagMatchTest;)Lnet/minecraft/tags/TagKey; +MD: net/minecraft/world/level/levelgen/structure/templatesystem/TagMatchTest/m_213865_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/util/RandomSource;)Z net/minecraft/world/level/levelgen/structure/templatesystem/TagMatchTest/test (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/util/RandomSource;)Z +MD: net/minecraft/world/level/levelgen/structure/templatesystem/TagMatchTest/m_7319_ ()Lnet/minecraft/world/level/levelgen/structure/templatesystem/RuleTestType; net/minecraft/world/level/levelgen/structure/templatesystem/TagMatchTest/getType ()Lnet/minecraft/world/level/levelgen/structure/templatesystem/RuleTestType; +MD: net/minecraft/world/level/levelgen/structure/templatesystem/rule/blockentity/AppendLoot/ ()V net/minecraft/world/level/levelgen/structure/templatesystem/rule/blockentity/AppendLoot/ ()V +MD: net/minecraft/world/level/levelgen/structure/templatesystem/rule/blockentity/AppendLoot/ (Lnet/minecraft/resources/ResourceLocation;)V net/minecraft/world/level/levelgen/structure/templatesystem/rule/blockentity/AppendLoot/ (Lnet/minecraft/resources/ResourceLocation;)V +MD: net/minecraft/world/level/levelgen/structure/templatesystem/rule/blockentity/AppendLoot/m_276854_ (Lnet/minecraft/util/RandomSource;Lnet/minecraft/nbt/CompoundTag;)Lnet/minecraft/nbt/CompoundTag; net/minecraft/world/level/levelgen/structure/templatesystem/rule/blockentity/AppendLoot/apply (Lnet/minecraft/util/RandomSource;Lnet/minecraft/nbt/CompoundTag;)Lnet/minecraft/nbt/CompoundTag; +MD: net/minecraft/world/level/levelgen/structure/templatesystem/rule/blockentity/AppendLoot/m_276855_ ()Lnet/minecraft/world/level/levelgen/structure/templatesystem/rule/blockentity/RuleBlockEntityModifierType; net/minecraft/world/level/levelgen/structure/templatesystem/rule/blockentity/AppendLoot/getType ()Lnet/minecraft/world/level/levelgen/structure/templatesystem/rule/blockentity/RuleBlockEntityModifierType; +MD: net/minecraft/world/level/levelgen/structure/templatesystem/rule/blockentity/AppendLoot/m_276930_ (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/world/level/levelgen/structure/templatesystem/rule/blockentity/AppendLoot/lambda$static$1 (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/world/level/levelgen/structure/templatesystem/rule/blockentity/AppendLoot/m_276970_ (Lnet/minecraft/world/level/levelgen/structure/templatesystem/rule/blockentity/AppendLoot;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/world/level/levelgen/structure/templatesystem/rule/blockentity/AppendLoot/lambda$static$0 (Lnet/minecraft/world/level/levelgen/structure/templatesystem/rule/blockentity/AppendLoot;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/world/level/levelgen/structure/templatesystem/rule/blockentity/AppendLoot/m_276972_ (Lnet/minecraft/nbt/CompoundTag;Lnet/minecraft/nbt/Tag;)V net/minecraft/world/level/levelgen/structure/templatesystem/rule/blockentity/AppendLoot/lambda$apply$2 (Lnet/minecraft/nbt/CompoundTag;Lnet/minecraft/nbt/Tag;)V +MD: net/minecraft/world/level/levelgen/structure/templatesystem/rule/blockentity/AppendStatic/ ()V net/minecraft/world/level/levelgen/structure/templatesystem/rule/blockentity/AppendStatic/ ()V +MD: net/minecraft/world/level/levelgen/structure/templatesystem/rule/blockentity/AppendStatic/ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/level/levelgen/structure/templatesystem/rule/blockentity/AppendStatic/ (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/level/levelgen/structure/templatesystem/rule/blockentity/AppendStatic/m_276792_ (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/world/level/levelgen/structure/templatesystem/rule/blockentity/AppendStatic/lambda$static$1 (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/world/level/levelgen/structure/templatesystem/rule/blockentity/AppendStatic/m_276854_ (Lnet/minecraft/util/RandomSource;Lnet/minecraft/nbt/CompoundTag;)Lnet/minecraft/nbt/CompoundTag; net/minecraft/world/level/levelgen/structure/templatesystem/rule/blockentity/AppendStatic/apply (Lnet/minecraft/util/RandomSource;Lnet/minecraft/nbt/CompoundTag;)Lnet/minecraft/nbt/CompoundTag; +MD: net/minecraft/world/level/levelgen/structure/templatesystem/rule/blockentity/AppendStatic/m_276855_ ()Lnet/minecraft/world/level/levelgen/structure/templatesystem/rule/blockentity/RuleBlockEntityModifierType; net/minecraft/world/level/levelgen/structure/templatesystem/rule/blockentity/AppendStatic/getType ()Lnet/minecraft/world/level/levelgen/structure/templatesystem/rule/blockentity/RuleBlockEntityModifierType; +MD: net/minecraft/world/level/levelgen/structure/templatesystem/rule/blockentity/AppendStatic/m_277045_ (Lnet/minecraft/world/level/levelgen/structure/templatesystem/rule/blockentity/AppendStatic;)Lnet/minecraft/nbt/CompoundTag; net/minecraft/world/level/levelgen/structure/templatesystem/rule/blockentity/AppendStatic/lambda$static$0 (Lnet/minecraft/world/level/levelgen/structure/templatesystem/rule/blockentity/AppendStatic;)Lnet/minecraft/nbt/CompoundTag; +MD: net/minecraft/world/level/levelgen/structure/templatesystem/rule/blockentity/Clear/ ()V net/minecraft/world/level/levelgen/structure/templatesystem/rule/blockentity/Clear/ ()V +MD: net/minecraft/world/level/levelgen/structure/templatesystem/rule/blockentity/Clear/ ()V net/minecraft/world/level/levelgen/structure/templatesystem/rule/blockentity/Clear/ ()V +MD: net/minecraft/world/level/levelgen/structure/templatesystem/rule/blockentity/Clear/m_276854_ (Lnet/minecraft/util/RandomSource;Lnet/minecraft/nbt/CompoundTag;)Lnet/minecraft/nbt/CompoundTag; net/minecraft/world/level/levelgen/structure/templatesystem/rule/blockentity/Clear/apply (Lnet/minecraft/util/RandomSource;Lnet/minecraft/nbt/CompoundTag;)Lnet/minecraft/nbt/CompoundTag; +MD: net/minecraft/world/level/levelgen/structure/templatesystem/rule/blockentity/Clear/m_276855_ ()Lnet/minecraft/world/level/levelgen/structure/templatesystem/rule/blockentity/RuleBlockEntityModifierType; net/minecraft/world/level/levelgen/structure/templatesystem/rule/blockentity/Clear/getType ()Lnet/minecraft/world/level/levelgen/structure/templatesystem/rule/blockentity/RuleBlockEntityModifierType; +MD: net/minecraft/world/level/levelgen/structure/templatesystem/rule/blockentity/Passthrough/ ()V net/minecraft/world/level/levelgen/structure/templatesystem/rule/blockentity/Passthrough/ ()V +MD: net/minecraft/world/level/levelgen/structure/templatesystem/rule/blockentity/Passthrough/ ()V net/minecraft/world/level/levelgen/structure/templatesystem/rule/blockentity/Passthrough/ ()V +MD: net/minecraft/world/level/levelgen/structure/templatesystem/rule/blockentity/Passthrough/m_276854_ (Lnet/minecraft/util/RandomSource;Lnet/minecraft/nbt/CompoundTag;)Lnet/minecraft/nbt/CompoundTag; net/minecraft/world/level/levelgen/structure/templatesystem/rule/blockentity/Passthrough/apply (Lnet/minecraft/util/RandomSource;Lnet/minecraft/nbt/CompoundTag;)Lnet/minecraft/nbt/CompoundTag; +MD: net/minecraft/world/level/levelgen/structure/templatesystem/rule/blockentity/Passthrough/m_276855_ ()Lnet/minecraft/world/level/levelgen/structure/templatesystem/rule/blockentity/RuleBlockEntityModifierType; net/minecraft/world/level/levelgen/structure/templatesystem/rule/blockentity/Passthrough/getType ()Lnet/minecraft/world/level/levelgen/structure/templatesystem/rule/blockentity/RuleBlockEntityModifierType; +MD: net/minecraft/world/level/levelgen/structure/templatesystem/rule/blockentity/RuleBlockEntityModifier/ ()V net/minecraft/world/level/levelgen/structure/templatesystem/rule/blockentity/RuleBlockEntityModifier/ ()V +MD: net/minecraft/world/level/levelgen/structure/templatesystem/rule/blockentity/RuleBlockEntityModifier/m_276854_ (Lnet/minecraft/util/RandomSource;Lnet/minecraft/nbt/CompoundTag;)Lnet/minecraft/nbt/CompoundTag; net/minecraft/world/level/levelgen/structure/templatesystem/rule/blockentity/RuleBlockEntityModifier/apply (Lnet/minecraft/util/RandomSource;Lnet/minecraft/nbt/CompoundTag;)Lnet/minecraft/nbt/CompoundTag; +MD: net/minecraft/world/level/levelgen/structure/templatesystem/rule/blockentity/RuleBlockEntityModifier/m_276855_ ()Lnet/minecraft/world/level/levelgen/structure/templatesystem/rule/blockentity/RuleBlockEntityModifierType; net/minecraft/world/level/levelgen/structure/templatesystem/rule/blockentity/RuleBlockEntityModifier/getType ()Lnet/minecraft/world/level/levelgen/structure/templatesystem/rule/blockentity/RuleBlockEntityModifierType; +MD: net/minecraft/world/level/levelgen/structure/templatesystem/rule/blockentity/RuleBlockEntityModifierType/ ()V net/minecraft/world/level/levelgen/structure/templatesystem/rule/blockentity/RuleBlockEntityModifierType/ ()V +MD: net/minecraft/world/level/levelgen/structure/templatesystem/rule/blockentity/RuleBlockEntityModifierType/m_276888_ (Ljava/lang/String;Lcom/mojang/serialization/Codec;)Lnet/minecraft/world/level/levelgen/structure/templatesystem/rule/blockentity/RuleBlockEntityModifierType; net/minecraft/world/level/levelgen/structure/templatesystem/rule/blockentity/RuleBlockEntityModifierType/register (Ljava/lang/String;Lcom/mojang/serialization/Codec;)Lnet/minecraft/world/level/levelgen/structure/templatesystem/rule/blockentity/RuleBlockEntityModifierType; +MD: net/minecraft/world/level/levelgen/structure/templatesystem/rule/blockentity/RuleBlockEntityModifierType/m_276894_ ()Lcom/mojang/serialization/Codec; net/minecraft/world/level/levelgen/structure/templatesystem/rule/blockentity/RuleBlockEntityModifierType/codec ()Lcom/mojang/serialization/Codec; +MD: net/minecraft/world/level/levelgen/structure/templatesystem/rule/blockentity/RuleBlockEntityModifierType/m_276912_ (Lcom/mojang/serialization/Codec;)Lcom/mojang/serialization/Codec; net/minecraft/world/level/levelgen/structure/templatesystem/rule/blockentity/RuleBlockEntityModifierType/lambda$register$0 (Lcom/mojang/serialization/Codec;)Lcom/mojang/serialization/Codec; +MD: net/minecraft/world/level/levelgen/synth/BlendedNoise/ ()V net/minecraft/world/level/levelgen/synth/BlendedNoise/ ()V +MD: net/minecraft/world/level/levelgen/synth/BlendedNoise/ (Lnet/minecraft/util/RandomSource;DDDDD)V net/minecraft/world/level/levelgen/synth/BlendedNoise/ (Lnet/minecraft/util/RandomSource;DDDDD)V +MD: net/minecraft/world/level/levelgen/synth/BlendedNoise/ (Lnet/minecraft/world/level/levelgen/synth/PerlinNoise;Lnet/minecraft/world/level/levelgen/synth/PerlinNoise;Lnet/minecraft/world/level/levelgen/synth/PerlinNoise;DDDDD)V net/minecraft/world/level/levelgen/synth/BlendedNoise/ (Lnet/minecraft/world/level/levelgen/synth/PerlinNoise;Lnet/minecraft/world/level/levelgen/synth/PerlinNoise;Lnet/minecraft/world/level/levelgen/synth/PerlinNoise;DDDDD)V +MD: net/minecraft/world/level/levelgen/synth/BlendedNoise/m_192817_ (Ljava/lang/StringBuilder;)V net/minecraft/world/level/levelgen/synth/BlendedNoise/parityConfigString (Ljava/lang/StringBuilder;)V +MD: net/minecraft/world/level/levelgen/synth/BlendedNoise/m_207386_ (Lnet/minecraft/world/level/levelgen/DensityFunction$FunctionContext;)D net/minecraft/world/level/levelgen/synth/BlendedNoise/compute (Lnet/minecraft/world/level/levelgen/DensityFunction$FunctionContext;)D +MD: net/minecraft/world/level/levelgen/synth/BlendedNoise/m_207401_ ()D net/minecraft/world/level/levelgen/synth/BlendedNoise/maxValue ()D +MD: net/minecraft/world/level/levelgen/synth/BlendedNoise/m_207402_ ()D net/minecraft/world/level/levelgen/synth/BlendedNoise/minValue ()D +MD: net/minecraft/world/level/levelgen/synth/BlendedNoise/m_214023_ ()Lnet/minecraft/util/KeyDispatchDataCodec; net/minecraft/world/level/levelgen/synth/BlendedNoise/codec ()Lnet/minecraft/util/KeyDispatchDataCodec; +MD: net/minecraft/world/level/levelgen/synth/BlendedNoise/m_230477_ (DDDDD)Lnet/minecraft/world/level/levelgen/synth/BlendedNoise; net/minecraft/world/level/levelgen/synth/BlendedNoise/createUnseeded (DDDDD)Lnet/minecraft/world/level/levelgen/synth/BlendedNoise; +MD: net/minecraft/world/level/levelgen/synth/BlendedNoise/m_230483_ (Lnet/minecraft/util/RandomSource;)Lnet/minecraft/world/level/levelgen/synth/BlendedNoise; net/minecraft/world/level/levelgen/synth/BlendedNoise/withNewRandom (Lnet/minecraft/util/RandomSource;)Lnet/minecraft/world/level/levelgen/synth/BlendedNoise; +MD: net/minecraft/world/level/levelgen/synth/BlendedNoise/m_230485_ (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/world/level/levelgen/synth/BlendedNoise/lambda$static$5 (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/world/level/levelgen/synth/BlendedNoise/m_230487_ (Lnet/minecraft/world/level/levelgen/synth/BlendedNoise;)Ljava/lang/Double; net/minecraft/world/level/levelgen/synth/BlendedNoise/lambda$static$4 (Lnet/minecraft/world/level/levelgen/synth/BlendedNoise;)Ljava/lang/Double; +MD: net/minecraft/world/level/levelgen/synth/BlendedNoise/m_230489_ (Lnet/minecraft/world/level/levelgen/synth/BlendedNoise;)Ljava/lang/Double; net/minecraft/world/level/levelgen/synth/BlendedNoise/lambda$static$3 (Lnet/minecraft/world/level/levelgen/synth/BlendedNoise;)Ljava/lang/Double; +MD: net/minecraft/world/level/levelgen/synth/BlendedNoise/m_230492_ (Lnet/minecraft/world/level/levelgen/synth/BlendedNoise;)Ljava/lang/Double; net/minecraft/world/level/levelgen/synth/BlendedNoise/lambda$static$2 (Lnet/minecraft/world/level/levelgen/synth/BlendedNoise;)Ljava/lang/Double; +MD: net/minecraft/world/level/levelgen/synth/BlendedNoise/m_230494_ (Lnet/minecraft/world/level/levelgen/synth/BlendedNoise;)Ljava/lang/Double; net/minecraft/world/level/levelgen/synth/BlendedNoise/lambda$static$1 (Lnet/minecraft/world/level/levelgen/synth/BlendedNoise;)Ljava/lang/Double; +MD: net/minecraft/world/level/levelgen/synth/BlendedNoise/m_230496_ (Lnet/minecraft/world/level/levelgen/synth/BlendedNoise;)Ljava/lang/Double; net/minecraft/world/level/levelgen/synth/BlendedNoise/lambda$static$0 (Lnet/minecraft/world/level/levelgen/synth/BlendedNoise;)Ljava/lang/Double; +MD: net/minecraft/world/level/levelgen/synth/ImprovedNoise/ (Lnet/minecraft/util/RandomSource;)V net/minecraft/world/level/levelgen/synth/ImprovedNoise/ (Lnet/minecraft/util/RandomSource;)V +MD: net/minecraft/world/level/levelgen/synth/ImprovedNoise/m_164308_ (DDD)D net/minecraft/world/level/levelgen/synth/ImprovedNoise/noise (DDD)D +MD: net/minecraft/world/level/levelgen/synth/ImprovedNoise/m_164312_ (DDD[D)D net/minecraft/world/level/levelgen/synth/ImprovedNoise/noiseWithDerivative (DDD[D)D +MD: net/minecraft/world/level/levelgen/synth/ImprovedNoise/m_164317_ (IIIDDDD)D net/minecraft/world/level/levelgen/synth/ImprovedNoise/sampleAndLerp (IIIDDDD)D +MD: net/minecraft/world/level/levelgen/synth/ImprovedNoise/m_164325_ (IIIDDD[D)D net/minecraft/world/level/levelgen/synth/ImprovedNoise/sampleWithDerivative (IIIDDD[D)D +MD: net/minecraft/world/level/levelgen/synth/ImprovedNoise/m_192823_ (Ljava/lang/StringBuilder;)V net/minecraft/world/level/levelgen/synth/ImprovedNoise/parityConfigString (Ljava/lang/StringBuilder;)V +MD: net/minecraft/world/level/levelgen/synth/ImprovedNoise/m_75327_ (DDDDD)D net/minecraft/world/level/levelgen/synth/ImprovedNoise/noise (DDDDD)D +MD: net/minecraft/world/level/levelgen/synth/ImprovedNoise/m_75333_ (I)I net/minecraft/world/level/levelgen/synth/ImprovedNoise/p (I)I +MD: net/minecraft/world/level/levelgen/synth/ImprovedNoise/m_75335_ (IDDD)D net/minecraft/world/level/levelgen/synth/ImprovedNoise/gradDot (IDDD)D +MD: net/minecraft/world/level/levelgen/synth/NoiseUtils/ ()V net/minecraft/world/level/levelgen/synth/NoiseUtils/ ()V +MD: net/minecraft/world/level/levelgen/synth/NoiseUtils/m_164334_ (DD)D net/minecraft/world/level/levelgen/synth/NoiseUtils/biasTowardsExtreme (DD)D +MD: net/minecraft/world/level/levelgen/synth/NoiseUtils/m_192825_ (Ljava/lang/StringBuilder;DDD[B)V net/minecraft/world/level/levelgen/synth/NoiseUtils/parityNoiseOctaveConfigString (Ljava/lang/StringBuilder;DDD[B)V +MD: net/minecraft/world/level/levelgen/synth/NoiseUtils/m_192831_ (Ljava/lang/StringBuilder;DDD[I)V net/minecraft/world/level/levelgen/synth/NoiseUtils/parityNoiseOctaveConfigString (Ljava/lang/StringBuilder;DDD[I)V +MD: net/minecraft/world/level/levelgen/synth/NormalNoise/ (Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/levelgen/synth/NormalNoise$NoiseParameters;Z)V net/minecraft/world/level/levelgen/synth/NormalNoise/ (Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/levelgen/synth/NormalNoise$NoiseParameters;Z)V +MD: net/minecraft/world/level/levelgen/synth/NormalNoise/m_192842_ ()Lnet/minecraft/world/level/levelgen/synth/NormalNoise$NoiseParameters; net/minecraft/world/level/levelgen/synth/NormalNoise/parameters ()Lnet/minecraft/world/level/levelgen/synth/NormalNoise$NoiseParameters; +MD: net/minecraft/world/level/levelgen/synth/NormalNoise/m_192846_ (Ljava/lang/StringBuilder;)V net/minecraft/world/level/levelgen/synth/NormalNoise/parityConfigString (Ljava/lang/StringBuilder;)V +MD: net/minecraft/world/level/levelgen/synth/NormalNoise/m_210630_ ()D net/minecraft/world/level/levelgen/synth/NormalNoise/maxValue ()D +MD: net/minecraft/world/level/levelgen/synth/NormalNoise/m_230504_ (Lnet/minecraft/util/RandomSource;I[D)Lnet/minecraft/world/level/levelgen/synth/NormalNoise; net/minecraft/world/level/levelgen/synth/NormalNoise/create (Lnet/minecraft/util/RandomSource;I[D)Lnet/minecraft/world/level/levelgen/synth/NormalNoise; +MD: net/minecraft/world/level/levelgen/synth/NormalNoise/m_230508_ (Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/levelgen/synth/NormalNoise$NoiseParameters;)Lnet/minecraft/world/level/levelgen/synth/NormalNoise; net/minecraft/world/level/levelgen/synth/NormalNoise/createLegacyNetherBiome (Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/levelgen/synth/NormalNoise$NoiseParameters;)Lnet/minecraft/world/level/levelgen/synth/NormalNoise; +MD: net/minecraft/world/level/levelgen/synth/NormalNoise/m_230511_ (Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/levelgen/synth/NormalNoise$NoiseParameters;)Lnet/minecraft/world/level/levelgen/synth/NormalNoise; net/minecraft/world/level/levelgen/synth/NormalNoise/create (Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/levelgen/synth/NormalNoise$NoiseParameters;)Lnet/minecraft/world/level/levelgen/synth/NormalNoise; +MD: net/minecraft/world/level/levelgen/synth/NormalNoise/m_75380_ (DDD)D net/minecraft/world/level/levelgen/synth/NormalNoise/getValue (DDD)D +MD: net/minecraft/world/level/levelgen/synth/NormalNoise/m_75384_ (I)D net/minecraft/world/level/levelgen/synth/NormalNoise/expectedDeviation (I)D +MD: net/minecraft/world/level/levelgen/synth/NormalNoise$NoiseParameters/ ()V net/minecraft/world/level/levelgen/synth/NormalNoise$NoiseParameters/ ()V +MD: net/minecraft/world/level/levelgen/synth/NormalNoise$NoiseParameters/ (ID[D)V net/minecraft/world/level/levelgen/synth/NormalNoise$NoiseParameters/ (ID[D)V +MD: net/minecraft/world/level/levelgen/synth/NormalNoise$NoiseParameters/ (ILjava/util/List;)V net/minecraft/world/level/levelgen/synth/NormalNoise$NoiseParameters/ (ILjava/util/List;)V +MD: net/minecraft/world/level/levelgen/synth/NormalNoise$NoiseParameters/ (ILit/unimi/dsi/fastutil/doubles/DoubleList;)V net/minecraft/world/level/levelgen/synth/NormalNoise$NoiseParameters/ (ILit/unimi/dsi/fastutil/doubles/DoubleList;)V +MD: net/minecraft/world/level/levelgen/synth/NormalNoise$NoiseParameters/equals (Ljava/lang/Object;)Z net/minecraft/world/level/levelgen/synth/NormalNoise$NoiseParameters/equals (Ljava/lang/Object;)Z +MD: net/minecraft/world/level/levelgen/synth/NormalNoise$NoiseParameters/f_192853_ ()I net/minecraft/world/level/levelgen/synth/NormalNoise$NoiseParameters/firstOctave ()I +MD: net/minecraft/world/level/levelgen/synth/NormalNoise$NoiseParameters/f_192854_ ()Lit/unimi/dsi/fastutil/doubles/DoubleList; net/minecraft/world/level/levelgen/synth/NormalNoise$NoiseParameters/amplitudes ()Lit/unimi/dsi/fastutil/doubles/DoubleList; +MD: net/minecraft/world/level/levelgen/synth/NormalNoise$NoiseParameters/hashCode ()I net/minecraft/world/level/levelgen/synth/NormalNoise$NoiseParameters/hashCode ()I +MD: net/minecraft/world/level/levelgen/synth/NormalNoise$NoiseParameters/m_192864_ (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; net/minecraft/world/level/levelgen/synth/NormalNoise$NoiseParameters/lambda$static$0 (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; +MD: net/minecraft/world/level/levelgen/synth/NormalNoise$NoiseParameters/m_210634_ (DLit/unimi/dsi/fastutil/doubles/DoubleArrayList;)V net/minecraft/world/level/levelgen/synth/NormalNoise$NoiseParameters/lambda$new$1 (DLit/unimi/dsi/fastutil/doubles/DoubleArrayList;)V +MD: net/minecraft/world/level/levelgen/synth/NormalNoise$NoiseParameters/toString ()Ljava/lang/String; net/minecraft/world/level/levelgen/synth/NormalNoise$NoiseParameters/toString ()Ljava/lang/String; +MD: net/minecraft/world/level/levelgen/synth/PerlinNoise/ (Lnet/minecraft/util/RandomSource;Lcom/mojang/datafixers/util/Pair;Z)V net/minecraft/world/level/levelgen/synth/PerlinNoise/ (Lnet/minecraft/util/RandomSource;Lcom/mojang/datafixers/util/Pair;Z)V +MD: net/minecraft/world/level/levelgen/synth/PerlinNoise/m_192872_ ()I net/minecraft/world/level/levelgen/synth/PerlinNoise/firstOctave ()I +MD: net/minecraft/world/level/levelgen/synth/PerlinNoise/m_192890_ (Ljava/lang/StringBuilder;)V net/minecraft/world/level/levelgen/synth/PerlinNoise/parityConfigString (Ljava/lang/StringBuilder;)V +MD: net/minecraft/world/level/levelgen/synth/PerlinNoise/m_192892_ ()Lit/unimi/dsi/fastutil/doubles/DoubleList; net/minecraft/world/level/levelgen/synth/PerlinNoise/amplitudes ()Lit/unimi/dsi/fastutil/doubles/DoubleList; +MD: net/minecraft/world/level/levelgen/synth/PerlinNoise/m_192896_ (Ljava/lang/Double;)Z net/minecraft/world/level/levelgen/synth/PerlinNoise/lambda$new$0 (Ljava/lang/Double;)Z +MD: net/minecraft/world/level/levelgen/synth/PerlinNoise/m_210642_ ()D net/minecraft/world/level/levelgen/synth/PerlinNoise/maxValue ()D +MD: net/minecraft/world/level/levelgen/synth/PerlinNoise/m_210643_ (D)D net/minecraft/world/level/levelgen/synth/PerlinNoise/maxBrokenValue (D)D +MD: net/minecraft/world/level/levelgen/synth/PerlinNoise/m_210649_ (D)D net/minecraft/world/level/levelgen/synth/PerlinNoise/edgeValue (D)D +MD: net/minecraft/world/level/levelgen/synth/PerlinNoise/m_230518_ (Lnet/minecraft/util/RandomSource;)V net/minecraft/world/level/levelgen/synth/PerlinNoise/skipOctave (Lnet/minecraft/util/RandomSource;)V +MD: net/minecraft/world/level/levelgen/synth/PerlinNoise/m_230520_ (Lnet/minecraft/util/RandomSource;ID[D)Lnet/minecraft/world/level/levelgen/synth/PerlinNoise; net/minecraft/world/level/levelgen/synth/PerlinNoise/create (Lnet/minecraft/util/RandomSource;ID[D)Lnet/minecraft/world/level/levelgen/synth/PerlinNoise; +MD: net/minecraft/world/level/levelgen/synth/PerlinNoise/m_230525_ (Lnet/minecraft/util/RandomSource;ILit/unimi/dsi/fastutil/doubles/DoubleList;)Lnet/minecraft/world/level/levelgen/synth/PerlinNoise; net/minecraft/world/level/levelgen/synth/PerlinNoise/createLegacyForLegacyNetherBiome (Lnet/minecraft/util/RandomSource;ILit/unimi/dsi/fastutil/doubles/DoubleList;)Lnet/minecraft/world/level/levelgen/synth/PerlinNoise; +MD: net/minecraft/world/level/levelgen/synth/PerlinNoise/m_230529_ (Lnet/minecraft/util/RandomSource;Ljava/util/List;)Lnet/minecraft/world/level/levelgen/synth/PerlinNoise; net/minecraft/world/level/levelgen/synth/PerlinNoise/create (Lnet/minecraft/util/RandomSource;Ljava/util/List;)Lnet/minecraft/world/level/levelgen/synth/PerlinNoise; +MD: net/minecraft/world/level/levelgen/synth/PerlinNoise/m_230532_ (Lnet/minecraft/util/RandomSource;Ljava/util/stream/IntStream;)Lnet/minecraft/world/level/levelgen/synth/PerlinNoise; net/minecraft/world/level/levelgen/synth/PerlinNoise/createLegacyForBlendedNoise (Lnet/minecraft/util/RandomSource;Ljava/util/stream/IntStream;)Lnet/minecraft/world/level/levelgen/synth/PerlinNoise; +MD: net/minecraft/world/level/levelgen/synth/PerlinNoise/m_230535_ (Lnet/minecraft/util/RandomSource;ILit/unimi/dsi/fastutil/doubles/DoubleList;)Lnet/minecraft/world/level/levelgen/synth/PerlinNoise; net/minecraft/world/level/levelgen/synth/PerlinNoise/create (Lnet/minecraft/util/RandomSource;ILit/unimi/dsi/fastutil/doubles/DoubleList;)Lnet/minecraft/world/level/levelgen/synth/PerlinNoise; +MD: net/minecraft/world/level/levelgen/synth/PerlinNoise/m_230539_ (Lnet/minecraft/util/RandomSource;Ljava/util/stream/IntStream;)Lnet/minecraft/world/level/levelgen/synth/PerlinNoise; net/minecraft/world/level/levelgen/synth/PerlinNoise/create (Lnet/minecraft/util/RandomSource;Ljava/util/stream/IntStream;)Lnet/minecraft/world/level/levelgen/synth/PerlinNoise; +MD: net/minecraft/world/level/levelgen/synth/PerlinNoise/m_241762_ (Ljava/lang/Double;)Ljava/lang/String; net/minecraft/world/level/levelgen/synth/PerlinNoise/lambda$parityConfigString$1 (Ljava/lang/Double;)Ljava/lang/String; +MD: net/minecraft/world/level/levelgen/synth/PerlinNoise/m_75406_ (D)D net/minecraft/world/level/levelgen/synth/PerlinNoise/wrap (D)D +MD: net/minecraft/world/level/levelgen/synth/PerlinNoise/m_75408_ (DDD)D net/minecraft/world/level/levelgen/synth/PerlinNoise/getValue (DDD)D +MD: net/minecraft/world/level/levelgen/synth/PerlinNoise/m_75417_ (DDDDDZ)D net/minecraft/world/level/levelgen/synth/PerlinNoise/getValue (DDDDDZ)D +MD: net/minecraft/world/level/levelgen/synth/PerlinNoise/m_75424_ (I)Lnet/minecraft/world/level/levelgen/synth/ImprovedNoise; net/minecraft/world/level/levelgen/synth/PerlinNoise/getOctaveNoise (I)Lnet/minecraft/world/level/levelgen/synth/ImprovedNoise; +MD: net/minecraft/world/level/levelgen/synth/PerlinNoise/m_75430_ (Lit/unimi/dsi/fastutil/ints/IntSortedSet;)Lcom/mojang/datafixers/util/Pair; net/minecraft/world/level/levelgen/synth/PerlinNoise/makeAmplitudes (Lit/unimi/dsi/fastutil/ints/IntSortedSet;)Lcom/mojang/datafixers/util/Pair; +MD: net/minecraft/world/level/levelgen/synth/PerlinSimplexNoise/ (Lnet/minecraft/util/RandomSource;Lit/unimi/dsi/fastutil/ints/IntSortedSet;)V net/minecraft/world/level/levelgen/synth/PerlinSimplexNoise/ (Lnet/minecraft/util/RandomSource;Lit/unimi/dsi/fastutil/ints/IntSortedSet;)V +MD: net/minecraft/world/level/levelgen/synth/PerlinSimplexNoise/ (Lnet/minecraft/util/RandomSource;Ljava/util/List;)V net/minecraft/world/level/levelgen/synth/PerlinSimplexNoise/ (Lnet/minecraft/util/RandomSource;Ljava/util/List;)V +MD: net/minecraft/world/level/levelgen/synth/PerlinSimplexNoise/m_75449_ (DDZ)D net/minecraft/world/level/levelgen/synth/PerlinSimplexNoise/getValue (DDZ)D +MD: net/minecraft/world/level/levelgen/synth/SimplexNoise/ ()V net/minecraft/world/level/levelgen/synth/SimplexNoise/ ()V +MD: net/minecraft/world/level/levelgen/synth/SimplexNoise/ (Lnet/minecraft/util/RandomSource;)V net/minecraft/world/level/levelgen/synth/SimplexNoise/ (Lnet/minecraft/util/RandomSource;)V +MD: net/minecraft/world/level/levelgen/synth/SimplexNoise/m_75464_ (DD)D net/minecraft/world/level/levelgen/synth/SimplexNoise/getValue (DD)D +MD: net/minecraft/world/level/levelgen/synth/SimplexNoise/m_75467_ (DDD)D net/minecraft/world/level/levelgen/synth/SimplexNoise/getValue (DDD)D +MD: net/minecraft/world/level/levelgen/synth/SimplexNoise/m_75471_ (I)I net/minecraft/world/level/levelgen/synth/SimplexNoise/p (I)I +MD: net/minecraft/world/level/levelgen/synth/SimplexNoise/m_75473_ (IDDDD)D net/minecraft/world/level/levelgen/synth/SimplexNoise/getCornerNoise3D (IDDDD)D +MD: net/minecraft/world/level/levelgen/synth/SimplexNoise/m_75479_ ([IDDD)D net/minecraft/world/level/levelgen/synth/SimplexNoise/dot ([IDDD)D +MD: net/minecraft/world/level/lighting/BlockLightEngine/ (Lnet/minecraft/world/level/chunk/LightChunkGetter;)V net/minecraft/world/level/lighting/BlockLightEngine/ (Lnet/minecraft/world/level/chunk/LightChunkGetter;)V +MD: net/minecraft/world/level/lighting/BlockLightEngine/ (Lnet/minecraft/world/level/chunk/LightChunkGetter;Lnet/minecraft/world/level/lighting/BlockLightSectionStorage;)V net/minecraft/world/level/lighting/BlockLightEngine/ (Lnet/minecraft/world/level/chunk/LightChunkGetter;Lnet/minecraft/world/level/lighting/BlockLightSectionStorage;)V +MD: net/minecraft/world/level/lighting/BlockLightEngine/m_142519_ (Lnet/minecraft/world/level/ChunkPos;)V net/minecraft/world/level/lighting/BlockLightEngine/propagateLightSources (Lnet/minecraft/world/level/ChunkPos;)V +MD: net/minecraft/world/level/lighting/BlockLightEngine/m_284140_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V net/minecraft/world/level/lighting/BlockLightEngine/lambda$propagateLightSources$0 (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V +MD: net/minecraft/world/level/lighting/BlockLightEngine/m_284316_ (JJI)V net/minecraft/world/level/lighting/BlockLightEngine/propagateIncrease (JJI)V +MD: net/minecraft/world/level/lighting/BlockLightEngine/m_284321_ (JJ)V net/minecraft/world/level/lighting/BlockLightEngine/propagateDecrease (JJ)V +MD: net/minecraft/world/level/lighting/BlockLightEngine/m_284436_ (JLnet/minecraft/world/level/block/state/BlockState;)I net/minecraft/world/level/lighting/BlockLightEngine/getEmission (JLnet/minecraft/world/level/block/state/BlockState;)I +MD: net/minecraft/world/level/lighting/BlockLightEngine/m_75858_ (J)V net/minecraft/world/level/lighting/BlockLightEngine/checkNode (J)V +MD: net/minecraft/world/level/lighting/BlockLightSectionStorage/ (Lnet/minecraft/world/level/chunk/LightChunkGetter;)V net/minecraft/world/level/lighting/BlockLightSectionStorage/ (Lnet/minecraft/world/level/chunk/LightChunkGetter;)V +MD: net/minecraft/world/level/lighting/BlockLightSectionStorage/m_6181_ (J)I net/minecraft/world/level/lighting/BlockLightSectionStorage/getLightValue (J)I +MD: net/minecraft/world/level/lighting/BlockLightSectionStorage$BlockDataLayerStorageMap/ (Lit/unimi/dsi/fastutil/longs/Long2ObjectOpenHashMap;)V net/minecraft/world/level/lighting/BlockLightSectionStorage$BlockDataLayerStorageMap/ (Lit/unimi/dsi/fastutil/longs/Long2ObjectOpenHashMap;)V +MD: net/minecraft/world/level/lighting/BlockLightSectionStorage$BlockDataLayerStorageMap/m_5972_ ()Lnet/minecraft/world/level/lighting/DataLayerStorageMap; net/minecraft/world/level/lighting/BlockLightSectionStorage$BlockDataLayerStorageMap/copy ()Lnet/minecraft/world/level/lighting/DataLayerStorageMap; +MD: net/minecraft/world/level/lighting/BlockLightSectionStorage$BlockDataLayerStorageMap/m_5972_ ()Lnet/minecraft/world/level/lighting/BlockLightSectionStorage$BlockDataLayerStorageMap; net/minecraft/world/level/lighting/BlockLightSectionStorage$BlockDataLayerStorageMap/copy ()Lnet/minecraft/world/level/lighting/BlockLightSectionStorage$BlockDataLayerStorageMap; +MD: net/minecraft/world/level/lighting/ChunkSkyLightSources/ (Lnet/minecraft/world/level/LevelHeightAccessor;)V net/minecraft/world/level/lighting/ChunkSkyLightSources/ (Lnet/minecraft/world/level/LevelHeightAccessor;)V +MD: net/minecraft/world/level/lighting/ChunkSkyLightSources/m_284134_ (I)V net/minecraft/world/level/lighting/ChunkSkyLightSources/fill (I)V +MD: net/minecraft/world/level/lighting/ChunkSkyLightSources/m_284186_ (II)I net/minecraft/world/level/lighting/ChunkSkyLightSources/index (II)I +MD: net/minecraft/world/level/lighting/ChunkSkyLightSources/m_284191_ ()I net/minecraft/world/level/lighting/ChunkSkyLightSources/getHighestLowestSourceY ()I +MD: net/minecraft/world/level/lighting/ChunkSkyLightSources/m_284264_ (Lnet/minecraft/world/level/chunk/ChunkAccess;III)I net/minecraft/world/level/lighting/ChunkSkyLightSources/findLowestSourceY (Lnet/minecraft/world/level/chunk/ChunkAccess;III)I +MD: net/minecraft/world/level/lighting/ChunkSkyLightSources/m_284271_ (Lnet/minecraft/world/level/chunk/ChunkAccess;)V net/minecraft/world/level/lighting/ChunkSkyLightSources/fillFrom (Lnet/minecraft/world/level/chunk/ChunkAccess;)V +MD: net/minecraft/world/level/lighting/ChunkSkyLightSources/m_284300_ (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)I net/minecraft/world/level/lighting/ChunkSkyLightSources/findLowestSourceBelow (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)I +MD: net/minecraft/world/level/lighting/ChunkSkyLightSources/m_284301_ (Lnet/minecraft/world/level/BlockGetter;IILnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/world/level/lighting/ChunkSkyLightSources/updateEdge (Lnet/minecraft/world/level/BlockGetter;IILnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/world/level/lighting/ChunkSkyLightSources/m_284402_ (II)I net/minecraft/world/level/lighting/ChunkSkyLightSources/getLowestSourceY (II)I +MD: net/minecraft/world/level/lighting/ChunkSkyLightSources/m_284474_ (I)I net/minecraft/world/level/lighting/ChunkSkyLightSources/get (I)I +MD: net/minecraft/world/level/lighting/ChunkSkyLightSources/m_284514_ (II)V net/minecraft/world/level/lighting/ChunkSkyLightSources/set (II)V +MD: net/minecraft/world/level/lighting/ChunkSkyLightSources/m_284521_ (Lnet/minecraft/world/level/BlockGetter;III)Z net/minecraft/world/level/lighting/ChunkSkyLightSources/update (Lnet/minecraft/world/level/BlockGetter;III)Z +MD: net/minecraft/world/level/lighting/ChunkSkyLightSources/m_284529_ (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/world/level/lighting/ChunkSkyLightSources/isEdgeOccluded (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/world/level/lighting/ChunkSkyLightSources/m_284557_ (I)I net/minecraft/world/level/lighting/ChunkSkyLightSources/extendSourcesBelowWorld (I)I +MD: net/minecraft/world/level/lighting/DataLayerStorageMap/ (Lit/unimi/dsi/fastutil/longs/Long2ObjectOpenHashMap;)V net/minecraft/world/level/lighting/DataLayerStorageMap/ (Lit/unimi/dsi/fastutil/longs/Long2ObjectOpenHashMap;)V +MD: net/minecraft/world/level/lighting/DataLayerStorageMap/m_5972_ ()Lnet/minecraft/world/level/lighting/DataLayerStorageMap; net/minecraft/world/level/lighting/DataLayerStorageMap/copy ()Lnet/minecraft/world/level/lighting/DataLayerStorageMap; +MD: net/minecraft/world/level/lighting/DataLayerStorageMap/m_75524_ (J)Lnet/minecraft/world/level/chunk/DataLayer; net/minecraft/world/level/lighting/DataLayerStorageMap/copyDataLayer (J)Lnet/minecraft/world/level/chunk/DataLayer; +MD: net/minecraft/world/level/lighting/DataLayerStorageMap/m_75526_ (JLnet/minecraft/world/level/chunk/DataLayer;)V net/minecraft/world/level/lighting/DataLayerStorageMap/setLayer (JLnet/minecraft/world/level/chunk/DataLayer;)V +MD: net/minecraft/world/level/lighting/DataLayerStorageMap/m_75529_ (J)Z net/minecraft/world/level/lighting/DataLayerStorageMap/hasLayer (J)Z +MD: net/minecraft/world/level/lighting/DataLayerStorageMap/m_75531_ ()V net/minecraft/world/level/lighting/DataLayerStorageMap/clearCache ()V +MD: net/minecraft/world/level/lighting/DataLayerStorageMap/m_75532_ (J)Lnet/minecraft/world/level/chunk/DataLayer; net/minecraft/world/level/lighting/DataLayerStorageMap/getLayer (J)Lnet/minecraft/world/level/chunk/DataLayer; +MD: net/minecraft/world/level/lighting/DataLayerStorageMap/m_75534_ ()V net/minecraft/world/level/lighting/DataLayerStorageMap/disableCache ()V +MD: net/minecraft/world/level/lighting/DataLayerStorageMap/m_75535_ (J)Lnet/minecraft/world/level/chunk/DataLayer; net/minecraft/world/level/lighting/DataLayerStorageMap/removeLayer (J)Lnet/minecraft/world/level/chunk/DataLayer; +MD: net/minecraft/world/level/lighting/DynamicGraphMinFixedPoint/ (III)V net/minecraft/world/level/lighting/DynamicGraphMinFixedPoint/ (III)V +MD: net/minecraft/world/level/lighting/DynamicGraphMinFixedPoint/m_278160_ (II)I net/minecraft/world/level/lighting/DynamicGraphMinFixedPoint/calculatePriority (II)I +MD: net/minecraft/world/level/lighting/DynamicGraphMinFixedPoint/m_6163_ (J)Z net/minecraft/world/level/lighting/DynamicGraphMinFixedPoint/isSource (J)Z +MD: net/minecraft/world/level/lighting/DynamicGraphMinFixedPoint/m_6172_ (J)I net/minecraft/world/level/lighting/DynamicGraphMinFixedPoint/getLevel (J)I +MD: net/minecraft/world/level/lighting/DynamicGraphMinFixedPoint/m_6185_ (J)V net/minecraft/world/level/lighting/DynamicGraphMinFixedPoint/checkNode (J)V +MD: net/minecraft/world/level/lighting/DynamicGraphMinFixedPoint/m_6357_ (JJI)I net/minecraft/world/level/lighting/DynamicGraphMinFixedPoint/getComputedLevel (JJI)I +MD: net/minecraft/world/level/lighting/DynamicGraphMinFixedPoint/m_6359_ (JJI)I net/minecraft/world/level/lighting/DynamicGraphMinFixedPoint/computeLevelFromNeighbor (JJI)I +MD: net/minecraft/world/level/lighting/DynamicGraphMinFixedPoint/m_7351_ (JI)V net/minecraft/world/level/lighting/DynamicGraphMinFixedPoint/setLevel (JI)V +MD: net/minecraft/world/level/lighting/DynamicGraphMinFixedPoint/m_75569_ (JJIIIZ)V net/minecraft/world/level/lighting/DynamicGraphMinFixedPoint/checkEdge (JJIIIZ)V +MD: net/minecraft/world/level/lighting/DynamicGraphMinFixedPoint/m_75576_ (JJIZ)V net/minecraft/world/level/lighting/DynamicGraphMinFixedPoint/checkEdge (JJIZ)V +MD: net/minecraft/world/level/lighting/DynamicGraphMinFixedPoint/m_75581_ (Ljava/util/function/LongPredicate;)V net/minecraft/world/level/lighting/DynamicGraphMinFixedPoint/removeIf (Ljava/util/function/LongPredicate;)V +MD: net/minecraft/world/level/lighting/DynamicGraphMinFixedPoint/m_75583_ (Ljava/util/function/LongPredicate;Lit/unimi/dsi/fastutil/longs/LongList;J)V net/minecraft/world/level/lighting/DynamicGraphMinFixedPoint/lambda$removeIf$0 (Ljava/util/function/LongPredicate;Lit/unimi/dsi/fastutil/longs/LongList;J)V +MD: net/minecraft/world/level/lighting/DynamicGraphMinFixedPoint/m_75587_ ()Z net/minecraft/world/level/lighting/DynamicGraphMinFixedPoint/hasWork ()Z +MD: net/minecraft/world/level/lighting/DynamicGraphMinFixedPoint/m_75588_ (I)I net/minecraft/world/level/lighting/DynamicGraphMinFixedPoint/runUpdates (I)I +MD: net/minecraft/world/level/lighting/DynamicGraphMinFixedPoint/m_75593_ (JJIZ)V net/minecraft/world/level/lighting/DynamicGraphMinFixedPoint/checkNeighbor (JJIZ)V +MD: net/minecraft/world/level/lighting/DynamicGraphMinFixedPoint/m_75598_ ()I net/minecraft/world/level/lighting/DynamicGraphMinFixedPoint/getQueueSize ()I +MD: net/minecraft/world/level/lighting/DynamicGraphMinFixedPoint/m_75600_ (J)V net/minecraft/world/level/lighting/DynamicGraphMinFixedPoint/removeFromQueue (J)V +MD: net/minecraft/world/level/lighting/DynamicGraphMinFixedPoint/m_7900_ (JIZ)V net/minecraft/world/level/lighting/DynamicGraphMinFixedPoint/checkNeighborsAfterUpdate (JIZ)V +MD: net/minecraft/world/level/lighting/DynamicGraphMinFixedPoint$1/ (Lnet/minecraft/world/level/lighting/DynamicGraphMinFixedPoint;IFI)V net/minecraft/world/level/lighting/DynamicGraphMinFixedPoint$1/ (Lnet/minecraft/world/level/lighting/DynamicGraphMinFixedPoint;IFI)V +MD: net/minecraft/world/level/lighting/DynamicGraphMinFixedPoint$1/rehash (I)V net/minecraft/world/level/lighting/DynamicGraphMinFixedPoint$1/rehash (I)V +MD: net/minecraft/world/level/lighting/LayerLightEventListener/m_7768_ (Lnet/minecraft/core/BlockPos;)I net/minecraft/world/level/lighting/LayerLightEventListener/getLightValue (Lnet/minecraft/core/BlockPos;)I +MD: net/minecraft/world/level/lighting/LayerLightEventListener/m_8079_ (Lnet/minecraft/core/SectionPos;)Lnet/minecraft/world/level/chunk/DataLayer; net/minecraft/world/level/lighting/LayerLightEventListener/getDataLayerData (Lnet/minecraft/core/SectionPos;)Lnet/minecraft/world/level/chunk/DataLayer; +MD: net/minecraft/world/level/lighting/LayerLightEventListener$DummyLightLayerEventListener/ ()V net/minecraft/world/level/lighting/LayerLightEventListener$DummyLightLayerEventListener/ ()V +MD: net/minecraft/world/level/lighting/LayerLightEventListener$DummyLightLayerEventListener/ (Ljava/lang/String;I)V net/minecraft/world/level/lighting/LayerLightEventListener$DummyLightLayerEventListener/ (Ljava/lang/String;I)V +MD: net/minecraft/world/level/lighting/LayerLightEventListener$DummyLightLayerEventListener/m_142519_ (Lnet/minecraft/world/level/ChunkPos;)V net/minecraft/world/level/lighting/LayerLightEventListener$DummyLightLayerEventListener/propagateLightSources (Lnet/minecraft/world/level/ChunkPos;)V +MD: net/minecraft/world/level/lighting/LayerLightEventListener$DummyLightLayerEventListener/m_164438_ ()[Lnet/minecraft/world/level/lighting/LayerLightEventListener$DummyLightLayerEventListener; net/minecraft/world/level/lighting/LayerLightEventListener$DummyLightLayerEventListener/$values ()[Lnet/minecraft/world/level/lighting/LayerLightEventListener$DummyLightLayerEventListener; +MD: net/minecraft/world/level/lighting/LayerLightEventListener$DummyLightLayerEventListener/m_6191_ (Lnet/minecraft/core/SectionPos;Z)V net/minecraft/world/level/lighting/LayerLightEventListener$DummyLightLayerEventListener/updateSectionStatus (Lnet/minecraft/core/SectionPos;Z)V +MD: net/minecraft/world/level/lighting/LayerLightEventListener$DummyLightLayerEventListener/m_7174_ (Lnet/minecraft/core/BlockPos;)V net/minecraft/world/level/lighting/LayerLightEventListener$DummyLightLayerEventListener/checkBlock (Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/world/level/lighting/LayerLightEventListener$DummyLightLayerEventListener/m_75808_ ()Z net/minecraft/world/level/lighting/LayerLightEventListener$DummyLightLayerEventListener/hasLightWork ()Z +MD: net/minecraft/world/level/lighting/LayerLightEventListener$DummyLightLayerEventListener/m_7768_ (Lnet/minecraft/core/BlockPos;)I net/minecraft/world/level/lighting/LayerLightEventListener$DummyLightLayerEventListener/getLightValue (Lnet/minecraft/core/BlockPos;)I +MD: net/minecraft/world/level/lighting/LayerLightEventListener$DummyLightLayerEventListener/m_8079_ (Lnet/minecraft/core/SectionPos;)Lnet/minecraft/world/level/chunk/DataLayer; net/minecraft/world/level/lighting/LayerLightEventListener$DummyLightLayerEventListener/getDataLayerData (Lnet/minecraft/core/SectionPos;)Lnet/minecraft/world/level/chunk/DataLayer; +MD: net/minecraft/world/level/lighting/LayerLightEventListener$DummyLightLayerEventListener/m_9323_ ()I net/minecraft/world/level/lighting/LayerLightEventListener$DummyLightLayerEventListener/runLightUpdates ()I +MD: net/minecraft/world/level/lighting/LayerLightEventListener$DummyLightLayerEventListener/m_9335_ (Lnet/minecraft/world/level/ChunkPos;Z)V net/minecraft/world/level/lighting/LayerLightEventListener$DummyLightLayerEventListener/setLightEnabled (Lnet/minecraft/world/level/ChunkPos;Z)V +MD: net/minecraft/world/level/lighting/LayerLightEventListener$DummyLightLayerEventListener/valueOf (Ljava/lang/String;)Lnet/minecraft/world/level/lighting/LayerLightEventListener$DummyLightLayerEventListener; net/minecraft/world/level/lighting/LayerLightEventListener$DummyLightLayerEventListener/valueOf (Ljava/lang/String;)Lnet/minecraft/world/level/lighting/LayerLightEventListener$DummyLightLayerEventListener; +MD: net/minecraft/world/level/lighting/LayerLightEventListener$DummyLightLayerEventListener/values ()[Lnet/minecraft/world/level/lighting/LayerLightEventListener$DummyLightLayerEventListener; net/minecraft/world/level/lighting/LayerLightEventListener$DummyLightLayerEventListener/values ()[Lnet/minecraft/world/level/lighting/LayerLightEventListener$DummyLightLayerEventListener; +MD: net/minecraft/world/level/lighting/LayerLightSectionStorage/ (Lnet/minecraft/world/level/LightLayer;Lnet/minecraft/world/level/chunk/LightChunkGetter;Lnet/minecraft/world/level/lighting/DataLayerStorageMap;)V net/minecraft/world/level/lighting/LayerLightSectionStorage/ (Lnet/minecraft/world/level/LightLayer;Lnet/minecraft/world/level/chunk/LightChunkGetter;Lnet/minecraft/world/level/lighting/DataLayerStorageMap;)V +MD: net/minecraft/world/level/lighting/LayerLightSectionStorage/m_280483_ (J)V net/minecraft/world/level/lighting/LayerLightSectionStorage/markSectionAndNeighborsAsAffected (J)V +MD: net/minecraft/world/level/lighting/LayerLightSectionStorage/m_284157_ (J)Lnet/minecraft/world/level/chunk/DataLayer; net/minecraft/world/level/lighting/LayerLightSectionStorage/getDataLayerToWrite (J)Lnet/minecraft/world/level/chunk/DataLayer; +MD: net/minecraft/world/level/lighting/LayerLightSectionStorage/m_284259_ (JZ)V net/minecraft/world/level/lighting/LayerLightSectionStorage/setLightEnabled (JZ)V +MD: net/minecraft/world/level/lighting/LayerLightSectionStorage/m_284283_ (Lnet/minecraft/world/level/lighting/LightEngine;)V net/minecraft/world/level/lighting/LayerLightSectionStorage/markNewInconsistencies (Lnet/minecraft/world/level/lighting/LightEngine;)V +MD: net/minecraft/world/level/lighting/LayerLightSectionStorage/m_284291_ (J)Lnet/minecraft/world/level/lighting/LayerLightSectionStorage$SectionType; net/minecraft/world/level/lighting/LayerLightSectionStorage/getDebugSectionType (J)Lnet/minecraft/world/level/lighting/LayerLightSectionStorage$SectionType; +MD: net/minecraft/world/level/lighting/LayerLightSectionStorage/m_284336_ (JB)V net/minecraft/world/level/lighting/LayerLightSectionStorage/putSectionState (JB)V +MD: net/minecraft/world/level/lighting/LayerLightSectionStorage/m_284382_ (J)Z net/minecraft/world/level/lighting/LayerLightSectionStorage/lightOnInSection (J)Z +MD: net/minecraft/world/level/lighting/LayerLightSectionStorage/m_284475_ (J)V net/minecraft/world/level/lighting/LayerLightSectionStorage/removeSection (J)V +MD: net/minecraft/world/level/lighting/LayerLightSectionStorage/m_284497_ (J)V net/minecraft/world/level/lighting/LayerLightSectionStorage/initializeSection (J)V +MD: net/minecraft/world/level/lighting/LayerLightSectionStorage/m_284542_ (JLnet/minecraft/world/level/chunk/DataLayer;)V net/minecraft/world/level/lighting/LayerLightSectionStorage/queueSectionData (JLnet/minecraft/world/level/chunk/DataLayer;)V +MD: net/minecraft/world/level/lighting/LayerLightSectionStorage/m_6177_ (J)V net/minecraft/world/level/lighting/LayerLightSectionStorage/onNodeAdded (J)V +MD: net/minecraft/world/level/lighting/LayerLightSectionStorage/m_6181_ (J)I net/minecraft/world/level/lighting/LayerLightSectionStorage/getLightValue (J)I +MD: net/minecraft/world/level/lighting/LayerLightSectionStorage/m_6187_ (J)V net/minecraft/world/level/lighting/LayerLightSectionStorage/onNodeRemoved (J)V +MD: net/minecraft/world/level/lighting/LayerLightSectionStorage/m_6808_ ()Z net/minecraft/world/level/lighting/LayerLightSectionStorage/hasInconsistencies ()Z +MD: net/minecraft/world/level/lighting/LayerLightSectionStorage/m_75758_ (JZ)Lnet/minecraft/world/level/chunk/DataLayer; net/minecraft/world/level/lighting/LayerLightSectionStorage/getDataLayer (JZ)Lnet/minecraft/world/level/chunk/DataLayer; +MD: net/minecraft/world/level/lighting/LayerLightSectionStorage/m_75761_ (Lnet/minecraft/world/level/lighting/DataLayerStorageMap;J)Lnet/minecraft/world/level/chunk/DataLayer; net/minecraft/world/level/lighting/LayerLightSectionStorage/getDataLayer (Lnet/minecraft/world/level/lighting/DataLayerStorageMap;J)Lnet/minecraft/world/level/chunk/DataLayer; +MD: net/minecraft/world/level/lighting/LayerLightSectionStorage/m_75772_ (JI)V net/minecraft/world/level/lighting/LayerLightSectionStorage/setStoredLevel (JI)V +MD: net/minecraft/world/level/lighting/LayerLightSectionStorage/m_75782_ (JZ)V net/minecraft/world/level/lighting/LayerLightSectionStorage/retainData (JZ)V +MD: net/minecraft/world/level/lighting/LayerLightSectionStorage/m_75787_ (JZ)V net/minecraft/world/level/lighting/LayerLightSectionStorage/updateSectionStatus (JZ)V +MD: net/minecraft/world/level/lighting/LayerLightSectionStorage/m_75790_ ()V net/minecraft/world/level/lighting/LayerLightSectionStorage/swapSectionMap ()V +MD: net/minecraft/world/level/lighting/LayerLightSectionStorage/m_75791_ (J)Z net/minecraft/world/level/lighting/LayerLightSectionStorage/storingLightForSection (J)Z +MD: net/minecraft/world/level/lighting/LayerLightSectionStorage/m_75793_ (J)Lnet/minecraft/world/level/chunk/DataLayer; net/minecraft/world/level/lighting/LayerLightSectionStorage/getDataLayerData (J)Lnet/minecraft/world/level/chunk/DataLayer; +MD: net/minecraft/world/level/lighting/LayerLightSectionStorage/m_75795_ (J)I net/minecraft/world/level/lighting/LayerLightSectionStorage/getStoredLevel (J)I +MD: net/minecraft/world/level/lighting/LayerLightSectionStorage/m_7667_ (J)Lnet/minecraft/world/level/chunk/DataLayer; net/minecraft/world/level/lighting/LayerLightSectionStorage/createDataLayer (J)Lnet/minecraft/world/level/chunk/DataLayer; +MD: net/minecraft/world/level/lighting/LayerLightSectionStorage$SectionState/ ()V net/minecraft/world/level/lighting/LayerLightSectionStorage$SectionState/ ()V +MD: net/minecraft/world/level/lighting/LayerLightSectionStorage$SectionState/m_284236_ (BI)B net/minecraft/world/level/lighting/LayerLightSectionStorage$SectionState/neighborCount (BI)B +MD: net/minecraft/world/level/lighting/LayerLightSectionStorage$SectionState/m_284365_ (BZ)B net/minecraft/world/level/lighting/LayerLightSectionStorage$SectionState/hasData (BZ)B +MD: net/minecraft/world/level/lighting/LayerLightSectionStorage$SectionState/m_284376_ (B)Lnet/minecraft/world/level/lighting/LayerLightSectionStorage$SectionType; net/minecraft/world/level/lighting/LayerLightSectionStorage$SectionState/type (B)Lnet/minecraft/world/level/lighting/LayerLightSectionStorage$SectionType; +MD: net/minecraft/world/level/lighting/LayerLightSectionStorage$SectionState/m_284490_ (B)Z net/minecraft/world/level/lighting/LayerLightSectionStorage$SectionState/hasData (B)Z +MD: net/minecraft/world/level/lighting/LayerLightSectionStorage$SectionState/m_284522_ (B)I net/minecraft/world/level/lighting/LayerLightSectionStorage$SectionState/neighborCount (B)I +MD: net/minecraft/world/level/lighting/LayerLightSectionStorage$SectionType/ ()V net/minecraft/world/level/lighting/LayerLightSectionStorage$SectionType/ ()V +MD: net/minecraft/world/level/lighting/LayerLightSectionStorage$SectionType/ (Ljava/lang/String;ILjava/lang/String;)V net/minecraft/world/level/lighting/LayerLightSectionStorage$SectionType/ (Ljava/lang/String;ILjava/lang/String;)V +MD: net/minecraft/world/level/lighting/LayerLightSectionStorage$SectionType/m_284377_ ()Ljava/lang/String; net/minecraft/world/level/lighting/LayerLightSectionStorage$SectionType/display ()Ljava/lang/String; +MD: net/minecraft/world/level/lighting/LayerLightSectionStorage$SectionType/m_284484_ ()[Lnet/minecraft/world/level/lighting/LayerLightSectionStorage$SectionType; net/minecraft/world/level/lighting/LayerLightSectionStorage$SectionType/$values ()[Lnet/minecraft/world/level/lighting/LayerLightSectionStorage$SectionType; +MD: net/minecraft/world/level/lighting/LayerLightSectionStorage$SectionType/valueOf (Ljava/lang/String;)Lnet/minecraft/world/level/lighting/LayerLightSectionStorage$SectionType; net/minecraft/world/level/lighting/LayerLightSectionStorage$SectionType/valueOf (Ljava/lang/String;)Lnet/minecraft/world/level/lighting/LayerLightSectionStorage$SectionType; +MD: net/minecraft/world/level/lighting/LayerLightSectionStorage$SectionType/values ()[Lnet/minecraft/world/level/lighting/LayerLightSectionStorage$SectionType; net/minecraft/world/level/lighting/LayerLightSectionStorage$SectionType/values ()[Lnet/minecraft/world/level/lighting/LayerLightSectionStorage$SectionType; +MD: net/minecraft/world/level/lighting/LevelLightEngine/ (Lnet/minecraft/world/level/chunk/LightChunkGetter;ZZ)V net/minecraft/world/level/lighting/LevelLightEngine/ (Lnet/minecraft/world/level/chunk/LightChunkGetter;ZZ)V +MD: net/minecraft/world/level/lighting/LevelLightEngine/m_142519_ (Lnet/minecraft/world/level/ChunkPos;)V net/minecraft/world/level/lighting/LevelLightEngine/propagateLightSources (Lnet/minecraft/world/level/ChunkPos;)V +MD: net/minecraft/world/level/lighting/LevelLightEngine/m_164446_ ()I net/minecraft/world/level/lighting/LevelLightEngine/getLightSectionCount ()I +MD: net/minecraft/world/level/lighting/LevelLightEngine/m_164447_ ()I net/minecraft/world/level/lighting/LevelLightEngine/getMinLightSection ()I +MD: net/minecraft/world/level/lighting/LevelLightEngine/m_164448_ ()I net/minecraft/world/level/lighting/LevelLightEngine/getMaxLightSection ()I +MD: net/minecraft/world/level/lighting/LevelLightEngine/m_284126_ (Lnet/minecraft/world/level/LightLayer;Lnet/minecraft/core/SectionPos;Lnet/minecraft/world/level/chunk/DataLayer;)V net/minecraft/world/level/lighting/LevelLightEngine/queueSectionData (Lnet/minecraft/world/level/LightLayer;Lnet/minecraft/core/SectionPos;Lnet/minecraft/world/level/chunk/DataLayer;)V +MD: net/minecraft/world/level/lighting/LevelLightEngine/m_284439_ (Lnet/minecraft/core/SectionPos;)Z net/minecraft/world/level/lighting/LevelLightEngine/lightOnInSection (Lnet/minecraft/core/SectionPos;)Z +MD: net/minecraft/world/level/lighting/LevelLightEngine/m_284493_ (Lnet/minecraft/world/level/LightLayer;Lnet/minecraft/core/SectionPos;)Lnet/minecraft/world/level/lighting/LayerLightSectionStorage$SectionType; net/minecraft/world/level/lighting/LevelLightEngine/getDebugSectionType (Lnet/minecraft/world/level/LightLayer;Lnet/minecraft/core/SectionPos;)Lnet/minecraft/world/level/lighting/LayerLightSectionStorage$SectionType; +MD: net/minecraft/world/level/lighting/LevelLightEngine/m_6191_ (Lnet/minecraft/core/SectionPos;Z)V net/minecraft/world/level/lighting/LevelLightEngine/updateSectionStatus (Lnet/minecraft/core/SectionPos;Z)V +MD: net/minecraft/world/level/lighting/LevelLightEngine/m_6462_ (Lnet/minecraft/world/level/ChunkPos;Z)V net/minecraft/world/level/lighting/LevelLightEngine/retainData (Lnet/minecraft/world/level/ChunkPos;Z)V +MD: net/minecraft/world/level/lighting/LevelLightEngine/m_7174_ (Lnet/minecraft/core/BlockPos;)V net/minecraft/world/level/lighting/LevelLightEngine/checkBlock (Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/world/level/lighting/LevelLightEngine/m_75808_ ()Z net/minecraft/world/level/lighting/LevelLightEngine/hasLightWork ()Z +MD: net/minecraft/world/level/lighting/LevelLightEngine/m_75814_ (Lnet/minecraft/world/level/LightLayer;)Lnet/minecraft/world/level/lighting/LayerLightEventListener; net/minecraft/world/level/lighting/LevelLightEngine/getLayerListener (Lnet/minecraft/world/level/LightLayer;)Lnet/minecraft/world/level/lighting/LayerLightEventListener; +MD: net/minecraft/world/level/lighting/LevelLightEngine/m_75816_ (Lnet/minecraft/world/level/LightLayer;Lnet/minecraft/core/SectionPos;)Ljava/lang/String; net/minecraft/world/level/lighting/LevelLightEngine/getDebugData (Lnet/minecraft/world/level/LightLayer;Lnet/minecraft/core/SectionPos;)Ljava/lang/String; +MD: net/minecraft/world/level/lighting/LevelLightEngine/m_75831_ (Lnet/minecraft/core/BlockPos;I)I net/minecraft/world/level/lighting/LevelLightEngine/getRawBrightness (Lnet/minecraft/core/BlockPos;I)I +MD: net/minecraft/world/level/lighting/LevelLightEngine/m_9323_ ()I net/minecraft/world/level/lighting/LevelLightEngine/runLightUpdates ()I +MD: net/minecraft/world/level/lighting/LevelLightEngine/m_9335_ (Lnet/minecraft/world/level/ChunkPos;Z)V net/minecraft/world/level/lighting/LevelLightEngine/setLightEnabled (Lnet/minecraft/world/level/ChunkPos;Z)V +MD: net/minecraft/world/level/lighting/LeveledPriorityQueue/ (II)V net/minecraft/world/level/lighting/LeveledPriorityQueue/ (II)V +MD: net/minecraft/world/level/lighting/LeveledPriorityQueue/m_278149_ (I)V net/minecraft/world/level/lighting/LeveledPriorityQueue/checkFirstQueuedLevel (I)V +MD: net/minecraft/world/level/lighting/LeveledPriorityQueue/m_278178_ ()J net/minecraft/world/level/lighting/LeveledPriorityQueue/removeFirstLong ()J +MD: net/minecraft/world/level/lighting/LeveledPriorityQueue/m_278192_ ()Z net/minecraft/world/level/lighting/LeveledPriorityQueue/isEmpty ()Z +MD: net/minecraft/world/level/lighting/LeveledPriorityQueue/m_278202_ (JI)V net/minecraft/world/level/lighting/LeveledPriorityQueue/enqueue (JI)V +MD: net/minecraft/world/level/lighting/LeveledPriorityQueue/m_278203_ (JII)V net/minecraft/world/level/lighting/LeveledPriorityQueue/dequeue (JII)V +MD: net/minecraft/world/level/lighting/LeveledPriorityQueue$1/ (Lnet/minecraft/world/level/lighting/LeveledPriorityQueue;IFI)V net/minecraft/world/level/lighting/LeveledPriorityQueue$1/ (Lnet/minecraft/world/level/lighting/LeveledPriorityQueue;IFI)V +MD: net/minecraft/world/level/lighting/LeveledPriorityQueue$1/rehash (I)V net/minecraft/world/level/lighting/LeveledPriorityQueue$1/rehash (I)V +MD: net/minecraft/world/level/lighting/LightEngine/ ()V net/minecraft/world/level/lighting/LightEngine/ ()V +MD: net/minecraft/world/level/lighting/LightEngine/ (Lnet/minecraft/world/level/chunk/LightChunkGetter;Lnet/minecraft/world/level/lighting/LayerLightSectionStorage;)V net/minecraft/world/level/lighting/LightEngine/ (Lnet/minecraft/world/level/chunk/LightChunkGetter;Lnet/minecraft/world/level/lighting/LayerLightSectionStorage;)V +MD: net/minecraft/world/level/lighting/LightEngine/m_284187_ (JLnet/minecraft/world/level/block/state/BlockState;JLnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/Direction;)Z net/minecraft/world/level/lighting/LightEngine/shapeOccludes (JLnet/minecraft/world/level/block/state/BlockState;JLnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/Direction;)Z +MD: net/minecraft/world/level/lighting/LightEngine/m_284189_ (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/Direction;)Lnet/minecraft/world/phys/shapes/VoxelShape; net/minecraft/world/level/lighting/LightEngine/getOcclusionShape (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/Direction;)Lnet/minecraft/world/phys/shapes/VoxelShape; +MD: net/minecraft/world/level/lighting/LightEngine/m_284203_ (JLnet/minecraft/world/level/chunk/DataLayer;)V net/minecraft/world/level/lighting/LightEngine/queueSectionData (JLnet/minecraft/world/level/chunk/DataLayer;)V +MD: net/minecraft/world/level/lighting/LightEngine/m_284216_ (J)Ljava/lang/String; net/minecraft/world/level/lighting/LightEngine/getDebugData (J)Ljava/lang/String; +MD: net/minecraft/world/level/lighting/LightEngine/m_284218_ (JJ)V net/minecraft/world/level/lighting/LightEngine/enqueueIncrease (JJ)V +MD: net/minecraft/world/level/lighting/LightEngine/m_284245_ (Lnet/minecraft/world/level/ChunkPos;Z)V net/minecraft/world/level/lighting/LightEngine/retainData (Lnet/minecraft/world/level/ChunkPos;Z)V +MD: net/minecraft/world/level/lighting/LightEngine/m_284265_ (Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/world/level/lighting/LightEngine/isEmptyShape (Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/world/level/lighting/LightEngine/m_284282_ (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Direction;I)I net/minecraft/world/level/lighting/LightEngine/getLightBlockInto (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Direction;I)I +MD: net/minecraft/world/level/lighting/LightEngine/m_284303_ (II)Lnet/minecraft/world/level/chunk/LightChunk; net/minecraft/world/level/lighting/LightEngine/getChunk (II)Lnet/minecraft/world/level/chunk/LightChunk; +MD: net/minecraft/world/level/lighting/LightEngine/m_284316_ (JJI)V net/minecraft/world/level/lighting/LightEngine/propagateIncrease (JJI)V +MD: net/minecraft/world/level/lighting/LightEngine/m_284321_ (JJ)V net/minecraft/world/level/lighting/LightEngine/propagateDecrease (JJ)V +MD: net/minecraft/world/level/lighting/LightEngine/m_284343_ (JJ)V net/minecraft/world/level/lighting/LightEngine/enqueueDecrease (JJ)V +MD: net/minecraft/world/level/lighting/LightEngine/m_284361_ ()I net/minecraft/world/level/lighting/LightEngine/propagateIncreases ()I +MD: net/minecraft/world/level/lighting/LightEngine/m_284387_ (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/world/level/lighting/LightEngine/hasDifferentLightProperties (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/world/level/lighting/LightEngine/m_284399_ ()I net/minecraft/world/level/lighting/LightEngine/propagateDecreases ()I +MD: net/minecraft/world/level/lighting/LightEngine/m_284404_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/BlockPos;)I net/minecraft/world/level/lighting/LightEngine/getOpacity (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/BlockPos;)I +MD: net/minecraft/world/level/lighting/LightEngine/m_284428_ (Lnet/minecraft/world/level/block/state/BlockState;JLnet/minecraft/core/Direction;)Lnet/minecraft/world/phys/shapes/VoxelShape; net/minecraft/world/level/lighting/LightEngine/getOcclusionShape (Lnet/minecraft/world/level/block/state/BlockState;JLnet/minecraft/core/Direction;)Lnet/minecraft/world/phys/shapes/VoxelShape; +MD: net/minecraft/world/level/lighting/LightEngine/m_284437_ (J)Lnet/minecraft/world/level/lighting/LayerLightSectionStorage$SectionType; net/minecraft/world/level/lighting/LightEngine/getDebugSectionType (J)Lnet/minecraft/world/level/lighting/LayerLightSectionStorage$SectionType; +MD: net/minecraft/world/level/lighting/LightEngine/m_284512_ (Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/lighting/LightEngine/getState (Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/lighting/LightEngine/m_284550_ ()V net/minecraft/world/level/lighting/LightEngine/clearChunkCache ()V +MD: net/minecraft/world/level/lighting/LightEngine/m_6191_ (Lnet/minecraft/core/SectionPos;Z)V net/minecraft/world/level/lighting/LightEngine/updateSectionStatus (Lnet/minecraft/core/SectionPos;Z)V +MD: net/minecraft/world/level/lighting/LightEngine/m_7174_ (Lnet/minecraft/core/BlockPos;)V net/minecraft/world/level/lighting/LightEngine/checkBlock (Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/world/level/lighting/LightEngine/m_75808_ ()Z net/minecraft/world/level/lighting/LightEngine/hasLightWork ()Z +MD: net/minecraft/world/level/lighting/LightEngine/m_75858_ (J)V net/minecraft/world/level/lighting/LightEngine/checkNode (J)V +MD: net/minecraft/world/level/lighting/LightEngine/m_7768_ (Lnet/minecraft/core/BlockPos;)I net/minecraft/world/level/lighting/LightEngine/getLightValue (Lnet/minecraft/core/BlockPos;)I +MD: net/minecraft/world/level/lighting/LightEngine/m_8079_ (Lnet/minecraft/core/SectionPos;)Lnet/minecraft/world/level/chunk/DataLayer; net/minecraft/world/level/lighting/LightEngine/getDataLayerData (Lnet/minecraft/core/SectionPos;)Lnet/minecraft/world/level/chunk/DataLayer; +MD: net/minecraft/world/level/lighting/LightEngine/m_9323_ ()I net/minecraft/world/level/lighting/LightEngine/runLightUpdates ()I +MD: net/minecraft/world/level/lighting/LightEngine/m_9335_ (Lnet/minecraft/world/level/ChunkPos;Z)V net/minecraft/world/level/lighting/LightEngine/setLightEnabled (Lnet/minecraft/world/level/ChunkPos;Z)V +MD: net/minecraft/world/level/lighting/LightEngine$QueueEntry/ ()V net/minecraft/world/level/lighting/LightEngine$QueueEntry/ ()V +MD: net/minecraft/world/level/lighting/LightEngine$QueueEntry/m_284128_ (IZLnet/minecraft/core/Direction;)J net/minecraft/world/level/lighting/LightEngine$QueueEntry/increaseOnlyOneDirection (IZLnet/minecraft/core/Direction;)J +MD: net/minecraft/world/level/lighting/LightEngine$QueueEntry/m_284170_ (J)I net/minecraft/world/level/lighting/LightEngine$QueueEntry/getFromLevel (J)I +MD: net/minecraft/world/level/lighting/LightEngine$QueueEntry/m_284185_ (IZ)J net/minecraft/world/level/lighting/LightEngine$QueueEntry/increaseLightFromEmission (IZ)J +MD: net/minecraft/world/level/lighting/LightEngine$QueueEntry/m_284188_ (IZLnet/minecraft/core/Direction;)J net/minecraft/world/level/lighting/LightEngine$QueueEntry/increaseSkipOneDirection (IZLnet/minecraft/core/Direction;)J +MD: net/minecraft/world/level/lighting/LightEngine$QueueEntry/m_284290_ (I)J net/minecraft/world/level/lighting/LightEngine$QueueEntry/decreaseAllDirections (I)J +MD: net/minecraft/world/level/lighting/LightEngine$QueueEntry/m_284312_ (J)Z net/minecraft/world/level/lighting/LightEngine$QueueEntry/isIncreaseFromEmission (J)Z +MD: net/minecraft/world/level/lighting/LightEngine$QueueEntry/m_284335_ (JLnet/minecraft/core/Direction;)J net/minecraft/world/level/lighting/LightEngine$QueueEntry/withDirection (JLnet/minecraft/core/Direction;)J +MD: net/minecraft/world/level/lighting/LightEngine$QueueEntry/m_284390_ (J)Z net/minecraft/world/level/lighting/LightEngine$QueueEntry/isFromEmptyShape (J)Z +MD: net/minecraft/world/level/lighting/LightEngine$QueueEntry/m_284416_ (JLnet/minecraft/core/Direction;)Z net/minecraft/world/level/lighting/LightEngine$QueueEntry/shouldPropagateInDirection (JLnet/minecraft/core/Direction;)Z +MD: net/minecraft/world/level/lighting/LightEngine$QueueEntry/m_284441_ (JLnet/minecraft/core/Direction;)J net/minecraft/world/level/lighting/LightEngine$QueueEntry/withoutDirection (JLnet/minecraft/core/Direction;)J +MD: net/minecraft/world/level/lighting/LightEngine$QueueEntry/m_284455_ (JI)J net/minecraft/world/level/lighting/LightEngine$QueueEntry/withLevel (JI)J +MD: net/minecraft/world/level/lighting/LightEngine$QueueEntry/m_284543_ (ZZZZZ)J net/minecraft/world/level/lighting/LightEngine$QueueEntry/increaseSkySourceInDirections (ZZZZZ)J +MD: net/minecraft/world/level/lighting/LightEngine$QueueEntry/m_284546_ (ILnet/minecraft/core/Direction;)J net/minecraft/world/level/lighting/LightEngine$QueueEntry/decreaseSkipOneDirection (ILnet/minecraft/core/Direction;)J +MD: net/minecraft/world/level/lighting/LightEventListener/m_142519_ (Lnet/minecraft/world/level/ChunkPos;)V net/minecraft/world/level/lighting/LightEventListener/propagateLightSources (Lnet/minecraft/world/level/ChunkPos;)V +MD: net/minecraft/world/level/lighting/LightEventListener/m_6191_ (Lnet/minecraft/core/SectionPos;Z)V net/minecraft/world/level/lighting/LightEventListener/updateSectionStatus (Lnet/minecraft/core/SectionPos;Z)V +MD: net/minecraft/world/level/lighting/LightEventListener/m_7174_ (Lnet/minecraft/core/BlockPos;)V net/minecraft/world/level/lighting/LightEventListener/checkBlock (Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/world/level/lighting/LightEventListener/m_75808_ ()Z net/minecraft/world/level/lighting/LightEventListener/hasLightWork ()Z +MD: net/minecraft/world/level/lighting/LightEventListener/m_75834_ (Lnet/minecraft/core/BlockPos;Z)V net/minecraft/world/level/lighting/LightEventListener/updateSectionStatus (Lnet/minecraft/core/BlockPos;Z)V +MD: net/minecraft/world/level/lighting/LightEventListener/m_9323_ ()I net/minecraft/world/level/lighting/LightEventListener/runLightUpdates ()I +MD: net/minecraft/world/level/lighting/LightEventListener/m_9335_ (Lnet/minecraft/world/level/ChunkPos;Z)V net/minecraft/world/level/lighting/LightEventListener/setLightEnabled (Lnet/minecraft/world/level/ChunkPos;Z)V +MD: net/minecraft/world/level/lighting/SkyLightEngine/ ()V net/minecraft/world/level/lighting/SkyLightEngine/ ()V +MD: net/minecraft/world/level/lighting/SkyLightEngine/ (Lnet/minecraft/world/level/chunk/LightChunkGetter;)V net/minecraft/world/level/lighting/SkyLightEngine/ (Lnet/minecraft/world/level/chunk/LightChunkGetter;)V +MD: net/minecraft/world/level/lighting/SkyLightEngine/ (Lnet/minecraft/world/level/chunk/LightChunkGetter;Lnet/minecraft/world/level/lighting/SkyLightSectionStorage;)V net/minecraft/world/level/lighting/SkyLightEngine/ (Lnet/minecraft/world/level/chunk/LightChunkGetter;Lnet/minecraft/world/level/lighting/SkyLightSectionStorage;)V +MD: net/minecraft/world/level/lighting/SkyLightEngine/m_142519_ (Lnet/minecraft/world/level/ChunkPos;)V net/minecraft/world/level/lighting/SkyLightEngine/propagateLightSources (Lnet/minecraft/world/level/ChunkPos;)V +MD: net/minecraft/world/level/lighting/SkyLightEngine/m_284181_ (JLnet/minecraft/core/Direction;IZI)V net/minecraft/world/level/lighting/SkyLightEngine/propagateFromEmptySections (JLnet/minecraft/core/Direction;IZI)V +MD: net/minecraft/world/level/lighting/SkyLightEngine/m_284202_ (Lnet/minecraft/core/Direction;II)Z net/minecraft/world/level/lighting/SkyLightEngine/crossedSectionEdge (Lnet/minecraft/core/Direction;II)Z +MD: net/minecraft/world/level/lighting/SkyLightEngine/m_284210_ (J)I net/minecraft/world/level/lighting/SkyLightEngine/countEmptySectionsBelowIfAtBorder (J)I +MD: net/minecraft/world/level/lighting/SkyLightEngine/m_284231_ (II)Lnet/minecraft/world/level/lighting/ChunkSkyLightSources; net/minecraft/world/level/lighting/SkyLightEngine/getChunkSources (II)Lnet/minecraft/world/level/lighting/ChunkSkyLightSources; +MD: net/minecraft/world/level/lighting/SkyLightEngine/m_284316_ (JJI)V net/minecraft/world/level/lighting/SkyLightEngine/propagateIncrease (JJI)V +MD: net/minecraft/world/level/lighting/SkyLightEngine/m_284317_ (IIII)V net/minecraft/world/level/lighting/SkyLightEngine/removeSourcesBelow (IIII)V +MD: net/minecraft/world/level/lighting/SkyLightEngine/m_284321_ (JJ)V net/minecraft/world/level/lighting/SkyLightEngine/propagateDecrease (JJ)V +MD: net/minecraft/world/level/lighting/SkyLightEngine/m_284344_ (III)I net/minecraft/world/level/lighting/SkyLightEngine/getLowestSourceY (III)I +MD: net/minecraft/world/level/lighting/SkyLightEngine/m_284375_ (IIII)V net/minecraft/world/level/lighting/SkyLightEngine/addSourcesAbove (IIII)V +MD: net/minecraft/world/level/lighting/SkyLightEngine/m_284427_ (III)V net/minecraft/world/level/lighting/SkyLightEngine/updateSourcesInColumn (III)V +MD: net/minecraft/world/level/lighting/SkyLightEngine/m_284444_ (I)Z net/minecraft/world/level/lighting/SkyLightEngine/isSourceLevel (I)Z +MD: net/minecraft/world/level/lighting/SkyLightEngine/m_75858_ (J)V net/minecraft/world/level/lighting/SkyLightEngine/checkNode (J)V +MD: net/minecraft/world/level/lighting/SkyLightEngine/m_9335_ (Lnet/minecraft/world/level/ChunkPos;Z)V net/minecraft/world/level/lighting/SkyLightEngine/setLightEnabled (Lnet/minecraft/world/level/ChunkPos;Z)V +MD: net/minecraft/world/level/lighting/SkyLightEngine$1/ ()V net/minecraft/world/level/lighting/SkyLightEngine$1/ ()V +MD: net/minecraft/world/level/lighting/SkyLightSectionStorage/ (Lnet/minecraft/world/level/chunk/LightChunkGetter;)V net/minecraft/world/level/lighting/SkyLightSectionStorage/ (Lnet/minecraft/world/level/chunk/LightChunkGetter;)V +MD: net/minecraft/world/level/lighting/SkyLightSectionStorage/m_164457_ (JZ)I net/minecraft/world/level/lighting/SkyLightSectionStorage/getLightValue (JZ)I +MD: net/minecraft/world/level/lighting/SkyLightSectionStorage/m_182512_ (Lnet/minecraft/world/level/chunk/DataLayer;)Lnet/minecraft/world/level/chunk/DataLayer; net/minecraft/world/level/lighting/SkyLightSectionStorage/repeatFirstLayer (Lnet/minecraft/world/level/chunk/DataLayer;)Lnet/minecraft/world/level/chunk/DataLayer; +MD: net/minecraft/world/level/lighting/SkyLightSectionStorage/m_284293_ ()I net/minecraft/world/level/lighting/SkyLightSectionStorage/getBottomSectionY ()I +MD: net/minecraft/world/level/lighting/SkyLightSectionStorage/m_284384_ (J)I net/minecraft/world/level/lighting/SkyLightSectionStorage/getTopSectionY (J)I +MD: net/minecraft/world/level/lighting/SkyLightSectionStorage/m_6177_ (J)V net/minecraft/world/level/lighting/SkyLightSectionStorage/onNodeAdded (J)V +MD: net/minecraft/world/level/lighting/SkyLightSectionStorage/m_6181_ (J)I net/minecraft/world/level/lighting/SkyLightSectionStorage/getLightValue (J)I +MD: net/minecraft/world/level/lighting/SkyLightSectionStorage/m_6187_ (J)V net/minecraft/world/level/lighting/SkyLightSectionStorage/onNodeRemoved (J)V +MD: net/minecraft/world/level/lighting/SkyLightSectionStorage/m_75870_ (I)Z net/minecraft/world/level/lighting/SkyLightSectionStorage/hasLightDataAtOrBelow (I)Z +MD: net/minecraft/world/level/lighting/SkyLightSectionStorage/m_75890_ (J)Z net/minecraft/world/level/lighting/SkyLightSectionStorage/isAboveData (J)Z +MD: net/minecraft/world/level/lighting/SkyLightSectionStorage/m_7667_ (J)Lnet/minecraft/world/level/chunk/DataLayer; net/minecraft/world/level/lighting/SkyLightSectionStorage/createDataLayer (J)Lnet/minecraft/world/level/chunk/DataLayer; +MD: net/minecraft/world/level/lighting/SkyLightSectionStorage$SkyDataLayerStorageMap/ (Lit/unimi/dsi/fastutil/longs/Long2ObjectOpenHashMap;Lit/unimi/dsi/fastutil/longs/Long2IntOpenHashMap;I)V net/minecraft/world/level/lighting/SkyLightSectionStorage$SkyDataLayerStorageMap/ (Lit/unimi/dsi/fastutil/longs/Long2ObjectOpenHashMap;Lit/unimi/dsi/fastutil/longs/Long2IntOpenHashMap;I)V +MD: net/minecraft/world/level/lighting/SkyLightSectionStorage$SkyDataLayerStorageMap/m_5972_ ()Lnet/minecraft/world/level/lighting/DataLayerStorageMap; net/minecraft/world/level/lighting/SkyLightSectionStorage$SkyDataLayerStorageMap/copy ()Lnet/minecraft/world/level/lighting/DataLayerStorageMap; +MD: net/minecraft/world/level/lighting/SkyLightSectionStorage$SkyDataLayerStorageMap/m_5972_ ()Lnet/minecraft/world/level/lighting/SkyLightSectionStorage$SkyDataLayerStorageMap; net/minecraft/world/level/lighting/SkyLightSectionStorage$SkyDataLayerStorageMap/copy ()Lnet/minecraft/world/level/lighting/SkyLightSectionStorage$SkyDataLayerStorageMap; +MD: net/minecraft/world/level/lighting/SpatialLongSet/ (IF)V net/minecraft/world/level/lighting/SpatialLongSet/ (IF)V +MD: net/minecraft/world/level/lighting/SpatialLongSet/add (J)Z net/minecraft/world/level/lighting/SpatialLongSet/add (J)Z +MD: net/minecraft/world/level/lighting/SpatialLongSet/isEmpty ()Z net/minecraft/world/level/lighting/SpatialLongSet/isEmpty ()Z +MD: net/minecraft/world/level/lighting/SpatialLongSet/rem (J)Z net/minecraft/world/level/lighting/SpatialLongSet/rem (J)Z +MD: net/minecraft/world/level/lighting/SpatialLongSet/removeFirstLong ()J net/minecraft/world/level/lighting/SpatialLongSet/removeFirstLong ()J +MD: net/minecraft/world/level/lighting/SpatialLongSet/size ()I net/minecraft/world/level/lighting/SpatialLongSet/size ()I +MD: net/minecraft/world/level/lighting/SpatialLongSet$InternalMap/ ()V net/minecraft/world/level/lighting/SpatialLongSet$InternalMap/ ()V +MD: net/minecraft/world/level/lighting/SpatialLongSet$InternalMap/ (IF)V net/minecraft/world/level/lighting/SpatialLongSet$InternalMap/ (IF)V +MD: net/minecraft/world/level/lighting/SpatialLongSet$InternalMap/m_164485_ ()J net/minecraft/world/level/lighting/SpatialLongSet$InternalMap/removeFirstBit ()J +MD: net/minecraft/world/level/lighting/SpatialLongSet$InternalMap/m_164486_ (IJ)Z net/minecraft/world/level/lighting/SpatialLongSet$InternalMap/replaceBit (IJ)Z +MD: net/minecraft/world/level/lighting/SpatialLongSet$InternalMap/m_164489_ (J)J net/minecraft/world/level/lighting/SpatialLongSet$InternalMap/getOuterKey (J)J +MD: net/minecraft/world/level/lighting/SpatialLongSet$InternalMap/m_164491_ (JI)J net/minecraft/world/level/lighting/SpatialLongSet$InternalMap/getFullKey (JI)J +MD: net/minecraft/world/level/lighting/SpatialLongSet$InternalMap/m_164494_ (IJ)Z net/minecraft/world/level/lighting/SpatialLongSet$InternalMap/removeFromEntry (IJ)Z +MD: net/minecraft/world/level/lighting/SpatialLongSet$InternalMap/m_164497_ (J)I net/minecraft/world/level/lighting/SpatialLongSet$InternalMap/getInnerKey (J)I +MD: net/minecraft/world/level/lighting/SpatialLongSet$InternalMap/m_164499_ (J)Z net/minecraft/world/level/lighting/SpatialLongSet$InternalMap/addBit (J)Z +MD: net/minecraft/world/level/lighting/SpatialLongSet$InternalMap/m_164501_ (J)Z net/minecraft/world/level/lighting/SpatialLongSet$InternalMap/removeBit (J)Z +MD: net/minecraft/world/level/lighting/SpatialLongSet$InternalMap/m_164503_ (J)Z net/minecraft/world/level/lighting/SpatialLongSet$InternalMap/removeFromNullEntry (J)Z +MD: net/minecraft/world/level/lighting/SpatialLongSet$InternalMap/rehash (I)V net/minecraft/world/level/lighting/SpatialLongSet$InternalMap/rehash (I)V +MD: net/minecraft/world/level/material/EmptyFluid/ ()V net/minecraft/world/level/material/EmptyFluid/ ()V +MD: net/minecraft/world/level/material/EmptyFluid/m_5486_ (Lnet/minecraft/world/level/material/FluidState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/material/Fluid;Lnet/minecraft/core/Direction;)Z net/minecraft/world/level/material/EmptyFluid/canBeReplacedWith (Lnet/minecraft/world/level/material/FluidState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/material/Fluid;Lnet/minecraft/core/Direction;)Z +MD: net/minecraft/world/level/material/EmptyFluid/m_5804_ (Lnet/minecraft/world/level/material/FluidState;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/material/EmptyFluid/createLegacyBlock (Lnet/minecraft/world/level/material/FluidState;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/material/EmptyFluid/m_6098_ (Lnet/minecraft/world/level/material/FluidState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)F net/minecraft/world/level/material/EmptyFluid/getHeight (Lnet/minecraft/world/level/material/FluidState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)F +MD: net/minecraft/world/level/material/EmptyFluid/m_6718_ (Lnet/minecraft/world/level/LevelReader;)I net/minecraft/world/level/material/EmptyFluid/getTickDelay (Lnet/minecraft/world/level/LevelReader;)I +MD: net/minecraft/world/level/material/EmptyFluid/m_6752_ ()F net/minecraft/world/level/material/EmptyFluid/getExplosionResistance ()F +MD: net/minecraft/world/level/material/EmptyFluid/m_6759_ ()Z net/minecraft/world/level/material/EmptyFluid/isEmpty ()Z +MD: net/minecraft/world/level/material/EmptyFluid/m_6859_ ()Lnet/minecraft/world/item/Item; net/minecraft/world/level/material/EmptyFluid/getBucket ()Lnet/minecraft/world/item/Item; +MD: net/minecraft/world/level/material/EmptyFluid/m_7000_ (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/material/FluidState;)Lnet/minecraft/world/phys/Vec3; net/minecraft/world/level/material/EmptyFluid/getFlow (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/material/FluidState;)Lnet/minecraft/world/phys/Vec3; +MD: net/minecraft/world/level/material/EmptyFluid/m_7427_ (Lnet/minecraft/world/level/material/FluidState;)F net/minecraft/world/level/material/EmptyFluid/getOwnHeight (Lnet/minecraft/world/level/material/FluidState;)F +MD: net/minecraft/world/level/material/EmptyFluid/m_7430_ (Lnet/minecraft/world/level/material/FluidState;)I net/minecraft/world/level/material/EmptyFluid/getAmount (Lnet/minecraft/world/level/material/FluidState;)I +MD: net/minecraft/world/level/material/EmptyFluid/m_7444_ (Lnet/minecraft/world/level/material/FluidState;)Z net/minecraft/world/level/material/EmptyFluid/isSource (Lnet/minecraft/world/level/material/FluidState;)Z +MD: net/minecraft/world/level/material/EmptyFluid/m_7999_ (Lnet/minecraft/world/level/material/FluidState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/phys/shapes/VoxelShape; net/minecraft/world/level/material/EmptyFluid/getShape (Lnet/minecraft/world/level/material/FluidState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/phys/shapes/VoxelShape; +MD: net/minecraft/world/level/material/FlowingFluid/ ()V net/minecraft/world/level/material/FlowingFluid/ ()V +MD: net/minecraft/world/level/material/FlowingFluid/ ()V net/minecraft/world/level/material/FlowingFluid/ ()V +MD: net/minecraft/world/level/material/FlowingFluid/m_192908_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/world/level/block/state/BlockState;S)Z net/minecraft/world/level/material/FlowingFluid/lambda$getSlopeDistance$2 (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/world/level/block/state/BlockState;S)Z +MD: net/minecraft/world/level/material/FlowingFluid/m_254836_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;S)Z net/minecraft/world/level/material/FlowingFluid/lambda$getSpread$4 (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;S)Z +MD: net/minecraft/world/level/material/FlowingFluid/m_284124_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;S)Lcom/mojang/datafixers/util/Pair; net/minecraft/world/level/material/FlowingFluid/lambda$getSpread$3 (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;S)Lcom/mojang/datafixers/util/Pair; +MD: net/minecraft/world/level/material/FlowingFluid/m_284125_ (Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;S)Lcom/mojang/datafixers/util/Pair; net/minecraft/world/level/material/FlowingFluid/lambda$getSlopeDistance$1 (Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;S)Lcom/mojang/datafixers/util/Pair; +MD: net/minecraft/world/level/material/FlowingFluid/m_5613_ ()Lnet/minecraft/world/level/material/Fluid; net/minecraft/world/level/material/FlowingFluid/getSource ()Lnet/minecraft/world/level/material/Fluid; +MD: net/minecraft/world/level/material/FlowingFluid/m_5615_ ()Lnet/minecraft/world/level/material/Fluid; net/minecraft/world/level/material/FlowingFluid/getFlowing ()Lnet/minecraft/world/level/material/Fluid; +MD: net/minecraft/world/level/material/FlowingFluid/m_6098_ (Lnet/minecraft/world/level/material/FluidState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)F net/minecraft/world/level/material/FlowingFluid/getHeight (Lnet/minecraft/world/level/material/FluidState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)F +MD: net/minecraft/world/level/material/FlowingFluid/m_6292_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/material/FluidState;)V net/minecraft/world/level/material/FlowingFluid/tick (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/material/FluidState;)V +MD: net/minecraft/world/level/material/FlowingFluid/m_6364_ (Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/material/FluidState;)V net/minecraft/world/level/material/FlowingFluid/spreadTo (Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/material/FluidState;)V +MD: net/minecraft/world/level/material/FlowingFluid/m_6713_ (Lnet/minecraft/world/level/LevelReader;)I net/minecraft/world/level/material/FlowingFluid/getDropOff (Lnet/minecraft/world/level/LevelReader;)I +MD: net/minecraft/world/level/material/FlowingFluid/m_6719_ (Lnet/minecraft/world/level/LevelReader;)I net/minecraft/world/level/material/FlowingFluid/getSlopeFindDistance (Lnet/minecraft/world/level/LevelReader;)I +MD: net/minecraft/world/level/material/FlowingFluid/m_6760_ (Lnet/minecraft/world/level/Level;)Z net/minecraft/world/level/material/FlowingFluid/canConvertToSource (Lnet/minecraft/world/level/Level;)Z +MD: net/minecraft/world/level/material/FlowingFluid/m_6886_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/material/FluidState;Lnet/minecraft/world/level/material/FluidState;)I net/minecraft/world/level/material/FlowingFluid/getSpreadDelay (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/material/FluidState;Lnet/minecraft/world/level/material/FluidState;)I +MD: net/minecraft/world/level/material/FlowingFluid/m_7000_ (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/material/FluidState;)Lnet/minecraft/world/phys/Vec3; net/minecraft/world/level/material/FlowingFluid/getFlow (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/material/FluidState;)Lnet/minecraft/world/phys/Vec3; +MD: net/minecraft/world/level/material/FlowingFluid/m_7180_ (Lnet/minecraft/world/level/block/state/StateDefinition$Builder;)V net/minecraft/world/level/material/FlowingFluid/createFluidStateDefinition (Lnet/minecraft/world/level/block/state/StateDefinition$Builder;)V +MD: net/minecraft/world/level/material/FlowingFluid/m_7427_ (Lnet/minecraft/world/level/material/FluidState;)F net/minecraft/world/level/material/FlowingFluid/getOwnHeight (Lnet/minecraft/world/level/material/FluidState;)F +MD: net/minecraft/world/level/material/FlowingFluid/m_7430_ (Lnet/minecraft/world/level/material/FluidState;)I net/minecraft/world/level/material/FlowingFluid/getAmount (Lnet/minecraft/world/level/material/FluidState;)I +MD: net/minecraft/world/level/material/FlowingFluid/m_7456_ (Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V net/minecraft/world/level/material/FlowingFluid/beforeDestroyingBlock (Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V +MD: net/minecraft/world/level/material/FlowingFluid/m_75953_ (IZ)Lnet/minecraft/world/level/material/FluidState; net/minecraft/world/level/material/FlowingFluid/getFlowing (IZ)Lnet/minecraft/world/level/material/FluidState; +MD: net/minecraft/world/level/material/FlowingFluid/m_75956_ (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/world/level/material/Fluid;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/world/level/material/FlowingFluid/isWaterHole (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/world/level/material/Fluid;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/world/level/material/FlowingFluid/m_75963_ (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/world/level/material/Fluid;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/Direction;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/material/FluidState;)Z net/minecraft/world/level/material/FlowingFluid/canPassThrough (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/world/level/material/Fluid;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/Direction;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/material/FluidState;)Z +MD: net/minecraft/world/level/material/FlowingFluid/m_75972_ (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/material/Fluid;)Z net/minecraft/world/level/material/FlowingFluid/canHoldFluid (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/material/Fluid;)Z +MD: net/minecraft/world/level/material/FlowingFluid/m_75977_ (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/Direction;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/material/FluidState;Lnet/minecraft/world/level/material/Fluid;)Z net/minecraft/world/level/material/FlowingFluid/canSpreadTo (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/Direction;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/material/FluidState;Lnet/minecraft/world/level/material/Fluid;)Z +MD: net/minecraft/world/level/material/FlowingFluid/m_75990_ (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Direction;)Z net/minecraft/world/level/material/FlowingFluid/isSolidFace (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Direction;)Z +MD: net/minecraft/world/level/material/FlowingFluid/m_76010_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/material/FluidState;)V net/minecraft/world/level/material/FlowingFluid/spread (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/material/FluidState;)V +MD: net/minecraft/world/level/material/FlowingFluid/m_76014_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/material/FluidState;Lnet/minecraft/world/level/block/state/BlockState;)V net/minecraft/world/level/material/FlowingFluid/spreadToSides (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/material/FluidState;Lnet/minecraft/world/level/block/state/BlockState;)V +MD: net/minecraft/world/level/material/FlowingFluid/m_76019_ (Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;)I net/minecraft/world/level/material/FlowingFluid/sourceNeighborCount (Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;)I +MD: net/minecraft/world/level/material/FlowingFluid/m_76026_ (Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;ILnet/minecraft/core/Direction;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/BlockPos;Lit/unimi/dsi/fastutil/shorts/Short2ObjectMap;Lit/unimi/dsi/fastutil/shorts/Short2BooleanMap;)I net/minecraft/world/level/material/FlowingFluid/getSlopeDistance (Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;ILnet/minecraft/core/Direction;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/BlockPos;Lit/unimi/dsi/fastutil/shorts/Short2ObjectMap;Lit/unimi/dsi/fastutil/shorts/Short2BooleanMap;)I +MD: net/minecraft/world/level/material/FlowingFluid/m_76035_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/material/FluidState; net/minecraft/world/level/material/FlowingFluid/getNewLiquid (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/material/FluidState; +MD: net/minecraft/world/level/material/FlowingFluid/m_76058_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;)S net/minecraft/world/level/material/FlowingFluid/getCacheKey (Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;)S +MD: net/minecraft/world/level/material/FlowingFluid/m_76061_ (Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/world/level/material/FlowingFluid/canPassThroughWall (Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/world/level/material/FlowingFluid/m_76068_ (Z)Lnet/minecraft/world/level/material/FluidState; net/minecraft/world/level/material/FlowingFluid/getSource (Z)Lnet/minecraft/world/level/material/FluidState; +MD: net/minecraft/world/level/material/FlowingFluid/m_76070_ (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/material/FluidState;)Lnet/minecraft/world/phys/shapes/VoxelShape; net/minecraft/world/level/material/FlowingFluid/lambda$getShape$5 (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/material/FluidState;)Lnet/minecraft/world/phys/shapes/VoxelShape; +MD: net/minecraft/world/level/material/FlowingFluid/m_76079_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Ljava/util/Map; net/minecraft/world/level/material/FlowingFluid/getSpread (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)Ljava/util/Map; +MD: net/minecraft/world/level/material/FlowingFluid/m_76088_ (Lnet/minecraft/world/level/material/FluidState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/level/material/FlowingFluid/hasSameAbove (Lnet/minecraft/world/level/material/FluidState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/level/material/FlowingFluid/m_76092_ (Lnet/minecraft/world/level/material/FluidState;)I net/minecraft/world/level/material/FlowingFluid/getLegacyLevel (Lnet/minecraft/world/level/material/FluidState;)I +MD: net/minecraft/world/level/material/FlowingFluid/m_76094_ (Lnet/minecraft/world/level/material/FluidState;)Z net/minecraft/world/level/material/FlowingFluid/affectsFlow (Lnet/minecraft/world/level/material/FluidState;)Z +MD: net/minecraft/world/level/material/FlowingFluid/m_76096_ (Lnet/minecraft/world/level/material/FluidState;)Z net/minecraft/world/level/material/FlowingFluid/isSourceBlockOfThisType (Lnet/minecraft/world/level/material/FluidState;)Z +MD: net/minecraft/world/level/material/FlowingFluid/m_76098_ ()Lit/unimi/dsi/fastutil/objects/Object2ByteLinkedOpenHashMap; net/minecraft/world/level/material/FlowingFluid/lambda$static$0 ()Lit/unimi/dsi/fastutil/objects/Object2ByteLinkedOpenHashMap; +MD: net/minecraft/world/level/material/FlowingFluid/m_7999_ (Lnet/minecraft/world/level/material/FluidState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/phys/shapes/VoxelShape; net/minecraft/world/level/material/FlowingFluid/getShape (Lnet/minecraft/world/level/material/FluidState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/phys/shapes/VoxelShape; +MD: net/minecraft/world/level/material/FlowingFluid$1/ (I)V net/minecraft/world/level/material/FlowingFluid$1/ (I)V +MD: net/minecraft/world/level/material/FlowingFluid$1/rehash (I)V net/minecraft/world/level/material/FlowingFluid$1/rehash (I)V +MD: net/minecraft/world/level/material/Fluid/ ()V net/minecraft/world/level/material/Fluid/ ()V +MD: net/minecraft/world/level/material/Fluid/ ()V net/minecraft/world/level/material/Fluid/ ()V +MD: net/minecraft/world/level/material/Fluid/m_142520_ ()Ljava/util/Optional; net/minecraft/world/level/material/Fluid/getPickupSound ()Ljava/util/Optional; +MD: net/minecraft/world/level/material/Fluid/m_205067_ (Lnet/minecraft/tags/TagKey;)Z net/minecraft/world/level/material/Fluid/is (Lnet/minecraft/tags/TagKey;)Z +MD: net/minecraft/world/level/material/Fluid/m_205069_ ()Lnet/minecraft/core/Holder$Reference; net/minecraft/world/level/material/Fluid/builtInRegistryHolder ()Lnet/minecraft/core/Holder$Reference; +MD: net/minecraft/world/level/material/Fluid/m_213811_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/material/FluidState;Lnet/minecraft/util/RandomSource;)V net/minecraft/world/level/material/Fluid/animateTick (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/material/FluidState;Lnet/minecraft/util/RandomSource;)V +MD: net/minecraft/world/level/material/Fluid/m_213812_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/material/FluidState;Lnet/minecraft/util/RandomSource;)V net/minecraft/world/level/material/Fluid/randomTick (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/material/FluidState;Lnet/minecraft/util/RandomSource;)V +MD: net/minecraft/world/level/material/Fluid/m_5486_ (Lnet/minecraft/world/level/material/FluidState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/material/Fluid;Lnet/minecraft/core/Direction;)Z net/minecraft/world/level/material/Fluid/canBeReplacedWith (Lnet/minecraft/world/level/material/FluidState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/material/Fluid;Lnet/minecraft/core/Direction;)Z +MD: net/minecraft/world/level/material/Fluid/m_5804_ (Lnet/minecraft/world/level/material/FluidState;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/material/Fluid/createLegacyBlock (Lnet/minecraft/world/level/material/FluidState;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/material/Fluid/m_6098_ (Lnet/minecraft/world/level/material/FluidState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)F net/minecraft/world/level/material/Fluid/getHeight (Lnet/minecraft/world/level/material/FluidState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)F +MD: net/minecraft/world/level/material/Fluid/m_6212_ (Lnet/minecraft/world/level/material/Fluid;)Z net/minecraft/world/level/material/Fluid/isSame (Lnet/minecraft/world/level/material/Fluid;)Z +MD: net/minecraft/world/level/material/Fluid/m_6292_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/material/FluidState;)V net/minecraft/world/level/material/Fluid/tick (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/material/FluidState;)V +MD: net/minecraft/world/level/material/Fluid/m_6685_ ()Z net/minecraft/world/level/material/Fluid/isRandomlyTicking ()Z +MD: net/minecraft/world/level/material/Fluid/m_6718_ (Lnet/minecraft/world/level/LevelReader;)I net/minecraft/world/level/material/Fluid/getTickDelay (Lnet/minecraft/world/level/LevelReader;)I +MD: net/minecraft/world/level/material/Fluid/m_6752_ ()F net/minecraft/world/level/material/Fluid/getExplosionResistance ()F +MD: net/minecraft/world/level/material/Fluid/m_6759_ ()Z net/minecraft/world/level/material/Fluid/isEmpty ()Z +MD: net/minecraft/world/level/material/Fluid/m_6859_ ()Lnet/minecraft/world/item/Item; net/minecraft/world/level/material/Fluid/getBucket ()Lnet/minecraft/world/item/Item; +MD: net/minecraft/world/level/material/Fluid/m_7000_ (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/material/FluidState;)Lnet/minecraft/world/phys/Vec3; net/minecraft/world/level/material/Fluid/getFlow (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/material/FluidState;)Lnet/minecraft/world/phys/Vec3; +MD: net/minecraft/world/level/material/Fluid/m_7180_ (Lnet/minecraft/world/level/block/state/StateDefinition$Builder;)V net/minecraft/world/level/material/Fluid/createFluidStateDefinition (Lnet/minecraft/world/level/block/state/StateDefinition$Builder;)V +MD: net/minecraft/world/level/material/Fluid/m_7427_ (Lnet/minecraft/world/level/material/FluidState;)F net/minecraft/world/level/material/Fluid/getOwnHeight (Lnet/minecraft/world/level/material/FluidState;)F +MD: net/minecraft/world/level/material/Fluid/m_7430_ (Lnet/minecraft/world/level/material/FluidState;)I net/minecraft/world/level/material/Fluid/getAmount (Lnet/minecraft/world/level/material/FluidState;)I +MD: net/minecraft/world/level/material/Fluid/m_7444_ (Lnet/minecraft/world/level/material/FluidState;)Z net/minecraft/world/level/material/Fluid/isSource (Lnet/minecraft/world/level/material/FluidState;)Z +MD: net/minecraft/world/level/material/Fluid/m_76142_ (Lnet/minecraft/world/level/material/FluidState;)V net/minecraft/world/level/material/Fluid/registerDefaultState (Lnet/minecraft/world/level/material/FluidState;)V +MD: net/minecraft/world/level/material/Fluid/m_76144_ ()Lnet/minecraft/world/level/block/state/StateDefinition; net/minecraft/world/level/material/Fluid/getStateDefinition ()Lnet/minecraft/world/level/block/state/StateDefinition; +MD: net/minecraft/world/level/material/Fluid/m_76145_ ()Lnet/minecraft/world/level/material/FluidState; net/minecraft/world/level/material/Fluid/defaultFluidState ()Lnet/minecraft/world/level/material/FluidState; +MD: net/minecraft/world/level/material/Fluid/m_7792_ ()Lnet/minecraft/core/particles/ParticleOptions; net/minecraft/world/level/material/Fluid/getDripParticle ()Lnet/minecraft/core/particles/ParticleOptions; +MD: net/minecraft/world/level/material/Fluid/m_7999_ (Lnet/minecraft/world/level/material/FluidState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/phys/shapes/VoxelShape; net/minecraft/world/level/material/Fluid/getShape (Lnet/minecraft/world/level/material/FluidState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/phys/shapes/VoxelShape; +MD: net/minecraft/world/level/material/FluidState/ ()V net/minecraft/world/level/material/FluidState/ ()V +MD: net/minecraft/world/level/material/FluidState/ (Lnet/minecraft/world/level/material/Fluid;Lcom/google/common/collect/ImmutableMap;Lcom/mojang/serialization/MapCodec;)V net/minecraft/world/level/material/FluidState/ (Lnet/minecraft/world/level/material/Fluid;Lcom/google/common/collect/ImmutableMap;Lcom/mojang/serialization/MapCodec;)V +MD: net/minecraft/world/level/material/FluidState/m_164512_ (Lnet/minecraft/world/level/material/Fluid;)Z net/minecraft/world/level/material/FluidState/isSourceOfType (Lnet/minecraft/world/level/material/Fluid;)Z +MD: net/minecraft/world/level/material/FluidState/m_192917_ (Lnet/minecraft/world/level/material/Fluid;)Z net/minecraft/world/level/material/FluidState/is (Lnet/minecraft/world/level/material/Fluid;)Z +MD: net/minecraft/world/level/material/FluidState/m_205070_ (Lnet/minecraft/tags/TagKey;)Z net/minecraft/world/level/material/FluidState/is (Lnet/minecraft/tags/TagKey;)Z +MD: net/minecraft/world/level/material/FluidState/m_205072_ (Lnet/minecraft/core/HolderSet;)Z net/minecraft/world/level/material/FluidState/is (Lnet/minecraft/core/HolderSet;)Z +MD: net/minecraft/world/level/material/FluidState/m_205074_ ()Lnet/minecraft/core/Holder; net/minecraft/world/level/material/FluidState/holder ()Lnet/minecraft/core/Holder; +MD: net/minecraft/world/level/material/FluidState/m_205075_ ()Ljava/util/stream/Stream; net/minecraft/world/level/material/FluidState/getTags ()Ljava/util/stream/Stream; +MD: net/minecraft/world/level/material/FluidState/m_230558_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)V net/minecraft/world/level/material/FluidState/animateTick (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)V +MD: net/minecraft/world/level/material/FluidState/m_230562_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)V net/minecraft/world/level/material/FluidState/randomTick (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/util/RandomSource;)V +MD: net/minecraft/world/level/material/FluidState/m_76152_ ()Lnet/minecraft/world/level/material/Fluid; net/minecraft/world/level/material/FluidState/getType ()Lnet/minecraft/world/level/material/Fluid; +MD: net/minecraft/world/level/material/FluidState/m_76155_ (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)F net/minecraft/world/level/material/FluidState/getHeight (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)F +MD: net/minecraft/world/level/material/FluidState/m_76158_ (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/material/Fluid;Lnet/minecraft/core/Direction;)Z net/minecraft/world/level/material/FluidState/canBeReplacedWith (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/material/Fluid;Lnet/minecraft/core/Direction;)Z +MD: net/minecraft/world/level/material/FluidState/m_76163_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;)V net/minecraft/world/level/material/FluidState/tick (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/world/level/material/FluidState/m_76170_ ()Z net/minecraft/world/level/material/FluidState/isSource ()Z +MD: net/minecraft/world/level/material/FluidState/m_76171_ (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/level/material/FluidState/shouldRenderBackwardUpFace (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/level/material/FluidState/m_76178_ ()Z net/minecraft/world/level/material/FluidState/isEmpty ()Z +MD: net/minecraft/world/level/material/FluidState/m_76179_ (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/phys/Vec3; net/minecraft/world/level/material/FluidState/getFlow (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/phys/Vec3; +MD: net/minecraft/world/level/material/FluidState/m_76182_ ()F net/minecraft/world/level/material/FluidState/getOwnHeight ()F +MD: net/minecraft/world/level/material/FluidState/m_76183_ (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/phys/shapes/VoxelShape; net/minecraft/world/level/material/FluidState/getShape (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/phys/shapes/VoxelShape; +MD: net/minecraft/world/level/material/FluidState/m_76186_ ()I net/minecraft/world/level/material/FluidState/getAmount ()I +MD: net/minecraft/world/level/material/FluidState/m_76187_ ()Z net/minecraft/world/level/material/FluidState/isRandomlyTicking ()Z +MD: net/minecraft/world/level/material/FluidState/m_76188_ ()Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/material/FluidState/createLegacyBlock ()Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/material/FluidState/m_76189_ ()Lnet/minecraft/core/particles/ParticleOptions; net/minecraft/world/level/material/FluidState/getDripParticle ()Lnet/minecraft/core/particles/ParticleOptions; +MD: net/minecraft/world/level/material/FluidState/m_76190_ ()F net/minecraft/world/level/material/FluidState/getExplosionResistance ()F +MD: net/minecraft/world/level/material/Fluids/ ()V net/minecraft/world/level/material/Fluids/ ()V +MD: net/minecraft/world/level/material/Fluids/ ()V net/minecraft/world/level/material/Fluids/ ()V +MD: net/minecraft/world/level/material/Fluids/m_76197_ (Ljava/lang/String;Lnet/minecraft/world/level/material/Fluid;)Lnet/minecraft/world/level/material/Fluid; net/minecraft/world/level/material/Fluids/register (Ljava/lang/String;Lnet/minecraft/world/level/material/Fluid;)Lnet/minecraft/world/level/material/Fluid; +MD: net/minecraft/world/level/material/FogType/ ()V net/minecraft/world/level/material/FogType/ ()V +MD: net/minecraft/world/level/material/FogType/ (Ljava/lang/String;I)V net/minecraft/world/level/material/FogType/ (Ljava/lang/String;I)V +MD: net/minecraft/world/level/material/FogType/m_164524_ ()[Lnet/minecraft/world/level/material/FogType; net/minecraft/world/level/material/FogType/$values ()[Lnet/minecraft/world/level/material/FogType; +MD: net/minecraft/world/level/material/FogType/valueOf (Ljava/lang/String;)Lnet/minecraft/world/level/material/FogType; net/minecraft/world/level/material/FogType/valueOf (Ljava/lang/String;)Lnet/minecraft/world/level/material/FogType; +MD: net/minecraft/world/level/material/FogType/values ()[Lnet/minecraft/world/level/material/FogType; net/minecraft/world/level/material/FogType/values ()[Lnet/minecraft/world/level/material/FogType; +MD: net/minecraft/world/level/material/LavaFluid/ ()V net/minecraft/world/level/material/LavaFluid/ ()V +MD: net/minecraft/world/level/material/LavaFluid/m_142520_ ()Ljava/util/Optional; net/minecraft/world/level/material/LavaFluid/getPickupSound ()Ljava/util/Optional; +MD: net/minecraft/world/level/material/LavaFluid/m_213811_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/material/FluidState;Lnet/minecraft/util/RandomSource;)V net/minecraft/world/level/material/LavaFluid/animateTick (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/material/FluidState;Lnet/minecraft/util/RandomSource;)V +MD: net/minecraft/world/level/material/LavaFluid/m_213812_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/material/FluidState;Lnet/minecraft/util/RandomSource;)V net/minecraft/world/level/material/LavaFluid/randomTick (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/material/FluidState;Lnet/minecraft/util/RandomSource;)V +MD: net/minecraft/world/level/material/LavaFluid/m_5486_ (Lnet/minecraft/world/level/material/FluidState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/material/Fluid;Lnet/minecraft/core/Direction;)Z net/minecraft/world/level/material/LavaFluid/canBeReplacedWith (Lnet/minecraft/world/level/material/FluidState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/material/Fluid;Lnet/minecraft/core/Direction;)Z +MD: net/minecraft/world/level/material/LavaFluid/m_5613_ ()Lnet/minecraft/world/level/material/Fluid; net/minecraft/world/level/material/LavaFluid/getSource ()Lnet/minecraft/world/level/material/Fluid; +MD: net/minecraft/world/level/material/LavaFluid/m_5615_ ()Lnet/minecraft/world/level/material/Fluid; net/minecraft/world/level/material/LavaFluid/getFlowing ()Lnet/minecraft/world/level/material/Fluid; +MD: net/minecraft/world/level/material/LavaFluid/m_5804_ (Lnet/minecraft/world/level/material/FluidState;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/material/LavaFluid/createLegacyBlock (Lnet/minecraft/world/level/material/FluidState;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/material/LavaFluid/m_6212_ (Lnet/minecraft/world/level/material/Fluid;)Z net/minecraft/world/level/material/LavaFluid/isSame (Lnet/minecraft/world/level/material/Fluid;)Z +MD: net/minecraft/world/level/material/LavaFluid/m_6364_ (Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/material/FluidState;)V net/minecraft/world/level/material/LavaFluid/spreadTo (Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/material/FluidState;)V +MD: net/minecraft/world/level/material/LavaFluid/m_6685_ ()Z net/minecraft/world/level/material/LavaFluid/isRandomlyTicking ()Z +MD: net/minecraft/world/level/material/LavaFluid/m_6713_ (Lnet/minecraft/world/level/LevelReader;)I net/minecraft/world/level/material/LavaFluid/getDropOff (Lnet/minecraft/world/level/LevelReader;)I +MD: net/minecraft/world/level/material/LavaFluid/m_6718_ (Lnet/minecraft/world/level/LevelReader;)I net/minecraft/world/level/material/LavaFluid/getTickDelay (Lnet/minecraft/world/level/LevelReader;)I +MD: net/minecraft/world/level/material/LavaFluid/m_6719_ (Lnet/minecraft/world/level/LevelReader;)I net/minecraft/world/level/material/LavaFluid/getSlopeFindDistance (Lnet/minecraft/world/level/LevelReader;)I +MD: net/minecraft/world/level/material/LavaFluid/m_6752_ ()F net/minecraft/world/level/material/LavaFluid/getExplosionResistance ()F +MD: net/minecraft/world/level/material/LavaFluid/m_6760_ (Lnet/minecraft/world/level/Level;)Z net/minecraft/world/level/material/LavaFluid/canConvertToSource (Lnet/minecraft/world/level/Level;)Z +MD: net/minecraft/world/level/material/LavaFluid/m_6859_ ()Lnet/minecraft/world/item/Item; net/minecraft/world/level/material/LavaFluid/getBucket ()Lnet/minecraft/world/item/Item; +MD: net/minecraft/world/level/material/LavaFluid/m_6886_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/material/FluidState;Lnet/minecraft/world/level/material/FluidState;)I net/minecraft/world/level/material/LavaFluid/getSpreadDelay (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/material/FluidState;Lnet/minecraft/world/level/material/FluidState;)I +MD: net/minecraft/world/level/material/LavaFluid/m_7456_ (Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V net/minecraft/world/level/material/LavaFluid/beforeDestroyingBlock (Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V +MD: net/minecraft/world/level/material/LavaFluid/m_76212_ (Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;)V net/minecraft/world/level/material/LavaFluid/fizz (Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/world/level/material/LavaFluid/m_76227_ (Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/level/material/LavaFluid/hasFlammableNeighbours (Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/level/material/LavaFluid/m_76245_ (Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/level/material/LavaFluid/isFlammable (Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/level/material/LavaFluid/m_7792_ ()Lnet/minecraft/core/particles/ParticleOptions; net/minecraft/world/level/material/LavaFluid/getDripParticle ()Lnet/minecraft/core/particles/ParticleOptions; +MD: net/minecraft/world/level/material/LavaFluid$Flowing/ ()V net/minecraft/world/level/material/LavaFluid$Flowing/ ()V +MD: net/minecraft/world/level/material/LavaFluid$Flowing/m_7180_ (Lnet/minecraft/world/level/block/state/StateDefinition$Builder;)V net/minecraft/world/level/material/LavaFluid$Flowing/createFluidStateDefinition (Lnet/minecraft/world/level/block/state/StateDefinition$Builder;)V +MD: net/minecraft/world/level/material/LavaFluid$Flowing/m_7430_ (Lnet/minecraft/world/level/material/FluidState;)I net/minecraft/world/level/material/LavaFluid$Flowing/getAmount (Lnet/minecraft/world/level/material/FluidState;)I +MD: net/minecraft/world/level/material/LavaFluid$Flowing/m_7444_ (Lnet/minecraft/world/level/material/FluidState;)Z net/minecraft/world/level/material/LavaFluid$Flowing/isSource (Lnet/minecraft/world/level/material/FluidState;)Z +MD: net/minecraft/world/level/material/LavaFluid$Source/ ()V net/minecraft/world/level/material/LavaFluid$Source/ ()V +MD: net/minecraft/world/level/material/LavaFluid$Source/m_7430_ (Lnet/minecraft/world/level/material/FluidState;)I net/minecraft/world/level/material/LavaFluid$Source/getAmount (Lnet/minecraft/world/level/material/FluidState;)I +MD: net/minecraft/world/level/material/LavaFluid$Source/m_7444_ (Lnet/minecraft/world/level/material/FluidState;)Z net/minecraft/world/level/material/LavaFluid$Source/isSource (Lnet/minecraft/world/level/material/FluidState;)Z +MD: net/minecraft/world/level/material/MapColor/ ()V net/minecraft/world/level/material/MapColor/ ()V +MD: net/minecraft/world/level/material/MapColor/ (II)V net/minecraft/world/level/material/MapColor/ (II)V +MD: net/minecraft/world/level/material/MapColor/m_284175_ (I)Lnet/minecraft/world/level/material/MapColor; net/minecraft/world/level/material/MapColor/byId (I)Lnet/minecraft/world/level/material/MapColor; +MD: net/minecraft/world/level/material/MapColor/m_284280_ (Lnet/minecraft/world/level/material/MapColor$Brightness;)I net/minecraft/world/level/material/MapColor/calculateRGBColor (Lnet/minecraft/world/level/material/MapColor$Brightness;)I +MD: net/minecraft/world/level/material/MapColor/m_284315_ (I)I net/minecraft/world/level/material/MapColor/getColorFromPackedId (I)I +MD: net/minecraft/world/level/material/MapColor/m_284381_ (I)Lnet/minecraft/world/level/material/MapColor; net/minecraft/world/level/material/MapColor/byIdUnsafe (I)Lnet/minecraft/world/level/material/MapColor; +MD: net/minecraft/world/level/material/MapColor/m_284523_ (Lnet/minecraft/world/level/material/MapColor$Brightness;)B net/minecraft/world/level/material/MapColor/getPackedId (Lnet/minecraft/world/level/material/MapColor$Brightness;)B +MD: net/minecraft/world/level/material/MapColor$Brightness/ ()V net/minecraft/world/level/material/MapColor$Brightness/ ()V +MD: net/minecraft/world/level/material/MapColor$Brightness/ (Ljava/lang/String;III)V net/minecraft/world/level/material/MapColor$Brightness/ (Ljava/lang/String;III)V +MD: net/minecraft/world/level/material/MapColor$Brightness/m_284351_ (I)Lnet/minecraft/world/level/material/MapColor$Brightness; net/minecraft/world/level/material/MapColor$Brightness/byId (I)Lnet/minecraft/world/level/material/MapColor$Brightness; +MD: net/minecraft/world/level/material/MapColor$Brightness/m_284371_ ()[Lnet/minecraft/world/level/material/MapColor$Brightness; net/minecraft/world/level/material/MapColor$Brightness/$values ()[Lnet/minecraft/world/level/material/MapColor$Brightness; +MD: net/minecraft/world/level/material/MapColor$Brightness/m_284389_ (I)Lnet/minecraft/world/level/material/MapColor$Brightness; net/minecraft/world/level/material/MapColor$Brightness/byIdUnsafe (I)Lnet/minecraft/world/level/material/MapColor$Brightness; +MD: net/minecraft/world/level/material/MapColor$Brightness/valueOf (Ljava/lang/String;)Lnet/minecraft/world/level/material/MapColor$Brightness; net/minecraft/world/level/material/MapColor$Brightness/valueOf (Ljava/lang/String;)Lnet/minecraft/world/level/material/MapColor$Brightness; +MD: net/minecraft/world/level/material/MapColor$Brightness/values ()[Lnet/minecraft/world/level/material/MapColor$Brightness; net/minecraft/world/level/material/MapColor$Brightness/values ()[Lnet/minecraft/world/level/material/MapColor$Brightness; +MD: net/minecraft/world/level/material/PushReaction/ ()V net/minecraft/world/level/material/PushReaction/ ()V +MD: net/minecraft/world/level/material/PushReaction/ (Ljava/lang/String;I)V net/minecraft/world/level/material/PushReaction/ (Ljava/lang/String;I)V +MD: net/minecraft/world/level/material/PushReaction/m_164537_ ()[Lnet/minecraft/world/level/material/PushReaction; net/minecraft/world/level/material/PushReaction/$values ()[Lnet/minecraft/world/level/material/PushReaction; +MD: net/minecraft/world/level/material/PushReaction/valueOf (Ljava/lang/String;)Lnet/minecraft/world/level/material/PushReaction; net/minecraft/world/level/material/PushReaction/valueOf (Ljava/lang/String;)Lnet/minecraft/world/level/material/PushReaction; +MD: net/minecraft/world/level/material/PushReaction/values ()[Lnet/minecraft/world/level/material/PushReaction; net/minecraft/world/level/material/PushReaction/values ()[Lnet/minecraft/world/level/material/PushReaction; +MD: net/minecraft/world/level/material/WaterFluid/ ()V net/minecraft/world/level/material/WaterFluid/ ()V +MD: net/minecraft/world/level/material/WaterFluid/m_142520_ ()Ljava/util/Optional; net/minecraft/world/level/material/WaterFluid/getPickupSound ()Ljava/util/Optional; +MD: net/minecraft/world/level/material/WaterFluid/m_213811_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/material/FluidState;Lnet/minecraft/util/RandomSource;)V net/minecraft/world/level/material/WaterFluid/animateTick (Lnet/minecraft/world/level/Level;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/material/FluidState;Lnet/minecraft/util/RandomSource;)V +MD: net/minecraft/world/level/material/WaterFluid/m_5486_ (Lnet/minecraft/world/level/material/FluidState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/material/Fluid;Lnet/minecraft/core/Direction;)Z net/minecraft/world/level/material/WaterFluid/canBeReplacedWith (Lnet/minecraft/world/level/material/FluidState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/material/Fluid;Lnet/minecraft/core/Direction;)Z +MD: net/minecraft/world/level/material/WaterFluid/m_5613_ ()Lnet/minecraft/world/level/material/Fluid; net/minecraft/world/level/material/WaterFluid/getSource ()Lnet/minecraft/world/level/material/Fluid; +MD: net/minecraft/world/level/material/WaterFluid/m_5615_ ()Lnet/minecraft/world/level/material/Fluid; net/minecraft/world/level/material/WaterFluid/getFlowing ()Lnet/minecraft/world/level/material/Fluid; +MD: net/minecraft/world/level/material/WaterFluid/m_5804_ (Lnet/minecraft/world/level/material/FluidState;)Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/material/WaterFluid/createLegacyBlock (Lnet/minecraft/world/level/material/FluidState;)Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/material/WaterFluid/m_6212_ (Lnet/minecraft/world/level/material/Fluid;)Z net/minecraft/world/level/material/WaterFluid/isSame (Lnet/minecraft/world/level/material/Fluid;)Z +MD: net/minecraft/world/level/material/WaterFluid/m_6713_ (Lnet/minecraft/world/level/LevelReader;)I net/minecraft/world/level/material/WaterFluid/getDropOff (Lnet/minecraft/world/level/LevelReader;)I +MD: net/minecraft/world/level/material/WaterFluid/m_6718_ (Lnet/minecraft/world/level/LevelReader;)I net/minecraft/world/level/material/WaterFluid/getTickDelay (Lnet/minecraft/world/level/LevelReader;)I +MD: net/minecraft/world/level/material/WaterFluid/m_6719_ (Lnet/minecraft/world/level/LevelReader;)I net/minecraft/world/level/material/WaterFluid/getSlopeFindDistance (Lnet/minecraft/world/level/LevelReader;)I +MD: net/minecraft/world/level/material/WaterFluid/m_6752_ ()F net/minecraft/world/level/material/WaterFluid/getExplosionResistance ()F +MD: net/minecraft/world/level/material/WaterFluid/m_6760_ (Lnet/minecraft/world/level/Level;)Z net/minecraft/world/level/material/WaterFluid/canConvertToSource (Lnet/minecraft/world/level/Level;)Z +MD: net/minecraft/world/level/material/WaterFluid/m_6859_ ()Lnet/minecraft/world/item/Item; net/minecraft/world/level/material/WaterFluid/getBucket ()Lnet/minecraft/world/item/Item; +MD: net/minecraft/world/level/material/WaterFluid/m_7456_ (Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V net/minecraft/world/level/material/WaterFluid/beforeDestroyingBlock (Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/state/BlockState;)V +MD: net/minecraft/world/level/material/WaterFluid/m_7792_ ()Lnet/minecraft/core/particles/ParticleOptions; net/minecraft/world/level/material/WaterFluid/getDripParticle ()Lnet/minecraft/core/particles/ParticleOptions; +MD: net/minecraft/world/level/material/WaterFluid$Flowing/ ()V net/minecraft/world/level/material/WaterFluid$Flowing/ ()V +MD: net/minecraft/world/level/material/WaterFluid$Flowing/m_7180_ (Lnet/minecraft/world/level/block/state/StateDefinition$Builder;)V net/minecraft/world/level/material/WaterFluid$Flowing/createFluidStateDefinition (Lnet/minecraft/world/level/block/state/StateDefinition$Builder;)V +MD: net/minecraft/world/level/material/WaterFluid$Flowing/m_7430_ (Lnet/minecraft/world/level/material/FluidState;)I net/minecraft/world/level/material/WaterFluid$Flowing/getAmount (Lnet/minecraft/world/level/material/FluidState;)I +MD: net/minecraft/world/level/material/WaterFluid$Flowing/m_7444_ (Lnet/minecraft/world/level/material/FluidState;)Z net/minecraft/world/level/material/WaterFluid$Flowing/isSource (Lnet/minecraft/world/level/material/FluidState;)Z +MD: net/minecraft/world/level/material/WaterFluid$Source/ ()V net/minecraft/world/level/material/WaterFluid$Source/ ()V +MD: net/minecraft/world/level/material/WaterFluid$Source/m_7430_ (Lnet/minecraft/world/level/material/FluidState;)I net/minecraft/world/level/material/WaterFluid$Source/getAmount (Lnet/minecraft/world/level/material/FluidState;)I +MD: net/minecraft/world/level/material/WaterFluid$Source/m_7444_ (Lnet/minecraft/world/level/material/FluidState;)Z net/minecraft/world/level/material/WaterFluid$Source/isSource (Lnet/minecraft/world/level/material/FluidState;)Z +MD: net/minecraft/world/level/pathfinder/AmphibiousNodeEvaluator/ (Z)V net/minecraft/world/level/pathfinder/AmphibiousNodeEvaluator/ (Z)V +MD: net/minecraft/world/level/pathfinder/AmphibiousNodeEvaluator/m_141974_ ()Z net/minecraft/world/level/pathfinder/AmphibiousNodeEvaluator/isAmphibious ()Z +MD: net/minecraft/world/level/pathfinder/AmphibiousNodeEvaluator/m_230610_ (Lnet/minecraft/world/level/pathfinder/Node;Lnet/minecraft/world/level/pathfinder/Node;)Z net/minecraft/world/level/pathfinder/AmphibiousNodeEvaluator/isVerticalNeighborValid (Lnet/minecraft/world/level/pathfinder/Node;Lnet/minecraft/world/level/pathfinder/Node;)Z +MD: net/minecraft/world/level/pathfinder/AmphibiousNodeEvaluator/m_6028_ (Lnet/minecraft/world/level/PathNavigationRegion;Lnet/minecraft/world/entity/Mob;)V net/minecraft/world/level/pathfinder/AmphibiousNodeEvaluator/prepare (Lnet/minecraft/world/level/PathNavigationRegion;Lnet/minecraft/world/entity/Mob;)V +MD: net/minecraft/world/level/pathfinder/AmphibiousNodeEvaluator/m_6065_ ([Lnet/minecraft/world/level/pathfinder/Node;Lnet/minecraft/world/level/pathfinder/Node;)I net/minecraft/world/level/pathfinder/AmphibiousNodeEvaluator/getNeighbors ([Lnet/minecraft/world/level/pathfinder/Node;Lnet/minecraft/world/level/pathfinder/Node;)I +MD: net/minecraft/world/level/pathfinder/AmphibiousNodeEvaluator/m_6802_ ()V net/minecraft/world/level/pathfinder/AmphibiousNodeEvaluator/done ()V +MD: net/minecraft/world/level/pathfinder/AmphibiousNodeEvaluator/m_7171_ ()Lnet/minecraft/world/level/pathfinder/Node; net/minecraft/world/level/pathfinder/AmphibiousNodeEvaluator/getStart ()Lnet/minecraft/world/level/pathfinder/Node; +MD: net/minecraft/world/level/pathfinder/AmphibiousNodeEvaluator/m_7568_ (DDD)Lnet/minecraft/world/level/pathfinder/Target; net/minecraft/world/level/pathfinder/AmphibiousNodeEvaluator/getGoal (DDD)Lnet/minecraft/world/level/pathfinder/Target; +MD: net/minecraft/world/level/pathfinder/AmphibiousNodeEvaluator/m_8086_ (Lnet/minecraft/world/level/BlockGetter;III)Lnet/minecraft/world/level/pathfinder/BlockPathTypes; net/minecraft/world/level/pathfinder/AmphibiousNodeEvaluator/getBlockPathType (Lnet/minecraft/world/level/BlockGetter;III)Lnet/minecraft/world/level/pathfinder/BlockPathTypes; +MD: net/minecraft/world/level/pathfinder/BinaryHeap/ ()V net/minecraft/world/level/pathfinder/BinaryHeap/ ()V +MD: net/minecraft/world/level/pathfinder/BinaryHeap/m_164680_ ()Lnet/minecraft/world/level/pathfinder/Node; net/minecraft/world/level/pathfinder/BinaryHeap/peek ()Lnet/minecraft/world/level/pathfinder/Node; +MD: net/minecraft/world/level/pathfinder/BinaryHeap/m_164681_ (Lnet/minecraft/world/level/pathfinder/Node;)V net/minecraft/world/level/pathfinder/BinaryHeap/remove (Lnet/minecraft/world/level/pathfinder/Node;)V +MD: net/minecraft/world/level/pathfinder/BinaryHeap/m_164683_ ()I net/minecraft/world/level/pathfinder/BinaryHeap/size ()I +MD: net/minecraft/world/level/pathfinder/BinaryHeap/m_164684_ ()[Lnet/minecraft/world/level/pathfinder/Node; net/minecraft/world/level/pathfinder/BinaryHeap/getHeap ()[Lnet/minecraft/world/level/pathfinder/Node; +MD: net/minecraft/world/level/pathfinder/BinaryHeap/m_77081_ ()V net/minecraft/world/level/pathfinder/BinaryHeap/clear ()V +MD: net/minecraft/world/level/pathfinder/BinaryHeap/m_77082_ (I)V net/minecraft/world/level/pathfinder/BinaryHeap/upHeap (I)V +MD: net/minecraft/world/level/pathfinder/BinaryHeap/m_77084_ (Lnet/minecraft/world/level/pathfinder/Node;)Lnet/minecraft/world/level/pathfinder/Node; net/minecraft/world/level/pathfinder/BinaryHeap/insert (Lnet/minecraft/world/level/pathfinder/Node;)Lnet/minecraft/world/level/pathfinder/Node; +MD: net/minecraft/world/level/pathfinder/BinaryHeap/m_77086_ (Lnet/minecraft/world/level/pathfinder/Node;F)V net/minecraft/world/level/pathfinder/BinaryHeap/changeCost (Lnet/minecraft/world/level/pathfinder/Node;F)V +MD: net/minecraft/world/level/pathfinder/BinaryHeap/m_77089_ (I)V net/minecraft/world/level/pathfinder/BinaryHeap/downHeap (I)V +MD: net/minecraft/world/level/pathfinder/BinaryHeap/m_77091_ ()Lnet/minecraft/world/level/pathfinder/Node; net/minecraft/world/level/pathfinder/BinaryHeap/pop ()Lnet/minecraft/world/level/pathfinder/Node; +MD: net/minecraft/world/level/pathfinder/BinaryHeap/m_77092_ ()Z net/minecraft/world/level/pathfinder/BinaryHeap/isEmpty ()Z +MD: net/minecraft/world/level/pathfinder/BlockPathTypes/ ()V net/minecraft/world/level/pathfinder/BlockPathTypes/ ()V +MD: net/minecraft/world/level/pathfinder/BlockPathTypes/ (Ljava/lang/String;IF)V net/minecraft/world/level/pathfinder/BlockPathTypes/ (Ljava/lang/String;IF)V +MD: net/minecraft/world/level/pathfinder/BlockPathTypes/m_164686_ ()[Lnet/minecraft/world/level/pathfinder/BlockPathTypes; net/minecraft/world/level/pathfinder/BlockPathTypes/$values ()[Lnet/minecraft/world/level/pathfinder/BlockPathTypes; +MD: net/minecraft/world/level/pathfinder/BlockPathTypes/m_77124_ ()F net/minecraft/world/level/pathfinder/BlockPathTypes/getMalus ()F +MD: net/minecraft/world/level/pathfinder/BlockPathTypes/valueOf (Ljava/lang/String;)Lnet/minecraft/world/level/pathfinder/BlockPathTypes; net/minecraft/world/level/pathfinder/BlockPathTypes/valueOf (Ljava/lang/String;)Lnet/minecraft/world/level/pathfinder/BlockPathTypes; +MD: net/minecraft/world/level/pathfinder/BlockPathTypes/values ()[Lnet/minecraft/world/level/pathfinder/BlockPathTypes; net/minecraft/world/level/pathfinder/BlockPathTypes/values ()[Lnet/minecraft/world/level/pathfinder/BlockPathTypes; +MD: net/minecraft/world/level/pathfinder/FlyNodeEvaluator/ ()V net/minecraft/world/level/pathfinder/FlyNodeEvaluator/ ()V +MD: net/minecraft/world/level/pathfinder/FlyNodeEvaluator/m_164693_ (III)Lnet/minecraft/world/level/pathfinder/BlockPathTypes; net/minecraft/world/level/pathfinder/FlyNodeEvaluator/getCachedBlockPathType (III)Lnet/minecraft/world/level/pathfinder/BlockPathTypes; +MD: net/minecraft/world/level/pathfinder/FlyNodeEvaluator/m_262494_ (Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/level/pathfinder/FlyNodeEvaluator/canStartAt (Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/level/pathfinder/FlyNodeEvaluator/m_262834_ (III)Lnet/minecraft/world/level/pathfinder/Node; net/minecraft/world/level/pathfinder/FlyNodeEvaluator/findAcceptedNode (III)Lnet/minecraft/world/level/pathfinder/Node; +MD: net/minecraft/world/level/pathfinder/FlyNodeEvaluator/m_262869_ (Lnet/minecraft/world/entity/Mob;)Ljava/lang/Iterable; net/minecraft/world/level/pathfinder/FlyNodeEvaluator/iteratePathfindingStartNodeCandidatePositions (Lnet/minecraft/world/entity/Mob;)Ljava/lang/Iterable; +MD: net/minecraft/world/level/pathfinder/FlyNodeEvaluator/m_264025_ (IIIJ)Lnet/minecraft/world/level/pathfinder/BlockPathTypes; net/minecraft/world/level/pathfinder/FlyNodeEvaluator/lambda$getCachedBlockPathType$0 (IIIJ)Lnet/minecraft/world/level/pathfinder/BlockPathTypes; +MD: net/minecraft/world/level/pathfinder/FlyNodeEvaluator/m_6028_ (Lnet/minecraft/world/level/PathNavigationRegion;Lnet/minecraft/world/entity/Mob;)V net/minecraft/world/level/pathfinder/FlyNodeEvaluator/prepare (Lnet/minecraft/world/level/PathNavigationRegion;Lnet/minecraft/world/entity/Mob;)V +MD: net/minecraft/world/level/pathfinder/FlyNodeEvaluator/m_6065_ ([Lnet/minecraft/world/level/pathfinder/Node;Lnet/minecraft/world/level/pathfinder/Node;)I net/minecraft/world/level/pathfinder/FlyNodeEvaluator/getNeighbors ([Lnet/minecraft/world/level/pathfinder/Node;Lnet/minecraft/world/level/pathfinder/Node;)I +MD: net/minecraft/world/level/pathfinder/FlyNodeEvaluator/m_6802_ ()V net/minecraft/world/level/pathfinder/FlyNodeEvaluator/done ()V +MD: net/minecraft/world/level/pathfinder/FlyNodeEvaluator/m_7171_ ()Lnet/minecraft/world/level/pathfinder/Node; net/minecraft/world/level/pathfinder/FlyNodeEvaluator/getStart ()Lnet/minecraft/world/level/pathfinder/Node; +MD: net/minecraft/world/level/pathfinder/FlyNodeEvaluator/m_7209_ (Lnet/minecraft/world/level/BlockGetter;IIILnet/minecraft/world/entity/Mob;)Lnet/minecraft/world/level/pathfinder/BlockPathTypes; net/minecraft/world/level/pathfinder/FlyNodeEvaluator/getBlockPathType (Lnet/minecraft/world/level/BlockGetter;IIILnet/minecraft/world/entity/Mob;)Lnet/minecraft/world/level/pathfinder/BlockPathTypes; +MD: net/minecraft/world/level/pathfinder/FlyNodeEvaluator/m_7568_ (DDD)Lnet/minecraft/world/level/pathfinder/Target; net/minecraft/world/level/pathfinder/FlyNodeEvaluator/getGoal (DDD)Lnet/minecraft/world/level/pathfinder/Target; +MD: net/minecraft/world/level/pathfinder/FlyNodeEvaluator/m_77263_ (Lnet/minecraft/world/level/pathfinder/Node;)Z net/minecraft/world/level/pathfinder/FlyNodeEvaluator/hasMalus (Lnet/minecraft/world/level/pathfinder/Node;)Z +MD: net/minecraft/world/level/pathfinder/FlyNodeEvaluator/m_77269_ (Lnet/minecraft/world/level/pathfinder/Node;)Z net/minecraft/world/level/pathfinder/FlyNodeEvaluator/isOpen (Lnet/minecraft/world/level/pathfinder/Node;)Z +MD: net/minecraft/world/level/pathfinder/FlyNodeEvaluator/m_8086_ (Lnet/minecraft/world/level/BlockGetter;III)Lnet/minecraft/world/level/pathfinder/BlockPathTypes; net/minecraft/world/level/pathfinder/FlyNodeEvaluator/getBlockPathType (Lnet/minecraft/world/level/BlockGetter;III)Lnet/minecraft/world/level/pathfinder/BlockPathTypes; +MD: net/minecraft/world/level/pathfinder/Node/ (III)V net/minecraft/world/level/pathfinder/Node/ (III)V +MD: net/minecraft/world/level/pathfinder/Node/equals (Ljava/lang/Object;)Z net/minecraft/world/level/pathfinder/Node/equals (Ljava/lang/Object;)Z +MD: net/minecraft/world/level/pathfinder/Node/hashCode ()I net/minecraft/world/level/pathfinder/Node/hashCode ()I +MD: net/minecraft/world/level/pathfinder/Node/m_164697_ (Lnet/minecraft/core/BlockPos;)F net/minecraft/world/level/pathfinder/Node/distanceTo (Lnet/minecraft/core/BlockPos;)F +MD: net/minecraft/world/level/pathfinder/Node/m_164699_ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/world/level/pathfinder/Node/writeToStream (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/world/level/pathfinder/Node/m_164701_ ()Lnet/minecraft/world/phys/Vec3; net/minecraft/world/level/pathfinder/Node/asVec3 ()Lnet/minecraft/world/phys/Vec3; +MD: net/minecraft/world/level/pathfinder/Node/m_164702_ (Lnet/minecraft/core/BlockPos;)F net/minecraft/world/level/pathfinder/Node/distanceToSqr (Lnet/minecraft/core/BlockPos;)F +MD: net/minecraft/world/level/pathfinder/Node/m_230613_ (Lnet/minecraft/world/level/pathfinder/Node;)F net/minecraft/world/level/pathfinder/Node/distanceToXZ (Lnet/minecraft/world/level/pathfinder/Node;)F +MD: net/minecraft/world/level/pathfinder/Node/m_262841_ (Lnet/minecraft/network/FriendlyByteBuf;Lnet/minecraft/world/level/pathfinder/Node;)V net/minecraft/world/level/pathfinder/Node/readContents (Lnet/minecraft/network/FriendlyByteBuf;Lnet/minecraft/world/level/pathfinder/Node;)V +MD: net/minecraft/world/level/pathfinder/Node/m_77288_ ()Lnet/minecraft/core/BlockPos; net/minecraft/world/level/pathfinder/Node/asBlockPos ()Lnet/minecraft/core/BlockPos; +MD: net/minecraft/world/level/pathfinder/Node/m_77289_ (III)Lnet/minecraft/world/level/pathfinder/Node; net/minecraft/world/level/pathfinder/Node/cloneAndMove (III)Lnet/minecraft/world/level/pathfinder/Node; +MD: net/minecraft/world/level/pathfinder/Node/m_77293_ (Lnet/minecraft/world/level/pathfinder/Node;)F net/minecraft/world/level/pathfinder/Node/distanceTo (Lnet/minecraft/world/level/pathfinder/Node;)F +MD: net/minecraft/world/level/pathfinder/Node/m_77295_ (III)I net/minecraft/world/level/pathfinder/Node/createHash (III)I +MD: net/minecraft/world/level/pathfinder/Node/m_77299_ (Lnet/minecraft/world/level/pathfinder/Node;)F net/minecraft/world/level/pathfinder/Node/distanceToSqr (Lnet/minecraft/world/level/pathfinder/Node;)F +MD: net/minecraft/world/level/pathfinder/Node/m_77301_ (Lnet/minecraft/network/FriendlyByteBuf;)Lnet/minecraft/world/level/pathfinder/Node; net/minecraft/world/level/pathfinder/Node/createFromStream (Lnet/minecraft/network/FriendlyByteBuf;)Lnet/minecraft/world/level/pathfinder/Node; +MD: net/minecraft/world/level/pathfinder/Node/m_77303_ ()Z net/minecraft/world/level/pathfinder/Node/inOpenSet ()Z +MD: net/minecraft/world/level/pathfinder/Node/m_77304_ (Lnet/minecraft/world/level/pathfinder/Node;)F net/minecraft/world/level/pathfinder/Node/distanceManhattan (Lnet/minecraft/world/level/pathfinder/Node;)F +MD: net/minecraft/world/level/pathfinder/Node/m_77306_ (Lnet/minecraft/core/BlockPos;)F net/minecraft/world/level/pathfinder/Node/distanceManhattan (Lnet/minecraft/core/BlockPos;)F +MD: net/minecraft/world/level/pathfinder/Node/toString ()Ljava/lang/String; net/minecraft/world/level/pathfinder/Node/toString ()Ljava/lang/String; +MD: net/minecraft/world/level/pathfinder/NodeEvaluator/ ()V net/minecraft/world/level/pathfinder/NodeEvaluator/ ()V +MD: net/minecraft/world/level/pathfinder/NodeEvaluator/m_230615_ (Lnet/minecraft/world/level/pathfinder/Node;)Lnet/minecraft/world/level/pathfinder/Target; net/minecraft/world/level/pathfinder/NodeEvaluator/getTargetFromNode (Lnet/minecraft/world/level/pathfinder/Node;)Lnet/minecraft/world/level/pathfinder/Target; +MD: net/minecraft/world/level/pathfinder/NodeEvaluator/m_254850_ (Z)V net/minecraft/world/level/pathfinder/NodeEvaluator/setCanWalkOverFences (Z)V +MD: net/minecraft/world/level/pathfinder/NodeEvaluator/m_255100_ ()Z net/minecraft/world/level/pathfinder/NodeEvaluator/canWalkOverFences ()Z +MD: net/minecraft/world/level/pathfinder/NodeEvaluator/m_5676_ (III)Lnet/minecraft/world/level/pathfinder/Node; net/minecraft/world/level/pathfinder/NodeEvaluator/getNode (III)Lnet/minecraft/world/level/pathfinder/Node; +MD: net/minecraft/world/level/pathfinder/NodeEvaluator/m_6028_ (Lnet/minecraft/world/level/PathNavigationRegion;Lnet/minecraft/world/entity/Mob;)V net/minecraft/world/level/pathfinder/NodeEvaluator/prepare (Lnet/minecraft/world/level/PathNavigationRegion;Lnet/minecraft/world/entity/Mob;)V +MD: net/minecraft/world/level/pathfinder/NodeEvaluator/m_6065_ ([Lnet/minecraft/world/level/pathfinder/Node;Lnet/minecraft/world/level/pathfinder/Node;)I net/minecraft/world/level/pathfinder/NodeEvaluator/getNeighbors ([Lnet/minecraft/world/level/pathfinder/Node;Lnet/minecraft/world/level/pathfinder/Node;)I +MD: net/minecraft/world/level/pathfinder/NodeEvaluator/m_6802_ ()V net/minecraft/world/level/pathfinder/NodeEvaluator/done ()V +MD: net/minecraft/world/level/pathfinder/NodeEvaluator/m_7171_ ()Lnet/minecraft/world/level/pathfinder/Node; net/minecraft/world/level/pathfinder/NodeEvaluator/getStart ()Lnet/minecraft/world/level/pathfinder/Node; +MD: net/minecraft/world/level/pathfinder/NodeEvaluator/m_7209_ (Lnet/minecraft/world/level/BlockGetter;IIILnet/minecraft/world/entity/Mob;)Lnet/minecraft/world/level/pathfinder/BlockPathTypes; net/minecraft/world/level/pathfinder/NodeEvaluator/getBlockPathType (Lnet/minecraft/world/level/BlockGetter;IIILnet/minecraft/world/entity/Mob;)Lnet/minecraft/world/level/pathfinder/BlockPathTypes; +MD: net/minecraft/world/level/pathfinder/NodeEvaluator/m_7568_ (DDD)Lnet/minecraft/world/level/pathfinder/Target; net/minecraft/world/level/pathfinder/NodeEvaluator/getGoal (DDD)Lnet/minecraft/world/level/pathfinder/Target; +MD: net/minecraft/world/level/pathfinder/NodeEvaluator/m_77328_ (IIII)Lnet/minecraft/world/level/pathfinder/Node; net/minecraft/world/level/pathfinder/NodeEvaluator/lambda$getNode$0 (IIII)Lnet/minecraft/world/level/pathfinder/Node; +MD: net/minecraft/world/level/pathfinder/NodeEvaluator/m_77349_ (Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/pathfinder/Node; net/minecraft/world/level/pathfinder/NodeEvaluator/getNode (Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/pathfinder/Node; +MD: net/minecraft/world/level/pathfinder/NodeEvaluator/m_77351_ (Z)V net/minecraft/world/level/pathfinder/NodeEvaluator/setCanPassDoors (Z)V +MD: net/minecraft/world/level/pathfinder/NodeEvaluator/m_77355_ (Z)V net/minecraft/world/level/pathfinder/NodeEvaluator/setCanOpenDoors (Z)V +MD: net/minecraft/world/level/pathfinder/NodeEvaluator/m_77357_ ()Z net/minecraft/world/level/pathfinder/NodeEvaluator/canPassDoors ()Z +MD: net/minecraft/world/level/pathfinder/NodeEvaluator/m_77358_ (Z)V net/minecraft/world/level/pathfinder/NodeEvaluator/setCanFloat (Z)V +MD: net/minecraft/world/level/pathfinder/NodeEvaluator/m_77360_ ()Z net/minecraft/world/level/pathfinder/NodeEvaluator/canOpenDoors ()Z +MD: net/minecraft/world/level/pathfinder/NodeEvaluator/m_77361_ ()Z net/minecraft/world/level/pathfinder/NodeEvaluator/canFloat ()Z +MD: net/minecraft/world/level/pathfinder/NodeEvaluator/m_8086_ (Lnet/minecraft/world/level/BlockGetter;III)Lnet/minecraft/world/level/pathfinder/BlockPathTypes; net/minecraft/world/level/pathfinder/NodeEvaluator/getBlockPathType (Lnet/minecraft/world/level/BlockGetter;III)Lnet/minecraft/world/level/pathfinder/BlockPathTypes; +MD: net/minecraft/world/level/pathfinder/Path/ (Ljava/util/List;Lnet/minecraft/core/BlockPos;Z)V net/minecraft/world/level/pathfinder/Path/ (Ljava/util/List;Lnet/minecraft/core/BlockPos;Z)V +MD: net/minecraft/world/level/pathfinder/Path/m_164704_ (Lnet/minecraft/network/FriendlyByteBuf;)V net/minecraft/world/level/pathfinder/Path/writeToStream (Lnet/minecraft/network/FriendlyByteBuf;)V +MD: net/minecraft/world/level/pathfinder/Path/m_164706_ (Lnet/minecraft/network/FriendlyByteBuf;Lnet/minecraft/world/level/pathfinder/Target;)V net/minecraft/world/level/pathfinder/Path/lambda$writeToStream$0 (Lnet/minecraft/network/FriendlyByteBuf;Lnet/minecraft/world/level/pathfinder/Target;)V +MD: net/minecraft/world/level/pathfinder/Path/m_164709_ ([Lnet/minecraft/world/level/pathfinder/Node;[Lnet/minecraft/world/level/pathfinder/Node;Ljava/util/Set;)V net/minecraft/world/level/pathfinder/Path/setDebug ([Lnet/minecraft/world/level/pathfinder/Node;[Lnet/minecraft/world/level/pathfinder/Node;Ljava/util/Set;)V +MD: net/minecraft/world/level/pathfinder/Path/m_77374_ ()V net/minecraft/world/level/pathfinder/Path/advance ()V +MD: net/minecraft/world/level/pathfinder/Path/m_77375_ (I)Lnet/minecraft/world/level/pathfinder/Node; net/minecraft/world/level/pathfinder/Path/getNode (I)Lnet/minecraft/world/level/pathfinder/Node; +MD: net/minecraft/world/level/pathfinder/Path/m_77377_ (ILnet/minecraft/world/level/pathfinder/Node;)V net/minecraft/world/level/pathfinder/Path/replaceNode (ILnet/minecraft/world/level/pathfinder/Node;)V +MD: net/minecraft/world/level/pathfinder/Path/m_77380_ (Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/world/phys/Vec3; net/minecraft/world/level/pathfinder/Path/getNextEntityPos (Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/world/phys/Vec3; +MD: net/minecraft/world/level/pathfinder/Path/m_77382_ (Lnet/minecraft/world/entity/Entity;I)Lnet/minecraft/world/phys/Vec3; net/minecraft/world/level/pathfinder/Path/getEntityPosAtNode (Lnet/minecraft/world/entity/Entity;I)Lnet/minecraft/world/phys/Vec3; +MD: net/minecraft/world/level/pathfinder/Path/m_77385_ (Lnet/minecraft/world/level/pathfinder/Path;)Z net/minecraft/world/level/pathfinder/Path/sameAs (Lnet/minecraft/world/level/pathfinder/Path;)Z +MD: net/minecraft/world/level/pathfinder/Path/m_77387_ ()Z net/minecraft/world/level/pathfinder/Path/notStarted ()Z +MD: net/minecraft/world/level/pathfinder/Path/m_77388_ (I)V net/minecraft/world/level/pathfinder/Path/truncateNodes (I)V +MD: net/minecraft/world/level/pathfinder/Path/m_77390_ (Lnet/minecraft/network/FriendlyByteBuf;)Lnet/minecraft/world/level/pathfinder/Path; net/minecraft/world/level/pathfinder/Path/createFromStream (Lnet/minecraft/network/FriendlyByteBuf;)Lnet/minecraft/world/level/pathfinder/Path; +MD: net/minecraft/world/level/pathfinder/Path/m_77392_ ()Z net/minecraft/world/level/pathfinder/Path/isDone ()Z +MD: net/minecraft/world/level/pathfinder/Path/m_77393_ (I)V net/minecraft/world/level/pathfinder/Path/setNextNodeIndex (I)V +MD: net/minecraft/world/level/pathfinder/Path/m_77395_ ()Lnet/minecraft/world/level/pathfinder/Node; net/minecraft/world/level/pathfinder/Path/getEndNode ()Lnet/minecraft/world/level/pathfinder/Node; +MD: net/minecraft/world/level/pathfinder/Path/m_77396_ (I)Lnet/minecraft/core/BlockPos; net/minecraft/world/level/pathfinder/Path/getNodePos (I)Lnet/minecraft/core/BlockPos; +MD: net/minecraft/world/level/pathfinder/Path/m_77398_ ()I net/minecraft/world/level/pathfinder/Path/getNodeCount ()I +MD: net/minecraft/world/level/pathfinder/Path/m_77399_ ()I net/minecraft/world/level/pathfinder/Path/getNextNodeIndex ()I +MD: net/minecraft/world/level/pathfinder/Path/m_77400_ ()Lnet/minecraft/core/BlockPos; net/minecraft/world/level/pathfinder/Path/getNextNodePos ()Lnet/minecraft/core/BlockPos; +MD: net/minecraft/world/level/pathfinder/Path/m_77401_ ()Lnet/minecraft/world/level/pathfinder/Node; net/minecraft/world/level/pathfinder/Path/getNextNode ()Lnet/minecraft/world/level/pathfinder/Node; +MD: net/minecraft/world/level/pathfinder/Path/m_77402_ ()Lnet/minecraft/world/level/pathfinder/Node; net/minecraft/world/level/pathfinder/Path/getPreviousNode ()Lnet/minecraft/world/level/pathfinder/Node; +MD: net/minecraft/world/level/pathfinder/Path/m_77403_ ()Z net/minecraft/world/level/pathfinder/Path/canReach ()Z +MD: net/minecraft/world/level/pathfinder/Path/m_77404_ ()[Lnet/minecraft/world/level/pathfinder/Node; net/minecraft/world/level/pathfinder/Path/getOpenSet ()[Lnet/minecraft/world/level/pathfinder/Node; +MD: net/minecraft/world/level/pathfinder/Path/m_77405_ ()[Lnet/minecraft/world/level/pathfinder/Node; net/minecraft/world/level/pathfinder/Path/getClosedSet ()[Lnet/minecraft/world/level/pathfinder/Node; +MD: net/minecraft/world/level/pathfinder/Path/m_77406_ ()Lnet/minecraft/core/BlockPos; net/minecraft/world/level/pathfinder/Path/getTarget ()Lnet/minecraft/core/BlockPos; +MD: net/minecraft/world/level/pathfinder/Path/m_77407_ ()F net/minecraft/world/level/pathfinder/Path/getDistToTarget ()F +MD: net/minecraft/world/level/pathfinder/Path/toString ()Ljava/lang/String; net/minecraft/world/level/pathfinder/Path/toString ()Ljava/lang/String; +MD: net/minecraft/world/level/pathfinder/PathComputationType/ ()V net/minecraft/world/level/pathfinder/PathComputationType/ ()V +MD: net/minecraft/world/level/pathfinder/PathComputationType/ (Ljava/lang/String;I)V net/minecraft/world/level/pathfinder/PathComputationType/ (Ljava/lang/String;I)V +MD: net/minecraft/world/level/pathfinder/PathComputationType/m_164713_ ()[Lnet/minecraft/world/level/pathfinder/PathComputationType; net/minecraft/world/level/pathfinder/PathComputationType/$values ()[Lnet/minecraft/world/level/pathfinder/PathComputationType; +MD: net/minecraft/world/level/pathfinder/PathComputationType/valueOf (Ljava/lang/String;)Lnet/minecraft/world/level/pathfinder/PathComputationType; net/minecraft/world/level/pathfinder/PathComputationType/valueOf (Ljava/lang/String;)Lnet/minecraft/world/level/pathfinder/PathComputationType; +MD: net/minecraft/world/level/pathfinder/PathComputationType/values ()[Lnet/minecraft/world/level/pathfinder/PathComputationType; net/minecraft/world/level/pathfinder/PathComputationType/values ()[Lnet/minecraft/world/level/pathfinder/PathComputationType; +MD: net/minecraft/world/level/pathfinder/PathFinder/ (Lnet/minecraft/world/level/pathfinder/NodeEvaluator;I)V net/minecraft/world/level/pathfinder/PathFinder/ (Lnet/minecraft/world/level/pathfinder/NodeEvaluator;I)V +MD: net/minecraft/world/level/pathfinder/PathFinder/m_164716_ (Lnet/minecraft/util/profiling/ProfilerFiller;Lnet/minecraft/world/level/pathfinder/Node;Ljava/util/Map;FIF)Lnet/minecraft/world/level/pathfinder/Path; net/minecraft/world/level/pathfinder/PathFinder/findPath (Lnet/minecraft/util/profiling/ProfilerFiller;Lnet/minecraft/world/level/pathfinder/Node;Ljava/util/Map;FIF)Lnet/minecraft/world/level/pathfinder/Path; +MD: net/minecraft/world/level/pathfinder/PathFinder/m_214208_ (Lnet/minecraft/world/level/pathfinder/Node;Lnet/minecraft/world/level/pathfinder/Node;)F net/minecraft/world/level/pathfinder/PathFinder/distance (Lnet/minecraft/world/level/pathfinder/Node;Lnet/minecraft/world/level/pathfinder/Node;)F +MD: net/minecraft/world/level/pathfinder/PathFinder/m_77427_ (Lnet/minecraft/world/level/PathNavigationRegion;Lnet/minecraft/world/entity/Mob;Ljava/util/Set;FIF)Lnet/minecraft/world/level/pathfinder/Path; net/minecraft/world/level/pathfinder/PathFinder/findPath (Lnet/minecraft/world/level/PathNavigationRegion;Lnet/minecraft/world/entity/Mob;Ljava/util/Set;FIF)Lnet/minecraft/world/level/pathfinder/Path; +MD: net/minecraft/world/level/pathfinder/PathFinder/m_77434_ (Lnet/minecraft/world/level/pathfinder/Node;Lnet/minecraft/core/BlockPos;Z)Lnet/minecraft/world/level/pathfinder/Path; net/minecraft/world/level/pathfinder/PathFinder/reconstructPath (Lnet/minecraft/world/level/pathfinder/Node;Lnet/minecraft/core/BlockPos;Z)Lnet/minecraft/world/level/pathfinder/Path; +MD: net/minecraft/world/level/pathfinder/PathFinder/m_77444_ (Lnet/minecraft/world/level/pathfinder/Node;Ljava/util/Set;)F net/minecraft/world/level/pathfinder/PathFinder/getBestH (Lnet/minecraft/world/level/pathfinder/Node;Ljava/util/Set;)F +MD: net/minecraft/world/level/pathfinder/PathFinder/m_77447_ (Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/pathfinder/Target; net/minecraft/world/level/pathfinder/PathFinder/lambda$findPath$0 (Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/pathfinder/Target; +MD: net/minecraft/world/level/pathfinder/PathFinder/m_77449_ (Ljava/util/Map;Lnet/minecraft/world/level/pathfinder/Target;)Lnet/minecraft/world/level/pathfinder/Path; net/minecraft/world/level/pathfinder/PathFinder/lambda$findPath$2 (Ljava/util/Map;Lnet/minecraft/world/level/pathfinder/Target;)Lnet/minecraft/world/level/pathfinder/Path; +MD: net/minecraft/world/level/pathfinder/PathFinder/m_77452_ (Ljava/util/Map;Lnet/minecraft/world/level/pathfinder/Target;)Lnet/minecraft/world/level/pathfinder/Path; net/minecraft/world/level/pathfinder/PathFinder/lambda$findPath$1 (Ljava/util/Map;Lnet/minecraft/world/level/pathfinder/Target;)Lnet/minecraft/world/level/pathfinder/Path; +MD: net/minecraft/world/level/pathfinder/SwimNodeEvaluator/ (Z)V net/minecraft/world/level/pathfinder/SwimNodeEvaluator/ (Z)V +MD: net/minecraft/world/level/pathfinder/SwimNodeEvaluator/m_192953_ (IIIJ)Lnet/minecraft/world/level/pathfinder/BlockPathTypes; net/minecraft/world/level/pathfinder/SwimNodeEvaluator/lambda$getCachedBlockType$0 (IIIJ)Lnet/minecraft/world/level/pathfinder/BlockPathTypes; +MD: net/minecraft/world/level/pathfinder/SwimNodeEvaluator/m_192961_ (Lnet/minecraft/world/level/pathfinder/Node;)Z net/minecraft/world/level/pathfinder/SwimNodeEvaluator/isNodeValid (Lnet/minecraft/world/level/pathfinder/Node;)Z +MD: net/minecraft/world/level/pathfinder/SwimNodeEvaluator/m_192963_ (Lnet/minecraft/world/level/pathfinder/Node;Lnet/minecraft/world/level/pathfinder/Node;Lnet/minecraft/world/level/pathfinder/Node;)Z net/minecraft/world/level/pathfinder/SwimNodeEvaluator/isDiagonalNodeValid (Lnet/minecraft/world/level/pathfinder/Node;Lnet/minecraft/world/level/pathfinder/Node;Lnet/minecraft/world/level/pathfinder/Node;)Z +MD: net/minecraft/world/level/pathfinder/SwimNodeEvaluator/m_192967_ (III)Lnet/minecraft/world/level/pathfinder/BlockPathTypes; net/minecraft/world/level/pathfinder/SwimNodeEvaluator/getCachedBlockType (III)Lnet/minecraft/world/level/pathfinder/BlockPathTypes; +MD: net/minecraft/world/level/pathfinder/SwimNodeEvaluator/m_262844_ (III)Lnet/minecraft/world/level/pathfinder/Node; net/minecraft/world/level/pathfinder/SwimNodeEvaluator/findAcceptedNode (III)Lnet/minecraft/world/level/pathfinder/Node; +MD: net/minecraft/world/level/pathfinder/SwimNodeEvaluator/m_6028_ (Lnet/minecraft/world/level/PathNavigationRegion;Lnet/minecraft/world/entity/Mob;)V net/minecraft/world/level/pathfinder/SwimNodeEvaluator/prepare (Lnet/minecraft/world/level/PathNavigationRegion;Lnet/minecraft/world/entity/Mob;)V +MD: net/minecraft/world/level/pathfinder/SwimNodeEvaluator/m_6065_ ([Lnet/minecraft/world/level/pathfinder/Node;Lnet/minecraft/world/level/pathfinder/Node;)I net/minecraft/world/level/pathfinder/SwimNodeEvaluator/getNeighbors ([Lnet/minecraft/world/level/pathfinder/Node;Lnet/minecraft/world/level/pathfinder/Node;)I +MD: net/minecraft/world/level/pathfinder/SwimNodeEvaluator/m_6802_ ()V net/minecraft/world/level/pathfinder/SwimNodeEvaluator/done ()V +MD: net/minecraft/world/level/pathfinder/SwimNodeEvaluator/m_7171_ ()Lnet/minecraft/world/level/pathfinder/Node; net/minecraft/world/level/pathfinder/SwimNodeEvaluator/getStart ()Lnet/minecraft/world/level/pathfinder/Node; +MD: net/minecraft/world/level/pathfinder/SwimNodeEvaluator/m_7209_ (Lnet/minecraft/world/level/BlockGetter;IIILnet/minecraft/world/entity/Mob;)Lnet/minecraft/world/level/pathfinder/BlockPathTypes; net/minecraft/world/level/pathfinder/SwimNodeEvaluator/getBlockPathType (Lnet/minecraft/world/level/BlockGetter;IIILnet/minecraft/world/entity/Mob;)Lnet/minecraft/world/level/pathfinder/BlockPathTypes; +MD: net/minecraft/world/level/pathfinder/SwimNodeEvaluator/m_7568_ (DDD)Lnet/minecraft/world/level/pathfinder/Target; net/minecraft/world/level/pathfinder/SwimNodeEvaluator/getGoal (DDD)Lnet/minecraft/world/level/pathfinder/Target; +MD: net/minecraft/world/level/pathfinder/SwimNodeEvaluator/m_8086_ (Lnet/minecraft/world/level/BlockGetter;III)Lnet/minecraft/world/level/pathfinder/BlockPathTypes; net/minecraft/world/level/pathfinder/SwimNodeEvaluator/getBlockPathType (Lnet/minecraft/world/level/BlockGetter;III)Lnet/minecraft/world/level/pathfinder/BlockPathTypes; +MD: net/minecraft/world/level/pathfinder/Target/ (III)V net/minecraft/world/level/pathfinder/Target/ (III)V +MD: net/minecraft/world/level/pathfinder/Target/ (Lnet/minecraft/world/level/pathfinder/Node;)V net/minecraft/world/level/pathfinder/Target/ (Lnet/minecraft/world/level/pathfinder/Node;)V +MD: net/minecraft/world/level/pathfinder/Target/m_164723_ ()Z net/minecraft/world/level/pathfinder/Target/isReached ()Z +MD: net/minecraft/world/level/pathfinder/Target/m_77503_ (FLnet/minecraft/world/level/pathfinder/Node;)V net/minecraft/world/level/pathfinder/Target/updateBest (FLnet/minecraft/world/level/pathfinder/Node;)V +MD: net/minecraft/world/level/pathfinder/Target/m_77506_ (Lnet/minecraft/network/FriendlyByteBuf;)Lnet/minecraft/world/level/pathfinder/Target; net/minecraft/world/level/pathfinder/Target/createFromStream (Lnet/minecraft/network/FriendlyByteBuf;)Lnet/minecraft/world/level/pathfinder/Target; +MD: net/minecraft/world/level/pathfinder/Target/m_77508_ ()Lnet/minecraft/world/level/pathfinder/Node; net/minecraft/world/level/pathfinder/Target/getBestNode ()Lnet/minecraft/world/level/pathfinder/Node; +MD: net/minecraft/world/level/pathfinder/Target/m_77509_ ()V net/minecraft/world/level/pathfinder/Target/setReached ()V +MD: net/minecraft/world/level/pathfinder/WalkNodeEvaluator/ ()V net/minecraft/world/level/pathfinder/WalkNodeEvaluator/ ()V +MD: net/minecraft/world/level/pathfinder/WalkNodeEvaluator/m_141974_ ()Z net/minecraft/world/level/pathfinder/WalkNodeEvaluator/isAmphibious ()Z +MD: net/minecraft/world/level/pathfinder/WalkNodeEvaluator/m_142213_ (Lnet/minecraft/core/BlockPos;)D net/minecraft/world/level/pathfinder/WalkNodeEvaluator/getFloorLevel (Lnet/minecraft/core/BlockPos;)D +MD: net/minecraft/world/level/pathfinder/WalkNodeEvaluator/m_164725_ (IIIIDLnet/minecraft/core/Direction;Lnet/minecraft/world/level/pathfinder/BlockPathTypes;)Lnet/minecraft/world/level/pathfinder/Node; net/minecraft/world/level/pathfinder/WalkNodeEvaluator/findAcceptedNode (IIIIDLnet/minecraft/core/Direction;Lnet/minecraft/world/level/pathfinder/BlockPathTypes;)Lnet/minecraft/world/level/pathfinder/Node; +MD: net/minecraft/world/level/pathfinder/WalkNodeEvaluator/m_192971_ (Lnet/minecraft/world/phys/AABB;Ljava/lang/Object;)Z net/minecraft/world/level/pathfinder/WalkNodeEvaluator/lambda$hasCollisions$0 (Lnet/minecraft/world/phys/AABB;Ljava/lang/Object;)Z +MD: net/minecraft/world/level/pathfinder/WalkNodeEvaluator/m_230619_ (IIILnet/minecraft/world/level/pathfinder/BlockPathTypes;F)Lnet/minecraft/world/level/pathfinder/Node; net/minecraft/world/level/pathfinder/WalkNodeEvaluator/getNodeAndUpdateCostToMax (IIILnet/minecraft/world/level/pathfinder/BlockPathTypes;F)Lnet/minecraft/world/level/pathfinder/Node; +MD: net/minecraft/world/level/pathfinder/WalkNodeEvaluator/m_230625_ (Lnet/minecraft/world/level/pathfinder/BlockPathTypes;)Z net/minecraft/world/level/pathfinder/WalkNodeEvaluator/doesBlockHavePartialCollision (Lnet/minecraft/world/level/pathfinder/BlockPathTypes;)Z +MD: net/minecraft/world/level/pathfinder/WalkNodeEvaluator/m_230627_ (III)Lnet/minecraft/world/level/pathfinder/Node; net/minecraft/world/level/pathfinder/WalkNodeEvaluator/getBlockedNode (III)Lnet/minecraft/world/level/pathfinder/Node; +MD: net/minecraft/world/level/pathfinder/WalkNodeEvaluator/m_230631_ (Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/pathfinder/Node; net/minecraft/world/level/pathfinder/WalkNodeEvaluator/getStartNode (Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/pathfinder/Node; +MD: net/minecraft/world/level/pathfinder/WalkNodeEvaluator/m_255203_ ()D net/minecraft/world/level/pathfinder/WalkNodeEvaluator/getMobJumpHeight ()D +MD: net/minecraft/world/level/pathfinder/WalkNodeEvaluator/m_262494_ (Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/level/pathfinder/WalkNodeEvaluator/canStartAt (Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/level/pathfinder/WalkNodeEvaluator/m_264026_ (IIILnet/minecraft/world/entity/Mob;J)Lnet/minecraft/world/level/pathfinder/BlockPathTypes; net/minecraft/world/level/pathfinder/WalkNodeEvaluator/lambda$getCachedBlockType$1 (IIILnet/minecraft/world/entity/Mob;J)Lnet/minecraft/world/level/pathfinder/BlockPathTypes; +MD: net/minecraft/world/level/pathfinder/WalkNodeEvaluator/m_264405_ (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/pathfinder/BlockPathTypes;)Lnet/minecraft/world/level/pathfinder/BlockPathTypes; net/minecraft/world/level/pathfinder/WalkNodeEvaluator/evaluateBlockPathType (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/pathfinder/BlockPathTypes;)Lnet/minecraft/world/level/pathfinder/BlockPathTypes; +MD: net/minecraft/world/level/pathfinder/WalkNodeEvaluator/m_264561_ (Lnet/minecraft/world/level/BlockGetter;IIILjava/util/EnumSet;Lnet/minecraft/world/level/pathfinder/BlockPathTypes;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/pathfinder/BlockPathTypes; net/minecraft/world/level/pathfinder/WalkNodeEvaluator/getBlockPathTypes (Lnet/minecraft/world/level/BlockGetter;IIILjava/util/EnumSet;Lnet/minecraft/world/level/pathfinder/BlockPathTypes;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/pathfinder/BlockPathTypes; +MD: net/minecraft/world/level/pathfinder/WalkNodeEvaluator/m_6028_ (Lnet/minecraft/world/level/PathNavigationRegion;Lnet/minecraft/world/entity/Mob;)V net/minecraft/world/level/pathfinder/WalkNodeEvaluator/prepare (Lnet/minecraft/world/level/PathNavigationRegion;Lnet/minecraft/world/entity/Mob;)V +MD: net/minecraft/world/level/pathfinder/WalkNodeEvaluator/m_6065_ ([Lnet/minecraft/world/level/pathfinder/Node;Lnet/minecraft/world/level/pathfinder/Node;)I net/minecraft/world/level/pathfinder/WalkNodeEvaluator/getNeighbors ([Lnet/minecraft/world/level/pathfinder/Node;Lnet/minecraft/world/level/pathfinder/Node;)I +MD: net/minecraft/world/level/pathfinder/WalkNodeEvaluator/m_6802_ ()V net/minecraft/world/level/pathfinder/WalkNodeEvaluator/done ()V +MD: net/minecraft/world/level/pathfinder/WalkNodeEvaluator/m_7171_ ()Lnet/minecraft/world/level/pathfinder/Node; net/minecraft/world/level/pathfinder/WalkNodeEvaluator/getStart ()Lnet/minecraft/world/level/pathfinder/Node; +MD: net/minecraft/world/level/pathfinder/WalkNodeEvaluator/m_7209_ (Lnet/minecraft/world/level/BlockGetter;IIILnet/minecraft/world/entity/Mob;)Lnet/minecraft/world/level/pathfinder/BlockPathTypes; net/minecraft/world/level/pathfinder/WalkNodeEvaluator/getBlockPathType (Lnet/minecraft/world/level/BlockGetter;IIILnet/minecraft/world/entity/Mob;)Lnet/minecraft/world/level/pathfinder/BlockPathTypes; +MD: net/minecraft/world/level/pathfinder/WalkNodeEvaluator/m_7568_ (DDD)Lnet/minecraft/world/level/pathfinder/Target; net/minecraft/world/level/pathfinder/WalkNodeEvaluator/getGoal (DDD)Lnet/minecraft/world/level/pathfinder/Target; +MD: net/minecraft/world/level/pathfinder/WalkNodeEvaluator/m_77567_ (Lnet/minecraft/world/entity/Mob;III)Lnet/minecraft/world/level/pathfinder/BlockPathTypes; net/minecraft/world/level/pathfinder/WalkNodeEvaluator/getCachedBlockType (Lnet/minecraft/world/entity/Mob;III)Lnet/minecraft/world/level/pathfinder/BlockPathTypes; +MD: net/minecraft/world/level/pathfinder/WalkNodeEvaluator/m_77572_ (Lnet/minecraft/world/entity/Mob;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/pathfinder/BlockPathTypes; net/minecraft/world/level/pathfinder/WalkNodeEvaluator/getBlockPathType (Lnet/minecraft/world/entity/Mob;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/pathfinder/BlockPathTypes; +MD: net/minecraft/world/level/pathfinder/WalkNodeEvaluator/m_77604_ (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos$MutableBlockPos;)Lnet/minecraft/world/level/pathfinder/BlockPathTypes; net/minecraft/world/level/pathfinder/WalkNodeEvaluator/getBlockPathTypeStatic (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos$MutableBlockPos;)Lnet/minecraft/world/level/pathfinder/BlockPathTypes; +MD: net/minecraft/world/level/pathfinder/WalkNodeEvaluator/m_77607_ (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos$MutableBlockPos;Lnet/minecraft/world/level/pathfinder/BlockPathTypes;)Lnet/minecraft/world/level/pathfinder/BlockPathTypes; net/minecraft/world/level/pathfinder/WalkNodeEvaluator/checkNeighbourBlocks (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos$MutableBlockPos;Lnet/minecraft/world/level/pathfinder/BlockPathTypes;)Lnet/minecraft/world/level/pathfinder/BlockPathTypes; +MD: net/minecraft/world/level/pathfinder/WalkNodeEvaluator/m_77611_ (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)D net/minecraft/world/level/pathfinder/WalkNodeEvaluator/getFloorLevel (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)D +MD: net/minecraft/world/level/pathfinder/WalkNodeEvaluator/m_77622_ (Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/world/level/pathfinder/WalkNodeEvaluator/isBurningBlock (Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/world/level/pathfinder/WalkNodeEvaluator/m_77624_ (Lnet/minecraft/world/level/pathfinder/Node;)Z net/minecraft/world/level/pathfinder/WalkNodeEvaluator/canReachWithoutCollision (Lnet/minecraft/world/level/pathfinder/Node;)Z +MD: net/minecraft/world/level/pathfinder/WalkNodeEvaluator/m_77626_ (Lnet/minecraft/world/level/pathfinder/Node;Lnet/minecraft/world/level/pathfinder/Node;)Z net/minecraft/world/level/pathfinder/WalkNodeEvaluator/isNeighborValid (Lnet/minecraft/world/level/pathfinder/Node;Lnet/minecraft/world/level/pathfinder/Node;)Z +MD: net/minecraft/world/level/pathfinder/WalkNodeEvaluator/m_77629_ (Lnet/minecraft/world/level/pathfinder/Node;Lnet/minecraft/world/level/pathfinder/Node;Lnet/minecraft/world/level/pathfinder/Node;Lnet/minecraft/world/level/pathfinder/Node;)Z net/minecraft/world/level/pathfinder/WalkNodeEvaluator/isDiagonalValid (Lnet/minecraft/world/level/pathfinder/Node;Lnet/minecraft/world/level/pathfinder/Node;Lnet/minecraft/world/level/pathfinder/Node;Lnet/minecraft/world/level/pathfinder/Node;)Z +MD: net/minecraft/world/level/pathfinder/WalkNodeEvaluator/m_77634_ (Lnet/minecraft/world/phys/AABB;)Z net/minecraft/world/level/pathfinder/WalkNodeEvaluator/hasCollisions (Lnet/minecraft/world/phys/AABB;)Z +MD: net/minecraft/world/level/pathfinder/WalkNodeEvaluator/m_77643_ (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/pathfinder/BlockPathTypes; net/minecraft/world/level/pathfinder/WalkNodeEvaluator/getBlockPathTypeRaw (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/pathfinder/BlockPathTypes; +MD: net/minecraft/world/level/pathfinder/WalkNodeEvaluator/m_8086_ (Lnet/minecraft/world/level/BlockGetter;III)Lnet/minecraft/world/level/pathfinder/BlockPathTypes; net/minecraft/world/level/pathfinder/WalkNodeEvaluator/getBlockPathType (Lnet/minecraft/world/level/BlockGetter;III)Lnet/minecraft/world/level/pathfinder/BlockPathTypes; +MD: net/minecraft/world/level/portal/PortalForcer/ (Lnet/minecraft/server/level/ServerLevel;)V net/minecraft/world/level/portal/PortalForcer/ (Lnet/minecraft/server/level/ServerLevel;)V +MD: net/minecraft/world/level/portal/PortalForcer/m_192974_ (Lnet/minecraft/world/entity/ai/village/poi/PoiRecord;)Lnet/minecraft/BlockUtil$FoundRectangle; net/minecraft/world/level/portal/PortalForcer/lambda$findPortalAround$6 (Lnet/minecraft/world/entity/ai/village/poi/PoiRecord;)Lnet/minecraft/BlockUtil$FoundRectangle; +MD: net/minecraft/world/level/portal/PortalForcer/m_192976_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/level/portal/PortalForcer/lambda$findPortalAround$5 (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/level/portal/PortalForcer/m_192979_ (Lnet/minecraft/world/level/border/WorldBorder;Lnet/minecraft/world/entity/ai/village/poi/PoiRecord;)Z net/minecraft/world/level/portal/PortalForcer/lambda$findPortalAround$1 (Lnet/minecraft/world/level/border/WorldBorder;Lnet/minecraft/world/entity/ai/village/poi/PoiRecord;)Z +MD: net/minecraft/world/level/portal/PortalForcer/m_192982_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/ai/village/poi/PoiRecord;)D net/minecraft/world/level/portal/PortalForcer/lambda$findPortalAround$2 (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/entity/ai/village/poi/PoiRecord;)D +MD: net/minecraft/world/level/portal/PortalForcer/m_192985_ (Lnet/minecraft/core/BlockPos;ZLnet/minecraft/world/level/border/WorldBorder;)Ljava/util/Optional; net/minecraft/world/level/portal/PortalForcer/findPortalAround (Lnet/minecraft/core/BlockPos;ZLnet/minecraft/world/level/border/WorldBorder;)Ljava/util/Optional; +MD: net/minecraft/world/level/portal/PortalForcer/m_192989_ (Lnet/minecraft/world/entity/ai/village/poi/PoiRecord;)Z net/minecraft/world/level/portal/PortalForcer/lambda$findPortalAround$4 (Lnet/minecraft/world/entity/ai/village/poi/PoiRecord;)Z +MD: net/minecraft/world/level/portal/PortalForcer/m_192991_ (Lnet/minecraft/world/entity/ai/village/poi/PoiRecord;)I net/minecraft/world/level/portal/PortalForcer/lambda$findPortalAround$3 (Lnet/minecraft/world/entity/ai/village/poi/PoiRecord;)I +MD: net/minecraft/world/level/portal/PortalForcer/m_230633_ (Lnet/minecraft/core/Holder;)Z net/minecraft/world/level/portal/PortalForcer/lambda$findPortalAround$0 (Lnet/minecraft/core/Holder;)Z +MD: net/minecraft/world/level/portal/PortalForcer/m_245373_ (Lnet/minecraft/core/BlockPos$MutableBlockPos;)Z net/minecraft/world/level/portal/PortalForcer/canPortalReplaceBlock (Lnet/minecraft/core/BlockPos$MutableBlockPos;)Z +MD: net/minecraft/world/level/portal/PortalForcer/m_77661_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos$MutableBlockPos;Lnet/minecraft/core/Direction;I)Z net/minecraft/world/level/portal/PortalForcer/canHostFrame (Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos$MutableBlockPos;Lnet/minecraft/core/Direction;I)Z +MD: net/minecraft/world/level/portal/PortalForcer/m_77666_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Direction$Axis;)Ljava/util/Optional; net/minecraft/world/level/portal/PortalForcer/createPortal (Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Direction$Axis;)Ljava/util/Optional; +MD: net/minecraft/world/level/portal/PortalInfo/ (Lnet/minecraft/world/phys/Vec3;Lnet/minecraft/world/phys/Vec3;FF)V net/minecraft/world/level/portal/PortalInfo/ (Lnet/minecraft/world/phys/Vec3;Lnet/minecraft/world/phys/Vec3;FF)V +MD: net/minecraft/world/level/portal/PortalShape/ ()V net/minecraft/world/level/portal/PortalShape/ ()V +MD: net/minecraft/world/level/portal/PortalShape/ (Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Direction$Axis;)V net/minecraft/world/level/portal/PortalShape/ (Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Direction$Axis;)V +MD: net/minecraft/world/level/portal/PortalShape/m_257365_ (DLnet/minecraft/world/phys/Vec3;)Lnet/minecraft/world/phys/Vec3; net/minecraft/world/level/portal/PortalShape/lambda$findCollisionFreePosition$3 (DLnet/minecraft/world/phys/Vec3;)Lnet/minecraft/world/phys/Vec3; +MD: net/minecraft/world/level/portal/PortalShape/m_257963_ (Lnet/minecraft/world/phys/Vec3;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/Entity;Lnet/minecraft/world/entity/EntityDimensions;)Lnet/minecraft/world/phys/Vec3; net/minecraft/world/level/portal/PortalShape/findCollisionFreePosition (Lnet/minecraft/world/phys/Vec3;Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/world/entity/Entity;Lnet/minecraft/world/entity/EntityDimensions;)Lnet/minecraft/world/phys/Vec3; +MD: net/minecraft/world/level/portal/PortalShape/m_257966_ (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/BlockUtil$FoundRectangle;Lnet/minecraft/core/Direction$Axis;Lnet/minecraft/world/phys/Vec3;Lnet/minecraft/world/entity/Entity;Lnet/minecraft/world/phys/Vec3;FF)Lnet/minecraft/world/level/portal/PortalInfo; net/minecraft/world/level/portal/PortalShape/createPortalInfo (Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/BlockUtil$FoundRectangle;Lnet/minecraft/core/Direction$Axis;Lnet/minecraft/world/phys/Vec3;Lnet/minecraft/world/entity/Entity;Lnet/minecraft/world/phys/Vec3;FF)Lnet/minecraft/world/level/portal/PortalInfo; +MD: net/minecraft/world/level/portal/PortalShape/m_77698_ ()Z net/minecraft/world/level/portal/PortalShape/isValid ()Z +MD: net/minecraft/world/level/portal/PortalShape/m_77708_ (Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Direction$Axis;)Ljava/util/Optional; net/minecraft/world/level/portal/PortalShape/findEmptyPortalShape (Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Direction$Axis;)Ljava/util/Optional; +MD: net/minecraft/world/level/portal/PortalShape/m_77712_ (Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Ljava/util/function/Predicate;Lnet/minecraft/core/Direction$Axis;)Ljava/util/Optional; net/minecraft/world/level/portal/PortalShape/findPortalShape (Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;Ljava/util/function/Predicate;Lnet/minecraft/core/Direction$Axis;)Ljava/util/Optional; +MD: net/minecraft/world/level/portal/PortalShape/m_77717_ (Lnet/minecraft/world/level/block/state/BlockState;)Z net/minecraft/world/level/portal/PortalShape/isEmpty (Lnet/minecraft/world/level/block/state/BlockState;)Z +MD: net/minecraft/world/level/portal/PortalShape/m_77719_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/level/portal/PortalShape/lambda$static$0 (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/level/portal/PortalShape/m_77723_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/BlockPos;)V net/minecraft/world/level/portal/PortalShape/lambda$createPortalBlocks$2 (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/world/level/portal/PortalShape/m_77726_ (Lnet/minecraft/world/level/portal/PortalShape;)Z net/minecraft/world/level/portal/PortalShape/lambda$findEmptyPortalShape$1 (Lnet/minecraft/world/level/portal/PortalShape;)Z +MD: net/minecraft/world/level/portal/PortalShape/m_77728_ (Lnet/minecraft/core/BlockPos$MutableBlockPos;)I net/minecraft/world/level/portal/PortalShape/getDistanceUntilTop (Lnet/minecraft/core/BlockPos$MutableBlockPos;)I +MD: net/minecraft/world/level/portal/PortalShape/m_77730_ (Lnet/minecraft/core/BlockPos$MutableBlockPos;I)Z net/minecraft/world/level/portal/PortalShape/hasTopFrame (Lnet/minecraft/core/BlockPos$MutableBlockPos;I)Z +MD: net/minecraft/world/level/portal/PortalShape/m_77733_ (Lnet/minecraft/core/BlockPos;)Lnet/minecraft/core/BlockPos; net/minecraft/world/level/portal/PortalShape/calculateBottomLeft (Lnet/minecraft/core/BlockPos;)Lnet/minecraft/core/BlockPos; +MD: net/minecraft/world/level/portal/PortalShape/m_77735_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Direction;)I net/minecraft/world/level/portal/PortalShape/getDistanceUntilEdgeAboveFrame (Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/Direction;)I +MD: net/minecraft/world/level/portal/PortalShape/m_77738_ (Lnet/minecraft/BlockUtil$FoundRectangle;Lnet/minecraft/core/Direction$Axis;Lnet/minecraft/world/phys/Vec3;Lnet/minecraft/world/entity/EntityDimensions;)Lnet/minecraft/world/phys/Vec3; net/minecraft/world/level/portal/PortalShape/getRelativePosition (Lnet/minecraft/BlockUtil$FoundRectangle;Lnet/minecraft/core/Direction$Axis;Lnet/minecraft/world/phys/Vec3;Lnet/minecraft/world/entity/EntityDimensions;)Lnet/minecraft/world/phys/Vec3; +MD: net/minecraft/world/level/portal/PortalShape/m_77743_ ()V net/minecraft/world/level/portal/PortalShape/createPortalBlocks ()V +MD: net/minecraft/world/level/portal/PortalShape/m_77744_ ()Z net/minecraft/world/level/portal/PortalShape/isComplete ()Z +MD: net/minecraft/world/level/portal/PortalShape/m_77745_ ()I net/minecraft/world/level/portal/PortalShape/calculateWidth ()I +MD: net/minecraft/world/level/portal/PortalShape/m_77746_ ()I net/minecraft/world/level/portal/PortalShape/calculateHeight ()I +MD: net/minecraft/world/level/redstone/CollectingNeighborUpdater/ ()V net/minecraft/world/level/redstone/CollectingNeighborUpdater/ ()V +MD: net/minecraft/world/level/redstone/CollectingNeighborUpdater/ (Lnet/minecraft/world/level/Level;I)V net/minecraft/world/level/redstone/CollectingNeighborUpdater/ (Lnet/minecraft/world/level/Level;I)V +MD: net/minecraft/world/level/redstone/CollectingNeighborUpdater/m_213547_ (Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;II)V net/minecraft/world/level/redstone/CollectingNeighborUpdater/shapeUpdate (Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;II)V +MD: net/minecraft/world/level/redstone/CollectingNeighborUpdater/m_213858_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/Block;Lnet/minecraft/core/BlockPos;Z)V net/minecraft/world/level/redstone/CollectingNeighborUpdater/neighborChanged (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/Block;Lnet/minecraft/core/BlockPos;Z)V +MD: net/minecraft/world/level/redstone/CollectingNeighborUpdater/m_214026_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/Block;Lnet/minecraft/core/BlockPos;)V net/minecraft/world/level/redstone/CollectingNeighborUpdater/neighborChanged (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/Block;Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/world/level/redstone/CollectingNeighborUpdater/m_214152_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/Block;Lnet/minecraft/core/Direction;)V net/minecraft/world/level/redstone/CollectingNeighborUpdater/updateNeighborsAtExceptFromFacing (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/Block;Lnet/minecraft/core/Direction;)V +MD: net/minecraft/world/level/redstone/CollectingNeighborUpdater/m_230645_ ()V net/minecraft/world/level/redstone/CollectingNeighborUpdater/runUpdates ()V +MD: net/minecraft/world/level/redstone/CollectingNeighborUpdater/m_230660_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/redstone/CollectingNeighborUpdater$NeighborUpdates;)V net/minecraft/world/level/redstone/CollectingNeighborUpdater/addAndRun (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/redstone/CollectingNeighborUpdater$NeighborUpdates;)V +MD: net/minecraft/world/level/redstone/CollectingNeighborUpdater$FullNeighborUpdate/ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/Block;Lnet/minecraft/core/BlockPos;Z)V net/minecraft/world/level/redstone/CollectingNeighborUpdater$FullNeighborUpdate/ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/Block;Lnet/minecraft/core/BlockPos;Z)V +MD: net/minecraft/world/level/redstone/CollectingNeighborUpdater$FullNeighborUpdate/equals (Ljava/lang/Object;)Z net/minecraft/world/level/redstone/CollectingNeighborUpdater$FullNeighborUpdate/equals (Ljava/lang/Object;)Z +MD: net/minecraft/world/level/redstone/CollectingNeighborUpdater$FullNeighborUpdate/f_230670_ ()Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/redstone/CollectingNeighborUpdater$FullNeighborUpdate/state ()Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/redstone/CollectingNeighborUpdater$FullNeighborUpdate/f_230671_ ()Lnet/minecraft/core/BlockPos; net/minecraft/world/level/redstone/CollectingNeighborUpdater$FullNeighborUpdate/pos ()Lnet/minecraft/core/BlockPos; +MD: net/minecraft/world/level/redstone/CollectingNeighborUpdater$FullNeighborUpdate/f_230672_ ()Lnet/minecraft/world/level/block/Block; net/minecraft/world/level/redstone/CollectingNeighborUpdater$FullNeighborUpdate/block ()Lnet/minecraft/world/level/block/Block; +MD: net/minecraft/world/level/redstone/CollectingNeighborUpdater$FullNeighborUpdate/f_230673_ ()Lnet/minecraft/core/BlockPos; net/minecraft/world/level/redstone/CollectingNeighborUpdater$FullNeighborUpdate/neighborPos ()Lnet/minecraft/core/BlockPos; +MD: net/minecraft/world/level/redstone/CollectingNeighborUpdater$FullNeighborUpdate/f_230674_ ()Z net/minecraft/world/level/redstone/CollectingNeighborUpdater$FullNeighborUpdate/movedByPiston ()Z +MD: net/minecraft/world/level/redstone/CollectingNeighborUpdater$FullNeighborUpdate/hashCode ()I net/minecraft/world/level/redstone/CollectingNeighborUpdater$FullNeighborUpdate/hashCode ()I +MD: net/minecraft/world/level/redstone/CollectingNeighborUpdater$FullNeighborUpdate/m_213563_ (Lnet/minecraft/world/level/Level;)Z net/minecraft/world/level/redstone/CollectingNeighborUpdater$FullNeighborUpdate/runNext (Lnet/minecraft/world/level/Level;)Z +MD: net/minecraft/world/level/redstone/CollectingNeighborUpdater$FullNeighborUpdate/toString ()Ljava/lang/String; net/minecraft/world/level/redstone/CollectingNeighborUpdater$FullNeighborUpdate/toString ()Ljava/lang/String; +MD: net/minecraft/world/level/redstone/CollectingNeighborUpdater$MultiNeighborUpdate/ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/Block;Lnet/minecraft/core/Direction;)V net/minecraft/world/level/redstone/CollectingNeighborUpdater$MultiNeighborUpdate/ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/Block;Lnet/minecraft/core/Direction;)V +MD: net/minecraft/world/level/redstone/CollectingNeighborUpdater$MultiNeighborUpdate/m_213563_ (Lnet/minecraft/world/level/Level;)Z net/minecraft/world/level/redstone/CollectingNeighborUpdater$MultiNeighborUpdate/runNext (Lnet/minecraft/world/level/Level;)Z +MD: net/minecraft/world/level/redstone/CollectingNeighborUpdater$NeighborUpdates/m_213563_ (Lnet/minecraft/world/level/Level;)Z net/minecraft/world/level/redstone/CollectingNeighborUpdater$NeighborUpdates/runNext (Lnet/minecraft/world/level/Level;)Z +MD: net/minecraft/world/level/redstone/CollectingNeighborUpdater$ShapeUpdate/ (Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;II)V net/minecraft/world/level/redstone/CollectingNeighborUpdater$ShapeUpdate/ (Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;II)V +MD: net/minecraft/world/level/redstone/CollectingNeighborUpdater$ShapeUpdate/equals (Ljava/lang/Object;)Z net/minecraft/world/level/redstone/CollectingNeighborUpdater$ShapeUpdate/equals (Ljava/lang/Object;)Z +MD: net/minecraft/world/level/redstone/CollectingNeighborUpdater$ShapeUpdate/f_230703_ ()Lnet/minecraft/core/Direction; net/minecraft/world/level/redstone/CollectingNeighborUpdater$ShapeUpdate/direction ()Lnet/minecraft/core/Direction; +MD: net/minecraft/world/level/redstone/CollectingNeighborUpdater$ShapeUpdate/f_230704_ ()Lnet/minecraft/world/level/block/state/BlockState; net/minecraft/world/level/redstone/CollectingNeighborUpdater$ShapeUpdate/state ()Lnet/minecraft/world/level/block/state/BlockState; +MD: net/minecraft/world/level/redstone/CollectingNeighborUpdater$ShapeUpdate/f_230705_ ()Lnet/minecraft/core/BlockPos; net/minecraft/world/level/redstone/CollectingNeighborUpdater$ShapeUpdate/pos ()Lnet/minecraft/core/BlockPos; +MD: net/minecraft/world/level/redstone/CollectingNeighborUpdater$ShapeUpdate/f_230706_ ()Lnet/minecraft/core/BlockPos; net/minecraft/world/level/redstone/CollectingNeighborUpdater$ShapeUpdate/neighborPos ()Lnet/minecraft/core/BlockPos; +MD: net/minecraft/world/level/redstone/CollectingNeighborUpdater$ShapeUpdate/f_230707_ ()I net/minecraft/world/level/redstone/CollectingNeighborUpdater$ShapeUpdate/updateFlags ()I +MD: net/minecraft/world/level/redstone/CollectingNeighborUpdater$ShapeUpdate/f_276599_ ()I net/minecraft/world/level/redstone/CollectingNeighborUpdater$ShapeUpdate/updateLimit ()I +MD: net/minecraft/world/level/redstone/CollectingNeighborUpdater$ShapeUpdate/hashCode ()I net/minecraft/world/level/redstone/CollectingNeighborUpdater$ShapeUpdate/hashCode ()I +MD: net/minecraft/world/level/redstone/CollectingNeighborUpdater$ShapeUpdate/m_213563_ (Lnet/minecraft/world/level/Level;)Z net/minecraft/world/level/redstone/CollectingNeighborUpdater$ShapeUpdate/runNext (Lnet/minecraft/world/level/Level;)Z +MD: net/minecraft/world/level/redstone/CollectingNeighborUpdater$ShapeUpdate/toString ()Ljava/lang/String; net/minecraft/world/level/redstone/CollectingNeighborUpdater$ShapeUpdate/toString ()Ljava/lang/String; +MD: net/minecraft/world/level/redstone/CollectingNeighborUpdater$SimpleNeighborUpdate/ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/Block;Lnet/minecraft/core/BlockPos;)V net/minecraft/world/level/redstone/CollectingNeighborUpdater$SimpleNeighborUpdate/ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/Block;Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/world/level/redstone/CollectingNeighborUpdater$SimpleNeighborUpdate/equals (Ljava/lang/Object;)Z net/minecraft/world/level/redstone/CollectingNeighborUpdater$SimpleNeighborUpdate/equals (Ljava/lang/Object;)Z +MD: net/minecraft/world/level/redstone/CollectingNeighborUpdater$SimpleNeighborUpdate/f_230725_ ()Lnet/minecraft/core/BlockPos; net/minecraft/world/level/redstone/CollectingNeighborUpdater$SimpleNeighborUpdate/pos ()Lnet/minecraft/core/BlockPos; +MD: net/minecraft/world/level/redstone/CollectingNeighborUpdater$SimpleNeighborUpdate/f_230726_ ()Lnet/minecraft/world/level/block/Block; net/minecraft/world/level/redstone/CollectingNeighborUpdater$SimpleNeighborUpdate/block ()Lnet/minecraft/world/level/block/Block; +MD: net/minecraft/world/level/redstone/CollectingNeighborUpdater$SimpleNeighborUpdate/f_230727_ ()Lnet/minecraft/core/BlockPos; net/minecraft/world/level/redstone/CollectingNeighborUpdater$SimpleNeighborUpdate/neighborPos ()Lnet/minecraft/core/BlockPos; +MD: net/minecraft/world/level/redstone/CollectingNeighborUpdater$SimpleNeighborUpdate/hashCode ()I net/minecraft/world/level/redstone/CollectingNeighborUpdater$SimpleNeighborUpdate/hashCode ()I +MD: net/minecraft/world/level/redstone/CollectingNeighborUpdater$SimpleNeighborUpdate/m_213563_ (Lnet/minecraft/world/level/Level;)Z net/minecraft/world/level/redstone/CollectingNeighborUpdater$SimpleNeighborUpdate/runNext (Lnet/minecraft/world/level/Level;)Z +MD: net/minecraft/world/level/redstone/CollectingNeighborUpdater$SimpleNeighborUpdate/toString ()Ljava/lang/String; net/minecraft/world/level/redstone/CollectingNeighborUpdater$SimpleNeighborUpdate/toString ()Ljava/lang/String; +MD: net/minecraft/world/level/redstone/InstantNeighborUpdater/ (Lnet/minecraft/world/level/Level;)V net/minecraft/world/level/redstone/InstantNeighborUpdater/ (Lnet/minecraft/world/level/Level;)V +MD: net/minecraft/world/level/redstone/InstantNeighborUpdater/m_213547_ (Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;II)V net/minecraft/world/level/redstone/InstantNeighborUpdater/shapeUpdate (Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;II)V +MD: net/minecraft/world/level/redstone/InstantNeighborUpdater/m_213858_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/Block;Lnet/minecraft/core/BlockPos;Z)V net/minecraft/world/level/redstone/InstantNeighborUpdater/neighborChanged (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/Block;Lnet/minecraft/core/BlockPos;Z)V +MD: net/minecraft/world/level/redstone/InstantNeighborUpdater/m_214026_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/Block;Lnet/minecraft/core/BlockPos;)V net/minecraft/world/level/redstone/InstantNeighborUpdater/neighborChanged (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/Block;Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/world/level/redstone/NeighborUpdater/ ()V net/minecraft/world/level/redstone/NeighborUpdater/ ()V +MD: net/minecraft/world/level/redstone/NeighborUpdater/m_213547_ (Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;II)V net/minecraft/world/level/redstone/NeighborUpdater/shapeUpdate (Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;II)V +MD: net/minecraft/world/level/redstone/NeighborUpdater/m_213858_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/Block;Lnet/minecraft/core/BlockPos;Z)V net/minecraft/world/level/redstone/NeighborUpdater/neighborChanged (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/Block;Lnet/minecraft/core/BlockPos;Z)V +MD: net/minecraft/world/level/redstone/NeighborUpdater/m_214026_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/Block;Lnet/minecraft/core/BlockPos;)V net/minecraft/world/level/redstone/NeighborUpdater/neighborChanged (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/Block;Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/world/level/redstone/NeighborUpdater/m_214152_ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/Block;Lnet/minecraft/core/Direction;)V net/minecraft/world/level/redstone/NeighborUpdater/updateNeighborsAtExceptFromFacing (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/Block;Lnet/minecraft/core/Direction;)V +MD: net/minecraft/world/level/redstone/NeighborUpdater/m_230763_ (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/Block;Lnet/minecraft/core/BlockPos;Z)V net/minecraft/world/level/redstone/NeighborUpdater/executeUpdate (Lnet/minecraft/world/level/Level;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/level/block/Block;Lnet/minecraft/core/BlockPos;Z)V +MD: net/minecraft/world/level/redstone/NeighborUpdater/m_230770_ (Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;II)V net/minecraft/world/level/redstone/NeighborUpdater/executeShapeUpdate (Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/Direction;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;II)V +MD: net/minecraft/world/level/redstone/NeighborUpdater/m_257366_ (Lnet/minecraft/world/level/block/Block;)Ljava/lang/String; net/minecraft/world/level/redstone/NeighborUpdater/lambda$executeUpdate$0 (Lnet/minecraft/world/level/block/Block;)Ljava/lang/String; +MD: net/minecraft/world/level/redstone/Redstone/ ()V net/minecraft/world/level/redstone/Redstone/ ()V +MD: net/minecraft/world/level/saveddata/SavedData/ ()V net/minecraft/world/level/saveddata/SavedData/ ()V +MD: net/minecraft/world/level/saveddata/SavedData/ ()V net/minecraft/world/level/saveddata/SavedData/ ()V +MD: net/minecraft/world/level/saveddata/SavedData/m_7176_ (Lnet/minecraft/nbt/CompoundTag;)Lnet/minecraft/nbt/CompoundTag; net/minecraft/world/level/saveddata/SavedData/save (Lnet/minecraft/nbt/CompoundTag;)Lnet/minecraft/nbt/CompoundTag; +MD: net/minecraft/world/level/saveddata/SavedData/m_77757_ (Ljava/io/File;)V net/minecraft/world/level/saveddata/SavedData/save (Ljava/io/File;)V +MD: net/minecraft/world/level/saveddata/SavedData/m_77760_ (Z)V net/minecraft/world/level/saveddata/SavedData/setDirty (Z)V +MD: net/minecraft/world/level/saveddata/SavedData/m_77762_ ()V net/minecraft/world/level/saveddata/SavedData/setDirty ()V +MD: net/minecraft/world/level/saveddata/SavedData/m_77764_ ()Z net/minecraft/world/level/saveddata/SavedData/isDirty ()Z +MD: net/minecraft/world/level/saveddata/maps/MapBanner/ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/item/DyeColor;Lnet/minecraft/network/chat/Component;)V net/minecraft/world/level/saveddata/maps/MapBanner/ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/world/item/DyeColor;Lnet/minecraft/network/chat/Component;)V +MD: net/minecraft/world/level/saveddata/maps/MapBanner/equals (Ljava/lang/Object;)Z net/minecraft/world/level/saveddata/maps/MapBanner/equals (Ljava/lang/Object;)Z +MD: net/minecraft/world/level/saveddata/maps/MapBanner/hashCode ()I net/minecraft/world/level/saveddata/maps/MapBanner/hashCode ()I +MD: net/minecraft/world/level/saveddata/maps/MapBanner/m_164759_ ()Lnet/minecraft/world/item/DyeColor; net/minecraft/world/level/saveddata/maps/MapBanner/getColor ()Lnet/minecraft/world/item/DyeColor; +MD: net/minecraft/world/level/saveddata/maps/MapBanner/m_77773_ ()Lnet/minecraft/core/BlockPos; net/minecraft/world/level/saveddata/maps/MapBanner/getPos ()Lnet/minecraft/core/BlockPos; +MD: net/minecraft/world/level/saveddata/maps/MapBanner/m_77774_ (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/saveddata/maps/MapBanner; net/minecraft/world/level/saveddata/maps/MapBanner/fromWorld (Lnet/minecraft/world/level/BlockGetter;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/saveddata/maps/MapBanner; +MD: net/minecraft/world/level/saveddata/maps/MapBanner/m_77777_ (Lnet/minecraft/nbt/CompoundTag;)Lnet/minecraft/world/level/saveddata/maps/MapBanner; net/minecraft/world/level/saveddata/maps/MapBanner/load (Lnet/minecraft/nbt/CompoundTag;)Lnet/minecraft/world/level/saveddata/maps/MapBanner; +MD: net/minecraft/world/level/saveddata/maps/MapBanner/m_77782_ ()Lnet/minecraft/world/level/saveddata/maps/MapDecoration$Type; net/minecraft/world/level/saveddata/maps/MapBanner/getDecoration ()Lnet/minecraft/world/level/saveddata/maps/MapDecoration$Type; +MD: net/minecraft/world/level/saveddata/maps/MapBanner/m_77783_ ()Lnet/minecraft/network/chat/Component; net/minecraft/world/level/saveddata/maps/MapBanner/getName ()Lnet/minecraft/network/chat/Component; +MD: net/minecraft/world/level/saveddata/maps/MapBanner/m_77784_ ()Lnet/minecraft/nbt/CompoundTag; net/minecraft/world/level/saveddata/maps/MapBanner/save ()Lnet/minecraft/nbt/CompoundTag; +MD: net/minecraft/world/level/saveddata/maps/MapBanner/m_77787_ ()Ljava/lang/String; net/minecraft/world/level/saveddata/maps/MapBanner/getId ()Ljava/lang/String; +MD: net/minecraft/world/level/saveddata/maps/MapBanner$1/ ()V net/minecraft/world/level/saveddata/maps/MapBanner$1/ ()V +MD: net/minecraft/world/level/saveddata/maps/MapDecoration/ (Lnet/minecraft/world/level/saveddata/maps/MapDecoration$Type;BBBLnet/minecraft/network/chat/Component;)V net/minecraft/world/level/saveddata/maps/MapDecoration/ (Lnet/minecraft/world/level/saveddata/maps/MapDecoration$Type;BBBLnet/minecraft/network/chat/Component;)V +MD: net/minecraft/world/level/saveddata/maps/MapDecoration/equals (Ljava/lang/Object;)Z net/minecraft/world/level/saveddata/maps/MapDecoration/equals (Ljava/lang/Object;)Z +MD: net/minecraft/world/level/saveddata/maps/MapDecoration/hashCode ()I net/minecraft/world/level/saveddata/maps/MapDecoration/hashCode ()I +MD: net/minecraft/world/level/saveddata/maps/MapDecoration/m_77802_ ()B net/minecraft/world/level/saveddata/maps/MapDecoration/getImage ()B +MD: net/minecraft/world/level/saveddata/maps/MapDecoration/m_77803_ ()Lnet/minecraft/world/level/saveddata/maps/MapDecoration$Type; net/minecraft/world/level/saveddata/maps/MapDecoration/getType ()Lnet/minecraft/world/level/saveddata/maps/MapDecoration$Type; +MD: net/minecraft/world/level/saveddata/maps/MapDecoration/m_77804_ ()B net/minecraft/world/level/saveddata/maps/MapDecoration/getX ()B +MD: net/minecraft/world/level/saveddata/maps/MapDecoration/m_77805_ ()B net/minecraft/world/level/saveddata/maps/MapDecoration/getY ()B +MD: net/minecraft/world/level/saveddata/maps/MapDecoration/m_77806_ ()B net/minecraft/world/level/saveddata/maps/MapDecoration/getRot ()B +MD: net/minecraft/world/level/saveddata/maps/MapDecoration/m_77809_ ()Z net/minecraft/world/level/saveddata/maps/MapDecoration/renderOnFrame ()Z +MD: net/minecraft/world/level/saveddata/maps/MapDecoration/m_77810_ ()Lnet/minecraft/network/chat/Component; net/minecraft/world/level/saveddata/maps/MapDecoration/getName ()Lnet/minecraft/network/chat/Component; +MD: net/minecraft/world/level/saveddata/maps/MapDecoration$Type/ ()V net/minecraft/world/level/saveddata/maps/MapDecoration$Type/ ()V +MD: net/minecraft/world/level/saveddata/maps/MapDecoration$Type/ (Ljava/lang/String;IZZ)V net/minecraft/world/level/saveddata/maps/MapDecoration$Type/ (Ljava/lang/String;IZZ)V +MD: net/minecraft/world/level/saveddata/maps/MapDecoration$Type/ (Ljava/lang/String;IZIZ)V net/minecraft/world/level/saveddata/maps/MapDecoration$Type/ (Ljava/lang/String;IZIZ)V +MD: net/minecraft/world/level/saveddata/maps/MapDecoration$Type/m_164760_ ()[Lnet/minecraft/world/level/saveddata/maps/MapDecoration$Type; net/minecraft/world/level/saveddata/maps/MapDecoration$Type/$values ()[Lnet/minecraft/world/level/saveddata/maps/MapDecoration$Type; +MD: net/minecraft/world/level/saveddata/maps/MapDecoration$Type/m_181306_ ()Z net/minecraft/world/level/saveddata/maps/MapDecoration$Type/shouldTrackCount ()Z +MD: net/minecraft/world/level/saveddata/maps/MapDecoration$Type/m_77853_ ()B net/minecraft/world/level/saveddata/maps/MapDecoration$Type/getIcon ()B +MD: net/minecraft/world/level/saveddata/maps/MapDecoration$Type/m_77854_ (B)Lnet/minecraft/world/level/saveddata/maps/MapDecoration$Type; net/minecraft/world/level/saveddata/maps/MapDecoration$Type/byIcon (B)Lnet/minecraft/world/level/saveddata/maps/MapDecoration$Type; +MD: net/minecraft/world/level/saveddata/maps/MapDecoration$Type/m_77856_ ()Z net/minecraft/world/level/saveddata/maps/MapDecoration$Type/isRenderedOnFrame ()Z +MD: net/minecraft/world/level/saveddata/maps/MapDecoration$Type/m_77857_ ()Z net/minecraft/world/level/saveddata/maps/MapDecoration$Type/hasMapColor ()Z +MD: net/minecraft/world/level/saveddata/maps/MapDecoration$Type/m_77858_ ()I net/minecraft/world/level/saveddata/maps/MapDecoration$Type/getMapColor ()I +MD: net/minecraft/world/level/saveddata/maps/MapDecoration$Type/valueOf (Ljava/lang/String;)Lnet/minecraft/world/level/saveddata/maps/MapDecoration$Type; net/minecraft/world/level/saveddata/maps/MapDecoration$Type/valueOf (Ljava/lang/String;)Lnet/minecraft/world/level/saveddata/maps/MapDecoration$Type; +MD: net/minecraft/world/level/saveddata/maps/MapDecoration$Type/values ()[Lnet/minecraft/world/level/saveddata/maps/MapDecoration$Type; net/minecraft/world/level/saveddata/maps/MapDecoration$Type/values ()[Lnet/minecraft/world/level/saveddata/maps/MapDecoration$Type; +MD: net/minecraft/world/level/saveddata/maps/MapFrame/ (Lnet/minecraft/core/BlockPos;II)V net/minecraft/world/level/saveddata/maps/MapFrame/ (Lnet/minecraft/core/BlockPos;II)V +MD: net/minecraft/world/level/saveddata/maps/MapFrame/m_77869_ ()Lnet/minecraft/nbt/CompoundTag; net/minecraft/world/level/saveddata/maps/MapFrame/save ()Lnet/minecraft/nbt/CompoundTag; +MD: net/minecraft/world/level/saveddata/maps/MapFrame/m_77870_ (Lnet/minecraft/core/BlockPos;)Ljava/lang/String; net/minecraft/world/level/saveddata/maps/MapFrame/frameId (Lnet/minecraft/core/BlockPos;)Ljava/lang/String; +MD: net/minecraft/world/level/saveddata/maps/MapFrame/m_77872_ (Lnet/minecraft/nbt/CompoundTag;)Lnet/minecraft/world/level/saveddata/maps/MapFrame; net/minecraft/world/level/saveddata/maps/MapFrame/load (Lnet/minecraft/nbt/CompoundTag;)Lnet/minecraft/world/level/saveddata/maps/MapFrame; +MD: net/minecraft/world/level/saveddata/maps/MapFrame/m_77874_ ()Lnet/minecraft/core/BlockPos; net/minecraft/world/level/saveddata/maps/MapFrame/getPos ()Lnet/minecraft/core/BlockPos; +MD: net/minecraft/world/level/saveddata/maps/MapFrame/m_77875_ ()I net/minecraft/world/level/saveddata/maps/MapFrame/getRotation ()I +MD: net/minecraft/world/level/saveddata/maps/MapFrame/m_77876_ ()I net/minecraft/world/level/saveddata/maps/MapFrame/getEntityId ()I +MD: net/minecraft/world/level/saveddata/maps/MapFrame/m_77877_ ()Ljava/lang/String; net/minecraft/world/level/saveddata/maps/MapFrame/getId ()Ljava/lang/String; +MD: net/minecraft/world/level/saveddata/maps/MapIndex/ ()V net/minecraft/world/level/saveddata/maps/MapIndex/ ()V +MD: net/minecraft/world/level/saveddata/maps/MapIndex/m_164762_ (Lnet/minecraft/nbt/CompoundTag;)Lnet/minecraft/world/level/saveddata/maps/MapIndex; net/minecraft/world/level/saveddata/maps/MapIndex/load (Lnet/minecraft/nbt/CompoundTag;)Lnet/minecraft/world/level/saveddata/maps/MapIndex; +MD: net/minecraft/world/level/saveddata/maps/MapIndex/m_7176_ (Lnet/minecraft/nbt/CompoundTag;)Lnet/minecraft/nbt/CompoundTag; net/minecraft/world/level/saveddata/maps/MapIndex/save (Lnet/minecraft/nbt/CompoundTag;)Lnet/minecraft/nbt/CompoundTag; +MD: net/minecraft/world/level/saveddata/maps/MapIndex/m_77880_ ()I net/minecraft/world/level/saveddata/maps/MapIndex/getFreeAuxValueForMap ()I +MD: net/minecraft/world/level/saveddata/maps/MapItemSavedData/ ()V net/minecraft/world/level/saveddata/maps/MapItemSavedData/ ()V +MD: net/minecraft/world/level/saveddata/maps/MapItemSavedData/ (IIBZZZLnet/minecraft/resources/ResourceKey;)V net/minecraft/world/level/saveddata/maps/MapItemSavedData/ (IIBZZZLnet/minecraft/resources/ResourceKey;)V +MD: net/minecraft/world/level/saveddata/maps/MapItemSavedData/m_164775_ ()Lnet/minecraft/world/level/saveddata/maps/MapItemSavedData; net/minecraft/world/level/saveddata/maps/MapItemSavedData/locked ()Lnet/minecraft/world/level/saveddata/maps/MapItemSavedData; +MD: net/minecraft/world/level/saveddata/maps/MapItemSavedData/m_164776_ (BZLnet/minecraft/resources/ResourceKey;)Lnet/minecraft/world/level/saveddata/maps/MapItemSavedData; net/minecraft/world/level/saveddata/maps/MapItemSavedData/createForClient (BZLnet/minecraft/resources/ResourceKey;)Lnet/minecraft/world/level/saveddata/maps/MapItemSavedData; +MD: net/minecraft/world/level/saveddata/maps/MapItemSavedData/m_164780_ (DDBZZLnet/minecraft/resources/ResourceKey;)Lnet/minecraft/world/level/saveddata/maps/MapItemSavedData; net/minecraft/world/level/saveddata/maps/MapItemSavedData/createFresh (DDBZZLnet/minecraft/resources/ResourceKey;)Lnet/minecraft/world/level/saveddata/maps/MapItemSavedData; +MD: net/minecraft/world/level/saveddata/maps/MapItemSavedData/m_164787_ (I)Lnet/minecraft/world/level/saveddata/maps/MapItemSavedData; net/minecraft/world/level/saveddata/maps/MapItemSavedData/scaled (I)Lnet/minecraft/world/level/saveddata/maps/MapItemSavedData; +MD: net/minecraft/world/level/saveddata/maps/MapItemSavedData/m_164789_ (II)V net/minecraft/world/level/saveddata/maps/MapItemSavedData/setColorsDirty (II)V +MD: net/minecraft/world/level/saveddata/maps/MapItemSavedData/m_164792_ (IIB)Z net/minecraft/world/level/saveddata/maps/MapItemSavedData/updateColor (IIB)Z +MD: net/minecraft/world/level/saveddata/maps/MapItemSavedData/m_164796_ (ILnet/minecraft/world/entity/player/Player;)Lnet/minecraft/network/protocol/Packet; net/minecraft/world/level/saveddata/maps/MapItemSavedData/getUpdatePacket (ILnet/minecraft/world/entity/player/Player;)Lnet/minecraft/network/protocol/Packet; +MD: net/minecraft/world/level/saveddata/maps/MapItemSavedData/m_164799_ (Ljava/lang/String;)V net/minecraft/world/level/saveddata/maps/MapItemSavedData/removeDecoration (Ljava/lang/String;)V +MD: net/minecraft/world/level/saveddata/maps/MapItemSavedData/m_164801_ (Ljava/util/List;)V net/minecraft/world/level/saveddata/maps/MapItemSavedData/addClientSideDecorations (Ljava/util/List;)V +MD: net/minecraft/world/level/saveddata/maps/MapItemSavedData/m_164803_ (IIB)V net/minecraft/world/level/saveddata/maps/MapItemSavedData/setColor (IIB)V +MD: net/minecraft/world/level/saveddata/maps/MapItemSavedData/m_164807_ (Lnet/minecraft/nbt/CompoundTag;)Lnet/minecraft/world/level/saveddata/maps/MapItemSavedData; net/minecraft/world/level/saveddata/maps/MapItemSavedData/load (Lnet/minecraft/nbt/CompoundTag;)Lnet/minecraft/world/level/saveddata/maps/MapItemSavedData; +MD: net/minecraft/world/level/saveddata/maps/MapItemSavedData/m_164809_ ()Ljava/util/Collection; net/minecraft/world/level/saveddata/maps/MapItemSavedData/getBanners ()Ljava/util/Collection; +MD: net/minecraft/world/level/saveddata/maps/MapItemSavedData/m_164810_ ()Z net/minecraft/world/level/saveddata/maps/MapItemSavedData/isExplorationMap ()Z +MD: net/minecraft/world/level/saveddata/maps/MapItemSavedData/m_164811_ ()Ljava/lang/Iterable; net/minecraft/world/level/saveddata/maps/MapItemSavedData/getDecorations ()Ljava/lang/Iterable; +MD: net/minecraft/world/level/saveddata/maps/MapItemSavedData/m_164812_ ()V net/minecraft/world/level/saveddata/maps/MapItemSavedData/setDecorationsDirty ()V +MD: net/minecraft/world/level/saveddata/maps/MapItemSavedData/m_181312_ (I)Z net/minecraft/world/level/saveddata/maps/MapItemSavedData/isTrackedCountOverLimit (I)Z +MD: net/minecraft/world/level/saveddata/maps/MapItemSavedData/m_7176_ (Lnet/minecraft/nbt/CompoundTag;)Lnet/minecraft/nbt/CompoundTag; net/minecraft/world/level/saveddata/maps/MapItemSavedData/save (Lnet/minecraft/nbt/CompoundTag;)Lnet/minecraft/nbt/CompoundTag; +MD: net/minecraft/world/level/saveddata/maps/MapItemSavedData/m_77916_ (Lnet/minecraft/world/entity/player/Player;)Lnet/minecraft/world/level/saveddata/maps/MapItemSavedData$HoldingPlayer; net/minecraft/world/level/saveddata/maps/MapItemSavedData/getHoldingPlayer (Lnet/minecraft/world/entity/player/Player;)Lnet/minecraft/world/level/saveddata/maps/MapItemSavedData$HoldingPlayer; +MD: net/minecraft/world/level/saveddata/maps/MapItemSavedData/m_77918_ (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/item/ItemStack;)V net/minecraft/world/level/saveddata/maps/MapItemSavedData/tickCarriedBy (Lnet/minecraft/world/entity/player/Player;Lnet/minecraft/world/item/ItemStack;)V +MD: net/minecraft/world/level/saveddata/maps/MapItemSavedData/m_77925_ (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/core/BlockPos;Ljava/lang/String;Lnet/minecraft/world/level/saveddata/maps/MapDecoration$Type;)V net/minecraft/world/level/saveddata/maps/MapItemSavedData/addTargetDecoration (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/core/BlockPos;Ljava/lang/String;Lnet/minecraft/world/level/saveddata/maps/MapDecoration$Type;)V +MD: net/minecraft/world/level/saveddata/maps/MapItemSavedData/m_77930_ (Lnet/minecraft/world/level/BlockGetter;II)V net/minecraft/world/level/saveddata/maps/MapItemSavedData/checkBanners (Lnet/minecraft/world/level/BlockGetter;II)V +MD: net/minecraft/world/level/saveddata/maps/MapItemSavedData/m_77934_ (Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;)Z net/minecraft/world/level/saveddata/maps/MapItemSavedData/toggleBanner (Lnet/minecraft/world/level/LevelAccessor;Lnet/minecraft/core/BlockPos;)Z +MD: net/minecraft/world/level/saveddata/maps/MapItemSavedData/m_77937_ (Lnet/minecraft/world/level/saveddata/maps/MapDecoration$Type;Lnet/minecraft/world/level/LevelAccessor;Ljava/lang/String;DDDLnet/minecraft/network/chat/Component;)V net/minecraft/world/level/saveddata/maps/MapItemSavedData/addDecoration (Lnet/minecraft/world/level/saveddata/maps/MapDecoration$Type;Lnet/minecraft/world/level/LevelAccessor;Ljava/lang/String;DDDLnet/minecraft/network/chat/Component;)V +MD: net/minecraft/world/level/saveddata/maps/MapItemSavedData/m_77947_ (Lnet/minecraft/core/BlockPos;I)V net/minecraft/world/level/saveddata/maps/MapItemSavedData/removedFromFrame (Lnet/minecraft/core/BlockPos;I)V +MD: net/minecraft/world/level/saveddata/maps/MapItemSavedData/m_77952_ (Lnet/minecraft/nbt/CompoundTag;Lnet/minecraft/nbt/Tag;)V net/minecraft/world/level/saveddata/maps/MapItemSavedData/lambda$save$1 (Lnet/minecraft/nbt/CompoundTag;Lnet/minecraft/nbt/Tag;)V +MD: net/minecraft/world/level/saveddata/maps/MapItemSavedData/m_77957_ (Lnet/minecraft/nbt/CompoundTag;)Ljava/lang/IllegalArgumentException; net/minecraft/world/level/saveddata/maps/MapItemSavedData/lambda$load$0 (Lnet/minecraft/nbt/CompoundTag;)Ljava/lang/IllegalArgumentException; +MD: net/minecraft/world/level/saveddata/maps/MapItemSavedData$HoldingPlayer/ (Lnet/minecraft/world/level/saveddata/maps/MapItemSavedData;Lnet/minecraft/world/entity/player/Player;)V net/minecraft/world/level/saveddata/maps/MapItemSavedData$HoldingPlayer/ (Lnet/minecraft/world/level/saveddata/maps/MapItemSavedData;Lnet/minecraft/world/entity/player/Player;)V +MD: net/minecraft/world/level/saveddata/maps/MapItemSavedData$HoldingPlayer/m_164814_ ()Lnet/minecraft/world/level/saveddata/maps/MapItemSavedData$MapPatch; net/minecraft/world/level/saveddata/maps/MapItemSavedData$HoldingPlayer/createPatch ()Lnet/minecraft/world/level/saveddata/maps/MapItemSavedData$MapPatch; +MD: net/minecraft/world/level/saveddata/maps/MapItemSavedData$HoldingPlayer/m_164815_ (I)Lnet/minecraft/network/protocol/Packet; net/minecraft/world/level/saveddata/maps/MapItemSavedData$HoldingPlayer/nextUpdatePacket (I)Lnet/minecraft/network/protocol/Packet; +MD: net/minecraft/world/level/saveddata/maps/MapItemSavedData$HoldingPlayer/m_164817_ (II)V net/minecraft/world/level/saveddata/maps/MapItemSavedData$HoldingPlayer/markColorsDirty (II)V +MD: net/minecraft/world/level/saveddata/maps/MapItemSavedData$HoldingPlayer/m_164820_ ()V net/minecraft/world/level/saveddata/maps/MapItemSavedData$HoldingPlayer/markDecorationsDirty ()V +MD: net/minecraft/world/level/saveddata/maps/MapItemSavedData$MapPatch/ (IIII[B)V net/minecraft/world/level/saveddata/maps/MapItemSavedData$MapPatch/ (IIII[B)V +MD: net/minecraft/world/level/saveddata/maps/MapItemSavedData$MapPatch/m_164832_ (Lnet/minecraft/world/level/saveddata/maps/MapItemSavedData;)V net/minecraft/world/level/saveddata/maps/MapItemSavedData$MapPatch/applyToMap (Lnet/minecraft/world/level/saveddata/maps/MapItemSavedData;)V +MD: net/minecraft/world/level/storage/CommandStorage/ (Lnet/minecraft/world/level/storage/DimensionDataStorage;)V net/minecraft/world/level/storage/CommandStorage/ (Lnet/minecraft/world/level/storage/DimensionDataStorage;)V +MD: net/minecraft/world/level/storage/CommandStorage/m_164835_ (Ljava/lang/String;)Lnet/minecraft/world/level/storage/CommandStorage$Container; net/minecraft/world/level/storage/CommandStorage/newStorage (Ljava/lang/String;)Lnet/minecraft/world/level/storage/CommandStorage$Container; +MD: net/minecraft/world/level/storage/CommandStorage/m_164837_ (Ljava/lang/String;Lnet/minecraft/nbt/CompoundTag;)Lnet/minecraft/world/level/storage/CommandStorage$Container; net/minecraft/world/level/storage/CommandStorage/lambda$set$1 (Ljava/lang/String;Lnet/minecraft/nbt/CompoundTag;)Lnet/minecraft/world/level/storage/CommandStorage$Container; +MD: net/minecraft/world/level/storage/CommandStorage/m_164840_ (Ljava/util/Map$Entry;)Ljava/util/stream/Stream; net/minecraft/world/level/storage/CommandStorage/lambda$keys$3 (Ljava/util/Map$Entry;)Ljava/util/stream/Stream; +MD: net/minecraft/world/level/storage/CommandStorage/m_164842_ (Ljava/lang/String;Lnet/minecraft/nbt/CompoundTag;)Lnet/minecraft/world/level/storage/CommandStorage$Container; net/minecraft/world/level/storage/CommandStorage/lambda$get$0 (Ljava/lang/String;Lnet/minecraft/nbt/CompoundTag;)Lnet/minecraft/world/level/storage/CommandStorage$Container; +MD: net/minecraft/world/level/storage/CommandStorage/m_164845_ (Ljava/lang/String;)Lnet/minecraft/world/level/storage/CommandStorage$Container; net/minecraft/world/level/storage/CommandStorage/lambda$set$2 (Ljava/lang/String;)Lnet/minecraft/world/level/storage/CommandStorage$Container; +MD: net/minecraft/world/level/storage/CommandStorage/m_78036_ ()Ljava/util/stream/Stream; net/minecraft/world/level/storage/CommandStorage/keys ()Ljava/util/stream/Stream; +MD: net/minecraft/world/level/storage/CommandStorage/m_78037_ (Ljava/lang/String;)Ljava/lang/String; net/minecraft/world/level/storage/CommandStorage/createId (Ljava/lang/String;)Ljava/lang/String; +MD: net/minecraft/world/level/storage/CommandStorage/m_78044_ (Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/nbt/CompoundTag; net/minecraft/world/level/storage/CommandStorage/get (Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/nbt/CompoundTag; +MD: net/minecraft/world/level/storage/CommandStorage/m_78046_ (Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/level/storage/CommandStorage/set (Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/level/storage/CommandStorage$Container/ ()V net/minecraft/world/level/storage/CommandStorage$Container/ ()V +MD: net/minecraft/world/level/storage/CommandStorage$Container/m_164849_ (Lnet/minecraft/nbt/CompoundTag;)Lnet/minecraft/world/level/storage/CommandStorage$Container; net/minecraft/world/level/storage/CommandStorage$Container/load (Lnet/minecraft/nbt/CompoundTag;)Lnet/minecraft/world/level/storage/CommandStorage$Container; +MD: net/minecraft/world/level/storage/CommandStorage$Container/m_7176_ (Lnet/minecraft/nbt/CompoundTag;)Lnet/minecraft/nbt/CompoundTag; net/minecraft/world/level/storage/CommandStorage$Container/save (Lnet/minecraft/nbt/CompoundTag;)Lnet/minecraft/nbt/CompoundTag; +MD: net/minecraft/world/level/storage/CommandStorage$Container/m_78058_ (Ljava/lang/String;)Lnet/minecraft/nbt/CompoundTag; net/minecraft/world/level/storage/CommandStorage$Container/get (Ljava/lang/String;)Lnet/minecraft/nbt/CompoundTag; +MD: net/minecraft/world/level/storage/CommandStorage$Container/m_78060_ (Ljava/lang/String;Ljava/lang/String;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/world/level/storage/CommandStorage$Container/lambda$getKeys$1 (Ljava/lang/String;Ljava/lang/String;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/world/level/storage/CommandStorage$Container/m_78063_ (Ljava/lang/String;Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/level/storage/CommandStorage$Container/put (Ljava/lang/String;Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/level/storage/CommandStorage$Container/m_78068_ (Lnet/minecraft/nbt/CompoundTag;Ljava/lang/String;Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/level/storage/CommandStorage$Container/lambda$save$0 (Lnet/minecraft/nbt/CompoundTag;Ljava/lang/String;Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/level/storage/CommandStorage$Container/m_78072_ (Ljava/lang/String;)Ljava/util/stream/Stream; net/minecraft/world/level/storage/CommandStorage$Container/getKeys (Ljava/lang/String;)Ljava/util/stream/Stream; +MD: net/minecraft/world/level/storage/DataVersion/ ()V net/minecraft/world/level/storage/DataVersion/ ()V +MD: net/minecraft/world/level/storage/DataVersion/ (I)V net/minecraft/world/level/storage/DataVersion/ (I)V +MD: net/minecraft/world/level/storage/DataVersion/ (ILjava/lang/String;)V net/minecraft/world/level/storage/DataVersion/ (ILjava/lang/String;)V +MD: net/minecraft/world/level/storage/DataVersion/m_193002_ ()Z net/minecraft/world/level/storage/DataVersion/isSideSeries ()Z +MD: net/minecraft/world/level/storage/DataVersion/m_193003_ (Lnet/minecraft/world/level/storage/DataVersion;)Z net/minecraft/world/level/storage/DataVersion/isCompatible (Lnet/minecraft/world/level/storage/DataVersion;)Z +MD: net/minecraft/world/level/storage/DataVersion/m_193005_ ()Ljava/lang/String; net/minecraft/world/level/storage/DataVersion/getSeries ()Ljava/lang/String; +MD: net/minecraft/world/level/storage/DataVersion/m_193006_ ()I net/minecraft/world/level/storage/DataVersion/getVersion ()I +MD: net/minecraft/world/level/storage/DerivedLevelData/ (Lnet/minecraft/world/level/storage/WorldData;Lnet/minecraft/world/level/storage/ServerLevelData;)V net/minecraft/world/level/storage/DerivedLevelData/ (Lnet/minecraft/world/level/storage/WorldData;Lnet/minecraft/world/level/storage/ServerLevelData;)V +MD: net/minecraft/world/level/storage/DerivedLevelData/m_142403_ ()Ljava/util/UUID; net/minecraft/world/level/storage/DerivedLevelData/getWanderingTraderId ()Ljava/util/UUID; +MD: net/minecraft/world/level/storage/DerivedLevelData/m_142471_ (Lnet/minecraft/CrashReportCategory;Lnet/minecraft/world/level/LevelHeightAccessor;)V net/minecraft/world/level/storage/DerivedLevelData/fillCrashReportCategory (Lnet/minecraft/CrashReportCategory;Lnet/minecraft/world/level/LevelHeightAccessor;)V +MD: net/minecraft/world/level/storage/DerivedLevelData/m_5458_ (Lnet/minecraft/world/level/GameType;)V net/minecraft/world/level/storage/DerivedLevelData/setGameType (Lnet/minecraft/world/level/GameType;)V +MD: net/minecraft/world/level/storage/DerivedLevelData/m_5462_ ()Ljava/lang/String; net/minecraft/world/level/storage/DerivedLevelData/getLevelName ()Ljava/lang/String; +MD: net/minecraft/world/level/storage/DerivedLevelData/m_5464_ ()Lnet/minecraft/world/level/GameType; net/minecraft/world/level/storage/DerivedLevelData/getGameType ()Lnet/minecraft/world/level/GameType; +MD: net/minecraft/world/level/storage/DerivedLevelData/m_5466_ ()Z net/minecraft/world/level/storage/DerivedLevelData/isHardcore ()Z +MD: net/minecraft/world/level/storage/DerivedLevelData/m_5468_ ()Z net/minecraft/world/level/storage/DerivedLevelData/getAllowCommands ()Z +MD: net/minecraft/world/level/storage/DerivedLevelData/m_5470_ ()Lnet/minecraft/world/level/GameRules; net/minecraft/world/level/storage/DerivedLevelData/getGameRules ()Lnet/minecraft/world/level/GameRules; +MD: net/minecraft/world/level/storage/DerivedLevelData/m_5472_ ()Lnet/minecraft/world/Difficulty; net/minecraft/world/level/storage/DerivedLevelData/getDifficulty ()Lnet/minecraft/world/Difficulty; +MD: net/minecraft/world/level/storage/DerivedLevelData/m_5474_ ()Z net/minecraft/world/level/storage/DerivedLevelData/isDifficultyLocked ()Z +MD: net/minecraft/world/level/storage/DerivedLevelData/m_5555_ (Z)V net/minecraft/world/level/storage/DerivedLevelData/setInitialized (Z)V +MD: net/minecraft/world/level/storage/DerivedLevelData/m_5557_ (Z)V net/minecraft/world/level/storage/DerivedLevelData/setThundering (Z)V +MD: net/minecraft/world/level/storage/DerivedLevelData/m_5565_ (Z)V net/minecraft/world/level/storage/DerivedLevelData/setRaining (Z)V +MD: net/minecraft/world/level/storage/DerivedLevelData/m_5813_ ()Lnet/minecraft/world/level/border/WorldBorder$Settings; net/minecraft/world/level/storage/DerivedLevelData/getWorldBorder ()Lnet/minecraft/world/level/border/WorldBorder$Settings; +MD: net/minecraft/world/level/storage/DerivedLevelData/m_6247_ (J)V net/minecraft/world/level/storage/DerivedLevelData/setDayTime (J)V +MD: net/minecraft/world/level/storage/DerivedLevelData/m_6253_ (J)V net/minecraft/world/level/storage/DerivedLevelData/setGameTime (J)V +MD: net/minecraft/world/level/storage/DerivedLevelData/m_6387_ (I)V net/minecraft/world/level/storage/DerivedLevelData/setWanderingTraderSpawnChance (I)V +MD: net/minecraft/world/level/storage/DerivedLevelData/m_6391_ (I)V net/minecraft/world/level/storage/DerivedLevelData/setWanderingTraderSpawnDelay (I)V +MD: net/minecraft/world/level/storage/DerivedLevelData/m_6393_ (I)V net/minecraft/world/level/storage/DerivedLevelData/setClearWeatherTime (I)V +MD: net/minecraft/world/level/storage/DerivedLevelData/m_6395_ (I)V net/minecraft/world/level/storage/DerivedLevelData/setXSpawn (I)V +MD: net/minecraft/world/level/storage/DerivedLevelData/m_6397_ (I)V net/minecraft/world/level/storage/DerivedLevelData/setYSpawn (I)V +MD: net/minecraft/world/level/storage/DerivedLevelData/m_6398_ (I)V net/minecraft/world/level/storage/DerivedLevelData/setThunderTime (I)V +MD: net/minecraft/world/level/storage/DerivedLevelData/m_6399_ (I)V net/minecraft/world/level/storage/DerivedLevelData/setRainTime (I)V +MD: net/minecraft/world/level/storage/DerivedLevelData/m_6400_ (I)V net/minecraft/world/level/storage/DerivedLevelData/setZSpawn (I)V +MD: net/minecraft/world/level/storage/DerivedLevelData/m_6526_ ()I net/minecraft/world/level/storage/DerivedLevelData/getZSpawn ()I +MD: net/minecraft/world/level/storage/DerivedLevelData/m_6527_ ()I net/minecraft/world/level/storage/DerivedLevelData/getYSpawn ()I +MD: net/minecraft/world/level/storage/DerivedLevelData/m_6528_ ()I net/minecraft/world/level/storage/DerivedLevelData/getWanderingTraderSpawnChance ()I +MD: net/minecraft/world/level/storage/DerivedLevelData/m_6530_ ()I net/minecraft/world/level/storage/DerivedLevelData/getWanderingTraderSpawnDelay ()I +MD: net/minecraft/world/level/storage/DerivedLevelData/m_6531_ ()I net/minecraft/world/level/storage/DerivedLevelData/getRainTime ()I +MD: net/minecraft/world/level/storage/DerivedLevelData/m_6533_ ()Z net/minecraft/world/level/storage/DerivedLevelData/isRaining ()Z +MD: net/minecraft/world/level/storage/DerivedLevelData/m_6534_ ()Z net/minecraft/world/level/storage/DerivedLevelData/isThundering ()Z +MD: net/minecraft/world/level/storage/DerivedLevelData/m_6535_ ()Z net/minecraft/world/level/storage/DerivedLevelData/isInitialized ()Z +MD: net/minecraft/world/level/storage/DerivedLevelData/m_6537_ ()I net/minecraft/world/level/storage/DerivedLevelData/getClearWeatherTime ()I +MD: net/minecraft/world/level/storage/DerivedLevelData/m_6558_ ()I net/minecraft/world/level/storage/DerivedLevelData/getThunderTime ()I +MD: net/minecraft/world/level/storage/DerivedLevelData/m_6789_ ()I net/minecraft/world/level/storage/DerivedLevelData/getXSpawn ()I +MD: net/minecraft/world/level/storage/DerivedLevelData/m_6790_ ()F net/minecraft/world/level/storage/DerivedLevelData/getSpawnAngle ()F +MD: net/minecraft/world/level/storage/DerivedLevelData/m_6792_ ()J net/minecraft/world/level/storage/DerivedLevelData/getDayTime ()J +MD: net/minecraft/world/level/storage/DerivedLevelData/m_6793_ ()J net/minecraft/world/level/storage/DerivedLevelData/getGameTime ()J +MD: net/minecraft/world/level/storage/DerivedLevelData/m_7113_ (F)V net/minecraft/world/level/storage/DerivedLevelData/setSpawnAngle (F)V +MD: net/minecraft/world/level/storage/DerivedLevelData/m_7250_ (Lnet/minecraft/core/BlockPos;F)V net/minecraft/world/level/storage/DerivedLevelData/setSpawn (Lnet/minecraft/core/BlockPos;F)V +MD: net/minecraft/world/level/storage/DerivedLevelData/m_7540_ ()Lnet/minecraft/world/level/timers/TimerQueue; net/minecraft/world/level/storage/DerivedLevelData/getScheduledEvents ()Lnet/minecraft/world/level/timers/TimerQueue; +MD: net/minecraft/world/level/storage/DerivedLevelData/m_7831_ (Lnet/minecraft/world/level/border/WorldBorder$Settings;)V net/minecraft/world/level/storage/DerivedLevelData/setWorldBorder (Lnet/minecraft/world/level/border/WorldBorder$Settings;)V +MD: net/minecraft/world/level/storage/DerivedLevelData/m_8115_ (Ljava/util/UUID;)V net/minecraft/world/level/storage/DerivedLevelData/setWanderingTraderId (Ljava/util/UUID;)V +MD: net/minecraft/world/level/storage/DimensionDataStorage/ ()V net/minecraft/world/level/storage/DimensionDataStorage/ ()V +MD: net/minecraft/world/level/storage/DimensionDataStorage/ (Ljava/io/File;Lcom/mojang/datafixers/DataFixer;)V net/minecraft/world/level/storage/DimensionDataStorage/ (Ljava/io/File;Lcom/mojang/datafixers/DataFixer;)V +MD: net/minecraft/world/level/storage/DimensionDataStorage/m_164855_ (Ljava/lang/String;Lnet/minecraft/world/level/saveddata/SavedData;)V net/minecraft/world/level/storage/DimensionDataStorage/set (Ljava/lang/String;Lnet/minecraft/world/level/saveddata/SavedData;)V +MD: net/minecraft/world/level/storage/DimensionDataStorage/m_164858_ (Ljava/util/function/Function;Ljava/lang/String;)Lnet/minecraft/world/level/saveddata/SavedData; net/minecraft/world/level/storage/DimensionDataStorage/get (Ljava/util/function/Function;Ljava/lang/String;)Lnet/minecraft/world/level/saveddata/SavedData; +MD: net/minecraft/world/level/storage/DimensionDataStorage/m_164861_ (Ljava/util/function/Function;Ljava/util/function/Supplier;Ljava/lang/String;)Lnet/minecraft/world/level/saveddata/SavedData; net/minecraft/world/level/storage/DimensionDataStorage/computeIfAbsent (Ljava/util/function/Function;Ljava/util/function/Supplier;Ljava/lang/String;)Lnet/minecraft/world/level/saveddata/SavedData; +MD: net/minecraft/world/level/storage/DimensionDataStorage/m_164865_ (Ljava/lang/String;Lnet/minecraft/world/level/saveddata/SavedData;)V net/minecraft/world/level/storage/DimensionDataStorage/lambda$save$0 (Ljava/lang/String;Lnet/minecraft/world/level/saveddata/SavedData;)V +MD: net/minecraft/world/level/storage/DimensionDataStorage/m_164868_ (Ljava/util/function/Function;Ljava/lang/String;)Lnet/minecraft/world/level/saveddata/SavedData; net/minecraft/world/level/storage/DimensionDataStorage/readSavedData (Ljava/util/function/Function;Ljava/lang/String;)Lnet/minecraft/world/level/saveddata/SavedData; +MD: net/minecraft/world/level/storage/DimensionDataStorage/m_78151_ ()V net/minecraft/world/level/storage/DimensionDataStorage/save ()V +MD: net/minecraft/world/level/storage/DimensionDataStorage/m_78154_ (Ljava/io/PushbackInputStream;)Z net/minecraft/world/level/storage/DimensionDataStorage/isGzip (Ljava/io/PushbackInputStream;)Z +MD: net/minecraft/world/level/storage/DimensionDataStorage/m_78156_ (Ljava/lang/String;)Ljava/io/File; net/minecraft/world/level/storage/DimensionDataStorage/getDataFile (Ljava/lang/String;)Ljava/io/File; +MD: net/minecraft/world/level/storage/DimensionDataStorage/m_78158_ (Ljava/lang/String;I)Lnet/minecraft/nbt/CompoundTag; net/minecraft/world/level/storage/DimensionDataStorage/readTagFromDisk (Ljava/lang/String;I)Lnet/minecraft/nbt/CompoundTag; +MD: net/minecraft/world/level/storage/LevelData/m_142471_ (Lnet/minecraft/CrashReportCategory;Lnet/minecraft/world/level/LevelHeightAccessor;)V net/minecraft/world/level/storage/LevelData/fillCrashReportCategory (Lnet/minecraft/CrashReportCategory;Lnet/minecraft/world/level/LevelHeightAccessor;)V +MD: net/minecraft/world/level/storage/LevelData/m_164871_ (Lnet/minecraft/world/level/LevelHeightAccessor;)Ljava/lang/String; net/minecraft/world/level/storage/LevelData/lambda$fillCrashReportCategory$0 (Lnet/minecraft/world/level/LevelHeightAccessor;)Ljava/lang/String; +MD: net/minecraft/world/level/storage/LevelData/m_241764_ ()Ljava/lang/String; net/minecraft/world/level/storage/LevelData/lambda$fillCrashReportCategory$1 ()Ljava/lang/String; +MD: net/minecraft/world/level/storage/LevelData/m_5466_ ()Z net/minecraft/world/level/storage/LevelData/isHardcore ()Z +MD: net/minecraft/world/level/storage/LevelData/m_5470_ ()Lnet/minecraft/world/level/GameRules; net/minecraft/world/level/storage/LevelData/getGameRules ()Lnet/minecraft/world/level/GameRules; +MD: net/minecraft/world/level/storage/LevelData/m_5472_ ()Lnet/minecraft/world/Difficulty; net/minecraft/world/level/storage/LevelData/getDifficulty ()Lnet/minecraft/world/Difficulty; +MD: net/minecraft/world/level/storage/LevelData/m_5474_ ()Z net/minecraft/world/level/storage/LevelData/isDifficultyLocked ()Z +MD: net/minecraft/world/level/storage/LevelData/m_5565_ (Z)V net/minecraft/world/level/storage/LevelData/setRaining (Z)V +MD: net/minecraft/world/level/storage/LevelData/m_6526_ ()I net/minecraft/world/level/storage/LevelData/getZSpawn ()I +MD: net/minecraft/world/level/storage/LevelData/m_6527_ ()I net/minecraft/world/level/storage/LevelData/getYSpawn ()I +MD: net/minecraft/world/level/storage/LevelData/m_6533_ ()Z net/minecraft/world/level/storage/LevelData/isRaining ()Z +MD: net/minecraft/world/level/storage/LevelData/m_6534_ ()Z net/minecraft/world/level/storage/LevelData/isThundering ()Z +MD: net/minecraft/world/level/storage/LevelData/m_6789_ ()I net/minecraft/world/level/storage/LevelData/getXSpawn ()I +MD: net/minecraft/world/level/storage/LevelData/m_6790_ ()F net/minecraft/world/level/storage/LevelData/getSpawnAngle ()F +MD: net/minecraft/world/level/storage/LevelData/m_6792_ ()J net/minecraft/world/level/storage/LevelData/getDayTime ()J +MD: net/minecraft/world/level/storage/LevelData/m_6793_ ()J net/minecraft/world/level/storage/LevelData/getGameTime ()J +MD: net/minecraft/world/level/storage/LevelResource/ ()V net/minecraft/world/level/storage/LevelResource/ ()V +MD: net/minecraft/world/level/storage/LevelResource/ (Ljava/lang/String;)V net/minecraft/world/level/storage/LevelResource/ (Ljava/lang/String;)V +MD: net/minecraft/world/level/storage/LevelResource/m_78187_ ()Ljava/lang/String; net/minecraft/world/level/storage/LevelResource/getId ()Ljava/lang/String; +MD: net/minecraft/world/level/storage/LevelResource/toString ()Ljava/lang/String; net/minecraft/world/level/storage/LevelResource/toString ()Ljava/lang/String; +MD: net/minecraft/world/level/storage/LevelStorageException/ (Lnet/minecraft/network/chat/Component;)V net/minecraft/world/level/storage/LevelStorageException/ (Lnet/minecraft/network/chat/Component;)V +MD: net/minecraft/world/level/storage/LevelStorageException/m_230806_ ()Lnet/minecraft/network/chat/Component; net/minecraft/world/level/storage/LevelStorageException/getMessageComponent ()Lnet/minecraft/network/chat/Component; +MD: net/minecraft/world/level/storage/LevelStorageSource/ ()V net/minecraft/world/level/storage/LevelStorageSource/ ()V +MD: net/minecraft/world/level/storage/LevelStorageSource/ (Ljava/nio/file/Path;Ljava/nio/file/Path;Lnet/minecraft/world/level/validation/DirectoryValidator;Lcom/mojang/datafixers/DataFixer;)V net/minecraft/world/level/storage/LevelStorageSource/ (Ljava/nio/file/Path;Ljava/nio/file/Path;Lnet/minecraft/world/level/validation/DirectoryValidator;Lcom/mojang/datafixers/DataFixer;)V +MD: net/minecraft/world/level/storage/LevelStorageSource/m_164909_ ()Ljava/lang/String; net/minecraft/world/level/storage/LevelStorageSource/getName ()Ljava/lang/String; +MD: net/minecraft/world/level/storage/LevelStorageSource/m_230813_ (Lnet/minecraft/world/level/storage/LevelStorageSource$LevelCandidates;)Ljava/util/concurrent/CompletableFuture; net/minecraft/world/level/storage/LevelStorageSource/loadLevelSummaries (Lnet/minecraft/world/level/storage/LevelStorageSource$LevelCandidates;)Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/world/level/storage/LevelStorageSource/m_230815_ (Lnet/minecraft/world/level/storage/LevelStorageSource$LevelDirectory;)Lnet/minecraft/world/level/storage/LevelSummary; net/minecraft/world/level/storage/LevelStorageSource/lambda$loadLevelSummaries$2 (Lnet/minecraft/world/level/storage/LevelStorageSource$LevelDirectory;)Lnet/minecraft/world/level/storage/LevelSummary; +MD: net/minecraft/world/level/storage/LevelStorageSource/m_230817_ (Lnet/minecraft/world/level/storage/LevelStorageSource$LevelDirectory;Ljava/util/function/BiFunction;)Ljava/lang/Object; net/minecraft/world/level/storage/LevelStorageSource/readLevelData (Lnet/minecraft/world/level/storage/LevelStorageSource$LevelDirectory;Ljava/util/function/BiFunction;)Ljava/lang/Object; +MD: net/minecraft/world/level/storage/LevelStorageSource/m_230820_ (Lnet/minecraft/world/level/storage/LevelStorageSource$LevelDirectory;Z)Ljava/util/function/BiFunction; net/minecraft/world/level/storage/LevelStorageSource/levelSummaryReader (Lnet/minecraft/world/level/storage/LevelStorageSource$LevelDirectory;Z)Ljava/util/function/BiFunction; +MD: net/minecraft/world/level/storage/LevelStorageSource/m_230828_ (Ljava/nio/file/Path;Lcom/mojang/datafixers/DataFixer;)Lnet/minecraft/world/level/WorldDataConfiguration; net/minecraft/world/level/storage/LevelStorageSource/getDataConfiguration (Ljava/nio/file/Path;Lcom/mojang/datafixers/DataFixer;)Lnet/minecraft/world/level/WorldDataConfiguration; +MD: net/minecraft/world/level/storage/LevelStorageSource/m_230831_ (Ljava/util/List;)Ljava/util/List; net/minecraft/world/level/storage/LevelStorageSource/lambda$loadLevelSummaries$3 (Ljava/util/List;)Ljava/util/List; +MD: net/minecraft/world/level/storage/LevelStorageSource/m_230833_ ()Lnet/minecraft/world/level/storage/LevelStorageSource$LevelCandidates; net/minecraft/world/level/storage/LevelStorageSource/findLevelCandidates ()Lnet/minecraft/world/level/storage/LevelStorageSource$LevelCandidates; +MD: net/minecraft/world/level/storage/LevelStorageSource/m_230834_ (Lnet/minecraft/world/level/storage/LevelStorageSource$LevelDirectory;)Z net/minecraft/world/level/storage/LevelStorageSource/lambda$findLevelCandidates$1 (Lnet/minecraft/world/level/storage/LevelStorageSource$LevelDirectory;)Z +MD: net/minecraft/world/level/storage/LevelStorageSource/m_230836_ (Ljava/nio/file/Path;)Lnet/minecraft/nbt/Tag; net/minecraft/world/level/storage/LevelStorageSource/readLightweightData (Ljava/nio/file/Path;)Lnet/minecraft/nbt/Tag; +MD: net/minecraft/world/level/storage/LevelStorageSource/m_230838_ (Ljava/nio/file/Path;)Z net/minecraft/world/level/storage/LevelStorageSource/lambda$findLevelCandidates$0 (Ljava/nio/file/Path;)Z +MD: net/minecraft/world/level/storage/LevelStorageSource/m_245030_ (Lcom/mojang/serialization/Dynamic;)Ljava/util/stream/Stream; net/minecraft/world/level/storage/LevelStorageSource/lambda$parseFeatureFlagsFromSummary$6 (Lcom/mojang/serialization/Dynamic;)Ljava/util/stream/Stream; +MD: net/minecraft/world/level/storage/LevelStorageSource/m_245033_ (Lnet/minecraft/resources/ResourceLocation;)V net/minecraft/world/level/storage/LevelStorageSource/lambda$parseFeatureFlagsFromSummary$7 (Lnet/minecraft/resources/ResourceLocation;)V +MD: net/minecraft/world/level/storage/LevelStorageSource/m_245503_ (Lcom/mojang/serialization/DynamicOps;Lnet/minecraft/world/level/WorldDataConfiguration;Lnet/minecraft/core/Registry;Lcom/mojang/serialization/Lifecycle;)Ljava/util/function/BiFunction; net/minecraft/world/level/storage/LevelStorageSource/getLevelData (Lcom/mojang/serialization/DynamicOps;Lnet/minecraft/world/level/WorldDataConfiguration;Lnet/minecraft/core/Registry;Lcom/mojang/serialization/Lifecycle;)Ljava/util/function/BiFunction; +MD: net/minecraft/world/level/storage/LevelStorageSource/m_245610_ (Lcom/mojang/serialization/Dynamic;)Lnet/minecraft/world/level/WorldDataConfiguration; net/minecraft/world/level/storage/LevelStorageSource/readDataConfig (Lcom/mojang/serialization/Dynamic;)Lnet/minecraft/world/level/WorldDataConfiguration; +MD: net/minecraft/world/level/storage/LevelStorageSource/m_247076_ (Lcom/mojang/serialization/Dynamic;)Lnet/minecraft/world/flag/FeatureFlagSet; net/minecraft/world/level/storage/LevelStorageSource/parseFeatureFlagsFromSummary (Lcom/mojang/serialization/Dynamic;)Lnet/minecraft/world/flag/FeatureFlagSet; +MD: net/minecraft/world/level/storage/LevelStorageSource/m_247212_ (Lcom/mojang/serialization/Dynamic;Lcom/mojang/datafixers/DataFixer;I)Lcom/mojang/serialization/DataResult; net/minecraft/world/level/storage/LevelStorageSource/readWorldGenSettings (Lcom/mojang/serialization/Dynamic;Lcom/mojang/datafixers/DataFixer;I)Lcom/mojang/serialization/DataResult; +MD: net/minecraft/world/level/storage/LevelStorageSource/m_264027_ (Lcom/mojang/serialization/DynamicOps;Lnet/minecraft/world/level/WorldDataConfiguration;Lnet/minecraft/core/Registry;Lcom/mojang/serialization/Lifecycle;Ljava/nio/file/Path;Lcom/mojang/datafixers/DataFixer;)Lcom/mojang/datafixers/util/Pair; net/minecraft/world/level/storage/LevelStorageSource/lambda$getLevelData$4 (Lcom/mojang/serialization/DynamicOps;Lnet/minecraft/world/level/WorldDataConfiguration;Lnet/minecraft/core/Registry;Lcom/mojang/serialization/Lifecycle;Ljava/nio/file/Path;Lcom/mojang/datafixers/DataFixer;)Lcom/mojang/datafixers/util/Pair; +MD: net/minecraft/world/level/storage/LevelStorageSource/m_289842_ (Lnet/minecraft/world/level/storage/LevelStorageSource$LevelDirectory;ZLjava/nio/file/Path;Lcom/mojang/datafixers/DataFixer;)Lnet/minecraft/world/level/storage/LevelSummary; net/minecraft/world/level/storage/LevelStorageSource/lambda$levelSummaryReader$5 (Lnet/minecraft/world/level/storage/LevelStorageSource$LevelDirectory;ZLjava/nio/file/Path;Lcom/mojang/datafixers/DataFixer;)Lnet/minecraft/world/level/storage/LevelSummary; +MD: net/minecraft/world/level/storage/LevelStorageSource/m_289863_ ()Lnet/minecraft/world/level/validation/DirectoryValidator; net/minecraft/world/level/storage/LevelStorageSource/getWorldDirValidator ()Lnet/minecraft/world/level/validation/DirectoryValidator; +MD: net/minecraft/world/level/storage/LevelStorageSource/m_289864_ (Ljava/lang/String;)Lnet/minecraft/world/level/storage/LevelStorageSource$LevelStorageAccess; net/minecraft/world/level/storage/LevelStorageSource/validateAndCreateAccess (Ljava/lang/String;)Lnet/minecraft/world/level/storage/LevelStorageSource$LevelStorageAccess; +MD: net/minecraft/world/level/storage/LevelStorageSource/m_289874_ (Ljava/lang/String;)Ljava/nio/file/Path; net/minecraft/world/level/storage/LevelStorageSource/getLevelPath (Ljava/lang/String;)Ljava/nio/file/Path; +MD: net/minecraft/world/level/storage/LevelStorageSource/m_289881_ (Ljava/nio/file/Path;)Lnet/minecraft/world/level/validation/DirectoryValidator; net/minecraft/world/level/storage/LevelStorageSource/parseValidator (Ljava/nio/file/Path;)Lnet/minecraft/world/level/validation/DirectoryValidator; +MD: net/minecraft/world/level/storage/LevelStorageSource/m_78240_ (Ljava/lang/String;)Z net/minecraft/world/level/storage/LevelStorageSource/isNewLevelIdAcceptable (Ljava/lang/String;)Z +MD: net/minecraft/world/level/storage/LevelStorageSource/m_78242_ (Ljava/nio/file/Path;)Lnet/minecraft/world/level/storage/LevelStorageSource; net/minecraft/world/level/storage/LevelStorageSource/createDefault (Ljava/nio/file/Path;)Lnet/minecraft/world/level/storage/LevelStorageSource; +MD: net/minecraft/world/level/storage/LevelStorageSource/m_78255_ (Ljava/lang/String;)Z net/minecraft/world/level/storage/LevelStorageSource/levelExists (Ljava/lang/String;)Z +MD: net/minecraft/world/level/storage/LevelStorageSource/m_78257_ ()Ljava/nio/file/Path; net/minecraft/world/level/storage/LevelStorageSource/getBaseDir ()Ljava/nio/file/Path; +MD: net/minecraft/world/level/storage/LevelStorageSource/m_78260_ (Ljava/lang/String;)Lnet/minecraft/world/level/storage/LevelStorageSource$LevelStorageAccess; net/minecraft/world/level/storage/LevelStorageSource/createAccess (Ljava/lang/String;)Lnet/minecraft/world/level/storage/LevelStorageSource$LevelStorageAccess; +MD: net/minecraft/world/level/storage/LevelStorageSource/m_78262_ ()Ljava/nio/file/Path; net/minecraft/world/level/storage/LevelStorageSource/getBackupPath ()Ljava/nio/file/Path; +MD: net/minecraft/world/level/storage/LevelStorageSource/m_78265_ ()I net/minecraft/world/level/storage/LevelStorageSource/getStorageVersion ()I +MD: net/minecraft/world/level/storage/LevelStorageSource$LevelCandidates/ (Ljava/util/List;)V net/minecraft/world/level/storage/LevelStorageSource$LevelCandidates/ (Ljava/util/List;)V +MD: net/minecraft/world/level/storage/LevelStorageSource$LevelCandidates/equals (Ljava/lang/Object;)Z net/minecraft/world/level/storage/LevelStorageSource$LevelCandidates/equals (Ljava/lang/Object;)Z +MD: net/minecraft/world/level/storage/LevelStorageSource$LevelCandidates/f_230840_ ()Ljava/util/List; net/minecraft/world/level/storage/LevelStorageSource$LevelCandidates/levels ()Ljava/util/List; +MD: net/minecraft/world/level/storage/LevelStorageSource$LevelCandidates/hashCode ()I net/minecraft/world/level/storage/LevelStorageSource$LevelCandidates/hashCode ()I +MD: net/minecraft/world/level/storage/LevelStorageSource$LevelCandidates/iterator ()Ljava/util/Iterator; net/minecraft/world/level/storage/LevelStorageSource$LevelCandidates/iterator ()Ljava/util/Iterator; +MD: net/minecraft/world/level/storage/LevelStorageSource$LevelCandidates/m_230843_ ()Z net/minecraft/world/level/storage/LevelStorageSource$LevelCandidates/isEmpty ()Z +MD: net/minecraft/world/level/storage/LevelStorageSource$LevelCandidates/toString ()Ljava/lang/String; net/minecraft/world/level/storage/LevelStorageSource$LevelCandidates/toString ()Ljava/lang/String; +MD: net/minecraft/world/level/storage/LevelStorageSource$LevelDirectory/ (Ljava/nio/file/Path;)V net/minecraft/world/level/storage/LevelStorageSource$LevelDirectory/ (Ljava/nio/file/Path;)V +MD: net/minecraft/world/level/storage/LevelStorageSource$LevelDirectory/equals (Ljava/lang/Object;)Z net/minecraft/world/level/storage/LevelStorageSource$LevelDirectory/equals (Ljava/lang/Object;)Z +MD: net/minecraft/world/level/storage/LevelStorageSource$LevelDirectory/f_230850_ ()Ljava/nio/file/Path; net/minecraft/world/level/storage/LevelStorageSource$LevelDirectory/path ()Ljava/nio/file/Path; +MD: net/minecraft/world/level/storage/LevelStorageSource$LevelDirectory/hashCode ()I net/minecraft/world/level/storage/LevelStorageSource$LevelDirectory/hashCode ()I +MD: net/minecraft/world/level/storage/LevelStorageSource$LevelDirectory/m_230853_ ()Ljava/lang/String; net/minecraft/world/level/storage/LevelStorageSource$LevelDirectory/directoryName ()Ljava/lang/String; +MD: net/minecraft/world/level/storage/LevelStorageSource$LevelDirectory/m_230854_ (Lnet/minecraft/world/level/storage/LevelResource;)Ljava/nio/file/Path; net/minecraft/world/level/storage/LevelStorageSource$LevelDirectory/resourcePath (Lnet/minecraft/world/level/storage/LevelResource;)Ljava/nio/file/Path; +MD: net/minecraft/world/level/storage/LevelStorageSource$LevelDirectory/m_230856_ (Ljava/time/LocalDateTime;)Ljava/nio/file/Path; net/minecraft/world/level/storage/LevelStorageSource$LevelDirectory/corruptedDataFile (Ljava/time/LocalDateTime;)Ljava/nio/file/Path; +MD: net/minecraft/world/level/storage/LevelStorageSource$LevelDirectory/m_230858_ ()Ljava/nio/file/Path; net/minecraft/world/level/storage/LevelStorageSource$LevelDirectory/dataFile ()Ljava/nio/file/Path; +MD: net/minecraft/world/level/storage/LevelStorageSource$LevelDirectory/m_230859_ ()Ljava/nio/file/Path; net/minecraft/world/level/storage/LevelStorageSource$LevelDirectory/oldDataFile ()Ljava/nio/file/Path; +MD: net/minecraft/world/level/storage/LevelStorageSource$LevelDirectory/m_230860_ ()Ljava/nio/file/Path; net/minecraft/world/level/storage/LevelStorageSource$LevelDirectory/iconFile ()Ljava/nio/file/Path; +MD: net/minecraft/world/level/storage/LevelStorageSource$LevelDirectory/m_230861_ ()Ljava/nio/file/Path; net/minecraft/world/level/storage/LevelStorageSource$LevelDirectory/lockFile ()Ljava/nio/file/Path; +MD: net/minecraft/world/level/storage/LevelStorageSource$LevelDirectory/toString ()Ljava/lang/String; net/minecraft/world/level/storage/LevelStorageSource$LevelDirectory/toString ()Ljava/lang/String; +MD: net/minecraft/world/level/storage/LevelStorageSource$LevelStorageAccess/ (Lnet/minecraft/world/level/storage/LevelStorageSource;Ljava/lang/String;Ljava/nio/file/Path;)V net/minecraft/world/level/storage/LevelStorageSource$LevelStorageAccess/ (Lnet/minecraft/world/level/storage/LevelStorageSource;Ljava/lang/String;Ljava/nio/file/Path;)V +MD: net/minecraft/world/level/storage/LevelStorageSource$LevelStorageAccess/close ()V net/minecraft/world/level/storage/LevelStorageSource$LevelStorageAccess/close ()V +MD: net/minecraft/world/level/storage/LevelStorageSource$LevelStorageAccess/m_182514_ ()Ljava/util/Optional; net/minecraft/world/level/storage/LevelStorageSource$LevelStorageAccess/getIconFile ()Ljava/util/Optional; +MD: net/minecraft/world/level/storage/LevelStorageSource$LevelStorageAccess/m_197394_ (Lnet/minecraft/resources/ResourceKey;)Ljava/nio/file/Path; net/minecraft/world/level/storage/LevelStorageSource$LevelStorageAccess/getDimensionPath (Lnet/minecraft/resources/ResourceKey;)Ljava/nio/file/Path; +MD: net/minecraft/world/level/storage/LevelStorageSource$LevelStorageAccess/m_246049_ (Lcom/mojang/serialization/DynamicOps;Lnet/minecraft/world/level/WorldDataConfiguration;Lnet/minecraft/core/Registry;Lcom/mojang/serialization/Lifecycle;)Lcom/mojang/datafixers/util/Pair; net/minecraft/world/level/storage/LevelStorageSource$LevelStorageAccess/getDataTag (Lcom/mojang/serialization/DynamicOps;Lnet/minecraft/world/level/WorldDataConfiguration;Lnet/minecraft/core/Registry;Lcom/mojang/serialization/Lifecycle;)Lcom/mojang/datafixers/util/Pair; +MD: net/minecraft/world/level/storage/LevelStorageSource$LevelStorageAccess/m_247706_ ()Lnet/minecraft/world/level/WorldDataConfiguration; net/minecraft/world/level/storage/LevelStorageSource$LevelStorageAccess/getDataConfiguration ()Lnet/minecraft/world/level/WorldDataConfiguration; +MD: net/minecraft/world/level/storage/LevelStorageSource$LevelStorageAccess/m_78277_ ()Ljava/lang/String; net/minecraft/world/level/storage/LevelStorageSource$LevelStorageAccess/getLevelId ()Ljava/lang/String; +MD: net/minecraft/world/level/storage/LevelStorageSource$LevelStorageAccess/m_78283_ (Lnet/minecraft/world/level/storage/LevelResource;)Ljava/nio/file/Path; net/minecraft/world/level/storage/LevelStorageSource$LevelStorageAccess/getLevelPath (Lnet/minecraft/world/level/storage/LevelResource;)Ljava/nio/file/Path; +MD: net/minecraft/world/level/storage/LevelStorageSource$LevelStorageAccess/m_78287_ (Lnet/minecraft/core/RegistryAccess;Lnet/minecraft/world/level/storage/WorldData;)V net/minecraft/world/level/storage/LevelStorageSource$LevelStorageAccess/saveDataTag (Lnet/minecraft/core/RegistryAccess;Lnet/minecraft/world/level/storage/WorldData;)V +MD: net/minecraft/world/level/storage/LevelStorageSource$LevelStorageAccess/m_78290_ (Lnet/minecraft/core/RegistryAccess;Lnet/minecraft/world/level/storage/WorldData;Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/level/storage/LevelStorageSource$LevelStorageAccess/saveDataTag (Lnet/minecraft/core/RegistryAccess;Lnet/minecraft/world/level/storage/WorldData;Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/level/storage/LevelStorageSource$LevelStorageAccess/m_78297_ (Ljava/lang/String;)V net/minecraft/world/level/storage/LevelStorageSource$LevelStorageAccess/renameLevel (Ljava/lang/String;)V +MD: net/minecraft/world/level/storage/LevelStorageSource$LevelStorageAccess/m_78301_ ()Lnet/minecraft/world/level/storage/PlayerDataStorage; net/minecraft/world/level/storage/LevelStorageSource$LevelStorageAccess/createPlayerStorage ()Lnet/minecraft/world/level/storage/PlayerDataStorage; +MD: net/minecraft/world/level/storage/LevelStorageSource$LevelStorageAccess/m_78308_ ()Lnet/minecraft/world/level/storage/LevelSummary; net/minecraft/world/level/storage/LevelStorageSource$LevelStorageAccess/getSummary ()Lnet/minecraft/world/level/storage/LevelSummary; +MD: net/minecraft/world/level/storage/LevelStorageSource$LevelStorageAccess/m_78311_ ()V net/minecraft/world/level/storage/LevelStorageSource$LevelStorageAccess/deleteLevel ()V +MD: net/minecraft/world/level/storage/LevelStorageSource$LevelStorageAccess/m_78312_ ()J net/minecraft/world/level/storage/LevelStorageSource$LevelStorageAccess/makeWorldBackup ()J +MD: net/minecraft/world/level/storage/LevelStorageSource$LevelStorageAccess/m_78313_ ()V net/minecraft/world/level/storage/LevelStorageSource$LevelStorageAccess/checkLock ()V +MD: net/minecraft/world/level/storage/LevelStorageSource$LevelStorageAccess$1/ (Lnet/minecraft/world/level/storage/LevelStorageSource$LevelStorageAccess;Ljava/nio/file/Path;)V net/minecraft/world/level/storage/LevelStorageSource$LevelStorageAccess$1/ (Lnet/minecraft/world/level/storage/LevelStorageSource$LevelStorageAccess;Ljava/nio/file/Path;)V +MD: net/minecraft/world/level/storage/LevelStorageSource$LevelStorageAccess$1/postVisitDirectory (Ljava/nio/file/Path;Ljava/io/IOException;)Ljava/nio/file/FileVisitResult; net/minecraft/world/level/storage/LevelStorageSource$LevelStorageAccess$1/postVisitDirectory (Ljava/nio/file/Path;Ljava/io/IOException;)Ljava/nio/file/FileVisitResult; +MD: net/minecraft/world/level/storage/LevelStorageSource$LevelStorageAccess$1/postVisitDirectory (Ljava/lang/Object;Ljava/io/IOException;)Ljava/nio/file/FileVisitResult; net/minecraft/world/level/storage/LevelStorageSource$LevelStorageAccess$1/postVisitDirectory (Ljava/lang/Object;Ljava/io/IOException;)Ljava/nio/file/FileVisitResult; +MD: net/minecraft/world/level/storage/LevelStorageSource$LevelStorageAccess$1/visitFile (Ljava/nio/file/Path;Ljava/nio/file/attribute/BasicFileAttributes;)Ljava/nio/file/FileVisitResult; net/minecraft/world/level/storage/LevelStorageSource$LevelStorageAccess$1/visitFile (Ljava/nio/file/Path;Ljava/nio/file/attribute/BasicFileAttributes;)Ljava/nio/file/FileVisitResult; +MD: net/minecraft/world/level/storage/LevelStorageSource$LevelStorageAccess$1/visitFile (Ljava/lang/Object;Ljava/nio/file/attribute/BasicFileAttributes;)Ljava/nio/file/FileVisitResult; net/minecraft/world/level/storage/LevelStorageSource$LevelStorageAccess$1/visitFile (Ljava/lang/Object;Ljava/nio/file/attribute/BasicFileAttributes;)Ljava/nio/file/FileVisitResult; +MD: net/minecraft/world/level/storage/LevelStorageSource$LevelStorageAccess$2/ (Lnet/minecraft/world/level/storage/LevelStorageSource$LevelStorageAccess;Ljava/nio/file/Path;Ljava/util/zip/ZipOutputStream;)V net/minecraft/world/level/storage/LevelStorageSource$LevelStorageAccess$2/ (Lnet/minecraft/world/level/storage/LevelStorageSource$LevelStorageAccess;Ljava/nio/file/Path;Ljava/util/zip/ZipOutputStream;)V +MD: net/minecraft/world/level/storage/LevelStorageSource$LevelStorageAccess$2/visitFile (Ljava/nio/file/Path;Ljava/nio/file/attribute/BasicFileAttributes;)Ljava/nio/file/FileVisitResult; net/minecraft/world/level/storage/LevelStorageSource$LevelStorageAccess$2/visitFile (Ljava/nio/file/Path;Ljava/nio/file/attribute/BasicFileAttributes;)Ljava/nio/file/FileVisitResult; +MD: net/minecraft/world/level/storage/LevelStorageSource$LevelStorageAccess$2/visitFile (Ljava/lang/Object;Ljava/nio/file/attribute/BasicFileAttributes;)Ljava/nio/file/FileVisitResult; net/minecraft/world/level/storage/LevelStorageSource$LevelStorageAccess$2/visitFile (Ljava/lang/Object;Ljava/nio/file/attribute/BasicFileAttributes;)Ljava/nio/file/FileVisitResult; +MD: net/minecraft/world/level/storage/LevelSummary/ (Lnet/minecraft/world/level/LevelSettings;Lnet/minecraft/world/level/storage/LevelVersion;Ljava/lang/String;ZZZLjava/nio/file/Path;)V net/minecraft/world/level/storage/LevelSummary/ (Lnet/minecraft/world/level/LevelSettings;Lnet/minecraft/world/level/storage/LevelVersion;Ljava/lang/String;ZZZLjava/nio/file/Path;)V +MD: net/minecraft/world/level/storage/LevelSummary/compareTo (Lnet/minecraft/world/level/storage/LevelSummary;)I net/minecraft/world/level/storage/LevelSummary/compareTo (Lnet/minecraft/world/level/storage/LevelSummary;)I +MD: net/minecraft/world/level/storage/LevelSummary/compareTo (Ljava/lang/Object;)I net/minecraft/world/level/storage/LevelSummary/compareTo (Ljava/lang/Object;)I +MD: net/minecraft/world/level/storage/LevelSummary/m_164913_ ()Lnet/minecraft/world/level/LevelSettings; net/minecraft/world/level/storage/LevelSummary/getSettings ()Lnet/minecraft/world/level/LevelSettings; +MD: net/minecraft/world/level/storage/LevelSummary/m_164914_ ()Lnet/minecraft/world/level/storage/LevelSummary$BackupStatus; net/minecraft/world/level/storage/LevelSummary/backupStatus ()Lnet/minecraft/world/level/storage/LevelSummary$BackupStatus; +MD: net/minecraft/world/level/storage/LevelSummary/m_164916_ ()Z net/minecraft/world/level/storage/LevelSummary/isDisabled ()Z +MD: net/minecraft/world/level/storage/LevelSummary/m_193020_ ()Z net/minecraft/world/level/storage/LevelSummary/requiresManualConversion ()Z +MD: net/minecraft/world/level/storage/LevelSummary/m_193021_ ()Z net/minecraft/world/level/storage/LevelSummary/isCompatible ()Z +MD: net/minecraft/world/level/storage/LevelSummary/m_230875_ ()Ljava/nio/file/Path; net/minecraft/world/level/storage/LevelSummary/getIcon ()Ljava/nio/file/Path; +MD: net/minecraft/world/level/storage/LevelSummary/m_246454_ ()Z net/minecraft/world/level/storage/LevelSummary/isExperimental ()Z +MD: net/minecraft/world/level/storage/LevelSummary/m_264381_ (Lnet/minecraft/network/chat/Style;)Lnet/minecraft/network/chat/Style; net/minecraft/world/level/storage/LevelSummary/lambda$createInfo$0 (Lnet/minecraft/network/chat/Style;)Lnet/minecraft/network/chat/Style; +MD: net/minecraft/world/level/storage/LevelSummary/m_78358_ ()Ljava/lang/String; net/minecraft/world/level/storage/LevelSummary/getLevelId ()Ljava/lang/String; +MD: net/minecraft/world/level/storage/LevelSummary/m_78361_ ()Ljava/lang/String; net/minecraft/world/level/storage/LevelSummary/getLevelName ()Ljava/lang/String; +MD: net/minecraft/world/level/storage/LevelSummary/m_78366_ ()J net/minecraft/world/level/storage/LevelSummary/getLastPlayed ()J +MD: net/minecraft/world/level/storage/LevelSummary/m_78367_ ()Lnet/minecraft/world/level/GameType; net/minecraft/world/level/storage/LevelSummary/getGameMode ()Lnet/minecraft/world/level/GameType; +MD: net/minecraft/world/level/storage/LevelSummary/m_78368_ ()Z net/minecraft/world/level/storage/LevelSummary/isHardcore ()Z +MD: net/minecraft/world/level/storage/LevelSummary/m_78369_ ()Z net/minecraft/world/level/storage/LevelSummary/hasCheats ()Z +MD: net/minecraft/world/level/storage/LevelSummary/m_78370_ ()Lnet/minecraft/network/chat/MutableComponent; net/minecraft/world/level/storage/LevelSummary/getWorldVersionName ()Lnet/minecraft/network/chat/MutableComponent; +MD: net/minecraft/world/level/storage/LevelSummary/m_78371_ ()Lnet/minecraft/world/level/storage/LevelVersion; net/minecraft/world/level/storage/LevelSummary/levelVersion ()Lnet/minecraft/world/level/storage/LevelVersion; +MD: net/minecraft/world/level/storage/LevelSummary/m_78372_ ()Z net/minecraft/world/level/storage/LevelSummary/markVersionInList ()Z +MD: net/minecraft/world/level/storage/LevelSummary/m_78373_ ()Z net/minecraft/world/level/storage/LevelSummary/askToOpenWorld ()Z +MD: net/minecraft/world/level/storage/LevelSummary/m_78375_ ()Z net/minecraft/world/level/storage/LevelSummary/isLocked ()Z +MD: net/minecraft/world/level/storage/LevelSummary/m_78376_ ()Lnet/minecraft/network/chat/Component; net/minecraft/world/level/storage/LevelSummary/getInfo ()Lnet/minecraft/network/chat/Component; +MD: net/minecraft/world/level/storage/LevelSummary/m_78377_ ()Lnet/minecraft/network/chat/Component; net/minecraft/world/level/storage/LevelSummary/createInfo ()Lnet/minecraft/network/chat/Component; +MD: net/minecraft/world/level/storage/LevelSummary$BackupStatus/ ()V net/minecraft/world/level/storage/LevelSummary$BackupStatus/ ()V +MD: net/minecraft/world/level/storage/LevelSummary$BackupStatus/ (Ljava/lang/String;IZZLjava/lang/String;)V net/minecraft/world/level/storage/LevelSummary$BackupStatus/ (Ljava/lang/String;IZZLjava/lang/String;)V +MD: net/minecraft/world/level/storage/LevelSummary$BackupStatus/m_164931_ ()Z net/minecraft/world/level/storage/LevelSummary$BackupStatus/shouldBackup ()Z +MD: net/minecraft/world/level/storage/LevelSummary$BackupStatus/m_164932_ ()Z net/minecraft/world/level/storage/LevelSummary$BackupStatus/isSevere ()Z +MD: net/minecraft/world/level/storage/LevelSummary$BackupStatus/m_164933_ ()Ljava/lang/String; net/minecraft/world/level/storage/LevelSummary$BackupStatus/getTranslationKey ()Ljava/lang/String; +MD: net/minecraft/world/level/storage/LevelSummary$BackupStatus/m_164934_ ()[Lnet/minecraft/world/level/storage/LevelSummary$BackupStatus; net/minecraft/world/level/storage/LevelSummary$BackupStatus/$values ()[Lnet/minecraft/world/level/storage/LevelSummary$BackupStatus; +MD: net/minecraft/world/level/storage/LevelSummary$BackupStatus/valueOf (Ljava/lang/String;)Lnet/minecraft/world/level/storage/LevelSummary$BackupStatus; net/minecraft/world/level/storage/LevelSummary$BackupStatus/valueOf (Ljava/lang/String;)Lnet/minecraft/world/level/storage/LevelSummary$BackupStatus; +MD: net/minecraft/world/level/storage/LevelSummary$BackupStatus/values ()[Lnet/minecraft/world/level/storage/LevelSummary$BackupStatus; net/minecraft/world/level/storage/LevelSummary$BackupStatus/values ()[Lnet/minecraft/world/level/storage/LevelSummary$BackupStatus; +MD: net/minecraft/world/level/storage/LevelSummary$SymlinkLevelSummary/ (Ljava/lang/String;Ljava/nio/file/Path;)V net/minecraft/world/level/storage/LevelSummary$SymlinkLevelSummary/ (Ljava/lang/String;Ljava/nio/file/Path;)V +MD: net/minecraft/world/level/storage/LevelSummary$SymlinkLevelSummary/compareTo (Ljava/lang/Object;)I net/minecraft/world/level/storage/LevelSummary$SymlinkLevelSummary/compareTo (Ljava/lang/Object;)I +MD: net/minecraft/world/level/storage/LevelSummary$SymlinkLevelSummary/m_164916_ ()Z net/minecraft/world/level/storage/LevelSummary$SymlinkLevelSummary/isDisabled ()Z +MD: net/minecraft/world/level/storage/LevelSummary$SymlinkLevelSummary/m_289857_ (Lnet/minecraft/network/chat/Style;)Lnet/minecraft/network/chat/Style; net/minecraft/world/level/storage/LevelSummary$SymlinkLevelSummary/lambda$getInfo$0 (Lnet/minecraft/network/chat/Style;)Lnet/minecraft/network/chat/Style; +MD: net/minecraft/world/level/storage/LevelSummary$SymlinkLevelSummary/m_78361_ ()Ljava/lang/String; net/minecraft/world/level/storage/LevelSummary$SymlinkLevelSummary/getLevelName ()Ljava/lang/String; +MD: net/minecraft/world/level/storage/LevelSummary$SymlinkLevelSummary/m_78366_ ()J net/minecraft/world/level/storage/LevelSummary$SymlinkLevelSummary/getLastPlayed ()J +MD: net/minecraft/world/level/storage/LevelSummary$SymlinkLevelSummary/m_78376_ ()Lnet/minecraft/network/chat/Component; net/minecraft/world/level/storage/LevelSummary$SymlinkLevelSummary/getInfo ()Lnet/minecraft/network/chat/Component; +MD: net/minecraft/world/level/storage/LevelVersion/ (IJLjava/lang/String;ILjava/lang/String;Z)V net/minecraft/world/level/storage/LevelVersion/ (IJLjava/lang/String;ILjava/lang/String;Z)V +MD: net/minecraft/world/level/storage/LevelVersion/m_193029_ ()Lnet/minecraft/world/level/storage/DataVersion; net/minecraft/world/level/storage/LevelVersion/minecraftVersion ()Lnet/minecraft/world/level/storage/DataVersion; +MD: net/minecraft/world/level/storage/LevelVersion/m_78389_ ()I net/minecraft/world/level/storage/LevelVersion/levelDataVersion ()I +MD: net/minecraft/world/level/storage/LevelVersion/m_78390_ (Lcom/mojang/serialization/Dynamic;)Lnet/minecraft/world/level/storage/LevelVersion; net/minecraft/world/level/storage/LevelVersion/parse (Lcom/mojang/serialization/Dynamic;)Lnet/minecraft/world/level/storage/LevelVersion; +MD: net/minecraft/world/level/storage/LevelVersion/m_78392_ ()J net/minecraft/world/level/storage/LevelVersion/lastPlayed ()J +MD: net/minecraft/world/level/storage/LevelVersion/m_78393_ ()Ljava/lang/String; net/minecraft/world/level/storage/LevelVersion/minecraftVersionName ()Ljava/lang/String; +MD: net/minecraft/world/level/storage/LevelVersion/m_78395_ ()Z net/minecraft/world/level/storage/LevelVersion/snapshot ()Z +MD: net/minecraft/world/level/storage/PlayerDataStorage/ ()V net/minecraft/world/level/storage/PlayerDataStorage/ ()V +MD: net/minecraft/world/level/storage/PlayerDataStorage/ (Lnet/minecraft/world/level/storage/LevelStorageSource$LevelStorageAccess;Lcom/mojang/datafixers/DataFixer;)V net/minecraft/world/level/storage/PlayerDataStorage/ (Lnet/minecraft/world/level/storage/LevelStorageSource$LevelStorageAccess;Lcom/mojang/datafixers/DataFixer;)V +MD: net/minecraft/world/level/storage/PlayerDataStorage/m_78432_ ()[Ljava/lang/String; net/minecraft/world/level/storage/PlayerDataStorage/getSeenPlayers ()[Ljava/lang/String; +MD: net/minecraft/world/level/storage/PlayerDataStorage/m_78433_ (Lnet/minecraft/world/entity/player/Player;)V net/minecraft/world/level/storage/PlayerDataStorage/save (Lnet/minecraft/world/entity/player/Player;)V +MD: net/minecraft/world/level/storage/PlayerDataStorage/m_78435_ (Lnet/minecraft/world/entity/player/Player;)Lnet/minecraft/nbt/CompoundTag; net/minecraft/world/level/storage/PlayerDataStorage/load (Lnet/minecraft/world/entity/player/Player;)Lnet/minecraft/nbt/CompoundTag; +MD: net/minecraft/world/level/storage/PrimaryLevelData/ ()V net/minecraft/world/level/storage/PrimaryLevelData/ ()V +MD: net/minecraft/world/level/storage/PrimaryLevelData/ (Lcom/mojang/datafixers/DataFixer;ILnet/minecraft/nbt/CompoundTag;ZIIIFJJIIIZIZZZLnet/minecraft/world/level/border/WorldBorder$Settings;IILjava/util/UUID;Ljava/util/Set;Ljava/util/Set;Lnet/minecraft/world/level/timers/TimerQueue;Lnet/minecraft/nbt/CompoundTag;Lnet/minecraft/world/level/dimension/end/EndDragonFight$Data;Lnet/minecraft/world/level/LevelSettings;Lnet/minecraft/world/level/levelgen/WorldOptions;Lnet/minecraft/world/level/storage/PrimaryLevelData$SpecialWorldProperty;Lcom/mojang/serialization/Lifecycle;)V net/minecraft/world/level/storage/PrimaryLevelData/ (Lcom/mojang/datafixers/DataFixer;ILnet/minecraft/nbt/CompoundTag;ZIIIFJJIIIZIZZZLnet/minecraft/world/level/border/WorldBorder$Settings;IILjava/util/UUID;Ljava/util/Set;Ljava/util/Set;Lnet/minecraft/world/level/timers/TimerQueue;Lnet/minecraft/nbt/CompoundTag;Lnet/minecraft/world/level/dimension/end/EndDragonFight$Data;Lnet/minecraft/world/level/LevelSettings;Lnet/minecraft/world/level/levelgen/WorldOptions;Lnet/minecraft/world/level/storage/PrimaryLevelData$SpecialWorldProperty;Lcom/mojang/serialization/Lifecycle;)V +MD: net/minecraft/world/level/storage/PrimaryLevelData/ (Lnet/minecraft/world/level/LevelSettings;Lnet/minecraft/world/level/levelgen/WorldOptions;Lnet/minecraft/world/level/storage/PrimaryLevelData$SpecialWorldProperty;Lcom/mojang/serialization/Lifecycle;)V net/minecraft/world/level/storage/PrimaryLevelData/ (Lnet/minecraft/world/level/LevelSettings;Lnet/minecraft/world/level/levelgen/WorldOptions;Lnet/minecraft/world/level/storage/PrimaryLevelData$SpecialWorldProperty;Lcom/mojang/serialization/Lifecycle;)V +MD: net/minecraft/world/level/storage/PrimaryLevelData/m_142403_ ()Ljava/util/UUID; net/minecraft/world/level/storage/PrimaryLevelData/getWanderingTraderId ()Ljava/util/UUID; +MD: net/minecraft/world/level/storage/PrimaryLevelData/m_142471_ (Lnet/minecraft/CrashReportCategory;Lnet/minecraft/world/level/LevelHeightAccessor;)V net/minecraft/world/level/storage/PrimaryLevelData/fillCrashReportCategory (Lnet/minecraft/CrashReportCategory;Lnet/minecraft/world/level/LevelHeightAccessor;)V +MD: net/minecraft/world/level/storage/PrimaryLevelData/m_245034_ (Lnet/minecraft/nbt/CompoundTag;Lnet/minecraft/nbt/Tag;)V net/minecraft/world/level/storage/PrimaryLevelData/lambda$setTagData$3 (Lnet/minecraft/nbt/CompoundTag;Lnet/minecraft/nbt/Tag;)V +MD: net/minecraft/world/level/storage/PrimaryLevelData/m_245035_ (Lcom/mojang/serialization/DataResult$PartialResult;)V net/minecraft/world/level/storage/PrimaryLevelData/lambda$setTagData$4 (Lcom/mojang/serialization/DataResult$PartialResult;)V +MD: net/minecraft/world/level/storage/PrimaryLevelData/m_245843_ (Lnet/minecraft/world/level/WorldDataConfiguration;)V net/minecraft/world/level/storage/PrimaryLevelData/setDataConfiguration (Lnet/minecraft/world/level/WorldDataConfiguration;)V +MD: net/minecraft/world/level/storage/PrimaryLevelData/m_246337_ ()Lnet/minecraft/world/level/levelgen/WorldOptions; net/minecraft/world/level/storage/PrimaryLevelData/worldGenOptions ()Lnet/minecraft/world/level/levelgen/WorldOptions; +MD: net/minecraft/world/level/storage/PrimaryLevelData/m_276762_ (Lcom/mojang/serialization/Dynamic;)Ljava/util/stream/Stream; net/minecraft/world/level/storage/PrimaryLevelData/lambda$parse$1 (Lcom/mojang/serialization/Dynamic;)Ljava/util/stream/Stream; +MD: net/minecraft/world/level/storage/PrimaryLevelData/m_276907_ ()Ljava/util/Set; net/minecraft/world/level/storage/PrimaryLevelData/getRemovedFeatureFlags ()Ljava/util/Set; +MD: net/minecraft/world/level/storage/PrimaryLevelData/m_277055_ (Ljava/util/Set;)Lnet/minecraft/nbt/ListTag; net/minecraft/world/level/storage/PrimaryLevelData/stringCollectionToTag (Ljava/util/Set;)Lnet/minecraft/nbt/ListTag; +MD: net/minecraft/world/level/storage/PrimaryLevelData/m_5458_ (Lnet/minecraft/world/level/GameType;)V net/minecraft/world/level/storage/PrimaryLevelData/setGameType (Lnet/minecraft/world/level/GameType;)V +MD: net/minecraft/world/level/storage/PrimaryLevelData/m_5462_ ()Ljava/lang/String; net/minecraft/world/level/storage/PrimaryLevelData/getLevelName ()Ljava/lang/String; +MD: net/minecraft/world/level/storage/PrimaryLevelData/m_5464_ ()Lnet/minecraft/world/level/GameType; net/minecraft/world/level/storage/PrimaryLevelData/getGameType ()Lnet/minecraft/world/level/GameType; +MD: net/minecraft/world/level/storage/PrimaryLevelData/m_5466_ ()Z net/minecraft/world/level/storage/PrimaryLevelData/isHardcore ()Z +MD: net/minecraft/world/level/storage/PrimaryLevelData/m_5468_ ()Z net/minecraft/world/level/storage/PrimaryLevelData/getAllowCommands ()Z +MD: net/minecraft/world/level/storage/PrimaryLevelData/m_5470_ ()Lnet/minecraft/world/level/GameRules; net/minecraft/world/level/storage/PrimaryLevelData/getGameRules ()Lnet/minecraft/world/level/GameRules; +MD: net/minecraft/world/level/storage/PrimaryLevelData/m_5472_ ()Lnet/minecraft/world/Difficulty; net/minecraft/world/level/storage/PrimaryLevelData/getDifficulty ()Lnet/minecraft/world/Difficulty; +MD: net/minecraft/world/level/storage/PrimaryLevelData/m_5474_ ()Z net/minecraft/world/level/storage/PrimaryLevelData/isDifficultyLocked ()Z +MD: net/minecraft/world/level/storage/PrimaryLevelData/m_5555_ (Z)V net/minecraft/world/level/storage/PrimaryLevelData/setInitialized (Z)V +MD: net/minecraft/world/level/storage/PrimaryLevelData/m_5557_ (Z)V net/minecraft/world/level/storage/PrimaryLevelData/setThundering (Z)V +MD: net/minecraft/world/level/storage/PrimaryLevelData/m_5560_ (Z)V net/minecraft/world/level/storage/PrimaryLevelData/setDifficultyLocked (Z)V +MD: net/minecraft/world/level/storage/PrimaryLevelData/m_5565_ (Z)V net/minecraft/world/level/storage/PrimaryLevelData/setRaining (Z)V +MD: net/minecraft/world/level/storage/PrimaryLevelData/m_5754_ ()Lcom/mojang/serialization/Lifecycle; net/minecraft/world/level/storage/PrimaryLevelData/worldGenSettingsLifecycle ()Lcom/mojang/serialization/Lifecycle; +MD: net/minecraft/world/level/storage/PrimaryLevelData/m_5813_ ()Lnet/minecraft/world/level/border/WorldBorder$Settings; net/minecraft/world/level/storage/PrimaryLevelData/getWorldBorder ()Lnet/minecraft/world/level/border/WorldBorder$Settings; +MD: net/minecraft/world/level/storage/PrimaryLevelData/m_5915_ (Lnet/minecraft/world/level/dimension/end/EndDragonFight$Data;)V net/minecraft/world/level/storage/PrimaryLevelData/setEndDragonFightData (Lnet/minecraft/world/level/dimension/end/EndDragonFight$Data;)V +MD: net/minecraft/world/level/storage/PrimaryLevelData/m_5917_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/level/storage/PrimaryLevelData/setCustomBossEvents (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/level/storage/PrimaryLevelData/m_5926_ ()Lnet/minecraft/world/level/LevelSettings; net/minecraft/world/level/storage/PrimaryLevelData/getLevelSettings ()Lnet/minecraft/world/level/LevelSettings; +MD: net/minecraft/world/level/storage/PrimaryLevelData/m_5961_ ()Z net/minecraft/world/level/storage/PrimaryLevelData/isFlatWorld ()Z +MD: net/minecraft/world/level/storage/PrimaryLevelData/m_5996_ ()Lnet/minecraft/world/level/storage/ServerLevelData; net/minecraft/world/level/storage/PrimaryLevelData/overworldData ()Lnet/minecraft/world/level/storage/ServerLevelData; +MD: net/minecraft/world/level/storage/PrimaryLevelData/m_6161_ ()Ljava/util/Set; net/minecraft/world/level/storage/PrimaryLevelData/getKnownServerBrands ()Ljava/util/Set; +MD: net/minecraft/world/level/storage/PrimaryLevelData/m_6166_ (Lnet/minecraft/world/Difficulty;)V net/minecraft/world/level/storage/PrimaryLevelData/setDifficulty (Lnet/minecraft/world/Difficulty;)V +MD: net/minecraft/world/level/storage/PrimaryLevelData/m_6247_ (J)V net/minecraft/world/level/storage/PrimaryLevelData/setDayTime (J)V +MD: net/minecraft/world/level/storage/PrimaryLevelData/m_6253_ (J)V net/minecraft/world/level/storage/PrimaryLevelData/setGameTime (J)V +MD: net/minecraft/world/level/storage/PrimaryLevelData/m_6387_ (I)V net/minecraft/world/level/storage/PrimaryLevelData/setWanderingTraderSpawnChance (I)V +MD: net/minecraft/world/level/storage/PrimaryLevelData/m_6391_ (I)V net/minecraft/world/level/storage/PrimaryLevelData/setWanderingTraderSpawnDelay (I)V +MD: net/minecraft/world/level/storage/PrimaryLevelData/m_6393_ (I)V net/minecraft/world/level/storage/PrimaryLevelData/setClearWeatherTime (I)V +MD: net/minecraft/world/level/storage/PrimaryLevelData/m_6395_ (I)V net/minecraft/world/level/storage/PrimaryLevelData/setXSpawn (I)V +MD: net/minecraft/world/level/storage/PrimaryLevelData/m_6397_ (I)V net/minecraft/world/level/storage/PrimaryLevelData/setYSpawn (I)V +MD: net/minecraft/world/level/storage/PrimaryLevelData/m_6398_ (I)V net/minecraft/world/level/storage/PrimaryLevelData/setThunderTime (I)V +MD: net/minecraft/world/level/storage/PrimaryLevelData/m_6399_ (I)V net/minecraft/world/level/storage/PrimaryLevelData/setRainTime (I)V +MD: net/minecraft/world/level/storage/PrimaryLevelData/m_6400_ (I)V net/minecraft/world/level/storage/PrimaryLevelData/setZSpawn (I)V +MD: net/minecraft/world/level/storage/PrimaryLevelData/m_6517_ ()I net/minecraft/world/level/storage/PrimaryLevelData/getVersion ()I +MD: net/minecraft/world/level/storage/PrimaryLevelData/m_6526_ ()I net/minecraft/world/level/storage/PrimaryLevelData/getZSpawn ()I +MD: net/minecraft/world/level/storage/PrimaryLevelData/m_6527_ ()I net/minecraft/world/level/storage/PrimaryLevelData/getYSpawn ()I +MD: net/minecraft/world/level/storage/PrimaryLevelData/m_6528_ ()I net/minecraft/world/level/storage/PrimaryLevelData/getWanderingTraderSpawnChance ()I +MD: net/minecraft/world/level/storage/PrimaryLevelData/m_6530_ ()I net/minecraft/world/level/storage/PrimaryLevelData/getWanderingTraderSpawnDelay ()I +MD: net/minecraft/world/level/storage/PrimaryLevelData/m_6531_ ()I net/minecraft/world/level/storage/PrimaryLevelData/getRainTime ()I +MD: net/minecraft/world/level/storage/PrimaryLevelData/m_6533_ ()Z net/minecraft/world/level/storage/PrimaryLevelData/isRaining ()Z +MD: net/minecraft/world/level/storage/PrimaryLevelData/m_6534_ ()Z net/minecraft/world/level/storage/PrimaryLevelData/isThundering ()Z +MD: net/minecraft/world/level/storage/PrimaryLevelData/m_6535_ ()Z net/minecraft/world/level/storage/PrimaryLevelData/isInitialized ()Z +MD: net/minecraft/world/level/storage/PrimaryLevelData/m_6537_ ()I net/minecraft/world/level/storage/PrimaryLevelData/getClearWeatherTime ()I +MD: net/minecraft/world/level/storage/PrimaryLevelData/m_6558_ ()I net/minecraft/world/level/storage/PrimaryLevelData/getThunderTime ()I +MD: net/minecraft/world/level/storage/PrimaryLevelData/m_6564_ ()Lnet/minecraft/world/level/dimension/end/EndDragonFight$Data; net/minecraft/world/level/storage/PrimaryLevelData/endDragonFightData ()Lnet/minecraft/world/level/dimension/end/EndDragonFight$Data; +MD: net/minecraft/world/level/storage/PrimaryLevelData/m_6565_ ()Z net/minecraft/world/level/storage/PrimaryLevelData/wasModded ()Z +MD: net/minecraft/world/level/storage/PrimaryLevelData/m_6587_ ()Lnet/minecraft/nbt/CompoundTag; net/minecraft/world/level/storage/PrimaryLevelData/getCustomBossEvents ()Lnet/minecraft/nbt/CompoundTag; +MD: net/minecraft/world/level/storage/PrimaryLevelData/m_6614_ ()Lnet/minecraft/nbt/CompoundTag; net/minecraft/world/level/storage/PrimaryLevelData/getLoadedPlayerTag ()Lnet/minecraft/nbt/CompoundTag; +MD: net/minecraft/world/level/storage/PrimaryLevelData/m_6626_ (Lnet/minecraft/core/RegistryAccess;Lnet/minecraft/nbt/CompoundTag;)Lnet/minecraft/nbt/CompoundTag; net/minecraft/world/level/storage/PrimaryLevelData/createTag (Lnet/minecraft/core/RegistryAccess;Lnet/minecraft/nbt/CompoundTag;)Lnet/minecraft/nbt/CompoundTag; +MD: net/minecraft/world/level/storage/PrimaryLevelData/m_6645_ ()Lnet/minecraft/world/level/WorldDataConfiguration; net/minecraft/world/level/storage/PrimaryLevelData/getDataConfiguration ()Lnet/minecraft/world/level/WorldDataConfiguration; +MD: net/minecraft/world/level/storage/PrimaryLevelData/m_6789_ ()I net/minecraft/world/level/storage/PrimaryLevelData/getXSpawn ()I +MD: net/minecraft/world/level/storage/PrimaryLevelData/m_6790_ ()F net/minecraft/world/level/storage/PrimaryLevelData/getSpawnAngle ()F +MD: net/minecraft/world/level/storage/PrimaryLevelData/m_6792_ ()J net/minecraft/world/level/storage/PrimaryLevelData/getDayTime ()J +MD: net/minecraft/world/level/storage/PrimaryLevelData/m_6793_ ()J net/minecraft/world/level/storage/PrimaryLevelData/getGameTime ()J +MD: net/minecraft/world/level/storage/PrimaryLevelData/m_7113_ (F)V net/minecraft/world/level/storage/PrimaryLevelData/setSpawnAngle (F)V +MD: net/minecraft/world/level/storage/PrimaryLevelData/m_7250_ (Lnet/minecraft/core/BlockPos;F)V net/minecraft/world/level/storage/PrimaryLevelData/setSpawn (Lnet/minecraft/core/BlockPos;F)V +MD: net/minecraft/world/level/storage/PrimaryLevelData/m_7513_ ()Z net/minecraft/world/level/storage/PrimaryLevelData/isDebugWorld ()Z +MD: net/minecraft/world/level/storage/PrimaryLevelData/m_7540_ ()Lnet/minecraft/world/level/timers/TimerQueue; net/minecraft/world/level/storage/PrimaryLevelData/getScheduledEvents ()Lnet/minecraft/world/level/timers/TimerQueue; +MD: net/minecraft/world/level/storage/PrimaryLevelData/m_7831_ (Lnet/minecraft/world/level/border/WorldBorder$Settings;)V net/minecraft/world/level/storage/PrimaryLevelData/setWorldBorder (Lnet/minecraft/world/level/border/WorldBorder$Settings;)V +MD: net/minecraft/world/level/storage/PrimaryLevelData/m_78512_ ()V net/minecraft/world/level/storage/PrimaryLevelData/updatePlayerTag ()V +MD: net/minecraft/world/level/storage/PrimaryLevelData/m_78528_ (Lcom/mojang/serialization/Dynamic;)Ljava/util/stream/Stream; net/minecraft/world/level/storage/PrimaryLevelData/lambda$parse$0 (Lcom/mojang/serialization/Dynamic;)Ljava/util/stream/Stream; +MD: net/minecraft/world/level/storage/PrimaryLevelData/m_78530_ (Lcom/mojang/serialization/Dynamic;Lcom/mojang/datafixers/DataFixer;ILnet/minecraft/nbt/CompoundTag;Lnet/minecraft/world/level/LevelSettings;Lnet/minecraft/world/level/storage/LevelVersion;Lnet/minecraft/world/level/storage/PrimaryLevelData$SpecialWorldProperty;Lnet/minecraft/world/level/levelgen/WorldOptions;Lcom/mojang/serialization/Lifecycle;)Lnet/minecraft/world/level/storage/PrimaryLevelData; net/minecraft/world/level/storage/PrimaryLevelData/parse (Lcom/mojang/serialization/Dynamic;Lcom/mojang/datafixers/DataFixer;ILnet/minecraft/nbt/CompoundTag;Lnet/minecraft/world/level/LevelSettings;Lnet/minecraft/world/level/storage/LevelVersion;Lnet/minecraft/world/level/storage/PrimaryLevelData$SpecialWorldProperty;Lnet/minecraft/world/level/levelgen/WorldOptions;Lcom/mojang/serialization/Lifecycle;)Lnet/minecraft/world/level/storage/PrimaryLevelData; +MD: net/minecraft/world/level/storage/PrimaryLevelData/m_78545_ (Lnet/minecraft/core/RegistryAccess;Lnet/minecraft/nbt/CompoundTag;Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/level/storage/PrimaryLevelData/setTagData (Lnet/minecraft/core/RegistryAccess;Lnet/minecraft/nbt/CompoundTag;Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/level/storage/PrimaryLevelData/m_78572_ (Lnet/minecraft/nbt/CompoundTag;Lnet/minecraft/nbt/Tag;)V net/minecraft/world/level/storage/PrimaryLevelData/lambda$setTagData$2 (Lnet/minecraft/nbt/CompoundTag;Lnet/minecraft/nbt/Tag;)V +MD: net/minecraft/world/level/storage/PrimaryLevelData/m_7955_ (Ljava/lang/String;Z)V net/minecraft/world/level/storage/PrimaryLevelData/setModdedInfo (Ljava/lang/String;Z)V +MD: net/minecraft/world/level/storage/PrimaryLevelData/m_8115_ (Ljava/util/UUID;)V net/minecraft/world/level/storage/PrimaryLevelData/setWanderingTraderId (Ljava/util/UUID;)V +MD: net/minecraft/world/level/storage/PrimaryLevelData$SpecialWorldProperty/ ()V net/minecraft/world/level/storage/PrimaryLevelData$SpecialWorldProperty/ ()V +MD: net/minecraft/world/level/storage/PrimaryLevelData$SpecialWorldProperty/ (Ljava/lang/String;I)V net/minecraft/world/level/storage/PrimaryLevelData$SpecialWorldProperty/ (Ljava/lang/String;I)V +MD: net/minecraft/world/level/storage/PrimaryLevelData$SpecialWorldProperty/m_245155_ ()[Lnet/minecraft/world/level/storage/PrimaryLevelData$SpecialWorldProperty; net/minecraft/world/level/storage/PrimaryLevelData$SpecialWorldProperty/$values ()[Lnet/minecraft/world/level/storage/PrimaryLevelData$SpecialWorldProperty; +MD: net/minecraft/world/level/storage/PrimaryLevelData$SpecialWorldProperty/valueOf (Ljava/lang/String;)Lnet/minecraft/world/level/storage/PrimaryLevelData$SpecialWorldProperty; net/minecraft/world/level/storage/PrimaryLevelData$SpecialWorldProperty/valueOf (Ljava/lang/String;)Lnet/minecraft/world/level/storage/PrimaryLevelData$SpecialWorldProperty; +MD: net/minecraft/world/level/storage/PrimaryLevelData$SpecialWorldProperty/values ()[Lnet/minecraft/world/level/storage/PrimaryLevelData$SpecialWorldProperty; net/minecraft/world/level/storage/PrimaryLevelData$SpecialWorldProperty/values ()[Lnet/minecraft/world/level/storage/PrimaryLevelData$SpecialWorldProperty; +MD: net/minecraft/world/level/storage/ServerLevelData/m_142403_ ()Ljava/util/UUID; net/minecraft/world/level/storage/ServerLevelData/getWanderingTraderId ()Ljava/util/UUID; +MD: net/minecraft/world/level/storage/ServerLevelData/m_142471_ (Lnet/minecraft/CrashReportCategory;Lnet/minecraft/world/level/LevelHeightAccessor;)V net/minecraft/world/level/storage/ServerLevelData/fillCrashReportCategory (Lnet/minecraft/CrashReportCategory;Lnet/minecraft/world/level/LevelHeightAccessor;)V +MD: net/minecraft/world/level/storage/ServerLevelData/m_241765_ ()Ljava/lang/String; net/minecraft/world/level/storage/ServerLevelData/lambda$fillCrashReportCategory$1 ()Ljava/lang/String; +MD: net/minecraft/world/level/storage/ServerLevelData/m_241766_ ()Ljava/lang/String; net/minecraft/world/level/storage/ServerLevelData/lambda$fillCrashReportCategory$0 ()Ljava/lang/String; +MD: net/minecraft/world/level/storage/ServerLevelData/m_5458_ (Lnet/minecraft/world/level/GameType;)V net/minecraft/world/level/storage/ServerLevelData/setGameType (Lnet/minecraft/world/level/GameType;)V +MD: net/minecraft/world/level/storage/ServerLevelData/m_5462_ ()Ljava/lang/String; net/minecraft/world/level/storage/ServerLevelData/getLevelName ()Ljava/lang/String; +MD: net/minecraft/world/level/storage/ServerLevelData/m_5464_ ()Lnet/minecraft/world/level/GameType; net/minecraft/world/level/storage/ServerLevelData/getGameType ()Lnet/minecraft/world/level/GameType; +MD: net/minecraft/world/level/storage/ServerLevelData/m_5468_ ()Z net/minecraft/world/level/storage/ServerLevelData/getAllowCommands ()Z +MD: net/minecraft/world/level/storage/ServerLevelData/m_5555_ (Z)V net/minecraft/world/level/storage/ServerLevelData/setInitialized (Z)V +MD: net/minecraft/world/level/storage/ServerLevelData/m_5557_ (Z)V net/minecraft/world/level/storage/ServerLevelData/setThundering (Z)V +MD: net/minecraft/world/level/storage/ServerLevelData/m_5813_ ()Lnet/minecraft/world/level/border/WorldBorder$Settings; net/minecraft/world/level/storage/ServerLevelData/getWorldBorder ()Lnet/minecraft/world/level/border/WorldBorder$Settings; +MD: net/minecraft/world/level/storage/ServerLevelData/m_6247_ (J)V net/minecraft/world/level/storage/ServerLevelData/setDayTime (J)V +MD: net/minecraft/world/level/storage/ServerLevelData/m_6253_ (J)V net/minecraft/world/level/storage/ServerLevelData/setGameTime (J)V +MD: net/minecraft/world/level/storage/ServerLevelData/m_6387_ (I)V net/minecraft/world/level/storage/ServerLevelData/setWanderingTraderSpawnChance (I)V +MD: net/minecraft/world/level/storage/ServerLevelData/m_6391_ (I)V net/minecraft/world/level/storage/ServerLevelData/setWanderingTraderSpawnDelay (I)V +MD: net/minecraft/world/level/storage/ServerLevelData/m_6393_ (I)V net/minecraft/world/level/storage/ServerLevelData/setClearWeatherTime (I)V +MD: net/minecraft/world/level/storage/ServerLevelData/m_6398_ (I)V net/minecraft/world/level/storage/ServerLevelData/setThunderTime (I)V +MD: net/minecraft/world/level/storage/ServerLevelData/m_6399_ (I)V net/minecraft/world/level/storage/ServerLevelData/setRainTime (I)V +MD: net/minecraft/world/level/storage/ServerLevelData/m_6528_ ()I net/minecraft/world/level/storage/ServerLevelData/getWanderingTraderSpawnChance ()I +MD: net/minecraft/world/level/storage/ServerLevelData/m_6530_ ()I net/minecraft/world/level/storage/ServerLevelData/getWanderingTraderSpawnDelay ()I +MD: net/minecraft/world/level/storage/ServerLevelData/m_6531_ ()I net/minecraft/world/level/storage/ServerLevelData/getRainTime ()I +MD: net/minecraft/world/level/storage/ServerLevelData/m_6535_ ()Z net/minecraft/world/level/storage/ServerLevelData/isInitialized ()Z +MD: net/minecraft/world/level/storage/ServerLevelData/m_6537_ ()I net/minecraft/world/level/storage/ServerLevelData/getClearWeatherTime ()I +MD: net/minecraft/world/level/storage/ServerLevelData/m_6558_ ()I net/minecraft/world/level/storage/ServerLevelData/getThunderTime ()I +MD: net/minecraft/world/level/storage/ServerLevelData/m_7540_ ()Lnet/minecraft/world/level/timers/TimerQueue; net/minecraft/world/level/storage/ServerLevelData/getScheduledEvents ()Lnet/minecraft/world/level/timers/TimerQueue; +MD: net/minecraft/world/level/storage/ServerLevelData/m_7831_ (Lnet/minecraft/world/level/border/WorldBorder$Settings;)V net/minecraft/world/level/storage/ServerLevelData/setWorldBorder (Lnet/minecraft/world/level/border/WorldBorder$Settings;)V +MD: net/minecraft/world/level/storage/ServerLevelData/m_8115_ (Ljava/util/UUID;)V net/minecraft/world/level/storage/ServerLevelData/setWanderingTraderId (Ljava/util/UUID;)V +MD: net/minecraft/world/level/storage/WorldData/m_241767_ ()Ljava/lang/String; net/minecraft/world/level/storage/WorldData/lambda$fillCrashReportCategory$3 ()Ljava/lang/String; +MD: net/minecraft/world/level/storage/WorldData/m_245843_ (Lnet/minecraft/world/level/WorldDataConfiguration;)V net/minecraft/world/level/storage/WorldData/setDataConfiguration (Lnet/minecraft/world/level/WorldDataConfiguration;)V +MD: net/minecraft/world/level/storage/WorldData/m_246337_ ()Lnet/minecraft/world/level/levelgen/WorldOptions; net/minecraft/world/level/storage/WorldData/worldGenOptions ()Lnet/minecraft/world/level/levelgen/WorldOptions; +MD: net/minecraft/world/level/storage/WorldData/m_247623_ ()Lnet/minecraft/world/flag/FeatureFlagSet; net/minecraft/world/level/storage/WorldData/enabledFeatures ()Lnet/minecraft/world/flag/FeatureFlagSet; +MD: net/minecraft/world/level/storage/WorldData/m_276763_ ()Ljava/lang/String; net/minecraft/world/level/storage/WorldData/lambda$fillCrashReportCategory$1 ()Ljava/lang/String; +MD: net/minecraft/world/level/storage/WorldData/m_276907_ ()Ljava/util/Set; net/minecraft/world/level/storage/WorldData/getRemovedFeatureFlags ()Ljava/util/Set; +MD: net/minecraft/world/level/storage/WorldData/m_5458_ (Lnet/minecraft/world/level/GameType;)V net/minecraft/world/level/storage/WorldData/setGameType (Lnet/minecraft/world/level/GameType;)V +MD: net/minecraft/world/level/storage/WorldData/m_5461_ (Lnet/minecraft/CrashReportCategory;)V net/minecraft/world/level/storage/WorldData/fillCrashReportCategory (Lnet/minecraft/CrashReportCategory;)V +MD: net/minecraft/world/level/storage/WorldData/m_5462_ ()Ljava/lang/String; net/minecraft/world/level/storage/WorldData/getLevelName ()Ljava/lang/String; +MD: net/minecraft/world/level/storage/WorldData/m_5464_ ()Lnet/minecraft/world/level/GameType; net/minecraft/world/level/storage/WorldData/getGameType ()Lnet/minecraft/world/level/GameType; +MD: net/minecraft/world/level/storage/WorldData/m_5466_ ()Z net/minecraft/world/level/storage/WorldData/isHardcore ()Z +MD: net/minecraft/world/level/storage/WorldData/m_5468_ ()Z net/minecraft/world/level/storage/WorldData/getAllowCommands ()Z +MD: net/minecraft/world/level/storage/WorldData/m_5470_ ()Lnet/minecraft/world/level/GameRules; net/minecraft/world/level/storage/WorldData/getGameRules ()Lnet/minecraft/world/level/GameRules; +MD: net/minecraft/world/level/storage/WorldData/m_5472_ ()Lnet/minecraft/world/Difficulty; net/minecraft/world/level/storage/WorldData/getDifficulty ()Lnet/minecraft/world/Difficulty; +MD: net/minecraft/world/level/storage/WorldData/m_5474_ ()Z net/minecraft/world/level/storage/WorldData/isDifficultyLocked ()Z +MD: net/minecraft/world/level/storage/WorldData/m_5560_ (Z)V net/minecraft/world/level/storage/WorldData/setDifficultyLocked (Z)V +MD: net/minecraft/world/level/storage/WorldData/m_5754_ ()Lcom/mojang/serialization/Lifecycle; net/minecraft/world/level/storage/WorldData/worldGenSettingsLifecycle ()Lcom/mojang/serialization/Lifecycle; +MD: net/minecraft/world/level/storage/WorldData/m_5915_ (Lnet/minecraft/world/level/dimension/end/EndDragonFight$Data;)V net/minecraft/world/level/storage/WorldData/setEndDragonFightData (Lnet/minecraft/world/level/dimension/end/EndDragonFight$Data;)V +MD: net/minecraft/world/level/storage/WorldData/m_5917_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/level/storage/WorldData/setCustomBossEvents (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/level/storage/WorldData/m_5926_ ()Lnet/minecraft/world/level/LevelSettings; net/minecraft/world/level/storage/WorldData/getLevelSettings ()Lnet/minecraft/world/level/LevelSettings; +MD: net/minecraft/world/level/storage/WorldData/m_5961_ ()Z net/minecraft/world/level/storage/WorldData/isFlatWorld ()Z +MD: net/minecraft/world/level/storage/WorldData/m_5996_ ()Lnet/minecraft/world/level/storage/ServerLevelData; net/minecraft/world/level/storage/WorldData/overworldData ()Lnet/minecraft/world/level/storage/ServerLevelData; +MD: net/minecraft/world/level/storage/WorldData/m_6161_ ()Ljava/util/Set; net/minecraft/world/level/storage/WorldData/getKnownServerBrands ()Ljava/util/Set; +MD: net/minecraft/world/level/storage/WorldData/m_6166_ (Lnet/minecraft/world/Difficulty;)V net/minecraft/world/level/storage/WorldData/setDifficulty (Lnet/minecraft/world/Difficulty;)V +MD: net/minecraft/world/level/storage/WorldData/m_6517_ ()I net/minecraft/world/level/storage/WorldData/getVersion ()I +MD: net/minecraft/world/level/storage/WorldData/m_6564_ ()Lnet/minecraft/world/level/dimension/end/EndDragonFight$Data; net/minecraft/world/level/storage/WorldData/endDragonFightData ()Lnet/minecraft/world/level/dimension/end/EndDragonFight$Data; +MD: net/minecraft/world/level/storage/WorldData/m_6565_ ()Z net/minecraft/world/level/storage/WorldData/wasModded ()Z +MD: net/minecraft/world/level/storage/WorldData/m_6587_ ()Lnet/minecraft/nbt/CompoundTag; net/minecraft/world/level/storage/WorldData/getCustomBossEvents ()Lnet/minecraft/nbt/CompoundTag; +MD: net/minecraft/world/level/storage/WorldData/m_6614_ ()Lnet/minecraft/nbt/CompoundTag; net/minecraft/world/level/storage/WorldData/getLoadedPlayerTag ()Lnet/minecraft/nbt/CompoundTag; +MD: net/minecraft/world/level/storage/WorldData/m_6626_ (Lnet/minecraft/core/RegistryAccess;Lnet/minecraft/nbt/CompoundTag;)Lnet/minecraft/nbt/CompoundTag; net/minecraft/world/level/storage/WorldData/createTag (Lnet/minecraft/core/RegistryAccess;Lnet/minecraft/nbt/CompoundTag;)Lnet/minecraft/nbt/CompoundTag; +MD: net/minecraft/world/level/storage/WorldData/m_6645_ ()Lnet/minecraft/world/level/WorldDataConfiguration; net/minecraft/world/level/storage/WorldData/getDataConfiguration ()Lnet/minecraft/world/level/WorldDataConfiguration; +MD: net/minecraft/world/level/storage/WorldData/m_7513_ ()Z net/minecraft/world/level/storage/WorldData/isDebugWorld ()Z +MD: net/minecraft/world/level/storage/WorldData/m_78642_ ()Ljava/lang/String; net/minecraft/world/level/storage/WorldData/lambda$fillCrashReportCategory$2 ()Ljava/lang/String; +MD: net/minecraft/world/level/storage/WorldData/m_78644_ ()Ljava/lang/String; net/minecraft/world/level/storage/WorldData/lambda$fillCrashReportCategory$0 ()Ljava/lang/String; +MD: net/minecraft/world/level/storage/WorldData/m_78646_ (I)Ljava/lang/String; net/minecraft/world/level/storage/WorldData/getStorageVersionName (I)Ljava/lang/String; +MD: net/minecraft/world/level/storage/WorldData/m_7955_ (Ljava/lang/String;Z)V net/minecraft/world/level/storage/WorldData/setModdedInfo (Ljava/lang/String;Z)V +MD: net/minecraft/world/level/storage/WritableLevelData/m_6395_ (I)V net/minecraft/world/level/storage/WritableLevelData/setXSpawn (I)V +MD: net/minecraft/world/level/storage/WritableLevelData/m_6397_ (I)V net/minecraft/world/level/storage/WritableLevelData/setYSpawn (I)V +MD: net/minecraft/world/level/storage/WritableLevelData/m_6400_ (I)V net/minecraft/world/level/storage/WritableLevelData/setZSpawn (I)V +MD: net/minecraft/world/level/storage/WritableLevelData/m_7113_ (F)V net/minecraft/world/level/storage/WritableLevelData/setSpawnAngle (F)V +MD: net/minecraft/world/level/storage/WritableLevelData/m_7250_ (Lnet/minecraft/core/BlockPos;F)V net/minecraft/world/level/storage/WritableLevelData/setSpawn (Lnet/minecraft/core/BlockPos;F)V +MD: net/minecraft/world/level/storage/loot/BuiltInLootTables/ ()V net/minecraft/world/level/storage/loot/BuiltInLootTables/ ()V +MD: net/minecraft/world/level/storage/loot/BuiltInLootTables/ ()V net/minecraft/world/level/storage/loot/BuiltInLootTables/ ()V +MD: net/minecraft/world/level/storage/loot/BuiltInLootTables/m_78766_ ()Ljava/util/Set; net/minecraft/world/level/storage/loot/BuiltInLootTables/all ()Ljava/util/Set; +MD: net/minecraft/world/level/storage/loot/BuiltInLootTables/m_78767_ (Ljava/lang/String;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/world/level/storage/loot/BuiltInLootTables/register (Ljava/lang/String;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/world/level/storage/loot/BuiltInLootTables/m_78769_ (Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/world/level/storage/loot/BuiltInLootTables/register (Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/world/level/storage/loot/Deserializers/ ()V net/minecraft/world/level/storage/loot/Deserializers/ ()V +MD: net/minecraft/world/level/storage/loot/Deserializers/m_78798_ ()Lcom/google/gson/GsonBuilder; net/minecraft/world/level/storage/loot/Deserializers/createConditionSerializer ()Lcom/google/gson/GsonBuilder; +MD: net/minecraft/world/level/storage/loot/Deserializers/m_78799_ ()Lcom/google/gson/GsonBuilder; net/minecraft/world/level/storage/loot/Deserializers/createFunctionSerializer ()Lcom/google/gson/GsonBuilder; +MD: net/minecraft/world/level/storage/loot/Deserializers/m_78800_ ()Lcom/google/gson/GsonBuilder; net/minecraft/world/level/storage/loot/Deserializers/createLootTableSerializer ()Lcom/google/gson/GsonBuilder; +MD: net/minecraft/world/level/storage/loot/GsonAdapterFactory/ ()V net/minecraft/world/level/storage/loot/GsonAdapterFactory/ ()V +MD: net/minecraft/world/level/storage/loot/GsonAdapterFactory/m_78801_ (Lnet/minecraft/core/Registry;Ljava/lang/String;Ljava/lang/String;Ljava/util/function/Function;)Lnet/minecraft/world/level/storage/loot/GsonAdapterFactory$Builder; net/minecraft/world/level/storage/loot/GsonAdapterFactory/builder (Lnet/minecraft/core/Registry;Ljava/lang/String;Ljava/lang/String;Ljava/util/function/Function;)Lnet/minecraft/world/level/storage/loot/GsonAdapterFactory$Builder; +MD: net/minecraft/world/level/storage/loot/GsonAdapterFactory$Builder/ (Lnet/minecraft/core/Registry;Ljava/lang/String;Ljava/lang/String;Ljava/util/function/Function;)V net/minecraft/world/level/storage/loot/GsonAdapterFactory$Builder/ (Lnet/minecraft/core/Registry;Ljava/lang/String;Ljava/lang/String;Ljava/util/function/Function;)V +MD: net/minecraft/world/level/storage/loot/GsonAdapterFactory$Builder/m_164984_ (Lnet/minecraft/world/level/storage/loot/SerializerType;)Lnet/minecraft/world/level/storage/loot/GsonAdapterFactory$Builder; net/minecraft/world/level/storage/loot/GsonAdapterFactory$Builder/withDefaultType (Lnet/minecraft/world/level/storage/loot/SerializerType;)Lnet/minecraft/world/level/storage/loot/GsonAdapterFactory$Builder; +MD: net/minecraft/world/level/storage/loot/GsonAdapterFactory$Builder/m_164986_ (Lnet/minecraft/world/level/storage/loot/SerializerType;Lnet/minecraft/world/level/storage/loot/GsonAdapterFactory$InlineSerializer;)Lnet/minecraft/world/level/storage/loot/GsonAdapterFactory$Builder; net/minecraft/world/level/storage/loot/GsonAdapterFactory$Builder/withInlineSerializer (Lnet/minecraft/world/level/storage/loot/SerializerType;Lnet/minecraft/world/level/storage/loot/GsonAdapterFactory$InlineSerializer;)Lnet/minecraft/world/level/storage/loot/GsonAdapterFactory$Builder; +MD: net/minecraft/world/level/storage/loot/GsonAdapterFactory$Builder/m_78822_ ()Ljava/lang/Object; net/minecraft/world/level/storage/loot/GsonAdapterFactory$Builder/build ()Ljava/lang/Object; +MD: net/minecraft/world/level/storage/loot/GsonAdapterFactory$InlineSerializer/m_142268_ (Lcom/google/gson/JsonElement;Lcom/google/gson/JsonDeserializationContext;)Ljava/lang/Object; net/minecraft/world/level/storage/loot/GsonAdapterFactory$InlineSerializer/deserialize (Lcom/google/gson/JsonElement;Lcom/google/gson/JsonDeserializationContext;)Ljava/lang/Object; +MD: net/minecraft/world/level/storage/loot/GsonAdapterFactory$InlineSerializer/m_142413_ (Ljava/lang/Object;Lcom/google/gson/JsonSerializationContext;)Lcom/google/gson/JsonElement; net/minecraft/world/level/storage/loot/GsonAdapterFactory$InlineSerializer/serialize (Ljava/lang/Object;Lcom/google/gson/JsonSerializationContext;)Lcom/google/gson/JsonElement; +MD: net/minecraft/world/level/storage/loot/GsonAdapterFactory$JsonAdapter/ (Lnet/minecraft/core/Registry;Ljava/lang/String;Ljava/lang/String;Ljava/util/function/Function;Lnet/minecraft/world/level/storage/loot/SerializerType;Lcom/mojang/datafixers/util/Pair;)V net/minecraft/world/level/storage/loot/GsonAdapterFactory$JsonAdapter/ (Lnet/minecraft/core/Registry;Ljava/lang/String;Ljava/lang/String;Ljava/util/function/Function;Lnet/minecraft/world/level/storage/loot/SerializerType;Lcom/mojang/datafixers/util/Pair;)V +MD: net/minecraft/world/level/storage/loot/GsonAdapterFactory$JsonAdapter/deserialize (Lcom/google/gson/JsonElement;Ljava/lang/reflect/Type;Lcom/google/gson/JsonDeserializationContext;)Ljava/lang/Object; net/minecraft/world/level/storage/loot/GsonAdapterFactory$JsonAdapter/deserialize (Lcom/google/gson/JsonElement;Ljava/lang/reflect/Type;Lcom/google/gson/JsonDeserializationContext;)Ljava/lang/Object; +MD: net/minecraft/world/level/storage/loot/GsonAdapterFactory$JsonAdapter/serialize (Ljava/lang/Object;Ljava/lang/reflect/Type;Lcom/google/gson/JsonSerializationContext;)Lcom/google/gson/JsonElement; net/minecraft/world/level/storage/loot/GsonAdapterFactory$JsonAdapter/serialize (Ljava/lang/Object;Ljava/lang/reflect/Type;Lcom/google/gson/JsonSerializationContext;)Lcom/google/gson/JsonElement; +MD: net/minecraft/world/level/storage/loot/IntRange/ (Lnet/minecraft/world/level/storage/loot/providers/number/NumberProvider;Lnet/minecraft/world/level/storage/loot/providers/number/NumberProvider;)V net/minecraft/world/level/storage/loot/IntRange/ (Lnet/minecraft/world/level/storage/loot/providers/number/NumberProvider;Lnet/minecraft/world/level/storage/loot/providers/number/NumberProvider;)V +MD: net/minecraft/world/level/storage/loot/IntRange/m_165008_ ()Ljava/util/Set; net/minecraft/world/level/storage/loot/IntRange/getReferencedContextParams ()Ljava/util/Set; +MD: net/minecraft/world/level/storage/loot/IntRange/m_165009_ (I)Lnet/minecraft/world/level/storage/loot/IntRange; net/minecraft/world/level/storage/loot/IntRange/exact (I)Lnet/minecraft/world/level/storage/loot/IntRange; +MD: net/minecraft/world/level/storage/loot/IntRange/m_165011_ (II)Lnet/minecraft/world/level/storage/loot/IntRange; net/minecraft/world/level/storage/loot/IntRange/range (II)Lnet/minecraft/world/level/storage/loot/IntRange; +MD: net/minecraft/world/level/storage/loot/IntRange/m_165014_ (Lnet/minecraft/world/level/storage/loot/LootContext;I)I net/minecraft/world/level/storage/loot/IntRange/clamp (Lnet/minecraft/world/level/storage/loot/LootContext;I)I +MD: net/minecraft/world/level/storage/loot/IntRange/m_165017_ (Lnet/minecraft/world/level/storage/loot/providers/number/NumberProvider;Lnet/minecraft/world/level/storage/loot/LootContext;I)Z net/minecraft/world/level/storage/loot/IntRange/lambda$new$5 (Lnet/minecraft/world/level/storage/loot/providers/number/NumberProvider;Lnet/minecraft/world/level/storage/loot/LootContext;I)Z +MD: net/minecraft/world/level/storage/loot/IntRange/m_165021_ (Lnet/minecraft/world/level/storage/loot/providers/number/NumberProvider;Lnet/minecraft/world/level/storage/loot/providers/number/NumberProvider;Lnet/minecraft/world/level/storage/loot/LootContext;I)Z net/minecraft/world/level/storage/loot/IntRange/lambda$new$7 (Lnet/minecraft/world/level/storage/loot/providers/number/NumberProvider;Lnet/minecraft/world/level/storage/loot/providers/number/NumberProvider;Lnet/minecraft/world/level/storage/loot/LootContext;I)Z +MD: net/minecraft/world/level/storage/loot/IntRange/m_165026_ (I)Lnet/minecraft/world/level/storage/loot/IntRange; net/minecraft/world/level/storage/loot/IntRange/lowerBound (I)Lnet/minecraft/world/level/storage/loot/IntRange; +MD: net/minecraft/world/level/storage/loot/IntRange/m_165028_ (Lnet/minecraft/world/level/storage/loot/LootContext;I)Z net/minecraft/world/level/storage/loot/IntRange/test (Lnet/minecraft/world/level/storage/loot/LootContext;I)Z +MD: net/minecraft/world/level/storage/loot/IntRange/m_165031_ (Lnet/minecraft/world/level/storage/loot/providers/number/NumberProvider;Lnet/minecraft/world/level/storage/loot/LootContext;I)I net/minecraft/world/level/storage/loot/IntRange/lambda$new$4 (Lnet/minecraft/world/level/storage/loot/providers/number/NumberProvider;Lnet/minecraft/world/level/storage/loot/LootContext;I)I +MD: net/minecraft/world/level/storage/loot/IntRange/m_165035_ (Lnet/minecraft/world/level/storage/loot/providers/number/NumberProvider;Lnet/minecraft/world/level/storage/loot/providers/number/NumberProvider;Lnet/minecraft/world/level/storage/loot/LootContext;I)I net/minecraft/world/level/storage/loot/IntRange/lambda$new$6 (Lnet/minecraft/world/level/storage/loot/providers/number/NumberProvider;Lnet/minecraft/world/level/storage/loot/providers/number/NumberProvider;Lnet/minecraft/world/level/storage/loot/LootContext;I)I +MD: net/minecraft/world/level/storage/loot/IntRange/m_165040_ (I)Lnet/minecraft/world/level/storage/loot/IntRange; net/minecraft/world/level/storage/loot/IntRange/upperBound (I)Lnet/minecraft/world/level/storage/loot/IntRange; +MD: net/minecraft/world/level/storage/loot/IntRange/m_165042_ (Lnet/minecraft/world/level/storage/loot/LootContext;I)Z net/minecraft/world/level/storage/loot/IntRange/lambda$new$1 (Lnet/minecraft/world/level/storage/loot/LootContext;I)Z +MD: net/minecraft/world/level/storage/loot/IntRange/m_165045_ (Lnet/minecraft/world/level/storage/loot/providers/number/NumberProvider;Lnet/minecraft/world/level/storage/loot/LootContext;I)Z net/minecraft/world/level/storage/loot/IntRange/lambda$new$3 (Lnet/minecraft/world/level/storage/loot/providers/number/NumberProvider;Lnet/minecraft/world/level/storage/loot/LootContext;I)Z +MD: net/minecraft/world/level/storage/loot/IntRange/m_165049_ (Lnet/minecraft/world/level/storage/loot/LootContext;I)I net/minecraft/world/level/storage/loot/IntRange/lambda$new$0 (Lnet/minecraft/world/level/storage/loot/LootContext;I)I +MD: net/minecraft/world/level/storage/loot/IntRange/m_165052_ (Lnet/minecraft/world/level/storage/loot/providers/number/NumberProvider;Lnet/minecraft/world/level/storage/loot/LootContext;I)I net/minecraft/world/level/storage/loot/IntRange/lambda$new$2 (Lnet/minecraft/world/level/storage/loot/providers/number/NumberProvider;Lnet/minecraft/world/level/storage/loot/LootContext;I)I +MD: net/minecraft/world/level/storage/loot/IntRange$IntChecker/m_165056_ (Lnet/minecraft/world/level/storage/loot/LootContext;I)Z net/minecraft/world/level/storage/loot/IntRange$IntChecker/test (Lnet/minecraft/world/level/storage/loot/LootContext;I)Z +MD: net/minecraft/world/level/storage/loot/IntRange$IntLimiter/m_165059_ (Lnet/minecraft/world/level/storage/loot/LootContext;I)I net/minecraft/world/level/storage/loot/IntRange$IntLimiter/apply (Lnet/minecraft/world/level/storage/loot/LootContext;I)I +MD: net/minecraft/world/level/storage/loot/IntRange$Serializer/ ()V net/minecraft/world/level/storage/loot/IntRange$Serializer/ ()V +MD: net/minecraft/world/level/storage/loot/IntRange$Serializer/deserialize (Lcom/google/gson/JsonElement;Ljava/lang/reflect/Type;Lcom/google/gson/JsonDeserializationContext;)Lnet/minecraft/world/level/storage/loot/IntRange; net/minecraft/world/level/storage/loot/IntRange$Serializer/deserialize (Lcom/google/gson/JsonElement;Ljava/lang/reflect/Type;Lcom/google/gson/JsonDeserializationContext;)Lnet/minecraft/world/level/storage/loot/IntRange; +MD: net/minecraft/world/level/storage/loot/IntRange$Serializer/deserialize (Lcom/google/gson/JsonElement;Ljava/lang/reflect/Type;Lcom/google/gson/JsonDeserializationContext;)Ljava/lang/Object; net/minecraft/world/level/storage/loot/IntRange$Serializer/deserialize (Lcom/google/gson/JsonElement;Ljava/lang/reflect/Type;Lcom/google/gson/JsonDeserializationContext;)Ljava/lang/Object; +MD: net/minecraft/world/level/storage/loot/IntRange$Serializer/serialize (Lnet/minecraft/world/level/storage/loot/IntRange;Ljava/lang/reflect/Type;Lcom/google/gson/JsonSerializationContext;)Lcom/google/gson/JsonElement; net/minecraft/world/level/storage/loot/IntRange$Serializer/serialize (Lnet/minecraft/world/level/storage/loot/IntRange;Ljava/lang/reflect/Type;Lcom/google/gson/JsonSerializationContext;)Lcom/google/gson/JsonElement; +MD: net/minecraft/world/level/storage/loot/IntRange$Serializer/serialize (Ljava/lang/Object;Ljava/lang/reflect/Type;Lcom/google/gson/JsonSerializationContext;)Lcom/google/gson/JsonElement; net/minecraft/world/level/storage/loot/IntRange$Serializer/serialize (Ljava/lang/Object;Ljava/lang/reflect/Type;Lcom/google/gson/JsonSerializationContext;)Lcom/google/gson/JsonElement; +MD: net/minecraft/world/level/storage/loot/LootContext/ (Lnet/minecraft/world/level/storage/loot/LootParams;Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/storage/loot/LootDataResolver;)V net/minecraft/world/level/storage/loot/LootContext/ (Lnet/minecraft/world/level/storage/loot/LootParams;Lnet/minecraft/util/RandomSource;Lnet/minecraft/world/level/storage/loot/LootDataResolver;)V +MD: net/minecraft/world/level/storage/loot/LootContext/m_165124_ (Lnet/minecraft/world/level/storage/loot/parameters/LootContextParam;)Ljava/lang/Object; net/minecraft/world/level/storage/loot/LootContext/getParam (Lnet/minecraft/world/level/storage/loot/parameters/LootContextParam;)Ljava/lang/Object; +MD: net/minecraft/world/level/storage/loot/LootContext/m_230907_ ()Lnet/minecraft/util/RandomSource; net/minecraft/world/level/storage/loot/LootContext/getRandom ()Lnet/minecraft/util/RandomSource; +MD: net/minecraft/world/level/storage/loot/LootContext/m_278628_ (Lnet/minecraft/world/level/storage/loot/LootContext$VisitedEntry;)Z net/minecraft/world/level/storage/loot/LootContext/hasVisitedElement (Lnet/minecraft/world/level/storage/loot/LootContext$VisitedEntry;)Z +MD: net/minecraft/world/level/storage/loot/LootContext/m_278639_ (Lnet/minecraft/world/level/storage/loot/LootContext$VisitedEntry;)V net/minecraft/world/level/storage/loot/LootContext/popVisitedElement (Lnet/minecraft/world/level/storage/loot/LootContext$VisitedEntry;)V +MD: net/minecraft/world/level/storage/loot/LootContext/m_278643_ ()Lnet/minecraft/world/level/storage/loot/LootDataResolver; net/minecraft/world/level/storage/loot/LootContext/getResolver ()Lnet/minecraft/world/level/storage/loot/LootDataResolver; +MD: net/minecraft/world/level/storage/loot/LootContext/m_278759_ (Lnet/minecraft/world/level/storage/loot/LootContext$VisitedEntry;)Z net/minecraft/world/level/storage/loot/LootContext/pushVisitedElement (Lnet/minecraft/world/level/storage/loot/LootContext$VisitedEntry;)Z +MD: net/minecraft/world/level/storage/loot/LootContext/m_278785_ (Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;)Lnet/minecraft/world/level/storage/loot/LootContext$VisitedEntry; net/minecraft/world/level/storage/loot/LootContext/createVisitedEntry (Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;)Lnet/minecraft/world/level/storage/loot/LootContext$VisitedEntry; +MD: net/minecraft/world/level/storage/loot/LootContext/m_278811_ (Lnet/minecraft/world/level/storage/loot/LootTable;)Lnet/minecraft/world/level/storage/loot/LootContext$VisitedEntry; net/minecraft/world/level/storage/loot/LootContext/createVisitedEntry (Lnet/minecraft/world/level/storage/loot/LootTable;)Lnet/minecraft/world/level/storage/loot/LootContext$VisitedEntry; +MD: net/minecraft/world/level/storage/loot/LootContext/m_278853_ (Lnet/minecraft/world/level/storage/loot/functions/LootItemFunction;)Lnet/minecraft/world/level/storage/loot/LootContext$VisitedEntry; net/minecraft/world/level/storage/loot/LootContext/createVisitedEntry (Lnet/minecraft/world/level/storage/loot/functions/LootItemFunction;)Lnet/minecraft/world/level/storage/loot/LootContext$VisitedEntry; +MD: net/minecraft/world/level/storage/loot/LootContext/m_78936_ (Lnet/minecraft/world/level/storage/loot/parameters/LootContextParam;)Z net/minecraft/world/level/storage/loot/LootContext/hasParam (Lnet/minecraft/world/level/storage/loot/parameters/LootContextParam;)Z +MD: net/minecraft/world/level/storage/loot/LootContext/m_78942_ (Lnet/minecraft/resources/ResourceLocation;Ljava/util/function/Consumer;)V net/minecraft/world/level/storage/loot/LootContext/addDynamicDrops (Lnet/minecraft/resources/ResourceLocation;Ljava/util/function/Consumer;)V +MD: net/minecraft/world/level/storage/loot/LootContext/m_78945_ ()F net/minecraft/world/level/storage/loot/LootContext/getLuck ()F +MD: net/minecraft/world/level/storage/loot/LootContext/m_78952_ ()Lnet/minecraft/server/level/ServerLevel; net/minecraft/world/level/storage/loot/LootContext/getLevel ()Lnet/minecraft/server/level/ServerLevel; +MD: net/minecraft/world/level/storage/loot/LootContext/m_78953_ (Lnet/minecraft/world/level/storage/loot/parameters/LootContextParam;)Ljava/lang/Object; net/minecraft/world/level/storage/loot/LootContext/getParamOrNull (Lnet/minecraft/world/level/storage/loot/parameters/LootContextParam;)Ljava/lang/Object; +MD: net/minecraft/world/level/storage/loot/LootContext$Builder/ (Lnet/minecraft/world/level/storage/loot/LootParams;)V net/minecraft/world/level/storage/loot/LootContext$Builder/ (Lnet/minecraft/world/level/storage/loot/LootParams;)V +MD: net/minecraft/world/level/storage/loot/LootContext$Builder/m_287259_ (Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/world/level/storage/loot/LootContext; net/minecraft/world/level/storage/loot/LootContext$Builder/create (Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/world/level/storage/loot/LootContext; +MD: net/minecraft/world/level/storage/loot/LootContext$Builder/m_78962_ ()Lnet/minecraft/server/level/ServerLevel; net/minecraft/world/level/storage/loot/LootContext$Builder/getLevel ()Lnet/minecraft/server/level/ServerLevel; +MD: net/minecraft/world/level/storage/loot/LootContext$Builder/m_78965_ (J)Lnet/minecraft/world/level/storage/loot/LootContext$Builder; net/minecraft/world/level/storage/loot/LootContext$Builder/withOptionalRandomSeed (J)Lnet/minecraft/world/level/storage/loot/LootContext$Builder; +MD: net/minecraft/world/level/storage/loot/LootContext$EntityTarget/ ()V net/minecraft/world/level/storage/loot/LootContext$EntityTarget/ ()V +MD: net/minecraft/world/level/storage/loot/LootContext$EntityTarget/ (Ljava/lang/String;ILjava/lang/String;Lnet/minecraft/world/level/storage/loot/parameters/LootContextParam;)V net/minecraft/world/level/storage/loot/LootContext$EntityTarget/ (Ljava/lang/String;ILjava/lang/String;Lnet/minecraft/world/level/storage/loot/parameters/LootContextParam;)V +MD: net/minecraft/world/level/storage/loot/LootContext$EntityTarget/m_165126_ ()[Lnet/minecraft/world/level/storage/loot/LootContext$EntityTarget; net/minecraft/world/level/storage/loot/LootContext$EntityTarget/$values ()[Lnet/minecraft/world/level/storage/loot/LootContext$EntityTarget; +MD: net/minecraft/world/level/storage/loot/LootContext$EntityTarget/m_79003_ ()Lnet/minecraft/world/level/storage/loot/parameters/LootContextParam; net/minecraft/world/level/storage/loot/LootContext$EntityTarget/getParam ()Lnet/minecraft/world/level/storage/loot/parameters/LootContextParam; +MD: net/minecraft/world/level/storage/loot/LootContext$EntityTarget/m_79006_ (Ljava/lang/String;)Lnet/minecraft/world/level/storage/loot/LootContext$EntityTarget; net/minecraft/world/level/storage/loot/LootContext$EntityTarget/getByName (Ljava/lang/String;)Lnet/minecraft/world/level/storage/loot/LootContext$EntityTarget; +MD: net/minecraft/world/level/storage/loot/LootContext$EntityTarget/valueOf (Ljava/lang/String;)Lnet/minecraft/world/level/storage/loot/LootContext$EntityTarget; net/minecraft/world/level/storage/loot/LootContext$EntityTarget/valueOf (Ljava/lang/String;)Lnet/minecraft/world/level/storage/loot/LootContext$EntityTarget; +MD: net/minecraft/world/level/storage/loot/LootContext$EntityTarget/values ()[Lnet/minecraft/world/level/storage/loot/LootContext$EntityTarget; net/minecraft/world/level/storage/loot/LootContext$EntityTarget/values ()[Lnet/minecraft/world/level/storage/loot/LootContext$EntityTarget; +MD: net/minecraft/world/level/storage/loot/LootContext$EntityTarget$Serializer/ ()V net/minecraft/world/level/storage/loot/LootContext$EntityTarget$Serializer/ ()V +MD: net/minecraft/world/level/storage/loot/LootContext$EntityTarget$Serializer/read (Lcom/google/gson/stream/JsonReader;)Ljava/lang/Object; net/minecraft/world/level/storage/loot/LootContext$EntityTarget$Serializer/read (Lcom/google/gson/stream/JsonReader;)Ljava/lang/Object; +MD: net/minecraft/world/level/storage/loot/LootContext$EntityTarget$Serializer/read (Lcom/google/gson/stream/JsonReader;)Lnet/minecraft/world/level/storage/loot/LootContext$EntityTarget; net/minecraft/world/level/storage/loot/LootContext$EntityTarget$Serializer/read (Lcom/google/gson/stream/JsonReader;)Lnet/minecraft/world/level/storage/loot/LootContext$EntityTarget; +MD: net/minecraft/world/level/storage/loot/LootContext$EntityTarget$Serializer/write (Lcom/google/gson/stream/JsonWriter;Lnet/minecraft/world/level/storage/loot/LootContext$EntityTarget;)V net/minecraft/world/level/storage/loot/LootContext$EntityTarget$Serializer/write (Lcom/google/gson/stream/JsonWriter;Lnet/minecraft/world/level/storage/loot/LootContext$EntityTarget;)V +MD: net/minecraft/world/level/storage/loot/LootContext$EntityTarget$Serializer/write (Lcom/google/gson/stream/JsonWriter;Ljava/lang/Object;)V net/minecraft/world/level/storage/loot/LootContext$EntityTarget$Serializer/write (Lcom/google/gson/stream/JsonWriter;Ljava/lang/Object;)V +MD: net/minecraft/world/level/storage/loot/LootContext$VisitedEntry/ (Lnet/minecraft/world/level/storage/loot/LootDataType;Ljava/lang/Object;)V net/minecraft/world/level/storage/loot/LootContext$VisitedEntry/ (Lnet/minecraft/world/level/storage/loot/LootDataType;Ljava/lang/Object;)V +MD: net/minecraft/world/level/storage/loot/LootContext$VisitedEntry/equals (Ljava/lang/Object;)Z net/minecraft/world/level/storage/loot/LootContext$VisitedEntry/equals (Ljava/lang/Object;)Z +MD: net/minecraft/world/level/storage/loot/LootContext$VisitedEntry/f_278374_ ()Ljava/lang/Object; net/minecraft/world/level/storage/loot/LootContext$VisitedEntry/value ()Ljava/lang/Object; +MD: net/minecraft/world/level/storage/loot/LootContext$VisitedEntry/f_278478_ ()Lnet/minecraft/world/level/storage/loot/LootDataType; net/minecraft/world/level/storage/loot/LootContext$VisitedEntry/type ()Lnet/minecraft/world/level/storage/loot/LootDataType; +MD: net/minecraft/world/level/storage/loot/LootContext$VisitedEntry/hashCode ()I net/minecraft/world/level/storage/loot/LootContext$VisitedEntry/hashCode ()I +MD: net/minecraft/world/level/storage/loot/LootContext$VisitedEntry/toString ()Ljava/lang/String; net/minecraft/world/level/storage/loot/LootContext$VisitedEntry/toString ()Ljava/lang/String; +MD: net/minecraft/world/level/storage/loot/LootContextUser/m_6169_ (Lnet/minecraft/world/level/storage/loot/ValidationContext;)V net/minecraft/world/level/storage/loot/LootContextUser/validate (Lnet/minecraft/world/level/storage/loot/ValidationContext;)V +MD: net/minecraft/world/level/storage/loot/LootContextUser/m_6231_ ()Ljava/util/Set; net/minecraft/world/level/storage/loot/LootContextUser/getReferencedContextParams ()Ljava/util/Set; +MD: net/minecraft/world/level/storage/loot/LootDataId/ (Lnet/minecraft/world/level/storage/loot/LootDataType;Lnet/minecraft/resources/ResourceLocation;)V net/minecraft/world/level/storage/loot/LootDataId/ (Lnet/minecraft/world/level/storage/loot/LootDataType;Lnet/minecraft/resources/ResourceLocation;)V +MD: net/minecraft/world/level/storage/loot/LootDataId/equals (Ljava/lang/Object;)Z net/minecraft/world/level/storage/loot/LootDataId/equals (Ljava/lang/Object;)Z +MD: net/minecraft/world/level/storage/loot/LootDataId/f_278383_ ()Lnet/minecraft/world/level/storage/loot/LootDataType; net/minecraft/world/level/storage/loot/LootDataId/type ()Lnet/minecraft/world/level/storage/loot/LootDataType; +MD: net/minecraft/world/level/storage/loot/LootDataId/f_278500_ ()Lnet/minecraft/resources/ResourceLocation; net/minecraft/world/level/storage/loot/LootDataId/location ()Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/world/level/storage/loot/LootDataId/hashCode ()I net/minecraft/world/level/storage/loot/LootDataId/hashCode ()I +MD: net/minecraft/world/level/storage/loot/LootDataId/toString ()Ljava/lang/String; net/minecraft/world/level/storage/loot/LootDataId/toString ()Ljava/lang/String; +MD: net/minecraft/world/level/storage/loot/LootDataManager/ ()V net/minecraft/world/level/storage/loot/LootDataManager/ ()V +MD: net/minecraft/world/level/storage/loot/LootDataManager/ ()V net/minecraft/world/level/storage/loot/LootDataManager/ ()V +MD: net/minecraft/world/level/storage/loot/LootDataManager/m_278621_ (Lnet/minecraft/world/level/storage/loot/ValidationContext;Lnet/minecraft/world/level/storage/loot/LootDataId;Ljava/lang/Object;)V net/minecraft/world/level/storage/loot/LootDataManager/castAndValidate (Lnet/minecraft/world/level/storage/loot/ValidationContext;Lnet/minecraft/world/level/storage/loot/LootDataId;Ljava/lang/Object;)V +MD: net/minecraft/world/level/storage/loot/LootDataManager/m_278638_ (I)[Ljava/util/concurrent/CompletableFuture; net/minecraft/world/level/storage/loot/LootDataManager/lambda$reload$1 (I)[Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/world/level/storage/loot/LootDataManager/m_278659_ (Ljava/lang/String;Ljava/lang/String;)V net/minecraft/world/level/storage/loot/LootDataManager/lambda$apply$9 (Ljava/lang/String;Ljava/lang/String;)V +MD: net/minecraft/world/level/storage/loot/LootDataManager/m_278660_ (Lnet/minecraft/server/packs/resources/ResourceManager;Lnet/minecraft/world/level/storage/loot/LootDataType;Ljava/util/Map;)V net/minecraft/world/level/storage/loot/LootDataManager/lambda$scheduleElementParse$5 (Lnet/minecraft/server/packs/resources/ResourceManager;Lnet/minecraft/world/level/storage/loot/LootDataType;Ljava/util/Map;)V +MD: net/minecraft/world/level/storage/loot/LootDataManager/m_278667_ (Lnet/minecraft/world/level/storage/loot/LootDataId;)Ljava/lang/Object; net/minecraft/world/level/storage/loot/LootDataManager/getElement (Lnet/minecraft/world/level/storage/loot/LootDataId;)Ljava/lang/Object; +MD: net/minecraft/world/level/storage/loot/LootDataManager/m_278668_ (Ljava/util/Map;Lnet/minecraft/resources/ResourceLocation;Ljava/lang/Object;)V net/minecraft/world/level/storage/loot/LootDataManager/lambda$scheduleElementParse$3 (Ljava/util/Map;Lnet/minecraft/resources/ResourceLocation;Ljava/lang/Object;)V +MD: net/minecraft/world/level/storage/loot/LootDataManager/m_278675_ (Lnet/minecraft/server/packs/resources/ResourceManager;Ljava/util/concurrent/Executor;Ljava/util/Map;Lnet/minecraft/world/level/storage/loot/LootDataType;)Ljava/util/concurrent/CompletableFuture; net/minecraft/world/level/storage/loot/LootDataManager/lambda$reload$0 (Lnet/minecraft/server/packs/resources/ResourceManager;Ljava/util/concurrent/Executor;Ljava/util/Map;Lnet/minecraft/world/level/storage/loot/LootDataType;)Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/world/level/storage/loot/LootDataManager/m_278704_ ([Lnet/minecraft/world/level/storage/loot/functions/LootItemFunction;)Lnet/minecraft/world/level/storage/loot/functions/LootItemFunction; net/minecraft/world/level/storage/loot/LootDataManager/createComposite ([Lnet/minecraft/world/level/storage/loot/functions/LootItemFunction;)Lnet/minecraft/world/level/storage/loot/functions/LootItemFunction; +MD: net/minecraft/world/level/storage/loot/LootDataManager/m_278706_ (Lnet/minecraft/world/level/storage/loot/LootDataType;)Ljava/util/Collection; net/minecraft/world/level/storage/loot/LootDataManager/getKeys (Lnet/minecraft/world/level/storage/loot/LootDataType;)Ljava/util/Collection; +MD: net/minecraft/world/level/storage/loot/LootDataManager/m_278719_ (Lnet/minecraft/world/level/storage/loot/ValidationContext;Lnet/minecraft/world/level/storage/loot/LootDataId;Ljava/lang/Object;)V net/minecraft/world/level/storage/loot/LootDataManager/lambda$apply$8 (Lnet/minecraft/world/level/storage/loot/ValidationContext;Lnet/minecraft/world/level/storage/loot/LootDataId;Ljava/lang/Object;)V +MD: net/minecraft/world/level/storage/loot/LootDataManager/m_278729_ (Lcom/google/common/collect/ImmutableMap$Builder;Lcom/google/common/collect/ImmutableMultimap$Builder;Lnet/minecraft/world/level/storage/loot/LootDataType;Ljava/util/Map;)V net/minecraft/world/level/storage/loot/LootDataManager/lambda$apply$7 (Lcom/google/common/collect/ImmutableMap$Builder;Lcom/google/common/collect/ImmutableMultimap$Builder;Lnet/minecraft/world/level/storage/loot/LootDataType;Ljava/util/Map;)V +MD: net/minecraft/world/level/storage/loot/LootDataManager/m_278738_ (Ljava/util/Map;Ljava/lang/Void;)V net/minecraft/world/level/storage/loot/LootDataManager/lambda$reload$2 (Ljava/util/Map;Ljava/lang/Void;)V +MD: net/minecraft/world/level/storage/loot/LootDataManager/m_278755_ ([Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;)Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition; net/minecraft/world/level/storage/loot/LootDataManager/createComposite ([Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;)Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition; +MD: net/minecraft/world/level/storage/loot/LootDataManager/m_278787_ (Ljava/util/Map;)V net/minecraft/world/level/storage/loot/LootDataManager/apply (Ljava/util/Map;)V +MD: net/minecraft/world/level/storage/loot/LootDataManager/m_278800_ (Lnet/minecraft/world/level/storage/loot/LootDataType;Lnet/minecraft/server/packs/resources/ResourceManager;Ljava/util/concurrent/Executor;Ljava/util/Map;)Ljava/util/concurrent/CompletableFuture; net/minecraft/world/level/storage/loot/LootDataManager/scheduleElementParse (Lnet/minecraft/world/level/storage/loot/LootDataType;Lnet/minecraft/server/packs/resources/ResourceManager;Ljava/util/concurrent/Executor;Ljava/util/Map;)Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/world/level/storage/loot/LootDataManager/m_278807_ (Lnet/minecraft/world/level/storage/loot/LootDataType;Ljava/util/Map;Lnet/minecraft/resources/ResourceLocation;Lcom/google/gson/JsonElement;)V net/minecraft/world/level/storage/loot/LootDataManager/lambda$scheduleElementParse$4 (Lnet/minecraft/world/level/storage/loot/LootDataType;Ljava/util/Map;Lnet/minecraft/resources/ResourceLocation;Lcom/google/gson/JsonElement;)V +MD: net/minecraft/world/level/storage/loot/LootDataManager/m_278819_ (Lcom/google/common/collect/ImmutableMap$Builder;Lnet/minecraft/world/level/storage/loot/LootDataType;Lcom/google/common/collect/ImmutableMultimap$Builder;Lnet/minecraft/resources/ResourceLocation;Ljava/lang/Object;)V net/minecraft/world/level/storage/loot/LootDataManager/lambda$apply$6 (Lcom/google/common/collect/ImmutableMap$Builder;Lnet/minecraft/world/level/storage/loot/LootDataType;Lcom/google/common/collect/ImmutableMultimap$Builder;Lnet/minecraft/resources/ResourceLocation;Ljava/lang/Object;)V +MD: net/minecraft/world/level/storage/loot/LootDataManager/m_5540_ (Lnet/minecraft/server/packs/resources/PreparableReloadListener$PreparationBarrier;Lnet/minecraft/server/packs/resources/ResourceManager;Lnet/minecraft/util/profiling/ProfilerFiller;Lnet/minecraft/util/profiling/ProfilerFiller;Ljava/util/concurrent/Executor;Ljava/util/concurrent/Executor;)Ljava/util/concurrent/CompletableFuture; net/minecraft/world/level/storage/loot/LootDataManager/reload (Lnet/minecraft/server/packs/resources/PreparableReloadListener$PreparationBarrier;Lnet/minecraft/server/packs/resources/ResourceManager;Lnet/minecraft/util/profiling/ProfilerFiller;Lnet/minecraft/util/profiling/ProfilerFiller;Ljava/util/concurrent/Executor;Ljava/util/concurrent/Executor;)Ljava/util/concurrent/CompletableFuture; +MD: net/minecraft/world/level/storage/loot/LootDataManager$1/ (Lnet/minecraft/world/level/storage/loot/LootDataManager;Ljava/util/Map;)V net/minecraft/world/level/storage/loot/LootDataManager$1/ (Lnet/minecraft/world/level/storage/loot/LootDataManager;Ljava/util/Map;)V +MD: net/minecraft/world/level/storage/loot/LootDataManager$1/m_278667_ (Lnet/minecraft/world/level/storage/loot/LootDataId;)Ljava/lang/Object; net/minecraft/world/level/storage/loot/LootDataManager$1/getElement (Lnet/minecraft/world/level/storage/loot/LootDataId;)Ljava/lang/Object; +MD: net/minecraft/world/level/storage/loot/LootDataManager$CompositePredicate/ ([Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;)V net/minecraft/world/level/storage/loot/LootDataManager$CompositePredicate/ ([Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;)V +MD: net/minecraft/world/level/storage/loot/LootDataManager$CompositePredicate/m_6169_ (Lnet/minecraft/world/level/storage/loot/ValidationContext;)V net/minecraft/world/level/storage/loot/LootDataManager$CompositePredicate/validate (Lnet/minecraft/world/level/storage/loot/ValidationContext;)V +MD: net/minecraft/world/level/storage/loot/LootDataManager$CompositePredicate/m_7940_ ()Lnet/minecraft/world/level/storage/loot/predicates/LootItemConditionType; net/minecraft/world/level/storage/loot/LootDataManager$CompositePredicate/getType ()Lnet/minecraft/world/level/storage/loot/predicates/LootItemConditionType; +MD: net/minecraft/world/level/storage/loot/LootDataManager$CompositePredicate/test (Ljava/lang/Object;)Z net/minecraft/world/level/storage/loot/LootDataManager$CompositePredicate/test (Ljava/lang/Object;)Z +MD: net/minecraft/world/level/storage/loot/LootDataManager$CompositePredicate/test (Lnet/minecraft/world/level/storage/loot/LootContext;)Z net/minecraft/world/level/storage/loot/LootDataManager$CompositePredicate/test (Lnet/minecraft/world/level/storage/loot/LootContext;)Z +MD: net/minecraft/world/level/storage/loot/LootDataManager$FunctionSequence/ ([Lnet/minecraft/world/level/storage/loot/functions/LootItemFunction;)V net/minecraft/world/level/storage/loot/LootDataManager$FunctionSequence/ ([Lnet/minecraft/world/level/storage/loot/functions/LootItemFunction;)V +MD: net/minecraft/world/level/storage/loot/LootDataManager$FunctionSequence/apply (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/level/storage/loot/LootContext;)Lnet/minecraft/world/item/ItemStack; net/minecraft/world/level/storage/loot/LootDataManager$FunctionSequence/apply (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/level/storage/loot/LootContext;)Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/level/storage/loot/LootDataManager$FunctionSequence/apply (Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object; net/minecraft/world/level/storage/loot/LootDataManager$FunctionSequence/apply (Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object; +MD: net/minecraft/world/level/storage/loot/LootDataManager$FunctionSequence/m_6169_ (Lnet/minecraft/world/level/storage/loot/ValidationContext;)V net/minecraft/world/level/storage/loot/LootDataManager$FunctionSequence/validate (Lnet/minecraft/world/level/storage/loot/ValidationContext;)V +MD: net/minecraft/world/level/storage/loot/LootDataManager$FunctionSequence/m_7162_ ()Lnet/minecraft/world/level/storage/loot/functions/LootItemFunctionType; net/minecraft/world/level/storage/loot/LootDataManager$FunctionSequence/getType ()Lnet/minecraft/world/level/storage/loot/functions/LootItemFunctionType; +MD: net/minecraft/world/level/storage/loot/LootDataResolver/m_278615_ (Lnet/minecraft/world/level/storage/loot/LootDataType;Lnet/minecraft/resources/ResourceLocation;)Ljava/util/Optional; net/minecraft/world/level/storage/loot/LootDataResolver/getElementOptional (Lnet/minecraft/world/level/storage/loot/LootDataType;Lnet/minecraft/resources/ResourceLocation;)Ljava/util/Optional; +MD: net/minecraft/world/level/storage/loot/LootDataResolver/m_278667_ (Lnet/minecraft/world/level/storage/loot/LootDataId;)Ljava/lang/Object; net/minecraft/world/level/storage/loot/LootDataResolver/getElement (Lnet/minecraft/world/level/storage/loot/LootDataId;)Ljava/lang/Object; +MD: net/minecraft/world/level/storage/loot/LootDataResolver/m_278676_ (Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/world/level/storage/loot/LootTable; net/minecraft/world/level/storage/loot/LootDataResolver/getLootTable (Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/world/level/storage/loot/LootTable; +MD: net/minecraft/world/level/storage/loot/LootDataResolver/m_278739_ (Lnet/minecraft/world/level/storage/loot/LootDataId;)Ljava/util/Optional; net/minecraft/world/level/storage/loot/LootDataResolver/getElementOptional (Lnet/minecraft/world/level/storage/loot/LootDataId;)Ljava/util/Optional; +MD: net/minecraft/world/level/storage/loot/LootDataResolver/m_278789_ (Lnet/minecraft/world/level/storage/loot/LootDataType;Lnet/minecraft/resources/ResourceLocation;)Ljava/lang/Object; net/minecraft/world/level/storage/loot/LootDataResolver/getElement (Lnet/minecraft/world/level/storage/loot/LootDataType;Lnet/minecraft/resources/ResourceLocation;)Ljava/lang/Object; +MD: net/minecraft/world/level/storage/loot/LootDataType/ ()V net/minecraft/world/level/storage/loot/LootDataType/ ()V +MD: net/minecraft/world/level/storage/loot/LootDataType/ (Lcom/google/gson/Gson;Ljava/util/function/BiFunction;Ljava/lang/String;Lnet/minecraft/world/level/storage/loot/LootDataType$Validator;)V net/minecraft/world/level/storage/loot/LootDataType/ (Lcom/google/gson/Gson;Ljava/util/function/BiFunction;Ljava/lang/String;Lnet/minecraft/world/level/storage/loot/LootDataType$Validator;)V +MD: net/minecraft/world/level/storage/loot/LootDataType/m_278624_ ()Ljava/lang/String; net/minecraft/world/level/storage/loot/LootDataType/directory ()Ljava/lang/String; +MD: net/minecraft/world/level/storage/loot/LootDataType/m_278629_ (Ljava/lang/Class;)Ljava/util/function/BiFunction; net/minecraft/world/level/storage/loot/LootDataType/createSingleDeserialiser (Ljava/lang/Class;)Ljava/util/function/BiFunction; +MD: net/minecraft/world/level/storage/loot/LootDataType/m_278634_ (Ljava/lang/Class;Lcom/google/gson/Gson;Ljava/lang/String;)Ljava/util/function/BiFunction; net/minecraft/world/level/storage/loot/LootDataType/lambda$createSingleDeserialiser$1 (Ljava/lang/Class;Lcom/google/gson/Gson;Ljava/lang/String;)Ljava/util/function/BiFunction; +MD: net/minecraft/world/level/storage/loot/LootDataType/m_278664_ (Ljava/lang/Class;Ljava/util/function/Function;Ljava/lang/Class;Lcom/google/gson/Gson;Ljava/lang/String;)Ljava/util/function/BiFunction; net/minecraft/world/level/storage/loot/LootDataType/lambda$createSingleOrMultipleDeserialiser$3 (Ljava/lang/Class;Ljava/util/function/Function;Ljava/lang/Class;Lcom/google/gson/Gson;Ljava/lang/String;)Ljava/util/function/BiFunction; +MD: net/minecraft/world/level/storage/loot/LootDataType/m_278672_ (Lnet/minecraft/world/level/storage/loot/ValidationContext;Lnet/minecraft/world/level/storage/loot/LootDataId;Lnet/minecraft/world/level/storage/loot/LootContextUser;)V net/minecraft/world/level/storage/loot/LootDataType/lambda$createSimpleValidator$4 (Lnet/minecraft/world/level/storage/loot/ValidationContext;Lnet/minecraft/world/level/storage/loot/LootDataId;Lnet/minecraft/world/level/storage/loot/LootContextUser;)V +MD: net/minecraft/world/level/storage/loot/LootDataType/m_278693_ ()Lnet/minecraft/world/level/storage/loot/LootDataType$Validator; net/minecraft/world/level/storage/loot/LootDataType/createSimpleValidator ()Lnet/minecraft/world/level/storage/loot/LootDataType$Validator; +MD: net/minecraft/world/level/storage/loot/LootDataType/m_278701_ (Lnet/minecraft/world/level/storage/loot/ValidationContext;Lnet/minecraft/world/level/storage/loot/LootDataId;Ljava/lang/Object;)V net/minecraft/world/level/storage/loot/LootDataType/runValidation (Lnet/minecraft/world/level/storage/loot/ValidationContext;Lnet/minecraft/world/level/storage/loot/LootDataId;Ljava/lang/Object;)V +MD: net/minecraft/world/level/storage/loot/LootDataType/m_278728_ (Lcom/google/gson/Gson;Ljava/lang/Class;Ljava/lang/String;Lnet/minecraft/resources/ResourceLocation;Lcom/google/gson/JsonElement;)Ljava/util/Optional; net/minecraft/world/level/storage/loot/LootDataType/lambda$createSingleDeserialiser$0 (Lcom/google/gson/Gson;Ljava/lang/Class;Ljava/lang/String;Lnet/minecraft/resources/ResourceLocation;Lcom/google/gson/JsonElement;)Ljava/util/Optional; +MD: net/minecraft/world/level/storage/loot/LootDataType/m_278763_ (Lnet/minecraft/resources/ResourceLocation;Lcom/google/gson/JsonElement;)Ljava/util/Optional; net/minecraft/world/level/storage/loot/LootDataType/deserialize (Lnet/minecraft/resources/ResourceLocation;Lcom/google/gson/JsonElement;)Ljava/util/Optional; +MD: net/minecraft/world/level/storage/loot/LootDataType/m_278779_ ()Ljava/util/stream/Stream; net/minecraft/world/level/storage/loot/LootDataType/values ()Ljava/util/stream/Stream; +MD: net/minecraft/world/level/storage/loot/LootDataType/m_278813_ (Ljava/lang/Class;Ljava/util/function/Function;)Ljava/util/function/BiFunction; net/minecraft/world/level/storage/loot/LootDataType/createSingleOrMultipleDeserialiser (Ljava/lang/Class;Ljava/util/function/Function;)Ljava/util/function/BiFunction; +MD: net/minecraft/world/level/storage/loot/LootDataType/m_278814_ (Lcom/google/gson/Gson;Ljava/lang/Class;Ljava/util/function/Function;Ljava/lang/Class;Ljava/lang/String;Lnet/minecraft/resources/ResourceLocation;Lcom/google/gson/JsonElement;)Ljava/util/Optional; net/minecraft/world/level/storage/loot/LootDataType/lambda$createSingleOrMultipleDeserialiser$2 (Lcom/google/gson/Gson;Ljava/lang/Class;Ljava/util/function/Function;Ljava/lang/Class;Ljava/lang/String;Lnet/minecraft/resources/ResourceLocation;Lcom/google/gson/JsonElement;)Ljava/util/Optional; +MD: net/minecraft/world/level/storage/loot/LootDataType/m_278846_ ()Lnet/minecraft/world/level/storage/loot/LootDataType$Validator; net/minecraft/world/level/storage/loot/LootDataType/createLootTableValidator ()Lnet/minecraft/world/level/storage/loot/LootDataType$Validator; +MD: net/minecraft/world/level/storage/loot/LootDataType/m_278847_ (Lnet/minecraft/world/level/storage/loot/ValidationContext;Lnet/minecraft/world/level/storage/loot/LootDataId;Lnet/minecraft/world/level/storage/loot/LootTable;)V net/minecraft/world/level/storage/loot/LootDataType/lambda$createLootTableValidator$5 (Lnet/minecraft/world/level/storage/loot/ValidationContext;Lnet/minecraft/world/level/storage/loot/LootDataId;Lnet/minecraft/world/level/storage/loot/LootTable;)V +MD: net/minecraft/world/level/storage/loot/LootDataType/m_278857_ ()Lcom/google/gson/Gson; net/minecraft/world/level/storage/loot/LootDataType/parser ()Lcom/google/gson/Gson; +MD: net/minecraft/world/level/storage/loot/LootDataType$Validator/m_278714_ (Lnet/minecraft/world/level/storage/loot/ValidationContext;Lnet/minecraft/world/level/storage/loot/LootDataId;Ljava/lang/Object;)V net/minecraft/world/level/storage/loot/LootDataType$Validator/run (Lnet/minecraft/world/level/storage/loot/ValidationContext;Lnet/minecraft/world/level/storage/loot/LootDataId;Ljava/lang/Object;)V +MD: net/minecraft/world/level/storage/loot/LootParams/ (Lnet/minecraft/server/level/ServerLevel;Ljava/util/Map;Ljava/util/Map;F)V net/minecraft/world/level/storage/loot/LootParams/ (Lnet/minecraft/server/level/ServerLevel;Ljava/util/Map;Ljava/util/Map;F)V +MD: net/minecraft/world/level/storage/loot/LootParams/m_287156_ (Lnet/minecraft/world/level/storage/loot/parameters/LootContextParam;)Ljava/lang/Object; net/minecraft/world/level/storage/loot/LootParams/getParameter (Lnet/minecraft/world/level/storage/loot/parameters/LootContextParam;)Ljava/lang/Object; +MD: net/minecraft/world/level/storage/loot/LootParams/m_287164_ ()F net/minecraft/world/level/storage/loot/LootParams/getLuck ()F +MD: net/minecraft/world/level/storage/loot/LootParams/m_287166_ (Lnet/minecraft/world/level/storage/loot/parameters/LootContextParam;)Z net/minecraft/world/level/storage/loot/LootParams/hasParam (Lnet/minecraft/world/level/storage/loot/parameters/LootContextParam;)Z +MD: net/minecraft/world/level/storage/loot/LootParams/m_287182_ ()Lnet/minecraft/server/level/ServerLevel; net/minecraft/world/level/storage/loot/LootParams/getLevel ()Lnet/minecraft/server/level/ServerLevel; +MD: net/minecraft/world/level/storage/loot/LootParams/m_287251_ (Lnet/minecraft/world/level/storage/loot/parameters/LootContextParam;)Ljava/lang/Object; net/minecraft/world/level/storage/loot/LootParams/getOptionalParameter (Lnet/minecraft/world/level/storage/loot/parameters/LootContextParam;)Ljava/lang/Object; +MD: net/minecraft/world/level/storage/loot/LootParams/m_287256_ (Lnet/minecraft/resources/ResourceLocation;Ljava/util/function/Consumer;)V net/minecraft/world/level/storage/loot/LootParams/addDynamicDrops (Lnet/minecraft/resources/ResourceLocation;Ljava/util/function/Consumer;)V +MD: net/minecraft/world/level/storage/loot/LootParams/m_287267_ (Lnet/minecraft/world/level/storage/loot/parameters/LootContextParam;)Ljava/lang/Object; net/minecraft/world/level/storage/loot/LootParams/getParamOrNull (Lnet/minecraft/world/level/storage/loot/parameters/LootContextParam;)Ljava/lang/Object; +MD: net/minecraft/world/level/storage/loot/LootParams$Builder/ (Lnet/minecraft/server/level/ServerLevel;)V net/minecraft/world/level/storage/loot/LootParams$Builder/ (Lnet/minecraft/server/level/ServerLevel;)V +MD: net/minecraft/world/level/storage/loot/LootParams$Builder/m_287145_ (Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/world/level/storage/loot/LootParams$DynamicDrop;)Lnet/minecraft/world/level/storage/loot/LootParams$Builder; net/minecraft/world/level/storage/loot/LootParams$Builder/withDynamicDrop (Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/world/level/storage/loot/LootParams$DynamicDrop;)Lnet/minecraft/world/level/storage/loot/LootParams$Builder; +MD: net/minecraft/world/level/storage/loot/LootParams$Builder/m_287159_ (Lnet/minecraft/world/level/storage/loot/parameters/LootContextParam;)Ljava/lang/Object; net/minecraft/world/level/storage/loot/LootParams$Builder/getOptionalParameter (Lnet/minecraft/world/level/storage/loot/parameters/LootContextParam;)Ljava/lang/Object; +MD: net/minecraft/world/level/storage/loot/LootParams$Builder/m_287235_ (Lnet/minecraft/world/level/storage/loot/parameters/LootContextParamSet;)Lnet/minecraft/world/level/storage/loot/LootParams; net/minecraft/world/level/storage/loot/LootParams$Builder/create (Lnet/minecraft/world/level/storage/loot/parameters/LootContextParamSet;)Lnet/minecraft/world/level/storage/loot/LootParams; +MD: net/minecraft/world/level/storage/loot/LootParams$Builder/m_287239_ (F)Lnet/minecraft/world/level/storage/loot/LootParams$Builder; net/minecraft/world/level/storage/loot/LootParams$Builder/withLuck (F)Lnet/minecraft/world/level/storage/loot/LootParams$Builder; +MD: net/minecraft/world/level/storage/loot/LootParams$Builder/m_287258_ ()Lnet/minecraft/server/level/ServerLevel; net/minecraft/world/level/storage/loot/LootParams$Builder/getLevel ()Lnet/minecraft/server/level/ServerLevel; +MD: net/minecraft/world/level/storage/loot/LootParams$Builder/m_287261_ (Lnet/minecraft/world/level/storage/loot/parameters/LootContextParam;)Ljava/lang/Object; net/minecraft/world/level/storage/loot/LootParams$Builder/getParameter (Lnet/minecraft/world/level/storage/loot/parameters/LootContextParam;)Ljava/lang/Object; +MD: net/minecraft/world/level/storage/loot/LootParams$Builder/m_287286_ (Lnet/minecraft/world/level/storage/loot/parameters/LootContextParam;Ljava/lang/Object;)Lnet/minecraft/world/level/storage/loot/LootParams$Builder; net/minecraft/world/level/storage/loot/LootParams$Builder/withParameter (Lnet/minecraft/world/level/storage/loot/parameters/LootContextParam;Ljava/lang/Object;)Lnet/minecraft/world/level/storage/loot/LootParams$Builder; +MD: net/minecraft/world/level/storage/loot/LootParams$Builder/m_287289_ (Lnet/minecraft/world/level/storage/loot/parameters/LootContextParam;Ljava/lang/Object;)Lnet/minecraft/world/level/storage/loot/LootParams$Builder; net/minecraft/world/level/storage/loot/LootParams$Builder/withOptionalParameter (Lnet/minecraft/world/level/storage/loot/parameters/LootContextParam;Ljava/lang/Object;)Lnet/minecraft/world/level/storage/loot/LootParams$Builder; +MD: net/minecraft/world/level/storage/loot/LootParams$DynamicDrop/m_287291_ (Ljava/util/function/Consumer;)V net/minecraft/world/level/storage/loot/LootParams$DynamicDrop/add (Ljava/util/function/Consumer;)V +MD: net/minecraft/world/level/storage/loot/LootPool/ ([Lnet/minecraft/world/level/storage/loot/entries/LootPoolEntryContainer;[Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;[Lnet/minecraft/world/level/storage/loot/functions/LootItemFunction;Lnet/minecraft/world/level/storage/loot/providers/number/NumberProvider;Lnet/minecraft/world/level/storage/loot/providers/number/NumberProvider;)V net/minecraft/world/level/storage/loot/LootPool/ ([Lnet/minecraft/world/level/storage/loot/entries/LootPoolEntryContainer;[Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;[Lnet/minecraft/world/level/storage/loot/functions/LootItemFunction;Lnet/minecraft/world/level/storage/loot/providers/number/NumberProvider;Lnet/minecraft/world/level/storage/loot/providers/number/NumberProvider;)V +MD: net/minecraft/world/level/storage/loot/LootPool/m_79043_ ()Lnet/minecraft/world/level/storage/loot/LootPool$Builder; net/minecraft/world/level/storage/loot/LootPool/lootPool ()Lnet/minecraft/world/level/storage/loot/LootPool$Builder; +MD: net/minecraft/world/level/storage/loot/LootPool/m_79044_ (Lnet/minecraft/world/level/storage/loot/LootContext;Ljava/util/List;Lorg/apache/commons/lang3/mutable/MutableInt;Lnet/minecraft/world/level/storage/loot/entries/LootPoolEntry;)V net/minecraft/world/level/storage/loot/LootPool/lambda$addRandomItem$0 (Lnet/minecraft/world/level/storage/loot/LootContext;Ljava/util/List;Lorg/apache/commons/lang3/mutable/MutableInt;Lnet/minecraft/world/level/storage/loot/entries/LootPoolEntry;)V +MD: net/minecraft/world/level/storage/loot/LootPool/m_79051_ (Lnet/minecraft/world/level/storage/loot/ValidationContext;)V net/minecraft/world/level/storage/loot/LootPool/validate (Lnet/minecraft/world/level/storage/loot/ValidationContext;)V +MD: net/minecraft/world/level/storage/loot/LootPool/m_79053_ (Ljava/util/function/Consumer;Lnet/minecraft/world/level/storage/loot/LootContext;)V net/minecraft/world/level/storage/loot/LootPool/addRandomItems (Ljava/util/function/Consumer;Lnet/minecraft/world/level/storage/loot/LootContext;)V +MD: net/minecraft/world/level/storage/loot/LootPool/m_79058_ (Ljava/util/function/Consumer;Lnet/minecraft/world/level/storage/loot/LootContext;)V net/minecraft/world/level/storage/loot/LootPool/addRandomItem (Ljava/util/function/Consumer;Lnet/minecraft/world/level/storage/loot/LootContext;)V +MD: net/minecraft/world/level/storage/loot/LootPool$Builder/ ()V net/minecraft/world/level/storage/loot/LootPool$Builder/ ()V +MD: net/minecraft/world/level/storage/loot/LootPool$Builder/m_165133_ (Lnet/minecraft/world/level/storage/loot/providers/number/NumberProvider;)Lnet/minecraft/world/level/storage/loot/LootPool$Builder; net/minecraft/world/level/storage/loot/LootPool$Builder/setRolls (Lnet/minecraft/world/level/storage/loot/providers/number/NumberProvider;)Lnet/minecraft/world/level/storage/loot/LootPool$Builder; +MD: net/minecraft/world/level/storage/loot/LootPool$Builder/m_165135_ (Lnet/minecraft/world/level/storage/loot/providers/number/NumberProvider;)Lnet/minecraft/world/level/storage/loot/LootPool$Builder; net/minecraft/world/level/storage/loot/LootPool$Builder/setBonusRolls (Lnet/minecraft/world/level/storage/loot/providers/number/NumberProvider;)Lnet/minecraft/world/level/storage/loot/LootPool$Builder; +MD: net/minecraft/world/level/storage/loot/LootPool$Builder/m_79073_ ()Lnet/minecraft/world/level/storage/loot/functions/FunctionUserBuilder; net/minecraft/world/level/storage/loot/LootPool$Builder/unwrap ()Lnet/minecraft/world/level/storage/loot/functions/FunctionUserBuilder; +MD: net/minecraft/world/level/storage/loot/LootPool$Builder/m_79073_ ()Lnet/minecraft/world/level/storage/loot/LootPool$Builder; net/minecraft/world/level/storage/loot/LootPool$Builder/unwrap ()Lnet/minecraft/world/level/storage/loot/LootPool$Builder; +MD: net/minecraft/world/level/storage/loot/LootPool$Builder/m_79073_ ()Lnet/minecraft/world/level/storage/loot/predicates/ConditionUserBuilder; net/minecraft/world/level/storage/loot/LootPool$Builder/unwrap ()Lnet/minecraft/world/level/storage/loot/predicates/ConditionUserBuilder; +MD: net/minecraft/world/level/storage/loot/LootPool$Builder/m_79076_ (Lnet/minecraft/world/level/storage/loot/entries/LootPoolEntryContainer$Builder;)Lnet/minecraft/world/level/storage/loot/LootPool$Builder; net/minecraft/world/level/storage/loot/LootPool$Builder/add (Lnet/minecraft/world/level/storage/loot/entries/LootPoolEntryContainer$Builder;)Lnet/minecraft/world/level/storage/loot/LootPool$Builder; +MD: net/minecraft/world/level/storage/loot/LootPool$Builder/m_79078_ (Lnet/minecraft/world/level/storage/loot/functions/LootItemFunction$Builder;)Lnet/minecraft/world/level/storage/loot/functions/FunctionUserBuilder; net/minecraft/world/level/storage/loot/LootPool$Builder/apply (Lnet/minecraft/world/level/storage/loot/functions/LootItemFunction$Builder;)Lnet/minecraft/world/level/storage/loot/functions/FunctionUserBuilder; +MD: net/minecraft/world/level/storage/loot/LootPool$Builder/m_79078_ (Lnet/minecraft/world/level/storage/loot/functions/LootItemFunction$Builder;)Lnet/minecraft/world/level/storage/loot/LootPool$Builder; net/minecraft/world/level/storage/loot/LootPool$Builder/apply (Lnet/minecraft/world/level/storage/loot/functions/LootItemFunction$Builder;)Lnet/minecraft/world/level/storage/loot/LootPool$Builder; +MD: net/minecraft/world/level/storage/loot/LootPool$Builder/m_79080_ (Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition$Builder;)Lnet/minecraft/world/level/storage/loot/predicates/ConditionUserBuilder; net/minecraft/world/level/storage/loot/LootPool$Builder/when (Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition$Builder;)Lnet/minecraft/world/level/storage/loot/predicates/ConditionUserBuilder; +MD: net/minecraft/world/level/storage/loot/LootPool$Builder/m_79080_ (Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition$Builder;)Lnet/minecraft/world/level/storage/loot/LootPool$Builder; net/minecraft/world/level/storage/loot/LootPool$Builder/when (Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition$Builder;)Lnet/minecraft/world/level/storage/loot/LootPool$Builder; +MD: net/minecraft/world/level/storage/loot/LootPool$Builder/m_79082_ ()Lnet/minecraft/world/level/storage/loot/LootPool; net/minecraft/world/level/storage/loot/LootPool$Builder/build ()Lnet/minecraft/world/level/storage/loot/LootPool; +MD: net/minecraft/world/level/storage/loot/LootPool$Serializer/ ()V net/minecraft/world/level/storage/loot/LootPool$Serializer/ ()V +MD: net/minecraft/world/level/storage/loot/LootPool$Serializer/deserialize (Lcom/google/gson/JsonElement;Ljava/lang/reflect/Type;Lcom/google/gson/JsonDeserializationContext;)Ljava/lang/Object; net/minecraft/world/level/storage/loot/LootPool$Serializer/deserialize (Lcom/google/gson/JsonElement;Ljava/lang/reflect/Type;Lcom/google/gson/JsonDeserializationContext;)Ljava/lang/Object; +MD: net/minecraft/world/level/storage/loot/LootPool$Serializer/deserialize (Lcom/google/gson/JsonElement;Ljava/lang/reflect/Type;Lcom/google/gson/JsonDeserializationContext;)Lnet/minecraft/world/level/storage/loot/LootPool; net/minecraft/world/level/storage/loot/LootPool$Serializer/deserialize (Lcom/google/gson/JsonElement;Ljava/lang/reflect/Type;Lcom/google/gson/JsonDeserializationContext;)Lnet/minecraft/world/level/storage/loot/LootPool; +MD: net/minecraft/world/level/storage/loot/LootPool$Serializer/serialize (Ljava/lang/Object;Ljava/lang/reflect/Type;Lcom/google/gson/JsonSerializationContext;)Lcom/google/gson/JsonElement; net/minecraft/world/level/storage/loot/LootPool$Serializer/serialize (Ljava/lang/Object;Ljava/lang/reflect/Type;Lcom/google/gson/JsonSerializationContext;)Lcom/google/gson/JsonElement; +MD: net/minecraft/world/level/storage/loot/LootPool$Serializer/serialize (Lnet/minecraft/world/level/storage/loot/LootPool;Ljava/lang/reflect/Type;Lcom/google/gson/JsonSerializationContext;)Lcom/google/gson/JsonElement; net/minecraft/world/level/storage/loot/LootPool$Serializer/serialize (Lnet/minecraft/world/level/storage/loot/LootPool;Ljava/lang/reflect/Type;Lcom/google/gson/JsonSerializationContext;)Lcom/google/gson/JsonElement; +MD: net/minecraft/world/level/storage/loot/LootTable/ ()V net/minecraft/world/level/storage/loot/LootTable/ ()V +MD: net/minecraft/world/level/storage/loot/LootTable/ (Lnet/minecraft/world/level/storage/loot/parameters/LootContextParamSet;Lnet/minecraft/resources/ResourceLocation;[Lnet/minecraft/world/level/storage/loot/LootPool;[Lnet/minecraft/world/level/storage/loot/functions/LootItemFunction;)V net/minecraft/world/level/storage/loot/LootTable/ (Lnet/minecraft/world/level/storage/loot/parameters/LootContextParamSet;Lnet/minecraft/resources/ResourceLocation;[Lnet/minecraft/world/level/storage/loot/LootPool;[Lnet/minecraft/world/level/storage/loot/functions/LootItemFunction;)V +MD: net/minecraft/world/level/storage/loot/LootTable/m_230919_ (Lnet/minecraft/world/Container;Lnet/minecraft/util/RandomSource;)Ljava/util/List; net/minecraft/world/level/storage/loot/LootTable/getAvailableSlots (Lnet/minecraft/world/Container;Lnet/minecraft/util/RandomSource;)Ljava/util/List; +MD: net/minecraft/world/level/storage/loot/LootTable/m_230922_ (Lnet/minecraft/world/level/storage/loot/LootContext;)Lit/unimi/dsi/fastutil/objects/ObjectArrayList; net/minecraft/world/level/storage/loot/LootTable/getRandomItems (Lnet/minecraft/world/level/storage/loot/LootContext;)Lit/unimi/dsi/fastutil/objects/ObjectArrayList; +MD: net/minecraft/world/level/storage/loot/LootTable/m_230924_ (Lit/unimi/dsi/fastutil/objects/ObjectArrayList;ILnet/minecraft/util/RandomSource;)V net/minecraft/world/level/storage/loot/LootTable/shuffleAndSplitItems (Lit/unimi/dsi/fastutil/objects/ObjectArrayList;ILnet/minecraft/util/RandomSource;)V +MD: net/minecraft/world/level/storage/loot/LootTable/m_246283_ (Lnet/minecraft/server/level/ServerLevel;Ljava/util/function/Consumer;)Ljava/util/function/Consumer; net/minecraft/world/level/storage/loot/LootTable/createStackSplitter (Lnet/minecraft/server/level/ServerLevel;Ljava/util/function/Consumer;)Ljava/util/function/Consumer; +MD: net/minecraft/world/level/storage/loot/LootTable/m_287134_ (Lnet/minecraft/server/level/ServerLevel;Ljava/util/function/Consumer;Lnet/minecraft/world/item/ItemStack;)V net/minecraft/world/level/storage/loot/LootTable/lambda$createStackSplitter$0 (Lnet/minecraft/server/level/ServerLevel;Ljava/util/function/Consumer;Lnet/minecraft/world/item/ItemStack;)V +MD: net/minecraft/world/level/storage/loot/LootTable/m_287188_ (Lnet/minecraft/world/Container;Lnet/minecraft/world/level/storage/loot/LootParams;J)V net/minecraft/world/level/storage/loot/LootTable/fill (Lnet/minecraft/world/Container;Lnet/minecraft/world/level/storage/loot/LootParams;J)V +MD: net/minecraft/world/level/storage/loot/LootTable/m_287190_ (Lnet/minecraft/world/level/storage/loot/LootParams;Ljava/util/function/Consumer;)V net/minecraft/world/level/storage/loot/LootTable/getRandomItemsRaw (Lnet/minecraft/world/level/storage/loot/LootParams;Ljava/util/function/Consumer;)V +MD: net/minecraft/world/level/storage/loot/LootTable/m_287195_ (Lnet/minecraft/world/level/storage/loot/LootParams;)Lit/unimi/dsi/fastutil/objects/ObjectArrayList; net/minecraft/world/level/storage/loot/LootTable/getRandomItems (Lnet/minecraft/world/level/storage/loot/LootParams;)Lit/unimi/dsi/fastutil/objects/ObjectArrayList; +MD: net/minecraft/world/level/storage/loot/LootTable/m_287214_ (Lnet/minecraft/world/level/storage/loot/LootParams;J)Lit/unimi/dsi/fastutil/objects/ObjectArrayList; net/minecraft/world/level/storage/loot/LootTable/getRandomItems (Lnet/minecraft/world/level/storage/loot/LootParams;J)Lit/unimi/dsi/fastutil/objects/ObjectArrayList; +MD: net/minecraft/world/level/storage/loot/LootTable/m_287228_ (Lnet/minecraft/world/level/storage/loot/LootParams;Ljava/util/function/Consumer;)V net/minecraft/world/level/storage/loot/LootTable/getRandomItems (Lnet/minecraft/world/level/storage/loot/LootParams;Ljava/util/function/Consumer;)V +MD: net/minecraft/world/level/storage/loot/LootTable/m_287276_ (Lnet/minecraft/world/level/storage/loot/LootParams;JLjava/util/function/Consumer;)V net/minecraft/world/level/storage/loot/LootTable/getRandomItems (Lnet/minecraft/world/level/storage/loot/LootParams;JLjava/util/function/Consumer;)V +MD: net/minecraft/world/level/storage/loot/LootTable/m_79122_ ()Lnet/minecraft/world/level/storage/loot/parameters/LootContextParamSet; net/minecraft/world/level/storage/loot/LootTable/getParamSet ()Lnet/minecraft/world/level/storage/loot/parameters/LootContextParamSet; +MD: net/minecraft/world/level/storage/loot/LootTable/m_79131_ (Lnet/minecraft/world/level/storage/loot/LootContext;Ljava/util/function/Consumer;)V net/minecraft/world/level/storage/loot/LootTable/getRandomItemsRaw (Lnet/minecraft/world/level/storage/loot/LootContext;Ljava/util/function/Consumer;)V +MD: net/minecraft/world/level/storage/loot/LootTable/m_79136_ (Lnet/minecraft/world/level/storage/loot/ValidationContext;)V net/minecraft/world/level/storage/loot/LootTable/validate (Lnet/minecraft/world/level/storage/loot/ValidationContext;)V +MD: net/minecraft/world/level/storage/loot/LootTable/m_79147_ ()Lnet/minecraft/world/level/storage/loot/LootTable$Builder; net/minecraft/world/level/storage/loot/LootTable/lootTable ()Lnet/minecraft/world/level/storage/loot/LootTable$Builder; +MD: net/minecraft/world/level/storage/loot/LootTable/m_79148_ (Lnet/minecraft/world/level/storage/loot/LootContext;Ljava/util/function/Consumer;)V net/minecraft/world/level/storage/loot/LootTable/getRandomItems (Lnet/minecraft/world/level/storage/loot/LootContext;Ljava/util/function/Consumer;)V +MD: net/minecraft/world/level/storage/loot/LootTable$Builder/ ()V net/minecraft/world/level/storage/loot/LootTable$Builder/ ()V +MD: net/minecraft/world/level/storage/loot/LootTable$Builder/m_287223_ (Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; net/minecraft/world/level/storage/loot/LootTable$Builder/setRandomSequence (Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; +MD: net/minecraft/world/level/storage/loot/LootTable$Builder/m_79073_ ()Lnet/minecraft/world/level/storage/loot/functions/FunctionUserBuilder; net/minecraft/world/level/storage/loot/LootTable$Builder/unwrap ()Lnet/minecraft/world/level/storage/loot/functions/FunctionUserBuilder; +MD: net/minecraft/world/level/storage/loot/LootTable$Builder/m_79073_ ()Lnet/minecraft/world/level/storage/loot/LootTable$Builder; net/minecraft/world/level/storage/loot/LootTable$Builder/unwrap ()Lnet/minecraft/world/level/storage/loot/LootTable$Builder; +MD: net/minecraft/world/level/storage/loot/LootTable$Builder/m_79078_ (Lnet/minecraft/world/level/storage/loot/functions/LootItemFunction$Builder;)Lnet/minecraft/world/level/storage/loot/functions/FunctionUserBuilder; net/minecraft/world/level/storage/loot/LootTable$Builder/apply (Lnet/minecraft/world/level/storage/loot/functions/LootItemFunction$Builder;)Lnet/minecraft/world/level/storage/loot/functions/FunctionUserBuilder; +MD: net/minecraft/world/level/storage/loot/LootTable$Builder/m_79078_ (Lnet/minecraft/world/level/storage/loot/functions/LootItemFunction$Builder;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; net/minecraft/world/level/storage/loot/LootTable$Builder/apply (Lnet/minecraft/world/level/storage/loot/functions/LootItemFunction$Builder;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; +MD: net/minecraft/world/level/storage/loot/LootTable$Builder/m_79161_ (Lnet/minecraft/world/level/storage/loot/LootPool$Builder;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; net/minecraft/world/level/storage/loot/LootTable$Builder/withPool (Lnet/minecraft/world/level/storage/loot/LootPool$Builder;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; +MD: net/minecraft/world/level/storage/loot/LootTable$Builder/m_79165_ (Lnet/minecraft/world/level/storage/loot/parameters/LootContextParamSet;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; net/minecraft/world/level/storage/loot/LootTable$Builder/setParamSet (Lnet/minecraft/world/level/storage/loot/parameters/LootContextParamSet;)Lnet/minecraft/world/level/storage/loot/LootTable$Builder; +MD: net/minecraft/world/level/storage/loot/LootTable$Builder/m_79167_ ()Lnet/minecraft/world/level/storage/loot/LootTable; net/minecraft/world/level/storage/loot/LootTable$Builder/build ()Lnet/minecraft/world/level/storage/loot/LootTable; +MD: net/minecraft/world/level/storage/loot/LootTable$Serializer/ ()V net/minecraft/world/level/storage/loot/LootTable$Serializer/ ()V +MD: net/minecraft/world/level/storage/loot/LootTable$Serializer/deserialize (Lcom/google/gson/JsonElement;Ljava/lang/reflect/Type;Lcom/google/gson/JsonDeserializationContext;)Lnet/minecraft/world/level/storage/loot/LootTable; net/minecraft/world/level/storage/loot/LootTable$Serializer/deserialize (Lcom/google/gson/JsonElement;Ljava/lang/reflect/Type;Lcom/google/gson/JsonDeserializationContext;)Lnet/minecraft/world/level/storage/loot/LootTable; +MD: net/minecraft/world/level/storage/loot/LootTable$Serializer/deserialize (Lcom/google/gson/JsonElement;Ljava/lang/reflect/Type;Lcom/google/gson/JsonDeserializationContext;)Ljava/lang/Object; net/minecraft/world/level/storage/loot/LootTable$Serializer/deserialize (Lcom/google/gson/JsonElement;Ljava/lang/reflect/Type;Lcom/google/gson/JsonDeserializationContext;)Ljava/lang/Object; +MD: net/minecraft/world/level/storage/loot/LootTable$Serializer/serialize (Ljava/lang/Object;Ljava/lang/reflect/Type;Lcom/google/gson/JsonSerializationContext;)Lcom/google/gson/JsonElement; net/minecraft/world/level/storage/loot/LootTable$Serializer/serialize (Ljava/lang/Object;Ljava/lang/reflect/Type;Lcom/google/gson/JsonSerializationContext;)Lcom/google/gson/JsonElement; +MD: net/minecraft/world/level/storage/loot/LootTable$Serializer/serialize (Lnet/minecraft/world/level/storage/loot/LootTable;Ljava/lang/reflect/Type;Lcom/google/gson/JsonSerializationContext;)Lcom/google/gson/JsonElement; net/minecraft/world/level/storage/loot/LootTable$Serializer/serialize (Lnet/minecraft/world/level/storage/loot/LootTable;Ljava/lang/reflect/Type;Lcom/google/gson/JsonSerializationContext;)Lcom/google/gson/JsonElement; +MD: net/minecraft/world/level/storage/loot/Serializer/m_6170_ (Lcom/google/gson/JsonObject;Ljava/lang/Object;Lcom/google/gson/JsonSerializationContext;)V net/minecraft/world/level/storage/loot/Serializer/serialize (Lcom/google/gson/JsonObject;Ljava/lang/Object;Lcom/google/gson/JsonSerializationContext;)V +MD: net/minecraft/world/level/storage/loot/Serializer/m_7561_ (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;)Ljava/lang/Object; net/minecraft/world/level/storage/loot/Serializer/deserialize (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;)Ljava/lang/Object; +MD: net/minecraft/world/level/storage/loot/SerializerType/ (Lnet/minecraft/world/level/storage/loot/Serializer;)V net/minecraft/world/level/storage/loot/SerializerType/ (Lnet/minecraft/world/level/storage/loot/Serializer;)V +MD: net/minecraft/world/level/storage/loot/SerializerType/m_79331_ ()Lnet/minecraft/world/level/storage/loot/Serializer; net/minecraft/world/level/storage/loot/SerializerType/getSerializer ()Lnet/minecraft/world/level/storage/loot/Serializer; +MD: net/minecraft/world/level/storage/loot/ValidationContext/ (Lnet/minecraft/world/level/storage/loot/parameters/LootContextParamSet;Lnet/minecraft/world/level/storage/loot/LootDataResolver;)V net/minecraft/world/level/storage/loot/ValidationContext/ (Lnet/minecraft/world/level/storage/loot/parameters/LootContextParamSet;Lnet/minecraft/world/level/storage/loot/LootDataResolver;)V +MD: net/minecraft/world/level/storage/loot/ValidationContext/ (Lcom/google/common/collect/Multimap;Ljava/util/function/Supplier;Lnet/minecraft/world/level/storage/loot/parameters/LootContextParamSet;Lnet/minecraft/world/level/storage/loot/LootDataResolver;Ljava/util/Set;)V net/minecraft/world/level/storage/loot/ValidationContext/ (Lcom/google/common/collect/Multimap;Ljava/util/function/Supplier;Lnet/minecraft/world/level/storage/loot/parameters/LootContextParamSet;Lnet/minecraft/world/level/storage/loot/LootDataResolver;Ljava/util/Set;)V +MD: net/minecraft/world/level/storage/loot/ValidationContext/m_278632_ (Ljava/lang/String;Lnet/minecraft/world/level/storage/loot/LootDataId;)Lnet/minecraft/world/level/storage/loot/ValidationContext; net/minecraft/world/level/storage/loot/ValidationContext/enterElement (Ljava/lang/String;Lnet/minecraft/world/level/storage/loot/LootDataId;)Lnet/minecraft/world/level/storage/loot/ValidationContext; +MD: net/minecraft/world/level/storage/loot/ValidationContext/m_278720_ ()Lnet/minecraft/world/level/storage/loot/LootDataResolver; net/minecraft/world/level/storage/loot/ValidationContext/resolver ()Lnet/minecraft/world/level/storage/loot/LootDataResolver; +MD: net/minecraft/world/level/storage/loot/ValidationContext/m_278820_ (Lnet/minecraft/world/level/storage/loot/LootDataId;)Z net/minecraft/world/level/storage/loot/ValidationContext/hasVisitedElement (Lnet/minecraft/world/level/storage/loot/LootDataId;)Z +MD: net/minecraft/world/level/storage/loot/ValidationContext/m_79352_ ()Lcom/google/common/collect/Multimap; net/minecraft/world/level/storage/loot/ValidationContext/getProblems ()Lcom/google/common/collect/Multimap; +MD: net/minecraft/world/level/storage/loot/ValidationContext/m_79353_ (Lnet/minecraft/world/level/storage/loot/LootContextUser;)V net/minecraft/world/level/storage/loot/ValidationContext/validateUser (Lnet/minecraft/world/level/storage/loot/LootContextUser;)V +MD: net/minecraft/world/level/storage/loot/ValidationContext/m_79355_ (Lnet/minecraft/world/level/storage/loot/parameters/LootContextParamSet;)Lnet/minecraft/world/level/storage/loot/ValidationContext; net/minecraft/world/level/storage/loot/ValidationContext/setParams (Lnet/minecraft/world/level/storage/loot/parameters/LootContextParamSet;)Lnet/minecraft/world/level/storage/loot/ValidationContext; +MD: net/minecraft/world/level/storage/loot/ValidationContext/m_79357_ (Ljava/lang/String;)V net/minecraft/world/level/storage/loot/ValidationContext/reportProblem (Ljava/lang/String;)V +MD: net/minecraft/world/level/storage/loot/ValidationContext/m_79364_ ()Ljava/lang/String; net/minecraft/world/level/storage/loot/ValidationContext/getContext ()Ljava/lang/String; +MD: net/minecraft/world/level/storage/loot/ValidationContext/m_79365_ (Ljava/lang/String;)Lnet/minecraft/world/level/storage/loot/ValidationContext; net/minecraft/world/level/storage/loot/ValidationContext/forChild (Ljava/lang/String;)Lnet/minecraft/world/level/storage/loot/ValidationContext; +MD: net/minecraft/world/level/storage/loot/ValidationContext/m_79372_ ()Ljava/lang/String; net/minecraft/world/level/storage/loot/ValidationContext/lambda$new$0 ()Ljava/lang/String; +MD: net/minecraft/world/level/storage/loot/ValidationContext/m_79373_ (Ljava/lang/String;)Ljava/lang/String; net/minecraft/world/level/storage/loot/ValidationContext/lambda$enterElement$2 (Ljava/lang/String;)Ljava/lang/String; +MD: net/minecraft/world/level/storage/loot/ValidationContext/m_79377_ (Ljava/lang/String;)Ljava/lang/String; net/minecraft/world/level/storage/loot/ValidationContext/lambda$forChild$1 (Ljava/lang/String;)Ljava/lang/String; +MD: net/minecraft/world/level/storage/loot/entries/AlternativesEntry/ ([Lnet/minecraft/world/level/storage/loot/entries/LootPoolEntryContainer;[Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;)V net/minecraft/world/level/storage/loot/entries/AlternativesEntry/ ([Lnet/minecraft/world/level/storage/loot/entries/LootPoolEntryContainer;[Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;)V +MD: net/minecraft/world/level/storage/loot/entries/AlternativesEntry/m_230931_ (I)[Lnet/minecraft/world/level/storage/loot/entries/LootPoolEntryContainer$Builder; net/minecraft/world/level/storage/loot/entries/AlternativesEntry/lambda$alternatives$1 (I)[Lnet/minecraft/world/level/storage/loot/entries/LootPoolEntryContainer$Builder; +MD: net/minecraft/world/level/storage/loot/entries/AlternativesEntry/m_230933_ (Ljava/util/Collection;Ljava/util/function/Function;)Lnet/minecraft/world/level/storage/loot/entries/AlternativesEntry$Builder; net/minecraft/world/level/storage/loot/entries/AlternativesEntry/alternatives (Ljava/util/Collection;Ljava/util/function/Function;)Lnet/minecraft/world/level/storage/loot/entries/AlternativesEntry$Builder; +MD: net/minecraft/world/level/storage/loot/entries/AlternativesEntry/m_5690_ ([Lnet/minecraft/world/level/storage/loot/entries/ComposableEntryContainer;)Lnet/minecraft/world/level/storage/loot/entries/ComposableEntryContainer; net/minecraft/world/level/storage/loot/entries/AlternativesEntry/compose ([Lnet/minecraft/world/level/storage/loot/entries/ComposableEntryContainer;)Lnet/minecraft/world/level/storage/loot/entries/ComposableEntryContainer; +MD: net/minecraft/world/level/storage/loot/entries/AlternativesEntry/m_6165_ (Lnet/minecraft/world/level/storage/loot/ValidationContext;)V net/minecraft/world/level/storage/loot/entries/AlternativesEntry/validate (Lnet/minecraft/world/level/storage/loot/ValidationContext;)V +MD: net/minecraft/world/level/storage/loot/entries/AlternativesEntry/m_6751_ ()Lnet/minecraft/world/level/storage/loot/entries/LootPoolEntryType; net/minecraft/world/level/storage/loot/entries/AlternativesEntry/getType ()Lnet/minecraft/world/level/storage/loot/entries/LootPoolEntryType; +MD: net/minecraft/world/level/storage/loot/entries/AlternativesEntry/m_79391_ ([Lnet/minecraft/world/level/storage/loot/entries/ComposableEntryContainer;Lnet/minecraft/world/level/storage/loot/LootContext;Ljava/util/function/Consumer;)Z net/minecraft/world/level/storage/loot/entries/AlternativesEntry/lambda$compose$0 ([Lnet/minecraft/world/level/storage/loot/entries/ComposableEntryContainer;Lnet/minecraft/world/level/storage/loot/LootContext;Ljava/util/function/Consumer;)Z +MD: net/minecraft/world/level/storage/loot/entries/AlternativesEntry/m_79395_ ([Lnet/minecraft/world/level/storage/loot/entries/LootPoolEntryContainer$Builder;)Lnet/minecraft/world/level/storage/loot/entries/AlternativesEntry$Builder; net/minecraft/world/level/storage/loot/entries/AlternativesEntry/alternatives ([Lnet/minecraft/world/level/storage/loot/entries/LootPoolEntryContainer$Builder;)Lnet/minecraft/world/level/storage/loot/entries/AlternativesEntry$Builder; +MD: net/minecraft/world/level/storage/loot/entries/AlternativesEntry$Builder/ ([Lnet/minecraft/world/level/storage/loot/entries/LootPoolEntryContainer$Builder;)V net/minecraft/world/level/storage/loot/entries/AlternativesEntry$Builder/ ([Lnet/minecraft/world/level/storage/loot/entries/LootPoolEntryContainer$Builder;)V +MD: net/minecraft/world/level/storage/loot/entries/AlternativesEntry$Builder/m_6897_ ()Lnet/minecraft/world/level/storage/loot/entries/LootPoolEntryContainer$Builder; net/minecraft/world/level/storage/loot/entries/AlternativesEntry$Builder/getThis ()Lnet/minecraft/world/level/storage/loot/entries/LootPoolEntryContainer$Builder; +MD: net/minecraft/world/level/storage/loot/entries/AlternativesEntry$Builder/m_6897_ ()Lnet/minecraft/world/level/storage/loot/entries/AlternativesEntry$Builder; net/minecraft/world/level/storage/loot/entries/AlternativesEntry$Builder/getThis ()Lnet/minecraft/world/level/storage/loot/entries/AlternativesEntry$Builder; +MD: net/minecraft/world/level/storage/loot/entries/AlternativesEntry$Builder/m_7170_ (Lnet/minecraft/world/level/storage/loot/entries/LootPoolEntryContainer$Builder;)Lnet/minecraft/world/level/storage/loot/entries/AlternativesEntry$Builder; net/minecraft/world/level/storage/loot/entries/AlternativesEntry$Builder/otherwise (Lnet/minecraft/world/level/storage/loot/entries/LootPoolEntryContainer$Builder;)Lnet/minecraft/world/level/storage/loot/entries/AlternativesEntry$Builder; +MD: net/minecraft/world/level/storage/loot/entries/AlternativesEntry$Builder/m_7512_ ()Lnet/minecraft/world/level/storage/loot/entries/LootPoolEntryContainer; net/minecraft/world/level/storage/loot/entries/AlternativesEntry$Builder/build ()Lnet/minecraft/world/level/storage/loot/entries/LootPoolEntryContainer; +MD: net/minecraft/world/level/storage/loot/entries/ComposableEntryContainer/ ()V net/minecraft/world/level/storage/loot/entries/ComposableEntryContainer/ ()V +MD: net/minecraft/world/level/storage/loot/entries/ComposableEntryContainer/m_6562_ (Lnet/minecraft/world/level/storage/loot/LootContext;Ljava/util/function/Consumer;)Z net/minecraft/world/level/storage/loot/entries/ComposableEntryContainer/expand (Lnet/minecraft/world/level/storage/loot/LootContext;Ljava/util/function/Consumer;)Z +MD: net/minecraft/world/level/storage/loot/entries/ComposableEntryContainer/m_79408_ (Lnet/minecraft/world/level/storage/loot/LootContext;Ljava/util/function/Consumer;)Z net/minecraft/world/level/storage/loot/entries/ComposableEntryContainer/lambda$static$1 (Lnet/minecraft/world/level/storage/loot/LootContext;Ljava/util/function/Consumer;)Z +MD: net/minecraft/world/level/storage/loot/entries/ComposableEntryContainer/m_79411_ (Lnet/minecraft/world/level/storage/loot/entries/ComposableEntryContainer;)Lnet/minecraft/world/level/storage/loot/entries/ComposableEntryContainer; net/minecraft/world/level/storage/loot/entries/ComposableEntryContainer/and (Lnet/minecraft/world/level/storage/loot/entries/ComposableEntryContainer;)Lnet/minecraft/world/level/storage/loot/entries/ComposableEntryContainer; +MD: net/minecraft/world/level/storage/loot/entries/ComposableEntryContainer/m_79413_ (Lnet/minecraft/world/level/storage/loot/entries/ComposableEntryContainer;Lnet/minecraft/world/level/storage/loot/LootContext;Ljava/util/function/Consumer;)Z net/minecraft/world/level/storage/loot/entries/ComposableEntryContainer/lambda$or$3 (Lnet/minecraft/world/level/storage/loot/entries/ComposableEntryContainer;Lnet/minecraft/world/level/storage/loot/LootContext;Ljava/util/function/Consumer;)Z +MD: net/minecraft/world/level/storage/loot/entries/ComposableEntryContainer/m_79417_ (Lnet/minecraft/world/level/storage/loot/LootContext;Ljava/util/function/Consumer;)Z net/minecraft/world/level/storage/loot/entries/ComposableEntryContainer/lambda$static$0 (Lnet/minecraft/world/level/storage/loot/LootContext;Ljava/util/function/Consumer;)Z +MD: net/minecraft/world/level/storage/loot/entries/ComposableEntryContainer/m_79420_ (Lnet/minecraft/world/level/storage/loot/entries/ComposableEntryContainer;)Lnet/minecraft/world/level/storage/loot/entries/ComposableEntryContainer; net/minecraft/world/level/storage/loot/entries/ComposableEntryContainer/or (Lnet/minecraft/world/level/storage/loot/entries/ComposableEntryContainer;)Lnet/minecraft/world/level/storage/loot/entries/ComposableEntryContainer; +MD: net/minecraft/world/level/storage/loot/entries/ComposableEntryContainer/m_79422_ (Lnet/minecraft/world/level/storage/loot/entries/ComposableEntryContainer;Lnet/minecraft/world/level/storage/loot/LootContext;Ljava/util/function/Consumer;)Z net/minecraft/world/level/storage/loot/entries/ComposableEntryContainer/lambda$and$2 (Lnet/minecraft/world/level/storage/loot/entries/ComposableEntryContainer;Lnet/minecraft/world/level/storage/loot/LootContext;Ljava/util/function/Consumer;)Z +MD: net/minecraft/world/level/storage/loot/entries/CompositeEntryBase/ ([Lnet/minecraft/world/level/storage/loot/entries/LootPoolEntryContainer;[Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;)V net/minecraft/world/level/storage/loot/entries/CompositeEntryBase/ ([Lnet/minecraft/world/level/storage/loot/entries/LootPoolEntryContainer;[Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;)V +MD: net/minecraft/world/level/storage/loot/entries/CompositeEntryBase/m_5690_ ([Lnet/minecraft/world/level/storage/loot/entries/ComposableEntryContainer;)Lnet/minecraft/world/level/storage/loot/entries/ComposableEntryContainer; net/minecraft/world/level/storage/loot/entries/CompositeEntryBase/compose ([Lnet/minecraft/world/level/storage/loot/entries/ComposableEntryContainer;)Lnet/minecraft/world/level/storage/loot/entries/ComposableEntryContainer; +MD: net/minecraft/world/level/storage/loot/entries/CompositeEntryBase/m_6165_ (Lnet/minecraft/world/level/storage/loot/ValidationContext;)V net/minecraft/world/level/storage/loot/entries/CompositeEntryBase/validate (Lnet/minecraft/world/level/storage/loot/ValidationContext;)V +MD: net/minecraft/world/level/storage/loot/entries/CompositeEntryBase/m_6562_ (Lnet/minecraft/world/level/storage/loot/LootContext;Ljava/util/function/Consumer;)Z net/minecraft/world/level/storage/loot/entries/CompositeEntryBase/expand (Lnet/minecraft/world/level/storage/loot/LootContext;Ljava/util/function/Consumer;)Z +MD: net/minecraft/world/level/storage/loot/entries/CompositeEntryBase/m_79435_ (Lnet/minecraft/world/level/storage/loot/entries/CompositeEntryBase$CompositeEntryConstructor;)Lnet/minecraft/world/level/storage/loot/entries/LootPoolEntryContainer$Serializer; net/minecraft/world/level/storage/loot/entries/CompositeEntryBase/createSerializer (Lnet/minecraft/world/level/storage/loot/entries/CompositeEntryBase$CompositeEntryConstructor;)Lnet/minecraft/world/level/storage/loot/entries/LootPoolEntryContainer$Serializer; +MD: net/minecraft/world/level/storage/loot/entries/CompositeEntryBase$1/ (Lnet/minecraft/world/level/storage/loot/entries/CompositeEntryBase$CompositeEntryConstructor;)V net/minecraft/world/level/storage/loot/entries/CompositeEntryBase$1/ (Lnet/minecraft/world/level/storage/loot/entries/CompositeEntryBase$CompositeEntryConstructor;)V +MD: net/minecraft/world/level/storage/loot/entries/CompositeEntryBase$1/m_5921_ (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;[Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;)Lnet/minecraft/world/level/storage/loot/entries/LootPoolEntryContainer; net/minecraft/world/level/storage/loot/entries/CompositeEntryBase$1/deserializeCustom (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;[Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;)Lnet/minecraft/world/level/storage/loot/entries/LootPoolEntryContainer; +MD: net/minecraft/world/level/storage/loot/entries/CompositeEntryBase$1/m_5921_ (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;[Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;)Lnet/minecraft/world/level/storage/loot/entries/CompositeEntryBase; net/minecraft/world/level/storage/loot/entries/CompositeEntryBase$1/deserializeCustom (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;[Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;)Lnet/minecraft/world/level/storage/loot/entries/CompositeEntryBase; +MD: net/minecraft/world/level/storage/loot/entries/CompositeEntryBase$1/m_7219_ (Lcom/google/gson/JsonObject;Lnet/minecraft/world/level/storage/loot/entries/LootPoolEntryContainer;Lcom/google/gson/JsonSerializationContext;)V net/minecraft/world/level/storage/loot/entries/CompositeEntryBase$1/serializeCustom (Lcom/google/gson/JsonObject;Lnet/minecraft/world/level/storage/loot/entries/LootPoolEntryContainer;Lcom/google/gson/JsonSerializationContext;)V +MD: net/minecraft/world/level/storage/loot/entries/CompositeEntryBase$1/m_7219_ (Lcom/google/gson/JsonObject;Lnet/minecraft/world/level/storage/loot/entries/CompositeEntryBase;Lcom/google/gson/JsonSerializationContext;)V net/minecraft/world/level/storage/loot/entries/CompositeEntryBase$1/serializeCustom (Lcom/google/gson/JsonObject;Lnet/minecraft/world/level/storage/loot/entries/CompositeEntryBase;Lcom/google/gson/JsonSerializationContext;)V +MD: net/minecraft/world/level/storage/loot/entries/CompositeEntryBase$CompositeEntryConstructor/m_79460_ ([Lnet/minecraft/world/level/storage/loot/entries/LootPoolEntryContainer;[Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;)Lnet/minecraft/world/level/storage/loot/entries/CompositeEntryBase; net/minecraft/world/level/storage/loot/entries/CompositeEntryBase$CompositeEntryConstructor/create ([Lnet/minecraft/world/level/storage/loot/entries/LootPoolEntryContainer;[Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;)Lnet/minecraft/world/level/storage/loot/entries/CompositeEntryBase; +MD: net/minecraft/world/level/storage/loot/entries/DynamicLoot/ (Lnet/minecraft/resources/ResourceLocation;II[Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;[Lnet/minecraft/world/level/storage/loot/functions/LootItemFunction;)V net/minecraft/world/level/storage/loot/entries/DynamicLoot/ (Lnet/minecraft/resources/ResourceLocation;II[Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;[Lnet/minecraft/world/level/storage/loot/functions/LootItemFunction;)V +MD: net/minecraft/world/level/storage/loot/entries/DynamicLoot/m_6751_ ()Lnet/minecraft/world/level/storage/loot/entries/LootPoolEntryType; net/minecraft/world/level/storage/loot/entries/DynamicLoot/getType ()Lnet/minecraft/world/level/storage/loot/entries/LootPoolEntryType; +MD: net/minecraft/world/level/storage/loot/entries/DynamicLoot/m_6948_ (Ljava/util/function/Consumer;Lnet/minecraft/world/level/storage/loot/LootContext;)V net/minecraft/world/level/storage/loot/entries/DynamicLoot/createItemStack (Ljava/util/function/Consumer;Lnet/minecraft/world/level/storage/loot/LootContext;)V +MD: net/minecraft/world/level/storage/loot/entries/DynamicLoot/m_79483_ (Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/world/level/storage/loot/entries/LootPoolSingletonContainer$Builder; net/minecraft/world/level/storage/loot/entries/DynamicLoot/dynamicEntry (Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/world/level/storage/loot/entries/LootPoolSingletonContainer$Builder; +MD: net/minecraft/world/level/storage/loot/entries/DynamicLoot/m_79485_ (Lnet/minecraft/resources/ResourceLocation;II[Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;[Lnet/minecraft/world/level/storage/loot/functions/LootItemFunction;)Lnet/minecraft/world/level/storage/loot/entries/LootPoolSingletonContainer; net/minecraft/world/level/storage/loot/entries/DynamicLoot/lambda$dynamicEntry$0 (Lnet/minecraft/resources/ResourceLocation;II[Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;[Lnet/minecraft/world/level/storage/loot/functions/LootItemFunction;)Lnet/minecraft/world/level/storage/loot/entries/LootPoolSingletonContainer; +MD: net/minecraft/world/level/storage/loot/entries/DynamicLoot$Serializer/ ()V net/minecraft/world/level/storage/loot/entries/DynamicLoot$Serializer/ ()V +MD: net/minecraft/world/level/storage/loot/entries/DynamicLoot$Serializer/m_7219_ (Lcom/google/gson/JsonObject;Lnet/minecraft/world/level/storage/loot/entries/LootPoolSingletonContainer;Lcom/google/gson/JsonSerializationContext;)V net/minecraft/world/level/storage/loot/entries/DynamicLoot$Serializer/serializeCustom (Lcom/google/gson/JsonObject;Lnet/minecraft/world/level/storage/loot/entries/LootPoolSingletonContainer;Lcom/google/gson/JsonSerializationContext;)V +MD: net/minecraft/world/level/storage/loot/entries/DynamicLoot$Serializer/m_7219_ (Lcom/google/gson/JsonObject;Lnet/minecraft/world/level/storage/loot/entries/LootPoolEntryContainer;Lcom/google/gson/JsonSerializationContext;)V net/minecraft/world/level/storage/loot/entries/DynamicLoot$Serializer/serializeCustom (Lcom/google/gson/JsonObject;Lnet/minecraft/world/level/storage/loot/entries/LootPoolEntryContainer;Lcom/google/gson/JsonSerializationContext;)V +MD: net/minecraft/world/level/storage/loot/entries/DynamicLoot$Serializer/m_7219_ (Lcom/google/gson/JsonObject;Lnet/minecraft/world/level/storage/loot/entries/DynamicLoot;Lcom/google/gson/JsonSerializationContext;)V net/minecraft/world/level/storage/loot/entries/DynamicLoot$Serializer/serializeCustom (Lcom/google/gson/JsonObject;Lnet/minecraft/world/level/storage/loot/entries/DynamicLoot;Lcom/google/gson/JsonSerializationContext;)V +MD: net/minecraft/world/level/storage/loot/entries/DynamicLoot$Serializer/m_7267_ (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;II[Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;[Lnet/minecraft/world/level/storage/loot/functions/LootItemFunction;)Lnet/minecraft/world/level/storage/loot/entries/LootPoolSingletonContainer; net/minecraft/world/level/storage/loot/entries/DynamicLoot$Serializer/deserialize (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;II[Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;[Lnet/minecraft/world/level/storage/loot/functions/LootItemFunction;)Lnet/minecraft/world/level/storage/loot/entries/LootPoolSingletonContainer; +MD: net/minecraft/world/level/storage/loot/entries/DynamicLoot$Serializer/m_7267_ (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;II[Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;[Lnet/minecraft/world/level/storage/loot/functions/LootItemFunction;)Lnet/minecraft/world/level/storage/loot/entries/DynamicLoot; net/minecraft/world/level/storage/loot/entries/DynamicLoot$Serializer/deserialize (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;II[Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;[Lnet/minecraft/world/level/storage/loot/functions/LootItemFunction;)Lnet/minecraft/world/level/storage/loot/entries/DynamicLoot; +MD: net/minecraft/world/level/storage/loot/entries/EmptyLootItem/ (II[Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;[Lnet/minecraft/world/level/storage/loot/functions/LootItemFunction;)V net/minecraft/world/level/storage/loot/entries/EmptyLootItem/ (II[Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;[Lnet/minecraft/world/level/storage/loot/functions/LootItemFunction;)V +MD: net/minecraft/world/level/storage/loot/entries/EmptyLootItem/m_6751_ ()Lnet/minecraft/world/level/storage/loot/entries/LootPoolEntryType; net/minecraft/world/level/storage/loot/entries/EmptyLootItem/getType ()Lnet/minecraft/world/level/storage/loot/entries/LootPoolEntryType; +MD: net/minecraft/world/level/storage/loot/entries/EmptyLootItem/m_6948_ (Ljava/util/function/Consumer;Lnet/minecraft/world/level/storage/loot/LootContext;)V net/minecraft/world/level/storage/loot/entries/EmptyLootItem/createItemStack (Ljava/util/function/Consumer;Lnet/minecraft/world/level/storage/loot/LootContext;)V +MD: net/minecraft/world/level/storage/loot/entries/EmptyLootItem/m_79533_ ()Lnet/minecraft/world/level/storage/loot/entries/LootPoolSingletonContainer$Builder; net/minecraft/world/level/storage/loot/entries/EmptyLootItem/emptyItem ()Lnet/minecraft/world/level/storage/loot/entries/LootPoolSingletonContainer$Builder; +MD: net/minecraft/world/level/storage/loot/entries/EmptyLootItem$Serializer/ ()V net/minecraft/world/level/storage/loot/entries/EmptyLootItem$Serializer/ ()V +MD: net/minecraft/world/level/storage/loot/entries/EmptyLootItem$Serializer/m_7267_ (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;II[Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;[Lnet/minecraft/world/level/storage/loot/functions/LootItemFunction;)Lnet/minecraft/world/level/storage/loot/entries/LootPoolSingletonContainer; net/minecraft/world/level/storage/loot/entries/EmptyLootItem$Serializer/deserialize (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;II[Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;[Lnet/minecraft/world/level/storage/loot/functions/LootItemFunction;)Lnet/minecraft/world/level/storage/loot/entries/LootPoolSingletonContainer; +MD: net/minecraft/world/level/storage/loot/entries/EmptyLootItem$Serializer/m_7267_ (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;II[Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;[Lnet/minecraft/world/level/storage/loot/functions/LootItemFunction;)Lnet/minecraft/world/level/storage/loot/entries/EmptyLootItem; net/minecraft/world/level/storage/loot/entries/EmptyLootItem$Serializer/deserialize (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;II[Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;[Lnet/minecraft/world/level/storage/loot/functions/LootItemFunction;)Lnet/minecraft/world/level/storage/loot/entries/EmptyLootItem; +MD: net/minecraft/world/level/storage/loot/entries/EntryGroup/ ([Lnet/minecraft/world/level/storage/loot/entries/LootPoolEntryContainer;[Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;)V net/minecraft/world/level/storage/loot/entries/EntryGroup/ ([Lnet/minecraft/world/level/storage/loot/entries/LootPoolEntryContainer;[Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;)V +MD: net/minecraft/world/level/storage/loot/entries/EntryGroup/m_165137_ ([Lnet/minecraft/world/level/storage/loot/entries/LootPoolEntryContainer$Builder;)Lnet/minecraft/world/level/storage/loot/entries/EntryGroup$Builder; net/minecraft/world/level/storage/loot/entries/EntryGroup/list ([Lnet/minecraft/world/level/storage/loot/entries/LootPoolEntryContainer$Builder;)Lnet/minecraft/world/level/storage/loot/entries/EntryGroup$Builder; +MD: net/minecraft/world/level/storage/loot/entries/EntryGroup/m_5690_ ([Lnet/minecraft/world/level/storage/loot/entries/ComposableEntryContainer;)Lnet/minecraft/world/level/storage/loot/entries/ComposableEntryContainer; net/minecraft/world/level/storage/loot/entries/EntryGroup/compose ([Lnet/minecraft/world/level/storage/loot/entries/ComposableEntryContainer;)Lnet/minecraft/world/level/storage/loot/entries/ComposableEntryContainer; +MD: net/minecraft/world/level/storage/loot/entries/EntryGroup/m_6751_ ()Lnet/minecraft/world/level/storage/loot/entries/LootPoolEntryType; net/minecraft/world/level/storage/loot/entries/EntryGroup/getType ()Lnet/minecraft/world/level/storage/loot/entries/LootPoolEntryType; +MD: net/minecraft/world/level/storage/loot/entries/EntryGroup/m_79553_ (Lnet/minecraft/world/level/storage/loot/entries/ComposableEntryContainer;Lnet/minecraft/world/level/storage/loot/entries/ComposableEntryContainer;Lnet/minecraft/world/level/storage/loot/LootContext;Ljava/util/function/Consumer;)Z net/minecraft/world/level/storage/loot/entries/EntryGroup/lambda$compose$0 (Lnet/minecraft/world/level/storage/loot/entries/ComposableEntryContainer;Lnet/minecraft/world/level/storage/loot/entries/ComposableEntryContainer;Lnet/minecraft/world/level/storage/loot/LootContext;Ljava/util/function/Consumer;)Z +MD: net/minecraft/world/level/storage/loot/entries/EntryGroup/m_79560_ ([Lnet/minecraft/world/level/storage/loot/entries/ComposableEntryContainer;Lnet/minecraft/world/level/storage/loot/LootContext;Ljava/util/function/Consumer;)Z net/minecraft/world/level/storage/loot/entries/EntryGroup/lambda$compose$1 ([Lnet/minecraft/world/level/storage/loot/entries/ComposableEntryContainer;Lnet/minecraft/world/level/storage/loot/LootContext;Ljava/util/function/Consumer;)Z +MD: net/minecraft/world/level/storage/loot/entries/EntryGroup$Builder/ ([Lnet/minecraft/world/level/storage/loot/entries/LootPoolEntryContainer$Builder;)V net/minecraft/world/level/storage/loot/entries/EntryGroup$Builder/ ([Lnet/minecraft/world/level/storage/loot/entries/LootPoolEntryContainer$Builder;)V +MD: net/minecraft/world/level/storage/loot/entries/EntryGroup$Builder/m_142719_ (Lnet/minecraft/world/level/storage/loot/entries/LootPoolEntryContainer$Builder;)Lnet/minecraft/world/level/storage/loot/entries/EntryGroup$Builder; net/minecraft/world/level/storage/loot/entries/EntryGroup$Builder/append (Lnet/minecraft/world/level/storage/loot/entries/LootPoolEntryContainer$Builder;)Lnet/minecraft/world/level/storage/loot/entries/EntryGroup$Builder; +MD: net/minecraft/world/level/storage/loot/entries/EntryGroup$Builder/m_6897_ ()Lnet/minecraft/world/level/storage/loot/entries/LootPoolEntryContainer$Builder; net/minecraft/world/level/storage/loot/entries/EntryGroup$Builder/getThis ()Lnet/minecraft/world/level/storage/loot/entries/LootPoolEntryContainer$Builder; +MD: net/minecraft/world/level/storage/loot/entries/EntryGroup$Builder/m_6897_ ()Lnet/minecraft/world/level/storage/loot/entries/EntryGroup$Builder; net/minecraft/world/level/storage/loot/entries/EntryGroup$Builder/getThis ()Lnet/minecraft/world/level/storage/loot/entries/EntryGroup$Builder; +MD: net/minecraft/world/level/storage/loot/entries/EntryGroup$Builder/m_7512_ ()Lnet/minecraft/world/level/storage/loot/entries/LootPoolEntryContainer; net/minecraft/world/level/storage/loot/entries/EntryGroup$Builder/build ()Lnet/minecraft/world/level/storage/loot/entries/LootPoolEntryContainer; +MD: net/minecraft/world/level/storage/loot/entries/LootItem/ (Lnet/minecraft/world/item/Item;II[Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;[Lnet/minecraft/world/level/storage/loot/functions/LootItemFunction;)V net/minecraft/world/level/storage/loot/entries/LootItem/ (Lnet/minecraft/world/item/Item;II[Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;[Lnet/minecraft/world/level/storage/loot/functions/LootItemFunction;)V +MD: net/minecraft/world/level/storage/loot/entries/LootItem/m_6751_ ()Lnet/minecraft/world/level/storage/loot/entries/LootPoolEntryType; net/minecraft/world/level/storage/loot/entries/LootItem/getType ()Lnet/minecraft/world/level/storage/loot/entries/LootPoolEntryType; +MD: net/minecraft/world/level/storage/loot/entries/LootItem/m_6948_ (Ljava/util/function/Consumer;Lnet/minecraft/world/level/storage/loot/LootContext;)V net/minecraft/world/level/storage/loot/entries/LootItem/createItemStack (Ljava/util/function/Consumer;Lnet/minecraft/world/level/storage/loot/LootContext;)V +MD: net/minecraft/world/level/storage/loot/entries/LootItem/m_79579_ (Lnet/minecraft/world/level/ItemLike;)Lnet/minecraft/world/level/storage/loot/entries/LootPoolSingletonContainer$Builder; net/minecraft/world/level/storage/loot/entries/LootItem/lootTableItem (Lnet/minecraft/world/level/ItemLike;)Lnet/minecraft/world/level/storage/loot/entries/LootPoolSingletonContainer$Builder; +MD: net/minecraft/world/level/storage/loot/entries/LootItem/m_79581_ (Lnet/minecraft/world/level/ItemLike;II[Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;[Lnet/minecraft/world/level/storage/loot/functions/LootItemFunction;)Lnet/minecraft/world/level/storage/loot/entries/LootPoolSingletonContainer; net/minecraft/world/level/storage/loot/entries/LootItem/lambda$lootTableItem$0 (Lnet/minecraft/world/level/ItemLike;II[Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;[Lnet/minecraft/world/level/storage/loot/functions/LootItemFunction;)Lnet/minecraft/world/level/storage/loot/entries/LootPoolSingletonContainer; +MD: net/minecraft/world/level/storage/loot/entries/LootItem$Serializer/ ()V net/minecraft/world/level/storage/loot/entries/LootItem$Serializer/ ()V +MD: net/minecraft/world/level/storage/loot/entries/LootItem$Serializer/m_7219_ (Lcom/google/gson/JsonObject;Lnet/minecraft/world/level/storage/loot/entries/LootPoolSingletonContainer;Lcom/google/gson/JsonSerializationContext;)V net/minecraft/world/level/storage/loot/entries/LootItem$Serializer/serializeCustom (Lcom/google/gson/JsonObject;Lnet/minecraft/world/level/storage/loot/entries/LootPoolSingletonContainer;Lcom/google/gson/JsonSerializationContext;)V +MD: net/minecraft/world/level/storage/loot/entries/LootItem$Serializer/m_7219_ (Lcom/google/gson/JsonObject;Lnet/minecraft/world/level/storage/loot/entries/LootPoolEntryContainer;Lcom/google/gson/JsonSerializationContext;)V net/minecraft/world/level/storage/loot/entries/LootItem$Serializer/serializeCustom (Lcom/google/gson/JsonObject;Lnet/minecraft/world/level/storage/loot/entries/LootPoolEntryContainer;Lcom/google/gson/JsonSerializationContext;)V +MD: net/minecraft/world/level/storage/loot/entries/LootItem$Serializer/m_7219_ (Lcom/google/gson/JsonObject;Lnet/minecraft/world/level/storage/loot/entries/LootItem;Lcom/google/gson/JsonSerializationContext;)V net/minecraft/world/level/storage/loot/entries/LootItem$Serializer/serializeCustom (Lcom/google/gson/JsonObject;Lnet/minecraft/world/level/storage/loot/entries/LootItem;Lcom/google/gson/JsonSerializationContext;)V +MD: net/minecraft/world/level/storage/loot/entries/LootItem$Serializer/m_7267_ (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;II[Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;[Lnet/minecraft/world/level/storage/loot/functions/LootItemFunction;)Lnet/minecraft/world/level/storage/loot/entries/LootItem; net/minecraft/world/level/storage/loot/entries/LootItem$Serializer/deserialize (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;II[Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;[Lnet/minecraft/world/level/storage/loot/functions/LootItemFunction;)Lnet/minecraft/world/level/storage/loot/entries/LootItem; +MD: net/minecraft/world/level/storage/loot/entries/LootItem$Serializer/m_7267_ (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;II[Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;[Lnet/minecraft/world/level/storage/loot/functions/LootItemFunction;)Lnet/minecraft/world/level/storage/loot/entries/LootPoolSingletonContainer; net/minecraft/world/level/storage/loot/entries/LootItem$Serializer/deserialize (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;II[Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;[Lnet/minecraft/world/level/storage/loot/functions/LootItemFunction;)Lnet/minecraft/world/level/storage/loot/entries/LootPoolSingletonContainer; +MD: net/minecraft/world/level/storage/loot/entries/LootPoolEntries/ ()V net/minecraft/world/level/storage/loot/entries/LootPoolEntries/ ()V +MD: net/minecraft/world/level/storage/loot/entries/LootPoolEntries/ ()V net/minecraft/world/level/storage/loot/entries/LootPoolEntries/ ()V +MD: net/minecraft/world/level/storage/loot/entries/LootPoolEntries/m_79628_ ()Ljava/lang/Object; net/minecraft/world/level/storage/loot/entries/LootPoolEntries/createGsonAdapter ()Ljava/lang/Object; +MD: net/minecraft/world/level/storage/loot/entries/LootPoolEntries/m_79629_ (Ljava/lang/String;Lnet/minecraft/world/level/storage/loot/Serializer;)Lnet/minecraft/world/level/storage/loot/entries/LootPoolEntryType; net/minecraft/world/level/storage/loot/entries/LootPoolEntries/register (Ljava/lang/String;Lnet/minecraft/world/level/storage/loot/Serializer;)Lnet/minecraft/world/level/storage/loot/entries/LootPoolEntryType; +MD: net/minecraft/world/level/storage/loot/entries/LootPoolEntry/m_6941_ (Ljava/util/function/Consumer;Lnet/minecraft/world/level/storage/loot/LootContext;)V net/minecraft/world/level/storage/loot/entries/LootPoolEntry/createItemStack (Ljava/util/function/Consumer;Lnet/minecraft/world/level/storage/loot/LootContext;)V +MD: net/minecraft/world/level/storage/loot/entries/LootPoolEntry/m_7067_ (F)I net/minecraft/world/level/storage/loot/entries/LootPoolEntry/getWeight (F)I +MD: net/minecraft/world/level/storage/loot/entries/LootPoolEntryContainer/ ([Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;)V net/minecraft/world/level/storage/loot/entries/LootPoolEntryContainer/ ([Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;)V +MD: net/minecraft/world/level/storage/loot/entries/LootPoolEntryContainer/m_6165_ (Lnet/minecraft/world/level/storage/loot/ValidationContext;)V net/minecraft/world/level/storage/loot/entries/LootPoolEntryContainer/validate (Lnet/minecraft/world/level/storage/loot/ValidationContext;)V +MD: net/minecraft/world/level/storage/loot/entries/LootPoolEntryContainer/m_6751_ ()Lnet/minecraft/world/level/storage/loot/entries/LootPoolEntryType; net/minecraft/world/level/storage/loot/entries/LootPoolEntryContainer/getType ()Lnet/minecraft/world/level/storage/loot/entries/LootPoolEntryType; +MD: net/minecraft/world/level/storage/loot/entries/LootPoolEntryContainer/m_79639_ (Lnet/minecraft/world/level/storage/loot/LootContext;)Z net/minecraft/world/level/storage/loot/entries/LootPoolEntryContainer/canRun (Lnet/minecraft/world/level/storage/loot/LootContext;)Z +MD: net/minecraft/world/level/storage/loot/entries/LootPoolEntryContainer$Builder/ ()V net/minecraft/world/level/storage/loot/entries/LootPoolEntryContainer$Builder/ ()V +MD: net/minecraft/world/level/storage/loot/entries/LootPoolEntryContainer$Builder/m_142639_ (Lnet/minecraft/world/level/storage/loot/entries/LootPoolEntryContainer$Builder;)Lnet/minecraft/world/level/storage/loot/entries/SequentialEntry$Builder; net/minecraft/world/level/storage/loot/entries/LootPoolEntryContainer$Builder/then (Lnet/minecraft/world/level/storage/loot/entries/LootPoolEntryContainer$Builder;)Lnet/minecraft/world/level/storage/loot/entries/SequentialEntry$Builder; +MD: net/minecraft/world/level/storage/loot/entries/LootPoolEntryContainer$Builder/m_142719_ (Lnet/minecraft/world/level/storage/loot/entries/LootPoolEntryContainer$Builder;)Lnet/minecraft/world/level/storage/loot/entries/EntryGroup$Builder; net/minecraft/world/level/storage/loot/entries/LootPoolEntryContainer$Builder/append (Lnet/minecraft/world/level/storage/loot/entries/LootPoolEntryContainer$Builder;)Lnet/minecraft/world/level/storage/loot/entries/EntryGroup$Builder; +MD: net/minecraft/world/level/storage/loot/entries/LootPoolEntryContainer$Builder/m_6897_ ()Lnet/minecraft/world/level/storage/loot/entries/LootPoolEntryContainer$Builder; net/minecraft/world/level/storage/loot/entries/LootPoolEntryContainer$Builder/getThis ()Lnet/minecraft/world/level/storage/loot/entries/LootPoolEntryContainer$Builder; +MD: net/minecraft/world/level/storage/loot/entries/LootPoolEntryContainer$Builder/m_7170_ (Lnet/minecraft/world/level/storage/loot/entries/LootPoolEntryContainer$Builder;)Lnet/minecraft/world/level/storage/loot/entries/AlternativesEntry$Builder; net/minecraft/world/level/storage/loot/entries/LootPoolEntryContainer$Builder/otherwise (Lnet/minecraft/world/level/storage/loot/entries/LootPoolEntryContainer$Builder;)Lnet/minecraft/world/level/storage/loot/entries/AlternativesEntry$Builder; +MD: net/minecraft/world/level/storage/loot/entries/LootPoolEntryContainer$Builder/m_7512_ ()Lnet/minecraft/world/level/storage/loot/entries/LootPoolEntryContainer; net/minecraft/world/level/storage/loot/entries/LootPoolEntryContainer$Builder/build ()Lnet/minecraft/world/level/storage/loot/entries/LootPoolEntryContainer; +MD: net/minecraft/world/level/storage/loot/entries/LootPoolEntryContainer$Builder/m_79073_ ()Lnet/minecraft/world/level/storage/loot/entries/LootPoolEntryContainer$Builder; net/minecraft/world/level/storage/loot/entries/LootPoolEntryContainer$Builder/unwrap ()Lnet/minecraft/world/level/storage/loot/entries/LootPoolEntryContainer$Builder; +MD: net/minecraft/world/level/storage/loot/entries/LootPoolEntryContainer$Builder/m_79073_ ()Lnet/minecraft/world/level/storage/loot/predicates/ConditionUserBuilder; net/minecraft/world/level/storage/loot/entries/LootPoolEntryContainer$Builder/unwrap ()Lnet/minecraft/world/level/storage/loot/predicates/ConditionUserBuilder; +MD: net/minecraft/world/level/storage/loot/entries/LootPoolEntryContainer$Builder/m_79080_ (Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition$Builder;)Lnet/minecraft/world/level/storage/loot/predicates/ConditionUserBuilder; net/minecraft/world/level/storage/loot/entries/LootPoolEntryContainer$Builder/when (Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition$Builder;)Lnet/minecraft/world/level/storage/loot/predicates/ConditionUserBuilder; +MD: net/minecraft/world/level/storage/loot/entries/LootPoolEntryContainer$Builder/m_79080_ (Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition$Builder;)Lnet/minecraft/world/level/storage/loot/entries/LootPoolEntryContainer$Builder; net/minecraft/world/level/storage/loot/entries/LootPoolEntryContainer$Builder/when (Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition$Builder;)Lnet/minecraft/world/level/storage/loot/entries/LootPoolEntryContainer$Builder; +MD: net/minecraft/world/level/storage/loot/entries/LootPoolEntryContainer$Builder/m_79651_ ()[Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition; net/minecraft/world/level/storage/loot/entries/LootPoolEntryContainer$Builder/getConditions ()[Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition; +MD: net/minecraft/world/level/storage/loot/entries/LootPoolEntryContainer$Serializer/ ()V net/minecraft/world/level/storage/loot/entries/LootPoolEntryContainer$Serializer/ ()V +MD: net/minecraft/world/level/storage/loot/entries/LootPoolEntryContainer$Serializer/m_5921_ (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;[Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;)Lnet/minecraft/world/level/storage/loot/entries/LootPoolEntryContainer; net/minecraft/world/level/storage/loot/entries/LootPoolEntryContainer$Serializer/deserializeCustom (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;[Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;)Lnet/minecraft/world/level/storage/loot/entries/LootPoolEntryContainer; +MD: net/minecraft/world/level/storage/loot/entries/LootPoolEntryContainer$Serializer/m_6170_ (Lcom/google/gson/JsonObject;Ljava/lang/Object;Lcom/google/gson/JsonSerializationContext;)V net/minecraft/world/level/storage/loot/entries/LootPoolEntryContainer$Serializer/serialize (Lcom/google/gson/JsonObject;Ljava/lang/Object;Lcom/google/gson/JsonSerializationContext;)V +MD: net/minecraft/world/level/storage/loot/entries/LootPoolEntryContainer$Serializer/m_6170_ (Lcom/google/gson/JsonObject;Lnet/minecraft/world/level/storage/loot/entries/LootPoolEntryContainer;Lcom/google/gson/JsonSerializationContext;)V net/minecraft/world/level/storage/loot/entries/LootPoolEntryContainer$Serializer/serialize (Lcom/google/gson/JsonObject;Lnet/minecraft/world/level/storage/loot/entries/LootPoolEntryContainer;Lcom/google/gson/JsonSerializationContext;)V +MD: net/minecraft/world/level/storage/loot/entries/LootPoolEntryContainer$Serializer/m_7219_ (Lcom/google/gson/JsonObject;Lnet/minecraft/world/level/storage/loot/entries/LootPoolEntryContainer;Lcom/google/gson/JsonSerializationContext;)V net/minecraft/world/level/storage/loot/entries/LootPoolEntryContainer$Serializer/serializeCustom (Lcom/google/gson/JsonObject;Lnet/minecraft/world/level/storage/loot/entries/LootPoolEntryContainer;Lcom/google/gson/JsonSerializationContext;)V +MD: net/minecraft/world/level/storage/loot/entries/LootPoolEntryContainer$Serializer/m_7561_ (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;)Ljava/lang/Object; net/minecraft/world/level/storage/loot/entries/LootPoolEntryContainer$Serializer/deserialize (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;)Ljava/lang/Object; +MD: net/minecraft/world/level/storage/loot/entries/LootPoolEntryContainer$Serializer/m_7561_ (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;)Lnet/minecraft/world/level/storage/loot/entries/LootPoolEntryContainer; net/minecraft/world/level/storage/loot/entries/LootPoolEntryContainer$Serializer/deserialize (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;)Lnet/minecraft/world/level/storage/loot/entries/LootPoolEntryContainer; +MD: net/minecraft/world/level/storage/loot/entries/LootPoolEntryType/ (Lnet/minecraft/world/level/storage/loot/Serializer;)V net/minecraft/world/level/storage/loot/entries/LootPoolEntryType/ (Lnet/minecraft/world/level/storage/loot/Serializer;)V +MD: net/minecraft/world/level/storage/loot/entries/LootPoolSingletonContainer/ (II[Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;[Lnet/minecraft/world/level/storage/loot/functions/LootItemFunction;)V net/minecraft/world/level/storage/loot/entries/LootPoolSingletonContainer/ (II[Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;[Lnet/minecraft/world/level/storage/loot/functions/LootItemFunction;)V +MD: net/minecraft/world/level/storage/loot/entries/LootPoolSingletonContainer/m_6165_ (Lnet/minecraft/world/level/storage/loot/ValidationContext;)V net/minecraft/world/level/storage/loot/entries/LootPoolSingletonContainer/validate (Lnet/minecraft/world/level/storage/loot/ValidationContext;)V +MD: net/minecraft/world/level/storage/loot/entries/LootPoolSingletonContainer/m_6562_ (Lnet/minecraft/world/level/storage/loot/LootContext;Ljava/util/function/Consumer;)Z net/minecraft/world/level/storage/loot/entries/LootPoolSingletonContainer/expand (Lnet/minecraft/world/level/storage/loot/LootContext;Ljava/util/function/Consumer;)Z +MD: net/minecraft/world/level/storage/loot/entries/LootPoolSingletonContainer/m_6948_ (Ljava/util/function/Consumer;Lnet/minecraft/world/level/storage/loot/LootContext;)V net/minecraft/world/level/storage/loot/entries/LootPoolSingletonContainer/createItemStack (Ljava/util/function/Consumer;Lnet/minecraft/world/level/storage/loot/LootContext;)V +MD: net/minecraft/world/level/storage/loot/entries/LootPoolSingletonContainer/m_79687_ (Lnet/minecraft/world/level/storage/loot/entries/LootPoolSingletonContainer$EntryConstructor;)Lnet/minecraft/world/level/storage/loot/entries/LootPoolSingletonContainer$Builder; net/minecraft/world/level/storage/loot/entries/LootPoolSingletonContainer/simpleBuilder (Lnet/minecraft/world/level/storage/loot/entries/LootPoolSingletonContainer$EntryConstructor;)Lnet/minecraft/world/level/storage/loot/entries/LootPoolSingletonContainer$Builder; +MD: net/minecraft/world/level/storage/loot/entries/LootPoolSingletonContainer$1/ (Lnet/minecraft/world/level/storage/loot/entries/LootPoolSingletonContainer;)V net/minecraft/world/level/storage/loot/entries/LootPoolSingletonContainer$1/ (Lnet/minecraft/world/level/storage/loot/entries/LootPoolSingletonContainer;)V +MD: net/minecraft/world/level/storage/loot/entries/LootPoolSingletonContainer$1/m_6941_ (Ljava/util/function/Consumer;Lnet/minecraft/world/level/storage/loot/LootContext;)V net/minecraft/world/level/storage/loot/entries/LootPoolSingletonContainer$1/createItemStack (Ljava/util/function/Consumer;Lnet/minecraft/world/level/storage/loot/LootContext;)V +MD: net/minecraft/world/level/storage/loot/entries/LootPoolSingletonContainer$Builder/ ()V net/minecraft/world/level/storage/loot/entries/LootPoolSingletonContainer$Builder/ ()V +MD: net/minecraft/world/level/storage/loot/entries/LootPoolSingletonContainer$Builder/m_79073_ ()Lnet/minecraft/world/level/storage/loot/functions/FunctionUserBuilder; net/minecraft/world/level/storage/loot/entries/LootPoolSingletonContainer$Builder/unwrap ()Lnet/minecraft/world/level/storage/loot/functions/FunctionUserBuilder; +MD: net/minecraft/world/level/storage/loot/entries/LootPoolSingletonContainer$Builder/m_79078_ (Lnet/minecraft/world/level/storage/loot/functions/LootItemFunction$Builder;)Lnet/minecraft/world/level/storage/loot/functions/FunctionUserBuilder; net/minecraft/world/level/storage/loot/entries/LootPoolSingletonContainer$Builder/apply (Lnet/minecraft/world/level/storage/loot/functions/LootItemFunction$Builder;)Lnet/minecraft/world/level/storage/loot/functions/FunctionUserBuilder; +MD: net/minecraft/world/level/storage/loot/entries/LootPoolSingletonContainer$Builder/m_79078_ (Lnet/minecraft/world/level/storage/loot/functions/LootItemFunction$Builder;)Lnet/minecraft/world/level/storage/loot/entries/LootPoolSingletonContainer$Builder; net/minecraft/world/level/storage/loot/entries/LootPoolSingletonContainer$Builder/apply (Lnet/minecraft/world/level/storage/loot/functions/LootItemFunction$Builder;)Lnet/minecraft/world/level/storage/loot/entries/LootPoolSingletonContainer$Builder; +MD: net/minecraft/world/level/storage/loot/entries/LootPoolSingletonContainer$Builder/m_79706_ ()[Lnet/minecraft/world/level/storage/loot/functions/LootItemFunction; net/minecraft/world/level/storage/loot/entries/LootPoolSingletonContainer$Builder/getFunctions ()[Lnet/minecraft/world/level/storage/loot/functions/LootItemFunction; +MD: net/minecraft/world/level/storage/loot/entries/LootPoolSingletonContainer$Builder/m_79707_ (I)Lnet/minecraft/world/level/storage/loot/entries/LootPoolSingletonContainer$Builder; net/minecraft/world/level/storage/loot/entries/LootPoolSingletonContainer$Builder/setWeight (I)Lnet/minecraft/world/level/storage/loot/entries/LootPoolSingletonContainer$Builder; +MD: net/minecraft/world/level/storage/loot/entries/LootPoolSingletonContainer$Builder/m_79711_ (I)Lnet/minecraft/world/level/storage/loot/entries/LootPoolSingletonContainer$Builder; net/minecraft/world/level/storage/loot/entries/LootPoolSingletonContainer$Builder/setQuality (I)Lnet/minecraft/world/level/storage/loot/entries/LootPoolSingletonContainer$Builder; +MD: net/minecraft/world/level/storage/loot/entries/LootPoolSingletonContainer$DummyBuilder/ (Lnet/minecraft/world/level/storage/loot/entries/LootPoolSingletonContainer$EntryConstructor;)V net/minecraft/world/level/storage/loot/entries/LootPoolSingletonContainer$DummyBuilder/ (Lnet/minecraft/world/level/storage/loot/entries/LootPoolSingletonContainer$EntryConstructor;)V +MD: net/minecraft/world/level/storage/loot/entries/LootPoolSingletonContainer$DummyBuilder/m_6897_ ()Lnet/minecraft/world/level/storage/loot/entries/LootPoolEntryContainer$Builder; net/minecraft/world/level/storage/loot/entries/LootPoolSingletonContainer$DummyBuilder/getThis ()Lnet/minecraft/world/level/storage/loot/entries/LootPoolEntryContainer$Builder; +MD: net/minecraft/world/level/storage/loot/entries/LootPoolSingletonContainer$DummyBuilder/m_6897_ ()Lnet/minecraft/world/level/storage/loot/entries/LootPoolSingletonContainer$DummyBuilder; net/minecraft/world/level/storage/loot/entries/LootPoolSingletonContainer$DummyBuilder/getThis ()Lnet/minecraft/world/level/storage/loot/entries/LootPoolSingletonContainer$DummyBuilder; +MD: net/minecraft/world/level/storage/loot/entries/LootPoolSingletonContainer$DummyBuilder/m_7512_ ()Lnet/minecraft/world/level/storage/loot/entries/LootPoolEntryContainer; net/minecraft/world/level/storage/loot/entries/LootPoolSingletonContainer$DummyBuilder/build ()Lnet/minecraft/world/level/storage/loot/entries/LootPoolEntryContainer; +MD: net/minecraft/world/level/storage/loot/entries/LootPoolSingletonContainer$EntryBase/ (Lnet/minecraft/world/level/storage/loot/entries/LootPoolSingletonContainer;)V net/minecraft/world/level/storage/loot/entries/LootPoolSingletonContainer$EntryBase/ (Lnet/minecraft/world/level/storage/loot/entries/LootPoolSingletonContainer;)V +MD: net/minecraft/world/level/storage/loot/entries/LootPoolSingletonContainer$EntryBase/m_7067_ (F)I net/minecraft/world/level/storage/loot/entries/LootPoolSingletonContainer$EntryBase/getWeight (F)I +MD: net/minecraft/world/level/storage/loot/entries/LootPoolSingletonContainer$EntryConstructor/m_79726_ (II[Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;[Lnet/minecraft/world/level/storage/loot/functions/LootItemFunction;)Lnet/minecraft/world/level/storage/loot/entries/LootPoolSingletonContainer; net/minecraft/world/level/storage/loot/entries/LootPoolSingletonContainer$EntryConstructor/build (II[Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;[Lnet/minecraft/world/level/storage/loot/functions/LootItemFunction;)Lnet/minecraft/world/level/storage/loot/entries/LootPoolSingletonContainer; +MD: net/minecraft/world/level/storage/loot/entries/LootPoolSingletonContainer$Serializer/ ()V net/minecraft/world/level/storage/loot/entries/LootPoolSingletonContainer$Serializer/ ()V +MD: net/minecraft/world/level/storage/loot/entries/LootPoolSingletonContainer$Serializer/m_5921_ (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;[Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;)Lnet/minecraft/world/level/storage/loot/entries/LootPoolEntryContainer; net/minecraft/world/level/storage/loot/entries/LootPoolSingletonContainer$Serializer/deserializeCustom (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;[Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;)Lnet/minecraft/world/level/storage/loot/entries/LootPoolEntryContainer; +MD: net/minecraft/world/level/storage/loot/entries/LootPoolSingletonContainer$Serializer/m_5921_ (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;[Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;)Lnet/minecraft/world/level/storage/loot/entries/LootPoolSingletonContainer; net/minecraft/world/level/storage/loot/entries/LootPoolSingletonContainer$Serializer/deserializeCustom (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;[Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;)Lnet/minecraft/world/level/storage/loot/entries/LootPoolSingletonContainer; +MD: net/minecraft/world/level/storage/loot/entries/LootPoolSingletonContainer$Serializer/m_7219_ (Lcom/google/gson/JsonObject;Lnet/minecraft/world/level/storage/loot/entries/LootPoolSingletonContainer;Lcom/google/gson/JsonSerializationContext;)V net/minecraft/world/level/storage/loot/entries/LootPoolSingletonContainer$Serializer/serializeCustom (Lcom/google/gson/JsonObject;Lnet/minecraft/world/level/storage/loot/entries/LootPoolSingletonContainer;Lcom/google/gson/JsonSerializationContext;)V +MD: net/minecraft/world/level/storage/loot/entries/LootPoolSingletonContainer$Serializer/m_7219_ (Lcom/google/gson/JsonObject;Lnet/minecraft/world/level/storage/loot/entries/LootPoolEntryContainer;Lcom/google/gson/JsonSerializationContext;)V net/minecraft/world/level/storage/loot/entries/LootPoolSingletonContainer$Serializer/serializeCustom (Lcom/google/gson/JsonObject;Lnet/minecraft/world/level/storage/loot/entries/LootPoolEntryContainer;Lcom/google/gson/JsonSerializationContext;)V +MD: net/minecraft/world/level/storage/loot/entries/LootPoolSingletonContainer$Serializer/m_7267_ (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;II[Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;[Lnet/minecraft/world/level/storage/loot/functions/LootItemFunction;)Lnet/minecraft/world/level/storage/loot/entries/LootPoolSingletonContainer; net/minecraft/world/level/storage/loot/entries/LootPoolSingletonContainer$Serializer/deserialize (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;II[Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;[Lnet/minecraft/world/level/storage/loot/functions/LootItemFunction;)Lnet/minecraft/world/level/storage/loot/entries/LootPoolSingletonContainer; +MD: net/minecraft/world/level/storage/loot/entries/LootTableReference/ (Lnet/minecraft/resources/ResourceLocation;II[Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;[Lnet/minecraft/world/level/storage/loot/functions/LootItemFunction;)V net/minecraft/world/level/storage/loot/entries/LootTableReference/ (Lnet/minecraft/resources/ResourceLocation;II[Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;[Lnet/minecraft/world/level/storage/loot/functions/LootItemFunction;)V +MD: net/minecraft/world/level/storage/loot/entries/LootTableReference/m_278605_ (Lnet/minecraft/world/level/storage/loot/ValidationContext;Lnet/minecraft/world/level/storage/loot/LootDataId;Lnet/minecraft/world/level/storage/loot/LootTable;)V net/minecraft/world/level/storage/loot/entries/LootTableReference/lambda$validate$0 (Lnet/minecraft/world/level/storage/loot/ValidationContext;Lnet/minecraft/world/level/storage/loot/LootDataId;Lnet/minecraft/world/level/storage/loot/LootTable;)V +MD: net/minecraft/world/level/storage/loot/entries/LootTableReference/m_278606_ (Lnet/minecraft/world/level/storage/loot/ValidationContext;)V net/minecraft/world/level/storage/loot/entries/LootTableReference/lambda$validate$1 (Lnet/minecraft/world/level/storage/loot/ValidationContext;)V +MD: net/minecraft/world/level/storage/loot/entries/LootTableReference/m_6165_ (Lnet/minecraft/world/level/storage/loot/ValidationContext;)V net/minecraft/world/level/storage/loot/entries/LootTableReference/validate (Lnet/minecraft/world/level/storage/loot/ValidationContext;)V +MD: net/minecraft/world/level/storage/loot/entries/LootTableReference/m_6751_ ()Lnet/minecraft/world/level/storage/loot/entries/LootPoolEntryType; net/minecraft/world/level/storage/loot/entries/LootTableReference/getType ()Lnet/minecraft/world/level/storage/loot/entries/LootPoolEntryType; +MD: net/minecraft/world/level/storage/loot/entries/LootTableReference/m_6948_ (Ljava/util/function/Consumer;Lnet/minecraft/world/level/storage/loot/LootContext;)V net/minecraft/world/level/storage/loot/entries/LootTableReference/createItemStack (Ljava/util/function/Consumer;Lnet/minecraft/world/level/storage/loot/LootContext;)V +MD: net/minecraft/world/level/storage/loot/entries/LootTableReference/m_79776_ (Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/world/level/storage/loot/entries/LootPoolSingletonContainer$Builder; net/minecraft/world/level/storage/loot/entries/LootTableReference/lootTableReference (Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/world/level/storage/loot/entries/LootPoolSingletonContainer$Builder; +MD: net/minecraft/world/level/storage/loot/entries/LootTableReference/m_79778_ (Lnet/minecraft/resources/ResourceLocation;II[Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;[Lnet/minecraft/world/level/storage/loot/functions/LootItemFunction;)Lnet/minecraft/world/level/storage/loot/entries/LootPoolSingletonContainer; net/minecraft/world/level/storage/loot/entries/LootTableReference/lambda$lootTableReference$2 (Lnet/minecraft/resources/ResourceLocation;II[Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;[Lnet/minecraft/world/level/storage/loot/functions/LootItemFunction;)Lnet/minecraft/world/level/storage/loot/entries/LootPoolSingletonContainer; +MD: net/minecraft/world/level/storage/loot/entries/LootTableReference$Serializer/ ()V net/minecraft/world/level/storage/loot/entries/LootTableReference$Serializer/ ()V +MD: net/minecraft/world/level/storage/loot/entries/LootTableReference$Serializer/m_7219_ (Lcom/google/gson/JsonObject;Lnet/minecraft/world/level/storage/loot/entries/LootPoolSingletonContainer;Lcom/google/gson/JsonSerializationContext;)V net/minecraft/world/level/storage/loot/entries/LootTableReference$Serializer/serializeCustom (Lcom/google/gson/JsonObject;Lnet/minecraft/world/level/storage/loot/entries/LootPoolSingletonContainer;Lcom/google/gson/JsonSerializationContext;)V +MD: net/minecraft/world/level/storage/loot/entries/LootTableReference$Serializer/m_7219_ (Lcom/google/gson/JsonObject;Lnet/minecraft/world/level/storage/loot/entries/LootPoolEntryContainer;Lcom/google/gson/JsonSerializationContext;)V net/minecraft/world/level/storage/loot/entries/LootTableReference$Serializer/serializeCustom (Lcom/google/gson/JsonObject;Lnet/minecraft/world/level/storage/loot/entries/LootPoolEntryContainer;Lcom/google/gson/JsonSerializationContext;)V +MD: net/minecraft/world/level/storage/loot/entries/LootTableReference$Serializer/m_7219_ (Lcom/google/gson/JsonObject;Lnet/minecraft/world/level/storage/loot/entries/LootTableReference;Lcom/google/gson/JsonSerializationContext;)V net/minecraft/world/level/storage/loot/entries/LootTableReference$Serializer/serializeCustom (Lcom/google/gson/JsonObject;Lnet/minecraft/world/level/storage/loot/entries/LootTableReference;Lcom/google/gson/JsonSerializationContext;)V +MD: net/minecraft/world/level/storage/loot/entries/LootTableReference$Serializer/m_7267_ (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;II[Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;[Lnet/minecraft/world/level/storage/loot/functions/LootItemFunction;)Lnet/minecraft/world/level/storage/loot/entries/LootTableReference; net/minecraft/world/level/storage/loot/entries/LootTableReference$Serializer/deserialize (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;II[Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;[Lnet/minecraft/world/level/storage/loot/functions/LootItemFunction;)Lnet/minecraft/world/level/storage/loot/entries/LootTableReference; +MD: net/minecraft/world/level/storage/loot/entries/LootTableReference$Serializer/m_7267_ (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;II[Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;[Lnet/minecraft/world/level/storage/loot/functions/LootItemFunction;)Lnet/minecraft/world/level/storage/loot/entries/LootPoolSingletonContainer; net/minecraft/world/level/storage/loot/entries/LootTableReference$Serializer/deserialize (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;II[Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;[Lnet/minecraft/world/level/storage/loot/functions/LootItemFunction;)Lnet/minecraft/world/level/storage/loot/entries/LootPoolSingletonContainer; +MD: net/minecraft/world/level/storage/loot/entries/SequentialEntry/ ([Lnet/minecraft/world/level/storage/loot/entries/LootPoolEntryContainer;[Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;)V net/minecraft/world/level/storage/loot/entries/SequentialEntry/ ([Lnet/minecraft/world/level/storage/loot/entries/LootPoolEntryContainer;[Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;)V +MD: net/minecraft/world/level/storage/loot/entries/SequentialEntry/m_165152_ ([Lnet/minecraft/world/level/storage/loot/entries/LootPoolEntryContainer$Builder;)Lnet/minecraft/world/level/storage/loot/entries/SequentialEntry$Builder; net/minecraft/world/level/storage/loot/entries/SequentialEntry/sequential ([Lnet/minecraft/world/level/storage/loot/entries/LootPoolEntryContainer$Builder;)Lnet/minecraft/world/level/storage/loot/entries/SequentialEntry$Builder; +MD: net/minecraft/world/level/storage/loot/entries/SequentialEntry/m_5690_ ([Lnet/minecraft/world/level/storage/loot/entries/ComposableEntryContainer;)Lnet/minecraft/world/level/storage/loot/entries/ComposableEntryContainer; net/minecraft/world/level/storage/loot/entries/SequentialEntry/compose ([Lnet/minecraft/world/level/storage/loot/entries/ComposableEntryContainer;)Lnet/minecraft/world/level/storage/loot/entries/ComposableEntryContainer; +MD: net/minecraft/world/level/storage/loot/entries/SequentialEntry/m_6751_ ()Lnet/minecraft/world/level/storage/loot/entries/LootPoolEntryType; net/minecraft/world/level/storage/loot/entries/SequentialEntry/getType ()Lnet/minecraft/world/level/storage/loot/entries/LootPoolEntryType; +MD: net/minecraft/world/level/storage/loot/entries/SequentialEntry/m_79817_ ([Lnet/minecraft/world/level/storage/loot/entries/ComposableEntryContainer;Lnet/minecraft/world/level/storage/loot/LootContext;Ljava/util/function/Consumer;)Z net/minecraft/world/level/storage/loot/entries/SequentialEntry/lambda$compose$0 ([Lnet/minecraft/world/level/storage/loot/entries/ComposableEntryContainer;Lnet/minecraft/world/level/storage/loot/LootContext;Ljava/util/function/Consumer;)Z +MD: net/minecraft/world/level/storage/loot/entries/SequentialEntry$Builder/ ([Lnet/minecraft/world/level/storage/loot/entries/LootPoolEntryContainer$Builder;)V net/minecraft/world/level/storage/loot/entries/SequentialEntry$Builder/ ([Lnet/minecraft/world/level/storage/loot/entries/LootPoolEntryContainer$Builder;)V +MD: net/minecraft/world/level/storage/loot/entries/SequentialEntry$Builder/m_142639_ (Lnet/minecraft/world/level/storage/loot/entries/LootPoolEntryContainer$Builder;)Lnet/minecraft/world/level/storage/loot/entries/SequentialEntry$Builder; net/minecraft/world/level/storage/loot/entries/SequentialEntry$Builder/then (Lnet/minecraft/world/level/storage/loot/entries/LootPoolEntryContainer$Builder;)Lnet/minecraft/world/level/storage/loot/entries/SequentialEntry$Builder; +MD: net/minecraft/world/level/storage/loot/entries/SequentialEntry$Builder/m_6897_ ()Lnet/minecraft/world/level/storage/loot/entries/LootPoolEntryContainer$Builder; net/minecraft/world/level/storage/loot/entries/SequentialEntry$Builder/getThis ()Lnet/minecraft/world/level/storage/loot/entries/LootPoolEntryContainer$Builder; +MD: net/minecraft/world/level/storage/loot/entries/SequentialEntry$Builder/m_6897_ ()Lnet/minecraft/world/level/storage/loot/entries/SequentialEntry$Builder; net/minecraft/world/level/storage/loot/entries/SequentialEntry$Builder/getThis ()Lnet/minecraft/world/level/storage/loot/entries/SequentialEntry$Builder; +MD: net/minecraft/world/level/storage/loot/entries/SequentialEntry$Builder/m_7512_ ()Lnet/minecraft/world/level/storage/loot/entries/LootPoolEntryContainer; net/minecraft/world/level/storage/loot/entries/SequentialEntry$Builder/build ()Lnet/minecraft/world/level/storage/loot/entries/LootPoolEntryContainer; +MD: net/minecraft/world/level/storage/loot/entries/TagEntry/ (Lnet/minecraft/tags/TagKey;ZII[Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;[Lnet/minecraft/world/level/storage/loot/functions/LootItemFunction;)V net/minecraft/world/level/storage/loot/entries/TagEntry/ (Lnet/minecraft/tags/TagKey;ZII[Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;[Lnet/minecraft/world/level/storage/loot/functions/LootItemFunction;)V +MD: net/minecraft/world/level/storage/loot/entries/TagEntry/m_205084_ (Lnet/minecraft/tags/TagKey;)Lnet/minecraft/world/level/storage/loot/entries/LootPoolSingletonContainer$Builder; net/minecraft/world/level/storage/loot/entries/TagEntry/tagContents (Lnet/minecraft/tags/TagKey;)Lnet/minecraft/world/level/storage/loot/entries/LootPoolSingletonContainer$Builder; +MD: net/minecraft/world/level/storage/loot/entries/TagEntry/m_205086_ (Lnet/minecraft/tags/TagKey;II[Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;[Lnet/minecraft/world/level/storage/loot/functions/LootItemFunction;)Lnet/minecraft/world/level/storage/loot/entries/LootPoolSingletonContainer; net/minecraft/world/level/storage/loot/entries/TagEntry/lambda$expandTag$2 (Lnet/minecraft/tags/TagKey;II[Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;[Lnet/minecraft/world/level/storage/loot/functions/LootItemFunction;)Lnet/minecraft/world/level/storage/loot/entries/LootPoolSingletonContainer; +MD: net/minecraft/world/level/storage/loot/entries/TagEntry/m_205092_ (Ljava/util/function/Consumer;Lnet/minecraft/core/Holder;)V net/minecraft/world/level/storage/loot/entries/TagEntry/lambda$createItemStack$0 (Ljava/util/function/Consumer;Lnet/minecraft/core/Holder;)V +MD: net/minecraft/world/level/storage/loot/entries/TagEntry/m_205095_ (Lnet/minecraft/tags/TagKey;)Lnet/minecraft/world/level/storage/loot/entries/LootPoolSingletonContainer$Builder; net/minecraft/world/level/storage/loot/entries/TagEntry/expandTag (Lnet/minecraft/tags/TagKey;)Lnet/minecraft/world/level/storage/loot/entries/LootPoolSingletonContainer$Builder; +MD: net/minecraft/world/level/storage/loot/entries/TagEntry/m_205097_ (Lnet/minecraft/tags/TagKey;II[Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;[Lnet/minecraft/world/level/storage/loot/functions/LootItemFunction;)Lnet/minecraft/world/level/storage/loot/entries/LootPoolSingletonContainer; net/minecraft/world/level/storage/loot/entries/TagEntry/lambda$tagContents$1 (Lnet/minecraft/tags/TagKey;II[Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;[Lnet/minecraft/world/level/storage/loot/functions/LootItemFunction;)Lnet/minecraft/world/level/storage/loot/entries/LootPoolSingletonContainer; +MD: net/minecraft/world/level/storage/loot/entries/TagEntry/m_6562_ (Lnet/minecraft/world/level/storage/loot/LootContext;Ljava/util/function/Consumer;)Z net/minecraft/world/level/storage/loot/entries/TagEntry/expand (Lnet/minecraft/world/level/storage/loot/LootContext;Ljava/util/function/Consumer;)Z +MD: net/minecraft/world/level/storage/loot/entries/TagEntry/m_6751_ ()Lnet/minecraft/world/level/storage/loot/entries/LootPoolEntryType; net/minecraft/world/level/storage/loot/entries/TagEntry/getType ()Lnet/minecraft/world/level/storage/loot/entries/LootPoolEntryType; +MD: net/minecraft/world/level/storage/loot/entries/TagEntry/m_6948_ (Ljava/util/function/Consumer;Lnet/minecraft/world/level/storage/loot/LootContext;)V net/minecraft/world/level/storage/loot/entries/TagEntry/createItemStack (Ljava/util/function/Consumer;Lnet/minecraft/world/level/storage/loot/LootContext;)V +MD: net/minecraft/world/level/storage/loot/entries/TagEntry/m_79845_ (Lnet/minecraft/world/level/storage/loot/LootContext;Ljava/util/function/Consumer;)Z net/minecraft/world/level/storage/loot/entries/TagEntry/expandTag (Lnet/minecraft/world/level/storage/loot/LootContext;Ljava/util/function/Consumer;)Z +MD: net/minecraft/world/level/storage/loot/entries/TagEntry$1/ (Lnet/minecraft/world/level/storage/loot/entries/TagEntry;Lnet/minecraft/core/Holder;)V net/minecraft/world/level/storage/loot/entries/TagEntry$1/ (Lnet/minecraft/world/level/storage/loot/entries/TagEntry;Lnet/minecraft/core/Holder;)V +MD: net/minecraft/world/level/storage/loot/entries/TagEntry$1/m_6941_ (Ljava/util/function/Consumer;Lnet/minecraft/world/level/storage/loot/LootContext;)V net/minecraft/world/level/storage/loot/entries/TagEntry$1/createItemStack (Ljava/util/function/Consumer;Lnet/minecraft/world/level/storage/loot/LootContext;)V +MD: net/minecraft/world/level/storage/loot/entries/TagEntry$Serializer/ ()V net/minecraft/world/level/storage/loot/entries/TagEntry$Serializer/ ()V +MD: net/minecraft/world/level/storage/loot/entries/TagEntry$Serializer/m_7219_ (Lcom/google/gson/JsonObject;Lnet/minecraft/world/level/storage/loot/entries/LootPoolSingletonContainer;Lcom/google/gson/JsonSerializationContext;)V net/minecraft/world/level/storage/loot/entries/TagEntry$Serializer/serializeCustom (Lcom/google/gson/JsonObject;Lnet/minecraft/world/level/storage/loot/entries/LootPoolSingletonContainer;Lcom/google/gson/JsonSerializationContext;)V +MD: net/minecraft/world/level/storage/loot/entries/TagEntry$Serializer/m_7219_ (Lcom/google/gson/JsonObject;Lnet/minecraft/world/level/storage/loot/entries/LootPoolEntryContainer;Lcom/google/gson/JsonSerializationContext;)V net/minecraft/world/level/storage/loot/entries/TagEntry$Serializer/serializeCustom (Lcom/google/gson/JsonObject;Lnet/minecraft/world/level/storage/loot/entries/LootPoolEntryContainer;Lcom/google/gson/JsonSerializationContext;)V +MD: net/minecraft/world/level/storage/loot/entries/TagEntry$Serializer/m_7219_ (Lcom/google/gson/JsonObject;Lnet/minecraft/world/level/storage/loot/entries/TagEntry;Lcom/google/gson/JsonSerializationContext;)V net/minecraft/world/level/storage/loot/entries/TagEntry$Serializer/serializeCustom (Lcom/google/gson/JsonObject;Lnet/minecraft/world/level/storage/loot/entries/TagEntry;Lcom/google/gson/JsonSerializationContext;)V +MD: net/minecraft/world/level/storage/loot/entries/TagEntry$Serializer/m_7267_ (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;II[Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;[Lnet/minecraft/world/level/storage/loot/functions/LootItemFunction;)Lnet/minecraft/world/level/storage/loot/entries/TagEntry; net/minecraft/world/level/storage/loot/entries/TagEntry$Serializer/deserialize (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;II[Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;[Lnet/minecraft/world/level/storage/loot/functions/LootItemFunction;)Lnet/minecraft/world/level/storage/loot/entries/TagEntry; +MD: net/minecraft/world/level/storage/loot/entries/TagEntry$Serializer/m_7267_ (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;II[Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;[Lnet/minecraft/world/level/storage/loot/functions/LootItemFunction;)Lnet/minecraft/world/level/storage/loot/entries/LootPoolSingletonContainer; net/minecraft/world/level/storage/loot/entries/TagEntry$Serializer/deserialize (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;II[Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;[Lnet/minecraft/world/level/storage/loot/functions/LootItemFunction;)Lnet/minecraft/world/level/storage/loot/entries/LootPoolSingletonContainer; +MD: net/minecraft/world/level/storage/loot/functions/ApplyBonusCount/ ()V net/minecraft/world/level/storage/loot/functions/ApplyBonusCount/ ()V +MD: net/minecraft/world/level/storage/loot/functions/ApplyBonusCount/ ([Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;Lnet/minecraft/world/item/enchantment/Enchantment;Lnet/minecraft/world/level/storage/loot/functions/ApplyBonusCount$Formula;)V net/minecraft/world/level/storage/loot/functions/ApplyBonusCount/ ([Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;Lnet/minecraft/world/item/enchantment/Enchantment;Lnet/minecraft/world/level/storage/loot/functions/ApplyBonusCount$Formula;)V +MD: net/minecraft/world/level/storage/loot/functions/ApplyBonusCount/m_6231_ ()Ljava/util/Set; net/minecraft/world/level/storage/loot/functions/ApplyBonusCount/getReferencedContextParams ()Ljava/util/Set; +MD: net/minecraft/world/level/storage/loot/functions/ApplyBonusCount/m_7162_ ()Lnet/minecraft/world/level/storage/loot/functions/LootItemFunctionType; net/minecraft/world/level/storage/loot/functions/ApplyBonusCount/getType ()Lnet/minecraft/world/level/storage/loot/functions/LootItemFunctionType; +MD: net/minecraft/world/level/storage/loot/functions/ApplyBonusCount/m_7372_ (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/level/storage/loot/LootContext;)Lnet/minecraft/world/item/ItemStack; net/minecraft/world/level/storage/loot/functions/ApplyBonusCount/run (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/level/storage/loot/LootContext;)Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/level/storage/loot/functions/ApplyBonusCount/m_79915_ (Lnet/minecraft/world/item/enchantment/Enchantment;)Lnet/minecraft/world/level/storage/loot/functions/LootItemConditionalFunction$Builder; net/minecraft/world/level/storage/loot/functions/ApplyBonusCount/addOreBonusCount (Lnet/minecraft/world/item/enchantment/Enchantment;)Lnet/minecraft/world/level/storage/loot/functions/LootItemConditionalFunction$Builder; +MD: net/minecraft/world/level/storage/loot/functions/ApplyBonusCount/m_79917_ (Lnet/minecraft/world/item/enchantment/Enchantment;FI)Lnet/minecraft/world/level/storage/loot/functions/LootItemConditionalFunction$Builder; net/minecraft/world/level/storage/loot/functions/ApplyBonusCount/addBonusBinomialDistributionCount (Lnet/minecraft/world/item/enchantment/Enchantment;FI)Lnet/minecraft/world/level/storage/loot/functions/LootItemConditionalFunction$Builder; +MD: net/minecraft/world/level/storage/loot/functions/ApplyBonusCount/m_79921_ (Lnet/minecraft/world/item/enchantment/Enchantment;I)Lnet/minecraft/world/level/storage/loot/functions/LootItemConditionalFunction$Builder; net/minecraft/world/level/storage/loot/functions/ApplyBonusCount/addUniformBonusCount (Lnet/minecraft/world/item/enchantment/Enchantment;I)Lnet/minecraft/world/level/storage/loot/functions/LootItemConditionalFunction$Builder; +MD: net/minecraft/world/level/storage/loot/functions/ApplyBonusCount/m_79924_ (Lnet/minecraft/world/item/enchantment/Enchantment;IF[Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;)Lnet/minecraft/world/level/storage/loot/functions/LootItemFunction; net/minecraft/world/level/storage/loot/functions/ApplyBonusCount/lambda$addBonusBinomialDistributionCount$0 (Lnet/minecraft/world/item/enchantment/Enchantment;IF[Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;)Lnet/minecraft/world/level/storage/loot/functions/LootItemFunction; +MD: net/minecraft/world/level/storage/loot/functions/ApplyBonusCount/m_79929_ (Lnet/minecraft/world/item/enchantment/Enchantment;I[Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;)Lnet/minecraft/world/level/storage/loot/functions/LootItemFunction; net/minecraft/world/level/storage/loot/functions/ApplyBonusCount/lambda$addUniformBonusCount$3 (Lnet/minecraft/world/item/enchantment/Enchantment;I[Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;)Lnet/minecraft/world/level/storage/loot/functions/LootItemFunction; +MD: net/minecraft/world/level/storage/loot/functions/ApplyBonusCount/m_79933_ (Lnet/minecraft/world/item/enchantment/Enchantment;[Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;)Lnet/minecraft/world/level/storage/loot/functions/LootItemFunction; net/minecraft/world/level/storage/loot/functions/ApplyBonusCount/lambda$addUniformBonusCount$2 (Lnet/minecraft/world/item/enchantment/Enchantment;[Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;)Lnet/minecraft/world/level/storage/loot/functions/LootItemFunction; +MD: net/minecraft/world/level/storage/loot/functions/ApplyBonusCount/m_79939_ (Lnet/minecraft/world/item/enchantment/Enchantment;)Lnet/minecraft/world/level/storage/loot/functions/LootItemConditionalFunction$Builder; net/minecraft/world/level/storage/loot/functions/ApplyBonusCount/addUniformBonusCount (Lnet/minecraft/world/item/enchantment/Enchantment;)Lnet/minecraft/world/level/storage/loot/functions/LootItemConditionalFunction$Builder; +MD: net/minecraft/world/level/storage/loot/functions/ApplyBonusCount/m_79941_ (Lnet/minecraft/world/item/enchantment/Enchantment;[Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;)Lnet/minecraft/world/level/storage/loot/functions/LootItemFunction; net/minecraft/world/level/storage/loot/functions/ApplyBonusCount/lambda$addOreBonusCount$1 (Lnet/minecraft/world/item/enchantment/Enchantment;[Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;)Lnet/minecraft/world/level/storage/loot/functions/LootItemFunction; +MD: net/minecraft/world/level/storage/loot/functions/ApplyBonusCount$BinomialWithBonusCount/ ()V net/minecraft/world/level/storage/loot/functions/ApplyBonusCount$BinomialWithBonusCount/ ()V +MD: net/minecraft/world/level/storage/loot/functions/ApplyBonusCount$BinomialWithBonusCount/ (IF)V net/minecraft/world/level/storage/loot/functions/ApplyBonusCount$BinomialWithBonusCount/ (IF)V +MD: net/minecraft/world/level/storage/loot/functions/ApplyBonusCount$BinomialWithBonusCount/m_213779_ (Lnet/minecraft/util/RandomSource;II)I net/minecraft/world/level/storage/loot/functions/ApplyBonusCount$BinomialWithBonusCount/calculateNewCount (Lnet/minecraft/util/RandomSource;II)I +MD: net/minecraft/world/level/storage/loot/functions/ApplyBonusCount$BinomialWithBonusCount/m_5713_ ()Lnet/minecraft/resources/ResourceLocation; net/minecraft/world/level/storage/loot/functions/ApplyBonusCount$BinomialWithBonusCount/getType ()Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/world/level/storage/loot/functions/ApplyBonusCount$BinomialWithBonusCount/m_6417_ (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonSerializationContext;)V net/minecraft/world/level/storage/loot/functions/ApplyBonusCount$BinomialWithBonusCount/serializeParams (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonSerializationContext;)V +MD: net/minecraft/world/level/storage/loot/functions/ApplyBonusCount$BinomialWithBonusCount/m_79955_ (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;)Lnet/minecraft/world/level/storage/loot/functions/ApplyBonusCount$Formula; net/minecraft/world/level/storage/loot/functions/ApplyBonusCount$BinomialWithBonusCount/deserialize (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;)Lnet/minecraft/world/level/storage/loot/functions/ApplyBonusCount$Formula; +MD: net/minecraft/world/level/storage/loot/functions/ApplyBonusCount$Formula/m_213779_ (Lnet/minecraft/util/RandomSource;II)I net/minecraft/world/level/storage/loot/functions/ApplyBonusCount$Formula/calculateNewCount (Lnet/minecraft/util/RandomSource;II)I +MD: net/minecraft/world/level/storage/loot/functions/ApplyBonusCount$Formula/m_5713_ ()Lnet/minecraft/resources/ResourceLocation; net/minecraft/world/level/storage/loot/functions/ApplyBonusCount$Formula/getType ()Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/world/level/storage/loot/functions/ApplyBonusCount$Formula/m_6417_ (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonSerializationContext;)V net/minecraft/world/level/storage/loot/functions/ApplyBonusCount$Formula/serializeParams (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonSerializationContext;)V +MD: net/minecraft/world/level/storage/loot/functions/ApplyBonusCount$FormulaDeserializer/m_79970_ (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;)Lnet/minecraft/world/level/storage/loot/functions/ApplyBonusCount$Formula; net/minecraft/world/level/storage/loot/functions/ApplyBonusCount$FormulaDeserializer/deserialize (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;)Lnet/minecraft/world/level/storage/loot/functions/ApplyBonusCount$Formula; +MD: net/minecraft/world/level/storage/loot/functions/ApplyBonusCount$OreDrops/ ()V net/minecraft/world/level/storage/loot/functions/ApplyBonusCount$OreDrops/ ()V +MD: net/minecraft/world/level/storage/loot/functions/ApplyBonusCount$OreDrops/ ()V net/minecraft/world/level/storage/loot/functions/ApplyBonusCount$OreDrops/ ()V +MD: net/minecraft/world/level/storage/loot/functions/ApplyBonusCount$OreDrops/m_213779_ (Lnet/minecraft/util/RandomSource;II)I net/minecraft/world/level/storage/loot/functions/ApplyBonusCount$OreDrops/calculateNewCount (Lnet/minecraft/util/RandomSource;II)I +MD: net/minecraft/world/level/storage/loot/functions/ApplyBonusCount$OreDrops/m_5713_ ()Lnet/minecraft/resources/ResourceLocation; net/minecraft/world/level/storage/loot/functions/ApplyBonusCount$OreDrops/getType ()Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/world/level/storage/loot/functions/ApplyBonusCount$OreDrops/m_6417_ (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonSerializationContext;)V net/minecraft/world/level/storage/loot/functions/ApplyBonusCount$OreDrops/serializeParams (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonSerializationContext;)V +MD: net/minecraft/world/level/storage/loot/functions/ApplyBonusCount$OreDrops/m_79979_ (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;)Lnet/minecraft/world/level/storage/loot/functions/ApplyBonusCount$Formula; net/minecraft/world/level/storage/loot/functions/ApplyBonusCount$OreDrops/deserialize (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;)Lnet/minecraft/world/level/storage/loot/functions/ApplyBonusCount$Formula; +MD: net/minecraft/world/level/storage/loot/functions/ApplyBonusCount$Serializer/ ()V net/minecraft/world/level/storage/loot/functions/ApplyBonusCount$Serializer/ ()V +MD: net/minecraft/world/level/storage/loot/functions/ApplyBonusCount$Serializer/m_6170_ (Lcom/google/gson/JsonObject;Lnet/minecraft/world/level/storage/loot/functions/LootItemConditionalFunction;Lcom/google/gson/JsonSerializationContext;)V net/minecraft/world/level/storage/loot/functions/ApplyBonusCount$Serializer/serialize (Lcom/google/gson/JsonObject;Lnet/minecraft/world/level/storage/loot/functions/LootItemConditionalFunction;Lcom/google/gson/JsonSerializationContext;)V +MD: net/minecraft/world/level/storage/loot/functions/ApplyBonusCount$Serializer/m_6170_ (Lcom/google/gson/JsonObject;Ljava/lang/Object;Lcom/google/gson/JsonSerializationContext;)V net/minecraft/world/level/storage/loot/functions/ApplyBonusCount$Serializer/serialize (Lcom/google/gson/JsonObject;Ljava/lang/Object;Lcom/google/gson/JsonSerializationContext;)V +MD: net/minecraft/world/level/storage/loot/functions/ApplyBonusCount$Serializer/m_6170_ (Lcom/google/gson/JsonObject;Lnet/minecraft/world/level/storage/loot/functions/ApplyBonusCount;Lcom/google/gson/JsonSerializationContext;)V net/minecraft/world/level/storage/loot/functions/ApplyBonusCount$Serializer/serialize (Lcom/google/gson/JsonObject;Lnet/minecraft/world/level/storage/loot/functions/ApplyBonusCount;Lcom/google/gson/JsonSerializationContext;)V +MD: net/minecraft/world/level/storage/loot/functions/ApplyBonusCount$Serializer/m_6821_ (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;[Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;)Lnet/minecraft/world/level/storage/loot/functions/LootItemConditionalFunction; net/minecraft/world/level/storage/loot/functions/ApplyBonusCount$Serializer/deserialize (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;[Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;)Lnet/minecraft/world/level/storage/loot/functions/LootItemConditionalFunction; +MD: net/minecraft/world/level/storage/loot/functions/ApplyBonusCount$Serializer/m_6821_ (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;[Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;)Lnet/minecraft/world/level/storage/loot/functions/ApplyBonusCount; net/minecraft/world/level/storage/loot/functions/ApplyBonusCount$Serializer/deserialize (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;[Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;)Lnet/minecraft/world/level/storage/loot/functions/ApplyBonusCount; +MD: net/minecraft/world/level/storage/loot/functions/ApplyBonusCount$Serializer/m_80006_ (Lnet/minecraft/resources/ResourceLocation;)Lcom/google/gson/JsonParseException; net/minecraft/world/level/storage/loot/functions/ApplyBonusCount$Serializer/lambda$deserialize$0 (Lnet/minecraft/resources/ResourceLocation;)Lcom/google/gson/JsonParseException; +MD: net/minecraft/world/level/storage/loot/functions/ApplyBonusCount$UniformBonusCount/ ()V net/minecraft/world/level/storage/loot/functions/ApplyBonusCount$UniformBonusCount/ ()V +MD: net/minecraft/world/level/storage/loot/functions/ApplyBonusCount$UniformBonusCount/ (I)V net/minecraft/world/level/storage/loot/functions/ApplyBonusCount$UniformBonusCount/ (I)V +MD: net/minecraft/world/level/storage/loot/functions/ApplyBonusCount$UniformBonusCount/m_213779_ (Lnet/minecraft/util/RandomSource;II)I net/minecraft/world/level/storage/loot/functions/ApplyBonusCount$UniformBonusCount/calculateNewCount (Lnet/minecraft/util/RandomSource;II)I +MD: net/minecraft/world/level/storage/loot/functions/ApplyBonusCount$UniformBonusCount/m_5713_ ()Lnet/minecraft/resources/ResourceLocation; net/minecraft/world/level/storage/loot/functions/ApplyBonusCount$UniformBonusCount/getType ()Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/world/level/storage/loot/functions/ApplyBonusCount$UniformBonusCount/m_6417_ (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonSerializationContext;)V net/minecraft/world/level/storage/loot/functions/ApplyBonusCount$UniformBonusCount/serializeParams (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonSerializationContext;)V +MD: net/minecraft/world/level/storage/loot/functions/ApplyBonusCount$UniformBonusCount/m_80018_ (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;)Lnet/minecraft/world/level/storage/loot/functions/ApplyBonusCount$Formula; net/minecraft/world/level/storage/loot/functions/ApplyBonusCount$UniformBonusCount/deserialize (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;)Lnet/minecraft/world/level/storage/loot/functions/ApplyBonusCount$Formula; +MD: net/minecraft/world/level/storage/loot/functions/ApplyExplosionDecay/ ([Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;)V net/minecraft/world/level/storage/loot/functions/ApplyExplosionDecay/ ([Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;)V +MD: net/minecraft/world/level/storage/loot/functions/ApplyExplosionDecay/m_7162_ ()Lnet/minecraft/world/level/storage/loot/functions/LootItemFunctionType; net/minecraft/world/level/storage/loot/functions/ApplyExplosionDecay/getType ()Lnet/minecraft/world/level/storage/loot/functions/LootItemFunctionType; +MD: net/minecraft/world/level/storage/loot/functions/ApplyExplosionDecay/m_7372_ (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/level/storage/loot/LootContext;)Lnet/minecraft/world/item/ItemStack; net/minecraft/world/level/storage/loot/functions/ApplyExplosionDecay/run (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/level/storage/loot/LootContext;)Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/level/storage/loot/functions/ApplyExplosionDecay/m_80037_ ()Lnet/minecraft/world/level/storage/loot/functions/LootItemConditionalFunction$Builder; net/minecraft/world/level/storage/loot/functions/ApplyExplosionDecay/explosionDecay ()Lnet/minecraft/world/level/storage/loot/functions/LootItemConditionalFunction$Builder; +MD: net/minecraft/world/level/storage/loot/functions/ApplyExplosionDecay$Serializer/ ()V net/minecraft/world/level/storage/loot/functions/ApplyExplosionDecay$Serializer/ ()V +MD: net/minecraft/world/level/storage/loot/functions/ApplyExplosionDecay$Serializer/m_6821_ (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;[Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;)Lnet/minecraft/world/level/storage/loot/functions/LootItemConditionalFunction; net/minecraft/world/level/storage/loot/functions/ApplyExplosionDecay$Serializer/deserialize (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;[Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;)Lnet/minecraft/world/level/storage/loot/functions/LootItemConditionalFunction; +MD: net/minecraft/world/level/storage/loot/functions/ApplyExplosionDecay$Serializer/m_6821_ (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;[Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;)Lnet/minecraft/world/level/storage/loot/functions/ApplyExplosionDecay; net/minecraft/world/level/storage/loot/functions/ApplyExplosionDecay$Serializer/deserialize (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;[Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;)Lnet/minecraft/world/level/storage/loot/functions/ApplyExplosionDecay; +MD: net/minecraft/world/level/storage/loot/functions/CopyBlockState/ ([Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;Lnet/minecraft/world/level/block/Block;Ljava/util/Set;)V net/minecraft/world/level/storage/loot/functions/CopyBlockState/ ([Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;Lnet/minecraft/world/level/block/Block;Ljava/util/Set;)V +MD: net/minecraft/world/level/storage/loot/functions/CopyBlockState/m_6231_ ()Ljava/util/Set; net/minecraft/world/level/storage/loot/functions/CopyBlockState/getReferencedContextParams ()Ljava/util/Set; +MD: net/minecraft/world/level/storage/loot/functions/CopyBlockState/m_7162_ ()Lnet/minecraft/world/level/storage/loot/functions/LootItemFunctionType; net/minecraft/world/level/storage/loot/functions/CopyBlockState/getType ()Lnet/minecraft/world/level/storage/loot/functions/LootItemFunctionType; +MD: net/minecraft/world/level/storage/loot/functions/CopyBlockState/m_7372_ (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/level/storage/loot/LootContext;)Lnet/minecraft/world/item/ItemStack; net/minecraft/world/level/storage/loot/functions/CopyBlockState/run (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/level/storage/loot/LootContext;)Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/level/storage/loot/functions/CopyBlockState/m_80062_ (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/functions/CopyBlockState$Builder; net/minecraft/world/level/storage/loot/functions/CopyBlockState/copyState (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/functions/CopyBlockState$Builder; +MD: net/minecraft/world/level/storage/loot/functions/CopyBlockState/m_80064_ (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/state/properties/Property;)Ljava/lang/String; net/minecraft/world/level/storage/loot/functions/CopyBlockState/serialize (Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/state/properties/Property;)Ljava/lang/String; +MD: net/minecraft/world/level/storage/loot/functions/CopyBlockState/m_80069_ (Lnet/minecraft/nbt/CompoundTag;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/state/properties/Property;)V net/minecraft/world/level/storage/loot/functions/CopyBlockState/lambda$run$0 (Lnet/minecraft/nbt/CompoundTag;Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/block/state/properties/Property;)V +MD: net/minecraft/world/level/storage/loot/functions/CopyBlockState$Builder/ (Lnet/minecraft/world/level/block/Block;)V net/minecraft/world/level/storage/loot/functions/CopyBlockState$Builder/ (Lnet/minecraft/world/level/block/Block;)V +MD: net/minecraft/world/level/storage/loot/functions/CopyBlockState$Builder/m_6477_ ()Lnet/minecraft/world/level/storage/loot/functions/CopyBlockState$Builder; net/minecraft/world/level/storage/loot/functions/CopyBlockState$Builder/getThis ()Lnet/minecraft/world/level/storage/loot/functions/CopyBlockState$Builder; +MD: net/minecraft/world/level/storage/loot/functions/CopyBlockState$Builder/m_6477_ ()Lnet/minecraft/world/level/storage/loot/functions/LootItemConditionalFunction$Builder; net/minecraft/world/level/storage/loot/functions/CopyBlockState$Builder/getThis ()Lnet/minecraft/world/level/storage/loot/functions/LootItemConditionalFunction$Builder; +MD: net/minecraft/world/level/storage/loot/functions/CopyBlockState$Builder/m_7453_ ()Lnet/minecraft/world/level/storage/loot/functions/LootItemFunction; net/minecraft/world/level/storage/loot/functions/CopyBlockState$Builder/build ()Lnet/minecraft/world/level/storage/loot/functions/LootItemFunction; +MD: net/minecraft/world/level/storage/loot/functions/CopyBlockState$Builder/m_80084_ (Lnet/minecraft/world/level/block/state/properties/Property;)Lnet/minecraft/world/level/storage/loot/functions/CopyBlockState$Builder; net/minecraft/world/level/storage/loot/functions/CopyBlockState$Builder/copy (Lnet/minecraft/world/level/block/state/properties/Property;)Lnet/minecraft/world/level/storage/loot/functions/CopyBlockState$Builder; +MD: net/minecraft/world/level/storage/loot/functions/CopyBlockState$Serializer/ ()V net/minecraft/world/level/storage/loot/functions/CopyBlockState$Serializer/ ()V +MD: net/minecraft/world/level/storage/loot/functions/CopyBlockState$Serializer/m_6170_ (Lcom/google/gson/JsonObject;Lnet/minecraft/world/level/storage/loot/functions/LootItemConditionalFunction;Lcom/google/gson/JsonSerializationContext;)V net/minecraft/world/level/storage/loot/functions/CopyBlockState$Serializer/serialize (Lcom/google/gson/JsonObject;Lnet/minecraft/world/level/storage/loot/functions/LootItemConditionalFunction;Lcom/google/gson/JsonSerializationContext;)V +MD: net/minecraft/world/level/storage/loot/functions/CopyBlockState$Serializer/m_6170_ (Lcom/google/gson/JsonObject;Ljava/lang/Object;Lcom/google/gson/JsonSerializationContext;)V net/minecraft/world/level/storage/loot/functions/CopyBlockState$Serializer/serialize (Lcom/google/gson/JsonObject;Ljava/lang/Object;Lcom/google/gson/JsonSerializationContext;)V +MD: net/minecraft/world/level/storage/loot/functions/CopyBlockState$Serializer/m_6170_ (Lcom/google/gson/JsonObject;Lnet/minecraft/world/level/storage/loot/functions/CopyBlockState;Lcom/google/gson/JsonSerializationContext;)V net/minecraft/world/level/storage/loot/functions/CopyBlockState$Serializer/serialize (Lcom/google/gson/JsonObject;Lnet/minecraft/world/level/storage/loot/functions/CopyBlockState;Lcom/google/gson/JsonSerializationContext;)V +MD: net/minecraft/world/level/storage/loot/functions/CopyBlockState$Serializer/m_6821_ (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;[Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;)Lnet/minecraft/world/level/storage/loot/functions/LootItemConditionalFunction; net/minecraft/world/level/storage/loot/functions/CopyBlockState$Serializer/deserialize (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;[Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;)Lnet/minecraft/world/level/storage/loot/functions/LootItemConditionalFunction; +MD: net/minecraft/world/level/storage/loot/functions/CopyBlockState$Serializer/m_6821_ (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;[Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;)Lnet/minecraft/world/level/storage/loot/functions/CopyBlockState; net/minecraft/world/level/storage/loot/functions/CopyBlockState$Serializer/deserialize (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;[Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;)Lnet/minecraft/world/level/storage/loot/functions/CopyBlockState; +MD: net/minecraft/world/level/storage/loot/functions/CopyBlockState$Serializer/m_80089_ (Lcom/google/gson/JsonArray;Lnet/minecraft/world/level/block/state/properties/Property;)V net/minecraft/world/level/storage/loot/functions/CopyBlockState$Serializer/lambda$serialize$0 (Lcom/google/gson/JsonArray;Lnet/minecraft/world/level/block/state/properties/Property;)V +MD: net/minecraft/world/level/storage/loot/functions/CopyBlockState$Serializer/m_80108_ (Ljava/util/Set;Lnet/minecraft/world/level/block/state/StateDefinition;Lcom/google/gson/JsonElement;)V net/minecraft/world/level/storage/loot/functions/CopyBlockState$Serializer/lambda$deserialize$2 (Ljava/util/Set;Lnet/minecraft/world/level/block/state/StateDefinition;Lcom/google/gson/JsonElement;)V +MD: net/minecraft/world/level/storage/loot/functions/CopyBlockState$Serializer/m_80112_ (Lnet/minecraft/resources/ResourceLocation;)Ljava/lang/IllegalArgumentException; net/minecraft/world/level/storage/loot/functions/CopyBlockState$Serializer/lambda$deserialize$1 (Lnet/minecraft/resources/ResourceLocation;)Ljava/lang/IllegalArgumentException; +MD: net/minecraft/world/level/storage/loot/functions/CopyNameFunction/ ([Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;Lnet/minecraft/world/level/storage/loot/functions/CopyNameFunction$NameSource;)V net/minecraft/world/level/storage/loot/functions/CopyNameFunction/ ([Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;Lnet/minecraft/world/level/storage/loot/functions/CopyNameFunction$NameSource;)V +MD: net/minecraft/world/level/storage/loot/functions/CopyNameFunction/m_6231_ ()Ljava/util/Set; net/minecraft/world/level/storage/loot/functions/CopyNameFunction/getReferencedContextParams ()Ljava/util/Set; +MD: net/minecraft/world/level/storage/loot/functions/CopyNameFunction/m_7162_ ()Lnet/minecraft/world/level/storage/loot/functions/LootItemFunctionType; net/minecraft/world/level/storage/loot/functions/CopyNameFunction/getType ()Lnet/minecraft/world/level/storage/loot/functions/LootItemFunctionType; +MD: net/minecraft/world/level/storage/loot/functions/CopyNameFunction/m_7372_ (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/level/storage/loot/LootContext;)Lnet/minecraft/world/item/ItemStack; net/minecraft/world/level/storage/loot/functions/CopyNameFunction/run (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/level/storage/loot/LootContext;)Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/level/storage/loot/functions/CopyNameFunction/m_80187_ (Lnet/minecraft/world/level/storage/loot/functions/CopyNameFunction$NameSource;)Lnet/minecraft/world/level/storage/loot/functions/LootItemConditionalFunction$Builder; net/minecraft/world/level/storage/loot/functions/CopyNameFunction/copyName (Lnet/minecraft/world/level/storage/loot/functions/CopyNameFunction$NameSource;)Lnet/minecraft/world/level/storage/loot/functions/LootItemConditionalFunction$Builder; +MD: net/minecraft/world/level/storage/loot/functions/CopyNameFunction/m_80189_ (Lnet/minecraft/world/level/storage/loot/functions/CopyNameFunction$NameSource;[Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;)Lnet/minecraft/world/level/storage/loot/functions/LootItemFunction; net/minecraft/world/level/storage/loot/functions/CopyNameFunction/lambda$copyName$0 (Lnet/minecraft/world/level/storage/loot/functions/CopyNameFunction$NameSource;[Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;)Lnet/minecraft/world/level/storage/loot/functions/LootItemFunction; +MD: net/minecraft/world/level/storage/loot/functions/CopyNameFunction$NameSource/ ()V net/minecraft/world/level/storage/loot/functions/CopyNameFunction$NameSource/ ()V +MD: net/minecraft/world/level/storage/loot/functions/CopyNameFunction$NameSource/ (Ljava/lang/String;ILjava/lang/String;Lnet/minecraft/world/level/storage/loot/parameters/LootContextParam;)V net/minecraft/world/level/storage/loot/functions/CopyNameFunction$NameSource/ (Ljava/lang/String;ILjava/lang/String;Lnet/minecraft/world/level/storage/loot/parameters/LootContextParam;)V +MD: net/minecraft/world/level/storage/loot/functions/CopyNameFunction$NameSource/m_165173_ ()[Lnet/minecraft/world/level/storage/loot/functions/CopyNameFunction$NameSource; net/minecraft/world/level/storage/loot/functions/CopyNameFunction$NameSource/$values ()[Lnet/minecraft/world/level/storage/loot/functions/CopyNameFunction$NameSource; +MD: net/minecraft/world/level/storage/loot/functions/CopyNameFunction$NameSource/m_80208_ (Ljava/lang/String;)Lnet/minecraft/world/level/storage/loot/functions/CopyNameFunction$NameSource; net/minecraft/world/level/storage/loot/functions/CopyNameFunction$NameSource/getByName (Ljava/lang/String;)Lnet/minecraft/world/level/storage/loot/functions/CopyNameFunction$NameSource; +MD: net/minecraft/world/level/storage/loot/functions/CopyNameFunction$NameSource/valueOf (Ljava/lang/String;)Lnet/minecraft/world/level/storage/loot/functions/CopyNameFunction$NameSource; net/minecraft/world/level/storage/loot/functions/CopyNameFunction$NameSource/valueOf (Ljava/lang/String;)Lnet/minecraft/world/level/storage/loot/functions/CopyNameFunction$NameSource; +MD: net/minecraft/world/level/storage/loot/functions/CopyNameFunction$NameSource/values ()[Lnet/minecraft/world/level/storage/loot/functions/CopyNameFunction$NameSource; net/minecraft/world/level/storage/loot/functions/CopyNameFunction$NameSource/values ()[Lnet/minecraft/world/level/storage/loot/functions/CopyNameFunction$NameSource; +MD: net/minecraft/world/level/storage/loot/functions/CopyNameFunction$Serializer/ ()V net/minecraft/world/level/storage/loot/functions/CopyNameFunction$Serializer/ ()V +MD: net/minecraft/world/level/storage/loot/functions/CopyNameFunction$Serializer/m_6170_ (Lcom/google/gson/JsonObject;Lnet/minecraft/world/level/storage/loot/functions/LootItemConditionalFunction;Lcom/google/gson/JsonSerializationContext;)V net/minecraft/world/level/storage/loot/functions/CopyNameFunction$Serializer/serialize (Lcom/google/gson/JsonObject;Lnet/minecraft/world/level/storage/loot/functions/LootItemConditionalFunction;Lcom/google/gson/JsonSerializationContext;)V +MD: net/minecraft/world/level/storage/loot/functions/CopyNameFunction$Serializer/m_6170_ (Lcom/google/gson/JsonObject;Lnet/minecraft/world/level/storage/loot/functions/CopyNameFunction;Lcom/google/gson/JsonSerializationContext;)V net/minecraft/world/level/storage/loot/functions/CopyNameFunction$Serializer/serialize (Lcom/google/gson/JsonObject;Lnet/minecraft/world/level/storage/loot/functions/CopyNameFunction;Lcom/google/gson/JsonSerializationContext;)V +MD: net/minecraft/world/level/storage/loot/functions/CopyNameFunction$Serializer/m_6170_ (Lcom/google/gson/JsonObject;Ljava/lang/Object;Lcom/google/gson/JsonSerializationContext;)V net/minecraft/world/level/storage/loot/functions/CopyNameFunction$Serializer/serialize (Lcom/google/gson/JsonObject;Ljava/lang/Object;Lcom/google/gson/JsonSerializationContext;)V +MD: net/minecraft/world/level/storage/loot/functions/CopyNameFunction$Serializer/m_6821_ (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;[Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;)Lnet/minecraft/world/level/storage/loot/functions/LootItemConditionalFunction; net/minecraft/world/level/storage/loot/functions/CopyNameFunction$Serializer/deserialize (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;[Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;)Lnet/minecraft/world/level/storage/loot/functions/LootItemConditionalFunction; +MD: net/minecraft/world/level/storage/loot/functions/CopyNameFunction$Serializer/m_6821_ (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;[Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;)Lnet/minecraft/world/level/storage/loot/functions/CopyNameFunction; net/minecraft/world/level/storage/loot/functions/CopyNameFunction$Serializer/deserialize (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;[Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;)Lnet/minecraft/world/level/storage/loot/functions/CopyNameFunction; +MD: net/minecraft/world/level/storage/loot/functions/CopyNbtFunction/ ([Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;Lnet/minecraft/world/level/storage/loot/providers/nbt/NbtProvider;Ljava/util/List;)V net/minecraft/world/level/storage/loot/functions/CopyNbtFunction/ ([Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;Lnet/minecraft/world/level/storage/loot/providers/nbt/NbtProvider;Ljava/util/List;)V +MD: net/minecraft/world/level/storage/loot/functions/CopyNbtFunction/m_165178_ (Lnet/minecraft/world/level/storage/loot/LootContext$EntityTarget;)Lnet/minecraft/world/level/storage/loot/functions/CopyNbtFunction$Builder; net/minecraft/world/level/storage/loot/functions/CopyNbtFunction/copyData (Lnet/minecraft/world/level/storage/loot/LootContext$EntityTarget;)Lnet/minecraft/world/level/storage/loot/functions/CopyNbtFunction$Builder; +MD: net/minecraft/world/level/storage/loot/functions/CopyNbtFunction/m_165180_ (Lnet/minecraft/world/level/storage/loot/providers/nbt/NbtProvider;)Lnet/minecraft/world/level/storage/loot/functions/CopyNbtFunction$Builder; net/minecraft/world/level/storage/loot/functions/CopyNbtFunction/copyData (Lnet/minecraft/world/level/storage/loot/providers/nbt/NbtProvider;)Lnet/minecraft/world/level/storage/loot/functions/CopyNbtFunction$Builder; +MD: net/minecraft/world/level/storage/loot/functions/CopyNbtFunction/m_6231_ ()Ljava/util/Set; net/minecraft/world/level/storage/loot/functions/CopyNbtFunction/getReferencedContextParams ()Ljava/util/Set; +MD: net/minecraft/world/level/storage/loot/functions/CopyNbtFunction/m_7162_ ()Lnet/minecraft/world/level/storage/loot/functions/LootItemFunctionType; net/minecraft/world/level/storage/loot/functions/CopyNbtFunction/getType ()Lnet/minecraft/world/level/storage/loot/functions/LootItemFunctionType; +MD: net/minecraft/world/level/storage/loot/functions/CopyNbtFunction/m_7372_ (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/level/storage/loot/LootContext;)Lnet/minecraft/world/item/ItemStack; net/minecraft/world/level/storage/loot/functions/CopyNbtFunction/run (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/level/storage/loot/LootContext;)Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/level/storage/loot/functions/CopyNbtFunction/m_80252_ (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/nbt/Tag;Lnet/minecraft/world/level/storage/loot/functions/CopyNbtFunction$CopyOperation;)V net/minecraft/world/level/storage/loot/functions/CopyNbtFunction/lambda$run$0 (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/nbt/Tag;Lnet/minecraft/world/level/storage/loot/functions/CopyNbtFunction$CopyOperation;)V +MD: net/minecraft/world/level/storage/loot/functions/CopyNbtFunction/m_80267_ (Ljava/lang/String;)Lnet/minecraft/commands/arguments/NbtPathArgument$NbtPath; net/minecraft/world/level/storage/loot/functions/CopyNbtFunction/compileNbtPath (Ljava/lang/String;)Lnet/minecraft/commands/arguments/NbtPathArgument$NbtPath; +MD: net/minecraft/world/level/storage/loot/functions/CopyNbtFunction$Builder/ (Lnet/minecraft/world/level/storage/loot/providers/nbt/NbtProvider;)V net/minecraft/world/level/storage/loot/functions/CopyNbtFunction$Builder/ (Lnet/minecraft/world/level/storage/loot/providers/nbt/NbtProvider;)V +MD: net/minecraft/world/level/storage/loot/functions/CopyNbtFunction$Builder/m_6477_ ()Lnet/minecraft/world/level/storage/loot/functions/CopyNbtFunction$Builder; net/minecraft/world/level/storage/loot/functions/CopyNbtFunction$Builder/getThis ()Lnet/minecraft/world/level/storage/loot/functions/CopyNbtFunction$Builder; +MD: net/minecraft/world/level/storage/loot/functions/CopyNbtFunction$Builder/m_6477_ ()Lnet/minecraft/world/level/storage/loot/functions/LootItemConditionalFunction$Builder; net/minecraft/world/level/storage/loot/functions/CopyNbtFunction$Builder/getThis ()Lnet/minecraft/world/level/storage/loot/functions/LootItemConditionalFunction$Builder; +MD: net/minecraft/world/level/storage/loot/functions/CopyNbtFunction$Builder/m_7453_ ()Lnet/minecraft/world/level/storage/loot/functions/LootItemFunction; net/minecraft/world/level/storage/loot/functions/CopyNbtFunction$Builder/build ()Lnet/minecraft/world/level/storage/loot/functions/LootItemFunction; +MD: net/minecraft/world/level/storage/loot/functions/CopyNbtFunction$Builder/m_80279_ (Ljava/lang/String;Ljava/lang/String;)Lnet/minecraft/world/level/storage/loot/functions/CopyNbtFunction$Builder; net/minecraft/world/level/storage/loot/functions/CopyNbtFunction$Builder/copy (Ljava/lang/String;Ljava/lang/String;)Lnet/minecraft/world/level/storage/loot/functions/CopyNbtFunction$Builder; +MD: net/minecraft/world/level/storage/loot/functions/CopyNbtFunction$Builder/m_80282_ (Ljava/lang/String;Ljava/lang/String;Lnet/minecraft/world/level/storage/loot/functions/CopyNbtFunction$MergeStrategy;)Lnet/minecraft/world/level/storage/loot/functions/CopyNbtFunction$Builder; net/minecraft/world/level/storage/loot/functions/CopyNbtFunction$Builder/copy (Ljava/lang/String;Ljava/lang/String;Lnet/minecraft/world/level/storage/loot/functions/CopyNbtFunction$MergeStrategy;)Lnet/minecraft/world/level/storage/loot/functions/CopyNbtFunction$Builder; +MD: net/minecraft/world/level/storage/loot/functions/CopyNbtFunction$CopyOperation/ (Ljava/lang/String;Ljava/lang/String;Lnet/minecraft/world/level/storage/loot/functions/CopyNbtFunction$MergeStrategy;)V net/minecraft/world/level/storage/loot/functions/CopyNbtFunction$CopyOperation/ (Ljava/lang/String;Ljava/lang/String;Lnet/minecraft/world/level/storage/loot/functions/CopyNbtFunction$MergeStrategy;)V +MD: net/minecraft/world/level/storage/loot/functions/CopyNbtFunction$CopyOperation/m_80302_ ()Lcom/google/gson/JsonObject; net/minecraft/world/level/storage/loot/functions/CopyNbtFunction$CopyOperation/toJson ()Lcom/google/gson/JsonObject; +MD: net/minecraft/world/level/storage/loot/functions/CopyNbtFunction$CopyOperation/m_80303_ (Lcom/google/gson/JsonObject;)Lnet/minecraft/world/level/storage/loot/functions/CopyNbtFunction$CopyOperation; net/minecraft/world/level/storage/loot/functions/CopyNbtFunction$CopyOperation/fromJson (Lcom/google/gson/JsonObject;)Lnet/minecraft/world/level/storage/loot/functions/CopyNbtFunction$CopyOperation; +MD: net/minecraft/world/level/storage/loot/functions/CopyNbtFunction$CopyOperation/m_80305_ (Ljava/util/function/Supplier;Lnet/minecraft/nbt/Tag;)V net/minecraft/world/level/storage/loot/functions/CopyNbtFunction$CopyOperation/apply (Ljava/util/function/Supplier;Lnet/minecraft/nbt/Tag;)V +MD: net/minecraft/world/level/storage/loot/functions/CopyNbtFunction$MergeStrategy/ ()V net/minecraft/world/level/storage/loot/functions/CopyNbtFunction$MergeStrategy/ ()V +MD: net/minecraft/world/level/storage/loot/functions/CopyNbtFunction$MergeStrategy/ (Ljava/lang/String;ILjava/lang/String;)V net/minecraft/world/level/storage/loot/functions/CopyNbtFunction$MergeStrategy/ (Ljava/lang/String;ILjava/lang/String;)V +MD: net/minecraft/world/level/storage/loot/functions/CopyNbtFunction$MergeStrategy/m_165184_ ()[Lnet/minecraft/world/level/storage/loot/functions/CopyNbtFunction$MergeStrategy; net/minecraft/world/level/storage/loot/functions/CopyNbtFunction$MergeStrategy/$values ()[Lnet/minecraft/world/level/storage/loot/functions/CopyNbtFunction$MergeStrategy; +MD: net/minecraft/world/level/storage/loot/functions/CopyNbtFunction$MergeStrategy/m_6706_ (Lnet/minecraft/nbt/Tag;Lnet/minecraft/commands/arguments/NbtPathArgument$NbtPath;Ljava/util/List;)V net/minecraft/world/level/storage/loot/functions/CopyNbtFunction$MergeStrategy/merge (Lnet/minecraft/nbt/Tag;Lnet/minecraft/commands/arguments/NbtPathArgument$NbtPath;Ljava/util/List;)V +MD: net/minecraft/world/level/storage/loot/functions/CopyNbtFunction$MergeStrategy/m_80349_ (Ljava/lang/String;)Lnet/minecraft/world/level/storage/loot/functions/CopyNbtFunction$MergeStrategy; net/minecraft/world/level/storage/loot/functions/CopyNbtFunction$MergeStrategy/getByName (Ljava/lang/String;)Lnet/minecraft/world/level/storage/loot/functions/CopyNbtFunction$MergeStrategy; +MD: net/minecraft/world/level/storage/loot/functions/CopyNbtFunction$MergeStrategy/valueOf (Ljava/lang/String;)Lnet/minecraft/world/level/storage/loot/functions/CopyNbtFunction$MergeStrategy; net/minecraft/world/level/storage/loot/functions/CopyNbtFunction$MergeStrategy/valueOf (Ljava/lang/String;)Lnet/minecraft/world/level/storage/loot/functions/CopyNbtFunction$MergeStrategy; +MD: net/minecraft/world/level/storage/loot/functions/CopyNbtFunction$MergeStrategy/values ()[Lnet/minecraft/world/level/storage/loot/functions/CopyNbtFunction$MergeStrategy; net/minecraft/world/level/storage/loot/functions/CopyNbtFunction$MergeStrategy/values ()[Lnet/minecraft/world/level/storage/loot/functions/CopyNbtFunction$MergeStrategy; +MD: net/minecraft/world/level/storage/loot/functions/CopyNbtFunction$MergeStrategy$1/ (Ljava/lang/String;ILjava/lang/String;)V net/minecraft/world/level/storage/loot/functions/CopyNbtFunction$MergeStrategy$1/ (Ljava/lang/String;ILjava/lang/String;)V +MD: net/minecraft/world/level/storage/loot/functions/CopyNbtFunction$MergeStrategy$1/m_6706_ (Lnet/minecraft/nbt/Tag;Lnet/minecraft/commands/arguments/NbtPathArgument$NbtPath;Ljava/util/List;)V net/minecraft/world/level/storage/loot/functions/CopyNbtFunction$MergeStrategy$1/merge (Lnet/minecraft/nbt/Tag;Lnet/minecraft/commands/arguments/NbtPathArgument$NbtPath;Ljava/util/List;)V +MD: net/minecraft/world/level/storage/loot/functions/CopyNbtFunction$MergeStrategy$2/ (Ljava/lang/String;ILjava/lang/String;)V net/minecraft/world/level/storage/loot/functions/CopyNbtFunction$MergeStrategy$2/ (Ljava/lang/String;ILjava/lang/String;)V +MD: net/minecraft/world/level/storage/loot/functions/CopyNbtFunction$MergeStrategy$2/m_165185_ (Lnet/minecraft/nbt/Tag;Lnet/minecraft/nbt/Tag;)V net/minecraft/world/level/storage/loot/functions/CopyNbtFunction$MergeStrategy$2/lambda$merge$0 (Lnet/minecraft/nbt/Tag;Lnet/minecraft/nbt/Tag;)V +MD: net/minecraft/world/level/storage/loot/functions/CopyNbtFunction$MergeStrategy$2/m_6706_ (Lnet/minecraft/nbt/Tag;Lnet/minecraft/commands/arguments/NbtPathArgument$NbtPath;Ljava/util/List;)V net/minecraft/world/level/storage/loot/functions/CopyNbtFunction$MergeStrategy$2/merge (Lnet/minecraft/nbt/Tag;Lnet/minecraft/commands/arguments/NbtPathArgument$NbtPath;Ljava/util/List;)V +MD: net/minecraft/world/level/storage/loot/functions/CopyNbtFunction$MergeStrategy$2/m_80369_ (Ljava/util/List;Lnet/minecraft/nbt/Tag;)V net/minecraft/world/level/storage/loot/functions/CopyNbtFunction$MergeStrategy$2/lambda$merge$1 (Ljava/util/List;Lnet/minecraft/nbt/Tag;)V +MD: net/minecraft/world/level/storage/loot/functions/CopyNbtFunction$MergeStrategy$3/ (Ljava/lang/String;ILjava/lang/String;)V net/minecraft/world/level/storage/loot/functions/CopyNbtFunction$MergeStrategy$3/ (Ljava/lang/String;ILjava/lang/String;)V +MD: net/minecraft/world/level/storage/loot/functions/CopyNbtFunction$MergeStrategy$3/m_165188_ (Lnet/minecraft/nbt/Tag;Lnet/minecraft/nbt/Tag;)V net/minecraft/world/level/storage/loot/functions/CopyNbtFunction$MergeStrategy$3/lambda$merge$0 (Lnet/minecraft/nbt/Tag;Lnet/minecraft/nbt/Tag;)V +MD: net/minecraft/world/level/storage/loot/functions/CopyNbtFunction$MergeStrategy$3/m_6706_ (Lnet/minecraft/nbt/Tag;Lnet/minecraft/commands/arguments/NbtPathArgument$NbtPath;Ljava/util/List;)V net/minecraft/world/level/storage/loot/functions/CopyNbtFunction$MergeStrategy$3/merge (Lnet/minecraft/nbt/Tag;Lnet/minecraft/commands/arguments/NbtPathArgument$NbtPath;Ljava/util/List;)V +MD: net/minecraft/world/level/storage/loot/functions/CopyNbtFunction$MergeStrategy$3/m_80383_ (Ljava/util/List;Lnet/minecraft/nbt/Tag;)V net/minecraft/world/level/storage/loot/functions/CopyNbtFunction$MergeStrategy$3/lambda$merge$1 (Ljava/util/List;Lnet/minecraft/nbt/Tag;)V +MD: net/minecraft/world/level/storage/loot/functions/CopyNbtFunction$Serializer/ ()V net/minecraft/world/level/storage/loot/functions/CopyNbtFunction$Serializer/ ()V +MD: net/minecraft/world/level/storage/loot/functions/CopyNbtFunction$Serializer/m_6170_ (Lcom/google/gson/JsonObject;Lnet/minecraft/world/level/storage/loot/functions/LootItemConditionalFunction;Lcom/google/gson/JsonSerializationContext;)V net/minecraft/world/level/storage/loot/functions/CopyNbtFunction$Serializer/serialize (Lcom/google/gson/JsonObject;Lnet/minecraft/world/level/storage/loot/functions/LootItemConditionalFunction;Lcom/google/gson/JsonSerializationContext;)V +MD: net/minecraft/world/level/storage/loot/functions/CopyNbtFunction$Serializer/m_6170_ (Lcom/google/gson/JsonObject;Ljava/lang/Object;Lcom/google/gson/JsonSerializationContext;)V net/minecraft/world/level/storage/loot/functions/CopyNbtFunction$Serializer/serialize (Lcom/google/gson/JsonObject;Ljava/lang/Object;Lcom/google/gson/JsonSerializationContext;)V +MD: net/minecraft/world/level/storage/loot/functions/CopyNbtFunction$Serializer/m_6170_ (Lcom/google/gson/JsonObject;Lnet/minecraft/world/level/storage/loot/functions/CopyNbtFunction;Lcom/google/gson/JsonSerializationContext;)V net/minecraft/world/level/storage/loot/functions/CopyNbtFunction$Serializer/serialize (Lcom/google/gson/JsonObject;Lnet/minecraft/world/level/storage/loot/functions/CopyNbtFunction;Lcom/google/gson/JsonSerializationContext;)V +MD: net/minecraft/world/level/storage/loot/functions/CopyNbtFunction$Serializer/m_6821_ (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;[Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;)Lnet/minecraft/world/level/storage/loot/functions/CopyNbtFunction; net/minecraft/world/level/storage/loot/functions/CopyNbtFunction$Serializer/deserialize (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;[Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;)Lnet/minecraft/world/level/storage/loot/functions/CopyNbtFunction; +MD: net/minecraft/world/level/storage/loot/functions/CopyNbtFunction$Serializer/m_6821_ (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;[Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;)Lnet/minecraft/world/level/storage/loot/functions/LootItemConditionalFunction; net/minecraft/world/level/storage/loot/functions/CopyNbtFunction$Serializer/deserialize (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;[Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;)Lnet/minecraft/world/level/storage/loot/functions/LootItemConditionalFunction; +MD: net/minecraft/world/level/storage/loot/functions/EnchantRandomlyFunction/ ()V net/minecraft/world/level/storage/loot/functions/EnchantRandomlyFunction/ ()V +MD: net/minecraft/world/level/storage/loot/functions/EnchantRandomlyFunction/ ([Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;Ljava/util/Collection;)V net/minecraft/world/level/storage/loot/functions/EnchantRandomlyFunction/ ([Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;Ljava/util/Collection;)V +MD: net/minecraft/world/level/storage/loot/functions/EnchantRandomlyFunction/m_165191_ ()Lnet/minecraft/world/level/storage/loot/functions/EnchantRandomlyFunction$Builder; net/minecraft/world/level/storage/loot/functions/EnchantRandomlyFunction/randomEnchantment ()Lnet/minecraft/world/level/storage/loot/functions/EnchantRandomlyFunction$Builder; +MD: net/minecraft/world/level/storage/loot/functions/EnchantRandomlyFunction/m_230979_ (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/item/enchantment/Enchantment;Lnet/minecraft/util/RandomSource;)Lnet/minecraft/world/item/ItemStack; net/minecraft/world/level/storage/loot/functions/EnchantRandomlyFunction/enchantItem (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/item/enchantment/Enchantment;Lnet/minecraft/util/RandomSource;)Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/level/storage/loot/functions/EnchantRandomlyFunction/m_7162_ ()Lnet/minecraft/world/level/storage/loot/functions/LootItemFunctionType; net/minecraft/world/level/storage/loot/functions/EnchantRandomlyFunction/getType ()Lnet/minecraft/world/level/storage/loot/functions/LootItemFunctionType; +MD: net/minecraft/world/level/storage/loot/functions/EnchantRandomlyFunction/m_7372_ (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/level/storage/loot/LootContext;)Lnet/minecraft/world/item/ItemStack; net/minecraft/world/level/storage/loot/functions/EnchantRandomlyFunction/run (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/level/storage/loot/LootContext;)Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/level/storage/loot/functions/EnchantRandomlyFunction/m_80433_ (ZLnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/item/enchantment/Enchantment;)Z net/minecraft/world/level/storage/loot/functions/EnchantRandomlyFunction/lambda$run$0 (ZLnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/item/enchantment/Enchantment;)Z +MD: net/minecraft/world/level/storage/loot/functions/EnchantRandomlyFunction/m_80437_ ([Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;)Lnet/minecraft/world/level/storage/loot/functions/LootItemFunction; net/minecraft/world/level/storage/loot/functions/EnchantRandomlyFunction/lambda$randomApplicableEnchantment$1 ([Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;)Lnet/minecraft/world/level/storage/loot/functions/LootItemFunction; +MD: net/minecraft/world/level/storage/loot/functions/EnchantRandomlyFunction/m_80440_ ()Lnet/minecraft/world/level/storage/loot/functions/LootItemConditionalFunction$Builder; net/minecraft/world/level/storage/loot/functions/EnchantRandomlyFunction/randomApplicableEnchantment ()Lnet/minecraft/world/level/storage/loot/functions/LootItemConditionalFunction$Builder; +MD: net/minecraft/world/level/storage/loot/functions/EnchantRandomlyFunction$Builder/ ()V net/minecraft/world/level/storage/loot/functions/EnchantRandomlyFunction$Builder/ ()V +MD: net/minecraft/world/level/storage/loot/functions/EnchantRandomlyFunction$Builder/m_6477_ ()Lnet/minecraft/world/level/storage/loot/functions/EnchantRandomlyFunction$Builder; net/minecraft/world/level/storage/loot/functions/EnchantRandomlyFunction$Builder/getThis ()Lnet/minecraft/world/level/storage/loot/functions/EnchantRandomlyFunction$Builder; +MD: net/minecraft/world/level/storage/loot/functions/EnchantRandomlyFunction$Builder/m_6477_ ()Lnet/minecraft/world/level/storage/loot/functions/LootItemConditionalFunction$Builder; net/minecraft/world/level/storage/loot/functions/EnchantRandomlyFunction$Builder/getThis ()Lnet/minecraft/world/level/storage/loot/functions/LootItemConditionalFunction$Builder; +MD: net/minecraft/world/level/storage/loot/functions/EnchantRandomlyFunction$Builder/m_7453_ ()Lnet/minecraft/world/level/storage/loot/functions/LootItemFunction; net/minecraft/world/level/storage/loot/functions/EnchantRandomlyFunction$Builder/build ()Lnet/minecraft/world/level/storage/loot/functions/LootItemFunction; +MD: net/minecraft/world/level/storage/loot/functions/EnchantRandomlyFunction$Builder/m_80444_ (Lnet/minecraft/world/item/enchantment/Enchantment;)Lnet/minecraft/world/level/storage/loot/functions/EnchantRandomlyFunction$Builder; net/minecraft/world/level/storage/loot/functions/EnchantRandomlyFunction$Builder/withEnchantment (Lnet/minecraft/world/item/enchantment/Enchantment;)Lnet/minecraft/world/level/storage/loot/functions/EnchantRandomlyFunction$Builder; +MD: net/minecraft/world/level/storage/loot/functions/EnchantRandomlyFunction$Serializer/ ()V net/minecraft/world/level/storage/loot/functions/EnchantRandomlyFunction$Serializer/ ()V +MD: net/minecraft/world/level/storage/loot/functions/EnchantRandomlyFunction$Serializer/m_6170_ (Lcom/google/gson/JsonObject;Lnet/minecraft/world/level/storage/loot/functions/LootItemConditionalFunction;Lcom/google/gson/JsonSerializationContext;)V net/minecraft/world/level/storage/loot/functions/EnchantRandomlyFunction$Serializer/serialize (Lcom/google/gson/JsonObject;Lnet/minecraft/world/level/storage/loot/functions/LootItemConditionalFunction;Lcom/google/gson/JsonSerializationContext;)V +MD: net/minecraft/world/level/storage/loot/functions/EnchantRandomlyFunction$Serializer/m_6170_ (Lcom/google/gson/JsonObject;Ljava/lang/Object;Lcom/google/gson/JsonSerializationContext;)V net/minecraft/world/level/storage/loot/functions/EnchantRandomlyFunction$Serializer/serialize (Lcom/google/gson/JsonObject;Ljava/lang/Object;Lcom/google/gson/JsonSerializationContext;)V +MD: net/minecraft/world/level/storage/loot/functions/EnchantRandomlyFunction$Serializer/m_6170_ (Lcom/google/gson/JsonObject;Lnet/minecraft/world/level/storage/loot/functions/EnchantRandomlyFunction;Lcom/google/gson/JsonSerializationContext;)V net/minecraft/world/level/storage/loot/functions/EnchantRandomlyFunction$Serializer/serialize (Lcom/google/gson/JsonObject;Lnet/minecraft/world/level/storage/loot/functions/EnchantRandomlyFunction;Lcom/google/gson/JsonSerializationContext;)V +MD: net/minecraft/world/level/storage/loot/functions/EnchantRandomlyFunction$Serializer/m_6821_ (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;[Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;)Lnet/minecraft/world/level/storage/loot/functions/LootItemConditionalFunction; net/minecraft/world/level/storage/loot/functions/EnchantRandomlyFunction$Serializer/deserialize (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;[Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;)Lnet/minecraft/world/level/storage/loot/functions/LootItemConditionalFunction; +MD: net/minecraft/world/level/storage/loot/functions/EnchantRandomlyFunction$Serializer/m_6821_ (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;[Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;)Lnet/minecraft/world/level/storage/loot/functions/EnchantRandomlyFunction; net/minecraft/world/level/storage/loot/functions/EnchantRandomlyFunction$Serializer/deserialize (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;[Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;)Lnet/minecraft/world/level/storage/loot/functions/EnchantRandomlyFunction; +MD: net/minecraft/world/level/storage/loot/functions/EnchantRandomlyFunction$Serializer/m_80465_ (Ljava/lang/String;)Lcom/google/gson/JsonSyntaxException; net/minecraft/world/level/storage/loot/functions/EnchantRandomlyFunction$Serializer/lambda$deserialize$0 (Ljava/lang/String;)Lcom/google/gson/JsonSyntaxException; +MD: net/minecraft/world/level/storage/loot/functions/EnchantWithLevelsFunction/ ([Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;Lnet/minecraft/world/level/storage/loot/providers/number/NumberProvider;Z)V net/minecraft/world/level/storage/loot/functions/EnchantWithLevelsFunction/ ([Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;Lnet/minecraft/world/level/storage/loot/providers/number/NumberProvider;Z)V +MD: net/minecraft/world/level/storage/loot/functions/EnchantWithLevelsFunction/m_165196_ (Lnet/minecraft/world/level/storage/loot/providers/number/NumberProvider;)Lnet/minecraft/world/level/storage/loot/functions/EnchantWithLevelsFunction$Builder; net/minecraft/world/level/storage/loot/functions/EnchantWithLevelsFunction/enchantWithLevels (Lnet/minecraft/world/level/storage/loot/providers/number/NumberProvider;)Lnet/minecraft/world/level/storage/loot/functions/EnchantWithLevelsFunction$Builder; +MD: net/minecraft/world/level/storage/loot/functions/EnchantWithLevelsFunction/m_6231_ ()Ljava/util/Set; net/minecraft/world/level/storage/loot/functions/EnchantWithLevelsFunction/getReferencedContextParams ()Ljava/util/Set; +MD: net/minecraft/world/level/storage/loot/functions/EnchantWithLevelsFunction/m_7162_ ()Lnet/minecraft/world/level/storage/loot/functions/LootItemFunctionType; net/minecraft/world/level/storage/loot/functions/EnchantWithLevelsFunction/getType ()Lnet/minecraft/world/level/storage/loot/functions/LootItemFunctionType; +MD: net/minecraft/world/level/storage/loot/functions/EnchantWithLevelsFunction/m_7372_ (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/level/storage/loot/LootContext;)Lnet/minecraft/world/item/ItemStack; net/minecraft/world/level/storage/loot/functions/EnchantWithLevelsFunction/run (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/level/storage/loot/LootContext;)Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/level/storage/loot/functions/EnchantWithLevelsFunction$Builder/ (Lnet/minecraft/world/level/storage/loot/providers/number/NumberProvider;)V net/minecraft/world/level/storage/loot/functions/EnchantWithLevelsFunction$Builder/ (Lnet/minecraft/world/level/storage/loot/providers/number/NumberProvider;)V +MD: net/minecraft/world/level/storage/loot/functions/EnchantWithLevelsFunction$Builder/m_6477_ ()Lnet/minecraft/world/level/storage/loot/functions/EnchantWithLevelsFunction$Builder; net/minecraft/world/level/storage/loot/functions/EnchantWithLevelsFunction$Builder/getThis ()Lnet/minecraft/world/level/storage/loot/functions/EnchantWithLevelsFunction$Builder; +MD: net/minecraft/world/level/storage/loot/functions/EnchantWithLevelsFunction$Builder/m_6477_ ()Lnet/minecraft/world/level/storage/loot/functions/LootItemConditionalFunction$Builder; net/minecraft/world/level/storage/loot/functions/EnchantWithLevelsFunction$Builder/getThis ()Lnet/minecraft/world/level/storage/loot/functions/LootItemConditionalFunction$Builder; +MD: net/minecraft/world/level/storage/loot/functions/EnchantWithLevelsFunction$Builder/m_7453_ ()Lnet/minecraft/world/level/storage/loot/functions/LootItemFunction; net/minecraft/world/level/storage/loot/functions/EnchantWithLevelsFunction$Builder/build ()Lnet/minecraft/world/level/storage/loot/functions/LootItemFunction; +MD: net/minecraft/world/level/storage/loot/functions/EnchantWithLevelsFunction$Builder/m_80499_ ()Lnet/minecraft/world/level/storage/loot/functions/EnchantWithLevelsFunction$Builder; net/minecraft/world/level/storage/loot/functions/EnchantWithLevelsFunction$Builder/allowTreasure ()Lnet/minecraft/world/level/storage/loot/functions/EnchantWithLevelsFunction$Builder; +MD: net/minecraft/world/level/storage/loot/functions/EnchantWithLevelsFunction$Serializer/ ()V net/minecraft/world/level/storage/loot/functions/EnchantWithLevelsFunction$Serializer/ ()V +MD: net/minecraft/world/level/storage/loot/functions/EnchantWithLevelsFunction$Serializer/m_6170_ (Lcom/google/gson/JsonObject;Lnet/minecraft/world/level/storage/loot/functions/LootItemConditionalFunction;Lcom/google/gson/JsonSerializationContext;)V net/minecraft/world/level/storage/loot/functions/EnchantWithLevelsFunction$Serializer/serialize (Lcom/google/gson/JsonObject;Lnet/minecraft/world/level/storage/loot/functions/LootItemConditionalFunction;Lcom/google/gson/JsonSerializationContext;)V +MD: net/minecraft/world/level/storage/loot/functions/EnchantWithLevelsFunction$Serializer/m_6170_ (Lcom/google/gson/JsonObject;Ljava/lang/Object;Lcom/google/gson/JsonSerializationContext;)V net/minecraft/world/level/storage/loot/functions/EnchantWithLevelsFunction$Serializer/serialize (Lcom/google/gson/JsonObject;Ljava/lang/Object;Lcom/google/gson/JsonSerializationContext;)V +MD: net/minecraft/world/level/storage/loot/functions/EnchantWithLevelsFunction$Serializer/m_6170_ (Lcom/google/gson/JsonObject;Lnet/minecraft/world/level/storage/loot/functions/EnchantWithLevelsFunction;Lcom/google/gson/JsonSerializationContext;)V net/minecraft/world/level/storage/loot/functions/EnchantWithLevelsFunction$Serializer/serialize (Lcom/google/gson/JsonObject;Lnet/minecraft/world/level/storage/loot/functions/EnchantWithLevelsFunction;Lcom/google/gson/JsonSerializationContext;)V +MD: net/minecraft/world/level/storage/loot/functions/EnchantWithLevelsFunction$Serializer/m_6821_ (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;[Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;)Lnet/minecraft/world/level/storage/loot/functions/LootItemConditionalFunction; net/minecraft/world/level/storage/loot/functions/EnchantWithLevelsFunction$Serializer/deserialize (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;[Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;)Lnet/minecraft/world/level/storage/loot/functions/LootItemConditionalFunction; +MD: net/minecraft/world/level/storage/loot/functions/EnchantWithLevelsFunction$Serializer/m_6821_ (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;[Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;)Lnet/minecraft/world/level/storage/loot/functions/EnchantWithLevelsFunction; net/minecraft/world/level/storage/loot/functions/EnchantWithLevelsFunction$Serializer/deserialize (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;[Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;)Lnet/minecraft/world/level/storage/loot/functions/EnchantWithLevelsFunction; +MD: net/minecraft/world/level/storage/loot/functions/ExplorationMapFunction/ ()V net/minecraft/world/level/storage/loot/functions/ExplorationMapFunction/ ()V +MD: net/minecraft/world/level/storage/loot/functions/ExplorationMapFunction/ ([Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;Lnet/minecraft/tags/TagKey;Lnet/minecraft/world/level/saveddata/maps/MapDecoration$Type;BIZ)V net/minecraft/world/level/storage/loot/functions/ExplorationMapFunction/ ([Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;Lnet/minecraft/tags/TagKey;Lnet/minecraft/world/level/saveddata/maps/MapDecoration$Type;BIZ)V +MD: net/minecraft/world/level/storage/loot/functions/ExplorationMapFunction/m_6231_ ()Ljava/util/Set; net/minecraft/world/level/storage/loot/functions/ExplorationMapFunction/getReferencedContextParams ()Ljava/util/Set; +MD: net/minecraft/world/level/storage/loot/functions/ExplorationMapFunction/m_7162_ ()Lnet/minecraft/world/level/storage/loot/functions/LootItemFunctionType; net/minecraft/world/level/storage/loot/functions/ExplorationMapFunction/getType ()Lnet/minecraft/world/level/storage/loot/functions/LootItemFunctionType; +MD: net/minecraft/world/level/storage/loot/functions/ExplorationMapFunction/m_7372_ (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/level/storage/loot/LootContext;)Lnet/minecraft/world/item/ItemStack; net/minecraft/world/level/storage/loot/functions/ExplorationMapFunction/run (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/level/storage/loot/LootContext;)Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/level/storage/loot/functions/ExplorationMapFunction/m_80554_ ()Lnet/minecraft/world/level/storage/loot/functions/ExplorationMapFunction$Builder; net/minecraft/world/level/storage/loot/functions/ExplorationMapFunction/makeExplorationMap ()Lnet/minecraft/world/level/storage/loot/functions/ExplorationMapFunction$Builder; +MD: net/minecraft/world/level/storage/loot/functions/ExplorationMapFunction$Builder/ ()V net/minecraft/world/level/storage/loot/functions/ExplorationMapFunction$Builder/ ()V +MD: net/minecraft/world/level/storage/loot/functions/ExplorationMapFunction$Builder/m_165205_ (I)Lnet/minecraft/world/level/storage/loot/functions/ExplorationMapFunction$Builder; net/minecraft/world/level/storage/loot/functions/ExplorationMapFunction$Builder/setSearchRadius (I)Lnet/minecraft/world/level/storage/loot/functions/ExplorationMapFunction$Builder; +MD: net/minecraft/world/level/storage/loot/functions/ExplorationMapFunction$Builder/m_210658_ (Lnet/minecraft/tags/TagKey;)Lnet/minecraft/world/level/storage/loot/functions/ExplorationMapFunction$Builder; net/minecraft/world/level/storage/loot/functions/ExplorationMapFunction$Builder/setDestination (Lnet/minecraft/tags/TagKey;)Lnet/minecraft/world/level/storage/loot/functions/ExplorationMapFunction$Builder; +MD: net/minecraft/world/level/storage/loot/functions/ExplorationMapFunction$Builder/m_6477_ ()Lnet/minecraft/world/level/storage/loot/functions/ExplorationMapFunction$Builder; net/minecraft/world/level/storage/loot/functions/ExplorationMapFunction$Builder/getThis ()Lnet/minecraft/world/level/storage/loot/functions/ExplorationMapFunction$Builder; +MD: net/minecraft/world/level/storage/loot/functions/ExplorationMapFunction$Builder/m_6477_ ()Lnet/minecraft/world/level/storage/loot/functions/LootItemConditionalFunction$Builder; net/minecraft/world/level/storage/loot/functions/ExplorationMapFunction$Builder/getThis ()Lnet/minecraft/world/level/storage/loot/functions/LootItemConditionalFunction$Builder; +MD: net/minecraft/world/level/storage/loot/functions/ExplorationMapFunction$Builder/m_7453_ ()Lnet/minecraft/world/level/storage/loot/functions/LootItemFunction; net/minecraft/world/level/storage/loot/functions/ExplorationMapFunction$Builder/build ()Lnet/minecraft/world/level/storage/loot/functions/LootItemFunction; +MD: net/minecraft/world/level/storage/loot/functions/ExplorationMapFunction$Builder/m_80569_ (B)Lnet/minecraft/world/level/storage/loot/functions/ExplorationMapFunction$Builder; net/minecraft/world/level/storage/loot/functions/ExplorationMapFunction$Builder/setZoom (B)Lnet/minecraft/world/level/storage/loot/functions/ExplorationMapFunction$Builder; +MD: net/minecraft/world/level/storage/loot/functions/ExplorationMapFunction$Builder/m_80573_ (Lnet/minecraft/world/level/saveddata/maps/MapDecoration$Type;)Lnet/minecraft/world/level/storage/loot/functions/ExplorationMapFunction$Builder; net/minecraft/world/level/storage/loot/functions/ExplorationMapFunction$Builder/setMapDecoration (Lnet/minecraft/world/level/saveddata/maps/MapDecoration$Type;)Lnet/minecraft/world/level/storage/loot/functions/ExplorationMapFunction$Builder; +MD: net/minecraft/world/level/storage/loot/functions/ExplorationMapFunction$Builder/m_80575_ (Z)Lnet/minecraft/world/level/storage/loot/functions/ExplorationMapFunction$Builder; net/minecraft/world/level/storage/loot/functions/ExplorationMapFunction$Builder/setSkipKnownStructures (Z)Lnet/minecraft/world/level/storage/loot/functions/ExplorationMapFunction$Builder; +MD: net/minecraft/world/level/storage/loot/functions/ExplorationMapFunction$Serializer/ ()V net/minecraft/world/level/storage/loot/functions/ExplorationMapFunction$Serializer/ ()V +MD: net/minecraft/world/level/storage/loot/functions/ExplorationMapFunction$Serializer/m_210660_ (Lcom/google/gson/JsonObject;)Lnet/minecraft/tags/TagKey; net/minecraft/world/level/storage/loot/functions/ExplorationMapFunction$Serializer/readStructure (Lcom/google/gson/JsonObject;)Lnet/minecraft/tags/TagKey; +MD: net/minecraft/world/level/storage/loot/functions/ExplorationMapFunction$Serializer/m_6170_ (Lcom/google/gson/JsonObject;Lnet/minecraft/world/level/storage/loot/functions/LootItemConditionalFunction;Lcom/google/gson/JsonSerializationContext;)V net/minecraft/world/level/storage/loot/functions/ExplorationMapFunction$Serializer/serialize (Lcom/google/gson/JsonObject;Lnet/minecraft/world/level/storage/loot/functions/LootItemConditionalFunction;Lcom/google/gson/JsonSerializationContext;)V +MD: net/minecraft/world/level/storage/loot/functions/ExplorationMapFunction$Serializer/m_6170_ (Lcom/google/gson/JsonObject;Ljava/lang/Object;Lcom/google/gson/JsonSerializationContext;)V net/minecraft/world/level/storage/loot/functions/ExplorationMapFunction$Serializer/serialize (Lcom/google/gson/JsonObject;Ljava/lang/Object;Lcom/google/gson/JsonSerializationContext;)V +MD: net/minecraft/world/level/storage/loot/functions/ExplorationMapFunction$Serializer/m_6170_ (Lcom/google/gson/JsonObject;Lnet/minecraft/world/level/storage/loot/functions/ExplorationMapFunction;Lcom/google/gson/JsonSerializationContext;)V net/minecraft/world/level/storage/loot/functions/ExplorationMapFunction$Serializer/serialize (Lcom/google/gson/JsonObject;Lnet/minecraft/world/level/storage/loot/functions/ExplorationMapFunction;Lcom/google/gson/JsonSerializationContext;)V +MD: net/minecraft/world/level/storage/loot/functions/ExplorationMapFunction$Serializer/m_6821_ (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;[Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;)Lnet/minecraft/world/level/storage/loot/functions/LootItemConditionalFunction; net/minecraft/world/level/storage/loot/functions/ExplorationMapFunction$Serializer/deserialize (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;[Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;)Lnet/minecraft/world/level/storage/loot/functions/LootItemConditionalFunction; +MD: net/minecraft/world/level/storage/loot/functions/ExplorationMapFunction$Serializer/m_6821_ (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;[Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;)Lnet/minecraft/world/level/storage/loot/functions/ExplorationMapFunction; net/minecraft/world/level/storage/loot/functions/ExplorationMapFunction$Serializer/deserialize (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;[Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;)Lnet/minecraft/world/level/storage/loot/functions/ExplorationMapFunction; +MD: net/minecraft/world/level/storage/loot/functions/FillPlayerHead/ ([Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;Lnet/minecraft/world/level/storage/loot/LootContext$EntityTarget;)V net/minecraft/world/level/storage/loot/functions/FillPlayerHead/ ([Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;Lnet/minecraft/world/level/storage/loot/LootContext$EntityTarget;)V +MD: net/minecraft/world/level/storage/loot/functions/FillPlayerHead/m_165207_ (Lnet/minecraft/world/level/storage/loot/LootContext$EntityTarget;)Lnet/minecraft/world/level/storage/loot/functions/LootItemConditionalFunction$Builder; net/minecraft/world/level/storage/loot/functions/FillPlayerHead/fillPlayerHead (Lnet/minecraft/world/level/storage/loot/LootContext$EntityTarget;)Lnet/minecraft/world/level/storage/loot/functions/LootItemConditionalFunction$Builder; +MD: net/minecraft/world/level/storage/loot/functions/FillPlayerHead/m_165209_ (Lnet/minecraft/world/level/storage/loot/LootContext$EntityTarget;[Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;)Lnet/minecraft/world/level/storage/loot/functions/LootItemFunction; net/minecraft/world/level/storage/loot/functions/FillPlayerHead/lambda$fillPlayerHead$0 (Lnet/minecraft/world/level/storage/loot/LootContext$EntityTarget;[Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;)Lnet/minecraft/world/level/storage/loot/functions/LootItemFunction; +MD: net/minecraft/world/level/storage/loot/functions/FillPlayerHead/m_6231_ ()Ljava/util/Set; net/minecraft/world/level/storage/loot/functions/FillPlayerHead/getReferencedContextParams ()Ljava/util/Set; +MD: net/minecraft/world/level/storage/loot/functions/FillPlayerHead/m_7162_ ()Lnet/minecraft/world/level/storage/loot/functions/LootItemFunctionType; net/minecraft/world/level/storage/loot/functions/FillPlayerHead/getType ()Lnet/minecraft/world/level/storage/loot/functions/LootItemFunctionType; +MD: net/minecraft/world/level/storage/loot/functions/FillPlayerHead/m_7372_ (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/level/storage/loot/LootContext;)Lnet/minecraft/world/item/ItemStack; net/minecraft/world/level/storage/loot/functions/FillPlayerHead/run (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/level/storage/loot/LootContext;)Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/level/storage/loot/functions/FillPlayerHead$Serializer/ ()V net/minecraft/world/level/storage/loot/functions/FillPlayerHead$Serializer/ ()V +MD: net/minecraft/world/level/storage/loot/functions/FillPlayerHead$Serializer/m_6170_ (Lcom/google/gson/JsonObject;Lnet/minecraft/world/level/storage/loot/functions/LootItemConditionalFunction;Lcom/google/gson/JsonSerializationContext;)V net/minecraft/world/level/storage/loot/functions/FillPlayerHead$Serializer/serialize (Lcom/google/gson/JsonObject;Lnet/minecraft/world/level/storage/loot/functions/LootItemConditionalFunction;Lcom/google/gson/JsonSerializationContext;)V +MD: net/minecraft/world/level/storage/loot/functions/FillPlayerHead$Serializer/m_6170_ (Lcom/google/gson/JsonObject;Lnet/minecraft/world/level/storage/loot/functions/FillPlayerHead;Lcom/google/gson/JsonSerializationContext;)V net/minecraft/world/level/storage/loot/functions/FillPlayerHead$Serializer/serialize (Lcom/google/gson/JsonObject;Lnet/minecraft/world/level/storage/loot/functions/FillPlayerHead;Lcom/google/gson/JsonSerializationContext;)V +MD: net/minecraft/world/level/storage/loot/functions/FillPlayerHead$Serializer/m_6170_ (Lcom/google/gson/JsonObject;Ljava/lang/Object;Lcom/google/gson/JsonSerializationContext;)V net/minecraft/world/level/storage/loot/functions/FillPlayerHead$Serializer/serialize (Lcom/google/gson/JsonObject;Ljava/lang/Object;Lcom/google/gson/JsonSerializationContext;)V +MD: net/minecraft/world/level/storage/loot/functions/FillPlayerHead$Serializer/m_6821_ (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;[Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;)Lnet/minecraft/world/level/storage/loot/functions/LootItemConditionalFunction; net/minecraft/world/level/storage/loot/functions/FillPlayerHead$Serializer/deserialize (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;[Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;)Lnet/minecraft/world/level/storage/loot/functions/LootItemConditionalFunction; +MD: net/minecraft/world/level/storage/loot/functions/FillPlayerHead$Serializer/m_6821_ (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;[Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;)Lnet/minecraft/world/level/storage/loot/functions/FillPlayerHead; net/minecraft/world/level/storage/loot/functions/FillPlayerHead$Serializer/deserialize (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;[Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;)Lnet/minecraft/world/level/storage/loot/functions/FillPlayerHead; +MD: net/minecraft/world/level/storage/loot/functions/FunctionReference/ ()V net/minecraft/world/level/storage/loot/functions/FunctionReference/ ()V +MD: net/minecraft/world/level/storage/loot/functions/FunctionReference/ ([Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;Lnet/minecraft/resources/ResourceLocation;)V net/minecraft/world/level/storage/loot/functions/FunctionReference/ ([Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;Lnet/minecraft/resources/ResourceLocation;)V +MD: net/minecraft/world/level/storage/loot/functions/FunctionReference/m_278647_ (Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/world/level/storage/loot/functions/LootItemConditionalFunction$Builder; net/minecraft/world/level/storage/loot/functions/FunctionReference/functionReference (Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/world/level/storage/loot/functions/LootItemConditionalFunction$Builder; +MD: net/minecraft/world/level/storage/loot/functions/FunctionReference/m_278670_ (Lnet/minecraft/resources/ResourceLocation;[Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;)Lnet/minecraft/world/level/storage/loot/functions/LootItemFunction; net/minecraft/world/level/storage/loot/functions/FunctionReference/lambda$functionReference$2 (Lnet/minecraft/resources/ResourceLocation;[Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;)Lnet/minecraft/world/level/storage/loot/functions/LootItemFunction; +MD: net/minecraft/world/level/storage/loot/functions/FunctionReference/m_278678_ (Lnet/minecraft/world/level/storage/loot/ValidationContext;Lnet/minecraft/world/level/storage/loot/LootDataId;Lnet/minecraft/world/level/storage/loot/functions/LootItemFunction;)V net/minecraft/world/level/storage/loot/functions/FunctionReference/lambda$validate$0 (Lnet/minecraft/world/level/storage/loot/ValidationContext;Lnet/minecraft/world/level/storage/loot/LootDataId;Lnet/minecraft/world/level/storage/loot/functions/LootItemFunction;)V +MD: net/minecraft/world/level/storage/loot/functions/FunctionReference/m_278708_ (Lnet/minecraft/world/level/storage/loot/ValidationContext;)V net/minecraft/world/level/storage/loot/functions/FunctionReference/lambda$validate$1 (Lnet/minecraft/world/level/storage/loot/ValidationContext;)V +MD: net/minecraft/world/level/storage/loot/functions/FunctionReference/m_6169_ (Lnet/minecraft/world/level/storage/loot/ValidationContext;)V net/minecraft/world/level/storage/loot/functions/FunctionReference/validate (Lnet/minecraft/world/level/storage/loot/ValidationContext;)V +MD: net/minecraft/world/level/storage/loot/functions/FunctionReference/m_7162_ ()Lnet/minecraft/world/level/storage/loot/functions/LootItemFunctionType; net/minecraft/world/level/storage/loot/functions/FunctionReference/getType ()Lnet/minecraft/world/level/storage/loot/functions/LootItemFunctionType; +MD: net/minecraft/world/level/storage/loot/functions/FunctionReference/m_7372_ (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/level/storage/loot/LootContext;)Lnet/minecraft/world/item/ItemStack; net/minecraft/world/level/storage/loot/functions/FunctionReference/run (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/level/storage/loot/LootContext;)Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/level/storage/loot/functions/FunctionReference$Serializer/ ()V net/minecraft/world/level/storage/loot/functions/FunctionReference$Serializer/ ()V +MD: net/minecraft/world/level/storage/loot/functions/FunctionReference$Serializer/m_6170_ (Lcom/google/gson/JsonObject;Lnet/minecraft/world/level/storage/loot/functions/LootItemConditionalFunction;Lcom/google/gson/JsonSerializationContext;)V net/minecraft/world/level/storage/loot/functions/FunctionReference$Serializer/serialize (Lcom/google/gson/JsonObject;Lnet/minecraft/world/level/storage/loot/functions/LootItemConditionalFunction;Lcom/google/gson/JsonSerializationContext;)V +MD: net/minecraft/world/level/storage/loot/functions/FunctionReference$Serializer/m_6170_ (Lcom/google/gson/JsonObject;Ljava/lang/Object;Lcom/google/gson/JsonSerializationContext;)V net/minecraft/world/level/storage/loot/functions/FunctionReference$Serializer/serialize (Lcom/google/gson/JsonObject;Ljava/lang/Object;Lcom/google/gson/JsonSerializationContext;)V +MD: net/minecraft/world/level/storage/loot/functions/FunctionReference$Serializer/m_6170_ (Lcom/google/gson/JsonObject;Lnet/minecraft/world/level/storage/loot/functions/FunctionReference;Lcom/google/gson/JsonSerializationContext;)V net/minecraft/world/level/storage/loot/functions/FunctionReference$Serializer/serialize (Lcom/google/gson/JsonObject;Lnet/minecraft/world/level/storage/loot/functions/FunctionReference;Lcom/google/gson/JsonSerializationContext;)V +MD: net/minecraft/world/level/storage/loot/functions/FunctionReference$Serializer/m_6821_ (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;[Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;)Lnet/minecraft/world/level/storage/loot/functions/FunctionReference; net/minecraft/world/level/storage/loot/functions/FunctionReference$Serializer/deserialize (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;[Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;)Lnet/minecraft/world/level/storage/loot/functions/FunctionReference; +MD: net/minecraft/world/level/storage/loot/functions/FunctionReference$Serializer/m_6821_ (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;[Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;)Lnet/minecraft/world/level/storage/loot/functions/LootItemConditionalFunction; net/minecraft/world/level/storage/loot/functions/FunctionReference$Serializer/deserialize (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;[Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;)Lnet/minecraft/world/level/storage/loot/functions/LootItemConditionalFunction; +MD: net/minecraft/world/level/storage/loot/functions/FunctionUserBuilder/m_230984_ (Ljava/lang/Iterable;Ljava/util/function/Function;)Lnet/minecraft/world/level/storage/loot/functions/FunctionUserBuilder; net/minecraft/world/level/storage/loot/functions/FunctionUserBuilder/apply (Ljava/lang/Iterable;Ljava/util/function/Function;)Lnet/minecraft/world/level/storage/loot/functions/FunctionUserBuilder; +MD: net/minecraft/world/level/storage/loot/functions/FunctionUserBuilder/m_230987_ ([Ljava/lang/Object;Ljava/util/function/Function;)Lnet/minecraft/world/level/storage/loot/functions/FunctionUserBuilder; net/minecraft/world/level/storage/loot/functions/FunctionUserBuilder/apply ([Ljava/lang/Object;Ljava/util/function/Function;)Lnet/minecraft/world/level/storage/loot/functions/FunctionUserBuilder; +MD: net/minecraft/world/level/storage/loot/functions/FunctionUserBuilder/m_79073_ ()Lnet/minecraft/world/level/storage/loot/functions/FunctionUserBuilder; net/minecraft/world/level/storage/loot/functions/FunctionUserBuilder/unwrap ()Lnet/minecraft/world/level/storage/loot/functions/FunctionUserBuilder; +MD: net/minecraft/world/level/storage/loot/functions/FunctionUserBuilder/m_79078_ (Lnet/minecraft/world/level/storage/loot/functions/LootItemFunction$Builder;)Lnet/minecraft/world/level/storage/loot/functions/FunctionUserBuilder; net/minecraft/world/level/storage/loot/functions/FunctionUserBuilder/apply (Lnet/minecraft/world/level/storage/loot/functions/LootItemFunction$Builder;)Lnet/minecraft/world/level/storage/loot/functions/FunctionUserBuilder; +MD: net/minecraft/world/level/storage/loot/functions/LimitCount/ ([Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;Lnet/minecraft/world/level/storage/loot/IntRange;)V net/minecraft/world/level/storage/loot/functions/LimitCount/ ([Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;Lnet/minecraft/world/level/storage/loot/IntRange;)V +MD: net/minecraft/world/level/storage/loot/functions/LimitCount/m_165215_ (Lnet/minecraft/world/level/storage/loot/IntRange;)Lnet/minecraft/world/level/storage/loot/functions/LootItemConditionalFunction$Builder; net/minecraft/world/level/storage/loot/functions/LimitCount/limitCount (Lnet/minecraft/world/level/storage/loot/IntRange;)Lnet/minecraft/world/level/storage/loot/functions/LootItemConditionalFunction$Builder; +MD: net/minecraft/world/level/storage/loot/functions/LimitCount/m_165217_ (Lnet/minecraft/world/level/storage/loot/IntRange;[Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;)Lnet/minecraft/world/level/storage/loot/functions/LootItemFunction; net/minecraft/world/level/storage/loot/functions/LimitCount/lambda$limitCount$0 (Lnet/minecraft/world/level/storage/loot/IntRange;[Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;)Lnet/minecraft/world/level/storage/loot/functions/LootItemFunction; +MD: net/minecraft/world/level/storage/loot/functions/LimitCount/m_6231_ ()Ljava/util/Set; net/minecraft/world/level/storage/loot/functions/LimitCount/getReferencedContextParams ()Ljava/util/Set; +MD: net/minecraft/world/level/storage/loot/functions/LimitCount/m_7162_ ()Lnet/minecraft/world/level/storage/loot/functions/LootItemFunctionType; net/minecraft/world/level/storage/loot/functions/LimitCount/getType ()Lnet/minecraft/world/level/storage/loot/functions/LootItemFunctionType; +MD: net/minecraft/world/level/storage/loot/functions/LimitCount/m_7372_ (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/level/storage/loot/LootContext;)Lnet/minecraft/world/item/ItemStack; net/minecraft/world/level/storage/loot/functions/LimitCount/run (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/level/storage/loot/LootContext;)Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/level/storage/loot/functions/LimitCount$Serializer/ ()V net/minecraft/world/level/storage/loot/functions/LimitCount$Serializer/ ()V +MD: net/minecraft/world/level/storage/loot/functions/LimitCount$Serializer/m_6170_ (Lcom/google/gson/JsonObject;Lnet/minecraft/world/level/storage/loot/functions/LootItemConditionalFunction;Lcom/google/gson/JsonSerializationContext;)V net/minecraft/world/level/storage/loot/functions/LimitCount$Serializer/serialize (Lcom/google/gson/JsonObject;Lnet/minecraft/world/level/storage/loot/functions/LootItemConditionalFunction;Lcom/google/gson/JsonSerializationContext;)V +MD: net/minecraft/world/level/storage/loot/functions/LimitCount$Serializer/m_6170_ (Lcom/google/gson/JsonObject;Ljava/lang/Object;Lcom/google/gson/JsonSerializationContext;)V net/minecraft/world/level/storage/loot/functions/LimitCount$Serializer/serialize (Lcom/google/gson/JsonObject;Ljava/lang/Object;Lcom/google/gson/JsonSerializationContext;)V +MD: net/minecraft/world/level/storage/loot/functions/LimitCount$Serializer/m_6170_ (Lcom/google/gson/JsonObject;Lnet/minecraft/world/level/storage/loot/functions/LimitCount;Lcom/google/gson/JsonSerializationContext;)V net/minecraft/world/level/storage/loot/functions/LimitCount$Serializer/serialize (Lcom/google/gson/JsonObject;Lnet/minecraft/world/level/storage/loot/functions/LimitCount;Lcom/google/gson/JsonSerializationContext;)V +MD: net/minecraft/world/level/storage/loot/functions/LimitCount$Serializer/m_6821_ (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;[Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;)Lnet/minecraft/world/level/storage/loot/functions/LootItemConditionalFunction; net/minecraft/world/level/storage/loot/functions/LimitCount$Serializer/deserialize (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;[Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;)Lnet/minecraft/world/level/storage/loot/functions/LootItemConditionalFunction; +MD: net/minecraft/world/level/storage/loot/functions/LimitCount$Serializer/m_6821_ (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;[Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;)Lnet/minecraft/world/level/storage/loot/functions/LimitCount; net/minecraft/world/level/storage/loot/functions/LimitCount$Serializer/deserialize (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;[Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;)Lnet/minecraft/world/level/storage/loot/functions/LimitCount; +MD: net/minecraft/world/level/storage/loot/functions/LootItemConditionalFunction/ ([Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;)V net/minecraft/world/level/storage/loot/functions/LootItemConditionalFunction/ ([Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;)V +MD: net/minecraft/world/level/storage/loot/functions/LootItemConditionalFunction/apply (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/level/storage/loot/LootContext;)Lnet/minecraft/world/item/ItemStack; net/minecraft/world/level/storage/loot/functions/LootItemConditionalFunction/apply (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/level/storage/loot/LootContext;)Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/level/storage/loot/functions/LootItemConditionalFunction/apply (Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object; net/minecraft/world/level/storage/loot/functions/LootItemConditionalFunction/apply (Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object; +MD: net/minecraft/world/level/storage/loot/functions/LootItemConditionalFunction/m_6169_ (Lnet/minecraft/world/level/storage/loot/ValidationContext;)V net/minecraft/world/level/storage/loot/functions/LootItemConditionalFunction/validate (Lnet/minecraft/world/level/storage/loot/ValidationContext;)V +MD: net/minecraft/world/level/storage/loot/functions/LootItemConditionalFunction/m_7372_ (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/level/storage/loot/LootContext;)Lnet/minecraft/world/item/ItemStack; net/minecraft/world/level/storage/loot/functions/LootItemConditionalFunction/run (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/level/storage/loot/LootContext;)Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/level/storage/loot/functions/LootItemConditionalFunction/m_80683_ (Ljava/util/function/Function;)Lnet/minecraft/world/level/storage/loot/functions/LootItemConditionalFunction$Builder; net/minecraft/world/level/storage/loot/functions/LootItemConditionalFunction/simpleBuilder (Ljava/util/function/Function;)Lnet/minecraft/world/level/storage/loot/functions/LootItemConditionalFunction$Builder; +MD: net/minecraft/world/level/storage/loot/functions/LootItemConditionalFunction$Builder/ ()V net/minecraft/world/level/storage/loot/functions/LootItemConditionalFunction$Builder/ ()V +MD: net/minecraft/world/level/storage/loot/functions/LootItemConditionalFunction$Builder/m_6477_ ()Lnet/minecraft/world/level/storage/loot/functions/LootItemConditionalFunction$Builder; net/minecraft/world/level/storage/loot/functions/LootItemConditionalFunction$Builder/getThis ()Lnet/minecraft/world/level/storage/loot/functions/LootItemConditionalFunction$Builder; +MD: net/minecraft/world/level/storage/loot/functions/LootItemConditionalFunction$Builder/m_79073_ ()Lnet/minecraft/world/level/storage/loot/functions/LootItemConditionalFunction$Builder; net/minecraft/world/level/storage/loot/functions/LootItemConditionalFunction$Builder/unwrap ()Lnet/minecraft/world/level/storage/loot/functions/LootItemConditionalFunction$Builder; +MD: net/minecraft/world/level/storage/loot/functions/LootItemConditionalFunction$Builder/m_79073_ ()Lnet/minecraft/world/level/storage/loot/predicates/ConditionUserBuilder; net/minecraft/world/level/storage/loot/functions/LootItemConditionalFunction$Builder/unwrap ()Lnet/minecraft/world/level/storage/loot/predicates/ConditionUserBuilder; +MD: net/minecraft/world/level/storage/loot/functions/LootItemConditionalFunction$Builder/m_79080_ (Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition$Builder;)Lnet/minecraft/world/level/storage/loot/predicates/ConditionUserBuilder; net/minecraft/world/level/storage/loot/functions/LootItemConditionalFunction$Builder/when (Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition$Builder;)Lnet/minecraft/world/level/storage/loot/predicates/ConditionUserBuilder; +MD: net/minecraft/world/level/storage/loot/functions/LootItemConditionalFunction$Builder/m_79080_ (Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition$Builder;)Lnet/minecraft/world/level/storage/loot/functions/LootItemConditionalFunction$Builder; net/minecraft/world/level/storage/loot/functions/LootItemConditionalFunction$Builder/when (Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition$Builder;)Lnet/minecraft/world/level/storage/loot/functions/LootItemConditionalFunction$Builder; +MD: net/minecraft/world/level/storage/loot/functions/LootItemConditionalFunction$Builder/m_80699_ ()[Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition; net/minecraft/world/level/storage/loot/functions/LootItemConditionalFunction$Builder/getConditions ()[Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition; +MD: net/minecraft/world/level/storage/loot/functions/LootItemConditionalFunction$DummyBuilder/ (Ljava/util/function/Function;)V net/minecraft/world/level/storage/loot/functions/LootItemConditionalFunction$DummyBuilder/ (Ljava/util/function/Function;)V +MD: net/minecraft/world/level/storage/loot/functions/LootItemConditionalFunction$DummyBuilder/m_6477_ ()Lnet/minecraft/world/level/storage/loot/functions/LootItemConditionalFunction$DummyBuilder; net/minecraft/world/level/storage/loot/functions/LootItemConditionalFunction$DummyBuilder/getThis ()Lnet/minecraft/world/level/storage/loot/functions/LootItemConditionalFunction$DummyBuilder; +MD: net/minecraft/world/level/storage/loot/functions/LootItemConditionalFunction$DummyBuilder/m_6477_ ()Lnet/minecraft/world/level/storage/loot/functions/LootItemConditionalFunction$Builder; net/minecraft/world/level/storage/loot/functions/LootItemConditionalFunction$DummyBuilder/getThis ()Lnet/minecraft/world/level/storage/loot/functions/LootItemConditionalFunction$Builder; +MD: net/minecraft/world/level/storage/loot/functions/LootItemConditionalFunction$DummyBuilder/m_7453_ ()Lnet/minecraft/world/level/storage/loot/functions/LootItemFunction; net/minecraft/world/level/storage/loot/functions/LootItemConditionalFunction$DummyBuilder/build ()Lnet/minecraft/world/level/storage/loot/functions/LootItemFunction; +MD: net/minecraft/world/level/storage/loot/functions/LootItemConditionalFunction$Serializer/ ()V net/minecraft/world/level/storage/loot/functions/LootItemConditionalFunction$Serializer/ ()V +MD: net/minecraft/world/level/storage/loot/functions/LootItemConditionalFunction$Serializer/m_6170_ (Lcom/google/gson/JsonObject;Lnet/minecraft/world/level/storage/loot/functions/LootItemConditionalFunction;Lcom/google/gson/JsonSerializationContext;)V net/minecraft/world/level/storage/loot/functions/LootItemConditionalFunction$Serializer/serialize (Lcom/google/gson/JsonObject;Lnet/minecraft/world/level/storage/loot/functions/LootItemConditionalFunction;Lcom/google/gson/JsonSerializationContext;)V +MD: net/minecraft/world/level/storage/loot/functions/LootItemConditionalFunction$Serializer/m_6170_ (Lcom/google/gson/JsonObject;Ljava/lang/Object;Lcom/google/gson/JsonSerializationContext;)V net/minecraft/world/level/storage/loot/functions/LootItemConditionalFunction$Serializer/serialize (Lcom/google/gson/JsonObject;Ljava/lang/Object;Lcom/google/gson/JsonSerializationContext;)V +MD: net/minecraft/world/level/storage/loot/functions/LootItemConditionalFunction$Serializer/m_6821_ (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;[Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;)Lnet/minecraft/world/level/storage/loot/functions/LootItemConditionalFunction; net/minecraft/world/level/storage/loot/functions/LootItemConditionalFunction$Serializer/deserialize (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;[Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;)Lnet/minecraft/world/level/storage/loot/functions/LootItemConditionalFunction; +MD: net/minecraft/world/level/storage/loot/functions/LootItemConditionalFunction$Serializer/m_7561_ (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;)Ljava/lang/Object; net/minecraft/world/level/storage/loot/functions/LootItemConditionalFunction$Serializer/deserialize (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;)Ljava/lang/Object; +MD: net/minecraft/world/level/storage/loot/functions/LootItemConditionalFunction$Serializer/m_7561_ (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;)Lnet/minecraft/world/level/storage/loot/functions/LootItemConditionalFunction; net/minecraft/world/level/storage/loot/functions/LootItemConditionalFunction$Serializer/deserialize (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;)Lnet/minecraft/world/level/storage/loot/functions/LootItemConditionalFunction; +MD: net/minecraft/world/level/storage/loot/functions/LootItemFunction/m_7162_ ()Lnet/minecraft/world/level/storage/loot/functions/LootItemFunctionType; net/minecraft/world/level/storage/loot/functions/LootItemFunction/getType ()Lnet/minecraft/world/level/storage/loot/functions/LootItemFunctionType; +MD: net/minecraft/world/level/storage/loot/functions/LootItemFunction/m_80724_ (Ljava/util/function/BiFunction;Ljava/util/function/Consumer;Lnet/minecraft/world/level/storage/loot/LootContext;)Ljava/util/function/Consumer; net/minecraft/world/level/storage/loot/functions/LootItemFunction/decorate (Ljava/util/function/BiFunction;Ljava/util/function/Consumer;Lnet/minecraft/world/level/storage/loot/LootContext;)Ljava/util/function/Consumer; +MD: net/minecraft/world/level/storage/loot/functions/LootItemFunction/m_80728_ (Ljava/util/function/Consumer;Ljava/util/function/BiFunction;Lnet/minecraft/world/level/storage/loot/LootContext;Lnet/minecraft/world/item/ItemStack;)V net/minecraft/world/level/storage/loot/functions/LootItemFunction/lambda$decorate$0 (Ljava/util/function/Consumer;Ljava/util/function/BiFunction;Lnet/minecraft/world/level/storage/loot/LootContext;Lnet/minecraft/world/item/ItemStack;)V +MD: net/minecraft/world/level/storage/loot/functions/LootItemFunction$Builder/m_7453_ ()Lnet/minecraft/world/level/storage/loot/functions/LootItemFunction; net/minecraft/world/level/storage/loot/functions/LootItemFunction$Builder/build ()Lnet/minecraft/world/level/storage/loot/functions/LootItemFunction; +MD: net/minecraft/world/level/storage/loot/functions/LootItemFunctionType/ (Lnet/minecraft/world/level/storage/loot/Serializer;)V net/minecraft/world/level/storage/loot/functions/LootItemFunctionType/ (Lnet/minecraft/world/level/storage/loot/Serializer;)V +MD: net/minecraft/world/level/storage/loot/functions/LootItemFunctions/ ()V net/minecraft/world/level/storage/loot/functions/LootItemFunctions/ ()V +MD: net/minecraft/world/level/storage/loot/functions/LootItemFunctions/ ()V net/minecraft/world/level/storage/loot/functions/LootItemFunctions/ ()V +MD: net/minecraft/world/level/storage/loot/functions/LootItemFunctions/m_80758_ ()Ljava/lang/Object; net/minecraft/world/level/storage/loot/functions/LootItemFunctions/createGsonAdapter ()Ljava/lang/Object; +MD: net/minecraft/world/level/storage/loot/functions/LootItemFunctions/m_80759_ (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/level/storage/loot/LootContext;)Lnet/minecraft/world/item/ItemStack; net/minecraft/world/level/storage/loot/functions/LootItemFunctions/lambda$static$0 (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/level/storage/loot/LootContext;)Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/level/storage/loot/functions/LootItemFunctions/m_80762_ (Ljava/lang/String;Lnet/minecraft/world/level/storage/loot/Serializer;)Lnet/minecraft/world/level/storage/loot/functions/LootItemFunctionType; net/minecraft/world/level/storage/loot/functions/LootItemFunctions/register (Ljava/lang/String;Lnet/minecraft/world/level/storage/loot/Serializer;)Lnet/minecraft/world/level/storage/loot/functions/LootItemFunctionType; +MD: net/minecraft/world/level/storage/loot/functions/LootItemFunctions/m_80765_ (Ljava/util/function/BiFunction;Ljava/util/function/BiFunction;Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/level/storage/loot/LootContext;)Lnet/minecraft/world/item/ItemStack; net/minecraft/world/level/storage/loot/functions/LootItemFunctions/lambda$compose$1 (Ljava/util/function/BiFunction;Ljava/util/function/BiFunction;Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/level/storage/loot/LootContext;)Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/level/storage/loot/functions/LootItemFunctions/m_80770_ ([Ljava/util/function/BiFunction;)Ljava/util/function/BiFunction; net/minecraft/world/level/storage/loot/functions/LootItemFunctions/compose ([Ljava/util/function/BiFunction;)Ljava/util/function/BiFunction; +MD: net/minecraft/world/level/storage/loot/functions/LootItemFunctions/m_80772_ ([Ljava/util/function/BiFunction;Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/level/storage/loot/LootContext;)Lnet/minecraft/world/item/ItemStack; net/minecraft/world/level/storage/loot/functions/LootItemFunctions/lambda$compose$2 ([Ljava/util/function/BiFunction;Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/level/storage/loot/LootContext;)Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/level/storage/loot/functions/LootingEnchantFunction/ ([Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;Lnet/minecraft/world/level/storage/loot/providers/number/NumberProvider;I)V net/minecraft/world/level/storage/loot/functions/LootingEnchantFunction/ ([Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;Lnet/minecraft/world/level/storage/loot/providers/number/NumberProvider;I)V +MD: net/minecraft/world/level/storage/loot/functions/LootingEnchantFunction/m_165229_ (Lnet/minecraft/world/level/storage/loot/providers/number/NumberProvider;)Lnet/minecraft/world/level/storage/loot/functions/LootingEnchantFunction$Builder; net/minecraft/world/level/storage/loot/functions/LootingEnchantFunction/lootingMultiplier (Lnet/minecraft/world/level/storage/loot/providers/number/NumberProvider;)Lnet/minecraft/world/level/storage/loot/functions/LootingEnchantFunction$Builder; +MD: net/minecraft/world/level/storage/loot/functions/LootingEnchantFunction/m_6231_ ()Ljava/util/Set; net/minecraft/world/level/storage/loot/functions/LootingEnchantFunction/getReferencedContextParams ()Ljava/util/Set; +MD: net/minecraft/world/level/storage/loot/functions/LootingEnchantFunction/m_7162_ ()Lnet/minecraft/world/level/storage/loot/functions/LootItemFunctionType; net/minecraft/world/level/storage/loot/functions/LootingEnchantFunction/getType ()Lnet/minecraft/world/level/storage/loot/functions/LootItemFunctionType; +MD: net/minecraft/world/level/storage/loot/functions/LootingEnchantFunction/m_7372_ (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/level/storage/loot/LootContext;)Lnet/minecraft/world/item/ItemStack; net/minecraft/world/level/storage/loot/functions/LootingEnchantFunction/run (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/level/storage/loot/LootContext;)Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/level/storage/loot/functions/LootingEnchantFunction/m_80798_ ()Z net/minecraft/world/level/storage/loot/functions/LootingEnchantFunction/hasLimit ()Z +MD: net/minecraft/world/level/storage/loot/functions/LootingEnchantFunction$Builder/ (Lnet/minecraft/world/level/storage/loot/providers/number/NumberProvider;)V net/minecraft/world/level/storage/loot/functions/LootingEnchantFunction$Builder/ (Lnet/minecraft/world/level/storage/loot/providers/number/NumberProvider;)V +MD: net/minecraft/world/level/storage/loot/functions/LootingEnchantFunction$Builder/m_6477_ ()Lnet/minecraft/world/level/storage/loot/functions/LootingEnchantFunction$Builder; net/minecraft/world/level/storage/loot/functions/LootingEnchantFunction$Builder/getThis ()Lnet/minecraft/world/level/storage/loot/functions/LootingEnchantFunction$Builder; +MD: net/minecraft/world/level/storage/loot/functions/LootingEnchantFunction$Builder/m_6477_ ()Lnet/minecraft/world/level/storage/loot/functions/LootItemConditionalFunction$Builder; net/minecraft/world/level/storage/loot/functions/LootingEnchantFunction$Builder/getThis ()Lnet/minecraft/world/level/storage/loot/functions/LootItemConditionalFunction$Builder; +MD: net/minecraft/world/level/storage/loot/functions/LootingEnchantFunction$Builder/m_7453_ ()Lnet/minecraft/world/level/storage/loot/functions/LootItemFunction; net/minecraft/world/level/storage/loot/functions/LootingEnchantFunction$Builder/build ()Lnet/minecraft/world/level/storage/loot/functions/LootItemFunction; +MD: net/minecraft/world/level/storage/loot/functions/LootingEnchantFunction$Builder/m_80806_ (I)Lnet/minecraft/world/level/storage/loot/functions/LootingEnchantFunction$Builder; net/minecraft/world/level/storage/loot/functions/LootingEnchantFunction$Builder/setLimit (I)Lnet/minecraft/world/level/storage/loot/functions/LootingEnchantFunction$Builder; +MD: net/minecraft/world/level/storage/loot/functions/LootingEnchantFunction$Serializer/ ()V net/minecraft/world/level/storage/loot/functions/LootingEnchantFunction$Serializer/ ()V +MD: net/minecraft/world/level/storage/loot/functions/LootingEnchantFunction$Serializer/m_6170_ (Lcom/google/gson/JsonObject;Lnet/minecraft/world/level/storage/loot/functions/LootItemConditionalFunction;Lcom/google/gson/JsonSerializationContext;)V net/minecraft/world/level/storage/loot/functions/LootingEnchantFunction$Serializer/serialize (Lcom/google/gson/JsonObject;Lnet/minecraft/world/level/storage/loot/functions/LootItemConditionalFunction;Lcom/google/gson/JsonSerializationContext;)V +MD: net/minecraft/world/level/storage/loot/functions/LootingEnchantFunction$Serializer/m_6170_ (Lcom/google/gson/JsonObject;Ljava/lang/Object;Lcom/google/gson/JsonSerializationContext;)V net/minecraft/world/level/storage/loot/functions/LootingEnchantFunction$Serializer/serialize (Lcom/google/gson/JsonObject;Ljava/lang/Object;Lcom/google/gson/JsonSerializationContext;)V +MD: net/minecraft/world/level/storage/loot/functions/LootingEnchantFunction$Serializer/m_6170_ (Lcom/google/gson/JsonObject;Lnet/minecraft/world/level/storage/loot/functions/LootingEnchantFunction;Lcom/google/gson/JsonSerializationContext;)V net/minecraft/world/level/storage/loot/functions/LootingEnchantFunction$Serializer/serialize (Lcom/google/gson/JsonObject;Lnet/minecraft/world/level/storage/loot/functions/LootingEnchantFunction;Lcom/google/gson/JsonSerializationContext;)V +MD: net/minecraft/world/level/storage/loot/functions/LootingEnchantFunction$Serializer/m_6821_ (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;[Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;)Lnet/minecraft/world/level/storage/loot/functions/LootItemConditionalFunction; net/minecraft/world/level/storage/loot/functions/LootingEnchantFunction$Serializer/deserialize (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;[Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;)Lnet/minecraft/world/level/storage/loot/functions/LootItemConditionalFunction; +MD: net/minecraft/world/level/storage/loot/functions/LootingEnchantFunction$Serializer/m_6821_ (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;[Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;)Lnet/minecraft/world/level/storage/loot/functions/LootingEnchantFunction; net/minecraft/world/level/storage/loot/functions/LootingEnchantFunction$Serializer/deserialize (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;[Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;)Lnet/minecraft/world/level/storage/loot/functions/LootingEnchantFunction; +MD: net/minecraft/world/level/storage/loot/functions/SetAttributesFunction/ ([Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;Ljava/util/List;)V net/minecraft/world/level/storage/loot/functions/SetAttributesFunction/ ([Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;Ljava/util/List;)V +MD: net/minecraft/world/level/storage/loot/functions/SetAttributesFunction/m_165235_ (Ljava/lang/String;Lnet/minecraft/world/entity/ai/attributes/Attribute;Lnet/minecraft/world/entity/ai/attributes/AttributeModifier$Operation;Lnet/minecraft/world/level/storage/loot/providers/number/NumberProvider;)Lnet/minecraft/world/level/storage/loot/functions/SetAttributesFunction$ModifierBuilder; net/minecraft/world/level/storage/loot/functions/SetAttributesFunction/modifier (Ljava/lang/String;Lnet/minecraft/world/entity/ai/attributes/Attribute;Lnet/minecraft/world/entity/ai/attributes/AttributeModifier$Operation;Lnet/minecraft/world/level/storage/loot/providers/number/NumberProvider;)Lnet/minecraft/world/level/storage/loot/functions/SetAttributesFunction$ModifierBuilder; +MD: net/minecraft/world/level/storage/loot/functions/SetAttributesFunction/m_165241_ ()Lnet/minecraft/world/level/storage/loot/functions/SetAttributesFunction$Builder; net/minecraft/world/level/storage/loot/functions/SetAttributesFunction/setAttributes ()Lnet/minecraft/world/level/storage/loot/functions/SetAttributesFunction$Builder; +MD: net/minecraft/world/level/storage/loot/functions/SetAttributesFunction/m_278607_ (Lnet/minecraft/world/level/storage/loot/functions/SetAttributesFunction$Modifier;)Ljava/util/stream/Stream; net/minecraft/world/level/storage/loot/functions/SetAttributesFunction/lambda$getReferencedContextParams$0 (Lnet/minecraft/world/level/storage/loot/functions/SetAttributesFunction$Modifier;)Ljava/util/stream/Stream; +MD: net/minecraft/world/level/storage/loot/functions/SetAttributesFunction/m_6231_ ()Ljava/util/Set; net/minecraft/world/level/storage/loot/functions/SetAttributesFunction/getReferencedContextParams ()Ljava/util/Set; +MD: net/minecraft/world/level/storage/loot/functions/SetAttributesFunction/m_7162_ ()Lnet/minecraft/world/level/storage/loot/functions/LootItemFunctionType; net/minecraft/world/level/storage/loot/functions/SetAttributesFunction/getType ()Lnet/minecraft/world/level/storage/loot/functions/LootItemFunctionType; +MD: net/minecraft/world/level/storage/loot/functions/SetAttributesFunction/m_7372_ (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/level/storage/loot/LootContext;)Lnet/minecraft/world/item/ItemStack; net/minecraft/world/level/storage/loot/functions/SetAttributesFunction/run (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/level/storage/loot/LootContext;)Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/level/storage/loot/functions/SetAttributesFunction$1/ ()V net/minecraft/world/level/storage/loot/functions/SetAttributesFunction$1/ ()V +MD: net/minecraft/world/level/storage/loot/functions/SetAttributesFunction$Builder/ ()V net/minecraft/world/level/storage/loot/functions/SetAttributesFunction$Builder/ ()V +MD: net/minecraft/world/level/storage/loot/functions/SetAttributesFunction$Builder/m_165245_ (Lnet/minecraft/world/level/storage/loot/functions/SetAttributesFunction$ModifierBuilder;)Lnet/minecraft/world/level/storage/loot/functions/SetAttributesFunction$Builder; net/minecraft/world/level/storage/loot/functions/SetAttributesFunction$Builder/withModifier (Lnet/minecraft/world/level/storage/loot/functions/SetAttributesFunction$ModifierBuilder;)Lnet/minecraft/world/level/storage/loot/functions/SetAttributesFunction$Builder; +MD: net/minecraft/world/level/storage/loot/functions/SetAttributesFunction$Builder/m_6477_ ()Lnet/minecraft/world/level/storage/loot/functions/SetAttributesFunction$Builder; net/minecraft/world/level/storage/loot/functions/SetAttributesFunction$Builder/getThis ()Lnet/minecraft/world/level/storage/loot/functions/SetAttributesFunction$Builder; +MD: net/minecraft/world/level/storage/loot/functions/SetAttributesFunction$Builder/m_6477_ ()Lnet/minecraft/world/level/storage/loot/functions/LootItemConditionalFunction$Builder; net/minecraft/world/level/storage/loot/functions/SetAttributesFunction$Builder/getThis ()Lnet/minecraft/world/level/storage/loot/functions/LootItemConditionalFunction$Builder; +MD: net/minecraft/world/level/storage/loot/functions/SetAttributesFunction$Builder/m_7453_ ()Lnet/minecraft/world/level/storage/loot/functions/LootItemFunction; net/minecraft/world/level/storage/loot/functions/SetAttributesFunction$Builder/build ()Lnet/minecraft/world/level/storage/loot/functions/LootItemFunction; +MD: net/minecraft/world/level/storage/loot/functions/SetAttributesFunction$Modifier/ (Ljava/lang/String;Lnet/minecraft/world/entity/ai/attributes/Attribute;Lnet/minecraft/world/entity/ai/attributes/AttributeModifier$Operation;Lnet/minecraft/world/level/storage/loot/providers/number/NumberProvider;[Lnet/minecraft/world/entity/EquipmentSlot;Ljava/util/UUID;)V net/minecraft/world/level/storage/loot/functions/SetAttributesFunction$Modifier/ (Ljava/lang/String;Lnet/minecraft/world/entity/ai/attributes/Attribute;Lnet/minecraft/world/entity/ai/attributes/AttributeModifier$Operation;Lnet/minecraft/world/level/storage/loot/providers/number/NumberProvider;[Lnet/minecraft/world/entity/EquipmentSlot;Ljava/util/UUID;)V +MD: net/minecraft/world/level/storage/loot/functions/SetAttributesFunction$Modifier/m_80860_ (Lnet/minecraft/world/entity/ai/attributes/AttributeModifier$Operation;)Ljava/lang/String; net/minecraft/world/level/storage/loot/functions/SetAttributesFunction$Modifier/operationToString (Lnet/minecraft/world/entity/ai/attributes/AttributeModifier$Operation;)Ljava/lang/String; +MD: net/minecraft/world/level/storage/loot/functions/SetAttributesFunction$Modifier/m_80862_ (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;)Lnet/minecraft/world/level/storage/loot/functions/SetAttributesFunction$Modifier; net/minecraft/world/level/storage/loot/functions/SetAttributesFunction$Modifier/deserialize (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;)Lnet/minecraft/world/level/storage/loot/functions/SetAttributesFunction$Modifier; +MD: net/minecraft/world/level/storage/loot/functions/SetAttributesFunction$Modifier/m_80865_ (Lcom/google/gson/JsonSerializationContext;)Lcom/google/gson/JsonObject; net/minecraft/world/level/storage/loot/functions/SetAttributesFunction$Modifier/serialize (Lcom/google/gson/JsonSerializationContext;)Lcom/google/gson/JsonObject; +MD: net/minecraft/world/level/storage/loot/functions/SetAttributesFunction$Modifier/m_80869_ (Ljava/lang/String;)Lnet/minecraft/world/entity/ai/attributes/AttributeModifier$Operation; net/minecraft/world/level/storage/loot/functions/SetAttributesFunction$Modifier/operationFromString (Ljava/lang/String;)Lnet/minecraft/world/entity/ai/attributes/AttributeModifier$Operation; +MD: net/minecraft/world/level/storage/loot/functions/SetAttributesFunction$ModifierBuilder/ (Ljava/lang/String;Lnet/minecraft/world/entity/ai/attributes/Attribute;Lnet/minecraft/world/entity/ai/attributes/AttributeModifier$Operation;Lnet/minecraft/world/level/storage/loot/providers/number/NumberProvider;)V net/minecraft/world/level/storage/loot/functions/SetAttributesFunction$ModifierBuilder/ (Ljava/lang/String;Lnet/minecraft/world/entity/ai/attributes/Attribute;Lnet/minecraft/world/entity/ai/attributes/AttributeModifier$Operation;Lnet/minecraft/world/level/storage/loot/providers/number/NumberProvider;)V +MD: net/minecraft/world/level/storage/loot/functions/SetAttributesFunction$ModifierBuilder/m_165267_ ()Lnet/minecraft/world/level/storage/loot/functions/SetAttributesFunction$Modifier; net/minecraft/world/level/storage/loot/functions/SetAttributesFunction$ModifierBuilder/build ()Lnet/minecraft/world/level/storage/loot/functions/SetAttributesFunction$Modifier; +MD: net/minecraft/world/level/storage/loot/functions/SetAttributesFunction$ModifierBuilder/m_165268_ (Lnet/minecraft/world/entity/EquipmentSlot;)Lnet/minecraft/world/level/storage/loot/functions/SetAttributesFunction$ModifierBuilder; net/minecraft/world/level/storage/loot/functions/SetAttributesFunction$ModifierBuilder/forSlot (Lnet/minecraft/world/entity/EquipmentSlot;)Lnet/minecraft/world/level/storage/loot/functions/SetAttributesFunction$ModifierBuilder; +MD: net/minecraft/world/level/storage/loot/functions/SetAttributesFunction$ModifierBuilder/m_165270_ (Ljava/util/UUID;)Lnet/minecraft/world/level/storage/loot/functions/SetAttributesFunction$ModifierBuilder; net/minecraft/world/level/storage/loot/functions/SetAttributesFunction$ModifierBuilder/withUuid (Ljava/util/UUID;)Lnet/minecraft/world/level/storage/loot/functions/SetAttributesFunction$ModifierBuilder; +MD: net/minecraft/world/level/storage/loot/functions/SetAttributesFunction$Serializer/ ()V net/minecraft/world/level/storage/loot/functions/SetAttributesFunction$Serializer/ ()V +MD: net/minecraft/world/level/storage/loot/functions/SetAttributesFunction$Serializer/m_6170_ (Lcom/google/gson/JsonObject;Lnet/minecraft/world/level/storage/loot/functions/LootItemConditionalFunction;Lcom/google/gson/JsonSerializationContext;)V net/minecraft/world/level/storage/loot/functions/SetAttributesFunction$Serializer/serialize (Lcom/google/gson/JsonObject;Lnet/minecraft/world/level/storage/loot/functions/LootItemConditionalFunction;Lcom/google/gson/JsonSerializationContext;)V +MD: net/minecraft/world/level/storage/loot/functions/SetAttributesFunction$Serializer/m_6170_ (Lcom/google/gson/JsonObject;Lnet/minecraft/world/level/storage/loot/functions/SetAttributesFunction;Lcom/google/gson/JsonSerializationContext;)V net/minecraft/world/level/storage/loot/functions/SetAttributesFunction$Serializer/serialize (Lcom/google/gson/JsonObject;Lnet/minecraft/world/level/storage/loot/functions/SetAttributesFunction;Lcom/google/gson/JsonSerializationContext;)V +MD: net/minecraft/world/level/storage/loot/functions/SetAttributesFunction$Serializer/m_6170_ (Lcom/google/gson/JsonObject;Ljava/lang/Object;Lcom/google/gson/JsonSerializationContext;)V net/minecraft/world/level/storage/loot/functions/SetAttributesFunction$Serializer/serialize (Lcom/google/gson/JsonObject;Ljava/lang/Object;Lcom/google/gson/JsonSerializationContext;)V +MD: net/minecraft/world/level/storage/loot/functions/SetAttributesFunction$Serializer/m_6821_ (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;[Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;)Lnet/minecraft/world/level/storage/loot/functions/LootItemConditionalFunction; net/minecraft/world/level/storage/loot/functions/SetAttributesFunction$Serializer/deserialize (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;[Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;)Lnet/minecraft/world/level/storage/loot/functions/LootItemConditionalFunction; +MD: net/minecraft/world/level/storage/loot/functions/SetAttributesFunction$Serializer/m_6821_ (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;[Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;)Lnet/minecraft/world/level/storage/loot/functions/SetAttributesFunction; net/minecraft/world/level/storage/loot/functions/SetAttributesFunction$Serializer/deserialize (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;[Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;)Lnet/minecraft/world/level/storage/loot/functions/SetAttributesFunction; +MD: net/minecraft/world/level/storage/loot/functions/SetBannerPatternFunction/ ([Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;Ljava/util/List;Z)V net/minecraft/world/level/storage/loot/functions/SetBannerPatternFunction/ ([Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;Ljava/util/List;Z)V +MD: net/minecraft/world/level/storage/loot/functions/SetBannerPatternFunction/m_165282_ (Z)Lnet/minecraft/world/level/storage/loot/functions/SetBannerPatternFunction$Builder; net/minecraft/world/level/storage/loot/functions/SetBannerPatternFunction/setBannerPattern (Z)Lnet/minecraft/world/level/storage/loot/functions/SetBannerPatternFunction$Builder; +MD: net/minecraft/world/level/storage/loot/functions/SetBannerPatternFunction/m_7162_ ()Lnet/minecraft/world/level/storage/loot/functions/LootItemFunctionType; net/minecraft/world/level/storage/loot/functions/SetBannerPatternFunction/getType ()Lnet/minecraft/world/level/storage/loot/functions/LootItemFunctionType; +MD: net/minecraft/world/level/storage/loot/functions/SetBannerPatternFunction/m_7372_ (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/level/storage/loot/LootContext;)Lnet/minecraft/world/item/ItemStack; net/minecraft/world/level/storage/loot/functions/SetBannerPatternFunction/run (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/level/storage/loot/LootContext;)Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/level/storage/loot/functions/SetBannerPatternFunction$Builder/ (Z)V net/minecraft/world/level/storage/loot/functions/SetBannerPatternFunction$Builder/ (Z)V +MD: net/minecraft/world/level/storage/loot/functions/SetBannerPatternFunction$Builder/m_230995_ (Lnet/minecraft/resources/ResourceKey;Lnet/minecraft/world/item/DyeColor;)Lnet/minecraft/world/level/storage/loot/functions/SetBannerPatternFunction$Builder; net/minecraft/world/level/storage/loot/functions/SetBannerPatternFunction$Builder/addPattern (Lnet/minecraft/resources/ResourceKey;Lnet/minecraft/world/item/DyeColor;)Lnet/minecraft/world/level/storage/loot/functions/SetBannerPatternFunction$Builder; +MD: net/minecraft/world/level/storage/loot/functions/SetBannerPatternFunction$Builder/m_230998_ (Lnet/minecraft/core/Holder;Lnet/minecraft/world/item/DyeColor;)Lnet/minecraft/world/level/storage/loot/functions/SetBannerPatternFunction$Builder; net/minecraft/world/level/storage/loot/functions/SetBannerPatternFunction$Builder/addPattern (Lnet/minecraft/core/Holder;Lnet/minecraft/world/item/DyeColor;)Lnet/minecraft/world/level/storage/loot/functions/SetBannerPatternFunction$Builder; +MD: net/minecraft/world/level/storage/loot/functions/SetBannerPatternFunction$Builder/m_6477_ ()Lnet/minecraft/world/level/storage/loot/functions/SetBannerPatternFunction$Builder; net/minecraft/world/level/storage/loot/functions/SetBannerPatternFunction$Builder/getThis ()Lnet/minecraft/world/level/storage/loot/functions/SetBannerPatternFunction$Builder; +MD: net/minecraft/world/level/storage/loot/functions/SetBannerPatternFunction$Builder/m_6477_ ()Lnet/minecraft/world/level/storage/loot/functions/LootItemConditionalFunction$Builder; net/minecraft/world/level/storage/loot/functions/SetBannerPatternFunction$Builder/getThis ()Lnet/minecraft/world/level/storage/loot/functions/LootItemConditionalFunction$Builder; +MD: net/minecraft/world/level/storage/loot/functions/SetBannerPatternFunction$Builder/m_7453_ ()Lnet/minecraft/world/level/storage/loot/functions/LootItemFunction; net/minecraft/world/level/storage/loot/functions/SetBannerPatternFunction$Builder/build ()Lnet/minecraft/world/level/storage/loot/functions/LootItemFunction; +MD: net/minecraft/world/level/storage/loot/functions/SetBannerPatternFunction$Serializer/ ()V net/minecraft/world/level/storage/loot/functions/SetBannerPatternFunction$Serializer/ ()V +MD: net/minecraft/world/level/storage/loot/functions/SetBannerPatternFunction$Serializer/m_231001_ (Lcom/google/gson/JsonArray;Lcom/mojang/datafixers/util/Pair;)V net/minecraft/world/level/storage/loot/functions/SetBannerPatternFunction$Serializer/lambda$serialize$1 (Lcom/google/gson/JsonArray;Lcom/mojang/datafixers/util/Pair;)V +MD: net/minecraft/world/level/storage/loot/functions/SetBannerPatternFunction$Serializer/m_231004_ (Lcom/mojang/datafixers/util/Pair;)Lcom/google/gson/JsonSyntaxException; net/minecraft/world/level/storage/loot/functions/SetBannerPatternFunction$Serializer/lambda$serialize$0 (Lcom/mojang/datafixers/util/Pair;)Lcom/google/gson/JsonSyntaxException; +MD: net/minecraft/world/level/storage/loot/functions/SetBannerPatternFunction$Serializer/m_6170_ (Lcom/google/gson/JsonObject;Lnet/minecraft/world/level/storage/loot/functions/LootItemConditionalFunction;Lcom/google/gson/JsonSerializationContext;)V net/minecraft/world/level/storage/loot/functions/SetBannerPatternFunction$Serializer/serialize (Lcom/google/gson/JsonObject;Lnet/minecraft/world/level/storage/loot/functions/LootItemConditionalFunction;Lcom/google/gson/JsonSerializationContext;)V +MD: net/minecraft/world/level/storage/loot/functions/SetBannerPatternFunction$Serializer/m_6170_ (Lcom/google/gson/JsonObject;Ljava/lang/Object;Lcom/google/gson/JsonSerializationContext;)V net/minecraft/world/level/storage/loot/functions/SetBannerPatternFunction$Serializer/serialize (Lcom/google/gson/JsonObject;Ljava/lang/Object;Lcom/google/gson/JsonSerializationContext;)V +MD: net/minecraft/world/level/storage/loot/functions/SetBannerPatternFunction$Serializer/m_6170_ (Lcom/google/gson/JsonObject;Lnet/minecraft/world/level/storage/loot/functions/SetBannerPatternFunction;Lcom/google/gson/JsonSerializationContext;)V net/minecraft/world/level/storage/loot/functions/SetBannerPatternFunction$Serializer/serialize (Lcom/google/gson/JsonObject;Lnet/minecraft/world/level/storage/loot/functions/SetBannerPatternFunction;Lcom/google/gson/JsonSerializationContext;)V +MD: net/minecraft/world/level/storage/loot/functions/SetBannerPatternFunction$Serializer/m_6821_ (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;[Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;)Lnet/minecraft/world/level/storage/loot/functions/LootItemConditionalFunction; net/minecraft/world/level/storage/loot/functions/SetBannerPatternFunction$Serializer/deserialize (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;[Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;)Lnet/minecraft/world/level/storage/loot/functions/LootItemConditionalFunction; +MD: net/minecraft/world/level/storage/loot/functions/SetBannerPatternFunction$Serializer/m_6821_ (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;[Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;)Lnet/minecraft/world/level/storage/loot/functions/SetBannerPatternFunction; net/minecraft/world/level/storage/loot/functions/SetBannerPatternFunction$Serializer/deserialize (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;[Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;)Lnet/minecraft/world/level/storage/loot/functions/SetBannerPatternFunction; +MD: net/minecraft/world/level/storage/loot/functions/SetContainerContents/ ([Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;Lnet/minecraft/world/level/block/entity/BlockEntityType;Ljava/util/List;)V net/minecraft/world/level/storage/loot/functions/SetContainerContents/ ([Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;Lnet/minecraft/world/level/block/entity/BlockEntityType;Ljava/util/List;)V +MD: net/minecraft/world/level/storage/loot/functions/SetContainerContents/m_193036_ (Lnet/minecraft/world/level/block/entity/BlockEntityType;)Lnet/minecraft/world/level/storage/loot/functions/SetContainerContents$Builder; net/minecraft/world/level/storage/loot/functions/SetContainerContents/setContents (Lnet/minecraft/world/level/block/entity/BlockEntityType;)Lnet/minecraft/world/level/storage/loot/functions/SetContainerContents$Builder; +MD: net/minecraft/world/level/storage/loot/functions/SetContainerContents/m_287135_ (Lnet/minecraft/world/level/storage/loot/LootContext;Lnet/minecraft/core/NonNullList;Lnet/minecraft/world/level/storage/loot/entries/LootPoolEntry;)V net/minecraft/world/level/storage/loot/functions/SetContainerContents/lambda$run$0 (Lnet/minecraft/world/level/storage/loot/LootContext;Lnet/minecraft/core/NonNullList;Lnet/minecraft/world/level/storage/loot/entries/LootPoolEntry;)V +MD: net/minecraft/world/level/storage/loot/functions/SetContainerContents/m_6169_ (Lnet/minecraft/world/level/storage/loot/ValidationContext;)V net/minecraft/world/level/storage/loot/functions/SetContainerContents/validate (Lnet/minecraft/world/level/storage/loot/ValidationContext;)V +MD: net/minecraft/world/level/storage/loot/functions/SetContainerContents/m_7162_ ()Lnet/minecraft/world/level/storage/loot/functions/LootItemFunctionType; net/minecraft/world/level/storage/loot/functions/SetContainerContents/getType ()Lnet/minecraft/world/level/storage/loot/functions/LootItemFunctionType; +MD: net/minecraft/world/level/storage/loot/functions/SetContainerContents/m_7372_ (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/level/storage/loot/LootContext;)Lnet/minecraft/world/item/ItemStack; net/minecraft/world/level/storage/loot/functions/SetContainerContents/run (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/level/storage/loot/LootContext;)Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/level/storage/loot/functions/SetContainerContents/m_80913_ (Lnet/minecraft/world/level/storage/loot/LootContext;Lnet/minecraft/core/NonNullList;Lnet/minecraft/world/level/storage/loot/entries/LootPoolEntryContainer;)V net/minecraft/world/level/storage/loot/functions/SetContainerContents/lambda$run$1 (Lnet/minecraft/world/level/storage/loot/LootContext;Lnet/minecraft/core/NonNullList;Lnet/minecraft/world/level/storage/loot/entries/LootPoolEntryContainer;)V +MD: net/minecraft/world/level/storage/loot/functions/SetContainerContents$Builder/ (Lnet/minecraft/world/level/block/entity/BlockEntityType;)V net/minecraft/world/level/storage/loot/functions/SetContainerContents$Builder/ (Lnet/minecraft/world/level/block/entity/BlockEntityType;)V +MD: net/minecraft/world/level/storage/loot/functions/SetContainerContents$Builder/m_6477_ ()Lnet/minecraft/world/level/storage/loot/functions/SetContainerContents$Builder; net/minecraft/world/level/storage/loot/functions/SetContainerContents$Builder/getThis ()Lnet/minecraft/world/level/storage/loot/functions/SetContainerContents$Builder; +MD: net/minecraft/world/level/storage/loot/functions/SetContainerContents$Builder/m_6477_ ()Lnet/minecraft/world/level/storage/loot/functions/LootItemConditionalFunction$Builder; net/minecraft/world/level/storage/loot/functions/SetContainerContents$Builder/getThis ()Lnet/minecraft/world/level/storage/loot/functions/LootItemConditionalFunction$Builder; +MD: net/minecraft/world/level/storage/loot/functions/SetContainerContents$Builder/m_7453_ ()Lnet/minecraft/world/level/storage/loot/functions/LootItemFunction; net/minecraft/world/level/storage/loot/functions/SetContainerContents$Builder/build ()Lnet/minecraft/world/level/storage/loot/functions/LootItemFunction; +MD: net/minecraft/world/level/storage/loot/functions/SetContainerContents$Builder/m_80930_ (Lnet/minecraft/world/level/storage/loot/entries/LootPoolEntryContainer$Builder;)Lnet/minecraft/world/level/storage/loot/functions/SetContainerContents$Builder; net/minecraft/world/level/storage/loot/functions/SetContainerContents$Builder/withEntry (Lnet/minecraft/world/level/storage/loot/entries/LootPoolEntryContainer$Builder;)Lnet/minecraft/world/level/storage/loot/functions/SetContainerContents$Builder; +MD: net/minecraft/world/level/storage/loot/functions/SetContainerContents$Serializer/ ()V net/minecraft/world/level/storage/loot/functions/SetContainerContents$Serializer/ ()V +MD: net/minecraft/world/level/storage/loot/functions/SetContainerContents$Serializer/m_193041_ (Lnet/minecraft/resources/ResourceLocation;)Lcom/google/gson/JsonSyntaxException; net/minecraft/world/level/storage/loot/functions/SetContainerContents$Serializer/lambda$deserialize$0 (Lnet/minecraft/resources/ResourceLocation;)Lcom/google/gson/JsonSyntaxException; +MD: net/minecraft/world/level/storage/loot/functions/SetContainerContents$Serializer/m_6170_ (Lcom/google/gson/JsonObject;Lnet/minecraft/world/level/storage/loot/functions/LootItemConditionalFunction;Lcom/google/gson/JsonSerializationContext;)V net/minecraft/world/level/storage/loot/functions/SetContainerContents$Serializer/serialize (Lcom/google/gson/JsonObject;Lnet/minecraft/world/level/storage/loot/functions/LootItemConditionalFunction;Lcom/google/gson/JsonSerializationContext;)V +MD: net/minecraft/world/level/storage/loot/functions/SetContainerContents$Serializer/m_6170_ (Lcom/google/gson/JsonObject;Ljava/lang/Object;Lcom/google/gson/JsonSerializationContext;)V net/minecraft/world/level/storage/loot/functions/SetContainerContents$Serializer/serialize (Lcom/google/gson/JsonObject;Ljava/lang/Object;Lcom/google/gson/JsonSerializationContext;)V +MD: net/minecraft/world/level/storage/loot/functions/SetContainerContents$Serializer/m_6170_ (Lcom/google/gson/JsonObject;Lnet/minecraft/world/level/storage/loot/functions/SetContainerContents;Lcom/google/gson/JsonSerializationContext;)V net/minecraft/world/level/storage/loot/functions/SetContainerContents$Serializer/serialize (Lcom/google/gson/JsonObject;Lnet/minecraft/world/level/storage/loot/functions/SetContainerContents;Lcom/google/gson/JsonSerializationContext;)V +MD: net/minecraft/world/level/storage/loot/functions/SetContainerContents$Serializer/m_6821_ (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;[Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;)Lnet/minecraft/world/level/storage/loot/functions/LootItemConditionalFunction; net/minecraft/world/level/storage/loot/functions/SetContainerContents$Serializer/deserialize (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;[Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;)Lnet/minecraft/world/level/storage/loot/functions/LootItemConditionalFunction; +MD: net/minecraft/world/level/storage/loot/functions/SetContainerContents$Serializer/m_6821_ (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;[Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;)Lnet/minecraft/world/level/storage/loot/functions/SetContainerContents; net/minecraft/world/level/storage/loot/functions/SetContainerContents$Serializer/deserialize (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;[Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;)Lnet/minecraft/world/level/storage/loot/functions/SetContainerContents; +MD: net/minecraft/world/level/storage/loot/functions/SetContainerLootTable/ ([Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;Lnet/minecraft/resources/ResourceLocation;JLnet/minecraft/world/level/block/entity/BlockEntityType;)V net/minecraft/world/level/storage/loot/functions/SetContainerLootTable/ ([Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;Lnet/minecraft/resources/ResourceLocation;JLnet/minecraft/world/level/block/entity/BlockEntityType;)V +MD: net/minecraft/world/level/storage/loot/functions/SetContainerLootTable/m_193049_ (Lnet/minecraft/world/level/block/entity/BlockEntityType;Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/world/level/storage/loot/functions/LootItemConditionalFunction$Builder; net/minecraft/world/level/storage/loot/functions/SetContainerLootTable/withLootTable (Lnet/minecraft/world/level/block/entity/BlockEntityType;Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/world/level/storage/loot/functions/LootItemConditionalFunction$Builder; +MD: net/minecraft/world/level/storage/loot/functions/SetContainerLootTable/m_193052_ (Lnet/minecraft/world/level/block/entity/BlockEntityType;Lnet/minecraft/resources/ResourceLocation;J)Lnet/minecraft/world/level/storage/loot/functions/LootItemConditionalFunction$Builder; net/minecraft/world/level/storage/loot/functions/SetContainerLootTable/withLootTable (Lnet/minecraft/world/level/block/entity/BlockEntityType;Lnet/minecraft/resources/ResourceLocation;J)Lnet/minecraft/world/level/storage/loot/functions/LootItemConditionalFunction$Builder; +MD: net/minecraft/world/level/storage/loot/functions/SetContainerLootTable/m_193056_ (Lnet/minecraft/resources/ResourceLocation;JLnet/minecraft/world/level/block/entity/BlockEntityType;[Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;)Lnet/minecraft/world/level/storage/loot/functions/LootItemFunction; net/minecraft/world/level/storage/loot/functions/SetContainerLootTable/lambda$withLootTable$1 (Lnet/minecraft/resources/ResourceLocation;JLnet/minecraft/world/level/block/entity/BlockEntityType;[Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;)Lnet/minecraft/world/level/storage/loot/functions/LootItemFunction; +MD: net/minecraft/world/level/storage/loot/functions/SetContainerLootTable/m_193061_ (Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/world/level/block/entity/BlockEntityType;[Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;)Lnet/minecraft/world/level/storage/loot/functions/LootItemFunction; net/minecraft/world/level/storage/loot/functions/SetContainerLootTable/lambda$withLootTable$0 (Lnet/minecraft/resources/ResourceLocation;Lnet/minecraft/world/level/block/entity/BlockEntityType;[Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;)Lnet/minecraft/world/level/storage/loot/functions/LootItemFunction; +MD: net/minecraft/world/level/storage/loot/functions/SetContainerLootTable/m_6169_ (Lnet/minecraft/world/level/storage/loot/ValidationContext;)V net/minecraft/world/level/storage/loot/functions/SetContainerLootTable/validate (Lnet/minecraft/world/level/storage/loot/ValidationContext;)V +MD: net/minecraft/world/level/storage/loot/functions/SetContainerLootTable/m_7162_ ()Lnet/minecraft/world/level/storage/loot/functions/LootItemFunctionType; net/minecraft/world/level/storage/loot/functions/SetContainerLootTable/getType ()Lnet/minecraft/world/level/storage/loot/functions/LootItemFunctionType; +MD: net/minecraft/world/level/storage/loot/functions/SetContainerLootTable/m_7372_ (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/level/storage/loot/LootContext;)Lnet/minecraft/world/item/ItemStack; net/minecraft/world/level/storage/loot/functions/SetContainerLootTable/run (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/level/storage/loot/LootContext;)Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/level/storage/loot/functions/SetContainerLootTable$Serializer/ ()V net/minecraft/world/level/storage/loot/functions/SetContainerLootTable$Serializer/ ()V +MD: net/minecraft/world/level/storage/loot/functions/SetContainerLootTable$Serializer/m_193065_ (Lnet/minecraft/resources/ResourceLocation;)Lcom/google/gson/JsonSyntaxException; net/minecraft/world/level/storage/loot/functions/SetContainerLootTable$Serializer/lambda$deserialize$0 (Lnet/minecraft/resources/ResourceLocation;)Lcom/google/gson/JsonSyntaxException; +MD: net/minecraft/world/level/storage/loot/functions/SetContainerLootTable$Serializer/m_6170_ (Lcom/google/gson/JsonObject;Lnet/minecraft/world/level/storage/loot/functions/LootItemConditionalFunction;Lcom/google/gson/JsonSerializationContext;)V net/minecraft/world/level/storage/loot/functions/SetContainerLootTable$Serializer/serialize (Lcom/google/gson/JsonObject;Lnet/minecraft/world/level/storage/loot/functions/LootItemConditionalFunction;Lcom/google/gson/JsonSerializationContext;)V +MD: net/minecraft/world/level/storage/loot/functions/SetContainerLootTable$Serializer/m_6170_ (Lcom/google/gson/JsonObject;Lnet/minecraft/world/level/storage/loot/functions/SetContainerLootTable;Lcom/google/gson/JsonSerializationContext;)V net/minecraft/world/level/storage/loot/functions/SetContainerLootTable$Serializer/serialize (Lcom/google/gson/JsonObject;Lnet/minecraft/world/level/storage/loot/functions/SetContainerLootTable;Lcom/google/gson/JsonSerializationContext;)V +MD: net/minecraft/world/level/storage/loot/functions/SetContainerLootTable$Serializer/m_6170_ (Lcom/google/gson/JsonObject;Ljava/lang/Object;Lcom/google/gson/JsonSerializationContext;)V net/minecraft/world/level/storage/loot/functions/SetContainerLootTable$Serializer/serialize (Lcom/google/gson/JsonObject;Ljava/lang/Object;Lcom/google/gson/JsonSerializationContext;)V +MD: net/minecraft/world/level/storage/loot/functions/SetContainerLootTable$Serializer/m_6821_ (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;[Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;)Lnet/minecraft/world/level/storage/loot/functions/LootItemConditionalFunction; net/minecraft/world/level/storage/loot/functions/SetContainerLootTable$Serializer/deserialize (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;[Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;)Lnet/minecraft/world/level/storage/loot/functions/LootItemConditionalFunction; +MD: net/minecraft/world/level/storage/loot/functions/SetContainerLootTable$Serializer/m_6821_ (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;[Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;)Lnet/minecraft/world/level/storage/loot/functions/SetContainerLootTable; net/minecraft/world/level/storage/loot/functions/SetContainerLootTable$Serializer/deserialize (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;[Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;)Lnet/minecraft/world/level/storage/loot/functions/SetContainerLootTable; +MD: net/minecraft/world/level/storage/loot/functions/SetEnchantmentsFunction/ ([Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;Ljava/util/Map;Z)V net/minecraft/world/level/storage/loot/functions/SetEnchantmentsFunction/ ([Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;Ljava/util/Map;Z)V +MD: net/minecraft/world/level/storage/loot/functions/SetEnchantmentsFunction/m_165341_ (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/item/enchantment/Enchantment;Ljava/lang/Integer;)V net/minecraft/world/level/storage/loot/functions/SetEnchantmentsFunction/lambda$run$2 (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/item/enchantment/Enchantment;Ljava/lang/Integer;)V +MD: net/minecraft/world/level/storage/loot/functions/SetEnchantmentsFunction/m_165350_ (Lit/unimi/dsi/fastutil/objects/Object2IntMap;Lnet/minecraft/world/level/storage/loot/LootContext;Lnet/minecraft/world/item/enchantment/Enchantment;Lnet/minecraft/world/level/storage/loot/providers/number/NumberProvider;)V net/minecraft/world/level/storage/loot/functions/SetEnchantmentsFunction/lambda$run$1 (Lit/unimi/dsi/fastutil/objects/Object2IntMap;Lnet/minecraft/world/level/storage/loot/LootContext;Lnet/minecraft/world/item/enchantment/Enchantment;Lnet/minecraft/world/level/storage/loot/providers/number/NumberProvider;)V +MD: net/minecraft/world/level/storage/loot/functions/SetEnchantmentsFunction/m_165355_ (Ljava/util/Map;Lnet/minecraft/world/item/enchantment/Enchantment;I)V net/minecraft/world/level/storage/loot/functions/SetEnchantmentsFunction/updateEnchantment (Ljava/util/Map;Lnet/minecraft/world/item/enchantment/Enchantment;I)V +MD: net/minecraft/world/level/storage/loot/functions/SetEnchantmentsFunction/m_165359_ (Ljava/util/Map;Lnet/minecraft/world/item/enchantment/Enchantment;Ljava/lang/Integer;)V net/minecraft/world/level/storage/loot/functions/SetEnchantmentsFunction/lambda$run$4 (Ljava/util/Map;Lnet/minecraft/world/item/enchantment/Enchantment;Ljava/lang/Integer;)V +MD: net/minecraft/world/level/storage/loot/functions/SetEnchantmentsFunction/m_165364_ (Ljava/util/Map;Lnet/minecraft/world/item/enchantment/Enchantment;Ljava/lang/Integer;)V net/minecraft/world/level/storage/loot/functions/SetEnchantmentsFunction/lambda$run$3 (Ljava/util/Map;Lnet/minecraft/world/item/enchantment/Enchantment;Ljava/lang/Integer;)V +MD: net/minecraft/world/level/storage/loot/functions/SetEnchantmentsFunction/m_278608_ (Lnet/minecraft/world/level/storage/loot/providers/number/NumberProvider;)Ljava/util/stream/Stream; net/minecraft/world/level/storage/loot/functions/SetEnchantmentsFunction/lambda$getReferencedContextParams$0 (Lnet/minecraft/world/level/storage/loot/providers/number/NumberProvider;)Ljava/util/stream/Stream; +MD: net/minecraft/world/level/storage/loot/functions/SetEnchantmentsFunction/m_6231_ ()Ljava/util/Set; net/minecraft/world/level/storage/loot/functions/SetEnchantmentsFunction/getReferencedContextParams ()Ljava/util/Set; +MD: net/minecraft/world/level/storage/loot/functions/SetEnchantmentsFunction/m_7162_ ()Lnet/minecraft/world/level/storage/loot/functions/LootItemFunctionType; net/minecraft/world/level/storage/loot/functions/SetEnchantmentsFunction/getType ()Lnet/minecraft/world/level/storage/loot/functions/LootItemFunctionType; +MD: net/minecraft/world/level/storage/loot/functions/SetEnchantmentsFunction/m_7372_ (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/level/storage/loot/LootContext;)Lnet/minecraft/world/item/ItemStack; net/minecraft/world/level/storage/loot/functions/SetEnchantmentsFunction/run (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/level/storage/loot/LootContext;)Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/level/storage/loot/functions/SetEnchantmentsFunction$Builder/ (Z)V net/minecraft/world/level/storage/loot/functions/SetEnchantmentsFunction$Builder/ (Z)V +MD: net/minecraft/world/level/storage/loot/functions/SetEnchantmentsFunction$Builder/ ()V net/minecraft/world/level/storage/loot/functions/SetEnchantmentsFunction$Builder/ ()V +MD: net/minecraft/world/level/storage/loot/functions/SetEnchantmentsFunction$Builder/m_165374_ (Lnet/minecraft/world/item/enchantment/Enchantment;Lnet/minecraft/world/level/storage/loot/providers/number/NumberProvider;)Lnet/minecraft/world/level/storage/loot/functions/SetEnchantmentsFunction$Builder; net/minecraft/world/level/storage/loot/functions/SetEnchantmentsFunction$Builder/withEnchantment (Lnet/minecraft/world/item/enchantment/Enchantment;Lnet/minecraft/world/level/storage/loot/providers/number/NumberProvider;)Lnet/minecraft/world/level/storage/loot/functions/SetEnchantmentsFunction$Builder; +MD: net/minecraft/world/level/storage/loot/functions/SetEnchantmentsFunction$Builder/m_6477_ ()Lnet/minecraft/world/level/storage/loot/functions/LootItemConditionalFunction$Builder; net/minecraft/world/level/storage/loot/functions/SetEnchantmentsFunction$Builder/getThis ()Lnet/minecraft/world/level/storage/loot/functions/LootItemConditionalFunction$Builder; +MD: net/minecraft/world/level/storage/loot/functions/SetEnchantmentsFunction$Builder/m_6477_ ()Lnet/minecraft/world/level/storage/loot/functions/SetEnchantmentsFunction$Builder; net/minecraft/world/level/storage/loot/functions/SetEnchantmentsFunction$Builder/getThis ()Lnet/minecraft/world/level/storage/loot/functions/SetEnchantmentsFunction$Builder; +MD: net/minecraft/world/level/storage/loot/functions/SetEnchantmentsFunction$Builder/m_7453_ ()Lnet/minecraft/world/level/storage/loot/functions/LootItemFunction; net/minecraft/world/level/storage/loot/functions/SetEnchantmentsFunction$Builder/build ()Lnet/minecraft/world/level/storage/loot/functions/LootItemFunction; +MD: net/minecraft/world/level/storage/loot/functions/SetEnchantmentsFunction$Serializer/ ()V net/minecraft/world/level/storage/loot/functions/SetEnchantmentsFunction$Serializer/ ()V +MD: net/minecraft/world/level/storage/loot/functions/SetEnchantmentsFunction$Serializer/m_165401_ (Ljava/lang/String;)Lcom/google/gson/JsonSyntaxException; net/minecraft/world/level/storage/loot/functions/SetEnchantmentsFunction$Serializer/lambda$deserialize$1 (Ljava/lang/String;)Lcom/google/gson/JsonSyntaxException; +MD: net/minecraft/world/level/storage/loot/functions/SetEnchantmentsFunction$Serializer/m_257367_ (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonSerializationContext;Lnet/minecraft/world/item/enchantment/Enchantment;Lnet/minecraft/world/level/storage/loot/providers/number/NumberProvider;)V net/minecraft/world/level/storage/loot/functions/SetEnchantmentsFunction$Serializer/lambda$serialize$0 (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonSerializationContext;Lnet/minecraft/world/item/enchantment/Enchantment;Lnet/minecraft/world/level/storage/loot/providers/number/NumberProvider;)V +MD: net/minecraft/world/level/storage/loot/functions/SetEnchantmentsFunction$Serializer/m_6170_ (Lcom/google/gson/JsonObject;Lnet/minecraft/world/level/storage/loot/functions/LootItemConditionalFunction;Lcom/google/gson/JsonSerializationContext;)V net/minecraft/world/level/storage/loot/functions/SetEnchantmentsFunction$Serializer/serialize (Lcom/google/gson/JsonObject;Lnet/minecraft/world/level/storage/loot/functions/LootItemConditionalFunction;Lcom/google/gson/JsonSerializationContext;)V +MD: net/minecraft/world/level/storage/loot/functions/SetEnchantmentsFunction$Serializer/m_6170_ (Lcom/google/gson/JsonObject;Ljava/lang/Object;Lcom/google/gson/JsonSerializationContext;)V net/minecraft/world/level/storage/loot/functions/SetEnchantmentsFunction$Serializer/serialize (Lcom/google/gson/JsonObject;Ljava/lang/Object;Lcom/google/gson/JsonSerializationContext;)V +MD: net/minecraft/world/level/storage/loot/functions/SetEnchantmentsFunction$Serializer/m_6170_ (Lcom/google/gson/JsonObject;Lnet/minecraft/world/level/storage/loot/functions/SetEnchantmentsFunction;Lcom/google/gson/JsonSerializationContext;)V net/minecraft/world/level/storage/loot/functions/SetEnchantmentsFunction$Serializer/serialize (Lcom/google/gson/JsonObject;Lnet/minecraft/world/level/storage/loot/functions/SetEnchantmentsFunction;Lcom/google/gson/JsonSerializationContext;)V +MD: net/minecraft/world/level/storage/loot/functions/SetEnchantmentsFunction$Serializer/m_6821_ (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;[Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;)Lnet/minecraft/world/level/storage/loot/functions/LootItemConditionalFunction; net/minecraft/world/level/storage/loot/functions/SetEnchantmentsFunction$Serializer/deserialize (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;[Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;)Lnet/minecraft/world/level/storage/loot/functions/LootItemConditionalFunction; +MD: net/minecraft/world/level/storage/loot/functions/SetEnchantmentsFunction$Serializer/m_6821_ (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;[Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;)Lnet/minecraft/world/level/storage/loot/functions/SetEnchantmentsFunction; net/minecraft/world/level/storage/loot/functions/SetEnchantmentsFunction$Serializer/deserialize (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;[Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;)Lnet/minecraft/world/level/storage/loot/functions/SetEnchantmentsFunction; +MD: net/minecraft/world/level/storage/loot/functions/SetInstrumentFunction/ ([Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;Lnet/minecraft/tags/TagKey;)V net/minecraft/world/level/storage/loot/functions/SetInstrumentFunction/ ([Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;Lnet/minecraft/tags/TagKey;)V +MD: net/minecraft/world/level/storage/loot/functions/SetInstrumentFunction/m_231011_ (Lnet/minecraft/tags/TagKey;)Lnet/minecraft/world/level/storage/loot/functions/LootItemConditionalFunction$Builder; net/minecraft/world/level/storage/loot/functions/SetInstrumentFunction/setInstrumentOptions (Lnet/minecraft/tags/TagKey;)Lnet/minecraft/world/level/storage/loot/functions/LootItemConditionalFunction$Builder; +MD: net/minecraft/world/level/storage/loot/functions/SetInstrumentFunction/m_231013_ (Lnet/minecraft/tags/TagKey;[Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;)Lnet/minecraft/world/level/storage/loot/functions/LootItemFunction; net/minecraft/world/level/storage/loot/functions/SetInstrumentFunction/lambda$setInstrumentOptions$0 (Lnet/minecraft/tags/TagKey;[Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;)Lnet/minecraft/world/level/storage/loot/functions/LootItemFunction; +MD: net/minecraft/world/level/storage/loot/functions/SetInstrumentFunction/m_7162_ ()Lnet/minecraft/world/level/storage/loot/functions/LootItemFunctionType; net/minecraft/world/level/storage/loot/functions/SetInstrumentFunction/getType ()Lnet/minecraft/world/level/storage/loot/functions/LootItemFunctionType; +MD: net/minecraft/world/level/storage/loot/functions/SetInstrumentFunction/m_7372_ (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/level/storage/loot/LootContext;)Lnet/minecraft/world/item/ItemStack; net/minecraft/world/level/storage/loot/functions/SetInstrumentFunction/run (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/level/storage/loot/LootContext;)Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/level/storage/loot/functions/SetInstrumentFunction$Serializer/ ()V net/minecraft/world/level/storage/loot/functions/SetInstrumentFunction$Serializer/ ()V +MD: net/minecraft/world/level/storage/loot/functions/SetInstrumentFunction$Serializer/m_6170_ (Lcom/google/gson/JsonObject;Lnet/minecraft/world/level/storage/loot/functions/LootItemConditionalFunction;Lcom/google/gson/JsonSerializationContext;)V net/minecraft/world/level/storage/loot/functions/SetInstrumentFunction$Serializer/serialize (Lcom/google/gson/JsonObject;Lnet/minecraft/world/level/storage/loot/functions/LootItemConditionalFunction;Lcom/google/gson/JsonSerializationContext;)V +MD: net/minecraft/world/level/storage/loot/functions/SetInstrumentFunction$Serializer/m_6170_ (Lcom/google/gson/JsonObject;Ljava/lang/Object;Lcom/google/gson/JsonSerializationContext;)V net/minecraft/world/level/storage/loot/functions/SetInstrumentFunction$Serializer/serialize (Lcom/google/gson/JsonObject;Ljava/lang/Object;Lcom/google/gson/JsonSerializationContext;)V +MD: net/minecraft/world/level/storage/loot/functions/SetInstrumentFunction$Serializer/m_6170_ (Lcom/google/gson/JsonObject;Lnet/minecraft/world/level/storage/loot/functions/SetInstrumentFunction;Lcom/google/gson/JsonSerializationContext;)V net/minecraft/world/level/storage/loot/functions/SetInstrumentFunction$Serializer/serialize (Lcom/google/gson/JsonObject;Lnet/minecraft/world/level/storage/loot/functions/SetInstrumentFunction;Lcom/google/gson/JsonSerializationContext;)V +MD: net/minecraft/world/level/storage/loot/functions/SetInstrumentFunction$Serializer/m_6821_ (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;[Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;)Lnet/minecraft/world/level/storage/loot/functions/LootItemConditionalFunction; net/minecraft/world/level/storage/loot/functions/SetInstrumentFunction$Serializer/deserialize (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;[Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;)Lnet/minecraft/world/level/storage/loot/functions/LootItemConditionalFunction; +MD: net/minecraft/world/level/storage/loot/functions/SetInstrumentFunction$Serializer/m_6821_ (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;[Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;)Lnet/minecraft/world/level/storage/loot/functions/SetInstrumentFunction; net/minecraft/world/level/storage/loot/functions/SetInstrumentFunction$Serializer/deserialize (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;[Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;)Lnet/minecraft/world/level/storage/loot/functions/SetInstrumentFunction; +MD: net/minecraft/world/level/storage/loot/functions/SetItemCountFunction/ ([Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;Lnet/minecraft/world/level/storage/loot/providers/number/NumberProvider;Z)V net/minecraft/world/level/storage/loot/functions/SetItemCountFunction/ ([Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;Lnet/minecraft/world/level/storage/loot/providers/number/NumberProvider;Z)V +MD: net/minecraft/world/level/storage/loot/functions/SetItemCountFunction/m_165412_ (Lnet/minecraft/world/level/storage/loot/providers/number/NumberProvider;)Lnet/minecraft/world/level/storage/loot/functions/LootItemConditionalFunction$Builder; net/minecraft/world/level/storage/loot/functions/SetItemCountFunction/setCount (Lnet/minecraft/world/level/storage/loot/providers/number/NumberProvider;)Lnet/minecraft/world/level/storage/loot/functions/LootItemConditionalFunction$Builder; +MD: net/minecraft/world/level/storage/loot/functions/SetItemCountFunction/m_165414_ (Lnet/minecraft/world/level/storage/loot/providers/number/NumberProvider;Z)Lnet/minecraft/world/level/storage/loot/functions/LootItemConditionalFunction$Builder; net/minecraft/world/level/storage/loot/functions/SetItemCountFunction/setCount (Lnet/minecraft/world/level/storage/loot/providers/number/NumberProvider;Z)Lnet/minecraft/world/level/storage/loot/functions/LootItemConditionalFunction$Builder; +MD: net/minecraft/world/level/storage/loot/functions/SetItemCountFunction/m_165417_ (Lnet/minecraft/world/level/storage/loot/providers/number/NumberProvider;Z[Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;)Lnet/minecraft/world/level/storage/loot/functions/LootItemFunction; net/minecraft/world/level/storage/loot/functions/SetItemCountFunction/lambda$setCount$1 (Lnet/minecraft/world/level/storage/loot/providers/number/NumberProvider;Z[Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;)Lnet/minecraft/world/level/storage/loot/functions/LootItemFunction; +MD: net/minecraft/world/level/storage/loot/functions/SetItemCountFunction/m_165421_ (Lnet/minecraft/world/level/storage/loot/providers/number/NumberProvider;[Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;)Lnet/minecraft/world/level/storage/loot/functions/LootItemFunction; net/minecraft/world/level/storage/loot/functions/SetItemCountFunction/lambda$setCount$0 (Lnet/minecraft/world/level/storage/loot/providers/number/NumberProvider;[Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;)Lnet/minecraft/world/level/storage/loot/functions/LootItemFunction; +MD: net/minecraft/world/level/storage/loot/functions/SetItemCountFunction/m_6231_ ()Ljava/util/Set; net/minecraft/world/level/storage/loot/functions/SetItemCountFunction/getReferencedContextParams ()Ljava/util/Set; +MD: net/minecraft/world/level/storage/loot/functions/SetItemCountFunction/m_7162_ ()Lnet/minecraft/world/level/storage/loot/functions/LootItemFunctionType; net/minecraft/world/level/storage/loot/functions/SetItemCountFunction/getType ()Lnet/minecraft/world/level/storage/loot/functions/LootItemFunctionType; +MD: net/minecraft/world/level/storage/loot/functions/SetItemCountFunction/m_7372_ (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/level/storage/loot/LootContext;)Lnet/minecraft/world/item/ItemStack; net/minecraft/world/level/storage/loot/functions/SetItemCountFunction/run (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/level/storage/loot/LootContext;)Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/level/storage/loot/functions/SetItemCountFunction$Serializer/ ()V net/minecraft/world/level/storage/loot/functions/SetItemCountFunction$Serializer/ ()V +MD: net/minecraft/world/level/storage/loot/functions/SetItemCountFunction$Serializer/m_6170_ (Lcom/google/gson/JsonObject;Lnet/minecraft/world/level/storage/loot/functions/LootItemConditionalFunction;Lcom/google/gson/JsonSerializationContext;)V net/minecraft/world/level/storage/loot/functions/SetItemCountFunction$Serializer/serialize (Lcom/google/gson/JsonObject;Lnet/minecraft/world/level/storage/loot/functions/LootItemConditionalFunction;Lcom/google/gson/JsonSerializationContext;)V +MD: net/minecraft/world/level/storage/loot/functions/SetItemCountFunction$Serializer/m_6170_ (Lcom/google/gson/JsonObject;Ljava/lang/Object;Lcom/google/gson/JsonSerializationContext;)V net/minecraft/world/level/storage/loot/functions/SetItemCountFunction$Serializer/serialize (Lcom/google/gson/JsonObject;Ljava/lang/Object;Lcom/google/gson/JsonSerializationContext;)V +MD: net/minecraft/world/level/storage/loot/functions/SetItemCountFunction$Serializer/m_6170_ (Lcom/google/gson/JsonObject;Lnet/minecraft/world/level/storage/loot/functions/SetItemCountFunction;Lcom/google/gson/JsonSerializationContext;)V net/minecraft/world/level/storage/loot/functions/SetItemCountFunction$Serializer/serialize (Lcom/google/gson/JsonObject;Lnet/minecraft/world/level/storage/loot/functions/SetItemCountFunction;Lcom/google/gson/JsonSerializationContext;)V +MD: net/minecraft/world/level/storage/loot/functions/SetItemCountFunction$Serializer/m_6821_ (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;[Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;)Lnet/minecraft/world/level/storage/loot/functions/LootItemConditionalFunction; net/minecraft/world/level/storage/loot/functions/SetItemCountFunction$Serializer/deserialize (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;[Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;)Lnet/minecraft/world/level/storage/loot/functions/LootItemConditionalFunction; +MD: net/minecraft/world/level/storage/loot/functions/SetItemCountFunction$Serializer/m_6821_ (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;[Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;)Lnet/minecraft/world/level/storage/loot/functions/SetItemCountFunction; net/minecraft/world/level/storage/loot/functions/SetItemCountFunction$Serializer/deserialize (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;[Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;)Lnet/minecraft/world/level/storage/loot/functions/SetItemCountFunction; +MD: net/minecraft/world/level/storage/loot/functions/SetItemDamageFunction/ ()V net/minecraft/world/level/storage/loot/functions/SetItemDamageFunction/ ()V +MD: net/minecraft/world/level/storage/loot/functions/SetItemDamageFunction/ ([Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;Lnet/minecraft/world/level/storage/loot/providers/number/NumberProvider;Z)V net/minecraft/world/level/storage/loot/functions/SetItemDamageFunction/ ([Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;Lnet/minecraft/world/level/storage/loot/providers/number/NumberProvider;Z)V +MD: net/minecraft/world/level/storage/loot/functions/SetItemDamageFunction/m_165430_ (Lnet/minecraft/world/level/storage/loot/providers/number/NumberProvider;)Lnet/minecraft/world/level/storage/loot/functions/LootItemConditionalFunction$Builder; net/minecraft/world/level/storage/loot/functions/SetItemDamageFunction/setDamage (Lnet/minecraft/world/level/storage/loot/providers/number/NumberProvider;)Lnet/minecraft/world/level/storage/loot/functions/LootItemConditionalFunction$Builder; +MD: net/minecraft/world/level/storage/loot/functions/SetItemDamageFunction/m_165432_ (Lnet/minecraft/world/level/storage/loot/providers/number/NumberProvider;Z)Lnet/minecraft/world/level/storage/loot/functions/LootItemConditionalFunction$Builder; net/minecraft/world/level/storage/loot/functions/SetItemDamageFunction/setDamage (Lnet/minecraft/world/level/storage/loot/providers/number/NumberProvider;Z)Lnet/minecraft/world/level/storage/loot/functions/LootItemConditionalFunction$Builder; +MD: net/minecraft/world/level/storage/loot/functions/SetItemDamageFunction/m_165435_ (Lnet/minecraft/world/level/storage/loot/providers/number/NumberProvider;Z[Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;)Lnet/minecraft/world/level/storage/loot/functions/LootItemFunction; net/minecraft/world/level/storage/loot/functions/SetItemDamageFunction/lambda$setDamage$1 (Lnet/minecraft/world/level/storage/loot/providers/number/NumberProvider;Z[Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;)Lnet/minecraft/world/level/storage/loot/functions/LootItemFunction; +MD: net/minecraft/world/level/storage/loot/functions/SetItemDamageFunction/m_165439_ (Lnet/minecraft/world/level/storage/loot/providers/number/NumberProvider;[Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;)Lnet/minecraft/world/level/storage/loot/functions/LootItemFunction; net/minecraft/world/level/storage/loot/functions/SetItemDamageFunction/lambda$setDamage$0 (Lnet/minecraft/world/level/storage/loot/providers/number/NumberProvider;[Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;)Lnet/minecraft/world/level/storage/loot/functions/LootItemFunction; +MD: net/minecraft/world/level/storage/loot/functions/SetItemDamageFunction/m_6231_ ()Ljava/util/Set; net/minecraft/world/level/storage/loot/functions/SetItemDamageFunction/getReferencedContextParams ()Ljava/util/Set; +MD: net/minecraft/world/level/storage/loot/functions/SetItemDamageFunction/m_7162_ ()Lnet/minecraft/world/level/storage/loot/functions/LootItemFunctionType; net/minecraft/world/level/storage/loot/functions/SetItemDamageFunction/getType ()Lnet/minecraft/world/level/storage/loot/functions/LootItemFunctionType; +MD: net/minecraft/world/level/storage/loot/functions/SetItemDamageFunction/m_7372_ (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/level/storage/loot/LootContext;)Lnet/minecraft/world/item/ItemStack; net/minecraft/world/level/storage/loot/functions/SetItemDamageFunction/run (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/level/storage/loot/LootContext;)Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/level/storage/loot/functions/SetItemDamageFunction$Serializer/ ()V net/minecraft/world/level/storage/loot/functions/SetItemDamageFunction$Serializer/ ()V +MD: net/minecraft/world/level/storage/loot/functions/SetItemDamageFunction$Serializer/m_6170_ (Lcom/google/gson/JsonObject;Lnet/minecraft/world/level/storage/loot/functions/LootItemConditionalFunction;Lcom/google/gson/JsonSerializationContext;)V net/minecraft/world/level/storage/loot/functions/SetItemDamageFunction$Serializer/serialize (Lcom/google/gson/JsonObject;Lnet/minecraft/world/level/storage/loot/functions/LootItemConditionalFunction;Lcom/google/gson/JsonSerializationContext;)V +MD: net/minecraft/world/level/storage/loot/functions/SetItemDamageFunction$Serializer/m_6170_ (Lcom/google/gson/JsonObject;Ljava/lang/Object;Lcom/google/gson/JsonSerializationContext;)V net/minecraft/world/level/storage/loot/functions/SetItemDamageFunction$Serializer/serialize (Lcom/google/gson/JsonObject;Ljava/lang/Object;Lcom/google/gson/JsonSerializationContext;)V +MD: net/minecraft/world/level/storage/loot/functions/SetItemDamageFunction$Serializer/m_6170_ (Lcom/google/gson/JsonObject;Lnet/minecraft/world/level/storage/loot/functions/SetItemDamageFunction;Lcom/google/gson/JsonSerializationContext;)V net/minecraft/world/level/storage/loot/functions/SetItemDamageFunction$Serializer/serialize (Lcom/google/gson/JsonObject;Lnet/minecraft/world/level/storage/loot/functions/SetItemDamageFunction;Lcom/google/gson/JsonSerializationContext;)V +MD: net/minecraft/world/level/storage/loot/functions/SetItemDamageFunction$Serializer/m_6821_ (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;[Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;)Lnet/minecraft/world/level/storage/loot/functions/LootItemConditionalFunction; net/minecraft/world/level/storage/loot/functions/SetItemDamageFunction$Serializer/deserialize (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;[Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;)Lnet/minecraft/world/level/storage/loot/functions/LootItemConditionalFunction; +MD: net/minecraft/world/level/storage/loot/functions/SetItemDamageFunction$Serializer/m_6821_ (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;[Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;)Lnet/minecraft/world/level/storage/loot/functions/SetItemDamageFunction; net/minecraft/world/level/storage/loot/functions/SetItemDamageFunction$Serializer/deserialize (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;[Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;)Lnet/minecraft/world/level/storage/loot/functions/SetItemDamageFunction; +MD: net/minecraft/world/level/storage/loot/functions/SetLoreFunction/ ([Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;ZLjava/util/List;Lnet/minecraft/world/level/storage/loot/LootContext$EntityTarget;)V net/minecraft/world/level/storage/loot/functions/SetLoreFunction/ ([Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;ZLjava/util/List;Lnet/minecraft/world/level/storage/loot/LootContext$EntityTarget;)V +MD: net/minecraft/world/level/storage/loot/functions/SetLoreFunction/m_165443_ ()Lnet/minecraft/world/level/storage/loot/functions/SetLoreFunction$Builder; net/minecraft/world/level/storage/loot/functions/SetLoreFunction/setLore ()Lnet/minecraft/world/level/storage/loot/functions/SetLoreFunction$Builder; +MD: net/minecraft/world/level/storage/loot/functions/SetLoreFunction/m_6231_ ()Ljava/util/Set; net/minecraft/world/level/storage/loot/functions/SetLoreFunction/getReferencedContextParams ()Ljava/util/Set; +MD: net/minecraft/world/level/storage/loot/functions/SetLoreFunction/m_7162_ ()Lnet/minecraft/world/level/storage/loot/functions/LootItemFunctionType; net/minecraft/world/level/storage/loot/functions/SetLoreFunction/getType ()Lnet/minecraft/world/level/storage/loot/functions/LootItemFunctionType; +MD: net/minecraft/world/level/storage/loot/functions/SetLoreFunction/m_7372_ (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/level/storage/loot/LootContext;)Lnet/minecraft/world/item/ItemStack; net/minecraft/world/level/storage/loot/functions/SetLoreFunction/run (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/level/storage/loot/LootContext;)Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/level/storage/loot/functions/SetLoreFunction/m_81091_ (Lnet/minecraft/world/item/ItemStack;Z)Lnet/minecraft/nbt/ListTag; net/minecraft/world/level/storage/loot/functions/SetLoreFunction/getLoreTag (Lnet/minecraft/world/item/ItemStack;Z)Lnet/minecraft/nbt/ListTag; +MD: net/minecraft/world/level/storage/loot/functions/SetLoreFunction$Builder/ ()V net/minecraft/world/level/storage/loot/functions/SetLoreFunction$Builder/ ()V +MD: net/minecraft/world/level/storage/loot/functions/SetLoreFunction$Builder/m_165449_ (Lnet/minecraft/world/level/storage/loot/LootContext$EntityTarget;)Lnet/minecraft/world/level/storage/loot/functions/SetLoreFunction$Builder; net/minecraft/world/level/storage/loot/functions/SetLoreFunction$Builder/setResolutionContext (Lnet/minecraft/world/level/storage/loot/LootContext$EntityTarget;)Lnet/minecraft/world/level/storage/loot/functions/SetLoreFunction$Builder; +MD: net/minecraft/world/level/storage/loot/functions/SetLoreFunction$Builder/m_165451_ (Lnet/minecraft/network/chat/Component;)Lnet/minecraft/world/level/storage/loot/functions/SetLoreFunction$Builder; net/minecraft/world/level/storage/loot/functions/SetLoreFunction$Builder/addLine (Lnet/minecraft/network/chat/Component;)Lnet/minecraft/world/level/storage/loot/functions/SetLoreFunction$Builder; +MD: net/minecraft/world/level/storage/loot/functions/SetLoreFunction$Builder/m_165453_ (Z)Lnet/minecraft/world/level/storage/loot/functions/SetLoreFunction$Builder; net/minecraft/world/level/storage/loot/functions/SetLoreFunction$Builder/setReplace (Z)Lnet/minecraft/world/level/storage/loot/functions/SetLoreFunction$Builder; +MD: net/minecraft/world/level/storage/loot/functions/SetLoreFunction$Builder/m_6477_ ()Lnet/minecraft/world/level/storage/loot/functions/SetLoreFunction$Builder; net/minecraft/world/level/storage/loot/functions/SetLoreFunction$Builder/getThis ()Lnet/minecraft/world/level/storage/loot/functions/SetLoreFunction$Builder; +MD: net/minecraft/world/level/storage/loot/functions/SetLoreFunction$Builder/m_6477_ ()Lnet/minecraft/world/level/storage/loot/functions/LootItemConditionalFunction$Builder; net/minecraft/world/level/storage/loot/functions/SetLoreFunction$Builder/getThis ()Lnet/minecraft/world/level/storage/loot/functions/LootItemConditionalFunction$Builder; +MD: net/minecraft/world/level/storage/loot/functions/SetLoreFunction$Builder/m_7453_ ()Lnet/minecraft/world/level/storage/loot/functions/LootItemFunction; net/minecraft/world/level/storage/loot/functions/SetLoreFunction$Builder/build ()Lnet/minecraft/world/level/storage/loot/functions/LootItemFunction; +MD: net/minecraft/world/level/storage/loot/functions/SetLoreFunction$Serializer/ ()V net/minecraft/world/level/storage/loot/functions/SetLoreFunction$Serializer/ ()V +MD: net/minecraft/world/level/storage/loot/functions/SetLoreFunction$Serializer/m_6170_ (Lcom/google/gson/JsonObject;Lnet/minecraft/world/level/storage/loot/functions/LootItemConditionalFunction;Lcom/google/gson/JsonSerializationContext;)V net/minecraft/world/level/storage/loot/functions/SetLoreFunction$Serializer/serialize (Lcom/google/gson/JsonObject;Lnet/minecraft/world/level/storage/loot/functions/LootItemConditionalFunction;Lcom/google/gson/JsonSerializationContext;)V +MD: net/minecraft/world/level/storage/loot/functions/SetLoreFunction$Serializer/m_6170_ (Lcom/google/gson/JsonObject;Ljava/lang/Object;Lcom/google/gson/JsonSerializationContext;)V net/minecraft/world/level/storage/loot/functions/SetLoreFunction$Serializer/serialize (Lcom/google/gson/JsonObject;Ljava/lang/Object;Lcom/google/gson/JsonSerializationContext;)V +MD: net/minecraft/world/level/storage/loot/functions/SetLoreFunction$Serializer/m_6170_ (Lcom/google/gson/JsonObject;Lnet/minecraft/world/level/storage/loot/functions/SetLoreFunction;Lcom/google/gson/JsonSerializationContext;)V net/minecraft/world/level/storage/loot/functions/SetLoreFunction$Serializer/serialize (Lcom/google/gson/JsonObject;Lnet/minecraft/world/level/storage/loot/functions/SetLoreFunction;Lcom/google/gson/JsonSerializationContext;)V +MD: net/minecraft/world/level/storage/loot/functions/SetLoreFunction$Serializer/m_6821_ (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;[Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;)Lnet/minecraft/world/level/storage/loot/functions/LootItemConditionalFunction; net/minecraft/world/level/storage/loot/functions/SetLoreFunction$Serializer/deserialize (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;[Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;)Lnet/minecraft/world/level/storage/loot/functions/LootItemConditionalFunction; +MD: net/minecraft/world/level/storage/loot/functions/SetLoreFunction$Serializer/m_6821_ (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;[Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;)Lnet/minecraft/world/level/storage/loot/functions/SetLoreFunction; net/minecraft/world/level/storage/loot/functions/SetLoreFunction$Serializer/deserialize (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;[Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;)Lnet/minecraft/world/level/storage/loot/functions/SetLoreFunction; +MD: net/minecraft/world/level/storage/loot/functions/SetNameFunction/ ()V net/minecraft/world/level/storage/loot/functions/SetNameFunction/ ()V +MD: net/minecraft/world/level/storage/loot/functions/SetNameFunction/ ([Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;Lnet/minecraft/network/chat/Component;Lnet/minecraft/world/level/storage/loot/LootContext$EntityTarget;)V net/minecraft/world/level/storage/loot/functions/SetNameFunction/ ([Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;Lnet/minecraft/network/chat/Component;Lnet/minecraft/world/level/storage/loot/LootContext$EntityTarget;)V +MD: net/minecraft/world/level/storage/loot/functions/SetNameFunction/m_165457_ (Lnet/minecraft/network/chat/Component;)Lnet/minecraft/world/level/storage/loot/functions/LootItemConditionalFunction$Builder; net/minecraft/world/level/storage/loot/functions/SetNameFunction/setName (Lnet/minecraft/network/chat/Component;)Lnet/minecraft/world/level/storage/loot/functions/LootItemConditionalFunction$Builder; +MD: net/minecraft/world/level/storage/loot/functions/SetNameFunction/m_165459_ (Lnet/minecraft/network/chat/Component;Lnet/minecraft/world/level/storage/loot/LootContext$EntityTarget;)Lnet/minecraft/world/level/storage/loot/functions/LootItemConditionalFunction$Builder; net/minecraft/world/level/storage/loot/functions/SetNameFunction/setName (Lnet/minecraft/network/chat/Component;Lnet/minecraft/world/level/storage/loot/LootContext$EntityTarget;)Lnet/minecraft/world/level/storage/loot/functions/LootItemConditionalFunction$Builder; +MD: net/minecraft/world/level/storage/loot/functions/SetNameFunction/m_165462_ (Lnet/minecraft/network/chat/Component;Lnet/minecraft/world/level/storage/loot/LootContext$EntityTarget;[Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;)Lnet/minecraft/world/level/storage/loot/functions/LootItemFunction; net/minecraft/world/level/storage/loot/functions/SetNameFunction/lambda$setName$3 (Lnet/minecraft/network/chat/Component;Lnet/minecraft/world/level/storage/loot/LootContext$EntityTarget;[Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;)Lnet/minecraft/world/level/storage/loot/functions/LootItemFunction; +MD: net/minecraft/world/level/storage/loot/functions/SetNameFunction/m_165466_ (Lnet/minecraft/network/chat/Component;[Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;)Lnet/minecraft/world/level/storage/loot/functions/LootItemFunction; net/minecraft/world/level/storage/loot/functions/SetNameFunction/lambda$setName$2 (Lnet/minecraft/network/chat/Component;[Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;)Lnet/minecraft/world/level/storage/loot/functions/LootItemFunction; +MD: net/minecraft/world/level/storage/loot/functions/SetNameFunction/m_6231_ ()Ljava/util/Set; net/minecraft/world/level/storage/loot/functions/SetNameFunction/getReferencedContextParams ()Ljava/util/Set; +MD: net/minecraft/world/level/storage/loot/functions/SetNameFunction/m_7162_ ()Lnet/minecraft/world/level/storage/loot/functions/LootItemFunctionType; net/minecraft/world/level/storage/loot/functions/SetNameFunction/getType ()Lnet/minecraft/world/level/storage/loot/functions/LootItemFunctionType; +MD: net/minecraft/world/level/storage/loot/functions/SetNameFunction/m_7372_ (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/level/storage/loot/LootContext;)Lnet/minecraft/world/item/ItemStack; net/minecraft/world/level/storage/loot/functions/SetNameFunction/run (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/level/storage/loot/LootContext;)Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/level/storage/loot/functions/SetNameFunction/m_81139_ (Lnet/minecraft/world/level/storage/loot/LootContext;Lnet/minecraft/world/level/storage/loot/LootContext$EntityTarget;)Ljava/util/function/UnaryOperator; net/minecraft/world/level/storage/loot/functions/SetNameFunction/createResolver (Lnet/minecraft/world/level/storage/loot/LootContext;Lnet/minecraft/world/level/storage/loot/LootContext$EntityTarget;)Ljava/util/function/UnaryOperator; +MD: net/minecraft/world/level/storage/loot/functions/SetNameFunction/m_81144_ (Lnet/minecraft/commands/CommandSourceStack;Lnet/minecraft/world/entity/Entity;Lnet/minecraft/network/chat/Component;)Lnet/minecraft/network/chat/Component; net/minecraft/world/level/storage/loot/functions/SetNameFunction/lambda$createResolver$0 (Lnet/minecraft/commands/CommandSourceStack;Lnet/minecraft/world/entity/Entity;Lnet/minecraft/network/chat/Component;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/world/level/storage/loot/functions/SetNameFunction/m_81151_ (Lnet/minecraft/network/chat/Component;)Lnet/minecraft/network/chat/Component; net/minecraft/world/level/storage/loot/functions/SetNameFunction/lambda$createResolver$1 (Lnet/minecraft/network/chat/Component;)Lnet/minecraft/network/chat/Component; +MD: net/minecraft/world/level/storage/loot/functions/SetNameFunction$Serializer/ ()V net/minecraft/world/level/storage/loot/functions/SetNameFunction$Serializer/ ()V +MD: net/minecraft/world/level/storage/loot/functions/SetNameFunction$Serializer/m_6170_ (Lcom/google/gson/JsonObject;Lnet/minecraft/world/level/storage/loot/functions/LootItemConditionalFunction;Lcom/google/gson/JsonSerializationContext;)V net/minecraft/world/level/storage/loot/functions/SetNameFunction$Serializer/serialize (Lcom/google/gson/JsonObject;Lnet/minecraft/world/level/storage/loot/functions/LootItemConditionalFunction;Lcom/google/gson/JsonSerializationContext;)V +MD: net/minecraft/world/level/storage/loot/functions/SetNameFunction$Serializer/m_6170_ (Lcom/google/gson/JsonObject;Ljava/lang/Object;Lcom/google/gson/JsonSerializationContext;)V net/minecraft/world/level/storage/loot/functions/SetNameFunction$Serializer/serialize (Lcom/google/gson/JsonObject;Ljava/lang/Object;Lcom/google/gson/JsonSerializationContext;)V +MD: net/minecraft/world/level/storage/loot/functions/SetNameFunction$Serializer/m_6170_ (Lcom/google/gson/JsonObject;Lnet/minecraft/world/level/storage/loot/functions/SetNameFunction;Lcom/google/gson/JsonSerializationContext;)V net/minecraft/world/level/storage/loot/functions/SetNameFunction$Serializer/serialize (Lcom/google/gson/JsonObject;Lnet/minecraft/world/level/storage/loot/functions/SetNameFunction;Lcom/google/gson/JsonSerializationContext;)V +MD: net/minecraft/world/level/storage/loot/functions/SetNameFunction$Serializer/m_6821_ (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;[Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;)Lnet/minecraft/world/level/storage/loot/functions/LootItemConditionalFunction; net/minecraft/world/level/storage/loot/functions/SetNameFunction$Serializer/deserialize (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;[Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;)Lnet/minecraft/world/level/storage/loot/functions/LootItemConditionalFunction; +MD: net/minecraft/world/level/storage/loot/functions/SetNameFunction$Serializer/m_6821_ (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;[Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;)Lnet/minecraft/world/level/storage/loot/functions/SetNameFunction; net/minecraft/world/level/storage/loot/functions/SetNameFunction$Serializer/deserialize (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;[Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;)Lnet/minecraft/world/level/storage/loot/functions/SetNameFunction; +MD: net/minecraft/world/level/storage/loot/functions/SetNbtFunction/ ([Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/level/storage/loot/functions/SetNbtFunction/ ([Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/level/storage/loot/functions/SetNbtFunction/m_7162_ ()Lnet/minecraft/world/level/storage/loot/functions/LootItemFunctionType; net/minecraft/world/level/storage/loot/functions/SetNbtFunction/getType ()Lnet/minecraft/world/level/storage/loot/functions/LootItemFunctionType; +MD: net/minecraft/world/level/storage/loot/functions/SetNbtFunction/m_7372_ (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/level/storage/loot/LootContext;)Lnet/minecraft/world/item/ItemStack; net/minecraft/world/level/storage/loot/functions/SetNbtFunction/run (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/level/storage/loot/LootContext;)Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/level/storage/loot/functions/SetNbtFunction/m_81187_ (Lnet/minecraft/nbt/CompoundTag;)Lnet/minecraft/world/level/storage/loot/functions/LootItemConditionalFunction$Builder; net/minecraft/world/level/storage/loot/functions/SetNbtFunction/setTag (Lnet/minecraft/nbt/CompoundTag;)Lnet/minecraft/world/level/storage/loot/functions/LootItemConditionalFunction$Builder; +MD: net/minecraft/world/level/storage/loot/functions/SetNbtFunction/m_81189_ (Lnet/minecraft/nbt/CompoundTag;[Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;)Lnet/minecraft/world/level/storage/loot/functions/LootItemFunction; net/minecraft/world/level/storage/loot/functions/SetNbtFunction/lambda$setTag$0 (Lnet/minecraft/nbt/CompoundTag;[Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;)Lnet/minecraft/world/level/storage/loot/functions/LootItemFunction; +MD: net/minecraft/world/level/storage/loot/functions/SetNbtFunction$Serializer/ ()V net/minecraft/world/level/storage/loot/functions/SetNbtFunction$Serializer/ ()V +MD: net/minecraft/world/level/storage/loot/functions/SetNbtFunction$Serializer/m_6170_ (Lcom/google/gson/JsonObject;Lnet/minecraft/world/level/storage/loot/functions/LootItemConditionalFunction;Lcom/google/gson/JsonSerializationContext;)V net/minecraft/world/level/storage/loot/functions/SetNbtFunction$Serializer/serialize (Lcom/google/gson/JsonObject;Lnet/minecraft/world/level/storage/loot/functions/LootItemConditionalFunction;Lcom/google/gson/JsonSerializationContext;)V +MD: net/minecraft/world/level/storage/loot/functions/SetNbtFunction$Serializer/m_6170_ (Lcom/google/gson/JsonObject;Lnet/minecraft/world/level/storage/loot/functions/SetNbtFunction;Lcom/google/gson/JsonSerializationContext;)V net/minecraft/world/level/storage/loot/functions/SetNbtFunction$Serializer/serialize (Lcom/google/gson/JsonObject;Lnet/minecraft/world/level/storage/loot/functions/SetNbtFunction;Lcom/google/gson/JsonSerializationContext;)V +MD: net/minecraft/world/level/storage/loot/functions/SetNbtFunction$Serializer/m_6170_ (Lcom/google/gson/JsonObject;Ljava/lang/Object;Lcom/google/gson/JsonSerializationContext;)V net/minecraft/world/level/storage/loot/functions/SetNbtFunction$Serializer/serialize (Lcom/google/gson/JsonObject;Ljava/lang/Object;Lcom/google/gson/JsonSerializationContext;)V +MD: net/minecraft/world/level/storage/loot/functions/SetNbtFunction$Serializer/m_6821_ (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;[Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;)Lnet/minecraft/world/level/storage/loot/functions/SetNbtFunction; net/minecraft/world/level/storage/loot/functions/SetNbtFunction$Serializer/deserialize (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;[Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;)Lnet/minecraft/world/level/storage/loot/functions/SetNbtFunction; +MD: net/minecraft/world/level/storage/loot/functions/SetNbtFunction$Serializer/m_6821_ (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;[Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;)Lnet/minecraft/world/level/storage/loot/functions/LootItemConditionalFunction; net/minecraft/world/level/storage/loot/functions/SetNbtFunction$Serializer/deserialize (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;[Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;)Lnet/minecraft/world/level/storage/loot/functions/LootItemConditionalFunction; +MD: net/minecraft/world/level/storage/loot/functions/SetPotionFunction/ ([Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;Lnet/minecraft/world/item/alchemy/Potion;)V net/minecraft/world/level/storage/loot/functions/SetPotionFunction/ ([Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;Lnet/minecraft/world/item/alchemy/Potion;)V +MD: net/minecraft/world/level/storage/loot/functions/SetPotionFunction/m_193075_ (Lnet/minecraft/world/item/alchemy/Potion;)Lnet/minecraft/world/level/storage/loot/functions/LootItemConditionalFunction$Builder; net/minecraft/world/level/storage/loot/functions/SetPotionFunction/setPotion (Lnet/minecraft/world/item/alchemy/Potion;)Lnet/minecraft/world/level/storage/loot/functions/LootItemConditionalFunction$Builder; +MD: net/minecraft/world/level/storage/loot/functions/SetPotionFunction/m_193077_ (Lnet/minecraft/world/item/alchemy/Potion;[Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;)Lnet/minecraft/world/level/storage/loot/functions/LootItemFunction; net/minecraft/world/level/storage/loot/functions/SetPotionFunction/lambda$setPotion$0 (Lnet/minecraft/world/item/alchemy/Potion;[Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;)Lnet/minecraft/world/level/storage/loot/functions/LootItemFunction; +MD: net/minecraft/world/level/storage/loot/functions/SetPotionFunction/m_7162_ ()Lnet/minecraft/world/level/storage/loot/functions/LootItemFunctionType; net/minecraft/world/level/storage/loot/functions/SetPotionFunction/getType ()Lnet/minecraft/world/level/storage/loot/functions/LootItemFunctionType; +MD: net/minecraft/world/level/storage/loot/functions/SetPotionFunction/m_7372_ (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/level/storage/loot/LootContext;)Lnet/minecraft/world/item/ItemStack; net/minecraft/world/level/storage/loot/functions/SetPotionFunction/run (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/level/storage/loot/LootContext;)Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/level/storage/loot/functions/SetPotionFunction$Serializer/ ()V net/minecraft/world/level/storage/loot/functions/SetPotionFunction$Serializer/ ()V +MD: net/minecraft/world/level/storage/loot/functions/SetPotionFunction$Serializer/m_193097_ (Ljava/lang/String;)Lcom/google/gson/JsonSyntaxException; net/minecraft/world/level/storage/loot/functions/SetPotionFunction$Serializer/lambda$deserialize$0 (Ljava/lang/String;)Lcom/google/gson/JsonSyntaxException; +MD: net/minecraft/world/level/storage/loot/functions/SetPotionFunction$Serializer/m_6170_ (Lcom/google/gson/JsonObject;Lnet/minecraft/world/level/storage/loot/functions/LootItemConditionalFunction;Lcom/google/gson/JsonSerializationContext;)V net/minecraft/world/level/storage/loot/functions/SetPotionFunction$Serializer/serialize (Lcom/google/gson/JsonObject;Lnet/minecraft/world/level/storage/loot/functions/LootItemConditionalFunction;Lcom/google/gson/JsonSerializationContext;)V +MD: net/minecraft/world/level/storage/loot/functions/SetPotionFunction$Serializer/m_6170_ (Lcom/google/gson/JsonObject;Ljava/lang/Object;Lcom/google/gson/JsonSerializationContext;)V net/minecraft/world/level/storage/loot/functions/SetPotionFunction$Serializer/serialize (Lcom/google/gson/JsonObject;Ljava/lang/Object;Lcom/google/gson/JsonSerializationContext;)V +MD: net/minecraft/world/level/storage/loot/functions/SetPotionFunction$Serializer/m_6170_ (Lcom/google/gson/JsonObject;Lnet/minecraft/world/level/storage/loot/functions/SetPotionFunction;Lcom/google/gson/JsonSerializationContext;)V net/minecraft/world/level/storage/loot/functions/SetPotionFunction$Serializer/serialize (Lcom/google/gson/JsonObject;Lnet/minecraft/world/level/storage/loot/functions/SetPotionFunction;Lcom/google/gson/JsonSerializationContext;)V +MD: net/minecraft/world/level/storage/loot/functions/SetPotionFunction$Serializer/m_6821_ (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;[Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;)Lnet/minecraft/world/level/storage/loot/functions/SetPotionFunction; net/minecraft/world/level/storage/loot/functions/SetPotionFunction$Serializer/deserialize (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;[Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;)Lnet/minecraft/world/level/storage/loot/functions/SetPotionFunction; +MD: net/minecraft/world/level/storage/loot/functions/SetPotionFunction$Serializer/m_6821_ (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;[Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;)Lnet/minecraft/world/level/storage/loot/functions/LootItemConditionalFunction; net/minecraft/world/level/storage/loot/functions/SetPotionFunction$Serializer/deserialize (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;[Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;)Lnet/minecraft/world/level/storage/loot/functions/LootItemConditionalFunction; +MD: net/minecraft/world/level/storage/loot/functions/SetStewEffectFunction/ ([Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;Ljava/util/Map;)V net/minecraft/world/level/storage/loot/functions/SetStewEffectFunction/ ([Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;Ljava/util/Map;)V +MD: net/minecraft/world/level/storage/loot/functions/SetStewEffectFunction/m_278609_ (Lnet/minecraft/world/level/storage/loot/providers/number/NumberProvider;)Ljava/util/stream/Stream; net/minecraft/world/level/storage/loot/functions/SetStewEffectFunction/lambda$getReferencedContextParams$0 (Lnet/minecraft/world/level/storage/loot/providers/number/NumberProvider;)Ljava/util/stream/Stream; +MD: net/minecraft/world/level/storage/loot/functions/SetStewEffectFunction/m_6231_ ()Ljava/util/Set; net/minecraft/world/level/storage/loot/functions/SetStewEffectFunction/getReferencedContextParams ()Ljava/util/Set; +MD: net/minecraft/world/level/storage/loot/functions/SetStewEffectFunction/m_7162_ ()Lnet/minecraft/world/level/storage/loot/functions/LootItemFunctionType; net/minecraft/world/level/storage/loot/functions/SetStewEffectFunction/getType ()Lnet/minecraft/world/level/storage/loot/functions/LootItemFunctionType; +MD: net/minecraft/world/level/storage/loot/functions/SetStewEffectFunction/m_7372_ (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/level/storage/loot/LootContext;)Lnet/minecraft/world/item/ItemStack; net/minecraft/world/level/storage/loot/functions/SetStewEffectFunction/run (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/level/storage/loot/LootContext;)Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/level/storage/loot/functions/SetStewEffectFunction/m_81228_ ()Lnet/minecraft/world/level/storage/loot/functions/SetStewEffectFunction$Builder; net/minecraft/world/level/storage/loot/functions/SetStewEffectFunction/stewEffect ()Lnet/minecraft/world/level/storage/loot/functions/SetStewEffectFunction$Builder; +MD: net/minecraft/world/level/storage/loot/functions/SetStewEffectFunction$Builder/ ()V net/minecraft/world/level/storage/loot/functions/SetStewEffectFunction$Builder/ ()V +MD: net/minecraft/world/level/storage/loot/functions/SetStewEffectFunction$Builder/m_165472_ (Lnet/minecraft/world/effect/MobEffect;Lnet/minecraft/world/level/storage/loot/providers/number/NumberProvider;)Lnet/minecraft/world/level/storage/loot/functions/SetStewEffectFunction$Builder; net/minecraft/world/level/storage/loot/functions/SetStewEffectFunction$Builder/withEffect (Lnet/minecraft/world/effect/MobEffect;Lnet/minecraft/world/level/storage/loot/providers/number/NumberProvider;)Lnet/minecraft/world/level/storage/loot/functions/SetStewEffectFunction$Builder; +MD: net/minecraft/world/level/storage/loot/functions/SetStewEffectFunction$Builder/m_6477_ ()Lnet/minecraft/world/level/storage/loot/functions/SetStewEffectFunction$Builder; net/minecraft/world/level/storage/loot/functions/SetStewEffectFunction$Builder/getThis ()Lnet/minecraft/world/level/storage/loot/functions/SetStewEffectFunction$Builder; +MD: net/minecraft/world/level/storage/loot/functions/SetStewEffectFunction$Builder/m_6477_ ()Lnet/minecraft/world/level/storage/loot/functions/LootItemConditionalFunction$Builder; net/minecraft/world/level/storage/loot/functions/SetStewEffectFunction$Builder/getThis ()Lnet/minecraft/world/level/storage/loot/functions/LootItemConditionalFunction$Builder; +MD: net/minecraft/world/level/storage/loot/functions/SetStewEffectFunction$Builder/m_7453_ ()Lnet/minecraft/world/level/storage/loot/functions/LootItemFunction; net/minecraft/world/level/storage/loot/functions/SetStewEffectFunction$Builder/build ()Lnet/minecraft/world/level/storage/loot/functions/LootItemFunction; +MD: net/minecraft/world/level/storage/loot/functions/SetStewEffectFunction$Serializer/ ()V net/minecraft/world/level/storage/loot/functions/SetStewEffectFunction$Serializer/ ()V +MD: net/minecraft/world/level/storage/loot/functions/SetStewEffectFunction$Serializer/m_6170_ (Lcom/google/gson/JsonObject;Lnet/minecraft/world/level/storage/loot/functions/LootItemConditionalFunction;Lcom/google/gson/JsonSerializationContext;)V net/minecraft/world/level/storage/loot/functions/SetStewEffectFunction$Serializer/serialize (Lcom/google/gson/JsonObject;Lnet/minecraft/world/level/storage/loot/functions/LootItemConditionalFunction;Lcom/google/gson/JsonSerializationContext;)V +MD: net/minecraft/world/level/storage/loot/functions/SetStewEffectFunction$Serializer/m_6170_ (Lcom/google/gson/JsonObject;Ljava/lang/Object;Lcom/google/gson/JsonSerializationContext;)V net/minecraft/world/level/storage/loot/functions/SetStewEffectFunction$Serializer/serialize (Lcom/google/gson/JsonObject;Ljava/lang/Object;Lcom/google/gson/JsonSerializationContext;)V +MD: net/minecraft/world/level/storage/loot/functions/SetStewEffectFunction$Serializer/m_6170_ (Lcom/google/gson/JsonObject;Lnet/minecraft/world/level/storage/loot/functions/SetStewEffectFunction;Lcom/google/gson/JsonSerializationContext;)V net/minecraft/world/level/storage/loot/functions/SetStewEffectFunction$Serializer/serialize (Lcom/google/gson/JsonObject;Lnet/minecraft/world/level/storage/loot/functions/SetStewEffectFunction;Lcom/google/gson/JsonSerializationContext;)V +MD: net/minecraft/world/level/storage/loot/functions/SetStewEffectFunction$Serializer/m_6821_ (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;[Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;)Lnet/minecraft/world/level/storage/loot/functions/LootItemConditionalFunction; net/minecraft/world/level/storage/loot/functions/SetStewEffectFunction$Serializer/deserialize (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;[Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;)Lnet/minecraft/world/level/storage/loot/functions/LootItemConditionalFunction; +MD: net/minecraft/world/level/storage/loot/functions/SetStewEffectFunction$Serializer/m_6821_ (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;[Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;)Lnet/minecraft/world/level/storage/loot/functions/SetStewEffectFunction; net/minecraft/world/level/storage/loot/functions/SetStewEffectFunction$Serializer/deserialize (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;[Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;)Lnet/minecraft/world/level/storage/loot/functions/SetStewEffectFunction; +MD: net/minecraft/world/level/storage/loot/functions/SetStewEffectFunction$Serializer/m_81254_ (Ljava/lang/String;)Lcom/google/gson/JsonSyntaxException; net/minecraft/world/level/storage/loot/functions/SetStewEffectFunction$Serializer/lambda$deserialize$0 (Ljava/lang/String;)Lcom/google/gson/JsonSyntaxException; +MD: net/minecraft/world/level/storage/loot/functions/SmeltItemFunction/ ()V net/minecraft/world/level/storage/loot/functions/SmeltItemFunction/ ()V +MD: net/minecraft/world/level/storage/loot/functions/SmeltItemFunction/ ([Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;)V net/minecraft/world/level/storage/loot/functions/SmeltItemFunction/ ([Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;)V +MD: net/minecraft/world/level/storage/loot/functions/SmeltItemFunction/m_7162_ ()Lnet/minecraft/world/level/storage/loot/functions/LootItemFunctionType; net/minecraft/world/level/storage/loot/functions/SmeltItemFunction/getType ()Lnet/minecraft/world/level/storage/loot/functions/LootItemFunctionType; +MD: net/minecraft/world/level/storage/loot/functions/SmeltItemFunction/m_7372_ (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/level/storage/loot/LootContext;)Lnet/minecraft/world/item/ItemStack; net/minecraft/world/level/storage/loot/functions/SmeltItemFunction/run (Lnet/minecraft/world/item/ItemStack;Lnet/minecraft/world/level/storage/loot/LootContext;)Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/level/storage/loot/functions/SmeltItemFunction/m_81271_ ()Lnet/minecraft/world/level/storage/loot/functions/LootItemConditionalFunction$Builder; net/minecraft/world/level/storage/loot/functions/SmeltItemFunction/smelted ()Lnet/minecraft/world/level/storage/loot/functions/LootItemConditionalFunction$Builder; +MD: net/minecraft/world/level/storage/loot/functions/SmeltItemFunction$Serializer/ ()V net/minecraft/world/level/storage/loot/functions/SmeltItemFunction$Serializer/ ()V +MD: net/minecraft/world/level/storage/loot/functions/SmeltItemFunction$Serializer/m_6821_ (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;[Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;)Lnet/minecraft/world/level/storage/loot/functions/SmeltItemFunction; net/minecraft/world/level/storage/loot/functions/SmeltItemFunction$Serializer/deserialize (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;[Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;)Lnet/minecraft/world/level/storage/loot/functions/SmeltItemFunction; +MD: net/minecraft/world/level/storage/loot/functions/SmeltItemFunction$Serializer/m_6821_ (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;[Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;)Lnet/minecraft/world/level/storage/loot/functions/LootItemConditionalFunction; net/minecraft/world/level/storage/loot/functions/SmeltItemFunction$Serializer/deserialize (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;[Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;)Lnet/minecraft/world/level/storage/loot/functions/LootItemConditionalFunction; +MD: net/minecraft/world/level/storage/loot/parameters/LootContextParam/ (Lnet/minecraft/resources/ResourceLocation;)V net/minecraft/world/level/storage/loot/parameters/LootContextParam/ (Lnet/minecraft/resources/ResourceLocation;)V +MD: net/minecraft/world/level/storage/loot/parameters/LootContextParam/m_81284_ ()Lnet/minecraft/resources/ResourceLocation; net/minecraft/world/level/storage/loot/parameters/LootContextParam/getName ()Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/world/level/storage/loot/parameters/LootContextParam/toString ()Ljava/lang/String; net/minecraft/world/level/storage/loot/parameters/LootContextParam/toString ()Ljava/lang/String; +MD: net/minecraft/world/level/storage/loot/parameters/LootContextParamSet/ (Ljava/util/Set;Ljava/util/Set;)V net/minecraft/world/level/storage/loot/parameters/LootContextParamSet/ (Ljava/util/Set;Ljava/util/Set;)V +MD: net/minecraft/world/level/storage/loot/parameters/LootContextParamSet/m_165475_ (Lnet/minecraft/world/level/storage/loot/parameters/LootContextParam;)Z net/minecraft/world/level/storage/loot/parameters/LootContextParamSet/isAllowed (Lnet/minecraft/world/level/storage/loot/parameters/LootContextParam;)Z +MD: net/minecraft/world/level/storage/loot/parameters/LootContextParamSet/m_165477_ ()Lnet/minecraft/world/level/storage/loot/parameters/LootContextParamSet$Builder; net/minecraft/world/level/storage/loot/parameters/LootContextParamSet/builder ()Lnet/minecraft/world/level/storage/loot/parameters/LootContextParamSet$Builder; +MD: net/minecraft/world/level/storage/loot/parameters/LootContextParamSet/m_81394_ ()Ljava/util/Set; net/minecraft/world/level/storage/loot/parameters/LootContextParamSet/getRequired ()Ljava/util/Set; +MD: net/minecraft/world/level/storage/loot/parameters/LootContextParamSet/m_81395_ (Lnet/minecraft/world/level/storage/loot/ValidationContext;Lnet/minecraft/world/level/storage/loot/LootContextUser;)V net/minecraft/world/level/storage/loot/parameters/LootContextParamSet/validateUser (Lnet/minecraft/world/level/storage/loot/ValidationContext;Lnet/minecraft/world/level/storage/loot/LootContextUser;)V +MD: net/minecraft/world/level/storage/loot/parameters/LootContextParamSet/m_81398_ ()Ljava/util/Set; net/minecraft/world/level/storage/loot/parameters/LootContextParamSet/getAllowed ()Ljava/util/Set; +MD: net/minecraft/world/level/storage/loot/parameters/LootContextParamSet/m_81399_ (Lnet/minecraft/world/level/storage/loot/parameters/LootContextParam;)Ljava/lang/String; net/minecraft/world/level/storage/loot/parameters/LootContextParamSet/lambda$toString$0 (Lnet/minecraft/world/level/storage/loot/parameters/LootContextParam;)Ljava/lang/String; +MD: net/minecraft/world/level/storage/loot/parameters/LootContextParamSet/toString ()Ljava/lang/String; net/minecraft/world/level/storage/loot/parameters/LootContextParamSet/toString ()Ljava/lang/String; +MD: net/minecraft/world/level/storage/loot/parameters/LootContextParamSet$Builder/ ()V net/minecraft/world/level/storage/loot/parameters/LootContextParamSet$Builder/ ()V +MD: net/minecraft/world/level/storage/loot/parameters/LootContextParamSet$Builder/m_81405_ ()Lnet/minecraft/world/level/storage/loot/parameters/LootContextParamSet; net/minecraft/world/level/storage/loot/parameters/LootContextParamSet$Builder/build ()Lnet/minecraft/world/level/storage/loot/parameters/LootContextParamSet; +MD: net/minecraft/world/level/storage/loot/parameters/LootContextParamSet$Builder/m_81406_ (Lnet/minecraft/world/level/storage/loot/parameters/LootContextParam;)Lnet/minecraft/world/level/storage/loot/parameters/LootContextParamSet$Builder; net/minecraft/world/level/storage/loot/parameters/LootContextParamSet$Builder/required (Lnet/minecraft/world/level/storage/loot/parameters/LootContextParam;)Lnet/minecraft/world/level/storage/loot/parameters/LootContextParamSet$Builder; +MD: net/minecraft/world/level/storage/loot/parameters/LootContextParamSet$Builder/m_81408_ (Lnet/minecraft/world/level/storage/loot/parameters/LootContextParam;)Lnet/minecraft/world/level/storage/loot/parameters/LootContextParamSet$Builder; net/minecraft/world/level/storage/loot/parameters/LootContextParamSet$Builder/optional (Lnet/minecraft/world/level/storage/loot/parameters/LootContextParam;)Lnet/minecraft/world/level/storage/loot/parameters/LootContextParamSet$Builder; +MD: net/minecraft/world/level/storage/loot/parameters/LootContextParamSets/ ()V net/minecraft/world/level/storage/loot/parameters/LootContextParamSets/ ()V +MD: net/minecraft/world/level/storage/loot/parameters/LootContextParamSets/ ()V net/minecraft/world/level/storage/loot/parameters/LootContextParamSets/ ()V +MD: net/minecraft/world/level/storage/loot/parameters/LootContextParamSets/m_271683_ (Lnet/minecraft/world/level/storage/loot/parameters/LootContextParamSet$Builder;)V net/minecraft/world/level/storage/loot/parameters/LootContextParamSets/lambda$static$6 (Lnet/minecraft/world/level/storage/loot/parameters/LootContextParamSet$Builder;)V +MD: net/minecraft/world/level/storage/loot/parameters/LootContextParamSets/m_285732_ (Lnet/minecraft/world/level/storage/loot/parameters/LootContextParamSet$Builder;)V net/minecraft/world/level/storage/loot/parameters/LootContextParamSets/lambda$static$11 (Lnet/minecraft/world/level/storage/loot/parameters/LootContextParamSet$Builder;)V +MD: net/minecraft/world/level/storage/loot/parameters/LootContextParamSets/m_81424_ (Lnet/minecraft/world/level/storage/loot/parameters/LootContextParamSet$Builder;)V net/minecraft/world/level/storage/loot/parameters/LootContextParamSets/lambda$static$13 (Lnet/minecraft/world/level/storage/loot/parameters/LootContextParamSet$Builder;)V +MD: net/minecraft/world/level/storage/loot/parameters/LootContextParamSets/m_81426_ (Lnet/minecraft/world/level/storage/loot/parameters/LootContextParamSet;)Lnet/minecraft/resources/ResourceLocation; net/minecraft/world/level/storage/loot/parameters/LootContextParamSets/getKey (Lnet/minecraft/world/level/storage/loot/parameters/LootContextParamSet;)Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/world/level/storage/loot/parameters/LootContextParamSets/m_81428_ (Ljava/lang/String;Ljava/util/function/Consumer;)Lnet/minecraft/world/level/storage/loot/parameters/LootContextParamSet; net/minecraft/world/level/storage/loot/parameters/LootContextParamSets/register (Ljava/lang/String;Ljava/util/function/Consumer;)Lnet/minecraft/world/level/storage/loot/parameters/LootContextParamSet; +MD: net/minecraft/world/level/storage/loot/parameters/LootContextParamSets/m_81431_ (Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/world/level/storage/loot/parameters/LootContextParamSet; net/minecraft/world/level/storage/loot/parameters/LootContextParamSets/get (Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/world/level/storage/loot/parameters/LootContextParamSet; +MD: net/minecraft/world/level/storage/loot/parameters/LootContextParamSets/m_81433_ (Lnet/minecraft/world/level/storage/loot/parameters/LootContextParamSet$Builder;)V net/minecraft/world/level/storage/loot/parameters/LootContextParamSets/lambda$static$12 (Lnet/minecraft/world/level/storage/loot/parameters/LootContextParamSet$Builder;)V +MD: net/minecraft/world/level/storage/loot/parameters/LootContextParamSets/m_81435_ (Lnet/minecraft/world/level/storage/loot/parameters/LootContextParamSet$Builder;)V net/minecraft/world/level/storage/loot/parameters/LootContextParamSets/lambda$static$9 (Lnet/minecraft/world/level/storage/loot/parameters/LootContextParamSet$Builder;)V +MD: net/minecraft/world/level/storage/loot/parameters/LootContextParamSets/m_81437_ (Lnet/minecraft/world/level/storage/loot/parameters/LootContextParamSet$Builder;)V net/minecraft/world/level/storage/loot/parameters/LootContextParamSets/lambda$static$10 (Lnet/minecraft/world/level/storage/loot/parameters/LootContextParamSet$Builder;)V +MD: net/minecraft/world/level/storage/loot/parameters/LootContextParamSets/m_81439_ (Lnet/minecraft/world/level/storage/loot/parameters/LootContextParamSet$Builder;)V net/minecraft/world/level/storage/loot/parameters/LootContextParamSets/lambda$static$8 (Lnet/minecraft/world/level/storage/loot/parameters/LootContextParamSet$Builder;)V +MD: net/minecraft/world/level/storage/loot/parameters/LootContextParamSets/m_81441_ (Lnet/minecraft/world/level/storage/loot/parameters/LootContextParamSet$Builder;)V net/minecraft/world/level/storage/loot/parameters/LootContextParamSets/lambda$static$7 (Lnet/minecraft/world/level/storage/loot/parameters/LootContextParamSet$Builder;)V +MD: net/minecraft/world/level/storage/loot/parameters/LootContextParamSets/m_81443_ (Lnet/minecraft/world/level/storage/loot/parameters/LootContextParamSet$Builder;)V net/minecraft/world/level/storage/loot/parameters/LootContextParamSets/lambda$static$5 (Lnet/minecraft/world/level/storage/loot/parameters/LootContextParamSet$Builder;)V +MD: net/minecraft/world/level/storage/loot/parameters/LootContextParamSets/m_81445_ (Lnet/minecraft/world/level/storage/loot/parameters/LootContextParamSet$Builder;)V net/minecraft/world/level/storage/loot/parameters/LootContextParamSets/lambda$static$4 (Lnet/minecraft/world/level/storage/loot/parameters/LootContextParamSet$Builder;)V +MD: net/minecraft/world/level/storage/loot/parameters/LootContextParamSets/m_81447_ (Lnet/minecraft/world/level/storage/loot/parameters/LootContextParamSet$Builder;)V net/minecraft/world/level/storage/loot/parameters/LootContextParamSets/lambda$static$3 (Lnet/minecraft/world/level/storage/loot/parameters/LootContextParamSet$Builder;)V +MD: net/minecraft/world/level/storage/loot/parameters/LootContextParamSets/m_81449_ (Lnet/minecraft/world/level/storage/loot/parameters/LootContextParamSet$Builder;)V net/minecraft/world/level/storage/loot/parameters/LootContextParamSets/lambda$static$2 (Lnet/minecraft/world/level/storage/loot/parameters/LootContextParamSet$Builder;)V +MD: net/minecraft/world/level/storage/loot/parameters/LootContextParamSets/m_81451_ (Lnet/minecraft/world/level/storage/loot/parameters/LootContextParamSet$Builder;)V net/minecraft/world/level/storage/loot/parameters/LootContextParamSets/lambda$static$1 (Lnet/minecraft/world/level/storage/loot/parameters/LootContextParamSet$Builder;)V +MD: net/minecraft/world/level/storage/loot/parameters/LootContextParamSets/m_81453_ (Lnet/minecraft/world/level/storage/loot/parameters/LootContextParamSet$Builder;)V net/minecraft/world/level/storage/loot/parameters/LootContextParamSets/lambda$static$0 (Lnet/minecraft/world/level/storage/loot/parameters/LootContextParamSet$Builder;)V +MD: net/minecraft/world/level/storage/loot/parameters/LootContextParams/ ()V net/minecraft/world/level/storage/loot/parameters/LootContextParams/ ()V +MD: net/minecraft/world/level/storage/loot/parameters/LootContextParams/ ()V net/minecraft/world/level/storage/loot/parameters/LootContextParams/ ()V +MD: net/minecraft/world/level/storage/loot/parameters/LootContextParams/m_81466_ (Ljava/lang/String;)Lnet/minecraft/world/level/storage/loot/parameters/LootContextParam; net/minecraft/world/level/storage/loot/parameters/LootContextParams/create (Ljava/lang/String;)Lnet/minecraft/world/level/storage/loot/parameters/LootContextParam; +MD: net/minecraft/world/level/storage/loot/predicates/AllOfCondition/ ([Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;)V net/minecraft/world/level/storage/loot/predicates/AllOfCondition/ ([Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;)V +MD: net/minecraft/world/level/storage/loot/predicates/AllOfCondition/m_285871_ ([Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition$Builder;)Lnet/minecraft/world/level/storage/loot/predicates/AllOfCondition$Builder; net/minecraft/world/level/storage/loot/predicates/AllOfCondition/allOf ([Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition$Builder;)Lnet/minecraft/world/level/storage/loot/predicates/AllOfCondition$Builder; +MD: net/minecraft/world/level/storage/loot/predicates/AllOfCondition/m_7940_ ()Lnet/minecraft/world/level/storage/loot/predicates/LootItemConditionType; net/minecraft/world/level/storage/loot/predicates/AllOfCondition/getType ()Lnet/minecraft/world/level/storage/loot/predicates/LootItemConditionType; +MD: net/minecraft/world/level/storage/loot/predicates/AllOfCondition$Builder/ ([Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition$Builder;)V net/minecraft/world/level/storage/loot/predicates/AllOfCondition$Builder/ ([Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition$Builder;)V +MD: net/minecraft/world/level/storage/loot/predicates/AllOfCondition$Builder/m_285747_ (Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition$Builder;)Lnet/minecraft/world/level/storage/loot/predicates/AllOfCondition$Builder; net/minecraft/world/level/storage/loot/predicates/AllOfCondition$Builder/and (Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition$Builder;)Lnet/minecraft/world/level/storage/loot/predicates/AllOfCondition$Builder; +MD: net/minecraft/world/level/storage/loot/predicates/AllOfCondition$Builder/m_285950_ ([Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;)Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition; net/minecraft/world/level/storage/loot/predicates/AllOfCondition$Builder/create ([Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;)Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition; +MD: net/minecraft/world/level/storage/loot/predicates/AllOfCondition$Serializer/ ()V net/minecraft/world/level/storage/loot/predicates/AllOfCondition$Serializer/ ()V +MD: net/minecraft/world/level/storage/loot/predicates/AllOfCondition$Serializer/m_285830_ ([Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;)Lnet/minecraft/world/level/storage/loot/predicates/CompositeLootItemCondition; net/minecraft/world/level/storage/loot/predicates/AllOfCondition$Serializer/create ([Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;)Lnet/minecraft/world/level/storage/loot/predicates/CompositeLootItemCondition; +MD: net/minecraft/world/level/storage/loot/predicates/AllOfCondition$Serializer/m_285830_ ([Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;)Lnet/minecraft/world/level/storage/loot/predicates/AllOfCondition; net/minecraft/world/level/storage/loot/predicates/AllOfCondition$Serializer/create ([Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;)Lnet/minecraft/world/level/storage/loot/predicates/AllOfCondition; +MD: net/minecraft/world/level/storage/loot/predicates/AnyOfCondition/ ([Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;)V net/minecraft/world/level/storage/loot/predicates/AnyOfCondition/ ([Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;)V +MD: net/minecraft/world/level/storage/loot/predicates/AnyOfCondition/m_285758_ ([Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition$Builder;)Lnet/minecraft/world/level/storage/loot/predicates/AnyOfCondition$Builder; net/minecraft/world/level/storage/loot/predicates/AnyOfCondition/anyOf ([Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition$Builder;)Lnet/minecraft/world/level/storage/loot/predicates/AnyOfCondition$Builder; +MD: net/minecraft/world/level/storage/loot/predicates/AnyOfCondition/m_7940_ ()Lnet/minecraft/world/level/storage/loot/predicates/LootItemConditionType; net/minecraft/world/level/storage/loot/predicates/AnyOfCondition/getType ()Lnet/minecraft/world/level/storage/loot/predicates/LootItemConditionType; +MD: net/minecraft/world/level/storage/loot/predicates/AnyOfCondition$Builder/ ([Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition$Builder;)V net/minecraft/world/level/storage/loot/predicates/AnyOfCondition$Builder/ ([Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition$Builder;)V +MD: net/minecraft/world/level/storage/loot/predicates/AnyOfCondition$Builder/m_285888_ (Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition$Builder;)Lnet/minecraft/world/level/storage/loot/predicates/AnyOfCondition$Builder; net/minecraft/world/level/storage/loot/predicates/AnyOfCondition$Builder/or (Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition$Builder;)Lnet/minecraft/world/level/storage/loot/predicates/AnyOfCondition$Builder; +MD: net/minecraft/world/level/storage/loot/predicates/AnyOfCondition$Builder/m_285950_ ([Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;)Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition; net/minecraft/world/level/storage/loot/predicates/AnyOfCondition$Builder/create ([Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;)Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition; +MD: net/minecraft/world/level/storage/loot/predicates/AnyOfCondition$Serializer/ ()V net/minecraft/world/level/storage/loot/predicates/AnyOfCondition$Serializer/ ()V +MD: net/minecraft/world/level/storage/loot/predicates/AnyOfCondition$Serializer/m_285830_ ([Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;)Lnet/minecraft/world/level/storage/loot/predicates/AnyOfCondition; net/minecraft/world/level/storage/loot/predicates/AnyOfCondition$Serializer/create ([Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;)Lnet/minecraft/world/level/storage/loot/predicates/AnyOfCondition; +MD: net/minecraft/world/level/storage/loot/predicates/AnyOfCondition$Serializer/m_285830_ ([Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;)Lnet/minecraft/world/level/storage/loot/predicates/CompositeLootItemCondition; net/minecraft/world/level/storage/loot/predicates/AnyOfCondition$Serializer/create ([Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;)Lnet/minecraft/world/level/storage/loot/predicates/CompositeLootItemCondition; +MD: net/minecraft/world/level/storage/loot/predicates/BonusLevelTableCondition/ (Lnet/minecraft/world/item/enchantment/Enchantment;[F)V net/minecraft/world/level/storage/loot/predicates/BonusLevelTableCondition/ (Lnet/minecraft/world/item/enchantment/Enchantment;[F)V +MD: net/minecraft/world/level/storage/loot/predicates/BonusLevelTableCondition/m_6231_ ()Ljava/util/Set; net/minecraft/world/level/storage/loot/predicates/BonusLevelTableCondition/getReferencedContextParams ()Ljava/util/Set; +MD: net/minecraft/world/level/storage/loot/predicates/BonusLevelTableCondition/m_7940_ ()Lnet/minecraft/world/level/storage/loot/predicates/LootItemConditionType; net/minecraft/world/level/storage/loot/predicates/BonusLevelTableCondition/getType ()Lnet/minecraft/world/level/storage/loot/predicates/LootItemConditionType; +MD: net/minecraft/world/level/storage/loot/predicates/BonusLevelTableCondition/m_81517_ (Lnet/minecraft/world/item/enchantment/Enchantment;[F)Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition$Builder; net/minecraft/world/level/storage/loot/predicates/BonusLevelTableCondition/bonusLevelFlatChance (Lnet/minecraft/world/item/enchantment/Enchantment;[F)Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition$Builder; +MD: net/minecraft/world/level/storage/loot/predicates/BonusLevelTableCondition/m_81525_ (Lnet/minecraft/world/item/enchantment/Enchantment;[F)Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition; net/minecraft/world/level/storage/loot/predicates/BonusLevelTableCondition/lambda$bonusLevelFlatChance$0 (Lnet/minecraft/world/item/enchantment/Enchantment;[F)Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition; +MD: net/minecraft/world/level/storage/loot/predicates/BonusLevelTableCondition/test (Ljava/lang/Object;)Z net/minecraft/world/level/storage/loot/predicates/BonusLevelTableCondition/test (Ljava/lang/Object;)Z +MD: net/minecraft/world/level/storage/loot/predicates/BonusLevelTableCondition/test (Lnet/minecraft/world/level/storage/loot/LootContext;)Z net/minecraft/world/level/storage/loot/predicates/BonusLevelTableCondition/test (Lnet/minecraft/world/level/storage/loot/LootContext;)Z +MD: net/minecraft/world/level/storage/loot/predicates/BonusLevelTableCondition$Serializer/ ()V net/minecraft/world/level/storage/loot/predicates/BonusLevelTableCondition$Serializer/ ()V +MD: net/minecraft/world/level/storage/loot/predicates/BonusLevelTableCondition$Serializer/m_6170_ (Lcom/google/gson/JsonObject;Ljava/lang/Object;Lcom/google/gson/JsonSerializationContext;)V net/minecraft/world/level/storage/loot/predicates/BonusLevelTableCondition$Serializer/serialize (Lcom/google/gson/JsonObject;Ljava/lang/Object;Lcom/google/gson/JsonSerializationContext;)V +MD: net/minecraft/world/level/storage/loot/predicates/BonusLevelTableCondition$Serializer/m_6170_ (Lcom/google/gson/JsonObject;Lnet/minecraft/world/level/storage/loot/predicates/BonusLevelTableCondition;Lcom/google/gson/JsonSerializationContext;)V net/minecraft/world/level/storage/loot/predicates/BonusLevelTableCondition$Serializer/serialize (Lcom/google/gson/JsonObject;Lnet/minecraft/world/level/storage/loot/predicates/BonusLevelTableCondition;Lcom/google/gson/JsonSerializationContext;)V +MD: net/minecraft/world/level/storage/loot/predicates/BonusLevelTableCondition$Serializer/m_7561_ (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;)Lnet/minecraft/world/level/storage/loot/predicates/BonusLevelTableCondition; net/minecraft/world/level/storage/loot/predicates/BonusLevelTableCondition$Serializer/deserialize (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;)Lnet/minecraft/world/level/storage/loot/predicates/BonusLevelTableCondition; +MD: net/minecraft/world/level/storage/loot/predicates/BonusLevelTableCondition$Serializer/m_7561_ (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;)Ljava/lang/Object; net/minecraft/world/level/storage/loot/predicates/BonusLevelTableCondition$Serializer/deserialize (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;)Ljava/lang/Object; +MD: net/minecraft/world/level/storage/loot/predicates/BonusLevelTableCondition$Serializer/m_81544_ (Lnet/minecraft/resources/ResourceLocation;)Lcom/google/gson/JsonParseException; net/minecraft/world/level/storage/loot/predicates/BonusLevelTableCondition$Serializer/lambda$deserialize$0 (Lnet/minecraft/resources/ResourceLocation;)Lcom/google/gson/JsonParseException; +MD: net/minecraft/world/level/storage/loot/predicates/CompositeLootItemCondition/ ([Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;Ljava/util/function/Predicate;)V net/minecraft/world/level/storage/loot/predicates/CompositeLootItemCondition/ ([Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;Ljava/util/function/Predicate;)V +MD: net/minecraft/world/level/storage/loot/predicates/CompositeLootItemCondition/m_6169_ (Lnet/minecraft/world/level/storage/loot/ValidationContext;)V net/minecraft/world/level/storage/loot/predicates/CompositeLootItemCondition/validate (Lnet/minecraft/world/level/storage/loot/ValidationContext;)V +MD: net/minecraft/world/level/storage/loot/predicates/CompositeLootItemCondition/test (Ljava/lang/Object;)Z net/minecraft/world/level/storage/loot/predicates/CompositeLootItemCondition/test (Ljava/lang/Object;)Z +MD: net/minecraft/world/level/storage/loot/predicates/CompositeLootItemCondition/test (Lnet/minecraft/world/level/storage/loot/LootContext;)Z net/minecraft/world/level/storage/loot/predicates/CompositeLootItemCondition/test (Lnet/minecraft/world/level/storage/loot/LootContext;)Z +MD: net/minecraft/world/level/storage/loot/predicates/CompositeLootItemCondition$Builder/ ([Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition$Builder;)V net/minecraft/world/level/storage/loot/predicates/CompositeLootItemCondition$Builder/ ([Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition$Builder;)V +MD: net/minecraft/world/level/storage/loot/predicates/CompositeLootItemCondition$Builder/m_285756_ (I)[Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition; net/minecraft/world/level/storage/loot/predicates/CompositeLootItemCondition$Builder/lambda$build$0 (I)[Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition; +MD: net/minecraft/world/level/storage/loot/predicates/CompositeLootItemCondition$Builder/m_285950_ ([Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;)Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition; net/minecraft/world/level/storage/loot/predicates/CompositeLootItemCondition$Builder/create ([Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;)Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition; +MD: net/minecraft/world/level/storage/loot/predicates/CompositeLootItemCondition$Builder/m_286010_ (Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition$Builder;)V net/minecraft/world/level/storage/loot/predicates/CompositeLootItemCondition$Builder/addTerm (Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition$Builder;)V +MD: net/minecraft/world/level/storage/loot/predicates/CompositeLootItemCondition$Builder/m_6409_ ()Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition; net/minecraft/world/level/storage/loot/predicates/CompositeLootItemCondition$Builder/build ()Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition; +MD: net/minecraft/world/level/storage/loot/predicates/CompositeLootItemCondition$Serializer/ ()V net/minecraft/world/level/storage/loot/predicates/CompositeLootItemCondition$Serializer/ ()V +MD: net/minecraft/world/level/storage/loot/predicates/CompositeLootItemCondition$Serializer/m_285830_ ([Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;)Lnet/minecraft/world/level/storage/loot/predicates/CompositeLootItemCondition; net/minecraft/world/level/storage/loot/predicates/CompositeLootItemCondition$Serializer/create ([Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;)Lnet/minecraft/world/level/storage/loot/predicates/CompositeLootItemCondition; +MD: net/minecraft/world/level/storage/loot/predicates/CompositeLootItemCondition$Serializer/m_6170_ (Lcom/google/gson/JsonObject;Ljava/lang/Object;Lcom/google/gson/JsonSerializationContext;)V net/minecraft/world/level/storage/loot/predicates/CompositeLootItemCondition$Serializer/serialize (Lcom/google/gson/JsonObject;Ljava/lang/Object;Lcom/google/gson/JsonSerializationContext;)V +MD: net/minecraft/world/level/storage/loot/predicates/CompositeLootItemCondition$Serializer/m_6170_ (Lcom/google/gson/JsonObject;Lnet/minecraft/world/level/storage/loot/predicates/CompositeLootItemCondition;Lcom/google/gson/JsonSerializationContext;)V net/minecraft/world/level/storage/loot/predicates/CompositeLootItemCondition$Serializer/serialize (Lcom/google/gson/JsonObject;Lnet/minecraft/world/level/storage/loot/predicates/CompositeLootItemCondition;Lcom/google/gson/JsonSerializationContext;)V +MD: net/minecraft/world/level/storage/loot/predicates/CompositeLootItemCondition$Serializer/m_7561_ (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;)Ljava/lang/Object; net/minecraft/world/level/storage/loot/predicates/CompositeLootItemCondition$Serializer/deserialize (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;)Ljava/lang/Object; +MD: net/minecraft/world/level/storage/loot/predicates/CompositeLootItemCondition$Serializer/m_7561_ (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;)Lnet/minecraft/world/level/storage/loot/predicates/CompositeLootItemCondition; net/minecraft/world/level/storage/loot/predicates/CompositeLootItemCondition$Serializer/deserialize (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;)Lnet/minecraft/world/level/storage/loot/predicates/CompositeLootItemCondition; +MD: net/minecraft/world/level/storage/loot/predicates/ConditionReference/ ()V net/minecraft/world/level/storage/loot/predicates/ConditionReference/ ()V +MD: net/minecraft/world/level/storage/loot/predicates/ConditionReference/ (Lnet/minecraft/resources/ResourceLocation;)V net/minecraft/world/level/storage/loot/predicates/ConditionReference/ (Lnet/minecraft/resources/ResourceLocation;)V +MD: net/minecraft/world/level/storage/loot/predicates/ConditionReference/m_165480_ (Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition$Builder; net/minecraft/world/level/storage/loot/predicates/ConditionReference/conditionReference (Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition$Builder; +MD: net/minecraft/world/level/storage/loot/predicates/ConditionReference/m_165482_ (Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition; net/minecraft/world/level/storage/loot/predicates/ConditionReference/lambda$conditionReference$2 (Lnet/minecraft/resources/ResourceLocation;)Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition; +MD: net/minecraft/world/level/storage/loot/predicates/ConditionReference/m_278610_ (Lnet/minecraft/world/level/storage/loot/ValidationContext;Lnet/minecraft/world/level/storage/loot/LootDataId;Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;)V net/minecraft/world/level/storage/loot/predicates/ConditionReference/lambda$validate$0 (Lnet/minecraft/world/level/storage/loot/ValidationContext;Lnet/minecraft/world/level/storage/loot/LootDataId;Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;)V +MD: net/minecraft/world/level/storage/loot/predicates/ConditionReference/m_278611_ (Lnet/minecraft/world/level/storage/loot/ValidationContext;)V net/minecraft/world/level/storage/loot/predicates/ConditionReference/lambda$validate$1 (Lnet/minecraft/world/level/storage/loot/ValidationContext;)V +MD: net/minecraft/world/level/storage/loot/predicates/ConditionReference/m_6169_ (Lnet/minecraft/world/level/storage/loot/ValidationContext;)V net/minecraft/world/level/storage/loot/predicates/ConditionReference/validate (Lnet/minecraft/world/level/storage/loot/ValidationContext;)V +MD: net/minecraft/world/level/storage/loot/predicates/ConditionReference/m_7940_ ()Lnet/minecraft/world/level/storage/loot/predicates/LootItemConditionType; net/minecraft/world/level/storage/loot/predicates/ConditionReference/getType ()Lnet/minecraft/world/level/storage/loot/predicates/LootItemConditionType; +MD: net/minecraft/world/level/storage/loot/predicates/ConditionReference/test (Ljava/lang/Object;)Z net/minecraft/world/level/storage/loot/predicates/ConditionReference/test (Ljava/lang/Object;)Z +MD: net/minecraft/world/level/storage/loot/predicates/ConditionReference/test (Lnet/minecraft/world/level/storage/loot/LootContext;)Z net/minecraft/world/level/storage/loot/predicates/ConditionReference/test (Lnet/minecraft/world/level/storage/loot/LootContext;)Z +MD: net/minecraft/world/level/storage/loot/predicates/ConditionReference$Serializer/ ()V net/minecraft/world/level/storage/loot/predicates/ConditionReference$Serializer/ ()V +MD: net/minecraft/world/level/storage/loot/predicates/ConditionReference$Serializer/m_6170_ (Lcom/google/gson/JsonObject;Ljava/lang/Object;Lcom/google/gson/JsonSerializationContext;)V net/minecraft/world/level/storage/loot/predicates/ConditionReference$Serializer/serialize (Lcom/google/gson/JsonObject;Ljava/lang/Object;Lcom/google/gson/JsonSerializationContext;)V +MD: net/minecraft/world/level/storage/loot/predicates/ConditionReference$Serializer/m_6170_ (Lcom/google/gson/JsonObject;Lnet/minecraft/world/level/storage/loot/predicates/ConditionReference;Lcom/google/gson/JsonSerializationContext;)V net/minecraft/world/level/storage/loot/predicates/ConditionReference$Serializer/serialize (Lcom/google/gson/JsonObject;Lnet/minecraft/world/level/storage/loot/predicates/ConditionReference;Lcom/google/gson/JsonSerializationContext;)V +MD: net/minecraft/world/level/storage/loot/predicates/ConditionReference$Serializer/m_7561_ (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;)Ljava/lang/Object; net/minecraft/world/level/storage/loot/predicates/ConditionReference$Serializer/deserialize (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;)Ljava/lang/Object; +MD: net/minecraft/world/level/storage/loot/predicates/ConditionReference$Serializer/m_7561_ (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;)Lnet/minecraft/world/level/storage/loot/predicates/ConditionReference; net/minecraft/world/level/storage/loot/predicates/ConditionReference$Serializer/deserialize (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;)Lnet/minecraft/world/level/storage/loot/predicates/ConditionReference; +MD: net/minecraft/world/level/storage/loot/predicates/ConditionUserBuilder/m_231040_ (Ljava/lang/Iterable;Ljava/util/function/Function;)Lnet/minecraft/world/level/storage/loot/predicates/ConditionUserBuilder; net/minecraft/world/level/storage/loot/predicates/ConditionUserBuilder/when (Ljava/lang/Iterable;Ljava/util/function/Function;)Lnet/minecraft/world/level/storage/loot/predicates/ConditionUserBuilder; +MD: net/minecraft/world/level/storage/loot/predicates/ConditionUserBuilder/m_79073_ ()Lnet/minecraft/world/level/storage/loot/predicates/ConditionUserBuilder; net/minecraft/world/level/storage/loot/predicates/ConditionUserBuilder/unwrap ()Lnet/minecraft/world/level/storage/loot/predicates/ConditionUserBuilder; +MD: net/minecraft/world/level/storage/loot/predicates/ConditionUserBuilder/m_79080_ (Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition$Builder;)Lnet/minecraft/world/level/storage/loot/predicates/ConditionUserBuilder; net/minecraft/world/level/storage/loot/predicates/ConditionUserBuilder/when (Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition$Builder;)Lnet/minecraft/world/level/storage/loot/predicates/ConditionUserBuilder; +MD: net/minecraft/world/level/storage/loot/predicates/DamageSourceCondition/ (Lnet/minecraft/advancements/critereon/DamageSourcePredicate;)V net/minecraft/world/level/storage/loot/predicates/DamageSourceCondition/ (Lnet/minecraft/advancements/critereon/DamageSourcePredicate;)V +MD: net/minecraft/world/level/storage/loot/predicates/DamageSourceCondition/m_6231_ ()Ljava/util/Set; net/minecraft/world/level/storage/loot/predicates/DamageSourceCondition/getReferencedContextParams ()Ljava/util/Set; +MD: net/minecraft/world/level/storage/loot/predicates/DamageSourceCondition/m_7940_ ()Lnet/minecraft/world/level/storage/loot/predicates/LootItemConditionType; net/minecraft/world/level/storage/loot/predicates/DamageSourceCondition/getType ()Lnet/minecraft/world/level/storage/loot/predicates/LootItemConditionType; +MD: net/minecraft/world/level/storage/loot/predicates/DamageSourceCondition/m_81589_ (Lnet/minecraft/advancements/critereon/DamageSourcePredicate$Builder;)Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition$Builder; net/minecraft/world/level/storage/loot/predicates/DamageSourceCondition/hasDamageSource (Lnet/minecraft/advancements/critereon/DamageSourcePredicate$Builder;)Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition$Builder; +MD: net/minecraft/world/level/storage/loot/predicates/DamageSourceCondition/m_81596_ (Lnet/minecraft/advancements/critereon/DamageSourcePredicate$Builder;)Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition; net/minecraft/world/level/storage/loot/predicates/DamageSourceCondition/lambda$hasDamageSource$0 (Lnet/minecraft/advancements/critereon/DamageSourcePredicate$Builder;)Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition; +MD: net/minecraft/world/level/storage/loot/predicates/DamageSourceCondition/test (Ljava/lang/Object;)Z net/minecraft/world/level/storage/loot/predicates/DamageSourceCondition/test (Ljava/lang/Object;)Z +MD: net/minecraft/world/level/storage/loot/predicates/DamageSourceCondition/test (Lnet/minecraft/world/level/storage/loot/LootContext;)Z net/minecraft/world/level/storage/loot/predicates/DamageSourceCondition/test (Lnet/minecraft/world/level/storage/loot/LootContext;)Z +MD: net/minecraft/world/level/storage/loot/predicates/DamageSourceCondition$Serializer/ ()V net/minecraft/world/level/storage/loot/predicates/DamageSourceCondition$Serializer/ ()V +MD: net/minecraft/world/level/storage/loot/predicates/DamageSourceCondition$Serializer/m_6170_ (Lcom/google/gson/JsonObject;Ljava/lang/Object;Lcom/google/gson/JsonSerializationContext;)V net/minecraft/world/level/storage/loot/predicates/DamageSourceCondition$Serializer/serialize (Lcom/google/gson/JsonObject;Ljava/lang/Object;Lcom/google/gson/JsonSerializationContext;)V +MD: net/minecraft/world/level/storage/loot/predicates/DamageSourceCondition$Serializer/m_6170_ (Lcom/google/gson/JsonObject;Lnet/minecraft/world/level/storage/loot/predicates/DamageSourceCondition;Lcom/google/gson/JsonSerializationContext;)V net/minecraft/world/level/storage/loot/predicates/DamageSourceCondition$Serializer/serialize (Lcom/google/gson/JsonObject;Lnet/minecraft/world/level/storage/loot/predicates/DamageSourceCondition;Lcom/google/gson/JsonSerializationContext;)V +MD: net/minecraft/world/level/storage/loot/predicates/DamageSourceCondition$Serializer/m_7561_ (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;)Lnet/minecraft/world/level/storage/loot/predicates/DamageSourceCondition; net/minecraft/world/level/storage/loot/predicates/DamageSourceCondition$Serializer/deserialize (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;)Lnet/minecraft/world/level/storage/loot/predicates/DamageSourceCondition; +MD: net/minecraft/world/level/storage/loot/predicates/DamageSourceCondition$Serializer/m_7561_ (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;)Ljava/lang/Object; net/minecraft/world/level/storage/loot/predicates/DamageSourceCondition$Serializer/deserialize (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;)Ljava/lang/Object; +MD: net/minecraft/world/level/storage/loot/predicates/EntityHasScoreCondition/ (Ljava/util/Map;Lnet/minecraft/world/level/storage/loot/LootContext$EntityTarget;)V net/minecraft/world/level/storage/loot/predicates/EntityHasScoreCondition/ (Ljava/util/Map;Lnet/minecraft/world/level/storage/loot/LootContext$EntityTarget;)V +MD: net/minecraft/world/level/storage/loot/predicates/EntityHasScoreCondition/m_165486_ (Lnet/minecraft/world/level/storage/loot/IntRange;)Ljava/util/stream/Stream; net/minecraft/world/level/storage/loot/predicates/EntityHasScoreCondition/lambda$getReferencedContextParams$0 (Lnet/minecraft/world/level/storage/loot/IntRange;)Ljava/util/stream/Stream; +MD: net/minecraft/world/level/storage/loot/predicates/EntityHasScoreCondition/m_165488_ (Lnet/minecraft/world/level/storage/loot/LootContext$EntityTarget;)Lnet/minecraft/world/level/storage/loot/predicates/EntityHasScoreCondition$Builder; net/minecraft/world/level/storage/loot/predicates/EntityHasScoreCondition/hasScores (Lnet/minecraft/world/level/storage/loot/LootContext$EntityTarget;)Lnet/minecraft/world/level/storage/loot/predicates/EntityHasScoreCondition$Builder; +MD: net/minecraft/world/level/storage/loot/predicates/EntityHasScoreCondition/m_165490_ (Lnet/minecraft/world/level/storage/loot/LootContext;Lnet/minecraft/world/entity/Entity;Lnet/minecraft/world/scores/Scoreboard;Ljava/lang/String;Lnet/minecraft/world/level/storage/loot/IntRange;)Z net/minecraft/world/level/storage/loot/predicates/EntityHasScoreCondition/hasScore (Lnet/minecraft/world/level/storage/loot/LootContext;Lnet/minecraft/world/entity/Entity;Lnet/minecraft/world/scores/Scoreboard;Ljava/lang/String;Lnet/minecraft/world/level/storage/loot/IntRange;)Z +MD: net/minecraft/world/level/storage/loot/predicates/EntityHasScoreCondition/m_6231_ ()Ljava/util/Set; net/minecraft/world/level/storage/loot/predicates/EntityHasScoreCondition/getReferencedContextParams ()Ljava/util/Set; +MD: net/minecraft/world/level/storage/loot/predicates/EntityHasScoreCondition/m_7940_ ()Lnet/minecraft/world/level/storage/loot/predicates/LootItemConditionType; net/minecraft/world/level/storage/loot/predicates/EntityHasScoreCondition/getType ()Lnet/minecraft/world/level/storage/loot/predicates/LootItemConditionType; +MD: net/minecraft/world/level/storage/loot/predicates/EntityHasScoreCondition/test (Ljava/lang/Object;)Z net/minecraft/world/level/storage/loot/predicates/EntityHasScoreCondition/test (Ljava/lang/Object;)Z +MD: net/minecraft/world/level/storage/loot/predicates/EntityHasScoreCondition/test (Lnet/minecraft/world/level/storage/loot/LootContext;)Z net/minecraft/world/level/storage/loot/predicates/EntityHasScoreCondition/test (Lnet/minecraft/world/level/storage/loot/LootContext;)Z +MD: net/minecraft/world/level/storage/loot/predicates/EntityHasScoreCondition$Builder/ (Lnet/minecraft/world/level/storage/loot/LootContext$EntityTarget;)V net/minecraft/world/level/storage/loot/predicates/EntityHasScoreCondition$Builder/ (Lnet/minecraft/world/level/storage/loot/LootContext$EntityTarget;)V +MD: net/minecraft/world/level/storage/loot/predicates/EntityHasScoreCondition$Builder/m_165500_ (Ljava/lang/String;Lnet/minecraft/world/level/storage/loot/IntRange;)Lnet/minecraft/world/level/storage/loot/predicates/EntityHasScoreCondition$Builder; net/minecraft/world/level/storage/loot/predicates/EntityHasScoreCondition$Builder/withScore (Ljava/lang/String;Lnet/minecraft/world/level/storage/loot/IntRange;)Lnet/minecraft/world/level/storage/loot/predicates/EntityHasScoreCondition$Builder; +MD: net/minecraft/world/level/storage/loot/predicates/EntityHasScoreCondition$Builder/m_6409_ ()Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition; net/minecraft/world/level/storage/loot/predicates/EntityHasScoreCondition$Builder/build ()Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition; +MD: net/minecraft/world/level/storage/loot/predicates/EntityHasScoreCondition$Serializer/ ()V net/minecraft/world/level/storage/loot/predicates/EntityHasScoreCondition$Serializer/ ()V +MD: net/minecraft/world/level/storage/loot/predicates/EntityHasScoreCondition$Serializer/m_6170_ (Lcom/google/gson/JsonObject;Ljava/lang/Object;Lcom/google/gson/JsonSerializationContext;)V net/minecraft/world/level/storage/loot/predicates/EntityHasScoreCondition$Serializer/serialize (Lcom/google/gson/JsonObject;Ljava/lang/Object;Lcom/google/gson/JsonSerializationContext;)V +MD: net/minecraft/world/level/storage/loot/predicates/EntityHasScoreCondition$Serializer/m_6170_ (Lcom/google/gson/JsonObject;Lnet/minecraft/world/level/storage/loot/predicates/EntityHasScoreCondition;Lcom/google/gson/JsonSerializationContext;)V net/minecraft/world/level/storage/loot/predicates/EntityHasScoreCondition$Serializer/serialize (Lcom/google/gson/JsonObject;Lnet/minecraft/world/level/storage/loot/predicates/EntityHasScoreCondition;Lcom/google/gson/JsonSerializationContext;)V +MD: net/minecraft/world/level/storage/loot/predicates/EntityHasScoreCondition$Serializer/m_7561_ (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;)Lnet/minecraft/world/level/storage/loot/predicates/EntityHasScoreCondition; net/minecraft/world/level/storage/loot/predicates/EntityHasScoreCondition$Serializer/deserialize (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;)Lnet/minecraft/world/level/storage/loot/predicates/EntityHasScoreCondition; +MD: net/minecraft/world/level/storage/loot/predicates/EntityHasScoreCondition$Serializer/m_7561_ (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;)Ljava/lang/Object; net/minecraft/world/level/storage/loot/predicates/EntityHasScoreCondition$Serializer/deserialize (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;)Ljava/lang/Object; +MD: net/minecraft/world/level/storage/loot/predicates/ExplosionCondition/ ()V net/minecraft/world/level/storage/loot/predicates/ExplosionCondition/ ()V +MD: net/minecraft/world/level/storage/loot/predicates/ExplosionCondition/ ()V net/minecraft/world/level/storage/loot/predicates/ExplosionCondition/ ()V +MD: net/minecraft/world/level/storage/loot/predicates/ExplosionCondition/m_6231_ ()Ljava/util/Set; net/minecraft/world/level/storage/loot/predicates/ExplosionCondition/getReferencedContextParams ()Ljava/util/Set; +MD: net/minecraft/world/level/storage/loot/predicates/ExplosionCondition/m_7940_ ()Lnet/minecraft/world/level/storage/loot/predicates/LootItemConditionType; net/minecraft/world/level/storage/loot/predicates/ExplosionCondition/getType ()Lnet/minecraft/world/level/storage/loot/predicates/LootItemConditionType; +MD: net/minecraft/world/level/storage/loot/predicates/ExplosionCondition/m_81661_ ()Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition$Builder; net/minecraft/world/level/storage/loot/predicates/ExplosionCondition/survivesExplosion ()Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition$Builder; +MD: net/minecraft/world/level/storage/loot/predicates/ExplosionCondition/m_81663_ ()Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition; net/minecraft/world/level/storage/loot/predicates/ExplosionCondition/lambda$survivesExplosion$0 ()Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition; +MD: net/minecraft/world/level/storage/loot/predicates/ExplosionCondition/test (Ljava/lang/Object;)Z net/minecraft/world/level/storage/loot/predicates/ExplosionCondition/test (Ljava/lang/Object;)Z +MD: net/minecraft/world/level/storage/loot/predicates/ExplosionCondition/test (Lnet/minecraft/world/level/storage/loot/LootContext;)Z net/minecraft/world/level/storage/loot/predicates/ExplosionCondition/test (Lnet/minecraft/world/level/storage/loot/LootContext;)Z +MD: net/minecraft/world/level/storage/loot/predicates/ExplosionCondition$Serializer/ ()V net/minecraft/world/level/storage/loot/predicates/ExplosionCondition$Serializer/ ()V +MD: net/minecraft/world/level/storage/loot/predicates/ExplosionCondition$Serializer/m_6170_ (Lcom/google/gson/JsonObject;Ljava/lang/Object;Lcom/google/gson/JsonSerializationContext;)V net/minecraft/world/level/storage/loot/predicates/ExplosionCondition$Serializer/serialize (Lcom/google/gson/JsonObject;Ljava/lang/Object;Lcom/google/gson/JsonSerializationContext;)V +MD: net/minecraft/world/level/storage/loot/predicates/ExplosionCondition$Serializer/m_6170_ (Lcom/google/gson/JsonObject;Lnet/minecraft/world/level/storage/loot/predicates/ExplosionCondition;Lcom/google/gson/JsonSerializationContext;)V net/minecraft/world/level/storage/loot/predicates/ExplosionCondition$Serializer/serialize (Lcom/google/gson/JsonObject;Lnet/minecraft/world/level/storage/loot/predicates/ExplosionCondition;Lcom/google/gson/JsonSerializationContext;)V +MD: net/minecraft/world/level/storage/loot/predicates/ExplosionCondition$Serializer/m_7561_ (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;)Ljava/lang/Object; net/minecraft/world/level/storage/loot/predicates/ExplosionCondition$Serializer/deserialize (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;)Ljava/lang/Object; +MD: net/minecraft/world/level/storage/loot/predicates/ExplosionCondition$Serializer/m_7561_ (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;)Lnet/minecraft/world/level/storage/loot/predicates/ExplosionCondition; net/minecraft/world/level/storage/loot/predicates/ExplosionCondition$Serializer/deserialize (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;)Lnet/minecraft/world/level/storage/loot/predicates/ExplosionCondition; +MD: net/minecraft/world/level/storage/loot/predicates/InvertedLootItemCondition/ (Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;)V net/minecraft/world/level/storage/loot/predicates/InvertedLootItemCondition/ (Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition;)V +MD: net/minecraft/world/level/storage/loot/predicates/InvertedLootItemCondition/m_6169_ (Lnet/minecraft/world/level/storage/loot/ValidationContext;)V net/minecraft/world/level/storage/loot/predicates/InvertedLootItemCondition/validate (Lnet/minecraft/world/level/storage/loot/ValidationContext;)V +MD: net/minecraft/world/level/storage/loot/predicates/InvertedLootItemCondition/m_6231_ ()Ljava/util/Set; net/minecraft/world/level/storage/loot/predicates/InvertedLootItemCondition/getReferencedContextParams ()Ljava/util/Set; +MD: net/minecraft/world/level/storage/loot/predicates/InvertedLootItemCondition/m_7940_ ()Lnet/minecraft/world/level/storage/loot/predicates/LootItemConditionType; net/minecraft/world/level/storage/loot/predicates/InvertedLootItemCondition/getType ()Lnet/minecraft/world/level/storage/loot/predicates/LootItemConditionType; +MD: net/minecraft/world/level/storage/loot/predicates/InvertedLootItemCondition/m_81694_ (Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition$Builder;)Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition$Builder; net/minecraft/world/level/storage/loot/predicates/InvertedLootItemCondition/invert (Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition$Builder;)Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition$Builder; +MD: net/minecraft/world/level/storage/loot/predicates/InvertedLootItemCondition/m_81697_ (Lnet/minecraft/world/level/storage/loot/predicates/InvertedLootItemCondition;)Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition; net/minecraft/world/level/storage/loot/predicates/InvertedLootItemCondition/lambda$invert$0 (Lnet/minecraft/world/level/storage/loot/predicates/InvertedLootItemCondition;)Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition; +MD: net/minecraft/world/level/storage/loot/predicates/InvertedLootItemCondition/test (Ljava/lang/Object;)Z net/minecraft/world/level/storage/loot/predicates/InvertedLootItemCondition/test (Ljava/lang/Object;)Z +MD: net/minecraft/world/level/storage/loot/predicates/InvertedLootItemCondition/test (Lnet/minecraft/world/level/storage/loot/LootContext;)Z net/minecraft/world/level/storage/loot/predicates/InvertedLootItemCondition/test (Lnet/minecraft/world/level/storage/loot/LootContext;)Z +MD: net/minecraft/world/level/storage/loot/predicates/InvertedLootItemCondition$Serializer/ ()V net/minecraft/world/level/storage/loot/predicates/InvertedLootItemCondition$Serializer/ ()V +MD: net/minecraft/world/level/storage/loot/predicates/InvertedLootItemCondition$Serializer/m_6170_ (Lcom/google/gson/JsonObject;Ljava/lang/Object;Lcom/google/gson/JsonSerializationContext;)V net/minecraft/world/level/storage/loot/predicates/InvertedLootItemCondition$Serializer/serialize (Lcom/google/gson/JsonObject;Ljava/lang/Object;Lcom/google/gson/JsonSerializationContext;)V +MD: net/minecraft/world/level/storage/loot/predicates/InvertedLootItemCondition$Serializer/m_6170_ (Lcom/google/gson/JsonObject;Lnet/minecraft/world/level/storage/loot/predicates/InvertedLootItemCondition;Lcom/google/gson/JsonSerializationContext;)V net/minecraft/world/level/storage/loot/predicates/InvertedLootItemCondition$Serializer/serialize (Lcom/google/gson/JsonObject;Lnet/minecraft/world/level/storage/loot/predicates/InvertedLootItemCondition;Lcom/google/gson/JsonSerializationContext;)V +MD: net/minecraft/world/level/storage/loot/predicates/InvertedLootItemCondition$Serializer/m_7561_ (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;)Ljava/lang/Object; net/minecraft/world/level/storage/loot/predicates/InvertedLootItemCondition$Serializer/deserialize (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;)Ljava/lang/Object; +MD: net/minecraft/world/level/storage/loot/predicates/InvertedLootItemCondition$Serializer/m_7561_ (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;)Lnet/minecraft/world/level/storage/loot/predicates/InvertedLootItemCondition; net/minecraft/world/level/storage/loot/predicates/InvertedLootItemCondition$Serializer/deserialize (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;)Lnet/minecraft/world/level/storage/loot/predicates/InvertedLootItemCondition; +MD: net/minecraft/world/level/storage/loot/predicates/LocationCheck/ (Lnet/minecraft/advancements/critereon/LocationPredicate;Lnet/minecraft/core/BlockPos;)V net/minecraft/world/level/storage/loot/predicates/LocationCheck/ (Lnet/minecraft/advancements/critereon/LocationPredicate;Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/world/level/storage/loot/predicates/LocationCheck/m_7940_ ()Lnet/minecraft/world/level/storage/loot/predicates/LootItemConditionType; net/minecraft/world/level/storage/loot/predicates/LocationCheck/getType ()Lnet/minecraft/world/level/storage/loot/predicates/LootItemConditionType; +MD: net/minecraft/world/level/storage/loot/predicates/LocationCheck/m_81725_ (Lnet/minecraft/advancements/critereon/LocationPredicate$Builder;)Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition$Builder; net/minecraft/world/level/storage/loot/predicates/LocationCheck/checkLocation (Lnet/minecraft/advancements/critereon/LocationPredicate$Builder;)Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition$Builder; +MD: net/minecraft/world/level/storage/loot/predicates/LocationCheck/m_81727_ (Lnet/minecraft/advancements/critereon/LocationPredicate$Builder;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition$Builder; net/minecraft/world/level/storage/loot/predicates/LocationCheck/checkLocation (Lnet/minecraft/advancements/critereon/LocationPredicate$Builder;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition$Builder; +MD: net/minecraft/world/level/storage/loot/predicates/LocationCheck/m_81735_ (Lnet/minecraft/advancements/critereon/LocationPredicate$Builder;)Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition; net/minecraft/world/level/storage/loot/predicates/LocationCheck/lambda$checkLocation$0 (Lnet/minecraft/advancements/critereon/LocationPredicate$Builder;)Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition; +MD: net/minecraft/world/level/storage/loot/predicates/LocationCheck/m_81737_ (Lnet/minecraft/advancements/critereon/LocationPredicate$Builder;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition; net/minecraft/world/level/storage/loot/predicates/LocationCheck/lambda$checkLocation$1 (Lnet/minecraft/advancements/critereon/LocationPredicate$Builder;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition; +MD: net/minecraft/world/level/storage/loot/predicates/LocationCheck/test (Ljava/lang/Object;)Z net/minecraft/world/level/storage/loot/predicates/LocationCheck/test (Ljava/lang/Object;)Z +MD: net/minecraft/world/level/storage/loot/predicates/LocationCheck/test (Lnet/minecraft/world/level/storage/loot/LootContext;)Z net/minecraft/world/level/storage/loot/predicates/LocationCheck/test (Lnet/minecraft/world/level/storage/loot/LootContext;)Z +MD: net/minecraft/world/level/storage/loot/predicates/LocationCheck$Serializer/ ()V net/minecraft/world/level/storage/loot/predicates/LocationCheck$Serializer/ ()V +MD: net/minecraft/world/level/storage/loot/predicates/LocationCheck$Serializer/m_6170_ (Lcom/google/gson/JsonObject;Ljava/lang/Object;Lcom/google/gson/JsonSerializationContext;)V net/minecraft/world/level/storage/loot/predicates/LocationCheck$Serializer/serialize (Lcom/google/gson/JsonObject;Ljava/lang/Object;Lcom/google/gson/JsonSerializationContext;)V +MD: net/minecraft/world/level/storage/loot/predicates/LocationCheck$Serializer/m_6170_ (Lcom/google/gson/JsonObject;Lnet/minecraft/world/level/storage/loot/predicates/LocationCheck;Lcom/google/gson/JsonSerializationContext;)V net/minecraft/world/level/storage/loot/predicates/LocationCheck$Serializer/serialize (Lcom/google/gson/JsonObject;Lnet/minecraft/world/level/storage/loot/predicates/LocationCheck;Lcom/google/gson/JsonSerializationContext;)V +MD: net/minecraft/world/level/storage/loot/predicates/LocationCheck$Serializer/m_7561_ (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;)Lnet/minecraft/world/level/storage/loot/predicates/LocationCheck; net/minecraft/world/level/storage/loot/predicates/LocationCheck$Serializer/deserialize (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;)Lnet/minecraft/world/level/storage/loot/predicates/LocationCheck; +MD: net/minecraft/world/level/storage/loot/predicates/LocationCheck$Serializer/m_7561_ (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;)Ljava/lang/Object; net/minecraft/world/level/storage/loot/predicates/LocationCheck$Serializer/deserialize (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;)Ljava/lang/Object; +MD: net/minecraft/world/level/storage/loot/predicates/LootItemBlockStatePropertyCondition/ (Lnet/minecraft/world/level/block/Block;Lnet/minecraft/advancements/critereon/StatePropertiesPredicate;)V net/minecraft/world/level/storage/loot/predicates/LootItemBlockStatePropertyCondition/ (Lnet/minecraft/world/level/block/Block;Lnet/minecraft/advancements/critereon/StatePropertiesPredicate;)V +MD: net/minecraft/world/level/storage/loot/predicates/LootItemBlockStatePropertyCondition/m_6231_ ()Ljava/util/Set; net/minecraft/world/level/storage/loot/predicates/LootItemBlockStatePropertyCondition/getReferencedContextParams ()Ljava/util/Set; +MD: net/minecraft/world/level/storage/loot/predicates/LootItemBlockStatePropertyCondition/m_7940_ ()Lnet/minecraft/world/level/storage/loot/predicates/LootItemConditionType; net/minecraft/world/level/storage/loot/predicates/LootItemBlockStatePropertyCondition/getType ()Lnet/minecraft/world/level/storage/loot/predicates/LootItemConditionType; +MD: net/minecraft/world/level/storage/loot/predicates/LootItemBlockStatePropertyCondition/m_81769_ (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/predicates/LootItemBlockStatePropertyCondition$Builder; net/minecraft/world/level/storage/loot/predicates/LootItemBlockStatePropertyCondition/hasBlockStateProperties (Lnet/minecraft/world/level/block/Block;)Lnet/minecraft/world/level/storage/loot/predicates/LootItemBlockStatePropertyCondition$Builder; +MD: net/minecraft/world/level/storage/loot/predicates/LootItemBlockStatePropertyCondition/test (Ljava/lang/Object;)Z net/minecraft/world/level/storage/loot/predicates/LootItemBlockStatePropertyCondition/test (Ljava/lang/Object;)Z +MD: net/minecraft/world/level/storage/loot/predicates/LootItemBlockStatePropertyCondition/test (Lnet/minecraft/world/level/storage/loot/LootContext;)Z net/minecraft/world/level/storage/loot/predicates/LootItemBlockStatePropertyCondition/test (Lnet/minecraft/world/level/storage/loot/LootContext;)Z +MD: net/minecraft/world/level/storage/loot/predicates/LootItemBlockStatePropertyCondition$Builder/ (Lnet/minecraft/world/level/block/Block;)V net/minecraft/world/level/storage/loot/predicates/LootItemBlockStatePropertyCondition$Builder/ (Lnet/minecraft/world/level/block/Block;)V +MD: net/minecraft/world/level/storage/loot/predicates/LootItemBlockStatePropertyCondition$Builder/m_6409_ ()Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition; net/minecraft/world/level/storage/loot/predicates/LootItemBlockStatePropertyCondition$Builder/build ()Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition; +MD: net/minecraft/world/level/storage/loot/predicates/LootItemBlockStatePropertyCondition$Builder/m_81784_ (Lnet/minecraft/advancements/critereon/StatePropertiesPredicate$Builder;)Lnet/minecraft/world/level/storage/loot/predicates/LootItemBlockStatePropertyCondition$Builder; net/minecraft/world/level/storage/loot/predicates/LootItemBlockStatePropertyCondition$Builder/setProperties (Lnet/minecraft/advancements/critereon/StatePropertiesPredicate$Builder;)Lnet/minecraft/world/level/storage/loot/predicates/LootItemBlockStatePropertyCondition$Builder; +MD: net/minecraft/world/level/storage/loot/predicates/LootItemBlockStatePropertyCondition$Serializer/ ()V net/minecraft/world/level/storage/loot/predicates/LootItemBlockStatePropertyCondition$Serializer/ ()V +MD: net/minecraft/world/level/storage/loot/predicates/LootItemBlockStatePropertyCondition$Serializer/m_6170_ (Lcom/google/gson/JsonObject;Ljava/lang/Object;Lcom/google/gson/JsonSerializationContext;)V net/minecraft/world/level/storage/loot/predicates/LootItemBlockStatePropertyCondition$Serializer/serialize (Lcom/google/gson/JsonObject;Ljava/lang/Object;Lcom/google/gson/JsonSerializationContext;)V +MD: net/minecraft/world/level/storage/loot/predicates/LootItemBlockStatePropertyCondition$Serializer/m_6170_ (Lcom/google/gson/JsonObject;Lnet/minecraft/world/level/storage/loot/predicates/LootItemBlockStatePropertyCondition;Lcom/google/gson/JsonSerializationContext;)V net/minecraft/world/level/storage/loot/predicates/LootItemBlockStatePropertyCondition$Serializer/serialize (Lcom/google/gson/JsonObject;Lnet/minecraft/world/level/storage/loot/predicates/LootItemBlockStatePropertyCondition;Lcom/google/gson/JsonSerializationContext;)V +MD: net/minecraft/world/level/storage/loot/predicates/LootItemBlockStatePropertyCondition$Serializer/m_7561_ (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;)Ljava/lang/Object; net/minecraft/world/level/storage/loot/predicates/LootItemBlockStatePropertyCondition$Serializer/deserialize (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;)Ljava/lang/Object; +MD: net/minecraft/world/level/storage/loot/predicates/LootItemBlockStatePropertyCondition$Serializer/m_7561_ (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;)Lnet/minecraft/world/level/storage/loot/predicates/LootItemBlockStatePropertyCondition; net/minecraft/world/level/storage/loot/predicates/LootItemBlockStatePropertyCondition$Serializer/deserialize (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;)Lnet/minecraft/world/level/storage/loot/predicates/LootItemBlockStatePropertyCondition; +MD: net/minecraft/world/level/storage/loot/predicates/LootItemBlockStatePropertyCondition$Serializer/m_81788_ (Lnet/minecraft/world/level/block/Block;Ljava/lang/String;)V net/minecraft/world/level/storage/loot/predicates/LootItemBlockStatePropertyCondition$Serializer/lambda$deserialize$1 (Lnet/minecraft/world/level/block/Block;Ljava/lang/String;)V +MD: net/minecraft/world/level/storage/loot/predicates/LootItemBlockStatePropertyCondition$Serializer/m_81802_ (Lnet/minecraft/resources/ResourceLocation;)Ljava/lang/IllegalArgumentException; net/minecraft/world/level/storage/loot/predicates/LootItemBlockStatePropertyCondition$Serializer/lambda$deserialize$0 (Lnet/minecraft/resources/ResourceLocation;)Ljava/lang/IllegalArgumentException; +MD: net/minecraft/world/level/storage/loot/predicates/LootItemCondition/m_7940_ ()Lnet/minecraft/world/level/storage/loot/predicates/LootItemConditionType; net/minecraft/world/level/storage/loot/predicates/LootItemCondition/getType ()Lnet/minecraft/world/level/storage/loot/predicates/LootItemConditionType; +MD: net/minecraft/world/level/storage/loot/predicates/LootItemCondition$Builder/m_285747_ (Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition$Builder;)Lnet/minecraft/world/level/storage/loot/predicates/AllOfCondition$Builder; net/minecraft/world/level/storage/loot/predicates/LootItemCondition$Builder/and (Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition$Builder;)Lnet/minecraft/world/level/storage/loot/predicates/AllOfCondition$Builder; +MD: net/minecraft/world/level/storage/loot/predicates/LootItemCondition$Builder/m_285888_ (Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition$Builder;)Lnet/minecraft/world/level/storage/loot/predicates/AnyOfCondition$Builder; net/minecraft/world/level/storage/loot/predicates/LootItemCondition$Builder/or (Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition$Builder;)Lnet/minecraft/world/level/storage/loot/predicates/AnyOfCondition$Builder; +MD: net/minecraft/world/level/storage/loot/predicates/LootItemCondition$Builder/m_6409_ ()Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition; net/minecraft/world/level/storage/loot/predicates/LootItemCondition$Builder/build ()Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition; +MD: net/minecraft/world/level/storage/loot/predicates/LootItemCondition$Builder/m_81807_ ()Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition$Builder; net/minecraft/world/level/storage/loot/predicates/LootItemCondition$Builder/invert ()Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition$Builder; +MD: net/minecraft/world/level/storage/loot/predicates/LootItemConditionType/ (Lnet/minecraft/world/level/storage/loot/Serializer;)V net/minecraft/world/level/storage/loot/predicates/LootItemConditionType/ (Lnet/minecraft/world/level/storage/loot/Serializer;)V +MD: net/minecraft/world/level/storage/loot/predicates/LootItemConditions/ ()V net/minecraft/world/level/storage/loot/predicates/LootItemConditions/ ()V +MD: net/minecraft/world/level/storage/loot/predicates/LootItemConditions/ ()V net/minecraft/world/level/storage/loot/predicates/LootItemConditions/ ()V +MD: net/minecraft/world/level/storage/loot/predicates/LootItemConditions/m_81828_ ()Ljava/lang/Object; net/minecraft/world/level/storage/loot/predicates/LootItemConditions/createGsonAdapter ()Ljava/lang/Object; +MD: net/minecraft/world/level/storage/loot/predicates/LootItemConditions/m_81829_ (Ljava/lang/Object;)Z net/minecraft/world/level/storage/loot/predicates/LootItemConditions/lambda$orConditions$2 (Ljava/lang/Object;)Z +MD: net/minecraft/world/level/storage/loot/predicates/LootItemConditions/m_81831_ (Ljava/lang/String;Lnet/minecraft/world/level/storage/loot/Serializer;)Lnet/minecraft/world/level/storage/loot/predicates/LootItemConditionType; net/minecraft/world/level/storage/loot/predicates/LootItemConditions/register (Ljava/lang/String;Lnet/minecraft/world/level/storage/loot/Serializer;)Lnet/minecraft/world/level/storage/loot/predicates/LootItemConditionType; +MD: net/minecraft/world/level/storage/loot/predicates/LootItemConditions/m_81834_ ([Ljava/util/function/Predicate;)Ljava/util/function/Predicate; net/minecraft/world/level/storage/loot/predicates/LootItemConditions/andConditions ([Ljava/util/function/Predicate;)Ljava/util/function/Predicate; +MD: net/minecraft/world/level/storage/loot/predicates/LootItemConditions/m_81836_ ([Ljava/util/function/Predicate;Ljava/lang/Object;)Z net/minecraft/world/level/storage/loot/predicates/LootItemConditions/lambda$orConditions$3 ([Ljava/util/function/Predicate;Ljava/lang/Object;)Z +MD: net/minecraft/world/level/storage/loot/predicates/LootItemConditions/m_81839_ (Ljava/lang/Object;)Z net/minecraft/world/level/storage/loot/predicates/LootItemConditions/lambda$andConditions$0 (Ljava/lang/Object;)Z +MD: net/minecraft/world/level/storage/loot/predicates/LootItemConditions/m_81841_ ([Ljava/util/function/Predicate;)Ljava/util/function/Predicate; net/minecraft/world/level/storage/loot/predicates/LootItemConditions/orConditions ([Ljava/util/function/Predicate;)Ljava/util/function/Predicate; +MD: net/minecraft/world/level/storage/loot/predicates/LootItemConditions/m_81843_ ([Ljava/util/function/Predicate;Ljava/lang/Object;)Z net/minecraft/world/level/storage/loot/predicates/LootItemConditions/lambda$andConditions$1 ([Ljava/util/function/Predicate;Ljava/lang/Object;)Z +MD: net/minecraft/world/level/storage/loot/predicates/LootItemEntityPropertyCondition/ (Lnet/minecraft/advancements/critereon/EntityPredicate;Lnet/minecraft/world/level/storage/loot/LootContext$EntityTarget;)V net/minecraft/world/level/storage/loot/predicates/LootItemEntityPropertyCondition/ (Lnet/minecraft/advancements/critereon/EntityPredicate;Lnet/minecraft/world/level/storage/loot/LootContext$EntityTarget;)V +MD: net/minecraft/world/level/storage/loot/predicates/LootItemEntityPropertyCondition/m_6231_ ()Ljava/util/Set; net/minecraft/world/level/storage/loot/predicates/LootItemEntityPropertyCondition/getReferencedContextParams ()Ljava/util/Set; +MD: net/minecraft/world/level/storage/loot/predicates/LootItemEntityPropertyCondition/m_7940_ ()Lnet/minecraft/world/level/storage/loot/predicates/LootItemConditionType; net/minecraft/world/level/storage/loot/predicates/LootItemEntityPropertyCondition/getType ()Lnet/minecraft/world/level/storage/loot/predicates/LootItemConditionType; +MD: net/minecraft/world/level/storage/loot/predicates/LootItemEntityPropertyCondition/m_81856_ (Lnet/minecraft/advancements/critereon/EntityPredicate$Builder;Lnet/minecraft/world/level/storage/loot/LootContext$EntityTarget;)Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition; net/minecraft/world/level/storage/loot/predicates/LootItemEntityPropertyCondition/lambda$hasProperties$0 (Lnet/minecraft/advancements/critereon/EntityPredicate$Builder;Lnet/minecraft/world/level/storage/loot/LootContext$EntityTarget;)Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition; +MD: net/minecraft/world/level/storage/loot/predicates/LootItemEntityPropertyCondition/m_81859_ (Lnet/minecraft/advancements/critereon/EntityPredicate;Lnet/minecraft/world/level/storage/loot/LootContext$EntityTarget;)Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition; net/minecraft/world/level/storage/loot/predicates/LootItemEntityPropertyCondition/lambda$hasProperties$1 (Lnet/minecraft/advancements/critereon/EntityPredicate;Lnet/minecraft/world/level/storage/loot/LootContext$EntityTarget;)Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition; +MD: net/minecraft/world/level/storage/loot/predicates/LootItemEntityPropertyCondition/m_81862_ (Lnet/minecraft/world/level/storage/loot/LootContext$EntityTarget;)Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition$Builder; net/minecraft/world/level/storage/loot/predicates/LootItemEntityPropertyCondition/entityPresent (Lnet/minecraft/world/level/storage/loot/LootContext$EntityTarget;)Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition$Builder; +MD: net/minecraft/world/level/storage/loot/predicates/LootItemEntityPropertyCondition/m_81864_ (Lnet/minecraft/world/level/storage/loot/LootContext$EntityTarget;Lnet/minecraft/advancements/critereon/EntityPredicate$Builder;)Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition$Builder; net/minecraft/world/level/storage/loot/predicates/LootItemEntityPropertyCondition/hasProperties (Lnet/minecraft/world/level/storage/loot/LootContext$EntityTarget;Lnet/minecraft/advancements/critereon/EntityPredicate$Builder;)Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition$Builder; +MD: net/minecraft/world/level/storage/loot/predicates/LootItemEntityPropertyCondition/m_81867_ (Lnet/minecraft/world/level/storage/loot/LootContext$EntityTarget;Lnet/minecraft/advancements/critereon/EntityPredicate;)Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition$Builder; net/minecraft/world/level/storage/loot/predicates/LootItemEntityPropertyCondition/hasProperties (Lnet/minecraft/world/level/storage/loot/LootContext$EntityTarget;Lnet/minecraft/advancements/critereon/EntityPredicate;)Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition$Builder; +MD: net/minecraft/world/level/storage/loot/predicates/LootItemEntityPropertyCondition/test (Ljava/lang/Object;)Z net/minecraft/world/level/storage/loot/predicates/LootItemEntityPropertyCondition/test (Ljava/lang/Object;)Z +MD: net/minecraft/world/level/storage/loot/predicates/LootItemEntityPropertyCondition/test (Lnet/minecraft/world/level/storage/loot/LootContext;)Z net/minecraft/world/level/storage/loot/predicates/LootItemEntityPropertyCondition/test (Lnet/minecraft/world/level/storage/loot/LootContext;)Z +MD: net/minecraft/world/level/storage/loot/predicates/LootItemEntityPropertyCondition$Serializer/ ()V net/minecraft/world/level/storage/loot/predicates/LootItemEntityPropertyCondition$Serializer/ ()V +MD: net/minecraft/world/level/storage/loot/predicates/LootItemEntityPropertyCondition$Serializer/m_6170_ (Lcom/google/gson/JsonObject;Ljava/lang/Object;Lcom/google/gson/JsonSerializationContext;)V net/minecraft/world/level/storage/loot/predicates/LootItemEntityPropertyCondition$Serializer/serialize (Lcom/google/gson/JsonObject;Ljava/lang/Object;Lcom/google/gson/JsonSerializationContext;)V +MD: net/minecraft/world/level/storage/loot/predicates/LootItemEntityPropertyCondition$Serializer/m_6170_ (Lcom/google/gson/JsonObject;Lnet/minecraft/world/level/storage/loot/predicates/LootItemEntityPropertyCondition;Lcom/google/gson/JsonSerializationContext;)V net/minecraft/world/level/storage/loot/predicates/LootItemEntityPropertyCondition$Serializer/serialize (Lcom/google/gson/JsonObject;Lnet/minecraft/world/level/storage/loot/predicates/LootItemEntityPropertyCondition;Lcom/google/gson/JsonSerializationContext;)V +MD: net/minecraft/world/level/storage/loot/predicates/LootItemEntityPropertyCondition$Serializer/m_7561_ (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;)Lnet/minecraft/world/level/storage/loot/predicates/LootItemEntityPropertyCondition; net/minecraft/world/level/storage/loot/predicates/LootItemEntityPropertyCondition$Serializer/deserialize (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;)Lnet/minecraft/world/level/storage/loot/predicates/LootItemEntityPropertyCondition; +MD: net/minecraft/world/level/storage/loot/predicates/LootItemEntityPropertyCondition$Serializer/m_7561_ (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;)Ljava/lang/Object; net/minecraft/world/level/storage/loot/predicates/LootItemEntityPropertyCondition$Serializer/deserialize (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;)Ljava/lang/Object; +MD: net/minecraft/world/level/storage/loot/predicates/LootItemKilledByPlayerCondition/ ()V net/minecraft/world/level/storage/loot/predicates/LootItemKilledByPlayerCondition/ ()V +MD: net/minecraft/world/level/storage/loot/predicates/LootItemKilledByPlayerCondition/ ()V net/minecraft/world/level/storage/loot/predicates/LootItemKilledByPlayerCondition/ ()V +MD: net/minecraft/world/level/storage/loot/predicates/LootItemKilledByPlayerCondition/m_6231_ ()Ljava/util/Set; net/minecraft/world/level/storage/loot/predicates/LootItemKilledByPlayerCondition/getReferencedContextParams ()Ljava/util/Set; +MD: net/minecraft/world/level/storage/loot/predicates/LootItemKilledByPlayerCondition/m_7940_ ()Lnet/minecraft/world/level/storage/loot/predicates/LootItemConditionType; net/minecraft/world/level/storage/loot/predicates/LootItemKilledByPlayerCondition/getType ()Lnet/minecraft/world/level/storage/loot/predicates/LootItemConditionType; +MD: net/minecraft/world/level/storage/loot/predicates/LootItemKilledByPlayerCondition/m_81901_ ()Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition$Builder; net/minecraft/world/level/storage/loot/predicates/LootItemKilledByPlayerCondition/killedByPlayer ()Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition$Builder; +MD: net/minecraft/world/level/storage/loot/predicates/LootItemKilledByPlayerCondition/m_81903_ ()Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition; net/minecraft/world/level/storage/loot/predicates/LootItemKilledByPlayerCondition/lambda$killedByPlayer$0 ()Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition; +MD: net/minecraft/world/level/storage/loot/predicates/LootItemKilledByPlayerCondition/test (Ljava/lang/Object;)Z net/minecraft/world/level/storage/loot/predicates/LootItemKilledByPlayerCondition/test (Ljava/lang/Object;)Z +MD: net/minecraft/world/level/storage/loot/predicates/LootItemKilledByPlayerCondition/test (Lnet/minecraft/world/level/storage/loot/LootContext;)Z net/minecraft/world/level/storage/loot/predicates/LootItemKilledByPlayerCondition/test (Lnet/minecraft/world/level/storage/loot/LootContext;)Z +MD: net/minecraft/world/level/storage/loot/predicates/LootItemKilledByPlayerCondition$Serializer/ ()V net/minecraft/world/level/storage/loot/predicates/LootItemKilledByPlayerCondition$Serializer/ ()V +MD: net/minecraft/world/level/storage/loot/predicates/LootItemKilledByPlayerCondition$Serializer/m_6170_ (Lcom/google/gson/JsonObject;Ljava/lang/Object;Lcom/google/gson/JsonSerializationContext;)V net/minecraft/world/level/storage/loot/predicates/LootItemKilledByPlayerCondition$Serializer/serialize (Lcom/google/gson/JsonObject;Ljava/lang/Object;Lcom/google/gson/JsonSerializationContext;)V +MD: net/minecraft/world/level/storage/loot/predicates/LootItemKilledByPlayerCondition$Serializer/m_6170_ (Lcom/google/gson/JsonObject;Lnet/minecraft/world/level/storage/loot/predicates/LootItemKilledByPlayerCondition;Lcom/google/gson/JsonSerializationContext;)V net/minecraft/world/level/storage/loot/predicates/LootItemKilledByPlayerCondition$Serializer/serialize (Lcom/google/gson/JsonObject;Lnet/minecraft/world/level/storage/loot/predicates/LootItemKilledByPlayerCondition;Lcom/google/gson/JsonSerializationContext;)V +MD: net/minecraft/world/level/storage/loot/predicates/LootItemKilledByPlayerCondition$Serializer/m_7561_ (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;)Lnet/minecraft/world/level/storage/loot/predicates/LootItemKilledByPlayerCondition; net/minecraft/world/level/storage/loot/predicates/LootItemKilledByPlayerCondition$Serializer/deserialize (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;)Lnet/minecraft/world/level/storage/loot/predicates/LootItemKilledByPlayerCondition; +MD: net/minecraft/world/level/storage/loot/predicates/LootItemKilledByPlayerCondition$Serializer/m_7561_ (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;)Ljava/lang/Object; net/minecraft/world/level/storage/loot/predicates/LootItemKilledByPlayerCondition$Serializer/deserialize (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;)Ljava/lang/Object; +MD: net/minecraft/world/level/storage/loot/predicates/LootItemRandomChanceCondition/ (F)V net/minecraft/world/level/storage/loot/predicates/LootItemRandomChanceCondition/ (F)V +MD: net/minecraft/world/level/storage/loot/predicates/LootItemRandomChanceCondition/m_7940_ ()Lnet/minecraft/world/level/storage/loot/predicates/LootItemConditionType; net/minecraft/world/level/storage/loot/predicates/LootItemRandomChanceCondition/getType ()Lnet/minecraft/world/level/storage/loot/predicates/LootItemConditionType; +MD: net/minecraft/world/level/storage/loot/predicates/LootItemRandomChanceCondition/m_81927_ (F)Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition$Builder; net/minecraft/world/level/storage/loot/predicates/LootItemRandomChanceCondition/randomChance (F)Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition$Builder; +MD: net/minecraft/world/level/storage/loot/predicates/LootItemRandomChanceCondition/m_81934_ (F)Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition; net/minecraft/world/level/storage/loot/predicates/LootItemRandomChanceCondition/lambda$randomChance$0 (F)Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition; +MD: net/minecraft/world/level/storage/loot/predicates/LootItemRandomChanceCondition/test (Ljava/lang/Object;)Z net/minecraft/world/level/storage/loot/predicates/LootItemRandomChanceCondition/test (Ljava/lang/Object;)Z +MD: net/minecraft/world/level/storage/loot/predicates/LootItemRandomChanceCondition/test (Lnet/minecraft/world/level/storage/loot/LootContext;)Z net/minecraft/world/level/storage/loot/predicates/LootItemRandomChanceCondition/test (Lnet/minecraft/world/level/storage/loot/LootContext;)Z +MD: net/minecraft/world/level/storage/loot/predicates/LootItemRandomChanceCondition$Serializer/ ()V net/minecraft/world/level/storage/loot/predicates/LootItemRandomChanceCondition$Serializer/ ()V +MD: net/minecraft/world/level/storage/loot/predicates/LootItemRandomChanceCondition$Serializer/m_6170_ (Lcom/google/gson/JsonObject;Ljava/lang/Object;Lcom/google/gson/JsonSerializationContext;)V net/minecraft/world/level/storage/loot/predicates/LootItemRandomChanceCondition$Serializer/serialize (Lcom/google/gson/JsonObject;Ljava/lang/Object;Lcom/google/gson/JsonSerializationContext;)V +MD: net/minecraft/world/level/storage/loot/predicates/LootItemRandomChanceCondition$Serializer/m_6170_ (Lcom/google/gson/JsonObject;Lnet/minecraft/world/level/storage/loot/predicates/LootItemRandomChanceCondition;Lcom/google/gson/JsonSerializationContext;)V net/minecraft/world/level/storage/loot/predicates/LootItemRandomChanceCondition$Serializer/serialize (Lcom/google/gson/JsonObject;Lnet/minecraft/world/level/storage/loot/predicates/LootItemRandomChanceCondition;Lcom/google/gson/JsonSerializationContext;)V +MD: net/minecraft/world/level/storage/loot/predicates/LootItemRandomChanceCondition$Serializer/m_7561_ (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;)Lnet/minecraft/world/level/storage/loot/predicates/LootItemRandomChanceCondition; net/minecraft/world/level/storage/loot/predicates/LootItemRandomChanceCondition$Serializer/deserialize (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;)Lnet/minecraft/world/level/storage/loot/predicates/LootItemRandomChanceCondition; +MD: net/minecraft/world/level/storage/loot/predicates/LootItemRandomChanceCondition$Serializer/m_7561_ (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;)Ljava/lang/Object; net/minecraft/world/level/storage/loot/predicates/LootItemRandomChanceCondition$Serializer/deserialize (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;)Ljava/lang/Object; +MD: net/minecraft/world/level/storage/loot/predicates/LootItemRandomChanceWithLootingCondition/ (FF)V net/minecraft/world/level/storage/loot/predicates/LootItemRandomChanceWithLootingCondition/ (FF)V +MD: net/minecraft/world/level/storage/loot/predicates/LootItemRandomChanceWithLootingCondition/m_6231_ ()Ljava/util/Set; net/minecraft/world/level/storage/loot/predicates/LootItemRandomChanceWithLootingCondition/getReferencedContextParams ()Ljava/util/Set; +MD: net/minecraft/world/level/storage/loot/predicates/LootItemRandomChanceWithLootingCondition/m_7940_ ()Lnet/minecraft/world/level/storage/loot/predicates/LootItemConditionType; net/minecraft/world/level/storage/loot/predicates/LootItemRandomChanceWithLootingCondition/getType ()Lnet/minecraft/world/level/storage/loot/predicates/LootItemConditionType; +MD: net/minecraft/world/level/storage/loot/predicates/LootItemRandomChanceWithLootingCondition/m_81963_ (FF)Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition$Builder; net/minecraft/world/level/storage/loot/predicates/LootItemRandomChanceWithLootingCondition/randomChanceAndLootingBoost (FF)Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition$Builder; +MD: net/minecraft/world/level/storage/loot/predicates/LootItemRandomChanceWithLootingCondition/m_81971_ (FF)Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition; net/minecraft/world/level/storage/loot/predicates/LootItemRandomChanceWithLootingCondition/lambda$randomChanceAndLootingBoost$0 (FF)Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition; +MD: net/minecraft/world/level/storage/loot/predicates/LootItemRandomChanceWithLootingCondition/test (Ljava/lang/Object;)Z net/minecraft/world/level/storage/loot/predicates/LootItemRandomChanceWithLootingCondition/test (Ljava/lang/Object;)Z +MD: net/minecraft/world/level/storage/loot/predicates/LootItemRandomChanceWithLootingCondition/test (Lnet/minecraft/world/level/storage/loot/LootContext;)Z net/minecraft/world/level/storage/loot/predicates/LootItemRandomChanceWithLootingCondition/test (Lnet/minecraft/world/level/storage/loot/LootContext;)Z +MD: net/minecraft/world/level/storage/loot/predicates/LootItemRandomChanceWithLootingCondition$Serializer/ ()V net/minecraft/world/level/storage/loot/predicates/LootItemRandomChanceWithLootingCondition$Serializer/ ()V +MD: net/minecraft/world/level/storage/loot/predicates/LootItemRandomChanceWithLootingCondition$Serializer/m_6170_ (Lcom/google/gson/JsonObject;Lnet/minecraft/world/level/storage/loot/predicates/LootItemRandomChanceWithLootingCondition;Lcom/google/gson/JsonSerializationContext;)V net/minecraft/world/level/storage/loot/predicates/LootItemRandomChanceWithLootingCondition$Serializer/serialize (Lcom/google/gson/JsonObject;Lnet/minecraft/world/level/storage/loot/predicates/LootItemRandomChanceWithLootingCondition;Lcom/google/gson/JsonSerializationContext;)V +MD: net/minecraft/world/level/storage/loot/predicates/LootItemRandomChanceWithLootingCondition$Serializer/m_6170_ (Lcom/google/gson/JsonObject;Ljava/lang/Object;Lcom/google/gson/JsonSerializationContext;)V net/minecraft/world/level/storage/loot/predicates/LootItemRandomChanceWithLootingCondition$Serializer/serialize (Lcom/google/gson/JsonObject;Ljava/lang/Object;Lcom/google/gson/JsonSerializationContext;)V +MD: net/minecraft/world/level/storage/loot/predicates/LootItemRandomChanceWithLootingCondition$Serializer/m_7561_ (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;)Ljava/lang/Object; net/minecraft/world/level/storage/loot/predicates/LootItemRandomChanceWithLootingCondition$Serializer/deserialize (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;)Ljava/lang/Object; +MD: net/minecraft/world/level/storage/loot/predicates/LootItemRandomChanceWithLootingCondition$Serializer/m_7561_ (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;)Lnet/minecraft/world/level/storage/loot/predicates/LootItemRandomChanceWithLootingCondition; net/minecraft/world/level/storage/loot/predicates/LootItemRandomChanceWithLootingCondition$Serializer/deserialize (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;)Lnet/minecraft/world/level/storage/loot/predicates/LootItemRandomChanceWithLootingCondition; +MD: net/minecraft/world/level/storage/loot/predicates/MatchTool/ (Lnet/minecraft/advancements/critereon/ItemPredicate;)V net/minecraft/world/level/storage/loot/predicates/MatchTool/ (Lnet/minecraft/advancements/critereon/ItemPredicate;)V +MD: net/minecraft/world/level/storage/loot/predicates/MatchTool/m_6231_ ()Ljava/util/Set; net/minecraft/world/level/storage/loot/predicates/MatchTool/getReferencedContextParams ()Ljava/util/Set; +MD: net/minecraft/world/level/storage/loot/predicates/MatchTool/m_7940_ ()Lnet/minecraft/world/level/storage/loot/predicates/LootItemConditionType; net/minecraft/world/level/storage/loot/predicates/MatchTool/getType ()Lnet/minecraft/world/level/storage/loot/predicates/LootItemConditionType; +MD: net/minecraft/world/level/storage/loot/predicates/MatchTool/m_81997_ (Lnet/minecraft/advancements/critereon/ItemPredicate$Builder;)Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition$Builder; net/minecraft/world/level/storage/loot/predicates/MatchTool/toolMatches (Lnet/minecraft/advancements/critereon/ItemPredicate$Builder;)Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition$Builder; +MD: net/minecraft/world/level/storage/loot/predicates/MatchTool/m_82004_ (Lnet/minecraft/advancements/critereon/ItemPredicate$Builder;)Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition; net/minecraft/world/level/storage/loot/predicates/MatchTool/lambda$toolMatches$0 (Lnet/minecraft/advancements/critereon/ItemPredicate$Builder;)Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition; +MD: net/minecraft/world/level/storage/loot/predicates/MatchTool/test (Ljava/lang/Object;)Z net/minecraft/world/level/storage/loot/predicates/MatchTool/test (Ljava/lang/Object;)Z +MD: net/minecraft/world/level/storage/loot/predicates/MatchTool/test (Lnet/minecraft/world/level/storage/loot/LootContext;)Z net/minecraft/world/level/storage/loot/predicates/MatchTool/test (Lnet/minecraft/world/level/storage/loot/LootContext;)Z +MD: net/minecraft/world/level/storage/loot/predicates/MatchTool$Serializer/ ()V net/minecraft/world/level/storage/loot/predicates/MatchTool$Serializer/ ()V +MD: net/minecraft/world/level/storage/loot/predicates/MatchTool$Serializer/m_6170_ (Lcom/google/gson/JsonObject;Lnet/minecraft/world/level/storage/loot/predicates/MatchTool;Lcom/google/gson/JsonSerializationContext;)V net/minecraft/world/level/storage/loot/predicates/MatchTool$Serializer/serialize (Lcom/google/gson/JsonObject;Lnet/minecraft/world/level/storage/loot/predicates/MatchTool;Lcom/google/gson/JsonSerializationContext;)V +MD: net/minecraft/world/level/storage/loot/predicates/MatchTool$Serializer/m_6170_ (Lcom/google/gson/JsonObject;Ljava/lang/Object;Lcom/google/gson/JsonSerializationContext;)V net/minecraft/world/level/storage/loot/predicates/MatchTool$Serializer/serialize (Lcom/google/gson/JsonObject;Ljava/lang/Object;Lcom/google/gson/JsonSerializationContext;)V +MD: net/minecraft/world/level/storage/loot/predicates/MatchTool$Serializer/m_7561_ (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;)Ljava/lang/Object; net/minecraft/world/level/storage/loot/predicates/MatchTool$Serializer/deserialize (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;)Ljava/lang/Object; +MD: net/minecraft/world/level/storage/loot/predicates/MatchTool$Serializer/m_7561_ (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;)Lnet/minecraft/world/level/storage/loot/predicates/MatchTool; net/minecraft/world/level/storage/loot/predicates/MatchTool$Serializer/deserialize (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;)Lnet/minecraft/world/level/storage/loot/predicates/MatchTool; +MD: net/minecraft/world/level/storage/loot/predicates/TimeCheck/ (Ljava/lang/Long;Lnet/minecraft/world/level/storage/loot/IntRange;)V net/minecraft/world/level/storage/loot/predicates/TimeCheck/ (Ljava/lang/Long;Lnet/minecraft/world/level/storage/loot/IntRange;)V +MD: net/minecraft/world/level/storage/loot/predicates/TimeCheck/m_165509_ (Lnet/minecraft/world/level/storage/loot/IntRange;)Lnet/minecraft/world/level/storage/loot/predicates/TimeCheck$Builder; net/minecraft/world/level/storage/loot/predicates/TimeCheck/time (Lnet/minecraft/world/level/storage/loot/IntRange;)Lnet/minecraft/world/level/storage/loot/predicates/TimeCheck$Builder; +MD: net/minecraft/world/level/storage/loot/predicates/TimeCheck/m_6231_ ()Ljava/util/Set; net/minecraft/world/level/storage/loot/predicates/TimeCheck/getReferencedContextParams ()Ljava/util/Set; +MD: net/minecraft/world/level/storage/loot/predicates/TimeCheck/m_7940_ ()Lnet/minecraft/world/level/storage/loot/predicates/LootItemConditionType; net/minecraft/world/level/storage/loot/predicates/TimeCheck/getType ()Lnet/minecraft/world/level/storage/loot/predicates/LootItemConditionType; +MD: net/minecraft/world/level/storage/loot/predicates/TimeCheck/test (Ljava/lang/Object;)Z net/minecraft/world/level/storage/loot/predicates/TimeCheck/test (Ljava/lang/Object;)Z +MD: net/minecraft/world/level/storage/loot/predicates/TimeCheck/test (Lnet/minecraft/world/level/storage/loot/LootContext;)Z net/minecraft/world/level/storage/loot/predicates/TimeCheck/test (Lnet/minecraft/world/level/storage/loot/LootContext;)Z +MD: net/minecraft/world/level/storage/loot/predicates/TimeCheck$Builder/ (Lnet/minecraft/world/level/storage/loot/IntRange;)V net/minecraft/world/level/storage/loot/predicates/TimeCheck$Builder/ (Lnet/minecraft/world/level/storage/loot/IntRange;)V +MD: net/minecraft/world/level/storage/loot/predicates/TimeCheck$Builder/m_165516_ (J)Lnet/minecraft/world/level/storage/loot/predicates/TimeCheck$Builder; net/minecraft/world/level/storage/loot/predicates/TimeCheck$Builder/setPeriod (J)Lnet/minecraft/world/level/storage/loot/predicates/TimeCheck$Builder; +MD: net/minecraft/world/level/storage/loot/predicates/TimeCheck$Builder/m_6409_ ()Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition; net/minecraft/world/level/storage/loot/predicates/TimeCheck$Builder/build ()Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition; +MD: net/minecraft/world/level/storage/loot/predicates/TimeCheck$Builder/m_6409_ ()Lnet/minecraft/world/level/storage/loot/predicates/TimeCheck; net/minecraft/world/level/storage/loot/predicates/TimeCheck$Builder/build ()Lnet/minecraft/world/level/storage/loot/predicates/TimeCheck; +MD: net/minecraft/world/level/storage/loot/predicates/TimeCheck$Serializer/ ()V net/minecraft/world/level/storage/loot/predicates/TimeCheck$Serializer/ ()V +MD: net/minecraft/world/level/storage/loot/predicates/TimeCheck$Serializer/m_6170_ (Lcom/google/gson/JsonObject;Ljava/lang/Object;Lcom/google/gson/JsonSerializationContext;)V net/minecraft/world/level/storage/loot/predicates/TimeCheck$Serializer/serialize (Lcom/google/gson/JsonObject;Ljava/lang/Object;Lcom/google/gson/JsonSerializationContext;)V +MD: net/minecraft/world/level/storage/loot/predicates/TimeCheck$Serializer/m_6170_ (Lcom/google/gson/JsonObject;Lnet/minecraft/world/level/storage/loot/predicates/TimeCheck;Lcom/google/gson/JsonSerializationContext;)V net/minecraft/world/level/storage/loot/predicates/TimeCheck$Serializer/serialize (Lcom/google/gson/JsonObject;Lnet/minecraft/world/level/storage/loot/predicates/TimeCheck;Lcom/google/gson/JsonSerializationContext;)V +MD: net/minecraft/world/level/storage/loot/predicates/TimeCheck$Serializer/m_7561_ (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;)Lnet/minecraft/world/level/storage/loot/predicates/TimeCheck; net/minecraft/world/level/storage/loot/predicates/TimeCheck$Serializer/deserialize (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;)Lnet/minecraft/world/level/storage/loot/predicates/TimeCheck; +MD: net/minecraft/world/level/storage/loot/predicates/TimeCheck$Serializer/m_7561_ (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;)Ljava/lang/Object; net/minecraft/world/level/storage/loot/predicates/TimeCheck$Serializer/deserialize (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;)Ljava/lang/Object; +MD: net/minecraft/world/level/storage/loot/predicates/ValueCheckCondition/ (Lnet/minecraft/world/level/storage/loot/providers/number/NumberProvider;Lnet/minecraft/world/level/storage/loot/IntRange;)V net/minecraft/world/level/storage/loot/predicates/ValueCheckCondition/ (Lnet/minecraft/world/level/storage/loot/providers/number/NumberProvider;Lnet/minecraft/world/level/storage/loot/IntRange;)V +MD: net/minecraft/world/level/storage/loot/predicates/ValueCheckCondition/m_165528_ (Lnet/minecraft/world/level/storage/loot/providers/number/NumberProvider;Lnet/minecraft/world/level/storage/loot/IntRange;)Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition$Builder; net/minecraft/world/level/storage/loot/predicates/ValueCheckCondition/hasValue (Lnet/minecraft/world/level/storage/loot/providers/number/NumberProvider;Lnet/minecraft/world/level/storage/loot/IntRange;)Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition$Builder; +MD: net/minecraft/world/level/storage/loot/predicates/ValueCheckCondition/m_165532_ (Lnet/minecraft/world/level/storage/loot/providers/number/NumberProvider;Lnet/minecraft/world/level/storage/loot/IntRange;)Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition; net/minecraft/world/level/storage/loot/predicates/ValueCheckCondition/lambda$hasValue$0 (Lnet/minecraft/world/level/storage/loot/providers/number/NumberProvider;Lnet/minecraft/world/level/storage/loot/IntRange;)Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition; +MD: net/minecraft/world/level/storage/loot/predicates/ValueCheckCondition/m_6231_ ()Ljava/util/Set; net/minecraft/world/level/storage/loot/predicates/ValueCheckCondition/getReferencedContextParams ()Ljava/util/Set; +MD: net/minecraft/world/level/storage/loot/predicates/ValueCheckCondition/m_7940_ ()Lnet/minecraft/world/level/storage/loot/predicates/LootItemConditionType; net/minecraft/world/level/storage/loot/predicates/ValueCheckCondition/getType ()Lnet/minecraft/world/level/storage/loot/predicates/LootItemConditionType; +MD: net/minecraft/world/level/storage/loot/predicates/ValueCheckCondition/test (Ljava/lang/Object;)Z net/minecraft/world/level/storage/loot/predicates/ValueCheckCondition/test (Ljava/lang/Object;)Z +MD: net/minecraft/world/level/storage/loot/predicates/ValueCheckCondition/test (Lnet/minecraft/world/level/storage/loot/LootContext;)Z net/minecraft/world/level/storage/loot/predicates/ValueCheckCondition/test (Lnet/minecraft/world/level/storage/loot/LootContext;)Z +MD: net/minecraft/world/level/storage/loot/predicates/ValueCheckCondition$Serializer/ ()V net/minecraft/world/level/storage/loot/predicates/ValueCheckCondition$Serializer/ ()V +MD: net/minecraft/world/level/storage/loot/predicates/ValueCheckCondition$Serializer/m_6170_ (Lcom/google/gson/JsonObject;Ljava/lang/Object;Lcom/google/gson/JsonSerializationContext;)V net/minecraft/world/level/storage/loot/predicates/ValueCheckCondition$Serializer/serialize (Lcom/google/gson/JsonObject;Ljava/lang/Object;Lcom/google/gson/JsonSerializationContext;)V +MD: net/minecraft/world/level/storage/loot/predicates/ValueCheckCondition$Serializer/m_6170_ (Lcom/google/gson/JsonObject;Lnet/minecraft/world/level/storage/loot/predicates/ValueCheckCondition;Lcom/google/gson/JsonSerializationContext;)V net/minecraft/world/level/storage/loot/predicates/ValueCheckCondition$Serializer/serialize (Lcom/google/gson/JsonObject;Lnet/minecraft/world/level/storage/loot/predicates/ValueCheckCondition;Lcom/google/gson/JsonSerializationContext;)V +MD: net/minecraft/world/level/storage/loot/predicates/ValueCheckCondition$Serializer/m_7561_ (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;)Lnet/minecraft/world/level/storage/loot/predicates/ValueCheckCondition; net/minecraft/world/level/storage/loot/predicates/ValueCheckCondition$Serializer/deserialize (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;)Lnet/minecraft/world/level/storage/loot/predicates/ValueCheckCondition; +MD: net/minecraft/world/level/storage/loot/predicates/ValueCheckCondition$Serializer/m_7561_ (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;)Ljava/lang/Object; net/minecraft/world/level/storage/loot/predicates/ValueCheckCondition$Serializer/deserialize (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;)Ljava/lang/Object; +MD: net/minecraft/world/level/storage/loot/predicates/WeatherCheck/ (Ljava/lang/Boolean;Ljava/lang/Boolean;)V net/minecraft/world/level/storage/loot/predicates/WeatherCheck/ (Ljava/lang/Boolean;Ljava/lang/Boolean;)V +MD: net/minecraft/world/level/storage/loot/predicates/WeatherCheck/m_165552_ ()Lnet/minecraft/world/level/storage/loot/predicates/WeatherCheck$Builder; net/minecraft/world/level/storage/loot/predicates/WeatherCheck/weather ()Lnet/minecraft/world/level/storage/loot/predicates/WeatherCheck$Builder; +MD: net/minecraft/world/level/storage/loot/predicates/WeatherCheck/m_7940_ ()Lnet/minecraft/world/level/storage/loot/predicates/LootItemConditionType; net/minecraft/world/level/storage/loot/predicates/WeatherCheck/getType ()Lnet/minecraft/world/level/storage/loot/predicates/LootItemConditionType; +MD: net/minecraft/world/level/storage/loot/predicates/WeatherCheck/test (Ljava/lang/Object;)Z net/minecraft/world/level/storage/loot/predicates/WeatherCheck/test (Ljava/lang/Object;)Z +MD: net/minecraft/world/level/storage/loot/predicates/WeatherCheck/test (Lnet/minecraft/world/level/storage/loot/LootContext;)Z net/minecraft/world/level/storage/loot/predicates/WeatherCheck/test (Lnet/minecraft/world/level/storage/loot/LootContext;)Z +MD: net/minecraft/world/level/storage/loot/predicates/WeatherCheck$Builder/ ()V net/minecraft/world/level/storage/loot/predicates/WeatherCheck$Builder/ ()V +MD: net/minecraft/world/level/storage/loot/predicates/WeatherCheck$Builder/m_165556_ (Ljava/lang/Boolean;)Lnet/minecraft/world/level/storage/loot/predicates/WeatherCheck$Builder; net/minecraft/world/level/storage/loot/predicates/WeatherCheck$Builder/setRaining (Ljava/lang/Boolean;)Lnet/minecraft/world/level/storage/loot/predicates/WeatherCheck$Builder; +MD: net/minecraft/world/level/storage/loot/predicates/WeatherCheck$Builder/m_165559_ (Ljava/lang/Boolean;)Lnet/minecraft/world/level/storage/loot/predicates/WeatherCheck$Builder; net/minecraft/world/level/storage/loot/predicates/WeatherCheck$Builder/setThundering (Ljava/lang/Boolean;)Lnet/minecraft/world/level/storage/loot/predicates/WeatherCheck$Builder; +MD: net/minecraft/world/level/storage/loot/predicates/WeatherCheck$Builder/m_6409_ ()Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition; net/minecraft/world/level/storage/loot/predicates/WeatherCheck$Builder/build ()Lnet/minecraft/world/level/storage/loot/predicates/LootItemCondition; +MD: net/minecraft/world/level/storage/loot/predicates/WeatherCheck$Builder/m_6409_ ()Lnet/minecraft/world/level/storage/loot/predicates/WeatherCheck; net/minecraft/world/level/storage/loot/predicates/WeatherCheck$Builder/build ()Lnet/minecraft/world/level/storage/loot/predicates/WeatherCheck; +MD: net/minecraft/world/level/storage/loot/predicates/WeatherCheck$Serializer/ ()V net/minecraft/world/level/storage/loot/predicates/WeatherCheck$Serializer/ ()V +MD: net/minecraft/world/level/storage/loot/predicates/WeatherCheck$Serializer/m_6170_ (Lcom/google/gson/JsonObject;Ljava/lang/Object;Lcom/google/gson/JsonSerializationContext;)V net/minecraft/world/level/storage/loot/predicates/WeatherCheck$Serializer/serialize (Lcom/google/gson/JsonObject;Ljava/lang/Object;Lcom/google/gson/JsonSerializationContext;)V +MD: net/minecraft/world/level/storage/loot/predicates/WeatherCheck$Serializer/m_6170_ (Lcom/google/gson/JsonObject;Lnet/minecraft/world/level/storage/loot/predicates/WeatherCheck;Lcom/google/gson/JsonSerializationContext;)V net/minecraft/world/level/storage/loot/predicates/WeatherCheck$Serializer/serialize (Lcom/google/gson/JsonObject;Lnet/minecraft/world/level/storage/loot/predicates/WeatherCheck;Lcom/google/gson/JsonSerializationContext;)V +MD: net/minecraft/world/level/storage/loot/predicates/WeatherCheck$Serializer/m_7561_ (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;)Lnet/minecraft/world/level/storage/loot/predicates/WeatherCheck; net/minecraft/world/level/storage/loot/predicates/WeatherCheck$Serializer/deserialize (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;)Lnet/minecraft/world/level/storage/loot/predicates/WeatherCheck; +MD: net/minecraft/world/level/storage/loot/predicates/WeatherCheck$Serializer/m_7561_ (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;)Ljava/lang/Object; net/minecraft/world/level/storage/loot/predicates/WeatherCheck$Serializer/deserialize (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;)Ljava/lang/Object; +MD: net/minecraft/world/level/storage/loot/providers/nbt/ContextNbtProvider/ ()V net/minecraft/world/level/storage/loot/providers/nbt/ContextNbtProvider/ ()V +MD: net/minecraft/world/level/storage/loot/providers/nbt/ContextNbtProvider/ (Lnet/minecraft/world/level/storage/loot/providers/nbt/ContextNbtProvider$Getter;)V net/minecraft/world/level/storage/loot/providers/nbt/ContextNbtProvider/ (Lnet/minecraft/world/level/storage/loot/providers/nbt/ContextNbtProvider$Getter;)V +MD: net/minecraft/world/level/storage/loot/providers/nbt/ContextNbtProvider/m_142301_ (Lnet/minecraft/world/level/storage/loot/LootContext;)Lnet/minecraft/nbt/Tag; net/minecraft/world/level/storage/loot/providers/nbt/ContextNbtProvider/get (Lnet/minecraft/world/level/storage/loot/LootContext;)Lnet/minecraft/nbt/Tag; +MD: net/minecraft/world/level/storage/loot/providers/nbt/ContextNbtProvider/m_142624_ ()Lnet/minecraft/world/level/storage/loot/providers/nbt/LootNbtProviderType; net/minecraft/world/level/storage/loot/providers/nbt/ContextNbtProvider/getType ()Lnet/minecraft/world/level/storage/loot/providers/nbt/LootNbtProviderType; +MD: net/minecraft/world/level/storage/loot/providers/nbt/ContextNbtProvider/m_142677_ ()Ljava/util/Set; net/minecraft/world/level/storage/loot/providers/nbt/ContextNbtProvider/getReferencedContextParams ()Ljava/util/Set; +MD: net/minecraft/world/level/storage/loot/providers/nbt/ContextNbtProvider/m_165570_ (Lnet/minecraft/world/level/storage/loot/LootContext$EntityTarget;)Lnet/minecraft/world/level/storage/loot/providers/nbt/NbtProvider; net/minecraft/world/level/storage/loot/providers/nbt/ContextNbtProvider/forContextEntity (Lnet/minecraft/world/level/storage/loot/LootContext$EntityTarget;)Lnet/minecraft/world/level/storage/loot/providers/nbt/NbtProvider; +MD: net/minecraft/world/level/storage/loot/providers/nbt/ContextNbtProvider/m_165574_ (Ljava/lang/String;)Lnet/minecraft/world/level/storage/loot/providers/nbt/ContextNbtProvider; net/minecraft/world/level/storage/loot/providers/nbt/ContextNbtProvider/createFromContext (Ljava/lang/String;)Lnet/minecraft/world/level/storage/loot/providers/nbt/ContextNbtProvider; +MD: net/minecraft/world/level/storage/loot/providers/nbt/ContextNbtProvider/m_165577_ (Lnet/minecraft/world/level/storage/loot/LootContext$EntityTarget;)Lnet/minecraft/world/level/storage/loot/providers/nbt/ContextNbtProvider$Getter; net/minecraft/world/level/storage/loot/providers/nbt/ContextNbtProvider/forEntity (Lnet/minecraft/world/level/storage/loot/LootContext$EntityTarget;)Lnet/minecraft/world/level/storage/loot/providers/nbt/ContextNbtProvider$Getter; +MD: net/minecraft/world/level/storage/loot/providers/nbt/ContextNbtProvider$1/ ()V net/minecraft/world/level/storage/loot/providers/nbt/ContextNbtProvider$1/ ()V +MD: net/minecraft/world/level/storage/loot/providers/nbt/ContextNbtProvider$1/m_142016_ ()Ljava/lang/String; net/minecraft/world/level/storage/loot/providers/nbt/ContextNbtProvider$1/getId ()Ljava/lang/String; +MD: net/minecraft/world/level/storage/loot/providers/nbt/ContextNbtProvider$1/m_142135_ (Lnet/minecraft/world/level/storage/loot/LootContext;)Lnet/minecraft/nbt/Tag; net/minecraft/world/level/storage/loot/providers/nbt/ContextNbtProvider$1/get (Lnet/minecraft/world/level/storage/loot/LootContext;)Lnet/minecraft/nbt/Tag; +MD: net/minecraft/world/level/storage/loot/providers/nbt/ContextNbtProvider$1/m_142524_ ()Ljava/util/Set; net/minecraft/world/level/storage/loot/providers/nbt/ContextNbtProvider$1/getReferencedContextParams ()Ljava/util/Set; +MD: net/minecraft/world/level/storage/loot/providers/nbt/ContextNbtProvider$2/ (Lnet/minecraft/world/level/storage/loot/LootContext$EntityTarget;)V net/minecraft/world/level/storage/loot/providers/nbt/ContextNbtProvider$2/ (Lnet/minecraft/world/level/storage/loot/LootContext$EntityTarget;)V +MD: net/minecraft/world/level/storage/loot/providers/nbt/ContextNbtProvider$2/m_142016_ ()Ljava/lang/String; net/minecraft/world/level/storage/loot/providers/nbt/ContextNbtProvider$2/getId ()Ljava/lang/String; +MD: net/minecraft/world/level/storage/loot/providers/nbt/ContextNbtProvider$2/m_142135_ (Lnet/minecraft/world/level/storage/loot/LootContext;)Lnet/minecraft/nbt/Tag; net/minecraft/world/level/storage/loot/providers/nbt/ContextNbtProvider$2/get (Lnet/minecraft/world/level/storage/loot/LootContext;)Lnet/minecraft/nbt/Tag; +MD: net/minecraft/world/level/storage/loot/providers/nbt/ContextNbtProvider$2/m_142524_ ()Ljava/util/Set; net/minecraft/world/level/storage/loot/providers/nbt/ContextNbtProvider$2/getReferencedContextParams ()Ljava/util/Set; +MD: net/minecraft/world/level/storage/loot/providers/nbt/ContextNbtProvider$Getter/m_142016_ ()Ljava/lang/String; net/minecraft/world/level/storage/loot/providers/nbt/ContextNbtProvider$Getter/getId ()Ljava/lang/String; +MD: net/minecraft/world/level/storage/loot/providers/nbt/ContextNbtProvider$Getter/m_142135_ (Lnet/minecraft/world/level/storage/loot/LootContext;)Lnet/minecraft/nbt/Tag; net/minecraft/world/level/storage/loot/providers/nbt/ContextNbtProvider$Getter/get (Lnet/minecraft/world/level/storage/loot/LootContext;)Lnet/minecraft/nbt/Tag; +MD: net/minecraft/world/level/storage/loot/providers/nbt/ContextNbtProvider$Getter/m_142524_ ()Ljava/util/Set; net/minecraft/world/level/storage/loot/providers/nbt/ContextNbtProvider$Getter/getReferencedContextParams ()Ljava/util/Set; +MD: net/minecraft/world/level/storage/loot/providers/nbt/ContextNbtProvider$InlineSerializer/ ()V net/minecraft/world/level/storage/loot/providers/nbt/ContextNbtProvider$InlineSerializer/ ()V +MD: net/minecraft/world/level/storage/loot/providers/nbt/ContextNbtProvider$InlineSerializer/m_142268_ (Lcom/google/gson/JsonElement;Lcom/google/gson/JsonDeserializationContext;)Lnet/minecraft/world/level/storage/loot/providers/nbt/ContextNbtProvider; net/minecraft/world/level/storage/loot/providers/nbt/ContextNbtProvider$InlineSerializer/deserialize (Lcom/google/gson/JsonElement;Lcom/google/gson/JsonDeserializationContext;)Lnet/minecraft/world/level/storage/loot/providers/nbt/ContextNbtProvider; +MD: net/minecraft/world/level/storage/loot/providers/nbt/ContextNbtProvider$InlineSerializer/m_142268_ (Lcom/google/gson/JsonElement;Lcom/google/gson/JsonDeserializationContext;)Ljava/lang/Object; net/minecraft/world/level/storage/loot/providers/nbt/ContextNbtProvider$InlineSerializer/deserialize (Lcom/google/gson/JsonElement;Lcom/google/gson/JsonDeserializationContext;)Ljava/lang/Object; +MD: net/minecraft/world/level/storage/loot/providers/nbt/ContextNbtProvider$InlineSerializer/m_142413_ (Ljava/lang/Object;Lcom/google/gson/JsonSerializationContext;)Lcom/google/gson/JsonElement; net/minecraft/world/level/storage/loot/providers/nbt/ContextNbtProvider$InlineSerializer/serialize (Ljava/lang/Object;Lcom/google/gson/JsonSerializationContext;)Lcom/google/gson/JsonElement; +MD: net/minecraft/world/level/storage/loot/providers/nbt/ContextNbtProvider$InlineSerializer/m_142413_ (Lnet/minecraft/world/level/storage/loot/providers/nbt/ContextNbtProvider;Lcom/google/gson/JsonSerializationContext;)Lcom/google/gson/JsonElement; net/minecraft/world/level/storage/loot/providers/nbt/ContextNbtProvider$InlineSerializer/serialize (Lnet/minecraft/world/level/storage/loot/providers/nbt/ContextNbtProvider;Lcom/google/gson/JsonSerializationContext;)Lcom/google/gson/JsonElement; +MD: net/minecraft/world/level/storage/loot/providers/nbt/ContextNbtProvider$Serializer/ ()V net/minecraft/world/level/storage/loot/providers/nbt/ContextNbtProvider$Serializer/ ()V +MD: net/minecraft/world/level/storage/loot/providers/nbt/ContextNbtProvider$Serializer/m_6170_ (Lcom/google/gson/JsonObject;Ljava/lang/Object;Lcom/google/gson/JsonSerializationContext;)V net/minecraft/world/level/storage/loot/providers/nbt/ContextNbtProvider$Serializer/serialize (Lcom/google/gson/JsonObject;Ljava/lang/Object;Lcom/google/gson/JsonSerializationContext;)V +MD: net/minecraft/world/level/storage/loot/providers/nbt/ContextNbtProvider$Serializer/m_6170_ (Lcom/google/gson/JsonObject;Lnet/minecraft/world/level/storage/loot/providers/nbt/ContextNbtProvider;Lcom/google/gson/JsonSerializationContext;)V net/minecraft/world/level/storage/loot/providers/nbt/ContextNbtProvider$Serializer/serialize (Lcom/google/gson/JsonObject;Lnet/minecraft/world/level/storage/loot/providers/nbt/ContextNbtProvider;Lcom/google/gson/JsonSerializationContext;)V +MD: net/minecraft/world/level/storage/loot/providers/nbt/ContextNbtProvider$Serializer/m_7561_ (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;)Ljava/lang/Object; net/minecraft/world/level/storage/loot/providers/nbt/ContextNbtProvider$Serializer/deserialize (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;)Ljava/lang/Object; +MD: net/minecraft/world/level/storage/loot/providers/nbt/ContextNbtProvider$Serializer/m_7561_ (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;)Lnet/minecraft/world/level/storage/loot/providers/nbt/ContextNbtProvider; net/minecraft/world/level/storage/loot/providers/nbt/ContextNbtProvider$Serializer/deserialize (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;)Lnet/minecraft/world/level/storage/loot/providers/nbt/ContextNbtProvider; +MD: net/minecraft/world/level/storage/loot/providers/nbt/LootNbtProviderType/ (Lnet/minecraft/world/level/storage/loot/Serializer;)V net/minecraft/world/level/storage/loot/providers/nbt/LootNbtProviderType/ (Lnet/minecraft/world/level/storage/loot/Serializer;)V +MD: net/minecraft/world/level/storage/loot/providers/nbt/NbtProvider/m_142301_ (Lnet/minecraft/world/level/storage/loot/LootContext;)Lnet/minecraft/nbt/Tag; net/minecraft/world/level/storage/loot/providers/nbt/NbtProvider/get (Lnet/minecraft/world/level/storage/loot/LootContext;)Lnet/minecraft/nbt/Tag; +MD: net/minecraft/world/level/storage/loot/providers/nbt/NbtProvider/m_142624_ ()Lnet/minecraft/world/level/storage/loot/providers/nbt/LootNbtProviderType; net/minecraft/world/level/storage/loot/providers/nbt/NbtProvider/getType ()Lnet/minecraft/world/level/storage/loot/providers/nbt/LootNbtProviderType; +MD: net/minecraft/world/level/storage/loot/providers/nbt/NbtProvider/m_142677_ ()Ljava/util/Set; net/minecraft/world/level/storage/loot/providers/nbt/NbtProvider/getReferencedContextParams ()Ljava/util/Set; +MD: net/minecraft/world/level/storage/loot/providers/nbt/NbtProviders/ ()V net/minecraft/world/level/storage/loot/providers/nbt/NbtProviders/ ()V +MD: net/minecraft/world/level/storage/loot/providers/nbt/NbtProviders/ ()V net/minecraft/world/level/storage/loot/providers/nbt/NbtProviders/ ()V +MD: net/minecraft/world/level/storage/loot/providers/nbt/NbtProviders/m_165627_ ()Ljava/lang/Object; net/minecraft/world/level/storage/loot/providers/nbt/NbtProviders/createGsonAdapter ()Ljava/lang/Object; +MD: net/minecraft/world/level/storage/loot/providers/nbt/NbtProviders/m_165628_ (Ljava/lang/String;Lnet/minecraft/world/level/storage/loot/Serializer;)Lnet/minecraft/world/level/storage/loot/providers/nbt/LootNbtProviderType; net/minecraft/world/level/storage/loot/providers/nbt/NbtProviders/register (Ljava/lang/String;Lnet/minecraft/world/level/storage/loot/Serializer;)Lnet/minecraft/world/level/storage/loot/providers/nbt/LootNbtProviderType; +MD: net/minecraft/world/level/storage/loot/providers/nbt/StorageNbtProvider/ (Lnet/minecraft/resources/ResourceLocation;)V net/minecraft/world/level/storage/loot/providers/nbt/StorageNbtProvider/ (Lnet/minecraft/resources/ResourceLocation;)V +MD: net/minecraft/world/level/storage/loot/providers/nbt/StorageNbtProvider/m_142301_ (Lnet/minecraft/world/level/storage/loot/LootContext;)Lnet/minecraft/nbt/Tag; net/minecraft/world/level/storage/loot/providers/nbt/StorageNbtProvider/get (Lnet/minecraft/world/level/storage/loot/LootContext;)Lnet/minecraft/nbt/Tag; +MD: net/minecraft/world/level/storage/loot/providers/nbt/StorageNbtProvider/m_142624_ ()Lnet/minecraft/world/level/storage/loot/providers/nbt/LootNbtProviderType; net/minecraft/world/level/storage/loot/providers/nbt/StorageNbtProvider/getType ()Lnet/minecraft/world/level/storage/loot/providers/nbt/LootNbtProviderType; +MD: net/minecraft/world/level/storage/loot/providers/nbt/StorageNbtProvider/m_142677_ ()Ljava/util/Set; net/minecraft/world/level/storage/loot/providers/nbt/StorageNbtProvider/getReferencedContextParams ()Ljava/util/Set; +MD: net/minecraft/world/level/storage/loot/providers/nbt/StorageNbtProvider$Serializer/ ()V net/minecraft/world/level/storage/loot/providers/nbt/StorageNbtProvider$Serializer/ ()V +MD: net/minecraft/world/level/storage/loot/providers/nbt/StorageNbtProvider$Serializer/m_6170_ (Lcom/google/gson/JsonObject;Ljava/lang/Object;Lcom/google/gson/JsonSerializationContext;)V net/minecraft/world/level/storage/loot/providers/nbt/StorageNbtProvider$Serializer/serialize (Lcom/google/gson/JsonObject;Ljava/lang/Object;Lcom/google/gson/JsonSerializationContext;)V +MD: net/minecraft/world/level/storage/loot/providers/nbt/StorageNbtProvider$Serializer/m_6170_ (Lcom/google/gson/JsonObject;Lnet/minecraft/world/level/storage/loot/providers/nbt/StorageNbtProvider;Lcom/google/gson/JsonSerializationContext;)V net/minecraft/world/level/storage/loot/providers/nbt/StorageNbtProvider$Serializer/serialize (Lcom/google/gson/JsonObject;Lnet/minecraft/world/level/storage/loot/providers/nbt/StorageNbtProvider;Lcom/google/gson/JsonSerializationContext;)V +MD: net/minecraft/world/level/storage/loot/providers/nbt/StorageNbtProvider$Serializer/m_7561_ (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;)Lnet/minecraft/world/level/storage/loot/providers/nbt/StorageNbtProvider; net/minecraft/world/level/storage/loot/providers/nbt/StorageNbtProvider$Serializer/deserialize (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;)Lnet/minecraft/world/level/storage/loot/providers/nbt/StorageNbtProvider; +MD: net/minecraft/world/level/storage/loot/providers/nbt/StorageNbtProvider$Serializer/m_7561_ (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;)Ljava/lang/Object; net/minecraft/world/level/storage/loot/providers/nbt/StorageNbtProvider$Serializer/deserialize (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;)Ljava/lang/Object; +MD: net/minecraft/world/level/storage/loot/providers/number/BinomialDistributionGenerator/ (Lnet/minecraft/world/level/storage/loot/providers/number/NumberProvider;Lnet/minecraft/world/level/storage/loot/providers/number/NumberProvider;)V net/minecraft/world/level/storage/loot/providers/number/BinomialDistributionGenerator/ (Lnet/minecraft/world/level/storage/loot/providers/number/NumberProvider;Lnet/minecraft/world/level/storage/loot/providers/number/NumberProvider;)V +MD: net/minecraft/world/level/storage/loot/providers/number/BinomialDistributionGenerator/m_142587_ ()Lnet/minecraft/world/level/storage/loot/providers/number/LootNumberProviderType; net/minecraft/world/level/storage/loot/providers/number/BinomialDistributionGenerator/getType ()Lnet/minecraft/world/level/storage/loot/providers/number/LootNumberProviderType; +MD: net/minecraft/world/level/storage/loot/providers/number/BinomialDistributionGenerator/m_142683_ (Lnet/minecraft/world/level/storage/loot/LootContext;)I net/minecraft/world/level/storage/loot/providers/number/BinomialDistributionGenerator/getInt (Lnet/minecraft/world/level/storage/loot/LootContext;)I +MD: net/minecraft/world/level/storage/loot/providers/number/BinomialDistributionGenerator/m_142688_ (Lnet/minecraft/world/level/storage/loot/LootContext;)F net/minecraft/world/level/storage/loot/providers/number/BinomialDistributionGenerator/getFloat (Lnet/minecraft/world/level/storage/loot/LootContext;)F +MD: net/minecraft/world/level/storage/loot/providers/number/BinomialDistributionGenerator/m_165659_ (IF)Lnet/minecraft/world/level/storage/loot/providers/number/BinomialDistributionGenerator; net/minecraft/world/level/storage/loot/providers/number/BinomialDistributionGenerator/binomial (IF)Lnet/minecraft/world/level/storage/loot/providers/number/BinomialDistributionGenerator; +MD: net/minecraft/world/level/storage/loot/providers/number/BinomialDistributionGenerator/m_6231_ ()Ljava/util/Set; net/minecraft/world/level/storage/loot/providers/number/BinomialDistributionGenerator/getReferencedContextParams ()Ljava/util/Set; +MD: net/minecraft/world/level/storage/loot/providers/number/BinomialDistributionGenerator$Serializer/ ()V net/minecraft/world/level/storage/loot/providers/number/BinomialDistributionGenerator$Serializer/ ()V +MD: net/minecraft/world/level/storage/loot/providers/number/BinomialDistributionGenerator$Serializer/m_6170_ (Lcom/google/gson/JsonObject;Ljava/lang/Object;Lcom/google/gson/JsonSerializationContext;)V net/minecraft/world/level/storage/loot/providers/number/BinomialDistributionGenerator$Serializer/serialize (Lcom/google/gson/JsonObject;Ljava/lang/Object;Lcom/google/gson/JsonSerializationContext;)V +MD: net/minecraft/world/level/storage/loot/providers/number/BinomialDistributionGenerator$Serializer/m_6170_ (Lcom/google/gson/JsonObject;Lnet/minecraft/world/level/storage/loot/providers/number/BinomialDistributionGenerator;Lcom/google/gson/JsonSerializationContext;)V net/minecraft/world/level/storage/loot/providers/number/BinomialDistributionGenerator$Serializer/serialize (Lcom/google/gson/JsonObject;Lnet/minecraft/world/level/storage/loot/providers/number/BinomialDistributionGenerator;Lcom/google/gson/JsonSerializationContext;)V +MD: net/minecraft/world/level/storage/loot/providers/number/BinomialDistributionGenerator$Serializer/m_7561_ (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;)Ljava/lang/Object; net/minecraft/world/level/storage/loot/providers/number/BinomialDistributionGenerator$Serializer/deserialize (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;)Ljava/lang/Object; +MD: net/minecraft/world/level/storage/loot/providers/number/BinomialDistributionGenerator$Serializer/m_7561_ (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;)Lnet/minecraft/world/level/storage/loot/providers/number/BinomialDistributionGenerator; net/minecraft/world/level/storage/loot/providers/number/BinomialDistributionGenerator$Serializer/deserialize (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;)Lnet/minecraft/world/level/storage/loot/providers/number/BinomialDistributionGenerator; +MD: net/minecraft/world/level/storage/loot/providers/number/ConstantValue/ (F)V net/minecraft/world/level/storage/loot/providers/number/ConstantValue/ (F)V +MD: net/minecraft/world/level/storage/loot/providers/number/ConstantValue/equals (Ljava/lang/Object;)Z net/minecraft/world/level/storage/loot/providers/number/ConstantValue/equals (Ljava/lang/Object;)Z +MD: net/minecraft/world/level/storage/loot/providers/number/ConstantValue/hashCode ()I net/minecraft/world/level/storage/loot/providers/number/ConstantValue/hashCode ()I +MD: net/minecraft/world/level/storage/loot/providers/number/ConstantValue/m_142587_ ()Lnet/minecraft/world/level/storage/loot/providers/number/LootNumberProviderType; net/minecraft/world/level/storage/loot/providers/number/ConstantValue/getType ()Lnet/minecraft/world/level/storage/loot/providers/number/LootNumberProviderType; +MD: net/minecraft/world/level/storage/loot/providers/number/ConstantValue/m_142688_ (Lnet/minecraft/world/level/storage/loot/LootContext;)F net/minecraft/world/level/storage/loot/providers/number/ConstantValue/getFloat (Lnet/minecraft/world/level/storage/loot/LootContext;)F +MD: net/minecraft/world/level/storage/loot/providers/number/ConstantValue/m_165692_ (F)Lnet/minecraft/world/level/storage/loot/providers/number/ConstantValue; net/minecraft/world/level/storage/loot/providers/number/ConstantValue/exactly (F)Lnet/minecraft/world/level/storage/loot/providers/number/ConstantValue; +MD: net/minecraft/world/level/storage/loot/providers/number/ConstantValue$InlineSerializer/ ()V net/minecraft/world/level/storage/loot/providers/number/ConstantValue$InlineSerializer/ ()V +MD: net/minecraft/world/level/storage/loot/providers/number/ConstantValue$InlineSerializer/m_142268_ (Lcom/google/gson/JsonElement;Lcom/google/gson/JsonDeserializationContext;)Ljava/lang/Object; net/minecraft/world/level/storage/loot/providers/number/ConstantValue$InlineSerializer/deserialize (Lcom/google/gson/JsonElement;Lcom/google/gson/JsonDeserializationContext;)Ljava/lang/Object; +MD: net/minecraft/world/level/storage/loot/providers/number/ConstantValue$InlineSerializer/m_142268_ (Lcom/google/gson/JsonElement;Lcom/google/gson/JsonDeserializationContext;)Lnet/minecraft/world/level/storage/loot/providers/number/ConstantValue; net/minecraft/world/level/storage/loot/providers/number/ConstantValue$InlineSerializer/deserialize (Lcom/google/gson/JsonElement;Lcom/google/gson/JsonDeserializationContext;)Lnet/minecraft/world/level/storage/loot/providers/number/ConstantValue; +MD: net/minecraft/world/level/storage/loot/providers/number/ConstantValue$InlineSerializer/m_142413_ (Ljava/lang/Object;Lcom/google/gson/JsonSerializationContext;)Lcom/google/gson/JsonElement; net/minecraft/world/level/storage/loot/providers/number/ConstantValue$InlineSerializer/serialize (Ljava/lang/Object;Lcom/google/gson/JsonSerializationContext;)Lcom/google/gson/JsonElement; +MD: net/minecraft/world/level/storage/loot/providers/number/ConstantValue$InlineSerializer/m_142413_ (Lnet/minecraft/world/level/storage/loot/providers/number/ConstantValue;Lcom/google/gson/JsonSerializationContext;)Lcom/google/gson/JsonElement; net/minecraft/world/level/storage/loot/providers/number/ConstantValue$InlineSerializer/serialize (Lnet/minecraft/world/level/storage/loot/providers/number/ConstantValue;Lcom/google/gson/JsonSerializationContext;)Lcom/google/gson/JsonElement; +MD: net/minecraft/world/level/storage/loot/providers/number/ConstantValue$Serializer/ ()V net/minecraft/world/level/storage/loot/providers/number/ConstantValue$Serializer/ ()V +MD: net/minecraft/world/level/storage/loot/providers/number/ConstantValue$Serializer/m_6170_ (Lcom/google/gson/JsonObject;Ljava/lang/Object;Lcom/google/gson/JsonSerializationContext;)V net/minecraft/world/level/storage/loot/providers/number/ConstantValue$Serializer/serialize (Lcom/google/gson/JsonObject;Ljava/lang/Object;Lcom/google/gson/JsonSerializationContext;)V +MD: net/minecraft/world/level/storage/loot/providers/number/ConstantValue$Serializer/m_6170_ (Lcom/google/gson/JsonObject;Lnet/minecraft/world/level/storage/loot/providers/number/ConstantValue;Lcom/google/gson/JsonSerializationContext;)V net/minecraft/world/level/storage/loot/providers/number/ConstantValue$Serializer/serialize (Lcom/google/gson/JsonObject;Lnet/minecraft/world/level/storage/loot/providers/number/ConstantValue;Lcom/google/gson/JsonSerializationContext;)V +MD: net/minecraft/world/level/storage/loot/providers/number/ConstantValue$Serializer/m_7561_ (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;)Ljava/lang/Object; net/minecraft/world/level/storage/loot/providers/number/ConstantValue$Serializer/deserialize (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;)Ljava/lang/Object; +MD: net/minecraft/world/level/storage/loot/providers/number/ConstantValue$Serializer/m_7561_ (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;)Lnet/minecraft/world/level/storage/loot/providers/number/ConstantValue; net/minecraft/world/level/storage/loot/providers/number/ConstantValue$Serializer/deserialize (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;)Lnet/minecraft/world/level/storage/loot/providers/number/ConstantValue; +MD: net/minecraft/world/level/storage/loot/providers/number/LootNumberProviderType/ (Lnet/minecraft/world/level/storage/loot/Serializer;)V net/minecraft/world/level/storage/loot/providers/number/LootNumberProviderType/ (Lnet/minecraft/world/level/storage/loot/Serializer;)V +MD: net/minecraft/world/level/storage/loot/providers/number/NumberProvider/m_142587_ ()Lnet/minecraft/world/level/storage/loot/providers/number/LootNumberProviderType; net/minecraft/world/level/storage/loot/providers/number/NumberProvider/getType ()Lnet/minecraft/world/level/storage/loot/providers/number/LootNumberProviderType; +MD: net/minecraft/world/level/storage/loot/providers/number/NumberProvider/m_142683_ (Lnet/minecraft/world/level/storage/loot/LootContext;)I net/minecraft/world/level/storage/loot/providers/number/NumberProvider/getInt (Lnet/minecraft/world/level/storage/loot/LootContext;)I +MD: net/minecraft/world/level/storage/loot/providers/number/NumberProvider/m_142688_ (Lnet/minecraft/world/level/storage/loot/LootContext;)F net/minecraft/world/level/storage/loot/providers/number/NumberProvider/getFloat (Lnet/minecraft/world/level/storage/loot/LootContext;)F +MD: net/minecraft/world/level/storage/loot/providers/number/NumberProviders/ ()V net/minecraft/world/level/storage/loot/providers/number/NumberProviders/ ()V +MD: net/minecraft/world/level/storage/loot/providers/number/NumberProviders/ ()V net/minecraft/world/level/storage/loot/providers/number/NumberProviders/ ()V +MD: net/minecraft/world/level/storage/loot/providers/number/NumberProviders/m_165737_ ()Ljava/lang/Object; net/minecraft/world/level/storage/loot/providers/number/NumberProviders/createGsonAdapter ()Ljava/lang/Object; +MD: net/minecraft/world/level/storage/loot/providers/number/NumberProviders/m_165738_ (Ljava/lang/String;Lnet/minecraft/world/level/storage/loot/Serializer;)Lnet/minecraft/world/level/storage/loot/providers/number/LootNumberProviderType; net/minecraft/world/level/storage/loot/providers/number/NumberProviders/register (Ljava/lang/String;Lnet/minecraft/world/level/storage/loot/Serializer;)Lnet/minecraft/world/level/storage/loot/providers/number/LootNumberProviderType; +MD: net/minecraft/world/level/storage/loot/providers/number/ScoreboardValue/ (Lnet/minecraft/world/level/storage/loot/providers/score/ScoreboardNameProvider;Ljava/lang/String;F)V net/minecraft/world/level/storage/loot/providers/number/ScoreboardValue/ (Lnet/minecraft/world/level/storage/loot/providers/score/ScoreboardNameProvider;Ljava/lang/String;F)V +MD: net/minecraft/world/level/storage/loot/providers/number/ScoreboardValue/m_142587_ ()Lnet/minecraft/world/level/storage/loot/providers/number/LootNumberProviderType; net/minecraft/world/level/storage/loot/providers/number/ScoreboardValue/getType ()Lnet/minecraft/world/level/storage/loot/providers/number/LootNumberProviderType; +MD: net/minecraft/world/level/storage/loot/providers/number/ScoreboardValue/m_142688_ (Lnet/minecraft/world/level/storage/loot/LootContext;)F net/minecraft/world/level/storage/loot/providers/number/ScoreboardValue/getFloat (Lnet/minecraft/world/level/storage/loot/LootContext;)F +MD: net/minecraft/world/level/storage/loot/providers/number/ScoreboardValue/m_165749_ (Lnet/minecraft/world/level/storage/loot/LootContext$EntityTarget;Ljava/lang/String;)Lnet/minecraft/world/level/storage/loot/providers/number/ScoreboardValue; net/minecraft/world/level/storage/loot/providers/number/ScoreboardValue/fromScoreboard (Lnet/minecraft/world/level/storage/loot/LootContext$EntityTarget;Ljava/lang/String;)Lnet/minecraft/world/level/storage/loot/providers/number/ScoreboardValue; +MD: net/minecraft/world/level/storage/loot/providers/number/ScoreboardValue/m_165752_ (Lnet/minecraft/world/level/storage/loot/LootContext$EntityTarget;Ljava/lang/String;F)Lnet/minecraft/world/level/storage/loot/providers/number/ScoreboardValue; net/minecraft/world/level/storage/loot/providers/number/ScoreboardValue/fromScoreboard (Lnet/minecraft/world/level/storage/loot/LootContext$EntityTarget;Ljava/lang/String;F)Lnet/minecraft/world/level/storage/loot/providers/number/ScoreboardValue; +MD: net/minecraft/world/level/storage/loot/providers/number/ScoreboardValue/m_6231_ ()Ljava/util/Set; net/minecraft/world/level/storage/loot/providers/number/ScoreboardValue/getReferencedContextParams ()Ljava/util/Set; +MD: net/minecraft/world/level/storage/loot/providers/number/ScoreboardValue$Serializer/ ()V net/minecraft/world/level/storage/loot/providers/number/ScoreboardValue$Serializer/ ()V +MD: net/minecraft/world/level/storage/loot/providers/number/ScoreboardValue$Serializer/m_6170_ (Lcom/google/gson/JsonObject;Ljava/lang/Object;Lcom/google/gson/JsonSerializationContext;)V net/minecraft/world/level/storage/loot/providers/number/ScoreboardValue$Serializer/serialize (Lcom/google/gson/JsonObject;Ljava/lang/Object;Lcom/google/gson/JsonSerializationContext;)V +MD: net/minecraft/world/level/storage/loot/providers/number/ScoreboardValue$Serializer/m_6170_ (Lcom/google/gson/JsonObject;Lnet/minecraft/world/level/storage/loot/providers/number/ScoreboardValue;Lcom/google/gson/JsonSerializationContext;)V net/minecraft/world/level/storage/loot/providers/number/ScoreboardValue$Serializer/serialize (Lcom/google/gson/JsonObject;Lnet/minecraft/world/level/storage/loot/providers/number/ScoreboardValue;Lcom/google/gson/JsonSerializationContext;)V +MD: net/minecraft/world/level/storage/loot/providers/number/ScoreboardValue$Serializer/m_7561_ (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;)Ljava/lang/Object; net/minecraft/world/level/storage/loot/providers/number/ScoreboardValue$Serializer/deserialize (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;)Ljava/lang/Object; +MD: net/minecraft/world/level/storage/loot/providers/number/ScoreboardValue$Serializer/m_7561_ (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;)Lnet/minecraft/world/level/storage/loot/providers/number/ScoreboardValue; net/minecraft/world/level/storage/loot/providers/number/ScoreboardValue$Serializer/deserialize (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;)Lnet/minecraft/world/level/storage/loot/providers/number/ScoreboardValue; +MD: net/minecraft/world/level/storage/loot/providers/number/UniformGenerator/ (Lnet/minecraft/world/level/storage/loot/providers/number/NumberProvider;Lnet/minecraft/world/level/storage/loot/providers/number/NumberProvider;)V net/minecraft/world/level/storage/loot/providers/number/UniformGenerator/ (Lnet/minecraft/world/level/storage/loot/providers/number/NumberProvider;Lnet/minecraft/world/level/storage/loot/providers/number/NumberProvider;)V +MD: net/minecraft/world/level/storage/loot/providers/number/UniformGenerator/m_142587_ ()Lnet/minecraft/world/level/storage/loot/providers/number/LootNumberProviderType; net/minecraft/world/level/storage/loot/providers/number/UniformGenerator/getType ()Lnet/minecraft/world/level/storage/loot/providers/number/LootNumberProviderType; +MD: net/minecraft/world/level/storage/loot/providers/number/UniformGenerator/m_142683_ (Lnet/minecraft/world/level/storage/loot/LootContext;)I net/minecraft/world/level/storage/loot/providers/number/UniformGenerator/getInt (Lnet/minecraft/world/level/storage/loot/LootContext;)I +MD: net/minecraft/world/level/storage/loot/providers/number/UniformGenerator/m_142688_ (Lnet/minecraft/world/level/storage/loot/LootContext;)F net/minecraft/world/level/storage/loot/providers/number/UniformGenerator/getFloat (Lnet/minecraft/world/level/storage/loot/LootContext;)F +MD: net/minecraft/world/level/storage/loot/providers/number/UniformGenerator/m_165780_ (FF)Lnet/minecraft/world/level/storage/loot/providers/number/UniformGenerator; net/minecraft/world/level/storage/loot/providers/number/UniformGenerator/between (FF)Lnet/minecraft/world/level/storage/loot/providers/number/UniformGenerator; +MD: net/minecraft/world/level/storage/loot/providers/number/UniformGenerator/m_6231_ ()Ljava/util/Set; net/minecraft/world/level/storage/loot/providers/number/UniformGenerator/getReferencedContextParams ()Ljava/util/Set; +MD: net/minecraft/world/level/storage/loot/providers/number/UniformGenerator$Serializer/ ()V net/minecraft/world/level/storage/loot/providers/number/UniformGenerator$Serializer/ ()V +MD: net/minecraft/world/level/storage/loot/providers/number/UniformGenerator$Serializer/m_6170_ (Lcom/google/gson/JsonObject;Ljava/lang/Object;Lcom/google/gson/JsonSerializationContext;)V net/minecraft/world/level/storage/loot/providers/number/UniformGenerator$Serializer/serialize (Lcom/google/gson/JsonObject;Ljava/lang/Object;Lcom/google/gson/JsonSerializationContext;)V +MD: net/minecraft/world/level/storage/loot/providers/number/UniformGenerator$Serializer/m_6170_ (Lcom/google/gson/JsonObject;Lnet/minecraft/world/level/storage/loot/providers/number/UniformGenerator;Lcom/google/gson/JsonSerializationContext;)V net/minecraft/world/level/storage/loot/providers/number/UniformGenerator$Serializer/serialize (Lcom/google/gson/JsonObject;Lnet/minecraft/world/level/storage/loot/providers/number/UniformGenerator;Lcom/google/gson/JsonSerializationContext;)V +MD: net/minecraft/world/level/storage/loot/providers/number/UniformGenerator$Serializer/m_7561_ (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;)Lnet/minecraft/world/level/storage/loot/providers/number/UniformGenerator; net/minecraft/world/level/storage/loot/providers/number/UniformGenerator$Serializer/deserialize (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;)Lnet/minecraft/world/level/storage/loot/providers/number/UniformGenerator; +MD: net/minecraft/world/level/storage/loot/providers/number/UniformGenerator$Serializer/m_7561_ (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;)Ljava/lang/Object; net/minecraft/world/level/storage/loot/providers/number/UniformGenerator$Serializer/deserialize (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;)Ljava/lang/Object; +MD: net/minecraft/world/level/storage/loot/providers/score/ContextScoreboardNameProvider/ (Lnet/minecraft/world/level/storage/loot/LootContext$EntityTarget;)V net/minecraft/world/level/storage/loot/providers/score/ContextScoreboardNameProvider/ (Lnet/minecraft/world/level/storage/loot/LootContext$EntityTarget;)V +MD: net/minecraft/world/level/storage/loot/providers/score/ContextScoreboardNameProvider/m_142600_ (Lnet/minecraft/world/level/storage/loot/LootContext;)Ljava/lang/String; net/minecraft/world/level/storage/loot/providers/score/ContextScoreboardNameProvider/getScoreboardName (Lnet/minecraft/world/level/storage/loot/LootContext;)Ljava/lang/String; +MD: net/minecraft/world/level/storage/loot/providers/score/ContextScoreboardNameProvider/m_142636_ ()Ljava/util/Set; net/minecraft/world/level/storage/loot/providers/score/ContextScoreboardNameProvider/getReferencedContextParams ()Ljava/util/Set; +MD: net/minecraft/world/level/storage/loot/providers/score/ContextScoreboardNameProvider/m_142680_ ()Lnet/minecraft/world/level/storage/loot/providers/score/LootScoreProviderType; net/minecraft/world/level/storage/loot/providers/score/ContextScoreboardNameProvider/getType ()Lnet/minecraft/world/level/storage/loot/providers/score/LootScoreProviderType; +MD: net/minecraft/world/level/storage/loot/providers/score/ContextScoreboardNameProvider/m_165807_ (Lnet/minecraft/world/level/storage/loot/LootContext$EntityTarget;)Lnet/minecraft/world/level/storage/loot/providers/score/ScoreboardNameProvider; net/minecraft/world/level/storage/loot/providers/score/ContextScoreboardNameProvider/forTarget (Lnet/minecraft/world/level/storage/loot/LootContext$EntityTarget;)Lnet/minecraft/world/level/storage/loot/providers/score/ScoreboardNameProvider; +MD: net/minecraft/world/level/storage/loot/providers/score/ContextScoreboardNameProvider$InlineSerializer/ ()V net/minecraft/world/level/storage/loot/providers/score/ContextScoreboardNameProvider$InlineSerializer/ ()V +MD: net/minecraft/world/level/storage/loot/providers/score/ContextScoreboardNameProvider$InlineSerializer/m_142268_ (Lcom/google/gson/JsonElement;Lcom/google/gson/JsonDeserializationContext;)Lnet/minecraft/world/level/storage/loot/providers/score/ContextScoreboardNameProvider; net/minecraft/world/level/storage/loot/providers/score/ContextScoreboardNameProvider$InlineSerializer/deserialize (Lcom/google/gson/JsonElement;Lcom/google/gson/JsonDeserializationContext;)Lnet/minecraft/world/level/storage/loot/providers/score/ContextScoreboardNameProvider; +MD: net/minecraft/world/level/storage/loot/providers/score/ContextScoreboardNameProvider$InlineSerializer/m_142268_ (Lcom/google/gson/JsonElement;Lcom/google/gson/JsonDeserializationContext;)Ljava/lang/Object; net/minecraft/world/level/storage/loot/providers/score/ContextScoreboardNameProvider$InlineSerializer/deserialize (Lcom/google/gson/JsonElement;Lcom/google/gson/JsonDeserializationContext;)Ljava/lang/Object; +MD: net/minecraft/world/level/storage/loot/providers/score/ContextScoreboardNameProvider$InlineSerializer/m_142413_ (Ljava/lang/Object;Lcom/google/gson/JsonSerializationContext;)Lcom/google/gson/JsonElement; net/minecraft/world/level/storage/loot/providers/score/ContextScoreboardNameProvider$InlineSerializer/serialize (Ljava/lang/Object;Lcom/google/gson/JsonSerializationContext;)Lcom/google/gson/JsonElement; +MD: net/minecraft/world/level/storage/loot/providers/score/ContextScoreboardNameProvider$InlineSerializer/m_142413_ (Lnet/minecraft/world/level/storage/loot/providers/score/ContextScoreboardNameProvider;Lcom/google/gson/JsonSerializationContext;)Lcom/google/gson/JsonElement; net/minecraft/world/level/storage/loot/providers/score/ContextScoreboardNameProvider$InlineSerializer/serialize (Lnet/minecraft/world/level/storage/loot/providers/score/ContextScoreboardNameProvider;Lcom/google/gson/JsonSerializationContext;)Lcom/google/gson/JsonElement; +MD: net/minecraft/world/level/storage/loot/providers/score/ContextScoreboardNameProvider$Serializer/ ()V net/minecraft/world/level/storage/loot/providers/score/ContextScoreboardNameProvider$Serializer/ ()V +MD: net/minecraft/world/level/storage/loot/providers/score/ContextScoreboardNameProvider$Serializer/m_6170_ (Lcom/google/gson/JsonObject;Lnet/minecraft/world/level/storage/loot/providers/score/ContextScoreboardNameProvider;Lcom/google/gson/JsonSerializationContext;)V net/minecraft/world/level/storage/loot/providers/score/ContextScoreboardNameProvider$Serializer/serialize (Lcom/google/gson/JsonObject;Lnet/minecraft/world/level/storage/loot/providers/score/ContextScoreboardNameProvider;Lcom/google/gson/JsonSerializationContext;)V +MD: net/minecraft/world/level/storage/loot/providers/score/ContextScoreboardNameProvider$Serializer/m_6170_ (Lcom/google/gson/JsonObject;Ljava/lang/Object;Lcom/google/gson/JsonSerializationContext;)V net/minecraft/world/level/storage/loot/providers/score/ContextScoreboardNameProvider$Serializer/serialize (Lcom/google/gson/JsonObject;Ljava/lang/Object;Lcom/google/gson/JsonSerializationContext;)V +MD: net/minecraft/world/level/storage/loot/providers/score/ContextScoreboardNameProvider$Serializer/m_7561_ (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;)Ljava/lang/Object; net/minecraft/world/level/storage/loot/providers/score/ContextScoreboardNameProvider$Serializer/deserialize (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;)Ljava/lang/Object; +MD: net/minecraft/world/level/storage/loot/providers/score/ContextScoreboardNameProvider$Serializer/m_7561_ (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;)Lnet/minecraft/world/level/storage/loot/providers/score/ContextScoreboardNameProvider; net/minecraft/world/level/storage/loot/providers/score/ContextScoreboardNameProvider$Serializer/deserialize (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;)Lnet/minecraft/world/level/storage/loot/providers/score/ContextScoreboardNameProvider; +MD: net/minecraft/world/level/storage/loot/providers/score/FixedScoreboardNameProvider/ (Ljava/lang/String;)V net/minecraft/world/level/storage/loot/providers/score/FixedScoreboardNameProvider/ (Ljava/lang/String;)V +MD: net/minecraft/world/level/storage/loot/providers/score/FixedScoreboardNameProvider/m_142600_ (Lnet/minecraft/world/level/storage/loot/LootContext;)Ljava/lang/String; net/minecraft/world/level/storage/loot/providers/score/FixedScoreboardNameProvider/getScoreboardName (Lnet/minecraft/world/level/storage/loot/LootContext;)Ljava/lang/String; +MD: net/minecraft/world/level/storage/loot/providers/score/FixedScoreboardNameProvider/m_142636_ ()Ljava/util/Set; net/minecraft/world/level/storage/loot/providers/score/FixedScoreboardNameProvider/getReferencedContextParams ()Ljava/util/Set; +MD: net/minecraft/world/level/storage/loot/providers/score/FixedScoreboardNameProvider/m_142680_ ()Lnet/minecraft/world/level/storage/loot/providers/score/LootScoreProviderType; net/minecraft/world/level/storage/loot/providers/score/FixedScoreboardNameProvider/getType ()Lnet/minecraft/world/level/storage/loot/providers/score/LootScoreProviderType; +MD: net/minecraft/world/level/storage/loot/providers/score/FixedScoreboardNameProvider/m_165846_ (Ljava/lang/String;)Lnet/minecraft/world/level/storage/loot/providers/score/ScoreboardNameProvider; net/minecraft/world/level/storage/loot/providers/score/FixedScoreboardNameProvider/forName (Ljava/lang/String;)Lnet/minecraft/world/level/storage/loot/providers/score/ScoreboardNameProvider; +MD: net/minecraft/world/level/storage/loot/providers/score/FixedScoreboardNameProvider/m_165849_ ()Ljava/lang/String; net/minecraft/world/level/storage/loot/providers/score/FixedScoreboardNameProvider/getName ()Ljava/lang/String; +MD: net/minecraft/world/level/storage/loot/providers/score/FixedScoreboardNameProvider$Serializer/ ()V net/minecraft/world/level/storage/loot/providers/score/FixedScoreboardNameProvider$Serializer/ ()V +MD: net/minecraft/world/level/storage/loot/providers/score/FixedScoreboardNameProvider$Serializer/m_6170_ (Lcom/google/gson/JsonObject;Ljava/lang/Object;Lcom/google/gson/JsonSerializationContext;)V net/minecraft/world/level/storage/loot/providers/score/FixedScoreboardNameProvider$Serializer/serialize (Lcom/google/gson/JsonObject;Ljava/lang/Object;Lcom/google/gson/JsonSerializationContext;)V +MD: net/minecraft/world/level/storage/loot/providers/score/FixedScoreboardNameProvider$Serializer/m_6170_ (Lcom/google/gson/JsonObject;Lnet/minecraft/world/level/storage/loot/providers/score/FixedScoreboardNameProvider;Lcom/google/gson/JsonSerializationContext;)V net/minecraft/world/level/storage/loot/providers/score/FixedScoreboardNameProvider$Serializer/serialize (Lcom/google/gson/JsonObject;Lnet/minecraft/world/level/storage/loot/providers/score/FixedScoreboardNameProvider;Lcom/google/gson/JsonSerializationContext;)V +MD: net/minecraft/world/level/storage/loot/providers/score/FixedScoreboardNameProvider$Serializer/m_7561_ (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;)Lnet/minecraft/world/level/storage/loot/providers/score/FixedScoreboardNameProvider; net/minecraft/world/level/storage/loot/providers/score/FixedScoreboardNameProvider$Serializer/deserialize (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;)Lnet/minecraft/world/level/storage/loot/providers/score/FixedScoreboardNameProvider; +MD: net/minecraft/world/level/storage/loot/providers/score/FixedScoreboardNameProvider$Serializer/m_7561_ (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;)Ljava/lang/Object; net/minecraft/world/level/storage/loot/providers/score/FixedScoreboardNameProvider$Serializer/deserialize (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;)Ljava/lang/Object; +MD: net/minecraft/world/level/storage/loot/providers/score/LootScoreProviderType/ (Lnet/minecraft/world/level/storage/loot/Serializer;)V net/minecraft/world/level/storage/loot/providers/score/LootScoreProviderType/ (Lnet/minecraft/world/level/storage/loot/Serializer;)V +MD: net/minecraft/world/level/storage/loot/providers/score/ScoreboardNameProvider/m_142600_ (Lnet/minecraft/world/level/storage/loot/LootContext;)Ljava/lang/String; net/minecraft/world/level/storage/loot/providers/score/ScoreboardNameProvider/getScoreboardName (Lnet/minecraft/world/level/storage/loot/LootContext;)Ljava/lang/String; +MD: net/minecraft/world/level/storage/loot/providers/score/ScoreboardNameProvider/m_142636_ ()Ljava/util/Set; net/minecraft/world/level/storage/loot/providers/score/ScoreboardNameProvider/getReferencedContextParams ()Ljava/util/Set; +MD: net/minecraft/world/level/storage/loot/providers/score/ScoreboardNameProvider/m_142680_ ()Lnet/minecraft/world/level/storage/loot/providers/score/LootScoreProviderType; net/minecraft/world/level/storage/loot/providers/score/ScoreboardNameProvider/getType ()Lnet/minecraft/world/level/storage/loot/providers/score/LootScoreProviderType; +MD: net/minecraft/world/level/storage/loot/providers/score/ScoreboardNameProviders/ ()V net/minecraft/world/level/storage/loot/providers/score/ScoreboardNameProviders/ ()V +MD: net/minecraft/world/level/storage/loot/providers/score/ScoreboardNameProviders/ ()V net/minecraft/world/level/storage/loot/providers/score/ScoreboardNameProviders/ ()V +MD: net/minecraft/world/level/storage/loot/providers/score/ScoreboardNameProviders/m_165872_ ()Ljava/lang/Object; net/minecraft/world/level/storage/loot/providers/score/ScoreboardNameProviders/createGsonAdapter ()Ljava/lang/Object; +MD: net/minecraft/world/level/storage/loot/providers/score/ScoreboardNameProviders/m_165873_ (Ljava/lang/String;Lnet/minecraft/world/level/storage/loot/Serializer;)Lnet/minecraft/world/level/storage/loot/providers/score/LootScoreProviderType; net/minecraft/world/level/storage/loot/providers/score/ScoreboardNameProviders/register (Ljava/lang/String;Lnet/minecraft/world/level/storage/loot/Serializer;)Lnet/minecraft/world/level/storage/loot/providers/score/LootScoreProviderType; +MD: net/minecraft/world/level/timers/FunctionCallback/ (Lnet/minecraft/resources/ResourceLocation;)V net/minecraft/world/level/timers/FunctionCallback/ (Lnet/minecraft/resources/ResourceLocation;)V +MD: net/minecraft/world/level/timers/FunctionCallback/m_5821_ (Lnet/minecraft/server/MinecraftServer;Lnet/minecraft/world/level/timers/TimerQueue;J)V net/minecraft/world/level/timers/FunctionCallback/handle (Lnet/minecraft/server/MinecraftServer;Lnet/minecraft/world/level/timers/TimerQueue;J)V +MD: net/minecraft/world/level/timers/FunctionCallback/m_5821_ (Ljava/lang/Object;Lnet/minecraft/world/level/timers/TimerQueue;J)V net/minecraft/world/level/timers/FunctionCallback/handle (Ljava/lang/Object;Lnet/minecraft/world/level/timers/TimerQueue;J)V +MD: net/minecraft/world/level/timers/FunctionCallback/m_82175_ (Lnet/minecraft/server/ServerFunctionManager;Lnet/minecraft/commands/CommandFunction;)V net/minecraft/world/level/timers/FunctionCallback/lambda$handle$0 (Lnet/minecraft/server/ServerFunctionManager;Lnet/minecraft/commands/CommandFunction;)V +MD: net/minecraft/world/level/timers/FunctionCallback$Serializer/ ()V net/minecraft/world/level/timers/FunctionCallback$Serializer/ ()V +MD: net/minecraft/world/level/timers/FunctionCallback$Serializer/m_6006_ (Lnet/minecraft/nbt/CompoundTag;)Lnet/minecraft/world/level/timers/FunctionCallback; net/minecraft/world/level/timers/FunctionCallback$Serializer/deserialize (Lnet/minecraft/nbt/CompoundTag;)Lnet/minecraft/world/level/timers/FunctionCallback; +MD: net/minecraft/world/level/timers/FunctionCallback$Serializer/m_6006_ (Lnet/minecraft/nbt/CompoundTag;)Lnet/minecraft/world/level/timers/TimerCallback; net/minecraft/world/level/timers/FunctionCallback$Serializer/deserialize (Lnet/minecraft/nbt/CompoundTag;)Lnet/minecraft/world/level/timers/TimerCallback; +MD: net/minecraft/world/level/timers/FunctionCallback$Serializer/m_6585_ (Lnet/minecraft/nbt/CompoundTag;Lnet/minecraft/world/level/timers/TimerCallback;)V net/minecraft/world/level/timers/FunctionCallback$Serializer/serialize (Lnet/minecraft/nbt/CompoundTag;Lnet/minecraft/world/level/timers/TimerCallback;)V +MD: net/minecraft/world/level/timers/FunctionCallback$Serializer/m_6585_ (Lnet/minecraft/nbt/CompoundTag;Lnet/minecraft/world/level/timers/FunctionCallback;)V net/minecraft/world/level/timers/FunctionCallback$Serializer/serialize (Lnet/minecraft/nbt/CompoundTag;Lnet/minecraft/world/level/timers/FunctionCallback;)V +MD: net/minecraft/world/level/timers/FunctionTagCallback/ (Lnet/minecraft/resources/ResourceLocation;)V net/minecraft/world/level/timers/FunctionTagCallback/ (Lnet/minecraft/resources/ResourceLocation;)V +MD: net/minecraft/world/level/timers/FunctionTagCallback/m_5821_ (Lnet/minecraft/server/MinecraftServer;Lnet/minecraft/world/level/timers/TimerQueue;J)V net/minecraft/world/level/timers/FunctionTagCallback/handle (Lnet/minecraft/server/MinecraftServer;Lnet/minecraft/world/level/timers/TimerQueue;J)V +MD: net/minecraft/world/level/timers/FunctionTagCallback/m_5821_ (Ljava/lang/Object;Lnet/minecraft/world/level/timers/TimerQueue;J)V net/minecraft/world/level/timers/FunctionTagCallback/handle (Ljava/lang/Object;Lnet/minecraft/world/level/timers/TimerQueue;J)V +MD: net/minecraft/world/level/timers/FunctionTagCallback$Serializer/ ()V net/minecraft/world/level/timers/FunctionTagCallback$Serializer/ ()V +MD: net/minecraft/world/level/timers/FunctionTagCallback$Serializer/m_6006_ (Lnet/minecraft/nbt/CompoundTag;)Lnet/minecraft/world/level/timers/TimerCallback; net/minecraft/world/level/timers/FunctionTagCallback$Serializer/deserialize (Lnet/minecraft/nbt/CompoundTag;)Lnet/minecraft/world/level/timers/TimerCallback; +MD: net/minecraft/world/level/timers/FunctionTagCallback$Serializer/m_6006_ (Lnet/minecraft/nbt/CompoundTag;)Lnet/minecraft/world/level/timers/FunctionTagCallback; net/minecraft/world/level/timers/FunctionTagCallback$Serializer/deserialize (Lnet/minecraft/nbt/CompoundTag;)Lnet/minecraft/world/level/timers/FunctionTagCallback; +MD: net/minecraft/world/level/timers/FunctionTagCallback$Serializer/m_6585_ (Lnet/minecraft/nbt/CompoundTag;Lnet/minecraft/world/level/timers/FunctionTagCallback;)V net/minecraft/world/level/timers/FunctionTagCallback$Serializer/serialize (Lnet/minecraft/nbt/CompoundTag;Lnet/minecraft/world/level/timers/FunctionTagCallback;)V +MD: net/minecraft/world/level/timers/FunctionTagCallback$Serializer/m_6585_ (Lnet/minecraft/nbt/CompoundTag;Lnet/minecraft/world/level/timers/TimerCallback;)V net/minecraft/world/level/timers/FunctionTagCallback$Serializer/serialize (Lnet/minecraft/nbt/CompoundTag;Lnet/minecraft/world/level/timers/TimerCallback;)V +MD: net/minecraft/world/level/timers/TimerCallback/m_5821_ (Ljava/lang/Object;Lnet/minecraft/world/level/timers/TimerQueue;J)V net/minecraft/world/level/timers/TimerCallback/handle (Ljava/lang/Object;Lnet/minecraft/world/level/timers/TimerQueue;J)V +MD: net/minecraft/world/level/timers/TimerCallback$Serializer/ (Lnet/minecraft/resources/ResourceLocation;Ljava/lang/Class;)V net/minecraft/world/level/timers/TimerCallback$Serializer/ (Lnet/minecraft/resources/ResourceLocation;Ljava/lang/Class;)V +MD: net/minecraft/world/level/timers/TimerCallback$Serializer/m_6006_ (Lnet/minecraft/nbt/CompoundTag;)Lnet/minecraft/world/level/timers/TimerCallback; net/minecraft/world/level/timers/TimerCallback$Serializer/deserialize (Lnet/minecraft/nbt/CompoundTag;)Lnet/minecraft/world/level/timers/TimerCallback; +MD: net/minecraft/world/level/timers/TimerCallback$Serializer/m_6585_ (Lnet/minecraft/nbt/CompoundTag;Lnet/minecraft/world/level/timers/TimerCallback;)V net/minecraft/world/level/timers/TimerCallback$Serializer/serialize (Lnet/minecraft/nbt/CompoundTag;Lnet/minecraft/world/level/timers/TimerCallback;)V +MD: net/minecraft/world/level/timers/TimerCallback$Serializer/m_82221_ ()Lnet/minecraft/resources/ResourceLocation; net/minecraft/world/level/timers/TimerCallback$Serializer/getId ()Lnet/minecraft/resources/ResourceLocation; +MD: net/minecraft/world/level/timers/TimerCallback$Serializer/m_82224_ ()Ljava/lang/Class; net/minecraft/world/level/timers/TimerCallback$Serializer/getCls ()Ljava/lang/Class; +MD: net/minecraft/world/level/timers/TimerCallbacks/ ()V net/minecraft/world/level/timers/TimerCallbacks/ ()V +MD: net/minecraft/world/level/timers/TimerCallbacks/ ()V net/minecraft/world/level/timers/TimerCallbacks/ ()V +MD: net/minecraft/world/level/timers/TimerCallbacks/m_82232_ (Lnet/minecraft/world/level/timers/TimerCallback$Serializer;)Lnet/minecraft/world/level/timers/TimerCallbacks; net/minecraft/world/level/timers/TimerCallbacks/register (Lnet/minecraft/world/level/timers/TimerCallback$Serializer;)Lnet/minecraft/world/level/timers/TimerCallbacks; +MD: net/minecraft/world/level/timers/TimerCallbacks/m_82234_ (Lnet/minecraft/world/level/timers/TimerCallback;)Lnet/minecraft/nbt/CompoundTag; net/minecraft/world/level/timers/TimerCallbacks/serialize (Lnet/minecraft/world/level/timers/TimerCallback;)Lnet/minecraft/nbt/CompoundTag; +MD: net/minecraft/world/level/timers/TimerCallbacks/m_82236_ (Ljava/lang/Class;)Lnet/minecraft/world/level/timers/TimerCallback$Serializer; net/minecraft/world/level/timers/TimerCallbacks/getSerializer (Ljava/lang/Class;)Lnet/minecraft/world/level/timers/TimerCallback$Serializer; +MD: net/minecraft/world/level/timers/TimerCallbacks/m_82238_ (Lnet/minecraft/nbt/CompoundTag;)Lnet/minecraft/world/level/timers/TimerCallback; net/minecraft/world/level/timers/TimerCallbacks/deserialize (Lnet/minecraft/nbt/CompoundTag;)Lnet/minecraft/world/level/timers/TimerCallback; +MD: net/minecraft/world/level/timers/TimerQueue/ ()V net/minecraft/world/level/timers/TimerQueue/ ()V +MD: net/minecraft/world/level/timers/TimerQueue/ (Lnet/minecraft/world/level/timers/TimerCallbacks;)V net/minecraft/world/level/timers/TimerQueue/ (Lnet/minecraft/world/level/timers/TimerCallbacks;)V +MD: net/minecraft/world/level/timers/TimerQueue/ (Lnet/minecraft/world/level/timers/TimerCallbacks;Ljava/util/stream/Stream;)V net/minecraft/world/level/timers/TimerQueue/ (Lnet/minecraft/world/level/timers/TimerCallbacks;Ljava/util/stream/Stream;)V +MD: net/minecraft/world/level/timers/TimerQueue/m_264030_ (Lcom/mojang/serialization/Dynamic;)V net/minecraft/world/level/timers/TimerQueue/lambda$new$2 (Lcom/mojang/serialization/Dynamic;)V +MD: net/minecraft/world/level/timers/TimerQueue/m_82251_ ()Ljava/util/Set; net/minecraft/world/level/timers/TimerQueue/getEventsIds ()Ljava/util/Set; +MD: net/minecraft/world/level/timers/TimerQueue/m_82254_ (Lnet/minecraft/world/level/timers/TimerQueue$Event;)Lnet/minecraft/nbt/CompoundTag; net/minecraft/world/level/timers/TimerQueue/storeEvent (Lnet/minecraft/world/level/timers/TimerQueue$Event;)Lnet/minecraft/nbt/CompoundTag; +MD: net/minecraft/world/level/timers/TimerQueue/m_82256_ (Ljava/lang/Object;J)V net/minecraft/world/level/timers/TimerQueue/tick (Ljava/lang/Object;J)V +MD: net/minecraft/world/level/timers/TimerQueue/m_82259_ (Ljava/lang/String;)I net/minecraft/world/level/timers/TimerQueue/remove (Ljava/lang/String;)I +MD: net/minecraft/world/level/timers/TimerQueue/m_82261_ (Ljava/lang/String;JLnet/minecraft/world/level/timers/TimerCallback;)V net/minecraft/world/level/timers/TimerQueue/schedule (Ljava/lang/String;JLnet/minecraft/world/level/timers/TimerCallback;)V +MD: net/minecraft/world/level/timers/TimerQueue/m_82265_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/level/timers/TimerQueue/loadEvent (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/level/timers/TimerQueue/m_82267_ ()Lnet/minecraft/nbt/ListTag; net/minecraft/world/level/timers/TimerQueue/store ()Lnet/minecraft/nbt/ListTag; +MD: net/minecraft/world/level/timers/TimerQueue/m_82268_ (Lnet/minecraft/world/level/timers/TimerQueue$Event;)Lcom/google/common/primitives/UnsignedLong; net/minecraft/world/level/timers/TimerQueue/lambda$createComparator$1 (Lnet/minecraft/world/level/timers/TimerQueue$Event;)Lcom/google/common/primitives/UnsignedLong; +MD: net/minecraft/world/level/timers/TimerQueue/m_82270_ ()Ljava/util/Comparator; net/minecraft/world/level/timers/TimerQueue/createComparator ()Ljava/util/Comparator; +MD: net/minecraft/world/level/timers/TimerQueue/m_82271_ (Lnet/minecraft/world/level/timers/TimerQueue$Event;)J net/minecraft/world/level/timers/TimerQueue/lambda$createComparator$0 (Lnet/minecraft/world/level/timers/TimerQueue$Event;)J +MD: net/minecraft/world/level/timers/TimerQueue$Event/ (JLcom/google/common/primitives/UnsignedLong;Ljava/lang/String;Lnet/minecraft/world/level/timers/TimerCallback;)V net/minecraft/world/level/timers/TimerQueue$Event/ (JLcom/google/common/primitives/UnsignedLong;Ljava/lang/String;Lnet/minecraft/world/level/timers/TimerCallback;)V +MD: net/minecraft/world/level/validation/ContentValidationException/ (Ljava/nio/file/Path;Ljava/util/List;)V net/minecraft/world/level/validation/ContentValidationException/ (Ljava/nio/file/Path;Ljava/util/List;)V +MD: net/minecraft/world/level/validation/ContentValidationException/getMessage ()Ljava/lang/String; net/minecraft/world/level/validation/ContentValidationException/getMessage ()Ljava/lang/String; +MD: net/minecraft/world/level/validation/ContentValidationException/m_289904_ (Lnet/minecraft/world/level/validation/ForbiddenSymlinkInfo;)Ljava/lang/String; net/minecraft/world/level/validation/ContentValidationException/lambda$getMessage$0 (Lnet/minecraft/world/level/validation/ForbiddenSymlinkInfo;)Ljava/lang/String; +MD: net/minecraft/world/level/validation/ContentValidationException/m_289907_ (Ljava/nio/file/Path;Ljava/util/List;)Ljava/lang/String; net/minecraft/world/level/validation/ContentValidationException/getMessage (Ljava/nio/file/Path;Ljava/util/List;)Ljava/lang/String; +MD: net/minecraft/world/level/validation/DirectoryValidator/ (Lnet/minecraft/world/level/validation/PathAllowList;)V net/minecraft/world/level/validation/DirectoryValidator/ (Lnet/minecraft/world/level/validation/PathAllowList;)V +MD: net/minecraft/world/level/validation/DirectoryValidator/m_289885_ (Ljava/nio/file/Path;Z)Ljava/util/List; net/minecraft/world/level/validation/DirectoryValidator/validateSave (Ljava/nio/file/Path;Z)Ljava/util/List; +MD: net/minecraft/world/level/validation/DirectoryValidator/m_289900_ (Ljava/nio/file/Path;Ljava/util/List;)V net/minecraft/world/level/validation/DirectoryValidator/validateSymlink (Ljava/nio/file/Path;Ljava/util/List;)V +MD: net/minecraft/world/level/validation/DirectoryValidator$1/ (Lnet/minecraft/world/level/validation/DirectoryValidator;Ljava/util/List;)V net/minecraft/world/level/validation/DirectoryValidator$1/ (Lnet/minecraft/world/level/validation/DirectoryValidator;Ljava/util/List;)V +MD: net/minecraft/world/level/validation/DirectoryValidator$1/m_289903_ (Ljava/nio/file/Path;Ljava/nio/file/attribute/BasicFileAttributes;)V net/minecraft/world/level/validation/DirectoryValidator$1/validateSymlink (Ljava/nio/file/Path;Ljava/nio/file/attribute/BasicFileAttributes;)V +MD: net/minecraft/world/level/validation/DirectoryValidator$1/preVisitDirectory (Ljava/lang/Object;Ljava/nio/file/attribute/BasicFileAttributes;)Ljava/nio/file/FileVisitResult; net/minecraft/world/level/validation/DirectoryValidator$1/preVisitDirectory (Ljava/lang/Object;Ljava/nio/file/attribute/BasicFileAttributes;)Ljava/nio/file/FileVisitResult; +MD: net/minecraft/world/level/validation/DirectoryValidator$1/preVisitDirectory (Ljava/nio/file/Path;Ljava/nio/file/attribute/BasicFileAttributes;)Ljava/nio/file/FileVisitResult; net/minecraft/world/level/validation/DirectoryValidator$1/preVisitDirectory (Ljava/nio/file/Path;Ljava/nio/file/attribute/BasicFileAttributes;)Ljava/nio/file/FileVisitResult; +MD: net/minecraft/world/level/validation/DirectoryValidator$1/visitFile (Ljava/nio/file/Path;Ljava/nio/file/attribute/BasicFileAttributes;)Ljava/nio/file/FileVisitResult; net/minecraft/world/level/validation/DirectoryValidator$1/visitFile (Ljava/nio/file/Path;Ljava/nio/file/attribute/BasicFileAttributes;)Ljava/nio/file/FileVisitResult; +MD: net/minecraft/world/level/validation/DirectoryValidator$1/visitFile (Ljava/lang/Object;Ljava/nio/file/attribute/BasicFileAttributes;)Ljava/nio/file/FileVisitResult; net/minecraft/world/level/validation/DirectoryValidator$1/visitFile (Ljava/lang/Object;Ljava/nio/file/attribute/BasicFileAttributes;)Ljava/nio/file/FileVisitResult; +MD: net/minecraft/world/level/validation/ForbiddenSymlinkInfo/ (Ljava/nio/file/Path;Ljava/nio/file/Path;)V net/minecraft/world/level/validation/ForbiddenSymlinkInfo/ (Ljava/nio/file/Path;Ljava/nio/file/Path;)V +MD: net/minecraft/world/level/validation/ForbiddenSymlinkInfo/equals (Ljava/lang/Object;)Z net/minecraft/world/level/validation/ForbiddenSymlinkInfo/equals (Ljava/lang/Object;)Z +MD: net/minecraft/world/level/validation/ForbiddenSymlinkInfo/f_289826_ ()Ljava/nio/file/Path; net/minecraft/world/level/validation/ForbiddenSymlinkInfo/link ()Ljava/nio/file/Path; +MD: net/minecraft/world/level/validation/ForbiddenSymlinkInfo/f_289840_ ()Ljava/nio/file/Path; net/minecraft/world/level/validation/ForbiddenSymlinkInfo/target ()Ljava/nio/file/Path; +MD: net/minecraft/world/level/validation/ForbiddenSymlinkInfo/hashCode ()I net/minecraft/world/level/validation/ForbiddenSymlinkInfo/hashCode ()I +MD: net/minecraft/world/level/validation/ForbiddenSymlinkInfo/toString ()Ljava/lang/String; net/minecraft/world/level/validation/ForbiddenSymlinkInfo/toString ()Ljava/lang/String; +MD: net/minecraft/world/level/validation/PathAllowList/ ()V net/minecraft/world/level/validation/PathAllowList/ ()V +MD: net/minecraft/world/level/validation/PathAllowList/ (Ljava/util/List;)V net/minecraft/world/level/validation/PathAllowList/ (Ljava/util/List;)V +MD: net/minecraft/world/level/validation/PathAllowList/m_289846_ (Ljava/lang/String;)Ljava/util/stream/Stream; net/minecraft/world/level/validation/PathAllowList/lambda$readPlain$5 (Ljava/lang/String;)Ljava/util/stream/Stream; +MD: net/minecraft/world/level/validation/PathAllowList/m_289847_ (Ljava/nio/file/FileSystem;Lnet/minecraft/world/level/validation/PathAllowList$ConfigEntry;)Ljava/nio/file/PathMatcher; net/minecraft/world/level/validation/PathAllowList/lambda$getForFileSystem$0 (Ljava/nio/file/FileSystem;Lnet/minecraft/world/level/validation/PathAllowList$ConfigEntry;)Ljava/nio/file/PathMatcher; +MD: net/minecraft/world/level/validation/PathAllowList/m_289852_ (Ljava/nio/file/FileSystem;)Ljava/nio/file/PathMatcher; net/minecraft/world/level/validation/PathAllowList/getForFileSystem (Ljava/nio/file/FileSystem;)Ljava/nio/file/PathMatcher; +MD: net/minecraft/world/level/validation/PathAllowList/m_289878_ (Ljava/nio/file/Path;)Z net/minecraft/world/level/validation/PathAllowList/lambda$getForFileSystem$1 (Ljava/nio/file/Path;)Z +MD: net/minecraft/world/level/validation/PathAllowList/m_289888_ (Ljava/io/BufferedReader;)Lnet/minecraft/world/level/validation/PathAllowList; net/minecraft/world/level/validation/PathAllowList/readPlain (Ljava/io/BufferedReader;)Lnet/minecraft/world/level/validation/PathAllowList; +MD: net/minecraft/world/level/validation/PathAllowList/m_289896_ (Ljava/nio/file/FileSystem;Ljava/lang/String;)Ljava/nio/file/PathMatcher; net/minecraft/world/level/validation/PathAllowList/lambda$getForFileSystem$4 (Ljava/nio/file/FileSystem;Ljava/lang/String;)Ljava/nio/file/PathMatcher; +MD: net/minecraft/world/level/validation/PathAllowList/m_289899_ (Ljava/util/List;Ljava/nio/file/Path;)Z net/minecraft/world/level/validation/PathAllowList/lambda$getForFileSystem$3 (Ljava/util/List;Ljava/nio/file/Path;)Z +MD: net/minecraft/world/level/validation/PathAllowList/m_289909_ (Ljava/nio/file/Path;)Z net/minecraft/world/level/validation/PathAllowList/lambda$getForFileSystem$2 (Ljava/nio/file/Path;)Z +MD: net/minecraft/world/level/validation/PathAllowList/matches (Ljava/nio/file/Path;)Z net/minecraft/world/level/validation/PathAllowList/matches (Ljava/nio/file/Path;)Z +MD: net/minecraft/world/level/validation/PathAllowList$ConfigEntry/ (Lnet/minecraft/world/level/validation/PathAllowList$EntryType;Ljava/lang/String;)V net/minecraft/world/level/validation/PathAllowList$ConfigEntry/ (Lnet/minecraft/world/level/validation/PathAllowList$EntryType;Ljava/lang/String;)V +MD: net/minecraft/world/level/validation/PathAllowList$ConfigEntry/equals (Ljava/lang/Object;)Z net/minecraft/world/level/validation/PathAllowList$ConfigEntry/equals (Ljava/lang/Object;)Z +MD: net/minecraft/world/level/validation/PathAllowList$ConfigEntry/f_289830_ ()Lnet/minecraft/world/level/validation/PathAllowList$EntryType; net/minecraft/world/level/validation/PathAllowList$ConfigEntry/type ()Lnet/minecraft/world/level/validation/PathAllowList$EntryType; +MD: net/minecraft/world/level/validation/PathAllowList$ConfigEntry/f_289839_ ()Ljava/lang/String; net/minecraft/world/level/validation/PathAllowList$ConfigEntry/pattern ()Ljava/lang/String; +MD: net/minecraft/world/level/validation/PathAllowList$ConfigEntry/hashCode ()I net/minecraft/world/level/validation/PathAllowList$ConfigEntry/hashCode ()I +MD: net/minecraft/world/level/validation/PathAllowList$ConfigEntry/m_289843_ (Ljava/lang/String;)Lnet/minecraft/world/level/validation/PathAllowList$ConfigEntry; net/minecraft/world/level/validation/PathAllowList$ConfigEntry/glob (Ljava/lang/String;)Lnet/minecraft/world/level/validation/PathAllowList$ConfigEntry; +MD: net/minecraft/world/level/validation/PathAllowList$ConfigEntry/m_289845_ (Ljava/lang/String;)Lnet/minecraft/world/level/validation/PathAllowList$ConfigEntry; net/minecraft/world/level/validation/PathAllowList$ConfigEntry/prefix (Ljava/lang/String;)Lnet/minecraft/world/level/validation/PathAllowList$ConfigEntry; +MD: net/minecraft/world/level/validation/PathAllowList$ConfigEntry/m_289870_ (Ljava/lang/String;)Ljava/util/Optional; net/minecraft/world/level/validation/PathAllowList$ConfigEntry/parse (Ljava/lang/String;)Ljava/util/Optional; +MD: net/minecraft/world/level/validation/PathAllowList$ConfigEntry/m_289886_ (Ljava/lang/String;)Lnet/minecraft/world/level/validation/PathAllowList$ConfigEntry; net/minecraft/world/level/validation/PathAllowList$ConfigEntry/regex (Ljava/lang/String;)Lnet/minecraft/world/level/validation/PathAllowList$ConfigEntry; +MD: net/minecraft/world/level/validation/PathAllowList$ConfigEntry/m_289895_ (Ljava/nio/file/FileSystem;)Ljava/nio/file/PathMatcher; net/minecraft/world/level/validation/PathAllowList$ConfigEntry/compile (Ljava/nio/file/FileSystem;)Ljava/nio/file/PathMatcher; +MD: net/minecraft/world/level/validation/PathAllowList$ConfigEntry/toString ()Ljava/lang/String; net/minecraft/world/level/validation/PathAllowList$ConfigEntry/toString ()Ljava/lang/String; +MD: net/minecraft/world/level/validation/PathAllowList$EntryType/ ()V net/minecraft/world/level/validation/PathAllowList$EntryType/ ()V +MD: net/minecraft/world/level/validation/PathAllowList$EntryType/m_289851_ (Ljava/nio/file/FileSystem;Ljava/lang/String;)Ljava/nio/file/PathMatcher; net/minecraft/world/level/validation/PathAllowList$EntryType/lambda$static$1 (Ljava/nio/file/FileSystem;Ljava/lang/String;)Ljava/nio/file/PathMatcher; +MD: net/minecraft/world/level/validation/PathAllowList$EntryType/m_289860_ (Ljava/lang/String;Ljava/nio/file/Path;)Z net/minecraft/world/level/validation/PathAllowList$EntryType/lambda$static$0 (Ljava/lang/String;Ljava/nio/file/Path;)Z +MD: net/minecraft/world/level/validation/PathAllowList$EntryType/m_289905_ (Ljava/nio/file/FileSystem;Ljava/lang/String;)Ljava/nio/file/PathMatcher; net/minecraft/world/level/validation/PathAllowList$EntryType/compile (Ljava/nio/file/FileSystem;Ljava/lang/String;)Ljava/nio/file/PathMatcher; +MD: net/minecraft/world/phys/AABB/ (DDDDDD)V net/minecraft/world/phys/AABB/ (DDDDDD)V +MD: net/minecraft/world/phys/AABB/ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;)V net/minecraft/world/phys/AABB/ (Lnet/minecraft/core/BlockPos;Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/world/phys/AABB/ (Lnet/minecraft/core/BlockPos;)V net/minecraft/world/phys/AABB/ (Lnet/minecraft/core/BlockPos;)V +MD: net/minecraft/world/phys/AABB/ (Lnet/minecraft/world/phys/Vec3;Lnet/minecraft/world/phys/Vec3;)V net/minecraft/world/phys/AABB/ (Lnet/minecraft/world/phys/Vec3;Lnet/minecraft/world/phys/Vec3;)V +MD: net/minecraft/world/phys/AABB/equals (Ljava/lang/Object;)Z net/minecraft/world/phys/AABB/equals (Ljava/lang/Object;)Z +MD: net/minecraft/world/phys/AABB/hashCode ()I net/minecraft/world/phys/AABB/hashCode ()I +MD: net/minecraft/world/phys/AABB/m_165880_ (D)Lnet/minecraft/world/phys/AABB; net/minecraft/world/phys/AABB/setMinX (D)Lnet/minecraft/world/phys/AABB; +MD: net/minecraft/world/phys/AABB/m_165882_ (Lnet/minecraft/world/phys/Vec3;DDD)Lnet/minecraft/world/phys/AABB; net/minecraft/world/phys/AABB/ofSize (Lnet/minecraft/world/phys/Vec3;DDD)Lnet/minecraft/world/phys/AABB; +MD: net/minecraft/world/phys/AABB/m_165887_ (D)Lnet/minecraft/world/phys/AABB; net/minecraft/world/phys/AABB/setMinY (D)Lnet/minecraft/world/phys/AABB; +MD: net/minecraft/world/phys/AABB/m_165889_ (D)Lnet/minecraft/world/phys/AABB; net/minecraft/world/phys/AABB/setMinZ (D)Lnet/minecraft/world/phys/AABB; +MD: net/minecraft/world/phys/AABB/m_165891_ (D)Lnet/minecraft/world/phys/AABB; net/minecraft/world/phys/AABB/setMaxX (D)Lnet/minecraft/world/phys/AABB; +MD: net/minecraft/world/phys/AABB/m_165893_ (D)Lnet/minecraft/world/phys/AABB; net/minecraft/world/phys/AABB/setMaxY (D)Lnet/minecraft/world/phys/AABB; +MD: net/minecraft/world/phys/AABB/m_165895_ (D)Lnet/minecraft/world/phys/AABB; net/minecraft/world/phys/AABB/setMaxZ (D)Lnet/minecraft/world/phys/AABB; +MD: net/minecraft/world/phys/AABB/m_165897_ (DDD)Lnet/minecraft/world/phys/AABB; net/minecraft/world/phys/AABB/deflate (DDD)Lnet/minecraft/world/phys/AABB; +MD: net/minecraft/world/phys/AABB/m_272282_ (Lnet/minecraft/world/phys/Vec3;)D net/minecraft/world/phys/AABB/distanceToSqr (Lnet/minecraft/world/phys/Vec3;)D +MD: net/minecraft/world/phys/AABB/m_82309_ ()D net/minecraft/world/phys/AABB/getSize ()D +MD: net/minecraft/world/phys/AABB/m_82310_ (DDD)Lnet/minecraft/world/phys/AABB; net/minecraft/world/phys/AABB/contract (DDD)Lnet/minecraft/world/phys/AABB; +MD: net/minecraft/world/phys/AABB/m_82314_ (DDDDDD)Z net/minecraft/world/phys/AABB/intersects (DDDDDD)Z +MD: net/minecraft/world/phys/AABB/m_82321_ (Lnet/minecraft/world/level/levelgen/structure/BoundingBox;)Lnet/minecraft/world/phys/AABB; net/minecraft/world/phys/AABB/of (Lnet/minecraft/world/level/levelgen/structure/BoundingBox;)Lnet/minecraft/world/phys/AABB; +MD: net/minecraft/world/phys/AABB/m_82323_ (Lnet/minecraft/world/phys/AABB;)Lnet/minecraft/world/phys/AABB; net/minecraft/world/phys/AABB/intersect (Lnet/minecraft/world/phys/AABB;)Lnet/minecraft/world/phys/AABB; +MD: net/minecraft/world/phys/AABB/m_82325_ (Lnet/minecraft/world/phys/AABB;Lnet/minecraft/world/phys/Vec3;[DLnet/minecraft/core/Direction;DDD)Lnet/minecraft/core/Direction; net/minecraft/world/phys/AABB/getDirection (Lnet/minecraft/world/phys/AABB;Lnet/minecraft/world/phys/Vec3;[DLnet/minecraft/core/Direction;DDD)Lnet/minecraft/core/Direction; +MD: net/minecraft/world/phys/AABB/m_82333_ (Lnet/minecraft/world/phys/Vec3;)Lnet/minecraft/world/phys/AABB; net/minecraft/world/phys/AABB/unitCubeFromLowerCorner (Lnet/minecraft/world/phys/Vec3;)Lnet/minecraft/world/phys/AABB; +MD: net/minecraft/world/phys/AABB/m_82335_ (Lnet/minecraft/world/phys/Vec3;Lnet/minecraft/world/phys/Vec3;)Z net/minecraft/world/phys/AABB/intersects (Lnet/minecraft/world/phys/Vec3;Lnet/minecraft/world/phys/Vec3;)Z +MD: net/minecraft/world/phys/AABB/m_82338_ (Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/phys/AABB; net/minecraft/world/phys/AABB/move (Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/phys/AABB; +MD: net/minecraft/world/phys/AABB/m_82340_ (Lnet/minecraft/core/Direction$Axis;)D net/minecraft/world/phys/AABB/min (Lnet/minecraft/core/Direction$Axis;)D +MD: net/minecraft/world/phys/AABB/m_82342_ (Ljava/lang/Iterable;Lnet/minecraft/world/phys/Vec3;Lnet/minecraft/world/phys/Vec3;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/phys/BlockHitResult; net/minecraft/world/phys/AABB/clip (Ljava/lang/Iterable;Lnet/minecraft/world/phys/Vec3;Lnet/minecraft/world/phys/Vec3;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/phys/BlockHitResult; +MD: net/minecraft/world/phys/AABB/m_82347_ ([DLnet/minecraft/core/Direction;DDDDDDDDLnet/minecraft/core/Direction;DDD)Lnet/minecraft/core/Direction; net/minecraft/world/phys/AABB/clipPoint ([DLnet/minecraft/core/Direction;DDDDDDDDLnet/minecraft/core/Direction;DDD)Lnet/minecraft/core/Direction; +MD: net/minecraft/world/phys/AABB/m_82362_ ()D net/minecraft/world/phys/AABB/getXsize ()D +MD: net/minecraft/world/phys/AABB/m_82363_ (DDD)Lnet/minecraft/world/phys/AABB; net/minecraft/world/phys/AABB/expandTowards (DDD)Lnet/minecraft/world/phys/AABB; +MD: net/minecraft/world/phys/AABB/m_82367_ (Lnet/minecraft/world/phys/AABB;)Lnet/minecraft/world/phys/AABB; net/minecraft/world/phys/AABB/minmax (Lnet/minecraft/world/phys/AABB;)Lnet/minecraft/world/phys/AABB; +MD: net/minecraft/world/phys/AABB/m_82369_ (Lnet/minecraft/world/phys/Vec3;)Lnet/minecraft/world/phys/AABB; net/minecraft/world/phys/AABB/expandTowards (Lnet/minecraft/world/phys/Vec3;)Lnet/minecraft/world/phys/AABB; +MD: net/minecraft/world/phys/AABB/m_82371_ (Lnet/minecraft/world/phys/Vec3;Lnet/minecraft/world/phys/Vec3;)Ljava/util/Optional; net/minecraft/world/phys/AABB/clip (Lnet/minecraft/world/phys/Vec3;Lnet/minecraft/world/phys/Vec3;)Ljava/util/Optional; +MD: net/minecraft/world/phys/AABB/m_82374_ (Lnet/minecraft/core/Direction$Axis;)D net/minecraft/world/phys/AABB/max (Lnet/minecraft/core/Direction$Axis;)D +MD: net/minecraft/world/phys/AABB/m_82376_ ()D net/minecraft/world/phys/AABB/getYsize ()D +MD: net/minecraft/world/phys/AABB/m_82377_ (DDD)Lnet/minecraft/world/phys/AABB; net/minecraft/world/phys/AABB/inflate (DDD)Lnet/minecraft/world/phys/AABB; +MD: net/minecraft/world/phys/AABB/m_82381_ (Lnet/minecraft/world/phys/AABB;)Z net/minecraft/world/phys/AABB/intersects (Lnet/minecraft/world/phys/AABB;)Z +MD: net/minecraft/world/phys/AABB/m_82383_ (Lnet/minecraft/world/phys/Vec3;)Lnet/minecraft/world/phys/AABB; net/minecraft/world/phys/AABB/move (Lnet/minecraft/world/phys/Vec3;)Lnet/minecraft/world/phys/AABB; +MD: net/minecraft/world/phys/AABB/m_82385_ ()D net/minecraft/world/phys/AABB/getZsize ()D +MD: net/minecraft/world/phys/AABB/m_82386_ (DDD)Lnet/minecraft/world/phys/AABB; net/minecraft/world/phys/AABB/move (DDD)Lnet/minecraft/world/phys/AABB; +MD: net/minecraft/world/phys/AABB/m_82390_ (Lnet/minecraft/world/phys/Vec3;)Z net/minecraft/world/phys/AABB/contains (Lnet/minecraft/world/phys/Vec3;)Z +MD: net/minecraft/world/phys/AABB/m_82392_ ()Z net/minecraft/world/phys/AABB/hasNaN ()Z +MD: net/minecraft/world/phys/AABB/m_82393_ (DDD)Z net/minecraft/world/phys/AABB/contains (DDD)Z +MD: net/minecraft/world/phys/AABB/m_82399_ ()Lnet/minecraft/world/phys/Vec3; net/minecraft/world/phys/AABB/getCenter ()Lnet/minecraft/world/phys/Vec3; +MD: net/minecraft/world/phys/AABB/m_82400_ (D)Lnet/minecraft/world/phys/AABB; net/minecraft/world/phys/AABB/inflate (D)Lnet/minecraft/world/phys/AABB; +MD: net/minecraft/world/phys/AABB/m_82406_ (D)Lnet/minecraft/world/phys/AABB; net/minecraft/world/phys/AABB/deflate (D)Lnet/minecraft/world/phys/AABB; +MD: net/minecraft/world/phys/AABB/toString ()Ljava/lang/String; net/minecraft/world/phys/AABB/toString ()Ljava/lang/String; +MD: net/minecraft/world/phys/BlockHitResult/ (Lnet/minecraft/world/phys/Vec3;Lnet/minecraft/core/Direction;Lnet/minecraft/core/BlockPos;Z)V net/minecraft/world/phys/BlockHitResult/ (Lnet/minecraft/world/phys/Vec3;Lnet/minecraft/core/Direction;Lnet/minecraft/core/BlockPos;Z)V +MD: net/minecraft/world/phys/BlockHitResult/ (ZLnet/minecraft/world/phys/Vec3;Lnet/minecraft/core/Direction;Lnet/minecraft/core/BlockPos;Z)V net/minecraft/world/phys/BlockHitResult/ (ZLnet/minecraft/world/phys/Vec3;Lnet/minecraft/core/Direction;Lnet/minecraft/core/BlockPos;Z)V +MD: net/minecraft/world/phys/BlockHitResult/m_6662_ ()Lnet/minecraft/world/phys/HitResult$Type; net/minecraft/world/phys/BlockHitResult/getType ()Lnet/minecraft/world/phys/HitResult$Type; +MD: net/minecraft/world/phys/BlockHitResult/m_82425_ ()Lnet/minecraft/core/BlockPos; net/minecraft/world/phys/BlockHitResult/getBlockPos ()Lnet/minecraft/core/BlockPos; +MD: net/minecraft/world/phys/BlockHitResult/m_82426_ (Lnet/minecraft/world/phys/Vec3;Lnet/minecraft/core/Direction;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/phys/BlockHitResult; net/minecraft/world/phys/BlockHitResult/miss (Lnet/minecraft/world/phys/Vec3;Lnet/minecraft/core/Direction;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/phys/BlockHitResult; +MD: net/minecraft/world/phys/BlockHitResult/m_82430_ (Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/phys/BlockHitResult; net/minecraft/world/phys/BlockHitResult/withPosition (Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/phys/BlockHitResult; +MD: net/minecraft/world/phys/BlockHitResult/m_82432_ (Lnet/minecraft/core/Direction;)Lnet/minecraft/world/phys/BlockHitResult; net/minecraft/world/phys/BlockHitResult/withDirection (Lnet/minecraft/core/Direction;)Lnet/minecraft/world/phys/BlockHitResult; +MD: net/minecraft/world/phys/BlockHitResult/m_82434_ ()Lnet/minecraft/core/Direction; net/minecraft/world/phys/BlockHitResult/getDirection ()Lnet/minecraft/core/Direction; +MD: net/minecraft/world/phys/BlockHitResult/m_82436_ ()Z net/minecraft/world/phys/BlockHitResult/isInside ()Z +MD: net/minecraft/world/phys/EntityHitResult/ (Lnet/minecraft/world/entity/Entity;)V net/minecraft/world/phys/EntityHitResult/ (Lnet/minecraft/world/entity/Entity;)V +MD: net/minecraft/world/phys/EntityHitResult/ (Lnet/minecraft/world/entity/Entity;Lnet/minecraft/world/phys/Vec3;)V net/minecraft/world/phys/EntityHitResult/ (Lnet/minecraft/world/entity/Entity;Lnet/minecraft/world/phys/Vec3;)V +MD: net/minecraft/world/phys/EntityHitResult/m_6662_ ()Lnet/minecraft/world/phys/HitResult$Type; net/minecraft/world/phys/EntityHitResult/getType ()Lnet/minecraft/world/phys/HitResult$Type; +MD: net/minecraft/world/phys/EntityHitResult/m_82443_ ()Lnet/minecraft/world/entity/Entity; net/minecraft/world/phys/EntityHitResult/getEntity ()Lnet/minecraft/world/entity/Entity; +MD: net/minecraft/world/phys/HitResult/ (Lnet/minecraft/world/phys/Vec3;)V net/minecraft/world/phys/HitResult/ (Lnet/minecraft/world/phys/Vec3;)V +MD: net/minecraft/world/phys/HitResult/m_6662_ ()Lnet/minecraft/world/phys/HitResult$Type; net/minecraft/world/phys/HitResult/getType ()Lnet/minecraft/world/phys/HitResult$Type; +MD: net/minecraft/world/phys/HitResult/m_82448_ (Lnet/minecraft/world/entity/Entity;)D net/minecraft/world/phys/HitResult/distanceTo (Lnet/minecraft/world/entity/Entity;)D +MD: net/minecraft/world/phys/HitResult/m_82450_ ()Lnet/minecraft/world/phys/Vec3; net/minecraft/world/phys/HitResult/getLocation ()Lnet/minecraft/world/phys/Vec3; +MD: net/minecraft/world/phys/HitResult$Type/ ()V net/minecraft/world/phys/HitResult$Type/ ()V +MD: net/minecraft/world/phys/HitResult$Type/ (Ljava/lang/String;I)V net/minecraft/world/phys/HitResult$Type/ (Ljava/lang/String;I)V +MD: net/minecraft/world/phys/HitResult$Type/m_165901_ ()[Lnet/minecraft/world/phys/HitResult$Type; net/minecraft/world/phys/HitResult$Type/$values ()[Lnet/minecraft/world/phys/HitResult$Type; +MD: net/minecraft/world/phys/HitResult$Type/valueOf (Ljava/lang/String;)Lnet/minecraft/world/phys/HitResult$Type; net/minecraft/world/phys/HitResult$Type/valueOf (Ljava/lang/String;)Lnet/minecraft/world/phys/HitResult$Type; +MD: net/minecraft/world/phys/HitResult$Type/values ()[Lnet/minecraft/world/phys/HitResult$Type; net/minecraft/world/phys/HitResult$Type/values ()[Lnet/minecraft/world/phys/HitResult$Type; +MD: net/minecraft/world/phys/Vec2/ ()V net/minecraft/world/phys/Vec2/ ()V +MD: net/minecraft/world/phys/Vec2/ (FF)V net/minecraft/world/phys/Vec2/ (FF)V +MD: net/minecraft/world/phys/Vec2/m_165902_ ()Lnet/minecraft/world/phys/Vec2; net/minecraft/world/phys/Vec2/normalized ()Lnet/minecraft/world/phys/Vec2; +MD: net/minecraft/world/phys/Vec2/m_165903_ (F)Lnet/minecraft/world/phys/Vec2; net/minecraft/world/phys/Vec2/scale (F)Lnet/minecraft/world/phys/Vec2; +MD: net/minecraft/world/phys/Vec2/m_165905_ (Lnet/minecraft/world/phys/Vec2;)F net/minecraft/world/phys/Vec2/dot (Lnet/minecraft/world/phys/Vec2;)F +MD: net/minecraft/world/phys/Vec2/m_165907_ ()F net/minecraft/world/phys/Vec2/length ()F +MD: net/minecraft/world/phys/Vec2/m_165908_ (F)Lnet/minecraft/world/phys/Vec2; net/minecraft/world/phys/Vec2/add (F)Lnet/minecraft/world/phys/Vec2; +MD: net/minecraft/world/phys/Vec2/m_165910_ (Lnet/minecraft/world/phys/Vec2;)Lnet/minecraft/world/phys/Vec2; net/minecraft/world/phys/Vec2/add (Lnet/minecraft/world/phys/Vec2;)Lnet/minecraft/world/phys/Vec2; +MD: net/minecraft/world/phys/Vec2/m_165912_ ()F net/minecraft/world/phys/Vec2/lengthSquared ()F +MD: net/minecraft/world/phys/Vec2/m_165913_ ()Lnet/minecraft/world/phys/Vec2; net/minecraft/world/phys/Vec2/negated ()Lnet/minecraft/world/phys/Vec2; +MD: net/minecraft/world/phys/Vec2/m_165914_ (Lnet/minecraft/world/phys/Vec2;)F net/minecraft/world/phys/Vec2/distanceToSqr (Lnet/minecraft/world/phys/Vec2;)F +MD: net/minecraft/world/phys/Vec2/m_82476_ (Lnet/minecraft/world/phys/Vec2;)Z net/minecraft/world/phys/Vec2/equals (Lnet/minecraft/world/phys/Vec2;)Z +MD: net/minecraft/world/phys/Vec3/ ()V net/minecraft/world/phys/Vec3/ ()V +MD: net/minecraft/world/phys/Vec3/ (DDD)V net/minecraft/world/phys/Vec3/ (DDD)V +MD: net/minecraft/world/phys/Vec3/ (Lorg/joml/Vector3f;)V net/minecraft/world/phys/Vec3/ (Lorg/joml/Vector3f;)V +MD: net/minecraft/world/phys/Vec3/equals (Ljava/lang/Object;)Z net/minecraft/world/phys/Vec3/equals (Ljava/lang/Object;)Z +MD: net/minecraft/world/phys/Vec3/hashCode ()I net/minecraft/world/phys/Vec3/hashCode ()I +MD: net/minecraft/world/phys/Vec3/m_165921_ (Lnet/minecraft/world/phys/Vec3;D)Lnet/minecraft/world/phys/Vec3; net/minecraft/world/phys/Vec3/lerp (Lnet/minecraft/world/phys/Vec3;D)Lnet/minecraft/world/phys/Vec3; +MD: net/minecraft/world/phys/Vec3/m_165924_ ()D net/minecraft/world/phys/Vec3/horizontalDistance ()D +MD: net/minecraft/world/phys/Vec3/m_165925_ ()D net/minecraft/world/phys/Vec3/horizontalDistanceSqr ()D +MD: net/minecraft/world/phys/Vec3/m_193103_ (Lnet/minecraft/core/Direction$Axis;D)Lnet/minecraft/world/phys/Vec3; net/minecraft/world/phys/Vec3/with (Lnet/minecraft/core/Direction$Axis;D)Lnet/minecraft/world/phys/Vec3; +MD: net/minecraft/world/phys/Vec3/m_231075_ (Lnet/minecraft/core/Direction;D)Lnet/minecraft/world/phys/Vec3; net/minecraft/world/phys/Vec3/relative (Lnet/minecraft/core/Direction;D)Lnet/minecraft/world/phys/Vec3; +MD: net/minecraft/world/phys/Vec3/m_231078_ (Ljava/util/List;)Lcom/mojang/serialization/DataResult; net/minecraft/world/phys/Vec3/lambda$static$1 (Ljava/util/List;)Lcom/mojang/serialization/DataResult; +MD: net/minecraft/world/phys/Vec3/m_231080_ (Ljava/util/List;)Lnet/minecraft/world/phys/Vec3; net/minecraft/world/phys/Vec3/lambda$static$0 (Ljava/util/List;)Lnet/minecraft/world/phys/Vec3; +MD: net/minecraft/world/phys/Vec3/m_231082_ (Lnet/minecraft/world/phys/Vec3;)Ljava/util/List; net/minecraft/world/phys/Vec3/lambda$static$2 (Lnet/minecraft/world/phys/Vec3;)Ljava/util/List; +MD: net/minecraft/world/phys/Vec3/m_252839_ ()Lorg/joml/Vector3f; net/minecraft/world/phys/Vec3/toVector3f ()Lorg/joml/Vector3f; +MD: net/minecraft/world/phys/Vec3/m_272010_ (Lnet/minecraft/util/RandomSource;F)Lnet/minecraft/world/phys/Vec3; net/minecraft/world/phys/Vec3/offsetRandom (Lnet/minecraft/util/RandomSource;F)Lnet/minecraft/world/phys/Vec3; +MD: net/minecraft/world/phys/Vec3/m_272021_ (Lnet/minecraft/core/Vec3i;DDD)Lnet/minecraft/world/phys/Vec3; net/minecraft/world/phys/Vec3/atLowerCornerWithOffset (Lnet/minecraft/core/Vec3i;DDD)Lnet/minecraft/world/phys/Vec3; +MD: net/minecraft/world/phys/Vec3/m_7094_ ()D net/minecraft/world/phys/Vec3/z ()D +MD: net/minecraft/world/phys/Vec3/m_7096_ ()D net/minecraft/world/phys/Vec3/x ()D +MD: net/minecraft/world/phys/Vec3/m_7098_ ()D net/minecraft/world/phys/Vec3/y ()D +MD: net/minecraft/world/phys/Vec3/m_82490_ (D)Lnet/minecraft/world/phys/Vec3; net/minecraft/world/phys/Vec3/scale (D)Lnet/minecraft/world/phys/Vec3; +MD: net/minecraft/world/phys/Vec3/m_82492_ (DDD)Lnet/minecraft/world/phys/Vec3; net/minecraft/world/phys/Vec3/subtract (DDD)Lnet/minecraft/world/phys/Vec3; +MD: net/minecraft/world/phys/Vec3/m_82496_ (F)Lnet/minecraft/world/phys/Vec3; net/minecraft/world/phys/Vec3/xRot (F)Lnet/minecraft/world/phys/Vec3; +MD: net/minecraft/world/phys/Vec3/m_82498_ (FF)Lnet/minecraft/world/phys/Vec3; net/minecraft/world/phys/Vec3/directionFromRotation (FF)Lnet/minecraft/world/phys/Vec3; +MD: net/minecraft/world/phys/Vec3/m_82501_ (I)Lnet/minecraft/world/phys/Vec3; net/minecraft/world/phys/Vec3/fromRGB24 (I)Lnet/minecraft/world/phys/Vec3; +MD: net/minecraft/world/phys/Vec3/m_82503_ (Lnet/minecraft/world/phys/Vec2;)Lnet/minecraft/world/phys/Vec3; net/minecraft/world/phys/Vec3/directionFromRotation (Lnet/minecraft/world/phys/Vec2;)Lnet/minecraft/world/phys/Vec3; +MD: net/minecraft/world/phys/Vec3/m_82505_ (Lnet/minecraft/world/phys/Vec3;)Lnet/minecraft/world/phys/Vec3; net/minecraft/world/phys/Vec3/vectorTo (Lnet/minecraft/world/phys/Vec3;)Lnet/minecraft/world/phys/Vec3; +MD: net/minecraft/world/phys/Vec3/m_82507_ (Lnet/minecraft/core/Direction$Axis;)D net/minecraft/world/phys/Vec3/get (Lnet/minecraft/core/Direction$Axis;)D +MD: net/minecraft/world/phys/Vec3/m_82509_ (Lnet/minecraft/core/Position;D)Z net/minecraft/world/phys/Vec3/closerThan (Lnet/minecraft/core/Position;D)Z +MD: net/minecraft/world/phys/Vec3/m_82512_ (Lnet/minecraft/core/Vec3i;)Lnet/minecraft/world/phys/Vec3; net/minecraft/world/phys/Vec3/atCenterOf (Lnet/minecraft/core/Vec3i;)Lnet/minecraft/world/phys/Vec3; +MD: net/minecraft/world/phys/Vec3/m_82514_ (Lnet/minecraft/core/Vec3i;D)Lnet/minecraft/world/phys/Vec3; net/minecraft/world/phys/Vec3/upFromBottomCenterOf (Lnet/minecraft/core/Vec3i;D)Lnet/minecraft/world/phys/Vec3; +MD: net/minecraft/world/phys/Vec3/m_82517_ (Ljava/util/EnumSet;)Lnet/minecraft/world/phys/Vec3; net/minecraft/world/phys/Vec3/align (Ljava/util/EnumSet;)Lnet/minecraft/world/phys/Vec3; +MD: net/minecraft/world/phys/Vec3/m_82520_ (DDD)Lnet/minecraft/world/phys/Vec3; net/minecraft/world/phys/Vec3/add (DDD)Lnet/minecraft/world/phys/Vec3; +MD: net/minecraft/world/phys/Vec3/m_82524_ (F)Lnet/minecraft/world/phys/Vec3; net/minecraft/world/phys/Vec3/yRot (F)Lnet/minecraft/world/phys/Vec3; +MD: net/minecraft/world/phys/Vec3/m_82526_ (Lnet/minecraft/world/phys/Vec3;)D net/minecraft/world/phys/Vec3/dot (Lnet/minecraft/world/phys/Vec3;)D +MD: net/minecraft/world/phys/Vec3/m_82528_ (Lnet/minecraft/core/Vec3i;)Lnet/minecraft/world/phys/Vec3; net/minecraft/world/phys/Vec3/atLowerCornerOf (Lnet/minecraft/core/Vec3i;)Lnet/minecraft/world/phys/Vec3; +MD: net/minecraft/world/phys/Vec3/m_82531_ (DDD)D net/minecraft/world/phys/Vec3/distanceToSqr (DDD)D +MD: net/minecraft/world/phys/Vec3/m_82535_ (F)Lnet/minecraft/world/phys/Vec3; net/minecraft/world/phys/Vec3/zRot (F)Lnet/minecraft/world/phys/Vec3; +MD: net/minecraft/world/phys/Vec3/m_82537_ (Lnet/minecraft/world/phys/Vec3;)Lnet/minecraft/world/phys/Vec3; net/minecraft/world/phys/Vec3/cross (Lnet/minecraft/world/phys/Vec3;)Lnet/minecraft/world/phys/Vec3; +MD: net/minecraft/world/phys/Vec3/m_82539_ (Lnet/minecraft/core/Vec3i;)Lnet/minecraft/world/phys/Vec3; net/minecraft/world/phys/Vec3/atBottomCenterOf (Lnet/minecraft/core/Vec3i;)Lnet/minecraft/world/phys/Vec3; +MD: net/minecraft/world/phys/Vec3/m_82541_ ()Lnet/minecraft/world/phys/Vec3; net/minecraft/world/phys/Vec3/normalize ()Lnet/minecraft/world/phys/Vec3; +MD: net/minecraft/world/phys/Vec3/m_82542_ (DDD)Lnet/minecraft/world/phys/Vec3; net/minecraft/world/phys/Vec3/multiply (DDD)Lnet/minecraft/world/phys/Vec3; +MD: net/minecraft/world/phys/Vec3/m_82546_ (Lnet/minecraft/world/phys/Vec3;)Lnet/minecraft/world/phys/Vec3; net/minecraft/world/phys/Vec3/subtract (Lnet/minecraft/world/phys/Vec3;)Lnet/minecraft/world/phys/Vec3; +MD: net/minecraft/world/phys/Vec3/m_82548_ ()Lnet/minecraft/world/phys/Vec3; net/minecraft/world/phys/Vec3/reverse ()Lnet/minecraft/world/phys/Vec3; +MD: net/minecraft/world/phys/Vec3/m_82549_ (Lnet/minecraft/world/phys/Vec3;)Lnet/minecraft/world/phys/Vec3; net/minecraft/world/phys/Vec3/add (Lnet/minecraft/world/phys/Vec3;)Lnet/minecraft/world/phys/Vec3; +MD: net/minecraft/world/phys/Vec3/m_82553_ ()D net/minecraft/world/phys/Vec3/length ()D +MD: net/minecraft/world/phys/Vec3/m_82554_ (Lnet/minecraft/world/phys/Vec3;)D net/minecraft/world/phys/Vec3/distanceTo (Lnet/minecraft/world/phys/Vec3;)D +MD: net/minecraft/world/phys/Vec3/m_82556_ ()D net/minecraft/world/phys/Vec3/lengthSqr ()D +MD: net/minecraft/world/phys/Vec3/m_82557_ (Lnet/minecraft/world/phys/Vec3;)D net/minecraft/world/phys/Vec3/distanceToSqr (Lnet/minecraft/world/phys/Vec3;)D +MD: net/minecraft/world/phys/Vec3/m_82559_ (Lnet/minecraft/world/phys/Vec3;)Lnet/minecraft/world/phys/Vec3; net/minecraft/world/phys/Vec3/multiply (Lnet/minecraft/world/phys/Vec3;)Lnet/minecraft/world/phys/Vec3; +MD: net/minecraft/world/phys/Vec3/toString ()Ljava/lang/String; net/minecraft/world/phys/Vec3/toString ()Ljava/lang/String; +MD: net/minecraft/world/phys/shapes/ArrayVoxelShape/ (Lnet/minecraft/world/phys/shapes/DiscreteVoxelShape;Lit/unimi/dsi/fastutil/doubles/DoubleList;Lit/unimi/dsi/fastutil/doubles/DoubleList;Lit/unimi/dsi/fastutil/doubles/DoubleList;)V net/minecraft/world/phys/shapes/ArrayVoxelShape/ (Lnet/minecraft/world/phys/shapes/DiscreteVoxelShape;Lit/unimi/dsi/fastutil/doubles/DoubleList;Lit/unimi/dsi/fastutil/doubles/DoubleList;Lit/unimi/dsi/fastutil/doubles/DoubleList;)V +MD: net/minecraft/world/phys/shapes/ArrayVoxelShape/ (Lnet/minecraft/world/phys/shapes/DiscreteVoxelShape;[D[D[D)V net/minecraft/world/phys/shapes/ArrayVoxelShape/ (Lnet/minecraft/world/phys/shapes/DiscreteVoxelShape;[D[D[D)V +MD: net/minecraft/world/phys/shapes/ArrayVoxelShape/m_7700_ (Lnet/minecraft/core/Direction$Axis;)Lit/unimi/dsi/fastutil/doubles/DoubleList; net/minecraft/world/phys/shapes/ArrayVoxelShape/getCoords (Lnet/minecraft/core/Direction$Axis;)Lit/unimi/dsi/fastutil/doubles/DoubleList; +MD: net/minecraft/world/phys/shapes/ArrayVoxelShape$1/ ()V net/minecraft/world/phys/shapes/ArrayVoxelShape$1/ ()V +MD: net/minecraft/world/phys/shapes/BitSetDiscreteVoxelShape/ (III)V net/minecraft/world/phys/shapes/BitSetDiscreteVoxelShape/ (III)V +MD: net/minecraft/world/phys/shapes/BitSetDiscreteVoxelShape/ (Lnet/minecraft/world/phys/shapes/DiscreteVoxelShape;)V net/minecraft/world/phys/shapes/BitSetDiscreteVoxelShape/ (Lnet/minecraft/world/phys/shapes/DiscreteVoxelShape;)V +MD: net/minecraft/world/phys/shapes/BitSetDiscreteVoxelShape/m_142703_ (III)V net/minecraft/world/phys/shapes/BitSetDiscreteVoxelShape/fill (III)V +MD: net/minecraft/world/phys/shapes/BitSetDiscreteVoxelShape/m_165926_ (IIIII)Z net/minecraft/world/phys/shapes/BitSetDiscreteVoxelShape/isXZRectangleFull (IIIII)Z +MD: net/minecraft/world/phys/shapes/BitSetDiscreteVoxelShape/m_165932_ (IIIIIIIII)Lnet/minecraft/world/phys/shapes/BitSetDiscreteVoxelShape; net/minecraft/world/phys/shapes/BitSetDiscreteVoxelShape/withFilledBounds (IIIIIIIII)Lnet/minecraft/world/phys/shapes/BitSetDiscreteVoxelShape; +MD: net/minecraft/world/phys/shapes/BitSetDiscreteVoxelShape/m_165942_ (IIIZ)V net/minecraft/world/phys/shapes/BitSetDiscreteVoxelShape/fillUpdateBounds (IIIZ)V +MD: net/minecraft/world/phys/shapes/BitSetDiscreteVoxelShape/m_165947_ (Lnet/minecraft/world/phys/shapes/BooleanOp;Lnet/minecraft/world/phys/shapes/DiscreteVoxelShape;IILnet/minecraft/world/phys/shapes/DiscreteVoxelShape;IILnet/minecraft/world/phys/shapes/BitSetDiscreteVoxelShape;II[I[ZIII)Z net/minecraft/world/phys/shapes/BitSetDiscreteVoxelShape/lambda$join$0 (Lnet/minecraft/world/phys/shapes/BooleanOp;Lnet/minecraft/world/phys/shapes/DiscreteVoxelShape;IILnet/minecraft/world/phys/shapes/DiscreteVoxelShape;IILnet/minecraft/world/phys/shapes/BitSetDiscreteVoxelShape;II[I[ZIII)Z +MD: net/minecraft/world/phys/shapes/BitSetDiscreteVoxelShape/m_165963_ (Lnet/minecraft/world/phys/shapes/DiscreteVoxelShape;Lnet/minecraft/world/phys/shapes/DiscreteVoxelShape$IntLineConsumer;Z)V net/minecraft/world/phys/shapes/BitSetDiscreteVoxelShape/forAllBoxes (Lnet/minecraft/world/phys/shapes/DiscreteVoxelShape;Lnet/minecraft/world/phys/shapes/DiscreteVoxelShape$IntLineConsumer;Z)V +MD: net/minecraft/world/phys/shapes/BitSetDiscreteVoxelShape/m_165967_ (Lnet/minecraft/world/phys/shapes/IndexMerger;Lnet/minecraft/world/phys/shapes/BooleanOp;Lnet/minecraft/world/phys/shapes/DiscreteVoxelShape;ILnet/minecraft/world/phys/shapes/DiscreteVoxelShape;ILnet/minecraft/world/phys/shapes/BitSetDiscreteVoxelShape;I[I[ZIII)Z net/minecraft/world/phys/shapes/BitSetDiscreteVoxelShape/lambda$join$1 (Lnet/minecraft/world/phys/shapes/IndexMerger;Lnet/minecraft/world/phys/shapes/BooleanOp;Lnet/minecraft/world/phys/shapes/DiscreteVoxelShape;ILnet/minecraft/world/phys/shapes/DiscreteVoxelShape;ILnet/minecraft/world/phys/shapes/BitSetDiscreteVoxelShape;I[I[ZIII)Z +MD: net/minecraft/world/phys/shapes/BitSetDiscreteVoxelShape/m_165981_ (IIII)V net/minecraft/world/phys/shapes/BitSetDiscreteVoxelShape/clearZStrip (IIII)V +MD: net/minecraft/world/phys/shapes/BitSetDiscreteVoxelShape/m_6224_ ()Z net/minecraft/world/phys/shapes/BitSetDiscreteVoxelShape/isEmpty ()Z +MD: net/minecraft/world/phys/shapes/BitSetDiscreteVoxelShape/m_6536_ (Lnet/minecraft/core/Direction$Axis;)I net/minecraft/world/phys/shapes/BitSetDiscreteVoxelShape/lastFull (Lnet/minecraft/core/Direction$Axis;)I +MD: net/minecraft/world/phys/shapes/BitSetDiscreteVoxelShape/m_6538_ (Lnet/minecraft/core/Direction$Axis;)I net/minecraft/world/phys/shapes/BitSetDiscreteVoxelShape/firstFull (Lnet/minecraft/core/Direction$Axis;)I +MD: net/minecraft/world/phys/shapes/BitSetDiscreteVoxelShape/m_6696_ (III)Z net/minecraft/world/phys/shapes/BitSetDiscreteVoxelShape/isFull (III)Z +MD: net/minecraft/world/phys/shapes/BitSetDiscreteVoxelShape/m_82604_ (III)I net/minecraft/world/phys/shapes/BitSetDiscreteVoxelShape/getIndex (III)I +MD: net/minecraft/world/phys/shapes/BitSetDiscreteVoxelShape/m_82608_ (IIII)Z net/minecraft/world/phys/shapes/BitSetDiscreteVoxelShape/isZStripFull (IIII)Z +MD: net/minecraft/world/phys/shapes/BitSetDiscreteVoxelShape/m_82641_ (Lnet/minecraft/world/phys/shapes/DiscreteVoxelShape;Lnet/minecraft/world/phys/shapes/DiscreteVoxelShape;Lnet/minecraft/world/phys/shapes/IndexMerger;Lnet/minecraft/world/phys/shapes/IndexMerger;Lnet/minecraft/world/phys/shapes/IndexMerger;Lnet/minecraft/world/phys/shapes/BooleanOp;)Lnet/minecraft/world/phys/shapes/BitSetDiscreteVoxelShape; net/minecraft/world/phys/shapes/BitSetDiscreteVoxelShape/join (Lnet/minecraft/world/phys/shapes/DiscreteVoxelShape;Lnet/minecraft/world/phys/shapes/DiscreteVoxelShape;Lnet/minecraft/world/phys/shapes/IndexMerger;Lnet/minecraft/world/phys/shapes/IndexMerger;Lnet/minecraft/world/phys/shapes/IndexMerger;Lnet/minecraft/world/phys/shapes/BooleanOp;)Lnet/minecraft/world/phys/shapes/BitSetDiscreteVoxelShape; +MD: net/minecraft/world/phys/shapes/BitSetDiscreteVoxelShape/m_82662_ (Lnet/minecraft/world/phys/shapes/IndexMerger;Lnet/minecraft/world/phys/shapes/IndexMerger;Lnet/minecraft/world/phys/shapes/BooleanOp;Lnet/minecraft/world/phys/shapes/DiscreteVoxelShape;Lnet/minecraft/world/phys/shapes/DiscreteVoxelShape;Lnet/minecraft/world/phys/shapes/BitSetDiscreteVoxelShape;[IIII)Z net/minecraft/world/phys/shapes/BitSetDiscreteVoxelShape/lambda$join$2 (Lnet/minecraft/world/phys/shapes/IndexMerger;Lnet/minecraft/world/phys/shapes/IndexMerger;Lnet/minecraft/world/phys/shapes/BooleanOp;Lnet/minecraft/world/phys/shapes/DiscreteVoxelShape;Lnet/minecraft/world/phys/shapes/DiscreteVoxelShape;Lnet/minecraft/world/phys/shapes/BitSetDiscreteVoxelShape;[IIII)Z +MD: net/minecraft/world/phys/shapes/BooleanOp/ ()V net/minecraft/world/phys/shapes/BooleanOp/ ()V +MD: net/minecraft/world/phys/shapes/BooleanOp/m_82698_ (ZZ)Z net/minecraft/world/phys/shapes/BooleanOp/lambda$static$15 (ZZ)Z +MD: net/minecraft/world/phys/shapes/BooleanOp/m_82701_ (ZZ)Z net/minecraft/world/phys/shapes/BooleanOp/apply (ZZ)Z +MD: net/minecraft/world/phys/shapes/BooleanOp/m_82704_ (ZZ)Z net/minecraft/world/phys/shapes/BooleanOp/lambda$static$14 (ZZ)Z +MD: net/minecraft/world/phys/shapes/BooleanOp/m_82707_ (ZZ)Z net/minecraft/world/phys/shapes/BooleanOp/lambda$static$13 (ZZ)Z +MD: net/minecraft/world/phys/shapes/BooleanOp/m_82710_ (ZZ)Z net/minecraft/world/phys/shapes/BooleanOp/lambda$static$12 (ZZ)Z +MD: net/minecraft/world/phys/shapes/BooleanOp/m_82713_ (ZZ)Z net/minecraft/world/phys/shapes/BooleanOp/lambda$static$11 (ZZ)Z +MD: net/minecraft/world/phys/shapes/BooleanOp/m_82716_ (ZZ)Z net/minecraft/world/phys/shapes/BooleanOp/lambda$static$10 (ZZ)Z +MD: net/minecraft/world/phys/shapes/BooleanOp/m_82719_ (ZZ)Z net/minecraft/world/phys/shapes/BooleanOp/lambda$static$9 (ZZ)Z +MD: net/minecraft/world/phys/shapes/BooleanOp/m_82722_ (ZZ)Z net/minecraft/world/phys/shapes/BooleanOp/lambda$static$8 (ZZ)Z +MD: net/minecraft/world/phys/shapes/BooleanOp/m_82725_ (ZZ)Z net/minecraft/world/phys/shapes/BooleanOp/lambda$static$7 (ZZ)Z +MD: net/minecraft/world/phys/shapes/BooleanOp/m_82728_ (ZZ)Z net/minecraft/world/phys/shapes/BooleanOp/lambda$static$6 (ZZ)Z +MD: net/minecraft/world/phys/shapes/BooleanOp/m_82731_ (ZZ)Z net/minecraft/world/phys/shapes/BooleanOp/lambda$static$5 (ZZ)Z +MD: net/minecraft/world/phys/shapes/BooleanOp/m_82734_ (ZZ)Z net/minecraft/world/phys/shapes/BooleanOp/lambda$static$4 (ZZ)Z +MD: net/minecraft/world/phys/shapes/BooleanOp/m_82737_ (ZZ)Z net/minecraft/world/phys/shapes/BooleanOp/lambda$static$3 (ZZ)Z +MD: net/minecraft/world/phys/shapes/BooleanOp/m_82740_ (ZZ)Z net/minecraft/world/phys/shapes/BooleanOp/lambda$static$2 (ZZ)Z +MD: net/minecraft/world/phys/shapes/BooleanOp/m_82743_ (ZZ)Z net/minecraft/world/phys/shapes/BooleanOp/lambda$static$1 (ZZ)Z +MD: net/minecraft/world/phys/shapes/BooleanOp/m_82746_ (ZZ)Z net/minecraft/world/phys/shapes/BooleanOp/lambda$static$0 (ZZ)Z +MD: net/minecraft/world/phys/shapes/CollisionContext/m_203682_ (Lnet/minecraft/world/level/material/FluidState;Lnet/minecraft/world/level/material/FluidState;)Z net/minecraft/world/phys/shapes/CollisionContext/canStandOnFluid (Lnet/minecraft/world/level/material/FluidState;Lnet/minecraft/world/level/material/FluidState;)Z +MD: net/minecraft/world/phys/shapes/CollisionContext/m_6226_ ()Z net/minecraft/world/phys/shapes/CollisionContext/isDescending ()Z +MD: net/minecraft/world/phys/shapes/CollisionContext/m_6513_ (Lnet/minecraft/world/phys/shapes/VoxelShape;Lnet/minecraft/core/BlockPos;Z)Z net/minecraft/world/phys/shapes/CollisionContext/isAbove (Lnet/minecraft/world/phys/shapes/VoxelShape;Lnet/minecraft/core/BlockPos;Z)Z +MD: net/minecraft/world/phys/shapes/CollisionContext/m_7142_ (Lnet/minecraft/world/item/Item;)Z net/minecraft/world/phys/shapes/CollisionContext/isHoldingItem (Lnet/minecraft/world/item/Item;)Z +MD: net/minecraft/world/phys/shapes/CollisionContext/m_82749_ ()Lnet/minecraft/world/phys/shapes/CollisionContext; net/minecraft/world/phys/shapes/CollisionContext/empty ()Lnet/minecraft/world/phys/shapes/CollisionContext; +MD: net/minecraft/world/phys/shapes/CollisionContext/m_82750_ (Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/world/phys/shapes/CollisionContext; net/minecraft/world/phys/shapes/CollisionContext/of (Lnet/minecraft/world/entity/Entity;)Lnet/minecraft/world/phys/shapes/CollisionContext; +MD: net/minecraft/world/phys/shapes/CubePointRange/ (I)V net/minecraft/world/phys/shapes/CubePointRange/ (I)V +MD: net/minecraft/world/phys/shapes/CubePointRange/getDouble (I)D net/minecraft/world/phys/shapes/CubePointRange/getDouble (I)D +MD: net/minecraft/world/phys/shapes/CubePointRange/size ()I net/minecraft/world/phys/shapes/CubePointRange/size ()I +MD: net/minecraft/world/phys/shapes/CubeVoxelShape/ (Lnet/minecraft/world/phys/shapes/DiscreteVoxelShape;)V net/minecraft/world/phys/shapes/CubeVoxelShape/ (Lnet/minecraft/world/phys/shapes/DiscreteVoxelShape;)V +MD: net/minecraft/world/phys/shapes/CubeVoxelShape/m_6595_ (Lnet/minecraft/core/Direction$Axis;D)I net/minecraft/world/phys/shapes/CubeVoxelShape/findIndex (Lnet/minecraft/core/Direction$Axis;D)I +MD: net/minecraft/world/phys/shapes/CubeVoxelShape/m_7700_ (Lnet/minecraft/core/Direction$Axis;)Lit/unimi/dsi/fastutil/doubles/DoubleList; net/minecraft/world/phys/shapes/CubeVoxelShape/getCoords (Lnet/minecraft/core/Direction$Axis;)Lit/unimi/dsi/fastutil/doubles/DoubleList; +MD: net/minecraft/world/phys/shapes/DiscreteCubeMerger/ (II)V net/minecraft/world/phys/shapes/DiscreteCubeMerger/ (II)V +MD: net/minecraft/world/phys/shapes/DiscreteCubeMerger/m_6200_ (Lnet/minecraft/world/phys/shapes/IndexMerger$IndexConsumer;)Z net/minecraft/world/phys/shapes/DiscreteCubeMerger/forMergedIndexes (Lnet/minecraft/world/phys/shapes/IndexMerger$IndexConsumer;)Z +MD: net/minecraft/world/phys/shapes/DiscreteCubeMerger/m_6241_ ()Lit/unimi/dsi/fastutil/doubles/DoubleList; net/minecraft/world/phys/shapes/DiscreteCubeMerger/getList ()Lit/unimi/dsi/fastutil/doubles/DoubleList; +MD: net/minecraft/world/phys/shapes/DiscreteCubeMerger/size ()I net/minecraft/world/phys/shapes/DiscreteCubeMerger/size ()I +MD: net/minecraft/world/phys/shapes/DiscreteVoxelShape/ ()V net/minecraft/world/phys/shapes/DiscreteVoxelShape/ ()V +MD: net/minecraft/world/phys/shapes/DiscreteVoxelShape/ (III)V net/minecraft/world/phys/shapes/DiscreteVoxelShape/ (III)V +MD: net/minecraft/world/phys/shapes/DiscreteVoxelShape/m_142703_ (III)V net/minecraft/world/phys/shapes/DiscreteVoxelShape/fill (III)V +MD: net/minecraft/world/phys/shapes/DiscreteVoxelShape/m_165994_ (Lnet/minecraft/core/Direction$Axis;II)I net/minecraft/world/phys/shapes/DiscreteVoxelShape/firstFull (Lnet/minecraft/core/Direction$Axis;II)I +MD: net/minecraft/world/phys/shapes/DiscreteVoxelShape/m_6224_ ()Z net/minecraft/world/phys/shapes/DiscreteVoxelShape/isEmpty ()Z +MD: net/minecraft/world/phys/shapes/DiscreteVoxelShape/m_6536_ (Lnet/minecraft/core/Direction$Axis;)I net/minecraft/world/phys/shapes/DiscreteVoxelShape/lastFull (Lnet/minecraft/core/Direction$Axis;)I +MD: net/minecraft/world/phys/shapes/DiscreteVoxelShape/m_6538_ (Lnet/minecraft/core/Direction$Axis;)I net/minecraft/world/phys/shapes/DiscreteVoxelShape/firstFull (Lnet/minecraft/core/Direction$Axis;)I +MD: net/minecraft/world/phys/shapes/DiscreteVoxelShape/m_6696_ (III)Z net/minecraft/world/phys/shapes/DiscreteVoxelShape/isFull (III)Z +MD: net/minecraft/world/phys/shapes/DiscreteVoxelShape/m_82810_ (Lnet/minecraft/world/phys/shapes/DiscreteVoxelShape$IntFaceConsumer;)V net/minecraft/world/phys/shapes/DiscreteVoxelShape/forAllFaces (Lnet/minecraft/world/phys/shapes/DiscreteVoxelShape$IntFaceConsumer;)V +MD: net/minecraft/world/phys/shapes/DiscreteVoxelShape/m_82812_ (Lnet/minecraft/world/phys/shapes/DiscreteVoxelShape$IntFaceConsumer;Lnet/minecraft/core/AxisCycle;)V net/minecraft/world/phys/shapes/DiscreteVoxelShape/forAllAxisFaces (Lnet/minecraft/world/phys/shapes/DiscreteVoxelShape$IntFaceConsumer;Lnet/minecraft/core/AxisCycle;)V +MD: net/minecraft/world/phys/shapes/DiscreteVoxelShape/m_82815_ (Lnet/minecraft/world/phys/shapes/DiscreteVoxelShape$IntLineConsumer;Lnet/minecraft/core/AxisCycle;Z)V net/minecraft/world/phys/shapes/DiscreteVoxelShape/forAllAxisEdges (Lnet/minecraft/world/phys/shapes/DiscreteVoxelShape$IntLineConsumer;Lnet/minecraft/core/AxisCycle;Z)V +MD: net/minecraft/world/phys/shapes/DiscreteVoxelShape/m_82819_ (Lnet/minecraft/world/phys/shapes/DiscreteVoxelShape$IntLineConsumer;Z)V net/minecraft/world/phys/shapes/DiscreteVoxelShape/forAllEdges (Lnet/minecraft/world/phys/shapes/DiscreteVoxelShape$IntLineConsumer;Z)V +MD: net/minecraft/world/phys/shapes/DiscreteVoxelShape/m_82822_ (Lnet/minecraft/core/AxisCycle;III)Z net/minecraft/world/phys/shapes/DiscreteVoxelShape/isFullWide (Lnet/minecraft/core/AxisCycle;III)Z +MD: net/minecraft/world/phys/shapes/DiscreteVoxelShape/m_82828_ ()I net/minecraft/world/phys/shapes/DiscreteVoxelShape/getXSize ()I +MD: net/minecraft/world/phys/shapes/DiscreteVoxelShape/m_82832_ (Lnet/minecraft/world/phys/shapes/DiscreteVoxelShape$IntLineConsumer;Z)V net/minecraft/world/phys/shapes/DiscreteVoxelShape/forAllBoxes (Lnet/minecraft/world/phys/shapes/DiscreteVoxelShape$IntLineConsumer;Z)V +MD: net/minecraft/world/phys/shapes/DiscreteVoxelShape/m_82835_ (Lnet/minecraft/core/AxisCycle;III)Z net/minecraft/world/phys/shapes/DiscreteVoxelShape/isFull (Lnet/minecraft/core/AxisCycle;III)Z +MD: net/minecraft/world/phys/shapes/DiscreteVoxelShape/m_82841_ (Lnet/minecraft/core/Direction$Axis;II)I net/minecraft/world/phys/shapes/DiscreteVoxelShape/lastFull (Lnet/minecraft/core/Direction$Axis;II)I +MD: net/minecraft/world/phys/shapes/DiscreteVoxelShape/m_82845_ ()I net/minecraft/world/phys/shapes/DiscreteVoxelShape/getYSize ()I +MD: net/minecraft/world/phys/shapes/DiscreteVoxelShape/m_82846_ (III)Z net/minecraft/world/phys/shapes/DiscreteVoxelShape/isFullWide (III)Z +MD: net/minecraft/world/phys/shapes/DiscreteVoxelShape/m_82850_ (Lnet/minecraft/core/Direction$Axis;)I net/minecraft/world/phys/shapes/DiscreteVoxelShape/getSize (Lnet/minecraft/core/Direction$Axis;)I +MD: net/minecraft/world/phys/shapes/DiscreteVoxelShape/m_82852_ ()I net/minecraft/world/phys/shapes/DiscreteVoxelShape/getZSize ()I +MD: net/minecraft/world/phys/shapes/DiscreteVoxelShape$IntFaceConsumer/m_82853_ (Lnet/minecraft/core/Direction;III)V net/minecraft/world/phys/shapes/DiscreteVoxelShape$IntFaceConsumer/consume (Lnet/minecraft/core/Direction;III)V +MD: net/minecraft/world/phys/shapes/DiscreteVoxelShape$IntLineConsumer/m_82858_ (IIIIII)V net/minecraft/world/phys/shapes/DiscreteVoxelShape$IntLineConsumer/consume (IIIIII)V +MD: net/minecraft/world/phys/shapes/EntityCollisionContext/ ()V net/minecraft/world/phys/shapes/EntityCollisionContext/ ()V +MD: net/minecraft/world/phys/shapes/EntityCollisionContext/ (Lnet/minecraft/world/entity/Entity;)V net/minecraft/world/phys/shapes/EntityCollisionContext/ (Lnet/minecraft/world/entity/Entity;)V +MD: net/minecraft/world/phys/shapes/EntityCollisionContext/ (ZDLnet/minecraft/world/item/ItemStack;Ljava/util/function/Predicate;Lnet/minecraft/world/entity/Entity;)V net/minecraft/world/phys/shapes/EntityCollisionContext/ (ZDLnet/minecraft/world/item/ItemStack;Ljava/util/function/Predicate;Lnet/minecraft/world/entity/Entity;)V +MD: net/minecraft/world/phys/shapes/EntityCollisionContext/m_193113_ ()Lnet/minecraft/world/entity/Entity; net/minecraft/world/phys/shapes/EntityCollisionContext/getEntity ()Lnet/minecraft/world/entity/Entity; +MD: net/minecraft/world/phys/shapes/EntityCollisionContext/m_203682_ (Lnet/minecraft/world/level/material/FluidState;Lnet/minecraft/world/level/material/FluidState;)Z net/minecraft/world/phys/shapes/EntityCollisionContext/canStandOnFluid (Lnet/minecraft/world/level/material/FluidState;Lnet/minecraft/world/level/material/FluidState;)Z +MD: net/minecraft/world/phys/shapes/EntityCollisionContext/m_205112_ (Lnet/minecraft/world/level/material/FluidState;)Z net/minecraft/world/phys/shapes/EntityCollisionContext/lambda$new$1 (Lnet/minecraft/world/level/material/FluidState;)Z +MD: net/minecraft/world/phys/shapes/EntityCollisionContext/m_205117_ (Lnet/minecraft/world/level/material/FluidState;)Z net/minecraft/world/phys/shapes/EntityCollisionContext/lambda$static$0 (Lnet/minecraft/world/level/material/FluidState;)Z +MD: net/minecraft/world/phys/shapes/EntityCollisionContext/m_6226_ ()Z net/minecraft/world/phys/shapes/EntityCollisionContext/isDescending ()Z +MD: net/minecraft/world/phys/shapes/EntityCollisionContext/m_6513_ (Lnet/minecraft/world/phys/shapes/VoxelShape;Lnet/minecraft/core/BlockPos;Z)Z net/minecraft/world/phys/shapes/EntityCollisionContext/isAbove (Lnet/minecraft/world/phys/shapes/VoxelShape;Lnet/minecraft/core/BlockPos;Z)Z +MD: net/minecraft/world/phys/shapes/EntityCollisionContext/m_7142_ (Lnet/minecraft/world/item/Item;)Z net/minecraft/world/phys/shapes/EntityCollisionContext/isHoldingItem (Lnet/minecraft/world/item/Item;)Z +MD: net/minecraft/world/phys/shapes/EntityCollisionContext$1/ (ZDLnet/minecraft/world/item/ItemStack;Ljava/util/function/Predicate;Lnet/minecraft/world/entity/Entity;)V net/minecraft/world/phys/shapes/EntityCollisionContext$1/ (ZDLnet/minecraft/world/item/ItemStack;Ljava/util/function/Predicate;Lnet/minecraft/world/entity/Entity;)V +MD: net/minecraft/world/phys/shapes/EntityCollisionContext$1/m_6513_ (Lnet/minecraft/world/phys/shapes/VoxelShape;Lnet/minecraft/core/BlockPos;Z)Z net/minecraft/world/phys/shapes/EntityCollisionContext$1/isAbove (Lnet/minecraft/world/phys/shapes/VoxelShape;Lnet/minecraft/core/BlockPos;Z)Z +MD: net/minecraft/world/phys/shapes/IdenticalMerger/ (Lit/unimi/dsi/fastutil/doubles/DoubleList;)V net/minecraft/world/phys/shapes/IdenticalMerger/ (Lit/unimi/dsi/fastutil/doubles/DoubleList;)V +MD: net/minecraft/world/phys/shapes/IdenticalMerger/m_6200_ (Lnet/minecraft/world/phys/shapes/IndexMerger$IndexConsumer;)Z net/minecraft/world/phys/shapes/IdenticalMerger/forMergedIndexes (Lnet/minecraft/world/phys/shapes/IndexMerger$IndexConsumer;)Z +MD: net/minecraft/world/phys/shapes/IdenticalMerger/m_6241_ ()Lit/unimi/dsi/fastutil/doubles/DoubleList; net/minecraft/world/phys/shapes/IdenticalMerger/getList ()Lit/unimi/dsi/fastutil/doubles/DoubleList; +MD: net/minecraft/world/phys/shapes/IdenticalMerger/size ()I net/minecraft/world/phys/shapes/IdenticalMerger/size ()I +MD: net/minecraft/world/phys/shapes/IndexMerger/m_6200_ (Lnet/minecraft/world/phys/shapes/IndexMerger$IndexConsumer;)Z net/minecraft/world/phys/shapes/IndexMerger/forMergedIndexes (Lnet/minecraft/world/phys/shapes/IndexMerger$IndexConsumer;)Z +MD: net/minecraft/world/phys/shapes/IndexMerger/m_6241_ ()Lit/unimi/dsi/fastutil/doubles/DoubleList; net/minecraft/world/phys/shapes/IndexMerger/getList ()Lit/unimi/dsi/fastutil/doubles/DoubleList; +MD: net/minecraft/world/phys/shapes/IndexMerger/size ()I net/minecraft/world/phys/shapes/IndexMerger/size ()I +MD: net/minecraft/world/phys/shapes/IndexMerger$IndexConsumer/m_82908_ (III)Z net/minecraft/world/phys/shapes/IndexMerger$IndexConsumer/merge (III)Z +MD: net/minecraft/world/phys/shapes/IndirectMerger/ ()V net/minecraft/world/phys/shapes/IndirectMerger/ ()V +MD: net/minecraft/world/phys/shapes/IndirectMerger/ (Lit/unimi/dsi/fastutil/doubles/DoubleList;Lit/unimi/dsi/fastutil/doubles/DoubleList;ZZ)V net/minecraft/world/phys/shapes/IndirectMerger/ (Lit/unimi/dsi/fastutil/doubles/DoubleList;Lit/unimi/dsi/fastutil/doubles/DoubleList;ZZ)V +MD: net/minecraft/world/phys/shapes/IndirectMerger/m_6200_ (Lnet/minecraft/world/phys/shapes/IndexMerger$IndexConsumer;)Z net/minecraft/world/phys/shapes/IndirectMerger/forMergedIndexes (Lnet/minecraft/world/phys/shapes/IndexMerger$IndexConsumer;)Z +MD: net/minecraft/world/phys/shapes/IndirectMerger/m_6241_ ()Lit/unimi/dsi/fastutil/doubles/DoubleList; net/minecraft/world/phys/shapes/IndirectMerger/getList ()Lit/unimi/dsi/fastutil/doubles/DoubleList; +MD: net/minecraft/world/phys/shapes/IndirectMerger/size ()I net/minecraft/world/phys/shapes/IndirectMerger/size ()I +MD: net/minecraft/world/phys/shapes/NonOverlappingMerger/ (Lit/unimi/dsi/fastutil/doubles/DoubleList;Lit/unimi/dsi/fastutil/doubles/DoubleList;Z)V net/minecraft/world/phys/shapes/NonOverlappingMerger/ (Lit/unimi/dsi/fastutil/doubles/DoubleList;Lit/unimi/dsi/fastutil/doubles/DoubleList;Z)V +MD: net/minecraft/world/phys/shapes/NonOverlappingMerger/getDouble (I)D net/minecraft/world/phys/shapes/NonOverlappingMerger/getDouble (I)D +MD: net/minecraft/world/phys/shapes/NonOverlappingMerger/m_6200_ (Lnet/minecraft/world/phys/shapes/IndexMerger$IndexConsumer;)Z net/minecraft/world/phys/shapes/NonOverlappingMerger/forMergedIndexes (Lnet/minecraft/world/phys/shapes/IndexMerger$IndexConsumer;)Z +MD: net/minecraft/world/phys/shapes/NonOverlappingMerger/m_6241_ ()Lit/unimi/dsi/fastutil/doubles/DoubleList; net/minecraft/world/phys/shapes/NonOverlappingMerger/getList ()Lit/unimi/dsi/fastutil/doubles/DoubleList; +MD: net/minecraft/world/phys/shapes/NonOverlappingMerger/m_83018_ (Lnet/minecraft/world/phys/shapes/IndexMerger$IndexConsumer;III)Z net/minecraft/world/phys/shapes/NonOverlappingMerger/lambda$forMergedIndexes$0 (Lnet/minecraft/world/phys/shapes/IndexMerger$IndexConsumer;III)Z +MD: net/minecraft/world/phys/shapes/NonOverlappingMerger/m_83023_ (Lnet/minecraft/world/phys/shapes/IndexMerger$IndexConsumer;)Z net/minecraft/world/phys/shapes/NonOverlappingMerger/forNonSwappedIndexes (Lnet/minecraft/world/phys/shapes/IndexMerger$IndexConsumer;)Z +MD: net/minecraft/world/phys/shapes/NonOverlappingMerger/size ()I net/minecraft/world/phys/shapes/NonOverlappingMerger/size ()I +MD: net/minecraft/world/phys/shapes/OffsetDoubleList/ (Lit/unimi/dsi/fastutil/doubles/DoubleList;D)V net/minecraft/world/phys/shapes/OffsetDoubleList/ (Lit/unimi/dsi/fastutil/doubles/DoubleList;D)V +MD: net/minecraft/world/phys/shapes/OffsetDoubleList/getDouble (I)D net/minecraft/world/phys/shapes/OffsetDoubleList/getDouble (I)D +MD: net/minecraft/world/phys/shapes/OffsetDoubleList/size ()I net/minecraft/world/phys/shapes/OffsetDoubleList/size ()I +MD: net/minecraft/world/phys/shapes/Shapes/ ()V net/minecraft/world/phys/shapes/Shapes/ ()V +MD: net/minecraft/world/phys/shapes/Shapes/ ()V net/minecraft/world/phys/shapes/Shapes/ ()V +MD: net/minecraft/world/phys/shapes/Shapes/m_166028_ (Lnet/minecraft/world/phys/shapes/BooleanOp;Lnet/minecraft/world/phys/shapes/DiscreteVoxelShape;IILnet/minecraft/world/phys/shapes/DiscreteVoxelShape;IIIII)Z net/minecraft/world/phys/shapes/Shapes/lambda$joinIsNotEmpty$1 (Lnet/minecraft/world/phys/shapes/BooleanOp;Lnet/minecraft/world/phys/shapes/DiscreteVoxelShape;IILnet/minecraft/world/phys/shapes/DiscreteVoxelShape;IIIII)Z +MD: net/minecraft/world/phys/shapes/Shapes/m_166039_ (Lnet/minecraft/world/phys/shapes/IndexMerger;Lnet/minecraft/world/phys/shapes/BooleanOp;Lnet/minecraft/world/phys/shapes/DiscreteVoxelShape;ILnet/minecraft/world/phys/shapes/DiscreteVoxelShape;IIII)Z net/minecraft/world/phys/shapes/Shapes/lambda$joinIsNotEmpty$2 (Lnet/minecraft/world/phys/shapes/IndexMerger;Lnet/minecraft/world/phys/shapes/BooleanOp;Lnet/minecraft/world/phys/shapes/DiscreteVoxelShape;ILnet/minecraft/world/phys/shapes/DiscreteVoxelShape;IIII)Z +MD: net/minecraft/world/phys/shapes/Shapes/m_166049_ (DDDDDD)Lnet/minecraft/world/phys/shapes/VoxelShape; net/minecraft/world/phys/shapes/Shapes/create (DDDDDD)Lnet/minecraft/world/phys/shapes/VoxelShape; +MD: net/minecraft/world/phys/shapes/Shapes/m_193135_ (Lnet/minecraft/core/Direction$Axis;Lnet/minecraft/world/phys/AABB;Ljava/lang/Iterable;D)D net/minecraft/world/phys/shapes/Shapes/collide (Lnet/minecraft/core/Direction$Axis;Lnet/minecraft/world/phys/AABB;Ljava/lang/Iterable;D)D +MD: net/minecraft/world/phys/shapes/Shapes/m_83040_ ()Lnet/minecraft/world/phys/shapes/VoxelShape; net/minecraft/world/phys/shapes/Shapes/empty ()Lnet/minecraft/world/phys/shapes/VoxelShape; +MD: net/minecraft/world/phys/shapes/Shapes/m_83041_ (DD)I net/minecraft/world/phys/shapes/Shapes/findBits (DD)I +MD: net/minecraft/world/phys/shapes/Shapes/m_83048_ (DDDDDD)Lnet/minecraft/world/phys/shapes/VoxelShape; net/minecraft/world/phys/shapes/Shapes/box (DDDDDD)Lnet/minecraft/world/phys/shapes/VoxelShape; +MD: net/minecraft/world/phys/shapes/Shapes/m_83055_ (II)J net/minecraft/world/phys/shapes/Shapes/lcm (II)J +MD: net/minecraft/world/phys/shapes/Shapes/m_83058_ (ILit/unimi/dsi/fastutil/doubles/DoubleList;Lit/unimi/dsi/fastutil/doubles/DoubleList;ZZ)Lnet/minecraft/world/phys/shapes/IndexMerger; net/minecraft/world/phys/shapes/Shapes/createIndexMerger (ILit/unimi/dsi/fastutil/doubles/DoubleList;Lit/unimi/dsi/fastutil/doubles/DoubleList;ZZ)Lnet/minecraft/world/phys/shapes/IndexMerger; +MD: net/minecraft/world/phys/shapes/Shapes/m_83064_ (Lnet/minecraft/world/phys/AABB;)Lnet/minecraft/world/phys/shapes/VoxelShape; net/minecraft/world/phys/shapes/Shapes/create (Lnet/minecraft/world/phys/AABB;)Lnet/minecraft/world/phys/shapes/VoxelShape; +MD: net/minecraft/world/phys/shapes/Shapes/m_83094_ (Lnet/minecraft/world/phys/shapes/IndexMerger;Lnet/minecraft/world/phys/shapes/IndexMerger;Lnet/minecraft/world/phys/shapes/BooleanOp;Lnet/minecraft/world/phys/shapes/DiscreteVoxelShape;Lnet/minecraft/world/phys/shapes/DiscreteVoxelShape;III)Z net/minecraft/world/phys/shapes/Shapes/lambda$joinIsNotEmpty$3 (Lnet/minecraft/world/phys/shapes/IndexMerger;Lnet/minecraft/world/phys/shapes/IndexMerger;Lnet/minecraft/world/phys/shapes/BooleanOp;Lnet/minecraft/world/phys/shapes/DiscreteVoxelShape;Lnet/minecraft/world/phys/shapes/DiscreteVoxelShape;III)Z +MD: net/minecraft/world/phys/shapes/Shapes/m_83103_ (Lnet/minecraft/world/phys/shapes/IndexMerger;Lnet/minecraft/world/phys/shapes/IndexMerger;Lnet/minecraft/world/phys/shapes/IndexMerger;Lnet/minecraft/world/phys/shapes/DiscreteVoxelShape;Lnet/minecraft/world/phys/shapes/DiscreteVoxelShape;Lnet/minecraft/world/phys/shapes/BooleanOp;)Z net/minecraft/world/phys/shapes/Shapes/joinIsNotEmpty (Lnet/minecraft/world/phys/shapes/IndexMerger;Lnet/minecraft/world/phys/shapes/IndexMerger;Lnet/minecraft/world/phys/shapes/IndexMerger;Lnet/minecraft/world/phys/shapes/DiscreteVoxelShape;Lnet/minecraft/world/phys/shapes/DiscreteVoxelShape;Lnet/minecraft/world/phys/shapes/BooleanOp;)Z +MD: net/minecraft/world/phys/shapes/Shapes/m_83110_ (Lnet/minecraft/world/phys/shapes/VoxelShape;Lnet/minecraft/world/phys/shapes/VoxelShape;)Lnet/minecraft/world/phys/shapes/VoxelShape; net/minecraft/world/phys/shapes/Shapes/or (Lnet/minecraft/world/phys/shapes/VoxelShape;Lnet/minecraft/world/phys/shapes/VoxelShape;)Lnet/minecraft/world/phys/shapes/VoxelShape; +MD: net/minecraft/world/phys/shapes/Shapes/m_83113_ (Lnet/minecraft/world/phys/shapes/VoxelShape;Lnet/minecraft/world/phys/shapes/VoxelShape;Lnet/minecraft/world/phys/shapes/BooleanOp;)Lnet/minecraft/world/phys/shapes/VoxelShape; net/minecraft/world/phys/shapes/Shapes/join (Lnet/minecraft/world/phys/shapes/VoxelShape;Lnet/minecraft/world/phys/shapes/VoxelShape;Lnet/minecraft/world/phys/shapes/BooleanOp;)Lnet/minecraft/world/phys/shapes/VoxelShape; +MD: net/minecraft/world/phys/shapes/Shapes/m_83117_ (Lnet/minecraft/world/phys/shapes/VoxelShape;Lnet/minecraft/world/phys/shapes/VoxelShape;Lnet/minecraft/core/Direction;)Z net/minecraft/world/phys/shapes/Shapes/blockOccudes (Lnet/minecraft/world/phys/shapes/VoxelShape;Lnet/minecraft/world/phys/shapes/VoxelShape;Lnet/minecraft/core/Direction;)Z +MD: net/minecraft/world/phys/shapes/Shapes/m_83121_ (Lnet/minecraft/world/phys/shapes/VoxelShape;Lnet/minecraft/core/Direction;)Lnet/minecraft/world/phys/shapes/VoxelShape; net/minecraft/world/phys/shapes/Shapes/getFaceShape (Lnet/minecraft/world/phys/shapes/VoxelShape;Lnet/minecraft/core/Direction;)Lnet/minecraft/world/phys/shapes/VoxelShape; +MD: net/minecraft/world/phys/shapes/Shapes/m_83124_ (Lnet/minecraft/world/phys/shapes/VoxelShape;[Lnet/minecraft/world/phys/shapes/VoxelShape;)Lnet/minecraft/world/phys/shapes/VoxelShape; net/minecraft/world/phys/shapes/Shapes/or (Lnet/minecraft/world/phys/shapes/VoxelShape;[Lnet/minecraft/world/phys/shapes/VoxelShape;)Lnet/minecraft/world/phys/shapes/VoxelShape; +MD: net/minecraft/world/phys/shapes/Shapes/m_83144_ ()Lnet/minecraft/world/phys/shapes/VoxelShape; net/minecraft/world/phys/shapes/Shapes/block ()Lnet/minecraft/world/phys/shapes/VoxelShape; +MD: net/minecraft/world/phys/shapes/Shapes/m_83145_ (Lnet/minecraft/world/phys/shapes/VoxelShape;Lnet/minecraft/world/phys/shapes/VoxelShape;)Z net/minecraft/world/phys/shapes/Shapes/faceShapeOccludes (Lnet/minecraft/world/phys/shapes/VoxelShape;Lnet/minecraft/world/phys/shapes/VoxelShape;)Z +MD: net/minecraft/world/phys/shapes/Shapes/m_83148_ (Lnet/minecraft/world/phys/shapes/VoxelShape;Lnet/minecraft/world/phys/shapes/VoxelShape;Lnet/minecraft/world/phys/shapes/BooleanOp;)Lnet/minecraft/world/phys/shapes/VoxelShape; net/minecraft/world/phys/shapes/Shapes/joinUnoptimized (Lnet/minecraft/world/phys/shapes/VoxelShape;Lnet/minecraft/world/phys/shapes/VoxelShape;Lnet/minecraft/world/phys/shapes/BooleanOp;)Lnet/minecraft/world/phys/shapes/VoxelShape; +MD: net/minecraft/world/phys/shapes/Shapes/m_83152_ (Lnet/minecraft/world/phys/shapes/VoxelShape;Lnet/minecraft/world/phys/shapes/VoxelShape;Lnet/minecraft/core/Direction;)Z net/minecraft/world/phys/shapes/Shapes/mergedFaceOccludes (Lnet/minecraft/world/phys/shapes/VoxelShape;Lnet/minecraft/world/phys/shapes/VoxelShape;Lnet/minecraft/core/Direction;)Z +MD: net/minecraft/world/phys/shapes/Shapes/m_83156_ ()Lnet/minecraft/world/phys/shapes/CubeVoxelShape; net/minecraft/world/phys/shapes/Shapes/lambda$static$0 ()Lnet/minecraft/world/phys/shapes/CubeVoxelShape; +MD: net/minecraft/world/phys/shapes/Shapes/m_83157_ (Lnet/minecraft/world/phys/shapes/VoxelShape;Lnet/minecraft/world/phys/shapes/VoxelShape;Lnet/minecraft/world/phys/shapes/BooleanOp;)Z net/minecraft/world/phys/shapes/Shapes/joinIsNotEmpty (Lnet/minecraft/world/phys/shapes/VoxelShape;Lnet/minecraft/world/phys/shapes/VoxelShape;Lnet/minecraft/world/phys/shapes/BooleanOp;)Z +MD: net/minecraft/world/phys/shapes/Shapes$DoubleLineConsumer/m_83161_ (DDDDDD)V net/minecraft/world/phys/shapes/Shapes$DoubleLineConsumer/consume (DDDDDD)V +MD: net/minecraft/world/phys/shapes/SliceShape/ ()V net/minecraft/world/phys/shapes/SliceShape/ ()V +MD: net/minecraft/world/phys/shapes/SliceShape/ (Lnet/minecraft/world/phys/shapes/VoxelShape;Lnet/minecraft/core/Direction$Axis;I)V net/minecraft/world/phys/shapes/SliceShape/ (Lnet/minecraft/world/phys/shapes/VoxelShape;Lnet/minecraft/core/Direction$Axis;I)V +MD: net/minecraft/world/phys/shapes/SliceShape/m_7700_ (Lnet/minecraft/core/Direction$Axis;)Lit/unimi/dsi/fastutil/doubles/DoubleList; net/minecraft/world/phys/shapes/SliceShape/getCoords (Lnet/minecraft/core/Direction$Axis;)Lit/unimi/dsi/fastutil/doubles/DoubleList; +MD: net/minecraft/world/phys/shapes/SliceShape/m_83176_ (Lnet/minecraft/world/phys/shapes/DiscreteVoxelShape;Lnet/minecraft/core/Direction$Axis;I)Lnet/minecraft/world/phys/shapes/DiscreteVoxelShape; net/minecraft/world/phys/shapes/SliceShape/makeSlice (Lnet/minecraft/world/phys/shapes/DiscreteVoxelShape;Lnet/minecraft/core/Direction$Axis;I)Lnet/minecraft/world/phys/shapes/DiscreteVoxelShape; +MD: net/minecraft/world/phys/shapes/SubShape/ (Lnet/minecraft/world/phys/shapes/DiscreteVoxelShape;IIIIII)V net/minecraft/world/phys/shapes/SubShape/ (Lnet/minecraft/world/phys/shapes/DiscreteVoxelShape;IIIIII)V +MD: net/minecraft/world/phys/shapes/SubShape/m_142703_ (III)V net/minecraft/world/phys/shapes/SubShape/fill (III)V +MD: net/minecraft/world/phys/shapes/SubShape/m_166056_ (Lnet/minecraft/core/Direction$Axis;I)I net/minecraft/world/phys/shapes/SubShape/clampToShape (Lnet/minecraft/core/Direction$Axis;I)I +MD: net/minecraft/world/phys/shapes/SubShape/m_6536_ (Lnet/minecraft/core/Direction$Axis;)I net/minecraft/world/phys/shapes/SubShape/lastFull (Lnet/minecraft/core/Direction$Axis;)I +MD: net/minecraft/world/phys/shapes/SubShape/m_6538_ (Lnet/minecraft/core/Direction$Axis;)I net/minecraft/world/phys/shapes/SubShape/firstFull (Lnet/minecraft/core/Direction$Axis;)I +MD: net/minecraft/world/phys/shapes/SubShape/m_6696_ (III)Z net/minecraft/world/phys/shapes/SubShape/isFull (III)Z +MD: net/minecraft/world/phys/shapes/VoxelShape/ (Lnet/minecraft/world/phys/shapes/DiscreteVoxelShape;)V net/minecraft/world/phys/shapes/VoxelShape/ (Lnet/minecraft/world/phys/shapes/DiscreteVoxelShape;)V +MD: net/minecraft/world/phys/shapes/VoxelShape/m_166063_ (DLnet/minecraft/core/Direction$Axis;I)Z net/minecraft/world/phys/shapes/VoxelShape/lambda$findIndex$4 (DLnet/minecraft/core/Direction$Axis;I)Z +MD: net/minecraft/world/phys/shapes/VoxelShape/m_166067_ (Lnet/minecraft/world/phys/Vec3;)Ljava/util/Optional; net/minecraft/world/phys/shapes/VoxelShape/closestPointTo (Lnet/minecraft/world/phys/Vec3;)Ljava/util/Optional; +MD: net/minecraft/world/phys/shapes/VoxelShape/m_166069_ (Lnet/minecraft/world/phys/Vec3;[Lnet/minecraft/world/phys/Vec3;DDDDDD)V net/minecraft/world/phys/shapes/VoxelShape/lambda$closestPointTo$5 (Lnet/minecraft/world/phys/Vec3;[Lnet/minecraft/world/phys/Vec3;DDDDDD)V +MD: net/minecraft/world/phys/shapes/VoxelShape/m_166078_ (Lnet/minecraft/core/Direction$Axis;DD)D net/minecraft/world/phys/shapes/VoxelShape/min (Lnet/minecraft/core/Direction$Axis;DD)D +MD: net/minecraft/world/phys/shapes/VoxelShape/m_6595_ (Lnet/minecraft/core/Direction$Axis;D)I net/minecraft/world/phys/shapes/VoxelShape/findIndex (Lnet/minecraft/core/Direction$Axis;D)I +MD: net/minecraft/world/phys/shapes/VoxelShape/m_7700_ (Lnet/minecraft/core/Direction$Axis;)Lit/unimi/dsi/fastutil/doubles/DoubleList; net/minecraft/world/phys/shapes/VoxelShape/getCoords (Lnet/minecraft/core/Direction$Axis;)Lit/unimi/dsi/fastutil/doubles/DoubleList; +MD: net/minecraft/world/phys/shapes/VoxelShape/m_83215_ ()Lnet/minecraft/world/phys/AABB; net/minecraft/world/phys/shapes/VoxelShape/bounds ()Lnet/minecraft/world/phys/AABB; +MD: net/minecraft/world/phys/shapes/VoxelShape/m_83216_ (DDD)Lnet/minecraft/world/phys/shapes/VoxelShape; net/minecraft/world/phys/shapes/VoxelShape/move (DDD)Lnet/minecraft/world/phys/shapes/VoxelShape; +MD: net/minecraft/world/phys/shapes/VoxelShape/m_83220_ (Lnet/minecraft/world/phys/Vec3;Lnet/minecraft/world/phys/Vec3;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/phys/BlockHitResult; net/minecraft/world/phys/shapes/VoxelShape/clip (Lnet/minecraft/world/phys/Vec3;Lnet/minecraft/world/phys/Vec3;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/phys/BlockHitResult; +MD: net/minecraft/world/phys/shapes/VoxelShape/m_83224_ (Lnet/minecraft/world/phys/shapes/Shapes$DoubleLineConsumer;)V net/minecraft/world/phys/shapes/VoxelShape/forAllEdges (Lnet/minecraft/world/phys/shapes/Shapes$DoubleLineConsumer;)V +MD: net/minecraft/world/phys/shapes/VoxelShape/m_83226_ (Lnet/minecraft/world/phys/shapes/Shapes$DoubleLineConsumer;IIIIII)V net/minecraft/world/phys/shapes/VoxelShape/lambda$forAllEdges$1 (Lnet/minecraft/world/phys/shapes/Shapes$DoubleLineConsumer;IIIIII)V +MD: net/minecraft/world/phys/shapes/VoxelShape/m_83234_ (Lnet/minecraft/world/phys/shapes/Shapes$DoubleLineConsumer;Lit/unimi/dsi/fastutil/doubles/DoubleList;Lit/unimi/dsi/fastutil/doubles/DoubleList;Lit/unimi/dsi/fastutil/doubles/DoubleList;IIIIII)V net/minecraft/world/phys/shapes/VoxelShape/lambda$forAllBoxes$2 (Lnet/minecraft/world/phys/shapes/Shapes$DoubleLineConsumer;Lit/unimi/dsi/fastutil/doubles/DoubleList;Lit/unimi/dsi/fastutil/doubles/DoubleList;Lit/unimi/dsi/fastutil/doubles/DoubleList;IIIIII)V +MD: net/minecraft/world/phys/shapes/VoxelShape/m_83245_ (Lnet/minecraft/core/AxisCycle;Lnet/minecraft/world/phys/AABB;D)D net/minecraft/world/phys/shapes/VoxelShape/collideX (Lnet/minecraft/core/AxisCycle;Lnet/minecraft/world/phys/AABB;D)D +MD: net/minecraft/world/phys/shapes/VoxelShape/m_83256_ (Lnet/minecraft/core/Direction$Axis;I)D net/minecraft/world/phys/shapes/VoxelShape/get (Lnet/minecraft/core/Direction$Axis;I)D +MD: net/minecraft/world/phys/shapes/VoxelShape/m_83259_ (Lnet/minecraft/core/Direction$Axis;Lnet/minecraft/world/phys/AABB;D)D net/minecraft/world/phys/shapes/VoxelShape/collide (Lnet/minecraft/core/Direction$Axis;Lnet/minecraft/world/phys/AABB;D)D +MD: net/minecraft/world/phys/shapes/VoxelShape/m_83263_ (Lnet/minecraft/core/Direction;)Lnet/minecraft/world/phys/shapes/VoxelShape; net/minecraft/world/phys/shapes/VoxelShape/getFaceShape (Lnet/minecraft/core/Direction;)Lnet/minecraft/world/phys/shapes/VoxelShape; +MD: net/minecraft/world/phys/shapes/VoxelShape/m_83265_ (Ljava/util/List;DDDDDD)V net/minecraft/world/phys/shapes/VoxelShape/lambda$toAabbs$3 (Ljava/util/List;DDDDDD)V +MD: net/minecraft/world/phys/shapes/VoxelShape/m_83273_ ([Lnet/minecraft/world/phys/shapes/VoxelShape;DDDDDD)V net/minecraft/world/phys/shapes/VoxelShape/lambda$optimize$0 ([Lnet/minecraft/world/phys/shapes/VoxelShape;DDDDDD)V +MD: net/minecraft/world/phys/shapes/VoxelShape/m_83281_ ()Z net/minecraft/world/phys/shapes/VoxelShape/isEmpty ()Z +MD: net/minecraft/world/phys/shapes/VoxelShape/m_83286_ (Lnet/minecraft/world/phys/shapes/Shapes$DoubleLineConsumer;)V net/minecraft/world/phys/shapes/VoxelShape/forAllBoxes (Lnet/minecraft/world/phys/shapes/Shapes$DoubleLineConsumer;)V +MD: net/minecraft/world/phys/shapes/VoxelShape/m_83288_ (Lnet/minecraft/core/Direction$Axis;)D net/minecraft/world/phys/shapes/VoxelShape/min (Lnet/minecraft/core/Direction$Axis;)D +MD: net/minecraft/world/phys/shapes/VoxelShape/m_83290_ (Lnet/minecraft/core/Direction$Axis;DD)D net/minecraft/world/phys/shapes/VoxelShape/max (Lnet/minecraft/core/Direction$Axis;DD)D +MD: net/minecraft/world/phys/shapes/VoxelShape/m_83294_ (Lnet/minecraft/core/Direction;)Lnet/minecraft/world/phys/shapes/VoxelShape; net/minecraft/world/phys/shapes/VoxelShape/calculateFace (Lnet/minecraft/core/Direction;)Lnet/minecraft/world/phys/shapes/VoxelShape; +MD: net/minecraft/world/phys/shapes/VoxelShape/m_83296_ ()Lnet/minecraft/world/phys/shapes/VoxelShape; net/minecraft/world/phys/shapes/VoxelShape/optimize ()Lnet/minecraft/world/phys/shapes/VoxelShape; +MD: net/minecraft/world/phys/shapes/VoxelShape/m_83297_ (Lnet/minecraft/core/Direction$Axis;)D net/minecraft/world/phys/shapes/VoxelShape/max (Lnet/minecraft/core/Direction$Axis;)D +MD: net/minecraft/world/phys/shapes/VoxelShape/m_83299_ ()Ljava/util/List; net/minecraft/world/phys/shapes/VoxelShape/toAabbs ()Ljava/util/List; +MD: net/minecraft/world/phys/shapes/VoxelShape/toString ()Ljava/lang/String; net/minecraft/world/phys/shapes/VoxelShape/toString ()Ljava/lang/String; +MD: net/minecraft/world/scores/Objective/ (Lnet/minecraft/world/scores/Scoreboard;Ljava/lang/String;Lnet/minecraft/world/scores/criteria/ObjectiveCriteria;Lnet/minecraft/network/chat/Component;Lnet/minecraft/world/scores/criteria/ObjectiveCriteria$RenderType;)V net/minecraft/world/scores/Objective/ (Lnet/minecraft/world/scores/Scoreboard;Ljava/lang/String;Lnet/minecraft/world/scores/criteria/ObjectiveCriteria;Lnet/minecraft/network/chat/Component;Lnet/minecraft/world/scores/criteria/ObjectiveCriteria$RenderType;)V +MD: net/minecraft/world/scores/Objective/m_83313_ ()Lnet/minecraft/world/scores/Scoreboard; net/minecraft/world/scores/Objective/getScoreboard ()Lnet/minecraft/world/scores/Scoreboard; +MD: net/minecraft/world/scores/Objective/m_83314_ (Lnet/minecraft/world/scores/criteria/ObjectiveCriteria$RenderType;)V net/minecraft/world/scores/Objective/setRenderType (Lnet/minecraft/world/scores/criteria/ObjectiveCriteria$RenderType;)V +MD: net/minecraft/world/scores/Objective/m_83316_ (Lnet/minecraft/network/chat/Component;)V net/minecraft/world/scores/Objective/setDisplayName (Lnet/minecraft/network/chat/Component;)V +MD: net/minecraft/world/scores/Objective/m_83318_ (Lnet/minecraft/network/chat/Style;)Lnet/minecraft/network/chat/Style; net/minecraft/world/scores/Objective/lambda$createFormattedDisplayName$0 (Lnet/minecraft/network/chat/Style;)Lnet/minecraft/network/chat/Style; +MD: net/minecraft/world/scores/Objective/m_83320_ ()Ljava/lang/String; net/minecraft/world/scores/Objective/getName ()Ljava/lang/String; +MD: net/minecraft/world/scores/Objective/m_83321_ ()Lnet/minecraft/world/scores/criteria/ObjectiveCriteria; net/minecraft/world/scores/Objective/getCriteria ()Lnet/minecraft/world/scores/criteria/ObjectiveCriteria; +MD: net/minecraft/world/scores/Objective/m_83322_ ()Lnet/minecraft/network/chat/Component; net/minecraft/world/scores/Objective/getDisplayName ()Lnet/minecraft/network/chat/Component; +MD: net/minecraft/world/scores/Objective/m_83323_ ()Lnet/minecraft/network/chat/Component; net/minecraft/world/scores/Objective/getFormattedDisplayName ()Lnet/minecraft/network/chat/Component; +MD: net/minecraft/world/scores/Objective/m_83324_ ()Lnet/minecraft/world/scores/criteria/ObjectiveCriteria$RenderType; net/minecraft/world/scores/Objective/getRenderType ()Lnet/minecraft/world/scores/criteria/ObjectiveCriteria$RenderType; +MD: net/minecraft/world/scores/Objective/m_83325_ ()Lnet/minecraft/network/chat/Component; net/minecraft/world/scores/Objective/createFormattedDisplayName ()Lnet/minecraft/network/chat/Component; +MD: net/minecraft/world/scores/PlayerTeam/ (Lnet/minecraft/world/scores/Scoreboard;Ljava/lang/String;)V net/minecraft/world/scores/PlayerTeam/ (Lnet/minecraft/world/scores/Scoreboard;Ljava/lang/String;)V +MD: net/minecraft/world/scores/PlayerTeam/m_166086_ ()Lnet/minecraft/world/scores/Scoreboard; net/minecraft/world/scores/PlayerTeam/getScoreboard ()Lnet/minecraft/world/scores/Scoreboard; +MD: net/minecraft/world/scores/PlayerTeam/m_5758_ ()Ljava/lang/String; net/minecraft/world/scores/PlayerTeam/getName ()Ljava/lang/String; +MD: net/minecraft/world/scores/PlayerTeam/m_6259_ ()Z net/minecraft/world/scores/PlayerTeam/canSeeFriendlyInvisibles ()Z +MD: net/minecraft/world/scores/PlayerTeam/m_6260_ ()Z net/minecraft/world/scores/PlayerTeam/isAllowFriendlyFire ()Z +MD: net/minecraft/world/scores/PlayerTeam/m_6809_ ()Ljava/util/Collection; net/minecraft/world/scores/PlayerTeam/getPlayers ()Ljava/util/Collection; +MD: net/minecraft/world/scores/PlayerTeam/m_6870_ (Lnet/minecraft/network/chat/Component;)Lnet/minecraft/network/chat/MutableComponent; net/minecraft/world/scores/PlayerTeam/getFormattedName (Lnet/minecraft/network/chat/Component;)Lnet/minecraft/network/chat/MutableComponent; +MD: net/minecraft/world/scores/PlayerTeam/m_7156_ ()Lnet/minecraft/world/scores/Team$CollisionRule; net/minecraft/world/scores/PlayerTeam/getCollisionRule ()Lnet/minecraft/world/scores/Team$CollisionRule; +MD: net/minecraft/world/scores/PlayerTeam/m_7414_ ()Lnet/minecraft/ChatFormatting; net/minecraft/world/scores/PlayerTeam/getColor ()Lnet/minecraft/ChatFormatting; +MD: net/minecraft/world/scores/PlayerTeam/m_7468_ ()Lnet/minecraft/world/scores/Team$Visibility; net/minecraft/world/scores/PlayerTeam/getDeathMessageVisibility ()Lnet/minecraft/world/scores/Team$Visibility; +MD: net/minecraft/world/scores/PlayerTeam/m_7470_ ()Lnet/minecraft/world/scores/Team$Visibility; net/minecraft/world/scores/PlayerTeam/getNameTagVisibility ()Lnet/minecraft/world/scores/Team$Visibility; +MD: net/minecraft/world/scores/PlayerTeam/m_83342_ (I)V net/minecraft/world/scores/PlayerTeam/unpackOptions (I)V +MD: net/minecraft/world/scores/PlayerTeam/m_83344_ (Lnet/minecraft/world/scores/Team$CollisionRule;)V net/minecraft/world/scores/PlayerTeam/setCollisionRule (Lnet/minecraft/world/scores/Team$CollisionRule;)V +MD: net/minecraft/world/scores/PlayerTeam/m_83346_ (Lnet/minecraft/world/scores/Team$Visibility;)V net/minecraft/world/scores/PlayerTeam/setNameTagVisibility (Lnet/minecraft/world/scores/Team$Visibility;)V +MD: net/minecraft/world/scores/PlayerTeam/m_83348_ (Lnet/minecraft/world/scores/Team;Lnet/minecraft/network/chat/Component;)Lnet/minecraft/network/chat/MutableComponent; net/minecraft/world/scores/PlayerTeam/formatNameForTeam (Lnet/minecraft/world/scores/Team;Lnet/minecraft/network/chat/Component;)Lnet/minecraft/network/chat/MutableComponent; +MD: net/minecraft/world/scores/PlayerTeam/m_83351_ (Lnet/minecraft/ChatFormatting;)V net/minecraft/world/scores/PlayerTeam/setColor (Lnet/minecraft/ChatFormatting;)V +MD: net/minecraft/world/scores/PlayerTeam/m_83353_ (Lnet/minecraft/network/chat/Component;)V net/minecraft/world/scores/PlayerTeam/setDisplayName (Lnet/minecraft/network/chat/Component;)V +MD: net/minecraft/world/scores/PlayerTeam/m_83355_ (Z)V net/minecraft/world/scores/PlayerTeam/setAllowFriendlyFire (Z)V +MD: net/minecraft/world/scores/PlayerTeam/m_83358_ (Lnet/minecraft/world/scores/Team$Visibility;)V net/minecraft/world/scores/PlayerTeam/setDeathMessageVisibility (Lnet/minecraft/world/scores/Team$Visibility;)V +MD: net/minecraft/world/scores/PlayerTeam/m_83360_ (Lnet/minecraft/network/chat/Component;)V net/minecraft/world/scores/PlayerTeam/setPlayerPrefix (Lnet/minecraft/network/chat/Component;)V +MD: net/minecraft/world/scores/PlayerTeam/m_83362_ (Z)V net/minecraft/world/scores/PlayerTeam/setSeeFriendlyInvisibles (Z)V +MD: net/minecraft/world/scores/PlayerTeam/m_83364_ ()Lnet/minecraft/network/chat/Component; net/minecraft/world/scores/PlayerTeam/getDisplayName ()Lnet/minecraft/network/chat/Component; +MD: net/minecraft/world/scores/PlayerTeam/m_83365_ (Lnet/minecraft/network/chat/Component;)V net/minecraft/world/scores/PlayerTeam/setPlayerSuffix (Lnet/minecraft/network/chat/Component;)V +MD: net/minecraft/world/scores/PlayerTeam/m_83367_ ()Lnet/minecraft/network/chat/MutableComponent; net/minecraft/world/scores/PlayerTeam/getFormattedDisplayName ()Lnet/minecraft/network/chat/MutableComponent; +MD: net/minecraft/world/scores/PlayerTeam/m_83370_ ()Lnet/minecraft/network/chat/Component; net/minecraft/world/scores/PlayerTeam/getPlayerPrefix ()Lnet/minecraft/network/chat/Component; +MD: net/minecraft/world/scores/PlayerTeam/m_83371_ ()Lnet/minecraft/network/chat/Component; net/minecraft/world/scores/PlayerTeam/getPlayerSuffix ()Lnet/minecraft/network/chat/Component; +MD: net/minecraft/world/scores/PlayerTeam/m_83378_ ()I net/minecraft/world/scores/PlayerTeam/packOptions ()I +MD: net/minecraft/world/scores/Score/ ()V net/minecraft/world/scores/Score/ ()V +MD: net/minecraft/world/scores/Score/ (Lnet/minecraft/world/scores/Scoreboard;Lnet/minecraft/world/scores/Objective;Ljava/lang/String;)V net/minecraft/world/scores/Score/ (Lnet/minecraft/world/scores/Scoreboard;Lnet/minecraft/world/scores/Objective;Ljava/lang/String;)V +MD: net/minecraft/world/scores/Score/m_83392_ ()V net/minecraft/world/scores/Score/increment ()V +MD: net/minecraft/world/scores/Score/m_83393_ (I)V net/minecraft/world/scores/Score/add (I)V +MD: net/minecraft/world/scores/Score/m_83395_ (Lnet/minecraft/world/scores/Score;Lnet/minecraft/world/scores/Score;)I net/minecraft/world/scores/Score/lambda$static$0 (Lnet/minecraft/world/scores/Score;Lnet/minecraft/world/scores/Score;)I +MD: net/minecraft/world/scores/Score/m_83398_ (Z)V net/minecraft/world/scores/Score/setLocked (Z)V +MD: net/minecraft/world/scores/Score/m_83400_ ()I net/minecraft/world/scores/Score/getScore ()I +MD: net/minecraft/world/scores/Score/m_83401_ ()V net/minecraft/world/scores/Score/reset ()V +MD: net/minecraft/world/scores/Score/m_83402_ (I)V net/minecraft/world/scores/Score/setScore (I)V +MD: net/minecraft/world/scores/Score/m_83404_ ()Lnet/minecraft/world/scores/Objective; net/minecraft/world/scores/Score/getObjective ()Lnet/minecraft/world/scores/Objective; +MD: net/minecraft/world/scores/Score/m_83405_ ()Ljava/lang/String; net/minecraft/world/scores/Score/getOwner ()Ljava/lang/String; +MD: net/minecraft/world/scores/Score/m_83406_ ()Lnet/minecraft/world/scores/Scoreboard; net/minecraft/world/scores/Score/getScoreboard ()Lnet/minecraft/world/scores/Scoreboard; +MD: net/minecraft/world/scores/Score/m_83407_ ()Z net/minecraft/world/scores/Score/isLocked ()Z +MD: net/minecraft/world/scores/Scoreboard/ ()V net/minecraft/world/scores/Scoreboard/ ()V +MD: net/minecraft/world/scores/Scoreboard/ ()V net/minecraft/world/scores/Scoreboard/ ()V +MD: net/minecraft/world/scores/Scoreboard/m_166094_ (Lnet/minecraft/nbt/ListTag;Lnet/minecraft/world/scores/Score;)V net/minecraft/world/scores/Scoreboard/lambda$savePlayerScores$5 (Lnet/minecraft/nbt/ListTag;Lnet/minecraft/world/scores/Score;)V +MD: net/minecraft/world/scores/Scoreboard/m_166097_ (Lnet/minecraft/world/scores/Score;)Z net/minecraft/world/scores/Scoreboard/lambda$savePlayerScores$4 (Lnet/minecraft/world/scores/Score;)Z +MD: net/minecraft/world/scores/Scoreboard/m_5734_ (Lnet/minecraft/world/scores/Score;)V net/minecraft/world/scores/Scoreboard/onScoreChanged (Lnet/minecraft/world/scores/Score;)V +MD: net/minecraft/world/scores/Scoreboard/m_5973_ (Ljava/lang/String;Lnet/minecraft/world/scores/Objective;)V net/minecraft/world/scores/Scoreboard/onPlayerScoreRemoved (Ljava/lang/String;Lnet/minecraft/world/scores/Objective;)V +MD: net/minecraft/world/scores/Scoreboard/m_6519_ (Ljava/lang/String;Lnet/minecraft/world/scores/PlayerTeam;)V net/minecraft/world/scores/Scoreboard/removePlayerFromTeam (Ljava/lang/String;Lnet/minecraft/world/scores/PlayerTeam;)V +MD: net/minecraft/world/scores/Scoreboard/m_6546_ (Ljava/lang/String;Lnet/minecraft/world/scores/PlayerTeam;)Z net/minecraft/world/scores/Scoreboard/addPlayerToTeam (Ljava/lang/String;Lnet/minecraft/world/scores/PlayerTeam;)Z +MD: net/minecraft/world/scores/Scoreboard/m_7091_ (Lnet/minecraft/world/scores/Objective;)V net/minecraft/world/scores/Scoreboard/onObjectiveChanged (Lnet/minecraft/world/scores/Objective;)V +MD: net/minecraft/world/scores/Scoreboard/m_7092_ (Lnet/minecraft/world/scores/Objective;)V net/minecraft/world/scores/Scoreboard/onObjectiveAdded (Lnet/minecraft/world/scores/Objective;)V +MD: net/minecraft/world/scores/Scoreboard/m_7093_ (Lnet/minecraft/world/scores/Objective;)V net/minecraft/world/scores/Scoreboard/onObjectiveRemoved (Lnet/minecraft/world/scores/Objective;)V +MD: net/minecraft/world/scores/Scoreboard/m_7136_ (ILnet/minecraft/world/scores/Objective;)V net/minecraft/world/scores/Scoreboard/setDisplayObjective (ILnet/minecraft/world/scores/Objective;)V +MD: net/minecraft/world/scores/Scoreboard/m_7182_ (Ljava/lang/String;)V net/minecraft/world/scores/Scoreboard/onPlayerRemoved (Ljava/lang/String;)V +MD: net/minecraft/world/scores/Scoreboard/m_7644_ (Lnet/minecraft/world/scores/PlayerTeam;)V net/minecraft/world/scores/Scoreboard/onTeamRemoved (Lnet/minecraft/world/scores/PlayerTeam;)V +MD: net/minecraft/world/scores/Scoreboard/m_7645_ (Lnet/minecraft/world/scores/PlayerTeam;)V net/minecraft/world/scores/Scoreboard/onTeamChanged (Lnet/minecraft/world/scores/PlayerTeam;)V +MD: net/minecraft/world/scores/Scoreboard/m_7650_ (Lnet/minecraft/world/scores/PlayerTeam;)V net/minecraft/world/scores/Scoreboard/onTeamAdded (Lnet/minecraft/world/scores/PlayerTeam;)V +MD: net/minecraft/world/scores/Scoreboard/m_83416_ (I)Lnet/minecraft/world/scores/Objective; net/minecraft/world/scores/Scoreboard/getDisplayObjective (I)Lnet/minecraft/world/scores/Objective; +MD: net/minecraft/world/scores/Scoreboard/m_83420_ (Lnet/minecraft/world/entity/Entity;)V net/minecraft/world/scores/Scoreboard/entityRemoved (Lnet/minecraft/world/entity/Entity;)V +MD: net/minecraft/world/scores/Scoreboard/m_83425_ (Lnet/minecraft/world/scores/criteria/ObjectiveCriteria;)Ljava/util/List; net/minecraft/world/scores/Scoreboard/lambda$addObjective$0 (Lnet/minecraft/world/scores/criteria/ObjectiveCriteria;)Ljava/util/List; +MD: net/minecraft/world/scores/Scoreboard/m_83427_ (Lnet/minecraft/world/scores/criteria/ObjectiveCriteria;Ljava/lang/String;Ljava/util/function/Consumer;)V net/minecraft/world/scores/Scoreboard/forAllObjectives (Lnet/minecraft/world/scores/criteria/ObjectiveCriteria;Ljava/lang/String;Ljava/util/function/Consumer;)V +MD: net/minecraft/world/scores/Scoreboard/m_83436_ (Ljava/lang/String;Lnet/minecraft/world/scores/criteria/ObjectiveCriteria;Lnet/minecraft/network/chat/Component;Lnet/minecraft/world/scores/criteria/ObjectiveCriteria$RenderType;)Lnet/minecraft/world/scores/Objective; net/minecraft/world/scores/Scoreboard/addObjective (Ljava/lang/String;Lnet/minecraft/world/scores/criteria/ObjectiveCriteria;Lnet/minecraft/network/chat/Component;Lnet/minecraft/world/scores/criteria/ObjectiveCriteria$RenderType;)Lnet/minecraft/world/scores/Objective; +MD: net/minecraft/world/scores/Scoreboard/m_83441_ (Ljava/util/function/Consumer;Ljava/lang/String;Lnet/minecraft/world/scores/Objective;)V net/minecraft/world/scores/Scoreboard/lambda$forAllObjectives$1 (Ljava/util/function/Consumer;Ljava/lang/String;Lnet/minecraft/world/scores/Objective;)V +MD: net/minecraft/world/scores/Scoreboard/m_83445_ (Lnet/minecraft/nbt/ListTag;)V net/minecraft/world/scores/Scoreboard/loadPlayerScores (Lnet/minecraft/nbt/ListTag;)V +MD: net/minecraft/world/scores/Scoreboard/m_83450_ (Lnet/minecraft/nbt/ListTag;Ljava/util/Collection;)V net/minecraft/world/scores/Scoreboard/lambda$savePlayerScores$6 (Lnet/minecraft/nbt/ListTag;Ljava/util/Collection;)V +MD: net/minecraft/world/scores/Scoreboard/m_83453_ (I)Ljava/lang/String; net/minecraft/world/scores/Scoreboard/getDisplaySlotName (I)Ljava/lang/String; +MD: net/minecraft/world/scores/Scoreboard/m_83459_ (Ljava/lang/String;)Z net/minecraft/world/scores/Scoreboard/hasObjective (Ljava/lang/String;)Z +MD: net/minecraft/world/scores/Scoreboard/m_83461_ (Ljava/lang/String;Lnet/minecraft/world/scores/Objective;)Z net/minecraft/world/scores/Scoreboard/hasPlayerScore (Ljava/lang/String;Lnet/minecraft/world/scores/Objective;)Z +MD: net/minecraft/world/scores/Scoreboard/m_83466_ ()Ljava/util/Collection; net/minecraft/world/scores/Scoreboard/getObjectives ()Ljava/util/Collection; +MD: net/minecraft/world/scores/Scoreboard/m_83469_ (Ljava/lang/String;)Lnet/minecraft/world/scores/Objective; net/minecraft/world/scores/Scoreboard/getOrCreateObjective (Ljava/lang/String;)Lnet/minecraft/world/scores/Objective; +MD: net/minecraft/world/scores/Scoreboard/m_83471_ (Ljava/lang/String;Lnet/minecraft/world/scores/Objective;)Lnet/minecraft/world/scores/Score; net/minecraft/world/scores/Scoreboard/getOrCreatePlayerScore (Ljava/lang/String;Lnet/minecraft/world/scores/Objective;)Lnet/minecraft/world/scores/Score; +MD: net/minecraft/world/scores/Scoreboard/m_83474_ ()Ljava/util/Collection; net/minecraft/world/scores/Scoreboard/getObjectiveNames ()Ljava/util/Collection; +MD: net/minecraft/world/scores/Scoreboard/m_83475_ (Lnet/minecraft/world/scores/PlayerTeam;)V net/minecraft/world/scores/Scoreboard/removePlayerTeam (Lnet/minecraft/world/scores/PlayerTeam;)V +MD: net/minecraft/world/scores/Scoreboard/m_83477_ (Ljava/lang/String;)Lnet/minecraft/world/scores/Objective; net/minecraft/world/scores/Scoreboard/getObjective (Ljava/lang/String;)Lnet/minecraft/world/scores/Objective; +MD: net/minecraft/world/scores/Scoreboard/m_83479_ (Ljava/lang/String;Lnet/minecraft/world/scores/Objective;)V net/minecraft/world/scores/Scoreboard/resetPlayerScore (Ljava/lang/String;Lnet/minecraft/world/scores/Objective;)V +MD: net/minecraft/world/scores/Scoreboard/m_83482_ ()Ljava/util/Collection; net/minecraft/world/scores/Scoreboard/getTrackedPlayers ()Ljava/util/Collection; +MD: net/minecraft/world/scores/Scoreboard/m_83483_ (Ljava/lang/String;)Ljava/util/Map; net/minecraft/world/scores/Scoreboard/getPlayerScores (Ljava/lang/String;)Ljava/util/Map; +MD: net/minecraft/world/scores/Scoreboard/m_83485_ (Ljava/lang/String;Lnet/minecraft/world/scores/Objective;)Lnet/minecraft/world/scores/Score; net/minecraft/world/scores/Scoreboard/lambda$getOrCreatePlayerScore$3 (Ljava/lang/String;Lnet/minecraft/world/scores/Objective;)Lnet/minecraft/world/scores/Score; +MD: net/minecraft/world/scores/Scoreboard/m_83488_ ()Ljava/util/Collection; net/minecraft/world/scores/Scoreboard/getTeamNames ()Ljava/util/Collection; +MD: net/minecraft/world/scores/Scoreboard/m_83489_ (Ljava/lang/String;)Lnet/minecraft/world/scores/PlayerTeam; net/minecraft/world/scores/Scoreboard/getPlayerTeam (Ljava/lang/String;)Lnet/minecraft/world/scores/PlayerTeam; +MD: net/minecraft/world/scores/Scoreboard/m_83491_ ()Ljava/util/Collection; net/minecraft/world/scores/Scoreboard/getPlayerTeams ()Ljava/util/Collection; +MD: net/minecraft/world/scores/Scoreboard/m_83492_ (Ljava/lang/String;)Lnet/minecraft/world/scores/PlayerTeam; net/minecraft/world/scores/Scoreboard/addPlayerTeam (Ljava/lang/String;)Lnet/minecraft/world/scores/PlayerTeam; +MD: net/minecraft/world/scores/Scoreboard/m_83494_ ()[Ljava/lang/String; net/minecraft/world/scores/Scoreboard/getDisplaySlotNames ()[Ljava/lang/String; +MD: net/minecraft/world/scores/Scoreboard/m_83495_ (Ljava/lang/String;)Z net/minecraft/world/scores/Scoreboard/removePlayerFromTeam (Ljava/lang/String;)Z +MD: net/minecraft/world/scores/Scoreboard/m_83497_ ()Lnet/minecraft/nbt/ListTag; net/minecraft/world/scores/Scoreboard/savePlayerScores ()Lnet/minecraft/nbt/ListTag; +MD: net/minecraft/world/scores/Scoreboard/m_83498_ (Lnet/minecraft/world/scores/Objective;)Ljava/util/Collection; net/minecraft/world/scores/Scoreboard/getPlayerScores (Lnet/minecraft/world/scores/Objective;)Ljava/util/Collection; +MD: net/minecraft/world/scores/Scoreboard/m_83500_ (Ljava/lang/String;)Lnet/minecraft/world/scores/PlayerTeam; net/minecraft/world/scores/Scoreboard/getPlayersTeam (Ljava/lang/String;)Lnet/minecraft/world/scores/PlayerTeam; +MD: net/minecraft/world/scores/Scoreboard/m_83502_ (Lnet/minecraft/world/scores/Objective;)V net/minecraft/world/scores/Scoreboard/removeObjective (Lnet/minecraft/world/scores/Objective;)V +MD: net/minecraft/world/scores/Scoreboard/m_83504_ (Ljava/lang/String;)I net/minecraft/world/scores/Scoreboard/getDisplaySlotByName (Ljava/lang/String;)I +MD: net/minecraft/world/scores/Scoreboard/m_83506_ (Ljava/lang/String;)Ljava/util/Map; net/minecraft/world/scores/Scoreboard/lambda$getOrCreatePlayerScore$2 (Ljava/lang/String;)Ljava/util/Map; +MD: net/minecraft/world/scores/ScoreboardSaveData/ (Lnet/minecraft/world/scores/Scoreboard;)V net/minecraft/world/scores/ScoreboardSaveData/ (Lnet/minecraft/world/scores/Scoreboard;)V +MD: net/minecraft/world/scores/ScoreboardSaveData/m_166102_ (Lnet/minecraft/nbt/CompoundTag;)Lnet/minecraft/world/scores/ScoreboardSaveData; net/minecraft/world/scores/ScoreboardSaveData/load (Lnet/minecraft/nbt/CompoundTag;)Lnet/minecraft/world/scores/ScoreboardSaveData; +MD: net/minecraft/world/scores/ScoreboardSaveData/m_7176_ (Lnet/minecraft/nbt/CompoundTag;)Lnet/minecraft/nbt/CompoundTag; net/minecraft/world/scores/ScoreboardSaveData/save (Lnet/minecraft/nbt/CompoundTag;)Lnet/minecraft/nbt/CompoundTag; +MD: net/minecraft/world/scores/ScoreboardSaveData/m_83513_ ()Lnet/minecraft/nbt/ListTag; net/minecraft/world/scores/ScoreboardSaveData/saveTeams ()Lnet/minecraft/nbt/ListTag; +MD: net/minecraft/world/scores/ScoreboardSaveData/m_83514_ (Lnet/minecraft/world/scores/PlayerTeam;Lnet/minecraft/nbt/ListTag;)V net/minecraft/world/scores/ScoreboardSaveData/loadTeamPlayers (Lnet/minecraft/world/scores/PlayerTeam;Lnet/minecraft/nbt/ListTag;)V +MD: net/minecraft/world/scores/ScoreboardSaveData/m_83521_ (Lnet/minecraft/nbt/CompoundTag;Lnet/minecraft/world/scores/criteria/ObjectiveCriteria;)V net/minecraft/world/scores/ScoreboardSaveData/lambda$loadObjectives$0 (Lnet/minecraft/nbt/CompoundTag;Lnet/minecraft/world/scores/criteria/ObjectiveCriteria;)V +MD: net/minecraft/world/scores/ScoreboardSaveData/m_83524_ (Lnet/minecraft/nbt/ListTag;)V net/minecraft/world/scores/ScoreboardSaveData/loadTeams (Lnet/minecraft/nbt/ListTag;)V +MD: net/minecraft/world/scores/ScoreboardSaveData/m_83528_ (Lnet/minecraft/nbt/ListTag;)V net/minecraft/world/scores/ScoreboardSaveData/loadObjectives (Lnet/minecraft/nbt/ListTag;)V +MD: net/minecraft/world/scores/ScoreboardSaveData/m_83530_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/scores/ScoreboardSaveData/loadDisplaySlots (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/scores/ScoreboardSaveData/m_83532_ (Lnet/minecraft/nbt/CompoundTag;)V net/minecraft/world/scores/ScoreboardSaveData/saveDisplaySlots (Lnet/minecraft/nbt/CompoundTag;)V +MD: net/minecraft/world/scores/ScoreboardSaveData/m_83534_ ()Lnet/minecraft/nbt/ListTag; net/minecraft/world/scores/ScoreboardSaveData/saveObjectives ()Lnet/minecraft/nbt/ListTag; +MD: net/minecraft/world/scores/Team/ ()V net/minecraft/world/scores/Team/ ()V +MD: net/minecraft/world/scores/Team/m_5758_ ()Ljava/lang/String; net/minecraft/world/scores/Team/getName ()Ljava/lang/String; +MD: net/minecraft/world/scores/Team/m_6259_ ()Z net/minecraft/world/scores/Team/canSeeFriendlyInvisibles ()Z +MD: net/minecraft/world/scores/Team/m_6260_ ()Z net/minecraft/world/scores/Team/isAllowFriendlyFire ()Z +MD: net/minecraft/world/scores/Team/m_6809_ ()Ljava/util/Collection; net/minecraft/world/scores/Team/getPlayers ()Ljava/util/Collection; +MD: net/minecraft/world/scores/Team/m_6870_ (Lnet/minecraft/network/chat/Component;)Lnet/minecraft/network/chat/MutableComponent; net/minecraft/world/scores/Team/getFormattedName (Lnet/minecraft/network/chat/Component;)Lnet/minecraft/network/chat/MutableComponent; +MD: net/minecraft/world/scores/Team/m_7156_ ()Lnet/minecraft/world/scores/Team$CollisionRule; net/minecraft/world/scores/Team/getCollisionRule ()Lnet/minecraft/world/scores/Team$CollisionRule; +MD: net/minecraft/world/scores/Team/m_7414_ ()Lnet/minecraft/ChatFormatting; net/minecraft/world/scores/Team/getColor ()Lnet/minecraft/ChatFormatting; +MD: net/minecraft/world/scores/Team/m_7468_ ()Lnet/minecraft/world/scores/Team$Visibility; net/minecraft/world/scores/Team/getDeathMessageVisibility ()Lnet/minecraft/world/scores/Team$Visibility; +MD: net/minecraft/world/scores/Team/m_7470_ ()Lnet/minecraft/world/scores/Team$Visibility; net/minecraft/world/scores/Team/getNameTagVisibility ()Lnet/minecraft/world/scores/Team$Visibility; +MD: net/minecraft/world/scores/Team/m_83536_ (Lnet/minecraft/world/scores/Team;)Z net/minecraft/world/scores/Team/isAlliedTo (Lnet/minecraft/world/scores/Team;)Z +MD: net/minecraft/world/scores/Team$CollisionRule/ ()V net/minecraft/world/scores/Team$CollisionRule/ ()V +MD: net/minecraft/world/scores/Team$CollisionRule/ (Ljava/lang/String;ILjava/lang/String;I)V net/minecraft/world/scores/Team$CollisionRule/ (Ljava/lang/String;ILjava/lang/String;I)V +MD: net/minecraft/world/scores/Team$CollisionRule/m_166104_ ()[Lnet/minecraft/world/scores/Team$CollisionRule; net/minecraft/world/scores/Team$CollisionRule/$values ()[Lnet/minecraft/world/scores/Team$CollisionRule; +MD: net/minecraft/world/scores/Team$CollisionRule/m_83553_ (Lnet/minecraft/world/scores/Team$CollisionRule;)Lnet/minecraft/world/scores/Team$CollisionRule; net/minecraft/world/scores/Team$CollisionRule/lambda$static$1 (Lnet/minecraft/world/scores/Team$CollisionRule;)Lnet/minecraft/world/scores/Team$CollisionRule; +MD: net/minecraft/world/scores/Team$CollisionRule/m_83555_ (Ljava/lang/String;)Lnet/minecraft/world/scores/Team$CollisionRule; net/minecraft/world/scores/Team$CollisionRule/byName (Ljava/lang/String;)Lnet/minecraft/world/scores/Team$CollisionRule; +MD: net/minecraft/world/scores/Team$CollisionRule/m_83557_ ()Lnet/minecraft/network/chat/Component; net/minecraft/world/scores/Team$CollisionRule/getDisplayName ()Lnet/minecraft/network/chat/Component; +MD: net/minecraft/world/scores/Team$CollisionRule/m_83558_ (Lnet/minecraft/world/scores/Team$CollisionRule;)Ljava/lang/String; net/minecraft/world/scores/Team$CollisionRule/lambda$static$0 (Lnet/minecraft/world/scores/Team$CollisionRule;)Ljava/lang/String; +MD: net/minecraft/world/scores/Team$CollisionRule/valueOf (Ljava/lang/String;)Lnet/minecraft/world/scores/Team$CollisionRule; net/minecraft/world/scores/Team$CollisionRule/valueOf (Ljava/lang/String;)Lnet/minecraft/world/scores/Team$CollisionRule; +MD: net/minecraft/world/scores/Team$CollisionRule/values ()[Lnet/minecraft/world/scores/Team$CollisionRule; net/minecraft/world/scores/Team$CollisionRule/values ()[Lnet/minecraft/world/scores/Team$CollisionRule; +MD: net/minecraft/world/scores/Team$Visibility/ ()V net/minecraft/world/scores/Team$Visibility/ ()V +MD: net/minecraft/world/scores/Team$Visibility/ (Ljava/lang/String;ILjava/lang/String;I)V net/minecraft/world/scores/Team$Visibility/ (Ljava/lang/String;ILjava/lang/String;I)V +MD: net/minecraft/world/scores/Team$Visibility/m_166105_ ()[Ljava/lang/String; net/minecraft/world/scores/Team$Visibility/getAllNames ()[Ljava/lang/String; +MD: net/minecraft/world/scores/Team$Visibility/m_166106_ ()[Lnet/minecraft/world/scores/Team$Visibility; net/minecraft/world/scores/Team$Visibility/$values ()[Lnet/minecraft/world/scores/Team$Visibility; +MD: net/minecraft/world/scores/Team$Visibility/m_83577_ (Lnet/minecraft/world/scores/Team$Visibility;)Lnet/minecraft/world/scores/Team$Visibility; net/minecraft/world/scores/Team$Visibility/lambda$static$1 (Lnet/minecraft/world/scores/Team$Visibility;)Lnet/minecraft/world/scores/Team$Visibility; +MD: net/minecraft/world/scores/Team$Visibility/m_83579_ (Ljava/lang/String;)Lnet/minecraft/world/scores/Team$Visibility; net/minecraft/world/scores/Team$Visibility/byName (Ljava/lang/String;)Lnet/minecraft/world/scores/Team$Visibility; +MD: net/minecraft/world/scores/Team$Visibility/m_83581_ ()Lnet/minecraft/network/chat/Component; net/minecraft/world/scores/Team$Visibility/getDisplayName ()Lnet/minecraft/network/chat/Component; +MD: net/minecraft/world/scores/Team$Visibility/m_83582_ (Lnet/minecraft/world/scores/Team$Visibility;)Ljava/lang/String; net/minecraft/world/scores/Team$Visibility/lambda$static$0 (Lnet/minecraft/world/scores/Team$Visibility;)Ljava/lang/String; +MD: net/minecraft/world/scores/Team$Visibility/valueOf (Ljava/lang/String;)Lnet/minecraft/world/scores/Team$Visibility; net/minecraft/world/scores/Team$Visibility/valueOf (Ljava/lang/String;)Lnet/minecraft/world/scores/Team$Visibility; +MD: net/minecraft/world/scores/Team$Visibility/values ()[Lnet/minecraft/world/scores/Team$Visibility; net/minecraft/world/scores/Team$Visibility/values ()[Lnet/minecraft/world/scores/Team$Visibility; +MD: net/minecraft/world/scores/criteria/ObjectiveCriteria/ ()V net/minecraft/world/scores/criteria/ObjectiveCriteria/ ()V +MD: net/minecraft/world/scores/criteria/ObjectiveCriteria/ (Ljava/lang/String;)V net/minecraft/world/scores/criteria/ObjectiveCriteria/ (Ljava/lang/String;)V +MD: net/minecraft/world/scores/criteria/ObjectiveCriteria/ (Ljava/lang/String;ZLnet/minecraft/world/scores/criteria/ObjectiveCriteria$RenderType;)V net/minecraft/world/scores/criteria/ObjectiveCriteria/ (Ljava/lang/String;ZLnet/minecraft/world/scores/criteria/ObjectiveCriteria$RenderType;)V +MD: net/minecraft/world/scores/criteria/ObjectiveCriteria/m_166109_ (Ljava/lang/String;ZLnet/minecraft/world/scores/criteria/ObjectiveCriteria$RenderType;)Lnet/minecraft/world/scores/criteria/ObjectiveCriteria; net/minecraft/world/scores/criteria/ObjectiveCriteria/registerCustom (Ljava/lang/String;ZLnet/minecraft/world/scores/criteria/ObjectiveCriteria$RenderType;)Lnet/minecraft/world/scores/criteria/ObjectiveCriteria; +MD: net/minecraft/world/scores/criteria/ObjectiveCriteria/m_166113_ (Ljava/lang/String;)Lnet/minecraft/world/scores/criteria/ObjectiveCriteria; net/minecraft/world/scores/criteria/ObjectiveCriteria/registerCustom (Ljava/lang/String;)Lnet/minecraft/world/scores/criteria/ObjectiveCriteria; +MD: net/minecraft/world/scores/criteria/ObjectiveCriteria/m_166115_ ()Ljava/util/Set; net/minecraft/world/scores/criteria/ObjectiveCriteria/getCustomCriteriaNames ()Ljava/util/Set; +MD: net/minecraft/world/scores/criteria/ObjectiveCriteria/m_83611_ (Lnet/minecraft/stats/StatType;Lnet/minecraft/resources/ResourceLocation;)Ljava/util/Optional; net/minecraft/world/scores/criteria/ObjectiveCriteria/getStat (Lnet/minecraft/stats/StatType;Lnet/minecraft/resources/ResourceLocation;)Ljava/util/Optional; +MD: net/minecraft/world/scores/criteria/ObjectiveCriteria/m_83614_ (Ljava/lang/String;)Ljava/util/Optional; net/minecraft/world/scores/criteria/ObjectiveCriteria/byName (Ljava/lang/String;)Ljava/util/Optional; +MD: net/minecraft/world/scores/criteria/ObjectiveCriteria/m_83616_ (Ljava/lang/String;ILnet/minecraft/stats/StatType;)Ljava/util/Optional; net/minecraft/world/scores/criteria/ObjectiveCriteria/lambda$byName$0 (Ljava/lang/String;ILnet/minecraft/stats/StatType;)Ljava/util/Optional; +MD: net/minecraft/world/scores/criteria/ObjectiveCriteria/m_83620_ ()Ljava/lang/String; net/minecraft/world/scores/criteria/ObjectiveCriteria/getName ()Ljava/lang/String; +MD: net/minecraft/world/scores/criteria/ObjectiveCriteria/m_83621_ ()Z net/minecraft/world/scores/criteria/ObjectiveCriteria/isReadOnly ()Z +MD: net/minecraft/world/scores/criteria/ObjectiveCriteria/m_83622_ ()Lnet/minecraft/world/scores/criteria/ObjectiveCriteria$RenderType; net/minecraft/world/scores/criteria/ObjectiveCriteria/getDefaultRenderType ()Lnet/minecraft/world/scores/criteria/ObjectiveCriteria$RenderType; +MD: net/minecraft/world/scores/criteria/ObjectiveCriteria$RenderType/ ()V net/minecraft/world/scores/criteria/ObjectiveCriteria$RenderType/ ()V +MD: net/minecraft/world/scores/criteria/ObjectiveCriteria$RenderType/ (Ljava/lang/String;ILjava/lang/String;)V net/minecraft/world/scores/criteria/ObjectiveCriteria$RenderType/ (Ljava/lang/String;ILjava/lang/String;)V +MD: net/minecraft/world/scores/criteria/ObjectiveCriteria$RenderType/m_166116_ ()[Lnet/minecraft/world/scores/criteria/ObjectiveCriteria$RenderType; net/minecraft/world/scores/criteria/ObjectiveCriteria$RenderType/$values ()[Lnet/minecraft/world/scores/criteria/ObjectiveCriteria$RenderType; +MD: net/minecraft/world/scores/criteria/ObjectiveCriteria$RenderType/m_7912_ ()Ljava/lang/String; net/minecraft/world/scores/criteria/ObjectiveCriteria$RenderType/getSerializedName ()Ljava/lang/String; +MD: net/minecraft/world/scores/criteria/ObjectiveCriteria$RenderType/m_83633_ ()Ljava/lang/String; net/minecraft/world/scores/criteria/ObjectiveCriteria$RenderType/getId ()Ljava/lang/String; +MD: net/minecraft/world/scores/criteria/ObjectiveCriteria$RenderType/m_83634_ (Ljava/lang/String;)Lnet/minecraft/world/scores/criteria/ObjectiveCriteria$RenderType; net/minecraft/world/scores/criteria/ObjectiveCriteria$RenderType/byId (Ljava/lang/String;)Lnet/minecraft/world/scores/criteria/ObjectiveCriteria$RenderType; +MD: net/minecraft/world/scores/criteria/ObjectiveCriteria$RenderType/valueOf (Ljava/lang/String;)Lnet/minecraft/world/scores/criteria/ObjectiveCriteria$RenderType; net/minecraft/world/scores/criteria/ObjectiveCriteria$RenderType/valueOf (Ljava/lang/String;)Lnet/minecraft/world/scores/criteria/ObjectiveCriteria$RenderType; +MD: net/minecraft/world/scores/criteria/ObjectiveCriteria$RenderType/values ()[Lnet/minecraft/world/scores/criteria/ObjectiveCriteria$RenderType; net/minecraft/world/scores/criteria/ObjectiveCriteria$RenderType/values ()[Lnet/minecraft/world/scores/criteria/ObjectiveCriteria$RenderType; +MD: net/minecraft/world/ticks/BlackholeTickAccess/ ()V net/minecraft/world/ticks/BlackholeTickAccess/ ()V +MD: net/minecraft/world/ticks/BlackholeTickAccess/ ()V net/minecraft/world/ticks/BlackholeTickAccess/ ()V +MD: net/minecraft/world/ticks/BlackholeTickAccess/m_193144_ ()Lnet/minecraft/world/ticks/TickContainerAccess; net/minecraft/world/ticks/BlackholeTickAccess/emptyContainer ()Lnet/minecraft/world/ticks/TickContainerAccess; +MD: net/minecraft/world/ticks/BlackholeTickAccess/m_193145_ ()Lnet/minecraft/world/ticks/LevelTickAccess; net/minecraft/world/ticks/BlackholeTickAccess/emptyLevelList ()Lnet/minecraft/world/ticks/LevelTickAccess; +MD: net/minecraft/world/ticks/BlackholeTickAccess$1/ ()V net/minecraft/world/ticks/BlackholeTickAccess$1/ ()V +MD: net/minecraft/world/ticks/BlackholeTickAccess$1/m_183393_ (Lnet/minecraft/world/ticks/ScheduledTick;)V net/minecraft/world/ticks/BlackholeTickAccess$1/schedule (Lnet/minecraft/world/ticks/ScheduledTick;)V +MD: net/minecraft/world/ticks/BlackholeTickAccess$1/m_183574_ ()I net/minecraft/world/ticks/BlackholeTickAccess$1/count ()I +MD: net/minecraft/world/ticks/BlackholeTickAccess$1/m_183582_ (Lnet/minecraft/core/BlockPos;Ljava/lang/Object;)Z net/minecraft/world/ticks/BlackholeTickAccess$1/hasScheduledTick (Lnet/minecraft/core/BlockPos;Ljava/lang/Object;)Z +MD: net/minecraft/world/ticks/BlackholeTickAccess$2/ ()V net/minecraft/world/ticks/BlackholeTickAccess$2/ ()V +MD: net/minecraft/world/ticks/BlackholeTickAccess$2/m_183393_ (Lnet/minecraft/world/ticks/ScheduledTick;)V net/minecraft/world/ticks/BlackholeTickAccess$2/schedule (Lnet/minecraft/world/ticks/ScheduledTick;)V +MD: net/minecraft/world/ticks/BlackholeTickAccess$2/m_183574_ ()I net/minecraft/world/ticks/BlackholeTickAccess$2/count ()I +MD: net/minecraft/world/ticks/BlackholeTickAccess$2/m_183582_ (Lnet/minecraft/core/BlockPos;Ljava/lang/Object;)Z net/minecraft/world/ticks/BlackholeTickAccess$2/hasScheduledTick (Lnet/minecraft/core/BlockPos;Ljava/lang/Object;)Z +MD: net/minecraft/world/ticks/BlackholeTickAccess$2/m_183588_ (Lnet/minecraft/core/BlockPos;Ljava/lang/Object;)Z net/minecraft/world/ticks/BlackholeTickAccess$2/willTickThisTick (Lnet/minecraft/core/BlockPos;Ljava/lang/Object;)Z +MD: net/minecraft/world/ticks/ContainerSingleItem/m_272036_ ()Lnet/minecraft/world/item/ItemStack; net/minecraft/world/ticks/ContainerSingleItem/getFirstItem ()Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/ticks/ContainerSingleItem/m_272108_ ()Lnet/minecraft/world/item/ItemStack; net/minecraft/world/ticks/ContainerSingleItem/removeFirstItem ()Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/ticks/ContainerSingleItem/m_272287_ (Lnet/minecraft/world/item/ItemStack;)V net/minecraft/world/ticks/ContainerSingleItem/setFirstItem (Lnet/minecraft/world/item/ItemStack;)V +MD: net/minecraft/world/ticks/ContainerSingleItem/m_6211_ ()V net/minecraft/world/ticks/ContainerSingleItem/clearContent ()V +MD: net/minecraft/world/ticks/ContainerSingleItem/m_6643_ ()I net/minecraft/world/ticks/ContainerSingleItem/getContainerSize ()I +MD: net/minecraft/world/ticks/ContainerSingleItem/m_7983_ ()Z net/minecraft/world/ticks/ContainerSingleItem/isEmpty ()Z +MD: net/minecraft/world/ticks/ContainerSingleItem/m_8016_ (I)Lnet/minecraft/world/item/ItemStack; net/minecraft/world/ticks/ContainerSingleItem/removeItemNoUpdate (I)Lnet/minecraft/world/item/ItemStack; +MD: net/minecraft/world/ticks/LevelChunkTicks/ (Ljava/util/List;)V net/minecraft/world/ticks/LevelChunkTicks/ (Ljava/util/List;)V +MD: net/minecraft/world/ticks/LevelChunkTicks/ ()V net/minecraft/world/ticks/LevelChunkTicks/ ()V +MD: net/minecraft/world/ticks/LevelChunkTicks/m_183237_ (JLjava/util/function/Function;)Lnet/minecraft/nbt/ListTag; net/minecraft/world/ticks/LevelChunkTicks/save (JLjava/util/function/Function;)Lnet/minecraft/nbt/ListTag; +MD: net/minecraft/world/ticks/LevelChunkTicks/m_183237_ (JLjava/util/function/Function;)Lnet/minecraft/nbt/Tag; net/minecraft/world/ticks/LevelChunkTicks/save (JLjava/util/function/Function;)Lnet/minecraft/nbt/Tag; +MD: net/minecraft/world/ticks/LevelChunkTicks/m_183393_ (Lnet/minecraft/world/ticks/ScheduledTick;)V net/minecraft/world/ticks/LevelChunkTicks/schedule (Lnet/minecraft/world/ticks/ScheduledTick;)V +MD: net/minecraft/world/ticks/LevelChunkTicks/m_183574_ ()I net/minecraft/world/ticks/LevelChunkTicks/count ()I +MD: net/minecraft/world/ticks/LevelChunkTicks/m_183582_ (Lnet/minecraft/core/BlockPos;Ljava/lang/Object;)Z net/minecraft/world/ticks/LevelChunkTicks/hasScheduledTick (Lnet/minecraft/core/BlockPos;Ljava/lang/Object;)Z +MD: net/minecraft/world/ticks/LevelChunkTicks/m_193171_ (J)V net/minecraft/world/ticks/LevelChunkTicks/unpack (J)V +MD: net/minecraft/world/ticks/LevelChunkTicks/m_193181_ (Ljava/util/function/BiConsumer;)V net/minecraft/world/ticks/LevelChunkTicks/setOnTickAdded (Ljava/util/function/BiConsumer;)V +MD: net/minecraft/world/ticks/LevelChunkTicks/m_193183_ (Ljava/util/function/Predicate;)V net/minecraft/world/ticks/LevelChunkTicks/removeIf (Ljava/util/function/Predicate;)V +MD: net/minecraft/world/ticks/LevelChunkTicks/m_193185_ (Lnet/minecraft/nbt/ListTag;Ljava/util/function/Function;Lnet/minecraft/world/level/ChunkPos;)Lnet/minecraft/world/ticks/LevelChunkTicks; net/minecraft/world/ticks/LevelChunkTicks/load (Lnet/minecraft/nbt/ListTag;Ljava/util/function/Function;Lnet/minecraft/world/level/ChunkPos;)Lnet/minecraft/world/ticks/LevelChunkTicks; +MD: net/minecraft/world/ticks/LevelChunkTicks/m_193189_ ()Lnet/minecraft/world/ticks/ScheduledTick; net/minecraft/world/ticks/LevelChunkTicks/peek ()Lnet/minecraft/world/ticks/ScheduledTick; +MD: net/minecraft/world/ticks/LevelChunkTicks/m_193193_ (Lnet/minecraft/world/ticks/ScheduledTick;)V net/minecraft/world/ticks/LevelChunkTicks/scheduleUnchecked (Lnet/minecraft/world/ticks/ScheduledTick;)V +MD: net/minecraft/world/ticks/LevelChunkTicks/m_193195_ ()Lnet/minecraft/world/ticks/ScheduledTick; net/minecraft/world/ticks/LevelChunkTicks/poll ()Lnet/minecraft/world/ticks/ScheduledTick; +MD: net/minecraft/world/ticks/LevelChunkTicks/m_193196_ ()Ljava/util/stream/Stream; net/minecraft/world/ticks/LevelChunkTicks/getAll ()Ljava/util/stream/Stream; +MD: net/minecraft/world/ticks/LevelTickAccess/m_183588_ (Lnet/minecraft/core/BlockPos;Ljava/lang/Object;)Z net/minecraft/world/ticks/LevelTickAccess/willTickThisTick (Lnet/minecraft/core/BlockPos;Ljava/lang/Object;)Z +MD: net/minecraft/world/ticks/LevelTicks/ ()V net/minecraft/world/ticks/LevelTicks/ ()V +MD: net/minecraft/world/ticks/LevelTicks/ (Ljava/util/function/LongPredicate;Ljava/util/function/Supplier;)V net/minecraft/world/ticks/LevelTicks/ (Ljava/util/function/LongPredicate;Ljava/util/function/Supplier;)V +MD: net/minecraft/world/ticks/LevelTicks/m_183393_ (Lnet/minecraft/world/ticks/ScheduledTick;)V net/minecraft/world/ticks/LevelTicks/schedule (Lnet/minecraft/world/ticks/ScheduledTick;)V +MD: net/minecraft/world/ticks/LevelTicks/m_183574_ ()I net/minecraft/world/ticks/LevelTicks/count ()I +MD: net/minecraft/world/ticks/LevelTicks/m_183582_ (Lnet/minecraft/core/BlockPos;Ljava/lang/Object;)Z net/minecraft/world/ticks/LevelTicks/hasScheduledTick (Lnet/minecraft/core/BlockPos;Ljava/lang/Object;)Z +MD: net/minecraft/world/ticks/LevelTicks/m_183588_ (Lnet/minecraft/core/BlockPos;Ljava/lang/Object;)Z net/minecraft/world/ticks/LevelTicks/willTickThisTick (Lnet/minecraft/core/BlockPos;Ljava/lang/Object;)Z +MD: net/minecraft/world/ticks/LevelTicks/m_193214_ (I)Z net/minecraft/world/ticks/LevelTicks/canScheduleMoreTicks (I)Z +MD: net/minecraft/world/ticks/LevelTicks/m_193216_ (J)V net/minecraft/world/ticks/LevelTicks/sortContainersToTick (J)V +MD: net/minecraft/world/ticks/LevelTicks/m_193218_ (JI)V net/minecraft/world/ticks/LevelTicks/drainContainers (JI)V +MD: net/minecraft/world/ticks/LevelTicks/m_193221_ (JILnet/minecraft/util/profiling/ProfilerFiller;)V net/minecraft/world/ticks/LevelTicks/collectTicks (JILnet/minecraft/util/profiling/ProfilerFiller;)V +MD: net/minecraft/world/ticks/LevelTicks/m_193225_ (JILjava/util/function/BiConsumer;)V net/minecraft/world/ticks/LevelTicks/tick (JILjava/util/function/BiConsumer;)V +MD: net/minecraft/world/ticks/LevelTicks/m_193229_ (Lnet/minecraft/world/level/ChunkPos;)V net/minecraft/world/ticks/LevelTicks/removeContainer (Lnet/minecraft/world/level/ChunkPos;)V +MD: net/minecraft/world/ticks/LevelTicks/m_193231_ (Lnet/minecraft/world/level/ChunkPos;Lnet/minecraft/world/ticks/LevelChunkTicks;)V net/minecraft/world/ticks/LevelTicks/addContainer (Lnet/minecraft/world/level/ChunkPos;Lnet/minecraft/world/ticks/LevelChunkTicks;)V +MD: net/minecraft/world/ticks/LevelTicks/m_193234_ (Lnet/minecraft/world/level/levelgen/structure/BoundingBox;)V net/minecraft/world/ticks/LevelTicks/clearArea (Lnet/minecraft/world/level/levelgen/structure/BoundingBox;)V +MD: net/minecraft/world/ticks/LevelTicks/m_193236_ (Lnet/minecraft/world/level/levelgen/structure/BoundingBox;Lnet/minecraft/world/ticks/LevelTicks$PosAndContainerConsumer;)V net/minecraft/world/ticks/LevelTicks/forContainersInArea (Lnet/minecraft/world/level/levelgen/structure/BoundingBox;Lnet/minecraft/world/ticks/LevelTicks$PosAndContainerConsumer;)V +MD: net/minecraft/world/ticks/LevelTicks/m_193239_ (Lnet/minecraft/world/level/levelgen/structure/BoundingBox;Lnet/minecraft/world/ticks/ScheduledTick;)Z net/minecraft/world/ticks/LevelTicks/lambda$clearArea$3 (Lnet/minecraft/world/level/levelgen/structure/BoundingBox;Lnet/minecraft/world/ticks/ScheduledTick;)Z +MD: net/minecraft/world/ticks/LevelTicks/m_193242_ (Lnet/minecraft/world/level/levelgen/structure/BoundingBox;Lnet/minecraft/core/Vec3i;)V net/minecraft/world/ticks/LevelTicks/copyArea (Lnet/minecraft/world/level/levelgen/structure/BoundingBox;Lnet/minecraft/core/Vec3i;)V +MD: net/minecraft/world/ticks/LevelTicks/m_193245_ (Lnet/minecraft/world/ticks/LevelChunkTicks;Lnet/minecraft/world/ticks/LevelChunkTicks;)I net/minecraft/world/ticks/LevelTicks/lambda$static$0 (Lnet/minecraft/world/ticks/LevelChunkTicks;Lnet/minecraft/world/ticks/LevelChunkTicks;)I +MD: net/minecraft/world/ticks/LevelTicks/m_193248_ (Lnet/minecraft/world/ticks/LevelChunkTicks;Lnet/minecraft/world/ticks/ScheduledTick;)V net/minecraft/world/ticks/LevelTicks/lambda$new$2 (Lnet/minecraft/world/ticks/LevelChunkTicks;Lnet/minecraft/world/ticks/ScheduledTick;)V +MD: net/minecraft/world/ticks/LevelTicks/m_193256_ (Lnet/minecraft/core/Vec3i;JJLnet/minecraft/world/ticks/ScheduledTick;)V net/minecraft/world/ticks/LevelTicks/lambda$copyAreaFrom$7 (Lnet/minecraft/core/Vec3i;JJLnet/minecraft/world/ticks/ScheduledTick;)V +MD: net/minecraft/world/ticks/LevelTicks/m_193261_ (Lit/unimi/dsi/fastutil/longs/Long2LongOpenHashMap;)V net/minecraft/world/ticks/LevelTicks/lambda$new$1 (Lit/unimi/dsi/fastutil/longs/Long2LongOpenHashMap;)V +MD: net/minecraft/world/ticks/LevelTicks/m_193267_ (Ljava/util/Queue;Lnet/minecraft/world/ticks/LevelChunkTicks;JI)V net/minecraft/world/ticks/LevelTicks/drainFromCurrentContainer (Ljava/util/Queue;Lnet/minecraft/world/ticks/LevelChunkTicks;JI)V +MD: net/minecraft/world/ticks/LevelTicks/m_193272_ (Ljava/util/function/BiConsumer;)V net/minecraft/world/ticks/LevelTicks/runCollectedTicks (Ljava/util/function/BiConsumer;)V +MD: net/minecraft/world/ticks/LevelTicks/m_193274_ (Ljava/util/function/Predicate;JLnet/minecraft/world/ticks/LevelChunkTicks;)V net/minecraft/world/ticks/LevelTicks/lambda$clearArea$4 (Ljava/util/function/Predicate;JLnet/minecraft/world/ticks/LevelChunkTicks;)V +MD: net/minecraft/world/ticks/LevelTicks/m_193278_ ()V net/minecraft/world/ticks/LevelTicks/rescheduleLeftoverContainers ()V +MD: net/minecraft/world/ticks/LevelTicks/m_193279_ (Lnet/minecraft/world/ticks/ScheduledTick;)V net/minecraft/world/ticks/LevelTicks/updateContainerScheduling (Lnet/minecraft/world/ticks/ScheduledTick;)V +MD: net/minecraft/world/ticks/LevelTicks/m_193284_ ()V net/minecraft/world/ticks/LevelTicks/cleanupAfterTick ()V +MD: net/minecraft/world/ticks/LevelTicks/m_193285_ (Lnet/minecraft/world/ticks/ScheduledTick;)V net/minecraft/world/ticks/LevelTicks/scheduleForThisTick (Lnet/minecraft/world/ticks/ScheduledTick;)V +MD: net/minecraft/world/ticks/LevelTicks/m_193287_ ()V net/minecraft/world/ticks/LevelTicks/calculateTickSetIfNeeded ()V +MD: net/minecraft/world/ticks/LevelTicks/m_200920_ (Lnet/minecraft/world/level/levelgen/structure/BoundingBox;Lnet/minecraft/world/ticks/ScheduledTick;)Z net/minecraft/world/ticks/LevelTicks/lambda$copyAreaFrom$5 (Lnet/minecraft/world/level/levelgen/structure/BoundingBox;Lnet/minecraft/world/ticks/ScheduledTick;)Z +MD: net/minecraft/world/ticks/LevelTicks/m_200928_ (Ljava/util/function/Predicate;Ljava/util/List;JLnet/minecraft/world/ticks/LevelChunkTicks;)V net/minecraft/world/ticks/LevelTicks/lambda$copyAreaFrom$6 (Ljava/util/function/Predicate;Ljava/util/List;JLnet/minecraft/world/ticks/LevelChunkTicks;)V +MD: net/minecraft/world/ticks/LevelTicks/m_264560_ (Lnet/minecraft/world/ticks/LevelTicks;Lnet/minecraft/world/level/levelgen/structure/BoundingBox;Lnet/minecraft/core/Vec3i;)V net/minecraft/world/ticks/LevelTicks/copyAreaFrom (Lnet/minecraft/world/ticks/LevelTicks;Lnet/minecraft/world/level/levelgen/structure/BoundingBox;Lnet/minecraft/core/Vec3i;)V +MD: net/minecraft/world/ticks/LevelTicks$PosAndContainerConsumer/m_193288_ (JLnet/minecraft/world/ticks/LevelChunkTicks;)V net/minecraft/world/ticks/LevelTicks$PosAndContainerConsumer/accept (JLnet/minecraft/world/ticks/LevelChunkTicks;)V +MD: net/minecraft/world/ticks/ProtoChunkTicks/ ()V net/minecraft/world/ticks/ProtoChunkTicks/ ()V +MD: net/minecraft/world/ticks/ProtoChunkTicks/m_183237_ (JLjava/util/function/Function;)Lnet/minecraft/nbt/Tag; net/minecraft/world/ticks/ProtoChunkTicks/save (JLjava/util/function/Function;)Lnet/minecraft/nbt/Tag; +MD: net/minecraft/world/ticks/ProtoChunkTicks/m_183393_ (Lnet/minecraft/world/ticks/ScheduledTick;)V net/minecraft/world/ticks/ProtoChunkTicks/schedule (Lnet/minecraft/world/ticks/ScheduledTick;)V +MD: net/minecraft/world/ticks/ProtoChunkTicks/m_183574_ ()I net/minecraft/world/ticks/ProtoChunkTicks/count ()I +MD: net/minecraft/world/ticks/ProtoChunkTicks/m_183582_ (Lnet/minecraft/core/BlockPos;Ljava/lang/Object;)Z net/minecraft/world/ticks/ProtoChunkTicks/hasScheduledTick (Lnet/minecraft/core/BlockPos;Ljava/lang/Object;)Z +MD: net/minecraft/world/ticks/ProtoChunkTicks/m_193295_ (Lnet/minecraft/world/ticks/SavedTick;)V net/minecraft/world/ticks/ProtoChunkTicks/schedule (Lnet/minecraft/world/ticks/SavedTick;)V +MD: net/minecraft/world/ticks/ProtoChunkTicks/m_193302_ (Lnet/minecraft/nbt/ListTag;Ljava/util/function/Function;Lnet/minecraft/world/level/ChunkPos;)Lnet/minecraft/world/ticks/ProtoChunkTicks; net/minecraft/world/ticks/ProtoChunkTicks/load (Lnet/minecraft/nbt/ListTag;Ljava/util/function/Function;Lnet/minecraft/world/level/ChunkPos;)Lnet/minecraft/world/ticks/ProtoChunkTicks; +MD: net/minecraft/world/ticks/ProtoChunkTicks/m_193306_ ()Ljava/util/List; net/minecraft/world/ticks/ProtoChunkTicks/scheduledTicks ()Ljava/util/List; +MD: net/minecraft/world/ticks/SavedTick/ ()V net/minecraft/world/ticks/SavedTick/ ()V +MD: net/minecraft/world/ticks/SavedTick/ (Ljava/lang/Object;Lnet/minecraft/core/BlockPos;ILnet/minecraft/world/ticks/TickPriority;)V net/minecraft/world/ticks/SavedTick/ (Ljava/lang/Object;Lnet/minecraft/core/BlockPos;ILnet/minecraft/world/ticks/TickPriority;)V +MD: net/minecraft/world/ticks/SavedTick/equals (Ljava/lang/Object;)Z net/minecraft/world/ticks/SavedTick/equals (Ljava/lang/Object;)Z +MD: net/minecraft/world/ticks/SavedTick/f_193311_ ()Ljava/lang/Object; net/minecraft/world/ticks/SavedTick/type ()Ljava/lang/Object; +MD: net/minecraft/world/ticks/SavedTick/f_193312_ ()Lnet/minecraft/core/BlockPos; net/minecraft/world/ticks/SavedTick/pos ()Lnet/minecraft/core/BlockPos; +MD: net/minecraft/world/ticks/SavedTick/f_193313_ ()I net/minecraft/world/ticks/SavedTick/delay ()I +MD: net/minecraft/world/ticks/SavedTick/f_193314_ ()Lnet/minecraft/world/ticks/TickPriority; net/minecraft/world/ticks/SavedTick/priority ()Lnet/minecraft/world/ticks/TickPriority; +MD: net/minecraft/world/ticks/SavedTick/hashCode ()I net/minecraft/world/ticks/SavedTick/hashCode ()I +MD: net/minecraft/world/ticks/SavedTick/m_193328_ (JJ)Lnet/minecraft/world/ticks/ScheduledTick; net/minecraft/world/ticks/SavedTick/unpack (JJ)Lnet/minecraft/world/ticks/ScheduledTick; +MD: net/minecraft/world/ticks/SavedTick/m_193331_ (Lnet/minecraft/world/ticks/ScheduledTick;Ljava/util/function/Function;J)Lnet/minecraft/nbt/CompoundTag; net/minecraft/world/ticks/SavedTick/saveTick (Lnet/minecraft/world/ticks/ScheduledTick;Ljava/util/function/Function;J)Lnet/minecraft/nbt/CompoundTag; +MD: net/minecraft/world/ticks/SavedTick/m_193335_ (Ljava/lang/Object;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/ticks/SavedTick; net/minecraft/world/ticks/SavedTick/probe (Ljava/lang/Object;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/ticks/SavedTick; +MD: net/minecraft/world/ticks/SavedTick/m_193338_ (Ljava/lang/String;Lnet/minecraft/core/BlockPos;ILnet/minecraft/world/ticks/TickPriority;)Lnet/minecraft/nbt/CompoundTag; net/minecraft/world/ticks/SavedTick/saveTick (Ljava/lang/String;Lnet/minecraft/core/BlockPos;ILnet/minecraft/world/ticks/TickPriority;)Lnet/minecraft/nbt/CompoundTag; +MD: net/minecraft/world/ticks/SavedTick/m_193343_ (Ljava/util/function/Function;)Lnet/minecraft/nbt/CompoundTag; net/minecraft/world/ticks/SavedTick/save (Ljava/util/function/Function;)Lnet/minecraft/nbt/CompoundTag; +MD: net/minecraft/world/ticks/SavedTick/m_193350_ (Lnet/minecraft/nbt/ListTag;Ljava/util/function/Function;Lnet/minecraft/world/level/ChunkPos;Ljava/util/function/Consumer;)V net/minecraft/world/ticks/SavedTick/loadTickList (Lnet/minecraft/nbt/ListTag;Ljava/util/function/Function;Lnet/minecraft/world/level/ChunkPos;Ljava/util/function/Consumer;)V +MD: net/minecraft/world/ticks/SavedTick/m_210662_ (JLjava/util/function/Consumer;Lnet/minecraft/world/ticks/SavedTick;)V net/minecraft/world/ticks/SavedTick/lambda$loadTickList$0 (JLjava/util/function/Consumer;Lnet/minecraft/world/ticks/SavedTick;)V +MD: net/minecraft/world/ticks/SavedTick/m_210666_ (Lnet/minecraft/nbt/CompoundTag;Ljava/lang/Object;)Lnet/minecraft/world/ticks/SavedTick; net/minecraft/world/ticks/SavedTick/lambda$loadTick$1 (Lnet/minecraft/nbt/CompoundTag;Ljava/lang/Object;)Lnet/minecraft/world/ticks/SavedTick; +MD: net/minecraft/world/ticks/SavedTick/m_210669_ (Lnet/minecraft/nbt/CompoundTag;Ljava/util/function/Function;)Ljava/util/Optional; net/minecraft/world/ticks/SavedTick/loadTick (Lnet/minecraft/nbt/CompoundTag;Ljava/util/function/Function;)Ljava/util/Optional; +MD: net/minecraft/world/ticks/SavedTick/toString ()Ljava/lang/String; net/minecraft/world/ticks/SavedTick/toString ()Ljava/lang/String; +MD: net/minecraft/world/ticks/SavedTick$1/ ()V net/minecraft/world/ticks/SavedTick$1/ ()V +MD: net/minecraft/world/ticks/SavedTick$1/equals (Lnet/minecraft/world/ticks/SavedTick;Lnet/minecraft/world/ticks/SavedTick;)Z net/minecraft/world/ticks/SavedTick$1/equals (Lnet/minecraft/world/ticks/SavedTick;Lnet/minecraft/world/ticks/SavedTick;)Z +MD: net/minecraft/world/ticks/SavedTick$1/equals (Ljava/lang/Object;Ljava/lang/Object;)Z net/minecraft/world/ticks/SavedTick$1/equals (Ljava/lang/Object;Ljava/lang/Object;)Z +MD: net/minecraft/world/ticks/SavedTick$1/hashCode (Ljava/lang/Object;)I net/minecraft/world/ticks/SavedTick$1/hashCode (Ljava/lang/Object;)I +MD: net/minecraft/world/ticks/SavedTick$1/hashCode (Lnet/minecraft/world/ticks/SavedTick;)I net/minecraft/world/ticks/SavedTick$1/hashCode (Lnet/minecraft/world/ticks/SavedTick;)I +MD: net/minecraft/world/ticks/ScheduledTick/ ()V net/minecraft/world/ticks/ScheduledTick/ ()V +MD: net/minecraft/world/ticks/ScheduledTick/ (Ljava/lang/Object;Lnet/minecraft/core/BlockPos;JJ)V net/minecraft/world/ticks/ScheduledTick/ (Ljava/lang/Object;Lnet/minecraft/core/BlockPos;JJ)V +MD: net/minecraft/world/ticks/ScheduledTick/ (Ljava/lang/Object;Lnet/minecraft/core/BlockPos;JLnet/minecraft/world/ticks/TickPriority;J)V net/minecraft/world/ticks/ScheduledTick/ (Ljava/lang/Object;Lnet/minecraft/core/BlockPos;JLnet/minecraft/world/ticks/TickPriority;J)V +MD: net/minecraft/world/ticks/ScheduledTick/equals (Ljava/lang/Object;)Z net/minecraft/world/ticks/ScheduledTick/equals (Ljava/lang/Object;)Z +MD: net/minecraft/world/ticks/ScheduledTick/f_193376_ ()Ljava/lang/Object; net/minecraft/world/ticks/ScheduledTick/type ()Ljava/lang/Object; +MD: net/minecraft/world/ticks/ScheduledTick/f_193377_ ()Lnet/minecraft/core/BlockPos; net/minecraft/world/ticks/ScheduledTick/pos ()Lnet/minecraft/core/BlockPos; +MD: net/minecraft/world/ticks/ScheduledTick/f_193378_ ()J net/minecraft/world/ticks/ScheduledTick/triggerTick ()J +MD: net/minecraft/world/ticks/ScheduledTick/f_193379_ ()Lnet/minecraft/world/ticks/TickPriority; net/minecraft/world/ticks/ScheduledTick/priority ()Lnet/minecraft/world/ticks/TickPriority; +MD: net/minecraft/world/ticks/ScheduledTick/f_193380_ ()J net/minecraft/world/ticks/ScheduledTick/subTickOrder ()J +MD: net/minecraft/world/ticks/ScheduledTick/hashCode ()I net/minecraft/world/ticks/ScheduledTick/hashCode ()I +MD: net/minecraft/world/ticks/ScheduledTick/m_193394_ (Lnet/minecraft/world/ticks/ScheduledTick;Lnet/minecraft/world/ticks/ScheduledTick;)I net/minecraft/world/ticks/ScheduledTick/lambda$static$1 (Lnet/minecraft/world/ticks/ScheduledTick;Lnet/minecraft/world/ticks/ScheduledTick;)I +MD: net/minecraft/world/ticks/ScheduledTick/m_193397_ (Ljava/lang/Object;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/ticks/ScheduledTick; net/minecraft/world/ticks/ScheduledTick/probe (Ljava/lang/Object;Lnet/minecraft/core/BlockPos;)Lnet/minecraft/world/ticks/ScheduledTick; +MD: net/minecraft/world/ticks/ScheduledTick/m_193405_ (Lnet/minecraft/world/ticks/ScheduledTick;Lnet/minecraft/world/ticks/ScheduledTick;)I net/minecraft/world/ticks/ScheduledTick/lambda$static$0 (Lnet/minecraft/world/ticks/ScheduledTick;Lnet/minecraft/world/ticks/ScheduledTick;)I +MD: net/minecraft/world/ticks/ScheduledTick/toString ()Ljava/lang/String; net/minecraft/world/ticks/ScheduledTick/toString ()Ljava/lang/String; +MD: net/minecraft/world/ticks/ScheduledTick$1/ ()V net/minecraft/world/ticks/ScheduledTick$1/ ()V +MD: net/minecraft/world/ticks/ScheduledTick$1/equals (Ljava/lang/Object;Ljava/lang/Object;)Z net/minecraft/world/ticks/ScheduledTick$1/equals (Ljava/lang/Object;Ljava/lang/Object;)Z +MD: net/minecraft/world/ticks/ScheduledTick$1/equals (Lnet/minecraft/world/ticks/ScheduledTick;Lnet/minecraft/world/ticks/ScheduledTick;)Z net/minecraft/world/ticks/ScheduledTick$1/equals (Lnet/minecraft/world/ticks/ScheduledTick;Lnet/minecraft/world/ticks/ScheduledTick;)Z +MD: net/minecraft/world/ticks/ScheduledTick$1/hashCode (Ljava/lang/Object;)I net/minecraft/world/ticks/ScheduledTick$1/hashCode (Ljava/lang/Object;)I +MD: net/minecraft/world/ticks/ScheduledTick$1/hashCode (Lnet/minecraft/world/ticks/ScheduledTick;)I net/minecraft/world/ticks/ScheduledTick$1/hashCode (Lnet/minecraft/world/ticks/ScheduledTick;)I +MD: net/minecraft/world/ticks/SerializableTickContainer/m_183237_ (JLjava/util/function/Function;)Lnet/minecraft/nbt/Tag; net/minecraft/world/ticks/SerializableTickContainer/save (JLjava/util/function/Function;)Lnet/minecraft/nbt/Tag; +MD: net/minecraft/world/ticks/TickAccess/m_183393_ (Lnet/minecraft/world/ticks/ScheduledTick;)V net/minecraft/world/ticks/TickAccess/schedule (Lnet/minecraft/world/ticks/ScheduledTick;)V +MD: net/minecraft/world/ticks/TickAccess/m_183574_ ()I net/minecraft/world/ticks/TickAccess/count ()I +MD: net/minecraft/world/ticks/TickAccess/m_183582_ (Lnet/minecraft/core/BlockPos;Ljava/lang/Object;)Z net/minecraft/world/ticks/TickAccess/hasScheduledTick (Lnet/minecraft/core/BlockPos;Ljava/lang/Object;)Z +MD: net/minecraft/world/ticks/TickPriority/ ()V net/minecraft/world/ticks/TickPriority/ ()V +MD: net/minecraft/world/ticks/TickPriority/ (Ljava/lang/String;II)V net/minecraft/world/ticks/TickPriority/ (Ljava/lang/String;II)V +MD: net/minecraft/world/ticks/TickPriority/m_193445_ ()I net/minecraft/world/ticks/TickPriority/getValue ()I +MD: net/minecraft/world/ticks/TickPriority/m_193446_ (I)Lnet/minecraft/world/ticks/TickPriority; net/minecraft/world/ticks/TickPriority/byValue (I)Lnet/minecraft/world/ticks/TickPriority; +MD: net/minecraft/world/ticks/TickPriority/m_193448_ ()[Lnet/minecraft/world/ticks/TickPriority; net/minecraft/world/ticks/TickPriority/$values ()[Lnet/minecraft/world/ticks/TickPriority; +MD: net/minecraft/world/ticks/TickPriority/valueOf (Ljava/lang/String;)Lnet/minecraft/world/ticks/TickPriority; net/minecraft/world/ticks/TickPriority/valueOf (Ljava/lang/String;)Lnet/minecraft/world/ticks/TickPriority; +MD: net/minecraft/world/ticks/TickPriority/values ()[Lnet/minecraft/world/ticks/TickPriority; net/minecraft/world/ticks/TickPriority/values ()[Lnet/minecraft/world/ticks/TickPriority; +MD: net/minecraft/world/ticks/WorldGenTickAccess/ (Ljava/util/function/Function;)V net/minecraft/world/ticks/WorldGenTickAccess/ (Ljava/util/function/Function;)V +MD: net/minecraft/world/ticks/WorldGenTickAccess/m_183393_ (Lnet/minecraft/world/ticks/ScheduledTick;)V net/minecraft/world/ticks/WorldGenTickAccess/schedule (Lnet/minecraft/world/ticks/ScheduledTick;)V +MD: net/minecraft/world/ticks/WorldGenTickAccess/m_183574_ ()I net/minecraft/world/ticks/WorldGenTickAccess/count ()I +MD: net/minecraft/world/ticks/WorldGenTickAccess/m_183582_ (Lnet/minecraft/core/BlockPos;Ljava/lang/Object;)Z net/minecraft/world/ticks/WorldGenTickAccess/hasScheduledTick (Lnet/minecraft/core/BlockPos;Ljava/lang/Object;)Z +MD: net/minecraft/world/ticks/WorldGenTickAccess/m_183588_ (Lnet/minecraft/core/BlockPos;Ljava/lang/Object;)Z net/minecraft/world/ticks/WorldGenTickAccess/willTickThisTick (Lnet/minecraft/core/BlockPos;Ljava/lang/Object;)Z diff --git a/build/downloadMCMeta/version.json b/build/downloadMCMeta/version.json new file mode 100644 index 000000000..b2074da06 --- /dev/null +++ b/build/downloadMCMeta/version.json @@ -0,0 +1 @@ +{"arguments": {"game": ["--username", "${auth_player_name}", "--version", "${version_name}", "--gameDir", "${game_directory}", "--assetsDir", "${assets_root}", "--assetIndex", "${assets_index_name}", "--uuid", "${auth_uuid}", "--accessToken", "${auth_access_token}", "--clientId", "${clientid}", "--xuid", "${auth_xuid}", "--userType", "${user_type}", "--versionType", "${version_type}", {"rules": [{"action": "allow", "features": {"is_demo_user": true}}], "value": "--demo"}, {"rules": [{"action": "allow", "features": {"has_custom_resolution": true}}], "value": ["--width", "${resolution_width}", "--height", "${resolution_height}"]}, {"rules": [{"action": "allow", "features": {"has_quick_plays_support": true}}], "value": ["--quickPlayPath", "${quickPlayPath}"]}, {"rules": [{"action": "allow", "features": {"is_quick_play_singleplayer": true}}], "value": ["--quickPlaySingleplayer", "${quickPlaySingleplayer}"]}, {"rules": [{"action": "allow", "features": {"is_quick_play_multiplayer": true}}], "value": ["--quickPlayMultiplayer", "${quickPlayMultiplayer}"]}, {"rules": [{"action": "allow", "features": {"is_quick_play_realms": true}}], "value": ["--quickPlayRealms", "${quickPlayRealms}"]}], "jvm": [{"rules": [{"action": "allow", "os": {"name": "osx"}}], "value": ["-XstartOnFirstThread"]}, {"rules": [{"action": "allow", "os": {"name": "windows"}}], "value": "-XX:HeapDumpPath=MojangTricksIntelDriversForPerformance_javaw.exe_minecraft.exe.heapdump"}, {"rules": [{"action": "allow", "os": {"arch": "x86"}}], "value": "-Xss1M"}, "-Djava.library.path=${natives_directory}", "-Djna.tmpdir=${natives_directory}", "-Dorg.lwjgl.system.SharedLibraryExtractPath=${natives_directory}", "-Dio.netty.native.workdir=${natives_directory}", "-Dminecraft.launcher.brand=${launcher_name}", "-Dminecraft.launcher.version=${launcher_version}", "-cp", "${classpath}"]}, "assetIndex": {"id": "5", "sha1": "1fb34606b21ae29b59b7feef1563466b90244eb0", "size": 412473, "totalSize": 638060325, "url": "https://piston-meta.mojang.com/v1/packages/1fb34606b21ae29b59b7feef1563466b90244eb0/5.json"}, "assets": "5", "complianceLevel": 1, "downloads": {"client": {"sha1": "0c3ec587af28e5a785c0b4a7b8a30f9a8f78f838", "size": 23028853, "url": "https://piston-data.mojang.com/v1/objects/0c3ec587af28e5a785c0b4a7b8a30f9a8f78f838/client.jar"}, "client_mappings": {"sha1": "6c48521eed01fe2e8ecdadbd5ae348415f3c47da", "size": 8001795, "url": "https://piston-data.mojang.com/v1/objects/6c48521eed01fe2e8ecdadbd5ae348415f3c47da/client.txt"}, "server": {"sha1": "84194a2f286ef7c14ed7ce0090dba59902951553", "size": 47791053, "url": "https://piston-data.mojang.com/v1/objects/84194a2f286ef7c14ed7ce0090dba59902951553/server.jar"}, "server_mappings": {"sha1": "0b4dba049482496c507b2387a73a913230ebbd76", "size": 6154195, "url": "https://piston-data.mojang.com/v1/objects/0b4dba049482496c507b2387a73a913230ebbd76/server.txt"}}, "id": "1.20.1", "javaVersion": {"component": "java-runtime-gamma", "majorVersion": 17}, "libraries": [{"downloads": {"artifact": {"path": "ca/weblite/java-objc-bridge/1.1/java-objc-bridge-1.1.jar", "sha1": "1227f9e0666314f9de41477e3ec277e542ed7f7b", "size": 1330045, "url": "https://libraries.minecraft.net/ca/weblite/java-objc-bridge/1.1/java-objc-bridge-1.1.jar"}}, "name": "ca.weblite:java-objc-bridge:1.1", "rules": [{"action": "allow", "os": {"name": "osx"}}]}, {"downloads": {"artifact": {"path": "com/github/oshi/oshi-core/6.2.2/oshi-core-6.2.2.jar", "sha1": "54f5efc19bca95d709d9a37d19ffcbba3d21c1a6", "size": 947865, "url": "https://libraries.minecraft.net/com/github/oshi/oshi-core/6.2.2/oshi-core-6.2.2.jar"}}, "name": "com.github.oshi:oshi-core:6.2.2"}, {"downloads": {"artifact": {"path": "com/google/code/gson/gson/2.10/gson-2.10.jar", "sha1": "dd9b193aef96e973d5a11ab13cd17430c2e4306b", "size": 286235, "url": "https://libraries.minecraft.net/com/google/code/gson/gson/2.10/gson-2.10.jar"}}, "name": "com.google.code.gson:gson:2.10"}, {"downloads": {"artifact": {"path": "com/google/guava/failureaccess/1.0.1/failureaccess-1.0.1.jar", "sha1": "1dcf1de382a0bf95a3d8b0849546c88bac1292c9", "size": 4617, "url": "https://libraries.minecraft.net/com/google/guava/failureaccess/1.0.1/failureaccess-1.0.1.jar"}}, "name": "com.google.guava:failureaccess:1.0.1"}, {"downloads": {"artifact": {"path": "com/google/guava/guava/31.1-jre/guava-31.1-jre.jar", "sha1": "60458f877d055d0c9114d9e1a2efb737b4bc282c", "size": 2959479, "url": "https://libraries.minecraft.net/com/google/guava/guava/31.1-jre/guava-31.1-jre.jar"}}, "name": "com.google.guava:guava:31.1-jre"}, {"downloads": {"artifact": {"path": "com/ibm/icu/icu4j/71.1/icu4j-71.1.jar", "sha1": "9e7d3304c23f9ba5cb71915f7cce23231a57a445", "size": 13963762, "url": "https://libraries.minecraft.net/com/ibm/icu/icu4j/71.1/icu4j-71.1.jar"}}, "name": "com.ibm.icu:icu4j:71.1"}, {"downloads": {"artifact": {"path": "com/mojang/authlib/4.0.43/authlib-4.0.43.jar", "sha1": "2ff9d747a77570a07a60d32ac77eb6162ad2a2d9", "size": 121766, "url": "https://libraries.minecraft.net/com/mojang/authlib/4.0.43/authlib-4.0.43.jar"}}, "name": "com.mojang:authlib:4.0.43"}, {"downloads": {"artifact": {"path": "com/mojang/blocklist/1.0.10/blocklist-1.0.10.jar", "sha1": "5c685c5ffa94c4cd39496c7184c1d122e515ecef", "size": 964, "url": "https://libraries.minecraft.net/com/mojang/blocklist/1.0.10/blocklist-1.0.10.jar"}}, "name": "com.mojang:blocklist:1.0.10"}, {"downloads": {"artifact": {"path": "com/mojang/brigadier/1.1.8/brigadier-1.1.8.jar", "sha1": "5244ce82c3337bba4a196a3ce858bfaecc74404a", "size": 77121, "url": "https://libraries.minecraft.net/com/mojang/brigadier/1.1.8/brigadier-1.1.8.jar"}}, "name": "com.mojang:brigadier:1.1.8"}, {"downloads": {"artifact": {"path": "com/mojang/datafixerupper/6.0.8/datafixerupper-6.0.8.jar", "sha1": "3ba4a30557a9b057760af4011f909ba619fc5125", "size": 689960, "url": "https://libraries.minecraft.net/com/mojang/datafixerupper/6.0.8/datafixerupper-6.0.8.jar"}}, "name": "com.mojang:datafixerupper:6.0.8"}, {"downloads": {"artifact": {"path": "com/mojang/logging/1.1.1/logging-1.1.1.jar", "sha1": "832b8e6674a9b325a5175a3a6267dfaf34c85139", "size": 15343, "url": "https://libraries.minecraft.net/com/mojang/logging/1.1.1/logging-1.1.1.jar"}}, "name": "com.mojang:logging:1.1.1"}, {"downloads": {"artifact": {"path": "com/mojang/patchy/2.2.10/patchy-2.2.10.jar", "sha1": "da05971b07cbb379d002cf7eaec6a2048211fefc", "size": 4439, "url": "https://libraries.minecraft.net/com/mojang/patchy/2.2.10/patchy-2.2.10.jar"}}, "name": "com.mojang:patchy:2.2.10"}, {"downloads": {"artifact": {"path": "com/mojang/text2speech/1.17.9/text2speech-1.17.9.jar", "sha1": "3cad216e3a7f0c19b4b394388bc9ffc446f13b14", "size": 12243, "url": "https://libraries.minecraft.net/com/mojang/text2speech/1.17.9/text2speech-1.17.9.jar"}}, "name": "com.mojang:text2speech:1.17.9"}, {"downloads": {"artifact": {"path": "commons-codec/commons-codec/1.15/commons-codec-1.15.jar", "sha1": "49d94806b6e3dc933dacbd8acb0fdbab8ebd1e5d", "size": 353793, "url": "https://libraries.minecraft.net/commons-codec/commons-codec/1.15/commons-codec-1.15.jar"}}, "name": "commons-codec:commons-codec:1.15"}, {"downloads": {"artifact": {"path": "commons-io/commons-io/2.11.0/commons-io-2.11.0.jar", "sha1": "a2503f302b11ebde7ebc3df41daebe0e4eea3689", "size": 327135, "url": "https://libraries.minecraft.net/commons-io/commons-io/2.11.0/commons-io-2.11.0.jar"}}, "name": "commons-io:commons-io:2.11.0"}, {"downloads": {"artifact": {"path": "commons-logging/commons-logging/1.2/commons-logging-1.2.jar", "sha1": "4bfc12adfe4842bf07b657f0369c4cb522955686", "size": 61829, "url": "https://libraries.minecraft.net/commons-logging/commons-logging/1.2/commons-logging-1.2.jar"}}, "name": "commons-logging:commons-logging:1.2"}, {"downloads": {"artifact": {"path": "io/netty/netty-buffer/4.1.82.Final/netty-buffer-4.1.82.Final.jar", "sha1": "a544270cf1ae8b8077082f5036436a9a9971ea71", "size": 304664, "url": "https://libraries.minecraft.net/io/netty/netty-buffer/4.1.82.Final/netty-buffer-4.1.82.Final.jar"}}, "name": "io.netty:netty-buffer:4.1.82.Final"}, {"downloads": {"artifact": {"path": "io/netty/netty-codec/4.1.82.Final/netty-codec-4.1.82.Final.jar", "sha1": "b77200379acb345a9ffdece1c605e591ac3e4e0a", "size": 339155, "url": "https://libraries.minecraft.net/io/netty/netty-codec/4.1.82.Final/netty-codec-4.1.82.Final.jar"}}, "name": "io.netty:netty-codec:4.1.82.Final"}, {"downloads": {"artifact": {"path": "io/netty/netty-common/4.1.82.Final/netty-common-4.1.82.Final.jar", "sha1": "022d148e85c3f5ebdacc0ce1f5aabb1d420f73f3", "size": 653880, "url": "https://libraries.minecraft.net/io/netty/netty-common/4.1.82.Final/netty-common-4.1.82.Final.jar"}}, "name": "io.netty:netty-common:4.1.82.Final"}, {"downloads": {"artifact": {"path": "io/netty/netty-handler/4.1.82.Final/netty-handler-4.1.82.Final.jar", "sha1": "644041d1fa96a5d3130a29e8978630d716d76e38", "size": 538569, "url": "https://libraries.minecraft.net/io/netty/netty-handler/4.1.82.Final/netty-handler-4.1.82.Final.jar"}}, "name": "io.netty:netty-handler:4.1.82.Final"}, {"downloads": {"artifact": {"path": "io/netty/netty-resolver/4.1.82.Final/netty-resolver-4.1.82.Final.jar", "sha1": "38f665ae8dcd29032eea31245ba7806bed2e0fa8", "size": 37776, "url": "https://libraries.minecraft.net/io/netty/netty-resolver/4.1.82.Final/netty-resolver-4.1.82.Final.jar"}}, "name": "io.netty:netty-resolver:4.1.82.Final"}, {"downloads": {"artifact": {"path": "io/netty/netty-transport-classes-epoll/4.1.82.Final/netty-transport-classes-epoll-4.1.82.Final.jar", "sha1": "e7c7dd18deac93105797f30057c912651ea76521", "size": 142066, "url": "https://libraries.minecraft.net/io/netty/netty-transport-classes-epoll/4.1.82.Final/netty-transport-classes-epoll-4.1.82.Final.jar"}}, "name": "io.netty:netty-transport-classes-epoll:4.1.82.Final"}, {"downloads": {"artifact": {"path": "io/netty/netty-transport-native-epoll/4.1.82.Final/netty-transport-native-epoll-4.1.82.Final-linux-aarch_64.jar", "sha1": "476409d6255001ca53a55f65b01c13822f8dc93a", "size": 39489, "url": "https://libraries.minecraft.net/io/netty/netty-transport-native-epoll/4.1.82.Final/netty-transport-native-epoll-4.1.82.Final-linux-aarch_64.jar"}}, "name": "io.netty:netty-transport-native-epoll:4.1.82.Final:linux-aarch_64", "rules": [{"action": "allow", "os": {"name": "linux"}}]}, {"downloads": {"artifact": {"path": "io/netty/netty-transport-native-epoll/4.1.82.Final/netty-transport-native-epoll-4.1.82.Final-linux-x86_64.jar", "sha1": "c7350a71920f3ae9142945e25fed4846cce53374", "size": 37922, "url": "https://libraries.minecraft.net/io/netty/netty-transport-native-epoll/4.1.82.Final/netty-transport-native-epoll-4.1.82.Final-linux-x86_64.jar"}}, "name": "io.netty:netty-transport-native-epoll:4.1.82.Final:linux-x86_64", "rules": [{"action": "allow", "os": {"name": "linux"}}]}, {"downloads": {"artifact": {"path": "io/netty/netty-transport-native-unix-common/4.1.82.Final/netty-transport-native-unix-common-4.1.82.Final.jar", "sha1": "3e895b35ca1b8a0eca56cacff4c2dde5d2c6abce", "size": 43684, "url": "https://libraries.minecraft.net/io/netty/netty-transport-native-unix-common/4.1.82.Final/netty-transport-native-unix-common-4.1.82.Final.jar"}}, "name": "io.netty:netty-transport-native-unix-common:4.1.82.Final"}, {"downloads": {"artifact": {"path": "io/netty/netty-transport/4.1.82.Final/netty-transport-4.1.82.Final.jar", "sha1": "e431a218d91acb6476ccad5f5aafde50aa3945ca", "size": 485752, "url": "https://libraries.minecraft.net/io/netty/netty-transport/4.1.82.Final/netty-transport-4.1.82.Final.jar"}}, "name": "io.netty:netty-transport:4.1.82.Final"}, {"downloads": {"artifact": {"path": "it/unimi/dsi/fastutil/8.5.9/fastutil-8.5.9.jar", "sha1": "bb7ea75ecdb216654237830b3a96d87ad91f8cc5", "size": 23376043, "url": "https://libraries.minecraft.net/it/unimi/dsi/fastutil/8.5.9/fastutil-8.5.9.jar"}}, "name": "it.unimi.dsi:fastutil:8.5.9"}, {"downloads": {"artifact": {"path": "net/java/dev/jna/jna-platform/5.12.1/jna-platform-5.12.1.jar", "sha1": "097406a297c852f4a41e688a176ec675f72e8329", "size": 1356627, "url": "https://libraries.minecraft.net/net/java/dev/jna/jna-platform/5.12.1/jna-platform-5.12.1.jar"}}, "name": "net.java.dev.jna:jna-platform:5.12.1"}, {"downloads": {"artifact": {"path": "net/java/dev/jna/jna/5.12.1/jna-5.12.1.jar", "sha1": "b1e93a735caea94f503e95e6fe79bf9cdc1e985d", "size": 1866196, "url": "https://libraries.minecraft.net/net/java/dev/jna/jna/5.12.1/jna-5.12.1.jar"}}, "name": "net.java.dev.jna:jna:5.12.1"}, {"downloads": {"artifact": {"path": "net/sf/jopt-simple/jopt-simple/5.0.4/jopt-simple-5.0.4.jar", "sha1": "4fdac2fbe92dfad86aa6e9301736f6b4342a3f5c", "size": 78146, "url": "https://libraries.minecraft.net/net/sf/jopt-simple/jopt-simple/5.0.4/jopt-simple-5.0.4.jar"}}, "name": "net.sf.jopt-simple:jopt-simple:5.0.4"}, {"downloads": {"artifact": {"path": "org/apache/commons/commons-compress/1.21/commons-compress-1.21.jar", "sha1": "4ec95b60d4e86b5c95a0e919cb172a0af98011ef", "size": 1018316, "url": "https://libraries.minecraft.net/org/apache/commons/commons-compress/1.21/commons-compress-1.21.jar"}}, "name": "org.apache.commons:commons-compress:1.21"}, {"downloads": {"artifact": {"path": "org/apache/commons/commons-lang3/3.12.0/commons-lang3-3.12.0.jar", "sha1": "c6842c86792ff03b9f1d1fe2aab8dc23aa6c6f0e", "size": 587402, "url": "https://libraries.minecraft.net/org/apache/commons/commons-lang3/3.12.0/commons-lang3-3.12.0.jar"}}, "name": "org.apache.commons:commons-lang3:3.12.0"}, {"downloads": {"artifact": {"path": "org/apache/httpcomponents/httpclient/4.5.13/httpclient-4.5.13.jar", "sha1": "e5f6cae5ca7ecaac1ec2827a9e2d65ae2869cada", "size": 780321, "url": "https://libraries.minecraft.net/org/apache/httpcomponents/httpclient/4.5.13/httpclient-4.5.13.jar"}}, "name": "org.apache.httpcomponents:httpclient:4.5.13"}, {"downloads": {"artifact": {"path": "org/apache/httpcomponents/httpcore/4.4.15/httpcore-4.4.15.jar", "sha1": "7f2e0c573eaa7a74bac2e89b359e1f73d92a0a1d", "size": 328324, "url": "https://libraries.minecraft.net/org/apache/httpcomponents/httpcore/4.4.15/httpcore-4.4.15.jar"}}, "name": "org.apache.httpcomponents:httpcore:4.4.15"}, {"downloads": {"artifact": {"path": "org/apache/logging/log4j/log4j-api/2.19.0/log4j-api-2.19.0.jar", "sha1": "ea1b37f38c327596b216542bc636cfdc0b8036fa", "size": 317566, "url": "https://libraries.minecraft.net/org/apache/logging/log4j/log4j-api/2.19.0/log4j-api-2.19.0.jar"}}, "name": "org.apache.logging.log4j:log4j-api:2.19.0"}, {"downloads": {"artifact": {"path": "org/apache/logging/log4j/log4j-core/2.19.0/log4j-core-2.19.0.jar", "sha1": "3b6eeb4de4c49c0fe38a4ee27188ff5fee44d0bb", "size": 1864386, "url": "https://libraries.minecraft.net/org/apache/logging/log4j/log4j-core/2.19.0/log4j-core-2.19.0.jar"}}, "name": "org.apache.logging.log4j:log4j-core:2.19.0"}, {"downloads": {"artifact": {"path": "org/apache/logging/log4j/log4j-slf4j2-impl/2.19.0/log4j-slf4j2-impl-2.19.0.jar", "sha1": "5c04bfdd63ce9dceb2e284b81e96b6a70010ee10", "size": 27721, "url": "https://libraries.minecraft.net/org/apache/logging/log4j/log4j-slf4j2-impl/2.19.0/log4j-slf4j2-impl-2.19.0.jar"}}, "name": "org.apache.logging.log4j:log4j-slf4j2-impl:2.19.0"}, {"downloads": {"artifact": {"path": "org/joml/joml/1.10.5/joml-1.10.5.jar", "sha1": "22566d58af70ad3d72308bab63b8339906deb649", "size": 712082, "url": "https://libraries.minecraft.net/org/joml/joml/1.10.5/joml-1.10.5.jar"}}, "name": "org.joml:joml:1.10.5"}, {"downloads": {"artifact": {"path": "org/lwjgl/lwjgl-glfw/3.3.1/lwjgl-glfw-3.3.1.jar", "sha1": "cbac1b8d30cb4795149c1ef540f912671a8616d0", "size": 128801, "url": "https://libraries.minecraft.net/org/lwjgl/lwjgl-glfw/3.3.1/lwjgl-glfw-3.3.1.jar"}}, "name": "org.lwjgl:lwjgl-glfw:3.3.1"}, {"downloads": {"artifact": {"path": "org/lwjgl/lwjgl-glfw/3.3.1/lwjgl-glfw-3.3.1-natives-linux.jar", "sha1": "81716978214ecbda15050ca394b06ef61501a49e", "size": 119817, "url": "https://libraries.minecraft.net/org/lwjgl/lwjgl-glfw/3.3.1/lwjgl-glfw-3.3.1-natives-linux.jar"}}, "name": "org.lwjgl:lwjgl-glfw:3.3.1:natives-linux", "rules": [{"action": "allow", "os": {"name": "linux"}}]}, {"downloads": {"artifact": {"path": "org/lwjgl/lwjgl-glfw/3.3.1/lwjgl-glfw-3.3.1-natives-macos.jar", "sha1": "9ec4ce1fc8c85fdef03ef4ff2aace6f5775fb280", "size": 131655, "url": "https://libraries.minecraft.net/org/lwjgl/lwjgl-glfw/3.3.1/lwjgl-glfw-3.3.1-natives-macos.jar"}}, "name": "org.lwjgl:lwjgl-glfw:3.3.1:natives-macos", "rules": [{"action": "allow", "os": {"name": "osx"}}]}, {"downloads": {"artifact": {"path": "org/lwjgl/lwjgl-glfw/3.3.1/lwjgl-glfw-3.3.1-natives-macos-arm64.jar", "sha1": "cac0d3f712a3da7641fa174735a5f315de7ffe0a", "size": 129077, "url": "https://libraries.minecraft.net/org/lwjgl/lwjgl-glfw/3.3.1/lwjgl-glfw-3.3.1-natives-macos-arm64.jar"}}, "name": "org.lwjgl:lwjgl-glfw:3.3.1:natives-macos-arm64", "rules": [{"action": "allow", "os": {"name": "osx"}}]}, {"downloads": {"artifact": {"path": "org/lwjgl/lwjgl-glfw/3.3.1/lwjgl-glfw-3.3.1-natives-windows.jar", "sha1": "ed892f945cf7e79c8756796f32d00fa4ceaf573b", "size": 145512, "url": "https://libraries.minecraft.net/org/lwjgl/lwjgl-glfw/3.3.1/lwjgl-glfw-3.3.1-natives-windows.jar"}}, "name": "org.lwjgl:lwjgl-glfw:3.3.1:natives-windows", "rules": [{"action": "allow", "os": {"name": "windows"}}]}, {"downloads": {"artifact": {"path": "org/lwjgl/lwjgl-glfw/3.3.1/lwjgl-glfw-3.3.1-natives-windows-arm64.jar", "sha1": "beda65ee503443e60aa196d58ed31f8d001dc22a", "size": 123808, "url": "https://libraries.minecraft.net/org/lwjgl/lwjgl-glfw/3.3.1/lwjgl-glfw-3.3.1-natives-windows-arm64.jar"}}, "name": "org.lwjgl:lwjgl-glfw:3.3.1:natives-windows-arm64", "rules": [{"action": "allow", "os": {"name": "windows"}}]}, {"downloads": {"artifact": {"path": "org/lwjgl/lwjgl-glfw/3.3.1/lwjgl-glfw-3.3.1-natives-windows-x86.jar", "sha1": "b997e3391d6ce8f05487e7335d95c606043884a1", "size": 139251, "url": "https://libraries.minecraft.net/org/lwjgl/lwjgl-glfw/3.3.1/lwjgl-glfw-3.3.1-natives-windows-x86.jar"}}, "name": "org.lwjgl:lwjgl-glfw:3.3.1:natives-windows-x86", "rules": [{"action": "allow", "os": {"name": "windows"}}]}, {"downloads": {"artifact": {"path": "org/lwjgl/lwjgl-jemalloc/3.3.1/lwjgl-jemalloc-3.3.1.jar", "sha1": "a817bcf213db49f710603677457567c37d53e103", "size": 36601, "url": "https://libraries.minecraft.net/org/lwjgl/lwjgl-jemalloc/3.3.1/lwjgl-jemalloc-3.3.1.jar"}}, "name": "org.lwjgl:lwjgl-jemalloc:3.3.1"}, {"downloads": {"artifact": {"path": "org/lwjgl/lwjgl-jemalloc/3.3.1/lwjgl-jemalloc-3.3.1-natives-linux.jar", "sha1": "33dbb017b6ed6b25f993ad9d56741a49e7937718", "size": 166524, "url": "https://libraries.minecraft.net/org/lwjgl/lwjgl-jemalloc/3.3.1/lwjgl-jemalloc-3.3.1-natives-linux.jar"}}, "name": "org.lwjgl:lwjgl-jemalloc:3.3.1:natives-linux", "rules": [{"action": "allow", "os": {"name": "linux"}}]}, {"downloads": {"artifact": {"path": "org/lwjgl/lwjgl-jemalloc/3.3.1/lwjgl-jemalloc-3.3.1-natives-macos.jar", "sha1": "56424dc8db3cfb8e7b594aa6d59a4f4387b7f544", "size": 117480, "url": "https://libraries.minecraft.net/org/lwjgl/lwjgl-jemalloc/3.3.1/lwjgl-jemalloc-3.3.1-natives-macos.jar"}}, "name": "org.lwjgl:lwjgl-jemalloc:3.3.1:natives-macos", "rules": [{"action": "allow", "os": {"name": "osx"}}]}, {"downloads": {"artifact": {"path": "org/lwjgl/lwjgl-jemalloc/3.3.1/lwjgl-jemalloc-3.3.1-natives-macos-arm64.jar", "sha1": "e577b87d8ad2ade361aaea2fcf226c660b15dee8", "size": 103475, "url": "https://libraries.minecraft.net/org/lwjgl/lwjgl-jemalloc/3.3.1/lwjgl-jemalloc-3.3.1-natives-macos-arm64.jar"}}, "name": "org.lwjgl:lwjgl-jemalloc:3.3.1:natives-macos-arm64", "rules": [{"action": "allow", "os": {"name": "osx"}}]}, {"downloads": {"artifact": {"path": "org/lwjgl/lwjgl-jemalloc/3.3.1/lwjgl-jemalloc-3.3.1-natives-windows.jar", "sha1": "948a89b76a16aa324b046ae9308891216ffce5f9", "size": 135585, "url": "https://libraries.minecraft.net/org/lwjgl/lwjgl-jemalloc/3.3.1/lwjgl-jemalloc-3.3.1-natives-windows.jar"}}, "name": "org.lwjgl:lwjgl-jemalloc:3.3.1:natives-windows", "rules": [{"action": "allow", "os": {"name": "windows"}}]}, {"downloads": {"artifact": {"path": "org/lwjgl/lwjgl-jemalloc/3.3.1/lwjgl-jemalloc-3.3.1-natives-windows-arm64.jar", "sha1": "cae85c4edb219c88b6a0c26a87955ad98dc9519d", "size": 114250, "url": "https://libraries.minecraft.net/org/lwjgl/lwjgl-jemalloc/3.3.1/lwjgl-jemalloc-3.3.1-natives-windows-arm64.jar"}}, "name": "org.lwjgl:lwjgl-jemalloc:3.3.1:natives-windows-arm64", "rules": [{"action": "allow", "os": {"name": "windows"}}]}, {"downloads": {"artifact": {"path": "org/lwjgl/lwjgl-jemalloc/3.3.1/lwjgl-jemalloc-3.3.1-natives-windows-x86.jar", "sha1": "fb476c8ec110e1c137ad3ce8a7f7bfe6b11c6324", "size": 110405, "url": "https://libraries.minecraft.net/org/lwjgl/lwjgl-jemalloc/3.3.1/lwjgl-jemalloc-3.3.1-natives-windows-x86.jar"}}, "name": "org.lwjgl:lwjgl-jemalloc:3.3.1:natives-windows-x86", "rules": [{"action": "allow", "os": {"name": "windows"}}]}, {"downloads": {"artifact": {"path": "org/lwjgl/lwjgl-openal/3.3.1/lwjgl-openal-3.3.1.jar", "sha1": "2623a6b8ae1dfcd880738656a9f0243d2e6840bd", "size": 88237, "url": "https://libraries.minecraft.net/org/lwjgl/lwjgl-openal/3.3.1/lwjgl-openal-3.3.1.jar"}}, "name": "org.lwjgl:lwjgl-openal:3.3.1"}, {"downloads": {"artifact": {"path": "org/lwjgl/lwjgl-openal/3.3.1/lwjgl-openal-3.3.1-natives-linux.jar", "sha1": "f906b6439f6daa66001182ea7727e3467a93681b", "size": 476825, "url": "https://libraries.minecraft.net/org/lwjgl/lwjgl-openal/3.3.1/lwjgl-openal-3.3.1-natives-linux.jar"}}, "name": "org.lwjgl:lwjgl-openal:3.3.1:natives-linux", "rules": [{"action": "allow", "os": {"name": "linux"}}]}, {"downloads": {"artifact": {"path": "org/lwjgl/lwjgl-openal/3.3.1/lwjgl-openal-3.3.1-natives-macos.jar", "sha1": "3a57b8911835fb58b5e558d0ca0d28157e263d45", "size": 397196, "url": "https://libraries.minecraft.net/org/lwjgl/lwjgl-openal/3.3.1/lwjgl-openal-3.3.1-natives-macos.jar"}}, "name": "org.lwjgl:lwjgl-openal:3.3.1:natives-macos", "rules": [{"action": "allow", "os": {"name": "osx"}}]}, {"downloads": {"artifact": {"path": "org/lwjgl/lwjgl-openal/3.3.1/lwjgl-openal-3.3.1-natives-macos-arm64.jar", "sha1": "23d55e7490b57495320f6c9e1936d78fd72c4ef8", "size": 346125, "url": "https://libraries.minecraft.net/org/lwjgl/lwjgl-openal/3.3.1/lwjgl-openal-3.3.1-natives-macos-arm64.jar"}}, "name": "org.lwjgl:lwjgl-openal:3.3.1:natives-macos-arm64", "rules": [{"action": "allow", "os": {"name": "osx"}}]}, {"downloads": {"artifact": {"path": "org/lwjgl/lwjgl-openal/3.3.1/lwjgl-openal-3.3.1-natives-windows.jar", "sha1": "30a474d0e57193d7bc128849a3ab66bc9316fdb1", "size": 576872, "url": "https://libraries.minecraft.net/org/lwjgl/lwjgl-openal/3.3.1/lwjgl-openal-3.3.1-natives-windows.jar"}}, "name": "org.lwjgl:lwjgl-openal:3.3.1:natives-windows", "rules": [{"action": "allow", "os": {"name": "windows"}}]}, {"downloads": {"artifact": {"path": "org/lwjgl/lwjgl-openal/3.3.1/lwjgl-openal-3.3.1-natives-windows-arm64.jar", "sha1": "40d65f1a7368a2aa47336f9cb69f5a190cf9975a", "size": 505234, "url": "https://libraries.minecraft.net/org/lwjgl/lwjgl-openal/3.3.1/lwjgl-openal-3.3.1-natives-windows-arm64.jar"}}, "name": "org.lwjgl:lwjgl-openal:3.3.1:natives-windows-arm64", "rules": [{"action": "allow", "os": {"name": "windows"}}]}, {"downloads": {"artifact": {"path": "org/lwjgl/lwjgl-openal/3.3.1/lwjgl-openal-3.3.1-natives-windows-x86.jar", "sha1": "888349f7b1be6fbae58bf8edfb9ef12def04c4e3", "size": 520313, "url": "https://libraries.minecraft.net/org/lwjgl/lwjgl-openal/3.3.1/lwjgl-openal-3.3.1-natives-windows-x86.jar"}}, "name": "org.lwjgl:lwjgl-openal:3.3.1:natives-windows-x86", "rules": [{"action": "allow", "os": {"name": "windows"}}]}, {"downloads": {"artifact": {"path": "org/lwjgl/lwjgl-opengl/3.3.1/lwjgl-opengl-3.3.1.jar", "sha1": "831a5533a21a5f4f81bbc51bb13e9899319b5411", "size": 921563, "url": "https://libraries.minecraft.net/org/lwjgl/lwjgl-opengl/3.3.1/lwjgl-opengl-3.3.1.jar"}}, "name": "org.lwjgl:lwjgl-opengl:3.3.1"}, {"downloads": {"artifact": {"path": "org/lwjgl/lwjgl-opengl/3.3.1/lwjgl-opengl-3.3.1-natives-linux.jar", "sha1": "ab9ab6fde3743e3550fa5d46d785ecb45b047d99", "size": 79125, "url": "https://libraries.minecraft.net/org/lwjgl/lwjgl-opengl/3.3.1/lwjgl-opengl-3.3.1-natives-linux.jar"}}, "name": "org.lwjgl:lwjgl-opengl:3.3.1:natives-linux", "rules": [{"action": "allow", "os": {"name": "linux"}}]}, {"downloads": {"artifact": {"path": "org/lwjgl/lwjgl-opengl/3.3.1/lwjgl-opengl-3.3.1-natives-macos.jar", "sha1": "a0d12697ea019a7362eff26475b0531340e876a6", "size": 40709, "url": "https://libraries.minecraft.net/org/lwjgl/lwjgl-opengl/3.3.1/lwjgl-opengl-3.3.1-natives-macos.jar"}}, "name": "org.lwjgl:lwjgl-opengl:3.3.1:natives-macos", "rules": [{"action": "allow", "os": {"name": "osx"}}]}, {"downloads": {"artifact": {"path": "org/lwjgl/lwjgl-opengl/3.3.1/lwjgl-opengl-3.3.1-natives-macos-arm64.jar", "sha1": "eafe34b871d966292e8db0f1f3d6b8b110d4e91d", "size": 41665, "url": "https://libraries.minecraft.net/org/lwjgl/lwjgl-opengl/3.3.1/lwjgl-opengl-3.3.1-natives-macos-arm64.jar"}}, "name": "org.lwjgl:lwjgl-opengl:3.3.1:natives-macos-arm64", "rules": [{"action": "allow", "os": {"name": "osx"}}]}, {"downloads": {"artifact": {"path": "org/lwjgl/lwjgl-opengl/3.3.1/lwjgl-opengl-3.3.1-natives-windows.jar", "sha1": "c1807e9bd571402787d7e37e3029776ae2513bb8", "size": 100205, "url": "https://libraries.minecraft.net/org/lwjgl/lwjgl-opengl/3.3.1/lwjgl-opengl-3.3.1-natives-windows.jar"}}, "name": "org.lwjgl:lwjgl-opengl:3.3.1:natives-windows", "rules": [{"action": "allow", "os": {"name": "windows"}}]}, {"downloads": {"artifact": {"path": "org/lwjgl/lwjgl-opengl/3.3.1/lwjgl-opengl-3.3.1-natives-windows-arm64.jar", "sha1": "527d78f1e9056aff3ed02ce93019c73c5e8f1721", "size": 82445, "url": "https://libraries.minecraft.net/org/lwjgl/lwjgl-opengl/3.3.1/lwjgl-opengl-3.3.1-natives-windows-arm64.jar"}}, "name": "org.lwjgl:lwjgl-opengl:3.3.1:natives-windows-arm64", "rules": [{"action": "allow", "os": {"name": "windows"}}]}, {"downloads": {"artifact": {"path": "org/lwjgl/lwjgl-opengl/3.3.1/lwjgl-opengl-3.3.1-natives-windows-x86.jar", "sha1": "deef3eb9b178ff2ff3ce893cc72ae741c3a17974", "size": 87463, "url": "https://libraries.minecraft.net/org/lwjgl/lwjgl-opengl/3.3.1/lwjgl-opengl-3.3.1-natives-windows-x86.jar"}}, "name": "org.lwjgl:lwjgl-opengl:3.3.1:natives-windows-x86", "rules": [{"action": "allow", "os": {"name": "windows"}}]}, {"downloads": {"artifact": {"path": "org/lwjgl/lwjgl-stb/3.3.1/lwjgl-stb-3.3.1.jar", "sha1": "b119297cf8ed01f247abe8685857f8e7fcf5980f", "size": 112380, "url": "https://libraries.minecraft.net/org/lwjgl/lwjgl-stb/3.3.1/lwjgl-stb-3.3.1.jar"}}, "name": "org.lwjgl:lwjgl-stb:3.3.1"}, {"downloads": {"artifact": {"path": "org/lwjgl/lwjgl-stb/3.3.1/lwjgl-stb-3.3.1-natives-linux.jar", "sha1": "3ee7aec8686e52867677110415566a5342a80230", "size": 227237, "url": "https://libraries.minecraft.net/org/lwjgl/lwjgl-stb/3.3.1/lwjgl-stb-3.3.1-natives-linux.jar"}}, "name": "org.lwjgl:lwjgl-stb:3.3.1:natives-linux", "rules": [{"action": "allow", "os": {"name": "linux"}}]}, {"downloads": {"artifact": {"path": "org/lwjgl/lwjgl-stb/3.3.1/lwjgl-stb-3.3.1-natives-macos.jar", "sha1": "def8879b8d38a47a4cc1d48b1f9a7b772e51258e", "size": 203582, "url": "https://libraries.minecraft.net/org/lwjgl/lwjgl-stb/3.3.1/lwjgl-stb-3.3.1-natives-macos.jar"}}, "name": "org.lwjgl:lwjgl-stb:3.3.1:natives-macos", "rules": [{"action": "allow", "os": {"name": "osx"}}]}, {"downloads": {"artifact": {"path": "org/lwjgl/lwjgl-stb/3.3.1/lwjgl-stb-3.3.1-natives-macos-arm64.jar", "sha1": "fcf073ed911752abdca5f0b00a53cfdf17ff8e8b", "size": 178408, "url": "https://libraries.minecraft.net/org/lwjgl/lwjgl-stb/3.3.1/lwjgl-stb-3.3.1-natives-macos-arm64.jar"}}, "name": "org.lwjgl:lwjgl-stb:3.3.1:natives-macos-arm64", "rules": [{"action": "allow", "os": {"name": "osx"}}]}, {"downloads": {"artifact": {"path": "org/lwjgl/lwjgl-stb/3.3.1/lwjgl-stb-3.3.1-natives-windows.jar", "sha1": "86315914ac119efdb02dc9e8e978ade84f1702af", "size": 256301, "url": "https://libraries.minecraft.net/org/lwjgl/lwjgl-stb/3.3.1/lwjgl-stb-3.3.1-natives-windows.jar"}}, "name": "org.lwjgl:lwjgl-stb:3.3.1:natives-windows", "rules": [{"action": "allow", "os": {"name": "windows"}}]}, {"downloads": {"artifact": {"path": "org/lwjgl/lwjgl-stb/3.3.1/lwjgl-stb-3.3.1-natives-windows-arm64.jar", "sha1": "fde63cdd2605c00636721a6c8b961e41d1f6b247", "size": 216848, "url": "https://libraries.minecraft.net/org/lwjgl/lwjgl-stb/3.3.1/lwjgl-stb-3.3.1-natives-windows-arm64.jar"}}, "name": "org.lwjgl:lwjgl-stb:3.3.1:natives-windows-arm64", "rules": [{"action": "allow", "os": {"name": "windows"}}]}, {"downloads": {"artifact": {"path": "org/lwjgl/lwjgl-stb/3.3.1/lwjgl-stb-3.3.1-natives-windows-x86.jar", "sha1": "a8d41f419eecb430b7c91ea2ce2c5c451cae2091", "size": 225147, "url": "https://libraries.minecraft.net/org/lwjgl/lwjgl-stb/3.3.1/lwjgl-stb-3.3.1-natives-windows-x86.jar"}}, "name": "org.lwjgl:lwjgl-stb:3.3.1:natives-windows-x86", "rules": [{"action": "allow", "os": {"name": "windows"}}]}, {"downloads": {"artifact": {"path": "org/lwjgl/lwjgl-tinyfd/3.3.1/lwjgl-tinyfd-3.3.1.jar", "sha1": "0ff1914111ef2e3e0110ef2dabc8d8cdaad82347", "size": 6767, "url": "https://libraries.minecraft.net/org/lwjgl/lwjgl-tinyfd/3.3.1/lwjgl-tinyfd-3.3.1.jar"}}, "name": "org.lwjgl:lwjgl-tinyfd:3.3.1"}, {"downloads": {"artifact": {"path": "org/lwjgl/lwjgl-tinyfd/3.3.1/lwjgl-tinyfd-3.3.1-natives-linux.jar", "sha1": "a35110b9471bea8cde826ab297550ee8c22f5035", "size": 45389, "url": "https://libraries.minecraft.net/org/lwjgl/lwjgl-tinyfd/3.3.1/lwjgl-tinyfd-3.3.1-natives-linux.jar"}}, "name": "org.lwjgl:lwjgl-tinyfd:3.3.1:natives-linux", "rules": [{"action": "allow", "os": {"name": "linux"}}]}, {"downloads": {"artifact": {"path": "org/lwjgl/lwjgl-tinyfd/3.3.1/lwjgl-tinyfd-3.3.1-natives-macos.jar", "sha1": "78641a0fa5e9afa714adfdd152c357930c97a1ce", "size": 44821, "url": "https://libraries.minecraft.net/org/lwjgl/lwjgl-tinyfd/3.3.1/lwjgl-tinyfd-3.3.1-natives-macos.jar"}}, "name": "org.lwjgl:lwjgl-tinyfd:3.3.1:natives-macos", "rules": [{"action": "allow", "os": {"name": "osx"}}]}, {"downloads": {"artifact": {"path": "org/lwjgl/lwjgl-tinyfd/3.3.1/lwjgl-tinyfd-3.3.1-natives-macos-arm64.jar", "sha1": "972ecc17bad3571e81162153077b4d47b7b9eaa9", "size": 41380, "url": "https://libraries.minecraft.net/org/lwjgl/lwjgl-tinyfd/3.3.1/lwjgl-tinyfd-3.3.1-natives-macos-arm64.jar"}}, "name": "org.lwjgl:lwjgl-tinyfd:3.3.1:natives-macos-arm64", "rules": [{"action": "allow", "os": {"name": "osx"}}]}, {"downloads": {"artifact": {"path": "org/lwjgl/lwjgl-tinyfd/3.3.1/lwjgl-tinyfd-3.3.1-natives-windows.jar", "sha1": "a5d830475ec0958d9fdba1559efa99aef211e6ff", "size": 127930, "url": "https://libraries.minecraft.net/org/lwjgl/lwjgl-tinyfd/3.3.1/lwjgl-tinyfd-3.3.1-natives-windows.jar"}}, "name": "org.lwjgl:lwjgl-tinyfd:3.3.1:natives-windows", "rules": [{"action": "allow", "os": {"name": "windows"}}]}, {"downloads": {"artifact": {"path": "org/lwjgl/lwjgl-tinyfd/3.3.1/lwjgl-tinyfd-3.3.1-natives-windows-arm64.jar", "sha1": "83a5e780df610829ff3a737822b4f931cffecd91", "size": 109139, "url": "https://libraries.minecraft.net/org/lwjgl/lwjgl-tinyfd/3.3.1/lwjgl-tinyfd-3.3.1-natives-windows-arm64.jar"}}, "name": "org.lwjgl:lwjgl-tinyfd:3.3.1:natives-windows-arm64", "rules": [{"action": "allow", "os": {"name": "windows"}}]}, {"downloads": {"artifact": {"path": "org/lwjgl/lwjgl-tinyfd/3.3.1/lwjgl-tinyfd-3.3.1-natives-windows-x86.jar", "sha1": "842eedd876fae354abc308c98a263f6bbc9e8a4d", "size": 110042, "url": "https://libraries.minecraft.net/org/lwjgl/lwjgl-tinyfd/3.3.1/lwjgl-tinyfd-3.3.1-natives-windows-x86.jar"}}, "name": "org.lwjgl:lwjgl-tinyfd:3.3.1:natives-windows-x86", "rules": [{"action": "allow", "os": {"name": "windows"}}]}, {"downloads": {"artifact": {"path": "org/lwjgl/lwjgl/3.3.1/lwjgl-3.3.1.jar", "sha1": "ae58664f88e18a9bb2c77b063833ca7aaec484cb", "size": 724243, "url": "https://libraries.minecraft.net/org/lwjgl/lwjgl/3.3.1/lwjgl-3.3.1.jar"}}, "name": "org.lwjgl:lwjgl:3.3.1"}, {"downloads": {"artifact": {"path": "org/lwjgl/lwjgl/3.3.1/lwjgl-3.3.1-natives-linux.jar", "sha1": "1de885aba434f934201b99f2f1afb142036ac189", "size": 110704, "url": "https://libraries.minecraft.net/org/lwjgl/lwjgl/3.3.1/lwjgl-3.3.1-natives-linux.jar"}}, "name": "org.lwjgl:lwjgl:3.3.1:natives-linux", "rules": [{"action": "allow", "os": {"name": "linux"}}]}, {"downloads": {"artifact": {"path": "org/lwjgl/lwjgl/3.3.1/lwjgl-3.3.1-natives-macos.jar", "sha1": "fc6bb723dec2cd031557dccb2a95f0ab80acb9db", "size": 55706, "url": "https://libraries.minecraft.net/org/lwjgl/lwjgl/3.3.1/lwjgl-3.3.1-natives-macos.jar"}}, "name": "org.lwjgl:lwjgl:3.3.1:natives-macos", "rules": [{"action": "allow", "os": {"name": "osx"}}]}, {"downloads": {"artifact": {"path": "org/lwjgl/lwjgl/3.3.1/lwjgl-3.3.1-natives-macos-arm64.jar", "sha1": "71d0d5e469c9c95351eb949064497e3391616ac9", "size": 42693, "url": "https://libraries.minecraft.net/org/lwjgl/lwjgl/3.3.1/lwjgl-3.3.1-natives-macos-arm64.jar"}}, "name": "org.lwjgl:lwjgl:3.3.1:natives-macos-arm64", "rules": [{"action": "allow", "os": {"name": "osx"}}]}, {"downloads": {"artifact": {"path": "org/lwjgl/lwjgl/3.3.1/lwjgl-3.3.1-natives-windows.jar", "sha1": "0036c37f16ab611b3aa11f3bcf80b1d509b4ce6b", "size": 159361, "url": "https://libraries.minecraft.net/org/lwjgl/lwjgl/3.3.1/lwjgl-3.3.1-natives-windows.jar"}}, "name": "org.lwjgl:lwjgl:3.3.1:natives-windows", "rules": [{"action": "allow", "os": {"name": "windows"}}]}, {"downloads": {"artifact": {"path": "org/lwjgl/lwjgl/3.3.1/lwjgl-3.3.1-natives-windows-arm64.jar", "sha1": "0f46cadcf95675908fd3a550d63d9d709cb68998", "size": 130064, "url": "https://libraries.minecraft.net/org/lwjgl/lwjgl/3.3.1/lwjgl-3.3.1-natives-windows-arm64.jar"}}, "name": "org.lwjgl:lwjgl:3.3.1:natives-windows-arm64", "rules": [{"action": "allow", "os": {"name": "windows"}}]}, {"downloads": {"artifact": {"path": "org/lwjgl/lwjgl/3.3.1/lwjgl-3.3.1-natives-windows-x86.jar", "sha1": "3b14f4beae9dd39791ec9e12190a9380cd8a3ce6", "size": 134695, "url": "https://libraries.minecraft.net/org/lwjgl/lwjgl/3.3.1/lwjgl-3.3.1-natives-windows-x86.jar"}}, "name": "org.lwjgl:lwjgl:3.3.1:natives-windows-x86", "rules": [{"action": "allow", "os": {"name": "windows"}}]}, {"downloads": {"artifact": {"path": "org/slf4j/slf4j-api/2.0.1/slf4j-api-2.0.1.jar", "sha1": "f48d81adce2abf5ad3cfe463df517952749e03bc", "size": 61388, "url": "https://libraries.minecraft.net/org/slf4j/slf4j-api/2.0.1/slf4j-api-2.0.1.jar"}}, "name": "org.slf4j:slf4j-api:2.0.1"}], "logging": {"client": {"argument": "-Dlog4j.configurationFile=${path}", "file": {"id": "client-1.12.xml", "sha1": "bd65e7d2e3c237be76cfbef4c2405033d7f91521", "size": 888, "url": "https://piston-data.mojang.com/v1/objects/bd65e7d2e3c237be76cfbef4c2405033d7f91521/client-1.12.xml"}, "type": "log4j2-xml"}}, "mainClass": "net.minecraft.client.main.Main", "minimumLauncherVersion": 21, "releaseTime": "2023-06-12T13:25:51+00:00", "time": "2023-06-12T13:25:51+00:00", "type": "release"} \ No newline at end of file diff --git a/build/downloadMcpConfig/output.zip b/build/downloadMcpConfig/output.zip new file mode 100644 index 000000000..a494234a8 Binary files /dev/null and b/build/downloadMcpConfig/output.zip differ diff --git a/build/extractSrg/output.srg b/build/extractSrg/output.srg new file mode 100644 index 000000000..56962fb44 --- /dev/null +++ b/build/extractSrg/output.srg @@ -0,0 +1,212139 @@ +tsrg2 left right +a com/mojang/math/Axis + a f_252495_ + b f_252529_ + c f_252392_ + d f_252436_ + e f_252393_ + f f_252403_ + ()V + static + a (F)Lorg/joml/Quaternionf; m_252774_ + static + 0 o p_253997_ + a (Lorg/joml/Vector3f;F)Lorg/joml/Quaternionf; m_252822_ + static + 0 o p_254025_ + 1 o p_254401_ + b (F)Lorg/joml/Quaternionf; m_253156_ + static + 0 o p_254110_ + c (F)Lorg/joml/Quaternionf; m_253246_ + static + 0 o p_254103_ + d (F)Lorg/joml/Quaternionf; m_253050_ + static + 0 o p_254442_ + e (F)Lorg/joml/Quaternionf; m_253127_ + static + 0 o p_254466_ + f (F)Lorg/joml/Quaternionf; m_252978_ + static + 0 o p_254437_ + of (Lorg/joml/Vector3f;)La; m_253057_ + static + 0 o p_254398_ + rotation (F)Lorg/joml/Quaternionf; m_252961_ + 0 o p_254545_ + rotationDegrees (F)Lorg/joml/Quaternionf; m_252977_ + 0 o p_253800_ +aa net/minecraft/SharedConstants + A f_142888_ + B f_285593_ + C f_142889_ + D f_142890_ + E f_142891_ + F f_142892_ + G f_279535_ + H f_142893_ + I f_142894_ + J f_142895_ + K f_142896_ + L f_142897_ + M f_142898_ + N f_142899_ + O f_142900_ + P f_142901_ + Q f_142902_ + R f_142903_ + S f_142904_ + T f_142905_ + U f_142906_ + V f_142907_ + W f_142908_ + X f_142909_ + Y f_142910_ + Z f_142911_ + a f_142912_ + aA f_183701_ + aB f_142944_ + aC f_142945_ + aD f_142946_ + aE f_142947_ + aF f_142948_ + aG f_136180_ + aH f_142949_ + aI f_142950_ + aJ f_142913_ + aK f_142914_ + aL f_183694_ + aM f_243898_ + aN f_260664_ + aO f_285651_ + aP f_136181_ + aQ f_279621_ + aR f_136182_ + aS f_136183_ + aT f_273866_ + aU f_142916_ + aV f_142917_ + aW f_142918_ + aX f_214355_ + aY f_242499_ + aZ f_136184_ + aa f_142926_ + ab f_142927_ + ac f_142928_ + ad f_142929_ + ae f_142930_ + af f_142931_ + ag f_214356_ + ah f_214357_ + ai f_238781_ + aj f_243691_ + ak f_183695_ + al f_142932_ + am f_142933_ + an f_183696_ + ao f_183697_ + ap f_183698_ + aq f_183699_ + ar f_142934_ + as f_142935_ + at f_142936_ + au f_142938_ + av f_142939_ + aw f_142940_ + ax f_142941_ + ay f_142942_ + az f_183700_ + b f_142951_ + ba f_142919_ + bb f_142920_ + bc f_142921_ + bd f_142922_ + be f_142923_ + bf f_142924_ + bg f_289041_ + bh f_142925_ + bi f_136185_ + c f_183702_ + d f_142952_ + e f_142954_ + f f_142955_ + g f_142956_ + h f_201847_ + i f_142957_ + j f_142958_ + k f_244360_ + l f_243916_ + m f_142959_ + n f_142965_ + o f_142966_ + p f_142967_ + q f_142968_ + r f_142970_ + s f_183703_ + t f_183704_ + u f_142972_ + v f_142973_ + w f_142974_ + x f_142975_ + y f_142886_ + z f_142887_ + ()V + static + ()V + a (Lad;)V m_183705_ + static + 0 o p_183706_ + a (Ljava/lang/String;Z)Ljava/lang/String; m_239657_ + static + 0 o p_239658_ + 1 o p_239659_ + a (C)Z m_136188_ + static + 0 o p_136189_ + a ()V m_142977_ + static + a (Lclt;)Z m_183707_ + static + 0 o p_183708_ + a (Ljava/lang/String;)Ljava/lang/String; m_136190_ + static + 0 o p_136191_ + b ()Lad; m_183709_ + static + c ()I m_136192_ + static + d ()V m_214358_ + static +aaa net/minecraft/network/protocol/game/ServerboundPickItemPacket + a f_134222_ + (Lsf;)V + 0 o p_179704_ + (I)V + 0 o p_134225_ + a (Lsk;)V m_5797_ + 0 o p_134229_ + a (Lzb;)V m_5797_ + 0 o p_134231_ + a ()I m_134232_ + a (Lsf;)V m_5779_ + 0 o p_134234_ +aab net/minecraft/network/protocol/game/ServerboundPlaceRecipePacket + a f_134235_ + b f_134236_ + c f_134237_ + (Lsf;)V + 0 o p_179706_ + (ILcjc;Z)V + 0 o p_134240_ + 1 o p_134241_ + 2 o p_134242_ + a (Lsk;)V m_5797_ + 0 o p_134246_ + a (Lzb;)V m_5797_ + 0 o p_134248_ + a ()I m_134249_ + a (Lsf;)V m_5779_ + 0 o p_134251_ + c ()Lacq; m_134252_ + d ()Z m_134253_ +aac net/minecraft/network/protocol/game/ServerboundPlayerAbilitiesPacket + a f_179707_ + b f_134254_ + (Lsf;)V + 0 o p_179709_ + (Lbyl;)V + 0 o p_134257_ + a ()Z m_134264_ + a (Lsk;)V m_5797_ + 0 o p_134261_ + a (Lzb;)V m_5797_ + 0 o p_134263_ + a (Lsf;)V m_5779_ + 0 o p_134266_ +aad net/minecraft/network/protocol/game/ServerboundPlayerActionPacket + a f_134267_ + b f_134268_ + c f_134269_ + d f_237981_ + (Laad$a;Lgu;Lha;I)V + 0 o p_237983_ + 1 o p_237984_ + 2 o p_237985_ + 3 o p_237986_ + (Lsf;)V + 0 o p_179711_ + (Laad$a;Lgu;Lha;)V + 0 o p_134272_ + 1 o p_134273_ + 2 o p_134274_ + a ()Lgu; m_134281_ + a (Lsk;)V m_5797_ + 0 o p_134278_ + a (Lzb;)V m_5797_ + 0 o p_134280_ + a (Lsf;)V m_5779_ + 0 o p_134283_ + c ()Lha; m_134284_ + d ()Laad$a; m_134285_ + e ()I m_237987_ +aad$a net/minecraft/network/protocol/game/ServerboundPlayerActionPacket$Action + a START_DESTROY_BLOCK + b ABORT_DESTROY_BLOCK + c STOP_DESTROY_BLOCK + d DROP_ALL_ITEMS + e DROP_ITEM + f RELEASE_USE_ITEM + g SWAP_ITEM_WITH_OFFHAND + h $VALUES + ()V + static + (Ljava/lang/String;I)V + 0 o p_134296_ + 1 o p_134297_ + a ()[Laad$a; m_179712_ + static + valueOf (Ljava/lang/String;)Laad$a; valueOf + static + 0 o p_134299_ + values ()[Laad$a; values + static +aae net/minecraft/network/protocol/game/ServerboundPlayerCommandPacket + a f_134301_ + b f_134302_ + c f_134303_ + (Lsf;)V + 0 o p_179714_ + (Lbfj;Laae$a;)V + 0 o p_134306_ + 1 o p_134307_ + (Lbfj;Laae$a;I)V + 0 o p_134309_ + 1 o p_134310_ + 2 o p_134311_ + a (Lsk;)V m_5797_ + 0 o p_134315_ + a (Lzb;)V m_5797_ + 0 o p_134317_ + a ()I m_179715_ + a (Lsf;)V m_5779_ + 0 o p_134319_ + c ()Laae$a; m_134320_ + d ()I m_134321_ +aae$a net/minecraft/network/protocol/game/ServerboundPlayerCommandPacket$Action + a PRESS_SHIFT_KEY + b RELEASE_SHIFT_KEY + c STOP_SLEEPING + d START_SPRINTING + e STOP_SPRINTING + f START_RIDING_JUMP + g STOP_RIDING_JUMP + h OPEN_INVENTORY + i START_FALL_FLYING + j $VALUES + ()V + static + (Ljava/lang/String;I)V + 0 o p_134334_ + 1 o p_134335_ + a ()[Laae$a; m_179716_ + static + valueOf (Ljava/lang/String;)Laae$a; valueOf + static + 0 o p_134337_ + values ()[Laae$a; values + static +aaf net/minecraft/network/protocol/game/ServerboundPlayerInputPacket + a f_179717_ + b f_179718_ + c f_134339_ + d f_134340_ + e f_134341_ + f f_134342_ + (Lsf;)V + 0 o p_179720_ + (FFZZ)V + 0 o p_134345_ + 1 o p_134346_ + 2 o p_134347_ + 3 o p_134348_ + a ()F m_134355_ + a (Lsk;)V m_5797_ + 0 o p_134352_ + a (Lzb;)V m_5797_ + 0 o p_134354_ + a (Lsf;)V m_5779_ + 0 o p_134357_ + c ()F m_134358_ + d ()Z m_134359_ + e ()Z m_134360_ +aag net/minecraft/network/protocol/game/ServerboundPongPacket + a f_179721_ + (Lsf;)V + 0 o p_179725_ + (I)V + 0 o p_179723_ + a (Lsk;)V m_5797_ + 0 o p_179729_ + a (Lzb;)V m_5797_ + 0 o p_179731_ + a ()I m_179732_ + a (Lsf;)V m_5779_ + 0 o p_179727_ +aah net/minecraft/network/protocol/game/ServerboundRecipeBookChangeSettingsPacket + a f_134361_ + b f_134362_ + c f_134363_ + (Lsf;)V + 0 o p_179734_ + (Lccq;ZZ)V + 0 o p_134366_ + 1 o p_134367_ + 2 o p_134368_ + a (Lsk;)V m_5797_ + 0 o p_134372_ + a (Lzb;)V m_5797_ + 0 o p_134374_ + a ()Lccq; m_134375_ + a (Lsf;)V m_5779_ + 0 o p_134377_ + c ()Z m_134378_ + d ()Z m_134379_ +aai net/minecraft/network/protocol/game/ServerboundRecipeBookSeenRecipePacket + a f_134380_ + (Lsf;)V + 0 o p_179736_ + (Lcjc;)V + 0 o p_134383_ + a ()Lacq; m_134390_ + a (Lsk;)V m_5797_ + 0 o p_134387_ + a (Lzb;)V m_5797_ + 0 o p_134389_ + a (Lsf;)V m_5779_ + 0 o p_134392_ +aaj net/minecraft/network/protocol/game/ServerboundRenameItemPacket + a f_134393_ + (Lsf;)V + 0 o p_179738_ + (Ljava/lang/String;)V + 0 o p_134396_ + a ()Ljava/lang/String; m_134403_ + a (Lsk;)V m_5797_ + 0 o p_134400_ + a (Lzb;)V m_5797_ + 0 o p_134402_ + a (Lsf;)V m_5779_ + 0 o p_134405_ +aak net/minecraft/network/protocol/game/ServerboundResourcePackPacket + a f_134406_ + (Lsf;)V + 0 o p_179740_ + (Laak$a;)V + 0 o p_134409_ + a ()Laak$a; m_179741_ + a (Lsk;)V m_5797_ + 0 o p_134413_ + a (Lzb;)V m_5797_ + 0 o p_134415_ + a (Lsf;)V m_5779_ + 0 o p_134417_ +aak$a net/minecraft/network/protocol/game/ServerboundResourcePackPacket$Action + a SUCCESSFULLY_LOADED + b DECLINED + c FAILED_DOWNLOAD + d ACCEPTED + e $VALUES + ()V + static + (Ljava/lang/String;I)V + 0 o p_134425_ + 1 o p_134426_ + a ()[Laak$a; m_179742_ + static + valueOf (Ljava/lang/String;)Laak$a; valueOf + static + 0 o p_134428_ + values ()[Laak$a; values + static +aal net/minecraft/network/protocol/game/ServerboundSeenAdvancementsPacket + a f_134430_ + b f_134431_ + (Lsf;)V + 0 o p_179744_ + (Laal$a;Lacq;)V + 0 o p_134434_ + 1 o p_134435_ + a (Lae;)Laal; m_134442_ + static + 0 o p_134443_ + a ()Laal; m_134444_ + static + a (Lsk;)V m_5797_ + 0 o p_134439_ + a (Lzb;)V m_5797_ + 0 o p_134441_ + a (Lsf;)V m_5779_ + 0 o p_134446_ + c ()Laal$a; m_134447_ + d ()Lacq; m_134448_ +aal$a net/minecraft/network/protocol/game/ServerboundSeenAdvancementsPacket$Action + a OPENED_TAB + b CLOSED_SCREEN + c $VALUES + ()V + static + (Ljava/lang/String;I)V + 0 o p_134454_ + 1 o p_134455_ + a ()[Laal$a; m_179745_ + static + valueOf (Ljava/lang/String;)Laal$a; valueOf + static + 0 o p_134457_ + values ()[Laal$a; values + static +aam net/minecraft/network/protocol/game/ServerboundSelectTradePacket + a f_134459_ + (Lsf;)V + 0 o p_179747_ + (I)V + 0 o p_134462_ + a (Lsk;)V m_5797_ + 0 o p_134466_ + a (Lzb;)V m_5797_ + 0 o p_134468_ + a ()I m_134469_ + a (Lsf;)V m_5779_ + 0 o p_134471_ +aan net/minecraft/network/protocol/game/ServerboundSetBeaconPacket + a f_134472_ + b f_134473_ + (Lsf;)V + 0 o p_179749_ + (Ljava/util/Optional;Ljava/util/Optional;)V + 0 o p_237989_ + 1 o p_237990_ + a (Lsf;Lbey;)V m_257129_ + static + 0 o p_258218_ + 1 o p_258219_ + a ()Ljava/util/Optional; m_237994_ + a (Lsk;)V m_5797_ + 0 o p_134481_ + a (Lzb;)V m_5797_ + 0 o p_134483_ + a (Lsf;)V m_5779_ + 0 o p_134486_ + b (Lsf;)Lbey; m_257127_ + static + 0 o p_258215_ + b (Lsf;Lbey;)V m_257128_ + static + 0 o p_258216_ + 1 o p_258217_ + c (Lsf;)Lbey; m_257126_ + static + 0 o p_258214_ + c ()Ljava/util/Optional; m_238000_ +aao net/minecraft/network/protocol/game/ServerboundSetCarriedItemPacket + a f_134488_ + (Lsf;)V + 0 o p_179751_ + (I)V + 0 o p_134491_ + a (Lsk;)V m_5797_ + 0 o p_134495_ + a (Lzb;)V m_5797_ + 0 o p_134497_ + a ()I m_134498_ + a (Lsf;)V m_5779_ + 0 o p_134500_ +aap net/minecraft/network/protocol/game/ServerboundSetCommandBlockPacket + a f_179752_ + b f_179753_ + c f_179754_ + d f_134501_ + e f_134502_ + f f_134503_ + g f_134504_ + h f_134505_ + i f_134506_ + (Lsf;)V + 0 o p_179756_ + (Lgu;Ljava/lang/String;Lczx$a;ZZZ)V + 0 o p_134509_ + 1 o p_134510_ + 2 o p_134511_ + 3 o p_134512_ + 4 o p_134513_ + 5 o p_134514_ + a ()Lgu; m_134521_ + a (Lsk;)V m_5797_ + 0 o p_134518_ + a (Lzb;)V m_5797_ + 0 o p_134520_ + a (Lsf;)V m_5779_ + 0 o p_134523_ + c ()Ljava/lang/String; m_134524_ + d ()Z m_134525_ + e ()Z m_134526_ + f ()Z m_134527_ + g ()Lczx$a; m_134528_ +aaq net/minecraft/network/protocol/game/ServerboundSetCommandMinecartPacket + a f_134529_ + b f_134530_ + c f_134531_ + (Lsf;)V + 0 o p_179758_ + (ILjava/lang/String;Z)V + 0 o p_134534_ + 1 o p_134535_ + 2 o p_134536_ + a ()Ljava/lang/String; m_134545_ + a (Lsk;)V m_5797_ + 0 o p_134542_ + a (Lzb;)V m_5797_ + 0 o p_134544_ + a (Lcmm;)Lcln; m_134537_ + 0 o p_134538_ + a (Lsf;)V m_5779_ + 0 o p_134547_ + c ()Z m_134548_ +aar net/minecraft/network/protocol/game/ServerboundSetCreativeModeSlotPacket + a f_134549_ + b f_134550_ + (Lsf;)V + 0 o p_179760_ + (ILcfz;)V + 0 o p_134553_ + 1 o p_134554_ + a (Lsk;)V m_5797_ + 0 o p_134558_ + a (Lzb;)V m_5797_ + 0 o p_134560_ + a ()I m_134561_ + a (Lsf;)V m_5779_ + 0 o p_134563_ + c ()Lcfz; m_134564_ +aas net/minecraft/network/protocol/game/ServerboundSetJigsawBlockPacket + a f_134565_ + b f_134566_ + c f_134567_ + d f_134568_ + e f_134569_ + f f_134570_ + (Lsf;)V + 0 o p_179766_ + (Lgu;Lacq;Lacq;Lacq;Ljava/lang/String;Ldam$a;)V + 0 o p_134573_ + 1 o p_134574_ + 2 o p_134575_ + 3 o p_134576_ + 4 o p_134577_ + 5 o p_134578_ + a ()Lgu; m_134585_ + a (Lsk;)V m_5797_ + 0 o p_134582_ + a (Lzb;)V m_5797_ + 0 o p_134584_ + a (Lsf;)V m_5779_ + 0 o p_134587_ + c ()Lacq; m_134588_ + d ()Lacq; m_134589_ + e ()Lacq; m_134590_ + f ()Ljava/lang/String; m_134591_ + g ()Ldam$a; m_134592_ +aat net/minecraft/network/protocol/game/ServerboundSetStructureBlockPacket + a f_179767_ + b f_179768_ + c f_179769_ + d f_134593_ + e f_134594_ + f f_134595_ + g f_134596_ + h f_134597_ + i f_134598_ + j f_134599_ + k f_134600_ + l f_134601_ + m f_134602_ + n f_134603_ + o f_134604_ + p f_134605_ + q f_134606_ + (Lgu;Ldba$a;Lddl;Ljava/lang/String;Lgu;Lhz;Lcui;Lcvz;Ljava/lang/String;ZZZFJ)V + 0 o p_179771_ + 1 o p_179772_ + 2 o p_179773_ + 3 o p_179774_ + 4 o p_179775_ + 5 o p_179776_ + 6 o p_179777_ + 7 o p_179778_ + 8 o p_179779_ + 9 o p_179780_ + 10 o p_179781_ + 11 o p_179782_ + 12 o p_179783_ + 13 o p_179784_ + (Lsf;)V + 0 o p_179786_ + a ()Lgu; m_134629_ + a (Lsk;)V m_5797_ + 0 o p_134626_ + a (Lsf;)V m_5779_ + 0 o p_134631_ + a (Lzb;)V m_5797_ + 0 o p_134628_ + c ()Ldba$a; m_134632_ + d ()Lddl; m_134633_ + e ()Ljava/lang/String; m_134634_ + f ()Lgu; m_134635_ + g ()Lhz; m_179787_ + h ()Lcui; m_134637_ + i ()Lcvz; m_134638_ + j ()Ljava/lang/String; m_134639_ + k ()Z m_134640_ + l ()Z m_134641_ + m ()Z m_134642_ + n ()F m_134643_ + o ()J m_134644_ +aau net/minecraft/network/protocol/game/ServerboundSignUpdatePacket + a f_179788_ + b f_134645_ + c f_134646_ + d f_276680_ + (Lsf;)V + 0 o p_179790_ + (Lgu;ZLjava/lang/String;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;)V + 0 o p_277902_ + 1 o p_277750_ + 2 o p_278086_ + 3 o p_277504_ + 4 o p_277814_ + 5 o p_277726_ + a ()Lgu; m_134660_ + a (Lsk;)V m_5797_ + 0 o p_134657_ + a (Lzb;)V m_5797_ + 0 o p_134659_ + a (Lsf;)V m_5779_ + 0 o p_134662_ + c ()Z m_276788_ + d ()[Ljava/lang/String; m_134663_ +aav net/minecraft/network/protocol/game/ServerboundSwingPacket + a f_134664_ + (Lsf;)V + 0 o p_179792_ + (Lbdw;)V + 0 o p_134667_ + a (Lsk;)V m_5797_ + 0 o p_134671_ + a (Lzb;)V m_5797_ + 0 o p_134673_ + a (Lsf;)V m_5779_ + 0 o p_134676_ + a ()Lbdw; m_134674_ +aaw net/minecraft/network/protocol/game/ServerboundTeleportToEntityPacket + a f_134677_ + (Lsf;)V + 0 o p_179794_ + (Ljava/util/UUID;)V + 0 o p_134680_ + a (Laif;)Lbfj; m_134681_ + 0 o p_134682_ + a (Lsk;)V m_5797_ + 0 o p_134686_ + a (Lzb;)V m_5797_ + 0 o p_134688_ + a (Lsf;)V m_5779_ + 0 o p_134690_ +aax net/minecraft/network/protocol/game/ServerboundUseItemOnPacket + a f_134691_ + b f_134692_ + c f_238003_ + (Lsf;)V + 0 o p_179796_ + (Lbdw;Leee;I)V + 0 o p_238005_ + 1 o p_238006_ + 2 o p_238007_ + a (Lsk;)V m_5797_ + 0 o p_134700_ + a (Lzb;)V m_5797_ + 0 o p_134702_ + a (Lsf;)V m_5779_ + 0 o p_134705_ + a ()Lbdw; m_134703_ + c ()Leee; m_134706_ + d ()I m_238008_ +aay net/minecraft/network/protocol/game/ServerboundUseItemPacket + a f_134707_ + b f_238009_ + (Lsf;)V + 0 o p_179798_ + (Lbdw;I)V + 0 o p_238011_ + 1 o p_238012_ + a (Lsk;)V m_5797_ + 0 o p_134714_ + a (Lzb;)V m_5797_ + 0 o p_134716_ + a (Lsf;)V m_5779_ + 0 o p_134719_ + a ()Lbdw; m_134717_ + c ()I m_238013_ +aaz net/minecraft/network/protocol/game/VecDeltaCodec + a f_238014_ + b f_238015_ + ()V + a (D)J m_238017_ + static + 0 o p_238018_ + a (J)D m_238019_ + static + 0 o p_238020_ + a (Leei;)J m_238025_ + 0 o p_238026_ + a (JJJ)Leei; m_238021_ + 0 o p_238022_ + 1 o p_238023_ + 2 o p_238024_ + b (Leei;)J m_238027_ + 0 o p_238028_ + c (Leei;)J m_238029_ + 0 o p_238030_ + d (Leei;)Leei; m_238031_ + 0 o p_238032_ + e (Leei;)V m_238033_ + 0 o p_238034_ +ab net/minecraft/SystemReport + a f_143506_ + b f_143507_ + c f_143508_ + d f_143509_ + e f_143510_ + f f_143511_ + g f_143512_ + ()V + static + ()V + a (Ljava/lang/StringBuilder;)V m_143525_ + 0 o p_143526_ + a (Loshi/hardware/VirtualMemory;)V m_143549_ + 0 o p_143550_ + a (Ljava/lang/String;Ljava/lang/Runnable;)V m_143516_ + 0 o p_143517_ + 1 o p_143518_ + a (Loshi/hardware/CentralProcessor$ProcessorIdentifier;)Ljava/lang/String; m_241706_ + static + 0 o p_242034_ + a (Ljava/lang/StringBuilder;Ljava/lang/String;Ljava/lang/String;)V m_143527_ + static + 0 o p_143528_ + 1 o p_143529_ + 2 o p_143530_ + a (Ljava/lang/String;Ljava/util/function/Supplier;)V m_143522_ + 0 o p_143523_ + 1 o p_143524_ + a (Loshi/hardware/CentralProcessor;)V m_143539_ + 0 o p_143540_ + a (Loshi/hardware/GlobalMemory;)V m_143541_ + 0 o p_143542_ + a (Loshi/hardware/PhysicalMemory;)Ljava/lang/String; m_241709_ + static + 0 o p_242037_ + a (Ljava/util/List;)V m_143531_ + 0 o p_143532_ + a ()Ljava/lang/String; m_143515_ + a (Loshi/hardware/GraphicsCard;)Ljava/lang/String; m_241714_ + static + 0 o p_242041_ + a (Loshi/hardware/HardwareAbstractionLayer;)V m_143545_ + 0 o p_143546_ + a (Ljava/lang/String;Ljava/lang/String;)V m_143519_ + 0 o p_143520_ + 1 o p_143521_ + a (Loshi/SystemInfo;)V m_143535_ + 0 o p_143536_ + a (Ljava/util/Map$Entry;)Ljava/lang/String; m_143533_ + static + 0 o p_143534_ + b (Loshi/hardware/CentralProcessor;)Ljava/lang/String; m_143554_ + static + 0 o p_143555_ + b (Loshi/hardware/VirtualMemory;)Ljava/lang/String; m_241711_ + static + 0 o p_242039_ + b (Loshi/hardware/PhysicalMemory;)Ljava/lang/String; m_241707_ + static + 0 o p_242035_ + b (Loshi/hardware/HardwareAbstractionLayer;)V m_143558_ + 0 o p_143559_ + b (Ljava/util/List;)V m_143552_ + 0 o p_143553_ + b ()Ljava/lang/String; m_241713_ + static + b (Loshi/hardware/GlobalMemory;)V m_143556_ + 0 o p_143557_ + c (Loshi/hardware/CentralProcessor;)Ljava/lang/String; m_143565_ + static + 0 o p_143566_ + c (Loshi/hardware/HardwareAbstractionLayer;)V m_143569_ + 0 o p_143570_ + c (Loshi/hardware/GlobalMemory;)V m_143567_ + 0 o p_143568_ + c (Loshi/hardware/VirtualMemory;)Ljava/lang/String; m_241710_ + static + 0 o p_242038_ + c ()V m_143564_ + d (Loshi/hardware/CentralProcessor;)Ljava/lang/String; m_143574_ + static + 0 o p_143575_ + d ()Ljava/lang/String; m_143573_ + static + d (Loshi/hardware/VirtualMemory;)Ljava/lang/String; m_241712_ + static + 0 o p_242040_ + e ()Ljava/lang/String; m_143578_ + static + e (Loshi/hardware/VirtualMemory;)Ljava/lang/String; m_241708_ + static + 0 o p_242036_ +aba net/minecraft/network/protocol/game/package-info +abb net/minecraft/network/protocol/handshake/ClientIntentionPacket + a f_179799_ + b f_134720_ + c f_134721_ + d f_134722_ + e f_134723_ + (Lsf;)V + 0 o p_179801_ + (Ljava/lang/String;ILse;)V + 0 o p_134726_ + 1 o p_134727_ + 2 o p_134728_ + a (Labc;)V m_5797_ + 0 o p_134734_ + a (Lsk;)V m_5797_ + 0 o p_134732_ + a ()Lse; m_134735_ + a (Lsf;)V m_5779_ + 0 o p_134737_ + c ()I m_134738_ + d ()Ljava/lang/String; m_179802_ + e ()I m_179803_ +abc net/minecraft/network/protocol/handshake/ServerHandshakePacketListener + a (Labb;)V m_7322_ + 0 o p_134739_ +abd net/minecraft/network/protocol/handshake/package-info +abe net/minecraft/network/protocol/login/ClientLoginPacketListener + a (Labg;)V m_7056_ + 0 o p_134741_ + a (Labj;)V m_5800_ + 0 o p_134744_ + a (Labh;)V m_7318_ + 0 o p_134742_ + a (Labi;)V m_5693_ + 0 o p_134743_ + a (Labf;)V m_7254_ + 0 o p_134740_ +abf net/minecraft/network/protocol/login/ClientboundCustomQueryPacket + a f_179804_ + b f_134745_ + c f_134746_ + d f_134747_ + (Lsf;)V + 0 o p_179810_ + (ILacq;Lsf;)V + 0 o p_179806_ + 1 o p_179807_ + 2 o p_179808_ + a (Labe;)V m_5797_ + 0 o p_134754_ + a (Lsk;)V m_5797_ + 0 o p_134752_ + a ()I m_134755_ + a (Lsf;)V m_5779_ + 0 o p_134757_ + c ()Lacq; m_179811_ + d ()Lsf; m_179812_ +abg net/minecraft/network/protocol/login/ClientboundGameProfilePacket + a f_134764_ + (Lsf;)V + 0 o p_179814_ + (Lcom/mojang/authlib/GameProfile;)V + 0 o p_134767_ + a (Labe;)V m_5797_ + 0 o p_134773_ + a ()Lcom/mojang/authlib/GameProfile; m_134774_ + a (Lsk;)V m_5797_ + 0 o p_134771_ + a (Lsf;)V m_5779_ + 0 o p_134776_ +abh net/minecraft/network/protocol/login/ClientboundHelloPacket + a f_134777_ + b f_134778_ + c f_252397_ + (Lsf;)V + 0 o p_179816_ + (Ljava/lang/String;[B[B)V + 0 o p_134782_ + 1 o p_134783_ + 2 o p_134784_ + a ()Ljava/lang/String; m_134791_ + a (Labe;)V m_5797_ + 0 o p_134790_ + a (Lsk;)V m_5797_ + 0 o p_134788_ + a (Lsf;)V m_5779_ + 0 o p_134793_ + c ()Ljava/security/PublicKey; m_134794_ + d ()[B m_252784_ +abi net/minecraft/network/protocol/login/ClientboundLoginCompressionPacket + a f_134796_ + (Lsf;)V + 0 o p_179818_ + (I)V + 0 o p_134799_ + a (Labe;)V m_5797_ + 0 o p_134805_ + a (Lsk;)V m_5797_ + 0 o p_134803_ + a ()I m_134806_ + a (Lsf;)V m_5779_ + 0 o p_134808_ +abj net/minecraft/network/protocol/login/ClientboundLoginDisconnectPacket + a f_134809_ + (Lsf;)V + 0 o p_179820_ + (Lsw;)V + 0 o p_134812_ + a (Labe;)V m_5797_ + 0 o p_134818_ + a ()Lsw; m_134819_ + a (Lsk;)V m_5797_ + 0 o p_134816_ + a (Lsf;)V m_5779_ + 0 o p_134821_ +abk net/minecraft/network/protocol/login/ServerLoginPacketListener + a (Labl;)V m_7223_ + 0 o p_134822_ + a (Labn;)V m_8072_ + 0 o p_134824_ + a (Labm;)V m_5990_ + 0 o p_134823_ +abl net/minecraft/network/protocol/login/ServerboundCustomQueryPacket + a f_179821_ + b f_134825_ + c f_134826_ + (Lsf;)V + 0 o p_179823_ + (ILsf;)V + 0 o p_134829_ + 1 o p_134830_ + a (Labk;)V m_5797_ + 0 o p_134836_ + a (Lsk;)V m_5797_ + 0 o p_134834_ + a ()I m_179824_ + a (Lsf;Lsf;)V m_238035_ + static + 0 o p_238036_ + 1 o p_238037_ + a (Lsf;)V m_5779_ + 0 o p_134838_ + b (Lsf;)Lsf; m_238038_ + static + 0 o p_238039_ + c ()Lsf; m_179825_ +abm net/minecraft/network/protocol/login/ServerboundHelloPacket + a f_238040_ + b f_240375_ + (Lsf;)V + 0 o p_179827_ + (Ljava/lang/String;Ljava/util/Optional;)V + 0 o f_238040_ + 1 o f_240375_ + a (Labk;)V m_5797_ + 0 o p_134848_ + a ()Ljava/lang/String; f_238040_ + a (Lsk;)V m_5797_ + 0 o p_134846_ + a (Lsf;)V m_5779_ + 0 o p_134851_ + c ()Ljava/util/Optional; f_240375_ + equals (Ljava/lang/Object;)Z equals + 0 o p_238052_ + hashCode ()I hashCode + toString ()Ljava/lang/String; toString +abn net/minecraft/network/protocol/login/ServerboundKeyPacket + a f_134852_ + b f_252408_ + (Lsf;)V + 0 o p_179829_ + (Ljavax/crypto/SecretKey;Ljava/security/PublicKey;[B)V + 0 o p_134856_ + 1 o p_134857_ + 2 o p_134858_ + a (Labk;)V m_5797_ + 0 o p_134866_ + a (Ljava/security/PrivateKey;)Ljavax/crypto/SecretKey; m_134859_ + 0 o p_134860_ + a (Lsk;)V m_5797_ + 0 o p_134864_ + a ([BLjava/security/PrivateKey;)Z m_253194_ + 0 o p_254210_ + 1 o p_253763_ + a (Lsf;)V m_5779_ + 0 o p_134870_ +abo net/minecraft/network/protocol/login/package-info +abp net/minecraft/network/protocol/package-info +abq net/minecraft/network/protocol/status/ClientStatusPacketListener + a (Labr;)V m_7017_ + 0 o p_134871_ + a (Labs;)V m_6440_ + 0 o p_134872_ +abr net/minecraft/network/protocol/status/ClientboundPongResponsePacket + a f_134873_ + (Lsf;)V + 0 o p_179831_ + (J)V + 0 o p_134876_ + a ()J m_179832_ + a (Labq;)V m_5797_ + 0 o p_134882_ + a (Lsk;)V m_5797_ + 0 o p_134880_ + a (Lsf;)V m_5779_ + 0 o p_134884_ +abs net/minecraft/network/protocol/status/ClientboundStatusResponsePacket + a f_134886_ + (Lsf;)V + 0 o p_179834_ + (Labt;)V + 0 o f_134886_ + a (Labq;)V m_5797_ + 0 o p_134896_ + a (Lsk;)V m_5797_ + 0 o p_134894_ + a ()Labt; f_134886_ + a (Lsf;)V m_5779_ + 0 o p_134899_ + equals (Ljava/lang/Object;)Z equals + 0 o p_273540_ + hashCode ()I hashCode + toString ()Ljava/lang/String; toString +abt net/minecraft/network/protocol/status/ServerStatus + a f_271163_ + b f_134900_ + c f_134901_ + d f_134902_ + e f_134903_ + f f_242955_ + ()V + static + (Lsw;Ljava/util/Optional;Ljava/util/Optional;Ljava/util/Optional;Z)V + 0 o f_134900_ + 1 o f_134901_ + 2 o f_134902_ + 3 o f_134903_ + 4 o f_242955_ + a (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; m_271955_ + static + 0 o p_273270_ + a ()Lsw; f_134900_ + b ()Ljava/util/Optional; f_134901_ + c ()Ljava/util/Optional; f_134902_ + d ()Ljava/util/Optional; f_134903_ + e ()Z f_242955_ + equals (Ljava/lang/Object;)Z equals + 0 o p_273273_ + hashCode ()I hashCode + toString ()Ljava/lang/String; toString +abt$a net/minecraft/network/protocol/status/ServerStatus$Favicon + a f_271281_ + b f_271462_ + c f_271186_ + ()V + static + ([B)V + 0 o f_271462_ + a ()[B f_271462_ + a (Labt$a;)Ljava/lang/String; m_271771_ + static + 0 o p_273258_ + a (Ljava/lang/String;)Lcom/mojang/serialization/DataResult; m_274066_ + static + 0 o p_274795_ + b ()Ljava/lang/String; m_274068_ + static + c ()Ljava/lang/String; m_274067_ + static + equals (Ljava/lang/Object;)Z equals + 0 o p_273505_ + hashCode ()I hashCode + toString ()Ljava/lang/String; toString +abt$b net/minecraft/network/protocol/status/ServerStatus$Players + a f_271480_ + b f_271503_ + c f_271178_ + d f_134919_ + e f_271466_ + ()V + static + (IILjava/util/List;)V + 0 o f_271503_ + 1 o f_271178_ + 2 o f_134919_ + a (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; m_271836_ + static + 0 o p_273295_ + a ()I f_271503_ + b (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; m_271848_ + static + 0 o p_272926_ + b ()I f_271178_ + c ()Ljava/util/List; f_134919_ + equals (Ljava/lang/Object;)Z equals + 0 o p_273193_ + hashCode ()I hashCode + toString ()Ljava/lang/String; toString +abt$c net/minecraft/network/protocol/status/ServerStatus$Version + a f_271272_ + b f_134962_ + c f_134963_ + ()V + static + (Ljava/lang/String;I)V + 0 o f_134962_ + 1 o f_134963_ + a (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; m_271745_ + static + 0 o p_273157_ + a ()Labt$c; m_272202_ + static + b ()Ljava/lang/String; f_134962_ + c ()I f_134963_ + equals (Ljava/lang/Object;)Z equals + 0 o p_273000_ + hashCode ()I hashCode + toString ()Ljava/lang/String; toString +abu net/minecraft/network/protocol/status/ServerStatusPacketListener + a (Labv;)V m_7883_ + 0 o p_134986_ + a (Labw;)V m_6733_ + 0 o p_134987_ +abv net/minecraft/network/protocol/status/ServerboundPingRequestPacket + a f_134988_ + (Lsf;)V + 0 o p_179838_ + (J)V + 0 o p_134991_ + a ()J m_134998_ + a (Lsk;)V m_5797_ + 0 o p_134995_ + a (Labu;)V m_5797_ + 0 o p_134997_ + a (Lsf;)V m_5779_ + 0 o p_135000_ +abw net/minecraft/network/protocol/status/ServerboundStatusRequestPacket + (Lsf;)V + 0 o p_179840_ + ()V + a (Lsk;)V m_5797_ + 0 o p_135005_ + a (Labu;)V m_5797_ + 0 o p_135007_ + a (Lsf;)V m_5779_ + 0 o p_135009_ +abx net/minecraft/network/protocol/status/package-info +aby net/minecraft/network/syncher/EntityDataAccessor + a f_135010_ + b f_135011_ + (ILabz;)V + 0 o p_135013_ + 1 o p_135014_ + a ()I m_135015_ + b ()Labz; m_135016_ + equals (Ljava/lang/Object;)Z equals + 0 o p_135018_ + hashCode ()I hashCode + toString ()Ljava/lang/String; toString +abz net/minecraft/network/syncher/EntityDataSerializer + a (Ljava/lang/Object;)Ljava/lang/Object; m_7020_ + 0 o p_135023_ + a (Lhj;Lsf;)Ljava/lang/Object; m_238083_ + static + 0 o p_238084_ + 1 o p_238085_ + a (Lsf;)Ljava/lang/Object; m_6709_ + 0 o p_135024_ + a (Lsf$b;Lsf$a;)Labz; m_238095_ + static + 0 o p_238096_ + 1 o p_238097_ + a (Ljava/lang/Class;Lsf;)Ljava/lang/Enum; m_238092_ + static + 0 o p_238093_ + 1 o p_238094_ + a (Lsf;Ljava/lang/Object;)V m_6856_ + 0 o p_135025_ + 1 o p_135026_ + a (Lhj;)Labz; m_238081_ + static + 0 o p_238082_ + a (Ljava/lang/Class;)Labz; m_238090_ + static + 0 o p_238091_ + a (Lhj;Lsf;Ljava/lang/Object;)V m_238086_ + static + 0 o p_238087_ + 1 o p_238088_ + 2 o p_238089_ + a (I)Laby; m_135021_ + 0 o p_135022_ + b (Lsf$b;Lsf$a;)Labz; m_238098_ + static + 0 o p_238099_ + 1 o p_238100_ +abz$1 net/minecraft/network/syncher/EntityDataSerializer$1 + a f_238101_ + b f_238102_ + (Lsf$b;Lsf$a;)V + 0 o p_238104_ + 1 o p_238105_ + a (Lsf;)Ljava/lang/Object; m_6709_ + 0 o p_238107_ + a (Lsf;Ljava/lang/Object;)V m_6856_ + 0 o p_238109_ + 1 o p_238110_ +abz$a net/minecraft/network/syncher/EntityDataSerializer$ForValueType + a (Ljava/lang/Object;)Ljava/lang/Object; m_7020_ + 0 o p_238112_ +ac net/minecraft/Util + a f_137440_ + b f_211544_ + c f_137441_ + d f_143778_ + e f_137446_ + f f_183935_ + g f_183936_ + h f_137442_ + i f_137444_ + j f_137445_ + k f_241646_ + l f_183937_ + ()V + static + ()V + a (Ljava/util/List;Lapf;)Ljava/lang/Object; m_214621_ + static + 0 o p_214622_ + 1 o p_214623_ + a (ILjava/lang/String;[Ljava/util/function/BooleanSupplier;)Z m_137449_ + static + 0 o p_137450_ + 1 o p_137451_ + 2 o p_137452_ + a (Ljava/nio/file/Path;)Ljava/util/function/BooleanSupplier; m_137500_ + static + 0 o p_137501_ + a (Ljava/util/stream/LongStream;I)Lcom/mojang/serialization/DataResult; m_287262_ + static + 0 o p_287579_ + 1 o p_287631_ + a (Ljava/util/concurrent/CompletableFuture;Ljava/util/List;Ljava/lang/Throwable;)V m_273965_ + static + 0 o p_274640_ + 1 o p_274641_ + 2 o p_274642_ + a (Ljava/util/concurrent/ExecutorService;)V m_137531_ + static + 0 o p_137532_ + a (Ljava/util/stream/IntStream;Lapf;)Lit/unimi/dsi/fastutil/ints/IntArrayList; m_214658_ + static + 0 o p_214659_ + 1 o p_214660_ + a (Ljava/util/function/BiFunction;)Ljava/util/function/BiFunction; m_143821_ + static + 0 o p_143822_ + a (Lit/unimi/dsi/fastutil/objects/ObjectArrayList;Lapf;)Ljava/util/List; m_214611_ + static + 0 o p_214612_ + 1 o p_214613_ + a ()Ljava/util/stream/Collector; m_137448_ + static + a (Ljava/util/function/Consumer;Ljava/lang/String;Ljava/lang/String;)V m_214642_ + static + 0 o p_214643_ + 1 o p_214644_ + 2 o p_214645_ + a (Ljava/util/function/Consumer;Ljava/util/List;ILjava/lang/Object;Ljava/lang/Throwable;)V m_214646_ + static + 0 o p_214647_ + 1 o p_214648_ + 2 o p_214649_ + 3 o p_214650_ + 4 o p_214651_ + a (Ljava/lang/String;)V m_143785_ + static + 0 o p_143786_ + a (Ljava/util/function/Function;Ljava/util/function/Predicate;)Ljava/lang/Object; m_214652_ + static + 0 o p_214653_ + 1 o p_214654_ + a (Ljava/lang/String;II)I m_137479_ + static + 0 o p_137480_ + 1 o p_137481_ + 2 o p_137482_ + a (Ljava/util/function/Function;)Lapm; m_269175_ + static + 0 o p_270326_ + a (Ljava/lang/Runnable;Ljava/util/function/Supplier;)Ljava/lang/Runnable; m_137474_ + static + 0 o p_137475_ + 1 o p_137476_ + a (Ljava/util/List;)Ljava/lang/Object; m_137509_ + static + 0 o p_137510_ + a (Ljava/io/File;Ljava/io/File;Ljava/io/File;Z)V m_212224_ + static + 0 o p_212225_ + 1 o p_212226_ + 2 o p_212227_ + 3 o p_212228_ + a (Ljava/util/Optional;Ljava/util/function/Consumer;Ljava/lang/Runnable;)Ljava/util/Optional; m_137521_ + static + 0 o p_137522_ + 1 o p_137523_ + 2 o p_137524_ + a (Ljava/util/stream/IntStream;I)Lcom/mojang/serialization/DataResult; m_137539_ + static + 0 o p_137540_ + 1 o p_137541_ + a (Lcom/mojang/datafixers/DSL$TypeReference;Ljava/lang/String;)Lcom/mojang/datafixers/types/Type; m_137456_ + static + 0 o p_137457_ + 1 o p_137458_ + a (Ljava/lang/String;Ljava/util/function/Supplier;)Ljava/util/function/Supplier; m_183946_ + static + 0 o p_183947_ + 1 o p_183948_ + a (Ljava/util/List;Ljava/util/function/IntFunction;)Ljava/util/function/ToIntFunction; m_214634_ + static + 0 o p_214635_ + 1 o p_214636_ + a (Ljava/lang/Iterable;Ljava/lang/Object;)Ljava/lang/Object; m_137466_ + static + 0 o p_137467_ + 1 o p_137468_ + a (I)Z m_288213_ + static + 0 o p_289004_ + a (Ljava/nio/file/Path;Ljava/nio/file/Path;)Ljava/util/function/BooleanSupplier; m_137502_ + static + 0 o p_137503_ + 1 o p_137504_ + a (Ljava/util/List;Ljava/lang/Void;)Ljava/util/List; m_214624_ + static + 0 o p_214625_ + 1 o p_214626_ + a (Ldde;Ljava/lang/Object;)Ljava/lang/String; m_137453_ + static + 0 o p_137454_ + 1 o p_137455_ + a (Ljava/nio/file/Path;Ljava/nio/file/Path;Ljava/nio/file/Path;Z)V m_212229_ + static + 0 o p_212230_ + 1 o p_212231_ + 2 o p_212232_ + 3 o p_212233_ + a (Ljava/io/File;Ljava/io/File;Ljava/io/File;)V m_137462_ + static + 0 o p_137463_ + 1 o p_137464_ + 2 o p_137465_ + a (Ljava/nio/file/spi/FileSystemProvider;)Z m_201864_ + static + 0 o p_201865_ + a ([Ljava/lang/Object;Lapf;)Ljava/lang/Object; m_214670_ + static + 0 o p_214671_ + 1 o p_214672_ + a ([ILapf;)I m_214667_ + static + 0 o p_214668_ + 1 o p_214669_ + a (Ljava/lang/Object;Ljava/util/function/Consumer;)Ljava/lang/Object; m_137469_ + static + 0 o p_137470_ + 1 o p_137471_ + a (Ljava/util/List;Ljava/util/function/Consumer;)Ljava/util/concurrent/CompletableFuture; m_214631_ + static + 0 o p_214632_ + 1 o p_214633_ + a (Ljava/util/function/Supplier;)Ljava/lang/Object; m_137537_ + static + 0 o p_137538_ + a (Ljava/lang/String;Lacq;)Ljava/lang/String; m_137492_ + static + 0 o p_137493_ + 1 o p_137494_ + a (Ljava/lang/Runnable;)Ljava/lang/Thread; m_201859_ + static + 0 o p_201860_ + a (Ljava/lang/String;Ljava/util/concurrent/ForkJoinPool;)Ljava/util/concurrent/ForkJoinWorkerThread; m_201861_ + static + 0 o p_201862_ + 1 o p_201863_ + a (Ljava/lang/String;Ljava/util/function/Consumer;)Ljava/util/function/Consumer; m_137489_ + static + 0 o p_137490_ + 1 o p_137491_ + a (Ljava/lang/String;Ljava/lang/Runnable;)Ljava/lang/Runnable; m_143787_ + static + 0 o p_143788_ + 1 o p_143789_ + a (Ljava/util/List;[Ljava/util/concurrent/CompletableFuture;Ljava/util/function/Consumer;Ljava/util/concurrent/CompletableFuture;)V m_214637_ + static + 0 o p_214638_ + 1 o p_214639_ + 2 o p_214640_ + 3 o p_214641_ + a (Lm;I)Ljava/lang/String; m_214664_ + static + 0 o p_214665_ + 1 o p_214666_ + a ([Ljava/util/function/BooleanSupplier;)Z m_137548_ + static + 0 o p_137549_ + a (Ljava/lang/Throwable;)V m_137559_ + static + 0 o p_137560_ + a (Ljava/util/function/Supplier;Ljava/util/function/Supplier;)Ljava/util/function/Supplier; m_214655_ + static + 0 o p_214656_ + 1 o p_214657_ + a (Ljava/util/List;I)Lcom/mojang/serialization/DataResult; m_143795_ + static + 0 o p_143796_ + 1 o p_143797_ + a (Ljava/util/function/Consumer;)V m_183969_ + static + 0 o p_183970_ + a (Lcom/mojang/serialization/DataResult;Ljava/util/function/Function;)Ljava/lang/Object; m_260975_ + static + 0 o p_261812_ + 1 o p_261468_ + a (Ljava/lang/Thread;Ljava/lang/Throwable;)V m_137495_ + static + 0 o p_137496_ + 1 o p_137497_ + a (Ljava/lang/String;Lm;)Ljava/lang/String; m_137483_ + static + 0 o p_137484_ + 1 o p_137485_ + a (Ljava/util/stream/Stream;Lapf;)Ljava/util/List; m_214661_ + static + 0 o p_214662_ + 1 o p_214663_ + a (Ljava/nio/file/Path;Ljava/nio/file/Path;Ljava/nio/file/Path;)V m_137505_ + static + 0 o p_137506_ + 1 o p_137507_ + 2 o p_137508_ + a (Ljava/lang/String;Ljava/lang/Throwable;)V m_200890_ + static + 0 o p_200891_ + 1 o p_200892_ + b (Ljava/lang/Iterable;Ljava/lang/Object;)Ljava/lang/Object; m_137554_ + static + 0 o p_137555_ + 1 o p_137556_ + b (Ljava/nio/file/Path;)Ljava/util/function/BooleanSupplier; m_137561_ + static + 0 o p_137562_ + b (Lit/unimi/dsi/fastutil/objects/ObjectArrayList;Lapf;)V m_214673_ + static + 0 o p_214674_ + 1 o p_214675_ + b (Ljava/util/List;)Ljava/util/concurrent/CompletableFuture; m_137567_ + static + 0 o p_137568_ + b (Ljava/util/List;Ljava/lang/Void;)Ljava/util/List; m_203744_ + static + 0 o p_203745_ + 1 o p_203746_ + b (Ljava/nio/file/Path;Ljava/nio/file/Path;Ljava/nio/file/Path;)V m_137563_ + static + 0 o p_137564_ + 1 o p_137565_ + 2 o p_137566_ + b (Ljava/lang/String;Ljava/lang/Runnable;)V m_201893_ + static + 0 o p_201894_ + 1 o p_201895_ + b (Ljava/util/function/Function;)Ljava/util/function/Function; m_143827_ + static + 0 o p_143828_ + b ([Ljava/lang/Object;Lapf;)Ljava/util/List; m_214681_ + static + 0 o p_214682_ + 1 o p_214683_ + b (Ljava/lang/String;Ljava/util/function/Supplier;)Ljava/lang/Object; m_201896_ + static + 0 o p_201897_ + 1 o p_201898_ + b (Ljava/lang/Throwable;)Ljava/lang/Throwable; m_137570_ + static + 0 o p_137571_ + b (Lcom/mojang/datafixers/DSL$TypeReference;Ljava/lang/String;)Lcom/mojang/datafixers/types/Type; m_137551_ + static + 0 o p_137552_ + 1 o p_137553_ + b (I)Ljava/lang/String; m_287015_ + static + 0 o p_287307_ + b (Ljava/lang/String;)Z m_288217_ + static + 0 o p_288983_ + b ()J m_137550_ + static + b (Ljava/util/List;Lapf;)Ljava/util/Optional; m_214676_ + static + 0 o p_214677_ + 1 o p_214678_ + c ()J m_137569_ + static + c (Ljava/util/List;)Ljava/util/concurrent/CompletableFuture; m_143840_ + static + 0 o p_143841_ + c (Ljava/nio/file/Path;)Ljava/util/function/BooleanSupplier; m_137572_ + static + 0 o p_137573_ + c (Ljava/lang/String;)Ljava/util/concurrent/ExecutorService; m_137477_ + static + 0 o p_137478_ + c (Ljava/util/function/Function;)Ljava/util/concurrent/CompletableFuture; m_214679_ + static + 0 o p_214680_ + c (Ljava/lang/Throwable;)Ljava/lang/String; m_137575_ + static + 0 o p_137576_ + c (I)Ljava/lang/String; m_273964_ + static + 0 o p_274639_ + d (Ljava/lang/String;)V m_183984_ + static + 0 o p_183985_ + d (Ljava/util/List;)Ljava/util/concurrent/CompletableFuture; m_214684_ + static + 0 o p_214685_ + d (I)Ljava/lang/String; m_273966_ + static + 0 o p_274643_ + d ()J m_137574_ + static + e (Ljava/lang/String;)Z m_201902_ + static + 0 o p_201903_ + e (Ljava/util/List;)Ljava/util/function/ToIntFunction; m_214686_ + static + 0 o p_214687_ + e ()Ljava/lang/String; m_241986_ + static + f (Ljava/lang/String;)V m_201904_ + static + 0 o p_201905_ + f ()Ljava/util/concurrent/ExecutorService; m_183991_ + static + g ()Ljava/util/concurrent/ExecutorService; m_183992_ + static + h ()V m_137580_ + static + i ()Lac$b; m_137581_ + static + j ()Ljava/util/stream/Stream; m_137582_ + static + k ()Lit/unimi/dsi/fastutil/Hash$Strategy; m_137583_ + static + l ()V m_137584_ + static + m ()I m_183993_ + static + n ()Ljava/util/concurrent/ExecutorService; m_137586_ + static + o ()Ljava/lang/IllegalStateException; m_201906_ + static +ac$1 net/minecraft/Util$1 + ()V + read ()J read +ac$2 net/minecraft/Util$10 + a f_211547_ + b f_211548_ + (Ljava/util/function/Function;)V + 0 o p_214689_ + apply (Ljava/lang/Object;)Ljava/lang/Object; apply + 0 o p_214691_ + toString ()Ljava/lang/String; toString +ac$3 net/minecraft/Util$11 + a f_214692_ + b f_214693_ + (Ljava/util/function/BiFunction;)V + 0 o p_214695_ + a (Ljava/util/function/BiFunction;Lcom/mojang/datafixers/util/Pair;)Ljava/lang/Object; m_214696_ + static + 0 o p_214697_ + 1 o p_214698_ + apply (Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object; apply + 0 o p_214700_ + 1 o p_214701_ + toString ()Ljava/lang/String; toString +ac$4 net/minecraft/Util$2 + (Ljava/util/concurrent/ForkJoinPool;)V + 0 o p_211559_ + onTermination (Ljava/lang/Throwable;)V onTermination + 0 o p_211561_ +ac$5 net/minecraft/Util$5 + a f_214703_ + b f_214704_ + (Ljava/nio/file/Path;Ljava/nio/file/Path;)V + 0 o p_214706_ + 1 o p_214707_ + getAsBoolean ()Z getAsBoolean + toString ()Ljava/lang/String; toString +ac$6 net/minecraft/Util$6 + a f_137608_ + (Ljava/nio/file/Path;)V + 0 o p_137610_ + getAsBoolean ()Z getAsBoolean + toString ()Ljava/lang/String; toString +ac$7 net/minecraft/Util$7 + a f_211567_ + (Ljava/nio/file/Path;)V + 0 o p_211569_ + getAsBoolean ()Z getAsBoolean + toString ()Ljava/lang/String; toString +ac$8 net/minecraft/Util$8 + a f_214708_ + (Ljava/nio/file/Path;)V + 0 o p_214710_ + getAsBoolean ()Z getAsBoolean + toString ()Ljava/lang/String; toString +ac$9 net/minecraft/Util$9 + (Ljava/lang/String;)V + 0 o p_214714_ + run ()V run +ac$a net/minecraft/Util$IdentityStrategy + a INSTANCE + b $VALUES + ()V + static + (Ljava/lang/String;I)V + 0 o p_137620_ + 1 o p_137621_ + a ()[Lac$a; m_143862_ + static + equals (Ljava/lang/Object;Ljava/lang/Object;)Z equals + 0 o p_137623_ + 1 o p_137624_ + hashCode (Ljava/lang/Object;)I hashCode + 0 o p_137626_ + valueOf (Ljava/lang/String;)Lac$a; valueOf + static + 0 o p_137628_ + values ()[Lac$a; values + static +ac$b net/minecraft/Util$OS + a LINUX + b SOLARIS + c WINDOWS + d OSX + e UNKNOWN + f f_183994_ + g $VALUES + ()V + static + (Ljava/lang/String;ILjava/lang/String;)V + 0 o p_183996_ + 1 o p_183997_ + 2 o p_183998_ + a (Ljava/net/URL;)V m_137650_ + 0 o p_137651_ + a (Ljava/lang/String;)V m_137646_ + 0 o p_137647_ + a (Ljava/io/File;)V m_137644_ + 0 o p_137645_ + a (Ljava/net/URI;)V m_137648_ + 0 o p_137649_ + a ()Ljava/lang/String; m_183999_ + b (Ljava/net/URL;)[Ljava/lang/String; m_6868_ + 0 o p_137652_ + b ()[Lac$b; m_143863_ + static + c (Ljava/net/URL;)Ljava/lang/Process; m_137653_ + 0 o p_137654_ + valueOf (Ljava/lang/String;)Lac$b; valueOf + static + 0 o p_137656_ + values ()[Lac$b; values + static +ac$b$1 net/minecraft/Util$OS$1 + (Ljava/lang/String;ILjava/lang/String;)V + 0 o p_184001_ + 1 o p_184002_ + 2 o p_184003_ + b (Ljava/net/URL;)[Ljava/lang/String; m_6868_ + 0 o p_137662_ +ac$b$2 net/minecraft/Util$OS$2 + (Ljava/lang/String;ILjava/lang/String;)V + 0 o p_184005_ + 1 o p_184006_ + 2 o p_184007_ + b (Ljava/net/URL;)[Ljava/lang/String; m_6868_ + 0 o p_137667_ +aca net/minecraft/network/syncher/EntityDataSerializers + A f_268676_ + B f_268624_ + C f_135046_ + a f_135027_ + b f_135028_ + c f_244073_ + d f_135029_ + e f_135030_ + f f_135031_ + g f_135032_ + h f_135033_ + i f_135034_ + j f_268618_ + k f_135035_ + l f_135036_ + m f_135037_ + n f_135038_ + o f_135039_ + p f_135040_ + q f_135041_ + r f_238113_ + s f_135042_ + t f_135043_ + u f_135044_ + v f_135045_ + w f_238114_ + x f_238115_ + y f_238116_ + z f_271344_ + ()V + static + ()V + a (I)Labz; m_135048_ + static + 0 o p_135049_ + a (Lsf;Ljava/lang/Byte;)V m_238117_ + static + 0 o p_238118_ + 1 o p_238119_ + a (Labz;)V m_135050_ + static + 0 o p_135051_ + b (Labz;)I m_135052_ + static + 0 o p_135053_ +aca$1 net/minecraft/network/syncher/EntityDataSerializers$1 + ()V + a (Ljava/lang/Object;)Ljava/lang/Object; m_7020_ + 0 o p_135058_ + a (Lsf;Lcfz;)V m_6856_ + 0 o p_238123_ + 1 o p_238124_ + a (Lcfz;)Lcfz; m_7020_ + 0 o p_238121_ + a (Lsf;)Ljava/lang/Object; m_6709_ + 0 o p_135060_ + a (Lsf;Ljava/lang/Object;)V m_6856_ + 0 o p_135065_ + 1 o p_135066_ + b (Lsf;)Lcfz; m_6709_ + 0 o p_238126_ +aca$2 net/minecraft/network/syncher/EntityDataSerializers$2 + ()V + a (Lsf;)Ljava/lang/Object; m_6709_ + 0 o p_135105_ + a (Lsf;Ljava/util/Optional;)V m_6856_ + 0 o p_238128_ + 1 o p_238129_ + a (Lsf;Ljava/lang/Object;)V m_6856_ + 0 o p_135110_ + 1 o p_135111_ + b (Lsf;)Ljava/util/Optional; m_6709_ + 0 o p_238131_ +aca$3 net/minecraft/network/syncher/EntityDataSerializers$3 + ()V + a (Lsf;Liu;)Lit; m_238135_ + 0 o p_238136_ + 1 o p_238137_ + a (Lsf;Lit;)V m_6856_ + 0 o p_238133_ + 1 o p_238134_ + a (Lsf;)Ljava/lang/Object; m_6709_ + 0 o p_135120_ + a (Lsf;Ljava/lang/Object;)V m_6856_ + 0 o p_135125_ + 1 o p_135126_ + b (Lsf;)Lit; m_6709_ + 0 o p_238139_ +aca$4 net/minecraft/network/syncher/EntityDataSerializers$4 + ()V + a (Lsf;)Ljava/lang/Object; m_6709_ + 0 o p_135135_ + a (Lsf;Ljava/lang/Object;)V m_6856_ + 0 o p_135137_ + 1 o p_135138_ + a (Lsf;Lhw;)V m_6856_ + 0 o p_238141_ + 1 o p_238142_ + b (Lsf;)Lhw; m_6709_ + 0 o p_238144_ +aca$5 net/minecraft/network/syncher/EntityDataSerializers$5 + ()V + a (Lqr;)Lqr; m_7020_ + 0 o p_238146_ + a (Ljava/lang/Object;)Ljava/lang/Object; m_7020_ + 0 o p_135146_ + a (Lsf;Lqr;)V m_6856_ + 0 o p_238148_ + 1 o p_238149_ + a (Lsf;)Ljava/lang/Object; m_6709_ + 0 o p_135148_ + a (Lsf;Ljava/lang/Object;)V m_6856_ + 0 o p_135150_ + 1 o p_135151_ + b (Lsf;)Lqr; m_6709_ + 0 o p_238151_ +aca$6 net/minecraft/network/syncher/EntityDataSerializers$6 + ()V + a (Lsf;Lbyc;)V m_6856_ + 0 o p_238153_ + 1 o p_238154_ + a (Lsf;)Ljava/lang/Object; m_6709_ + 0 o p_135165_ + a (Lsf;Ljava/lang/Object;)V m_6856_ + 0 o p_135167_ + 1 o p_135168_ + b (Lsf;)Lbyc; m_6709_ + 0 o p_238156_ +aca$7 net/minecraft/network/syncher/EntityDataSerializers$7 + ()V + a (Lsf;Ljava/util/OptionalInt;)V m_6856_ + 0 o p_238158_ + 1 o p_238159_ + a (Lsf;)Ljava/lang/Object; m_6709_ + 0 o p_135180_ + a (Lsf;Ljava/lang/Object;)V m_6856_ + 0 o p_135185_ + 1 o p_135186_ + b (Lsf;)Ljava/util/OptionalInt; m_6709_ + 0 o p_243339_ +acb net/minecraft/network/syncher/SynchedEntityData + a f_135342_ + b f_135343_ + c f_179843_ + d f_135344_ + e f_135345_ + f f_135346_ + g f_135348_ + ()V + static + (Lbfj;)V + 0 o p_135351_ + a (Laby;)Z m_285897_ + 0 o p_286294_ + a (Laby;Ljava/lang/Object;Z)V m_276349_ + 0 o p_276368_ + 1 o p_276363_ + 2 o p_276370_ + a (Ljava/util/List;)V m_135356_ + 0 o p_135357_ + a (Laby;Ljava/lang/Object;)V m_135372_ + 0 o p_135373_ + 1 o p_135374_ + a ()Z m_135352_ + a (Ljava/lang/Class;Labz;)Laby; m_135353_ + static + 0 o p_135354_ + 1 o p_135355_ + a (Lacb$a;Lacb$b;)V m_135375_ + 0 o p_135376_ + 1 o p_254484_ + b ()Ljava/util/List; m_135378_ + b (Laby;)Ljava/lang/Object; m_135370_ + 0 o p_135371_ + b (Laby;Ljava/lang/Object;)V m_135381_ + 0 o p_135382_ + 1 o p_135383_ + c (Laby;)Lacb$a; m_135379_ + 0 o p_135380_ + c (Laby;Ljava/lang/Object;)V m_135385_ + 0 o p_135386_ + 1 o p_135387_ + c ()Ljava/util/List; m_252804_ + d ()Z m_135388_ +acb$a net/minecraft/network/syncher/SynchedEntityData$DataItem + a f_135390_ + b f_135391_ + c f_252454_ + d f_135392_ + (Laby;Ljava/lang/Object;)V + 0 o p_135394_ + 1 o p_135395_ + a ()Laby; m_135396_ + a (Z)V m_135401_ + 0 o p_135402_ + a (Ljava/lang/Object;)V m_135397_ + 0 o p_135398_ + b ()Ljava/lang/Object; m_135403_ + c ()Z m_135406_ + d ()Z m_252838_ + e ()Lacb$b; m_253123_ +acb$b net/minecraft/network/syncher/SynchedEntityData$DataValue + a f_252469_ + b f_252511_ + c f_252525_ + (ILabz;Ljava/lang/Object;)V + 0 o f_252469_ + 1 o f_252511_ + 2 o f_252525_ + a (Laby;Ljava/lang/Object;)Lacb$b; m_252847_ + static + 0 o p_254543_ + 1 o p_254138_ + a (Lsf;I)Lacb$b; m_252860_ + static + 0 o p_254314_ + 1 o p_254356_ + a ()I f_252469_ + a (Lsf;ILabz;)Lacb$b; m_252951_ + static + 0 o p_254224_ + 1 o p_253899_ + 2 o p_254222_ + a (Lsf;)V m_252897_ + 0 o p_253709_ + b ()Labz; f_252511_ + c ()Ljava/lang/Object; f_252525_ + equals (Ljava/lang/Object;)Z equals + 0 o p_253935_ + hashCode ()I hashCode + toString ()Ljava/lang/String; toString +acc net/minecraft/network/syncher/package-info +acd net/minecraft/obfuscate/package-info +ace net/minecraft/package-info +acf net/minecraft/recipebook/PlaceRecipe + a (Ljava/util/Iterator;IIII)V m_5817_ + 0 o p_135415_ + 1 o p_135416_ + 2 o p_135417_ + 3 o p_135418_ + 4 o p_135419_ + a (IIILcjc;Ljava/util/Iterator;I)V m_135408_ + 0 o p_135409_ + 1 o p_135410_ + 2 o p_135411_ + 3 o p_135412_ + 4 o p_135413_ + 5 o p_135414_ +acg net/minecraft/recipebook/ServerPlaceRecipe + a f_135426_ + b f_135427_ + c f_135428_ + d f_135425_ + ()V + static + (Lccp;)V + 0 o p_135431_ + a (ZIZ)I m_135449_ + 0 o p_135450_ + 1 o p_135451_ + 2 o p_135452_ + a (Ljava/util/Iterator;IIII)V m_5817_ + 0 o p_135444_ + 1 o p_135445_ + 2 o p_135446_ + 3 o p_135447_ + 4 o p_135448_ + a ()V m_179844_ + a (Lccx;Lcfz;)V m_135438_ + 0 o p_135439_ + 1 o p_135440_ + a (Lcjc;Z)V m_6024_ + 0 o p_135441_ + 1 o p_135442_ + a (Laig;Lcjc;Z)V m_135434_ + 0 o p_135435_ + 1 o p_135436_ + 2 o p_135437_ + b ()Z m_135453_ + c ()I m_135454_ +ach net/minecraft/recipebook/package-info +aci net/minecraft/resources/DelegatingOps + a f_135465_ + (Lcom/mojang/serialization/DynamicOps;)V + 0 o p_135467_ + compressMaps ()Z compressMaps + convertTo (Lcom/mojang/serialization/DynamicOps;Ljava/lang/Object;)Ljava/lang/Object; convertTo + 0 o p_135470_ + 1 o p_135471_ + createBoolean (Z)Ljava/lang/Object; createBoolean + 0 o p_135473_ + createByte (B)Ljava/lang/Object; createByte + 0 o p_135475_ + createByteList (Ljava/nio/ByteBuffer;)Ljava/lang/Object; createByteList + 0 o p_135477_ + createDouble (D)Ljava/lang/Object; createDouble + 0 o p_135479_ + createFloat (F)Ljava/lang/Object; createFloat + 0 o p_135481_ + createInt (I)Ljava/lang/Object; createInt + 0 o p_135483_ + createIntList (Ljava/util/stream/IntStream;)Ljava/lang/Object; createIntList + 0 o p_135485_ + createList (Ljava/util/stream/Stream;)Ljava/lang/Object; createList + 0 o p_135487_ + createLong (J)Ljava/lang/Object; createLong + 0 o p_135489_ + createLongList (Ljava/util/stream/LongStream;)Ljava/lang/Object; createLongList + 0 o p_135491_ + createMap (Ljava/util/stream/Stream;)Ljava/lang/Object; createMap + 0 o p_135493_ + createNumeric (Ljava/lang/Number;)Ljava/lang/Object; createNumeric + 0 o p_135495_ + createShort (S)Ljava/lang/Object; createShort + 0 o p_135497_ + createString (Ljava/lang/String;)Ljava/lang/Object; createString + 0 o p_135499_ + empty ()Ljava/lang/Object; empty + getBooleanValue (Ljava/lang/Object;)Lcom/mojang/serialization/DataResult; getBooleanValue + 0 o p_135502_ + getByteBuffer (Ljava/lang/Object;)Lcom/mojang/serialization/DataResult; getByteBuffer + 0 o p_135504_ + getIntStream (Ljava/lang/Object;)Lcom/mojang/serialization/DataResult; getIntStream + 0 o p_135506_ + getList (Ljava/lang/Object;)Lcom/mojang/serialization/DataResult; getList + 0 o p_135508_ + getLongStream (Ljava/lang/Object;)Lcom/mojang/serialization/DataResult; getLongStream + 0 o p_135510_ + getMap (Ljava/lang/Object;)Lcom/mojang/serialization/DataResult; getMap + 0 o p_135512_ + getMapEntries (Ljava/lang/Object;)Lcom/mojang/serialization/DataResult; getMapEntries + 0 o p_135514_ + getMapValues (Ljava/lang/Object;)Lcom/mojang/serialization/DataResult; getMapValues + 0 o p_135516_ + getNumberValue (Ljava/lang/Object;)Lcom/mojang/serialization/DataResult; getNumberValue + 0 o p_135518_ + getStream (Ljava/lang/Object;)Lcom/mojang/serialization/DataResult; getStream + 0 o p_135520_ + getStringValue (Ljava/lang/Object;)Lcom/mojang/serialization/DataResult; getStringValue + 0 o p_135522_ + listBuilder ()Lcom/mojang/serialization/ListBuilder; listBuilder + mapBuilder ()Lcom/mojang/serialization/RecordBuilder; mapBuilder + mergeToList (Ljava/lang/Object;Ljava/lang/Object;)Lcom/mojang/serialization/DataResult; mergeToList + 0 o p_135526_ + 1 o p_135527_ + mergeToList (Ljava/lang/Object;Ljava/util/List;)Lcom/mojang/serialization/DataResult; mergeToList + 0 o p_135529_ + 1 o p_135530_ + mergeToMap (Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;)Lcom/mojang/serialization/DataResult; mergeToMap + 0 o p_135535_ + 1 o p_135536_ + 2 o p_135537_ + mergeToMap (Ljava/lang/Object;Lcom/mojang/serialization/MapLike;)Lcom/mojang/serialization/DataResult; mergeToMap + 0 o p_135532_ + 1 o p_135533_ + remove (Ljava/lang/Object;Ljava/lang/String;)Ljava/lang/Object; remove + 0 o p_135539_ + 1 o p_135540_ +acj net/minecraft/resources/FileToIdConverter + a f_244233_ + b f_244199_ + (Ljava/lang/String;Ljava/lang/String;)V + 0 o p_248876_ + 1 o p_251478_ + a (Ljava/lang/String;)Lacj; m_246568_ + static + 0 o p_248754_ + a (Lakx;)Ljava/util/Map; m_247457_ + 0 o p_252045_ + a (Lacq;)Lacq; m_245698_ + 0 o p_251878_ + b (Lacq;)Lacq; m_245273_ + 0 o p_249595_ + b (Lakx;)Ljava/util/Map; m_246760_ + 0 o p_249881_ + c (Lacq;)Z m_246659_ + 0 o p_248700_ + d (Lacq;)Z m_246145_ + 0 o p_251986_ +ack net/minecraft/resources/HolderSetCodec + a f_206655_ + b f_206656_ + c f_206657_ + d f_206658_ + (Lacp;Lcom/mojang/serialization/Codec;Z)V + 0 o p_206660_ + 1 o p_206661_ + 2 o p_206662_ + a (Lcom/mojang/datafixers/util/Pair;)Lcom/mojang/serialization/DataResult; m_206665_ + static + 0 o p_206666_ + a (Lhf;Lcom/mojang/datafixers/util/Either;)Lhi; m_206677_ + static + 0 o p_256011_ + 1 o p_206679_ + a (Lcom/mojang/serialization/DynamicOps;Ljava/lang/Object;)Lcom/mojang/serialization/DataResult; m_206670_ + 0 o p_206671_ + 1 o p_206672_ + a (Lacp;Lcom/mojang/serialization/Codec;Z)Lcom/mojang/serialization/Codec; m_206685_ + static + 0 o p_206686_ + 1 o p_206687_ + 2 o p_206688_ + a (Lcom/mojang/datafixers/util/Either;)Ljava/util/List; m_206663_ + static + 0 o p_206664_ + a (Lhi;Lcom/mojang/serialization/DynamicOps;Ljava/lang/Object;)Lcom/mojang/serialization/DataResult; encode + 0 o p_206674_ + 1 o p_206675_ + 2 o p_206676_ + a (Lhe;)Ljava/lang/String; m_274070_ + static + 0 o p_274797_ + a (Lhi;)Ljava/lang/String; m_274069_ + static + 0 o p_274796_ + a (Ljava/util/List;)Lcom/mojang/datafixers/util/Either; m_206683_ + static + 0 o p_206684_ + a (Lhf;Lcom/mojang/datafixers/util/Pair;)Lcom/mojang/datafixers/util/Pair; m_206680_ + static + 0 o p_256532_ + 1 o p_206682_ + a (Lcom/mojang/serialization/Codec;Z)Lcom/mojang/serialization/Codec; m_206667_ + static + 0 o p_206668_ + 1 o p_206669_ + b (Ljava/util/List;)Ljava/util/List; m_206693_ + static + 0 o p_206694_ + b (Lhi;Lcom/mojang/serialization/DynamicOps;Ljava/lang/Object;)Lcom/mojang/serialization/DataResult; m_206689_ + 0 o p_206690_ + 1 o p_206691_ + 2 o p_206692_ + decode (Lcom/mojang/serialization/DynamicOps;Ljava/lang/Object;)Lcom/mojang/serialization/DataResult; decode + 0 o p_206696_ + 1 o p_206697_ + encode (Ljava/lang/Object;Lcom/mojang/serialization/DynamicOps;Ljava/lang/Object;)Lcom/mojang/serialization/DataResult; encode + 0 o p_206699_ + 1 o p_206700_ + 2 o p_206701_ +acl net/minecraft/resources/RegistryDataLoader + a f_243803_ + b f_244547_ + c f_243935_ + ()V + static + ()V + a (Laco$b;Lakx;Lacp;Lia;Lcom/mojang/serialization/Decoder;Ljava/util/Map;)V m_255048_ + static + 0 o p_256369_ + 1 o p_256349_ + 2 o p_255792_ + 3 o p_256211_ + 4 o p_256232_ + 5 o p_255884_ + a (Ljava/lang/String;)V m_245344_ + static + 0 o p_248715_ + a (Ljava/util/Map$Entry;)Lacq; m_246181_ + static + 0 o p_251444_ + a (Ljava/io/PrintWriter;Ljava/util/Map$Entry;)V m_245166_ + static + 0 o p_249481_ + 1 o p_249838_ + a (Lakx;Laco$b;Lcom/mojang/datafixers/util/Pair;)V m_254785_ + static + 0 o p_255506_ + 1 o p_255507_ + 2 o p_255508_ + a (Lia;)Laco$a; m_255259_ + static + 0 o p_256020_ + a (Ljava/util/Map;)V m_245896_ + static + 0 o p_252325_ + a (Lacq;)Ljava/lang/String; m_246502_ + static + 0 o p_252033_ + a (Ljava/util/Map;Lacl$b;)Lcom/mojang/datafixers/util/Pair; m_245594_ + static + 0 o p_250399_ + 1 o p_250249_ + a (Lakx;Lhs;Ljava/util/List;)Lhs$b; m_247207_ + static + 0 o p_252046_ + 1 o p_249916_ + 2 o p_250344_ + a (Lhr;)Laco$a; m_255016_ + static + 0 o p_256230_ + a (Ljava/util/Map;Lcom/mojang/datafixers/util/Pair;)V m_257130_ + static + 0 o p_258220_ + 1 o p_258221_ + a (Lhs;Ljava/util/List;)Laco$b; m_255261_ + static + 0 o p_256568_ + 1 o p_255821_ + a (Ljava/util/Map;Lhs$d;)V m_254784_ + static + 0 o p_255504_ + 1 o p_255505_ + b (Ljava/io/PrintWriter;Ljava/util/Map$Entry;)V m_246019_ + static + 0 o p_249120_ + 1 o p_250688_ + b (Ljava/util/Map$Entry;)Lacq; m_245333_ + static + 0 o p_249353_ + b (Ljava/util/Map;Lcom/mojang/datafixers/util/Pair;)V m_257131_ + static + 0 o p_258222_ + 1 o p_258223_ +acl$1 net/minecraft/resources/RegistryDataLoader$1 + a f_254620_ + (Ljava/util/Map;)V + 0 o p_256526_ + a (Lacp;)Ljava/util/Optional; m_254838_ + 0 o p_256014_ +acl$a net/minecraft/resources/RegistryDataLoader$Loader + load (Lakx;Laco$b;)V m_245441_ + 0 o p_249926_ + 1 o p_256258_ +acl$b net/minecraft/resources/RegistryDataLoader$RegistryData + a f_243794_ + b f_244580_ + (Lacp;Lcom/mojang/serialization/Codec;)V + 0 o f_243794_ + 1 o f_244580_ + a ()Lacp; f_243794_ + a (Lia;Ljava/util/Map;Lakx;Laco$b;)V m_254786_ + 0 o p_255509_ + 1 o p_255510_ + 2 o p_255511_ + 3 o p_255512_ + a (Lcom/mojang/serialization/Lifecycle;Ljava/util/Map;)Lcom/mojang/datafixers/util/Pair; m_245364_ + 0 o p_251662_ + 1 o p_251565_ + b ()Lcom/mojang/serialization/Codec; f_244580_ + equals (Ljava/lang/Object;)Z equals + 0 o p_249596_ + hashCode ()I hashCode + toString ()Ljava/lang/String; toString +acm net/minecraft/resources/RegistryFileCodec + a f_135570_ + b f_135571_ + c f_135572_ + (Lacp;Lcom/mojang/serialization/Codec;Z)V + 0 o p_135574_ + 1 o p_135575_ + 2 o p_135576_ + a (Lhe;Lcom/mojang/serialization/DynamicOps;Ljava/lang/Object;)Lcom/mojang/serialization/DataResult; encode + 0 o p_206716_ + 1 o p_206717_ + 2 o p_206718_ + a ()Ljava/lang/String; m_274071_ + static + a (Lcom/mojang/datafixers/util/Pair;Lhe$c;)Lcom/mojang/datafixers/util/Pair; m_206704_ + static + 0 o p_206705_ + 1 o p_255658_ + a (Lacp;Lcom/mojang/serialization/Codec;Z)Lacm; m_135592_ + static + 0 o p_135593_ + 1 o p_135594_ + 2 o p_135595_ + a (Lacp;Lcom/mojang/serialization/Codec;)Lacm; m_135589_ + static + 0 o p_135590_ + 1 o p_135591_ + a (Lcom/mojang/serialization/DynamicOps;Ljava/lang/Object;Lacp;)Lcom/mojang/serialization/DataResult; m_206711_ + static + 0 o p_206712_ + 1 o p_206713_ + 2 o p_206714_ + a (Lacp;)Lcom/mojang/serialization/DataResult; m_274074_ + static + 0 o p_274799_ + a (Lcom/mojang/serialization/DynamicOps;Ljava/lang/Object;Ljava/lang/Object;)Lcom/mojang/serialization/DataResult; m_206707_ + 0 o p_206708_ + 1 o p_206709_ + 2 o p_206710_ + a (Lhe;)Ljava/lang/String; m_274075_ + static + 0 o p_274800_ + a (Lcom/mojang/datafixers/util/Pair;)Lcom/mojang/datafixers/util/Pair; m_214211_ + static + 0 o p_214212_ + b (Lcom/mojang/datafixers/util/Pair;)Lcom/mojang/datafixers/util/Pair; m_206719_ + static + 0 o p_206720_ + b ()Ljava/lang/String; m_274073_ + b (Lacp;)Ljava/lang/String; m_274072_ + static + 0 o p_274798_ + decode (Lcom/mojang/serialization/DynamicOps;Ljava/lang/Object;)Lcom/mojang/serialization/DataResult; decode + 0 o p_135608_ + 1 o p_135609_ + encode (Ljava/lang/Object;Lcom/mojang/serialization/DynamicOps;Ljava/lang/Object;)Lcom/mojang/serialization/DataResult; encode + 0 o p_135611_ + 1 o p_135612_ + 2 o p_135613_ + toString ()Ljava/lang/String; toString +acn net/minecraft/resources/RegistryFixedCodec + a f_206721_ + (Lacp;)V + 0 o p_206723_ + a (Lhe;Lcom/mojang/serialization/DynamicOps;Ljava/lang/Object;)Lcom/mojang/serialization/DataResult; encode + 0 o p_206729_ + 1 o p_206730_ + 2 o p_206731_ + a ()Ljava/lang/String; m_274079_ + a (Lcom/mojang/datafixers/util/Pair;Lhe$c;)Lcom/mojang/datafixers/util/Pair; m_214216_ + static + 0 o p_214217_ + 1 o p_256041_ + a (Lacq;)Lcom/mojang/serialization/DataResult; m_274076_ + static + 0 o p_274801_ + a (Ljava/lang/Object;)Lcom/mojang/serialization/DataResult; m_274081_ + 0 o p_274804_ + a (Lcom/mojang/serialization/DynamicOps;Ljava/lang/Object;Lacp;)Lcom/mojang/serialization/DataResult; m_206724_ + static + 0 o p_206725_ + 1 o p_206726_ + 2 o p_206727_ + a (Lacp;)Lacn; m_206740_ + static + 0 o p_206741_ + a (Lhe;)Ljava/lang/String; m_274080_ + static + 0 o p_274803_ + a (Ljava/util/Optional;Lcom/mojang/datafixers/util/Pair;)Lcom/mojang/serialization/DataResult; m_254788_ + 0 o p_255514_ + 1 o p_255515_ + b (Lacq;)Ljava/lang/String; m_274077_ + static + 0 o p_274802_ + b ()Ljava/lang/String; m_274078_ + c ()Ljava/lang/String; m_274082_ + decode (Lcom/mojang/serialization/DynamicOps;Ljava/lang/Object;)Lcom/mojang/serialization/DataResult; decode + 0 o p_206743_ + 1 o p_206744_ + encode (Ljava/lang/Object;Lcom/mojang/serialization/DynamicOps;Ljava/lang/Object;)Lcom/mojang/serialization/DataResult; encode + 0 o p_206746_ + 1 o p_206747_ + 2 o p_206748_ + toString ()Ljava/lang/String; toString +aco net/minecraft/resources/RegistryOps + b f_254668_ + (Lcom/mojang/serialization/DynamicOps;Laco$b;)V + 0 o p_256313_ + 1 o p_255799_ + a (Laco$b;)Laco$b; m_255214_ + static + 0 o p_255769_ + a (Lcom/mojang/serialization/DynamicOps;Laco$b;)Laco; m_255060_ + static + 0 o p_256278_ + 1 o p_256479_ + a ()Ljava/lang/String; m_274089_ + static + a (Lacp;Lacp;Lcom/mojang/serialization/DynamicOps;)Lcom/mojang/serialization/DataResult; m_274085_ + static + 0 o p_274806_ + 1 o p_274807_ + 2 o p_274808_ + a (Laco$a;)Lcom/mojang/serialization/DataResult; m_254796_ + static + 0 o p_255527_ + a (Lacp;)Ljava/util/Optional; m_255056_ + 0 o p_255757_ + a (Ljava/lang/Object;)Lhe$c; m_254793_ + static + 0 o p_255524_ + a (Lcom/mojang/serialization/DynamicOps;Lhg$b;)Laco; m_255058_ + static + 0 o p_256342_ + 1 o p_255950_ + a (Lacp;Laco$a;)Ljava/util/Optional; m_254790_ + static + 0 o p_255517_ + 1 o p_255518_ + a (Lacp;Lcom/mojang/serialization/DynamicOps;)Lcom/mojang/serialization/DataResult; m_274087_ + static + 0 o p_274810_ + 1 o p_274811_ + b (Ljava/lang/Object;)Lhf; m_254795_ + static + 0 o p_255526_ + b ()Ljava/lang/String; m_274083_ + static + b (Lacp;)Ljava/util/Optional; m_255006_ + 0 o p_256031_ + c (Lacp;)Lcom/mojang/serialization/codecs/RecordCodecBuilder; m_255175_ + static + 0 o p_206833_ + d (Lacp;)Lcom/mojang/serialization/codecs/RecordCodecBuilder; m_254866_ + static + 0 o p_256347_ + e (Lacp;)Lcom/mojang/serialization/DataResult; m_274090_ + static + 0 o p_274813_ + f (Lacp;)Ljava/lang/String; m_274086_ + static + 0 o p_274809_ + g (Lacp;)Lcom/mojang/serialization/DataResult; m_274088_ + static + 0 o p_274812_ + h (Lacp;)Ljava/lang/String; m_274084_ + static + 0 o p_274805_ +aco$1 net/minecraft/resources/RegistryOps$1 + a f_254712_ + b f_254621_ + (Laco$b;)V + 0 o p_256417_ + a (Lacp;)Ljava/util/Optional; m_254838_ + 0 o p_256043_ +aco$2 net/minecraft/resources/RegistryOps$2 + a f_254704_ + (Lhg$b;)V + 0 o p_256219_ + a (Lhg$c;)Laco$a; m_257132_ + static + 0 o p_258224_ + a (Lacp;)Ljava/util/Optional; m_254838_ + 0 o p_256323_ +aco$a net/minecraft/resources/RegistryOps$RegistryInfo + a f_254675_ + b f_254724_ + c f_254751_ + (Lhh;Lhf;Lcom/mojang/serialization/Lifecycle;)V + 0 o f_254675_ + 1 o f_254724_ + 2 o f_254751_ + a ()Lhh; f_254675_ + b ()Lhf; f_254724_ + c ()Lcom/mojang/serialization/Lifecycle; f_254751_ + equals (Ljava/lang/Object;)Z equals + 0 o p_256498_ + hashCode ()I hashCode + toString ()Ljava/lang/String; toString +aco$b net/minecraft/resources/RegistryOps$RegistryInfoLookup + a (Lacp;)Ljava/util/Optional; m_254838_ + 0 o p_256623_ +acp net/minecraft/resources/ResourceKey + a f_135775_ + b f_135776_ + c f_135777_ + ()V + static + (Lacq;Lacq;)V + 0 o p_135780_ + 1 o p_135781_ + a (Lacp$a;)Lacp; m_257133_ + static + 0 o p_258225_ + a (Lacp;)Lcom/mojang/serialization/Codec; m_195966_ + static + 0 o p_195967_ + a ()Lacq; m_135782_ + a (Lacq;Lacq;)Lacp; m_135790_ + static + 0 o p_135791_ + 1 o p_135792_ + a (Lacp;Lacq;)Lacp; m_135785_ + static + 0 o p_135786_ + 1 o p_135787_ + a (Lacq;)Lacp; m_135788_ + static + 0 o p_135789_ + b (Lacp;Lacq;)Lacp; m_195977_ + static + 0 o p_195978_ + 1 o p_195979_ + b ()Lacq; m_211136_ + b (Lacp;)Z m_135783_ + 0 o p_135784_ + c (Lacp;)Ljava/util/Optional; m_195975_ + 0 o p_195976_ + toString ()Ljava/lang/String; toString +acp$a net/minecraft/resources/ResourceKey$InternKey + a f_256880_ + b f_257046_ + (Lacq;Lacq;)V + 0 o f_256880_ + 1 o f_257046_ + a ()Lacq; f_256880_ + b ()Lacq; f_257046_ + equals (Ljava/lang/Object;)Z equals + 0 o p_259838_ + hashCode ()I hashCode + toString ()Ljava/lang/String; toString +acq net/minecraft/resources/ResourceLocation + a f_135803_ + b f_179907_ + c f_179908_ + d f_179909_ + e f_135806_ + f f_135804_ + g f_135805_ + ()V + static + ([Ljava/lang/String;)V + 0 o p_135814_ + (Ljava/lang/String;Ljava/lang/String;)V + 0 o p_135811_ + 1 o p_135812_ + (Ljava/lang/String;Ljava/lang/String;Lacq$a;)V + 0 o p_248791_ + 1 o p_249394_ + 2 o p_249089_ + (Ljava/lang/String;)V + 0 o p_135809_ + a (Ljava/lang/String;Ljava/lang/String;)Lacq; m_214293_ + static + 0 o p_214294_ + 1 o p_214295_ + a (Ljava/lang/String;Lz;)Ljava/lang/String; m_274447_ + static + 0 o p_275501_ + 1 o p_275735_ + a (Ljava/lang/String;)Lacq; m_135820_ + static + 0 o p_135821_ + a (Ljava/lang/String;C)Lacq; m_135822_ + static + 0 o p_135823_ + 1 o p_135824_ + a (C)Z m_135816_ + static + 0 o p_135817_ + a ()Ljava/lang/String; m_135815_ + a (Ljava/util/function/UnaryOperator;)Lacq; m_247266_ + 0 o p_250342_ + a (Lacq;)I compareTo + 0 o p_135826_ + a (Lcom/mojang/brigadier/StringReader;)Lacq; m_135818_ + static + 0 o p_135819_ + b (Ljava/lang/String;Ljava/lang/String;)Ljava/lang/String; m_269108_ + 0 o p_270871_ + 1 o p_270199_ + b (Ljava/lang/String;)Lcom/mojang/serialization/DataResult; m_135837_ + static + 0 o p_135838_ + b (Ljava/lang/String;C)[Ljava/lang/String; m_135832_ + static + 0 o p_135833_ + 1 o p_135834_ + b ()Ljava/lang/String; m_135827_ + b (C)Z m_135828_ + static + 0 o p_135829_ + c (C)Z m_135835_ + static + 0 o p_135836_ + c ()Ljava/lang/String; m_179910_ + c (Ljava/lang/String;)Lacq; m_247449_ + 0 o p_251088_ + c (Ljava/lang/String;Ljava/lang/String;)Ljava/lang/String; m_245413_ + static + 0 o p_250769_ + 1 o p_249616_ + compareTo (Ljava/lang/Object;)I compareTo + 0 o p_135840_ + d (Ljava/lang/String;Ljava/lang/String;)Ljava/lang/String; m_245185_ + static + 0 o p_251418_ + 1 o p_248828_ + d ()Ljava/lang/String; m_214298_ + d (Ljava/lang/String;)Lacq; m_246208_ + 0 o p_250620_ + e (Ljava/lang/String;)Lacq; m_266382_ + 0 o p_266769_ + e ()Ljava/lang/String; m_214299_ + equals (Ljava/lang/Object;)Z equals + 0 o p_135846_ + f (Ljava/lang/String;)Ljava/lang/String; m_214296_ + 0 o p_214297_ + g (Ljava/lang/String;)Z m_135830_ + static + 0 o p_135831_ + h (Ljava/lang/String;)Z m_135841_ + static + 0 o p_135842_ + hashCode ()I hashCode + i (Ljava/lang/String;)Z m_135843_ + static + 0 o p_135844_ + toString ()Ljava/lang/String; toString +acq$a net/minecraft/resources/ResourceLocation$Dummy +acq$b net/minecraft/resources/ResourceLocation$Serializer + ()V + a (Lacq;Ljava/lang/reflect/Type;Lcom/google/gson/JsonSerializationContext;)Lcom/google/gson/JsonElement; serialize + 0 o p_135855_ + 1 o p_135856_ + 2 o p_135857_ + a (Lcom/google/gson/JsonElement;Ljava/lang/reflect/Type;Lcom/google/gson/JsonDeserializationContext;)Lacq; deserialize + 0 o p_135851_ + 1 o p_135852_ + 2 o p_135853_ + deserialize (Lcom/google/gson/JsonElement;Ljava/lang/reflect/Type;Lcom/google/gson/JsonDeserializationContext;)Ljava/lang/Object; deserialize + 0 o p_135859_ + 1 o p_135860_ + 2 o p_135861_ + serialize (Ljava/lang/Object;Ljava/lang/reflect/Type;Lcom/google/gson/JsonSerializationContext;)Lcom/google/gson/JsonElement; serialize + 0 o p_135863_ + 1 o p_135864_ + 2 o p_135865_ +acr net/minecraft/resources/package-info +acs net/minecraft/server/Bootstrap + a f_135866_ + b f_285608_ + c f_135867_ + d f_135868_ + ()V + static + ()V + a (Ljava/lang/String;)V m_135875_ + static + 0 o p_135876_ + a (Ljava/lang/Iterable;Ljava/util/function/Function;Ljava/util/Set;)V m_135871_ + static + 0 o p_135872_ + 1 o p_135873_ + 2 o p_135874_ + a (Ljava/util/function/Supplier;)V m_179912_ + static + 0 o p_179913_ + a (Lacq;)Ljava/lang/String; m_135884_ + static + 0 o p_135885_ + a (Ljava/util/Set;)V m_135877_ + static + 0 o p_135878_ + a (Ljava/util/function/Function;Lqm;Ljava/util/Set;Ljava/lang/Object;)V m_135879_ + static + 0 o p_135880_ + 1 o p_135881_ + 2 o p_135882_ + 3 o p_135883_ + a ()V m_135870_ + static + b (Ljava/util/function/Supplier;)Ljava/lang/RuntimeException; m_179916_ + static + 0 o p_179917_ + b ()Ljava/util/Set; m_135886_ + static + b (Ljava/lang/String;)V m_179914_ + static + 0 o p_179915_ + c ()V m_135889_ + static + d ()V m_135890_ + static + e ()Ljava/lang/String; m_179918_ + static +acs$1 net/minecraft/server/Bootstrap$1 + a f_135891_ + b f_135892_ + (Lqm;Ljava/util/Set;)V + 0 o p_135894_ + 1 o p_135895_ + a (Lcmi$e;Lcmi$f;)V m_6889_ + 0 o p_135897_ + 1 o p_135898_ +act net/minecraft/server/ChainedJsonException + a f_135899_ + b f_135900_ + (Ljava/lang/String;)V + 0 o p_135902_ + (Ljava/lang/String;Ljava/lang/Throwable;)V + 0 o p_135904_ + 1 o p_135905_ + a (Ljava/lang/String;)V m_135908_ + 0 o p_135909_ + a (Ljava/lang/Exception;)Lact; m_135906_ + static + 0 o p_135907_ + b (Ljava/lang/String;)V m_135910_ + 0 o p_135911_ + getMessage ()Ljava/lang/String; getMessage +act$a net/minecraft/server/ChainedJsonException$Entry + a f_135913_ + b f_135914_ + ()V + a (Ljava/lang/String;)V m_135918_ + 0 o p_135919_ + a ()Ljava/lang/String; m_179919_ + b ()Ljava/lang/String; m_135923_ + toString ()Ljava/lang/String; toString +acu net/minecraft/server/ConsoleInput + a f_135928_ + b f_135929_ + (Ljava/lang/String;Lds;)V + 0 o p_135931_ + 1 o p_135932_ +acv net/minecraft/server/DebugLoggedPrintStream + b f_202580_ + ()V + static + (Ljava/lang/String;Ljava/io/OutputStream;)V + 0 o p_135934_ + 1 o p_135935_ + a (Ljava/lang/String;)V m_6812_ + 0 o p_135937_ +acw net/minecraft/server/Eula + a f_135938_ + b f_135939_ + c f_135940_ + ()V + static + (Ljava/nio/file/Path;)V + 0 o p_135943_ + a ()Z m_135944_ + b ()Z m_135945_ + c ()V m_135946_ +acx net/minecraft/server/LoggedPrintStream + a f_135948_ + b f_135947_ + ()V + static + (Ljava/lang/String;Ljava/io/OutputStream;)V + 0 o p_135951_ + 1 o p_135952_ + a (Ljava/lang/String;)V m_6812_ + 0 o p_135953_ + println (Ljava/lang/Object;)V println + 0 o p_135955_ + println (Ljava/lang/String;)V println + 0 o p_135957_ +acy net/minecraft/server/PlayerAdvancements + a f_135958_ + b f_135959_ + c f_135960_ + d f_135961_ + e f_135962_ + f f_263766_ + g f_263740_ + h f_135965_ + i f_135967_ + j f_263821_ + k f_135968_ + l f_135969_ + m f_135970_ + ()V + static + (Lcom/mojang/datafixers/DataFixer;Lalk;Ladc;Ljava/nio/file/Path;Laig;)V + 0 o p_265655_ + 1 o p_265703_ + 2 o p_265166_ + 3 o p_265268_ + 4 o p_265673_ + a (Ladc;)V m_135981_ + 0 o p_135982_ + a (Lae;Lag;)V m_135985_ + 0 o p_135986_ + 1 o p_135987_ + a (Ladc;Ljava/util/Map$Entry;)V m_264255_ + 0 o p_265222_ + 1 o p_265663_ + a (Lae;Ljava/util/Set;Ljava/util/Set;)V m_264265_ + 0 o p_265158_ + 1 o p_265206_ + 2 o p_265593_ + a (Ljava/util/Set;Ljava/util/Set;Lae;Z)V m_264320_ + 0 o p_265400_ + 1 o p_265267_ + 2 o p_265247_ + 3 o p_265330_ + a ()V m_135978_ + a (Laig;)V m_135979_ + 0 o p_135980_ + a (Lae;Ljava/lang/String;)Z m_135988_ + 0 o p_135989_ + 1 o p_135990_ + a (Lae;)V m_135983_ + 0 o p_135984_ + b (Lae;Ljava/lang/String;)Z m_135998_ + 0 o p_135999_ + 1 o p_136000_ + b (Lae;)Lag; m_135996_ + 0 o p_135997_ + b (Laig;)V m_135992_ + 0 o p_135993_ + b (Ladc;)V m_135994_ + 0 o p_135995_ + b ()V m_135991_ + c (Ladc;)V m_136002_ + 0 o p_136003_ + c (Lae;)V m_264423_ + 0 o p_265528_ + d (Ladc;)V m_136006_ + 0 o p_136007_ + d (Lae;)V m_136004_ + 0 o p_136005_ + e (Lae;)V m_136008_ + 0 o p_136009_ + f (Lae;)Z m_264523_ + 0 o p_265787_ +acy$1 net/minecraft/server/PlayerAdvancements$1 + ()V +acz net/minecraft/server/RegistryLayer + a STATIC + b WORLDGEN + c DIMENSIONS + d RELOADABLE + e f_244343_ + f f_244179_ + g $VALUES + ()V + static + (Ljava/lang/String;I)V + 0 o p_249785_ + 1 o p_251278_ + a ()Lhl; m_245849_ + static + b ()[Lacz; m_247136_ + static + valueOf (Ljava/lang/String;)Lacz; valueOf + static + 0 o p_248555_ + values ()[Lacz; values + static +ad net/minecraft/WorldVersion + a (Lajm;)I m_264084_ + 0 o p_265245_ + b ()Ljava/lang/String; m_132492_ + c ()Ljava/lang/String; m_132493_ + d ()Ldys; m_183476_ + e ()I m_132495_ + f ()Ljava/util/Date; m_132491_ + g ()Z m_132498_ +ada net/minecraft/server/ReloadableServerResources + a f_206845_ + b f_206846_ + c f_214300_ + d f_206847_ + e f_206848_ + f f_206849_ + g f_278467_ + h f_206853_ + i f_206854_ + ()V + static + (Lhs$b;Lcaw;Ldt$a;I)V + 0 o p_206857_ + 1 o p_250695_ + 2 o p_206858_ + 3 o p_206859_ + a (Lada;Ljava/lang/Object;)Lada; m_214304_ + static + 0 o p_214305_ + 1 o p_214306_ + a (Lada;Ljava/lang/Object;Ljava/lang/Throwable;)V m_254799_ + static + 0 o p_255533_ + 1 o p_255534_ + 2 o p_255535_ + a (Lacp;Ljava/util/Map$Entry;)Lanl; m_214301_ + static + 0 o p_214302_ + 1 o p_214303_ + a (Lhs;)V m_206868_ + 0 o p_206869_ + a (Lhs;Lann$a;)V m_206870_ + static + 0 o p_206871_ + 1 o p_206872_ + a ()Ladd; m_206860_ + a (Lakx;Lhs$b;Lcaw;Ldt$a;ILjava/util/concurrent/Executor;Ljava/util/concurrent/Executor;)Ljava/util/concurrent/CompletableFuture; m_247740_ + static + 0 o p_248588_ + 1 o p_251163_ + 2 o p_250212_ + 3 o p_249301_ + 4 o p_251126_ + 5 o p_249136_ + 6 o p_249601_ + a (Ljava/util/Map$Entry;)Ljava/util/List; m_214311_ + static + 0 o p_214312_ + b (Lhs;Lann$a;)V m_214313_ + static + 0 o p_214314_ + 1 o p_214315_ + b ()Ldzn; m_278801_ + c ()Lcjd; m_206887_ + d ()Ldt; m_206888_ + e ()Ladc; m_206889_ + f ()Ljava/util/List; m_206890_ +adb net/minecraft/server/RunningOnDifferentThreadException + a f_136017_ + ()V + static + ()V + fillInStackTrace ()Ljava/lang/Throwable; fillInStackTrace +adc net/minecraft/server/ServerAdvancementManager + a f_136021_ + b f_136022_ + c f_136023_ + d f_278379_ + ()V + static + (Ldzn;)V + 0 o p_279237_ + a (Ljava/util/Map;Lakx;Lban;)V m_5787_ + 0 o p_136034_ + 1 o p_136035_ + 2 o p_136036_ + a ()Ljava/util/Collection; m_136028_ + a (Ljava/util/Map;Lacq;Lcom/google/gson/JsonElement;)V m_278533_ + 0 o p_278902_ + 1 o p_278903_ + 2 o p_278904_ + a (Ljava/lang/Object;Lakx;Lban;)V m_5787_ + 0 o p_136030_ + 1 o p_136031_ + 2 o p_136032_ + a (Lacq;)Lae; m_136041_ + 0 o p_136042_ +add net/minecraft/server/ServerFunctionLibrary + a f_136043_ + b f_244053_ + c f_136046_ + d f_136047_ + e f_136048_ + f f_136049_ + g f_136050_ + ()V + static + (ILcom/mojang/brigadier/CommandDispatcher;)V + 0 o p_136053_ + 1 o p_136054_ + a (Lcom/google/common/collect/ImmutableMap$Builder;Lacq;Ljava/util/concurrent/CompletableFuture;)V m_179939_ + static + 0 o p_179940_ + 1 o p_179941_ + 2 o p_179942_ + a (Lakv;)Ljava/util/List; m_214316_ + static + 0 o p_214317_ + a (Lakr$a;Lakx;Lban;Lban;Ljava/util/concurrent/Executor;Ljava/util/concurrent/Executor;)Ljava/util/concurrent/CompletableFuture; m_5540_ + 0 o p_136057_ + 1 o p_136058_ + 2 o p_136059_ + 3 o p_136060_ + 4 o p_136061_ + 5 o p_136062_ + a (Lcom/mojang/datafixers/util/Pair;)V m_179943_ + 0 o p_179944_ + a (Ljava/util/concurrent/Executor;Ljava/util/Map;)Ljava/util/concurrent/CompletionStage; m_244808_ + 0 o p_248094_ + 1 o p_248095_ + a (Lacq;Lcom/google/common/collect/ImmutableMap$Builder;Ldn;Ljava/lang/Throwable;)Ljava/lang/Object; m_179951_ + static + 0 o p_179952_ + 1 o p_179953_ + 2 o p_179954_ + 3 o p_179955_ + a (Ljava/util/Map$Entry;Lacq;Lds;)Ldn; m_214320_ + 0 o p_214321_ + 1 o p_214322_ + 2 o p_214323_ + a (Ljava/util/Map;Ljava/lang/Void;Ljava/lang/Throwable;)Ljava/util/Map; m_179947_ + static + 0 o p_179948_ + 1 o p_179949_ + 2 o p_179950_ + a (Lakx;)Ljava/util/Map; m_244807_ + static + 0 o p_248093_ + a ()Ljava/util/Map; m_136055_ + a (Lacq;)Ljava/util/Optional; m_136089_ + 0 o p_136090_ + b (Lacq;)Ljava/util/Collection; m_214327_ + 0 o p_214328_ + b (Lakx;)Ljava/util/Map; m_179956_ + 0 o p_179957_ + b ()Ljava/lang/Iterable; m_206891_ +ade net/minecraft/server/ServerFunctionManager + a f_179958_ + b f_136099_ + c f_136100_ + d f_136101_ + e f_179959_ + f f_136105_ + g f_136106_ + h f_136107_ + ()V + static + (Lnet/minecraft/server/MinecraftServer;Ladd;)V + 0 o p_136110_ + 1 o p_136111_ + a (Ldn;Lds;)I m_136112_ + 0 o p_136113_ + 1 o p_136114_ + a (Ladd;)V m_136120_ + 0 o p_136121_ + a (Ldn;Lds;Lade$c;)I m_179960_ + 0 o p_179961_ + 1 o p_179962_ + 2 o p_179963_ + a ()I m_136122_ + a (Ljava/util/Collection;Lacq;)V m_136115_ + 0 o p_136116_ + 1 o p_136117_ + a (Lacq;)Ljava/util/Optional; m_136118_ + 0 o p_136119_ + b ()Lcom/mojang/brigadier/CommandDispatcher; m_136127_ + b (Lacq;)Ljava/util/Collection; m_214331_ + 0 o p_214332_ + b (Ladd;)V m_136125_ + 0 o p_136126_ + c ()V m_136128_ + d ()Lds; m_136129_ + e ()Ljava/lang/Iterable; m_136130_ + f ()Ljava/lang/Iterable; m_136131_ +ade$a net/minecraft/server/ServerFunctionManager$ExecutionContext + a f_179964_ + b f_179965_ + c f_179966_ + d f_179967_ + e f_179968_ + f f_279555_ + (Lade;Lade$c;)V + 0 o p_179970_ + 1 o p_179971_ + a (Ljava/lang/String;)V m_179975_ + 0 o p_179976_ + a (Ldn;Lds;)V m_179972_ + 0 o p_179973_ + 1 o p_179974_ + a (Lds;)Lds; m_280539_ + 0 o p_282848_ + b (Ldn;Lds;)I m_179977_ + 0 o p_179978_ + 1 o p_179979_ +ade$a$a net/minecraft/server/ServerFunctionManager$ExecutionContext$AbortingReturnValueConsumer + a f_279625_ + b f_279539_ + (Lade$a;Ljava/util/function/IntConsumer;)V + 0 o p_283320_ + 1 o p_281634_ + accept (I)V accept + 0 o p_281286_ +ade$b net/minecraft/server/ServerFunctionManager$QueuedCommand + a f_136133_ + b f_179980_ + c f_136134_ + (Lds;ILdn$c;)V + 0 o p_179982_ + 1 o p_179983_ + 2 o p_179984_ + a (Lade;Ljava/util/Deque;ILade$c;)V m_179985_ + 0 o p_179986_ + 1 o p_179987_ + 2 o p_179988_ + 3 o p_179989_ + toString ()Ljava/lang/String; toString +ade$c net/minecraft/server/ServerFunctionManager$TraceCallbacks + a (ILjava/lang/String;)V m_142256_ + 0 o p_179990_ + 1 o p_179991_ + a (ILjava/lang/String;I)V m_142279_ + 0 o p_179992_ + 1 o p_179993_ + 2 o p_179994_ + a (ILacq;I)V m_142147_ + 0 o p_179995_ + 1 o p_179996_ + 2 o p_179997_ + b (ILjava/lang/String;)V m_142255_ + 0 o p_179998_ + 1 o p_179999_ +adf net/minecraft/server/ServerInterface + G ()Ljava/lang/String; m_7630_ + H ()I m_7416_ + I ()I m_7418_ + J ()[Ljava/lang/String; m_7641_ + a ()Lahf; m_7913_ + a (Ljava/lang/String;)Ljava/lang/String; m_7261_ + 0 o p_136143_ + b ()Ljava/lang/String; m_6866_ + d ()I m_7448_ + f ()Ljava/lang/String; m_6995_ + q ()Ljava/lang/String; m_7123_ + s ()Ljava/lang/String; m_7138_ +adg net/minecraft/server/ServerScoreboard + g f_136193_ + h f_136194_ + i f_136195_ + (Lnet/minecraft/server/MinecraftServer;)V + 0 o p_136197_ + a (Ljava/lang/String;)V m_7182_ + 0 o p_136210_ + a (Ljava/lang/Runnable;)V m_136207_ + 0 o p_136208_ + a (Ljava/lang/String;Lefd;)V m_5973_ + 0 o p_136212_ + 1 o p_136213_ + a (Ljava/lang/String;Lefe;)Z m_6546_ + 0 o p_136215_ + 1 o p_136216_ + a (Lefd;)V m_7092_ + 0 o p_136202_ + a (Leff;)V m_5734_ + 0 o p_136206_ + a (Lqr;)Lefh; m_180013_ + 0 o p_180014_ + a (Lefe;)V m_7650_ + 0 o p_136204_ + a (ILefd;)V m_7136_ + 0 o p_136199_ + 1 o p_136200_ + a ()V m_136217_ + b (Lefe;)V m_7645_ + 0 o p_136221_ + b (Lefd;)V m_7091_ + 0 o p_136219_ + b ()Lefh; m_180015_ + b (Ljava/lang/String;Lefe;)V m_6519_ + 0 o p_136223_ + 1 o p_136224_ + c (Lefd;)V m_7093_ + 0 o p_136226_ + c (Lefe;)V m_7644_ + 0 o p_136228_ + d (Lefd;)Ljava/util/List; m_136229_ + 0 o p_136230_ + e (Lefd;)V m_136231_ + 0 o p_136232_ + f (Lefd;)Ljava/util/List; m_136233_ + 0 o p_136234_ + g (Lefd;)V m_136235_ + 0 o p_136236_ + h (Lefd;)I m_136237_ + 0 o p_136238_ +adg$a net/minecraft/server/ServerScoreboard$Method + a CHANGE + b REMOVE + c $VALUES + ()V + static + (Ljava/lang/String;I)V + 0 o p_136244_ + 1 o p_136245_ + a ()[Ladg$a; m_180016_ + static + valueOf (Ljava/lang/String;)Ladg$a; valueOf + static + 0 o p_136247_ + values ()[Ladg$a; values + static +adh net/minecraft/server/Services + a f_214333_ + b f_283795_ + c f_214335_ + d f_214336_ + e f_214337_ + (Lcom/mojang/authlib/minecraft/MinecraftSessionService;Lcom/mojang/authlib/yggdrasil/ServicesKeySet;Lcom/mojang/authlib/GameProfileRepository;Lalg;)V + 0 o f_214333_ + 1 o f_283795_ + 2 o f_214335_ + 3 o f_214336_ + a (Lcom/mojang/authlib/yggdrasil/YggdrasilAuthenticationService;Ljava/io/File;)Ladh; m_214344_ + static + 0 o p_214345_ + 1 o p_214346_ + a ()Lapj; m_284133_ + b ()Lcom/mojang/authlib/minecraft/MinecraftSessionService; f_214333_ + c ()Lcom/mojang/authlib/yggdrasil/ServicesKeySet; f_283795_ + d ()Lcom/mojang/authlib/GameProfileRepository; f_214335_ + e ()Lalg; f_214336_ + equals (Ljava/lang/Object;)Z equals + 0 o p_214351_ + hashCode ()I hashCode + toString ()Ljava/lang/String; toString +adi net/minecraft/server/TickTask + a f_136249_ + b f_136250_ + (ILjava/lang/Runnable;)V + 0 o p_136252_ + 1 o p_136253_ + a ()I m_136254_ + run ()V run +adj net/minecraft/server/WorldLoader + a f_244206_ + ()V + static + ()V + a (Ladj$c;Ladj$f;Ladj$e;Ljava/util/concurrent/Executor;Ljava/util/concurrent/Executor;)Ljava/util/concurrent/CompletableFuture; m_214362_ + static + 0 o p_214363_ + 1 o p_214364_ + 2 o p_214365_ + 3 o p_214366_ + 4 o p_214367_ + a (Lakn;Lada;Ljava/lang/Throwable;)V m_214368_ + static + 0 o p_214369_ + 1 o p_214370_ + 2 o p_214371_ + a (Lakx;Lhl;Lacz;Ljava/util/List;)Lhs$b; m_246152_ + static + 0 o p_251529_ + 1 o p_250737_ + 2 o p_250790_ + 3 o p_249516_ + a (Lhs$b;Ladj$e;Lakn;Lhl;Ladj$b;Lada;)Ljava/lang/Object; m_244809_ + static + 0 o p_248096_ + 1 o p_248097_ + 2 o p_248098_ + 3 o p_248099_ + 4 o p_248100_ + 5 o p_248101_ + b (Lakx;Lhl;Lacz;Ljava/util/List;)Lhl; m_245736_ + static + 0 o p_249913_ + 1 o p_252077_ + 2 o p_250346_ + 3 o p_250589_ +adj$a net/minecraft/server/WorldLoader$DataLoadContext + a f_244187_ + b f_244127_ + c f_244104_ + d f_243759_ + (Lakx;Lcnf;Lhs$b;Lhs$b;)V + 0 o f_244187_ + 1 o f_244127_ + 2 o f_244104_ + 3 o f_243759_ + a ()Lakx; f_244187_ + b ()Lcnf; f_244127_ + c ()Lhs$b; f_244104_ + d ()Lhs$b; f_243759_ + equals (Ljava/lang/Object;)Z equals + 0 o p_250459_ + hashCode ()I hashCode + toString ()Ljava/lang/String; toString +adj$b net/minecraft/server/WorldLoader$DataLoadOutput + a f_244458_ + b f_244143_ + (Ljava/lang/Object;Lhs$b;)V + 0 o f_244458_ + 1 o f_244143_ + a ()Ljava/lang/Object; f_244458_ + b ()Lhs$b; f_244143_ + equals (Ljava/lang/Object;)Z equals + 0 o p_250694_ + hashCode ()I hashCode + toString ()Ljava/lang/String; toString +adj$c net/minecraft/server/WorldLoader$InitConfig + a f_214378_ + b f_214379_ + c f_214380_ + (Ladj$d;Ldt$a;I)V + 0 o f_214378_ + 1 o f_214379_ + 2 o f_214380_ + a ()Ladj$d; f_214378_ + b ()Ldt$a; f_214379_ + c ()I f_214380_ + equals (Ljava/lang/Object;)Z equals + 0 o p_214389_ + hashCode ()I hashCode + toString ()Ljava/lang/String; toString +adj$d net/minecraft/server/WorldLoader$PackConfig + a f_214392_ + b f_244366_ + c f_214394_ + d f_244133_ + (Laki;Lcnf;ZZ)V + 0 o f_214392_ + 1 o f_244366_ + 2 o f_214394_ + 3 o f_244133_ + a ()Lcom/mojang/datafixers/util/Pair; m_214399_ + b ()Laki; f_214392_ + c ()Lcnf; f_244366_ + d ()Z f_214394_ + e ()Z f_244133_ + equals (Ljava/lang/Object;)Z equals + 0 o p_214404_ + hashCode ()I hashCode + toString ()Ljava/lang/String; toString +adj$e net/minecraft/server/WorldLoader$ResultFactory + create (Lakn;Lada;Lhl;Ljava/lang/Object;)Ljava/lang/Object; m_214407_ + 0 o p_214408_ + 1 o p_214409_ + 2 o p_248844_ + 3 o p_214411_ +adj$f net/minecraft/server/WorldLoader$WorldDataSupplier + get (Ladj$a;)Ladj$b; m_214412_ + 0 o p_251042_ +adk net/minecraft/server/WorldStem + a f_206892_ + b f_206893_ + c f_244542_ + d f_206895_ + (Lakn;Lada;Lhl;Ldze;)V + 0 o f_206892_ + 1 o f_206893_ + 2 o f_244542_ + 3 o f_206895_ + a ()Lakn; f_206892_ + b ()Lada; f_206893_ + c ()Lhl; f_244542_ + close ()V close + d ()Ldze; f_206895_ + equals (Ljava/lang/Object;)Z equals + 0 o p_206923_ + hashCode ()I hashCode + toString ()Ljava/lang/String; toString +adl net/minecraft/server/advancements/AdvancementVisibilityEvaluator + a f_263793_ + ()V + a (Lae;Lit/unimi/dsi/fastutil/Stack;Ljava/util/function/Predicate;Ladl$a;)Z m_264402_ + static + 0 o p_265202_ + 1 o p_265086_ + 2 o p_265561_ + 3 o p_265381_ + a (Lae;Z)Ladl$b; m_264339_ + static + 0 o p_265736_ + 1 o p_265426_ + a (Lae;Ljava/util/function/Predicate;Ladl$a;)V m_264099_ + static + 0 o p_265578_ + 1 o p_265359_ + 2 o p_265303_ + a (Lit/unimi/dsi/fastutil/Stack;)Z m_264309_ + static + 0 o p_265343_ +adl$a net/minecraft/server/advancements/AdvancementVisibilityEvaluator$Output + accept (Lae;Z)V m_264135_ + 0 o p_265639_ + 1 o p_265580_ +adl$b net/minecraft/server/advancements/AdvancementVisibilityEvaluator$VisibilityRule + a SHOW + b HIDE + c NO_CHANGE + d $VALUES + ()V + static + (Ljava/lang/String;I)V + 0 o p_265740_ + 1 o p_265478_ + a ()[Ladl$b; m_264245_ + static + valueOf (Ljava/lang/String;)Ladl$b; valueOf + static + 0 o p_265355_ + values ()[Ladl$b; values + static +adm net/minecraft/server/advancements/package-info +adn net/minecraft/server/bossevents/CustomBossEvent + h f_136256_ + i f_136257_ + j f_136258_ + k f_136259_ + (Lacq;Lsw;)V + 0 o p_136261_ + 1 o p_136262_ + a (Lqr;Lacq;)Ladn; m_136272_ + static + 0 o p_136273_ + 1 o p_136274_ + a (I)V m_136264_ + 0 o p_136265_ + a ()Lacq; m_136263_ + a (Ljava/util/Collection;)Z m_136268_ + 0 o p_136269_ + a (Ljava/util/UUID;)V m_136270_ + 0 o p_136271_ + a (Lts;)Lts; m_136275_ + 0 o p_136276_ + a (Laig;)V m_6543_ + 0 o p_136267_ + b (I)V m_136278_ + 0 o p_136279_ + b (Laig;)V m_6539_ + 0 o p_136281_ + b ()V m_7706_ + c ()I m_136282_ + c (Laig;)V m_136283_ + 0 o p_136284_ + d ()I m_136285_ + d (Laig;)V m_136286_ + 0 o p_136287_ + e ()Lsw; m_136288_ + f ()Lqr; m_136289_ +ado net/minecraft/server/bossevents/CustomBossEvents + a f_136290_ + ()V + a ()Ljava/util/Collection; m_136292_ + a (Ladn;)V m_136302_ + 0 o p_136303_ + a (Lacq;Lsw;)Ladn; m_136299_ + 0 o p_136300_ + 1 o p_136301_ + a (Lacq;)Ladn; m_136297_ + 0 o p_136298_ + a (Lqr;)V m_136295_ + 0 o p_136296_ + a (Laig;)V m_136293_ + 0 o p_136294_ + b ()Ljava/util/Collection; m_136304_ + b (Laig;)V m_136305_ + 0 o p_136306_ + c ()Lqr; m_136307_ +adp net/minecraft/server/bossevents/package-info +adq net/minecraft/server/chase/ChaseClient + a f_195980_ + b f_195981_ + c f_195982_ + d f_195983_ + e f_195984_ + f f_195985_ + g f_195986_ + h f_195987_ + ()V + static + (Ljava/lang/String;ILnet/minecraft/server/MinecraftServer;)V + 0 o p_195990_ + 1 o p_195991_ + 2 o p_195992_ + a (Ljava/lang/String;)V m_195994_ + 0 o p_195995_ + a ()V m_195993_ + a (Ladq$a;)V m_195998_ + 0 o p_195999_ + a (Ljava/util/Scanner;)V m_195996_ + 0 o p_195997_ + b (Ljava/util/Scanner;)Ljava/util/Optional; m_196003_ + 0 o p_196004_ + b (Ljava/lang/String;)V m_196001_ + 0 o p_196002_ + b ()V m_196000_ + c (Ljava/lang/String;)V m_196006_ + 0 o p_196007_ + c ()V m_196005_ +adq$a net/minecraft/server/chase/ChaseClient$TeleportTarget + a f_196008_ + b f_196009_ + c f_196010_ + (Lacp;Leei;Leeh;)V + 0 o f_196008_ + 1 o f_196009_ + 2 o f_196010_ + a ()Lacp; f_196008_ + b ()Leei; f_196009_ + c ()Leeh; f_196010_ + equals (Ljava/lang/Object;)Z equals + 0 o p_196019_ + hashCode ()I hashCode + toString ()Ljava/lang/String; toString +adr net/minecraft/server/chase/ChaseServer + a f_196022_ + b f_196023_ + c f_196024_ + d f_196025_ + e f_196026_ + f f_196027_ + g f_196028_ + h f_196029_ + ()V + static + (Ljava/lang/String;ILalk;I)V + 0 o p_196032_ + 1 o p_196033_ + 2 o p_196034_ + 3 o p_196035_ + a (Ljava/net/Socket;[B)V m_196037_ + static + 0 o p_196038_ + 1 o p_196039_ + a ()V m_196036_ + b ()V m_196040_ + c ()V m_196041_ + d ()V m_196042_ + e ()Ladr$a; m_196043_ +adr$a net/minecraft/server/chase/ChaseServer$PlayerPosition + a f_196044_ + b f_196045_ + c f_196046_ + d f_196047_ + e f_196048_ + f f_196049_ + (Ljava/lang/String;DDDFF)V + 0 o f_196044_ + 1 o f_196045_ + 2 o f_196046_ + 3 o f_196047_ + 4 o f_196048_ + 5 o f_196049_ + a ()Ljava/lang/String; f_196044_ + b ()D f_196045_ + c ()D f_196046_ + d ()D f_196047_ + e ()F f_196048_ + equals (Ljava/lang/Object;)Z equals + 0 o p_196063_ + f ()F f_196049_ + g ()Ljava/lang/String; m_196065_ + hashCode ()I hashCode + toString ()Ljava/lang/String; toString +ads net/minecraft/server/chase/package-info +adt net/minecraft/server/commands/AdvancementCommands + a f_136308_ + ()V + static + ()V + a (Lae;Ljava/util/List;)V m_136330_ + static + 0 o p_136331_ + 1 o p_136332_ + a (Lds;)Z m_136317_ + static + 0 o p_136318_ + a (Lds;Ljava/util/Collection;Ladt$a;Lae;Ljava/lang/String;)I m_136324_ + static + 0 o p_136325_ + 1 o p_136326_ + 2 o p_136327_ + 3 o p_136328_ + 4 o p_136329_ + a (Lcom/mojang/brigadier/context/CommandContext;Lcom/mojang/brigadier/suggestion/SuggestionsBuilder;)Ljava/util/concurrent/CompletableFuture; m_136314_ + static + 0 o p_136315_ + 1 o p_136316_ + a (Ladt$a;Ljava/lang/String;Lae;Ljava/util/Collection;)Lsw; m_287814_ + static + 0 o p_288283_ + 1 o p_288284_ + 2 o p_288285_ + 3 o p_288286_ + a (Lcom/mojang/brigadier/CommandDispatcher;)V m_136310_ + static + 0 o p_136311_ + a (Lae;Ladt$b;)Ljava/util/List; m_136333_ + static + 0 o p_136334_ + 1 o p_136335_ + a (Lds;Ljava/util/Collection;Ladt$a;Ljava/util/Collection;)I m_136319_ + static + 0 o p_136320_ + 1 o p_136321_ + 2 o p_136322_ + 3 o p_136323_ + a (Lcom/mojang/brigadier/context/CommandContext;)I m_136312_ + static + 0 o p_136313_ + a (Ladt$a;Ljava/util/Collection;Ljava/util/Collection;)Lsw; m_287815_ + static + 0 o p_288287_ + 1 o p_288288_ + 2 o p_288289_ + b (Lcom/mojang/brigadier/context/CommandContext;)I m_136336_ + static + 0 o p_136337_ + b (Ladt$a;Ljava/lang/String;Lae;Ljava/util/Collection;)Lsw; m_289058_ + static + 0 o p_289253_ + 1 o p_289254_ + 2 o p_289255_ + 3 o p_289256_ + b (Ladt$a;Ljava/util/Collection;Ljava/util/Collection;)Lsw; m_289057_ + static + 0 o p_289250_ + 1 o p_289251_ + 2 o p_289252_ + b (Lcom/mojang/brigadier/context/CommandContext;Lcom/mojang/brigadier/suggestion/SuggestionsBuilder;)Ljava/util/concurrent/CompletableFuture; m_136338_ + static + 0 o p_136339_ + 1 o p_136340_ + c (Lcom/mojang/brigadier/context/CommandContext;)I m_136341_ + static + 0 o p_136342_ + c (Ladt$a;Ljava/util/Collection;Ljava/util/Collection;)Lsw; m_287811_ + static + 0 o p_288273_ + 1 o p_288274_ + 2 o p_288275_ + c (Lcom/mojang/brigadier/context/CommandContext;Lcom/mojang/brigadier/suggestion/SuggestionsBuilder;)Ljava/util/concurrent/CompletableFuture; m_136343_ + static + 0 o p_136344_ + 1 o p_136345_ + d (Lcom/mojang/brigadier/context/CommandContext;)I m_136346_ + static + 0 o p_136347_ + d (Ladt$a;Ljava/util/Collection;Ljava/util/Collection;)Lsw; m_289059_ + static + 0 o p_289257_ + 1 o p_289258_ + 2 o p_289259_ + e (Lcom/mojang/brigadier/context/CommandContext;)I m_136348_ + static + 0 o p_136349_ + f (Lcom/mojang/brigadier/context/CommandContext;)I m_136350_ + static + 0 o p_136351_ + g (Lcom/mojang/brigadier/context/CommandContext;)I m_136352_ + static + 0 o p_136353_ + h (Lcom/mojang/brigadier/context/CommandContext;)I m_136354_ + static + 0 o p_136355_ + i (Lcom/mojang/brigadier/context/CommandContext;)I m_136356_ + static + 0 o p_136357_ + j (Lcom/mojang/brigadier/context/CommandContext;)I m_136358_ + static + 0 o p_136359_ + k (Lcom/mojang/brigadier/context/CommandContext;)I m_136360_ + static + 0 o p_136361_ + l (Lcom/mojang/brigadier/context/CommandContext;)I m_136362_ + static + 0 o p_136363_ +adt$a net/minecraft/server/commands/AdvancementCommands$Action + a GRANT + b REVOKE + c f_136366_ + d $VALUES + ()V + static + (Ljava/lang/String;ILjava/lang/String;)V + 0 o p_136370_ + 1 o p_136371_ + 2 o p_136372_ + a (Laig;Ljava/lang/Iterable;)I m_136379_ + 0 o p_136380_ + 1 o p_136381_ + a ()Ljava/lang/String; m_136378_ + a (Laig;Lae;Ljava/lang/String;)Z m_5753_ + 0 o p_136384_ + 1 o p_136385_ + 2 o p_136386_ + a (Laig;Lae;)Z m_6070_ + 0 o p_136382_ + 1 o p_136383_ + b ()[Ladt$a; m_180018_ + static + valueOf (Ljava/lang/String;)Ladt$a; valueOf + static + 0 o p_136388_ + values ()[Ladt$a; values + static +adt$a$1 net/minecraft/server/commands/AdvancementCommands$Action$1 + (Ljava/lang/String;ILjava/lang/String;)V + 0 o p_136391_ + 1 o p_136392_ + 2 o p_136393_ + a (Laig;Lae;Ljava/lang/String;)Z m_5753_ + 0 o p_136398_ + 1 o p_136399_ + 2 o p_136400_ + a (Laig;Lae;)Z m_6070_ + 0 o p_136395_ + 1 o p_136396_ +adt$a$2 net/minecraft/server/commands/AdvancementCommands$Action$2 + (Ljava/lang/String;ILjava/lang/String;)V + 0 o p_136402_ + 1 o p_136403_ + 2 o p_136404_ + a (Laig;Lae;Ljava/lang/String;)Z m_5753_ + 0 o p_136409_ + 1 o p_136410_ + 2 o p_136411_ + a (Laig;Lae;)Z m_6070_ + 0 o p_136406_ + 1 o p_136407_ +adt$b net/minecraft/server/commands/AdvancementCommands$Mode + a ONLY + b THROUGH + c FROM + d UNTIL + e EVERYTHING + f f_136417_ + g f_136418_ + h $VALUES + ()V + static + (Ljava/lang/String;IZZ)V + 0 o p_136422_ + 1 o p_136423_ + 2 o p_136424_ + 3 o p_136425_ + a ()[Ladt$b; m_180019_ + static + valueOf (Ljava/lang/String;)Ladt$b; valueOf + static + 0 o p_136431_ + values ()[Ladt$b; values + static +adu net/minecraft/server/commands/AttributeCommand + a f_136434_ + b f_136435_ + c f_136436_ + d f_136437_ + ()V + static + ()V + a (Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;)Lcom/mojang/brigadier/Message; m_136496_ + static + 0 o p_136497_ + 1 o p_136498_ + 2 o p_136499_ + a (Lds;Lbfj;Lhe;Ljava/util/UUID;D)I m_136463_ + static + 0 o p_136464_ + 1 o p_136465_ + 2 o p_250680_ + 3 o p_136467_ + 4 o p_136468_ + a (Lds;)Z m_212440_ + static + 0 o p_212441_ + a (Lhe;)Lsw; m_247618_ + static + 0 o p_250602_ + a (Ljava/util/UUID;Lhe;Lbfj;)Lsw; m_287816_ + static + 0 o p_288290_ + 1 o p_288291_ + 2 o p_288292_ + a (Lbfj;Lhe;)Lbhc; m_246653_ + static + 0 o p_252177_ + 1 o p_249942_ + a (Lds;Lbfj;Lhe;Ljava/util/UUID;Ljava/lang/String;DLbhe$a;)I m_136469_ + static + 0 o p_136470_ + 1 o p_136471_ + 2 o p_251636_ + 3 o p_136473_ + 4 o p_136474_ + 5 o p_136475_ + 6 o p_136476_ + a (Lds;Lbfj;Lhe;Ljava/util/UUID;)I m_136458_ + static + 0 o p_136459_ + 1 o p_136460_ + 2 o p_250830_ + 3 o p_136462_ + a (Ljava/util/UUID;Lhe;Lbfj;D)Lsw; m_287820_ + static + 0 o p_288302_ + 1 o p_288303_ + 2 o p_288304_ + 3 o p_288305_ + a (Ljava/lang/Object;)Lcom/mojang/brigadier/Message; m_212442_ + static + 0 o p_212443_ + a (Ljava/lang/Object;Ljava/lang/Object;)Lcom/mojang/brigadier/Message; m_212444_ + static + 0 o p_212445_ + 1 o p_212446_ + a (Lbfj;)Lbfz; m_136439_ + static + 0 o p_136440_ + a (Lhe;Lbfj;D)Lsw; m_287819_ + static + 0 o p_288299_ + 1 o p_288300_ + 2 o p_288301_ + a (Lds;Lbfj;Lhe;D)I m_247645_ + static + 0 o p_251776_ + 1 o p_249647_ + 2 o p_250986_ + 3 o p_251395_ + a (Lcom/mojang/brigadier/context/CommandContext;)I m_244819_ + static + 0 o p_248111_ + a (Lcom/mojang/brigadier/CommandDispatcher;Ldm;)V m_245835_ + static + 0 o p_251026_ + 1 o p_250936_ + b (Lcom/mojang/brigadier/context/CommandContext;)I m_244818_ + static + 0 o p_248110_ + b (Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;)Lcom/mojang/brigadier/Message; m_212447_ + static + 0 o p_212448_ + 1 o p_212449_ + 2 o p_212450_ + b (Lds;Lbfj;Lhe;D)I m_246137_ + static + 0 o p_248780_ + 1 o p_251083_ + 2 o p_250388_ + 3 o p_250194_ + b (Lhe;Lbfj;D)Lsw; m_287821_ + static + 0 o p_288306_ + 1 o p_288307_ + 2 o p_288308_ + b (Lbfj;Lhe;)Lbfz; m_245112_ + static + 0 o p_252105_ + 1 o p_248921_ + b (Ljava/util/UUID;Lhe;Lbfj;)Lsw; m_287817_ + static + 0 o p_288293_ + 1 o p_288294_ + 2 o p_288295_ + c (Lds;Lbfj;Lhe;D)I m_245136_ + static + 0 o p_248556_ + 1 o p_248620_ + 2 o p_249456_ + 3 o p_252212_ + c (Lcom/mojang/brigadier/context/CommandContext;)I m_244811_ + static + 0 o p_248103_ + c (Lhe;Lbfj;D)Lsw; m_287818_ + static + 0 o p_288296_ + 1 o p_288297_ + 2 o p_288298_ + d (Lcom/mojang/brigadier/context/CommandContext;)I m_244816_ + static + 0 o p_248108_ + e (Lcom/mojang/brigadier/context/CommandContext;)I m_244815_ + static + 0 o p_248107_ + f (Lcom/mojang/brigadier/context/CommandContext;)I m_244813_ + static + 0 o p_248105_ + g (Lcom/mojang/brigadier/context/CommandContext;)I m_244814_ + static + 0 o p_248106_ + h (Lcom/mojang/brigadier/context/CommandContext;)I m_244820_ + static + 0 o p_248112_ + i (Lcom/mojang/brigadier/context/CommandContext;)I m_244810_ + static + 0 o p_248102_ + j (Lcom/mojang/brigadier/context/CommandContext;)I m_244812_ + static + 0 o p_248104_ + k (Lcom/mojang/brigadier/context/CommandContext;)I m_244817_ + static + 0 o p_248109_ +adv net/minecraft/server/commands/BanIpCommands + a f_136524_ + b f_136525_ + ()V + static + ()V + a (Lds;Ljava/lang/String;Lsw;)I m_136533_ + static + 0 o p_136534_ + 1 o p_136535_ + 2 o p_136536_ + a (Ljava/util/List;)Lsw; m_287822_ + static + 0 o p_288309_ + a (Lcom/mojang/brigadier/CommandDispatcher;)V m_136527_ + static + 0 o p_136528_ + a (Lcom/mojang/brigadier/context/CommandContext;)I m_136529_ + static + 0 o p_136530_ + a (Lds;)Z m_136531_ + static + 0 o p_136532_ + a (Ljava/lang/String;Lali;)Lsw; m_287823_ + static + 0 o p_288310_ + 1 o p_288311_ + b (Lcom/mojang/brigadier/context/CommandContext;)I m_136537_ + static + 0 o p_136538_ + b (Lds;Ljava/lang/String;Lsw;)I m_136539_ + static + 0 o p_136540_ + 1 o p_136541_ + 2 o p_136542_ +adw net/minecraft/server/commands/BanListCommands + ()V + a (Lcom/mojang/brigadier/CommandDispatcher;)V m_136543_ + static + 0 o p_136544_ + a ()Lsw; m_287825_ + static + a (Lcom/mojang/brigadier/context/CommandContext;)I m_136545_ + static + 0 o p_136546_ + a (Lds;)Z m_136547_ + static + 0 o p_136548_ + a (Lalf;)Lsw; m_287824_ + static + 0 o p_288312_ + a (Ljava/util/Collection;)Lsw; m_287826_ + static + 0 o p_288313_ + a (Lds;Ljava/util/Collection;)I m_136549_ + static + 0 o p_136550_ + 1 o p_136551_ + b (Lcom/mojang/brigadier/context/CommandContext;)I m_136552_ + static + 0 o p_136553_ + c (Lcom/mojang/brigadier/context/CommandContext;)I m_136554_ + static + 0 o p_136555_ +adx net/minecraft/server/commands/BanPlayerCommands + a f_136556_ + ()V + static + ()V + a (Lcom/mojang/authlib/GameProfile;Lalr;)Lsw; m_287827_ + static + 0 o p_288314_ + 1 o p_288315_ + a (Lcom/mojang/brigadier/CommandDispatcher;)V m_136558_ + static + 0 o p_136559_ + a (Lds;Ljava/util/Collection;Lsw;)I m_136564_ + static + 0 o p_136565_ + 1 o p_136566_ + 2 o p_136567_ + a (Lcom/mojang/brigadier/context/CommandContext;)I m_136560_ + static + 0 o p_136561_ + a (Lds;)Z m_136562_ + static + 0 o p_136563_ + b (Lcom/mojang/brigadier/context/CommandContext;)I m_136568_ + static + 0 o p_136569_ +ady net/minecraft/server/commands/BossBarCommands + a f_136570_ + b f_136571_ + c f_136572_ + d f_136573_ + e f_136574_ + f f_136575_ + g f_136576_ + h f_136577_ + i f_136578_ + j f_136579_ + k f_136580_ + ()V + static + ()V + a (Lds;Ladn;Ljava/util/Collection;)I m_136610_ + static + 0 o p_136611_ + 1 o p_136612_ + 2 o p_136613_ + a (Lds;Ladn;I)I m_136598_ + static + 0 o p_136599_ + 1 o p_136600_ + 2 o p_136601_ + a (Lcom/mojang/brigadier/context/CommandContext;)Ladn; m_136584_ + static + 0 o p_136585_ + a (Lds;)I m_136589_ + static + 0 o p_136590_ + a (Ladn;)Lsw; m_287834_ + static + 0 o p_288323_ + a (Lcom/mojang/brigadier/CommandDispatcher;)V m_136582_ + static + 0 o p_136583_ + a (Ladn;I)Lsw; m_287843_ + static + 0 o p_288332_ + 1 o p_288333_ + a (Lds;Ladn;Z)I m_136618_ + static + 0 o p_136619_ + 1 o p_136620_ + 2 o p_136621_ + a (Ljava/util/Collection;)Lsw; m_287828_ + static + 0 o p_288316_ + a (Lds;Ladn;)I m_136595_ + static + 0 o p_136596_ + 1 o p_136597_ + a (Lds;Lacq;Lsw;)I m_136591_ + static + 0 o p_136592_ + 1 o p_136593_ + 2 o p_136594_ + a ()Lsw; m_287835_ + static + a (Lds;Ladn;Lbdn$b;)I m_136606_ + static + 0 o p_136607_ + 1 o p_136608_ + 2 o p_136609_ + a (Lcom/mojang/brigadier/context/CommandContext;Lcom/mojang/brigadier/suggestion/SuggestionsBuilder;)Ljava/util/concurrent/CompletableFuture; m_136586_ + static + 0 o p_136587_ + 1 o p_136588_ + a (Ladn;Ljava/util/Collection;)Lsw; m_287833_ + static + 0 o p_288321_ + 1 o p_288322_ + a (Ljava/lang/Object;)Lcom/mojang/brigadier/Message; m_136622_ + static + 0 o p_136623_ + a (Lds;Ladn;Lsw;)I m_136614_ + static + 0 o p_136615_ + 1 o p_136616_ + 2 o p_136617_ + a (Lds;Ladn;Lbdn$a;)I m_136602_ + static + 0 o p_136603_ + 1 o p_136604_ + 2 o p_136605_ + b (Lcom/mojang/brigadier/context/CommandContext;)I m_136624_ + static + 0 o p_136625_ + b (Lds;)Z m_136626_ + static + 0 o p_136627_ + b (Ladn;)Lsw; m_287832_ + static + 0 o p_288320_ + b (Ladn;I)Lsw; m_287840_ + static + 0 o p_288328_ + 1 o p_288329_ + b (Ljava/lang/Object;)Lcom/mojang/brigadier/Message; m_136635_ + static + 0 o p_136636_ + b (Lds;Ladn;)I m_136628_ + static + 0 o p_136629_ + 1 o p_136630_ + b (Lds;Ladn;I)I m_136631_ + static + 0 o p_136632_ + 1 o p_136633_ + 2 o p_136634_ + c (Lcom/mojang/brigadier/context/CommandContext;)I m_136637_ + static + 0 o p_136638_ + c (Lds;Ladn;)I m_136639_ + static + 0 o p_136640_ + 1 o p_136641_ + c (Ladn;)Lsw; m_287846_ + static + 0 o p_288336_ + d (Lcom/mojang/brigadier/context/CommandContext;)I m_136642_ + static + 0 o p_136643_ + d (Lds;Ladn;)I m_136644_ + static + 0 o p_136645_ + 1 o p_136646_ + d (Ladn;)Lsw; m_287844_ + static + 0 o p_288334_ + e (Ladn;)Lsw; m_287836_ + static + 0 o p_288324_ + e (Lcom/mojang/brigadier/context/CommandContext;)I m_136647_ + static + 0 o p_136648_ + e (Lds;Ladn;)I m_136649_ + static + 0 o p_136650_ + 1 o p_136651_ + f (Lcom/mojang/brigadier/context/CommandContext;)I m_136652_ + static + 0 o p_136653_ + f (Ladn;)Lsw; m_287831_ + static + 0 o p_288319_ + g (Ladn;)Lsw; m_287830_ + static + 0 o p_288318_ + g (Lcom/mojang/brigadier/context/CommandContext;)I m_136654_ + static + 0 o p_136655_ + h (Ladn;)Lsw; m_287837_ + static + 0 o p_288325_ + h (Lcom/mojang/brigadier/context/CommandContext;)I m_136656_ + static + 0 o p_136657_ + i (Lcom/mojang/brigadier/context/CommandContext;)I m_136658_ + static + 0 o p_136659_ + i (Ladn;)Lsw; m_287839_ + static + 0 o p_288327_ + j (Ladn;)Lsw; m_287845_ + static + 0 o p_288335_ + j (Lcom/mojang/brigadier/context/CommandContext;)I m_136660_ + static + 0 o p_136661_ + k (Lcom/mojang/brigadier/context/CommandContext;)I m_136662_ + static + 0 o p_136663_ + k (Ladn;)Lsw; m_287842_ + static + 0 o p_288331_ + l (Ladn;)Lsw; m_287829_ + static + 0 o p_288317_ + l (Lcom/mojang/brigadier/context/CommandContext;)I m_136664_ + static + 0 o p_136665_ + m (Ladn;)Lsw; m_287838_ + static + 0 o p_288326_ + m (Lcom/mojang/brigadier/context/CommandContext;)I m_136666_ + static + 0 o p_136667_ + n (Ladn;)Lsw; m_287841_ + static + 0 o p_288330_ + n (Lcom/mojang/brigadier/context/CommandContext;)I m_136668_ + static + 0 o p_136669_ + o (Lcom/mojang/brigadier/context/CommandContext;)I m_136670_ + static + 0 o p_136671_ + p (Lcom/mojang/brigadier/context/CommandContext;)I m_136672_ + static + 0 o p_136673_ + q (Lcom/mojang/brigadier/context/CommandContext;)I m_136674_ + static + 0 o p_136675_ + r (Lcom/mojang/brigadier/context/CommandContext;)I m_136676_ + static + 0 o p_136677_ + s (Lcom/mojang/brigadier/context/CommandContext;)I m_136678_ + static + 0 o p_136679_ + t (Lcom/mojang/brigadier/context/CommandContext;)I m_136680_ + static + 0 o p_136681_ + u (Lcom/mojang/brigadier/context/CommandContext;)I m_136682_ + static + 0 o p_136683_ + v (Lcom/mojang/brigadier/context/CommandContext;)I m_136684_ + static + 0 o p_136685_ + w (Lcom/mojang/brigadier/context/CommandContext;)I m_136686_ + static + 0 o p_136687_ + x (Lcom/mojang/brigadier/context/CommandContext;)I m_136688_ + static + 0 o p_136689_ + y (Lcom/mojang/brigadier/context/CommandContext;)I m_136690_ + static + 0 o p_136691_ + z (Lcom/mojang/brigadier/context/CommandContext;)I m_136692_ + static + 0 o p_136693_ +adz net/minecraft/server/commands/ChaseCommand + a f_196068_ + b f_196069_ + c f_196070_ + d f_196071_ + e f_196072_ + f f_196073_ + g f_196074_ + ()V + static + ()V + a (Lcom/mojang/brigadier/CommandDispatcher;)V m_196077_ + static + 0 o p_196078_ + a (Ljava/lang/String;I)Lsw; m_287850_ + static + 0 o p_288338_ + 1 o p_288339_ + a ()Lsw; m_287847_ + static + a (Lds;Ljava/lang/String;I)I m_196083_ + static + 0 o p_196084_ + 1 o p_196085_ + 2 o p_196086_ + a (I)Lsw; m_287848_ + static + 0 o p_288337_ + a (Lds;)I m_196081_ + static + 0 o p_196082_ + a (Lcom/mojang/brigadier/context/CommandContext;)I m_196079_ + static + 0 o p_196080_ + b (Lcom/mojang/brigadier/context/CommandContext;)I m_196087_ + static + 0 o p_196088_ + b (Lds;)Z m_196089_ + static + 0 o p_196090_ + b ()Lsw; m_287849_ + static + b (Lds;Ljava/lang/String;I)I m_196091_ + static + 0 o p_196092_ + 1 o p_196093_ + 2 o p_196094_ + c (Lcom/mojang/brigadier/context/CommandContext;)I m_196095_ + static + 0 o p_196096_ + d (Lcom/mojang/brigadier/context/CommandContext;)I m_196097_ + static + 0 o p_196098_ + e (Lcom/mojang/brigadier/context/CommandContext;)I m_196099_ + static + 0 o p_196100_ + f (Lcom/mojang/brigadier/context/CommandContext;)I m_196101_ + static + 0 o p_196102_ + g (Lcom/mojang/brigadier/context/CommandContext;)I m_196103_ + static + 0 o p_196104_ +ae net/minecraft/advancements/Advancement + a f_138298_ + b f_138299_ + c f_138300_ + d f_138301_ + e f_138302_ + f f_138303_ + g f_138304_ + h f_138305_ + i f_285575_ + (Lacq;Lae;Lan;Lah;Ljava/util/Map;[[Ljava/lang/String;Z)V + 0 o p_286878_ + 1 o p_286496_ + 2 o p_286499_ + 3 o p_286389_ + 4 o p_286635_ + 5 o p_286882_ + 6 o p_286478_ + a ()Lae$a; m_138313_ + a (Lsw;Lts;)Lts; m_138314_ + static + 0 o p_138315_ + 1 o p_138316_ + a (Lae;)Lae; m_264636_ + static + 0 o p_265545_ + b ()Lae; m_138319_ + b (Lae;)V m_138317_ + 0 o p_138318_ + c ()Lae; m_264348_ + d ()Lan; m_138320_ + e ()Z m_285828_ + equals (Ljava/lang/Object;)Z equals + 0 o p_138324_ + f ()Lah; m_138321_ + g ()Ljava/lang/Iterable; m_138322_ + h ()Ljava/util/Map; m_138325_ + hashCode ()I hashCode + i ()I m_138326_ + j ()Lacq; m_138327_ + k ()[[Ljava/lang/String; m_138329_ + l ()Lsw; m_138330_ + toString ()Ljava/lang/String; toString +ae$a net/minecraft/advancements/Advancement$Builder + a f_138332_ + b f_138333_ + c f_138334_ + d f_138335_ + e f_138336_ + f f_138337_ + g f_138338_ + h f_285655_ + (Z)V + 0 o p_286780_ + (Lacq;Lan;Lah;Ljava/util/Map;[[Ljava/lang/String;Z)V + 0 o p_286422_ + 1 o p_286485_ + 2 o p_286364_ + 3 o p_286544_ + 4 o p_286283_ + 5 o p_286626_ + a (Lah$a;)Lae$a; m_138354_ + 0 o p_138355_ + a (Lcfz;Lsw;Lsw;Lacq;Lao;ZZZ)Lae$a; m_138362_ + 0 o p_138363_ + 1 o p_138364_ + 2 o p_138365_ + 3 o p_138366_ + 4 o p_138367_ + 5 o p_138368_ + 6 o p_138369_ + 7 o p_138370_ + a (Lcml;Lsw;Lsw;Lacq;Lao;ZZZ)Lae$a; m_138371_ + 0 o p_138372_ + 1 o p_138373_ + 2 o p_138374_ + 3 o p_138375_ + 4 o p_138376_ + 5 o p_138377_ + 6 o p_138378_ + 7 o p_138379_ + a (Ljava/lang/String;Lam;)Lae$a; m_138386_ + 0 o p_138387_ + 1 o p_138388_ + a (Lsf;Lan;)V m_214830_ + static + 0 o p_214831_ + 1 o p_214832_ + a (Lah;)Lae$a; m_138356_ + 0 o p_138357_ + a (Lsf;)V m_138394_ + 0 o p_138395_ + a ([[Ljava/lang/String;)Lae$a; m_143951_ + 0 o p_143952_ + a (Lacq;)Lae$a; m_138396_ + 0 o p_138397_ + a (Lcom/google/gson/JsonObject;Lbe;)Lae$a; m_138380_ + static + 0 o p_138381_ + 1 o p_138382_ + a ()Lae$a; m_138353_ + static + a (Ljava/util/function/Function;)Z m_138392_ + 0 o p_138393_ + a (Lan;)Lae$a; m_138358_ + 0 o p_138359_ + a (Ljava/util/function/Consumer;Ljava/lang/String;)Lae; m_138389_ + 0 o p_138390_ + 1 o p_138391_ + a (Ljava/lang/String;Laj;)Lae$a; m_138383_ + 0 o p_138384_ + 1 o p_138385_ + a (Lap;)Lae$a; m_138360_ + 0 o p_138361_ + a (Lae;)Lae$a; m_138398_ + 0 o p_138399_ + b (Lsf;)Lae$a; m_138401_ + static + 0 o p_138402_ + b (Lacq;)Lae; m_138403_ + 0 o p_138404_ + b ()Lae$a; m_285878_ + static + c ()Lcom/google/gson/JsonObject; m_138400_ + c (Lacq;)Lae; m_138406_ + static + 0 o p_138407_ + d ()Ljava/util/Map; m_138405_ + toString ()Ljava/lang/String; toString +aea net/minecraft/server/commands/ClearInventoryCommands + a f_136694_ + b f_136695_ + ()V + static + ()V + a (Lds;Ljava/util/Collection;Ljava/util/function/Predicate;I)I m_136705_ + static + 0 o p_136706_ + 1 o p_136707_ + 2 o p_136708_ + 3 o p_136709_ + a (Lcfz;)Z m_180026_ + static + 0 o p_180027_ + a (Ljava/lang/Object;)Lcom/mojang/brigadier/Message; m_136710_ + static + 0 o p_136711_ + a (Lds;)Z m_136703_ + static + 0 o p_136704_ + a (ILjava/util/Collection;)Lsw; m_287854_ + static + 0 o p_288346_ + 1 o p_288347_ + a (Lcom/mojang/brigadier/context/CommandContext;)I m_136701_ + static + 0 o p_136702_ + a (Lcom/mojang/brigadier/CommandDispatcher;Ldm;)V m_214420_ + static + 0 o p_214421_ + 1 o p_214422_ + b (Lcom/mojang/brigadier/context/CommandContext;)I m_136714_ + static + 0 o p_136715_ + b (ILjava/util/Collection;)Lsw; m_289061_ + static + 0 o p_289262_ + 1 o p_289263_ + b (Ljava/lang/Object;)Lcom/mojang/brigadier/Message; m_136716_ + static + 0 o p_136717_ + b (Lcfz;)Z m_180028_ + static + 0 o p_180029_ + c (Lcom/mojang/brigadier/context/CommandContext;)I m_136718_ + static + 0 o p_136719_ + c (ILjava/util/Collection;)Lsw; m_287852_ + static + 0 o p_288342_ + 1 o p_288343_ + d (ILjava/util/Collection;)Lsw; m_289060_ + static + 0 o p_289260_ + 1 o p_289261_ + d (Lcom/mojang/brigadier/context/CommandContext;)I m_136720_ + static + 0 o p_136721_ +aeb net/minecraft/server/commands/CloneCommands + a f_136722_ + b f_136723_ + c f_136724_ + d f_136725_ + ()V + static + ()V + a (Laeb$b;Lcom/mojang/brigadier/context/CommandContext;)Laeb$c; m_263916_ + static + 0 o p_264767_ + 1 o p_264768_ + a (Lds;Laeb$c;Laeb$c;Laeb$c;Ljava/util/function/Predicate;Laeb$d;)I m_264087_ + static + 0 o p_265047_ + 1 o p_265232_ + 2 o p_265188_ + 3 o p_265594_ + 4 o p_265585_ + 5 o p_265530_ + a (Lds;)Z m_136733_ + static + 0 o p_136734_ + a (Laeb$b;Laeb$b;Laeb$b;Lcom/mojang/brigadier/context/CommandContext;)I m_263901_ + static + 0 o p_264730_ + 1 o p_264731_ + 2 o p_264732_ + 3 o p_264733_ + a (Ldcf;)Z m_180038_ + static + 0 o p_180039_ + a (Lcom/mojang/brigadier/context/CommandContext;)Ljava/util/function/Predicate; m_263908_ + static + 0 o p_264745_ + a (Laeb$b;Laeb$b;Laeb$b;Laeb$b;Lcom/mojang/brigadier/builder/ArgumentBuilder;)Lcom/mojang/brigadier/builder/ArgumentBuilder; m_264123_ + static + 0 o p_265374_ + 1 o p_265134_ + 2 o p_265546_ + 3 o p_265798_ + 4 o p_265069_ + a (Laeb$b;Laeb$b;Laeb$b;Laeb$b;Lcom/mojang/brigadier/context/CommandContext;)I m_263909_ + static + 0 o p_264746_ + 1 o p_264747_ + 2 o p_264748_ + 3 o p_264749_ + 4 o p_264750_ + a (Ldm;Laeb$b;)Lcom/mojang/brigadier/builder/ArgumentBuilder; m_264501_ + static + 0 o p_265681_ + 1 o p_265514_ + a (Ljava/lang/Object;Ljava/lang/Object;)Lcom/mojang/brigadier/Message; m_136742_ + static + 0 o p_136743_ + 1 o p_136744_ + a (Lcom/mojang/brigadier/context/CommandContext;Laif;Ljava/lang/String;)Laeb$c; m_264576_ + static + 0 o p_265513_ + 1 o p_265183_ + 2 o p_265511_ + a (I)Lsw; m_287855_ + static + 0 o p_288348_ + a (Ldm;Laeb$b;Laeb$b;)Lcom/mojang/brigadier/builder/ArgumentBuilder; m_264459_ + static + 0 o p_265238_ + 1 o p_265621_ + 2 o p_265296_ + a (Lcom/mojang/brigadier/CommandDispatcher;Ldm;)V m_214423_ + static + 0 o p_214424_ + 1 o p_214425_ + b (Laeb$b;Laeb$b;Laeb$b;Lcom/mojang/brigadier/context/CommandContext;)I m_263905_ + static + 0 o p_264739_ + 1 o p_264740_ + 2 o p_264741_ + 3 o p_264742_ + b (Laeb$b;Lcom/mojang/brigadier/context/CommandContext;)Laeb$c; m_263902_ + static + 0 o p_264734_ + 1 o p_264735_ + b (Ldcf;)Z m_180040_ + static + 0 o p_180041_ + b (Lcom/mojang/brigadier/context/CommandContext;)Ljava/util/function/Predicate; m_263907_ + static + 0 o p_264744_ + b (Laeb$b;Laeb$b;Laeb$b;Laeb$b;Lcom/mojang/brigadier/context/CommandContext;)I m_263915_ + static + 0 o p_264762_ + 1 o p_264763_ + 2 o p_264764_ + 3 o p_264765_ + 4 o p_264766_ + c (Laeb$b;Laeb$b;Laeb$b;Laeb$b;Lcom/mojang/brigadier/context/CommandContext;)I m_263917_ + static + 0 o p_264769_ + 1 o p_264770_ + 2 o p_264771_ + 3 o p_264772_ + 4 o p_264773_ + c (Lcom/mojang/brigadier/context/CommandContext;)Ljava/util/function/Predicate; m_263904_ + static + 0 o p_264738_ + c (Laeb$b;Lcom/mojang/brigadier/context/CommandContext;)Laeb$c; m_263903_ + static + 0 o p_264736_ + 1 o p_264737_ + c (Laeb$b;Laeb$b;Laeb$b;Lcom/mojang/brigadier/context/CommandContext;)I m_263911_ + static + 0 o p_264752_ + 1 o p_264753_ + 2 o p_264754_ + 3 o p_264755_ + c (Ldcf;)Z m_180032_ + static + 0 o p_180033_ + d (Laeb$b;Laeb$b;Laeb$b;Lcom/mojang/brigadier/context/CommandContext;)I m_263914_ + static + 0 o p_264758_ + 1 o p_264759_ + 2 o p_264760_ + 3 o p_264761_ + d (Ldcf;)Z m_283988_ + static + 0 o p_284652_ + d (Lcom/mojang/brigadier/context/CommandContext;)Laif; m_263912_ + static + 0 o p_264756_ + e (Lcom/mojang/brigadier/context/CommandContext;)Laif; m_263910_ + static + 0 o p_264751_ + f (Lcom/mojang/brigadier/context/CommandContext;)Laif; m_263906_ + static + 0 o p_264743_ + g (Lcom/mojang/brigadier/context/CommandContext;)Laif; m_263913_ + static + 0 o p_264757_ +aeb$a net/minecraft/server/commands/CloneCommands$CloneBlockInfo + a f_136779_ + b f_136780_ + c f_136781_ + (Lgu;Ldcb;Lqr;)V + 0 o p_136783_ + 1 o p_136784_ + 2 o p_136785_ +aeb$b net/minecraft/server/commands/CloneCommands$CommandFunction + apply (Ljava/lang/Object;)Ljava/lang/Object; m_264253_ + 0 o p_265571_ +aeb$c net/minecraft/server/commands/CloneCommands$DimensionAndPosition + a f_263735_ + b f_263824_ + (Laif;Lgu;)V + 0 o f_263735_ + 1 o f_263824_ + a ()Laif; f_263735_ + b ()Lgu; f_263824_ + equals (Ljava/lang/Object;)Z equals + 0 o p_265759_ + hashCode ()I hashCode + toString ()Ljava/lang/String; toString +aeb$d net/minecraft/server/commands/CloneCommands$Mode + a FORCE + b MOVE + c NORMAL + d f_136789_ + e $VALUES + ()V + static + (Ljava/lang/String;IZ)V + 0 o p_136793_ + 1 o p_136794_ + 2 o p_136795_ + a ()Z m_136796_ + b ()[Laeb$d; m_180042_ + static + valueOf (Ljava/lang/String;)Laeb$d; valueOf + static + 0 o p_136798_ + values ()[Laeb$d; values + static +aec net/minecraft/server/commands/DamageCommand + a f_268498_ + ()V + static + ()V + a (FLbfj;)Lsw; m_287856_ + static + 0 o p_288349_ + 1 o p_288350_ + a (Lcom/mojang/brigadier/context/CommandContext;)I m_269331_ + static + 0 o p_270848_ + a (Lds;)Z m_269051_ + static + 0 o p_270872_ + a (Lds;Lbfj;FLben;)I m_269485_ + static + 0 o p_270409_ + 1 o p_270496_ + 2 o p_270836_ + 3 o p_270727_ + a (Lcom/mojang/brigadier/CommandDispatcher;Ldm;)V m_269337_ + static + 0 o p_270226_ + 1 o p_270136_ + b (Lcom/mojang/brigadier/context/CommandContext;)I m_269006_ + static + 0 o p_270329_ + c (Lcom/mojang/brigadier/context/CommandContext;)I m_269241_ + static + 0 o p_270444_ + d (Lcom/mojang/brigadier/context/CommandContext;)I m_269127_ + static + 0 o p_270840_ + e (Lcom/mojang/brigadier/context/CommandContext;)I m_287857_ + static + 0 o p_288351_ +aed net/minecraft/server/commands/DataPackCommand + a f_136800_ + b f_136801_ + c f_136802_ + d f_244087_ + e f_136803_ + f f_136804_ + ()V + static + ()V + a (Lds;Lakg;Laed$a;)I m_136828_ + static + 0 o p_136829_ + 1 o p_136830_ + 2 o p_136831_ + a (Ljava/util/Collection;Ljava/lang/String;)Z m_136834_ + static + 0 o p_136835_ + 1 o p_250072_ + a ()Lsw; m_287862_ + static + a (Lds;)I m_136823_ + static + 0 o p_136824_ + a (Ljava/util/Collection;Lcaw;Lakg;)Z m_244824_ + static + 0 o p_248119_ + 1 o p_248120_ + 2 o p_248121_ + a (Lcom/mojang/brigadier/context/CommandContext;Lcom/mojang/brigadier/suggestion/SuggestionsBuilder;)Ljava/util/concurrent/CompletableFuture; m_244821_ + static + 0 o p_248113_ + 1 o p_248114_ + a (Ljava/util/List;Lakg;)V m_180051_ + static + 0 o p_180052_ + 1 o p_180053_ + a (Lcom/mojang/brigadier/CommandDispatcher;)V m_136808_ + static + 0 o p_136809_ + a (Lcom/mojang/brigadier/context/CommandContext;Ljava/util/List;Lakg;)V m_180044_ + static + 0 o p_180045_ + 1 o p_180046_ + 2 o p_180047_ + a (Ljava/lang/Object;)Lcom/mojang/brigadier/Message; m_136832_ + static + 0 o p_136833_ + a (Lakg;)Lsw; m_136806_ + static + 0 o p_136807_ + a (Ljava/lang/Object;Ljava/lang/Object;)Lcom/mojang/brigadier/Message; m_244823_ + static + 0 o p_248117_ + 1 o p_248118_ + a (Lds;Lakg;)I m_136825_ + static + 0 o p_136826_ + 1 o p_136827_ + a (Ljava/util/List;)Lsw; m_287858_ + static + 0 o p_288352_ + a (Lcom/mojang/brigadier/context/CommandContext;Ljava/lang/String;Z)Lakg; m_136815_ + static + 0 o p_136816_ + 1 o p_136817_ + 2 o p_136818_ + a (Lcaw;Lakg;)Z m_244822_ + static + 0 o p_248115_ + 1 o p_248116_ + a (Lcom/mojang/brigadier/context/CommandContext;)I m_136810_ + static + 0 o p_136811_ + a (Ljava/util/Collection;)Lsw; m_287863_ + static + 0 o p_288355_ + b (Lcom/mojang/brigadier/context/CommandContext;)I m_136845_ + static + 0 o p_136846_ + b (Lds;)I m_136854_ + static + 0 o p_136855_ + b (Ljava/util/List;Lakg;)V m_180058_ + static + 0 o p_180059_ + 1 o p_180060_ + b (Lakg;)Lsw; m_136843_ + static + 0 o p_136844_ + b ()Lsw; m_287860_ + static + b (Lcom/mojang/brigadier/context/CommandContext;Ljava/util/List;Lakg;)V m_180054_ + static + 0 o p_180055_ + 1 o p_180056_ + 2 o p_180057_ + b (Ljava/lang/Object;)Lcom/mojang/brigadier/Message; m_136856_ + static + 0 o p_136857_ + b (Lcom/mojang/brigadier/context/CommandContext;Lcom/mojang/brigadier/suggestion/SuggestionsBuilder;)Ljava/util/concurrent/CompletableFuture; m_136847_ + static + 0 o p_136848_ + 1 o p_136849_ + c (Lcom/mojang/brigadier/context/CommandContext;)I m_136863_ + static + 0 o p_136864_ + c (Ljava/lang/Object;)Lcom/mojang/brigadier/Message; m_136867_ + static + 0 o p_136868_ + c (Lds;)I m_136865_ + static + 0 o p_136866_ + c (Lakg;)Lsw; m_287859_ + static + 0 o p_288353_ + d (Lds;)Z m_136871_ + static + 0 o p_136872_ + d (Lcom/mojang/brigadier/context/CommandContext;)I m_136869_ + static + 0 o p_136870_ + d (Lakg;)Lsw; m_287861_ + static + 0 o p_288354_ + e (Lakg;)Lakg; m_180061_ + static + 0 o p_180062_ + e (Lcom/mojang/brigadier/context/CommandContext;)I m_136881_ + static + 0 o p_136882_ + f (Lcom/mojang/brigadier/context/CommandContext;)I m_136873_ + static + 0 o p_136874_ + g (Lcom/mojang/brigadier/context/CommandContext;)I m_136877_ + static + 0 o p_136878_ + h (Lcom/mojang/brigadier/context/CommandContext;)I m_136879_ + static + 0 o p_136880_ + i (Lcom/mojang/brigadier/context/CommandContext;)I m_136875_ + static + 0 o p_136876_ +aed$a net/minecraft/server/commands/DataPackCommand$Inserter + apply (Ljava/util/List;Lakg;)V m_136883_ + 0 o p_136884_ + 1 o p_136885_ +aee net/minecraft/server/commands/DeOpCommands + a f_136886_ + ()V + static + ()V + a (Lcom/mojang/brigadier/CommandDispatcher;)V m_136888_ + static + 0 o p_136889_ + a (Lcom/mojang/brigadier/context/CommandContext;Lcom/mojang/brigadier/suggestion/SuggestionsBuilder;)Ljava/util/concurrent/CompletableFuture; m_136892_ + static + 0 o p_136893_ + 1 o p_136894_ + a (Lcom/mojang/brigadier/context/CommandContext;)I m_136890_ + static + 0 o p_136891_ + a (Lds;)Z m_136895_ + static + 0 o p_136896_ + a (Ljava/util/Collection;)Lsw; m_287864_ + static + 0 o p_288356_ + a (Lds;Ljava/util/Collection;)I m_136897_ + static + 0 o p_136898_ + 1 o p_136899_ +aef net/minecraft/server/commands/DebugCommand + a f_136900_ + b f_136901_ + c f_136902_ + ()V + static + ()V + a (Lcom/mojang/brigadier/CommandDispatcher;)V m_136905_ + static + 0 o p_136906_ + a (ILjava/util/Collection;Ljava/lang/String;)Lsw; m_287865_ + static + 0 o p_288357_ + 1 o p_288358_ + 2 o p_288359_ + a ()Lsw; m_287866_ + static + a (DLbam;D)Lsw; m_287868_ + static + 0 o p_288363_ + 1 o p_288364_ + 2 o p_288365_ + a (Lds;Ljava/util/Collection;)I m_180065_ + static + 0 o p_180066_ + 1 o p_180067_ + a (Lds;)I m_136909_ + static + 0 o p_136910_ + a (Lcom/mojang/brigadier/context/CommandContext;)I m_136907_ + static + 0 o p_136908_ + b (Lcom/mojang/brigadier/context/CommandContext;)I m_136917_ + static + 0 o p_136918_ + b (ILjava/util/Collection;Ljava/lang/String;)Lsw; m_287867_ + static + 0 o p_288360_ + 1 o p_288361_ + 2 o p_288362_ + b (Lds;)I m_136915_ + static + 0 o p_136916_ + c (Lds;)Z m_180070_ + static + 0 o p_180071_ + c (Lcom/mojang/brigadier/context/CommandContext;)I m_180068_ + static + 0 o p_180069_ + d (Lds;)Z m_180072_ + static + 0 o p_180073_ +aef$a net/minecraft/server/commands/DebugCommand$Tracer + b f_180074_ + c f_180075_ + d f_180076_ + e f_180077_ + (Ljava/io/PrintWriter;)V + 0 o p_180079_ + N_ ()Z m_6102_ + a (ILjava/lang/String;)V m_142256_ + 0 o p_180084_ + 1 o p_180085_ + a (I)V m_180081_ + 0 o p_180082_ + a (Lsw;)V m_213846_ + 0 o p_214427_ + a (ILjava/lang/String;I)V m_142279_ + 0 o p_180087_ + 1 o p_180088_ + 2 o p_180089_ + a (ILacq;I)V m_142147_ + 0 o p_180091_ + 1 o p_180092_ + 2 o p_180093_ + b (I)V m_180097_ + 0 o p_180098_ + b (ILjava/lang/String;)V m_142255_ + 0 o p_180100_ + 1 o p_180101_ + e ()V m_180103_ + e_ ()Z m_6999_ + f_ ()Z m_142559_ + q_ ()Z m_7028_ +aeg net/minecraft/server/commands/DebugMobSpawningCommand + ()V + a (Lcom/mojang/brigadier/CommandDispatcher;)V m_180110_ + static + 0 o p_180111_ + a (Lbgc;Lcom/mojang/brigadier/context/CommandContext;)I m_180107_ + static + 0 o p_180108_ + 1 o p_180109_ + a (Lds;)Z m_180112_ + static + 0 o p_180113_ + a (Lds;Lbgc;Lgu;)I m_180114_ + static + 0 o p_180115_ + 1 o p_180116_ + 2 o p_180117_ +aeh net/minecraft/server/commands/DebugPathCommand + a f_180118_ + b f_180119_ + c f_180120_ + ()V + static + ()V + a (Lcom/mojang/brigadier/CommandDispatcher;)V m_180123_ + static + 0 o p_180124_ + a (Lds;Lgu;)I m_180129_ + static + 0 o p_180130_ + 1 o p_180131_ + a ()Lsw; m_287869_ + static + a (Lcom/mojang/brigadier/context/CommandContext;)I m_180125_ + static + 0 o p_180126_ + a (Lds;)Z m_180127_ + static + 0 o p_180128_ +aei net/minecraft/server/commands/DefaultGameModeCommands + ()V + a (Lcom/mojang/brigadier/CommandDispatcher;)V m_136926_ + static + 0 o p_136927_ + a (Lcom/mojang/brigadier/context/CommandContext;)I m_257135_ + static + 0 o p_258227_ + a (Lds;)Z m_136928_ + static + 0 o p_136929_ + a (Lds;Lcmj;)I m_136930_ + static + 0 o p_136931_ + 1 o p_136932_ + a (Lcmj;)Lsw; m_287870_ + static + 0 o p_288366_ +aej net/minecraft/server/commands/DifficultyCommand + a f_136933_ + ()V + static + ()V + a (Lbdu;Lcom/mojang/brigadier/context/CommandContext;)I m_136935_ + static + 0 o p_136936_ + 1 o p_136937_ + a (Lcom/mojang/brigadier/CommandDispatcher;)V m_136938_ + static + 0 o p_136939_ + a (Lds;Lbdu;)I m_136944_ + static + 0 o p_136945_ + 1 o p_136946_ + a (Ljava/lang/Object;)Lcom/mojang/brigadier/Message; m_136947_ + static + 0 o p_136948_ + a (Lbdu;)Lsw; m_287873_ + static + 0 o p_288369_ + a (Lcom/mojang/brigadier/context/CommandContext;)I m_287871_ + static + 0 o p_288367_ + a (Lds;)Z m_136942_ + static + 0 o p_136943_ + b (Lbdu;)Lsw; m_287872_ + static + 0 o p_288368_ +aek net/minecraft/server/commands/EffectCommands + a f_136949_ + b f_136950_ + c f_136951_ + ()V + static + ()V + a (Lbey;Ljava/util/Collection;I)Lsw; m_287874_ + static + 0 o p_288370_ + 1 o p_288371_ + 2 o p_288372_ + a (Lds;)Z m_136957_ + static + 0 o p_136958_ + a (Lds;Ljava/util/Collection;)I m_136959_ + static + 0 o p_136960_ + 1 o p_136961_ + a (Lbey;Ljava/util/Collection;)Lsw; m_287879_ + static + 0 o p_288380_ + 1 o p_288381_ + a (Lcom/mojang/brigadier/context/CommandContext;)I m_267548_ + static + 0 o p_267909_ + a (Lds;Ljava/util/Collection;Lhe;)I m_246113_ + static + 0 o p_250069_ + 1 o p_248561_ + 2 o p_249198_ + a (Lds;Ljava/util/Collection;Lhe;Ljava/lang/Integer;IZ)I m_247240_ + static + 0 o p_250553_ + 1 o p_250411_ + 2 o p_249495_ + 3 o p_249652_ + 4 o p_251498_ + 5 o p_249944_ + a (Ljava/util/Collection;)Lsw; m_287875_ + static + 0 o p_288373_ + a (Lcom/mojang/brigadier/CommandDispatcher;Ldm;)V m_136953_ + static + 0 o p_136954_ + 1 o p_251610_ + b (Lbey;Ljava/util/Collection;I)Lsw; m_287876_ + static + 0 o p_288374_ + 1 o p_288375_ + 2 o p_288376_ + b (Lcom/mojang/brigadier/context/CommandContext;)I m_267547_ + static + 0 o p_267908_ + b (Ljava/util/Collection;)Lsw; m_287878_ + static + 0 o p_288379_ + b (Lbey;Ljava/util/Collection;)Lsw; m_287877_ + static + 0 o p_288377_ + 1 o p_288378_ + c (Lcom/mojang/brigadier/context/CommandContext;)I m_267546_ + static + 0 o p_267907_ + d (Lcom/mojang/brigadier/context/CommandContext;)I m_244828_ + static + 0 o p_248125_ + e (Lcom/mojang/brigadier/context/CommandContext;)I m_244826_ + static + 0 o p_248123_ + f (Lcom/mojang/brigadier/context/CommandContext;)I m_244827_ + static + 0 o p_248124_ + g (Lcom/mojang/brigadier/context/CommandContext;)I m_244830_ + static + 0 o p_248127_ + h (Lcom/mojang/brigadier/context/CommandContext;)I m_244829_ + static + 0 o p_248126_ + i (Lcom/mojang/brigadier/context/CommandContext;)I m_136981_ + static + 0 o p_136982_ + j (Lcom/mojang/brigadier/context/CommandContext;)I m_136983_ + static + 0 o p_136984_ +ael net/minecraft/server/commands/EmoteCommands + ()V + a (Lcom/mojang/brigadier/CommandDispatcher;)V m_136985_ + static + 0 o p_136986_ + a (Lcom/mojang/brigadier/context/CommandContext;)I m_244832_ + static + 0 o p_248130_ + a (Lcom/mojang/brigadier/context/CommandContext;Ltl;)V m_244831_ + static + 0 o p_248128_ + 1 o p_248129_ +aem net/minecraft/server/commands/EnchantCommand + a f_137002_ + b f_137003_ + c f_137004_ + d f_137005_ + e f_137006_ + ()V + static + ()V + a (Ljava/lang/Object;)Lcom/mojang/brigadier/Message; m_137019_ + static + 0 o p_137020_ + a (Lds;)Z m_137012_ + static + 0 o p_137013_ + a (Ljava/lang/Object;Ljava/lang/Object;)Lcom/mojang/brigadier/Message; m_137021_ + static + 0 o p_137022_ + 1 o p_137023_ + a (Lds;Ljava/util/Collection;Lhe;I)I m_246270_ + static + 0 o p_249815_ + 1 o p_248848_ + 2 o p_251252_ + 3 o p_249941_ + a (Lcom/mojang/brigadier/context/CommandContext;)I m_244834_ + static + 0 o p_248132_ + a (Lckg;ILjava/util/Collection;)Lsw; m_287880_ + static + 0 o p_288382_ + 1 o p_288383_ + 2 o p_288384_ + a (Lcom/mojang/brigadier/CommandDispatcher;Ldm;)V m_245923_ + static + 0 o p_251241_ + 1 o p_251038_ + b (Lcom/mojang/brigadier/context/CommandContext;)I m_244833_ + static + 0 o p_248131_ + b (Lckg;ILjava/util/Collection;)Lsw; m_287881_ + static + 0 o p_288385_ + 1 o p_288386_ + 2 o p_288387_ + b (Ljava/lang/Object;)Lcom/mojang/brigadier/Message; m_137026_ + static + 0 o p_137027_ + c (Ljava/lang/Object;)Lcom/mojang/brigadier/Message; m_137028_ + static + 0 o p_137029_ +aen net/minecraft/server/commands/ExecuteCommand + a f_180148_ + b f_137030_ + c f_137031_ + d f_137032_ + e f_137033_ + f f_137034_ + ()V + static + ()V + a (Lcom/mojang/brigadier/context/CommandContext;I)Lrk; m_180163_ + static + 0 o p_180164_ + 1 o p_180165_ + a (Lds;)Z m_137102_ + static + 0 o p_137103_ + a (Lcom/mojang/brigadier/context/CommandContext;Ljava/util/function/BiPredicate;)Z m_137064_ + static + 0 o p_137065_ + 1 o p_137066_ + a (Lcom/mojang/brigadier/context/CommandContext;Lcj$d;)Z m_137058_ + static + 0 o p_137059_ + 1 o p_137060_ + a (Ljava/util/OptionalInt;)Lsw; m_287883_ + static + 0 o p_288389_ + a (Lcom/mojang/brigadier/tree/CommandNode;ZLagy$c;Lcom/mojang/brigadier/builder/ArgumentBuilder;)Lcom/mojang/brigadier/builder/ArgumentBuilder; m_137088_ + static + 0 o p_137089_ + 1 o p_137090_ + 2 o p_137091_ + 3 o p_137092_ + a (Lcom/mojang/brigadier/tree/LiteralCommandNode;Lagy$c;ZLcom/mojang/brigadier/builder/ArgumentBuilder;)Lcom/mojang/brigadier/builder/ArgumentBuilder; m_137097_ + static + 0 o p_137098_ + 1 o p_137099_ + 2 o p_137100_ + 3 o p_137101_ + a (Laif;Lgu;Lgu;Lgu;Z)Ljava/util/OptionalInt; m_137036_ + static + 0 o p_137037_ + 1 o p_137038_ + 2 o p_137039_ + 3 o p_137040_ + 4 o p_137041_ + a (ZZLcom/mojang/brigadier/context/CommandContext;)Ljava/util/Collection; m_137177_ + static + 0 o p_137178_ + 1 o p_137179_ + 2 o p_137180_ + a (Lagx;Leh$g;)I m_137145_ + static + 0 o p_137146_ + 1 o p_137147_ + a ()Lsw; m_287885_ + static + a (Ljava/util/function/Function;)Lcom/mojang/brigadier/RedirectModifier; m_264445_ + static + 0 o p_265114_ + a (Lcom/mojang/brigadier/context/CommandContext;Lcom/mojang/brigadier/suggestion/SuggestionsBuilder;)Ljava/util/concurrent/CompletableFuture; m_278534_ + static + 0 o p_278905_ + 1 o p_278906_ + a (Lds;Ljava/util/Collection;Lefd;Z)Lds; m_137107_ + static + 0 o p_137108_ + 1 o p_137109_ + 2 o p_137110_ + 3 o p_137111_ + a (Lcom/mojang/brigadier/context/CommandContext;Z)I m_137067_ + static + 0 o p_137068_ + 1 o p_137069_ + a (Ljava/lang/Object;)Lcom/mojang/brigadier/Message; m_137126_ + static + 0 o p_137127_ + a (Ljava/lang/Object;Ljava/lang/Object;)Lcom/mojang/brigadier/Message; m_137128_ + static + 0 o p_137129_ + 1 o p_137130_ + a (Lcom/mojang/brigadier/context/CommandContext;)Z m_137053_ + static + 0 o p_137054_ + a (Ljava/util/function/Function;Lcom/mojang/brigadier/context/CommandContext;)Ljava/util/Collection; m_263922_ + static + 0 o p_264779_ + 1 o p_264780_ + a (I)Lsw; m_287882_ + static + 0 o p_288388_ + a (Lcom/mojang/brigadier/context/CommandContext;ZZ)Ljava/util/Collection; m_137070_ + static + 0 o p_137071_ + 1 o p_137072_ + 2 o p_137073_ + a (Lds;Lhe$c;)Lds; m_269381_ + static + 0 o p_270320_ + 1 o p_270344_ + a (Lcom/mojang/brigadier/tree/CommandNode;Lcom/mojang/brigadier/builder/ArgumentBuilder;ZZ)Lcom/mojang/brigadier/builder/ArgumentBuilder; m_137079_ + static + 0 o p_137080_ + 1 o p_137081_ + 2 o p_137082_ + 3 o p_137083_ + a (Lagx;ZLeh$g;Ljava/util/function/IntFunction;Lcom/mojang/brigadier/context/CommandContext;ZI)V m_263149_ + static + 0 o p_263263_ + 1 o p_263264_ + 2 o p_263265_ + 3 o p_263266_ + 4 o p_137153_ + 5 o p_137154_ + 6 o p_137155_ + a (Lds;Leck;)Z m_137104_ + static + 0 o p_137105_ + 1 o p_137106_ + a (Lagy$c;Lcom/mojang/brigadier/context/CommandContext;)I m_180150_ + static + 0 o p_180151_ + 1 o p_180152_ + a (Lcom/mojang/brigadier/tree/CommandNode;Lcom/mojang/brigadier/builder/LiteralArgumentBuilder;ZLdm;)Lcom/mojang/brigadier/builder/ArgumentBuilder; m_214437_ + static + 0 o p_214438_ + 1 o p_214439_ + 2 o p_214440_ + 3 o p_214441_ + a (ZLcom/mojang/brigadier/context/CommandContext;)I m_137163_ + static + 0 o p_137164_ + 1 o p_137165_ + a (Lcom/mojang/brigadier/ResultConsumer;Lcom/mojang/brigadier/ResultConsumer;)Lcom/mojang/brigadier/ResultConsumer; m_137044_ + static + 0 o p_137045_ + 1 o p_137046_ + a (Lcom/mojang/brigadier/ResultConsumer;Lcom/mojang/brigadier/ResultConsumer;Lcom/mojang/brigadier/context/CommandContext;ZI)V m_180157_ + static + 0 o p_180158_ + 1 o p_180159_ + 2 o p_180160_ + 3 o p_180161_ + 4 o p_180162_ + a (Lds;Lagx;Leh$g;Ljava/util/function/IntFunction;Z)Lds; m_137117_ + static + 0 o p_137118_ + 1 o p_137119_ + 2 o p_137120_ + 3 o p_137121_ + 4 o p_137122_ + a (Lbfj;)Ljava/util/stream/Stream; m_263920_ + static + 0 o p_264777_ + a (ZZLadn;Lcom/mojang/brigadier/context/CommandContext;ZI)V m_137181_ + static + 0 o p_137182_ + 1 o p_137183_ + 2 o p_137184_ + 3 o p_137185_ + 4 o p_137186_ + 5 o p_137187_ + a (ZLaen$b;Lcom/mojang/brigadier/context/CommandContext;)I m_287889_ + static + 0 o p_288394_ + 1 o p_288395_ + 2 o p_288396_ + a (Lcom/mojang/brigadier/tree/LiteralCommandNode;Lcom/mojang/brigadier/builder/LiteralArgumentBuilder;Z)Lcom/mojang/brigadier/builder/ArgumentBuilder; m_137093_ + static + 0 o p_137094_ + 1 o p_137095_ + 2 o p_137096_ + a (Lcom/mojang/brigadier/CommandDispatcher;Ldm;)V m_214434_ + static + 0 o p_214435_ + 1 o p_214436_ + a (Lds;Lbfj;)Ljava/util/List; m_263918_ + static + 0 o p_264774_ + 1 o p_264775_ + a (Laen$a;Lcom/mojang/brigadier/context/CommandContext;)I m_287888_ + static + 0 o p_288392_ + 1 o p_288393_ + a (Ljava/lang/Integer;Ljava/lang/Integer;)Z m_180166_ + static + 0 o p_180167_ + 1 o p_180168_ + a (ZLagy$c;Lcom/mojang/brigadier/context/CommandContext;)Ljava/util/Collection; m_180172_ + static + 0 o p_180173_ + 1 o p_180174_ + 2 o p_180175_ + a (Laif;Lgu;)Z m_264155_ + static + 0 o p_265261_ + 1 o p_265260_ + a (ZLaen$a;)Lcom/mojang/brigadier/Command; m_137166_ + static + 0 o p_137167_ + 1 o p_137168_ + a (Lds;Ladn;ZZ)Lds; m_137112_ + static + 0 o p_137113_ + 1 o p_137114_ + 2 o p_137115_ + 3 o p_137116_ + a (Lcom/mojang/brigadier/tree/CommandNode;Lcom/mojang/brigadier/builder/LiteralArgumentBuilder;)Lcom/mojang/brigadier/builder/LiteralArgumentBuilder; m_264124_ + static + 0 o p_265189_ + 1 o p_265783_ + a (Ljava/util/Collection;Lefg;Lefd;ZLcom/mojang/brigadier/context/CommandContext;ZI)V m_137131_ + static + 0 o p_137132_ + 1 o p_137133_ + 2 o p_137134_ + 3 o p_137135_ + 4 o p_137136_ + 5 o p_137137_ + 6 o p_137138_ + a (Lcom/mojang/brigadier/tree/CommandNode;Lcom/mojang/brigadier/builder/ArgumentBuilder;ZLaen$b;)Lcom/mojang/brigadier/builder/ArgumentBuilder; m_137074_ + static + 0 o p_137075_ + 1 o p_137076_ + 2 o p_137077_ + 3 o p_137078_ + a (Lagy$c;ZLcom/mojang/brigadier/context/CommandContext;)Lds; m_180153_ + static + 0 o p_180154_ + 1 o p_180155_ + 2 o p_180156_ + b (Lcom/mojang/brigadier/context/CommandContext;)I m_137188_ + static + 0 o p_137189_ + b (Ljava/lang/Integer;Ljava/lang/Integer;)Z m_180183_ + static + 0 o p_180184_ + 1 o p_180185_ + b (Lds;)Z m_137196_ + static + 0 o p_137197_ + b (Laen$a;Lcom/mojang/brigadier/context/CommandContext;)I m_287884_ + static + 0 o p_288390_ + 1 o p_288391_ + b (Lagy$c;ZLcom/mojang/brigadier/context/CommandContext;)Lds; m_180176_ + static + 0 o p_180177_ + 1 o p_180178_ + 2 o p_180179_ + b ()Lsw; m_287887_ + static + b (Lbfj;)Ljava/util/Optional; m_266134_ + static + 0 o p_266631_ + b (Lcom/mojang/brigadier/context/CommandContext;Z)I m_137193_ + static + 0 o p_137194_ + 1 o p_137195_ + b (ZLcom/mojang/brigadier/context/CommandContext;)I m_137208_ + static + 0 o p_137209_ + 1 o p_137210_ + b (Lcom/mojang/brigadier/context/CommandContext;I)Lrk; m_180180_ + static + 0 o p_180181_ + 1 o p_180182_ + b (Ljava/util/function/Function;)Lcom/mojang/brigadier/RedirectModifier; m_264350_ + static + 0 o p_265496_ + b (ZLaen$b;Lcom/mojang/brigadier/context/CommandContext;)Ljava/util/Collection; m_137211_ + static + 0 o p_137212_ + 1 o p_137213_ + 2 o p_137214_ + b (Ljava/util/function/Function;Lcom/mojang/brigadier/context/CommandContext;)Ljava/util/Collection; m_263927_ + static + 0 o p_264785_ + 1 o p_264786_ + c (Lcom/mojang/brigadier/context/CommandContext;Z)Ljava/util/OptionalInt; m_137220_ + static + 0 o p_137221_ + 1 o p_137222_ + c (ZLcom/mojang/brigadier/context/CommandContext;)Ljava/util/Collection; m_137230_ + static + 0 o p_137231_ + 1 o p_137232_ + c (Lcom/mojang/brigadier/context/CommandContext;I)Lrk; m_180190_ + static + 0 o p_180191_ + 1 o p_180192_ + c (Lbfj;)Ljava/util/Optional; m_274092_ + static + 0 o p_274815_ + c (Lcom/mojang/brigadier/context/CommandContext;)Z m_137215_ + static + 0 o p_137216_ + c ()Lsw; m_287886_ + static + c (Lagy$c;ZLcom/mojang/brigadier/context/CommandContext;)Lds; m_180186_ + static + 0 o p_180187_ + 1 o p_180188_ + 2 o p_180189_ + c (Ljava/lang/Integer;Ljava/lang/Integer;)Z m_180193_ + static + 0 o p_180194_ + 1 o p_180195_ + d (Lcom/mojang/brigadier/context/CommandContext;)Z m_137233_ + static + 0 o p_137234_ + d (Lbfj;)Ljava/util/Optional; m_263919_ + static + 0 o p_264776_ + d (Lcom/mojang/brigadier/context/CommandContext;I)Lrk; m_180200_ + static + 0 o p_180201_ + 1 o p_180202_ + d (Ljava/lang/Integer;Ljava/lang/Integer;)Z m_180203_ + static + 0 o p_180204_ + 1 o p_180205_ + d (Lagy$c;ZLcom/mojang/brigadier/context/CommandContext;)Lds; m_180196_ + static + 0 o p_180197_ + 1 o p_180198_ + 2 o p_180199_ + d (ZLcom/mojang/brigadier/context/CommandContext;)Lds; m_137245_ + static + 0 o p_137246_ + 1 o p_137247_ + e (Lagy$c;ZLcom/mojang/brigadier/context/CommandContext;)Lds; m_180206_ + static + 0 o p_180207_ + 1 o p_180208_ + 2 o p_180209_ + e (Lcom/mojang/brigadier/context/CommandContext;I)Lrk; m_180210_ + static + 0 o p_180211_ + 1 o p_180212_ + e (ZLcom/mojang/brigadier/context/CommandContext;)Lds; m_137257_ + static + 0 o p_137258_ + 1 o p_137259_ + e (Lbfj;)Ljava/util/Optional; m_271596_ + static + 0 o p_272388_ + e (Lcom/mojang/brigadier/context/CommandContext;)Z m_137248_ + static + 0 o p_137249_ + f (Lcom/mojang/brigadier/context/CommandContext;)Z m_137260_ + static + 0 o p_137261_ + f (ZLcom/mojang/brigadier/context/CommandContext;)Lds; m_137269_ + static + 0 o p_137270_ + 1 o p_137271_ + f (Lbfj;)Ljava/util/Optional; m_271597_ + static + 0 o p_272389_ + f (Lcom/mojang/brigadier/context/CommandContext;I)Lrk; m_180217_ + static + 0 o p_180218_ + 1 o p_180219_ + f (Lagy$c;ZLcom/mojang/brigadier/context/CommandContext;)Lds; m_180213_ + static + 0 o p_180214_ + 1 o p_180215_ + 2 o p_180216_ + g (Lbfj;)Ljava/util/Optional; m_263924_ + static + 0 o p_264782_ + g (Lcom/mojang/brigadier/context/CommandContext;)Z m_137272_ + static + 0 o p_137273_ + h (Lcom/mojang/brigadier/context/CommandContext;)Z m_137274_ + static + 0 o p_137275_ + h (Lbfj;)Ljava/util/Optional; m_268839_ + static + 0 o p_269758_ + i (Lbfj;)Z m_263926_ + static + 0 o p_264784_ + i (Lcom/mojang/brigadier/context/CommandContext;)Z m_263930_ + static + 0 o p_264789_ + j (Lbfj;)Z m_263925_ + static + 0 o p_264783_ + j (Lcom/mojang/brigadier/context/CommandContext;)Z m_268838_ + static + 0 o p_269757_ + k (Lcom/mojang/brigadier/context/CommandContext;)Z m_276724_ + static + 0 o p_277265_ + l (Lcom/mojang/brigadier/context/CommandContext;)Z m_137276_ + static + 0 o p_137277_ + m (Lcom/mojang/brigadier/context/CommandContext;)Lds; m_268840_ + static + 0 o p_269759_ + n (Lcom/mojang/brigadier/context/CommandContext;)Lds; m_137278_ + static + 0 o p_137279_ + o (Lcom/mojang/brigadier/context/CommandContext;)Lds; m_137280_ + static + 0 o p_137281_ + p (Lcom/mojang/brigadier/context/CommandContext;)Lds; m_137282_ + static + 0 o p_137283_ + q (Lcom/mojang/brigadier/context/CommandContext;)Lds; m_137284_ + static + 0 o p_137285_ + r (Lcom/mojang/brigadier/context/CommandContext;)Ljava/util/Collection; m_137286_ + static + 0 o p_137287_ + s (Lcom/mojang/brigadier/context/CommandContext;)Ljava/util/Collection; m_137288_ + static + 0 o p_137289_ + t (Lcom/mojang/brigadier/context/CommandContext;)Lds; m_137290_ + static + 0 o p_137291_ + u (Lcom/mojang/brigadier/context/CommandContext;)Lds; m_274091_ + static + 0 o p_274814_ + v (Lcom/mojang/brigadier/context/CommandContext;)Ljava/util/Collection; m_137292_ + static + 0 o p_137293_ + w (Lcom/mojang/brigadier/context/CommandContext;)Lds; m_137294_ + static + 0 o p_137295_ + x (Lcom/mojang/brigadier/context/CommandContext;)Ljava/util/Collection; m_283989_ + static + 0 o p_284653_ + y (Lcom/mojang/brigadier/context/CommandContext;)Ljava/util/Collection; m_137298_ + static + 0 o p_137299_ +aen$a net/minecraft/server/commands/ExecuteCommand$CommandNumericPredicate + test (Lcom/mojang/brigadier/context/CommandContext;)I m_137300_ + 0 o p_137301_ +aen$b net/minecraft/server/commands/ExecuteCommand$CommandPredicate + test (Lcom/mojang/brigadier/context/CommandContext;)Z m_137302_ + 0 o p_137303_ +aeo net/minecraft/server/commands/ExperienceCommand + a f_137304_ + ()V + static + ()V + a (Lcom/mojang/brigadier/CommandDispatcher;)V m_137306_ + static + 0 o p_137307_ + a (Laeo$a;Laig;I)Lsw; m_289063_ + static + 0 o p_289267_ + 1 o p_289268_ + 2 o p_289269_ + a (Lds;)Z m_137310_ + static + 0 o p_137311_ + a (Laeo$a;ILjava/util/Collection;)Lsw; m_287891_ + static + 0 o p_288400_ + 1 o p_288401_ + 2 o p_288402_ + a (Lds;Ljava/util/Collection;ILaeo$a;)I m_137316_ + static + 0 o p_137317_ + 1 o p_137318_ + 2 o p_137319_ + 3 o p_137320_ + a (Lds;Laig;Laeo$a;)I m_137312_ + static + 0 o p_137313_ + 1 o p_137314_ + 2 o p_137315_ + a (Lcom/mojang/brigadier/context/CommandContext;)I m_137308_ + static + 0 o p_137309_ + b (Lds;Ljava/util/Collection;ILaeo$a;)I m_137325_ + static + 0 o p_137326_ + 1 o p_137327_ + 2 o p_137328_ + 3 o p_137329_ + b (Lcom/mojang/brigadier/context/CommandContext;)I m_137321_ + static + 0 o p_137322_ + b (Lds;)Z m_137323_ + static + 0 o p_137324_ + b (Laeo$a;ILjava/util/Collection;)Lsw; m_289062_ + static + 0 o p_289264_ + 1 o p_289265_ + 2 o p_289266_ + c (Laeo$a;ILjava/util/Collection;)Lsw; m_287893_ + static + 0 o p_288406_ + 1 o p_288407_ + 2 o p_288408_ + c (Lcom/mojang/brigadier/context/CommandContext;)I m_137330_ + static + 0 o p_137331_ + d (Laeo$a;ILjava/util/Collection;)Lsw; m_289064_ + static + 0 o p_289270_ + 1 o p_289271_ + 2 o p_289272_ + d (Lcom/mojang/brigadier/context/CommandContext;)I m_137332_ + static + 0 o p_137333_ + e (Lcom/mojang/brigadier/context/CommandContext;)I m_137334_ + static + 0 o p_137335_ + f (Lcom/mojang/brigadier/context/CommandContext;)I m_137336_ + static + 0 o p_137337_ + g (Lcom/mojang/brigadier/context/CommandContext;)I m_137338_ + static + 0 o p_137339_ + h (Lcom/mojang/brigadier/context/CommandContext;)I m_137340_ + static + 0 o p_137341_ +aeo$a net/minecraft/server/commands/ExperienceCommand$Type + a POINTS + b LEVELS + c f_137344_ + d f_137345_ + e f_137346_ + f f_137347_ + g $VALUES + ()V + static + (Ljava/lang/String;ILjava/lang/String;Ljava/util/function/BiConsumer;Ljava/util/function/BiPredicate;Ljava/util/function/ToIntFunction;)V + 0 o p_137351_ + 1 o p_137352_ + 2 o p_137353_ + 3 o p_137354_ + 4 o p_137355_ + 5 o p_137356_ + a ()[Laeo$a; m_180221_ + static + a (Laig;)I m_287030_ + static + 0 o p_287335_ + a (Laig;Ljava/lang/Integer;)Z m_137359_ + static + 0 o p_137360_ + 1 o p_137361_ + b (Laig;Ljava/lang/Integer;)Z m_289066_ + static + 0 o p_289274_ + 1 o p_289275_ + b (Laig;)I m_289065_ + static + 0 o p_289273_ + valueOf (Ljava/lang/String;)Laeo$a; valueOf + static + 0 o p_137370_ + values ()[Laeo$a; values + static +aep net/minecraft/server/commands/FillBiomeCommand + a f_260663_ + b f_260575_ + ()V + static + ()V + a (Lddx;Ldrs;Ljava/util/function/Predicate;Lorg/apache/commons/lang3/mutable/MutableInt;Lhe;IIILcnt$f;)Lhe; m_262351_ + static + 0 o p_262545_ + 1 o p_262546_ + 2 o p_262547_ + 3 o p_262548_ + 4 o p_262549_ + 5 o p_262550_ + 6 o p_262551_ + 7 o p_262552_ + 8 o p_262553_ + a (Lds;Lgu;Lgu;Lhe$c;Ljava/util/function/Predicate;)I m_262457_ + static + 0 o p_262664_ + 1 o p_262651_ + 2 o p_262678_ + 3 o p_262612_ + 4 o p_262697_ + a (I)I m_261188_ + static + 0 o p_261998_ + a (Lhe;)Z m_262349_ + static + 0 o p_262543_ + a (Lds;)Z m_261268_ + static + 0 o p_261890_ + a (Ljava/lang/Object;Ljava/lang/Object;)Lcom/mojang/brigadier/Message; m_261155_ + static + 0 o p_262025_ + 1 o p_261647_ + a (Lorg/apache/commons/lang3/mutable/MutableInt;Lddx;Ldrs;Lhe;Ljava/util/function/Predicate;)Lcnn; m_262439_ + static + 0 o p_262615_ + 1 o p_262698_ + 2 o p_262622_ + 3 o p_262705_ + 4 o p_262695_ + a (Lorg/apache/commons/lang3/mutable/MutableInt;Ldrs;)Lsw; m_287897_ + static + 0 o p_288415_ + 1 o p_288416_ + a (Lcom/mojang/brigadier/context/CommandContext;)I m_262350_ + static + 0 o p_262544_ + a (Lgu;)Lgu; m_260812_ + static + 0 o p_262148_ + a (Lcom/mojang/brigadier/CommandDispatcher;Ldm;)V m_260845_ + static + 0 o p_261867_ + 1 o p_262155_ + b (Lcom/mojang/brigadier/context/CommandContext;)I m_262352_ + static + 0 o p_262554_ +aeq net/minecraft/server/commands/FillCommand + a f_137372_ + b f_137373_ + c f_137374_ + ()V + static + ()V + a (Lds;Ldrs;Lfd;Laeq$a;Ljava/util/function/Predicate;)I m_137385_ + static + 0 o p_137386_ + 1 o p_137387_ + 2 o p_137388_ + 3 o p_137389_ + 4 o p_137390_ + a (Lds;)Z m_137383_ + static + 0 o p_137384_ + a (Ljava/lang/Object;Ljava/lang/Object;)Lcom/mojang/brigadier/Message; m_137391_ + static + 0 o p_137392_ + 1 o p_137393_ + a (I)Lsw; m_287898_ + static + 0 o p_288417_ + a (Ldcf;)Z m_180224_ + static + 0 o p_180225_ + a (Lcom/mojang/brigadier/context/CommandContext;)I m_137381_ + static + 0 o p_137382_ + a (Lcom/mojang/brigadier/CommandDispatcher;Ldm;)V m_214442_ + static + 0 o p_214443_ + 1 o p_214444_ + b (Lcom/mojang/brigadier/context/CommandContext;)I m_137394_ + static + 0 o p_137395_ + c (Lcom/mojang/brigadier/context/CommandContext;)I m_137396_ + static + 0 o p_137397_ + d (Lcom/mojang/brigadier/context/CommandContext;)I m_137398_ + static + 0 o p_137399_ + e (Lcom/mojang/brigadier/context/CommandContext;)I m_137400_ + static + 0 o p_137401_ + f (Lcom/mojang/brigadier/context/CommandContext;)I m_137402_ + static + 0 o p_137403_ + g (Lcom/mojang/brigadier/context/CommandContext;)I m_137404_ + static + 0 o p_137405_ +aeq$a net/minecraft/server/commands/FillCommand$Mode + a REPLACE + b OUTLINE + c HOLLOW + d DESTROY + e f_137410_ + f $VALUES + ()V + static + (Ljava/lang/String;ILaga$a;)V + 0 o p_137414_ + 1 o p_137415_ + 2 o p_137416_ + a ()[Laeq$a; m_180226_ + static + a (Ldrs;Lgu;Lfd;Laif;)Lfd; m_137417_ + static + 0 o p_137418_ + 1 o p_137419_ + 2 o p_137420_ + 3 o p_137421_ + b (Ldrs;Lgu;Lfd;Laif;)Lfd; m_137422_ + static + 0 o p_137423_ + 1 o p_137424_ + 2 o p_137425_ + 3 o p_137426_ + c (Ldrs;Lgu;Lfd;Laif;)Lfd; m_137427_ + static + 0 o p_137428_ + 1 o p_137429_ + 2 o p_137430_ + 3 o p_137431_ + d (Ldrs;Lgu;Lfd;Laif;)Lfd; m_137432_ + static + 0 o p_137433_ + 1 o p_137434_ + 2 o p_137435_ + 3 o p_137436_ + valueOf (Ljava/lang/String;)Laeq$a; valueOf + static + 0 o p_137438_ + values ()[Laeq$a; values + static +aer net/minecraft/server/commands/ForceLoadCommand + a f_180227_ + b f_137668_ + c f_137669_ + d f_137670_ + e f_137671_ + ()V + static + ()V + a (Lcom/mojang/brigadier/CommandDispatcher;)V m_137676_ + static + 0 o p_137677_ + a (Lds;Lahv;Lahv;Z)I m_137685_ + static + 0 o p_137686_ + 1 o p_137687_ + 2 o p_137688_ + 3 o p_137689_ + a (ILacp;Ljava/lang/String;)Lsw; m_287904_ + static + 0 o p_288431_ + 1 o p_288432_ + 2 o p_288433_ + a (Lacp;)Lsw; m_287903_ + static + 0 o p_288430_ + a (Ljava/lang/Object;Ljava/lang/Object;)Lcom/mojang/brigadier/Message; m_137690_ + static + 0 o p_137691_ + 1 o p_137692_ + a (Laif;J)V m_137673_ + static + 0 o p_137674_ + 1 o p_137675_ + a (Lacp;Ljava/lang/String;)Lsw; m_287901_ + static + 0 o p_288423_ + 1 o p_288424_ + a (Lds;)I m_137680_ + static + 0 o p_137681_ + a (Lclt;Lacp;)Lsw; m_287900_ + static + 0 o p_288421_ + 1 o p_288422_ + a (Lcom/mojang/brigadier/context/CommandContext;)I m_137678_ + static + 0 o p_137679_ + a (ZLclt;Lacp;Lclt;Lclt;)Lsw; m_287902_ + static + 0 o p_288425_ + 1 o p_288426_ + 2 o p_288427_ + 3 o p_288428_ + 4 o p_288429_ + a (Lds;Lahv;)I m_137682_ + static + 0 o p_137683_ + 1 o p_137684_ + a (ZLclt;Lacp;)Lsw; m_287899_ + static + 0 o p_288418_ + 1 o p_288419_ + 2 o p_288420_ + b (Lcom/mojang/brigadier/context/CommandContext;)I m_137693_ + static + 0 o p_137694_ + b (Lds;)I m_137695_ + static + 0 o p_137696_ + b (Ljava/lang/Object;Ljava/lang/Object;)Lcom/mojang/brigadier/Message; m_137697_ + static + 0 o p_137698_ + 1 o p_137699_ + c (Lds;)Z m_137702_ + static + 0 o p_137703_ + c (Lcom/mojang/brigadier/context/CommandContext;)I m_137700_ + static + 0 o p_137701_ + d (Lcom/mojang/brigadier/context/CommandContext;)I m_137704_ + static + 0 o p_137705_ + e (Lcom/mojang/brigadier/context/CommandContext;)I m_137706_ + static + 0 o p_137707_ + f (Lcom/mojang/brigadier/context/CommandContext;)I m_137708_ + static + 0 o p_137709_ + g (Lcom/mojang/brigadier/context/CommandContext;)I m_137710_ + static + 0 o p_137711_ +aes net/minecraft/server/commands/FunctionCommand + a f_137712_ + ()V + static + ()V + a (Lcom/mojang/brigadier/CommandDispatcher;)V m_137714_ + static + 0 o p_137715_ + a (ILjava/util/Collection;)Lsw; m_287907_ + static + 0 o p_288438_ + 1 o p_288439_ + a (Lcom/mojang/brigadier/context/CommandContext;Lcom/mojang/brigadier/suggestion/SuggestionsBuilder;)Ljava/util/concurrent/CompletableFuture; m_137718_ + static + 0 o p_137719_ + 1 o p_137720_ + a (Lorg/apache/commons/lang3/mutable/MutableObject;I)V m_279881_ + static + 0 o p_280946_ + 1 o p_280947_ + a (Lcom/mojang/brigadier/context/CommandContext;)I m_137716_ + static + 0 o p_137717_ + a (Lds;)Z m_137721_ + static + 0 o p_137722_ + a (Ljava/util/Collection;)Lsw; m_287908_ + static + 0 o p_288440_ + a (Lds;Ljava/util/Collection;)I m_137723_ + static + 0 o p_137724_ + 1 o p_137725_ + b (ILjava/util/Collection;)Lsw; m_287906_ + static + 0 o p_288436_ + 1 o p_288437_ + c (ILjava/util/Collection;)Lsw; m_287905_ + static + 0 o p_288434_ + 1 o p_288435_ +aet net/minecraft/server/commands/GameModeCommand + a f_180230_ + ()V + a (Lsw;)Lsw; m_287910_ + static + 0 o p_288443_ + a (Laig;Lsw;)Lsw; m_289067_ + static + 0 o p_289276_ + 1 o p_289277_ + a (Lcom/mojang/brigadier/CommandDispatcher;)V m_137729_ + static + 0 o p_137730_ + a (Lds;Laig;Lcmj;)V m_137737_ + static + 0 o p_137738_ + 1 o p_137739_ + 2 o p_137740_ + a (Lcom/mojang/brigadier/context/CommandContext;Ljava/util/Collection;Lcmj;)I m_137731_ + static + 0 o p_137732_ + 1 o p_137733_ + 2 o p_137734_ + a (Lcom/mojang/brigadier/context/CommandContext;)I m_257137_ + static + 0 o p_258229_ + a (Lds;)Z m_137735_ + static + 0 o p_137736_ + b (Lcom/mojang/brigadier/context/CommandContext;)I m_257136_ + static + 0 o p_258228_ +aeu net/minecraft/server/commands/GameRuleCommand + ()V + a (Lds;Lcmi$e;)I m_137757_ + static + 0 o p_137758_ + 1 o p_137759_ + a (Lcom/mojang/brigadier/CommandDispatcher;)V m_137744_ + static + 0 o p_137745_ + a (Lcmi$e;Lcmi$g;)Lsw; m_287912_ + static + 0 o p_288446_ + 1 o p_288447_ + a (Lds;)Z m_137749_ + static + 0 o p_137750_ + a (Lcom/mojang/brigadier/context/CommandContext;Lcmi$e;)I m_137754_ + static + 0 o p_137755_ + 1 o p_137756_ + b (Lcmi$e;Lcmi$g;)Lsw; m_287911_ + static + 0 o p_288444_ + 1 o p_288445_ +aeu$1 net/minecraft/server/commands/GameRuleCommand$1 + a f_137760_ + (Lcom/mojang/brigadier/builder/LiteralArgumentBuilder;)V + 0 o p_137762_ + a (Lcmi$e;Lcom/mojang/brigadier/context/CommandContext;)I m_137766_ + static + 0 o p_137767_ + 1 o p_137768_ + a (Lcmi$e;Lcmi$f;)V m_6889_ + 0 o p_137764_ + 1 o p_137765_ + b (Lcmi$e;Lcom/mojang/brigadier/context/CommandContext;)I m_137769_ + static + 0 o p_137770_ + 1 o p_137771_ +aev net/minecraft/server/commands/GiveCommand + a f_180233_ + ()V + a (ILcfz;Ljava/util/Collection;)Lsw; m_287913_ + static + 0 o p_288448_ + 1 o p_288449_ + 2 o p_288450_ + a (Lcom/mojang/brigadier/context/CommandContext;)I m_137774_ + static + 0 o p_137775_ + a (Lds;)Z m_137776_ + static + 0 o p_137777_ + a (Lds;Lfv;Ljava/util/Collection;I)I m_137778_ + static + 0 o p_137779_ + 1 o p_137780_ + 2 o p_137781_ + 3 o p_137782_ + a (Lcom/mojang/brigadier/CommandDispatcher;Ldm;)V m_214445_ + static + 0 o p_214446_ + 1 o p_214447_ + b (Lcom/mojang/brigadier/context/CommandContext;)I m_137783_ + static + 0 o p_137784_ + b (ILcfz;Ljava/util/Collection;)Lsw; m_289068_ + static + 0 o p_289278_ + 1 o p_289279_ + 2 o p_289280_ +aew net/minecraft/server/commands/HelpCommand + a f_137785_ + ()V + static + ()V + a (Lcom/mojang/brigadier/ParseResults;Ljava/lang/String;)Lsw; m_287915_ + static + 0 o p_288454_ + 1 o p_288455_ + a (Ljava/lang/String;)Lsw; m_287916_ + static + 0 o p_288456_ + a (Lcom/mojang/brigadier/CommandDispatcher;)V m_137787_ + static + 0 o p_137788_ + a (Lcom/mojang/brigadier/CommandDispatcher;Lcom/mojang/brigadier/context/CommandContext;)I m_287917_ + static + 0 o p_288457_ + 1 o p_288458_ + b (Lcom/mojang/brigadier/CommandDispatcher;Lcom/mojang/brigadier/context/CommandContext;)I m_287918_ + static + 0 o p_288459_ + 1 o p_288460_ +aex net/minecraft/server/commands/ItemCommands + a f_180236_ + b f_180237_ + c f_180238_ + d f_180239_ + e f_180240_ + f f_180241_ + g f_180242_ + ()V + static + ()V + a (Lds;Lbfj;ILjava/util/Collection;ILeaz;)I m_180276_ + static + 0 o p_180277_ + 1 o p_180278_ + 2 o p_180279_ + 3 o p_180280_ + 4 o p_180281_ + 5 o p_180282_ + a (Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;)Lcom/mojang/brigadier/Message; m_180346_ + static + 0 o p_180347_ + 1 o p_180348_ + 2 o p_180349_ + a (Lds;Lgu;ILjava/util/Collection;ILeaz;)I m_180320_ + static + 0 o p_180321_ + 1 o p_180322_ + 2 o p_180323_ + 3 o p_180324_ + 4 o p_180325_ + 5 o p_180326_ + a (Lds;)Z m_180255_ + static + 0 o p_180256_ + a (Lds;Ljava/util/Collection;ILeaz;)I m_180336_ + static + 0 o p_180337_ + 1 o p_180338_ + 2 o p_180339_ + 3 o p_180340_ + a (Lds;Lgu;ILgu;ILeaz;)I m_180307_ + static + 0 o p_180308_ + 1 o p_180309_ + 2 o p_180310_ + 3 o p_180311_ + 4 o p_180312_ + 5 o p_180313_ + a (Lds;Lgu;ILeaz;)I m_180296_ + static + 0 o p_180297_ + 1 o p_180298_ + 2 o p_180299_ + 3 o p_180300_ + a (Lbfj;I)Lcfz; m_180245_ + static + 0 o p_180246_ + 1 o p_180247_ + a (Lcom/mojang/brigadier/context/CommandContext;Lcom/mojang/brigadier/suggestion/SuggestionsBuilder;)Ljava/util/concurrent/CompletableFuture; m_278537_ + static + 0 o p_278910_ + 1 o p_278911_ + a (Lds;Lgu;I)Lcfz; m_180287_ + static + 0 o p_180288_ + 1 o p_180289_ + 2 o p_180290_ + a (Lds;Lbfj;ILgu;I)I m_180257_ + static + 0 o p_180258_ + 1 o p_180259_ + 2 o p_180260_ + 3 o p_180261_ + 4 o p_180262_ + a (Lds;Lgu;Lcom/mojang/brigadier/exceptions/Dynamic3CommandExceptionType;)Lbdq; m_180327_ + static + 0 o p_180328_ + 1 o p_180329_ + 2 o p_180330_ + a (Lds;Leaz;Lcfz;)Lcfz; m_180283_ + static + 0 o p_180284_ + 1 o p_180285_ + 2 o p_180286_ + a (Ljava/util/Map$Entry;)Lsw; m_287922_ + static + 0 o p_288466_ + a (Ljava/util/Map;)Lsw; m_287920_ + static + 0 o p_288463_ + a (Ljava/util/List;Lcfz;)Lsw; m_287921_ + static + 0 o p_288464_ + 1 o p_288465_ + a (Lgu;Lcfz;)Lsw; m_287924_ + static + 0 o p_288469_ + 1 o p_288470_ + a (Ljava/lang/Object;)Lcom/mojang/brigadier/Message; m_180341_ + static + 0 o p_180342_ + a (Lds;Lbfj;ILgu;ILeaz;)I m_180263_ + static + 0 o p_180264_ + 1 o p_180265_ + 2 o p_180266_ + 3 o p_180267_ + 4 o p_180268_ + 5 o p_180269_ + a (Ljava/lang/Object;Ljava/lang/Object;)Lcom/mojang/brigadier/Message; m_180343_ + static + 0 o p_180344_ + 1 o p_180345_ + a (Lds;Ljava/util/Collection;ILcfz;)I m_180331_ + static + 0 o p_180332_ + 1 o p_180333_ + 2 o p_180334_ + 3 o p_180335_ + a (Lds;Lgu;ILjava/util/Collection;I)I m_180314_ + static + 0 o p_180315_ + 1 o p_180316_ + 2 o p_180317_ + 3 o p_180318_ + 4 o p_180319_ + a (Lds;Lgu;ILgu;I)I m_180301_ + static + 0 o p_180302_ + 1 o p_180303_ + 2 o p_180304_ + 3 o p_180305_ + 4 o p_180306_ + a (Lcom/mojang/brigadier/context/CommandContext;)I m_180250_ + static + 0 o p_180251_ + a (Lds;Lgu;ILcfz;)I m_180291_ + static + 0 o p_180292_ + 1 o p_180293_ + 2 o p_180294_ + 3 o p_180295_ + a (Lds;Lbfj;ILjava/util/Collection;I)I m_180270_ + static + 0 o p_180271_ + 1 o p_180272_ + 2 o p_180273_ + 3 o p_180274_ + 4 o p_180275_ + a (Lcom/mojang/brigadier/CommandDispatcher;Ldm;)V m_214448_ + static + 0 o p_214449_ + 1 o p_214450_ + b (Lcom/mojang/brigadier/context/CommandContext;)I m_180350_ + static + 0 o p_180351_ + b (Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;)Lcom/mojang/brigadier/Message; m_180354_ + static + 0 o p_180355_ + 1 o p_180356_ + 2 o p_180357_ + b (Lgu;Lcfz;)Lsw; m_287919_ + static + 0 o p_288461_ + 1 o p_288462_ + b (Ljava/lang/Object;)Lcom/mojang/brigadier/Message; m_180352_ + static + 0 o p_180353_ + b (Ljava/util/List;Lcfz;)Lsw; m_287923_ + static + 0 o p_288467_ + 1 o p_288468_ + c (Lcom/mojang/brigadier/context/CommandContext;)I m_180358_ + static + 0 o p_180359_ + c (Ljava/lang/Object;)Lcom/mojang/brigadier/Message; m_180360_ + static + 0 o p_180361_ + d (Lcom/mojang/brigadier/context/CommandContext;)I m_180362_ + static + 0 o p_180363_ + e (Lcom/mojang/brigadier/context/CommandContext;)I m_180364_ + static + 0 o p_180365_ + f (Lcom/mojang/brigadier/context/CommandContext;)I m_180366_ + static + 0 o p_180367_ + g (Lcom/mojang/brigadier/context/CommandContext;)I m_180368_ + static + 0 o p_180369_ + h (Lcom/mojang/brigadier/context/CommandContext;)I m_180370_ + static + 0 o p_180371_ + i (Lcom/mojang/brigadier/context/CommandContext;)I m_180372_ + static + 0 o p_180373_ + j (Lcom/mojang/brigadier/context/CommandContext;)I m_180374_ + static + 0 o p_180375_ + k (Lcom/mojang/brigadier/context/CommandContext;)I m_180376_ + static + 0 o p_180377_ + l (Lcom/mojang/brigadier/context/CommandContext;)I m_180378_ + static + 0 o p_180379_ + m (Lcom/mojang/brigadier/context/CommandContext;)I m_180380_ + static + 0 o p_180381_ + n (Lcom/mojang/brigadier/context/CommandContext;)I m_180382_ + static + 0 o p_180383_ +aey net/minecraft/server/commands/JfrCommand + a f_183641_ + b f_183642_ + ()V + static + ()V + a (Lsw;)Lsw; m_287925_ + static + 0 o p_288471_ + a (Lcom/mojang/brigadier/CommandDispatcher;)V m_183645_ + static + 0 o p_183646_ + a (Lds;)I m_183649_ + static + 0 o p_183650_ + a (Ljava/lang/Object;)Lcom/mojang/brigadier/Message; m_183651_ + static + 0 o p_183652_ + a (Ljava/nio/file/Path;Lts;)Lts; m_183653_ + static + 0 o p_183654_ + 1 o p_183655_ + a ()Lsw; m_287926_ + static + a (Lcom/mojang/brigadier/context/CommandContext;)I m_183647_ + static + 0 o p_183648_ + b (Lcom/mojang/brigadier/context/CommandContext;)I m_183656_ + static + 0 o p_183657_ + b (Lds;)I m_183658_ + static + 0 o p_183659_ + c (Lds;)Z m_183660_ + static + 0 o p_183661_ +aez net/minecraft/server/commands/KickCommand + ()V + a (Laig;Lsw;)Lsw; m_289069_ + static + 0 o p_289281_ + 1 o p_289282_ + a (Lcom/mojang/brigadier/CommandDispatcher;)V m_137795_ + static + 0 o p_137796_ + a (Lds;Ljava/util/Collection;Lsw;)I m_137801_ + static + 0 o p_137802_ + 1 o p_137803_ + 2 o p_137804_ + a (Lcom/mojang/brigadier/context/CommandContext;)I m_137797_ + static + 0 o p_137798_ + a (Lds;)Z m_137799_ + static + 0 o p_137800_ + b (Lcom/mojang/brigadier/context/CommandContext;)I m_137805_ + static + 0 o p_137806_ +af net/minecraft/advancements/AdvancementList + a f_139325_ + b f_139326_ + c f_139327_ + d f_139328_ + e f_139329_ + ()V + static + ()V + a (Ljava/util/Map;)V m_139333_ + 0 o p_139334_ + a (Laf$a;)V m_139341_ + 0 o p_139342_ + a (Ljava/util/Set;)V m_139335_ + 0 o p_139336_ + a ()V m_139332_ + a (Lacq;)Lae; m_139337_ + 0 o p_139338_ + a (Lae;)V m_139339_ + 0 o p_139340_ + b ()Ljava/lang/Iterable; m_139343_ + c ()Ljava/util/Collection; m_139344_ +af$a net/minecraft/advancements/AdvancementList$Listener + a ()V m_7204_ + a (Lae;)V m_5513_ + 0 o p_139345_ + b (Lae;)V m_5504_ + 0 o p_139346_ + c (Lae;)V m_5505_ + 0 o p_139347_ + d (Lae;)V m_5516_ + 0 o p_139348_ +afa net/minecraft/server/commands/KillCommand + ()V + a (Lcom/mojang/brigadier/CommandDispatcher;)V m_137807_ + static + 0 o p_137808_ + a (Lcom/mojang/brigadier/context/CommandContext;)I m_137809_ + static + 0 o p_137810_ + a (Lds;)Z m_137811_ + static + 0 o p_137812_ + a (Ljava/util/Collection;)Lsw; m_287929_ + static + 0 o p_288475_ + a (Lds;Ljava/util/Collection;)I m_137813_ + static + 0 o p_137814_ + 1 o p_137815_ + b (Lcom/mojang/brigadier/context/CommandContext;)I m_137816_ + static + 0 o p_137817_ + b (Ljava/util/Collection;)Lsw; m_287928_ + static + 0 o p_288474_ +afb net/minecraft/server/commands/ListPlayersCommand + ()V + a (Lds;Ljava/util/function/Function;)I m_137826_ + static + 0 o p_137827_ + 1 o p_137828_ + a (Lcom/mojang/brigadier/CommandDispatcher;)V m_137820_ + static + 0 o p_137821_ + a (Lds;)I m_137824_ + static + 0 o p_137825_ + a (Lcom/mojang/brigadier/context/CommandContext;)I m_137822_ + static + 0 o p_137823_ + a (Laig;)Lsw; m_289070_ + static + 0 o p_289283_ + a (Ljava/util/List;Lalk;Lsw;)Lsw; m_287930_ + static + 0 o p_288476_ + 1 o p_288477_ + 2 o p_288478_ + b (Lcom/mojang/brigadier/context/CommandContext;)I m_137829_ + static + 0 o p_137830_ + b (Lds;)I m_137831_ + static + 0 o p_137832_ +afc net/minecraft/server/commands/LocateCommand + a f_262750_ + b f_214451_ + c f_214452_ + d f_214453_ + e f_214455_ + f f_214457_ + g f_214458_ + h f_214459_ + i f_214460_ + j f_214461_ + ()V + static + ()V + a (Lhe;)Lhi$a; m_214490_ + static + 0 o p_214491_ + a (Lhr;Lacp;)Ljava/util/Optional; m_257138_ + static + 0 o p_258230_ + 1 o p_258231_ + a (Lds;)Z m_214469_ + static + 0 o p_214470_ + a (Lds;Les$c;Lgu;Lcom/mojang/datafixers/util/Pair;Ljava/lang/String;ZLjava/time/Duration;)I m_262810_ + static + 0 o p_263019_ + 1 o p_263031_ + 2 o p_262989_ + 3 o p_262959_ + 4 o p_263045_ + 5 o p_262934_ + 6 o p_262960_ + a (Ler$c;Lhe$c;)Ljava/lang/String; m_244844_ + static + 0 o p_248146_ + 1 o p_248147_ + a (Lds;Ler$c;)I m_247543_ + static + 0 o p_252062_ + 1 o p_249756_ + a (Lacp;)Ljava/lang/String; m_214462_ + static + 0 o p_214463_ + a (IIII)F m_137853_ + static + 0 o p_137854_ + 1 o p_137855_ + 2 o p_137856_ + 3 o p_137857_ + a (Lds;Ler$c;Lgu;Lcom/mojang/datafixers/util/Pair;Ljava/lang/String;ZLjava/time/Duration;)I m_262830_ + static + 0 o p_263098_ + 1 o p_262956_ + 2 o p_262917_ + 3 o p_263074_ + 4 o p_262937_ + 5 o p_263051_ + 6 o p_263028_ + a (Lds;Les$c;)I m_214471_ + static + 0 o p_214472_ + 1 o p_249893_ + a (Ljava/lang/String;Ljava/lang/String;Lsw;I)Lsw; m_287932_ + static + 0 o p_288480_ + 1 o p_288481_ + 2 o p_288482_ + 3 o p_288483_ + a (Ljava/lang/Object;)Lcom/mojang/brigadier/Message; m_214511_ + static + 0 o p_214512_ + a (Les$c;)Lcom/mojang/brigadier/exceptions/CommandSyntaxException; m_244840_ + static + 0 o p_248139_ + a (Lds;Lgu;Lcom/mojang/datafixers/util/Pair;Ljava/lang/String;ZLjava/lang/String;Ljava/time/Duration;)I m_262858_ + static + 0 o p_262983_ + 1 o p_263016_ + 2 o p_262941_ + 3 o p_263083_ + 4 o p_263010_ + 5 o p_263048_ + 6 o p_263040_ + a (Ler$c;Lcom/mojang/datafixers/util/Pair;Lhi$c;)Ljava/lang/String; m_244842_ + static + 0 o p_248141_ + 1 o p_248142_ + 2 o p_248143_ + a (Lgu;Ljava/lang/String;Lts;)Lts; m_214486_ + static + 0 o p_214487_ + 1 o p_214488_ + 2 o p_214489_ + a (Lcom/mojang/datafixers/util/Pair;)Ljava/lang/String; m_245548_ + static + 0 o p_249526_ + a (Lcom/mojang/brigadier/context/CommandContext;)I m_257141_ + static + 0 o p_258234_ + a (Les$c;Lhr;)Ljava/util/Optional; m_245526_ + static + 0 o p_251212_ + 1 o p_249691_ + a (Lcom/mojang/datafixers/util/Pair;Lanl;)Ljava/lang/String; m_244843_ + static + 0 o p_248144_ + 1 o p_248145_ + a (Lcom/mojang/brigadier/CommandDispatcher;Ldm;)V m_246116_ + static + 0 o p_249870_ + 1 o p_248936_ + b (Lcom/mojang/brigadier/context/CommandContext;)I m_257139_ + static + 0 o p_258232_ + b (Lacp;)Ljava/lang/String; m_214497_ + static + 0 o p_214498_ + b (Lds;Ler$c;)I m_245206_ + static + 0 o p_252013_ + 1 o p_249480_ + b (Ljava/lang/Object;)Lcom/mojang/brigadier/Message; m_214513_ + static + 0 o p_214514_ + c (Lcom/mojang/brigadier/context/CommandContext;)I m_257140_ + static + 0 o p_258233_ + c (Ljava/lang/Object;)Lcom/mojang/brigadier/Message; m_207533_ + static + 0 o p_207534_ + d (Ljava/lang/Object;)Lcom/mojang/brigadier/Message; m_201830_ + static + 0 o p_201831_ +afd net/minecraft/server/commands/LootCommand + a f_137877_ + b f_137878_ + c f_137879_ + ()V + static + ()V + a (Lcom/mojang/brigadier/context/CommandContext;Lbfj;Lafd$b;)I m_137905_ + static + 0 o p_137906_ + 1 o p_137907_ + 2 o p_137908_ + a (Lcom/mojang/brigadier/context/CommandContext;Lacq;Lafd$b;)I m_137932_ + static + 0 o p_137933_ + 1 o p_137934_ + 2 o p_137935_ + a (Lds;Lacq;Ljava/util/List;)V m_137972_ + static + 0 o p_137973_ + 1 o p_137974_ + 2 o p_137975_ + a (Laif;Leei;Lcfz;)V m_137881_ + static + 0 o p_137882_ + 1 o p_137883_ + 2 o p_137884_ + a (Lbdq;Lcfz;)Z m_137885_ + static + 0 o p_137886_ + 1 o p_137887_ + a (Lds;)Z m_137936_ + static + 0 o p_137937_ + a (Lds;Ljava/util/List;Lacq;)V m_137968_ + static + 0 o p_137969_ + 1 o p_137970_ + 2 o p_137971_ + a (Lds;Lbfo;)Lcfz; m_137938_ + static + 0 o p_137939_ + 1 o p_137940_ + a (Ljava/util/Collection;Ljava/util/List;Lafd$a;)I m_137984_ + static + 0 o p_137985_ + 1 o p_137986_ + 2 o p_137987_ + a (Lcfz;Lacq;)Lsw; m_287935_ + static + 0 o p_288486_ + 1 o p_288487_ + a (Lbfj;Ljava/util/List;IILjava/util/List;)V m_137888_ + static + 0 o p_137889_ + 1 o p_137890_ + 2 o p_137891_ + 3 o p_137892_ + 4 o p_137893_ + a (Lcom/mojang/brigadier/builder/ArgumentBuilder;Lafd$c;)Lcom/mojang/brigadier/builder/ArgumentBuilder; m_137902_ + static + 0 o p_137903_ + 1 o p_137904_ + a (Lcfz;Lcfz;)Z m_137894_ + static + 0 o p_137895_ + 1 o p_137896_ + a (Lds;Ljava/util/List;)V m_137965_ + static + 0 o p_137966_ + 1 o p_137967_ + a (Lcom/mojang/brigadier/CommandDispatcher;Ldm;)V m_214515_ + static + 0 o p_214516_ + 1 o p_214517_ + a (Lcfz;)Lsw; m_287933_ + static + 0 o p_288484_ + a (Lcom/mojang/brigadier/context/CommandContext;Ljava/util/List;Lafd$a;)I m_137917_ + static + 0 o p_137918_ + 1 o p_137919_ + 2 o p_137920_ + a (Lds;Lgu;Ljava/util/List;Lafd$a;)I m_137960_ + static + 0 o p_137961_ + 1 o p_137962_ + 2 o p_137963_ + 3 o p_137964_ + a (Ljava/util/List;Lacq;)Lsw; m_287936_ + static + 0 o p_288488_ + 1 o p_288489_ + a (Lds;Lgu;IILjava/util/List;Lafd$a;)I m_137953_ + static + 0 o p_137954_ + 1 o p_137955_ + 2 o p_137956_ + 3 o p_137957_ + 4 o p_137958_ + 5 o p_137959_ + a (Lcom/mojang/brigadier/context/CommandContext;Lcom/mojang/brigadier/suggestion/SuggestionsBuilder;)Ljava/util/concurrent/CompletableFuture; m_278540_ + static + 0 o p_278916_ + 1 o p_278917_ + a (Lafd$b;Lcom/mojang/brigadier/context/CommandContext;)I m_180392_ + static + 0 o p_180393_ + 1 o p_180394_ + a (Lcom/mojang/brigadier/context/CommandContext;Lacq;Ldzq;Lafd$b;)I m_287198_ + static + 0 o p_287721_ + 1 o p_287610_ + 2 o p_287728_ + 3 o p_287770_ + a (Ljava/lang/Object;)Lcom/mojang/brigadier/Message; m_137976_ + static + 0 o p_137977_ + a (Lds;Lgu;)Lbdq; m_137950_ + static + 0 o p_137951_ + 1 o p_137952_ + a (Ljava/util/List;)Lsw; m_287934_ + static + 0 o p_288485_ + a (Ldm;Lcom/mojang/brigadier/builder/ArgumentBuilder;Lafd$b;)Lcom/mojang/brigadier/builder/ArgumentBuilder; m_214518_ + static + 0 o p_214519_ + 1 o p_214520_ + 2 o p_214521_ + a (Lds;Leei;Ljava/util/List;Lafd$a;)I m_137945_ + static + 0 o p_137946_ + 1 o p_137947_ + 2 o p_137948_ + 3 o p_137949_ + a (Lcom/mojang/brigadier/context/CommandContext;Lgu;Lcfz;Lafd$b;)I m_137912_ + static + 0 o p_137913_ + 1 o p_137914_ + 2 o p_137915_ + 3 o p_137916_ + a (Ljava/util/Collection;IILjava/util/List;Lafd$a;)I m_137978_ + static + 0 o p_137979_ + 1 o p_137980_ + 2 o p_137981_ + 3 o p_137982_ + 4 o p_137983_ + a (Lcom/mojang/brigadier/context/CommandContext;Lacq;Lgu;Lcfz;Lafd$b;)I m_137926_ + static + 0 o p_137927_ + 1 o p_137928_ + 2 o p_137929_ + 3 o p_137930_ + 4 o p_137931_ + a (Lds;Ldcb;Ljava/util/List;)V m_278539_ + static + 0 o p_278913_ + 1 o p_278914_ + 2 o p_278915_ + b (Lds;Ljava/util/List;)V m_137995_ + static + 0 o p_137996_ + 1 o p_137997_ + b (Lafd$b;Lcom/mojang/brigadier/context/CommandContext;)I m_180395_ + static + 0 o p_180396_ + 1 o p_180397_ + b (Ljava/lang/Object;)Lcom/mojang/brigadier/Message; m_137998_ + static + 0 o p_137999_ + b (Lcom/mojang/brigadier/context/CommandContext;Ljava/util/List;Lafd$a;)I m_137991_ + static + 0 o p_137992_ + 1 o p_137993_ + 2 o p_137994_ + c (Lafd$b;Lcom/mojang/brigadier/context/CommandContext;)I m_180398_ + static + 0 o p_180399_ + 1 o p_180400_ + c (Lcom/mojang/brigadier/context/CommandContext;Ljava/util/List;Lafd$a;)I m_138003_ + static + 0 o p_138004_ + 1 o p_138005_ + 2 o p_138006_ + d (Lcom/mojang/brigadier/context/CommandContext;Ljava/util/List;Lafd$a;)I m_138010_ + static + 0 o p_138011_ + 1 o p_138012_ + 2 o p_138013_ + d (Lafd$b;Lcom/mojang/brigadier/context/CommandContext;)I m_180401_ + static + 0 o p_180402_ + 1 o p_180403_ + e (Lcom/mojang/brigadier/context/CommandContext;Ljava/util/List;Lafd$a;)I m_138017_ + static + 0 o p_138018_ + 1 o p_138019_ + 2 o p_138020_ + e (Lafd$b;Lcom/mojang/brigadier/context/CommandContext;)I m_180404_ + static + 0 o p_180405_ + 1 o p_180406_ + f (Lafd$b;Lcom/mojang/brigadier/context/CommandContext;)I m_180407_ + static + 0 o p_180408_ + 1 o p_180409_ + f (Lcom/mojang/brigadier/context/CommandContext;Ljava/util/List;Lafd$a;)I m_138024_ + static + 0 o p_138025_ + 1 o p_138026_ + 2 o p_138027_ + g (Lcom/mojang/brigadier/context/CommandContext;Ljava/util/List;Lafd$a;)I m_138031_ + static + 0 o p_138032_ + 1 o p_138033_ + 2 o p_138034_ + g (Lafd$b;Lcom/mojang/brigadier/context/CommandContext;)I m_180410_ + static + 0 o p_180411_ + 1 o p_180412_ + h (Lafd$b;Lcom/mojang/brigadier/context/CommandContext;)I m_180413_ + static + 0 o p_180414_ + 1 o p_180415_ + i (Lafd$b;Lcom/mojang/brigadier/context/CommandContext;)I m_180416_ + static + 0 o p_180417_ + 1 o p_180418_ + j (Lafd$b;Lcom/mojang/brigadier/context/CommandContext;)I m_180419_ + static + 0 o p_180420_ + 1 o p_180421_ +afd$a net/minecraft/server/commands/LootCommand$Callback + accept (Ljava/util/List;)V m_138047_ + 0 o p_138048_ +afd$b net/minecraft/server/commands/LootCommand$DropConsumer + accept (Lcom/mojang/brigadier/context/CommandContext;Ljava/util/List;Lafd$a;)I m_138049_ + 0 o p_138050_ + 1 o p_138051_ + 2 o p_138052_ +afd$c net/minecraft/server/commands/LootCommand$TailProvider + construct (Lcom/mojang/brigadier/builder/ArgumentBuilder;Lafd$b;)Lcom/mojang/brigadier/builder/ArgumentBuilder; m_138053_ + 0 o p_138054_ + 1 o p_138055_ +afe net/minecraft/server/commands/MsgCommand + ()V + a (Lds;Ljava/util/Collection;Ltl;)V m_246972_ + static + 0 o p_250209_ + 1 o p_252344_ + 2 o p_249416_ + a (Lcom/mojang/brigadier/context/CommandContext;Ljava/util/Collection;Ltl;)V m_244847_ + static + 0 o p_248152_ + 1 o p_248153_ + 2 o p_248154_ + a (Lcom/mojang/brigadier/CommandDispatcher;)V m_138060_ + static + 0 o p_138061_ + a (Lcom/mojang/brigadier/context/CommandContext;)I m_244848_ + static + 0 o p_248155_ +aff net/minecraft/server/commands/OpCommand + a f_138072_ + ()V + static + ()V + a (Lalk;Laig;)Z m_289072_ + static + 0 o p_289285_ + 1 o p_289286_ + a (Lcom/mojang/brigadier/CommandDispatcher;)V m_138079_ + static + 0 o p_138080_ + a (Lcom/mojang/brigadier/context/CommandContext;Lcom/mojang/brigadier/suggestion/SuggestionsBuilder;)Ljava/util/concurrent/CompletableFuture; m_138083_ + static + 0 o p_138084_ + 1 o p_138085_ + a (Lcom/mojang/brigadier/context/CommandContext;)I m_138081_ + static + 0 o p_138082_ + a (Lds;)Z m_138086_ + static + 0 o p_138087_ + a (Ljava/util/Collection;)Lsw; m_287939_ + static + 0 o p_288493_ + a (Laig;)Ljava/lang/String; m_289071_ + static + 0 o p_289284_ + a (Lds;Ljava/util/Collection;)I m_138088_ + static + 0 o p_138089_ + 1 o p_138090_ +afg net/minecraft/server/commands/PardonCommand + a f_138091_ + ()V + static + ()V + a (Lcom/mojang/brigadier/CommandDispatcher;)V m_138093_ + static + 0 o p_138094_ + a (Lcom/mojang/brigadier/context/CommandContext;Lcom/mojang/brigadier/suggestion/SuggestionsBuilder;)Ljava/util/concurrent/CompletableFuture; m_138097_ + static + 0 o p_138098_ + 1 o p_138099_ + a (Lcom/mojang/brigadier/context/CommandContext;)I m_138095_ + static + 0 o p_138096_ + a (Lds;)Z m_138100_ + static + 0 o p_138101_ + a (Lcom/mojang/authlib/GameProfile;)Lsw; m_287940_ + static + 0 o p_288494_ + a (Lds;Ljava/util/Collection;)I m_138102_ + static + 0 o p_138103_ + 1 o p_138104_ +afh net/minecraft/server/commands/PardonIpCommand + a f_138105_ + b f_138106_ + ()V + static + ()V + a (Ljava/lang/String;)Lsw; m_287941_ + static + 0 o p_288495_ + a (Lcom/mojang/brigadier/CommandDispatcher;)V m_138108_ + static + 0 o p_138109_ + a (Lcom/mojang/brigadier/context/CommandContext;Lcom/mojang/brigadier/suggestion/SuggestionsBuilder;)Ljava/util/concurrent/CompletableFuture; m_138112_ + static + 0 o p_138113_ + 1 o p_138114_ + a (Lcom/mojang/brigadier/context/CommandContext;)I m_138110_ + static + 0 o p_138111_ + a (Lds;)Z m_138115_ + static + 0 o p_138116_ + a (Lds;Ljava/lang/String;)I m_138117_ + static + 0 o p_138118_ + 1 o p_138119_ +afi net/minecraft/server/commands/ParticleCommand + a f_138120_ + ()V + static + ()V + a (Lds;)Z m_138126_ + static + 0 o p_138127_ + a (Lds;Lit;Leei;Leei;FIZLjava/util/Collection;)I m_138128_ + static + 0 o p_138129_ + 1 o p_138130_ + 2 o p_138131_ + 3 o p_138132_ + 4 o p_138133_ + 5 o p_138134_ + 6 o p_138135_ + 7 o p_138136_ + a (Lcom/mojang/brigadier/context/CommandContext;)I m_138124_ + static + 0 o p_138125_ + a (Lit;)Lsw; m_287942_ + static + 0 o p_288496_ + a (Lcom/mojang/brigadier/CommandDispatcher;Ldm;)V m_138122_ + static + 0 o p_138123_ + 1 o p_248587_ + b (Lcom/mojang/brigadier/context/CommandContext;)I m_138137_ + static + 0 o p_138138_ + c (Lcom/mojang/brigadier/context/CommandContext;)I m_138139_ + static + 0 o p_138140_ + d (Lcom/mojang/brigadier/context/CommandContext;)I m_138141_ + static + 0 o p_138142_ + e (Lcom/mojang/brigadier/context/CommandContext;)I m_138143_ + static + 0 o p_138144_ + f (Lcom/mojang/brigadier/context/CommandContext;)I m_138145_ + static + 0 o p_138146_ + g (Lcom/mojang/brigadier/context/CommandContext;)I m_138147_ + static + 0 o p_138148_ +afj net/minecraft/server/commands/PerfCommand + a f_180432_ + b f_180433_ + c f_180434_ + ()V + static + ()V + a (Lds;Lbam;)V m_180443_ + static + 0 o p_180444_ + 1 o p_180445_ + a (Ljava/lang/String;)Lsw; m_287944_ + static + 0 o p_288499_ + a (Lcom/mojang/brigadier/CommandDispatcher;)V m_180437_ + static + 0 o p_180438_ + a ()Lsw; m_287945_ + static + a (Lds;Lnet/minecraft/server/MinecraftServer;Ljava/nio/file/Path;)V m_180450_ + static + 0 o p_180451_ + 1 o p_180452_ + 2 o p_180453_ + a (Lds;Ljava/nio/file/Path;Lnet/minecraft/server/MinecraftServer;)V m_180446_ + static + 0 o p_180447_ + 1 o p_180448_ + 2 o p_180449_ + a (DI)Lsw; m_287943_ + static + 0 o p_288497_ + 1 o p_288498_ + a (Lds;)I m_180441_ + static + 0 o p_180442_ + a (Lcom/mojang/brigadier/context/CommandContext;)I m_180439_ + static + 0 o p_180440_ + b (Lds;Lbam;)V m_180458_ + static + 0 o p_180459_ + 1 o p_180460_ + b (Lcom/mojang/brigadier/context/CommandContext;)I m_180454_ + static + 0 o p_180455_ + b (Lds;)I m_180456_ + static + 0 o p_180457_ + c (Lds;)Z m_180461_ + static + 0 o p_180462_ +afk net/minecraft/server/commands/PlaceCommand + a f_214530_ + b f_214531_ + c f_214532_ + d f_214533_ + e f_214534_ + f f_214535_ + ()V + static + ()V + a (Ljava/lang/String;Lgu;)Lsw; m_287950_ + static + 0 o p_288509_ + 1 o p_288510_ + a (Lds;Lhe$c;Lgu;)I m_214575_ + static + 0 o p_214576_ + 1 o p_248822_ + 2 o p_214578_ + a (Lds;)Z m_214559_ + static + 0 o p_214560_ + a (Laif;Lclt;Lclt;)V m_214543_ + static + 0 o p_214544_ + 1 o p_214545_ + 2 o p_214546_ + a (Lds;Lacq;Lgu;Lcvz;Lcui;FI)I m_214561_ + static + 0 o p_214562_ + 1 o p_214563_ + 2 o p_214564_ + 3 o p_214565_ + 4 o p_214566_ + 5 o p_214567_ + 6 o p_214568_ + a (Lgu;)Lsw; m_287949_ + static + 0 o p_288508_ + a (Lcom/mojang/brigadier/context/CommandContext;Lcom/mojang/brigadier/suggestion/SuggestionsBuilder;)Ljava/util/concurrent/CompletableFuture; m_214551_ + static + 0 o p_214552_ + 1 o p_214553_ + a (Lcom/mojang/brigadier/CommandDispatcher;)V m_214547_ + static + 0 o p_214548_ + a (Ljava/lang/Object;)Lcom/mojang/brigadier/Message; m_214581_ + static + 0 o p_214582_ + a (Lhe;)Z m_214579_ + static + 0 o p_214580_ + a (Laif;Lclt;)Z m_214540_ + static + 0 o p_214541_ + 1 o p_214542_ + a (Ldsi;Laif;Lddy;Lclt;)V m_289073_ + static + 0 o p_289287_ + 1 o p_289288_ + 2 o p_289289_ + 3 o p_289290_ + a (Lds;Lhe;Lacq;ILgu;)I m_214569_ + static + 0 o p_214570_ + 1 o p_214571_ + 2 o p_214572_ + 3 o p_214573_ + 4 o p_214574_ + a (Lacq;Lgu;)Lsw; m_287947_ + static + 0 o p_288504_ + 1 o p_288505_ + a (Lcom/mojang/brigadier/context/CommandContext;)I m_214549_ + static + 0 o p_214550_ + b (Lcom/mojang/brigadier/context/CommandContext;)I m_214585_ + static + 0 o p_214586_ + b (Ljava/lang/String;Lgu;)Lsw; m_287948_ + static + 0 o p_288506_ + 1 o p_288507_ + b (Lds;Lhe$c;Lgu;)I m_214587_ + static + 0 o p_214588_ + 1 o p_251799_ + 2 o p_214590_ + c (Lcom/mojang/brigadier/context/CommandContext;)I m_214591_ + static + 0 o p_214592_ + d (Lcom/mojang/brigadier/context/CommandContext;)I m_214593_ + static + 0 o p_214594_ + e (Lcom/mojang/brigadier/context/CommandContext;)I m_214595_ + static + 0 o p_214596_ + f (Lcom/mojang/brigadier/context/CommandContext;)I m_274102_ + static + 0 o p_274827_ + g (Lcom/mojang/brigadier/context/CommandContext;)I m_244857_ + static + 0 o p_248168_ + h (Lcom/mojang/brigadier/context/CommandContext;)I m_274101_ + static + 0 o p_274826_ + i (Lcom/mojang/brigadier/context/CommandContext;)I m_244856_ + static + 0 o p_248167_ + j (Lcom/mojang/brigadier/context/CommandContext;)I m_274100_ + static + 0 o p_274825_ + k (Lcom/mojang/brigadier/context/CommandContext;)I m_244852_ + static + 0 o p_248163_ + l (Lcom/mojang/brigadier/context/CommandContext;)I m_274099_ + static + 0 o p_274824_ +afl net/minecraft/server/commands/PlaySoundCommand + a f_138149_ + ()V + static + ()V + a (Lami;Lcom/mojang/brigadier/context/CommandContext;)I m_138153_ + static + 0 o p_138154_ + 1 o p_138155_ + a (Lcom/mojang/brigadier/CommandDispatcher;)V m_138156_ + static + 0 o p_138157_ + a (Lami;)Lcom/mojang/brigadier/builder/LiteralArgumentBuilder; m_138151_ + static + 0 o p_138152_ + a (Lds;)Z m_138158_ + static + 0 o p_138159_ + a (Lds;Ljava/util/Collection;Lacq;Lami;Leei;FFF)I m_138160_ + static + 0 o p_138161_ + 1 o p_138162_ + 2 o p_138163_ + 3 o p_138164_ + 4 o p_138165_ + 5 o p_138166_ + 6 o p_138167_ + 7 o p_138168_ + a (Lacq;Ljava/util/Collection;)Lsw; m_287951_ + static + 0 o p_288511_ + 1 o p_288512_ + b (Lami;Lcom/mojang/brigadier/context/CommandContext;)I m_138169_ + static + 0 o p_138170_ + 1 o p_138171_ + b (Lacq;Ljava/util/Collection;)Lsw; m_289074_ + static + 0 o p_289291_ + 1 o p_289292_ + c (Lami;Lcom/mojang/brigadier/context/CommandContext;)I m_138172_ + static + 0 o p_138173_ + 1 o p_138174_ + d (Lami;Lcom/mojang/brigadier/context/CommandContext;)I m_138175_ + static + 0 o p_138176_ + 1 o p_138177_ + e (Lami;Lcom/mojang/brigadier/context/CommandContext;)I m_138178_ + static + 0 o p_138179_ + 1 o p_138180_ +afm net/minecraft/server/commands/PublishCommand + a f_138181_ + b f_138182_ + ()V + static + ()V + a (I)Ltj; m_257556_ + static + 0 o p_259532_ + a (Lcom/mojang/brigadier/CommandDispatcher;)V m_138184_ + static + 0 o p_138185_ + a (Ljava/lang/Object;)Lcom/mojang/brigadier/Message; m_138193_ + static + 0 o p_138194_ + a (Lds;IZLcmj;)I m_257944_ + static + 0 o p_260117_ + 1 o p_259411_ + 2 o p_260137_ + 3 o p_259145_ + a (Lcom/mojang/brigadier/context/CommandContext;)I m_257145_ + static + 0 o p_258238_ + a (Lds;)Z m_138188_ + static + 0 o p_138189_ + b (Lcom/mojang/brigadier/context/CommandContext;)I m_257144_ + static + 0 o p_258237_ + b (I)Lsw; m_287953_ + static + 0 o p_288515_ + c (Lcom/mojang/brigadier/context/CommandContext;)I m_257143_ + static + 0 o p_258236_ + d (Lcom/mojang/brigadier/context/CommandContext;)I m_257142_ + static + 0 o p_258235_ +afn net/minecraft/server/commands/RaidCommand + ()V + a (Lcom/mojang/brigadier/CommandDispatcher;)V m_180468_ + static + 0 o p_180469_ + a (Lds;I)I m_180474_ + static + 0 o p_180475_ + 1 o p_180476_ + a ()Lsw; m_287955_ + static + a (Laig;)Lbzv; m_180466_ + static + 0 o p_180467_ + a (Lds;Lsw;)I m_180477_ + static + 0 o p_180478_ + 1 o p_180479_ + a (Lds;)I m_180472_ + static + 0 o p_180473_ + a (II)Lsw; m_287958_ + static + 0 o p_288518_ + 1 o p_288519_ + a (Lcom/mojang/brigadier/context/CommandContext;)I m_180470_ + static + 0 o p_180471_ + a (Ljava/lang/StringBuilder;)Lsw; m_287957_ + static + 0 o p_288517_ + b (Lcom/mojang/brigadier/context/CommandContext;)I m_180480_ + static + 0 o p_180481_ + b ()Lsw; m_287959_ + static + b (Ljava/lang/StringBuilder;)Lsw; m_287956_ + static + 0 o p_288516_ + b (Lds;I)I m_180484_ + static + 0 o p_180485_ + 1 o p_180486_ + b (Lds;)I m_180482_ + static + 0 o p_180483_ + c (Lcom/mojang/brigadier/context/CommandContext;)I m_180487_ + static + 0 o p_180488_ + c (Lds;)I m_180489_ + static + 0 o p_180490_ + c ()Lsw; m_287954_ + static + d (Lds;)I m_180493_ + static + 0 o p_180494_ + d (Lcom/mojang/brigadier/context/CommandContext;)I m_180491_ + static + 0 o p_180492_ + e (Lds;)Z m_180497_ + static + 0 o p_180498_ + e (Lcom/mojang/brigadier/context/CommandContext;)I m_180495_ + static + 0 o p_180496_ + f (Lcom/mojang/brigadier/context/CommandContext;)I m_180499_ + static + 0 o p_180500_ + g (Lcom/mojang/brigadier/context/CommandContext;)I m_180501_ + static + 0 o p_180502_ +afo net/minecraft/server/commands/RecipeCommand + a f_138197_ + b f_138198_ + ()V + static + ()V + a (Lcom/mojang/brigadier/CommandDispatcher;)V m_138200_ + static + 0 o p_138201_ + a (Lds;)Z m_138204_ + static + 0 o p_138205_ + a (Lds;Ljava/util/Collection;Ljava/util/Collection;)I m_138206_ + static + 0 o p_138207_ + 1 o p_138208_ + 2 o p_138209_ + a (Lcom/mojang/brigadier/context/CommandContext;)I m_138202_ + static + 0 o p_138203_ + a (Ljava/util/Collection;Ljava/util/Collection;)Lsw; m_287963_ + static + 0 o p_288526_ + 1 o p_288527_ + b (Lcom/mojang/brigadier/context/CommandContext;)I m_138210_ + static + 0 o p_138211_ + b (Ljava/util/Collection;Ljava/util/Collection;)Lsw; m_289075_ + static + 0 o p_289293_ + 1 o p_289294_ + b (Lds;Ljava/util/Collection;Ljava/util/Collection;)I m_138212_ + static + 0 o p_138213_ + 1 o p_138214_ + 2 o p_138215_ + c (Lcom/mojang/brigadier/context/CommandContext;)I m_138216_ + static + 0 o p_138217_ + c (Ljava/util/Collection;Ljava/util/Collection;)Lsw; m_287962_ + static + 0 o p_288524_ + 1 o p_288525_ + d (Lcom/mojang/brigadier/context/CommandContext;)I m_138218_ + static + 0 o p_138219_ + d (Ljava/util/Collection;Ljava/util/Collection;)Lsw; m_289076_ + static + 0 o p_289295_ + 1 o p_289296_ +afp net/minecraft/server/commands/ReloadCommand + a f_138220_ + ()V + static + ()V + a (Lcom/mojang/brigadier/CommandDispatcher;)V m_138226_ + static + 0 o p_138227_ + a (Laki;Ldze;Ljava/util/Collection;)Ljava/util/Collection; m_138222_ + static + 0 o p_138223_ + 1 o p_138224_ + 2 o p_138225_ + a (Ljava/util/Collection;Lds;)V m_138235_ + static + 0 o p_138236_ + 1 o p_138237_ + a (Lcom/mojang/brigadier/context/CommandContext;)I m_287964_ + static + 0 o p_288528_ + a ()Lsw; m_287965_ + static + a (Lds;)Z m_138230_ + static + 0 o p_138231_ + a (Lds;Ljava/lang/Throwable;)Ljava/lang/Void; m_138232_ + static + 0 o p_138233_ + 1 o p_138234_ +afq net/minecraft/server/commands/ResetChunksCommand + a f_183662_ + ()V + static + ()V + a (Lcom/mojang/brigadier/CommandDispatcher;)V m_183666_ + static + 0 o p_183667_ + a (Lddx;)V m_183670_ + static + 0 o p_183671_ + a (Lds;)Z m_183682_ + static + 0 o p_183683_ + a (Ldec;Lbcq;Laif;Laid;Ljava/util/List;Lcom/mojang/datafixers/util/Unit;)Ljava/util/concurrent/CompletionStage; m_279885_ + static + 0 o p_280952_ + 1 o p_280953_ + 2 o p_280954_ + 3 o p_280955_ + 4 o p_280956_ + 5 o p_280957_ + a ()Lcom/mojang/datafixers/util/Unit; m_183665_ + static + a (Lds;IZ)I m_183684_ + static + 0 o p_183685_ + 1 o p_183686_ + 2 o p_183687_ + a (Lcom/mojang/brigadier/context/CommandContext;)I m_183668_ + static + 0 o p_183669_ + a (IJ)Lsw; m_287966_ + static + 0 o p_288529_ + 1 o p_288530_ + a (Ldec;Lcom/mojang/datafixers/util/Either;)Lcom/mojang/datafixers/util/Unit; m_183679_ + static + 0 o p_183680_ + 1 o p_183681_ + b (Lcom/mojang/brigadier/context/CommandContext;)I m_183688_ + static + 0 o p_183689_ + b (Lddx;)Ljava/util/concurrent/CompletableFuture; m_183690_ + static + 0 o p_183691_ + c (Lcom/mojang/brigadier/context/CommandContext;)I m_183692_ + static + 0 o p_183693_ +afr net/minecraft/server/commands/ReturnCommand + ()V + a (Lcom/mojang/brigadier/CommandDispatcher;)V m_280209_ + static + 0 o p_282091_ + a (Lds;I)I m_280144_ + static + 0 o p_281858_ + 1 o p_281623_ + a (Lcom/mojang/brigadier/context/CommandContext;)I m_280383_ + static + 0 o p_281464_ + a (Lds;)Z m_280303_ + static + 0 o p_281281_ +afs net/minecraft/server/commands/RideCommand + a f_263780_ + b f_263682_ + c f_263721_ + d f_263778_ + e f_263832_ + f f_268657_ + ()V + static + ()V + a (Lcom/mojang/brigadier/CommandDispatcher;)V m_264607_ + static + 0 o p_265201_ + a (Lbfj;Lbfj;)Lsw; m_287967_ + static + 0 o p_288531_ + 1 o p_288532_ + a (Ljava/lang/Object;)Lcom/mojang/brigadier/Message; m_264235_ + static + 0 o p_265076_ + a (Lds;)Z m_264204_ + static + 0 o p_265326_ + a (Ljava/lang/Object;Ljava/lang/Object;)Lcom/mojang/brigadier/Message; m_264485_ + static + 0 o p_265321_ + 1 o p_265603_ + a (Lds;Lbfj;Lbfj;)I m_264511_ + static + 0 o p_265285_ + 1 o p_265711_ + 2 o p_265339_ + a (Lds;Lbfj;)I m_264225_ + static + 0 o p_265724_ + 1 o p_265678_ + a (Lcom/mojang/brigadier/context/CommandContext;)I m_264241_ + static + 0 o p_265418_ + b (Lcom/mojang/brigadier/context/CommandContext;)I m_264291_ + static + 0 o p_265139_ + b (Lbfj;Lbfj;)Lsw; m_287968_ + static + 0 o p_288533_ + 1 o p_288534_ + b (Ljava/lang/Object;Ljava/lang/Object;)Lcom/mojang/brigadier/Message; m_264633_ + static + 0 o p_265488_ + 1 o p_265072_ + c (Lbfj;Lbfj;)Z m_264259_ + static + 0 o p_265643_ + 1 o p_265501_ +aft net/minecraft/server/commands/SaveAllCommand + a f_138269_ + ()V + static + ()V + a (Lcom/mojang/brigadier/CommandDispatcher;)V m_138271_ + static + 0 o p_138272_ + a (Lds;Z)I m_138277_ + static + 0 o p_138278_ + 1 o p_138279_ + a ()Lsw; m_287970_ + static + a (Lcom/mojang/brigadier/context/CommandContext;)I m_138273_ + static + 0 o p_138274_ + a (Lds;)Z m_138275_ + static + 0 o p_138276_ + b (Lcom/mojang/brigadier/context/CommandContext;)I m_138280_ + static + 0 o p_138281_ + b ()Lsw; m_287969_ + static +afu net/minecraft/server/commands/SaveOffCommand + a f_138282_ + ()V + static + ()V + a (Lcom/mojang/brigadier/CommandDispatcher;)V m_138284_ + static + 0 o p_138285_ + a (Lcom/mojang/brigadier/context/CommandContext;)I m_138286_ + static + 0 o p_138287_ + a ()Lsw; m_287971_ + static + a (Lds;)Z m_138288_ + static + 0 o p_138289_ +afv net/minecraft/server/commands/SaveOnCommand + a f_138290_ + ()V + static + ()V + a (Lcom/mojang/brigadier/CommandDispatcher;)V m_138292_ + static + 0 o p_138293_ + a (Lcom/mojang/brigadier/context/CommandContext;)I m_138294_ + static + 0 o p_138295_ + a ()Lsw; m_287972_ + static + a (Lds;)Z m_138296_ + static + 0 o p_138297_ +afw net/minecraft/server/commands/SayCommand + ()V + a (Lcom/mojang/brigadier/CommandDispatcher;)V m_138409_ + static + 0 o p_138410_ + a (Lcom/mojang/brigadier/context/CommandContext;)I m_244859_ + static + 0 o p_248171_ + a (Lds;)Z m_138413_ + static + 0 o p_138414_ + a (Lcom/mojang/brigadier/context/CommandContext;Ltl;)V m_244858_ + static + 0 o p_248169_ + 1 o p_248170_ +afx net/minecraft/server/commands/ScheduleCommand + a f_138415_ + b f_138416_ + c f_138417_ + ()V + static + ()V + a (ILjava/lang/String;)Lsw; m_287977_ + static + 0 o p_288555_ + 1 o p_288556_ + a (Lcom/mojang/brigadier/CommandDispatcher;)V m_138419_ + static + 0 o p_138420_ + a (Lacq;ZLedv;JLds;ILjava/util/Collection;)V m_287974_ + static + 0 o p_288542_ + 1 o p_288543_ + 2 o p_288544_ + 3 o p_288545_ + 4 o p_288546_ + 5 o p_288547_ + 6 o p_288548_ + a (Lacq;ZLedv;JLds;ILdn;)V m_287973_ + static + 0 o p_288535_ + 1 o p_288536_ + 2 o p_288537_ + 3 o p_288538_ + 4 o p_288539_ + 5 o p_288540_ + 6 o p_288541_ + a (Ljava/lang/Object;)Lcom/mojang/brigadier/Message; m_138436_ + static + 0 o p_138437_ + a (Lds;)Z m_138426_ + static + 0 o p_138427_ + a (Lds;Ljava/lang/String;)I m_138433_ + static + 0 o p_138434_ + 1 o p_138435_ + a (Lcom/mojang/brigadier/context/CommandContext;Lcom/mojang/brigadier/suggestion/SuggestionsBuilder;)Ljava/util/concurrent/CompletableFuture; m_138423_ + static + 0 o p_138424_ + 1 o p_138425_ + a (Lacq;IJ)Lsw; m_287975_ + static + 0 o p_288549_ + 1 o p_288550_ + 2 o p_288551_ + a (Lcom/mojang/brigadier/context/CommandContext;)I m_138421_ + static + 0 o p_138422_ + a (Lds;Lcom/mojang/datafixers/util/Pair;IZ)I m_138428_ + static + 0 o p_138429_ + 1 o p_138430_ + 2 o p_138431_ + 3 o p_138432_ + b (Lcom/mojang/brigadier/context/CommandContext;)I m_138454_ + static + 0 o p_138455_ + b (Lacq;IJ)Lsw; m_287976_ + static + 0 o p_288552_ + 1 o p_288553_ + 2 o p_288554_ + c (Lcom/mojang/brigadier/context/CommandContext;)I m_138456_ + static + 0 o p_138457_ + d (Lcom/mojang/brigadier/context/CommandContext;)I m_138458_ + static + 0 o p_138459_ +afy net/minecraft/server/commands/ScoreboardCommand + a f_138460_ + b f_138461_ + c f_138462_ + d f_138463_ + e f_138464_ + f f_138465_ + ()V + static + ()V + a (ILefd;Ljava/util/Collection;)Lsw; m_287984_ + static + 0 o p_288569_ + 1 o p_288570_ + 2 o p_288571_ + a (Lds;Ljava/lang/String;)I m_138495_ + static + 0 o p_138496_ + 1 o p_138497_ + a (Lefd;Ljava/util/Collection;)Lsw; m_287990_ + static + 0 o p_288579_ + 1 o p_288580_ + a (Lds;ILefd;)I m_138480_ + static + 0 o p_138481_ + 1 o p_138482_ + 2 o p_138483_ + a (Lds;Ljava/lang/String;Lefj;Lsw;)I m_138502_ + static + 0 o p_138503_ + 1 o p_138504_ + 2 o p_138505_ + 3 o p_138506_ + a (Lds;)I m_138475_ + static + 0 o p_138476_ + a (ILefd;Ljava/util/Collection;I)Lsw; m_287991_ + static + 0 o p_288581_ + 1 o p_288582_ + 2 o p_288583_ + 3 o p_288584_ + a (Lds;Lefd;Lsw;)I m_138491_ + static + 0 o p_138492_ + 1 o p_138493_ + 2 o p_138494_ + a (Ljava/lang/String;Leff;Lefd;)Lsw; m_287988_ + static + 0 o p_288575_ + 1 o p_288576_ + 2 o p_288577_ + a (Lds;Ljava/util/Collection;Lefd;)I m_138514_ + static + 0 o p_138515_ + 1 o p_138516_ + 2 o p_138517_ + a (Ljava/util/Map$Entry;)Lsw; m_287995_ + static + 0 o p_288593_ + a (Lds;Lefd;)I m_138484_ + static + 0 o p_138485_ + 1 o p_138486_ + a (Ljava/lang/String;)Lsw; m_287980_ + static + 0 o p_288560_ + a (Lcom/mojang/brigadier/CommandDispatcher;)V m_138468_ + static + 0 o p_138469_ + a (Lefj$a;Lcom/mojang/brigadier/context/CommandContext;)I m_138530_ + static + 0 o p_138531_ + 1 o p_138532_ + a ()Lcom/mojang/brigadier/builder/LiteralArgumentBuilder; m_138467_ + static + a (Ljava/lang/String;Ljava/util/Map;)Lsw; m_287992_ + static + 0 o p_288585_ + 1 o p_288586_ + a (Lds;Ljava/util/Collection;Lefd;Lel$a;Ljava/util/Collection;Lefd;)I m_138523_ + static + 0 o p_138524_ + 1 o p_138525_ + 2 o p_138526_ + 3 o p_138527_ + 4 o p_138528_ + 5 o p_138529_ + a (Ljava/util/Collection;)Lsw; m_288001_ + static + 0 o p_288601_ + a (Lefd;)Lsw; m_288000_ + static + 0 o p_288600_ + a (Lds;I)I m_138477_ + static + 0 o p_138478_ + 1 o p_138479_ + a (Lds;Ljava/util/Collection;)I m_138507_ + static + 0 o p_138508_ + 1 o p_138509_ + a (ILefd;)Lsw; m_288003_ + static + 0 o p_288602_ + 1 o p_288603_ + a (Lcom/mojang/brigadier/context/CommandContext;Lcom/mojang/brigadier/suggestion/SuggestionsBuilder;)Ljava/util/concurrent/CompletableFuture; m_138472_ + static + 0 o p_138473_ + 1 o p_138474_ + a (Lds;Ljava/lang/String;Lefd;)I m_138498_ + static + 0 o p_138499_ + 1 o p_138500_ + 2 o p_138501_ + a (Lefd;Ljava/util/Collection;I)Lsw; m_287994_ + static + 0 o p_288590_ + 1 o p_288591_ + 2 o p_288592_ + a (Lds;Ljava/util/Collection;Lefd;I)I m_138518_ + static + 0 o p_138519_ + 1 o p_138520_ + 2 o p_138521_ + 3 o p_138522_ + a (Ljava/lang/Object;Ljava/lang/Object;)Lcom/mojang/brigadier/Message; m_138533_ + static + 0 o p_138534_ + 1 o p_138535_ + a (Lds;Lefd;Lefj$a;)I m_138487_ + static + 0 o p_138488_ + 1 o p_138489_ + 2 o p_138490_ + a (I)Lsw; m_287986_ + static + 0 o p_288572_ + a (Lcom/mojang/brigadier/context/CommandContext;)I m_138470_ + static + 0 o p_138471_ + a (Lds;Ljava/util/Collection;Lcom/mojang/brigadier/suggestion/SuggestionsBuilder;)Ljava/util/concurrent/CompletableFuture; m_138510_ + static + 0 o p_138511_ + 1 o p_138512_ + 2 o p_138513_ + b (Lcom/mojang/brigadier/context/CommandContext;)I m_138536_ + static + 0 o p_138537_ + b (Lefd;Ljava/util/Collection;)Lsw; m_287996_ + static + 0 o p_288594_ + 1 o p_288595_ + b (Lds;)I m_138538_ + static + 0 o p_138539_ + b (ILefd;Ljava/util/Collection;)Lsw; m_287983_ + static + 0 o p_288566_ + 1 o p_288567_ + 2 o p_288568_ + b ()Lsw; m_288002_ + static + b (Lds;Ljava/util/Collection;Lefd;I)I m_138544_ + static + 0 o p_138545_ + 1 o p_138546_ + 2 o p_138547_ + 3 o p_138548_ + b (Lefd;Ljava/util/Collection;I)Lsw; m_288004_ + static + 0 o p_288604_ + 1 o p_288605_ + 2 o p_288606_ + b (Lds;Ljava/util/Collection;Lefd;)I m_138540_ + static + 0 o p_138541_ + 1 o p_138542_ + 2 o p_138543_ + b (Ljava/util/Collection;)Lsw; m_287989_ + static + 0 o p_288578_ + b (Lefd;)Lsw; m_287998_ + static + 0 o p_288597_ + b (ILefd;Ljava/util/Collection;I)Lsw; m_287982_ + static + 0 o p_288562_ + 1 o p_288563_ + 2 o p_288564_ + 3 o p_288565_ + c (Lds;)Z m_138551_ + static + 0 o p_138552_ + c (Lefd;Ljava/util/Collection;)Lsw; m_287987_ + static + 0 o p_288573_ + 1 o p_288574_ + c (Lcom/mojang/brigadier/context/CommandContext;)I m_138549_ + static + 0 o p_138550_ + c ()Lsw; m_287985_ + static + c (Ljava/util/Collection;)Lsw; m_287997_ + static + 0 o p_288596_ + c (Lds;Ljava/util/Collection;Lefd;I)I m_138553_ + static + 0 o p_138554_ + 1 o p_138555_ + 2 o p_138556_ + 3 o p_138557_ + c (Lefd;Ljava/util/Collection;I)Lsw; m_287993_ + static + 0 o p_288587_ + 1 o p_288588_ + 2 o p_288589_ + c (Lefd;)Lsw; m_287979_ + static + 0 o p_288559_ + d (Lefd;Ljava/util/Collection;)Lsw; m_287978_ + static + 0 o p_288557_ + 1 o p_288558_ + d (Ljava/util/Collection;)Lsw; m_288005_ + static + 0 o p_288607_ + d (Lcom/mojang/brigadier/context/CommandContext;)I m_138558_ + static + 0 o p_138559_ + d (Lefd;)Lsw; m_287981_ + static + 0 o p_288561_ + e (Lefd;Ljava/util/Collection;)Lsw; m_287999_ + static + 0 o p_288598_ + 1 o p_288599_ + e (Lcom/mojang/brigadier/context/CommandContext;)I m_138560_ + static + 0 o p_138561_ + f (Lcom/mojang/brigadier/context/CommandContext;)I m_138562_ + static + 0 o p_138563_ + g (Lcom/mojang/brigadier/context/CommandContext;)I m_138564_ + static + 0 o p_138565_ + h (Lcom/mojang/brigadier/context/CommandContext;)I m_138566_ + static + 0 o p_138567_ + i (Lcom/mojang/brigadier/context/CommandContext;)I m_138568_ + static + 0 o p_138569_ + j (Lcom/mojang/brigadier/context/CommandContext;)I m_138570_ + static + 0 o p_138571_ + k (Lcom/mojang/brigadier/context/CommandContext;)I m_138572_ + static + 0 o p_138573_ + l (Lcom/mojang/brigadier/context/CommandContext;)I m_138574_ + static + 0 o p_138575_ + m (Lcom/mojang/brigadier/context/CommandContext;)I m_138576_ + static + 0 o p_138577_ + n (Lcom/mojang/brigadier/context/CommandContext;)I m_138578_ + static + 0 o p_138579_ + o (Lcom/mojang/brigadier/context/CommandContext;)I m_138580_ + static + 0 o p_138581_ + p (Lcom/mojang/brigadier/context/CommandContext;)I m_138582_ + static + 0 o p_138583_ + q (Lcom/mojang/brigadier/context/CommandContext;)I m_138584_ + static + 0 o p_138585_ +afz net/minecraft/server/commands/SeedCommand + ()V + a (ZLds;)Z m_138594_ + static + 0 o p_138595_ + 1 o p_138596_ + a (Lsw;)Lsw; m_288007_ + static + 0 o p_288609_ + a (Lcom/mojang/brigadier/CommandDispatcher;Z)V m_138589_ + static + 0 o p_138590_ + 1 o p_138591_ + a (Lcom/mojang/brigadier/context/CommandContext;)I m_288006_ + static + 0 o p_288608_ +ag net/minecraft/advancements/AdvancementProgress + a f_8190_ + b f_8191_ + (Ljava/util/Map;)V + 0 o p_144358_ + ()V + a (Ljava/util/Map;[[Ljava/lang/String;)V m_8198_ + 0 o p_8199_ + 1 o p_8200_ + a (Lsf;Lak;)V m_144359_ + static + 0 o p_144360_ + 1 o p_144361_ + a (Ljava/util/Set;Ljava/util/Map$Entry;)Z m_8201_ + static + 0 o p_8202_ + 1 o p_8203_ + a (Lsf;)V m_8204_ + 0 o p_8205_ + a (Lag;)I compareTo + 0 o p_8195_ + a ()Z m_8193_ + a (Ljava/lang/String;)Z m_8196_ + 0 o p_8197_ + b (Ljava/lang/String;)Z m_8209_ + 0 o p_8210_ + b ()Z m_8206_ + b (Lsf;)Lag; m_8211_ + static + 0 o p_8212_ + c ()F m_8213_ + c (Ljava/lang/String;)Lak; m_8214_ + 0 o p_8215_ + compareTo (Ljava/lang/Object;)I compareTo + 0 o p_8217_ + d ()Ljava/lang/String; m_8218_ + e ()Ljava/lang/Iterable; m_8219_ + f ()Ljava/lang/Iterable; m_8220_ + g ()Ljava/util/Date; m_8221_ + h ()I m_8222_ + toString ()Ljava/lang/String; toString +ag$a net/minecraft/advancements/AdvancementProgress$Serializer + ()V + a (Lag;Ljava/lang/reflect/Type;Lcom/google/gson/JsonSerializationContext;)Lcom/google/gson/JsonElement; serialize + 0 o p_8226_ + 1 o p_8227_ + 2 o p_8228_ + a (Lcom/google/gson/JsonElement;Ljava/lang/reflect/Type;Lcom/google/gson/JsonDeserializationContext;)Lag; deserialize + 0 o p_8230_ + 1 o p_8231_ + 2 o p_8232_ + deserialize (Lcom/google/gson/JsonElement;Ljava/lang/reflect/Type;Lcom/google/gson/JsonDeserializationContext;)Ljava/lang/Object; deserialize + 0 o p_8234_ + 1 o p_8235_ + 2 o p_8236_ + serialize (Ljava/lang/Object;Ljava/lang/reflect/Type;Lcom/google/gson/JsonSerializationContext;)Lcom/google/gson/JsonElement; serialize + 0 o p_8238_ + 1 o p_8239_ + 2 o p_8240_ +aga net/minecraft/server/commands/SetBlockCommand + a f_138597_ + ()V + static + ()V + a (Lgu;)Lsw; m_288008_ + static + 0 o p_288610_ + a (Lds;Lgu;Lfd;Laga$b;Ljava/util/function/Predicate;)I m_138607_ + static + 0 o p_138608_ + 1 o p_138609_ + 2 o p_138610_ + 3 o p_138611_ + 4 o p_138612_ + a (Ldcf;)Z m_180516_ + static + 0 o p_180517_ + a (Lcom/mojang/brigadier/context/CommandContext;)I m_138603_ + static + 0 o p_138604_ + a (Lds;)Z m_138605_ + static + 0 o p_138606_ + a (Lcom/mojang/brigadier/CommandDispatcher;Ldm;)V m_214730_ + static + 0 o p_214731_ + 1 o p_214732_ + b (Lcom/mojang/brigadier/context/CommandContext;)I m_138613_ + static + 0 o p_138614_ + c (Lcom/mojang/brigadier/context/CommandContext;)I m_138615_ + static + 0 o p_138616_ + d (Lcom/mojang/brigadier/context/CommandContext;)I m_138617_ + static + 0 o p_138618_ +aga$a net/minecraft/server/commands/SetBlockCommand$Filter + filter (Ldrs;Lgu;Lfd;Laif;)Lfd; m_138619_ + 0 o p_138620_ + 1 o p_138621_ + 2 o p_138622_ + 3 o p_138623_ +aga$b net/minecraft/server/commands/SetBlockCommand$Mode + a REPLACE + b DESTROY + c $VALUES + ()V + static + (Ljava/lang/String;I)V + 0 o p_138629_ + 1 o p_138630_ + a ()[Laga$b; m_180518_ + static + valueOf (Ljava/lang/String;)Laga$b; valueOf + static + 0 o p_138632_ + values ()[Laga$b; values + static +agb net/minecraft/server/commands/SetPlayerIdleTimeoutCommand + ()V + a (I)Lsw; m_288009_ + static + 0 o p_288611_ + a (Lcom/mojang/brigadier/CommandDispatcher;)V m_138634_ + static + 0 o p_138635_ + a (Lds;I)I m_138640_ + static + 0 o p_138641_ + 1 o p_138642_ + a (Lcom/mojang/brigadier/context/CommandContext;)I m_138636_ + static + 0 o p_138637_ + a (Lds;)Z m_138638_ + static + 0 o p_138639_ +agc net/minecraft/server/commands/SetSpawnCommand + ()V + a (Lds;Ljava/util/Collection;Lgu;F)I m_138649_ + static + 0 o p_138650_ + 1 o p_138651_ + 2 o p_138652_ + 3 o p_138653_ + a (Lcom/mojang/brigadier/CommandDispatcher;)V m_138643_ + static + 0 o p_138644_ + a (Lcom/mojang/brigadier/context/CommandContext;)I m_138645_ + static + 0 o p_138646_ + a (Lds;)Z m_138647_ + static + 0 o p_138648_ + a (Lgu;FLjava/lang/String;Ljava/util/Collection;)Lsw; m_288010_ + static + 0 o p_288612_ + 1 o p_288613_ + 2 o p_288614_ + 3 o p_288615_ + b (Lgu;FLjava/lang/String;Ljava/util/Collection;)Lsw; m_288011_ + static + 0 o p_288616_ + 1 o p_288617_ + 2 o p_288618_ + 3 o p_288619_ + b (Lcom/mojang/brigadier/context/CommandContext;)I m_138654_ + static + 0 o p_138655_ + c (Lcom/mojang/brigadier/context/CommandContext;)I m_274104_ + static + 0 o p_274829_ + d (Lcom/mojang/brigadier/context/CommandContext;)I m_274103_ + static + 0 o p_274828_ +agd net/minecraft/server/commands/SetWorldSpawnCommand + ()V + a (Lgu;F)Lsw; m_288012_ + static + 0 o p_288620_ + 1 o p_288621_ + a (Lcom/mojang/brigadier/CommandDispatcher;)V m_138660_ + static + 0 o p_138661_ + a (Lds;Lgu;F)I m_138666_ + static + 0 o p_138667_ + 1 o p_138668_ + 2 o p_138669_ + a (Lcom/mojang/brigadier/context/CommandContext;)I m_138662_ + static + 0 o p_138663_ + a (Lds;)Z m_138664_ + static + 0 o p_138665_ + b (Lcom/mojang/brigadier/context/CommandContext;)I m_138670_ + static + 0 o p_138671_ + c (Lcom/mojang/brigadier/context/CommandContext;)I m_274105_ + static + 0 o p_274830_ +age net/minecraft/server/commands/SpawnArmorTrimsCommand + a f_265845_ + b f_266107_ + c f_266057_ + d f_266001_ + e f_266100_ + ()V + static + ()V + a (Lcom/mojang/brigadier/CommandDispatcher;)V m_266283_ + static + 0 o p_266758_ + a (Lhr;Lhn;Lhr;Lcie;)V m_266467_ + static + 0 o p_267195_ + 1 o p_266819_ + 2 o p_266685_ + 3 o p_266759_ + a (Lhr;Lcie;)Ljava/lang/Integer; m_266582_ + static + 0 o p_267215_ + 1 o p_266941_ + a (Lds;Lbyo;)I m_266585_ + static + 0 o p_266993_ + 1 o p_266983_ + a (Lhn;Lhr;Lhr;Lcie;Lcic;)V m_266431_ + static + 0 o p_267122_ + 1 o p_267258_ + 2 o p_266764_ + 3 o p_266777_ + 4 o p_267162_ + a ()Lsw; m_288013_ + static + a (Lhr;Lcic;)Ljava/lang/Integer; m_266547_ + static + 0 o p_266885_ + 1 o p_267239_ + a (Lcom/mojang/brigadier/context/CommandContext;)I m_266184_ + static + 0 o p_267005_ + a (Lds;)Z m_276726_ + static + 0 o p_277270_ + a (Ljava/util/HashMap;)V m_266243_ + static + 0 o p_266706_ +agf net/minecraft/server/commands/SpectateCommand + a f_138674_ + b f_138675_ + ()V + static + ()V + a (Lcom/mojang/brigadier/CommandDispatcher;)V m_138677_ + static + 0 o p_138678_ + a (Lbfj;)Lsw; m_288014_ + static + 0 o p_288622_ + a (Ljava/lang/Object;)Lcom/mojang/brigadier/Message; m_138687_ + static + 0 o p_138688_ + a (Lds;Lbfj;Laig;)I m_138683_ + static + 0 o p_138684_ + 1 o p_138685_ + 2 o p_138686_ + a ()Lsw; m_288015_ + static + a (Lcom/mojang/brigadier/context/CommandContext;)I m_138679_ + static + 0 o p_138680_ + a (Lds;)Z m_138681_ + static + 0 o p_138682_ + b (Lcom/mojang/brigadier/context/CommandContext;)I m_138689_ + static + 0 o p_138690_ + c (Lcom/mojang/brigadier/context/CommandContext;)I m_138691_ + static + 0 o p_138692_ +agg net/minecraft/server/commands/SpreadPlayersCommand + a f_180523_ + b f_138693_ + c f_138694_ + d f_201848_ + ()V + static + ()V + a (Ljava/util/Collection;)I m_138727_ + static + 0 o p_138728_ + a (Lapf;IDDDD)[Lagg$a; m_214733_ + static + 0 o p_214734_ + 1 o p_214735_ + 2 o p_214736_ + 3 o p_214737_ + 4 o p_214738_ + 5 o p_214739_ + a (Lcom/mojang/brigadier/CommandDispatcher;)V m_138696_ + static + 0 o p_138697_ + a (Z[Lagg$a;Leeh;D)Lsw; m_288016_ + static + 0 o p_288623_ + 1 o p_288624_ + 2 o p_288625_ + 3 o p_288626_ + a (Lds;)Z m_201851_ + static + 0 o p_201852_ + a (Lds;Leeh;FFIZLjava/util/Collection;)I m_138702_ + static + 0 o p_138703_ + 1 o p_138704_ + 2 o p_138705_ + 3 o p_138706_ + 4 o p_138707_ + 5 o p_138708_ + 6 o p_138709_ + a (Ljava/lang/Object;Ljava/lang/Object;)Lcom/mojang/brigadier/Message; m_201853_ + static + 0 o p_201854_ + 1 o p_201855_ + a (Leeh;DLaif;Lapf;DDDDI[Lagg$a;Z)V m_214740_ + static + 0 o p_214741_ + 1 o p_214742_ + 2 o p_214743_ + 3 o p_214744_ + 4 o p_214745_ + 5 o p_214746_ + 6 o p_214747_ + 7 o p_214748_ + 8 o p_214749_ + 9 o p_214750_ + 10 o p_214751_ + a (Ljava/util/Collection;Laif;[Lagg$a;IZ)D m_138729_ + static + 0 o p_138730_ + 1 o p_138731_ + 2 o p_138732_ + 3 o p_138733_ + 4 o p_138734_ + a (Lcom/mojang/brigadier/context/CommandContext;)I m_201849_ + static + 0 o p_201850_ + a (Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;)Lcom/mojang/brigadier/Message; m_138722_ + static + 0 o p_138723_ + 1 o p_138724_ + 2 o p_138725_ + 3 o p_138726_ + b (Lcom/mojang/brigadier/context/CommandContext;)I m_288017_ + static + 0 o p_288627_ + b (Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;)Lcom/mojang/brigadier/Message; m_138744_ + static + 0 o p_138745_ + 1 o p_138746_ + 2 o p_138747_ + 3 o p_138748_ +agg$a net/minecraft/server/commands/SpreadPlayersCommand$Position + a f_138749_ + b f_138750_ + ()V + a (Lcls;I)I m_138758_ + 0 o p_138759_ + 1 o p_138760_ + a (Lapf;DDDD)V m_214752_ + 0 o p_214753_ + 1 o p_214754_ + 2 o p_214755_ + 3 o p_214756_ + 4 o p_214757_ + a ()V m_138752_ + a (DDDD)Z m_138753_ + 0 o p_138754_ + 1 o p_138755_ + 2 o p_138756_ + 3 o p_138757_ + a (Lagg$a;)D m_138767_ + 0 o p_138768_ + b (Lagg$a;)V m_138776_ + 0 o p_138777_ + b ()D m_180525_ + b (Lcls;I)Z m_138773_ + 0 o p_138774_ + 1 o p_138775_ +agh net/minecraft/server/commands/StopCommand + ()V + a (Lcom/mojang/brigadier/CommandDispatcher;)V m_138785_ + static + 0 o p_138786_ + a (Lcom/mojang/brigadier/context/CommandContext;)I m_288019_ + static + 0 o p_288628_ + a ()Lsw; m_288018_ + static + a (Lds;)Z m_138789_ + static + 0 o p_138790_ +agi net/minecraft/server/commands/StopSoundCommand + ()V + a (Lami;Lcom/mojang/brigadier/context/CommandContext;)I m_138791_ + static + 0 o p_138792_ + 1 o p_138793_ + a (Lcom/mojang/brigadier/CommandDispatcher;)V m_138794_ + static + 0 o p_138795_ + a (Lacq;Lami;)Lsw; m_288022_ + static + 0 o p_288630_ + 1 o p_288631_ + a (Lami;)Lsw; m_288023_ + static + 0 o p_288632_ + a ()Lsw; m_288021_ + static + a (Lds;)Z m_138798_ + static + 0 o p_138799_ + a (Lcom/mojang/brigadier/context/CommandContext;)I m_138796_ + static + 0 o p_138797_ + a (Lds;Ljava/util/Collection;Lami;Lacq;)I m_138800_ + static + 0 o p_138801_ + 1 o p_138802_ + 2 o p_138803_ + 3 o p_138804_ + a (Lacq;)Lsw; m_288020_ + static + 0 o p_288629_ + b (Lcom/mojang/brigadier/context/CommandContext;)I m_138808_ + static + 0 o p_138809_ + b (Lami;Lcom/mojang/brigadier/context/CommandContext;)I m_138805_ + static + 0 o p_138806_ + 1 o p_138807_ +agj net/minecraft/server/commands/SummonCommand + a f_138810_ + b f_138811_ + c f_138812_ + ()V + static + ()V + a (Leei;Lbfj;)Lbfj; m_138826_ + static + 0 o p_138827_ + 1 o p_138828_ + a (Lbfj;)Lsw; m_288024_ + static + 0 o p_288633_ + a (Lcom/mojang/brigadier/context/CommandContext;)I m_244862_ + static + 0 o p_248174_ + a (Lds;)Z m_138818_ + static + 0 o p_138819_ + a (Lds;Lhe$c;Leei;Lqr;Z)Lbfj; m_269066_ + static + 0 o p_270582_ + 1 o p_270277_ + 2 o p_270366_ + 3 o p_270197_ + 4 o p_270947_ + a (Lcom/mojang/brigadier/CommandDispatcher;Ldm;)V m_246670_ + static + 0 o p_250343_ + 1 o p_250122_ + b (Lcom/mojang/brigadier/context/CommandContext;)I m_244861_ + static + 0 o p_248173_ + b (Lds;Lhe$c;Leei;Lqr;Z)I m_245828_ + static + 0 o p_249752_ + 1 o p_251948_ + 2 o p_251429_ + 3 o p_250568_ + 4 o p_250229_ + c (Lcom/mojang/brigadier/context/CommandContext;)I m_244863_ + static + 0 o p_248175_ +agk net/minecraft/server/commands/TagCommand + a f_138833_ + b f_138834_ + ()V + static + ()V + a (Lcom/mojang/brigadier/CommandDispatcher;)V m_138836_ + static + 0 o p_138837_ + a (Ljava/lang/String;Ljava/util/Collection;)Lsw; m_288030_ + static + 0 o p_288643_ + 1 o p_288644_ + a (Lds;)Z m_138843_ + static + 0 o p_138844_ + a (Ljava/util/Collection;)Ljava/util/Collection; m_138852_ + static + 0 o p_138853_ + a (Lds;Ljava/util/Collection;)I m_138845_ + static + 0 o p_138846_ + 1 o p_138847_ + a (Lds;Ljava/util/Collection;Ljava/lang/String;)I m_138848_ + static + 0 o p_138849_ + 1 o p_138850_ + 2 o p_138851_ + a (Lbfj;)Lsw; m_288031_ + static + 0 o p_288645_ + a (Lcom/mojang/brigadier/context/CommandContext;Lcom/mojang/brigadier/suggestion/SuggestionsBuilder;)Ljava/util/concurrent/CompletableFuture; m_138840_ + static + 0 o p_138841_ + 1 o p_138842_ + a (Ljava/util/Collection;Ljava/util/Set;)Lsw; m_288026_ + static + 0 o p_288636_ + 1 o p_288637_ + a (Lcom/mojang/brigadier/context/CommandContext;)I m_138838_ + static + 0 o p_138839_ + a (Lbfj;Ljava/util/Set;)Lsw; m_288027_ + static + 0 o p_288638_ + 1 o p_288639_ + b (Lcom/mojang/brigadier/context/CommandContext;)I m_138854_ + static + 0 o p_138855_ + b (Lds;Ljava/util/Collection;Ljava/lang/String;)I m_138856_ + static + 0 o p_138857_ + 1 o p_138858_ + 2 o p_138859_ + b (Ljava/lang/String;Ljava/util/Collection;)Lsw; m_288032_ + static + 0 o p_288646_ + 1 o p_288647_ + b (Ljava/util/Collection;)Lsw; m_288029_ + static + 0 o p_288642_ + c (Lcom/mojang/brigadier/context/CommandContext;)I m_138860_ + static + 0 o p_138861_ + c (Ljava/lang/String;Ljava/util/Collection;)Lsw; m_288028_ + static + 0 o p_288640_ + 1 o p_288641_ + d (Ljava/lang/String;Ljava/util/Collection;)Lsw; m_288025_ + static + 0 o p_288634_ + 1 o p_288635_ +agl net/minecraft/server/commands/TeamCommand + a f_138862_ + b f_138864_ + c f_138865_ + d f_138866_ + e f_138867_ + f f_138868_ + g f_138869_ + h f_138870_ + i f_138871_ + j f_138872_ + k f_138873_ + ()V + static + ()V + A (Lcom/mojang/brigadier/context/CommandContext;)I m_183710_ + static + 0 o p_183711_ + a (Lds;Lefe;Lefi$a;)I m_138886_ + static + 0 o p_138887_ + 1 o p_138888_ + 2 o p_138889_ + a (Lds;Lefe;)I m_138883_ + static + 0 o p_138884_ + 1 o p_138885_ + a (Lds;Ljava/lang/String;)I m_138910_ + static + 0 o p_138911_ + 1 o p_138912_ + a (Ljava/util/Collection;Lefe;)Lsw; m_288045_ + static + 0 o p_288664_ + 1 o p_288665_ + a (Lds;)I m_138881_ + static + 0 o p_138882_ + a (Lefe;Ln;)Lsw; m_288046_ + static + 0 o p_288666_ + 1 o p_288667_ + a (Lds;Lefe;Lefi$b;)I m_138890_ + static + 0 o p_138891_ + 1 o p_138892_ + 2 o p_138893_ + a (Lcom/mojang/brigadier/CommandDispatcher;)V m_138877_ + static + 0 o p_138878_ + a (Lsw;)Lsw; m_288044_ + static + 0 o p_288663_ + a (Lefe;Lefi$a;)Lsw; m_288038_ + static + 0 o p_288655_ + 1 o p_288656_ + a (ZLefe;)Lsw; m_288051_ + static + 0 o p_288673_ + 1 o p_288674_ + a (Ljava/util/Collection;)Lsw; m_288036_ + static + 0 o p_288653_ + a (Lds;Ljava/lang/String;Lsw;)I m_138913_ + static + 0 o p_138914_ + 1 o p_138915_ + 2 o p_138916_ + a ()Lsw; m_288049_ + static + a (Lds;Ljava/util/Collection;)I m_138917_ + static + 0 o p_138918_ + 1 o p_138919_ + a (Lefe;Ljava/util/Collection;)Lsw; m_288033_ + static + 0 o p_288648_ + 1 o p_288649_ + a (Lefe;)Lsw; m_288040_ + static + 0 o p_288658_ + a (Lds;Lefe;Ljava/util/Collection;)I m_138894_ + static + 0 o p_138895_ + 1 o p_138896_ + 2 o p_138897_ + a (Lds;Lefe;Lsw;)I m_138902_ + static + 0 o p_138903_ + 1 o p_138904_ + 2 o p_138905_ + a (Lefe;Lefi$b;)Lsw; m_288052_ + static + 0 o p_288675_ + 1 o p_288676_ + a (Lcom/mojang/brigadier/context/CommandContext;)I m_138922_ + static + 0 o p_138923_ + a (Lds;Lefe;Ln;)I m_138898_ + static + 0 o p_138899_ + 1 o p_138900_ + 2 o p_138901_ + a (Lds;Lefe;Z)I m_138906_ + static + 0 o p_138907_ + 1 o p_138908_ + 2 o p_138909_ + b (Lcom/mojang/brigadier/context/CommandContext;)I m_138941_ + static + 0 o p_138942_ + b (Lds;)Z m_183712_ + static + 0 o p_183713_ + b (Ljava/util/Collection;Lefe;)Lsw; m_288043_ + static + 0 o p_288661_ + 1 o p_288662_ + b (Lds;Lefe;Lefi$b;)I m_138929_ + static + 0 o p_138930_ + 1 o p_138931_ + 2 o p_138932_ + b (ZLefe;)Lsw; m_288050_ + static + 0 o p_288671_ + 1 o p_288672_ + b (Lds;Lefe;)I m_138926_ + static + 0 o p_138927_ + 1 o p_138928_ + b (Lds;Lefe;Lsw;)I m_138933_ + static + 0 o p_138934_ + 1 o p_138935_ + 2 o p_138936_ + b (Lds;Lefe;Z)I m_138937_ + static + 0 o p_138938_ + 1 o p_138939_ + 2 o p_138940_ + b (Lsw;)Lsw; m_288037_ + static + 0 o p_288654_ + b (Lefe;Lefi$b;)Lsw; m_288034_ + static + 0 o p_288650_ + 1 o p_288651_ + b (Lefe;)Lsw; m_288035_ + static + 0 o p_288652_ + b (Ljava/util/Collection;)Lsw; m_288047_ + static + 0 o p_288668_ + c (Lcom/mojang/brigadier/context/CommandContext;)I m_138950_ + static + 0 o p_138951_ + c (Lefe;)Lsw; m_288041_ + static + 0 o p_288659_ + c (Ljava/util/Collection;Lefe;)Lsw; m_288048_ + static + 0 o p_288669_ + 1 o p_288670_ + c (Ljava/util/Collection;)Lsw; m_288042_ + static + 0 o p_288660_ + c (Lds;Lefe;Lsw;)I m_138946_ + static + 0 o p_138947_ + 1 o p_138948_ + 2 o p_138949_ + c (Lds;Lefe;)I m_138943_ + static + 0 o p_138944_ + 1 o p_138945_ + d (Lcom/mojang/brigadier/context/CommandContext;)I m_138952_ + static + 0 o p_138953_ + d (Lefe;)Lsw; m_288039_ + static + 0 o p_288657_ + e (Lcom/mojang/brigadier/context/CommandContext;)I m_138954_ + static + 0 o p_138955_ + f (Lcom/mojang/brigadier/context/CommandContext;)I m_138956_ + static + 0 o p_138957_ + g (Lcom/mojang/brigadier/context/CommandContext;)I m_138958_ + static + 0 o p_138959_ + h (Lcom/mojang/brigadier/context/CommandContext;)I m_138960_ + static + 0 o p_138961_ + i (Lcom/mojang/brigadier/context/CommandContext;)I m_138962_ + static + 0 o p_138963_ + j (Lcom/mojang/brigadier/context/CommandContext;)I m_138964_ + static + 0 o p_138965_ + k (Lcom/mojang/brigadier/context/CommandContext;)I m_138966_ + static + 0 o p_138967_ + l (Lcom/mojang/brigadier/context/CommandContext;)I m_138968_ + static + 0 o p_138969_ + m (Lcom/mojang/brigadier/context/CommandContext;)I m_138970_ + static + 0 o p_138971_ + n (Lcom/mojang/brigadier/context/CommandContext;)I m_138972_ + static + 0 o p_138973_ + o (Lcom/mojang/brigadier/context/CommandContext;)I m_138974_ + static + 0 o p_138975_ + p (Lcom/mojang/brigadier/context/CommandContext;)I m_138976_ + static + 0 o p_138977_ + q (Lcom/mojang/brigadier/context/CommandContext;)I m_138978_ + static + 0 o p_138979_ + r (Lcom/mojang/brigadier/context/CommandContext;)I m_138980_ + static + 0 o p_138981_ + s (Lcom/mojang/brigadier/context/CommandContext;)I m_138982_ + static + 0 o p_138983_ + t (Lcom/mojang/brigadier/context/CommandContext;)I m_138984_ + static + 0 o p_138985_ + u (Lcom/mojang/brigadier/context/CommandContext;)I m_138986_ + static + 0 o p_138987_ + v (Lcom/mojang/brigadier/context/CommandContext;)I m_138988_ + static + 0 o p_138989_ + w (Lcom/mojang/brigadier/context/CommandContext;)I m_138990_ + static + 0 o p_138991_ + x (Lcom/mojang/brigadier/context/CommandContext;)I m_138992_ + static + 0 o p_138993_ + y (Lcom/mojang/brigadier/context/CommandContext;)I m_138994_ + static + 0 o p_138995_ + z (Lcom/mojang/brigadier/context/CommandContext;)I m_138875_ + static + 0 o p_138876_ +agm net/minecraft/server/commands/TeamMsgCommand + a f_138996_ + b f_138997_ + ()V + static + ()V + a (Lcom/mojang/brigadier/CommandDispatcher;)V m_138999_ + static + 0 o p_139000_ + a (Lds;Lbfj;Lefe;Ljava/util/List;Ltl;)V m_246910_ + static + 0 o p_248778_ + 1 o p_248891_ + 2 o p_250504_ + 3 o p_249706_ + 4 o p_249707_ + a (Lcom/mojang/brigadier/context/CommandContext;)I m_244866_ + static + 0 o p_248184_ + a (Lbfj;Lefe;Laig;)Z m_288053_ + static + 0 o p_288677_ + 1 o p_288678_ + 2 o p_288679_ + b (Lds;Lbfj;Lefe;Ljava/util/List;Ltl;)V m_244864_ + static + 0 o p_248176_ + 1 o p_248177_ + 2 o p_248178_ + 3 o p_248179_ + 4 o p_248180_ +agn net/minecraft/server/commands/TeleportCommand + a f_139006_ + ()V + static + ()V + a (Ljava/util/Collection;Lbfj;)Lsw; m_288054_ + static + 0 o p_288680_ + 1 o p_288681_ + a (D)Ljava/lang/String; m_142775_ + static + 0 o p_142776_ + a (Lcom/mojang/brigadier/CommandDispatcher;)V m_139008_ + static + 0 o p_139009_ + a (Lds;Lbfj;Laif;DDDLjava/util/Set;FFLagn$a;)V m_139014_ + static + 0 o p_139015_ + 1 o p_139016_ + 2 o p_139017_ + 3 o p_139018_ + 4 o p_139019_ + 5 o p_139020_ + 6 o p_139021_ + 7 o p_139022_ + 8 o p_139023_ + 9 o p_139024_ + a (Lds;Ljava/util/Collection;Laif;Lfk;Lfk;Lagn$a;)I m_139025_ + static + 0 o p_139026_ + 1 o p_139027_ + 2 o p_139028_ + 3 o p_139029_ + 4 o p_139030_ + 5 o p_139031_ + a (Lds;)Z m_139012_ + static + 0 o p_139013_ + a (Lcom/mojang/brigadier/context/CommandContext;)I m_139010_ + static + 0 o p_139011_ + a (Lds;Ljava/util/Collection;Lbfj;)I m_139032_ + static + 0 o p_139033_ + 1 o p_139034_ + 2 o p_139035_ + a (Ljava/util/Collection;Leei;)Lsw; m_288056_ + static + 0 o p_288684_ + 1 o p_288685_ + b (Ljava/util/Collection;Lbfj;)Lsw; m_288055_ + static + 0 o p_288682_ + 1 o p_288683_ + b (Lcom/mojang/brigadier/context/CommandContext;)I m_139036_ + static + 0 o p_139037_ + b (Lds;)Z m_139038_ + static + 0 o p_139039_ + b (Ljava/util/Collection;Leei;)Lsw; m_288057_ + static + 0 o p_288686_ + 1 o p_288687_ + c (Lcom/mojang/brigadier/context/CommandContext;)I m_139040_ + static + 0 o p_139041_ + d (Lcom/mojang/brigadier/context/CommandContext;)I m_139042_ + static + 0 o p_139043_ + e (Lcom/mojang/brigadier/context/CommandContext;)I m_139044_ + static + 0 o p_139045_ + f (Lcom/mojang/brigadier/context/CommandContext;)I m_139046_ + static + 0 o p_139047_ + g (Lcom/mojang/brigadier/context/CommandContext;)I m_139048_ + static + 0 o p_139049_ + h (Lcom/mojang/brigadier/context/CommandContext;)I m_139050_ + static + 0 o p_139051_ +agn$a net/minecraft/server/commands/TeleportCommand$LookAt + a f_139052_ + b f_139053_ + c f_139054_ + (Leei;)V + 0 o p_139059_ + (Lbfj;Leb$a;)V + 0 o p_139056_ + 1 o p_139057_ + a (Lds;Lbfj;)V m_139060_ + 0 o p_139061_ + 1 o p_139062_ +ago net/minecraft/server/commands/TellRawCommand + ()V + a (Lcom/mojang/brigadier/CommandDispatcher;)V m_139063_ + static + 0 o p_139064_ + a (Lcom/mojang/brigadier/context/CommandContext;)I m_240394_ + static + 0 o p_139066_ + a (Lds;)Z m_139067_ + static + 0 o p_139068_ +agp net/minecraft/server/commands/TimeCommand + ()V + a (Lcom/mojang/brigadier/CommandDispatcher;)V m_139071_ + static + 0 o p_139072_ + a (Lds;I)I m_139077_ + static + 0 o p_139078_ + 1 o p_139079_ + a (Lds;)Z m_139075_ + static + 0 o p_139076_ + a (Laif;)I m_139069_ + static + 0 o p_139070_ + a (I)Lsw; m_288060_ + static + 0 o p_288690_ + a (Lcom/mojang/brigadier/context/CommandContext;)I m_288059_ + static + 0 o p_288689_ + b (Lcom/mojang/brigadier/context/CommandContext;)I m_288061_ + static + 0 o p_288691_ + b (Lds;I)I m_139082_ + static + 0 o p_139083_ + 1 o p_139084_ + b (I)Lsw; m_288062_ + static + 0 o p_288692_ + c (Lcom/mojang/brigadier/context/CommandContext;)I m_139085_ + static + 0 o p_139086_ + c (Lds;I)I m_139087_ + static + 0 o p_139088_ + 1 o p_139089_ + c (I)Lsw; m_288058_ + static + 0 o p_288688_ + d (Lcom/mojang/brigadier/context/CommandContext;)I m_139090_ + static + 0 o p_139091_ + e (Lcom/mojang/brigadier/context/CommandContext;)I m_139092_ + static + 0 o p_139093_ + f (Lcom/mojang/brigadier/context/CommandContext;)I m_139094_ + static + 0 o p_139095_ + g (Lcom/mojang/brigadier/context/CommandContext;)I m_139096_ + static + 0 o p_139097_ + h (Lcom/mojang/brigadier/context/CommandContext;)I m_139098_ + static + 0 o p_139099_ + i (Lcom/mojang/brigadier/context/CommandContext;)I m_139100_ + static + 0 o p_139101_ +agq net/minecraft/server/commands/TitleCommand + ()V + a (Lcom/mojang/brigadier/CommandDispatcher;)V m_139102_ + static + 0 o p_139103_ + a (Lds;Ljava/util/Collection;III)I m_139111_ + static + 0 o p_139112_ + 1 o p_139113_ + 2 o p_139114_ + 3 o p_139115_ + 4 o p_139116_ + a (Ljava/lang/String;Ljava/util/Collection;)Lsw; m_288070_ + static + 0 o p_288701_ + 1 o p_288702_ + a (Lds;)Z m_139106_ + static + 0 o p_139107_ + a (Lds;Ljava/util/Collection;)I m_139108_ + static + 0 o p_139109_ + 1 o p_139110_ + a (Lcom/mojang/brigadier/context/CommandContext;)I m_139104_ + static + 0 o p_139105_ + a (Lds;Ljava/util/Collection;Lsw;Ljava/lang/String;Ljava/util/function/Function;)I m_142780_ + static + 0 o p_142781_ + 1 o p_142782_ + 2 o p_142783_ + 3 o p_142784_ + 4 o p_142785_ + a (Ljava/util/Collection;)Lsw; m_288063_ + static + 0 o p_288693_ + b (Lcom/mojang/brigadier/context/CommandContext;)I m_139122_ + static + 0 o p_139123_ + b (Ljava/lang/String;Ljava/util/Collection;)Lsw; m_289077_ + static + 0 o p_289297_ + 1 o p_289298_ + b (Ljava/util/Collection;)Lsw; m_289079_ + static + 0 o p_289300_ + b (Lds;Ljava/util/Collection;)I m_139124_ + static + 0 o p_139125_ + 1 o p_139126_ + c (Ljava/util/Collection;)Lsw; m_288068_ + static + 0 o p_288699_ + c (Lcom/mojang/brigadier/context/CommandContext;)I m_139127_ + static + 0 o p_139128_ + d (Ljava/util/Collection;)Lsw; m_289080_ + static + 0 o p_289301_ + d (Lcom/mojang/brigadier/context/CommandContext;)I m_139129_ + static + 0 o p_139130_ + e (Lcom/mojang/brigadier/context/CommandContext;)I m_139131_ + static + 0 o p_139132_ + e (Ljava/util/Collection;)Lsw; m_288069_ + static + 0 o p_288700_ + f (Lcom/mojang/brigadier/context/CommandContext;)I m_139133_ + static + 0 o p_139134_ + f (Ljava/util/Collection;)Lsw; m_289078_ + static + 0 o p_289299_ +agr net/minecraft/server/commands/TriggerCommand + a f_139135_ + b f_139136_ + ()V + static + ()V + a (Lds;Leff;I)I m_139154_ + static + 0 o p_139155_ + 1 o p_139156_ + 2 o p_139157_ + a (Lcom/mojang/brigadier/CommandDispatcher;)V m_139141_ + static + 0 o p_139142_ + a (Lds;Leff;)I m_139151_ + static + 0 o p_139152_ + 1 o p_139153_ + a (Leff;I)Lsw; m_288071_ + static + 0 o p_288703_ + 1 o p_288704_ + a (Lds;Lcom/mojang/brigadier/suggestion/SuggestionsBuilder;)Ljava/util/concurrent/CompletableFuture; m_139148_ + static + 0 o p_139149_ + 1 o p_139150_ + a (Lcom/mojang/brigadier/context/CommandContext;Lcom/mojang/brigadier/suggestion/SuggestionsBuilder;)Ljava/util/concurrent/CompletableFuture; m_139145_ + static + 0 o p_139146_ + 1 o p_139147_ + a (Leff;)Lsw; m_288072_ + static + 0 o p_288705_ + a (Lcom/mojang/brigadier/context/CommandContext;)I m_139143_ + static + 0 o p_139144_ + a (Laig;Lefd;)Leff; m_139138_ + static + 0 o p_139139_ + 1 o p_139140_ + b (Lcom/mojang/brigadier/context/CommandContext;)I m_139158_ + static + 0 o p_139159_ + b (Lds;Leff;I)I m_139160_ + static + 0 o p_139161_ + 1 o p_139162_ + 2 o p_139163_ + b (Leff;I)Lsw; m_288073_ + static + 0 o p_288706_ + 1 o p_288707_ + c (Lcom/mojang/brigadier/context/CommandContext;)I m_139164_ + static + 0 o p_139165_ +ags net/minecraft/server/commands/WardenSpawnTrackerCommand + ()V + a (ILbxu;)V m_244869_ + static + 0 o p_248187_ + 1 o p_248188_ + a (Lcom/mojang/brigadier/CommandDispatcher;)V m_214773_ + static + 0 o p_214774_ + a (Lcom/mojang/brigadier/context/CommandContext;)I m_214775_ + static + 0 o p_214776_ + a (Lds;)Z m_214777_ + static + 0 o p_214778_ + a (Ljava/util/Collection;)Lsw; m_288077_ + static + 0 o p_288711_ + a (Lds;Ljava/util/Collection;I)I m_214782_ + static + 0 o p_214783_ + 1 o p_214784_ + 2 o p_214785_ + a (Lds;Ljava/util/Collection;)I m_214779_ + static + 0 o p_214780_ + 1 o p_214781_ + b (Lcom/mojang/brigadier/context/CommandContext;)I m_214786_ + static + 0 o p_214787_ + b (Ljava/util/Collection;)Lsw; m_288076_ + static + 0 o p_288710_ + c (Ljava/util/Collection;)Lsw; m_288074_ + static + 0 o p_288708_ + d (Ljava/util/Collection;)Lsw; m_288075_ + static + 0 o p_288709_ +agt net/minecraft/server/commands/WeatherCommand + a f_142787_ + ()V + a (Lcom/mojang/brigadier/CommandDispatcher;)V m_139166_ + static + 0 o p_139167_ + a (Lds;I)I m_139172_ + static + 0 o p_139173_ + 1 o p_139174_ + a ()Lsw; m_288080_ + static + a (Lds;)Z m_139170_ + static + 0 o p_139171_ + a (Lds;ILbdc;)I m_264595_ + static + 0 o p_265382_ + 1 o p_265171_ + 2 o p_265122_ + a (Lcom/mojang/brigadier/context/CommandContext;)I m_263940_ + static + 0 o p_264804_ + b (Lcom/mojang/brigadier/context/CommandContext;)I m_263944_ + static + 0 o p_264808_ + b ()Lsw; m_288079_ + static + b (Lds;I)I m_139177_ + static + 0 o p_139178_ + 1 o p_139179_ + c (Lcom/mojang/brigadier/context/CommandContext;)I m_263945_ + static + 0 o p_264809_ + c (Lds;I)I m_139182_ + static + 0 o p_139183_ + 1 o p_139184_ + c ()Lsw; m_288078_ + static + d (Lcom/mojang/brigadier/context/CommandContext;)I m_263941_ + static + 0 o p_264805_ + e (Lcom/mojang/brigadier/context/CommandContext;)I m_263943_ + static + 0 o p_264807_ + f (Lcom/mojang/brigadier/context/CommandContext;)I m_263942_ + static + 0 o p_264806_ +agu net/minecraft/server/commands/WhitelistCommand + a f_139191_ + b f_139192_ + c f_139193_ + d f_139194_ + ()V + static + ()V + a ()Lsw; m_288084_ + static + a (Lcom/mojang/authlib/GameProfile;)Lsw; m_288081_ + static + 0 o p_288712_ + a (Lds;Ljava/util/Collection;)I m_139210_ + static + 0 o p_139211_ + 1 o p_139212_ + a (Lds;)I m_139208_ + static + 0 o p_139209_ + a (Lcom/mojang/brigadier/context/CommandContext;Lcom/mojang/brigadier/suggestion/SuggestionsBuilder;)Ljava/util/concurrent/CompletableFuture; m_139205_ + static + 0 o p_139206_ + 1 o p_139207_ + a (Lalk;Laig;)Z m_289081_ + static + 0 o p_289302_ + 1 o p_289303_ + a (Lcom/mojang/brigadier/CommandDispatcher;)V m_139201_ + static + 0 o p_139202_ + a (Laig;)Ljava/lang/String; m_289082_ + static + 0 o p_289304_ + a ([Ljava/lang/String;)Lsw; m_288082_ + static + 0 o p_288713_ + a (Lcom/mojang/brigadier/context/CommandContext;)I m_139203_ + static + 0 o p_139204_ + b (Lcom/mojang/brigadier/context/CommandContext;)I m_139213_ + static + 0 o p_139214_ + b (Lcom/mojang/authlib/GameProfile;)Lsw; m_288085_ + static + 0 o p_288715_ + b (Lds;)I m_139218_ + static + 0 o p_139219_ + b ()Lsw; m_288087_ + static + b (Lds;Ljava/util/Collection;)I m_139220_ + static + 0 o p_139221_ + 1 o p_139222_ + b (Lcom/mojang/brigadier/context/CommandContext;Lcom/mojang/brigadier/suggestion/SuggestionsBuilder;)Ljava/util/concurrent/CompletableFuture; m_139215_ + static + 0 o p_139216_ + 1 o p_139217_ + c (Lcom/mojang/brigadier/context/CommandContext;)I m_139223_ + static + 0 o p_139224_ + c (Lds;)I m_139225_ + static + 0 o p_139226_ + c ()Lsw; m_288088_ + static + d (Lds;)I m_139229_ + static + 0 o p_139230_ + d (Lcom/mojang/brigadier/context/CommandContext;)I m_139227_ + static + 0 o p_139228_ + d ()Lsw; m_288086_ + static + e (Lds;)Z m_139233_ + static + 0 o p_139234_ + e (Lcom/mojang/brigadier/context/CommandContext;)I m_139231_ + static + 0 o p_139232_ + f (Lcom/mojang/brigadier/context/CommandContext;)I m_139235_ + static + 0 o p_139236_ +agv net/minecraft/server/commands/WorldBorderCommand + a f_139237_ + b f_139238_ + c f_139239_ + d f_139240_ + e f_196554_ + f f_139241_ + g f_139242_ + h f_139243_ + i f_139244_ + ()V + static + ()V + a (Lds;DJ)I m_139252_ + static + 0 o p_139253_ + 1 o p_139254_ + 2 o p_139255_ + a (Lds;I)I m_139259_ + static + 0 o p_139260_ + 1 o p_139261_ + a (Lds;)I m_139250_ + static + 0 o p_139251_ + a (DJ)Lsw; m_288091_ + static + 0 o p_288719_ + 1 o p_288720_ + a (Lcom/mojang/brigadier/CommandDispatcher;)V m_139246_ + static + 0 o p_139247_ + a (Lds;Leeh;)I m_139262_ + static + 0 o p_139263_ + 1 o p_139264_ + a (D)Lsw; m_288096_ + static + 0 o p_288725_ + a (I)Lsw; m_288092_ + static + 0 o p_288721_ + a (F)Lsw; m_288097_ + static + 0 o p_288726_ + a (Lds;F)I m_139256_ + static + 0 o p_139257_ + 1 o p_139258_ + a (Leeh;)Lsw; m_288090_ + static + 0 o p_288718_ + a (Lcom/mojang/brigadier/context/CommandContext;)I m_139248_ + static + 0 o p_139249_ + b (Lcom/mojang/brigadier/context/CommandContext;)I m_139265_ + static + 0 o p_139266_ + b (Lds;)Z m_139267_ + static + 0 o p_139268_ + b (Lds;F)I m_139269_ + static + 0 o p_139270_ + 1 o p_139271_ + b (Lds;I)I m_139272_ + static + 0 o p_139273_ + 1 o p_139274_ + b (DJ)Lsw; m_288098_ + static + 0 o p_288727_ + 1 o p_288728_ + b (D)Lsw; m_288093_ + static + 0 o p_288722_ + b (F)Lsw; m_288095_ + static + 0 o p_288724_ + b (I)Lsw; m_288094_ + static + 0 o p_288723_ + c (Lcom/mojang/brigadier/context/CommandContext;)I m_139275_ + static + 0 o p_139276_ + d (Lcom/mojang/brigadier/context/CommandContext;)I m_139277_ + static + 0 o p_139278_ + e (Lcom/mojang/brigadier/context/CommandContext;)I m_139279_ + static + 0 o p_139280_ + f (Lcom/mojang/brigadier/context/CommandContext;)I m_139281_ + static + 0 o p_139282_ + g (Lcom/mojang/brigadier/context/CommandContext;)I m_139283_ + static + 0 o p_139284_ + h (Lcom/mojang/brigadier/context/CommandContext;)I m_139285_ + static + 0 o p_139286_ + i (Lcom/mojang/brigadier/context/CommandContext;)I m_289084_ + static + 0 o p_289306_ + j (Lcom/mojang/brigadier/context/CommandContext;)I m_289083_ + static + 0 o p_289305_ +agw net/minecraft/server/commands/data/BlockDataAccessor + a f_139291_ + b f_139292_ + c f_139293_ + d f_139294_ + ()V + static + (Lczn;Lgu;)V + 0 o p_139297_ + 1 o p_139298_ + a (Lrk;)Lsw; m_7624_ + 0 o p_139309_ + a (Ljava/lang/String;)Lagy$c; m_139304_ + static + 0 o p_139305_ + a ()Lqr; m_6184_ + a (Lqr;)V m_7603_ + 0 o p_139307_ + a (Leh$g;DI)Lsw; m_6066_ + 0 o p_139301_ + 1 o p_139302_ + 2 o p_139303_ + b ()Lsw; m_6934_ +agw$1 net/minecraft/server/commands/data/BlockDataAccessor$1 + a f_139312_ + (Ljava/lang/String;)V + 0 o p_139314_ + a (Lcom/mojang/brigadier/context/CommandContext;)Lagx; m_7018_ + 0 o p_139319_ + a (Lcom/mojang/brigadier/builder/ArgumentBuilder;Ljava/util/function/Function;)Lcom/mojang/brigadier/builder/ArgumentBuilder; m_7621_ + 0 o p_139316_ + 1 o p_139317_ +agx net/minecraft/server/commands/data/DataAccessor + a (Lrk;)Lsw; m_7624_ + 0 o p_139324_ + a ()Lqr; m_6184_ + a (Lqr;)V m_7603_ + 0 o p_139323_ + a (Leh$g;DI)Lsw; m_6066_ + 0 o p_139320_ + 1 o p_139321_ + 2 o p_139322_ + b ()Lsw; m_6934_ +agy net/minecraft/server/commands/data/DataCommands + a f_139349_ + b f_139350_ + c f_139351_ + d f_139352_ + e f_139353_ + f f_139354_ + g f_139355_ + h f_139357_ + i f_263767_ + j f_287793_ + ()V + static + ()V + a (Lrk;)Ljava/lang/String; m_264579_ + static + 0 o p_265255_ + a (Lagy$c;Lagy$a;Lagy$c;Lcom/mojang/brigadier/builder/ArgumentBuilder;)Lcom/mojang/brigadier/builder/ArgumentBuilder; m_287041_ + static + 0 o p_287354_ + 1 o p_287355_ + 2 o p_287356_ + 3 o p_287357_ + a (Ljava/lang/String;I)Ljava/lang/String; m_287230_ + static + 0 o p_287744_ + 1 o p_287741_ + a (Lds;)Z m_139380_ + static + 0 o p_139381_ + a (Lagy$c;Lagy$c;Lagy$a;)Lcom/mojang/brigadier/builder/ArgumentBuilder; m_263955_ + static + 0 o p_264834_ + 1 o p_264835_ + 2 o p_264836_ + a (Ljava/util/List;Lagy$d;)Ljava/util/List; m_288215_ + static + 0 o p_288980_ + 1 o p_289012_ + a (Ljava/lang/String;II)Ljava/lang/String; m_288220_ + static + 0 o p_288976_ + 1 o p_288968_ + 2 o p_289018_ + a (Lcom/mojang/brigadier/context/CommandContext;Lqr;Leh$g;Ljava/util/List;)I m_263448_ + static + 0 o p_142822_ + 1 o p_142823_ + 2 o p_142824_ + 3 o p_142825_ + a (Ljava/util/function/BiConsumer;)Lcom/mojang/brigadier/builder/ArgumentBuilder; m_139403_ + static + 0 o p_139404_ + a (II)I m_287144_ + static + 0 o p_287638_ + 1 o p_287600_ + a (Lds;Lagx;Leh$g;D)I m_139389_ + static + 0 o p_139390_ + 1 o p_139391_ + 2 o p_139392_ + 3 o p_139393_ + a (Lagy$c;Lcom/mojang/brigadier/context/CommandContext;)I m_142818_ + static + 0 o p_142819_ + 1 o p_142820_ + a (Leh$g;Lagx;)Lrk; m_139398_ + static + 0 o p_139399_ + 1 o p_139400_ + a (Lcom/mojang/brigadier/CommandDispatcher;)V m_139365_ + static + 0 o p_139366_ + a (Lagx;)Lsw; m_288102_ + static + 0 o p_288738_ + a (Lds;Lagx;Lqr;)I m_139394_ + static + 0 o p_139395_ + 1 o p_139396_ + 2 o p_139397_ + a (Lagy$c;Lcom/mojang/brigadier/builder/ArgumentBuilder;)Lcom/mojang/brigadier/builder/ArgumentBuilder; m_139411_ + static + 0 o p_139412_ + 1 o p_139413_ + a (Lcom/mojang/brigadier/builder/ArgumentBuilder;Lagy$b;)V m_139367_ + static + 0 o p_139368_ + 1 o p_139369_ + a (Lagx;Leh$g;DI)Lsw; m_288109_ + static + 0 o p_288754_ + 1 o p_288755_ + 2 o p_288756_ + 3 o p_288757_ + a (Lagy$c;Lagy$a;)Lcom/mojang/brigadier/builder/ArgumentBuilder; m_142797_ + static + 0 o p_142798_ + 1 o p_142799_ + a (Lcom/mojang/brigadier/context/CommandContext;Lagy$c;Lagy$a;Ljava/util/List;)I m_139375_ + static + 0 o p_139376_ + 1 o p_139377_ + 2 o p_139378_ + 3 o p_139379_ + a (Lagx;Lrk;)Lsw; m_288105_ + static + 0 o p_288742_ + 1 o p_288743_ + a (Lagy$c;Lagy$a;Lcom/mojang/brigadier/context/CommandContext;)I m_142800_ + static + 0 o p_142801_ + 1 o p_142802_ + 2 o p_142803_ + a (Lds;Lagx;)I m_139382_ + static + 0 o p_139383_ + 1 o p_139384_ + a (Lcom/mojang/brigadier/context/CommandContext;Ljava/lang/String;)Ljava/lang/String; m_287042_ + static + 0 o p_287358_ + 1 o p_287359_ + a (Ljava/util/function/BiConsumer;Lagy$c;Lcom/mojang/brigadier/builder/ArgumentBuilder;)Lcom/mojang/brigadier/builder/ArgumentBuilder; m_263949_ + static + 0 o p_264814_ + 1 o p_264815_ + 2 o p_264816_ + a (Lds;Lagx;Leh$g;)I m_139385_ + static + 0 o p_139386_ + 1 o p_139387_ + 2 o p_139388_ + a (Ljava/lang/Object;)Lcom/mojang/brigadier/Message; m_263961_ + static + 0 o p_264853_ + a (Ljava/util/function/Function;)Lagy$c; m_139409_ + static + 0 o p_139410_ + a (Lagx;Lqr;)Lsw; m_288106_ + static + 0 o p_288744_ + 1 o p_288745_ + a (Ljava/lang/Object;Ljava/lang/Object;)Lcom/mojang/brigadier/Message; m_288104_ + static + 0 o p_288740_ + 1 o p_288741_ + a (Ljava/lang/String;)Ljava/lang/String; m_263951_ + static + 0 o p_264821_ + a (Lcom/mojang/brigadier/context/CommandContext;Lagy$c;)Ljava/util/List; m_264092_ + static + 0 o p_265108_ + 1 o p_265370_ + a (Lagy$c;Lagy$a;Lagy$c;Lcom/mojang/brigadier/context/CommandContext;)I m_288107_ + static + 0 o p_288746_ + 1 o p_288747_ + 2 o p_288748_ + 3 o p_288749_ + b (Lcom/mojang/brigadier/context/CommandContext;Lqr;Leh$g;Ljava/util/List;)I m_263157_ + static + 0 o p_142835_ + 1 o p_142836_ + 2 o p_142837_ + 3 o p_142838_ + b (Ljava/util/function/Function;)Lagy$c; m_139449_ + static + 0 o p_139450_ + b (Lcom/mojang/brigadier/context/CommandContext;Ljava/lang/String;)Ljava/lang/String; m_287040_ + static + 0 o p_287352_ + 1 o p_287353_ + b (Ljava/lang/String;)Ljava/lang/String; m_263948_ + static + 0 o p_264813_ + b (Ljava/lang/Object;)Lcom/mojang/brigadier/Message; m_139467_ + static + 0 o p_139448_ + b (Lagx;)Lsw; m_288103_ + static + 0 o p_288739_ + b (Lagy$c;Lcom/mojang/brigadier/builder/ArgumentBuilder;)Lcom/mojang/brigadier/builder/ArgumentBuilder; m_139451_ + static + 0 o p_139452_ + 1 o p_139453_ + b (Ljava/lang/String;II)Ljava/lang/String; m_287271_ + static + 0 o p_287625_ + 1 o p_287772_ + 2 o p_287598_ + b (Lagy$c;Lcom/mojang/brigadier/context/CommandContext;)I m_142831_ + static + 0 o p_142832_ + 1 o p_142833_ + b (Lagy$c;Lagy$a;Lagy$c;Lcom/mojang/brigadier/builder/ArgumentBuilder;)Lcom/mojang/brigadier/builder/ArgumentBuilder; m_142808_ + static + 0 o p_142809_ + 1 o p_142811_ + 2 o p_142810_ + 3 o p_142812_ + b (Lagy$c;Lagy$c;Lagy$a;)Lcom/mojang/brigadier/builder/ArgumentBuilder; m_142804_ + static + 0 o p_142805_ + 1 o p_142806_ + 2 o p_142807_ + b (Lds;Lagx;Leh$g;)I m_139443_ + static + 0 o p_139444_ + 1 o p_139445_ + 2 o p_139446_ + b (Lcom/mojang/brigadier/context/CommandContext;Lagy$c;)Ljava/util/List; m_264549_ + static + 0 o p_265468_ + 1 o p_265670_ + b (Lagy$c;Lagy$a;Lagy$c;Lcom/mojang/brigadier/context/CommandContext;)I m_288108_ + static + 0 o p_288750_ + 1 o p_288751_ + 2 o p_288752_ + 3 o p_288753_ + c (Lcom/mojang/brigadier/context/CommandContext;Lqr;Leh$g;Ljava/util/List;)I m_263156_ + static + 0 o p_142843_ + 1 o p_142844_ + 2 o p_142845_ + 3 o p_142846_ + c (Lagy$c;Lcom/mojang/brigadier/context/CommandContext;)I m_142839_ + static + 0 o p_142840_ + 1 o p_142841_ + c (Lagy$c;Lcom/mojang/brigadier/builder/ArgumentBuilder;)Lcom/mojang/brigadier/builder/ArgumentBuilder; m_139469_ + static + 0 o p_139470_ + 1 o p_139471_ + c (Lagx;)Lsw; m_288100_ + static + 0 o p_288733_ + c (Ljava/lang/Object;)Lcom/mojang/brigadier/Message; m_139480_ + static + 0 o p_139481_ + c (Lagy$c;Lagy$a;Lagy$c;Lcom/mojang/brigadier/context/CommandContext;)I m_288101_ + static + 0 o p_288734_ + 1 o p_288735_ + 2 o p_288736_ + 3 o p_288737_ + d (Ljava/lang/Object;)Lcom/mojang/brigadier/Message; m_139490_ + static + 0 o p_139491_ + d (Lagy$c;Lcom/mojang/brigadier/context/CommandContext;)I m_142847_ + static + 0 o p_142848_ + 1 o p_142849_ + d (Lcom/mojang/brigadier/context/CommandContext;Lqr;Leh$g;Ljava/util/List;)I m_263155_ + static + 0 o p_142851_ + 1 o p_142852_ + 2 o p_142853_ + 3 o p_142854_ + d (Lagy$c;Lagy$a;Lagy$c;Lcom/mojang/brigadier/context/CommandContext;)I m_288099_ + static + 0 o p_288729_ + 1 o p_288730_ + 2 o p_288731_ + 3 o p_288732_ + e (Lcom/mojang/brigadier/context/CommandContext;Lqr;Leh$g;Ljava/util/List;)I m_263154_ + static + 0 o p_142859_ + 1 o p_142860_ + 2 o p_142861_ + 3 o p_142862_ + e (Lagy$c;Lcom/mojang/brigadier/context/CommandContext;)I m_142855_ + static + 0 o p_142856_ + 1 o p_142857_ + e (Lagy$c;Lagy$a;Lagy$c;Lcom/mojang/brigadier/context/CommandContext;)I m_263957_ + static + 0 o p_264839_ + 1 o p_264840_ + 2 o p_264841_ + 3 o p_264842_ + f (Lagy$c;Lagy$a;Lagy$c;Lcom/mojang/brigadier/context/CommandContext;)I m_263953_ + static + 0 o p_264826_ + 1 o p_264827_ + 2 o p_264828_ + 3 o p_264829_ +agy$a net/minecraft/server/commands/data/DataCommands$DataManipulator + modify (Lcom/mojang/brigadier/context/CommandContext;Lqr;Leh$g;Ljava/util/List;)I m_139495_ + 0 o p_139496_ + 1 o p_139497_ + 2 o p_139498_ + 3 o p_139499_ +agy$b net/minecraft/server/commands/data/DataCommands$DataManipulatorDecorator + create (Lagy$a;)Lcom/mojang/brigadier/builder/ArgumentBuilder; m_139500_ + 0 o p_139501_ +agy$c net/minecraft/server/commands/data/DataCommands$DataProvider + a (Lcom/mojang/brigadier/context/CommandContext;)Lagx; m_7018_ + 0 o p_139504_ + a (Lcom/mojang/brigadier/builder/ArgumentBuilder;Ljava/util/function/Function;)Lcom/mojang/brigadier/builder/ArgumentBuilder; m_7621_ + 0 o p_139502_ + 1 o p_139503_ +agy$d net/minecraft/server/commands/data/DataCommands$StringProcessor + process (Ljava/lang/String;)Ljava/lang/String; m_288227_ + 0 o p_289006_ +agz net/minecraft/server/commands/data/EntityDataAccessor + a f_139505_ + b f_139506_ + c f_139507_ + ()V + static + (Lbfj;)V + 0 o p_139510_ + a (Lrk;)Lsw; m_7624_ + 0 o p_139521_ + a (Ljava/lang/String;)Lagy$c; m_139516_ + static + 0 o p_139517_ + a ()Lqr; m_6184_ + a (Lqr;)V m_7603_ + 0 o p_139519_ + a (Leh$g;DI)Lsw; m_6066_ + 0 o p_139513_ + 1 o p_139514_ + 2 o p_139515_ + b ()Lsw; m_6934_ +agz$1 net/minecraft/server/commands/data/EntityDataAccessor$1 + a f_139523_ + (Ljava/lang/String;)V + 0 o p_139525_ + a (Lcom/mojang/brigadier/context/CommandContext;)Lagx; m_7018_ + 0 o p_139530_ + a (Lcom/mojang/brigadier/builder/ArgumentBuilder;Ljava/util/function/Function;)Lcom/mojang/brigadier/builder/ArgumentBuilder; m_7621_ + 0 o p_139527_ + 1 o p_139528_ +ah net/minecraft/advancements/AdvancementRewards + a f_9978_ + b f_9979_ + c f_9980_ + d f_9981_ + e f_9982_ + ()V + static + (I[Lacq;[Lacq;Ldn$a;)V + 0 o p_9985_ + 1 o p_9986_ + 2 o p_9987_ + 3 o p_9988_ + a (Lnet/minecraft/server/MinecraftServer;Laig;Ldn;)V m_289047_ + static + 0 o p_289234_ + 1 o p_289235_ + 2 o p_289236_ + a (Lcom/google/gson/JsonObject;)Lah; m_9991_ + static + 0 o p_9992_ + a (Laig;)V m_9989_ + 0 o p_9990_ + a ()[Lacq; m_144821_ + b ()Lcom/google/gson/JsonElement; m_9997_ + toString ()Ljava/lang/String; toString +ah$a net/minecraft/advancements/AdvancementRewards$Builder + a f_9999_ + b f_10000_ + c f_10001_ + d f_10002_ + ()V + a (I)Lah$a; m_10005_ + static + 0 o p_10006_ + a (Lacq;)Lah$a; m_144822_ + static + 0 o p_144823_ + a ()Lah; m_10004_ + b (I)Lah$a; m_10007_ + 0 o p_10008_ + b (Lacq;)Lah$a; m_144824_ + 0 o p_144825_ + c (Lacq;)Lah$a; m_10009_ + static + 0 o p_10010_ + d (Lacq;)Lah$a; m_10011_ + 0 o p_10012_ + e (Lacq;)Lah$a; m_144826_ + static + 0 o p_144827_ + f (Lacq;)Lah$a; m_144828_ + 0 o p_144829_ +aha net/minecraft/server/commands/data/StorageDataAccessor + a f_139531_ + b f_139532_ + c f_139533_ + d f_139534_ + ()V + static + (Ldyr;Lacq;)V + 0 o p_139537_ + 1 o p_139538_ + a (Lrk;)Lsw; m_7624_ + 0 o p_139558_ + a (Ljava/lang/String;)Lagy$c; m_139553_ + static + 0 o p_139554_ + a ()Lqr; m_6184_ + a (Lcom/mojang/brigadier/context/CommandContext;Lcom/mojang/brigadier/suggestion/SuggestionsBuilder;)Ljava/util/concurrent/CompletableFuture; m_139546_ + static + 0 o p_139547_ + 1 o p_139548_ + a (Lqr;)V m_7603_ + 0 o p_139556_ + a (Leh$g;DI)Lsw; m_6066_ + 0 o p_139550_ + 1 o p_139551_ + 2 o p_139552_ + a (Lcom/mojang/brigadier/context/CommandContext;)Ldyr; m_139560_ + static + 0 o p_139561_ + b ()Lsw; m_6934_ +aha$1 net/minecraft/server/commands/data/StorageDataAccessor$1 + a f_139563_ + (Ljava/lang/String;)V + 0 o p_139565_ + a (Lcom/mojang/brigadier/context/CommandContext;)Lagx; m_7018_ + 0 o p_139570_ + a (Lcom/mojang/brigadier/builder/ArgumentBuilder;Ljava/util/function/Function;)Lcom/mojang/brigadier/builder/ArgumentBuilder; m_7621_ + 0 o p_139567_ + 1 o p_139568_ +ahb net/minecraft/server/commands/data/package-info +ahc net/minecraft/server/commands/package-info +ahd net/minecraft/server/dedicated/DedicatedPlayerList + a f_139571_ + ()V + static + (Lahe;Lhl;Ldzb;)V + 0 o p_203709_ + 1 o p_251851_ + 2 o p_203711_ + A ()V m_139597_ + B ()V m_139577_ + C ()V m_139578_ + D ()V m_139579_ + a (Lcom/mojang/authlib/GameProfile;)V m_5749_ + 0 o p_139582_ + a (Z)V m_6628_ + 0 o p_139584_ + a ()V m_7542_ + b (Lcom/mojang/authlib/GameProfile;)V m_5750_ + 0 o p_139587_ + b ()Lahe; m_7873_ + c (Lcom/mojang/authlib/GameProfile;)Z m_5764_ + 0 o p_139590_ + c ()Lnet/minecraft/server/MinecraftServer; m_7873_ + d (Lcom/mojang/authlib/GameProfile;)Z m_5765_ + 0 o p_139592_ + w ()V m_139593_ + x ()V m_139594_ + y ()V m_139595_ + z ()V m_139596_ +ahe net/minecraft/server/dedicated/DedicatedServer + n f_139598_ + o f_142864_ + p f_142865_ + q f_139600_ + r f_139601_ + s f_139602_ + t f_139603_ + u f_139604_ + v f_139605_ + w f_139606_ + ()V + static + (Ljava/lang/Thread;Ldyy$c;Laki;Ladk;Lahg;Lcom/mojang/datafixers/DataFixer;Ladh;Laip;)V + 0 o p_214789_ + 1 o p_214790_ + 2 o p_214791_ + 3 o p_214792_ + 4 o p_214793_ + 5 o p_214794_ + 6 o p_214795_ + 7 o p_214796_ + B ()Z m_7079_ + N_ ()Z m_6102_ + Q ()Z m_7004_ + S ()Ljava/util/Optional; m_214042_ + W ()Z m_6998_ + X ()Z m_6997_ + a (Laif;Lgu;Lbyo;)Z m_7762_ + 0 o p_139630_ + 1 o p_139631_ + 2 o p_139632_ + a (Lab;)Lab; m_142424_ + 0 o p_142870_ + a (Ljava/nio/file/Path;)V m_142116_ + 0 o p_142872_ + a (ZLahf;)Lahf; m_278545_ + 0 o p_278924_ + 1 o p_278925_ + a (Laig;)Lajd; m_7950_ + 0 o p_139634_ + a (ILahf;)Lahf; m_278546_ + 0 o p_278926_ + 1 o p_278927_ + a (Ljava/lang/String;Lds;)V m_139645_ + 0 o p_139646_ + 1 o p_139647_ + a (Lcom/mojang/authlib/GameProfile;)Z m_7779_ + 0 o p_139642_ + a (Ljava/lang/String;)Ljava/lang/String; m_7261_ + 0 o p_139644_ + a ()Lahf; m_7913_ + aS ()Z m_6365_ + aX ()Lcmj; m_142359_ + ac ()Lalk; m_6846_ + af ()Z m_6370_ + ah ()I m_6396_ + ai ()Z m_6373_ + aj ()Z m_183306_ + as ()I m_6329_ + av ()I m_6328_ + aw ()Z m_214005_ + b (Ljava/util/function/BooleanSupplier;)V m_5703_ + 0 o p_139661_ + b ()Ljava/lang/String; m_6866_ + b (I)I m_7186_ + 0 o p_139659_ + bd ()I m_213994_ + bf ()V m_139665_ + bg ()Lahd; m_6846_ + bh ()V m_139667_ + bi ()Z m_139668_ + bj ()J m_139669_ + bs ()V m_139671_ + bt ()Ljava/lang/String; m_142876_ + static + bu ()Ljava/lang/String; m_276331_ + c (I)V m_7196_ + 0 o p_139676_ + d ()I m_7448_ + e (Ljava/lang/String;)V m_276334_ + 0 o p_276355_ + e ()Z m_7038_ + f ()Ljava/lang/String; m_6995_ + g ()V m_6988_ + h ()Z m_7035_ + i (Z)V m_139688_ + 0 o p_139689_ + i ()I m_7022_ + j ()I m_7034_ + k ()Z m_6983_ + l ()Z m_6982_ + m ()I m_7032_ + n ()Z m_6994_ + o ()Z m_6993_ + p ()Z m_6992_ + q ()Ljava/lang/String; m_7123_ + r ()V m_7044_ + s ()Ljava/lang/String; m_7138_ + t ()V m_7041_ +ahe$1 net/minecraft/server/dedicated/DedicatedServer$1 + a f_139700_ + (Lahe;Ljava/lang/String;)V + 0 o p_139702_ + 1 o p_139703_ + run ()V run +ahf net/minecraft/server/dedicated/DedicatedServerProperties + A f_139710_ + B f_139711_ + C f_139712_ + D f_214801_ + E f_139713_ + F f_139714_ + G f_183715_ + H f_139715_ + I f_139716_ + J f_139717_ + K f_139718_ + L f_139719_ + M f_139720_ + N f_139721_ + O f_139722_ + P f_183716_ + Q f_139723_ + R f_139724_ + S f_214802_ + T f_243997_ + U f_139725_ + V f_139726_ + W f_214804_ + X f_243824_ + Z f_214805_ + a f_139728_ + aa f_214806_ + ab f_243988_ + ac f_244504_ + b f_139729_ + c f_139730_ + d f_139731_ + e f_139732_ + f f_139733_ + g f_139734_ + h f_139736_ + i f_139737_ + j f_139738_ + k f_139739_ + l f_139740_ + m f_139741_ + n f_139742_ + o f_139744_ + p f_139745_ + q f_139746_ + r f_139747_ + s f_139748_ + t f_139749_ + u f_139752_ + v f_139753_ + w f_139705_ + x f_139707_ + y f_139708_ + z f_139709_ + ()V + static + (Ljava/util/Properties;)V + 0 o p_180926_ + a (Ljava/lang/String;Ljava/util/function/Consumer;)V m_244875_ + static + 0 o p_248197_ + 1 o p_248198_ + a (Ljava/lang/Integer;)Ljava/lang/Integer; m_139768_ + static + 0 o p_139769_ + a (Lhs;Ljava/util/Properties;)Lahf; m_6764_ + 0 o p_139761_ + 1 o p_139762_ + a (Ljava/nio/file/Path;)Lahf; m_180929_ + static + 0 o p_180930_ + a (Lhs;)Ldif; m_246483_ + 0 o p_250466_ + a (Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;ZLjava/lang/String;)Ljava/util/Optional; m_214808_ + static + 0 o p_214809_ + 1 o p_214810_ + 2 o p_214811_ + 3 o p_214812_ + 4 o p_214813_ + b (Ljava/lang/Integer;)Ljava/lang/Integer; m_139770_ + static + 0 o p_139771_ + b (Lhs;Ljava/util/Properties;)Lahi; m_6764_ + 0 o p_139766_ + 1 o p_139767_ + b (Ljava/lang/String;Ljava/lang/String;)Lcma; m_247013_ + static + 0 o p_251757_ + 1 o p_249979_ + c (Ljava/lang/String;)Lsw; m_214814_ + static + 0 o p_214815_ + d (Ljava/lang/String;)Lcaw; m_246391_ + static + 0 o p_251025_ + e (Ljava/lang/String;)Ljava/lang/String; m_211540_ + static + 0 o p_211541_ + f (Ljava/lang/String;)Lcom/google/gson/JsonObject; m_211542_ + static + 0 o p_211543_ +ahf$a net/minecraft/server/dedicated/DedicatedServerProperties$WorldDimensionData + a f_244404_ + b f_243780_ + c f_244358_ + ()V + static + (Lcom/google/gson/JsonObject;Ljava/lang/String;)V + 0 o f_244404_ + 1 o f_243780_ + a (Lhr;)Ljava/util/Optional; m_257148_ + static + 0 o p_258241_ + a ()Lcom/google/gson/JsonObject; f_244404_ + a (Lhs;)Ldif; m_247373_ + 0 o p_248812_ + a (Lhe$c;)Lhe$c; m_247595_ + 0 o p_249822_ + a (Lacq;)Lacp; m_257147_ + static + 0 o p_258240_ + b ()Ljava/lang/String; f_243780_ + c ()Ljava/util/Optional; m_245481_ + d ()Ljava/lang/IllegalStateException; m_245759_ + static + equals (Ljava/lang/Object;)Z equals + 0 o p_248741_ + hashCode ()I hashCode + toString ()Ljava/lang/String; toString +ahg net/minecraft/server/dedicated/DedicatedServerSettings + a f_139772_ + b f_139773_ + (Ljava/nio/file/Path;)V + 0 o p_180932_ + a (Ljava/util/function/UnaryOperator;)Lahg; m_139778_ + 0 o p_139779_ + a ()Lahf; m_139777_ + b ()V m_139780_ +ahh net/minecraft/server/dedicated/ServerWatchdog + a f_139781_ + b f_142880_ + c f_142881_ + d f_139782_ + e f_139783_ + ()V + static + (Lahe;)V + 0 o p_139786_ + a (Laif;)Ljava/lang/String; m_288110_ + static + 0 o p_288758_ + a ()V m_139787_ + b ()Ljava/lang/String; m_276335_ + c ()Ljava/lang/String; m_278547_ + run ()V run +ahh$1 net/minecraft/server/dedicated/ServerWatchdog$1 + a f_139793_ + (Lahh;)V + 0 o p_139795_ + run ()V run +ahi net/minecraft/server/dedicated/Settings + Y f_139798_ + a f_139797_ + ()V + static + (Ljava/util/Properties;)V + 0 o p_139801_ + a (Ljava/lang/String;Ljava/util/function/UnaryOperator;I)I m_139832_ + 0 o p_139833_ + 1 o p_139834_ + 2 o p_139835_ + a (Ljava/util/function/Function;)Ljava/util/function/Function; m_139841_ + static + 0 o p_139842_ + a (Ljava/util/function/IntFunction;Ljava/util/function/Function;)Ljava/util/function/Function; m_139850_ + static + 0 o p_139851_ + 1 o p_139852_ + a ()Ljava/util/Properties; m_139802_ + a (Ljava/lang/String;J)J m_139808_ + 0 o p_139809_ + 1 o p_139810_ + a (Ljava/lang/String;I)I m_139805_ + 0 o p_139806_ + 1 o p_139807_ + a (Ljava/util/function/IntFunction;Ljava/util/function/Function;Ljava/lang/String;)Ljava/lang/Object; m_139853_ + static + 0 o p_139854_ + 1 o p_139855_ + 2 o p_139856_ + a (Ljava/util/function/Function;Ljava/util/function/UnaryOperator;Ljava/lang/String;)Ljava/lang/Object; m_139846_ + static + 0 o p_139847_ + 1 o p_139848_ + 2 o p_139849_ + a (Ljava/lang/String;Ljava/lang/String;)Ljava/lang/String; m_139811_ + 0 o p_139812_ + 1 o p_139813_ + a (Ljava/util/function/Function;Ljava/lang/String;)Ljava/lang/Number; m_139843_ + static + 0 o p_139844_ + 1 o p_139845_ + a (Ljava/lang/String;Ljava/util/function/Function;Ljava/util/function/UnaryOperator;Ljava/util/function/Function;Ljava/lang/Object;)Ljava/lang/Object; m_139826_ + 0 o p_139827_ + 1 o p_139828_ + 2 o p_139829_ + 3 o p_139830_ + 4 o p_139831_ + a (Ljava/lang/String;Ljava/util/function/Function;Ljava/lang/Object;)Ljava/lang/Object; m_139817_ + 0 o p_139818_ + 1 o p_139819_ + 2 o p_139820_ + a (Ljava/lang/String;)Ljava/lang/String; m_139803_ + 0 o p_139804_ + a (Ljava/lang/String;Z)Z m_139836_ + 0 o p_139837_ + 1 o p_139838_ + a (Ljava/lang/String;Ljava/util/function/Function;Ljava/util/function/Function;Ljava/lang/Object;)Ljava/lang/Object; m_139821_ + 0 o p_139822_ + 1 o p_139823_ + 2 o p_139824_ + 3 o p_139825_ + a (Ljava/lang/String;Ljava/util/function/Function;)Ljava/lang/Object; m_139814_ + 0 o p_139815_ + 1 o p_139816_ + b (Ljava/lang/String;Z)Lahi$a; m_139873_ + 0 o p_139874_ + 1 o p_139875_ + b (Ljava/lang/String;I)Lahi$a; m_139861_ + 0 o p_139862_ + 1 o p_139863_ + b (Lhs;Ljava/util/Properties;)Lahi; m_6764_ + 0 o p_139857_ + 1 o p_139858_ + b (Ljava/lang/String;Ljava/util/function/Function;Ljava/util/function/Function;Ljava/lang/Object;)Lahi$a; m_139868_ + 0 o p_139869_ + 1 o p_139870_ + 2 o p_139871_ + 3 o p_139872_ + b (Ljava/nio/file/Path;)Ljava/util/Properties; m_139839_ + static + 0 o p_139840_ + b (Ljava/lang/String;)Ljava/lang/Boolean; m_139859_ + 0 o p_139860_ + b (Ljava/lang/String;Ljava/util/function/Function;Ljava/lang/Object;)Lahi$a; m_139864_ + 0 o p_139865_ + 1 o p_139866_ + 2 o p_139867_ + c (Ljava/nio/file/Path;)V m_139876_ + 0 o p_139877_ + c (Ljava/lang/String;)Ljava/lang/String; m_139878_ + 0 o p_139879_ +ahi$a net/minecraft/server/dedicated/Settings$MutableValue + a f_139880_ + b f_139881_ + c f_139882_ + d f_139883_ + (Lahi;Ljava/lang/String;Ljava/lang/Object;Ljava/util/function/Function;)V + 0 o p_139885_ + 1 o p_139886_ + 2 o p_139887_ + 3 o p_139888_ + a (Lhs;Ljava/lang/Object;)Lahi; m_139895_ + 0 o p_139896_ + 1 o p_139897_ + get ()Ljava/lang/Object; get +ahj net/minecraft/server/dedicated/package-info +ahk net/minecraft/server/gui/MinecraftServerGui + a f_139899_ + b f_139900_ + c f_142884_ + d f_142885_ + e f_139901_ + f f_139902_ + g f_139903_ + h f_139904_ + ()V + static + (Lahe;)V + 0 o p_139907_ + a (Ljava/lang/Runnable;)V m_139909_ + 0 o p_139910_ + a (Ljavax/swing/JTextArea;Ljavax/swing/JScrollPane;Ljava/lang/String;)V m_139914_ + 0 o p_139915_ + 1 o p_139916_ + 2 o p_139917_ + a (Ljavax/swing/JTextArea;Ljavax/swing/JScrollPane;)V m_139911_ + 0 o p_139912_ + 1 o p_139913_ + a (Ljavax/swing/JTextField;Ljava/awt/event/ActionEvent;)V m_276337_ + 0 o p_276356_ + 1 o p_276357_ + a ()V m_139908_ + a (Lahe;)Lahk; m_139921_ + static + 0 o p_139922_ + b (Ljavax/swing/JTextArea;Ljavax/swing/JScrollPane;Ljava/lang/String;)V m_139926_ + 0 o p_139927_ + 1 o p_139928_ + 2 o p_139929_ + b ()V m_139925_ + c ()Ljavax/swing/JComponent; m_139932_ + d ()Ljavax/swing/JComponent; m_139933_ + e ()Ljavax/swing/JComponent; m_139934_ + f ()V m_139935_ +ahk$1 net/minecraft/server/gui/MinecraftServerGui$1 + a f_139936_ + b f_139937_ + c f_139938_ + (Lahk;Ljavax/swing/JFrame;Lahe;)V + 0 o p_139940_ + 1 o p_139941_ + 2 o p_139942_ + windowClosing (Ljava/awt/event/WindowEvent;)V windowClosing + 0 o p_139944_ +ahk$2 net/minecraft/server/gui/MinecraftServerGui$2 + a f_139945_ + (Lahk;)V + 0 o p_139947_ + focusGained (Ljava/awt/event/FocusEvent;)V focusGained + 0 o p_139949_ +ahl net/minecraft/server/gui/PlayerListComponent + a f_139950_ + b f_139951_ + (Lnet/minecraft/server/MinecraftServer;)V + 0 o p_139953_ + a ()V m_139954_ +ahm net/minecraft/server/gui/StatsComponent + a f_139955_ + b f_139956_ + c f_139957_ + d f_139958_ + e f_139959_ + f f_139960_ + ()V + static + (Lnet/minecraft/server/MinecraftServer;)V + 0 o p_139963_ + a ([J)D m_139969_ + 0 o p_139970_ + a (Ljava/text/DecimalFormat;)V m_139967_ + static + 0 o p_139968_ + a ()V m_139964_ + a (Ljava/awt/event/ActionEvent;)V m_139965_ + 0 o p_139966_ + b ()V m_139971_ + paint (Ljava/awt/Graphics;)V paint + 0 o p_139973_ +ahn net/minecraft/server/gui/package-info +aho net/minecraft/server/level/BlockDestructionProgress + a f_139974_ + b f_139975_ + c f_139976_ + d f_139977_ + (ILgu;)V + 0 o p_139979_ + 1 o p_139980_ + a (Laho;)I compareTo + 0 o p_139984_ + a (I)V m_139981_ + 0 o p_139982_ + a ()I m_142980_ + b (I)V m_139986_ + 0 o p_139987_ + b ()Lgu; m_139985_ + c ()I m_139988_ + compareTo (Ljava/lang/Object;)I compareTo + 0 o p_139990_ + d ()I m_139991_ + equals (Ljava/lang/Object;)Z equals + 0 o p_139993_ + hashCode ()I hashCode +ahp net/minecraft/server/level/ChunkHolder + a f_139995_ + b f_139996_ + c f_139997_ + d f_203750_ + e f_139998_ + f f_139999_ + g f_140001_ + h f_142983_ + i f_140002_ + j f_140003_ + k f_140004_ + l f_140005_ + m f_142984_ + n f_140006_ + o f_140007_ + p f_140008_ + q f_140009_ + r f_140010_ + s f_140011_ + t f_140012_ + u f_140013_ + v f_140014_ + w f_140015_ + x f_140016_ + y f_140017_ + z f_142981_ + ()V + static + (Lclt;ILcmo;Ldwt;Lahp$c;Lahp$d;)V + 0 o p_142986_ + 1 o p_142987_ + 2 o p_142988_ + 3 o p_142989_ + 4 o p_142990_ + 5 o p_142991_ + a (Ljava/util/List;Lcmm;Lgu;Ldcb;)V m_288224_ + 0 o p_288982_ + 1 o p_289011_ + 2 o p_288969_ + 3 o p_288973_ + a (Lahr;Ljava/util/concurrent/CompletableFuture;Ljava/util/concurrent/Executor;Lahy;)V m_142998_ + 0 o p_142999_ + 1 o p_143000_ + 2 o p_143001_ + 3 o p_287621_ + a (Ljava/util/concurrent/CompletableFuture;Lcom/mojang/datafixers/util/Either;)V m_200419_ + static + 0 o p_200420_ + 1 o p_200421_ + a (Lddx;Lcom/mojang/datafixers/util/Either;)Lddx; m_200410_ + static + 0 o p_200411_ + 1 o p_200412_ + a (Ldec;)Ljava/util/concurrent/CompletableFuture; m_140047_ + 0 o p_140048_ + a (Ldei;)V m_140054_ + 0 o p_140055_ + a (Lcmv;I)V m_140036_ + 0 o p_140037_ + 1 o p_140038_ + a (Lahr;Lahy;)V m_287189_ + 0 o p_287599_ + 1 o p_287649_ + a (Ldec;Lahr;)Ljava/util/concurrent/CompletableFuture; m_140049_ + 0 o p_140050_ + 1 o p_140051_ + a (I)V m_140027_ + 0 o p_140028_ + a (Lddx;)Lddx; m_200405_ + static + 0 o p_200406_ + a ()Ljava/util/concurrent/CompletableFuture; m_140026_ + a (Lgu;)V m_140056_ + 0 o p_140057_ + a (Ljava/util/List;Luo;)V m_288202_ + 0 o p_288998_ + 1 o p_289013_ + a (Ljava/util/concurrent/CompletableFuture;Ldei;)V m_200422_ + static + 0 o p_200423_ + 1 o p_200424_ + a (Ljava/lang/String;Ljava/util/concurrent/CompletableFuture;)V m_200416_ + 0 o p_200417_ + 1 o p_200418_ + a (Ljava/util/concurrent/CompletableFuture;Ljava/lang/String;)V m_143017_ + 0 o p_143018_ + 1 o p_143019_ + a (Ljava/util/List;Lcmm;Lgu;)V m_288223_ + 0 o p_288988_ + 1 o p_289005_ + 2 o p_288981_ + a (Lahr;Ljava/util/concurrent/Executor;)V m_143003_ + 0 o p_143004_ + 1 o p_143005_ + a (Ldeh;)V m_140052_ + 0 o p_140053_ + a (Luo;Laig;)V m_140060_ + static + 0 o p_140061_ + 1 o p_140062_ + a (Lddx;Lahp$a;)Lddx; m_200407_ + static + 0 o p_200408_ + 1 o p_200409_ + a (Lddx;Ljava/lang/Object;)Lddx; m_200413_ + static + 0 o p_200414_ + 1 o p_200415_ + b (Ljava/util/List;Lcmm;Lgu;Ldcb;)V m_288111_ + 0 o p_288759_ + 1 o p_288760_ + 2 o p_288761_ + 3 o p_288762_ + b (Ldec;)Ljava/util/concurrent/CompletableFuture; m_140080_ + 0 o p_140081_ + b (Lahr;Lahy;)V m_287043_ + 0 o p_287360_ + 1 o p_287361_ + b (I)V m_140086_ + 0 o p_140087_ + b ()Ljava/util/concurrent/CompletableFuture; m_140073_ + c ()Ljava/util/concurrent/CompletableFuture; m_140082_ + d ()Ldei; m_140085_ + e ()Ldei; m_212234_ + f ()Ldec; m_140088_ + g ()Lddx; m_140089_ + h ()Ljava/util/concurrent/CompletableFuture; m_140090_ + i ()Lahy; m_287213_ + j ()Lclt; m_140092_ + k ()I m_140093_ + l ()I m_140094_ + m ()Z m_140095_ + n ()V m_140096_ + o ()Ljava/util/List; m_202980_ +ahp$1 net/minecraft/server/level/ChunkHolder$1 + a f_140097_ + (Lahp;)V + 0 o p_140099_ + toString ()Ljava/lang/String; toString +ahp$a net/minecraft/server/level/ChunkHolder$ChunkLoadingFailure + b f_140101_ + ()V + static +ahp$a$1 net/minecraft/server/level/ChunkHolder$ChunkLoadingFailure$1 + ()V + toString ()Ljava/lang/String; toString +ahp$b net/minecraft/server/level/ChunkHolder$ChunkSaveDebug + a f_143023_ + b f_143024_ + c f_143025_ + (Ljava/lang/Thread;Ljava/util/concurrent/CompletableFuture;Ljava/lang/String;)V + 0 o p_143027_ + 1 o p_143028_ + 2 o p_143029_ +ahp$c net/minecraft/server/level/ChunkHolder$LevelChangeListener + onLevelChange (Lclt;Ljava/util/function/IntSupplier;ILjava/util/function/IntConsumer;)V m_6250_ + 0 o p_140119_ + 1 o p_140120_ + 2 o p_140121_ + 3 o p_140122_ +ahp$d net/minecraft/server/level/ChunkHolder$PlayerProvider + a (Lclt;Z)Ljava/util/List; m_183262_ + 0 o p_183717_ + 1 o p_183718_ +ahq net/minecraft/server/level/ChunkLevel + a f_286967_ + b f_287007_ + c f_286976_ + d f_286937_ + ()V + static + ()V + a (Lahy;)I m_287154_ + static + 0 o p_287601_ + a (I)Ldec; m_287158_ + static + 0 o p_287738_ + a (Ldec;)I m_287141_ + static + 0 o p_287771_ + b (I)Lahy; m_287264_ + static + 0 o p_287750_ + c (I)Z m_287155_ + static + 0 o p_287767_ + d (I)Z m_287283_ + static + 0 o p_287696_ + e (I)Z m_287217_ + static + 0 o p_287635_ +ahq$1 net/minecraft/server/level/ChunkLevel$1 + a f_286966_ + ()V + static +ahr net/minecraft/server/level/ChunkMap + A f_140141_ + B f_140142_ + C f_140143_ + D f_140144_ + E f_143031_ + F f_140145_ + G f_140146_ + H f_214833_ + I f_182284_ + J f_140149_ + K f_140150_ + L f_140151_ + M f_202981_ + N f_140125_ + O f_140126_ + a f_143032_ + b f_143033_ + e f_143034_ + f f_143035_ + g f_143036_ + h f_140128_ + i f_143037_ + j f_198789_ + k f_202982_ + l f_143038_ + m f_140129_ + n f_140130_ + o f_140131_ + p f_140132_ + q f_140133_ + r f_140134_ + s f_140135_ + t f_140136_ + u f_214834_ + v f_254626_ + w f_140137_ + x f_140138_ + y f_140139_ + z f_140140_ + ()V + static + (Laif;Ldyy$c;Lcom/mojang/datafixers/DataFixer;Ldvu;Ljava/util/concurrent/Executor;Lbcn;Ldel;Lddy;Laio;Ldfr;Ljava/util/function/Supplier;IZ)V + 0 o p_214836_ + 1 o p_214837_ + 2 o p_214838_ + 3 o p_214839_ + 4 o p_214840_ + 5 o p_214841_ + 6 o p_214842_ + 7 o p_214843_ + 8 o p_214844_ + 9 o p_214845_ + 10 o p_214846_ + 11 o p_214847_ + 12 o p_214848_ + a (Lorg/apache/commons/lang3/mutable/MutableBoolean;Lddx;)V m_203049_ + static + 0 o p_203050_ + 1 o p_203051_ + a (J)Lahp; m_140174_ + 0 o p_140175_ + a (Lclt;Ldec$a;)B m_140229_ + 0 o p_140230_ + 1 o p_140231_ + a (Lclt;Lahp;Ldec;Ljava/util/concurrent/Executor;Ljava/util/List;)Ljava/util/concurrent/CompletableFuture; m_279891_ + 0 o p_280967_ + 1 o p_280968_ + 2 o p_280969_ + 3 o p_280970_ + 4 o p_280971_ + a (Lclt;Z)Ljava/util/List; m_183262_ + 0 o p_183801_ + 1 o p_183802_ + a (Lahp;Ljava/lang/Void;Ljava/lang/Throwable;)V m_202994_ + static + 0 o p_202995_ + 1 o p_202996_ + 2 o p_202997_ + a (Lahp;Lddx;)Lddx; m_214854_ + 0 o p_214855_ + 1 o p_214856_ + a (Lahp;)Ljava/util/concurrent/CompletableFuture; m_280208_ + 0 o p_281455_ + a (Ldec;I)Ldec; m_140262_ + 0 o p_140263_ + 1 o p_140264_ + a (Lcom/google/gson/JsonElement;)Lcom/mojang/serialization/DataResult; m_183803_ + static + 0 o p_183804_ + a (Lahp;ILjava/util/function/IntFunction;)Ljava/util/concurrent/CompletableFuture; m_280541_ + 0 o p_281446_ + 1 o p_282030_ + 2 o p_282923_ + a (Ljava/util/List;)V m_274524_ + 0 o p_275577_ + a (IIIII)Z m_200878_ + static + 0 o p_200879_ + 1 o p_200880_ + 2 o p_200881_ + 3 o p_200882_ + 4 o p_200883_ + a (Lclt;Lbfj;)D m_140226_ + static + 0 o p_140227_ + 1 o p_140228_ + a (Lcom/mojang/datafixers/util/Either;Ljava/lang/Throwable;)Ljava/lang/Object; m_287045_ + 0 o p_287364_ + 1 o p_287365_ + a (Lclt;Lahp;Ldec;Ljava/util/concurrent/Executor;Lcom/mojang/datafixers/util/Either;)Ljava/util/concurrent/CompletionStage; m_214868_ + 0 o p_214869_ + 1 o p_214870_ + 2 o p_214871_ + 3 o p_214872_ + 4 o p_214873_ + a (Ljava/util/function/BooleanSupplier;)V m_140280_ + 0 o p_140281_ + a (Lahp$a;)Ljava/lang/String; m_214849_ + static + 0 o p_214850_ + a (Lclt;Lahp$a;)Ljava/util/concurrent/CompletableFuture; m_214865_ + 0 o p_214866_ + 1 o p_214867_ + a (Lahp;Ljava/lang/Runnable;)V m_214857_ + 0 o p_214858_ + 1 o p_214859_ + a ()Lddy; m_183719_ + a (IIILjava/util/List;)Lcom/mojang/datafixers/util/Either; m_183726_ + 0 o p_183727_ + 1 o p_183728_ + 2 o p_183729_ + 3 o p_183730_ + a (Laig;)V m_140184_ + 0 o p_140185_ + a (Lo;)V m_214912_ + static + 0 o p_214913_ + a (Ljava/lang/StringBuilder;Lahp;Lcom/mojang/datafixers/util/Pair;)V m_203757_ + static + 0 o p_203758_ + 1 o p_203759_ + 2 o p_203760_ + a (Lddy;)V m_183807_ + 0 o p_183808_ + a (Lahp;Ldei;)V m_287047_ + 0 o p_287367_ + 1 o p_287368_ + a (I)V m_140167_ + 0 o p_140168_ + a (Lbfj;)V m_140199_ + 0 o p_140200_ + a (Ljava/util/concurrent/CompletableFuture;)Ljava/lang/String; m_140278_ + static + 0 o p_140279_ + a (Laig;Z)V m_140192_ + 0 o p_140193_ + 1 o p_140194_ + a (Lahp;Lcom/mojang/datafixers/util/Either;)V m_214880_ + 0 o p_283091_ + 1 o p_214882_ + a (Lcom/mojang/datafixers/util/Either;)Lcom/mojang/datafixers/util/Either; m_203085_ + static + 0 o p_203086_ + a (Ldec;)Ljava/lang/String; m_289595_ + static + 0 o p_289639_ + a (Lahp;Ldec;)Ljava/util/concurrent/CompletableFuture; m_140292_ + 0 o p_140293_ + 1 o p_140294_ + a (Laif;Ljava/util/List;)V m_143064_ + static + 0 o p_143065_ + 1 o p_143066_ + a (Z)V m_140318_ + 0 o p_140319_ + a (Lddx;)Z m_140258_ + 0 o p_140259_ + a (Lclt;)Ljava/lang/String; m_140204_ + 0 o p_140205_ + a (Ljava/io/Writer;)V m_140274_ + 0 o p_140275_ + a (Ljava/lang/Throwable;Lclt;)Lcom/mojang/datafixers/util/Either; m_214901_ + 0 o p_214902_ + 1 o p_214903_ + a (Lclt;Lahy;)V m_287285_ + 0 o p_287612_ + 1 o p_287685_ + a (Laig;Lclt;)Z m_183751_ + 0 o p_183752_ + 1 o p_183753_ + a (JILahp;I)Lahp; m_140176_ + 0 o p_140177_ + 1 o p_140178_ + 2 o p_140179_ + 3 o p_140180_ + a (Lahp;Ljava/util/concurrent/CompletableFuture;JLddx;)V m_202998_ + 0 o p_202999_ + 1 o p_203000_ + 2 o p_203001_ + 3 o p_203002_ + a (JLahp;)V m_140181_ + 0 o p_140182_ + 1 o p_140183_ + a (Lclt;Ljava/util/Optional;)Lcom/mojang/datafixers/util/Either; m_288112_ + 0 o p_288763_ + 1 o p_269770_ + a (Lorg/apache/commons/lang3/mutable/MutableObject;Ldei;Laig;)V m_214908_ + 0 o p_214909_ + 1 o p_214910_ + 2 o p_214911_ + a (Lclt;Ljava/lang/Throwable;)Lcom/mojang/datafixers/util/Either; m_214886_ + 0 o p_214887_ + 1 o p_214888_ + a (Ldes;Ldei;)V m_214898_ + 0 o p_214899_ + 1 o p_214900_ + a (Lclt;ILorg/apache/commons/lang3/mutable/MutableObject;Laig;)V m_214860_ + 0 o p_214861_ + 1 o p_214862_ + 2 o p_214863_ + 3 o p_214864_ + a (Laig;Lclt;Lorg/apache/commons/lang3/mutable/MutableObject;ZZ)V m_183754_ + 0 o p_183755_ + 1 o p_183756_ + 2 o p_183757_ + 3 o p_183758_ + 4 o p_183759_ + a (Lbfj;Luo;)V m_140201_ + 0 o p_140202_ + 1 o p_140203_ + a (Laig;Ljava/util/List;)V m_274109_ + static + 0 o p_274835_ + 1 o p_274836_ + a (Ldei;)Ljava/lang/String; m_214896_ + static + 0 o p_214897_ + a (Ljava/util/Optional;)Ljava/util/Optional; m_214906_ + 0 o p_214907_ + a (Ljava/lang/IllegalStateException;Ljava/lang/String;)Ly; m_203751_ + 0 o p_203752_ + 1 o p_203753_ + a (Ljava/lang/StringBuilder;Lahp;)V m_203754_ + static + 0 o p_203755_ + 1 o p_203756_ + a (Laig;Lorg/apache/commons/lang3/mutable/MutableObject;Ldei;)V m_183760_ + 0 o p_183761_ + 1 o p_183762_ + 2 o p_183763_ + b (Lahp;Ljava/lang/Runnable;)V m_214920_ + 0 o p_214921_ + 1 o p_214922_ + b (Ldei;)Ljava/lang/Integer; m_214936_ + static + 0 o p_214937_ + b (Lahp;Lcom/mojang/datafixers/util/Either;)Lcom/mojang/datafixers/util/Either; m_287044_ + 0 o p_287362_ + 1 o p_287363_ + b (Lbfj;)V m_140331_ + 0 o p_140332_ + b (Lclt;Ljava/util/Optional;)Ljava/util/Optional; m_214923_ + static + 0 o p_214924_ + 1 o p_214925_ + b (Ljava/util/List;)Ldei; m_214904_ + static + 0 o p_214905_ + b ()Lddz; m_255435_ + b (Lahp;Ldec;)Ljava/util/concurrent/CompletableFuture; m_140360_ + 0 o p_140361_ + 1 o p_140362_ + b (Lahp;)Ljava/util/concurrent/CompletableFuture; m_143053_ + 0 o p_143054_ + b (Lddx;)Ljava/util/Optional; m_214931_ + static + 0 o p_214932_ + b (Lahp;Lddx;)Ljava/util/concurrent/CompletableFuture; m_279890_ + 0 o p_280965_ + 1 o p_280966_ + b (Lcom/mojang/datafixers/util/Either;)Lcom/mojang/datafixers/util/Either; m_214929_ + 0 o p_214930_ + b (Lclt;Lqr;)Z m_214926_ + static + 0 o p_214927_ + 1 o p_214928_ + b (Laig;)Z m_140329_ + 0 o p_140330_ + b (Lqr;)Z m_214940_ + static + 0 o p_214941_ + b (Lclt;)V m_140375_ + 0 o p_140376_ + b (IIIII)Z m_183828_ + static + 0 o p_183829_ + 1 o p_183830_ + 2 o p_183831_ + 3 o p_183832_ + 4 o p_183833_ + b (I)Ldec; m_214915_ + static + 0 o p_214916_ + b (Ldec;I)Ldec; m_214933_ + 0 o p_214934_ + 1 o p_214935_ + b (Ljava/util/function/BooleanSupplier;)V m_140353_ + 0 o p_140354_ + b (J)Lahp; m_140327_ + 0 o p_140328_ + b (Lbfj;Luo;)V m_140333_ + 0 o p_140334_ + 1 o p_140335_ + c (Lddx;)Z m_203087_ + static + 0 o p_203088_ + c (Lahp;Lddx;)Ljava/util/concurrent/CompletableFuture; m_214917_ + 0 o p_214918_ + 1 o p_214919_ + c (Ljava/util/List;)Ldei; m_214938_ + static + 0 o p_214939_ + c (J)Ljava/util/function/IntSupplier; m_140371_ + 0 o p_140372_ + c (Lcom/mojang/datafixers/util/Either;)Lcom/mojang/datafixers/util/Either; m_279889_ + static + 0 o p_280964_ + c (Lclt;)Z m_183879_ + 0 o p_183880_ + c (I)Ldec; m_203077_ + static + 0 o p_203078_ + c (Ldei;)Ljava/lang/Integer; m_214945_ + static + 0 o p_214946_ + c (Lahp;)Ljava/util/concurrent/CompletableFuture; m_143109_ + 0 o p_143110_ + c (Lqr;)Lqr; m_214947_ + 0 o p_214948_ + c ()Ldhy; m_214914_ + c (Lahp;Ljava/lang/Runnable;)V m_214942_ + 0 o p_214943_ + 1 o p_214944_ + c (Laig;)Lhx; m_140373_ + 0 o p_140374_ + close ()V close + d (Ldei;)Ljava/lang/Integer; m_214952_ + static + 0 o p_214953_ + d (Laig;)Ljava/util/List; m_274108_ + static + 0 o p_274834_ + d (Lcom/mojang/datafixers/util/Either;)Lcom/mojang/datafixers/util/Either; m_212877_ + static + 0 o p_212878_ + d (Lclt;)Ljava/util/List; m_183888_ + 0 o p_183889_ + d (Ljava/util/List;)Ldei; m_203091_ + static + 0 o p_203092_ + d (Lahp;Lddx;)Ljava/util/concurrent/CompletableFuture; m_203079_ + 0 o p_203080_ + 1 o p_203081_ + d (Lahp;)Ljava/util/concurrent/CompletableFuture; m_140383_ + 0 o p_140384_ + d ()V m_183825_ + d (Lahp;Ljava/lang/Runnable;)V m_214949_ + 0 o p_214950_ + 1 o p_214951_ + d (J)I m_183872_ + 0 o p_183873_ + e ()Laii; m_140166_ + e (Lcom/mojang/datafixers/util/Either;)Lcom/mojang/datafixers/util/Either; m_214892_ + static + 0 o p_214893_ + e (Lahp;)Z m_198874_ + 0 o p_198875_ + e (Lahp;Ljava/lang/Runnable;)V m_214956_ + 0 o p_214957_ + 1 o p_214958_ + e (Ldei;)V m_214959_ + 0 o p_214960_ + f (Lahp;)Lahy; m_287048_ + static + 0 o p_287369_ + f (Lclt;)Ljava/util/concurrent/CompletableFuture; m_140417_ + 0 o p_140418_ + f ()Z m_201907_ + g (Lahp;)Lddx; m_203101_ + 0 o p_203102_ + g (Lclt;)Lddx; m_214961_ + 0 o p_214962_ + g ()Z m_140324_ + h (Lclt;)V m_140422_ + 0 o p_140423_ + h ()I m_140368_ + i ()I m_140394_ + i (Lclt;)Z m_140425_ + 0 o p_140426_ + j (Lclt;)Ljava/util/concurrent/CompletableFuture; m_214963_ + 0 o p_214964_ + j ()Lahx; m_143145_ + k ()Ljava/lang/Iterable; m_140416_ + k (Lclt;)Ljava/lang/String; m_214965_ + static + 0 o p_214966_ + l (Lclt;)V m_287046_ + 0 o p_287366_ + l ()V m_140421_ + m ()Lbqz; m_140424_ + n ()Ljava/lang/String; m_182285_ + q ()Z m_203109_ + static +ahr$1 net/minecraft/server/level/ChunkMap$1 + a f_140436_ + c f_140437_ + (Lahr;Lclt;)V + 0 o p_140439_ + 1 o p_140440_ + toString ()Ljava/lang/String; toString +ahr$2 net/minecraft/server/level/ChunkMap$2 + a f_140442_ + c f_140443_ + d f_140444_ + e f_140445_ + f f_140446_ + g f_140447_ + (Lahr;IIIILcom/mojang/datafixers/util/Either;)V + 0 o p_140449_ + 1 o p_140450_ + 2 o p_140451_ + 3 o p_140452_ + 4 o p_140453_ + 5 o p_140454_ + toString ()Ljava/lang/String; toString +ahr$a net/minecraft/server/level/ChunkMap$DistanceManager + a f_140456_ + (Lahr;Ljava/util/concurrent/Executor;Ljava/util/concurrent/Executor;)V + 0 o p_140458_ + 1 o p_140459_ + 2 o p_140460_ + a (JILahp;I)Lahp; m_7288_ + 0 o p_140464_ + 1 o p_140465_ + 2 o p_140466_ + 3 o p_140467_ + a (J)Z m_7009_ + 0 o p_140462_ + b (J)Lahp; m_7316_ + 0 o p_140469_ +ahr$b net/minecraft/server/level/ChunkMap$TrackedEntity + a f_140470_ + b f_140471_ + c f_140472_ + d f_140473_ + e f_140474_ + f f_140475_ + (Lahr;Lbfj;IIZ)V + 0 o p_140477_ + 1 o p_140478_ + 2 o p_140479_ + 3 o p_140480_ + 4 o p_140481_ + a (Luo;)V m_140489_ + 0 o p_140490_ + a ()V m_140482_ + a (I)I m_140483_ + 0 o p_140484_ + a (Ljava/util/List;)V m_140487_ + 0 o p_140488_ + a (Laig;)V m_140485_ + 0 o p_140486_ + b (Laig;)V m_140497_ + 0 o p_140498_ + b (Luo;)V m_140499_ + 0 o p_140500_ + b ()I m_140496_ + equals (Ljava/lang/Object;)Z equals + 0 o p_140506_ + hashCode ()I hashCode +ahs net/minecraft/server/level/ChunkTaskPriorityQueue + a f_140508_ + b f_140509_ + c f_140510_ + d f_140511_ + e f_140512_ + f f_140513_ + ()V + static + (Ljava/lang/String;I)V + 0 o p_140516_ + 1 o p_140517_ + a (JLjava/util/Optional;)Lcom/mojang/datafixers/util/Either; m_140527_ + 0 o p_140528_ + 1 o p_140529_ + a (ILclt;I)V m_140521_ + 0 o p_140522_ + 1 o p_140523_ + 2 o p_140524_ + a (Ljava/util/Optional;JI)V m_140535_ + 0 o p_140536_ + 1 o p_140537_ + 2 o p_140538_ + a (Ljava/util/Optional;)Z m_140533_ + static + 0 o p_140534_ + a (I)Lit/unimi/dsi/fastutil/longs/Long2ObjectLinkedOpenHashMap; m_140519_ + static + 0 o p_140520_ + a (JZ)V m_140530_ + 0 o p_140531_ + 1 o p_140532_ + a ()Ljava/util/stream/Stream; m_140518_ + a (J)Ljava/lang/Runnable; m_140525_ + 0 o p_140526_ + b (J)Lcom/mojang/datafixers/util/Either; m_143149_ + 0 o p_143150_ + b ()Z m_201908_ + c ()Lit/unimi/dsi/fastutil/longs/LongSet; m_140539_ + c (J)V m_140542_ + 0 o p_140543_ + d (J)Ljava/util/List; m_140544_ + static + 0 o p_140545_ + e (J)Ljava/util/List; m_140546_ + static + 0 o p_140547_ + toString ()Ljava/lang/String; toString +aht net/minecraft/server/level/ChunkTaskPriorityQueueSorter + a f_140549_ + b f_140550_ + c f_140551_ + d f_140552_ + ()V + static + (Ljava/util/List;Ljava/util/concurrent/Executor;I)V + 0 o p_140555_ + 1 o p_140556_ + 2 o p_140557_ + a (Ljava/lang/Runnable;Lbcp;)Ljava/lang/Runnable; m_140632_ + static + 0 o p_140633_ + 1 o p_140634_ + a (Lbcp;ZLaht$a;)V m_143173_ + 0 o p_143174_ + 1 o p_143175_ + 2 o p_143176_ + a (ILclt;ILahs;)V m_143151_ + static + 0 o p_143152_ + 1 o p_143153_ + 2 o p_143154_ + 3 o p_143155_ + a (Ljava/lang/Runnable;JZ)Laht$b; m_140628_ + static + 0 o p_140629_ + 1 o p_140630_ + 2 o p_140631_ + a (Lahs;Lbcp;)V m_140645_ + 0 o p_140646_ + 1 o p_140647_ + a (Lbcp;JLjava/lang/Runnable;Z)V m_140569_ + 0 o p_140570_ + 1 o p_140571_ + 2 o p_140572_ + 3 o p_140573_ + a (Lbcp;Lbcp;)Lbcs$b; m_140579_ + 0 o p_140580_ + 1 o p_140581_ + a (Lahp;Ljava/lang/Runnable;)Laht$a; m_140642_ + static + 0 o p_140643_ + 1 o p_140644_ + a (Lahp;Ljava/util/function/Function;)Laht$a; m_143156_ + static + 0 o p_143157_ + 1 o p_143158_ + a (Lbcp;Lcom/mojang/datafixers/util/Either;)Ljava/util/concurrent/CompletableFuture; m_143170_ + static + 0 o p_143171_ + 1 o p_143172_ + a (Ljava/lang/Runnable;)Ljava/util/concurrent/CompletableFuture; m_143179_ + static + 0 o p_143180_ + a ()Z m_201909_ + a (Lbcp;Laht$b;)V m_143163_ + 0 o p_143164_ + 1 o p_143165_ + a (Lbcp;Lbcp;Z)V m_143166_ + 0 o p_143167_ + 1 o p_143168_ + 2 o p_143169_ + a (Lbcp;Ljava/util/function/IntSupplier;JLjava/util/function/Function;Z)V m_140595_ + 0 o p_140596_ + 1 o p_140597_ + 2 o p_140598_ + 3 o p_140599_ + 4 o p_140600_ + a (ILbcp;)Lahs; m_140559_ + static + 0 o p_140560_ + 1 o p_140561_ + a (Lbcp;)Lbcp; m_140567_ + 0 o p_140568_ + a (Lbcp;Ljava/util/function/Function;JLjava/util/function/IntSupplier;Z)V m_140589_ + 0 o p_140590_ + 1 o p_140591_ + 2 o p_140592_ + 3 o p_140593_ + 4 o p_140594_ + a (Ljava/util/function/Function;JLjava/util/function/IntSupplier;)Laht$a; m_143181_ + static + 0 o p_143182_ + 1 o p_143183_ + 2 o p_143184_ + a (Lbcp;Z)Lbcp; m_140604_ + 0 o p_140605_ + 1 o p_140606_ + a (Lbcp;JZLjava/lang/Runnable;)V m_140574_ + 0 o p_140575_ + 1 o p_140576_ + 2 o p_140577_ + 3 o p_140578_ + a (Lahs;Lbcp;Ljava/lang/Void;)V m_212891_ + 0 o p_212892_ + 1 o p_212893_ + 2 o p_212894_ + a (Ljava/util/function/IntSupplier;Lclt;ILjava/util/function/IntConsumer;)V m_140637_ + 0 o p_140638_ + 1 o p_140639_ + 2 o p_140640_ + 3 o p_140641_ + a (Ljava/lang/Runnable;JLjava/util/function/IntSupplier;)Laht$a; m_140624_ + static + 0 o p_140625_ + 1 o p_140626_ + 2 o p_140627_ + a (Lbcp;ZLbcp;)Lbcs$b; m_140607_ + 0 o p_140608_ + 1 o p_140609_ + 2 o p_140610_ + a (Ljava/util/Map$Entry;)Ljava/lang/String; m_212897_ + static + 0 o p_212898_ + a (Ljava/lang/Long;)Ljava/lang/String; m_212895_ + static + 0 o p_212896_ + a (I)[Ljava/util/concurrent/CompletableFuture; m_212889_ + static + 0 o p_212890_ + b (Lahs;Lbcp;)V m_212899_ + 0 o p_212900_ + 1 o p_212901_ + b (Ljava/lang/Runnable;Lbcp;)V m_143188_ + static + 0 o p_143189_ + 1 o p_143190_ + b (Lbcp;)Lahs; m_140652_ + 0 o p_140653_ + b ()Ljava/lang/String; m_140558_ + b (Lbcp;Lbcp;)V m_143185_ + 0 o p_143186_ + 1 o p_143187_ + close ()V close + onLevelChange (Lclt;Ljava/util/function/IntSupplier;ILjava/util/function/IntConsumer;)V m_6250_ + 0 o p_140616_ + 1 o p_140617_ + 2 o p_140618_ + 3 o p_140619_ +aht$a net/minecraft/server/level/ChunkTaskPriorityQueueSorter$Message + a f_140664_ + b f_140665_ + c f_140666_ + (Ljava/util/function/Function;JLjava/util/function/IntSupplier;)V + 0 o p_140668_ + 1 o p_140669_ + 2 o p_140670_ +aht$b net/minecraft/server/level/ChunkTaskPriorityQueueSorter$Release + a f_140682_ + b f_140683_ + c f_140684_ + (Ljava/lang/Runnable;JZ)V + 0 o p_140686_ + 1 o p_140687_ + 2 o p_140688_ +ahu net/minecraft/server/level/ChunkTracker + (III)V + 0 o p_140701_ + 1 o p_140702_ + 2 o p_140703_ + a (JJI)I m_6357_ + 0 o p_140711_ + 1 o p_140712_ + 2 o p_140713_ + a (JIZ)V m_7900_ + 0 o p_140707_ + 1 o p_140708_ + 2 o p_140709_ + a (J)Z m_6163_ + 0 o p_140705_ + b (JJI)I m_6359_ + 0 o p_140720_ + 1 o p_140721_ + 2 o p_140722_ + b (JIZ)V m_140715_ + 0 o p_140716_ + 1 o p_140717_ + 2 o p_140718_ + b (J)I m_7031_ + 0 o p_140714_ +ahv net/minecraft/server/level/ColumnPos + a f_140723_ + b f_140724_ + c f_143191_ + d f_143192_ + (II)V + 0 o f_140723_ + 1 o f_140724_ + a (II)J m_143197_ + static + 0 o p_143198_ + 1 o p_143199_ + a ()Lclt; m_143196_ + a (J)I m_214969_ + static + 0 o p_214970_ + b ()J m_143200_ + b (J)I m_214971_ + static + 0 o p_214972_ + c ()I f_140723_ + d ()I f_140724_ + equals (Ljava/lang/Object;)Z equals + 0 o p_140731_ + hashCode ()I hashCode + toString ()Ljava/lang/String; toString +ahw net/minecraft/server/level/DemoMode + a f_143201_ + b f_143202_ + e f_140734_ + f f_140735_ + g f_140736_ + h f_140737_ + (Laig;)V + 0 o p_143204_ + a (Laig;Lcmm;Lcfz;Lbdw;)Lbdx; m_6261_ + 0 o p_140742_ + 1 o p_140743_ + 2 o p_140744_ + 3 o p_140745_ + a ()V m_7712_ + a (Lgu;Laad$a;Lha;II)V m_214168_ + 0 o p_214976_ + 1 o p_214977_ + 2 o p_214978_ + 3 o p_214979_ + 4 o p_214980_ + a (Laig;Lcmm;Lcfz;Lbdw;Leee;)Lbdx; m_7179_ + 0 o p_140747_ + 1 o p_140748_ + 2 o p_140749_ + 3 o p_140750_ + 4 o p_140751_ + f ()V m_140757_ +ahx net/minecraft/server/level/DistanceManager + a f_140758_ + b f_140759_ + c f_143206_ + d f_140760_ + e f_140761_ + f f_140762_ + g f_140763_ + h f_183901_ + i f_140764_ + j f_140765_ + k f_140766_ + l f_140767_ + m f_140768_ + n f_140769_ + o f_140770_ + p f_140771_ + q f_183902_ + ()V + static + (Ljava/util/concurrent/Executor;Ljava/util/concurrent/Executor;)V + 0 o p_140774_ + 1 o p_140775_ + a (Laik;Lclt;ILjava/lang/Object;)V m_140792_ + 0 o p_140793_ + 1 o p_140794_ + 2 o p_140795_ + 3 o p_140796_ + a (Ljava/lang/String;)V m_143207_ + 0 o p_143208_ + a ()V m_140776_ + a (JLaij;)V m_140784_ + 0 o p_140785_ + 1 o p_140786_ + a (Lhx;Laig;)V m_140802_ + 0 o p_140803_ + 1 o p_140804_ + a (Lahr;Lahp;)V m_183906_ + 0 o p_183907_ + 1 o p_183908_ + a (Lclt;Z)V m_140799_ + 0 o p_140800_ + 1 o p_140801_ + a (I)V m_140777_ + 0 o p_140778_ + a (Lahr;)Z m_140805_ + 0 o p_140806_ + a (JLcom/mojang/datafixers/util/Either;)V m_183903_ + 0 o p_183904_ + 1 o p_183905_ + a (JILahp;I)Lahp; m_7288_ + 0 o p_140780_ + 1 o p_140781_ + 2 o p_140782_ + 3 o p_140783_ + a (Lapo;)I m_140797_ + static + 0 o p_140798_ + a (Laij;)Z m_183909_ + static + 0 o p_183910_ + a (J)Z m_7009_ + 0 o p_140779_ + b (Lhx;Laig;)V m_140828_ + 0 o p_140829_ + 1 o p_140830_ + b (I)V m_183911_ + 0 o p_183912_ + b ()I m_140816_ + b (JLaij;)V m_140818_ + 0 o p_140819_ + 1 o p_140820_ + b (J)Lahp; m_7316_ + 0 o p_140817_ + b (Laik;Lclt;ILjava/lang/Object;)V m_140823_ + 0 o p_140824_ + 1 o p_140825_ + 2 o p_140826_ + 3 o p_140827_ + c (J)Z m_183913_ + 0 o p_183914_ + c (Laik;Lclt;ILjava/lang/Object;)V m_140840_ + 0 o p_140841_ + 1 o p_140842_ + 2 o p_140843_ + 3 o p_140844_ + c ()Ljava/lang/String; m_140837_ + d (J)Z m_183916_ + 0 o p_183917_ + d (Laik;Lclt;ILjava/lang/Object;)V m_140849_ + 0 o p_140850_ + 1 o p_140851_ + 2 o p_140852_ + 3 o p_140853_ + d ()Lail; m_183915_ + e ()V m_201910_ + e (J)Ljava/lang/String; m_140838_ + 0 o p_140839_ + f (J)Z m_140847_ + 0 o p_140848_ + f ()Z m_201911_ + g ()I m_183918_ + g (J)Lapo; m_140857_ + 0 o p_140858_ + h (J)Lit/unimi/dsi/fastutil/objects/ObjectSet; m_183920_ + static + 0 o p_183921_ + h ()V m_183919_ + static + i (J)Lapo; m_183922_ + static + 0 o p_183923_ + j (J)V m_183924_ + 0 o p_183925_ +ahx$a net/minecraft/server/level/DistanceManager$ChunkTicketTracker + a f_140874_ + b f_286988_ + ()V + static + (Lahx;)V + 0 o p_140876_ + a (I)I m_140877_ + 0 o p_140878_ + a (JI)V m_7351_ + 0 o p_140880_ + 1 o p_140881_ + b (J)I m_7031_ + 0 o p_140883_ + c (J)I m_6172_ + 0 o p_140885_ +ahx$b net/minecraft/server/level/DistanceManager$FixedPlayerDistanceChunkTracker + a f_140886_ + b f_140887_ + c f_140888_ + (Lahx;I)V + 0 o p_140890_ + 1 o p_140891_ + a (Ljava/lang/String;)V m_143212_ + 0 o p_143213_ + a (JII)V m_8002_ + 0 o p_140895_ + 1 o p_140896_ + 2 o p_140897_ + a ()V m_6410_ + a (JI)V m_7351_ + 0 o p_140893_ + 1 o p_140894_ + b (J)I m_7031_ + 0 o p_140899_ + c (J)I m_6172_ + 0 o p_140901_ + d (J)Z m_140902_ + 0 o p_140903_ +ahx$c net/minecraft/server/level/DistanceManager$PlayerTicketTracker + d f_140904_ + g f_140905_ + h f_140906_ + i f_140907_ + (Lahx;I)V + 0 o p_140909_ + 1 o p_140910_ + a (JII)V m_8002_ + 0 o p_140915_ + 1 o p_140916_ + 2 o p_140917_ + a (I)V m_140912_ + 0 o p_140913_ + a (JIZZ)V m_140918_ + 0 o p_140919_ + 1 o p_140920_ + 2 o p_140921_ + 3 o p_140922_ + a ()V m_6410_ + a (JLaij;)V m_140923_ + 0 o p_140924_ + 1 o p_140925_ + b (JI)V m_140926_ + 0 o p_140927_ + 1 o p_140928_ + b (JLaij;)V m_143214_ + 0 o p_143215_ + 1 o p_143216_ + c (JLaij;)V m_140934_ + 0 o p_140935_ + 1 o p_140936_ + c (I)Z m_140932_ + 0 o p_140933_ + d (I)I m_140938_ + static + 0 o p_140939_ + d (J)I m_140940_ + 0 o p_140941_ + d (JLaij;)V m_143218_ + 0 o p_143219_ + 1 o p_143220_ + d ()V m_143217_ + static +ahy net/minecraft/server/level/FullChunkStatus + a INACCESSIBLE + b FULL + c BLOCK_TICKING + d ENTITY_TICKING + e $VALUES + ()V + static + (Ljava/lang/String;I)V + 0 o p_287660_ + 1 o p_287693_ + a (Lahy;)Z m_287205_ + 0 o p_287607_ + a ()[Lahy; m_287208_ + static + valueOf (Ljava/lang/String;)Lahy; valueOf + static + 0 o p_287668_ + values ()[Lahy; values + static +ahz net/minecraft/server/level/PlayerMap + a f_8241_ + ()V + a (JLaig;Z)V m_8252_ + 0 o p_8253_ + 1 o p_8254_ + 2 o p_8255_ + a (JLaig;)V m_8249_ + 0 o p_8250_ + 1 o p_8251_ + a (J)Ljava/util/Set; m_183926_ + 0 o p_183927_ + a (JJLaig;)V m_8245_ + 0 o p_8246_ + 1 o p_8247_ + 2 o p_8248_ + a (Laig;)V m_8256_ + 0 o p_8257_ + b (Laig;)V m_8258_ + 0 o p_8259_ + c (Laig;)Z m_8260_ + 0 o p_8261_ + d (Laig;)Z m_8262_ + 0 o p_8263_ +ai net/minecraft/advancements/CriteriaTriggers + A f_10550_ + B f_10551_ + C f_10552_ + D f_10553_ + E f_10554_ + F f_10555_ + G f_10556_ + H f_10557_ + I f_10558_ + J f_10559_ + K f_10560_ + L f_10561_ + M f_10562_ + N f_10563_ + O f_215654_ + P f_215655_ + Q f_10565_ + R f_145088_ + S f_145089_ + T f_145090_ + U f_184759_ + V f_184760_ + W f_215656_ + X f_215657_ + Y f_215658_ + Z f_279543_ + a f_10567_ + aa f_10566_ + b f_10568_ + c f_10569_ + d f_10570_ + e f_10571_ + f f_10572_ + g f_10573_ + h f_10574_ + i f_10575_ + j f_10576_ + k f_10577_ + l f_10578_ + m f_10579_ + n f_10580_ + o f_10581_ + p f_10582_ + q f_10583_ + r f_10584_ + s f_10585_ + t f_10586_ + u f_10587_ + v f_10588_ + w f_10589_ + x f_10590_ + y f_10591_ + z f_10592_ + ()V + static + ()V + a (Lacq;)Lal; m_10597_ + static + 0 o p_10598_ + a ()Ljava/lang/Iterable; m_10594_ + static + a (Lal;)Lal; m_10595_ + static + 0 o p_10596_ +aia net/minecraft/server/level/PlayerRespawnLogic + ()V + a (Laif;II)Lgu; m_183928_ + static + 0 o p_183929_ + 1 o p_183930_ + 2 o p_183931_ + a (Laif;Lclt;)Lgu; m_183932_ + static + 0 o p_183933_ + 1 o p_183934_ +aib net/minecraft/server/level/SectionTracker + (III)V + 0 o p_8274_ + 1 o p_8275_ + 2 o p_8276_ + a (JJI)I m_6357_ + 0 o p_8284_ + 1 o p_8285_ + 2 o p_8286_ + a (JIZ)V m_7900_ + 0 o p_8280_ + 1 o p_8281_ + 2 o p_8282_ + b (JJI)I m_6359_ + 0 o p_8293_ + 1 o p_8294_ + 2 o p_8295_ + b (JIZ)V m_8288_ + 0 o p_8289_ + 1 o p_8290_ + 2 o p_8291_ + b (J)I m_7409_ + 0 o p_8287_ +aic net/minecraft/server/level/ServerBossEvent + h f_8296_ + i f_8297_ + j f_8298_ + (Lsw;Lbdn$a;Lbdn$b;)V + 0 o p_8300_ + 1 o p_8301_ + 2 o p_8302_ + a (Z)Lbdn; m_7003_ + 0 o p_8315_ + a (F)V m_142711_ + 0 o p_143223_ + a (Lbdn$b;)V m_5648_ + 0 o p_8309_ + a (Lbdn$a;)V m_6451_ + 0 o p_8307_ + a (Ljava/util/function/Function;)V m_143224_ + 0 o p_143225_ + a (Lsw;)V m_6456_ + 0 o p_8311_ + a (Laig;)V m_6543_ + 0 o p_8305_ + b (Z)Lbdn; m_7005_ + 0 o p_8318_ + b (Laig;)V m_6539_ + 0 o p_8316_ + b ()V m_7706_ + c (Z)Lbdn; m_7006_ + 0 o p_8320_ + d (Z)V m_8321_ + 0 o p_8322_ + g ()Z m_8323_ + h ()Ljava/util/Collection; m_8324_ +aid net/minecraft/server/level/ServerChunkCache + a f_8325_ + b f_8326_ + c f_8327_ + d f_8329_ + e f_8330_ + f f_8331_ + g f_8332_ + h f_8333_ + i f_8334_ + j f_8335_ + k f_8336_ + l f_143226_ + m f_8337_ + n f_8338_ + o f_8339_ + p f_8340_ + ()V + static + (Laif;Ldyy$c;Lcom/mojang/datafixers/DataFixer;Ldvu;Ljava/util/concurrent/Executor;Lddy;IIZLaio;Ldfr;Ljava/util/function/Supplier;)V + 0 o p_214982_ + 1 o p_214983_ + 2 o p_214984_ + 3 o p_214985_ + 4 o p_214986_ + 5 o p_214987_ + 6 o p_214988_ + 7 o p_214989_ + 8 o p_214990_ + 9 o p_214991_ + 10 o p_214992_ + 11 o p_214993_ + a (Laik;Lclt;ILjava/lang/Object;)V m_8387_ + 0 o p_8388_ + 1 o p_8389_ + 2 o p_8390_ + 3 o p_8391_ + a (JLddx;Ldec;)V m_8366_ + 0 o p_8367_ + 1 o p_8368_ + 2 o p_8369_ + a (Z)V m_8419_ + 0 o p_8420_ + a (Lclt;)Ljava/lang/String; m_8448_ + 0 o p_8449_ + a (Laid$a;)V m_184021_ + static + 0 o p_184022_ + a (ZZ)V m_6707_ + 0 o p_8425_ + 1 o p_8426_ + a (IILdec;Z)Lddx; m_7587_ + 0 o p_8360_ + 1 o p_8361_ + 2 o p_8362_ + 3 o p_8363_ + a ()Laii; m_7827_ + a (Lddx;)Lddx; m_8405_ + static + 0 o p_8406_ + a (Lgu;)V m_8450_ + 0 o p_8451_ + a (J)Z m_143239_ + 0 o p_143240_ + a (II)Ldei; m_7131_ + 0 o p_8357_ + 1 o p_8358_ + a (Ljava/util/concurrent/CompletableFuture;)Ljava/util/concurrent/CompletionStage; m_8412_ + static + 0 o p_8413_ + a (Lhx;Lcmv;)V m_184023_ + 0 o p_184024_ + 1 o p_184025_ + a (Lahp;I)Z m_8416_ + 0 o p_8417_ + 1 o p_8418_ + a (Laig;)V m_8385_ + 0 o p_8386_ + a (Lclt;Z)V m_6692_ + 0 o p_8400_ + 1 o p_8401_ + a (I)V m_8354_ + 0 o p_8355_ + a (Lbfj;)V m_8443_ + 0 o p_8444_ + a (JLjava/util/function/Consumer;)V m_8370_ + 0 o p_8371_ + 1 o p_8372_ + a (ZLahp$a;)Lddx; m_8421_ + static + 0 o p_8422_ + 1 o p_8423_ + a (Lcmv;Lhx;)V m_6506_ + 0 o p_8403_ + 1 o p_8404_ + a (Lbfj;Luo;)V m_8394_ + 0 o p_8395_ + 1 o p_8396_ + a (Ljava/util/function/BooleanSupplier;Z)V m_201698_ + 0 o p_201913_ + 1 o p_201914_ + b (Lbfj;)V m_8463_ + 0 o p_8464_ + b (J)Lahp; m_8364_ + 0 o p_8365_ + b (IILdec;Z)Ljava/util/concurrent/CompletableFuture; m_8431_ + 0 o p_8432_ + 1 o p_8433_ + 2 o p_8434_ + 3 o p_8435_ + b (II)Z m_5563_ + 0 o p_8429_ + 1 o p_8430_ + b (I)V m_184026_ + 0 o p_184027_ + b ()I m_8427_ + b (Lbfj;Luo;)V m_8445_ + 0 o p_8446_ + 1 o p_8447_ + b (Laik;Lclt;ILjava/lang/Object;)V m_8438_ + 0 o p_8439_ + 1 o p_8440_ + 2 o p_8441_ + 3 o p_8442_ + c (IILdec;Z)Ljava/util/concurrent/CompletableFuture; m_8456_ + 0 o p_8457_ + 1 o p_8458_ + 2 o p_8459_ + 3 o p_8460_ + c (II)Ldek; m_6196_ + 0 o p_8454_ + 1 o p_8455_ + c ()Lcmm; m_7653_ + close ()V close + d ()Z m_8466_ + d (IILdec;Z)Ljava/util/concurrent/CompletableFuture; m_8467_ + 0 o p_8468_ + 1 o p_8469_ + 2 o p_8470_ + 3 o p_8471_ + e ()Ljava/lang/String; m_6754_ + e (IILdec;Z)Lddx; m_8475_ + 0 o p_8476_ + 1 o p_8477_ + 2 o p_8478_ + 3 o p_8479_ + f ()I m_8480_ + g ()Lddy; m_8481_ + h ()Lddz; m_255415_ + i ()Ldhy; m_214994_ + j ()I m_8482_ + k ()Ldyu; m_8483_ + l ()Lbqz; m_8484_ + m ()Ldex; m_196555_ + n ()Lcmx$d; m_8485_ + o ()V m_201915_ + p ()Ldwt; m_7827_ + q ()Lcls; m_7653_ + r ()V m_8488_ + s ()Z m_8489_ + t ()V m_8490_ +aid$a net/minecraft/server/level/ServerChunkCache$ChunkAndHolder + a f_184028_ + b f_184029_ + (Ldei;Lahp;)V + 0 o f_184028_ + 1 o f_184029_ + a ()Ldei; f_184028_ + b ()Lahp; f_184029_ + equals (Ljava/lang/Object;)Z equals + 0 o p_184036_ + hashCode ()I hashCode + toString ()Ljava/lang/String; toString +aid$b net/minecraft/server/level/ServerChunkCache$MainThreadExecutor + a f_8491_ + (Laid;Lcmm;)V + 0 o p_8493_ + 1 o p_8494_ + at ()Z m_5660_ + au ()Ljava/lang/Thread; m_6304_ + d (Ljava/lang/Runnable;)V m_6367_ + 0 o p_8502_ + e (Ljava/lang/Runnable;)Z m_6362_ + 0 o p_8504_ + f (Ljava/lang/Runnable;)Ljava/lang/Runnable; m_6681_ + 0 o p_8506_ + x ()Z m_7245_ +aie net/minecraft/server/level/ServerEntity + a f_8508_ + b f_143241_ + c f_8509_ + d f_8510_ + e f_8511_ + f f_8512_ + g f_8513_ + h f_214995_ + i f_8517_ + j f_8518_ + k f_8519_ + l f_8520_ + m f_8521_ + n f_8522_ + o f_8523_ + p f_8524_ + q f_8525_ + r f_263120_ + ()V + static + (Laif;Lbfj;IZLjava/util/function/Consumer;)V + 0 o p_8528_ + 1 o p_8529_ + 2 o p_8530_ + 3 o p_8531_ + 4 o p_8532_ + a (Luo;)V m_8538_ + 0 o p_8539_ + a (Lbfj;)V m_289085_ + static + 0 o p_289307_ + a ()V m_8533_ + a (Ljava/util/List;Ljava/util/List;)Ljava/util/stream/Stream; m_277180_ + static + 0 o p_277592_ + 1 o p_277658_ + a (Laig;)V m_8534_ + 0 o p_8535_ + a (Laig;Ljava/util/function/Consumer;)V m_289200_ + 0 o p_289562_ + 1 o p_289563_ + a (Ljava/util/List;Lbfj;)Z m_274361_ + static + 0 o p_275284_ + 1 o p_275361_ + b (Laig;)V m_8541_ + 0 o p_8542_ + b ()V m_8543_ +aif net/minecraft/server/level/ServerLevel + D f_263684_ + E f_8566_ + F f_143242_ + G f_184046_ + H f_8546_ + I f_8547_ + J f_8548_ + K f_8549_ + L f_143243_ + M f_143244_ + N f_243695_ + O f_143245_ + P f_8551_ + Q f_8552_ + R f_8553_ + S f_184047_ + T f_143246_ + U f_200893_ + V f_8556_ + W f_184048_ + X f_8557_ + Y f_8558_ + Z f_8559_ + a f_8562_ + aa f_143247_ + ab f_214997_ + ac f_196556_ + ad f_8561_ + ae f_286969_ + b f_263704_ + c f_263681_ + d f_263755_ + e f_8564_ + f f_8565_ + ()V + static + (Lnet/minecraft/server/MinecraftServer;Ljava/util/concurrent/Executor;Ldyy$c;Ldzd;Lacp;Ldfl;Laio;ZJLjava/util/List;ZLbed;)V + 0 o p_214999_ + 1 o p_215000_ + 2 o p_215001_ + 3 o p_215002_ + 4 o p_215003_ + 5 o p_215004_ + 6 o p_215005_ + 7 o p_215006_ + 8 o p_215007_ + 9 o p_215008_ + 10 o p_215009_ + 11 o p_288977_ + A ()J m_7328_ + B ()Ldfn; m_8586_ + C ()Laif; m_6018_ + D ()Ljava/lang/String; m_8590_ + D (Lgu;)Ljava/util/Optional; m_143248_ + 0 o p_143249_ + E ()Ldgb; m_142646_ + E (Lgu;)V m_207559_ + 0 o p_207560_ + F ()Ljava/lang/String; m_46464_ + F (Lgu;)Lgu; m_184052_ + static + 0 o p_184053_ + G ()Lcaw; m_246046_ + G (Lgu;)Z m_184054_ + 0 o p_184055_ + H ()Lbed; m_288231_ + I ()Lefg; m_6188_ + J ()Ldeb; m_7726_ + K ()Lefp; m_183324_ + L ()Lefp; m_183326_ + a (Lclr;)Z m_8698_ + 0 o p_8699_ + a (Lacq;)Lapf; m_287143_ + 0 o p_287689_ + a (ZZ)V m_8799_ + 0 o p_8800_ + 1 o p_8801_ + a ()Lcne; m_215010_ + a (Lgu;Lcpn;II)V m_7696_ + 0 o p_8746_ + 1 o p_8747_ + 2 o p_8748_ + 3 o p_8749_ + a (Lgu;)Lgu; m_143288_ + 0 o p_143289_ + a (Ldrs;)V m_8722_ + 0 o p_8723_ + a (JLqr;)Lbed; m_287052_ + static + 0 o p_287373_ + 1 o p_287374_ + a (IIZ)Z m_8602_ + 0 o p_8603_ + 1 o p_8604_ + 2 o p_8605_ + a (Lbfj;B)V m_7605_ + 0 o p_8650_ + 1 o p_8651_ + a (Lbyo;DDDLhe;Lami;FFJ)V m_262808_ + 0 o p_263330_ + 1 o p_263393_ + 2 o p_263369_ + 3 o p_263354_ + 4 o p_263412_ + 5 o p_263338_ + 6 o p_263352_ + 7 o p_263390_ + 8 o p_263403_ + a (Ljava/util/function/Predicate;Lgu;III)Lcom/mojang/datafixers/util/Pair; m_215069_ + 0 o p_215070_ + 1 o p_215071_ + 2 o p_215072_ + 3 o p_215073_ + 4 o p_215074_ + a (Ljava/util/function/BooleanSupplier;)V m_8793_ + 0 o p_8794_ + a (Ljava/util/UUID;)Lbfj; m_8791_ + 0 o p_8792_ + a (III)Lhe; m_203675_ + 0 o p_203775_ + 1 o p_203776_ + 2 o p_203777_ + a (Ldcb;Lgu;Lcpn;Lgu;Z)V m_213960_ + 0 o p_215035_ + 1 o p_215036_ + 2 o p_215037_ + 3 o p_215038_ + 4 o p_215039_ + a (Lqr;)Lbzx; m_184094_ + 0 o p_184095_ + a (Ljava/io/Writer;Ljava/lang/Iterable;)V m_8781_ + static + 0 o p_8782_ + 1 o p_8783_ + a (Lbyo;Lbfj;Lhe;Lami;FFJ)V m_213890_ + 0 o p_263545_ + 1 o p_263544_ + 2 o p_263491_ + 3 o p_263542_ + 4 o p_263530_ + 5 o p_263520_ + 6 o p_263490_ + a (Ldfn;)V m_287200_ + 0 o p_287779_ + a (Lnet/minecraft/server/MinecraftServer;)Ldyu; m_184092_ + static + 0 o p_184093_ + a (Laig;Lit;ZDDDIDDDD)Z m_8624_ + 0 o p_8625_ + 1 o p_8626_ + 2 o p_8627_ + 3 o p_8628_ + 4 o p_8629_ + 5 o p_8630_ + 6 o p_8631_ + 7 o p_8632_ + 8 o p_8633_ + 9 o p_8634_ + 10 o p_8635_ + a (Lanl;Lgu;IZ)Lgu; m_215011_ + 0 o p_215012_ + 1 o p_215013_ + 2 o p_215014_ + 3 o p_215015_ + a (Lit/unimi/dsi/fastutil/objects/Object2IntMap$Entry;)Ljava/lang/String; m_207569_ + static + 0 o p_207570_ + a (Lbyo;ILgu;I)V m_5898_ + 0 o p_8684_ + 1 o p_8685_ + 2 o p_8686_ + 3 o p_8687_ + a (Lgu;Ldcb;Ldcb;)V m_6559_ + 0 o p_8751_ + 1 o p_8752_ + 2 o p_8753_ + a (Laig;)V m_8622_ + 0 o p_8623_ + a (Lbyo;Lgu;)Z m_7966_ + 0 o p_8696_ + 1 o p_8697_ + a (Lbfz;)Z m_289086_ + 0 o p_289308_ + a (IIZZ)V m_8606_ + 0 o p_8607_ + 1 o p_8608_ + 2 o p_8609_ + 3 o p_8610_ + a (Lbfj;)V m_8647_ + 0 o p_8648_ + a (Lhe;)Z m_215058_ + static + 0 o p_215059_ + a (Lbfj;Lben;Lcmf;DDDFZLcmm$a;)Lcme; m_254877_ + 0 o p_256039_ + 1 o p_255778_ + 2 o p_256002_ + 3 o p_256067_ + 4 o p_256370_ + 5 o p_256153_ + 6 o p_256045_ + 7 o p_255686_ + 8 o p_255827_ + a (Ljava/lang/Iterable;Ljava/util/function/Function;)Ljava/lang/String; m_143301_ + static + 0 o p_143302_ + 1 o p_143303_ + a (Lgu;I)Z m_8736_ + 0 o p_8737_ + 1 o p_8738_ + a (Lgu;Lhe;)V m_215055_ + 0 o p_215056_ + 1 o p_215057_ + a (Lape;ZZ)V m_8643_ + 0 o p_8644_ + 1 o p_8645_ + 2 o p_8646_ + a (Lhx;)Z m_8762_ + 0 o p_8763_ + a (Lgu;Lcpn;)V m_46672_ + 0 o p_215045_ + 1 o p_215046_ + a (Ljava/util/function/Predicate;Ljava/util/List;ILbfj;)Lanr$a; m_260780_ + static + 0 o p_261425_ + 1 o p_261426_ + 2 o p_261427_ + 3 o p_261428_ + a (Ldfz;Ljava/util/function/Predicate;)Ljava/util/List; m_143280_ + 0 o p_143281_ + 1 o p_143282_ + a (Lddx;)V m_196557_ + 0 o p_196558_ + a (Ljava/io/Writer;)V m_143299_ + 0 o p_143300_ + a (ILgu;I)V m_6801_ + 0 o p_8612_ + 1 o p_8613_ + 2 o p_8614_ + a (Ljava/util/function/Predicate;I)Ljava/util/List; m_261156_ + 0 o p_261698_ + 1 o p_262035_ + a (Ljava/nio/file/Path;)V m_8786_ + 0 o p_8787_ + a (Lgu;Ldcb;Ldcb;I)V m_7260_ + 0 o p_8755_ + 1 o p_8756_ + 2 o p_8757_ + 3 o p_8758_ + a (Lha;Z)F m_7717_ + 0 o p_8760_ + 1 o p_8761_ + a (Ldei;)V m_8712_ + 0 o p_8713_ + a (Ljava/lang/String;)Ldyo; m_7489_ + 0 o p_8785_ + a (Ldrs;Lclr;)Z m_207566_ + static + 0 o p_207567_ + 1 o p_207568_ + a (Laig;Lbfj$c;)V m_143261_ + 0 o p_143262_ + 1 o p_143263_ + a (Lgu;F)V m_8733_ + 0 o p_8734_ + 1 o p_8735_ + a (Lit;DDDIDDDD)I m_8767_ + 0 o p_8768_ + 1 o p_8769_ + 2 o p_8770_ + 3 o p_8771_ + 4 o p_8772_ + 5 o p_8773_ + 6 o p_8774_ + 7 o p_8775_ + 8 o p_8776_ + a (Ldfz;Ljava/util/function/Predicate;Ljava/util/List;I)V m_261178_ + 0 o p_261842_ + 1 o p_262091_ + 2 o p_261703_ + 3 o p_261907_ + a (Laif;)V m_8617_ + static + 0 o p_8618_ + a (Laig;ZDDDLuo;)Z m_8636_ + 0 o p_8637_ + 1 o p_8638_ + 2 o p_8639_ + 3 o p_8640_ + 4 o p_8641_ + 5 o p_8642_ + a (J)Z m_183438_ + 0 o p_184059_ + a (Lbqw;Lbfj;Lbgo;)V m_8670_ + 0 o p_8671_ + 1 o p_8672_ + 2 o p_8673_ + a (Lgu;Lcpn;Lha;)V m_46590_ + 0 o p_215052_ + 1 o p_215053_ + 2 o p_215054_ + a (Lclt;)Z m_201916_ + 0 o p_201917_ + a (I)Lbfj; m_6815_ + 0 o p_8597_ + a (Lgu;Ldxd;)V m_184076_ + 0 o p_184077_ + 1 o p_184078_ + a (Ldei;I)V m_8714_ + 0 o p_8715_ + 1 o p_8716_ + a (Lgu;Lcpn;Lgu;)V m_46586_ + 0 o p_215048_ + 1 o p_215049_ + 2 o p_215050_ + a (Ldfz;Ljava/util/function/Predicate;Ljava/util/List;)V m_260813_ + 0 o p_262152_ + 1 o p_261808_ + 2 o p_261583_ + a (Laif;Lgu;)V m_184099_ + static + 0 o p_184100_ + 1 o p_184101_ + a (Ljava/lang/String;Ldyo;)V m_142325_ + 0 o p_143305_ + 1 o p_143306_ + a (Lbfj;Lben;)V m_269196_ + 0 o p_270420_ + 1 o p_270311_ + a (Lban;Lbfj;)V m_184063_ + 0 o p_184064_ + 1 o p_184065_ + a (Ljava/util/function/Predicate;)Ljava/util/List; m_8795_ + 0 o p_8796_ + a (Ljava/util/stream/Stream;)V m_143311_ + 0 o p_143312_ + a (Lbfj;Lbfj;)V m_8662_ + 0 o p_8663_ + 1 o p_8664_ + a (Ldgl;Leei;Ldgl$a;)V m_214171_ + 0 o p_215041_ + 1 o p_215042_ + 2 o p_215043_ + ap ()V m_8804_ + aq ()V m_143315_ + ar ()V m_184096_ + as ()V m_184097_ + at ()V m_8806_ + au ()V m_8807_ + av ()Lbzx; m_184098_ + b (Lbfj;)Z m_7967_ + 0 o p_8837_ + b (J)V m_8615_ + 0 o p_8616_ + b (Lgu;Lhe;)V m_215076_ + 0 o p_215077_ + 1 o p_215078_ + b (Lddx;)V m_207579_ + 0 o p_207580_ + b (Ldei;)V m_184102_ + 0 o p_184103_ + b (Lgu;)Z m_8802_ + 0 o p_8803_ + b (Lgu;Lcpn;)V m_6289_ + 0 o p_8743_ + 1 o p_8744_ + b (I)Lbfj; m_143317_ + 0 o p_143318_ + b (Laig;)V m_8817_ + 0 o p_8818_ + b (Ljava/util/stream/Stream;)V m_143327_ + 0 o p_143328_ + b (Lhx;)I m_8828_ + 0 o p_8829_ + b (ILgu;I)V m_6798_ + 0 o p_8811_ + 1 o p_8812_ + 2 o p_8813_ + b (Laif;Lgu;)V m_207576_ + static + 0 o p_207577_ + 1 o p_207578_ + b ()V m_8809_ + c (Lgu;Lhe;)V m_215079_ + 0 o p_215080_ + 1 o p_215081_ + c (Lgu;)Lbzv; m_8832_ + 0 o p_8833_ + c ()Z m_8874_ + c (J)Z m_143319_ + 0 o p_143320_ + c (Laig;)V m_8834_ + 0 o p_8835_ + c (Lbfj;)Z m_8847_ + 0 o p_8848_ + close ()V close + d (Lgu;)Z m_8843_ + 0 o p_8844_ + d (Laig;)V m_8845_ + 0 o p_8846_ + d (Lgu;Lcpn;)V m_184112_ + 0 o p_184113_ + 1 o p_184114_ + d (Lbfj;)V m_143334_ + 0 o p_143335_ + d ()Z m_143333_ + d (J)Z m_184110_ + 0 o p_184111_ + e (Lgu;)Z m_143340_ + 0 o p_143341_ + e (Lbfj;)Z m_8860_ + 0 o p_8861_ + e (J)Lbed; m_288114_ + 0 o p_288766_ + e (Laig;)V m_8853_ + 0 o p_8854_ + e ()V m_8878_ + f (Lgu;)Z m_201918_ + 0 o p_201919_ + f ()Ladg; m_6188_ + f (J)Lbed; m_287051_ + static + 0 o p_287372_ + f (Laig;)V m_184115_ + static + 0 o p_184116_ + g ()V m_8886_ + h ()Ljava/util/List; m_8857_ + i (Lbfj;)Z m_143342_ + 0 o p_143343_ + i ()Laig; m_8890_ + j (Lbfj;)Z m_8872_ + 0 o p_8873_ + j ()I m_143344_ + k (Lbfj;)Ljava/lang/String; m_257151_ + static + 0 o p_258244_ + k ()Laid; m_7726_ + l ()Lefq; m_183326_ + l (Lbfj;)Ljava/lang/String; m_257149_ + static + 0 o p_258242_ + m ()Lefq; m_183324_ + m (Lbfj;)Ljava/lang/String; m_257150_ + static + 0 o p_258243_ + n ()Lnet/minecraft/server/MinecraftServer; m_7654_ + o ()Ldya; m_8871_ + p ()Ldvu; m_215082_ + q ()Lcjd; m_7465_ + r ()Z m_7441_ + s ()Ldyu; m_8895_ + t ()I m_7354_ + toString ()Ljava/lang/String; toString + u ()Lit/unimi/dsi/fastutil/longs/LongSet; m_8902_ + v ()Ljava/util/List; m_6907_ + w ()Lbqz; m_8904_ + x ()Lbzx; m_8905_ + y ()Ljava/lang/Iterable; m_8583_ + z ()Z m_8584_ +aif$a net/minecraft/server/level/ServerLevel$EntityCallbacks + a f_143351_ + (Laif;)V + 0 o p_143353_ + a (Lbfj;)V m_141989_ + 0 o p_143355_ + a (Ljava/lang/Object;)V m_214006_ + 0 o p_215084_ + b (Lbfj;)V m_141986_ + 0 o p_143359_ + b (Ljava/lang/Object;)V m_141981_ + 0 o p_143357_ + c (Lbfj;)V m_141987_ + 0 o p_143363_ + c (Ljava/lang/Object;)V m_141985_ + 0 o p_143361_ + d (Ljava/lang/Object;)V m_141983_ + 0 o p_143365_ + d (Lbfj;)V m_141983_ + 0 o p_143367_ + e (Ljava/lang/Object;)V m_141987_ + 0 o p_143369_ + e (Lbfj;)V m_141985_ + 0 o p_143371_ + f (Ljava/lang/Object;)V m_141986_ + 0 o p_143373_ + f (Lbfj;)V m_141981_ + 0 o p_143375_ + g (Ljava/lang/Object;)V m_141989_ + 0 o p_143377_ + g (Lbfj;)V m_214006_ + 0 o p_215086_ +aig net/minecraft/server/level/ServerPlayer + b f_8907_ + c f_8906_ + cA f_8922_ + cB f_8923_ + cC f_8925_ + cD f_8926_ + cE f_8927_ + cF f_8928_ + cG f_8929_ + cH f_8930_ + cI f_8931_ + cJ f_8932_ + cK f_184125_ + cL f_8933_ + cM f_184126_ + cN f_8934_ + cO f_8935_ + cP f_8936_ + cQ f_8937_ + cR f_8938_ + cS f_8939_ + cT f_143378_ + cU f_184127_ + cV f_244516_ + cW f_143379_ + cX f_143380_ + cY f_244040_ + cZ f_8940_ + cl f_143381_ + cm f_143382_ + cn f_8909_ + co f_8910_ + cp f_8911_ + cq f_8912_ + cr f_8913_ + cs f_8914_ + ct f_8915_ + cu f_8916_ + cv f_8917_ + cw f_8918_ + cx f_8919_ + cy f_8920_ + cz f_8921_ + d f_8924_ + e f_8941_ + f f_8943_ + g f_8944_ + ()V + static + (Lnet/minecraft/server/MinecraftServer;Laif;Lcom/mojang/authlib/GameProfile;)V + 0 o p_254143_ + 1 o p_254435_ + 2 o p_253651_ + A ()Lbym; m_9241_ + B ()I m_8088_ + C ()V m_9243_ + D ()Lamn; m_8951_ + E ()Lamm; m_8952_ + F ()V m_8034_ + F_ ()V m_8098_ + G ()Lbfj; m_8954_ + G_ ()Z m_5833_ + H ()V m_8021_ + I ()J m_8956_ + J ()Lsw; m_8957_ + K ()Z m_8958_ + L ()V m_8959_ + M ()Lacy; m_8960_ + N ()Lgu; m_8961_ + O ()F m_8962_ + P ()Lacp; m_8963_ + Q ()Z m_8964_ + Q_ ()V m_8108_ + R ()Lhx; m_8965_ + S ()Luo; m_5654_ + T ()Lajd; m_8967_ + U ()Z m_143387_ + V ()Z m_184128_ + W ()Ljava/util/Optional; m_245217_ + X ()Ltm; m_246404_ + Y ()V m_8127_ + Z_ ()V m_8095_ + a (Ljava/lang/String;Ljava/lang/String;[Lefj;)V m_9124_ + 0 o p_9125_ + 1 o p_9126_ + 2 o p_9127_ + a (Ljava/util/Collection;)I m_7281_ + 0 o p_9129_ + a (Leb$a;Leei;)V m_7618_ + 0 o p_9112_ + 1 o p_9113_ + a (Lcfz;I)V m_7408_ + 0 o p_9079_ + 1 o p_9080_ + a (Lbea;)Ljava/util/OptionalInt; m_5893_ + 0 o p_9033_ + a (Lbfa;Lbfj;)V m_142540_ + 0 o p_143393_ + 1 o p_143394_ + a (ZZ)V m_6145_ + 0 o p_9165_ + 1 o p_9166_ + a (Ldcb;)V m_6763_ + 0 o p_9103_ + a (Ltm;)V m_252981_ + 0 o p_254468_ + a (Lapz;)V m_9028_ + 0 o p_9029_ + a (Lcfz;ZZ)Lbvh; m_7197_ + 0 o p_9085_ + 1 o p_9086_ + 2 o p_9087_ + a (Lben;F)Z m_6469_ + 0 o p_9037_ + 1 o p_9038_ + a (Ldav;Z)V m_7739_ + 0 o p_277909_ + 1 o p_277495_ + a (Lcfz;Lbdw;)V m_6986_ + 0 o p_9082_ + 1 o p_9083_ + a (FFZZ)V m_8980_ + 0 o p_8981_ + 1 o p_8982_ + 2 o p_8983_ + 3 o p_8984_ + a (Lsw;)V m_213846_ + 0 o p_215097_ + a (Lbtk;Lbdq;)V m_6658_ + 0 o p_9059_ + 1 o p_9060_ + a (Laig;)Z m_6459_ + 0 o p_9014_ + a ([Lacq;)V m_7902_ + 0 o p_9168_ + a (Lgu;)Lcom/mojang/datafixers/util/Either; m_7720_ + 0 o p_9115_ + a (Lqr;Ljava/lang/String;)Lcmj; m_143413_ + static + 0 o p_143414_ + 1 o p_143415_ + a (Lamo;I)V m_6278_ + 0 o p_9026_ + 1 o p_9027_ + a (Lcfz;)V m_142106_ + 0 o p_143402_ + a (Laif;DDDFF)V m_8999_ + 0 o p_9000_ + 1 o p_9001_ + 2 o p_9002_ + 3 o p_9003_ + 4 o p_9004_ + 5 o p_9005_ + a (Lbfj;Z)Z m_7998_ + 0 o p_277395_ + 1 o p_278062_ + a (Lbvh;)V m_21053_ + 0 o p_215095_ + a (Lsw;Lts;)Lts; m_143418_ + static + 0 o p_143419_ + 1 o p_143420_ + a (I)V m_8985_ + 0 o p_8986_ + a (Lbfj;)V m_5704_ + 0 o p_9045_ + a (Laig;Z)V m_9015_ + 0 o p_9016_ + 1 o p_9017_ + a (Lclt;Luo;)V m_184135_ + 0 o p_184136_ + 1 o p_184137_ + a (Lcjc;Ljava/util/List;)V m_280300_ + 0 o p_283176_ + 1 o p_282336_ + a (Labt;)V m_215109_ + 0 o p_215110_ + a (DZLdcb;Lgu;)V m_7840_ + 0 o p_8976_ + 1 o p_8977_ + 2 o p_8978_ + 3 o p_8979_ + a (Laif;)Ldyb; m_7937_ + 0 o p_8998_ + a (Lbfj;I)V m_7938_ + 0 o p_9047_ + 1 o p_9048_ + a (Lhx;)V m_9119_ + 0 o p_9120_ + a (Laif;Lgu;ZLdds;)Ljava/util/Optional; m_183318_ + 0 o p_184131_ + 1 o p_184132_ + 2 o p_184133_ + 3 o p_184134_ + a (Lcmj;)Z m_143403_ + 0 o p_143404_ + a (Lqr;)V m_7378_ + 0 o p_9131_ + a (Lefj;I)V m_9104_ + 0 o p_9105_ + 1 o p_9106_ + a (Lbxu;)V m_244881_ + 0 o p_248205_ + a (Z)Z m_182294_ + 0 o p_182295_ + a (Lbwc;)Z m_9061_ + 0 o p_9062_ + a (Lben;)V m_6667_ + 0 o p_9035_ + a (Lczx;)V m_7698_ + 0 o p_9099_ + a (Lamo;)V m_7166_ + 0 o p_9024_ + a (Lamg;Lami;FF)V m_6330_ + 0 o p_9019_ + 1 o p_9020_ + 2 o p_9021_ + 3 o p_9022_ + a (Lsw;Z)V m_5661_ + 0 o p_9154_ + 1 o p_9155_ + a (Lqr;Lrk;)V m_244882_ + static + 0 o p_248206_ + 1 o p_248207_ + a (ILeff;)V m_8994_ + static + 0 o p_8995_ + 1 o p_8996_ + a (DDDZ)V m_289599_ + 0 o p_289676_ + 1 o p_289671_ + 2 o p_289665_ + 3 o p_289696_ + a (Laif;DDDLjava/util/Set;FF)Z m_264318_ + 0 o p_265564_ + 1 o p_265424_ + 2 o p_265680_ + 3 o p_265312_ + 4 o p_265192_ + 5 o p_265059_ + 6 o p_265266_ + a (ILcll;IIZZ)V m_7662_ + 0 o p_8988_ + 1 o p_8989_ + 2 o p_8990_ + 3 o p_8991_ + 4 o p_8992_ + 5 o p_8993_ + a (Lacp;Lgu;FZZ)V m_9158_ + 0 o p_9159_ + 1 o p_9160_ + 2 o p_9161_ + 3 o p_9162_ + 4 o p_9163_ + a (Ljava/lang/String;Ljava/lang/String;ZLsw;)V m_143408_ + 0 o p_143409_ + 1 o p_143410_ + 2 o p_143411_ + 3 o p_143412_ + a (Lclt;)V m_9088_ + 0 o p_9089_ + a (Lbdw;)V m_6674_ + 0 o p_9031_ + a (Lzl;)V m_9156_ + 0 o p_9157_ + a (Lbfj;ILben;)V m_5993_ + 0 o p_9050_ + 1 o p_9051_ + 2 o p_9052_ + a (DDD)V m_142098_ + 0 o p_143389_ + 1 o p_143390_ + 2 o p_143391_ + a (Lbyo;)Z m_7099_ + 0 o p_9064_ + a (Ltk;ZLss$a;)V m_245069_ + 0 o p_249852_ + 1 o p_250110_ + 2 o p_252108_ + a (Laif;Lgu;)V m_9006_ + 0 o p_9007_ + 1 o p_9008_ + a (Lbfa;ZLbfj;)V m_141973_ + 0 o p_143396_ + 1 o p_143397_ + 2 o p_143398_ + a (Lbyn;I)V m_287054_ + 0 o p_287376_ + 1 o p_287377_ + a (Lbfa;)V m_7285_ + 0 o p_9184_ + a (DD)V m_269405_ + 0 o p_270621_ + 1 o p_270478_ + a (Leb$a;Lbfj;Leb$a;)V m_9107_ + 0 o p_9108_ + 1 o p_9109_ + 2 o p_9110_ + a (Lcmm;Lgu;)Z m_142265_ + 0 o p_143406_ + 1 o p_143407_ + a (Lbgb;)V m_9056_ + 0 o p_9057_ + a (Lcbf;)V m_143399_ + 0 o p_143400_ + a (Lgu;Lha;)Z m_9116_ + 0 o p_9117_ + 1 o p_9118_ + b (Lcmj;)Lcmj; m_143423_ + 0 o p_143424_ + b (ILeff;)V m_9176_ + static + 0 o p_9177_ + 1 o p_9178_ + b (Lbfj;)V m_5700_ + 0 o p_9186_ + b (Laif;)Lbfj; m_5489_ + 0 o p_9180_ + b (Lsw;Z)V m_240418_ + 0 o p_240560_ + 1 o p_240545_ + b (Lben;)Z m_6673_ + 0 o p_9182_ + b (Lgu;)V m_5802_ + 0 o p_9190_ + b (Lqr;)V m_7380_ + 0 o p_9197_ + b (DDD)V m_6021_ + 0 o p_8969_ + 1 o p_8970_ + 2 o p_8971_ + b (Laig;)Z m_143421_ + 0 o p_143422_ + b (Lqr;Lrk;)V m_9132_ + static + 0 o p_9133_ + 1 o p_9134_ + b (Lbgb;)Z m_9187_ + static + 0 o p_9188_ + b (Ljava/util/Collection;)I m_7279_ + 0 o p_9195_ + b (Lgu;Lha;)Z m_9191_ + 0 o p_9192_ + 1 o p_9193_ + b (I)V m_9174_ + 0 o p_9175_ + c (DDD)V m_246847_ + 0 o p_251611_ + 1 o p_248861_ + 2 o p_252266_ + c (Lgu;)V m_5806_ + 0 o p_9206_ + c (Laif;)V m_284127_ + 0 o p_284971_ + c (Lqr;)V m_143427_ + 0 o p_143428_ + c (I)V m_6749_ + 0 o p_9200_ + c (Lbfj;)V m_9213_ + 0 o p_9214_ + c (Lsw;)Luo; m_243040_ + 0 o p_243188_ + d (I)V m_6756_ + 0 o p_9208_ + d (Lsw;)Luo; m_289087_ + 0 o p_289309_ + d (DDD)V m_6027_ + 0 o p_9171_ + 1 o p_9172_ + 2 o p_9173_ + d (Laif;)V m_9201_ + 0 o p_9202_ + d (Lbfj;)V m_5706_ + 0 o p_9220_ + e (Laif;)V m_9209_ + 0 o p_9210_ + f ()Z m_7500_ + gn ()V m_9215_ + go ()Z m_9216_ + gp ()V m_9217_ + gq ()Z m_240422_ + h ()V m_143429_ + i (Lgu;)Z m_9222_ + 0 o p_9223_ + k ()Lcfv; m_7478_ + k (Lqr;)V m_143430_ + 0 o p_143431_ + l ()V m_8119_ + m ()V m_9240_ + n ()V m_183634_ + o ()V m_184139_ + p ()V m_184140_ + q ()V m_6915_ + r ()V m_9230_ + s ()V m_9231_ + t ()Z m_9232_ + u (I)I m_9237_ + 0 o p_9238_ + u ()V m_9233_ + v (Z)Z m_240399_ + 0 o p_240568_ + w ()V m_6885_ + x ()Laif; m_284548_ + y ()Ljava/lang/String; m_9239_ + z ()Z m_143432_ +aig$1 net/minecraft/server/level/ServerPlayer$1 + a f_143433_ + (Laig;)V + 0 o p_143435_ + a (Lcbf;ILcfz;)V m_142074_ + 0 o p_143441_ + 1 o p_143442_ + 2 o p_143443_ + a (Lcbf;Lcfz;)V m_142529_ + 0 o p_143445_ + 1 o p_143446_ + a (Lcbf;Lhn;Lcfz;[I)V m_142589_ + 0 o p_143448_ + 1 o p_143449_ + 2 o p_143450_ + 3 o p_143451_ + a (Lcbf;II)V m_142145_ + 0 o p_143437_ + 1 o p_143438_ + 2 o p_143439_ + b (Lcbf;II)V m_143454_ + 0 o p_143455_ + 1 o p_143456_ + 2 o p_143457_ +aig$2 net/minecraft/server/level/ServerPlayer$2 + a f_143458_ + (Laig;)V + 0 o p_143460_ + a (Lcbf;ILcfz;)V m_7934_ + 0 o p_143466_ + 1 o p_143467_ + 2 o p_143468_ + a (Lcbf;II)V m_142153_ + 0 o p_143462_ + 1 o p_143463_ + 2 o p_143464_ +aih net/minecraft/server/level/ServerPlayerGameMode + a f_9246_ + b f_9247_ + c f_9244_ + d f_9245_ + e f_9248_ + f f_9249_ + g f_9250_ + h f_9251_ + i f_9252_ + j f_9253_ + k f_9254_ + l f_9255_ + m f_9256_ + ()V + static + (Laig;)V + 0 o p_143472_ + a (Lgu;)Z m_9280_ + 0 o p_9281_ + a (Lcmj;)Z m_143473_ + 0 o p_143474_ + a (Lgu;Laad$a;Lha;II)V m_214168_ + 0 o p_215120_ + 1 o p_215121_ + 2 o p_215122_ + 3 o p_215123_ + 4 o p_215124_ + a (Lgu;ZILjava/lang/String;)V m_215125_ + 0 o p_215126_ + 1 o p_215127_ + 2 o p_215128_ + 3 o p_215129_ + a (Laig;Lcmm;Lcfz;Lbdw;)Lbdx; m_6261_ + 0 o p_9262_ + 1 o p_9263_ + 2 o p_9264_ + 3 o p_9265_ + a (Lgu;ILjava/lang/String;)V m_215116_ + 0 o p_215117_ + 1 o p_215118_ + 2 o p_215119_ + a (Ldcb;Lgu;I)F m_9276_ + 0 o p_9277_ + 1 o p_9278_ + 2 o p_9279_ + a ()V m_7712_ + a (Laig;Lcmm;Lcfz;Lbdw;Leee;)Lbdx; m_7179_ + 0 o p_9266_ + 1 o p_9267_ + 2 o p_9268_ + 3 o p_9269_ + 4 o p_9270_ + a (Laif;)V m_9260_ + 0 o p_9261_ + a (Lcmj;Lcmj;)V m_9273_ + 0 o p_9274_ + 1 o p_9275_ + b ()Lcmj; m_9290_ + c ()Lcmj; m_9293_ + d ()Z m_9294_ + e ()Z m_9295_ +aii net/minecraft/server/level/ThreadedLevelLightEngine + a f_283844_ + d f_9296_ + e f_9297_ + f f_9298_ + g f_9299_ + h f_9300_ + i f_9301_ + j f_9302_ + ()V + static + (Ldel;Lahr;ZLbcq;Lbcp;)V + 0 o p_9305_ + 1 o p_9306_ + 2 o p_9307_ + 3 o p_9308_ + 4 o p_9309_ + a (Lhx;Z)V m_6191_ + 0 o p_9364_ + 1 o p_9365_ + a (Laii$a;Ljava/lang/Runnable;)V m_284002_ + 0 o p_284673_ + 1 o p_284674_ + a (ZLclt;)V m_283997_ + 0 o p_284664_ + 1 o p_284665_ + a (Lclt;Ljava/lang/Runnable;)V m_279898_ + 0 o p_280981_ + 1 o p_280982_ + a ()I m_9323_ + a (Lclt;)V m_9330_ + 0 o p_9331_ + a (Lcmv;Lhx;Lded;)V m_284126_ + 0 o p_285046_ + 1 o p_285496_ + 2 o p_285495_ + a (Lddx;Lclt;)Lddx; m_279897_ + 0 o p_280979_ + 1 o p_280980_ + a (IILjava/util/function/IntSupplier;Laii$a;Ljava/lang/Runnable;)V m_9317_ + 0 o p_9318_ + 1 o p_9319_ + 2 o p_9320_ + 3 o p_9321_ + 4 o p_9322_ + a (Lclt;ZLddx;)Lddx; m_284003_ + 0 o p_284675_ + 1 o p_284676_ + 2 o p_284677_ + a (Lddx;Z)Ljava/util/concurrent/CompletableFuture; m_284138_ + 0 o p_285128_ + 1 o p_285441_ + a (Lclt;Z)V m_9335_ + 0 o p_9336_ + 1 o p_9337_ + a (Lgu;)V m_7174_ + 0 o p_9357_ + a (IILaii$a;Ljava/lang/Runnable;)V m_9312_ + 0 o p_9313_ + 1 o p_9314_ + 2 o p_9315_ + 3 o p_9316_ + b (Lclt;Z)V m_6462_ + 0 o p_9370_ + 1 o p_9371_ + b (Lhx;Z)Ljava/lang/String; m_9379_ + static + 0 o p_9380_ + 1 o p_9381_ + b (Lclt;)V m_142519_ + 0 o p_285029_ + b (Lddx;Z)Ljava/util/concurrent/CompletableFuture; m_9353_ + 0 o p_9354_ + 1 o p_9355_ + b (Lclt;Ljava/lang/Runnable;)V m_215133_ + 0 o p_215134_ + 1 o p_215135_ + b (Lcmv;Lhx;Lded;)V m_284000_ + 0 o p_284669_ + 1 o p_284670_ + 2 o p_284671_ + b (Lhx;)Ljava/lang/String; m_215148_ + static + 0 o p_285301_ + b (Lddx;Lclt;)V m_288117_ + 0 o p_288769_ + 1 o p_288770_ + b (Lgu;)Ljava/lang/String; m_9377_ + static + 0 o p_9378_ + b ()V m_9409_ + c (Lhx;Z)V m_9390_ + 0 o p_9391_ + 1 o p_9392_ + c (Lclt;)Ljava/lang/String; m_9361_ + static + 0 o p_282616_ + c (Lclt;Z)Ljava/lang/String; m_9401_ + static + 0 o p_9402_ + 1 o p_9403_ + c (Lgu;)V m_9388_ + 0 o p_9389_ + close ()V close + d (Lclt;)Ljava/lang/String; m_9383_ + static + 0 o p_9384_ + d (Lclt;Z)V m_9397_ + 0 o p_9398_ + 1 o p_9399_ + e (Lclt;Z)Ljava/lang/String; m_215153_ + static + 0 o p_215154_ + 1 o p_215155_ + e (Lclt;)Ljava/lang/String; m_9367_ + static + 0 o p_285280_ + f (Lclt;Z)V m_283998_ + 0 o p_284666_ + 1 o p_284667_ + f ()V m_9366_ + f (Lclt;)V m_284001_ + 0 o p_284672_ + g ()V m_215156_ + g (Lclt;)Ljava/lang/String; m_283999_ + static + 0 o p_284668_ + h (Lclt;)V m_9395_ + 0 o p_9396_ + h ()I m_9394_ + static + i ()I m_9400_ + static + j ()I m_9404_ + static + k ()I m_9408_ + static +aii$a net/minecraft/server/level/ThreadedLevelLightEngine$TaskType + a PRE_UPDATE + b POST_UPDATE + c $VALUES + ()V + static + (Ljava/lang/String;I)V + 0 o p_9415_ + 1 o p_9416_ + a ()[Laii$a; m_143478_ + static + valueOf (Ljava/lang/String;)Laii$a; valueOf + static + 0 o p_9418_ + values ()[Laii$a; values + static +aij net/minecraft/server/level/Ticket + a f_9420_ + b f_9421_ + c f_9422_ + d f_9423_ + (Laik;ILjava/lang/Object;)V + 0 o p_9425_ + 1 o p_9426_ + 2 o p_9427_ + a (J)V m_9429_ + 0 o p_9430_ + a (Laij;)I compareTo + 0 o p_9432_ + a ()Laik; m_9428_ + b ()I m_9433_ + b (J)Z m_9434_ + 0 o p_9435_ + compareTo (Ljava/lang/Object;)I compareTo + 0 o p_9437_ + equals (Ljava/lang/Object;)Z equals + 0 o p_9439_ + hashCode ()I hashCode + toString ()Ljava/lang/String; toString +aik net/minecraft/server/level/TicketType + a f_9442_ + b f_9443_ + c f_9444_ + d f_9445_ + e f_9446_ + f f_9447_ + g f_9448_ + h f_9449_ + i f_9450_ + j f_9451_ + k f_9452_ + ()V + static + (Ljava/lang/String;Ljava/util/Comparator;J)V + 0 o p_9455_ + 1 o p_9456_ + 2 o p_9457_ + a (Ljava/lang/String;Ljava/util/Comparator;I)Laik; m_9465_ + static + 0 o p_9466_ + 1 o p_9467_ + 2 o p_9468_ + a (Ljava/lang/String;Ljava/util/Comparator;)Laik; m_9462_ + static + 0 o p_9463_ + 1 o p_9464_ + a (Lapz;Lapz;)I m_9459_ + static + 0 o p_9460_ + 1 o p_9461_ + a ()Ljava/util/Comparator; m_9458_ + b ()J m_9469_ + b (Lapz;Lapz;)I m_9470_ + static + 0 o p_9471_ + 1 o p_9472_ + toString ()Ljava/lang/String; toString +ail net/minecraft/server/level/TickingTracker + a f_286949_ + b f_184141_ + c f_184142_ + d f_184143_ + ()V + a (Laik;Lclt;ILjava/lang/Object;)V m_184154_ + 0 o p_184155_ + 1 o p_184156_ + 2 o p_184157_ + 3 o p_184158_ + a (I)V m_184146_ + 0 o p_184147_ + a (JI)V m_7351_ + 0 o p_184149_ + 1 o p_184150_ + a (Lclt;)I m_184161_ + 0 o p_184162_ + a ()V m_184145_ + a (Lapo;)I m_184159_ + 0 o p_184160_ + a (JLaij;)V m_184151_ + 0 o p_184152_ + 1 o p_184153_ + b (JLaij;)V m_184165_ + 0 o p_184166_ + 1 o p_184167_ + b (J)I m_7031_ + 0 o p_184164_ + b (Laik;Lclt;ILjava/lang/Object;)V m_184168_ + 0 o p_184169_ + 1 o p_184170_ + 2 o p_184171_ + 3 o p_184172_ + c (J)I m_6172_ + 0 o p_184174_ + d (J)Ljava/lang/String; m_184175_ + 0 o p_184176_ + g (J)Lapo; m_184177_ + 0 o p_184178_ + h (J)Lapo; m_184179_ + static + 0 o p_184180_ +aim net/minecraft/server/level/WorldGenRegion + a f_9474_ + b f_9475_ + c f_143479_ + d f_9478_ + e f_9479_ + f f_9480_ + g f_9481_ + h f_9482_ + i f_9483_ + j f_9484_ + k f_184181_ + l f_9486_ + m f_9487_ + n f_9488_ + o f_215157_ + p f_143480_ + q f_143481_ + r f_143482_ + s f_184182_ + t f_215158_ + ()V + static + (Laif;Ljava/util/List;Ldec;I)V + 0 o p_143484_ + 1 o p_143485_ + 2 o p_143486_ + 3 o p_143487_ + A ()J m_7328_ + A_ ()J m_183596_ + B_ ()Lhs; m_9598_ + C ()Laif; m_6018_ + C_ ()I m_141937_ + D_ ()I m_141928_ + G ()Lcaw; m_246046_ + J ()Ldeb; m_7726_ + K ()Lefp; m_183324_ + L ()Lefp; m_183326_ + a (Ljava/util/function/Supplier;)V m_143497_ + 0 o p_143498_ + a (Lbyo;Lgu;Lamg;Lami;FF)V m_5594_ + 0 o p_9528_ + 1 o p_9529_ + 2 o p_9530_ + 3 o p_9531_ + 4 o p_9532_ + 5 o p_9533_ + a (Ldhk$a;II)I m_6924_ + 0 o p_9535_ + 1 o p_9536_ + 2 o p_9537_ + a (IILdec;Z)Lddx; m_6522_ + 0 o p_9514_ + 1 o p_9515_ + 2 o p_9516_ + 3 o p_9517_ + a (Lha;Z)F m_7717_ + 0 o p_9555_ + 1 o p_9556_ + a (Lit;DDDDDD)V m_7106_ + 0 o p_9561_ + 1 o p_9562_ + 2 o p_9563_ + 3 o p_9564_ + 4 o p_9565_ + 5 o p_9566_ + 6 o p_9567_ + a (Lbfj;Leed;Ljava/util/function/Predicate;)Ljava/util/List; m_6249_ + 0 o p_9519_ + 1 o p_9520_ + 2 o p_9521_ + a (Lclt;I)Z m_215159_ + 0 o p_215160_ + 1 o p_215161_ + a (Lgu;Ljava/util/function/Predicate;)Z m_7433_ + 0 o p_9544_ + 1 o p_9545_ + a (II)Lddx; m_6325_ + 0 o p_9507_ + 1 o p_9508_ + a (III)Lhe; m_203675_ + 0 o p_203787_ + 1 o p_203788_ + 2 o p_203789_ + a ()Lclt; m_143488_ + a (Lgu;Z)Z m_7471_ + 0 o p_9547_ + 1 o p_9548_ + a (Lbyo;ILgu;I)V m_5898_ + 0 o p_9523_ + 1 o p_9524_ + 2 o p_9525_ + 3 o p_9526_ + a (Ldfz;Leed;Ljava/util/function/Predicate;)Ljava/util/List; m_142425_ + 0 o p_143494_ + 1 o p_143495_ + 2 o p_143496_ + a (Lgu;Ldcb;II)Z m_6933_ + 0 o p_9539_ + 1 o p_9540_ + 2 o p_9541_ + 3 o p_9542_ + a (DDDDLjava/util/function/Predicate;)Lbyo; m_5788_ + 0 o p_9501_ + 1 o p_9502_ + 2 o p_9503_ + 3 o p_9504_ + 4 o p_9505_ + a (Lgu;ZLbfj;I)Z m_7740_ + 0 o p_9550_ + 1 o p_9551_ + 2 o p_9552_ + 3 o p_9553_ + a (Ldgl;Leei;Ldgl$a;)V m_214171_ + 0 o p_215163_ + 1 o p_215164_ + 2 o p_215165_ + a_ (Lgu;)Ldcb; m_8055_ + 0 o p_9587_ + b (Lbfj;)Z m_7967_ + 0 o p_9580_ + b (Lgu;Ljava/util/function/Predicate;)Z m_142433_ + 0 o p_143500_ + 1 o p_143501_ + b (II)Z m_7232_ + 0 o p_9574_ + 1 o p_9575_ + b_ (Lgu;)Ldxe; m_6425_ + 0 o p_9577_ + c_ (Lgu;)Lczn; m_7702_ + 0 o p_9582_ + d_ (Lgu;)Lbdv; m_6436_ + 0 o p_9585_ + f (Lgu;)V m_9591_ + 0 o p_9592_ + f_ (Lgu;)Z m_180807_ + 0 o p_181031_ + j (Lgu;)Lefw; m_276731_ + 0 o p_277275_ + k (Lgu;)Lefw; m_276730_ + 0 o p_277274_ + n ()Lnet/minecraft/server/MinecraftServer; m_7654_ + r_ ()Z m_5776_ + s_ ()Ldwt; m_5518_ + t_ ()I m_5736_ + u_ ()Ldyv; m_6106_ + v ()Ljava/util/List; m_6907_ + v_ ()I m_7445_ + w_ ()Ldds; m_6857_ + x_ ()Ldfk; m_6042_ + y_ ()Lapf; m_213780_ + z_ ()Lcnm; m_7062_ +ain net/minecraft/server/level/package-info +aio net/minecraft/server/level/progress/ChunkProgressListener + a (Lclt;Ldec;)V m_5511_ + 0 o p_9618_ + 1 o p_9619_ + a ()V m_9662_ + a (Lclt;)V m_7647_ + 0 o p_9617_ + b ()V m_7646_ +aip net/minecraft/server/level/progress/ChunkProgressListenerFactory + create (I)Laio; m_9620_ + 0 o p_9621_ +aiq net/minecraft/server/level/progress/LoggerChunkProgressListener + a f_9622_ + b f_9623_ + c f_9624_ + d f_9625_ + e f_9626_ + ()V + static + (I)V + 0 o p_9629_ + a (Lclt;Ldec;)V m_5511_ + 0 o p_9633_ + 1 o p_9634_ + a ()V m_9662_ + a (Lclt;)V m_7647_ + 0 o p_9631_ + b ()V m_7646_ + c ()I m_9636_ +air net/minecraft/server/level/progress/ProcessorChunkProgressListener + a f_9637_ + b f_9638_ + (Laio;Ljava/util/concurrent/Executor;)V + 0 o p_9640_ + 1 o p_9641_ + a (Lclt;Ldec;)V m_5511_ + 0 o p_9645_ + 1 o p_9646_ + a ()V m_9662_ + a (Laio;Ljava/util/concurrent/Executor;)Lair; m_143583_ + static + 0 o p_143584_ + 1 o p_143585_ + a (Lclt;)V m_7647_ + 0 o p_9643_ + b (Lclt;Ldec;)V m_9650_ + 0 o p_9651_ + 1 o p_9652_ + b (Lclt;)V m_9648_ + 0 o p_9649_ + b ()V m_7646_ +ais net/minecraft/server/level/progress/StoringChunkProgressListener + a f_9653_ + b f_9654_ + c f_9655_ + d f_9656_ + e f_9657_ + f f_9658_ + g f_9659_ + (I)V + 0 o p_9661_ + a (Lclt;Ldec;)V m_5511_ + 0 o p_9669_ + 1 o p_9670_ + a (II)Ldec; m_9663_ + 0 o p_9664_ + 1 o p_9665_ + a ()V m_9662_ + a (Lclt;)V m_7647_ + 0 o p_9667_ + b ()V m_7646_ + c ()I m_9672_ + d ()I m_9673_ + e ()I m_9674_ +ait net/minecraft/server/level/progress/package-info +aiu net/minecraft/server/network/FilteredText + a f_243020_ + b f_215168_ + c f_243010_ + ()V + static + (Ljava/lang/String;Lsz;)V + 0 o f_215168_ + 1 o f_243010_ + a (Ljava/lang/String;)Laiu; m_243054_ + static + 0 o p_243257_ + a ()Ljava/lang/String; m_243090_ + b ()Ljava/lang/String; m_243113_ + b (Ljava/lang/String;)Laiu; m_243131_ + static + 0 o p_243261_ + c ()Z m_215174_ + d ()Ljava/lang/String; f_215168_ + e ()Lsz; f_243010_ + equals (Ljava/lang/Object;)Z equals + 0 o p_215193_ + hashCode ()I hashCode + toString ()Ljava/lang/String; toString +aiv net/minecraft/server/network/LegacyQueryHandler + a f_143586_ + b f_9675_ + c f_9676_ + ()V + static + (Laix;)V + 0 o p_9679_ + a (Lio/netty/channel/ChannelHandlerContext;Lio/netty/buffer/ByteBuf;)V m_9680_ + 0 o p_9681_ + 1 o p_9682_ + a (Ljava/lang/String;)Lio/netty/buffer/ByteBuf; m_9683_ + 0 o p_9684_ + channelRead (Lio/netty/channel/ChannelHandlerContext;Ljava/lang/Object;)V channelRead + 0 o p_9686_ + 1 o p_9687_ +aiw net/minecraft/server/network/MemoryServerHandshakePacketListenerImpl + a f_9688_ + b f_9689_ + (Lnet/minecraft/server/MinecraftServer;Lsd;)V + 0 o p_9691_ + 1 o p_9692_ + a (Labb;)V m_7322_ + 0 o p_9697_ + a ()Z m_6198_ + a (Lsw;)V m_7026_ + 0 o p_9695_ +aix net/minecraft/server/network/ServerConnectionListener + a f_9698_ + b f_9699_ + c f_9700_ + d f_9701_ + e f_9702_ + f f_9703_ + g f_9704_ + ()V + static + (Lnet/minecraft/server/MinecraftServer;)V + 0 o p_9707_ + a (Lsd;Lsw;)V m_9714_ + static + 0 o p_9715_ + 1 o p_9716_ + a ()Ljava/net/SocketAddress; m_9708_ + a (Ljava/net/InetAddress;I)V m_9711_ + 0 o p_9712_ + 1 o p_9713_ + b ()V m_9718_ + c ()V m_9721_ + d ()Lnet/minecraft/server/MinecraftServer; m_9722_ + e ()Ljava/util/List; m_184193_ + f ()Lio/netty/channel/epoll/EpollEventLoopGroup; m_9723_ + static + g ()Lio/netty/channel/nio/NioEventLoopGroup; m_9724_ + static +aix$1 net/minecraft/server/network/ServerConnectionListener$1 + a f_9725_ + (Laix;)V + 0 o p_9727_ + initChannel (Lio/netty/channel/Channel;)V initChannel + 0 o p_9729_ +aix$2 net/minecraft/server/network/ServerConnectionListener$2 + a f_9730_ + (Laix;)V + 0 o p_9732_ + initChannel (Lio/netty/channel/Channel;)V initChannel + 0 o p_9734_ +aix$a net/minecraft/server/network/ServerConnectionListener$LatencySimulator + a f_143587_ + b f_143588_ + c f_143589_ + d f_143590_ + ()V + static + (II)V + 0 o p_143593_ + 1 o p_143594_ + a (Lio/netty/channel/ChannelHandlerContext;Ljava/lang/Object;)V m_143595_ + 0 o p_143596_ + 1 o p_143597_ + a (Lio/netty/util/Timeout;)V m_143598_ + 0 o p_143599_ + channelRead (Lio/netty/channel/ChannelHandlerContext;Ljava/lang/Object;)V channelRead + 0 o p_143601_ + 1 o p_143602_ +aix$a$a net/minecraft/server/network/ServerConnectionListener$LatencySimulator$DelayedMessage + a f_143603_ + b f_143604_ + (Lio/netty/channel/ChannelHandlerContext;Ljava/lang/Object;)V + 0 o p_143606_ + 1 o p_143607_ +aiy net/minecraft/server/network/ServerGamePacketListenerImpl + A f_9763_ + B f_9764_ + C f_9765_ + D f_9766_ + E f_9767_ + F f_9735_ + G f_9736_ + H f_9737_ + I f_9738_ + J f_9739_ + K f_9740_ + L f_9741_ + M f_215197_ + N f_252494_ + O f_240889_ + P f_244262_ + Q f_243718_ + R f_241681_ + a f_215198_ + b f_9743_ + c f_9744_ + d f_143608_ + e f_215199_ + f f_244471_ + g f_244304_ + h f_9742_ + i f_9745_ + j f_9746_ + k f_215200_ + l f_9747_ + m f_9748_ + n f_9749_ + o f_9750_ + p f_9751_ + q f_9753_ + r f_9754_ + s f_9755_ + t f_9756_ + u f_9757_ + v f_9758_ + w f_9759_ + x f_9760_ + y f_9761_ + z f_9762_ + ()V + static + (Lnet/minecraft/server/MinecraftServer;Lsd;Laig;)V + 0 o p_9770_ + 1 o p_9771_ + 2 o p_9772_ + a (Laal;)V m_6947_ + 0 o p_9903_ + a (Laad;)V m_7502_ + 0 o p_9889_ + a (Ljava/lang/String;Ljava/time/Instant;Ltc$b;)Ljava/util/Optional; m_247189_ + 0 o p_251364_ + 1 o p_248959_ + 2 o p_249613_ + a (Lzn;)V m_6557_ + 0 o p_9854_ + a (Ljava/util/function/UnaryOperator;Laiu;)Lri; m_243045_ + static + 0 o p_243193_ + 1 o p_238209_ + a (Lzv;)V m_5683_ + 0 o p_9870_ + a (Laig;Lcfz;)Z m_9790_ + static + 0 o p_9791_ + 1 o p_9792_ + a (Lzf;)V m_7477_ + 0 o p_9839_ + a (Ljava/util/List;)Ljava/util/concurrent/CompletableFuture; m_243065_ + 0 o p_243258_ + a (Laao;)V m_7798_ + 0 o p_9909_ + a (Ltm;)V m_253005_ + 0 o p_253823_ + a (Laaw;)V m_6936_ + 0 o p_9928_ + a (Lsw;Lss$a;)V m_245903_ + 0 o p_251804_ + 1 o p_250040_ + a (Laag;)V m_142110_ + 0 o p_143652_ + a (DDDFF)V m_9774_ + 0 o p_9775_ + 1 o p_9776_ + 2 o p_9777_ + 3 o p_9778_ + 4 o p_9779_ + a (Lzm;Lcom/mojang/brigadier/suggestion/Suggestions;)V m_184201_ + 0 o p_238929_ + 1 o p_238197_ + a (Lzs;)V m_7548_ + 0 o p_9864_ + a (Ljava/time/Instant;)Z m_215236_ + 0 o p_215237_ + a (ILjava/util/List;)V m_143625_ + 0 o p_143626_ + 1 o p_143627_ + a (Laiu;Ljava/util/List;I)V m_215208_ + 0 o p_215209_ + 1 o p_215210_ + 2 o p_215211_ + a (Laar;)V m_5964_ + 0 o p_9915_ + a (Lzk;)V m_6272_ + 0 o p_9843_ + a (Lsw;)V m_7026_ + 0 o p_9825_ + a (Ljava/lang/Object;Ljava/util/function/BiFunction;)Ljava/util/concurrent/CompletableFuture; m_243080_ + 0 o p_243240_ + 1 o p_243271_ + a (Laaj;)V m_5591_ + 0 o p_9899_ + a (Ltl;Ljava/util/concurrent/CompletableFuture;Ljava/util/concurrent/CompletableFuture;Ljava/lang/Void;)V m_244886_ + 0 o p_248215_ + 1 o p_248216_ + 2 o p_248217_ + 3 o p_248218_ + a (Laab;)V m_7191_ + 0 o p_9882_ + a (Lzp;)V m_7951_ + 0 o p_9858_ + a (Lzh;Ljava/util/Optional;)V m_244885_ + 0 o p_248213_ + 1 o p_248214_ + a (Lzx;)V m_7185_ + 0 o p_9874_ + a (Ltl;Lss$a;)V m_245431_ + 0 o p_250321_ + 1 o p_250910_ + a (Laau;)V m_5527_ + 0 o p_9921_ + a (D)D m_143609_ + static + 0 o p_143610_ + a (Ljava/util/List;I)V m_9812_ + 0 o p_9813_ + 1 o p_9814_ + a ()Z m_6198_ + a (Luo;)V m_9829_ + 0 o p_9830_ + a (Lzh;)V m_214047_ + 0 o p_215225_ + a (Ldq;Lds;)Lds; m_242538_ + static + 0 o p_242748_ + 1 o p_242749_ + a (Lzu;)V m_6449_ + 0 o p_9868_ + a (Ltm;Ljava/util/concurrent/Executor;)Ljava/util/concurrent/CompletableFuture; m_252662_ + 0 o p_253487_ + 1 o p_253488_ + a (Ljava/lang/String;)Ljava/util/concurrent/CompletableFuture; m_243132_ + 0 o p_243213_ + a (I)V m_215201_ + 0 o p_215202_ + a (Laam;)V m_6321_ + 0 o p_9905_ + a (Ljava/util/List;Ljava/util/function/UnaryOperator;Lcfz;)V m_143634_ + 0 o p_143635_ + 1 o p_143636_ + 2 o p_143637_ + a (Lzi;Ljava/util/Optional;)V m_244887_ + 0 o p_248219_ + 1 o p_248220_ + a (Laae;)V m_5681_ + 0 o p_9891_ + a (Lbfj;)Z m_9793_ + 0 o p_9794_ + a (Lzm;)V m_7741_ + 0 o p_9847_ + a (Luo;Lsl;)V m_243119_ + 0 o p_243227_ + 1 o p_243273_ + a (Lze;)V m_6780_ + 0 o p_9837_ + a (Laap;)V m_7192_ + 0 o p_9911_ + a (Laax;)V m_6371_ + 0 o p_9930_ + a (Lzh;Ltn;Ltc;)Ljava/util/Map; m_246206_ + 0 o p_249441_ + 1 o p_250039_ + 2 o p_249207_ + a (Laah;)V m_7982_ + 0 o p_9895_ + a (DDDFFLjava/util/Set;)V m_9780_ + 0 o p_9781_ + 1 o p_9782_ + 2 o p_9783_ + 3 o p_9784_ + 4 o p_9785_ + 5 o p_9786_ + a (Lzz;)V m_5938_ + 0 o p_9878_ + a (Lzr;)V m_6829_ + 0 o p_9862_ + a (Lzj;)V m_252797_ + 0 o p_253950_ + a (Laas;)V m_8019_ + 0 o p_9917_ + a (Lzi;Ltc;)Ltl; m_247340_ + 0 o p_251061_ + 1 o p_250566_ + a (Ljava/lang/Object;)Ljava/lang/Object; m_263968_ + 0 o p_264862_ + a (Laak;)V m_7529_ + 0 o p_9901_ + a (Lzo;)V m_5914_ + 0 o p_9856_ + a (Laac;)V m_6828_ + 0 o p_9887_ + a (Lzw;)V m_7728_ + 0 o p_9872_ + a (Lzg;)V m_241885_ + 0 o p_242387_ + a (Laau;Ljava/util/List;)V m_9922_ + 0 o p_9923_ + 1 o p_9924_ + a (Laan;)V m_5712_ + 0 o p_9907_ + a (Ltl;)V m_241992_ + 0 o p_242439_ + a (Laav;)V m_7953_ + 0 o p_9926_ + a (Lzt;)V m_6946_ + 0 o p_9866_ + a (Laaf;)V m_5918_ + 0 o p_9893_ + a (Ltc$b;)Ljava/util/Optional; m_245578_ + 0 o p_249673_ + a (Lcmp;Leed;DDD)Z m_288208_ + 0 o p_289008_ + 1 o p_288986_ + 2 o p_288990_ + 3 o p_288991_ + 4 o p_288967_ + a (Ljava/util/concurrent/CompletableFuture;Ljava/util/concurrent/CompletableFuture;Ltl;Ljava/util/concurrent/Executor;)Ljava/util/concurrent/CompletableFuture; m_244884_ + 0 o p_248209_ + 1 o p_248210_ + 2 o p_248211_ + 3 o p_248212_ + a (Lzh;Ltc;)V m_246958_ + 0 o p_251139_ + 1 o p_250484_ + a (Lzl;)V m_5617_ + 0 o p_9845_ + a (Lzd;)V m_7376_ + 0 o p_9835_ + a (Laaq;)V m_6629_ + 0 o p_9913_ + a (Laay;)V m_5760_ + 0 o p_9932_ + a (Laai;)V m_7411_ + 0 o p_9897_ + a (Laab;Lcjc;)V m_287055_ + 0 o p_287378_ + 1 o p_287379_ + a (Lzq;)V m_7423_ + 0 o p_9860_ + a (Laaa;)V m_7965_ + 0 o p_9880_ + a (Lzy;)V m_5659_ + 0 o p_9876_ + a (Laat;)V m_7424_ + 0 o p_9919_ + a (Ltp$a;)V m_246889_ + 0 o p_252068_ + a (Lzi;)V m_7388_ + 0 o p_9841_ + b (Luo;)Ljava/lang/String; m_143658_ + static + 0 o p_238933_ + b (ILjava/util/List;)V m_215203_ + 0 o p_215204_ + 1 o p_238198_ + b (Laau;Ljava/util/List;)V m_215243_ + 0 o p_215244_ + 1 o p_215245_ + b (Ljava/lang/String;)Lcom/mojang/brigadier/ParseResults; m_242658_ + 0 o p_242938_ + b (Ltl;)V m_243086_ + 0 o p_243277_ + b (DDDFF)Z m_143663_ + static + 0 o p_143664_ + 1 o p_143665_ + 2 o p_143666_ + 3 o p_143667_ + 4 o p_143668_ + b (D)D m_143653_ + static + 0 o p_143654_ + b (Lsw;)V m_9942_ + 0 o p_9943_ + c (Ljava/lang/String;)Z m_215214_ + static + 0 o p_215215_ + c ()V m_9933_ + c (Lsw;)V m_9826_ + 0 o p_9827_ + d (Ljava/lang/String;)Ljava/lang/String; m_238207_ + static + 0 o p_238206_ + d ()V m_9953_ + e ()Ljava/net/SocketAddress; m_264262_ + f ()Laig; m_142253_ + g ()Z m_9956_ + h ()V m_215251_ +aiy$1 net/minecraft/server/network/ServerGamePacketListenerImpl$1 + a f_243930_ + b f_143670_ + c f_143671_ + (Laiy;Laif;Lbfj;)V + 0 o p_250677_ + 1 o p_252145_ + 2 o p_251009_ + a (Lbdw;)V m_142299_ + 0 o p_143677_ + a (Lbdw;Leei;)V m_142143_ + 0 o p_143682_ + 1 o p_143683_ + a ()V m_141994_ + a (Lbdw;Laiy$a;)V m_143678_ + 0 o p_143679_ + 1 o p_143680_ + a (Leei;Laig;Lbfj;Lbdw;)Lbdx; m_143684_ + static + 0 o p_143685_ + 1 o p_143686_ + 2 o p_143687_ + 3 o p_143688_ +aiy$2 net/minecraft/server/network/ServerGamePacketListenerImpl$2 + a f_143689_ + b f_143690_ + c f_143691_ + d f_143692_ + ()V + static +aiy$a net/minecraft/server/network/ServerGamePacketListenerImpl$EntityInteraction + run (Laig;Lbfj;Lbdw;)Lbdx; m_143694_ + 0 o p_143695_ + 1 o p_143696_ + 2 o p_143697_ +aiz net/minecraft/server/network/ServerHandshakePacketListenerImpl + a f_9964_ + b f_9965_ + c f_9966_ + ()V + static + (Lnet/minecraft/server/MinecraftServer;Lsd;)V + 0 o p_9969_ + 1 o p_9970_ + a (Labb;)V m_7322_ + 0 o p_9975_ + a ()Z m_6198_ + a (Lsw;)V m_7026_ + 0 o p_9973_ +aiz$1 net/minecraft/server/network/ServerHandshakePacketListenerImpl$1 + a f_9976_ + ()V + static +aj net/minecraft/advancements/Criterion + a f_11412_ + (Lam;)V + 0 o p_11415_ + ()V + a (Ljava/util/Map;Lsf;)V m_11420_ + static + 0 o p_11421_ + 1 o p_11422_ + a (Lsf;Laj;)V m_145257_ + static + 0 o p_145258_ + 1 o p_145259_ + a ()Lam; m_11416_ + a (Lcom/google/gson/JsonObject;Lbe;)Laj; m_11417_ + static + 0 o p_11418_ + 1 o p_11419_ + a (Lsf;)V m_11423_ + 0 o p_11424_ + b (Lsf;)Laj; m_11429_ + static + 0 o p_11430_ + b (Lcom/google/gson/JsonObject;Lbe;)Ljava/util/Map; m_11426_ + static + 0 o p_11427_ + 1 o p_11428_ + b ()Lcom/google/gson/JsonElement; m_11425_ + c (Lsf;)Ljava/util/Map; m_11431_ + static + 0 o p_11432_ +aja net/minecraft/server/network/ServerLoginPacketListenerImpl + a f_10014_ + b f_10015_ + c f_143698_ + d f_10016_ + e f_252396_ + f f_10018_ + g f_10013_ + h f_10019_ + i f_10020_ + j f_10021_ + k f_10022_ + l f_10024_ + ()V + static + (Lnet/minecraft/server/MinecraftServer;Lsd;)V + 0 o p_10027_ + 1 o p_10028_ + a (Lcom/mojang/authlib/GameProfile;)Lcom/mojang/authlib/GameProfile; m_10038_ + 0 o p_10039_ + a (Labl;)V m_7223_ + 0 o p_10045_ + a ()Z m_6198_ + a (Labn;)V m_8072_ + 0 o p_10049_ + a (Labm;)V m_5990_ + 0 o p_10047_ + a (Lsw;)V m_7026_ + 0 o p_10043_ + a (I)Z m_203790_ + static + 0 o p_203791_ + a (Laig;)V m_143699_ + 0 o p_143700_ + a (Ljava/lang/String;)Z m_203792_ + static + 0 o p_203793_ + b (Lsw;)V m_10053_ + 0 o p_10054_ + c ()V m_9933_ + d ()V m_10055_ + e ()Ljava/lang/String; m_10056_ + f ()V m_10040_ +aja$1 net/minecraft/server/network/ServerLoginPacketListenerImpl$1 + a f_10058_ + b f_10059_ + (Laja;Ljava/lang/String;Ljava/lang/String;)V + 0 o p_10061_ + 1 o p_10062_ + 2 o p_10063_ + a ()Ljava/net/InetAddress; m_10064_ + run ()V run +aja$a net/minecraft/server/network/ServerLoginPacketListenerImpl$State + a HELLO + b KEY + c AUTHENTICATING + d NEGOTIATING + e READY_TO_ACCEPT + f DELAY_ACCEPT + g ACCEPTED + h $VALUES + ()V + static + (Ljava/lang/String;I)V + 0 o p_10076_ + 1 o p_10077_ + a ()[Laja$a; m_143701_ + static + valueOf (Ljava/lang/String;)Laja$a; valueOf + static + 0 o p_10079_ + values ()[Laja$a; values + static +ajb net/minecraft/server/network/ServerPlayerConnection + a (Luo;)V m_9829_ + 0 o p_143702_ + f ()Laig; m_142253_ +ajc net/minecraft/server/network/ServerStatusPacketListenerImpl + a f_10081_ + b f_271204_ + c f_10083_ + d f_10084_ + ()V + static + (Labt;Lsd;)V + 0 o p_272864_ + 1 o p_273586_ + a (Labv;)V m_7883_ + 0 o p_10093_ + a ()Z m_6198_ + a (Lsw;)V m_7026_ + 0 o p_10091_ + a (Labw;)V m_6733_ + 0 o p_10095_ +ajd net/minecraft/server/network/TextFilter + a f_143703_ + ()V + static + a (Ljava/lang/String;)Ljava/util/concurrent/CompletableFuture; m_6770_ + 0 o p_10096_ + a ()V m_7674_ + a (Ljava/util/List;)Ljava/util/concurrent/CompletableFuture; m_5925_ + 0 o p_10097_ + b ()V m_7670_ +ajd$1 net/minecraft/server/network/TextFilter$1 + ()V + a (Ljava/lang/String;)Ljava/util/concurrent/CompletableFuture; m_6770_ + 0 o p_143708_ + a ()V m_7674_ + a (Ljava/util/List;)Ljava/util/concurrent/CompletableFuture; m_5925_ + 0 o p_143710_ + b ()V m_7670_ +aje net/minecraft/server/network/TextFilterClient + a f_10098_ + b f_10099_ + c f_10100_ + d f_215270_ + e f_10101_ + f f_215271_ + g f_10102_ + h f_215272_ + i f_10103_ + j f_215273_ + k f_10104_ + l f_10107_ + m f_10108_ + ()V + static + (Ljava/net/URL;Laje$c;Ljava/net/URL;Laje$b;Ljava/net/URL;Laje$b;Ljava/lang/String;Laje$a;I)V + 0 o p_215275_ + 1 o p_215276_ + 2 o p_215277_ + 3 o p_215278_ + 4 o p_215279_ + 5 o p_215280_ + 6 o p_215281_ + 7 o p_215282_ + 8 o p_215283_ + a (Lcom/google/gson/JsonObject;Ljava/lang/String;Ljava/lang/String;)Ljava/lang/String; m_215294_ + static + 0 o p_215295_ + 1 o p_215296_ + 2 o p_215297_ + a (Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Lcom/mojang/authlib/GameProfile;Ljava/lang/String;)Lcom/google/gson/JsonObject; m_238216_ + static + 0 o p_238217_ + 1 o p_238218_ + 2 o p_238219_ + 3 o p_238220_ + 4 o p_238221_ + a (Lcom/google/gson/JsonObject;Ljava/net/URL;)Lcom/google/gson/JsonObject; m_10127_ + 0 o p_10128_ + 1 o p_10129_ + a (Laje$b;Lcom/mojang/authlib/GameProfile;Ljava/net/URL;)V m_215290_ + 0 o p_215291_ + 1 o p_215292_ + 2 o p_215293_ + a (Ljava/lang/String;Ljava/lang/String;Lcom/mojang/authlib/GameProfile;)Lcom/google/gson/JsonObject; m_215307_ + static + 0 o p_215308_ + 1 o p_215309_ + 2 o p_215310_ + a (Ljava/net/URI;Lcom/google/gson/JsonObject;Ljava/lang/String;Ljava/lang/String;)Ljava/net/URL; m_212245_ + static + 0 o p_212246_ + 1 o p_212247_ + 2 o p_212248_ + 3 o p_212249_ + a (Ljava/lang/String;)Laje; m_143736_ + static + 0 o p_143737_ + a (Lcom/mojang/authlib/GameProfile;Ljava/net/URL;Laje$b;Ljava/util/concurrent/Executor;)V m_215302_ + 0 o p_215303_ + 1 o p_215304_ + 2 o p_215305_ + 3 o p_215306_ + a (Ljava/lang/String;Lcom/google/gson/JsonArray;Laje$a;)Lsz; m_243083_ + 0 o p_243283_ + 1 o p_243222_ + 2 o p_243237_ + a (Lcom/mojang/authlib/GameProfile;)Lajd; m_10134_ + 0 o p_10135_ + a (Lcom/mojang/authlib/GameProfile;Ljava/lang/String;Laje$a;Ljava/util/concurrent/Executor;)Ljava/util/concurrent/CompletableFuture; m_10136_ + 0 o p_10137_ + 1 o p_10138_ + 2 o p_10139_ + 3 o p_10140_ + a (Lcom/mojang/authlib/GameProfile;Ljava/lang/String;Laje$a;)Laiu; m_243047_ + 0 o p_243198_ + 1 o p_243199_ + 2 o p_243200_ + a (Ljava/lang/Runnable;)Ljava/lang/Thread; m_10147_ + static + 0 o p_10148_ + a (Ljava/io/InputStream;)V m_10145_ + 0 o p_10146_ + a (ILjava/lang/String;Ljava/lang/String;Lcom/mojang/authlib/GameProfile;Ljava/lang/String;)Lcom/google/gson/JsonObject; m_238210_ + static + 0 o p_238211_ + 1 o p_238212_ + 2 o p_238213_ + 3 o p_238214_ + 4 o p_238215_ + b (Lcom/google/gson/JsonObject;Ljava/net/URL;)V m_10151_ + 0 o p_10152_ + 1 o p_10153_ + c (Lcom/google/gson/JsonObject;Ljava/net/URL;)Ljava/net/HttpURLConnection; m_10156_ + 0 o p_10157_ + 1 o p_10158_ + close ()V close +aje$a net/minecraft/server/network/TextFilterClient$IgnoreStrategy + a f_10162_ + b f_10163_ + ()V + static + a (Ljava/lang/String;I)Z m_10165_ + static + 0 o p_10166_ + 1 o p_10167_ + a (ILjava/lang/String;I)Z m_143740_ + static + 0 o p_143741_ + 1 o p_143742_ + 2 o p_143743_ + b (Ljava/lang/String;I)Z m_10168_ + static + 0 o p_10169_ + 1 o p_10170_ + ignoreOverThreshold (I)Laje$a; m_143738_ + static + 0 o p_143739_ + select (I)Laje$a; m_143744_ + static + 0 o p_143745_ + shouldIgnore (Ljava/lang/String;I)Z m_10171_ + 0 o p_10172_ + 1 o p_10173_ +aje$b net/minecraft/server/network/TextFilterClient$JoinOrLeaveEncoder + encode (Lcom/mojang/authlib/GameProfile;)Lcom/google/gson/JsonObject; m_215317_ + 0 o p_215318_ +aje$c net/minecraft/server/network/TextFilterClient$MessageEncoder + encode (Lcom/mojang/authlib/GameProfile;Ljava/lang/String;)Lcom/google/gson/JsonObject; m_215319_ + 0 o p_215320_ + 1 o p_215321_ +aje$d net/minecraft/server/network/TextFilterClient$PlayerContext + b f_10174_ + c f_10175_ + d f_10176_ + (Laje;Lcom/mojang/authlib/GameProfile;)V + 0 o p_10178_ + 1 o p_10179_ + a (Ljava/lang/String;)Ljava/util/concurrent/CompletableFuture; m_6770_ + 0 o p_10186_ + a ()V m_7674_ + a (Ljava/util/List;)Ljava/util/concurrent/CompletableFuture; m_5925_ + 0 o p_10190_ + a (Ljava/lang/Throwable;)Ljava/util/List; m_143746_ + static + 0 o p_143747_ + b ()V m_7670_ + b (Ljava/lang/String;)Ljava/util/concurrent/CompletableFuture; m_10194_ + 0 o p_10195_ +aje$e net/minecraft/server/network/TextFilterClient$RequestFailedException + (Ljava/lang/String;)V + 0 o p_10199_ +ajf net/minecraft/server/network/package-info +ajg net/minecraft/server/package-info +ajh net/minecraft/server/packs/AbstractPackResources + a f_10204_ + d f_243737_ + e f_254645_ + ()V + static + (Ljava/lang/String;Z)V + 0 o p_255888_ + 1 o p_256392_ + a (Lajx;)Ljava/lang/Object; m_5550_ + 0 o p_10213_ + a (Lajx;Ljava/io/InputStream;)Ljava/lang/Object; m_10214_ + static + 0 o p_10215_ + 1 o p_10216_ + a ()Ljava/lang/String; m_5542_ + b ()Z m_246538_ +aji net/minecraft/server/packs/BuiltInMetadata + a f_244025_ + b f_243980_ + ()V + static + (Ljava/util/Map;)V + 0 o p_251588_ + a (Lajx;)Ljava/lang/Object; m_245920_ + 0 o p_251597_ + a ()Laji; m_246355_ + static + a (Lajx;Ljava/lang/Object;)Laji; m_246652_ + static + 0 o p_248992_ + 1 o p_249997_ + a (Lajx;Ljava/lang/Object;Lajx;Ljava/lang/Object;)Laji; m_245257_ + static + 0 o p_252035_ + 1 o p_252174_ + 2 o p_249734_ + 3 o p_250020_ +ajj net/minecraft/server/packs/FeatureFlagsMetadataSection + a f_244642_ + b f_244197_ + c f_244224_ + ()V + static + (Lcaw;)V + 0 o f_244197_ + a ()Lcaw; f_244197_ + a (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; m_246586_ + static + 0 o p_251762_ + equals (Ljava/lang/Object;)Z equals + 0 o p_249629_ + hashCode ()I hashCode + toString ()Ljava/lang/String; toString +ajk net/minecraft/server/packs/FilePackResources + a f_10232_ + d f_215322_ + e f_243750_ + f f_10233_ + g f_243662_ + ()V + static + (Ljava/lang/String;Ljava/io/File;Z)V + 0 o p_256076_ + 1 o p_255707_ + 2 o p_256556_ + a (Lajm;Ljava/lang/String;Ljava/lang/String;Lajl$a;)V m_8031_ + 0 o p_250500_ + 1 o p_249598_ + 2 o p_251613_ + 3 o p_250655_ + a (Lajm;)Ljava/util/Set; m_5698_ + 0 o p_10238_ + a (Ljava/lang/String;)Lakp; m_247280_ + 0 o p_251795_ + a (Lajm;Lacq;)Lakp; m_214146_ + 0 o p_249605_ + 1 o p_252147_ + a ([Ljava/lang/String;)Lakp; m_8017_ + 0 o p_248514_ + b (Lajm;Lacq;)Ljava/lang/String; m_245721_ + static + 0 o p_250585_ + 1 o p_251470_ + c ()Ljava/util/zip/ZipFile; m_10247_ + close ()V close + finalize ()V finalize +ajl net/minecraft/server/packs/PackResources + b f_143748_ + c f_143749_ + a (Lajx;)Ljava/lang/Object; m_5550_ + 0 o p_10291_ + a (Lajm;Ljava/lang/String;Ljava/lang/String;Lajl$a;)V m_8031_ + 0 o p_10289_ + 1 o p_251379_ + 2 o p_251932_ + 3 o p_249347_ + a ()Ljava/lang/String; m_5542_ + a (Lajm;)Ljava/util/Set; m_5698_ + 0 o p_10283_ + a (Lajm;Lacq;)Lakp; m_214146_ + 0 o p_215339_ + 1 o p_249034_ + a ([Ljava/lang/String;)Lakp; m_8017_ + 0 o p_252049_ + b ()Z m_246538_ + close ()V close +ajl$a net/minecraft/server/packs/PackResources$ResourceOutput +ajm net/minecraft/server/packs/PackType + a CLIENT_RESOURCES + b SERVER_DATA + c f_10298_ + d $VALUES + ()V + static + (Ljava/lang/String;ILjava/lang/String;)V + 0 o p_265522_ + 1 o p_265642_ + 2 o p_265479_ + a ()Ljava/lang/String; m_10305_ + b ()[Lajm; m_143758_ + static + valueOf (Ljava/lang/String;)Lajm; valueOf + static + 0 o p_10307_ + values ()[Lajm; values + static +ajn net/minecraft/server/packs/PathPackResources + a f_244043_ + d f_244478_ + e f_243919_ + ()V + static + (Ljava/lang/String;Ljava/nio/file/Path;Z)V + 0 o p_255754_ + 1 o p_256025_ + 2 o p_256260_ + a (Ljava/nio/file/Path;Ljava/nio/file/attribute/BasicFileAttributes;)Z m_247260_ + static + 0 o p_250060_ + 1 o p_250796_ + a (Lacq;Lcom/mojang/serialization/DataResult$PartialResult;)Lakp; m_246537_ + static + 0 o p_251675_ + 1 o p_248714_ + a (Lajm;Ljava/lang/String;Ljava/lang/String;Lajl$a;)V m_8031_ + 0 o p_251452_ + 1 o p_249854_ + 2 o p_248650_ + 3 o p_248572_ + a (Ljava/lang/String;Ljava/nio/file/Path;Ljava/util/List;Lajl$a;)V m_246914_ + static + 0 o p_249455_ + 1 o p_249514_ + 2 o p_251918_ + 3 o p_249964_ + a (Ljava/lang/String;Lcom/mojang/serialization/DataResult$PartialResult;)V m_246950_ + static + 0 o p_251502_ + 1 o p_252338_ + a (Lacq;Ljava/nio/file/Path;)Lakp; m_247113_ + static + 0 o p_250145_ + 1 o p_251046_ + a (Lajm;Ljava/lang/String;Lajl$a;Ljava/util/List;)V m_245378_ + 0 o p_251401_ + 1 o p_251974_ + 2 o p_252051_ + 3 o p_250225_ + a (Ljava/nio/file/Path;Ljava/lang/String;Lajl$a;Ljava/nio/file/Path;)V m_247327_ + static + 0 o p_251626_ + 1 o p_251166_ + 2 o p_248732_ + 3 o p_249092_ + a (Lajm;)Ljava/util/Set; m_5698_ + 0 o p_251896_ + a (Ljava/nio/file/Path;)Z m_246877_ + static + 0 o p_249579_ + a (Lajm;Lacq;)Lakp; m_214146_ + 0 o p_249352_ + 1 o p_251715_ + a (Ljava/nio/file/Path;Ljava/util/List;)Lakp; m_245898_ + static + 0 o p_251860_ + 1 o p_251647_ + a ([Ljava/lang/String;)Lakp; m_8017_ + 0 o p_249041_ + b (Ljava/nio/file/Path;)Lakp; m_246992_ + static + 0 o p_250506_ + close ()V close +ajo net/minecraft/server/packs/VanillaPackResources + a f_10315_ + d f_243789_ + e f_10314_ + f f_244169_ + g f_244459_ + ()V + static + (Laji;Ljava/util/Set;Ljava/util/List;Ljava/util/Map;)V + 0 o p_249743_ + 1 o p_250468_ + 2 o p_248798_ + 3 o p_251106_ + a (Lacq;Lcom/mojang/serialization/DataResult$PartialResult;)Lakp; m_244891_ + static + 0 o p_248229_ + 1 o p_248230_ + a (Lacq;Lajm;Ljava/util/List;)Lakp; m_244889_ + 0 o p_248222_ + 1 o p_248223_ + 2 o p_248224_ + a (Lajm;Ljava/lang/String;Ljava/lang/String;Lajl$a;)V m_8031_ + 0 o p_248974_ + 1 o p_248703_ + 2 o p_250848_ + 3 o p_249668_ + a (Lajm;Lacq;Ljava/util/function/Consumer;)V m_245163_ + 0 o p_252103_ + 1 o p_250441_ + 2 o p_251968_ + a ()Ljava/lang/String; m_5542_ + a (Lajm;Lajl$a;Ljava/lang/String;Ljava/util/List;)V m_244890_ + 0 o p_248225_ + 1 o p_248226_ + 2 o p_248227_ + 3 o p_248228_ + a (Lacq;Lajm;Ljava/util/function/Consumer;Ljava/util/List;)V m_244894_ + 0 o p_248235_ + 1 o p_248236_ + 2 o p_248237_ + 3 o p_248238_ + a (Ljava/lang/String;Lcom/mojang/serialization/DataResult$PartialResult;)V m_244893_ + static + 0 o p_248233_ + 1 o p_248234_ + a (Lakp;)Lakv; m_244888_ + 0 o p_248221_ + a (Lajl$a;Ljava/lang/String;Ljava/nio/file/Path;Ljava/util/List;)V m_246310_ + static + 0 o p_249662_ + 1 o p_251249_ + 2 o p_251290_ + 3 o p_250451_ + a (Lajx;)Ljava/lang/Object; m_5550_ + 0 o p_10333_ + a (Lajm;)Ljava/util/Set; m_5698_ + 0 o p_10322_ + a (Lacq;)Ljava/util/Optional; m_244895_ + 0 o p_248239_ + a (Lajm;Lacq;)Lakp; m_214146_ + 0 o p_250512_ + 1 o p_251554_ + a ([Ljava/lang/String;)Lakp; m_8017_ + 0 o p_250530_ + b (Lacq;Lcom/mojang/serialization/DataResult$PartialResult;)V m_244892_ + static + 0 o p_248231_ + 1 o p_248232_ + b ()Z m_246538_ + c ()Lala; m_215363_ + close ()V close +ajp net/minecraft/server/packs/VanillaPackResourcesBuilder + a f_244395_ + b f_244501_ + c f_243987_ + d f_244434_ + e f_243956_ + f f_243924_ + g f_244548_ + ()V + static + ()V + a ()Lajp; m_246373_ + a (Lajm;Ljava/nio/file/Path;)Lajp; m_246275_ + 0 o p_248623_ + 1 o p_250065_ + a (Lajp;)V m_247168_ + static + 0 o p_251787_ + a (Ljava/nio/file/Path;)Lajp; m_245630_ + 0 o p_249464_ + a (Laji;)Lajp; m_245913_ + 0 o p_249597_ + a (Ljava/util/Collection;)Ljava/util/List; m_247634_ + static + 0 o p_252072_ + a (Lajm;Ljava/lang/Class;)Lajp; m_246513_ + 0 o p_251987_ + 1 o p_249062_ + a (Lajm;)Ljava/util/Set; m_246191_ + static + 0 o p_250639_ + a ([Ljava/lang/String;)Lajp; m_245371_ + 0 o p_250838_ + a (Ljava/net/URI;)Ljava/nio/file/Path; m_246045_ + static + 0 o p_248652_ + b ()Lajp; m_246678_ + b (Lajm;Ljava/nio/file/Path;)V m_246356_ + 0 o p_250073_ + 1 o p_252259_ + b (Ljava/nio/file/Path;)Z m_247040_ + 0 o p_249112_ + c (Lajm;Ljava/nio/file/Path;)V m_245153_ + 0 o p_251514_ + 1 o p_251979_ + c (Ljava/nio/file/Path;)V m_245487_ + 0 o p_251084_ + c ()Lajo; m_245772_ + d ()Lcom/google/common/collect/ImmutableMap; m_246520_ + static +ajq net/minecraft/server/packs/linkfs/DummyFileAttributes + a f_244405_ + ()V + static + ()V + creationTime ()Ljava/nio/file/attribute/FileTime; creationTime + fileKey ()Ljava/lang/Object; fileKey + isOther ()Z isOther + isSymbolicLink ()Z isSymbolicLink + lastAccessTime ()Ljava/nio/file/attribute/FileTime; lastAccessTime + lastModifiedTime ()Ljava/nio/file/attribute/FileTime; lastModifiedTime + size ()J size +ajr net/minecraft/server/packs/linkfs/LinkFSFileStore + a f_244515_ + (Ljava/lang/String;)V + 0 o p_249242_ + getAttribute (Ljava/lang/String;)Ljava/lang/Object; getAttribute + 0 o p_249050_ + getFileStoreAttributeView (Ljava/lang/Class;)Ljava/nio/file/attribute/FileStoreAttributeView; getFileStoreAttributeView + 0 o p_251981_ + getTotalSpace ()J getTotalSpace + getUnallocatedSpace ()J getUnallocatedSpace + getUsableSpace ()J getUsableSpace + isReadOnly ()Z isReadOnly + name ()Ljava/lang/String; name + supportsFileAttributeView (Ljava/lang/Class;)Z supportsFileAttributeView + 0 o p_251407_ + supportsFileAttributeView (Ljava/lang/String;)Z supportsFileAttributeView + 0 o p_250666_ + type ()Ljava/lang/String; type +ajs net/minecraft/server/packs/linkfs/LinkFSPath + a f_243881_ + b f_243746_ + c f_244038_ + d f_244036_ + e f_243986_ + f f_244587_ + g f_244015_ + h f_243677_ + i f_244000_ + ()V + static + (Laju;Ljava/lang/String;Lajs;Lajv;)V + 0 o p_251111_ + 1 o p_250681_ + 2 o p_251363_ + 3 o p_251268_ + a (I)Lajs; getName + 0 o p_248550_ + a (Ljava/nio/file/Path;)Lajs; resolve + 0 o p_251657_ + a ()Laju; getFileSystem + a (Lajs;Ljava/lang/String;)Lajs; m_245307_ + 0 o p_249276_ + 1 o p_249966_ + a (Ljava/util/List;)Lajs; m_246014_ + 0 o p_252101_ + a (Lajv;)Z m_245789_ + static + 0 o p_248750_ + a (Ljava/lang/String;)Lajs; m_247714_ + 0 o p_249718_ + a ([Ljava/nio/file/LinkOption;)Lajs; toRealPath + 0 o p_251187_ + a (II)Lajs; subpath + 0 o p_251923_ + 1 o p_248807_ + b (Ljava/nio/file/Path;)Lajs; relativize + 0 o p_250294_ + b ()Lajs; getRoot + c ()Lajs; getFileName + c (Ljava/nio/file/Path;)Lajs; m_246027_ + 0 o p_250907_ + compareTo (Ljava/lang/Object;)I compareTo + 0 o p_251488_ + compareTo (Ljava/nio/file/Path;)I compareTo + 0 o p_250005_ + d ()Lajs; getParent + e ()Lajs; normalize + endsWith (Ljava/nio/file/Path;)Z endsWith + 0 o p_250070_ + equals (Ljava/lang/Object;)Z equals + 0 o p_248707_ + f ()Lajs; toAbsolutePath + g ()Z m_245626_ + getFileName ()Ljava/nio/file/Path; getFileName + getFileSystem ()Ljava/nio/file/FileSystem; getFileSystem + getName (I)Ljava/nio/file/Path; getName + 0 o p_249048_ + getNameCount ()I getNameCount + getParent ()Ljava/nio/file/Path; getParent + getRoot ()Ljava/nio/file/Path; getRoot + h ()Ljava/nio/file/Path; m_247488_ + hashCode ()I hashCode + i ()Lajv$a; m_245177_ + isAbsolute ()Z isAbsolute + j ()Ljava/nio/file/attribute/BasicFileAttributeView; m_246530_ + k ()Ljava/nio/file/attribute/BasicFileAttributes; m_246308_ + l ()Ljava/util/List; m_246070_ + m ()Z m_246418_ + n ()Ljava/lang/String; m_245921_ + normalize ()Ljava/nio/file/Path; normalize + register (Ljava/nio/file/WatchService;[Ljava/nio/file/WatchEvent$Kind;[Ljava/nio/file/WatchEvent$Modifier;)Ljava/nio/file/WatchKey; register + 0 o p_249189_ + 1 o p_249917_ + 2 o p_251602_ + relativize (Ljava/nio/file/Path;)Ljava/nio/file/Path; relativize + 0 o p_249462_ + resolve (Ljava/nio/file/Path;)Ljava/nio/file/Path; resolve + 0 o p_251332_ + startsWith (Ljava/nio/file/Path;)Z startsWith + 0 o p_248923_ + subpath (II)Ljava/nio/file/Path; subpath + 0 o p_251374_ + 1 o p_248761_ + toAbsolutePath ()Ljava/nio/file/Path; toAbsolutePath + toFile ()Ljava/io/File; toFile + toRealPath ([Ljava/nio/file/LinkOption;)Ljava/nio/file/Path; toRealPath + 0 o p_250271_ + toString ()Ljava/lang/String; toString + toUri ()Ljava/net/URI; toUri +ajs$1 net/minecraft/server/packs/linkfs/LinkFSPath$1 + ()V + isDirectory ()Z isDirectory + isRegularFile ()Z isRegularFile +ajs$2 net/minecraft/server/packs/linkfs/LinkFSPath$2 + ()V + isDirectory ()Z isDirectory + isRegularFile ()Z isRegularFile +ajs$3 net/minecraft/server/packs/linkfs/LinkFSPath$3 + a f_243951_ + (Lajs;)V + 0 o p_249139_ + name ()Ljava/lang/String; name + readAttributes ()Ljava/nio/file/attribute/BasicFileAttributes; readAttributes + setTimes (Ljava/nio/file/attribute/FileTime;Ljava/nio/file/attribute/FileTime;Ljava/nio/file/attribute/FileTime;)V setTimes + 0 o p_249505_ + 1 o p_250498_ + 2 o p_251700_ +ajt net/minecraft/server/packs/linkfs/LinkFSProvider + a f_244482_ + ()V + a (Ljava/nio/file/Path;)Lajs; m_245446_ + static + 0 o p_252065_ + checkAccess (Ljava/nio/file/Path;[Ljava/nio/file/AccessMode;)V checkAccess + 0 o p_248517_ + 1 o p_248805_ + copy (Ljava/nio/file/Path;Ljava/nio/file/Path;[Ljava/nio/file/CopyOption;)V copy + 0 o p_250627_ + 1 o p_248906_ + 2 o p_249289_ + createDirectory (Ljava/nio/file/Path;[Ljava/nio/file/attribute/FileAttribute;)V createDirectory + 0 o p_252352_ + 1 o p_249694_ + delete (Ljava/nio/file/Path;)V delete + 0 o p_252069_ + getFileAttributeView (Ljava/nio/file/Path;Ljava/lang/Class;[Ljava/nio/file/LinkOption;)Ljava/nio/file/attribute/FileAttributeView; getFileAttributeView + 0 o p_250166_ + 1 o p_252214_ + 2 o p_250559_ + getFileStore (Ljava/nio/file/Path;)Ljava/nio/file/FileStore; getFileStore + 0 o p_249374_ + getFileSystem (Ljava/net/URI;)Ljava/nio/file/FileSystem; getFileSystem + 0 o p_249279_ + getPath (Ljava/net/URI;)Ljava/nio/file/Path; getPath + 0 o p_252294_ + getScheme ()Ljava/lang/String; getScheme + isHidden (Ljava/nio/file/Path;)Z isHidden + 0 o p_248957_ + isSameFile (Ljava/nio/file/Path;Ljava/nio/file/Path;)Z isSameFile + 0 o p_249846_ + 1 o p_251936_ + move (Ljava/nio/file/Path;Ljava/nio/file/Path;[Ljava/nio/file/CopyOption;)V move + 0 o p_250866_ + 1 o p_250335_ + 2 o p_249156_ + newByteChannel (Ljava/nio/file/Path;Ljava/util/Set;[Ljava/nio/file/attribute/FileAttribute;)Ljava/nio/channels/SeekableByteChannel; newByteChannel + 0 o p_251835_ + 1 o p_251780_ + 2 o p_250474_ + newDirectoryStream (Ljava/nio/file/Path;Ljava/nio/file/DirectoryStream$Filter;)Ljava/nio/file/DirectoryStream; newDirectoryStream + 0 o p_250116_ + 1 o p_251710_ + newFileSystem (Ljava/net/URI;Ljava/util/Map;)Ljava/nio/file/FileSystem; newFileSystem + 0 o p_251867_ + 1 o p_250970_ + readAttributes (Ljava/nio/file/Path;Ljava/lang/Class;[Ljava/nio/file/LinkOption;)Ljava/nio/file/attribute/BasicFileAttributes; readAttributes + 0 o p_249764_ + 1 o p_248604_ + 2 o p_252280_ + readAttributes (Ljava/nio/file/Path;Ljava/lang/String;[Ljava/nio/file/LinkOption;)Ljava/util/Map; readAttributes + 0 o p_252124_ + 1 o p_249064_ + 2 o p_252305_ + setAttribute (Ljava/nio/file/Path;Ljava/lang/String;Ljava/lang/Object;[Ljava/nio/file/LinkOption;)V setAttribute + 0 o p_251468_ + 1 o p_249411_ + 2 o p_249284_ + 3 o p_250990_ +ajt$1 net/minecraft/server/packs/linkfs/LinkFSProvider$1 + a f_244285_ + b f_244629_ + c f_244397_ + (Lajt;Lajv$a;Ljava/nio/file/DirectoryStream$Filter;)V + 0 o p_251373_ + 1 o p_248565_ + 2 o p_250942_ + a (Lajs;)Ljava/nio/file/Path; m_246573_ + static + 0 o p_249891_ + a (Ljava/nio/file/DirectoryStream$Filter;Lajs;)Z m_247708_ + static + 0 o p_250959_ + 1 o p_250987_ + close ()V close + iterator ()Ljava/util/Iterator; iterator +ajt$2 net/minecraft/server/packs/linkfs/LinkFSProvider$2 + a f_244192_ + ()V + static +aju net/minecraft/server/packs/linkfs/LinkFileSystem + a f_243682_ + b f_243804_ + c f_244484_ + d f_243742_ + e f_244566_ + f f_244599_ + ()V + static + (Ljava/lang/String;Laju$b;)V + 0 o p_251238_ + 1 o p_248738_ + a ()Ljava/nio/file/FileStore; m_246857_ + a (Lit/unimi/dsi/fastutil/objects/Object2ObjectOpenHashMap;Laju;Lajs;Ljava/lang/String;Ljava/nio/file/Path;)V m_247248_ + static + 0 o p_251199_ + 1 o p_251771_ + 2 o p_252135_ + 3 o p_249491_ + 4 o p_250850_ + a (Laju$b;Laju;Ljava/lang/String;Lajs;)Lajs; m_246062_ + static + 0 o p_250914_ + 1 o p_248904_ + 2 o p_248935_ + 3 o p_250296_ + a (Lit/unimi/dsi/fastutil/objects/Object2ObjectOpenHashMap;Laju;Lajs;Ljava/lang/String;Laju$b;)V m_246321_ + static + 0 o p_250770_ + 1 o p_248607_ + 2 o p_249908_ + 3 o p_251592_ + 4 o p_251728_ + b ()Lajs; m_247062_ + c ()Laju$a; m_245209_ + static + close ()V close + getFileStores ()Ljava/lang/Iterable; getFileStores + getPath (Ljava/lang/String;[Ljava/lang/String;)Ljava/nio/file/Path; getPath + 0 o p_250018_ + 1 o p_252159_ + getPathMatcher (Ljava/lang/String;)Ljava/nio/file/PathMatcher; getPathMatcher + 0 o p_250757_ + getRootDirectories ()Ljava/lang/Iterable; getRootDirectories + getSeparator ()Ljava/lang/String; getSeparator + getUserPrincipalLookupService ()Ljava/nio/file/attribute/UserPrincipalLookupService; getUserPrincipalLookupService + isOpen ()Z isOpen + isReadOnly ()Z isReadOnly + newWatchService ()Ljava/nio/file/WatchService; newWatchService + provider ()Ljava/nio/file/spi/FileSystemProvider; provider + supportedFileAttributeViews ()Ljava/util/Set; supportedFileAttributeViews +aju$a net/minecraft/server/packs/linkfs/LinkFileSystem$Builder + a f_244601_ + ()V + a (Ljava/lang/String;)Ljava/nio/file/FileSystem; m_247661_ + 0 o p_251975_ + a (Ljava/util/List;Ljava/lang/String;Ljava/nio/file/Path;)Laju$a; m_246881_ + 0 o p_249758_ + 1 o p_251234_ + 2 o p_248766_ + a (Ljava/util/List;Ljava/nio/file/Path;)Laju$a; m_246585_ + 0 o p_250158_ + 1 o p_250483_ + b (Ljava/lang/String;)Laju$b; m_245751_ + static + 0 o p_249671_ +aju$b net/minecraft/server/packs/linkfs/LinkFileSystem$DirectoryEntry + a f_244268_ + b f_244526_ + (Ljava/util/Map;Ljava/util/Map;)V + 0 o f_244268_ + 1 o f_244526_ + ()V + a ()Ljava/util/Map; f_244268_ + b ()Ljava/util/Map; f_244526_ + equals (Ljava/lang/Object;)Z equals + 0 o p_250774_ + hashCode ()I hashCode + toString ()Ljava/lang/String; toString +ajv net/minecraft/server/packs/linkfs/PathContents + a f_244612_ + b f_244185_ + ()V + static +ajv$1 net/minecraft/server/packs/linkfs/PathContents$1 + ()V + toString ()Ljava/lang/String; toString +ajv$2 net/minecraft/server/packs/linkfs/PathContents$2 + ()V + toString ()Ljava/lang/String; toString +ajv$a net/minecraft/server/packs/linkfs/PathContents$DirectoryContents + c f_243989_ + (Ljava/util/Map;)V + 0 o f_243989_ + a ()Ljava/util/Map; f_243989_ + equals (Ljava/lang/Object;)Z equals + 0 o p_250058_ + hashCode ()I hashCode + toString ()Ljava/lang/String; toString +ajv$b net/minecraft/server/packs/linkfs/PathContents$FileContents + c f_244421_ + (Ljava/nio/file/Path;)V + 0 o f_244421_ + a ()Ljava/nio/file/Path; f_244421_ + equals (Ljava/lang/Object;)Z equals + 0 o p_252347_ + hashCode ()I hashCode + toString ()Ljava/lang/String; toString +ajw net/minecraft/server/packs/linkfs/package-info +ajx net/minecraft/server/packs/metadata/MetadataSectionSerializer + a ()Ljava/lang/String; m_7991_ + a (Lcom/google/gson/JsonObject;)Ljava/lang/Object; m_6322_ + 0 o p_10365_ +ajy net/minecraft/server/packs/metadata/MetadataSectionType + a (Ljava/lang/Object;)Lcom/google/gson/JsonObject; m_245162_ + 0 o p_249140_ + a (Ljava/lang/String;Lcom/mojang/serialization/Codec;)Lajy; m_245060_ + static + 0 o p_249716_ + 1 o p_249525_ +ajy$1 net/minecraft/server/packs/metadata/MetadataSectionType$1 + a f_244496_ + b f_243899_ + (Ljava/lang/String;Lcom/mojang/serialization/Codec;)V + 0 o p_250275_ + 1 o p_252005_ + a (Ljava/lang/Object;)Lcom/google/gson/JsonObject; m_245162_ + 0 o p_250691_ + a (Ljava/lang/String;)V m_247635_ + static + 0 o p_251583_ + a ()Ljava/lang/String; m_7991_ + a (Lcom/google/gson/JsonObject;)Ljava/lang/Object; m_6322_ + 0 o p_249450_ + b (Ljava/lang/String;)V m_246962_ + static + 0 o p_251349_ +ajz net/minecraft/server/packs/metadata/pack/PackMetadataSection + a f_243696_ + b f_10367_ + c f_10368_ + ()V + static + (Lsw;I)V + 0 o p_10371_ + 1 o p_10372_ + a ()Lsw; m_10373_ + b ()I m_10374_ +ak net/minecraft/advancements/CriterionProgress + a f_12907_ + b f_12908_ + ()V + static + ()V + a ()Z m_12911_ + a (Ljava/lang/String;)Lak; m_12912_ + static + 0 o p_12913_ + a (Lsf;)V m_12914_ + 0 o p_12915_ + b (Lsf;)Lak; m_12917_ + static + 0 o p_12918_ + b ()V m_12916_ + c ()V m_12919_ + d ()Ljava/util/Date; m_12920_ + e ()Lcom/google/gson/JsonElement; m_12921_ + toString ()Ljava/lang/String; toString +aka net/minecraft/server/packs/metadata/pack/PackMetadataSectionSerializer + ()V + a (Ljava/lang/Object;)Lcom/google/gson/JsonObject; m_245162_ + 0 o p_248912_ + a (Lajz;)Lcom/google/gson/JsonObject; m_245162_ + 0 o p_250206_ + a ()Ljava/lang/String; m_7991_ + a (Lcom/google/gson/JsonObject;)Ljava/lang/Object; m_6322_ + 0 o p_10378_ + b (Lcom/google/gson/JsonObject;)Lajz; m_6322_ + 0 o p_10380_ +akb net/minecraft/server/packs/metadata/pack/package-info +akc net/minecraft/server/packs/metadata/package-info +akd net/minecraft/server/packs/package-info +ake net/minecraft/server/packs/repository/BuiltInPackSource + a f_243761_ + b f_244636_ + c f_244468_ + d f_244196_ + e f_244626_ + ()V + static + (Lajm;Lajo;Lacq;)V + 0 o p_249137_ + 1 o p_250453_ + 2 o p_251151_ + a ()Lajo; m_246851_ + a (Ljava/util/function/BiConsumer;Ljava/nio/file/Path;)V m_247362_ + 0 o p_251843_ + 1 o p_250248_ + a (Ljava/util/function/Consumer;)V m_7686_ + 0 o p_250708_ + a (Ljava/lang/String;)Lsw; m_245328_ + 0 o p_251850_ + a (Lajl;)Lakg; m_245806_ + 0 o p_251690_ + a (Ljava/util/function/BiConsumer;Ljava/nio/file/Path;Lakg$c;)V m_246068_ + 0 o p_250239_ + 1 o p_252012_ + 2 o p_249772_ + a (Ljava/nio/file/Path;)Ljava/lang/String; m_247484_ + static + 0 o p_252048_ + a (Ljava/lang/String;Lakg$c;Lsw;)Lakg; m_246091_ + 0 o p_249992_ + 1 o p_248670_ + 2 o p_252197_ + a (Ljava/util/function/BiConsumer;)V m_245382_ + 0 o p_250341_ + a (Lakg$c;Ljava/lang/String;)Lakg; m_247024_ + 0 o p_249612_ + 1 o p_250601_ + a (Ljava/util/function/Consumer;Ljava/lang/String;Ljava/util/function/Function;)V m_246863_ + static + 0 o p_249509_ + 1 o p_250371_ + 2 o p_250946_ + a (Ljava/nio/file/Path;Ljava/util/function/BiConsumer;)V m_245111_ + 0 o p_250013_ + 1 o p_249898_ + b (Ljava/util/function/Consumer;)V m_245188_ + 0 o p_249128_ +akf net/minecraft/server/packs/repository/FolderRepositorySource + a f_244616_ + b f_10382_ + c f_243749_ + d f_10383_ + ()V + static + (Ljava/nio/file/Path;Lajm;Lakj;)V + 0 o p_251796_ + 1 o p_251664_ + 2 o p_250854_ + a (Ljava/util/function/Consumer;)V m_7686_ + 0 o p_250965_ + a (Ljava/util/function/Consumer;Ljava/nio/file/Path;Lakg$c;)V m_244897_ + 0 o p_248242_ + 1 o p_248243_ + 2 o p_248244_ + a (Ljava/nio/file/Path;Z)Lakg$c; m_254985_ + static + 0 o p_255665_ + 1 o p_255971_ + a (Ljava/io/File;ZLjava/lang/String;)Lajl; m_254801_ + static + 0 o p_255539_ + 1 o p_255540_ + 2 o p_255541_ + a (Ljava/nio/file/Path;ZLjava/lang/String;)Lajl; m_254800_ + static + 0 o p_255536_ + 1 o p_255537_ + 2 o p_255538_ + a (Ljava/nio/file/Path;)Ljava/lang/String; m_246927_ + static + 0 o p_248745_ + a (Ljava/nio/file/Path;ZLjava/util/function/BiConsumer;)V m_247293_ + static + 0 o p_248794_ + 1 o p_255987_ + 2 o p_248580_ +akg net/minecraft/server/packs/repository/Pack + a f_10399_ + b f_10401_ + c f_244124_ + d f_10403_ + e f_10404_ + f f_10405_ + g f_244623_ + h f_10406_ + i f_10407_ + j f_10408_ + k f_10409_ + ()V + static + (Ljava/lang/String;ZLakg$c;Lsw;Lakg$a;Lakh;Lakg$b;ZLakj;)V + 0 o p_252218_ + 1 o p_248829_ + 2 o p_249377_ + 3 o p_251718_ + 4 o p_250162_ + 5 o p_250361_ + 6 o p_251298_ + 7 o p_249753_ + 8 o p_251608_ + a (ZLts;)Lts; m_10439_ + 0 o p_10440_ + 1 o p_10441_ + a (Ljava/lang/String;Lakg$c;)Lakg$a; m_246334_ + static + 0 o p_250591_ + 1 o p_250739_ + a (Ljava/lang/String;Lsw;ZLakg$c;Lakg$a;Lajm;Lakg$b;ZLakj;)Lakg; m_245512_ + static + 0 o p_252257_ + 1 o p_248717_ + 2 o p_248811_ + 3 o p_248969_ + 4 o p_251314_ + 5 o p_250264_ + 6 o p_252110_ + 7 o p_250237_ + 8 o p_248524_ + a (Z)Lsw; m_10437_ + 0 o p_10438_ + a ()Lsw; m_10429_ + a (Ljava/lang/String;Lsw;ZLakg$c;Lajm;Lakg$b;Lakj;)Lakg; m_245429_ + static + 0 o p_249649_ + 1 o p_248632_ + 2 o p_251594_ + 3 o p_252210_ + 4 o p_250595_ + 5 o p_248706_ + 6 o p_251233_ + b ()Lsw; m_10442_ + c ()Lakh; m_10443_ + d ()Lcaw; m_245532_ + e ()Lajl; m_10445_ + equals (Ljava/lang/Object;)Z equals + 0 o p_10448_ + f ()Ljava/lang/String; m_10446_ + g ()Z m_10449_ + h ()Z m_10450_ + hashCode ()I hashCode + i ()Lakg$b; m_10451_ + j ()Lakj; m_10453_ +akg$a net/minecraft/server/packs/repository/Pack$Info + a f_244592_ + b f_244194_ + c f_244041_ + (Lsw;ILcaw;)V + 0 o f_244592_ + 1 o f_244194_ + 2 o f_244041_ + a (Lajm;)Lakh; m_246438_ + 0 o p_249204_ + a ()Lsw; f_244592_ + b ()I f_244194_ + c ()Lcaw; f_244041_ + equals (Ljava/lang/Object;)Z equals + 0 o p_248947_ + hashCode ()I hashCode + toString ()Ljava/lang/String; toString +akg$b net/minecraft/server/packs/repository/Pack$Position + a TOP + b BOTTOM + c $VALUES + ()V + static + (Ljava/lang/String;I)V + 0 o p_10467_ + 1 o p_10468_ + a ()Lakg$b; m_10469_ + a (Ljava/util/List;Ljava/lang/Object;Ljava/util/function/Function;Z)I m_10470_ + 0 o p_10471_ + 1 o p_10472_ + 2 o p_10473_ + 3 o p_10474_ + b ()[Lakg$b; m_143881_ + static + valueOf (Ljava/lang/String;)Lakg$b; valueOf + static + 0 o p_10476_ + values ()[Lakg$b; values + static +akg$c net/minecraft/server/packs/repository/Pack$ResourcesSupplier + open (Ljava/lang/String;)Lajl; m_247679_ + 0 o p_251717_ +akh net/minecraft/server/packs/repository/PackCompatibility + a TOO_OLD + b TOO_NEW + c COMPATIBLE + d f_10481_ + e f_10482_ + f $VALUES + ()V + static + (Ljava/lang/String;ILjava/lang/String;)V + 0 o p_10486_ + 1 o p_10487_ + 2 o p_10488_ + a ()Z m_10489_ + a (ILajm;)Lakh; m_143882_ + static + 0 o p_143883_ + 1 o p_143884_ + b ()Lsw; m_10492_ + c ()Lsw; m_10493_ + d ()[Lakh; m_143888_ + static + valueOf (Ljava/lang/String;)Lakh; valueOf + static + 0 o p_10495_ + values ()[Lakh; values + static +aki net/minecraft/server/packs/repository/PackRepository + a f_10497_ + b f_10498_ + c f_10499_ + ([Lakk;)V + 0 o p_251886_ + a ()V m_10506_ + a (Ljava/util/Map;Lakg;)V m_143901_ + static + 0 o p_143902_ + 1 o p_143903_ + a (Ljava/util/Collection;)V m_10509_ + 0 o p_10510_ + a (Ljava/lang/String;)Z m_275855_ + 0 o p_276042_ + b (Ljava/lang/String;)Z m_275853_ + 0 o p_276065_ + b (Ljava/util/Collection;)Ljava/util/List; m_10517_ + 0 o p_10518_ + b ()Ljava/util/Collection; m_10514_ + c ()Ljava/util/Collection; m_10519_ + c (Ljava/util/Collection;)Ljava/util/stream/Stream; m_10520_ + 0 o p_10521_ + c (Ljava/lang/String;)Lakg; m_10507_ + 0 o p_10508_ + d (Ljava/lang/String;)Z m_10515_ + 0 o p_10516_ + d ()Ljava/util/Collection; m_10523_ + e ()Lcaw; m_245805_ + f ()Ljava/util/Collection; m_10524_ + g ()Ljava/util/List; m_10525_ + h ()Ljava/util/Map; m_10526_ +akj net/minecraft/server/packs/repository/PackSource + a f_244536_ + b f_10527_ + c f_10528_ + d f_244201_ + e f_10529_ + f f_10530_ + ()V + static + a (Lsw;)Lsw; m_10540_ + 0 o p_10541_ + a ()Z m_245251_ + a (Ljava/util/function/UnaryOperator;Z)Lakj; m_247176_ + static + 0 o p_251995_ + 1 o p_249897_ + a (Lsw;Lsw;)Lsw; m_10537_ + static + 0 o p_10538_ + 1 o p_10539_ + a (Ljava/lang/String;)Ljava/util/function/UnaryOperator; m_10533_ + static + 0 o p_10534_ +akj$1 net/minecraft/server/packs/repository/PackSource$1 + g f_244157_ + h f_244499_ + (Ljava/util/function/UnaryOperator;Z)V + 0 o p_251072_ + 1 o p_251239_ + a (Lsw;)Lsw; m_10540_ + 0 o p_251609_ + a ()Z m_245251_ +akk net/minecraft/server/packs/repository/RepositorySource + a (Ljava/util/function/Consumer;)V m_7686_ + 0 o p_10542_ +akl net/minecraft/server/packs/repository/ServerPacksSource + b f_244259_ + c f_244456_ + d f_143904_ + e f_243665_ + f f_244487_ + ()V + static + ()V + a (Ljava/lang/String;Lakg$c;Lsw;)Lakg; m_246091_ + 0 o p_250596_ + 1 o p_249625_ + 2 o p_249043_ + a (Ljava/lang/String;)Lsw; m_245328_ + 0 o p_249692_ + a (Lajl;)Lakg; m_245806_ + 0 o p_250283_ + a (Ldyy$c;)Laki; m_247728_ + static + 0 o p_250213_ + a (Ljava/nio/file/Path;)Laki; m_245786_ + static + 0 o p_251569_ + a (Lajl;Ljava/lang/String;)Lajl; m_244899_ + static + 0 o p_248247_ + 1 o p_248248_ + b ()Lajo; m_246173_ + static +akm net/minecraft/server/packs/repository/package-info +akn net/minecraft/server/packs/resources/CloseableResourceManager + close ()V close +ako net/minecraft/server/packs/resources/FallbackResourceManager + a f_10599_ + b f_10600_ + c f_10601_ + d f_10602_ + ()V + static + (Lajm;Ljava/lang/String;)V + 0 o p_10605_ + 1 o p_10606_ + a (Ljava/lang/String;Ljava/util/function/Predicate;)V m_215399_ + 0 o p_215400_ + 1 o p_215401_ + a (Ljava/util/function/Predicate;Ljava/util/Map;Lajl;Lacq;Lakp;)V m_244904_ + static + 0 o p_248263_ + 1 o p_248264_ + 2 o p_248265_ + 3 o p_248266_ + 4 o p_248267_ + a (Lacq;)Ljava/util/List; m_213829_ + 0 o p_215367_ + a (Lajl;)V m_215377_ + 0 o p_215378_ + a (Lako$d;Ljava/util/Map;)V m_215392_ + static + 0 o p_215393_ + 1 o p_215394_ + a (Ljava/lang/String;Lajl;Ljava/util/function/Predicate;)V m_215395_ + 0 o p_215396_ + 1 o p_215397_ + 2 o p_215398_ + a (Lakp;)Lakp; m_245722_ + static + 0 o p_250827_ + a (Lacq;Lajl;Lakp;)Lakp; m_246574_ + static + 0 o p_248639_ + 1 o p_251740_ + 2 o p_249116_ + a (Ljava/util/function/Predicate;Ljava/util/Map;Lajl;ILjava/util/Map;Lacq;Lakp;)V m_244900_ + static + 0 o p_248249_ + 1 o p_248250_ + 2 o p_248251_ + 3 o p_248252_ + 4 o p_248253_ + 5 o p_248254_ + 6 o p_248255_ + a (Lakp;Lacq;Lajl;)Ljava/io/InputStream; m_244905_ + static + 0 o p_248268_ + 1 o p_248269_ + 2 o p_248270_ + a (Ljava/util/Map;Ljava/util/Map;Lacq;Lako$a;)V m_244901_ + static + 0 o p_248256_ + 1 o p_248257_ + 2 o p_248258_ + 3 o p_248259_ + a (Lajl;Lacq;Lakp;Lakp;)Lakv; m_246164_ + static + 0 o p_249946_ + 1 o p_250632_ + 2 o p_250514_ + 3 o p_251676_ + a (Lako$d;Ljava/lang/String;Ljava/util/function/Predicate;Ljava/util/Map;)V m_215387_ + 0 o p_215388_ + 1 o p_215389_ + 2 o p_215390_ + 3 o p_215391_ + a (Lajl;Lacq;)Lakz; m_244903_ + 0 o p_248261_ + 1 o p_248262_ + a (Lako$d;)Lajl; m_215385_ + static + 0 o p_215386_ + a (Lajl;Ljava/util/function/Predicate;)V m_215382_ + 0 o p_215383_ + 1 o p_215384_ + a (Lacq;I)Lakp; m_215368_ + 0 o p_215369_ + 1 o p_215370_ + a ()Ljava/util/Set; m_7187_ + b (Lacq;)Z m_245103_ + static + 0 o p_249381_ + b (Lakp;)Lakz; m_246183_ + static + 0 o p_250103_ + b (Ljava/lang/String;Ljava/util/function/Predicate;)Ljava/util/Map; m_214159_ + 0 o p_215413_ + 1 o p_215414_ + b (Lacq;I)Lakz; m_244906_ + 0 o p_248271_ + 1 o p_248272_ + b ()Ljava/util/stream/Stream; m_7536_ + c (Lacq;)Lacq; m_246569_ + static + 0 o p_249669_ + c (Lakp;)Lakz; m_244902_ + static + 0 o p_248260_ + c (Ljava/lang/String;Ljava/util/function/Predicate;)Ljava/util/Map; m_214160_ + 0 o p_215416_ + 1 o p_215417_ + d (Lacq;)Lacq; m_10624_ + static + 0 o p_10625_ + getResource (Lacq;)Ljava/util/Optional; m_213713_ + 0 o p_215419_ +ako$a net/minecraft/server/packs/resources/FallbackResourceManager$1ResourceWithSourceAndIndex + a f_243853_ + b f_244005_ + c f_244110_ + (Lajl;Lakp;I)V + 0 o f_243853_ + 1 o f_244005_ + 2 o f_244110_ + a ()Lajl; f_243853_ + b ()Lakp; f_244005_ + c ()I f_244110_ + equals (Ljava/lang/Object;)Z equals + 0 o p_251931_ + hashCode ()I hashCode + toString ()Ljava/lang/String; toString +ako$b net/minecraft/server/packs/resources/FallbackResourceManager$EntryStack + a f_244439_ + b f_215420_ + c f_244329_ + d f_243777_ + (Lacq;)V + 0 o p_251350_ + (Lacq;Lacq;Ljava/util/List;Ljava/util/Map;)V + 0 o f_244439_ + 1 o f_215420_ + 2 o f_244329_ + 3 o f_243777_ + a ()Lacq; f_244439_ + b ()Lacq; f_215420_ + c ()Ljava/util/List; f_244329_ + d ()Ljava/util/Map; f_243777_ + equals (Ljava/lang/Object;)Z equals + 0 o p_215429_ + hashCode ()I hashCode + toString ()Ljava/lang/String; toString +ako$c net/minecraft/server/packs/resources/FallbackResourceManager$LeakedResourceWarningInputStream + a f_10630_ + b f_10631_ + (Ljava/io/InputStream;Lacq;Ljava/lang/String;)V + 0 o p_10633_ + 1 o p_10634_ + 2 o p_10635_ + a (Ljava/lang/Exception;Lacq;Ljava/lang/String;)Ljava/lang/String; m_245902_ + static + 0 o p_249178_ + 1 o p_250125_ + 2 o p_249274_ + close ()V close + finalize ()V finalize +ako$d net/minecraft/server/packs/resources/FallbackResourceManager$PackEntry + a f_215432_ + b f_215433_ + c f_215434_ + (Ljava/lang/String;Lajl;Ljava/util/function/Predicate;)V + 0 o f_215432_ + 1 o f_215433_ + 2 o f_215434_ + a (Lacq;)Z m_215440_ + 0 o p_215441_ + a ()Ljava/lang/String; f_215432_ + a (Ljava/util/Collection;)V m_215442_ + 0 o p_215443_ + b ()Lajl; f_215433_ + c ()Ljava/util/function/Predicate; f_215434_ + equals (Ljava/lang/Object;)Z equals + 0 o p_215447_ + hashCode ()I hashCode + toString ()Ljava/lang/String; toString +ako$e net/minecraft/server/packs/resources/FallbackResourceManager$ResourceWithSource + a f_244214_ + b f_244331_ + (Lajl;Lakp;)V + 0 o f_244214_ + 1 o f_244331_ + a ()Lajl; f_244214_ + b ()Lakp; f_244331_ + equals (Ljava/lang/Object;)Z equals + 0 o p_252143_ + hashCode ()I hashCode + toString ()Ljava/lang/String; toString +akp net/minecraft/server/packs/resources/IoSupplier + a (Ljava/nio/file/Path;)Ljava/io/InputStream; m_246383_ + static + 0 o p_251530_ + a (Ljava/util/zip/ZipFile;Ljava/util/zip/ZipEntry;)Ljava/io/InputStream; m_247182_ + static + 0 o p_249727_ + 1 o p_249348_ + create (Ljava/nio/file/Path;)Lakp; m_246697_ + static + 0 o p_248941_ + create (Ljava/util/zip/ZipFile;Ljava/util/zip/ZipEntry;)Lakp; m_247178_ + static + 0 o p_249624_ + 1 o p_248688_ + get ()Ljava/lang/Object; m_247737_ +akq net/minecraft/server/packs/resources/MultiPackResourceManager + a f_215463_ + b f_203794_ + c f_203795_ + ()V + static + (Lajm;Ljava/util/List;)V + 0 o p_203797_ + 1 o p_203798_ + a (Ljava/lang/String;)V m_247202_ + static + 0 o p_249608_ + a (Lajm;Lajl;)Ljava/util/stream/Stream; m_215469_ + static + 0 o p_215470_ + 1 o p_215471_ + a (Lakw;Lacq;)Z m_215472_ + static + 0 o p_215473_ + 1 o p_215474_ + a (Lacq;)Ljava/util/List; m_213829_ + 0 o p_215466_ + a (Lajl;)Lakw; m_215467_ + 0 o p_215468_ + a ()Ljava/util/Set; m_7187_ + b ()Ljava/util/stream/Stream; m_7536_ + b (Ljava/lang/String;Ljava/util/function/Predicate;)Ljava/util/Map; m_214159_ + 0 o p_215476_ + 1 o p_215477_ + c (Ljava/lang/String;Ljava/util/function/Predicate;)Ljava/util/Map; m_214160_ + 0 o p_215479_ + 1 o p_215480_ + close ()V close + getResource (Lacq;)Ljava/util/Optional; m_213713_ + 0 o p_215482_ +akr net/minecraft/server/packs/resources/PreparableReloadListener + a (Lakr$a;Lakx;Lban;Lban;Ljava/util/concurrent/Executor;Ljava/util/concurrent/Executor;)Ljava/util/concurrent/CompletableFuture; m_5540_ + 0 o p_10638_ + 1 o p_10639_ + 2 o p_10640_ + 3 o p_10641_ + 4 o p_10642_ + 5 o p_10643_ + c ()Ljava/lang/String; m_7812_ +akr$a net/minecraft/server/packs/resources/PreparableReloadListener$PreparationBarrier + a (Ljava/lang/Object;)Ljava/util/concurrent/CompletableFuture; m_6769_ + 0 o p_10644_ +aks net/minecraft/server/packs/resources/ProfiledReloadInstance + c f_10645_ + d f_10646_ + ()V + static + (Lakx;Ljava/util/List;Ljava/util/concurrent/Executor;Ljava/util/concurrent/Executor;Ljava/util/concurrent/CompletableFuture;)V + 0 o p_10649_ + 1 o p_10650_ + 2 o p_10651_ + 3 o p_10652_ + 4 o p_10653_ + a (Lakr;Lbag;Lbag;Ljava/util/concurrent/atomic/AtomicLong;Ljava/util/concurrent/atomic/AtomicLong;Ljava/lang/Void;)Laks$a; m_143907_ + static + 0 o p_143908_ + 1 o p_143909_ + 2 o p_143910_ + 3 o p_143911_ + 4 o p_143912_ + 5 o p_143913_ + a (Ljava/util/concurrent/Executor;Ljava/util/concurrent/atomic/AtomicLong;Ljava/lang/Runnable;)V m_143917_ + static + 0 o p_143918_ + 1 o p_143919_ + 2 o p_143920_ + a (Ljava/util/concurrent/Executor;Lakr$a;Lakx;Lakr;Ljava/util/concurrent/Executor;Ljava/util/concurrent/Executor;)Ljava/util/concurrent/CompletableFuture; m_10666_ + static + 0 o p_10667_ + 1 o p_10668_ + 2 o p_10669_ + 3 o p_10670_ + 4 o p_10671_ + 5 o p_10672_ + a (Ljava/util/List;)Ljava/util/List; m_215483_ + 0 o p_215484_ + a (Ljava/lang/Runnable;Ljava/util/concurrent/atomic/AtomicLong;)V m_143914_ + static + 0 o p_143915_ + 1 o p_143916_ + b (Ljava/util/concurrent/Executor;Ljava/util/concurrent/atomic/AtomicLong;Ljava/lang/Runnable;)V m_143924_ + static + 0 o p_143925_ + 1 o p_143926_ + 2 o p_143927_ + b (Ljava/lang/Runnable;Ljava/util/concurrent/atomic/AtomicLong;)V m_143921_ + static + 0 o p_143922_ + 1 o p_143923_ + e ()I m_143928_ + static + f ()I m_143929_ + static +aks$a net/minecraft/server/packs/resources/ProfiledReloadInstance$State + a f_10686_ + b f_10687_ + c f_10688_ + d f_10689_ + e f_10690_ + (Ljava/lang/String;Lbam;Lbam;Ljava/util/concurrent/atomic/AtomicLong;Ljava/util/concurrent/atomic/AtomicLong;)V + 0 o p_10692_ + 1 o p_10693_ + 2 o p_10694_ + 3 o p_10695_ + 4 o p_10696_ +akt net/minecraft/server/packs/resources/ReloadInstance + a ()Ljava/util/concurrent/CompletableFuture; m_7237_ + b ()F m_7750_ + c ()Z m_7746_ + d ()V m_7748_ +aku net/minecraft/server/packs/resources/ReloadableResourceManager + a f_203814_ + b f_203815_ + c f_203816_ + d f_203817_ + ()V + static + (Lajm;)V + 0 o p_203820_ + a (Lakr;)V m_7217_ + 0 o p_10714_ + a ()Ljava/util/Set; m_7187_ + a (Ljava/util/concurrent/Executor;Ljava/util/concurrent/Executor;Ljava/util/concurrent/CompletableFuture;Ljava/util/List;)Lakt; m_142463_ + 0 o p_143930_ + 1 o p_143931_ + 2 o p_143932_ + 3 o p_143933_ + a (Lacq;)Ljava/util/List; m_213829_ + 0 o p_215486_ + a (Ljava/util/List;)Ljava/lang/Object; m_203825_ + static + 0 o p_203826_ + b ()Ljava/util/stream/Stream; m_7536_ + b (Ljava/lang/String;Ljava/util/function/Predicate;)Ljava/util/Map; m_214159_ + 0 o p_215488_ + 1 o p_215489_ + c (Ljava/lang/String;Ljava/util/function/Predicate;)Ljava/util/Map; m_214160_ + 0 o p_215491_ + 1 o p_215492_ + close ()V close + getResource (Lacq;)Ljava/util/Optional; m_213713_ + 0 o p_215494_ +akv net/minecraft/server/packs/resources/Resource + a f_244326_ + b f_215496_ + c f_215497_ + d f_215498_ + (Lajl;Lakp;Lakp;)V + 0 o p_250802_ + 1 o p_248585_ + 2 o p_250094_ + (Lajl;Lakp;)V + 0 o p_250372_ + 1 o p_248749_ + a ()Lajl; m_247173_ + b ()Ljava/lang/String; m_215506_ + c ()Z m_247137_ + d ()Ljava/io/InputStream; m_215507_ + e ()Ljava/io/BufferedReader; m_215508_ + f ()Lakz; m_215509_ +akw net/minecraft/server/packs/resources/ResourceFilterSection + a f_244163_ + b f_215514_ + c f_215515_ + ()V + static + (Ljava/util/List;)V + 0 o p_215518_ + a (Lakw;)Ljava/util/List; m_215519_ + static + 0 o p_215520_ + a (Ljava/lang/String;Lapg;)Z m_260781_ + static + 0 o p_261429_ + 1 o p_261430_ + a (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; m_260782_ + static + 0 o p_261431_ + a (Ljava/lang/String;)Z m_215523_ + 0 o p_215524_ + b (Ljava/lang/String;)Z m_215528_ + 0 o p_215529_ + b (Ljava/lang/String;Lapg;)Z m_260783_ + static + 0 o p_261432_ + 1 o p_261433_ +akx net/minecraft/server/packs/resources/ResourceManager + a ()Ljava/util/Set; m_7187_ + a (Lacq;)Ljava/util/List; m_213829_ + 0 o p_215562_ + b ()Ljava/util/stream/Stream; m_7536_ + b (Ljava/lang/String;Ljava/util/function/Predicate;)Ljava/util/Map; m_214159_ + 0 o p_215563_ + 1 o p_215564_ + c (Ljava/lang/String;Ljava/util/function/Predicate;)Ljava/util/Map; m_214160_ + 0 o p_215565_ + 1 o p_215566_ +akx$a net/minecraft/server/packs/resources/ResourceManager$Empty + a INSTANCE + b $VALUES + ()V + static + (Ljava/lang/String;I)V + 0 o p_10735_ + 1 o p_10736_ + a ()Ljava/util/Set; m_7187_ + a (Lacq;)Ljava/util/List; m_213829_ + 0 o p_215568_ + b ()Ljava/util/stream/Stream; m_7536_ + b (Ljava/lang/String;Ljava/util/function/Predicate;)Ljava/util/Map; m_214159_ + 0 o p_215570_ + 1 o p_215571_ + c ()[Lakx$a; m_143934_ + static + c (Ljava/lang/String;Ljava/util/function/Predicate;)Ljava/util/Map; m_214160_ + 0 o p_215573_ + 1 o p_215574_ + getResource (Lacq;)Ljava/util/Optional; m_213713_ + 0 o p_215576_ + valueOf (Ljava/lang/String;)Lakx$a; valueOf + static + 0 o p_10749_ + values ()[Lakx$a; values + static +aky net/minecraft/server/packs/resources/ResourceManagerReloadListener + a (Lban;Lakx;)V m_10759_ + 0 o p_10760_ + 1 o p_10761_ + a (Lakr$a;Lakx;Lban;Lban;Ljava/util/concurrent/Executor;Ljava/util/concurrent/Executor;)Ljava/util/concurrent/CompletableFuture; m_5540_ + 0 o p_10752_ + 1 o p_10753_ + 2 o p_10754_ + 3 o p_10755_ + 4 o p_10756_ + 5 o p_10757_ + a (Lakx;)V m_6213_ + 0 o p_10758_ +akz net/minecraft/server/packs/resources/ResourceMetadata + a f_215577_ + b f_244068_ + ()V + static + a (Ljava/io/InputStream;)Lakz; m_215580_ + static + 0 o p_215581_ + a (Lajx;)Ljava/util/Optional; m_214059_ + 0 o p_215579_ + a ()Lakz; m_247596_ + static +akz$1 net/minecraft/server/packs/resources/ResourceMetadata$1 + ()V + a (Lajx;)Ljava/util/Optional; m_214059_ + 0 o p_215584_ +akz$2 net/minecraft/server/packs/resources/ResourceMetadata$2 + c f_215585_ + (Lcom/google/gson/JsonObject;)V + 0 o p_215587_ + a (Lajx;)Ljava/util/Optional; m_214059_ + 0 o p_215589_ +al net/minecraft/advancements/CriterionTrigger + a (Lacy;)V m_5656_ + 0 o p_13673_ + a (Lcom/google/gson/JsonObject;Lbe;)Lam; m_5868_ + 0 o p_13671_ + 1 o p_13672_ + a ()Lacq; m_7295_ + a (Lacy;Lal$a;)V m_6467_ + 0 o p_13674_ + 1 o p_13675_ + b (Lacy;Lal$a;)V m_6468_ + 0 o p_13676_ + 1 o p_13677_ +al$a net/minecraft/advancements/CriterionTrigger$Listener + a f_13678_ + b f_13679_ + c f_13680_ + (Lam;Lae;Ljava/lang/String;)V + 0 o p_13682_ + 1 o p_13683_ + 2 o p_13684_ + a ()Lam; m_13685_ + a (Lacy;)V m_13686_ + 0 o p_13687_ + equals (Ljava/lang/Object;)Z equals + 0 o p_13689_ + hashCode ()I hashCode +ala net/minecraft/server/packs/resources/ResourceProvider + a (Ljava/util/Map;Lacq;)Ljava/util/Optional; m_244907_ + static + 0 o p_248273_ + 1 o p_248274_ + b (Lacq;)Ljava/io/FileNotFoundException; m_215590_ + static + 0 o p_215591_ + fromMap (Ljava/util/Map;)Lala; m_247621_ + static + 0 o p_251819_ + getResource (Lacq;)Ljava/util/Optional; m_213713_ + 0 o p_215592_ + getResourceOrThrow (Lacq;)Lakv; m_215593_ + 0 o p_215594_ + open (Lacq;)Ljava/io/InputStream; m_215595_ + 0 o p_215596_ + openAsReader (Lacq;)Ljava/io/BufferedReader; m_215597_ + 0 o p_215598_ +alb net/minecraft/server/packs/resources/SimpleJsonResourceReloadListener + a f_10762_ + b f_10764_ + c f_10765_ + ()V + static + (Lcom/google/gson/Gson;Ljava/lang/String;)V + 0 o p_10768_ + 1 o p_10769_ + a (Lakx;Ljava/lang/String;Lcom/google/gson/Gson;Ljava/util/Map;)V m_278771_ + static + 0 o p_279308_ + 1 o p_279131_ + 2 o p_279261_ + 3 o p_279404_ + a (Lakx;Lban;)Ljava/util/Map; m_5944_ + 0 o p_10771_ + 1 o p_10772_ + b (Lakx;Lban;)Ljava/lang/Object; m_5944_ + 0 o p_10776_ + 1 o p_10777_ +alc net/minecraft/server/packs/resources/SimplePreparableReloadListener + ()V + a (Ljava/lang/Object;Lakx;Lban;)V m_5787_ + 0 o p_10793_ + 1 o p_10794_ + 2 o p_10795_ + a (Lakr$a;Lakx;Lban;Lban;Ljava/util/concurrent/Executor;Ljava/util/concurrent/Executor;)Ljava/util/concurrent/CompletableFuture; m_5540_ + 0 o p_10780_ + 1 o p_10781_ + 2 o p_10782_ + 3 o p_10783_ + 4 o p_10784_ + 5 o p_10785_ + a (Lakx;Lban;)Ljava/lang/Object; m_10786_ + 0 o p_10787_ + 1 o p_10788_ + a (Lakx;Lban;Ljava/lang/Object;)V m_10789_ + 0 o p_10790_ + 1 o p_10791_ + 2 o p_10792_ + b (Lakx;Lban;)Ljava/lang/Object; m_5944_ + 0 o p_10796_ + 1 o p_10797_ +ald net/minecraft/server/packs/resources/SimpleReloadInstance + a f_10799_ + b f_10800_ + c f_143937_ + d f_143938_ + e f_143939_ + f f_10801_ + g f_10802_ + h f_10803_ + i f_10804_ + j f_10805_ + k f_10806_ + (Ljava/util/concurrent/Executor;Ljava/util/concurrent/Executor;Lakx;Ljava/util/List;Lald$a;Ljava/util/concurrent/CompletableFuture;)V + 0 o p_10808_ + 1 o p_10809_ + 2 o p_10810_ + 3 o p_10811_ + 4 o p_10812_ + 5 o p_10813_ + a (Ljava/lang/Runnable;)V m_143940_ + 0 o p_143941_ + a (Lakx;Ljava/util/List;Ljava/util/concurrent/Executor;Ljava/util/concurrent/Executor;Ljava/util/concurrent/CompletableFuture;Z)Lakt; m_203834_ + static + 0 o p_203835_ + 1 o p_203836_ + 2 o p_203837_ + 3 o p_203838_ + 4 o p_203839_ + 5 o p_203840_ + a (Lakx;Ljava/util/List;Ljava/util/concurrent/Executor;Ljava/util/concurrent/Executor;Ljava/util/concurrent/CompletableFuture;)Lald; m_10815_ + static + 0 o p_10816_ + 1 o p_10817_ + 2 o p_10818_ + 3 o p_10819_ + 4 o p_10820_ + a ()Ljava/util/concurrent/CompletableFuture; m_7237_ + a (Ljava/util/concurrent/Executor;Ljava/lang/Runnable;)V m_10834_ + 0 o p_10835_ + 1 o p_10836_ + a (Ljava/util/concurrent/Executor;Lakr$a;Lakx;Lakr;Ljava/util/concurrent/Executor;Ljava/util/concurrent/Executor;)Ljava/util/concurrent/CompletableFuture; m_10827_ + static + 0 o p_10828_ + 1 o p_10829_ + 2 o p_10830_ + 3 o p_10831_ + 4 o p_10832_ + 5 o p_10833_ + b (Ljava/lang/Runnable;)V m_143942_ + 0 o p_143943_ + b (Ljava/util/concurrent/Executor;Ljava/lang/Runnable;)V m_10840_ + 0 o p_10841_ + 1 o p_10842_ + b ()F m_7750_ +ald$1 net/minecraft/server/packs/resources/SimpleReloadInstance$1 + a f_10846_ + b f_10847_ + c f_10848_ + d f_10849_ + (Lald;Ljava/util/concurrent/Executor;Lakr;Ljava/util/concurrent/CompletableFuture;)V + 0 o p_10851_ + 1 o p_10852_ + 2 o p_10853_ + 3 o p_10854_ + a (Lakr;)V m_10855_ + 0 o p_10856_ + a (Ljava/lang/Object;Lapz;Ljava/lang/Object;)Ljava/lang/Object; m_10859_ + static + 0 o p_10860_ + 1 o p_10861_ + 2 o p_10862_ + a (Ljava/lang/Object;)Ljava/util/concurrent/CompletableFuture; m_6769_ + 0 o p_10858_ +ald$a net/minecraft/server/packs/resources/SimpleReloadInstance$StateFactory + create (Lakr$a;Lakx;Lakr;Ljava/util/concurrent/Executor;Ljava/util/concurrent/Executor;)Ljava/util/concurrent/CompletableFuture; m_10863_ + 0 o p_10864_ + 1 o p_10865_ + 2 o p_10866_ + 3 o p_10867_ + 4 o p_10868_ +ale net/minecraft/server/packs/resources/package-info +alf net/minecraft/server/players/BanListEntry + a f_10943_ + b f_143953_ + c f_10944_ + d f_10945_ + e f_10946_ + f f_10947_ + ()V + static + (Ljava/lang/Object;Lcom/google/gson/JsonObject;)V + 0 o p_10950_ + 1 o p_10951_ + (Ljava/lang/Object;Ljava/util/Date;Ljava/lang/String;Ljava/util/Date;Ljava/lang/String;)V + 0 o p_10953_ + 1 o p_10954_ + 2 o p_10955_ + 3 o p_10956_ + 4 o p_10957_ + a ()Ljava/util/Date; m_143954_ + a (Lcom/google/gson/JsonObject;)V m_6009_ + 0 o p_10959_ + b ()Ljava/lang/String; m_10960_ + c ()Ljava/util/Date; m_10961_ + d ()Ljava/lang/String; m_10962_ + e ()Lsw; m_8003_ + f ()Z m_7524_ +alg net/minecraft/server/players/GameProfileCache + a f_10964_ + b f_143955_ + c f_143956_ + d f_10965_ + e f_10966_ + f f_10967_ + g f_143957_ + h f_10968_ + i f_10969_ + j f_10970_ + k f_10971_ + l f_143958_ + ()V + static + (Lcom/mojang/authlib/GameProfileRepository;Ljava/io/File;)V + 0 o p_10974_ + 1 o p_10975_ + a (Lcom/mojang/authlib/GameProfile;)V m_10991_ + 0 o p_10992_ + a (Ljava/lang/String;)Ljava/util/Optional; m_10996_ + 0 o p_10997_ + a (Ljava/util/concurrent/Executor;)V m_143974_ + 0 o p_143975_ + a (Lalg$a;)V m_10979_ + 0 o p_10980_ + a (Ljava/util/UUID;)Ljava/util/Optional; m_11002_ + 0 o p_11003_ + a (Lcom/mojang/authlib/GameProfileRepository;Ljava/lang/String;)Ljava/util/Optional; m_10993_ + static + 0 o p_10994_ + 1 o p_10995_ + a (Z)V m_11004_ + static + 0 o p_11005_ + a (Ljava/lang/String;Ljava/util/function/Consumer;)V m_143967_ + 0 o p_143968_ + 1 o p_143969_ + a (I)Ljava/util/stream/Stream; m_10977_ + 0 o p_10978_ + a (Ljava/lang/String;Ljava/util/Optional;Ljava/lang/Throwable;)V m_143963_ + 0 o p_143964_ + 1 o p_143965_ + 2 o p_143966_ + a (Lalg$a;Ljava/text/DateFormat;)Lcom/google/gson/JsonElement; m_10981_ + static + 0 o p_10982_ + 1 o p_10983_ + a ()V m_196559_ + a (Ljava/text/DateFormat;Ljava/util/List;Lcom/google/gson/JsonElement;)V m_143970_ + static + 0 o p_143971_ + 1 o p_143972_ + 2 o p_143973_ + a (Ljava/util/function/Consumer;Ljava/util/Optional;Ljava/lang/Throwable;)V m_143976_ + static + 0 o p_143977_ + 1 o p_143978_ + 2 o p_143979_ + a (Lcom/google/gson/JsonElement;Ljava/text/DateFormat;)Ljava/util/Optional; m_10988_ + static + 0 o p_10989_ + 1 o p_10990_ + a (Lcom/google/gson/JsonArray;Ljava/text/DateFormat;Lalg$a;)V m_143959_ + static + 0 o p_143960_ + 1 o p_143961_ + 2 o p_143962_ + b ()Ljava/util/List; m_10976_ + b (Ljava/lang/String;)Ljava/util/Optional; m_182318_ + 0 o p_182319_ + b (Ljava/util/function/Consumer;Ljava/util/Optional;Ljava/lang/Throwable;)V m_143982_ + static + 0 o p_143983_ + 1 o p_143984_ + 2 o p_143985_ + c ()V m_11006_ + d ()Z m_11007_ + static + e ()J m_11008_ + f ()Ljava/text/DateFormat; m_11009_ + static +alg$1 net/minecraft/server/players/GameProfileCache$1 + a f_11010_ + (Ljava/util/concurrent/atomic/AtomicReference;)V + 0 o p_11012_ + onProfileLookupFailed (Lcom/mojang/authlib/GameProfile;Ljava/lang/Exception;)V onProfileLookupFailed + 0 o p_11014_ + 1 o p_11015_ + onProfileLookupSucceeded (Lcom/mojang/authlib/GameProfile;)V onProfileLookupSucceeded + 0 o p_11017_ +alg$a net/minecraft/server/players/GameProfileCache$GameProfileInfo + a f_11018_ + b f_11019_ + c f_11020_ + (Lcom/mojang/authlib/GameProfile;Ljava/util/Date;)V + 0 o p_11022_ + 1 o p_11023_ + a ()Lcom/mojang/authlib/GameProfile; m_11028_ + a (J)V m_11029_ + 0 o p_11030_ + b ()Ljava/util/Date; m_11033_ + c ()J m_11034_ +alh net/minecraft/server/players/IpBanList + (Ljava/io/File;)V + 0 o p_11036_ + a (Lcom/google/gson/JsonObject;)Lalo; m_6666_ + 0 o p_11038_ + a (Ljava/net/SocketAddress;)Z m_11041_ + 0 o p_11042_ + a (Ljava/lang/String;)Z m_11039_ + 0 o p_11040_ + b (Ljava/net/SocketAddress;)Lali; m_11043_ + 0 o p_11044_ + c (Ljava/net/SocketAddress;)Ljava/lang/String; m_11045_ + 0 o p_11046_ +ali net/minecraft/server/players/IpBanListEntry + (Ljava/lang/String;Ljava/util/Date;Ljava/lang/String;Ljava/util/Date;Ljava/lang/String;)V + 0 o p_11052_ + 1 o p_11053_ + 2 o p_11054_ + 3 o p_11055_ + 4 o p_11056_ + (Ljava/lang/String;)V + 0 o p_11050_ + (Lcom/google/gson/JsonObject;)V + 0 o p_11048_ + a (Lcom/google/gson/JsonObject;)V m_6009_ + 0 o p_11058_ + b (Lcom/google/gson/JsonObject;)Ljava/lang/String; m_11059_ + static + 0 o p_11060_ + e ()Lsw; m_8003_ +alj net/minecraft/server/players/OldUsersConverter + a f_11062_ + b f_11063_ + c f_11064_ + d f_11065_ + e f_11066_ + ()V + static + ()V + a (Ljava/lang/String;Ljava/util/Date;)Ljava/util/Date; m_11095_ + static + 0 o p_11096_ + 1 o p_11097_ + a (Lnet/minecraft/server/MinecraftServer;Ljava/util/Collection;Lcom/mojang/authlib/ProfileLookupCallback;)V m_11086_ + static + 0 o p_11087_ + 1 o p_11088_ + 2 o p_11089_ + a (Ljava/io/File;Ljava/util/Map;)Ljava/util/List; m_11073_ + static + 0 o p_11074_ + 1 o p_11075_ + a (Lnet/minecraft/server/MinecraftServer;Ljava/lang/String;)Ljava/util/UUID; m_11083_ + static + 0 o p_11084_ + 1 o p_11085_ + a (Lnet/minecraft/server/MinecraftServer;)Z m_11081_ + static + 0 o p_11082_ + a (Ljava/io/File;)V m_11093_ + static + 0 o p_11094_ + a ()Z m_11092_ + static + a (Lahe;)Z m_11090_ + static + 0 o p_11091_ + a (I)[Ljava/lang/String; m_11069_ + static + 0 o p_11070_ + a (Ljava/lang/String;)Z m_11076_ + static + 0 o p_11077_ + b (Ljava/io/File;)V m_11100_ + static + 0 o p_11101_ + b (Lnet/minecraft/server/MinecraftServer;)Z m_11098_ + static + 0 o p_11099_ + c (Lnet/minecraft/server/MinecraftServer;)Z m_11102_ + static + 0 o p_11103_ + d (Lnet/minecraft/server/MinecraftServer;)Z m_11104_ + static + 0 o p_11105_ + e (Lnet/minecraft/server/MinecraftServer;)Z m_11106_ + static + 0 o p_11107_ + f (Lnet/minecraft/server/MinecraftServer;)Z m_11108_ + static + 0 o p_11109_ + g (Lnet/minecraft/server/MinecraftServer;)Ljava/io/File; m_11110_ + static + 0 o p_11111_ +alj$1 net/minecraft/server/players/OldUsersConverter$1 + a f_11112_ + b f_11113_ + c f_11114_ + (Lnet/minecraft/server/MinecraftServer;Ljava/util/Map;Lalq;)V + 0 o p_11116_ + 1 o p_11117_ + 2 o p_11118_ + onProfileLookupFailed (Lcom/mojang/authlib/GameProfile;Ljava/lang/Exception;)V onProfileLookupFailed + 0 o p_11120_ + 1 o p_11121_ + onProfileLookupSucceeded (Lcom/mojang/authlib/GameProfile;)V onProfileLookupSucceeded + 0 o p_11123_ +alj$2 net/minecraft/server/players/OldUsersConverter$2 + a f_11124_ + b f_11125_ + (Lnet/minecraft/server/MinecraftServer;Lall;)V + 0 o p_11127_ + 1 o p_11128_ + onProfileLookupFailed (Lcom/mojang/authlib/GameProfile;Ljava/lang/Exception;)V onProfileLookupFailed + 0 o p_11130_ + 1 o p_11131_ + onProfileLookupSucceeded (Lcom/mojang/authlib/GameProfile;)V onProfileLookupSucceeded + 0 o p_11133_ +alj$3 net/minecraft/server/players/OldUsersConverter$3 + a f_11134_ + b f_11135_ + (Lnet/minecraft/server/MinecraftServer;Lals;)V + 0 o p_11137_ + 1 o p_11138_ + onProfileLookupFailed (Lcom/mojang/authlib/GameProfile;Ljava/lang/Exception;)V onProfileLookupFailed + 0 o p_11140_ + 1 o p_11141_ + onProfileLookupSucceeded (Lcom/mojang/authlib/GameProfile;)V onProfileLookupSucceeded + 0 o p_11143_ +alj$4 net/minecraft/server/players/OldUsersConverter$4 + a f_11144_ + b f_11145_ + (Lnet/minecraft/server/MinecraftServer;Ljava/util/List;)V + 0 o p_11147_ + 1 o p_11148_ + onProfileLookupFailed (Lcom/mojang/authlib/GameProfile;Ljava/lang/Exception;)V onProfileLookupFailed + 0 o p_11150_ + 1 o p_11151_ + onProfileLookupSucceeded (Lcom/mojang/authlib/GameProfile;)V onProfileLookupSucceeded + 0 o p_11153_ +alj$5 net/minecraft/server/players/OldUsersConverter$5 + a f_11154_ + b f_11155_ + c f_11156_ + d f_11157_ + e f_11158_ + (Lahe;Ljava/io/File;Ljava/io/File;Ljava/io/File;[Ljava/lang/String;)V + 0 o p_11160_ + 1 o p_11161_ + 2 o p_11162_ + 3 o p_11163_ + 4 o p_11164_ + a (Ljava/io/File;Ljava/lang/String;Ljava/lang/String;)V m_11167_ + 0 o p_11168_ + 1 o p_11169_ + 2 o p_11170_ + a (Lcom/mojang/authlib/GameProfile;)Ljava/lang/String; m_11165_ + 0 o p_11166_ + onProfileLookupFailed (Lcom/mojang/authlib/GameProfile;Ljava/lang/Exception;)V onProfileLookupFailed + 0 o p_11172_ + 1 o p_11173_ + onProfileLookupSucceeded (Lcom/mojang/authlib/GameProfile;)V onProfileLookupSucceeded + 0 o p_11175_ +alj$a net/minecraft/server/players/OldUsersConverter$ConversionError + (Ljava/lang/String;)V + 0 o p_11177_ + (Ljava/lang/String;Ljava/lang/Throwable;)V + 0 o p_11182_ + 1 o p_11183_ +alk net/minecraft/server/players/PlayerList + A f_11210_ + a f_11188_ + b f_11189_ + c f_11190_ + d f_11191_ + e f_11192_ + f f_243017_ + g f_11193_ + h f_143987_ + i f_11194_ + j f_11195_ + k f_11196_ + l f_11197_ + m f_11198_ + n f_11199_ + o f_11200_ + p f_11201_ + q f_11202_ + r f_11203_ + s f_11204_ + t f_11205_ + u f_243858_ + v f_256838_ + w f_11207_ + x f_184208_ + y f_11209_ + z f_143988_ + ()V + static + (Lnet/minecraft/server/MinecraftServer;Lhl;Ldzb;I)V + 0 o p_203842_ + 1 o p_251844_ + 2 o p_203844_ + 3 o p_203845_ + a (Laig;Z)Laig; m_11236_ + 0 o p_11237_ + 1 o p_11238_ + a (Ljava/lang/String;)Laig; m_11255_ + 0 o p_11256_ + a (Z)V m_6628_ + 0 o p_11276_ + a (Ltl;Lds;Lss$a;)V m_243063_ + 0 o p_243229_ + 1 o p_243254_ + 2 o p_243255_ + a (Lbyo;Lsw;)V m_215621_ + 0 o p_215622_ + 1 o p_215623_ + a (Laig;I)V m_11226_ + 0 o p_11227_ + 1 o p_11228_ + a (Laig;Laif;)V m_11229_ + 0 o p_11230_ + 1 o p_11231_ + a (Lsw;Z)V m_240416_ + 0 o p_240618_ + 1 o p_240644_ + a (Lsw;Laig;)Lsw; m_215637_ + static + 0 o p_241527_ + 1 o p_215639_ + a (Ljava/util/UUID;)Laig; m_11259_ + 0 o p_11260_ + a (Laif;)V m_184209_ + 0 o p_184210_ + a (Ltl;Ljava/util/function/Predicate;Laig;Lss$a;)V m_245148_ + 0 o p_249952_ + 1 o p_250784_ + 2 o p_249623_ + 3 o p_250276_ + a (Luo;Lacp;)V m_11270_ + 0 o p_11271_ + 1 o p_11272_ + a (Ltl;)Z m_247528_ + 0 o p_251384_ + a (Lcom/mojang/authlib/GameProfile;)V m_5749_ + 0 o p_11254_ + a (Lsw;Ljava/util/function/Function;Z)V m_240502_ + 0 o p_240526_ + 1 o p_240594_ + 2 o p_240648_ + a (Lbyo;)Lamn; m_11239_ + 0 o p_11240_ + a (Lbyo;DDDDLacp;Luo;)V m_11241_ + 0 o p_11242_ + 1 o p_11243_ + 2 o p_11244_ + 3 o p_11245_ + 4 o p_11246_ + 5 o p_11247_ + 6 o p_11248_ + a (Ladg;Laig;)V m_11273_ + 0 o p_11274_ + 1 o p_11275_ + a (Ltl;Laig;Lss$a;)V m_243049_ + 0 o p_243264_ + 1 o p_243234_ + 2 o p_243204_ + a (Laig;)Lqr; m_11224_ + 0 o p_11225_ + a (Laig;Lnet/minecraft/server/MinecraftServer$b;)V m_215604_ + static + 0 o p_215605_ + 1 o p_215606_ + a (Luo;)V m_11268_ + 0 o p_11269_ + a ()V m_7542_ + a (I)V m_11217_ + 0 o p_11218_ + a (Lbfj;)V m_215619_ + static + 0 o p_215620_ + a (Lsd;Laig;)V m_11261_ + 0 o p_11262_ + 1 o p_11263_ + a (Laif;Lbfj;)Lbfj; m_215601_ + static + 0 o p_215602_ + 1 o p_215603_ + a (Ljava/net/SocketAddress;Lcom/mojang/authlib/GameProfile;)Lsw; m_6418_ + 0 o p_11257_ + 1 o p_11258_ + b (Ljava/lang/String;)Ljava/util/List; m_11282_ + 0 o p_11283_ + b (Lbyo;Lsw;)V m_215649_ + 0 o p_215650_ + 1 o p_215651_ + b (Laig;)V m_6765_ + 0 o p_11277_ + b (Z)V m_11284_ + 0 o p_11285_ + b (Lcom/mojang/authlib/GameProfile;)V m_5750_ + 0 o p_11281_ + b (I)V m_184211_ + 0 o p_184212_ + c (Lcom/mojang/authlib/GameProfile;)Z m_5764_ + 0 o p_11294_ + c ()Lnet/minecraft/server/MinecraftServer; m_7873_ + c (Laig;)V m_11286_ + 0 o p_11287_ + d (Lcom/mojang/authlib/GameProfile;)Z m_5765_ + 0 o p_11298_ + d ()V m_11288_ + d (Laig;)V m_11289_ + 0 o p_11290_ + e (Lcom/mojang/authlib/GameProfile;)Laig; m_215624_ + 0 o p_215625_ + e (Laig;)V m_11292_ + 0 o p_11293_ + e ()[Ljava/lang/String; m_11291_ + f (Laig;)Lacy; m_11296_ + 0 o p_11297_ + f ()Lalq; m_11295_ + f (Lcom/mojang/authlib/GameProfile;)Z m_11303_ + 0 o p_11304_ + g ()Lalh; m_11299_ + h ()V m_11302_ + i ()Lals; m_11305_ + j ()[Ljava/lang/String; m_11306_ + k ()Lall; m_11307_ + l ()[Ljava/lang/String; m_11308_ + m ()I m_11309_ + n ()I m_11310_ + o ()Z m_11311_ + p ()I m_11312_ + q ()I m_184213_ + r ()Lqr; m_6960_ + s ()V m_11313_ + t ()Ljava/util/List; m_11314_ + u ()V m_11315_ + v ()Z m_11316_ +alk$1 net/minecraft/server/players/PlayerList$1 + a f_11317_ + (Lalk;)V + 0 o p_11319_ + a (Ldds;D)V m_6312_ + 0 o p_11321_ + 1 o p_11322_ + a (Ldds;DDJ)V m_6689_ + 0 o p_11328_ + 1 o p_11329_ + 2 o p_11330_ + 3 o p_11331_ + a (Ldds;DD)V m_7721_ + 0 o p_11324_ + 1 o p_11325_ + 2 o p_11326_ + a (Ldds;I)V m_5904_ + 0 o p_11333_ + 1 o p_11334_ + b (Ldds;I)V m_5903_ + 0 o p_11339_ + 1 o p_11340_ + b (Ldds;D)V m_6315_ + 0 o p_11336_ + 1 o p_11337_ + c (Ldds;D)V m_6313_ + 0 o p_11342_ + 1 o p_11343_ +all net/minecraft/server/players/ServerOpList + (Ljava/io/File;)V + 0 o p_11345_ + a (Lcom/google/gson/JsonObject;)Lalo; m_6666_ + 0 o p_11348_ + a (Ljava/lang/Object;)Ljava/lang/String; m_5981_ + 0 o p_11350_ + a (I)[Ljava/lang/String; m_143996_ + static + 0 o p_143997_ + a ()[Ljava/lang/String; m_5875_ + a (Lcom/mojang/authlib/GameProfile;)Z m_11351_ + 0 o p_11352_ + b (Lcom/mojang/authlib/GameProfile;)Ljava/lang/String; m_5981_ + 0 o p_11354_ +alm net/minecraft/server/players/ServerOpListEntry + a f_11355_ + b f_11356_ + (Lcom/google/gson/JsonObject;)V + 0 o p_11358_ + (Lcom/mojang/authlib/GameProfile;IZ)V + 0 o p_11360_ + 1 o p_11361_ + 2 o p_11362_ + a ()I m_11363_ + a (Lcom/google/gson/JsonObject;)V m_6009_ + 0 o p_11365_ + b (Lcom/google/gson/JsonObject;)Lcom/mojang/authlib/GameProfile; m_11367_ + static + 0 o p_11368_ + b ()Z m_11366_ +aln net/minecraft/server/players/SleepStatus + a f_143998_ + b f_143999_ + ()V + a (ILjava/util/List;)Z m_144004_ + 0 o p_144005_ + 1 o p_144006_ + a (Ljava/util/List;)Z m_144007_ + 0 o p_144008_ + a ()V m_144001_ + a (I)Z m_144002_ + 0 o p_144003_ + b (I)I m_144010_ + 0 o p_144011_ + b ()I m_144009_ +alo net/minecraft/server/players/StoredUserEntry + a f_11369_ + (Ljava/lang/Object;)V + 0 o p_11371_ + a (Lcom/google/gson/JsonObject;)V m_6009_ + 0 o p_11372_ + f ()Z m_7524_ + g ()Ljava/lang/Object; m_11373_ +alp net/minecraft/server/players/StoredUserList + a f_11374_ + b f_11375_ + c f_11376_ + d f_11377_ + ()V + static + (Ljava/io/File;)V + 0 o p_11380_ + a (Ljava/lang/Object;)Ljava/lang/String; m_5981_ + 0 o p_11384_ + a ()[Ljava/lang/String; m_5875_ + a (Lalo;)V m_11381_ + 0 o p_11382_ + a (Lcom/google/gson/JsonObject;)Lalo; m_6666_ + 0 o p_11383_ + b ()Ljava/io/File; m_11385_ + b (Ljava/lang/Object;)Lalo; m_11388_ + 0 o p_11389_ + b (Lalo;)V m_11386_ + 0 o p_11387_ + c (Ljava/lang/Object;)V m_11393_ + 0 o p_11394_ + c (Lalo;)Lcom/google/gson/JsonObject; m_11391_ + static + 0 o p_11392_ + c ()Z m_11390_ + d ()Ljava/util/Collection; m_11395_ + d (Ljava/lang/Object;)Z m_11396_ + 0 o p_11397_ + e ()V m_11398_ + f ()V m_11399_ + g ()V m_11400_ +alq net/minecraft/server/players/UserBanList + (Ljava/io/File;)V + 0 o p_11402_ + a (Lcom/google/gson/JsonObject;)Lalo; m_6666_ + 0 o p_11405_ + a (Ljava/lang/Object;)Ljava/lang/String; m_5981_ + 0 o p_11409_ + a (I)[Ljava/lang/String; m_144012_ + static + 0 o p_144013_ + a ()[Ljava/lang/String; m_5875_ + a (Lcom/mojang/authlib/GameProfile;)Z m_11406_ + 0 o p_11407_ + b (Lcom/mojang/authlib/GameProfile;)Ljava/lang/String; m_5981_ + 0 o p_11411_ +alr net/minecraft/server/players/UserBanListEntry + (Lcom/mojang/authlib/GameProfile;Ljava/util/Date;Ljava/lang/String;Ljava/util/Date;Ljava/lang/String;)V + 0 o p_11438_ + 1 o p_11439_ + 2 o p_11440_ + 3 o p_11441_ + 4 o p_11442_ + (Lcom/google/gson/JsonObject;)V + 0 o p_11434_ + (Lcom/mojang/authlib/GameProfile;)V + 0 o p_11436_ + a (Lcom/google/gson/JsonObject;)V m_6009_ + 0 o p_11444_ + b (Lcom/google/gson/JsonObject;)Lcom/mojang/authlib/GameProfile; m_11445_ + static + 0 o p_11446_ + e ()Lsw; m_8003_ +als net/minecraft/server/players/UserWhiteList + (Ljava/io/File;)V + 0 o p_11449_ + a (Lcom/google/gson/JsonObject;)Lalo; m_6666_ + 0 o p_11452_ + a (Ljava/lang/Object;)Ljava/lang/String; m_5981_ + 0 o p_11456_ + a (I)[Ljava/lang/String; m_144014_ + static + 0 o p_144015_ + a ()[Ljava/lang/String; m_5875_ + a (Lcom/mojang/authlib/GameProfile;)Z m_11453_ + 0 o p_11454_ + b (Lcom/mojang/authlib/GameProfile;)Ljava/lang/String; m_5981_ + 0 o p_11458_ +alt net/minecraft/server/players/UserWhiteListEntry + (Lcom/google/gson/JsonObject;)V + 0 o p_11460_ + (Lcom/mojang/authlib/GameProfile;)V + 0 o p_11462_ + a (Lcom/google/gson/JsonObject;)V m_6009_ + 0 o p_11464_ + b (Lcom/google/gson/JsonObject;)Lcom/mojang/authlib/GameProfile; m_11465_ + static + 0 o p_11466_ +alu net/minecraft/server/players/package-info +alv net/minecraft/server/rcon/NetworkDataOutputStream + a f_11467_ + b f_11468_ + (I)V + 0 o p_11470_ + a ()[B m_11471_ + a (Ljava/lang/String;)V m_11474_ + 0 o p_11475_ + a (S)V m_11476_ + 0 o p_11477_ + a (I)V m_11472_ + 0 o p_11473_ + a (F)V m_144016_ + 0 o p_144017_ + a ([B)V m_11478_ + 0 o p_11479_ + b (I)V m_144018_ + 0 o p_144019_ + b ()V m_11480_ +alw net/minecraft/server/rcon/PktUtils + a f_144020_ + b f_11481_ + ()V + static + ()V + a ([BI)I m_11485_ + static + 0 o p_11486_ + 1 o p_11487_ + a ([BII)Ljava/lang/String; m_11488_ + static + 0 o p_11489_ + 1 o p_11490_ + 2 o p_11491_ + a (B)Ljava/lang/String; m_11483_ + static + 0 o p_11484_ + b ([BII)I m_11492_ + static + 0 o p_11493_ + 1 o p_11494_ + 2 o p_11495_ + c ([BII)I m_11496_ + static + 0 o p_11497_ + 1 o p_11498_ + 2 o p_11499_ +alx net/minecraft/server/rcon/RconConsoleSource + b f_144022_ + c f_11500_ + d f_11501_ + e f_11502_ + ()V + static + (Lnet/minecraft/server/MinecraftServer;)V + 0 o p_11505_ + N_ ()Z m_6102_ + a (Lsw;)V m_213846_ + 0 o p_215653_ + e ()V m_11512_ + e_ ()Z m_6999_ + f ()Ljava/lang/String; m_11513_ + g ()Lds; m_11514_ + q_ ()Z m_7028_ +aly net/minecraft/server/rcon/package-info +alz net/minecraft/server/rcon/thread/GenericThread + a f_11515_ + b f_11516_ + c f_11517_ + d f_11518_ + e f_11519_ + f f_144023_ + ()V + static + (Ljava/lang/String;)V + 0 o p_11522_ + a ()Z m_7528_ + b ()V m_7530_ + c ()Z m_11523_ +am net/minecraft/advancements/CriterionTriggerInstance + a (Lct;)Lcom/google/gson/JsonObject; m_7683_ + 0 o p_14485_ + a ()Lacq; m_7294_ +ama net/minecraft/server/rcon/thread/QueryThreadGs4 + d f_11524_ + e f_144024_ + f f_144025_ + g f_144026_ + h f_144027_ + i f_11525_ + j f_11526_ + k f_11527_ + l f_11528_ + m f_11529_ + n f_11530_ + o f_11531_ + p f_11532_ + q f_11533_ + r f_11534_ + s f_11535_ + t f_11536_ + u f_11537_ + v f_11538_ + ()V + static + (Ladf;I)V + 0 o p_11541_ + 1 o p_11542_ + a (Ljava/net/SocketAddress;)[B m_11551_ + 0 o p_11552_ + a (Ljava/lang/Exception;)V m_11547_ + 0 o p_11548_ + a (Ladf;)Lama; m_11553_ + static + 0 o p_11554_ + a ()Z m_7528_ + a (Ljava/net/DatagramPacket;)Z m_11549_ + 0 o p_11550_ + a ([BLjava/net/DatagramPacket;)V m_11555_ + 0 o p_11556_ + 1 o p_11557_ + a (JLama$a;)Z m_11544_ + static + 0 o p_11545_ + 1 o p_11546_ + b (Ljava/net/DatagramPacket;)[B m_11558_ + 0 o p_11559_ + c (Ljava/net/DatagramPacket;)Ljava/lang/Boolean; m_11560_ + 0 o p_11561_ + d (Ljava/net/DatagramPacket;)V m_11563_ + 0 o p_11564_ + d ()V m_11562_ + e ()Z m_11565_ + run ()V run +ama$a net/minecraft/server/rcon/thread/QueryThreadGs4$RequestChallenge + a f_11567_ + b f_11568_ + c f_11569_ + d f_11570_ + e f_11571_ + (Ljava/net/DatagramPacket;)V + 0 o p_11573_ + a (J)Ljava/lang/Boolean; m_11575_ + 0 o p_11576_ + a ()I m_11574_ + b ()[B m_11577_ + c ()[B m_11578_ + d ()Ljava/lang/String; m_144028_ +amb net/minecraft/server/rcon/thread/RconClient + d f_11579_ + e f_144029_ + f f_144030_ + g f_144031_ + h f_144032_ + i f_144033_ + j f_11580_ + k f_11581_ + l f_11582_ + m f_11583_ + n f_11584_ + ()V + static + (Ladf;Ljava/lang/String;Ljava/net/Socket;)V + 0 o p_11587_ + 1 o p_11588_ + 2 o p_11589_ + a (ILjava/lang/String;)V m_11594_ + 0 o p_11595_ + 1 o p_11596_ + a (IILjava/lang/String;)V m_11590_ + 0 o p_11591_ + 1 o p_11592_ + 2 o p_11593_ + b ()V m_7530_ + d ()V m_11598_ + e ()V m_11599_ + run ()V run +amc net/minecraft/server/rcon/thread/RconThread + d f_11601_ + e f_11602_ + f f_11603_ + g f_11604_ + h f_11605_ + ()V + static + (Ladf;Ljava/net/ServerSocket;Ljava/lang/String;)V + 0 o p_11608_ + 1 o p_11609_ + 2 o p_11610_ + a (Lamb;)Z m_11611_ + static + 0 o p_11612_ + a (Ladf;)Lamc; m_11615_ + static + 0 o p_11616_ + a (Ljava/net/ServerSocket;)V m_11613_ + 0 o p_11614_ + b ()V m_7530_ + d ()V m_11618_ + run ()V run +amd net/minecraft/server/rcon/thread/package-info +ame net/minecraft/sounds/Music + a f_11620_ + b f_11621_ + c f_11622_ + d f_11623_ + e f_11624_ + ()V + static + (Lhe;IIZ)V + 0 o p_263426_ + 1 o p_263377_ + 2 o p_263383_ + 3 o p_263387_ + a ()Lhe; m_263193_ + a (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; m_263159_ + static + 0 o p_11635_ + a (Lame;)Ljava/lang/Boolean; m_144034_ + static + 0 o p_144035_ + b (Lame;)Ljava/lang/Integer; m_144036_ + static + 0 o p_144037_ + b ()I m_11636_ + c ()I m_11639_ + c (Lame;)Ljava/lang/Integer; m_144038_ + static + 0 o p_144039_ + d (Lame;)Lhe; m_263158_ + static + 0 o p_144041_ + d ()Z m_11642_ +amf net/minecraft/sounds/Musics + a f_11645_ + b f_11646_ + c f_11647_ + d f_11648_ + e f_11649_ + f f_11650_ + g f_11651_ + h f_144042_ + i f_144043_ + j f_144044_ + k f_144045_ + l f_144046_ + ()V + static + ()V + a (Lhe;)Lame; m_263184_ + static + 0 o p_263395_ +amg net/minecraft/sounds/SoundEvent + a f_263124_ + b f_263130_ + c f_262723_ + d f_11656_ + e f_215659_ + f f_215660_ + ()V + static + (Lacq;FZ)V + 0 o p_215665_ + 1 o p_215666_ + 2 o p_215667_ + a ()Lacq; m_11660_ + a (Lacq;)Lamg; m_262824_ + static + 0 o p_262973_ + a (Lsf;)V m_263231_ + 0 o p_263344_ + a (Lacq;Ljava/util/Optional;)Lamg; m_263227_ + static + 0 o p_263406_ + 1 o p_263346_ + a (F)F m_215668_ + 0 o p_215669_ + a (Lacq;F)Lamg; m_262856_ + static + 0 o p_263003_ + 1 o p_263029_ + a (Lacq;Ljava/lang/Float;)Lamg; m_263213_ + static + 0 o p_263420_ + 1 o p_263360_ + a (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; m_263241_ + static + 0 o p_263380_ + b (Lsf;)Lamg; m_263214_ + static + 0 o p_263371_ + b ()Ljava/util/Optional; m_263201_ + b (Lacq;)Lamg; m_263192_ + static + 0 o p_263407_ +amh net/minecraft/sounds/SoundEvents + A f_12648_ + AA f_12633_ + AB f_12634_ + AC f_12635_ + AD f_12638_ + AE f_12639_ + AF f_12640_ + AG f_12641_ + AH f_12642_ + AI f_12591_ + AJ f_12592_ + AK f_12593_ + AL f_12594_ + AM f_12595_ + AN f_12596_ + AO f_12597_ + AP f_12598_ + AQ f_12599_ + AR f_12600_ + AS f_12601_ + AT f_12602_ + AU f_12603_ + AV f_12604_ + AW f_12605_ + AX f_12606_ + AY f_12607_ + AZ f_12608_ + Aa f_12556_ + Ab f_12557_ + Ac f_12558_ + Ad f_12559_ + Ae f_12560_ + Af f_12561_ + Ag f_12562_ + Ah f_12563_ + Ai f_12617_ + Aj f_12618_ + Ak f_12619_ + Al f_12620_ + Am f_12621_ + An f_12622_ + Ao f_12623_ + Ap f_12624_ + Aq f_12625_ + Ar f_12626_ + As f_12627_ + At f_12628_ + Au f_12629_ + Av f_12631_ + Aw f_12632_ + Ax f_12636_ + Ay f_12637_ + Az f_12630_ + B f_12649_ + Ba f_12609_ + Bb f_12610_ + Bc f_12611_ + Bd f_12612_ + Be f_12613_ + Bf f_12614_ + Bg f_12615_ + Bh f_12616_ + Bi f_12644_ + Bj f_12645_ + Bk f_12646_ + Bl f_12647_ + C f_12650_ + D f_144242_ + E f_144243_ + F f_144244_ + G f_144245_ + H f_144048_ + I f_276532_ + J f_144049_ + K f_144050_ + L f_144051_ + M f_144052_ + N f_144053_ + O f_144054_ + P f_12651_ + Q f_12652_ + R f_12653_ + S f_12654_ + T f_11663_ + U f_11664_ + V f_11665_ + W f_11666_ + X f_11667_ + Y f_11668_ + Z f_11669_ + a f_215670_ + aA f_144066_ + aB f_144067_ + aC f_144068_ + aD f_144069_ + aE f_144070_ + aF f_144071_ + aG f_144072_ + aH f_144073_ + aI f_144055_ + aJ f_144056_ + aK f_144057_ + aL f_144058_ + aM f_11716_ + aN f_11717_ + aO f_11718_ + aP f_11719_ + aQ f_11720_ + aR f_11721_ + aS f_11722_ + aT f_11723_ + aU f_244021_ + aV f_244432_ + aW f_244426_ + aX f_244240_ + aY f_244286_ + aZ f_244543_ + aa f_11670_ + ab f_11671_ + ac f_11672_ + ad f_11673_ + ae f_11674_ + af f_11675_ + ag f_11676_ + ah f_11677_ + ai f_11678_ + aj f_11679_ + ak f_11680_ + al f_11681_ + am f_11682_ + an f_11683_ + ao f_11684_ + ap f_11685_ + aq f_11686_ + ar f_11687_ + as f_11688_ + at f_144059_ + au f_144060_ + av f_144061_ + aw f_144062_ + ax f_144063_ + ay f_144064_ + az f_144065_ + b f_215671_ + bA f_11741_ + bB f_11690_ + bC f_11691_ + bD f_11692_ + bE f_11693_ + bF f_11694_ + bG f_11695_ + bH f_11696_ + bI f_11697_ + bJ f_11698_ + bK f_11699_ + bL f_11700_ + bM f_144078_ + bN f_144079_ + bO f_144080_ + bP f_144081_ + bQ f_144082_ + bR f_11701_ + bS f_11702_ + bT f_11703_ + bU f_11704_ + bV f_11705_ + bW f_11706_ + bX f_11707_ + bY f_11708_ + bZ f_11709_ + ba f_243707_ + bb f_243699_ + bc f_243903_ + bd f_244603_ + be f_244067_ + bf f_244533_ + bg f_244181_ + bh f_243721_ + bi f_244336_ + bj f_11724_ + bk f_11725_ + bl f_11726_ + bm f_11727_ + bn f_11728_ + bo f_11729_ + bp f_11730_ + bq f_11731_ + br f_11732_ + bs f_11733_ + bt f_11734_ + bu f_11735_ + bv f_11736_ + bw f_11737_ + bx f_11738_ + by f_11739_ + bz f_11740_ + c f_215672_ + cA f_215673_ + cB f_11781_ + cC f_144077_ + cD f_11782_ + cE f_11783_ + cF f_144089_ + cG f_215674_ + cH f_184214_ + cI f_184215_ + cJ f_184216_ + cK f_144090_ + cL f_144091_ + cM f_144092_ + cN f_144093_ + cO f_144094_ + cP f_144095_ + cQ f_243764_ + cR f_244538_ + cS f_244032_ + cT f_243972_ + cU f_243713_ + cV f_243775_ + cW f_244204_ + cX f_244086_ + cY f_244044_ + cZ f_244506_ + ca f_11710_ + cb f_11711_ + cc f_11712_ + cd f_144074_ + ce f_11713_ + cf f_11714_ + cg f_11715_ + ch f_11769_ + ci f_11770_ + cj f_11771_ + ck f_11772_ + cl f_276624_ + cm f_271174_ + cn f_276592_ + co f_271452_ + cp f_276508_ + cq f_11773_ + cr f_11774_ + cs f_11775_ + ct f_11776_ + cu f_11777_ + cv f_11778_ + cw f_144075_ + cx f_11779_ + cy f_11780_ + cz f_144076_ + d f_215675_ + dA f_11744_ + dB f_11745_ + dC f_11746_ + dD f_271315_ + dE f_271320_ + dF f_271532_ + dG f_271146_ + dH f_271129_ + dI f_271103_ + dJ f_271122_ + dK f_271211_ + dL f_271250_ + dM f_271515_ + dN f_271319_ + dO f_271390_ + dP f_271307_ + dQ f_271127_ + dR f_271332_ + dS f_271496_ + dT f_271494_ + dU f_271428_ + dV f_271181_ + dW f_271221_ + dX f_271488_ + dY f_271095_ + dZ f_271262_ + da f_244016_ + db f_11784_ + dc f_144096_ + dd f_144097_ + de f_144098_ + df f_144099_ + dg f_144100_ + dh f_144101_ + di f_144102_ + dj f_11785_ + dk f_11786_ + dl f_11787_ + dm f_11788_ + dn f_11789_ + do f_11790_ + dp f_11791_ + dq f_11792_ + dr f_11793_ + ds f_144083_ + dt f_144084_ + du f_144085_ + dv f_144086_ + dw f_144087_ + dx f_144088_ + dy f_11794_ + dz f_11743_ + e f_215676_ + eA f_11757_ + eB f_11758_ + eC f_11759_ + eD f_11760_ + eE f_11761_ + eF f_11762_ + eG f_11763_ + eH f_11764_ + eI f_11765_ + eJ f_11766_ + eK f_11767_ + eL f_11768_ + eM f_11822_ + eN f_11823_ + eO f_11824_ + eP f_144117_ + eQ f_144118_ + eR f_144119_ + eS f_144120_ + eT f_144121_ + eU f_11825_ + eV f_11826_ + eW f_11827_ + eX f_11828_ + eY f_11829_ + eZ f_11830_ + ea f_271395_ + eb f_271322_ + ec f_271171_ + ed f_271444_ + ee f_271406_ + ef f_271336_ + eg f_271273_ + eh f_11747_ + ei f_11748_ + ej f_11749_ + ek f_11750_ + el f_11751_ + em f_11752_ + en f_11753_ + eo f_11754_ + ep f_256738_ + eq f_256739_ + er f_256993_ + es f_256961_ + et f_256863_ + eu f_256874_ + ev f_256717_ + ew f_257000_ + ex f_256782_ + ey f_11755_ + ez f_11756_ + f f_215677_ + fA f_144106_ + fB f_144107_ + fC f_144108_ + fD f_144109_ + fE f_144110_ + fF f_144111_ + fG f_144112_ + fH f_144113_ + fI f_144114_ + fJ f_144115_ + fK f_144116_ + fL f_144134_ + fM f_11796_ + fN f_11797_ + fO f_11798_ + fP f_11799_ + fQ f_11800_ + fR f_11801_ + fS f_11802_ + fT f_11803_ + fU f_11804_ + fV f_11805_ + fW f_11806_ + fX f_11807_ + fY f_11808_ + fZ f_11809_ + fa f_11831_ + fb f_11832_ + fc f_11833_ + fd f_11834_ + fe f_11835_ + ff f_11836_ + fg f_11837_ + fh f_11838_ + fi f_11839_ + fj f_11840_ + fk f_11841_ + fl f_11842_ + fm f_11843_ + fn f_11844_ + fo f_11845_ + fp f_11846_ + fq f_11847_ + fr f_271175_ + fs f_271324_ + ft f_271448_ + fu f_271337_ + fv f_271339_ + fw f_271369_ + fx f_144103_ + fy f_144104_ + fz f_144105_ + g f_215678_ + gA f_11819_ + gB f_11820_ + gC f_11821_ + gD f_11875_ + gE f_11876_ + gF f_144133_ + gG f_11877_ + gH f_11878_ + gI f_11879_ + gJ f_11880_ + gK f_11881_ + gL f_11882_ + gM f_11883_ + gN f_11884_ + gO f_11885_ + gP f_11886_ + gQ f_11887_ + gR f_11888_ + gS f_11889_ + gT f_11890_ + gU f_11891_ + gV f_11892_ + gW f_11893_ + gX f_11894_ + gY f_11895_ + gZ f_11896_ + ga f_11810_ + gb f_11811_ + gc f_11812_ + gd f_11813_ + ge f_11814_ + gf f_144135_ + gg f_144136_ + gh f_144137_ + gi f_144138_ + gj f_144139_ + gk f_144140_ + gl f_144122_ + gm f_144123_ + gn f_144124_ + go f_144125_ + gp f_144126_ + gq f_144127_ + gr f_144128_ + gs f_144129_ + gt f_144130_ + gu f_144131_ + gv f_144132_ + gw f_11815_ + gx f_11816_ + gy f_11817_ + gz f_11818_ + h f_11689_ + hA f_11871_ + hB f_11872_ + hC f_11873_ + hD f_11874_ + hE f_11928_ + hF f_11929_ + hG f_11930_ + hH f_11931_ + hI f_11932_ + hJ f_11933_ + hK f_11934_ + hL f_11935_ + hM f_11936_ + hN f_11937_ + hO f_11938_ + hP f_11939_ + hQ f_11940_ + hR f_11941_ + hS f_11942_ + hT f_144141_ + hU f_144142_ + hV f_144143_ + hW f_144144_ + hX f_144145_ + hY f_11943_ + hZ f_11944_ + ha f_11897_ + hb f_11898_ + hc f_11899_ + hd f_11900_ + he f_11849_ + hf f_11850_ + hg f_11851_ + hh f_11852_ + hi f_11853_ + hj f_11854_ + hk f_11855_ + hl f_11856_ + hm f_11857_ + hn f_11858_ + ho f_11859_ + hp f_11860_ + hq f_11861_ + hr f_11862_ + hs f_11863_ + ht f_11864_ + hu f_11865_ + hv f_11866_ + hw f_11867_ + hx f_11868_ + hy f_11869_ + hz f_11870_ + i f_11742_ + iA f_215686_ + iB f_215687_ + iC f_215688_ + iD f_215689_ + iE f_215690_ + iF f_215691_ + iG f_215692_ + iH f_215693_ + iI f_215694_ + iJ f_215695_ + iK f_215696_ + iL f_215697_ + iM f_11902_ + iN f_11903_ + iO f_11904_ + iP f_11905_ + iQ f_11906_ + iR f_11907_ + iS f_11908_ + iT f_11909_ + iU f_11910_ + iV f_11911_ + iW f_11912_ + iX f_11913_ + iY f_11914_ + iZ f_11915_ + ia f_11945_ + ib f_11946_ + ic f_11947_ + id f_11948_ + ie f_11949_ + if f_11950_ + ig f_11951_ + ih f_11952_ + ii f_11953_ + ij f_271189_ + ik f_271527_ + il f_271513_ + im f_271142_ + in f_271507_ + io f_276591_ + ip f_276439_ + iq f_276660_ + ir f_276580_ + is f_276543_ + it f_215679_ + iu f_215680_ + iv f_215681_ + iw f_215682_ + ix f_215683_ + iy f_215684_ + iz f_215685_ + j f_11795_ + jA f_144160_ + jB f_144161_ + jC f_144162_ + jD f_144163_ + jE f_144164_ + jF f_144165_ + jG f_144166_ + jH f_144167_ + jI f_144168_ + jJ f_144169_ + jK f_144170_ + jL f_215698_ + jM f_215699_ + jN f_144171_ + jO f_144172_ + jP f_144173_ + jQ f_144146_ + jR f_144147_ + jS f_144148_ + jT f_144149_ + jU f_144150_ + jV f_215700_ + jW f_144151_ + jX f_11988_ + jY f_11989_ + jZ f_11990_ + ja f_11916_ + jb f_11917_ + jc f_11918_ + jd f_11919_ + je f_11920_ + jf f_11921_ + jg f_11922_ + jh f_11923_ + ji f_11924_ + jj f_11925_ + jk f_11926_ + jl f_11927_ + jm f_11981_ + jn f_11982_ + jo f_11983_ + jp f_11984_ + jq f_11985_ + jr f_11986_ + js f_11987_ + jt f_144153_ + ju f_144154_ + jv f_144155_ + jw f_144156_ + jx f_144157_ + jy f_144158_ + jz f_144159_ + k f_11848_ + kA f_243814_ + kB f_256866_ + kC f_256748_ + kD f_256884_ + kE f_257042_ + kF f_256821_ + kG f_256721_ + kH f_256943_ + kI f_256765_ + kJ f_256835_ + kK f_256813_ + kL f_11955_ + kM f_11956_ + kN f_11957_ + kO f_11958_ + kP f_11959_ + kQ f_11960_ + kR f_11961_ + kS f_11962_ + kT f_11963_ + kU f_11964_ + kV f_11965_ + kW f_11966_ + kX f_11967_ + kY f_11968_ + kZ f_11969_ + ka f_11991_ + kb f_11992_ + kc f_11993_ + kd f_11994_ + ke f_11995_ + kf f_11996_ + kg f_11997_ + kh f_11998_ + ki f_184217_ + kj f_11999_ + kk f_12000_ + kl f_12001_ + km f_12002_ + kn f_12003_ + ko f_12004_ + kp f_12005_ + kq f_12006_ + kr f_144152_ + ks f_144174_ + kt f_144175_ + ku f_144176_ + kv f_144177_ + kw f_244420_ + kx f_243978_ + ky f_244376_ + kz f_243673_ + l f_11901_ + lA f_12046_ + lB f_12047_ + lC f_12048_ + lD f_12049_ + lE f_12050_ + lF f_12051_ + lG f_12052_ + lH f_12053_ + lI f_12054_ + lJ f_144181_ + lK f_12055_ + lL f_12056_ + lM f_12057_ + lN f_12058_ + lO f_12059_ + lP f_12008_ + lQ f_12009_ + lR f_12010_ + lS f_12011_ + lT f_12012_ + lU f_12013_ + lV f_12014_ + lW f_12015_ + lX f_12016_ + lY f_12017_ + lZ f_12018_ + la f_144178_ + lb f_11970_ + lc f_215701_ + ld f_215702_ + le f_11971_ + lf f_11972_ + lg f_11973_ + lh f_11974_ + li f_11975_ + lj f_11976_ + lk f_11977_ + ll f_11978_ + lm f_11979_ + ln f_11980_ + lo f_12034_ + lp f_12035_ + lq f_12036_ + lr f_12037_ + ls f_12038_ + lt f_12039_ + lu f_12040_ + lv f_12041_ + lw f_12042_ + lx f_12043_ + ly f_12044_ + lz f_12045_ + m f_11954_ + mA f_12096_ + mB f_12097_ + mC f_12098_ + mD f_12099_ + mE f_12100_ + mF f_12101_ + mG f_12102_ + mH f_12103_ + mI f_12104_ + mJ f_12105_ + mK f_12106_ + mL f_12107_ + mM f_12108_ + mN f_12109_ + mO f_12110_ + mP f_12111_ + mQ f_12112_ + mR f_12061_ + mS f_215703_ + mT f_215704_ + mU f_215705_ + mV f_215706_ + mW f_215707_ + mX f_144192_ + mY f_144193_ + mZ f_12062_ + ma f_12019_ + mb f_12020_ + mc f_12021_ + md f_12022_ + me f_12023_ + mf f_12024_ + mg f_12025_ + mh f_12026_ + mi f_12027_ + mj f_12028_ + mk f_12029_ + ml f_144179_ + mm f_144180_ + mn f_12030_ + mo f_12031_ + mp f_12032_ + mq f_12033_ + mr f_12087_ + ms f_12088_ + mt f_12089_ + mu f_12090_ + mv f_12091_ + mw f_12092_ + mx f_12093_ + my f_12094_ + mz f_12095_ + n f_12007_ + nA f_144189_ + nB f_144190_ + nC f_144191_ + nD f_215708_ + nE f_215709_ + nF f_215710_ + nG f_215711_ + nH f_215712_ + nI f_215713_ + nJ f_215714_ + nK f_215715_ + nL f_215716_ + nM f_215717_ + nN f_215718_ + nO f_215719_ + nP f_215720_ + nQ f_215721_ + nR f_215722_ + nS f_12076_ + nT f_12077_ + nU f_12078_ + nV f_12079_ + nW f_12080_ + nX f_12081_ + nY f_12082_ + nZ f_12083_ + na f_12063_ + nb f_12064_ + nc f_12065_ + nd f_12066_ + ne f_12067_ + nf f_12068_ + ng f_144194_ + nh f_12069_ + ni f_12070_ + nj f_12071_ + nk f_12072_ + nl f_12073_ + nm f_12074_ + nn f_12075_ + no f_144182_ + np f_144183_ + nq f_144184_ + nr f_144185_ + ns f_144186_ + nt f_271457_ + nu f_271419_ + nv f_271135_ + nw f_271130_ + nx f_271105_ + ny f_144187_ + nz f_144188_ + o f_12060_ + oA f_184222_ + oB f_215730_ + oC f_283788_ + oD f_215732_ + oE f_184223_ + oF f_271257_ + oG f_12155_ + oH f_184224_ + oI f_184225_ + oJ f_12156_ + oK f_184226_ + oL f_12158_ + oM f_283817_ + oN f_283840_ + oO f_283937_ + oP f_283786_ + oQ f_283878_ + oR f_283944_ + oS f_12159_ + oT f_12160_ + oU f_12161_ + oV f_12162_ + oW f_12163_ + oX f_12164_ + oY f_12165_ + oZ f_12114_ + oa f_215723_ + ob f_12084_ + oc f_12085_ + od f_12086_ + oe f_12140_ + of f_12141_ + og f_12142_ + oh f_12143_ + oi f_12144_ + oj f_12145_ + ok f_12146_ + ol f_12147_ + om f_12148_ + on f_12149_ + oo f_184218_ + op f_283910_ + oq f_12150_ + or f_12151_ + os f_12152_ + ot f_12153_ + ou f_12154_ + ov f_12157_ + ow f_215729_ + ox f_184219_ + oy f_184220_ + oz f_184221_ + p f_12113_ + pA f_12120_ + pB f_12121_ + pC f_12122_ + pD f_12123_ + pE f_12124_ + pF f_12125_ + pG f_12126_ + pH f_12127_ + pI f_12128_ + pJ f_12129_ + pK f_12130_ + pL f_12131_ + pM f_12132_ + pN f_12133_ + pO f_12134_ + pP f_12135_ + pQ f_12136_ + pR f_12137_ + pS f_12138_ + pT f_12139_ + pU f_12193_ + pV f_12194_ + pW f_12195_ + pX f_12196_ + pY f_12197_ + pZ f_12198_ + pa f_243868_ + pb f_244107_ + pc f_244597_ + pd f_243990_ + pe f_243933_ + pf f_243719_ + pg f_244275_ + ph f_244033_ + pi f_244318_ + pj f_244344_ + pk f_244414_ + pl f_243893_ + pm f_244210_ + pn f_244593_ + po f_244579_ + pp f_271165_ + pq f_215724_ + pr f_215725_ + ps f_215726_ + pt f_215727_ + pu f_215728_ + pv f_12115_ + pw f_12116_ + px f_12117_ + py f_12118_ + pz f_12119_ + q f_12166_ + qA f_263127_ + qB f_263121_ + qC f_263132_ + qD f_263126_ + qE f_263123_ + qF f_12172_ + qG f_12173_ + qH f_12174_ + qI f_12175_ + qJ f_12176_ + qK f_12177_ + qL f_12178_ + qM f_12179_ + qN f_12180_ + qO f_12181_ + qP f_12182_ + qQ f_12183_ + qR f_12184_ + qS f_12185_ + qT f_12186_ + qU f_12187_ + qV f_12188_ + qW f_12189_ + qX f_12190_ + qY f_12191_ + qZ f_12192_ + qa f_12199_ + qb f_12200_ + qc f_12201_ + qd f_12202_ + qe f_12203_ + qf f_12204_ + qg f_12205_ + qh f_12206_ + qi f_12207_ + qj f_12208_ + qk f_12209_ + ql f_12210_ + qm f_12211_ + qn f_12212_ + qo f_12213_ + qp f_12214_ + qq f_12215_ + qr f_12216_ + qs f_12217_ + qt f_12218_ + qu f_12167_ + qv f_12168_ + qw f_12169_ + qx f_12170_ + qy f_12171_ + qz f_263136_ + r f_12219_ + rA f_215733_ + rB f_12220_ + rC f_12221_ + rD f_12222_ + rE f_12223_ + rF f_12224_ + rG f_12225_ + rH f_12226_ + rI f_12227_ + rJ f_12228_ + rK f_12229_ + rL f_12230_ + rM f_12231_ + rN f_12232_ + rO f_12233_ + rP f_12234_ + rQ f_12235_ + rR f_12236_ + rS f_12237_ + rT f_12238_ + rU f_12239_ + rV f_12240_ + rW f_12241_ + rX f_12242_ + rY f_12243_ + rZ f_12244_ + ra f_12246_ + rb f_12247_ + rc f_12248_ + rd f_12249_ + re f_12250_ + rf f_12251_ + rg f_12252_ + rh f_12253_ + ri f_12254_ + rj f_12255_ + rk f_12256_ + rl f_12257_ + rm f_12258_ + rn f_12259_ + ro f_12260_ + rp f_12261_ + rq f_12262_ + rr f_12263_ + rs f_12264_ + rt f_12265_ + ru f_12266_ + rv f_12267_ + rw f_12268_ + rx f_12269_ + ry f_12270_ + rz f_12271_ + s f_12272_ + sA f_12324_ + sB f_144205_ + sC f_12273_ + sD f_12274_ + sE f_12275_ + sF f_12276_ + sG f_12277_ + sH f_12278_ + sI f_12279_ + sJ f_12280_ + sK f_12281_ + sL f_12282_ + sM f_12283_ + sN f_12284_ + sO f_12285_ + sP f_144195_ + sQ f_144196_ + sR f_144197_ + sS f_144198_ + sT f_144199_ + sU f_12286_ + sV f_12287_ + sW f_12288_ + sX f_144200_ + sY f_144201_ + sZ f_144202_ + sa f_12245_ + sb f_12299_ + sc f_12300_ + sd f_12301_ + se f_12302_ + sf f_12303_ + sg f_12304_ + sh f_12305_ + si f_12306_ + sj f_12307_ + sk f_12308_ + sl f_12309_ + sm f_12310_ + sn f_12311_ + so f_12312_ + sp f_12313_ + sq f_12314_ + sr f_12315_ + ss f_12316_ + st f_12317_ + su f_12318_ + sv f_12319_ + sw f_12320_ + sx f_12321_ + sy f_12322_ + sz f_12323_ + t f_12325_ + tA f_12366_ + tB f_12367_ + tC f_12368_ + tD f_12369_ + tE f_12370_ + tF f_12371_ + tG f_12372_ + tH f_12373_ + tI f_12374_ + tJ f_12375_ + tK f_12376_ + tL f_12377_ + tM f_12326_ + tN f_144206_ + tO f_144207_ + tP f_144208_ + tQ f_144209_ + tR f_144210_ + tS f_12327_ + tT f_12328_ + tU f_12329_ + tV f_12330_ + tW f_12331_ + tX f_12332_ + tY f_12333_ + tZ f_12334_ + ta f_144203_ + tb f_144204_ + tc f_12289_ + td f_12290_ + te f_12291_ + tf f_12292_ + tg f_12293_ + th f_12294_ + ti f_12295_ + tj f_12296_ + tk f_12297_ + tl f_12298_ + tm f_12352_ + tn f_12353_ + to f_12354_ + tp f_12355_ + tq f_12356_ + tr f_12357_ + ts f_12358_ + tt f_12359_ + tu f_12360_ + tv f_12361_ + tw f_12362_ + tx f_12363_ + ty f_12364_ + tz f_12365_ + u f_12378_ + uA f_215746_ + uB f_215747_ + uC f_215748_ + uD f_215749_ + uE f_215750_ + uF f_215751_ + uG f_215752_ + uH f_215754_ + uI f_215755_ + uJ f_215756_ + uK f_215757_ + uL f_12341_ + uM f_12342_ + uN f_12343_ + uO f_12344_ + uP f_12345_ + uQ f_12346_ + uR f_12347_ + uS f_12348_ + uT f_12349_ + uU f_12350_ + uV f_12351_ + uW f_12405_ + uX f_12406_ + uY f_12407_ + uZ f_12408_ + ua f_12335_ + ub f_12336_ + uc f_12337_ + ud f_12338_ + ue f_12339_ + uf f_12340_ + ug f_215753_ + uh f_215734_ + ui f_215735_ + uj f_215736_ + uk f_215737_ + ul f_215738_ + um f_215739_ + un f_215740_ + uo f_215741_ + up f_215742_ + uq f_215743_ + ur f_215744_ + us f_215745_ + ut f_144212_ + uu f_144213_ + uv f_144214_ + uw f_144215_ + ux f_144216_ + uy f_144217_ + uz f_144218_ + v f_12431_ + vA f_12382_ + vB f_12383_ + vC f_12384_ + vD f_12385_ + vE f_12386_ + vF f_12387_ + vG f_12388_ + vH f_12389_ + vI f_12390_ + vJ f_12391_ + vK f_12392_ + vL f_12393_ + vM f_144224_ + vN f_144225_ + vO f_144226_ + vP f_144227_ + vQ f_144228_ + vR f_144229_ + vS f_144230_ + vT f_12394_ + vU f_12395_ + vV f_12396_ + vW f_12397_ + vX f_12398_ + vY f_12399_ + vZ f_12400_ + va f_12409_ + vb f_12410_ + vc f_12411_ + vd f_12412_ + ve f_12413_ + vf f_12414_ + vg f_12415_ + vh f_12416_ + vi f_12417_ + vj f_12418_ + vk f_12419_ + vl f_12420_ + vm f_12421_ + vn f_12422_ + vo f_12423_ + vp f_144211_ + vq f_12424_ + vr f_12425_ + vs f_12426_ + vt f_12427_ + vu f_12428_ + vv f_12429_ + vw f_12430_ + vx f_12379_ + vy f_12380_ + vz f_12381_ + w f_12484_ + wA f_271535_ + wB f_271520_ + wC f_271214_ + wD f_271330_ + wE f_271121_ + wF f_271283_ + wG f_271418_ + wH f_271438_ + wI f_271405_ + wJ f_271300_ + wK f_279531_ + wL f_276434_ + wM f_276489_ + wN f_12473_ + wO f_12474_ + wP f_12475_ + wQ f_12476_ + wR f_12477_ + wS f_12478_ + wT f_12479_ + wU f_12480_ + wV f_12481_ + wW f_12482_ + wX f_12483_ + wY f_12432_ + wZ f_12433_ + wa f_12401_ + wb f_12402_ + wc f_12403_ + wd f_12404_ + we f_144219_ + wf f_144220_ + wg f_144221_ + wh f_144222_ + wi f_144223_ + wj f_12458_ + wk f_12459_ + wl f_12460_ + wm f_12461_ + wn f_12462_ + wo f_12463_ + wp f_12464_ + wq f_12465_ + wr f_12466_ + ws f_12467_ + wt f_12468_ + wu f_12469_ + wv f_12470_ + ww f_12471_ + wx f_12472_ + wy f_271325_ + wz f_271147_ + x f_12537_ + xA f_215758_ + xB f_215759_ + xC f_215760_ + xD f_215761_ + xE f_12511_ + xF f_12512_ + xG f_12513_ + xH f_12514_ + xI f_12515_ + xJ f_12516_ + xK f_12517_ + xL f_12518_ + xM f_12519_ + xN f_12520_ + xO f_12521_ + xP f_12522_ + xQ f_12523_ + xR f_12524_ + xS f_12525_ + xT f_12526_ + xU f_12527_ + xV f_12528_ + xW f_12529_ + xX f_144233_ + xY f_144234_ + xZ f_144235_ + xa f_12434_ + xb f_12435_ + xc f_12436_ + xd f_12437_ + xe f_144231_ + xf f_144232_ + xg f_12438_ + xh f_12439_ + xi f_12440_ + xj f_12441_ + xk f_12442_ + xl f_12443_ + xm f_12444_ + xn f_12445_ + xo f_12446_ + xp f_12447_ + xq f_12448_ + xr f_12449_ + xs f_12450_ + xt f_12451_ + xu f_12452_ + xv f_12453_ + xw f_12454_ + xx f_12455_ + xy f_12456_ + xz f_12457_ + y f_12590_ + yA f_12502_ + yB f_12503_ + yC f_12504_ + yD f_12505_ + yE f_12506_ + yF f_12507_ + yG f_12508_ + yH f_12509_ + yI f_12510_ + yJ f_12564_ + yK f_12565_ + yL f_12566_ + yM f_12567_ + yN f_12568_ + yO f_12569_ + yP f_12570_ + yQ f_12571_ + yR f_12572_ + yS f_12573_ + yT f_12574_ + yU f_12575_ + yV f_12576_ + yW f_12577_ + yX f_12578_ + yY f_12579_ + yZ f_144238_ + ya f_144236_ + yb f_144237_ + yc f_12530_ + yd f_12531_ + ye f_12532_ + yf f_12533_ + yg f_12534_ + yh f_12535_ + yi f_12536_ + yj f_12485_ + yk f_12486_ + yl f_12487_ + ym f_12488_ + yn f_12489_ + yo f_12490_ + yp f_12491_ + yq f_12492_ + yr f_12493_ + ys f_12494_ + yt f_12495_ + yu f_12496_ + yv f_12497_ + yw f_12498_ + yx f_12499_ + yy f_12500_ + yz f_12501_ + z f_12643_ + zA f_215766_ + zB f_215767_ + zC f_215768_ + zD f_215769_ + zE f_215770_ + zF f_215771_ + zG f_215772_ + zH f_215773_ + zI f_215774_ + zJ f_276627_ + zK f_12540_ + zL f_12541_ + zM f_12542_ + zN f_12543_ + zO f_12544_ + zP f_12545_ + zQ f_12546_ + zR f_12547_ + zS f_12548_ + zT f_12549_ + zU f_12550_ + zV f_12551_ + zW f_12552_ + zX f_12553_ + zY f_12554_ + zZ f_12555_ + za f_144239_ + zb f_144240_ + zc f_144241_ + zd f_12580_ + ze f_12581_ + zf f_12582_ + zg f_12583_ + zh f_12584_ + zi f_12585_ + zj f_12586_ + zk f_12587_ + zl f_12588_ + zm f_12589_ + zn f_12538_ + zo f_12539_ + zp f_215775_ + zq f_215776_ + zr f_215777_ + zs f_215778_ + zt f_215779_ + zu f_215780_ + zv f_215781_ + zw f_215762_ + zx f_215763_ + zy f_215764_ + zz f_215765_ + ()V + static + ()V + a (Ljava/lang/String;)Lamg; m_12656_ + static + 0 o p_12657_ + a ()Lcom/google/common/collect/ImmutableList; m_215782_ + static + a (Lacq;Lacq;F)Lhe; m_263198_ + static + 0 o p_263323_ + 1 o p_263411_ + 2 o p_263385_ + a (I)Lhe$c; m_263160_ + static + 0 o p_215784_ + a (Lacq;)Lamg; m_263226_ + static + 0 o p_263332_ + a (Lacq;Lacq;)Lamg; m_263204_ + static + 0 o p_263388_ + 1 o p_263340_ + b (Lacq;)Lhe$c; m_263178_ + static + 0 o p_263361_ + b (Ljava/lang/String;)Lhe$c; m_263237_ + static + 0 o p_263391_ + b (Lacq;Lacq;)Lhe$c; m_263223_ + static + 0 o p_263362_ + 1 o p_263424_ +ami net/minecraft/sounds/SoundSource + a MASTER + b MUSIC + c RECORDS + d WEATHER + e BLOCKS + f HOSTILE + g NEUTRAL + h PLAYERS + i AMBIENT + j VOICE + k f_12669_ + l $VALUES + ()V + static + (Ljava/lang/String;ILjava/lang/String;)V + 0 o p_12673_ + 1 o p_12674_ + 2 o p_12675_ + a ()Ljava/lang/String; m_12676_ + b ()[Lami; m_144247_ + static + valueOf (Ljava/lang/String;)Lami; valueOf + static + 0 o p_12678_ + values ()[Lami; values + static +amj net/minecraft/sounds/package-info +amk net/minecraft/stats/RecipeBook + a f_12680_ + b f_12681_ + c f_12682_ + ()V + a (Lamk;)V m_12685_ + 0 o p_12686_ + a (Laml;)V m_12687_ + 0 o p_12688_ + a (Lccp;)Z m_12689_ + 0 o p_12690_ + a (Lccq;)Z m_12691_ + 0 o p_12692_ + a (Lccq;ZZ)V m_12696_ + 0 o p_12697_ + 1 o p_12698_ + 2 o p_12699_ + a (Lccq;Z)V m_12693_ + 0 o p_12694_ + 1 o p_12695_ + a (Lacq;)V m_12702_ + 0 o p_12703_ + a (Lcjc;)V m_12700_ + 0 o p_12701_ + a ()Laml; m_12684_ + b (Lccq;Z)V m_12706_ + 0 o p_12707_ + 1 o p_12708_ + b (Lacq;)Z m_12711_ + 0 o p_12712_ + b (Lccq;)Z m_12704_ + 0 o p_12705_ + b (Lcjc;)Z m_12709_ + 0 o p_12710_ + c (Lcjc;)V m_12713_ + 0 o p_12714_ + c (Lacq;)V m_12715_ + 0 o p_12716_ + d (Lcjc;)Z m_12717_ + 0 o p_12718_ + d (Lacq;)V m_12719_ + 0 o p_12720_ + e (Lcjc;)V m_12721_ + 0 o p_12722_ + f (Lcjc;)V m_12723_ + 0 o p_12724_ +aml net/minecraft/stats/RecipeBookSettings + a f_12725_ + b f_12726_ + ()V + static + (Ljava/util/Map;)V + 0 o p_12730_ + ()V + a (Laml;)V m_12732_ + 0 o p_12733_ + a (Lqr;)Laml; m_12741_ + static + 0 o p_12742_ + a (Ljava/util/EnumMap;)V m_12739_ + static + 0 o p_12740_ + a (Lqr;Ljava/util/Map;Lccq;Lcom/mojang/datafixers/util/Pair;)V m_12747_ + static + 0 o p_12748_ + 1 o p_12749_ + 2 o p_12750_ + 3 o p_12751_ + a (Lccq;)Z m_12734_ + 0 o p_12735_ + a (Lsf;)Laml; m_12752_ + static + 0 o p_12753_ + a (Lccq;Z)V m_12736_ + 0 o p_12737_ + 1 o p_12738_ + a (Lqr;Lccq;Lcom/mojang/datafixers/util/Pair;)V m_12743_ + 0 o p_12744_ + 1 o p_12745_ + 2 o p_12746_ + a ()Laml; m_12731_ + b (Lccq;Z)V m_12756_ + 0 o p_12757_ + 1 o p_12758_ + b (Lqr;)V m_12759_ + 0 o p_12760_ + b (Lsf;)V m_12761_ + 0 o p_12762_ + b (Lccq;)Z m_12754_ + 0 o p_12755_ + equals (Ljava/lang/Object;)Z equals + 0 o p_12764_ + hashCode ()I hashCode +aml$a net/minecraft/stats/RecipeBookSettings$TypeSettings + a f_12766_ + b f_12767_ + (ZZ)V + 0 o p_12769_ + 1 o p_12770_ + a ()Laml$a; m_12771_ + equals (Ljava/lang/Object;)Z equals + 0 o p_12783_ + hashCode ()I hashCode + toString ()Ljava/lang/String; toString +amm net/minecraft/stats/ServerRecipeBook + c f_144248_ + d f_12786_ + ()V + static + ()V + a (Ljava/util/Collection;Laig;)I m_12791_ + 0 o p_12792_ + 1 o p_12793_ + a (Lqr;Lcjd;)V m_12794_ + 0 o p_12795_ + 1 o p_12796_ + a (Lxb$a;Laig;Ljava/util/List;)V m_12801_ + 0 o p_12802_ + 1 o p_12803_ + 2 o p_12804_ + a (Lqx;Ljava/util/function/Consumer;Lcjd;)V m_12797_ + 0 o p_12798_ + 1 o p_12799_ + 2 o p_12800_ + a (Laig;)V m_12789_ + 0 o p_12790_ + b (Ljava/util/Collection;Laig;)I m_12806_ + 0 o p_12807_ + 1 o p_12808_ + b ()Lqr; m_12805_ +amn net/minecraft/stats/ServerStatsCounter + b f_12809_ + c f_12810_ + d f_12811_ + e f_12812_ + ()V + static + (Lnet/minecraft/server/MinecraftServer;Ljava/io/File;)V + 0 o p_12816_ + 1 o p_12817_ + a (Ljava/lang/String;)V m_12835_ + 0 o p_12836_ + a (Lcom/mojang/datafixers/DataFixer;Ljava/lang/String;)V m_12832_ + 0 o p_12833_ + 1 o p_12834_ + a (Lcom/google/gson/JsonObject;)Lqr; m_12830_ + static + 0 o p_12831_ + a (Lbyo;Lamo;I)V m_6085_ + 0 o p_12827_ + 1 o p_12828_ + 2 o p_12829_ + a (Lamq;Ljava/lang/String;)Ljava/util/Optional; m_12823_ + 0 o p_12824_ + 1 o p_12825_ + a ()V m_12818_ + a (Laig;)V m_12819_ + 0 o p_12820_ + a (Lamq;)Lcom/google/gson/JsonObject; m_12821_ + static + 0 o p_12822_ + a (Lqr;Ljava/lang/String;Lamo;)V m_144249_ + 0 o p_144250_ + 1 o p_144251_ + 2 o p_144252_ + a (Lqr;Ljava/lang/String;Lamq;)V m_12841_ + 0 o p_12842_ + 1 o p_12843_ + 2 o p_12844_ + b (Lamo;)Lacq; m_12846_ + static + 0 o p_12847_ + b ()Ljava/lang/String; m_12845_ + b (Ljava/lang/String;)V m_144253_ + 0 o p_144254_ + c ()V m_12850_ + d ()Ljava/util/Set; m_12851_ +amo net/minecraft/stats/Stat + n f_12852_ + o f_12853_ + p f_12854_ + (Lamq;Ljava/lang/Object;Lamp;)V + 0 o p_12856_ + 1 o p_12857_ + 2 o p_12858_ + a (Lacq;)Ljava/lang/String; m_12865_ + static + 0 o p_12866_ + a (Lamq;Ljava/lang/Object;)Ljava/lang/String; m_12862_ + static + 0 o p_12863_ + 1 o p_12864_ + a (I)Ljava/lang/String; m_12860_ + 0 o p_12861_ + a ()Lamq; m_12859_ + b ()Ljava/lang/Object; m_12867_ + equals (Ljava/lang/Object;)Z equals + 0 o p_12869_ + hashCode ()I hashCode + toString ()Ljava/lang/String; toString +amp net/minecraft/stats/StatFormatter + a f_12872_ + b f_12873_ + c f_12874_ + d f_12875_ + e f_12876_ + ()V + static + a (Ljava/text/DecimalFormat;)V m_12880_ + static + 0 o p_12881_ + a (I)Ljava/lang/String; m_12878_ + static + 0 o p_12879_ + b (I)Ljava/lang/String; m_12882_ + static + 0 o p_12883_ + c (I)Ljava/lang/String; m_12884_ + static + 0 o p_12885_ + format (I)Ljava/lang/String; m_12886_ + 0 o p_12887_ +amq net/minecraft/stats/StatType + a f_12888_ + b f_12889_ + c f_12890_ + (Lhr;)V + 0 o p_12892_ + a ()Lhr; m_12893_ + a (Ljava/lang/Object;Lamp;)Lamo; m_12899_ + 0 o p_12900_ + 1 o p_12901_ + a (Ljava/lang/Object;)Z m_12897_ + 0 o p_12898_ + a (Lamp;Ljava/lang/Object;)Lamo; m_12894_ + 0 o p_12895_ + 1 o p_12896_ + b ()Ljava/lang/String; m_12904_ + b (Ljava/lang/Object;)Lamo; m_12902_ + 0 o p_12903_ + c ()Lsw; m_12905_ + iterator ()Ljava/util/Iterator; iterator +amr net/minecraft/stats/Stats + A f_13005_ + B f_12923_ + C f_12924_ + D f_12925_ + E f_12926_ + F f_12927_ + G f_12928_ + H f_12929_ + I f_12930_ + J f_12931_ + K f_12932_ + L f_12933_ + M f_12934_ + N f_12935_ + O f_12936_ + P f_12937_ + Q f_12938_ + R f_12939_ + S f_12940_ + T f_12941_ + U f_12942_ + V f_12943_ + W f_12944_ + X f_12945_ + Y f_12946_ + Z f_12947_ + a f_12949_ + aA f_12980_ + aB f_12950_ + aC f_12951_ + aD f_12952_ + aE f_12953_ + aF f_12954_ + aa f_12948_ + ab f_12955_ + ac f_12956_ + ad f_12957_ + ae f_12958_ + af f_12959_ + ag f_12960_ + ah f_12961_ + ai f_12962_ + aj f_12963_ + ak f_12964_ + al f_12965_ + am f_12966_ + an f_12967_ + ao f_12968_ + ap f_12969_ + aq f_12970_ + ar f_12971_ + as f_12972_ + at f_12973_ + au f_12974_ + av f_12975_ + aw f_12976_ + ax f_12977_ + ay f_12978_ + az f_12979_ + b f_12981_ + c f_12982_ + d f_12983_ + e f_12984_ + f f_12985_ + g f_12986_ + h f_12987_ + i f_12988_ + j f_12989_ + k f_144255_ + l f_144256_ + m f_12991_ + n f_12992_ + o f_12993_ + p f_12994_ + q f_12995_ + r f_12996_ + s f_12997_ + t f_12998_ + u f_12999_ + v f_13000_ + w f_13001_ + x f_13002_ + y f_13003_ + z f_13004_ + ()V + static + ()V + a (Ljava/lang/String;Lhr;)Lamq; m_13010_ + static + 0 o p_13011_ + 1 o p_13012_ + a (Ljava/lang/String;Lamp;)Lacq; m_13007_ + static + 0 o p_13008_ + 1 o p_13009_ +ams net/minecraft/stats/StatsCounter + a f_13013_ + ()V + a (Lamq;Ljava/lang/Object;)I m_13017_ + 0 o p_13018_ + 1 o p_13019_ + a (Lbyo;Lamo;I)V m_6085_ + 0 o p_13020_ + 1 o p_13021_ + 2 o p_13022_ + a (Lamo;)I m_13015_ + 0 o p_13016_ + b (Lbyo;Lamo;I)V m_13023_ + 0 o p_13024_ + 1 o p_13025_ + 2 o p_13026_ +amt net/minecraft/stats/package-info +amu net/minecraft/tags/BannerPatternTags + a f_215788_ + b f_215789_ + c f_215790_ + d f_215791_ + e f_215792_ + f f_215793_ + g f_215794_ + ()V + static + ()V + a (Ljava/lang/String;)Lanl; m_215797_ + static + 0 o p_215798_ +amv net/minecraft/tags/BiomeTags + A f_207624_ + B f_207625_ + C f_207626_ + D f_207627_ + E f_207586_ + F f_207587_ + G f_207588_ + H f_207596_ + I f_207589_ + J f_207590_ + K f_207591_ + L f_207592_ + M f_207593_ + N f_207594_ + O f_276517_ + P f_207595_ + Q f_207597_ + R f_207598_ + S f_207599_ + T f_215799_ + U f_207600_ + V f_207601_ + W f_215800_ + X f_238171_ + Y f_215801_ + Z f_215802_ + a f_207602_ + aa f_215803_ + ab f_215804_ + ac f_263839_ + ad f_263828_ + ae f_215805_ + af f_215806_ + ag f_215807_ + ah f_215808_ + ai f_215809_ + aj f_263796_ + ak f_263794_ + al f_215811_ + am f_215812_ + an f_215813_ + ao f_215814_ + ap f_215815_ + aq f_263748_ + b f_207603_ + c f_207604_ + d f_207605_ + e f_207606_ + f f_207607_ + g f_207608_ + h f_207609_ + i f_207610_ + j f_207611_ + k f_215816_ + l f_215817_ + m f_207612_ + n f_215818_ + o f_215819_ + p f_207613_ + q f_207614_ + r f_207615_ + s f_207616_ + t f_207617_ + u f_207618_ + v f_207619_ + w f_207620_ + x f_207621_ + y f_207622_ + z f_207623_ + ()V + static + ()V + a (Ljava/lang/String;)Lanl; m_207630_ + static + 0 o p_207631_ +amw net/minecraft/tags/BlockTags + A f_13112_ + B f_215840_ + C f_13113_ + D f_13027_ + E f_257016_ + F f_13078_ + G f_13028_ + H f_13029_ + I f_273845_ + J f_13030_ + K f_13031_ + L f_13032_ + M f_13033_ + N f_13034_ + O f_13035_ + P f_13036_ + Q f_13037_ + R f_13038_ + S f_13039_ + T f_13040_ + U f_13041_ + V f_13042_ + W f_13043_ + X f_144258_ + Y f_144259_ + Z f_144260_ + a f_13089_ + aA f_13069_ + aB f_215822_ + aC f_13070_ + aD f_13071_ + aE f_13072_ + aF f_13073_ + aG f_13074_ + aH f_13075_ + aI f_13076_ + aJ f_13077_ + aK f_13079_ + aL f_13080_ + aM f_13081_ + aN f_13082_ + aO f_201924_ + aP f_13083_ + aQ f_13084_ + aR f_13085_ + aS f_13086_ + aT f_13087_ + aU f_13088_ + aV f_13054_ + aW f_13055_ + aX f_13056_ + aY f_13057_ + aZ f_13058_ + aa f_144261_ + ab f_144262_ + ac f_144263_ + ad f_144264_ + ae f_144265_ + af f_144274_ + ag f_198156_ + ah f_215821_ + ai f_13045_ + aj f_13046_ + ak f_13047_ + al f_13048_ + am f_13049_ + an f_13050_ + ao f_13051_ + ap f_13052_ + aq f_13063_ + ar f_13064_ + as f_13065_ + at f_13066_ + au f_13067_ + av f_13068_ + aw f_243838_ + ax f_244544_ + ay f_244320_ + az f_260523_ + b f_13090_ + bA f_144283_ + bB f_278398_ + bC f_144284_ + bD f_144285_ + bE f_144286_ + bF f_144287_ + bG f_144288_ + bH f_144289_ + bI f_215837_ + bJ f_215823_ + bK f_215824_ + bL f_215825_ + bM f_276593_ + bN f_184228_ + bO f_184229_ + bP f_184230_ + bQ f_184231_ + bR f_184232_ + bS f_215826_ + bT f_184234_ + bU f_184235_ + bV f_184236_ + bW f_215827_ + bX f_198157_ + bY f_215828_ + bZ f_215829_ + ba f_13059_ + bb f_13060_ + bc f_13061_ + bd f_144266_ + be f_144267_ + bf f_13062_ + bg f_215820_ + bh f_215835_ + bi f_144268_ + bj f_144269_ + bk f_144270_ + bl f_144271_ + bm f_276549_ + bn f_144272_ + bo f_215836_ + bp f_144273_ + bq f_144275_ + br f_144276_ + bs f_144277_ + bt f_198159_ + bu f_144278_ + bv f_184227_ + bw f_144279_ + bx f_144280_ + by f_144281_ + bz f_144282_ + c f_13091_ + ca f_215830_ + cb f_215831_ + cc f_215832_ + cd f_278411_ + ce f_215833_ + cf f_215834_ + cg f_244350_ + ch f_271391_ + ci f_276630_ + cj f_276448_ + ck f_278394_ + cl f_278384_ + cm f_278486_ + cn f_279534_ + d f_13092_ + e f_279568_ + f f_13093_ + g f_215838_ + h f_13095_ + i f_13096_ + j f_13097_ + k f_13098_ + l f_13099_ + m f_13100_ + n f_13101_ + o f_13102_ + p f_13103_ + q f_13104_ + r f_13105_ + s f_215839_ + t f_13106_ + u f_13107_ + v f_13108_ + w f_13109_ + x f_13110_ + y f_271212_ + z f_13111_ + ()V + static + ()V + a (Ljava/lang/String;)Lanl; m_203846_ + static + 0 o p_203847_ +amx net/minecraft/tags/CatVariantTags + a f_215841_ + b f_215842_ + ()V + static + ()V + a (Ljava/lang/String;)Lanl; m_215845_ + static + 0 o p_215846_ +amy net/minecraft/tags/DamageTypeTags + a f_268627_ + b f_268490_ + c f_276146_ + d f_268738_ + e f_273918_ + f f_268437_ + g f_268630_ + h f_268413_ + i f_268745_ + j f_268524_ + k f_268731_ + l f_268415_ + m f_268549_ + n f_268581_ + o f_268419_ + p f_268725_ + q f_268718_ + r f_268467_ + s f_268518_ + t f_268484_ + u f_268727_ + v f_268711_ + w f_268640_ + x f_268750_ + y f_273821_ + ()V + static + a (Ljava/lang/String;)Lanl; m_269529_ + static + 0 o p_270635_ +amz net/minecraft/tags/EntityTypeTags + a f_13120_ + b f_13121_ + c f_13122_ + d f_13123_ + e f_13124_ + f f_144291_ + g f_144292_ + h f_144293_ + i f_144294_ + j f_144295_ + k f_215847_ + l f_273841_ + m f_275751_ + ()V + static + ()V + a (Ljava/lang/String;)Lanl; m_203848_ + static + 0 o p_203849_ +an net/minecraft/advancements/DisplayInfo + a f_14958_ + b f_14959_ + c f_14960_ + d f_14961_ + e f_14962_ + f f_14963_ + g f_14964_ + h f_14965_ + i f_14966_ + j f_14967_ + (Lcfz;Lsw;Lsw;Lacq;Lao;ZZZ)V + 0 o p_14969_ + 1 o p_14970_ + 2 o p_14971_ + 3 o p_14972_ + 4 o p_14973_ + 5 o p_14974_ + 6 o p_14975_ + 7 o p_14976_ + a ()Lsw; m_14977_ + a (FF)V m_14978_ + 0 o p_14979_ + 1 o p_14980_ + a (Lsf;)V m_14983_ + 0 o p_14984_ + a (Lcom/google/gson/JsonObject;)Lan; m_14981_ + static + 0 o p_14982_ + b ()Lsw; m_14985_ + b (Lsf;)Lan; m_14988_ + static + 0 o p_14989_ + b (Lcom/google/gson/JsonObject;)Lcfz; m_14986_ + static + 0 o p_14987_ + c ()Lcfz; m_14990_ + d ()Lacq; m_14991_ + e ()Lao; m_14992_ + f ()F m_14993_ + g ()F m_14994_ + h ()Z m_14995_ + i ()Z m_14996_ + j ()Z m_14997_ + k ()Lcom/google/gson/JsonElement; m_14998_ + l ()Lcom/google/gson/JsonObject; m_14999_ +ana net/minecraft/tags/FlatLevelGeneratorPresetTags + a f_215848_ + ()V + static + ()V + a (Ljava/lang/String;)Lanl; m_215851_ + static + 0 o p_215852_ +anb net/minecraft/tags/FluidTags + a f_13131_ + b f_13132_ + ()V + static + ()V + a (Ljava/lang/String;)Lanl; m_203850_ + static + 0 o p_203851_ +anc net/minecraft/tags/GameEventTags + a f_144302_ + b f_215853_ + c f_215854_ + d f_144303_ + e f_215855_ + ()V + static + ()V + a (Ljava/lang/String;)Lanl; m_203852_ + static + 0 o p_203853_ +and net/minecraft/tags/InstrumentTags + a f_215856_ + b f_215857_ + c f_215858_ + ()V + static + a (Ljava/lang/String;)Lanl; m_215860_ + static + 0 o p_215861_ +ane net/minecraft/tags/ItemTags + A f_13189_ + B f_13190_ + C f_256904_ + D f_215862_ + E f_13191_ + F f_13137_ + G f_273858_ + H f_13138_ + I f_13139_ + J f_13140_ + K f_13141_ + L f_13142_ + M f_13143_ + N f_13144_ + O f_13145_ + P f_13146_ + Q f_13147_ + R f_13148_ + S f_13149_ + T f_13150_ + U f_13151_ + V f_144309_ + W f_144310_ + X f_144311_ + Y f_13152_ + Z f_144312_ + a f_13167_ + aA f_144321_ + aB f_215865_ + aC f_144323_ + aD f_215866_ + aE f_244389_ + aF f_262757_ + aG f_263791_ + aH f_265942_ + aI f_265843_ + aJ f_265940_ + aK f_271449_ + aL f_271220_ + aM f_283829_ + aN f_271388_ + aO f_271207_ + aP f_271298_ + aQ f_271360_ + aR f_271138_ + aS f_271540_ + aT f_271470_ + aU f_279581_ + aa f_144313_ + ab f_144314_ + ac f_144315_ + ad f_144316_ + ae f_144317_ + af f_144318_ + ag f_13153_ + ah f_13154_ + ai f_144319_ + aj f_198160_ + ak f_198161_ + al f_215863_ + am f_13155_ + an f_215864_ + ao f_13156_ + ap f_13157_ + aq f_13158_ + ar f_13159_ + as f_13160_ + at f_13161_ + au f_13162_ + av f_244646_ + aw f_13164_ + ax f_13165_ + ay f_13166_ + az f_144320_ + b f_13168_ + c f_13169_ + d f_13170_ + e f_279629_ + f f_13171_ + g f_215867_ + h f_13173_ + i f_13174_ + j f_13175_ + k f_13176_ + l f_254662_ + m f_13177_ + n f_13178_ + o f_13179_ + p f_13180_ + q f_13181_ + r f_13182_ + s f_13183_ + t f_13184_ + u f_13185_ + v f_13186_ + w f_271202_ + x f_13187_ + y f_13188_ + z f_215869_ + ()V + static + ()V + a (Ljava/lang/String;)Lanl; m_203854_ + static + 0 o p_203855_ +anf net/minecraft/tags/PaintingVariantTags + a f_215870_ + ()V + static + ()V + a (Ljava/lang/String;)Lanl; m_215873_ + static + 0 o p_215874_ +ang net/minecraft/tags/PoiTypeTags + a f_215875_ + b f_215876_ + c f_215877_ + ()V + static + ()V + a (Ljava/lang/String;)Lanl; m_215880_ + static + 0 o p_215881_ +anh net/minecraft/tags/StructureTags + a f_215882_ + b f_215883_ + c f_215884_ + d f_215885_ + e f_215886_ + f f_215887_ + g f_215888_ + h f_215889_ + i f_215890_ + j f_215891_ + k f_215892_ + l f_215893_ + ()V + static + a (Ljava/lang/String;)Lanl; m_215895_ + static + 0 o p_215896_ +ani net/minecraft/tags/TagBuilder + a f_215897_ + ()V + a (Lanj;)Lani; m_215902_ + 0 o p_215903_ + a ()Lani; m_215899_ + static + a (Lacq;)Lani; m_215900_ + 0 o p_215901_ + b (Lacq;)Lani; m_215905_ + 0 o p_215906_ + b ()Ljava/util/List; m_215904_ + c (Lacq;)Lani; m_215907_ + 0 o p_215908_ + d (Lacq;)Lani; m_215909_ + 0 o p_215910_ +anj net/minecraft/tags/TagEntry + a f_215911_ + b f_215912_ + c f_215913_ + d f_215914_ + e f_215915_ + ()V + static + (Laoi$d;Z)V + 0 o p_215922_ + 1 o p_215923_ + (Lacq;ZZ)V + 0 o p_215918_ + 1 o p_215919_ + 2 o p_215920_ + a (Lanj;)Lcom/mojang/datafixers/util/Either; m_215930_ + static + 0 o p_215931_ + a (Ljava/util/function/Consumer;)V m_215938_ + 0 o p_215939_ + a (Lcom/mojang/datafixers/util/Either;)Lanj; m_215934_ + static + 0 o p_215935_ + a (Laoi$d;)Lanj; m_215932_ + static + 0 o p_215933_ + a ()Laoi$d; m_215924_ + a (Lacq;)Lanj; m_215925_ + static + 0 o p_215926_ + a (Lanj$a;Ljava/util/function/Consumer;)Z m_215927_ + 0 o p_215928_ + 1 o p_215929_ + a (Ljava/util/function/Predicate;Ljava/util/function/Predicate;)Z m_215940_ + 0 o p_215941_ + 1 o p_215942_ + a (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; m_215936_ + static + 0 o p_215937_ + b (Lanj;)Lanj; m_215945_ + static + 0 o p_215946_ + b (Lacq;)Lanj; m_215943_ + static + 0 o p_215944_ + b (Ljava/util/function/Consumer;)V m_215947_ + 0 o p_215948_ + c (Lanj;)Ljava/lang/Boolean; m_215951_ + static + 0 o p_215952_ + c (Lacq;)Lanj; m_215949_ + static + 0 o p_215950_ + d (Lacq;)Lanj; m_215953_ + static + 0 o p_215954_ + toString ()Ljava/lang/String; toString +anj$a net/minecraft/tags/TagEntry$Lookup + a (Lacq;)Ljava/lang/Object; m_213619_ + 0 o p_215956_ + b (Lacq;)Ljava/util/Collection; m_214048_ + 0 o p_215957_ +ank net/minecraft/tags/TagFile + a f_215958_ + b f_215959_ + c f_215960_ + ()V + static + (Ljava/util/List;Z)V + 0 o f_215959_ + 1 o f_215960_ + a ()Ljava/util/List; f_215959_ + a (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; m_215966_ + static + 0 o p_215967_ + b ()Z f_215960_ + equals (Ljava/lang/Object;)Z equals + 0 o p_215970_ + hashCode ()I hashCode + toString ()Ljava/lang/String; toString +anl net/minecraft/tags/TagKey + a f_203867_ + b f_203868_ + c f_203869_ + ()V + static + (Lacp;Lacq;)V + 0 o f_203867_ + 1 o f_203868_ + a (Lacp;Lacq;)Lanl; m_203882_ + static + 0 o p_203883_ + 1 o p_203884_ + a (Lanl;)Ljava/lang/String; m_203875_ + static + 0 o p_203876_ + a (Lacp;)Lcom/mojang/serialization/Codec; m_203877_ + static + 0 o p_203878_ + a ()Lacp; f_203867_ + a (Lacp;Ljava/lang/String;)Lcom/mojang/serialization/DataResult; m_274115_ + static + 0 o p_274843_ + 1 o p_274844_ + b (Lacp;)Lcom/mojang/serialization/Codec; m_203886_ + static + 0 o p_203887_ + b ()Lacq; f_203868_ + b (Lacp;Lacq;)Lanl; m_203888_ + static + 0 o p_203889_ + 1 o p_203890_ + c (Lacp;Lacq;)Lanl; m_203891_ + static + 0 o p_203892_ + 1 o p_203893_ + c (Lacp;)Z m_207645_ + 0 o p_207646_ + c ()Ljava/lang/String; m_274114_ + static + d (Lacp;)Ljava/util/Optional; m_207647_ + 0 o p_207648_ + equals (Ljava/lang/Object;)Z equals + 0 o p_203895_ + hashCode ()I hashCode + toString ()Ljava/lang/String; toString +anm net/minecraft/tags/TagLoader + a f_13445_ + b f_13448_ + c f_13449_ + ()V + static + (Ljava/util/function/Function;Ljava/lang/String;)V + 0 o p_144493_ + 1 o p_144494_ + a (Lanj$a;Ljava/util/List;)Lcom/mojang/datafixers/util/Either; m_215978_ + 0 o p_215979_ + 1 o p_215980_ + a (Lanj$a;Ljava/util/Map;Lacq;Lanm$b;)V m_284005_ + 0 o p_284680_ + 1 o p_284681_ + 2 o p_284682_ + 3 o p_284683_ + a (Lacq;Ljava/util/Collection;)V m_215975_ + static + 0 o p_215976_ + 1 o p_215977_ + a (Lakx;)Ljava/util/Map; m_144495_ + 0 o p_144496_ + a (Lacq;)Ljava/util/List; m_215973_ + static + 0 o p_215974_ + a (Ljava/util/Map;)Ljava/util/Map; m_203898_ + 0 o p_203899_ + a (Laof;Lacq;Ljava/util/List;)V m_284006_ + static + 0 o p_284684_ + 1 o p_284685_ + 2 o p_284686_ + a (Ljava/util/Map;Lacq;Ljava/util/Collection;)V m_215998_ + static + 0 o p_215999_ + 1 o p_216000_ + 2 o p_216001_ + a (Ljava/util/List;Ljava/lang/String;Lanj;)V m_215994_ + static + 0 o p_215995_ + 1 o p_215996_ + 2 o p_215997_ + b (Lakx;)Ljava/util/Map; m_203900_ + 0 o p_203901_ +anm$1 net/minecraft/tags/TagLoader$1 + a f_216033_ + b f_216034_ + (Lanm;Ljava/util/Map;)V + 0 o p_216036_ + 1 o p_216037_ + a (Lacq;)Ljava/lang/Object; m_213619_ + 0 o p_216039_ + b (Lacq;)Ljava/util/Collection; m_214048_ + 0 o p_216041_ +anm$a net/minecraft/tags/TagLoader$EntryWithSource + a f_216042_ + b f_216043_ + (Lanj;Ljava/lang/String;)V + 0 o f_216042_ + 1 o f_216043_ + a ()Lanj; f_216042_ + b ()Ljava/lang/String; f_216043_ + equals (Ljava/lang/Object;)Z equals + 0 o p_216050_ + hashCode ()I hashCode + toString ()Ljava/lang/String; toString +anm$b net/minecraft/tags/TagLoader$SortingEntry + a f_283922_ + (Ljava/util/List;)V + 0 o f_283922_ + a (Ljava/util/function/Consumer;Lanm$a;)V m_284267_ + static + 0 o p_285245_ + 1 o p_284943_ + a (Ljava/util/function/Consumer;)V m_284213_ + 0 o p_285529_ + a ()Ljava/util/List; f_283922_ + b (Ljava/util/function/Consumer;Lanm$a;)V m_284342_ + static + 0 o p_284947_ + 1 o p_285236_ + b (Ljava/util/function/Consumer;)V m_284346_ + 0 o p_285469_ + equals (Ljava/lang/Object;)Z equals + 0 o p_285432_ + hashCode ()I hashCode + toString ()Ljava/lang/String; toString +ann net/minecraft/tags/TagManager + a f_203902_ + b f_144569_ + c f_203903_ + ()V + static + (Lhs;)V + 0 o p_144572_ + a (Lakr$a;Lakx;Lban;Lban;Ljava/util/concurrent/Executor;Ljava/util/concurrent/Executor;)Ljava/util/concurrent/CompletableFuture; m_5540_ + 0 o p_13482_ + 1 o p_13483_ + 2 o p_13484_ + 3 o p_13485_ + 4 o p_13486_ + 5 o p_13487_ + a (Ljava/util/List;Ljava/lang/Void;)V m_203915_ + 0 o p_203916_ + 1 o p_203917_ + a ()Ljava/util/List; m_203904_ + a (Lacp;Lanm;Lakx;)Lann$a; m_203920_ + static + 0 o p_203921_ + 1 o p_203922_ + 2 o p_203923_ + a (Lhr;Lacp;Lacq;)Ljava/util/Optional; m_257152_ + static + 0 o p_258245_ + 1 o p_258246_ + 2 o p_258247_ + a (Lacp;)Ljava/lang/String; m_203918_ + static + 0 o p_203919_ + a (I)[Ljava/util/concurrent/CompletableFuture; m_203905_ + static + 0 o p_203906_ + a (Lakx;Ljava/util/concurrent/Executor;Lhs$d;)Ljava/util/concurrent/CompletableFuture; m_203907_ + 0 o p_203908_ + 1 o p_203909_ + 2 o p_203910_ + b (Lakx;Ljava/util/concurrent/Executor;Lhs$d;)Ljava/util/concurrent/CompletableFuture; m_203924_ + 0 o p_203925_ + 1 o p_203926_ + 2 o p_203927_ +ann$a net/minecraft/tags/TagManager$LoadResult + a f_203928_ + b f_203929_ + (Lacp;Ljava/util/Map;)V + 0 o f_203928_ + 1 o f_203929_ + a ()Lacp; f_203928_ + b ()Ljava/util/Map; f_203929_ + equals (Ljava/lang/Object;)Z equals + 0 o p_203936_ + hashCode ()I hashCode + toString ()Ljava/lang/String; toString +ano net/minecraft/tags/TagNetworkSerialization + ()V + a (Lhr;Ljava/util/Map;Lcom/mojang/datafixers/util/Pair;)V m_203944_ + static + 0 o p_203945_ + 1 o p_203946_ + 2 o p_203947_ + a (Lacp;Lhr;Lano$b;Lacq;Lit/unimi/dsi/fastutil/ints/IntList;)V m_244908_ + static + 0 o p_248275_ + 1 o p_248276_ + 2 o p_248277_ + 3 o p_248278_ + 4 o p_248279_ + a (Lhs$d;)Lcom/mojang/datafixers/util/Pair; m_203948_ + static + 0 o p_203949_ + a (Lhr;)Lano$a; m_203942_ + static + 0 o p_203943_ + a (Lacp;Lhr;Lano$a;Lano$b;)V m_203952_ + static + 0 o p_203953_ + 1 o p_203954_ + 2 o p_203955_ + 3 o p_203956_ + a (Lcom/mojang/datafixers/util/Pair;)Z m_203940_ + static + 0 o p_203941_ + a (Lhl;)Ljava/util/Map; m_245799_ + static + 0 o p_251774_ +ano$a net/minecraft/tags/TagNetworkSerialization$NetworkPayload + a f_203963_ + (Ljava/util/Map;)V + 0 o p_203965_ + a ()Z m_203966_ + a (Lsf;)V m_203967_ + 0 o p_203968_ + b (Lsf;)Lano$a; m_203969_ + static + 0 o p_203970_ +ano$b net/minecraft/tags/TagNetworkSerialization$TagOutput + accept (Lanl;Ljava/util/List;)V m_203971_ + 0 o p_203972_ + 1 o p_203973_ +anp net/minecraft/tags/WorldPresetTags + a f_216053_ + b f_216054_ + ()V + static + ()V + a (Ljava/lang/String;)Lanl; m_216057_ + static + 0 o p_216058_ +anq net/minecraft/tags/package-info +anr net/minecraft/util/AbortableIterationConsumer + a (Ljava/util/function/Consumer;Ljava/lang/Object;)Lanr$a; m_261257_ + static + 0 o p_262158_ + 1 o p_261916_ + accept (Ljava/lang/Object;)Lanr$a; m_260972_ + 0 o p_261708_ + forConsumer (Ljava/util/function/Consumer;)Lanr; m_260908_ + static + 0 o p_261477_ +anr$a net/minecraft/util/AbortableIterationConsumer$Continuation + a CONTINUE + b ABORT + c $VALUES + ()V + static + (Ljava/lang/String;I)V + 0 o p_262048_ + 1 o p_261970_ + a ()Z m_261146_ + b ()[Lanr$a; m_261079_ + static + valueOf (Ljava/lang/String;)Lanr$a; valueOf + static + 0 o p_262013_ + values ()[Lanr$a; values + static +ans net/minecraft/util/BitStorage + a ([I)V m_197970_ + 0 o p_198162_ + a (Ljava/util/function/IntConsumer;)V m_13519_ + 0 o p_13520_ + a (I)I m_13514_ + 0 o p_13515_ + a ()[J m_13513_ + a (II)I m_13516_ + 0 o p_13517_ + 1 o p_13518_ + b (II)V m_13524_ + 0 o p_13525_ + 1 o p_13526_ + b ()I m_13521_ + c ()I m_144604_ + d ()Lans; m_199833_ +ant net/minecraft/util/Brightness + a f_268431_ + b f_268672_ + c f_268536_ + d f_268416_ + e f_268420_ + ()V + static + (II)V + 0 o f_268416_ + 1 o f_268420_ + a (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; m_269377_ + static + 0 o p_270774_ + a ()I m_269595_ + a (I)Lant; m_269373_ + static + 0 o p_270207_ + b ()I f_268416_ + c ()I f_268420_ + equals (Ljava/lang/Object;)Z equals + 0 o p_270598_ + hashCode ()I hashCode + toString ()Ljava/lang/String; toString +anu net/minecraft/util/ByIdMap + ()V + a (I[Ljava/lang/Object;Ljava/lang/Object;I)Ljava/lang/Object; m_262816_ + static + 0 o p_262913_ + 1 o p_263097_ + 2 o p_263069_ + 3 o p_262927_ + a (Ljava/util/function/IntFunction;Ljava/lang/Object;I)Ljava/lang/Object; m_262806_ + static + 0 o p_263037_ + 1 o p_263027_ + 2 o p_262932_ + a (Ljava/util/function/ToIntFunction;[Ljava/lang/Object;Lanu$a;)Ljava/util/function/IntFunction; m_262839_ + static + 0 o p_263112_ + 1 o p_262975_ + 2 o p_263075_ + a (Ljava/util/function/ToIntFunction;[Ljava/lang/Object;)Ljava/util/function/IntFunction; m_262788_ + static + 0 o p_263047_ + 1 o p_263043_ + a (Ljava/util/function/ToIntFunction;[Ljava/lang/Object;Ljava/lang/Object;)Ljava/util/function/IntFunction; m_262845_ + static + 0 o p_262952_ + 1 o p_263085_ + 2 o p_262981_ + a ([Ljava/lang/Object;II)Ljava/lang/Object; m_262853_ + static + 0 o p_263093_ + 1 o p_262985_ + 2 o p_263013_ + b (Ljava/util/function/ToIntFunction;[Ljava/lang/Object;)[Ljava/lang/Object; m_262859_ + static + 0 o p_262976_ + 1 o p_263053_ + b ([Ljava/lang/Object;II)Ljava/lang/Object; m_262799_ + static + 0 o p_262924_ + 1 o p_263073_ + 2 o p_262977_ +anu$1 net/minecraft/util/ByIdMap$1 + a f_262754_ + ()V + static +anu$a net/minecraft/util/ByIdMap$OutOfBoundsStrategy + a ZERO + b WRAP + c CLAMP + d $VALUES + ()V + static + (Ljava/lang/String;I)V + 0 o p_262916_ + 1 o p_262964_ + a ()[Lanu$a; m_262833_ + static + valueOf (Ljava/lang/String;)Lanu$a; valueOf + static + 0 o p_263102_ + values ()[Lanu$a; values + static +anv net/minecraft/util/ClassInstanceMultiMap + a f_13527_ + b f_13528_ + c f_13529_ + (Ljava/lang/Class;)V + 0 o p_13531_ + a ()Ljava/util/List; m_13532_ + a (Ljava/lang/Class;)Ljava/util/Collection; m_13533_ + 0 o p_13534_ + add (Ljava/lang/Object;)Z add + 0 o p_13536_ + b (Ljava/lang/Class;)Ljava/util/List; m_13537_ + 0 o p_13538_ + contains (Ljava/lang/Object;)Z contains + 0 o p_13540_ + iterator ()Ljava/util/Iterator; iterator + remove (Ljava/lang/Object;)Z remove + 0 o p_13543_ + size ()I size +anw net/minecraft/util/CommonColors + a f_273869_ + b f_273839_ + c f_289577_ + d f_263745_ + ()V +anx net/minecraft/util/CommonLinks + a f_276156_ + b f_276140_ + c f_276141_ + d f_276152_ + e f_276151_ + f f_276144_ + g f_276142_ + h f_276150_ + i f_276147_ + j f_276157_ + k f_276160_ + l f_276139_ + m f_276158_ + n f_289836_ + o f_276149_ + p f_276145_ + q f_276134_ + r f_276159_ + s f_276135_ + ()V + a (Ljava/lang/String;Ljava/lang/String;Z)Ljava/lang/String; m_276218_ + static + 0 o p_276321_ + 1 o p_276293_ + 2 o p_276266_ + a (Ljava/lang/String;Ljava/lang/String;)Ljava/lang/String; m_276215_ + static + 0 o p_276318_ + 1 o p_276285_ +any net/minecraft/util/CrudeIncrementalIntIdentityHashBiMap + b f_144605_ + c f_13545_ + d f_144606_ + e f_13546_ + f f_13547_ + g f_13548_ + h f_13549_ + i f_13550_ + ()V + static + (I)V + 0 o p_13553_ + ([Ljava/lang/Object;[I[Ljava/lang/Object;II)V + 0 o p_199841_ + 1 o p_199842_ + 2 o p_199843_ + 3 o p_199844_ + 4 o p_199845_ + a ()V m_13554_ + a (I)Ljava/lang/Object; m_7942_ + 0 o p_13556_ + a (Ljava/lang/Object;I)V m_13559_ + 0 o p_13560_ + 1 o p_13561_ + a (Ljava/lang/Object;)I m_7447_ + 0 o p_13558_ + b ()I m_13562_ + b (Ljava/lang/Object;)Z m_144609_ + 0 o p_144610_ + b (Ljava/lang/Object;I)I m_13563_ + 0 o p_13564_ + 1 o p_13565_ + c (Ljava/lang/Object;)I m_13569_ + 0 o p_13570_ + c (I)Lany; m_184237_ + static + 0 o p_184238_ + c ()Lany; m_199846_ + d (I)Z m_144607_ + 0 o p_144608_ + d ()I m_13566_ + d (Ljava/lang/Object;)I m_13573_ + 0 o p_13574_ + e (I)I m_13567_ + 0 o p_13568_ + f (I)V m_13571_ + 0 o p_13572_ + g (I)I m_13575_ + 0 o p_13576_ + iterator ()Ljava/util/Iterator; iterator +anz net/minecraft/util/Crypt + a f_216059_ + b f_244257_ + c f_216060_ + d f_216061_ + e f_216062_ + f f_216063_ + g f_216064_ + h f_144611_ + i f_144612_ + j f_144613_ + k f_144614_ + l f_144615_ + m f_144616_ + n f_216065_ + o f_216066_ + p f_216067_ + ()V + static + ()V + a ([[B)[B m_13602_ + static + 0 o p_13603_ + a (ILjava/security/Key;)Ljavax/crypto/Cipher; m_13583_ + static + 0 o p_13584_ + 1 o p_13585_ + a (Ljava/security/Key;[B)[B m_13594_ + static + 0 o p_13595_ + 1 o p_13596_ + a ()Ljavax/crypto/SecretKey; m_13578_ + static + a (Ljava/lang/String;Ljava/security/PublicKey;Ljavax/crypto/SecretKey;)[B m_13590_ + static + 0 o p_13591_ + 1 o p_13592_ + 2 o p_13593_ + a (ILjava/lang/String;Ljava/security/Key;)Ljavax/crypto/Cipher; m_13579_ + static + 0 o p_13580_ + 1 o p_13581_ + 2 o p_13582_ + a (ILjava/security/Key;[B)[B m_13586_ + static + 0 o p_13587_ + 1 o p_13588_ + 2 o p_13589_ + a (Ljava/security/PrivateKey;[B)Ljavax/crypto/SecretKey; m_13597_ + static + 0 o p_13598_ + 1 o p_13599_ + a (Ljava/lang/String;)Ljava/security/PrivateKey; m_216069_ + static + 0 o p_216070_ + a (Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Lanz$a;)Ljava/security/Key; m_216071_ + static + 0 o p_216072_ + 1 o p_216073_ + 2 o p_216074_ + 3 o p_216075_ + a (Ljava/security/PublicKey;)Ljava/lang/String; m_216078_ + static + 0 o p_216079_ + a ([B)Ljava/security/PublicKey; m_13600_ + static + 0 o p_13601_ + a (Ljava/security/PrivateKey;)Ljava/lang/String; m_216076_ + static + 0 o p_216077_ + b ()Ljava/security/KeyPair; m_13604_ + static + b (Ljava/lang/String;)Ljava/security/PublicKey; m_216080_ + static + 0 o p_216081_ + b ([B)Ljava/security/PrivateKey; m_216082_ + static + 0 o p_216083_ + b (Ljava/security/Key;[B)[B m_13605_ + static + 0 o p_13606_ + 1 o p_13607_ + c (Ljava/lang/String;)Lcom/mojang/serialization/DataResult; m_274116_ + static + 0 o p_274845_ + d (Ljava/lang/String;)Lcom/mojang/serialization/DataResult; m_274117_ + static + 0 o p_274846_ +anz$a net/minecraft/util/Crypt$ByteArrayToKeyFunction + apply ([B)Ljava/security/Key; m_216088_ + 0 o p_216089_ +anz$b net/minecraft/util/Crypt$SaltSignaturePair + a f_216090_ + b f_216091_ + c f_216092_ + ()V + static + (Lsf;)V + 0 o p_216098_ + (J[B)V + 0 o f_216091_ + 1 o f_216092_ + a ()Z m_216099_ + a (Lsf;Lanz$b;)V m_216100_ + static + 0 o p_216101_ + 1 o p_216102_ + b ()[B m_216103_ + c ()J f_216091_ + d ()[B f_216092_ + equals (Ljava/lang/Object;)Z equals + 0 o p_216107_ + hashCode ()I hashCode + toString ()Ljava/lang/String; toString +anz$c net/minecraft/util/Crypt$SaltSupplier + a f_216110_ + ()V + static + ()V + a ()J m_216113_ + static +ao net/minecraft/advancements/FrameType + a TASK + b CHALLENGE + c GOAL + d f_15536_ + e f_15537_ + f f_15538_ + g f_15539_ + h $VALUES + ()V + static + (Ljava/lang/String;ILjava/lang/String;ILn;)V + 0 o p_15543_ + 1 o p_15544_ + 2 o p_15545_ + 3 o p_15546_ + 4 o p_15547_ + a ()Ljava/lang/String; m_15548_ + a (Ljava/lang/String;)Lao; m_15549_ + static + 0 o p_15550_ + b ()I m_15551_ + c ()Ln; m_15552_ + d ()Lsw; m_15553_ + e ()[Lao; m_145833_ + static + valueOf (Ljava/lang/String;)Lao; valueOf + static + 0 o p_15555_ + values ()[Lao; values + static +aoa net/minecraft/util/CryptException + (Ljava/lang/Throwable;)V + 0 o p_13609_ +aob net/minecraft/util/CsvOutput + a f_144618_ + b f_144619_ + c f_13610_ + d f_13611_ + (Ljava/io/Writer;Ljava/util/List;)V + 0 o p_13613_ + 1 o p_13614_ + a (Ljava/lang/Object;)Ljava/lang/String; m_13620_ + static + 0 o p_13621_ + a ([Ljava/lang/Object;)V m_13624_ + 0 o p_13625_ + a (Ljava/util/stream/Stream;)V m_13622_ + 0 o p_13623_ + a ()Laob$a; m_13619_ + static +aob$a net/minecraft/util/CsvOutput$Builder + a f_13626_ + ()V + a (Ljava/io/Writer;)Laob; m_13628_ + 0 o p_13629_ + a (Ljava/lang/String;)Laob$a; m_13630_ + 0 o p_13631_ +aoc net/minecraft/util/CubicSampler + a f_177979_ + b f_177980_ + c f_130036_ + ()V + static + ()V + a (Leei;Laoc$a;)Leei; m_130038_ + static + 0 o p_130039_ + 1 o p_130040_ +aoc$a net/minecraft/util/CubicSampler$Vec3Fetcher + fetch (III)Leei; m_130041_ + 0 o p_130042_ + 1 o p_130043_ + 2 o p_130044_ +aod net/minecraft/util/CubicSpline + a (Laod$d;)Laod; m_211396_ + 0 o p_211579_ + a (FLaod;F)Laod$a; m_184241_ + static + 0 o p_184242_ + 1 o p_184243_ + 2 o p_184244_ + a (Lcom/mojang/serialization/Codec;)Lcom/mojang/serialization/Codec; m_184262_ + static + 0 o p_184263_ + a (F)Laod; m_184239_ + static + 0 o p_184240_ + a (Lapx;Lapx;)Laod$b; m_184254_ + static + 0 o p_184255_ + 1 o p_184256_ + a ()Ljava/lang/String; m_183628_ + a (Lcom/mojang/serialization/Codec;Lcom/mojang/serialization/Codec;Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; m_184264_ + static + 0 o p_184265_ + 1 o p_184266_ + 2 o p_184267_ + a (Lcom/mojang/datafixers/util/Either;)Laod; m_184260_ + static + 0 o p_184261_ + a (Laod$e;)Ljava/lang/Record; m_184245_ + static + 0 o p_184246_ + a (Lapx;Ljava/util/List;)Laod$e; m_184257_ + static + 0 o p_184258_ + 1 o p_184259_ + a (Lorg/apache/commons/lang3/mutable/MutableObject;Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; m_184268_ + static + 0 o p_184269_ + 1 o p_184270_ + a (Laod$e;I)Laod$a; m_184247_ + static + 0 o p_184248_ + 1 o p_184249_ + a (Lapx;)Laod$b; m_184252_ + static + 0 o p_184253_ + a (Laod;)Lcom/mojang/datafixers/util/Either; m_184250_ + static + 0 o p_184251_ + b (Laod$e;)Ljava/util/List; m_184271_ + static + 0 o p_184272_ +aod$a net/minecraft/util/CubicSpline$1Point + a f_184273_ + b f_184274_ + c f_184275_ + (FLaod;F)V + 0 o f_184273_ + 1 o f_184274_ + 2 o f_184275_ + a ()F f_184273_ + b ()Laod; f_184274_ + c ()F f_184275_ + equals (Ljava/lang/Object;)Z equals + 0 o p_184284_ + hashCode ()I hashCode + toString ()Ljava/lang/String; toString +aod$b net/minecraft/util/CubicSpline$Builder + a f_184287_ + b f_184288_ + c f_184289_ + d f_184290_ + e f_184291_ + (Lapx;)V + 0 o p_184293_ + (Lapx;Lapx;)V + 0 o p_184295_ + 1 o p_184296_ + a (FLaod;F)Laod$b; m_184302_ + 0 o p_184303_ + 1 o p_184304_ + 2 o p_184305_ + a (FF)Laod$b; m_216114_ + 0 o p_216115_ + 1 o p_216116_ + a ()Laod; m_184297_ + a (FFF)Laod$b; m_184298_ + 0 o p_184299_ + 1 o p_184300_ + 2 o p_184301_ + a (FLaod;)Laod$b; m_216117_ + 0 o p_216118_ + 1 o p_216119_ +aod$c net/minecraft/util/CubicSpline$Constant + b f_184308_ + (F)V + 0 o f_184308_ + a (Laod$d;)Laod; m_211396_ + 0 o p_211581_ + a ()Ljava/lang/String; m_183628_ + a (Ljava/lang/Object;)F m_183321_ + 0 o p_184313_ + b ()F m_213850_ + c ()F m_213849_ + d ()F f_184308_ + equals (Ljava/lang/Object;)Z equals + 0 o p_184316_ + hashCode ()I hashCode + toString ()Ljava/lang/String; toString +aod$d net/minecraft/util/CubicSpline$CoordinateVisitor + visit (Ljava/lang/Object;)Ljava/lang/Object; m_216122_ + 0 o p_216123_ +aod$e net/minecraft/util/CubicSpline$Multipoint + b f_184319_ + c f_184320_ + d f_184321_ + e f_184322_ + f f_216124_ + g f_216125_ + (Lapx;[FLjava/util/List;[FFF)V + 0 o f_184319_ + 1 o f_184320_ + 2 o f_184321_ + 3 o f_184322_ + 4 o f_216124_ + 5 o f_216125_ + a (Laod$d;)Laod; m_211396_ + 0 o p_211585_ + a (D)Ljava/lang/String; m_184329_ + static + 0 o p_184330_ + a ()Ljava/lang/String; m_183628_ + a ([FLjava/util/List;[F)V m_216151_ + static + 0 o p_216152_ + 1 o p_216153_ + 2 o p_216154_ + a (Laod$d;Laod;)Laod; m_211586_ + static + 0 o p_211587_ + 1 o p_211588_ + a (F[FI)Z m_216139_ + static + 0 o p_216140_ + 1 o p_216141_ + 2 o p_216142_ + a (Lapx;[FLjava/util/List;[F)Laod$e; m_216143_ + static + 0 o p_216144_ + 1 o p_216145_ + 2 o p_216146_ + 3 o p_216147_ + a (F[FF[FI)F m_216133_ + static + 0 o p_216134_ + 1 o p_216135_ + 2 o p_216136_ + 3 o p_216137_ + 4 o p_216138_ + a ([FI)D m_184336_ + static + 0 o p_184337_ + 1 o p_184338_ + a ([F)Ljava/lang/String; m_184334_ + 0 o p_184335_ + a ([FF)I m_216148_ + static + 0 o p_216149_ + 1 o p_216150_ + a (Ljava/lang/Object;)F m_183321_ + 0 o p_184340_ + b ()F m_213850_ + c ()F m_213849_ + d ()Lapx; f_184319_ + e ()[F f_184320_ + equals (Ljava/lang/Object;)Z equals + 0 o p_184346_ + f ()Ljava/util/List; f_184321_ + g ()[F f_184322_ + hashCode ()I hashCode + toString ()Ljava/lang/String; toString +aoe net/minecraft/util/DebugBuffer + a f_144620_ + b f_144621_ + (I)V + 0 o p_144623_ + a ()Ljava/util/List; m_144624_ + a (Ljava/lang/Object;)V m_144625_ + 0 o p_144626_ +aof net/minecraft/util/DependencySorter + a f_283882_ + ()V + a (Lcom/google/common/collect/Multimap;Ljava/lang/Object;Ljava/lang/Object;)Z m_284553_ + static + 0 o p_285132_ + 1 o p_285324_ + 2 o p_285326_ + a (Lcom/google/common/collect/Multimap;Ljava/lang/Object;Laof$a;)V m_284160_ + static + 0 o p_285005_ + 1 o p_285462_ + 2 o p_285526_ + a (Lcom/google/common/collect/Multimap;Ljava/util/Set;Ljava/util/function/BiConsumer;Ljava/lang/Object;)V m_284158_ + 0 o p_285181_ + 1 o p_285028_ + 2 o p_285056_ + 3 o p_284996_ + a (Ljava/util/function/BiConsumer;)V m_284430_ + 0 o p_285438_ + a (Lcom/google/common/collect/Multimap;Ljava/util/Set;Ljava/lang/Object;Ljava/util/function/BiConsumer;)V m_284372_ + 0 o p_285183_ + 1 o p_285506_ + 2 o p_285108_ + 3 o p_285007_ + a (Ljava/lang/Object;Laof$a;)Laof; m_284176_ + 0 o p_285256_ + 1 o p_285334_ + b (Lcom/google/common/collect/Multimap;Ljava/lang/Object;Ljava/lang/Object;)V m_284232_ + static + 0 o p_285047_ + 1 o p_285148_ + 2 o p_285193_ + b (Lcom/google/common/collect/Multimap;Ljava/util/Set;Ljava/util/function/BiConsumer;Ljava/lang/Object;)V m_284473_ + 0 o p_285322_ + 1 o p_285031_ + 2 o p_284981_ + 3 o p_285443_ + b (Lcom/google/common/collect/Multimap;Ljava/lang/Object;Laof$a;)V m_284554_ + static + 0 o p_285235_ + 1 o p_285415_ + 2 o p_285018_ + c (Lcom/google/common/collect/Multimap;Ljava/lang/Object;Ljava/lang/Object;)V m_284174_ + static + 0 o p_285480_ + 1 o p_285458_ + 2 o p_285513_ + d (Lcom/google/common/collect/Multimap;Ljava/lang/Object;Ljava/lang/Object;)V m_284431_ + static + 0 o p_285173_ + 1 o p_285178_ + 2 o p_285287_ + e (Lcom/google/common/collect/Multimap;Ljava/lang/Object;Ljava/lang/Object;)Z m_284129_ + static + 0 o p_285374_ + 1 o p_285010_ + 2 o p_284974_ +aof$a net/minecraft/util/DependencySorter$Entry + a (Ljava/util/function/Consumer;)V m_284213_ + 0 o p_285054_ + b (Ljava/util/function/Consumer;)V m_284346_ + 0 o p_285150_ +aog net/minecraft/util/DirectoryLock + a f_144627_ + b f_13632_ + c f_13633_ + d f_13634_ + ()V + static + (Ljava/nio/channels/FileChannel;Ljava/nio/channels/FileLock;)V + 0 o p_13637_ + 1 o p_13638_ + a ()Z m_13639_ + a (Ljava/nio/file/Path;)Laog; m_13640_ + static + 0 o p_13641_ + b (Ljava/nio/file/Path;)Z m_13642_ + static + 0 o p_13643_ + close ()V close +aog$a net/minecraft/util/DirectoryLock$LockException + (Ljava/nio/file/Path;Ljava/lang/String;)V + 0 o p_13646_ + 1 o p_13647_ + a (Ljava/nio/file/Path;)Laog$a; m_13648_ + static + 0 o p_13649_ +aoh net/minecraft/util/ExceptionCollector + a f_13650_ + ()V + a (Ljava/lang/Throwable;)V m_13653_ + 0 o p_13654_ + a ()V m_13652_ +aoi net/minecraft/util/ExtraCodecs + a f_252400_ + b f_252442_ + c f_276686_ + d f_252432_ + e f_268572_ + f f_268751_ + g f_268538_ + h f_268748_ + i f_144628_ + j f_144629_ + k f_184349_ + l f_216158_ + m f_216159_ + n f_216160_ + o f_216161_ + p f_216162_ + q f_216163_ + r f_252419_ + s f_252500_ + t f_252453_ + u f_263723_ + v f_283896_ + w f_252501_ + ()V + static + ()V + a (Lcom/mojang/serialization/MapCodec;)Lcom/mojang/serialization/MapCodec; m_216166_ + static + 0 o p_216167_ + a (Lcom/mojang/serialization/Codec;Lcom/mojang/serialization/Codec;)Lcom/mojang/serialization/Codec; m_144639_ + static + 0 o p_144640_ + 1 o p_144641_ + a (Lcom/mojang/authlib/properties/PropertyMap;Ljava/lang/String;Ljava/util/List;)V m_252671_ + static + 0 o p_253499_ + 1 o p_253500_ + 2 o p_253501_ + a (Ljava/lang/String;Ljava/util/regex/PatternSyntaxException;)Ljava/lang/String; m_274136_ + static + 0 o p_274868_ + 1 o p_274869_ + a (Lcom/mojang/serialization/Codec;Ljava/util/function/Function;Ljava/util/function/Function;)Lcom/mojang/serialization/Codec; m_184368_ + static + 0 o p_184369_ + 1 o p_184370_ + 2 o p_184371_ + a (Ljava/util/function/BiFunction;Ljava/util/List;)Lcom/mojang/serialization/DataResult; m_184396_ + static + 0 o p_184397_ + 1 o p_184398_ + a (FFLjava/util/function/Function;Ljava/lang/Float;)Lcom/mojang/serialization/DataResult; m_274132_ + static + 0 o p_274862_ + 1 o p_274863_ + 2 o p_274864_ + 3 o p_274865_ + a (Lorg/joml/Quaternionf;)Lorg/joml/Quaternionf; m_268861_ + static + 0 o p_269786_ + a (Lcom/mojang/authlib/GameProfile;)Lcom/mojang/serialization/DataResult; m_252819_ + static + 0 o p_254220_ + a (Lcom/google/gson/JsonElement;)Lcom/mojang/serialization/DataResult; m_274131_ + static + 0 o p_274861_ + a (Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/String; m_274126_ + static + 0 o p_274854_ + 1 o p_274855_ + 2 o p_274856_ + a (Lcom/mojang/authlib/properties/PropertyMap;)Lcom/mojang/datafixers/util/Either; m_252674_ + static + 0 o p_253504_ + a (Ljava/time/format/DateTimeFormatter;)Lcom/mojang/serialization/Codec; m_216170_ + static + 0 o p_216171_ + a (Lacq;)Laoi$d; m_216164_ + static + 0 o p_216165_ + a (Lhi;)Lcom/mojang/serialization/DataResult; m_274130_ + static + 0 o p_274860_ + a (Ljava/util/function/Function;Ljava/lang/Float;)Ljava/lang/String; m_274142_ + static + 0 o p_274882_ + 1 o p_274883_ + a (Lcom/mojang/authlib/properties/Property;)Ljava/util/Optional; m_252664_ + static + 0 o p_253490_ + a (IILjava/util/function/Function;Ljava/lang/Integer;)Lcom/mojang/serialization/DataResult; m_274145_ + static + 0 o p_274886_ + 1 o p_274887_ + 2 o p_274888_ + 3 o p_274889_ + a (Ljava/util/function/Function;Ljava/lang/String;)Lcom/mojang/serialization/DataResult; m_184402_ + static + 0 o p_184403_ + 1 o p_184404_ + a (Lorg/joml/AxisAngle4f;)Lorg/joml/Vector3f; m_268855_ + static + 0 o p_269778_ + a (Ljava/util/function/BiFunction;Lcom/mojang/datafixers/util/Either;)Lcom/mojang/serialization/DataResult; m_184387_ + static + 0 o p_184388_ + 1 o p_184389_ + a (Lcom/mojang/serialization/Codec;)Lcom/mojang/serialization/Codec; m_144637_ + static + 0 o p_144638_ + a (Lorg/joml/Matrix4f;)Ljava/util/List; m_268852_ + static + 0 o p_269775_ + a (Ljava/lang/Object;)Lcom/mojang/serialization/Codec$ResultFunction; m_184381_ + static + 0 o p_184382_ + a (Ljava/util/function/Function;Ljava/lang/Object;)Lcom/mojang/serialization/DataResult; m_184399_ + static + 0 o p_184400_ + 1 o p_184401_ + a (Ljava/util/function/BiFunction;Lcom/mojang/datafixers/util/Pair;)Lcom/mojang/serialization/DataResult; m_184390_ + static + 0 o p_184391_ + 1 o p_184392_ + a (Lcom/mojang/authlib/properties/PropertyMap;Ljava/util/Map;)V m_252675_ + static + 0 o p_253505_ + 1 o p_253506_ + a (Ljava/util/Optional;)Ljava/lang/String; m_252666_ + static + 0 o p_253492_ + a (Ljava/util/function/Function;Ljava/util/Collection;)Lcom/mojang/serialization/DataResult; m_203978_ + static + 0 o p_203979_ + 1 o p_203980_ + a (Ljava/util/function/BiFunction;Ljava/lang/Object;)Lcom/mojang/serialization/DataResult; m_184393_ + static + 0 o p_184394_ + 1 o p_184395_ + a (Lcom/mojang/datafixers/util/Either;)Lcom/mojang/authlib/properties/PropertyMap; m_252681_ + static + 0 o p_253515_ + a ()Ljava/lang/String; m_274118_ + static + a (Ljava/util/function/Function;Ljava/util/function/Function;Ljava/lang/Object;)Lcom/mojang/datafixers/util/Either; m_184408_ + static + 0 o p_184409_ + 1 o p_184410_ + 2 o p_184411_ + a (FFLjava/util/function/Function;)Lcom/mojang/serialization/Codec; m_184350_ + static + 0 o p_184351_ + 1 o p_184352_ + 2 o p_184353_ + a (Ljava/lang/Float;)Ljava/lang/String; m_274139_ + static + 0 o p_274876_ + a (Lcom/mojang/serialization/MapCodec;Ljava/util/function/Function;)Lcom/mojang/serialization/MapCodec; m_285994_ + static + 0 o p_286613_ + 1 o p_286875_ + a (Lcom/mojang/authlib/GameProfile;Lcom/mojang/authlib/properties/PropertyMap;)Lcom/mojang/authlib/GameProfile; m_252684_ + static + 0 o p_253518_ + 1 o p_253519_ + a (IILjava/lang/Integer;)Ljava/lang/String; m_268859_ + static + 0 o p_269782_ + 1 o p_269783_ + 2 o p_269784_ + a (IILjava/util/function/Function;)Lcom/mojang/serialization/Codec; m_144633_ + static + 0 o p_144634_ + 1 o p_144635_ + 2 o p_144636_ + a (Lcom/mojang/datafixers/util/Pair;)Lcom/mojang/serialization/DataResult; m_252898_ + static + 0 o p_253764_ + a (Ljava/util/function/Function;Ljava/util/function/Function;)Lcom/mojang/serialization/Codec; m_184405_ + static + 0 o p_184406_ + 1 o p_184407_ + a (Ljava/util/function/IntFunction;Ljava/lang/Integer;)Lcom/mojang/serialization/DataResult; m_184412_ + static + 0 o p_184413_ + 1 o p_184414_ + a (IILjava/lang/String;)Lcom/mojang/serialization/DataResult; m_274140_ + static + 0 o p_274877_ + 1 o p_274878_ + 2 o p_274879_ + a ([B)Ljava/lang/String; m_216179_ + static + 0 o p_216180_ + a (Ljava/lang/Integer;)Ljava/lang/String; m_274119_ + static + 0 o p_274847_ + a (Lcom/mojang/serialization/Codec;Ljava/lang/String;Ljava/lang/String;Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; m_184356_ + static + 0 o p_184357_ + 1 o p_184358_ + 2 o p_184359_ + 3 o p_184360_ + a (Ljava/time/format/DateTimeFormatter;Ljava/lang/String;)Lcom/mojang/serialization/DataResult; m_274141_ + static + 0 o p_274880_ + 1 o p_274881_ + a (Lcom/mojang/authlib/properties/PropertyMap;Ljava/util/List;)V m_252677_ + static + 0 o p_253508_ + 1 o p_253509_ + a (Ljava/util/List;)Lcom/mojang/serialization/DataResult; m_274124_ + static + 0 o p_274853_ + a (Lcom/mojang/serialization/Codec;Ljava/lang/String;Ljava/lang/String;Ljava/util/function/BiFunction;Ljava/util/function/Function;Ljava/util/function/Function;)Lcom/mojang/serialization/Codec; m_184361_ + static + 0 o p_184362_ + 1 o p_184363_ + 2 o p_184364_ + 3 o p_184365_ + 4 o p_184366_ + 5 o p_184367_ + a (Lcom/mojang/serialization/Dynamic;)Lcom/google/gson/JsonElement; m_252676_ + static + 0 o p_253507_ + a (Ljava/util/function/ToIntFunction;Ljava/util/function/IntFunction;I)Lcom/mojang/serialization/Codec; m_184421_ + static + 0 o p_184422_ + 1 o p_184423_ + 2 o p_184424_ + a (Lcom/mojang/serialization/Codec;Ljava/util/function/Function;)Lcom/mojang/serialization/Codec; m_264370_ + static + 0 o p_265690_ + 1 o p_265223_ + a (Ljava/util/function/Supplier;)Lcom/mojang/serialization/Codec; m_184415_ + static + 0 o p_184416_ + a (Lcom/mojang/authlib/GameProfile;Ljava/lang/String;Lcom/mojang/authlib/properties/Property;)V m_252678_ + static + 0 o p_253510_ + 1 o p_253511_ + 2 o p_253512_ + a (Ljava/util/OptionalLong;)Ljava/util/Optional; m_216177_ + static + 0 o p_216178_ + a (II)Lcom/mojang/serialization/Codec; m_269197_ + static + 0 o p_270883_ + 1 o p_270323_ + a (Ljava/lang/String;Ljava/lang/String;Ljava/util/Optional;)Lcom/mojang/authlib/properties/Property; m_252668_ + static + 0 o p_253494_ + 1 o p_253495_ + 2 o p_253496_ + a (Ljava/util/BitSet;)Ljava/util/stream/LongStream; m_252667_ + static + 0 o p_253493_ + a (Lorg/joml/Vector3f;)Ljava/util/List; m_268862_ + static + 0 o p_269787_ + a (Ljava/util/function/ToIntFunction;ILjava/lang/Object;)Lcom/mojang/serialization/DataResult; m_274121_ + static + 0 o p_274848_ + 1 o p_274849_ + 2 o p_274850_ + a (Ljava/util/function/Function;)Lcom/mojang/serialization/MapCodec; m_203976_ + static + 0 o p_203977_ + a (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; m_252669_ + static + 0 o p_253497_ + a (Lsw;)Lcom/mojang/serialization/DataResult; m_276733_ + static + 0 o p_277277_ + a (Ljava/lang/String;)Lcom/mojang/serialization/DataResult; m_284008_ + static + 0 o p_284688_ + a (Ljava/util/function/Function;Ljava/lang/Integer;)Ljava/lang/String; m_274138_ + static + 0 o p_274874_ + 1 o p_274875_ + a (Ljava/util/stream/LongStream;)Ljava/util/BitSet; m_252680_ + static + 0 o p_253514_ + a (Ljava/lang/String;III)Ljava/lang/String; m_274146_ + static + 0 o p_274890_ + 1 o p_274891_ + 2 o p_274892_ + 3 o p_274893_ + b (Lcom/mojang/serialization/Codec;Lcom/mojang/serialization/Codec;)Lcom/mojang/serialization/Codec; m_184425_ + static + 0 o p_184426_ + 1 o p_184427_ + b (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; m_252665_ + static + 0 o p_253491_ + b (Lcom/mojang/datafixers/util/Either;)Ljava/lang/Object; m_184354_ + static + 0 o p_184355_ + b (Ljava/lang/Integer;)Ljava/lang/String; m_184372_ + static + 0 o p_275703_ + b (Ljava/util/function/BiFunction;Ljava/util/List;)Lcom/mojang/serialization/DataResult; m_184443_ + static + 0 o p_184444_ + 1 o p_184445_ + b (Lsw;)Lcom/mojang/serialization/DataResult; m_274129_ + static + 0 o p_274859_ + b (Ljava/util/function/Function;Ljava/util/function/Function;Ljava/lang/Object;)Lcom/mojang/datafixers/util/Pair; m_184446_ + static + 0 o p_184447_ + 1 o p_184448_ + 2 o p_184449_ + b (Ljava/lang/String;III)Ljava/lang/String; m_274137_ + static + 0 o p_274870_ + 1 o p_274871_ + 2 o p_274872_ + 3 o p_274873_ + b ()Ljava/lang/String; m_274134_ + static + b (Ljava/util/function/Function;)Ljava/util/function/Function; m_203984_ + static + 0 o p_203985_ + b (Lacq;)Laoi$d; m_216181_ + static + 0 o p_216182_ + b (Ljava/lang/String;)Ljava/lang/String; m_274143_ + static + 0 o p_274884_ + b (Ljava/util/List;)Lcom/mojang/serialization/DataResult; m_268863_ + static + 0 o p_269788_ + b (Lcom/mojang/serialization/Codec;)Lcom/mojang/serialization/Codec; m_203982_ + static + 0 o p_203983_ + b (Ljava/lang/Object;)Lcom/mojang/serialization/DataResult; m_274144_ + static + 0 o p_274885_ + b (Lcom/google/gson/JsonElement;)Lcom/mojang/serialization/Dynamic; m_252679_ + static + 0 o p_253513_ + b (II)Lcom/mojang/serialization/Codec; m_264337_ + static + 0 o p_265773_ + 1 o p_265217_ + b (Lorg/joml/Quaternionf;)Lorg/joml/Quaternionf; m_268858_ + static + 0 o p_269781_ + b (Lorg/joml/AxisAngle4f;)Ljava/lang/Float; m_268853_ + static + 0 o p_269776_ + b (Ljava/util/Optional;)Ljava/util/UUID; m_252683_ + static + 0 o p_253517_ + c (Lorg/joml/Quaternionf;)Ljava/util/List; m_268857_ + static + 0 o p_269780_ + c (Lcom/mojang/serialization/Codec;)Lcom/mojang/serialization/Codec; m_216185_ + static + 0 o p_216186_ + c ()Ljava/lang/String; m_274125_ + static + c (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; m_268851_ + static + 0 o p_269774_ + c (Ljava/lang/Integer;)Lcom/mojang/serialization/DataResult; m_274122_ + static + 0 o p_274851_ + c (Ljava/util/List;)Lorg/joml/Matrix4f; m_268854_ + static + 0 o p_269777_ + c (Ljava/util/function/Function;Ljava/util/function/Function;Ljava/lang/Object;)Ljava/util/List; m_184456_ + static + 0 o p_184457_ + 1 o p_184458_ + 2 o p_184459_ + c (Ljava/lang/String;)Lcom/mojang/serialization/DataResult; m_274128_ + static + 0 o p_274858_ + c (Lcom/mojang/datafixers/util/Either;)Lorg/joml/Quaternionf; m_268856_ + static + 0 o p_269779_ + c (Ljava/lang/Object;)Ljava/lang/String; m_284007_ + static + 0 o p_284687_ + c (Ljava/util/Optional;)Ljava/util/OptionalLong; m_216175_ + static + 0 o p_216176_ + d (Ljava/lang/Object;)Ljava/lang/String; m_184374_ + static + 0 o p_275473_ + d (Ljava/lang/Integer;)Ljava/lang/String; m_184428_ + static + 0 o p_184429_ + d (Ljava/util/List;)Lcom/mojang/serialization/DataResult; m_268850_ + static + 0 o p_269773_ + d ()Ljava/lang/String; m_274120_ + static + d (Ljava/lang/String;)Lcom/mojang/serialization/DataResult; m_216168_ + static + 0 o p_216169_ + e (Ljava/lang/Object;)Ljava/lang/Object; m_184454_ + static + 0 o p_184455_ + e (Ljava/lang/String;)Lcom/mojang/serialization/DataResult; m_274123_ + static + 0 o p_274852_ + e (Ljava/util/List;)Lorg/joml/Quaternionf; m_268860_ + static + 0 o p_269785_ + f (Ljava/lang/String;)Lcom/mojang/serialization/DataResult; m_274127_ + static + 0 o p_274857_ + f (Ljava/lang/Object;)Ljava/lang/Object; m_184460_ + static + 0 o p_184461_ + f (Ljava/util/List;)Lcom/mojang/serialization/DataResult; m_252672_ + static + 0 o p_253502_ + g (Ljava/lang/String;)Lcom/mojang/serialization/DataResult; m_274135_ + static + 0 o p_274867_ + g (Ljava/util/List;)Lorg/joml/Vector3f; m_252663_ + static + 0 o p_253489_ + h (Ljava/lang/String;)Ljava/lang/String; m_274133_ + static + 0 o p_285289_ + i (Ljava/lang/String;)Lcom/mojang/serialization/DataResult; m_276732_ + static + 0 o p_277276_ +aoi$1 net/minecraft/util/ExtraCodecs$1 + a f_184462_ + (Ljava/lang/Object;)V + 0 o p_184464_ + a (Lorg/apache/commons/lang3/mutable/MutableObject;)Ljava/lang/String; m_274425_ + static + 0 o p_275452_ + apply (Lcom/mojang/serialization/DynamicOps;Ljava/lang/Object;Lcom/mojang/serialization/DataResult;)Lcom/mojang/serialization/DataResult; apply + 0 o p_184466_ + 1 o p_184467_ + 2 o p_184468_ + coApply (Lcom/mojang/serialization/DynamicOps;Ljava/lang/Object;Lcom/mojang/serialization/DataResult;)Lcom/mojang/serialization/DataResult; coApply + 0 o p_184470_ + 1 o p_184471_ + 2 o p_184472_ + toString ()Ljava/lang/String; toString +aoi$2 net/minecraft/util/ExtraCodecs$2 + a f_184474_ + b f_184475_ + (Lcom/mojang/serialization/Codec;Lcom/mojang/serialization/Codec;)V + 0 o p_184477_ + 1 o p_184478_ + decode (Lcom/mojang/serialization/DynamicOps;Ljava/lang/Object;)Lcom/mojang/serialization/DataResult; decode + 0 o p_184480_ + 1 o p_184481_ + encode (Ljava/lang/Object;Lcom/mojang/serialization/DynamicOps;Ljava/lang/Object;)Lcom/mojang/serialization/DataResult; encode + 0 o p_184483_ + 1 o p_184484_ + 2 o p_184485_ + toString ()Ljava/lang/String; toString +aoi$3 net/minecraft/util/ExtraCodecs$3 + a f_184487_ + b f_184488_ + (Ljava/util/function/Function;Ljava/util/function/Function;)V + 0 o p_184490_ + 1 o p_184491_ + a (Lcom/mojang/serialization/DataResult;Ljava/util/function/Function;Lcom/mojang/datafixers/util/Pair;)Lcom/mojang/serialization/DataResult; m_184492_ + static + 0 o p_184493_ + 1 o p_184494_ + 2 o p_184495_ + apply (Lcom/mojang/serialization/DynamicOps;Ljava/lang/Object;Lcom/mojang/serialization/DataResult;)Lcom/mojang/serialization/DataResult; apply + 0 o p_184497_ + 1 o p_184498_ + 2 o p_184499_ + coApply (Lcom/mojang/serialization/DynamicOps;Ljava/lang/Object;Lcom/mojang/serialization/DataResult;)Lcom/mojang/serialization/DataResult; coApply + 0 o p_184501_ + 1 o p_184502_ + 2 o p_184503_ + toString ()Ljava/lang/String; toString +aoi$4 net/minecraft/util/ExtraCodecs$4 + a f_216189_ + (Lcom/mojang/serialization/Codec;)V + 0 o p_216191_ + a (Ljava/lang/Object;Ljava/lang/Exception;)Ljava/lang/String; m_274404_ + static + 0 o p_275301_ + 1 o p_275251_ + decode (Lcom/mojang/serialization/DynamicOps;Ljava/lang/Object;)Lcom/mojang/serialization/DataResult; decode + 0 o p_216193_ + 1 o p_216194_ +aoi$a net/minecraft/util/ExtraCodecs$1ContextRetrievalCodec + a f_203986_ + (Ljava/util/function/Function;)V + 0 o p_203988_ + decode (Lcom/mojang/serialization/DynamicOps;Lcom/mojang/serialization/MapLike;)Lcom/mojang/serialization/DataResult; decode + 0 o p_203990_ + 1 o p_203991_ + encode (Ljava/lang/Object;Lcom/mojang/serialization/DynamicOps;Lcom/mojang/serialization/RecordBuilder;)Lcom/mojang/serialization/RecordBuilder; encode + 0 o p_203993_ + 1 o p_203994_ + 2 o p_203995_ + keys (Lcom/mojang/serialization/DynamicOps;)Ljava/util/stream/Stream; keys + 0 o p_203997_ + toString ()Ljava/lang/String; toString +aoi$b net/minecraft/util/ExtraCodecs$EitherCodec + a f_184505_ + b f_184506_ + (Lcom/mojang/serialization/Codec;Lcom/mojang/serialization/Codec;)V + 0 o p_184508_ + 1 o p_184509_ + a (Lcom/mojang/serialization/DynamicOps;Ljava/lang/Object;Ljava/lang/Object;)Lcom/mojang/serialization/DataResult; m_184519_ + 0 o p_184520_ + 1 o p_184521_ + 2 o p_184522_ + a (Lcom/mojang/datafixers/util/Pair;Lcom/mojang/datafixers/util/Pair;)Lcom/mojang/datafixers/util/Pair; m_184516_ + static + 0 o p_184517_ + 1 o p_184518_ + a (Lcom/mojang/datafixers/util/Either;Lcom/mojang/serialization/DynamicOps;Ljava/lang/Object;)Lcom/mojang/serialization/DataResult; encode + 0 o p_184511_ + 1 o p_184512_ + 2 o p_184513_ + a (Lcom/mojang/datafixers/util/Pair;)Lcom/mojang/datafixers/util/Pair; m_184514_ + static + 0 o p_184515_ + b (Lcom/mojang/serialization/DynamicOps;Ljava/lang/Object;Ljava/lang/Object;)Lcom/mojang/serialization/DataResult; m_184525_ + 0 o p_184526_ + 1 o p_184527_ + 2 o p_184528_ + b (Lcom/mojang/datafixers/util/Pair;)Lcom/mojang/datafixers/util/Pair; m_184523_ + static + 0 o p_184524_ + decode (Lcom/mojang/serialization/DynamicOps;Ljava/lang/Object;)Lcom/mojang/serialization/DataResult; decode + 0 o p_184530_ + 1 o p_184531_ + encode (Ljava/lang/Object;Lcom/mojang/serialization/DynamicOps;Ljava/lang/Object;)Lcom/mojang/serialization/DataResult; encode + 0 o p_184533_ + 1 o p_184534_ + 2 o p_184535_ + equals (Ljava/lang/Object;)Z equals + 0 o p_184537_ + hashCode ()I hashCode + toString ()Ljava/lang/String; toString +aoi$c net/minecraft/util/ExtraCodecs$LazyInitializedCodec + a f_184540_ + (Ljava/util/function/Supplier;)V + 0 o f_184540_ + a ()Ljava/util/function/Supplier; f_184540_ + decode (Lcom/mojang/serialization/DynamicOps;Ljava/lang/Object;)Lcom/mojang/serialization/DataResult; decode + 0 o p_184545_ + 1 o p_184546_ + encode (Ljava/lang/Object;Lcom/mojang/serialization/DynamicOps;Ljava/lang/Object;)Lcom/mojang/serialization/DataResult; encode + 0 o p_184548_ + 1 o p_184549_ + 2 o p_184550_ + equals (Ljava/lang/Object;)Z equals + 0 o p_184552_ + hashCode ()I hashCode + toString ()Ljava/lang/String; toString +aoi$d net/minecraft/util/ExtraCodecs$TagOrElementLocation + a f_216195_ + b f_216196_ + (Lacq;Z)V + 0 o f_216195_ + 1 o f_216196_ + a ()Lacq; f_216195_ + b ()Z f_216196_ + c ()Ljava/lang/String; m_216202_ + equals (Ljava/lang/Object;)Z equals + 0 o p_216204_ + hashCode ()I hashCode + toString ()Ljava/lang/String; toString +aoi$e net/minecraft/util/ExtraCodecs$XorCodec + a f_144657_ + b f_144658_ + (Lcom/mojang/serialization/Codec;Lcom/mojang/serialization/Codec;)V + 0 o p_144660_ + 1 o p_144661_ + a (Lcom/mojang/serialization/DynamicOps;Ljava/lang/Object;Ljava/lang/Object;)Lcom/mojang/serialization/DataResult; m_144668_ + 0 o p_144669_ + 1 o p_144670_ + 2 o p_144671_ + a (Ljava/util/Optional;Ljava/util/Optional;)Ljava/lang/String; m_274147_ + static + 0 o p_274894_ + 1 o p_274895_ + a (Lcom/mojang/datafixers/util/Either;Lcom/mojang/serialization/DynamicOps;Ljava/lang/Object;)Lcom/mojang/serialization/DataResult; encode + 0 o p_144663_ + 1 o p_144664_ + 2 o p_144665_ + a (Lcom/mojang/datafixers/util/Pair;)Lcom/mojang/datafixers/util/Pair; m_144666_ + static + 0 o p_144667_ + b (Lcom/mojang/serialization/DynamicOps;Ljava/lang/Object;Ljava/lang/Object;)Lcom/mojang/serialization/DataResult; m_144674_ + 0 o p_144675_ + 1 o p_144676_ + 2 o p_144677_ + b (Lcom/mojang/datafixers/util/Pair;)Lcom/mojang/datafixers/util/Pair; m_144672_ + static + 0 o p_144673_ + decode (Lcom/mojang/serialization/DynamicOps;Ljava/lang/Object;)Lcom/mojang/serialization/DataResult; decode + 0 o p_144679_ + 1 o p_144680_ + encode (Ljava/lang/Object;Lcom/mojang/serialization/DynamicOps;Ljava/lang/Object;)Lcom/mojang/serialization/DataResult; encode + 0 o p_144682_ + 1 o p_144683_ + 2 o p_144684_ + equals (Ljava/lang/Object;)Z equals + 0 o p_144686_ + hashCode ()I hashCode + toString ()Ljava/lang/String; toString +aoj net/minecraft/util/FastBufferedInputStream + a f_196560_ + b f_196561_ + c f_196562_ + d f_196563_ + e f_196564_ + (Ljava/io/InputStream;I)V + 0 o p_196568_ + 1 o p_196569_ + (Ljava/io/InputStream;)V + 0 o p_196566_ + a ()I m_196570_ + available ()I available + b ()V m_196572_ + close ()V close + read ([BII)I read + 0 o p_196576_ + 1 o p_196577_ + 2 o p_196578_ + read ()I read + skip (J)J skip + 0 o p_196580_ +aok net/minecraft/util/FastColor + ()V +aok$a net/minecraft/util/FastColor$ABGR32 + ()V + a (IIII)I m_266248_ + static + 0 o p_267196_ + 1 o p_266895_ + 2 o p_266779_ + 3 o p_267206_ + a (I)I m_266503_ + static + 0 o p_267257_ + a (II)I m_266498_ + static + 0 o p_267230_ + 1 o p_266708_ + b (I)I m_266313_ + static + 0 o p_267160_ + c (I)I m_266446_ + static + 0 o p_266784_ + d (I)I m_266247_ + static + 0 o p_267087_ + e (I)I m_266533_ + static + 0 o p_267248_ + f (I)I m_267818_ + static + 0 o p_268288_ +aok$b net/minecraft/util/FastColor$ARGB32 + ()V + a (IIII)I m_13660_ + static + 0 o p_13661_ + 1 o p_13662_ + 2 o p_13663_ + 3 o p_13664_ + a (FII)I m_269105_ + static + 0 o p_270972_ + 1 o p_270081_ + 2 o p_270150_ + a (I)I m_13655_ + static + 0 o p_13656_ + a (II)I m_13657_ + static + 0 o p_13658_ + 1 o p_13659_ + b (I)I m_13665_ + static + 0 o p_13666_ + c (I)I m_13667_ + static + 0 o p_13668_ + d (I)I m_13669_ + static + 0 o p_13670_ +aol net/minecraft/util/FileZipper + a f_144691_ + b f_144692_ + c f_144693_ + d f_144694_ + ()V + static + (Ljava/nio/file/Path;)V + 0 o p_144697_ + a (Ljava/nio/file/Path;Ljava/nio/file/attribute/BasicFileAttributes;)Z m_144706_ + static + 0 o p_144707_ + 1 o p_144708_ + a (Ljava/nio/file/Path;Ljava/lang/String;)V m_144703_ + 0 o p_144704_ + 1 o p_144705_ + a (Ljava/nio/file/Path;)V m_144698_ + 0 o p_144699_ + a (Ljava/nio/file/Path;Ljava/io/File;)V m_144700_ + 0 o p_144701_ + 1 o p_144702_ + close ()V close +aom net/minecraft/util/FormattedCharSequence + a f_13691_ + ()V + static + a (Ljava/util/List;Laon;)Z m_13724_ + static + 0 o p_13725_ + 1 o p_13726_ + a (Ljava/lang/String;Lts;Lit/unimi/dsi/fastutil/ints/Int2IntFunction;Laon;)Z m_13717_ + static + 0 o p_13718_ + 1 o p_13719_ + 2 o p_13720_ + 3 o p_13721_ + a (Ljava/lang/String;Lts;Laon;)Z m_144713_ + static + 0 o p_144714_ + 1 o p_144715_ + 2 o p_144716_ + a (Laon;Lit/unimi/dsi/fastutil/ints/Int2IntFunction;ILts;I)Z m_13708_ + static + 0 o p_13709_ + 1 o p_13710_ + 2 o p_13711_ + 3 o p_13712_ + 4 o p_13713_ + a (Lts;ILaon;)Z m_13727_ + static + 0 o p_13728_ + 1 o p_13729_ + 2 o p_13730_ + a (Laom;Laom;Laon;)Z m_13699_ + static + 0 o p_13700_ + 1 o p_13701_ + 2 o p_13702_ + a (Laon;)Z m_13703_ + static + 0 o p_13704_ + accept (Laon;)Z m_13731_ + 0 o p_13732_ + b (Ljava/lang/String;Lts;Laon;)Z m_13736_ + static + 0 o p_13737_ + 1 o p_13738_ + 2 o p_13739_ + b (Ljava/lang/String;Lts;Lit/unimi/dsi/fastutil/ints/Int2IntFunction;Laon;)Z m_144726_ + static + 0 o p_144727_ + 1 o p_144728_ + 2 o p_144729_ + 3 o p_144730_ + backward (Ljava/lang/String;Lts;)Laom; m_144723_ + static + 0 o p_144724_ + 1 o p_144725_ + backward (Ljava/lang/String;Lts;Lit/unimi/dsi/fastutil/ints/Int2IntFunction;)Laom; m_13740_ + static + 0 o p_13741_ + 1 o p_13742_ + 2 o p_13743_ + codepoint (ILts;)Laom; m_13693_ + static + 0 o p_13694_ + 1 o p_13695_ + composite (Ljava/util/List;)Laom; m_13722_ + static + 0 o p_13723_ + composite ()Laom; m_144710_ + static + composite (Laom;Laom;)Laom; m_13696_ + static + 0 o p_13697_ + 1 o p_13698_ + composite ([Laom;)Laom; m_144721_ + static + 0 o p_144722_ + composite (Laom;)Laom; m_144711_ + static + 0 o p_144712_ + decorateOutput (Laon;Lit/unimi/dsi/fastutil/ints/Int2IntFunction;)Laon; m_13705_ + static + 0 o p_13706_ + 1 o p_13707_ + forward (Ljava/lang/String;Lts;)Laom; m_13714_ + static + 0 o p_13715_ + 1 o p_13716_ + forward (Ljava/lang/String;Lts;Lit/unimi/dsi/fastutil/ints/Int2IntFunction;)Laom; m_144717_ + static + 0 o p_144718_ + 1 o p_144719_ + 2 o p_144720_ + fromList (Ljava/util/List;)Laom; m_13744_ + static + 0 o p_13745_ + fromPair (Laom;Laom;)Laom; m_13733_ + static + 0 o p_13734_ + 1 o p_13735_ +aon net/minecraft/util/FormattedCharSink + accept (ILts;I)Z m_6411_ + 0 o p_13746_ + 1 o p_13747_ + 2 o p_13748_ +aoo net/minecraft/util/FrameTimer + a f_144731_ + b f_13749_ + c f_13750_ + d f_13751_ + e f_13752_ + ()V + a (JII)I m_13757_ + 0 o p_13758_ + 1 o p_13759_ + 2 o p_13760_ + a (I)J m_144732_ + 0 o p_144733_ + a (J)V m_13755_ + 0 o p_13756_ + a (II)I m_144734_ + 0 o p_144735_ + 1 o p_144736_ + a ()I m_13754_ + b ()I m_13761_ + b (I)I m_13762_ + 0 o p_13763_ + c ()[J m_13764_ +aop net/minecraft/util/FutureChain + b f_241610_ + c f_241623_ + d f_244461_ + e f_243910_ + ()V + static + (Ljava/util/concurrent/Executor;)V + 0 o p_242395_ + a (Ljava/util/concurrent/Executor;Ljava/lang/Runnable;)V m_244910_ + 0 o p_248282_ + 1 o p_248283_ + a (Lapt$a;Ljava/lang/Object;)Ljava/util/concurrent/CompletionStage; m_244909_ + 0 o p_248280_ + 1 o p_248281_ + a (Ljava/lang/Throwable;)Ljava/lang/Object; m_241881_ + static + 0 o p_242215_ + append (Lapt$a;)V m_241849_ + 0 o p_242381_ + close ()V close +aoq net/minecraft/util/Graph + ()V + a (Ljava/util/Map;Ljava/util/Set;Ljava/util/Set;Ljava/util/function/Consumer;Ljava/lang/Object;)Z m_184556_ + static + 0 o p_184557_ + 1 o p_184558_ + 2 o p_184559_ + 3 o p_184560_ + 4 o p_184561_ +aor net/minecraft/util/GsonHelper + a f_13765_ + ()V + static + ()V + a (Lcom/google/gson/JsonObject;Ljava/lang/String;Ljava/lang/String;)Ljava/lang/String; m_13851_ + static + 0 o p_13852_ + 1 o p_13853_ + 2 o p_13854_ + a (Ljava/io/Reader;)Lcom/google/gson/JsonObject; m_13859_ + static + 0 o p_13860_ + a (Lcom/google/gson/JsonObject;Ljava/lang/String;S)S m_144758_ + static + 0 o p_144759_ + 1 o p_144760_ + 2 o p_144761_ + a (Lcom/google/gson/stream/JsonWriter;Lcom/google/gson/JsonElement;Ljava/util/Comparator;)V m_216207_ + static + 0 o p_216208_ + 1 o p_216209_ + 2 o p_216210_ + a (Lcom/google/gson/Gson;Ljava/io/Reader;Lcom/google/gson/reflect/TypeToken;Z)Ljava/lang/Object; m_13771_ + static + 0 o p_13772_ + 1 o p_13773_ + 2 o p_13774_ + 3 o p_13775_ + a (Lcom/google/gson/Gson;Ljava/io/Reader;Ljava/lang/Class;Z)Ljava/lang/Object; m_13780_ + static + 0 o p_13781_ + 1 o p_13782_ + 2 o p_13783_ + 3 o p_13784_ + a (Lcom/google/gson/JsonObject;Ljava/lang/String;B)B m_13816_ + static + 0 o p_13817_ + 1 o p_13818_ + 2 o p_13819_ + a (Lcom/google/gson/JsonObject;Ljava/lang/String;Lcom/google/gson/JsonDeserializationContext;Ljava/lang/Class;)Ljava/lang/Object; m_13836_ + static + 0 o p_13837_ + 1 o p_13838_ + 2 o p_13839_ + 3 o p_13840_ + a (Ljava/io/Reader;Z)Lcom/google/gson/JsonObject; m_13861_ + static + 0 o p_13862_ + 1 o p_13863_ + a (Lcom/google/gson/JsonObject;Ljava/lang/String;Ljava/math/BigDecimal;)Ljava/math/BigDecimal; m_144750_ + static + 0 o p_144751_ + 1 o p_144752_ + 2 o p_144753_ + a (Lcom/google/gson/Gson;Ljava/lang/String;Ljava/lang/Class;Z)Ljava/lang/Object; m_263467_ + static + 0 o p_263492_ + 1 o p_263488_ + 2 o p_263503_ + 3 o p_263506_ + a (Lcom/google/gson/JsonObject;Ljava/lang/String;C)C m_144738_ + static + 0 o p_144739_ + 1 o p_144740_ + 2 o p_144741_ + a (Lcom/google/gson/JsonObject;Ljava/lang/String;Lcfu;)Lcfu; m_144746_ + static + 0 o p_144747_ + 1 o p_144748_ + 2 o p_144749_ + a (Lcom/google/gson/JsonObject;Ljava/lang/String;I)I m_13824_ + static + 0 o p_13825_ + 1 o p_13826_ + 2 o p_13827_ + a (Lcom/google/gson/JsonObject;Ljava/lang/String;Ljava/lang/Object;Lcom/google/gson/JsonDeserializationContext;Ljava/lang/Class;)Ljava/lang/Object; m_13845_ + static + 0 o p_13846_ + 1 o p_13847_ + 2 o p_13848_ + 3 o p_13849_ + 4 o p_13850_ + a (Ljava/util/Collection;Ljava/util/Comparator;)Ljava/util/Collection; m_216211_ + static + 0 o p_216212_ + 1 o p_216213_ + a (Lcom/google/gson/JsonObject;Ljava/lang/String;Lcom/google/gson/JsonArray;)Lcom/google/gson/JsonArray; m_13832_ + static + 0 o p_13833_ + 1 o p_13834_ + 2 o p_13835_ + a (Lcom/google/gson/JsonObject;Ljava/lang/String;Z)Z m_13855_ + static + 0 o p_13856_ + 1 o p_13857_ + 2 o p_13858_ + a (Ljava/lang/String;Ljava/lang/String;)Lcom/google/gson/JsonSyntaxException; m_13866_ + static + 0 o p_13867_ + 1 o p_13868_ + a (Lcom/google/gson/Gson;Ljava/io/Reader;Ljava/lang/Class;)Ljava/lang/Object; m_13776_ + static + 0 o p_13777_ + 1 o p_13778_ + 2 o p_13779_ + a (Lcom/google/gson/Gson;Ljava/lang/String;Lcom/google/gson/reflect/TypeToken;)Ljava/lang/Object; m_13785_ + static + 0 o p_13786_ + 1 o p_13787_ + 2 o p_13788_ + a (Lcom/google/gson/JsonObject;Ljava/lang/String;F)F m_13820_ + static + 0 o p_13821_ + 1 o p_13822_ + 2 o p_13823_ + a (Lcom/google/gson/JsonObject;Ljava/lang/String;D)D m_144742_ + static + 0 o p_144743_ + 1 o p_144744_ + 2 o p_144745_ + a (Lcom/google/gson/Gson;Ljava/io/Reader;Lcom/google/gson/reflect/TypeToken;)Ljava/lang/Object; m_13767_ + static + 0 o p_13768_ + 1 o p_13769_ + 2 o p_13770_ + a (Lcom/google/gson/JsonObject;Ljava/lang/String;J)J m_13828_ + static + 0 o p_13829_ + 1 o p_13830_ + 2 o p_13831_ + a (Lcom/google/gson/JsonObject;Ljava/lang/String;Lcom/google/gson/JsonObject;)Lcom/google/gson/JsonObject; m_13841_ + static + 0 o p_13842_ + 1 o p_13843_ + 2 o p_13844_ + a (Lcom/google/gson/Gson;Ljava/lang/String;Ljava/lang/Class;)Ljava/lang/Object; m_13794_ + static + 0 o p_13795_ + 1 o p_13796_ + 2 o p_13797_ + a (Ljava/lang/String;)Lcom/google/gson/JsonObject; m_13864_ + static + 0 o p_13865_ + a (Lcom/google/gson/JsonElement;)Z m_13803_ + static + 0 o p_13804_ + a (Lcom/google/gson/JsonElement;Ljava/lang/String;)Ljava/lang/String; m_13805_ + static + 0 o p_13806_ + 1 o p_13807_ + a (Lcom/google/gson/JsonObject;Ljava/lang/String;)Z m_13813_ + static + 0 o p_13814_ + 1 o p_13815_ + a (Lcom/google/gson/JsonObject;Ljava/lang/String;Ljava/math/BigInteger;)Ljava/math/BigInteger; m_144754_ + static + 0 o p_144755_ + 1 o p_144756_ + 2 o p_144757_ + a (Lcom/google/gson/JsonElement;Ljava/lang/String;Lcom/google/gson/JsonDeserializationContext;Ljava/lang/Class;)Ljava/lang/Object; m_13808_ + static + 0 o p_13809_ + 1 o p_13810_ + 2 o p_13811_ + 3 o p_13812_ + a (Lcom/google/gson/Gson;Ljava/lang/String;Lcom/google/gson/reflect/TypeToken;Z)Ljava/lang/Object; m_13789_ + static + 0 o p_13790_ + 1 o p_13791_ + 2 o p_13792_ + 3 o p_13793_ + a (Ljava/lang/String;Z)Lcom/google/gson/JsonObject; m_13869_ + static + 0 o p_13870_ + 1 o p_13871_ + b (Lcom/google/gson/JsonElement;Ljava/lang/String;)Lcfu; m_13874_ + static + 0 o p_13875_ + 1 o p_13876_ + b (Lcom/google/gson/Gson;Ljava/io/Reader;Lcom/google/gson/reflect/TypeToken;Z)Ljava/lang/Object; m_263457_ + static + 0 o p_263499_ + 1 o p_263527_ + 2 o p_263525_ + 3 o p_263507_ + b (Lcom/google/gson/JsonElement;)Z m_13872_ + static + 0 o p_13873_ + b (Ljava/io/Reader;)Lcom/google/gson/JsonArray; m_144765_ + static + 0 o p_144766_ + b (Lcom/google/gson/Gson;Ljava/io/Reader;Ljava/lang/Class;Z)Ljava/lang/Object; m_263475_ + static + 0 o p_263516_ + 1 o p_263522_ + 2 o p_263539_ + 3 o p_263489_ + b (Ljava/lang/String;)Lcom/google/gson/JsonArray; m_216214_ + static + 0 o p_216215_ + b (Lcom/google/gson/JsonObject;Ljava/lang/String;)Z m_144762_ + static + 0 o p_144763_ + 1 o p_144764_ + b (Lcom/google/gson/Gson;Ljava/lang/String;Ljava/lang/Class;Z)Ljava/lang/Object; m_13798_ + static + 0 o p_13799_ + 1 o p_13800_ + 2 o p_13801_ + 3 o p_13802_ + c (Lcom/google/gson/JsonElement;Ljava/lang/String;)Z m_13877_ + static + 0 o p_13878_ + 1 o p_13879_ + c (Lcom/google/gson/JsonElement;)Z m_144767_ + static + 0 o p_144768_ + c (Lcom/google/gson/JsonObject;Ljava/lang/String;)Z m_13880_ + static + 0 o p_13881_ + 1 o p_13882_ + d (Lcom/google/gson/JsonElement;Ljava/lang/String;)D m_144769_ + static + 0 o p_144770_ + 1 o p_144771_ + d (Lcom/google/gson/JsonObject;Ljava/lang/String;)Z m_13885_ + static + 0 o p_13886_ + 1 o p_13887_ + d (Lcom/google/gson/JsonElement;)Ljava/lang/String; m_13883_ + static + 0 o p_13884_ + e (Lcom/google/gson/JsonObject;Ljava/lang/String;)Z m_144772_ + static + 0 o p_144773_ + 1 o p_144774_ + e (Lcom/google/gson/JsonElement;Ljava/lang/String;)F m_13888_ + static + 0 o p_13889_ + 1 o p_13890_ + e (Lcom/google/gson/JsonElement;)Ljava/lang/String; m_216216_ + static + 0 o p_216217_ + f (Lcom/google/gson/JsonElement;Ljava/lang/String;)J m_13891_ + static + 0 o p_13892_ + 1 o p_13893_ + f (Lcom/google/gson/JsonObject;Ljava/lang/String;)Z m_13894_ + static + 0 o p_13895_ + 1 o p_13896_ + g (Lcom/google/gson/JsonObject;Ljava/lang/String;)Z m_13900_ + static + 0 o p_13901_ + 1 o p_13902_ + g (Lcom/google/gson/JsonElement;Ljava/lang/String;)I m_13897_ + static + 0 o p_13898_ + 1 o p_13899_ + h (Lcom/google/gson/JsonObject;Ljava/lang/String;)Lcom/google/gson/JsonElement; m_289747_ + static + 0 o p_289782_ + 1 o p_289789_ + h (Lcom/google/gson/JsonElement;Ljava/lang/String;)B m_13903_ + static + 0 o p_13904_ + 1 o p_13905_ + i (Lcom/google/gson/JsonObject;Ljava/lang/String;)Ljava/lang/String; m_13906_ + static + 0 o p_13907_ + 1 o p_13908_ + i (Lcom/google/gson/JsonElement;Ljava/lang/String;)C m_144775_ + static + 0 o p_144776_ + 1 o p_144777_ + j (Lcom/google/gson/JsonObject;Ljava/lang/String;)Lcfu; m_13909_ + static + 0 o p_13910_ + 1 o p_13911_ + j (Lcom/google/gson/JsonElement;Ljava/lang/String;)Ljava/math/BigDecimal; m_144778_ + static + 0 o p_144779_ + 1 o p_144780_ + k (Lcom/google/gson/JsonObject;Ljava/lang/String;)Z m_13912_ + static + 0 o p_13913_ + 1 o p_13914_ + k (Lcom/google/gson/JsonElement;Ljava/lang/String;)Ljava/math/BigInteger; m_144781_ + static + 0 o p_144782_ + 1 o p_144783_ + l (Lcom/google/gson/JsonElement;Ljava/lang/String;)S m_144787_ + static + 0 o p_144788_ + 1 o p_144789_ + l (Lcom/google/gson/JsonObject;Ljava/lang/String;)D m_144784_ + static + 0 o p_144785_ + 1 o p_144786_ + m (Lcom/google/gson/JsonElement;Ljava/lang/String;)Lcom/google/gson/JsonObject; m_13918_ + static + 0 o p_13919_ + 1 o p_13920_ + m (Lcom/google/gson/JsonObject;Ljava/lang/String;)F m_13915_ + static + 0 o p_13916_ + 1 o p_13917_ + n (Lcom/google/gson/JsonElement;Ljava/lang/String;)Lcom/google/gson/JsonArray; m_13924_ + static + 0 o p_13925_ + 1 o p_13926_ + n (Lcom/google/gson/JsonObject;Ljava/lang/String;)J m_13921_ + static + 0 o p_13922_ + 1 o p_13923_ + o (Lcom/google/gson/JsonObject;Ljava/lang/String;)I m_13927_ + static + 0 o p_13928_ + 1 o p_13929_ + p (Lcom/google/gson/JsonObject;Ljava/lang/String;)B m_144790_ + static + 0 o p_144791_ + 1 o p_144792_ + q (Lcom/google/gson/JsonObject;Ljava/lang/String;)C m_144793_ + static + 0 o p_144794_ + 1 o p_144795_ + r (Lcom/google/gson/JsonObject;Ljava/lang/String;)Ljava/math/BigDecimal; m_144796_ + static + 0 o p_144797_ + 1 o p_144798_ + s (Lcom/google/gson/JsonObject;Ljava/lang/String;)Ljava/math/BigInteger; m_144799_ + static + 0 o p_144800_ + 1 o p_144801_ + t (Lcom/google/gson/JsonObject;Ljava/lang/String;)S m_144802_ + static + 0 o p_144803_ + 1 o p_144804_ + u (Lcom/google/gson/JsonObject;Ljava/lang/String;)Lcom/google/gson/JsonObject; m_13930_ + static + 0 o p_13931_ + 1 o p_13932_ + v (Lcom/google/gson/JsonObject;Ljava/lang/String;)Lcom/google/gson/JsonArray; m_13933_ + static + 0 o p_13934_ + 1 o p_13935_ +aos net/minecraft/util/HttpUtil + a f_13936_ + b f_13937_ + ()V + static + ()V + a (Lape;Ljava/net/URL;Ljava/net/Proxy;Ljava/util/Map;Ljava/io/File;I)Ljava/lang/Object; m_216218_ + static + 0 o p_216219_ + 1 o p_216220_ + 2 o p_216221_ + 3 o p_216222_ + 4 o p_216223_ + 5 o p_216224_ + a (I)Z m_257796_ + static + 0 o p_259872_ + a (Ljava/io/File;Ljava/net/URL;Ljava/util/Map;ILape;Ljava/net/Proxy;)Ljava/util/concurrent/CompletableFuture; m_216225_ + static + 0 o p_216226_ + 1 o p_216227_ + 2 o p_216228_ + 3 o p_216229_ + 4 o p_216230_ + 5 o p_216231_ + a ()I m_13939_ + static +aot net/minecraft/util/InclusiveRange + a f_184562_ + b f_184563_ + c f_184564_ + ()V + static + (Ljava/lang/Comparable;Ljava/lang/Comparable;)V + 0 o f_184563_ + 1 o f_184564_ + a (Lcom/mojang/serialization/Codec;)Lcom/mojang/serialization/Codec; m_184572_ + static + 0 o p_184573_ + a (Laot;)Z m_184570_ + 0 o p_184571_ + a ()Ljava/lang/Comparable; f_184563_ + a (Ljava/lang/Comparable;Ljava/lang/Comparable;)Lcom/mojang/serialization/DataResult; m_184580_ + static + 0 o p_184581_ + 1 o p_184582_ + a (Ljava/lang/Comparable;Laot;)Ljava/lang/String; m_274149_ + static + 0 o p_274899_ + 1 o p_274900_ + a (Lcom/mojang/serialization/Codec;Ljava/lang/Comparable;Ljava/lang/Comparable;)Lcom/mojang/serialization/Codec; m_184574_ + static + 0 o p_184575_ + 1 o p_184576_ + 2 o p_184577_ + a (Ljava/lang/Comparable;)Z m_184578_ + 0 o p_184579_ + a (Ljava/lang/Comparable;Ljava/lang/Comparable;Laot;)Lcom/mojang/serialization/DataResult; m_274148_ + static + 0 o p_274896_ + 1 o p_274897_ + 2 o p_274898_ + b (Ljava/lang/Comparable;Laot;)Ljava/lang/String; m_274151_ + static + 0 o p_274901_ + 1 o p_274902_ + b ()Ljava/lang/Comparable; f_184564_ + c ()Ljava/lang/String; m_274150_ + static + equals (Ljava/lang/Object;)Z equals + 0 o p_184589_ + hashCode ()I hashCode + toString ()Ljava/lang/String; toString +aou net/minecraft/util/KeyDispatchDataCodec + a f_216232_ + (Lcom/mojang/serialization/Codec;)V + 0 o f_216232_ + a ()Lcom/mojang/serialization/Codec; f_216232_ + a (Lcom/mojang/serialization/MapCodec;)Laou; m_216238_ + static + 0 o p_216239_ + a (Lcom/mojang/serialization/Codec;)Laou; m_216236_ + static + 0 o p_216237_ + equals (Ljava/lang/Object;)Z equals + 0 o p_216241_ + hashCode ()I hashCode + toString ()Ljava/lang/String; toString +aov net/minecraft/util/LazyLoadedValue + a f_13967_ + (Ljava/util/function/Supplier;)V + 0 o p_13970_ + a ()Ljava/lang/Object; m_13971_ +aow net/minecraft/util/LinearCongruentialGenerator + a f_144818_ + b f_144819_ + ()V + a (JJ)J m_13972_ + static + 0 o p_13973_ + 1 o p_13974_ +aox net/minecraft/util/LowerCaseEnumTypeAdapterFactory + ()V + a (Ljava/lang/Object;)Ljava/lang/String; m_13979_ + 0 o p_13980_ + create (Lcom/google/gson/Gson;Lcom/google/gson/reflect/TypeToken;)Lcom/google/gson/TypeAdapter; create + 0 o p_13982_ + 1 o p_13983_ +aox$1 net/minecraft/util/LowerCaseEnumTypeAdapterFactory$1 + a f_13984_ + b f_13985_ + (Laox;Ljava/util/Map;)V + 0 o p_13987_ + 1 o p_13988_ + read (Lcom/google/gson/stream/JsonReader;)Ljava/lang/Object; read + 0 o p_13990_ + write (Lcom/google/gson/stream/JsonWriter;Ljava/lang/Object;)V write + 0 o p_13992_ + 1 o p_13993_ +aoy net/minecraft/util/MemoryReserve + a f_182324_ + ()V + static + ()V + a ()V m_182327_ + static + b ()V m_182328_ + static +aoz net/minecraft/util/ModCheck + a f_184592_ + b f_184593_ + (Laoz$a;Ljava/lang/String;)V + 0 o f_184592_ + 1 o f_184593_ + a (Ljava/lang/String;Ljava/util/function/Supplier;Ljava/lang/String;Ljava/lang/Class;)Laoz; m_184600_ + static + 0 o p_184601_ + 1 o p_184602_ + 2 o p_184603_ + 3 o p_184604_ + a ()Z m_184597_ + a (Laoz;)Laoz; m_184598_ + 0 o p_184599_ + b ()Ljava/lang/String; m_184605_ + c ()Laoz$a; f_184592_ + d ()Ljava/lang/String; f_184593_ + equals (Ljava/lang/Object;)Z equals + 0 o p_184609_ + hashCode ()I hashCode + toString ()Ljava/lang/String; toString +aoz$a net/minecraft/util/ModCheck$Confidence + a PROBABLY_NOT + b VERY_LIKELY + c DEFINITELY + d f_184615_ + e f_184616_ + f $VALUES + ()V + static + (Ljava/lang/String;ILjava/lang/String;Z)V + 0 o p_184620_ + 1 o p_184621_ + 2 o p_184622_ + 3 o p_184623_ + a ()[Laoz$a; m_184624_ + static + valueOf (Ljava/lang/String;)Laoz$a; valueOf + static + 0 o p_184626_ + values ()[Laoz$a; values + static +ap net/minecraft/advancements/RequirementsStrategy + a f_15978_ + b f_15979_ + ()V + static + a (Ljava/util/Collection;)[[Ljava/lang/String; m_15981_ + static + 0 o p_15982_ + b (Ljava/util/Collection;)[[Ljava/lang/String; m_15983_ + static + 0 o p_15984_ + createRequirements (Ljava/util/Collection;)[[Ljava/lang/String; m_15985_ + 0 o p_15986_ +apa net/minecraft/util/Mth + a f_144830_ + b f_144831_ + c f_144832_ + d f_144833_ + e f_144834_ + f f_144835_ + g f_13994_ + h f_144838_ + i f_144839_ + j f_144840_ + k f_144841_ + l f_144842_ + m f_13995_ + n f_13996_ + o f_13997_ + p f_144843_ + q f_144844_ + r f_144845_ + s f_13998_ + t f_13999_ + u f_14000_ + ()V + static + ()V + a (III)I m_14045_ + static + 0 o p_14046_ + 1 o p_14047_ + 2 o p_14048_ + a (DDDDD)D m_144851_ + static + 0 o p_144852_ + 1 o p_144853_ + 2 o p_144854_ + 3 o p_144855_ + 4 o p_144856_ + a (Ljava/lang/String;I)I m_14059_ + static + 0 o p_14060_ + 1 o p_14061_ + a (II)I m_14042_ + static + 0 o p_14043_ + 1 o p_14044_ + a (FF)Z m_14033_ + static + 0 o p_14034_ + 1 o p_14035_ + a (DDD)D m_14008_ + static + 0 o p_14009_ + 1 o p_14010_ + 2 o p_14011_ + a (Lhz;)J m_14057_ + static + 0 o p_14058_ + a (Lapf;FF)F m_216267_ + static + 0 o p_216268_ + 1 o p_216269_ + 2 o p_216270_ + a (Lapf;)Ljava/util/UUID; m_216261_ + static + 0 o p_216262_ + a (J)J m_184643_ + static + 0 o p_184644_ + a (DI)I m_184628_ + static + 0 o p_184629_ + 1 o p_184630_ + a (IIIII)I m_216255_ + static + 0 o p_216256_ + 1 o p_216257_ + 2 o p_216258_ + 3 o p_216259_ + 4 o p_216260_ + a (IILjava/util/function/IntPredicate;)I m_14049_ + static + 0 o p_14050_ + 1 o p_14051_ + 2 o p_14052_ + a (FFFFF)F m_216244_ + static + 0 o p_216245_ + 1 o p_216246_ + 2 o p_216247_ + 3 o p_216248_ + 4 o p_216249_ + a (FFF)F m_14036_ + static + 0 o p_14037_ + 1 o p_14038_ + 2 o p_14039_ + a (DDDDDD)D m_14012_ + static + 0 o p_14013_ + 1 o p_14014_ + 2 o p_14015_ + 3 o p_14016_ + 4 o p_14017_ + 5 o p_14018_ + a (Lapf;II)I m_216271_ + static + 0 o p_216272_ + 1 o p_216273_ + 2 o p_216274_ + a (IIII)Ljava/util/stream/IntStream; m_216250_ + static + 0 o p_216251_ + 1 o p_216252_ + 2 o p_216253_ + 3 o p_216254_ + a (F)F m_14031_ + static + 0 o p_14032_ + a (D)I m_14107_ + static + 0 o p_14108_ + a ([F)V m_14076_ + static + 0 o p_14077_ + a (FII)I m_269140_ + static + 0 o p_270245_ + 1 o p_270597_ + 2 o p_270301_ + a (Leei;Leei;Leed;)Z m_144888_ + static + 0 o p_144889_ + 1 o p_144890_ + 2 o p_144891_ + a (I)I m_14040_ + static + 0 o p_14041_ + a (DDDDDDDDDDD)D m_14019_ + static + 0 o p_14020_ + 1 o p_14021_ + 2 o p_14022_ + 3 o p_14023_ + 4 o p_14024_ + 5 o p_14025_ + 6 o p_14026_ + 7 o p_14027_ + 8 o p_14028_ + 9 o p_14029_ + 10 o p_14030_ + a (Lapf;DD)D m_216263_ + static + 0 o p_216264_ + 1 o p_216265_ + 2 o p_216266_ + a (DD)D m_14005_ + static + 0 o p_14006_ + 1 o p_14007_ + a ()Ljava/util/UUID; m_14002_ + static + b (FF)F m_14091_ + static + 0 o p_14092_ + 1 o p_14093_ + b (FFF)F m_144920_ + static + 0 o p_144921_ + 1 o p_144922_ + 2 o p_144923_ + b (Lapf;II)I m_216287_ + static + 0 o p_216288_ + 1 o p_216289_ + 2 o p_216290_ + b (F)F m_14089_ + static + 0 o p_14090_ + b (D)J m_14134_ + static + 0 o p_14135_ + b (DDDDD)D m_144914_ + static + 0 o p_144915_ + 1 o p_144916_ + 2 o p_144917_ + 3 o p_144918_ + 4 o p_144919_ + b (Lapf;FF)F m_216283_ + static + 0 o p_216284_ + 1 o p_216285_ + 2 o p_216286_ + b (DD)Z m_14082_ + static + 0 o p_14083_ + 1 o p_14084_ + b (III)J m_14130_ + static + 0 o p_14131_ + 1 o p_14132_ + 2 o p_14133_ + b (IIII)Z m_216278_ + static + 0 o p_216279_ + 1 o p_216280_ + 2 o p_216281_ + 3 o p_216282_ + b (II)I m_14100_ + static + 0 o p_14101_ + 1 o p_14102_ + b (FFFFF)F m_184631_ + static + 0 o p_184632_ + 1 o p_184633_ + 2 o p_184634_ + 3 o p_184635_ + 4 o p_184636_ + b (DDD)D m_14085_ + static + 0 o p_14086_ + 1 o p_14087_ + 2 o p_14088_ + b (I)I m_14098_ + static + 0 o p_14099_ + c (I)I m_14125_ + static + 0 o p_14126_ + c (DD)D m_14109_ + static + 0 o p_14110_ + 1 o p_14111_ + c (FFFFF)F m_184637_ + static + 0 o p_184638_ + 1 o p_184639_ + 2 o p_184640_ + 3 o p_184641_ + 4 o p_184642_ + c (F)F m_14116_ + static + 0 o p_14117_ + c (D)I m_14165_ + static + 0 o p_14166_ + c (DDD)D m_14112_ + static + 0 o p_14113_ + 1 o p_14114_ + 2 o p_14115_ + c (II)Z m_264612_ + static + 0 o p_265754_ + 1 o p_265543_ + c (FF)F m_14118_ + static + 0 o p_14119_ + 1 o p_14120_ + c (III)Ljava/util/stream/IntStream; m_216295_ + static + 0 o p_216296_ + 1 o p_216297_ + 2 o p_216298_ + c (FFF)F m_14094_ + static + 0 o p_14095_ + 1 o p_14096_ + 2 o p_14097_ + c (Lapf;FF)F m_216291_ + static + 0 o p_216292_ + 1 o p_216293_ + 2 o p_216294_ + d (I)Z m_14152_ + static + 0 o p_14153_ + d (DD)D m_14136_ + static + 0 o p_14137_ + 1 o p_14138_ + d (D)D m_14175_ + static + 0 o p_14176_ + d (DDD)D m_14139_ + static + 0 o p_14140_ + 1 o p_14141_ + 2 o p_14142_ + d (FF)F m_14145_ + static + 0 o p_14146_ + 1 o p_14147_ + d (FFF)F m_14121_ + static + 0 o p_14122_ + 1 o p_14123_ + 2 o p_14124_ + d (F)I m_14143_ + static + 0 o p_14144_ + d (II)I m_144941_ + static + 0 o p_144942_ + 1 o p_144943_ + e (DDD)D m_211592_ + static + 0 o p_211593_ + 1 o p_211594_ + 2 o p_211595_ + e (D)D m_14185_ + static + 0 o p_14186_ + e (I)I m_14163_ + static + 0 o p_14164_ + e (DD)D m_211589_ + static + 0 o p_211590_ + 1 o p_211591_ + e (FF)F m_14156_ + static + 0 o p_14157_ + 1 o p_14158_ + e (FFF)F m_14148_ + static + 0 o p_14149_ + 1 o p_14150_ + 2 o p_14151_ + e (F)F m_14154_ + static + 0 o p_14155_ + e (II)I m_184652_ + static + 0 o p_184653_ + 1 o p_184654_ + f (D)D m_264555_ + static + 0 o p_265088_ + f (I)I m_14173_ + static + 0 o p_14174_ + f (DD)D m_184645_ + static + 0 o p_184646_ + 1 o p_184647_ + f (DDD)D m_184648_ + static + 0 o p_184649_ + 1 o p_184650_ + 2 o p_184651_ + f (F)I m_14167_ + static + 0 o p_14168_ + f (FFF)I m_14159_ + static + 0 o p_14160_ + 1 o p_14161_ + 2 o p_14162_ + g (D)D m_14193_ + static + 0 o p_14194_ + g (FFF)F m_184655_ + static + 0 o p_184656_ + 1 o p_184657_ + 2 o p_184658_ + g (I)I m_14183_ + static + 0 o p_14184_ + g (F)F m_14177_ + static + 0 o p_14178_ + h (F)F m_14187_ + static + 0 o p_14188_ + h (FFF)I m_14169_ + static + 0 o p_14170_ + 1 o p_14171_ + 2 o p_14172_ + h (I)I m_144944_ + static + 0 o p_144945_ + h (D)D m_14197_ + static + 0 o p_14198_ + i (D)D m_144946_ + static + 0 o p_144947_ + i (F)F m_264536_ + static + 0 o p_265060_ + i (FFF)F m_14179_ + static + 0 o p_14180_ + 1 o p_14181_ + 2 o p_14182_ + j (FFF)F m_14189_ + static + 0 o p_14190_ + 1 o p_14191_ + 2 o p_14192_ + j (F)F m_14199_ + static + 0 o p_14200_ + j (D)I m_14205_ + static + 0 o p_14206_ + k (F)F m_14207_ + static + 0 o p_14208_ + k (D)D m_144952_ + static + 0 o p_144953_ + l (D)D m_144954_ + static + 0 o p_144955_ +apb net/minecraft/util/NativeModuleLister + a f_184659_ + b f_184660_ + c f_184661_ + d f_184662_ + e f_184663_ + ()V + static + ()V + a (Ljava/lang/String;)Ljava/util/Optional; m_184673_ + static + 0 o p_184674_ + a (Lapb$a;)Ljava/lang/String; m_184667_ + static + 0 o p_184668_ + a ()Ljava/util/List; m_184666_ + static + a (Ljava/lang/String;II)Ljava/lang/String; m_184675_ + static + 0 o p_184676_ + 1 o p_184677_ + 2 o p_184678_ + a (Lcom/sun/jna/Pointer;Ljava/lang/String;Lcom/sun/jna/ptr/IntByReference;)Lcom/sun/jna/Pointer; m_184669_ + static + 0 o p_184670_ + 1 o p_184671_ + 2 o p_184672_ + a ([I)Ljava/util/OptionalInt; m_184681_ + static + 0 o p_184682_ + a (Lp;)V m_184679_ + static + 0 o p_184680_ + b ()Ljava/lang/String; m_184683_ + static + b (Lcom/sun/jna/Pointer;Ljava/lang/String;Lcom/sun/jna/ptr/IntByReference;)Ljava/lang/String; m_184686_ + static + 0 o p_184687_ + 1 o p_184688_ + 2 o p_184689_ + b (Lapb$a;)Ljava/lang/String; m_184684_ + static + 0 o p_184685_ +apb$a net/minecraft/util/NativeModuleLister$NativeModuleInfo + a f_184690_ + b f_184691_ + (Ljava/lang/String;Ljava/util/Optional;)V + 0 o p_184693_ + 1 o p_184694_ + a (Lapb$b;)Ljava/lang/String; m_184695_ + 0 o p_184696_ + toString ()Ljava/lang/String; toString +apb$b net/minecraft/util/NativeModuleLister$NativeModuleVersion + a f_184698_ + b f_184699_ + c f_184700_ + (Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;)V + 0 o p_184702_ + 1 o p_184703_ + 2 o p_184704_ + toString ()Ljava/lang/String; toString +apc net/minecraft/util/OptionEnum + a ()I m_35965_ + b ()Ljava/lang/String; m_35968_ + c ()Lsw; m_216301_ +apd net/minecraft/util/ParticleUtils + ()V + a (Lcmm;Lgu;Lapf;Lit;)V m_272037_ + static + 0 o p_273159_ + 1 o p_273452_ + 2 o p_273538_ + 3 o p_273419_ + a (Lcmm;Lgu;Lit;Lbdc;)V m_216313_ + static + 0 o p_216314_ + 1 o p_216315_ + 2 o p_216316_ + 3 o p_216317_ + a (Lapf;)Leei; m_216302_ + static + 0 o p_216303_ + a (Lcmm;Lgu;Lha;Lit;Leei;D)V m_216306_ + static + 0 o p_216307_ + 1 o p_216308_ + 2 o p_216309_ + 3 o p_216310_ + 4 o p_216311_ + 5 o p_216312_ + a (Lcmm;Lgu;Lit;Lbdc;Lha;Ljava/util/function/Supplier;D)V m_216318_ + static + 0 o p_216319_ + 1 o p_216320_ + 2 o p_216321_ + 3 o p_216322_ + 4 o p_216323_ + 5 o p_216324_ + 6 o p_216325_ + a (Lcmm;)Leei; m_216304_ + static + 0 o p_216305_ + a (Lha$a;Lcmm;Lgu;DLit;Lbdi;)V m_144967_ + static + 0 o p_144968_ + 1 o p_144969_ + 2 o p_144970_ + 3 o p_144971_ + 4 o p_144972_ + 5 o p_144973_ +ape net/minecraft/util/ProgressListener + a (I)V m_6952_ + 0 o p_14211_ + a (Lsw;)V m_6309_ + 0 o p_14212_ + a ()V m_7730_ + b (Lsw;)V m_6308_ + 0 o p_14213_ + c (Lsw;)V m_6307_ + 0 o p_14214_ +apf net/minecraft/util/RandomSource + a f_216326_ + a (I)I m_188503_ + 0 o p_216331_ + a ()Lapf; m_216327_ + static + a (J)Lapf; m_216335_ + static + 0 o p_216336_ + a (II)I m_216332_ + 0 o p_216333_ + 1 o p_216334_ + a (DD)D m_216328_ + 0 o p_216329_ + 1 o p_216330_ + b (I)V m_190110_ + 0 o p_216338_ + b (J)V m_188584_ + 0 o p_216342_ + b ()Lapf; m_216337_ + static + b (II)I m_216339_ + 0 o p_216340_ + 1 o p_216341_ + c ()Lapf; m_216343_ + static + d ()Lapf; m_213769_ + e ()Ldhx; m_188582_ + f ()I m_188502_ + g ()J m_188505_ + h ()Z m_188499_ + i ()F m_188501_ + j ()D m_188500_ + k ()D m_188583_ +apg net/minecraft/util/ResourceLocationPattern + a f_260470_ + b f_260589_ + c f_260666_ + d f_260579_ + e f_260644_ + f f_260730_ + ()V + static + (Ljava/util/Optional;Ljava/util/Optional;)V + 0 o p_261800_ + 1 o p_262131_ + a ()Ljava/util/function/Predicate; m_261304_ + a (Lacq;)Z m_261035_ + 0 o p_261854_ + a (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; m_261176_ + static + 0 o p_261684_ + a (Ljava/lang/String;)Z m_261037_ + static + 0 o p_261815_ + a (Lapg;)Ljava/util/Optional; m_261148_ + static + 0 o p_261660_ + b (Lapg;)Ljava/util/Optional; m_260867_ + static + 0 o p_261529_ + b (Ljava/lang/String;)Z m_261163_ + static + 0 o p_261999_ + b ()Ljava/util/function/Predicate; m_261081_ + c ()Ljava/util/function/Predicate; m_261275_ +aph net/minecraft/util/SegmentedAnglePrecision + a f_263790_ + b f_263801_ + c f_263695_ + d f_263823_ + (I)V + 0 o p_265275_ + a (II)Z m_264207_ + 0 o p_265505_ + 1 o p_265708_ + a (F)I m_264592_ + 0 o p_265346_ + a (I)F m_264289_ + 0 o p_265278_ + a ()I m_264451_ + a (Lha;)I m_264060_ + 0 o p_265731_ + b (F)I m_264419_ + 0 o p_265688_ + b (I)F m_264138_ + 0 o p_265623_ + c (I)I m_264384_ + 0 o p_265542_ +api net/minecraft/util/SignatureUpdater + update (Lapi$a;)V m_216344_ + 0 o p_216345_ +api$a net/minecraft/util/SignatureUpdater$Output + update ([B)V m_216346_ + 0 o p_216347_ +apj net/minecraft/util/SignatureValidator + a f_216348_ + b f_216349_ + ()V + static + a (Ljava/lang/String;Ljava/security/PublicKey;Lapi;[B)Z m_216364_ + static + 0 o p_216365_ + 1 o p_216366_ + 2 o p_216367_ + 3 o p_216368_ + a (Ljava/security/PublicKey;Ljava/lang/String;)Lapj; m_216369_ + static + 0 o p_216370_ + 1 o p_216371_ + a (Ljava/util/Collection;Lapi;[B)Z m_284009_ + static + 0 o p_284689_ + 1 o p_284690_ + 2 o p_284691_ + a (Lapi;[BLcom/mojang/authlib/yggdrasil/ServicesKeyInfo;)Z m_216360_ + static + 0 o p_216362_ + 1 o p_216363_ + 2 o p_216361_ + a ([B[B)Z m_216375_ + 0 o p_216376_ + 1 o p_216377_ + a (Lapi;[B)Z m_216351_ + static + 0 o p_216352_ + 1 o p_216353_ + a ([BLapi$a;)V m_216372_ + static + 0 o p_216373_ + 1 o p_216374_ + a (Lapi;[BLjava/security/Signature;)Z m_216354_ + static + 0 o p_216355_ + 1 o p_216356_ + 2 o p_216357_ + a (Lcom/mojang/authlib/yggdrasil/ServicesKeySet;Lcom/mojang/authlib/yggdrasil/ServicesKeyType;)Lapj; m_284488_ + static + 0 o p_285388_ + 1 o p_285383_ + validate (Lapi;[B)Z m_216378_ + 0 o p_216379_ + 1 o p_216380_ +apk net/minecraft/util/Signer + a f_216381_ + ()V + static + a (Ljava/security/PrivateKey;Ljava/lang/String;)Lapk; m_216387_ + static + 0 o p_216388_ + 1 o p_216389_ + a (Ljava/lang/String;Ljava/security/PrivateKey;Lapi;)[B m_216383_ + static + 0 o p_216384_ + 1 o p_216385_ + 2 o p_216386_ + a ([BLapi$a;)V m_216392_ + static + 0 o p_216393_ + 1 o p_216394_ + a ([B)[B m_216390_ + 0 o p_216391_ + sign (Lapi;)[B m_216395_ + 0 o p_216396_ +apl net/minecraft/util/SimpleBitStorage + a f_184706_ + b f_184707_ + c f_184708_ + d f_184709_ + e f_184710_ + f f_184711_ + g f_184712_ + h f_184713_ + i f_184714_ + ()V + static + (II[J)V + 0 o p_184724_ + 1 o p_184725_ + 2 o p_184726_ + (II[I)V + 0 o p_198164_ + 1 o p_198165_ + 2 o p_198166_ + (II)V + 0 o p_184717_ + 1 o p_184718_ + a ([I)V m_197970_ + 0 o p_198168_ + a (Ljava/util/function/IntConsumer;)V m_13519_ + 0 o p_184734_ + a (I)I m_13514_ + 0 o p_184729_ + a ()[J m_13513_ + a (II)I m_13516_ + 0 o p_184731_ + 1 o p_184732_ + b (II)V m_13524_ + 0 o p_184742_ + 1 o p_184743_ + b ()I m_13521_ + b (I)I m_184739_ + 0 o p_184740_ + c ()I m_144604_ + d ()Lans; m_199833_ +apl$a net/minecraft/util/SimpleBitStorage$InitializationException + (Ljava/lang/String;)V + 0 o p_184746_ +apm net/minecraft/util/SingleKeyCache + a f_268589_ + b f_268728_ + c f_268622_ + (Ljava/util/function/Function;)V + 0 o p_270132_ + a (Ljava/lang/Object;)Ljava/lang/Object; m_269185_ + 0 o p_270953_ +apn net/minecraft/util/SmoothDouble + a f_14232_ + b f_14233_ + c f_14234_ + ()V + a ()V m_14236_ + a (DD)D m_14237_ + 0 o p_14238_ + 1 o p_14239_ +apo net/minecraft/util/SortedArraySet + a f_144974_ + b f_14240_ + c f_14241_ + d f_14242_ + (ILjava/util/Comparator;)V + 0 o p_14244_ + 1 o p_14245_ + a (Ljava/util/Comparator;)Lapo; m_144976_ + static + 0 o p_144977_ + a ([Ljava/lang/Object;)[Ljava/lang/Object; m_14258_ + static + 0 o p_14259_ + a (Ljava/lang/Object;)Ljava/lang/Object; m_14253_ + 0 o p_14254_ + a ()Lapo; m_144975_ + static + a (Ljava/util/Comparator;I)Lapo; m_144978_ + static + 0 o p_144979_ + 1 o p_144980_ + a (I)Lapo; m_14246_ + static + 0 o p_14247_ + a (Ljava/lang/Object;I)V m_14255_ + 0 o p_14256_ + 1 o p_14257_ + add (Ljava/lang/Object;)Z add + 0 o p_14261_ + b (Ljava/lang/Object;)Ljava/lang/Object; m_144981_ + 0 o p_144982_ + b ()Ljava/lang/Object; m_14262_ + b (I)I m_14263_ + static + 0 o p_14264_ + c (Ljava/lang/Object;)I m_14269_ + 0 o p_14270_ + c (I)V m_14267_ + 0 o p_14268_ + c ()Ljava/lang/Object; m_144983_ + clear ()V clear + contains (Ljava/lang/Object;)Z contains + 0 o p_14273_ + d (I)V m_14274_ + 0 o p_14275_ + e (I)Ljava/lang/Object; m_14276_ + 0 o p_14277_ + equals (Ljava/lang/Object;)Z equals + 0 o p_14279_ + iterator ()Ljava/util/Iterator; iterator + remove (Ljava/lang/Object;)Z remove + 0 o p_14282_ + size ()I size + toArray ([Ljava/lang/Object;)[Ljava/lang/Object; toArray + 0 o p_14286_ + toArray ()[Ljava/lang/Object; toArray +apo$a net/minecraft/util/SortedArraySet$ArrayIterator + a f_14287_ + b f_14288_ + c f_14289_ + (Lapo;)V + 0 o p_14291_ + hasNext ()Z hasNext + next ()Ljava/lang/Object; next + remove ()V remove +app net/minecraft/util/SpawnUtil + ()V + a (Lbfn;Lbgd;Laif;Lgu;IIILapp$a;)Ljava/util/Optional; m_216403_ + static + 0 o p_216404_ + 1 o p_216405_ + 2 o p_216406_ + 3 o p_216407_ + 4 o p_216408_ + 5 o p_216409_ + 6 o p_216410_ + 7 o p_216411_ + a (Laif;ILgu$a;Lapp$a;)Z m_216398_ + static + 0 o p_216399_ + 1 o p_216400_ + 2 o p_216401_ + 3 o p_216402_ +app$a net/minecraft/util/SpawnUtil$Strategy + a f_216412_ + b f_216413_ + ()V + static + a (Laif;Lgu;Ldcb;Lgu;Ldcb;)Z m_216415_ + static + 0 o p_216416_ + 1 o p_216417_ + 2 o p_216418_ + 3 o p_216419_ + 4 o p_216420_ + b (Laif;Lgu;Ldcb;Lgu;Ldcb;)Z m_289712_ + static + 0 o p_289751_ + 1 o p_289752_ + 2 o p_289753_ + 3 o p_289754_ + 4 o p_289755_ + canSpawnOn (Laif;Lgu;Ldcb;Lgu;Ldcb;)Z m_216427_ + 0 o p_216428_ + 1 o p_216429_ + 2 o p_216430_ + 3 o p_216431_ + 4 o p_216432_ +apq net/minecraft/util/StringDecomposer + a f_144984_ + b f_14298_ + ()V + static + ()V + a (Lta;Lts;Laon;)Z m_14328_ + static + 0 o p_14329_ + 1 o p_14330_ + 2 o p_14331_ + a (Ljava/lang/String;ILts;Lts;Laon;)Z m_14311_ + static + 0 o p_14312_ + 1 o p_14313_ + 2 o p_14314_ + 3 o p_14315_ + 4 o p_14316_ + a (Ljava/lang/StringBuilder;ILts;I)Z m_14321_ + static + 0 o p_14322_ + 1 o p_14323_ + 2 o p_14324_ + 3 o p_14325_ + a (Ljava/lang/String;Lts;Laon;)Z m_14317_ + static + 0 o p_14318_ + 1 o p_14319_ + 2 o p_14320_ + a (Ljava/lang/String;)Ljava/lang/String; m_14304_ + static + 0 o p_14305_ + a (Lta;)Ljava/lang/String; m_14326_ + static + 0 o p_14327_ + a (Ljava/lang/String;ILts;Laon;)Z m_14306_ + static + 0 o p_14307_ + 1 o p_14308_ + 2 o p_14309_ + 3 o p_14310_ + a (Laon;Lts;Ljava/lang/String;)Ljava/util/Optional; m_14300_ + static + 0 o p_14301_ + 1 o p_14302_ + 2 o p_14303_ + a (Lts;Laon;IC)Z m_14332_ + static + 0 o p_14333_ + 1 o p_14334_ + 2 o p_14335_ + 3 o p_14336_ + b (Ljava/lang/String;Lts;Laon;)Z m_14337_ + static + 0 o p_14338_ + 1 o p_14339_ + 2 o p_14340_ + b (Ljava/lang/StringBuilder;ILts;I)Z m_14341_ + static + 0 o p_14342_ + 1 o p_14343_ + 2 o p_14344_ + 3 o p_14345_ + c (Ljava/lang/String;Lts;Laon;)Z m_14346_ + static + 0 o p_14347_ + 1 o p_14348_ + 2 o p_14349_ +apr net/minecraft/util/StringRepresentable + W f_216433_ + a (Ljava/util/function/Supplier;)Lapr$a; m_216439_ + static + 0 o p_216440_ + a ([Lapr;)Lcom/mojang/serialization/Keyable; m_14357_ + static + 0 o p_14358_ + a (Ljava/util/function/Supplier;Ljava/util/function/Function;)Lapr$a; m_274478_ + static + 0 o p_275615_ + 1 o p_275259_ + a (Ljava/lang/Enum;)Ljava/lang/Enum; m_274152_ + static + 0 o p_274903_ + a (Ljava/util/function/Function;Ljava/lang/Enum;)Ljava/lang/String; m_274153_ + static + 0 o p_274904_ + 1 o p_274905_ + a ([Ljava/lang/Enum;Ljava/util/function/Function;Ljava/lang/String;)Ljava/lang/Enum; m_274154_ + static + 0 o p_274906_ + 1 o p_274907_ + 2 o p_274908_ + a (Ljava/lang/String;)Ljava/lang/String; m_216434_ + static + 0 o p_275327_ + a (Ljava/util/Map;Ljava/lang/String;)Ljava/lang/Enum; m_216436_ + static + 0 o p_216437_ + 1 o p_216438_ + c ()Ljava/lang/String; m_7912_ +apr$1 net/minecraft/util/StringRepresentable$1 + a f_184754_ + ([Lapr;)V + 0 o p_184756_ + keys (Lcom/mojang/serialization/DynamicOps;)Ljava/util/stream/Stream; keys + 0 o p_184758_ +apr$a net/minecraft/util/StringRepresentable$EnumCodec + a f_216444_ + b f_216445_ + ([Ljava/lang/Enum;Ljava/util/function/Function;)V + 0 o p_216447_ + 1 o p_216448_ + a (Ljava/lang/String;Ljava/lang/Enum;)Ljava/lang/Enum; m_262792_ + 0 o p_263077_ + 1 o p_263115_ + a ([Ljava/lang/Enum;I)Ljava/lang/Enum; m_216457_ + static + 0 o p_216458_ + 1 o p_216459_ + a (Ljava/lang/String;)Ljava/lang/Enum; m_216455_ + 0 o p_216456_ + a (Ljava/lang/Enum;Lcom/mojang/serialization/DynamicOps;Ljava/lang/Object;)Lcom/mojang/serialization/DataResult; encode + 0 o p_216450_ + 1 o p_216451_ + 2 o p_216452_ + a (Ljava/lang/Object;)I m_216453_ + static + 0 o p_216454_ + b (Ljava/lang/Object;)Ljava/lang/String; m_216460_ + static + 0 o p_216461_ + decode (Lcom/mojang/serialization/DynamicOps;Ljava/lang/Object;)Lcom/mojang/serialization/DataResult; decode + 0 o p_216463_ + 1 o p_216464_ + encode (Ljava/lang/Object;Lcom/mojang/serialization/DynamicOps;Ljava/lang/Object;)Lcom/mojang/serialization/DataResult; encode + 0 o p_216466_ + 1 o p_216467_ + 2 o p_216468_ +aps net/minecraft/util/StringUtil + a f_14402_ + b f_144995_ + c f_144996_ + ()V + static + ()V + a (Ljava/lang/String;IZ)Ljava/lang/String; m_144998_ + static + 0 o p_144999_ + 1 o p_145000_ + 2 o p_145001_ + a (I)Ljava/lang/String; m_14404_ + static + 0 o p_14405_ + a (Ljava/lang/String;)Ljava/lang/String; m_14406_ + static + 0 o p_14407_ + b (Ljava/lang/String;)Z m_14408_ + static + 0 o p_14409_ + c (Ljava/lang/String;)I m_145002_ + static + 0 o p_145003_ + d (Ljava/lang/String;)Z m_145004_ + static + 0 o p_145005_ + e (Ljava/lang/String;)Ljava/lang/String; m_216469_ + static + 0 o p_216470_ +apt net/minecraft/util/TaskChainer + a f_241683_ + ()V + static + a (Ljava/util/concurrent/Executor;Lapt$a;)V m_244911_ + static + 0 o p_248284_ + 1 o p_248285_ + a (Ljava/lang/Throwable;)Ljava/lang/Object; m_241791_ + static + 0 o p_242314_ + append (Lapt$a;)V m_241849_ + 0 o p_242206_ + immediate (Ljava/util/concurrent/Executor;)Lapt; m_247687_ + static + 0 o p_251122_ +apt$a net/minecraft/util/TaskChainer$DelayedTask + submit (Ljava/util/concurrent/Executor;)Ljava/util/concurrent/CompletableFuture; m_245608_ + 0 o p_249412_ +apu net/minecraft/util/ThreadingDetector + a f_199407_ + b f_199408_ + c f_199409_ + d f_199410_ + e f_199411_ + f f_199412_ + ()V + static + (Ljava/lang/String;)V + 0 o p_199415_ + a (Ljava/lang/String;Ljava/lang/Thread;)Ly; m_199417_ + static + 0 o p_199418_ + 1 o p_199419_ + a ()V m_199416_ + a (Ljava/lang/Thread;)Ljava/lang/String; m_199420_ + static + 0 o p_199421_ + b ()V m_199422_ +apv net/minecraft/util/TimeSource + get (Ljava/util/concurrent/TimeUnit;)J m_239336_ + 0 o p_239337_ +apv$a net/minecraft/util/TimeSource$NanoTimeSource + get (Ljava/util/concurrent/TimeUnit;)J m_239336_ + 0 o p_239379_ +apw net/minecraft/util/TimeUtil + a f_145016_ + b f_145017_ + ()V + static + ()V + a (II)Lbdi; m_145020_ + static + 0 o p_145021_ + 1 o p_145022_ +apx net/minecraft/util/ToFloatFunction + a f_216471_ + ()V + static + a (Ljava/util/function/Function;)Lapx; m_216477_ + 0 o p_216478_ + a (F)F m_216473_ + static + 0 o p_216474_ + a (Lit/unimi/dsi/fastutil/floats/Float2FloatFunction;)Lapx; m_216475_ + static + 0 o p_216476_ + a (Ljava/lang/Object;)F m_183321_ + 0 o p_184786_ + b ()F m_213850_ + c ()F m_213849_ +apx$1 net/minecraft/util/ToFloatFunction$1 + b f_216479_ + (Lit/unimi/dsi/fastutil/floats/Float2FloatFunction;)V + 0 o p_216481_ + a (Ljava/lang/Float;)F m_183321_ + 0 o p_216483_ + a (Ljava/lang/Object;)F m_183321_ + 0 o p_216485_ + b ()F m_213850_ + c ()F m_213849_ +apx$2 net/minecraft/util/ToFloatFunction$2 + b f_216488_ + c f_216489_ + d f_216490_ + (Lapx;Lapx;Ljava/util/function/Function;)V + 0 o p_216492_ + 1 o p_216493_ + 2 o p_216494_ + a (Ljava/lang/Object;)F m_183321_ + 0 o p_216496_ + b ()F m_213850_ + c ()F m_213849_ +apy net/minecraft/util/Tuple + a f_14413_ + b f_14414_ + (Ljava/lang/Object;Ljava/lang/Object;)V + 0 o p_14416_ + 1 o p_14417_ + a (Ljava/lang/Object;)V m_145023_ + 0 o p_145024_ + a ()Ljava/lang/Object; m_14418_ + b ()Ljava/lang/Object; m_14419_ + b (Ljava/lang/Object;)V m_145025_ + 0 o p_145026_ +apz net/minecraft/util/Unit + a INSTANCE + b $VALUES + ()V + static + (Ljava/lang/String;I)V + 0 o p_14465_ + 1 o p_14466_ + a ()[Lapz; m_145027_ + static + valueOf (Ljava/lang/String;)Lapz; valueOf + static + 0 o p_14468_ + values ()[Lapz; values + static +aq net/minecraft/advancements/TreeNodePosition + a f_16554_ + b f_16555_ + c f_16556_ + d f_16557_ + e f_16558_ + f f_16559_ + g f_16560_ + h f_16561_ + i f_16562_ + j f_16563_ + k f_16564_ + l f_16565_ + (Lae;Laq;Laq;II)V + 0 o p_16567_ + 1 o p_16568_ + 2 o p_16569_ + 3 o p_16570_ + 4 o p_16571_ + a (FIF)F m_16575_ + 0 o p_16576_ + 1 o p_16577_ + 2 o p_16578_ + a (F)V m_16573_ + 0 o p_16574_ + a (Lae;Laq;)Laq; m_16589_ + 0 o p_16590_ + 1 o p_16591_ + a (Laq;Laq;)Laq; m_16584_ + 0 o p_16585_ + 1 o p_16586_ + a ()V m_16572_ + a (Laq;)Laq; m_16579_ + 0 o p_16580_ + a (Laq;F)V m_16581_ + 0 o p_16582_ + 1 o p_16583_ + a (Lae;)V m_16587_ + static + 0 o p_16588_ + b ()V m_16592_ + c ()Laq; m_16593_ + d ()Laq; m_16594_ + e ()V m_16595_ +aqa net/minecraft/util/VisibleForDebug +aqb net/minecraft/util/ZeroBitStorage + a f_184787_ + b f_184788_ + ()V + static + (I)V + 0 o p_184791_ + a ([I)V m_197970_ + 0 o p_198170_ + a (Ljava/util/function/IntConsumer;)V m_13519_ + 0 o p_184799_ + a (I)I m_13514_ + 0 o p_184794_ + a ()[J m_13513_ + a (II)I m_13516_ + 0 o p_184796_ + 1 o p_184797_ + b (II)V m_13524_ + 0 o p_184802_ + 1 o p_184803_ + b ()I m_13521_ + c ()I m_144604_ + d ()Lans; m_199833_ +aqc net/minecraft/util/datafix/DataFixTypes + a LEVEL + b PLAYER + c CHUNK + d HOTBAR + e OPTIONS + f STRUCTURE + g STATS + h SAVED_DATA + i ADVANCEMENTS + j POI_CHUNK + k WORLD_GEN_SETTINGS + l ENTITY_CHUNK + m f_273922_ + n f_14497_ + o $VALUES + ()V + static + (Ljava/lang/String;ILcom/mojang/datafixers/DSL$TypeReference;)V + 0 o p_14501_ + 1 o p_14502_ + 2 o p_14503_ + a (Lcom/mojang/datafixers/DataFixer;Lcom/mojang/serialization/Dynamic;II)Lcom/mojang/serialization/Dynamic; m_264080_ + 0 o p_265388_ + 1 o p_265179_ + 2 o p_265372_ + 3 o p_265168_ + a (Lcom/mojang/datafixers/DataFixer;Lcom/mojang/serialization/Dynamic;I)Lcom/mojang/serialization/Dynamic; m_264140_ + 0 o p_265085_ + 1 o p_265237_ + 2 o p_265099_ + a ()I m_264580_ + static + a (Lcom/mojang/datafixers/DataFixer;Lqr;II)Lqr; m_264226_ + 0 o p_265128_ + 1 o p_265422_ + 2 o p_265549_ + 3 o p_265304_ + a (Lcom/mojang/datafixers/DataFixer;Lqr;I)Lqr; m_264218_ + 0 o p_265583_ + 1 o p_265401_ + 2 o p_265111_ + b ()[Laqc; m_145042_ + static + valueOf (Ljava/lang/String;)Laqc; valueOf + static + 0 o p_14506_ + values ()[Laqc; values + static +aqd net/minecraft/util/datafix/DataFixers + a f_216512_ + b f_14508_ + c f_14509_ + d f_216514_ + ()V + static + ()V + a (Lit/unimi/dsi/fastutil/ints/Int2ObjectOpenHashMap;)V m_216518_ + static + 0 o p_216519_ + a (Lcom/mojang/datafixers/DataFixerBuilder;)V m_14513_ + static + 0 o p_14514_ + a (Ljava/util/Map;)Ljava/util/function/UnaryOperator; m_14524_ + static + 0 o p_14525_ + a (Ljava/lang/String;Ljava/lang/String;)Ljava/util/function/UnaryOperator; m_14517_ + static + 0 o p_14518_ + 1 o p_14519_ + a (Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;)Ljava/lang/String; m_216520_ + static + 0 o p_216521_ + 1 o p_216522_ + 2 o p_216523_ + a (Ljava/util/Map;Ljava/lang/String;)Ljava/lang/String; m_216524_ + static + 0 o p_216525_ + 1 o p_216526_ + a (Ljava/lang/String;)Ljava/lang/String; m_279902_ + static + 0 o p_280993_ + a (Ljava/util/Set;)Lcom/mojang/datafixers/DataFixer; m_274588_ + static + 0 o p_275618_ + a ()Lcom/mojang/datafixers/DataFixer; m_14512_ + static + a (Lcom/google/common/collect/ImmutableMap;Ljava/lang/String;)Ljava/lang/String; m_216515_ + static + 0 o p_216516_ + 1 o p_216517_ + b (Ljava/util/Map;Ljava/lang/String;)Ljava/lang/String; m_216529_ + static + 0 o p_216530_ + 1 o p_216531_ + b (Lit/unimi/dsi/fastutil/ints/Int2ObjectOpenHashMap;)V m_216527_ + static + 0 o p_216528_ + b (Ljava/lang/String;)Ljava/lang/String; m_14515_ + static + 0 o p_14516_ + c (Ljava/lang/String;)Ljava/lang/String; m_14530_ + static + 0 o p_14531_ + d (Ljava/lang/String;)Ljava/lang/String; m_14532_ + static + 0 o p_14533_ +aqd$1 net/minecraft/util/datafix/DataFixers$1 + (Lcom/mojang/datafixers/schemas/Schema;ZLjava/lang/String;Lcom/mojang/datafixers/DSL$TypeReference;Ljava/lang/String;)V + 0 o p_14535_ + 1 o p_14536_ + 2 o p_14537_ + 3 o p_14538_ + 4 o p_14539_ + a (Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; m_7504_ + 0 o p_14541_ +aqd$2 net/minecraft/util/datafix/DataFixers$2 + (Lcom/mojang/datafixers/schemas/Schema;ZLjava/lang/String;Lcom/mojang/datafixers/DSL$TypeReference;Ljava/lang/String;)V + 0 o p_14543_ + 1 o p_14544_ + 2 o p_14545_ + 3 o p_14546_ + 4 o p_14547_ + a (Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; m_7504_ + 0 o p_14549_ +aqe net/minecraft/util/datafix/PackedBitStorage + a f_145044_ + b f_14550_ + c f_14551_ + d f_14552_ + e f_14553_ + (II)V + 0 o p_14555_ + 1 o p_14556_ + (II[J)V + 0 o p_14558_ + 1 o p_14559_ + 2 o p_14560_ + a (II)V m_14564_ + 0 o p_14565_ + 1 o p_14566_ + a (I)I m_14562_ + 0 o p_14563_ + a ()[J m_14561_ + b ()I m_14567_ +aqf net/minecraft/util/datafix/fixes/AbstractArrowPickupFix + (Lcom/mojang/datafixers/schemas/Schema;)V + 0 o p_145046_ + a (Lcom/mojang/datafixers/Typed;Ljava/lang/String;Ljava/util/function/Function;)Lcom/mojang/datafixers/Typed; m_145049_ + 0 o p_145050_ + 1 o p_145051_ + 2 o p_145052_ + a (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; m_145053_ + static + 0 o p_145054_ + a (Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; m_145047_ + 0 o p_145048_ + a (Ljava/util/function/Function;Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; m_145055_ + static + 0 o p_145056_ + 1 o p_145057_ + makeRule ()Lcom/mojang/datafixers/TypeRewriteRule; makeRule +aqg net/minecraft/util/datafix/fixes/AbstractPoiSectionFix + a f_216534_ + (Lcom/mojang/datafixers/schemas/Schema;Ljava/lang/String;)V + 0 o p_216536_ + 1 o p_216537_ + a (Ljava/util/stream/Stream;)Ljava/util/stream/Stream; m_213759_ + 0 o p_216547_ + a (Lcom/mojang/serialization/DynamicOps;)Ljava/util/function/Function; m_216545_ + 0 o p_216546_ + a (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; m_216540_ + 0 o p_216541_ + a (Lcom/mojang/datafixers/util/Pair;)Lcom/mojang/datafixers/util/Pair; m_216538_ + 0 o p_216539_ + a (Lcom/mojang/serialization/Dynamic;Ljava/util/stream/Stream;)Lcom/mojang/serialization/Dynamic; m_216542_ + 0 o p_216543_ + 1 o p_216544_ + b (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; m_216550_ + 0 o p_216551_ + b (Lcom/mojang/datafixers/util/Pair;)Lcom/mojang/datafixers/util/Pair; m_216548_ + 0 o p_216549_ + c (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; m_216552_ + 0 o p_216553_ + d (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; m_216554_ + 0 o p_216555_ + makeRule ()Lcom/mojang/datafixers/TypeRewriteRule; makeRule +aqh net/minecraft/util/datafix/fixes/AbstractUUIDFix + a f_14569_ + (Lcom/mojang/datafixers/schemas/Schema;Lcom/mojang/datafixers/DSL$TypeReference;)V + 0 o p_14572_ + 1 o p_14573_ + a (Lcom/mojang/serialization/Dynamic;Ljava/lang/String;)Ljava/util/Optional; m_14587_ + static + 0 o p_14588_ + 1 o p_14589_ + a (Lcom/mojang/datafixers/Typed;Ljava/lang/String;Ljava/util/function/Function;)Lcom/mojang/datafixers/Typed; m_14574_ + 0 o p_14575_ + 1 o p_14576_ + 2 o p_14577_ + a (Lcom/mojang/serialization/Dynamic;JJ)Ljava/util/Optional; m_14580_ + static + 0 o p_14581_ + 1 o p_14582_ + 2 o p_14583_ + a (Lcom/mojang/serialization/Dynamic;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; m_14599_ + static + 0 o p_14600_ + 1 o p_14601_ + 2 o p_14602_ + 3 o p_14603_ + 4 o p_14604_ + a (Lcom/mojang/serialization/Dynamic;Ljava/lang/String;Ljava/lang/String;)Ljava/util/Optional; m_14590_ + static + 0 o p_14591_ + 1 o p_14592_ + 2 o p_14593_ + a (Lcom/mojang/serialization/Dynamic;Lcom/mojang/serialization/Dynamic;)Ljava/util/Optional; m_14584_ + static + 0 o p_14585_ + 1 o p_14586_ + a (Lcom/mojang/serialization/Dynamic;)Ljava/util/Optional; m_14578_ + static + 0 o p_14579_ + a (Lcom/mojang/serialization/Dynamic;Ljava/lang/String;Ljava/lang/String;Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; m_14594_ + static + 0 o p_14595_ + 1 o p_14596_ + 2 o p_14597_ + 3 o p_14598_ + a (Ljava/util/function/Function;Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; m_14605_ + static + 0 o p_14606_ + 1 o p_14607_ + b (Lcom/mojang/serialization/Dynamic;Ljava/lang/String;Ljava/lang/String;Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; m_14612_ + static + 0 o p_14613_ + 1 o p_14614_ + 2 o p_14615_ + 3 o p_14616_ + b (Lcom/mojang/serialization/Dynamic;Ljava/lang/String;Ljava/lang/String;)Ljava/util/Optional; m_14608_ + static + 0 o p_14609_ + 1 o p_14610_ + 2 o p_14611_ + c (Lcom/mojang/serialization/Dynamic;Ljava/lang/String;Ljava/lang/String;)Ljava/util/Optional; m_14617_ + static + 0 o p_14618_ + 1 o p_14619_ + 2 o p_14620_ + d (Lcom/mojang/serialization/Dynamic;Ljava/lang/String;Ljava/lang/String;)Ljava/util/Optional; m_14621_ + static + 0 o p_14622_ + 1 o p_14623_ + 2 o p_14624_ +aqi net/minecraft/util/datafix/fixes/AddFlagIfNotPresentFix + a f_184805_ + b f_184806_ + c f_184807_ + d f_184808_ + (Lcom/mojang/datafixers/schemas/Schema;Lcom/mojang/datafixers/DSL$TypeReference;Ljava/lang/String;Z)V + 0 o p_184810_ + 1 o p_184811_ + 2 o p_184812_ + 3 o p_184813_ + a (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; m_184816_ + 0 o p_184817_ + a (Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; m_184814_ + 0 o p_184815_ + b (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; m_184818_ + 0 o p_184819_ + makeRule ()Lcom/mojang/datafixers/TypeRewriteRule; makeRule +aqj net/minecraft/util/datafix/fixes/AddNewChoices + a f_14625_ + b f_14626_ + (Lcom/mojang/datafixers/schemas/Schema;Ljava/lang/String;Lcom/mojang/datafixers/DSL$TypeReference;)V + 0 o p_14628_ + 1 o p_14629_ + 2 o p_14630_ + a (Lcom/mojang/datafixers/types/templates/TaggedChoice$TaggedChoiceType;Lcom/mojang/datafixers/util/Pair;)Lcom/mojang/datafixers/util/Pair; m_241757_ + 0 o p_242135_ + 1 o p_145061_ + a (Ljava/lang/String;Lcom/mojang/datafixers/types/templates/TaggedChoice$TaggedChoiceType;Lcom/mojang/datafixers/types/templates/TaggedChoice$TaggedChoiceType;)Lcom/mojang/datafixers/TypeRewriteRule; m_14637_ + 0 o p_14638_ + 1 o p_14639_ + 2 o p_14640_ + a (Lcom/mojang/datafixers/types/templates/TaggedChoice$TaggedChoiceType;Lcom/mojang/serialization/DynamicOps;)Ljava/util/function/Function; m_14634_ + 0 o p_14635_ + 1 o p_14636_ + makeRule ()Lcom/mojang/datafixers/TypeRewriteRule; makeRule +aqk net/minecraft/util/datafix/fixes/AdvancementsFix + a f_14642_ + ()V + static + (Lcom/mojang/datafixers/schemas/Schema;Z)V + 0 o p_14645_ + 1 o p_14646_ + a (Ljava/lang/String;)Ljava/lang/String; m_14647_ + static + 0 o p_14648_ +aql net/minecraft/util/datafix/fixes/AdvancementsRenameFix + a f_14649_ + b f_14650_ + (Lcom/mojang/datafixers/schemas/Schema;ZLjava/lang/String;Ljava/util/function/Function;)V + 0 o p_14652_ + 1 o p_14653_ + 2 o p_14654_ + 3 o p_14655_ + a (Lcom/mojang/serialization/Dynamic;Ljava/lang/String;Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; m_145067_ + 0 o p_145068_ + 1 o p_145069_ + 2 o p_145070_ + a (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; m_145062_ + 0 o p_145063_ + a (Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; m_14656_ + 0 o p_14657_ + a (Lcom/mojang/serialization/Dynamic;Lcom/mojang/datafixers/util/Pair;)Lcom/mojang/datafixers/util/Pair; m_145064_ + 0 o p_145065_ + 1 o p_145066_ + makeRule ()Lcom/mojang/datafixers/TypeRewriteRule; makeRule +aqm net/minecraft/util/datafix/fixes/AttributesRename + a f_14668_ + ()V + static + (Lcom/mojang/datafixers/schemas/Schema;)V + 0 o p_14671_ + a (Ljava/util/stream/Stream;)Ljava/util/stream/Stream; m_145071_ + static + 0 o p_145072_ + a (Ljava/lang/String;)Ljava/lang/String; m_14679_ + static + 0 o p_14680_ + a (Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; m_14672_ + static + 0 o p_14673_ + 1 o p_14674_ + a (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; m_14677_ + static + 0 o p_14678_ + a (Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; m_14675_ + static + 0 o p_14676_ + b (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; m_14685_ + static + 0 o p_14686_ + b (Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; m_14683_ + static + 0 o p_14684_ + b (Ljava/util/stream/Stream;)Ljava/util/stream/Stream; m_145073_ + static + 0 o p_145074_ + c (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; m_145075_ + static + 0 o p_145076_ + d (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; m_145077_ + static + 0 o p_145078_ + e (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; m_14693_ + static + 0 o p_14694_ + f (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; m_145079_ + static + 0 o p_145080_ + g (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; m_145081_ + static + 0 o p_145082_ + makeRule ()Lcom/mojang/datafixers/TypeRewriteRule; makeRule +aqn net/minecraft/util/datafix/fixes/BedItemColorFix + (Lcom/mojang/datafixers/schemas/Schema;Z)V + 0 o p_14720_ + 1 o p_14721_ + a (Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; m_14722_ + static + 0 o p_14723_ + 1 o p_14724_ + makeRule ()Lcom/mojang/datafixers/TypeRewriteRule; makeRule +aqo net/minecraft/util/datafix/fixes/BiomeFix + a f_14730_ + ()V + static + ()V +aqp net/minecraft/util/datafix/fixes/BitStorageAlignFix + a f_145092_ + b f_145093_ + c f_145094_ + d f_145095_ + e f_145096_ + f f_145097_ + (Lcom/mojang/datafixers/schemas/Schema;)V + 0 o p_14736_ + a (Lcom/mojang/serialization/Dynamic;ILcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; m_145104_ + static + 0 o p_145105_ + 1 o p_145106_ + 2 o p_145107_ + a (Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; m_14744_ + 0 o p_14745_ + 1 o p_14746_ + 2 o p_14747_ + 3 o p_14748_ + 4 o p_14749_ + a (Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; m_14755_ + static + 0 o p_14756_ + 1 o p_14757_ + 2 o p_14758_ + a (Lcom/mojang/serialization/Dynamic;Lcom/mojang/serialization/Dynamic;II)Lcom/mojang/serialization/Dynamic; m_14776_ + static + 0 o p_14777_ + 1 o p_14778_ + 2 o p_14779_ + 3 o p_14780_ + a (Ljava/util/List;)Ljava/lang/Integer; m_145114_ + static + 0 o p_145115_ + a (Lcom/mojang/serialization/Dynamic;Lcom/mojang/datafixers/util/Pair;)Lcom/mojang/datafixers/util/Pair; m_145108_ + static + 0 o p_145109_ + 1 o p_145110_ + a (Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; m_14750_ + static + 0 o p_14751_ + 1 o p_14752_ + 2 o p_14753_ + 3 o p_14754_ + a (Lcom/mojang/serialization/Dynamic;Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; m_145111_ + static + 0 o p_145112_ + 1 o p_145113_ + a (Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; m_145101_ + static + 0 o p_145102_ + 1 o p_145103_ + a (II[J)[J m_14737_ + static + 0 o p_14738_ + 1 o p_14739_ + 2 o p_14740_ + a (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; m_14764_ + static + 0 o p_14765_ + a (Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; m_14762_ + 0 o p_14763_ + a (ILcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; m_145098_ + static + 0 o p_145099_ + 1 o p_145100_ + b (Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; m_145116_ + 0 o p_145117_ + 1 o p_145118_ + 2 o p_145119_ + 3 o p_145120_ + b (Lcom/mojang/serialization/Dynamic;Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; m_145121_ + static + 0 o p_145122_ + 1 o p_145123_ + makeRule ()Lcom/mojang/datafixers/TypeRewriteRule; makeRule +aqq net/minecraft/util/datafix/fixes/BlendingDataFix + a f_216557_ + b f_216558_ + ()V + static + (Lcom/mojang/datafixers/schemas/Schema;)V + 0 o p_216561_ + a (Lcom/mojang/serialization/Dynamic;Lcom/mojang/serialization/OptionalDynamic;)Lcom/mojang/serialization/Dynamic; m_240278_ + static + 0 o p_240279_ + 1 o p_240280_ + a (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; m_216562_ + static + 0 o p_240248_ + a (Lcom/mojang/serialization/Dynamic;II)Lcom/mojang/serialization/Dynamic; m_216566_ + static + 0 o p_216567_ + 1 o p_216568_ + 2 o p_216569_ + a (Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; m_240249_ + static + 0 o p_216563_ + makeRule ()Lcom/mojang/datafixers/TypeRewriteRule; makeRule +aqr net/minecraft/util/datafix/fixes/BlendingDataRemoveFromNetherEndFix + (Lcom/mojang/datafixers/schemas/Schema;)V + 0 o p_240321_ + a (Lcom/mojang/serialization/Dynamic;Lcom/mojang/serialization/OptionalDynamic;)Lcom/mojang/serialization/Dynamic; m_240317_ + static + 0 o p_240318_ + 1 o p_240319_ + a (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; m_240253_ + static + 0 o p_240254_ + a (Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; m_240285_ + static + 0 o p_240286_ + makeRule ()Lcom/mojang/datafixers/TypeRewriteRule; makeRule +aqs net/minecraft/util/datafix/fixes/BlockEntityBannerColorFix + (Lcom/mojang/datafixers/schemas/Schema;Z)V + 0 o p_14793_ + 1 o p_14794_ + a (Ljava/util/stream/Stream;)Ljava/util/stream/Stream; m_145124_ + static + 0 o p_145125_ + a (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; m_14797_ + 0 o p_14798_ + a (Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; m_7504_ + 0 o p_14796_ + b (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; m_14801_ + static + 0 o p_14802_ + c (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; m_145126_ + static + 0 o p_145127_ + d (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; m_145128_ + static + 0 o p_145129_ + e (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; m_14807_ + static + 0 o p_14808_ +aqt net/minecraft/util/datafix/fixes/BlockEntityBlockStateFix + (Lcom/mojang/datafixers/schemas/Schema;Z)V + 0 o p_14810_ + 1 o p_14811_ + a ()Ljava/lang/IllegalStateException; m_14812_ + static + a (Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; m_7504_ + 0 o p_14814_ + b ()Ljava/lang/IllegalStateException; m_14815_ + static +aqu net/minecraft/util/datafix/fixes/BlockEntityCustomNameToComponentFix + (Lcom/mojang/datafixers/schemas/Schema;Z)V + 0 o p_14817_ + 1 o p_14818_ + a (Lcom/mojang/datafixers/Typed;Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; m_145130_ + static + 0 o p_145131_ + 1 o p_145132_ + 2 o p_145133_ + a (Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; m_14819_ + static + 0 o p_14820_ + 1 o p_14821_ + makeRule ()Lcom/mojang/datafixers/TypeRewriteRule; makeRule +aqv net/minecraft/util/datafix/fixes/BlockEntityIdFix + a f_14827_ + ()V + static + (Lcom/mojang/datafixers/schemas/Schema;Z)V + 0 o p_14830_ + 1 o p_14831_ + a (Lcom/mojang/serialization/DynamicOps;)Ljava/util/function/Function; m_14834_ + static + 0 o p_14835_ + a (Ljava/util/HashMap;)V m_14838_ + static + 0 o p_14839_ + a (Lcom/mojang/datafixers/util/Pair;)Lcom/mojang/datafixers/util/Pair; m_145134_ + static + 0 o p_145135_ + a (Ljava/lang/String;)Ljava/lang/String; m_145136_ + static + 0 o p_145137_ + makeRule ()Lcom/mojang/datafixers/TypeRewriteRule; makeRule +aqw net/minecraft/util/datafix/fixes/BlockEntityJukeboxFix + (Lcom/mojang/datafixers/schemas/Schema;Z)V + 0 o p_14842_ + 1 o p_14843_ + a ()Ljava/lang/IllegalStateException; m_14844_ + static + a (Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; m_7504_ + 0 o p_14846_ +aqx net/minecraft/util/datafix/fixes/BlockEntityKeepPacked + (Lcom/mojang/datafixers/schemas/Schema;Z)V + 0 o p_14848_ + 1 o p_14849_ + a (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; m_14852_ + static + 0 o p_14853_ + a (Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; m_7504_ + 0 o p_14851_ +aqy net/minecraft/util/datafix/fixes/BlockEntityRenameFix + a f_276471_ + b f_276461_ + (Lcom/mojang/datafixers/schemas/Schema;Ljava/lang/String;Ljava/util/function/UnaryOperator;)V + 0 o p_277450_ + 1 o p_278025_ + 2 o p_277596_ + a (Lcom/mojang/datafixers/schemas/Schema;Ljava/lang/String;Ljava/util/function/UnaryOperator;)Lcom/mojang/datafixers/DataFix; m_276995_ + static + 0 o p_278009_ + 1 o p_277879_ + 2 o p_277753_ + a (Lcom/mojang/serialization/DynamicOps;)Ljava/util/function/Function; m_277018_ + 0 o p_277946_ + a (Lcom/mojang/datafixers/util/Pair;)Lcom/mojang/datafixers/util/Pair; m_277183_ + 0 o p_277512_ + makeRule ()Lcom/mojang/datafixers/TypeRewriteRule; makeRule +aqz net/minecraft/util/datafix/fixes/BlockEntityShulkerBoxColorFix + (Lcom/mojang/datafixers/schemas/Schema;Z)V + 0 o p_14855_ + 1 o p_14856_ + a (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; m_14859_ + static + 0 o p_14860_ + a (Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; m_7504_ + 0 o p_14858_ +ar net/minecraft/advancements/critereon/AbstractCriterionTriggerInstance + a f_16972_ + b f_16973_ + (Lacq;Lba;)V + 0 o p_286357_ + 1 o p_286466_ + a (Lct;)Lcom/google/gson/JsonObject; m_7683_ + 0 o p_16979_ + a ()Lacq; m_7294_ + b ()Lba; m_285924_ + toString ()Ljava/lang/String; toString +ara net/minecraft/util/datafix/fixes/BlockEntitySignDoubleSidedEditableTextFix + (Lcom/mojang/datafixers/schemas/Schema;Ljava/lang/String;Ljava/lang/String;)V + 0 o p_277789_ + 1 o p_278061_ + 2 o p_277403_ + a (Lcom/mojang/serialization/Dynamic;Ljava/lang/String;)Lcom/mojang/serialization/Dynamic; m_277057_ + static + 0 o p_277452_ + 1 o p_277422_ + a ()Ljava/lang/String; m_277204_ + static + a (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; m_276764_ + static + 0 o p_278110_ + a (Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; m_7504_ + 0 o p_277962_ + b (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; m_276919_ + static + 0 o p_277949_ +arb net/minecraft/util/datafix/fixes/BlockEntitySignTextStrictJsonFix + a f_14861_ + ()V + static + (Lcom/mojang/datafixers/schemas/Schema;Z)V + 0 o p_14864_ + 1 o p_14865_ + a (Lcom/mojang/serialization/Dynamic;Ljava/lang/String;)Lcom/mojang/serialization/Dynamic; m_14870_ + 0 o p_14871_ + 1 o p_14872_ + a (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; m_14868_ + 0 o p_14869_ + a (Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; m_7504_ + 0 o p_14867_ +arb$1 net/minecraft/util/datafix/fixes/BlockEntitySignTextStrictJsonFix$1 + ()V + a (Lcom/google/gson/JsonElement;Ljava/lang/reflect/Type;Lcom/google/gson/JsonDeserializationContext;)Ltj; deserialize + 0 o p_14875_ + 1 o p_14876_ + 2 o p_14877_ + deserialize (Lcom/google/gson/JsonElement;Ljava/lang/reflect/Type;Lcom/google/gson/JsonDeserializationContext;)Ljava/lang/Object; deserialize + 0 o p_14879_ + 1 o p_14880_ + 2 o p_14881_ +arc net/minecraft/util/datafix/fixes/BlockEntityUUIDFix + (Lcom/mojang/datafixers/schemas/Schema;)V + 0 o p_14883_ + a (Lcom/mojang/serialization/Dynamic;Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; m_14886_ + static + 0 o p_14887_ + 1 o p_14888_ + a (Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; m_14884_ + 0 o p_14885_ + b (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; m_14889_ + 0 o p_14890_ + c (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; m_14891_ + 0 o p_14892_ + d (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; m_14893_ + static + 0 o p_14894_ + makeRule ()Lcom/mojang/datafixers/TypeRewriteRule; makeRule +ard net/minecraft/util/datafix/fixes/BlockNameFlatteningFix + (Lcom/mojang/datafixers/schemas/Schema;Z)V + 0 o p_14897_ + 1 o p_14898_ + a (Lcom/mojang/datafixers/util/Either;)Ljava/lang/String; m_145138_ + static + 0 o p_145139_ + a (Lcom/mojang/serialization/DynamicOps;)Ljava/util/function/Function; m_14903_ + static + 0 o p_14904_ + a (Lcom/mojang/datafixers/util/Pair;)Lcom/mojang/datafixers/util/Pair; m_145140_ + static + 0 o p_145141_ + a (Ljava/lang/String;)Ljava/lang/String; m_145142_ + static + 0 o p_145143_ + makeRule ()Lcom/mojang/datafixers/TypeRewriteRule; makeRule +are net/minecraft/util/datafix/fixes/BlockRenameFix + a f_14908_ + (Lcom/mojang/datafixers/schemas/Schema;Ljava/lang/String;)V + 0 o p_14910_ + 1 o p_14911_ + a (Lcom/mojang/datafixers/schemas/Schema;Ljava/lang/String;Ljava/util/function/Function;)Lcom/mojang/datafixers/DataFix; m_14914_ + static + 0 o p_14915_ + 1 o p_14916_ + 2 o p_14917_ + a (Lcom/mojang/serialization/DynamicOps;)Ljava/util/function/Function; m_14922_ + 0 o p_14923_ + a (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; m_145146_ + 0 o p_145147_ + a (Lcom/mojang/datafixers/util/Pair;)Lcom/mojang/datafixers/util/Pair; m_145144_ + 0 o p_145145_ + a (Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; m_14912_ + 0 o p_14913_ + a (Ljava/lang/String;)Ljava/lang/String; m_7384_ + 0 o p_14924_ + makeRule ()Lcom/mojang/datafixers/TypeRewriteRule; makeRule +are$1 net/minecraft/util/datafix/fixes/BlockRenameFix$1 + a f_14926_ + (Lcom/mojang/datafixers/schemas/Schema;Ljava/lang/String;Ljava/util/function/Function;)V + 0 o p_14928_ + 1 o p_14929_ + 2 o p_14930_ + a (Ljava/lang/String;)Ljava/lang/String; m_7384_ + 0 o p_14932_ +arf net/minecraft/util/datafix/fixes/BlockRenameFixWithJigsaw + a f_145148_ + (Lcom/mojang/datafixers/schemas/Schema;Ljava/lang/String;)V + 0 o p_145150_ + 1 o p_145151_ + a (Lcom/mojang/serialization/Dynamic;Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; m_145160_ + 0 o p_145161_ + 1 o p_145162_ + a (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; m_145158_ + 0 o p_145159_ + a (Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; m_145156_ + 0 o p_145157_ + a (Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/DSL$TypeReference;Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; m_145152_ + 0 o p_145153_ + 1 o p_145154_ + 2 o p_145155_ + b (Lcom/mojang/datafixers/schemas/Schema;Ljava/lang/String;Ljava/util/function/Function;)Lcom/mojang/datafixers/DataFix; m_145163_ + static + 0 o p_145164_ + 1 o p_145165_ + 2 o p_145166_ + b (Ljava/lang/String;)Ljava/lang/String; m_145167_ + 0 o p_145168_ + makeRule ()Lcom/mojang/datafixers/TypeRewriteRule; makeRule +arf$1 net/minecraft/util/datafix/fixes/BlockRenameFixWithJigsaw$1 + a f_145170_ + (Lcom/mojang/datafixers/schemas/Schema;Ljava/lang/String;Ljava/util/function/Function;)V + 0 o p_145172_ + 1 o p_145173_ + 2 o p_145174_ + a (Ljava/lang/String;)Ljava/lang/String; m_7384_ + 0 o p_145176_ +arg net/minecraft/util/datafix/fixes/BlockStateData + a f_145177_ + b f_14933_ + c f_14934_ + d f_14935_ + e f_14936_ + f f_14937_ + ()V + static + ()V + a (ILjava/lang/String;[Ljava/lang/String;)V m_14942_ + static + 0 o p_14943_ + 1 o p_14944_ + 2 o p_14945_ + a (I)Ljava/lang/String; m_14940_ + static + 0 o p_14941_ + a ()V m_145179_ + static + a (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; m_14946_ + static + 0 o p_14947_ + a (Ljava/lang/String;)Ljava/lang/String; m_14950_ + static + 0 o p_14951_ + a (Lit/unimi/dsi/fastutil/objects/Object2IntOpenHashMap;)V m_14948_ + static + 0 o p_14949_ + b (I)Lcom/mojang/serialization/Dynamic; m_14952_ + static + 0 o p_14953_ + b (Lit/unimi/dsi/fastutil/objects/Object2IntOpenHashMap;)V m_14954_ + static + 0 o p_14955_ + b (Ljava/lang/String;)Lcom/mojang/serialization/Dynamic; m_14956_ + static + 0 o p_14957_ + b ()V m_145180_ + static + c ()V m_145181_ + static + d ()V m_145182_ + static + e ()V m_145183_ + static + f ()V m_145184_ + static + g ()V m_145185_ + static + h ()V m_145186_ + static + i ()V m_145187_ + static + j ()V m_145188_ + static + k ()V m_145189_ + static + l ()V m_145190_ + static + m ()V m_145191_ + static + n ()V m_145192_ + static + o ()V m_145193_ + static + p ()V m_145194_ + static + q ()V m_14939_ + static +arh net/minecraft/util/datafix/fixes/BlockStateStructureTemplateFix + (Lcom/mojang/datafixers/schemas/Schema;Z)V + 0 o p_15001_ + 1 o p_15002_ + a (Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; m_15003_ + static + 0 o p_15004_ + makeRule ()Lcom/mojang/datafixers/TypeRewriteRule; makeRule +ari net/minecraft/util/datafix/fixes/CatTypeFix + (Lcom/mojang/datafixers/schemas/Schema;Z)V + 0 o p_15007_ + 1 o p_15008_ + a (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; m_15011_ + 0 o p_15012_ + a (Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; m_7504_ + 0 o p_15010_ +arj net/minecraft/util/datafix/fixes/CauldronRenameFix + (Lcom/mojang/datafixers/schemas/Schema;Z)V + 0 o p_145196_ + 1 o p_145197_ + a (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; m_145200_ + static + 0 o p_145201_ + a (Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; m_145198_ + static + 0 o p_145199_ + makeRule ()Lcom/mojang/datafixers/TypeRewriteRule; makeRule +ark net/minecraft/util/datafix/fixes/CavesAndCliffsRenames + a f_184821_ + ()V + static + ()V +arl net/minecraft/util/datafix/fixes/ChunkBedBlockEntityInjecterFix + (Lcom/mojang/datafixers/schemas/Schema;Z)V + 0 o p_184825_ + 1 o p_184826_ + a (Lcom/mojang/datafixers/types/Type;Lcom/mojang/datafixers/types/templates/List$ListType;)Lcom/mojang/datafixers/TypeRewriteRule; m_184833_ + 0 o p_184834_ + 1 o p_184835_ + a ()Ljava/lang/IllegalStateException; m_184827_ + static + a (Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/types/Type;Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; m_274155_ + static + 0 o p_274909_ + 1 o p_274910_ + 2 o p_274911_ + 3 o p_274912_ + a (Ljava/util/List;Lcom/mojang/datafixers/types/Type;Lcom/mojang/serialization/Dynamic;Ljava/util/Map;)V m_274157_ + static + 0 o p_274919_ + 1 o p_274920_ + 2 o p_274921_ + 3 o p_274922_ + a (Lcom/mojang/serialization/DynamicOps;)Ljava/util/function/Function; m_184840_ + static + 0 o p_184841_ + a (Lcom/mojang/serialization/Dynamic;IIIIJ)Ljava/util/Map; m_274156_ + static + 0 o p_274913_ + 1 o p_274914_ + 2 o p_274915_ + 3 o p_274916_ + 4 o p_274917_ + 5 o p_274918_ + a (Lcom/mojang/datafixers/util/Pair;)Lcom/mojang/datafixers/util/Pair; m_184836_ + static + 0 o p_184837_ + makeRule ()Lcom/mojang/datafixers/TypeRewriteRule; makeRule +arm net/minecraft/util/datafix/fixes/ChunkBiomeFix + (Lcom/mojang/datafixers/schemas/Schema;Z)V + 0 o p_15014_ + 1 o p_15015_ + a (Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; m_15016_ + static + 0 o p_15017_ + 1 o p_15018_ + a (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; m_145205_ + static + 0 o p_145206_ + a (Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; m_145203_ + static + 0 o p_145204_ + makeRule ()Lcom/mojang/datafixers/TypeRewriteRule; makeRule +arn net/minecraft/util/datafix/fixes/ChunkDeleteIgnoredLightDataFix + (Lcom/mojang/datafixers/schemas/Schema;)V + 0 o p_216572_ + a (Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; m_216573_ + static + 0 o p_216574_ + 1 o p_216575_ + a (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; m_216578_ + static + 0 o p_216579_ + a (Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; m_216576_ + static + 0 o p_216577_ + makeRule ()Lcom/mojang/datafixers/TypeRewriteRule; makeRule +aro net/minecraft/util/datafix/fixes/ChunkDeleteLightFix + (Lcom/mojang/datafixers/schemas/Schema;)V + 0 o p_284990_ + a (Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; m_284407_ + static + 0 o p_285521_ + 1 o p_285335_ + a (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; m_284479_ + static + 0 o p_285474_ + a (Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; m_284526_ + static + 0 o p_285501_ + b (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; m_284405_ + static + 0 o p_284993_ + makeRule ()Lcom/mojang/datafixers/TypeRewriteRule; makeRule +arp net/minecraft/util/datafix/fixes/ChunkHeightAndBiomeFix + a f_184843_ + b f_196581_ + c f_184844_ + d f_184845_ + e f_184846_ + f f_184847_ + g f_184848_ + h f_196582_ + i f_184850_ + j f_184851_ + k f_184852_ + l f_184853_ + m f_184854_ + n f_184855_ + o f_184856_ + p f_184857_ + q f_184858_ + r f_184859_ + s f_184860_ + ()V + static + (Lcom/mojang/datafixers/schemas/Schema;)V + 0 o p_184863_ + a (Lcom/mojang/serialization/Dynamic;Lit/unimi/dsi/fastutil/ints/Int2IntFunction;)Lcom/mojang/serialization/Dynamic; m_184894_ + static + 0 o p_184895_ + 1 o p_184896_ + a (Lcom/mojang/datafixers/Typed;Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/types/Type;Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; m_184880_ + 0 o p_184881_ + 1 o p_184882_ + 2 o p_184883_ + 3 o p_184884_ + a (ZLjava/util/Set;Lorg/apache/commons/lang3/mutable/MutableBoolean;Ljava/lang/String;Lorg/apache/commons/lang3/mutable/MutableObject;Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; m_184941_ + 0 o p_184942_ + 1 o p_184943_ + 2 o p_184944_ + 3 o p_184945_ + 4 o p_184946_ + 5 o p_184947_ + a (Lcom/mojang/serialization/Dynamic;II)Lcom/mojang/serialization/Dynamic; m_184887_ + static + 0 o p_184888_ + 1 o p_184889_ + 2 o p_184890_ + a (Ljava/util/Map;Lcom/mojang/serialization/Dynamic;Lcom/mojang/serialization/Dynamic;Ljava/lang/Integer;)V m_196603_ + static + 0 o p_196604_ + 1 o p_196605_ + 2 o p_196606_ + 3 o p_196607_ + a ([II)I m_184948_ + static + 0 o p_184949_ + 1 o p_184950_ + a (Ljava/util/Map;Lcom/mojang/serialization/Dynamic;Lcom/mojang/serialization/Dynamic;)V m_196599_ + static + 0 o p_196600_ + 1 o p_196601_ + 2 o p_196602_ + a (Ljava/util/Set;Lcom/mojang/serialization/Dynamic;I[Lcom/mojang/serialization/Dynamic;Lit/unimi/dsi/fastutil/ints/IntSet;Lorg/apache/commons/lang3/mutable/MutableObject;Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; m_184920_ + static + 0 o p_184921_ + 1 o p_184922_ + 2 o p_184923_ + 3 o p_184924_ + 4 o p_184925_ + 5 o p_184926_ + 6 o p_184927_ + a (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; m_196590_ + static + 0 o p_196591_ + a (Ljava/util/Set;Lcom/mojang/serialization/Dynamic;I[Lcom/mojang/serialization/Dynamic;Lorg/apache/commons/lang3/mutable/MutableObject;Lcom/mojang/serialization/Dynamic;Lcom/mojang/datafixers/types/Type;Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; m_184928_ + static + 0 o p_184929_ + 1 o p_184930_ + 2 o p_184931_ + 3 o p_184932_ + 4 o p_184933_ + 5 o p_184934_ + 6 o p_184935_ + 7 o p_184936_ + a (Lcom/mojang/serialization/Dynamic;Ljava/lang/String;)Lcom/mojang/serialization/Dynamic; m_184900_ + static + 0 o p_184901_ + 1 o p_184902_ + a (Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/types/Type;Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/types/Type;Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; m_184874_ + 0 o p_184875_ + 1 o p_184876_ + 2 o p_184877_ + 3 o p_184878_ + 4 o p_184879_ + a ()Ljava/lang/IllegalStateException; m_184864_ + static + a (Lcom/mojang/serialization/Dynamic;Ljava/util/Set;)Lcom/mojang/serialization/Dynamic; m_184903_ + 0 o p_184904_ + 1 o p_184905_ + a (Lcom/mojang/serialization/Dynamic;ZZZLjava/util/function/Supplier;)Lcom/mojang/serialization/Dynamic; m_184911_ + static + 0 o p_184912_ + 1 o p_184913_ + 2 o p_184914_ + 3 o p_184915_ + 4 o p_184916_ + a (I)I m_184865_ + static + 0 o p_184866_ + a (Lcom/mojang/serialization/Dynamic;Ljava/lang/Integer;)Lcom/mojang/serialization/Dynamic; m_196596_ + static + 0 o p_196597_ + 1 o p_196598_ + a (J)J m_196588_ + static + 0 o p_196589_ + a ([III)I m_184951_ + static + 0 o p_184952_ + 1 o p_184953_ + 2 o p_184954_ + a (Lcom/mojang/serialization/Dynamic;ZILorg/apache/commons/lang3/mutable/MutableBoolean;)[Lcom/mojang/serialization/Dynamic; m_184906_ + static + 0 o p_184907_ + 1 o p_184908_ + 2 o p_184909_ + 3 o p_184910_ + a (Lcom/mojang/serialization/Dynamic;Lcom/mojang/serialization/Dynamic;Ljava/util/List;)Lcom/mojang/serialization/Dynamic; m_196592_ + static + 0 o p_196593_ + 1 o p_196594_ + 2 o p_196595_ + a (Lcom/mojang/serialization/Dynamic;Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; m_184891_ + static + 0 o p_184892_ + 1 o p_184893_ + a (Ljava/util/Set;Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; m_184917_ + static + 0 o p_184918_ + 1 o p_184919_ + a (IILcom/mojang/serialization/Dynamic;Lcom/mojang/datafixers/util/Pair;)Lcom/mojang/datafixers/util/Pair; m_196583_ + static + 0 o p_196584_ + 1 o p_196585_ + 2 o p_196586_ + 3 o p_196587_ + a (Ljava/util/Map;Ljava/util/Map;)V m_196608_ + static + 0 o p_196609_ + 1 o p_196610_ + a (Ljava/util/Set;Lcom/mojang/serialization/Dynamic;Lcom/mojang/serialization/Dynamic;)Ljava/util/Optional; m_184937_ + static + 0 o p_184938_ + 1 o p_184939_ + 2 o p_184940_ + b (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; m_184885_ + static + 0 o p_184886_ + b ()Ljava/lang/IllegalStateException; m_184955_ + static + b ([III)I m_184964_ + static + 0 o p_184965_ + 1 o p_184966_ + 2 o p_184967_ + b ([II)I m_184961_ + static + 0 o p_184962_ + 1 o p_184963_ + b (Lcom/mojang/serialization/Dynamic;Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; m_184958_ + static + 0 o p_184959_ + 1 o p_184960_ + c (Lcom/mojang/serialization/Dynamic;Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; m_184971_ + static + 0 o p_184972_ + 1 o p_184973_ + c ([II)I m_184974_ + static + 0 o p_184975_ + 1 o p_184976_ + c ()Lars$a; m_184968_ + static + c (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; m_184956_ + static + 0 o p_184957_ + d (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; m_184969_ + static + 0 o p_184970_ + e (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; m_196611_ + static + 0 o p_196612_ + f (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; m_196613_ + static + 0 o p_196614_ + g (Lcom/mojang/serialization/Dynamic;)Lars$a; m_184979_ + static + 0 o p_184980_ + h (Lcom/mojang/serialization/Dynamic;)Ljava/lang/String; m_184981_ + static + 0 o p_184982_ + makeRule ()Lcom/mojang/datafixers/TypeRewriteRule; makeRule +arq net/minecraft/util/datafix/fixes/ChunkLightRemoveFix + (Lcom/mojang/datafixers/schemas/Schema;Z)V + 0 o p_15025_ + 1 o p_15026_ + a (Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; m_15027_ + static + 0 o p_15028_ + 1 o p_15029_ + a (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; m_145209_ + static + 0 o p_145210_ + a (Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; m_145207_ + static + 0 o p_145208_ + makeRule ()Lcom/mojang/datafixers/TypeRewriteRule; makeRule +arr net/minecraft/util/datafix/fixes/ChunkPalettedStorageFix + A f_15053_ + B f_15054_ + C f_15055_ + D f_145211_ + a f_145212_ + b f_145213_ + c f_145214_ + d f_145215_ + e f_145216_ + f f_145217_ + g f_145218_ + h f_145219_ + i f_15035_ + j f_15036_ + k f_15037_ + l f_15038_ + m f_15039_ + n f_15040_ + o f_15041_ + p f_15042_ + q f_15043_ + r f_15044_ + s f_15045_ + t f_15046_ + u f_15047_ + v f_15048_ + w f_15049_ + x f_15050_ + y f_15051_ + z f_15052_ + ()V + static + (Lcom/mojang/datafixers/schemas/Schema;Z)V + 0 o p_15058_ + 1 o p_15059_ + a (Lit/unimi/dsi/fastutil/ints/Int2ObjectOpenHashMap;)V m_15069_ + static + 0 o p_15070_ + a (Ljava/util/HashMap;)V m_15071_ + static + 0 o p_15072_ + a (Lcom/mojang/serialization/Dynamic;Ljava/lang/String;)Ljava/lang/String; m_15066_ + static + 0 o p_15067_ + 1 o p_15068_ + a (Lany;Lcom/mojang/serialization/Dynamic;)I m_15061_ + static + 0 o p_15062_ + 1 o p_15063_ + a (Ljava/util/Map;ILjava/lang/String;Ljava/lang/String;)V m_15077_ + static + 0 o p_15078_ + 1 o p_15079_ + 2 o p_15080_ + 3 o p_15081_ + a (Ljava/util/Map;Ljava/lang/String;I)V m_15082_ + static + 0 o p_15083_ + 1 o p_15084_ + 2 o p_15085_ + a (Ljava/util/Map;ILjava/lang/String;)V m_15073_ + static + 0 o p_15074_ + 1 o p_15075_ + 2 o p_15076_ + a (Lcom/mojang/serialization/Dynamic;)Ljava/lang/String; m_15064_ + static + 0 o p_15065_ + a (ZZZZ)I m_15086_ + static + 0 o p_15087_ + 1 o p_15088_ + 2 o p_15089_ + 3 o p_15090_ + b (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; m_15092_ + 0 o p_15093_ + b (Ljava/util/Map;ILjava/lang/String;)V m_15096_ + static + 0 o p_15097_ + 1 o p_15098_ + 2 o p_15099_ + b (Ljava/util/HashMap;)V m_15094_ + static + 0 o p_15095_ + c (Ljava/util/HashMap;)V m_15101_ + static + 0 o p_15102_ + d (Ljava/util/HashMap;)V m_15104_ + static + 0 o p_15105_ + e (Ljava/util/HashMap;)V m_15107_ + static + 0 o p_15108_ + f (Ljava/util/HashMap;)V m_15110_ + static + 0 o p_15111_ + makeRule ()Lcom/mojang/datafixers/TypeRewriteRule; makeRule +arr$1 net/minecraft/util/datafix/fixes/ChunkPalettedStorageFix$1 + a f_15127_ + ()V + static +arr$a net/minecraft/util/datafix/fixes/ChunkPalettedStorageFix$DataLayer + a f_145220_ + b f_145221_ + c f_15129_ + ([B)V + 0 o p_15132_ + ()V + a (III)I m_15135_ + 0 o p_15136_ + 1 o p_15137_ + 2 o p_15138_ + a (I)Z m_15133_ + 0 o p_15134_ + b (I)I m_15139_ + 0 o p_15140_ +arr$b net/minecraft/util/datafix/fixes/ChunkPalettedStorageFix$Direction + a DOWN + b UP + c NORTH + d SOUTH + e WEST + f EAST + g f_15147_ + h f_15148_ + i $VALUES + ()V + static + (Ljava/lang/String;ILarr$b$b;Larr$b$a;)V + 0 o p_15152_ + 1 o p_15153_ + 2 o p_15154_ + 3 o p_15155_ + a ()Larr$b$b; m_15156_ + b ()Larr$b$a; m_15157_ + c ()[Larr$b; m_145222_ + static + valueOf (Ljava/lang/String;)Larr$b; valueOf + static + 0 o p_15159_ + values ()[Larr$b; values + static +arr$b$a net/minecraft/util/datafix/fixes/ChunkPalettedStorageFix$Direction$Axis + a X + b Y + c Z + d $VALUES + ()V + static + (Ljava/lang/String;I)V + 0 o p_15167_ + 1 o p_15168_ + a ()[Larr$b$a; m_145223_ + static + valueOf (Ljava/lang/String;)Larr$b$a; valueOf + static + 0 o p_15170_ + values ()[Larr$b$a; values + static +arr$b$b net/minecraft/util/datafix/fixes/ChunkPalettedStorageFix$Direction$AxisDirection + a POSITIVE + b NEGATIVE + c f_15174_ + d $VALUES + ()V + static + (Ljava/lang/String;II)V + 0 o p_15178_ + 1 o p_15179_ + 2 o p_15180_ + a ()I m_15181_ + b ()[Larr$b$b; m_145224_ + static + valueOf (Ljava/lang/String;)Larr$b$b; valueOf + static + 0 o p_15183_ + values ()[Larr$b$b; values + static +arr$c net/minecraft/util/datafix/fixes/ChunkPalettedStorageFix$Section + a f_15185_ + b f_15186_ + c f_15187_ + d f_15188_ + e f_15189_ + f f_15190_ + g f_15191_ + h f_15192_ + i f_15193_ + (Lcom/mojang/serialization/Dynamic;)V + 0 o p_15195_ + a (Ljava/nio/ByteBuffer;)Larr$a; m_15207_ + static + 0 o p_15208_ + a ()Lcom/mojang/serialization/Dynamic; m_15196_ + a (II)V m_15199_ + 0 o p_15200_ + 1 o p_15201_ + a (I)Lcom/mojang/serialization/Dynamic; m_15197_ + 0 o p_15198_ + a (ILcom/mojang/serialization/Dynamic;)V m_15202_ + 0 o p_15203_ + 1 o p_15204_ + b (Ljava/nio/ByteBuffer;)Larr$a; m_15213_ + static + 0 o p_15214_ + b (I)I m_15209_ + 0 o p_15210_ +arr$d net/minecraft/util/datafix/fixes/ChunkPalettedStorageFix$UpgradeChunk + a f_15215_ + b f_15216_ + c f_15217_ + d f_15218_ + e f_15219_ + f f_15220_ + (Lcom/mojang/serialization/Dynamic;)V + 0 o p_15222_ + a (ILarr$b;)I m_15226_ + static + 0 o p_15227_ + 1 o p_15228_ + a (Lcom/mojang/serialization/Dynamic;)V m_145225_ + 0 o p_145226_ + a ()Lcom/mojang/serialization/Dynamic; m_15223_ + a (Ljava/util/stream/Stream;)V m_15234_ + 0 o p_15235_ + a (I)Lcom/mojang/serialization/Dynamic; m_15224_ + 0 o p_15225_ + a (ILcom/mojang/serialization/Dynamic;)V m_15229_ + 0 o p_15230_ + 1 o p_15231_ + b (Ljava/util/stream/Stream;)V m_15240_ + 0 o p_15241_ + b (Lcom/mojang/serialization/Dynamic;)V m_145227_ + 0 o p_145228_ + b (I)Lcom/mojang/serialization/Dynamic; m_15236_ + 0 o p_15237_ + c (I)Lcom/mojang/serialization/Dynamic; m_15242_ + 0 o p_15243_ + d (I)Larr$c; m_15244_ + 0 o p_15245_ +ars net/minecraft/util/datafix/fixes/ChunkProtoTickListFix + a f_184984_ + b f_184985_ + ()V + static + (Lcom/mojang/datafixers/schemas/Schema;)V + 0 o p_184988_ + a (Lcom/mojang/serialization/Dynamic;Ljava/util/function/Supplier;IIIILjava/util/function/Function;)Lcom/mojang/serialization/Dynamic; m_185044_ + 0 o p_185045_ + 1 o p_185046_ + 2 o p_185047_ + 3 o p_185048_ + 4 o p_185049_ + 5 o p_185050_ + 6 o p_185051_ + a (Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/OpticFinder;Lorg/apache/commons/lang3/mutable/MutableInt;Lcom/mojang/datafixers/OpticFinder;Lit/unimi/dsi/fastutil/ints/Int2ObjectMap;Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/Typed;)V m_185011_ + static + 0 o p_185012_ + 1 o p_185013_ + 2 o p_185014_ + 3 o p_185015_ + 4 o p_185016_ + 5 o p_185017_ + 6 o p_185018_ + a (Lcom/mojang/datafixers/Typed;)Ljava/util/List; m_185026_ + static + 0 o p_185027_ + a (Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; m_185003_ + 0 o p_185004_ + 1 o p_185005_ + 2 o p_185006_ + 3 o p_185007_ + 4 o p_185008_ + 5 o p_185009_ + 6 o p_185010_ + a (Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; m_184994_ + 0 o p_184995_ + 1 o p_184996_ + 2 o p_184997_ + 3 o p_184998_ + 4 o p_184999_ + 5 o p_185000_ + 6 o p_185001_ + 7 o p_185002_ + a (Lcom/mojang/datafixers/Typed;Lcom/mojang/datafixers/OpticFinder;)Lars$a; m_185028_ + static + 0 o p_185029_ + 1 o p_185030_ + a (Lcom/mojang/serialization/Dynamic;Ljava/util/function/Supplier;IIILjava/util/function/Function;I)Lcom/mojang/serialization/Dynamic; m_185052_ + 0 o p_185053_ + 1 o p_185054_ + 2 o p_185055_ + 3 o p_185056_ + 4 o p_185057_ + 5 o p_185058_ + 6 o p_185059_ + a (Lcom/mojang/serialization/Dynamic;Lit/unimi/dsi/fastutil/ints/Int2ObjectMap;BIILjava/lang/String;Ljava/util/function/Function;)Lcom/mojang/serialization/Dynamic; m_185036_ + 0 o p_185037_ + 1 o p_185038_ + 2 o p_185039_ + 3 o p_185040_ + 4 o p_185041_ + 5 o p_185042_ + 6 o p_185043_ + a (Lcom/mojang/serialization/Dynamic;Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; m_185033_ + static + 0 o p_185034_ + 1 o p_185035_ + a (Lit/unimi/dsi/fastutil/ints/Int2ObjectMap;ILcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/Typed;)V m_185060_ + static + 0 o p_185061_ + 1 o p_185062_ + 2 o p_185063_ + 3 o p_185064_ + a (Lcom/mojang/serialization/Dynamic;)Ljava/lang/String; m_185031_ + static + 0 o p_185032_ + a (Lcom/mojang/datafixers/OpticFinder;Lorg/apache/commons/lang3/mutable/MutableInt;Lcom/mojang/datafixers/OpticFinder;Lit/unimi/dsi/fastutil/ints/Int2ObjectMap;Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/Typed;)V m_185019_ + static + 0 o p_185020_ + 1 o p_185021_ + 2 o p_185022_ + 3 o p_185023_ + 4 o p_185024_ + 5 o p_185025_ + a (I)Z m_184992_ + static + 0 o p_184993_ + a (BLcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; m_184989_ + static + 0 o p_184990_ + 1 o p_184991_ + b (Lcom/mojang/serialization/Dynamic;)Ljava/lang/String; m_185068_ + static + 0 o p_185069_ + b (BLcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; m_185065_ + static + 0 o p_185066_ + 1 o p_185067_ + b (Lcom/mojang/serialization/Dynamic;Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; m_185070_ + static + 0 o p_185071_ + 1 o p_185072_ + c (Lcom/mojang/serialization/Dynamic;)I m_185073_ + static + 0 o p_185074_ + d (Lcom/mojang/serialization/Dynamic;)Ljava/util/List; m_185075_ + static + 0 o p_185076_ + e (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; m_185077_ + static + 0 o p_185078_ + makeRule ()Lcom/mojang/datafixers/TypeRewriteRule; makeRule +ars$a net/minecraft/util/datafix/fixes/ChunkProtoTickListFix$PoorMansPalettedContainer + a f_185080_ + b f_185081_ + c f_185082_ + d f_185083_ + e f_185084_ + f f_185085_ + (Ljava/util/List;[J)V + 0 o p_185087_ + 1 o p_185088_ + a ()Ljava/util/List; m_185089_ + a (III)Lcom/mojang/serialization/Dynamic; m_185090_ + 0 o p_185091_ + 1 o p_185092_ + 2 o p_185093_ + b ()[J m_185094_ + b (III)I m_185095_ + 0 o p_185096_ + 1 o p_185097_ + 2 o p_185098_ +art net/minecraft/util/datafix/fixes/ChunkRenamesFix + (Lcom/mojang/datafixers/schemas/Schema;)V + 0 o p_185100_ + a (Lcom/mojang/datafixers/Typed;Ljava/lang/String;Ljava/lang/String;)Lcom/mojang/datafixers/Typed; m_185111_ + static + 0 o p_185112_ + 1 o p_185113_ + 2 o p_185114_ + a (Lcom/mojang/datafixers/Typed;Ljava/lang/String;Ljava/lang/String;Lcom/mojang/datafixers/types/Type;)Lcom/mojang/datafixers/Typed; m_185115_ + static + 0 o p_185116_ + 1 o p_185117_ + 2 o p_185118_ + 3 o p_185119_ + a (Lcom/mojang/datafixers/Typed;Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; m_185108_ + static + 0 o p_185109_ + 1 o p_185110_ + a (Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/types/Type;Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; m_199423_ + static + 0 o p_199424_ + 1 o p_199425_ + 2 o p_199426_ + 3 o p_199427_ + a (Ljava/lang/String;Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; m_199437_ + static + 0 o p_199438_ + 1 o p_199439_ + a (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; m_199428_ + static + 0 o p_199429_ + a (Lcom/mojang/serialization/DynamicOps;Ljava/lang/Object;)Lcom/mojang/serialization/Dynamic; m_199434_ + static + 0 o p_199435_ + 1 o p_199436_ + a (Lcom/mojang/serialization/DynamicOps;Lcom/mojang/serialization/Dynamic;Lcom/mojang/serialization/MapLike;)Lcom/mojang/serialization/DataResult; m_199430_ + static + 0 o p_199431_ + 1 o p_199432_ + 2 o p_199433_ + a (Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; m_185106_ + static + 0 o p_185107_ + b (Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; m_185127_ + static + 0 o p_185128_ + makeRule ()Lcom/mojang/datafixers/TypeRewriteRule; makeRule +aru net/minecraft/util/datafix/fixes/ChunkStatusFix + (Lcom/mojang/datafixers/schemas/Schema;Z)V + 0 o p_15247_ + 1 o p_15248_ + a (Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; m_15249_ + static + 0 o p_15250_ + 1 o p_15251_ + a (Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; m_145229_ + static + 0 o p_145230_ + makeRule ()Lcom/mojang/datafixers/TypeRewriteRule; makeRule +arv net/minecraft/util/datafix/fixes/ChunkStatusFix2 + a f_15255_ + ()V + static + (Lcom/mojang/datafixers/schemas/Schema;Z)V + 0 o p_15258_ + 1 o p_15259_ + a (Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; m_15260_ + static + 0 o p_15261_ + 1 o p_15262_ + a (Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; m_145231_ + static + 0 o p_145232_ + makeRule ()Lcom/mojang/datafixers/TypeRewriteRule; makeRule +arw net/minecraft/util/datafix/fixes/ChunkStructuresTemplateRenameFix + a f_15266_ + ()V + static + (Lcom/mojang/datafixers/schemas/Schema;Z)V + 0 o p_15269_ + 1 o p_15270_ + a (Lcom/mojang/serialization/Dynamic;Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; m_15280_ + 0 o p_15281_ + 1 o p_15282_ + a (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; m_274348_ + 0 o p_275363_ + a (Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; m_274160_ + 0 o p_274927_ + b (Lcom/mojang/serialization/Dynamic;Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; m_274159_ + 0 o p_274925_ + 1 o p_274926_ + c (Lcom/mojang/serialization/Dynamic;Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; m_274158_ + 0 o p_274923_ + 1 o p_274924_ + makeRule ()Lcom/mojang/datafixers/TypeRewriteRule; makeRule +arx net/minecraft/util/datafix/fixes/ChunkToProtochunkFix + a f_145239_ + (Lcom/mojang/datafixers/schemas/Schema;Z)V + 0 o p_15285_ + 1 o p_15286_ + a (III)S m_15290_ + static + 0 o p_15291_ + 1 o p_15292_ + 2 o p_15293_ + a (Ljava/util/List;Lcom/mojang/serialization/Dynamic;)V m_199872_ + static + 0 o p_199873_ + 1 o p_199874_ + a (I)Lit/unimi/dsi/fastutil/shorts/ShortArrayList; m_199849_ + static + 0 o p_199850_ + a (Lcom/mojang/serialization/Dynamic;Ljava/util/stream/Stream;)Lcom/mojang/serialization/Dynamic; m_199869_ + static + 0 o p_199870_ + 1 o p_199871_ + a (Lcom/mojang/serialization/Dynamic;Lit/unimi/dsi/fastutil/shorts/ShortList;)Lcom/mojang/serialization/Dynamic; m_199863_ + static + 0 o p_199864_ + 1 o p_199865_ + a (Lcom/mojang/serialization/Dynamic;Ljava/nio/ByteBuffer;)Lcom/mojang/serialization/Dynamic; m_199866_ + static + 0 o p_199867_ + 1 o p_199868_ + a (Lcom/mojang/serialization/Dynamic;Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; m_199860_ + static + 0 o p_199861_ + 1 o p_199862_ + a (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; m_199855_ + static + 0 o p_199856_ + a (Lcom/mojang/serialization/Dynamic;I)Lcom/mojang/serialization/Dynamic; m_199857_ + static + 0 o p_199858_ + 1 o p_199859_ + b (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; m_199879_ + static + 0 o p_199880_ + c (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; m_199881_ + static + 0 o p_199882_ + d (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; m_199885_ + static + 0 o p_199886_ + makeRule ()Lcom/mojang/datafixers/TypeRewriteRule; makeRule +ary net/minecraft/util/datafix/fixes/ColorlessShulkerEntityFix + (Lcom/mojang/datafixers/schemas/Schema;Z)V + 0 o p_15315_ + 1 o p_15316_ + a (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; m_15319_ + static + 0 o p_15320_ + a (Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; m_7504_ + 0 o p_15318_ +arz net/minecraft/util/datafix/fixes/CriteriaRenameFix + a f_216581_ + b f_216582_ + c f_216583_ + (Lcom/mojang/datafixers/schemas/Schema;Ljava/lang/String;Ljava/lang/String;Ljava/util/function/UnaryOperator;)V + 0 o p_216585_ + 1 o p_216586_ + 2 o p_216587_ + 3 o p_216588_ + a (Lcom/mojang/serialization/Dynamic;Ljava/lang/String;)Lcom/mojang/serialization/Dynamic; m_216595_ + 0 o p_216596_ + 1 o p_216597_ + a (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; m_216593_ + 0 o p_216594_ + a (Lcom/mojang/datafixers/util/Pair;)Lcom/mojang/datafixers/util/Pair; m_216591_ + 0 o p_216592_ + a (Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; m_216589_ + 0 o p_216590_ + b (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; m_216598_ + 0 o p_216599_ + c (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; m_216600_ + 0 o p_216601_ + d (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; m_216602_ + 0 o p_216603_ + makeRule ()Lcom/mojang/datafixers/TypeRewriteRule; makeRule +as net/minecraft/advancements/critereon/BeeNestDestroyedTrigger + a f_17473_ + ()V + static + ()V + a (Lcom/google/gson/JsonObject;)Lcpn; m_17487_ + static + 0 o p_17488_ + a (Laig;Ldcb;Lcfz;I)V m_146651_ + 0 o p_146652_ + 1 o p_146653_ + 2 o p_146654_ + 3 o p_146655_ + a (Lacq;)Lcom/google/gson/JsonSyntaxException; m_17493_ + static + 0 o p_17494_ + a (Lcom/google/gson/JsonObject;Lba;Lbe;)Las$a; m_7214_ + 0 o p_286717_ + 1 o p_286621_ + 2 o p_286840_ + a ()Lacq; m_7295_ + a (Ldcb;Lcfz;ILas$a;)Z m_146656_ + static + 0 o p_146657_ + 1 o p_146658_ + 2 o p_146659_ + 3 o p_146660_ + b (Lcom/google/gson/JsonObject;Lba;Lbe;)Lar; m_7214_ + 0 o p_286332_ + 1 o p_286734_ + 2 o p_286339_ +as$a net/minecraft/advancements/critereon/BeeNestDestroyedTrigger$TriggerInstance + a f_17500_ + b f_17501_ + c f_17502_ + (Lba;Lcpn;Lbz;Lcj$d;)V + 0 o p_286609_ + 1 o p_286264_ + 2 o p_286572_ + 3 o p_286574_ + a (Lct;)Lcom/google/gson/JsonObject; m_7683_ + 0 o p_17517_ + a (Lcpn;Lbz$a;Lcj$d;)Las$a; m_17512_ + static + 0 o p_17513_ + 1 o p_17514_ + 2 o p_17515_ + a (Ldcb;Lcfz;I)Z m_146661_ + 0 o p_146662_ + 1 o p_146663_ + 2 o p_146664_ +asa net/minecraft/util/datafix/fixes/DecoratedPotFieldRenameFix + a f_279527_ + (Lcom/mojang/datafixers/schemas/Schema;)V + 0 o p_281527_ + makeRule ()Lcom/mojang/datafixers/TypeRewriteRule; makeRule +asb net/minecraft/util/datafix/fixes/DyeItemRenameFix + a f_15321_ + ()V + static + ()V +asc net/minecraft/util/datafix/fixes/EffectDurationFix + a f_267441_ + ()V + static + (Lcom/mojang/datafixers/schemas/Schema;)V + 0 o p_267976_ + a (Lcom/mojang/serialization/Dynamic;Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; m_267672_ + static + 0 o p_268343_ + 1 o p_268051_ + a (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; m_267829_ + 0 o p_267989_ + a (Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; m_267642_ + 0 o p_268317_ + 1 o p_268037_ + 2 o p_268235_ + a (Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; m_267624_ + 0 o p_268326_ + b (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; m_267663_ + 0 o p_268201_ + b (Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; m_267655_ + 0 o p_268118_ + c (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; m_267632_ + 0 o p_268005_ + makeRule ()Lcom/mojang/datafixers/TypeRewriteRule; makeRule +asd net/minecraft/util/datafix/fixes/EntityArmorStandSilentFix + (Lcom/mojang/datafixers/schemas/Schema;Z)V + 0 o p_15324_ + 1 o p_15325_ + a (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; m_15328_ + 0 o p_15329_ + a (Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; m_7504_ + 0 o p_15327_ +ase net/minecraft/util/datafix/fixes/EntityBlockStateFix + a f_15330_ + ()V + static + (Lcom/mojang/datafixers/schemas/Schema;Z)V + 0 o p_15333_ + 1 o p_15334_ + a (Lcom/mojang/datafixers/Typed;Ljava/lang/String;Ljava/util/function/Function;)Lcom/mojang/datafixers/Typed; m_15342_ + 0 o p_15343_ + 1 o p_15344_ + 2 o p_15345_ + a (Ljava/util/HashMap;)V m_15367_ + static + 0 o p_15368_ + a (Lcom/mojang/serialization/Dynamic;Lcom/mojang/datafixers/util/Either;)Lcom/mojang/datafixers/util/Either; m_15353_ + static + 0 o p_15354_ + 1 o p_15355_ + a (Lcom/mojang/serialization/Dynamic;)Ljava/lang/Integer; m_145263_ + static + 0 o p_145264_ + a (Ljava/lang/String;)I m_15365_ + static + 0 o p_15366_ + a (Lcom/mojang/datafixers/Typed;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;)Lcom/mojang/datafixers/Typed; m_15337_ + 0 o p_15338_ + 1 o p_15339_ + 2 o p_15340_ + 3 o p_15341_ + a (Ljava/lang/Integer;)Ljava/lang/Integer; m_145268_ + static + 0 o p_145269_ + a (Ljava/util/function/Function;Ljava/util/function/Function;Ljava/util/function/Function;Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; m_15369_ + 0 o p_15370_ + 1 o p_15371_ + 2 o p_15372_ + 3 o p_15373_ + a (Lcom/mojang/datafixers/types/Type;Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; m_15346_ + static + 0 o p_15347_ + 1 o p_15348_ + a (Lcom/mojang/serialization/Dynamic;Ljava/lang/String;Lcom/mojang/datafixers/util/Pair;)Lcom/mojang/datafixers/util/Pair; m_15359_ + static + 0 o p_15360_ + 1 o p_15361_ + 2 o p_15362_ + a (Lcom/mojang/datafixers/util/Pair;)Ljava/lang/Integer; m_145261_ + static + 0 o p_145262_ + a (Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; m_15335_ + 0 o p_15336_ + a (Lcom/mojang/serialization/Dynamic;Lcom/mojang/datafixers/util/Unit;)Ljava/lang/Integer; m_145265_ + static + 0 o p_145266_ + 1 o p_145267_ + b (Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; m_145270_ + 0 o p_145271_ + b (Ljava/lang/Integer;)Ljava/lang/Integer; m_145272_ + static + 0 o p_145273_ + c (Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; m_15378_ + 0 o p_15379_ + d (Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; m_15380_ + 0 o p_15381_ + makeRule ()Lcom/mojang/datafixers/TypeRewriteRule; makeRule +asf net/minecraft/util/datafix/fixes/EntityBrushableBlockFieldsRenameFix + (Lcom/mojang/datafixers/schemas/Schema;)V + 0 o p_278044_ + a (Lcom/mojang/serialization/Dynamic;Ljava/lang/String;Ljava/lang/String;)Lcom/mojang/serialization/Dynamic; m_276801_ + 0 o p_277783_ + 1 o p_277566_ + 2 o p_277732_ + a (Lcom/mojang/serialization/Dynamic;Ljava/lang/String;Ljava/lang/String;Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; m_276826_ + static + 0 o p_278041_ + 1 o p_277569_ + 2 o p_277369_ + 3 o p_277534_ + a (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; m_276988_ + 0 o p_277830_ + a (Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; m_7504_ + 0 o p_277791_ +asg net/minecraft/util/datafix/fixes/EntityCatSplitFix + (Lcom/mojang/datafixers/schemas/Schema;Z)V + 0 o p_15384_ + 1 o p_15385_ + a (Ljava/lang/String;Lcom/mojang/serialization/Dynamic;)Lcom/mojang/datafixers/util/Pair; m_6942_ + 0 o p_15387_ + 1 o p_15388_ +ash net/minecraft/util/datafix/fixes/EntityCodSalmonFix + a f_15389_ + b f_15390_ + ()V + static + (Lcom/mojang/datafixers/schemas/Schema;Z)V + 0 o p_15393_ + 1 o p_15394_ + a (Ljava/lang/String;)Ljava/lang/String; m_7476_ + 0 o p_15396_ +asi net/minecraft/util/datafix/fixes/EntityCustomNameToComponentFix + (Lcom/mojang/datafixers/schemas/Schema;Z)V + 0 o p_15398_ + 1 o p_15399_ + a (Lcom/mojang/datafixers/Typed;Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; m_145274_ + static + 0 o p_145275_ + 1 o p_145276_ + 2 o p_145277_ + a (Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; m_15400_ + static + 0 o p_15401_ + 1 o p_15402_ + a (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; m_15407_ + static + 0 o p_15408_ + makeRule ()Lcom/mojang/datafixers/TypeRewriteRule; makeRule +asj net/minecraft/util/datafix/fixes/EntityElderGuardianSplitFix + (Lcom/mojang/datafixers/schemas/Schema;Z)V + 0 o p_15411_ + 1 o p_15412_ + a (Ljava/lang/String;Lcom/mojang/serialization/Dynamic;)Lcom/mojang/datafixers/util/Pair; m_6942_ + 0 o p_15414_ + 1 o p_15415_ +ask net/minecraft/util/datafix/fixes/EntityEquipmentToArmorAndHandFix + (Lcom/mojang/datafixers/schemas/Schema;Z)V + 0 o p_15417_ + 1 o p_15418_ + a (Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/types/Type;Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/types/Type;Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; m_15420_ + static + 0 o p_15421_ + 1 o p_15422_ + 2 o p_15423_ + 3 o p_15424_ + 4 o p_15425_ + a ()Ljava/lang/IllegalStateException; m_145278_ + static + a (Lcom/mojang/datafixers/types/Type;)Lcom/mojang/datafixers/TypeRewriteRule; m_15426_ + 0 o p_15427_ + a (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; m_145279_ + static + 0 o p_145280_ + makeRule ()Lcom/mojang/datafixers/TypeRewriteRule; makeRule +asl net/minecraft/util/datafix/fixes/EntityGoatMissingStateFix + (Lcom/mojang/datafixers/schemas/Schema;)V + 0 o p_238339_ + a (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; m_238369_ + static + 0 o p_238370_ + a (Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; m_7504_ + 0 o p_238295_ +asm net/minecraft/util/datafix/fixes/EntityHealthFix + a f_15431_ + ()V + static + (Lcom/mojang/datafixers/schemas/Schema;Z)V + 0 o p_15434_ + 1 o p_15435_ + a (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; m_15438_ + 0 o p_15439_ + a (Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; m_15436_ + 0 o p_15437_ + makeRule ()Lcom/mojang/datafixers/TypeRewriteRule; makeRule +asn net/minecraft/util/datafix/fixes/EntityHorseSaddleFix + (Lcom/mojang/datafixers/schemas/Schema;Z)V + 0 o p_15442_ + 1 o p_15443_ + a (Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; m_7504_ + 0 o p_15445_ +aso net/minecraft/util/datafix/fixes/EntityHorseSplitFix + (Lcom/mojang/datafixers/schemas/Schema;Z)V + 0 o p_15447_ + 1 o p_15448_ + a ()Ljava/lang/IllegalStateException; m_15449_ + static + a (Ljava/lang/String;Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/util/Pair; m_6911_ + 0 o p_15451_ + 1 o p_15452_ +asp net/minecraft/util/datafix/fixes/EntityIdFix + a f_15453_ + ()V + static + (Lcom/mojang/datafixers/schemas/Schema;Z)V + 0 o p_15456_ + 1 o p_15457_ + a (Lcom/mojang/serialization/DynamicOps;)Ljava/util/function/Function; m_15460_ + static + 0 o p_15461_ + a (Ljava/util/HashMap;)V m_15464_ + static + 0 o p_15465_ + a (Lcom/mojang/datafixers/util/Pair;)Lcom/mojang/datafixers/util/Pair; m_145281_ + static + 0 o p_145282_ + a (Ljava/lang/String;)Ljava/lang/String; m_145283_ + static + 0 o p_145284_ + makeRule ()Lcom/mojang/datafixers/TypeRewriteRule; makeRule +asq net/minecraft/util/datafix/fixes/EntityItemFrameDirectionFix + (Lcom/mojang/datafixers/schemas/Schema;Z)V + 0 o p_15468_ + 1 o p_15469_ + a (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; m_15474_ + 0 o p_15475_ + a (Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; m_7504_ + 0 o p_15473_ + a (B)B m_15470_ + static + 0 o p_15471_ +asr net/minecraft/util/datafix/fixes/EntityMinecartIdentifiersFix + a f_15476_ + ()V + static + (Lcom/mojang/datafixers/schemas/Schema;Z)V + 0 o p_15479_ + 1 o p_15480_ + a ()Ljava/lang/IllegalStateException; m_145285_ + static + a (Lcom/mojang/datafixers/types/templates/TaggedChoice$TaggedChoiceType;Lcom/mojang/serialization/DynamicOps;Lcom/mojang/datafixers/types/templates/TaggedChoice$TaggedChoiceType;Lcom/mojang/datafixers/util/Pair;)Lcom/mojang/datafixers/util/Pair; m_145286_ + static + 0 o p_145287_ + 1 o p_145288_ + 2 o p_145289_ + 3 o p_145290_ + a (Lcom/mojang/datafixers/types/templates/TaggedChoice$TaggedChoiceType;Ljava/lang/String;Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/DataResult; m_145291_ + static + 0 o p_145292_ + 1 o p_145293_ + 2 o p_145294_ + a (Lcom/mojang/datafixers/types/templates/TaggedChoice$TaggedChoiceType;Lcom/mojang/datafixers/types/templates/TaggedChoice$TaggedChoiceType;Lcom/mojang/serialization/DynamicOps;)Ljava/util/function/Function; m_15482_ + static + 0 o p_15483_ + 1 o p_15484_ + 2 o p_15485_ + makeRule ()Lcom/mojang/datafixers/TypeRewriteRule; makeRule +ass net/minecraft/util/datafix/fixes/EntityPaintingFieldsRenameFix + (Lcom/mojang/datafixers/schemas/Schema;)V + 0 o p_216606_ + a (Lcom/mojang/serialization/Dynamic;Ljava/lang/String;Ljava/lang/String;)Lcom/mojang/serialization/Dynamic; m_216611_ + 0 o p_216612_ + 1 o p_216613_ + 2 o p_216614_ + a (Lcom/mojang/serialization/Dynamic;Ljava/lang/String;Ljava/lang/String;Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; m_216615_ + static + 0 o p_216616_ + 1 o p_216617_ + 2 o p_216618_ + 3 o p_216619_ + a (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; m_216609_ + 0 o p_216610_ + a (Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; m_7504_ + 0 o p_216608_ +ast net/minecraft/util/datafix/fixes/EntityPaintingItemFrameDirectionFix + a f_15496_ + ()V + static + (Lcom/mojang/datafixers/schemas/Schema;Z)V + 0 o p_15499_ + 1 o p_15500_ + a (Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/types/Type;Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; m_15501_ + 0 o p_15502_ + 1 o p_15503_ + 2 o p_15504_ + a (Lcom/mojang/serialization/Dynamic;ZZ)Lcom/mojang/serialization/Dynamic; m_15509_ + 0 o p_15510_ + 1 o p_15511_ + 2 o p_15512_ + a (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; m_145297_ + 0 o p_145298_ + a (Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; m_145295_ + 0 o p_145296_ + b (Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/types/Type;Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; m_15513_ + 0 o p_15514_ + 1 o p_15515_ + 2 o p_15516_ + b (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; m_145301_ + 0 o p_145302_ + b (Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; m_145299_ + 0 o p_145300_ + makeRule ()Lcom/mojang/datafixers/TypeRewriteRule; makeRule +asu net/minecraft/util/datafix/fixes/EntityPaintingMotiveFix + a f_15522_ + ()V + static + (Lcom/mojang/datafixers/schemas/Schema;Z)V + 0 o p_15525_ + 1 o p_15526_ + a (Ljava/util/HashMap;)V m_15531_ + static + 0 o p_15532_ + a (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; m_15529_ + 0 o p_15530_ + a (Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; m_7504_ + 0 o p_15528_ +asv net/minecraft/util/datafix/fixes/EntityProjectileOwnerFix + (Lcom/mojang/datafixers/schemas/Schema;)V + 0 o p_15558_ + a (JJ)[I m_15559_ + static + 0 o p_15560_ + 1 o p_15561_ + a (Lcom/mojang/serialization/Dynamic;JJ)Lcom/mojang/serialization/Dynamic; m_15570_ + 0 o p_15571_ + 1 o p_15572_ + 2 o p_15573_ + a (Lcom/mojang/datafixers/Typed;Ljava/lang/String;Ljava/util/function/Function;)Lcom/mojang/datafixers/Typed; m_15564_ + 0 o p_15565_ + 1 o p_15566_ + 2 o p_15567_ + a (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; m_15568_ + 0 o p_15569_ + a (Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; m_15562_ + 0 o p_15563_ + a (Ljava/util/function/Function;Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; m_15574_ + static + 0 o p_15575_ + 1 o p_15576_ + b (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; m_15577_ + 0 o p_15578_ + c (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; m_15579_ + 0 o p_15580_ + d (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; m_15581_ + 0 o p_15582_ + makeRule ()Lcom/mojang/datafixers/TypeRewriteRule; makeRule +asw net/minecraft/util/datafix/fixes/EntityPufferfishRenameFix + a f_15584_ + ()V + static + (Lcom/mojang/datafixers/schemas/Schema;Z)V + 0 o p_15587_ + 1 o p_15588_ + a (Ljava/lang/String;)Ljava/lang/String; m_7476_ + 0 o p_15590_ +asx net/minecraft/util/datafix/fixes/EntityRavagerRenameFix + a f_15591_ + ()V + static + (Lcom/mojang/datafixers/schemas/Schema;Z)V + 0 o p_15594_ + 1 o p_15595_ + a (Ljava/lang/String;)Ljava/lang/String; m_7476_ + 0 o p_15597_ +asy net/minecraft/util/datafix/fixes/EntityRedundantChanceTagsFix + a f_15598_ + ()V + static + (Lcom/mojang/datafixers/schemas/Schema;Z)V + 0 o p_15601_ + 1 o p_15602_ + a (Ljava/lang/Float;)Z m_145305_ + static + 0 o p_145306_ + a (ILjava/util/List;)Ljava/lang/Boolean; m_15603_ + static + 0 o p_15604_ + 1 o p_15605_ + a (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; m_145303_ + static + 0 o p_145304_ + a (Lcom/mojang/serialization/OptionalDynamic;I)Z m_15610_ + static + 0 o p_15611_ + 1 o p_15612_ + a (Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; m_15606_ + static + 0 o p_15607_ + makeRule ()Lcom/mojang/datafixers/TypeRewriteRule; makeRule +asz net/minecraft/util/datafix/fixes/EntityRenameFix + a f_15616_ + (Ljava/lang/String;Lcom/mojang/datafixers/schemas/Schema;Z)V + 0 o p_15618_ + 1 o p_15619_ + 2 o p_15620_ + a (Lcom/mojang/datafixers/types/templates/TaggedChoice$TaggedChoiceType;Lcom/mojang/serialization/DynamicOps;Lcom/mojang/datafixers/types/templates/TaggedChoice$TaggedChoiceType;Lcom/mojang/datafixers/util/Pair;)Lcom/mojang/datafixers/util/Pair; m_241758_ + 0 o p_242137_ + 1 o p_242138_ + 2 o p_242139_ + 3 o p_145311_ + a (Lcom/mojang/datafixers/types/templates/TaggedChoice$TaggedChoiceType;Lcom/mojang/datafixers/types/templates/TaggedChoice$TaggedChoiceType;Lcom/mojang/serialization/DynamicOps;)Ljava/util/function/Function; m_15621_ + 0 o p_15622_ + 1 o p_15623_ + 2 o p_15624_ + a (Ljava/lang/String;Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/util/Pair; m_6911_ + 0 o p_15634_ + 1 o p_15635_ + a (Ljava/lang/Object;Lcom/mojang/serialization/DynamicOps;Lcom/mojang/datafixers/types/Type;)Lcom/mojang/datafixers/Typed; m_15630_ + 0 o p_15631_ + 1 o p_15632_ + 2 o p_15633_ + makeRule ()Lcom/mojang/datafixers/TypeRewriteRule; makeRule +at net/minecraft/advancements/critereon/BlockPredicate + a f_17902_ + b f_17903_ + c f_146710_ + d f_17905_ + e f_17906_ + ()V + static + (Lanl;Ljava/util/Set;Lcz;Lcl;)V + 0 o p_204023_ + 1 o p_204024_ + 2 o p_204025_ + 3 o p_204026_ + a (Lacq;)Lcom/google/gson/JsonSyntaxException; m_146719_ + static + 0 o p_146720_ + a (Lcom/google/gson/JsonElement;)Lat; m_17917_ + static + 0 o p_17918_ + a ()Lcom/google/gson/JsonElement; m_17913_ + a (Laif;Lgu;)Z m_17914_ + 0 o p_17915_ + 1 o p_17916_ +at$a net/minecraft/advancements/critereon/BlockPredicate$Builder + a f_17920_ + b f_146721_ + c f_17921_ + d f_17922_ + ()V + a ([Lcpn;)Lat$a; m_146726_ + 0 o p_146727_ + a (Lanl;)Lat$a; m_204027_ + 0 o p_204028_ + a (Lqr;)Lat$a; m_146724_ + 0 o p_146725_ + a ()Lat$a; m_17924_ + static + a (Lcz;)Lat$a; m_17929_ + 0 o p_17930_ + a (Ljava/lang/Iterable;)Lat$a; m_146722_ + 0 o p_146723_ + b ()Lat; m_17931_ +ata net/minecraft/util/datafix/fixes/EntityRidingToPassengersFix + (Lcom/mojang/datafixers/schemas/Schema;Z)V + 0 o p_15638_ + 1 o p_15639_ + a (Lcom/mojang/datafixers/types/Type;Lcom/mojang/serialization/DynamicOps;Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/types/Type;Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/util/Pair;)Lcom/mojang/datafixers/util/Pair; m_145313_ + static + 0 o p_145314_ + 1 o p_145315_ + 2 o p_145316_ + 3 o p_145317_ + 4 o p_145318_ + 5 o p_145319_ + 6 o p_145320_ + a ()Ljava/lang/IllegalStateException; m_145312_ + static + a (Lcom/mojang/datafixers/types/Type;Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/types/Type;Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/serialization/DynamicOps;)Ljava/util/function/Function; m_15647_ + static + 0 o p_15648_ + 1 o p_15649_ + 2 o p_15650_ + 3 o p_15651_ + 4 o p_15652_ + 5 o p_15653_ + a (Lcom/mojang/datafixers/schemas/Schema;Lcom/mojang/datafixers/schemas/Schema;Lcom/mojang/datafixers/types/Type;Lcom/mojang/datafixers/types/Type;Lcom/mojang/datafixers/types/Type;)Lcom/mojang/datafixers/TypeRewriteRule; m_15641_ + 0 o p_15642_ + 1 o p_15643_ + 2 o p_15644_ + 3 o p_15645_ + 4 o p_15646_ + a (Lcom/mojang/datafixers/types/Type;Lcom/mojang/serialization/DynamicOps;Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/util/Pair;)Lcom/mojang/datafixers/util/Either; m_145321_ + static + 0 o p_145322_ + 1 o p_145323_ + 2 o p_145324_ + 3 o p_145325_ + 4 o p_145326_ + b ()Ljava/lang/IllegalStateException; m_145327_ + static + c ()Ljava/lang/IllegalStateException; m_145328_ + static + d ()Ljava/lang/IllegalStateException; m_145329_ + static + makeRule ()Lcom/mojang/datafixers/TypeRewriteRule; makeRule +atb net/minecraft/util/datafix/fixes/EntityShulkerColorFix + (Lcom/mojang/datafixers/schemas/Schema;Z)V + 0 o p_15673_ + 1 o p_15674_ + a (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; m_15677_ + 0 o p_15678_ + a (Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; m_7504_ + 0 o p_15676_ +atc net/minecraft/util/datafix/fixes/EntityShulkerRotationFix + (Lcom/mojang/datafixers/schemas/Schema;)V + 0 o p_15680_ + a (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; m_15683_ + 0 o p_15684_ + a (Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; m_7504_ + 0 o p_15682_ + b (Lcom/mojang/serialization/Dynamic;)Ljava/lang/Double; m_15685_ + static + 0 o p_15686_ +atd net/minecraft/util/datafix/fixes/EntitySkeletonSplitFix + (Lcom/mojang/datafixers/schemas/Schema;Z)V + 0 o p_15688_ + 1 o p_15689_ + a (Ljava/lang/String;Lcom/mojang/serialization/Dynamic;)Lcom/mojang/datafixers/util/Pair; m_6942_ + 0 o p_15691_ + 1 o p_15692_ +ate net/minecraft/util/datafix/fixes/EntityStringUuidFix + (Lcom/mojang/datafixers/schemas/Schema;Z)V + 0 o p_15694_ + 1 o p_15695_ + a (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; m_145330_ + static + 0 o p_145331_ + a (Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; m_15696_ + static + 0 o p_15697_ + makeRule ()Lcom/mojang/datafixers/TypeRewriteRule; makeRule +atf net/minecraft/util/datafix/fixes/EntityTheRenameningFix + a f_15701_ + b f_15702_ + c f_15703_ + d f_145332_ + ()V + static + (Lcom/mojang/datafixers/schemas/Schema;Z)V + 0 o p_15706_ + 1 o p_15707_ + a (Ljava/lang/String;)Ljava/lang/String; m_7476_ + 0 o p_15709_ +atg net/minecraft/util/datafix/fixes/EntityTippedArrowFix + (Lcom/mojang/datafixers/schemas/Schema;Z)V + 0 o p_15711_ + 1 o p_15712_ + a (Ljava/lang/String;)Ljava/lang/String; m_7476_ + 0 o p_15714_ +ath net/minecraft/util/datafix/fixes/EntityUUIDFix + b f_201927_ + c f_15715_ + d f_15716_ + e f_15717_ + f f_15718_ + g f_15719_ + h f_15720_ + ()V + static + (Lcom/mojang/datafixers/schemas/Schema;)V + 0 o p_15723_ + a (Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; m_15724_ + 0 o p_15725_ + a (Lcom/mojang/serialization/Dynamic;Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; m_15726_ + static + 0 o p_15727_ + 1 o p_15728_ + b (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; m_15729_ + static + 0 o p_15730_ + b (Lcom/mojang/serialization/Dynamic;Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; m_15731_ + static + 0 o p_15732_ + 1 o p_15733_ + c (Lcom/mojang/serialization/Dynamic;Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; m_145333_ + static + 0 o p_145334_ + 1 o p_145335_ + c (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; m_15734_ + static + 0 o p_15735_ + d (Lcom/mojang/serialization/Dynamic;Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; m_15741_ + static + 0 o p_15742_ + 1 o p_15743_ + d (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; m_15739_ + static + 0 o p_15740_ + e (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; m_15744_ + static + 0 o p_15745_ + e (Lcom/mojang/serialization/Dynamic;Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; m_15746_ + static + 0 o p_15747_ + 1 o p_15748_ + f (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; m_15749_ + static + 0 o p_15750_ + g (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; m_15751_ + static + 0 o p_15752_ + h (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; m_15753_ + static + 0 o p_15754_ + i (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; m_15755_ + static + 0 o p_15756_ + j (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; m_15757_ + static + 0 o p_15758_ + k (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; m_15759_ + static + 0 o p_15760_ + l (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; m_15761_ + static + 0 o p_15762_ + m (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; m_15763_ + static + 0 o p_15764_ + makeRule ()Lcom/mojang/datafixers/TypeRewriteRule; makeRule + n (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; m_15766_ + static + 0 o p_15767_ + o (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; m_15768_ + static + 0 o p_15769_ + p (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; m_145336_ + static + 0 o p_145337_ + q (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; m_145338_ + static + 0 o p_145339_ + r (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; m_15774_ + static + 0 o p_15775_ + s (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; m_145340_ + static + 0 o p_145341_ + t (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; m_145342_ + static + 0 o p_145343_ + u (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; m_15780_ + static + 0 o p_15781_ + v (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; m_145344_ + static + 0 o p_145345_ + w (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; m_145346_ + static + 0 o p_145347_ + x (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; m_145348_ + static + 0 o p_145349_ +ati net/minecraft/util/datafix/fixes/EntityVariantFix + a f_216620_ + b f_216621_ + (Lcom/mojang/datafixers/schemas/Schema;Ljava/lang/String;Lcom/mojang/datafixers/DSL$TypeReference;Ljava/lang/String;Ljava/lang/String;Ljava/util/function/IntFunction;)V + 0 o p_216623_ + 1 o p_216624_ + 2 o p_216625_ + 3 o p_216626_ + 4 o p_216627_ + 5 o p_216628_ + a (Lcom/mojang/serialization/Dynamic;Ljava/lang/Number;)Lcom/mojang/serialization/Dynamic; m_216633_ + 0 o p_216634_ + 1 o p_216635_ + a (Lcom/mojang/serialization/DynamicOps;Ljava/lang/Object;Ljava/lang/String;Ljava/util/function/Function;Ljava/lang/Object;)Ljava/lang/Object; m_216647_ + static + 0 o p_216648_ + 1 o p_216649_ + 2 o p_216650_ + 3 o p_216651_ + 4 o p_216652_ + a (Lcom/mojang/serialization/Dynamic;Ljava/lang/String;Ljava/lang/String;Ljava/util/function/Function;)Lcom/mojang/serialization/Dynamic; m_216636_ + static + 0 o p_216637_ + 1 o p_216638_ + 2 o p_216639_ + 3 o p_216640_ + a (Lcom/mojang/serialization/Dynamic;Ljava/util/function/Function;Ljava/lang/String;Ljava/lang/String;Ljava/lang/Object;)Ljava/lang/Object; m_216641_ + static + 0 o p_216642_ + 1 o p_216643_ + 2 o p_216644_ + 3 o p_216645_ + 4 o p_216646_ + a (Ljava/util/function/Function;Lcom/mojang/serialization/DynamicOps;Ljava/lang/Object;)Ljava/lang/Object; m_216653_ + static + 0 o p_216654_ + 1 o p_216655_ + 2 o p_216656_ + a (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; m_216631_ + 0 o p_216632_ + a (Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; m_7504_ + 0 o p_216630_ + b (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; m_216657_ + 0 o p_216658_ +atj net/minecraft/util/datafix/fixes/EntityWolfColorFix + (Lcom/mojang/datafixers/schemas/Schema;Z)V + 0 o p_15789_ + 1 o p_15790_ + a (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; m_15793_ + 0 o p_15794_ + a (Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; m_7504_ + 0 o p_15792_ + b (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; m_15795_ + static + 0 o p_15796_ +atk net/minecraft/util/datafix/fixes/EntityZombieSplitFix + (Lcom/mojang/datafixers/schemas/Schema;Z)V + 0 o p_15798_ + 1 o p_15799_ + a (Ljava/lang/String;Lcom/mojang/serialization/Dynamic;)Lcom/mojang/datafixers/util/Pair; m_6942_ + 0 o p_15801_ + 1 o p_15802_ +atl net/minecraft/util/datafix/fixes/EntityZombieVillagerTypeFix + a f_145350_ + b f_15803_ + ()V + static + (Lcom/mojang/datafixers/schemas/Schema;Z)V + 0 o p_15806_ + 1 o p_15807_ + a (I)I m_15808_ + 0 o p_15809_ + a (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; m_15812_ + 0 o p_15813_ + a (Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; m_7504_ + 0 o p_15811_ +atm net/minecraft/util/datafix/fixes/EntityZombifiedPiglinRenameFix + a f_15814_ + ()V + static + (Lcom/mojang/datafixers/schemas/Schema;)V + 0 o p_15817_ + a (Ljava/lang/String;)Ljava/lang/String; m_7476_ + 0 o p_15819_ +atn net/minecraft/util/datafix/fixes/FeatureFlagRemoveFix + a f_276637_ + b f_276634_ + (Lcom/mojang/datafixers/schemas/Schema;Ljava/lang/String;Ljava/util/Set;)V + 0 o p_277930_ + 1 o p_277628_ + 2 o p_277886_ + a (Ljava/util/List;Lcom/mojang/serialization/Dynamic;Ljava/util/stream/Stream;)Ljava/util/stream/Stream; m_277022_ + 0 o p_277470_ + 1 o p_278057_ + 2 o p_277400_ + a (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; m_276796_ + 0 o p_277583_ + a (Ljava/util/List;Lcom/mojang/serialization/Dynamic;Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; m_276829_ + 0 o p_278087_ + 1 o p_277370_ + 2 o p_278098_ + a (Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; m_277036_ + 0 o p_277407_ + b (Ljava/util/List;Lcom/mojang/serialization/Dynamic;Lcom/mojang/serialization/Dynamic;)Z m_276899_ + 0 o p_278101_ + 1 o p_277513_ + 2 o p_277338_ + makeRule ()Lcom/mojang/datafixers/TypeRewriteRule; makeRule +ato net/minecraft/util/datafix/fixes/FilteredBooksFix + (Lcom/mojang/datafixers/schemas/Schema;)V + 0 o p_216660_ + a (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; m_213922_ + 0 o p_216662_ + a (Ljava/lang/String;)Z m_216663_ + static + 0 o p_216664_ +atp net/minecraft/util/datafix/fixes/FilteredSignsFix + (Lcom/mojang/datafixers/schemas/Schema;)V + 0 o p_216666_ + a (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; m_216669_ + static + 0 o p_216670_ + a (Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; m_7504_ + 0 o p_216668_ +atq net/minecraft/util/datafix/fixes/ForcePoiRebuild + (Lcom/mojang/datafixers/schemas/Schema;Z)V + 0 o p_15821_ + 1 o p_15822_ + a (Lcom/mojang/serialization/DynamicOps;)Ljava/util/function/Function; m_15827_ + static + 0 o p_15828_ + a (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; m_15825_ + static + 0 o p_15826_ + a (Lcom/mojang/datafixers/util/Pair;)Lcom/mojang/datafixers/util/Pair; m_145351_ + static + 0 o p_145352_ + b (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; m_15831_ + static + 0 o p_15832_ + b (Lcom/mojang/datafixers/util/Pair;)Lcom/mojang/datafixers/util/Pair; m_145353_ + static + 0 o p_145354_ + c (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; m_145355_ + static + 0 o p_145356_ + makeRule ()Lcom/mojang/datafixers/TypeRewriteRule; makeRule +atr net/minecraft/util/datafix/fixes/FurnaceRecipeFix + (Lcom/mojang/datafixers/schemas/Schema;Z)V + 0 o p_15837_ + 1 o p_15838_ + a (Ljava/util/List;ILcom/mojang/datafixers/util/Pair;)V m_145357_ + static + 0 o p_145358_ + 1 o p_145359_ + 2 o p_145360_ + a (Lcom/mojang/datafixers/types/Type;Lcom/mojang/datafixers/types/Type;Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; m_15851_ + 0 o p_15852_ + 1 o p_15853_ + 2 o p_15854_ + a (Lcom/mojang/datafixers/types/Type;Ljava/util/List;ILcom/mojang/serialization/Dynamic;)V m_15855_ + static + 0 o p_15856_ + 1 o p_15857_ + 2 o p_15858_ + 3 o p_15859_ + a (Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/types/Type;Lcom/mojang/datafixers/types/Type;Lcom/mojang/datafixers/types/Type;Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/types/Type;Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/types/Type;Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; m_15839_ + 0 o p_15840_ + 1 o p_15841_ + 2 o p_15842_ + 3 o p_15843_ + 4 o p_15844_ + 5 o p_15845_ + 6 o p_15846_ + 7 o p_15847_ + 8 o p_15848_ + a (Lcom/mojang/datafixers/types/Type;)Lcom/mojang/datafixers/TypeRewriteRule; m_15849_ + 0 o p_15850_ + b (Lcom/mojang/datafixers/types/Type;Lcom/mojang/datafixers/types/Type;Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; m_145361_ + 0 o p_145362_ + 1 o p_145363_ + 2 o p_145364_ + c (Lcom/mojang/datafixers/types/Type;Lcom/mojang/datafixers/types/Type;Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; m_145365_ + 0 o p_145366_ + 1 o p_145367_ + 2 o p_145368_ + d (Lcom/mojang/datafixers/types/Type;Lcom/mojang/datafixers/types/Type;Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; m_145369_ + 0 o p_145370_ + 1 o p_145371_ + 2 o p_145372_ + makeRule ()Lcom/mojang/datafixers/TypeRewriteRule; makeRule +ats net/minecraft/util/datafix/fixes/GoatHornIdFix + a f_216671_ + ()V + static + (Lcom/mojang/datafixers/schemas/Schema;)V + 0 o p_216674_ + a (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; m_213922_ + 0 o p_216676_ + a (Ljava/lang/String;)Z m_216677_ + static + 0 o p_216678_ +att net/minecraft/util/datafix/fixes/GossipUUIDFix + (Lcom/mojang/datafixers/schemas/Schema;Ljava/lang/String;)V + 0 o p_15878_ + 1 o p_15879_ + a (Ljava/util/stream/Stream;)Ljava/util/stream/Stream; m_145373_ + static + 0 o p_145374_ + a (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; m_15882_ + static + 0 o p_15883_ + a (Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; m_7504_ + 0 o p_15881_ + b (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; m_145375_ + static + 0 o p_145376_ + c (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; m_145377_ + static + 0 o p_145378_ +atu net/minecraft/util/datafix/fixes/HeightmapRenamingFix + (Lcom/mojang/datafixers/schemas/Schema;Z)V + 0 o p_15891_ + 1 o p_15892_ + a (Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; m_15893_ + 0 o p_15894_ + 1 o p_15895_ + a (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; m_15898_ + 0 o p_15899_ + a (Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; m_145379_ + 0 o p_145380_ + makeRule ()Lcom/mojang/datafixers/TypeRewriteRule; makeRule +atv net/minecraft/util/datafix/fixes/IglooMetadataRemovalFix + (Lcom/mojang/datafixers/schemas/Schema;Z)V + 0 o p_15902_ + 1 o p_15903_ + a (Ljava/util/stream/Stream;)Ljava/util/stream/Stream; m_15906_ + static + 0 o p_15907_ + a (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; m_15904_ + static + 0 o p_15905_ + a (Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; m_274161_ + static + 0 o p_274928_ + b (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; m_15908_ + static + 0 o p_15909_ + b (Ljava/util/stream/Stream;)Ljava/lang/Boolean; m_15910_ + static + 0 o p_15911_ + c (Lcom/mojang/serialization/Dynamic;)Z m_15912_ + static + 0 o p_15913_ + d (Lcom/mojang/serialization/Dynamic;)Z m_145381_ + static + 0 o p_145382_ + makeRule ()Lcom/mojang/datafixers/TypeRewriteRule; makeRule +atw net/minecraft/util/datafix/fixes/ItemBannerColorFix + (Lcom/mojang/datafixers/schemas/Schema;Z)V + 0 o p_15918_ + 1 o p_15919_ + a (Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; m_15920_ + static + 0 o p_15921_ + 1 o p_15922_ + 2 o p_15923_ + 3 o p_15924_ + makeRule ()Lcom/mojang/datafixers/TypeRewriteRule; makeRule +atx net/minecraft/util/datafix/fixes/ItemCustomNameToComponentFix + (Lcom/mojang/datafixers/schemas/Schema;Z)V + 0 o p_15927_ + 1 o p_15928_ + a (Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; m_15929_ + 0 o p_15930_ + 1 o p_15931_ + a (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; m_15934_ + 0 o p_15935_ + a (Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; m_145383_ + 0 o p_145384_ + makeRule ()Lcom/mojang/datafixers/TypeRewriteRule; makeRule +aty net/minecraft/util/datafix/fixes/ItemIdFix + a f_15937_ + ()V + static + (Lcom/mojang/datafixers/schemas/Schema;Z)V + 0 o p_15940_ + 1 o p_15941_ + a (Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/types/Type;Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; m_15944_ + static + 0 o p_15945_ + 1 o p_15946_ + 2 o p_15947_ + a (Lcom/mojang/datafixers/util/Either;)Lcom/mojang/datafixers/util/Pair; m_145385_ + static + 0 o p_145386_ + a (Lit/unimi/dsi/fastutil/ints/Int2ObjectOpenHashMap;)V m_15952_ + static + 0 o p_15953_ + a (Ljava/lang/Integer;)Lcom/mojang/datafixers/util/Pair; m_145389_ + static + 0 o p_145390_ + a (Lcom/mojang/datafixers/util/Pair;)Lcom/mojang/datafixers/util/Pair; m_145387_ + static + 0 o p_145388_ + a (I)Ljava/lang/String; m_15942_ + static + 0 o p_15943_ + makeRule ()Lcom/mojang/datafixers/TypeRewriteRule; makeRule +atz net/minecraft/util/datafix/fixes/ItemLoreFix + (Lcom/mojang/datafixers/schemas/Schema;Z)V + 0 o p_15958_ + 1 o p_15959_ + a (Ljava/util/stream/Stream;)Ljava/util/stream/Stream; m_15969_ + static + 0 o p_15970_ + a (Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; m_15960_ + static + 0 o p_15961_ + 1 o p_15962_ + a (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; m_15965_ + static + 0 o p_15966_ + a (Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; m_145391_ + static + 0 o p_145392_ + a (Ljava/lang/String;)Ljava/lang/String; m_15967_ + static + 0 o p_15968_ + b (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; m_145393_ + static + 0 o p_145394_ + c (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; m_145395_ + static + 0 o p_145396_ + d (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; m_145397_ + static + 0 o p_145398_ + makeRule ()Lcom/mojang/datafixers/TypeRewriteRule; makeRule +au net/minecraft/advancements/critereon/BredAnimalsTrigger + a f_18636_ + ()V + static + ()V + a ()Lacq; m_7295_ + a (Lcom/google/gson/JsonObject;Lba;Lbe;)Lau$a; m_7214_ + 0 o p_286457_ + 1 o p_286507_ + 2 o p_286849_ + a (Laig;Lbrl;Lbrl;Lbfe;)V m_147278_ + 0 o p_147279_ + 1 o p_147280_ + 2 o p_147281_ + 3 o p_147282_ + a (Ldzk;Ldzk;Ldzk;Lau$a;)Z m_18649_ + static + 0 o p_18650_ + 1 o p_18651_ + 2 o p_18652_ + 3 o p_18653_ + b (Lcom/google/gson/JsonObject;Lba;Lbe;)Lar; m_7214_ + 0 o p_286232_ + 1 o p_286575_ + 2 o p_286439_ +au$a net/minecraft/advancements/critereon/BredAnimalsTrigger$TriggerInstance + a f_18659_ + b f_18660_ + c f_18661_ + (Lba;Lba;Lba;Lba;)V + 0 o p_286459_ + 1 o p_286695_ + 2 o p_286476_ + 3 o p_286433_ + a (Lct;)Lcom/google/gson/JsonObject; m_7683_ + 0 o p_18674_ + a (Lbo$a;)Lau$a; m_18667_ + static + 0 o p_18668_ + a (Lbo;Lbo;Lbo;)Lau$a; m_18669_ + static + 0 o p_18670_ + 1 o p_18671_ + 2 o p_18672_ + a (Ldzk;Ldzk;Ldzk;)Z m_18675_ + 0 o p_18676_ + 1 o p_18677_ + 2 o p_18678_ + c ()Lau$a; m_18679_ + static +aua net/minecraft/util/datafix/fixes/ItemPotionFix + a f_145399_ + b f_145400_ + c f_15987_ + ()V + static + (Lcom/mojang/datafixers/schemas/Schema;Z)V + 0 o p_15990_ + 1 o p_15991_ + a ([Ljava/lang/String;)V m_15996_ + static + 0 o p_15997_ + a (Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; m_15992_ + static + 0 o p_15993_ + 1 o p_15994_ + 2 o p_15995_ + makeRule ()Lcom/mojang/datafixers/TypeRewriteRule; makeRule +aub net/minecraft/util/datafix/fixes/ItemRemoveBlockEntityTagFix + a f_242500_ + (Lcom/mojang/datafixers/schemas/Schema;ZLjava/util/Set;)V + 0 o p_242892_ + 1 o p_242905_ + 2 o p_242937_ + a (Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; m_242604_ + 0 o p_242914_ + 1 o p_242902_ + 2 o p_242931_ + 3 o p_242866_ + makeRule ()Lcom/mojang/datafixers/TypeRewriteRule; makeRule +auc net/minecraft/util/datafix/fixes/ItemRenameFix + a f_15999_ + (Lcom/mojang/datafixers/schemas/Schema;Ljava/lang/String;)V + 0 o p_16001_ + 1 o p_16002_ + a (Lcom/mojang/datafixers/schemas/Schema;Ljava/lang/String;Ljava/util/function/Function;)Lcom/mojang/datafixers/DataFix; m_16003_ + static + 0 o p_16004_ + 1 o p_16005_ + 2 o p_16006_ + a (Lcom/mojang/serialization/DynamicOps;)Ljava/util/function/Function; m_16009_ + 0 o p_16010_ + a (Lcom/mojang/datafixers/util/Pair;)Lcom/mojang/datafixers/util/Pair; m_145401_ + 0 o p_145402_ + a (Ljava/lang/String;)Ljava/lang/String; m_7348_ + 0 o p_16011_ + makeRule ()Lcom/mojang/datafixers/TypeRewriteRule; makeRule +auc$1 net/minecraft/util/datafix/fixes/ItemRenameFix$1 + a f_16013_ + (Lcom/mojang/datafixers/schemas/Schema;Ljava/lang/String;Ljava/util/function/Function;)V + 0 o p_16015_ + 1 o p_16016_ + 2 o p_16017_ + a (Ljava/lang/String;)Ljava/lang/String; m_7348_ + 0 o p_16019_ +aud net/minecraft/util/datafix/fixes/ItemShulkerBoxColorFix + a f_16020_ + ()V + static + (Lcom/mojang/datafixers/schemas/Schema;Z)V + 0 o p_16023_ + 1 o p_16024_ + a (Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; m_16025_ + static + 0 o p_16026_ + 1 o p_16027_ + 2 o p_16028_ + 3 o p_16029_ + makeRule ()Lcom/mojang/datafixers/TypeRewriteRule; makeRule +aue net/minecraft/util/datafix/fixes/ItemSpawnEggFix + a f_16031_ + ()V + static + (Lcom/mojang/datafixers/schemas/Schema;Z)V + 0 o p_16034_ + 1 o p_16035_ + a ()Ljava/lang/IllegalStateException; m_145403_ + static + a (Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/Typed;)Ljava/util/Optional; m_145404_ + static + 0 o p_145405_ + 1 o p_145406_ + a ([Ljava/lang/String;)V m_16053_ + static + 0 o p_16054_ + a (Lcom/mojang/datafixers/types/Type;Lcom/mojang/serialization/Dynamic;Ljava/lang/String;Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/DataResult; m_145407_ + static + 0 o p_145408_ + 1 o p_145409_ + 2 o p_145410_ + 3 o p_145411_ + a (Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/types/Type;Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; m_16037_ + static + 0 o p_16038_ + 1 o p_16039_ + 2 o p_16040_ + 3 o p_16041_ + 4 o p_16042_ + 5 o p_16043_ + 6 o p_16044_ + b (Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/Typed;)Ljava/util/Optional; m_145412_ + static + 0 o p_145413_ + 1 o p_145414_ + c (Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/Typed;)Ljava/util/Optional; m_145415_ + static + 0 o p_145416_ + 1 o p_145417_ + makeRule ()Lcom/mojang/datafixers/TypeRewriteRule; makeRule +auf net/minecraft/util/datafix/fixes/ItemStackEnchantmentNamesFix + a f_16062_ + ()V + static + (Lcom/mojang/datafixers/schemas/Schema;Z)V + 0 o p_16065_ + 1 o p_16066_ + a (Lit/unimi/dsi/fastutil/ints/Int2ObjectOpenHashMap;)V m_16074_ + static + 0 o p_16075_ + a (Ljava/util/stream/Stream;)Ljava/util/stream/Stream; m_145420_ + static + 0 o p_145421_ + a (Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; m_16067_ + 0 o p_16068_ + 1 o p_16069_ + a (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; m_16072_ + 0 o p_16073_ + a (Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; m_145418_ + 0 o p_145419_ + b (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; m_16078_ + static + 0 o p_16079_ + b (Ljava/util/stream/Stream;)Ljava/util/stream/Stream; m_16080_ + static + 0 o p_16081_ + c (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; m_145422_ + static + 0 o p_145423_ + d (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; m_145424_ + static + 0 o p_145425_ + makeRule ()Lcom/mojang/datafixers/TypeRewriteRule; makeRule +aug net/minecraft/util/datafix/fixes/ItemStackMapIdFix + (Lcom/mojang/datafixers/schemas/Schema;Z)V + 0 o p_16088_ + 1 o p_16089_ + a (Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; m_16090_ + static + 0 o p_16091_ + 1 o p_16092_ + 2 o p_16093_ + makeRule ()Lcom/mojang/datafixers/TypeRewriteRule; makeRule +auh net/minecraft/util/datafix/fixes/ItemStackSpawnEggFix + a f_260677_ + b f_16095_ + ()V + static + (Lcom/mojang/datafixers/schemas/Schema;ZLjava/lang/String;)V + 0 o p_262024_ + 1 o p_262020_ + 2 o p_261847_ + a (Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; m_16100_ + 0 o p_16101_ + 1 o p_16102_ + 2 o p_16103_ + 3 o p_16104_ + 4 o p_16105_ + a (Ljava/util/HashMap;)V m_260784_ + static + 0 o p_261434_ + makeRule ()Lcom/mojang/datafixers/TypeRewriteRule; makeRule +aui net/minecraft/util/datafix/fixes/ItemStackTagFix + a f_216679_ + b f_216680_ + (Lcom/mojang/datafixers/schemas/Schema;Ljava/lang/String;Ljava/util/function/Predicate;)V + 0 o p_216682_ + 1 o p_216683_ + 2 o p_216684_ + a (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; m_213922_ + 0 o p_216691_ + a (Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; m_216685_ + 0 o p_216686_ + 1 o p_216687_ + 2 o p_216688_ + a (Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; m_216689_ + 0 o p_216690_ + makeRule ()Lcom/mojang/datafixers/TypeRewriteRule; makeRule +auj net/minecraft/util/datafix/fixes/ItemStackTheFlatteningFix + a f_16109_ + b f_16110_ + c f_16111_ + ()V + static + (Lcom/mojang/datafixers/schemas/Schema;Z)V + 0 o p_16114_ + 1 o p_16115_ + a (Ljava/lang/String;I)Ljava/lang/String; m_16122_ + static + 0 o p_16123_ + 1 o p_16124_ + a (Ljava/util/HashMap;)V m_16125_ + static + 0 o p_16126_ + a (Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; m_16116_ + static + 0 o p_16117_ + 1 o p_16118_ + 2 o p_16119_ + a (Ljava/lang/String;)Ljava/lang/String; m_16120_ + static + 0 o p_16121_ + makeRule ()Lcom/mojang/datafixers/TypeRewriteRule; makeRule +auk net/minecraft/util/datafix/fixes/ItemStackUUIDFix + (Lcom/mojang/datafixers/schemas/Schema;)V + 0 o p_16129_ + a (Lcom/mojang/datafixers/Typed;Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; m_145430_ + 0 o p_145431_ + 1 o p_145432_ + 2 o p_145433_ + a (Lcom/mojang/datafixers/Typed;Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; m_145426_ + 0 o p_145427_ + 1 o p_145428_ + 2 o p_145429_ + a (Lcom/mojang/serialization/Dynamic;Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; m_16143_ + static + 0 o p_16144_ + 1 o p_16145_ + a (Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; m_16130_ + 0 o p_16131_ + 1 o p_16132_ + a (Lcom/mojang/datafixers/util/Pair;)Ljava/lang/Boolean; m_145434_ + static + 0 o p_145435_ + b (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; m_16146_ + 0 o p_16147_ + c (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; m_16148_ + 0 o p_16149_ + d (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; m_16150_ + static + 0 o p_16151_ + e (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; m_145436_ + static + 0 o p_145437_ + makeRule ()Lcom/mojang/datafixers/TypeRewriteRule; makeRule +aul net/minecraft/util/datafix/fixes/ItemWaterPotionFix + (Lcom/mojang/datafixers/schemas/Schema;Z)V + 0 o p_16156_ + 1 o p_16157_ + a (Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; m_16158_ + static + 0 o p_16159_ + 1 o p_16160_ + 2 o p_16161_ + makeRule ()Lcom/mojang/datafixers/TypeRewriteRule; makeRule +aum net/minecraft/util/datafix/fixes/ItemWrittenBookPagesStrictJsonFix + (Lcom/mojang/datafixers/schemas/Schema;Z)V + 0 o p_16164_ + 1 o p_16165_ + a (Ljava/util/stream/Stream;)Ljava/util/stream/Stream; m_145440_ + static + 0 o p_145441_ + a (Lcom/mojang/serialization/Dynamic;Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; m_16173_ + static + 0 o p_16174_ + 1 o p_16175_ + a (Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; m_16166_ + 0 o p_16167_ + 1 o p_16168_ + a (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; m_16171_ + 0 o p_16172_ + a (Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; m_145438_ + 0 o p_145439_ + b (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; m_145442_ + static + 0 o p_145443_ + makeRule ()Lcom/mojang/datafixers/TypeRewriteRule; makeRule +aun net/minecraft/util/datafix/fixes/JigsawPropertiesFix + (Lcom/mojang/datafixers/schemas/Schema;Z)V + 0 o p_16182_ + 1 o p_16183_ + a (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; m_16186_ + static + 0 o p_16187_ + a (Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; m_7504_ + 0 o p_16185_ +auo net/minecraft/util/datafix/fixes/JigsawRotationFix + a f_145444_ + ()V + static + (Lcom/mojang/datafixers/schemas/Schema;Z)V + 0 o p_16191_ + 1 o p_16192_ + a (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; m_16195_ + static + 0 o p_16196_ + a (Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; m_16193_ + static + 0 o p_16194_ + b (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; m_16197_ + static + 0 o p_16198_ + makeRule ()Lcom/mojang/datafixers/TypeRewriteRule; makeRule +aup net/minecraft/util/datafix/fixes/LeavesFix + a f_145445_ + b f_145446_ + c f_145447_ + d f_145448_ + e f_145449_ + f f_145450_ + g f_145451_ + h f_145452_ + i f_16200_ + j f_145453_ + k f_145454_ + l f_145455_ + m f_16201_ + n f_16202_ + ()V + static + (Lcom/mojang/datafixers/schemas/Schema;Z)V + 0 o p_16205_ + 1 o p_16206_ + a (III)I m_16210_ + static + 0 o p_16211_ + 1 o p_16212_ + 2 o p_16213_ + a (I)I m_16208_ + 0 o p_16209_ + a (Laup$a;)Laup$a; m_145456_ + static + 0 o p_145457_ + a (Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; m_145458_ + 0 o p_145459_ + 1 o p_145460_ + 2 o p_145461_ + a (Lit/unimi/dsi/fastutil/objects/Object2IntOpenHashMap;)V m_16234_ + static + 0 o p_16235_ + a (Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; m_16216_ + 0 o p_16217_ + 1 o p_16218_ + 2 o p_16219_ + 3 o p_16220_ + a (Lit/unimi/dsi/fastutil/ints/Int2ObjectMap;Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; m_145468_ + static + 0 o p_145469_ + 1 o p_145470_ + a ([ILcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; m_145471_ + static + 0 o p_145472_ + 1 o p_145473_ + a (ZZZZ)I m_16236_ + static + 0 o p_16237_ + 1 o p_16238_ + 2 o p_16239_ + 3 o p_16240_ + a (Lcom/mojang/datafixers/Typed;)Laup$a; m_145466_ + 0 o p_145467_ + a (Lcom/mojang/datafixers/OpticFinder;[ILcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; m_145462_ + 0 o p_145463_ + 1 o p_145464_ + 2 o p_145465_ + b (I)I m_16245_ + 0 o p_16246_ + c (I)I m_16247_ + 0 o p_16248_ + makeRule ()Lcom/mojang/datafixers/TypeRewriteRule; makeRule +aup$a net/minecraft/util/datafix/fixes/LeavesFix$LeavesSection + h f_145474_ + i f_145475_ + j f_145476_ + k f_16250_ + l f_16251_ + m f_16252_ + (Lcom/mojang/datafixers/Typed;Lcom/mojang/datafixers/schemas/Schema;)V + 0 o p_16254_ + 1 o p_16255_ + a (Lcom/mojang/serialization/Dynamic;Ljava/lang/String;ZI)Lcom/mojang/serialization/Dynamic; m_16271_ + 0 o p_16272_ + 1 o p_16273_ + 2 o p_16274_ + 3 o p_16275_ + a ()Z m_7969_ + a (I)Z m_16257_ + 0 o p_16258_ + a (III)V m_16259_ + 0 o p_16260_ + 1 o p_16261_ + 2 o p_16262_ + b (I)Z m_16276_ + 0 o p_16277_ + d (I)I m_16278_ + 0 o p_16279_ +aup$b net/minecraft/util/datafix/fixes/LeavesFix$Section + a f_145477_ + b f_145478_ + c f_145479_ + d f_16280_ + e f_16281_ + f f_16282_ + g f_16283_ + h f_16284_ + (Lcom/mojang/datafixers/Typed;Lcom/mojang/datafixers/schemas/Schema;)V + 0 o p_16286_ + 1 o p_16287_ + a (Lcom/mojang/serialization/Dynamic;)V m_16290_ + 0 o p_16291_ + a ()Z m_7969_ + a (Ljava/util/List;)Ljava/util/List; m_16296_ + static + 0 o p_16297_ + a (Ljava/lang/String;ZI)I m_16292_ + 0 o p_16293_ + 1 o p_16294_ + 2 o p_16295_ + a (Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; m_16288_ + 0 o p_16289_ + b (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/datafixers/util/Pair; m_16299_ + static + 0 o p_16300_ + b ()Z m_16298_ + c (I)I m_16302_ + 0 o p_16303_ + c ()I m_16301_ + c (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; m_16304_ + 0 o p_16305_ +auq net/minecraft/util/datafix/fixes/LegacyDragonFightFix + (Lcom/mojang/datafixers/schemas/Schema;)V + 0 o p_289761_ + a (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; m_289728_ + static + 0 o p_289763_ + a (Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; m_289720_ + static + 0 o p_289787_ + makeRule ()Lcom/mojang/datafixers/TypeRewriteRule; makeRule +aur net/minecraft/util/datafix/fixes/LevelDataGeneratorOptionsFix + a f_16306_ + b f_145480_ + ()V + static + (Lcom/mojang/datafixers/schemas/Schema;Z)V + 0 o p_16309_ + 1 o p_16310_ + a (Ljava/lang/String;Lcom/mojang/serialization/DynamicOps;)Lcom/mojang/serialization/Dynamic; m_16326_ + static + 0 o p_16327_ + 1 o p_16328_ + a ()Ljava/lang/IllegalStateException; m_145481_ + static + a (Lcom/mojang/datafixers/types/Type;Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/DataResult; m_145482_ + static + 0 o p_145483_ + 1 o p_145484_ + a (Ljava/util/HashMap;)V m_16329_ + static + 0 o p_16330_ + a (Lcom/mojang/serialization/DynamicOps;Ljava/util/Map$Entry;)Lcom/mojang/datafixers/util/Pair; m_16321_ + static + 0 o p_16322_ + 1 o p_16323_ + a (Lcom/mojang/datafixers/types/Type;Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; m_16312_ + static + 0 o p_16313_ + 1 o p_16314_ + a (Ljava/lang/String;)Lcom/mojang/datafixers/util/Pair; m_16324_ + static + 0 o p_16325_ + a (Lcom/mojang/serialization/DynamicOps;Lcom/mojang/datafixers/util/Pair;)Ljava/lang/Object; m_16318_ + static + 0 o p_16319_ + 1 o p_16320_ + b (Ljava/lang/String;)Ljava/util/List; m_16334_ + static + 0 o p_16335_ + b (Lcom/mojang/serialization/DynamicOps;Ljava/util/Map$Entry;)Lcom/mojang/datafixers/util/Pair; m_145485_ + static + 0 o p_145486_ + 1 o p_145487_ + makeRule ()Lcom/mojang/datafixers/TypeRewriteRule; makeRule +aus net/minecraft/util/datafix/fixes/LevelFlatGeneratorInfoFix + a f_145488_ + b f_145489_ + c f_16337_ + d f_16338_ + e f_16339_ + f f_16340_ + g f_16341_ + ()V + static + (Lcom/mojang/datafixers/schemas/Schema;Z)V + 0 o p_16344_ + 1 o p_16345_ + a (Lcom/google/common/base/Splitter;ILjava/lang/String;)Ljava/lang/String; m_16346_ + static + 0 o p_16347_ + 1 o p_16348_ + 2 o p_16349_ + a (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; m_16352_ + 0 o p_16353_ + a (Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; m_16350_ + 0 o p_16351_ + a (Ljava/lang/String;)Ljava/lang/String; m_16354_ + 0 o p_16355_ + b (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; m_16356_ + 0 o p_16357_ + makeRule ()Lcom/mojang/datafixers/TypeRewriteRule; makeRule +aut net/minecraft/util/datafix/fixes/LevelUUIDFix + b f_201928_ + ()V + static + (Lcom/mojang/datafixers/schemas/Schema;)V + 0 o p_16360_ + a (Lcom/mojang/serialization/Dynamic;Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; m_145492_ + static + 0 o p_145493_ + 1 o p_145494_ + a (Lcom/mojang/datafixers/util/Pair;)Lcom/mojang/datafixers/util/Pair; m_145490_ + static + 0 o p_145491_ + a (Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; m_16361_ + 0 o p_16362_ + b (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; m_16372_ + 0 o p_16373_ + b (Lcom/mojang/datafixers/util/Pair;)Lcom/mojang/datafixers/util/Pair; m_145497_ + static + 0 o p_145498_ + b (Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; m_145495_ + 0 o p_145496_ + c (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; m_16374_ + 0 o p_16375_ + d (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; m_16376_ + 0 o p_16377_ + e (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; m_16378_ + static + 0 o p_16379_ + f (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; m_145499_ + static + 0 o p_145500_ + g (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; m_145501_ + static + 0 o p_145502_ + h (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; m_145503_ + static + 0 o p_145504_ + i (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; m_16386_ + static + 0 o p_16387_ + j (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; m_145505_ + static + 0 o p_145506_ + k (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; m_145507_ + static + 0 o p_145508_ + l (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; m_145509_ + 0 o p_145510_ + makeRule ()Lcom/mojang/datafixers/TypeRewriteRule; makeRule +auu net/minecraft/util/datafix/fixes/MapIdFix + (Lcom/mojang/datafixers/schemas/Schema;Z)V + 0 o p_16396_ + 1 o p_16397_ + a (Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; m_16398_ + static + 0 o p_16399_ + 1 o p_16400_ + a (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; m_145511_ + static + 0 o p_145512_ + makeRule ()Lcom/mojang/datafixers/TypeRewriteRule; makeRule +auv net/minecraft/util/datafix/fixes/MemoryExpiryDataFix + (Lcom/mojang/datafixers/schemas/Schema;Ljava/lang/String;)V + 0 o p_16405_ + 1 o p_16406_ + a (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; m_16411_ + 0 o p_16412_ + a (Lcom/mojang/datafixers/util/Pair;)Lcom/mojang/datafixers/util/Pair; m_16409_ + 0 o p_16410_ + a (Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; m_7504_ + 0 o p_16408_ + b (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; m_16413_ + 0 o p_16414_ + c (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; m_16415_ + 0 o p_16416_ + d (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; m_16417_ + 0 o p_16418_ +auw net/minecraft/util/datafix/fixes/MissingDimensionFix + (Lcom/mojang/datafixers/schemas/Schema;Z)V + 0 o p_16420_ + 1 o p_16421_ + a (Ljava/lang/String;Lcom/mojang/datafixers/types/Type;Ljava/lang/String;Lcom/mojang/datafixers/types/Type;)Lcom/mojang/datafixers/types/Type; m_16441_ + static + 0 o p_16442_ + 1 o p_16443_ + 2 o p_16444_ + 3 o p_16445_ + a (Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/Typed;Lcom/mojang/datafixers/types/templates/CompoundList$CompoundListType;Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; m_145513_ + 0 o p_145514_ + 1 o p_145515_ + 2 o p_145516_ + 3 o p_145517_ + a (Lcom/mojang/datafixers/schemas/Schema;)Lcom/mojang/datafixers/types/Type; m_185130_ + static + 0 o p_185131_ + a (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; m_16436_ + 0 o p_16437_ + a (Ljava/lang/String;Lcom/mojang/datafixers/types/Type;)Lcom/mojang/datafixers/types/Type; m_16438_ + static + 0 o p_16439_ + 1 o p_16440_ + a (Lcom/mojang/datafixers/Typed;Lcom/mojang/datafixers/types/templates/CompoundList$CompoundListType;Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; m_145518_ + 0 o p_145519_ + 1 o p_145520_ + 2 o p_145521_ + a (Lcom/mojang/datafixers/FieldFinder;Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/types/templates/CompoundList$CompoundListType;Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; m_16422_ + 0 o p_16423_ + 1 o p_16424_ + 2 o p_16425_ + 3 o p_16426_ + b (Ljava/lang/String;Lcom/mojang/datafixers/types/Type;)Lcom/mojang/datafixers/types/Type; m_16446_ + static + 0 o p_16447_ + 1 o p_16448_ + makeRule ()Lcom/mojang/datafixers/TypeRewriteRule; makeRule +auy net/minecraft/util/datafix/fixes/MobSpawnerEntityIdentifiersFix + (Lcom/mojang/datafixers/schemas/Schema;Z)V + 0 o p_16451_ + 1 o p_16452_ + a (Lcom/mojang/datafixers/types/Type;Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; m_16453_ + 0 o p_16454_ + 1 o p_16455_ + a (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; m_16456_ + 0 o p_16457_ + b (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; m_16458_ + static + 0 o p_16459_ + makeRule ()Lcom/mojang/datafixers/TypeRewriteRule; makeRule +auz net/minecraft/util/datafix/fixes/NamedEntityFix + a f_16461_ + b f_16462_ + c f_16463_ + (Lcom/mojang/datafixers/schemas/Schema;ZLjava/lang/String;Lcom/mojang/datafixers/DSL$TypeReference;Ljava/lang/String;)V + 0 o p_16465_ + 1 o p_16466_ + 2 o p_16467_ + 3 o p_16468_ + 4 o p_16469_ + a (Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; m_16470_ + 0 o p_16471_ + 1 o p_16472_ + a (Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; m_7504_ + 0 o p_16473_ + makeRule ()Lcom/mojang/datafixers/TypeRewriteRule; makeRule +av net/minecraft/advancements/critereon/BrewedPotionTrigger + a f_19116_ + ()V + static + ()V + a (Lacq;)Lcom/google/gson/JsonSyntaxException; m_19130_ + static + 0 o p_19131_ + a (Lchw;Lav$a;)Z m_19123_ + static + 0 o p_19124_ + 1 o p_19125_ + a (Lcom/google/gson/JsonObject;Lba;Lbe;)Lav$a; m_7214_ + 0 o p_286606_ + 1 o p_286420_ + 2 o p_286605_ + a ()Lacq; m_7295_ + a (Laig;Lchw;)V m_19120_ + 0 o p_19121_ + 1 o p_19122_ + b (Lcom/google/gson/JsonObject;Lba;Lbe;)Lar; m_7214_ + 0 o p_286714_ + 1 o p_286675_ + 2 o p_286329_ +av$a net/minecraft/advancements/critereon/BrewedPotionTrigger$TriggerInstance + a f_19137_ + (Lba;Lchw;)V + 0 o p_286312_ + 1 o p_286830_ + a (Lct;)Lcom/google/gson/JsonObject; m_7683_ + 0 o p_19144_ + a (Lchw;)Z m_19141_ + 0 o p_19142_ + c ()Lav$a; m_19145_ + static +ava net/minecraft/util/datafix/fixes/NamespacedTypeRenameFix + a f_276670_ + b f_276626_ + c f_276472_ + (Lcom/mojang/datafixers/schemas/Schema;Ljava/lang/String;Lcom/mojang/datafixers/DSL$TypeReference;Ljava/util/function/UnaryOperator;)V + 0 o p_277723_ + 1 o p_277766_ + 2 o p_277439_ + 3 o p_278045_ + a (Lcom/mojang/serialization/DynamicOps;)Ljava/util/function/Function; m_277048_ + 0 o p_278028_ + a (Lcom/mojang/datafixers/util/Pair;)Lcom/mojang/datafixers/util/Pair; m_276795_ + 0 o p_277944_ + makeRule ()Lcom/mojang/datafixers/TypeRewriteRule; makeRule +avb net/minecraft/util/datafix/fixes/NewVillageFix + (Lcom/mojang/datafixers/schemas/Schema;Z)V + 0 o p_16476_ + 1 o p_16477_ + a (Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; m_16478_ + static + 0 o p_16479_ + 1 o p_16480_ + 2 o p_16481_ + 3 o p_16482_ + 4 o p_16483_ + a (Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; m_145527_ + static + 0 o p_145528_ + 1 o p_145529_ + 2 o p_145530_ + a (Ljava/lang/String;)Ljava/lang/String; m_145541_ + static + 0 o p_145542_ + a (Lcom/mojang/datafixers/types/templates/CompoundList$CompoundListType;)Lcom/mojang/datafixers/TypeRewriteRule; m_16498_ + 0 o p_16499_ + a (Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; m_145522_ + static + 0 o p_145523_ + 1 o p_145524_ + 2 o p_145525_ + 3 o p_145526_ + a (Lcom/mojang/serialization/Dynamic;Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; m_145538_ + static + 0 o p_145539_ + 1 o p_145540_ + a (Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; m_145531_ + static + 0 o p_145532_ + 1 o p_145533_ + a (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; m_145536_ + static + 0 o p_145537_ + a (Ljava/util/List;)Ljava/util/List; m_145543_ + static + 0 o p_145544_ + a (Lcom/mojang/datafixers/util/Pair;)Lcom/mojang/datafixers/util/Pair; m_145534_ + static + 0 o p_145535_ + a (Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; m_16496_ + static + 0 o p_16497_ + b (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; m_145547_ + static + 0 o p_145548_ + b (Lcom/mojang/datafixers/util/Pair;)Z m_145545_ + static + 0 o p_145546_ + c (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; m_145549_ + static + 0 o p_145550_ + d (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; m_145551_ + static + 0 o p_145552_ + makeRule ()Lcom/mojang/datafixers/TypeRewriteRule; makeRule +avc net/minecraft/util/datafix/fixes/ObjectiveDisplayNameFix + (Lcom/mojang/datafixers/schemas/Schema;Z)V + 0 o p_16521_ + 1 o p_16522_ + a (Lcom/mojang/serialization/Dynamic;Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; m_145557_ + static + 0 o p_145558_ + 1 o p_145559_ + a (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; m_145555_ + static + 0 o p_145556_ + a (Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; m_181038_ + static + 0 o p_181039_ + a (Ljava/lang/String;)Ljava/lang/String; m_145560_ + static + 0 o p_145561_ + makeRule ()Lcom/mojang/datafixers/TypeRewriteRule; makeRule +avd net/minecraft/util/datafix/fixes/ObjectiveRenderTypeFix + (Lcom/mojang/datafixers/schemas/Schema;Z)V + 0 o p_16536_ + 1 o p_16537_ + a (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; m_262778_ + static + 0 o p_145565_ + a (Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; m_181040_ + static + 0 o p_181041_ + a (Ljava/lang/String;)Ljava/lang/String; m_262826_ + static + 0 o p_262957_ + makeRule ()Lcom/mojang/datafixers/TypeRewriteRule; makeRule +ave net/minecraft/util/datafix/fixes/OminousBannerBlockEntityRenameFix + (Lcom/mojang/datafixers/schemas/Schema;Z)V + 0 o p_16548_ + 1 o p_16549_ + a (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; m_16552_ + 0 o p_16553_ + a (Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; m_7504_ + 0 o p_16551_ +avf net/minecraft/util/datafix/fixes/OminousBannerRenameFix + (Lcom/mojang/datafixers/schemas/Schema;)V + 0 o p_216694_ + a (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; m_213922_ + 0 o p_216696_ + a (Ljava/lang/String;)Z m_216697_ + static + 0 o p_216698_ +avg net/minecraft/util/datafix/fixes/OptionsAccessibilityOnboardFix + (Lcom/mojang/datafixers/schemas/Schema;)V + 0 o p_265364_ + a (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; m_264351_ + static + 0 o p_265786_ + a (Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; m_264368_ + static + 0 o p_265152_ + makeRule ()Lcom/mojang/datafixers/TypeRewriteRule; makeRule +avh net/minecraft/util/datafix/fixes/OptionsAddTextBackgroundFix + (Lcom/mojang/datafixers/schemas/Schema;Z)V + 0 o p_16607_ + 1 o p_16608_ + a (Lcom/mojang/serialization/Dynamic;Ljava/lang/String;)Lcom/mojang/serialization/Dynamic; m_145568_ + 0 o p_145569_ + 1 o p_145570_ + a (Ljava/lang/String;)D m_16616_ + 0 o p_16617_ + a (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; m_145566_ + 0 o p_145567_ + a (Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; m_16609_ + 0 o p_16610_ + makeRule ()Lcom/mojang/datafixers/TypeRewriteRule; makeRule +avi net/minecraft/util/datafix/fixes/OptionsAmbientOcclusionFix + (Lcom/mojang/datafixers/schemas/Schema;)V + 0 o p_263497_ + a (Lcom/mojang/serialization/Dynamic;Ljava/lang/String;)Lcom/mojang/serialization/Dynamic; m_263474_ + static + 0 o p_263486_ + 1 o p_263546_ + a (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; m_263472_ + static + 0 o p_263531_ + a (Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; m_263463_ + static + 0 o p_263493_ + a (Ljava/lang/String;)Ljava/lang/String; m_263452_ + static + 0 o p_263541_ + makeRule ()Lcom/mojang/datafixers/TypeRewriteRule; makeRule +avj net/minecraft/util/datafix/fixes/OptionsForceVBOFix + (Lcom/mojang/datafixers/schemas/Schema;Z)V + 0 o p_16620_ + 1 o p_16621_ + a (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; m_145571_ + static + 0 o p_145572_ + a (Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; m_16622_ + static + 0 o p_16623_ + makeRule ()Lcom/mojang/datafixers/TypeRewriteRule; makeRule +avk net/minecraft/util/datafix/fixes/OptionsKeyLwjgl3Fix + a f_145573_ + b f_16627_ + ()V + static + (Lcom/mojang/datafixers/schemas/Schema;Z)V + 0 o p_16630_ + 1 o p_16631_ + a (Lit/unimi/dsi/fastutil/ints/Int2ObjectOpenHashMap;)V m_16639_ + static + 0 o p_16640_ + a (Lcom/mojang/serialization/Dynamic;Ljava/util/Map;)Lcom/mojang/serialization/Dynamic; m_145576_ + static + 0 o p_145577_ + 1 o p_145578_ + a (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; m_145574_ + static + 0 o p_145575_ + a (Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; m_16632_ + static + 0 o p_16633_ + a (Ljava/util/Map$Entry;)Lcom/mojang/datafixers/util/Pair; m_145579_ + static + 0 o p_145580_ + makeRule ()Lcom/mojang/datafixers/TypeRewriteRule; makeRule +avl net/minecraft/util/datafix/fixes/OptionsKeyTranslationFix + (Lcom/mojang/datafixers/schemas/Schema;Z)V + 0 o p_16645_ + 1 o p_16646_ + a (Lcom/mojang/serialization/Dynamic;Ljava/util/Map;)Lcom/mojang/serialization/Dynamic; m_145586_ + static + 0 o p_145587_ + 1 o p_145588_ + a (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; m_145581_ + static + 0 o p_145582_ + a (Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; m_16647_ + static + 0 o p_16648_ + a (Lcom/mojang/serialization/Dynamic;Ljava/util/Map$Entry;)Lcom/mojang/datafixers/util/Pair; m_145583_ + static + 0 o p_145584_ + 1 o p_145585_ + makeRule ()Lcom/mojang/datafixers/TypeRewriteRule; makeRule +avm net/minecraft/util/datafix/fixes/OptionsLowerCaseLanguageFix + (Lcom/mojang/datafixers/schemas/Schema;Z)V + 0 o p_16659_ + 1 o p_16660_ + a (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; m_145589_ + static + 0 o p_145590_ + a (Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; m_16661_ + static + 0 o p_16662_ + makeRule ()Lcom/mojang/datafixers/TypeRewriteRule; makeRule +avn net/minecraft/util/datafix/fixes/OptionsProgrammerArtFix + (Lcom/mojang/datafixers/schemas/Schema;)V + 0 o p_250038_ + a (Lcom/mojang/serialization/Dynamic;Ljava/lang/String;)Lcom/mojang/serialization/Dynamic; m_245414_ + static + 0 o p_249196_ + 1 o p_250930_ + a (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; m_245596_ + 0 o p_249761_ + a (Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; m_247308_ + 0 o p_248578_ + b (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; m_246725_ + 0 o p_250184_ + makeRule ()Lcom/mojang/datafixers/TypeRewriteRule; makeRule +avo net/minecraft/util/datafix/fixes/OptionsRenameFieldFix + a f_16666_ + b f_16667_ + c f_16668_ + (Lcom/mojang/datafixers/schemas/Schema;ZLjava/lang/String;Ljava/lang/String;Ljava/lang/String;)V + 0 o p_16670_ + 1 o p_16671_ + 2 o p_16672_ + 3 o p_16673_ + 4 o p_16674_ + a (Lcom/mojang/serialization/Dynamic;Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; m_145593_ + 0 o p_145594_ + 1 o p_145595_ + a (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; m_145591_ + 0 o p_145592_ + a (Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; m_16675_ + 0 o p_16676_ + makeRule ()Lcom/mojang/datafixers/TypeRewriteRule; makeRule +avp net/minecraft/util/datafix/fixes/OverreachingTickFix + (Lcom/mojang/datafixers/schemas/Schema;)V + 0 o p_207654_ + a (Lcom/mojang/serialization/Dynamic;IILjava/util/Optional;Ljava/lang/String;)Lcom/mojang/serialization/Dynamic; m_207662_ + static + 0 o p_207663_ + 1 o p_207664_ + 2 o p_207665_ + 3 o p_207666_ + 4 o p_207667_ + a (Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; m_207659_ + static + 0 o p_207660_ + 1 o p_207661_ + a (Ljava/util/Optional;Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; m_207668_ + static + 0 o p_207669_ + 1 o p_207670_ + a (IILcom/mojang/serialization/Dynamic;)Z m_207655_ + static + 0 o p_207656_ + 1 o p_207657_ + 2 o p_207658_ + makeRule ()Lcom/mojang/datafixers/TypeRewriteRule; makeRule +avq net/minecraft/util/datafix/fixes/PlayerUUIDFix + (Lcom/mojang/datafixers/schemas/Schema;)V + 0 o p_16684_ + a (Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; m_16685_ + static + 0 o p_16686_ + b (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; m_145598_ + static + 0 o p_145599_ + b (Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; m_145596_ + static + 0 o p_145597_ + c (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; m_145600_ + static + 0 o p_145601_ + makeRule ()Lcom/mojang/datafixers/TypeRewriteRule; makeRule +avr net/minecraft/util/datafix/fixes/PoiTypeRemoveFix + a f_216699_ + (Lcom/mojang/datafixers/schemas/Schema;Ljava/lang/String;Ljava/util/function/Predicate;)V + 0 o p_216701_ + 1 o p_216702_ + 2 o p_216703_ + a (Lcom/mojang/serialization/Dynamic;)Z m_216704_ + 0 o p_216705_ + a (Ljava/util/stream/Stream;)Ljava/util/stream/Stream; m_213759_ + 0 o p_216707_ +avs net/minecraft/util/datafix/fixes/PoiTypeRenameFix + a f_216708_ + (Lcom/mojang/datafixers/schemas/Schema;Ljava/lang/String;Ljava/util/function/Function;)V + 0 o p_216710_ + 1 o p_216711_ + 2 o p_216712_ + a (Ljava/util/stream/Stream;)Ljava/util/stream/Stream; m_213759_ + 0 o p_216716_ + a (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; m_216713_ + 0 o p_216714_ + b (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; m_216717_ + 0 o p_216718_ +avt net/minecraft/util/datafix/fixes/RecipesFix + a f_16722_ + ()V + static + ()V +avu net/minecraft/util/datafix/fixes/RecipesRenameningFix + a f_16741_ + ()V + static + ()V +avv net/minecraft/util/datafix/fixes/RedstoneWireConnectionsFix + (Lcom/mojang/datafixers/schemas/Schema;)V + 0 o p_16749_ + a (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; m_16752_ + 0 o p_16753_ + a (Ljava/lang/String;Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; m_145616_ + static + 0 o p_145617_ + 1 o p_145618_ + a (Ljava/lang/String;)Z m_16754_ + static + 0 o p_16755_ + a (Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; m_16750_ + 0 o p_16751_ + b (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; m_16759_ + static + 0 o p_16760_ + b (Ljava/lang/String;Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; m_145619_ + static + 0 o p_145620_ + 1 o p_145621_ + c (Ljava/lang/String;Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; m_145622_ + static + 0 o p_145623_ + 1 o p_145624_ + d (Ljava/lang/String;Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; m_145625_ + static + 0 o p_145626_ + 1 o p_145627_ + makeRule ()Lcom/mojang/datafixers/TypeRewriteRule; makeRule +avw net/minecraft/util/datafix/fixes/References + A f_276527_ + B f_16795_ + a f_16771_ + b f_16772_ + c f_16773_ + d f_16774_ + e f_16775_ + f f_16776_ + g f_16777_ + h f_16778_ + i f_16779_ + j f_16780_ + k f_145628_ + l f_16781_ + m f_16782_ + n f_16783_ + o f_16784_ + p f_16785_ + q f_16786_ + r f_16787_ + s f_16788_ + t f_216719_ + u f_16789_ + v f_16790_ + w f_16791_ + x f_16792_ + y f_16793_ + z f_16794_ + ()V + static + ()V + A ()Ljava/lang/String; m_16820_ + static + B ()Ljava/lang/String; m_16821_ + static + a ()Ljava/lang/String; m_16818_ + static + b ()Ljava/lang/String; m_216720_ + static + c ()Ljava/lang/String; m_145630_ + static + d ()Ljava/lang/String; m_16797_ + static + e ()Ljava/lang/String; m_16798_ + static + f ()Ljava/lang/String; m_16799_ + static + g ()Ljava/lang/String; m_16800_ + static + h ()Ljava/lang/String; m_16801_ + static + i ()Ljava/lang/String; m_16802_ + static + j ()Ljava/lang/String; m_16803_ + static + k ()Ljava/lang/String; m_16804_ + static + l ()Ljava/lang/String; m_16805_ + static + m ()Ljava/lang/String; m_16806_ + static + n ()Ljava/lang/String; m_16807_ + static + o ()Ljava/lang/String; m_16808_ + static + p ()Ljava/lang/String; m_16809_ + static + q ()Ljava/lang/String; m_16810_ + static + r ()Ljava/lang/String; m_16811_ + static + s ()Ljava/lang/String; m_276734_ + static + t ()Ljava/lang/String; m_16812_ + static + u ()Ljava/lang/String; m_16813_ + static + v ()Ljava/lang/String; m_16814_ + static + w ()Ljava/lang/String; m_16815_ + static + x ()Ljava/lang/String; m_16816_ + static + y ()Ljava/lang/String; m_16817_ + static + z ()Ljava/lang/String; m_16819_ + static +avx net/minecraft/util/datafix/fixes/RemapChunkStatusFix + a f_279591_ + b f_279655_ + (Lcom/mojang/datafixers/schemas/Schema;Ljava/lang/String;Ljava/util/function/UnaryOperator;)V + 0 o p_281350_ + 1 o p_283581_ + 2 o p_282501_ + a (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; m_280394_ + 0 o p_281410_ + a (Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; m_280033_ + 0 o p_283662_ + b (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; m_284011_ + 0 o p_284697_ + c (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; m_280232_ + 0 o p_282869_ + makeRule ()Lcom/mojang/datafixers/TypeRewriteRule; makeRule +avy net/minecraft/util/datafix/fixes/RemoveGolemGossipFix + (Lcom/mojang/datafixers/schemas/Schema;Z)V + 0 o p_16823_ + 1 o p_16824_ + a (Lcom/mojang/serialization/Dynamic;Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; m_16829_ + static + 0 o p_16830_ + 1 o p_16831_ + a (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; m_16827_ + static + 0 o p_16828_ + a (Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; m_7504_ + 0 o p_16826_ + b (Lcom/mojang/serialization/Dynamic;)Z m_145631_ + static + 0 o p_145632_ +avz net/minecraft/util/datafix/fixes/RenamedCoralFansFix + a f_16848_ + ()V + static + ()V +aw net/minecraft/advancements/critereon/ChangeDimensionTrigger + a f_19753_ + ()V + static + ()V + a (Lcom/google/gson/JsonObject;Lba;Lbe;)Law$a; m_7214_ + 0 o p_19762_ + 1 o p_286295_ + 2 o p_19764_ + a ()Lacq; m_7295_ + a (Lacp;Lacp;Law$a;)Z m_19765_ + static + 0 o p_19766_ + 1 o p_19767_ + 2 o p_19768_ + a (Laig;Lacp;Lacp;)V m_19757_ + 0 o p_19758_ + 1 o p_19759_ + 2 o p_19760_ + b (Lcom/google/gson/JsonObject;Lba;Lbe;)Lar; m_7214_ + 0 o p_286763_ + 1 o p_286479_ + 2 o p_286548_ +aw$a net/minecraft/advancements/critereon/ChangeDimensionTrigger$TriggerInstance + a f_19774_ + b f_19775_ + (Lba;Lacp;Lacp;)V + 0 o p_286423_ + 1 o p_286585_ + 2 o p_286666_ + a (Lacp;)Law$a; m_19782_ + static + 0 o p_19783_ + a (Lct;)Lcom/google/gson/JsonObject; m_7683_ + 0 o p_19781_ + a (Lacp;Lacp;)Law$a; m_147560_ + static + 0 o p_147561_ + 1 o p_147562_ + b (Lacp;)Law$a; m_147563_ + static + 0 o p_147564_ + b (Lacp;Lacp;)Z m_19784_ + 0 o p_19785_ + 1 o p_19786_ + c ()Law$a; m_147565_ + static +awa net/minecraft/util/datafix/fixes/RenamedCoralFix + a f_16850_ + ()V + static + ()V +awb net/minecraft/util/datafix/fixes/ReorganizePoi + (Lcom/mojang/datafixers/schemas/Schema;Z)V + 0 o p_16853_ + 1 o p_16854_ + a (Lcom/mojang/serialization/DynamicOps;)Ljava/util/function/Function; m_16859_ + static + 0 o p_16860_ + a (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; m_16857_ + static + 0 o p_16858_ + a (Lcom/mojang/datafixers/util/Pair;)Lcom/mojang/datafixers/util/Pair; m_145639_ + static + 0 o p_145640_ + makeRule ()Lcom/mojang/datafixers/TypeRewriteRule; makeRule +awc net/minecraft/util/datafix/fixes/SavedDataFeaturePoolElementFix + a f_145641_ + b f_145642_ + c f_145643_ + ()V + static + (Lcom/mojang/datafixers/schemas/Schema;)V + 0 o p_145646_ + a (Ljava/util/stream/Stream;)Ljava/util/stream/Stream; m_145660_ + static + 0 o p_145661_ + a (Lcom/mojang/serialization/Dynamic;[Ljava/lang/String;)Lcom/mojang/serialization/OptionalDynamic; m_145649_ + static + 0 o p_145650_ + 1 o p_145651_ + a (Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;)Ljava/util/Optional; m_145652_ + static + 0 o p_145653_ + 1 o p_145654_ + 2 o p_145655_ + 3 o p_145656_ + 4 o p_145657_ + 5 o p_145658_ + 6 o p_145659_ + a (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; m_145647_ + static + 0 o p_145648_ + a (I)Ljava/lang/String; m_274162_ + static + 0 o p_274929_ + b (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; m_145662_ + static + 0 o p_145663_ + c (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; m_145664_ + static + 0 o p_145665_ + d (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; m_145666_ + static + 0 o p_145667_ + e (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; m_145668_ + static + 0 o p_145669_ + makeRule ()Lcom/mojang/datafixers/TypeRewriteRule; makeRule +awd net/minecraft/util/datafix/fixes/SavedDataUUIDFix + b f_201930_ + ()V + static + (Lcom/mojang/datafixers/schemas/Schema;)V + 0 o p_16863_ + a (Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; m_16864_ + static + 0 o p_16865_ + b (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; m_145673_ + static + 0 o p_145674_ + b (Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; m_145671_ + static + 0 o p_145672_ + c (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; m_145675_ + static + 0 o p_145676_ + d (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; m_145677_ + static + 0 o p_145678_ + e (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; m_145679_ + static + 0 o p_145680_ + f (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; m_145681_ + static + 0 o p_145682_ + g (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; m_145683_ + static + 0 o p_145684_ + makeRule ()Lcom/mojang/datafixers/TypeRewriteRule; makeRule +awe net/minecraft/util/datafix/fixes/SimpleEntityRenameFix + (Ljava/lang/String;Lcom/mojang/datafixers/schemas/Schema;Z)V + 0 o p_16901_ + 1 o p_16902_ + 2 o p_16903_ + a (Ljava/lang/String;Lcom/mojang/serialization/Dynamic;)Lcom/mojang/datafixers/util/Pair; m_6942_ + 0 o p_16907_ + 1 o p_16908_ + a (Ljava/lang/String;Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/util/Pair; m_6911_ + 0 o p_16905_ + 1 o p_16906_ +awf net/minecraft/util/datafix/fixes/SimplestEntityRenameFix + a f_16909_ + (Ljava/lang/String;Lcom/mojang/datafixers/schemas/Schema;Z)V + 0 o p_16911_ + 1 o p_16912_ + 2 o p_16913_ + a (Lcom/mojang/datafixers/types/templates/TaggedChoice$TaggedChoiceType;Lcom/mojang/datafixers/types/templates/TaggedChoice$TaggedChoiceType;Lcom/mojang/serialization/DynamicOps;)Ljava/util/function/Function; m_16918_ + 0 o p_16919_ + 1 o p_16920_ + 2 o p_16921_ + a (Lcom/mojang/serialization/DynamicOps;)Ljava/util/function/Function; m_16928_ + 0 o p_16929_ + a (Lcom/mojang/datafixers/types/templates/TaggedChoice$TaggedChoiceType;Lcom/mojang/datafixers/types/templates/TaggedChoice$TaggedChoiceType;Lcom/mojang/datafixers/util/Pair;)Lcom/mojang/datafixers/util/Pair; m_145685_ + 0 o p_145686_ + 1 o p_145687_ + 2 o p_145688_ + a (Lcom/mojang/datafixers/types/templates/TaggedChoice$TaggedChoiceType;Lcom/mojang/datafixers/types/templates/TaggedChoice$TaggedChoiceType;Ljava/lang/String;)Ljava/lang/String; m_241759_ + 0 o p_242141_ + 1 o p_242142_ + 2 o p_145692_ + a (Lcom/mojang/datafixers/util/Pair;)Lcom/mojang/datafixers/util/Pair; m_145693_ + 0 o p_145694_ + a (Ljava/lang/String;)Ljava/lang/String; m_7476_ + 0 o p_16930_ + makeRule ()Lcom/mojang/datafixers/TypeRewriteRule; makeRule +awg net/minecraft/util/datafix/fixes/SpawnerDataFix + (Lcom/mojang/datafixers/schemas/Schema;)V + 0 o p_185133_ + a (Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/types/Type;Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/types/Type;Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; m_185134_ + 0 o p_185135_ + 1 o p_185136_ + 2 o p_185137_ + 3 o p_185138_ + 4 o p_185139_ + a (Lcom/mojang/datafixers/types/Type;Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; m_185140_ + 0 o p_185141_ + 1 o p_185142_ + a (Lcom/mojang/serialization/DynamicOps;Ljava/lang/Object;)Lcom/mojang/datafixers/util/Pair; m_185143_ + static + 0 o p_185144_ + 1 o p_185145_ + b (Lcom/mojang/datafixers/types/Type;Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; m_185146_ + 0 o p_185147_ + 1 o p_185148_ + c (Lcom/mojang/datafixers/types/Type;Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; m_185149_ + 0 o p_185150_ + 1 o p_185151_ + d (Lcom/mojang/datafixers/types/Type;Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; m_185152_ + 0 o p_185153_ + 1 o p_185154_ + makeRule ()Lcom/mojang/datafixers/TypeRewriteRule; makeRule +awh net/minecraft/util/datafix/fixes/StatsCounterFix + a f_16932_ + b f_16933_ + c f_145695_ + d f_145696_ + e f_16934_ + f f_16935_ + g f_16936_ + h f_145697_ + ()V + static + (Lcom/mojang/datafixers/schemas/Schema;Z)V + 0 o p_16939_ + 1 o p_16940_ + a (Lcom/mojang/datafixers/types/Type;Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; m_16942_ + 0 o p_16943_ + 1 o p_16944_ + a ()Ljava/lang/IllegalStateException; m_145698_ + static + a (Lcom/mojang/serialization/Dynamic;Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; m_145699_ + static + 0 o p_145700_ + 1 o p_145701_ + a (Ljava/lang/String;)Ljava/lang/String; m_16948_ + 0 o p_16949_ + b (Ljava/lang/String;)Ljava/lang/String; m_16950_ + 0 o p_16951_ + makeRule ()Lcom/mojang/datafixers/TypeRewriteRule; makeRule +awi net/minecraft/util/datafix/fixes/StatsRenameFix + a f_145702_ + b f_145703_ + (Lcom/mojang/datafixers/schemas/Schema;Ljava/lang/String;Ljava/util/Map;)V + 0 o p_145705_ + 1 o p_145706_ + 2 o p_145707_ + a (Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; m_181048_ + 0 o p_181049_ + 1 o p_181050_ + 2 o p_145716_ + a (Ljava/lang/String;)Ljava/lang/String; m_181055_ + 0 o p_145721_ + a (Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; m_181043_ + 0 o p_181044_ + 1 o p_181045_ + 2 o p_181046_ + 3 o p_145712_ + a (Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; m_181052_ + 0 o p_181053_ + 1 o p_145719_ + a ()Lcom/mojang/datafixers/TypeRewriteRule; m_181042_ + b (Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; m_181067_ + 0 o p_181068_ + 1 o p_181069_ + b (Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; m_181058_ + 0 o p_181059_ + 1 o p_181060_ + 2 o p_181061_ + 3 o p_181062_ + b (Ljava/lang/String;)Ljava/lang/String; m_181070_ + 0 o p_181071_ + b ()Lcom/mojang/datafixers/TypeRewriteRule; m_181057_ + b (Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; m_181063_ + 0 o p_181064_ + 1 o p_181065_ + 2 o p_181066_ + c ()Ljava/lang/IllegalStateException; m_181072_ + static + makeRule ()Lcom/mojang/datafixers/TypeRewriteRule; makeRule +awj net/minecraft/util/datafix/fixes/StriderGravityFix + (Lcom/mojang/datafixers/schemas/Schema;Z)V + 0 o p_16954_ + 1 o p_16955_ + a (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; m_16958_ + 0 o p_16959_ + a (Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; m_7504_ + 0 o p_16957_ +awk net/minecraft/util/datafix/fixes/StructureReferenceCountFix + (Lcom/mojang/datafixers/schemas/Schema;Z)V + 0 o p_16961_ + 1 o p_16962_ + a (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; m_16965_ + static + 0 o p_16966_ + a (Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; m_16963_ + static + 0 o p_16964_ + a (Ljava/lang/Integer;)Z m_145723_ + static + 0 o p_145724_ + b (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; m_16969_ + static + 0 o p_16970_ + makeRule ()Lcom/mojang/datafixers/TypeRewriteRule; makeRule +awl net/minecraft/util/datafix/fixes/StructureSettingsFlattenFix + (Lcom/mojang/datafixers/schemas/Schema;)V + 0 o p_204000_ + a (Lcom/mojang/serialization/Dynamic;Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; m_204011_ + static + 0 o p_204012_ + 1 o p_204013_ + a (Lcom/mojang/serialization/Dynamic;Lcom/mojang/serialization/Dynamic;Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; m_207672_ + static + 0 o p_207673_ + 1 o p_207674_ + 2 o p_207675_ + a (Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; m_204001_ + static + 0 o p_204002_ + 1 o p_204003_ + a (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; m_204006_ + static + 0 o p_204007_ + a (Lcom/mojang/datafixers/util/Pair;)Lcom/mojang/datafixers/util/Pair; m_204004_ + static + 0 o p_204005_ + a (Lcom/mojang/serialization/Dynamic;Lcom/mojang/datafixers/util/Pair;)Lcom/mojang/datafixers/util/Pair; m_204008_ + static + 0 o p_204009_ + 1 o p_204010_ + b (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; m_204017_ + static + 0 o p_204018_ + b (Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; m_204014_ + static + 0 o p_204015_ + 1 o p_204016_ + c (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; m_204019_ + static + 0 o p_204020_ + makeRule ()Lcom/mojang/datafixers/TypeRewriteRule; makeRule +awm net/minecraft/util/datafix/fixes/StructuresBecomeConfiguredFix + a f_207676_ + ()V + static + (Lcom/mojang/datafixers/schemas/Schema;)V + 0 o p_207679_ + a (Lcom/mojang/serialization/Dynamic;Lawm$a;)Ljava/util/Optional; m_207693_ + 0 o p_207694_ + 1 o p_207695_ + a (Lcom/mojang/datafixers/util/Pair;Lcom/mojang/serialization/Dynamic;)Lcom/mojang/datafixers/util/Pair; m_207684_ + 0 o p_207685_ + 1 o p_207686_ + a (Lcom/mojang/serialization/Dynamic;Lcom/mojang/datafixers/util/Pair;)Lcom/mojang/datafixers/util/Pair; m_207696_ + 0 o p_207697_ + 1 o p_207698_ + a (Ljava/util/List;Lcom/mojang/serialization/Dynamic;Lcom/mojang/serialization/Dynamic;)V m_207702_ + static + 0 o p_207703_ + 1 o p_207704_ + 2 o p_207705_ + a (Lcom/mojang/serialization/Dynamic;Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; m_207699_ + 0 o p_207700_ + 1 o p_207701_ + a (Lawm$a;Lit/unimi/dsi/fastutil/objects/Object2IntArrayMap;Lcom/mojang/serialization/Dynamic;)V m_207680_ + static + 0 o p_207681_ + 1 o p_207682_ + 2 o p_207683_ + a (Lcom/mojang/datafixers/util/Pair;Lcom/mojang/serialization/Dynamic;Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; m_207687_ + 0 o p_207688_ + 1 o p_207689_ + 2 o p_207690_ + a (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; m_207691_ + 0 o p_207692_ + b (Lcom/mojang/datafixers/util/Pair;Lcom/mojang/serialization/Dynamic;)Lcom/mojang/datafixers/util/Pair; m_207710_ + 0 o p_207711_ + 1 o p_207712_ + b (Lcom/mojang/serialization/Dynamic;Lcom/mojang/datafixers/util/Pair;)Lcom/mojang/datafixers/util/Pair; m_207713_ + 0 o p_207714_ + 1 o p_207715_ + b (Ljava/util/List;Lcom/mojang/serialization/Dynamic;Lcom/mojang/serialization/Dynamic;)V m_207719_ + static + 0 o p_207720_ + 1 o p_207721_ + 2 o p_207722_ + b (Lcom/mojang/serialization/Dynamic;Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; m_207716_ + 0 o p_207717_ + 1 o p_207718_ + b (Lawm$a;Lit/unimi/dsi/fastutil/objects/Object2IntArrayMap;Lcom/mojang/serialization/Dynamic;)V m_207706_ + static + 0 o p_207707_ + 1 o p_207708_ + 2 o p_207709_ + c (Lcom/mojang/datafixers/util/Pair;Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; m_207723_ + 0 o p_207724_ + 1 o p_207725_ + c (Lcom/mojang/serialization/Dynamic;Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; m_207726_ + 0 o p_207727_ + 1 o p_207728_ + d (Lcom/mojang/serialization/Dynamic;Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; m_207729_ + 0 o p_207730_ + 1 o p_207731_ + e (Lcom/mojang/serialization/Dynamic;Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; m_207732_ + 0 o p_207733_ + 1 o p_207734_ + makeRule ()Lcom/mojang/datafixers/TypeRewriteRule; makeRule +awm$a net/minecraft/util/datafix/fixes/StructuresBecomeConfiguredFix$Conversion + a f_207736_ + b f_207737_ + (Ljava/util/Map;Ljava/lang/String;)V + 0 o f_207736_ + 1 o f_207737_ + a (Lcom/google/common/collect/ImmutableMap$Builder;Ljava/util/Map$Entry;Ljava/lang/String;)V m_207742_ + static + 0 o p_207743_ + 1 o p_207744_ + 2 o p_207745_ + a (Ljava/lang/String;)Lawm$a; m_207746_ + static + 0 o p_207747_ + a (Ljava/util/Map;Ljava/lang/String;)Lawm$a; m_207750_ + static + 0 o p_207751_ + 1 o p_207752_ + a ()Ljava/util/Map; f_207736_ + a (Ljava/util/Map;)Ljava/util/Map; m_207748_ + static + 0 o p_207749_ + b ()Ljava/lang/String; f_207737_ + equals (Ljava/lang/Object;)Z equals + 0 o p_207755_ + hashCode ()I hashCode + toString ()Ljava/lang/String; toString +awn net/minecraft/util/datafix/fixes/TeamDisplayNameFix + (Lcom/mojang/datafixers/schemas/Schema;Z)V + 0 o p_17001_ + 1 o p_17002_ + a (Lcom/mojang/serialization/Dynamic;Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; m_145729_ + static + 0 o p_145730_ + 1 o p_145731_ + a (Lcom/mojang/serialization/DynamicOps;)Ljava/util/function/Function; m_17010_ + static + 0 o p_17011_ + a (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; m_145727_ + static + 0 o p_145728_ + a (Lcom/mojang/datafixers/util/Pair;)Lcom/mojang/datafixers/util/Pair; m_145725_ + static + 0 o p_145726_ + a (Ljava/lang/String;)Ljava/lang/String; m_145732_ + static + 0 o p_145733_ + makeRule ()Lcom/mojang/datafixers/TypeRewriteRule; makeRule +awo net/minecraft/util/datafix/fixes/TrappedChestBlockEntityFix + a f_17015_ + b f_145734_ + c f_145735_ + ()V + static + (Lcom/mojang/datafixers/schemas/Schema;Z)V + 0 o p_17018_ + 1 o p_17019_ + a (IILit/unimi/dsi/fastutil/ints/IntSet;Lcom/mojang/datafixers/types/templates/TaggedChoice$TaggedChoiceType;Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; m_145736_ + static + 0 o p_145737_ + 1 o p_145738_ + 2 o p_145739_ + 3 o p_145740_ + 4 o p_145741_ + a (Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; m_145742_ + 0 o p_145743_ + 1 o p_145744_ + 2 o p_145745_ + 3 o p_145746_ + a (Lcom/mojang/datafixers/types/templates/TaggedChoice$TaggedChoiceType;IILit/unimi/dsi/fastutil/ints/IntSet;Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; m_145747_ + static + 0 o p_145748_ + 1 o p_145749_ + 2 o p_145750_ + 3 o p_145751_ + 4 o p_145752_ + a (Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; m_17026_ + 0 o p_17027_ + 1 o p_17028_ + 2 o p_17029_ + 3 o p_17030_ + 4 o p_17031_ + a (Lcom/mojang/datafixers/util/Pair;)Lcom/mojang/datafixers/util/Pair; m_145753_ + static + 0 o p_145754_ + a (Ljava/lang/String;)Ljava/lang/String; m_145755_ + static + 0 o p_145756_ + makeRule ()Lcom/mojang/datafixers/TypeRewriteRule; makeRule +awo$a net/minecraft/util/datafix/fixes/TrappedChestBlockEntityFix$TrappedChestSection + h f_17048_ + (Lcom/mojang/datafixers/Typed;Lcom/mojang/datafixers/schemas/Schema;)V + 0 o p_17050_ + 1 o p_17051_ + a ()Z m_7969_ + a (I)Z m_17053_ + 0 o p_17054_ +awp net/minecraft/util/datafix/fixes/VariantRenameFix + a f_216740_ + (Lcom/mojang/datafixers/schemas/Schema;Ljava/lang/String;Lcom/mojang/datafixers/DSL$TypeReference;Ljava/lang/String;Ljava/util/Map;)V + 0 o p_216742_ + 1 o p_216743_ + 2 o p_216744_ + 3 o p_216745_ + 4 o p_216746_ + a (Lcom/mojang/serialization/Dynamic;Ljava/lang/String;)Lcom/mojang/serialization/Dynamic; m_216751_ + 0 o p_216752_ + 1 o p_216753_ + a (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; m_216749_ + 0 o p_216750_ + a (Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; m_7504_ + 0 o p_216748_ + b (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; m_216754_ + 0 o p_216755_ +awq net/minecraft/util/datafix/fixes/VillagerDataFix + (Lcom/mojang/datafixers/schemas/Schema;Ljava/lang/String;)V + 0 o p_17056_ + 1 o p_17057_ + a (II)Ljava/lang/String; m_17058_ + static + 0 o p_17059_ + 1 o p_17060_ + a (Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; m_7504_ + 0 o p_17062_ +awr net/minecraft/util/datafix/fixes/VillagerFollowRangeFix + a f_145757_ + b f_145758_ + (Lcom/mojang/datafixers/schemas/Schema;)V + 0 o p_17064_ + a (Lcom/mojang/serialization/Dynamic;Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; m_17069_ + static + 0 o p_17070_ + 1 o p_17071_ + a (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; m_17067_ + static + 0 o p_17068_ + a (Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; m_7504_ + 0 o p_17066_ + b (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; m_145759_ + static + 0 o p_145760_ +aws net/minecraft/util/datafix/fixes/VillagerRebuildLevelAndXpFix + a f_145761_ + b f_17074_ + ()V + static + (Lcom/mojang/datafixers/schemas/Schema;Z)V + 0 o p_17077_ + 1 o p_17078_ + a (Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/types/Type;Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; m_17092_ + static + 0 o p_17093_ + 1 o p_17094_ + 2 o p_17095_ + 3 o p_17096_ + 4 o p_17097_ + 5 o p_17098_ + a (Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/Typed;)Ljava/lang/Integer; m_145767_ + static + 0 o p_145768_ + 1 o p_145769_ + a (I)I m_17079_ + static + 0 o p_17080_ + a (Lcom/mojang/datafixers/Typed;I)Lcom/mojang/datafixers/Typed; m_17099_ + static + 0 o p_17100_ + 1 o p_17101_ + a (Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; m_145762_ + static + 0 o p_145763_ + 1 o p_145764_ + 2 o p_145765_ + 3 o p_145766_ + a (ILcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; m_17081_ + static + 0 o p_17082_ + 1 o p_17083_ + b (Lcom/mojang/datafixers/Typed;I)Lcom/mojang/datafixers/Typed; m_17108_ + static + 0 o p_17109_ + 1 o p_17110_ + b (ILcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; m_17102_ + static + 0 o p_17103_ + 1 o p_17104_ + b (Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/Typed;)Ljava/util/Optional; m_145770_ + static + 0 o p_145771_ + 1 o p_145772_ + c (ILcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; m_145773_ + static + 0 o p_145774_ + 1 o p_145775_ + makeRule ()Lcom/mojang/datafixers/TypeRewriteRule; makeRule +awt net/minecraft/util/datafix/fixes/VillagerTradeFix + (Lcom/mojang/datafixers/schemas/Schema;Z)V + 0 o p_17116_ + 1 o p_17117_ + a (Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/OpticFinder;Ljava/util/function/Function;Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; m_17118_ + static + 0 o p_17119_ + 1 o p_17120_ + 2 o p_17121_ + 3 o p_17122_ + 4 o p_17123_ + 5 o p_17124_ + 6 o p_17125_ + a (Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; m_17133_ + 0 o p_17134_ + 1 o p_17135_ + a (Lcom/mojang/datafixers/OpticFinder;Ljava/util/function/Function;Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; m_145783_ + static + 0 o p_145784_ + 1 o p_145785_ + 2 o p_145786_ + 3 o p_145787_ + 4 o p_145788_ + a (Lcom/mojang/datafixers/util/Pair;)Lcom/mojang/datafixers/util/Pair; m_17144_ + static + 0 o p_17145_ + a (Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; m_7504_ + 0 o p_17143_ + a (Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/OpticFinder;Ljava/util/function/Function;Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; m_145776_ + static + 0 o p_145777_ + 1 o p_145778_ + 2 o p_145779_ + 3 o p_145780_ + 4 o p_145781_ + 5 o p_145782_ + a (Ljava/lang/String;)Ljava/lang/String; m_145789_ + static + 0 o p_145790_ + b (Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; m_17148_ + 0 o p_17149_ + 1 o p_17150_ +awu net/minecraft/util/datafix/fixes/WallPropertyFix + a f_17151_ + ()V + static + (Lcom/mojang/datafixers/schemas/Schema;Z)V + 0 o p_17154_ + 1 o p_17155_ + a (Lcom/mojang/serialization/Dynamic;Ljava/lang/String;)Lcom/mojang/serialization/Dynamic; m_17160_ + static + 0 o p_17161_ + 1 o p_17162_ + a (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; m_17158_ + static + 0 o p_17159_ + a (Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; m_17156_ + static + 0 o p_17157_ + a (Ljava/lang/String;)Ljava/lang/String; m_17163_ + static + 0 o p_17164_ + b (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; m_17165_ + static + 0 o p_17166_ + c (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; m_17167_ + static + 0 o p_17168_ + makeRule ()Lcom/mojang/datafixers/TypeRewriteRule; makeRule +awv net/minecraft/util/datafix/fixes/WeaponSmithChestLootTableFix + (Lcom/mojang/datafixers/schemas/Schema;Z)V + 0 o p_203111_ + 1 o p_203112_ + a (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; m_203115_ + static + 0 o p_203116_ + a (Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; m_7504_ + 0 o p_203114_ +aww net/minecraft/util/datafix/fixes/WorldGenSettingsDisallowOldCustomWorldsFix + (Lcom/mojang/datafixers/schemas/Schema;)V + 0 o p_185157_ + a (Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; m_185158_ + static + 0 o p_185159_ + 1 o p_185160_ + a (Lcom/mojang/serialization/Dynamic;Lcom/mojang/serialization/Dynamic;)V m_185165_ + static + 0 o p_185166_ + 1 o p_185167_ + a (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/DataResult; m_185163_ + static + 0 o p_185164_ + a (Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; m_185161_ + static + 0 o p_185162_ + a (Ljava/util/Map;)Ljava/util/Map; m_185168_ + static + 0 o p_185169_ + makeRule ()Lcom/mojang/datafixers/TypeRewriteRule; makeRule +awx net/minecraft/util/datafix/fixes/WorldGenSettingsFix + a f_145791_ + b f_145792_ + c f_145793_ + d f_145794_ + e f_145795_ + f f_145796_ + g f_145797_ + h f_145798_ + i f_145799_ + j f_17170_ + ()V + static + (Lcom/mojang/datafixers/schemas/Schema;)V + 0 o p_17173_ + a (JLcom/mojang/serialization/DynamicLike;Lcom/mojang/serialization/Dynamic;Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; m_17174_ + static + 0 o p_17175_ + 1 o p_17176_ + 2 o p_17177_ + 3 o p_17178_ + a (Ljava/lang/String;II)I m_17231_ + static + 0 o p_17232_ + 1 o p_17233_ + 2 o p_17234_ + a (Lcom/mojang/serialization/DynamicOps;Lcom/mojang/serialization/OptionalDynamic;)Ljava/util/Map; m_17217_ + static + 0 o p_17218_ + 1 o p_17219_ + a (Lcom/mojang/serialization/Dynamic;Lorg/apache/commons/lang3/mutable/MutableBoolean;Lorg/apache/commons/lang3/mutable/MutableInt;Lorg/apache/commons/lang3/mutable/MutableInt;Lorg/apache/commons/lang3/mutable/MutableInt;Ljava/util/Map;Lcom/mojang/serialization/Dynamic;Lcom/mojang/serialization/Dynamic;)V m_145800_ + static + 0 o p_145801_ + 1 o p_145802_ + 2 o p_145803_ + 3 o p_145804_ + 4 o p_145805_ + 5 o p_145806_ + 6 o p_145807_ + 7 o p_145808_ + a (Lcom/mojang/serialization/Dynamic;JLcom/mojang/serialization/Dynamic;Z)Ljava/lang/Object; m_17190_ + static + 0 o p_17191_ + 1 o p_17192_ + 2 o p_17193_ + 3 o p_17194_ + a (Lcom/mojang/serialization/OptionalDynamic;Ljava/util/Map$Entry;)Lcom/mojang/serialization/Dynamic; m_17223_ + static + 0 o p_17224_ + 1 o p_17225_ + a (Lorg/apache/commons/lang3/mutable/MutableBoolean;Lorg/apache/commons/lang3/mutable/MutableInt;Lorg/apache/commons/lang3/mutable/MutableInt;Lorg/apache/commons/lang3/mutable/MutableInt;Ljava/util/Map;Lcom/mojang/serialization/Dynamic;Lcom/mojang/serialization/Dynamic;)V m_145817_ + static + 0 o p_145818_ + 1 o p_145819_ + 2 o p_145820_ + 3 o p_145821_ + 4 o p_145822_ + 5 o p_145823_ + 6 o p_145824_ + a (Ljava/lang/String;I)I m_17228_ + static + 0 o p_17229_ + 1 o p_17230_ + a (Ljava/util/Optional;Lcom/mojang/serialization/Dynamic;)Ljava/util/Optional; m_17240_ + static + 0 o p_17241_ + 1 o p_17242_ + a (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; m_17185_ + static + 0 o p_17186_ + a (Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; m_17183_ + static + 0 o p_17184_ + a (Lcom/google/common/collect/ImmutableMap$Builder;Lcom/mojang/serialization/DynamicOps;Ljava/lang/String;)V m_17179_ + static + 0 o p_17180_ + 1 o p_17181_ + 2 o p_17182_ + a (Ljava/util/Map;Ljava/lang/String;Ljava/lang/String;I)V m_17235_ + static + 0 o p_17236_ + 1 o p_17237_ + 2 o p_17238_ + 3 o p_17239_ + a (Lcom/mojang/serialization/DynamicOps;Ljava/util/Map$Entry;)Lcom/mojang/serialization/Dynamic; m_17220_ + static + 0 o p_17221_ + 1 o p_17222_ + a (Lcom/mojang/serialization/Dynamic;Lorg/apache/commons/lang3/mutable/MutableBoolean;Lorg/apache/commons/lang3/mutable/MutableInt;Lorg/apache/commons/lang3/mutable/MutableInt;Lorg/apache/commons/lang3/mutable/MutableInt;Ljava/util/Map;Ljava/util/Map;)V m_145809_ + static + 0 o p_145810_ + 1 o p_145811_ + 2 o p_145812_ + 3 o p_145813_ + 4 o p_145814_ + 5 o p_145815_ + 6 o p_145816_ + a (Lorg/apache/commons/lang3/mutable/MutableBoolean;Lorg/apache/commons/lang3/mutable/MutableInt;Lorg/apache/commons/lang3/mutable/MutableInt;Lorg/apache/commons/lang3/mutable/MutableInt;Ljava/util/Map;Ljava/util/Map;)V m_17251_ + static + 0 o p_17252_ + 1 o p_17253_ + 2 o p_17254_ + 3 o p_17255_ + 4 o p_17256_ + 5 o p_17257_ + a (Lcom/mojang/serialization/Dynamic;JZZ)Lcom/mojang/serialization/Dynamic; m_17195_ + static + 0 o p_17196_ + 1 o p_17197_ + 2 o p_17198_ + 3 o p_17199_ + a (Ljava/lang/String;)Ljava/lang/String; m_17226_ + static + 0 o p_17227_ + a (Lcom/mojang/serialization/Dynamic;J)Lcom/mojang/serialization/Dynamic; m_17187_ + static + 0 o p_17188_ + 1 o p_17189_ + b (Lcom/mojang/serialization/Dynamic;)Ljava/util/Optional; m_17258_ + static + 0 o p_17259_ + c (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; m_17260_ + static + 0 o p_17261_ + d (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; m_17262_ + static + 0 o p_17263_ + makeRule ()Lcom/mojang/datafixers/TypeRewriteRule; makeRule +awx$a net/minecraft/util/datafix/fixes/WorldGenSettingsFix$StructureFeatureConfiguration + a f_17265_ + b f_17266_ + c f_17267_ + d f_17268_ + ()V + static + (III)V + 0 o p_17271_ + 1 o p_17272_ + 2 o p_17273_ + a (Lcom/mojang/serialization/DynamicOps;)Lcom/mojang/serialization/Dynamic; m_17276_ + 0 o p_17277_ + a (Lawx$a;)Ljava/lang/Integer; m_145825_ + static + 0 o p_145826_ + a (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; m_17278_ + static + 0 o p_17279_ + b (Lawx$a;)Ljava/lang/Integer; m_145827_ + static + 0 o p_145828_ + c (Lawx$a;)Ljava/lang/Integer; m_145829_ + static + 0 o p_145830_ +awy net/minecraft/util/datafix/fixes/WorldGenSettingsHeightAndBiomeFix + a f_185171_ + b f_185172_ + (Lcom/mojang/datafixers/schemas/Schema;)V + 0 o p_185174_ + a (ZZLcom/mojang/datafixers/types/Type;Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; m_185186_ + static + 0 o p_185187_ + 1 o p_185188_ + 2 o p_185189_ + 3 o p_185190_ + a ()Ljava/lang/IllegalStateException; m_185175_ + static + a (ZZLcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; m_185191_ + static + 0 o p_185192_ + 1 o p_185193_ + 2 o p_185194_ + a (ZLorg/apache/commons/lang3/mutable/MutableBoolean;Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; m_185182_ + static + 0 o p_185183_ + 1 o p_185184_ + 2 o p_185185_ + a (Lcom/mojang/datafixers/OpticFinder;Lcom/mojang/datafixers/types/Type;Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; m_185176_ + static + 0 o p_185177_ + 1 o p_185178_ + 2 o p_185179_ + a (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; m_185180_ + static + 0 o p_185181_ + b (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; m_185196_ + static + 0 o p_185197_ + b ()Ljava/lang/IllegalStateException; m_185195_ + static + b (ZZLcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; m_185198_ + static + 0 o p_185199_ + 1 o p_185200_ + 2 o p_185201_ + c (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; m_185202_ + static + 0 o p_185203_ + d (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; m_185204_ + static + 0 o p_185205_ + makeRule ()Lcom/mojang/datafixers/TypeRewriteRule; makeRule +awz net/minecraft/util/datafix/fixes/WriteAndReadFix + a f_17290_ + b f_17291_ + (Lcom/mojang/datafixers/schemas/Schema;Ljava/lang/String;Lcom/mojang/datafixers/DSL$TypeReference;)V + 0 o p_17293_ + 1 o p_17294_ + 2 o p_17295_ + makeRule ()Lcom/mojang/datafixers/TypeRewriteRule; makeRule +ax net/minecraft/advancements/critereon/ChanneledLightningTrigger + a f_21714_ + ()V + static + ()V + a (Laig;Lbfj;)Ldzk; m_21718_ + static + 0 o p_21719_ + 1 o p_21720_ + a (Lcom/google/gson/JsonObject;Lba;Lbe;)Lax$a; m_7214_ + 0 o p_286858_ + 1 o p_286240_ + 2 o p_286562_ + a ()Lacq; m_7295_ + a (Ljava/util/List;Lax$a;)Z m_21728_ + static + 0 o p_21729_ + 1 o p_21730_ + a (Laig;Ljava/util/Collection;)V m_21721_ + 0 o p_21722_ + 1 o p_21723_ + b (Lcom/google/gson/JsonObject;Lba;Lbe;)Lar; m_7214_ + 0 o p_286659_ + 1 o p_286337_ + 2 o p_286807_ +ax$a net/minecraft/advancements/critereon/ChanneledLightningTrigger$TriggerInstance + a f_21736_ + (Lba;[Lba;)V + 0 o p_286697_ + 1 o p_286366_ + a (Ljava/util/Collection;)Z m_21744_ + 0 o p_21745_ + a (Lct;)Lcom/google/gson/JsonObject; m_7683_ + 0 o p_21743_ + a (I)[Lba; m_285665_ + static + 0 o p_286116_ + a ([Lbo;)Lax$a; m_21746_ + static + 0 o p_21747_ +axa net/minecraft/util/datafix/fixes/ZombieVillagerRebuildXpFix + (Lcom/mojang/datafixers/schemas/Schema;Z)V + 0 o p_17298_ + 1 o p_17299_ + a (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; m_17302_ + static + 0 o p_17303_ + a (Lcom/mojang/datafixers/Typed;)Lcom/mojang/datafixers/Typed; m_7504_ + 0 o p_17301_ +axb net/minecraft/util/datafix/fixes/package-info +axc net/minecraft/util/datafix/package-info +axd net/minecraft/util/datafix/schemas/NamespacedSchema + a f_17304_ + b f_17305_ + ()V + static + (ILcom/mojang/datafixers/schemas/Schema;)V + 0 o p_17308_ + 1 o p_17309_ + a ()Lcom/mojang/datafixers/types/Type; m_17310_ + static + a (Ljava/lang/String;)Ljava/lang/String; m_17311_ + static + 0 o p_17312_ + getChoiceType (Lcom/mojang/datafixers/DSL$TypeReference;Ljava/lang/String;)Lcom/mojang/datafixers/types/Type; getChoiceType + 0 o p_17314_ + 1 o p_17315_ +axd$1 net/minecraft/util/datafix/schemas/NamespacedSchema$1 + ()V + a (Lcom/mojang/serialization/DynamicOps;Ljava/lang/String;)Ljava/lang/Object; write + 0 o p_17318_ + 1 o p_17319_ + read (Lcom/mojang/serialization/DynamicOps;Ljava/lang/Object;)Lcom/mojang/serialization/DataResult; read + 0 o p_17321_ + 1 o p_17322_ + toString ()Ljava/lang/String; toString + write (Lcom/mojang/serialization/DynamicOps;Ljava/lang/Object;)Ljava/lang/Object; write + 0 o p_17325_ + 1 o p_17326_ +axe net/minecraft/util/datafix/schemas/V100 + (ILcom/mojang/datafixers/schemas/Schema;)V + 0 o p_17328_ + 1 o p_17329_ + a (Lcom/mojang/datafixers/schemas/Schema;Ljava/util/Map;Ljava/lang/String;)V m_17335_ + static + 0 o p_17336_ + 1 o p_17337_ + 2 o p_17338_ + a (Lcom/mojang/datafixers/schemas/Schema;)Lcom/mojang/datafixers/types/templates/TypeTemplate; m_17330_ + static + 0 o p_17331_ + a (Lcom/mojang/datafixers/schemas/Schema;Ljava/lang/String;)Lcom/mojang/datafixers/types/templates/TypeTemplate; m_17332_ + static + 0 o p_17333_ + 1 o p_17334_ + b (Lcom/mojang/datafixers/schemas/Schema;Ljava/lang/String;)Lcom/mojang/datafixers/types/templates/TypeTemplate; m_17341_ + static + 0 o p_17342_ + 1 o p_17343_ + b (Lcom/mojang/datafixers/schemas/Schema;)Lcom/mojang/datafixers/types/templates/TypeTemplate; m_17339_ + static + 0 o p_17340_ + c (Lcom/mojang/datafixers/schemas/Schema;Ljava/lang/String;)Lcom/mojang/datafixers/types/templates/TypeTemplate; m_17346_ + static + 0 o p_17347_ + 1 o p_17348_ + c (Lcom/mojang/datafixers/schemas/Schema;)Lcom/mojang/datafixers/types/templates/TypeTemplate; m_17344_ + static + 0 o p_17345_ + registerEntities (Lcom/mojang/datafixers/schemas/Schema;)Ljava/util/Map; registerEntities + 0 o p_17350_ + registerTypes (Lcom/mojang/datafixers/schemas/Schema;Ljava/util/Map;Ljava/util/Map;)V registerTypes + 0 o p_17352_ + 1 o p_17353_ + 2 o p_17354_ +axf net/minecraft/util/datafix/schemas/V102 + (ILcom/mojang/datafixers/schemas/Schema;)V + 0 o p_17356_ + 1 o p_17357_ + a (Lcom/mojang/datafixers/schemas/Schema;)Lcom/mojang/datafixers/types/templates/TypeTemplate; m_17358_ + static + 0 o p_17359_ + registerTypes (Lcom/mojang/datafixers/schemas/Schema;Ljava/util/Map;Ljava/util/Map;)V registerTypes + 0 o p_17361_ + 1 o p_17362_ + 2 o p_17363_ +axg net/minecraft/util/datafix/schemas/V1022 + (ILcom/mojang/datafixers/schemas/Schema;)V + 0 o p_17365_ + 1 o p_17366_ + a (Lcom/mojang/datafixers/schemas/Schema;)Lcom/mojang/datafixers/types/templates/TypeTemplate; m_17368_ + static + 0 o p_17369_ + a ()Lcom/mojang/datafixers/types/templates/TypeTemplate; m_17367_ + static + b (Lcom/mojang/datafixers/schemas/Schema;)Lcom/mojang/datafixers/types/templates/TypeTemplate; m_17370_ + static + 0 o p_17371_ + registerTypes (Lcom/mojang/datafixers/schemas/Schema;Ljava/util/Map;Ljava/util/Map;)V registerTypes + 0 o p_17373_ + 1 o p_17374_ + 2 o p_17375_ +axh net/minecraft/util/datafix/schemas/V106 + (ILcom/mojang/datafixers/schemas/Schema;)V + 0 o p_17377_ + 1 o p_17378_ + a (Lcom/mojang/datafixers/schemas/Schema;)Lcom/mojang/datafixers/types/templates/TypeTemplate; m_17379_ + static + 0 o p_17380_ + registerTypes (Lcom/mojang/datafixers/schemas/Schema;Ljava/util/Map;Ljava/util/Map;)V registerTypes + 0 o p_17382_ + 1 o p_17383_ + 2 o p_17384_ +axi net/minecraft/util/datafix/schemas/V107 + (ILcom/mojang/datafixers/schemas/Schema;)V + 0 o p_17386_ + 1 o p_17387_ + registerEntities (Lcom/mojang/datafixers/schemas/Schema;)Ljava/util/Map; registerEntities + 0 o p_17389_ +axj net/minecraft/util/datafix/schemas/V1125 + (ILcom/mojang/datafixers/schemas/Schema;)V + 0 o p_17391_ + 1 o p_17392_ + a (Lcom/mojang/datafixers/schemas/Schema;)Lcom/mojang/datafixers/types/templates/TypeTemplate; m_17393_ + static + 0 o p_17394_ + b ()Lcom/mojang/datafixers/types/templates/TypeTemplate; m_17395_ + static + c ()Lcom/mojang/datafixers/types/templates/TypeTemplate; m_17396_ + static + registerBlockEntities (Lcom/mojang/datafixers/schemas/Schema;)Ljava/util/Map; registerBlockEntities + 0 o p_17398_ + registerTypes (Lcom/mojang/datafixers/schemas/Schema;Ljava/util/Map;Ljava/util/Map;)V registerTypes + 0 o p_17400_ + 1 o p_17401_ + 2 o p_17402_ +axk net/minecraft/util/datafix/schemas/V135 + (ILcom/mojang/datafixers/schemas/Schema;)V + 0 o p_17404_ + 1 o p_17405_ + a (Lcom/mojang/datafixers/schemas/Schema;)Lcom/mojang/datafixers/types/templates/TypeTemplate; m_17406_ + static + 0 o p_17407_ + b (Lcom/mojang/datafixers/schemas/Schema;)Lcom/mojang/datafixers/types/templates/TypeTemplate; m_17408_ + static + 0 o p_17409_ + registerTypes (Lcom/mojang/datafixers/schemas/Schema;Ljava/util/Map;Ljava/util/Map;)V registerTypes + 0 o p_17411_ + 1 o p_17412_ + 2 o p_17413_ +axl net/minecraft/util/datafix/schemas/V143 + (ILcom/mojang/datafixers/schemas/Schema;)V + 0 o p_17415_ + 1 o p_17416_ + registerEntities (Lcom/mojang/datafixers/schemas/Schema;)Ljava/util/Map; registerEntities + 0 o p_17418_ +axm net/minecraft/util/datafix/schemas/V1451 + (ILcom/mojang/datafixers/schemas/Schema;)V + 0 o p_17420_ + 1 o p_17421_ + a (Lcom/mojang/datafixers/schemas/Schema;)Lcom/mojang/datafixers/types/templates/TypeTemplate; m_17422_ + static + 0 o p_17423_ + registerBlockEntities (Lcom/mojang/datafixers/schemas/Schema;)Ljava/util/Map; registerBlockEntities + 0 o p_17425_ +axn net/minecraft/util/datafix/schemas/V1451_1 + (ILcom/mojang/datafixers/schemas/Schema;)V + 0 o p_17427_ + 1 o p_17428_ + a (Lcom/mojang/datafixers/schemas/Schema;)Lcom/mojang/datafixers/types/templates/TypeTemplate; m_17429_ + static + 0 o p_17430_ + registerTypes (Lcom/mojang/datafixers/schemas/Schema;Ljava/util/Map;Ljava/util/Map;)V registerTypes + 0 o p_17432_ + 1 o p_17433_ + 2 o p_17434_ +axo net/minecraft/util/datafix/schemas/V1451_2 + (ILcom/mojang/datafixers/schemas/Schema;)V + 0 o p_17436_ + 1 o p_17437_ + a (Lcom/mojang/datafixers/schemas/Schema;Ljava/lang/String;)Lcom/mojang/datafixers/types/templates/TypeTemplate; m_17438_ + static + 0 o p_17439_ + 1 o p_17440_ + registerBlockEntities (Lcom/mojang/datafixers/schemas/Schema;)Ljava/util/Map; registerBlockEntities + 0 o p_17442_ +axp net/minecraft/util/datafix/schemas/V1451_3 + (ILcom/mojang/datafixers/schemas/Schema;)V + 0 o p_17444_ + 1 o p_17445_ + a (Lcom/mojang/datafixers/schemas/Schema;Ljava/lang/String;)Lcom/mojang/datafixers/types/templates/TypeTemplate; m_17448_ + static + 0 o p_17449_ + 1 o p_17450_ + a (Lcom/mojang/datafixers/schemas/Schema;)Lcom/mojang/datafixers/types/templates/TypeTemplate; m_17446_ + static + 0 o p_17447_ + b (Lcom/mojang/datafixers/schemas/Schema;)Lcom/mojang/datafixers/types/templates/TypeTemplate; m_17451_ + static + 0 o p_17452_ + c (Lcom/mojang/datafixers/schemas/Schema;)Lcom/mojang/datafixers/types/templates/TypeTemplate; m_17453_ + static + 0 o p_17454_ + d (Lcom/mojang/datafixers/schemas/Schema;)Lcom/mojang/datafixers/types/templates/TypeTemplate; m_17455_ + static + 0 o p_17456_ + e (Lcom/mojang/datafixers/schemas/Schema;)Lcom/mojang/datafixers/types/templates/TypeTemplate; m_17457_ + static + 0 o p_17458_ + f (Lcom/mojang/datafixers/schemas/Schema;)Lcom/mojang/datafixers/types/templates/TypeTemplate; m_17459_ + static + 0 o p_17460_ + g (Lcom/mojang/datafixers/schemas/Schema;)Lcom/mojang/datafixers/types/templates/TypeTemplate; m_17461_ + static + 0 o p_17462_ + h (Lcom/mojang/datafixers/schemas/Schema;)Lcom/mojang/datafixers/types/templates/TypeTemplate; m_17463_ + static + 0 o p_17464_ + i (Lcom/mojang/datafixers/schemas/Schema;)Lcom/mojang/datafixers/types/templates/TypeTemplate; m_17465_ + static + 0 o p_17466_ + j (Lcom/mojang/datafixers/schemas/Schema;)Lcom/mojang/datafixers/types/templates/TypeTemplate; m_17467_ + static + 0 o p_17468_ + k (Lcom/mojang/datafixers/schemas/Schema;)Lcom/mojang/datafixers/types/templates/TypeTemplate; m_17469_ + static + 0 o p_17470_ + registerEntities (Lcom/mojang/datafixers/schemas/Schema;)Ljava/util/Map; registerEntities + 0 o p_17472_ +axq net/minecraft/util/datafix/schemas/V1451_4 + (ILcom/mojang/datafixers/schemas/Schema;)V + 0 o p_17519_ + 1 o p_17520_ + b ()Lcom/mojang/datafixers/types/templates/TypeTemplate; m_17521_ + static + registerTypes (Lcom/mojang/datafixers/schemas/Schema;Ljava/util/Map;Ljava/util/Map;)V registerTypes + 0 o p_17523_ + 1 o p_17524_ + 2 o p_17525_ +axr net/minecraft/util/datafix/schemas/V1451_5 + (ILcom/mojang/datafixers/schemas/Schema;)V + 0 o p_17527_ + 1 o p_17528_ + registerBlockEntities (Lcom/mojang/datafixers/schemas/Schema;)Ljava/util/Map; registerBlockEntities + 0 o p_17530_ +axs net/minecraft/util/datafix/schemas/V1451_6 + b f_181073_ + c f_181074_ + d f_181075_ + ()V + static + (ILcom/mojang/datafixers/schemas/Schema;)V + 0 o p_17532_ + 1 o p_17533_ + a (Lcom/mojang/datafixers/schemas/Schema;)Ljava/util/Map; m_181077_ + static + 0 o p_181078_ + a (Lcom/mojang/datafixers/schemas/Schema;Ljava/util/function/Supplier;)Lcom/mojang/datafixers/types/templates/TypeTemplate; m_17536_ + static + 0 o p_17537_ + 1 o p_17538_ + a (Ljava/util/Map;)Lcom/mojang/datafixers/types/templates/TypeTemplate; m_181079_ + static + 0 o p_181080_ + b ()Lcom/mojang/datafixers/types/templates/TypeTemplate; m_181081_ + static + b (Lcom/mojang/datafixers/schemas/Schema;)Lcom/mojang/datafixers/types/templates/TypeTemplate; m_181082_ + static + 0 o p_181083_ + c ()Lcom/mojang/datafixers/types/templates/TypeTemplate; m_181084_ + static + c (Lcom/mojang/datafixers/schemas/Schema;)Lcom/mojang/datafixers/types/templates/TypeTemplate; m_181085_ + static + 0 o p_181086_ + d (Lcom/mojang/datafixers/schemas/Schema;)Lcom/mojang/datafixers/types/templates/TypeTemplate; m_181087_ + static + 0 o p_181088_ + e (Lcom/mojang/datafixers/schemas/Schema;)Lcom/mojang/datafixers/types/templates/TypeTemplate; m_17534_ + static + 0 o p_17535_ + registerTypes (Lcom/mojang/datafixers/schemas/Schema;Ljava/util/Map;Ljava/util/Map;)V registerTypes + 0 o p_17540_ + 1 o p_17541_ + 2 o p_17542_ +axs$1 net/minecraft/util/datafix/schemas/V1451_6$1 + ()V + a (Ljava/lang/String;)Lcom/mojang/datafixers/util/Pair; m_181093_ + static + 0 o p_181094_ + a (Lcom/mojang/serialization/Dynamic;Lcom/mojang/datafixers/util/Pair;)Lcom/mojang/serialization/Dynamic; m_181090_ + static + 0 o p_181091_ + 1 o p_181092_ + apply (Lcom/mojang/serialization/DynamicOps;Ljava/lang/Object;)Ljava/lang/Object; apply + 0 o p_181096_ + 1 o p_181097_ +axs$2 net/minecraft/util/datafix/schemas/V1451_6$2 + ()V + a (Lcom/mojang/serialization/Dynamic;Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; m_181099_ + static + 0 o p_181100_ + 1 o p_181101_ + a (Ljava/lang/String;)Ljava/lang/String; m_181102_ + 0 o p_181103_ + apply (Lcom/mojang/serialization/DynamicOps;Ljava/lang/Object;)Ljava/lang/Object; apply + 0 o p_181105_ + 1 o p_181106_ + b (Lcom/mojang/serialization/Dynamic;Lcom/mojang/serialization/Dynamic;)Ljava/util/Optional; m_181107_ + 0 o p_181108_ + 1 o p_181109_ +axt net/minecraft/util/datafix/schemas/V1460 + (ILcom/mojang/datafixers/schemas/Schema;)V + 0 o p_17553_ + 1 o p_17554_ + a (Lcom/mojang/datafixers/schemas/Schema;Ljava/util/Map;Ljava/lang/String;)V m_17560_ + static + 0 o p_17561_ + 1 o p_17562_ + 2 o p_17563_ + a (Lcom/mojang/datafixers/schemas/Schema;Ljava/util/function/Supplier;)Lcom/mojang/datafixers/types/templates/TypeTemplate; m_17564_ + static + 0 o p_17565_ + 1 o p_17566_ + a (Ljava/util/Map;)Lcom/mojang/datafixers/types/templates/TypeTemplate; m_181112_ + static + 0 o p_181113_ + a (Lcom/mojang/datafixers/schemas/Schema;)Lcom/mojang/datafixers/types/templates/TypeTemplate; m_181110_ + static + 0 o p_181111_ + a (Lcom/mojang/datafixers/schemas/Schema;Ljava/lang/String;)Lcom/mojang/datafixers/types/templates/TypeTemplate; m_17557_ + static + 0 o p_17558_ + 1 o p_17559_ + b (Lcom/mojang/datafixers/schemas/Schema;Ljava/lang/String;)Lcom/mojang/datafixers/types/templates/TypeTemplate; m_17572_ + static + 0 o p_17573_ + 1 o p_17574_ + b ()Lcom/mojang/datafixers/types/templates/TypeTemplate; m_181114_ + static + b (Lcom/mojang/datafixers/schemas/Schema;)Lcom/mojang/datafixers/types/templates/TypeTemplate; m_181115_ + static + 0 o p_181116_ + b (Ljava/util/Map;)Lcom/mojang/datafixers/types/templates/TypeTemplate; m_17567_ + static + 0 o p_17568_ + b (Lcom/mojang/datafixers/schemas/Schema;Ljava/util/Map;Ljava/lang/String;)V m_17575_ + static + 0 o p_17576_ + 1 o p_17577_ + 2 o p_17578_ + c (Ljava/util/Map;)Lcom/mojang/datafixers/types/templates/TypeTemplate; m_17579_ + static + 0 o p_17580_ + c (Lcom/mojang/datafixers/schemas/Schema;Ljava/lang/String;)Lcom/mojang/datafixers/types/templates/TypeTemplate; m_17584_ + static + 0 o p_17585_ + 1 o p_17586_ + c ()Lcom/mojang/datafixers/types/templates/TypeTemplate; m_17569_ + static + c (Lcom/mojang/datafixers/schemas/Schema;)Lcom/mojang/datafixers/types/templates/TypeTemplate; m_17555_ + static + 0 o p_17556_ + d (Lcom/mojang/datafixers/schemas/Schema;)Lcom/mojang/datafixers/types/templates/TypeTemplate; m_17588_ + static + 0 o p_17589_ + d (Lcom/mojang/datafixers/schemas/Schema;Ljava/lang/String;)Lcom/mojang/datafixers/types/templates/TypeTemplate; m_17590_ + static + 0 o p_17591_ + 1 o p_17592_ + d ()Lcom/mojang/datafixers/types/templates/TypeTemplate; m_17587_ + static + e (Lcom/mojang/datafixers/schemas/Schema;)Lcom/mojang/datafixers/types/templates/TypeTemplate; m_17594_ + static + 0 o p_17595_ + e (Lcom/mojang/datafixers/schemas/Schema;Ljava/lang/String;)Lcom/mojang/datafixers/types/templates/TypeTemplate; m_17596_ + static + 0 o p_17597_ + 1 o p_17598_ + e ()Lcom/mojang/datafixers/types/templates/TypeTemplate; m_17593_ + static + f (Lcom/mojang/datafixers/schemas/Schema;Ljava/lang/String;)Lcom/mojang/datafixers/types/templates/TypeTemplate; m_17602_ + static + 0 o p_17603_ + 1 o p_17604_ + f ()Lcom/mojang/datafixers/types/templates/TypeTemplate; m_17599_ + static + f (Lcom/mojang/datafixers/schemas/Schema;)Lcom/mojang/datafixers/types/templates/TypeTemplate; m_17600_ + static + 0 o p_17601_ + g (Lcom/mojang/datafixers/schemas/Schema;)Lcom/mojang/datafixers/types/templates/TypeTemplate; m_17605_ + static + 0 o p_17606_ + g (Lcom/mojang/datafixers/schemas/Schema;Ljava/lang/String;)Lcom/mojang/datafixers/types/templates/TypeTemplate; m_17607_ + static + 0 o p_17608_ + 1 o p_17609_ + h (Lcom/mojang/datafixers/schemas/Schema;)Lcom/mojang/datafixers/types/templates/TypeTemplate; m_17610_ + static + 0 o p_17611_ + h (Lcom/mojang/datafixers/schemas/Schema;Ljava/lang/String;)Lcom/mojang/datafixers/types/templates/TypeTemplate; m_17612_ + static + 0 o p_17613_ + 1 o p_17614_ + i (Lcom/mojang/datafixers/schemas/Schema;Ljava/lang/String;)Lcom/mojang/datafixers/types/templates/TypeTemplate; m_17617_ + static + 0 o p_17618_ + 1 o p_17619_ + i (Lcom/mojang/datafixers/schemas/Schema;)Lcom/mojang/datafixers/types/templates/TypeTemplate; m_17615_ + static + 0 o p_17616_ + j (Lcom/mojang/datafixers/schemas/Schema;)Lcom/mojang/datafixers/types/templates/TypeTemplate; m_17620_ + static + 0 o p_17621_ + j (Lcom/mojang/datafixers/schemas/Schema;Ljava/lang/String;)Lcom/mojang/datafixers/types/templates/TypeTemplate; m_17622_ + static + 0 o p_17623_ + 1 o p_17624_ + k (Lcom/mojang/datafixers/schemas/Schema;Ljava/lang/String;)Lcom/mojang/datafixers/types/templates/TypeTemplate; m_17627_ + static + 0 o p_17628_ + 1 o p_17629_ + k (Lcom/mojang/datafixers/schemas/Schema;)Lcom/mojang/datafixers/types/templates/TypeTemplate; m_17625_ + static + 0 o p_17626_ + l (Lcom/mojang/datafixers/schemas/Schema;Ljava/lang/String;)Lcom/mojang/datafixers/types/templates/TypeTemplate; m_17632_ + static + 0 o p_17633_ + 1 o p_17634_ + l (Lcom/mojang/datafixers/schemas/Schema;)Lcom/mojang/datafixers/types/templates/TypeTemplate; m_17630_ + static + 0 o p_17631_ + m (Lcom/mojang/datafixers/schemas/Schema;)Lcom/mojang/datafixers/types/templates/TypeTemplate; m_17635_ + static + 0 o p_17636_ + m (Lcom/mojang/datafixers/schemas/Schema;Ljava/lang/String;)Lcom/mojang/datafixers/types/templates/TypeTemplate; m_17637_ + static + 0 o p_17638_ + 1 o p_17639_ + n (Lcom/mojang/datafixers/schemas/Schema;Ljava/lang/String;)Lcom/mojang/datafixers/types/templates/TypeTemplate; m_17640_ + static + 0 o p_17641_ + 1 o p_17642_ + o (Lcom/mojang/datafixers/schemas/Schema;Ljava/lang/String;)Lcom/mojang/datafixers/types/templates/TypeTemplate; m_17643_ + static + 0 o p_17644_ + 1 o p_17645_ + p (Lcom/mojang/datafixers/schemas/Schema;Ljava/lang/String;)Lcom/mojang/datafixers/types/templates/TypeTemplate; m_17646_ + static + 0 o p_17647_ + 1 o p_17648_ + q (Lcom/mojang/datafixers/schemas/Schema;Ljava/lang/String;)Lcom/mojang/datafixers/types/templates/TypeTemplate; m_17649_ + static + 0 o p_17650_ + 1 o p_17651_ + r (Lcom/mojang/datafixers/schemas/Schema;Ljava/lang/String;)Lcom/mojang/datafixers/types/templates/TypeTemplate; m_17652_ + static + 0 o p_17653_ + 1 o p_17654_ + registerBlockEntities (Lcom/mojang/datafixers/schemas/Schema;)Ljava/util/Map; registerBlockEntities + 0 o p_17656_ + registerEntities (Lcom/mojang/datafixers/schemas/Schema;)Ljava/util/Map; registerEntities + 0 o p_17658_ + registerTypes (Lcom/mojang/datafixers/schemas/Schema;Ljava/util/Map;Ljava/util/Map;)V registerTypes + 0 o p_17660_ + 1 o p_17661_ + 2 o p_17662_ + s (Lcom/mojang/datafixers/schemas/Schema;Ljava/lang/String;)Lcom/mojang/datafixers/types/templates/TypeTemplate; m_17663_ + static + 0 o p_17664_ + 1 o p_17665_ + t (Lcom/mojang/datafixers/schemas/Schema;Ljava/lang/String;)Lcom/mojang/datafixers/types/templates/TypeTemplate; m_17666_ + static + 0 o p_17667_ + 1 o p_17668_ + u (Lcom/mojang/datafixers/schemas/Schema;Ljava/lang/String;)Lcom/mojang/datafixers/types/templates/TypeTemplate; m_17669_ + static + 0 o p_17670_ + 1 o p_17671_ + v (Lcom/mojang/datafixers/schemas/Schema;Ljava/lang/String;)Lcom/mojang/datafixers/types/templates/TypeTemplate; m_17672_ + static + 0 o p_17673_ + 1 o p_17674_ + w (Lcom/mojang/datafixers/schemas/Schema;Ljava/lang/String;)Lcom/mojang/datafixers/types/templates/TypeTemplate; m_17675_ + static + 0 o p_17676_ + 1 o p_17677_ + x (Lcom/mojang/datafixers/schemas/Schema;Ljava/lang/String;)Lcom/mojang/datafixers/types/templates/TypeTemplate; m_17678_ + static + 0 o p_17679_ + 1 o p_17680_ + y (Lcom/mojang/datafixers/schemas/Schema;Ljava/lang/String;)Lcom/mojang/datafixers/types/templates/TypeTemplate; m_17681_ + static + 0 o p_17682_ + 1 o p_17683_ +axu net/minecraft/util/datafix/schemas/V1466 + (ILcom/mojang/datafixers/schemas/Schema;)V + 0 o p_17685_ + 1 o p_17686_ + a (Lcom/mojang/datafixers/schemas/Schema;)Lcom/mojang/datafixers/types/templates/TypeTemplate; m_17689_ + static + 0 o p_17690_ + registerBlockEntities (Lcom/mojang/datafixers/schemas/Schema;)Ljava/util/Map; registerBlockEntities + 0 o p_17692_ + registerTypes (Lcom/mojang/datafixers/schemas/Schema;Ljava/util/Map;Ljava/util/Map;)V registerTypes + 0 o p_17694_ + 1 o p_17695_ + 2 o p_17696_ +axv net/minecraft/util/datafix/schemas/V1470 + (ILcom/mojang/datafixers/schemas/Schema;)V + 0 o p_17698_ + 1 o p_17699_ + a (Lcom/mojang/datafixers/schemas/Schema;Ljava/util/Map;Ljava/lang/String;)V m_17705_ + static + 0 o p_17706_ + 1 o p_17707_ + 2 o p_17708_ + a (Lcom/mojang/datafixers/schemas/Schema;)Lcom/mojang/datafixers/types/templates/TypeTemplate; m_17700_ + static + 0 o p_17701_ + a (Lcom/mojang/datafixers/schemas/Schema;Ljava/lang/String;)Lcom/mojang/datafixers/types/templates/TypeTemplate; m_17702_ + static + 0 o p_17703_ + 1 o p_17704_ + registerEntities (Lcom/mojang/datafixers/schemas/Schema;)Ljava/util/Map; registerEntities + 0 o p_17710_ +axw net/minecraft/util/datafix/schemas/V1481 + (ILcom/mojang/datafixers/schemas/Schema;)V + 0 o p_17712_ + 1 o p_17713_ + registerBlockEntities (Lcom/mojang/datafixers/schemas/Schema;)Ljava/util/Map; registerBlockEntities + 0 o p_17715_ +axx net/minecraft/util/datafix/schemas/V1483 + (ILcom/mojang/datafixers/schemas/Schema;)V + 0 o p_17717_ + 1 o p_17718_ + registerEntities (Lcom/mojang/datafixers/schemas/Schema;)Ljava/util/Map; registerEntities + 0 o p_17720_ +axy net/minecraft/util/datafix/schemas/V1486 + (ILcom/mojang/datafixers/schemas/Schema;)V + 0 o p_17722_ + 1 o p_17723_ + registerEntities (Lcom/mojang/datafixers/schemas/Schema;)Ljava/util/Map; registerEntities + 0 o p_17725_ +axz net/minecraft/util/datafix/schemas/V1510 + (ILcom/mojang/datafixers/schemas/Schema;)V + 0 o p_17727_ + 1 o p_17728_ + registerEntities (Lcom/mojang/datafixers/schemas/Schema;)Ljava/util/Map; registerEntities + 0 o p_17730_ +ay net/minecraft/advancements/critereon/ConstructBeaconTrigger + a f_22742_ + ()V + static + ()V + a (ILay$a;)Z m_148026_ + static + 0 o p_148027_ + 1 o p_148028_ + a (Lcom/google/gson/JsonObject;Lba;Lbe;)Lay$a; m_7214_ + 0 o p_286465_ + 1 o p_286914_ + 2 o p_286803_ + a ()Lacq; m_7295_ + a (Laig;I)V m_148029_ + 0 o p_148030_ + 1 o p_148031_ + b (Lcom/google/gson/JsonObject;Lba;Lbe;)Lar; m_7214_ + 0 o p_286576_ + 1 o p_286762_ + 2 o p_286224_ +ay$a net/minecraft/advancements/critereon/ConstructBeaconTrigger$TriggerInstance + a f_22761_ + (Lba;Lcj$d;)V + 0 o p_286868_ + 1 o p_286272_ + a (Lct;)Lcom/google/gson/JsonObject; m_7683_ + 0 o p_22770_ + a (I)Z m_148032_ + 0 o p_148033_ + a (Lcj$d;)Lay$a; m_22765_ + static + 0 o p_22766_ + c ()Lay$a; m_148034_ + static +aya net/minecraft/util/datafix/schemas/V1800 + (ILcom/mojang/datafixers/schemas/Schema;)V + 0 o p_17732_ + 1 o p_17733_ + a (Lcom/mojang/datafixers/schemas/Schema;)Lcom/mojang/datafixers/types/templates/TypeTemplate; m_17734_ + static + 0 o p_17735_ + a (Lcom/mojang/datafixers/schemas/Schema;Ljava/lang/String;)Lcom/mojang/datafixers/types/templates/TypeTemplate; m_17736_ + static + 0 o p_17737_ + 1 o p_17738_ + registerEntities (Lcom/mojang/datafixers/schemas/Schema;)Ljava/util/Map; registerEntities + 0 o p_17744_ +ayb net/minecraft/util/datafix/schemas/V1801 + (ILcom/mojang/datafixers/schemas/Schema;)V + 0 o p_17746_ + 1 o p_17747_ + a (Lcom/mojang/datafixers/schemas/Schema;)Lcom/mojang/datafixers/types/templates/TypeTemplate; m_17748_ + static + 0 o p_17749_ + registerEntities (Lcom/mojang/datafixers/schemas/Schema;)Ljava/util/Map; registerEntities + 0 o p_17755_ +ayc net/minecraft/util/datafix/schemas/V1904 + (ILcom/mojang/datafixers/schemas/Schema;)V + 0 o p_17757_ + 1 o p_17758_ + a (Lcom/mojang/datafixers/schemas/Schema;)Lcom/mojang/datafixers/types/templates/TypeTemplate; m_17759_ + static + 0 o p_17760_ + registerEntities (Lcom/mojang/datafixers/schemas/Schema;)Ljava/util/Map; registerEntities + 0 o p_17766_ +ayd net/minecraft/util/datafix/schemas/V1906 + (ILcom/mojang/datafixers/schemas/Schema;)V + 0 o p_17768_ + 1 o p_17769_ + a (Lcom/mojang/datafixers/schemas/Schema;Ljava/util/Map;Ljava/lang/String;)V m_17775_ + static + 0 o p_17776_ + 1 o p_17777_ + 2 o p_17778_ + a (Lcom/mojang/datafixers/schemas/Schema;)Lcom/mojang/datafixers/types/templates/TypeTemplate; m_17770_ + static + 0 o p_17771_ + a (Lcom/mojang/datafixers/schemas/Schema;Ljava/lang/String;)Lcom/mojang/datafixers/types/templates/TypeTemplate; m_17772_ + static + 0 o p_17773_ + 1 o p_17774_ + registerBlockEntities (Lcom/mojang/datafixers/schemas/Schema;)Ljava/util/Map; registerBlockEntities + 0 o p_17780_ +aye net/minecraft/util/datafix/schemas/V1909 + (ILcom/mojang/datafixers/schemas/Schema;)V + 0 o p_17782_ + 1 o p_17783_ + registerBlockEntities (Lcom/mojang/datafixers/schemas/Schema;)Ljava/util/Map; registerBlockEntities + 0 o p_17785_ +ayf net/minecraft/util/datafix/schemas/V1920 + (ILcom/mojang/datafixers/schemas/Schema;)V + 0 o p_17787_ + 1 o p_17788_ + a (Lcom/mojang/datafixers/schemas/Schema;Ljava/util/Map;Ljava/lang/String;)V m_17791_ + static + 0 o p_17792_ + 1 o p_17793_ + 2 o p_17794_ + a (Lcom/mojang/datafixers/schemas/Schema;)Lcom/mojang/datafixers/types/templates/TypeTemplate; m_17789_ + static + 0 o p_17790_ + registerBlockEntities (Lcom/mojang/datafixers/schemas/Schema;)Ljava/util/Map; registerBlockEntities + 0 o p_17796_ +ayg net/minecraft/util/datafix/schemas/V1928 + (ILcom/mojang/datafixers/schemas/Schema;)V + 0 o p_17798_ + 1 o p_17799_ + a (Lcom/mojang/datafixers/schemas/Schema;Ljava/util/Map;Ljava/lang/String;)V m_17802_ + static + 0 o p_17803_ + 1 o p_17804_ + 2 o p_17805_ + a (Lcom/mojang/datafixers/schemas/Schema;)Lcom/mojang/datafixers/types/templates/TypeTemplate; m_17800_ + static + 0 o p_17801_ + b (Lcom/mojang/datafixers/schemas/Schema;)Lcom/mojang/datafixers/types/templates/TypeTemplate; m_17806_ + static + 0 o p_17807_ + registerEntities (Lcom/mojang/datafixers/schemas/Schema;)Ljava/util/Map; registerEntities + 0 o p_17809_ +ayh net/minecraft/util/datafix/schemas/V1929 + (ILcom/mojang/datafixers/schemas/Schema;)V + 0 o p_17811_ + 1 o p_17812_ + a (Lcom/mojang/datafixers/schemas/Schema;Ljava/lang/String;)Lcom/mojang/datafixers/types/templates/TypeTemplate; m_17813_ + static + 0 o p_17814_ + 1 o p_17815_ + b (Lcom/mojang/datafixers/schemas/Schema;Ljava/lang/String;)Lcom/mojang/datafixers/types/templates/TypeTemplate; m_17816_ + static + 0 o p_17817_ + 1 o p_17818_ + registerEntities (Lcom/mojang/datafixers/schemas/Schema;)Ljava/util/Map; registerEntities + 0 o p_17820_ +ayi net/minecraft/util/datafix/schemas/V1931 + (ILcom/mojang/datafixers/schemas/Schema;)V + 0 o p_17822_ + 1 o p_17823_ + a (Lcom/mojang/datafixers/schemas/Schema;)Lcom/mojang/datafixers/types/templates/TypeTemplate; m_17824_ + static + 0 o p_17825_ + registerEntities (Lcom/mojang/datafixers/schemas/Schema;)Ljava/util/Map; registerEntities + 0 o p_17831_ +ayj net/minecraft/util/datafix/schemas/V2100 + (ILcom/mojang/datafixers/schemas/Schema;)V + 0 o p_17833_ + 1 o p_17834_ + a (Lcom/mojang/datafixers/schemas/Schema;Ljava/util/Map;Ljava/lang/String;)V m_17837_ + static + 0 o p_17838_ + 1 o p_17839_ + 2 o p_17840_ + a (Lcom/mojang/datafixers/schemas/Schema;)Lcom/mojang/datafixers/types/templates/TypeTemplate; m_17835_ + static + 0 o p_17836_ + b (Lcom/mojang/datafixers/schemas/Schema;)Lcom/mojang/datafixers/types/templates/TypeTemplate; m_17841_ + static + 0 o p_17842_ + registerBlockEntities (Lcom/mojang/datafixers/schemas/Schema;)Ljava/util/Map; registerBlockEntities + 0 o p_17844_ + registerEntities (Lcom/mojang/datafixers/schemas/Schema;)Ljava/util/Map; registerEntities + 0 o p_17846_ +ayk net/minecraft/util/datafix/schemas/V2501 + (ILcom/mojang/datafixers/schemas/Schema;)V + 0 o p_17848_ + 1 o p_17849_ + a (Lcom/mojang/datafixers/schemas/Schema;Ljava/util/Map;Ljava/lang/String;)V m_17852_ + static + 0 o p_17853_ + 1 o p_17854_ + 2 o p_17855_ + a (Lcom/mojang/datafixers/schemas/Schema;)Lcom/mojang/datafixers/types/templates/TypeTemplate; m_17850_ + static + 0 o p_17851_ + registerBlockEntities (Lcom/mojang/datafixers/schemas/Schema;)Ljava/util/Map; registerBlockEntities + 0 o p_17857_ +ayl net/minecraft/util/datafix/schemas/V2502 + (ILcom/mojang/datafixers/schemas/Schema;)V + 0 o p_17859_ + 1 o p_17860_ + a (Lcom/mojang/datafixers/schemas/Schema;)Lcom/mojang/datafixers/types/templates/TypeTemplate; m_17861_ + static + 0 o p_17862_ + registerEntities (Lcom/mojang/datafixers/schemas/Schema;)Ljava/util/Map; registerEntities + 0 o p_17868_ +aym net/minecraft/util/datafix/schemas/V2505 + (ILcom/mojang/datafixers/schemas/Schema;)V + 0 o p_17870_ + 1 o p_17871_ + a (Lcom/mojang/datafixers/schemas/Schema;)Lcom/mojang/datafixers/types/templates/TypeTemplate; m_17872_ + static + 0 o p_17873_ + registerEntities (Lcom/mojang/datafixers/schemas/Schema;)Ljava/util/Map; registerEntities + 0 o p_17879_ +ayn net/minecraft/util/datafix/schemas/V2509 + (ILcom/mojang/datafixers/schemas/Schema;)V + 0 o p_17881_ + 1 o p_17882_ + a (Lcom/mojang/datafixers/schemas/Schema;)Lcom/mojang/datafixers/types/templates/TypeTemplate; m_17883_ + static + 0 o p_17884_ + registerEntities (Lcom/mojang/datafixers/schemas/Schema;)Ljava/util/Map; registerEntities + 0 o p_17890_ +ayo net/minecraft/util/datafix/schemas/V2519 + (ILcom/mojang/datafixers/schemas/Schema;)V + 0 o p_17892_ + 1 o p_17893_ + a (Lcom/mojang/datafixers/schemas/Schema;)Lcom/mojang/datafixers/types/templates/TypeTemplate; m_17894_ + static + 0 o p_17895_ + registerEntities (Lcom/mojang/datafixers/schemas/Schema;)Ljava/util/Map; registerEntities + 0 o p_17901_ +ayp net/minecraft/util/datafix/schemas/V2522 + (ILcom/mojang/datafixers/schemas/Schema;)V + 0 o p_17933_ + 1 o p_17934_ + a (Lcom/mojang/datafixers/schemas/Schema;)Lcom/mojang/datafixers/types/templates/TypeTemplate; m_17935_ + static + 0 o p_17936_ + registerEntities (Lcom/mojang/datafixers/schemas/Schema;)Ljava/util/Map; registerEntities + 0 o p_17942_ +ayq net/minecraft/util/datafix/schemas/V2551 + (ILcom/mojang/datafixers/schemas/Schema;)V + 0 o p_17944_ + 1 o p_17945_ + a (Lcom/mojang/datafixers/schemas/Schema;)Lcom/mojang/datafixers/types/templates/TypeTemplate; m_17946_ + static + 0 o p_17947_ + b (Lcom/mojang/datafixers/schemas/Schema;)Lcom/mojang/datafixers/types/templates/TypeTemplate; m_145834_ + static + 0 o p_145835_ + c (Lcom/mojang/datafixers/schemas/Schema;)Lcom/mojang/datafixers/types/templates/TypeTemplate; m_145836_ + static + 0 o p_145837_ + d (Lcom/mojang/datafixers/schemas/Schema;)Lcom/mojang/datafixers/types/templates/TypeTemplate; m_145838_ + static + 0 o p_145839_ + e (Lcom/mojang/datafixers/schemas/Schema;)Lcom/mojang/datafixers/types/templates/TypeTemplate; m_145840_ + static + 0 o p_145841_ + f (Lcom/mojang/datafixers/schemas/Schema;)Lcom/mojang/datafixers/types/templates/TypeTemplate; m_145842_ + static + 0 o p_145843_ + registerTypes (Lcom/mojang/datafixers/schemas/Schema;Ljava/util/Map;Ljava/util/Map;)V registerTypes + 0 o p_17959_ + 1 o p_17960_ + 2 o p_17961_ +ayr net/minecraft/util/datafix/schemas/V2568 + (ILcom/mojang/datafixers/schemas/Schema;)V + 0 o p_17963_ + 1 o p_17964_ + a (Lcom/mojang/datafixers/schemas/Schema;)Lcom/mojang/datafixers/types/templates/TypeTemplate; m_17965_ + static + 0 o p_17966_ + registerEntities (Lcom/mojang/datafixers/schemas/Schema;)Ljava/util/Map; registerEntities + 0 o p_17972_ +ays net/minecraft/util/datafix/schemas/V2571 + (ILcom/mojang/datafixers/schemas/Schema;)V + 0 o p_145845_ + 1 o p_145846_ + a (Lcom/mojang/datafixers/schemas/Schema;)Lcom/mojang/datafixers/types/templates/TypeTemplate; m_145847_ + static + 0 o p_145848_ + registerEntities (Lcom/mojang/datafixers/schemas/Schema;)Ljava/util/Map; registerEntities + 0 o p_145854_ +ayt net/minecraft/util/datafix/schemas/V2684 + (ILcom/mojang/datafixers/schemas/Schema;)V + 0 o p_145856_ + 1 o p_145857_ + a (Lcom/mojang/datafixers/schemas/Schema;)Lcom/mojang/datafixers/types/templates/TypeTemplate; m_216756_ + static + 0 o p_216757_ + b ()Lcom/mojang/datafixers/types/templates/TypeTemplate; m_216758_ + static + registerBlockEntities (Lcom/mojang/datafixers/schemas/Schema;)Ljava/util/Map; registerBlockEntities + 0 o p_145859_ + registerTypes (Lcom/mojang/datafixers/schemas/Schema;Ljava/util/Map;Ljava/util/Map;)V registerTypes + 0 o p_216760_ + 1 o p_216761_ + 2 o p_216762_ +ayu net/minecraft/util/datafix/schemas/V2686 + (ILcom/mojang/datafixers/schemas/Schema;)V + 0 o p_145861_ + 1 o p_145862_ + a (Lcom/mojang/datafixers/schemas/Schema;)Lcom/mojang/datafixers/types/templates/TypeTemplate; m_145863_ + static + 0 o p_145864_ + registerEntities (Lcom/mojang/datafixers/schemas/Schema;)Ljava/util/Map; registerEntities + 0 o p_145870_ +ayv net/minecraft/util/datafix/schemas/V2688 + (ILcom/mojang/datafixers/schemas/Schema;)V + 0 o p_145872_ + 1 o p_145873_ + a (Lcom/mojang/datafixers/schemas/Schema;)Lcom/mojang/datafixers/types/templates/TypeTemplate; m_145874_ + static + 0 o p_145875_ + a (Lcom/mojang/datafixers/schemas/Schema;Ljava/lang/String;)Lcom/mojang/datafixers/types/templates/TypeTemplate; m_263974_ + static + 0 o p_264876_ + 1 o p_264877_ + registerEntities (Lcom/mojang/datafixers/schemas/Schema;)Ljava/util/Map; registerEntities + 0 o p_145881_ +ayw net/minecraft/util/datafix/schemas/V2704 + (ILcom/mojang/datafixers/schemas/Schema;)V + 0 o p_145883_ + 1 o p_145884_ + a (Lcom/mojang/datafixers/schemas/Schema;)Lcom/mojang/datafixers/types/templates/TypeTemplate; m_145885_ + static + 0 o p_145886_ + registerEntities (Lcom/mojang/datafixers/schemas/Schema;)Ljava/util/Map; registerEntities + 0 o p_145892_ +ayx net/minecraft/util/datafix/schemas/V2707 + (ILcom/mojang/datafixers/schemas/Schema;)V + 0 o p_145894_ + 1 o p_145895_ + registerEntities (Lcom/mojang/datafixers/schemas/Schema;)Ljava/util/Map; registerEntities + 0 o p_145903_ +ayy net/minecraft/util/datafix/schemas/V2831 + (ILcom/mojang/datafixers/schemas/Schema;)V + 0 o p_185208_ + 1 o p_185209_ + a (Lcom/mojang/datafixers/schemas/Schema;)Lcom/mojang/datafixers/types/templates/TypeTemplate; m_185210_ + static + 0 o p_185211_ + registerTypes (Lcom/mojang/datafixers/schemas/Schema;Ljava/util/Map;Ljava/util/Map;)V registerTypes + 0 o p_185213_ + 1 o p_185214_ + 2 o p_185215_ +ayz net/minecraft/util/datafix/schemas/V2832 + (ILcom/mojang/datafixers/schemas/Schema;)V + 0 o p_185217_ + 1 o p_185218_ + a (Lcom/mojang/datafixers/schemas/Schema;)Lcom/mojang/datafixers/types/templates/TypeTemplate; m_185219_ + static + 0 o p_185220_ + b ()Lcom/mojang/datafixers/types/templates/TypeTemplate; m_276736_ + static + b (Lcom/mojang/datafixers/schemas/Schema;)Lcom/mojang/datafixers/types/templates/TypeTemplate; m_185221_ + static + 0 o p_185222_ + c (Lcom/mojang/datafixers/schemas/Schema;)Lcom/mojang/datafixers/types/templates/TypeTemplate; m_185223_ + static + 0 o p_185224_ + d (Lcom/mojang/datafixers/schemas/Schema;)Lcom/mojang/datafixers/types/templates/TypeTemplate; m_276735_ + static + 0 o p_277278_ + e (Lcom/mojang/datafixers/schemas/Schema;)Lcom/mojang/datafixers/types/templates/TypeTemplate; m_185227_ + static + 0 o p_185228_ + f (Lcom/mojang/datafixers/schemas/Schema;)Lcom/mojang/datafixers/types/templates/TypeTemplate; m_185229_ + static + 0 o p_185230_ + g (Lcom/mojang/datafixers/schemas/Schema;)Lcom/mojang/datafixers/types/templates/TypeTemplate; m_185231_ + static + 0 o p_185232_ + registerTypes (Lcom/mojang/datafixers/schemas/Schema;Ljava/util/Map;Ljava/util/Map;)V registerTypes + 0 o p_185234_ + 1 o p_185235_ + 2 o p_185236_ +az net/minecraft/advancements/critereon/ConsumeItemTrigger + a f_23678_ + ()V + static + ()V + a (Lcom/google/gson/JsonObject;Lba;Lbe;)Laz$a; m_7214_ + 0 o p_286724_ + 1 o p_286492_ + 2 o p_286887_ + a (Lcfz;Laz$a;)Z m_23685_ + static + 0 o p_23686_ + 1 o p_23687_ + a ()Lacq; m_7295_ + a (Laig;Lcfz;)V m_23682_ + 0 o p_23683_ + 1 o p_23684_ + b (Lcom/google/gson/JsonObject;Lba;Lbe;)Lar; m_7214_ + 0 o p_286664_ + 1 o p_286254_ + 2 o p_286347_ +az$a net/minecraft/advancements/critereon/ConsumeItemTrigger$TriggerInstance + a f_23697_ + (Lba;Lbz;)V + 0 o p_286663_ + 1 o p_286533_ + a (Lct;)Lcom/google/gson/JsonObject; m_7683_ + 0 o p_23706_ + a (Lcfz;)Z m_23701_ + 0 o p_23702_ + a (Lcml;)Laz$a; m_23703_ + static + 0 o p_23704_ + a (Lbz;)Laz$a; m_148081_ + static + 0 o p_148082_ + c ()Laz$a; m_23707_ + static +aza net/minecraft/util/datafix/schemas/V2842 + (ILcom/mojang/datafixers/schemas/Schema;)V + 0 o p_185238_ + 1 o p_185239_ + a (Lcom/mojang/datafixers/schemas/Schema;)Lcom/mojang/datafixers/types/templates/TypeTemplate; m_185240_ + static + 0 o p_185241_ + registerTypes (Lcom/mojang/datafixers/schemas/Schema;Ljava/util/Map;Ljava/util/Map;)V registerTypes + 0 o p_185243_ + 1 o p_185244_ + 2 o p_185245_ +azb net/minecraft/util/datafix/schemas/V3076 + (ILcom/mojang/datafixers/schemas/Schema;)V + 0 o p_216764_ + 1 o p_216765_ + registerBlockEntities (Lcom/mojang/datafixers/schemas/Schema;)Ljava/util/Map; registerBlockEntities + 0 o p_216767_ +azc net/minecraft/util/datafix/schemas/V3078 + (ILcom/mojang/datafixers/schemas/Schema;)V + 0 o p_216769_ + 1 o p_216770_ + a (Lcom/mojang/datafixers/schemas/Schema;Ljava/util/Map;Ljava/lang/String;)V m_216773_ + static + 0 o p_216774_ + 1 o p_216775_ + 2 o p_216776_ + a (Lcom/mojang/datafixers/schemas/Schema;)Lcom/mojang/datafixers/types/templates/TypeTemplate; m_216771_ + static + 0 o p_216772_ + b (Lcom/mojang/datafixers/schemas/Schema;)Lcom/mojang/datafixers/types/templates/TypeTemplate; m_216777_ + static + 0 o p_216778_ + registerBlockEntities (Lcom/mojang/datafixers/schemas/Schema;)Ljava/util/Map; registerBlockEntities + 0 o p_216780_ + registerEntities (Lcom/mojang/datafixers/schemas/Schema;)Ljava/util/Map; registerEntities + 0 o p_216782_ +azd net/minecraft/util/datafix/schemas/V3081 + (ILcom/mojang/datafixers/schemas/Schema;)V + 0 o p_216784_ + 1 o p_216785_ + a (Lcom/mojang/datafixers/schemas/Schema;)Lcom/mojang/datafixers/types/templates/TypeTemplate; m_263975_ + static + 0 o p_264878_ + registerEntities (Lcom/mojang/datafixers/schemas/Schema;)Ljava/util/Map; registerEntities + 0 o p_216795_ +aze net/minecraft/util/datafix/schemas/V3082 + (ILcom/mojang/datafixers/schemas/Schema;)V + 0 o p_216797_ + 1 o p_216798_ + a (Lcom/mojang/datafixers/schemas/Schema;Ljava/lang/String;)Lcom/mojang/datafixers/types/templates/TypeTemplate; m_216799_ + static + 0 o p_216800_ + 1 o p_216801_ + registerEntities (Lcom/mojang/datafixers/schemas/Schema;)Ljava/util/Map; registerEntities + 0 o p_216803_ +azf net/minecraft/util/datafix/schemas/V3083 + (ILcom/mojang/datafixers/schemas/Schema;)V + 0 o p_216805_ + 1 o p_216806_ + a (Lcom/mojang/datafixers/schemas/Schema;Ljava/util/Map;Ljava/lang/String;)V m_216809_ + static + 0 o p_216810_ + 1 o p_216811_ + 2 o p_216812_ + a (Lcom/mojang/datafixers/schemas/Schema;)Lcom/mojang/datafixers/types/templates/TypeTemplate; m_216807_ + static + 0 o p_216808_ + registerEntities (Lcom/mojang/datafixers/schemas/Schema;)Ljava/util/Map; registerEntities + 0 o p_216814_ +azg net/minecraft/util/datafix/schemas/V3202 + (ILcom/mojang/datafixers/schemas/Schema;)V + 0 o p_251767_ + 1 o p_252009_ + registerBlockEntities (Lcom/mojang/datafixers/schemas/Schema;)Ljava/util/Map; registerBlockEntities + 0 o p_252169_ +azh net/minecraft/util/datafix/schemas/V3203 + (ILcom/mojang/datafixers/schemas/Schema;)V + 0 o p_248570_ + 1 o p_251874_ + a (Lcom/mojang/datafixers/schemas/Schema;)Lcom/mojang/datafixers/types/templates/TypeTemplate; m_264622_ + static + 0 o p_265699_ + registerEntities (Lcom/mojang/datafixers/schemas/Schema;)Ljava/util/Map; registerEntities + 0 o p_249141_ +azi net/minecraft/util/datafix/schemas/V3204 + (ILcom/mojang/datafixers/schemas/Schema;)V + 0 o p_250011_ + 1 o p_250175_ + a (Lcom/mojang/datafixers/schemas/Schema;)Lcom/mojang/datafixers/types/templates/TypeTemplate; m_264581_ + static + 0 o p_265058_ + registerBlockEntities (Lcom/mojang/datafixers/schemas/Schema;)Ljava/util/Map; registerBlockEntities + 0 o p_250991_ +azj net/minecraft/util/datafix/schemas/V3325 + (ILcom/mojang/datafixers/schemas/Schema;)V + 0 o p_270387_ + 1 o p_270374_ + a (Lcom/mojang/datafixers/schemas/Schema;Ljava/lang/String;)Lcom/mojang/datafixers/types/templates/TypeTemplate; m_269107_ + static + 0 o p_270541_ + 1 o p_270174_ + b (Lcom/mojang/datafixers/schemas/Schema;Ljava/lang/String;)Lcom/mojang/datafixers/types/templates/TypeTemplate; m_269160_ + static + 0 o p_270131_ + 1 o p_270589_ + registerEntities (Lcom/mojang/datafixers/schemas/Schema;)Ljava/util/Map; registerEntities + 0 o p_270629_ +azk net/minecraft/util/datafix/schemas/V3326 + (ILcom/mojang/datafixers/schemas/Schema;)V + 0 o p_273243_ + 1 o p_273484_ + a (Lcom/mojang/datafixers/schemas/Schema;)Lcom/mojang/datafixers/types/templates/TypeTemplate; m_271879_ + static + 0 o p_272658_ + registerEntities (Lcom/mojang/datafixers/schemas/Schema;)Ljava/util/Map; registerEntities + 0 o p_273599_ +azl net/minecraft/util/datafix/schemas/V3327 + (ILcom/mojang/datafixers/schemas/Schema;)V + 0 o p_273350_ + 1 o p_273379_ + a (Lcom/mojang/datafixers/schemas/Schema;)Lcom/mojang/datafixers/types/templates/TypeTemplate; m_272152_ + static + 0 o p_273351_ + b (Lcom/mojang/datafixers/schemas/Schema;)Lcom/mojang/datafixers/types/templates/TypeTemplate; m_271945_ + static + 0 o p_273338_ + registerBlockEntities (Lcom/mojang/datafixers/schemas/Schema;)Ljava/util/Map; registerBlockEntities + 0 o p_273248_ +azm net/minecraft/util/datafix/schemas/V3328 + (ILcom/mojang/datafixers/schemas/Schema;)V + 0 o p_272971_ + 1 o p_273487_ + registerEntities (Lcom/mojang/datafixers/schemas/Schema;)Ljava/util/Map; registerEntities + 0 o p_273489_ +azn net/minecraft/util/datafix/schemas/V3438 + (ILcom/mojang/datafixers/schemas/Schema;)V + 0 o p_277419_ + 1 o p_277767_ + registerBlockEntities (Lcom/mojang/datafixers/schemas/Schema;)Ljava/util/Map; registerBlockEntities + 0 o p_277667_ +azo net/minecraft/util/datafix/schemas/V3448 + (ILcom/mojang/datafixers/schemas/Schema;)V + 0 o p_282689_ + 1 o p_282757_ + a (Lcom/mojang/datafixers/schemas/Schema;)Lcom/mojang/datafixers/types/templates/TypeTemplate; m_280566_ + static + 0 o p_282219_ + registerBlockEntities (Lcom/mojang/datafixers/schemas/Schema;)Ljava/util/Map; registerBlockEntities + 0 o p_281949_ +azp net/minecraft/util/datafix/schemas/V501 + (ILcom/mojang/datafixers/schemas/Schema;)V + 0 o p_17974_ + 1 o p_17975_ + a (Lcom/mojang/datafixers/schemas/Schema;)Lcom/mojang/datafixers/types/templates/TypeTemplate; m_17976_ + static + 0 o p_17977_ + registerEntities (Lcom/mojang/datafixers/schemas/Schema;)Ljava/util/Map; registerEntities + 0 o p_17983_ +azq net/minecraft/util/datafix/schemas/V700 + (ILcom/mojang/datafixers/schemas/Schema;)V + 0 o p_17985_ + 1 o p_17986_ + a (Lcom/mojang/datafixers/schemas/Schema;)Lcom/mojang/datafixers/types/templates/TypeTemplate; m_17987_ + static + 0 o p_17988_ + registerEntities (Lcom/mojang/datafixers/schemas/Schema;)Ljava/util/Map; registerEntities + 0 o p_17994_ +azr net/minecraft/util/datafix/schemas/V701 + (ILcom/mojang/datafixers/schemas/Schema;)V + 0 o p_17996_ + 1 o p_17997_ + a (Lcom/mojang/datafixers/schemas/Schema;Ljava/util/Map;Ljava/lang/String;)V m_18000_ + static + 0 o p_18001_ + 1 o p_18002_ + 2 o p_18003_ + a (Lcom/mojang/datafixers/schemas/Schema;)Lcom/mojang/datafixers/types/templates/TypeTemplate; m_17998_ + static + 0 o p_17999_ + registerEntities (Lcom/mojang/datafixers/schemas/Schema;)Ljava/util/Map; registerEntities + 0 o p_18005_ +azs net/minecraft/util/datafix/schemas/V702 + (ILcom/mojang/datafixers/schemas/Schema;)V + 0 o p_18007_ + 1 o p_18008_ + a (Lcom/mojang/datafixers/schemas/Schema;Ljava/util/Map;Ljava/lang/String;)V m_18011_ + static + 0 o p_18012_ + 1 o p_18013_ + 2 o p_18014_ + a (Lcom/mojang/datafixers/schemas/Schema;)Lcom/mojang/datafixers/types/templates/TypeTemplate; m_18009_ + static + 0 o p_18010_ + registerEntities (Lcom/mojang/datafixers/schemas/Schema;)Ljava/util/Map; registerEntities + 0 o p_18016_ +azt net/minecraft/util/datafix/schemas/V703 + (ILcom/mojang/datafixers/schemas/Schema;)V + 0 o p_18018_ + 1 o p_18019_ + a (Lcom/mojang/datafixers/schemas/Schema;)Lcom/mojang/datafixers/types/templates/TypeTemplate; m_18020_ + static + 0 o p_18021_ + b (Lcom/mojang/datafixers/schemas/Schema;)Lcom/mojang/datafixers/types/templates/TypeTemplate; m_18022_ + static + 0 o p_18023_ + c (Lcom/mojang/datafixers/schemas/Schema;)Lcom/mojang/datafixers/types/templates/TypeTemplate; m_18024_ + static + 0 o p_18025_ + d (Lcom/mojang/datafixers/schemas/Schema;)Lcom/mojang/datafixers/types/templates/TypeTemplate; m_18026_ + static + 0 o p_18027_ + e (Lcom/mojang/datafixers/schemas/Schema;)Lcom/mojang/datafixers/types/templates/TypeTemplate; m_18028_ + static + 0 o p_18029_ + registerEntities (Lcom/mojang/datafixers/schemas/Schema;)Ljava/util/Map; registerEntities + 0 o p_18031_ +azu net/minecraft/util/datafix/schemas/V704 + a f_18032_ + b f_18033_ + ()V + static + (ILcom/mojang/datafixers/schemas/Schema;)V + 0 o p_18036_ + 1 o p_18037_ + a (Lcom/mojang/datafixers/schemas/Schema;Ljava/util/Map;Ljava/lang/String;)V m_18043_ + static + 0 o p_18044_ + 1 o p_18045_ + 2 o p_18046_ + a (Lcom/mojang/datafixers/schemas/Schema;Ljava/lang/String;)Lcom/mojang/datafixers/types/templates/TypeTemplate; m_18040_ + static + 0 o p_18041_ + 1 o p_18042_ + a (Ljava/util/Map;)Lcom/mojang/datafixers/types/templates/TypeTemplate; m_18049_ + static + 0 o p_18050_ + a (Lcom/mojang/datafixers/schemas/Schema;)Lcom/mojang/datafixers/types/templates/TypeTemplate; m_18038_ + static + 0 o p_18039_ + a ()Lcom/google/common/collect/ImmutableMap; m_279903_ + static + b (Lcom/mojang/datafixers/schemas/Schema;Ljava/lang/String;)Lcom/mojang/datafixers/types/templates/TypeTemplate; m_18053_ + static + 0 o p_18054_ + 1 o p_18055_ + b (Lcom/mojang/datafixers/schemas/Schema;)Lcom/mojang/datafixers/types/templates/TypeTemplate; m_18051_ + static + 0 o p_18052_ + c (Lcom/mojang/datafixers/schemas/Schema;Ljava/lang/String;)Lcom/mojang/datafixers/types/templates/TypeTemplate; m_18056_ + static + 0 o p_18057_ + 1 o p_18058_ + getChoiceType (Lcom/mojang/datafixers/DSL$TypeReference;Ljava/lang/String;)Lcom/mojang/datafixers/types/Type; getChoiceType + 0 o p_18060_ + 1 o p_18061_ + registerBlockEntities (Lcom/mojang/datafixers/schemas/Schema;)Ljava/util/Map; registerBlockEntities + 0 o p_18063_ + registerTypes (Lcom/mojang/datafixers/schemas/Schema;Ljava/util/Map;Ljava/util/Map;)V registerTypes + 0 o p_18065_ + 1 o p_18066_ + 2 o p_18067_ +azu$1 net/minecraft/util/datafix/schemas/V704$1 + ()V + apply (Lcom/mojang/serialization/DynamicOps;Ljava/lang/Object;)Ljava/lang/Object; apply + 0 o p_18070_ + 1 o p_18071_ +azv net/minecraft/util/datafix/schemas/V705 + b f_18072_ + ()V + static + (ILcom/mojang/datafixers/schemas/Schema;)V + 0 o p_18075_ + 1 o p_18076_ + a (Lcom/mojang/datafixers/schemas/Schema;Ljava/util/Map;Ljava/lang/String;)V m_18082_ + static + 0 o p_18083_ + 1 o p_18084_ + 2 o p_18085_ + a (Ljava/util/Map;)Lcom/mojang/datafixers/types/templates/TypeTemplate; m_18086_ + static + 0 o p_18087_ + a (Lcom/mojang/datafixers/schemas/Schema;)Lcom/mojang/datafixers/types/templates/TypeTemplate; m_18077_ + static + 0 o p_18078_ + a (Lcom/mojang/datafixers/schemas/Schema;Ljava/lang/String;)Lcom/mojang/datafixers/types/templates/TypeTemplate; m_18079_ + static + 0 o p_18080_ + 1 o p_18081_ + b (Lcom/mojang/datafixers/schemas/Schema;Ljava/util/Map;Ljava/lang/String;)V m_18093_ + static + 0 o p_18094_ + 1 o p_18095_ + 2 o p_18096_ + b (Lcom/mojang/datafixers/schemas/Schema;Ljava/lang/String;)Lcom/mojang/datafixers/types/templates/TypeTemplate; m_18090_ + static + 0 o p_18091_ + 1 o p_18092_ + b (Lcom/mojang/datafixers/schemas/Schema;)Lcom/mojang/datafixers/types/templates/TypeTemplate; m_18088_ + static + 0 o p_18089_ + c (Lcom/mojang/datafixers/schemas/Schema;Ljava/lang/String;)Lcom/mojang/datafixers/types/templates/TypeTemplate; m_18099_ + static + 0 o p_18100_ + 1 o p_18101_ + c (Lcom/mojang/datafixers/schemas/Schema;)Lcom/mojang/datafixers/types/templates/TypeTemplate; m_18097_ + static + 0 o p_18098_ + d (Lcom/mojang/datafixers/schemas/Schema;Ljava/lang/String;)Lcom/mojang/datafixers/types/templates/TypeTemplate; m_18102_ + static + 0 o p_18103_ + 1 o p_18104_ + e (Lcom/mojang/datafixers/schemas/Schema;Ljava/lang/String;)Lcom/mojang/datafixers/types/templates/TypeTemplate; m_18105_ + static + 0 o p_18106_ + 1 o p_18107_ + f (Lcom/mojang/datafixers/schemas/Schema;Ljava/lang/String;)Lcom/mojang/datafixers/types/templates/TypeTemplate; m_18108_ + static + 0 o p_18109_ + 1 o p_18110_ + g (Lcom/mojang/datafixers/schemas/Schema;Ljava/lang/String;)Lcom/mojang/datafixers/types/templates/TypeTemplate; m_18111_ + static + 0 o p_18112_ + 1 o p_18113_ + h (Lcom/mojang/datafixers/schemas/Schema;Ljava/lang/String;)Lcom/mojang/datafixers/types/templates/TypeTemplate; m_18114_ + static + 0 o p_18115_ + 1 o p_18116_ + i (Lcom/mojang/datafixers/schemas/Schema;Ljava/lang/String;)Lcom/mojang/datafixers/types/templates/TypeTemplate; m_18117_ + static + 0 o p_18118_ + 1 o p_18119_ + j (Lcom/mojang/datafixers/schemas/Schema;Ljava/lang/String;)Lcom/mojang/datafixers/types/templates/TypeTemplate; m_18120_ + static + 0 o p_18121_ + 1 o p_18122_ + k (Lcom/mojang/datafixers/schemas/Schema;Ljava/lang/String;)Lcom/mojang/datafixers/types/templates/TypeTemplate; m_18123_ + static + 0 o p_18124_ + 1 o p_18125_ + l (Lcom/mojang/datafixers/schemas/Schema;Ljava/lang/String;)Lcom/mojang/datafixers/types/templates/TypeTemplate; m_18126_ + static + 0 o p_18127_ + 1 o p_18128_ + m (Lcom/mojang/datafixers/schemas/Schema;Ljava/lang/String;)Lcom/mojang/datafixers/types/templates/TypeTemplate; m_18129_ + static + 0 o p_18130_ + 1 o p_18131_ + n (Lcom/mojang/datafixers/schemas/Schema;Ljava/lang/String;)Lcom/mojang/datafixers/types/templates/TypeTemplate; m_18132_ + static + 0 o p_18133_ + 1 o p_18134_ + o (Lcom/mojang/datafixers/schemas/Schema;Ljava/lang/String;)Lcom/mojang/datafixers/types/templates/TypeTemplate; m_18135_ + static + 0 o p_18136_ + 1 o p_18137_ + p (Lcom/mojang/datafixers/schemas/Schema;Ljava/lang/String;)Lcom/mojang/datafixers/types/templates/TypeTemplate; m_18138_ + static + 0 o p_18139_ + 1 o p_18140_ + q (Lcom/mojang/datafixers/schemas/Schema;Ljava/lang/String;)Lcom/mojang/datafixers/types/templates/TypeTemplate; m_18141_ + static + 0 o p_18142_ + 1 o p_18143_ + r (Lcom/mojang/datafixers/schemas/Schema;Ljava/lang/String;)Lcom/mojang/datafixers/types/templates/TypeTemplate; m_18144_ + static + 0 o p_18145_ + 1 o p_18146_ + registerEntities (Lcom/mojang/datafixers/schemas/Schema;)Ljava/util/Map; registerEntities + 0 o p_18148_ + registerTypes (Lcom/mojang/datafixers/schemas/Schema;Ljava/util/Map;Ljava/util/Map;)V registerTypes + 0 o p_18150_ + 1 o p_18151_ + 2 o p_18152_ + s (Lcom/mojang/datafixers/schemas/Schema;Ljava/lang/String;)Lcom/mojang/datafixers/types/templates/TypeTemplate; m_18153_ + static + 0 o p_18154_ + 1 o p_18155_ + t (Lcom/mojang/datafixers/schemas/Schema;Ljava/lang/String;)Lcom/mojang/datafixers/types/templates/TypeTemplate; m_18156_ + static + 0 o p_18157_ + 1 o p_18158_ + u (Lcom/mojang/datafixers/schemas/Schema;Ljava/lang/String;)Lcom/mojang/datafixers/types/templates/TypeTemplate; m_18159_ + static + 0 o p_18160_ + 1 o p_18161_ + v (Lcom/mojang/datafixers/schemas/Schema;Ljava/lang/String;)Lcom/mojang/datafixers/types/templates/TypeTemplate; m_18162_ + static + 0 o p_18163_ + 1 o p_18164_ +azv$1 net/minecraft/util/datafix/schemas/V705$1 + ()V + apply (Lcom/mojang/serialization/DynamicOps;Ljava/lang/Object;)Ljava/lang/Object; apply + 0 o p_18167_ + 1 o p_18168_ +azw net/minecraft/util/datafix/schemas/V808 + (ILcom/mojang/datafixers/schemas/Schema;)V + 0 o p_18170_ + 1 o p_18171_ + a (Lcom/mojang/datafixers/schemas/Schema;Ljava/util/Map;Ljava/lang/String;)V m_18174_ + static + 0 o p_18175_ + 1 o p_18176_ + 2 o p_18177_ + a (Lcom/mojang/datafixers/schemas/Schema;)Lcom/mojang/datafixers/types/templates/TypeTemplate; m_18172_ + static + 0 o p_18173_ + registerBlockEntities (Lcom/mojang/datafixers/schemas/Schema;)Ljava/util/Map; registerBlockEntities + 0 o p_18179_ +azx net/minecraft/util/datafix/schemas/V99 + a f_18180_ + b f_18181_ + c f_18182_ + ()V + static + (ILcom/mojang/datafixers/schemas/Schema;)V + 0 o p_18185_ + 1 o p_18186_ + a (Lcom/mojang/datafixers/schemas/Schema;Ljava/util/Map;Ljava/lang/String;)V m_18193_ + static + 0 o p_18194_ + 1 o p_18195_ + 2 o p_18196_ + a (Ljava/util/HashMap;)V m_145918_ + static + 0 o p_145919_ + a (Ljava/util/Map;)Lcom/mojang/datafixers/types/templates/TypeTemplate; m_18216_ + static + 0 o p_18217_ + a (Lcom/mojang/datafixers/schemas/Schema;)Lcom/mojang/datafixers/types/templates/TypeTemplate; m_18188_ + static + 0 o p_18189_ + a (Lcom/mojang/serialization/Dynamic;Ljava/util/Map;Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; m_145909_ + static + 0 o p_145910_ + 1 o p_145911_ + 2 o p_145912_ + a (Lcom/mojang/serialization/Dynamic;Ljava/util/Map;Ljava/lang/String;)Ljava/lang/Object; m_18205_ + static + 0 o p_18206_ + 1 o p_18207_ + 2 o p_18208_ + a (Lcom/mojang/serialization/Dynamic;Ljava/util/Map;Ljava/lang/String;Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; m_145913_ + static + 0 o p_145914_ + 1 o p_145915_ + 2 o p_145916_ + 3 o p_145917_ + a ()Lcom/mojang/datafixers/types/templates/TypeTemplate; m_18218_ + static + a (Lcom/mojang/datafixers/schemas/Schema;Ljava/lang/String;)Lcom/mojang/datafixers/types/templates/TypeTemplate; m_18190_ + static + 0 o p_18191_ + 1 o p_18192_ + a (Lcom/mojang/serialization/Dynamic;Ljava/lang/String;Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/Dynamic; m_145905_ + static + 0 o p_145906_ + 1 o p_145907_ + 2 o p_145908_ + b (Ljava/util/Map;)Lcom/mojang/datafixers/types/templates/TypeTemplate; m_18228_ + static + 0 o p_18229_ + b (Lcom/mojang/datafixers/schemas/Schema;Ljava/util/Map;Ljava/lang/String;)V m_18224_ + static + 0 o p_18225_ + 1 o p_18226_ + 2 o p_18227_ + b (Lcom/mojang/datafixers/schemas/Schema;Ljava/lang/String;)Lcom/mojang/datafixers/types/templates/TypeTemplate; m_18221_ + static + 0 o p_18222_ + 1 o p_18223_ + b ()Lcom/mojang/datafixers/types/templates/TypeTemplate; m_18230_ + static + b (Lcom/mojang/datafixers/schemas/Schema;)Lcom/mojang/datafixers/types/templates/TypeTemplate; m_145920_ + static + 0 o p_145921_ + c ()Lcom/mojang/datafixers/types/templates/TypeTemplate; m_18240_ + static + c (Lcom/mojang/datafixers/schemas/Schema;Ljava/lang/String;)Lcom/mojang/datafixers/types/templates/TypeTemplate; m_18233_ + static + 0 o p_18234_ + 1 o p_18235_ + c (Lcom/mojang/datafixers/schemas/Schema;)Lcom/mojang/datafixers/types/templates/TypeTemplate; m_18219_ + static + 0 o p_18220_ + c (Lcom/mojang/datafixers/schemas/Schema;Ljava/util/Map;Ljava/lang/String;)V m_18236_ + static + 0 o p_18237_ + 1 o p_18238_ + 2 o p_18239_ + d (Lcom/mojang/datafixers/schemas/Schema;Ljava/util/Map;Ljava/lang/String;)V m_18246_ + static + 0 o p_18247_ + 1 o p_18248_ + 2 o p_18249_ + d (Lcom/mojang/datafixers/schemas/Schema;)Lcom/mojang/datafixers/types/templates/TypeTemplate; m_18231_ + static + 0 o p_18232_ + d (Lcom/mojang/datafixers/schemas/Schema;Ljava/lang/String;)Lcom/mojang/datafixers/types/templates/TypeTemplate; m_18243_ + static + 0 o p_18244_ + 1 o p_18245_ + e (Lcom/mojang/datafixers/schemas/Schema;Ljava/lang/String;)Lcom/mojang/datafixers/types/templates/TypeTemplate; m_18252_ + static + 0 o p_18253_ + 1 o p_18254_ + e (Lcom/mojang/datafixers/schemas/Schema;)Lcom/mojang/datafixers/types/templates/TypeTemplate; m_18241_ + static + 0 o p_18242_ + f (Lcom/mojang/datafixers/schemas/Schema;Ljava/lang/String;)Lcom/mojang/datafixers/types/templates/TypeTemplate; m_18257_ + static + 0 o p_18258_ + 1 o p_18259_ + f (Lcom/mojang/datafixers/schemas/Schema;)Lcom/mojang/datafixers/types/templates/TypeTemplate; m_18250_ + static + 0 o p_18251_ + g (Lcom/mojang/datafixers/schemas/Schema;)Lcom/mojang/datafixers/types/templates/TypeTemplate; m_18255_ + static + 0 o p_18256_ + g (Lcom/mojang/datafixers/schemas/Schema;Ljava/lang/String;)Lcom/mojang/datafixers/types/templates/TypeTemplate; m_18262_ + static + 0 o p_18263_ + 1 o p_18264_ + h (Lcom/mojang/datafixers/schemas/Schema;)Lcom/mojang/datafixers/types/templates/TypeTemplate; m_18260_ + static + 0 o p_18261_ + h (Lcom/mojang/datafixers/schemas/Schema;Ljava/lang/String;)Lcom/mojang/datafixers/types/templates/TypeTemplate; m_18267_ + static + 0 o p_18268_ + 1 o p_18269_ + i (Lcom/mojang/datafixers/schemas/Schema;)Lcom/mojang/datafixers/types/templates/TypeTemplate; m_18265_ + static + 0 o p_18266_ + i (Lcom/mojang/datafixers/schemas/Schema;Ljava/lang/String;)Lcom/mojang/datafixers/types/templates/TypeTemplate; m_18272_ + static + 0 o p_18273_ + 1 o p_18274_ + j (Lcom/mojang/datafixers/schemas/Schema;)Lcom/mojang/datafixers/types/templates/TypeTemplate; m_18270_ + static + 0 o p_18271_ + j (Lcom/mojang/datafixers/schemas/Schema;Ljava/lang/String;)Lcom/mojang/datafixers/types/templates/TypeTemplate; m_18277_ + static + 0 o p_18278_ + 1 o p_18279_ + k (Lcom/mojang/datafixers/schemas/Schema;)Lcom/mojang/datafixers/types/templates/TypeTemplate; m_18275_ + static + 0 o p_18276_ + k (Lcom/mojang/datafixers/schemas/Schema;Ljava/lang/String;)Lcom/mojang/datafixers/types/templates/TypeTemplate; m_18282_ + static + 0 o p_18283_ + 1 o p_18284_ + l (Lcom/mojang/datafixers/schemas/Schema;Ljava/lang/String;)Lcom/mojang/datafixers/types/templates/TypeTemplate; m_18287_ + static + 0 o p_18288_ + 1 o p_18289_ + l (Lcom/mojang/datafixers/schemas/Schema;)Lcom/mojang/datafixers/types/templates/TypeTemplate; m_18280_ + static + 0 o p_18281_ + m (Lcom/mojang/datafixers/schemas/Schema;)Lcom/mojang/datafixers/types/templates/TypeTemplate; m_18285_ + static + 0 o p_18286_ + m (Lcom/mojang/datafixers/schemas/Schema;Ljava/lang/String;)Lcom/mojang/datafixers/types/templates/TypeTemplate; m_18290_ + static + 0 o p_18291_ + 1 o p_18292_ + n (Lcom/mojang/datafixers/schemas/Schema;Ljava/lang/String;)Lcom/mojang/datafixers/types/templates/TypeTemplate; m_18293_ + static + 0 o p_18294_ + 1 o p_18295_ + o (Lcom/mojang/datafixers/schemas/Schema;Ljava/lang/String;)Lcom/mojang/datafixers/types/templates/TypeTemplate; m_18296_ + static + 0 o p_18297_ + 1 o p_18298_ + p (Lcom/mojang/datafixers/schemas/Schema;Ljava/lang/String;)Lcom/mojang/datafixers/types/templates/TypeTemplate; m_18299_ + static + 0 o p_18300_ + 1 o p_18301_ + registerBlockEntities (Lcom/mojang/datafixers/schemas/Schema;)Ljava/util/Map; registerBlockEntities + 0 o p_18303_ + registerEntities (Lcom/mojang/datafixers/schemas/Schema;)Ljava/util/Map; registerEntities + 0 o p_18305_ + registerTypes (Lcom/mojang/datafixers/schemas/Schema;Ljava/util/Map;Ljava/util/Map;)V registerTypes + 0 o p_18307_ + 1 o p_18308_ + 2 o p_18309_ +azx$1 net/minecraft/util/datafix/schemas/V99$1 + ()V + apply (Lcom/mojang/serialization/DynamicOps;Ljava/lang/Object;)Ljava/lang/Object; apply + 0 o p_18312_ + 1 o p_18313_ +azy net/minecraft/util/datafix/schemas/package-info +azz net/minecraft/util/eventlog/EventLogDirectory + a f_260444_ + b f_260477_ + c f_260455_ + d f_260592_ + e f_260512_ + ()V + static + (Ljava/nio/file/Path;Ljava/lang/String;)V + 0 o p_261546_ + 1 o p_261467_ + a ()Lazz$d; m_261134_ + a (Ljava/nio/file/Path;Ljava/lang/String;)Lazz; m_260952_ + static + 0 o p_261743_ + 1 o p_261659_ + a (Ljava/nio/channels/ReadableByteChannel;Ljava/nio/file/Path;)V m_261201_ + static + 0 o p_262066_ + 1 o p_262054_ + a (Ljava/time/LocalDate;)Lazz$e; m_261046_ + 0 o p_261865_ + a (Ljava/nio/file/Path;Ljava/nio/file/Path;)V m_260828_ + static + 0 o p_261741_ + 1 o p_262101_ + a (Ljava/nio/file/Path;)Lazz$b; m_260829_ + 0 o p_261985_ + b (Ljava/nio/file/Path;)Z m_261272_ + static + 0 o p_262170_ +azz$a net/minecraft/util/eventlog/EventLogDirectory$CompressedFile + a f_260707_ + b f_260728_ + (Ljava/nio/file/Path;Lazz$c;)V + 0 o f_260707_ + 1 o f_260728_ + a ()Ljava/io/Reader; m_261064_ + b ()Lazz$a; m_260857_ + c ()Ljava/nio/file/Path; m_261161_ + d ()Lazz$c; m_260796_ + equals (Ljava/lang/Object;)Z equals + 0 o p_262017_ + hashCode ()I hashCode + toString ()Ljava/lang/String; toString +azz$b net/minecraft/util/eventlog/EventLogDirectory$File + a ()Ljava/io/Reader; m_261064_ + b ()Lazz$a; m_260857_ + c ()Ljava/nio/file/Path; m_261161_ + d ()Lazz$c; m_260796_ +azz$c net/minecraft/util/eventlog/EventLogDirectory$FileId + a f_260711_ + b f_260602_ + c f_260524_ + ()V + static + (Ljava/time/LocalDate;I)V + 0 o f_260711_ + 1 o f_260602_ + a ()Ljava/time/LocalDate; f_260711_ + a (Ljava/lang/String;)Lazz$c; m_260977_ + static + 0 o p_261762_ + b ()I f_260602_ + b (Ljava/lang/String;)Ljava/lang/String; m_261263_ + 0 o p_261982_ + equals (Ljava/lang/Object;)Z equals + 0 o p_261763_ + hashCode ()I hashCode + toString ()Ljava/lang/String; toString +azz$d net/minecraft/util/eventlog/EventLogDirectory$FileList + a f_260732_ + (Ljava/util/List;)V + 0 o p_261941_ + a ()Lazz$d; m_261127_ + a (Ljava/time/LocalDate;I)Lazz$d; m_261245_ + 0 o p_261825_ + 1 o p_261918_ + a (ILjava/time/LocalDate;Lazz$b;)Z m_260823_ + static + 0 o p_262050_ + 1 o p_261738_ + 2 o p_261494_ + b ()Ljava/util/stream/Stream; m_260849_ + c ()Ljava/util/Set; m_261047_ + iterator ()Ljava/util/Iterator; iterator +azz$e net/minecraft/util/eventlog/EventLogDirectory$RawFile + a f_260693_ + b f_260438_ + (Ljava/nio/file/Path;Lazz$c;)V + 0 o f_260693_ + 1 o f_260438_ + a ()Ljava/io/Reader; m_261064_ + b ()Lazz$a; m_260857_ + c ()Ljava/nio/file/Path; m_261161_ + d ()Lazz$c; m_260796_ + e ()Ljava/nio/channels/FileChannel; m_261200_ + equals (Ljava/lang/Object;)Z equals + 0 o p_261834_ + hashCode ()I hashCode + toString ()Ljava/lang/String; toString +b com/mojang/math/Constants + a f_142767_ + b f_142768_ + c f_142769_ + d f_142770_ + ()V +ba net/minecraft/advancements/critereon/ContextAwarePredicate + a f_285567_ + b f_285622_ + c f_285559_ + ()V + static + ([Leck;)V + 0 o p_286308_ + a ([Leck;)Lba; m_286108_ + static + 0 o p_286844_ + a (Ldzk;)Z m_285831_ + 0 o p_286260_ + a (Ljava/lang/String;Lbe;Lcom/google/gson/JsonElement;Lebu;)Lba; m_285802_ + static + 0 o p_286647_ + 1 o p_286323_ + 2 o p_286520_ + 3 o p_286912_ + a (Lct;)Lcom/google/gson/JsonElement; m_286026_ + 0 o p_286222_ + a ([Lba;Lct;)Lcom/google/gson/JsonElement; m_285805_ + static + 0 o p_286611_ + 1 o p_286638_ +baa net/minecraft/util/eventlog/JsonEventLog + a f_260478_ + b f_260727_ + c f_260641_ + d f_260653_ + ()V + static + (Lcom/mojang/serialization/Codec;Ljava/nio/channels/FileChannel;)V + 0 o p_261608_ + 1 o p_262072_ + a (Lcom/mojang/serialization/Codec;Ljava/nio/file/Path;)Lbaa; m_260847_ + static + 0 o p_261795_ + 1 o p_261489_ + a ()Lbab; m_260942_ + a (Ljava/lang/Object;)V m_260901_ + 0 o p_261929_ + b ()V m_260800_ + close ()V close +baa$1 net/minecraft/util/eventlog/JsonEventLog$1 + a f_260466_ + b f_260724_ + c f_260662_ + (Lbaa;Lbab;)V + 0 o p_261788_ + 1 o p_262145_ + a ()Ljava/lang/Object; m_261203_ + close ()V close +bab net/minecraft/util/eventlog/JsonEventLogReader + a (Lcom/mojang/serialization/Codec;Ljava/io/Reader;)Lbab; m_261256_ + static + 0 o p_261600_ + 1 o p_261836_ + a ()Ljava/lang/Object; m_261203_ +bab$1 net/minecraft/util/eventlog/JsonEventLogReader$1 + a f_260458_ + b f_260459_ + (Lcom/google/gson/stream/JsonReader;Lcom/mojang/serialization/Codec;)V + 0 o p_261487_ + 1 o p_261785_ + a ()Ljava/lang/Object; m_261203_ + close ()V close +bac net/minecraft/util/eventlog/package-info +bad net/minecraft/util/monitoring/jmx/MinecraftServerStatistics + a f_18314_ + b f_18315_ + c f_18316_ + d f_18317_ + ()V + static + (Lnet/minecraft/server/MinecraftServer;)V + 0 o p_18320_ + a ()F m_18321_ + a (Lnet/minecraft/server/MinecraftServer;)V m_18328_ + static + 0 o p_18329_ + a (I)[Ljavax/management/MBeanAttributeInfo; m_145922_ + static + 0 o p_145923_ + a (Lbad$a;)Ljavax/management/Attribute; m_145924_ + static + 0 o p_145925_ + b ()[J m_18330_ + b (Lbad$a;)Ljava/lang/String; m_18331_ + static + 0 o p_18332_ + getAttribute (Ljava/lang/String;)Ljava/lang/Object; getAttribute + 0 o p_18334_ + getAttributes ([Ljava/lang/String;)Ljavax/management/AttributeList; getAttributes + 0 o p_18336_ + getMBeanInfo ()Ljavax/management/MBeanInfo; getMBeanInfo + invoke (Ljava/lang/String;[Ljava/lang/Object;[Ljava/lang/String;)Ljava/lang/Object; invoke + 0 o p_18339_ + 1 o p_18340_ + 2 o p_18341_ + setAttribute (Ljavax/management/Attribute;)V setAttribute + 0 o p_18343_ + setAttributes (Ljavax/management/AttributeList;)Ljavax/management/AttributeList; setAttributes + 0 o p_18345_ +bad$a net/minecraft/util/monitoring/jmx/MinecraftServerStatistics$AttributeDescription + a f_18346_ + b f_18347_ + c f_18348_ + d f_18349_ + (Ljava/lang/String;Ljava/util/function/Supplier;Ljava/lang/String;Ljava/lang/Class;)V + 0 o p_18351_ + 1 o p_18352_ + 2 o p_18353_ + 3 o p_18354_ + a ()Ljavax/management/MBeanAttributeInfo; m_18361_ +bae net/minecraft/util/monitoring/jmx/package-info +baf net/minecraft/util/package-info +bag net/minecraft/util/profiling/ActiveProfiler + a f_18368_ + c f_18369_ + d f_18370_ + e f_18371_ + f f_18372_ + g f_18373_ + h f_18374_ + i f_18375_ + j f_18376_ + k f_18377_ + l f_18378_ + m f_18379_ + n f_18380_ + o f_145926_ + ()V + static + (Ljava/util/function/LongSupplier;Ljava/util/function/IntSupplier;Z)V + 0 o p_18383_ + 1 o p_18384_ + 2 o p_18385_ + a (Ljava/lang/String;)V m_6180_ + 0 o p_18390_ + a (Ljava/util/function/Supplier;)V m_6521_ + 0 o p_18392_ + a (Ljava/lang/String;I)V m_183275_ + 0 o p_185247_ + 1 o p_185248_ + a (Lbbr;)V m_142259_ + 0 o p_145928_ + a (Ljava/util/function/Supplier;I)V m_183536_ + 0 o p_185250_ + 1 o p_185251_ + a ()V m_7242_ + a (J)Ljava/lang/Object; m_18387_ + static + 0 o p_18388_ + b (Ljava/util/function/Supplier;)V m_6523_ + 0 o p_18397_ + b (Ljava/lang/String;)V m_6182_ + 0 o p_18395_ + b ()V m_7241_ + c (Ljava/lang/String;)Lbag$a; m_142431_ + 0 o p_145930_ + c ()V m_7238_ + d ()Lbam; m_5948_ + e ()Ljava/util/Set; m_142579_ + e (Ljava/lang/String;)Lbag$a; m_18404_ + static + 0 o p_18405_ + f ()Lbag$a; m_18406_ + g ()Ljava/lang/Object; m_18407_ + h ()Ljava/lang/Object; m_18408_ +bag$a net/minecraft/util/profiling/ActiveProfiler$PathEntry + a f_145932_ + b f_145933_ + c f_145934_ + d f_18410_ + e f_18411_ + ()V + a ()J m_7235_ + b ()J m_142752_ + c ()J m_7234_ + d ()Lit/unimi/dsi/fastutil/objects/Object2LongMap; m_7446_ +bah net/minecraft/util/profiling/ContinuousProfiler + a f_18430_ + b f_18431_ + c f_18432_ + (Ljava/util/function/LongSupplier;Ljava/util/function/IntSupplier;)V + 0 o p_18434_ + 1 o p_18435_ + a ()Z m_18436_ + b ()V m_18437_ + c ()V m_18438_ + d ()Lban; m_18439_ + e ()Lbam; m_18440_ +bai net/minecraft/util/profiling/EmptyProfileResults + a f_18441_ + ()V + static + ()V + a (Ljava/lang/String;)Ljava/util/List; m_6412_ + 0 o p_18448_ + a ()J m_7229_ + a (Ljava/nio/file/Path;)Z m_142444_ + 0 o p_145937_ + b ()I m_7230_ + c ()J m_7236_ + d ()I m_7317_ + e ()Ljava/lang/String; m_142368_ +baj net/minecraft/util/profiling/FilledProfileResults + a f_18452_ + b f_18453_ + c f_18454_ + e f_18455_ + f f_18456_ + g f_18457_ + h f_18458_ + i f_18459_ + j f_18460_ + k f_18461_ + ()V + static + (Ljava/util/Map;JIJI)V + 0 o p_18464_ + 1 o p_18465_ + 2 o p_18466_ + 3 o p_18467_ + 4 o p_18468_ + a (Ljava/util/Map;Ljava/util/List;Ljava/lang/String;Ljava/lang/Long;)V m_145941_ + static + 0 o p_145942_ + 1 o p_145943_ + 2 o p_145944_ + 3 o p_145945_ + a ()J m_7229_ + a (Ljava/lang/StringBuilder;ILjava/lang/String;Ljava/lang/Long;)V m_18505_ + 0 o p_18506_ + 1 o p_18507_ + 2 o p_18508_ + 3 o p_18509_ + a (Lbaj$a;)J m_18488_ + static + 0 o p_18489_ + a (Ljava/lang/String;)Ljava/util/List; m_6412_ + 0 o p_18493_ + a (Ljava/nio/file/Path;)Z m_142444_ + 0 o p_145940_ + a (JI)Ljava/lang/String; m_18485_ + 0 o p_18486_ + 1 o p_18487_ + a (ILjava/lang/String;Ljava/lang/StringBuilder;)V m_18481_ + 0 o p_18482_ + 1 o p_18483_ + 2 o p_18484_ + a (Ljava/lang/StringBuilder;I)Ljava/lang/StringBuilder; m_18497_ + static + 0 o p_18498_ + 1 o p_18499_ + a (Ljava/util/Map;Ljava/lang/String;Lbao;)V m_18510_ + static + 0 o p_18511_ + 1 o p_18512_ + 2 o p_18513_ + a (ILjava/lang/String;Lbaj$a;ILjava/lang/StringBuilder;)V m_18475_ + 0 o p_18476_ + 1 o p_18477_ + 2 o p_18478_ + 3 o p_18479_ + 4 o p_18480_ + a (Ljava/lang/String;Ljava/lang/String;)Z m_18494_ + static + 0 o p_18495_ + 1 o p_18496_ + a (IILjava/lang/StringBuilder;Ljava/util/Map$Entry;)V m_18470_ + 0 o p_18471_ + 1 o p_18472_ + 2 o p_18473_ + 3 o p_18474_ + a (Ljava/lang/StringBuilder;ILjava/lang/String;Lbaj$a;)V m_18500_ + 0 o p_18501_ + 1 o p_18502_ + 2 o p_18503_ + 3 o p_18504_ + a (Ljava/util/Map;Ljava/lang/StringBuilder;I)V m_18514_ + 0 o p_18515_ + 1 o p_18516_ + 2 o p_18517_ + b ()I m_7230_ + c ()J m_7236_ + c (Ljava/lang/String;)Lbao; m_18525_ + 0 o p_18526_ + d (Ljava/lang/String;)Lbaj$a; m_145946_ + static + 0 o p_145947_ + d ()I m_7317_ + e ()Ljava/lang/String; m_142368_ + f ()I m_7315_ + h ()Ljava/util/Map; m_18531_ + i ()Ljava/lang/String; m_18532_ + static +baj$1 net/minecraft/util/profiling/FilledProfileResults$1 + ()V + a ()J m_7235_ + b ()J m_142752_ + c ()J m_7234_ + d ()Lit/unimi/dsi/fastutil/objects/Object2LongMap; m_7446_ +baj$a net/minecraft/util/profiling/FilledProfileResults$CounterCollector + a f_18537_ + b f_18538_ + c f_18539_ + ()V + a (Ljava/util/Iterator;J)V m_18547_ + 0 o p_18548_ + 1 o p_18549_ + a (Ljava/lang/String;)Lbaj$a; m_18545_ + static + 0 o p_18546_ +bak net/minecraft/util/profiling/InactiveProfiler + a f_18554_ + ()V + static + ()V + a (Ljava/lang/String;)V m_6180_ + 0 o p_18559_ + a (Ljava/util/function/Supplier;)V m_6521_ + 0 o p_18561_ + a (Ljava/lang/String;I)V m_183275_ + 0 o p_185253_ + 1 o p_185254_ + a (Lbbr;)V m_142259_ + 0 o p_145951_ + a (Ljava/util/function/Supplier;I)V m_183536_ + 0 o p_185256_ + 1 o p_185257_ + a ()V m_7242_ + b (Ljava/util/function/Supplier;)V m_6523_ + 0 o p_18566_ + b (Ljava/lang/String;)V m_6182_ + 0 o p_18564_ + b ()V m_7241_ + c (Ljava/lang/String;)Lbag$a; m_142431_ + 0 o p_145953_ + c ()V m_7238_ + d ()Lbam; m_5948_ + e ()Ljava/util/Set; m_142579_ +bal net/minecraft/util/profiling/ProfileCollector + c (Ljava/lang/String;)Lbag$a; m_142431_ + 0 o p_145955_ + d ()Lbam; m_5948_ + e ()Ljava/util/Set; m_142579_ +bam net/minecraft/util/profiling/ProfileResults + d f_145956_ + a (Ljava/lang/String;)Ljava/util/List; m_6412_ + 0 o p_18574_ + a ()J m_7229_ + a (Ljava/nio/file/Path;)Z m_142444_ + 0 o p_145957_ + b ()I m_7230_ + b (Ljava/lang/String;)Ljava/lang/String; m_18575_ + static + 0 o p_18576_ + c ()J m_7236_ + d ()I m_7317_ + e ()Ljava/lang/String; m_142368_ + f ()I m_7315_ + g ()J m_18577_ +ban net/minecraft/util/profiling/ProfilerFiller + b f_145958_ + a (Ljava/lang/String;)V m_6180_ + 0 o p_18581_ + a (Ljava/util/function/Supplier;)V m_6521_ + 0 o p_18582_ + a (Ljava/lang/String;I)V m_183275_ + 0 o p_185258_ + 1 o p_185259_ + a (Lban;Lban;)Lban; m_18578_ + static + 0 o p_18579_ + 1 o p_18580_ + a (Lbbr;)V m_142259_ + 0 o p_145959_ + a (Ljava/util/function/Supplier;I)V m_183536_ + 0 o p_185260_ + 1 o p_185261_ + a ()V m_7242_ + b (Ljava/util/function/Supplier;)V m_6523_ + 0 o p_18584_ + b (Ljava/lang/String;)V m_6182_ + 0 o p_18583_ + b ()V m_7241_ + c (Ljava/util/function/Supplier;)V m_6525_ + 0 o p_18586_ + c ()V m_7238_ + d (Ljava/lang/String;)V m_6174_ + 0 o p_18585_ +ban$1 net/minecraft/util/profiling/ProfilerFiller$1 + a f_18587_ + c f_18588_ + (Lban;Lban;)V + 0 o p_18590_ + 1 o p_18591_ + a (Lbbr;)V m_142259_ + 0 o p_145961_ + a (Ljava/lang/String;)V m_6180_ + 0 o p_18594_ + a (Ljava/util/function/Supplier;I)V m_183536_ + 0 o p_185266_ + 1 o p_185267_ + a ()V m_7242_ + a (Ljava/util/function/Supplier;)V m_6521_ + 0 o p_18596_ + a (Ljava/lang/String;I)V m_183275_ + 0 o p_185263_ + 1 o p_185264_ + b (Ljava/util/function/Supplier;)V m_6523_ + 0 o p_18601_ + b (Ljava/lang/String;)V m_6182_ + 0 o p_18599_ + b ()V m_7241_ + c ()V m_7238_ +bao net/minecraft/util/profiling/ProfilerPathEntry + a ()J m_7235_ + b ()J m_142752_ + c ()J m_7234_ + d ()Lit/unimi/dsi/fastutil/objects/Object2LongMap; m_7446_ +bap net/minecraft/util/profiling/ResultField + a f_18607_ + b f_18608_ + c f_18609_ + d f_18610_ + (Ljava/lang/String;DDJ)V + 0 o p_18612_ + 1 o p_18613_ + 2 o p_18614_ + 3 o p_18615_ + a (Lbap;)I compareTo + 0 o p_18618_ + a ()I m_18616_ + compareTo (Ljava/lang/Object;)I compareTo + 0 o p_18620_ +baq net/minecraft/util/profiling/SingleTickProfiler + a f_18621_ + b f_18622_ + c f_18623_ + d f_18624_ + e f_18625_ + f f_18626_ + ()V + static + (Ljava/util/function/LongSupplier;Ljava/lang/String;J)V + 0 o p_145963_ + 1 o p_145964_ + 2 o p_145965_ + a ()Lban; m_18628_ + a (Ljava/lang/String;)Lbaq; m_18632_ + static + 0 o p_18633_ + a (Lban;Lbaq;)Lban; m_18629_ + static + 0 o p_18630_ + 1 o p_18631_ + b ()V m_18634_ + c ()I m_18635_ +bar net/minecraft/util/profiling/jfr/Environment + a CLIENT + b SERVER + c f_185270_ + d $VALUES + ()V + static + (Ljava/lang/String;ILjava/lang/String;)V + 0 o p_185274_ + 1 o p_185275_ + 2 o p_185276_ + a ()Ljava/lang/String; m_185277_ + a (Lnet/minecraft/server/MinecraftServer;)Lbar; m_185278_ + static + 0 o p_185279_ + b ()[Lbar; m_185280_ + static + valueOf (Ljava/lang/String;)Lbar; valueOf + static + 0 o p_185282_ + values ()[Lbar; values + static +bas net/minecraft/util/profiling/jfr/JfrProfiler + a f_185284_ + b f_185285_ + c f_185286_ + d f_185287_ + f f_185288_ + g f_185289_ + h f_185290_ + i f_185291_ + j f_185292_ + k f_185293_ + l f_185294_ + m f_185295_ + ()V + static + ()V + a (IILjava/net/SocketAddress;I)V m_183510_ + 0 o p_185302_ + 1 o p_185303_ + 2 o p_185304_ + 3 o p_185305_ + a (Lbar;Ljava/lang/String;Ljdk/jfr/Recording;)V m_242540_ + static + 0 o p_242754_ + 1 o p_242755_ + 2 o p_185311_ + a (Lbar;)Z m_183425_ + 0 o p_185307_ + a (F)V m_183597_ + 0 o p_185300_ + a (Lclt;Lacp;Ljava/lang/String;)Lbaw; m_183559_ + 0 o p_185313_ + 1 o p_185314_ + 2 o p_185315_ + a ()Lbas; m_185298_ + static + a (Ljava/io/Reader;Lbar;)Z m_185316_ + 0 o p_185317_ + 1 o p_185318_ + a (Ljava/net/SocketAddress;)Lnet/minecraft/util/profiling/jfr/event/NetworkSummaryEvent$b; m_185319_ + 0 o p_185320_ + b (IILjava/net/SocketAddress;I)V m_183508_ + 0 o p_185323_ + 1 o p_185324_ + 2 o p_185325_ + 3 o p_185326_ + b ()Ljava/nio/file/Path; m_183243_ + c ()Z m_183608_ + d ()Z m_183609_ + e ()Lbaw; m_183494_ + f ()V m_185330_ + g ()V m_185331_ + h ()V m_185332_ +bas$1 net/minecraft/util/profiling/jfr/JfrProfiler$1 + a f_185333_ + b f_185334_ + (Lbas;)V + 0 o p_185336_ + a ()V m_185337_ + recordingStateChanged (Ljdk/jfr/Recording;)V recordingStateChanged + 0 o p_185339_ +bat net/minecraft/util/profiling/jfr/JvmProfiler + e f_185340_ + ()V + static + a (IILjava/net/SocketAddress;I)V m_183510_ + 0 o p_185343_ + 1 o p_185344_ + 2 o p_185345_ + 3 o p_185346_ + a (Lbar;)Z m_183425_ + 0 o p_185347_ + a (F)V m_183597_ + 0 o p_185342_ + a (Lclt;Lacp;Ljava/lang/String;)Lbaw; m_183559_ + 0 o p_185348_ + 1 o p_185349_ + 2 o p_185350_ + b (IILjava/net/SocketAddress;I)V m_183508_ + 0 o p_185351_ + 1 o p_185352_ + 2 o p_185353_ + 3 o p_185354_ + b ()Ljava/nio/file/Path; m_183243_ + c ()Z m_183608_ + d ()Z m_183609_ + e ()Lbaw; m_183494_ +bat$a net/minecraft/util/profiling/jfr/JvmProfiler$NoOpProfiler + a f_185356_ + b f_185355_ + ()V + static + ()V + a (IILjava/net/SocketAddress;I)V m_183510_ + 0 o p_185363_ + 1 o p_185364_ + 2 o p_185365_ + 3 o p_185366_ + a (Lbar;)Z m_183425_ + 0 o p_185368_ + a (F)V m_183597_ + 0 o p_185361_ + a (Lclt;Lacp;Ljava/lang/String;)Lbaw; m_183559_ + 0 o p_185370_ + 1 o p_185371_ + 2 o p_185372_ + a ()V m_185359_ + static + b (IILjava/net/SocketAddress;I)V m_183508_ + 0 o p_185375_ + 1 o p_185376_ + 2 o p_185377_ + 3 o p_185378_ + b ()Ljava/nio/file/Path; m_183243_ + c ()Z m_183608_ + d ()Z m_183609_ + e ()Lbaw; m_183494_ +bau net/minecraft/util/profiling/jfr/Percentiles + a f_185382_ + ()V + static + ()V + a ([D)Ljava/util/Map; m_185390_ + static + 0 o p_185391_ + a ([J)Ljava/util/Map; m_185392_ + static + 0 o p_185393_ + a (Ljava/util/Map;Lit/unimi/dsi/fastutil/ints/Int2DoubleRBTreeMap;)V m_185387_ + static + 0 o p_185388_ + 1 o p_185389_ + a (Ljava/util/Map;)Ljava/util/Map; m_185385_ + static + 0 o p_185386_ +bav net/minecraft/util/profiling/jfr/SummaryReporter + a f_185394_ + b f_185395_ + ()V + static + (Ljava/lang/Runnable;)V + 0 o p_185398_ + a ()Ljava/lang/String; m_185407_ + static + a (Ljava/nio/file/Path;)V m_185400_ + 0 o p_185401_ + a (Ljava/util/function/Supplier;)V m_201932_ + static + 0 o p_201933_ + a (Ljava/util/function/Supplier;Ljava/lang/Throwable;)V m_201934_ + static + 0 o p_201935_ + 1 o p_201936_ + b ()Ljava/lang/String; m_185410_ + static + b (Ljava/nio/file/Path;)Ljava/lang/String; m_185408_ + static + 0 o p_185409_ + c (Ljava/nio/file/Path;)Ljava/lang/String; m_185411_ + static + 0 o p_185412_ +baw net/minecraft/util/profiling/jfr/callback/ProfiledDuration + finish ()V m_185413_ +bax net/minecraft/util/profiling/jfr/callback/package-info +bay net/minecraft/util/profiling/jfr/event/PacketEvent + bytes bytes + packetId packetId + protocolId protocolId + remoteAddress remoteAddress + (IILjava/net/SocketAddress;I)V + 0 o p_185419_ + 1 o p_185420_ + 2 o p_185421_ + 3 o p_185422_ +bay$a net/minecraft/util/profiling/jfr/event/PacketEvent$Fields + a f_185423_ + b f_185424_ + c f_185425_ + d f_185426_ + ()V +baz net/minecraft/util/profiling/jfr/event/package-info +bb net/minecraft/advancements/critereon/CuredZombieVillagerTrigger + a f_24270_ + ()V + static + ()V + a (Laig;Lbwv;Lbyb;)V m_24274_ + 0 o p_24275_ + 1 o p_24276_ + 2 o p_24277_ + a ()Lacq; m_7295_ + a (Lcom/google/gson/JsonObject;Lba;Lbe;)Lbb$a; m_7214_ + 0 o p_286832_ + 1 o p_286917_ + 2 o p_286335_ + a (Ldzk;Ldzk;Lbb$a;)Z m_24282_ + static + 0 o p_24283_ + 1 o p_24284_ + 2 o p_24285_ + b (Lcom/google/gson/JsonObject;Lba;Lbe;)Lar; m_7214_ + 0 o p_286894_ + 1 o p_286716_ + 2 o p_286477_ +bb$a net/minecraft/advancements/critereon/CuredZombieVillagerTrigger$TriggerInstance + a f_24291_ + b f_24292_ + (Lba;Lba;Lba;)V + 0 o p_286338_ + 1 o p_286686_ + 2 o p_286773_ + a (Lct;)Lcom/google/gson/JsonObject; m_7683_ + 0 o p_24298_ + a (Ldzk;Ldzk;)Z m_24299_ + 0 o p_24300_ + 1 o p_24301_ + c ()Lbb$a; m_24302_ + static +bba net/minecraft/util/profiling/jfr/package-info +bbb net/minecraft/util/profiling/jfr/parse/JfrStatsParser + a f_185428_ + b f_185429_ + c f_185430_ + d f_185431_ + e f_185432_ + f f_185433_ + g f_185434_ + h f_185435_ + i f_185436_ + j f_185437_ + k f_185438_ + l f_185439_ + m f_185440_ + n f_185441_ + (Ljava/util/stream/Stream;)V + 0 o p_185443_ + a (Ljdk/jfr/consumer/RecordedEvent;)V m_185456_ + 0 o p_185457_ + a (Ljdk/jfr/consumer/RecordedEvent;ILjava/util/Map;)V m_185458_ + 0 o p_185459_ + 1 o p_185460_ + 2 o p_185461_ + a (Ljava/time/Duration;Ljava/util/Map;)Lbbk; m_185449_ + static + 0 o p_185450_ + 1 o p_185451_ + a (Ljava/util/stream/Stream;)V m_185454_ + 0 o p_185455_ + a (Lbbk$b;)Lbbb$a; m_185445_ + static + 0 o p_185446_ + a (Ljava/nio/file/Path;)Lbbc; m_185447_ + static + 0 o p_185448_ + a ()Lbbc; m_185444_ + a (Ljava/util/Map$Entry;)Lcom/mojang/datafixers/util/Pair; m_185452_ + static + 0 o p_185453_ + a (Ljdk/jfr/consumer/RecordedEvent;Ljava/util/List;Ljava/lang/String;)V m_185462_ + 0 o p_185463_ + 1 o p_185464_ + 2 o p_185465_ +bbb$1 net/minecraft/util/profiling/jfr/parse/JfrStatsParser$1 + a f_185466_ + (Ljdk/jfr/consumer/RecordingFile;)V + 0 o p_185468_ + a ()Ljdk/jfr/consumer/RecordedEvent; next + hasNext ()Z hasNext + next ()Ljava/lang/Object; next +bbb$a net/minecraft/util/profiling/jfr/parse/JfrStatsParser$MutableCountAndSize + a f_185472_ + b f_185473_ + ()V + a (I)V m_185476_ + 0 o p_185477_ + a ()Lbbk$a; m_185475_ +bbc net/minecraft/util/profiling/jfr/parse/JfrStatsResult + a f_185478_ + b f_185479_ + c f_185480_ + d f_185481_ + e f_185482_ + f f_185483_ + g f_185484_ + h f_185485_ + i f_185486_ + j f_185487_ + k f_185488_ + l f_185489_ + m f_185490_ + (Ljava/time/Instant;Ljava/time/Instant;Ljava/time/Duration;Ljava/time/Duration;Ljava/util/List;Ljava/util/List;Lbbj$a;Lbbl$a;Lbbk;Lbbk;Lbbi$a;Lbbi$a;Ljava/util/List;)V + 0 o f_185478_ + 1 o f_185479_ + 2 o f_185480_ + 3 o f_185481_ + 4 o f_185482_ + 5 o f_185483_ + 6 o f_185484_ + 7 o f_185485_ + 8 o f_185486_ + 9 o f_185487_ + 10 o f_185488_ + 11 o f_185489_ + 12 o f_185490_ + a ()Ljava/util/List; m_185505_ + a (Lcom/mojang/datafixers/util/Pair;)Ljava/time/Duration; m_185506_ + static + 0 o p_185507_ + a (Ljava/util/Map$Entry;)Lcom/mojang/datafixers/util/Pair; m_185508_ + static + 0 o p_185509_ + b ()Ljava/lang/String; m_185510_ + c ()Ljava/time/Instant; f_185478_ + d ()Ljava/time/Instant; f_185479_ + e ()Ljava/time/Duration; f_185480_ + equals (Ljava/lang/Object;)Z equals + 0 o p_185515_ + f ()Ljava/time/Duration; f_185481_ + g ()Ljava/util/List; f_185482_ + h ()Ljava/util/List; f_185483_ + hashCode ()I hashCode + i ()Lbbj$a; f_185484_ + j ()Lbbl$a; f_185485_ + k ()Lbbk; f_185486_ + l ()Lbbk; f_185487_ + m ()Lbbi$a; f_185488_ + n ()Lbbi$a; f_185489_ + o ()Ljava/util/List; f_185490_ + toString ()Ljava/lang/String; toString +bbd net/minecraft/util/profiling/jfr/parse/package-info +bbe net/minecraft/util/profiling/jfr/serialize/JfrResultJsonSerializer + a f_185528_ + b f_185529_ + c f_185530_ + d f_185531_ + e f_185532_ + f f_185533_ + ()V + a (Lbbg;)Lcom/google/gson/JsonElement; m_185537_ + static + 0 o p_185538_ + a (Lbbm;)D m_185547_ + static + 0 o p_185548_ + a (Lbbl$a;)Lcom/google/gson/JsonElement; m_185545_ + 0 o p_185546_ + a (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonObject;)V m_185559_ + static + 0 o p_185560_ + 1 o p_185561_ + a (Lbbj$a;)Lcom/google/gson/JsonElement; m_185541_ + 0 o p_185542_ + a (Ljava/util/List;Ljava/util/function/ToDoubleFunction;)Lcom/google/gson/JsonObject; m_185574_ + static + 0 o p_185575_ + 1 o p_185576_ + a (Lcom/google/gson/JsonArray;Ljava/lang/String;Ljava/lang/Double;)V m_185552_ + static + 0 o p_185553_ + 1 o p_185554_ + 2 o p_185555_ + a (Lbbi$a;)Lcom/google/gson/JsonElement; m_185539_ + 0 o p_185540_ + a (Lcom/google/gson/JsonObject;Ljava/lang/Integer;Ljava/lang/Double;)V m_185562_ + static + 0 o p_185563_ + 1 o p_185564_ + 2 o p_185565_ + a (Lbbc;)Ljava/lang/String; m_185535_ + 0 o p_185536_ + a (Lcom/google/gson/JsonArray;Lcom/mojang/datafixers/util/Pair;)V m_185549_ + static + 0 o p_185550_ + 1 o p_185551_ + a (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonArray;)V m_185556_ + static + 0 o p_185557_ + 1 o p_185558_ + a (Lbbk;)Lcom/google/gson/JsonElement; m_185543_ + 0 o p_185544_ + a (Ljava/lang/String;Ljava/lang/Double;Lcom/google/gson/JsonObject;)V m_185568_ + static + 0 o p_185569_ + 1 o p_185570_ + 2 o p_185571_ + a (Ljava/util/List;)Lcom/google/gson/JsonElement; m_185572_ + 0 o p_185573_ + a (Lcom/mojang/datafixers/util/Pair;)D m_185566_ + static + 0 o p_185567_ + b (Lbbc;)Lcom/google/gson/JsonElement; m_185577_ + 0 o p_185578_ + b (Lcom/google/gson/JsonArray;Lcom/mojang/datafixers/util/Pair;)V m_185579_ + static + 0 o p_185580_ + 1 o p_185581_ + b (Lcom/google/gson/JsonObject;Ljava/lang/Integer;Ljava/lang/Double;)V m_185582_ + static + 0 o p_185583_ + 1 o p_185584_ + 2 o p_185585_ + b (Ljava/util/List;)Lcom/google/gson/JsonElement; m_185586_ + 0 o p_185587_ + c (Ljava/util/List;)Lcom/google/gson/JsonElement; m_185590_ + 0 o p_185591_ + c (Lbbc;)Lcom/google/gson/JsonElement; m_185588_ + 0 o p_185589_ +bbf net/minecraft/util/profiling/jfr/serialize/package-info +bbg net/minecraft/util/profiling/jfr/stats/ChunkGenStat + a f_185592_ + b f_185593_ + c f_185594_ + d f_185595_ + e f_185596_ + (Ljava/time/Duration;Lclt;Lahv;Ldec;Ljava/lang/String;)V + 0 o f_185592_ + 1 o f_185593_ + 2 o f_185594_ + 3 o f_185595_ + 4 o f_185596_ + a (Ljdk/jfr/consumer/RecordedEvent;)Lbbg; m_185604_ + static + 0 o p_185605_ + a ()Ljava/time/Duration; m_183571_ + b ()Lclt; f_185593_ + c ()Lahv; f_185594_ + d ()Ldec; f_185595_ + e ()Ljava/lang/String; f_185596_ + equals (Ljava/lang/Object;)Z equals + 0 o p_185611_ + hashCode ()I hashCode + toString ()Ljava/lang/String; toString +bbh net/minecraft/util/profiling/jfr/stats/CpuLoadStat + a f_185614_ + b f_185615_ + c f_185616_ + (DDD)V + 0 o f_185614_ + 1 o f_185615_ + 2 o f_185616_ + a (Ljdk/jfr/consumer/RecordedEvent;)Lbbh; m_185622_ + static + 0 o p_185623_ + a ()D f_185614_ + b ()D f_185615_ + c ()D f_185616_ + equals (Ljava/lang/Object;)Z equals + 0 o p_185627_ + hashCode ()I hashCode + toString ()Ljava/lang/String; toString +bbi net/minecraft/util/profiling/jfr/stats/FileIOStat + a f_185630_ + b f_185631_ + c f_185632_ + (Ljava/time/Duration;Ljava/lang/String;J)V + 0 o f_185630_ + 1 o f_185631_ + 2 o f_185632_ + a (Ljava/time/Duration;Ljava/util/List;)Lbbi$a; m_185640_ + static + 0 o p_185641_ + 1 o p_185642_ + a (Ljava/util/Map$Entry;)Lcom/mojang/datafixers/util/Pair; m_185643_ + static + 0 o p_185644_ + a ()Ljava/time/Duration; f_185630_ + a (Lbbi;)J m_185638_ + static + 0 o p_185639_ + b (Lbbi;)Ljava/lang/String; m_185646_ + static + 0 o p_185647_ + b ()Ljava/lang/String; f_185631_ + c ()J f_185632_ + c (Lbbi;)Z m_185649_ + static + 0 o p_185650_ + d (Lbbi;)J m_185651_ + static + 0 o p_185652_ + equals (Ljava/lang/Object;)Z equals + 0 o p_185654_ + hashCode ()I hashCode + toString ()Ljava/lang/String; toString +bbi$a net/minecraft/util/profiling/jfr/stats/FileIOStat$Summary + a f_185657_ + b f_185658_ + c f_185659_ + d f_185660_ + e f_185661_ + f f_185662_ + (JDJDLjava/time/Duration;Ljava/util/List;)V + 0 o f_185657_ + 1 o f_185658_ + 2 o f_185659_ + 3 o f_185660_ + 4 o f_185661_ + 5 o f_185662_ + a ()J f_185657_ + b ()D f_185658_ + c ()J f_185659_ + d ()D f_185660_ + e ()Ljava/time/Duration; f_185661_ + equals (Ljava/lang/Object;)Z equals + 0 o p_185676_ + f ()Ljava/util/List; f_185662_ + hashCode ()I hashCode + toString ()Ljava/lang/String; toString +bbj net/minecraft/util/profiling/jfr/stats/GcHeapStat + a f_185680_ + b f_185681_ + c f_185682_ + (Ljava/time/Instant;JLbbj$b;)V + 0 o f_185680_ + 1 o f_185681_ + 2 o f_185682_ + a (Ljava/time/Duration;Ljava/util/List;Ljava/time/Duration;I)Lbbj$a; m_185690_ + static + 0 o p_185691_ + 1 o p_185692_ + 2 o p_185693_ + 3 o p_185694_ + a (Lbbj;)Lbbj$b; m_185688_ + static + 0 o p_185689_ + a ()Ljava/time/Instant; f_185680_ + a (Ljava/util/List;)D m_185695_ + static + 0 o p_185696_ + a (Ljdk/jfr/consumer/RecordedEvent;)Lbbj; m_185697_ + static + 0 o p_185698_ + b ()J f_185681_ + c ()Lbbj$b; f_185682_ + equals (Ljava/lang/Object;)Z equals + 0 o p_185702_ + hashCode ()I hashCode + toString ()Ljava/lang/String; toString +bbj$a net/minecraft/util/profiling/jfr/stats/GcHeapStat$Summary + a f_185705_ + b f_185706_ + c f_185707_ + d f_185708_ + (Ljava/time/Duration;Ljava/time/Duration;ID)V + 0 o f_185705_ + 1 o f_185706_ + 2 o f_185707_ + 3 o f_185708_ + a ()F m_185714_ + b ()Ljava/time/Duration; f_185705_ + c ()Ljava/time/Duration; f_185706_ + d ()I f_185707_ + e ()D f_185708_ + equals (Ljava/lang/Object;)Z equals + 0 o p_185720_ + hashCode ()I hashCode + toString ()Ljava/lang/String; toString +bbj$b net/minecraft/util/profiling/jfr/stats/GcHeapStat$Timing + a BEFORE_GC + b AFTER_GC + c $VALUES + ()V + static + (Ljava/lang/String;I)V + 0 o p_185728_ + 1 o p_185729_ + a ()[Lbbj$b; m_185730_ + static + valueOf (Ljava/lang/String;)Lbbj$b; valueOf + static + 0 o p_185732_ + values ()[Lbbj$b; values + static +bbk net/minecraft/util/profiling/jfr/stats/NetworkPacketSummary + a f_185734_ + b f_185735_ + c f_185736_ + (Ljava/time/Duration;Ljava/util/List;)V + 0 o p_185738_ + 1 o p_185739_ + a ()D m_185740_ + b ()D m_185741_ + c ()J m_185742_ + d ()J m_185743_ + e ()Ljava/util/List; m_185744_ + f ()Lbbk$a; m_185745_ + static +bbk$a net/minecraft/util/profiling/jfr/stats/NetworkPacketSummary$PacketCountAndSize + a f_185746_ + b f_185747_ + c f_185748_ + ()V + static + (JJ)V + 0 o f_185746_ + 1 o f_185747_ + a ()J f_185746_ + a (Lbbk$a;)Lbbk$a; m_185754_ + 0 o p_185755_ + b ()J f_185747_ + equals (Ljava/lang/Object;)Z equals + 0 o p_185758_ + hashCode ()I hashCode + toString ()Ljava/lang/String; toString +bbk$b net/minecraft/util/profiling/jfr/stats/NetworkPacketSummary$PacketIdentification + a f_185761_ + b f_185762_ + c f_185763_ + d f_185764_ + ()V + static + (Lup;II)V + 0 o f_185761_ + 1 o f_185762_ + 2 o f_185763_ + a ()Ljava/lang/String; m_185770_ + a (Ljdk/jfr/consumer/RecordedEvent;)Lbbk$b; m_185777_ + static + 0 o p_185778_ + a (Lcom/google/common/collect/ImmutableMap$Builder;Lup;Lse;Ljava/lang/Integer;Ljava/lang/Class;)V m_185771_ + static + 0 o p_185772_ + 1 o p_185773_ + 2 o p_185774_ + 3 o p_185775_ + 4 o p_185776_ + b ()Lup; f_185761_ + c ()I f_185762_ + d ()I f_185763_ + equals (Ljava/lang/Object;)Z equals + 0 o p_185783_ + hashCode ()I hashCode + toString ()Ljava/lang/String; toString +bbl net/minecraft/util/profiling/jfr/stats/ThreadAllocationStat + a f_185786_ + b f_185787_ + c f_185788_ + d f_185789_ + (Ljava/time/Instant;Ljava/lang/String;J)V + 0 o f_185786_ + 1 o f_185787_ + 2 o f_185788_ + a (Ljava/util/Map;Ljava/lang/String;Ljava/util/List;)V m_185799_ + static + 0 o p_185800_ + 1 o p_185801_ + 2 o p_185802_ + a (Ljava/util/List;)Lbbl$a; m_185797_ + static + 0 o p_185798_ + a ()Ljava/time/Instant; f_185786_ + a (Ljdk/jfr/consumer/RecordedEvent;)Lbbl; m_185803_ + static + 0 o p_185804_ + a (Lbbl;)Ljava/lang/String; m_185795_ + static + 0 o p_185796_ + b ()Ljava/lang/String; f_185787_ + c ()J f_185788_ + equals (Ljava/lang/Object;)Z equals + 0 o p_185808_ + hashCode ()I hashCode + toString ()Ljava/lang/String; toString +bbl$a net/minecraft/util/profiling/jfr/stats/ThreadAllocationStat$Summary + a f_185811_ + (Ljava/util/Map;)V + 0 o f_185811_ + a ()Ljava/util/Map; f_185811_ + equals (Ljava/lang/Object;)Z equals + 0 o p_185816_ + hashCode ()I hashCode + toString ()Ljava/lang/String; toString +bbm net/minecraft/util/profiling/jfr/stats/TickTimeStat + a f_185819_ + b f_185820_ + (Ljava/time/Instant;Ljava/time/Duration;)V + 0 o f_185819_ + 1 o f_185820_ + a (Ljdk/jfr/consumer/RecordedEvent;)Lbbm; m_185825_ + static + 0 o p_185826_ + a ()Ljava/time/Instant; f_185819_ + b ()Ljava/time/Duration; f_185820_ + equals (Ljava/lang/Object;)Z equals + 0 o p_185829_ + hashCode ()I hashCode + toString ()Ljava/lang/String; toString +bbn net/minecraft/util/profiling/jfr/stats/TimeStamped + a ()Ljava/time/Instant; m_185832_ +bbo net/minecraft/util/profiling/jfr/stats/TimedStat + a ()Ljava/time/Duration; m_183571_ +bbp net/minecraft/util/profiling/jfr/stats/TimedStatSummary + a f_185833_ + b f_185834_ + c f_185835_ + d f_185836_ + e f_185837_ + f f_185838_ + (Lbbo;Lbbo;Lbbo;ILjava/util/Map;Ljava/time/Duration;)V + 0 o f_185833_ + 1 o f_185834_ + 2 o f_185835_ + 3 o f_185836_ + 4 o f_185837_ + 5 o f_185838_ + a (Ljava/util/List;)Lbbp; m_185849_ + static + 0 o p_185850_ + a ()Lbbo; f_185833_ + a (Lbbo;)J m_185847_ + static + 0 o p_185848_ + b ()Lbbo; f_185834_ + c ()Lbbo; f_185835_ + d ()I f_185836_ + e ()Ljava/util/Map; f_185837_ + equals (Ljava/lang/Object;)Z equals + 0 o p_185856_ + f ()Ljava/time/Duration; f_185838_ + hashCode ()I hashCode + toString ()Ljava/lang/String; toString +bbq net/minecraft/util/profiling/jfr/stats/package-info +bbr net/minecraft/util/profiling/metrics/MetricCategory + a PATH_FINDING + b EVENT_LOOPS + c MAIL_BOXES + d TICK_LOOP + e JVM + f CHUNK_RENDERING + g CHUNK_RENDERING_DISPATCHING + h CPU + i GPU + j f_145974_ + k $VALUES + ()V + static + (Ljava/lang/String;ILjava/lang/String;)V + 0 o p_145978_ + 1 o p_145979_ + 2 o p_145980_ + a ()Ljava/lang/String; m_145981_ + b ()[Lbbr; m_145982_ + static + valueOf (Ljava/lang/String;)Lbbr; valueOf + static + 0 o p_145984_ + values ()[Lbbr; values + static +bbs net/minecraft/util/profiling/metrics/MetricSampler + a f_145986_ + b f_145987_ + c f_145988_ + d f_145989_ + e f_145990_ + f f_145991_ + g f_145992_ + h f_145993_ + i f_145994_ + (Ljava/lang/String;Lbbr;Ljava/util/function/DoubleSupplier;Ljava/lang/Runnable;Lbbs$c;)V + 0 o p_145996_ + 1 o p_145997_ + 2 o p_145998_ + 3 o p_145999_ + 4 o p_146000_ + a (I)V m_146002_ + 0 o p_146003_ + a (Ljava/lang/String;Lbbr;Ljava/lang/Object;Ljava/util/function/ToDoubleFunction;)Lbbs; m_146004_ + static + 0 o p_146005_ + 1 o p_146006_ + 2 o p_146007_ + 3 o p_146008_ + a (Ljava/lang/String;Lbbr;Ljava/util/function/DoubleSupplier;)Lbbs; m_146009_ + static + 0 o p_146010_ + 1 o p_146011_ + 2 o p_146012_ + a (Ljava/lang/String;Lbbr;Ljava/util/function/ToDoubleFunction;Ljava/lang/Object;)Lbbs$a; m_146013_ + static + 0 o p_146014_ + 1 o p_146015_ + 2 o p_146016_ + 3 o p_146017_ + a ()V m_146001_ + b ()V m_146018_ + c ()Ljava/util/function/DoubleSupplier; m_146019_ + d ()Ljava/lang/String; m_146020_ + e ()Lbbr; m_146021_ + equals (Ljava/lang/Object;)Z equals + 0 o p_146023_ + f ()Lbbs$b; m_146024_ + g ()Z m_146025_ + h ()V m_146026_ + hashCode ()I hashCode +bbs$a net/minecraft/util/profiling/metrics/MetricSampler$MetricSamplerBuilder + a f_146028_ + b f_146029_ + c f_146030_ + d f_146031_ + e f_146032_ + f f_146033_ + (Ljava/lang/String;Lbbr;Ljava/util/function/ToDoubleFunction;Ljava/lang/Object;)V + 0 o p_146035_ + 1 o p_146036_ + 2 o p_146037_ + 3 o p_146038_ + a (Lbbs$c;)Lbbs$a; m_146040_ + 0 o p_146041_ + a (Ljava/util/function/Consumer;)Lbbs$a; m_146042_ + 0 o p_146043_ + a ()Lbbs; m_146039_ + a (Ljava/util/function/ToDoubleFunction;Ljava/lang/Object;)D m_146044_ + static + 0 o p_146045_ + 1 o p_146046_ + b (Ljava/util/function/Consumer;)V m_146047_ + 0 o p_146048_ +bbs$b net/minecraft/util/profiling/metrics/MetricSampler$SamplerResult + a f_146049_ + b f_146050_ + c f_146051_ + (IILit/unimi/dsi/fastutil/ints/Int2DoubleMap;)V + 0 o p_146053_ + 1 o p_146054_ + 2 o p_146055_ + a (I)D m_146057_ + 0 o p_146058_ + a ()I m_146056_ + b ()I m_146059_ +bbs$c net/minecraft/util/profiling/metrics/MetricSampler$ThresholdTest + test (D)Z m_142488_ + 0 o p_146060_ +bbs$d net/minecraft/util/profiling/metrics/MetricSampler$ValueIncreasedByPercentage + a f_146061_ + b f_146062_ + (F)V + 0 o p_146064_ + test (D)Z m_142488_ + 0 o p_146066_ +bbt net/minecraft/util/profiling/metrics/MetricsRegistry + a f_146067_ + b f_146068_ + ()V + static + ()V + a (Ljava/util/Map;)Ljava/util/List; m_146076_ + static + 0 o p_146077_ + a (Ljava/util/Map$Entry;)Lbbs; m_146074_ + static + 0 o p_146075_ + a ()Ljava/util/List; m_146071_ + a (Lbbv;)V m_146072_ + 0 o p_146073_ + b (Lbbv;)Ljava/util/stream/Stream; m_146078_ + static + 0 o p_146079_ +bbt$a net/minecraft/util/profiling/metrics/MetricsRegistry$AggregatedMetricSampler + b f_146080_ + (Ljava/lang/String;Ljava/util/List;)V + 0 o p_146082_ + 1 o p_146083_ + a (Ljava/util/List;D)Z m_146089_ + static + 0 o p_146090_ + 1 o p_146091_ + a (Ljava/util/List;)Lbbs$c; m_146087_ + static + 0 o p_146088_ + a (DLbbs;)Z m_146084_ + static + 0 o p_146085_ + 1 o p_146086_ + b (Ljava/util/List;)V m_146092_ + static + 0 o p_146093_ + c (Ljava/util/List;)D m_146094_ + static + 0 o p_146095_ + d (Ljava/util/List;)V m_146096_ + static + 0 o p_146097_ + e (Ljava/util/List;)D m_146098_ + static + 0 o p_146099_ + equals (Ljava/lang/Object;)Z equals + 0 o p_146101_ + hashCode ()I hashCode +bbu net/minecraft/util/profiling/metrics/MetricsSamplerProvider + a (Ljava/util/function/Supplier;)Ljava/util/Set; m_142531_ + 0 o p_146103_ +bbv net/minecraft/util/profiling/metrics/ProfilerMeasured + bk ()Ljava/util/List; m_142754_ +bbw net/minecraft/util/profiling/metrics/package-info +bbx net/minecraft/util/profiling/metrics/profiling/ActiveMetricsRecorder + a f_146104_ + b f_146105_ + c f_146106_ + d f_146107_ + e f_146108_ + f f_146109_ + g f_146110_ + h f_146111_ + i f_146112_ + j f_146113_ + k f_146114_ + l f_146115_ + m f_146116_ + n f_146117_ + o f_146118_ + ()V + static + (Lbbu;Ljava/util/function/LongSupplier;Ljava/util/concurrent/Executor;Lbcd;Ljava/util/function/Consumer;Ljava/util/function/Consumer;)V + 0 o p_146121_ + 1 o p_146122_ + 2 o p_146123_ + 3 o p_146124_ + 4 o p_146125_ + 5 o p_146126_ + a (Ljava/util/function/Consumer;)V m_146142_ + static + 0 o p_146143_ + a (Lbam;)V m_146128_ + 0 o p_146129_ + a (Ljava/util/HashSet;Lbam;)V m_146139_ + 0 o p_146140_ + 1 o p_146141_ + a (Lbbu;Ljava/util/function/LongSupplier;Ljava/util/concurrent/Executor;Lbcd;Ljava/util/function/Consumer;Ljava/util/function/Consumer;)Lbbx; m_146132_ + static + 0 o p_146133_ + 1 o p_146134_ + 2 o p_146135_ + 3 o p_146136_ + 4 o p_146137_ + 5 o p_146138_ + a ()V m_142760_ + a (Ljava/util/Collection;)V m_216816_ + 0 o p_216817_ + a (Lbbs;)Ljava/util/List; m_146130_ + static + 0 o p_146131_ + b ()V m_213832_ + c ()V m_142759_ + d ()V m_142758_ + e ()Z m_142763_ + f ()Lban; m_142610_ + g ()V m_146148_ + h ()I m_146149_ + i ()Lbal; m_146150_ + j ()I m_146151_ + k ()I m_146152_ +bby net/minecraft/util/profiling/metrics/profiling/InactiveMetricsRecorder + a f_146153_ + ()V + static + ()V + a ()V m_142760_ + b ()V m_213832_ + c ()V m_142759_ + d ()V m_142758_ + e ()Z m_142763_ + f ()Lban; m_142610_ +bbz net/minecraft/util/profiling/metrics/profiling/MetricsRecorder + a ()V m_142760_ + b ()V m_213832_ + c ()V m_142759_ + d ()V m_142758_ + e ()Z m_142763_ + f ()Lban; m_142610_ +bc net/minecraft/advancements/critereon/DamagePredicate + a f_24902_ + b f_24903_ + c f_24904_ + d f_24905_ + e f_24906_ + f f_24907_ + ()V + static + (Lcj$c;Lcj$c;Lbo;Ljava/lang/Boolean;Lbd;)V + 0 o p_24911_ + 1 o p_24912_ + 2 o p_24913_ + 3 o p_24914_ + 4 o p_24915_ + ()V + a (Lcom/google/gson/JsonElement;)Lbc; m_24923_ + static + 0 o p_24924_ + a ()Lcom/google/gson/JsonElement; m_24916_ + a (Laig;Lben;FFZ)Z m_24917_ + 0 o p_24918_ + 1 o p_24919_ + 2 o p_24920_ + 3 o p_24921_ + 4 o p_24922_ +bc$a net/minecraft/advancements/critereon/DamagePredicate$Builder + a f_24925_ + b f_24926_ + c f_24927_ + d f_24928_ + e f_24929_ + ()V + a (Lcj$c;)Lbc$a; m_148145_ + 0 o p_148146_ + a (Lbd$a;)Lbc$a; m_24932_ + 0 o p_24933_ + a (Ljava/lang/Boolean;)Lbc$a; m_24934_ + 0 o p_24935_ + a (Lbd;)Lbc$a; m_148141_ + 0 o p_148142_ + a ()Lbc$a; m_24931_ + static + a (Lbo;)Lbc$a; m_148143_ + 0 o p_148144_ + b (Lcj$c;)Lbc$a; m_148147_ + 0 o p_148148_ + b ()Lbc; m_24936_ +bca net/minecraft/util/profiling/metrics/profiling/ProfilerSamplerAdapter + a f_146161_ + ()V + a (Ljava/util/function/Supplier;)Ljava/util/Set; m_146163_ + 0 o p_146164_ + a (Ljava/util/function/Supplier;Ljava/lang/String;Lbbr;)Lbbs; m_146168_ + static + 0 o p_146169_ + 1 o p_146170_ + 2 o p_146171_ + a (Ljava/util/function/Supplier;Lorg/apache/commons/lang3/tuple/Pair;)Lbbs; m_146172_ + static + 0 o p_146173_ + 1 o p_146174_ + a (Lorg/apache/commons/lang3/tuple/Pair;)Z m_146175_ + 0 o p_146176_ + a (Ljava/util/function/Supplier;Ljava/lang/String;)D m_146165_ + static + 0 o p_146166_ + 1 o p_146167_ +bcb net/minecraft/util/profiling/metrics/profiling/ServerMetricsSamplersProvider + a f_181117_ + b f_146177_ + c f_146178_ + ()V + static + (Ljava/util/function/LongSupplier;Z)V + 0 o p_146180_ + 1 o p_146181_ + a (Ljava/util/function/Supplier;)Ljava/util/Set; m_142531_ + 0 o p_146191_ + a (Lcom/google/common/base/Stopwatch;)D m_146186_ + static + 0 o p_146187_ + a ()Ljava/util/Set; m_146182_ + static + a (Ljava/util/function/LongSupplier;)Lbbs; m_146188_ + static + 0 o p_146189_ + a (Lbcb$a;I)Lbbs; m_146183_ + static + 0 o p_146184_ + 1 o p_146185_ + b (Lbcb$a;I)D m_146193_ + static + 0 o p_146194_ + 1 o p_146195_ + b ()D m_146192_ + static +bcb$1 net/minecraft/util/profiling/metrics/profiling/ServerMetricsSamplersProvider$1 + a f_146196_ + (Ljava/util/function/LongSupplier;)V + 0 o p_146198_ + read ()J read +bcb$a net/minecraft/util/profiling/metrics/profiling/ServerMetricsSamplersProvider$CpuStats + a f_146200_ + b f_146201_ + c f_146202_ + d f_146203_ + e f_146204_ + f f_146205_ + ()V + a (I)D m_146207_ + 0 o p_146208_ +bcc net/minecraft/util/profiling/metrics/profiling/package-info +bcd net/minecraft/util/profiling/metrics/storage/MetricsPersister + a f_146209_ + b f_146210_ + c f_146211_ + d f_146212_ + e f_146213_ + f f_146214_ + ()V + static + (Ljava/lang/String;)V + 0 o p_146217_ + a (Ljava/time/format/DateTimeFormatter;Ljava/nio/file/Path;Lbbs;Lbce;)V m_146234_ + static + 0 o p_146235_ + 1 o p_146236_ + 2 o p_146237_ + 3 o p_146238_ + a (ILbbs$b;)Ljava/lang/String; m_146220_ + static + 0 o p_146221_ + 1 o p_146222_ + a (Ljava/util/Set;Ljava/util/Map;Lbam;)Ljava/nio/file/Path; m_146250_ + 0 o p_146251_ + 1 o p_146252_ + 2 o p_146253_ + a (Ljava/time/format/DateTimeFormatter;Ljava/nio/file/Path;Lbbs;Ljava/util/List;)V m_146239_ + static + 0 o p_146240_ + 1 o p_146241_ + 2 o p_146242_ + 3 o p_146243_ + a (Ljava/util/Map;Ljava/nio/file/Path;)V m_146244_ + 0 o p_146245_ + 1 o p_146246_ + a (Lbam;Ljava/nio/file/Path;)V m_146223_ + 0 o p_146224_ + 1 o p_146225_ + a (I)[Ljava/lang/String; m_146218_ + static + 0 o p_146219_ + a (Ljava/nio/file/Path;Lbbr;Ljava/util/List;)V m_146230_ + 0 o p_146231_ + 1 o p_146232_ + 2 o p_146233_ + a (Ljava/util/Set;Ljava/nio/file/Path;)V m_146247_ + 0 o p_146248_ + 1 o p_146249_ + a (Lbbr;Ljava/util/List;Ljava/nio/file/Path;)V m_146226_ + 0 o p_146227_ + 1 o p_146228_ + 2 o p_146229_ +bce net/minecraft/util/profiling/metrics/storage/RecordedDeviation + a f_146254_ + b f_146255_ + c f_146256_ + (Ljava/time/Instant;ILbam;)V + 0 o p_146258_ + 1 o p_146259_ + 2 o p_146260_ +bcf net/minecraft/util/profiling/metrics/storage/package-info +bcg net/minecraft/util/profiling/package-info +bch net/minecraft/util/random/SimpleWeightedRandomList + (Ljava/util/List;)V + 0 o p_146262_ + a (Lapf;)Ljava/util/Optional; m_216820_ + 0 o p_216821_ + a (Lcom/mojang/serialization/Codec;)Lcom/mojang/serialization/Codec; m_185860_ + static + 0 o p_185861_ + a (Ljava/lang/Object;)Lbch; m_185862_ + static + 0 o p_185863_ + a ()Lbch$a; m_146263_ + static + b (Lcom/mojang/serialization/Codec;)Lcom/mojang/serialization/Codec; m_146264_ + static + 0 o p_146265_ + b ()Lbch; m_185864_ + static +bch$a net/minecraft/util/random/SimpleWeightedRandomList$Builder + a f_146268_ + ()V + a (Ljava/lang/Object;I)Lbch$a; m_146271_ + 0 o p_146272_ + 1 o p_146273_ + a ()Lbch; m_146270_ +bci net/minecraft/util/random/Weight + a f_146274_ + b f_146275_ + c f_146276_ + d f_146277_ + ()V + static + (I)V + 0 o p_146280_ + a ()I m_146281_ + a (I)Lbci; m_146282_ + static + 0 o p_146283_ + b (I)V m_146284_ + static + 0 o p_146285_ + equals (Ljava/lang/Object;)Z equals + 0 o p_146287_ + hashCode ()I hashCode + toString ()Ljava/lang/String; toString +bcj net/minecraft/util/random/WeightedEntry + a ()Lbci; m_142631_ + a (Ljava/lang/Object;I)Lbcj$b; m_146290_ + static + 0 o p_146291_ + 1 o p_146292_ +bcj$a net/minecraft/util/random/WeightedEntry$IntrusiveBase + a f_146293_ + (I)V + 0 o p_146295_ + (Lbci;)V + 0 o p_146297_ + a ()Lbci; m_142631_ +bcj$b net/minecraft/util/random/WeightedEntry$Wrapper + a f_146299_ + b f_146300_ + (Ljava/lang/Object;Lbci;)V + 0 o p_146302_ + 1 o p_146303_ + a ()Lbci; m_142631_ + a (Lcom/mojang/serialization/Codec;)Lcom/mojang/serialization/Codec; m_146305_ + static + 0 o p_146306_ + a (Lcom/mojang/serialization/Codec;Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; m_146307_ + static + 0 o p_146308_ + 1 o p_146309_ + b ()Ljava/lang/Object; m_146310_ +bck net/minecraft/util/random/WeightedRandom + ()V + a (Ljava/util/List;)I m_146312_ + static + 0 o p_146313_ + a (Lapf;Ljava/util/List;I)Ljava/util/Optional; m_216825_ + static + 0 o p_216826_ + 1 o p_216827_ + 2 o p_216828_ + a (Ljava/util/List;I)Ljava/util/Optional; m_146314_ + static + 0 o p_146315_ + 1 o p_146316_ + a (Lapf;Ljava/util/List;)Ljava/util/Optional; m_216822_ + static + 0 o p_216823_ + 1 o p_216824_ +bcl net/minecraft/util/random/WeightedRandomList + a f_146324_ + b f_146325_ + (Ljava/util/List;)V + 0 o p_146327_ + a (Ljava/util/List;)Lbcl; m_146328_ + static + 0 o p_146329_ + a ([Lbcj;)Lbcl; m_146330_ + static + 0 o p_146331_ + b (Lapf;)Ljava/util/Optional; m_216829_ + 0 o p_216830_ + c (Lcom/mojang/serialization/Codec;)Lcom/mojang/serialization/Codec; m_146333_ + static + 0 o p_146334_ + c ()Lbcl; m_146332_ + static + d ()Z m_146337_ + e ()Ljava/util/List; m_146338_ +bcm net/minecraft/util/random/package-info +bcn net/minecraft/util/thread/BlockableEventLoop + b f_18680_ + c f_18681_ + d f_18682_ + e f_18683_ + ()V + static + (Ljava/lang/String;)V + 0 o p_18686_ + a (Ljava/lang/Runnable;)Ljava/util/concurrent/CompletableFuture; m_18689_ + 0 o p_18690_ + a (Ljava/lang/Object;)V m_6937_ + 0 o p_18688_ + a (Ljava/util/function/Supplier;)Ljava/util/concurrent/CompletableFuture; m_18691_ + 0 o p_18692_ + at ()Z m_5660_ + au ()Ljava/lang/Thread; m_6304_ + b (Ljava/lang/Runnable;)Ljava/lang/Void; m_18693_ + static + 0 o p_18694_ + bk ()Ljava/util/List; m_142754_ + bl ()Z m_18695_ + bm ()I m_18696_ + bn ()Ljava/lang/String; m_7326_ + bo ()V m_18698_ + bp ()V m_18699_ + bq ()V m_5667_ + c (Ljava/lang/Runnable;)V m_201446_ + 0 o p_201937_ + c (Ljava/util/function/BooleanSupplier;)V m_18701_ + 0 o p_18702_ + d (Ljava/lang/Runnable;)V m_6367_ + 0 o p_18700_ + e (Ljava/lang/Runnable;)Z m_6362_ + 0 o p_18703_ + execute (Ljava/lang/Runnable;)V execute + 0 o p_18706_ + f (Ljava/lang/Runnable;)Ljava/lang/Runnable; m_6681_ + 0 o p_18704_ + g (Ljava/lang/Runnable;)Ljava/util/concurrent/CompletableFuture; m_18707_ + 0 o p_18708_ + h (Ljava/lang/Runnable;)V m_18709_ + 0 o p_18710_ + i (Ljava/lang/Runnable;)V m_6937_ + 0 o p_18712_ + x ()Z m_7245_ +bco net/minecraft/util/thread/NamedThreadFactory + a f_146340_ + b f_146341_ + c f_146342_ + d f_146343_ + ()V + static + (Ljava/lang/String;)V + 0 o p_146346_ + a (Ljava/lang/Runnable;Ljava/lang/Thread;Ljava/lang/Throwable;)V m_146347_ + static + 0 o p_146348_ + 1 o p_146349_ + 2 o p_146350_ + newThread (Ljava/lang/Runnable;)Ljava/lang/Thread; newThread + 0 o p_146352_ +bcp net/minecraft/util/thread/ProcessorHandle + a (Ljava/lang/String;Ljava/util/function/Consumer;)Lbcp; m_18714_ + static + 0 o p_18715_ + 1 o p_18716_ + a (Ljava/lang/Object;)V m_6937_ + 0 o p_18713_ + a (Ljava/util/concurrent/CompletableFuture;Lcom/mojang/datafixers/util/Either;)V m_18717_ + static + 0 o p_18718_ + 1 o p_18719_ + b (Ljava/util/function/Function;)Ljava/util/concurrent/CompletableFuture; m_18720_ + 0 o p_18721_ + bn ()Ljava/lang/String; m_7326_ + c (Ljava/util/function/Function;)Ljava/util/concurrent/CompletableFuture; m_18722_ + 0 o p_18723_ + close ()V close +bcp$1 net/minecraft/util/thread/ProcessorHandle$1 + a f_18725_ + b f_18726_ + (Ljava/lang/String;Ljava/util/function/Consumer;)V + 0 o p_18728_ + 1 o p_18729_ + a (Ljava/lang/Object;)V m_6937_ + 0 o p_18731_ + bn ()Ljava/lang/String; m_7326_ + toString ()Ljava/lang/String; toString +bcq net/minecraft/util/thread/ProcessorMailbox + a f_18735_ + b f_146353_ + c f_146354_ + d f_18736_ + e f_18734_ + f f_18737_ + g f_18738_ + ()V + static + (Lbcs;Ljava/util/concurrent/Executor;Ljava/lang/String;)V + 0 o p_18741_ + 1 o p_18742_ + 2 o p_18743_ + a (Lit/unimi/dsi/fastutil/ints/Int2BooleanFunction;)I m_18747_ + 0 o p_18748_ + a (Ljava/lang/Object;)V m_6937_ + 0 o p_18750_ + a (Ljava/util/concurrent/Executor;Ljava/lang/String;)Lbcq; m_18751_ + static + 0 o p_18752_ + 1 o p_18753_ + a ()V m_182329_ + a (I)Z m_182330_ + static + 0 o p_182331_ + b ()I m_146355_ + b (I)Z m_18745_ + static + 0 o p_18746_ + bk ()Ljava/util/List; m_142754_ + bn ()Ljava/lang/String; m_7326_ + c ()Z m_201938_ + close ()V close + d ()Z m_18744_ + e ()V m_18754_ + f ()Z m_18756_ + g ()Z m_18758_ + h ()Z m_18759_ + i ()V m_18760_ + run ()V run + toString ()Ljava/lang/String; toString +bcr net/minecraft/util/thread/ReentrantBlockableEventLoop + b f_18763_ + (Ljava/lang/String;)V + 0 o p_18765_ + at ()Z m_5660_ + br ()Z m_18767_ + d (Ljava/lang/Runnable;)V m_6367_ + 0 o p_18769_ +bcs net/minecraft/util/thread/StrictQueue + a (Ljava/lang/Object;)Z m_6944_ + 0 o p_18770_ + a ()Ljava/lang/Object; m_6610_ + b ()Z m_7263_ + c ()I m_142732_ +bcs$a net/minecraft/util/thread/StrictQueue$FixedPriorityQueue + a f_185865_ + b f_185866_ + (I)V + 0 o p_18773_ + a (Lbcs$b;)Z m_6944_ + 0 o p_18778_ + a (Ljava/lang/Object;)Z m_6944_ + 0 o p_18780_ + a ()Ljava/lang/Object; m_6610_ + b ()Z m_7263_ + c ()I m_142732_ + d ()Ljava/lang/Runnable; m_6610_ +bcs$b net/minecraft/util/thread/StrictQueue$IntRunnable + a f_18783_ + b f_18784_ + (ILjava/lang/Runnable;)V + 0 o p_18786_ + 1 o p_18787_ + a ()I m_18788_ + run ()V run +bcs$c net/minecraft/util/thread/StrictQueue$QueueStrictQueue + a f_18790_ + (Ljava/util/Queue;)V + 0 o p_18792_ + a (Ljava/lang/Object;)Z m_6944_ + 0 o p_18795_ + a ()Ljava/lang/Object; m_6610_ + b ()Z m_7263_ + c ()I m_142732_ +bct net/minecraft/util/thread/package-info +bcu net/minecraft/util/valueproviders/BiasedToBottomInt + a f_146359_ + b f_146360_ + f f_146361_ + ()V + static + (II)V + 0 o p_146364_ + 1 o p_146365_ + a (II)Lbcu; m_146367_ + static + 0 o p_146368_ + 1 o p_146369_ + a ()I m_142739_ + a (Lbcu;)Lcom/mojang/serialization/DataResult; m_274163_ + static + 0 o p_274930_ + a (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; m_146372_ + static + 0 o p_146373_ + a (Lapf;)I m_214085_ + 0 o p_216832_ + b (Lbcu;)Ljava/lang/String; m_274164_ + static + 0 o p_274931_ + b ()I m_142737_ + c ()Lbdd; m_141948_ + c (Lbcu;)Ljava/lang/Integer; m_146377_ + static + 0 o p_146378_ + d (Lbcu;)Ljava/lang/Integer; m_146380_ + static + 0 o p_146381_ + toString ()Ljava/lang/String; toString +bcv net/minecraft/util/valueproviders/ClampedInt + a f_146383_ + b f_146384_ + f f_146385_ + g f_146386_ + ()V + static + (Lbdc;II)V + 0 o p_146389_ + 1 o p_146390_ + 2 o p_146391_ + a ()I m_142739_ + a (Lbdc;II)Lbcv; m_146395_ + static + 0 o p_146396_ + 1 o p_146397_ + 2 o p_146398_ + a (Lbcv;)Lcom/mojang/serialization/DataResult; m_274165_ + static + 0 o p_274932_ + a (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; m_146399_ + static + 0 o p_146400_ + a (Lapf;)I m_214085_ + 0 o p_216834_ + b ()I m_142737_ + b (Lbcv;)Ljava/lang/String; m_274166_ + static + 0 o p_274933_ + c ()Lbdd; m_141948_ + c (Lbcv;)Ljava/lang/Integer; m_146404_ + static + 0 o p_146405_ + d (Lbcv;)Ljava/lang/Integer; m_146407_ + static + 0 o p_146408_ + e (Lbcv;)Lbdc; m_146409_ + static + 0 o p_146410_ +bcw net/minecraft/util/valueproviders/ClampedNormalFloat + a f_146411_ + b f_146412_ + d f_146413_ + e f_146414_ + f f_146415_ + ()V + static + (FFFF)V + 0 o p_146418_ + 1 o p_146419_ + 2 o p_146420_ + 3 o p_146421_ + a (Lapf;FFFF)F m_216837_ + static + 0 o p_216838_ + 1 o p_216839_ + 2 o p_216840_ + 3 o p_216841_ + 4 o p_216842_ + a ()F m_142735_ + a (Lapf;)F m_214084_ + 0 o p_216836_ + a (Lbcw;)Lcom/mojang/serialization/DataResult; m_274168_ + static + 0 o p_274935_ + a (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; m_146430_ + static + 0 o p_146431_ + a (FFFF)Lbcw; m_146423_ + static + 0 o p_146424_ + 1 o p_146425_ + 2 o p_146426_ + 3 o p_146427_ + b ()F m_142734_ + b (Lbcw;)Ljava/lang/String; m_274167_ + static + 0 o p_274934_ + c ()Lbdb; m_141961_ + c (Lbcw;)Ljava/lang/Float; m_146441_ + static + 0 o p_146442_ + d (Lbcw;)Ljava/lang/Float; m_146444_ + static + 0 o p_146445_ + e (Lbcw;)Ljava/lang/Float; m_146446_ + static + 0 o p_146447_ + f (Lbcw;)Ljava/lang/Float; m_146448_ + static + 0 o p_146449_ + toString ()Ljava/lang/String; toString +bcx net/minecraft/util/valueproviders/ClampedNormalInt + a f_185867_ + b f_185868_ + f f_185869_ + g f_185870_ + h f_185871_ + ()V + static + (FFII)V + 0 o p_185874_ + 1 o p_185875_ + 2 o p_185876_ + 3 o p_185877_ + a (FFII)Lbcx; m_185879_ + static + 0 o p_185880_ + 1 o p_185881_ + 2 o p_185882_ + 3 o p_185883_ + a ()I m_142739_ + a (Lapf;FFFF)I m_216845_ + static + 0 o p_216846_ + 1 o p_216847_ + 2 o p_216848_ + 3 o p_216849_ + 4 o p_216850_ + a (Lbcx;)Lcom/mojang/serialization/DataResult; m_274170_ + static + 0 o p_274937_ + a (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; m_185886_ + static + 0 o p_185887_ + a (Lapf;)I m_214085_ + 0 o p_216844_ + b (Lbcx;)Ljava/lang/String; m_274169_ + static + 0 o p_274936_ + b ()I m_142737_ + c ()Lbdd; m_141948_ + c (Lbcx;)Ljava/lang/Integer; m_185897_ + static + 0 o p_185898_ + d (Lbcx;)Ljava/lang/Integer; m_185900_ + static + 0 o p_185901_ + e (Lbcx;)Ljava/lang/Float; m_185902_ + static + 0 o p_185903_ + f (Lbcx;)Ljava/lang/Float; m_185904_ + static + 0 o p_185905_ + toString ()Ljava/lang/String; toString +bcy net/minecraft/util/valueproviders/ConstantFloat + a f_146451_ + b f_146452_ + d f_146453_ + ()V + static + (F)V + 0 o p_146456_ + a (F)Lbcy; m_146458_ + static + 0 o p_146459_ + a ()F m_142735_ + a (Lcom/mojang/datafixers/util/Either;)Lbcy; m_146462_ + static + 0 o p_146463_ + a (Lapf;)F m_214084_ + 0 o p_216852_ + a (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; m_146464_ + static + 0 o p_146465_ + a (Lbcy;)Lcom/mojang/datafixers/util/Either; m_146460_ + static + 0 o p_146461_ + b ()F m_142734_ + b (Lbcy;)Lbcy; m_146469_ + static + 0 o p_146470_ + c (Lbcy;)Ljava/lang/Float; m_146472_ + static + 0 o p_146473_ + c ()Lbdb; m_141961_ + d ()F m_146474_ + toString ()Ljava/lang/String; toString +bcz net/minecraft/util/valueproviders/ConstantInt + a f_146476_ + b f_146477_ + f f_146478_ + ()V + static + (I)V + 0 o p_146481_ + a (Lcom/mojang/datafixers/util/Either;)Lbcz; m_146487_ + static + 0 o p_146488_ + a (Lbcz;)Lcom/mojang/datafixers/util/Either; m_146485_ + static + 0 o p_146486_ + a ()I m_142739_ + a (I)Lbcz; m_146483_ + static + 0 o p_146484_ + a (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; m_146489_ + static + 0 o p_146490_ + a (Lapf;)I m_214085_ + 0 o p_216854_ + b ()I m_142737_ + b (Lbcz;)Lbcz; m_146494_ + static + 0 o p_146495_ + c ()Lbdd; m_141948_ + c (Lbcz;)Ljava/lang/Integer; m_146497_ + static + 0 o p_146498_ + d ()I m_146499_ + toString ()Ljava/lang/String; toString +bd net/minecraft/advancements/critereon/DamageSourcePredicate + a f_25420_ + b f_268608_ + c f_25429_ + d f_25430_ + ()V + static + (Ljava/util/List;Lbo;Lbo;)V + 0 o p_270233_ + 1 o p_270167_ + 2 o p_270429_ + a (Lcom/google/gson/JsonElement;)Lbd; m_25451_ + static + 0 o p_25452_ + a (Laig;Lben;)Z m_25448_ + 0 o p_25449_ + 1 o p_25450_ + a (Laif;Leei;Lben;)Z m_25444_ + 0 o p_25445_ + 1 o p_25446_ + 2 o p_25447_ + a ()Lcom/google/gson/JsonElement; m_25443_ +bd$a net/minecraft/advancements/critereon/DamageSourcePredicate$Builder + a f_268703_ + b f_25468_ + c f_25469_ + ()V + a (Ldb;)Lbd$a; m_269507_ + 0 o p_270455_ + a (Lbo$a;)Lbd$a; m_25472_ + 0 o p_25473_ + a ()Lbd$a; m_25471_ + static + a (Lbo;)Lbd$a; m_148229_ + 0 o p_148230_ + b (Lbo;)Lbd$a; m_148233_ + 0 o p_148234_ + b ()Lbd; m_25476_ + b (Lbo$a;)Lbd$a; m_148231_ + 0 o p_148232_ +bda net/minecraft/util/valueproviders/FloatProvider + a f_146501_ + c f_146502_ + ()V + static + ()V + a (Lbda;)Lcom/mojang/datafixers/util/Either; m_146512_ + static + 0 o p_146513_ + a (FLbda;)Ljava/lang/String; m_274171_ + static + 0 o p_274938_ + 1 o p_274939_ + a (Lcom/mojang/datafixers/util/Either;)Lbda; m_146514_ + static + 0 o p_146515_ + a (FF)Lcom/mojang/serialization/Codec; m_146505_ + static + 0 o p_146506_ + 1 o p_146507_ + a ()F m_142735_ + a (FFLbda;)Lcom/mojang/serialization/DataResult; m_274172_ + static + 0 o p_274940_ + 1 o p_274941_ + 2 o p_274942_ + b (FLbda;)Ljava/lang/String; m_274173_ + static + 0 o p_274943_ + 1 o p_274944_ + b (Lbda;)Lbda; m_146517_ + static + 0 o p_146518_ + b ()F m_142734_ + c ()Lbdb; m_141961_ +bdb net/minecraft/util/valueproviders/FloatProviderType + a f_146519_ + b f_146520_ + c f_146521_ + d f_146522_ + ()V + static + a (Lcom/mojang/serialization/Codec;)Lcom/mojang/serialization/Codec; m_146524_ + static + 0 o p_146525_ + a (Ljava/lang/String;Lcom/mojang/serialization/Codec;)Lbdb; m_146526_ + static + 0 o p_146527_ + 1 o p_146528_ + codec ()Lcom/mojang/serialization/Codec; m_146529_ +bdc net/minecraft/util/valueproviders/IntProvider + a f_146530_ + c f_146531_ + d f_146532_ + e f_146533_ + ()V + static + ()V + a (Lcom/mojang/datafixers/util/Either;)Lbdc; m_146542_ + static + 0 o p_146543_ + a (IILbdc;)Lcom/mojang/serialization/DataResult; m_274176_ + static + 0 o p_274949_ + 1 o p_274950_ + 2 o p_274951_ + a ()I m_142739_ + a (ILbdc;)Ljava/lang/String; m_274175_ + static + 0 o p_274947_ + 1 o p_274948_ + a (IILcom/mojang/serialization/Codec;)Lcom/mojang/serialization/Codec; m_272161_ + static + 0 o p_273149_ + 1 o p_272813_ + 2 o p_273329_ + a (Lbdc;)Lcom/mojang/datafixers/util/Either; m_146540_ + static + 0 o p_146541_ + a (Lapf;)I m_214085_ + 0 o p_216855_ + b (Lbdc;)Lbdc; m_146548_ + static + 0 o p_146549_ + b ()I m_142737_ + b (II)Lcom/mojang/serialization/Codec; m_146545_ + static + 0 o p_146546_ + 1 o p_146547_ + b (ILbdc;)Ljava/lang/String; m_274174_ + static + 0 o p_274945_ + 1 o p_274946_ + c ()Lbdd; m_141948_ +bdd net/minecraft/util/valueproviders/IntProviderType + a f_146550_ + b f_146551_ + c f_146552_ + d f_146553_ + e f_185907_ + f f_185908_ + ()V + static + a (Lcom/mojang/serialization/Codec;)Lcom/mojang/serialization/Codec; m_146555_ + static + 0 o p_146556_ + a (Ljava/lang/String;Lcom/mojang/serialization/Codec;)Lbdd; m_146557_ + static + 0 o p_146558_ + 1 o p_146559_ + codec ()Lcom/mojang/serialization/Codec; m_146560_ +bde net/minecraft/util/valueproviders/MultipliedFloats + a f_216856_ + ([Lbdf;)V + 0 o p_216858_ + a (Lapf;)F m_214084_ + 0 o p_216860_ + toString ()Ljava/lang/String; toString +bdf net/minecraft/util/valueproviders/SampledFloat + a (Lapf;)F m_214084_ + 0 o p_216862_ +bdg net/minecraft/util/valueproviders/TrapezoidFloat + a f_146561_ + b f_146562_ + d f_146563_ + e f_146564_ + ()V + static + (FFF)V + 0 o p_146567_ + 1 o p_146568_ + 2 o p_146569_ + a (Lbdg;)Lcom/mojang/serialization/DataResult; m_274178_ + static + 0 o p_274953_ + a ()F m_142735_ + a (FFF)Lbdg; m_146571_ + static + 0 o p_146572_ + 1 o p_146573_ + 2 o p_146574_ + a (Lapf;)F m_214084_ + 0 o p_216864_ + a (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; m_146577_ + static + 0 o p_146578_ + b ()F m_142734_ + b (Lbdg;)Ljava/lang/String; m_274179_ + static + 0 o p_274954_ + c ()Lbdb; m_141961_ + c (Lbdg;)Ljava/lang/String; m_274177_ + static + 0 o p_274952_ + d (Lbdg;)Ljava/lang/Float; m_146582_ + static + 0 o p_146583_ + e (Lbdg;)Ljava/lang/Float; m_146585_ + static + 0 o p_146586_ + f (Lbdg;)Ljava/lang/Float; m_146587_ + static + 0 o p_146588_ + toString ()Ljava/lang/String; toString +bdh net/minecraft/util/valueproviders/UniformFloat + a f_146590_ + b f_146591_ + d f_146592_ + ()V + static + (FF)V + 0 o p_146595_ + 1 o p_146596_ + a (Lbdh;)Lcom/mojang/serialization/DataResult; m_274181_ + static + 0 o p_274956_ + a ()F m_142735_ + a (Lapf;)F m_214084_ + 0 o p_216866_ + a (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; m_146600_ + static + 0 o p_146601_ + b ()F m_142734_ + b (FF)Lbdh; m_146605_ + static + 0 o p_146606_ + 1 o p_146607_ + b (Lbdh;)Ljava/lang/String; m_274180_ + static + 0 o p_274955_ + c ()Lbdb; m_141961_ + c (Lbdh;)Ljava/lang/Float; m_146608_ + static + 0 o p_146609_ + d (Lbdh;)Ljava/lang/Float; m_146611_ + static + 0 o p_146612_ + toString ()Ljava/lang/String; toString +bdi net/minecraft/util/valueproviders/UniformInt + a f_146614_ + b f_146615_ + f f_146616_ + ()V + static + (II)V + 0 o p_146619_ + 1 o p_146620_ + a (II)Lbdi; m_146622_ + static + 0 o p_146623_ + 1 o p_146624_ + a ()I m_142739_ + a (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; m_146627_ + static + 0 o p_146628_ + a (Lbdi;)Lcom/mojang/serialization/DataResult; m_274182_ + static + 0 o p_274957_ + a (Lapf;)I m_214085_ + 0 o p_216868_ + b (Lbdi;)Ljava/lang/String; m_274183_ + static + 0 o p_274958_ + b ()I m_142737_ + c ()Lbdd; m_141948_ + c (Lbdi;)Ljava/lang/Integer; m_146632_ + static + 0 o p_146633_ + d (Lbdi;)Ljava/lang/Integer; m_146635_ + static + 0 o p_146636_ + toString ()Ljava/lang/String; toString +bdj net/minecraft/util/valueproviders/WeightedListInt + a f_185909_ + b f_185910_ + f f_185911_ + g f_185912_ + ()V + static + (Lbch;)V + 0 o p_185915_ + a (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; m_185919_ + static + 0 o p_185920_ + a ()I m_142739_ + a (Lbdj;)Lbch; m_185917_ + static + 0 o p_185918_ + a (Lapf;)I m_214085_ + 0 o p_216870_ + b ()I m_142737_ + c ()Lbdd; m_141948_ +bdk net/minecraft/util/valueproviders/package-info +bdl net/minecraft/util/worldupdate/WorldUpgrader + a f_18797_ + b f_18798_ + c f_243889_ + d f_243666_ + e f_18800_ + f f_18801_ + g f_18802_ + h f_18803_ + i f_18804_ + j f_18805_ + k f_18806_ + l f_18807_ + m f_18808_ + n f_18809_ + o f_18810_ + p f_18811_ + q f_18812_ + r f_18813_ + ()V + static + (Ldyy$c;Lcom/mojang/datafixers/DataFixer;Lhr;Z)V + 0 o p_249922_ + 1 o p_250273_ + 2 o p_252191_ + 3 o p_250738_ + a (Ljava/io/File;Ljava/lang/String;)Z m_18821_ + static + 0 o p_18822_ + 1 o p_18823_ + a (Lacp;)F m_18827_ + 0 o p_18828_ + a (Ljava/lang/Thread;Ljava/lang/Throwable;)V m_18824_ + 0 o p_18825_ + 1 o p_18826_ + a ()V m_18820_ + b ()Z m_18829_ + b (Lacp;)Ljava/util/List; m_18830_ + 0 o p_18831_ + c ()Ljava/util/Set; m_246941_ + d ()F m_18833_ + e ()I m_18834_ + f ()I m_18835_ + g ()I m_18836_ + h ()Lsw; m_18837_ + i ()V m_18838_ + j ()Ldyu; m_18839_ +bdm net/minecraft/util/worldupdate/package-info +bdn net/minecraft/world/BossEvent + a f_18840_ + b f_146638_ + c f_18842_ + d f_18843_ + e f_18844_ + f f_18845_ + g f_18846_ + h f_18847_ + (Ljava/util/UUID;Lsw;Lbdn$a;Lbdn$b;)V + 0 o p_18849_ + 1 o p_18850_ + 2 o p_18851_ + 3 o p_18852_ + a (Z)Lbdn; m_7003_ + 0 o p_18857_ + a (F)V m_142711_ + 0 o p_146639_ + a (Lbdn$b;)V m_5648_ + 0 o p_18855_ + a (Lbdn$a;)V m_6451_ + 0 o p_18854_ + a (Lsw;)V m_6456_ + 0 o p_18856_ + b (Z)Lbdn; m_7005_ + 0 o p_18858_ + c (Z)Lbdn; m_7006_ + 0 o p_18859_ + i ()Ljava/util/UUID; m_18860_ + j ()Lsw; m_18861_ + k ()F m_142717_ + l ()Lbdn$a; m_18862_ + m ()Lbdn$b; m_18863_ + n ()Z m_18864_ + o ()Z m_18865_ + p ()Z m_18866_ +bdn$a net/minecraft/world/BossEvent$BossBarColor + a PINK + b BLUE + c RED + d GREEN + e YELLOW + f PURPLE + g WHITE + h f_18874_ + i f_18875_ + j $VALUES + ()V + static + (Ljava/lang/String;ILjava/lang/String;Ln;)V + 0 o p_18879_ + 1 o p_18880_ + 2 o p_18881_ + 3 o p_18882_ + a (Ljava/lang/String;)Lbdn$a; m_18884_ + static + 0 o p_18885_ + a ()Ln; m_18883_ + b ()Ljava/lang/String; m_18886_ + c ()[Lbdn$a; m_146640_ + static + valueOf (Ljava/lang/String;)Lbdn$a; valueOf + static + 0 o p_18888_ + values ()[Lbdn$a; values + static +bdn$b net/minecraft/world/BossEvent$BossBarOverlay + a PROGRESS + b NOTCHED_6 + c NOTCHED_10 + d NOTCHED_12 + e NOTCHED_20 + f f_18895_ + g $VALUES + ()V + static + (Ljava/lang/String;ILjava/lang/String;)V + 0 o p_18899_ + 1 o p_18900_ + 2 o p_18901_ + a (Ljava/lang/String;)Lbdn$b; m_18903_ + static + 0 o p_18904_ + a ()Ljava/lang/String; m_18902_ + b ()[Lbdn$b; m_146641_ + static + valueOf (Ljava/lang/String;)Lbdn$b; valueOf + static + 0 o p_18906_ + values ()[Lbdn$b; values + static +bdo net/minecraft/world/Clearable + a ()V m_6211_ + a_ (Ljava/lang/Object;)V m_18908_ + static + 0 o p_18909_ +bdp net/minecraft/world/CompoundContainer + c f_18910_ + d f_18911_ + (Lbdq;Lbdq;)V + 0 o p_18913_ + 1 o p_18914_ + a (ILcfz;)V m_6836_ + 0 o p_18925_ + 1 o p_18926_ + a (Lbdq;)Z m_18927_ + 0 o p_18928_ + a (I)Lcfz; m_8020_ + 0 o p_18920_ + a (Lbyo;)Z m_6542_ + 0 o p_18930_ + a (II)Lcfz; m_7407_ + 0 o p_18922_ + 1 o p_18923_ + a ()V m_6211_ + ab_ ()Z m_7983_ + ac_ ()I m_6893_ + b ()I m_6643_ + b (I)Lcfz; m_8016_ + 0 o p_18932_ + b (ILcfz;)Z m_7013_ + 0 o p_18934_ + 1 o p_18935_ + c (Lbyo;)V m_5785_ + 0 o p_18937_ + d_ (Lbyo;)V m_5856_ + 0 o p_18940_ + e ()V m_6596_ +bdq net/minecraft/world/Container + m_ f_146642_ + n_ f_271421_ + a (ILcfz;)V m_6836_ + 0 o p_18944_ + 1 o p_18945_ + a (Lbdq;ILcfz;)Z m_271862_ + 0 o p_273520_ + 1 o p_272681_ + 2 o p_273702_ + a (Ljava/util/Set;Lcfz;)Z m_216871_ + static + 0 o p_216872_ + 1 o p_216873_ + a (I)Lcfz; m_8020_ + 0 o p_18941_ + a (Lbyo;)Z m_6542_ + 0 o p_18946_ + a (Ljava/util/Set;)Z m_18949_ + 0 o p_18950_ + a (Lczn;Lbyo;I)Z m_271806_ + static + 0 o p_272877_ + 1 o p_272670_ + 2 o p_273411_ + a (II)Lcfz; m_7407_ + 0 o p_18942_ + 1 o p_18943_ + a (Lczn;Lbyo;)Z m_272074_ + static + 0 o p_273154_ + 1 o p_273222_ + a_ (Lcfu;)I m_18947_ + 0 o p_18948_ + a_ (Ljava/util/function/Predicate;)Z m_216874_ + 0 o p_216875_ + ab_ ()Z m_7983_ + ac_ ()I m_6893_ + b ()I m_6643_ + b (I)Lcfz; m_8016_ + 0 o p_18951_ + b (ILcfz;)Z m_7013_ + 0 o p_18952_ + 1 o p_18953_ + c (Lbyo;)V m_5785_ + 0 o p_18954_ + d_ (Lbyo;)V m_5856_ + 0 o p_18955_ + e ()V m_6596_ +bdr net/minecraft/world/ContainerHelper + ()V + a (Lqr;Lhn;)Lqr; m_18973_ + static + 0 o p_18974_ + 1 o p_18975_ + a (Lbdq;Ljava/util/function/Predicate;IZ)I m_18956_ + static + 0 o p_18957_ + 1 o p_18958_ + 2 o p_18959_ + 3 o p_18960_ + a (Ljava/util/List;II)Lcfz; m_18969_ + static + 0 o p_18970_ + 1 o p_18971_ + 2 o p_18972_ + a (Ljava/util/List;I)Lcfz; m_18966_ + static + 0 o p_18967_ + 1 o p_18968_ + a (Lcfz;Ljava/util/function/Predicate;IZ)I m_18961_ + static + 0 o p_18962_ + 1 o p_18963_ + 2 o p_18964_ + 3 o p_18965_ + a (Lqr;Lhn;Z)Lqr; m_18976_ + static + 0 o p_18977_ + 1 o p_18978_ + 2 o p_18979_ + b (Lqr;Lhn;)V m_18980_ + static + 0 o p_18981_ + 1 o p_18982_ +bds net/minecraft/world/ContainerListener + a (Lbdq;)V m_5757_ + 0 o p_18983_ +bdt net/minecraft/world/Containers + ()V + a (Lcmm;Lgu;Lcfz;)V m_19006_ + static + 0 o p_19007_ + 1 o p_19008_ + 2 o p_19009_ + a (Lcmm;Lbfj;Lbdq;)V m_18998_ + static + 0 o p_18999_ + 1 o p_19000_ + 2 o p_19001_ + a (Lcmm;DDDLbdq;)V m_18986_ + static + 0 o p_18987_ + 1 o p_18988_ + 2 o p_18989_ + 3 o p_18990_ + 4 o p_18991_ + a (Lcmm;DDDLcfz;)V m_18992_ + static + 0 o p_18993_ + 1 o p_18994_ + 2 o p_18995_ + 3 o p_18996_ + 4 o p_18997_ + a (Lcmm;Lgu;Lhn;)V m_19010_ + static + 0 o p_19011_ + 1 o p_19012_ + 2 o p_19013_ + a (Lcmm;Lgu;Lbdq;)V m_19002_ + static + 0 o p_19003_ + 1 o p_19004_ + 2 o p_19005_ +bdu net/minecraft/world/Difficulty + a PEACEFUL + b EASY + c NORMAL + d HARD + e f_262746_ + f f_19018_ + g f_19019_ + h f_19020_ + i $VALUES + ()V + static + (Ljava/lang/String;IILjava/lang/String;)V + 0 o p_19024_ + 1 o p_19025_ + 2 o p_19026_ + 3 o p_19027_ + a (I)Lbdu; m_19029_ + static + 0 o p_19030_ + a (Ljava/lang/String;)Lbdu; m_19031_ + static + 0 o p_19032_ + a ()I m_19028_ + b ()Lsw; m_19033_ + c ()Ljava/lang/String; m_7912_ + d ()Lsw; m_267622_ + e ()Ljava/lang/String; m_19036_ + f ()[Lbdu; m_146645_ + static + valueOf (Ljava/lang/String;)Lbdu; valueOf + static + 0 o p_19039_ + values ()[Lbdu; values + static +bdv net/minecraft/world/DifficultyInstance + a f_146646_ + b f_146647_ + c f_146648_ + d f_19041_ + e f_19042_ + (Lbdu;JJF)V + 0 o p_19044_ + 1 o p_19045_ + 2 o p_19046_ + 3 o p_19047_ + a (F)Z m_19049_ + 0 o p_19050_ + a (Lbdu;JJF)F m_19051_ + 0 o p_19052_ + 1 o p_19053_ + 2 o p_19054_ + 3 o p_19055_ + a ()Lbdu; m_19048_ + b ()F m_19056_ + c ()Z m_146649_ + d ()F m_19057_ +bdw net/minecraft/world/InteractionHand + a MAIN_HAND + b OFF_HAND + c $VALUES + ()V + static + (Ljava/lang/String;I)V + 0 o p_19063_ + 1 o p_19064_ + a ()[Lbdw; m_146650_ + static + valueOf (Ljava/lang/String;)Lbdw; valueOf + static + 0 o p_19066_ + values ()[Lbdw; values + static +bdx net/minecraft/world/InteractionResult + a SUCCESS + b CONSUME + c CONSUME_PARTIAL + d PASS + e FAIL + f $VALUES + ()V + static + (Ljava/lang/String;I)V + 0 o p_19075_ + 1 o p_19076_ + a ()Z m_19077_ + a (Z)Lbdx; m_19078_ + static + 0 o p_19079_ + b ()Z m_19080_ + c ()Z m_146666_ + d ()[Lbdx; m_146667_ + static + valueOf (Ljava/lang/String;)Lbdx; valueOf + static + 0 o p_19082_ + values ()[Lbdx; values + static +bdy net/minecraft/world/InteractionResultHolder + a f_19084_ + b f_19085_ + (Lbdx;Ljava/lang/Object;)V + 0 o p_19087_ + 1 o p_19088_ + a ()Lbdx; m_19089_ + a (Ljava/lang/Object;)Lbdy; m_19090_ + static + 0 o p_19091_ + a (Ljava/lang/Object;Z)Lbdy; m_19092_ + static + 0 o p_19093_ + 1 o p_19094_ + b (Ljava/lang/Object;)Lbdy; m_19096_ + static + 0 o p_19097_ + b ()Ljava/lang/Object; m_19095_ + c (Ljava/lang/Object;)Lbdy; m_19098_ + static + 0 o p_19099_ + d (Ljava/lang/Object;)Lbdy; m_19100_ + static + 0 o p_19101_ +bdz net/minecraft/world/LockCode + a f_19102_ + b f_146668_ + c f_19103_ + ()V + static + (Ljava/lang/String;)V + 0 o p_19106_ + a (Lcfz;)Z m_19107_ + 0 o p_19108_ + a (Lqr;)V m_19109_ + 0 o p_19110_ + b (Lqr;)Lbdz; m_19111_ + static + 0 o p_19112_ +be net/minecraft/advancements/critereon/DeserializationContext + a f_25865_ + b f_25866_ + c f_278452_ + d f_25868_ + ()V + static + (Lacq;Ldzn;)V + 0 o p_279318_ + 1 o p_279364_ + a (Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;)V m_25878_ + static + 0 o p_25879_ + 1 o p_25880_ + 2 o p_25881_ + a ()Lacq; m_25873_ + a (Lcom/google/gson/JsonArray;Ljava/lang/String;Lebu;)[Leck; m_25874_ + 0 o p_25875_ + 1 o p_25876_ + 2 o p_25877_ +bea net/minecraft/world/MenuProvider + H_ ()Lsw; m_5446_ +beb net/minecraft/world/Nameable + H_ ()Lsw; m_5446_ + Z ()Lsw; m_7755_ + aa ()Z m_8077_ + ab ()Lsw; m_7770_ +bec net/minecraft/world/RandomSequence + a f_286999_ + b f_287004_ + ()V + static + (JLacq;)V + 0 o p_287592_ + 1 o p_287762_ + (Ldil;)V + 0 o p_287597_ + a ()Lapf; m_287244_ + a (Lbec;)Ldil; m_287250_ + static + 0 o p_287757_ + a (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; m_287174_ + static + 0 o p_287586_ + a (JLacq;)Ldil; m_289190_ + static + 0 o p_289567_ + 1 o p_289545_ + a (Lacq;)Ldhz$a; m_288221_ + static + 0 o p_288989_ +bed net/minecraft/world/RandomSequences + a f_286984_ + b f_286938_ + c f_286954_ + ()V + static + (J)V + 0 o p_287622_ + a (JLqr;)Lbed; m_287187_ + static + 0 o p_287756_ + 1 o p_287587_ + a (Lqr;)Lqr; m_7176_ + 0 o p_287658_ + a (Lqr;Lacq;Lbec;)V m_287279_ + static + 0 o p_287677_ + 1 o p_287627_ + 2 o p_287578_ + a (Lacq;)Lapf; m_287292_ + 0 o p_287751_ + b (Lacq;)Lbec; m_287137_ + 0 o p_287666_ +bed$1 net/minecraft/world/RandomSequences$1 + b f_286950_ + c f_287002_ + (Lbed;Lapf;)V + 0 o p_287673_ + 1 o p_287604_ + a (I)I m_188503_ + 0 o p_287717_ + b (J)V m_188584_ + 0 o p_287659_ + d ()Lapf; m_213769_ + e ()Ldhx; m_188582_ + f ()I m_188502_ + g ()J m_188505_ + h ()Z m_188499_ + i ()F m_188501_ + j ()D m_188500_ + k ()D m_188583_ +bee net/minecraft/world/SimpleContainer + c f_19146_ + d f_19147_ + e f_19148_ + (I)V + 0 o p_19150_ + ([Lcfz;)V + 0 o p_19152_ + a (Lbyo;)Z m_6542_ + 0 o p_19167_ + a (II)Lcfz; m_7407_ + 0 o p_19159_ + 1 o p_19160_ + a ()V m_6211_ + a (Lbds;)V m_19164_ + 0 o p_19165_ + a (Lbys;)V m_5809_ + 0 o p_19169_ + a (ILcfz;)V m_6836_ + 0 o p_19162_ + 1 o p_19163_ + a (Lcfz;Lcfz;)V m_19185_ + 0 o p_19186_ + 1 o p_19187_ + a (I)Lcfz; m_8020_ + 0 o p_19157_ + a (Lqx;)V m_7797_ + 0 o p_19178_ + a (Lcfu;I)Lcfz; m_19170_ + 0 o p_19171_ + 1 o p_19172_ + a (Lcfz;)Lcfz; m_19173_ + 0 o p_19174_ + ab_ ()Z m_7983_ + b (Lbds;)V m_19181_ + 0 o p_19182_ + b ()I m_6643_ + b (I)Lcfz; m_8016_ + 0 o p_19180_ + b (Lcfz;)Z m_19183_ + 0 o p_19184_ + c (Lcfz;)V m_19189_ + 0 o p_19190_ + d (Lcfz;)V m_19191_ + 0 o p_19192_ + e ()V m_6596_ + e (Lcfz;)Z m_19193_ + static + 0 o p_19194_ + f (Lcfz;)Z m_19196_ + static + 0 o p_19197_ + f ()Ljava/util/List; m_19195_ + g ()Lqx; m_7927_ + toString ()Ljava/lang/String; toString +bef net/minecraft/world/SimpleMenuProvider + a f_19199_ + b f_19200_ + (Lccj;Lsw;)V + 0 o p_19202_ + 1 o p_19203_ + H_ ()Lsw; m_5446_ + createMenu (ILbyn;Lbyo;)Lcbf; m_7208_ + 0 o p_19205_ + 1 o p_19206_ + 2 o p_19207_ +beg net/minecraft/world/WorldlyContainer + a (ILcfz;Lha;)Z m_7155_ + 0 o p_19235_ + 1 o p_19236_ + 2 o p_19237_ + a (Lha;)[I m_7071_ + 0 o p_19238_ + b (ILcfz;Lha;)Z m_7157_ + 0 o p_19239_ + 1 o p_19240_ + 2 o p_19241_ +beh net/minecraft/world/WorldlyContainerHolder + a (Ldcb;Lcmn;Lgu;)Lbeg; m_5840_ + 0 o p_19242_ + 1 o p_19243_ + 2 o p_19244_ +bei net/minecraft/world/damagesource/CombatEntry + a f_19250_ + b f_19252_ + c f_289042_ + d f_19255_ + (Lben;FLbes;F)V + 0 o f_19250_ + 1 o f_19252_ + 2 o f_289042_ + 3 o f_19255_ + a ()Lben; f_19250_ + b ()F f_19252_ + c ()Lbes; f_289042_ + d ()F f_19255_ + equals (Ljava/lang/Object;)Z equals + 0 o p_289568_ + hashCode ()I hashCode + toString ()Ljava/lang/String; toString +bej net/minecraft/world/damagesource/CombatRules + a f_146688_ + b f_146689_ + c f_146690_ + d f_146691_ + e f_146692_ + ()V + a (FFF)F m_19272_ + static + 0 o p_19273_ + 1 o p_19274_ + 2 o p_19275_ + a (FF)F m_19269_ + static + 0 o p_19270_ + 1 o p_19271_ +bek net/minecraft/world/damagesource/CombatTracker + a f_146694_ + b f_146695_ + c f_268553_ + d f_19276_ + e f_19277_ + f f_19278_ + g f_19279_ + h f_19280_ + i f_19281_ + j f_19282_ + ()V + static + (Lbfz;)V + 0 o p_19285_ + a (Lben;)Z m_289225_ + static + 0 o p_289554_ + a (Lbfj;)Lsw; m_289212_ + static + 0 o p_289557_ + a (Lbfj;Lsw;Ljava/lang/String;Ljava/lang/String;)Lsw; m_289206_ + 0 o p_289547_ + 1 o p_289532_ + 2 o p_289555_ + 3 o p_289548_ + a ()Lsw; m_19293_ + a (Lben;F)V m_289194_ + 0 o p_289533_ + 1 o p_289559_ + a (Lbei;Lbfj;)Lsw; m_289215_ + 0 o p_289570_ + 1 o p_289561_ + b ()I m_19295_ + c ()V m_19296_ + d ()Lbei; m_19298_ +bel net/minecraft/world/damagesource/DamageEffects + a HURT + b THORNS + c DROWNING + d BURNING + e POKING + f FREEZING + g f_268463_ + h f_268435_ + i f_268660_ + j $VALUES + ()V + static + (Ljava/lang/String;ILjava/lang/String;Lamg;)V + 0 o p_270400_ + 1 o p_270754_ + 2 o p_270875_ + 3 o p_270383_ + a ()Lamg; m_269402_ + b ()[Lbel; m_269345_ + static + c ()Ljava/lang/String; m_7912_ + valueOf (Ljava/lang/String;)Lbel; valueOf + static + 0 o p_270153_ + values ()[Lbel; values + static +bem net/minecraft/world/damagesource/DamageScaling + a NEVER + b WHEN_CAUSED_BY_LIVING_NON_PLAYER + c ALWAYS + d f_268563_ + e f_268442_ + f $VALUES + ()V + static + (Ljava/lang/String;ILjava/lang/String;)V + 0 o p_270566_ + 1 o p_270507_ + 2 o p_270266_ + a ()[Lbem; m_269458_ + static + c ()Ljava/lang/String; m_7912_ + valueOf (Ljava/lang/String;)Lbem; valueOf + static + 0 o p_270519_ + values ()[Lbem; values + static +ben net/minecraft/world/damagesource/DamageSource + a f_268495_ + b f_268569_ + c f_268595_ + d f_268454_ + (Lhe;Lbfj;Lbfj;)V + 0 o p_270818_ + 1 o p_270162_ + 2 o p_270115_ + (Lhe;)V + 0 o p_270475_ + (Lhe;Lbfj;)V + 0 o p_270811_ + 1 o p_270660_ + (Lhe;Leei;)V + 0 o p_270690_ + 1 o p_270579_ + (Lhe;Lbfj;Lbfj;Leei;)V + 0 o p_270906_ + 1 o p_270796_ + 2 o p_270459_ + 3 o p_270623_ + a (Lacp;)Z m_276093_ + 0 o p_276108_ + a (Lbfz;)Lsw; m_6157_ + 0 o p_19343_ + a ()F m_19377_ + a (Lanl;)Z m_269533_ + 0 o p_270890_ + b ()Z m_269014_ + c ()Lbfj; m_7640_ + d ()Lbfj; m_7639_ + e ()Ljava/lang/String; m_19385_ + f ()Z m_7986_ + g ()Z m_19390_ + h ()Leei; m_7270_ + i ()Leei; m_269181_ + j ()Lbep; m_269415_ + k ()Lhe; m_269150_ + toString ()Ljava/lang/String; toString +ben$1 net/minecraft/world/damagesource/DamageSource$1 + a f_268417_ + ()V + static +beo net/minecraft/world/damagesource/DamageSources + a f_268645_ + b f_268567_ + c f_268551_ + d f_268475_ + e f_268418_ + f f_268602_ + g f_268605_ + h f_268691_ + i f_268611_ + j f_268742_ + k f_268499_ + l f_268729_ + m f_268623_ + n f_268726_ + o f_268521_ + p f_268591_ + q f_268438_ + r f_268582_ + s f_268426_ + t f_268561_ + u f_268733_ + v f_268610_ + w f_287008_ + x f_286964_ + (Lhs;)V + 0 o p_270740_ + a (Lbfj;Lbfj;)Lben; m_269525_ + 0 o p_270146_ + 1 o p_270358_ + a (Lbyo;)Lben; m_269075_ + 0 o p_270723_ + a (Lbzt;Lbfj;)Lben; m_269383_ + 0 o p_270367_ + 1 o p_270887_ + a (Lbyu;Lbfj;)Lben; m_269418_ + 0 o p_270570_ + 1 o p_270857_ + a (Lbfj;)Lben; m_269564_ + 0 o p_270643_ + a ()Lben; m_269387_ + a (Lcme;)Lben; m_269093_ + 0 o p_270369_ + a (Lbfj;Lbfz;)Lben; m_269299_ + 0 o p_270210_ + 1 o p_270757_ + a (Lacp;Lbfj;Lbfj;)Lben; m_268998_ + 0 o p_270076_ + 1 o p_270656_ + 2 o p_270242_ + a (Lbzb;Lbfj;)Lben; m_268994_ + 0 o p_270571_ + 1 o p_270768_ + a (Leei;)Lben; m_269488_ + 0 o p_270175_ + a (Lacp;Lbfj;)Lben; m_269298_ + 0 o p_270142_ + 1 o p_270696_ + a (Lbza;Lbfj;)Lben; m_269453_ + 0 o p_270147_ + 1 o p_270824_ + a (Lacp;)Lben; m_269079_ + 0 o p_270957_ + a (Lbfz;)Lben; m_269396_ + 0 o p_270689_ + b ()Lben; m_269548_ + b (Lbfj;Lbfj;)Lben; m_269390_ + 0 o p_270388_ + 1 o p_270485_ + b (Lbfz;)Lben; m_269333_ + 0 o p_270357_ + b (Lbfj;)Lben; m_269230_ + 0 o p_270112_ + c ()Lben; m_269549_ + c (Lbfj;Lbfj;)Lben; m_269104_ + 0 o p_270560_ + 1 o p_270646_ + c (Lbfz;)Lben; m_269364_ + 0 o p_270502_ + c (Lbfj;)Lben; m_269103_ + 0 o p_270720_ + d ()Lben; m_269233_ + d (Lbfj;)Lben; m_269374_ + 0 o p_270917_ + d (Lbfj;Lbfj;)Lben; m_269036_ + 0 o p_271016_ + 1 o p_270814_ + e ()Lben; m_269047_ + e (Lbfj;)Lben; m_269285_ + 0 o p_270401_ + f ()Lben; m_269318_ + g ()Lben; m_269354_ + h ()Lben; m_269063_ + i ()Lben; m_269064_ + j ()Lben; m_269325_ + k ()Lben; m_268989_ + l ()Lben; m_269515_ + m ()Lben; m_269341_ + n ()Lben; m_269264_ + o ()Lben; m_269425_ + p ()Lben; m_269251_ + q ()Lben; m_269254_ + r ()Lben; m_269483_ + s ()Lben; m_269555_ + t ()Lben; m_269109_ + u ()Lben; m_269571_ + v ()Lben; m_287287_ + w ()Lben; m_287172_ +bep net/minecraft/world/damagesource/DamageType + a f_268510_ + b f_268677_ + c f_268501_ + d f_268663_ + e f_268686_ + f f_268472_ + ()V + static + (Ljava/lang/String;FLbel;)V + 0 o p_270473_ + 1 o p_270700_ + 2 o p_270105_ + (Ljava/lang/String;Lbem;FLbel;)V + 0 o p_270743_ + 1 o p_270585_ + 2 o p_270555_ + 3 o p_270608_ + (Ljava/lang/String;Lbem;FLbel;Lber;)V + 0 o f_268677_ + 1 o f_268501_ + 2 o f_268663_ + 3 o f_268686_ + 4 o f_268472_ + (Ljava/lang/String;Lbem;F)V + 0 o p_270099_ + 1 o p_270717_ + 2 o p_270846_ + (Ljava/lang/String;F)V + 0 o p_270454_ + 1 o p_270889_ + a ()Ljava/lang/String; f_268677_ + a (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; m_269293_ + static + 0 o p_270460_ + b ()Lbem; f_268501_ + c ()F f_268663_ + d ()Lbel; f_268686_ + e ()Lber; f_268472_ + equals (Ljava/lang/Object;)Z equals + 0 o p_270067_ + hashCode ()I hashCode + toString ()Ljava/lang/String; toString +beq net/minecraft/world/damagesource/DamageTypes + A f_268511_ + B f_268464_ + C f_268739_ + D f_268714_ + E f_268534_ + F f_268428_ + G f_268684_ + H f_268556_ + I f_268641_ + J f_268425_ + K f_268530_ + L f_268440_ + M f_268565_ + N f_268448_ + O f_268679_ + P f_268650_ + Q f_286973_ + R f_286979_ + a f_268631_ + b f_268450_ + c f_268468_ + d f_268546_ + e f_268434_ + f f_268612_ + g f_268613_ + h f_268722_ + i f_268441_ + j f_268585_ + k f_268671_ + l f_268576_ + m f_268724_ + n f_268433_ + o f_268515_ + p f_268493_ + q f_268482_ + r f_268752_ + s f_268469_ + t f_268444_ + u f_268669_ + v f_268659_ + w f_268526_ + x f_268513_ + y f_268656_ + z f_268566_ + ()V + static + a (Lnm;)V m_269594_ + static + 0 o p_270331_ +ber net/minecraft/world/damagesource/DeathMessageType + a DEFAULT + b FALL_VARIANTS + c INTENTIONAL_GAME_DESIGN + d f_268483_ + e f_268617_ + f $VALUES + ()V + static + (Ljava/lang/String;ILjava/lang/String;)V + 0 o p_270789_ + 1 o p_270202_ + 2 o p_270201_ + a ()[Lber; m_269013_ + static + c ()Ljava/lang/String; m_7912_ + valueOf (Ljava/lang/String;)Lber; valueOf + static + 0 o p_270116_ + values ()[Lber; values + static +bes net/minecraft/world/damagesource/FallLocation + a f_289040_ + b f_289035_ + c f_289039_ + d f_289031_ + e f_289027_ + f f_289030_ + g f_289033_ + h f_289046_ + i f_289026_ + ()V + static + (Ljava/lang/String;)V + 0 o f_289026_ + a (Ldcb;)Lbes; m_289230_ + static + 0 o p_289530_ + a (Lbfz;)Lbes; m_289203_ + static + 0 o p_289566_ + a ()Ljava/lang/String; m_289192_ + b ()Ljava/lang/String; f_289026_ + equals (Ljava/lang/Object;)Z equals + 0 o p_289539_ + hashCode ()I hashCode + toString ()Ljava/lang/String; toString +bet net/minecraft/world/damagesource/package-info +beu net/minecraft/world/effect/AbsoptionMobEffect + (Lbez;I)V + 0 o p_19414_ + 1 o p_19415_ + a (Lbfz;Lbhd;I)V m_6386_ + 0 o p_19417_ + 1 o p_19418_ + 2 o p_19419_ + b (Lbfz;Lbhd;I)V m_6385_ + 0 o p_19421_ + 1 o p_19422_ + 2 o p_19423_ +bev net/minecraft/world/effect/AttackDamageMobEffect + a f_19424_ + (Lbez;ID)V + 0 o p_19426_ + 1 o p_19427_ + 2 o p_19428_ + a (ILbhe;)D m_7048_ + 0 o p_19430_ + 1 o p_19431_ +bew net/minecraft/world/effect/HealthBoostMobEffect + (Lbez;I)V + 0 o p_19433_ + 1 o p_19434_ + a (Lbfz;Lbhd;I)V m_6386_ + 0 o p_19436_ + 1 o p_19437_ + 2 o p_19438_ +bex net/minecraft/world/effect/InstantenousMobEffect + (Lbez;I)V + 0 o p_19440_ + 1 o p_19441_ + a ()Z m_8093_ + a (II)Z m_6584_ + 0 o p_19444_ + 1 o p_19445_ +bey net/minecraft/world/effect/MobEffect + a f_19446_ + b f_19447_ + c f_19448_ + d f_19449_ + e f_216878_ + (Lbez;I)V + 0 o p_19451_ + 1 o p_19452_ + a (II)Z m_6584_ + 0 o p_19455_ + 1 o p_19456_ + a (Lbhb;Ljava/lang/String;DLbhe$a;)Lbey; m_19472_ + 0 o p_19473_ + 1 o p_19474_ + 2 o p_19475_ + 3 o p_19476_ + a (Lbfz;I)V m_6742_ + 0 o p_19467_ + 1 o p_19468_ + a (Lbfz;Lbhd;I)V m_6386_ + 0 o p_19469_ + 1 o p_19470_ + 2 o p_19471_ + a (Lbey;)I m_19459_ + static + 0 o p_19460_ + a (Ljava/util/function/Supplier;)Lbey; m_216879_ + 0 o p_216880_ + a ()Z m_8093_ + a (ILbhe;)D m_7048_ + 0 o p_19457_ + 1 o p_19458_ + a (Lbfj;Lbfj;Lbfz;ID)V m_19461_ + 0 o p_19462_ + 1 o p_19463_ + 2 o p_19464_ + 3 o p_19465_ + 4 o p_19466_ + a (I)Lbey; m_19453_ + static + 0 o p_19454_ + b ()Ljava/util/Optional; m_216881_ + b (Lbey;)I m_216882_ + static + 0 o p_216883_ + b (Lbfz;Lbhd;I)V m_6385_ + 0 o p_19478_ + 1 o p_19479_ + 2 o p_19480_ + c ()Ljava/lang/String; m_19477_ + d ()Ljava/lang/String; m_19481_ + e ()Lsw; m_19482_ + f ()Lbez; m_19483_ + g ()I m_19484_ + h ()Ljava/util/Map; m_19485_ + i ()Z m_19486_ + j ()Lbfa$a; m_216884_ + static +bez net/minecraft/world/effect/MobEffectCategory + a BENEFICIAL + b HARMFUL + c NEUTRAL + d f_19490_ + e $VALUES + ()V + static + (Ljava/lang/String;ILn;)V + 0 o p_19494_ + 1 o p_19495_ + 2 o p_19496_ + a ()Ln; m_19497_ + b ()[Lbez; m_146709_ + static + valueOf (Ljava/lang/String;)Lbez; valueOf + static + 0 o p_19499_ + values ()[Lbez; values + static +bf net/minecraft/advancements/critereon/DistancePredicate + a f_26241_ + b f_26242_ + c f_26243_ + d f_26244_ + e f_26245_ + f f_26246_ + ()V + static + (Lcj$c;Lcj$c;Lcj$c;Lcj$c;Lcj$c;)V + 0 o p_26249_ + 1 o p_26250_ + 2 o p_26251_ + 3 o p_26252_ + 4 o p_26253_ + a (Lcj$c;)Lbf; m_148836_ + static + 0 o p_148837_ + a (Lcom/google/gson/JsonElement;)Lbf; m_26264_ + static + 0 o p_26265_ + a ()Lcom/google/gson/JsonElement; m_26254_ + a (DDDDDD)Z m_26255_ + 0 o p_26256_ + 1 o p_26257_ + 2 o p_26258_ + 3 o p_26259_ + 4 o p_26260_ + 5 o p_26261_ + b (Lcj$c;)Lbf; m_148838_ + static + 0 o p_148839_ + c (Lcj$c;)Lbf; m_148840_ + static + 0 o p_148841_ +bfa net/minecraft/world/effect/MobEffectInstance + a f_267388_ + b f_19501_ + c f_19502_ + d f_19503_ + e f_19504_ + f f_19506_ + g f_19508_ + h f_19509_ + i f_19510_ + j f_216885_ + ()V + static + (Lbey;)V + 0 o p_19513_ + (Lbey;IIZZZLbfa;Ljava/util/Optional;)V + 0 o p_216887_ + 1 o p_216888_ + 2 o p_216889_ + 3 o p_216890_ + 4 o p_216891_ + 5 o p_216892_ + 6 o p_216893_ + 7 o p_216894_ + (Lbey;II)V + 0 o p_19518_ + 1 o p_19519_ + 2 o p_19520_ + (Lbfa;)V + 0 o p_19543_ + (Lbey;IIZZZ)V + 0 o p_19528_ + 1 o p_19529_ + 2 o p_19530_ + 3 o p_19531_ + 4 o p_19532_ + 5 o p_19533_ + (Lbey;IIZZ)V + 0 o p_19522_ + 1 o p_19523_ + 2 o p_19524_ + 3 o p_19525_ + 4 o p_19526_ + (Lbey;I)V + 0 o p_19515_ + 1 o p_19516_ + a (Lbfz;Ljava/lang/Runnable;)Z m_19552_ + 0 o p_19553_ + 1 o p_19554_ + a (Lqr;Lbfa$a;)V m_216901_ + static + 0 o p_216902_ + 1 o p_216903_ + a (Lbfz;)V m_19550_ + 0 o p_19551_ + a (Lqr;)Lqr; m_19555_ + 0 o p_19556_ + a (Lit/unimi/dsi/fastutil/ints/Int2IntFunction;)I m_267696_ + 0 o p_268089_ + a (Lbey;Lqr;)Lbfa; m_19545_ + static + 0 o p_19546_ + 1 o p_19547_ + a (Lbfa;)V m_19548_ + 0 o p_19549_ + a (Lqr;Lrk;)V m_216904_ + static + 0 o p_216905_ + 1 o p_216906_ + a ()Ljava/util/Optional; m_216895_ + a (I)Z m_267633_ + 0 o p_268088_ + a (Lbfa$a;)V m_267554_ + 0 o p_267917_ + b (Lbfa;)Z m_19558_ + 0 o p_19559_ + b (Lqr;)Lbfa; m_19560_ + static + 0 o p_19561_ + b ()Z m_267577_ + b (I)I m_267553_ + static + 0 o p_267916_ + c (Lbfa;)I compareTo + 0 o p_19566_ + c (Lqr;)V m_19567_ + 0 o p_19568_ + c ()Lbey; m_19544_ + compareTo (Ljava/lang/Object;)I compareTo + 0 o p_19570_ + d (Lbfa;)Z m_267670_ + 0 o p_268133_ + d ()I m_19557_ + e ()I m_19564_ + equals (Ljava/lang/Object;)Z equals + 0 o p_19574_ + f ()Z m_19571_ + g ()Z m_19572_ + h ()Z m_19575_ + hashCode ()I hashCode + i ()Ljava/lang/String; m_19576_ + j ()Z m_267725_ + k ()I m_19579_ + l ()Ljava/lang/String; m_267740_ + toString ()Ljava/lang/String; toString +bfa$a net/minecraft/world/effect/MobEffectInstance$FactorData + a f_216907_ + b f_216908_ + c f_216909_ + d f_216910_ + e f_216911_ + f f_267473_ + g f_216913_ + h f_216914_ + ()V + static + (I)V + 0 o p_216917_ + (IFFFIFZ)V + 0 o p_216919_ + 1 o p_216920_ + 2 o p_216921_ + 3 o p_216922_ + 4 o p_216923_ + 5 o p_216924_ + 6 o p_216925_ + a (Lbfa;)V m_267690_ + 0 o p_268212_ + a (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; m_216932_ + static + 0 o p_216933_ + a (Lbfz;F)F m_238413_ + 0 o p_238414_ + 1 o p_238415_ + a (Lbfa$a;)Ljava/lang/Boolean; m_216928_ + static + 0 o p_216929_ + b (Lbfa$a;)Ljava/lang/Float; m_216934_ + static + 0 o p_216935_ + c (Lbfa$a;)Ljava/lang/Integer; m_267555_ + static + 0 o p_267918_ + d (Lbfa$a;)Ljava/lang/Float; m_216938_ + static + 0 o p_216939_ + e (Lbfa$a;)Ljava/lang/Float; m_216940_ + static + 0 o p_216941_ + f (Lbfa$a;)Ljava/lang/Float; m_216942_ + static + 0 o p_216943_ + g (Lbfa$a;)Ljava/lang/Integer; m_216944_ + static + 0 o p_216945_ +bfb net/minecraft/world/effect/MobEffectUtil + ()V + a (Lbfa;Lbfj;Laig;)V m_238229_ + static + 0 o p_238230_ + 1 o p_238231_ + 2 o p_238232_ + a (Lbfj;Leei;DLbey;Lbfa;ILaig;)Z m_267556_ + static + 0 o p_267919_ + 1 o p_267920_ + 2 o p_267921_ + 3 o p_267922_ + 4 o p_267923_ + 5 o p_267924_ + 6 o p_267925_ + a (Lbfa;F)Lsw; m_267641_ + static + 0 o p_268116_ + 1 o p_268280_ + a (Laif;Lbfj;Leei;DLbfa;I)Ljava/util/List; m_216946_ + static + 0 o p_216947_ + 1 o p_216948_ + 2 o p_216949_ + 3 o p_216950_ + 4 o p_216951_ + 5 o p_216952_ + a (Lbfz;)Z m_19584_ + static + 0 o p_19585_ + b (Lbfz;)I m_19586_ + static + 0 o p_19587_ + c (Lbfz;)Z m_19588_ + static + 0 o p_19589_ +bfc net/minecraft/world/effect/MobEffects + A f_19590_ + B f_19591_ + C f_19592_ + D f_19593_ + E f_19594_ + F f_19595_ + G f_216964_ + H f_216965_ + a f_19596_ + b f_19597_ + c f_19598_ + d f_19599_ + e f_19600_ + f f_19601_ + g f_19602_ + h f_19603_ + i f_19604_ + j f_19605_ + k f_19606_ + l f_19607_ + m f_19608_ + n f_19609_ + o f_19610_ + p f_19611_ + q f_19612_ + r f_19613_ + s f_19614_ + t f_19615_ + u f_19616_ + v f_19617_ + w f_19618_ + x f_19619_ + y f_19620_ + z f_19621_ + ()V + static + ()V + a (ILjava/lang/String;Lbey;)Lbey; m_19623_ + static + 0 o p_19624_ + 1 o p_19625_ + 2 o p_19626_ + a ()Lbfa$a; m_216966_ + static +bfc$1 net/minecraft/world/effect/MobEffects$1 + (Lbez;I)V + 0 o p_19628_ + 1 o p_19629_ + a (II)Z m_6584_ + 0 o p_19631_ + 1 o p_19632_ + a (Lbfz;I)V m_6742_ + 0 o p_19634_ + 1 o p_19635_ +bfd net/minecraft/world/effect/package-info +bfe net/minecraft/world/entity/AgeableMob + b f_146730_ + bT f_146731_ + bU f_146732_ + c f_146733_ + d f_146734_ + e f_146735_ + ()V + static + (Lbfn;Lcmm;)V + 0 o p_146738_ + 1 o p_146739_ + P_ ()Z m_35506_ + a (Laif;Lbfe;)Lbfe; m_142606_ + 0 o p_146743_ + 1 o p_146744_ + a (Lqr;)V m_7378_ + 0 o p_146752_ + a (Z)V m_6863_ + 0 o p_146756_ + a (Laby;)V m_7350_ + 0 o p_146754_ + a (Lcnb;Lbdv;Lbgd;Lbgt;Lqr;)Lbgt; m_6518_ + 0 o p_146746_ + 1 o p_146747_ + 2 o p_146748_ + 3 o p_146749_ + 4 o p_146750_ + a (IZ)V m_146740_ + 0 o p_146741_ + 1 o p_146742_ + a_ ()V m_8097_ + b (Lqr;)V m_7380_ + 0 o p_146761_ + b_ (I)V m_146758_ + 0 o p_146759_ + b_ ()V m_8107_ + c_ (I)V m_146762_ + 0 o p_146763_ + d_ (I)I m_216967_ + static + 0 o p_216968_ + h ()I m_146764_ + h_ ()Z m_6162_ + m ()V m_30232_ +bfe$a net/minecraft/world/entity/AgeableMob$AgeableMobGroupData + a f_146767_ + b f_146768_ + c f_146769_ + (ZF)V + 0 o p_146775_ + 1 o p_146776_ + (Z)V + 0 o p_146773_ + (F)V + 0 o p_146771_ + a ()I m_146777_ + b ()V m_146778_ + c ()Z m_146779_ + d ()F m_146780_ +bff net/minecraft/world/entity/AnimationState + a f_216969_ + b f_216970_ + c f_216971_ + ()V + a (ZI)V m_246184_ + 0 o p_252220_ + 1 o p_249486_ + a (Ljava/util/function/Consumer;)V m_216979_ + 0 o p_216980_ + a (I)V m_216977_ + 0 o p_216978_ + a ()V m_216973_ + a (FF)V m_216974_ + 0 o p_216975_ + 1 o p_216976_ + b (I)V m_216982_ + 0 o p_216983_ + b ()J m_216981_ + c ()Z m_216984_ +bfg net/minecraft/world/entity/AreaEffectCloud + aD f_19693_ + aE f_19694_ + aF f_19695_ + b f_252512_ + c f_252504_ + d f_19696_ + e f_146782_ + f f_19697_ + g f_19698_ + h f_19699_ + i f_19700_ + j f_146781_ + k f_252417_ + l f_252519_ + m f_19701_ + n f_19685_ + o f_19686_ + p f_19687_ + q f_19688_ + r f_19689_ + s f_19690_ + t f_19691_ + u f_19692_ + ()V + static + (Lcmm;DDD)V + 0 o p_19707_ + 1 o p_19708_ + 2 o p_19709_ + 3 o p_19710_ + (Lbfn;Lcmm;)V + 0 o p_19704_ + 1 o p_19705_ + a (Lbgl;)Lbfk; m_6972_ + 0 o p_19721_ + a (Z)V m_19730_ + 0 o p_19731_ + a (Lqr;)V m_7378_ + 0 o p_19727_ + a (Laby;)V m_7350_ + 0 o p_19729_ + a (Lchw;)V m_19722_ + 0 o p_19723_ + a (Lbfz;)V m_19718_ + 0 o p_19719_ + a (Lit;)V m_19724_ + 0 o p_19725_ + a (I)V m_19714_ + 0 o p_19715_ + a (F)V m_19712_ + 0 o p_19713_ + a (Lbfa;)V m_19716_ + 0 o p_19717_ + a (Ljava/util/Map$Entry;)Z m_287056_ + 0 o p_287380_ + a_ ()V m_8097_ + b (Lqr;)V m_7380_ + 0 o p_19737_ + b (I)V m_19734_ + 0 o p_19735_ + b (F)V m_19732_ + 0 o p_19733_ + c (F)V m_19738_ + 0 o p_19739_ + c (I)V m_146785_ + 0 o p_146786_ + d (I)V m_19740_ + 0 o p_19741_ + d_ ()V m_6210_ + h ()F m_19743_ + i ()I m_19744_ + j ()Lit; m_19745_ + k ()Z m_19747_ + l ()V m_8119_ + l_ ()Ldxj; m_7752_ + m (I)I m_267557_ + static + 0 o p_267926_ + m ()I m_19748_ + o ()F m_146787_ + p ()F m_146788_ + q ()I m_146789_ + r ()I m_146790_ + s ()Lbfz; m_19749_ + t ()Lchw; m_146791_ + v ()Lbfj; m_19749_ + w ()V m_19750_ +bfh net/minecraft/world/entity/Attackable + M_ ()Lbfz; m_271686_ +bfi net/minecraft/world/entity/Display + aD f_268593_ + aE f_268599_ + aF f_268421_ + aG f_268527_ + aH f_268708_ + aI f_268532_ + aJ f_268639_ + aK f_268687_ + aL f_276582_ + aM f_268480_ + aN f_268460_ + aO f_268716_ + aP f_268732_ + aQ f_271381_ + aR f_276631_ + aS f_276153_ + aT f_268702_ + aU f_276444_ + aV f_276570_ + aW f_276646_ + b f_268638_ + c f_268528_ + d f_276326_ + e f_268715_ + f f_268514_ + g f_268506_ + h f_268647_ + i f_268520_ + j f_268507_ + k f_268743_ + l f_268633_ + m f_268537_ + n f_276470_ + o f_268644_ + p f_276329_ + q f_268449_ + r f_268598_ + s f_268489_ + t f_268693_ + u f_268713_ + ()V + static + (Lbfn;Lcmm;)V + 0 o p_270360_ + 1 o p_270280_ + A ()V m_269361_ + C ()V m_269417_ + D ()Lbfi$j; m_277152_ + S ()Luo; m_5654_ + a (ZF)V m_276825_ + 0 o p_277603_ + 1 o p_277810_ + a (Lqr;)V m_7378_ + 0 o p_270854_ + a (Lbfi$j;F)Lbfi$j; m_277098_ + 0 o p_277365_ + 1 o p_277948_ + a (Lbfi$a;)V m_269423_ + 0 o p_270345_ + a (D)Z m_6783_ + 0 o p_270991_ + a (Lqr;Lrk;)V m_269265_ + static + 0 o p_270679_ + 1 o p_270121_ + a (Lj;)V m_269214_ + 0 o p_270186_ + a (Lant;)V m_269586_ + 0 o p_270461_ + a (Laby;)V m_7350_ + 0 o p_270275_ + a (Lcom/mojang/datafixers/util/Pair;)V m_269261_ + 0 o p_270247_ + a (Lacb;)Lj; m_269448_ + static + 0 o p_270278_ + a (F)F m_272147_ + 0 o p_272675_ + a_ ()V m_8097_ + a_ (F)V m_146922_ + 0 o p_270921_ + b (Lqr;)V m_7380_ + 0 o p_270779_ + b (Lqr;Lrk;)V m_269044_ + static + 0 o p_270698_ + 1 o p_270227_ + b (Lcom/mojang/datafixers/util/Pair;)V m_269003_ + 0 o p_270691_ + b (I)V m_269317_ + 0 o p_270803_ + b_ (F)V m_146926_ + 0 o p_270257_ + c (I)V m_276345_ + 0 o p_276366_ + c (Lqr;Lrk;)V m_269245_ + static + 0 o p_270376_ + 1 o p_270528_ + c (Lcom/mojang/datafixers/util/Pair;)V m_269279_ + 0 o p_270952_ + c_ ()Z m_6090_ + d (I)V m_269026_ + 0 o p_270784_ + e (DDD)V m_6034_ + 0 o p_270091_ + 1 o p_270983_ + 2 o p_270419_ + j ()Lorg/joml/Quaternionf; m_269190_ + j_ ()Leed; m_6921_ + k ()Lbfi$j; m_276844_ + k_ ()I m_19876_ + l ()V m_8119_ + l_ ()Ldxj; m_7752_ + o ()I m_269272_ + p ()I m_276347_ + q ()Lbfi$a; m_269218_ + r ()Lant; m_269102_ + s ()I m_269041_ + s (F)V m_269215_ + 0 o p_270907_ + t (F)V m_269526_ + 0 o p_270122_ + t ()F m_269081_ + u (F)V m_269228_ + 0 o p_270866_ + v ()F m_269459_ + v (F)V m_269441_ + 0 o p_270741_ + w ()F m_269155_ + w (F)V m_269087_ + 0 o p_270716_ + x ()F m_269558_ + y ()I m_269034_ + z ()F m_269410_ +bfi$1 net/minecraft/world/entity/Display$1 + a f_276636_ + ()V + static +bfi$a net/minecraft/world/entity/Display$BillboardConstraints + a FIXED + b VERTICAL + c HORIZONTAL + d CENTER + e f_268505_ + f f_268544_ + g f_268470_ + h f_268642_ + i $VALUES + ()V + static + (Ljava/lang/String;IBLjava/lang/String;)V + 0 o p_270791_ + 1 o p_270752_ + 2 o p_270785_ + 3 o p_270544_ + a ()B m_269016_ + b ()[Lbfi$a; m_269521_ + static + c ()Ljava/lang/String; m_7912_ + valueOf (Ljava/lang/String;)Lbfi$a; valueOf + static + 0 o p_270795_ + values ()[Lbfi$a; values + static +bfi$b net/minecraft/world/entity/Display$BlockDisplay + o f_268661_ + p f_268543_ + q f_276560_ + ()V + static + (Lbfn;Lcmm;)V + 0 o p_271022_ + 1 o p_270442_ + a (ZF)V m_276825_ + 0 o p_277802_ + 1 o p_277688_ + a (Lqr;)V m_7378_ + 0 o p_270139_ + a (Laby;)V m_7350_ + 0 o p_277476_ + a_ ()V m_8097_ + b (Lqr;)V m_7380_ + 0 o p_270469_ + c (Ldcb;)V m_269329_ + 0 o p_270267_ + o ()Lbfi$b$a; m_276881_ + p ()Ldcb; m_269134_ +bfi$b$a net/minecraft/world/entity/Display$BlockDisplay$BlockRenderState + a f_276526_ + (Ldcb;)V + 0 o f_276526_ + a ()Ldcb; f_276526_ + equals (Ljava/lang/Object;)Z equals + 0 o p_277657_ + hashCode ()I hashCode + toString ()Ljava/lang/String; toString +bfi$c net/minecraft/world/entity/Display$ColorInterpolator + a f_276650_ + b f_276509_ + (II)V + 0 o f_276650_ + 1 o f_276509_ + a ()I f_276650_ + b ()I f_276509_ + equals (Ljava/lang/Object;)Z equals + 0 o p_278002_ + get (F)I m_269120_ + 0 o p_278012_ + hashCode ()I hashCode + toString ()Ljava/lang/String; toString +bfi$d net/minecraft/world/entity/Display$FloatInterpolator + a (FF)F m_276789_ + static + 0 o p_277438_ + 1 o p_278040_ + constant (F)Lbfi$d; m_277016_ + static + 0 o p_277894_ + get (F)F m_269229_ + 0 o p_270330_ +bfi$e net/minecraft/world/entity/Display$GenericInterpolator + a (Ljava/lang/Object;F)Ljava/lang/Object; m_276793_ + static + 0 o p_277421_ + 1 o p_277907_ + constant (Ljava/lang/Object;)Lbfi$e; m_277024_ + static + 0 o p_277718_ + get (F)Ljava/lang/Object; m_269136_ + 0 o p_270270_ +bfi$f net/minecraft/world/entity/Display$IntInterpolator + a (IF)I m_276992_ + static + 0 o p_277552_ + 1 o p_277356_ + constant (I)Lbfi$f; m_276859_ + static + 0 o p_277348_ + get (F)I m_269120_ + 0 o p_270183_ +bfi$g net/minecraft/world/entity/Display$ItemDisplay + o f_268554_ + p f_268471_ + q f_268455_ + r f_268601_ + s f_268451_ + t f_276545_ + ()V + static + (Lbfn;Lcmm;)V + 0 o p_270104_ + 1 o p_270735_ + a (Lcfw;)V m_269028_ + 0 o p_270370_ + a (ZF)V m_276825_ + 0 o p_277976_ + 1 o p_277708_ + a (Lcfz;)V m_269362_ + 0 o p_270310_ + a (Lqr;)V m_7378_ + 0 o p_270713_ + a (Laby;)V m_7350_ + 0 o p_277793_ + a (Lcom/mojang/datafixers/util/Pair;)V m_269144_ + 0 o p_270456_ + a (Lqr;Lrk;)V m_269045_ + static + 0 o p_270537_ + 1 o p_270615_ + a_ (I)Lbgs; m_141942_ + 0 o p_270599_ + a_ ()V m_8097_ + b (Lqr;)V m_7380_ + 0 o p_270669_ + o ()Lbfi$g$a; m_277122_ + p ()Lcfz; m_269568_ + q ()Lcfw; m_269386_ +bfi$g$1 net/minecraft/world/entity/Display$ItemDisplay$1 + a f_268621_ + (Lbfi$g;)V + 0 o p_270897_ + a ()Lcfz; m_142196_ + a (Lcfz;)Z m_142104_ + 0 o p_270697_ +bfi$g$a net/minecraft/world/entity/Display$ItemDisplay$ItemRenderState + a f_276600_ + b f_276629_ + (Lcfz;Lcfw;)V + 0 o f_276600_ + 1 o f_276629_ + a ()Lcfz; f_276600_ + b ()Lcfw; f_276629_ + equals (Ljava/lang/Object;)Z equals + 0 o p_277711_ + hashCode ()I hashCode + toString ()Ljava/lang/String; toString +bfi$h net/minecraft/world/entity/Display$LinearFloatInterpolator + a f_276496_ + b f_276689_ + (FF)V + 0 o f_276496_ + 1 o f_276689_ + a ()F f_276496_ + b ()F f_276689_ + equals (Ljava/lang/Object;)Z equals + 0 o p_277871_ + get (F)F m_269229_ + 0 o p_277511_ + hashCode ()I hashCode + toString ()Ljava/lang/String; toString +bfi$i net/minecraft/world/entity/Display$LinearIntInterpolator + a f_276498_ + b f_276492_ + (II)V + 0 o f_276498_ + 1 o f_276492_ + a ()I f_276498_ + b ()I f_276492_ + equals (Ljava/lang/Object;)Z equals + 0 o p_277372_ + get (F)I m_269120_ + 0 o p_277960_ + hashCode ()I hashCode + toString ()Ljava/lang/String; toString +bfi$j net/minecraft/world/entity/Display$RenderState + a f_276585_ + b f_276506_ + c f_276438_ + d f_276607_ + e f_276693_ + f f_276486_ + (Lbfi$e;Lbfi$a;ILbfi$d;Lbfi$d;I)V + 0 o f_276585_ + 1 o f_276506_ + 2 o f_276438_ + 3 o f_276607_ + 4 o f_276693_ + 5 o f_276486_ + a ()Lbfi$e; f_276585_ + b ()Lbfi$a; f_276506_ + c ()I f_276438_ + d ()Lbfi$d; f_276607_ + e ()Lbfi$d; f_276693_ + equals (Ljava/lang/Object;)Z equals + 0 o p_277541_ + f ()I f_276486_ + hashCode ()I hashCode + toString ()Ljava/lang/String; toString +bfi$k net/minecraft/world/entity/Display$TextDisplay + aD f_268529_ + aE f_268552_ + aF f_268596_ + aG f_268662_ + aH f_268692_ + aI f_268694_ + aJ f_268486_ + aK f_268541_ + aL f_268542_ + aM f_268476_ + aN f_268494_ + aO f_268481_ + aP f_268636_ + aQ f_276462_ + aR f_268719_ + aS f_276542_ + o f_268588_ + p f_268445_ + q f_268740_ + r f_268465_ + s f_268562_ + t f_268545_ + u f_268744_ + ()V + static + (Lbfn;Lcmm;)V + 0 o p_270708_ + 1 o p_270736_ + a (ZF)V m_276825_ + 0 o p_277565_ + 1 o p_277967_ + a (B)Lbfi$k$a; m_269384_ + static + 0 o p_270911_ + a (Lqr;)V m_7378_ + 0 o p_270714_ + a (Laby;)V m_7350_ + 0 o p_270797_ + a (Lbfi$k$e;F)Lbfi$k$e; m_276848_ + 0 o p_278000_ + 1 o p_277646_ + a (Lqr;Lrk;)V m_269352_ + static + 0 o p_270064_ + 1 o p_271001_ + a (Lbfi$k$d;)Lbfi$k$b; m_269343_ + 0 o p_270682_ + a (BLqr;Ljava/lang/String;B)B m_269024_ + static + 0 o p_270219_ + 1 o p_270994_ + 2 o p_270958_ + 3 o p_270701_ + a_ ()V m_8097_ + b (Lqr;)V m_7380_ + 0 o p_270268_ + b (I)V m_269174_ + 0 o p_270545_ + b (BLqr;Ljava/lang/String;B)V m_269407_ + static + 0 o p_270879_ + 1 o p_270177_ + 2 o p_270294_ + 3 o p_270853_ + c (B)V m_269007_ + 0 o p_270583_ + c (I)V m_269001_ + 0 o p_270241_ + c (Lsw;)V m_269037_ + 0 o p_270902_ + d (B)V m_269559_ + 0 o p_270855_ + o ()Lbfi$k$e; m_277174_ + p ()Lsw; m_269000_ + q ()I m_269517_ + r ()B m_269180_ + s ()I m_269375_ + t ()B m_269327_ + v ()Lbfi$k$e; m_276914_ +bfi$k$a net/minecraft/world/entity/Display$TextDisplay$Align + a CENTER + b LEFT + c RIGHT + d f_268461_ + e f_268523_ + f $VALUES + ()V + static + (Ljava/lang/String;ILjava/lang/String;)V + 0 o p_270185_ + 1 o p_270282_ + 2 o p_270554_ + a ()[Lbfi$k$a; m_269578_ + static + c ()Ljava/lang/String; m_7912_ + valueOf (Ljava/lang/String;)Lbfi$k$a; valueOf + static + 0 o p_270912_ + values ()[Lbfi$k$a; values + static +bfi$k$b net/minecraft/world/entity/Display$TextDisplay$CachedInfo + a f_268675_ + b f_268557_ + (Ljava/util/List;I)V + 0 o f_268675_ + 1 o f_268557_ + a ()Ljava/util/List; f_268675_ + b ()I f_268557_ + equals (Ljava/lang/Object;)Z equals + 0 o p_270322_ + hashCode ()I hashCode + toString ()Ljava/lang/String; toString +bfi$k$c net/minecraft/world/entity/Display$TextDisplay$CachedLine + a f_268516_ + b f_268443_ + (Laom;I)V + 0 o f_268516_ + 1 o f_268443_ + a ()Laom; f_268516_ + b ()I f_268443_ + equals (Ljava/lang/Object;)Z equals + 0 o p_270160_ + hashCode ()I hashCode + toString ()Ljava/lang/String; toString +bfi$k$d net/minecraft/world/entity/Display$TextDisplay$LineSplitter + split (Lsw;I)Lbfi$k$b; m_269487_ + 0 o p_270086_ + 1 o p_270526_ +bfi$k$e net/minecraft/world/entity/Display$TextDisplay$TextRenderState + a f_276477_ + b f_276622_ + c f_276579_ + d f_276562_ + e f_276556_ + (Lsw;ILbfi$f;Lbfi$f;B)V + 0 o f_276477_ + 1 o f_276622_ + 2 o f_276579_ + 3 o f_276562_ + 4 o f_276556_ + a ()Lsw; f_276477_ + b ()I f_276622_ + c ()Lbfi$f; f_276579_ + d ()Lbfi$f; f_276562_ + e ()B f_276556_ + equals (Ljava/lang/Object;)Z equals + 0 o p_278077_ + hashCode ()I hashCode + toString ()Ljava/lang/String; toString +bfi$l net/minecraft/world/entity/Display$TransformationInterpolator + a f_276675_ + b f_276610_ + (Lj;Lj;)V + 0 o f_276675_ + 1 o f_276610_ + a ()Lj; f_276675_ + a (F)Lj; m_269136_ + 0 o p_278027_ + b ()Lj; f_276610_ + equals (Ljava/lang/Object;)Z equals + 0 o p_277812_ + get (F)Ljava/lang/Object; m_269136_ + 0 o p_277431_ + hashCode ()I hashCode + toString ()Ljava/lang/String; toString +bfj net/minecraft/world/entity/Entity + A f_286980_ + B f_286994_ + C f_287009_ + D f_146821_ + E f_146822_ + F f_146823_ + G f_146824_ + H f_19850_ + I f_19851_ + J f_19854_ + K f_19855_ + L f_19856_ + M f_19859_ + N f_19860_ + O f_19862_ + P f_19863_ + Q f_201939_ + R f_185931_ + S f_19864_ + T f_19865_ + U f_146792_ + V f_146793_ + W f_19867_ + X f_19787_ + Y f_19788_ + Z f_146794_ + aA f_146809_ + aB f_146810_ + aC f_285638_ + aD f_19826_ + aE f_185933_ + aF f_19827_ + aG f_19857_ + aH f_19858_ + aI f_19828_ + aJ f_19861_ + aK f_146795_ + aL f_19829_ + aM f_19793_ + aN f_19831_ + aO f_19801_ + aP f_146796_ + aQ f_146797_ + aR f_146798_ + aS f_146799_ + aT f_19832_ + aU f_19833_ + aV f_19834_ + aW f_19835_ + aX f_19836_ + aY f_146800_ + aZ f_146801_ + aa f_19789_ + ab f_19790_ + ac f_19791_ + ad f_19792_ + ae f_19794_ + af f_19796_ + ag f_19797_ + ah f_19798_ + ai f_19799_ + aj f_19800_ + ak f_19802_ + al f_19803_ + am f_19804_ + an f_19805_ + ao f_146805_ + ap f_146806_ + aq f_146807_ + ar f_19806_ + as f_19811_ + at f_19812_ + au f_19817_ + av f_19818_ + aw f_19819_ + ax f_19820_ + ay f_19821_ + az f_146808_ + ba f_216985_ + bb f_19839_ + bc f_19840_ + bd f_146802_ + be f_19841_ + bf f_19813_ + bg f_19814_ + bh f_19815_ + bi f_19816_ + bj f_286942_ + bk f_146803_ + bl f_146804_ + bm f_146813_ + bn f_185934_ + c f_19849_ + d f_19843_ + e f_19844_ + k f_19845_ + l f_146814_ + m f_146811_ + n f_146812_ + o f_19846_ + p f_19847_ + q f_19848_ + r f_19823_ + s f_19824_ + t f_19853_ + u f_19825_ + v f_146815_ + w f_146816_ + x f_146817_ + y f_146818_ + z f_146819_ + ()V + static + (Lbfn;Lcmm;)V + 0 o p_19870_ + 1 o p_19871_ + B ()I m_8088_ + F ()Ljava/lang/String; m_20333_ + G ()Ljava/lang/String; m_185986_ + G_ ()Z m_5833_ + H ()V m_8021_ + H_ ()Lsw; m_5446_ + N_ ()Z m_6102_ + S ()Luo; m_5654_ + Y ()V m_8127_ + Z ()Lsw; m_7755_ + a (DFZ)Leeg; m_19907_ + 0 o p_19908_ + 1 o p_19909_ + 2 o p_19910_ + a (Ldcb;)V m_6763_ + 0 o p_20005_ + a (Lben;F)Z m_6469_ + 0 o p_19946_ + 1 o p_19947_ + a (DDDFF)V m_19890_ + 0 o p_19891_ + 1 o p_19892_ + 2 o p_19893_ + 3 o p_19894_ + 4 o p_19895_ + a (Lcme;Lcls;Lgu;Ldcb;F)Z m_7349_ + 0 o p_19987_ + 1 o p_19988_ + 2 o p_19989_ + 3 o p_19990_ + 4 o p_19991_ + a (Lbgl;Lbfk;)F m_6380_ + 0 o p_19976_ + 1 o p_19977_ + a (Lbfj;Lbfj$a;)V m_19956_ + 0 o p_19957_ + 1 o p_19958_ + a (Laby;)V m_7350_ + 0 o p_20059_ + a (Lcml;)Lbvh; m_19998_ + 0 o p_19999_ + a (Lbfj;Z)Z m_7998_ + 0 o p_19966_ + 1 o p_19967_ + a ([F)Lqx; m_20065_ + 0 o p_20066_ + a (Lbfo;Lcfz;)V m_8061_ + 0 o p_19968_ + 1 o p_19969_ + a (Lbfj$c;)V m_142687_ + 0 o p_146834_ + a (Leei;)V m_146884_ + 0 o p_146885_ + a (Lcfz;F)Lbvh; m_5552_ + 0 o p_19985_ + 1 o p_19986_ + a (Leei;FF)Leei; m_20015_ + static + 0 o p_20016_ + 1 o p_20017_ + 2 o p_20018_ + a (Lcmm;)V m_284535_ + 0 o p_285201_ + a (Lgu;)Ldcb; m_285720_ + 0 o p_286200_ + a (Lbyo;Lbdw;)Lbdx; m_6096_ + 0 o p_19978_ + 1 o p_19979_ + a (Lefi;)Z m_20031_ + 0 o p_20032_ + a (Laif;Ll$a;)Ldyb; m_257153_ + 0 o p_258248_ + 1 o p_258249_ + a (Lp;)V m_7976_ + 0 o p_20051_ + a (FFLben;)Z m_142535_ + 0 o p_146828_ + 1 o p_146829_ + 2 o p_146830_ + a (Lbfj;DD)Z m_216992_ + 0 o p_216993_ + 1 o p_216994_ + 2 o p_216995_ + a (Lcvz;)F m_7890_ + 0 o p_20004_ + a (Lgu;Ldcb;)Z m_20039_ + 0 o p_20040_ + 1 o p_20041_ + a (Laif;Lbfz;)Z m_214076_ + 0 o p_216988_ + 1 o p_216989_ + a (Laif;)Ldyb; m_7937_ + 0 o p_19923_ + a (Leed;)V m_20011_ + 0 o p_20012_ + a (Laif;Lgu;ZLdds;)Ljava/util/Optional; m_183318_ + 0 o p_185935_ + 1 o p_185936_ + 2 o p_185937_ + 3 o p_185938_ + a (Lamg;)V m_216990_ + 0 o p_216991_ + a (Lanl;D)Z m_204031_ + 0 o p_204032_ + 1 o p_204033_ + a (FF)V m_19915_ + 0 o p_19916_ + 1 o p_19917_ + a (Laif;DDDLjava/util/Set;FF)Z m_264318_ + 0 o p_265257_ + 1 o p_265407_ + 2 o p_265727_ + 3 o p_265410_ + 4 o p_265083_ + 5 o p_265573_ + 6 o p_265094_ + a (Lgu;Ldcb;ZZLeei;)Z m_286065_ + 0 o p_286221_ + 1 o p_286549_ + 2 o p_286708_ + 3 o p_286543_ + 4 o p_286448_ + a (Lbgl;)Lbfk; m_6972_ + 0 o p_19975_ + a (Lha$a;Ll$a;)Leei; m_7643_ + 0 o p_20045_ + 1 o p_20046_ + a (Laif;Lbfy;)V m_8038_ + 0 o p_19927_ + 1 o p_19928_ + a (Lus;)V m_141965_ + 0 o p_146866_ + a (Ljava/util/function/Predicate;)Z m_146862_ + 0 o p_146863_ + a (DDF)Leei; m_19903_ + static + 0 o p_19904_ + 1 o p_19905_ + 2 o p_19906_ + a (Lcml;I)Lbvh; m_20000_ + 0 o p_20001_ + 1 o p_20002_ + a ([D)Lqx; m_20063_ + 0 o p_20064_ + a (D)Z m_6783_ + 0 o p_19883_ + a (Ljava/util/List;)V m_269505_ + 0 o p_270372_ + a (Lbyo;Leei;Lbdw;)Lbdx; m_7111_ + 0 o p_19980_ + 1 o p_19981_ + 2 o p_19982_ + a (Lbfj;Leei;Leed;Lcmm;Ljava/util/List;)Leei; m_198894_ + static + 0 o p_198895_ + 1 o p_198896_ + 2 o p_198897_ + 3 o p_198898_ + 4 o p_198899_ + a (Laig;)Z m_6459_ + 0 o p_19937_ + a (FI)V m_6541_ + 0 o p_19918_ + 1 o p_19919_ + a (DZLdcb;Lgu;)V m_7840_ + 0 o p_19911_ + 1 o p_19912_ + 2 o p_19913_ + 3 o p_19914_ + a (Ldcb;Ldcb;)V m_276961_ + 0 o p_277472_ + 1 o p_277630_ + a (Lqr;)V m_7378_ + 0 o p_20052_ + a (Lbfz;Lbfj;)V m_19970_ + 0 o p_19971_ + 1 o p_19972_ + a (Lcme;Lcls;Lgu;Ldcb;Ldxe;F)F m_7077_ + 0 o p_19992_ + 1 o p_19993_ + 2 o p_19994_ + 3 o p_19995_ + 4 o p_19996_ + 5 o p_19997_ + a (Ldgl;)V m_146850_ + 0 o p_146851_ + a (Lgu;FF)V m_20035_ + 0 o p_20036_ + 1 o p_20037_ + 2 o p_20038_ + a (Lbfj;D)Z m_19950_ + 0 o p_19951_ + 1 o p_19952_ + a (Leed;Lgu;)Z m_201940_ + 0 o p_201941_ + 1 o p_201942_ + a (ZLeei;)V m_289603_ + 0 o p_289661_ + 1 o p_289653_ + a (Ldcb;Leei;)V m_7601_ + 0 o p_20006_ + 1 o p_20007_ + a (Lbfj;Lbfj;)Z m_185978_ + static + 0 o p_185979_ + 1 o p_185980_ + a (Lcmm;Lgu;)Z m_142265_ + 0 o p_146843_ + 1 o p_146844_ + a (Leb$a;Leei;)V m_7618_ + 0 o p_20033_ + 1 o p_20034_ + a (FLeei;)V m_19920_ + 0 o p_19921_ + 1 o p_19922_ + a (DDDFFIZ)V m_6453_ + 0 o p_19896_ + 1 o p_19897_ + 2 o p_19898_ + 3 o p_19899_ + 4 o p_19900_ + 5 o p_19901_ + 6 o p_19902_ + a (Lha$a;D)D m_20042_ + 0 o p_20043_ + 1 o p_20044_ + a (Lanl;)Z m_204029_ + 0 o p_204030_ + a (Ldft;)V m_141960_ + 0 o p_146849_ + a (Lsw;)V m_213846_ + 0 o p_216998_ + a (Ljava/lang/String;)Z m_20049_ + 0 o p_20050_ + a (Leei;Leed;Ljava/util/List;)Leei; m_198900_ + static + 0 o p_198901_ + 1 o p_198902_ + 2 o p_198903_ + a (Lbfk;Leei;)V m_185954_ + 0 o p_185955_ + 1 o p_185956_ + a (Lts;)Lts; m_185974_ + 0 o p_185975_ + a (Ldcb;Lgu;)Z m_284013_ + 0 o p_284699_ + 1 o p_284700_ + a (Lbfj;)Z m_185942_ + static + 0 o p_185943_ + a (Leei;Lbgf;)Leei; m_5763_ + 0 o p_20019_ + 1 o p_20020_ + a (Ljava/util/function/BiConsumer;)V m_213651_ + 0 o p_216996_ + a (Lbgf;Leei;)V m_6478_ + 0 o p_19973_ + 1 o p_19974_ + a (Lcui;)F m_6961_ + 0 o p_20003_ + a (Ldgl;Lbfj;)V m_146852_ + 0 o p_146853_ + 1 o p_146854_ + a (Lbfj;ILben;)V m_5993_ + 0 o p_19953_ + 1 o p_19954_ + 2 o p_19955_ + a (DDD)V m_142098_ + 0 o p_146825_ + 1 o p_146826_ + 2 o p_146827_ + a (Lamg;FF)V m_5496_ + 0 o p_19938_ + 1 o p_19939_ + 2 o p_19940_ + a (Lcfu;)Leei; m_204034_ + 0 o p_204035_ + aA ()V m_146873_ + aB ()V m_252836_ + aC ()V m_146874_ + aD ()Lgu; m_216999_ + aE ()Lgu; m_20099_ + aF ()Lgu; m_20097_ + aG ()F m_20098_ + aH ()F m_6041_ + aI ()F m_6059_ + aJ ()Lamg; m_5501_ + aK ()Lamg; m_5509_ + aL ()Lamg; m_5508_ + aM ()V m_20101_ + aN ()V m_280447_ + aO ()V m_142043_ + aP ()Z m_142039_ + aQ ()Z m_20067_ + aR ()Z m_20068_ + aS ()Lbfj$b; m_142319_ + aT ()Z m_213854_ + aU ()Z m_5825_ + aV ()Z m_20069_ + aW ()Z m_20070_ + aX ()Z m_20071_ + aY ()Z m_20072_ + aZ ()Z m_5842_ + a_ (Z)V m_146868_ + 0 o p_146869_ + a_ (Ljava/util/UUID;)V m_20084_ + 0 o p_20085_ + a_ (F)V m_146922_ + 0 o p_146923_ + a_ (I)Lbgs; m_141942_ + 0 o p_146919_ + a_ ()V m_8097_ + aa ()Z m_8077_ + ab ()Lsw; m_7770_ + ac ()V m_19877_ + ad ()Laaz; m_217001_ + ae ()Lbfn; m_6095_ + af ()I m_19879_ + ag ()Ljava/util/Set; m_19880_ + ah ()V m_6074_ + ai ()V m_146870_ + aj ()Lacb; m_20088_ + ak ()V m_142036_ + al ()Lbgl; m_20089_ + am ()Leed; m_142242_ + an ()V m_20090_ + ao ()V m_6075_ + ap ()V m_146871_ + aq ()V m_20091_ + ar ()I m_287157_ + as ()Z m_20092_ + at ()I m_6078_ + au ()V m_20093_ + av ()I m_20094_ + aw ()V m_20095_ + ax ()V m_6088_ + ay ()Z m_20096_ + az ()V m_146872_ + b (Lben;)Z m_6673_ + 0 o p_20122_ + b (ZLeei;)V m_289600_ + 0 o p_289694_ + 1 o p_289680_ + b (Lbfz;)Leei; m_7688_ + 0 o p_20123_ + b (Ljava/lang/String;)Z m_20137_ + 0 o p_20138_ + b (Lsw;)V m_6593_ + 0 o p_20053_ + b (Leei;)Z m_196406_ + 0 o p_196625_ + b (Lanl;)D m_204036_ + 0 o p_204037_ + b (Lbfj$c;)V m_142467_ + 0 o p_146876_ + b (Lbfj;)V m_185976_ + static + 0 o p_185977_ + b (B)V m_7822_ + 0 o p_19882_ + b (Laif;)Lbfj; m_5489_ + 0 o p_20118_ + b (Ldcb;)V m_280568_ + 0 o p_283110_ + b (IZ)V m_20115_ + 0 o p_20116_ + 1 o p_20117_ + b (Leed;)Z m_20131_ + 0 o p_20132_ + b (Lcfz;)Lbvh; m_19983_ + 0 o p_19984_ + b (DD)V m_19884_ + 0 o p_19885_ + 1 o p_19886_ + b (Lgu;Ldcb;)V m_7355_ + 0 o p_20135_ + 1 o p_20136_ + b (DDDFF)V m_7678_ + 0 o p_20108_ + 1 o p_20109_ + 2 o p_20110_ + 3 o p_20111_ + 4 o p_20112_ + b (Lqr;)V m_7380_ + 0 o p_20139_ + b (DDD)V m_6021_ + 0 o p_19887_ + 1 o p_19888_ + 2 o p_19889_ + b (FF)Leei; m_20171_ + 0 o p_20172_ + 1 o p_20173_ + b (D)V m_20103_ + static + 0 o p_20104_ + b (Lbgl;)V m_20124_ + 0 o p_20125_ + bA ()V m_6038_ + bB ()Z m_269011_ + bC ()F m_6143_ + bD ()Leei; m_20154_ + bE ()Leeh; m_20155_ + bF ()Leei; m_20156_ + bG ()V m_20157_ + bH ()I m_6045_ + bI ()Ljava/lang/Iterable; m_6167_ + bJ ()Ljava/lang/Iterable; m_6168_ + bK ()Ljava/lang/Iterable; m_20158_ + bL ()Z m_6060_ + bM ()Z m_20159_ + bN ()Z m_20160_ + bO ()Z m_275843_ + bP ()Z m_6144_ + bQ ()Z m_20161_ + bR ()Z m_20162_ + bS ()Z m_20163_ + bT ()Z m_20164_ + bU ()Z m_6047_ + bV ()Z m_20142_ + bW ()Z m_6069_ + bX ()Z m_6067_ + bY ()Z m_20143_ + bZ ()Z m_146886_ + b_ (F)V m_146926_ + 0 o p_146927_ + b_ (Lbyo;)V m_6123_ + 0 o p_20081_ + ba ()V m_5844_ + bb ()Z m_20073_ + bc ()V m_20074_ + bd ()V m_5841_ + be ()Ldcb; m_217002_ + bf ()Ldcb; m_20075_ + bg ()Z m_5843_ + bh ()V m_20076_ + bi ()Z m_20077_ + bj ()F m_213856_ + bk ()V m_146867_ + bl ()V m_5834_ + bm ()Leei; m_146892_ + bn ()Z m_271807_ + bo ()Z m_6087_ + bp ()Z m_6094_ + bq ()Z m_6093_ + br ()Ljava/lang/String; m_20078_ + bs ()Z m_6084_ + bt ()Z m_5830_ + bu ()Z m_5829_ + bv ()V m_6083_ + bw ()D m_6049_ + bx ()D m_6048_ + by ()Z m_20152_ + bz ()V m_20153_ + c (Lsw;)Lsw; m_20140_ + static + 0 o p_20141_ + c (Lbfj;)V m_185981_ + static + 0 o p_185982_ + c (Z)V m_6853_ + 0 o p_20181_ + c (Laig;)V m_6457_ + 0 o p_20119_ + c (Ldcb;)Z m_285776_ + 0 o p_286733_ + c (DDD)V m_246847_ + 0 o p_249341_ + 1 o p_252229_ + 2 o p_252038_ + c (Leei;)Leei; m_20133_ + 0 o p_20134_ + c (FF)Leei; m_20214_ + 0 o p_20215_ + 1 o p_20216_ + c (Lben;)V m_269138_ + 0 o p_270704_ + c (Lbgl;)Z m_217003_ + 0 o p_217004_ + c (Lgu;Ldcb;)V m_280440_ + 0 o p_281828_ + 1 o p_282118_ + c (D)D m_20165_ + 0 o p_20166_ + cA ()V m_252801_ + cB ()Lha; m_6350_ + cC ()Lha; m_6374_ + cD ()Ltb; m_20190_ + cE ()Leed; m_20191_ + cF ()F m_20192_ + cG ()Leei; m_7939_ + cH ()Lcmm; m_20193_ + cI ()Lnet/minecraft/server/MinecraftServer; m_20194_ + cJ ()Z m_6128_ + cK ()Z m_6127_ + cL ()Lbfz; m_6688_ + cM ()Z m_217005_ + cN ()Ljava/util/List; m_20197_ + cO ()Lbfj; m_146895_ + cP ()Ljava/util/stream/Stream; m_20199_ + cQ ()Ljava/util/stream/Stream; m_142429_ + cR ()Ljava/lang/Iterable; m_146897_ + cS ()Z m_146898_ + cT ()Lbfj; m_20201_ + cU ()Z m_6109_ + cV ()Z m_21515_ + cW ()Lbfj; m_20202_ + cX ()Lbfj; m_275832_ + cY ()Lami; m_5720_ + cZ ()I m_6101_ + c_ ()Z m_6090_ + ca ()Z m_142038_ + cb ()Z m_20145_ + cc ()Z m_288188_ + cd ()Lefi; m_5647_ + ce ()I m_6062_ + cf ()I m_20146_ + cg ()I m_146888_ + ch ()F m_146889_ + ci ()Z m_146890_ + cj ()I m_146891_ + ck ()V m_245125_ + cl ()Lsw; m_5677_ + cm ()F m_6080_ + cn ()Z m_6097_ + co ()Z m_20147_ + cp ()V m_6089_ + cq ()Z m_6072_ + cr ()I m_6056_ + cs ()Z m_6051_ + ct ()Ljava/util/UUID; m_20148_ + cu ()Ljava/lang/String; m_20149_ + cv ()Ljava/lang/String; m_6302_ + cw ()Z m_6063_ + cx ()D m_20150_ + static + cy ()Z m_20151_ + cz ()Z m_6052_ + d (Lgu;)Z m_287201_ + 0 o p_287613_ + d (D)D m_20208_ + 0 o p_20209_ + d (Ldcb;)Z m_277063_ + 0 o p_278069_ + d (DDD)V m_6027_ + 0 o p_20105_ + 1 o p_20106_ + 2 o p_20107_ + d (F)Lgu; m_216986_ + 0 o p_216987_ + d (Lbgl;)Z m_20175_ + 0 o p_20176_ + d (Leei;)V m_20219_ + 0 o p_20220_ + d (Lqr;)Z m_20086_ + 0 o p_20087_ + d (Lbfj;)Z m_185983_ + static + 0 o p_185984_ + d (Z)V m_20225_ + 0 o p_20226_ + d (Laig;)V m_6452_ + 0 o p_20174_ + d (Lbyo;)Z m_20177_ + 0 o p_20178_ + dA ()F m_146909_ + dB ()Z m_264410_ + dC ()F m_274421_ + dD ()Z m_213877_ + dE ()Lbfj$c; m_146911_ + dF ()V m_146912_ + dG ()Z m_142391_ + dH ()Z m_142389_ + dI ()Lcmm; m_9236_ + dJ ()Lbeo; m_269291_ + d_ ()V m_6210_ + da ()Lds; m_20203_ + db ()Z m_146899_ + dc ()D m_20204_ + dd ()F m_20205_ + de ()F m_20206_ + df ()F m_278726_ + dg ()Leei; m_20182_ + dh ()Leei; m_213870_ + di ()Lgu; m_20183_ + dj ()Ldcb; m_146900_ + dk ()Lclt; m_146902_ + dl ()Leei; m_20184_ + dm ()I m_146903_ + dn ()D m_20185_ + do ()I m_146904_ + dp ()D m_20186_ + dq ()D m_20187_ + dr ()D m_20188_ + ds ()I m_146907_ + dt ()D m_20189_ + du ()V m_6043_ + dv ()Lcfz; m_142340_ + dw ()Z m_142079_ + dx ()Z m_203117_ + dy ()F m_146908_ + dz ()F m_213816_ + e (Lbgl;)Leed; m_20217_ + 0 o p_20218_ + e (D)D m_20227_ + 0 o p_20228_ + e (F)V m_5625_ + 0 o p_20213_ + e (Lqr;)Z m_20223_ + 0 o p_20224_ + e (I)V m_20234_ + 0 o p_20235_ + e (Z)V m_20242_ + 0 o p_20243_ + e (Lbfj;)F m_20270_ + 0 o p_20271_ + e (Lgu;)Lgu; m_276951_ + 0 o p_278049_ + e (Leei;)D m_20238_ + 0 o p_20239_ + e (DDD)V m_6034_ + 0 o p_20210_ + 1 o p_20211_ + 2 o p_20212_ + e (Ldcb;)Z m_20126_ + static + 0 o p_20127_ + e_ ()Z m_6999_ + equals (Ljava/lang/Object;)Z equals + 0 o p_20245_ + f (Lqr;)Lqr; m_20240_ + 0 o p_20241_ + f (D)D m_20246_ + 0 o p_20247_ + f (F)Leei; m_20252_ + 0 o p_20253_ + f (Leei;)V m_20256_ + 0 o p_20257_ + f (Lgu;)V m_20221_ + 0 o p_20222_ + f (I)V m_287199_ + 0 o p_287760_ + f (Z)V m_20260_ + 0 o p_20261_ + f (Lbgl;)F m_20236_ + 0 o p_20237_ + f (Lbfj;)D m_20280_ + 0 o p_20281_ + f (DDD)V m_217006_ + 0 o p_217007_ + 1 o p_217008_ + 2 o p_217009_ + g (Leei;)V m_246865_ + 0 o p_250128_ + g (DDD)Z m_20229_ + 0 o p_20230_ + 1 o p_20231_ + 2 o p_20232_ + g (D)D m_20262_ + 0 o p_20263_ + g (F)F m_5686_ + 0 o p_20268_ + g (I)V m_20254_ + 0 o p_20255_ + g (Z)V m_6858_ + 0 o p_20274_ + g (Lqr;)V m_20258_ + 0 o p_20259_ + g (Lbfj;)V m_7334_ + 0 o p_20293_ + h (Leei;)Leei; m_20272_ + 0 o p_20273_ + h (F)F m_5675_ + 0 o p_20279_ + h (Lbfj;)Z m_7337_ + 0 o p_20303_ + h (DDD)V m_20248_ + 0 o p_20249_ + 1 o p_20250_ + 2 o p_20251_ + h (I)V m_7311_ + 0 o p_20269_ + h (Z)V m_20282_ + 0 o p_20283_ + hashCode ()I hashCode + i (DDD)D m_20275_ + 0 o p_20276_ + 1 o p_20277_ + 2 o p_20278_ + i (Z)V m_146915_ + 0 o p_146916_ + i (Lbfj;)V m_7332_ + 0 o p_20312_ + i (I)Z m_20291_ + 0 o p_20292_ + i (F)Leei; m_20289_ + 0 o p_20290_ + j (Lbfj;)V m_7340_ + 0 o p_20320_ + j (I)V m_20301_ + 0 o p_20302_ + j (Z)V m_6842_ + 0 o p_20304_ + j (F)Leei; m_20299_ + 0 o p_20300_ + j (DDD)V m_5997_ + 0 o p_20286_ + 1 o p_20287_ + 2 o p_20288_ + j_ ()Leed; m_6921_ + k (F)Leei; m_7371_ + 0 o p_20309_ + k (I)V m_146917_ + 0 o p_146918_ + k (Z)V m_6845_ + 0 o p_20313_ + k (DDD)Z m_6000_ + 0 o p_20296_ + 1 o p_20297_ + 2 o p_20298_ + k (Lbfj;)Z m_20329_ + 0 o p_20330_ + k ()V m_277116_ + k_ ()I m_19876_ + l (F)Leei; m_20318_ + 0 o p_20319_ + l (DDD)V m_6001_ + 0 o p_20306_ + 1 o p_20307_ + 2 o p_20308_ + l (Z)V m_20321_ + 0 o p_20322_ + l (I)Z m_20310_ + 0 o p_20311_ + l (Lbfj;)Z m_7341_ + 0 o p_20339_ + l ()V m_8119_ + l_ ()Ldxj; m_7752_ + m (Lbfj;)V m_20348_ + 0 o p_20349_ + m (DDD)V m_20314_ + 0 o p_20315_ + 1 o p_20316_ + 2 o p_20317_ + m (Z)V m_20331_ + 0 o p_20332_ + m (F)V m_6053_ + 0 o p_265161_ + n ()V m_183634_ + n (Lbfj;)V m_20351_ + 0 o p_20352_ + n (Z)V m_20340_ + 0 o p_20341_ + n (DDD)V m_20324_ + 0 o p_20325_ + 1 o p_20326_ + 2 o p_20327_ + n (F)V m_5616_ + 0 o p_20328_ + o ()Z m_20285_ + o (Z)V m_146924_ + 0 o p_146925_ + o (Lbfj;)Z m_7310_ + 0 o p_20354_ + o (DDD)V m_20334_ + 0 o p_20335_ + 1 o p_20336_ + 2 o p_20337_ + o (F)V m_5618_ + 0 o p_20338_ + p (Lbfj;)Z m_7307_ + 0 o p_20355_ + p ()Z m_20305_ + p (DDD)V m_20343_ + 0 o p_20344_ + 1 o p_20345_ + 2 o p_20346_ + p (F)Leei; m_245894_ + 0 o p_249286_ + q ()V m_20323_ + q (F)Leei; m_7398_ + 0 o p_20347_ + q (Lbfj;)Z m_7306_ + 0 o p_20356_ + q_ ()Z m_7028_ + r (F)V m_274367_ + 0 o p_275672_ + r (Lbfj;)Z m_7313_ + 0 o p_20357_ + s (Lbfj;)V m_20359_ + 0 o p_20360_ + s ()V m_276804_ + t ()Ljava/util/stream/Stream; m_146920_ + t (Lbfj;)V m_20361_ + 0 o p_20362_ + toString ()Ljava/lang/String; toString + u (Lbfj;)Z m_20363_ + 0 o p_20364_ + v (Lbfj;)Z m_20365_ + 0 o p_20366_ + w (Lbfj;)Z m_20367_ + 0 o p_20368_ + x ()Ljava/util/Iterator; m_185985_ + y ()Ljava/lang/String; m_146929_ + z ()Ljava/lang/String; m_146930_ +bfj$1 net/minecraft/world/entity/Entity$1 + a f_20369_ + b f_20370_ + ()V + static +bfj$a net/minecraft/world/entity/Entity$MoveFunction + accept (Lbfj;DDD)V m_20372_ + 0 o p_20373_ + 1 o p_20374_ + 2 o p_20375_ + 3 o p_20376_ +bfj$b net/minecraft/world/entity/Entity$MovementEmission + a NONE + b SOUNDS + c EVENTS + d ALL + e f_146935_ + f f_146936_ + g $VALUES + ()V + static + (Ljava/lang/String;IZZ)V + 0 o p_146940_ + 1 o p_146941_ + 2 o p_146942_ + 3 o p_146943_ + a ()Z m_146944_ + b ()Z m_146945_ + c ()Z m_146946_ + d ()[Lbfj$b; m_146947_ + static + valueOf (Ljava/lang/String;)Lbfj$b; valueOf + static + 0 o p_146949_ + values ()[Lbfj$b; values + static +bfj$c net/minecraft/world/entity/Entity$RemovalReason + a KILLED + b DISCARDED + c UNLOADED_TO_CHUNK + d UNLOADED_WITH_PLAYER + e CHANGED_DIMENSION + f f_146956_ + g f_146957_ + h $VALUES + ()V + static + (Ljava/lang/String;IZZ)V + 0 o p_146961_ + 1 o p_146962_ + 2 o p_146963_ + 3 o p_146964_ + a ()Z m_146965_ + b ()Z m_146966_ + c ()[Lbfj$c; m_146967_ + static + valueOf (Ljava/lang/String;)Lbfj$c; valueOf + static + 0 o p_146969_ + values ()[Lbfj$c; values + static +bfk net/minecraft/world/entity/EntityDimensions + a f_20377_ + b f_20378_ + c f_20379_ + (FFZ)V + 0 o p_20381_ + 1 o p_20382_ + 2 o p_20383_ + a (FF)Lbfk; m_20390_ + 0 o p_20391_ + 1 o p_20392_ + a (F)Lbfk; m_20388_ + 0 o p_20389_ + a (Leei;)Leed; m_20393_ + 0 o p_20394_ + a (DDD)Leed; m_20384_ + 0 o p_20385_ + 1 o p_20386_ + 2 o p_20387_ + b (FF)Lbfk; m_20395_ + static + 0 o p_20396_ + 1 o p_20397_ + c (FF)Lbfk; m_20398_ + static + 0 o p_20399_ + 1 o p_20400_ + toString ()Ljava/lang/String; toString +bfl net/minecraft/world/entity/EntityEvent + A f_146972_ + B f_146973_ + C f_146974_ + D f_146975_ + E f_146976_ + F f_146978_ + G f_146979_ + H f_146982_ + I f_146983_ + J f_146984_ + K f_146985_ + L f_146986_ + M f_146987_ + N f_146989_ + O f_146990_ + P f_146991_ + Q f_146992_ + R f_146993_ + S f_146994_ + T f_146995_ + U f_146996_ + V f_146998_ + W f_146999_ + X f_147000_ + Y f_147001_ + Z f_147003_ + a f_146997_ + aa f_147004_ + ab f_147005_ + ac f_217010_ + ad f_217011_ + ae f_271335_ + b f_147007_ + c f_147008_ + d f_147009_ + e f_147010_ + f f_147011_ + g f_147012_ + h f_147013_ + i f_147014_ + j f_147015_ + k f_147016_ + l f_147017_ + m f_147018_ + n f_147019_ + o f_147020_ + p f_147021_ + q f_147022_ + r f_147023_ + s f_147024_ + t f_147025_ + u f_147026_ + v f_147027_ + w f_147028_ + x f_147029_ + y f_147030_ + z f_146971_ + ()V +bfm net/minecraft/world/entity/EntitySelector + a f_20402_ + b f_20403_ + c f_20404_ + d f_20405_ + e f_20406_ + f f_20408_ + g f_185987_ + ()V + static + ()V + a (DDDDLbfj;)Z m_20415_ + static + 0 o p_20416_ + 1 o p_20417_ + 2 o p_20418_ + 3 o p_20419_ + 4 o p_20420_ + a (DDDD)Ljava/util/function/Predicate; m_20410_ + static + 0 o p_20411_ + 1 o p_20412_ + 2 o p_20413_ + 3 o p_20414_ + a (Lbfj;Lbfj;)Z m_20423_ + static + 0 o p_20424_ + 1 o p_20425_ + a (Lbfj;)Ljava/util/function/Predicate; m_20421_ + static + 0 o p_20422_ + a (Lbfj;Lefi;Lefi$a;Lbfj;)Z m_20426_ + static + 0 o p_20427_ + 1 o p_20428_ + 2 o p_20429_ + 3 o p_20430_ + b (Lbfj;)Ljava/util/function/Predicate; m_20431_ + static + 0 o p_20432_ + c (Lbfj;)Z m_20433_ + static + 0 o p_20434_ + d (Lbfj;)Z m_20435_ + static + 0 o p_20436_ + e (Lbfj;)Z m_20437_ + static + 0 o p_20438_ + f (Lbfj;)Z m_20439_ + static + 0 o p_20440_ + g (Lbfj;)Z m_20441_ + static + 0 o p_20442_ +bfm$a net/minecraft/world/entity/EntitySelector$MobCanWearArmorEntitySelector + a f_20443_ + (Lcfz;)V + 0 o p_20445_ + a (Lbfj;)Z test + 0 o p_20447_ + test (Ljava/lang/Object;)Z test + 0 o p_20449_ +bfn net/minecraft/world/entity/EntityType + A f_20563_ + B f_20564_ + C f_20565_ + D f_20484_ + E f_20566_ + F f_20567_ + G f_20568_ + H f_20569_ + I f_20485_ + J f_20570_ + K f_20571_ + L f_20450_ + M f_20451_ + N f_20452_ + O f_217012_ + P f_20472_ + Q f_20453_ + R f_20454_ + S f_147033_ + T f_147034_ + U f_147035_ + V f_20455_ + W f_20456_ + X f_20473_ + Y f_20457_ + Z f_20458_ + a f_147037_ + aA f_20486_ + aB f_20516_ + aC f_20517_ + aD f_20518_ + aE f_20519_ + aF f_20520_ + aG f_20521_ + aH f_20522_ + aI f_20523_ + aJ f_20524_ + aK f_20525_ + aL f_20526_ + aM f_20527_ + aN f_271264_ + aO f_20528_ + aP f_20477_ + aQ f_20474_ + aR f_20478_ + aS f_20479_ + aT f_20480_ + aU f_20481_ + aV f_20482_ + aW f_217013_ + aX f_268607_ + aY f_20515_ + aZ f_20475_ + aa f_20459_ + ab f_271243_ + ac f_20460_ + ad f_20461_ + ae f_268643_ + af f_20462_ + ag f_20463_ + ah f_20464_ + ai f_20465_ + aj f_20466_ + ak f_20467_ + al f_20468_ + am f_147036_ + an f_20469_ + ao f_20504_ + ap f_20503_ + aq f_20505_ + ar f_20506_ + as f_20507_ + at f_20508_ + au f_20509_ + av f_20510_ + aw f_20511_ + ax f_20512_ + ay f_20513_ + az f_20514_ + b f_217014_ + bA f_20535_ + bB f_20536_ + bC f_20537_ + bD f_20538_ + bE f_20539_ + bF f_20540_ + bG f_20541_ + bH f_20542_ + bI f_20543_ + bJ f_20544_ + bK f_20545_ + bL f_20546_ + bM f_20547_ + bN f_244139_ + ba f_20488_ + bb f_20487_ + bc f_20489_ + bd f_20490_ + be f_20491_ + bf f_20492_ + bg f_20493_ + bh f_20494_ + bi f_217015_ + bj f_20495_ + bk f_20496_ + bl f_20497_ + bm f_20498_ + bn f_20499_ + bo f_20500_ + bp f_20501_ + bq f_20502_ + br f_20530_ + bs f_20531_ + bt f_20532_ + bu f_20533_ + bw f_20534_ + bx f_204038_ + by f_147038_ + bz f_268473_ + c f_20476_ + d f_20529_ + e f_20548_ + f f_147039_ + g f_20549_ + h f_20550_ + i f_20551_ + j f_268573_ + k f_20552_ + l f_243976_ + m f_20553_ + n f_20554_ + o f_217016_ + p f_20470_ + q f_20555_ + r f_20556_ + s f_20471_ + t f_20557_ + u f_20558_ + v f_20559_ + w f_20560_ + x f_20561_ + y f_20562_ + z f_20483_ + ()V + static + (Lbfn$b;Lbgc;ZZZZLcom/google/common/collect/ImmutableSet;Lbfk;IILcaw;)V + 0 o p_273268_ + 1 o p_272918_ + 2 o p_273417_ + 3 o p_273389_ + 4 o p_273556_ + 5 o p_272654_ + 6 o p_273631_ + 7 o p_272946_ + 8 o p_272895_ + 9 o p_273451_ + 10 o p_273518_ + a (Ljava/util/List;Lcmm;)Ljava/util/stream/Stream; m_147045_ + static + 0 o p_147046_ + 1 o p_147047_ + a (Ljava/lang/String;)Ljava/util/Optional; m_20632_ + static + 0 o p_20633_ + a (Ljava/util/function/Consumer;Laif;Lcfz;Lbyo;)Ljava/util/function/Consumer; m_264081_ + static + 0 o p_265154_ + 1 o p_265733_ + 2 o p_265598_ + 3 o p_265666_ + a (Ljava/lang/Object;)Ljava/lang/Object; m_141992_ + 0 o p_147044_ + a (Laif;Lbyo;Lqr;Lbfj;)V m_262353_ + static + 0 o p_262555_ + 1 o p_262556_ + 2 o p_262557_ + 3 o p_262558_ + a (Ljava/lang/String;Lbfn$a;)Lbfn; m_20634_ + static + 0 o p_20635_ + 1 o p_20636_ + a (Ldcb;)Z m_20630_ + 0 o p_20631_ + a (Lanl;)Z m_204039_ + 0 o p_204040_ + a (Lqr;Lcmm;)Ljava/util/Optional; m_20642_ + static + 0 o p_20643_ + 1 o p_20644_ + a (Lcmm;Lbfn;)Lbfj; m_185996_ + static + 0 o p_185997_ + 1 o p_185998_ + a (Lbfn;)Lacq; m_20613_ + static + 0 o p_20614_ + a (Lqr;Lbfj;)V m_185988_ + static + 0 o p_185989_ + 1 o p_185990_ + a (Ljava/util/function/Consumer;Lcfz;)Ljava/util/function/Consumer; m_263556_ + static + 0 o p_263567_ + 1 o p_263564_ + a (Lqr;Lcmm;Ljava/util/function/Function;)Lbfj; m_20645_ + static + 0 o p_20646_ + 1 o p_20647_ + 2 o p_20648_ + a (Lqr;Lcmm;Ljava/util/function/Function;Lbfj;)Lbfj; m_185991_ + static + 0 o p_185992_ + 1 o p_185993_ + 2 o p_185994_ + 3 o p_185995_ + a (Lcmp;Lgu;ZLeed;)D m_20625_ + static + 0 o p_20626_ + 1 o p_20627_ + 2 o p_20628_ + 3 o p_20629_ + a (Lcmm;Lbyo;Lbfj;Lqr;)V m_20620_ + static + 0 o p_20621_ + 1 o p_20622_ + 2 o p_20623_ + 3 o p_20624_ + a (Laif;Lcfz;Lbyo;)Ljava/util/function/Consumer; m_263562_ + static + 0 o p_263583_ + 1 o p_263568_ + 2 o p_263575_ + a (Laif;Lqr;Ljava/util/function/Consumer;Lgu;Lbgd;ZZ)Lbfj; m_262455_ + 0 o p_262704_ + 1 o p_262603_ + 2 o p_262621_ + 3 o p_262672_ + 4 o p_262644_ + 5 o p_262690_ + 6 o p_262590_ + a (Laif;Lcfz;Lbyo;Lgu;Lbgd;ZZ)Lbfj; m_20592_ + 0 o p_20593_ + 1 o p_20594_ + 2 o p_20595_ + 3 o p_20596_ + 4 o p_20597_ + 5 o p_20598_ + 6 o p_20599_ + a (Lcmm;)Lbfj; m_20615_ + 0 o p_20616_ + a (DDD)Leed; m_20585_ + 0 o p_20586_ + 1 o p_20587_ + 2 o p_20588_ + a ()Ljava/lang/Class; m_142225_ + a (Lqr;)Ljava/util/Optional; m_20637_ + static + 0 o p_20638_ + a (Laif;Lgu;Lbgd;)Lbfj; m_262496_ + 0 o p_262634_ + 1 o p_262707_ + 2 o p_262597_ + a (Lcfz;Lbfj;)V m_262354_ + static + 0 o p_262559_ + 1 o p_262560_ + a (Lbfj;)Lbfj; m_141992_ + 0 o p_147042_ + b (Lqr;Lcmm;)Ljava/util/Optional; m_20669_ + static + 0 o p_20670_ + 1 o p_20671_ + b (Laif;Lqr;Ljava/util/function/Consumer;Lgu;Lbgd;ZZ)Lbfj; m_262451_ + 0 o p_262637_ + 1 o p_262687_ + 2 o p_262629_ + 3 o p_262595_ + 4 o p_262666_ + 5 o p_262685_ + 6 o p_262588_ + b (Lqr;)V m_185999_ + static + 0 o p_186000_ + b (Lbfj;)V m_262355_ + static + 0 o p_262561_ + b (Ljava/util/function/Consumer;Laif;Lcfz;Lbyo;)Ljava/util/function/Consumer; m_263559_ + static + 0 o p_263579_ + 1 o p_263571_ + 2 o p_263582_ + 3 o p_263574_ + b ()Z m_20584_ + c ()Z m_20654_ + c (Lbfj;)V m_263555_ + static + 0 o p_263563_ + d ()Z m_20672_ + e ()Z m_20673_ + f ()Lbgc; m_20674_ + g ()Ljava/lang/String; m_20675_ + h ()Lsw; m_20676_ + i ()Ljava/lang/String; m_147048_ + j ()Lacq; m_20677_ + k ()F m_20678_ + l ()F m_20679_ + m ()Lcaw; m_245183_ + n ()Lbfk; m_20680_ + o ()I m_20681_ + p ()I m_20682_ + q ()Z m_20683_ + r ()Lhe$c; m_204041_ + toString ()Ljava/lang/String; toString +bfn$1 net/minecraft/world/entity/EntityType$1 + a f_147049_ + b f_147050_ + c f_147051_ + (Ljava/util/Spliterator;Lcmm;Ljava/util/List;)V + 0 o p_147053_ + 1 o p_147054_ + 2 o p_147055_ + a (Lcmm;Ljava/util/function/Consumer;Lrk;)V m_147056_ + static + 0 o p_147057_ + 1 o p_147058_ + 2 o p_147059_ + a (Ljava/util/function/Consumer;Lbfj;)Lbfj; m_147060_ + static + 0 o p_147061_ + 1 o p_147062_ + characteristics ()I characteristics + estimateSize ()J estimateSize + tryAdvance (Ljava/util/function/Consumer;)Z tryAdvance + 0 o p_147066_ + trySplit ()Ljava/util/Spliterator; trySplit +bfn$a net/minecraft/world/entity/EntityType$Builder + a f_20685_ + b f_20686_ + c f_20687_ + d f_20688_ + e f_20689_ + f f_20690_ + g f_20691_ + h f_20692_ + i f_20693_ + j f_20694_ + k f_244453_ + (Lbfn$b;Lbgc;)V + 0 o p_20696_ + 1 o p_20697_ + a (I)Lbfn$a; m_20702_ + 0 o p_20703_ + a ()Lbfn$a; m_20698_ + a (Lbfn$b;Lbgc;)Lbfn$a; m_20704_ + static + 0 o p_20705_ + 1 o p_20706_ + a (Lbfn;Lcmm;)Lbfj; m_20707_ + static + 0 o p_20708_ + 1 o p_20709_ + a (Lbgc;)Lbfn$a; m_20710_ + static + 0 o p_20711_ + a (Ljava/lang/String;)Lbfn; m_20712_ + 0 o p_20713_ + a (FF)Lbfn$a; m_20699_ + 0 o p_20700_ + 1 o p_20701_ + a ([Lcau;)Lbfn$a; m_246346_ + 0 o p_251646_ + a ([Lcpn;)Lbfn$a; m_20714_ + 0 o p_20715_ + b (I)Lbfn$a; m_20717_ + 0 o p_20718_ + b ()Lbfn$a; m_20716_ + c ()Lbfn$a; m_20719_ + d ()Lbfn$a; m_20720_ +bfn$b net/minecraft/world/entity/EntityType$EntityFactory + create (Lbfn;Lcmm;)Lbfj; m_20721_ + 0 o p_20722_ + 1 o p_20723_ +bfo net/minecraft/world/entity/EquipmentSlot + a MAINHAND + b OFFHAND + c FEET + d LEGS + e CHEST + f HEAD + g f_20730_ + h f_20731_ + i f_20732_ + j f_20733_ + k $VALUES + ()V + static + (Ljava/lang/String;ILbfo$a;IILjava/lang/String;)V + 0 o p_20737_ + 1 o p_20738_ + 2 o p_20739_ + 3 o p_20740_ + 4 o p_20741_ + 5 o p_20742_ + a (Lbfo$a;I)Lbfo; m_20744_ + static + 0 o p_20745_ + 1 o p_20746_ + a ()Lbfo$a; m_20743_ + a (I)I m_147068_ + 0 o p_147069_ + a (Ljava/lang/String;)Lbfo; m_20747_ + static + 0 o p_20748_ + b ()I m_20749_ + c ()I m_20750_ + d ()Ljava/lang/String; m_20751_ + e ()Z m_254934_ + f ()[Lbfo; m_147070_ + static + valueOf (Ljava/lang/String;)Lbfo; valueOf + static + 0 o p_20753_ + values ()[Lbfo; values + static +bfo$a net/minecraft/world/entity/EquipmentSlot$Type + a HAND + b ARMOR + c $VALUES + ()V + static + (Ljava/lang/String;I)V + 0 o p_20760_ + 1 o p_20761_ + a ()[Lbfo$a; m_147071_ + static + valueOf (Ljava/lang/String;)Lbfo$a; valueOf + static + 0 o p_20763_ + values ()[Lbfo$a; values + static +bfp net/minecraft/world/entity/ExperienceOrb + b f_147073_ + c f_147074_ + d f_147075_ + e f_147076_ + f f_147077_ + g f_20767_ + h f_20769_ + i f_20770_ + j f_147072_ + k f_20771_ + (Lcmm;DDDI)V + 0 o p_20776_ + 1 o p_20777_ + 2 o p_20778_ + 3 o p_20779_ + 4 o p_20780_ + (Lbfn;Lcmm;)V + 0 o p_20773_ + 1 o p_20774_ + S ()Luo; m_5654_ + a (IILbfp;)Z m_147078_ + static + 0 o p_147079_ + 1 o p_147080_ + 2 o p_147081_ + a (Lqr;)V m_7378_ + 0 o p_20788_ + a (Lbfp;II)Z m_147088_ + static + 0 o p_147089_ + 1 o p_147090_ + 2 o p_147091_ + a (Lben;F)Z m_6469_ + 0 o p_20785_ + 1 o p_20786_ + a (Lbfp;)Z m_147086_ + 0 o p_147087_ + a (Lbyo;I)I m_147092_ + 0 o p_147093_ + 1 o p_147094_ + a (Laif;Leei;I)V m_147082_ + static + 0 o p_147083_ + 1 o p_147084_ + 2 o p_147085_ + aE ()Lgu; m_20099_ + aS ()Lbfj$b; m_142319_ + a_ ()V m_8097_ + b (Lqr;)V m_7380_ + 0 o p_20796_ + b (Laif;Leei;I)Z m_147096_ + static + 0 o p_147097_ + 1 o p_147098_ + 2 o p_147099_ + b (Lbfp;)V m_147100_ + 0 o p_147101_ + b (I)I m_20782_ + static + 0 o p_20783_ + b_ (Lbyo;)V m_6123_ + 0 o p_20792_ + bd ()V m_5841_ + c (I)I m_20793_ + 0 o p_20794_ + cY ()Lami; m_5720_ + cn ()Z m_6097_ + d (I)I m_20798_ + 0 o p_20799_ + j ()I m_20801_ + k ()I m_20802_ + l ()V m_8119_ + o ()V m_147103_ + p ()V m_20803_ +bfq net/minecraft/world/entity/FlyingMob + (Lbfn;Lcmm;)V + 0 o p_20806_ + 1 o p_20807_ + a (DZLdcb;Lgu;)V m_7840_ + 0 o p_20809_ + 1 o p_20810_ + 2 o p_20811_ + 3 o p_20812_ + h (Leei;)V m_7023_ + 0 o p_20818_ + i_ ()Z m_6147_ +bfr net/minecraft/world/entity/GlowSquid + bX f_147108_ + ()V + static + (Lbfn;Lcmm;)V + 0 o p_147111_ + 1 o p_147112_ + a (Lben;F)Z m_6469_ + 0 o p_147114_ + 1 o p_147115_ + a (Lbfn;Lcnb;Lbgd;Lgu;Lapf;)Z m_217017_ + static + 0 o p_217018_ + 1 o p_217019_ + 2 o p_217020_ + 3 o p_217021_ + 4 o p_217022_ + a (Lqr;)V m_7378_ + 0 o p_147117_ + a_ ()V m_8097_ + b (Lqr;)V m_7380_ + 0 o p_147122_ + b_ ()V m_8107_ + c (I)V m_147119_ + 0 o p_147120_ + d (Lben;)Lamg; m_7975_ + 0 o p_147124_ + g_ ()Lamg; m_5592_ + q ()Lit; m_142033_ + r ()Lamg; m_142555_ + s ()Lamg; m_7515_ + w ()I m_147128_ +bfs net/minecraft/world/entity/HasCustomInventoryScreen + b (Lbyo;)V m_213583_ + 0 o p_217023_ +bft net/minecraft/world/entity/HumanoidArm + a LEFT + b RIGHT + c f_217024_ + d f_20821_ + e $VALUES + ()V + static + (Ljava/lang/String;IILjava/lang/String;)V + 0 o p_217026_ + 1 o p_217027_ + 2 o p_217028_ + 3 o p_217029_ + a ()I m_35965_ + b ()Ljava/lang/String; m_35968_ + d ()Lbft; m_20828_ + e ()[Lbft; m_147131_ + static + valueOf (Ljava/lang/String;)Lbft; valueOf + static + 0 o p_20832_ + values ()[Lbft; values + static +bfu net/minecraft/world/entity/Interaction + b f_271310_ + c f_271210_ + d f_271237_ + e f_271389_ + f f_271518_ + g f_271085_ + h f_271403_ + i f_271476_ + j f_271508_ + k f_271404_ + l f_271193_ + ()V + static + (Lbfn;Lcmm;)V + 0 o p_273319_ + 1 o p_272713_ + M_ ()Lbfz; m_271686_ + a (Lbgl;)Lbfk; m_6972_ + 0 o p_273111_ + a (Lqr;)V m_7378_ + 0 o p_272702_ + a (Z)V m_271717_ + 0 o p_273657_ + a (Laby;)V m_7350_ + 0 o p_272722_ + a (Lcom/mojang/datafixers/util/Pair;)V m_271752_ + 0 o p_273686_ + a (F)V m_272058_ + 0 o p_273385_ + a (Lbyo;Lbdw;)Lbdx; m_6096_ + 0 o p_273507_ + 1 o p_273048_ + a (Lqr;Lrk;)V m_271718_ + static + 0 o p_273597_ + 1 o p_272925_ + a_ ()V m_8097_ + am ()Leed; m_142242_ + b (Lqr;)V m_7380_ + 0 o p_273772_ + b (Lcom/mojang/datafixers/util/Pair;)V m_271854_ + 0 o p_273699_ + b (Lqr;Lrk;)V m_271873_ + static + 0 o p_273637_ + 1 o p_272806_ + bn ()Z m_271807_ + bo ()Z m_6087_ + c_ ()Z m_6090_ + j ()Lbfz; m_5448_ + k ()F m_272023_ + l ()V m_8119_ + l_ ()Ldxj; m_7752_ + o ()F m_271858_ + p ()Z m_271819_ + q ()Lbfk; m_271772_ + r (Lbfj;)Z m_7313_ + 0 o p_273553_ + s (F)V m_271774_ + 0 o p_273733_ +bfu$a net/minecraft/world/entity/Interaction$PlayerAction + a f_271433_ + b f_271379_ + c f_271492_ + ()V + static + (Ljava/util/UUID;J)V + 0 o f_271379_ + 1 o f_271492_ + a (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; m_272090_ + static + 0 o p_273237_ + a ()Ljava/util/UUID; f_271379_ + b ()J f_271492_ + equals (Ljava/lang/Object;)Z equals + 0 o p_272891_ + hashCode ()I hashCode + toString ()Ljava/lang/String; toString +bfv net/minecraft/world/entity/ItemBasedSteering + a f_147132_ + b f_147133_ + c f_20837_ + d f_20838_ + e f_20839_ + f f_20834_ + g f_20835_ + (Lacb;Laby;Laby;)V + 0 o p_20841_ + 1 o p_20842_ + 2 o p_20843_ + a ()V m_20844_ + a (Lqr;)V m_20847_ + 0 o p_20848_ + a (Z)V m_20849_ + 0 o p_20850_ + a (Lapf;)Z m_217032_ + 0 o p_217033_ + b (Lqr;)V m_20852_ + 0 o p_20853_ + b ()V m_274606_ + c ()F m_274439_ + d ()Z m_20851_ + e ()I m_274397_ +bfw net/minecraft/world/entity/ItemSteerable + a ()Z m_6746_ +bfx net/minecraft/world/entity/LerpingModel + a ()Ljava/util/Map; m_142115_ +bfy net/minecraft/world/entity/LightningBolt + b f_20859_ + c f_147136_ + d f_147137_ + e f_147138_ + f f_20860_ + g f_20861_ + h f_20862_ + i f_20863_ + j f_147134_ + k f_147135_ + (Lbfn;Lcmm;)V + 0 o p_20865_ + 1 o p_20866_ + a (D)Z m_6783_ + 0 o p_20869_ + a (Z)V m_20874_ + 0 o p_20875_ + a (Lqr;)V m_7378_ + 0 o p_20873_ + a (Lbfj;)Z m_147139_ + 0 o p_147140_ + a (Lcmm;Lgu;Ldcb;)V m_147141_ + static + 0 o p_147142_ + 1 o p_147143_ + 2 o p_147144_ + a (Lcmm;Lgu;Lgu$a;I)V m_147145_ + static + 0 o p_147146_ + 1 o p_147147_ + 2 o p_147148_ + 3 o p_147149_ + a_ ()V m_8097_ + b (I)V m_20870_ + 0 o p_20871_ + b (Lqr;)V m_7380_ + 0 o p_20877_ + b (Laig;)V m_20879_ + 0 o p_20880_ + b (Lcmm;Lgu;)V m_147150_ + static + 0 o p_147151_ + 1 o p_147152_ + c (Lcmm;Lgu;)Ljava/util/Optional; m_147153_ + static + 0 o p_147154_ + 1 o p_147155_ + cY ()Lami; m_5720_ + e (Laig;)Z m_147156_ + 0 o p_147157_ + j ()Laig; m_147158_ + k ()I m_147159_ + l ()V m_8119_ + o ()Ljava/util/stream/Stream; m_147160_ + p ()V m_147161_ + q ()Lgu; m_147162_ +bfz net/minecraft/world/entity/LivingEntity + aD f_147164_ + aE f_20910_ + aF f_147165_ + aG f_20911_ + aH f_20912_ + aI f_20913_ + aJ f_20914_ + aK f_20915_ + aL f_20916_ + aM f_20917_ + aN f_20919_ + aO f_20920_ + aP f_20921_ + aQ f_20922_ + aR f_267362_ + aS f_20926_ + aT f_20927_ + aU f_20928_ + aV f_20883_ + aW f_20884_ + aX f_20885_ + aY f_20886_ + aZ f_20888_ + b f_201943_ + bA f_20939_ + bB f_20960_ + bC f_147178_ + bD f_147179_ + bE f_147180_ + bF f_147181_ + bG f_286963_ + bH f_147182_ + bI f_20961_ + bJ f_20962_ + bK f_20963_ + bL f_20940_ + bM f_20941_ + bN f_20942_ + bO f_271312_ + bP f_20943_ + bQ f_20944_ + bR f_20945_ + bS f_20946_ + bT f_20947_ + bU f_147183_ + bV f_20948_ + bW f_20949_ + bX f_20950_ + bY f_20951_ + bZ f_20952_ + ba f_20889_ + bb f_20890_ + bc f_20891_ + bd f_20892_ + be f_20893_ + bf f_20894_ + bg f_20895_ + bh f_20896_ + bi f_20897_ + bj f_20898_ + bk f_20899_ + bl f_20900_ + bm f_20901_ + bn f_20902_ + bo f_20903_ + bp f_20904_ + bq f_20905_ + br f_20906_ + bs f_20907_ + bt f_20908_ + bu f_20933_ + bv f_20934_ + bw f_20935_ + bx f_20936_ + by f_20937_ + bz f_20938_ + c f_20929_ + ca f_20953_ + cb f_20954_ + cc f_20955_ + cd f_20956_ + ce f_20957_ + cf f_20958_ + cg f_20930_ + ch f_20931_ + ci f_20932_ + cj f_217034_ + d f_20959_ + e f_147184_ + h f_147166_ + i f_147167_ + j f_147168_ + k f_147169_ + l f_147170_ + m f_147171_ + n f_147172_ + o f_147173_ + p f_147174_ + q f_147175_ + r f_147176_ + s f_147177_ + t f_147163_ + u f_20909_ + ()V + static + (Lbfn;Lcmm;)V + 0 o p_20966_ + 1 o p_20967_ + A (Lbfj;)V m_7324_ + 0 o p_20971_ + A ()Ljava/util/Map; m_21319_ + B (Lbfj;)Z m_142582_ + 0 o p_147185_ + C ()V m_21323_ + D ()V m_21329_ + E ()Z m_21332_ + F ()V m_8034_ + F_ ()V m_8098_ + G ()V m_21333_ + I ()Z m_21334_ + M_ ()Lbfz; m_271686_ + Q_ ()V m_8108_ + Y ()V m_8127_ + Z_ ()V m_8095_ + a (Lcfz;I)V m_21060_ + 0 o p_21061_ + 1 o p_21062_ + a (Lcfz;Lcmm;Lbfz;)V m_21063_ + 0 o p_21064_ + 1 o p_21065_ + 2 o p_21066_ + a (Lbyo;Leei;)V m_274498_ + 0 o p_278262_ + 1 o p_275242_ + a (Lben;F)Z m_6469_ + 0 o p_21016_ + 1 o p_21017_ + a (Lcfz;Lcfz;)Z m_246525_ + 0 o p_252265_ + 1 o p_251043_ + a (Lbgl;Lbfk;)F m_6380_ + 0 o p_21049_ + 1 o p_21050_ + a (Lcfz;)V m_142106_ + 0 o p_147201_ + a (Laby;)V m_7350_ + 0 o p_21104_ + a (Lbfo;Lcfz;)V m_8061_ + 0 o p_21036_ + 1 o p_21037_ + a (Lbvh;)V m_21053_ + 0 o p_21054_ + a (Lbfj$c;)V m_142687_ + 0 o p_276115_ + a (FI)V m_6541_ + 0 o p_21005_ + 1 o p_21006_ + a (DZLdcb;Lgu;)V m_7840_ + 0 o p_20990_ + 1 o p_20991_ + 2 o p_20992_ + 3 o p_20993_ + a (Lbfj;I)V m_7938_ + 0 o p_21030_ + 1 o p_21031_ + a (Ldxe;)Z m_203441_ + 0 o p_204042_ + a (Lqr;)V m_7378_ + 0 o p_21096_ + a (Lcfu;Lcfz;)Z m_147198_ + static + 0 o p_147199_ + 1 o p_147200_ + a (Ljava/util/List;Lbfo;Lcfz;)V m_147202_ + 0 o p_147203_ + 1 o p_147204_ + 2 o p_147205_ + a (Lbfz;Lbfo;)Lbgs; m_147195_ + static + 0 o p_147196_ + 1 o p_147197_ + a (Lbdw;Z)V m_21011_ + 0 o p_21012_ + 1 o p_21013_ + a (Lbdw;Lcfz;)V m_21008_ + 0 o p_21009_ + 1 o p_21010_ + a (Lbfa;)V m_7285_ + 0 o p_21126_ + a (Lben;IZ)V m_7472_ + 0 o p_21018_ + 1 o p_21019_ + 2 o p_21020_ + a (Leb$a;Leei;)V m_7618_ + 0 o p_21078_ + 1 o p_21079_ + a (DDDFFIZ)V m_6453_ + 0 o p_20977_ + 1 o p_20978_ + 2 o p_20979_ + 3 o p_20980_ + 4 o p_20981_ + 5 o p_20982_ + 6 o p_20983_ + a (Lbfa;Lbfj;)V m_142540_ + 0 o p_147190_ + 1 o p_147191_ + a (Leed;Leed;)V m_21071_ + 0 o p_21072_ + 1 o p_21073_ + a (FFLben;)Z m_142535_ + 0 o p_147187_ + 1 o p_147188_ + 2 o p_147189_ + a (Lgu;)V m_21080_ + 0 o p_21081_ + a (Lben;Z)V m_7625_ + 0 o p_21021_ + 1 o p_21022_ + a (Lbfo;)Z m_213772_ + 0 o p_217035_ + a (Lbfz;)V m_6703_ + 0 o p_21039_ + a (Leei;F)Leei; m_21074_ + 0 o p_21075_ + 1 o p_21076_ + a (Lbfj;)V m_21028_ + 0 o p_21029_ + a (Ljava/util/Map;)V m_21091_ + 0 o p_21092_ + a (Lcmm;Lcfz;)Lcfz; m_5584_ + 0 o p_21067_ + 1 o p_21068_ + a (DZLeei;)Leei; m_20994_ + 0 o p_20995_ + 1 o p_20996_ + 2 o p_20997_ + a (Lbfz;Lbqm;)Z m_21040_ + 0 o p_21041_ + 1 o p_21042_ + a (Lbey;)Z m_21023_ + 0 o p_21024_ + a (Lben;)V m_6667_ + 0 o p_21014_ + a (Lqr;Lgu;)V m_21097_ + static + 0 o p_21098_ + 1 o p_21099_ + a (Lhe;)D m_246858_ + 0 o p_251296_ + a (Lcom/mojang/serialization/Dynamic;)Lbha; m_8075_ + 0 o p_21069_ + a (Lbhb;)Lbhc; m_21051_ + 0 o p_21052_ + a (Lqr;Lrk;)V m_21100_ + static + 0 o p_21101_ + 1 o p_21102_ + a (Lgu;Z)V m_6818_ + 0 o p_21082_ + 1 o p_21083_ + a (Lbgl;)Lbfk; m_6972_ + 0 o p_21047_ + a (Lbdw;)V m_6674_ + 0 o p_21007_ + a (F)F m_20998_ + 0 o p_20999_ + a (Lha$a;Ll$a;)Leei; m_7643_ + 0 o p_21085_ + 1 o p_21086_ + a (Lbfa;ZLbfj;)V m_141973_ + 0 o p_147192_ + 1 o p_147193_ + 2 o p_147194_ + a (Lus;)V m_141965_ + 0 o p_217037_ + a (Lbfn;)Z m_6549_ + 0 o p_21032_ + a (DD)V m_269405_ + 0 o p_270514_ + 1 o p_270826_ + a (Lbfo;Lcfz;Lcfz;)V m_238392_ + 0 o p_238393_ + 1 o p_238394_ + 2 o p_238395_ + aH ()F m_6041_ + a_ (I)Lbgs; m_141942_ + 0 o p_147238_ + a_ ()V m_8097_ + ah ()V m_6074_ + ao ()V m_6075_ + ax ()V m_6088_ + b (Lbfo;)Z m_21033_ + 0 o p_21034_ + b (Lbfo;Lcfz;)V m_21128_ + 0 o p_21129_ + 1 o p_21130_ + b (Lbyo;Leei;)Leei; m_274312_ + 0 o p_278326_ + 1 o p_275300_ + b (B)V m_7822_ + 0 o p_20975_ + b (Ljava/util/function/Predicate;)Z m_21093_ + 0 o p_21094_ + b (Lbhb;)D m_21133_ + 0 o p_21134_ + b (Lbgl;Lbfk;)F m_6431_ + 0 o p_21131_ + 1 o p_21132_ + b (Lbdw;)Lcfz; m_21120_ + 0 o p_21121_ + b (Lgu;)V m_5802_ + 0 o p_21141_ + b (DDDZ)Z m_20984_ + 0 o p_20985_ + 1 o p_20986_ + 2 o p_20987_ + 3 o p_20988_ + b (Lbey;)Lbfa; m_21124_ + 0 o p_21125_ + b (Lhe;)D m_245892_ + 0 o p_248605_ + b (Lbfa;Lbfj;)Z m_147207_ + 0 o p_147208_ + 1 o p_147209_ + b (Lbfa;)Z m_7292_ + 0 o p_21165_ + b (Lben;F)V m_6472_ + 0 o p_21122_ + 1 o p_21123_ + b (Lqr;)V m_7380_ + 0 o p_21145_ + b (Ljava/util/Map;)V m_21142_ + 0 o p_21143_ + b (Lcfu;)Z m_21055_ + 0 o p_21056_ + b (Lcfz;I)V m_21137_ + 0 o p_21138_ + 1 o p_21139_ + bJ ()Ljava/lang/Iterable; m_6168_ + bX ()Z m_6067_ + b_ ()V m_8107_ + bo ()Z m_6087_ + bp ()Z m_6094_ + bs ()Z m_6084_ + bt ()Z m_5830_ + bv ()V m_6083_ + c (Lbyo;)V m_6598_ + 0 o p_21248_ + c (Lbfo;Lcfz;)V m_21168_ + 0 o p_21169_ + 1 o p_21170_ + c (Lbfa;Lbfj;)V m_147215_ + 0 o p_147216_ + 1 o p_147217_ + c (IZ)V m_21155_ + 0 o p_21156_ + 1 o p_21157_ + c (Ljava/util/Collection;)Z m_21179_ + static + 0 o p_21180_ + c (Lbhb;)D m_21172_ + 0 o p_21173_ + c (Lben;F)V m_142642_ + 0 o p_147213_ + 1 o p_147214_ + c (Lbfz;)Z m_6779_ + 0 o p_21171_ + c (Lbfo;)Lcfz; m_6844_ + 0 o p_21127_ + c (Lben;)V m_269138_ + 0 o p_270229_ + c (Lgu;)V m_5806_ + 0 o p_21175_ + c (Lbdw;)V m_6672_ + 0 o p_21159_ + c (Lgu;Ldcb;)Z m_21176_ + 0 o p_21177_ + 1 o p_21178_ + c (Lbfa;)Z m_7301_ + 0 o p_21197_ + c (Lbyo;Leei;)V m_274466_ + 0 o p_278244_ + 1 o p_278231_ + c (Lanl;)V m_203347_ + 0 o p_204043_ + c (Lcfz;)Lamg; m_7838_ + 0 o p_21174_ + c (Lbey;)Lbfa; m_6234_ + 0 o p_21164_ + c (Ldcb;)Z m_6757_ + 0 o p_21140_ + ca ()Z m_142038_ + cm ()F m_6080_ + cq ()Z m_6072_ + cz ()Z m_6052_ + d (FF)I m_5639_ + 0 o p_21237_ + 1 o p_21238_ + d (Lbfa;)V m_289605_ + 0 o p_289695_ + d (Lcfz;)Lamg; m_7866_ + 0 o p_21202_ + d (Lben;)Lamg; m_7975_ + 0 o p_21239_ + d (Lbfo;)V m_21166_ + 0 o p_21167_ + d (Lben;F)F m_21161_ + 0 o p_21162_ + 1 o p_21163_ + d (I)Lamg; m_5896_ + 0 o p_21313_ + d (Lbdw;)V m_21190_ + 0 o p_21191_ + d (Lbfz;)V m_6728_ + 0 o p_21200_ + d (Lbfo;Lcfz;)Z m_268865_ + static + 0 o p_269790_ + 1 o p_269791_ + d (Lbey;)Z m_21195_ + 0 o p_21196_ + dC ()F m_274421_ + dK ()Lbha; m_6274_ + dL ()Lbha$b; m_5490_ + dM ()Lbhf$a; m_21183_ + static + dN ()Z m_6040_ + dO ()Z m_6039_ + dP ()V m_21184_ + dQ ()Z m_6046_ + dR ()V m_21185_ + dS ()V m_21186_ + dT ()V m_147225_ + dU ()V m_147226_ + dV ()F m_6134_ + dW ()Z m_6129_ + dX ()V m_6153_ + dY ()Z m_6149_ + dZ ()Z m_6125_ + dw ()Z m_142079_ + dz ()F m_213816_ + e (Lbfz;)V m_6731_ + 0 o p_21246_ + e (FF)F m_5632_ + 0 o p_21260_ + 1 o p_21261_ + e (Lben;)V m_6677_ + 0 o p_21160_ + e (Lbfo;)Lcfz; m_21198_ + 0 o p_21199_ + e (Lbyo;)F m_245547_ + 0 o p_278286_ + e (Lbfa;)V m_21264_ + 0 o p_21265_ + e (Lcfz;)V m_181122_ + 0 o p_181123_ + e (Lben;F)F m_6515_ + 0 o p_21193_ + 1 o p_21194_ + eA ()Leei; m_262803_ + eB ()F m_264297_ + eC ()Lbfz$a; m_196493_ + eD ()Ljava/util/Optional; m_21227_ + eE ()V m_21229_ + eF ()I m_21230_ + eG ()Lbek; m_21231_ + eH ()Lbfz; m_21232_ + eI ()F m_21233_ + eJ ()I m_21234_ + eK ()I m_21235_ + eL ()V m_21203_ + eM ()Lbhd; m_21204_ + eN ()Lbge; m_6336_ + eO ()Lcfz; m_21205_ + eP ()Lcfz; m_21206_ + eQ ()F m_21207_ + eR ()F m_6121_ + eS ()F m_6100_ + eT ()Z m_6107_ + eU ()F m_6118_ + eV ()F m_285755_ + eW ()V m_6135_ + eX ()V m_21208_ + eY ()F m_6108_ + eZ ()F m_274460_ + ea ()I m_213860_ + eb ()Z m_6124_ + ec ()Lapf; m_217043_ + ed ()Lbfz; m_21188_ + ee ()I m_21213_ + ef ()Lbfz; m_21214_ + eg ()I m_21215_ + eh ()I m_21216_ + ei ()Z m_147223_ + ej ()V m_21217_ + ek ()Z m_142066_ + el ()Z m_142065_ + em ()V m_21218_ + en ()Z m_21219_ + eo ()Ljava/util/Collection; m_21220_ + ep ()Ljava/util/Map; m_21221_ + eq ()Z m_21222_ + er ()F m_21223_ + es ()Z m_21224_ + et ()Lben; m_21225_ + eu ()V m_5907_ + ev ()V m_21226_ + ew ()Lacq; m_5743_ + ex ()J m_287233_ + ey ()V m_217045_ + ez ()Z m_217046_ + f (Lben;F)V m_6475_ + 0 o p_21240_ + 1 o p_21241_ + f (Lcfz;)Z m_7066_ + 0 o p_21249_ + f (Lbfz;)V m_21268_ + 0 o p_21269_ + f (Lben;)Z m_21275_ + 0 o p_21276_ + f (Lbfo;)Lcfz; m_21244_ + 0 o p_21245_ + fA ()Lha; m_21259_ + fB ()Z m_213824_ + fa ()F m_6113_ + fb ()Z m_6126_ + fc ()V m_6140_ + fd ()V m_6138_ + fe ()Z m_21209_ + ff ()F m_6103_ + fg ()V m_21210_ + fh ()Lbft; m_5737_ + fi ()Z m_6117_ + fj ()Lbdw; m_7655_ + fk ()Lcfz; m_21211_ + fl ()I m_21212_ + fm ()I m_21252_ + fn ()V m_21253_ + fo ()V m_5810_ + fp ()Z m_21254_ + fq ()Z m_5791_ + fr ()Z m_21255_ + fs ()I m_21256_ + ft ()Z m_5801_ + fu ()Z m_5789_ + fv ()Lcom/google/common/collect/ImmutableList; m_7431_ + fw ()Ljava/util/Optional; m_21257_ + fx ()V m_21258_ + fy ()Z m_5803_ + fz ()V m_5796_ + g (Lbgl;)Leed; m_21270_ + 0 o p_21271_ + g (Lcfz;)Lcfz; m_6298_ + 0 o p_21272_ + g (Lgu;)V m_21250_ + 0 o p_21251_ + g (Z)V m_6858_ + 0 o p_21284_ + g (Lbfo;)B m_21266_ + static + 0 o p_21267_ + g (Lben;)V m_6668_ + 0 o p_21192_ + g (Lbfj;)V m_7334_ + 0 o p_21294_ + g (Lbfz;)V m_6727_ + 0 o p_21277_ + g_ ()Lamg; m_5592_ + h (Lgu;)V m_260785_ + 0 o p_261435_ + h (F)F m_5675_ + 0 o p_21286_ + h (Lbfz;)V m_147231_ + static + 0 o p_147232_ + h (Lben;)Z m_21262_ + 0 o p_21263_ + h (Leei;)V m_7023_ + 0 o p_21280_ + h (Lcfz;)Lbfo; m_147233_ + static + 0 o p_147234_ + h_ ()Z m_6162_ + i (Lcfz;)V m_21278_ + 0 o p_21279_ + i (Leei;)Leei; m_21289_ + static + 0 o p_21290_ + i (Lbfz;)V m_21300_ + static + 0 o p_21301_ + i (Lgu;)Leei; m_147229_ + static + 0 o p_147230_ + i_ ()Z m_6147_ + j (Leei;)Leei; m_21297_ + 0 o p_21298_ + j (Lgu;)Ljava/lang/Boolean; m_289088_ + 0 o p_289310_ + j_ ()Leed; m_6921_ + l ()V m_8119_ + m (I)I m_7302_ + 0 o p_21303_ + m (F)V m_6053_ + 0 o p_265265_ + n (F)V m_5616_ + 0 o p_21306_ + n (I)I m_7305_ + 0 o p_21307_ + o (I)V m_21310_ + 0 o p_21311_ + o (F)V m_5618_ + 0 o p_21309_ + p (Z)V m_147244_ + 0 o p_147245_ + p (I)V m_21317_ + 0 o p_21318_ + q (I)V m_21321_ + 0 o p_21322_ + q ()V m_147239_ + q (DDD)V m_147240_ + 0 o p_147241_ + 1 o p_147242_ + 2 o p_147243_ + q (Z)V m_267651_ + 0 o p_268129_ + r (I)Lbfo; m_147211_ + static + 0 o p_147212_ + r (Z)V m_6862_ + 0 o p_21314_ + s ()I m_21304_ + s (F)V m_5634_ + 0 o p_21116_ + t (F)V m_21153_ + 0 o p_21154_ + u (F)V m_7909_ + 0 o p_21316_ + v (F)V m_267689_ + 0 o p_268283_ + w (F)V m_7910_ + 0 o p_21320_ + x (Lbfj;)V m_21335_ + 0 o p_21336_ + x ()V m_147246_ + x (F)F m_21324_ + 0 o p_21325_ + y (F)V m_7911_ + 0 o p_21328_ + y ()V m_21312_ + y (Lbfj;)D m_20968_ + 0 o p_20969_ + z (Lbfj;)Z m_7327_ + 0 o p_20970_ + z ()V m_21315_ + z (F)F m_21330_ + 0 o p_21331_ +bfz$1 net/minecraft/world/entity/LivingEntity$1 + a f_21337_ + b f_21338_ + ()V + static +bfz$a net/minecraft/world/entity/LivingEntity$Fallsounds + a f_196626_ + b f_196627_ + (Lamg;Lamg;)V + 0 o f_196626_ + 1 o f_196627_ + a ()Lamg; f_196626_ + b ()Lamg; f_196627_ + equals (Ljava/lang/Object;)Z equals + 0 o p_196634_ + hashCode ()I hashCode + toString ()Ljava/lang/String; toString +bg net/minecraft/advancements/critereon/DistanceTrigger + a f_186161_ + (Lacq;)V + 0 o p_186163_ + a (Laig;Leei;Leei;Lbg$a;)Z m_283951_ + static + 0 o p_284569_ + 1 o p_284570_ + 2 o p_284571_ + 3 o p_284572_ + a ()Lacq; m_7295_ + a (Laig;Leei;)V m_186165_ + 0 o p_186166_ + 1 o p_186167_ + a (Lcom/google/gson/JsonObject;Lba;Lbe;)Lbg$a; m_7214_ + 0 o p_286540_ + 1 o p_286753_ + 2 o p_286709_ + b (Lcom/google/gson/JsonObject;Lba;Lbe;)Lar; m_7214_ + 0 o p_286885_ + 1 o p_286450_ + 2 o p_286678_ +bg$a net/minecraft/advancements/critereon/DistanceTrigger$TriggerInstance + a f_186181_ + b f_186182_ + (Lacq;Lba;Lch;Lbf;)V + 0 o p_286369_ + 1 o p_286587_ + 2 o p_286563_ + 3 o p_286818_ + a (Lct;)Lcom/google/gson/JsonObject; m_7683_ + 0 o p_186202_ + a (Lbf;)Lbg$a; m_186192_ + static + 0 o p_186193_ + a (Laif;Leei;Leei;)Z m_186188_ + 0 o p_186189_ + 1 o p_186190_ + 2 o p_186191_ + a (Lbo$a;Lbf;)Lbg$a; m_186194_ + static + 0 o p_186195_ + 1 o p_186196_ + a (Lbo$a;Lbf;Lch;)Lbg$a; m_186197_ + static + 0 o p_186198_ + 1 o p_186199_ + 2 o p_186200_ +bga net/minecraft/world/entity/Marker + b f_147247_ + c f_147248_ + (Lbfn;Lcmm;)V + 0 o p_147250_ + 1 o p_147251_ + S ()Luo; m_5654_ + a (Lqr;)V m_7378_ + 0 o p_147254_ + a_ ()V m_8097_ + b (Lqr;)V m_7380_ + 0 o p_147257_ + bB ()Z m_269011_ + c_ ()Z m_6090_ + l ()V m_8119_ + l_ ()Ldxj; m_7752_ + m (Lbfj;)V m_20348_ + 0 o p_270306_ + o (Lbfj;)Z m_7310_ + 0 o p_265289_ +bgb net/minecraft/world/entity/Mob + b f_21340_ + bB f_147261_ + bC f_147262_ + bD f_147263_ + bE f_147264_ + bF f_182333_ + bG f_217047_ + bH f_186008_ + bI f_21363_ + bJ f_21364_ + bK f_21365_ + bL f_21342_ + bM f_21343_ + bN f_21344_ + bO f_21345_ + bP f_21346_ + bQ f_21347_ + bR f_21348_ + bS f_217048_ + bT f_21361_ + bU f_21362_ + bV f_21349_ + bW f_21350_ + bX f_21351_ + bY f_21352_ + bZ f_21353_ + c f_147266_ + ca f_21354_ + cb f_21355_ + cc f_21356_ + cd f_21357_ + ce f_21358_ + cf f_21359_ + cg f_21360_ + ch f_21341_ + d f_147267_ + e f_147268_ + f f_147265_ + g f_147269_ + ()V + static + (Lbfn;Lcmm;)V + 0 o p_21368_ + 1 o p_21369_ + A (F)V m_21567_ + 0 o p_21568_ + A ()V m_284177_ + B (F)V m_21570_ + 0 o p_21571_ + C ()V m_284461_ + D ()Lblt; m_7560_ + E ()Lblx; m_21563_ + G ()Lbly; m_21566_ + I ()Lblw; m_21569_ + J ()Lbpj; m_21573_ + K ()Lbqe; m_21574_ + L ()V m_8035_ + M ()I m_8100_ + N ()V m_8032_ + O ()V m_21373_ + P ()V m_8022_ + Q ()Lacq; m_7582_ + R ()Lhz; m_213552_ + T ()Z m_8023_ + U ()Z m_8028_ + V ()V m_8025_ + W ()V m_8024_ + X ()I m_8132_ + a (Lcgp;)Z m_5886_ + 0 o p_21430_ + a (Lben;IZ)V m_7472_ + 0 o p_21385_ + 1 o p_21386_ + 2 o p_21387_ + a (Lbfn;Lcmn;Lbgd;Lgu;Lapf;)Z m_217057_ + static + 0 o p_217058_ + 1 o p_217059_ + 2 o p_217060_ + 3 o p_217061_ + 4 o p_217062_ + a (Lbmv;)Z m_262356_ + static + 0 o p_262562_ + a (ZZ)V m_21455_ + 0 o p_21456_ + 1 o p_21457_ + a (Lcnb;Lbdv;Lbgd;Lbgt;Lqr;)Lbgt; m_6518_ + 0 o p_21434_ + 1 o p_21435_ + 2 o p_21436_ + 3 o p_21437_ + 4 o p_21438_ + a (Lgu;)Z m_21444_ + 0 o p_21445_ + a (Ldxp;F)V m_21441_ + 0 o p_21442_ + 1 o p_21443_ + a (Lben;Z)V m_7625_ + 0 o p_21389_ + 1 o p_21390_ + a (Lapf;FLbfo;)V m_217051_ + 0 o p_217052_ + 1 o p_217053_ + 2 o p_217054_ + a (Lapf;Lbdv;)V m_213945_ + 0 o p_217055_ + 1 o p_217056_ + a (Lbfj;Z)Z m_7998_ + 0 o p_21396_ + 1 o p_21397_ + a (Lbfo;Lcfz;)V m_8061_ + 0 o p_21416_ + 1 o p_21417_ + a (Lgu;I)V m_21446_ + 0 o p_21447_ + 1 o p_21448_ + a (Lbfj;FF)V m_21391_ + 0 o p_21392_ + 1 o p_21393_ + 2 o p_21394_ + a (Lqr;)V m_7378_ + 0 o p_21450_ + a (Z)V m_6863_ + 0 o p_21451_ + a (Ldxp;)F m_21439_ + 0 o p_21440_ + a (Lcmn;Lbgd;)Z m_5545_ + 0 o p_21431_ + 1 o p_21432_ + a (Lbyo;Lcfz;Lcfz;)V m_21424_ + 0 o p_21425_ + 1 o p_21426_ + 2 o p_21427_ + a (Lbfo;I)Lcfu; m_21412_ + static + 0 o p_21413_ + 1 o p_21414_ + a (Lbyo;Lbgb;)V m_5502_ + 0 o p_21422_ + 1 o p_21423_ + a (FFF)F m_21376_ + 0 o p_21377_ + 1 o p_21378_ + 2 o p_21379_ + a (Lbfn;Z)Lbgb; m_21406_ + 0 o p_21407_ + 1 o p_21408_ + a (Lcmp;)Z m_6914_ + 0 o p_21433_ + a (Lbyo;)Z m_6573_ + 0 o p_21418_ + a (Lapf;F)V m_214095_ + 0 o p_217049_ + 1 o p_217050_ + a (Lbfn;)Z m_6549_ + 0 o p_21399_ + a (Lbyo;Lbdw;)Lbdx; m_6096_ + 0 o p_21420_ + 1 o p_21421_ + a (Lbfo;F)V m_21409_ + 0 o p_21410_ + 1 o p_21411_ + a_ ()V m_8097_ + ao ()V m_6075_ + b (Lbfo;Lcfz;)V m_21468_ + 0 o p_21469_ + 1 o p_21470_ + b (Lcmm;)Lbpj; m_6037_ + 0 o p_21480_ + b (Lcfz;Lcfz;)Z m_7808_ + 0 o p_21428_ + 1 o p_21429_ + b (Lbfj;Z)V m_21463_ + 0 o p_21464_ + 1 o p_21465_ + b (B)V m_7822_ + 0 o p_21375_ + b (Lbyo;Lbdw;)Lbdx; m_6071_ + 0 o p_21472_ + 1 o p_21473_ + b (Lqr;)V m_7380_ + 0 o p_21484_ + b (Lapf;Lbdv;)V m_213946_ + 0 o p_217063_ + 1 o p_217064_ + b (Lbyo;Lbgb;)V m_21474_ + 0 o p_21475_ + 1 o p_21476_ + b (Lbvh;)V m_7581_ + 0 o p_21471_ + bI ()Ljava/lang/Iterable; m_6167_ + bJ ()Ljava/lang/Iterable; m_6168_ + b_ ()V m_8107_ + c (Ljava/lang/String;)Z m_21502_ + static + 0 o p_21503_ + c (Lbyo;Lbdw;)Lbdx; m_21499_ + 0 o p_21500_ + 1 o p_21501_ + c (Ljava/util/function/Predicate;)V m_262441_ + 0 o p_262667_ + c (Lcfz;Lcfz;)Z m_21477_ + 0 o p_21478_ + 1 o p_21479_ + c (Lanl;)V m_203347_ + 0 o p_204045_ + c (Lbfo;)Lcfz; m_6844_ + 0 o p_21467_ + cL ()Lbfz; m_6688_ + cV ()Z m_21515_ + cp ()V m_6089_ + cr ()I m_6056_ + d (I)Z m_7296_ + 0 o p_21489_ + d (Ljava/lang/String;)Z m_21512_ + static + 0 o p_21513_ + du ()V m_6043_ + dv ()Lcfz; m_142340_ + e (FF)F m_5632_ + 0 o p_21538_ + 1 o p_21539_ + e (Lbfo;)V m_21508_ + 0 o p_21509_ + e (Lben;)V m_6677_ + 0 o p_21493_ + ea ()I m_213860_ + ew ()Lacq; m_5743_ + ex ()J m_287233_ + f (Lbfo;)F m_21519_ + 0 o p_21520_ + f (Lcfz;)Z m_7066_ + 0 o p_21522_ + fC ()I m_8085_ + fD ()I m_21529_ + fE ()I m_5792_ + fF ()V m_21530_ + fG ()Z m_21531_ + fH ()Z m_21532_ + fI ()Z m_21533_ + fJ ()Lgu; m_21534_ + fK ()F m_21535_ + fL ()V m_147271_ + fM ()Z m_21536_ + fN ()V m_6119_ + fO ()Z m_21523_ + fP ()Lbfj; m_21524_ + fQ ()Z m_21525_ + fR ()Z m_21526_ + fS ()Z m_5912_ + fT ()Z m_21527_ + fU ()V m_147272_ + fV ()V m_21528_ + fc ()V m_6140_ + fh ()Lbft; m_5737_ + h (D)Z m_6785_ + 0 o p_21542_ + h (Lbfz;)V m_6710_ + 0 o p_21544_ + i (Lbfz;)D m_142593_ + 0 o p_147273_ + i (Lcfz;)Lcfz; m_255207_ + 0 o p_255842_ + j ()Lbfz; m_5448_ + j (Lbfz;)D m_262793_ + 0 o p_263021_ + j (Lcfz;)Z m_7252_ + 0 o p_21545_ + k (Lcfz;)Z m_7243_ + 0 o p_21546_ + k (Lbfz;)Z m_217066_ + 0 o p_217067_ + l ()V m_8119_ + m (Lcfz;)V m_278552_ + static + 0 o p_278936_ + q ()V m_21551_ + r (I)V m_21506_ + 0 o p_21507_ + s ()Lamg; m_7515_ + s (Z)V m_21553_ + 0 o p_21554_ + t (Z)V m_21557_ + 0 o p_21558_ + u (Z)V m_21559_ + 0 o p_21560_ + v (Z)V m_21561_ + 0 o p_21562_ + w (F)V m_7910_ + 0 o p_21556_ + x ()V m_8099_ + y ()Lbhf$a; m_21552_ + static + z (Lbfj;)Z m_7327_ + 0 o p_21372_ + z ()Z m_8091_ + z (F)V m_21564_ + 0 o p_21565_ +bgb$1 net/minecraft/world/entity/Mob$1 + a f_21575_ + b f_21576_ + ()V + static +bgc net/minecraft/world/entity/MobCategory + a MONSTER + b CREATURE + c AMBIENT + d AXOLOTLS + e UNDERGROUND_WATER_CREATURE + f WATER_CREATURE + g WATER_AMBIENT + h MISC + i f_21584_ + j f_21586_ + k f_21587_ + l f_21588_ + m f_21589_ + n f_21590_ + o f_21591_ + p $VALUES + ()V + static + (Ljava/lang/String;ILjava/lang/String;IZZI)V + 0 o p_21595_ + 1 o p_21596_ + 2 o p_21597_ + 3 o p_21598_ + 4 o p_21599_ + 5 o p_21600_ + 6 o p_21601_ + a ()Ljava/lang/String; m_21607_ + b ()I m_21608_ + c ()Ljava/lang/String; m_7912_ + d ()Z m_21609_ + e ()Z m_21610_ + f ()I m_21611_ + g ()I m_21612_ + h ()[Lbgc; m_147275_ + static + valueOf (Ljava/lang/String;)Lbgc; valueOf + static + 0 o p_21614_ + values ()[Lbgc; values + static +bgd net/minecraft/world/entity/MobSpawnType + a NATURAL + b CHUNK_GENERATION + c SPAWNER + d STRUCTURE + e BREEDING + f MOB_SUMMONED + g JOCKEY + h EVENT + i CONVERSION + j REINFORCEMENT + k TRIGGERED + l BUCKET + m SPAWN_EGG + n COMMAND + o DISPENSER + p PATROL + q $VALUES + ()V + static + (Ljava/lang/String;I)V + 0 o p_21635_ + 1 o p_21636_ + a ()[Lbgd; m_147276_ + static + valueOf (Ljava/lang/String;)Lbgd; valueOf + static + 0 o p_21638_ + values ()[Lbgd; values + static +bge net/minecraft/world/entity/MobType + a f_21640_ + b f_21641_ + c f_21642_ + d f_21643_ + e f_21644_ + ()V + static + ()V +bgf net/minecraft/world/entity/MoverType + a SELF + b PLAYER + c PISTON + d SHULKER_BOX + e SHULKER + f $VALUES + ()V + static + (Ljava/lang/String;I)V + 0 o p_21655_ + 1 o p_21656_ + a ()[Lbgf; m_147277_ + static + valueOf (Ljava/lang/String;)Lbgf; valueOf + static + 0 o p_21658_ + values ()[Lbgf; values + static +bgg net/minecraft/world/entity/NeutralMob + a_ f_147283_ + b_ f_147284_ + O_ ()V m_21662_ + S_ ()Z m_21660_ + T_ ()V m_21661_ + a (Laif;Z)V m_21666_ + 0 o p_21667_ + 1 o p_21668_ + a (I)V m_7870_ + 0 o p_21673_ + a ()I m_6784_ + a (Lbfz;)V m_6703_ + 0 o p_21669_ + a (Ljava/util/UUID;)V m_6925_ + 0 o p_21672_ + a (Lcmm;Lqr;)V m_147285_ + 0 o p_147286_ + 1 o p_147287_ + a_ (Lcmm;)Z m_21670_ + 0 o p_21671_ + a_ (Lbfz;)Z m_21674_ + 0 o p_21675_ + a_ (Lbyo;)V m_21676_ + 0 o p_21677_ + b ()Ljava/util/UUID; m_6120_ + c (Lbyo;)V m_6598_ + 0 o p_21680_ + c (Lqr;)V m_21678_ + 0 o p_21679_ + c (Lbfz;)Z m_6779_ + 0 o p_181126_ + c ()V m_6825_ + ed ()Lbfz; m_21188_ + h (Lbfz;)V m_6710_ + 0 o p_21681_ + j ()Lbfz; m_5448_ +bgh net/minecraft/world/entity/OwnableEntity + I_ ()Lbfz; m_269323_ + U_ ()Ljava/util/UUID; m_21805_ + e ()Lcmd; m_9236_ +bgi net/minecraft/world/entity/PathfinderMob + bS f_186010_ + (Lbfn;Lcmm;)V + 0 o p_21683_ + 1 o p_21684_ + C (F)V m_7880_ + 0 o p_21694_ + a (Lgu;Lcmp;)F m_5610_ + 0 o p_21688_ + 1 o p_21689_ + a (Lcmn;Lbgd;)Z m_5545_ + 0 o p_21686_ + 1 o p_21687_ + fN ()V m_6119_ + fV ()Z m_21691_ + fW ()Z m_213814_ + fX ()D m_5823_ + h (Lgu;)F m_21692_ + 0 o p_21693_ +bgj net/minecraft/world/entity/PlayerRideable +bgk net/minecraft/world/entity/PlayerRideableJumping + W_ ()I m_245614_ + a ()Z m_7132_ + b (I)V m_7888_ + 0 o p_21696_ + b ()V m_8012_ + c (I)V m_7199_ + 0 o p_21695_ +bgl net/minecraft/world/entity/Pose + a STANDING + b FALL_FLYING + c SLEEPING + d SWIMMING + e SPIN_ATTACK + f CROUCHING + g LONG_JUMPING + h DYING + i CROAKING + j USING_TONGUE + k SITTING + l ROARING + m SNIFFING + n EMERGING + o DIGGING + p $VALUES + ()V + static + (Ljava/lang/String;I)V + 0 o p_21707_ + 1 o p_21708_ + a ()[Lbgl; m_147289_ + static + valueOf (Ljava/lang/String;)Lbgl; valueOf + static + 0 o p_21710_ + values ()[Lbgl; values + static +bgm net/minecraft/world/entity/PowerableMob + a ()Z m_7090_ +bgn net/minecraft/world/entity/RelativeMovement + a X + b Y + c Z + d Y_ROT + e X_ROT + f f_263752_ + g f_263774_ + h f_263649_ + i $VALUES + ()V + static + (Ljava/lang/String;II)V + 0 o p_265440_ + 1 o p_265574_ + 2 o p_265098_ + a (Ljava/util/Set;)I m_264160_ + static + 0 o p_265525_ + a ()I m_264202_ + a (I)Ljava/util/Set; m_264098_ + static + 0 o p_265683_ + b ()[Lbgn; m_264361_ + static + b (I)Z m_264508_ + 0 o p_265420_ + valueOf (Ljava/lang/String;)Lbgn; valueOf + static + 0 o p_265363_ + values ()[Lbgn; values + static +bgo net/minecraft/world/entity/ReputationEventHandler + a (Lbqw;Lbfj;)V m_6814_ + 0 o p_21712_ + 1 o p_21713_ +bgp net/minecraft/world/entity/RiderShieldingMount + d ()D m_262813_ +bgq net/minecraft/world/entity/Saddleable + R_ ()Lamg; m_246265_ + a (Lami;)V m_5853_ + 0 o p_21748_ + g ()Z m_6741_ + i ()Z m_6254_ +bgr net/minecraft/world/entity/Shearable + a ()Z m_6220_ + a (Lami;)V m_5851_ + 0 o p_21749_ +bgs net/minecraft/world/entity/SlotAccess + b f_147290_ + ()V + static + a (Lbdq;ILjava/util/function/Predicate;)Lbgs; m_147295_ + static + 0 o p_147296_ + 1 o p_147297_ + 2 o p_147298_ + a ()Lcfz; m_142196_ + a (Lcfz;)Z m_142104_ + 0 o p_147306_ + a (Lbfz;Lbfo;)Lbgs; m_147299_ + static + 0 o p_147300_ + 1 o p_147301_ + a (Lbdq;I)Lbgs; m_147292_ + static + 0 o p_147293_ + 1 o p_147294_ + a (Lbfz;Lbfo;Ljava/util/function/Predicate;)Lbgs; m_147302_ + static + 0 o p_147303_ + 1 o p_147304_ + 2 o p_147305_ + b (Lcfz;)Z m_147307_ + static + 0 o p_147308_ + c (Lcfz;)Z m_147309_ + static + 0 o p_147310_ +bgs$1 net/minecraft/world/entity/SlotAccess$1 + ()V + a ()Lcfz; m_142196_ + a (Lcfz;)Z m_142104_ + 0 o p_147314_ +bgs$2 net/minecraft/world/entity/SlotAccess$2 + a f_147315_ + c f_147316_ + d f_147317_ + (Lbdq;ILjava/util/function/Predicate;)V + 0 o p_147319_ + 1 o p_147320_ + 2 o p_147321_ + a ()Lcfz; m_142196_ + a (Lcfz;)Z m_142104_ + 0 o p_147324_ +bgs$3 net/minecraft/world/entity/SlotAccess$3 + a f_147325_ + c f_147326_ + d f_147327_ + (Lbfz;Lbfo;Ljava/util/function/Predicate;)V + 0 o p_147329_ + 1 o p_147330_ + 2 o p_147331_ + a ()Lcfz; m_142196_ + a (Lcfz;)Z m_142104_ + 0 o p_147334_ +bgt net/minecraft/world/entity/SpawnGroupData +bgu net/minecraft/world/entity/SpawnPlacements + a f_21750_ + ()V + static + ()V + a (Lbfn;Lcnb;Lbgd;Lgu;Lapf;)Z m_217074_ + static + 0 o p_217075_ + 1 o p_217076_ + 2 o p_217077_ + 3 o p_217078_ + 4 o p_217079_ + a (Lbfn;Lbgu$c;Ldhk$a;Lbgu$b;)V m_21754_ + static + 0 o p_21755_ + 1 o p_21756_ + 2 o p_21757_ + 3 o p_21758_ + a (Lbfn;)Lbgu$c; m_21752_ + static + 0 o p_21753_ + b (Lbfn;)Ldhk$a; m_21765_ + static + 0 o p_21766_ +bgu$a net/minecraft/world/entity/SpawnPlacements$Data + a f_21767_ + b f_21768_ + c f_21769_ + (Ldhk$a;Lbgu$c;Lbgu$b;)V + 0 o p_21771_ + 1 o p_21772_ + 2 o p_21773_ +bgu$b net/minecraft/world/entity/SpawnPlacements$SpawnPredicate + test (Lbfn;Lcnb;Lbgd;Lgu;Lapf;)Z m_217080_ + 0 o p_217081_ + 1 o p_217082_ + 2 o p_217083_ + 3 o p_217084_ + 4 o p_217085_ +bgu$c net/minecraft/world/entity/SpawnPlacements$Type + a ON_GROUND + b IN_WATER + c NO_RESTRICTIONS + d IN_LAVA + e $VALUES + ()V + static + (Ljava/lang/String;I)V + 0 o p_21793_ + 1 o p_21794_ + a ()[Lbgu$c; m_147336_ + static + valueOf (Ljava/lang/String;)Lbgu$c; valueOf + static + 0 o p_21796_ + values ()[Lbgu$c; values + static +bgv net/minecraft/world/entity/TamableAnimal + bT f_21798_ + bU f_21799_ + bW f_21800_ + ()V + static + (Lbfn;Lcmm;)V + 0 o p_21803_ + 1 o p_21804_ + U_ ()Ljava/util/UUID; m_21805_ + a (Lqr;)V m_7378_ + 0 o p_21815_ + a (Lben;)V m_6667_ + 0 o p_21809_ + a (Lbyo;)Z m_6573_ + 0 o p_21813_ + a (Lbfz;Lbfz;)Z m_7757_ + 0 o p_21810_ + 1 o p_21811_ + a_ ()V m_8097_ + b (Lqr;)V m_7380_ + 0 o p_21819_ + b (Ljava/util/UUID;)V m_21816_ + 0 o p_21817_ + b (B)V m_7822_ + 0 o p_21807_ + c (Lbfz;)Z m_6779_ + 0 o p_21822_ + cd ()Lefi; m_5647_ + e ()Lcmd; m_9236_ + f (Lbyo;)V m_21828_ + 0 o p_21829_ + fY ()Z m_21827_ + l (Lbfz;)Z m_21830_ + 0 o p_21831_ + p (Lbfj;)Z m_7307_ + 0 o p_21833_ + q ()Z m_21824_ + r ()V m_5849_ + w ()Z m_21825_ + w (Z)V m_21834_ + 0 o p_21835_ + x (Z)V m_7105_ + 0 o p_21836_ + y (Z)V m_21837_ + 0 o p_21838_ + z (Z)V m_21839_ + 0 o p_21840_ +bgw net/minecraft/world/entity/Targeting + j ()Lbfz; m_5448_ +bgx net/minecraft/world/entity/TraceableEntity + v ()Lbfj; m_19749_ +bgy net/minecraft/world/entity/VariantHolder + a (Ljava/lang/Object;)V m_28464_ + 0 o p_262689_ + c ()Ljava/lang/Object; m_28554_ +bgz net/minecraft/world/entity/WalkAnimationState + a f_267406_ + b f_267371_ + c f_267358_ + ()V + a (F)V m_267771_ + 0 o p_268265_ + a ()F m_267731_ + a (FF)V m_267566_ + 0 o p_267993_ + 1 o p_267967_ + b (F)F m_267711_ + 0 o p_268054_ + b ()F m_267756_ + c (F)F m_267590_ + 0 o p_268007_ + c ()Z m_267780_ +bh net/minecraft/advancements/critereon/EffectsChangedTrigger + a f_26756_ + ()V + static + ()V + a ()Lacq; m_7295_ + a (Laig;Lbfj;)V m_149262_ + 0 o p_149263_ + 1 o p_149264_ + a (Laig;Ldzk;Lbh$a;)Z m_149265_ + static + 0 o p_149266_ + 1 o p_149267_ + 2 o p_149268_ + a (Lcom/google/gson/JsonObject;Lba;Lbe;)Lbh$a; m_7214_ + 0 o p_286892_ + 1 o p_286547_ + 2 o p_286271_ + b (Lcom/google/gson/JsonObject;Lba;Lbe;)Lar; m_7214_ + 0 o p_286725_ + 1 o p_286278_ + 2 o p_286737_ +bh$a net/minecraft/advancements/critereon/EffectsChangedTrigger$TriggerInstance + a f_26774_ + b f_149269_ + (Lba;Lck;Lba;)V + 0 o p_286580_ + 1 o p_286820_ + 2 o p_286703_ + a (Lck;)Lbh$a; m_26780_ + static + 0 o p_26781_ + a (Lct;)Lcom/google/gson/JsonObject; m_7683_ + 0 o p_26783_ + a (Lbo;)Lbh$a; m_149277_ + static + 0 o p_149278_ + a (Laig;Ldzk;)Z m_149274_ + 0 o p_149275_ + 1 o p_149276_ +bha net/minecraft/world/entity/ai/Brain + a f_21841_ + b f_21842_ + c f_147338_ + d f_21843_ + e f_21844_ + f f_21845_ + g f_21846_ + h f_21847_ + i f_21848_ + j f_21849_ + k f_21850_ + l f_21851_ + m f_21852_ + ()V + static + (Ljava/util/Collection;Ljava/util/Collection;Lcom/google/common/collect/ImmutableList;Ljava/util/function/Supplier;)V + 0 o p_21855_ + 1 o p_21856_ + 2 o p_21857_ + 3 o p_21858_ + a (Lbpb;Lbpc;)Z m_21876_ + 0 o p_21877_ + 1 o p_21878_ + a (Lbzz;Lcom/google/common/collect/ImmutableList;)V m_21900_ + 0 o p_21901_ + 1 o p_21902_ + a (Lbzz;Lcom/google/common/collect/ImmutableList;Ljava/util/Set;Ljava/util/Set;)V m_21907_ + 0 o p_21908_ + 1 o p_21909_ + 2 o p_21910_ + 3 o p_21911_ + a (Ljava/util/Set;)V m_21930_ + 0 o p_21931_ + a (Ljava/util/Collection;Ljava/util/Collection;)Lbha$b; m_21923_ + static + 0 o p_21924_ + 1 o p_21925_ + a (Ljava/lang/Object;Ljava/lang/Object;)Z m_21920_ + static + 0 o p_21921_ + 1 o p_21922_ + a (Lbpb;Ljava/util/Optional;)V m_21886_ + 0 o p_21887_ + 1 o p_21888_ + a (Lbzz;ILcom/google/common/collect/ImmutableList;Lbpb;)V m_21895_ + 0 o p_21896_ + 1 o p_21897_ + 2 o p_21898_ + 3 o p_21899_ + a (Ljava/util/Map$Entry;)Lbha$a; m_21928_ + static + 0 o p_21929_ + a (JJ)V m_21862_ + 0 o p_21863_ + 1 o p_21864_ + a (Ljava/util/List;)V m_21926_ + 0 o p_21927_ + a (Ljava/lang/Integer;)Ljava/util/Map; m_21916_ + static + 0 o p_21917_ + a (Ljava/lang/Object;)Z m_21918_ + 0 o p_21919_ + a (Lbpb;Ljava/lang/Object;)V m_21879_ + 0 o p_21880_ + 1 o p_21881_ + a (ILcom/google/common/collect/ImmutableList;)Lcom/google/common/collect/ImmutableList; m_21859_ + 0 o p_21860_ + 1 o p_21861_ + a (Lbpb;Ljava/lang/Object;J)V m_21882_ + 0 o p_21883_ + 1 o p_21884_ + 2 o p_21885_ + a (Laif;Lbfz;)V m_21865_ + 0 o p_21866_ + 1 o p_21867_ + a (Lbzz;)V m_21889_ + 0 o p_21890_ + a (Lcom/mojang/serialization/DynamicOps;)Lcom/mojang/serialization/DataResult; m_21914_ + 0 o p_21915_ + a ()V m_276084_ + a (Lcab;)V m_21912_ + 0 o p_21913_ + a (Lbpb;)Z m_21874_ + 0 o p_21875_ + a (Lbzz;ILcom/google/common/collect/ImmutableList;)V m_21891_ + 0 o p_21892_ + 1 o p_21893_ + 2 o p_21894_ + a (Lbzz;Lcom/google/common/collect/ImmutableList;Ljava/util/Set;)V m_21903_ + 0 o p_21904_ + 1 o p_21905_ + 2 o p_21906_ + b (Laif;Lbfz;)V m_21933_ + 0 o p_21934_ + 1 o p_21935_ + b (Lbzz;)V m_21944_ + 0 o p_21945_ + b (Lbpb;Ljava/lang/Object;)Z m_21938_ + 0 o p_21939_ + 1 o p_21940_ + b (Lbpb;)V m_21936_ + 0 o p_21937_ + b (Ljava/util/Collection;Ljava/util/Collection;)Lcom/mojang/serialization/Codec; m_21946_ + static + 0 o p_21947_ + 1 o p_21948_ + b ()Ljava/util/Map; m_147339_ + b (Lbpb;Ljava/util/Optional;)V m_21941_ + 0 o p_21942_ + 1 o p_21943_ + c (Laif;Lbfz;)V m_21949_ + 0 o p_21950_ + 1 o p_21951_ + c (Lbpb;)Ljava/util/Optional; m_21952_ + 0 o p_21953_ + c (Lbzz;)Z m_21954_ + 0 o p_21955_ + c ()Lcab; m_21932_ + d (Lbzz;)V m_21960_ + 0 o p_21961_ + d (Laif;Lbfz;)V m_21957_ + 0 o p_21958_ + 1 o p_21959_ + d ()Ljava/util/Set; m_147340_ + d (Lbpb;)Ljava/util/Optional; m_257414_ + 0 o p_259344_ + e (Laif;Lbfz;)V m_21963_ + 0 o p_21964_ + 1 o p_21965_ + e (Lbzz;)V m_21966_ + 0 o p_21967_ + e ()Ljava/util/List; m_21956_ + e (Lbpb;)J m_147341_ + 0 o p_147342_ + f (Lbzz;)Z m_21969_ + 0 o p_21970_ + f (Lbpb;)V m_276078_ + 0 o p_276103_ + f ()V m_21962_ + g ()Ljava/util/Optional; m_21968_ + g (Lbzz;)Ljava/util/Set; m_21971_ + static + 0 o p_21972_ + h ()V m_147343_ + i ()Lbha; m_21973_ + j ()Ljava/util/stream/Stream; m_21975_ + k ()V m_21976_ +bha$1 net/minecraft/world/entity/ai/Brain$1 + a f_21977_ + b f_21978_ + c f_21979_ + (Ljava/util/Collection;Ljava/util/Collection;Lorg/apache/commons/lang3/mutable/MutableObject;)V + 0 o p_21981_ + 1 o p_21982_ + 2 o p_21983_ + a (Lbpb;Lbpa;)Lbha$a; m_21990_ + static + 0 o p_21991_ + 1 o p_21992_ + a (Lbpb;Lcom/mojang/serialization/Codec;)Lacq; m_257155_ + static + 0 o p_258253_ + 1 o p_258254_ + a (Lcom/mojang/serialization/DynamicOps;Ljava/lang/Object;Lcom/mojang/serialization/Codec;)Lcom/mojang/serialization/DataResult; m_22008_ + static + 0 o p_22009_ + 1 o p_22010_ + 2 o p_22011_ + a (Lbpb;)Lcom/mojang/serialization/DataResult; m_274186_ + static + 0 o p_274961_ + a (Lcom/mojang/serialization/DynamicOps;Lorg/apache/commons/lang3/mutable/MutableObject;Lcom/mojang/datafixers/util/Pair;)V m_257154_ + 0 o p_258250_ + 1 o p_258251_ + 2 o p_258252_ + a (Lcom/mojang/serialization/DynamicOps;Lcom/mojang/datafixers/util/Pair;Lbpb;)Lcom/mojang/serialization/DataResult; m_147347_ + 0 o p_147348_ + 1 o p_147349_ + 2 o p_147350_ + a (Lbpb;Lcom/mojang/serialization/DynamicOps;Ljava/lang/Object;)Lcom/mojang/serialization/DataResult; m_21996_ + 0 o p_21997_ + 1 o p_21998_ + 2 o p_21999_ + a (Lcom/mojang/serialization/DynamicOps;Lacq;)Ljava/lang/Object; m_22016_ + static + 0 o p_22017_ + 1 o p_22018_ + a (Lcom/mojang/serialization/DynamicOps;Lcom/mojang/serialization/RecordBuilder;Lbha$a;)V m_22004_ + static + 0 o p_22005_ + 1 o p_22006_ + 2 o p_22007_ + a (Lbha;Lcom/mojang/serialization/DynamicOps;Lcom/mojang/serialization/RecordBuilder;)Lcom/mojang/serialization/RecordBuilder; encode + 0 o p_21985_ + 1 o p_21986_ + 2 o p_21987_ + b (Lbpb;)Ljava/lang/String; m_274185_ + static + 0 o p_274960_ + c (Lbpb;)Ljava/util/stream/Stream; m_22019_ + static + 0 o p_22020_ + decode (Lcom/mojang/serialization/DynamicOps;Lcom/mojang/serialization/MapLike;)Lcom/mojang/serialization/DataResult; decode + 0 o p_22022_ + 1 o p_22023_ + encode (Ljava/lang/Object;Lcom/mojang/serialization/DynamicOps;Lcom/mojang/serialization/RecordBuilder;)Lcom/mojang/serialization/RecordBuilder; encode + 0 o p_22025_ + 1 o p_22026_ + 2 o p_22027_ + keys (Lcom/mojang/serialization/DynamicOps;)Ljava/util/stream/Stream; keys + 0 o p_22029_ +bha$a net/minecraft/world/entity/ai/Brain$MemoryValue + a f_22030_ + b f_22031_ + (Lbpb;Ljava/util/Optional;)V + 0 o p_22033_ + 1 o p_22034_ + a (Lbpb;Ljava/util/Optional;)Lbha$a; m_22059_ + static + 0 o p_22060_ + 1 o p_22061_ + a (Lcom/mojang/serialization/DynamicOps;Lcom/mojang/serialization/RecordBuilder;)V m_22047_ + 0 o p_22048_ + 1 o p_22049_ + a (Lbha;)V m_22042_ + 0 o p_22043_ + a (Lcom/mojang/serialization/RecordBuilder;Lcom/mojang/serialization/DynamicOps;Lcom/mojang/serialization/Codec;)V m_22050_ + 0 o p_22051_ + 1 o p_22052_ + 2 o p_22053_ + a (Lcom/mojang/serialization/RecordBuilder;Lcom/mojang/serialization/DynamicOps;Lcom/mojang/serialization/Codec;Lbpa;)V m_257156_ + 0 o p_258255_ + 1 o p_258256_ + 2 o p_258257_ + 3 o p_258258_ +bha$b net/minecraft/world/entity/ai/Brain$Provider + a f_22062_ + b f_22063_ + c f_22064_ + (Ljava/util/Collection;Ljava/util/Collection;)V + 0 o p_22066_ + 1 o p_22067_ + a ()Lbha; m_22072_ + a (Lcom/mojang/serialization/Dynamic;)Lbha; m_22073_ + 0 o p_22074_ + b ()Lcom/mojang/serialization/Codec; m_147356_ +bhb net/minecraft/world/entity/ai/attributes/Attribute + a f_147357_ + b f_22076_ + c f_22077_ + d f_22078_ + (Ljava/lang/String;D)V + 0 o p_22080_ + 1 o p_22081_ + a (D)D m_6740_ + 0 o p_22083_ + a (Z)Lbhb; m_22084_ + 0 o p_22085_ + a ()D m_22082_ + b ()Z m_22086_ + c ()Ljava/lang/String; m_22087_ +bhc net/minecraft/world/entity/ai/attributes/AttributeInstance + a f_22088_ + b f_22089_ + c f_22090_ + d f_22091_ + e f_22092_ + f f_22093_ + g f_22094_ + h f_22095_ + (Lbhb;Ljava/util/function/Consumer;)V + 0 o p_22097_ + 1 o p_22098_ + a (D)V m_22100_ + 0 o p_22101_ + a (Lbhc;)V m_22102_ + 0 o p_22103_ + a (Lqr;)V m_22113_ + 0 o p_22114_ + a (Lbhe;)Z m_22109_ + 0 o p_22110_ + a ()Lbhb; m_22099_ + a (Ljava/util/UUID;)Lbhe; m_22111_ + 0 o p_22112_ + a (Lbhe$a;Ljava/util/Set;)V m_22106_ + 0 o p_22107_ + 1 o p_22108_ + a (Lbhe$a;)Ljava/util/Set; m_22104_ + 0 o p_22105_ + b (Ljava/util/UUID;)V m_22120_ + 0 o p_22121_ + b ()D m_22115_ + b (Lbhe$a;)Ljava/util/Collection; m_22116_ + 0 o p_22117_ + b (Lbhe;)V m_22118_ + 0 o p_22119_ + c (Ljava/util/UUID;)Z m_22127_ + 0 o p_22128_ + c (Lbhe;)V m_22125_ + 0 o p_22126_ + c (Lbhe$a;)Ljava/util/Set; m_22123_ + static + 0 o p_22124_ + c ()Ljava/util/Set; m_22122_ + d (Lbhe;)V m_22130_ + 0 o p_22131_ + d ()V m_22129_ + e (Lbhe;)V m_22133_ + 0 o p_22134_ + e ()V m_22132_ + f ()D m_22135_ + g ()Lqr; m_22136_ + h ()D m_22137_ +bhd net/minecraft/world/entity/ai/attributes/AttributeMap + a f_22138_ + b f_22139_ + c f_22140_ + d f_22141_ + ()V + static + (Lbhf;)V + 0 o p_22144_ + a (Ljava/lang/String;)V m_22163_ + static + 0 o p_22164_ + a (Lbhb;Ljava/util/Collection;)V m_22151_ + 0 o p_22152_ + 1 o p_22153_ + a (Lbhb;Lbhe;)V m_22148_ + 0 o p_22149_ + 1 o p_22150_ + a (Lbhc;)V m_22157_ + 0 o p_22158_ + a (Lbhb;Ljava/util/UUID;)Z m_22154_ + 0 o p_22155_ + 1 o p_22156_ + a (Lqr;Lbhb;)V m_22165_ + 0 o p_22166_ + 1 o p_22167_ + a (Lhe;)Lbhc; m_246600_ + 0 o p_250010_ + a (Lhe;Ljava/util/UUID;)Z m_245160_ + 0 o p_250299_ + 1 o p_250415_ + a (Lcom/google/common/collect/Multimap;)V m_22161_ + 0 o p_22162_ + a (Lbhb;)Lbhc; m_22146_ + 0 o p_22147_ + a (Lbhd;)V m_22159_ + 0 o p_22160_ + a (Lqx;)V m_22168_ + 0 o p_22169_ + a ()Ljava/util/Set; m_22145_ + b (Lbhb;Ljava/util/UUID;)D m_22173_ + 0 o p_22174_ + 1 o p_22175_ + b (Lbhc;)V m_22176_ + 0 o p_22177_ + b (Lhe;Ljava/util/UUID;)D m_246117_ + 0 o p_251534_ + 1 o p_250438_ + b (Lcom/google/common/collect/Multimap;)V m_22178_ + 0 o p_22179_ + b (Lbhb;)Z m_22171_ + 0 o p_22172_ + b (Lhe;)Z m_247503_ + 0 o p_248893_ + b ()Ljava/util/Collection; m_22170_ + c (Lbhb;)D m_22181_ + 0 o p_22182_ + c (Lbhc;)Z m_22183_ + static + 0 o p_22184_ + c ()Lqx; m_22180_ + d (Lbhb;)D m_22185_ + 0 o p_22186_ + e (Lbhb;)Lbhc; m_22187_ + 0 o p_22188_ +bhe net/minecraft/world/entity/ai/attributes/AttributeModifier + a f_22189_ + b f_22190_ + c f_22191_ + d f_22192_ + e f_22193_ + ()V + static + (Ljava/util/UUID;Ljava/util/function/Supplier;DLbhe$a;)V + 0 o p_22205_ + 1 o p_22206_ + 2 o p_22207_ + 3 o p_22208_ + (Ljava/util/UUID;Ljava/lang/String;DLbhe$a;)V + 0 o p_22200_ + 1 o p_22201_ + 2 o p_22202_ + 3 o p_22203_ + (Ljava/lang/String;DLbhe$a;)V + 0 o p_22196_ + 1 o p_22197_ + 2 o p_22198_ + a (Lqr;)Lbhe; m_22212_ + static + 0 o p_22213_ + a (Ljava/lang/String;)Ljava/lang/String; m_22210_ + static + 0 o p_22211_ + a ()Ljava/util/UUID; m_22209_ + b (Ljava/lang/String;)Ljava/lang/String; m_22215_ + static + 0 o p_22216_ + b ()Ljava/lang/String; m_22214_ + c ()Lbhe$a; m_22217_ + d ()D m_22218_ + e ()Lqr; m_22219_ + equals (Ljava/lang/Object;)Z equals + 0 o p_22221_ + hashCode ()I hashCode + toString ()Ljava/lang/String; toString +bhe$a net/minecraft/world/entity/ai/attributes/AttributeModifier$Operation + a ADDITION + b MULTIPLY_BASE + c MULTIPLY_TOTAL + d f_22227_ + e f_22228_ + f $VALUES + ()V + static + (Ljava/lang/String;II)V + 0 o p_22232_ + 1 o p_22233_ + 2 o p_22234_ + a (I)Lbhe$a; m_22236_ + static + 0 o p_22237_ + a ()I m_22235_ + b ()[Lbhe$a; m_147358_ + static + valueOf (Ljava/lang/String;)Lbhe$a; valueOf + static + 0 o p_22239_ + values ()[Lbhe$a; values + static +bhf net/minecraft/world/entity/ai/attributes/AttributeSupplier + a f_22241_ + (Ljava/util/Map;)V + 0 o p_22243_ + a (Ljava/util/function/Consumer;Lbhb;)Lbhc; m_22250_ + 0 o p_22251_ + 1 o p_22252_ + a (Lbhb;Ljava/util/UUID;)D m_22247_ + 0 o p_22248_ + 1 o p_22249_ + a (Lbhb;)D m_22245_ + 0 o p_22246_ + a ()Lbhf$a; m_22244_ + static + b (Lbhb;Ljava/util/UUID;)Z m_22255_ + 0 o p_22256_ + 1 o p_22257_ + b (Lbhb;)D m_22253_ + 0 o p_22254_ + c (Lbhb;)Z m_22258_ + 0 o p_22259_ + d (Lbhb;)Lbhc; m_22260_ + 0 o p_22261_ +bhf$a net/minecraft/world/entity/ai/attributes/AttributeSupplier$Builder + a f_22262_ + b f_22263_ + ()V + a (Lbhb;Lbhc;)V m_257157_ + 0 o p_258259_ + 1 o p_258260_ + a ()Lbhf; m_22265_ + a (Lbhb;D)Lbhf$a; m_22268_ + 0 o p_22269_ + 1 o p_22270_ + a (Lbhb;)Lbhf$a; m_22266_ + 0 o p_22267_ + b (Lbhb;)Lbhc; m_22274_ + 0 o p_22275_ +bhg net/minecraft/world/entity/ai/attributes/Attributes + a f_22276_ + b f_22277_ + c f_22278_ + d f_22279_ + e f_22280_ + f f_22281_ + g f_22282_ + h f_22283_ + i f_22284_ + j f_22285_ + k f_22286_ + l f_22287_ + m f_22288_ + ()V + static + ()V + a (Ljava/lang/String;Lbhb;)Lbhb; m_22290_ + static + 0 o p_22291_ + 1 o p_22292_ +bhh net/minecraft/world/entity/ai/attributes/DefaultAttributes + a f_22293_ + b f_22294_ + ()V + static + ()V + a (Lbfn;)Lbhf; m_22297_ + static + 0 o p_22298_ + a ()V m_22296_ + static + a (Lacq;)V m_22299_ + static + 0 o p_22300_ + b (Lbfn;)Z m_22301_ + static + 0 o p_22302_ + c (Lbfn;)Z m_22303_ + static + 0 o p_22304_ + d (Lbfn;)Z m_22305_ + static + 0 o p_22306_ +bhi net/minecraft/world/entity/ai/attributes/RangedAttribute + b f_22307_ + c f_22308_ + (Ljava/lang/String;DDD)V + 0 o p_22310_ + 1 o p_22311_ + 2 o p_22312_ + 3 o p_22313_ + a (D)D m_6740_ + 0 o p_22315_ + d ()D m_147361_ + e ()D m_147362_ +bhj net/minecraft/world/entity/ai/attributes/package-info +bhk net/minecraft/world/entity/ai/behavior/AcquirePoi + a f_147363_ + ()V + a (ZLorg/apache/commons/lang3/mutable/MutableLong;Lit/unimi/dsi/fastutil/longs/Long2ObjectMap;Ljava/util/function/Predicate;Ljava/util/Optional;Lble;)Lblg; m_257164_ + static + 0 o p_258295_ + 1 o p_258296_ + 2 o p_258297_ + 3 o p_258298_ + 4 o p_258299_ + 5 o p_258300_ + a (JLit/unimi/dsi/fastutil/longs/Long2ObjectMap$Entry;)Z m_22336_ + static + 0 o p_22337_ + 1 o p_22338_ + a (Lbpb;ZLorg/apache/commons/lang3/mutable/MutableLong;Lit/unimi/dsi/fastutil/longs/Long2ObjectMap;Ljava/util/function/Predicate;Ljava/util/Optional;Lbld$b;)Lcom/mojang/datafixers/kinds/App; m_257161_ + static + 0 o p_258270_ + 1 o p_258271_ + 2 o p_258272_ + 3 o p_258273_ + 4 o p_258274_ + 5 o p_258275_ + 6 o p_258276_ + a (Lbqz;Ljava/util/function/Predicate;Lgu;Lble;Laif;Ljava/util/Optional;Lbgi;Lit/unimi/dsi/fastutil/longs/Long2ObjectMap;Lhe;)V m_288119_ + static + 0 o p_288772_ + 1 o p_288773_ + 2 o p_288774_ + 3 o p_288775_ + 4 o p_288776_ + 5 o p_288777_ + 6 o p_288778_ + 7 o p_288779_ + 8 o p_288780_ + a (Lbjb;Lble;)Lblg; m_257165_ + static + 0 o p_258301_ + 1 o p_258302_ + a (Ljava/util/function/Predicate;Lbpb;ZLjava/util/Optional;)Lbhs; m_257613_ + static + 0 o p_259994_ + 1 o p_259167_ + 2 o p_259077_ + 3 o p_259824_ + a (Lbpb;Lbjb;Lbld$b;)Lcom/mojang/datafixers/kinds/App; m_257160_ + static + 0 o p_258267_ + 1 o p_258268_ + 2 o p_258269_ + a (Lgu;Lhe;Lgu;)Z m_217106_ + static + 0 o p_217107_ + 1 o p_217108_ + 2 o p_217109_ + a (Laif;Lbgi;Ljava/lang/Byte;)V m_147366_ + static + 0 o p_147367_ + 1 o p_147368_ + 2 o p_147369_ + a (Lit/unimi/dsi/fastutil/longs/Long2ObjectMap;JLgu;)Z m_257159_ + static + 0 o p_258264_ + 1 o p_258265_ + 2 o p_258266_ + a (Ljava/util/function/Predicate;Lbpb;Lbpb;ZLjava/util/Optional;)Lbhs; m_258026_ + static + 0 o p_260007_ + 1 o p_259129_ + 2 o p_260194_ + 3 o p_259108_ + 4 o p_260129_ + a (Lbgb;Ljava/util/Set;)Ldxt; m_217097_ + static + 0 o p_217098_ + 1 o p_217099_ + a (ZLorg/apache/commons/lang3/mutable/MutableLong;Lit/unimi/dsi/fastutil/longs/Long2ObjectMap;Ljava/util/function/Predicate;Lble;Ljava/util/Optional;Laif;Lbgi;J)Z m_257163_ + static + 0 o p_258286_ + 1 o p_258287_ + 2 o p_258288_ + 3 o p_258289_ + 4 o p_258290_ + 5 o p_258291_ + 6 o p_258292_ + 7 o p_258293_ + 8 o p_258294_ + a (Laif;JJ)Lbhk$a; m_263976_ + static + 0 o p_264879_ + 1 o p_264880_ + 2 o p_264881_ +bhk$a net/minecraft/world/entity/ai/behavior/AcquirePoi$JitteredLinearRetry + a f_147373_ + b f_147374_ + c f_147375_ + d f_22373_ + e f_22374_ + f f_22375_ + g f_22376_ + (Lapf;J)V + 0 o p_217111_ + 1 o p_217112_ + a (J)V m_22380_ + 0 o p_22381_ + b (J)Z m_22382_ + 0 o p_22383_ + c (J)Z m_22384_ + 0 o p_22385_ + toString ()Ljava/lang/String; toString +bhl net/minecraft/world/entity/ai/behavior/AnimalMakeLove + c f_147376_ + d f_147377_ + e f_147378_ + f f_22387_ + g f_22388_ + h f_22389_ + (Lbfn;F)V + 0 o p_22391_ + 1 o p_22392_ + a (Lbrl;)Lbrl; m_22409_ + 0 o p_22410_ + a (Laif;Lbrl;J)V m_6735_ + 0 o p_22404_ + 1 o p_22405_ + 2 o p_22406_ + a (Laif;Lbrl;)Z m_6114_ + 0 o p_22401_ + 1 o p_22402_ + a (Lbrl;Lbfz;)Z m_289089_ + 0 o p_289311_ + 1 o p_289312_ + a (Laif;Lbfz;)Z m_6114_ + 0 o p_22394_ + 1 o p_22395_ + a (Laif;Lbfz;J)Z m_6737_ + 0 o p_22412_ + 1 o p_22413_ + 2 o p_22414_ + b (Laif;Lbfz;J)V m_6732_ + 0 o p_22424_ + 1 o p_22425_ + 2 o p_22426_ + b (Laif;Lbrl;J)Z m_6737_ + 0 o p_22416_ + 1 o p_22417_ + 2 o p_22418_ + b (Lbrl;)Z m_22421_ + 0 o p_22422_ + c (Laif;Lbfz;J)V m_6725_ + 0 o p_22434_ + 1 o p_22435_ + 2 o p_22436_ + c (Laif;Lbrl;J)V m_6725_ + 0 o p_22428_ + 1 o p_22429_ + 2 o p_22430_ + c (Lbrl;)Ljava/util/Optional; m_22431_ + 0 o p_22432_ + d (Laif;Lbrl;J)V m_6732_ + 0 o p_22438_ + 1 o p_22439_ + 2 o p_22440_ + d (Laif;Lbfz;J)V m_6735_ + 0 o p_22397_ + 1 o p_22398_ + 2 o p_22399_ +bhm net/minecraft/world/entity/ai/behavior/AnimalPanic + c f_147379_ + d f_147380_ + e f_196637_ + f f_147382_ + g f_273847_ + h f_147383_ + i f_273842_ + ()V + static + (FLjava/util/function/Predicate;)V + 0 o p_275357_ + 1 o p_275369_ + (F)V + 0 o p_147385_ + a (Lbgi;)Z m_289090_ + static + 0 o p_289313_ + a (Laif;Lbgi;J)Z m_6737_ + 0 o p_147391_ + 1 o p_147392_ + 2 o p_147393_ + a (Lcls;Lbfj;)Ljava/util/Optional; m_196641_ + 0 o p_196642_ + 1 o p_196643_ + a (Lbgi;Laif;)Leei; m_196638_ + 0 o p_196639_ + 1 o p_196640_ + a (Laif;Lbgi;)Z m_6114_ + 0 o p_275286_ + 1 o p_275721_ + a (Lcls;Lgu;)Z m_284017_ + static + 0 o p_284706_ + 1 o p_284707_ + a (Laif;Lbfz;)Z m_6114_ + 0 o p_275362_ + 1 o p_275525_ + a (Laif;Lbfz;J)Z m_6737_ + 0 o p_147395_ + 1 o p_147396_ + 2 o p_147397_ + b (Laif;Lbgi;J)V m_6735_ + 0 o p_147399_ + 1 o p_147400_ + 2 o p_147401_ + b (Laif;Lbfz;J)V m_6732_ + 0 o p_217114_ + 1 o p_217115_ + 2 o p_217116_ + b (Lcls;Lgu;)Z m_284016_ + static + 0 o p_284704_ + 1 o p_284705_ + c (Laif;Lbfz;J)V m_6725_ + 0 o p_147407_ + 1 o p_147408_ + 2 o p_147409_ + c (Lcls;Lgu;)Z m_196644_ + static + 0 o p_196645_ + 1 o p_196646_ + c (Laif;Lbgi;J)V m_6732_ + 0 o p_217118_ + 1 o p_217119_ + 2 o p_217120_ + d (Laif;Lbfz;J)V m_6735_ + 0 o p_147387_ + 1 o p_147388_ + 2 o p_147389_ + d (Laif;Lbgi;J)V m_6725_ + 0 o p_147403_ + 1 o p_147404_ + 2 o p_147405_ +bhn net/minecraft/world/entity/ai/behavior/AssignProfessionFromJobSite + ()V + a (Lhd;Laif;)Ljava/util/Optional; m_22465_ + static + 0 o p_22466_ + 1 o p_22467_ + a (Lbld$b;)Lcom/mojang/datafixers/kinds/App; m_257168_ + static + 0 o p_258312_ + a (Lhe;Lbye;)Z m_217123_ + static + 0 o p_217124_ + 1 o p_217125_ + a (Lbld$b;Lble;Lble;Laif;Lbyb;J)Z m_257167_ + static + 0 o p_258306_ + 1 o p_258307_ + 2 o p_258308_ + 3 o p_258309_ + 4 o p_258310_ + 5 o p_258311_ + a ()Lbhs; m_257634_ + static + a (Lbyb;Laif;Lbye;)V m_22461_ + static + 0 o p_22462_ + 1 o p_22463_ + 2 o p_22464_ + a (Lbld$b;Lble;Lble;)Lblg; m_257166_ + static + 0 o p_258303_ + 1 o p_258304_ + 2 o p_258305_ + a (Lhe;)Ljava/util/Optional; m_257169_ + static + 0 o p_258313_ +bho net/minecraft/world/entity/ai/behavior/BabyFollowAdult + ()V + a (Lbld$b;Lbdi;Ljava/util/function/Function;Lble;Lble;Lble;)Lblg; m_257170_ + static + 0 o p_258314_ + 1 o p_258315_ + 2 o p_258316_ + 3 o p_258317_ + 4 o p_258318_ + 5 o p_258319_ + a (Lbdi;Ljava/util/function/Function;)Lbjb; m_257631_ + static + 0 o p_259321_ + 1 o p_259190_ + a (Lbdi;F)Lbjb; m_257685_ + static + 0 o p_260109_ + 1 o p_259621_ + a (Lbdi;Ljava/util/function/Function;Lbld$b;)Lcom/mojang/datafixers/kinds/App; m_257172_ + static + 0 o p_258329_ + 1 o p_258330_ + 2 o p_258331_ + a (FLbfz;)Ljava/lang/Float; m_147419_ + static + 0 o p_147420_ + 1 o p_147421_ + a (Lbld$b;Lble;Lbdi;Ljava/util/function/Function;Lble;Lble;Laif;Lbfe;J)Z m_257171_ + static + 0 o p_258320_ + 1 o p_258321_ + 2 o p_258322_ + 3 o p_258323_ + 4 o p_258324_ + 5 o p_258325_ + 6 o p_258326_ + 7 o p_258327_ + 8 o p_258328_ +bhp net/minecraft/world/entity/ai/behavior/BackUpIfTooClose + ()V + a (IFLbld$b;)Lcom/mojang/datafixers/kinds/App; m_257511_ + static + 0 o p_260256_ + 1 o p_259924_ + 2 o p_260278_ + a (Lbld$b;IFLble;Lble;Lble;Lble;)Lblg; m_257668_ + static + 0 o p_259871_ + 1 o p_259132_ + 2 o p_259885_ + 3 o p_260206_ + 4 o p_259953_ + 5 o p_259993_ + 6 o p_259209_ + a (Lbld$b;Lble;ILble;Lble;FLaif;Lbgb;J)Z m_257486_ + static + 0 o p_260261_ + 1 o p_259798_ + 2 o p_260104_ + 3 o p_259804_ + 4 o p_259683_ + 5 o p_259487_ + 6 o p_259617_ + 7 o p_260038_ + 8 o p_259374_ + a (IF)Lbjb; m_257698_ + static + 0 o p_259782_ + 1 o p_259071_ +bhq net/minecraft/world/entity/ai/behavior/BecomePassiveIfMemoryPresent + ()V + a (Lbpb;I)Lbhs; m_257393_ + static + 0 o p_259988_ + 1 o p_260143_ + a (Lbpb;ILbld$b;)Lcom/mojang/datafixers/kinds/App; m_257872_ + static + 0 o p_260040_ + 1 o p_259338_ + 2 o p_259944_ + a (ILble;Lble;Lble;)Lblg; m_257748_ + static + 0 o p_260288_ + 1 o p_260120_ + 2 o p_259674_ + 3 o p_259822_ + a (Lbpb;)Ljava/lang/String; m_257592_ + static + 0 o p_259260_ + a (Lble;ILble;Laif;Lbfz;J)Z m_258050_ + static + 0 o p_259718_ + 1 o p_259151_ + 2 o p_259595_ + 3 o p_260328_ + 4 o p_259412_ + 5 o p_259725_ +bhr net/minecraft/world/entity/ai/behavior/Behavior + a f_147431_ + b f_22522_ + c f_22523_ + d f_22524_ + e f_22525_ + f f_22526_ + (Ljava/util/Map;II)V + 0 o p_22533_ + 1 o p_22534_ + 2 o p_22535_ + (Ljava/util/Map;)V + 0 o p_22528_ + (Ljava/util/Map;I)V + 0 o p_22530_ + 1 o p_22531_ + a ()Lbhr$a; m_22536_ + a (Laif;Lbfz;)Z m_6114_ + 0 o p_22538_ + 1 o p_22539_ + a (Lbfz;)Z m_22543_ + 0 o p_22544_ + a (J)Z m_7773_ + 0 o p_22537_ + a (Laif;Lbfz;J)Z m_6737_ + 0 o p_22545_ + 1 o p_22546_ + 2 o p_22547_ + b (Laif;Lbfz;J)V m_6732_ + 0 o p_22548_ + 1 o p_22549_ + 2 o p_22550_ + b ()Ljava/lang/String; m_22566_ + c (Laif;Lbfz;J)V m_6725_ + 0 o p_22551_ + 1 o p_22552_ + 2 o p_22553_ + d (Laif;Lbfz;J)V m_6735_ + 0 o p_22540_ + 1 o p_22541_ + 2 o p_22542_ + e (Laif;Lbfz;J)Z m_22554_ + 0 o p_22555_ + 1 o p_22556_ + 2 o p_22557_ + f (Laif;Lbfz;J)V m_22558_ + 0 o p_22559_ + 1 o p_22560_ + 2 o p_22561_ + g (Laif;Lbfz;J)V m_22562_ + 0 o p_22563_ + 1 o p_22564_ + 2 o p_22565_ +bhr$a net/minecraft/world/entity/ai/behavior/Behavior$Status + a STOPPED + b RUNNING + c $VALUES + ()V + static + (Ljava/lang/String;I)V + 0 o p_22572_ + 1 o p_22573_ + a ()[Lbhr$a; m_147432_ + static + valueOf (Ljava/lang/String;)Lbhr$a; valueOf + static + 0 o p_22575_ + values ()[Lbhr$a; values + static +bhs net/minecraft/world/entity/ai/behavior/BehaviorControl + a ()Lbhr$a; m_22536_ + b ()Ljava/lang/String; m_22566_ + e (Laif;Lbfz;J)Z m_22554_ + 0 o p_259494_ + 1 o p_259608_ + 2 o p_260186_ + f (Laif;Lbfz;J)V m_22558_ + 0 o p_259926_ + 1 o p_260016_ + 2 o p_259089_ + g (Laif;Lbfz;J)V m_22562_ + 0 o p_259056_ + 1 o p_259620_ + 2 o p_260105_ +bht net/minecraft/world/entity/ai/behavior/BehaviorUtils + ()V + a (Lbfz;Lgu;FI)V m_22617_ + static + 0 o p_22618_ + 1 o p_22619_ + 2 o p_22620_ + 3 o p_22621_ + a (Lbfz;Lbje;FI)V m_217128_ + static + 0 o p_217129_ + 1 o p_217130_ + 2 o p_217131_ + 3 o p_217132_ + a (Lbfz;Ljava/util/UUID;)Lbfj; m_289091_ + static + 0 o p_289314_ + 1 o p_289315_ + a (Lbha;Lbpb;Lbfn;)Z m_22639_ + static + 0 o p_22640_ + 1 o p_22641_ + 2 o p_22642_ + a (Lbfn;Lbfz;)Z m_289092_ + static + 0 o p_289316_ + 1 o p_289317_ + a (Lbfz;Lcfz;Leei;Leei;F)V m_217133_ + static + 0 o p_217134_ + 1 o p_217135_ + 2 o p_217136_ + 3 o p_217137_ + 4 o p_217138_ + a (Laif;ILhx;)Z m_186014_ + static + 0 o p_186015_ + 1 o p_186016_ + 2 o p_186017_ + a (Lbfz;Lbfz;Lbfz;)Lbfz; m_22606_ + static + 0 o p_22607_ + 1 o p_22608_ + 2 o p_22609_ + a (Lbfz;Lcfz;Leei;)V m_22613_ + static + 0 o p_22614_ + 1 o p_22615_ + 2 o p_22616_ + a (Lbfz;Ljava/util/Optional;Lbfz;)Lbfz; m_22625_ + static + 0 o p_22626_ + 1 o p_22627_ + 2 o p_22628_ + a (Lbfz;Lbfz;F)V m_22602_ + static + 0 o p_22603_ + 1 o p_22604_ + 2 o p_22605_ + a (Lbha;Lbpb;Ljava/util/function/Predicate;)Z m_22643_ + static + 0 o p_22644_ + 1 o p_22645_ + 2 o p_22646_ + a (Lbfz;Lbpb;)Ljava/util/Optional; m_22610_ + static + 0 o p_22611_ + 1 o p_22612_ + a (Lbfz;Lbfz;D)Z m_22598_ + static + 0 o p_22599_ + 1 o p_22600_ + 2 o p_22601_ + a (Lbfz;)Z m_217126_ + static + 0 o p_217127_ + a (Lbha;Lbfz;)Z m_22636_ + static + 0 o p_22637_ + 1 o p_22638_ + a (Lbfz;Lbfj;FI)V m_22590_ + static + 0 o p_22591_ + 1 o p_22592_ + 2 o p_22593_ + 3 o p_22594_ + a (Lbfz;Lbfz;)V m_22595_ + static + 0 o p_22596_ + 1 o p_22597_ + a (Lbfj;)Lbfz; m_186018_ + static + 0 o p_186019_ + a (Lbgb;Lbfz;I)Z m_22632_ + static + 0 o p_22633_ + 1 o p_22634_ + 2 o p_22635_ + a (Lbgi;II)Leei; m_147444_ + static + 0 o p_147445_ + 1 o p_147446_ + 2 o p_147447_ + a (Laif;Lhx;I)Lhx; m_22581_ + static + 0 o p_22582_ + 1 o p_22583_ + 2 o p_22584_ + b (Lbha;Lbfz;)Z m_186035_ + static + 0 o p_186036_ + 1 o p_186037_ + b (Lbfz;Lbfz;F)V m_22660_ + static + 0 o p_22661_ + 1 o p_22662_ + 2 o p_22663_ + b (Lbfz;Lbfz;)Z m_22667_ + static + 0 o p_22668_ + 1 o p_22669_ + c (Lbfz;Lbfz;)V m_22670_ + static + 0 o p_22671_ + 1 o p_22672_ +bhu net/minecraft/world/entity/ai/behavior/BlockPosTracker + a f_22673_ + b f_22674_ + (Leei;)V + 0 o p_251060_ + (Lgu;)V + 0 o p_22676_ + a ()Leei; m_7024_ + a (Lbfz;)Z m_6826_ + 0 o p_22679_ + b ()Lgu; m_6675_ + toString ()Ljava/lang/String; toString +bhv net/minecraft/world/entity/ai/behavior/CelebrateVillagersSurvivedRaid + c f_22682_ + (II)V + 0 o p_22684_ + 1 o p_22685_ + a (Laif;Lbyb;)Z m_6114_ + 0 o p_22690_ + 1 o p_22691_ + a (Laif;Lbfz;)Z m_6114_ + 0 o p_22687_ + 1 o p_22688_ + a (Laif;Lbyb;J)Z m_6737_ + 0 o p_22693_ + 1 o p_22694_ + 2 o p_22695_ + a (Lcen;I)Lcfz; m_22696_ + 0 o p_22697_ + 1 o p_22698_ + a (Laif;Lbfz;J)Z m_6737_ + 0 o p_22700_ + 1 o p_22701_ + 2 o p_22702_ + b (Laif;Lbfz;J)V m_6732_ + 0 o p_22708_ + 1 o p_22709_ + 2 o p_22710_ + b (Laif;Lbyb;J)V m_6732_ + 0 o p_22704_ + 1 o p_22705_ + 2 o p_22706_ + c (Laif;Lbfz;J)V m_6725_ + 0 o p_22716_ + 1 o p_22717_ + 2 o p_22718_ + c (Laif;Lbyb;J)V m_6725_ + 0 o p_22712_ + 1 o p_22713_ + 2 o p_22714_ +bhw net/minecraft/world/entity/ai/behavior/CopyMemoryWithExpiry + ()V + a (Ljava/util/function/Predicate;Lbld$b;Lbdi;Lble;Lble;)Lblg; m_257801_ + static + 0 o p_260068_ + 1 o p_259908_ + 2 o p_259951_ + 3 o p_259306_ + 4 o p_259907_ + a (Ljava/util/function/Predicate;Lble;Lbld$b;Lble;Lbdi;Laif;Lbfz;J)Z m_263977_ + static + 0 o p_264882_ + 1 o p_264883_ + 2 o p_264884_ + 3 o p_264885_ + 4 o p_264886_ + 5 o p_264887_ + 6 o p_264888_ + 7 o p_264889_ + a (Lbpb;Lbpb;Ljava/util/function/Predicate;Lbdi;Lbld$b;)Lcom/mojang/datafixers/kinds/App; m_258042_ + static + 0 o p_259169_ + 1 o p_259810_ + 2 o p_259183_ + 3 o p_259629_ + 4 o p_260141_ + a (Ljava/util/function/Predicate;Lbpb;Lbpb;Lbdi;)Lbhs; m_257819_ + static + 0 o p_260270_ + 1 o p_260344_ + 2 o p_260014_ + 3 o p_259596_ +bhx net/minecraft/world/entity/ai/behavior/CountDownCooldownTicks + c f_147460_ + (Lbpb;)V + 0 o p_147462_ + a (J)Z m_7773_ + 0 o p_147464_ + a (Laif;Lbfz;J)Z m_6737_ + 0 o p_147468_ + 1 o p_147469_ + 2 o p_147470_ + b (Lbfz;)Ljava/util/Optional; m_147465_ + 0 o p_147466_ + b (Laif;Lbfz;J)V m_6732_ + 0 o p_147472_ + 1 o p_147473_ + 2 o p_147474_ + c (Laif;Lbfz;J)V m_6725_ + 0 o p_147476_ + 1 o p_147477_ + 2 o p_147478_ +bhy net/minecraft/world/entity/ai/behavior/Croak + c f_217139_ + d f_217140_ + e f_217141_ + ()V + a (Laif;Lbta;J)Z m_6737_ + 0 o p_217154_ + 1 o p_217155_ + 2 o p_217156_ + a (Laif;Lbta;)Z m_6114_ + 0 o p_217151_ + 1 o p_217152_ + a (Laif;Lbfz;)Z m_6114_ + 0 o p_217144_ + 1 o p_217145_ + a (Laif;Lbfz;J)Z m_6737_ + 0 o p_217158_ + 1 o p_217159_ + 2 o p_217160_ + b (Laif;Lbta;J)V m_6735_ + 0 o p_217162_ + 1 o p_217163_ + 2 o p_217164_ + b (Laif;Lbfz;J)V m_6732_ + 0 o p_217166_ + 1 o p_217167_ + 2 o p_217168_ + c (Laif;Lbfz;J)V m_6725_ + 0 o p_217174_ + 1 o p_217175_ + 2 o p_217176_ + c (Laif;Lbta;J)V m_6732_ + 0 o p_217170_ + 1 o p_217171_ + 2 o p_217172_ + d (Laif;Lbta;J)V m_6725_ + 0 o p_217178_ + 1 o p_217179_ + 2 o p_217180_ + d (Laif;Lbfz;J)V m_6735_ + 0 o p_217147_ + 1 o p_217148_ + 2 o p_217149_ +bhz net/minecraft/world/entity/ai/behavior/CrossbowAttack + c f_147479_ + d f_22771_ + e f_22772_ + ()V + a (Lbgb;Lbfz;)V m_22786_ + 0 o p_22787_ + 1 o p_22788_ + a (Laif;Lbgb;)Z m_6114_ + 0 o p_22778_ + 1 o p_22779_ + a (Laif;Lbgb;J)Z m_6737_ + 0 o p_22781_ + 1 o p_22782_ + 2 o p_22783_ + a (Laif;Lbfz;)Z m_6114_ + 0 o p_22775_ + 1 o p_22776_ + a (Laif;Lbfz;J)Z m_6737_ + 0 o p_22790_ + 1 o p_22791_ + 2 o p_22792_ + b (Lbfz;)Lbfz; m_22784_ + static + 0 o p_22785_ + b (Laif;Lbgb;J)V m_6725_ + 0 o p_22794_ + 1 o p_22795_ + 2 o p_22796_ + b (Lbgb;Lbfz;)V m_22797_ + 0 o p_22798_ + 1 o p_22799_ + b (Laif;Lbfz;J)V m_6732_ + 0 o p_22801_ + 1 o p_22802_ + 2 o p_22803_ + c (Laif;Lbfz;J)V m_6725_ + 0 o p_22809_ + 1 o p_22810_ + 2 o p_22811_ + c (Laif;Lbgb;J)V m_6732_ + 0 o p_22805_ + 1 o p_22806_ + 2 o p_22807_ +bhz$a net/minecraft/world/entity/ai/behavior/CrossbowAttack$CrossbowState + a UNCHARGED + b CHARGING + c CHARGED + d READY_TO_ATTACK + e $VALUES + ()V + static + (Ljava/lang/String;I)V + 0 o p_22819_ + 1 o p_22820_ + a ()[Lbhz$a; m_147480_ + static + valueOf (Ljava/lang/String;)Lbhz$a; valueOf + static + 0 o p_22822_ + values ()[Lbhz$a; values + static +bi net/minecraft/advancements/critereon/EnchantedItemTrigger + a f_27664_ + ()V + static + ()V + a (Laig;Lcfz;I)V m_27668_ + 0 o p_27669_ + 1 o p_27670_ + 2 o p_27671_ + a ()Lacq; m_7295_ + a (Lcfz;ILbi$a;)Z m_27672_ + static + 0 o p_27673_ + 1 o p_27674_ + 2 o p_27675_ + a (Lcom/google/gson/JsonObject;Lba;Lbe;)Lbi$a; m_7214_ + 0 o p_286526_ + 1 o p_286279_ + 2 o p_286881_ + b (Lcom/google/gson/JsonObject;Lba;Lbe;)Lar; m_7214_ + 0 o p_286360_ + 1 o p_286904_ + 2 o p_286441_ +bi$a net/minecraft/advancements/critereon/EnchantedItemTrigger$TriggerInstance + a f_27685_ + b f_27686_ + (Lba;Lbz;Lcj$d;)V + 0 o p_286871_ + 1 o p_286640_ + 2 o p_286367_ + a (Lct;)Lcom/google/gson/JsonObject; m_7683_ + 0 o p_27695_ + a (Lcfz;I)Z m_27691_ + 0 o p_27692_ + 1 o p_27693_ + c ()Lbi$a; m_27696_ + static +bia net/minecraft/world/entity/ai/behavior/DismountOrSkipMounting + ()V + a (Lbfz;Lbfj;I)Z m_257447_ + static + 0 o p_259293_ + 1 o p_260023_ + 2 o p_259048_ + a (Lbld$b;Lble;ILjava/util/function/BiPredicate;Laif;Lbfz;J)Z m_258045_ + static + 0 o p_260286_ + 1 o p_259254_ + 2 o p_259624_ + 3 o p_259268_ + 4 o p_259287_ + 5 o p_259246_ + 6 o p_259462_ + a (ILjava/util/function/BiPredicate;)Lbhs; m_257459_ + static + 0 o p_259945_ + 1 o p_259837_ + a (ILjava/util/function/BiPredicate;Lbld$b;)Lcom/mojang/datafixers/kinds/App; m_257906_ + static + 0 o p_259078_ + 1 o p_260179_ + 2 o p_259780_ + a (Lbld$b;ILjava/util/function/BiPredicate;Lble;)Lblg; m_257527_ + static + 0 o p_259976_ + 1 o p_259414_ + 2 o p_259894_ + 3 o p_259326_ +bib net/minecraft/world/entity/ai/behavior/DoNothing + a f_256900_ + b f_256804_ + c f_256875_ + d f_256966_ + (II)V + 0 o p_22840_ + 1 o p_22841_ + a ()Lbhr$a; m_22536_ + b ()Ljava/lang/String; m_22566_ + e (Laif;Lbfz;J)Z m_22554_ + 0 o p_259135_ + 1 o p_259195_ + 2 o p_259189_ + f (Laif;Lbfz;J)V m_22558_ + 0 o p_259225_ + 1 o p_259218_ + 2 o p_259803_ + g (Laif;Lbfz;J)V m_22562_ + 0 o p_260265_ + 1 o p_259336_ + 2 o p_259826_ +bic net/minecraft/world/entity/ai/behavior/EntityTracker + a f_22846_ + b f_22847_ + (Lbfj;Z)V + 0 o p_22849_ + 1 o p_22850_ + a ()Leei; m_7024_ + a (Lbfz;)Z m_6826_ + 0 o p_22853_ + b ()Lgu; m_6675_ + c ()Lbfj; m_147481_ + toString ()Ljava/lang/String; toString +bid net/minecraft/world/entity/ai/behavior/EraseMemoryIf + ()V + a (Ljava/util/function/Predicate;Lbpb;)Lbhs; m_258093_ + static + 0 o p_260241_ + 1 o p_259406_ + a (Ljava/util/function/Predicate;Lble;Laif;Lbfz;J)Z m_257682_ + static + 0 o p_259544_ + 1 o p_259587_ + 2 o p_259033_ + 3 o p_259929_ + 4 o p_260086_ + a (Ljava/util/function/Predicate;Lble;)Lblg; m_257964_ + static + 0 o p_259878_ + 1 o p_259127_ + a (Lbpb;Ljava/util/function/Predicate;Lbld$b;)Lcom/mojang/datafixers/kinds/App; m_257665_ + static + 0 o p_259835_ + 1 o p_259354_ + 2 o p_260008_ +bie net/minecraft/world/entity/ai/behavior/FollowTemptation + c f_147482_ + d f_147483_ + e f_147484_ + f f_283928_ + (Ljava/util/function/Function;Ljava/util/function/Function;)V + 0 o p_288997_ + 1 o p_288972_ + (Ljava/util/function/Function;)V + 0 o p_147486_ + a (Laif;Lbgi;J)Z m_6737_ + 0 o p_147494_ + 1 o p_147495_ + 2 o p_147496_ + a (Lbgi;)F m_147497_ + 0 o p_147498_ + a (J)Z m_7773_ + 0 o p_147488_ + a (Laif;Lbfz;J)Z m_6737_ + 0 o p_147501_ + 1 o p_147502_ + 2 o p_147503_ + b (Laif;Lbgi;J)V m_6735_ + 0 o p_147505_ + 1 o p_147506_ + 2 o p_147507_ + b (Laif;Lbfz;J)V m_6732_ + 0 o p_147511_ + 1 o p_147512_ + 2 o p_147513_ + b (Lbgi;)Ljava/util/Optional; m_147508_ + 0 o p_147509_ + b (Lbfz;)Ljava/lang/Double; m_288122_ + static + 0 o p_288784_ + c (Laif;Lbfz;J)V m_6725_ + 0 o p_147519_ + 1 o p_147520_ + 2 o p_147521_ + c ()Lcom/google/common/collect/ImmutableMap; m_147499_ + static + c (Laif;Lbgi;J)V m_6732_ + 0 o p_147515_ + 1 o p_147516_ + 2 o p_147517_ + d (Laif;Lbfz;J)V m_6735_ + 0 o p_147490_ + 1 o p_147491_ + 2 o p_147492_ + d (Laif;Lbgi;J)V m_6725_ + 0 o p_147523_ + 1 o p_147524_ + 2 o p_147525_ +bif net/minecraft/world/entity/ai/behavior/GateBehavior + a f_256759_ + b f_22868_ + c f_22869_ + d f_22870_ + e f_22871_ + f f_256778_ + (Ljava/util/Map;Ljava/util/Set;Lbif$a;Lbif$b;Ljava/util/List;)V + 0 o p_22873_ + 1 o p_22874_ + 2 o p_22875_ + 3 o p_22876_ + 4 o p_22877_ + a (Lbhs;)Z m_257178_ + static + 0 o p_258343_ + a ()Lbhr$a; m_22536_ + a (Lcom/mojang/datafixers/util/Pair;)V m_257173_ + 0 o p_258332_ + a (Laif;Lbfz;JLbhs;)V m_257176_ + static + 0 o p_258338_ + 1 o p_258339_ + 2 o p_258340_ + 3 o p_258341_ + a (Lbfz;)Z m_257655_ + 0 o p_259419_ + b (Lbhs;)Z m_257175_ + static + 0 o p_258337_ + b (Laif;Lbfz;JLbhs;)V m_257174_ + static + 0 o p_258333_ + 1 o p_258334_ + 2 o p_258335_ + 3 o p_258336_ + b ()Ljava/lang/String; m_22566_ + c (Lbhs;)Z m_257179_ + static + 0 o p_258344_ + d (Lbhs;)Z m_257177_ + static + 0 o p_258342_ + e (Laif;Lbfz;J)Z m_22554_ + 0 o p_259362_ + 1 o p_259746_ + 2 o p_259560_ + f (Laif;Lbfz;J)V m_22558_ + 0 o p_259934_ + 1 o p_259790_ + 2 o p_260259_ + g (Laif;Lbfz;J)V m_22562_ + 0 o p_259962_ + 1 o p_260250_ + 2 o p_259847_ + toString ()Ljava/lang/String; toString +bif$a net/minecraft/world/entity/ai/behavior/GateBehavior$OrderPolicy + a ORDERED + b SHUFFLED + c f_22924_ + d $VALUES + ()V + static + (Ljava/lang/String;ILjava/util/function/Consumer;)V + 0 o p_22928_ + 1 o p_22929_ + 2 o p_22930_ + a (Lbjz;)V m_147527_ + 0 o p_147528_ + a ()[Lbif$a; m_147526_ + static + b (Lbjz;)V m_147529_ + static + 0 o p_147530_ + valueOf (Ljava/lang/String;)Lbif$a; valueOf + static + 0 o p_22936_ + values ()[Lbif$a; values + static +bif$b net/minecraft/world/entity/ai/behavior/GateBehavior$RunningPolicy + a RUN_ONE + b TRY_ALL + c $VALUES + ()V + static + (Ljava/lang/String;I)V + 0 o p_22943_ + 1 o p_22944_ + a (Ljava/util/stream/Stream;Laif;Lbfz;J)V m_142144_ + 0 o p_147532_ + 1 o p_147533_ + 2 o p_147534_ + 3 o p_147535_ + a ()[Lbif$b; m_147531_ + static + valueOf (Ljava/lang/String;)Lbif$b; valueOf + static + 0 o p_22954_ + values ()[Lbif$b; values + static +bif$b$1 net/minecraft/world/entity/ai/behavior/GateBehavior$RunningPolicy$1 + (Ljava/lang/String;I)V + 0 o p_22957_ + 1 o p_22958_ + a (Laif;Lbfz;JLbhs;)Z m_257180_ + static + 0 o p_258345_ + 1 o p_258346_ + 2 o p_258347_ + 3 o p_258348_ + a (Lbhs;)Z m_257181_ + static + 0 o p_258349_ + a (Ljava/util/stream/Stream;Laif;Lbfz;J)V m_142144_ + 0 o p_147537_ + 1 o p_147538_ + 2 o p_147539_ + 3 o p_147540_ +bif$b$2 net/minecraft/world/entity/ai/behavior/GateBehavior$RunningPolicy$2 + (Ljava/lang/String;I)V + 0 o p_22972_ + 1 o p_22973_ + a (Lbhs;)Z m_257182_ + static + 0 o p_258350_ + a (Ljava/util/stream/Stream;Laif;Lbfz;J)V m_142144_ + 0 o p_147542_ + 1 o p_147543_ + 2 o p_147544_ + 3 o p_147545_ + a (Laif;Lbfz;JLbhs;)V m_257183_ + static + 0 o p_258351_ + 1 o p_258352_ + 2 o p_258353_ + 3 o p_258354_ +big net/minecraft/world/entity/ai/behavior/GiveGiftToHero + c f_147546_ + d f_147547_ + e f_147548_ + f f_147549_ + g f_147550_ + h f_147551_ + i f_22987_ + j f_22988_ + k f_22989_ + ()V + static + (I)V + 0 o p_22992_ + a (Lbyb;Lbyo;)Z m_23014_ + 0 o p_23015_ + 1 o p_23016_ + a (Ljava/util/HashMap;)V m_23019_ + static + 0 o p_23020_ + a (Lbyb;Lbfz;)V m_23011_ + 0 o p_23012_ + 1 o p_23013_ + a (Lbyb;)Ljava/util/List; m_23009_ + 0 o p_23010_ + a (Laif;Lbyb;)Z m_6114_ + 0 o p_23003_ + 1 o p_23004_ + a (Laif;Lbyb;J)V m_6735_ + 0 o p_23006_ + 1 o p_23007_ + 2 o p_23008_ + a (Laif;)I m_22993_ + static + 0 o p_22994_ + a (Lbyo;)Z m_23017_ + 0 o p_23018_ + a (Laif;Lbfz;)Z m_6114_ + 0 o p_22996_ + 1 o p_22997_ + a (Laif;Lbfz;J)Z m_6737_ + 0 o p_23022_ + 1 o p_23023_ + 2 o p_23024_ + b (Laif;Lbfz;J)V m_6732_ + 0 o p_23032_ + 1 o p_23033_ + 2 o p_23034_ + b (Laif;Lbyb;J)Z m_6737_ + 0 o p_23026_ + 1 o p_23027_ + 2 o p_23028_ + b (Lbyb;)Z m_23029_ + 0 o p_23030_ + c (Laif;Lbfz;J)V m_6725_ + 0 o p_23042_ + 1 o p_23043_ + 2 o p_23044_ + c (Lbyb;)Ljava/util/Optional; m_23039_ + 0 o p_23040_ + c (Laif;Lbyb;J)V m_6725_ + 0 o p_23036_ + 1 o p_23037_ + 2 o p_23038_ + d (Laif;Lbfz;J)V m_6735_ + 0 o p_22999_ + 1 o p_23000_ + 2 o p_23001_ + d (Laif;Lbyb;J)V m_6732_ + 0 o p_23046_ + 1 o p_23047_ + 2 o p_23048_ +bih net/minecraft/world/entity/ai/behavior/GoAndGiveItemsToTarget + c f_217188_ + d f_217189_ + e f_217190_ + f f_217191_ + (Ljava/util/function/Function;FI)V + 0 o p_249894_ + 1 o p_249937_ + 2 o p_249620_ + a (Lbje;)Leei; m_217211_ + static + 0 o p_217212_ + a (Lbfz;Lcfz;Leei;)V m_217207_ + static + 0 o p_217208_ + 1 o p_217209_ + 2 o p_217210_ + a (Lbfz;Lbje;)V m_217204_ + 0 o p_217205_ + 1 o p_217206_ + a (Laif;Lbfz;)Z m_6114_ + 0 o p_217196_ + 1 o p_217197_ + a (Lbje;Lcfz;Laig;)V m_217213_ + 0 o p_217214_ + 1 o p_217215_ + 2 o p_217216_ + a (Laif;Lbfz;J)Z m_6737_ + 0 o p_217218_ + 1 o p_217219_ + 2 o p_217220_ + b (Lbfz;)Z m_217202_ + 0 o p_217203_ + b (Lbje;Lcfz;Laig;)V m_217221_ + 0 o p_217222_ + 1 o p_217223_ + 2 o p_217224_ + c (Laif;Lbfz;J)V m_6725_ + 0 o p_217226_ + 1 o p_217227_ + 2 o p_217228_ + d (Laif;Lbfz;J)V m_6735_ + 0 o p_217199_ + 1 o p_217200_ + 2 o p_217201_ +bii net/minecraft/world/entity/ai/behavior/GoToClosestVillage + ()V + a (FILbld$b;)Lcom/mojang/datafixers/kinds/App; m_257184_ + static + 0 o p_258355_ + 1 o p_258356_ + 2 o p_258357_ + a (FILble;)Lblg; m_257186_ + static + 0 o p_258364_ + 1 o p_258365_ + 2 o p_258366_ + a (Lble;FILaif;Lbyb;J)Z m_274190_ + static + 0 o p_274967_ + 1 o p_274968_ + 2 o p_274969_ + 3 o p_274970_ + 4 o p_274971_ + 5 o p_274972_ + a (FI)Lbhs; m_257375_ + static + 0 o p_260342_ + 1 o p_259691_ + a (Lbqz;Lgu;)D m_147552_ + static + 0 o p_147553_ + 1 o p_147554_ +bij net/minecraft/world/entity/ai/behavior/GoToPotentialJobSite + c f_23096_ + d f_147555_ + (F)V + 0 o p_23098_ + a (Laif;Lbyb;)Z m_6114_ + 0 o p_23103_ + 1 o p_23104_ + a (Laif;Lhd;)V m_23109_ + static + 0 o p_23110_ + 1 o p_23111_ + a (Lbzz;)Ljava/lang/Boolean; m_23114_ + static + 0 o p_23115_ + a (Lhe;)Z m_217229_ + static + 0 o p_217230_ + a (Laif;Lbfz;)Z m_6114_ + 0 o p_23100_ + 1 o p_23101_ + a (Laif;Lbyb;J)Z m_6737_ + 0 o p_23106_ + 1 o p_23107_ + 2 o p_23108_ + a (Laif;Lbfz;J)Z m_6737_ + 0 o p_23117_ + 1 o p_23118_ + 2 o p_23119_ + b (Laif;Lbfz;J)V m_6732_ + 0 o p_23125_ + 1 o p_23126_ + 2 o p_23127_ + b (Laif;Lbyb;J)V m_6725_ + 0 o p_23121_ + 1 o p_23122_ + 2 o p_23123_ + c (Laif;Lbfz;J)V m_6725_ + 0 o p_23133_ + 1 o p_23134_ + 2 o p_23135_ + c (Laif;Lbyb;J)V m_6732_ + 0 o p_23129_ + 1 o p_23130_ + 2 o p_23131_ +bik net/minecraft/world/entity/ai/behavior/GoToTargetLocation + ()V + a (Lbgb;Lgu;)Lgu; m_217250_ + static + 0 o p_217251_ + 1 o p_217252_ + a (Lbpb;IFLbld$b;)Lcom/mojang/datafixers/kinds/App; m_257423_ + static + 0 o p_260075_ + 1 o p_259481_ + 2 o p_259812_ + 3 o p_259997_ + a (Lbld$b;IFLble;Lble;Lble;Lble;)Lblg; m_258018_ + static + 0 o p_259754_ + 1 o p_259527_ + 2 o p_259968_ + 3 o p_259831_ + 4 o p_259115_ + 5 o p_259521_ + 6 o p_259223_ + a (Lbld$b;Lble;IFLaif;Lbgb;J)Z m_289093_ + static + 0 o p_289318_ + 1 o p_289319_ + 2 o p_289320_ + 3 o p_289321_ + 4 o p_289322_ + 5 o p_289323_ + 6 o p_289324_ + a (Lbpb;IF)Lbjb; m_257680_ + static + 0 o p_259938_ + 1 o p_259740_ + 2 o p_259957_ + a (Lapf;)I m_217246_ + static + 0 o p_217247_ +bil net/minecraft/world/entity/ai/behavior/GoToWantedItem + ()V + a (FZI)Lbhs; m_257526_ + static + 0 o p_260027_ + 1 o p_259769_ + 2 o p_259671_ + a (Lbld$b;Ljava/util/function/Predicate;IFLble;Lble;Lble;Lble;)Lblg; m_257189_ + static + 0 o p_258383_ + 1 o p_258384_ + 2 o p_258385_ + 3 o p_258386_ + 4 o p_258387_ + 5 o p_258388_ + 6 o p_258389_ + 7 o p_258390_ + a (Lbld$b;Lble;Lble;Ljava/util/function/Predicate;IFLble;Lble;Laif;Lbfz;J)Z m_257188_ + static + 0 o p_258372_ + 1 o p_258373_ + 2 o p_258374_ + 3 o p_258375_ + 4 o p_258376_ + 5 o p_258377_ + 6 o p_258378_ + 7 o p_258379_ + 8 o p_258380_ + 9 o p_258381_ + 10 o p_258382_ + a (ZLjava/util/function/Predicate;IFLbld$b;)Lcom/mojang/datafixers/kinds/App; m_257187_ + static + 0 o p_258367_ + 1 o p_258368_ + 2 o p_258369_ + 3 o p_258370_ + 4 o p_258371_ + a (Ljava/util/function/Predicate;FZI)Lbhs; m_257684_ + static + 0 o p_259490_ + 1 o p_260346_ + 2 o p_259637_ + 3 o p_259054_ + a (Lbfz;)Z m_23157_ + static + 0 o p_23158_ +bim net/minecraft/world/entity/ai/behavior/HarvestFarmland + c f_147558_ + d f_147559_ + e f_23159_ + f f_23160_ + g f_23161_ + h f_23162_ + ()V + a (Lgu;Laif;)Z m_23180_ + 0 o p_23181_ + 1 o p_23182_ + a (Laif;Lbyb;)Z m_6114_ + 0 o p_23174_ + 1 o p_23175_ + a (Laif;Lbyb;J)V m_6735_ + 0 o p_23177_ + 1 o p_23178_ + 2 o p_23179_ + a (Laif;)Lgu; m_23164_ + 0 o p_23165_ + a (Laif;Lbfz;)Z m_6114_ + 0 o p_23167_ + 1 o p_23168_ + a (Laif;Lbfz;J)Z m_6737_ + 0 o p_23184_ + 1 o p_23185_ + 2 o p_23186_ + b (Laif;Lbfz;J)V m_6732_ + 0 o p_23192_ + 1 o p_23193_ + 2 o p_23194_ + b (Laif;Lbyb;J)V m_6732_ + 0 o p_23188_ + 1 o p_23189_ + 2 o p_23190_ + c (Laif;Lbfz;J)V m_6725_ + 0 o p_23200_ + 1 o p_23201_ + 2 o p_23202_ + c (Laif;Lbyb;J)V m_6725_ + 0 o p_23196_ + 1 o p_23197_ + 2 o p_23198_ + d (Laif;Lbfz;J)V m_6735_ + 0 o p_23170_ + 1 o p_23171_ + 2 o p_23172_ + d (Laif;Lbyb;J)Z m_6737_ + 0 o p_23204_ + 1 o p_23205_ + 2 o p_23206_ +bin net/minecraft/world/entity/ai/behavior/InsideBrownianWalk + ()V + a (FLbld$b;)Lcom/mojang/datafixers/kinds/App; m_257192_ + static + 0 o p_258398_ + 1 o p_258399_ + a (Laif;Lbgi;Lgu;)Z m_23224_ + static + 0 o p_23225_ + 1 o p_23226_ + 2 o p_23227_ + a (F)Lbhs; m_258053_ + static + 0 o p_259775_ + a (Lble;FLaif;Lbgi;J)Z m_257190_ + static + 0 o p_258391_ + 1 o p_258392_ + 2 o p_258393_ + 3 o p_258394_ + 4 o p_258395_ + a (Lble;FLgu;)V m_257193_ + static + 0 o p_258400_ + 1 o p_258401_ + 2 o p_258402_ + a (FLble;)Lblg; m_257191_ + static + 0 o p_258396_ + 1 o p_258397_ + a (Laif;Lgu;)Z m_23228_ + static + 0 o p_23229_ + 1 o p_23230_ + b (Laif;Lbgi;Lgu;)Z m_23234_ + static + 0 o p_23235_ + 1 o p_23236_ + 2 o p_23237_ +bio net/minecraft/world/entity/ai/behavior/InteractWith + ()V + a (Lbfn;ILbpb;FI)Lbhs; m_258079_ + static + 0 o p_259703_ + 1 o p_260224_ + 2 o p_259995_ + 3 o p_259991_ + 4 o p_259933_ + a (Lbld$b;Lble;Ljava/util/function/Predicate;Ljava/util/function/Predicate;ILble;Lble;Lble;FILaif;Lbfz;J)Z m_257194_ + static + 0 o p_258403_ + 1 o p_258404_ + 2 o p_258405_ + 3 o p_258406_ + 4 o p_258407_ + 5 o p_258408_ + 6 o p_258409_ + 7 o p_258410_ + 8 o p_258411_ + 9 o p_258412_ + 10 o p_258413_ + 11 o p_258414_ + 12 o p_258415_ + a (Lble;Lble;Lble;FILbfz;)V m_257197_ + static + 0 o p_258427_ + 1 o p_258428_ + 2 o p_258429_ + 3 o p_258430_ + 4 o p_258431_ + 5 o p_258432_ + a (Lbfn;ILjava/util/function/Predicate;Ljava/util/function/Predicate;Lbpb;FI)Lbhs; m_257746_ + static + 0 o p_259366_ + 1 o p_259564_ + 2 o p_259570_ + 3 o p_260254_ + 4 o p_260229_ + 5 o p_259369_ + 6 o p_259065_ + a (Lbld$b;Ljava/util/function/Predicate;Ljava/util/function/Predicate;IFILble;Lble;Lble;Lble;)Lblg; m_257198_ + static + 0 o p_258433_ + 1 o p_258434_ + 2 o p_258435_ + 3 o p_258436_ + 4 o p_258437_ + 5 o p_258438_ + 6 o p_258439_ + 7 o p_258440_ + 8 o p_258441_ + 9 o p_258442_ + a (Lbfz;)Z m_23284_ + static + 0 o p_23285_ + a (Lbpb;Ljava/util/function/Predicate;Ljava/util/function/Predicate;IFILbld$b;)Lcom/mojang/datafixers/kinds/App; m_257196_ + static + 0 o p_258420_ + 1 o p_258421_ + 2 o p_258422_ + 3 o p_258423_ + 4 o p_258424_ + 5 o p_258425_ + 6 o p_258426_ + a (Lbfz;ILjava/util/function/Predicate;Lbfz;)Z m_257195_ + static + 0 o p_258416_ + 1 o p_258417_ + 2 o p_258418_ + 3 o p_258419_ + a (Lbfn;Ljava/util/function/Predicate;Lbfz;)Z m_289094_ + static + 0 o p_289325_ + 1 o p_289326_ + 2 o p_289327_ + b (Lbfz;)Z m_23286_ + static + 0 o p_23287_ +bip net/minecraft/world/entity/ai/behavior/InteractWithDoor + a f_147585_ + b f_147586_ + c f_147587_ + ()V + a (Laif;Lbfz;Ldxr;Ldxr;Ljava/util/Set;Ljava/util/Optional;)V m_258036_ + static + 0 o p_260343_ + 1 o p_259371_ + 2 o p_259408_ + 3 o p_260013_ + 4 o p_259401_ + 5 o p_260015_ + a (Lbfz;Lgu;Ljava/util/Optional;)Z m_257369_ + static + 0 o p_260091_ + 1 o p_259764_ + 2 o p_259365_ + a (Lbfz;Lbfz;)Z m_289095_ + static + 0 o p_289328_ + 1 o p_289329_ + a (Lorg/apache/commons/lang3/mutable/MutableObject;Lorg/apache/commons/lang3/mutable/MutableInt;Lbld$b;)Lcom/mojang/datafixers/kinds/App; m_257205_ + static + 0 o p_258472_ + 1 o p_258473_ + 2 o p_258474_ + a ()Lbhs; m_257893_ + static + a (Lhd;Ljava/util/Set;)Ljava/util/Set; m_260786_ + static + 0 o p_261436_ + 1 o p_261437_ + a (Lble;Ljava/util/Optional;Laif;Lgu;)Ljava/util/Optional; m_261108_ + static + 0 o p_262178_ + 1 o p_261639_ + 2 o p_261528_ + 3 o p_261874_ + a (Ldca$a;)Z m_201951_ + static + 0 o p_201952_ + a (Laif;Lbfz;Ldxr;Ldxr;Lbld$b;Lble;Ljava/util/Set;)V m_257200_ + static + 0 o p_258446_ + 1 o p_258447_ + 2 o p_258448_ + 3 o p_258449_ + 4 o p_258450_ + 5 o p_258451_ + 6 o p_258452_ + a (Laif;Lbfz;Lhd;)Z m_23307_ + static + 0 o p_23308_ + 1 o p_23309_ + 2 o p_23310_ + a (Lbld$b;Lorg/apache/commons/lang3/mutable/MutableObject;Lorg/apache/commons/lang3/mutable/MutableInt;Lble;Lble;Lble;)Lblg; m_257203_ + static + 0 o p_258457_ + 1 o p_258458_ + 2 o p_258459_ + 3 o p_258460_ + 4 o p_258461_ + 5 o p_258462_ + a (Lgu;Lbfz;)Z m_257201_ + static + 0 o p_258453_ + 1 o p_258454_ + a (Lbld$b;Lble;Lble;Lorg/apache/commons/lang3/mutable/MutableObject;Lorg/apache/commons/lang3/mutable/MutableInt;Lble;Laif;Lbfz;J)Z m_257204_ + static + 0 o p_258463_ + 1 o p_258464_ + 2 o p_258465_ + 3 o p_258466_ + 4 o p_258467_ + 5 o p_258468_ + 6 o p_258469_ + 7 o p_258470_ + 8 o p_258471_ + a (Lbha;Lgu;)Z m_257446_ + static + 0 o p_259548_ + 1 o p_259146_ + a (Lhd;Lble;)Ljava/util/Set; m_260787_ + static + 0 o p_261438_ + 1 o p_261439_ + b (Lgu;Lbfz;)Z m_289096_ + static + 0 o p_289330_ + 1 o p_289331_ + b (Ldca$a;)Z m_201956_ + static + 0 o p_201957_ + c (Ldca$a;)Z m_201958_ + static + 0 o p_201959_ +biq net/minecraft/world/entity/ai/behavior/JumpOnBed + c f_147588_ + d f_147589_ + e f_147590_ + f f_147591_ + g f_23329_ + h f_23330_ + i f_23331_ + j f_23332_ + k f_23333_ + (F)V + 0 o p_23335_ + a (Laif;Lbgb;)Z m_6114_ + 0 o p_23346_ + 1 o p_23347_ + a (Laif;Lbgb;Lgu;)V m_263980_ + 0 o p_264899_ + 1 o p_264900_ + 2 o p_264901_ + a (Lbgb;Lgu;)V m_23361_ + 0 o p_23362_ + 1 o p_23363_ + a (Laif;Lbgb;J)V m_6735_ + 0 o p_23349_ + 1 o p_23350_ + 2 o p_23351_ + a (Laif;Lbfz;)Z m_6114_ + 0 o p_23339_ + 1 o p_23340_ + a (Lbgb;)Ljava/util/Optional; m_23359_ + 0 o p_23360_ + a (J)Z m_7773_ + 0 o p_23337_ + a (Laif;Lgu;)Z m_23356_ + 0 o p_23357_ + 1 o p_23358_ + a (Laif;Lbfz;J)Z m_6737_ + 0 o p_23365_ + 1 o p_23366_ + 2 o p_23367_ + b (Laif;Lbgb;J)V m_6732_ + 0 o p_23372_ + 1 o p_23373_ + 2 o p_23374_ + b (Laif;Lbgb;)Z m_23368_ + 0 o p_23369_ + 1 o p_23370_ + b (Laif;Lbfz;J)V m_6732_ + 0 o p_23376_ + 1 o p_23377_ + 2 o p_23378_ + c (Laif;Lbfz;J)V m_6725_ + 0 o p_23387_ + 1 o p_23388_ + 2 o p_23389_ + c (Laif;Lbgb;)Z m_23379_ + 0 o p_23380_ + 1 o p_23381_ + c (Laif;Lbgb;J)Z m_6737_ + 0 o p_23383_ + 1 o p_23384_ + 2 o p_23385_ + d (Laif;Lbgb;)Z m_23390_ + 0 o p_23391_ + 1 o p_23392_ + d (Laif;Lbfz;J)V m_6735_ + 0 o p_23342_ + 1 o p_23343_ + 2 o p_23344_ + d (Laif;Lbgb;J)V m_6725_ + 0 o p_23394_ + 1 o p_23395_ + 2 o p_23396_ + e (Laif;Lbgb;)Z m_23397_ + 0 o p_23398_ + 1 o p_23399_ + f (Laif;Lbgb;)Z m_23400_ + 0 o p_23401_ + 1 o p_23402_ +bir net/minecraft/world/entity/ai/behavior/LocateHidingPlace + ()V + a (Lgu;)Z m_23420_ + static + 0 o p_23421_ + a (Lhe;)Z m_217255_ + static + 0 o p_217256_ + a (IILbld$b;FLble;Lble;Lble;Lble;Lble;Lble;Lble;)Lblg; m_257208_ + static + 0 o p_258480_ + 1 o p_258481_ + 2 o p_258482_ + 3 o p_258483_ + 4 o p_258484_ + 5 o p_258485_ + 6 o p_258486_ + 7 o p_258487_ + 8 o p_258488_ + 9 o p_258489_ + 10 o p_258490_ + a (Lbld$b;Lble;)Ljava/util/Optional; m_257213_ + static + 0 o p_258523_ + 1 o p_258524_ + a (IIFLbld$b;)Lcom/mojang/datafixers/kinds/App; m_257210_ + static + 0 o p_258502_ + 1 o p_258503_ + 2 o p_258504_ + 3 o p_258505_ + a (Lble;Lble;Lble;Lble;Lble;Laif;Lbfz;ILble;FLgu;)V m_289099_ + static + 0 o p_289349_ + 1 o p_289350_ + 2 o p_289351_ + 3 o p_289352_ + 4 o p_289353_ + 5 o p_289354_ + 6 o p_289355_ + 7 o p_289356_ + 8 o p_289357_ + 9 o p_289358_ + 10 o p_289359_ + a (Lbfz;ILgu;)Z m_289097_ + static + 0 o p_289332_ + 1 o p_289333_ + 2 o p_289334_ + a (IFI)Lbjb; m_258090_ + static + 0 o p_259202_ + 1 o p_259881_ + 2 o p_259982_ + a (Laif;Lbfz;I)Ljava/util/Optional; m_289100_ + static + 0 o p_289360_ + 1 o p_289361_ + 2 o p_289362_ + a (IILbld$b;Lble;Lble;Lble;Lble;Lble;Lble;Lble;FLaif;Lbfz;J)Z m_289098_ + static + 0 o p_289335_ + 1 o p_289336_ + 2 o p_289337_ + 3 o p_289338_ + 4 o p_289339_ + 5 o p_289340_ + 6 o p_289341_ + 7 o p_289342_ + 8 o p_289343_ + 9 o p_289344_ + 10 o p_289345_ + 11 o p_289346_ + 12 o p_289347_ + 13 o p_289348_ + b (Lgu;)Z m_23424_ + static + 0 o p_23425_ + b (Lhe;)Z m_217257_ + static + 0 o p_217258_ +bis net/minecraft/world/entity/ai/behavior/LongJumpMidJump + c f_147592_ + d f_147593_ + e f_147594_ + (Lbdi;Lamg;)V + 0 o p_147596_ + 1 o p_147597_ + a (Laif;Lbgb;J)Z m_6737_ + 0 o p_147603_ + 1 o p_147604_ + 2 o p_147605_ + a (Laif;Lbfz;J)Z m_6737_ + 0 o p_147607_ + 1 o p_147608_ + 2 o p_147609_ + b (Laif;Lbgb;J)V m_6735_ + 0 o p_147611_ + 1 o p_147612_ + 2 o p_147613_ + b (Laif;Lbfz;J)V m_6732_ + 0 o p_147615_ + 1 o p_147616_ + 2 o p_147617_ + c (Laif;Lbgb;J)V m_6732_ + 0 o p_147619_ + 1 o p_147620_ + 2 o p_147621_ + d (Laif;Lbfz;J)V m_6735_ + 0 o p_147599_ + 1 o p_147600_ + 2 o p_147601_ +bit net/minecraft/world/entity/ai/behavior/LongJumpToPreferredBlock + m f_217259_ + n f_217260_ + o f_217261_ + p f_217262_ + (Lbdi;IIFLjava/util/function/Function;Lanl;FLjava/util/function/BiPredicate;)V + 0 o p_250024_ + 1 o p_249524_ + 2 o p_250434_ + 3 o p_252307_ + 4 o p_248661_ + 5 o p_251760_ + 6 o p_249002_ + 7 o p_251818_ + a (Laif;)Ljava/util/Optional; m_213675_ + 0 o p_217273_ + a (Laif;Lbgb;J)V m_6735_ + 0 o p_217279_ + 1 o p_217280_ + 2 o p_217281_ + d (Laif;Lbfz;J)V m_6735_ + 0 o p_217275_ + 1 o p_217276_ + 2 o p_217277_ +biu net/minecraft/world/entity/ai/behavior/LongJumpToRandomPos + c f_147623_ + d f_147625_ + e f_147627_ + f f_147628_ + g f_147629_ + h f_147630_ + i f_147631_ + j f_147632_ + k f_147633_ + l f_147634_ + m f_147624_ + n f_147622_ + o f_217289_ + p f_147626_ + q f_147635_ + r f_217290_ + ()V + static + (Lbdi;IIFLjava/util/function/Function;Ljava/util/function/BiPredicate;)V + 0 o p_251244_ + 1 o p_248763_ + 2 o p_251698_ + 3 o p_250165_ + 4 o p_249738_ + 5 o p_249945_ + (Lbdi;IIFLjava/util/function/Function;)V + 0 o p_147637_ + 1 o p_147638_ + 2 o p_147639_ + 3 o p_147640_ + 4 o p_147641_ + a (Lbgb;Leei;)Leei; m_217303_ + 0 o p_217304_ + 1 o p_217305_ + a (Laif;Lbgb;)Z m_6114_ + 0 o p_147650_ + 1 o p_147651_ + a (Laif;Lbgb;Lgu;)Z m_213828_ + 0 o p_217300_ + 1 o p_217301_ + 2 o p_217302_ + a (Lbgb;Leei;I)Leei; m_217306_ + 0 o p_217307_ + 1 o p_217308_ + 2 o p_217309_ + a (Lgu;Lgu;)Lbiu$a; m_217312_ + static + 0 o p_217313_ + 1 o p_217314_ + a (Lbgb;Lbfk;Leei;Leei;)Z m_247472_ + 0 o p_249070_ + 1 o p_250156_ + 2 o p_251660_ + 3 o p_250101_ + a (Lbgb;Lgu;)Z m_245086_ + static + 0 o p_251540_ + 1 o p_248879_ + a (Laif;)Ljava/util/Optional; m_213675_ + 0 o p_217299_ + a (Laif;Lbgb;J)V m_6735_ + 0 o p_147676_ + 1 o p_147677_ + 2 o p_147678_ + a (Laif;Lbfz;)Z m_6114_ + 0 o p_147643_ + 1 o p_147644_ + a (Laif;Lbfz;J)Z m_6737_ + 0 o p_147672_ + 1 o p_147673_ + 2 o p_147674_ + b (Laif;Lbgb;J)Z m_6737_ + 0 o p_147653_ + 1 o p_147654_ + 2 o p_147655_ + b (Lgu;Lgu;)Z m_217315_ + static + 0 o p_217316_ + 1 o p_217317_ + c (Laif;Lbfz;J)V m_6725_ + 0 o p_147684_ + 1 o p_147685_ + 2 o p_147686_ + c (Laif;Lbgb;J)V m_6725_ + 0 o p_147680_ + 1 o p_147681_ + 2 o p_147682_ + d (Laif;Lbfz;J)V m_6735_ + 0 o p_147646_ + 1 o p_147647_ + 2 o p_147648_ + d (Laif;Lbgb;J)V m_217318_ + 0 o p_217319_ + 1 o p_217320_ + 2 o p_217321_ +biu$a net/minecraft/world/entity/ai/behavior/LongJumpToRandomPos$PossibleJump + a f_147687_ + (Lgu;I)V + 0 o p_217323_ + 1 o p_217324_ + b ()Lgu; m_147693_ +biv net/minecraft/world/entity/ai/behavior/LookAndFollowTradingPlayerSink + c f_23432_ + (F)V + 0 o p_23434_ + a (Lbyb;)V m_23451_ + 0 o p_23452_ + a (Laif;Lbyb;J)Z m_6737_ + 0 o p_23448_ + 1 o p_23449_ + 2 o p_23450_ + a (Laif;Lbyb;)Z m_6114_ + 0 o p_23445_ + 1 o p_23446_ + a (Laif;Lbfz;)Z m_6114_ + 0 o p_23438_ + 1 o p_23439_ + a (J)Z m_7773_ + 0 o p_23436_ + a (Laif;Lbfz;J)Z m_6737_ + 0 o p_23454_ + 1 o p_23455_ + 2 o p_23456_ + b (Laif;Lbfz;J)V m_6732_ + 0 o p_23462_ + 1 o p_23463_ + 2 o p_23464_ + b (Laif;Lbyb;J)V m_6735_ + 0 o p_23458_ + 1 o p_23459_ + 2 o p_23460_ + c (Laif;Lbfz;J)V m_6725_ + 0 o p_23470_ + 1 o p_23471_ + 2 o p_23472_ + c (Laif;Lbyb;J)V m_6732_ + 0 o p_23466_ + 1 o p_23467_ + 2 o p_23468_ + d (Laif;Lbfz;J)V m_6735_ + 0 o p_23441_ + 1 o p_23442_ + 2 o p_23443_ + d (Laif;Lbyb;J)V m_6725_ + 0 o p_23474_ + 1 o p_23475_ + 2 o p_23476_ +biw net/minecraft/world/entity/ai/behavior/LookAtTargetSink + (II)V + 0 o p_23478_ + 1 o p_23479_ + a (Laif;Lbgb;J)Z m_6737_ + 0 o p_23481_ + 1 o p_23482_ + 2 o p_23483_ + a (Lbgb;Lbje;)V m_23484_ + static + 0 o p_23485_ + 1 o p_23486_ + a (Laif;Lbfz;J)Z m_6737_ + 0 o p_23488_ + 1 o p_23489_ + 2 o p_23490_ + b (Lbgb;Lbje;)Z m_23495_ + static + 0 o p_23496_ + 1 o p_23497_ + b (Laif;Lbgb;J)V m_6732_ + 0 o p_23492_ + 1 o p_23493_ + 2 o p_23494_ + b (Laif;Lbfz;J)V m_6732_ + 0 o p_23499_ + 1 o p_23500_ + 2 o p_23501_ + c (Laif;Lbfz;J)V m_6725_ + 0 o p_23507_ + 1 o p_23508_ + 2 o p_23509_ + c (Laif;Lbgb;J)V m_6725_ + 0 o p_23503_ + 1 o p_23504_ + 2 o p_23505_ +bix net/minecraft/world/entity/ai/behavior/MeleeAttack + ()V + a (I)Lbjb; m_257733_ + static + 0 o p_259758_ + a (Lbgb;Lcfz;)Z m_147695_ + static + 0 o p_147696_ + 1 o p_147697_ + a (Lbld$b;ILble;Lble;Lble;Lble;)Lblg; m_257215_ + static + 0 o p_258527_ + 1 o p_258528_ + 2 o p_258529_ + 3 o p_258530_ + 4 o p_258531_ + 5 o p_258532_ + a (ILbld$b;)Lcom/mojang/datafixers/kinds/App; m_257214_ + static + 0 o p_258525_ + 1 o p_258526_ + a (Lbld$b;Lble;Lble;Lble;Lble;ILaif;Lbgb;J)Z m_257216_ + static + 0 o p_258533_ + 1 o p_258534_ + 2 o p_258535_ + 3 o p_258536_ + 4 o p_258537_ + 5 o p_258538_ + 6 o p_258539_ + 7 o p_258540_ + 8 o p_258541_ + a (Lbgb;)Z m_23527_ + static + 0 o p_23528_ +biy net/minecraft/world/entity/ai/behavior/Mount + a f_147698_ + ()V + a (FLbld$b;)Lcom/mojang/datafixers/kinds/App; m_257575_ + static + 0 o p_260144_ + 1 o p_259880_ + a (F)Lbhs; m_257518_ + static + 0 o p_259363_ + a (Lbld$b;Lble;Lble;Lble;FLaif;Lbfz;J)Z m_257489_ + static + 0 o p_259126_ + 1 o p_259799_ + 2 o p_259030_ + 3 o p_260121_ + 4 o p_259786_ + 5 o p_259242_ + 6 o p_260257_ + 7 o p_259083_ + a (Lbld$b;FLble;Lble;Lble;)Lblg; m_257464_ + static + 0 o p_259729_ + 1 o p_259900_ + 2 o p_259095_ + 3 o p_260097_ + 4 o p_259784_ +biz net/minecraft/world/entity/ai/behavior/MoveToSkySeeingSpot + ()V + a (Lble;FLaif;Lbfz;J)Z m_289101_ + static + 0 o p_289363_ + 1 o p_289364_ + 2 o p_289365_ + 3 o p_289366_ + 4 o p_289367_ + a (FLbld$b;)Lcom/mojang/datafixers/kinds/App; m_257217_ + static + 0 o p_258542_ + 1 o p_258543_ + a (F)Lbjb; m_257507_ + static + 0 o p_259860_ + a (Laif;Lbfz;Lgu;)Z m_23558_ + static + 0 o p_23559_ + 1 o p_23560_ + 2 o p_23561_ + a (Lble;FLeei;)V m_257219_ + static + 0 o p_258546_ + 1 o p_258547_ + 2 o p_258548_ + a (Laif;Lbfz;)Leei; m_23564_ + static + 0 o p_23565_ + 1 o p_23566_ + a (FLble;)Lblg; m_257218_ + static + 0 o p_258544_ + 1 o p_258545_ +bj net/minecraft/advancements/critereon/EnchantmentPredicate + a f_30464_ + b f_30465_ + c f_30466_ + d f_30467_ + ()V + static + (Lckg;Lcj$d;)V + 0 o p_30471_ + 1 o p_30472_ + ()V + a (Lacq;)Lcom/google/gson/JsonSyntaxException; m_30478_ + static + 0 o p_30479_ + a (Lcom/google/gson/JsonElement;)Lbj; m_30474_ + static + 0 o p_30475_ + a (Ljava/util/Map;)Z m_30476_ + 0 o p_30477_ + a ()Lcom/google/gson/JsonElement; m_30473_ + b (Lcom/google/gson/JsonElement;)[Lbj; m_30480_ + static + 0 o p_30481_ +bja net/minecraft/world/entity/ai/behavior/MoveToTargetSink + c f_147699_ + d f_23567_ + e f_23568_ + f f_23569_ + g f_23570_ + (II)V + 0 o p_23573_ + 1 o p_23574_ + ()V + a (Lbgb;Lbpe;)Z m_23589_ + 0 o p_23590_ + 1 o p_23591_ + a (Laif;Lbgb;)Z m_6114_ + 0 o p_23583_ + 1 o p_23584_ + a (Laif;Lbgb;J)Z m_6737_ + 0 o p_23586_ + 1 o p_23587_ + 2 o p_23588_ + a (Lbgb;Lbpe;J)Z m_23592_ + 0 o p_23593_ + 1 o p_23594_ + 2 o p_23595_ + a (Lbpe;)Z m_277150_ + static + 0 o p_277420_ + a (Laif;Lbfz;)Z m_6114_ + 0 o p_23576_ + 1 o p_23577_ + a (Laif;Lbfz;J)Z m_6737_ + 0 o p_23597_ + 1 o p_23598_ + 2 o p_23599_ + b (Laif;Lbgb;J)V m_6732_ + 0 o p_23601_ + 1 o p_23602_ + 2 o p_23603_ + b (Laif;Lbfz;J)V m_6732_ + 0 o p_23605_ + 1 o p_23606_ + 2 o p_23607_ + c (Laif;Lbfz;J)V m_6725_ + 0 o p_23613_ + 1 o p_23614_ + 2 o p_23615_ + c (Laif;Lbgb;J)V m_6735_ + 0 o p_23609_ + 1 o p_23610_ + 2 o p_23611_ + d (Laif;Lbfz;J)V m_6735_ + 0 o p_23579_ + 1 o p_23580_ + 2 o p_23581_ + d (Laif;Lbgb;J)V m_6725_ + 0 o p_23617_ + 1 o p_23618_ + 2 o p_23619_ +bjb net/minecraft/world/entity/ai/behavior/OneShot + a f_256915_ + ()V + a ()Lbhr$a; m_22536_ + b ()Ljava/lang/String; m_22566_ + e (Laif;Lbfz;J)Z m_22554_ + 0 o p_260083_ + 1 o p_259643_ + 2 o p_259226_ + f (Laif;Lbfz;J)V m_22558_ + 0 o p_259112_ + 1 o p_259594_ + 2 o p_259046_ + g (Laif;Lbfz;J)V m_22562_ + 0 o p_260215_ + 1 o p_259970_ + 2 o p_260273_ +bjc net/minecraft/world/entity/ai/behavior/PlayTagWithOtherKids + a f_147700_ + b f_147701_ + c f_147702_ + d f_147703_ + e f_147704_ + f f_147705_ + ()V + a (Lbld$b;Lble;Lble;Lble;Lble;Laif;Lbgi;J)Z m_274200_ + static + 0 o p_275023_ + 1 o p_275024_ + 2 o p_275025_ + 3 o p_275026_ + 4 o p_275027_ + 5 o p_275028_ + 6 o p_275029_ + 7 o p_275030_ + a (Lbfz;Lbfz;)Z m_23641_ + static + 0 o p_23642_ + 1 o p_23643_ + a (Lbld$b;Lble;Lble;Lble;Lble;)Lblg; m_257222_ + static + 0 o p_258558_ + 1 o p_258559_ + 2 o p_258560_ + 3 o p_258561_ + 4 o p_258562_ + a ()Lbhs; m_257585_ + static + a (Ljava/util/List;)Ljava/util/Optional; m_257810_ + static + 0 o p_259655_ + a (Lble;Lble;Lble;Lbfz;)V m_257730_ + static + 0 o p_259811_ + 1 o p_259299_ + 2 o p_260056_ + 3 o p_259463_ + a (Ljava/util/Map$Entry;)Z m_23652_ + static + 0 o p_23653_ + a (Lbfz;)Lbfz; m_23639_ + static + 0 o p_23640_ + a (Lbld$b;)Lcom/mojang/datafixers/kinds/App; m_257223_ + static + 0 o p_258563_ + a (Ljava/util/Map;Lbfz;)V m_257224_ + static + 0 o p_258564_ + 1 o p_258565_ + a (Lbfz;Ljava/lang/Integer;)Ljava/lang/Integer; m_147706_ + static + 0 o p_147707_ + 1 o p_147708_ + a (Lbgi;Lbfz;)Z m_257226_ + static + 0 o p_258574_ + 1 o p_258575_ + b (Lble;Lble;Lble;Lbfz;)V m_257221_ + static + 0 o p_258554_ + 1 o p_258555_ + 2 o p_258556_ + 3 o p_258557_ + b (Lbfz;Lbfz;)Z m_23659_ + static + 0 o p_23660_ + 1 o p_23661_ + b (Ljava/util/List;)Ljava/util/Map; m_257886_ + static + 0 o p_259989_ + b (Lbfz;)Z m_23667_ + static + 0 o p_23668_ +bjd net/minecraft/world/entity/ai/behavior/PoiCompetitorScan + ()V + a (Lhd;Lhe;Lbyb;)Z m_217329_ + static + 0 o p_217330_ + 1 o p_217331_ + 2 o p_217332_ + a (Lhe;Lbye;)Z m_217333_ + static + 0 o p_217334_ + 1 o p_217335_ + a (Lbld$b;)Lcom/mojang/datafixers/kinds/App; m_257227_ + static + 0 o p_258576_ + a (Lbld$b;Lble;Lble;Laif;Lbyb;J)Z m_257228_ + static + 0 o p_258577_ + 1 o p_258578_ + 2 o p_258579_ + 3 o p_258580_ + 4 o p_258581_ + 5 o p_258582_ + a ()Lbhs; m_257502_ + static + a (Lbyb;Lbyb;)Lbyb; m_23724_ + static + 0 o p_23725_ + 1 o p_23726_ + a (Lbyb;Lbfz;)Z m_257232_ + static + 0 o p_258592_ + 1 o p_258593_ + a (Lbld$b;Lble;Lble;)Lblg; m_257231_ + static + 0 o p_258589_ + 1 o p_258590_ + 2 o p_258591_ + a (Lbfz;)Lbyb; m_257229_ + static + 0 o p_258583_ + a (Lbld$b;Lble;Lbyb;Lhd;Lhe;)V m_257230_ + static + 0 o p_258584_ + 1 o p_258585_ + 2 o p_258586_ + 3 o p_258587_ + 4 o p_258588_ + b (Lhd;Lhe;Lbyb;)Z m_257233_ + static + 0 o p_258594_ + 1 o p_258595_ + 2 o p_258596_ +bje net/minecraft/world/entity/ai/behavior/PositionTracker + a ()Leei; m_7024_ + a (Lbfz;)Z m_6826_ + 0 o p_23739_ + b ()Lgu; m_6675_ +bjf net/minecraft/world/entity/ai/behavior/PrepareRamNearestTarget + c f_147713_ + d f_147714_ + e f_147715_ + f f_147716_ + g f_147717_ + h f_147718_ + i f_147719_ + j f_147720_ + k f_147721_ + l f_147722_ + (Ljava/util/function/ToIntFunction;IIFLbqm;ILjava/util/function/Function;)V + 0 o p_147724_ + 1 o p_147725_ + 2 o p_147726_ + 3 o p_147727_ + 4 o p_147728_ + 5 o p_147729_ + 6 o p_147730_ + a (Lbgi;Lgu;)Z m_147745_ + 0 o p_147746_ + 1 o p_147747_ + a (Lbgi;Lbpd;)Ljava/util/Optional; m_186047_ + 0 o p_186048_ + 1 o p_186049_ + a (Lbpj;Lgu;)Z m_147751_ + static + 0 o p_147752_ + 1 o p_147753_ + a (Laif;Lbgi;J)V m_6735_ + 0 o p_147736_ + 1 o p_147737_ + 2 o p_147738_ + a (Lgu;Lgu;)Leei; m_147754_ + 0 o p_147755_ + 1 o p_147756_ + a (Lbfz;Lgu;)Lbjf$a; m_289102_ + static + 0 o p_289368_ + 1 o p_289369_ + a (Lbgi;Lbfz;)Ljava/util/Optional; m_147742_ + 0 o p_147743_ + 1 o p_147744_ + a (Laif;Lbfz;J)Z m_6737_ + 0 o p_147758_ + 1 o p_147759_ + 2 o p_147760_ + b (Laif;Lbgi;J)V m_6732_ + 0 o p_147762_ + 1 o p_147763_ + 2 o p_147764_ + b (Laif;Lbfz;J)V m_6732_ + 0 o p_147769_ + 1 o p_147770_ + 2 o p_147771_ + b (Lbgi;Lbfz;)V m_147765_ + 0 o p_147766_ + 1 o p_147767_ + c (Laif;Lbfz;J)V m_6725_ + 0 o p_147780_ + 1 o p_147781_ + 2 o p_147782_ + c (Laif;Lbgi;J)Z m_6737_ + 0 o p_147773_ + 1 o p_147774_ + 2 o p_147775_ + c (Lbgi;Lbfz;)V m_147776_ + 0 o p_147777_ + 1 o p_147778_ + d (Laif;Lbfz;J)V m_6735_ + 0 o p_147732_ + 1 o p_147733_ + 2 o p_147734_ + d (Lbgi;Lbfz;)Z m_147787_ + 0 o p_147788_ + 1 o p_147789_ + d (Laif;Lbgi;J)V m_6725_ + 0 o p_147784_ + 1 o p_147785_ + 2 o p_147786_ +bjf$a net/minecraft/world/entity/ai/behavior/PrepareRamNearestTarget$RamCandidate + a f_147790_ + b f_147791_ + c f_147792_ + (Lgu;Lgu;Lbfz;)V + 0 o p_147794_ + 1 o p_147795_ + 2 o p_147796_ + a ()Lgu; m_147797_ + b ()Lgu; m_147798_ + c ()Lbfz; m_147799_ +bjg net/minecraft/world/entity/ai/behavior/RamTarget + c f_147800_ + d f_147801_ + e f_147802_ + f f_147803_ + g f_147805_ + h f_147806_ + i f_147807_ + j f_147808_ + k f_217340_ + (Ljava/util/function/Function;Lbqm;FLjava/util/function/ToDoubleFunction;Ljava/util/function/Function;Ljava/util/function/Function;)V + 0 o p_217342_ + 1 o p_217343_ + 2 o p_217344_ + 3 o p_217345_ + 4 o p_217346_ + 5 o p_217347_ + a (Laif;Lbtg;J)Z m_6737_ + 0 o p_217352_ + 1 o p_217353_ + 2 o p_217354_ + a (Laif;Lbtg;)Z m_6114_ + 0 o p_217349_ + 1 o p_217350_ + a (Laif;Lbfz;)Z m_6114_ + 0 o p_147817_ + 1 o p_147818_ + a (Laif;Lbfz;J)Z m_6737_ + 0 o p_147831_ + 1 o p_147832_ + 2 o p_147833_ + b (Laif;Lbtg;)V m_217355_ + 0 o p_217356_ + 1 o p_217357_ + b (Laif;Lbtg;J)V m_6735_ + 0 o p_217359_ + 1 o p_217360_ + 2 o p_217361_ + c (Laif;Lbfz;J)V m_6725_ + 0 o p_147846_ + 1 o p_147847_ + 2 o p_147848_ + c (Laif;Lbtg;J)V m_6725_ + 0 o p_217366_ + 1 o p_217367_ + 2 o p_217368_ + c (Laif;Lbtg;)Z m_217362_ + 0 o p_217363_ + 1 o p_217364_ + d (Laif;Lbfz;J)V m_6735_ + 0 o p_147820_ + 1 o p_147821_ + 2 o p_147822_ +bjh net/minecraft/world/entity/ai/behavior/RandomLookAround + c f_244014_ + d f_243864_ + e f_243800_ + f f_244277_ + (Lbdc;FFF)V + 0 o p_248963_ + 1 o p_251826_ + 2 o p_251456_ + 3 o p_249962_ + a (Laif;Lbgb;J)V m_6735_ + 0 o p_250941_ + 1 o p_248765_ + 2 o p_251801_ + d (Laif;Lbfz;J)V m_6735_ + 0 o p_251075_ + 1 o p_250890_ + 2 o p_248603_ +bji net/minecraft/world/entity/ai/behavior/RandomStroll + a f_147849_ + b f_147850_ + c f_256848_ + ()V + static + ()V + a (FZ)Lbjb; m_257798_ + static + 0 o p_260303_ + 1 o p_259639_ + a (Lbgi;)Leei; m_257416_ + static + 0 o p_259491_ + a (F)Lbjb; m_257965_ + static + 0 o p_260304_ + a (FLjava/util/function/Function;Ljava/util/function/Predicate;)Lbjb; m_257629_ + static + 0 o p_260030_ + 1 o p_259912_ + 2 o p_259088_ + a (IILbgi;)Leei; m_257237_ + static + 0 o p_258603_ + 1 o p_258604_ + 2 o p_258605_ + a (Ljava/util/function/Predicate;Ljava/util/function/Function;Lble;FLaif;Lbgi;J)Z m_257238_ + static + 0 o p_258606_ + 1 o p_258607_ + 2 o p_258608_ + 3 o p_258609_ + 4 o p_258610_ + 5 o p_258611_ + 6 o p_258612_ + a (Ljava/util/function/Predicate;Ljava/util/function/Function;FLble;)Lblg; m_257234_ + static + 0 o p_258597_ + 1 o p_258598_ + 2 o p_258599_ + 3 o p_258600_ + a (FLeei;)Lbpe; m_257244_ + static + 0 o p_258621_ + 1 o p_258622_ + a (FII)Lbhs; m_257960_ + static + 0 o p_260204_ + 1 o p_259502_ + 2 o p_259891_ + a (Lbgi;II)Leei; m_257997_ + static + 0 o p_260316_ + 1 o p_259038_ + 2 o p_259696_ + a (Ljava/util/function/Predicate;Ljava/util/function/Function;FLbld$b;)Lcom/mojang/datafixers/kinds/App; m_257243_ + static + 0 o p_258617_ + 1 o p_258618_ + 2 o p_258619_ + 3 o p_258620_ + b (F)Lbhs; m_257379_ + static + 0 o p_259119_ + b (Lbgi;)Z m_257236_ + static + 0 o p_258602_ + c (Lbgi;)Leei; m_257240_ + static + 0 o p_258614_ + c (F)Lbhs; m_257751_ + static + 0 o p_259469_ + d (Lbgi;)Z m_257242_ + static + 0 o p_258616_ + e (Lbgi;)Z m_289103_ + static + 0 o p_289370_ + f (Lbgi;)Z m_257241_ + static + 0 o p_258615_ + g (Lbgi;)Leei; m_257235_ + static + 0 o p_258601_ +bjj net/minecraft/world/entity/ai/behavior/ReactToBell + ()V + a (Lbld$b;)Lcom/mojang/datafixers/kinds/App; m_257653_ + static + 0 o p_259349_ + a (Lble;)Lblg; m_258069_ + static + 0 o p_259472_ + a ()Lbhs; m_258068_ + static + a (Laif;Lbfz;J)Z m_289104_ + static + 0 o p_289371_ + 1 o p_289372_ + 2 o p_289373_ +bjk net/minecraft/world/entity/ai/behavior/ResetProfession + ()V + a (Lbld$b;)Lcom/mojang/datafixers/kinds/App; m_257921_ + static + 0 o p_259684_ + a (Lble;)Lblg; m_257917_ + static + 0 o p_260035_ + a ()Lbhs; m_257593_ + static + a (Laif;Lbyb;J)Z m_258077_ + static + 0 o p_260244_ + 1 o p_260084_ + 2 o p_259597_ +bjl net/minecraft/world/entity/ai/behavior/ResetRaidStatus + ()V + a (Lbld$b;)Lcom/mojang/datafixers/kinds/App; m_258019_ + static + 0 o p_259870_ + a ()Lbhs; m_257468_ + static + a (Laif;Lbfz;J)Z m_288132_ + static + 0 o p_288835_ + 1 o p_288836_ + 2 o p_288837_ +bjm net/minecraft/world/entity/ai/behavior/RingBell + a f_147862_ + b f_147863_ + ()V + a (Lbld$b;)Lcom/mojang/datafixers/kinds/App; m_257542_ + static + 0 o p_259094_ + a ()Lbhs; m_257471_ + static + a (Lbld$b;Lble;Laif;Lbfz;J)Z m_257770_ + static + 0 o p_259346_ + 1 o p_259998_ + 2 o p_259026_ + 3 o p_260317_ + 4 o p_260205_ + a (Lbld$b;Lble;)Lblg; m_257803_ + static + 0 o p_259459_ + 1 o p_259028_ +bjn net/minecraft/world/entity/ai/behavior/RunOne + (Ljava/util/Map;Ljava/util/List;)V + 0 o p_23834_ + 1 o p_23835_ + (Ljava/util/List;)V + 0 o p_23832_ +bjo net/minecraft/world/entity/ai/behavior/SetClosestHomeAsWalkTarget + a f_147880_ + b f_147881_ + c f_147882_ + d f_147883_ + ()V + a (Lorg/apache/commons/lang3/mutable/MutableLong;Lit/unimi/dsi/fastutil/longs/Long2LongMap$Entry;)Z m_257246_ + static + 0 o p_258628_ + 1 o p_258629_ + a (Lit/unimi/dsi/fastutil/longs/Long2LongMap;Lorg/apache/commons/lang3/mutable/MutableInt;Lorg/apache/commons/lang3/mutable/MutableLong;Lgu;)Z m_257249_ + static + 0 o p_258641_ + 1 o p_258642_ + 2 o p_258643_ + 3 o p_258644_ + a (Lorg/apache/commons/lang3/mutable/MutableLong;Lit/unimi/dsi/fastutil/longs/Long2LongMap;FLble;Lble;)Lblg; m_257245_ + static + 0 o p_258623_ + 1 o p_258624_ + 2 o p_258625_ + 3 o p_258626_ + 4 o p_258627_ + a (F)Lbhs; m_257524_ + static + 0 o p_259960_ + a (Lhe;)Z m_217371_ + static + 0 o p_217372_ + a (Lorg/apache/commons/lang3/mutable/MutableLong;Lit/unimi/dsi/fastutil/longs/Long2LongMap;FLbld$b;)Lcom/mojang/datafixers/kinds/App; m_257247_ + static + 0 o p_258630_ + 1 o p_258631_ + 2 o p_258632_ + 3 o p_258633_ + a (Lorg/apache/commons/lang3/mutable/MutableLong;Lit/unimi/dsi/fastutil/longs/Long2LongMap;Lble;FLaif;Lbgi;J)Z m_257248_ + static + 0 o p_258634_ + 1 o p_258635_ + 2 o p_258636_ + 3 o p_258637_ + 4 o p_258638_ + 5 o p_258639_ + 6 o p_258640_ + b (Lhe;)Z m_217375_ + static + 0 o p_217376_ +bjp net/minecraft/world/entity/ai/behavior/SetEntityLookTarget + ()V + a (Lbfn;F)Lbjb; m_258096_ + static + 0 o p_260318_ + 1 o p_259522_ + a (Lbfz;FLbfz;)Z m_263988_ + static + 0 o p_264943_ + 1 o p_264944_ + 2 o p_264945_ + a (F)Lbjb; m_257660_ + static + 0 o p_259830_ + a (Ljava/util/function/Predicate;FLbld$b;)Lcom/mojang/datafixers/kinds/App; m_257253_ + static + 0 o p_258661_ + 1 o p_258662_ + 2 o p_258663_ + a (Lbld$b;Ljava/util/function/Predicate;FLble;Lble;)Lblg; m_257251_ + static + 0 o p_258653_ + 1 o p_258654_ + 2 o p_258655_ + 3 o p_258656_ + 4 o p_258657_ + a (Lbgc;F)Lbhs; m_257381_ + static + 0 o p_259154_ + 1 o p_260240_ + a (Lbfn;Lbfz;)Z m_289106_ + static + 0 o p_289376_ + 1 o p_289377_ + a (Lbfz;)Z m_23912_ + static + 0 o p_23913_ + a (Ljava/util/function/Predicate;F)Lbjb; m_257836_ + static + 0 o p_260088_ + 1 o p_259747_ + a (Lbld$b;Lble;Ljava/util/function/Predicate;FLble;Laif;Lbfz;J)Z m_257250_ + static + 0 o p_258645_ + 1 o p_258646_ + 2 o p_258647_ + 3 o p_258648_ + 4 o p_258649_ + 5 o p_258650_ + 6 o p_258651_ + 7 o p_258652_ + a (Lbgc;Lbfz;)Z m_289105_ + static + 0 o p_289374_ + 1 o p_289375_ +bjq net/minecraft/world/entity/ai/behavior/SetEntityLookTargetSometimes + ()V + a (FLbdi;)Lbhs; m_257458_ + static + 0 o p_259047_ + 1 o p_260065_ + a (Ljava/util/function/Predicate;FLbjq$a;Lbld$b;)Lcom/mojang/datafixers/kinds/App; m_257797_ + static + 0 o p_260092_ + 1 o p_259234_ + 2 o p_259844_ + 3 o p_259288_ + a (Lbfz;FLbfz;)Z m_257679_ + static + 0 o p_259413_ + 1 o p_259846_ + 2 o p_259358_ + a (FLbdi;Ljava/util/function/Predicate;)Lbhs; m_257724_ + static + 0 o p_260336_ + 1 o p_259266_ + 2 o p_260173_ + a (Lbld$b;Lble;Ljava/util/function/Predicate;FLbjq$a;Lble;Laif;Lbfz;J)Z m_263989_ + static + 0 o p_264946_ + 1 o p_264947_ + 2 o p_264948_ + 3 o p_264949_ + 4 o p_264950_ + 5 o p_264951_ + 6 o p_264952_ + 7 o p_264953_ + 8 o p_264954_ + a (Lbld$b;Ljava/util/function/Predicate;FLbjq$a;Lble;Lble;)Lblg; m_257641_ + static + 0 o p_259220_ + 1 o p_260157_ + 2 o p_259211_ + 3 o p_260148_ + 4 o p_259350_ + 5 o p_260134_ + a (Lbfn;Lbfz;)Z m_289107_ + static + 0 o p_289378_ + 1 o p_289379_ + a (Lbfn;FLbdi;)Lbhs; m_257472_ + static + 0 o p_259588_ + 1 o p_259105_ + 2 o p_259422_ + a (Lbfz;)Z m_257728_ + static + 0 o p_259715_ +bjq$a net/minecraft/world/entity/ai/behavior/SetEntityLookTargetSometimes$Ticker + a f_257030_ + b f_256928_ + (Lbdi;)V + 0 o p_260279_ + a (Lapf;)Z m_257976_ + 0 o p_260276_ +bjr net/minecraft/world/entity/ai/behavior/SetHiddenState + a f_147896_ + ()V + a (Lbld$b;Lble;Lorg/apache/commons/lang3/mutable/MutableInt;ILble;ILaif;Lbfz;J)Z m_288133_ + static + 0 o p_288838_ + 1 o p_288839_ + 2 o p_288840_ + 3 o p_288841_ + 4 o p_288842_ + 5 o p_288843_ + 6 o p_288844_ + 7 o p_288845_ + 8 o p_288846_ + a (Lorg/apache/commons/lang3/mutable/MutableInt;IILbld$b;)Lcom/mojang/datafixers/kinds/App; m_257686_ + static + 0 o p_259378_ + 1 o p_259041_ + 2 o p_260309_ + 3 o p_259055_ + a (Lbld$b;Lorg/apache/commons/lang3/mutable/MutableInt;IILble;Lble;)Lblg; m_257559_ + static + 0 o p_259050_ + 1 o p_259221_ + 2 o p_259662_ + 3 o p_259447_ + 4 o p_260296_ + 5 o p_260145_ + a (II)Lbhs; m_257713_ + static + 0 o p_259244_ + 1 o p_260263_ +bjs net/minecraft/world/entity/ai/behavior/SetLookAndInteract + ()V + a (Lbfz;ILbfn;Lbfz;)Z m_289108_ + static + 0 o p_289380_ + 1 o p_289381_ + 2 o p_289382_ + 3 o p_289383_ + a (Lbfn;I)Lbhs; m_257430_ + static + 0 o p_259642_ + 1 o p_259805_ + a (Lbld$b;Lble;ILbfn;Lble;Lble;Laif;Lbfz;J)Z m_257254_ + static + 0 o p_258664_ + 1 o p_258665_ + 2 o p_258666_ + 3 o p_258667_ + 4 o p_258668_ + 5 o p_258669_ + 6 o p_258670_ + 7 o p_258671_ + 8 o p_258672_ + a (Lbld$b;ILbfn;Lble;Lble;Lble;)Lblg; m_257256_ + static + 0 o p_258677_ + 1 o p_258678_ + 2 o p_258679_ + 3 o p_258680_ + 4 o p_258681_ + 5 o p_258682_ + a (ILbfn;Lbld$b;)Lcom/mojang/datafixers/kinds/App; m_257257_ + static + 0 o p_258683_ + 1 o p_258684_ + 2 o p_258685_ +bjt net/minecraft/world/entity/ai/behavior/SetRaidStatus + ()V + a (Lbld$b;)Lcom/mojang/datafixers/kinds/App; m_257702_ + static + 0 o p_259382_ + a ()Lbhs; m_257923_ + static + a (Laif;Lbfz;J)Z m_257925_ + static + 0 o p_260026_ + 1 o p_260271_ + 2 o p_259518_ +bju net/minecraft/world/entity/ai/behavior/SetWalkTargetAwayFrom + ()V + a (Lbpb;FIZLjava/util/function/Function;)Lbjb; m_257681_ + static + 0 o p_260057_ + 1 o p_259672_ + 2 o p_259866_ + 3 o p_259232_ + 4 o p_259355_ + a (Lbld$b;ZLjava/util/function/Function;IFLble;Lble;)Lblg; m_257932_ + static + 0 o p_259337_ + 1 o p_259550_ + 2 o p_259503_ + 3 o p_259051_ + 4 o p_259873_ + 5 o p_260063_ + 6 o p_260053_ + a (Lbpb;ZLjava/util/function/Function;IFLbld$b;)Lcom/mojang/datafixers/kinds/App; m_257383_ + static + 0 o p_260218_ + 1 o p_260226_ + 2 o p_259203_ + 3 o p_259373_ + 4 o p_260047_ + 5 o p_259292_ + a (Lbld$b;Lble;ZLjava/util/function/Function;Lble;IFLaif;Lbgi;J)Z m_257839_ + static + 0 o p_259445_ + 1 o p_259666_ + 2 o p_259789_ + 3 o p_260352_ + 4 o p_260155_ + 5 o p_259139_ + 6 o p_259492_ + 7 o p_259973_ + 8 o p_259323_ + 9 o p_259275_ + a (Lbpb;FIZ)Lbhs; m_257620_ + static + 0 o p_259330_ + 1 o p_259719_ + 2 o p_259965_ + 3 o p_259828_ + b (Lbpb;FIZ)Lbjb; m_257370_ + static + 0 o p_259598_ + 1 o p_260183_ + 2 o p_260077_ + 3 o p_259761_ +bjv net/minecraft/world/entity/ai/behavior/SetWalkTargetFromAttackTargetIfTargetOutOfReach + a f_147903_ + ()V + a (F)Lbhs; m_257469_ + static + 0 o p_259228_ + a (Ljava/util/function/Function;)Lbhs; m_257648_ + static + 0 o p_259507_ + a (Lbld$b;Lble;Lble;Lble;Lble;Ljava/util/function/Function;Laif;Lbgb;J)Z m_257259_ + static + 0 o p_258688_ + 1 o p_258689_ + 2 o p_258690_ + 3 o p_258691_ + 4 o p_258692_ + 5 o p_258693_ + 6 o p_258694_ + 7 o p_258695_ + 8 o p_258696_ + a (FLbfz;)Ljava/lang/Float; m_147906_ + static + 0 o p_147907_ + 1 o p_147908_ + a (Ljava/util/function/Function;Lbld$b;)Lcom/mojang/datafixers/kinds/App; m_257258_ + static + 0 o p_258686_ + 1 o p_258687_ + a (Lbld$b;Ljava/util/function/Function;Lble;Lble;Lble;Lble;)Lblg; m_257260_ + static + 0 o p_258697_ + 1 o p_258698_ + 2 o p_258699_ + 3 o p_258700_ + 4 o p_258701_ + 5 o p_258702_ +bjw net/minecraft/world/entity/ai/behavior/SetWalkTargetFromBlockMemory + ()V + a (Lbld$b;ILbpb;IFILble;Lble;Lble;)Lblg; m_257261_ + static + 0 o p_258703_ + 1 o p_258704_ + 2 o p_258705_ + 3 o p_258706_ + 4 o p_258707_ + 5 o p_258708_ + 6 o p_258709_ + 7 o p_258710_ + 8 o p_258711_ + a (Lbpb;FIII)Lbjb; m_257972_ + static + 0 o p_259685_ + 1 o p_259842_ + 2 o p_259530_ + 3 o p_260360_ + 4 o p_259504_ + a (Lbld$b;Lble;Lble;ILbpb;ILble;FILaif;Lbyb;J)Z m_274208_ + static + 0 o p_275047_ + 1 o p_275048_ + 2 o p_275049_ + 3 o p_275050_ + 4 o p_275051_ + 5 o p_275052_ + 6 o p_275053_ + 7 o p_275054_ + 8 o p_275055_ + 9 o p_275056_ + 10 o p_275057_ + 11 o p_275058_ + a (Lbpb;IIFILbld$b;)Lcom/mojang/datafixers/kinds/App; m_257262_ + static + 0 o p_258712_ + 1 o p_258713_ + 2 o p_258714_ + 3 o p_258715_ + 4 o p_258716_ + 5 o p_258717_ +bjx net/minecraft/world/entity/ai/behavior/SetWalkTargetFromLookTarget + ()V + a (Ljava/util/function/Predicate;Lble;Lbld$b;Lble;Ljava/util/function/Function;ILaif;Lbfz;J)Z m_257264_ + static + 0 o p_258730_ + 1 o p_258731_ + 2 o p_258732_ + 3 o p_258733_ + 4 o p_258734_ + 5 o p_258735_ + 6 o p_258736_ + 7 o p_258737_ + 8 o p_258738_ + a (Ljava/util/function/Predicate;Lbld$b;Ljava/util/function/Function;ILble;Lble;)Lblg; m_257265_ + static + 0 o p_258739_ + 1 o p_258740_ + 2 o p_258741_ + 3 o p_258742_ + 4 o p_258743_ + 5 o p_258744_ + a (Ljava/util/function/Predicate;Ljava/util/function/Function;ILbld$b;)Lcom/mojang/datafixers/kinds/App; m_257266_ + static + 0 o p_258745_ + 1 o p_258746_ + 2 o p_258747_ + 3 o p_258748_ + a (FLbfz;)Ljava/lang/Float; m_182362_ + static + 0 o p_182363_ + 1 o p_182364_ + a (FI)Lbjb; m_257764_ + static + 0 o p_259702_ + 1 o p_259510_ + a (Lbfz;)Z m_182368_ + static + 0 o p_182369_ + a (Ljava/util/function/Predicate;Ljava/util/function/Function;I)Lbjb; m_258011_ + static + 0 o p_260341_ + 1 o p_260269_ + 2 o p_259192_ +bjy net/minecraft/world/entity/ai/behavior/ShowTradesToPlayer + c f_147915_ + d f_147916_ + e f_24090_ + f f_24091_ + g f_24092_ + h f_24093_ + i f_24094_ + (II)V + 0 o p_24096_ + 1 o p_24097_ + a (Lbfz;Lbyb;)V m_24112_ + 0 o p_24113_ + 1 o p_24114_ + a (Lclk;)Z m_24117_ + 0 o p_24118_ + a (Lbyb;)V m_24115_ + 0 o p_24116_ + a (Laif;Lbyb;J)Z m_6737_ + 0 o p_24109_ + 1 o p_24110_ + 2 o p_24111_ + a (Laif;Lbyb;)Z m_6114_ + 0 o p_24106_ + 1 o p_24107_ + a (Lbyb;Lcfz;)V m_182370_ + static + 0 o p_182371_ + 1 o p_182372_ + a (Laif;Lbfz;)Z m_6114_ + 0 o p_24099_ + 1 o p_24100_ + a (Laif;Lbfz;J)Z m_6737_ + 0 o p_24120_ + 1 o p_24121_ + 2 o p_24122_ + b (Laif;Lbfz;J)V m_6732_ + 0 o p_24130_ + 1 o p_24131_ + 2 o p_24132_ + b (Lbyb;)V m_24127_ + 0 o p_24128_ + b (Laif;Lbyb;J)V m_6735_ + 0 o p_24124_ + 1 o p_24125_ + 2 o p_24126_ + c (Laif;Lbfz;J)V m_6725_ + 0 o p_24140_ + 1 o p_24141_ + 2 o p_24142_ + c (Lbyb;)V m_182373_ + static + 0 o p_182374_ + c (Laif;Lbyb;J)V m_6725_ + 0 o p_24134_ + 1 o p_24135_ + 2 o p_24136_ + d (Lbyb;)Lbfz; m_24137_ + 0 o p_24138_ + d (Laif;Lbfz;J)V m_6735_ + 0 o p_24102_ + 1 o p_24103_ + 2 o p_24104_ + d (Laif;Lbyb;J)V m_6732_ + 0 o p_24144_ + 1 o p_24145_ + 2 o p_24146_ + e (Lbyb;)V m_24147_ + 0 o p_24148_ +bjz net/minecraft/world/entity/ai/behavior/ShufflingList + a f_147917_ + b f_147918_ + ()V + (Ljava/util/List;)V + 0 o p_147921_ + a (Lcom/mojang/serialization/Codec;)Lcom/mojang/serialization/Codec; m_147927_ + static + 0 o p_147928_ + a (Lbjz;)Ljava/util/List; m_147925_ + static + 0 o p_147926_ + a ()Lbjz; m_147922_ + a (Ljava/lang/Object;I)Lbjz; m_147929_ + 0 o p_147930_ + 1 o p_147931_ + a (Lbjz$a;)V m_147923_ + 0 o p_147924_ + b ()Ljava/util/stream/Stream; m_147932_ + iterator ()Ljava/util/Iterator; iterator + toString ()Ljava/lang/String; toString +bjz$a net/minecraft/world/entity/ai/behavior/ShufflingList$WeightedEntry + a f_147934_ + b f_147935_ + c f_147936_ + (Ljava/lang/Object;I)V + 0 o p_147938_ + 1 o p_147939_ + a (Lcom/mojang/serialization/Codec;)Lcom/mojang/serialization/Codec; m_147943_ + static + 0 o p_147944_ + a (F)V m_147941_ + 0 o p_147942_ + a ()Ljava/lang/Object; m_147940_ + b ()I m_147945_ + c ()D m_147946_ + toString ()Ljava/lang/String; toString +bjz$a$1 net/minecraft/world/entity/ai/behavior/ShufflingList$WeightedEntry$1 + a f_147948_ + (Lcom/mojang/serialization/Codec;)V + 0 o p_147950_ + a (Lcom/mojang/serialization/DynamicOps;Lbjz$a;)Lcom/mojang/datafixers/util/Pair; m_147958_ + static + 0 o p_147959_ + 1 o p_147960_ + a (Lbjz$a;Lcom/mojang/serialization/DynamicOps;Ljava/lang/Object;)Lcom/mojang/serialization/DataResult; encode + 0 o p_147952_ + 1 o p_147953_ + 2 o p_147954_ + a (Lcom/mojang/serialization/Dynamic;Ljava/lang/Object;)Lbjz$a; m_147955_ + static + 0 o p_147956_ + 1 o p_147957_ + decode (Lcom/mojang/serialization/DynamicOps;Ljava/lang/Object;)Lcom/mojang/serialization/DataResult; decode + 0 o p_147962_ + 1 o p_147963_ + encode (Ljava/lang/Object;Lcom/mojang/serialization/DynamicOps;Ljava/lang/Object;)Lcom/mojang/serialization/DataResult; encode + 0 o p_147965_ + 1 o p_147966_ + 2 o p_147967_ +bk net/minecraft/advancements/critereon/EnterBlockTrigger + a f_31265_ + ()V + static + ()V + a (Lcom/google/gson/JsonObject;)Lcpn; m_31278_ + static + 0 o p_31279_ + a (Lacq;)Lcom/google/gson/JsonSyntaxException; m_31284_ + static + 0 o p_31285_ + a (Lcpn;Ljava/lang/String;)V m_31272_ + static + 0 o p_31273_ + 1 o p_31274_ + a (Laig;Ldcb;)V m_31269_ + 0 o p_31270_ + 1 o p_31271_ + a (Ldcb;Lbk$a;)Z m_31275_ + static + 0 o p_31276_ + 1 o p_31277_ + a ()Lacq; m_7295_ + a (Lcom/google/gson/JsonObject;Lba;Lbe;)Lbk$a; m_7214_ + 0 o p_286490_ + 1 o p_286595_ + 2 o p_286764_ + b (Lcom/google/gson/JsonObject;Lba;Lbe;)Lar; m_7214_ + 0 o p_286556_ + 1 o p_286474_ + 2 o p_286857_ +bk$a net/minecraft/advancements/critereon/EnterBlockTrigger$TriggerInstance + a f_31291_ + b f_31292_ + (Lba;Lcpn;Lcz;)V + 0 o p_286269_ + 1 o p_286517_ + 2 o p_286864_ + a (Lct;)Lcom/google/gson/JsonObject; m_7683_ + 0 o p_31302_ + a (Ldcb;)Z m_31299_ + 0 o p_31300_ + a (Lcpn;)Lbk$a; m_31297_ + static + 0 o p_31298_ +bka net/minecraft/world/entity/ai/behavior/SleepInBed + c f_147968_ + d f_24149_ + ()V + a (Laif;Lbfz;)Z m_6114_ + 0 o p_24154_ + 1 o p_24155_ + a (J)Z m_7773_ + 0 o p_24152_ + a (Laif;Lbfz;J)Z m_6737_ + 0 o p_24161_ + 1 o p_24162_ + 2 o p_24163_ + b (Laif;Lbfz;J)V m_6732_ + 0 o p_24165_ + 1 o p_24166_ + 2 o p_24167_ + d (Laif;Lbfz;J)V m_6735_ + 0 o p_24157_ + 1 o p_24158_ + 2 o p_24159_ +bkb net/minecraft/world/entity/ai/behavior/SocializeAtBell + a f_147969_ + ()V + a (Lbld$b;)Lcom/mojang/datafixers/kinds/App; m_257268_ + static + 0 o p_258755_ + a (Lbfz;Lbfz;)Z m_289110_ + static + 0 o p_289385_ + 1 o p_289386_ + a ()Lbjb; m_257875_ + static + a (Lbld$b;Lble;Lble;Lble;Lble;Lble;Laif;Lbfz;J)Z m_257270_ + static + 0 o p_258760_ + 1 o p_258761_ + 2 o p_258762_ + 3 o p_258763_ + 4 o p_258764_ + 5 o p_258765_ + 6 o p_258766_ + 7 o p_258767_ + 8 o p_258768_ + a (Lbld$b;Lble;Lble;Lble;Lble;Lble;)Lblg; m_257267_ + static + 0 o p_258749_ + 1 o p_258750_ + 2 o p_258751_ + 3 o p_258752_ + 4 o p_258753_ + 5 o p_258754_ + a (Lble;Lble;Lble;Lbfz;)V m_257269_ + static + 0 o p_258756_ + 1 o p_258757_ + 2 o p_258758_ + 3 o p_258759_ + a (Lbfz;)Z m_289109_ + static + 0 o p_289384_ +bkc net/minecraft/world/entity/ai/behavior/StartAttacking + ()V + a (Ljava/util/function/Predicate;Ljava/util/function/Function;Lble;Lble;Laif;Lbgb;J)Z m_257271_ + static + 0 o p_258769_ + 1 o p_258770_ + 2 o p_258771_ + 3 o p_258772_ + 4 o p_258773_ + 5 o p_258774_ + 6 o p_258775_ + a (Ljava/util/function/Predicate;Ljava/util/function/Function;Lble;Lble;)Lblg; m_257272_ + static + 0 o p_258776_ + 1 o p_258777_ + 2 o p_258778_ + 3 o p_258779_ + a (Ljava/util/function/Predicate;Ljava/util/function/Function;)Lbhs; m_257741_ + static + 0 o p_259618_ + 1 o p_259435_ + a (Ljava/util/function/Predicate;Ljava/util/function/Function;Lbld$b;)Lcom/mojang/datafixers/kinds/App; m_257273_ + static + 0 o p_258780_ + 1 o p_258781_ + 2 o p_258782_ + a (Ljava/util/function/Function;)Lbhs; m_257710_ + static + 0 o p_259868_ + a (Lbgb;)Z m_24211_ + static + 0 o p_24212_ +bkd net/minecraft/world/entity/ai/behavior/StartCelebratingIfTargetDead + ()V + a (Lbld$b;Ljava/util/function/BiPredicate;ILble;Lble;Lble;Lble;)Lblg; m_258039_ + static + 0 o p_259165_ + 1 o p_259276_ + 2 o p_259257_ + 3 o p_259049_ + 4 o p_259067_ + 5 o p_259031_ + 6 o p_259141_ + a (Ljava/util/function/BiPredicate;ILbld$b;)Lcom/mojang/datafixers/kinds/App; m_257913_ + static + 0 o p_260135_ + 1 o p_260349_ + 2 o p_259600_ + a (ILjava/util/function/BiPredicate;)Lbhs; m_257496_ + static + 0 o p_259238_ + 1 o p_259102_ + a (Lbld$b;Lble;Ljava/util/function/BiPredicate;Lble;ILble;Lble;Laif;Lbfz;J)Z m_257522_ + static + 0 o p_259599_ + 1 o p_259269_ + 2 o p_260235_ + 3 o p_259710_ + 4 o p_259328_ + 5 o p_259783_ + 6 o p_259163_ + 7 o p_259956_ + 8 o p_259611_ + 9 o p_259619_ +bke net/minecraft/world/entity/ai/behavior/StayCloseToTarget + ()V + a (Ljava/util/function/Function;Ljava/util/function/Predicate;IFILbld$b;)Lcom/mojang/datafixers/kinds/App; m_271617_ + static + 0 o p_272455_ + 1 o p_272456_ + 2 o p_272457_ + 3 o p_272458_ + 4 o p_272459_ + 5 o p_272460_ + a (Ljava/util/function/Function;Ljava/util/function/Predicate;ILble;Lble;FILaif;Lbfz;J)Z m_257896_ + static + 0 o p_259449_ + 1 o p_273383_ + 2 o p_259576_ + 3 o p_259182_ + 4 o p_259974_ + 5 o p_260337_ + 6 o p_259251_ + 7 o p_260054_ + 8 o p_260069_ + 9 o p_259517_ + a (Ljava/util/function/Function;Ljava/util/function/Predicate;IFILble;Lble;)Lblg; m_271618_ + static + 0 o p_272461_ + 1 o p_272462_ + 2 o p_272463_ + 3 o p_272464_ + 4 o p_272465_ + 5 o p_272466_ + 6 o p_272467_ + a (Ljava/util/function/Function;Ljava/util/function/Predicate;IIF)Lbhs; m_271742_ + static + 0 o p_272871_ + 1 o p_273150_ + 2 o p_273536_ + 3 o p_273107_ + 4 o p_273745_ +bkf net/minecraft/world/entity/ai/behavior/StopAttackingIfTargetInvalid + a f_147978_ + ()V + a (Lbgb;Lbfz;)V m_217407_ + static + 0 o p_217408_ + 1 o p_217409_ + a (Ljava/util/function/Predicate;)Lbhs; m_257990_ + static + 0 o p_259762_ + a ()Lbhs; m_257822_ + static + a (Lbfz;Ljava/util/Optional;)Z m_258032_ + static + 0 o p_259416_ + 1 o p_259377_ + a (Lbld$b;ZLjava/util/function/Predicate;Ljava/util/function/BiConsumer;Lble;Lble;)Lblg; m_257274_ + static + 0 o p_258783_ + 1 o p_258784_ + 2 o p_258785_ + 3 o p_258786_ + 4 o p_258787_ + 5 o p_258788_ + a (Ljava/util/function/Predicate;Ljava/util/function/BiConsumer;Z)Lbhs; m_257811_ + static + 0 o p_260357_ + 1 o p_259568_ + 2 o p_260319_ + a (ZLjava/util/function/Predicate;Ljava/util/function/BiConsumer;Lbld$b;)Lcom/mojang/datafixers/kinds/App; m_257276_ + static + 0 o p_258798_ + 1 o p_258799_ + 2 o p_258800_ + 3 o p_258801_ + a (Ljava/util/function/BiConsumer;)Lbhs; m_257940_ + static + 0 o p_260165_ + a (Lbfz;)Z m_147985_ + static + 0 o p_147986_ + a (Lbld$b;Lble;ZLble;Ljava/util/function/Predicate;Ljava/util/function/BiConsumer;Laif;Lbgb;J)Z m_257275_ + static + 0 o p_258789_ + 1 o p_258790_ + 2 o p_258791_ + 3 o p_258792_ + 4 o p_258793_ + 5 o p_258794_ + 6 o p_258795_ + 7 o p_258796_ + 8 o p_258797_ + b (Lbgb;Lbfz;)V m_217410_ + static + 0 o p_217411_ + 1 o p_217412_ + b (Lbfz;)Z m_147987_ + static + 0 o p_147988_ +bkg net/minecraft/world/entity/ai/behavior/StopBeingAngryIfTargetDead + ()V + a (Lbld$b;)Lcom/mojang/datafixers/kinds/App; m_257282_ + static + 0 o p_258814_ + a ()Lbhs; m_257993_ + static + a (Lbld$b;Lble;Laif;Lbfz;J)Z m_257279_ + static + 0 o p_258805_ + 1 o p_258806_ + 2 o p_258807_ + 3 o p_258808_ + 4 o p_258809_ + a (Lbld$b;Lble;)Lblg; m_257281_ + static + 0 o p_258812_ + 1 o p_258813_ + a (Laif;Lbfz;)Z m_289111_ + static + 0 o p_289387_ + 1 o p_289388_ + a (Lble;Lbfz;)V m_257280_ + static + 0 o p_258810_ + 1 o p_258811_ + a (Lbfj;)Lbfz; m_257277_ + static + 0 o p_258802_ +bkh net/minecraft/world/entity/ai/behavior/StrollAroundPoi + a f_147993_ + b f_147994_ + c f_147995_ + ()V + a (Lbpb;FI)Lbjb; m_257894_ + static + 0 o p_259159_ + 1 o p_260182_ + 2 o p_260102_ + a (Lbld$b;Lble;ILorg/apache/commons/lang3/mutable/MutableLong;Lble;FLaif;Lbgi;J)Z m_257286_ + static + 0 o p_258828_ + 1 o p_258829_ + 2 o p_258830_ + 3 o p_258831_ + 4 o p_258832_ + 5 o p_258833_ + 6 o p_258834_ + 7 o p_258835_ + 8 o p_258836_ + a (Lbpb;ILorg/apache/commons/lang3/mutable/MutableLong;FLbld$b;)Lcom/mojang/datafixers/kinds/App; m_257285_ + static + 0 o p_258823_ + 1 o p_258824_ + 2 o p_258825_ + 3 o p_258826_ + 4 o p_258827_ + a (FLeei;)Lbpe; m_257283_ + static + 0 o p_258815_ + 1 o p_258816_ + a (Lbld$b;ILorg/apache/commons/lang3/mutable/MutableLong;FLble;Lble;)Lblg; m_257284_ + static + 0 o p_258817_ + 1 o p_258818_ + 2 o p_258819_ + 3 o p_258820_ + 4 o p_258821_ + 5 o p_258822_ +bki net/minecraft/world/entity/ai/behavior/StrollToPoi + ()V + a (Lbpb;ILorg/apache/commons/lang3/mutable/MutableLong;FILbld$b;)Lcom/mojang/datafixers/kinds/App; m_257289_ + static + 0 o p_258854_ + 1 o p_258855_ + 2 o p_258856_ + 3 o p_258857_ + 4 o p_258858_ + 5 o p_258859_ + a (Lbld$b;Lble;ILorg/apache/commons/lang3/mutable/MutableLong;Lble;FILaif;Lbgi;J)Z m_257288_ + static + 0 o p_258844_ + 1 o p_258845_ + 2 o p_258846_ + 3 o p_258847_ + 4 o p_258848_ + 5 o p_258849_ + 6 o p_258850_ + 7 o p_258851_ + 8 o p_258852_ + 9 o p_258853_ + a (Lbpb;FII)Lbhs; m_258086_ + static + 0 o p_259919_ + 1 o p_259285_ + 2 o p_259332_ + 3 o p_259904_ + a (Lbld$b;ILorg/apache/commons/lang3/mutable/MutableLong;FILble;Lble;)Lblg; m_257287_ + static + 0 o p_258837_ + 1 o p_258838_ + 2 o p_258839_ + 3 o p_258840_ + 4 o p_258841_ + 5 o p_258842_ + 6 o p_258843_ +bkj net/minecraft/world/entity/ai/behavior/StrollToPoiList + ()V + a (Lbld$b;ILorg/apache/commons/lang3/mutable/MutableLong;FILble;Lble;Lble;)Lblg; m_257703_ + static + 0 o p_259917_ + 1 o p_259379_ + 2 o p_259983_ + 3 o p_260334_ + 4 o p_259398_ + 5 o p_259574_ + 6 o p_259801_ + 7 o p_259116_ + a (Lbpb;FIILbpb;)Lbhs; m_257487_ + static + 0 o p_259573_ + 1 o p_259895_ + 2 o p_260285_ + 3 o p_259533_ + 4 o p_259706_ + a (Lbpb;Lbpb;ILorg/apache/commons/lang3/mutable/MutableLong;FILbld$b;)Lcom/mojang/datafixers/kinds/App; m_257930_ + static + 0 o p_260272_ + 1 o p_259961_ + 2 o p_259092_ + 3 o p_259034_ + 4 o p_260076_ + 5 o p_259567_ + 6 o p_259612_ + a (Lbld$b;Lble;Lble;ILorg/apache/commons/lang3/mutable/MutableLong;Lble;FILaif;Lbyb;J)Z m_257368_ + static + 0 o p_259774_ + 1 o p_259623_ + 2 o p_259743_ + 3 o p_259158_ + 4 o p_260190_ + 5 o p_259441_ + 6 o p_259394_ + 7 o p_259542_ + 8 o p_259940_ + 9 o p_259222_ + 10 o p_260161_ +bkk net/minecraft/world/entity/ai/behavior/Swim + c f_24381_ + (F)V + 0 o p_24383_ + a (Laif;Lbgb;)Z m_6114_ + 0 o p_24388_ + 1 o p_24389_ + a (Laif;Lbgb;J)Z m_6737_ + 0 o p_24391_ + 1 o p_24392_ + 2 o p_24393_ + a (Laif;Lbfz;)Z m_6114_ + 0 o p_24385_ + 1 o p_24386_ + a (Laif;Lbfz;J)Z m_6737_ + 0 o p_24395_ + 1 o p_24396_ + 2 o p_24397_ + b (Laif;Lbgb;J)V m_6725_ + 0 o p_24399_ + 1 o p_24400_ + 2 o p_24401_ + c (Laif;Lbfz;J)V m_6725_ + 0 o p_24403_ + 1 o p_24404_ + 2 o p_24405_ +bkl net/minecraft/world/entity/ai/behavior/TradeWithVillager + c f_147996_ + d f_147997_ + e f_24406_ + ()V + a (Lbyb;Ljava/util/Set;Lbfz;)V m_24425_ + static + 0 o p_24426_ + 1 o p_24427_ + 2 o p_24428_ + a (Laif;Lbyb;J)Z m_6737_ + 0 o p_24419_ + 1 o p_24420_ + 2 o p_24421_ + a (Laif;Lbyb;)Z m_6114_ + 0 o p_24416_ + 1 o p_24417_ + a (Lbyb;Lbyb;)Ljava/util/Set; m_24422_ + static + 0 o p_24423_ + 1 o p_24424_ + a (Lcom/google/common/collect/ImmutableSet;Lcfu;)Z m_24429_ + static + 0 o p_24430_ + 1 o p_24431_ + a (Laif;Lbfz;)Z m_6114_ + 0 o p_24409_ + 1 o p_24410_ + a (Laif;Lbfz;J)Z m_6737_ + 0 o p_24433_ + 1 o p_24434_ + 2 o p_24435_ + b (Laif;Lbfz;J)V m_6732_ + 0 o p_24441_ + 1 o p_24442_ + 2 o p_24443_ + b (Laif;Lbyb;J)V m_6735_ + 0 o p_24437_ + 1 o p_24438_ + 2 o p_24439_ + c (Laif;Lbfz;J)V m_6725_ + 0 o p_24449_ + 1 o p_24450_ + 2 o p_24451_ + c (Laif;Lbyb;J)V m_6725_ + 0 o p_24445_ + 1 o p_24446_ + 2 o p_24447_ + d (Laif;Lbfz;J)V m_6735_ + 0 o p_24412_ + 1 o p_24413_ + 2 o p_24414_ + d (Laif;Lbyb;J)V m_6732_ + 0 o p_24453_ + 1 o p_24454_ + 2 o p_24455_ +bkm net/minecraft/world/entity/ai/behavior/TriggerGate + ()V + a (Lbif$a;Lbjz;Lbif$b;Lbld$b;)Lcom/mojang/datafixers/kinds/App; m_257729_ + static + 0 o p_259923_ + 1 o p_259081_ + 2 o p_259707_ + 3 o p_259457_ + a (Lbif$a;Lbjz;Lbif$b;Laif;Lbfz;J)Z m_257776_ + static + 0 o p_259160_ + 1 o p_259905_ + 2 o p_260018_ + 3 o p_260107_ + 4 o p_259505_ + 5 o p_259999_ + a (Lbjz;Lcom/mojang/datafixers/util/Pair;)V m_257533_ + static + 0 o p_259128_ + 1 o p_260333_ + a (Ljava/util/List;Lbif$a;Lbif$b;)Lbjb; m_258009_ + static + 0 o p_259442_ + 1 o p_259823_ + 2 o p_259632_ + a (Ljava/util/List;)Lbjb; m_257503_ + static + 0 o p_259551_ +bkn net/minecraft/world/entity/ai/behavior/TryFindLand + a f_217413_ + ()V + a (Lorg/apache/commons/lang3/mutable/MutableLong;IFLbld$b;)Lcom/mojang/datafixers/kinds/App; m_257479_ + static + 0 o p_259734_ + 1 o p_259375_ + 2 o p_259954_ + 3 o p_259851_ + a (IF)Lbhs; m_257647_ + static + 0 o p_259889_ + 1 o p_259302_ + a (Lorg/apache/commons/lang3/mutable/MutableLong;IFLble;Lble;Lble;)Lblg; m_257596_ + static + 0 o p_260022_ + 1 o p_259331_ + 2 o p_259815_ + 3 o p_259686_ + 4 o p_259882_ + 5 o p_259123_ + a (Lorg/apache/commons/lang3/mutable/MutableLong;ILble;Lble;FLaif;Lbgi;J)Z m_257862_ + static + 0 o p_259509_ + 1 o p_260347_ + 2 o p_259834_ + 3 o p_259525_ + 4 o p_260242_ + 5 o p_260032_ + 6 o p_260019_ + 7 o p_259854_ +bko net/minecraft/world/entity/ai/behavior/TryFindLandNearWater + ()V + a (Lorg/apache/commons/lang3/mutable/MutableLong;IFLbld$b;)Lcom/mojang/datafixers/kinds/App; m_257445_ + static + 0 o p_259059_ + 1 o p_260277_ + 2 o p_260066_ + 3 o p_260348_ + a (IF)Lbhs; m_257557_ + static + 0 o p_259739_ + 1 o p_259118_ + a (Lorg/apache/commons/lang3/mutable/MutableLong;IFLble;Lble;Lble;)Lblg; m_257879_ + static + 0 o p_259068_ + 1 o p_259925_ + 2 o p_259201_ + 3 o p_259029_ + 4 o p_259100_ + 5 o p_259367_ + a (Lorg/apache/commons/lang3/mutable/MutableLong;ILble;Lble;FLaif;Lbgi;J)Z m_257996_ + static + 0 o p_259281_ + 1 o p_260212_ + 2 o p_259198_ + 3 o p_259149_ + 4 o p_259439_ + 5 o p_259876_ + 6 o p_259531_ + 7 o p_259771_ +bkp net/minecraft/world/entity/ai/behavior/TryFindWater + ()V + a (Lorg/apache/commons/lang3/mutable/MutableLong;IFLbld$b;)Lcom/mojang/datafixers/kinds/App; m_257817_ + static + 0 o p_259147_ + 1 o p_259099_ + 2 o p_259452_ + 3 o p_260101_ + a (IF)Lbhs; m_257908_ + static + 0 o p_259298_ + 1 o p_259140_ + a (Lorg/apache/commons/lang3/mutable/MutableLong;IFLble;Lble;Lble;)Lblg; m_258071_ + static + 0 o p_260162_ + 1 o p_259736_ + 2 o p_259091_ + 3 o p_259124_ + 4 o p_259692_ + 5 o p_259819_ + a (Lorg/apache/commons/lang3/mutable/MutableLong;ILble;Lble;FLaif;Lbgi;J)Z m_257548_ + static + 0 o p_260082_ + 1 o p_260192_ + 2 o p_260079_ + 3 o p_260085_ + 4 o p_259470_ + 5 o p_260228_ + 6 o p_259212_ + 7 o p_260041_ +bkq net/minecraft/world/entity/ai/behavior/TryLaySpawnOnWaterNearLand + ()V + a (Lcpn;Lbld$b;)Lcom/mojang/datafixers/kinds/App; m_258016_ + static + 0 o p_259737_ + 1 o p_259781_ + a (Lcpn;Lble;Lble;Lble;)Lblg; m_257870_ + static + 0 o p_260291_ + 1 o p_259765_ + 2 o p_259602_ + 3 o p_260037_ + a (Lcpn;)Lbhs; m_257849_ + static + 0 o p_259207_ + a (Lcpn;Lble;Laif;Lbfz;J)Z m_268890_ + static + 0 o p_269879_ + 1 o p_269880_ + 2 o p_269881_ + 3 o p_269882_ + 4 o p_269883_ +bkr net/minecraft/world/entity/ai/behavior/UpdateActivityFromSchedule + ()V + a (Lbld$b;)Lcom/mojang/datafixers/kinds/App; m_258025_ + static + 0 o p_259429_ + a ()Lbhs; m_257835_ + static + a (Laif;Lbfz;J)Z m_288135_ + static + 0 o p_288849_ + 1 o p_288850_ + 2 o p_288851_ +bks net/minecraft/world/entity/ai/behavior/UseBonemeal + c f_148035_ + d f_24461_ + e f_24462_ + f f_24463_ + g f_24464_ + ()V + a (Lgu;Laif;)Z m_24485_ + 0 o p_24486_ + 1 o p_24487_ + a (Lbyb;)V m_24480_ + 0 o p_24481_ + a (Laif;Lbyb;J)Z m_6737_ + 0 o p_24477_ + 1 o p_24478_ + 2 o p_24479_ + a (Laif;Lbyb;)Z m_6114_ + 0 o p_24474_ + 1 o p_24475_ + a (Lbyb;Lgu;)V m_24482_ + static + 0 o p_24483_ + 1 o p_24484_ + a (Laif;Lbfz;)Z m_6114_ + 0 o p_24467_ + 1 o p_24468_ + a (Laif;Lbfz;J)Z m_6737_ + 0 o p_24489_ + 1 o p_24490_ + 2 o p_24491_ + b (Laif;Lbfz;J)V m_6732_ + 0 o p_24500_ + 1 o p_24501_ + 2 o p_24502_ + b (Laif;Lbyb;)Ljava/util/Optional; m_24492_ + 0 o p_24493_ + 1 o p_24494_ + b (Laif;Lbyb;J)V m_6735_ + 0 o p_24496_ + 1 o p_24497_ + 2 o p_24498_ + c (Laif;Lbfz;J)V m_6725_ + 0 o p_24508_ + 1 o p_24509_ + 2 o p_24510_ + c (Laif;Lbyb;J)V m_6732_ + 0 o p_24504_ + 1 o p_24505_ + 2 o p_24506_ + d (Laif;Lbfz;J)V m_6735_ + 0 o p_24470_ + 1 o p_24471_ + 2 o p_24472_ + d (Laif;Lbyb;J)V m_6725_ + 0 o p_24512_ + 1 o p_24513_ + 2 o p_24514_ +bkt net/minecraft/world/entity/ai/behavior/ValidateNearbyPoi + a f_148036_ + ()V + a (Ljava/util/function/Predicate;Lbpb;)Lbhs; m_257857_ + static + 0 o p_259460_ + 1 o p_259635_ + a (Lbld$b;Lble;Ljava/util/function/Predicate;Laif;Lbfz;J)Z m_257898_ + static + 0 o p_259541_ + 1 o p_260323_ + 2 o p_260175_ + 3 o p_259843_ + 4 o p_259259_ + 5 o p_260036_ + a (Lbld$b;Ljava/util/function/Predicate;Lble;)Lblg; m_257919_ + static + 0 o p_259546_ + 1 o p_260187_ + 2 o p_259498_ + a (Laif;Lgu;Lbfz;)Z m_24530_ + static + 0 o p_24531_ + 1 o p_24532_ + 2 o p_24533_ + a (Lbpb;Ljava/util/function/Predicate;Lbld$b;)Lcom/mojang/datafixers/kinds/App; m_257806_ + static + 0 o p_259585_ + 1 o p_259383_ + 2 o p_259215_ +bku net/minecraft/world/entity/ai/behavior/VillageBoundRandomStroll + a f_148037_ + b f_148038_ + ()V + a (IIFLbld$b;)Lcom/mojang/datafixers/kinds/App; m_257292_ + static + 0 o p_258866_ + 1 o p_258867_ + 2 o p_258868_ + 3 o p_258869_ + a (FLeei;)Lbpe; m_257291_ + static + 0 o p_258864_ + 1 o p_258865_ + a (F)Lbjb; m_257910_ + static + 0 o p_260156_ + a (IIFLble;)Lblg; m_257290_ + static + 0 o p_258860_ + 1 o p_258861_ + 2 o p_258862_ + 3 o p_258863_ + a (FII)Lbjb; m_258010_ + static + 0 o p_259320_ + 1 o p_259708_ + 2 o p_259311_ + a (IILble;FLaif;Lbgi;J)Z m_257293_ + static + 0 o p_258870_ + 1 o p_258871_ + 2 o p_258872_ + 3 o p_258873_ + 4 o p_258874_ + 5 o p_258875_ + 6 o p_258876_ +bkv net/minecraft/world/entity/ai/behavior/VillagerCalmDown + a f_148039_ + ()V + a (Lbld$b;)Lcom/mojang/datafixers/kinds/App; m_257295_ + static + 0 o p_258884_ + a (Lbld$b;Lble;Lble;Lble;Laif;Lbfz;J)Z m_288136_ + static + 0 o p_288852_ + 1 o p_288853_ + 2 o p_288854_ + 3 o p_288855_ + 4 o p_288856_ + 5 o p_288857_ + 6 o p_288858_ + a (Lbfz;Lbfz;)Z m_24579_ + static + 0 o p_24581_ + 1 o p_259890_ + a (Lbld$b;Lble;Lble;Lble;)Lblg; m_257296_ + static + 0 o p_258885_ + 1 o p_258886_ + 2 o p_258887_ + 3 o p_258888_ + a ()Lbhs; m_257666_ + static +bkw net/minecraft/world/entity/ai/behavior/VillagerGoalPackages + a f_148040_ + ()V + a (Lbye;F)Lcom/google/common/collect/ImmutableList; m_24585_ + static + 0 o p_24586_ + 1 o p_24587_ + a (Lhe;)Z m_217492_ + static + 0 o p_217493_ + a (F)Lcom/google/common/collect/ImmutableList; m_24583_ + static + 0 o p_24584_ + a (Laif;Lbfz;)Z m_257480_ + static + 0 o p_260274_ + 1 o p_260163_ + a ()Lcom/mojang/datafixers/util/Pair; m_24582_ + static + b (Laif;Lbfz;)Z m_257399_ + static + 0 o p_259939_ + 1 o p_259384_ + b (Lbye;F)Lcom/google/common/collect/ImmutableList; m_24589_ + static + 0 o p_24590_ + 1 o p_24591_ + b (Lhe;)Z m_217494_ + static + 0 o p_217495_ + b ()Lcom/mojang/datafixers/util/Pair; m_24588_ + static + c (Lhe;)Z m_217496_ + static + 0 o p_217497_ + c (Lbye;F)Lcom/google/common/collect/ImmutableList; m_24592_ + static + 0 o p_24593_ + 1 o p_24594_ + d (Lhe;)Z m_217498_ + static + 0 o p_217499_ + d (Lbye;F)Lcom/google/common/collect/ImmutableList; m_24595_ + static + 0 o p_24596_ + 1 o p_24597_ + e (Lbye;F)Lcom/google/common/collect/ImmutableList; m_24598_ + static + 0 o p_24599_ + 1 o p_24600_ + f (Lbye;F)Lcom/google/common/collect/ImmutableList; m_24601_ + static + 0 o p_24602_ + 1 o p_24603_ + g (Lbye;F)Lcom/google/common/collect/ImmutableList; m_24604_ + static + 0 o p_24605_ + 1 o p_24606_ + h (Lbye;F)Lcom/google/common/collect/ImmutableList; m_24607_ + static + 0 o p_24608_ + 1 o p_24609_ + i (Lbye;F)Lcom/google/common/collect/ImmutableList; m_24610_ + static + 0 o p_24611_ + 1 o p_24612_ +bkx net/minecraft/world/entity/ai/behavior/VillagerMakeLove + c f_148042_ + d f_148043_ + e f_24613_ + ()V + a (Lbyb;Lgu;Lhe;)Z m_217500_ + 0 o p_217501_ + 1 o p_217502_ + 2 o p_217503_ + a (Laif;Lbyb;Lgu;)V m_24633_ + 0 o p_24634_ + 1 o p_24635_ + 2 o p_24636_ + a (Lhe;)Z m_217508_ + static + 0 o p_217509_ + a (Laif;Lbyb;J)Z m_6737_ + 0 o p_24626_ + 1 o p_24627_ + 2 o p_24628_ + a (Lbfe;)Z m_289112_ + static + 0 o p_289389_ + a (Lbyb;)Z m_24639_ + 0 o p_24640_ + a (Laif;Lbyb;)Z m_6114_ + 0 o p_24623_ + 1 o p_24624_ + a (Laif;Lbyb;Lbyb;)V m_24629_ + 0 o p_24630_ + 1 o p_24631_ + 2 o p_24632_ + a (Lbyb;Lhe;Lgu;)Z m_217504_ + 0 o p_217505_ + 1 o p_217506_ + 2 o p_217507_ + a (Laif;Lbfz;)Z m_6114_ + 0 o p_24616_ + 1 o p_24617_ + a (Laif;Lbfz;J)Z m_6737_ + 0 o p_24645_ + 1 o p_24646_ + 2 o p_24647_ + b (Laif;Lbfz;J)V m_6732_ + 0 o p_24663_ + 1 o p_24664_ + 2 o p_24665_ + b (Laif;Lbyb;)Ljava/util/Optional; m_24648_ + 0 o p_24649_ + 1 o p_24650_ + b (Laif;Lbyb;J)V m_6735_ + 0 o p_24652_ + 1 o p_24653_ + 2 o p_24654_ + b (Laif;Lbyb;Lbyb;)Ljava/util/Optional; m_24655_ + 0 o p_24656_ + 1 o p_24657_ + 2 o p_24658_ + c (Laif;Lbfz;J)V m_6725_ + 0 o p_24671_ + 1 o p_24672_ + 2 o p_24673_ + c (Laif;Lbyb;J)V m_6725_ + 0 o p_24667_ + 1 o p_24668_ + 2 o p_24669_ + d (Laif;Lbfz;J)V m_6735_ + 0 o p_24619_ + 1 o p_24620_ + 2 o p_24621_ + d (Laif;Lbyb;J)V m_6732_ + 0 o p_24675_ + 1 o p_24676_ + 2 o p_24677_ +bky net/minecraft/world/entity/ai/behavior/VillagerPanicTrigger + ()V + a (Laif;Lbyb;J)Z m_6737_ + 0 o p_24684_ + 1 o p_24685_ + 2 o p_24686_ + a (Laif;Lbfz;J)Z m_6737_ + 0 o p_24690_ + 1 o p_24691_ + 2 o p_24692_ + b (Laif;Lbyb;J)V m_6735_ + 0 o p_24694_ + 1 o p_24695_ + 2 o p_24696_ + b (Lbfz;)Z m_24687_ + static + 0 o p_24688_ + c (Laif;Lbfz;J)V m_6725_ + 0 o p_24704_ + 1 o p_24705_ + 2 o p_24706_ + c (Laif;Lbyb;J)V m_6725_ + 0 o p_24700_ + 1 o p_24701_ + 2 o p_24702_ + c (Lbfz;)Z m_24697_ + static + 0 o p_24698_ + d (Laif;Lbfz;J)V m_6735_ + 0 o p_24680_ + 1 o p_24681_ + 2 o p_24682_ +bkz net/minecraft/world/entity/ai/behavior/WakeUp + ()V + a (Lbld$b;)Lcom/mojang/datafixers/kinds/App; m_258043_ + static + 0 o p_259813_ + a ()Lbhs; m_257779_ + static + a (Laif;Lbfz;J)Z m_258063_ + static + 0 o p_259555_ + 1 o p_259657_ + 2 o p_259316_ +bl net/minecraft/advancements/critereon/EntityEquipmentPredicate + a f_32176_ + b f_32177_ + c f_32178_ + d f_32179_ + e f_32180_ + f f_32181_ + g f_32182_ + h f_32183_ + ()V + static + (Lbz;Lbz;Lbz;Lbz;Lbz;Lbz;)V + 0 o p_32186_ + 1 o p_32187_ + 2 o p_32188_ + 3 o p_32189_ + 4 o p_32190_ + 5 o p_32191_ + a ()Lcom/google/gson/JsonElement; m_32192_ + a (Lbfj;)Z m_32193_ + 0 o p_32194_ + a (Lcom/google/gson/JsonElement;)Lbl; m_32195_ + static + 0 o p_32196_ +bl$a net/minecraft/advancements/critereon/EntityEquipmentPredicate$Builder + a f_32197_ + b f_32198_ + c f_32199_ + d f_32200_ + e f_32201_ + f f_32202_ + ()V + a (Lbz;)Lbl$a; m_32205_ + 0 o p_32206_ + a ()Lbl$a; m_32204_ + static + b (Lbz;)Lbl$a; m_32208_ + 0 o p_32209_ + b ()Lbl; m_32207_ + c (Lbz;)Lbl$a; m_32210_ + 0 o p_32211_ + d (Lbz;)Lbl$a; m_32212_ + 0 o p_32213_ + e (Lbz;)Lbl$a; m_149928_ + 0 o p_149929_ + f (Lbz;)Lbl$a; m_149930_ + 0 o p_149931_ +bla net/minecraft/world/entity/ai/behavior/WorkAtComposter + c f_24786_ + ()V + static + ()V + a (Lbyb;)V m_24802_ + 0 o p_24803_ + a (Laif;Lbyb;)V m_5628_ + 0 o p_24790_ + 1 o p_24791_ + a (Laif;Lbyb;Lhd;Ldcb;)V m_24792_ + 0 o p_24793_ + 1 o p_24794_ + 2 o p_24795_ + 3 o p_24796_ + a (Laif;Ldcb;Lgu;Ldcb;)V m_24797_ + 0 o p_24798_ + 1 o p_24799_ + 2 o p_24800_ + 3 o p_24801_ +blb net/minecraft/world/entity/ai/behavior/WorkAtPoi + c f_148046_ + d f_148047_ + e f_24804_ + ()V + a (Laif;Lbyb;J)V m_6735_ + 0 o p_24816_ + 1 o p_24817_ + 2 o p_24818_ + a (Lbha;Lhd;)V m_24819_ + static + 0 o p_24820_ + 1 o p_24821_ + a (Laif;Lbfz;)Z m_6114_ + 0 o p_24807_ + 1 o p_24808_ + a (Laif;Lbyb;)V m_5628_ + 0 o p_24813_ + 1 o p_24814_ + a (Laif;Lbfz;J)Z m_6737_ + 0 o p_24823_ + 1 o p_24824_ + 2 o p_24825_ + b (Laif;Lbyb;)Z m_6114_ + 0 o p_24827_ + 1 o p_24828_ + b (Laif;Lbyb;J)Z m_6737_ + 0 o p_24830_ + 1 o p_24831_ + 2 o p_24832_ + d (Laif;Lbfz;J)V m_6735_ + 0 o p_24810_ + 1 o p_24811_ + 2 o p_24812_ +blc net/minecraft/world/entity/ai/behavior/YieldJobSite + ()V + a (Lhe;Lbyb;Lgu;)Z m_217510_ + static + 0 o p_217511_ + 1 o p_217512_ + 2 o p_217513_ + a (FLbld$b;)Lcom/mojang/datafixers/kinds/App; m_257302_ + static + 0 o p_258915_ + 1 o p_258916_ + a (Lbld$b;Lble;Lble;Lble;Lble;FLaif;Lbyb;J)Z m_257301_ + static + 0 o p_258906_ + 1 o p_258907_ + 2 o p_258908_ + 3 o p_258909_ + 4 o p_258910_ + 5 o p_258911_ + 6 o p_258912_ + 7 o p_258913_ + 8 o p_258914_ + a (Ljava/util/Optional;Lgu;Lbyb;)Z m_257303_ + static + 0 o p_258917_ + 1 o p_258918_ + 2 o p_258919_ + a (F)Lbhs; m_257788_ + static + 0 o p_259768_ + a (Lble;Lble;Lble;Lgu;FLaif;Lbyb;)V m_288137_ + static + 0 o p_288859_ + 1 o p_288860_ + 2 o p_288861_ + 3 o p_288862_ + 4 o p_288863_ + 5 o p_288864_ + 6 o p_288865_ + a (Lbgi;Lgu;Lbrc;)Z m_257696_ + static + 0 o p_260080_ + 1 o p_259875_ + 2 o p_259606_ + a (Lbyb;Lbfz;)Z m_257299_ + static + 0 o p_258897_ + 1 o p_258898_ + a (Lbfz;)Lbyb; m_257298_ + static + 0 o p_258896_ + a (Lbld$b;FLble;Lble;Lble;Lble;Lble;)Lblg; m_257300_ + static + 0 o p_258899_ + 1 o p_258900_ + 2 o p_258901_ + 3 o p_258902_ + 4 o p_258903_ + 5 o p_258904_ + 6 o p_258905_ +bld net/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder + a f_256790_ + (Lbld$e;)V + 0 o p_260164_ + a (Ljava/util/function/Function;)Lbjb; m_258034_ + static + 0 o p_259386_ + a (Ljava/util/function/BiPredicate;Lbld$b;)Lcom/mojang/datafixers/kinds/App; m_257813_ + static + 0 o p_260142_ + 1 o p_260191_ + a (Ljava/util/function/Predicate;Laif;Lbfz;J)Z m_257554_ + static + 0 o p_259062_ + 1 o p_259280_ + 2 o p_259428_ + 3 o p_259845_ + a ()Lbld$b; m_257958_ + static + a (Ljava/util/function/BiPredicate;Laif;Lbfz;J)Z m_257915_ + static + 0 o p_260339_ + 1 o p_259079_ + 2 o p_259093_ + 3 o p_260140_ + a (Ljava/util/function/BiPredicate;)Lbjb; m_257433_ + static + 0 o p_259227_ + a (Lblg;Lcom/mojang/datafixers/util/Unit;)Lblg; m_258081_ + static + 0 o p_259545_ + 1 o p_260322_ + a (Lcom/mojang/datafixers/kinds/App;)Lbld; m_257695_ + static + 0 o p_259593_ + a (Ljava/util/function/Predicate;)Lbjb; m_257590_ + static + 0 o p_260112_ + a (Lblg;Lblg;Lbld$b;)Lcom/mojang/datafixers/kinds/App; m_257395_ + static + 0 o p_259461_ + 1 o p_259996_ + 2 o p_259495_ + a (Lblg;Lblg;)Lbjb; m_258047_ + static + 0 o p_260174_ + 1 o p_259134_ + a (Lbld$e;)Lbld; m_257924_ + static + 0 o p_259575_ + a (Ljava/util/function/Predicate;Lbjb;)Lbjb; m_257845_ + static + 0 o p_260059_ + 1 o p_259640_ + a (Ljava/util/function/Predicate;Lbld$b;)Lcom/mojang/datafixers/kinds/App; m_257394_ + static + 0 o p_259800_ + 1 o p_260353_ + b (Lcom/mojang/datafixers/kinds/App;)Lbld$e; m_257451_ + static + 0 o p_259615_ +bld$1 net/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$1 + a f_256727_ + (Lbld$e;)V + 0 o p_259744_ + b ()Ljava/lang/String; m_22566_ + toString ()Ljava/lang/String; toString + trigger (Laif;Lbfz;J)Z m_257808_ + 0 o p_259385_ + 1 o p_260003_ + 2 o p_259194_ +bld$a net/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Constant + (Ljava/lang/Object;)V + 0 o p_259906_ + (Ljava/lang/Object;Ljava/util/function/Supplier;)V + 0 o p_259514_ + 1 o p_259950_ + a (Ljava/lang/Object;)Ljava/lang/String; m_257783_ + static + 0 o p_259245_ +bld$a$1 net/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Constant$1 + a f_256864_ + b f_256903_ + (Ljava/lang/Object;Ljava/util/function/Supplier;)V + 0 o p_259884_ + 1 o p_259381_ + a ()Ljava/lang/String; m_257477_ + a (Laif;Lbfz;J)Ljava/lang/Object; m_257510_ + 0 o p_259561_ + 1 o p_259467_ + 2 o p_259297_ + toString ()Ljava/lang/String; toString +bld$b net/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance + ()V + a (Lbpb;)Lbld; m_257492_ + 0 o p_259477_ + a (Lblg;)Lbld; m_258060_ + 0 o p_260247_ + a (Lcom/mojang/datafixers/kinds/App;Lcom/mojang/datafixers/kinds/App;Lcom/mojang/datafixers/kinds/App;Lcom/mojang/datafixers/kinds/App;)Lbld; ap3 + 0 o p_260239_ + 1 o p_259239_ + 2 o p_259638_ + 3 o p_259969_ + a (Lcom/mojang/datafixers/kinds/App;Lcom/mojang/datafixers/kinds/App;)Lcom/mojang/datafixers/kinds/App; m_257642_ + 0 o p_260060_ + 1 o p_259751_ + a (Lcom/mojang/datafixers/kinds/App;Lcom/mojang/datafixers/kinds/App;Lcom/mojang/datafixers/kinds/App;Lcom/mojang/datafixers/kinds/App;Lcom/mojang/datafixers/kinds/App;)Lbld; ap4 + 0 o p_259519_ + 1 o p_259829_ + 2 o p_259314_ + 3 o p_260089_ + 4 o p_259136_ + a (Lcom/mojang/datafixers/kinds/App;Lcom/mojang/datafixers/kinds/App;Lcom/mojang/datafixers/kinds/App;)Lbld; ap2 + 0 o p_259535_ + 1 o p_259162_ + 2 o p_259733_ + a (Lble;)Ljava/util/Optional; m_257828_ + 0 o p_259352_ + a (Ljava/util/function/Function;Lcom/mojang/datafixers/kinds/App;)Lbld; map + 0 o p_259963_ + 1 o p_260355_ + a (Ljava/lang/Object;)Lbld; point + 0 o p_259634_ + a (Ljava/util/function/Supplier;Ljava/lang/Object;)Lbld; m_257851_ + 0 o p_260070_ + 1 o p_260295_ + ap2 (Lcom/mojang/datafixers/kinds/App;Lcom/mojang/datafixers/kinds/App;Lcom/mojang/datafixers/kinds/App;)Lcom/mojang/datafixers/kinds/App; ap2 + 0 o p_260131_ + 1 o p_259240_ + 2 o p_259547_ + ap3 (Lcom/mojang/datafixers/kinds/App;Lcom/mojang/datafixers/kinds/App;Lcom/mojang/datafixers/kinds/App;Lcom/mojang/datafixers/kinds/App;)Lcom/mojang/datafixers/kinds/App; ap3 + 0 o p_259633_ + 1 o p_260234_ + 2 o p_259701_ + 3 o p_259763_ + ap4 (Lcom/mojang/datafixers/kinds/App;Lcom/mojang/datafixers/kinds/App;Lcom/mojang/datafixers/kinds/App;Lcom/mojang/datafixers/kinds/App;Lcom/mojang/datafixers/kinds/App;)Lcom/mojang/datafixers/kinds/App; ap4 + 0 o p_259032_ + 1 o p_259335_ + 2 o p_259711_ + 3 o p_259137_ + 4 o p_259318_ + b (Lbpb;)Lbld; m_257495_ + 0 o p_259673_ + b (Lble;)Ljava/lang/Object; m_258051_ + 0 o p_259206_ + c (Lbpb;)Lbld; m_258080_ + 0 o p_260198_ + lift1 (Lcom/mojang/datafixers/kinds/App;)Ljava/util/function/Function; lift1 + 0 o p_259294_ + map (Ljava/util/function/Function;Lcom/mojang/datafixers/kinds/App;)Lcom/mojang/datafixers/kinds/App; map + 0 o p_260001_ + 1 o p_259138_ + point (Ljava/lang/Object;)Lcom/mojang/datafixers/kinds/App; point + 0 o p_260216_ +bld$b$1 net/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance$1 + a f_256801_ + b f_256964_ + c f_256877_ + (Lbld$b;Lbld$e;Lbld$e;)V + 0 o p_259693_ + 1 o p_259792_ + 2 o p_259753_ + a ()Ljava/lang/String; m_257477_ + a (Laif;Lbfz;J)Ljava/lang/Object; m_257510_ + 0 o p_259603_ + 1 o p_260233_ + 2 o p_259654_ + toString ()Ljava/lang/String; toString +bld$b$2 net/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance$2 + a f_256984_ + b f_256823_ + c f_256860_ + (Lbld$b;Lbld$e;Ljava/util/function/Function;)V + 0 o p_259389_ + 1 o p_260193_ + 2 o p_260297_ + a ()Ljava/lang/String; m_257477_ + a (Laif;Lbfz;J)Ljava/lang/Object; m_257510_ + 0 o p_259755_ + 1 o p_259656_ + 2 o p_259300_ + toString ()Ljava/lang/String; toString +bld$b$3 net/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance$3 + a f_257008_ + b f_256841_ + c f_256881_ + d f_256955_ + (Lbld$b;Lbld$e;Lbld$e;Lbld$e;)V + 0 o p_259170_ + 1 o p_260264_ + 2 o p_259627_ + 3 o p_260281_ + a ()Ljava/lang/String; m_257477_ + a (Laif;Lbfz;J)Ljava/lang/Object; m_257510_ + 0 o p_259274_ + 1 o p_259817_ + 2 o p_259820_ + toString ()Ljava/lang/String; toString +bld$b$4 net/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance$4 + a f_256857_ + b f_256745_ + c f_256907_ + d f_257044_ + e f_256767_ + (Lbld$b;Lbld$e;Lbld$e;Lbld$e;Lbld$e;)V + 0 o p_259682_ + 1 o p_260099_ + 2 o p_260133_ + 3 o p_259839_ + 4 o p_259840_ + a ()Ljava/lang/String; m_257477_ + a (Laif;Lbfz;J)Ljava/lang/Object; m_257510_ + 0 o p_259096_ + 1 o p_260221_ + 2 o p_259035_ + toString ()Ljava/lang/String; toString +bld$b$5 net/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance$5 + a f_256807_ + b f_257048_ + c f_256722_ + d f_257031_ + e f_256946_ + f f_256741_ + (Lbld$b;Lbld$e;Lbld$e;Lbld$e;Lbld$e;Lbld$e;)V + 0 o p_260116_ + 1 o p_259402_ + 2 o p_259948_ + 3 o p_259482_ + 4 o p_260289_ + 5 o p_260292_ + a ()Ljava/lang/String; m_257477_ + a (Laif;Lbfz;J)Ljava/lang/Object; m_257510_ + 0 o p_259537_ + 1 o p_259581_ + 2 o p_259423_ + toString ()Ljava/lang/String; toString +bld$b$a net/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Instance$Mu + ()V +bld$c net/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$Mu + ()V +bld$d net/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$PureMemory + (Lblf;)V + 0 o p_259776_ +bld$d$1 net/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$PureMemory$1 + a f_256758_ + (Lblf;)V + 0 o p_259559_ + a ()Ljava/lang/String; m_257477_ + a (Laif;Lbfz;J)Ljava/lang/Object; m_257510_ + 0 o p_260146_ + 1 o p_259651_ + 2 o p_260094_ + b (Laif;Lbfz;J)Lble; m_257510_ + 0 o p_259899_ + 1 o p_259558_ + 2 o p_259793_ + toString ()Ljava/lang/String; toString +bld$e net/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$TriggerWithResult + a ()Ljava/lang/String; m_257477_ + a (Laif;Lbfz;J)Ljava/lang/Object; m_257510_ + 0 o p_259864_ + 1 o p_259042_ + 2 o p_260282_ +bld$f net/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$TriggerWrapper + (Lblg;)V + 0 o p_259310_ +bld$f$1 net/minecraft/world/entity/ai/behavior/declarative/BehaviorBuilder$TriggerWrapper$1 + a f_257021_ + (Lblg;)V + 0 o p_260307_ + a ()Ljava/lang/String; m_257477_ + a (Laif;Lbfz;J)Ljava/lang/Object; m_257510_ + 0 o p_260338_ + 1 o p_259070_ + 2 o p_259309_ + b (Laif;Lbfz;J)Lcom/mojang/datafixers/util/Unit; m_257510_ + 0 o p_259397_ + 1 o p_260169_ + 2 o p_259155_ +ble net/minecraft/world/entity/ai/behavior/declarative/MemoryAccessor + a f_256902_ + b f_257027_ + c f_256777_ + (Lbha;Lbpb;Lcom/mojang/datafixers/kinds/App;)V + 0 o p_259443_ + 1 o p_259809_ + 2 o p_259295_ + a ()Lcom/mojang/datafixers/kinds/App; m_258035_ + a (Ljava/util/Optional;)V m_257564_ + 0 o p_259943_ + a (Ljava/lang/Object;J)V m_257465_ + 0 o p_259027_ + 1 o p_260310_ + a (Ljava/lang/Object;)V m_257512_ + 0 o p_259728_ + b ()V m_257971_ +blf net/minecraft/world/entity/ai/behavior/declarative/MemoryCondition + a (Lbha;Ljava/util/Optional;)Lble; m_257513_ + 0 o p_259936_ + 1 o p_259724_ + a ()Lbpb; m_257588_ + b ()Lbpc; m_257435_ +blf$a net/minecraft/world/entity/ai/behavior/declarative/MemoryCondition$Absent + a f_257038_ + (Lbpb;)V + 0 o f_257038_ + a (Lbha;Ljava/util/Optional;)Lble; m_257513_ + 0 o p_259727_ + 1 o p_260359_ + a ()Lbpb; m_257588_ + b ()Lbpc; m_257435_ + equals (Ljava/lang/Object;)Z equals + 0 o p_260170_ + hashCode ()I hashCode + toString ()Ljava/lang/String; toString +blf$b net/minecraft/world/entity/ai/behavior/declarative/MemoryCondition$Present + a f_256930_ + (Lbpb;)V + 0 o f_256930_ + a (Lbha;Ljava/util/Optional;)Lble; m_257513_ + 0 o p_259253_ + 1 o p_260268_ + a ()Lbpb; m_257588_ + b ()Lbpc; m_257435_ + equals (Ljava/lang/Object;)Z equals + 0 o p_259219_ + hashCode ()I hashCode + toString ()Ljava/lang/String; toString +blf$c net/minecraft/world/entity/ai/behavior/declarative/MemoryCondition$Registered + a f_256883_ + (Lbpb;)V + 0 o f_256883_ + a (Lbha;Ljava/util/Optional;)Lble; m_257513_ + 0 o p_260149_ + 1 o p_259303_ + a ()Lbpb; m_257588_ + b ()Lbpc; m_257435_ + equals (Ljava/lang/Object;)Z equals + 0 o p_259578_ + hashCode ()I hashCode + toString ()Ljava/lang/String; toString +blg net/minecraft/world/entity/ai/behavior/declarative/Trigger + trigger (Laif;Lbfz;J)Z m_257808_ + 0 o p_259730_ + 1 o p_260017_ + 2 o p_259489_ +blh net/minecraft/world/entity/ai/behavior/declarative/package-info +bli net/minecraft/world/entity/ai/behavior/package-info +blj net/minecraft/world/entity/ai/behavior/warden/Digging + (I)V + 0 o p_217515_ + a (Laif;Lbfz;)Z m_6114_ + 0 o p_217517_ + 1 o p_217518_ + a (Laif;Lbxs;J)Z m_6737_ + 0 o p_217527_ + 1 o p_217528_ + 2 o p_217529_ + a (Laif;Lbxs;)Z m_6114_ + 0 o p_217524_ + 1 o p_217525_ + a (Laif;Lbfz;J)Z m_6737_ + 0 o p_217531_ + 1 o p_217532_ + 2 o p_217533_ + b (Laif;Lbxs;J)V m_6735_ + 0 o p_217535_ + 1 o p_217536_ + 2 o p_217537_ + b (Laif;Lbfz;J)V m_6732_ + 0 o p_217539_ + 1 o p_217540_ + 2 o p_217541_ + c (Laif;Lbxs;J)V m_6732_ + 0 o p_217543_ + 1 o p_217544_ + 2 o p_217545_ + d (Laif;Lbfz;J)V m_6735_ + 0 o p_217520_ + 1 o p_217521_ + 2 o p_217522_ +blk net/minecraft/world/entity/ai/behavior/warden/Emerging + (I)V + 0 o p_217547_ + a (Laif;Lbxs;J)Z m_6737_ + 0 o p_217553_ + 1 o p_217554_ + 2 o p_217555_ + a (Laif;Lbfz;J)Z m_6737_ + 0 o p_217557_ + 1 o p_217558_ + 2 o p_217559_ + b (Laif;Lbxs;J)V m_6735_ + 0 o p_217561_ + 1 o p_217562_ + 2 o p_217563_ + b (Laif;Lbfz;J)V m_6732_ + 0 o p_217565_ + 1 o p_217566_ + 2 o p_217567_ + c (Laif;Lbxs;J)V m_6732_ + 0 o p_217569_ + 1 o p_217570_ + 2 o p_217571_ + d (Laif;Lbfz;J)V m_6735_ + 0 o p_217549_ + 1 o p_217550_ + 2 o p_217551_ +bll net/minecraft/world/entity/ai/behavior/warden/ForceUnmount + ()V + a (Laif;Lbfz;)Z m_6114_ + 0 o p_238424_ + 1 o p_238425_ + d (Laif;Lbfz;J)V m_6735_ + 0 o p_238410_ + 1 o p_238411_ + 2 o p_238412_ +blm net/minecraft/world/entity/ai/behavior/warden/Roar + c f_217572_ + d f_217573_ + ()V + a (Laif;Lbxs;J)V m_6735_ + 0 o p_217580_ + 1 o p_217581_ + 2 o p_217582_ + a (Laif;Lbfz;J)Z m_6737_ + 0 o p_217584_ + 1 o p_217585_ + 2 o p_217586_ + b (Laif;Lbfz;J)V m_6732_ + 0 o p_217592_ + 1 o p_217593_ + 2 o p_217594_ + b (Laif;Lbxs;J)Z m_6737_ + 0 o p_217588_ + 1 o p_217589_ + 2 o p_217590_ + c (Laif;Lbfz;J)V m_6725_ + 0 o p_217600_ + 1 o p_217601_ + 2 o p_217602_ + c (Laif;Lbxs;J)V m_6725_ + 0 o p_217596_ + 1 o p_217597_ + 2 o p_217598_ + d (Laif;Lbxs;J)V m_6732_ + 0 o p_217604_ + 1 o p_217605_ + 2 o p_217606_ + d (Laif;Lbfz;J)V m_6735_ + 0 o p_217576_ + 1 o p_217577_ + 2 o p_217578_ +bln net/minecraft/world/entity/ai/behavior/warden/SetRoarTarget + ()V + a (Ljava/util/function/Function;)Lbhs; m_257595_ + static + 0 o p_260275_ + a (Ljava/util/function/Function;Lbld$b;)Lcom/mojang/datafixers/kinds/App; m_257304_ + static + 0 o p_258920_ + 1 o p_258921_ + a (Ljava/util/function/Function;Lble;Lble;Lble;)Lblg; m_257306_ + static + 0 o p_258928_ + 1 o p_258929_ + 2 o p_258930_ + 3 o p_258931_ + a (Ljava/util/function/Function;Lble;Lble;Laif;Lbxs;J)Z m_257305_ + static + 0 o p_258922_ + 1 o p_258923_ + 2 o p_258924_ + 3 o p_258925_ + 4 o p_258926_ + 5 o p_258927_ +blo net/minecraft/world/entity/ai/behavior/warden/SetWardenLookTarget + ()V + a (Lbld$b;)Lcom/mojang/datafixers/kinds/App; m_257310_ + static + 0 o p_258946_ + a (Lbld$b;Lble;Lble;Lble;Laif;Lbfz;J)Z m_257307_ + static + 0 o p_258932_ + 1 o p_258933_ + 2 o p_258934_ + 3 o p_258935_ + 4 o p_258936_ + 5 o p_258937_ + 6 o p_258938_ + a (Lbld$b;Lble;Lble;Lble;Lble;)Lblg; m_257309_ + static + 0 o p_258941_ + 1 o p_258942_ + 2 o p_258943_ + 3 o p_258944_ + 4 o p_258945_ + a ()Lbhs; m_257897_ + static + a (Lbld$b;Lble;)Ljava/util/Optional; m_257308_ + static + 0 o p_258939_ + 1 o p_258940_ +blp net/minecraft/world/entity/ai/behavior/warden/Sniffing + c f_217644_ + d f_217645_ + (I)V + 0 o p_217647_ + a (Laif;Lbxs;J)Z m_6737_ + 0 o p_217653_ + 1 o p_217654_ + 2 o p_217655_ + a (Lbxs;Lbfz;)V m_289113_ + static + 0 o p_289390_ + 1 o p_289391_ + a (Laif;Lbfz;J)Z m_6737_ + 0 o p_217660_ + 1 o p_217661_ + 2 o p_217662_ + b (Laif;Lbxs;J)V m_6735_ + 0 o p_217664_ + 1 o p_217665_ + 2 o p_217666_ + b (Laif;Lbfz;J)V m_6732_ + 0 o p_217668_ + 1 o p_217669_ + 2 o p_217670_ + c (Laif;Lbxs;J)V m_6732_ + 0 o p_217672_ + 1 o p_217673_ + 2 o p_217674_ + d (Laif;Lbfz;J)V m_6735_ + 0 o p_217649_ + 1 o p_217650_ + 2 o p_217651_ +blq net/minecraft/world/entity/ai/behavior/warden/SonicBoom + c f_217675_ + d f_217676_ + e f_217677_ + f f_217678_ + g f_217679_ + h f_217680_ + i f_217681_ + ()V + static + ()V + a (Laif;Lbxs;)Z m_6114_ + 0 o p_217692_ + 1 o p_217693_ + a (Lbfz;I)V m_217698_ + static + 0 o p_217699_ + 1 o p_217700_ + a (Lbxs;Lbfz;)Z m_217705_ + static + 0 o p_217706_ + 1 o p_217707_ + a (Laif;Lbfz;)Z m_6114_ + 0 o p_217685_ + 1 o p_217686_ + a (Laif;Lbxs;J)Z m_6737_ + 0 o p_217695_ + 1 o p_217696_ + 2 o p_217697_ + a (Lbxs;Laif;Lbfz;)V m_217701_ + static + 0 o p_217702_ + 1 o p_217703_ + 2 o p_217704_ + a (Laif;Lbfz;J)Z m_6737_ + 0 o p_217709_ + 1 o p_217710_ + 2 o p_217711_ + b (Laif;Lbfz;J)V m_6732_ + 0 o p_217720_ + 1 o p_217721_ + 2 o p_217722_ + b (Laif;Lbxs;J)V m_6735_ + 0 o p_217713_ + 1 o p_217714_ + 2 o p_217715_ + b (Lbxs;Lbfz;)V m_289114_ + static + 0 o p_289392_ + 1 o p_289393_ + c (Laif;Lbfz;J)V m_6725_ + 0 o p_217728_ + 1 o p_217729_ + 2 o p_217730_ + c (Laif;Lbxs;J)V m_6725_ + 0 o p_217724_ + 1 o p_217725_ + 2 o p_217726_ + d (Laif;Lbxs;J)V m_6732_ + 0 o p_217732_ + 1 o p_217733_ + 2 o p_217734_ + d (Laif;Lbfz;J)V m_6735_ + 0 o p_217688_ + 1 o p_217689_ + 2 o p_217690_ +blr net/minecraft/world/entity/ai/behavior/warden/TryToSniff + a f_217735_ + ()V + static + ()V + a (Lbld$b;)Lcom/mojang/datafixers/kinds/App; m_257499_ + static + 0 o p_259979_ + a (Lble;Lble;Lble;Lble;Lble;)Lblg; m_257573_ + static + 0 o p_260219_ + 1 o p_260252_ + 2 o p_260090_ + 3 o p_259577_ + 4 o p_260020_ + a ()Lbhs; m_257812_ + static + a (Lble;Lble;Lble;Laif;Lbfz;J)Z m_289115_ + static + 0 o p_289394_ + 1 o p_289395_ + 2 o p_289396_ + 3 o p_289397_ + 4 o p_289398_ + 5 o p_289399_ +bls net/minecraft/world/entity/ai/behavior/warden/package-info +blt net/minecraft/world/entity/ai/control/BodyRotationControl + a f_24875_ + b f_148048_ + c f_148049_ + d f_148050_ + e f_24876_ + f f_24877_ + (Lbgb;)V + 0 o p_24879_ + a ()V m_8121_ + b ()V m_24880_ + c ()V m_24881_ + d ()V m_24882_ + e ()Z m_24883_ + f ()Z m_24884_ +blu net/minecraft/world/entity/ai/control/Control +blv net/minecraft/world/entity/ai/control/FlyingMoveControl + l f_24890_ + m f_24891_ + (Lbgb;IZ)V + 0 o p_24893_ + 1 o p_24894_ + 2 o p_24895_ + a ()V m_8126_ +blw net/minecraft/world/entity/ai/control/JumpControl + a f_24897_ + b f_24898_ + (Lbgb;)V + 0 o p_24900_ + a ()V m_24901_ + b ()V m_8124_ +blx net/minecraft/world/entity/ai/control/LookControl + a f_24937_ + b f_24938_ + c f_24939_ + d f_186068_ + e f_24941_ + f f_24942_ + g f_24943_ + (Lbgb;)V + 0 o p_24945_ + a (Lbfj;FF)V m_24960_ + 0 o p_24961_ + 1 o p_24962_ + 2 o p_24963_ + a (FFF)F m_24956_ + 0 o p_24957_ + 1 o p_24958_ + 2 o p_24959_ + a (Lbfj;)V m_148051_ + 0 o p_148052_ + a (DDDFF)V m_24950_ + 0 o p_24951_ + 1 o p_24952_ + 2 o p_24953_ + 3 o p_24954_ + 4 o p_24955_ + a (Leei;)V m_24964_ + 0 o p_24965_ + a (Ljava/lang/Float;)V m_289116_ + 0 o p_289400_ + a (DDD)V m_24946_ + 0 o p_24947_ + 1 o p_24948_ + 2 o p_24949_ + a ()V m_8128_ + b (Ljava/lang/Float;)V m_287074_ + 0 o p_287447_ + b (Lbfj;)D m_24966_ + static + 0 o p_24967_ + b ()V m_142586_ + c ()Z m_8106_ + d ()Z m_186069_ + e ()D m_24969_ + f ()D m_24970_ + g ()D m_24971_ + h ()Ljava/util/Optional; m_180897_ + i ()Ljava/util/Optional; m_180896_ +bly net/minecraft/world/entity/ai/control/MoveControl + a f_148053_ + b f_148054_ + c f_148055_ + d f_24974_ + e f_24975_ + f f_24976_ + g f_24977_ + h f_24978_ + i f_24979_ + j f_24980_ + k f_24981_ + (Lbgb;)V + 0 o p_24983_ + a (FFF)F m_24991_ + 0 o p_24992_ + 1 o p_24993_ + 2 o p_24994_ + a (DDDD)V m_6849_ + 0 o p_24984_ + 1 o p_24985_ + 2 o p_24986_ + 3 o p_24987_ + a ()V m_8126_ + a (FF)V m_24988_ + 0 o p_24989_ + 1 o p_24990_ + b (FF)Z m_24996_ + 0 o p_24997_ + 1 o p_24998_ + b ()Z m_24995_ + c ()D m_24999_ + d ()D m_25000_ + e ()D m_25001_ + f ()D m_25002_ +bly$a net/minecraft/world/entity/ai/control/MoveControl$Operation + a WAIT + b MOVE_TO + c STRAFE + d JUMPING + e $VALUES + ()V + static + (Ljava/lang/String;I)V + 0 o p_25010_ + 1 o p_25011_ + a ()[Lbly$a; m_148056_ + static + valueOf (Ljava/lang/String;)Lbly$a; valueOf + static + 0 o p_25013_ + values ()[Lbly$a; values + static +blz net/minecraft/world/entity/ai/control/SmoothSwimmingLookControl + h f_148057_ + i f_148058_ + j f_148059_ + (Lbgb;I)V + 0 o p_148061_ + 1 o p_148062_ + a (Ljava/lang/Float;)V m_289117_ + 0 o p_289401_ + a ()V m_8128_ + b (Ljava/lang/Float;)V m_287076_ + 0 o p_287449_ +bm net/minecraft/advancements/critereon/EntityFlagsPredicate + a f_33682_ + b f_33683_ + c f_33684_ + d f_33685_ + e f_33686_ + f f_33687_ + ()V + static + (Ljava/lang/Boolean;Ljava/lang/Boolean;Ljava/lang/Boolean;Ljava/lang/Boolean;Ljava/lang/Boolean;)V + 0 o p_33690_ + 1 o p_33691_ + 2 o p_33692_ + 3 o p_33693_ + 4 o p_33694_ + a ()Lcom/google/gson/JsonElement; m_33695_ + a (Lbfj;)Z m_33696_ + 0 o p_33697_ + a (Lcom/google/gson/JsonObject;Ljava/lang/String;)Ljava/lang/Boolean; m_33700_ + static + 0 o p_33701_ + 1 o p_33702_ + a (Lcom/google/gson/JsonObject;Ljava/lang/String;Ljava/lang/Boolean;)V m_33703_ + 0 o p_33704_ + 1 o p_33705_ + 2 o p_33706_ + a (Lcom/google/gson/JsonElement;)Lbm; m_33698_ + static + 0 o p_33699_ +bm$a net/minecraft/advancements/critereon/EntityFlagsPredicate$Builder + a f_33707_ + b f_33708_ + c f_33709_ + d f_33710_ + e f_33711_ + ()V + a ()Lbm$a; m_33713_ + static + a (Ljava/lang/Boolean;)Lbm$a; m_33714_ + 0 o p_33715_ + b ()Lbm; m_33716_ + b (Ljava/lang/Boolean;)Lbm$a; m_150057_ + 0 o p_150058_ + c (Ljava/lang/Boolean;)Lbm$a; m_150059_ + 0 o p_150060_ + d (Ljava/lang/Boolean;)Lbm$a; m_150061_ + 0 o p_150062_ + e (Ljava/lang/Boolean;)Lbm$a; m_33717_ + 0 o p_33718_ +bma net/minecraft/world/entity/ai/control/SmoothSwimmingMoveControl + l f_243703_ + m f_244312_ + n f_148064_ + o f_148065_ + p f_148066_ + q f_148067_ + r f_148068_ + (Lbgb;IIFFZ)V + 0 o p_148070_ + 1 o p_148071_ + 2 o p_148072_ + 3 o p_148073_ + 4 o p_148074_ + 5 o p_148075_ + a (F)F m_246609_ + static + 0 o p_249853_ + a ()V m_8126_ +bmb net/minecraft/world/entity/ai/control/package-info +bmc net/minecraft/world/entity/ai/goal/AvoidEntityGoal + a f_25015_ + b f_25016_ + c f_25017_ + d f_25018_ + e f_25019_ + f f_25020_ + g f_25021_ + h f_25022_ + i f_25023_ + j f_25024_ + k f_25025_ + (Lbgi;Ljava/lang/Class;FDDLjava/util/function/Predicate;)V + 0 o p_25033_ + 1 o p_25034_ + 2 o p_25035_ + 3 o p_25036_ + 4 o p_25037_ + 5 o p_25038_ + (Lbgi;Ljava/lang/Class;FDD)V + 0 o p_25027_ + 1 o p_25028_ + 2 o p_25029_ + 3 o p_25030_ + 4 o p_25031_ + (Lbgi;Ljava/lang/Class;Ljava/util/function/Predicate;FDDLjava/util/function/Predicate;)V + 0 o p_25040_ + 1 o p_25041_ + 2 o p_25042_ + 3 o p_25043_ + 4 o p_25044_ + 5 o p_25045_ + 6 o p_25046_ + a ()Z m_8036_ + a (Lbfz;)Z m_148077_ + static + 0 o p_148078_ + b (Lbfz;)Z m_25048_ + static + 0 o p_25049_ + b ()Z m_8045_ + c (Lbfz;)Z m_25051_ + static + 0 o p_25052_ + c ()V m_8056_ + d ()V m_8041_ + e ()V m_8037_ +bmd net/minecraft/world/entity/ai/goal/BegGoal + a f_25056_ + b f_25057_ + c f_25058_ + d f_25059_ + e f_25060_ + f f_25061_ + (Lbso;F)V + 0 o p_25063_ + 1 o p_25064_ + a ()Z m_8036_ + a (Lbyo;)Z m_25066_ + 0 o p_25067_ + b ()Z m_8045_ + c ()V m_8056_ + d ()V m_8041_ + e ()V m_8037_ +bme net/minecraft/world/entity/ai/goal/BoatGoals + a GO_TO_BOAT + b GO_IN_BOAT_DIRECTION + c $VALUES + ()V + static + (Ljava/lang/String;I)V + 0 o p_25077_ + 1 o p_25078_ + a ()[Lbme; m_148079_ + static + valueOf (Ljava/lang/String;)Lbme; valueOf + static + 0 o p_25080_ + values ()[Lbme; values + static +bmf net/minecraft/world/entity/ai/goal/BreakDoorGoal + a f_25082_ + b f_25083_ + c f_25084_ + g f_148080_ + h f_25085_ + (Lbgb;ILjava/util/function/Predicate;)V + 0 o p_25087_ + 1 o p_25088_ + 2 o p_25089_ + (Lbgb;Ljava/util/function/Predicate;)V + 0 o p_25091_ + 1 o p_25092_ + a ()Z m_8036_ + a (Lbdu;)Z m_25094_ + 0 o p_25095_ + b ()Z m_8045_ + c ()V m_8056_ + d ()V m_8041_ + e ()V m_8037_ + f ()I m_25100_ +bmg net/minecraft/world/entity/ai/goal/BreathAirGoal + a f_25101_ + (Lbgi;)V + 0 o p_25103_ + J_ ()Z m_6767_ + a ()Z m_8036_ + a (Lcmp;Lgu;)Z m_25106_ + 0 o p_25107_ + 1 o p_25108_ + b ()Z m_8045_ + c ()V m_8056_ + e ()V m_8037_ + h ()V m_25112_ +bmh net/minecraft/world/entity/ai/goal/BreedGoal + a f_25113_ + b f_25114_ + c f_25115_ + d f_25116_ + e f_25117_ + f f_25118_ + g f_25119_ + ()V + static + (Lbrl;D)V + 0 o p_25122_ + 1 o p_25123_ + (Lbrl;DLjava/lang/Class;)V + 0 o p_25125_ + 1 o p_25126_ + 2 o p_25127_ + a ()Z m_8036_ + b ()Z m_8045_ + d ()V m_8041_ + e ()V m_8037_ + g ()V m_8026_ + h ()Lbrl; m_25132_ +bmi net/minecraft/world/entity/ai/goal/CatLieOnBedGoal + g f_25133_ + (Lbro;DI)V + 0 o p_25135_ + 1 o p_25136_ + 2 o p_25137_ + a (Lbgi;)I m_6099_ + 0 o p_25140_ + a ()Z m_8036_ + a (Lcmp;Lgu;)Z m_6465_ + 0 o p_25142_ + 1 o p_25143_ + c ()V m_8056_ + d ()V m_8041_ + e ()V m_8037_ +bmj net/minecraft/world/entity/ai/goal/CatSitOnBlockGoal + g f_25147_ + (Lbro;D)V + 0 o p_25149_ + 1 o p_25150_ + a (Ldco;)Ljava/lang/Boolean; m_148083_ + static + 0 o p_148084_ + a ()Z m_8036_ + a (Lcmp;Lgu;)Z m_6465_ + 0 o p_25153_ + 1 o p_25154_ + a (Ldca$a;)Z m_25155_ + static + 0 o p_25156_ + c ()V m_8056_ + d ()V m_8041_ + e ()V m_8037_ +bmk net/minecraft/world/entity/ai/goal/ClimbOnTopOfPowderSnowGoal + a f_204052_ + b f_204053_ + (Lbgb;Lcmm;)V + 0 o p_204055_ + 1 o p_204056_ + K_ ()Z m_183429_ + a ()Z m_8036_ + e ()V m_8037_ +bml net/minecraft/world/entity/ai/goal/DolphinJumpGoal + a f_25162_ + b f_25163_ + c f_25164_ + d f_25165_ + ()V + static + (Lbrt;I)V + 0 o p_25168_ + 1 o p_25169_ + J_ ()Z m_6767_ + a ()Z m_8036_ + a (Lgu;III)Z m_25172_ + 0 o p_25173_ + 1 o p_25174_ + 2 o p_25175_ + 3 o p_25176_ + b ()Z m_8045_ + b (Lgu;III)Z m_25178_ + 0 o p_25179_ + 1 o p_25180_ + 2 o p_25181_ + 3 o p_25182_ + c ()V m_8056_ + d ()V m_8041_ + e ()V m_8037_ +bmm net/minecraft/world/entity/ai/goal/DoorInteractGoal + a f_25186_ + b f_25187_ + c f_25188_ + d f_25189_ + e f_25190_ + f f_25191_ + (Lbgb;)V + 0 o p_25193_ + K_ ()Z m_183429_ + a ()Z m_8036_ + a (Z)V m_25195_ + 0 o p_25196_ + b ()Z m_8045_ + c ()V m_8056_ + e ()V m_8037_ + h ()Z m_25200_ +bmn net/minecraft/world/entity/ai/goal/EatBlockGoal + a f_148085_ + b f_25201_ + c f_25202_ + d f_25203_ + e f_25204_ + ()V + static + (Lbgb;)V + 0 o p_25207_ + a ()Z m_8036_ + b ()Z m_8045_ + c ()V m_8056_ + d ()V m_8041_ + e ()V m_8037_ + h ()I m_25213_ +bmo net/minecraft/world/entity/ai/goal/FleeSunGoal + a f_25214_ + b f_25215_ + c f_25216_ + d f_25217_ + e f_25218_ + f f_25219_ + (Lbgi;D)V + 0 o p_25221_ + 1 o p_25222_ + a ()Z m_8036_ + b ()Z m_8045_ + c ()V m_8056_ + h ()Z m_25226_ + i ()Leei; m_25227_ +bmp net/minecraft/world/entity/ai/goal/FloatGoal + a f_25228_ + (Lbgb;)V + 0 o p_25230_ + K_ ()Z m_183429_ + a ()Z m_8036_ + e ()V m_8037_ +bmq net/minecraft/world/entity/ai/goal/FollowBoatGoal + a f_25233_ + b f_25234_ + c f_25235_ + d f_25236_ + (Lbgi;)V + 0 o p_25238_ + J_ ()Z m_6767_ + a ()Z m_8036_ + b ()Z m_8045_ + c ()V m_8056_ + d ()V m_8041_ + e ()V m_8037_ +bmr net/minecraft/world/entity/ai/goal/FollowFlockLeaderGoal + a f_148086_ + b f_25245_ + c f_25246_ + d f_25247_ + (Lbrk;)V + 0 o p_25249_ + a ()Z m_8036_ + a (Lbrk;)I m_25251_ + 0 o p_25252_ + b (Lbrk;)Z m_25254_ + static + 0 o p_25255_ + b ()Z m_8045_ + c (Lbrk;)Z m_25257_ + static + 0 o p_25258_ + c ()V m_8056_ + d ()V m_8041_ + e ()V m_8037_ +bms net/minecraft/world/entity/ai/goal/FollowMobGoal + a f_25261_ + b f_25262_ + c f_25263_ + d f_25264_ + e f_25265_ + f f_25266_ + g f_25267_ + h f_25268_ + i f_25269_ + (Lbgb;DFF)V + 0 o p_25271_ + 1 o p_25272_ + 2 o p_25273_ + 3 o p_25274_ + a ()Z m_8036_ + a (Lbgb;Lbgb;)Z m_25276_ + static + 0 o p_25277_ + 1 o p_25278_ + b ()Z m_8045_ + c ()V m_8056_ + d ()V m_8041_ + e ()V m_8037_ +bmt net/minecraft/world/entity/ai/goal/FollowOwnerGoal + a f_148087_ + b f_148088_ + c f_148089_ + d f_148090_ + e f_25283_ + f f_25284_ + g f_25285_ + h f_25286_ + i f_25287_ + j f_25288_ + k f_25289_ + l f_25290_ + m f_25291_ + n f_25292_ + (Lbgv;DFFZ)V + 0 o p_25294_ + 1 o p_25295_ + 2 o p_25296_ + 3 o p_25297_ + 4 o p_25298_ + a ()Z m_8036_ + a (Lgu;)Z m_25307_ + 0 o p_25308_ + a (III)Z m_25303_ + 0 o p_25304_ + 1 o p_25305_ + 2 o p_25306_ + a (II)I m_25300_ + 0 o p_25301_ + 1 o p_25302_ + b ()Z m_8045_ + c ()V m_8056_ + d ()V m_8041_ + e ()V m_8037_ + h ()Z m_272221_ + i ()V m_25313_ +bmu net/minecraft/world/entity/ai/goal/FollowParentGoal + a f_148091_ + b f_148092_ + c f_148093_ + d f_25314_ + e f_25315_ + f f_25316_ + g f_25317_ + (Lbrl;D)V + 0 o p_25319_ + 1 o p_25320_ + a ()Z m_8036_ + b ()Z m_8045_ + c ()V m_8056_ + d ()V m_8041_ + e ()V m_8037_ +bmv net/minecraft/world/entity/ai/goal/Goal + a f_25326_ + ()V + J_ ()Z m_6767_ + K_ ()Z m_183429_ + a (Ljava/util/EnumSet;)V m_7021_ + 0 o p_25328_ + a (I)I m_183277_ + 0 o p_186072_ + a ()Z m_8036_ + b ()Z m_8045_ + b (I)I m_186073_ + static + 0 o p_186074_ + c ()V m_8056_ + d ()V m_8041_ + e ()V m_8037_ + j ()Ljava/util/EnumSet; m_7684_ + toString ()Ljava/lang/String; toString +bmv$a net/minecraft/world/entity/ai/goal/Goal$Flag + a MOVE + b LOOK + c JUMP + d TARGET + e $VALUES + ()V + static + (Ljava/lang/String;I)V + 0 o p_25337_ + 1 o p_25338_ + a ()[Lbmv$a; m_148094_ + static + valueOf (Ljava/lang/String;)Lbmv$a; valueOf + static + 0 o p_25340_ + values ()[Lbmv$a; values + static +bmw net/minecraft/world/entity/ai/goal/GoalSelector + a f_25342_ + b f_25343_ + c f_25344_ + d f_25345_ + e f_25346_ + f f_25347_ + g f_148095_ + h f_25348_ + ()V + static + (Ljava/util/function/Supplier;)V + 0 o p_25351_ + a (ILbmv;)V m_25352_ + 0 o p_25353_ + 1 o p_25354_ + a (Ljava/util/function/Predicate;Lboj;)Z m_262357_ + static + 0 o p_262563_ + 1 o p_262564_ + a (Lbmv$a;Z)V m_25360_ + 0 o p_25361_ + 1 o p_25362_ + a (I)V m_148097_ + 0 o p_148098_ + a (Lbmv;Lboj;)Z m_25365_ + static + 0 o p_25366_ + 1 o p_25367_ + a (Lbmv;)V m_25363_ + 0 o p_25364_ + a (Z)V m_186081_ + 0 o p_186082_ + a (Lboj;Ljava/util/Map;)Z m_186078_ + static + 0 o p_186079_ + 1 o p_186080_ + a (Lboj;Ljava/util/EnumSet;)Z m_186075_ + static + 0 o p_186076_ + 1 o p_186077_ + a (Lbmv$a;)V m_25355_ + 0 o p_25356_ + a ()V m_25373_ + a (Ljava/util/function/Predicate;)V m_262460_ + 0 o p_262575_ + b (Lbmv;Lboj;)Z m_25376_ + static + 0 o p_25377_ + 1 o p_25378_ + b ()Ljava/util/Set; m_148105_ + b (Lbmv$a;)V m_25374_ + 0 o p_25375_ + c ()Ljava/util/stream/Stream; m_25386_ +bmw$1 net/minecraft/world/entity/ai/goal/GoalSelector$1 + ()V + a ()Z m_8036_ +bmw$2 net/minecraft/world/entity/ai/goal/GoalSelector$2 + (ILbmv;)V + 0 o p_25394_ + 1 o p_25395_ + h ()Z m_7620_ +bmx net/minecraft/world/entity/ai/goal/GolemRandomStrollInVillageGoal + i f_148106_ + j f_148107_ + k f_148108_ + l f_148109_ + (Lbgi;D)V + 0 o p_25398_ + 1 o p_25399_ + a (Lhx;)Lgu; m_25407_ + 0 o p_25408_ + a (Laif;Lhx;)Z m_25400_ + static + 0 o p_25401_ + 1 o p_25402_ + a (Lhe;)Z m_217746_ + static + 0 o p_217747_ + a (Lbyb;)Z m_25405_ + 0 o p_25406_ + h ()Leei; m_7037_ + k ()Leei; m_25410_ + l ()Leei; m_25411_ + m ()Leei; m_25412_ + n ()Lhx; m_25413_ +bmy net/minecraft/world/entity/ai/goal/InteractGoal + (Lbgb;Ljava/lang/Class;FF)V + 0 o p_25415_ + 1 o p_25416_ + 2 o p_25417_ + 3 o p_25418_ + (Lbgb;Ljava/lang/Class;F)V + 0 o p_148111_ + 1 o p_148112_ + 2 o p_148113_ +bmz net/minecraft/world/entity/ai/goal/JumpGoal + ()V +bn net/minecraft/advancements/critereon/EntityHurtPlayerTrigger + a f_35170_ + ()V + static + ()V + a (Laig;Lben;FFZLbn$a;)Z m_35180_ + static + 0 o p_35181_ + 1 o p_35182_ + 2 o p_35183_ + 3 o p_35184_ + 4 o p_35185_ + 5 o p_35186_ + a (Laig;Lben;FFZ)V m_35174_ + 0 o p_35175_ + 1 o p_35176_ + 2 o p_35177_ + 3 o p_35178_ + 4 o p_35179_ + a ()Lacq; m_7295_ + a (Lcom/google/gson/JsonObject;Lba;Lbe;)Lbn$a; m_7214_ + 0 o p_286446_ + 1 o p_286687_ + 2 o p_286799_ + b (Lcom/google/gson/JsonObject;Lba;Lbe;)Lar; m_7214_ + 0 o p_286430_ + 1 o p_286512_ + 2 o p_286648_ +bn$a net/minecraft/advancements/critereon/EntityHurtPlayerTrigger$TriggerInstance + a f_35196_ + (Lba;Lbc;)V + 0 o p_286419_ + 1 o p_286408_ + a (Lct;)Lcom/google/gson/JsonObject; m_7683_ + 0 o p_35209_ + a (Lbc$a;)Lbn$a; m_35206_ + static + 0 o p_35207_ + a (Lbc;)Lbn$a; m_150187_ + static + 0 o p_150188_ + a (Laig;Lben;FFZ)Z m_35200_ + 0 o p_35201_ + 1 o p_35202_ + 2 o p_35203_ + 3 o p_35204_ + 4 o p_35205_ + c ()Lbn$a; m_150189_ + static +bna net/minecraft/world/entity/ai/goal/LandOnOwnersShoulderGoal + a f_25479_ + b f_25480_ + c f_25481_ + (Lbsi;)V + 0 o p_25483_ + J_ ()Z m_6767_ + a ()Z m_8036_ + c ()V m_8056_ + e ()V m_8037_ +bnb net/minecraft/world/entity/ai/goal/LeapAtTargetGoal + a f_25488_ + b f_25489_ + c f_25490_ + (Lbgb;F)V + 0 o p_25492_ + 1 o p_25493_ + a ()Z m_8036_ + b ()Z m_8045_ + c ()V m_8056_ +bnc net/minecraft/world/entity/ai/goal/LlamaFollowCaravanGoal + a f_25497_ + b f_25498_ + c f_148114_ + d f_25499_ + (Lbtn;D)V + 0 o p_25501_ + 1 o p_25502_ + a ()Z m_8036_ + a (Lbtn;I)Z m_25506_ + 0 o p_25507_ + 1 o p_25508_ + a (Lbfj;)Z m_25504_ + static + 0 o p_25505_ + b ()Z m_8045_ + d ()V m_8041_ + e ()V m_8037_ +bnd net/minecraft/world/entity/ai/goal/LookAtPlayerGoal + a f_148115_ + b f_25512_ + c f_25513_ + d f_25514_ + e f_25515_ + f f_25516_ + g f_25517_ + h f_25518_ + i f_148116_ + (Lbgb;Ljava/lang/Class;FF)V + 0 o p_25524_ + 1 o p_25525_ + 2 o p_25526_ + 3 o p_25527_ + (Lbgb;Ljava/lang/Class;F)V + 0 o p_25520_ + 1 o p_25521_ + 2 o p_25522_ + (Lbgb;Ljava/lang/Class;FFZ)V + 0 o p_148118_ + 1 o p_148119_ + 2 o p_148120_ + 3 o p_148121_ + 4 o p_148122_ + a ()Z m_8036_ + a (Lbgb;Lbfz;)Z m_25529_ + static + 0 o p_25530_ + 1 o p_25531_ + a (Lbfz;)Z m_148123_ + static + 0 o p_148124_ + b ()Z m_8045_ + c ()V m_8056_ + d ()V m_8041_ + e ()V m_8037_ +bne net/minecraft/world/entity/ai/goal/LookAtTradingPlayerGoal + h f_25536_ + (Lbxw;)V + 0 o p_25538_ + a ()Z m_8036_ +bnf net/minecraft/world/entity/ai/goal/MeleeAttackGoal + a f_25540_ + b f_25541_ + c f_25542_ + d f_25543_ + e f_25544_ + f f_25545_ + g f_25546_ + h f_25547_ + i f_25548_ + j f_25549_ + k f_25550_ + l f_148125_ + (Lbgi;DZ)V + 0 o p_25552_ + 1 o p_25553_ + 2 o p_25554_ + K_ ()Z m_183429_ + a (Lbfz;)D m_6639_ + 0 o p_25556_ + a (Lbfz;D)V m_6739_ + 0 o p_25557_ + 1 o p_25558_ + a ()Z m_8036_ + b ()Z m_8045_ + c ()V m_8056_ + d ()V m_8041_ + e ()V m_8037_ + h ()V m_25563_ + i ()Z m_25564_ + k ()I m_25565_ + l ()I m_25566_ +bng net/minecraft/world/entity/ai/goal/MoveBackToVillageGoal + i f_148126_ + j f_148127_ + (Lbgi;DZ)V + 0 o p_25568_ + 1 o p_25569_ + 2 o p_25570_ + a ()Z m_8036_ + h ()Leei; m_7037_ +bnh net/minecraft/world/entity/ai/goal/MoveThroughVillageGoal + a f_25573_ + b f_25574_ + c f_25575_ + d f_25576_ + e f_25577_ + f f_25578_ + g f_25579_ + h f_25580_ + (Lbgi;DZILjava/util/function/BooleanSupplier;)V + 0 o p_25582_ + 1 o p_25583_ + 2 o p_25584_ + 3 o p_25585_ + 4 o p_25586_ + a ()Z m_8036_ + a (Lgu;)Z m_25592_ + 0 o p_25593_ + a (Lgu;Lgu;)Ljava/lang/Double; m_217752_ + static + 0 o p_217753_ + 1 o p_217754_ + a (Lhe;)Z m_217755_ + static + 0 o p_217756_ + a (Laif;Lgu;Lgu;)D m_217748_ + 0 o p_217749_ + 1 o p_217750_ + 2 o p_217751_ + b ()Z m_8045_ + b (Lhe;)Z m_217757_ + static + 0 o p_217758_ + c ()V m_8056_ + d ()V m_8041_ + h ()V m_25597_ +bni net/minecraft/world/entity/ai/goal/MoveToBlockGoal + a f_25598_ + b f_25599_ + c f_25600_ + d f_25601_ + e f_25602_ + f f_25603_ + g f_148128_ + h f_148129_ + i f_148130_ + j f_25604_ + k f_25605_ + l f_25606_ + m f_25607_ + (Lbgi;DI)V + 0 o p_25609_ + 1 o p_25610_ + 2 o p_25611_ + (Lbgi;DII)V + 0 o p_25613_ + 1 o p_25614_ + 2 o p_25615_ + 3 o p_25616_ + K_ ()Z m_183429_ + a (Lbgi;)I m_6099_ + 0 o p_25618_ + a ()Z m_8036_ + a (Lcmp;Lgu;)Z m_6465_ + 0 o p_25619_ + 1 o p_25620_ + b ()Z m_8045_ + c ()V m_8056_ + e ()V m_8037_ + h ()V m_25624_ + i ()D m_8052_ + k ()Lgu; m_6669_ + l ()Z m_8064_ + m ()Z m_25625_ + n ()Z m_25626_ +bnj net/minecraft/world/entity/ai/goal/MoveTowardsRestrictionGoal + a f_25627_ + b f_25628_ + c f_25629_ + d f_25630_ + e f_25631_ + (Lbgi;D)V + 0 o p_25633_ + 1 o p_25634_ + a ()Z m_8036_ + b ()Z m_8045_ + c ()V m_8056_ +bnk net/minecraft/world/entity/ai/goal/MoveTowardsTargetGoal + a f_25638_ + b f_25639_ + c f_25640_ + d f_25641_ + e f_25642_ + f f_25643_ + g f_25644_ + (Lbgi;DF)V + 0 o p_25646_ + 1 o p_25647_ + 2 o p_25648_ + a ()Z m_8036_ + b ()Z m_8045_ + c ()V m_8056_ + d ()V m_8041_ +bnl net/minecraft/world/entity/ai/goal/OcelotAttackGoal + a f_25654_ + b f_25655_ + c f_25656_ + (Lbgb;)V + 0 o p_25658_ + K_ ()Z m_183429_ + a ()Z m_8036_ + b ()Z m_8045_ + d ()V m_8041_ + e ()V m_8037_ +bnm net/minecraft/world/entity/ai/goal/OfferFlowerGoal + a f_148131_ + b f_25663_ + c f_25664_ + d f_25665_ + e f_25666_ + ()V + static + (Lbrx;)V + 0 o p_25669_ + a ()Z m_8036_ + b ()Z m_8045_ + c ()V m_8056_ + d ()V m_8041_ + e ()V m_8037_ +bnn net/minecraft/world/entity/ai/goal/OpenDoorGoal + a f_25675_ + b f_25676_ + (Lbgb;Z)V + 0 o p_25678_ + 1 o p_25679_ + b ()Z m_8045_ + c ()V m_8056_ + d ()V m_8041_ + e ()V m_8037_ +bno net/minecraft/world/entity/ai/goal/PanicGoal + a f_198171_ + b f_25684_ + c f_25685_ + d f_25686_ + e f_25687_ + f f_25688_ + g f_25689_ + (Lbgi;D)V + 0 o p_25691_ + 1 o p_25692_ + a (Lcls;Lgu;)Z m_196647_ + static + 0 o p_196648_ + 1 o p_196649_ + a ()Z m_8036_ + a (Lcls;Lbfj;I)Lgu; m_198172_ + 0 o p_198173_ + 1 o p_198174_ + 2 o p_198175_ + b ()Z m_8045_ + c ()V m_8056_ + d ()V m_8041_ + h ()Z m_202729_ + i ()Z m_25702_ + k ()Z m_25703_ +bnp net/minecraft/world/entity/ai/goal/PathfindToRaidGoal + a f_199887_ + b f_148132_ + c f_25704_ + d f_199888_ + (Lbzw;)V + 0 o p_25706_ + a (Lbzv;)V m_25708_ + 0 o p_25709_ + a ()Z m_8036_ + a (Lbzv;Lbzw;)Z m_25710_ + static + 0 o p_25711_ + 1 o p_25712_ + b ()Z m_8045_ + e ()V m_8037_ +bnq net/minecraft/world/entity/ai/goal/RandomLookAroundGoal + a f_25715_ + b f_25716_ + c f_25717_ + d f_25718_ + (Lbgb;)V + 0 o p_25720_ + K_ ()Z m_183429_ + a ()Z m_8036_ + b ()Z m_8045_ + c ()V m_8056_ + e ()V m_8037_ +bnr net/minecraft/world/entity/ai/goal/RandomStandGoal + a f_244645_ + b f_244098_ + (Lbtk;)V + 0 o p_251685_ + K_ ()Z m_183429_ + a (Lbtk;)V m_245867_ + 0 o p_250439_ + a ()Z m_8036_ + b ()Z m_8045_ + c ()V m_8056_ + h ()V m_247344_ +bns net/minecraft/world/entity/ai/goal/RandomStrollGoal + a f_148133_ + b f_25725_ + c f_25726_ + d f_25727_ + e f_25728_ + f f_25729_ + g f_25730_ + h f_25731_ + i f_25732_ + (Lbgi;D)V + 0 o p_25734_ + 1 o p_25735_ + (Lbgi;DI)V + 0 o p_25737_ + 1 o p_25738_ + 2 o p_25739_ + (Lbgi;DIZ)V + 0 o p_25741_ + 1 o p_25742_ + 2 o p_25743_ + 3 o p_25744_ + a ()Z m_8036_ + b ()Z m_8045_ + c (I)V m_25746_ + 0 o p_25747_ + c ()V m_8056_ + d ()V m_8041_ + h ()Leei; m_7037_ + i ()V m_25751_ +bnt net/minecraft/world/entity/ai/goal/RandomSwimmingGoal + (Lbgi;DI)V + 0 o p_25753_ + 1 o p_25754_ + 2 o p_25755_ + h ()Leei; m_7037_ +bnu net/minecraft/world/entity/ai/goal/RangedAttackGoal + a f_25757_ + b f_25758_ + c f_25759_ + d f_25760_ + e f_25761_ + f f_25762_ + g f_25763_ + h f_25764_ + i f_25765_ + j f_25766_ + (Lbwg;DIIF)V + 0 o p_25773_ + 1 o p_25774_ + 2 o p_25775_ + 3 o p_25776_ + 4 o p_25777_ + (Lbwg;DIF)V + 0 o p_25768_ + 1 o p_25769_ + 2 o p_25770_ + 3 o p_25771_ + K_ ()Z m_183429_ + a ()Z m_8036_ + b ()Z m_8045_ + d ()V m_8041_ + e ()V m_8037_ +bnv net/minecraft/world/entity/ai/goal/RangedBowAttackGoal + a f_25782_ + b f_25783_ + c f_25784_ + d f_25785_ + e f_25786_ + f f_25787_ + g f_25788_ + h f_25789_ + i f_25790_ + (Lbwc;DIF)V + 0 o p_25792_ + 1 o p_25793_ + 2 o p_25794_ + 3 o p_25795_ + K_ ()Z m_183429_ + a ()Z m_8036_ + b ()Z m_8045_ + c (I)V m_25797_ + 0 o p_25798_ + c ()V m_8056_ + d ()V m_8041_ + e ()V m_8037_ + h ()Z m_25803_ +bnw net/minecraft/world/entity/ai/goal/RangedCrossbowAttackGoal + a f_25804_ + b f_25805_ + c f_25806_ + d f_25807_ + e f_25808_ + f f_25809_ + g f_25810_ + h f_25811_ + ()V + static + (Lbwc;DF)V + 0 o p_25814_ + 1 o p_25815_ + 2 o p_25816_ + K_ ()Z m_183429_ + a ()Z m_8036_ + b ()Z m_8045_ + d ()V m_8041_ + e ()V m_8037_ + h ()Z m_25821_ + i ()Z m_25822_ + k ()Z m_25823_ +bnw$a net/minecraft/world/entity/ai/goal/RangedCrossbowAttackGoal$CrossbowState + a UNCHARGED + b CHARGING + c CHARGED + d READY_TO_ATTACK + e $VALUES + ()V + static + (Ljava/lang/String;I)V + 0 o p_25831_ + 1 o p_25832_ + a ()[Lbnw$a; m_148134_ + static + valueOf (Ljava/lang/String;)Lbnw$a; valueOf + static + 0 o p_25834_ + values ()[Lbnw$a; values + static +bnx net/minecraft/world/entity/ai/goal/RemoveBlockGoal + g f_25836_ + h f_25837_ + i f_25838_ + j f_148135_ + (Lcpn;Lbgi;DI)V + 0 o p_25840_ + 1 o p_25841_ + 2 o p_25842_ + 3 o p_25843_ + a (Lcmn;Lgu;)V m_7659_ + 0 o p_25847_ + 1 o p_25848_ + a (Lgu;Lcls;)Lgu; m_25852_ + 0 o p_25853_ + 1 o p_25854_ + a ()Z m_8036_ + a (Lcmp;Lgu;)Z m_6465_ + 0 o p_25850_ + 1 o p_25851_ + a (Lcmm;Lgu;)V m_5777_ + 0 o p_25845_ + 1 o p_25846_ + c ()V m_8056_ + d ()V m_8041_ + e ()V m_8037_ +bny net/minecraft/world/entity/ai/goal/RestrictSunGoal + a f_25859_ + (Lbgi;)V + 0 o p_25861_ + a ()Z m_8036_ + c ()V m_8056_ + d ()V m_8041_ +bnz net/minecraft/world/entity/ai/goal/RunAroundLikeCrazyGoal + a f_25884_ + b f_25885_ + c f_25886_ + d f_25887_ + e f_25888_ + (Lbtk;D)V + 0 o p_25890_ + 1 o p_25891_ + a ()Z m_8036_ + b ()Z m_8045_ + c ()V m_8056_ + e ()V m_8037_ +bo net/minecraft/advancements/critereon/EntityPredicate + a f_36550_ + b f_36551_ + c f_36552_ + d f_36553_ + e f_150285_ + f f_36554_ + g f_36555_ + h f_36556_ + i f_36557_ + j f_218773_ + k f_36560_ + l f_150287_ + m f_36561_ + n f_36562_ + ()V + static + (Lbq;Lbf;Lch;Lch;Lck;Lcl;Lbm;Lbl;Lbp;Lbo;Lbo;Lbo;Ljava/lang/String;)V + 0 o p_218775_ + 1 o p_218776_ + 2 o p_218777_ + 3 o p_218778_ + 4 o p_218779_ + 5 o p_218780_ + 6 o p_218781_ + 7 o p_218782_ + 8 o p_218783_ + 9 o p_218784_ + 10 o p_218785_ + 11 o p_218786_ + 12 o p_218787_ + (Lbq;Lbf;Lch;Lch;Lck;Lcl;Lbm;Lbl;Lbp;Ljava/lang/String;)V + 0 o p_218789_ + 1 o p_218790_ + 2 o p_218791_ + 3 o p_218792_ + 4 o p_218793_ + 5 o p_218794_ + 6 o p_218795_ + 7 o p_218796_ + 8 o p_218797_ + 9 o p_218798_ + a (Laig;Lbfj;)Z m_36611_ + 0 o p_36612_ + 1 o p_36613_ + a (Lcom/google/gson/JsonElement;)Lbo; m_36614_ + static + 0 o p_36615_ + a ()Lcom/google/gson/JsonElement; m_36606_ + a (Ljava/lang/String;Lbe;Lcom/google/gson/JsonElement;)Lba; m_285915_ + static + 0 o p_286569_ + 1 o p_286821_ + 2 o p_286582_ + a (Laif;Leei;Lbfj;)Z m_36607_ + 0 o p_36608_ + 1 o p_36609_ + 2 o p_36610_ + a (Lcom/google/gson/JsonObject;Ljava/lang/String;Lbe;)Lba; m_285855_ + static + 0 o p_286877_ + 1 o p_286245_ + 2 o p_286427_ + a (Lbo;)Lba; m_285787_ + static + 0 o p_286570_ + b (Laif;Leei;Lbfj;)Z m_150319_ + 0 o p_150320_ + 1 o p_150321_ + 2 o p_150322_ + b (Lcom/google/gson/JsonObject;Ljava/lang/String;Lbe;)[Lba; m_285868_ + static + 0 o p_286850_ + 1 o p_286682_ + 2 o p_286876_ + b (Laig;Lbfj;)Ldzk; m_36616_ + static + 0 o p_36617_ + 1 o p_36618_ +bo$a net/minecraft/advancements/critereon/EntityPredicate$Builder + a f_36619_ + b f_36620_ + c f_36621_ + d f_150323_ + e f_36622_ + f f_36623_ + g f_36624_ + h f_36625_ + i f_218799_ + j f_36628_ + k f_150325_ + l f_36629_ + m f_36630_ + ()V + a (Lbp;)Lbo$a; m_218800_ + 0 o p_218801_ + a ()Lbo$a; m_36633_ + static + a (Lbf;)Lbo$a; m_36638_ + 0 o p_36639_ + a (Lbo;)Lbo$a; m_36644_ + 0 o p_36645_ + a (Ljava/lang/String;)Lbo$a; m_36658_ + 0 o p_36659_ + a (Lanl;)Lbo$a; m_204077_ + 0 o p_204078_ + a (Lbq;)Lbo$a; m_36646_ + 0 o p_36647_ + a (Lch;)Lbo$a; m_36650_ + 0 o p_36651_ + a (Lbl;)Lbo$a; m_36640_ + 0 o p_36641_ + a (Lbm;)Lbo$a; m_36642_ + 0 o p_36643_ + a (Lck;)Lbo$a; m_36652_ + 0 o p_36653_ + a (Lbfn;)Lbo$a; m_36636_ + 0 o p_36637_ + a (Lcl;)Lbo$a; m_36654_ + 0 o p_36655_ + b (Lbo;)Lbo$a; m_150328_ + 0 o p_150329_ + b (Lch;)Lbo$a; m_150330_ + 0 o p_150331_ + b ()Lbo; m_36662_ + c (Lbo;)Lbo$a; m_36663_ + 0 o p_36664_ +boa net/minecraft/world/entity/ai/goal/SitWhenOrderedToGoal + a f_25896_ + (Lbgv;)V + 0 o p_25898_ + a ()Z m_8036_ + b ()Z m_8045_ + c ()V m_8056_ + d ()V m_8041_ +bob net/minecraft/world/entity/ai/goal/StrollThroughVillageGoal + a f_148136_ + b f_25903_ + c f_25904_ + d f_25905_ + (Lbgi;I)V + 0 o p_25907_ + 1 o p_25908_ + a ()Z m_8036_ + a (Laif;Lgu;)D m_25910_ + static + 0 o p_25911_ + 1 o p_25912_ + b ()Z m_8045_ + e ()V m_8037_ + h ()V m_25915_ +boc net/minecraft/world/entity/ai/goal/SwellGoal + a f_25916_ + b f_25917_ + (Lbvo;)V + 0 o p_25919_ + K_ ()Z m_183429_ + a ()Z m_8036_ + c ()V m_8056_ + d ()V m_8041_ + e ()V m_8037_ +bod net/minecraft/world/entity/ai/goal/TemptGoal + a f_25924_ + b f_25925_ + c f_25926_ + d f_148137_ + e f_25927_ + f f_25928_ + g f_25929_ + h f_25930_ + i f_25931_ + j f_25932_ + k f_25933_ + l f_25934_ + m f_25935_ + n f_25936_ + ()V + static + (Lbgi;DLciz;Z)V + 0 o p_25939_ + 1 o p_25940_ + 2 o p_25941_ + 3 o p_25942_ + a ()Z m_8036_ + a (Lbfz;)Z m_148138_ + 0 o p_148139_ + b ()Z m_8045_ + c ()V m_8056_ + d ()V m_8041_ + e ()V m_8037_ + h ()Z m_7497_ + i ()Z m_25955_ +boe net/minecraft/world/entity/ai/goal/TradeWithPlayerGoal + a f_25956_ + (Lbxw;)V + 0 o p_25958_ + a ()Z m_8036_ + c ()V m_8056_ + d ()V m_8041_ +bof net/minecraft/world/entity/ai/goal/TryFindWaterGoal + a f_25962_ + (Lbgi;)V + 0 o p_25964_ + a ()Z m_8036_ + c ()V m_8056_ +bog net/minecraft/world/entity/ai/goal/UseItemGoal + a f_25967_ + b f_25968_ + c f_25969_ + d f_25970_ + (Lbgb;Lcfz;Lamg;Ljava/util/function/Predicate;)V + 0 o p_25972_ + 1 o p_25973_ + 2 o p_25974_ + 3 o p_25975_ + a ()Z m_8036_ + b ()Z m_8045_ + c ()V m_8056_ + d ()V m_8041_ +boh net/minecraft/world/entity/ai/goal/WaterAvoidingRandomFlyingGoal + (Lbgi;D)V + 0 o p_25981_ + 1 o p_25982_ + h ()Leei; m_7037_ +boi net/minecraft/world/entity/ai/goal/WaterAvoidingRandomStrollGoal + i f_148149_ + j f_25985_ + (Lbgi;D)V + 0 o p_25987_ + 1 o p_25988_ + (Lbgi;DF)V + 0 o p_25990_ + 1 o p_25991_ + 2 o p_25992_ + h ()Leei; m_7037_ +boj net/minecraft/world/entity/ai/goal/WrappedGoal + a f_25994_ + b f_25995_ + c f_25996_ + (ILbmv;)V + 0 o p_25998_ + 1 o p_25999_ + J_ ()Z m_6767_ + K_ ()Z m_183429_ + a (Ljava/util/EnumSet;)V m_7021_ + 0 o p_26005_ + a (I)I m_183277_ + 0 o p_186092_ + a (Lboj;)Z m_26002_ + 0 o p_26003_ + a ()Z m_8036_ + b ()Z m_8045_ + c ()V m_8056_ + d ()V m_8041_ + e ()V m_8037_ + equals (Ljava/lang/Object;)Z equals + 0 o p_26011_ + h ()Z m_7620_ + hashCode ()I hashCode + i ()I m_26012_ + j ()Ljava/util/EnumSet; m_7684_ + k ()Lbmv; m_26015_ +bok net/minecraft/world/entity/ai/goal/ZombieAttackGoal + b f_26016_ + c f_26017_ + (Lbwv;DZ)V + 0 o p_26019_ + 1 o p_26020_ + 2 o p_26021_ + c ()V m_8056_ + d ()V m_8041_ + e ()V m_8037_ +bol net/minecraft/world/entity/ai/goal/package-info +bom net/minecraft/world/entity/ai/goal/target/DefendVillageTargetGoal + a f_26025_ + b f_26026_ + c f_26027_ + (Lbrx;)V + 0 o p_26029_ + a ()Z m_8036_ + c ()V m_8056_ +bon net/minecraft/world/entity/ai/goal/target/HurtByTargetGoal + a f_26032_ + b f_148150_ + c f_26033_ + d f_26034_ + i f_26035_ + j f_26036_ + ()V + static + (Lbgi;[Ljava/lang/Class;)V + 0 o p_26039_ + 1 o p_26040_ + a (Lbgb;Lbfz;)V m_5766_ + 0 o p_26042_ + 1 o p_26043_ + a ()Z m_8036_ + a ([Ljava/lang/Class;)Lbon; m_26044_ + 0 o p_26045_ + c ()V m_8056_ + h ()V m_26047_ +boo net/minecraft/world/entity/ai/goal/target/NearestAttackableTargetGoal + a f_26048_ + b f_26049_ + c f_26050_ + d f_26051_ + i f_199889_ + (Lbgb;Ljava/lang/Class;Z)V + 0 o p_26060_ + 1 o p_26061_ + 2 o p_26062_ + (Lbgb;Ljava/lang/Class;ZLjava/util/function/Predicate;)V + 0 o p_199891_ + 1 o p_199892_ + 2 o p_199893_ + 3 o p_199894_ + (Lbgb;Ljava/lang/Class;ZZ)V + 0 o p_26064_ + 1 o p_26065_ + 2 o p_26066_ + 3 o p_26067_ + (Lbgb;Ljava/lang/Class;IZZLjava/util/function/Predicate;)V + 0 o p_26053_ + 1 o p_26054_ + 2 o p_26055_ + 3 o p_26056_ + 4 o p_26057_ + 5 o p_26058_ + a (Lbfz;)V m_26070_ + 0 o p_26071_ + a ()Z m_8036_ + a (D)Leed; m_7255_ + 0 o p_26069_ + b (Lbfz;)Z m_148151_ + static + 0 o p_148152_ + c ()V m_8056_ + h ()V m_26073_ +bop net/minecraft/world/entity/ai/goal/target/NearestAttackableWitchTargetGoal + i f_26074_ + (Lbzw;Ljava/lang/Class;IZZLjava/util/function/Predicate;)V + 0 o p_26076_ + 1 o p_26077_ + 2 o p_26078_ + 3 o p_26079_ + 4 o p_26080_ + 5 o p_26081_ + a ()Z m_8036_ + a (Z)V m_26083_ + 0 o p_26084_ +boq net/minecraft/world/entity/ai/goal/target/NearestHealableRaiderTargetGoal + i f_148153_ + j f_26085_ + (Lbzw;Ljava/lang/Class;ZLjava/util/function/Predicate;)V + 0 o p_26087_ + 1 o p_26088_ + 2 o p_26089_ + 3 o p_26090_ + a ()Z m_8036_ + c ()V m_8056_ + i ()I m_26093_ + k ()V m_26094_ +bor net/minecraft/world/entity/ai/goal/target/NonTameRandomTargetGoal + i f_26095_ + (Lbgv;Ljava/lang/Class;ZLjava/util/function/Predicate;)V + 0 o p_26097_ + 1 o p_26098_ + 2 o p_26099_ + 3 o p_26100_ + a ()Z m_8036_ + b ()Z m_8045_ +bos net/minecraft/world/entity/ai/goal/target/OwnerHurtByTargetGoal + a f_26103_ + b f_26104_ + c f_26105_ + (Lbgv;)V + 0 o p_26107_ + a ()Z m_8036_ + c ()V m_8056_ +bot net/minecraft/world/entity/ai/goal/target/OwnerHurtTargetGoal + a f_26110_ + b f_26111_ + c f_26112_ + (Lbgv;)V + 0 o p_26114_ + a ()Z m_8036_ + c ()V m_8056_ +bou net/minecraft/world/entity/ai/goal/target/ResetUniversalAngerTargetGoal + a f_148154_ + b f_26117_ + c f_26118_ + d f_26119_ + (Lbgb;Z)V + 0 o p_26121_ + 1 o p_26122_ + a ()Z m_8036_ + a (Lbgb;)Lbgg; m_26124_ + static + 0 o p_26125_ + b (Lbgb;)Z m_26126_ + 0 o p_26127_ + c ()V m_8056_ + h ()Z m_26129_ + i ()Ljava/util/List; m_26130_ +bov net/minecraft/world/entity/ai/goal/target/TargetGoal + a f_148155_ + b f_148156_ + c f_148157_ + d f_26131_ + e f_26135_ + f f_26136_ + g f_26137_ + h f_26138_ + i f_26132_ + j f_26133_ + k f_26134_ + (Lbgb;Z)V + 0 o p_26140_ + 1 o p_26141_ + (Lbgb;ZZ)V + 0 o p_26143_ + 1 o p_26144_ + 2 o p_26145_ + a (Lbfz;Lbqm;)Z m_26150_ + 0 o p_26151_ + 1 o p_26152_ + a (Lbfz;)Z m_26148_ + 0 o p_26149_ + b ()Z m_8045_ + c (I)Lbov; m_26146_ + 0 o p_26147_ + c ()V m_8056_ + d ()V m_8041_ + l ()D m_7623_ +bow net/minecraft/world/entity/ai/goal/target/package-info +box net/minecraft/world/entity/ai/gossip/GossipContainer + a f_148158_ + b f_262760_ + c f_26156_ + ()V + static + ()V + a (Lboy;II)I m_26167_ + 0 o p_26168_ + 1 o p_26169_ + 2 o p_26170_ + a (Ljava/lang/String;)V m_262781_ + static + 0 o p_262901_ + a (Lbox$b;)V m_26161_ + 0 o p_26162_ + a (Lboy;)V m_148160_ + 0 o p_148161_ + a (Ljava/util/Map$Entry;)Ljava/util/stream/Stream; m_26184_ + static + 0 o p_26185_ + a (Ljava/util/UUID;)Lbox$a; m_26189_ + 0 o p_26190_ + a (Ljava/util/UUID;Ljava/util/function/Predicate;)I m_26195_ + 0 o p_26196_ + 1 o p_26197_ + a (Lcom/mojang/serialization/Dynamic;)V m_26177_ + 0 o p_26178_ + a (Ljava/util/UUID;Lboy;)V m_148168_ + 0 o p_148169_ + 1 o p_148170_ + a (II)I m_26158_ + static + 0 o p_26159_ + 1 o p_26160_ + a (Lapf;I)Ljava/util/Collection; m_217759_ + 0 o p_217760_ + 1 o p_217761_ + a (Lbox;Lapf;I)V m_217762_ + 0 o p_217763_ + 1 o p_217764_ + 2 o p_217765_ + a (Ljava/util/UUID;Lboy;I)V m_26191_ + 0 o p_26192_ + 1 o p_26193_ + 2 o p_26194_ + a (Lcom/mojang/datafixers/util/Pair;)Ljava/util/stream/Stream; m_262779_ + static + 0 o p_262899_ + a (Lboy;Ljava/util/function/DoublePredicate;)J m_148162_ + 0 o p_148163_ + 1 o p_148164_ + a (Ljava/util/Map;Ljava/util/UUID;)V m_148165_ + 0 o p_148166_ + 1 o p_148167_ + a (Lcom/mojang/serialization/DynamicOps;)Ljava/lang/Object; m_262795_ + 0 o p_262915_ + a ()Ljava/util/Map; m_148159_ + a (Ljava/util/function/DoublePredicate;Lboy;Lbox$a;)Z m_148171_ + static + 0 o p_148172_ + 1 o p_148173_ + 2 o p_148174_ + b (Ljava/lang/String;)V m_262780_ + static + 0 o p_262900_ + b (Lbox$b;)V m_26199_ + 0 o p_26200_ + b (Ljava/util/UUID;)Lbox$a; m_26201_ + static + 0 o p_26202_ + b (Lboy;II)I m_186094_ + 0 o p_186095_ + 1 o p_186096_ + 2 o p_186097_ + b (Ljava/util/UUID;Lboy;I)V m_148175_ + 0 o p_148176_ + 1 o p_148177_ + 2 o p_148178_ + b ()V m_26198_ + c ()Ljava/util/stream/Stream; m_26203_ +box$a net/minecraft/world/entity/ai/gossip/GossipContainer$EntityGossips + a f_26204_ + ()V + a (Lit/unimi/dsi/fastutil/objects/Object2IntMap$Entry;)I m_26213_ + static + 0 o p_26214_ + a (Lboy;)V m_26211_ + 0 o p_26212_ + a (Ljava/util/UUID;)Ljava/util/stream/Stream; m_26215_ + 0 o p_26216_ + a (Ljava/util/function/Predicate;)I m_26220_ + 0 o p_26221_ + a ()V m_26208_ + a (Ljava/util/UUID;Lit/unimi/dsi/fastutil/objects/Object2IntMap$Entry;)Lbox$b; m_26217_ + static + 0 o p_26218_ + 1 o p_26219_ + a (Ljava/util/function/Predicate;Lit/unimi/dsi/fastutil/objects/Object2IntMap$Entry;)Z m_26222_ + static + 0 o p_26223_ + 1 o p_26224_ + b (Lboy;)V m_26226_ + 0 o p_26227_ + b ()Z m_26225_ +box$b net/minecraft/world/entity/ai/gossip/GossipContainer$GossipEntry + a f_262739_ + b f_262751_ + c f_26228_ + d f_26229_ + e f_26230_ + ()V + static + (Ljava/util/UUID;Lboy;I)V + 0 o f_26228_ + 1 o f_26229_ + 2 o f_26230_ + a (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; m_262811_ + static + 0 o p_263007_ + a ()I m_26235_ + b ()Ljava/util/UUID; f_26228_ + c ()Lboy; f_26229_ + d ()I f_26230_ + equals (Ljava/lang/Object;)Z equals + 0 o p_263014_ + hashCode ()I hashCode + toString ()Ljava/lang/String; toString +boy net/minecraft/world/entity/ai/gossip/GossipType + a MAJOR_NEGATIVE + b MINOR_NEGATIVE + c MINOR_POSITIVE + d MAJOR_POSITIVE + e TRADING + f f_148182_ + g f_148183_ + h f_148184_ + i f_26273_ + j f_26274_ + k f_26275_ + l f_26276_ + m f_26277_ + n f_262726_ + o $VALUES + ()V + static + (Ljava/lang/String;ILjava/lang/String;IIII)V + 0 o p_26282_ + 1 o p_26283_ + 2 o p_26284_ + 3 o p_26285_ + 4 o p_26286_ + 5 o p_26287_ + 6 o p_26288_ + a ()[Lboy; m_148185_ + static + c ()Ljava/lang/String; m_7912_ + valueOf (Ljava/lang/String;)Lboy; valueOf + static + 0 o p_26294_ + values ()[Lboy; values + static +boz net/minecraft/world/entity/ai/gossip/package-info +bp net/minecraft/advancements/critereon/EntitySubPredicate + a f_218826_ + ()V + static + a ()Lcom/google/gson/JsonObject; m_213616_ + a (Lbfj;Laif;Leei;)Z m_153246_ + 0 o p_218828_ + 1 o p_218829_ + 2 o p_218830_ + a (Lbrp;)Lbp; m_218831_ + static + 0 o p_218832_ + a (Lcom/google/gson/JsonElement;)Lbp; m_218835_ + static + 0 o p_218836_ + a (Lbrw;)Lbp; m_218833_ + static + 0 o p_218834_ + b ()Lcom/google/gson/JsonElement; m_218837_ + c ()Lbp$a; m_213836_ +bp$1 net/minecraft/advancements/critereon/EntitySubPredicate$1 + ()V + a ()Lcom/google/gson/JsonObject; m_213616_ + a (Lbfj;Laif;Leei;)Z m_153246_ + 0 o p_218841_ + 1 o p_218842_ + 2 o p_218843_ + c ()Lbp$a; m_213836_ +bp$a net/minecraft/advancements/critereon/EntitySubPredicate$Type + deserialize (Lcom/google/gson/JsonObject;)Lbp; m_218845_ + 0 o p_218846_ +bp$b net/minecraft/advancements/critereon/EntitySubPredicate$Types + a f_218847_ + b f_218848_ + c f_218849_ + d f_218850_ + e f_218851_ + f f_218852_ + g f_218853_ + h f_262257_ + i f_262222_ + j f_262303_ + k f_262202_ + l f_262296_ + m f_262285_ + n f_262259_ + o f_262266_ + p f_262265_ + q f_262231_ + r f_262221_ + s f_218854_ + ()V + static + ()V + a (Lbfj;)Ljava/util/Optional; m_262335_ + static + 0 o p_262517_ + a (Lcom/google/gson/JsonObject;)Lbp; m_218859_ + static + 0 o p_218860_ + b (Lbfj;)Ljava/util/Optional; m_262324_ + static + 0 o p_262506_ + c (Lbfj;)Ljava/util/Optional; m_262330_ + static + 0 o p_262512_ + d (Lbfj;)Ljava/util/Optional; m_262333_ + static + 0 o p_262515_ + e (Lbfj;)Ljava/util/Optional; m_262334_ + static + 0 o p_262516_ + f (Lbfj;)Ljava/util/Optional; m_262329_ + static + 0 o p_262511_ + g (Lbfj;)Ljava/util/Optional; m_262327_ + static + 0 o p_262509_ + h (Lbfj;)Ljava/util/Optional; m_262331_ + static + 0 o p_262513_ + i (Lbfj;)Ljava/util/Optional; m_262328_ + static + 0 o p_262510_ + j (Lbfj;)Ljava/util/Optional; m_262325_ + static + 0 o p_262507_ + k (Lbfj;)Ljava/util/Optional; m_262326_ + static + 0 o p_262508_ + l (Lbfj;)Ljava/util/Optional; m_218857_ + static + 0 o p_218858_ + m (Lbfj;)Ljava/util/Optional; m_262332_ + static + 0 o p_218862_ +bpa net/minecraft/world/entity/ai/memory/ExpirableValue + a f_26296_ + b f_26297_ + (Ljava/lang/Object;J)V + 0 o p_26299_ + 1 o p_26300_ + a (Ljava/lang/Object;J)Lbpa; m_26311_ + static + 0 o p_26312_ + 1 o p_26313_ + a (Lcom/mojang/serialization/Codec;)Lcom/mojang/serialization/Codec; m_26304_ + static + 0 o p_26305_ + a (Lcom/mojang/serialization/Codec;Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; m_26306_ + static + 0 o p_26307_ + 1 o p_26308_ + a (Lbpa;)Ljava/util/Optional; m_148186_ + static + 0 o p_148187_ + a (Ljava/lang/Object;Ljava/util/Optional;)Lbpa; m_148188_ + static + 0 o p_148189_ + 1 o p_148190_ + a (Ljava/lang/Object;)Lbpa; m_26309_ + static + 0 o p_26310_ + a ()V m_26301_ + b (Lbpa;)Ljava/lang/Object; m_148192_ + static + 0 o p_148193_ + b ()J m_148191_ + c ()Ljava/lang/Object; m_26319_ + d ()Z m_26320_ + e ()Z m_26321_ + toString ()Ljava/lang/String; toString +bpb net/minecraft/world/entity/ai/memory/MemoryModuleType + A f_26323_ + B f_148194_ + C f_26324_ + D f_26325_ + E f_26326_ + F f_26327_ + G f_26328_ + H f_26329_ + I f_26330_ + J f_26331_ + K f_26332_ + L f_26333_ + M f_148195_ + N f_148196_ + O f_148197_ + P f_244205_ + Q f_148198_ + R f_148199_ + S f_148200_ + T f_148201_ + U f_148202_ + V f_148203_ + W f_217766_ + X f_217767_ + Y f_217768_ + Z f_238182_ + a f_26349_ + aA f_217785_ + aB f_217786_ + aC f_217769_ + aD f_217770_ + aE f_217771_ + aF f_217772_ + aG f_217773_ + aH f_217774_ + aI f_217775_ + aJ f_217776_ + aK f_217777_ + aL f_217778_ + aM f_217779_ + aN f_217780_ + aO f_217781_ + aP f_271415_ + aQ f_271134_ + aR f_271280_ + aS f_271087_ + aT f_26358_ + aa f_26334_ + ab f_26335_ + ac f_26336_ + ad f_26337_ + ae f_26338_ + af f_26339_ + ag f_26340_ + ah f_26341_ + ai f_26342_ + aj f_26343_ + ak f_26344_ + al f_26345_ + am f_26346_ + an f_26347_ + ao f_26348_ + ap f_26350_ + aq f_26351_ + ar f_26352_ + as f_26353_ + at f_26354_ + au f_26355_ + av f_26356_ + aw f_26357_ + ax f_217782_ + ay f_217783_ + az f_217784_ + b f_26359_ + c f_26360_ + d f_26361_ + e f_26362_ + f f_26363_ + g f_148204_ + h f_148205_ + i f_26366_ + j f_26367_ + k f_26368_ + l f_148206_ + m f_26370_ + n f_26371_ + o f_26372_ + p f_26373_ + q f_26374_ + r f_26375_ + s f_26376_ + t f_26377_ + u f_26378_ + v f_26379_ + w f_26380_ + x f_26381_ + y f_26382_ + z f_26383_ + ()V + static + (Ljava/util/Optional;)V + 0 o p_26386_ + a (Ljava/lang/String;Lcom/mojang/serialization/Codec;)Lbpb; m_26390_ + static + 0 o p_26391_ + 1 o p_26392_ + a ()Ljava/util/Optional; m_26387_ + a (Ljava/lang/String;)Lbpb; m_26388_ + static + 0 o p_26389_ + toString ()Ljava/lang/String; toString +bpc net/minecraft/world/entity/ai/memory/MemoryStatus + a VALUE_PRESENT + b VALUE_ABSENT + c REGISTERED + d $VALUES + ()V + static + (Ljava/lang/String;I)V + 0 o p_26400_ + 1 o p_26401_ + a ()[Lbpc; m_148207_ + static + valueOf (Ljava/lang/String;)Lbpc; valueOf + static + 0 o p_26403_ + values ()[Lbpc; values + static +bpd net/minecraft/world/entity/ai/memory/NearestVisibleLivingEntities + a f_186098_ + b f_186099_ + c f_186100_ + ()V + static + (Lbfz;Ljava/util/List;)V + 0 o p_186104_ + 1 o p_186105_ + ()V + a (Ljava/util/function/Predicate;Lbfz;)Z m_186118_ + 0 o p_186119_ + 1 o p_186120_ + a (Lbfz;Lbfz;)Z m_186109_ + static + 0 o p_186110_ + 1 o p_186111_ + a (Ljava/util/function/Predicate;)Ljava/util/Optional; m_186116_ + 0 o p_186117_ + a ()Lbpd; m_186106_ + static + a (Lbfz;)Z m_186107_ + 0 o p_186108_ + a (Lit/unimi/dsi/fastutil/objects/Object2BooleanOpenHashMap;Ljava/util/function/Predicate;Lbfz;)Z m_186112_ + static + 0 o p_186113_ + 1 o p_186114_ + 2 o p_186115_ + b (Ljava/util/function/Predicate;Lbfz;)Z m_186125_ + 0 o p_186126_ + 1 o p_186127_ + b (Lbfz;)Z m_186121_ + static + 0 o p_186122_ + b (Ljava/util/function/Predicate;)Ljava/lang/Iterable; m_186123_ + 0 o p_186124_ + c (Ljava/util/function/Predicate;)Ljava/util/stream/Stream; m_186128_ + 0 o p_186129_ + d (Ljava/util/function/Predicate;)Z m_186130_ + 0 o p_186131_ +bpe net/minecraft/world/entity/ai/memory/WalkTarget + a f_26405_ + b f_26406_ + c f_26407_ + (Lbje;FI)V + 0 o p_26409_ + 1 o p_26410_ + 2 o p_26411_ + (Leei;FI)V + 0 o p_26413_ + 1 o p_26414_ + 2 o p_26415_ + (Lgu;FI)V + 0 o p_26417_ + 1 o p_26418_ + 2 o p_26419_ + (Lbfj;FI)V + 0 o p_148209_ + 1 o p_148210_ + 2 o p_148211_ + a ()Lbje; m_26420_ + b ()F m_26421_ + c ()I m_26422_ +bpf net/minecraft/world/entity/ai/memory/package-info +bpg net/minecraft/world/entity/ai/navigation/AmphibiousPathNavigation + (Lbgb;Lcmm;)V + 0 o p_217788_ + 1 o p_217789_ + a (Leei;)D m_183345_ + 0 o p_217794_ + a ()Z m_7632_ + a (Lgu;)Z m_6342_ + 0 o p_217799_ + a (Leei;Leei;)Z m_183431_ + 0 o p_217796_ + 1 o p_217797_ + a (I)Ldxv; m_5532_ + 0 o p_217792_ + a (Z)V m_7008_ + 0 o p_217801_ + b ()Leei; m_7475_ +bph net/minecraft/world/entity/ai/navigation/FlyingPathNavigation + (Lbgb;Lcmm;)V + 0 o p_26424_ + 1 o p_26425_ + a ()Z m_7632_ + a (Lgu;)Z m_6342_ + 0 o p_26439_ + a (Leei;Leei;)Z m_183431_ + 0 o p_262585_ + 1 o p_262682_ + a (I)Ldxv; m_5532_ + 0 o p_26428_ + a (Lbfj;I)Ldxt; m_6570_ + 0 o p_26430_ + 1 o p_26431_ + b (Z)V m_26440_ + 0 o p_26441_ + b ()Leei; m_7475_ + c (Z)V m_26443_ + 0 o p_26444_ + c ()V m_7638_ + d ()Z m_148212_ + e ()Z m_148213_ +bpi net/minecraft/world/entity/ai/navigation/GroundPathNavigation + p f_26446_ + (Lbgb;Lcmm;)V + 0 o p_26448_ + 1 o p_26449_ + L_ ()V m_6804_ + a (I)Ldxv; m_5532_ + 0 o p_26453_ + a (Lbfj;I)Ldxt; m_6570_ + 0 o p_26465_ + 1 o p_26466_ + a ()Z m_7632_ + a (Lgu;I)Ldxt; m_7864_ + 0 o p_26475_ + 1 o p_26476_ + a (Ldxp;)Z m_7367_ + 0 o p_26467_ + b (Z)V m_26477_ + 0 o p_26478_ + b ()Leei; m_7475_ + c (Z)V m_148214_ + 0 o p_148215_ + d (Z)V m_26490_ + 0 o p_26491_ + e (Z)V m_255224_ + 0 o p_255877_ + e ()Z m_148216_ + f ()Z m_26492_ + t ()I m_26493_ +bpj net/minecraft/world/entity/ai/navigation/PathNavigation + a f_26494_ + b f_26495_ + c f_26496_ + d f_26497_ + e f_26498_ + f f_26499_ + g f_26500_ + h f_26501_ + i f_26502_ + j f_26503_ + k f_26504_ + l f_26505_ + m f_26506_ + n f_26507_ + o f_26508_ + p f_148217_ + q f_262273_ + r f_262292_ + s f_26509_ + t f_26510_ + u f_26511_ + v f_26512_ + w f_26513_ + (Lbgb;Lcmm;)V + 0 o p_26515_ + 1 o p_26516_ + L_ ()V m_6804_ + a (Leei;)D m_183345_ + 0 o p_186132_ + a (I)Ldxv; m_5532_ + 0 o p_26531_ + a (DDDD)Z m_26519_ + 0 o p_26520_ + 1 o p_26521_ + 2 o p_26522_ + 3 o p_26523_ + a (Z)V m_7008_ + 0 o p_26563_ + a (Lbfj;I)Ldxt; m_6570_ + 0 o p_26534_ + 1 o p_26535_ + a (DDDI)Ldxt; m_26524_ + 0 o p_26525_ + 1 o p_26526_ + 2 o p_26527_ + 3 o p_26528_ + a (Ljava/util/Set;I)Ldxt; m_26548_ + 0 o p_26549_ + 1 o p_26550_ + a ()Z m_7632_ + a (D)V m_26517_ + 0 o p_26518_ + a (Ldxt;D)Z m_26536_ + 0 o p_26537_ + 1 o p_26538_ + a (Lgu;)Z m_6342_ + 0 o p_26545_ + a (Leei;Leei;)Z m_183431_ + 0 o p_186133_ + 1 o p_186134_ + a (F)V m_26529_ + 0 o p_26530_ + a (Lgu;II)Ldxt; m_148218_ + 0 o p_148219_ + 1 o p_148220_ + 2 o p_148221_ + a (Ljava/util/Set;IZI)Ldxt; m_26551_ + 0 o p_26552_ + 1 o p_26553_ + 2 o p_26554_ + 3 o p_26555_ + a (Ljava/util/Set;IZIF)Ldxt; m_148222_ + 0 o p_148223_ + 1 o p_148224_ + 2 o p_148225_ + 3 o p_148226_ + 4 o p_148227_ + a (Lbgb;Leei;Leei;Z)Z m_262402_ + static + 0 o p_262599_ + 1 o p_262674_ + 2 o p_262586_ + 3 o p_262676_ + a (Ljava/util/stream/Stream;I)Ldxt; m_26556_ + 0 o p_26557_ + 1 o p_26558_ + a (Lbfj;D)Z m_5624_ + 0 o p_26532_ + 1 o p_26533_ + a (Lgu;I)Ldxt; m_7864_ + 0 o p_26546_ + 1 o p_26547_ + b (Ldxp;)Z m_264193_ + 0 o p_265292_ + b ()Leei; m_7475_ + b (Lgu;)Z m_200903_ + 0 o p_200904_ + b (Leei;)V m_6481_ + 0 o p_26539_ + c ()V m_7638_ + c (Leei;)Z m_26559_ + 0 o p_26560_ + e ()V m_26564_ + f ()V m_26565_ + g ()V m_26566_ + h ()Lgu; m_26567_ + i ()V m_26569_ + j ()Ldxt; m_26570_ + k ()V m_7636_ + l ()Z m_26571_ + m ()Z m_26572_ + n ()V m_26573_ + o ()Z m_26574_ + p ()Ldxs; m_26575_ + q ()Z m_26576_ + r ()F m_148228_ + s ()Z m_26577_ +bpk net/minecraft/world/entity/ai/navigation/WallClimberNavigation + p f_26578_ + (Lbgb;Lcmm;)V + 0 o p_26580_ + 1 o p_26581_ + a (Lbfj;D)Z m_5624_ + 0 o p_26583_ + 1 o p_26584_ + a (Lbfj;I)Ldxt; m_6570_ + 0 o p_26586_ + 1 o p_26587_ + a (Lgu;I)Ldxt; m_7864_ + 0 o p_26589_ + 1 o p_26590_ + c ()V m_7638_ +bpl net/minecraft/world/entity/ai/navigation/WaterBoundPathNavigation + p f_26592_ + (Lbgb;Lcmm;)V + 0 o p_26594_ + 1 o p_26595_ + a (Leei;)D m_183345_ + 0 o p_186136_ + a ()Z m_7632_ + a (Lgu;)Z m_6342_ + 0 o p_26608_ + a (Leei;Leei;)Z m_183431_ + 0 o p_186138_ + 1 o p_186139_ + a (I)Ldxv; m_5532_ + 0 o p_26598_ + a (Z)V m_7008_ + 0 o p_26612_ + b ()Leei; m_7475_ +bpm net/minecraft/world/entity/ai/navigation/package-info +bpn net/minecraft/world/entity/ai/package-info +bpo net/minecraft/world/entity/ai/sensing/AdultSensor + ()V + a (Laif;Lbfe;)V m_5578_ + 0 o p_148248_ + 1 o p_148249_ + a (Laif;Lbfz;)V m_5578_ + 0 o p_26620_ + 1 o p_26621_ + a ()Ljava/util/Set; m_7163_ + a (Lbfe;Lbfz;)Z m_289118_ + static + 0 o p_289402_ + 1 o p_289403_ + a (Lbfe;Lbpd;)V m_186140_ + 0 o p_186141_ + 1 o p_186142_ + b (Lbfe;Lbpd;)V m_186143_ + 0 o p_186144_ + 1 o p_186145_ +bpp net/minecraft/world/entity/ai/sensing/AxolotlAttackablesSensor + a f_148263_ + ()V + a (Lbfz;Lbfz;)Z m_142628_ + 0 o p_148266_ + 1 o p_148267_ + b ()Lbpb; m_142149_ + b (Lbfz;)Z m_148269_ + 0 o p_148270_ + e (Lbfz;Lbfz;)Z m_148271_ + 0 o p_148272_ + 1 o p_148273_ + f (Lbfz;Lbfz;)Z m_148274_ + 0 o p_148275_ + 1 o p_148276_ +bpq net/minecraft/world/entity/ai/sensing/DummySensor + ()V + a (Laif;Lbfz;)V m_5578_ + 0 o p_26638_ + 1 o p_26639_ + a ()Ljava/util/Set; m_7163_ +bpr net/minecraft/world/entity/ai/sensing/FrogAttackablesSensor + a f_217807_ + ()V + a (Lbfz;Lbfz;)Z m_142628_ + 0 o p_217810_ + 1 o p_217811_ + b ()Lbpb; m_142149_ + e (Lbfz;Lbfz;)Z m_238335_ + 0 o p_238336_ + 1 o p_238337_ +bps net/minecraft/world/entity/ai/sensing/GolemSensor + a f_148277_ + c f_148278_ + (I)V + 0 o p_26642_ + ()V + a (Lbfz;)V m_26647_ + static + 0 o p_26648_ + a (Laif;Lbfz;)V m_5578_ + 0 o p_26645_ + 1 o p_26646_ + a ()Ljava/util/Set; m_7163_ + b (Lbfz;)V m_26649_ + static + 0 o p_26650_ + c (Lbfz;)Z m_289119_ + static + 0 o p_289404_ +bpt net/minecraft/world/entity/ai/sensing/HoglinSpecificSensor + ()V + a (Laif;Lbfz;)V m_5578_ + 0 o p_26656_ + 1 o p_26657_ + a (Laif;Lbwy;)V m_5578_ + 0 o p_26659_ + 1 o p_26660_ + a ()Ljava/util/Set; m_7163_ + a (Lbfz;)Z m_186149_ + static + 0 o p_186150_ + a (Laif;Lgu;)Z m_186146_ + static + 0 o p_186147_ + 1 o p_186148_ + b (Laif;Lbwy;)Ljava/util/Optional; m_26664_ + 0 o p_26665_ + 1 o p_26666_ +bpu net/minecraft/world/entity/ai/sensing/HurtBySensor + ()V + a (Laif;Lbfz;)V m_5578_ + 0 o p_26670_ + 1 o p_26671_ + a ()Ljava/util/Set; m_7163_ + a (Laif;Lbha;Lbfz;)V m_289120_ + static + 0 o p_289405_ + 1 o p_289406_ + 2 o p_289407_ +bpv net/minecraft/world/entity/ai/sensing/IsInWaterSensor + ()V + a (Laif;Lbfz;)V m_5578_ + 0 o p_217816_ + 1 o p_217817_ + a ()Ljava/util/Set; m_7163_ +bpw net/minecraft/world/entity/ai/sensing/NearestBedSensor + a f_148279_ + c f_148280_ + d f_148281_ + e f_26676_ + f f_26677_ + g f_26678_ + ()V + a (Lgu;)Z m_26687_ + 0 o p_26688_ + a (Laif;Lbfz;)V m_5578_ + 0 o p_26682_ + 1 o p_26683_ + a (Lit/unimi/dsi/fastutil/longs/Long2LongMap$Entry;)Z m_217820_ + 0 o p_217821_ + a (Laif;Lbgb;)V m_5578_ + 0 o p_26685_ + 1 o p_26686_ + a (Lhe;)Z m_217818_ + static + 0 o p_217819_ + a ()Ljava/util/Set; m_7163_ +bpx net/minecraft/world/entity/ai/sensing/NearestItemSensor + a f_148282_ + c f_148283_ + d f_148284_ + ()V + a (Lbgb;Lbvh;)Z m_26699_ + static + 0 o p_26700_ + 1 o p_26701_ + a (Laif;Lbfz;)V m_5578_ + 0 o p_26694_ + 1 o p_26695_ + a (Laif;Lbgb;)V m_5578_ + 0 o p_26697_ + 1 o p_26698_ + a ()Ljava/util/Set; m_7163_ + a (Lbvh;)Z m_26702_ + static + 0 o p_26703_ + b (Lbgb;Lbvh;)Z m_26704_ + static + 0 o p_26705_ + 1 o p_26706_ +bpy net/minecraft/world/entity/ai/sensing/NearestLivingEntitySensor + ()V + a (Lbfz;Lbfz;)Z m_26715_ + static + 0 o p_26716_ + 1 o p_26717_ + a (Laif;Lbfz;)V m_5578_ + 0 o p_26710_ + 1 o p_26711_ + a ()Ljava/util/Set; m_7163_ + b ()I m_214020_ + c ()I m_214019_ +bpz net/minecraft/world/entity/ai/sensing/NearestVisibleLivingEntitySensor + ()V + a (Lbfz;Lbfz;)Z m_142628_ + 0 o p_148292_ + 1 o p_148293_ + a (Lbfz;)Ljava/util/Optional; m_148290_ + 0 o p_148291_ + a (Laif;Lbfz;)V m_5578_ + 0 o p_148288_ + 1 o p_148289_ + a ()Ljava/util/Set; m_7163_ + a (Lbfz;Lbpd;)Ljava/util/Optional; m_186151_ + 0 o p_186152_ + 1 o p_186153_ + b ()Lbpb; m_142149_ + b (Lbfz;)Ljava/util/Optional; m_148297_ + 0 o p_148298_ + e (Lbfz;Lbfz;)Z m_148299_ + 0 o p_148300_ + 1 o p_148301_ +bq net/minecraft/advancements/critereon/EntityTypePredicate + a f_37636_ + b f_37637_ + ()V + static + ()V + a (Lacq;)Lcom/google/gson/JsonSyntaxException; m_257054_ + static + 0 o p_258101_ + a (Lanl;)Lbq; m_204081_ + static + 0 o p_204082_ + a (Lbfn;)Z m_7484_ + 0 o p_37642_ + a ()Lcom/google/gson/JsonElement; m_5908_ + a (Lcom/google/gson/JsonElement;)Lbq; m_37643_ + static + 0 o p_37644_ + b (Lbfn;)Lbq; m_37647_ + static + 0 o p_37648_ +bq$1 net/minecraft/advancements/critereon/EntityTypePredicate$1 + ()V + a (Lbfn;)Z m_7484_ + 0 o p_37652_ + a ()Lcom/google/gson/JsonElement; m_5908_ +bq$a net/minecraft/advancements/critereon/EntityTypePredicate$TagPredicate + b f_37653_ + (Lanl;)V + 0 o p_204084_ + a (Lbfn;)Z m_7484_ + 0 o p_37658_ + a ()Lcom/google/gson/JsonElement; m_5908_ +bq$b net/minecraft/advancements/critereon/EntityTypePredicate$TypePredicate + b f_37659_ + (Lbfn;)V + 0 o p_37661_ + a (Lbfn;)Z m_7484_ + 0 o p_37664_ + a ()Lcom/google/gson/JsonElement; m_5908_ +bqa net/minecraft/world/entity/ai/sensing/PiglinBruteSpecificSensor + ()V + a (Laif;Lbfz;)V m_5578_ + 0 o p_26721_ + 1 o p_26722_ + a ()Ljava/util/Set; m_7163_ + a (Lbfz;)Z m_186154_ + static + 0 o p_186155_ +bqb net/minecraft/world/entity/ai/sensing/PiglinSpecificSensor + ()V + a (Laif;Lbfz;)V m_5578_ + 0 o p_26726_ + 1 o p_26727_ + a ()Ljava/util/Set; m_7163_ + a (Lbfz;)Z m_186156_ + static + 0 o p_186157_ + a (Laif;Lgu;)Z m_26728_ + static + 0 o p_26729_ + 1 o p_26730_ + b (Laif;Lgu;)Z m_186158_ + static + 0 o p_186159_ + 1 o p_186160_ + c (Laif;Lbfz;)Ljava/util/Optional; m_26734_ + static + 0 o p_26735_ + 1 o p_26736_ +bqc net/minecraft/world/entity/ai/sensing/PlayerSensor + ()V + a (Lbfz;Lbyo;)Z m_148302_ + static + 0 o p_148303_ + 1 o p_148304_ + a (Laif;Lbfz;)V m_5578_ + 0 o p_26740_ + 1 o p_26741_ + a (Lbfz;Laig;)Z m_26742_ + static + 0 o p_26743_ + 1 o p_26744_ + a ()Ljava/util/Set; m_7163_ + b (Lbfz;Lbyo;)Z m_26745_ + static + 0 o p_26746_ + 1 o p_26747_ +bqd net/minecraft/world/entity/ai/sensing/SecondaryPoiSensor + a f_148305_ + ()V + a (Laif;Lbfz;)V m_5578_ + 0 o p_26751_ + 1 o p_26752_ + a ()Ljava/util/Set; m_7163_ + a (Laif;Lbyb;)V m_5578_ + 0 o p_26754_ + 1 o p_26755_ +bqe net/minecraft/world/entity/ai/sensing/Sensing + a f_26784_ + b f_26785_ + c f_26786_ + (Lbgb;)V + 0 o p_26788_ + a ()V m_26789_ + a (Lbfj;)Z m_148306_ + 0 o p_148307_ +bqf net/minecraft/world/entity/ai/sensing/Sensor + a f_26792_ + b f_148308_ + c f_148309_ + d f_26793_ + e f_26794_ + f f_148310_ + g f_148311_ + h f_182375_ + i f_182376_ + j f_26795_ + k f_26796_ + ()V + static + (I)V + 0 o p_26800_ + ()V + a (Laif;Lbfz;)V m_5578_ + 0 o p_26801_ + 1 o p_26802_ + a ()Ljava/util/Set; m_7163_ + b (Laif;Lbfz;)V m_26806_ + 0 o p_26807_ + 1 o p_26808_ + b (Lbfz;Lbfz;)Z m_26803_ + static + 0 o p_26804_ + 1 o p_26805_ + c (Lbfz;Lbfz;)Z m_148312_ + static + 0 o p_148313_ + 1 o p_148314_ + d (Lbfz;Lbfz;)Z m_182377_ + static + 0 o p_182378_ + 1 o p_182379_ +bqg net/minecraft/world/entity/ai/sensing/SensorType + a f_26809_ + b f_26810_ + c f_26811_ + d f_26812_ + e f_26813_ + f f_26814_ + g f_26815_ + h f_26816_ + i f_26817_ + j f_26818_ + k f_26819_ + l f_26820_ + m f_26821_ + n f_26822_ + o f_148315_ + p f_148316_ + q f_148317_ + r f_217822_ + s f_243995_ + t f_217823_ + u f_217824_ + v f_217825_ + w f_278390_ + x f_26823_ + ()V + static + (Ljava/util/function/Supplier;)V + 0 o p_26826_ + a ()Lbqf; m_26827_ + a (Ljava/lang/String;Ljava/util/function/Supplier;)Lbqg; m_26828_ + static + 0 o p_26829_ + 1 o p_26830_ + b ()Lbqh; m_278567_ + static + c ()Lbqh; m_244936_ + static + d ()Lbqh; m_217826_ + static + e ()Lbqh; m_148318_ + static + f ()Lbqh; m_148319_ + static +bqh net/minecraft/world/entity/ai/sensing/TemptingSensor + a f_148320_ + c f_148321_ + d f_148322_ + ()V + static + (Lciz;)V + 0 o p_148325_ + a (Lcfz;)Z m_148338_ + 0 o p_148339_ + a (Laif;Lbfz;)V m_5578_ + 0 o p_148328_ + 1 o p_148329_ + a (Lbyo;)Z m_148336_ + 0 o p_148337_ + a ()Ljava/util/Set; m_7163_ + a (Lbgi;Laig;)Z m_263996_ + static + 0 o p_264963_ + 1 o p_264964_ + a (Laif;Lbgi;)V m_5578_ + 0 o p_148331_ + 1 o p_148332_ + b (Lbgi;Laig;)Z m_148333_ + static + 0 o p_148334_ + 1 o p_148335_ + c (Lbgi;Laig;)Z m_148340_ + static + 0 o p_148341_ + 1 o p_148342_ +bqi net/minecraft/world/entity/ai/sensing/VillagerBabiesSensor + ()V + a (Lbfz;)Ljava/util/List; m_26836_ + 0 o p_26837_ + a (Laif;Lbfz;)V m_5578_ + 0 o p_26834_ + 1 o p_26835_ + a ()Ljava/util/Set; m_7163_ + b (Lbfz;)Z m_26838_ + 0 o p_26839_ + c (Lbfz;)Lbpd; m_186203_ + 0 o p_186204_ +bqj net/minecraft/world/entity/ai/sensing/VillagerHostilesSensor + a f_26842_ + ()V + static + ()V + a (Lbfz;Lbfz;)Z m_142628_ + 0 o p_148344_ + 1 o p_148345_ + b ()Lbpb; m_142149_ + b (Lbfz;)Z m_26867_ + 0 o p_26868_ + e (Lbfz;Lbfz;)Z m_26860_ + 0 o p_26861_ + 1 o p_26862_ +bqk net/minecraft/world/entity/ai/sensing/WardenEntitySensor + ()V + a (Lbxs;Ljava/util/function/Predicate;)Ljava/util/Optional; m_217842_ + static + 0 o p_217843_ + 1 o p_217844_ + a (Laif;Lbxs;)V m_5578_ + 0 o p_217833_ + 1 o p_217834_ + a (Lbxs;)V m_217837_ + static + 0 o p_217838_ + a (Laif;Lbfz;)V m_5578_ + 0 o p_217830_ + 1 o p_217831_ + a ()Ljava/util/Set; m_7163_ + a (Lbfz;)Z m_289121_ + static + 0 o p_289408_ + a (Lbxs;Lbfz;)V m_217839_ + static + 0 o p_217840_ + 1 o p_217841_ + b (Lbfz;)Z m_289122_ + static + 0 o p_289409_ + b ()I m_214020_ + b (Lbxs;)Ljava/util/Optional; m_217848_ + static + 0 o p_217849_ + c ()I m_214019_ +bql net/minecraft/world/entity/ai/sensing/package-info +bqm net/minecraft/world/entity/ai/targeting/TargetingConditions + a f_26872_ + b f_148347_ + c f_148348_ + d f_26873_ + e f_148349_ + f f_26878_ + g f_26879_ + ()V + static + (Z)V + 0 o p_148351_ + a (Lbfz;Lbfz;)Z m_26885_ + 0 o p_26886_ + 1 o p_26887_ + a (D)Lbqm; m_26883_ + 0 o p_26884_ + a (Ljava/util/function/Predicate;)Lbqm; m_26888_ + 0 o p_26889_ + a ()Lbqm; m_148352_ + static + b ()Lbqm; m_148353_ + static + c ()Lbqm; m_148354_ + d ()Lbqm; m_148355_ + e ()Lbqm; m_26893_ +bqn net/minecraft/world/entity/ai/targeting/package-info +bqo net/minecraft/world/entity/ai/util/AirAndWaterRandomPos + ()V + a (Lbgi;Lgu;)Z m_148374_ + static + 0 o p_148375_ + 1 o p_148376_ + a (Lbgi;IIIDDD)Leei; m_148357_ + static + 0 o p_148358_ + 1 o p_148359_ + 2 o p_148360_ + 3 o p_148361_ + 4 o p_148362_ + 5 o p_148363_ + 6 o p_148364_ + a (Lbgi;IIIDDDZ)Lgu; m_148365_ + static + 0 o p_148366_ + 1 o p_148367_ + 2 o p_148368_ + 3 o p_148369_ + 4 o p_148370_ + 5 o p_148371_ + 6 o p_148372_ + 7 o p_148373_ + b (Lbgi;IIIDDDZ)Lgu; m_148377_ + static + 0 o p_148378_ + 1 o p_148379_ + 2 o p_148380_ + 3 o p_148381_ + 4 o p_148382_ + 5 o p_148383_ + 6 o p_148384_ + 7 o p_148385_ +bqp net/minecraft/world/entity/ai/util/AirRandomPos + ()V + a (Lbgi;IIILeei;DZ)Lgu; m_148394_ + static + 0 o p_148395_ + 1 o p_148396_ + 2 o p_148397_ + 3 o p_148398_ + 4 o p_148399_ + 5 o p_148400_ + 6 o p_148401_ + a (Lbgi;IIILeei;D)Leei; m_148387_ + static + 0 o p_148388_ + 1 o p_148389_ + 2 o p_148390_ + 3 o p_148391_ + 4 o p_148392_ + 5 o p_148393_ +bqq net/minecraft/world/entity/ai/util/DefaultRandomPos + ()V + a (Lbgi;IILeei;)Leei; m_148407_ + static + 0 o p_148408_ + 1 o p_148409_ + 2 o p_148410_ + 3 o p_148411_ + a (Lbgi;IZLgu;)Lgu; m_148436_ + static + 0 o p_148437_ + 1 o p_148438_ + 2 o p_148439_ + 3 o p_148440_ + a (Lbgi;II)Leei; m_148403_ + static + 0 o p_148404_ + 1 o p_148405_ + 2 o p_148406_ + a (Lbgi;IILeei;D)Leei; m_148412_ + static + 0 o p_148413_ + 1 o p_148414_ + 2 o p_148415_ + 3 o p_148416_ + 4 o p_148417_ + a (Lbgi;IILeei;DZ)Lgu; m_289125_ + static + 0 o p_289419_ + 1 o p_289420_ + 2 o p_289421_ + 3 o p_289422_ + 4 o p_289423_ + 5 o p_289424_ + a (Lbgi;IIZ)Lgu; m_289124_ + static + 0 o p_289415_ + 1 o p_289416_ + 2 o p_289417_ + 3 o p_289418_ + a (Lbgi;IILeei;Z)Lgu; m_289123_ + static + 0 o p_289410_ + 1 o p_289411_ + 2 o p_289412_ + 3 o p_289413_ + 4 o p_289414_ +bqr net/minecraft/world/entity/ai/util/GoalUtils + ()V + a (Lbgi;Lgu;)Z m_148445_ + static + 0 o p_148446_ + 1 o p_148447_ + a (Lbgi;I)Z m_148442_ + static + 0 o p_148443_ + 1 o p_148444_ + a (Lgu;Lbgi;)Z m_148451_ + static + 0 o p_148452_ + 1 o p_148453_ + a (ZLbgi;Lgu;)Z m_148454_ + static + 0 o p_148455_ + 1 o p_148456_ + 2 o p_148457_ + a (Lbgb;)Z m_26894_ + static + 0 o p_26895_ + a (Lbpj;Lgu;)Z m_148448_ + static + 0 o p_148449_ + 1 o p_148450_ + b (Lbgi;Lgu;)Z m_148458_ + static + 0 o p_148459_ + 1 o p_148460_ + c (Lbgi;Lgu;)Z m_148461_ + static + 0 o p_148462_ + 1 o p_148463_ +bqs net/minecraft/world/entity/ai/util/HoverRandomPos + ()V + a (Lbgi;Lgu;)Z m_148484_ + static + 0 o p_148485_ + 1 o p_148486_ + a (Lbgi;IIDDFZII)Lgu; m_148474_ + static + 0 o p_148475_ + 1 o p_148476_ + 2 o p_148477_ + 3 o p_148478_ + 4 o p_148479_ + 5 o p_148480_ + 6 o p_148481_ + 7 o p_148482_ + 8 o p_148483_ + a (Lbgi;IIDDFII)Leei; m_148465_ + static + 0 o p_148466_ + 1 o p_148467_ + 2 o p_148468_ + 3 o p_148469_ + 4 o p_148470_ + 5 o p_148471_ + 6 o p_148472_ + 7 o p_148473_ +bqt net/minecraft/world/entity/ai/util/LandRandomPos + ()V + a (Lbgi;IILeei;)Leei; m_148492_ + static + 0 o p_148493_ + 1 o p_148494_ + 2 o p_148495_ + 3 o p_148496_ + a (Lbgi;IZLgu;)Lgu; m_148513_ + static + 0 o p_148514_ + 1 o p_148515_ + 2 o p_148516_ + 3 o p_148517_ + a (Lbgi;Lgu;)Lgu; m_148518_ + static + 0 o p_148519_ + 1 o p_148520_ + a (Lbgi;IILjava/util/function/ToDoubleFunction;)Leei; m_148503_ + static + 0 o p_148504_ + 1 o p_148505_ + 2 o p_148506_ + 3 o p_148507_ + a (Lbgi;II)Leei; m_148488_ + static + 0 o p_148489_ + 1 o p_148490_ + 2 o p_148491_ + a (Lbgi;IIZ)Lgu; m_289126_ + static + 0 o p_289425_ + 1 o p_289426_ + 2 o p_289427_ + 3 o p_289428_ + a (Lbgi;IILeei;Z)Leei; m_148497_ + static + 0 o p_148498_ + 1 o p_148499_ + 2 o p_148500_ + 3 o p_148501_ + 4 o p_148502_ + b (Lbgi;Lgu;)Z m_148532_ + static + 0 o p_148533_ + 1 o p_148534_ + b (Lbgi;IILeei;)Leei; m_148521_ + static + 0 o p_148522_ + 1 o p_148523_ + 2 o p_148524_ + 3 o p_148525_ + b (Lbgi;IILeei;Z)Lgu; m_289127_ + static + 0 o p_289429_ + 1 o p_289430_ + 2 o p_289431_ + 3 o p_289432_ + 4 o p_289433_ +bqu net/minecraft/world/entity/ai/util/RandomPos + a f_148535_ + ()V + a (Lapf;II)Lgu; m_217851_ + static + 0 o p_217852_ + 1 o p_217853_ + 2 o p_217854_ + a (Lgu;ILjava/util/function/Predicate;)Lgu; m_148545_ + static + 0 o p_148546_ + 1 o p_148547_ + 2 o p_148548_ + a (Lapf;IIIDDD)Lgu; m_217855_ + static + 0 o p_217856_ + 1 o p_217857_ + 2 o p_217858_ + 3 o p_217859_ + 4 o p_217860_ + 5 o p_217861_ + 6 o p_217862_ + a (Lbgi;Ljava/util/function/Supplier;)Leei; m_148542_ + static + 0 o p_148543_ + 1 o p_148544_ + a (Lbgi;ILapf;Lgu;)Lgu; m_217863_ + static + 0 o p_217864_ + 1 o p_217865_ + 2 o p_217866_ + 3 o p_217867_ + a (Lgu;IILjava/util/function/Predicate;)Lgu; m_26947_ + static + 0 o p_26948_ + 1 o p_26949_ + 2 o p_26950_ + 3 o p_26951_ + a (Ljava/util/function/Supplier;Ljava/util/function/ToDoubleFunction;)Leei; m_148561_ + static + 0 o p_148562_ + 1 o p_148563_ +bqv net/minecraft/world/entity/ai/util/package-info +bqw net/minecraft/world/entity/ai/village/ReputationEventType + a f_26985_ + b f_26986_ + c f_26987_ + d f_26988_ + e f_26989_ + ()V + static + a (Ljava/lang/String;)Lbqw; m_26991_ + static + 0 o p_26992_ +bqw$1 net/minecraft/world/entity/ai/village/ReputationEventType$1 + f f_26993_ + (Ljava/lang/String;)V + 0 o p_26995_ + toString ()Ljava/lang/String; toString +bqx net/minecraft/world/entity/ai/village/VillageSiege + a f_26997_ + b f_26998_ + c f_26999_ + d f_27000_ + e f_27001_ + f f_27002_ + g f_27003_ + h f_27004_ + ()V + static + ()V + a (Laif;)Z m_27007_ + 0 o p_27008_ + a (Laif;ZZ)I m_7995_ + 0 o p_27013_ + 1 o p_27014_ + 2 o p_27015_ + a (Laif;Lgu;)Leei; m_27009_ + 0 o p_27010_ + 1 o p_27011_ + b (Laif;)V m_27016_ + 0 o p_27017_ +bqx$a net/minecraft/world/entity/ai/village/VillageSiege$State + a SIEGE_CAN_ACTIVATE + b SIEGE_TONIGHT + c SIEGE_DONE + d $VALUES + ()V + static + (Ljava/lang/String;I)V + 0 o p_27024_ + 1 o p_27025_ + a ()[Lbqx$a; m_148564_ + static + valueOf (Ljava/lang/String;)Lbqx$a; valueOf + static + 0 o p_27027_ + values ()[Lbqx$a; values + static +bqy net/minecraft/world/entity/ai/village/package-info +bqz net/minecraft/world/entity/ai/village/poi/PoiManager + a f_148565_ + b f_148566_ + d f_27029_ + e f_27030_ + (Ljava/nio/file/Path;Lcom/mojang/datafixers/DataFixer;ZLhs;Lcmo;)V + 0 o p_217869_ + 1 o p_217870_ + 2 o p_217871_ + 3 o p_217872_ + 4 o p_217873_ + a (Ljava/util/function/Predicate;Ljava/util/function/Predicate;Lbqz$b;Lgu;ILapf;)Ljava/util/Optional; m_217951_ + 0 o p_217952_ + 1 o p_217953_ + 2 o p_217954_ + 3 o p_217955_ + 4 o p_217956_ + 5 o p_217957_ + a (Lgu;Lbrb;)Ljava/lang/Integer; m_217910_ + static + 0 o p_217911_ + 1 o p_217912_ + a (Lgu;Lgu;)D m_217916_ + static + 0 o p_217917_ + 1 o p_217918_ + a (Ldej;Ljava/util/function/BiConsumer;Lgu;)V m_217899_ + static + 0 o p_217900_ + 1 o p_217901_ + 2 o p_217902_ + a (Ljava/util/function/Predicate;Lclt;Lbqz$b;)Ljava/util/stream/Stream; m_27117_ + 0 o p_27118_ + 1 o p_27119_ + 2 o p_27120_ + a (Ljava/util/function/Predicate;Ljava/util/function/BiPredicate;Lgu;I)Ljava/util/Optional; m_217946_ + 0 o p_217947_ + 1 o p_217948_ + 2 o p_217949_ + 3 o p_217950_ + a (Ljava/util/function/Predicate;Lbqz$b;Lclt;)Ljava/util/stream/Stream; m_217935_ + 0 o p_217936_ + 1 o p_217937_ + 2 o p_217938_ + a (Ljava/util/function/Predicate;Lbqz$b;Ljava/util/Optional;)Ljava/util/stream/Stream; m_217939_ + static + 0 o p_217940_ + 1 o p_217941_ + 2 o p_217942_ + a (Ljava/util/function/BiConsumer;Lgu;Lhe;)V m_217928_ + static + 0 o p_217929_ + 1 o p_217930_ + 2 o p_217931_ + a (Lbra;)Lgu; m_217880_ + static + 0 o p_217881_ + a (Lclt;Ljava/lang/Integer;)Ljava/util/Optional; m_217884_ + 0 o p_217885_ + 1 o p_217886_ + a (Ldej;Lhx;Ljava/util/function/BiConsumer;)V m_27069_ + 0 o p_27070_ + 1 o p_27071_ + 2 o p_27072_ + a (Lgu;Lbra;)D m_217907_ + static + 0 o p_217908_ + 1 o p_217909_ + a (Lgu;)V m_27079_ + 0 o p_27080_ + a (Ldej;Lhx;)V m_217892_ + 0 o p_217893_ + 1 o p_217894_ + a (Lgu;Ljava/util/function/Predicate;)Z m_27091_ + 0 o p_27092_ + 1 o p_27093_ + a (Ljava/util/function/BooleanSupplier;)V m_6202_ + 0 o p_27105_ + a (Lacp;Lgu;)Z m_217874_ + 0 o p_217875_ + 1 o p_217876_ + a (J)V m_5838_ + 0 o p_27036_ + a (Lhx;Ldej;)V m_280570_ + 0 o p_281731_ + 1 o p_281893_ + a (Ljava/util/function/BiPredicate;Lbra;)Z m_217932_ + static + 0 o p_217933_ + 1 o p_217934_ + a (Ljava/util/function/Predicate;Lgu;ILbqz$b;)J m_27121_ + 0 o p_27122_ + 1 o p_27123_ + 2 o p_27124_ + 3 o p_27125_ + a (Lcmp;Lgu;I)V m_27056_ + 0 o p_27057_ + 1 o p_27058_ + 2 o p_27059_ + a (Ldej;Lhx;Lbrb;)V m_217895_ + 0 o p_217896_ + 1 o p_217897_ + 2 o p_217898_ + a (Lgu;Ljava/util/function/Predicate;Lbrb;)Ljava/lang/Boolean; m_217922_ + static + 0 o p_217923_ + 1 o p_217924_ + 2 o p_217925_ + a (Lacp;Lhe;)Z m_217877_ + static + 0 o p_217878_ + 1 o p_217879_ + a (Ljava/util/function/Predicate;Lbra;)Z m_217943_ + static + 0 o p_217944_ + 1 o p_217945_ + a (Lbrb;)Ljava/lang/Boolean; m_217882_ + static + 0 o p_217883_ + a (Lgu;Lcom/mojang/datafixers/util/Pair;)D m_217913_ + static + 0 o p_217914_ + 1 o p_217915_ + a (Lhe;)Z m_217926_ + static + 0 o p_217927_ + a (Lhx;)I m_27098_ + 0 o p_27099_ + a (Lgu;ILbra;)Z m_217903_ + static + 0 o p_217904_ + 1 o p_217905_ + 2 o p_217906_ + a (Ldej;)Z m_27060_ + static + 0 o p_27061_ + a (Lcmp;Lclt;)V m_217887_ + static + 0 o p_217888_ + 1 o p_217889_ + a (Lcom/mojang/datafixers/util/Pair;)Lclt; m_217890_ + static + 0 o p_217891_ + a (Lgu;Lhe;)V m_217919_ + 0 o p_217920_ + 1 o p_217921_ + a (Ljava/util/function/Predicate;Ljava/util/function/Predicate;Lgu;ILbqz$b;)Ljava/util/stream/Stream; m_27138_ + 0 o p_27139_ + 1 o p_27140_ + 2 o p_27141_ + 3 o p_27142_ + 4 o p_27143_ + b (Lclt;)Z m_217960_ + 0 o p_217961_ + b (Ljava/util/function/Predicate;Lbra;)Z m_217980_ + static + 0 o p_217981_ + 1 o p_217982_ + b (J)V m_5839_ + 0 o p_27145_ + b (Lbra;)Lcom/mojang/datafixers/util/Pair; m_217958_ + static + 0 o p_217959_ + b (Ljava/util/function/Predicate;Lgu;ILbqz$b;)Ljava/util/stream/Stream; m_27166_ + 0 o p_27167_ + 1 o p_27168_ + 2 o p_27169_ + 3 o p_27170_ + b (Lgu;Lgu;)D m_217975_ + static + 0 o p_217976_ + 1 o p_217977_ + b (Ljava/util/function/Predicate;Ljava/util/function/Predicate;Lgu;ILbqz$b;)Ljava/util/stream/Stream; m_217983_ + 0 o p_217984_ + 1 o p_217985_ + 2 o p_217986_ + 3 o p_217987_ + 4 o p_217988_ + b (Lgu;)Z m_27154_ + 0 o p_27155_ + b (Lgu;ILbra;)Z m_217968_ + static + 0 o p_217969_ + 1 o p_217970_ + 2 o p_217971_ + b (Lhx;)Lcom/mojang/datafixers/util/Pair; m_217978_ + 0 o p_217979_ + b (Ldej;Lhx;Ljava/util/function/BiConsumer;)V m_217964_ + 0 o p_217965_ + 1 o p_217966_ + 2 o p_217967_ + b (Lgu;Lbrb;)Ljava/util/Optional; m_217972_ + static + 0 o p_217973_ + 1 o p_217974_ + b (Lcom/mojang/datafixers/util/Pair;)Z m_217962_ + static + 0 o p_217963_ + c (Lgu;Lbrb;)Ljava/lang/Boolean; m_217991_ + static + 0 o p_217992_ + 1 o p_217993_ + c (Ljava/util/function/Predicate;Lgu;ILbqz$b;)Ljava/util/stream/Stream; m_27181_ + 0 o p_27182_ + 1 o p_27183_ + 2 o p_27184_ + 3 o p_27185_ + c (Lgu;)Ljava/util/Optional; m_27177_ + 0 o p_27178_ + c (Lbra;)Lcom/mojang/datafixers/util/Pair; m_217989_ + static + 0 o p_217990_ + c (Ljava/util/function/Predicate;Ljava/util/function/Predicate;Lgu;ILbqz$b;)Ljava/util/stream/Stream; m_217994_ + 0 o p_217995_ + 1 o p_217996_ + 2 o p_217997_ + 3 o p_217998_ + 4 o p_217999_ + d (Lgu;)I m_148653_ + 0 o p_148654_ + d (Lgu;Lbrb;)V m_148655_ + static + 0 o p_148656_ + 1 o p_148657_ + d (Ljava/util/function/Predicate;Lgu;ILbqz$b;)Ljava/util/Optional; m_27192_ + 0 o p_27193_ + 1 o p_27194_ + 2 o p_27195_ + 3 o p_27196_ + d (Ljava/util/function/Predicate;Ljava/util/function/Predicate;Lgu;ILbqz$b;)Ljava/util/Optional; m_27186_ + 0 o p_27187_ + 1 o p_27188_ + 2 o p_27189_ + 3 o p_27190_ + 4 o p_27191_ + e (Ljava/util/function/Predicate;Lgu;ILbqz$b;)Ljava/util/Optional; m_218002_ + 0 o p_218003_ + 1 o p_218004_ + 2 o p_218005_ + 3 o p_218006_ + e (Ljava/util/function/Predicate;Ljava/util/function/Predicate;Lgu;ILbqz$b;)Ljava/util/Optional; m_148658_ + 0 o p_148659_ + 1 o p_148660_ + 2 o p_148661_ + 3 o p_148662_ + 4 o p_148663_ + e (Lgu;)Ljava/lang/IllegalStateException; m_218000_ + static + 0 o p_218001_ + g (J)Z m_27197_ + 0 o p_27198_ +bqz$a net/minecraft/world/entity/ai/village/poi/PoiManager$DistanceTracker + a f_27199_ + b f_27200_ + (Lbqz;)V + 0 o p_27202_ + a ()V m_27203_ + a (JI)V m_7351_ + 0 o p_27205_ + 1 o p_27206_ + b (J)I m_7409_ + 0 o p_27208_ + c (J)I m_6172_ + 0 o p_27210_ +bqz$b net/minecraft/world/entity/ai/village/poi/PoiManager$Occupancy + a HAS_SPACE + b IS_OCCUPIED + c ANY + d f_27214_ + e $VALUES + ()V + static + (Ljava/lang/String;ILjava/util/function/Predicate;)V + 0 o p_27218_ + 1 o p_27219_ + 2 o p_27220_ + a ()Ljava/util/function/Predicate; m_27221_ + a (Lbra;)Z m_27222_ + static + 0 o p_27223_ + b ()[Lbqz$b; m_148666_ + static + valueOf (Ljava/lang/String;)Lbqz$b; valueOf + static + 0 o p_27225_ + values ()[Lbqz$b; values + static +br net/minecraft/advancements/critereon/EntityVariantPredicate + a f_219082_ + b f_262213_ + c f_219084_ + d f_219085_ + (Lcom/mojang/serialization/Codec;Ljava/util/function/Function;)V + 0 o p_262574_ + 1 o p_262610_ + a (Lcom/mojang/serialization/Codec;Ljava/util/function/Function;)Lbr; m_262478_ + static + 0 o p_262671_ + 1 o p_262652_ + a (Lhr;Ljava/util/function/Function;)Lbr; m_219093_ + static + 0 o p_219094_ + 1 o p_219095_ + a ()Lbp$a; m_219089_ + a (Lcom/mojang/serialization/Codec;Lcom/google/gson/JsonObject;)Lbp; m_262336_ + 0 o p_262518_ + 1 o p_262519_ + a (Ljava/lang/Object;)Lbp; m_219096_ + 0 o p_219097_ +br$1 net/minecraft/advancements/critereon/EntityVariantPredicate$1 + b f_219098_ + c f_219099_ + (Lbr;Ljava/lang/Object;)V + 0 o p_219101_ + 1 o p_219102_ + a ()Lcom/google/gson/JsonObject; m_213616_ + a (Ljava/lang/Object;Ljava/lang/Object;)Z m_219108_ + static + 0 o p_219109_ + 1 o p_219110_ + a (Lbfj;Laif;Leei;)Z m_153246_ + 0 o p_219105_ + 1 o p_219106_ + 2 o p_219107_ + a (Ljava/lang/Object;Ljava/lang/String;)Lcom/google/gson/JsonParseException; m_262337_ + static + 0 o p_262520_ + 1 o p_262521_ + c ()Lbp$a; m_213836_ +bra net/minecraft/world/entity/ai/village/poi/PoiRecord + a f_27227_ + b f_27228_ + c f_27229_ + d f_27230_ + (Lgu;Lhe;ILjava/lang/Runnable;)V + 0 o p_218008_ + 1 o p_218009_ + 2 o p_218010_ + 3 o p_218011_ + (Lgu;Lhe;Ljava/lang/Runnable;)V + 0 o p_218013_ + 1 o p_218014_ + 2 o p_218015_ + a (Ljava/lang/Runnable;Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; m_257311_ + static + 0 o p_258947_ + 1 o p_258948_ + a ()I m_148667_ + a (Lbra;)Ljava/lang/Integer; m_148668_ + static + 0 o p_148669_ + a (Ljava/lang/Runnable;)Lcom/mojang/serialization/Codec; m_27242_ + static + 0 o p_27243_ + b (Lbra;)Lhe; m_218016_ + static + 0 o p_218017_ + b ()Z m_27247_ + c ()Z m_27250_ + c (Lbra;)Lgu; m_148672_ + static + 0 o p_148673_ + d ()Z m_27253_ + e ()Z m_27254_ + equals (Ljava/lang/Object;)Z equals + 0 o p_27256_ + f ()Lgu; m_27257_ + g ()Lhe; m_218018_ + hashCode ()I hashCode +brb net/minecraft/world/entity/ai/village/poi/PoiSection + a f_27260_ + b f_27261_ + c f_27262_ + d f_27263_ + e f_27264_ + ()V + static + (Ljava/lang/Runnable;ZLjava/util/List;)V + 0 o p_27269_ + 1 o p_27270_ + 2 o p_27271_ + (Ljava/lang/Runnable;)V + 0 o p_27267_ + a (Lbra;)Z m_27273_ + 0 o p_27274_ + a (Ljava/lang/Runnable;Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; m_27297_ + static + 0 o p_27298_ + 1 o p_27299_ + a (Ljava/util/function/Predicate;Lbqz$b;)Ljava/util/stream/Stream; m_27304_ + 0 o p_27305_ + 1 o p_27306_ + a (Ljava/util/Map$Entry;)Ljava/util/stream/Stream; m_27300_ + static + 0 o p_27301_ + a (Lbrb;)Ljava/util/List; m_148674_ + static + 0 o p_148675_ + a ()Z m_27272_ + a (Lgu;Lhe;S)Lbra; m_218024_ + 0 o p_218025_ + 1 o p_218026_ + 2 o p_218027_ + a (Ljava/lang/Runnable;)Lcom/mojang/serialization/Codec; m_27295_ + static + 0 o p_27296_ + a (Lacp;)Ljava/lang/String; m_218019_ + static + 0 o p_218020_ + a (Lit/unimi/dsi/fastutil/shorts/Short2ObjectMap;Lgu;Lhe;)V m_218030_ + 0 o p_218031_ + 1 o p_218032_ + 2 o p_218033_ + a (Ljava/util/function/Predicate;Ljava/util/Map$Entry;)Z m_27307_ + static + 0 o p_27308_ + 1 o p_27309_ + a (Ljava/util/function/Consumer;)V m_27302_ + 0 o p_27303_ + a (Lhe;)Ljava/util/Set; m_218028_ + static + 0 o p_218029_ + a (Lgu;)V m_27279_ + 0 o p_27280_ + a (Lgu;Lhe;)V m_218021_ + 0 o p_218022_ + 1 o p_218023_ + a (Lgu;Ljava/util/function/Predicate;)Z m_27288_ + 0 o p_27289_ + 1 o p_27290_ + b (Ljava/lang/Runnable;)Lbrb; m_27315_ + static + 0 o p_27316_ + b (Lbrb;)Ljava/lang/Boolean; m_148680_ + static + 0 o p_148681_ + b (Lgu;)I m_148682_ + 0 o p_148683_ + b ()V m_27310_ + c (Lgu;)Z m_27317_ + 0 o p_27318_ + d (Lgu;)Ljava/util/Optional; m_27319_ + 0 o p_27320_ + e (Lgu;)Ljava/util/Optional; m_148684_ + 0 o p_148685_ +brc net/minecraft/world/entity/ai/village/poi/PoiType + a f_218034_ + b f_27325_ + c f_27326_ + d f_27328_ + ()V + static + (Ljava/util/Set;II)V + 0 o f_27325_ + 1 o f_27326_ + 2 o f_27328_ + a (Ldcb;)Z m_148692_ + 0 o p_148693_ + a (Lhe;)Z m_218040_ + static + 0 o p_218041_ + a ()Ljava/util/Set; f_27325_ + b ()I f_27326_ + c ()I f_27328_ + equals (Ljava/lang/Object;)Z equals + 0 o p_218045_ + hashCode ()I hashCode + toString ()Ljava/lang/String; toString +brd net/minecraft/world/entity/ai/village/poi/PoiTypes + a f_218047_ + b f_218048_ + c f_218049_ + d f_218050_ + e f_218051_ + f f_218052_ + g f_218053_ + h f_218054_ + i f_218055_ + j f_218056_ + k f_218057_ + l f_218058_ + m f_218059_ + n f_218060_ + o f_218061_ + p f_218062_ + q f_218063_ + r f_218064_ + s f_218065_ + t f_218066_ + u f_218068_ + v f_218069_ + w f_218070_ + ()V + static + ()V + a (Lhr;Lacp;Ljava/util/Set;II)Lbrc; m_218084_ + static + 0 o p_218085_ + 1 o p_218086_ + 2 o p_218087_ + 3 o p_218088_ + 4 o p_218089_ + a (Lcpn;)Ljava/util/Set; m_218073_ + static + 0 o p_218074_ + a (Ljava/lang/String;)Lacp; m_218090_ + static + 0 o p_218091_ + a (Lhe;Ljava/util/Set;)V m_246216_ + static + 0 o p_250815_ + 1 o p_250679_ + a (Ldcb;)Ljava/util/Optional; m_218075_ + static + 0 o p_218076_ + a (Lhr;)Lbrc; m_218082_ + static + 0 o p_218083_ + a (Lhe;Ldcb;)V m_241760_ + static + 0 o p_242144_ + 1 o p_218081_ + b (Lcpn;)Ljava/util/stream/Stream; m_218092_ + static + 0 o p_218093_ + b (Ldcb;)Z m_252831_ + static + 0 o p_254440_ + c (Lcpn;)Ljava/util/stream/Stream; m_218096_ + static + 0 o p_218097_ + c (Ldcb;)Z m_218094_ + static + 0 o p_218095_ +bre net/minecraft/world/entity/ai/village/poi/package-info +brf net/minecraft/world/entity/ambient/AmbientCreature + (Lbfn;Lcmm;)V + 0 o p_27403_ + 1 o p_27404_ + a (Lbyo;)Z m_6573_ + 0 o p_27406_ +brg net/minecraft/world/entity/ambient/Bat + b f_148698_ + bS f_27408_ + bT f_27409_ + c f_148699_ + d f_27407_ + e f_148700_ + ()V + static + (Lbfn;Lcmm;)V + 0 o p_27412_ + 1 o p_27413_ + A (Lbfj;)V m_7324_ + 0 o p_27415_ + W ()V m_8024_ + a (Lqr;)V m_7378_ + 0 o p_27427_ + a (Lben;F)Z m_6469_ + 0 o p_27424_ + 1 o p_27425_ + a (DZLdcb;Lgu;)V m_7840_ + 0 o p_27419_ + 1 o p_27420_ + 2 o p_27421_ + 3 o p_27422_ + aP ()Z m_142039_ + aS ()Lbfj$b; m_142319_ + a_ ()V m_8097_ + b (Lqr;)V m_7380_ + 0 o p_27443_ + b (Lbfn;Lcmn;Lbgd;Lgu;Lapf;)Z m_218098_ + static + 0 o p_218099_ + 1 o p_218100_ + 2 o p_218101_ + 3 o p_218102_ + 4 o p_218103_ + b (Lbgl;Lbfk;)F m_6431_ + 0 o p_27440_ + 1 o p_27441_ + bp ()Z m_6094_ + c_ ()Z m_6090_ + d (Lben;)Lamg; m_7975_ + 0 o p_27451_ + eR ()F m_6121_ + eS ()F m_6100_ + fd ()V m_6138_ + g_ ()Lamg; m_5592_ + l ()V m_8119_ + q ()Lbhf$a; m_27455_ + static + r ()Z m_27452_ + s ()Lamg; m_7515_ + w ()Z m_27453_ + static + w (Z)V m_27456_ + 0 o p_27457_ +brh net/minecraft/world/entity/ambient/package-info +bri net/minecraft/world/entity/animal/AbstractFish + b f_27458_ + ()V + static + (Lbfn;Lcmm;)V + 0 o p_27461_ + 1 o p_27462_ + T ()Z m_8023_ + a (Lqr;)V m_7378_ + 0 o p_27465_ + aJ ()Lamg; m_5501_ + a_ ()V m_8097_ + b (Lbyo;Lbdw;)Lbdx; m_6071_ + 0 o p_27477_ + 1 o p_27478_ + b (Lqr;)V m_7380_ + 0 o p_27485_ + b (Lgu;Ldcb;)V m_7355_ + 0 o p_27482_ + 1 o p_27483_ + b (Lcmm;)Lbpj; m_6037_ + 0 o p_27480_ + b (Lbgl;Lbfk;)F m_6431_ + 0 o p_27474_ + 1 o p_27475_ + b_ ()V m_8107_ + c (Lqr;)V m_142278_ + 0 o p_148708_ + fE ()I m_5792_ + fY ()Z m_6004_ + fZ ()Lamg; m_5699_ + h (Leei;)V m_7023_ + 0 o p_27490_ + h (D)Z m_6785_ + 0 o p_27492_ + l (Lcfz;)V m_6872_ + 0 o p_27494_ + q ()Lbhf$a; m_27495_ + static + r ()Z m_27487_ + w ()Lamg; m_142623_ + w (Z)V m_27497_ + 0 o p_27498_ + x ()V m_8099_ +bri$a net/minecraft/world/entity/animal/AbstractFish$FishMoveControl + l f_27499_ + (Lbri;)V + 0 o p_27501_ + a ()V m_8126_ +bri$b net/minecraft/world/entity/animal/AbstractFish$FishSwimGoal + i f_27503_ + (Lbri;)V + 0 o p_27505_ + a ()Z m_8036_ +brj net/minecraft/world/entity/animal/AbstractGolem + (Lbfn;Lcmm;)V + 0 o p_27508_ + 1 o p_27509_ + M ()I m_8100_ + d (Lben;)Lamg; m_7975_ + 0 o p_27517_ + g_ ()Lamg; m_5592_ + h (D)Z m_6785_ + 0 o p_27519_ + s ()Lamg; m_7515_ +brk net/minecraft/world/entity/animal/AbstractSchoolingFish + b f_27520_ + c f_27521_ + (Lbfn;Lcmm;)V + 0 o p_27523_ + 1 o p_27524_ + a (Lbrk;)Lbrk; m_27525_ + 0 o p_27526_ + a (Lcnb;Lbdv;Lbgd;Lbgt;Lqr;)Lbgt; m_6518_ + 0 o p_27528_ + 1 o p_27529_ + 2 o p_27530_ + 3 o p_27531_ + 4 o p_27532_ + a (Ljava/util/stream/Stream;)V m_27533_ + 0 o p_27534_ + b (Lbrk;)V m_27535_ + 0 o p_27536_ + c (Lbrk;)Z m_27537_ + 0 o p_27538_ + fE ()I m_5792_ + fY ()Z m_6004_ + ga ()I m_6031_ + gb ()Z m_27540_ + gc ()V m_27541_ + gd ()Z m_27542_ + ge ()Z m_27543_ + gf ()Z m_27544_ + gg ()V m_27545_ + gh ()V m_27546_ + gi ()V m_27547_ + l ()V m_8119_ + x ()V m_8099_ +brk$a net/minecraft/world/entity/animal/AbstractSchoolingFish$SchoolSpawnGroupData + a f_27551_ + (Lbrk;)V + 0 o p_27553_ +brl net/minecraft/world/entity/animal/Animal + bT f_27554_ + bU f_27555_ + bV f_148714_ + (Lbfn;Lcmm;)V + 0 o p_27557_ + 1 o p_27558_ + M ()I m_8100_ + W ()V m_8024_ + a (Lqr;)V m_7378_ + 0 o p_27576_ + a (Laif;Lbrl;)V m_27563_ + 0 o p_27564_ + 1 o p_27565_ + a (Lgu;Lcmp;)F m_5610_ + 0 o p_27573_ + 1 o p_27574_ + a (Lbrl;)Z m_7848_ + 0 o p_27569_ + a (Lben;F)Z m_6469_ + 0 o p_27567_ + 1 o p_27568_ + a (Lbyo;Lbdw;Lcfz;)V m_142075_ + 0 o p_148715_ + 1 o p_148716_ + 2 o p_148717_ + a (Lbrl;Lbfe;Laig;)V m_276832_ + 0 o p_278080_ + 1 o p_277813_ + 2 o p_277486_ + a (Laif;Lbrl;Lbfe;)V m_277117_ + 0 o p_277963_ + 1 o p_277357_ + 2 o p_277516_ + a (Lclp;Lgu;)Z m_186209_ + static + 0 o p_186210_ + 1 o p_186211_ + b (Lbyo;Lbdw;)Lbdx; m_6071_ + 0 o p_27584_ + 1 o p_27585_ + b (Lqr;)V m_7380_ + 0 o p_27587_ + b (Lbrl;)Ljava/util/Optional; m_276984_ + static + 0 o p_277355_ + b (B)V m_7822_ + 0 o p_27562_ + b (Lbfn;Lcmn;Lbgd;Lgu;Lapf;)Z m_218104_ + static + 0 o p_218105_ + 1 o p_218106_ + 2 o p_218107_ + 3 o p_218108_ + 4 o p_218109_ + b_ ()V m_8107_ + bw ()D m_6049_ + ea ()I m_213860_ + fZ ()Z m_5957_ + g (Lbyo;)V m_27595_ + 0 o p_27596_ + ga ()I m_27591_ + gb ()Laig; m_27592_ + gc ()Z m_27593_ + gd ()V m_27594_ + h (D)Z m_6785_ + 0 o p_27598_ + m (Lcfz;)Z m_6898_ + 0 o p_27600_ + s (I)V m_27601_ + 0 o p_27602_ +brm net/minecraft/world/entity/animal/Bee + bT f_148718_ + bU f_148719_ + bW f_148720_ + bX f_148721_ + bY f_148722_ + bZ f_148723_ + cA f_27712_ + cB f_148725_ + cC f_27713_ + cD f_148726_ + cE f_27714_ + cF f_27697_ + cG f_27698_ + cH f_27699_ + cI f_27700_ + cJ f_27701_ + cK f_27702_ + ca f_148724_ + cb f_148727_ + cc f_148728_ + cd f_27703_ + ce f_27704_ + cf f_148729_ + cg f_148730_ + ch f_148731_ + ci f_148732_ + cj f_148733_ + ck f_148734_ + cl f_148735_ + cm f_148736_ + cn f_148737_ + co f_148738_ + cp f_148739_ + cq f_148740_ + cr f_148741_ + cs f_148742_ + ct f_27705_ + cu f_27706_ + cv f_27707_ + cw f_27708_ + cx f_27709_ + cy f_27710_ + cz f_27711_ + ()V + static + (Lbfn;Lcmm;)V + 0 o p_27717_ + 1 o p_27718_ + A (Lbrm;)Lapf; m_218111_ + static + 0 o p_218112_ + B (Lbrm;)Lapf; m_218113_ + static + 0 o p_218114_ + C (Lbrm;)Lapf; m_218115_ + static + 0 o p_218116_ + D (F)F m_27935_ + 0 o p_27936_ + V ()V m_8025_ + W ()V m_8024_ + a (Lben;F)Z m_6469_ + 0 o p_27762_ + 1 o p_27763_ + a ()I m_6784_ + a (I)V m_7870_ + 0 o p_27795_ + a (DZLdcb;Lgu;)V m_7840_ + 0 o p_27754_ + 1 o p_27755_ + 2 o p_27756_ + 3 o p_27757_ + a (Lqr;)V m_7378_ + 0 o p_27793_ + a (Ljava/util/UUID;)V m_6925_ + 0 o p_27791_ + a (Laif;Lbfe;)Lbfe; m_142606_ + 0 o p_148754_ + 1 o p_148755_ + a (Lbrm;)Lbpj; m_148756_ + static + 0 o p_148757_ + a (Lcmm;DDDDDLit;)V m_27779_ + 0 o p_27780_ + 1 o p_27781_ + 2 o p_27782_ + 3 o p_27783_ + 4 o p_27784_ + 5 o p_27785_ + 6 o p_27786_ + a (Lgu;Lcmp;)F m_5610_ + 0 o p_27788_ + 1 o p_27789_ + aP ()Z m_142039_ + a_ ()V m_8097_ + b (Laif;Lbfe;)Lbrm; m_142606_ + 0 o p_148760_ + 1 o p_148761_ + b (Lcmm;)Lbpj; m_6037_ + 0 o p_27815_ + b (Lbrm;)Lapf; m_218117_ + static + 0 o p_218118_ + b (Lbgl;Lbfk;)F m_6431_ + 0 o p_27804_ + 1 o p_27805_ + b (Lgu;Ldcb;)V m_7355_ + 0 o p_27820_ + 1 o p_27821_ + b ()Ljava/util/UUID; m_6120_ + b (Lqr;)V m_7380_ + 0 o p_27823_ + b (Lgu;I)Z m_27816_ + 0 o p_27817_ + 1 o p_27818_ + b_ ()V m_8107_ + c ()V m_6825_ + c (Lbrm;)Lbpj; m_148764_ + static + 0 o p_148765_ + c (Lanl;)V m_203347_ + 0 o p_204061_ + cG ()Leei; m_7939_ + d (Lben;)Lamg; m_7975_ + 0 o p_27845_ + d (IZ)V m_27832_ + 0 o p_27833_ + 1 o p_27834_ + d (Lbrm;)Lbpj; m_148766_ + static + 0 o p_148767_ + e (Lbrm;)Lbpj; m_148768_ + static + 0 o p_148769_ + eN ()Lbge; m_6336_ + eR ()F m_6121_ + f (Lbrm;)Lbpj; m_148770_ + static + 0 o p_148771_ + fY ()Ljava/util/List; m_148775_ + g (Lbrm;)Lbpj; m_148776_ + static + 0 o p_148777_ + g_ ()Lamg; m_5592_ + ge ()V m_27853_ + gf ()Z m_27854_ + gg ()Lgu; m_27855_ + gh ()Lbmw; m_148772_ + gi ()Z m_27856_ + gj ()Z m_27857_ + gk ()Lbhf$a; m_27858_ + static + gl ()Z m_29443_ + gm ()V m_27864_ + gn ()Z m_27865_ + go ()Z m_27866_ + gp ()V m_27867_ + gq ()Z m_27868_ + gr ()I m_27869_ + gs ()V m_27870_ + gt ()V m_27871_ + gu ()Z m_27872_ + gv ()Z m_27873_ + h (Lbrm;)Lbpj; m_148778_ + static + 0 o p_148779_ + i (Lgu;)V m_27876_ + 0 o p_27877_ + i (Lbrm;)Lbpj; m_148780_ + static + 0 o p_148781_ + j (Lgu;)V m_27880_ + 0 o p_27881_ + j (Lbrm;)Lbpj; m_27806_ + static + 0 o p_27807_ + k (Lgu;)Z m_27884_ + 0 o p_27885_ + k (Lbrm;)Lbpj; m_148782_ + static + 0 o p_148783_ + l (Lgu;)Z m_27889_ + 0 o p_27890_ + l ()V m_8119_ + l (Lbrm;)Lbpj; m_27835_ + static + 0 o p_27836_ + m (Lgu;)Z m_27896_ + 0 o p_27897_ + m (Lbrm;)Lbpj; m_27846_ + static + 0 o p_27847_ + m (Lcfz;)Z m_6898_ + 0 o p_27895_ + n (Lbrm;)Lbpj; m_27859_ + static + 0 o p_27860_ + o (Lbrm;)Lbpj; m_148784_ + static + 0 o p_148785_ + p (Lbrm;)Lbpj; m_148786_ + static + 0 o p_148787_ + q ()Lgu; m_27851_ + q (Lbrm;)Lbpj; m_148788_ + static + 0 o p_148789_ + r (Lbrm;)Lbpj; m_148790_ + static + 0 o p_148791_ + r ()Z m_27852_ + s ()Lamg; m_7515_ + s (Lbrm;)Lbpj; m_148792_ + static + 0 o p_148793_ + t (Lbrm;)Lapf; m_218119_ + static + 0 o p_218120_ + t (I)V m_27915_ + 0 o p_27916_ + u (Lbrm;)Lapf; m_218121_ + static + 0 o p_218122_ + u (I)Z m_27921_ + 0 o p_27922_ + v (Lbrm;)Lbpj; m_27898_ + static + 0 o p_27899_ + w (Lbrm;)Lapf; m_218123_ + static + 0 o p_218124_ + w (Z)V m_27919_ + 0 o p_27920_ + w ()I m_148774_ + x (Lbrm;)Lbpj; m_27902_ + static + 0 o p_27903_ + x ()V m_8099_ + x (Z)V m_27925_ + 0 o p_27926_ + y (Z)V m_27929_ + 0 o p_27930_ + y (Lbrm;)Lapf; m_218125_ + static + 0 o p_218126_ + z (Lbfj;)Z m_7327_ + 0 o p_27722_ + z (Lbrm;)Lapf; m_218127_ + static + 0 o p_218128_ +brm$1 net/minecraft/world/entity/animal/Bee$1 + p f_27941_ + (Lbrm;Lbgb;Lcmm;)V + 0 o p_27943_ + 1 o p_27944_ + 2 o p_27945_ + a (Lgu;)Z m_6342_ + 0 o p_27947_ + c ()V m_7638_ +brm$a net/minecraft/world/entity/animal/Bee$BaseBeeGoal + a f_27949_ + (Lbrm;)V + 0 o p_27951_ + a ()Z m_8036_ + b ()Z m_8045_ + h ()Z m_7989_ + i ()Z m_8011_ +brm$b net/minecraft/world/entity/animal/Bee$BeeAttackGoal + b f_27957_ + (Lbrm;Lbgi;DZ)V + 0 o p_27959_ + 1 o p_27960_ + 2 o p_27961_ + 3 o p_27962_ + a ()Z m_8036_ + b ()Z m_8045_ +brm$c net/minecraft/world/entity/animal/Bee$BeeBecomeAngryTargetGoal + (Lbrm;)V + 0 o p_27966_ + a ()Z m_8036_ + b ()Z m_8045_ + i ()Z m_27969_ +brm$d net/minecraft/world/entity/animal/Bee$BeeEnterHiveGoal + b f_27970_ + (Lbrm;)V + 0 o p_27972_ + c ()V m_8056_ + h ()Z m_7989_ + i ()Z m_8011_ +brm$e net/minecraft/world/entity/animal/Bee$BeeGoToHiveGoal + b f_148804_ + c f_27979_ + d f_27980_ + e f_148805_ + f f_27981_ + g f_27982_ + h f_148806_ + i f_27983_ + (Lbrm;)V + 0 o p_27985_ + a (Lgu;)Z m_27990_ + 0 o p_27991_ + a ()Z m_8036_ + b (Lgu;)Z m_27993_ + 0 o p_27994_ + b ()Z m_8045_ + c (Lgu;)V m_27998_ + 0 o p_27999_ + c ()V m_8056_ + d (Lgu;)Z m_28001_ + 0 o p_28002_ + d ()V m_8041_ + e ()V m_8037_ + h ()Z m_7989_ + i ()Z m_8011_ + k ()V m_28006_ + l ()V m_28007_ + m ()V m_28008_ +brm$f net/minecraft/world/entity/animal/Bee$BeeGoToKnownFlowerGoal + b f_28009_ + c f_148807_ + d f_28010_ + (Lbrm;)V + 0 o p_28012_ + a ()Z m_8036_ + b ()Z m_8045_ + c ()V m_8056_ + d ()V m_8041_ + e ()V m_8037_ + h ()Z m_7989_ + i ()Z m_8011_ + k ()Z m_28020_ +brm$g net/minecraft/world/entity/animal/Bee$BeeGrowCropGoal + b f_148808_ + c f_28021_ + (Lbrm;)V + 0 o p_28023_ + e ()V m_8037_ + h ()Z m_7989_ + i ()Z m_8011_ +brm$h net/minecraft/world/entity/animal/Bee$BeeHurtByOtherGoal + a f_28030_ + (Lbrm;Lbrm;)V + 0 o p_28032_ + 1 o p_28033_ + a (Lbgb;Lbfz;)V m_5766_ + 0 o p_28035_ + 1 o p_28036_ + b ()Z m_8045_ +brm$i net/minecraft/world/entity/animal/Bee$BeeLocateHiveGoal + b f_28038_ + (Lbrm;)V + 0 o p_28040_ + a (Lgu;Lgu;)D m_148809_ + static + 0 o p_148810_ + 1 o p_148811_ + a (Lhe;)Z m_218129_ + static + 0 o p_218130_ + c ()V m_8056_ + h ()Z m_7989_ + i ()Z m_8011_ + k ()Ljava/util/List; m_28055_ +brm$j net/minecraft/world/entity/animal/Bee$BeeLookControl + h f_28056_ + (Lbrm;Lbgb;)V + 0 o p_28058_ + 1 o p_28059_ + a ()V m_8128_ + c ()Z m_8106_ +brm$k net/minecraft/world/entity/animal/Bee$BeePollinateGoal + b f_28062_ + c f_148812_ + d f_148813_ + e f_148814_ + f f_28063_ + g f_148815_ + h f_148816_ + i f_148817_ + j f_148818_ + k f_148819_ + l f_28064_ + m f_28065_ + n f_28066_ + o f_28067_ + p f_28068_ + q f_148820_ + (Lbrm;)V + 0 o p_28070_ + K_ ()Z m_183429_ + a (Ljava/util/function/Predicate;D)Ljava/util/Optional; m_28075_ + 0 o p_28076_ + 1 o p_28077_ + a (Ldcb;)Z m_28073_ + static + 0 o p_28074_ + c ()V m_8056_ + d ()V m_8041_ + e ()V m_8037_ + h ()Z m_7989_ + i ()Z m_8011_ + k ()Z m_28085_ + l ()Z m_28086_ + m ()V m_28087_ + n ()V m_28088_ + o ()F m_28089_ + p ()Ljava/util/Optional; m_28090_ +brm$l net/minecraft/world/entity/animal/Bee$BeeWanderGoal + a f_28091_ + b f_148821_ + (Lbrm;)V + 0 o p_28093_ + a ()Z m_8036_ + b ()Z m_8045_ + c ()V m_8056_ + h ()Leei; m_28097_ +brn net/minecraft/world/entity/animal/Bucketable + a (Lbgb;Lcfz;)V m_148822_ + static + 0 o p_148823_ + 1 o p_148824_ + a (Lbyo;Lbdw;Lbfz;)Ljava/util/Optional; m_148828_ + static + 0 o p_148829_ + 1 o p_148830_ + 2 o p_148831_ + a (Lbgb;Lqr;)V m_148825_ + static + 0 o p_148826_ + 1 o p_148827_ + b ()Lcfz; m_28282_ + c (Lqr;)V m_142278_ + 0 o p_148832_ + l (Lcfz;)V m_6872_ + 0 o p_148833_ + r ()Z m_27487_ + w (Z)V m_27497_ + 0 o p_148834_ + w ()Lamg; m_142623_ +bro net/minecraft/world/entity/animal/Cat + bW f_148842_ + bX f_148843_ + bY f_148844_ + bZ f_28103_ + ca f_218131_ + cb f_28105_ + cc f_28106_ + cd f_28107_ + ce f_28108_ + cf f_28109_ + cg f_28110_ + ch f_28111_ + ci f_28098_ + cj f_28099_ + ck f_28100_ + cl f_28101_ + ()V + static + (Lbfn;Lcmm;)V + 0 o p_28114_ + 1 o p_28115_ + A (Z)V m_28181_ + 0 o p_28182_ + B (Z)V m_28185_ + 0 o p_28186_ + D (F)F m_28183_ + 0 o p_28184_ + E (F)F m_28187_ + 0 o p_28188_ + F (F)F m_28116_ + 0 o p_28117_ + M ()I m_8100_ + W ()V m_8024_ + a (Lbrp;)V m_28464_ + 0 o p_218133_ + a (Lcnb;Lhi$c;)Ljava/util/Optional; m_289128_ + static + 0 o p_289434_ + 1 o p_289435_ + a (Lqr;)V m_7378_ + 0 o p_28142_ + a (Lcnb;Lbdv;Lbgd;Lbgt;Lqr;)Lbgt; m_6518_ + 0 o p_28134_ + 1 o p_28135_ + 2 o p_28136_ + 3 o p_28137_ + 4 o p_28138_ + a (Lbrl;)Z m_7848_ + 0 o p_28127_ + a (Laif;Lbfe;)Lbfe; m_142606_ + 0 o p_148863_ + 1 o p_148864_ + a (Lcen;)V m_28131_ + 0 o p_28132_ + a (Lbyo;Lbdw;Lcfz;)V m_142075_ + 0 o p_148866_ + 1 o p_148867_ + 2 o p_148868_ + a (Ljava/lang/Object;)V m_28464_ + 0 o p_262642_ + a_ ()V m_8097_ + b (Lbyo;Lbdw;)Lbdx; m_6071_ + 0 o p_28153_ + 1 o p_28154_ + b (Lqr;)V m_7380_ + 0 o p_28156_ + b (Laif;Lbfe;)Lbro; m_142606_ + 0 o p_148870_ + 1 o p_148871_ + b (Lbgl;Lbfk;)F m_6431_ + 0 o p_28150_ + 1 o p_28151_ + bQ ()Z m_20161_ + c (Lhe;)V m_262358_ + 0 o p_262565_ + c ()Ljava/lang/Object; m_28554_ + d (Lben;)Lamg; m_7975_ + 0 o p_28160_ + g_ ()Lamg; m_5592_ + ge ()Lacq; m_28162_ + gf ()Lbrp; m_28554_ + gg ()Z m_28164_ + gh ()Z m_28165_ + gi ()Lcen; m_28166_ + gj ()V m_28167_ + gk ()Lbhf$a; m_28168_ + static + gl ()F m_28169_ + gm ()V m_28170_ + gn ()V m_28171_ + go ()V m_28172_ + h (D)Z m_6785_ + 0 o p_28174_ + l ()V m_8119_ + m (Lcfz;)Z m_6898_ + 0 o p_28177_ + r ()V m_5849_ + s ()Lamg; m_7515_ + x ()V m_8099_ + z (Lbfj;)Z m_7327_ + 0 o p_28119_ +bro$a net/minecraft/world/entity/animal/Cat$CatAvoidEntityGoal + i f_28189_ + (Lbro;Ljava/lang/Class;FDD)V + 0 o p_28191_ + 1 o p_28192_ + 2 o p_28193_ + 3 o p_28194_ + 4 o p_28195_ + a ()Z m_8036_ + b ()Z m_8045_ +bro$b net/minecraft/world/entity/animal/Cat$CatRelaxOnOwnerGoal + a f_28198_ + b f_28199_ + c f_28200_ + d f_28201_ + (Lbro;)V + 0 o p_28203_ + a ()Z m_8036_ + a (Lgu;Lha;)Lgu; m_28207_ + static + 0 o p_28208_ + 1 o p_28209_ + a (Lgu;)Lgu; m_28205_ + static + 0 o p_28206_ + b ()Z m_8045_ + c ()V m_8056_ + d ()V m_8041_ + e ()V m_8037_ + h ()Z m_28214_ + i ()V m_28215_ +bro$c net/minecraft/world/entity/animal/Cat$CatTemptGoal + c f_28216_ + d f_28217_ + (Lbro;DLciz;Z)V + 0 o p_28219_ + 1 o p_28220_ + 2 o p_28221_ + 3 o p_28222_ + a ()Z m_8036_ + e ()V m_8037_ + h ()Z m_7497_ +brp net/minecraft/world/entity/animal/CatVariant + a f_218140_ + b f_218141_ + c f_218142_ + d f_218143_ + e f_218144_ + f f_218145_ + g f_218146_ + h f_218147_ + i f_218148_ + j f_218149_ + k f_218150_ + l f_218151_ + ()V + static + (Lacq;)V + 0 o f_218151_ + a (Ljava/lang/String;)Lacp; m_255249_ + static + 0 o p_256044_ + a (Lhr;)Lbrp; m_255364_ + static + 0 o p_256435_ + a ()Lacq; f_218151_ + a (Lhr;Lacp;Ljava/lang/String;)Lbrp; m_255142_ + static + 0 o p_255735_ + 1 o p_256159_ + 2 o p_256466_ + equals (Ljava/lang/Object;)Z equals + 0 o p_218160_ + hashCode ()I hashCode + toString ()Ljava/lang/String; toString +brq net/minecraft/world/entity/animal/Chicken + bT f_28226_ + bU f_28227_ + bW f_28228_ + bX f_28229_ + bY f_28230_ + bZ f_28231_ + ca f_28232_ + cb f_28233_ + cc f_148873_ + ()V + static + (Lbfn;Lcmm;)V + 0 o p_28236_ + 1 o p_28237_ + a (Laif;Lbfe;)Lbfe; m_142606_ + 0 o p_148879_ + 1 o p_148880_ + a (Lbfj;Lbfj$a;)V m_19956_ + 0 o p_289537_ + 1 o p_289541_ + a (Lqr;)V m_7378_ + 0 o p_28243_ + aO ()V m_142043_ + aP ()Z m_142039_ + b (Lqr;)V m_7380_ + 0 o p_28257_ + b (Lgu;Ldcb;)V m_7355_ + 0 o p_28254_ + 1 o p_28255_ + b (Laif;Lbfe;)Lbrq; m_142606_ + 0 o p_148884_ + 1 o p_148885_ + b (Lbgl;Lbfk;)F m_6431_ + 0 o p_28251_ + 1 o p_28252_ + b_ ()V m_8107_ + d (Lben;)Lamg; m_7975_ + 0 o p_28262_ + ea ()I m_213860_ + g_ ()Lamg; m_5592_ + h (D)Z m_6785_ + 0 o p_28266_ + m (Lcfz;)Z m_6898_ + 0 o p_28271_ + q ()Lbhf$a; m_28263_ + static + r ()Z m_28264_ + s ()Lamg; m_7515_ + w (Z)V m_28273_ + 0 o p_28274_ + x ()V m_8099_ +brr net/minecraft/world/entity/animal/Cod + (Lbfn;Lcmm;)V + 0 o p_28276_ + 1 o p_28277_ + b ()Lcfz; m_28282_ + d (Lben;)Lamg; m_7975_ + 0 o p_28281_ + fZ ()Lamg; m_5699_ + g_ ()Lamg; m_5592_ + s ()Lamg; m_7515_ +brs net/minecraft/world/entity/animal/Cow + (Lbfn;Lcmm;)V + 0 o p_28285_ + 1 o p_28286_ + a (Laif;Lbfe;)Lbfe; m_142606_ + 0 o p_148887_ + 1 o p_148888_ + b (Lbyo;Lbdw;)Lbdx; m_6071_ + 0 o p_28298_ + 1 o p_28299_ + b (Lgu;Ldcb;)V m_7355_ + 0 o p_28301_ + 1 o p_28302_ + b (Laif;Lbfe;)Lbrs; m_142606_ + 0 o p_148890_ + 1 o p_148891_ + b (Lbgl;Lbfk;)F m_6431_ + 0 o p_28295_ + 1 o p_28296_ + d (Lben;)Lamg; m_7975_ + 0 o p_28306_ + eR ()F m_6121_ + g_ ()Lamg; m_5592_ + q ()Lbhf$a; m_28307_ + static + s ()Lamg; m_7515_ + x ()V m_8099_ +brt net/minecraft/world/entity/animal/Dolphin + b f_148892_ + bT f_28310_ + bU f_28311_ + bV f_148893_ + c f_28309_ + d f_28312_ + e f_28313_ + ()V + static + (Lbfn;Lcmm;)V + 0 o p_28316_ + 1 o p_28317_ + X ()I m_8132_ + a (Lqr;)V m_7378_ + 0 o p_28340_ + a (Lcnb;Lbdv;Lbgd;Lbgt;Lqr;)Lbgt; m_6518_ + 0 o p_28332_ + 1 o p_28333_ + 2 o p_28334_ + 3 o p_28335_ + 4 o p_28336_ + a (Lbyo;)Z m_6573_ + 0 o p_28330_ + a (Lit;)V m_28337_ + 0 o p_28338_ + a (Lbrt;)Lapf; m_218164_ + static + 0 o p_218165_ + aJ ()Lamg; m_5501_ + aK ()Lamg; m_5509_ + a_ ()V m_8097_ + b (Lbyo;Lbdw;)Lbdx; m_6071_ + 0 o p_28359_ + 1 o p_28360_ + b (Lqr;)V m_7380_ + 0 o p_28364_ + b (Lcmm;)Lbpj; m_6037_ + 0 o p_28362_ + b (Lbvh;)V m_7581_ + 0 o p_28357_ + b (I)V m_6229_ + 0 o p_28326_ + b (B)V m_7822_ + 0 o p_28324_ + b (Lbrt;)Lapf; m_218166_ + static + 0 o p_218167_ + b (Lbgl;Lbfk;)F m_6431_ + 0 o p_28352_ + 1 o p_28353_ + c (Lbvh;)Z m_289129_ + static + 0 o p_289436_ + c (I)V m_28343_ + 0 o p_28344_ + c (Lbrt;)Lapf; m_218168_ + static + 0 o p_218169_ + ce ()I m_6062_ + d (Lben;)Lamg; m_7975_ + 0 o p_28374_ + dN ()Z m_6040_ + f (Lcfz;)Z m_7066_ + 0 o p_28376_ + fC ()I m_8085_ + fY ()Lbhf$a; m_28379_ + static + fZ ()Z m_28380_ + g_ ()Lamg; m_5592_ + h (Leei;)V m_7023_ + 0 o p_28383_ + i (Lgu;)V m_28384_ + 0 o p_28385_ + l (Lbfj;)Z m_7341_ + 0 o p_28391_ + l ()V m_8119_ + n (I)I m_7305_ + 0 o p_28389_ + q ()Lgu; m_28387_ + r ()Z m_28377_ + s ()Lamg; m_7515_ + w (Z)V m_28393_ + 0 o p_28394_ + w ()I m_28378_ + x ()V m_8099_ + z (Lbfj;)Z m_7327_ + 0 o p_28319_ +brt$a net/minecraft/world/entity/animal/Dolphin$DolphinSwimToTreasureGoal + a f_28399_ + b f_28400_ + (Lbrt;)V + 0 o p_28402_ + J_ ()Z m_6767_ + a ()Z m_8036_ + b ()Z m_8045_ + c ()V m_8056_ + d ()V m_8041_ + e ()V m_8037_ +brt$b net/minecraft/world/entity/animal/Dolphin$DolphinSwimWithPlayerGoal + a f_28409_ + b f_28410_ + c f_28411_ + (Lbrt;D)V + 0 o p_28413_ + 1 o p_28414_ + a ()Z m_8036_ + b ()Z m_8045_ + c ()V m_8056_ + d ()V m_8041_ + e ()V m_8037_ +brt$c net/minecraft/world/entity/animal/Dolphin$PlayWithItemsGoal + a f_28420_ + b f_28421_ + (Lbrt;)V + 0 o p_28423_ + a ()Z m_8036_ + a (Lcfz;)V m_28428_ + 0 o p_28429_ + c ()V m_8056_ + d ()V m_8041_ + e ()V m_8037_ +bru net/minecraft/world/entity/animal/FlyingAnimal + gl ()Z m_29443_ +brv net/minecraft/world/entity/animal/Fox + bT f_148896_ + bU f_148897_ + bW f_148898_ + bX f_28437_ + bY f_28438_ + bZ f_148899_ + ca f_148900_ + cb f_148901_ + cc f_148902_ + cd f_28439_ + ce f_28440_ + cf f_28441_ + cg f_28442_ + ch f_28443_ + ci f_28444_ + cj f_148903_ + ck f_28445_ + cl f_28446_ + cm f_28447_ + cn f_28448_ + co f_28433_ + cp f_28434_ + cq f_28435_ + cr f_28436_ + ()V + static + (Lbfn;Lcmm;)V + 0 o p_28451_ + 1 o p_28452_ + A (Z)V m_28618_ + 0 o p_28619_ + B (Z)V m_28622_ + 0 o p_28623_ + C (Z)V m_28626_ + 0 o p_28627_ + D (F)F m_28620_ + 0 o p_28621_ + E (F)F m_28624_ + 0 o p_28625_ + N ()V m_8032_ + a (Lqr;)V m_7378_ + 0 o p_28493_ + a (Lcnb;Lbdv;Lbgd;Lbgt;Lqr;)Lbgt; m_6518_ + 0 o p_28487_ + 1 o p_28488_ + 2 o p_28489_ + 3 o p_28490_ + 4 o p_28491_ + a (Lbrv;Lbfz;)Z m_28471_ + static + 0 o p_28472_ + 1 o p_28473_ + a (Laif;Lbfe;)Lbfe; m_142606_ + 0 o p_148905_ + 1 o p_148906_ + a (Lbyo;Lbdw;Lcfz;)V m_142075_ + 0 o p_148908_ + 1 o p_148909_ + 2 o p_148910_ + a (Lbrv$v;)V m_28464_ + 0 o p_28465_ + a (Lbyo;Lbgb;)V m_5502_ + 0 o p_28481_ + 1 o p_28482_ + a (Ljava/lang/Object;)V m_28464_ + 0 o p_262646_ + a (Lbrv;)Z m_28466_ + static + 0 o p_28467_ + a (Lapf;Lbdv;)V m_213945_ + 0 o p_218171_ + 1 o p_218172_ + a (Lbfj;)Z m_28462_ + static + 0 o p_28463_ + a_ ()V m_8097_ + b (Lqr;)V m_7380_ + 0 o p_28518_ + b (Laif;Lbfe;)Lbrv; m_142606_ + 0 o p_148912_ + 1 o p_148913_ + b (Lbvh;)V m_7581_ + 0 o p_28514_ + b (Ljava/util/UUID;)V m_28515_ + 0 o p_28516_ + b (Lbfj;)Z m_28497_ + static + 0 o p_28498_ + b (B)V m_7822_ + 0 o p_28456_ + b (Lbgl;Lbfk;)F m_6431_ + 0 o p_28500_ + 1 o p_28501_ + b (Lbrv;)Lapf; m_218173_ + static + 0 o p_218174_ + bU ()Z m_6047_ + b_ ()V m_8107_ + c (Ljava/util/UUID;)Z m_28529_ + 0 o p_28530_ + c (Lbvh;)Z m_289131_ + static + 0 o p_289438_ + c (Lbfn;Lcmn;Lbgd;Lgu;Lapf;)Z m_218175_ + static + 0 o p_218176_ + 1 o p_218177_ + 2 o p_218178_ + 3 o p_218179_ + 4 o p_218180_ + c (Lbfj;)Z m_287086_ + static + 0 o p_287481_ + c ()Ljava/lang/Object; m_28554_ + c (Lbrv;)Lapf; m_218181_ + static + 0 o p_218182_ + cG ()Leei; m_7939_ + d (Lben;)Lamg; m_7975_ + 0 o p_28548_ + d (FF)I m_5639_ + 0 o p_28545_ + 1 o p_28546_ + d (IZ)V m_28532_ + 0 o p_28533_ + 1 o p_28534_ + d (Lcfz;)Lamg; m_7866_ + 0 o p_28540_ + d (Lbrv;)Lapf; m_218183_ + static + 0 o p_218184_ + eT ()Z m_6107_ + f (Lcfz;)Z m_7066_ + 0 o p_28552_ + fY ()Z m_28556_ + fy ()Z m_5803_ + g (Lben;)V m_6668_ + 0 o p_28536_ + g_ ()Lamg; m_5592_ + ge ()Z m_28557_ + gf ()Z m_148924_ + gg ()Z m_28558_ + gh ()Z m_28559_ + gi ()V m_28562_ + gj ()Ljava/util/List; m_28566_ + gk ()Z m_28567_ + gl ()V m_28568_ + gm ()V m_28569_ + gn ()Z m_28570_ + h (Lbfz;)V m_6710_ + 0 o p_28574_ + j (Lcfz;)Z m_7252_ + 0 o p_28578_ + l (Lbfz;)Z m_289133_ + 0 o p_289440_ + l (Lcfz;)Z m_28597_ + 0 o p_28598_ + l ()V m_8119_ + m (Lbfz;)Z m_28584_ + 0 o p_28585_ + m (Lcfz;)Z m_6898_ + 0 o p_28594_ + n (Lcfz;)V m_28601_ + 0 o p_28602_ + n (Lbfz;)Z m_289132_ + 0 o p_289439_ + o (Lbfz;)Z m_289130_ + 0 o p_289437_ + o (Lcfz;)V m_28605_ + 0 o p_28606_ + p (Lbfz;)Z m_28599_ + static + 0 o p_28600_ + q (Lbfz;)Z m_28603_ + static + 0 o p_28604_ + q ()Lbhf$a; m_28553_ + static + r ()Lbrv$v; m_28554_ + s ()Lamg; m_7515_ + t (I)Z m_28608_ + 0 o p_28609_ + w ()Z m_28555_ + w (Z)V m_28610_ + 0 o p_28611_ + x ()V m_8099_ + x (Z)V m_28612_ + 0 o p_28613_ + y (Z)V m_28614_ + 0 o p_28615_ + z (Z)V m_28616_ + 0 o p_28617_ +brv$a net/minecraft/world/entity/animal/Fox$DefendTrustedTargetGoal + i f_28628_ + j f_28629_ + k f_28630_ + l f_28631_ + (Lbrv;Ljava/lang/Class;ZZLjava/util/function/Predicate;)V + 0 o p_28633_ + 1 o p_28634_ + 2 o p_28635_ + 3 o p_28636_ + 4 o p_28637_ + a ()Z m_8036_ + c ()V m_8056_ +brv$b net/minecraft/world/entity/animal/Fox$FaceplantGoal + a f_28640_ + b f_28641_ + (Lbrv;)V + 0 o p_28643_ + a ()Z m_8036_ + b ()Z m_8045_ + c ()V m_8056_ + d ()V m_8041_ + e ()V m_8037_ +brv$c net/minecraft/world/entity/animal/Fox$FoxAlertableEntitiesSelector + a f_28649_ + (Lbrv;)V + 0 o p_28651_ + a (Lbfz;)Z test + 0 o p_28653_ + test (Ljava/lang/Object;)Z test + 0 o p_28655_ +brv$d net/minecraft/world/entity/animal/Fox$FoxBehaviorGoal + a f_28656_ + b f_28657_ + (Lbrv;)V + 0 o p_28659_ + h ()Z m_28663_ + i ()Z m_28664_ +brv$e net/minecraft/world/entity/animal/Fox$FoxBreedGoal + d f_28665_ + (Lbrv;D)V + 0 o p_28667_ + 1 o p_28668_ + c ()V m_8056_ + g ()V m_8026_ +brv$f net/minecraft/world/entity/animal/Fox$FoxEatBerriesGoal + g f_28671_ + h f_28672_ + i f_148925_ + (Lbrv;DII)V + 0 o p_28674_ + 1 o p_28675_ + 2 o p_28676_ + 3 o p_28677_ + a (Ldcb;)V m_148926_ + 0 o p_148927_ + a ()Z m_8036_ + a (Lcmp;Lgu;)Z m_6465_ + 0 o p_28680_ + 1 o p_28681_ + b (Ldcb;)V m_148928_ + 0 o p_148929_ + c ()V m_8056_ + e ()V m_8037_ + i ()D m_8052_ + l ()Z m_8064_ + o ()V m_28686_ +brv$g net/minecraft/world/entity/animal/Fox$FoxFloatGoal + a f_28687_ + (Lbrv;)V + 0 o p_28689_ + a ()Z m_8036_ + c ()V m_8056_ +brv$h net/minecraft/world/entity/animal/Fox$FoxFollowParentGoal + d f_28692_ + e f_28693_ + (Lbrv;Lbrv;D)V + 0 o p_28695_ + 1 o p_28696_ + 2 o p_28697_ + a ()Z m_8036_ + b ()Z m_8045_ + c ()V m_8056_ +brv$i net/minecraft/world/entity/animal/Fox$FoxGroupData + a f_28701_ + (Lbrv$v;)V + 0 o p_28703_ +brv$j net/minecraft/world/entity/animal/Fox$FoxLookAtPlayerGoal + h f_28704_ + (Lbrv;Lbgb;Ljava/lang/Class;F)V + 0 o p_28706_ + 1 o p_28707_ + 2 o p_28708_ + 3 o p_28709_ + a ()Z m_8036_ + b ()Z m_8045_ +brv$k net/minecraft/world/entity/animal/Fox$FoxLookControl + h f_28712_ + (Lbrv;)V + 0 o p_28714_ + a ()V m_8128_ + c ()Z m_8106_ +brv$l net/minecraft/world/entity/animal/Fox$FoxMeleeAttackGoal + b f_28717_ + (Lbrv;DZ)V + 0 o p_28719_ + 1 o p_28720_ + 2 o p_28721_ + a ()Z m_8036_ + a (Lbfz;D)V m_6739_ + 0 o p_28724_ + 1 o p_28725_ + c ()V m_8056_ +brv$m net/minecraft/world/entity/animal/Fox$FoxMoveControl + l f_28727_ + (Lbrv;)V + 0 o p_28729_ + a ()V m_8126_ +brv$n net/minecraft/world/entity/animal/Fox$FoxPanicGoal + h f_28731_ + (Lbrv;D)V + 0 o p_28733_ + 1 o p_28734_ + h ()Z m_202729_ +brv$o net/minecraft/world/entity/animal/Fox$FoxPounceGoal + a f_28736_ + (Lbrv;)V + 0 o p_28738_ + J_ ()Z m_6767_ + a ()Z m_8036_ + b ()Z m_8045_ + c ()V m_8056_ + d ()V m_8041_ + e ()V m_8037_ +brv$p net/minecraft/world/entity/animal/Fox$FoxSearchForItemsGoal + a f_28745_ + (Lbrv;)V + 0 o p_28747_ + a ()Z m_8036_ + c ()V m_8056_ + e ()V m_8037_ +brv$q net/minecraft/world/entity/animal/Fox$FoxStrollThroughVillageGoal + a f_28751_ + (Lbrv;II)V + 0 o p_28753_ + 1 o p_28754_ + 2 o p_28755_ + a ()Z m_8036_ + b ()Z m_8045_ + c ()V m_8056_ + h ()Z m_28759_ +brv$r net/minecraft/world/entity/animal/Fox$PerchAndSearchGoal + b f_28760_ + c f_28761_ + d f_28762_ + e f_28763_ + f f_28764_ + (Lbrv;)V + 0 o p_28766_ + a ()Z m_8036_ + b ()Z m_8045_ + c ()V m_8056_ + d ()V m_8041_ + e ()V m_8037_ + k ()V m_28772_ +brv$s net/minecraft/world/entity/animal/Fox$SeekShelterGoal + b f_28773_ + c f_28774_ + (Lbrv;D)V + 0 o p_28776_ + 1 o p_28777_ + a ()Z m_8036_ + c ()V m_8056_ +brv$t net/minecraft/world/entity/animal/Fox$SleepGoal + b f_28780_ + c f_148930_ + d f_28781_ + ()V + static + (Lbrv;)V + 0 o p_28783_ + a ()Z m_8036_ + b ()Z m_8045_ + c ()V m_8056_ + d ()V m_8041_ + k ()Z m_28788_ +brv$u net/minecraft/world/entity/animal/Fox$StalkPreyGoal + a f_28789_ + (Lbrv;)V + 0 o p_28791_ + a ()Z m_8036_ + c ()V m_8056_ + d ()V m_8041_ + e ()V m_8037_ +brv$v net/minecraft/world/entity/animal/Fox$Type + a RED + b SNOW + c f_262206_ + d f_28798_ + e f_28800_ + f f_28801_ + g $VALUES + ()V + static + (Ljava/lang/String;IILjava/lang/String;)V + 0 o p_196656_ + 1 o p_196657_ + 2 o p_196658_ + 3 o p_196659_ + a (Lhe;)Lbrv$v; m_204062_ + static + 0 o p_204063_ + a (Ljava/lang/String;)Lbrv$v; m_28816_ + static + 0 o p_28817_ + a ()I m_28820_ + a (I)Lbrv$v; m_28812_ + static + 0 o p_28813_ + b ()[Lbrv$v; m_148931_ + static + c ()Ljava/lang/String; m_7912_ + valueOf (Ljava/lang/String;)Lbrv$v; valueOf + static + 0 o p_28824_ + values ()[Lbrv$v; values + static +brw net/minecraft/world/entity/animal/FrogVariant + a f_218185_ + b f_218186_ + c f_218187_ + d f_218188_ + ()V + static + (Lacq;)V + 0 o f_218188_ + a ()Lacq; f_218188_ + a (Ljava/lang/String;Ljava/lang/String;)Lbrw; m_218193_ + static + 0 o p_218194_ + 1 o p_218195_ + equals (Ljava/lang/Object;)Z equals + 0 o p_218197_ + hashCode ()I hashCode + toString ()Ljava/lang/String; toString +brx net/minecraft/world/entity/animal/IronGolem + bT f_28831_ + bU f_28827_ + bV f_28828_ + bW f_28829_ + c f_28826_ + d f_148932_ + e f_28830_ + ()V + static + (Lbfn;Lcmm;)V + 0 o p_28834_ + 1 o p_28835_ + A (Lbfj;)V m_7324_ + 0 o p_28839_ + a (Lqr;)V m_7378_ + 0 o p_28857_ + a ()I m_6784_ + a (Lben;)V m_6667_ + 0 o p_28846_ + a (Lcmp;)Z m_6914_ + 0 o p_28853_ + a (Ljava/util/UUID;)V m_6925_ + 0 o p_28855_ + a (I)V m_7870_ + 0 o p_28859_ + a (Lbfn;)Z m_6549_ + 0 o p_28851_ + a (Lben;F)Z m_6469_ + 0 o p_28848_ + 1 o p_28849_ + a_ ()V m_8097_ + b ()Ljava/util/UUID; m_6120_ + b (Lbyo;Lbdw;)Lbdx; m_6071_ + 0 o p_28861_ + 1 o p_28862_ + b (Lqr;)V m_7380_ + 0 o p_28867_ + b (Lgu;Ldcb;)V m_7355_ + 0 o p_28864_ + 1 o p_28865_ + b (B)V m_7822_ + 0 o p_28844_ + b_ ()V m_8107_ + bg ()Z m_5843_ + c ()V m_6825_ + cG ()Leei; m_7939_ + d (Lben;)Lamg; m_7975_ + 0 o p_28872_ + fY ()I m_28875_ + fZ ()Z m_28876_ + g_ ()Lamg; m_5592_ + ga ()F m_28877_ + l (Lbfz;)Z m_28878_ + static + 0 o p_28879_ + m (I)I m_7302_ + 0 o p_28882_ + q ()Lbhf$a; m_28883_ + static + r ()Lbrx$a; m_28873_ + w (Z)V m_28885_ + 0 o p_28886_ + w ()I m_28874_ + x ()V m_8099_ + x (Z)V m_28887_ + 0 o p_28888_ + z (Lbfj;)Z m_7327_ + 0 o p_28837_ +brx$a net/minecraft/world/entity/animal/IronGolem$Crackiness + a NONE + b LOW + c MEDIUM + d HIGH + e f_28893_ + f f_28894_ + g $VALUES + ()V + static + (Ljava/lang/String;IF)V + 0 o p_28898_ + 1 o p_28899_ + 2 o p_28900_ + a (F)Lbrx$a; m_28901_ + static + 0 o p_28902_ + a ()[Lbrx$a; m_148933_ + static + a (Lbrx$a;)D m_28903_ + static + 0 o p_28904_ + valueOf (Ljava/lang/String;)Lbrx$a; valueOf + static + 0 o p_28906_ + values ()[Lbrx$a; values + static +bry net/minecraft/world/entity/animal/MushroomCow + bT f_28908_ + bU f_148934_ + bW f_28909_ + bX f_28910_ + bY f_28911_ + ()V + static + (Lbfn;Lcmm;)V + 0 o p_28914_ + 1 o p_28915_ + a (Laif;Lbfe;)Lbfe; m_142606_ + 0 o p_148936_ + 1 o p_148937_ + a (Laif;Lbfy;)V m_8038_ + 0 o p_28921_ + 1 o p_28922_ + a (Lbry;)Lbry$a; m_28930_ + 0 o p_28931_ + a (Lbry$a;)V m_28464_ + 0 o p_28929_ + a (Lqr;)V m_7378_ + 0 o p_28936_ + a (Ljava/lang/Object;)V m_28464_ + 0 o p_262691_ + a (Lbdw;Lbyo;)V m_28925_ + static + 0 o p_28926_ + 1 o p_28927_ + a (Lgu;Lcmp;)F m_5610_ + 0 o p_28933_ + 1 o p_28934_ + a ()Z m_6220_ + a (Lami;)V m_5851_ + 0 o p_28924_ + a_ ()V m_8097_ + b (Lbyo;Lbdw;)Lbdx; m_6071_ + 0 o p_28941_ + 1 o p_28942_ + b (Lqr;)V m_7380_ + 0 o p_28944_ + b (Laif;Lbfe;)Lbrs; m_142606_ + 0 o p_148939_ + 1 o p_148940_ + c (Lbfn;Lcmn;Lbgd;Lgu;Lapf;)Z m_218200_ + static + 0 o p_218201_ + 1 o p_218202_ + 2 o p_218203_ + 3 o p_218204_ + 4 o p_218205_ + c (Laif;Lbfe;)Lbry; m_142606_ + 0 o p_148942_ + 1 o p_148943_ + c ()Ljava/lang/Object; m_28554_ + l (Lcfz;)Ljava/util/Optional; m_28956_ + 0 o p_28957_ + r ()Lbry$a; m_28554_ +bry$a net/minecraft/world/entity/animal/MushroomCow$MushroomType + a RED + b BROWN + c f_262198_ + d f_28960_ + e f_28961_ + f $VALUES + ()V + static + (Ljava/lang/String;ILjava/lang/String;Ldcb;)V + 0 o p_28965_ + 1 o p_28966_ + 2 o p_28967_ + 3 o p_28968_ + a (Ljava/lang/String;)Lbry$a; m_28976_ + static + 0 o p_28977_ + a ()Ldcb; m_28969_ + b ()[Lbry$a; m_148944_ + static + c ()Ljava/lang/String; m_7912_ + valueOf (Ljava/lang/String;)Lbry$a; valueOf + static + 0 o p_28979_ + values ()[Lbry$a; values + static +brz net/minecraft/world/entity/animal/Ocelot + bT f_148945_ + bU f_148946_ + bW f_148947_ + bX f_28981_ + bY f_28982_ + bZ f_28983_ + ca f_28984_ + ()V + static + (Lbfn;Lcmm;)V + 0 o p_28987_ + 1 o p_28988_ + M ()I m_8100_ + W ()V m_8024_ + a (Lqr;)V m_7378_ + 0 o p_29013_ + a (Lcmp;)Z m_6914_ + 0 o p_29005_ + a (Lcnb;Lbdv;Lbgd;Lbgt;Lqr;)Lbgt; m_6518_ + 0 o p_29007_ + 1 o p_29008_ + 2 o p_29009_ + 3 o p_29010_ + 4 o p_29011_ + a (Laif;Lbfe;)Lbfe; m_142606_ + 0 o p_148953_ + 1 o p_148954_ + a_ ()V m_8097_ + b (Lbyo;Lbdw;)Lbdx; m_6071_ + 0 o p_29021_ + 1 o p_29022_ + b (Laif;Lbfe;)Lbrz; m_142606_ + 0 o p_148956_ + 1 o p_148957_ + b (Lqr;)V m_7380_ + 0 o p_29024_ + b (B)V m_7822_ + 0 o p_28995_ + bQ ()Z m_20161_ + c (Lbfn;Lcmn;Lbgd;Lgu;Lapf;)Z m_218206_ + static + 0 o p_218207_ + 1 o p_218208_ + 2 o p_218209_ + 3 o p_218210_ + 4 o p_218211_ + cG ()Leei; m_7939_ + d (Lben;)Lamg; m_7975_ + 0 o p_29035_ + fY ()F m_29039_ + g_ ()Lamg; m_5592_ + h (D)Z m_6785_ + 0 o p_29041_ + m (Lcfz;)Z m_6898_ + 0 o p_29043_ + q ()Lbhf$a; m_29036_ + static + r ()V m_29037_ + s ()Lamg; m_7515_ + w ()Z m_29038_ + w (Z)V m_29045_ + 0 o p_29046_ + x ()V m_8099_ + x (Z)V m_29047_ + 0 o p_29048_ + z (Lbfj;)Z m_7327_ + 0 o p_28990_ +brz$a net/minecraft/world/entity/animal/Ocelot$OcelotAvoidEntityGoal + i f_29049_ + (Lbrz;Ljava/lang/Class;FDD)V + 0 o p_29051_ + 1 o p_29052_ + 2 o p_29053_ + 3 o p_29054_ + 4 o p_29055_ + a ()Z m_8036_ + b ()Z m_8045_ +brz$b net/minecraft/world/entity/animal/Ocelot$OcelotTemptGoal + c f_29058_ + (Lbrz;DLciz;Z)V + 0 o p_29060_ + 1 o p_29061_ + 2 o p_29062_ + 3 o p_29063_ + h ()Z m_7497_ +bs net/minecraft/advancements/critereon/FilledBucketTrigger + a f_38768_ + ()V + static + ()V + a (Lcfz;Lbs$a;)Z m_38775_ + static + 0 o p_38776_ + 1 o p_38777_ + a (Lcom/google/gson/JsonObject;Lba;Lbe;)Lbs$a; m_7214_ + 0 o p_286783_ + 1 o p_286776_ + 2 o p_286812_ + a ()Lacq; m_7295_ + a (Laig;Lcfz;)V m_38772_ + 0 o p_38773_ + 1 o p_38774_ + b (Lcom/google/gson/JsonObject;Lba;Lbe;)Lar; m_7214_ + 0 o p_286377_ + 1 o p_286379_ + 2 o p_286801_ +bs$a net/minecraft/advancements/critereon/FilledBucketTrigger$TriggerInstance + a f_38787_ + (Lba;Lbz;)V + 0 o p_286231_ + 1 o p_286845_ + a (Lct;)Lcom/google/gson/JsonObject; m_7683_ + 0 o p_38796_ + a (Lcfz;)Z m_38791_ + 0 o p_38792_ + a (Lbz;)Lbs$a; m_38793_ + static + 0 o p_38794_ +bsa net/minecraft/world/entity/animal/Panda + bT f_148959_ + bU f_29072_ + bW f_29073_ + bX f_29074_ + bY f_29075_ + bZ f_29076_ + ca f_29077_ + cb f_29078_ + cc f_29079_ + cd f_148960_ + ce f_148961_ + cf f_148962_ + cg f_148963_ + ch f_148964_ + ci f_148965_ + cj f_29080_ + ck f_29081_ + cl f_29082_ + cm f_29083_ + cn f_29065_ + co f_29066_ + cp f_29067_ + cq f_29068_ + cr f_29069_ + cs f_29070_ + ct f_29071_ + ()V + static + (Lbfn;Lcmm;)V + 0 o p_29086_ + 1 o p_29087_ + A (Z)V m_29222_ + 0 o p_29223_ + D (F)F m_29224_ + 0 o p_29225_ + E (F)F m_29226_ + 0 o p_29227_ + F (F)F m_29088_ + 0 o p_29089_ + a (Lqr;)V m_7378_ + 0 o p_29115_ + a (Lcnb;Lbdv;Lbgd;Lbgt;Lqr;)Lbgt; m_6518_ + 0 o p_29109_ + 1 o p_29110_ + 2 o p_29111_ + 3 o p_29112_ + 4 o p_29113_ + a (Laif;Lbfe;)Lbfe; m_142606_ + 0 o p_148967_ + 1 o p_148968_ + a (Lben;F)Z m_6469_ + 0 o p_29097_ + 1 o p_29098_ + a (Lbsa;Lbsa;)V m_29103_ + 0 o p_29104_ + 1 o p_29105_ + a (Lbsa$a;)V m_29099_ + 0 o p_29100_ + a (Lbsa;)Lapf; m_284353_ + static + 0 o p_285188_ + a (Lbyo;)Z m_6573_ + 0 o p_29107_ + a_ ()V m_8097_ + b (Lbyo;Lbdw;)Lbdx; m_6071_ + 0 o p_29123_ + 1 o p_29124_ + b (Lqr;)V m_7380_ + 0 o p_29129_ + b (Lbvh;)V m_7581_ + 0 o p_29121_ + b (Lbsa;)Lapf; m_218212_ + static + 0 o p_218213_ + b (Lbsa$a;)V m_29116_ + 0 o p_29117_ + b (Lgu;Ldcb;)V m_7355_ + 0 o p_29126_ + 1 o p_29127_ + c (Lbvh;)Z m_289134_ + static + 0 o p_289441_ + c (Lbsa;)Lapf; m_218214_ + static + 0 o p_218215_ + d (Lben;)Lamg; m_7975_ + 0 o p_29142_ + d (IZ)V m_29134_ + 0 o p_29135_ + 1 o p_29136_ + d (Lbsa;)Lapf; m_218216_ + static + 0 o p_218217_ + e (Lbsa;)Lapf; m_218218_ + static + 0 o p_218219_ + f (Lcfz;)Z m_7066_ + 0 o p_29146_ + f (Lbsa;)Lapf; m_218220_ + static + 0 o p_218221_ + fS ()Z m_5912_ + fY ()Z m_29151_ + g (Lbsa;)Lapf; m_218222_ + static + 0 o p_218223_ + gA ()V m_29177_ + gB ()Lbsa$a; m_29178_ + gC ()V m_29179_ + g_ ()Lamg; m_5592_ + ge ()Z m_29152_ + gf ()I m_29153_ + gg ()Lbsa$a; m_29154_ + gh ()Lbsa$a; m_29155_ + gi ()Z m_29156_ + gj ()Lbhf$a; m_29157_ + static + gk ()Lbsa$a; m_29158_ + gl ()Z m_29161_ + gm ()Z m_29162_ + gn ()Z m_29163_ + go ()Z m_148973_ + gp ()Z m_29164_ + gq ()Z m_29165_ + gr ()V m_29166_ + gs ()Z m_29167_ + gt ()I m_29170_ + gu ()V m_29171_ + gv ()V m_29172_ + gw ()V m_29173_ + gx ()V m_29174_ + gy ()V m_29175_ + gz ()V m_29176_ + h (Lbsa;)Lapf; m_218224_ + static + 0 o p_218225_ + i (Lbsa;)Lapf; m_218226_ + static + 0 o p_218227_ + j (Lbsa;)Lapf; m_218228_ + static + 0 o p_218229_ + k (Lbsa;)Lapf; m_218230_ + static + 0 o p_218231_ + l (Lcfz;)Z m_29195_ + 0 o p_29196_ + l ()V m_8119_ + m (Lcfz;)Z m_6898_ + 0 o p_29192_ + q ()I m_29148_ + r ()Z m_29149_ + s ()Lamg; m_7515_ + t (I)V m_29206_ + 0 o p_29207_ + u (I)V m_29210_ + 0 o p_29211_ + v (I)V m_29214_ + 0 o p_29215_ + w (I)Z m_29218_ + 0 o p_29219_ + w ()Z m_29150_ + w (Z)V m_29208_ + 0 o p_29209_ + x ()V m_8099_ + x (Z)V m_29212_ + 0 o p_29213_ + y (Z)V m_29216_ + 0 o p_29217_ + z (Lbfj;)Z m_7327_ + 0 o p_29091_ + z (Z)V m_29220_ + 0 o p_29221_ +bsa$a net/minecraft/world/entity/animal/Panda$Gene + a NORMAL + b LAZY + c WORRIED + d PLAYFUL + e BROWN + f WEAK + g AGGRESSIVE + h f_262727_ + i f_29235_ + j f_148982_ + k f_29236_ + l f_29237_ + m f_29238_ + n $VALUES + ()V + static + (Ljava/lang/String;IILjava/lang/String;Z)V + 0 o p_29242_ + 1 o p_29243_ + 2 o p_29244_ + 3 o p_29245_ + 4 o p_29246_ + a (Lbsa$a;Lbsa$a;)Lbsa$a; m_29260_ + static + 0 o p_29261_ + 1 o p_29262_ + a (Ljava/lang/String;)Lbsa$a; m_29253_ + static + 0 o p_29254_ + a (Lapf;)Lbsa$a; m_218234_ + static + 0 o p_218235_ + a (I)Lbsa$a; m_29248_ + static + 0 o p_29249_ + a ()I m_29247_ + b ()Z m_29263_ + c ()Ljava/lang/String; m_7912_ + d ()[Lbsa$a; m_148983_ + static + valueOf (Ljava/lang/String;)Lbsa$a; valueOf + static + 0 o p_29265_ + values ()[Lbsa$a; values + static +bsa$b net/minecraft/world/entity/animal/Panda$PandaAttackGoal + b f_29267_ + (Lbsa;DZ)V + 0 o p_29269_ + 1 o p_29270_ + 2 o p_29271_ + a ()Z m_8036_ +bsa$c net/minecraft/world/entity/animal/Panda$PandaAvoidGoal + i f_29273_ + (Lbsa;Ljava/lang/Class;FDD)V + 0 o p_29275_ + 1 o p_29276_ + 2 o p_29277_ + 3 o p_29278_ + 4 o p_29279_ + a ()Z m_8036_ +bsa$d net/minecraft/world/entity/animal/Panda$PandaBreedGoal + d f_29282_ + e f_29283_ + (Lbsa;D)V + 0 o p_186221_ + 1 o p_186222_ + a ()Z m_8036_ + h ()Z m_29289_ +bsa$e net/minecraft/world/entity/animal/Panda$PandaHurtByTargetGoal + a f_29290_ + (Lbsa;[Ljava/lang/Class;)V + 0 o p_29292_ + 1 o p_29293_ + a (Lbgb;Lbfz;)V m_5766_ + 0 o p_29295_ + 1 o p_29296_ + b ()Z m_8045_ +bsa$f net/minecraft/world/entity/animal/Panda$PandaLieOnBackGoal + a f_29298_ + b f_29299_ + (Lbsa;)V + 0 o p_29301_ + a ()Z m_8036_ + b ()Z m_8045_ + c ()V m_8056_ + d ()V m_8041_ +bsa$g net/minecraft/world/entity/animal/Panda$PandaLookAtPlayerGoal + h f_29306_ + (Lbsa;Ljava/lang/Class;F)V + 0 o p_29308_ + 1 o p_29309_ + 2 o p_29310_ + a (Lbfz;)V m_29312_ + 0 o p_29313_ + a ()Z m_8036_ + b (Lbfz;)Z m_148984_ + static + 0 o p_148985_ + b ()Z m_8045_ + e ()V m_8037_ +bsa$h net/minecraft/world/entity/animal/Panda$PandaMoveControl + l f_29316_ + (Lbsa;)V + 0 o p_29318_ + a ()V m_8126_ +bsa$i net/minecraft/world/entity/animal/Panda$PandaPanicGoal + h f_29320_ + (Lbsa;D)V + 0 o p_29322_ + 1 o p_29323_ + b ()Z m_8045_ + h ()Z m_202729_ +bsa$j net/minecraft/world/entity/animal/Panda$PandaRollGoal + a f_29326_ + (Lbsa;)V + 0 o p_29328_ + J_ ()Z m_6767_ + a ()Z m_8036_ + b ()Z m_8045_ + c ()V m_8056_ +bsa$k net/minecraft/world/entity/animal/Panda$PandaSitGoal + a f_29333_ + b f_29334_ + (Lbsa;)V + 0 o p_29336_ + a ()Z m_8036_ + b ()Z m_8045_ + c ()V m_8056_ + d ()V m_8041_ + e ()V m_8037_ +bsa$l net/minecraft/world/entity/animal/Panda$PandaSneezeGoal + a f_29342_ + (Lbsa;)V + 0 o p_29344_ + a ()Z m_8036_ + b ()Z m_8045_ + c ()V m_8056_ +bsb net/minecraft/world/entity/animal/Parrot + bW f_29350_ + bX f_29351_ + bY f_29352_ + bZ f_29353_ + ca f_29354_ + cb f_29355_ + cc f_29356_ + cd f_29357_ + ce f_29358_ + cf f_29359_ + cg f_148987_ + ch f_29348_ + ci f_29349_ + ()V + static + (Lbfn;Lcmm;)V + 0 o p_29362_ + 1 o p_29363_ + A (Lbfj;)V m_7324_ + 0 o p_29367_ + a (Ljava/util/HashMap;)V m_29397_ + static + 0 o p_29398_ + a (Lqr;)V m_7378_ + 0 o p_29402_ + a (Lbsb$b;)V m_28464_ + 0 o p_262613_ + a (Lapf;)F m_218236_ + static + 0 o p_218237_ + a (Lcmm;Lapf;)Lamg; m_218238_ + static + 0 o p_218239_ + 1 o p_218240_ + a (Lcnb;Lbdv;Lbgd;Lbgt;Lqr;)Lbgt; m_6518_ + 0 o p_29389_ + 1 o p_29390_ + 2 o p_29391_ + 3 o p_29392_ + 4 o p_29393_ + a (Lcmm;Lbfj;)Z m_29382_ + static + 0 o p_29383_ + 1 o p_29384_ + a (Lbrl;)Z m_7848_ + 0 o p_29381_ + a (Laif;Lbfe;)Lbfe; m_142606_ + 0 o p_148993_ + 1 o p_148994_ + a (Lben;F)Z m_6469_ + 0 o p_29378_ + 1 o p_29379_ + a (Ljava/lang/Object;)V m_28464_ + 0 o p_262624_ + a (DZLdcb;Lgu;)V m_7840_ + 0 o p_29370_ + 1 o p_29371_ + 2 o p_29372_ + 3 o p_29373_ + a (Lgu;Z)V m_6818_ + 0 o p_29395_ + 1 o p_29396_ + aO ()V m_142043_ + aP ()Z m_142039_ + a_ ()V m_8097_ + b (Lbyo;Lbdw;)Lbdx; m_6071_ + 0 o p_29414_ + 1 o p_29415_ + b (Lqr;)V m_7380_ + 0 o p_29422_ + b (Lcmm;)Lbpj; m_6037_ + 0 o p_29417_ + b (Lgu;Ldcb;)V m_7355_ + 0 o p_29419_ + 1 o p_29420_ + b (Lbfn;)Lamg; m_29408_ + static + 0 o p_29409_ + b (Lbgl;Lbfk;)F m_6431_ + 0 o p_29411_ + 1 o p_29412_ + b_ ()V m_8107_ + bp ()Z m_6094_ + c (Lbfn;Lcmn;Lbgd;Lgu;Lapf;)Z m_218241_ + static + 0 o p_218242_ + 1 o p_218243_ + 2 o p_218244_ + 3 o p_218245_ + 4 o p_218246_ + c ()Ljava/lang/Object; m_28554_ + cG ()Leei; m_7939_ + cY ()Lami; m_5720_ + d (Lben;)Lamg; m_7975_ + 0 o p_29437_ + eS ()F m_6100_ + g_ ()Lamg; m_5592_ + ge ()Lbhf$a; m_29438_ + static + gf ()Z m_29439_ + gg ()Lbsb$b; m_28554_ + gi ()V m_29442_ + gl ()Z m_29443_ + h_ ()Z m_6162_ + m (Lcfz;)Z m_6898_ + 0 o p_29446_ + s ()Lamg; m_7515_ + x ()V m_8099_ + z (Lbfj;)Z m_7327_ + 0 o p_29365_ +bsb$1 net/minecraft/world/entity/animal/Parrot$1 + ()V + a (Lbgb;)Z test + 0 o p_29453_ + test (Ljava/lang/Object;)Z test + 0 o p_29455_ +bsb$a net/minecraft/world/entity/animal/Parrot$ParrotWanderGoal + (Lbgi;D)V + 0 o p_186224_ + 1 o p_186225_ + h ()Leei; m_7037_ + k ()Leei; m_186227_ +bsb$b net/minecraft/world/entity/animal/Parrot$Variant + a RED_BLUE + b BLUE + c GREEN + d YELLOW_BLUE + e GRAY + f f_262304_ + g f_262209_ + h f_262294_ + i f_262312_ + j $VALUES + ()V + static + (Ljava/lang/String;IILjava/lang/String;)V + 0 o p_262655_ + 1 o p_262694_ + 2 o p_262571_ + 3 o p_262693_ + a (I)Lbsb$b; m_262398_ + static + 0 o p_262643_ + a ()I m_262504_ + b ()[Lbsb$b; m_262428_ + static + c ()Ljava/lang/String; m_7912_ + valueOf (Ljava/lang/String;)Lbsb$b; valueOf + static + 0 o p_262616_ + values ()[Lbsb$b; values + static +bsc net/minecraft/world/entity/animal/Pig + bT f_29456_ + bU f_29457_ + bW f_29458_ + bX f_29459_ + ()V + static + (Lbfn;Lcmm;)V + 0 o p_29462_ + 1 o p_29463_ + a (Lqr;)V m_7378_ + 0 o p_29478_ + a (Laby;)V m_7350_ + 0 o p_29480_ + a ()Z m_6746_ + a (Lami;)V m_5853_ + 0 o p_29476_ + a (Laif;Lbfe;)Lbfe; m_142606_ + 0 o p_148998_ + 1 o p_148999_ + a (Laif;Lbfy;)V m_8038_ + 0 o p_29473_ + 1 o p_29474_ + a (Lbyo;Leei;)V m_274498_ + 0 o p_278330_ + 1 o p_278267_ + a_ ()V m_8097_ + b (Lbyo;Lbdw;)Lbdx; m_6071_ + 0 o p_29489_ + 1 o p_29490_ + b (Lbfz;)Leei; m_7688_ + 0 o p_29487_ + b (Lqr;)V m_7380_ + 0 o p_29495_ + b (Laif;Lbfe;)Lbsc; m_142606_ + 0 o p_149001_ + 1 o p_149002_ + b (Lbyo;Leei;)Leei; m_274312_ + 0 o p_278309_ + 1 o p_275479_ + b (Lgu;Ldcb;)V m_7355_ + 0 o p_29492_ + 1 o p_29493_ + cG ()Leei; m_7939_ + cL ()Lbfz; m_6688_ + d (Lben;)Lamg; m_7975_ + 0 o p_29502_ + e (Lbyo;)F m_245547_ + 0 o p_278258_ + eu ()V m_5907_ + g ()Z m_6741_ + g_ ()Lamg; m_5592_ + i ()Z m_6254_ + m (Lcfz;)Z m_6898_ + 0 o p_29508_ + q ()Lbhf$a; m_29503_ + static + s ()Lamg; m_7515_ + x ()V m_8099_ +bsd net/minecraft/world/entity/animal/PolarBear + bT f_29510_ + bU f_149003_ + bW f_29511_ + bX f_29512_ + bY f_29513_ + bZ f_29514_ + ca f_29515_ + cb f_29516_ + ()V + static + (Lbfn;Lcmm;)V + 0 o p_29519_ + 1 o p_29520_ + D (F)F m_29569_ + 0 o p_29570_ + a (Lbgl;)Lbfk; m_6972_ + 0 o p_29531_ + a (Lqr;)V m_7378_ + 0 o p_29541_ + a ()I m_6784_ + a (Lcnb;Lbdv;Lbgd;Lbgt;Lqr;)Lbgt; m_6518_ + 0 o p_29533_ + 1 o p_29534_ + 2 o p_29535_ + 3 o p_29536_ + 4 o p_29537_ + a (Ljava/util/UUID;)V m_6925_ + 0 o p_29539_ + a (Laif;Lbfe;)Lbfe; m_142606_ + 0 o p_149005_ + 1 o p_149006_ + a (I)V m_7870_ + 0 o p_29543_ + a_ ()V m_8097_ + b ()Ljava/util/UUID; m_6120_ + b (Lqr;)V m_7380_ + 0 o p_29548_ + b (Lgu;Ldcb;)V m_7355_ + 0 o p_29545_ + 1 o p_29546_ + c ()V m_6825_ + c (Lbfn;Lcmn;Lbgd;Lgu;Lapf;)Z m_218249_ + static + 0 o p_218250_ + 1 o p_218251_ + 2 o p_218252_ + 3 o p_218253_ + 4 o p_218254_ + d (Lben;)Lamg; m_7975_ + 0 o p_29559_ + eY ()F m_6108_ + g_ ()Lamg; m_5592_ + l ()V m_8119_ + m (Lcfz;)Z m_6898_ + 0 o p_29565_ + q ()Lbhf$a; m_29560_ + static + r ()V m_29561_ + s ()Lamg; m_7515_ + w ()Z m_29562_ + w (Z)V m_29567_ + 0 o p_29568_ + x ()V m_8099_ + z (Lbfj;)Z m_7327_ + 0 o p_29522_ +bsd$a net/minecraft/world/entity/animal/PolarBear$PolarBearAttackPlayersGoal + i f_29571_ + (Lbsd;)V + 0 o p_29573_ + a ()Z m_8036_ + l ()D m_7623_ +bsd$b net/minecraft/world/entity/animal/PolarBear$PolarBearHurtByTargetGoal + a f_29576_ + (Lbsd;)V + 0 o p_29578_ + a (Lbgb;Lbfz;)V m_5766_ + 0 o p_29580_ + 1 o p_29581_ + c ()V m_8056_ +bsd$c net/minecraft/world/entity/animal/PolarBear$PolarBearMeleeAttackGoal + b f_29583_ + (Lbsd;)V + 0 o p_29585_ + a (Lbfz;)D m_6639_ + 0 o p_29587_ + a (Lbfz;D)V m_6739_ + 0 o p_29589_ + 1 o p_29590_ + d ()V m_8041_ +bsd$d net/minecraft/world/entity/animal/PolarBear$PolarBearPanicGoal + h f_29592_ + (Lbsd;)V + 0 o p_29594_ + h ()Z m_202729_ +bse net/minecraft/world/entity/animal/Pufferfish + b f_149007_ + bT f_29598_ + bU f_29599_ + bV f_149008_ + bW f_149009_ + c f_149010_ + d f_149011_ + e f_29596_ + ()V + static + (Lbfn;Lcmm;)V + 0 o p_29602_ + 1 o p_29603_ + a (Lbgl;)Lbfk; m_6972_ + 0 o p_29608_ + a (Lqr;)V m_7378_ + 0 o p_29613_ + a (Laby;)V m_7350_ + 0 o p_29615_ + a (Lbgb;)V m_29605_ + 0 o p_29606_ + a_ ()V m_8097_ + b (Lqr;)V m_7380_ + 0 o p_29624_ + b ()Lcfz; m_28282_ + b (Lbgb;)Z m_149012_ + 0 o p_149013_ + b_ ()V m_8107_ + b_ (Lbyo;)V m_6123_ + 0 o p_29617_ + c (I)V m_29618_ + 0 o p_29619_ + d (Lben;)Lamg; m_7975_ + 0 o p_29628_ + fZ ()Lamg; m_5699_ + g_ ()Lamg; m_5592_ + ga ()I m_29631_ + l ()V m_8119_ + l (Lbfz;)Z m_289135_ + static + 0 o p_289442_ + s ()Lamg; m_7515_ + s (I)F m_29638_ + static + 0 o p_29639_ + x ()V m_8099_ +bse$a net/minecraft/world/entity/animal/Pufferfish$PufferfishPuffGoal + a f_29640_ + (Lbse;)V + 0 o p_29642_ + a ()Z m_8036_ + a (Lbfz;)Z m_149014_ + 0 o p_149015_ + c ()V m_8056_ + d ()V m_8041_ +bsf net/minecraft/world/entity/animal/Rabbit + bT f_149016_ + bU f_149017_ + bW f_149018_ + bX f_149019_ + bY f_149020_ + bZ f_149028_ + ca f_149029_ + cb f_29647_ + cc f_29648_ + cd f_149030_ + ce f_29649_ + cf f_29650_ + cg f_29651_ + ch f_29652_ + ci f_29653_ + ()V + static + (Lbfn;Lcmm;)V + 0 o p_29656_ + 1 o p_29657_ + D (F)F m_29735_ + 0 o p_29736_ + W ()V m_8024_ + a (Lbsf;)Z m_29670_ + static + 0 o p_29671_ + a (Lqr;)V m_7378_ + 0 o p_29684_ + a (Lcnb;Lbdv;Lbgd;Lbgt;Lqr;)Lbgt; m_6518_ + 0 o p_29678_ + 1 o p_29679_ + 2 o p_29680_ + 3 o p_29681_ + 4 o p_29682_ + a (Laif;Lbfe;)Lbfe; m_142606_ + 0 o p_149032_ + 1 o p_149033_ + a (Ljava/lang/Object;)V m_28464_ + 0 o p_262589_ + a (Lcmn;Lgu;)Lbsf$h; m_262482_ + static + 0 o p_262699_ + 1 o p_262700_ + a (Lbsf$h;)V m_28464_ + 0 o p_262578_ + a_ ()V m_8097_ + b (Lqr;)V m_7380_ + 0 o p_29697_ + b (Lbsf;)Lblw; m_284153_ + static + 0 o p_284955_ + b (B)V m_7822_ + 0 o p_29663_ + b (Laif;Lbfe;)Lbsf; m_142606_ + 0 o p_149035_ + 1 o p_149036_ + b_ ()V m_8107_ + bg ()Z m_5843_ + c (Lbfn;Lcmn;Lbgd;Lgu;Lapf;)Z m_218255_ + static + 0 o p_218256_ + 1 o p_218257_ + 2 o p_218258_ + 3 o p_218259_ + 4 o p_218260_ + c (DD)V m_29686_ + 0 o p_29687_ + 1 o p_29688_ + c ()Ljava/lang/Object; m_28554_ + cG ()Leei; m_7939_ + cY ()Lami; m_5720_ + d (Lben;)Lamg; m_7975_ + 0 o p_29715_ + eU ()F m_6118_ + eW ()V m_6135_ + fY ()Lbsf$h; m_28554_ + g_ ()Lamg; m_5592_ + ge ()V m_29720_ + gf ()V m_29721_ + gg ()V m_29722_ + gh ()V m_29723_ + gi ()Z m_29724_ + i (D)V m_29725_ + 0 o p_29726_ + l (Lcfz;)Z m_149037_ + static + 0 o p_149038_ + m (Lcfz;)Z m_6898_ + 0 o p_29729_ + q ()V m_29716_ + r ()Lbhf$a; m_29717_ + static + r (Z)V m_6862_ + 0 o p_29732_ + s ()Lamg; m_7515_ + w ()Lamg; m_29718_ + x ()V m_8099_ + z (Lbfj;)Z m_7327_ + 0 o p_29659_ +bsf$a net/minecraft/world/entity/animal/Rabbit$EvilRabbitAttackGoal + (Lbsf;)V + 0 o p_29738_ + a (Lbfz;)D m_6639_ + 0 o p_29740_ +bsf$b net/minecraft/world/entity/animal/Rabbit$RabbitAvoidEntityGoal + i f_29741_ + (Lbsf;Ljava/lang/Class;FDD)V + 0 o p_29743_ + 1 o p_29744_ + 2 o p_29745_ + 3 o p_29746_ + 4 o p_29747_ + a ()Z m_8036_ +bsf$c net/minecraft/world/entity/animal/Rabbit$RabbitGroupData + a f_262235_ + (Lbsf$h;)V + 0 o p_262662_ +bsf$d net/minecraft/world/entity/animal/Rabbit$RabbitJumpControl + b f_29753_ + c f_29754_ + (Lbsf;)V + 0 o p_186229_ + a (Z)V m_29758_ + 0 o p_29759_ + b ()V m_8124_ + c ()Z m_29761_ + d ()Z m_29762_ +bsf$e net/minecraft/world/entity/animal/Rabbit$RabbitMoveControl + l f_29763_ + m f_29764_ + (Lbsf;)V + 0 o p_29766_ + a (DDDD)V m_6849_ + 0 o p_29769_ + 1 o p_29770_ + 2 o p_29771_ + 3 o p_29772_ + a ()V m_8126_ +bsf$f net/minecraft/world/entity/animal/Rabbit$RabbitPanicGoal + h f_29773_ + (Lbsf;D)V + 0 o p_29775_ + 1 o p_29776_ + e ()V m_8037_ +bsf$g net/minecraft/world/entity/animal/Rabbit$RaidGardenGoal + g f_29778_ + h f_29779_ + i f_29780_ + (Lbsf;)V + 0 o p_29782_ + a ()Z m_8036_ + a (Lcmp;Lgu;)Z m_6465_ + 0 o p_29785_ + 1 o p_29786_ + b ()Z m_8045_ + e ()V m_8037_ +bsf$h net/minecraft/world/entity/animal/Rabbit$Variant + a BROWN + b WHITE + c BLACK + d WHITE_SPLOTCHED + e GOLD + f SALT + g EVIL + h f_262245_ + i f_262319_ + j f_262203_ + k f_262279_ + l $VALUES + ()V + static + (Ljava/lang/String;IILjava/lang/String;)V + 0 o p_262614_ + 1 o p_262703_ + 2 o p_262657_ + 3 o p_262679_ + a (I)Lbsf$h; m_262367_ + static + 0 o p_262665_ + a ()I m_262377_ + b ()[Lbsf$h; m_262433_ + static + c ()Ljava/lang/String; m_7912_ + valueOf (Ljava/lang/String;)Lbsf$h; valueOf + static + 0 o p_262706_ + values ()[Lbsf$h; values + static +bsg net/minecraft/world/entity/animal/Salmon + (Lbfn;Lcmm;)V + 0 o p_29790_ + 1 o p_29791_ + b ()Lcfz; m_28282_ + d (Lben;)Lamg; m_7975_ + 0 o p_29795_ + fZ ()Lamg; m_5699_ + g_ ()Lamg; m_5592_ + ga ()I m_6031_ + s ()Lamg; m_7515_ +bsh net/minecraft/world/entity/animal/Sheep + bT f_149039_ + bU f_29799_ + bW f_29800_ + bX f_29801_ + bY f_29802_ + bZ f_29803_ + ()V + static + (Lbfn;Lcmm;)V + 0 o p_29806_ + 1 o p_29807_ + D (F)F m_29880_ + 0 o p_29881_ + E (F)F m_29882_ + 0 o p_29883_ + L ()V m_8035_ + Q ()Lacq; m_7582_ + W ()V m_8024_ + a (Lbrl;Lbrl;)Lcen; m_29823_ + 0 o p_29824_ + 1 o p_29825_ + a (Lqr;)V m_7378_ + 0 o p_29845_ + a (Lcnb;Lbdv;Lbgd;Lbgt;Lqr;)Lbgt; m_6518_ + 0 o p_29835_ + 1 o p_29836_ + 2 o p_29837_ + 3 o p_29838_ + 4 o p_29839_ + a ()Z m_6220_ + a (Lapf;)Lcen; m_218261_ + static + 0 o p_218262_ + a (Lcen;Lcen;)Lcbt; m_29831_ + static + 0 o p_29832_ + 1 o p_29833_ + a (Lami;)V m_5851_ + 0 o p_29819_ + a (Laif;Lbfe;)Lbfe; m_142606_ + 0 o p_149041_ + 1 o p_149042_ + a (Ljava/util/EnumMap;)V m_29840_ + static + 0 o p_29841_ + a (Lcen;)[F m_29829_ + static + 0 o p_29830_ + a (Lcbt;Lcit;)Lcfz; m_289136_ + 0 o p_289443_ + 1 o p_289444_ + a (Lbdw;Lbyo;)V m_29820_ + static + 0 o p_29821_ + 1 o p_29822_ + a_ ()V m_8097_ + b (Lbyo;Lbdw;)Lbdx; m_6071_ + 0 o p_29853_ + 1 o p_29854_ + b (Lqr;)V m_7380_ + 0 o p_29864_ + b (Lcen;Lcen;)Lcen; m_289137_ + 0 o p_289445_ + 1 o p_289446_ + b (Lgu;Ldcb;)V m_7355_ + 0 o p_29861_ + 1 o p_29862_ + b (Lcen;)V m_29855_ + 0 o p_29856_ + b (B)V m_7822_ + 0 o p_29814_ + b (Laif;Lbfe;)Lbsh; m_142606_ + 0 o p_149044_ + 1 o p_149045_ + b (Lbgl;Lbfk;)F m_6431_ + 0 o p_29850_ + 1 o p_29851_ + b_ ()V m_8107_ + c (Lcen;)[F m_29865_ + static + 0 o p_29866_ + d (Lcen;)Lcen; m_29867_ + static + 0 o p_29868_ + d (Lben;)Lamg; m_7975_ + 0 o p_29872_ + g_ ()Lamg; m_5592_ + q ()Lbhf$a; m_29873_ + static + r ()Lcen; m_29874_ + s ()Lamg; m_7515_ + w ()Z m_29875_ + w (Z)V m_29878_ + 0 o p_29879_ + x ()V m_8099_ +bsh$1 net/minecraft/world/entity/animal/Sheep$1 + (Lcck;I)V + 0 o p_29885_ + 1 o p_29886_ + a (Lbyo;I)Lcfz; m_7648_ + 0 o p_218264_ + 1 o p_218265_ + a (Lbyo;)Z m_6875_ + 0 o p_29888_ +bsh$2 net/minecraft/world/entity/animal/Sheep$2 + a f_29889_ + ()V + static +bsi net/minecraft/world/entity/animal/ShoulderRidingEntity + bW f_149046_ + bX f_29891_ + (Lbfn;Lcmm;)V + 0 o p_29893_ + 1 o p_29894_ + b (Laig;)Z m_29895_ + 0 o p_29896_ + gh ()Z m_29897_ + l ()V m_8119_ +bsj net/minecraft/world/entity/animal/SnowGolem + b f_29899_ + c f_149047_ + d f_149048_ + ()V + static + (Lbfn;Lcmm;)V + 0 o p_29902_ + 1 o p_29903_ + a (Lqr;)V m_7378_ + 0 o p_29915_ + a (Lbfz;F)V m_6504_ + 0 o p_29912_ + 1 o p_29913_ + a (Lbdw;Lbyo;)V m_29908_ + static + 0 o p_29909_ + 1 o p_29910_ + a ()Z m_6220_ + a (Lami;)V m_5851_ + 0 o p_29907_ + a_ ()V m_8097_ + b (Lbyo;Lbdw;)Lbdx; m_6071_ + 0 o p_29920_ + 1 o p_29921_ + b (Lqr;)V m_7380_ + 0 o p_29923_ + b (Lbgl;Lbfk;)F m_6431_ + 0 o p_29917_ + 1 o p_29918_ + b_ ()V m_8107_ + cG ()Leei; m_7939_ + d (Lben;)Lamg; m_7975_ + 0 o p_29929_ + fb ()Z m_6126_ + g_ ()Lamg; m_5592_ + l (Lbfz;)Z m_29931_ + static + 0 o p_29932_ + q ()Lbhf$a; m_29934_ + static + r ()Z m_29930_ + s ()Lamg; m_7515_ + w (Z)V m_29936_ + 0 o p_29937_ + x ()V m_8099_ +bsk net/minecraft/world/entity/animal/Squid + b f_29938_ + bT f_29940_ + bU f_29941_ + bV f_29942_ + bW f_29943_ + bX f_29944_ + bY f_29945_ + bZ f_29946_ + c f_29950_ + ca f_29947_ + cb f_29948_ + cc f_29949_ + d f_29951_ + e f_29939_ + (Lbfn;Lcmm;)V + 0 o p_29953_ + 1 o p_29954_ + a (Lbsk;)Z m_149049_ + static + 0 o p_149050_ + a (Lben;F)Z m_6469_ + 0 o p_29963_ + 1 o p_29964_ + a (FFF)V m_29958_ + 0 o p_29959_ + 1 o p_29960_ + 2 o p_29961_ + a (Lbyo;)Z m_6573_ + 0 o p_149052_ + aS ()Lbfj$b; m_142319_ + b (B)V m_7822_ + 0 o p_29957_ + b (Lbgl;Lbfk;)F m_6431_ + 0 o p_29975_ + 1 o p_29976_ + b_ ()V m_8107_ + d (Lben;)Lamg; m_7975_ + 0 o p_29980_ + eR ()F m_6121_ + fY ()Lbhf$a; m_29988_ + static + fZ ()Z m_29981_ + g_ ()Lamg; m_5592_ + h (Leei;)V m_7023_ + 0 o p_29984_ + j (Leei;)Leei; m_29985_ + 0 o p_29986_ + q ()Lit; m_142033_ + r ()Lamg; m_142555_ + s ()Lamg; m_7515_ + w ()V m_29982_ + x ()V m_8099_ +bsk$a net/minecraft/world/entity/animal/Squid$SquidFleeGoal + a f_29990_ + b f_149054_ + c f_149055_ + d f_149056_ + e f_29991_ + (Lbsk;)V + 0 o p_29993_ + K_ ()Z m_183429_ + a ()Z m_8036_ + c ()V m_8056_ + e ()V m_8037_ +bsk$b net/minecraft/world/entity/animal/Squid$SquidRandomMovementGoal + a f_30000_ + b f_30001_ + (Lbsk;Lbsk;)V + 0 o p_30003_ + 1 o p_30004_ + a ()Z m_8036_ + e ()V m_8037_ +bsl net/minecraft/world/entity/animal/TropicalFish + b f_149057_ + c f_30007_ + d f_30011_ + e f_30010_ + ()V + static + (Lbfn;Lcmm;)V + 0 o p_30015_ + 1 o p_30016_ + a (Lqr;)V m_7378_ + 0 o p_30029_ + a (Lcnb;Lbdv;Lbgd;Lbgt;Lqr;)Lbgt; m_6518_ + 0 o p_30023_ + 1 o p_30024_ + 2 o p_30025_ + 3 o p_30026_ + 4 o p_30027_ + a (Ljava/lang/Object;)V m_28464_ + 0 o p_262668_ + a (Lbsl$b;)V m_28464_ + 0 o p_262594_ + a (Lbsl$b;Lcen;Lcen;)I m_262388_ + static + 0 o p_262598_ + 1 o p_262618_ + 2 o p_262683_ + a_ ()V m_8097_ + b (Lqr;)V m_7380_ + 0 o p_30033_ + b ()Lcfz; m_28282_ + b (Lbfn;Lcmn;Lbgd;Lgu;Lapf;)Z m_218266_ + static + 0 o p_218267_ + 1 o p_218268_ + 2 o p_218269_ + 3 o p_218270_ + 4 o p_218271_ + c (I)Ljava/lang/String; m_30030_ + static + 0 o p_30031_ + c ()Ljava/lang/Object; m_28554_ + d (I)Z m_7296_ + 0 o p_30035_ + d (Lben;)Lamg; m_7975_ + 0 o p_30039_ + fZ ()Lamg; m_5699_ + g_ ()Lamg; m_5592_ + gh ()Lcen; m_262459_ + gi ()Lcen; m_262477_ + gj ()Lbsl$b; m_28554_ + gk ()I m_30042_ + l (Lcfz;)V m_6872_ + 0 o p_30049_ + s ()Lamg; m_7515_ + s (I)Lcen; m_30050_ + static + 0 o p_30051_ + t (I)Lcen; m_30052_ + static + 0 o p_30053_ + u (I)Lbsl$b; m_262390_ + static + 0 o p_262604_ + v (I)V m_30056_ + 0 o p_30057_ +bsl$a net/minecraft/world/entity/animal/TropicalFish$Base + a SMALL + b LARGE + c f_262205_ + d $VALUES + ()V + static + (Ljava/lang/String;II)V + 0 o p_262701_ + 1 o p_262702_ + 2 o p_262648_ + a ()[Lbsl$a; m_262471_ + static + valueOf (Ljava/lang/String;)Lbsl$a; valueOf + static + 0 o p_262569_ + values ()[Lbsl$a; values + static +bsl$b net/minecraft/world/entity/animal/TropicalFish$Pattern + a KOB + b SUNSTREAK + c SNOOPER + d DASHER + e BRINELY + f SPOTTY + g FLOPPER + h STRIPEY + i GLITTER + j BLOCKFISH + k BETTY + l CLAYFISH + m f_262323_ + n f_262299_ + o f_262228_ + p f_262207_ + q f_30078_ + r f_262219_ + s $VALUES + ()V + static + (Ljava/lang/String;ILjava/lang/String;Lbsl$a;I)V + 0 o p_262688_ + 1 o p_262611_ + 2 o p_262625_ + 3 o p_262680_ + 4 o p_262584_ + a (I)Lbsl$b; m_262381_ + static + 0 o p_262653_ + a ()Lbsl$a; m_262371_ + b ()I m_262435_ + c ()Ljava/lang/String; m_7912_ + d ()Lsw; m_262502_ + e ()[Lbsl$b; m_149065_ + static + valueOf (Ljava/lang/String;)Lbsl$b; valueOf + static + 0 o p_30095_ + values ()[Lbsl$b; values + static +bsl$c net/minecraft/world/entity/animal/TropicalFish$TropicalFishGroupData + b f_262277_ + (Lbsl;Lbsl$d;)V + 0 o p_262626_ + 1 o p_262579_ +bsl$d net/minecraft/world/entity/animal/TropicalFish$Variant + a f_262204_ + b f_262309_ + c f_262223_ + (Lbsl$b;Lcen;Lcen;)V + 0 o f_262204_ + 1 o f_262309_ + 2 o f_262223_ + a ()I m_262472_ + b ()Lbsl$b; f_262204_ + c ()Lcen; f_262309_ + d ()Lcen; f_262223_ + equals (Ljava/lang/Object;)Z equals + 0 o p_262670_ + hashCode ()I hashCode + toString ()Ljava/lang/String; toString +bsm net/minecraft/world/entity/animal/Turtle + bT f_149066_ + bU f_30122_ + bW f_30123_ + bX f_30124_ + bY f_30125_ + bZ f_30126_ + ca f_30127_ + cb f_30128_ + cc f_30129_ + ()V + static + (Lbfn;Lcmm;)V + 0 o p_30132_ + 1 o p_30133_ + M ()I m_8100_ + a (Lqr;)V m_7378_ + 0 o p_30162_ + a (Lcnb;Lbdv;Lbgd;Lbgt;Lqr;)Lbgt; m_6518_ + 0 o p_30153_ + 1 o p_30154_ + 2 o p_30155_ + 3 o p_30156_ + 4 o p_30157_ + a (Lgu;Lcmp;)F m_5610_ + 0 o p_30159_ + 1 o p_30160_ + a (Lbyo;)Z m_6573_ + 0 o p_30151_ + a (Laif;Lbfe;)Lbfe; m_142606_ + 0 o p_149068_ + 1 o p_149069_ + a (Lbsm;)Lapf; m_218272_ + static + 0 o p_218273_ + a (Laif;Lbfy;)V m_8038_ + 0 o p_30140_ + 1 o p_30141_ + aI ()F m_6059_ + aJ ()Lamg; m_5501_ + a_ ()V m_8097_ + b (Lqr;)V m_7380_ + 0 o p_30176_ + b (Lcmm;)Lbpj; m_6037_ + 0 o p_30171_ + b (Lbsm;)Lapf; m_218274_ + static + 0 o p_218275_ + b (Lgu;Ldcb;)V m_7355_ + 0 o p_30173_ + 1 o p_30174_ + b_ ()V m_8107_ + c (Lbfn;Lcmn;Lbgd;Lgu;Lapf;)Z m_218276_ + static + 0 o p_218277_ + 1 o p_218278_ + 2 o p_218279_ + 3 o p_218280_ + 4 o p_218281_ + cw ()Z m_6063_ + d (Lben;)Lamg; m_7975_ + 0 o p_30202_ + dN ()Z m_6040_ + dV ()F m_6134_ + e (F)V m_5625_ + 0 o p_30192_ + eN ()Lbge; m_6336_ + fY ()Lgu; m_30208_ + fZ ()Z m_5957_ + g_ ()Lamg; m_5592_ + ge ()Lgu; m_30209_ + gf ()Z m_30211_ + gg ()Z m_30212_ + h (Leei;)V m_7023_ + 0 o p_30218_ + i (Lgu;)V m_30219_ + 0 o p_30220_ + j (Lgu;)V m_30223_ + 0 o p_30224_ + l (Lbfz;)Z m_289138_ + static + 0 o p_289447_ + m ()V m_30232_ + m (Lcfz;)Z m_6898_ + 0 o p_30231_ + q ()Z m_30205_ + r ()Z m_30206_ + s ()Lamg; m_7515_ + w (Z)V m_30234_ + 0 o p_30235_ + w ()Lbhf$a; m_30207_ + static + x ()V m_8099_ + x (Z)V m_30236_ + 0 o p_30237_ + y (Z)V m_30238_ + 0 o p_30239_ + z (Z)V m_30240_ + 0 o p_30241_ +bsm$a net/minecraft/world/entity/animal/Turtle$TurtleBreedGoal + d f_30242_ + (Lbsm;D)V + 0 o p_30244_ + 1 o p_30245_ + a ()Z m_8036_ + g ()V m_8026_ +bsm$b net/minecraft/world/entity/animal/Turtle$TurtleGoHomeGoal + a f_30248_ + b f_30249_ + c f_30250_ + d f_30251_ + e f_149074_ + (Lbsm;D)V + 0 o p_30253_ + 1 o p_30254_ + a ()Z m_8036_ + b ()Z m_8045_ + c ()V m_8056_ + d ()V m_8041_ + e ()V m_8037_ +bsm$c net/minecraft/world/entity/animal/Turtle$TurtleGoToWaterGoal + g f_149075_ + h f_30260_ + (Lbsm;D)V + 0 o p_30262_ + 1 o p_30263_ + a ()Z m_8036_ + a (Lcmp;Lgu;)Z m_6465_ + 0 o p_30270_ + 1 o p_30271_ + b ()Z m_8045_ + l ()Z m_8064_ +bsm$d net/minecraft/world/entity/animal/Turtle$TurtleLayEggGoal + g f_30274_ + (Lbsm;D)V + 0 o p_30276_ + 1 o p_30277_ + a ()Z m_8036_ + a (Lcmp;Lgu;)Z m_6465_ + 0 o p_30280_ + 1 o p_30281_ + b ()Z m_8045_ + e ()V m_8037_ +bsm$e net/minecraft/world/entity/animal/Turtle$TurtleMoveControl + l f_30284_ + (Lbsm;)V + 0 o p_30286_ + a ()V m_8126_ + g ()V m_30288_ +bsm$f net/minecraft/world/entity/animal/Turtle$TurtlePanicGoal + (Lbsm;D)V + 0 o p_30290_ + 1 o p_30291_ + a ()Z m_8036_ +bsm$g net/minecraft/world/entity/animal/Turtle$TurtlePathNavigation + (Lbsm;Lcmm;)V + 0 o p_30294_ + 1 o p_30295_ + a (Lgu;)Z m_6342_ + 0 o p_30300_ +bsm$h net/minecraft/world/entity/animal/Turtle$TurtleRandomStrollGoal + i f_30301_ + (Lbsm;DI)V + 0 o p_30303_ + 1 o p_30304_ + 2 o p_30305_ + a ()Z m_8036_ +bsm$i net/minecraft/world/entity/animal/Turtle$TurtleTravelGoal + a f_30329_ + b f_30330_ + c f_30331_ + (Lbsm;D)V + 0 o p_30333_ + 1 o p_30334_ + a ()Z m_8036_ + b ()Z m_8045_ + c ()V m_8056_ + d ()V m_8041_ + e ()V m_8037_ +bsn net/minecraft/world/entity/animal/WaterAnimal + (Lbfn;Lcmm;)V + 0 o p_30341_ + 1 o p_30342_ + M ()I m_8100_ + a (Lcmp;)Z m_6914_ + 0 o p_30348_ + a (Lbyo;)Z m_6573_ + 0 o p_30346_ + ao ()V m_6075_ + b (I)V m_6229_ + 0 o p_30344_ + c (Lbfn;Lcmn;Lbgd;Lgu;Lapf;)Z m_218282_ + static + 0 o p_218283_ + 1 o p_218284_ + 2 o p_218285_ + 3 o p_218286_ + 4 o p_218287_ + cw ()Z m_6063_ + dN ()Z m_6040_ + eN ()Lbge; m_6336_ + ea ()I m_213860_ +bso net/minecraft/world/entity/animal/Wolf + bW f_30357_ + bX f_30358_ + bY f_30359_ + bZ f_30360_ + ca f_149082_ + cb f_149083_ + cc f_30361_ + cd f_30362_ + ce f_30363_ + cf f_30364_ + cg f_30365_ + ch f_30366_ + ci f_30355_ + cj f_30356_ + ()V + static + (Lbfn;Lcmm;)V + 0 o p_30369_ + 1 o p_30370_ + A (Z)V m_30444_ + 0 o p_30445_ + D (F)F m_30446_ + 0 o p_30447_ + E (F)F m_30448_ + 0 o p_30449_ + X ()I m_8132_ + a (Lqr;)V m_7378_ + 0 o p_30402_ + a ()I m_6784_ + a (Lben;)V m_6667_ + 0 o p_30384_ + a (Ljava/util/UUID;)V m_6925_ + 0 o p_30400_ + a (Lbyo;)Z m_6573_ + 0 o p_30396_ + a (Lbrl;)Z m_7848_ + 0 o p_30392_ + a (Laif;Lbfe;)Lbfe; m_142606_ + 0 o p_149085_ + 1 o p_149086_ + a (Lbfz;Lbfz;)Z m_7757_ + 0 o p_30389_ + 1 o p_30390_ + a (Lbso;)Lapf; m_218289_ + static + 0 o p_218290_ + a (I)V m_7870_ + 0 o p_30404_ + a (Lben;F)Z m_6469_ + 0 o p_30386_ + 1 o p_30387_ + a (Lcen;)V m_30397_ + 0 o p_30398_ + a_ ()V m_8097_ + b (Lbyo;Lbdw;)Lbdx; m_6071_ + 0 o p_30412_ + 1 o p_30413_ + b ()Ljava/util/UUID; m_6120_ + b (Lqr;)V m_7380_ + 0 o p_30418_ + b (Laif;Lbfe;)Lbso; m_142606_ + 0 o p_149088_ + 1 o p_149089_ + b (Lgu;Ldcb;)V m_7355_ + 0 o p_30415_ + 1 o p_30416_ + b (B)V m_7822_ + 0 o p_30379_ + b (Lbgl;Lbfk;)F m_6431_ + 0 o p_30409_ + 1 o p_30410_ + b_ ()V m_8107_ + c ()V m_6825_ + c (Lbfn;Lcmn;Lbgd;Lgu;Lapf;)Z m_218291_ + static + 0 o p_218292_ + 1 o p_218293_ + 2 o p_218294_ + 3 o p_218295_ + 4 o p_218296_ + cG ()Leei; m_7939_ + d (Lben;)Lamg; m_7975_ + 0 o p_30424_ + eR ()F m_6121_ + f (FF)F m_30432_ + 0 o p_30433_ + 1 o p_30434_ + fE ()I m_5792_ + g_ ()Lamg; m_5592_ + ge ()Lbhf$a; m_30425_ + static + gf ()Z m_30426_ + gg ()F m_30427_ + gh ()Lcen; m_30428_ + gi ()Z m_30429_ + gj ()V m_30430_ + l ()V m_8119_ + m (Lbfz;)Z m_289139_ + static + 0 o p_289448_ + m (Lcfz;)Z m_6898_ + 0 o p_30440_ + s ()Lamg; m_7515_ + x ()V m_8099_ + x (Z)V m_7105_ + 0 o p_30443_ + z (Lbfj;)Z m_7327_ + 0 o p_30372_ +bso$a net/minecraft/world/entity/animal/Wolf$WolfAvoidEntityGoal + i f_30450_ + j f_30451_ + (Lbso;Lbso;Ljava/lang/Class;FDD)V + 0 o p_30453_ + 1 o p_30454_ + 2 o p_30455_ + 3 o p_30456_ + 4 o p_30457_ + 5 o p_30458_ + a (Lbtn;)Z m_30460_ + 0 o p_30461_ + a ()Z m_8036_ + c ()V m_8056_ + e ()V m_8037_ +bso$b net/minecraft/world/entity/animal/Wolf$WolfPanicGoal + h f_203121_ + (Lbso;D)V + 0 o p_203123_ + 1 o p_203124_ + h ()Z m_202729_ +bsp net/minecraft/world/entity/animal/allay/Allay + b f_218297_ + bT f_218299_ + bU f_238768_ + bV f_238696_ + bW f_238650_ + bX f_238776_ + bY f_238543_ + bZ f_238742_ + c f_218301_ + ca f_243732_ + cb f_238627_ + cc f_238802_ + cd f_238685_ + ce f_279586_ + cf f_279563_ + cg f_238563_ + ch f_218303_ + ci f_238682_ + cj f_238791_ + ck f_218304_ + cl f_218305_ + cm f_238687_ + cn f_238541_ + co f_238552_ + d f_218306_ + e f_218307_ + ()V + static + (Lbfn;Lcmm;)V + 0 o p_218310_ + 1 o p_218311_ + D (F)F m_218394_ + 0 o p_218395_ + E (F)F m_240056_ + 0 o p_240057_ + R ()Lhz; m_213552_ + V ()V m_8025_ + W ()V m_8024_ + a (Lbyo;Lcfz;)V m_239358_ + 0 o p_239359_ + 1 o p_239360_ + a (Lqr;)V m_7378_ + 0 o p_218350_ + a (Ljava/util/function/BiConsumer;)V m_213651_ + 0 o p_218348_ + a (Lcom/mojang/serialization/Dynamic;)Lbha; m_8075_ + 0 o p_218344_ + a (Lben;F)Z m_6469_ + 0 o p_218339_ + 1 o p_218340_ + a (Lcfz;Lcfz;)Z m_246525_ + 0 o p_249825_ + 1 o p_251595_ + a (Lqr;Lrk;)V m_218351_ + static + 0 o p_218352_ + 1 o p_218353_ + a (Ldgu$a;)V m_279930_ + 0 o p_281082_ + a (DZLdcb;Lgu;)V m_7840_ + 0 o p_218316_ + 1 o p_218317_ + 2 o p_218318_ + 3 o p_218319_ + aP ()Z m_142039_ + a_ ()V m_8097_ + b (Lbyo;Lbdw;)Lbdx; m_6071_ + 0 o p_218361_ + 1 o p_218362_ + b (Lqr;)V m_7380_ + 0 o p_218367_ + b (Lgu;Z)V m_240101_ + 0 o p_240102_ + 1 o p_240103_ + b (Lcmm;)Lbpj; m_6037_ + 0 o p_218342_ + b (Lbvh;)V m_7581_ + 0 o p_218359_ + b (B)V m_7822_ + 0 o p_239347_ + b (Lbgl;Lbfk;)F m_6431_ + 0 o p_218356_ + 1 o p_218357_ + b (Lgu;Ldcb;)V m_7355_ + 0 o p_218364_ + 1 o p_218365_ + b_ ()V m_8107_ + bw ()D m_6049_ + cG ()Leei; m_7939_ + d (Lben;)Lamg; m_7975_ + 0 o p_218369_ + d (Lcfz;Lcfz;)Z m_245613_ + 0 o p_252278_ + 1 o p_250405_ + dK ()Lbha; m_6274_ + dL ()Lbha$b; m_5490_ + e (Lcfz;Lcfz;)Z m_247678_ + 0 o p_248762_ + 1 o p_250839_ + eR ()F m_6121_ + eu ()V m_5907_ + f (Lcfz;)Z m_7066_ + 0 o p_218380_ + fG ()Z m_21531_ + fW ()Z m_213814_ + fY ()Z m_239559_ + fZ ()Z m_246801_ + g_ ()Lamg; m_5592_ + ga ()Z m_239302_ + gb ()Ldgu$a; m_280002_ + gc ()Ldgu$d; m_280445_ + gd ()Z m_218377_ + ge ()Z m_239812_ + gf ()V m_218375_ + gg ()V m_218376_ + gh ()V m_239811_ + gi ()Z m_218324_ + gj ()V m_240069_ + h (Leei;)V m_7023_ + 0 o p_218382_ + h (D)Z m_6785_ + 0 o p_218384_ + k (Lcfz;)Z m_7243_ + 0 o p_218387_ + l (Lcfz;)Z m_239735_ + 0 o p_239736_ + l ()V m_8119_ + q ()Lbhf$a; m_218388_ + static + r ()Z m_218389_ + s ()Lamg; m_7515_ + w (Z)V m_240177_ + 0 o p_240178_ + w ()Lbee; m_35311_ +bsp$a net/minecraft/world/entity/animal/allay/Allay$JukeboxListener + a f_238591_ + b f_238537_ + c f_238604_ + (Lbsp;Ldgp;I)V + 0 o p_239447_ + 1 o p_239448_ + 2 o p_239449_ + a (Laif;Ldgl;Ldgl$a;Leei;)Z m_214068_ + 0 o p_250009_ + 1 o p_251513_ + 2 o p_249478_ + 3 o p_250852_ + a ()Ldgp; m_142460_ + b ()I m_142078_ +bsp$b net/minecraft/world/entity/animal/allay/Allay$VibrationUser + a f_279649_ + b f_279537_ + c f_279641_ + (Lbsp;)V + 0 o p_281716_ + a (Laif;Lgu;Ldgl;Ldgl$a;)Z m_280080_ + 0 o p_282038_ + 1 o p_283385_ + 2 o p_283669_ + 3 o p_282208_ + a ()I m_280351_ + a (Laif;Lgu;Ldgl;Lbfj;Lbfj;F)V m_280271_ + 0 o p_281422_ + 1 o p_281449_ + 2 o p_281488_ + 3 o p_281794_ + 4 o p_281864_ + 5 o p_281642_ + b ()Ldgp; m_280010_ + c ()Lanl; m_280028_ +bsq net/minecraft/world/entity/animal/allay/AllayAi + a f_218396_ + b f_218397_ + c f_218398_ + d f_218399_ + e f_218400_ + f f_218401_ + g f_218402_ + h f_218403_ + i f_218404_ + j f_218405_ + k f_218406_ + l f_244467_ + ()V + a (Lbfz;Lbha;Lhd;)Z m_218412_ + static + 0 o p_218413_ + 1 o p_218414_ + 2 o p_218415_ + a (Lbfz;)Ljava/util/Optional; m_218410_ + static + 0 o p_218411_ + a (Lbha;)Lbha; m_218419_ + static + 0 o p_218420_ + a (Lbfz;Lgu;)V m_218416_ + static + 0 o p_218417_ + 1 o p_218418_ + a (Laig;)Lbje; m_218408_ + static + 0 o p_218409_ + a (Lbsp;)V m_218421_ + static + 0 o p_218422_ + b (Lbsp;)Z m_218427_ + static + 0 o p_218428_ + b (Lbha;)V m_218425_ + static + 0 o p_218426_ + b (Lbfz;)Ljava/util/Optional; m_218423_ + static + 0 o p_218424_ + c (Lbfz;)Z m_271971_ + static + 0 o p_273346_ + c (Lbha;)V m_218431_ + static + 0 o p_218432_ + d (Lbfz;)Ljava/util/Optional; m_218429_ + static + 0 o p_218430_ +bsr net/minecraft/world/entity/animal/allay/package-info +bss net/minecraft/world/entity/animal/axolotl/Axolotl + bT f_149090_ + bU f_149091_ + bW f_149092_ + bX f_149093_ + bY f_149094_ + bZ f_149095_ + ca f_149096_ + cb f_149097_ + cc f_149098_ + cd f_149099_ + ce f_149100_ + cf f_181147_ + cg f_149101_ + ch f_149102_ + ()V + static + (Lbfn;Lcmm;)V + 0 o p_149105_ + 1 o p_149106_ + N ()V m_8032_ + T ()Z m_8023_ + V ()V m_8025_ + W ()V m_8024_ + X ()I m_8132_ + a (Lbfn;Lcnb;Lbgd;Lgu;Lapf;)Z m_218437_ + static + 0 o p_218438_ + 1 o p_218439_ + 2 o p_218440_ + 3 o p_218441_ + 4 o p_218442_ + a (Lqr;)V m_7378_ + 0 o p_149145_ + a (Lapf;)Z m_218435_ + static + 0 o p_218436_ + a (Lcnb;Lbdv;Lbgd;Lbgt;Lqr;)Lbgt; m_6518_ + 0 o p_149132_ + 1 o p_149133_ + 2 o p_149134_ + 3 o p_149135_ + 4 o p_149136_ + a (Lcom/mojang/serialization/Dynamic;)Lbha; m_8075_ + 0 o p_149138_ + a (Laif;Lbfe;)Lbfe; m_142606_ + 0 o p_149112_ + 1 o p_149113_ + a (Lben;F)Z m_6469_ + 0 o p_149115_ + 1 o p_149116_ + a (Lbyo;Lbdw;Lcfz;)V m_142075_ + 0 o p_149124_ + 1 o p_149125_ + 2 o p_149126_ + a (Ljava/lang/Object;)V m_28464_ + 0 o p_262630_ + a (Lbss$d;)V m_28464_ + 0 o p_149118_ + a (Lbss;Lbfz;)V m_218443_ + static + 0 o p_218444_ + 1 o p_218445_ + a ()Ljava/util/Map; m_142115_ + a (Lcmp;)Z m_6914_ + 0 o p_149130_ + a (Lgu;Lcmp;)F m_5610_ + 0 o p_149140_ + 1 o p_149141_ + a (Lbyo;)Z m_6573_ + 0 o p_149122_ + aJ ()Lamg; m_5501_ + aK ()Lamg; m_5509_ + a_ ()V m_8097_ + ao ()V m_6075_ + b (Lbyo;Lbdw;)Lbdx; m_6071_ + 0 o p_149155_ + 1 o p_149156_ + b (Lqr;)V m_7380_ + 0 o p_149158_ + b (Lcmm;)Lbpj; m_6037_ + 0 o p_149128_ + b (Lbgl;Lbfk;)F m_6431_ + 0 o p_149152_ + 1 o p_149153_ + b ()Lcfz; m_28282_ + c (Lqr;)V m_142278_ + 0 o p_149163_ + c ()Ljava/lang/Object; m_28554_ + ce ()I m_6062_ + cw ()Z m_6063_ + d (Lben;)Lamg; m_7975_ + 0 o p_149161_ + dK ()Lbha; m_6274_ + dL ()Lbha$b; m_5490_ + dN ()Z m_6040_ + eN ()Lbge; m_6336_ + ek ()Z m_142066_ + f (Lbyo;)V m_149173_ + 0 o p_149174_ + fC ()I m_8085_ + fY ()Lbss$d; m_28554_ + g_ ()Lamg; m_5592_ + ge ()Z m_149175_ + gf ()Lbhf$a; m_149176_ + static + h (Leei;)V m_7023_ + 0 o p_149181_ + h (D)Z m_6785_ + 0 o p_149183_ + i (Lbfz;)D m_142593_ + 0 o p_149185_ + l (Lcfz;)V m_6872_ + 0 o p_149187_ + m (Lcfz;)Z m_6898_ + 0 o p_149189_ + q ()V m_149177_ + r ()Z m_27487_ + s ()Lamg; m_7515_ + t (I)V m_149193_ + 0 o p_149194_ + w ()Lamg; m_142623_ + w (Z)V m_27497_ + 0 o p_149196_ + x (Z)V m_149198_ + 0 o p_149199_ + z (Lbfj;)Z m_7327_ + 0 o p_149201_ +bss$a net/minecraft/world/entity/animal/axolotl/Axolotl$AxolotlGroupData + a f_149202_ + ([Lbss$d;)V + 0 o p_149204_ + a (Lapf;)Lbss$d; m_218446_ + 0 o p_218447_ +bss$b net/minecraft/world/entity/animal/axolotl/Axolotl$AxolotlLookControl + h f_149207_ + (Lbss;Lbss;I)V + 0 o p_149209_ + 1 o p_149210_ + 2 o p_149211_ + a ()V m_8128_ +bss$c net/minecraft/world/entity/animal/axolotl/Axolotl$AxolotlMoveControl + l f_149213_ + (Lbss;)V + 0 o p_149215_ + a ()V m_8126_ +bss$d net/minecraft/world/entity/animal/axolotl/Axolotl$Variant + a LUCY + b WILD + c GOLD + d CYAN + e BLUE + f f_262307_ + g f_149230_ + h f_149231_ + i f_149232_ + j f_149233_ + k $VALUES + ()V + static + (Ljava/lang/String;IILjava/lang/String;Z)V + 0 o p_149237_ + 1 o p_149238_ + 2 o p_149239_ + 3 o p_149240_ + 4 o p_149241_ + a (Lapf;)Lbss$d; m_218448_ + static + 0 o p_218449_ + a (Lapf;Z)Lbss$d; m_218450_ + static + 0 o p_218451_ + 1 o p_218452_ + a ()I m_149242_ + a (I)Lbss$d; m_262843_ + static + 0 o p_262930_ + a (ZLbss$d;)Z m_149250_ + static + 0 o p_149251_ + 1 o p_149252_ + b (Lapf;)Lbss$d; m_218453_ + static + 0 o p_218454_ + b ()Ljava/lang/String; m_149253_ + b (I)[Lbss$d; m_149243_ + static + 0 o p_149244_ + c ()Ljava/lang/String; m_7912_ + d ()[Lbss$d; m_149258_ + static + valueOf (Ljava/lang/String;)Lbss$d; valueOf + static + 0 o p_149260_ + values ()[Lbss$d; values + static +bst net/minecraft/world/entity/animal/axolotl/AxolotlAi + a f_149279_ + b f_149280_ + c f_149281_ + d f_149282_ + e f_149283_ + f f_149284_ + ()V + static + ()V + a (Lbha;)Lbha; m_149290_ + static + 0 o p_149291_ + a ()Lciz; m_149287_ + static + a (Lbss;)V m_149292_ + static + 0 o p_149293_ + a (Lbfz;)Z m_182380_ + static + 0 o p_182381_ + b (Lbss;)Ljava/util/Optional; m_149298_ + static + 0 o p_149299_ + b (Lbfz;)F m_149288_ + static + 0 o p_149289_ + b (Lbha;)V m_149296_ + static + 0 o p_149297_ + c (Lbha;)V m_149302_ + static + 0 o p_149303_ + c (Lbfz;)F m_149294_ + static + 0 o p_149295_ + d (Lbha;)V m_149306_ + static + 0 o p_149307_ + d (Lbfz;)F m_149300_ + static + 0 o p_149301_ + e (Lbha;)V m_149308_ + static + 0 o p_149309_ +bsu net/minecraft/world/entity/animal/axolotl/PlayDead + ()V + a (Laif;Lbss;J)Z m_6737_ + 0 o p_149322_ + 1 o p_149323_ + 2 o p_149324_ + a (Laif;Lbss;)Z m_6114_ + 0 o p_149319_ + 1 o p_149320_ + a (Laif;Lbfz;)Z m_6114_ + 0 o p_149312_ + 1 o p_149313_ + a (Laif;Lbfz;J)Z m_6737_ + 0 o p_149326_ + 1 o p_149327_ + 2 o p_149328_ + b (Laif;Lbss;J)V m_6735_ + 0 o p_149330_ + 1 o p_149331_ + 2 o p_149332_ + d (Laif;Lbfz;J)V m_6735_ + 0 o p_149315_ + 1 o p_149316_ + 2 o p_149317_ +bsv net/minecraft/world/entity/animal/axolotl/ValidatePlayDead + ()V + a (Lbld$b;Lble;Lble;Laif;Lbfz;J)Z m_257909_ + static + 0 o p_260245_ + 1 o p_260045_ + 2 o p_259903_ + 3 o p_260159_ + 4 o p_259720_ + 5 o p_259523_ + a (Lbld$b;)Lcom/mojang/datafixers/kinds/App; m_257850_ + static + 0 o p_259464_ + a ()Lbhs; m_257726_ + static + a (Lbld$b;Lble;Lble;)Lblg; m_257460_ + static + 0 o p_260284_ + 1 o p_259173_ + 2 o p_259591_ +bsw net/minecraft/world/entity/animal/axolotl/package-info +bsx net/minecraft/world/entity/animal/camel/Camel + bT f_243705_ + bU f_244289_ + bW f_263725_ + bX f_244117_ + bY f_243883_ + bZ f_243928_ + cA f_244638_ + cB f_243730_ + cC f_244306_ + cD f_244455_ + cE f_244476_ + ca f_252486_ + cb f_244242_ + cc f_244047_ + cd f_244243_ + cu f_243982_ + cv f_244195_ + cw f_244101_ + cx f_278128_ + cy f_244084_ + cz f_244435_ + ()V + static + (Lbfn;Lcmm;)V + 0 o p_248516_ + 1 o p_249295_ + C (F)V m_7880_ + 0 o p_251143_ + D ()Lblt; m_7560_ + R_ ()Lamg; m_246265_ + V ()V m_8025_ + W ()V m_8024_ + W_ ()I m_245614_ + a (Lqr;)V m_7378_ + 0 o p_250781_ + a (Lbyo;Lcfz;)Z m_5994_ + 0 o p_249923_ + 1 o p_248995_ + a (Lcnb;Lbdv;Lbgd;Lbgt;Lqr;)Lbgt; m_6518_ + 0 o p_249190_ + 1 o p_251264_ + 2 o p_250254_ + 3 o p_249259_ + 4 o p_251838_ + a (Lcom/mojang/serialization/Dynamic;)Lbha; m_8075_ + 0 o p_251586_ + a (Lbrl;)Z m_7848_ + 0 o p_251650_ + a (Laif;Lbfe;)Lbfe; m_142606_ + 0 o p_250645_ + 1 o p_251080_ + a (Lbyo;Leei;)V m_274498_ + 0 o p_278319_ + 1 o p_278301_ + a (ZF)D m_246718_ + 0 o p_249228_ + 1 o p_251763_ + a (Lbfj;F)V m_264142_ + 0 o p_265624_ + 1 o p_265541_ + a (J)V m_246174_ + 0 o p_248642_ + a (Lbgl;)Lbfk; m_6972_ + 0 o p_248973_ + a (Lbfj;Lbfj$a;)V m_19956_ + 0 o p_289564_ + 1 o p_289551_ + a (Laby;)V m_7350_ + 0 o p_252215_ + a ()Z m_7132_ + a (Lbfj;)V m_246824_ + 0 o p_252070_ + a_ ()V m_8097_ + b (Lbyo;Lbdw;)Lbdx; m_6071_ + 0 o p_249032_ + 1 o p_251004_ + b (Lbyo;)V m_213583_ + 0 o p_248613_ + b (Lqr;)V m_7380_ + 0 o p_250330_ + b (Laif;Lbfe;)Lbsx; m_142606_ + 0 o p_251227_ + 1 o p_251047_ + b (Lbyo;Leei;)Leei; m_274312_ + 0 o p_278264_ + 1 o p_278298_ + b (J)V m_264491_ + 0 o p_265447_ + b (Lbgl;Lbfk;)F m_6431_ + 0 o p_248908_ + 1 o p_250490_ + b (I)V m_7888_ + 0 o p_249138_ + b (Lgu;Ldcb;)V m_7355_ + 0 o p_252056_ + 1 o p_251457_ + b (FLeei;)V m_245980_ + 0 o p_251967_ + 1 o p_275627_ + b ()V m_8012_ + bx ()D m_6048_ + c (I)V m_7199_ + 0 o p_249968_ + cL ()Lbfz; m_6688_ + d (Lben;)Lamg; m_7975_ + 0 o p_250052_ + d ()D m_262813_ + dB ()Z m_264410_ + dL ()Lbha$b; m_5490_ + e (Lbyo;)F m_245547_ + 0 o p_278241_ + f (Lben;F)V m_6475_ + 0 o p_250410_ + 1 o p_251451_ + fC ()I m_8085_ + fY ()Z m_245623_ + gK ()V m_245223_ + gL ()Z m_267631_ + g_ ()Lamg; m_5592_ + ge ()Z m_245259_ + gf ()Lamg; m_7872_ + gg ()Z m_264103_ + gh ()Z m_267745_ + gi ()Z m_245346_ + gj ()V m_245138_ + gk ()V m_246761_ + gl ()V m_247328_ + gm ()J m_246237_ + gn ()Z m_30614_ + h (Leei;)V m_7023_ + 0 o p_250068_ + j (Lbfj;)V m_7340_ + 0 o p_250747_ + l ()V m_8119_ + l (Lbfz;)Leeh; m_274391_ + 0 o p_275271_ + m (Lcfz;)Z m_6898_ + 0 o p_248671_ + o (Lbfj;)Z m_7310_ + 0 o p_248594_ + p (F)Leei; m_245894_ + 0 o p_251477_ + q ()Lbhf$a; m_247319_ + static + r ()Z m_245824_ + s ()Lamg; m_7515_ + v (F)V m_267689_ + 0 o p_268362_ + w ()Z m_245293_ + w (Z)V m_246841_ + 0 o p_251380_ + x ()V m_8099_ +bsx$a net/minecraft/world/entity/animal/camel/Camel$CamelBodyRotationControl + a f_243675_ + (Lbsx;Lbsx;)V + 0 o p_251127_ + 1 o p_248635_ + a ()V m_8121_ +bsx$b net/minecraft/world/entity/animal/camel/Camel$CamelMoveControl + l f_273864_ + (Lbsx;)V + 0 o p_275415_ + a ()V m_8126_ +bsy net/minecraft/world/entity/animal/camel/CamelAi + a f_244010_ + b f_243736_ + c f_244250_ + d f_244120_ + e f_244079_ + f f_244425_ + g f_244270_ + h f_243769_ + ()V + static + ()V + a (Lbha;)Lbha; m_246748_ + static + 0 o p_249515_ + a (Lbsx;Lapf;)V m_246286_ + static + 0 o p_249638_ + 1 o p_250704_ + a (Lbsx;)V m_246127_ + static + 0 o p_250703_ + a ()Lbha$b; m_246665_ + static + a (Lbfz;)Ljava/lang/Float; m_247663_ + static + 0 o p_250812_ + b ()Lciz; m_246511_ + static + b (Lbha;)V m_245825_ + static + 0 o p_249998_ + c (Lbha;)V m_246612_ + static + 0 o p_252342_ +bsy$a net/minecraft/world/entity/animal/camel/CamelAi$CamelPanic + (F)V + 0 o p_249921_ + b (Laif;Lbgi;J)V m_6735_ + 0 o p_249530_ + 1 o p_248643_ + 2 o p_251124_ + d (Laif;Lbfz;J)V m_6735_ + 0 o p_252179_ + 1 o p_251570_ + 2 o p_249892_ +bsy$b net/minecraft/world/entity/animal/camel/CamelAi$RandomSitting + c f_244022_ + (I)V + 0 o p_251207_ + a (Laif;Lbfz;)Z m_6114_ + 0 o p_248655_ + 1 o p_249004_ + a (Laif;Lbsx;)Z m_6114_ + 0 o p_249520_ + 1 o p_250322_ + a (Laif;Lbsx;J)V m_6735_ + 0 o p_250901_ + 1 o p_250345_ + 2 o p_248515_ + d (Laif;Lbfz;J)V m_6735_ + 0 o p_251587_ + 1 o p_249493_ + 2 o p_251503_ +bsz net/minecraft/world/entity/animal/camel/package-info +bt net/minecraft/advancements/critereon/FishingHookPredicate + b f_39756_ + c f_150706_ + d f_39757_ + ()V + static + (Z)V + 0 o p_39760_ + a ()Lcom/google/gson/JsonObject; m_213616_ + a (Lbfj;Laif;Leei;)Z m_153246_ + 0 o p_219716_ + 1 o p_219717_ + 2 o p_219718_ + a (Z)Lbt; m_39766_ + static + 0 o p_39767_ + a (Lcom/google/gson/JsonObject;)Lbt; m_219719_ + static + 0 o p_219720_ + c ()Lbp$a; m_213836_ +bta net/minecraft/world/entity/animal/frog/Frog + bT f_218455_ + bU f_218456_ + bW f_218457_ + bX f_218458_ + bY f_218459_ + bZ f_218460_ + ca f_218461_ + cb f_218464_ + cc f_218465_ + cd f_218466_ + ce f_218467_ + ()V + static + (Lbfn;Lcmm;)V + 0 o p_218470_ + 1 o p_218471_ + V ()V m_8025_ + W ()V m_8024_ + a (Lqr;)V m_7378_ + 0 o p_218496_ + a (Z)V m_6863_ + 0 o p_218500_ + a (Laif;Lbrl;)V m_27563_ + 0 o p_218479_ + 1 o p_218480_ + a (Laby;)V m_7350_ + 0 o p_218498_ + a (Lcnb;Lbdv;Lbgd;Lbgt;Lqr;)Lbgt; m_6518_ + 0 o p_218488_ + 1 o p_218489_ + 2 o p_218490_ + 3 o p_218491_ + 4 o p_218492_ + a (Lcom/mojang/serialization/Dynamic;)Lbha; m_8075_ + 0 o p_218494_ + a (Laif;Lbfe;)Lbfe; m_142606_ + 0 o p_218476_ + 1 o p_218477_ + a (Lbfj;)V m_218481_ + 0 o p_218482_ + a (Lbrw;)V m_28464_ + 0 o p_218484_ + a (Ljava/lang/Object;)V m_28464_ + 0 o p_262640_ + a_ ()V m_8097_ + b (Lqr;)V m_7380_ + 0 o p_218508_ + b (Lcmm;)Lbpj; m_6037_ + 0 o p_218486_ + b (Lgu;Ldcb;)V m_7355_ + 0 o p_218505_ + 1 o p_218506_ + c (Lbfn;Lcmn;Lbgd;Lgu;Lapf;)Z m_218511_ + static + 0 o p_218512_ + 1 o p_218513_ + 2 o p_218514_ + 3 o p_218515_ + 4 o p_218516_ + c ()Ljava/lang/Object; m_28554_ + cw ()Z m_6063_ + d (Lben;)Lamg; m_7975_ + 0 o p_218510_ + d (FF)I m_5639_ + 0 o p_218519_ + 1 o p_218520_ + dK ()Lbha; m_6274_ + dL ()Lbha$b; m_5490_ + dN ()Z m_6040_ + fC ()I m_8085_ + fD ()I m_21529_ + fY ()Lbhf$a; m_218525_ + static + g_ ()Lamg; m_5592_ + h (Leei;)V m_7023_ + 0 o p_218530_ + h_ ()Z m_6162_ + l (Lbfz;)Z m_218532_ + static + 0 o p_218533_ + l ()V m_8119_ + m (Lcfz;)Z m_6898_ + 0 o p_218535_ + q ()V m_218536_ + r ()Ljava/util/Optional; m_218538_ + s ()Lamg; m_7515_ + v (F)V m_267689_ + 0 o p_268239_ + w ()Lbrw; m_28554_ +bta$a net/minecraft/world/entity/animal/frog/Frog$FrogLookControl + h f_218541_ + (Lbta;Lbgb;)V + 0 o p_218543_ + 1 o p_218544_ + c ()Z m_8106_ +bta$b net/minecraft/world/entity/animal/frog/Frog$FrogNodeEvaluator + l f_218546_ + (Z)V + 0 o p_218548_ + a (Lcls;III)Ldxp; m_8086_ + 0 o p_218551_ + 1 o p_218552_ + 2 o p_218553_ + 3 o p_218554_ + a ()Ldxr; m_7171_ +bta$c net/minecraft/world/entity/animal/frog/Frog$FrogPathNavigation + (Lbta;Lcmm;)V + 0 o p_218556_ + 1 o p_218557_ + a (I)Ldxv; m_5532_ + 0 o p_218559_ + b (Ldxp;)Z m_264193_ + 0 o p_265335_ +btb net/minecraft/world/entity/animal/frog/FrogAi + a f_218560_ + b f_218561_ + c f_218562_ + d f_218563_ + e f_218564_ + f f_218565_ + g f_218566_ + h f_218567_ + i f_218568_ + j f_218569_ + ()V + static + ()V + a (Lbha;)Lbha; m_218575_ + static + 0 o p_218576_ + a (Lbfz;)Ljava/lang/Float; m_218573_ + static + 0 o p_218574_ + a ()Lciz; m_218572_ + static + a (Lbgb;Lgu;)Z m_246199_ + static + 0 o p_249699_ + 1 o p_250057_ + a (Lbta;Lapf;)V m_218579_ + static + 0 o p_218580_ + 1 o p_218581_ + a (Lbta;)V m_218577_ + static + 0 o p_218578_ + b (Lbta;)Z m_218588_ + static + 0 o p_218589_ + b (Lbha;)V m_218586_ + static + 0 o p_218587_ + b (Lbfz;)Ljava/lang/Float; m_218584_ + static + 0 o p_218585_ + c (Lbta;)Lamg; m_218592_ + static + 0 o p_218593_ + c (Lbha;)V m_218590_ + static + 0 o p_218591_ + d (Lbha;)V m_218594_ + static + 0 o p_218595_ + d (Lbta;)Ljava/util/Optional; m_218596_ + static + 0 o p_218597_ + e (Lbta;)Ljava/util/Optional; m_218600_ + static + 0 o p_218601_ + e (Lbha;)V m_218598_ + static + 0 o p_218599_ + f (Lbta;)Ljava/util/Optional; m_218604_ + static + 0 o p_218605_ + f (Lbha;)V m_218602_ + static + 0 o p_218603_ + g (Lbha;)V m_218606_ + static + 0 o p_218607_ +btc net/minecraft/world/entity/animal/frog/ShootTongue + c f_218608_ + d f_218609_ + e f_218610_ + f f_238166_ + g f_238181_ + h f_218611_ + i f_218612_ + j f_218613_ + k f_218614_ + l f_218615_ + m f_218616_ + n f_218617_ + o f_218618_ + (Lamg;Lamg;)V + 0 o p_218620_ + 1 o p_218621_ + a (Lbta;Lbfz;)Z m_238358_ + 0 o p_238359_ + 1 o p_238360_ + a (Laif;Lbta;J)Z m_6737_ + 0 o p_218633_ + 1 o p_218634_ + 2 o p_218635_ + a (Laif;Lbta;)Z m_6114_ + 0 o p_218630_ + 1 o p_218631_ + a (Laif;Lbfz;)Z m_6114_ + 0 o p_218623_ + 1 o p_218624_ + a (Laif;Lbfz;J)Z m_6737_ + 0 o p_218637_ + 1 o p_218638_ + 2 o p_218639_ + b (Lbta;Lbfz;)V m_238443_ + 0 o p_238444_ + 1 o p_243335_ + b (Laif;Lbfz;J)V m_6732_ + 0 o p_218648_ + 1 o p_218649_ + 2 o p_218650_ + b (Laif;Lbta;J)V m_6735_ + 0 o p_218644_ + 1 o p_218645_ + 2 o p_218646_ + b (Laif;Lbta;)V m_218640_ + 0 o p_218641_ + 1 o p_218642_ + c (Laif;Lbfz;J)V m_6725_ + 0 o p_218656_ + 1 o p_218657_ + 2 o p_218658_ + c (Laif;Lbta;J)V m_6732_ + 0 o p_218652_ + 1 o p_218653_ + 2 o p_218654_ + d (Laif;Lbta;J)V m_6725_ + 0 o p_218660_ + 1 o p_218661_ + 2 o p_218662_ + d (Laif;Lbfz;J)V m_6735_ + 0 o p_218626_ + 1 o p_218627_ + 2 o p_218628_ +btc$1 net/minecraft/world/entity/animal/frog/ShootTongue$1 + a f_218663_ + ()V + static +btc$a net/minecraft/world/entity/animal/frog/ShootTongue$State + a MOVE_TO_TARGET + b CATCH_ANIMATION + c EAT_ANIMATION + d DONE + e $VALUES + ()V + static + (Ljava/lang/String;I)V + 0 o p_218672_ + 1 o p_218673_ + a ()[Lbtc$a; m_218674_ + static + valueOf (Ljava/lang/String;)Lbtc$a; valueOf + static + 0 o p_218676_ + values ()[Lbtc$a; values + static +btd net/minecraft/world/entity/animal/frog/Tadpole + b f_218678_ + bT f_218679_ + bU f_218680_ + c f_218681_ + d f_218682_ + e f_218683_ + ()V + static + (Lbfn;Lcmm;)V + 0 o p_218686_ + 1 o p_218687_ + V ()V m_8025_ + W ()V m_8024_ + a (Lbyo;Lcfz;)V m_218690_ + 0 o p_218691_ + 1 o p_218692_ + a (Lqr;)V m_7378_ + 0 o p_218698_ + a (Lcom/mojang/serialization/Dynamic;)Lbha; m_8075_ + 0 o p_218696_ + b (Lbyo;Lbdw;)Lbdx; m_6071_ + 0 o p_218703_ + 1 o p_218704_ + b (Lbyo;Lcfz;)V m_218705_ + 0 o p_218706_ + 1 o p_218707_ + b (Lqr;)V m_7380_ + 0 o p_218709_ + b (Lcmm;)Lbpj; m_6037_ + 0 o p_218694_ + b ()Lcfz; m_28282_ + b_ ()V m_8107_ + c (Lqr;)V m_142278_ + 0 o p_218715_ + c (I)V m_218700_ + 0 o p_218701_ + d (Lben;)Lamg; m_7975_ + 0 o p_218713_ + dK ()Lbha; m_6274_ + dL ()Lbha$b; m_5490_ + dY ()Z m_6149_ + fZ ()Lamg; m_5699_ + g_ ()Lamg; m_5592_ + ga ()Lbhf$a; m_218720_ + static + gb ()I m_218721_ + gc ()V m_218722_ + gd ()I m_218723_ + l (Lcfz;)V m_6872_ + 0 o p_218725_ + m (Lcfz;)Z m_218726_ + 0 o p_218727_ + r ()Z m_27487_ + s (I)V m_218710_ + 0 o p_218711_ + s ()Lamg; m_7515_ + w ()Lamg; m_142623_ + w (Z)V m_27497_ + 0 o p_218732_ +bte net/minecraft/world/entity/animal/frog/TadpoleAi + a f_218735_ + b f_218736_ + c f_218737_ + ()V + a (Lbha;)Lbha; m_218741_ + static + 0 o p_218742_ + a (Lbtd;)V m_218743_ + static + 0 o p_218744_ + a (Lbfz;)Ljava/lang/Float; m_218739_ + static + 0 o p_218740_ + b (Lbha;)V m_218745_ + static + 0 o p_218746_ + c (Lbha;)V m_218747_ + static + 0 o p_218748_ +btf net/minecraft/world/entity/animal/frog/package-info +btg net/minecraft/world/entity/animal/goat/Goat + bT f_149342_ + bU f_149343_ + bW f_149344_ + bX f_149345_ + bY f_149346_ + bZ f_218749_ + ca f_182382_ + cb f_182383_ + cc f_149347_ + cd f_218750_ + ce f_218751_ + cf f_149348_ + cg f_149349_ + ()V + static + (Lbfn;Lcmm;)V + 0 o p_149352_ + 1 o p_149353_ + V ()V m_8025_ + W ()V m_8024_ + a (Lbgl;)Lbfk; m_6972_ + 0 o p_149361_ + a (Lqr;)V m_7378_ + 0 o p_149373_ + a (Lcnb;Lbdv;Lbgd;Lbgt;Lqr;)Lbgt; m_6518_ + 0 o p_149365_ + 1 o p_149366_ + 2 o p_149367_ + 3 o p_149368_ + 4 o p_149369_ + a (Lcom/mojang/serialization/Dynamic;)Lbha; m_8075_ + 0 o p_149371_ + a (Laif;Lbfe;)Lbfe; m_142606_ + 0 o p_149358_ + 1 o p_149359_ + a_ ()V m_8097_ + b (Lbyo;Lbdw;)Lbdx; m_6071_ + 0 o p_149379_ + 1 o p_149380_ + b (Lqr;)V m_7380_ + 0 o p_149385_ + b (Laif;Lbfe;)Lbtg; m_142606_ + 0 o p_149376_ + 1 o p_149377_ + b (Lgu;Ldcb;)V m_7355_ + 0 o p_149382_ + 1 o p_149383_ + b (B)V m_7822_ + 0 o p_149356_ + b_ ()V m_8107_ + c (Lbfn;Lcmn;Lbgd;Lgu;Lapf;)Z m_218752_ + static + 0 o p_218753_ + 1 o p_218754_ + 2 o p_218755_ + 3 o p_218756_ + 4 o p_218757_ + d (Lben;)Lamg; m_7975_ + 0 o p_149387_ + d (FF)I m_5639_ + 0 o p_149389_ + 1 o p_149390_ + d (Lcfz;)Lamg; m_7866_ + 0 o p_149394_ + dK ()Lbha; m_6274_ + dL ()Lbha$b; m_5490_ + fC ()I m_8085_ + fY ()Z m_218758_ + g_ ()Lamg; m_5592_ + ge ()Z m_218759_ + gf ()Z m_218760_ + gg ()V m_218761_ + gh ()V m_218762_ + gi ()Z m_149397_ + gj ()F m_149398_ + m ()V m_30232_ + n (F)V m_5616_ + 0 o p_149400_ + q ()Lcfz; m_218763_ + r ()Lbhf$a; m_149401_ + static + s ()Lamg; m_7515_ + w ()Lamg; m_149403_ + w (Z)V m_149405_ + 0 o p_149406_ +bth net/minecraft/world/entity/animal/goat/GoatAi + a f_149420_ + b f_149421_ + c f_149422_ + d f_149423_ + e f_149424_ + f f_149425_ + g f_149426_ + h f_149427_ + i f_149428_ + j f_149429_ + k f_149430_ + l f_149431_ + m f_149432_ + n f_149433_ + o f_149434_ + p f_149435_ + q f_149436_ + r f_149437_ + s f_149438_ + t f_149439_ + ()V + static + ()V + a (Lbha;)Lbha; m_149447_ + static + 0 o p_149448_ + a (Lbtg;Lapf;)V m_218764_ + static + 0 o p_218765_ + 1 o p_218766_ + a (Lbfz;)Ljava/lang/Float; m_149445_ + static + 0 o p_149446_ + a ()Lciz; m_149444_ + static + a (Lbtg;)V m_149455_ + static + 0 o p_149456_ + b (Lbtg;)Lamg; m_218767_ + static + 0 o p_218768_ + b (Lbha;)V m_149453_ + static + 0 o p_149454_ + b (Lbfz;)Z m_289140_ + static + 0 o p_289449_ + c (Lbtg;)I m_218769_ + static + 0 o p_218770_ + c (Lbha;)V m_149457_ + static + 0 o p_149458_ + d (Lbtg;)Lamg; m_218771_ + static + 0 o p_218772_ + d (Lbha;)V m_149461_ + static + 0 o p_149462_ + e (Lbtg;)Lamg; m_149467_ + static + 0 o p_149468_ + e (Lbha;)V m_149465_ + static + 0 o p_149466_ + f (Lbtg;)D m_287093_ + static + 0 o p_287490_ + g (Lbtg;)Lbdi; m_149473_ + static + 0 o p_149474_ + h (Lbtg;)Lamg; m_149475_ + static + 0 o p_149476_ +bti net/minecraft/world/entity/animal/goat/package-info +btj net/minecraft/world/entity/animal/horse/AbstractChestedHorse + bT f_149477_ + bU f_30482_ + ()V + static + (Lbfn;Lcmm;)V + 0 o p_30485_ + 1 o p_30486_ + V_ ()I m_7506_ + a (Lapf;)V m_214179_ + 0 o p_218803_ + a (Lqr;)V m_7378_ + 0 o p_30488_ + a_ (I)Lbgs; m_141942_ + 0 o p_149479_ + a_ ()V m_8097_ + b (Lbyo;Lbdw;)Lbdx; m_6071_ + 0 o p_30493_ + 1 o p_30494_ + b (Lqr;)V m_7380_ + 0 o p_30496_ + bx ()D m_6048_ + d (Lbyo;Lcfz;)V m_246066_ + 0 o p_250937_ + 1 o p_251558_ + eu ()V m_5907_ + fY ()V m_7609_ + gg ()I m_7488_ + q ()Lbhf$a; m_30501_ + static + r ()Z m_30502_ + w (Z)V m_30504_ + 0 o p_30505_ +btj$1 net/minecraft/world/entity/animal/horse/AbstractChestedHorse$1 + a f_149480_ + (Lbtj;)V + 0 o p_149482_ + a ()Lcfz; m_142196_ + a (Lcfz;)Z m_142104_ + 0 o p_149485_ +btk net/minecraft/world/entity/animal/horse/AbstractHorse + bT f_271139_ + bU f_271541_ + bW f_271305_ + bX f_271293_ + bY f_271313_ + bZ f_271308_ + cA f_149496_ + cB f_149497_ + cC f_30507_ + cD f_30508_ + cE f_30509_ + cF f_30511_ + cG f_30512_ + cH f_30513_ + cI f_30514_ + cJ f_30515_ + cK f_30516_ + cL f_268614_ + ca f_273870_ + cb f_273946_ + cc f_30525_ + cd f_30526_ + ce f_149486_ + cf f_149487_ + cg f_149488_ + ch f_271338_ + ci f_149489_ + cj f_149490_ + ck f_149491_ + cl f_30517_ + cm f_30518_ + cn f_30519_ + co f_30520_ + cp f_30521_ + cq f_30522_ + cr f_30510_ + cs f_30523_ + ct f_30524_ + cu f_30527_ + cv f_30528_ + cw f_149492_ + cx f_149493_ + cy f_149494_ + cz f_149495_ + ()V + static + (Lbfn;Lcmm;)V + 0 o p_30531_ + 1 o p_30532_ + A (Z)V m_30661_ + 0 o p_30662_ + B (Z)V m_30665_ + 0 o p_30666_ + C (Z)V m_30669_ + 0 o p_30670_ + C (F)V m_7880_ + 0 o p_30660_ + D (F)F m_30663_ + 0 o p_30664_ + E (F)F m_30667_ + 0 o p_30668_ + F (F)F m_30533_ + 0 o p_30534_ + M ()I m_8100_ + U_ ()Ljava/util/UUID; m_21805_ + V_ ()I m_7506_ + a (Ljava/util/function/DoubleSupplier;)D m_272017_ + static + 0 o p_272718_ + a (Lbyo;Lcfz;)Z m_5994_ + 0 o p_30593_ + 1 o p_30594_ + a (Lbfe;Lbtk;Lbhb;DD)V m_272015_ + 0 o p_273163_ + 1 o p_273784_ + 2 o p_273681_ + 3 o p_272663_ + 4 o p_273405_ + a (Lcnb;Lbdv;Lbgd;Lbgt;Lqr;)Lbgt; m_6518_ + 0 o p_30555_ + 1 o p_30556_ + 2 o p_30557_ + 3 o p_30558_ + 4 o p_30559_ + a (Lbdq;)V m_5757_ + 0 o p_30548_ + a (Lbyo;Leei;)V m_274498_ + 0 o p_278233_ + 1 o p_275693_ + a (FFLben;)Z m_142535_ + 0 o p_149499_ + 1 o p_149500_ + 2 o p_149501_ + a (Lben;F)Z m_6469_ + 0 o p_252258_ + 1 o p_250984_ + a (Ljava/util/function/IntUnaryOperator;)F m_271722_ + static + 0 o p_272695_ + a (Lbfj;Lbfj$a;)V m_19956_ + 0 o p_289569_ + 1 o p_289558_ + a ()Z m_7132_ + a (Lami;)V m_5853_ + 0 o p_30546_ + a (Lcxa;)V m_5877_ + 0 o p_30560_ + a (Lapf;)V m_214179_ + 0 o p_218804_ + a (Lqr;)V m_7378_ + 0 o p_30565_ + a (DDDDLapf;)D m_271715_ + static + 0 o p_272685_ + 1 o p_273709_ + 2 o p_273376_ + 3 o p_273030_ + 4 o p_272743_ + a (Lbrl;)Z m_7848_ + 0 o p_30553_ + a (Lbfe;Lbtk;)V m_149508_ + 0 o p_149509_ + 1 o p_149510_ + a (Laif;Lbfe;)Lbfe; m_142606_ + 0 o p_149506_ + 1 o p_149507_ + a (Leei;Lbfz;)Leei; m_30561_ + 0 o p_30562_ + 1 o p_30563_ + a (ILjava/util/function/Predicate;)Lbgs; m_149502_ + 0 o p_149503_ + 1 o p_149504_ + a_ (I)Lbgs; m_141942_ + 0 o p_149514_ + a_ ()V m_8097_ + b (Ljava/util/UUID;)V m_30586_ + 0 o p_30587_ + b (Lbdq;)Z m_149511_ + 0 o p_149512_ + b (Lbyo;Leei;)Leei; m_274312_ + 0 o p_278278_ + 1 o p_275506_ + b (B)V m_7822_ + 0 o p_30541_ + b (Lcxa;)Z m_278175_ + 0 o p_278280_ + b (Lbgl;Lbfk;)F m_6431_ + 0 o p_30578_ + 1 o p_30579_ + b (Lgu;Ldcb;)V m_7355_ + 0 o p_30584_ + 1 o p_30585_ + b (FLeei;)V m_245980_ + 0 o p_248808_ + 1 o p_275435_ + b (Lbyo;Lbdw;)Lbdx; m_6071_ + 0 o p_252289_ + 1 o p_248927_ + b (Lbyo;)V m_213583_ + 0 o p_218808_ + b (Lbfz;)Leei; m_7688_ + 0 o p_30576_ + b (Lqr;)V m_7380_ + 0 o p_30589_ + b (Lbyo;Lcfz;)V m_246861_ + 0 o p_251330_ + 1 o p_248855_ + b (Ljava/util/function/DoubleSupplier;)D m_271981_ + static + 0 o p_273691_ + b (I)V m_7888_ + 0 o p_30591_ + b ()V m_8012_ + b_ ()V m_8107_ + bp ()Z m_6094_ + c (Lbyo;Lcfz;)Lbdx; m_30580_ + 0 o p_30581_ + 1 o p_30582_ + c (I)V m_7199_ + 0 o p_30574_ + cL ()Lbfz; m_6688_ + d (IZ)V m_30597_ + 0 o p_30598_ + 1 o p_30599_ + d (FF)I m_5639_ + 0 o p_30606_ + 1 o p_30607_ + e ()Lcmd; m_9236_ + e (Lbyo;)F m_245547_ + 0 o p_278336_ + eR ()F m_6121_ + eT ()Z m_6107_ + eu ()V m_5907_ + f (Lbyo;)V m_6835_ + 0 o p_30634_ + fE ()I m_5792_ + fY ()V m_30612_ + g ()Z m_6741_ + gA ()V m_7567_ + gB ()Z m_7559_ + gC ()Lamg; m_247131_ + gD ()V m_247525_ + gE ()V m_7564_ + gF ()V m_7486_ + gG ()Z m_30628_ + gH ()Z m_7482_ + gI ()Z m_7481_ + gJ ()I m_247558_ + ge ()Z m_245259_ + gf ()Lamg; m_7872_ + gg ()D m_271636_ + static + gh ()D m_271639_ + static + gi ()D m_271638_ + static + gj ()D m_271635_ + static + gn ()Z m_30614_ + go ()V m_7509_ + gp ()Z m_30616_ + gq ()Z m_30617_ + gr ()Z m_30622_ + gs ()Z m_30623_ + gt ()I m_30624_ + gu ()V m_30625_ + gv ()V m_7493_ + gw ()D m_30626_ + gx ()Lamg; m_7871_ + gy ()Lbhf$a; m_30627_ + static + gz ()I m_7555_ + h (Lbyo;)Z m_30637_ + 0 o p_30638_ + i ()Z m_6254_ + i_ ()Z m_6147_ + l (Lbfz;)Leeh; m_274391_ + 0 o p_275502_ + l (Lcfz;)Z m_6010_ + 0 o p_30645_ + l ()V m_8119_ + m (Lbfz;)Z m_30635_ + static + 0 o p_30636_ + m (Lcfz;)Z m_6898_ + 0 o p_30644_ + n (Lcfz;)Z m_149515_ + 0 o p_149516_ + o (Lcfz;)Z m_149517_ + static + 0 o p_149518_ + q ()V m_30610_ + r ()V m_30611_ + t (I)Z m_30647_ + 0 o p_30648_ + u (I)V m_30649_ + 0 o p_30650_ + v (I)I m_30653_ + 0 o p_30654_ + w (I)I m_271634_ + static + 0 o p_272504_ + x (I)I m_271637_ + static + 0 o p_272505_ + x ()V m_8099_ + x (Z)V m_30651_ + 0 o p_30652_ + y (Z)V m_30655_ + 0 o p_30656_ + z (Z)V m_30657_ + 0 o p_30658_ +btk$1 net/minecraft/world/entity/animal/horse/AbstractHorse$1 + a f_149519_ + c f_149520_ + d f_149521_ + (Lbtk;ILjava/util/function/Predicate;)V + 0 o p_149523_ + 1 o p_149524_ + 2 o p_149525_ + a ()Lcfz; m_142196_ + a (Lcfz;)Z m_142104_ + 0 o p_149528_ +btl net/minecraft/world/entity/animal/horse/Donkey + (Lbfn;Lcmm;)V + 0 o p_30672_ + 1 o p_30673_ + a (Laif;Lbfe;)Lbfe; m_142606_ + 0 o p_149530_ + 1 o p_149531_ + a (Lbrl;)Z m_7848_ + 0 o p_30679_ + d (Lben;)Lamg; m_7975_ + 0 o p_30682_ + g_ ()Lamg; m_5592_ + gf ()Lamg; m_7872_ + gx ()Lamg; m_7871_ + s ()Lamg; m_7515_ +btm net/minecraft/world/entity/animal/horse/Horse + bT f_30685_ + bU f_30686_ + ()V + static + (Lbfn;Lcmm;)V + 0 o p_30689_ + 1 o p_30690_ + a (Lapf;)V m_214179_ + 0 o p_218815_ + a (Lqr;)V m_7378_ + 0 o p_30711_ + a (Lcnb;Lbdv;Lbgd;Lbgt;Lqr;)Lbgt; m_6518_ + 0 o p_30703_ + 1 o p_30704_ + 2 o p_30705_ + 3 o p_30706_ + 4 o p_30707_ + a (Lbdq;)V m_5757_ + 0 o p_30696_ + a (Lbtt;Lbto;)V m_30699_ + 0 o p_30700_ + 1 o p_30701_ + a (Lbrl;)Z m_7848_ + 0 o p_30698_ + a (Laif;Lbfe;)Lbfe; m_142606_ + 0 o p_149533_ + 1 o p_149534_ + a (Lbtt;)V m_28464_ + 0 o p_262684_ + a (Ljava/lang/Object;)V m_28464_ + 0 o p_262696_ + a (Lcxa;)V m_5877_ + 0 o p_30709_ + a_ ()V m_8097_ + b (Lbyo;Lbdw;)Lbdx; m_6071_ + 0 o p_30713_ + 1 o p_30714_ + b (Lqr;)V m_7380_ + 0 o p_30716_ + c ()Ljava/lang/Object; m_28554_ + d (Lben;)Lamg; m_7975_ + 0 o p_30720_ + fY ()Lbto; m_30724_ + gH ()Z m_7482_ + g_ ()Lamg; m_5592_ + gf ()Lamg; m_7872_ + gg ()I m_30725_ + gv ()V m_7493_ + gx ()Lamg; m_7871_ + l (Lcfz;)Z m_6010_ + 0 o p_30731_ + n (Lcfz;)V m_30732_ + 0 o p_30733_ + o (Lcfz;)V m_30734_ + 0 o p_30735_ + q ()Lcfz; m_30722_ + r ()Lbtt; m_28554_ + s ()Lamg; m_7515_ + w (I)V m_30736_ + 0 o p_30737_ +btm$a net/minecraft/world/entity/animal/horse/Horse$HorseGroupData + a f_30738_ + (Lbtt;)V + 0 o p_30740_ +btn net/minecraft/world/entity/animal/horse/Llama + bU f_149535_ + bW f_30744_ + bX f_30745_ + bY f_30746_ + bZ f_30747_ + ca f_30741_ + cb f_30742_ + cc f_30743_ + ()V + static + (Lbfn;Lcmm;)V + 0 o p_30750_ + 1 o p_30751_ + D (Z)V m_30752_ + 0 o p_30753_ + V_ ()I m_7506_ + a (Lqr;)V m_7378_ + 0 o p_30780_ + a (Lbyo;Lcfz;)Z m_5994_ + 0 o p_30796_ + 1 o p_30797_ + a (Lcnb;Lbdv;Lbgd;Lbgt;Lqr;)Lbgt; m_6518_ + 0 o p_30774_ + 1 o p_30775_ + 2 o p_30776_ + 3 o p_30777_ + 4 o p_30778_ + a (Lbdq;)V m_5757_ + 0 o p_30760_ + a (Lbrl;)Z m_7848_ + 0 o p_30765_ + a (Laif;Lbfe;)Lbfe; m_142606_ + 0 o p_149542_ + 1 o p_149543_ + a (Lbtn$d;)V m_28464_ + 0 o p_262628_ + a (FFLben;)Z m_142535_ + 0 o p_149538_ + 1 o p_149539_ + 2 o p_149540_ + a (Lcen;)V m_30771_ + 0 o p_30772_ + a (Lbfz;F)V m_6504_ + 0 o p_30762_ + 1 o p_30763_ + a (Ljava/lang/Object;)V m_28464_ + 0 o p_262568_ + a (Lbtn;)V m_30766_ + 0 o p_30767_ + a (Lbfj;Lbfj$a;)V m_19956_ + 0 o p_30830_ + 1 o p_289531_ + a_ ()V m_8097_ + b (Lqr;)V m_7380_ + 0 o p_30793_ + b (Lapf;)V m_218817_ + 0 o p_218818_ + b (Lgu;Ldcb;)V m_7355_ + 0 o p_30790_ + 1 o p_30791_ + b (Laif;Lbfe;)Lbtn; m_142606_ + 0 o p_149545_ + 1 o p_149546_ + bx ()D m_6048_ + c ()Ljava/lang/Object; m_28554_ + cG ()Leei; m_7939_ + cL ()Lbfz; m_6688_ + d (Lben;)Lamg; m_7975_ + 0 o p_30803_ + eT ()Z m_6107_ + fX ()D m_5823_ + fY ()V m_7609_ + g ()Z m_6741_ + gA ()V m_7567_ + gB ()Z m_7559_ + gH ()Z m_7482_ + gI ()Z m_7481_ + gK ()V m_30809_ + gL ()Z m_30810_ + gM ()Z m_30811_ + gN ()Lbtn; m_30812_ + g_ ()Lamg; m_5592_ + ge ()Z m_245259_ + gf ()Lamg; m_7872_ + gg ()I m_7488_ + gh ()Z m_7565_ + gi ()I m_30823_ + gj ()Lbhf$a; m_30824_ + static + gk ()Lbtn$d; m_28554_ + gl ()Lcen; m_30826_ + gm ()Lbtn; m_7127_ + gv ()V m_7493_ + gx ()Lamg; m_7871_ + gz ()I m_7555_ + l (Lcfz;)Z m_6010_ + 0 o p_30834_ + m (Lbfz;)V m_30827_ + 0 o p_30828_ + m (Lcfz;)Z m_6898_ + 0 o p_30832_ + n (Lcfz;)Lcen; m_30835_ + static + 0 o p_30836_ + s ()Lamg; m_7515_ + w (I)V m_30840_ + 0 o p_30841_ + x ()V m_8099_ +btn$a net/minecraft/world/entity/animal/horse/Llama$LlamaAttackWolfGoal + (Lbtn;)V + 0 o p_30843_ + b (Lbfz;)Z m_289141_ + static + 0 o p_289450_ + l ()D m_7623_ +btn$b net/minecraft/world/entity/animal/horse/Llama$LlamaGroupData + a f_30847_ + (Lbtn$d;)V + 0 o p_262658_ +btn$c net/minecraft/world/entity/animal/horse/Llama$LlamaHurtByTargetGoal + (Lbtn;)V + 0 o p_30854_ + b ()Z m_8045_ +btn$d net/minecraft/world/entity/animal/horse/Llama$Variant + a CREAMY + b WHITE + c BROWN + d GRAY + e f_262288_ + f f_262208_ + g f_262240_ + h f_262253_ + i $VALUES + ()V + static + (Ljava/lang/String;IILjava/lang/String;)V + 0 o p_262617_ + 1 o p_262675_ + 2 o p_262677_ + 3 o p_262641_ + a (I)Lbtn$d; m_262458_ + static + 0 o p_262608_ + a ()I m_262452_ + b ()[Lbtn$d; m_262370_ + static + c ()Ljava/lang/String; m_7912_ + valueOf (Ljava/lang/String;)Lbtn$d; valueOf + static + 0 o p_262633_ + values ()[Lbtn$d; values + static +bto net/minecraft/world/entity/animal/horse/Markings + a NONE + b WHITE + c WHITE_FIELD + d WHITE_DOTS + e BLACK_DOTS + f f_30861_ + g f_30862_ + h $VALUES + ()V + static + (Ljava/lang/String;II)V + 0 o p_30866_ + 1 o p_30867_ + 2 o p_30868_ + a (I)Lbto; m_30870_ + static + 0 o p_30871_ + a ()I m_30869_ + b ()[Lbto; m_149547_ + static + valueOf (Ljava/lang/String;)Lbto; valueOf + static + 0 o p_30875_ + values ()[Lbto; values + static +btp net/minecraft/world/entity/animal/horse/Mule + (Lbfn;Lcmm;)V + 0 o p_30878_ + 1 o p_30879_ + a (Laif;Lbfe;)Lbfe; m_142606_ + 0 o p_149549_ + 1 o p_149550_ + d (Lben;)Lamg; m_7975_ + 0 o p_30886_ + fY ()V m_7609_ + g_ ()Lamg; m_5592_ + gf ()Lamg; m_7872_ + gx ()Lamg; m_7871_ + s ()Lamg; m_7515_ +btq net/minecraft/world/entity/animal/horse/SkeletonHorse + bT f_30890_ + bU f_149551_ + bW f_30891_ + bX f_30892_ + (Lbfn;Lcmm;)V + 0 o p_30894_ + 1 o p_30895_ + a (Lapf;)V m_214179_ + 0 o p_218821_ + a (Laif;Lbfe;)Lbfe; m_142606_ + 0 o p_149553_ + 1 o p_149554_ + a (Lqr;)V m_7378_ + 0 o p_30901_ + aJ ()Lamg; m_5501_ + b (Lbyo;Lbdw;)Lbdx; m_6071_ + 0 o p_30904_ + 1 o p_30905_ + b (Lqr;)V m_7380_ + 0 o p_30907_ + b_ ()V m_8107_ + bx ()D m_6048_ + d (Lben;)Lamg; m_7975_ + 0 o p_30916_ + e (F)V m_5625_ + 0 o p_30911_ + eN ()Lbge; m_6336_ + eY ()F m_6108_ + gF ()V m_7486_ + g_ ()Lamg; m_5592_ + go ()V m_7509_ + q ()Lbhf$a; m_30918_ + static + r ()Z m_30919_ + s ()Lamg; m_7515_ + w (Z)V m_30923_ + 0 o p_30924_ +btr net/minecraft/world/entity/animal/horse/SkeletonTrapGoal + a f_30925_ + (Lbtq;)V + 0 o p_30927_ + a (Lbdv;)Lbtk; m_30929_ + 0 o p_30930_ + a ()Z m_8036_ + a (Lbdv;Lbtk;)Lbwk; m_30931_ + 0 o p_30932_ + 1 o p_30933_ + a (Lcfz;)Lcfz; m_30934_ + 0 o p_30935_ + e ()V m_8037_ +bts net/minecraft/world/entity/animal/horse/TraderLlama + bU f_30937_ + (Lbfn;Lcmm;)V + 0 o p_30939_ + 1 o p_30940_ + a (Lqr;)V m_7378_ + 0 o p_30948_ + a (Lcnb;Lbdv;Lbgd;Lbgt;Lqr;)Lbgt; m_6518_ + 0 o p_30942_ + 1 o p_30943_ + 2 o p_30944_ + 3 o p_30945_ + 4 o p_30946_ + b (Lqr;)V m_7380_ + 0 o p_30950_ + b_ ()V m_8107_ + f (Lbyo;)V m_6835_ + 0 o p_30958_ + gO ()V m_30951_ + gP ()Z m_30952_ + gQ ()Z m_30953_ + gR ()Z m_30954_ + gh ()Z m_7565_ + gm ()Lbtn; m_7127_ + w (I)V m_149555_ + 0 o p_149556_ + x ()V m_8099_ +bts$a net/minecraft/world/entity/animal/horse/TraderLlama$TraderLlamaDefendWanderingTraderGoal + a f_30962_ + b f_30963_ + c f_30964_ + (Lbtn;)V + 0 o p_149558_ + a ()Z m_8036_ + c ()V m_8056_ +btt net/minecraft/world/entity/animal/horse/Variant + a WHITE + b CREAMY + c CHESTNUT + d BROWN + e BLACK + f GRAY + g DARK_BROWN + h f_262264_ + i f_30977_ + j f_30978_ + k f_262227_ + l $VALUES + ()V + static + (Ljava/lang/String;IILjava/lang/String;)V + 0 o p_262635_ + 1 o p_262656_ + 2 o p_262580_ + 3 o p_262591_ + a (I)Lbtt; m_30986_ + static + 0 o p_30987_ + a ()I m_30985_ + b ()[Lbtt; m_149559_ + static + c ()Ljava/lang/String; m_7912_ + valueOf (Ljava/lang/String;)Lbtt; valueOf + static + 0 o p_30991_ + values ()[Lbtt; values + static +btu net/minecraft/world/entity/animal/horse/ZombieHorse + (Lbfn;Lcmm;)V + 0 o p_30994_ + 1 o p_30995_ + a (Lapf;)V m_214179_ + 0 o p_218823_ + a (Laif;Lbfe;)Lbfe; m_142606_ + 0 o p_149561_ + 1 o p_149562_ + b (Lbyo;Lbdw;)Lbdx; m_6071_ + 0 o p_31001_ + 1 o p_31002_ + d (Lben;)Lamg; m_7975_ + 0 o p_31006_ + eN ()Lbge; m_6336_ + g_ ()Lamg; m_5592_ + go ()V m_7509_ + q ()Lbhf$a; m_31008_ + static + s ()Lamg; m_7515_ +btv net/minecraft/world/entity/animal/horse/package-info +btw net/minecraft/world/entity/animal/package-info +btx net/minecraft/world/entity/animal/sniffer/Sniffer + bT f_271434_ + bU f_271092_ + bW f_271278_ + bX f_271472_ + bY f_271318_ + bZ f_271109_ + ca f_271252_ + cb f_271435_ + cc f_271151_ + cd f_271414_ + ce f_285640_ + cf f_285627_ + cg f_271416_ + ch f_271498_ + ()V + static + (Lbfn;Lcmm;)V + 0 o p_273717_ + 1 o p_273562_ + A ()V m_284177_ + C ()V m_284461_ + V ()V m_8025_ + W ()V m_8024_ + a (Lbtx$a;)Lbtx; m_272034_ + 0 o p_273096_ + a (Z)V m_6863_ + 0 o p_272995_ + a (Laif;Lbrl;)V m_27563_ + 0 o p_277923_ + 1 o p_277857_ + a (Lben;)V m_6667_ + 0 o p_277689_ + a (Lcom/mojang/serialization/Dynamic;)Lbha; m_8075_ + 0 o p_273174_ + a (Lbrl;)Z m_7848_ + 0 o p_272966_ + a (Laif;Lbfe;)Lbfe; m_142606_ + 0 o p_273401_ + 1 o p_273310_ + a (Lbff;)Lbtx; m_272274_ + 0 o p_273528_ + a (Lbgl;)Lbfk; m_6972_ + 0 o p_286815_ + a (Laby;)V m_7350_ + 0 o p_272936_ + a (Lgu;Lhd;)Z m_289143_ + 0 o p_289452_ + 1 o p_289453_ + b (Lbyo;Lbdw;)Lbdx; m_6071_ + 0 o p_273046_ + 1 o p_272687_ + b (Lbtx$a;)Lbtx; m_271705_ + 0 o p_273359_ + b (Lbgl;Lbfk;)F m_6431_ + 0 o p_272721_ + 1 o p_273353_ + b (Lgu;Ldcb;)V m_7355_ + 0 o p_272953_ + 1 o p_273729_ + bx ()D m_6048_ + d (Lben;)Lamg; m_7975_ + 0 o p_273718_ + d (Lcfz;)Lamg; m_7866_ + 0 o p_272747_ + dK ()Lbha; m_6274_ + dL ()Lbha$b; m_5490_ + df ()F m_278726_ + eW ()V m_6135_ + fC ()I m_8085_ + fY ()Z m_278663_ + g_ ()Lamg; m_5592_ + ge ()Z m_278650_ + gf ()Z m_272076_ + gg ()Ljava/util/Optional; m_271905_ + gh ()Z m_272270_ + gi ()Lgu; m_284345_ + gj ()Leei; m_284388_ + gk ()Lbtx$a; m_271917_ + gl ()V m_271845_ + gm ()Lbtx; m_278765_ + gn ()Lbtx; m_271851_ + go ()V m_271740_ + gp ()Ljava/util/stream/Stream; m_272217_ + gq ()V m_272136_ + i (Lgu;)Z m_271898_ + 0 o p_272757_ + j (Lgu;)Lbtx; m_271874_ + 0 o p_273015_ + j_ ()Leed; m_6921_ + k (Lgu;)Z m_289142_ + 0 o p_289451_ + l ()V m_8119_ + m (Lcfz;)Z m_6898_ + 0 o p_273659_ + q ()Lbhf$a; m_271876_ + static + r ()Z m_272223_ + s ()Lamg; m_7515_ + t (I)Leei; m_271798_ + 0 o p_273771_ + w ()Z m_280317_ + w (Z)Lbtx; m_271943_ + 0 o p_272677_ +btx$1 net/minecraft/world/entity/animal/sniffer/Sniffer$1 + a f_271447_ + ()V + static +btx$a net/minecraft/world/entity/animal/sniffer/Sniffer$State + a IDLING + b FEELING_HAPPY + c SCENTING + d SNIFFING + e SEARCHING + f DIGGING + g RISING + h $VALUES + ()V + static + (Ljava/lang/String;I)V + 0 o p_272696_ + 1 o p_272906_ + a ()[Lbtx$a; m_271975_ + static + valueOf (Ljava/lang/String;)Lbtx$a; valueOf + static + 0 o p_272910_ + values ()[Lbtx$a; values + static +bty net/minecraft/world/entity/animal/sniffer/SnifferAi + a f_271288_ + b f_271430_ + c f_271203_ + d f_271113_ + e f_271542_ + f f_271352_ + g f_271483_ + h f_271225_ + i f_278441_ + ()V + static + ()V + a (Lbfz;)Ljava/lang/Double; m_288155_ + static + 0 o p_288909_ + a (Lbha;)Lbha; m_272207_ + static + 0 o p_273175_ + a (Lbtx;)V m_271706_ + static + 0 o p_273301_ + a ()Lciz; m_278737_ + static + b (Lbtx;)Lbtx; m_278810_ + static + 0 o p_279301_ + b (Lbfz;)Ljava/lang/Float; m_278802_ + static + 0 o p_279492_ + b (Lbha;)V m_272204_ + static + 0 o p_273185_ + c (Lbha;)V m_271758_ + static + 0 o p_273183_ + d (Lbha;)V m_272260_ + static + 0 o p_273677_ + e (Lbha;)V m_272250_ + static + 0 o p_273750_ +bty$1 net/minecraft/world/entity/animal/sniffer/SnifferAi$1 + (F)V + 0 o p_273749_ + b (Laif;Lbgi;J)V m_6735_ + 0 o p_272973_ + 1 o p_273233_ + 2 o p_273492_ + d (Laif;Lbfz;J)V m_6735_ + 0 o p_272986_ + 1 o p_273682_ + 2 o p_272669_ +bty$2 net/minecraft/world/entity/animal/sniffer/SnifferAi$2 + (Lbfn;F)V + 0 o p_279255_ + 1 o p_279112_ + a (Laif;Lbrl;J)V m_6735_ + 0 o p_279149_ + 1 o p_279090_ + 2 o p_279482_ + d (Laif;Lbfz;J)V m_6735_ + 0 o p_279382_ + 1 o p_279465_ + 2 o p_279461_ +bty$3 net/minecraft/world/entity/animal/sniffer/SnifferAi$3 + (Ljava/util/function/Function;Ljava/util/function/Function;)V + 0 o p_289023_ + 1 o p_288984_ + b (Laif;Lbgi;J)V m_6735_ + 0 o p_279230_ + 1 o p_279386_ + 2 o p_279139_ + d (Laif;Lbfz;J)V m_6735_ + 0 o p_279381_ + 1 o p_279109_ + 2 o p_279236_ +bty$a net/minecraft/world/entity/animal/sniffer/SnifferAi$Digging + (II)V + 0 o p_272666_ + 1 o p_273420_ + a (Laif;Lbtx;J)Z m_6737_ + 0 o p_272686_ + 1 o p_273617_ + 2 o p_273124_ + a (Laif;Lbfz;)Z m_6114_ + 0 o p_273460_ + 1 o p_272900_ + a (Laif;Lbtx;)Z m_6114_ + 0 o p_273442_ + 1 o p_273370_ + a (Laif;Lbfz;J)Z m_6737_ + 0 o p_272781_ + 1 o p_273645_ + 2 o p_273031_ + b (Laif;Lbfz;J)V m_6732_ + 0 o p_273296_ + 1 o p_272884_ + 2 o p_272590_ + b (Laif;Lbtx;J)V m_6735_ + 0 o p_272951_ + 1 o p_272688_ + 2 o p_272979_ + c (Laif;Lbtx;J)V m_6732_ + 0 o p_273656_ + 1 o p_273063_ + 2 o p_272844_ + d (Laif;Lbfz;J)V m_6735_ + 0 o p_272605_ + 1 o p_273773_ + 2 o p_272682_ +bty$b net/minecraft/world/entity/animal/sniffer/SnifferAi$FeelingHappy + (II)V + 0 o p_273286_ + 1 o p_272777_ + a (Laif;Lbtx;J)Z m_6737_ + 0 o p_272660_ + 1 o p_273250_ + 2 o p_273180_ + a (Laif;Lbfz;J)Z m_6737_ + 0 o p_273060_ + 1 o p_273043_ + 2 o p_272817_ + b (Laif;Lbfz;J)V m_6732_ + 0 o p_272628_ + 1 o p_272915_ + 2 o p_272731_ + b (Laif;Lbtx;J)V m_6735_ + 0 o p_273624_ + 1 o p_273470_ + 2 o p_273501_ + c (Laif;Lbtx;J)V m_6732_ + 0 o p_273216_ + 1 o p_273271_ + 2 o p_273738_ + d (Laif;Lbfz;J)V m_6735_ + 0 o p_273764_ + 1 o p_272764_ + 2 o p_273646_ +bty$c net/minecraft/world/entity/animal/sniffer/SnifferAi$FinishedDigging + (I)V + 0 o p_272941_ + a (Laif;Lbtx;J)Z m_6737_ + 0 o p_273775_ + 1 o p_273131_ + 2 o p_273569_ + a (Laif;Lbfz;)Z m_6114_ + 0 o p_272897_ + 1 o p_272881_ + a (Laif;Lbtx;)Z m_6114_ + 0 o p_273692_ + 1 o p_272856_ + a (Laif;Lbfz;J)Z m_6737_ + 0 o p_273224_ + 1 o p_272903_ + 2 o p_272962_ + b (Laif;Lbfz;J)V m_6732_ + 0 o p_273577_ + 1 o p_272937_ + 2 o p_272927_ + b (Laif;Lbtx;J)V m_6735_ + 0 o p_272708_ + 1 o p_273502_ + 2 o p_272739_ + c (Laif;Lbtx;J)V m_6732_ + 0 o p_273210_ + 1 o p_273648_ + 2 o p_272804_ + d (Laif;Lbfz;J)V m_6735_ + 0 o p_272819_ + 1 o p_273205_ + 2 o p_273429_ +bty$d net/minecraft/world/entity/animal/sniffer/SnifferAi$Scenting + (II)V + 0 o p_272680_ + 1 o p_273445_ + a (Laif;Lbtx;J)Z m_6737_ + 0 o p_273482_ + 1 o p_273724_ + 2 o p_273191_ + a (Laif;Lbfz;)Z m_6114_ + 0 o p_279144_ + 1 o p_279378_ + a (Laif;Lbtx;)Z m_6114_ + 0 o p_279176_ + 1 o p_279496_ + a (Laif;Lbfz;J)Z m_6737_ + 0 o p_272955_ + 1 o p_272982_ + 2 o p_273509_ + b (Laif;Lbfz;J)V m_6732_ + 0 o p_272787_ + 1 o p_273035_ + 2 o p_272616_ + b (Laif;Lbtx;J)V m_6735_ + 0 o p_272795_ + 1 o p_272788_ + 2 o p_273611_ + c (Laif;Lbtx;J)V m_6732_ + 0 o p_272816_ + 1 o p_273426_ + 2 o p_272832_ + d (Laif;Lbfz;J)V m_6735_ + 0 o p_273554_ + 1 o p_273503_ + 2 o p_272784_ +bty$e net/minecraft/world/entity/animal/sniffer/SnifferAi$Searching + ()V + a (Laif;Lbtx;J)Z m_6737_ + 0 o p_273196_ + 1 o p_273769_ + 2 o p_273602_ + a (Laif;Lbfz;)Z m_6114_ + 0 o p_273014_ + 1 o p_273755_ + a (Laif;Lbtx;)Z m_6114_ + 0 o p_273493_ + 1 o p_272857_ + a (Laif;Lbfz;J)Z m_6737_ + 0 o p_272767_ + 1 o p_272744_ + 2 o p_272929_ + b (Laif;Lbfz;J)V m_6732_ + 0 o p_272847_ + 1 o p_273194_ + 2 o p_272928_ + b (Laif;Lbtx;J)V m_6735_ + 0 o p_273563_ + 1 o p_273394_ + 2 o p_273358_ + c (Laif;Lbtx;J)V m_6732_ + 0 o p_273705_ + 1 o p_273135_ + 2 o p_272667_ + d (Laif;Lbfz;J)V m_6735_ + 0 o p_272694_ + 1 o p_272613_ + 2 o p_272758_ +bty$f net/minecraft/world/entity/animal/sniffer/SnifferAi$Sniffing + (II)V + 0 o p_272703_ + 1 o p_272735_ + a (Lbtx;Lgu;)V m_272259_ + static + 0 o p_273754_ + 1 o p_273341_ + a (Laif;Lbtx;J)Z m_6737_ + 0 o p_273156_ + 1 o p_273448_ + 2 o p_272841_ + a (Laif;Lbfz;)Z m_6114_ + 0 o p_272773_ + 1 o p_273091_ + a (Laif;Lbtx;)Z m_6114_ + 0 o p_272972_ + 1 o p_273676_ + a (Laif;Lbfz;J)Z m_6737_ + 0 o p_272636_ + 1 o p_273045_ + 2 o p_273504_ + b (Laif;Lbfz;J)V m_6732_ + 0 o p_273522_ + 1 o p_272916_ + 2 o p_273628_ + b (Laif;Lbtx;J)V m_6735_ + 0 o p_272950_ + 1 o p_272614_ + 2 o p_273573_ + c (Laif;Lbtx;J)V m_6732_ + 0 o p_272617_ + 1 o p_273181_ + 2 o p_272635_ + d (Laif;Lbfz;J)V m_6735_ + 0 o p_272947_ + 1 o p_273690_ + 2 o p_273074_ +btz net/minecraft/world/entity/boss/EnderDragonPart + b f_31010_ + c f_31011_ + d f_31012_ + (Lbub;Ljava/lang/String;FF)V + 0 o p_31014_ + 1 o p_31015_ + 2 o p_31016_ + 3 o p_31017_ + S ()Luo; m_5654_ + a (Lbgl;)Lbfk; m_6972_ + 0 o p_31023_ + a (Lben;F)Z m_6469_ + 0 o p_31020_ + 1 o p_31021_ + a (Lqr;)V m_7378_ + 0 o p_31025_ + a_ ()V m_8097_ + b (Lqr;)V m_7380_ + 0 o p_31028_ + bo ()Z m_6087_ + dG ()Z m_142391_ + dv ()Lcfz; m_142340_ + q (Lbfj;)Z m_7306_ + 0 o p_31031_ +bu net/minecraft/advancements/critereon/FishingRodHookedTrigger + a f_40412_ + ()V + static + ()V + a (Lcfz;Ldzk;Ljava/util/Collection;Lbu$a;)Z m_40421_ + static + 0 o p_40422_ + 1 o p_40423_ + 2 o p_40424_ + 3 o p_40425_ + a (Laig;Lcfz;Lbzc;Ljava/util/Collection;)V m_40416_ + 0 o p_40417_ + 1 o p_40418_ + 2 o p_40419_ + 3 o p_40420_ + a (Lcom/google/gson/JsonObject;Lba;Lbe;)Lbu$a; m_7214_ + 0 o p_286350_ + 1 o p_286888_ + 2 o p_286756_ + a ()Lacq; m_7295_ + b (Lcom/google/gson/JsonObject;Lba;Lbe;)Lar; m_7214_ + 0 o p_286600_ + 1 o p_286397_ + 2 o p_286299_ +bu$a net/minecraft/advancements/critereon/FishingRodHookedTrigger$TriggerInstance + a f_40435_ + b f_40436_ + c f_40437_ + (Lba;Lbz;Lba;Lbz;)V + 0 o p_286346_ + 1 o p_286539_ + 2 o p_286253_ + 3 o p_286372_ + a (Lct;)Lcom/google/gson/JsonObject; m_7683_ + 0 o p_40452_ + a (Lcfz;Ldzk;Ljava/util/Collection;)Z m_40443_ + 0 o p_40444_ + 1 o p_40445_ + 2 o p_40446_ + a (Lbz;Lbo;Lbz;)Lbu$a; m_40447_ + static + 0 o p_40448_ + 1 o p_40449_ + 2 o p_40450_ +bua net/minecraft/world/entity/boss/enderdragon/EndCrystal + b f_31032_ + c f_31033_ + d f_31034_ + ()V + static + (Lbfn;Lcmm;)V + 0 o p_31037_ + 1 o p_31038_ + (Lcmm;DDD)V + 0 o p_31040_ + 1 o p_31041_ + 2 o p_31042_ + 3 o p_31043_ + a (D)Z m_6783_ + 0 o p_31046_ + a (Lben;F)Z m_6469_ + 0 o p_31050_ + 1 o p_31051_ + a (Lgu;)V m_31052_ + 0 o p_31053_ + a (Lqr;)V m_7378_ + 0 o p_31055_ + a (Z)V m_31056_ + 0 o p_31057_ + a (Lben;)V m_31047_ + 0 o p_31048_ + aS ()Lbfj$b; m_142319_ + a_ ()V m_8097_ + ah ()V m_6074_ + b (Lqr;)V m_7380_ + 0 o p_31062_ + bo ()Z m_6087_ + dv ()Lcfz; m_142340_ + j ()Lgu; m_31064_ + k ()Z m_31065_ + l ()V m_8119_ +bub net/minecraft/world/entity/boss/enderdragon/EnderDragon + b f_31067_ + bS f_31081_ + bT f_31082_ + bU f_31083_ + bV f_31084_ + bW f_31085_ + bX f_31086_ + bY f_31087_ + bZ f_31088_ + c f_31092_ + ca f_149566_ + cb f_149567_ + cc f_149568_ + cd f_149569_ + ce f_149570_ + cf f_31089_ + cg f_31090_ + ch f_31091_ + ci f_31068_ + cj f_31069_ + ck f_31070_ + cl f_31071_ + cm f_31072_ + cn f_31073_ + co f_286933_ + cp f_31074_ + cq f_31075_ + cr f_31076_ + cs f_31077_ + ct f_31078_ + cu f_31079_ + d f_31093_ + e f_31080_ + ()V + static + (Lbfn;Lcmm;)V + 0 o p_31096_ + 1 o p_31097_ + C (F)Leei; m_31174_ + 0 o p_31175_ + a (IILdxr;)Ldxt; m_31104_ + 0 o p_31105_ + 1 o p_31106_ + 2 o p_31107_ + a (Lbtz;Lben;F)Z m_31120_ + 0 o p_31121_ + 1 o p_31122_ + 2 o p_31123_ + a (Ldfn;)V m_287231_ + 0 o p_287736_ + a (Lqr;)V m_7378_ + 0 o p_31134_ + a (Ldxr;Ldxr;)Ldxt; m_31128_ + 0 o p_31129_ + 1 o p_31130_ + a (Laby;)V m_7350_ + 0 o p_31136_ + a (IF)[D m_31101_ + 0 o p_31102_ + 1 o p_31103_ + a (Lbtz;DDD)V m_31115_ + 0 o p_31116_ + 1 o p_31117_ + 2 o p_31118_ + 3 o p_31119_ + a (I[D[D)F m_31108_ + 0 o p_31109_ + 1 o p_31110_ + 2 o p_31111_ + a (Lus;)V m_141965_ + 0 o p_218825_ + a (Lben;F)Z m_6469_ + 0 o p_31113_ + 1 o p_31114_ + a (Lbua;Lgu;Lben;)V m_31124_ + 0 o p_31125_ + 1 o p_31126_ + 2 o p_31127_ + aO ()V m_142043_ + aP ()Z m_142039_ + a_ ()V m_8097_ + ah ()V m_6074_ + b (Lqr;)V m_7380_ + 0 o p_31144_ + b (Lbfa;Lbfj;)Z m_147207_ + 0 o p_182394_ + 1 o p_182395_ + b (Leed;)Z m_31139_ + 0 o p_31140_ + b (Ljava/util/List;)V m_31131_ + 0 o p_31132_ + b_ ()V m_8107_ + bo ()Z m_6087_ + bx ()D m_6048_ + c (Lbfz;)Z m_6779_ + 0 o p_149576_ + c (Ljava/util/List;)V m_31141_ + 0 o p_31142_ + cY ()Lami; m_5720_ + cq ()Z m_6072_ + d (Lben;)Lamg; m_7975_ + 0 o p_31154_ + dX ()V m_6153_ + du ()V m_6043_ + eR ()F m_6121_ + fV ()[Lbtz; m_31156_ + fW ()Lbus; m_31157_ + fX ()Ldfn; m_31158_ + fY ()F m_31159_ + fZ ()V m_31160_ + g (Lben;F)Z m_31161_ + 0 o p_31162_ + 1 o p_31163_ + h (Lgu;)V m_287266_ + 0 o p_287665_ + i (D)F m_31164_ + 0 o p_31165_ + l (Lbfj;)Z m_7341_ + 0 o p_31169_ + q ()Lgu; m_287165_ + r ()Lbhf$a; m_31167_ + static + r (DDD)I m_31170_ + 0 o p_31171_ + 1 o p_31172_ + 2 o p_31173_ + s ()Lamg; m_7515_ + w ()I m_31155_ +buc net/minecraft/world/entity/boss/enderdragon/package-info +bud net/minecraft/world/entity/boss/enderdragon/phases/AbstractDragonPhaseInstance + a f_31176_ + (Lbub;)V + 0 o p_31178_ + a ()Z m_7080_ + a (Lben;F)F m_7584_ + 0 o p_31181_ + 1 o p_31182_ + a (Lbua;Lgu;Lben;Lbyo;)V m_8059_ + 0 o p_31184_ + 1 o p_31185_ + 2 o p_31186_ + 3 o p_31187_ + b ()V m_6991_ + c ()V m_6989_ + d ()V m_7083_ + e ()V m_7081_ + f ()F m_7072_ + g ()Leei; m_5535_ + h ()F m_7089_ +bue net/minecraft/world/entity/boss/enderdragon/phases/AbstractDragonSittingPhase + (Lbub;)V + 0 o p_31196_ + a ()Z m_7080_ + a (Lben;F)F m_7584_ + 0 o p_31199_ + 1 o p_31200_ +buf net/minecraft/world/entity/boss/enderdragon/phases/DragonChargePlayerPhase + b f_31201_ + c f_149577_ + d f_31202_ + e f_31203_ + ()V + static + (Lbub;)V + 0 o p_31206_ + a (Leei;)V m_31207_ + 0 o p_31208_ + c ()V m_6989_ + d ()V m_7083_ + f ()F m_7072_ + g ()Leei; m_5535_ + i ()Lbur; m_7309_ +bug net/minecraft/world/entity/boss/enderdragon/phases/DragonDeathPhase + b f_31214_ + c f_31215_ + (Lbub;)V + 0 o p_31217_ + b ()V m_6991_ + c ()V m_6989_ + d ()V m_7083_ + f ()F m_7072_ + g ()Leei; m_5535_ + i ()Lbur; m_7309_ +buh net/minecraft/world/entity/boss/enderdragon/phases/DragonHoldingPatternPhase + b f_31224_ + c f_31225_ + d f_31226_ + e f_31227_ + ()V + static + (Lbub;)V + 0 o p_31230_ + a (Lbyo;)V m_31236_ + 0 o p_31237_ + a (Lbua;Lgu;Lben;Lbyo;)V m_8059_ + 0 o p_31232_ + 1 o p_31233_ + 2 o p_31234_ + 3 o p_31235_ + c ()V m_6989_ + d ()V m_7083_ + g ()Leei; m_5535_ + i ()Lbur; m_7309_ + j ()V m_31242_ + k ()V m_31243_ +bui net/minecraft/world/entity/boss/enderdragon/phases/DragonHoverPhase + b f_31244_ + (Lbub;)V + 0 o p_31246_ + a ()Z m_7080_ + c ()V m_6989_ + d ()V m_7083_ + f ()F m_7072_ + g ()Leei; m_5535_ + i ()Lbur; m_7309_ +buj net/minecraft/world/entity/boss/enderdragon/phases/DragonLandingApproachPhase + b f_31253_ + c f_31254_ + d f_31255_ + ()V + static + (Lbub;)V + 0 o p_31258_ + c ()V m_6989_ + d ()V m_7083_ + g ()Leei; m_5535_ + i ()Lbur; m_7309_ + j ()V m_31263_ + k ()V m_31264_ +buk net/minecraft/world/entity/boss/enderdragon/phases/DragonLandingPhase + b f_31303_ + (Lbub;)V + 0 o p_31305_ + b ()V m_6991_ + c ()V m_6989_ + d ()V m_7083_ + f ()F m_7072_ + g ()Leei; m_5535_ + h ()F m_7089_ + i ()Lbur; m_7309_ +bul net/minecraft/world/entity/boss/enderdragon/phases/DragonPhaseInstance + a ()Z m_7080_ + a (Lben;F)F m_7584_ + 0 o p_31313_ + 1 o p_31314_ + a (Lbua;Lgu;Lben;Lbyo;)V m_8059_ + 0 o p_31315_ + 1 o p_31316_ + 2 o p_31317_ + 3 o p_31318_ + b ()V m_6991_ + c ()V m_6989_ + d ()V m_7083_ + e ()V m_7081_ + f ()F m_7072_ + g ()Leei; m_5535_ + h ()F m_7089_ + i ()Lbur; m_7309_ +bum net/minecraft/world/entity/boss/enderdragon/phases/DragonSittingAttackingPhase + b f_149578_ + c f_31319_ + (Lbub;)V + 0 o p_31321_ + b ()V m_6991_ + c ()V m_6989_ + d ()V m_7083_ + i ()Lbur; m_7309_ +bun net/minecraft/world/entity/boss/enderdragon/phases/DragonSittingFlamingPhase + b f_149579_ + c f_149580_ + d f_149581_ + e f_31326_ + f f_31327_ + g f_31328_ + (Lbub;)V + 0 o p_31330_ + b ()V m_6991_ + c ()V m_6989_ + d ()V m_7083_ + e ()V m_7081_ + i ()Lbur; m_7309_ + j ()V m_31336_ +buo net/minecraft/world/entity/boss/enderdragon/phases/DragonSittingScanningPhase + b f_149582_ + c f_149583_ + d f_149584_ + e f_149585_ + f f_31337_ + g f_31338_ + h f_31339_ + ()V + static + (Lbub;)V + 0 o p_31342_ + a (Lbub;Lbfz;)Z m_289144_ + static + 0 o p_289454_ + 1 o p_289455_ + c ()V m_6989_ + d ()V m_7083_ + i ()Lbur; m_7309_ +bup net/minecraft/world/entity/boss/enderdragon/phases/DragonStrafePlayerPhase + b f_31349_ + c f_149586_ + d f_31350_ + e f_31351_ + f f_31352_ + g f_31353_ + h f_31354_ + ()V + static + (Lbub;)V + 0 o p_31357_ + a (Lbfz;)V m_31358_ + 0 o p_31359_ + c ()V m_6989_ + d ()V m_7083_ + g ()Leei; m_5535_ + i ()Lbur; m_7309_ + j ()V m_31364_ + k ()V m_31365_ +buq net/minecraft/world/entity/boss/enderdragon/phases/DragonTakeoffPhase + b f_31366_ + c f_31367_ + d f_31368_ + (Lbub;)V + 0 o p_31370_ + c ()V m_6989_ + d ()V m_7083_ + g ()Leei; m_5535_ + i ()Lbur; m_7309_ + j ()V m_31375_ + k ()V m_31376_ +bur net/minecraft/world/entity/boss/enderdragon/phases/EnderDragonPhase + a f_31377_ + b f_31378_ + c f_31379_ + d f_31380_ + e f_31381_ + f f_31382_ + g f_31383_ + h f_31384_ + i f_31385_ + j f_31386_ + k f_31387_ + l f_31388_ + m f_31389_ + n f_31390_ + o f_31391_ + ()V + static + (ILjava/lang/Class;Ljava/lang/String;)V + 0 o p_31394_ + 1 o p_31395_ + 2 o p_31396_ + a (Lbub;)Lbul; m_31400_ + 0 o p_31401_ + a (I)Lbur; m_31398_ + static + 0 o p_31399_ + a ()Ljava/lang/reflect/Constructor; m_31397_ + a (Ljava/lang/Class;Ljava/lang/String;)Lbur; m_31402_ + static + 0 o p_31403_ + 1 o p_31404_ + b ()I m_31405_ + c ()I m_31406_ + static + toString ()Ljava/lang/String; toString +bus net/minecraft/world/entity/boss/enderdragon/phases/EnderDragonPhaseManager + a f_31408_ + b f_31409_ + c f_31410_ + d f_31411_ + ()V + static + (Lbub;)V + 0 o p_31414_ + a ()Lbul; m_31415_ + a (Lbur;)V m_31416_ + 0 o p_31417_ + b (Lbur;)Lbul; m_31418_ + 0 o p_31419_ +but net/minecraft/world/entity/boss/enderdragon/phases/package-info +buu net/minecraft/world/entity/boss/package-info +buv net/minecraft/world/entity/boss/wither/WitherBoss + b f_31420_ + bT f_31422_ + bU f_149587_ + bV f_31423_ + bW f_31424_ + bX f_31425_ + bY f_31426_ + bZ f_31427_ + c f_31433_ + ca f_31428_ + cb f_31429_ + cc f_31430_ + cd f_31431_ + ce f_31432_ + d f_31434_ + e f_31421_ + ()V + static + (Lbfn;Lcmm;)V + 0 o p_31437_ + 1 o p_31438_ + W ()V m_8024_ + a (Lben;IZ)V m_7472_ + 0 o p_31464_ + 1 o p_31465_ + 2 o p_31466_ + a (FFF)F m_31442_ + 0 o p_31443_ + 1 o p_31444_ + 2 o p_31445_ + a (II)V m_31454_ + 0 o p_31455_ + 1 o p_31456_ + a (IDDDZ)V m_31448_ + 0 o p_31449_ + 1 o p_31450_ + 2 o p_31451_ + 3 o p_31452_ + 4 o p_31453_ + a (Lqr;)V m_7378_ + 0 o p_31474_ + a ()Z m_7090_ + a (Lben;F)Z m_6469_ + 0 o p_31461_ + 1 o p_31462_ + a (Ldcb;Leei;)V m_7601_ + 0 o p_31471_ + 1 o p_31472_ + a (Lbfz;F)V m_6504_ + 0 o p_31468_ + 1 o p_31469_ + a (ILbfz;)V m_31457_ + 0 o p_31458_ + 1 o p_31459_ + a_ ()V m_8097_ + b (Lqr;)V m_7380_ + 0 o p_31485_ + b (Lbfa;Lbfj;)Z m_147207_ + 0 o p_182397_ + 1 o p_182398_ + b (Lcmm;)Lbpj; m_6037_ + 0 o p_186262_ + b (Lsw;)V m_6593_ + 0 o p_31476_ + b (I)F m_31446_ + 0 o p_31447_ + b_ ()V m_8107_ + c (I)F m_31480_ + 0 o p_31481_ + c (Laig;)V m_6457_ + 0 o p_31483_ + c (Lbfa;)Z m_7301_ + 0 o p_31495_ + cq ()Z m_6072_ + d (Lben;)Lamg; m_7975_ + 0 o p_31500_ + d (Laig;)V m_6452_ + 0 o p_31488_ + d (Ldcb;)Z m_31491_ + static + 0 o p_31492_ + du ()V m_6043_ + eN ()Lbge; m_6336_ + g_ ()Lamg; m_5592_ + l (Lbfj;)Z m_7341_ + 0 o p_31508_ + l (Lbfz;)Z m_31503_ + static + 0 o p_31504_ + q ()V m_31506_ + r ()Lbhf$a; m_31501_ + static + s (I)V m_31510_ + 0 o p_31511_ + s ()Lamg; m_7515_ + t (I)I m_31512_ + 0 o p_31513_ + u (I)D m_31514_ + 0 o p_31515_ + v (I)D m_31516_ + 0 o p_31517_ + w ()I m_31502_ + w (I)D m_31518_ + 0 o p_31519_ + x ()V m_8099_ +buv$a net/minecraft/world/entity/boss/wither/WitherBoss$WitherDoNothingGoal + a f_31520_ + (Lbuv;)V + 0 o p_31522_ + a ()Z m_8036_ +buw net/minecraft/world/entity/boss/wither/package-info +bux net/minecraft/world/entity/decoration/ArmorStand + b f_149592_ + bB f_149594_ + bC f_31524_ + bD f_31546_ + bE f_31547_ + bF f_31548_ + bG f_31549_ + bH f_31550_ + bI f_31527_ + bJ f_31528_ + bK f_149595_ + bL f_31529_ + bM f_31530_ + bN f_31531_ + bO f_31532_ + bP f_31533_ + bQ f_31534_ + bR f_31535_ + bS f_31536_ + bT f_149596_ + bU f_149597_ + bV f_149598_ + bW f_149600_ + bX f_31537_ + bY f_31538_ + bZ f_31539_ + c f_149599_ + ca f_31540_ + cb f_31541_ + cc f_31542_ + cd f_31543_ + ce f_31544_ + cf f_31545_ + cg f_31525_ + ch f_31526_ + d f_149601_ + e f_149602_ + f f_149603_ + g f_149593_ + ()V + static + (Lbfn;Lcmm;)V + 0 o p_31553_ + 1 o p_31554_ + (Lcmm;DDD)V + 0 o p_31556_ + 1 o p_31557_ + 2 o p_31558_ + 3 o p_31559_ + A (Lbfj;)V m_7324_ + 0 o p_31564_ + A ()Lhw; m_31689_ + C ()Lhw; m_31691_ + D ()Lhw; m_31694_ + E ()Z m_31560_ + F ()V m_8034_ + G ()Lqr; m_31561_ + I ()V m_31565_ + J ()V m_31566_ + a (Lqr;)V m_7378_ + 0 o p_31600_ + a (Z)V m_31675_ + 0 o p_31676_ + a (Lbyo;Lbfo;Lcfz;Lbdw;)Z m_31588_ + 0 o p_31589_ + 1 o p_31590_ + 2 o p_31591_ + 3 o p_31592_ + a (D)Z m_6783_ + 0 o p_31574_ + a (Lben;F)Z m_6469_ + 0 o p_31579_ + 1 o p_31580_ + a (BIZ)B m_31569_ + 0 o p_31570_ + 1 o p_31571_ + 2 o p_31572_ + a (Lbyo;Leei;Lbdw;)Lbdx; m_7111_ + 0 o p_31594_ + 1 o p_31595_ + 2 o p_31596_ + a (Lbgl;)Lbfk; m_6972_ + 0 o p_31587_ + a (Laby;)V m_7350_ + 0 o p_31602_ + a (Lbfo;Lcfz;)V m_8061_ + 0 o p_31584_ + 1 o p_31585_ + a (Lhw;)V m_31597_ + 0 o p_31598_ + a (Laif;Lbfy;)V m_8038_ + 0 o p_31576_ + 1 o p_31577_ + a (Lbfj;)Z m_31581_ + static + 0 o p_31582_ + a_ ()V m_8097_ + ah ()V m_6074_ + b (Lqr;)V m_7380_ + 0 o p_31619_ + b (B)V m_7822_ + 0 o p_31568_ + b (Lbgl;Lbfk;)F m_6431_ + 0 o p_31614_ + 1 o p_31615_ + b (Lhw;)V m_31616_ + 0 o p_31617_ + bI ()Ljava/lang/Iterable; m_6167_ + bJ ()Ljava/lang/Iterable; m_6168_ + bo ()Z m_6087_ + bp ()Z m_6094_ + bw ()D m_6049_ + c (Lqr;)V m_31657_ + 0 o p_31658_ + c (Lhw;)V m_31623_ + 0 o p_31624_ + c (Lbfo;)Lcfz; m_6844_ + 0 o p_31612_ + cJ ()Z m_6128_ + cV ()Z m_21515_ + c_ ()Z m_6090_ + d (Lben;)Lamg; m_7975_ + 0 o p_31636_ + d (Lhw;)V m_31628_ + 0 o p_31629_ + d_ ()V m_6210_ + dv ()Lcfz; m_142340_ + e (Lhw;)V m_31639_ + 0 o p_31640_ + e (FF)F m_5632_ + 0 o p_31644_ + 1 o p_31645_ + e (Lbfo;)Z m_31626_ + 0 o p_31627_ + eC ()Lbfz$a; m_196493_ + el ()Z m_142065_ + f (Lhw;)V m_31651_ + 0 o p_31652_ + f (Lcfz;)Z m_7066_ + 0 o p_31638_ + fd ()V m_6138_ + fh ()Lbft; m_5737_ + ft ()Z m_5801_ + fu ()Z m_5789_ + g (Lben;F)V m_31648_ + 0 o p_31649_ + 1 o p_31650_ + g_ ()Lamg; m_5592_ + h (Leei;)V m_7023_ + 0 o p_31656_ + h (Lben;)V m_31646_ + 0 o p_31647_ + h_ ()Z m_6162_ + i (Lben;)V m_31653_ + 0 o p_31654_ + j (Z)V m_6842_ + 0 o p_31663_ + j (Leei;)Lbfo; m_31659_ + 0 o p_31660_ + k (F)Leei; m_7371_ + 0 o p_31665_ + l ()V m_8119_ + l_ ()Ldxj; m_7752_ + n (F)V m_5616_ + 0 o p_31668_ + o (F)V m_5618_ + 0 o p_31670_ + q ()Z m_31666_ + r ()Z m_31671_ + r (Lbfj;)Z m_7313_ + 0 o p_31687_ + s ()Z m_31674_ + s (Z)V m_31678_ + 0 o p_31679_ + t (Z)V m_31603_ + 0 o p_31604_ + u (Z)V m_31681_ + 0 o p_31682_ + v (Z)Lbfk; m_31683_ + 0 o p_31684_ + w ()Z m_31677_ + x ()Lhw; m_31680_ + y ()Lhw; m_31685_ + z ()Lhw; m_31688_ +bux$1 net/minecraft/world/entity/decoration/ArmorStand$1 + a f_31695_ + ()V + static +buy net/minecraft/world/entity/decoration/GlowItemFrame + (Lcmm;Lgu;Lha;)V + 0 o p_149610_ + 1 o p_149611_ + 2 o p_149612_ + (Lbfn;Lcmm;)V + 0 o p_149607_ + 1 o p_149608_ + j ()Lamg; m_142544_ + k ()Lamg; m_142543_ + o ()Lamg; m_142541_ + p ()Lamg; m_142546_ + q ()Lamg; m_142545_ + r ()Lcfz; m_142590_ +buz net/minecraft/world/entity/decoration/HangingEntity + b f_31697_ + c f_31698_ + d f_31699_ + e f_238173_ + f f_31700_ + ()V + static + (Lbfn;Lcmm;Lgu;)V + 0 o p_31706_ + 1 o p_31707_ + 2 o p_31708_ + (Lbfn;Lcmm;)V + 0 o p_31703_ + 1 o p_31704_ + a (Lqr;)V m_7378_ + 0 o p_31730_ + a (Lbgf;Leei;)V m_6478_ + 0 o p_31719_ + 1 o p_31720_ + a (Lcfz;F)Lbvh; m_5552_ + 0 o p_31722_ + 1 o p_31723_ + a (Lcui;)F m_6961_ + 0 o p_31725_ + a (Laif;Lbfy;)V m_8038_ + 0 o p_31712_ + 1 o p_31713_ + a (Lben;F)Z m_6469_ + 0 o p_31715_ + 1 o p_31716_ + a (Lbfj;)V m_5553_ + 0 o p_31717_ + a (Lha;)V m_6022_ + 0 o p_31728_ + a (Lcvz;)F m_7890_ + 0 o p_31727_ + a_ ()V m_8097_ + b (I)D m_31709_ + 0 o p_31710_ + b (Lqr;)V m_7380_ + 0 o p_31736_ + b (Lbfj;)Z m_31733_ + static + 0 o p_31734_ + bo ()Z m_6087_ + bq ()Z m_6093_ + cB ()Lha; m_6350_ + d_ ()V m_6210_ + e (DDD)V m_6034_ + 0 o p_31739_ + 1 o p_31740_ + 2 o p_31741_ + j (DDD)V m_5997_ + 0 o p_31744_ + 1 o p_31745_ + 2 o p_31746_ + l ()V m_8119_ + r (Lbfj;)Z m_7313_ + 0 o p_31750_ + s ()V m_7087_ + t ()Z m_7088_ + v ()I m_7076_ + w ()I m_7068_ + x ()V m_7084_ + y ()Lgu; m_31748_ +buz$1 net/minecraft/world/entity/decoration/HangingEntity$1 + a f_31752_ + ()V + static +bv net/minecraft/advancements/critereon/FluidPredicate + a f_41094_ + b f_41095_ + c f_41096_ + d f_41097_ + ()V + static + (Lanl;Ldxd;Lcz;)V + 0 o p_204102_ + 1 o p_204103_ + 2 o p_204104_ + a (Lcom/google/gson/JsonElement;)Lbv; m_41107_ + static + 0 o p_41108_ + a ()Lcom/google/gson/JsonElement; m_41103_ + a (Laif;Lgu;)Z m_41104_ + 0 o p_41105_ + 1 o p_41106_ +bv$a net/minecraft/advancements/critereon/FluidPredicate$Builder + a f_151162_ + b f_151163_ + c f_151164_ + ()V + a (Lanl;)Lbv$a; m_204105_ + 0 o p_204106_ + a ()Lbv$a; m_151166_ + static + a (Lcz;)Lbv$a; m_151169_ + 0 o p_151170_ + a (Ldxd;)Lbv$a; m_151171_ + 0 o p_151172_ + b ()Lbv; m_151173_ +bva net/minecraft/world/entity/decoration/ItemFrame + e f_149619_ + f f_31756_ + g f_31757_ + h f_31758_ + i f_31754_ + j f_31755_ + ()V + static + (Lcmm;Lgu;Lha;)V + 0 o p_31764_ + 1 o p_31765_ + 2 o p_31766_ + (Lbfn;Lcmm;)V + 0 o p_31761_ + 1 o p_31762_ + (Lbfn;Lcmm;Lgu;Lha;)V + 0 o p_149621_ + 1 o p_149622_ + 2 o p_149623_ + 3 o p_149624_ + A ()Ljava/util/OptionalInt; m_218868_ + C ()Z m_218869_ + D ()I m_31823_ + E ()I m_31824_ + S ()Luo; m_5654_ + a (Lbgl;Lbfk;)F m_6380_ + 0 o p_31784_ + 1 o p_31785_ + a (Lcfz;)V m_31805_ + 0 o p_31806_ + a (Lqr;)V m_7378_ + 0 o p_31795_ + a (Laby;)V m_7350_ + 0 o p_31797_ + a (Lcfz;Z)V m_31789_ + 0 o p_31790_ + 1 o p_31791_ + a (Lbgf;Leei;)V m_6478_ + 0 o p_31781_ + 1 o p_31782_ + a (D)Z m_6783_ + 0 o p_31769_ + a (Lus;)V m_141965_ + 0 o p_149626_ + a (Lben;F)Z m_6469_ + 0 o p_31776_ + 1 o p_31777_ + a (Lbfj;)V m_5553_ + 0 o p_31779_ + a (Lha;)V m_6022_ + 0 o p_31793_ + a (Lbyo;Lbdw;)Lbdx; m_6096_ + 0 o p_31787_ + 1 o p_31788_ + a (IZ)V m_31772_ + 0 o p_31773_ + 1 o p_31774_ + a_ (I)Lbgs; m_141942_ + 0 o p_149629_ + a_ ()V m_8097_ + ah ()V m_6074_ + b (Lqr;)V m_7380_ + 0 o p_31808_ + b (Lbfj;Z)V m_31802_ + 0 o p_31803_ + 1 o p_31804_ + b (I)V m_31770_ + 0 o p_31771_ + bC ()F m_6143_ + c (I)V m_289145_ + 0 o p_289456_ + c (Lcfz;)V m_31810_ + 0 o p_31811_ + d (Lcfz;)V m_218865_ + 0 o p_218866_ + dv ()Lcfz; m_142340_ + dz ()F m_213816_ + j (DDD)V m_5997_ + 0 o p_31817_ + 1 o p_31818_ + 2 o p_31819_ + j ()Lamg; m_142544_ + k ()Lamg; m_142543_ + o ()Lamg; m_142541_ + p ()Lamg; m_142546_ + q ()Lamg; m_142545_ + r ()Lcfz; m_142590_ + s ()V m_7087_ + t ()Z m_7088_ + v ()I m_7076_ + w ()I m_7068_ + x ()V m_7084_ + z ()Lcfz; m_31822_ +bva$1 net/minecraft/world/entity/decoration/ItemFrame$1 + a f_149630_ + (Lbva;)V + 0 o p_149632_ + a ()Lcfz; m_142196_ + a (Lcfz;)Z m_142104_ + 0 o p_149635_ +bva$2 net/minecraft/world/entity/decoration/ItemFrame$2 + a f_149636_ + ()V + static +bvb net/minecraft/world/entity/decoration/LeashFenceKnotEntity + e f_149638_ + (Lcmm;Lgu;)V + 0 o p_31831_ + 1 o p_31832_ + (Lbfn;Lcmm;)V + 0 o p_31828_ + 1 o p_31829_ + S ()Luo; m_5654_ + a (Lbgl;Lbfk;)F m_6380_ + 0 o p_31839_ + 1 o p_31840_ + a (D)Z m_6783_ + 0 o p_31835_ + a (Lbfj;)V m_5553_ + 0 o p_31837_ + a (Lha;)V m_6022_ + 0 o p_31848_ + a (Lqr;)V m_7378_ + 0 o p_31850_ + a (Lbyo;Lbdw;)Lbdx; m_6096_ + 0 o p_31842_ + 1 o p_31843_ + b (Lqr;)V m_7380_ + 0 o p_31852_ + b (Lcmm;Lgu;)Lbvb; m_31844_ + static + 0 o p_31845_ + 1 o p_31846_ + dv ()Lcfz; m_142340_ + q (F)Leei; m_7398_ + 0 o p_31863_ + s ()V m_7087_ + t ()Z m_7088_ + v ()I m_7076_ + w ()I m_7068_ + x ()V m_7084_ +bvc net/minecraft/world/entity/decoration/Painting + e f_268609_ + f f_218870_ + g f_218871_ + ()V + static + (Lcmm;Lgu;)V + 0 o p_218874_ + 1 o p_218875_ + (Lcmm;Lgu;Lha;Lhe;)V + 0 o p_218877_ + 1 o p_218878_ + 2 o p_218879_ + 3 o p_218880_ + (Lbfn;Lcmm;)V + 0 o p_31904_ + 1 o p_31905_ + S ()Luo; m_5654_ + a (Lcmm;Lgu;Lha;)Ljava/util/Optional; m_218887_ + static + 0 o p_218888_ + 1 o p_218889_ + 2 o p_218890_ + a (Lbvc;Lhe;)Z m_289146_ + static + 0 o p_289457_ + 1 o p_289458_ + a (Lqr;Lhe;)V m_269220_ + static + 0 o p_270928_ + 1 o p_270667_ + a (Lqr;)V m_7378_ + 0 o p_31927_ + a (Laby;)V m_7350_ + 0 o p_218896_ + a (DDDFFIZ)V m_6453_ + 0 o p_31917_ + 1 o p_31918_ + 2 o p_31919_ + 3 o p_31920_ + 4 o p_31921_ + 5 o p_31922_ + 6 o p_31923_ + a (Lacq;)Lacp; m_257312_ + static + 0 o p_248378_ + a (Lus;)V m_141965_ + 0 o p_218894_ + a (Lhe;)V m_28464_ + 0 o p_218892_ + a (Lbfj;)V m_5553_ + 0 o p_31925_ + a (Ljava/lang/Object;)V m_28464_ + 0 o p_262607_ + a (ILhe;)Z m_218881_ + static + 0 o p_218882_ + 1 o p_218883_ + a_ ()V m_8097_ + b (Lqr;)V m_7380_ + 0 o p_31935_ + b (Lhe;)I m_218898_ + static + 0 o p_218899_ + b (DDDFF)V m_7678_ + 0 o p_31929_ + 1 o p_31930_ + 2 o p_31931_ + 3 o p_31932_ + 4 o p_31933_ + c (Lqr;)Ljava/util/Optional; m_269030_ + static + 0 o p_271010_ + c ()Ljava/lang/Object; m_28554_ + dh ()Leei; m_213870_ + dv ()Lcfz; m_142340_ + j ()Lhe; m_28554_ + k ()Lhe; m_218902_ + static + v ()I m_7076_ + w ()I m_7068_ + x ()V m_7084_ +bvd net/minecraft/world/entity/decoration/PaintingVariant + a f_218903_ + b f_218904_ + (II)V + 0 o p_218906_ + 1 o p_218907_ + a ()I m_218908_ + b ()I m_218909_ +bve net/minecraft/world/entity/decoration/PaintingVariants + A f_218910_ + B f_218911_ + C f_218912_ + D f_218913_ + a f_218914_ + b f_218915_ + c f_218916_ + d f_218917_ + e f_218918_ + f f_218919_ + g f_218920_ + h f_218921_ + i f_218922_ + j f_218923_ + k f_218924_ + l f_218925_ + m f_218926_ + n f_218927_ + o f_218928_ + p f_218929_ + q f_218930_ + r f_218931_ + s f_218932_ + t f_218933_ + u f_218934_ + v f_218935_ + w f_218936_ + x f_218937_ + y f_218938_ + z f_218939_ + ()V + static + ()V + a (Ljava/lang/String;)Lacp; m_218944_ + static + 0 o p_218945_ + a (Lhr;)Lbvd; m_218942_ + static + 0 o p_218943_ +bvf net/minecraft/world/entity/decoration/package-info +bvg net/minecraft/world/entity/item/FallingBlockEntity + b f_31942_ + c f_31943_ + d f_31944_ + e f_31945_ + f f_201970_ + g f_31946_ + h f_31947_ + i f_31939_ + j f_31940_ + k f_149641_ + ()V + static + (Lcmm;DDDLdcb;)V + 0 o p_31953_ + 1 o p_31954_ + 2 o p_31955_ + 3 o p_31956_ + 4 o p_31957_ + (Lbfn;Lcmm;)V + 0 o p_31950_ + 1 o p_31951_ + S ()Luo; m_5654_ + a (Lben;FLbfj;)V m_149646_ + static + 0 o p_149647_ + 1 o p_149648_ + 2 o p_149649_ + a (Lqr;)V m_7378_ + 0 o p_31964_ + a (Lcpn;Lgu;)V m_149650_ + 0 o p_149651_ + 1 o p_149652_ + a (Lus;)V m_141965_ + 0 o p_149654_ + a (FFLben;)Z m_142535_ + 0 o p_149643_ + 1 o p_149644_ + 2 o p_149645_ + a (Lgu;)V m_31959_ + 0 o p_31960_ + a (Lcmm;Lgu;Ldcb;)Lbvg; m_201971_ + static + 0 o p_201972_ + 1 o p_201973_ + 2 o p_201974_ + a (Lp;)V m_7976_ + 0 o p_31962_ + aS ()Lbfj$b; m_142319_ + a_ ()V m_8097_ + b (Lqr;)V m_7380_ + 0 o p_31973_ + b (FI)V m_149656_ + 0 o p_149657_ + 1 o p_149658_ + bo ()Z m_6087_ + cK ()Z m_6127_ + cl ()Lsw; m_5677_ + cn ()Z m_6097_ + cs ()Z m_6051_ + j ()Lgu; m_31978_ + k ()V m_272001_ + l ()V m_8119_ + o ()Ldcb; m_31980_ +bvh net/minecraft/world/entity/item/ItemEntity + b f_31983_ + c f_31984_ + d f_149659_ + e f_149660_ + f f_149661_ + g f_31985_ + h f_31986_ + i f_31987_ + j f_31988_ + k f_265881_ + ()V + static + (Lcmm;DDDLcfz;)V + 0 o p_32001_ + 1 o p_32002_ + 2 o p_32003_ + 3 o p_32004_ + 4 o p_32005_ + (Lcmm;DDDLcfz;DDD)V + 0 o p_149663_ + 1 o p_149664_ + 2 o p_149665_ + 3 o p_149666_ + 4 o p_149667_ + 5 o p_149668_ + 6 o p_149669_ + 7 o p_149670_ + (Lbfn;Lcmm;)V + 0 o p_31991_ + 1 o p_31992_ + (Lbvh;)V + 0 o p_31994_ + A ()V m_32069_ + C ()Z m_32070_ + Z ()Lsw; m_7755_ + a (Lbvh;Lcfz;Lbvh;Lcfz;)V m_32017_ + static + 0 o p_32018_ + 1 o p_32019_ + 2 o p_32020_ + 3 o p_32021_ + a (Lqr;)V m_7378_ + 0 o p_32034_ + a (Lcfz;)V m_32045_ + 0 o p_32046_ + a (Laby;)V m_7350_ + 0 o p_32036_ + a (F)F m_32008_ + 0 o p_32009_ + a (Lbvh;Lcfz;Lcfz;)V m_32022_ + static + 0 o p_32023_ + 1 o p_32024_ + 2 o p_32025_ + a (Lbvh;)V m_32015_ + 0 o p_32016_ + a (Lcfz;Lcfz;I)Lcfz; m_32029_ + static + 0 o p_32030_ + 1 o p_32031_ + 2 o p_32032_ + a (Lben;F)Z m_6469_ + 0 o p_32013_ + 1 o p_32014_ + a (Lcfz;Lcfz;)Z m_32026_ + static + 0 o p_32027_ + 1 o p_32028_ + aE ()Lgu; m_20099_ + aS ()Lbfj$b; m_142319_ + aT ()Z m_213854_ + aU ()Z m_5825_ + a_ ()V m_8097_ + b (Lqr;)V m_7380_ + 0 o p_32050_ + b (Laif;)Lbfj; m_5489_ + 0 o p_32042_ + b (Lbvh;)Z m_186267_ + 0 o p_186268_ + b (Ljava/util/UUID;)V m_266426_ + 0 o p_266724_ + b (I)V m_32010_ + 0 o p_32011_ + b_ (Lbyo;)V m_6123_ + 0 o p_32040_ + c (Ljava/util/UUID;)V m_32052_ + 0 o p_32053_ + cY ()Lami; m_5720_ + cn ()Z m_6097_ + dz ()F m_213816_ + j ()Lcfz; m_32055_ + k ()I m_32059_ + l ()V m_8119_ + o ()V m_32060_ + p ()V m_32061_ + q ()V m_32062_ + r ()Z m_32063_ + s ()V m_149678_ + t ()V m_32064_ + v ()Lbfj; m_19749_ + w ()V m_32065_ + x ()Lbvh; m_32066_ + y ()V m_32067_ + z ()V m_32068_ +bvi net/minecraft/world/entity/item/PrimedTnt + b f_32071_ + c f_149679_ + d f_32072_ + ()V + static + (Lbfn;Lcmm;)V + 0 o p_32076_ + 1 o p_32077_ + (Lcmm;DDDLbfz;)V + 0 o p_32079_ + 1 o p_32080_ + 2 o p_32081_ + 3 o p_32082_ + 4 o p_32083_ + a (Lbgl;Lbfk;)F m_6380_ + 0 o p_32088_ + 1 o p_32089_ + a (Lqr;)V m_7378_ + 0 o p_32091_ + aS ()Lbfj$b; m_142319_ + a_ ()V m_8097_ + b (Lqr;)V m_7380_ + 0 o p_32097_ + b (I)V m_32085_ + 0 o p_32086_ + bo ()Z m_6087_ + j ()Lbfz; m_19749_ + k ()I m_32100_ + l ()V m_8119_ + o ()V m_32103_ + v ()Lbfj; m_19749_ +bvj net/minecraft/world/entity/item/package-info +bvk net/minecraft/world/entity/monster/AbstractIllager + (Lbfn;Lcmm;)V + 0 o p_32105_ + 1 o p_32106_ + c (Lbfz;)Z m_6779_ + 0 o p_186270_ + eN ()Lbge; m_6336_ + q ()Lbvk$a; m_6768_ + x ()V m_8099_ +bvk$a net/minecraft/world/entity/monster/AbstractIllager$IllagerArmPose + a CROSSED + b ATTACKING + c SPELLCASTING + d BOW_AND_ARROW + e CROSSBOW_HOLD + f CROSSBOW_CHARGE + g CELEBRATING + h NEUTRAL + i $VALUES + ()V + static + (Ljava/lang/String;I)V + 0 o p_32120_ + 1 o p_32121_ + a ()[Lbvk$a; m_149681_ + static + valueOf (Ljava/lang/String;)Lbvk$a; valueOf + static + 0 o p_32123_ + values ()[Lbvk$a; values + static +bvk$b net/minecraft/world/entity/monster/AbstractIllager$RaiderOpenDoorGoal + a f_32125_ + (Lbvk;Lbzw;)V + 0 o p_32127_ + 1 o p_32128_ + a ()Z m_8036_ +bvl net/minecraft/world/entity/monster/AbstractSkeleton + b f_32130_ + c f_32131_ + (Lbfn;Lcmm;)V + 0 o p_32133_ + 1 o p_32134_ + a (Lcgp;)Z m_5886_ + 0 o p_32144_ + a (Lapf;Lbdv;)V m_213945_ + 0 o p_218949_ + 1 o p_218950_ + a (Lqr;)V m_7378_ + 0 o p_32152_ + a (Lbfz;F)V m_6504_ + 0 o p_32141_ + 1 o p_32142_ + a (Lcnb;Lbdv;Lbgd;Lbgt;Lqr;)Lbgt; m_6518_ + 0 o p_32146_ + 1 o p_32147_ + 2 o p_32148_ + 3 o p_32149_ + 4 o p_32150_ + a (Lbfo;Lcfz;)V m_8061_ + 0 o p_32138_ + 1 o p_32139_ + b (Lcfz;F)Lbyu; m_7932_ + 0 o p_32156_ + 1 o p_32157_ + b (Lgu;Ldcb;)V m_7355_ + 0 o p_32159_ + 1 o p_32160_ + b (Lbgl;Lbfk;)F m_6431_ + 0 o p_32154_ + 1 o p_32155_ + b_ ()V m_8107_ + bv ()V m_6083_ + bw ()D m_6049_ + eN ()Lbge; m_6336_ + fY ()Z m_142548_ + q ()Lbhf$a; m_32166_ + static + r ()Lamg; m_7878_ + w ()V m_32164_ + x ()V m_8099_ +bvl$1 net/minecraft/world/entity/monster/AbstractSkeleton$1 + b f_32168_ + (Lbvl;Lbgi;DZ)V + 0 o p_32170_ + 1 o p_32171_ + 2 o p_32172_ + 3 o p_32173_ + c ()V m_8056_ + d ()V m_8041_ +bvm net/minecraft/world/entity/monster/Blaze + b f_32214_ + c f_32215_ + d f_32216_ + ()V + static + (Lbfn;Lcmm;)V + 0 o p_32219_ + 1 o p_32220_ + W ()V m_8024_ + a_ ()V m_8097_ + bL ()Z m_6060_ + b_ ()V m_8107_ + bj ()F m_213856_ + d (Lben;)Lamg; m_7975_ + 0 o p_32235_ + fb ()Z m_6126_ + g_ ()Lamg; m_5592_ + q ()Lbhf$a; m_32238_ + static + r ()Z m_32236_ + s ()Lamg; m_7515_ + w (Z)V m_32240_ + 0 o p_32241_ + x ()V m_8099_ +bvm$a net/minecraft/world/entity/monster/Blaze$BlazeAttackGoal + a f_32242_ + b f_32243_ + c f_32244_ + d f_32245_ + (Lbvm;)V + 0 o p_32247_ + K_ ()Z m_183429_ + a ()Z m_8036_ + c ()V m_8056_ + d ()V m_8041_ + e ()V m_8037_ + h ()D m_32252_ +bvn net/minecraft/world/entity/monster/CaveSpider + (Lbfn;Lcmm;)V + 0 o p_32254_ + 1 o p_32255_ + a (Lcnb;Lbdv;Lbgd;Lbgt;Lqr;)Lbgt; m_6518_ + 0 o p_32259_ + 1 o p_32260_ + 2 o p_32261_ + 3 o p_32262_ + 4 o p_32263_ + b (Lbgl;Lbfk;)F m_6431_ + 0 o p_32265_ + 1 o p_32266_ + q ()Lbhf$a; m_32267_ + static + z (Lbfj;)Z m_7327_ + 0 o p_32257_ +bvo net/minecraft/world/entity/monster/Creeper + b f_32268_ + bT f_32270_ + bU f_32271_ + bV f_32272_ + bW f_32273_ + c f_32274_ + d f_32275_ + e f_32269_ + ()V + static + (Lbfn;Lcmm;)V + 0 o p_32278_ + 1 o p_32279_ + D (F)F m_32320_ + 0 o p_32321_ + a (Lben;IZ)V m_7472_ + 0 o p_32292_ + 1 o p_32293_ + 2 o p_32294_ + a (Lqr;)V m_7378_ + 0 o p_32296_ + a ()Z m_7090_ + a (Laif;Lbfy;)V m_8038_ + 0 o p_32286_ + 1 o p_32287_ + a (FFLben;)Z m_142535_ + 0 o p_149687_ + 1 o p_149688_ + 2 o p_149689_ + a (Lbdw;Lbyo;)V m_32288_ + static + 0 o p_32289_ + 1 o p_32290_ + a_ ()V m_8097_ + b (Lbyo;Lbdw;)Lbdx; m_6071_ + 0 o p_32301_ + 1 o p_32302_ + b (Lqr;)V m_7380_ + 0 o p_32304_ + b (I)V m_32283_ + 0 o p_32284_ + cr ()I m_6056_ + d (Lben;)Lamg; m_7975_ + 0 o p_32309_ + fY ()V m_32312_ + fZ ()Z m_32313_ + g_ ()Lamg; m_5592_ + ga ()V m_32314_ + gb ()V m_32315_ + gc ()V m_32316_ + h (Lbfz;)V m_6710_ + 0 o p_149691_ + l ()V m_8119_ + q ()Lbhf$a; m_32318_ + static + r ()I m_32310_ + w ()Z m_32311_ + x ()V m_8099_ + z (Lbfj;)Z m_7327_ + 0 o p_32281_ +bvp net/minecraft/world/entity/monster/CrossbowAttackMob + a (Lbfz;Leei;F)Lorg/joml/Vector3f; m_252851_ + 0 o p_254425_ + 1 o p_254431_ + 2 o p_253913_ + a (Lbfz;Lcfz;Lbzg;F)V m_5811_ + 0 o p_32328_ + 1 o p_32329_ + 2 o p_32330_ + 3 o p_32331_ + a ()V m_5847_ + a (Lbfz;Lbfz;Lbzg;FF)V m_32322_ + 0 o p_32323_ + 1 o p_32324_ + 2 o p_32325_ + 3 o p_32326_ + 4 o p_32327_ + b (Lbfz;F)V m_32336_ + 0 o p_32337_ + 1 o p_32338_ + b (Z)V m_6136_ + 0 o p_32339_ + j ()Lbfz; m_5448_ +bvq net/minecraft/world/entity/monster/Drowned + b f_149692_ + bX f_32342_ + c f_32340_ + d f_32341_ + (Lbfn;Lcmm;)V + 0 o p_32344_ + 1 o p_32345_ + a (Lbfn;Lcnb;Lbgd;Lgu;Lapf;)Z m_218955_ + static + 0 o p_218956_ + 1 o p_218957_ + 2 o p_218958_ + 3 o p_218959_ + 4 o p_218960_ + a (Lapf;Lbdv;)V m_213945_ + 0 o p_218953_ + 1 o p_218954_ + a (Lcmp;)Z m_6914_ + 0 o p_32370_ + a (Lcnb;Lbdv;Lbgd;Lbgt;Lqr;)Lbgt; m_6518_ + 0 o p_32372_ + 1 o p_32373_ + 2 o p_32374_ + 3 o p_32375_ + 4 o p_32376_ + a (Lbvq;Lbpj;)Lbpj; m_32360_ + static + 0 o p_32361_ + 1 o p_32362_ + a (Lbfz;F)V m_6504_ + 0 o p_32356_ + 1 o p_32357_ + a (Lcmn;Lgu;)Z m_32366_ + static + 0 o p_32367_ + 1 o p_32368_ + aJ ()Lamg; m_5501_ + b (Lcfz;Lcfz;)Z m_7808_ + 0 o p_32364_ + 1 o p_32365_ + bX ()Z m_6067_ + ba ()V m_5844_ + cw ()Z m_6063_ + d (Lben;)Lamg; m_7975_ + 0 o p_32386_ + fY ()Lcfz; m_5728_ + fZ ()Z m_7593_ + g_ ()Lamg; m_5592_ + ga ()Z m_32391_ + gi ()Z m_32392_ + h (Leei;)V m_7023_ + 0 o p_32394_ + l (Lbfz;)Z m_32395_ + 0 o p_32396_ + q ()V m_6878_ + r ()Z m_7586_ + s ()Lamg; m_7515_ + w ()Lamg; m_7660_ + w (Z)V m_32398_ + 0 o p_32399_ +bvq$a net/minecraft/world/entity/monster/Drowned$DrownedAttackGoal + b f_32400_ + (Lbvq;DZ)V + 0 o p_32402_ + 1 o p_32403_ + 2 o p_32404_ + a ()Z m_8036_ + b ()Z m_8045_ +bvq$b net/minecraft/world/entity/monster/Drowned$DrownedGoToBeachGoal + g f_32407_ + (Lbvq;D)V + 0 o p_32409_ + 1 o p_32410_ + a ()Z m_8036_ + a (Lcmp;Lgu;)Z m_6465_ + 0 o p_32413_ + 1 o p_32414_ + b ()Z m_8045_ + c ()V m_8056_ + d ()V m_8041_ +bvq$c net/minecraft/world/entity/monster/Drowned$DrownedGoToWaterGoal + a f_32418_ + b f_32419_ + c f_32420_ + d f_32421_ + e f_32422_ + f f_32423_ + (Lbgi;D)V + 0 o p_32425_ + 1 o p_32426_ + a ()Z m_8036_ + b ()Z m_8045_ + c ()V m_8056_ + h ()Leei; m_32430_ +bvq$d net/minecraft/world/entity/monster/Drowned$DrownedMoveControl + l f_32431_ + (Lbvq;)V + 0 o p_32433_ + a ()V m_8126_ +bvq$e net/minecraft/world/entity/monster/Drowned$DrownedSwimUpGoal + a f_32435_ + b f_32436_ + c f_32437_ + d f_32438_ + (Lbvq;DI)V + 0 o p_32440_ + 1 o p_32441_ + 2 o p_32442_ + a ()Z m_8036_ + b ()Z m_8045_ + c ()V m_8056_ + d ()V m_8041_ + e ()V m_8037_ +bvq$f net/minecraft/world/entity/monster/Drowned$DrownedTridentAttackGoal + a f_32448_ + (Lbwg;DIF)V + 0 o p_32450_ + 1 o p_32451_ + 2 o p_32452_ + 3 o p_32453_ + a ()Z m_8036_ + c ()V m_8056_ + d ()V m_8041_ +bvr net/minecraft/world/entity/monster/ElderGuardian + b f_32457_ + bT f_218961_ + bU f_218962_ + bV f_218963_ + bW f_218964_ + e f_218965_ + ()V + static + (Lbfn;Lcmm;)V + 0 o p_32460_ + 1 o p_32461_ + W ()V m_8024_ + b (Laig;)V m_289147_ + 0 o p_289459_ + d (Lben;)Lamg; m_7975_ + 0 o p_32468_ + g_ ()Lamg; m_5592_ + q ()Lbhf$a; m_32471_ + static + r ()I m_7552_ + s ()Lamg; m_7515_ + w ()Lamg; m_7868_ +bvs net/minecraft/world/entity/monster/EnderMan + bT f_149693_ + bU f_32482_ + bV f_32473_ + bW f_32474_ + bX f_32476_ + bY f_32477_ + bZ f_32478_ + c f_32472_ + ca f_32479_ + cb f_32480_ + d f_32481_ + e f_149694_ + ()V + static + (Lbfn;Lcmm;)V + 0 o p_32485_ + 1 o p_32486_ + T ()Z m_8023_ + W ()V m_8024_ + a (Lben;IZ)V m_7472_ + 0 o p_32497_ + 1 o p_32498_ + 2 o p_32499_ + a (Lqr;)V m_7378_ + 0 o p_32511_ + a ()I m_6784_ + a (Laby;)V m_7350_ + 0 o p_32513_ + a (Lben;Lbzr;F)Z m_186272_ + 0 o p_186273_ + 1 o p_186274_ + 2 o p_186275_ + a (Ljava/util/UUID;)V m_6925_ + 0 o p_32509_ + a (I)V m_7870_ + 0 o p_32515_ + a (Lben;F)Z m_6469_ + 0 o p_32494_ + 1 o p_32495_ + a (Lbfj;)Z m_32500_ + 0 o p_32501_ + a_ ()V m_8097_ + b ()Ljava/util/UUID; m_6120_ + b (Lqr;)V m_7380_ + 0 o p_32520_ + b (Lbgl;Lbfk;)F m_6431_ + 0 o p_32517_ + 1 o p_32518_ + b_ ()V m_8107_ + c ()V m_6825_ + d (Ldcb;)V m_32521_ + 0 o p_32522_ + d (Lben;)Lamg; m_7975_ + 0 o p_32527_ + fY ()Ldcb; m_32530_ + fZ ()Z m_32531_ + fb ()Z m_6126_ + g (Lbyo;)Z m_32534_ + 0 o p_32535_ + g_ ()Lamg; m_5592_ + ga ()Z m_32532_ + gb ()V m_32533_ + h (Lbfz;)V m_6710_ + 0 o p_32537_ + q ()Lbhf$a; m_32541_ + static + r ()V m_32528_ + r (DDD)Z m_32543_ + 0 o p_32544_ + 1 o p_32545_ + 2 o p_32546_ + s ()Lamg; m_7515_ + w ()Z m_32529_ + x ()V m_8099_ +bvs$a net/minecraft/world/entity/monster/EnderMan$EndermanFreezeWhenLookedAt + a f_32547_ + b f_32548_ + (Lbvs;)V + 0 o p_32550_ + a ()Z m_8036_ + c ()V m_8056_ + e ()V m_8037_ +bvs$b net/minecraft/world/entity/monster/EnderMan$EndermanLeaveBlockGoal + a f_32554_ + (Lbvs;)V + 0 o p_32556_ + a ()Z m_8036_ + a (Lcmm;Lgu;Ldcb;Ldcb;Ldcb;Lgu;)Z m_32558_ + 0 o p_32559_ + 1 o p_32560_ + 2 o p_32561_ + 3 o p_32562_ + 4 o p_32563_ + 5 o p_32564_ + e ()V m_8037_ +bvs$c net/minecraft/world/entity/monster/EnderMan$EndermanLookForPlayerGoal + i f_32566_ + j f_32567_ + k f_32568_ + l f_32569_ + m f_32570_ + n f_32571_ + o f_252402_ + (Lbvs;Ljava/util/function/Predicate;)V + 0 o p_32573_ + 1 o p_32574_ + a (Lbvs;Lbfz;)Z m_268923_ + static + 0 o p_269939_ + 1 o p_269940_ + a ()Z m_8036_ + b ()Z m_8045_ + c ()V m_8056_ + d ()V m_8041_ + e ()V m_8037_ +bvs$d net/minecraft/world/entity/monster/EnderMan$EndermanTakeBlockGoal + a f_32583_ + (Lbvs;)V + 0 o p_32585_ + a ()Z m_8036_ + e ()V m_8037_ +bvt net/minecraft/world/entity/monster/Endermite + b f_149695_ + c f_32588_ + (Lbfn;Lcmm;)V + 0 o p_32591_ + 1 o p_32592_ + a (Lqr;)V m_7378_ + 0 o p_32595_ + aS ()Lbfj$b; m_142319_ + b (Lqr;)V m_7380_ + 0 o p_32610_ + b (Lgu;Ldcb;)V m_7355_ + 0 o p_32607_ + 1 o p_32608_ + b (Lbfn;Lcmn;Lbgd;Lgu;Lapf;)Z m_218968_ + static + 0 o p_218969_ + 1 o p_218970_ + 2 o p_218971_ + 3 o p_218972_ + 4 o p_218973_ + b (Lbgl;Lbfk;)F m_6431_ + 0 o p_32604_ + 1 o p_32605_ + b_ ()V m_8107_ + bw ()D m_6049_ + d (Lben;)Lamg; m_7975_ + 0 o p_32615_ + eN ()Lbge; m_6336_ + g_ ()Lamg; m_5592_ + l ()V m_8119_ + o (F)V m_5618_ + 0 o p_32621_ + q ()Lbhf$a; m_32619_ + static + s ()Lamg; m_7515_ + x ()V m_8099_ +bvu net/minecraft/world/entity/monster/Enemy + f_ f_149697_ + g_ f_149698_ + h_ f_149699_ + i_ f_149700_ + j_ f_149701_ + k_ f_149702_ +bvv net/minecraft/world/entity/monster/Evoker + e f_32625_ + (Lbfn;Lcmm;)V + 0 o p_32627_ + 1 o p_32628_ + W ()V m_8024_ + Y_ ()Lamg; m_7930_ + a (Lbsh;)V m_32634_ + 0 o p_32635_ + a (Lbvv;)Lapf; m_218974_ + static + 0 o p_218975_ + a (Lqr;)V m_7378_ + 0 o p_32642_ + a (IZ)V m_7895_ + 0 o p_32632_ + 1 o p_32633_ + a_ ()V m_8097_ + b (Lbvv;)Lapf; m_218976_ + static + 0 o p_218977_ + b (Lqr;)V m_7380_ + 0 o p_32646_ + c (Lbvv;)Lapf; m_218978_ + static + 0 o p_218979_ + d (Lbvv;)Lapf; m_218980_ + static + 0 o p_218981_ + d (Lben;)Lamg; m_7975_ + 0 o p_32654_ + e (Lbvv;)Lapf; m_218982_ + static + 0 o p_218983_ + fY ()Lamg; m_7894_ + g_ ()Lamg; m_5592_ + gr ()Lbsh; m_32662_ + p (Lbfj;)Z m_7307_ + 0 o p_32665_ + r ()Lbhf$a; m_32657_ + static + s ()Lamg; m_7515_ + x ()V m_8099_ +bvv$a net/minecraft/world/entity/monster/Evoker$EvokerAttackSpellGoal + a f_32666_ + (Lbvv;)V + 0 o p_32668_ + a (DDDDFI)V m_32672_ + 0 o p_32673_ + 1 o p_32674_ + 2 o p_32675_ + 3 o p_32676_ + 4 o p_32677_ + 5 o p_32678_ + h ()I m_8089_ + i ()I m_8067_ + k ()V m_8130_ + l ()Lamg; m_7030_ + m ()Lbwm$a; m_7269_ +bvv$b net/minecraft/world/entity/monster/Evoker$EvokerCastingSpellGoal + a f_32684_ + (Lbvv;)V + 0 o p_32686_ + e ()V m_8037_ +bvv$c net/minecraft/world/entity/monster/Evoker$EvokerSummonSpellGoal + a f_32691_ + e f_32692_ + (Lbvv;)V + 0 o p_32694_ + a ()Z m_8036_ + h ()I m_8089_ + i ()I m_8067_ + k ()V m_8130_ + l ()Lamg; m_7030_ + m ()Lbwm$a; m_7269_ +bvv$d net/minecraft/world/entity/monster/Evoker$EvokerWololoSpellGoal + a f_32704_ + e f_32705_ + (Lbvv;)V + 0 o p_32707_ + a ()Z m_8036_ + a (Lbfz;)Z m_32709_ + static + 0 o p_32710_ + b ()Z m_8045_ + c ()V m_8056_ + d ()V m_8041_ + e ()V m_8037_ + h ()I m_8089_ + i ()I m_8067_ + k ()V m_8130_ + l ()Lamg; m_7030_ + m ()Lbwm$a; m_7269_ + n ()I m_8069_ +bvw net/minecraft/world/entity/monster/Ghast + b f_32721_ + c f_32722_ + ()V + static + (Lbfn;Lcmm;)V + 0 o p_32725_ + 1 o p_32726_ + U ()Z m_8028_ + a (Lben;F)Z m_6469_ + 0 o p_32730_ + 1 o p_32731_ + a (Lqr;)V m_7378_ + 0 o p_32733_ + a_ ()V m_8097_ + b (Lqr;)V m_7380_ + 0 o p_32744_ + b (Lbfn;Lcmn;Lbgd;Lgu;Lapf;)Z m_218984_ + static + 0 o p_218985_ + 1 o p_218986_ + 2 o p_218987_ + 3 o p_218988_ + 4 o p_218989_ + b (Lbgl;Lbfk;)F m_6431_ + 0 o p_32741_ + 1 o p_32742_ + b (Lben;)Z m_6673_ + 0 o p_238289_ + cY ()Lami; m_5720_ + d (Lben;)Lamg; m_7975_ + 0 o p_32750_ + eR ()F m_6121_ + fE ()I m_5792_ + g_ ()Lamg; m_5592_ + h (Lben;)Z m_238407_ + static + 0 o p_238408_ + l (Lbfz;)Z m_289148_ + 0 o p_289460_ + q ()Z m_32756_ + r ()I m_32751_ + s ()Lamg; m_7515_ + w ()Lbhf$a; m_32752_ + static + w (Z)V m_32758_ + 0 o p_32759_ + x ()V m_8099_ +bvw$a net/minecraft/world/entity/monster/Ghast$GhastLookGoal + a f_32760_ + (Lbvw;)V + 0 o p_32762_ + K_ ()Z m_183429_ + a ()Z m_8036_ + e ()V m_8037_ +bvw$b net/minecraft/world/entity/monster/Ghast$GhastMoveControl + l f_32765_ + m f_32766_ + (Lbvw;)V + 0 o p_32768_ + a (Leei;I)Z m_32770_ + 0 o p_32771_ + 1 o p_32772_ + a ()V m_8126_ +bvw$c net/minecraft/world/entity/monster/Ghast$GhastShootFireballGoal + a f_32773_ + b f_32774_ + (Lbvw;)V + 0 o p_32776_ + K_ ()Z m_183429_ + a ()Z m_8036_ + c ()V m_8056_ + d ()V m_8041_ + e ()V m_8037_ +bvw$d net/minecraft/world/entity/monster/Ghast$RandomFloatAroundGoal + a f_32781_ + (Lbvw;)V + 0 o p_32783_ + a ()Z m_8036_ + b ()Z m_8045_ + c ()V m_8056_ +bvx net/minecraft/world/entity/monster/Giant + (Lbfn;Lcmm;)V + 0 o p_32788_ + 1 o p_32789_ + a (Lgu;Lcmp;)F m_5610_ + 0 o p_32791_ + 1 o p_32792_ + b (Lbgl;Lbfk;)F m_6431_ + 0 o p_32794_ + 1 o p_32795_ + q ()Lbhf$a; m_32796_ + static +bvy net/minecraft/world/entity/monster/Guardian + b f_32797_ + bT f_32798_ + bU f_32799_ + bV f_32800_ + bW f_32801_ + bX f_32802_ + bY f_32803_ + bZ f_32804_ + c f_149711_ + ca f_32805_ + d f_32806_ + e f_32807_ + ()V + static + (Lbfn;Lcmm;)V + 0 o p_32810_ + 1 o p_32811_ + D (F)F m_32863_ + 0 o p_32864_ + E (F)F m_32865_ + 0 o p_32866_ + F (F)F m_32812_ + 0 o p_32813_ + M ()I m_8100_ + X ()I m_8132_ + a (Laby;)V m_7350_ + 0 o p_32834_ + a (Lcmp;)Z m_6914_ + 0 o p_32829_ + a (Lgu;Lcmp;)F m_5610_ + 0 o p_32831_ + 1 o p_32832_ + a (Lben;F)Z m_6469_ + 0 o p_32820_ + 1 o p_32821_ + aS ()Lbfj$b; m_142319_ + a_ ()V m_8097_ + b (Lcmm;)Lbpj; m_6037_ + 0 o p_32846_ + b (I)V m_32817_ + 0 o p_32818_ + b (Lbfn;Lcmn;Lbgd;Lgu;Lapf;)Z m_218990_ + static + 0 o p_218991_ + 1 o p_218992_ + 2 o p_218993_ + 3 o p_218994_ + 4 o p_218995_ + b (Lbgl;Lbfk;)F m_6431_ + 0 o p_32843_ + 1 o p_32844_ + b_ ()V m_8107_ + d (Lben;)Lamg; m_7975_ + 0 o p_32852_ + dN ()Z m_6040_ + eN ()Lbge; m_6336_ + fY ()Lbhf$a; m_32853_ + static + fZ ()Z m_32854_ + g_ ()Lamg; m_5592_ + ga ()Z m_32855_ + gb ()Lbfz; m_32856_ + gc ()F m_264437_ + h (Leei;)V m_7023_ + 0 o p_32858_ + r ()I m_7552_ + s ()Lamg; m_7515_ + w ()Lamg; m_7868_ + w (Z)V m_32861_ + 0 o p_32862_ + x ()V m_8099_ +bvy$a net/minecraft/world/entity/monster/Guardian$GuardianAttackGoal + a f_32867_ + b f_32868_ + c f_32869_ + (Lbvy;)V + 0 o p_32871_ + K_ ()Z m_183429_ + a ()Z m_8036_ + b ()Z m_8045_ + c ()V m_8056_ + d ()V m_8041_ + e ()V m_8037_ +bvy$b net/minecraft/world/entity/monster/Guardian$GuardianAttackSelector + a f_32877_ + (Lbvy;)V + 0 o p_32879_ + a (Lbfz;)Z test + 0 o p_32881_ + test (Ljava/lang/Object;)Z test + 0 o p_32883_ +bvy$c net/minecraft/world/entity/monster/Guardian$GuardianMoveControl + l f_32884_ + (Lbvy;)V + 0 o p_32886_ + a ()V m_8126_ +bvz net/minecraft/world/entity/monster/Husk + (Lbfn;Lcmm;)V + 0 o p_32889_ + 1 o p_32890_ + X_ ()Z m_5884_ + a (Lbfn;Lcnb;Lbgd;Lgu;Lapf;)Z m_218996_ + static + 0 o p_218997_ + 1 o p_218998_ + 2 o p_218999_ + 3 o p_219000_ + 4 o p_219001_ + d (Lben;)Lamg; m_7975_ + 0 o p_32903_ + fY ()Lcfz; m_5728_ + fZ ()Z m_7593_ + g_ ()Lamg; m_5592_ + gb ()V m_7595_ + s ()Lamg; m_7515_ + w ()Lamg; m_7660_ + z (Lbfj;)Z m_7327_ + 0 o p_32892_ +bw net/minecraft/advancements/critereon/ImpossibleTrigger + a f_41555_ + ()V + static + ()V + a (Lacy;)V m_5656_ + 0 o p_41563_ + a (Lcom/google/gson/JsonObject;Lbe;)Lam; m_5868_ + 0 o p_41560_ + 1 o p_41561_ + a ()Lacq; m_7295_ + a (Lacy;Lal$a;)V m_6467_ + 0 o p_41565_ + 1 o p_41566_ + b (Lcom/google/gson/JsonObject;Lbe;)Lbw$a; m_5868_ + 0 o p_41569_ + 1 o p_41570_ + b (Lacy;Lal$a;)V m_6468_ + 0 o p_41572_ + 1 o p_41573_ +bw$a net/minecraft/advancements/critereon/ImpossibleTrigger$TriggerInstance + ()V + a (Lct;)Lcom/google/gson/JsonObject; m_7683_ + 0 o p_41577_ + a ()Lacq; m_7294_ +bwa net/minecraft/world/entity/monster/Illusioner + bT f_149713_ + bU f_149714_ + bV f_32908_ + bW f_32909_ + e f_149715_ + (Lbfn;Lcmm;)V + 0 o p_32911_ + 1 o p_32912_ + D (F)[Leei; m_32939_ + 0 o p_32940_ + Y_ ()Lamg; m_7930_ + a (Lbfz;F)V m_6504_ + 0 o p_32918_ + 1 o p_32919_ + a (Lcnb;Lbdv;Lbgd;Lbgt;Lqr;)Lbgt; m_6518_ + 0 o p_32921_ + 1 o p_32922_ + 2 o p_32923_ + 3 o p_32924_ + 4 o p_32925_ + a (IZ)V m_7895_ + 0 o p_32915_ + 1 o p_32916_ + a_ ()V m_8097_ + b_ ()V m_8107_ + d (Lben;)Lamg; m_7975_ + 0 o p_32930_ + fY ()Lamg; m_7894_ + g_ ()Lamg; m_5592_ + j_ ()Leed; m_6921_ + p (Lbfj;)Z m_7307_ + 0 o p_32938_ + q ()Lbvk$a; m_6768_ + r ()Lbhf$a; m_32931_ + static + s ()Lamg; m_7515_ + x ()V m_8099_ +bwa$a net/minecraft/world/entity/monster/Illusioner$IllusionerBlindnessSpellGoal + a f_32941_ + e f_32942_ + (Lbwa;)V + 0 o p_32944_ + a ()Z m_8036_ + c ()V m_8056_ + h ()I m_8089_ + i ()I m_8067_ + k ()V m_8130_ + l ()Lamg; m_7030_ + m ()Lbwm$a; m_7269_ +bwa$b net/minecraft/world/entity/monster/Illusioner$IllusionerMirrorSpellGoal + a f_32955_ + (Lbwa;)V + 0 o p_32957_ + a ()Z m_8036_ + h ()I m_8089_ + i ()I m_8067_ + k ()V m_8130_ + l ()Lamg; m_7030_ + m ()Lbwm$a; m_7269_ +bwb net/minecraft/world/entity/monster/MagmaCube + (Lbfn;Lcmm;)V + 0 o p_32968_ + 1 o p_32969_ + a (Lcmp;)Z m_6914_ + 0 o p_32975_ + a (IZ)V m_7839_ + 0 o p_32972_ + 1 o p_32973_ + b (Lbfn;Lcmn;Lbgd;Lgu;Lapf;)Z m_219002_ + static + 0 o p_219003_ + 1 o p_219004_ + 2 o p_219005_ + 3 o p_219006_ + 4 o p_219007_ + bL ()Z m_6060_ + bj ()F m_213856_ + c (Lanl;)V m_203347_ + 0 o p_204065_ + d (Lben;)Lamg; m_7975_ + 0 o p_32992_ + eW ()V m_6135_ + fV ()V m_7480_ + fW ()Z m_7483_ + fX ()F m_7566_ + fY ()Lamg; m_7905_ + fZ ()Lamg; m_7903_ + g_ ()Lamg; m_5592_ + q ()Lbhf$a; m_33000_ + static + r ()Lit; m_6300_ + w ()I m_7549_ +bwc net/minecraft/world/entity/monster/Monster + (Lbfn;Lcmm;)V + 0 o p_33002_ + 1 o p_33003_ + U ()Z m_8028_ + a (Lcnb;Lgu;Lapf;)Z m_219009_ + static + 0 o p_219010_ + 1 o p_219011_ + 2 o p_219012_ + a (Lgu;Lcmp;)F m_5610_ + 0 o p_33013_ + 1 o p_33014_ + aJ ()Lamg; m_5501_ + aK ()Lamg; m_5509_ + b (Lbfn;Lcnb;Lbgd;Lgu;Lapf;)Z m_219013_ + static + 0 o p_219014_ + 1 o p_219015_ + 2 o p_219016_ + 3 o p_219017_ + 4 o p_219018_ + b_ ()V m_8107_ + c (Lbfn;Lcmn;Lbgd;Lgu;Lapf;)Z m_219019_ + static + 0 o p_219020_ + 1 o p_219021_ + 2 o p_219022_ + 3 o p_219023_ + 4 o p_219024_ + cY ()Lami; m_5720_ + d (Lben;)Lamg; m_7975_ + 0 o p_33034_ + dY ()Z m_6149_ + dZ ()Z m_6125_ + eC ()Lbfz$a; m_196493_ + f (Lbyo;)Z m_6935_ + 0 o p_33036_ + g (Lcfz;)Lcfz; m_6298_ + 0 o p_33038_ + g_ ()Lamg; m_5592_ + gd ()V m_7562_ + ge ()Lbhf$a; m_33035_ + static +bwd net/minecraft/world/entity/monster/PatrollingMonster + b f_33042_ + c f_33043_ + d f_33044_ + (Lbfn;Lcmm;)V + 0 o p_33046_ + 1 o p_33047_ + a (Lqr;)V m_7378_ + 0 o p_33055_ + a (Lcnb;Lbdv;Lbgd;Lbgt;Lqr;)Lbgt; m_6518_ + 0 o p_33049_ + 1 o p_33050_ + 2 o p_33051_ + 3 o p_33052_ + 4 o p_33053_ + b (Lqr;)V m_7380_ + 0 o p_33063_ + b (Lbfn;Lcmn;Lbgd;Lgu;Lapf;)Z m_219025_ + static + 0 o p_219026_ + 1 o p_219027_ + 2 o p_219028_ + 3 o p_219029_ + 4 o p_219030_ + bw ()D m_6049_ + fZ ()Z m_7490_ + ga ()Lgu; m_33065_ + gb ()Z m_33066_ + gc ()Z m_33067_ + gf ()Z m_7492_ + gg ()V m_33068_ + gh ()Z m_33069_ + h (D)Z m_6785_ + 0 o p_33073_ + i (Lgu;)V m_33070_ + 0 o p_33071_ + w (Z)V m_33075_ + 0 o p_33076_ + x ()V m_8099_ + x (Z)V m_33077_ + 0 o p_33078_ +bwd$a net/minecraft/world/entity/monster/PatrollingMonster$LongDistancePatrolGoal + a f_149720_ + b f_33079_ + c f_33080_ + d f_33081_ + e f_33082_ + (Lbwd;DD)V + 0 o p_33084_ + 1 o p_33085_ + 2 o p_33086_ + a ()Z m_8036_ + a (Lbwd;)Z m_264002_ + 0 o p_264971_ + c ()V m_8056_ + d ()V m_8041_ + e ()V m_8037_ + h ()Ljava/util/List; m_33093_ + i ()Z m_33094_ +bwe net/minecraft/world/entity/monster/Phantom + b f_149721_ + bS f_33098_ + bT f_33096_ + c f_149722_ + d f_33095_ + e f_33097_ + ()V + static + (Lbfn;Lcmm;)V + 0 o p_33101_ + 1 o p_33102_ + D ()Lblt; m_7560_ + U ()Z m_8028_ + W ()V m_8024_ + a (Lbgl;)Lbfk; m_6972_ + 0 o p_33113_ + a (Lqr;)V m_7378_ + 0 o p_33132_ + a (Laby;)V m_7350_ + 0 o p_33134_ + a (Lcnb;Lbdv;Lbgd;Lbgt;Lqr;)Lbgt; m_6518_ + 0 o p_33126_ + 1 o p_33127_ + 2 o p_33128_ + 3 o p_33129_ + 4 o p_33130_ + a (D)Z m_6783_ + 0 o p_33107_ + a (Lbwe;)Lapf; m_219031_ + static + 0 o p_219032_ + a (Lbfn;)Z m_6549_ + 0 o p_33111_ + aP ()Z m_142039_ + a_ ()V m_8097_ + b (Lqr;)V m_7380_ + 0 o p_33141_ + b (I)V m_33108_ + 0 o p_33109_ + b (Lbwe;)Lapf; m_219033_ + static + 0 o p_219034_ + b (Lbgl;Lbfk;)F m_6431_ + 0 o p_33136_ + 1 o p_33137_ + b_ ()V m_8107_ + bx ()D m_6048_ + c (Lbwe;)Lapf; m_219035_ + static + 0 o p_219036_ + cY ()Lami; m_5720_ + d (Lbwe;)Lapf; m_219037_ + static + 0 o p_219038_ + d (Lben;)Lamg; m_7975_ + 0 o p_33152_ + e (Lbwe;)Lapf; m_219039_ + static + 0 o p_219040_ + eN ()Lbge; m_6336_ + eR ()F m_6121_ + f (Lbwe;)Lapf; m_219041_ + static + 0 o p_219042_ + g (Lbwe;)Lapf; m_219043_ + static + 0 o p_219044_ + g_ ()Lamg; m_5592_ + h (Lbwe;)Lapf; m_219045_ + static + 0 o p_219046_ + i (Lbwe;)Lapf; m_219047_ + static + 0 o p_219048_ + j (Lbwe;)Lapf; m_219049_ + static + 0 o p_219050_ + k (Lbwe;)Lapf; m_219051_ + static + 0 o p_219052_ + l (Lbwe;)Lapf; m_219053_ + static + 0 o p_219054_ + l ()V m_8119_ + q ()I m_33172_ + r ()I m_149736_ + s ()Lamg; m_7515_ + w ()V m_33155_ + x ()V m_8099_ +bwe$a net/minecraft/world/entity/monster/Phantom$AttackPhase + a CIRCLE + b SWOOP + c $VALUES + ()V + static + (Ljava/lang/String;I)V + 0 o p_33186_ + 1 o p_33187_ + a ()[Lbwe$a; m_149737_ + static + valueOf (Ljava/lang/String;)Lbwe$a; valueOf + static + 0 o p_33189_ + values ()[Lbwe$a; values + static +bwe$b net/minecraft/world/entity/monster/Phantom$PhantomAttackPlayerTargetGoal + a f_33191_ + b f_33192_ + c f_33193_ + (Lbwe;)V + 0 o p_33195_ + a ()Z m_8036_ + b ()Z m_8045_ +bwe$c net/minecraft/world/entity/monster/Phantom$PhantomAttackStrategyGoal + a f_33201_ + b f_33202_ + (Lbwe;)V + 0 o p_33204_ + a ()Z m_8036_ + c ()V m_8056_ + d ()V m_8041_ + e ()V m_8037_ + h ()V m_33212_ +bwe$d net/minecraft/world/entity/monster/Phantom$PhantomBodyRotationControl + a f_33213_ + (Lbwe;Lbgb;)V + 0 o p_33215_ + 1 o p_33216_ + a ()V m_8121_ +bwe$e net/minecraft/world/entity/monster/Phantom$PhantomCircleAroundAnchorGoal + a f_33218_ + c f_33219_ + d f_33220_ + e f_33221_ + f f_33222_ + (Lbwe;)V + 0 o p_33224_ + a ()Z m_8036_ + c ()V m_8056_ + e ()V m_8037_ + i ()V m_33231_ +bwe$f net/minecraft/world/entity/monster/Phantom$PhantomLookControl + h f_33232_ + (Lbwe;Lbgb;)V + 0 o p_33234_ + 1 o p_33235_ + a ()V m_8128_ +bwe$g net/minecraft/world/entity/monster/Phantom$PhantomMoveControl + l f_33237_ + m f_33238_ + (Lbwe;Lbgb;)V + 0 o p_33240_ + 1 o p_33241_ + a ()V m_8126_ +bwe$h net/minecraft/world/entity/monster/Phantom$PhantomMoveTargetGoal + b f_33243_ + (Lbwe;)V + 0 o p_33245_ + h ()Z m_33246_ +bwe$i net/minecraft/world/entity/monster/Phantom$PhantomSweepAttackGoal + a f_33247_ + c f_199895_ + d f_199896_ + e f_199897_ + (Lbwe;)V + 0 o p_33249_ + a ()Z m_8036_ + b ()Z m_8045_ + c ()V m_8056_ + d ()V m_8041_ + e ()V m_8037_ +bwf net/minecraft/world/entity/monster/Pillager + b f_33258_ + bT f_149738_ + bU f_149739_ + bV f_33259_ + e f_149740_ + ()V + static + (Lbfn;Lcmm;)V + 0 o p_33262_ + 1 o p_33263_ + Y_ ()Lamg; m_7930_ + a (Lcgp;)Z m_5886_ + 0 o p_33280_ + a (Lapf;Lbdv;)V m_213945_ + 0 o p_219059_ + 1 o p_219060_ + a (Lqr;)V m_7378_ + 0 o p_33291_ + a (Lcnb;Lbdv;Lbgd;Lbgt;Lqr;)Lbgt; m_6518_ + 0 o p_33282_ + 1 o p_33283_ + 2 o p_33284_ + 3 o p_33285_ + 4 o p_33286_ + a (Lgu;Lcmp;)F m_5610_ + 0 o p_33288_ + 1 o p_33289_ + a ()V m_5847_ + a (Lapf;F)V m_214095_ + 0 o p_219056_ + 1 o p_219057_ + a (Lbfz;Lcfz;Lbzg;F)V m_5811_ + 0 o p_33275_ + 1 o p_33276_ + 2 o p_33277_ + 3 o p_33278_ + a (Lbfz;F)V m_6504_ + 0 o p_33272_ + 1 o p_33273_ + a (IZ)V m_7895_ + 0 o p_33267_ + 1 o p_33268_ + a_ (I)Lbgs; m_141942_ + 0 o p_149743_ + a_ ()V m_8097_ + b (Lqr;)V m_7380_ + 0 o p_33300_ + b (Z)V m_6136_ + 0 o p_33302_ + b (Lbvh;)V m_7581_ + 0 o p_33296_ + d (Lben;)Lamg; m_7975_ + 0 o p_33306_ + fE ()I m_5792_ + fY ()Z m_33309_ + g_ ()Lamg; m_5592_ + l (Lcfz;)Z m_149744_ + 0 o p_149745_ + p (Lbfj;)Z m_7307_ + 0 o p_33314_ + q ()Lbvk$a; m_6768_ + r ()Lbhf$a; m_33307_ + static + s ()Lamg; m_7515_ + w ()Lbee; m_35311_ + x ()V m_8099_ +bwg net/minecraft/world/entity/monster/RangedAttackMob + a (Lbfz;F)V m_6504_ + 0 o p_33317_ + 1 o p_33318_ +bwh net/minecraft/world/entity/monster/Ravager + b f_149746_ + bT f_149747_ + bU f_149748_ + bV f_149749_ + bW f_149750_ + bX f_149751_ + bY f_149752_ + bZ f_149753_ + ca f_33320_ + cb f_33321_ + cc f_33322_ + e f_33319_ + ()V + static + (Lbfn;Lcmm;)V + 0 o p_33325_ + 1 o p_33326_ + B (Lbfj;)Z m_142582_ + 0 o p_149755_ + P ()V m_8022_ + Y_ ()Lamg; m_7930_ + a (Lqr;)V m_7378_ + 0 o p_33344_ + a (Lcmp;)Z m_6914_ + 0 o p_33342_ + a (Lbfj;)V m_33339_ + 0 o p_33340_ + a (IZ)V m_7895_ + 0 o p_33337_ + 1 o p_33338_ + b (Lqr;)V m_7380_ + 0 o p_33353_ + b (Lbfj;)Z m_33345_ + static + 0 o p_33346_ + b (Lgu;Ldcb;)V m_7355_ + 0 o p_33350_ + 1 o p_33351_ + b (B)V m_7822_ + 0 o p_33335_ + b_ ()V m_8107_ + bx ()D m_6048_ + cL ()Lbfz; m_6688_ + d (Lben;)Lamg; m_7975_ + 0 o p_33359_ + e (Lbfz;)V m_6731_ + 0 o p_33361_ + eT ()Z m_6107_ + fC ()I m_8085_ + fY ()I m_33364_ + fZ ()Z m_7490_ + g_ ()Lamg; m_5592_ + gi ()I m_33366_ + gj ()V m_33367_ + gk ()V m_33368_ + l (Lbfz;)Z m_199898_ + static + 0 o p_199899_ + q ()Lbhf$a; m_33371_ + static + r ()I m_33362_ + s ()Lamg; m_7515_ + x ()V m_8099_ + z (Lbfj;)Z m_7327_ + 0 o p_33328_ +bwh$a net/minecraft/world/entity/monster/Ravager$RavagerMeleeAttackGoal + b f_33373_ + (Lbwh;)V + 0 o p_33375_ + a (Lbfz;)D m_6639_ + 0 o p_33377_ +bwi net/minecraft/world/entity/monster/Shulker + b f_33392_ + bT f_33395_ + bU f_149756_ + bV f_149757_ + bW f_149758_ + bX f_149759_ + bY f_149760_ + bZ f_149761_ + c f_33401_ + ca f_149762_ + cb f_149763_ + cc f_33396_ + cd f_33397_ + ce f_149764_ + cf f_33399_ + cg f_149765_ + d f_33393_ + e f_33394_ + ()V + static + (Lbfn;Lcmm;)V + 0 o p_33404_ + 1 o p_33405_ + D ()Lblt; m_7560_ + D (F)F m_33480_ + 0 o p_33481_ + E (F)Ljava/util/Optional; m_149766_ + 0 o p_149767_ + F (F)F m_149768_ + static + 0 o p_149769_ + N ()V m_8032_ + X ()I m_8132_ + Y ()V m_8127_ + a (Lqr;)V m_7378_ + 0 o p_33432_ + a (DDDFFIZ)V m_6453_ + 0 o p_33411_ + 1 o p_33412_ + 2 o p_33413_ + 3 o p_33414_ + 4 o p_33415_ + 5 o p_33416_ + 6 o p_33417_ + a (Lcnb;Lbdv;Lbgd;Lbgt;Lqr;)Lbgt; m_6518_ + 0 o p_149780_ + 1 o p_149781_ + 2 o p_149782_ + 3 o p_149783_ + 4 o p_149784_ + a (Lbgf;Leei;)V m_6478_ + 0 o p_33424_ + 1 o p_33425_ + a (Lben;F)Z m_6469_ + 0 o p_33421_ + 1 o p_33422_ + a (Ljava/util/Optional;)V m_28464_ + 0 o p_262609_ + a (Ljava/lang/Object;)V m_28464_ + 0 o p_262660_ + a (Lcen;)Ljava/lang/Byte; m_262359_ + static + 0 o p_262566_ + a (Laby;)V m_7350_ + 0 o p_33434_ + a (Lbfj;Z)Z m_7998_ + 0 o p_149773_ + 1 o p_149774_ + a (Lha;F)Leed; m_149790_ + static + 0 o p_149791_ + 1 o p_149792_ + a (Lus;)V m_141965_ + 0 o p_219067_ + a (Lbwi;)Lapf; m_219064_ + static + 0 o p_219065_ + a (Lha;)V m_149788_ + 0 o p_149789_ + a (Lha;FF)Leed; m_149793_ + static + 0 o p_149794_ + 1 o p_149795_ + 2 o p_149796_ + a (Lbfj;)Z m_149770_ + 0 o p_149771_ + a (Lgu;Lha;)Z m_149785_ + 0 o p_149786_ + 1 o p_149787_ + aS ()Lbfj$b; m_142319_ + a_ ()V m_8097_ + am ()Leed; m_142242_ + b (Lqr;)V m_7380_ + 0 o p_33443_ + b (Lbgl;Lbfk;)F m_6431_ + 0 o p_33438_ + 1 o p_33439_ + b (I)V m_33418_ + 0 o p_33419_ + b (Lbwi;)Lapf; m_219068_ + static + 0 o p_219069_ + bC ()F m_6143_ + bu ()Z m_5829_ + bw ()D m_6049_ + c (Lbwi;)Lapf; m_219070_ + static + 0 o p_219071_ + c ()Ljava/lang/Object; m_28554_ + cY ()Lami; m_5720_ + d (Lbwi;)Lapf; m_219072_ + static + 0 o p_219073_ + d (Lben;)Lamg; m_7975_ + 0 o p_33457_ + dl ()Leei; m_20184_ + e (Lbwi;)Lapf; m_219074_ + static + 0 o p_219075_ + e (DDD)V m_6034_ + 0 o p_33449_ + 1 o p_33450_ + 2 o p_33451_ + f (Leei;)V m_20256_ + 0 o p_149804_ + fC ()I m_8085_ + fY ()Ljava/util/Optional; m_28554_ + fZ ()Lcen; m_33467_ + g (Lbfj;)V m_7334_ + 0 o p_33474_ + g_ ()Lamg; m_5592_ + ga ()V m_149807_ + gb ()Z m_149808_ + gc ()V m_149809_ + gd ()Z m_33468_ + ge ()V m_149805_ + gf ()I m_33463_ + gg ()Lorg/joml/Vector3f; m_252710_ + static + i (Lgu;)Lha; m_149810_ + 0 o p_149811_ + j (Lgu;)Z m_149812_ + 0 o p_149813_ + l ()V m_8119_ + q ()Lbhf$a; m_33477_ + static + r ()Z m_33460_ + s ()Lamg; m_7515_ + w ()Lha; m_33461_ + x ()V m_8099_ +bwi$a net/minecraft/world/entity/monster/Shulker$ShulkerAttackGoal + a f_33482_ + b f_33483_ + (Lbwi;)V + 0 o p_33485_ + K_ ()Z m_183429_ + a ()Z m_8036_ + c ()V m_8056_ + d ()V m_8041_ + e ()V m_8037_ +bwi$b net/minecraft/world/entity/monster/Shulker$ShulkerBodyRotationControl + (Lbgb;)V + 0 o p_149816_ + a ()V m_8121_ +bwi$c net/minecraft/world/entity/monster/Shulker$ShulkerDefenseAttackGoal + (Lbwi;)V + 0 o p_33496_ + a ()Z m_8036_ + a (D)Leed; m_7255_ + 0 o p_33499_ + b (Lbfz;)Z m_33500_ + static + 0 o p_33501_ +bwi$d net/minecraft/world/entity/monster/Shulker$ShulkerLookControl + h f_149817_ + (Lbwi;Lbgb;)V + 0 o p_149819_ + 1 o p_149820_ + b ()V m_142586_ + h ()Ljava/util/Optional; m_180897_ + i ()Ljava/util/Optional; m_180896_ +bwi$e net/minecraft/world/entity/monster/Shulker$ShulkerNearestAttackGoal + i f_33502_ + (Lbwi;Lbwi;)V + 0 o p_33504_ + 1 o p_33505_ + a ()Z m_8036_ + a (D)Leed; m_7255_ + 0 o p_33508_ +bwi$f net/minecraft/world/entity/monster/Shulker$ShulkerPeekGoal + a f_33509_ + b f_33510_ + (Lbwi;)V + 0 o p_33512_ + a ()Z m_8036_ + b ()Z m_8045_ + c ()V m_8056_ + d ()V m_8041_ + e ()V m_8037_ +bwj net/minecraft/world/entity/monster/Silverfish + b f_33521_ + (Lbfn;Lcmm;)V + 0 o p_33523_ + 1 o p_33524_ + a (Lben;F)Z m_6469_ + 0 o p_33527_ + 1 o p_33528_ + a (Lgu;Lcmp;)F m_5610_ + 0 o p_33530_ + 1 o p_33531_ + aS ()Lbfj$b; m_142319_ + b (Lgu;Ldcb;)V m_7355_ + 0 o p_33543_ + 1 o p_33544_ + b (Lbfn;Lcmn;Lbgd;Lgu;Lapf;)Z m_219076_ + static + 0 o p_219077_ + 1 o p_219078_ + 2 o p_219079_ + 3 o p_219080_ + 4 o p_219081_ + b (Lbgl;Lbfk;)F m_6431_ + 0 o p_33540_ + 1 o p_33541_ + bw ()D m_6049_ + d (Lben;)Lamg; m_7975_ + 0 o p_33549_ + eN ()Lbge; m_6336_ + g_ ()Lamg; m_5592_ + l ()V m_8119_ + o (F)V m_5618_ + 0 o p_33553_ + q ()Lbhf$a; m_33551_ + static + s ()Lamg; m_7515_ + x ()V m_8099_ +bwj$a net/minecraft/world/entity/monster/Silverfish$SilverfishMergeWithStoneGoal + i f_33555_ + j f_33556_ + (Lbwj;)V + 0 o p_33558_ + a ()Z m_8036_ + b ()Z m_8045_ + c ()V m_8056_ +bwj$b net/minecraft/world/entity/monster/Silverfish$SilverfishWakeUpFriendsGoal + a f_33562_ + b f_33563_ + (Lbwj;)V + 0 o p_33565_ + a ()Z m_8036_ + e ()V m_8037_ + h ()V m_33568_ +bwk net/minecraft/world/entity/monster/Skeleton + b f_149825_ + bT f_149828_ + c f_263441_ + d f_149826_ + e f_149827_ + ()V + static + (Lbfn;Lcmm;)V + 0 o p_33570_ + 1 o p_33571_ + a (Lben;IZ)V m_7472_ + 0 o p_33574_ + 1 o p_33575_ + 2 o p_33576_ + a (Lqr;)V m_7378_ + 0 o p_149833_ + a_ ()V m_8097_ + b (Lqr;)V m_7380_ + 0 o p_149836_ + b (I)V m_149830_ + 0 o p_149831_ + d (Lben;)Lamg; m_7975_ + 0 o p_33579_ + dw ()Z m_142079_ + fY ()Z m_142548_ + fZ ()Z m_149839_ + g_ ()Lamg; m_5592_ + ga ()V m_149840_ + l ()V m_8119_ + r ()Lamg; m_7878_ + s ()Lamg; m_7515_ + w (Z)V m_149842_ + 0 o p_149843_ +bwl net/minecraft/world/entity/monster/Slime + b f_149844_ + bS f_33585_ + bT f_33582_ + bU f_33583_ + c f_149845_ + d f_33581_ + e f_33584_ + ()V + static + (Lbfn;Lcmm;)V + 0 o p_33588_ + 1 o p_33589_ + U ()Z m_8028_ + X ()I m_8132_ + a (Lbgl;)Lbfk; m_6972_ + 0 o p_33597_ + a (Lqr;)V m_7378_ + 0 o p_33607_ + a (Laby;)V m_7350_ + 0 o p_33609_ + a (Lcnb;Lbdv;Lbgd;Lbgt;Lqr;)Lbgt; m_6518_ + 0 o p_33601_ + 1 o p_33602_ + 2 o p_33603_ + 3 o p_33604_ + 4 o p_33605_ + a (Lbfj$c;)V m_142687_ + 0 o p_149847_ + a (IZ)V m_7839_ + 0 o p_33594_ + 1 o p_33595_ + a_ ()V m_8097_ + ae ()Lbfn; m_6095_ + b (Lqr;)V m_7380_ + 0 o p_33619_ + b (Lbgl;Lbfk;)F m_6431_ + 0 o p_33614_ + 1 o p_33615_ + b_ (Lbyo;)V m_6123_ + 0 o p_33611_ + c (Lbfn;Lcmn;Lbgd;Lgu;Lapf;)Z m_219112_ + static + 0 o p_219113_ + 1 o p_219114_ + 2 o p_219115_ + 3 o p_219116_ + 4 o p_219117_ + d (Lben;)Lamg; m_7975_ + 0 o p_33631_ + d_ ()V m_6210_ + eR ()F m_6121_ + eW ()V m_6135_ + fV ()V m_7480_ + fW ()Z m_7483_ + fX ()F m_7566_ + fY ()Lamg; m_7905_ + fZ ()Lamg; m_7903_ + g (Lbfj;)V m_7334_ + 0 o p_33636_ + g_ ()Lamg; m_5592_ + ga ()I m_33632_ + gb ()Z m_33633_ + gc ()Z m_33634_ + l (Lbfz;)V m_33637_ + 0 o p_33638_ + l ()V m_8119_ + m (Lbfz;)Z m_289149_ + 0 o p_289461_ + q ()F m_33642_ + r ()Lit; m_6300_ + w ()I m_7549_ + x ()V m_8099_ +bwl$a net/minecraft/world/entity/monster/Slime$SlimeAttackGoal + a f_33645_ + b f_33646_ + (Lbwl;)V + 0 o p_33648_ + K_ ()Z m_183429_ + a ()Z m_8036_ + b ()Z m_8045_ + c ()V m_8056_ + e ()V m_8037_ +bwl$b net/minecraft/world/entity/monster/Slime$SlimeFloatGoal + a f_33653_ + (Lbwl;)V + 0 o p_33655_ + K_ ()Z m_183429_ + a ()Z m_8036_ + e ()V m_8037_ +bwl$c net/minecraft/world/entity/monster/Slime$SlimeKeepOnJumpingGoal + a f_33658_ + (Lbwl;)V + 0 o p_33660_ + a ()Z m_8036_ + e ()V m_8037_ +bwl$d net/minecraft/world/entity/monster/Slime$SlimeMoveControl + l f_33663_ + m f_33664_ + n f_33665_ + o f_33666_ + (Lbwl;)V + 0 o p_33668_ + a (D)V m_33670_ + 0 o p_33671_ + a (FZ)V m_33672_ + 0 o p_33673_ + 1 o p_33674_ + a ()V m_8126_ +bwl$e net/minecraft/world/entity/monster/Slime$SlimeRandomDirectionGoal + a f_33675_ + b f_33676_ + c f_33677_ + (Lbwl;)V + 0 o p_33679_ + a ()Z m_8036_ + e ()V m_8037_ +bwm net/minecraft/world/entity/monster/SpellcasterIllager + b f_33719_ + bT f_33721_ + e f_33720_ + ()V + static + (Lbfn;Lcmm;)V + 0 o p_33724_ + 1 o p_33725_ + W ()V m_8024_ + a (Lqr;)V m_7378_ + 0 o p_33732_ + a (Lbwm$a;)V m_33727_ + 0 o p_33728_ + a (Lbwm;)Lbpj; m_149850_ + static + 0 o p_149851_ + a_ ()V m_8097_ + b (Lqr;)V m_7380_ + 0 o p_33734_ + fY ()Lamg; m_7894_ + gi ()Z m_33736_ + gj ()Lbwm$a; m_33737_ + gk ()I m_33738_ + l ()V m_8119_ + q ()Lbvk$a; m_6768_ +bwm$a net/minecraft/world/entity/monster/SpellcasterIllager$IllagerSpell + a NONE + b SUMMON_VEX + c FANGS + d WOLOLO + e DISAPPEAR + f BLINDNESS + g f_262732_ + h f_33747_ + i f_33748_ + j $VALUES + ()V + static + (Ljava/lang/String;IIDDD)V + 0 o p_33752_ + 1 o p_33753_ + 2 o p_33754_ + 3 o p_33755_ + 4 o p_33756_ + 5 o p_33757_ + a (I)Lbwm$a; m_33758_ + static + 0 o p_33759_ + a (Lbwm$a;)I m_262804_ + static + 0 o p_263091_ + a ()[Lbwm$a; m_149852_ + static + valueOf (Ljava/lang/String;)Lbwm$a; valueOf + static + 0 o p_33765_ + values ()[Lbwm$a; values + static +bwm$b net/minecraft/world/entity/monster/SpellcasterIllager$SpellcasterCastingSpellGoal + b f_33767_ + (Lbwm;)V + 0 o p_33769_ + a ()Z m_8036_ + c ()V m_8056_ + d ()V m_8041_ + e ()V m_8037_ +bwm$c net/minecraft/world/entity/monster/SpellcasterIllager$SpellcasterUseSpellGoal + b f_33774_ + c f_33775_ + d f_33776_ + (Lbwm;)V + 0 o p_33778_ + a ()Z m_8036_ + b ()Z m_8045_ + c ()V m_8056_ + e ()V m_8037_ + h ()I m_8089_ + i ()I m_8067_ + k ()V m_8130_ + l ()Lamg; m_7030_ + m ()Lbwm$a; m_7269_ + n ()I m_8069_ +bwn net/minecraft/world/entity/monster/Spider + b f_33783_ + c f_149853_ + ()V + static + (Lbfn;Lcmm;)V + 0 o p_33786_ + 1 o p_33787_ + a (Ldcb;Leei;)V m_7601_ + 0 o p_33796_ + 1 o p_33797_ + a (Lcnb;Lbdv;Lbgd;Lbgt;Lqr;)Lbgt; m_6518_ + 0 o p_33790_ + 1 o p_33791_ + 2 o p_33792_ + 3 o p_33793_ + 4 o p_33794_ + a_ ()V m_8097_ + b (Lgu;Ldcb;)V m_7355_ + 0 o p_33804_ + 1 o p_33805_ + b (Lcmm;)Lbpj; m_6037_ + 0 o p_33802_ + b (Lbgl;Lbfk;)F m_6431_ + 0 o p_33799_ + 1 o p_33800_ + bx ()D m_6048_ + c (Lbfa;)Z m_7301_ + 0 o p_33809_ + d (Lben;)Lamg; m_7975_ + 0 o p_33814_ + eN ()Lbge; m_6336_ + g_ ()Lamg; m_5592_ + i_ ()Z m_6147_ + l ()V m_8119_ + r ()Lbhf$a; m_33815_ + static + s ()Lamg; m_7515_ + w ()Z m_33816_ + w (Z)V m_33819_ + 0 o p_33820_ + x ()V m_8099_ +bwn$a net/minecraft/world/entity/monster/Spider$SpiderAttackGoal + (Lbwn;)V + 0 o p_33822_ + a (Lbfz;)D m_6639_ + 0 o p_33825_ + a ()Z m_8036_ + b ()Z m_8045_ +bwn$b net/minecraft/world/entity/monster/Spider$SpiderEffectsGroupData + a f_33827_ + ()V + a (Lapf;)V m_219118_ + 0 o p_219119_ +bwn$c net/minecraft/world/entity/monster/Spider$SpiderTargetGoal + (Lbwn;Ljava/lang/Class;)V + 0 o p_33832_ + 1 o p_33833_ + a ()Z m_8036_ +bwo net/minecraft/world/entity/monster/Stray + (Lbfn;Lcmm;)V + 0 o p_33836_ + 1 o p_33837_ + a (Lbfn;Lcnb;Lbgd;Lgu;Lapf;)Z m_219120_ + static + 0 o p_219121_ + 1 o p_219122_ + 2 o p_219123_ + 3 o p_219124_ + 4 o p_219125_ + b (Lcfz;F)Lbyu; m_7932_ + 0 o p_33846_ + 1 o p_33847_ + d (Lben;)Lamg; m_7975_ + 0 o p_33850_ + g_ ()Lamg; m_5592_ + r ()Lamg; m_7878_ + s ()Lamg; m_7515_ +bwp net/minecraft/world/entity/monster/Strider + bT f_273909_ + bU f_273843_ + bW f_149854_ + bX f_149856_ + bY f_33852_ + bZ f_33853_ + ca f_33854_ + cb f_33855_ + cc f_33856_ + cd f_33857_ + ce f_33858_ + cf f_33859_ + ()V + static + (Lbfn;Lcmm;)V + 0 o p_33862_ + 1 o p_33863_ + a (Ldxe;)Z m_203441_ + 0 o p_204067_ + a (Lqr;)V m_7378_ + 0 o p_33898_ + a (Laby;)V m_7350_ + 0 o p_33900_ + a (Lcmp;)Z m_6914_ + 0 o p_33880_ + a (Lcnb;Lbdv;Lbgd;Lbgt;Lqr;)Lbgt; m_6518_ + 0 o p_33887_ + 1 o p_33888_ + 2 o p_33889_ + 3 o p_33890_ + 4 o p_33891_ + a ()Z m_6746_ + a (Lgu;Lcmp;)F m_5610_ + 0 o p_33895_ + 1 o p_33896_ + a (Lcnb;Lbdv;Lbgb;Lbgt;)Lbgt; m_33881_ + 0 o p_33882_ + 1 o p_33883_ + 2 o p_33884_ + 3 o p_33885_ + a (Lami;)V m_5853_ + 0 o p_33878_ + a (Laif;Lbfe;)Lbfe; m_142606_ + 0 o p_149858_ + 1 o p_149859_ + a (Lbyo;Leei;)V m_274498_ + 0 o p_278331_ + 1 o p_278234_ + a (DZLdcb;Lgu;)V m_7840_ + 0 o p_33870_ + 1 o p_33871_ + 2 o p_33872_ + 3 o p_33873_ + aI ()F m_6059_ + a_ ()V m_8097_ + b (Lbyo;Lbdw;)Lbdx; m_6071_ + 0 o p_33910_ + 1 o p_33911_ + b (Lbfz;)Leei; m_7688_ + 0 o p_33908_ + b (Lqr;)V m_7380_ + 0 o p_33918_ + b (Lcmm;)Lbpj; m_6037_ + 0 o p_33913_ + b (Lbyo;Leei;)Leei; m_274312_ + 0 o p_278251_ + 1 o p_275578_ + b (Lgu;Ldcb;)V m_7355_ + 0 o p_33915_ + 1 o p_33916_ + b (Laif;Lbfe;)Lbwp; m_142606_ + 0 o p_149861_ + 1 o p_149862_ + bL ()Z m_6060_ + bx ()D m_6048_ + c (Lbfn;Lcmn;Lbgd;Lgu;Lapf;)Z m_219128_ + static + 0 o p_219129_ + 1 o p_219130_ + 2 o p_219131_ + 3 o p_219132_ + 4 o p_219133_ + cG ()Leei; m_7939_ + cL ()Lbfz; m_6688_ + d (Lben;)Lamg; m_7975_ + 0 o p_33934_ + e (Lbyo;)F m_245547_ + 0 o p_278317_ + eu ()V m_5907_ + fY ()Z m_33939_ + fb ()Z m_6126_ + g ()Z m_6741_ + g_ ()Lamg; m_5592_ + ge ()V m_33940_ + i ()Z m_6254_ + l ()V m_8119_ + m (Lcfz;)Z m_6898_ + 0 o p_33946_ + o (Lbfj;)Z m_7310_ + 0 o p_33950_ + q ()Z m_33935_ + r ()Lbhf$a; m_33937_ + static + s ()Lamg; m_7515_ + w ()Z m_33938_ + w (Z)V m_33951_ + 0 o p_33952_ + x ()V m_8099_ + z ()Z m_8091_ +bwp$a net/minecraft/world/entity/monster/Strider$StriderGoToLavaGoal + g f_33953_ + (Lbwp;D)V + 0 o p_33955_ + 1 o p_33956_ + a ()Z m_8036_ + a (Lcmp;Lgu;)Z m_6465_ + 0 o p_33963_ + 1 o p_33964_ + b ()Z m_8045_ + k ()Lgu; m_6669_ + l ()Z m_8064_ +bwp$b net/minecraft/world/entity/monster/Strider$StriderPathNavigation + (Lbwp;Lcmm;)V + 0 o p_33969_ + 1 o p_33970_ + a (Lgu;)Z m_6342_ + 0 o p_33976_ + a (I)Ldxv; m_5532_ + 0 o p_33972_ + a (Ldxp;)Z m_7367_ + 0 o p_33974_ +bwq net/minecraft/world/entity/monster/Vex + b f_149863_ + bT f_262262_ + bU f_33980_ + bV f_33981_ + bW f_33978_ + bX f_33979_ + c f_149864_ + d f_33977_ + e f_149865_ + ()V + static + (Lbfn;Lcmm;)V + 0 o p_33984_ + 1 o p_33985_ + a (Lapf;Lbdv;)V m_213945_ + 0 o p_219135_ + 1 o p_219136_ + a (Lqr;)V m_7378_ + 0 o p_34008_ + a (Lbwq;)Lapf; m_219137_ + static + 0 o p_219138_ + a (Lcnb;Lbdv;Lbgd;Lbgt;Lqr;)Lbgt; m_6518_ + 0 o p_34002_ + 1 o p_34003_ + 2 o p_34004_ + 3 o p_34005_ + 4 o p_34006_ + a (Lbgf;Leei;)V m_6478_ + 0 o p_33997_ + 1 o p_33998_ + a (IZ)V m_33989_ + 0 o p_33990_ + 1 o p_33991_ + a (Lbgb;)V m_33994_ + 0 o p_33995_ + aP ()Z m_142039_ + a_ ()V m_8097_ + b (Lqr;)V m_7380_ + 0 o p_34015_ + b (I)V m_33987_ + 0 o p_33988_ + b (Lbwq;)Lbly; m_34012_ + static + 0 o p_34013_ + b (Lbgl;Lbfk;)F m_6431_ + 0 o p_260180_ + 1 o p_260049_ + bj ()F m_213856_ + bw ()D m_6049_ + c (I)Z m_34010_ + 0 o p_34011_ + c (Lbwq;)Lbly; m_34016_ + static + 0 o p_34017_ + d (Lbwq;)Lapf; m_219140_ + static + 0 o p_219141_ + d (Lben;)Lamg; m_7975_ + 0 o p_34023_ + e (Lbwq;)Lapf; m_219142_ + static + 0 o p_219143_ + f (Lbwq;)Lapf; m_219144_ + static + 0 o p_219145_ + fY ()Z m_34028_ + g (Lbwq;)Lapf; m_219146_ + static + 0 o p_219147_ + g_ ()Lamg; m_5592_ + h (Lbwq;)Lbly; m_34035_ + static + 0 o p_34036_ + i (Lgu;)V m_34033_ + 0 o p_34034_ + l ()V m_8119_ + q ()Lbhf$a; m_34040_ + static + r ()Lbgb; m_19749_ + s ()Lamg; m_7515_ + v ()Lbfj; m_19749_ + w ()Lgu; m_34027_ + w (Z)V m_34042_ + 0 o p_34043_ + x ()V m_8099_ +bwq$a net/minecraft/world/entity/monster/Vex$VexChargeAttackGoal + a f_34044_ + (Lbwq;)V + 0 o p_34046_ + K_ ()Z m_183429_ + a ()Z m_8036_ + b ()Z m_8045_ + c ()V m_8056_ + d ()V m_8041_ + e ()V m_8037_ +bwq$b net/minecraft/world/entity/monster/Vex$VexCopyOwnerTargetGoal + a f_34052_ + b f_34053_ + (Lbwq;Lbgi;)V + 0 o p_34055_ + 1 o p_34056_ + a ()Z m_8036_ + c ()V m_8056_ +bwq$c net/minecraft/world/entity/monster/Vex$VexMoveControl + l f_34059_ + (Lbwq;Lbwq;)V + 0 o p_34061_ + 1 o p_34062_ + a ()V m_8126_ +bwq$d net/minecraft/world/entity/monster/Vex$VexRandomMoveGoal + a f_34064_ + (Lbwq;)V + 0 o p_34066_ + a ()Z m_8036_ + b ()Z m_8045_ + e ()V m_8037_ +bwr net/minecraft/world/entity/monster/Vindicator + b f_149867_ + bT f_34071_ + e f_34070_ + ()V + static + (Lbfn;Lcmm;)V + 0 o p_34074_ + 1 o p_34075_ + W ()V m_8024_ + Y_ ()Lamg; m_7930_ + a (Lbwr;)Lapf; m_219151_ + static + 0 o p_219152_ + a (Lapf;Lbdv;)V m_213945_ + 0 o p_219149_ + 1 o p_219150_ + a (Lqr;)V m_7378_ + 0 o p_34094_ + a (Lcnb;Lbdv;Lbgd;Lbgt;Lqr;)Lbgt; m_6518_ + 0 o p_34088_ + 1 o p_34089_ + 2 o p_34090_ + 3 o p_34091_ + 4 o p_34092_ + a (Lbdu;)Z m_34081_ + static + 0 o p_34082_ + a (IZ)V m_7895_ + 0 o p_34079_ + 1 o p_34080_ + b (Lqr;)V m_7380_ + 0 o p_34100_ + b (Lsw;)V m_6593_ + 0 o p_34096_ + d (Lben;)Lamg; m_7975_ + 0 o p_34103_ + g_ ()Lamg; m_5592_ + p (Lbfj;)Z m_7307_ + 0 o p_34110_ + q ()Lbvk$a; m_6768_ + r ()Lbhf$a; m_34104_ + static + s ()Lamg; m_7515_ + x ()V m_8099_ +bwr$a net/minecraft/world/entity/monster/Vindicator$VindicatorBreakDoorGoal + (Lbgb;)V + 0 o p_34112_ + a ()Z m_8036_ + b ()Z m_8045_ + c ()V m_8056_ +bwr$b net/minecraft/world/entity/monster/Vindicator$VindicatorJohnnyAttackGoal + (Lbwr;)V + 0 o p_34117_ + a ()Z m_8036_ + c ()V m_8056_ +bwr$c net/minecraft/world/entity/monster/Vindicator$VindicatorMeleeAttackGoal + b f_34120_ + (Lbwr;Lbwr;)V + 0 o p_34122_ + 1 o p_34123_ + a (Lbfz;)D m_6639_ + 0 o p_34125_ +bws net/minecraft/world/entity/monster/Witch + b f_34126_ + bT f_34128_ + bU f_34129_ + bV f_34130_ + bW f_34131_ + e f_34127_ + ()V + static + (Lbfn;Lcmm;)V + 0 o p_34134_ + 1 o p_34135_ + Y_ ()Lamg; m_7930_ + a (Lbfz;F)V m_6504_ + 0 o p_34143_ + 1 o p_34144_ + a (IZ)V m_7895_ + 0 o p_34140_ + 1 o p_34141_ + a_ ()V m_8097_ + b (B)V m_7822_ + 0 o p_34138_ + b (Lbgl;Lbfk;)F m_6431_ + 0 o p_34146_ + 1 o p_34147_ + b_ ()V m_8107_ + d (Lben;)Lamg; m_7975_ + 0 o p_34154_ + e (Lben;F)F m_6515_ + 0 o p_34149_ + 1 o p_34150_ + fZ ()Z m_7490_ + g_ ()Lamg; m_5592_ + l (Lbfz;)Z m_289150_ + 0 o p_289462_ + q ()Z m_34161_ + r ()Lbhf$a; m_34155_ + static + s ()Lamg; m_7515_ + x ()V m_8099_ + y (Z)V m_34163_ + 0 o p_34164_ +bwt net/minecraft/world/entity/monster/WitherSkeleton + (Lbfn;Lcmm;)V + 0 o p_34166_ + 1 o p_34167_ + a (Lben;IZ)V m_7472_ + 0 o p_34174_ + 1 o p_34175_ + 2 o p_34176_ + a (Lapf;Lbdv;)V m_213945_ + 0 o p_219154_ + 1 o p_219155_ + a (Lcnb;Lbdv;Lbgd;Lbgt;Lqr;)Lbgt; m_6518_ + 0 o p_34178_ + 1 o p_34179_ + 2 o p_34180_ + 3 o p_34181_ + 4 o p_34182_ + b (Lcfz;F)Lbyu; m_7932_ + 0 o p_34189_ + 1 o p_34190_ + b (Lapf;Lbdv;)V m_213946_ + 0 o p_219157_ + 1 o p_219158_ + b (Lbgl;Lbfk;)F m_6431_ + 0 o p_34186_ + 1 o p_34187_ + c (Lbfa;)Z m_7301_ + 0 o p_34192_ + d (Lben;)Lamg; m_7975_ + 0 o p_34195_ + g_ ()Lamg; m_5592_ + r ()Lamg; m_7878_ + s ()Lamg; m_7515_ + x ()V m_8099_ + z (Lbfj;)Z m_7327_ + 0 o p_34169_ +bwu net/minecraft/world/entity/monster/Zoglin + b f_34198_ + bT f_149870_ + bU f_149871_ + bV f_149872_ + bW f_149873_ + bX f_149874_ + bY f_149875_ + bZ f_149876_ + c f_34200_ + ca f_149877_ + cb f_149878_ + cc f_34199_ + d f_34201_ + e f_149879_ + ()V + static + (Lbfn;Lcmm;)V + 0 o p_34204_ + 1 o p_34205_ + V ()V m_8025_ + W ()V m_8024_ + a (Lbha;)V m_34216_ + static + 0 o p_34217_ + a (Z)V m_6863_ + 0 o p_34227_ + a (Lqr;)V m_7378_ + 0 o p_34223_ + a (Laby;)V m_7350_ + 0 o p_34225_ + a (Lbyo;)Z m_6573_ + 0 o p_34219_ + a (Lcom/mojang/serialization/Dynamic;)Lbha; m_8075_ + 0 o p_34221_ + a (Lben;F)Z m_6469_ + 0 o p_34214_ + 1 o p_34215_ + a_ ()V m_8097_ + b (Lqr;)V m_7380_ + 0 o p_34234_ + b (Lbha;)V m_34228_ + static + 0 o p_34229_ + b (Lgu;Ldcb;)V m_7355_ + 0 o p_34231_ + 1 o p_34232_ + b (B)V m_7822_ + 0 o p_34212_ + b_ ()V m_8107_ + bx ()D m_6048_ + c (Lbha;)V m_34236_ + static + 0 o p_34237_ + d (Lben;)Lamg; m_7975_ + 0 o p_34244_ + dK ()Lbha; m_6274_ + dL ()Lbha$b; m_5490_ + e (Lbfz;)V m_6731_ + 0 o p_34246_ + eN ()Lbge; m_6336_ + fY ()I m_7575_ + fZ ()V m_34250_ + g_ ()Lamg; m_5592_ + ga ()Ljava/util/Optional; m_34251_ + h_ ()Z m_6162_ + l (Lbfz;)Z m_34252_ + 0 o p_34253_ + m (Lbfz;)V m_34254_ + 0 o p_34255_ + q ()Lbhf$a; m_34257_ + static + r ()Z m_34247_ + s ()Lamg; m_7515_ + w ()V m_34248_ + z (Lbfj;)Z m_7327_ + 0 o p_34207_ +bwv net/minecraft/world/entity/monster/Zombie + b f_34259_ + bT f_149880_ + bU f_149881_ + bV f_149882_ + bW f_256825_ + bX f_34260_ + bY f_34261_ + bZ f_149883_ + c f_34267_ + ca f_34262_ + cb f_34263_ + cc f_34264_ + cd f_34265_ + ce f_34266_ + d f_34268_ + e f_149884_ + ()V + static + (Lcmm;)V + 0 o p_34274_ + (Lbfn;Lcmm;)V + 0 o p_34271_ + 1 o p_34272_ + D (F)V m_34339_ + 0 o p_34340_ + X_ ()Z m_5884_ + a (Lbwv;)Lapf; m_219167_ + static + 0 o p_219168_ + a (Lben;IZ)V m_7472_ + 0 o p_34291_ + 1 o p_34292_ + 2 o p_34293_ + a (Lapf;Lbdv;)V m_213945_ + 0 o p_219165_ + 1 o p_219166_ + a (Z)V m_6863_ + 0 o p_34309_ + a (Lqr;)V m_7378_ + 0 o p_34305_ + a (Laby;)V m_7350_ + 0 o p_34307_ + a (Lapf;)Z m_219162_ + static + 0 o p_219163_ + a (Lcnb;Lbdv;Lbgd;Lbgt;Lqr;)Lbgt; m_6518_ + 0 o p_34297_ + 1 o p_34298_ + 2 o p_34299_ + 3 o p_34300_ + 4 o p_34301_ + a (Lbdu;)Z m_34283_ + static + 0 o p_34284_ + a (Lben;F)Z m_6469_ + 0 o p_34288_ + 1 o p_34289_ + a (Laif;Lbfz;)Z m_214076_ + 0 o p_219160_ + 1 o p_219161_ + a_ ()V m_8097_ + b (Lqr;)V m_7380_ + 0 o p_34319_ + b (Lbfn;)V m_34310_ + 0 o p_34311_ + b (I)V m_34278_ + 0 o p_34279_ + b (Lgu;Ldcb;)V m_7355_ + 0 o p_34316_ + 1 o p_34317_ + b (Lbgl;Lbfk;)F m_6431_ + 0 o p_34313_ + 1 o p_34314_ + b_ ()V m_8107_ + bw ()D m_6049_ + d (Lben;)Lamg; m_7975_ + 0 o p_34327_ + eN ()Lbge; m_6336_ + ea ()I m_213860_ + fY ()Lcfz; m_5728_ + fZ ()Z m_7593_ + g_ ()Lamg; m_5592_ + gb ()V m_7595_ + gc ()Lbhf$a; m_34328_ + static + gf ()Z m_34329_ + gg ()Z m_34330_ + gh ()V m_7572_ + h_ ()Z m_6162_ + j (Lcfz;)Z m_7252_ + 0 o p_34332_ + k (Lcfz;)Z m_7243_ + 0 o p_182400_ + l ()V m_8119_ + q ()V m_6878_ + r ()Z m_7586_ + s ()Lamg; m_7515_ + w ()Lamg; m_7660_ + x ()V m_8099_ + x (Z)V m_34336_ + 0 o p_34337_ + z (Lbfj;)Z m_7327_ + 0 o p_34276_ +bwv$a net/minecraft/world/entity/monster/Zombie$ZombieAttackTurtleEggGoal + g f_34341_ + (Lbwv;Lbgi;DI)V + 0 o p_34343_ + 1 o p_34344_ + 2 o p_34345_ + 3 o p_34346_ + a (Lcmn;Lgu;)V m_7659_ + 0 o p_34351_ + 1 o p_34352_ + a (Lcmm;Lgu;)V m_5777_ + 0 o p_34348_ + 1 o p_34349_ + i ()D m_8052_ +bwv$b net/minecraft/world/entity/monster/Zombie$ZombieGroupData + a f_34354_ + b f_34355_ + (ZZ)V + 0 o p_34357_ + 1 o p_34358_ +bww net/minecraft/world/entity/monster/ZombieVillager + b f_201975_ + bX f_149888_ + bY f_149885_ + bZ f_149886_ + c f_34359_ + ca f_149887_ + cb f_34365_ + cc f_34360_ + cd f_34361_ + ce f_34362_ + cf f_34363_ + d f_34364_ + ()V + static + (Lbfn;Lcmm;)V + 0 o p_34368_ + 1 o p_34369_ + a (Lqr;)V m_7378_ + 0 o p_34387_ + a (Lhe$c;)V m_254805_ + 0 o p_255550_ + a (Lcnb;Lbdv;Lbgd;Lbgt;Lqr;)Lbgt; m_6518_ + 0 o p_34378_ + 1 o p_34379_ + 2 o p_34380_ + 3 o p_34381_ + 4 o p_34382_ + a (Lbyc;)V m_34375_ + 0 o p_34376_ + a (Ljava/util/UUID;I)V m_34383_ + 0 o p_34384_ + 1 o p_34385_ + a (Lqr;Lrk;)V m_204070_ + static + 0 o p_204071_ + 1 o p_204072_ + a (Lrk;)V m_34391_ + 0 o p_34392_ + a_ ()V m_8097_ + b (Lbyo;Lbdw;)Lbdx; m_6071_ + 0 o p_34394_ + 1 o p_34395_ + b (Lqr;)V m_7380_ + 0 o p_34397_ + b (I)V m_34373_ + 0 o p_34374_ + b (B)V m_7822_ + 0 o p_34372_ + c (Lqr;)V m_34411_ + 0 o p_34412_ + c (Laif;)V m_34398_ + 0 o p_34399_ + d (Lben;)Lamg; m_7975_ + 0 o p_34404_ + eS ()F m_6100_ + fY ()Lcfz; m_5728_ + fZ ()Z m_7593_ + g_ ()Lamg; m_5592_ + gi ()Z m_34408_ + gj ()Lbyc; m_7141_ + gk ()I m_149889_ + gl ()I m_34410_ + h (D)Z m_6785_ + 0 o p_34414_ + l ()V m_8119_ + s ()Lamg; m_7515_ + w ()Lamg; m_7660_ +bwx net/minecraft/world/entity/monster/ZombifiedPiglin + bX f_34424_ + bY f_34417_ + bZ f_34418_ + c f_34416_ + ca f_34419_ + cb f_34420_ + cc f_149890_ + cd f_34421_ + ce f_34422_ + cf f_256895_ + cg f_262243_ + d f_34423_ + ()V + static + (Lbfn;Lcmm;)V + 0 o p_34427_ + 1 o p_34428_ + W ()V m_8024_ + a (Lapf;Lbdv;)V m_213945_ + 0 o p_219171_ + 1 o p_219172_ + a (Lqr;)V m_7378_ + 0 o p_34446_ + a ()I m_6784_ + a (Lcmp;)Z m_6914_ + 0 o p_34442_ + a (Ljava/util/UUID;)V m_6925_ + 0 o p_34444_ + a (Lbwx;)V m_289152_ + 0 o p_289464_ + a (I)V m_7870_ + 0 o p_34448_ + b ()Ljava/util/UUID; m_6120_ + b (Lqr;)V m_7380_ + 0 o p_34458_ + b (Lbwx;)Z m_289151_ + 0 o p_289463_ + b (Lbfn;Lcmn;Lbgd;Lgu;Lapf;)Z m_219173_ + static + 0 o p_219174_ + 1 o p_219175_ + 2 o p_219176_ + 3 o p_219177_ + 4 o p_219178_ + b (Lbgl;Lbfk;)F m_6431_ + 0 o p_259553_ + 1 o p_259614_ + bw ()D m_6049_ + c (Lbwx;)Z m_289153_ + static + 0 o p_289465_ + c ()V m_6825_ + d (Lben;)Lamg; m_7975_ + 0 o p_34466_ + d (Lbwx;)Z m_34462_ + 0 o p_34463_ + f (Lbyo;)Z m_6935_ + 0 o p_34475_ + fY ()Lcfz; m_5728_ + fZ ()Z m_7593_ + g_ ()Lamg; m_5592_ + gh ()V m_7572_ + gi ()Lbhf$a; m_34470_ + static + gj ()V m_34471_ + gk ()V m_34472_ + gl ()V m_34473_ + gm ()V m_34476_ + h (Lbfz;)V m_6710_ + 0 o p_34478_ + k (Lcfz;)Z m_7243_ + 0 o p_182402_ + q ()V m_6878_ + s ()Lamg; m_7515_ +bwy net/minecraft/world/entity/monster/hoglin/Hoglin + bT f_34480_ + bU f_34481_ + bW f_34482_ + bX f_149891_ + bY f_149892_ + bZ f_149893_ + ca f_149894_ + cb f_149895_ + cc f_149896_ + cd f_149897_ + ce f_149898_ + cf f_34483_ + cg f_34484_ + ch f_34485_ + ()V + static + (Lbfn;Lcmm;)V + 0 o p_34488_ + 1 o p_34489_ + V ()V m_8025_ + W ()V m_8024_ + a (Lqr;)V m_7378_ + 0 o p_34519_ + a (Lcnb;Lbdv;Lbgd;Lbgt;Lqr;)Lbgt; m_6518_ + 0 o p_34508_ + 1 o p_34509_ + 2 o p_34510_ + 3 o p_34511_ + 4 o p_34512_ + a (Lgu;Lcmp;)F m_5610_ + 0 o p_34516_ + 1 o p_34517_ + a (Lbyo;)Z m_6573_ + 0 o p_34506_ + a (Lcom/mojang/serialization/Dynamic;)Lbha; m_8075_ + 0 o p_34514_ + a (Laif;Lbfe;)Lbfe; m_142606_ + 0 o p_149900_ + 1 o p_149901_ + a (Lben;F)Z m_6469_ + 0 o p_34503_ + 1 o p_34504_ + aJ ()Lamg; m_5501_ + aK ()Lamg; m_5509_ + a_ ()V m_8097_ + b (Lbyo;Lbdw;)Lbdx; m_6071_ + 0 o p_34523_ + 1 o p_34524_ + b (Lamg;)V m_219179_ + 0 o p_219180_ + b (Lqr;)V m_7380_ + 0 o p_34529_ + b (Lgu;Ldcb;)V m_7355_ + 0 o p_34526_ + 1 o p_34527_ + b (B)V m_7822_ + 0 o p_34496_ + b_ ()V m_8107_ + bx ()D m_6048_ + c (Lbfn;Lcmn;Lbgd;Lgu;Lapf;)Z m_219181_ + static + 0 o p_219182_ + 1 o p_219183_ + 2 o p_219184_ + 3 o p_219185_ + 4 o p_219186_ + c (Laif;)V m_34531_ + 0 o p_34532_ + cY ()Lami; m_5720_ + d (Lben;)Lamg; m_7975_ + 0 o p_34548_ + dK ()Lbha; m_6274_ + dL ()Lbha$b; m_5490_ + dY ()Z m_6149_ + e (Lbfz;)V m_6731_ + 0 o p_34550_ + ea ()I m_213860_ + fY ()I m_7575_ + fZ ()Z m_5957_ + g_ ()Lamg; m_5592_ + ge ()Z m_34555_ + gf ()Z m_34557_ + h (D)Z m_6785_ + 0 o p_34559_ + m ()V m_30232_ + m (Lcfz;)Z m_6898_ + 0 o p_34562_ + q ()Lbhf$a; m_34551_ + static + r ()Z m_34552_ + s ()Lamg; m_7515_ + w ()Z m_34554_ + w (Z)V m_34564_ + 0 o p_34565_ + x (Z)V m_34566_ + 0 o p_34567_ + z (Lbfj;)Z m_7327_ + 0 o p_34491_ +bwz net/minecraft/world/entity/monster/hoglin/HoglinAi + a f_149902_ + b f_149903_ + c f_34568_ + d f_149904_ + e f_149905_ + f f_149906_ + g f_149907_ + h f_149908_ + i f_149909_ + j f_34569_ + k f_149910_ + l f_149911_ + m f_149912_ + n f_149913_ + o f_149914_ + ()V + static + ()V + a (Lbwy;Lgu;)Z m_34585_ + static + 0 o p_34586_ + 1 o p_34587_ + a ()Lbjn; m_34571_ + static + a (Lbha;)Lbha; m_34575_ + static + 0 o p_34576_ + a (Lbwy;Lbzz;)Lamg; m_34582_ + static + 0 o p_34583_ + 1 o p_34584_ + a (Lbfz;Lbwy;)V m_34572_ + static + 0 o p_34573_ + 1 o p_34574_ + a (Lbwy;Lbfz;)V m_34579_ + static + 0 o p_34580_ + 1 o p_34581_ + a (Lbwy;)V m_34577_ + static + 0 o p_34578_ + b (Lbha;)V m_34591_ + static + 0 o p_34592_ + b (Lbwy;Lbzz;)Lamg; m_34598_ + static + 0 o p_34599_ + 1 o p_34600_ + b (Lbwy;)Ljava/util/Optional; m_34593_ + static + 0 o p_34594_ + b (Lbfz;Lbwy;)V m_34588_ + static + 0 o p_34589_ + 1 o p_34590_ + b (Lbwy;Lbfz;)V m_34595_ + static + 0 o p_34596_ + 1 o p_34597_ + c (Lbwy;)Z m_34603_ + static + 0 o p_34604_ + c (Lbwy;Lbfz;)V m_34605_ + static + 0 o p_34606_ + 1 o p_34607_ + c (Lbha;)V m_34601_ + static + 0 o p_34602_ + d (Lbwy;Lbfz;)V m_34612_ + static + 0 o p_34613_ + 1 o p_34614_ + d (Lbha;)V m_34608_ + static + 0 o p_34609_ + d (Lbwy;)Ljava/util/Optional; m_34610_ + static + 0 o p_34611_ + e (Lbwy;Lbfz;)V m_34619_ + static + 0 o p_34620_ + 1 o p_34621_ + e (Lbwy;)Z m_34617_ + static + 0 o p_34618_ + e (Lbha;)V m_34615_ + static + 0 o p_34616_ + f (Lbwy;Lbfz;)V m_34624_ + static + 0 o p_34625_ + 1 o p_34626_ + f (Lbwy;)Z m_34622_ + static + 0 o p_34623_ + g (Lbwy;Lbfz;)V m_34629_ + static + 0 o p_34630_ + 1 o p_34631_ + g (Lbwy;)Ljava/util/List; m_34627_ + static + 0 o p_34628_ + h (Lbwy;)Z m_34632_ + static + 0 o p_34633_ + h (Lbwy;Lbfz;)V m_34634_ + static + 0 o p_34635_ + 1 o p_34636_ + i (Lbwy;)Z m_34637_ + static + 0 o p_34638_ + i (Lbwy;Lbfz;)V m_34639_ + static + 0 o p_34640_ + 1 o p_34641_ +bx net/minecraft/advancements/critereon/InventoryChangeTrigger + a f_43145_ + ()V + static + ()V + a (Laig;Lbyn;Lcfz;III)V m_43153_ + 0 o p_43154_ + 1 o p_43155_ + 2 o p_43156_ + 3 o p_43157_ + 4 o p_43158_ + 5 o p_43159_ + a (Lcom/google/gson/JsonObject;Lba;Lbe;)Lbx$a; m_7214_ + 0 o p_286555_ + 1 o p_286704_ + 2 o p_286270_ + a (Lbyn;Lcfz;IIILbx$a;)Z m_43160_ + static + 0 o p_43161_ + 1 o p_43162_ + 2 o p_43163_ + 3 o p_43164_ + 4 o p_43165_ + 5 o p_43166_ + a ()Lacq; m_7295_ + a (Laig;Lbyn;Lcfz;)V m_43149_ + 0 o p_43150_ + 1 o p_43151_ + 2 o p_43152_ + b (Lcom/google/gson/JsonObject;Lba;Lbe;)Lar; m_7214_ + 0 o p_286735_ + 1 o p_286440_ + 2 o p_286698_ +bx$a net/minecraft/advancements/critereon/InventoryChangeTrigger$TriggerInstance + a f_43176_ + b f_43177_ + c f_43178_ + d f_43179_ + (Lba;Lcj$d;Lcj$d;Lcj$d;[Lbz;)V + 0 o p_286286_ + 1 o p_286313_ + 2 o p_286767_ + 3 o p_286601_ + 4 o p_286380_ + a ([Lbz;)Lbx$a; m_43197_ + static + 0 o p_43198_ + a (Lct;)Lcom/google/gson/JsonObject; m_7683_ + 0 o p_43196_ + a ([Lcml;)Lbx$a; m_43199_ + static + 0 o p_43200_ + a (Lcfz;Lbz;)Z m_43192_ + static + 0 o p_43193_ + 1 o p_43194_ + a (Lbyn;Lcfz;III)Z m_43186_ + 0 o p_43187_ + 1 o p_43188_ + 2 o p_43189_ + 3 o p_43190_ + 4 o p_43191_ +bxa net/minecraft/world/entity/monster/hoglin/HoglinBase + l_ f_149916_ + a (Lbfz;Lbfz;)Z m_34642_ + static + 0 o p_34643_ + 1 o p_34644_ + b (Lbfz;Lbfz;)V m_34645_ + static + 0 o p_34646_ + 1 o p_34647_ + fY ()I m_7575_ +bxb net/minecraft/world/entity/monster/hoglin/package-info +bxc net/minecraft/world/entity/monster/package-info +bxd net/minecraft/world/entity/monster/piglin/AbstractPiglin + b f_34648_ + c f_149917_ + d f_256822_ + e f_34649_ + ()V + static + (Lbfn;Lcmm;)V + 0 o p_34652_ + 1 o p_34653_ + N ()V m_8032_ + V ()V m_8025_ + W ()V m_8024_ + a (Lqr;)V m_7378_ + 0 o p_34659_ + a_ ()V m_8097_ + b (Lqr;)V m_7380_ + 0 o p_34661_ + b (Lbgl;Lbfk;)F m_6431_ + 0 o p_259213_ + 1 o p_259279_ + bw ()D m_6049_ + c (Laif;)V m_8063_ + 0 o p_34663_ + fY ()Z m_34666_ + fZ ()Z m_34667_ + ga ()Lbxg; m_6389_ + gb ()Z m_34668_ + gc ()V m_7580_ + j ()Lbfz; m_5448_ + q ()Z m_7121_ + r ()Z m_34665_ + w ()V m_34669_ + w (Z)V m_34670_ + 0 o p_34671_ +bxe net/minecraft/world/entity/monster/piglin/Piglin + bT f_34680_ + bU f_34672_ + bV f_34673_ + bW f_34674_ + bX f_34675_ + bY f_34676_ + bZ f_34677_ + ca f_149918_ + cb f_149919_ + cc f_149920_ + cd f_149921_ + ce f_149922_ + cf f_149923_ + cg f_149924_ + ch f_149925_ + ci f_149926_ + cj f_34678_ + ck f_34679_ + ()V + static + (Lbfn;Lcmm;)V + 0 o p_34683_ + 1 o p_34684_ + U ()Z m_8028_ + W ()V m_8024_ + a (Lcgp;)Z m_5886_ + 0 o p_34715_ + a (Lben;IZ)V m_7472_ + 0 o p_34697_ + 1 o p_34698_ + 2 o p_34699_ + a (Lqr;)V m_7378_ + 0 o p_34725_ + a (Z)V m_6863_ + 0 o p_34729_ + a (Lcnb;Lbdv;Lbgd;Lbgt;Lqr;)Lbgt; m_6518_ + 0 o p_34717_ + 1 o p_34718_ + 2 o p_34719_ + 3 o p_34720_ + 4 o p_34721_ + a (Lcom/mojang/serialization/Dynamic;)Lbha; m_8075_ + 0 o p_34723_ + a (Lben;F)Z m_6469_ + 0 o p_34694_ + 1 o p_34695_ + a (Lbfz;F)V m_6504_ + 0 o p_34704_ + 1 o p_34705_ + a (Lapf;Lbdv;)V m_213945_ + 0 o p_219189_ + 1 o p_219190_ + a (Laby;)V m_7350_ + 0 o p_34727_ + a (Lbfj;Z)Z m_7998_ + 0 o p_34701_ + 1 o p_34702_ + a ()V m_5847_ + a (Lbfz;Lcfz;Lbzg;F)V m_5811_ + 0 o p_34707_ + 1 o p_34708_ + 2 o p_34709_ + 3 o p_34710_ + a (Lbfo;Lcfz;Lapf;)V m_219191_ + 0 o p_219192_ + 1 o p_219193_ + 2 o p_219194_ + a_ ()V m_8097_ + b (Lbyo;Lbdw;)Lbdx; m_6071_ + 0 o p_34745_ + 1 o p_34746_ + b (Lqr;)V m_7380_ + 0 o p_34751_ + b (Z)V m_6136_ + 0 o p_34753_ + b (Lbvh;)V m_7581_ + 0 o p_34743_ + b (Lcfz;Lcfz;)Z m_7808_ + 0 o p_34712_ + 1 o p_34713_ + b (Lbfn;Lcmn;Lbgd;Lgu;Lapf;)Z m_219197_ + static + 0 o p_219198_ + 1 o p_219199_ + 2 o p_219200_ + 3 o p_219201_ + 4 o p_219202_ + b (Lbgl;Lbfk;)F m_6431_ + 0 o p_34740_ + 1 o p_34741_ + b (Lamg;)V m_219195_ + 0 o p_219196_ + b (Lbfj;I)Lbfj; m_34730_ + 0 o p_34731_ + 1 o p_34732_ + b (Lgu;Ldcb;)V m_7355_ + 0 o p_34748_ + 1 o p_34749_ + bx ()D m_6048_ + c (Laif;)V m_8063_ + 0 o p_34756_ + d (Lben;)Lamg; m_7975_ + 0 o p_34767_ + dK ()Lbha; m_6274_ + dL ()Lbha$b; m_5490_ + ea ()I m_213860_ + g_ ()Lamg; m_5592_ + ga ()Lbxg; m_6389_ + gc ()V m_7580_ + gf ()Lbhf$a; m_34770_ + static + gg ()Z m_34771_ + gh ()Lcfz; m_34772_ + gi ()Z m_34773_ + h (D)Z m_6785_ + 0 o p_34775_ + h_ ()Z m_6162_ + k (Lcfz;)Z m_7243_ + 0 o p_34777_ + l (Lcfz;)Lcfz; m_34778_ + 0 o p_34779_ + m (Lcfz;)Z m_34780_ + 0 o p_34781_ + n (Lcfz;)V m_34783_ + 0 o p_34784_ + o (Lcfz;)V m_34785_ + 0 o p_34786_ + p (Lcfz;)Z m_34787_ + 0 o p_34788_ + q ()Z m_7121_ + s ()Lamg; m_7515_ + w ()Lbee; m_35311_ + x (Z)V m_34789_ + 0 o p_34790_ + y (Z)V m_34791_ + 0 o p_34792_ +bxf net/minecraft/world/entity/monster/piglin/PiglinAi + A f_34799_ + B f_34800_ + C f_149932_ + D f_149933_ + E f_149934_ + F f_149935_ + G f_149936_ + H f_149937_ + I f_149938_ + J f_149939_ + a f_149940_ + b f_149941_ + c f_34794_ + d f_34795_ + e f_149942_ + f f_149943_ + g f_149944_ + h f_149945_ + i f_149946_ + j f_149947_ + k f_149948_ + l f_149949_ + m f_149950_ + n f_149951_ + o f_34796_ + p f_34797_ + q f_34798_ + r f_149952_ + s f_149953_ + t f_149954_ + u f_149955_ + v f_149956_ + w f_149957_ + x f_149958_ + y f_149959_ + z f_149960_ + ()V + static + ()V + a (Lbxe;Lbfj;)Z m_34834_ + static + 0 o p_34835_ + 1 o p_34836_ + a (Lbha;)V m_34820_ + static + 0 o p_34821_ + a ()Lcom/google/common/collect/ImmutableList; m_257792_ + static + a (Lbjq$a;Lbfz;)Z m_289156_ + static + 0 o p_289471_ + 1 o p_289472_ + a (Lbyo;Z)V m_34873_ + static + 0 o p_34874_ + 1 o p_34875_ + a (Lbxe;Lcfz;)Z m_34857_ + static + 0 o p_34858_ + 1 o p_34859_ + a (Lbxd;Lbfz;)V m_34826_ + static + 0 o p_34827_ + 1 o p_34828_ + a (Lbxe;Lapf;)V m_219205_ + static + 0 o p_219206_ + 1 o p_219207_ + a (Lcfz;)Z m_149965_ + static + 0 o p_149966_ + a (Lbfz;Lbha;Lbfz;)V m_289155_ + static + 0 o p_289468_ + 1 o p_289469_ + 2 o p_289470_ + a (Lbfz;)Z m_34808_ + static + 0 o p_34809_ + a (Lbxe;)V m_34898_ + static + 0 o p_34899_ + a (Lbvh;)Lcfz; m_34822_ + static + 0 o p_34823_ + a (Lbxe;Z)V m_34867_ + static + 0 o p_34868_ + 1 o p_34869_ + a (ZLbyo;Lbxe;)Z m_34878_ + static + 0 o p_34879_ + 1 o p_34880_ + 2 o p_34881_ + a (Lbxe;Lbyo;Ljava/util/List;)V m_34850_ + static + 0 o p_34851_ + 1 o p_34852_ + 2 o p_34853_ + a (Lbxd;Lbyo;)V m_149962_ + static + 0 o p_149963_ + 1 o p_149964_ + a (Lbfz;Lbfz;)Z m_34810_ + static + 0 o p_34811_ + 1 o p_34812_ + a (Lbxe;Ljava/util/List;Leei;)V m_34863_ + static + 0 o p_34864_ + 1 o p_34865_ + 2 o p_34866_ + a (Lbxe;Ljava/util/List;)V m_34860_ + static + 0 o p_34861_ + 1 o p_34862_ + a (Lbxe;Lbvh;)V m_34843_ + static + 0 o p_34844_ + 1 o p_34845_ + a (Lbyo;Lbxe;)V m_289154_ + static + 0 o p_289466_ + 1 o p_289467_ + a (Lbxd;)V m_34824_ + static + 0 o p_34825_ + a (Lbxe;Lbyo;Lbdw;)Lbdx; m_34846_ + static + 0 o p_34847_ + 1 o p_34848_ + 2 o p_34849_ + a (Lbfz;Lbxd;)V m_34817_ + static + 0 o p_34818_ + 1 o p_34819_ + a (Lbxe;Lbzz;)Lamg; m_34854_ + static + 0 o p_34855_ + 1 o p_34856_ + a (Lbxe;Lbha;)Lbha; m_34840_ + static + 0 o p_34841_ + 1 o p_34842_ + a (Lbxe;Lbfz;)V m_34837_ + static + 0 o p_34838_ + 1 o p_34839_ + a (Lbfn;)Z m_34806_ + static + 0 o p_34807_ + b (Lbfz;)Z m_34883_ + static + 0 o p_34884_ + b (Lbfz;Lbxd;)V m_289157_ + static + 0 o p_289473_ + 1 o p_289474_ + b (Lbxd;Lbfz;)V m_34895_ + static + 0 o p_34896_ + 1 o p_34897_ + b (Lbfz;Lbfz;)Z m_34885_ + static + 0 o p_34886_ + 1 o p_34887_ + b (Lbha;)V m_34891_ + static + 0 o p_34892_ + b (Lbxe;Lbzz;)Lamg; m_34906_ + static + 0 o p_34907_ + 1 o p_34908_ + b (Lbxe;Lbfz;)Z m_34900_ + static + 0 o p_34901_ + 1 o p_34902_ + b ()Lbjn; m_34805_ + static + b (Lbxe;)V m_34927_ + static + 0 o p_34928_ + b (Lbxe;Lbha;)V m_34903_ + static + 0 o p_34904_ + 1 o p_34905_ + b (Lbxe;Lcfz;)Z m_34909_ + static + 0 o p_34910_ + 1 o p_34911_ + b (Lbxe;Ljava/util/List;)V m_34912_ + static + 0 o p_34913_ + 1 o p_34914_ + b (Lbxd;)Ljava/util/Optional; m_34893_ + static + 0 o p_34894_ + b (Lcfz;)Z m_149967_ + static + 0 o p_149968_ + c (Lbxd;Lbfz;)V m_34924_ + static + 0 o p_34925_ + 1 o p_34926_ + c (Lbxe;)Ljava/util/Optional; m_34947_ + static + 0 o p_34948_ + c ()Lbjn; m_34882_ + static + c (Lbxe;Lcfz;)V m_34932_ + static + 0 o p_34933_ + 1 o p_34934_ + c (Lbha;)V m_34920_ + static + 0 o p_34921_ + c (Lcfz;)Z m_149969_ + static + 0 o p_149970_ + c (Lbxd;)V m_34922_ + static + 0 o p_34923_ + c (Lbfz;)Z m_34918_ + static + 0 o p_34919_ + c (Lbxe;Lbfz;)V m_34929_ + static + 0 o p_34930_ + 1 o p_34931_ + d (Lbxe;)Ljava/util/List; m_35004_ + static + 0 o p_35005_ + d (Lbxe;Lcfz;)V m_34952_ + static + 0 o p_34953_ + 1 o p_34954_ + d (Lbxe;Lbfz;)V m_34949_ + static + 0 o p_34950_ + 1 o p_34951_ + d (Lbxd;)Z m_34942_ + static + 0 o p_34943_ + d (Lbfz;)V m_34938_ + static + 0 o p_34939_ + d (Lbxd;Lbfz;)V m_34944_ + static + 0 o p_34945_ + 1 o p_34946_ + d ()Lbhs; m_257691_ + static + d (Lbha;)V m_34940_ + static + 0 o p_34941_ + e (Lbxe;Lbfz;)V m_34967_ + static + 0 o p_34968_ + 1 o p_34969_ + e (Lbxe;)Ljava/util/Optional; m_34986_ + static + 0 o p_34987_ + e (Lbha;)V m_34958_ + static + 0 o p_34959_ + e (Lbfz;)Z m_34971_ + static + 0 o p_34972_ + e (Lbxd;)Ljava/util/List; m_34960_ + static + 0 o p_34961_ + e (Lbxd;Lbfz;)V m_34962_ + static + 0 o p_34963_ + 1 o p_34964_ + e ()Lbhs; m_257417_ + static + f (Lbfz;)Z m_34982_ + static + 0 o p_34983_ + f (Lbxe;Lbfz;)Z m_34979_ + static + 0 o p_34980_ + 1 o p_34981_ + f (Lbha;)V m_34973_ + static + 0 o p_34974_ + f (Lbxd;)Ljava/util/Optional; m_34975_ + static + 0 o p_34976_ + f ()Lbhs; m_257731_ + static + f (Lbxe;)Z m_34992_ + static + 0 o p_34993_ + g ()Lbhs; m_257528_ + static + g (Lbxe;)Ljava/util/List; m_34996_ + static + 0 o p_34997_ + g (Lbfz;)Z m_34988_ + static + 0 o p_34989_ + g (Lbxd;)Z m_34984_ + static + 0 o p_34985_ + h (Lbxe;)Z m_34998_ + static + 0 o p_34999_ + h (Lbxd;)V m_34990_ + static + 0 o p_34991_ + i (Lbxe;)Ljava/util/Optional; m_35000_ + static + 0 o p_35001_ + j (Lbxe;)Z m_35002_ + static + 0 o p_35003_ + k (Lbxe;)V m_35006_ + static + 0 o p_35007_ + l (Lbxe;)Z m_35008_ + static + 0 o p_35009_ + m (Lbxe;)Z m_35010_ + static + 0 o p_35011_ + n (Lbxe;)Z m_35012_ + static + 0 o p_35013_ + o (Lbxe;)V m_35014_ + static + 0 o p_35015_ + p (Lbxe;)Leei; m_35016_ + static + 0 o p_35017_ + q (Lbxe;)Z m_35018_ + static + 0 o p_35019_ + r (Lbxe;)Z m_35020_ + static + 0 o p_35021_ + s (Lbxe;)Z m_35022_ + static + 0 o p_35023_ + t (Lbxe;)Z m_35024_ + static + 0 o p_35025_ + u (Lbxe;)Z m_35026_ + static + 0 o p_35027_ + v (Lbxe;)Z m_35028_ + static + 0 o p_35029_ + w (Lbxe;)Z m_257313_ + static + 0 o p_258950_ + x (Lbxe;)Z m_34803_ + static + 0 o p_34804_ +bxg net/minecraft/world/entity/monster/piglin/PiglinArmPose + a ATTACKING_WITH_MELEE_WEAPON + b CROSSBOW_HOLD + c CROSSBOW_CHARGE + d ADMIRING_ITEM + e DANCING + f DEFAULT + g $VALUES + ()V + static + (Ljava/lang/String;I)V + 0 o p_35039_ + 1 o p_35040_ + a ()[Lbxg; m_149973_ + static + valueOf (Ljava/lang/String;)Lbxg; valueOf + static + 0 o p_35042_ + values ()[Lbxg; values + static +bxh net/minecraft/world/entity/monster/piglin/PiglinBrute + bT f_35045_ + bU f_35044_ + bV f_149974_ + bW f_149975_ + bX f_149976_ + ()V + static + (Lbfn;Lcmm;)V + 0 o p_35048_ + 1 o p_35049_ + W ()V m_8024_ + a (Lben;F)Z m_6469_ + 0 o p_35055_ + 1 o p_35056_ + a (Lapf;Lbdv;)V m_213945_ + 0 o p_219209_ + 1 o p_219210_ + a (Lcnb;Lbdv;Lbgd;Lbgt;Lqr;)Lbgt; m_6518_ + 0 o p_35058_ + 1 o p_35059_ + 2 o p_35060_ + 3 o p_35061_ + 4 o p_35062_ + a (Lcom/mojang/serialization/Dynamic;)Lbha; m_8075_ + 0 o p_35064_ + b (Lgu;Ldcb;)V m_7355_ + 0 o p_35066_ + 1 o p_35067_ + d (Lben;)Lamg; m_7975_ + 0 o p_35072_ + dK ()Lbha; m_6274_ + dL ()Lbha$b; m_5490_ + g_ ()Lamg; m_5592_ + ga ()Lbxg; m_6389_ + gc ()V m_7580_ + gf ()V m_35076_ + k (Lcfz;)Z m_7243_ + 0 o p_35078_ + q ()Z m_7121_ + s ()Lamg; m_7515_ + w ()Lbhf$a; m_35075_ + static +bxi net/minecraft/world/entity/monster/piglin/PiglinBruteAi + a f_149977_ + b f_149978_ + c f_149979_ + d f_149980_ + e f_149981_ + f f_149982_ + g f_149983_ + h f_149984_ + i f_149985_ + j f_149986_ + ()V + a ()Lbjn; m_35080_ + static + a (Lbxd;)Ljava/util/Optional; m_35086_ + static + 0 o p_35087_ + a (Lbfz;Lbfz;)Z m_35083_ + static + 0 o p_35084_ + 1 o p_35085_ + a (Lbxh;Lbha;)Lbha; m_35099_ + static + 0 o p_35100_ + 1 o p_35101_ + a (Lbxh;Lbfz;)V m_35096_ + static + 0 o p_35097_ + 1 o p_35098_ + a (Lbxh;)V m_35094_ + static + 0 o p_35095_ + a (Lbxd;Lbpb;)Ljava/util/Optional; m_35091_ + static + 0 o p_35092_ + 1 o p_35093_ + a (Lbxh;Lbzz;)V m_35102_ + static + 0 o p_35103_ + 1 o p_35104_ + a (Lbxd;Lbfz;)Z m_35088_ + static + 0 o p_35089_ + 1 o p_35090_ + b (Lbxh;Lbha;)V m_35111_ + static + 0 o p_35112_ + 1 o p_35113_ + b (Lbxd;Lbfz;)Z m_35106_ + static + 0 o p_35107_ + 1 o p_35108_ + b (Lbxh;Lbfz;)V m_149988_ + static + 0 o p_149989_ + 1 o p_149990_ + b (Lbxh;)V m_35109_ + static + 0 o p_35110_ + b ()Lbjn; m_35105_ + static + c (Lbxh;Lbfz;)Z m_35116_ + static + 0 o p_35117_ + 1 o p_35118_ + c (Lbxh;Lbha;)V m_35119_ + static + 0 o p_35120_ + 1 o p_35121_ + c (Lbxh;)V m_35114_ + static + 0 o p_35115_ + d (Lbxh;)V m_35122_ + static + 0 o p_35123_ + d (Lbxh;Lbha;)V m_35124_ + static + 0 o p_35125_ + 1 o p_35126_ +bxj net/minecraft/world/entity/monster/piglin/RememberIfHoglinWasKilled + ()V + a (Lbld$b;Lble;Lble;Laif;Lbfz;J)Z m_289158_ + static + 0 o p_289475_ + 1 o p_289476_ + 2 o p_289477_ + 3 o p_289478_ + 4 o p_289479_ + 5 o p_289480_ + a (Lbld$b;)Lcom/mojang/datafixers/kinds/App; m_257643_ + static + 0 o p_260168_ + a ()Lbhs; m_257745_ + static + a (Lbld$b;Lble;Lble;)Lblg; m_257939_ + static + 0 o p_259236_ + 1 o p_259214_ + 2 o p_260031_ +bxk net/minecraft/world/entity/monster/piglin/StartAdmiringItemIfSeen + ()V + a (Lbld$b;Lble;Lble;ILaif;Lbfz;J)Z m_257920_ + static + 0 o p_259795_ + 1 o p_259861_ + 2 o p_260154_ + 3 o p_260207_ + 4 o p_260130_ + 5 o p_259946_ + 6 o p_259235_ + a (Lbld$b;ILble;Lble;Lble;Lble;)Lblg; m_257725_ + static + 0 o p_260127_ + 1 o p_259499_ + 2 o p_259343_ + 3 o p_260195_ + 4 o p_259697_ + 5 o p_259511_ + a (I)Lbhs; m_257667_ + static + 0 o p_259418_ + a (ILbld$b;)Lcom/mojang/datafixers/kinds/App; m_258075_ + static + 0 o p_259529_ + 1 o p_259264_ +bxl net/minecraft/world/entity/monster/piglin/StartHuntingHoglin + ()V + a (Lbld$b;)Lcom/mojang/datafixers/kinds/App; m_257635_ + static + 0 o p_259791_ + a ()Lbjb; m_257706_ + static + a (Lbld$b;Lble;Lble;Lble;Lble;)Lblg; m_257530_ + static + 0 o p_259476_ + 1 o p_259255_ + 2 o p_260214_ + 3 o p_259562_ + 4 o p_259156_ + a (Ljava/util/List;)V m_257377_ + static + 0 o p_259760_ + a (Lbxd;)Z m_257899_ + static + 0 o p_260138_ + a (Lbld$b;Lble;Lble;Laif;Lbxe;J)Z m_257704_ + static + 0 o p_259144_ + 1 o p_260050_ + 2 o p_259334_ + 3 o p_259918_ + 4 o p_259191_ + 5 o p_259772_ + b (Ljava/util/List;)Ljava/lang/Boolean; m_257975_ + static + 0 o p_259958_ +bxm net/minecraft/world/entity/monster/piglin/StopAdmiringIfItemTooFarAway + ()V + a (I)Lbhs; m_257651_ + static + 0 o p_259415_ + a (ILbld$b;)Lcom/mojang/datafixers/kinds/App; m_258065_ + static + 0 o p_259391_ + 1 o p_259152_ + a (Lbld$b;ILble;Lble;)Lblg; m_257773_ + static + 0 o p_259448_ + 1 o p_259536_ + 2 o p_260178_ + 3 o p_259241_ + a (Lbld$b;Lble;ILble;Laif;Lbfz;J)Z m_257602_ + static + 0 o p_259427_ + 1 o p_260325_ + 2 o p_259658_ + 3 o p_259446_ + 4 o p_259613_ + 5 o p_259304_ + 6 o p_259748_ +bxn net/minecraft/world/entity/monster/piglin/StopAdmiringIfTiredOfTryingToReachItem + ()V + a (IILbld$b;)Lcom/mojang/datafixers/kinds/App; m_257983_ + static + 0 o p_259478_ + 1 o p_259479_ + 2 o p_260320_ + a (Lbld$b;IILble;Lble;Lble;Lble;)Lblg; m_257597_ + static + 0 o p_260340_ + 1 o p_259549_ + 2 o p_260118_ + 3 o p_260184_ + 4 o p_259407_ + 5 o p_259388_ + 6 o p_259580_ + a (Lbld$b;Lble;ILble;Lble;ILaif;Lbfz;J)Z m_257859_ + static + 0 o p_260034_ + 1 o p_259797_ + 2 o p_259911_ + 3 o p_259109_ + 4 o p_259821_ + 5 o p_259601_ + 6 o p_259044_ + 7 o p_259229_ + 8 o p_259125_ + a (II)Lbhs; m_257715_ + static + 0 o p_259110_ + 1 o p_259200_ +bxo net/minecraft/world/entity/monster/piglin/StopHoldingItemIfNoLongerAdmiring + ()V + a (Lbld$b;)Lcom/mojang/datafixers/kinds/App; m_257649_ + static + 0 o p_259197_ + a (Lble;)Lblg; m_257846_ + static + 0 o p_259512_ + a (Laif;Lbxe;J)Z m_289159_ + static + 0 o p_289481_ + 1 o p_289482_ + 2 o p_289483_ + a ()Lbhs; m_257718_ + static +bxp net/minecraft/world/entity/monster/piglin/package-info +bxq net/minecraft/world/entity/monster/warden/AngerLevel + a CALM + b AGITATED + c ANGRY + d f_219214_ + e f_219215_ + f f_219216_ + g f_219217_ + h $VALUES + ()V + static + (Ljava/lang/String;IILamg;Lamg;)V + 0 o p_219221_ + 1 o p_219222_ + 2 o p_219223_ + 3 o p_219224_ + 4 o p_219225_ + a (Lbxq;Lbxq;)I m_219229_ + static + 0 o p_219230_ + 1 o p_219231_ + a ([Lbxq;)V m_219232_ + static + 0 o p_219233_ + a ()I m_219226_ + a (I)Lbxq; m_219227_ + static + 0 o p_219228_ + b ()Lamg; m_219234_ + c ()Lamg; m_219235_ + d ()Z m_219236_ + e ()[Lbxq; m_219237_ + static + valueOf (Ljava/lang/String;)Lbxq; valueOf + static + 0 o p_219239_ + values ()[Lbxq; values + static +bxr net/minecraft/world/entity/monster/warden/AngerManagement + a f_219241_ + b f_219242_ + c f_219243_ + d f_219244_ + e f_219245_ + f f_219246_ + g f_219247_ + h f_219248_ + i f_219249_ + j f_219250_ + k f_219251_ + ()V + static + (Ljava/util/function/Predicate;Ljava/util/List;)V + 0 o p_219254_ + 1 o p_219255_ + a (Ljava/util/function/Predicate;Ljava/util/List;)Lbxr; m_219282_ + static + 0 o p_219283_ + 1 o p_219284_ + a (Lbfj;)V m_219266_ + 0 o p_219267_ + a (ILbfj;Ljava/lang/Integer;)Ljava/lang/Integer; m_219257_ + static + 0 o p_219258_ + 1 o p_219259_ + 2 o p_219260_ + a (Ljava/util/function/Predicate;)Lcom/mojang/serialization/Codec; m_219277_ + static + 0 o p_219278_ + a (Lcom/mojang/datafixers/util/Pair;)V m_219271_ + 0 o p_219272_ + a (Ljava/util/function/Predicate;Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; m_219279_ + static + 0 o p_219280_ + 1 o p_219281_ + a (Laif;Ljava/util/function/Predicate;)V m_219263_ + 0 o p_219264_ + 1 o p_219265_ + a (Lbfj;I)I m_219268_ + 0 o p_219269_ + 1 o p_219270_ + a ()Ljava/util/Optional; m_219256_ + a (Lit/unimi/dsi/fastutil/objects/Object2IntMap$Entry;)Lcom/mojang/datafixers/util/Pair; m_219275_ + static + 0 o p_219276_ + a (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; m_252714_ + static + 0 o p_253580_ + a (Laif;)V m_219261_ + 0 o p_219262_ + b ()Ljava/util/List; m_219285_ + b (Lbfj;)I m_219286_ + 0 o p_219287_ + c (Lbfj;)Lbfz; m_219289_ + static + 0 o p_219290_ + c ()V m_219288_ + d (Lbfj;)Z m_219292_ + static + 0 o p_219293_ + d ()Lbfj; m_219291_ + e (Lbfj;)Lcom/mojang/datafixers/util/Pair; m_219294_ + 0 o p_219295_ +bxr$1 net/minecraft/world/entity/monster/warden/AngerManagement$1 + a f_219296_ + ()V + static +bxr$a net/minecraft/world/entity/monster/warden/AngerManagement$Sorter + a f_219298_ + (Lbxr;)V + 0 o f_219298_ + a ()Lbxr; f_219298_ + a (Lbfj;Lbfj;)I compare + 0 o p_219303_ + 1 o p_219304_ + compare (Ljava/lang/Object;Ljava/lang/Object;)I compare + 0 o p_219306_ + 1 o p_219307_ + equals (Ljava/lang/Object;)Z equals + 0 o p_219309_ + hashCode ()I hashCode + toString ()Ljava/lang/String; toString +bxs net/minecraft/world/entity/monster/warden/Warden + b f_219312_ + bT f_219313_ + bU f_219314_ + bV f_219315_ + bW f_219321_ + bX f_219322_ + bY f_219323_ + bZ f_219324_ + c f_219316_ + ca f_219325_ + cb f_219326_ + cc f_219327_ + cd f_219328_ + ce f_219329_ + cf f_219330_ + cg f_219331_ + ch f_219332_ + ci f_219333_ + cj f_219334_ + ck f_219335_ + cl f_219336_ + cm f_219337_ + cn f_219338_ + co f_219339_ + cp f_219340_ + cq f_219341_ + cr f_219342_ + cs f_219343_ + ct f_219344_ + cu f_219345_ + cv f_219317_ + cw f_219318_ + cx f_279603_ + cy f_279590_ + cz f_219319_ + d f_219346_ + e f_219347_ + ()V + static + (Lbfn;Lcmm;)V + 0 o p_219350_ + 1 o p_219351_ + A (Lbfj;)V m_7324_ + 0 o p_219353_ + D (F)F m_219467_ + 0 o p_219468_ + E (F)F m_219469_ + 0 o p_219470_ + S ()Luo; m_5654_ + V ()V m_8025_ + W ()V m_8024_ + a (Lqr;)V m_7378_ + 0 o p_219415_ + a (Lbxs;)Lbha; m_280253_ + static + 0 o p_283139_ + a (Lcnb;Lbdv;Lbgd;Lbgt;Lqr;)Lbgt; m_6518_ + 0 o p_219400_ + 1 o p_219401_ + 2 o p_219402_ + 3 o p_219403_ + 4 o p_219404_ + a (Lbff;)V m_219383_ + 0 o p_219384_ + a (Ljava/util/function/BiConsumer;)V m_213651_ + 0 o p_219413_ + a (Lcom/mojang/serialization/Dynamic;)Lbha; m_8075_ + 0 o p_219406_ + a (Laif;Leei;Lbfj;I)V m_219375_ + static + 0 o p_219376_ + 1 o p_219377_ + 2 o p_219378_ + 3 o p_219379_ + a (Lben;F)Z m_6469_ + 0 o p_219381_ + 1 o p_219382_ + a (Lqr;Lrk;)V m_219416_ + static + 0 o p_219417_ + 1 o p_219418_ + a (Lbgl;)Lbfk; m_6972_ + 0 o p_219392_ + a (Ldgu$a;)V m_279938_ + 0 o p_281093_ + a (Laby;)V m_7350_ + 0 o p_219422_ + a (Lcmp;)Z m_6914_ + 0 o p_219398_ + a (Lgu;Lcmp;)F m_5610_ + 0 o p_219410_ + 1 o p_219411_ + a (Lus;)V m_141965_ + 0 o p_219420_ + a (Lbfj;)Z m_219385_ + 0 o p_219386_ + a (Lbxr;)V m_219393_ + 0 o p_219394_ + a (Lbfj;IZ)V m_219387_ + 0 o p_219388_ + 1 o p_219389_ + 2 o p_219390_ + aI ()F m_6059_ + aT ()Z m_213854_ + a_ ()V m_8097_ + b (Lqr;)V m_7380_ + 0 o p_219434_ + b (Lcmm;)Lbpj; m_6037_ + 0 o p_219396_ + b (Lqr;Lrk;)V m_219435_ + static + 0 o p_219436_ + 1 o p_219437_ + b (Lbfj;)V m_219428_ + 0 o p_219429_ + b (B)V m_7822_ + 0 o p_219360_ + b (Lben;)Z m_6673_ + 0 o p_219427_ + b (Lgu;Ldcb;)V m_7355_ + 0 o p_219431_ + 1 o p_219432_ + bp ()Z m_6094_ + c (Lbfj;)V m_219441_ + 0 o p_219442_ + cJ ()Z m_6128_ + d (Lben;)Lamg; m_7975_ + 0 o p_219440_ + dK ()Lbha; m_6274_ + eR ()F m_6121_ + fB ()Z m_213824_ + fY ()Ljava/util/Optional; m_219448_ + fZ ()Lbxr; m_219449_ + g_ ()Lamg; m_5592_ + ga ()Z m_219450_ + gb ()Ldgu$a; m_280002_ + gc ()Ldgu$d; m_280445_ + gf ()V m_219451_ + gg ()I m_219452_ + gh ()V m_219453_ + gi ()I m_219454_ + h (D)Z m_6785_ + 0 o p_219457_ + j ()Lbfz; m_5448_ + l (Lbfj;)Z m_7341_ + 0 o p_219462_ + l (Lbfz;)V m_219459_ + 0 o p_219460_ + l ()V m_8119_ + q ()Lbhf$a; m_219463_ + static + r ()I m_219464_ + s ()Lamg; m_7515_ + w ()Lbxq; m_219446_ + z (Lbfj;)Z m_7327_ + 0 o p_219472_ +bxs$1 net/minecraft/world/entity/monster/warden/Warden$1 + p f_219473_ + (Lbxs;Lbgb;Lcmm;)V + 0 o p_219475_ + 1 o p_219476_ + 2 o p_219477_ + a (I)Ldxv; m_5532_ + 0 o p_219479_ +bxs$1$1 net/minecraft/world/entity/monster/warden/Warden$1$1 + a f_219480_ + (Lbxs$1;Ldxs;I)V + 0 o p_219482_ + 1 o p_219483_ + 2 o p_219484_ + a (Ldxr;Ldxr;)F m_214208_ + 0 o p_219486_ + 1 o p_219487_ +bxs$2 net/minecraft/world/entity/monster/warden/Warden$2 + a f_219488_ + ()V + static +bxs$a net/minecraft/world/entity/monster/warden/Warden$VibrationUser + a f_279592_ + b f_279541_ + c f_279600_ + (Lbxs;)V + 0 o p_282052_ + a (Laif;Lgu;Ldgl;Ldgl$a;)Z m_280080_ + 0 o p_282574_ + 1 o p_282323_ + 2 o p_283003_ + 3 o p_282515_ + a ()I m_280351_ + a (Laif;Lgu;Ldgl;Lbfj;Lbfj;F)V m_280271_ + 0 o p_281325_ + 1 o p_282386_ + 2 o p_282261_ + 3 o p_281438_ + 4 o p_282582_ + 5 o p_283699_ + b ()Ldgp; m_280010_ + c ()Lanl; m_280028_ + d ()Z m_280076_ +bxt net/minecraft/world/entity/monster/warden/WardenAi + a f_219490_ + b f_219491_ + c f_219492_ + d f_219493_ + e f_219494_ + f f_219495_ + g f_219496_ + h f_219497_ + i f_219498_ + j f_219499_ + k f_219500_ + l f_219501_ + m f_219502_ + ()V + static + ()V + a (Lbxs;Lbha;)V m_219517_ + static + 0 o p_219518_ + 1 o p_219519_ + a (Lbfz;Lbfz;)Z m_219507_ + static + 0 o p_219508_ + 1 o p_219509_ + a (Lbld$b;Lble;)Lblg; m_257317_ + static + 0 o p_258959_ + 1 o p_258960_ + a (Lbha;)V m_219510_ + static + 0 o p_219511_ + a (Lbxs;Lcom/mojang/serialization/Dynamic;)Lbha; m_219520_ + static + 0 o p_219521_ + 1 o p_219522_ + a (Lbfz;)V m_219505_ + static + 0 o p_219506_ + a (Lbxs;)V m_219512_ + static + 0 o p_219513_ + a (Lbld$b;)Lcom/mojang/datafixers/kinds/App; m_257315_ + static + 0 o p_258953_ + a (Lbxs;Lgu;)V m_219523_ + static + 0 o p_219524_ + 1 o p_219525_ + a (Lbxs;Lbfz;)Z m_219514_ + static + 0 o p_219515_ + 1 o p_219516_ + a (Lbld$b;Lble;Laif;Lbxs;J)Z m_257316_ + static + 0 o p_258954_ + 1 o p_258955_ + 2 o p_258956_ + 3 o p_258957_ + 4 o p_258958_ + b (Lbha;)V m_219526_ + static + 0 o p_219527_ + b (Lbxs;Lbfz;)V m_219528_ + static + 0 o p_219529_ + 1 o p_219530_ + c (Lbha;)V m_219531_ + static + 0 o p_219532_ + c (Lbxs;Lbfz;)Z m_219533_ + static + 0 o p_219534_ + 1 o p_219535_ + d (Lbxs;Lbfz;)Z m_219538_ + static + 0 o p_219539_ + 1 o p_219540_ + d (Lbha;)V m_219536_ + static + 0 o p_219537_ + e (Lbha;)V m_219541_ + static + 0 o p_219542_ + f (Lbha;)V m_219543_ + static + 0 o p_219544_ + g (Lbha;)V m_219545_ + static + 0 o p_219546_ +bxu net/minecraft/world/entity/monster/warden/WardenSpawnTracker + a f_219557_ + b f_219558_ + c f_219559_ + d f_219560_ + e f_219561_ + f f_219562_ + g f_219563_ + h f_219564_ + i f_219565_ + ()V + static + (III)V + 0 o p_219568_ + 1 o p_219569_ + 2 o p_219570_ + a (Laif;Lgu;Laig;)Ljava/util/OptionalInt; m_219577_ + static + 0 o p_219578_ + 1 o p_219579_ + 2 o p_219580_ + a (Leei;Laig;)Z m_289160_ + static + 0 o p_289484_ + 1 o p_289485_ + a (I)V m_219572_ + 0 o p_219573_ + a (Lbxu;Laig;)V m_244973_ + static + 0 o p_248395_ + 1 o p_248396_ + a (Lbxu;)V m_219583_ + 0 o p_219584_ + a ()V m_219571_ + a (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; m_219588_ + static + 0 o p_219589_ + a (Laig;)Ljava/util/stream/Stream; m_244972_ + static + 0 o p_248394_ + a (Lbxu;Lbxu;)V m_244976_ + static + 0 o p_248400_ + 1 o p_248401_ + a (Laif;Lgu;)Z m_219574_ + static + 0 o p_219575_ + 1 o p_219576_ + b (Lbxu;)Ljava/lang/Integer; m_219600_ + static + 0 o p_219601_ + b (Laig;)Z m_244974_ + static + 0 o p_248397_ + b (Laif;Lgu;)Ljava/util/List; m_219594_ + static + 0 o p_219595_ + 1 o p_219596_ + b ()V m_219593_ + c ()I m_219599_ + c (Lbxu;)Ljava/lang/Integer; m_219603_ + static + 0 o p_219604_ + d (Lbxu;)Ljava/lang/Integer; m_219606_ + static + 0 o p_219607_ + d ()Z m_219602_ + e ()V m_219605_ + f ()V m_219608_ +bxv net/minecraft/world/entity/monster/warden/package-info +bxw net/minecraft/world/entity/npc/AbstractVillager + bT f_149991_ + bU f_35261_ + bV f_35262_ + bW f_149992_ + bX f_35263_ + bY f_35264_ + ()V + static + (Lbfn;Lcmm;)V + 0 o p_35267_ + 1 o p_35268_ + a (Lcll;)V m_6255_ + 0 o p_35276_ + a (Lcll;[Lbyf$f;I)V m_35277_ + 0 o p_35278_ + 1 o p_35279_ + 2 o p_35280_ + a (Lqr;)V m_7378_ + 0 o p_35290_ + a (Lben;)V m_6667_ + 0 o p_35270_ + a (Lcnb;Lbdv;Lbgd;Lbgt;Lqr;)Lbgt; m_6518_ + 0 o p_35282_ + 1 o p_35283_ + 2 o p_35284_ + 3 o p_35285_ + 4 o p_35286_ + a (Lbyo;)Z m_6573_ + 0 o p_35272_ + a (Lit;)V m_35287_ + 0 o p_35288_ + a (Lclk;)V m_6996_ + 0 o p_35274_ + a_ (I)Lbgs; m_141942_ + 0 o p_149995_ + a_ ()V m_8097_ + b (Lqr;)V m_7380_ + 0 o p_35301_ + b (Laif;)Lbfj; m_5489_ + 0 o p_35295_ + b (Lclk;)V m_8058_ + 0 o p_35299_ + b (Lbgl;Lbfk;)F m_6431_ + 0 o p_35297_ + 1 o p_35298_ + f (Lbyo;)V m_7189_ + 0 o p_35314_ + fY ()Lbyo; m_7962_ + fZ ()Z m_35306_ + ga ()Lcll; m_6616_ + gb ()Z m_7826_ + gc ()Lamg; m_7596_ + gd ()V m_35310_ + ge ()V m_7996_ + gf ()V m_7604_ + gg ()Z m_183595_ + l (Lcfz;)V m_7713_ + 0 o p_35316_ + q (F)Leei; m_7398_ + 0 o p_35318_ + q ()I m_35303_ + r ()I m_7809_ + s (I)V m_35319_ + 0 o p_35320_ + t (I)V m_6621_ + 0 o p_35322_ + w (Z)Lamg; m_6068_ + 0 o p_35323_ + w ()Lbee; m_35311_ +bxx net/minecraft/world/entity/npc/CatSpawner + a f_149996_ + b f_35324_ + ()V + a (Laif;ZZ)I m_7995_ + 0 o p_35330_ + 1 o p_35331_ + 2 o p_35332_ + a (Laif;Lgu;)I m_35326_ + 0 o p_35327_ + 1 o p_35328_ + a (Lhe;)Z m_219609_ + static + 0 o p_219610_ + a (Lgu;Laif;)I m_35333_ + 0 o p_35334_ + 1 o p_35335_ + b (Laif;Lgu;)I m_35336_ + 0 o p_35337_ + 1 o p_35338_ +bxy net/minecraft/world/entity/npc/ClientSideMerchant + a f_35340_ + b f_35341_ + c f_35342_ + (Lbyo;)V + 0 o p_35344_ + a (Lcll;)V m_6255_ + 0 o p_35348_ + a (Lclk;)V m_6996_ + 0 o p_35346_ + f (Lbyo;)V m_7189_ + 0 o p_35356_ + fY ()Lbyo; m_7962_ + ga ()Lcll; m_6616_ + gb ()Z m_7826_ + gc ()Lamg; m_7596_ + gg ()Z m_183595_ + l (Lcfz;)V m_7713_ + 0 o p_35358_ + r ()I m_7809_ + t (I)V m_6621_ + 0 o p_35360_ +bxz net/minecraft/world/entity/npc/InventoryCarrier + c_ f_252389_ + a (Lbgb;Lbxz;Lbvh;)V m_219611_ + static + 0 o p_219612_ + 1 o p_219613_ + 2 o p_219614_ + a_ (Lqr;)V m_252802_ + 0 o p_254428_ + c (Lqr;)V m_253224_ + 0 o p_253699_ + w ()Lbee; m_35311_ +by net/minecraft/advancements/critereon/ItemDurabilityTrigger + a f_43665_ + ()V + static + ()V + a (Laig;Lcfz;I)V m_43669_ + 0 o p_43670_ + 1 o p_43671_ + 2 o p_43672_ + a (Lcom/google/gson/JsonObject;Lba;Lbe;)Lby$a; m_7214_ + 0 o p_286693_ + 1 o p_286383_ + 2 o p_286352_ + a ()Lacq; m_7295_ + a (Lcfz;ILby$a;)Z m_43673_ + static + 0 o p_43674_ + 1 o p_43675_ + 2 o p_43676_ + b (Lcom/google/gson/JsonObject;Lba;Lbe;)Lar; m_7214_ + 0 o p_286645_ + 1 o p_286583_ + 2 o p_286326_ +by$a net/minecraft/advancements/critereon/ItemDurabilityTrigger$TriggerInstance + a f_43686_ + b f_43687_ + c f_43688_ + (Lba;Lbz;Lcj$d;Lcj$d;)V + 0 o p_286731_ + 1 o p_286447_ + 2 o p_286431_ + 3 o p_286460_ + a (Lct;)Lcom/google/gson/JsonObject; m_7683_ + 0 o p_43702_ + a (Lba;Lbz;Lcj$d;)Lby$a; m_285799_ + static + 0 o p_286720_ + 1 o p_286288_ + 2 o p_286730_ + a (Lbz;Lcj$d;)Lby$a; m_151286_ + static + 0 o p_151287_ + 1 o p_151288_ + a (Lcfz;I)Z m_43698_ + 0 o p_43699_ + 1 o p_43700_ +bya net/minecraft/world/entity/npc/Npc +byb net/minecraft/world/entity/npc/Villager + bV f_149997_ + bW f_35369_ + bX f_149998_ + bY f_35370_ + bZ f_201976_ + ca f_35371_ + cb f_149999_ + cc f_35372_ + cd f_150000_ + ce f_150001_ + cf f_150002_ + cg f_150003_ + ch f_150004_ + ci f_150005_ + cj f_150006_ + ck f_35373_ + cl f_35374_ + cm f_35375_ + cn f_150007_ + co f_35376_ + cp f_35377_ + cq f_35378_ + cr f_35361_ + cs f_35362_ + ct f_35363_ + cu f_35364_ + cv f_35365_ + cw f_35366_ + cx f_35367_ + cy f_35368_ + ()V + static + (Lbfn;Lcmm;Lbyg;)V + 0 o p_35384_ + 1 o p_35385_ + 2 o p_35386_ + (Lbfn;Lcmm;)V + 0 o p_35381_ + 1 o p_35382_ + P_ ()Z m_35506_ + V ()V m_8025_ + W ()V m_8024_ + a (Lboy;)Z m_186301_ + static + 0 o p_186302_ + a (Lbyb;Lhe;)Z m_219615_ + static + 0 o p_219616_ + 1 o p_219617_ + a (Lnet/minecraft/server/MinecraftServer;Lbpb;Lhd;)V m_186303_ + 0 o p_186304_ + 1 o p_186305_ + 2 o p_186306_ + a (Lbha;)V m_35424_ + 0 o p_35425_ + a (Lqr;)V m_7378_ + 0 o p_35451_ + a (Lben;)V m_6667_ + 0 o p_35419_ + a (Laif;Lbfj;Lbfz;)V m_186294_ + static + 0 o p_186295_ + 1 o p_186296_ + 2 o p_186297_ + a (Lcnb;Lbdv;Lbgd;Lbgt;Lqr;)Lbgt; m_6518_ + 0 o p_35439_ + 1 o p_35440_ + 2 o p_35441_ + 3 o p_35442_ + 4 o p_35443_ + a (Lcom/mojang/serialization/Dynamic;)Lbha; m_8075_ + 0 o p_35445_ + a (Laif;Lbfe;)Lbfe; m_142606_ + 0 o p_150009_ + 1 o p_150010_ + a (JLbyb;)Z m_186291_ + static + 0 o p_186292_ + 1 o p_186293_ + a (Lqr;Lrk;)V m_35452_ + static + 0 o p_35453_ + 1 o p_35454_ + a (Lrk;)V m_35455_ + 0 o p_35456_ + a (J)Z m_35392_ + 0 o p_35393_ + a (Lbfz;)V m_6703_ + 0 o p_35423_ + a (Laif;Lbyb;J)V m_35411_ + 0 o p_35412_ + 1 o p_35413_ + 2 o p_35414_ + a (Laif;Lbfy;)V m_8038_ + 0 o p_35409_ + 1 o p_35410_ + a (Lbfj;)V m_35420_ + 0 o p_35421_ + a (Lbyc;)V m_34375_ + 0 o p_35437_ + a (Laif;JI)V m_35397_ + 0 o p_35398_ + 1 o p_35399_ + 2 o p_35400_ + a (Lbpb;)V m_35428_ + 0 o p_35429_ + a (Lbqw;Lbfj;)V m_6814_ + 0 o p_35431_ + 1 o p_35432_ + a (Lbee;Ljava/util/Map$Entry;)I m_186298_ + static + 0 o p_186299_ + 1 o p_186300_ + a_ ()V m_8097_ + b (Lbyo;Lbdw;)Lbdx; m_6071_ + 0 o p_35472_ + 1 o p_35473_ + b (Lcll;)V m_35476_ + 0 o p_35477_ + b (Lqr;)V m_7380_ + 0 o p_35481_ + b (Lbvh;)V m_7581_ + 0 o p_35467_ + b (Lclk;)V m_8058_ + 0 o p_35475_ + b (Laif;Lbfe;)Lbyb; m_142606_ + 0 o p_150012_ + 1 o p_150013_ + b (J)Z m_35461_ + 0 o p_35462_ + b (B)V m_7822_ + 0 o p_35391_ + b (Lbyb;Lhe;)Z m_219618_ + static + 0 o p_219619_ + 1 o p_219620_ + b (Lgu;)V m_5802_ + 0 o p_35479_ + c (Laif;)V m_35483_ + 0 o p_35484_ + c (Lbyb;Lhe;)Z m_219621_ + static + 0 o p_219622_ + 1 o p_219623_ + cl ()Lsw; m_5677_ + d (Lben;)Lamg; m_7975_ + 0 o p_35498_ + d (Lbyb;Lhe;)Z m_219624_ + static + 0 o p_219625_ + 1 o p_219626_ + dK ()Lbha; m_6274_ + dL ()Lbha$b; m_5490_ + f (Lbyo;)V m_7189_ + 0 o p_35508_ + fz ()V m_5796_ + g (Lbyo;)I m_35532_ + 0 o p_35533_ + gA ()V m_35523_ + gB ()V m_35524_ + gC ()Z m_35525_ + gD ()V m_35526_ + gE ()Z m_35527_ + gF ()V m_35528_ + gG ()I m_35529_ + gH ()V m_35530_ + gI ()V m_35531_ + g_ ()Lamg; m_5592_ + ge ()V m_7996_ + gf ()V m_7604_ + gg ()Z m_183595_ + gh ()Lbhf$a; m_35503_ + static + gi ()Z m_35504_ + gj ()Lbyc; m_7141_ + gk ()Z m_7862_ + gl ()V m_35510_ + gm ()Z m_35511_ + gn ()V m_35512_ + go ()Z m_150014_ + gp ()V m_35513_ + gq ()Z m_35514_ + gr ()Z m_35515_ + gs ()Z m_35516_ + gt ()Lbox; m_35517_ + gu ()V m_35518_ + gv ()V m_35519_ + gw ()V m_275846_ + gx ()Z m_35520_ + gy ()Z m_35521_ + gz ()V m_35522_ + h (D)Z m_6785_ + 0 o p_35535_ + h (Lbyo;)V m_35536_ + 0 o p_35537_ + i (Lbyo;)V m_35540_ + 0 o p_35541_ + k (Lcfz;)Z m_7243_ + 0 o p_35543_ + l ()V m_8119_ + m ()V m_30232_ + m (Lcfz;)Z m_279940_ + static + 0 o p_281096_ + r ()I m_7809_ + s ()Lamg; m_7515_ + u (I)V m_35546_ + 0 o p_35547_ + v (I)V m_35548_ + 0 o p_35549_ + x (Z)V m_150015_ + 0 o p_150016_ +byc net/minecraft/world/entity/npc/VillagerData + a f_150017_ + b f_150018_ + c f_35550_ + d f_35551_ + e f_35552_ + f f_35553_ + g f_35554_ + ()V + static + (Lbyg;Lbye;I)V + 0 o p_35557_ + 1 o p_35558_ + 2 o p_35559_ + a (Lbyc;)Ljava/lang/Integer; m_150019_ + static + 0 o p_150020_ + a ()Lbyg; m_35560_ + a (I)Lbyc; m_35561_ + 0 o p_35562_ + a (Lbye;)Lbyc; m_35565_ + 0 o p_35566_ + a (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; m_257318_ + static + 0 o p_258961_ + a (Lbyg;)Lbyc; m_35567_ + 0 o p_35568_ + b ()Lbye; m_35571_ + b (Lbyc;)Lbye; m_150021_ + static + 0 o p_150022_ + b (I)I m_35572_ + static + 0 o p_35573_ + c (I)I m_35577_ + static + 0 o p_35578_ + c (Lbyc;)Lbyg; m_150023_ + static + 0 o p_150024_ + c ()I m_35576_ + d (I)Z m_35582_ + static + 0 o p_35583_ + d ()Lbye; m_150025_ + static + e ()Lbyg; m_150026_ + static +byd net/minecraft/world/entity/npc/VillagerDataHolder + a (Lbyg;)V m_28464_ + 0 o p_262647_ + a (Lbyc;)V m_34375_ + 0 o p_150027_ + a ()Lbyg; m_28554_ + a (Ljava/lang/Object;)V m_28464_ + 0 o p_262623_ + c ()Ljava/lang/Object; m_28554_ + gj ()Lbyc; m_7141_ +bye net/minecraft/world/entity/npc/VillagerProfession + a f_219627_ + b f_35585_ + c f_35586_ + d f_35587_ + e f_35588_ + f f_35589_ + g f_35590_ + h f_35591_ + i f_35592_ + j f_35593_ + k f_35594_ + l f_35595_ + m f_35596_ + n f_35597_ + o f_35598_ + p f_35599_ + q f_35600_ + r f_219628_ + s f_219629_ + t f_35602_ + u f_35603_ + v f_35604_ + ()V + static + (Ljava/lang/String;Ljava/util/function/Predicate;Ljava/util/function/Predicate;Lcom/google/common/collect/ImmutableSet;Lcom/google/common/collect/ImmutableSet;Lamg;)V + 0 o f_35600_ + 1 o f_219628_ + 2 o f_219629_ + 3 o f_35602_ + 4 o f_35603_ + 5 o f_35604_ + a ()Ljava/lang/String; f_35600_ + a (Ljava/lang/String;Ljava/util/function/Predicate;Ljava/util/function/Predicate;Lamg;)Lbye; m_219653_ + static + 0 o p_219654_ + 1 o p_219655_ + 2 o p_219656_ + 3 o p_219657_ + a (Lhe;)Z m_238238_ + static + 0 o p_238239_ + a (Ljava/lang/String;Ljava/util/function/Predicate;Ljava/util/function/Predicate;Lcom/google/common/collect/ImmutableSet;Lcom/google/common/collect/ImmutableSet;Lamg;)Lbye; m_219658_ + static + 0 o p_219659_ + 1 o p_219660_ + 2 o p_219661_ + 3 o p_219662_ + 4 o p_219663_ + 5 o p_219664_ + a (Lacp;Lhe;)Z m_238235_ + static + 0 o p_238236_ + 1 o p_238237_ + a (Ljava/lang/String;Lacp;Lamg;)Lbye; m_219643_ + static + 0 o p_219644_ + 1 o p_219645_ + 2 o p_219646_ + a (Ljava/lang/String;Lacp;Lcom/google/common/collect/ImmutableSet;Lcom/google/common/collect/ImmutableSet;Lamg;)Lbye; m_219647_ + static + 0 o p_219648_ + 1 o p_219649_ + 2 o p_219650_ + 3 o p_219651_ + 4 o p_219652_ + b (Lacp;Lhe;)Z m_219641_ + static + 0 o p_238233_ + 1 o p_238234_ + b ()Ljava/util/function/Predicate; f_219628_ + c ()Ljava/util/function/Predicate; f_219629_ + c (Lacp;Lhe;)Z m_219638_ + static + 0 o p_219639_ + 1 o p_219640_ + d ()Lcom/google/common/collect/ImmutableSet; f_35602_ + d (Lacp;Lhe;)Z m_219666_ + static + 0 o p_219667_ + 1 o p_219668_ + e ()Lcom/google/common/collect/ImmutableSet; f_35603_ + equals (Ljava/lang/Object;)Z equals + 0 o p_219673_ + f ()Lamg; f_35604_ + hashCode ()I hashCode + toString ()Ljava/lang/String; toString +byf net/minecraft/world/entity/npc/VillagerTrades + a f_35627_ + b f_35628_ + c f_150029_ + d f_150030_ + e f_150031_ + f f_150032_ + g f_150033_ + h f_150034_ + i f_150035_ + j f_150036_ + k f_150037_ + l f_150038_ + m f_150039_ + n f_150040_ + o f_150041_ + p f_150042_ + ()V + static + ()V + a (Ljava/util/HashMap;)V m_35632_ + static + 0 o p_35633_ + a (Lcom/google/common/collect/ImmutableMap;)Lit/unimi/dsi/fastutil/ints/Int2ObjectMap; m_35630_ + static + 0 o p_35631_ +byf$a net/minecraft/world/entity/npc/VillagerTrades$DyedArmorForEmeralds + a f_35634_ + b f_35635_ + c f_35636_ + d f_35637_ + (Lcfu;I)V + 0 o p_35639_ + 1 o p_35640_ + (Lcfu;III)V + 0 o p_35642_ + 1 o p_35643_ + 2 o p_35644_ + 3 o p_35645_ + a (Lbfj;Lapf;)Lclk; m_213663_ + 0 o p_219679_ + 1 o p_219680_ + a (Lapf;)Lceo; m_219676_ + static + 0 o p_219677_ +byf$b net/minecraft/world/entity/npc/VillagerTrades$EmeraldForItems + a f_35651_ + b f_35652_ + c f_35653_ + d f_35654_ + e f_35655_ + (Lcml;III)V + 0 o p_35657_ + 1 o p_35658_ + 2 o p_35659_ + 3 o p_35660_ + a (Lbfj;Lapf;)Lclk; m_213663_ + 0 o p_219682_ + 1 o p_219683_ +byf$c net/minecraft/world/entity/npc/VillagerTrades$EmeraldsForVillagerTypeItem + a f_35664_ + b f_35665_ + c f_35666_ + d f_35667_ + (IIILjava/util/Map;)V + 0 o p_35669_ + 1 o p_35670_ + 2 o p_35671_ + 3 o p_35672_ + a (Lbfj;Lapf;)Lclk; m_213663_ + 0 o p_219685_ + 1 o p_219686_ + a (Ljava/util/Map;Lbyg;)Z m_35678_ + static + 0 o p_35679_ + 1 o p_35680_ + a (Lbyg;)V m_257319_ + static + 0 o p_258962_ +byf$d net/minecraft/world/entity/npc/VillagerTrades$EnchantBookForEmeralds + a f_35681_ + (I)V + 0 o p_35683_ + a (Lbfj;Lapf;)Lclk; m_213663_ + 0 o p_219688_ + 1 o p_219689_ +byf$e net/minecraft/world/entity/npc/VillagerTrades$EnchantedItemForEmeralds + a f_35687_ + b f_35688_ + c f_35689_ + d f_35690_ + e f_35691_ + (Lcfu;III)V + 0 o p_35693_ + 1 o p_35694_ + 2 o p_35695_ + 3 o p_35696_ + (Lcfu;IIIF)V + 0 o p_35698_ + 1 o p_35699_ + 2 o p_35700_ + 3 o p_35701_ + 4 o p_35702_ + a (Lbfj;Lapf;)Lclk; m_213663_ + 0 o p_219691_ + 1 o p_219692_ +byf$f net/minecraft/world/entity/npc/VillagerTrades$ItemListing + a (Lbfj;Lapf;)Lclk; m_213663_ + 0 o p_219693_ + 1 o p_219694_ +byf$g net/minecraft/world/entity/npc/VillagerTrades$ItemsAndEmeraldsToItems + a f_35708_ + b f_35709_ + c f_35710_ + d f_35711_ + e f_35712_ + f f_35713_ + g f_35714_ + h f_35715_ + (Lcml;ILcfu;III)V + 0 o p_35725_ + 1 o p_35726_ + 2 o p_35727_ + 3 o p_35728_ + 4 o p_35729_ + 5 o p_35730_ + (Lcml;IILcfu;III)V + 0 o p_35717_ + 1 o p_35718_ + 2 o p_35719_ + 3 o p_35720_ + 4 o p_35721_ + 5 o p_35722_ + 6 o p_35723_ + a (Lbfj;Lapf;)Lclk; m_213663_ + 0 o p_219696_ + 1 o p_219697_ +byf$h net/minecraft/world/entity/npc/VillagerTrades$ItemsForEmeralds + a f_35734_ + b f_35735_ + c f_35736_ + d f_35737_ + e f_35738_ + f f_35739_ + (Lcpn;IIII)V + 0 o p_35765_ + 1 o p_35766_ + 2 o p_35767_ + 3 o p_35768_ + 4 o p_35769_ + (Lcfu;III)V + 0 o p_35741_ + 1 o p_35742_ + 2 o p_35743_ + 3 o p_35744_ + (Lcfz;IIII)V + 0 o p_35752_ + 1 o p_35753_ + 2 o p_35754_ + 3 o p_35755_ + 4 o p_35756_ + (Lcfu;IIII)V + 0 o p_35746_ + 1 o p_35747_ + 2 o p_35748_ + 3 o p_35749_ + 4 o p_35750_ + (Lcfz;IIIIF)V + 0 o p_35758_ + 1 o p_35759_ + 2 o p_35760_ + 3 o p_35761_ + 4 o p_35762_ + 5 o p_35763_ + a (Lbfj;Lapf;)Lclk; m_213663_ + 0 o p_219699_ + 1 o p_219700_ +byf$i net/minecraft/world/entity/npc/VillagerTrades$SuspiciousStewForEmerald + a f_186308_ + b f_186309_ + c f_186310_ + d f_186311_ + (Lbey;II)V + 0 o p_186313_ + 1 o p_186314_ + 2 o p_186315_ + a (Lbfj;Lapf;)Lclk; m_213663_ + 0 o p_219702_ + 1 o p_219703_ +byf$j net/minecraft/world/entity/npc/VillagerTrades$TippedArrowForItemsAndEmeralds + a f_35784_ + b f_35785_ + c f_35786_ + d f_35787_ + e f_35788_ + f f_35789_ + g f_35790_ + h f_35791_ + (Lcfu;ILcfu;IIII)V + 0 o p_35793_ + 1 o p_35794_ + 2 o p_35795_ + 3 o p_35796_ + 4 o p_35797_ + 5 o p_35798_ + 6 o p_35799_ + a (Lbfj;Lapf;)Lclk; m_213663_ + 0 o p_219705_ + 1 o p_219706_ + a (Lchw;)Z m_35803_ + static + 0 o p_35804_ +byf$k net/minecraft/world/entity/npc/VillagerTrades$TreasureMapForEmeralds + a f_35805_ + b f_35806_ + c f_207765_ + d f_35807_ + e f_35808_ + f f_35809_ + (ILanl;Ljava/lang/String;Ldyl$a;II)V + 0 o p_207767_ + 1 o p_207768_ + 2 o p_207769_ + 3 o p_207770_ + 4 o p_207771_ + 5 o p_207772_ + a (Lbfj;Lapf;)Lclk; m_213663_ + 0 o p_219708_ + 1 o p_219709_ +byg net/minecraft/world/entity/npc/VillagerType + a f_35819_ + b f_35820_ + c f_35821_ + d f_35822_ + e f_35823_ + f f_35824_ + g f_35825_ + h f_35826_ + i f_35827_ + ()V + static + (Ljava/lang/String;)V + 0 o p_35830_ + a (Lhe;)Lbyg; m_204073_ + static + 0 o p_204074_ + a (Ljava/lang/String;)Lbyg; m_35831_ + static + 0 o p_35832_ + a (Ljava/util/HashMap;)V m_35833_ + static + 0 o p_35834_ + toString ()Ljava/lang/String; toString +byh net/minecraft/world/entity/npc/WanderingTrader + bV f_150044_ + bW f_35840_ + bX f_35841_ + (Lbfn;Lcmm;)V + 0 o p_35843_ + 1 o p_35844_ + a (Lqr;)V m_7378_ + 0 o p_35852_ + a (Lbyh;)Lbpj; m_35849_ + static + 0 o p_35850_ + a (Laif;Lbfe;)Lbfe; m_142606_ + 0 o p_150046_ + 1 o p_150047_ + b (Lbyo;Lbdw;)Lbdx; m_6071_ + 0 o p_35856_ + 1 o p_35857_ + b (Lqr;)V m_7380_ + 0 o p_35861_ + b (Lclk;)V m_8058_ + 0 o p_35859_ + b (Lbyh;)Lbpj; m_150048_ + static + 0 o p_150049_ + b_ ()V m_8107_ + c (Lcfz;)Lamg; m_7838_ + 0 o p_35865_ + c (Lbyh;)Lbpj; m_35862_ + static + 0 o p_35863_ + d (Lben;)Lamg; m_7975_ + 0 o p_35870_ + d (Lbyh;)Lbpj; m_35866_ + static + 0 o p_35867_ + e (Lbyh;)Z m_289162_ + 0 o p_289487_ + f (Lbyh;)Z m_289161_ + 0 o p_289486_ + g_ ()Lamg; m_5592_ + gb ()Z m_7826_ + gc ()Lamg; m_7596_ + gf ()V m_7604_ + gh ()I m_35876_ + gi ()V m_35877_ + gj ()Lgu; m_35878_ + h (D)Z m_6785_ + 0 o p_35886_ + i (Lgu;)V m_35883_ + 0 o p_35884_ + s ()Lamg; m_7515_ + u (I)V m_35891_ + 0 o p_35892_ + w (Z)Lamg; m_6068_ + 0 o p_35890_ + x ()V m_8099_ +byh$a net/minecraft/world/entity/npc/WanderingTrader$WanderToPositionGoal + a f_35893_ + b f_35894_ + c f_35895_ + d f_35896_ + (Lbyh;Lbyh;DD)V + 0 o p_35898_ + 1 o p_35899_ + 2 o p_35900_ + 3 o p_35901_ + a ()Z m_8036_ + a (Lgu;D)Z m_35903_ + 0 o p_35904_ + 1 o p_35905_ + d ()V m_8041_ + e ()V m_8037_ +byi net/minecraft/world/entity/npc/WanderingTraderSpawner + a f_150050_ + b f_150051_ + c f_150052_ + d f_150053_ + e f_150054_ + f f_150055_ + g f_150056_ + h f_35908_ + i f_35909_ + j f_35910_ + k f_35911_ + l f_35912_ + (Ldzd;)V + 0 o p_35914_ + a (Laif;)Z m_35915_ + 0 o p_35916_ + a (Laif;Lbyh;I)V m_35917_ + 0 o p_35918_ + 1 o p_35919_ + 2 o p_35920_ + a (Lcmp;Lgu;I)Lgu; m_35928_ + 0 o p_35929_ + 1 o p_35930_ + 2 o p_35931_ + a (Lcls;Lgu;)Z m_35925_ + 0 o p_35926_ + 1 o p_35927_ + a (Lgu;)Z m_219710_ + static + 0 o p_219711_ + a (Laif;ZZ)I m_7995_ + 0 o p_35922_ + 1 o p_35923_ + 2 o p_35924_ + a (Lhe;)Z m_219712_ + static + 0 o p_219713_ +byj net/minecraft/world/entity/npc/package-info +byk net/minecraft/world/entity/package-info +byl net/minecraft/world/entity/player/Abilities + a f_35934_ + b f_35935_ + c f_35936_ + d f_35937_ + e f_35938_ + f f_35939_ + g f_35940_ + ()V + a (F)V m_35943_ + 0 o p_35944_ + a ()F m_35942_ + a (Lqr;)V m_35945_ + 0 o p_35946_ + b (F)V m_35948_ + 0 o p_35949_ + b (Lqr;)V m_35950_ + 0 o p_35951_ + b ()F m_35947_ +bym net/minecraft/world/entity/player/ChatVisiblity + a FULL + b SYSTEM + c HIDDEN + d f_35955_ + e f_35956_ + f f_35957_ + g $VALUES + ()V + static + (Ljava/lang/String;IILjava/lang/String;)V + 0 o p_35961_ + 1 o p_35962_ + 2 o p_35963_ + 3 o p_35964_ + a (I)Lbym; m_35966_ + static + 0 o p_35967_ + a ()I m_35965_ + b ()Ljava/lang/String; m_35968_ + d ()[Lbym; m_150063_ + static + valueOf (Ljava/lang/String;)Lbym; valueOf + static + 0 o p_35972_ + values ()[Lbym; values + static +byn net/minecraft/world/entity/player/Inventory + c f_150064_ + d f_150065_ + e f_150066_ + f f_150067_ + g f_150068_ + h f_150069_ + i f_35974_ + j f_35975_ + k f_35976_ + l f_35977_ + m f_35978_ + n f_150070_ + o f_35979_ + p f_35981_ + ()V + static + (Lbyo;)V + 0 o p_35983_ + Z ()Lsw; m_7755_ + a (Lcfz;)V m_36012_ + 0 o p_36013_ + a (Lcfz;Z)V m_150076_ + 0 o p_150077_ + 1 o p_150078_ + a (Lbyo;)Z m_6542_ + 0 o p_36009_ + a (II)Lcfz; m_7407_ + 0 o p_35993_ + 1 o p_35994_ + a ()V m_6211_ + a (Z)Lcfz; m_182403_ + 0 o p_182404_ + a (Lbys;)V m_36010_ + 0 o p_36011_ + a (D)V m_35988_ + 0 o p_35989_ + a (ILcfz;)V m_6836_ + 0 o p_35999_ + 1 o p_36000_ + a (Ldcb;)F m_36020_ + 0 o p_36021_ + a (Lcfz;Lcfz;)Z m_36014_ + 0 o p_36015_ + 1 o p_36016_ + a (Lben;F[I)V m_150072_ + 0 o p_150073_ + 1 o p_150074_ + 2 o p_150075_ + a (Lanl;)Z m_204075_ + 0 o p_204076_ + a (I)Lcfz; m_8020_ + 0 o p_35991_ + a (ILbyo;)V m_35995_ + static + 0 o p_35996_ + 1 o p_35997_ + a (Ljava/util/function/Predicate;ILbdq;)I m_36022_ + 0 o p_36023_ + 1 o p_36024_ + 2 o p_36025_ + a (Lqx;)Lqx; m_36026_ + 0 o p_36027_ + a (Lbyn;)V m_36006_ + 0 o p_36007_ + ab_ ()Z m_7983_ + b (Lcfz;)I m_36030_ + 0 o p_36031_ + b ()I m_6643_ + b (I)Lcfz; m_8016_ + 0 o p_36029_ + b (Lqx;)V m_36035_ + 0 o p_36036_ + c (ILcfz;)Z m_36040_ + 0 o p_36041_ + 1 o p_36042_ + c (I)V m_36038_ + 0 o p_36039_ + c (Lcfz;)I m_36043_ + 0 o p_36044_ + d (I)Z m_36045_ + static + 0 o p_36046_ + d (Lcfz;)I m_36050_ + 0 o p_36051_ + d (ILcfz;)I m_36047_ + 0 o p_36048_ + 1 o p_36049_ + e (I)Lcfz; m_36052_ + 0 o p_36053_ + e ()V m_6596_ + e (Lcfz;)Z m_36054_ + 0 o p_36055_ + f (Lcfz;)V m_150079_ + 0 o p_150080_ + f ()Lcfz; m_36056_ + g ()I m_36059_ + static + g (Lcfz;)V m_36057_ + 0 o p_36058_ + h (Lcfz;)Z m_36063_ + 0 o p_36064_ + h ()I m_36062_ + i (Lcfz;)I m_36066_ + 0 o p_36067_ + i ()I m_36065_ + j (Lcfz;)Ljava/lang/String; m_36069_ + static + 0 o p_36070_ + j ()V m_36068_ + k ()V m_36071_ + l ()I m_36072_ +byo net/minecraft/world/entity/player/Player + b f_219722_ + bB f_150082_ + bC f_150083_ + bD f_150084_ + bE f_150085_ + bF f_150086_ + bG f_150087_ + bH f_150088_ + bI f_150089_ + bJ f_150090_ + bK f_36088_ + bL f_36089_ + bM f_36090_ + bN f_36091_ + bO f_36092_ + bP f_36094_ + bQ f_36095_ + bR f_36096_ + bS f_36097_ + bT f_36098_ + bU f_36099_ + bV f_36100_ + bW f_36101_ + bX f_36102_ + bY f_36103_ + bZ f_36104_ + c f_36074_ + ca f_36105_ + cb f_36106_ + cc f_36075_ + cd f_36076_ + ce f_36078_ + cf f_36079_ + cg f_36080_ + ch f_36081_ + ci f_36082_ + cj f_36083_ + ck f_263750_ + cl f_36093_ + cm f_36110_ + cn f_36077_ + co f_36111_ + cp f_36084_ + cq f_36085_ + cr f_36086_ + cs f_36087_ + ct f_238176_ + d f_150091_ + e f_36107_ + f f_36108_ + g f_36109_ + ()V + static + (Lcmm;Lgu;FLcom/mojang/authlib/GameProfile;)V + 0 o p_250508_ + 1 o p_250289_ + 2 o p_251702_ + 3 o p_252153_ + A (F)F m_36403_ + 0 o p_36404_ + C (Lbfj;)V m_289165_ + 0 o p_289491_ + G_ ()Z m_5833_ + H_ ()Lsw; m_5446_ + U ()Z m_143387_ + W ()Ljava/util/Optional; m_245217_ + Z ()Lsw; m_7755_ + a (Lcfz;I)V m_7408_ + 0 o p_36172_ + 1 o p_36173_ + a (Lcfz;ZZ)Lbvh; m_7197_ + 0 o p_36179_ + 1 o p_36180_ + 2 o p_36181_ + a (Lben;F)Z m_6469_ + 0 o p_36154_ + 1 o p_36155_ + a (Ljava/util/Optional;)V m_219749_ + 0 o p_219750_ + a (Ldav;Z)V m_7739_ + 0 o p_36193_ + 1 o p_277837_ + a (Lbtk;Lbdq;)V m_6658_ + 0 o p_36167_ + 1 o p_36168_ + a ([Lacq;)V m_7902_ + 0 o p_36228_ + a (Lgu;)Lcom/mojang/datafixers/util/Either; m_7720_ + 0 o p_36203_ + a (Lamo;I)V m_6278_ + 0 o p_36145_ + 1 o p_36146_ + a (Lgu;Lha;Lcfz;)Z m_36204_ + 0 o p_36205_ + 1 o p_36206_ + 2 o p_36207_ + a (Lbfo;Lcfz;)V m_8061_ + 0 o p_36161_ + 1 o p_36162_ + a (Lit;)V m_36208_ + 0 o p_36209_ + a (Lbfj$c;)V m_142687_ + 0 o p_150097_ + a (Ldba;)V m_5966_ + 0 o p_36194_ + a (Laif;Lgu;FZZ)Ljava/util/Optional; m_36130_ + static + 0 o p_36131_ + 1 o p_36132_ + 2 o p_36133_ + 3 o p_36134_ + 4 o p_36135_ + a (Lqr;)V m_7378_ + 0 o p_36215_ + a (Lczx;)V m_7698_ + 0 o p_36191_ + a (Lamo;)V m_7166_ + 0 o p_36144_ + a (Lamg;Lami;FF)V m_6330_ + 0 o p_36140_ + 1 o p_36141_ + 2 o p_36142_ + 3 o p_36143_ + a (Lsw;Z)V m_5661_ + 0 o p_36216_ + 1 o p_36217_ + a (Lacq;I)V m_36222_ + 0 o p_36223_ + 1 o p_36224_ + a (ILcll;IIZZ)V m_7662_ + 0 o p_36121_ + 1 o p_36122_ + 2 o p_36123_ + 3 o p_36124_ + 4 o p_36125_ + 5 o p_36126_ + a (Lcfz;Lcfz;Lcbn;)V m_141945_ + 0 o p_150098_ + 1 o p_150099_ + 2 o p_150100_ + a (Ldcb;Leei;)V m_7601_ + 0 o p_36196_ + 1 o p_36197_ + a (Ljava/util/Collection;)I m_7281_ + 0 o p_36213_ + a (Lcmm;Lgu;Lcmj;)Z m_36187_ + 0 o p_36188_ + 1 o p_36189_ + 2 o p_36190_ + a (Lbea;)Ljava/util/OptionalInt; m_5893_ + 0 o p_36150_ + a (ZZ)V m_6145_ + 0 o p_36226_ + 1 o p_36227_ + a (Ldam;)V m_7569_ + 0 o p_36192_ + a (Lbft;)V m_36163_ + 0 o p_36164_ + a (FFLben;)Z m_142535_ + 0 o p_150093_ + 1 o p_150094_ + 2 o p_150095_ + a (Lhd;)Ljava/util/Optional; m_219744_ + static + 0 o p_219745_ + a (Lbdw;Lbyo;)V m_219737_ + static + 0 o p_219738_ + 1 o p_219739_ + a (Lcfz;Lbdw;)V m_6986_ + 0 o p_36174_ + 1 o p_36175_ + a (Lbyp;)Z m_36170_ + 0 o p_36171_ + a (Ljava/lang/String;Lts;)Lts; m_289164_ + 0 o p_289489_ + 1 o p_289490_ + a (Lbfo;)Z m_213772_ + 0 o p_219741_ + a (Lbfj;Lbdw;)Lbdx; m_36157_ + 0 o p_36158_ + 1 o p_36159_ + a (Lbfj;)V m_5704_ + 0 o p_36156_ + a (Lcjc;Ljava/util/List;)V m_280300_ + 0 o p_281669_ + 1 o p_283609_ + a (Laif;Lbfz;)Z m_214076_ + 0 o p_219735_ + 1 o p_219736_ + a (Lcmm;Lcfz;)Lcfz; m_5584_ + 0 o p_36185_ + 1 o p_36186_ + a (Lcfz;Z)Lbvh; m_36176_ + 0 o p_36177_ + 1 o p_36178_ + a (Lcln;)V m_7907_ + 0 o p_36182_ + a (Leei;Lbgf;)Leei; m_5763_ + 0 o p_36201_ + 1 o p_36202_ + a (Lben;)V m_6667_ + 0 o p_36152_ + a (Ltj;)Ltj; m_36218_ + 0 o p_36219_ + a (Lqr;Lrk;)V m_219754_ + static + 0 o p_219755_ + 1 o p_219756_ + a (Lbgl;)Lbfk; m_6972_ + 0 o p_36166_ + a (Lbyo;)Z m_7099_ + 0 o p_36169_ + a (Lamg;FF)V m_5496_ + 0 o p_36137_ + 1 o p_36138_ + 2 o p_36139_ + a (Lacq;)V m_36220_ + 0 o p_36221_ + aH ()F m_6041_ + aJ ()Lamg; m_5501_ + aK ()Lamg; m_5509_ + aL ()Lamg; m_5508_ + aS ()Lbfj$b; m_142319_ + a_ (I)Lbgs; m_141942_ + 0 o p_150112_ + a_ ()V m_8097_ + at ()I m_6078_ + b (Lbfj;)V m_5700_ + 0 o p_36253_ + b (B)V m_7822_ + 0 o p_36120_ + b (Lbgl;Lbfk;)F m_6431_ + 0 o p_36259_ + 1 o p_36260_ + b (Lben;)Z m_6673_ + 0 o p_36249_ + b (Lbfn;)V m_289163_ + 0 o p_289488_ + b (Lgu;Ldcb;)V m_7355_ + 0 o p_282121_ + 1 o p_282194_ + b (Lben;F)V m_6472_ + 0 o p_36251_ + 1 o p_36252_ + b (Lqr;)V m_7380_ + 0 o p_36265_ + b (Ljava/util/Collection;)I m_7279_ + 0 o p_36263_ + b (Lamo;)V m_36246_ + 0 o p_36247_ + bA ()V m_6038_ + bH ()I m_6045_ + bI ()Ljava/lang/Iterable; m_6167_ + bJ ()Ljava/lang/Iterable; m_6168_ + bW ()Z m_6069_ + b_ ()V m_8107_ + ba ()V m_5844_ + bd ()V m_5841_ + bn ()Z m_271807_ + bv ()V m_6083_ + bw ()D m_6049_ + c (Lbfn;)Z m_36279_ + static + 0 o p_36280_ + c (Lqr;)V m_36367_ + 0 o p_36368_ + c (I)V m_6749_ + 0 o p_36276_ + c (Lben;F)V m_142642_ + 0 o p_150103_ + 1 o p_150104_ + c (Lbfj;)V m_36277_ + 0 o p_36278_ + c (Lbfo;)Lcfz; m_6844_ + 0 o p_36257_ + c (Ldcb;)Z m_6757_ + 0 o p_36262_ + cY ()Lami; m_5720_ + cZ ()I m_6101_ + cv ()Ljava/lang/String; m_6302_ + cw ()Z m_6063_ + cz ()Z m_6052_ + d (Ldcb;)F m_36281_ + 0 o p_36282_ + d (I)V m_6756_ + 0 o p_36291_ + d (Lben;)Lamg; m_7975_ + 0 o p_36310_ + d (Lbfz;)V m_6728_ + 0 o p_36295_ + d (Lbfj;)V m_5706_ + 0 o p_36347_ + dB ()Z m_264410_ + dG ()Z m_142391_ + dH ()Z m_142389_ + dQ ()Z m_6046_ + dW ()Z m_6129_ + e (Ldcb;)Z m_36298_ + 0 o p_36299_ + eB ()F m_264297_ + eC ()Lbfz$a; m_196493_ + eT ()Z m_6107_ + eW ()V m_6135_ + eZ ()F m_274460_ + ea ()I m_213860_ + eb ()Z m_6124_ + ek ()Z m_142066_ + eu ()V m_5907_ + f (Lben;F)V m_6475_ + 0 o p_36312_ + 1 o p_36313_ + f (Lcfz;)Z m_7066_ + 0 o p_36315_ + f ()Z m_7500_ + fC ()Lbhf$a; m_36340_ + static + fD ()Z m_36341_ + fE ()Z m_36342_ + fF ()Z m_36343_ + fG ()Z m_7602_ + fH ()V m_7594_ + fI ()I m_36344_ + fJ ()V m_36345_ + fK ()V m_36346_ + fL ()V m_7583_ + fM ()Lcom/mojang/authlib/GameProfile; m_36316_ + fN ()Lbyn; m_150109_ + fO ()Lbyl; m_150110_ + fP ()Z m_242612_ + fQ ()Z m_36317_ + fR ()I m_36318_ + fS ()Z m_36319_ + fT ()V m_36320_ + fU ()V m_36321_ + fV ()I m_36322_ + fW ()I m_36323_ + fX ()Lcbb; m_36324_ + fY ()Z m_36325_ + fZ ()Z m_36326_ + fa ()F m_6113_ + fc ()V m_6140_ + ff ()F m_6103_ + fh ()Lbft; m_5737_ + fv ()Lcom/google/common/collect/ImmutableList; m_7431_ + fz ()V m_5796_ + g (Lcfz;)Lcfz; m_6298_ + 0 o p_36349_ + g ()Z m_7578_ + g (Lbfz;)V m_6727_ + 0 o p_36355_ + g_ ()Lamg; m_5592_ + ga ()Lcco; m_36327_ + gb ()V m_36328_ + gc ()Lefg; m_36329_ + gd ()Z m_36330_ + ge ()Lqr; m_36331_ + gf ()Lqr; m_36332_ + gg ()F m_36333_ + gh ()V m_36334_ + gi ()Lcfv; m_36335_ + gj ()F m_36336_ + gk ()Z m_36337_ + gl ()Z m_150108_ + gm ()Ljava/util/Optional; m_219759_ + h (Lgu;)Z m_36350_ + 0 o p_36351_ + h (I)V m_7311_ + 0 o p_36353_ + h (Lqr;)Z m_36360_ + 0 o p_36361_ + h (Leei;)V m_7023_ + 0 o p_36359_ + i (Lqr;)V m_36362_ + 0 o p_36363_ + i (Lcfz;)Z m_36356_ + 0 o p_36357_ + j (Lqr;)V m_36364_ + 0 o p_36365_ + k ()Lcfv; m_7478_ + k (Lqr;)V m_36370_ + 0 o p_36371_ + l ()V m_8119_ + m (F)V m_6053_ + 0 o p_265280_ + q ()V m_6915_ + q (F)Leei; m_7398_ + 0 o p_36374_ + r (DDD)V m_36378_ + 0 o p_36379_ + 1 o p_36380_ + 2 o p_36381_ + r ()V m_9230_ + r (I)V m_36397_ + 0 o p_36398_ + s ()V m_36372_ + s (DDD)V m_36387_ + 0 o p_36388_ + 1 o p_36389_ + 2 o p_36390_ + s (Z)V m_36384_ + 0 o p_36385_ + s (I)V m_36401_ + 0 o p_36402_ + t (Z)Z m_36391_ + 0 o p_36392_ + t (I)V m_204079_ + 0 o p_204080_ + u (F)V m_7909_ + 0 o p_36383_ + u (Z)V m_36393_ + 0 o p_36394_ + w ()V m_6885_ + x ()V m_36377_ + y ()Z m_36386_ + y (F)V m_7911_ + 0 o p_36396_ + z (F)V m_36399_ + 0 o p_36400_ +byo$1 net/minecraft/world/entity/player/Player$1 + a f_36405_ + ()V + static +byo$a net/minecraft/world/entity/player/Player$BedSleepingProblem + a NOT_POSSIBLE_HERE + b NOT_POSSIBLE_NOW + c TOO_FAR_AWAY + d OBSTRUCTED + e OTHER_PROBLEM + f NOT_SAFE + g f_36413_ + h $VALUES + ()V + static + (Ljava/lang/String;ILsw;)V + 0 o p_36420_ + 1 o p_36421_ + 2 o p_36422_ + (Ljava/lang/String;I)V + 0 o p_36417_ + 1 o p_36418_ + a ()Lsw; m_36423_ + b ()[Lbyo$a; m_150113_ + static + valueOf (Ljava/lang/String;)Lbyo$a; valueOf + static + 0 o p_36425_ + values ()[Lbyo$a; values + static +byp net/minecraft/world/entity/player/PlayerModelPart + a CAPE + b JACKET + c LEFT_SLEEVE + d RIGHT_SLEEVE + e LEFT_PANTS_LEG + f RIGHT_PANTS_LEG + g HAT + h f_36434_ + i f_36435_ + j f_36436_ + k f_36437_ + l $VALUES + ()V + static + (Ljava/lang/String;IILjava/lang/String;)V + 0 o p_36441_ + 1 o p_36442_ + 2 o p_36443_ + 3 o p_36444_ + a ()I m_36445_ + b ()I m_150114_ + c ()Ljava/lang/String; m_36446_ + d ()Lsw; m_36447_ + e ()[Lbyp; m_150115_ + static + valueOf (Ljava/lang/String;)Lbyp; valueOf + static + 0 o p_36449_ + values ()[Lbyp; values + static +byq net/minecraft/world/entity/player/ProfileKeyPair + a f_219761_ + b f_219762_ + c f_219763_ + d f_219764_ + ()V + static + (Ljava/security/PrivateKey;Lbyr;Ljava/time/Instant;)V + 0 o f_219762_ + 1 o f_219763_ + 2 o f_219764_ + a ()Z m_219770_ + a (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; m_219771_ + static + 0 o p_219772_ + b ()Ljava/security/PrivateKey; f_219762_ + c ()Lbyr; f_219763_ + d ()Ljava/time/Instant; f_219764_ + equals (Ljava/lang/Object;)Z equals + 0 o p_219777_ + hashCode ()I hashCode + toString ()Ljava/lang/String; toString +byr net/minecraft/world/entity/player/ProfilePublicKey + a f_243346_ + b f_243350_ + c f_219780_ + d f_219781_ + e f_243345_ + ()V + static + (Lbyr$a;)V + 0 o f_219781_ + a ()Lapj; m_219785_ + a (Lapj;Ljava/util/UUID;Lbyr$a;Ljava/time/Duration;)Lbyr; m_243358_ + static + 0 o p_243373_ + 1 o p_243390_ + 2 o p_243374_ + 3 o p_243387_ + b ()Lbyr$a; f_219781_ + equals (Ljava/lang/Object;)Z equals + 0 o p_219795_ + hashCode ()I hashCode + toString ()Ljava/lang/String; toString +byr$a net/minecraft/world/entity/player/ProfilePublicKey$Data + a f_219798_ + b f_219799_ + c f_219800_ + d f_219801_ + e f_219802_ + ()V + static + (Lsf;)V + 0 o p_219809_ + (Ljava/time/Instant;Ljava/security/PublicKey;[B)V + 0 o f_219799_ + 1 o f_219800_ + 2 o f_219801_ + a (Lsf;)V m_219815_ + 0 o p_219816_ + a (Ljava/time/Duration;)Z m_243357_ + 0 o p_243376_ + a ()Z m_219810_ + a (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; m_219813_ + static + 0 o p_219814_ + a (Lapj;Ljava/util/UUID;)Z m_240295_ + 0 o p_240296_ + 1 o p_240297_ + a (Ljava/util/UUID;)[B m_240266_ + 0 o p_240267_ + b ()Ljava/time/Instant; f_219799_ + c ()Ljava/security/PublicKey; f_219800_ + d ()[B f_219801_ + equals (Ljava/lang/Object;)Z equals + 0 o p_219822_ + hashCode ()I hashCode + toString ()Ljava/lang/String; toString +byr$b net/minecraft/world/entity/player/ProfilePublicKey$ValidationException + (Lsw;)V + 0 o p_243378_ +bys net/minecraft/world/entity/player/StackedContents + a f_36451_ + b f_150116_ + ()V + a (Lcfz;I)V m_36468_ + 0 o p_36469_ + 1 o p_36470_ + a (Lcjc;Lit/unimi/dsi/fastutil/ints/IntList;)Z m_36475_ + 0 o p_36476_ + 1 o p_36477_ + a (Lcjc;Lit/unimi/dsi/fastutil/ints/IntList;I)Z m_36478_ + 0 o p_36479_ + 1 o p_36480_ + 2 o p_36481_ + a (Lcfz;)V m_36466_ + 0 o p_36467_ + a (I)Lcfz; m_36454_ + static + 0 o p_36455_ + a (Lcjc;ILit/unimi/dsi/fastutil/ints/IntList;)I m_36471_ + 0 o p_36472_ + 1 o p_36473_ + 2 o p_36474_ + a ()V m_36453_ + a (II)I m_36456_ + 0 o p_36457_ + 1 o p_36458_ + b (II)V m_36484_ + 0 o p_36485_ + 1 o p_36486_ + b (I)Z m_36482_ + 0 o p_36483_ + b (Lcfz;)V m_36491_ + 0 o p_36492_ + b (Lcjc;Lit/unimi/dsi/fastutil/ints/IntList;)I m_36493_ + 0 o p_36494_ + 1 o p_36495_ + c (Lcfz;)I m_36496_ + static + 0 o p_36497_ +bys$a net/minecraft/world/entity/player/StackedContents$RecipePicker + a f_36498_ + b f_36499_ + c f_36500_ + d f_36501_ + e f_36502_ + f f_36503_ + g f_36504_ + h f_36505_ + (Lbys;Lcjc;)V + 0 o p_36507_ + 1 o p_36508_ + a (ZI)V m_36515_ + 0 o p_36516_ + 1 o p_36517_ + a (ILit/unimi/dsi/fastutil/ints/IntList;)Z m_36512_ + 0 o p_36513_ + 1 o p_36514_ + a (ZII)Z m_36518_ + 0 o p_36519_ + 1 o p_36520_ + 2 o p_36521_ + a ()[I m_36509_ + a (I)Z m_36510_ + 0 o p_36511_ + b ()I m_36522_ + b (I)Z m_36523_ + 0 o p_36524_ + b (ZII)Z m_36531_ + 0 o p_36532_ + 1 o p_36533_ + 2 o p_36534_ + b (ZI)Z m_36528_ + 0 o p_36529_ + 1 o p_36530_ + b (ILit/unimi/dsi/fastutil/ints/IntList;)I m_36525_ + 0 o p_36526_ + 1 o p_36527_ + c (ZII)V m_36540_ + 0 o p_36541_ + 1 o p_36542_ + 2 o p_36543_ + c (I)V m_36535_ + 0 o p_36536_ + c (ZI)I m_36537_ + 0 o p_36538_ + 1 o p_36539_ + d (I)I m_36544_ + 0 o p_36545_ + d (ZII)I m_36546_ + 0 o p_36547_ + 1 o p_36548_ + 2 o p_36549_ +byt net/minecraft/world/entity/player/package-info +byu net/minecraft/world/entity/projectile/AbstractArrow + b f_36703_ + c f_36704_ + d f_36705_ + e f_36706_ + f f_150120_ + g f_36707_ + h f_36708_ + i f_150117_ + j f_150118_ + k f_150119_ + l f_36696_ + m f_36697_ + n f_36698_ + o f_36699_ + p f_36700_ + q f_36701_ + r f_36702_ + ()V + static + (Lbfn;DDDLcmm;)V + 0 o p_36711_ + 1 o p_36712_ + 2 o p_36713_ + 3 o p_36714_ + 4 o p_36715_ + (Lbfn;Lbfz;Lcmm;)V + 0 o p_36717_ + 1 o p_36718_ + 2 o p_36719_ + (Lbfn;Lcmm;)V + 0 o p_36721_ + 1 o p_36722_ + D ()V m_36799_ + E ()V m_36723_ + a (Lbgl;Lbfk;)F m_6380_ + 0 o p_36752_ + 1 o p_36753_ + a (Leef;)V m_5790_ + 0 o p_36757_ + a (Lqr;)V m_7378_ + 0 o p_36761_ + a (Z)V m_36762_ + 0 o p_36763_ + a (DDDFFIZ)V m_6453_ + 0 o p_36728_ + 1 o p_36729_ + 2 o p_36730_ + 3 o p_36731_ + 4 o p_36732_ + 5 o p_36733_ + 6 o p_36734_ + a (Lbfz;)V m_7761_ + 0 o p_36744_ + a (Lbyo;)Z m_142470_ + 0 o p_150121_ + a (Lbgf;Leei;)V m_6478_ + 0 o p_36749_ + 1 o p_36750_ + a (Leei;Leei;)Leef; m_6351_ + 0 o p_36758_ + 1 o p_36759_ + a (B)V m_36767_ + 0 o p_36768_ + a (D)Z m_6783_ + 0 o p_36726_ + a (Leee;)V m_8060_ + 0 o p_36755_ + a (Lbfj;)Z m_5603_ + 0 o p_36743_ + a (Lbfz;F)V m_36745_ + 0 o p_36746_ + 1 o p_36747_ + a (IZ)V m_36737_ + 0 o p_36738_ + 1 o p_36739_ + aS ()Lbfj$b; m_142319_ + a_ ()V m_8097_ + b (Lamg;)V m_36740_ + 0 o p_36741_ + b (Lqr;)V m_7380_ + 0 o p_36772_ + b (I)V m_36735_ + 0 o p_36736_ + b (Lbfj;)V m_5602_ + 0 o p_36770_ + b_ (Lbyo;)V m_6123_ + 0 o p_36766_ + c (DDDFF)V m_6686_ + 0 o p_36775_ + 1 o p_36776_ + 2 o p_36777_ + 3 o p_36778_ + 4 o p_36779_ + cn ()Z m_6097_ + h (D)V m_36781_ + 0 o p_36782_ + j ()V m_6901_ + k ()Lamg; m_7239_ + l (DDD)V m_6001_ + 0 o p_36786_ + 1 o p_36787_ + 2 o p_36788_ + l ()V m_8119_ + o ()Lamg; m_36784_ + p ()Lcfz; m_7941_ + p (Z)V m_36790_ + 0 o p_36791_ + q ()D m_36789_ + q (Z)V m_36793_ + 0 o p_36794_ + r ()I m_150123_ + s ()Z m_36792_ + t ()Z m_36795_ + w ()B m_36796_ + x ()F m_6882_ + y ()Z m_36797_ + z ()Z m_36798_ +byu$1 net/minecraft/world/entity/projectile/AbstractArrow$1 + a f_150124_ + ()V + static +byu$a net/minecraft/world/entity/projectile/AbstractArrow$Pickup + a DISALLOWED + b ALLOWED + c CREATIVE_ONLY + d $VALUES + ()V + static + (Ljava/lang/String;I)V + 0 o p_36806_ + 1 o p_36807_ + a ()[Lbyu$a; m_150126_ + static + a (I)Lbyu$a; m_36808_ + static + 0 o p_36809_ + valueOf (Ljava/lang/String;)Lbyu$a; valueOf + static + 0 o p_36811_ + values ()[Lbyu$a; values + static +byv net/minecraft/world/entity/projectile/AbstractHurtingProjectile + b f_36813_ + c f_36814_ + d f_36815_ + (Lbfn;Lcmm;)V + 0 o p_36833_ + 1 o p_36834_ + (Lbfn;Lbfz;DDDLcmm;)V + 0 o p_36826_ + 1 o p_36827_ + 2 o p_36828_ + 3 o p_36829_ + 4 o p_36830_ + 5 o p_36831_ + (Lbfn;DDDDDDLcmm;)V + 0 o p_36817_ + 1 o p_36818_ + 2 o p_36819_ + 3 o p_36820_ + 4 o p_36821_ + 5 o p_36822_ + 6 o p_36823_ + 7 o p_36824_ + S ()Luo; m_5654_ + a (D)Z m_6783_ + 0 o p_36837_ + a (Lus;)V m_141965_ + 0 o p_150128_ + a (Lben;F)Z m_6469_ + 0 o p_36839_ + 1 o p_36840_ + a (Lqr;)V m_7378_ + 0 o p_36844_ + a (Lbfj;)Z m_5603_ + 0 o p_36842_ + a_ ()V m_8097_ + aa_ ()Z m_5931_ + b (Lqr;)V m_7380_ + 0 o p_36848_ + bC ()F m_6143_ + bj ()F m_213856_ + bo ()Z m_6087_ + k ()Lit; m_5967_ + l ()V m_8119_ + o ()F m_6884_ +byw net/minecraft/world/entity/projectile/Arrow + f f_150131_ + g f_150129_ + h f_36854_ + i f_150130_ + j f_36855_ + k f_36852_ + l f_36853_ + ()V + static + (Lcmm;Lbfz;)V + 0 o p_36866_ + 1 o p_36867_ + (Lbfn;Lcmm;)V + 0 o p_36858_ + 1 o p_36859_ + (Lcmm;DDD)V + 0 o p_36861_ + 1 o p_36862_ + 2 o p_36863_ + 3 o p_36864_ + D ()V m_36890_ + a (Lcfz;)V m_36878_ + 0 o p_36879_ + a (Lqr;)V m_7378_ + 0 o p_36875_ + a (Lbfa;)V m_36870_ + 0 o p_36871_ + a (Lbfz;)V m_7761_ + 0 o p_36873_ + a_ ()V m_8097_ + b (Lqr;)V m_7380_ + 0 o p_36881_ + b (B)V m_7822_ + 0 o p_36869_ + c (Lcfz;)I m_36884_ + static + 0 o p_36885_ + c (I)V m_36876_ + 0 o p_36877_ + d (I)V m_36882_ + 0 o p_36883_ + l ()V m_8119_ + m (I)I m_267768_ + static + 0 o p_268168_ + p ()Lcfz; m_7941_ + z ()I m_36889_ +byx net/minecraft/world/entity/projectile/DragonFireball + e f_150132_ + (Lbfn;Lcmm;)V + 0 o p_36892_ + 1 o p_36893_ + (Lcmm;Lbfz;DDD)V + 0 o p_36903_ + 1 o p_36904_ + 2 o p_36905_ + 3 o p_36906_ + 4 o p_36907_ + a (Lben;F)Z m_6469_ + 0 o p_36910_ + 1 o p_36911_ + a (Leeg;)V m_6532_ + 0 o p_36913_ + aa_ ()Z m_5931_ + bo ()Z m_6087_ + k ()Lit; m_5967_ +byy net/minecraft/world/entity/projectile/EvokerFangs + b f_150133_ + c f_150134_ + d f_150135_ + e f_36916_ + f f_36917_ + g f_36918_ + h f_36919_ + i f_36920_ + j f_36921_ + (Lbfn;Lcmm;)V + 0 o p_36923_ + 1 o p_36924_ + (Lcmm;DDDFILbfz;)V + 0 o p_36926_ + 1 o p_36927_ + 2 o p_36928_ + 3 o p_36929_ + 4 o p_36930_ + 5 o p_36931_ + 6 o p_36932_ + a (Lbfz;)V m_36938_ + 0 o p_36939_ + a (F)F m_36936_ + 0 o p_36937_ + a (Lqr;)V m_7378_ + 0 o p_36941_ + a_ ()V m_8097_ + b (B)V m_7822_ + 0 o p_36935_ + b (Lqr;)V m_7380_ + 0 o p_36943_ + c (Lbfz;)V m_36944_ + 0 o p_36945_ + j ()Lbfz; m_19749_ + l ()V m_8119_ + v ()Lbfj; m_19749_ +byz net/minecraft/world/entity/projectile/EyeOfEnder + b f_36949_ + c f_36950_ + d f_36951_ + e f_36952_ + f f_36953_ + g f_36954_ + ()V + static + (Lbfn;Lcmm;)V + 0 o p_36957_ + 1 o p_36958_ + (Lcmm;DDD)V + 0 o p_36960_ + 1 o p_36961_ + 2 o p_36962_ + 3 o p_36963_ + a (D)Z m_6783_ + 0 o p_36966_ + a (Lgu;)V m_36967_ + 0 o p_36968_ + a (Lcfz;)V m_36972_ + 0 o p_36973_ + a (Lqr;)V m_7378_ + 0 o p_36970_ + a_ ()V m_8097_ + b (Lqr;)V m_7380_ + 0 o p_36975_ + bj ()F m_213856_ + cn ()Z m_6097_ + j ()Lcfz; m_7846_ + k ()Lcfz; m_36981_ + l (DDD)V m_6001_ + 0 o p_36984_ + 1 o p_36985_ + 2 o p_36986_ + l ()V m_8119_ +bz net/minecraft/advancements/critereon/ItemPredicate + a f_45028_ + b f_45029_ + c f_151427_ + d f_45031_ + e f_45032_ + f f_45033_ + g f_45034_ + h f_45035_ + i f_45036_ + ()V + static + (Lanl;Ljava/util/Set;Lcj$d;Lcj$d;[Lbj;[Lbj;Lchw;Lcl;)V + 0 o p_204137_ + 1 o p_204138_ + 2 o p_204139_ + 3 o p_204140_ + 4 o p_204141_ + 5 o p_204142_ + 6 o p_204143_ + 7 o p_204144_ + ()V + a (Lacq;)Lcom/google/gson/JsonSyntaxException; m_45053_ + static + 0 o p_45054_ + a (Lcom/google/gson/JsonElement;)Lbz; m_45051_ + static + 0 o p_45052_ + a (Lcfz;)Z m_45049_ + 0 o p_45050_ + a ()Lcom/google/gson/JsonElement; m_45048_ + b (Lcom/google/gson/JsonElement;)[Lbz; m_45055_ + static + 0 o p_45056_ + b (Lacq;)Lcom/google/gson/JsonSyntaxException; m_45057_ + static + 0 o p_45058_ +bz$a net/minecraft/advancements/critereon/ItemPredicate$Builder + a f_45059_ + b f_45060_ + c f_151440_ + d f_45062_ + e f_45063_ + f f_45064_ + g f_45065_ + h f_45066_ + ()V + a ([Lcml;)Lbz$a; m_151445_ + 0 o p_151446_ + a (Lcj$d;)Lbz$a; m_151443_ + 0 o p_151444_ + a (Lanl;)Lbz$a; m_204145_ + 0 o p_204146_ + a (Lbj;)Lbz$a; m_45071_ + 0 o p_45072_ + a ()Lbz$a; m_45068_ + static + a (Lqr;)Lbz$a; m_45075_ + 0 o p_45076_ + a (Lchw;)Lbz$a; m_151441_ + 0 o p_151442_ + b ()Lbz; m_45077_ + b (Lbj;)Lbz$a; m_151447_ + 0 o p_151448_ + b (Lcj$d;)Lbz$a; m_151449_ + 0 o p_151450_ +bza net/minecraft/world/entity/projectile/Fireball + e f_36987_ + ()V + static + (Lbfn;Lbfz;DDDLcmm;)V + 0 o p_36999_ + 1 o p_37000_ + 2 o p_37001_ + 3 o p_37002_ + 4 o p_37003_ + 5 o p_37004_ + (Lbfn;DDDDDDLcmm;)V + 0 o p_36990_ + 1 o p_36991_ + 2 o p_36992_ + 3 o p_36993_ + 4 o p_36994_ + 5 o p_36995_ + 6 o p_36996_ + 7 o p_36997_ + (Lbfn;Lcmm;)V + 0 o p_37006_ + 1 o p_37007_ + a (Lcfz;)V m_37010_ + 0 o p_37011_ + a (Lqr;)V m_7378_ + 0 o p_37009_ + a_ ()V m_8097_ + b (Lqr;)V m_7380_ + 0 o p_37013_ + j ()Lcfz; m_7846_ + p ()Lcfz; m_37018_ +bzb net/minecraft/world/entity/projectile/FireworkRocketEntity + b f_37019_ + c f_37020_ + d f_37021_ + e f_37022_ + f f_37023_ + g f_37024_ + ()V + static + (Lcmm;Lbfj;DDDLcfz;)V + 0 o p_37036_ + 1 o p_37037_ + 2 o p_37038_ + 3 o p_37039_ + 4 o p_37040_ + 5 o p_37041_ + (Lbfn;Lcmm;)V + 0 o p_37027_ + 1 o p_37028_ + (Lcmm;Lcfz;Lbfz;)V + 0 o p_37058_ + 1 o p_37059_ + 2 o p_37060_ + (Lcmm;DDDLcfz;)V + 0 o p_37030_ + 1 o p_37031_ + 2 o p_37032_ + 3 o p_37033_ + 4 o p_37034_ + (Lcmm;Lcfz;DDDZ)V + 0 o p_37043_ + 1 o p_37044_ + 2 o p_37045_ + 3 o p_37046_ + 4 o p_37047_ + 5 o p_37048_ + (Lcmm;Lcfz;Lbfj;DDDZ)V + 0 o p_37050_ + 1 o p_37051_ + 2 o p_37052_ + 3 o p_37053_ + 4 o p_37054_ + 5 o p_37055_ + 6 o p_37056_ + a (D)Z m_6783_ + 0 o p_37065_ + a (Leee;)V m_8060_ + 0 o p_37069_ + a (Leef;)V m_5790_ + 0 o p_37071_ + a (Lqr;)V m_7378_ + 0 o p_37073_ + a_ ()V m_8097_ + b (Lqr;)V m_7380_ + 0 o p_37075_ + b (I)V m_289166_ + 0 o p_289492_ + b (B)V m_7822_ + 0 o p_37063_ + cn ()Z m_6097_ + j ()Lcfz; m_7846_ + k (DDD)Z m_6000_ + 0 o p_37083_ + 1 o p_37084_ + 2 o p_37085_ + k ()Z m_37079_ + l ()V m_8119_ + o ()V m_37080_ + p ()Z m_37086_ + q ()V m_37087_ + r ()Z m_37088_ +bzc net/minecraft/world/entity/projectile/FishingHook + b f_201977_ + c f_37098_ + d f_37099_ + e f_37100_ + f f_150136_ + g f_37101_ + h f_37102_ + i f_37103_ + j f_37089_ + k f_37090_ + l f_37091_ + m f_37092_ + n f_37093_ + o f_37094_ + p f_37095_ + q f_37096_ + r f_37097_ + ()V + static + (Lbfn;Lcmm;II)V + 0 o p_150141_ + 1 o p_150142_ + 2 o p_150143_ + 3 o p_150144_ + (Lbfn;Lcmm;)V + 0 o p_150138_ + 1 o p_150139_ + (Lbyo;Lcmm;II)V + 0 o p_37106_ + 1 o p_37107_ + 2 o p_37108_ + 3 o p_37109_ + S ()Luo; m_5654_ + a (Leef;)V m_5790_ + 0 o p_37144_ + a (Lqr;)V m_7378_ + 0 o p_37151_ + a (Laby;)V m_7350_ + 0 o p_37153_ + a (DDDFFIZ)V m_6453_ + 0 o p_37127_ + 1 o p_37128_ + 2 o p_37129_ + 3 o p_37130_ + 4 o p_37131_ + 5 o p_37132_ + 6 o p_37133_ + a (Lcfz;)I m_37156_ + 0 o p_37157_ + a (Lbyo;)Z m_37136_ + 0 o p_37137_ + a (D)Z m_6783_ + 0 o p_37125_ + a (Lbfj$c;)V m_142687_ + 0 o p_150146_ + a (Lus;)V m_141965_ + 0 o p_150150_ + a (Leee;)V m_8060_ + 0 o p_37142_ + a (Lgu;)V m_37145_ + 0 o p_37146_ + a (Lgu;Lgu;)Lbzc$b; m_37147_ + 0 o p_37148_ + 1 o p_37149_ + a (Lbfj;)Z m_5603_ + 0 o p_37135_ + a (Lbzc;)V m_150147_ + 0 o p_150148_ + a (Lbzc$b;Lbzc$b;)Lbzc$b; m_37138_ + static + 0 o p_37139_ + 1 o p_37140_ + aS ()Lbfj$b; m_142319_ + a_ ()V m_8097_ + ak ()V m_142036_ + b (Lqr;)V m_7380_ + 0 o p_37161_ + b (Lgu;)Z m_37158_ + 0 o p_37159_ + b (Lbfj;)V m_5602_ + 0 o p_150154_ + b (B)V m_7822_ + 0 o p_37123_ + c (Lbfj;)V m_150155_ + 0 o p_150156_ + c (Lgu;)Lbzc$b; m_37163_ + 0 o p_37164_ + cq ()Z m_6072_ + j ()Z m_37166_ + k ()Lbyo; m_37168_ + l ()V m_8119_ + o ()Lbfj; m_37170_ + p ()V m_37171_ + x (Lbfj;)V m_150157_ + 0 o p_150158_ +bzc$1 net/minecraft/world/entity/projectile/FishingHook$1 + a f_37173_ + ()V + static +bzc$a net/minecraft/world/entity/projectile/FishingHook$FishHookState + a FLYING + b HOOKED_IN_ENTITY + c BOBBING + d $VALUES + ()V + static + (Ljava/lang/String;I)V + 0 o p_37181_ + 1 o p_37182_ + a ()[Lbzc$a; m_150159_ + static + valueOf (Ljava/lang/String;)Lbzc$a; valueOf + static + 0 o p_37184_ + values ()[Lbzc$a; values + static +bzc$b net/minecraft/world/entity/projectile/FishingHook$OpenWaterType + a ABOVE_WATER + b INSIDE_WATER + c INVALID + d $VALUES + ()V + static + (Ljava/lang/String;I)V + 0 o p_37192_ + 1 o p_37193_ + a ()[Lbzc$b; m_150160_ + static + valueOf (Ljava/lang/String;)Lbzc$b; valueOf + static + 0 o p_37195_ + values ()[Lbzc$b; values + static +bzd net/minecraft/world/entity/projectile/ItemSupplier + j ()Lcfz; m_7846_ +bze net/minecraft/world/entity/projectile/LargeFireball + e f_37197_ + (Lcmm;Lbfz;DDDI)V + 0 o p_181151_ + 1 o p_181152_ + 2 o p_181153_ + 3 o p_181154_ + 4 o p_181155_ + 5 o p_181156_ + (Lbfn;Lcmm;)V + 0 o p_37199_ + 1 o p_37200_ + a (Leeg;)V m_6532_ + 0 o p_37218_ + a (Leef;)V m_5790_ + 0 o p_37216_ + a (Lqr;)V m_7378_ + 0 o p_37220_ + b (Lqr;)V m_7380_ + 0 o p_37222_ +bzf net/minecraft/world/entity/projectile/LlamaSpit + (Lcmm;Lbtn;)V + 0 o p_37235_ + 1 o p_37236_ + (Lbfn;Lcmm;)V + 0 o p_37224_ + 1 o p_37225_ + a (Lus;)V m_141965_ + 0 o p_150162_ + a (Leee;)V m_8060_ + 0 o p_37239_ + a (Leef;)V m_5790_ + 0 o p_37241_ + a_ ()V m_8097_ + l ()V m_8119_ +bzg net/minecraft/world/entity/projectile/Projectile + b f_37244_ + c f_150163_ + d f_37246_ + e f_150164_ + (Lbfn;Lcmm;)V + 0 o p_37248_ + 1 o p_37249_ + A ()Lbfj; m_150173_ + C ()V m_37283_ + S ()Luo; m_5654_ + a (Lus;)V m_141965_ + 0 o p_150170_ + a (Leee;)V m_8060_ + 0 o p_37258_ + a (Leeg;)V m_6532_ + 0 o p_37260_ + a (Leef;)V m_5790_ + 0 o p_37259_ + a (Lqr;)V m_7378_ + 0 o p_37262_ + a (Lbfj;)Z m_5603_ + 0 o p_37250_ + a (Lbfj;FFFFF)V m_37251_ + 0 o p_37252_ + 1 o p_37253_ + 2 o p_37254_ + 3 o p_37255_ + 4 o p_37256_ + 5 o p_37257_ + a (Lcmm;Lgu;)Z m_142265_ + 0 o p_150167_ + 1 o p_150168_ + b (Lqr;)V m_7380_ + 0 o p_37265_ + b (Lbfj;)V m_5602_ + 0 o p_37263_ + c (Lbfj;)Z m_37271_ + static + 0 o p_37272_ + c (DDDFF)V m_6686_ + 0 o p_37266_ + 1 o p_37267_ + 2 o p_37268_ + 3 o p_37269_ + 4 o p_37270_ + d (Lbfj;)Z m_150171_ + 0 o p_150172_ + d (FF)F m_37273_ + static + 0 o p_37274_ + 1 o p_37275_ + k ()Z m_37276_ + l (DDD)V m_6001_ + 0 o p_37279_ + 1 o p_37280_ + 2 o p_37281_ + l ()V m_8119_ + v ()Lbfj; m_19749_ +bzh net/minecraft/world/entity/projectile/ProjectileUtil + ()V + a (Lcmm;Lbfj;Leei;Leei;Leed;Ljava/util/function/Predicate;)Leef; m_37304_ + static + 0 o p_37305_ + 1 o p_37306_ + 2 o p_37307_ + 3 o p_37308_ + 4 o p_37309_ + 5 o p_37310_ + a (Lbfj;Ljava/util/function/Predicate;D)Leeg; m_278180_ + static + 0 o p_278281_ + 1 o p_278306_ + 2 o p_278293_ + a (Leei;Lbfj;Ljava/util/function/Predicate;Leei;Lcmm;)Leeg; m_278167_ + static + 0 o p_278237_ + 1 o p_278320_ + 2 o p_278257_ + 3 o p_278342_ + 4 o p_278321_ + a (Lcmm;Lbfj;Leei;Leei;Leed;Ljava/util/function/Predicate;F)Leef; m_150175_ + static + 0 o p_150176_ + 1 o p_150177_ + 2 o p_150178_ + 3 o p_150179_ + 4 o p_150180_ + 5 o p_150181_ + 6 o p_150182_ + a (Lbfj;F)V m_37284_ + static + 0 o p_37285_ + 1 o p_37286_ + a (Lbfz;Lcfz;F)Lbyu; m_37300_ + static + 0 o p_37301_ + 1 o p_37302_ + 2 o p_37303_ + a (Lbfj;Ljava/util/function/Predicate;)Leeg; m_278158_ + static + 0 o p_278228_ + 1 o p_278315_ + a (Lbfj;Leei;Leei;Leed;Ljava/util/function/Predicate;D)Leef; m_37287_ + static + 0 o p_37288_ + 1 o p_37289_ + 2 o p_37290_ + 3 o p_37291_ + 4 o p_37292_ + 5 o p_37293_ + a (Lbfz;Lcfu;)Lbdw; m_37297_ + static + 0 o p_37298_ + 1 o p_37299_ +bzi net/minecraft/world/entity/projectile/ShulkerBullet + b f_150183_ + c f_37312_ + d f_37313_ + e f_37314_ + f f_37315_ + g f_37316_ + h f_37317_ + i f_37311_ + (Lbfn;Lcmm;)V + 0 o p_37319_ + 1 o p_37320_ + (Lcmm;Lbfz;Lbfj;Lha$a;)V + 0 o p_37330_ + 1 o p_37331_ + 2 o p_37332_ + 3 o p_37333_ + a (D)Z m_6783_ + 0 o p_37336_ + a (Lus;)V m_141965_ + 0 o p_150185_ + a (Leee;)V m_8060_ + 0 o p_37343_ + a (Lben;F)Z m_6469_ + 0 o p_37338_ + 1 o p_37339_ + a (Lha;)V m_37350_ + 0 o p_37351_ + a (Leef;)V m_5790_ + 0 o p_37345_ + a (Leeg;)V m_6532_ + 0 o p_37347_ + a (Lqr;)V m_7378_ + 0 o p_37353_ + a (Lbfj;)Z m_5603_ + 0 o p_37341_ + a (Lha$a;)V m_37348_ + 0 o p_37349_ + a_ ()V m_8097_ + b (Lqr;)V m_7380_ + 0 o p_37357_ + bL ()Z m_6060_ + bj ()F m_213856_ + bo ()Z m_6087_ + cY ()Lami; m_5720_ + du ()V m_6043_ + j ()Lha; m_150186_ + k ()V m_276200_ + l ()V m_8119_ +bzj net/minecraft/world/entity/projectile/SmallFireball + (Lcmm;DDDDDD)V + 0 o p_37367_ + 1 o p_37368_ + 2 o p_37369_ + 3 o p_37370_ + 4 o p_37371_ + 5 o p_37372_ + 6 o p_37373_ + (Lbfn;Lcmm;)V + 0 o p_37364_ + 1 o p_37365_ + (Lcmm;Lbfz;DDD)V + 0 o p_37375_ + 1 o p_37376_ + 2 o p_37377_ + 3 o p_37378_ + 4 o p_37379_ + a (Leee;)V m_8060_ + 0 o p_37384_ + a (Lben;F)Z m_6469_ + 0 o p_37381_ + 1 o p_37382_ + a (Leef;)V m_5790_ + 0 o p_37386_ + a (Leeg;)V m_6532_ + 0 o p_37388_ + bo ()Z m_6087_ +bzk net/minecraft/world/entity/projectile/Snowball + (Lcmm;Lbfz;)V + 0 o p_37399_ + 1 o p_37400_ + (Lbfn;Lcmm;)V + 0 o p_37391_ + 1 o p_37392_ + (Lcmm;DDD)V + 0 o p_37394_ + 1 o p_37395_ + 2 o p_37396_ + 3 o p_37397_ + a (Leef;)V m_5790_ + 0 o p_37404_ + a (Leeg;)V m_6532_ + 0 o p_37406_ + b (B)V m_7822_ + 0 o p_37402_ + k ()Lcfu; m_7881_ + q ()Lit; m_37408_ +bzl net/minecraft/world/entity/projectile/SpectralArrow + f f_37409_ + (Lcmm;Lbfz;)V + 0 o p_37419_ + 1 o p_37420_ + (Lbfn;Lcmm;)V + 0 o p_37411_ + 1 o p_37412_ + (Lcmm;DDD)V + 0 o p_37414_ + 1 o p_37415_ + 2 o p_37416_ + 3 o p_37417_ + a (Lbfz;)V m_7761_ + 0 o p_37422_ + a (Lqr;)V m_7378_ + 0 o p_37424_ + b (Lqr;)V m_7380_ + 0 o p_37426_ + l ()V m_8119_ + p ()Lcfz; m_7941_ +bzm net/minecraft/world/entity/projectile/ThrowableItemProjectile + b f_37429_ + ()V + static + (Lbfn;Lbfz;Lcmm;)V + 0 o p_37438_ + 1 o p_37439_ + 2 o p_37440_ + (Lbfn;DDDLcmm;)V + 0 o p_37432_ + 1 o p_37433_ + 2 o p_37434_ + 3 o p_37435_ + 4 o p_37436_ + (Lbfn;Lcmm;)V + 0 o p_37442_ + 1 o p_37443_ + a (Lcfz;)V m_37446_ + 0 o p_37447_ + a (Lqr;)V m_7378_ + 0 o p_37445_ + a_ ()V m_8097_ + b (Lqr;)V m_7380_ + 0 o p_37449_ + j ()Lcfz; m_7846_ + k ()Lcfu; m_7881_ + o ()Lcfz; m_37454_ +bzn net/minecraft/world/entity/projectile/ThrowableProjectile + (Lbfn;Lbfz;Lcmm;)V + 0 o p_37462_ + 1 o p_37463_ + 2 o p_37464_ + (Lbfn;DDDLcmm;)V + 0 o p_37456_ + 1 o p_37457_ + 2 o p_37458_ + 3 o p_37459_ + 4 o p_37460_ + (Lbfn;Lcmm;)V + 0 o p_37466_ + 1 o p_37467_ + a (D)Z m_6783_ + 0 o p_37470_ + l ()V m_8119_ + p ()F m_7139_ +bzo net/minecraft/world/entity/projectile/ThrownEgg + (Lcmm;Lbfz;)V + 0 o p_37481_ + 1 o p_37482_ + (Lbfn;Lcmm;)V + 0 o p_37473_ + 1 o p_37474_ + (Lcmm;DDD)V + 0 o p_37476_ + 1 o p_37477_ + 2 o p_37478_ + 3 o p_37479_ + a (Leef;)V m_5790_ + 0 o p_37486_ + a (Leeg;)V m_6532_ + 0 o p_37488_ + b (B)V m_7822_ + 0 o p_37484_ + k ()Lcfu; m_7881_ +bzp net/minecraft/world/entity/projectile/ThrownEnderpearl + (Lcmm;Lbfz;)V + 0 o p_37499_ + 1 o p_37500_ + (Lbfn;Lcmm;)V + 0 o p_37491_ + 1 o p_37492_ + a (Leef;)V m_5790_ + 0 o p_37502_ + a (Leeg;)V m_6532_ + 0 o p_37504_ + b (Laif;)Lbfj; m_5489_ + 0 o p_37506_ + k ()Lcfu; m_7881_ + l ()V m_8119_ +bzq net/minecraft/world/entity/projectile/ThrownExperienceBottle + (Lcmm;Lbfz;)V + 0 o p_37518_ + 1 o p_37519_ + (Lbfn;Lcmm;)V + 0 o p_37510_ + 1 o p_37511_ + (Lcmm;DDD)V + 0 o p_37513_ + 1 o p_37514_ + 2 o p_37515_ + 3 o p_37516_ + a (Leeg;)V m_6532_ + 0 o p_37521_ + k ()Lcfu; m_7881_ + p ()F m_7139_ +bzr net/minecraft/world/entity/projectile/ThrownPotion + b f_150190_ + c f_252520_ + d f_150191_ + ()V + static + (Lcmm;Lbfz;)V + 0 o p_37535_ + 1 o p_37536_ + (Lbfn;Lcmm;)V + 0 o p_37527_ + 1 o p_37528_ + (Lcmm;DDD)V + 0 o p_37530_ + 1 o p_37531_ + 2 o p_37532_ + 3 o p_37533_ + a (Ljava/util/List;Lbfj;)V m_37547_ + 0 o p_37548_ + 1 o p_37549_ + a (Leee;)V m_8060_ + 0 o p_37541_ + a (Lgu;)V m_150192_ + 0 o p_150193_ + a (Leeg;)V m_6532_ + 0 o p_37543_ + a (DI)I m_267560_ + static + 0 o p_267929_ + 1 o p_267930_ + a (Lcfz;Lchw;)V m_37537_ + 0 o p_37538_ + 1 o p_37539_ + a (Lbfz;)Z m_287114_ + static + 0 o p_287524_ + k ()Lcfu; m_7881_ + p ()F m_7139_ + q ()V m_37552_ + r ()Z m_37553_ +bzs net/minecraft/world/entity/projectile/ThrownTrident + f f_37557_ + g f_37558_ + h f_37554_ + i f_37555_ + j f_37556_ + ()V + static + (Lcmm;Lbfz;Lcfz;)V + 0 o p_37569_ + 1 o p_37570_ + 2 o p_37571_ + (Lbfn;Lcmm;)V + 0 o p_37561_ + 1 o p_37562_ + D ()Z m_150194_ + E ()Z m_37594_ + a (Leei;Leei;)Leef; m_6351_ + 0 o p_37575_ + 1 o p_37576_ + a (Leef;)V m_5790_ + 0 o p_37573_ + a (Lqr;)V m_7378_ + 0 o p_37578_ + a (Lbyo;)Z m_142470_ + 0 o p_150196_ + a_ ()V m_8097_ + b (Lqr;)V m_7380_ + 0 o p_37582_ + b_ (Lbyo;)V m_6123_ + 0 o p_37580_ + j ()V m_6901_ + k (DDD)Z m_6000_ + 0 o p_37588_ + 1 o p_37589_ + 2 o p_37590_ + k ()Lamg; m_7239_ + l ()V m_8119_ + p ()Lcfz; m_7941_ + x ()F m_6882_ + z ()Z m_37593_ +bzt net/minecraft/world/entity/projectile/WitherSkull + e f_37595_ + ()V + static + (Lbfn;Lcmm;)V + 0 o p_37598_ + 1 o p_37599_ + (Lcmm;Lbfz;DDD)V + 0 o p_37609_ + 1 o p_37610_ + 2 o p_37611_ + 3 o p_37612_ + 4 o p_37613_ + a (Lben;F)Z m_6469_ + 0 o p_37616_ + 1 o p_37617_ + a (Leef;)V m_5790_ + 0 o p_37626_ + a (Leeg;)V m_6532_ + 0 o p_37628_ + a (Z)V m_37629_ + 0 o p_37630_ + a (Lcme;Lcls;Lgu;Ldcb;Ldxe;F)F m_7077_ + 0 o p_37619_ + 1 o p_37620_ + 2 o p_37621_ + 3 o p_37622_ + 4 o p_37623_ + 5 o p_37624_ + a_ ()V m_8097_ + aa_ ()Z m_5931_ + bL ()Z m_6060_ + bo ()Z m_6087_ + o ()F m_6884_ + p ()Z m_37635_ +bzu net/minecraft/world/entity/projectile/package-info +bzv net/minecraft/world/entity/raid/Raid + A f_37670_ + B f_37671_ + C f_37672_ + D f_37673_ + E f_37674_ + F f_37675_ + G f_37676_ + H f_37677_ + I f_37678_ + J f_37679_ + K f_37680_ + L f_37681_ + M f_37682_ + N f_37683_ + O f_37684_ + P f_37685_ + Q f_37686_ + R f_37687_ + S f_37688_ + T f_37689_ + a f_150197_ + b f_150198_ + c f_150199_ + d f_150200_ + e f_150201_ + f f_150202_ + g f_150203_ + h f_150204_ + i f_150205_ + j f_150206_ + k f_150207_ + l f_150208_ + m f_150209_ + n f_150210_ + o f_150211_ + p f_150212_ + q f_150213_ + r f_150214_ + s f_150215_ + t f_150216_ + u f_37665_ + v f_37666_ + w f_37667_ + x f_37668_ + y f_37669_ + z f_150217_ + ()V + static + (ILaif;Lgu;)V + 0 o p_37692_ + 1 o p_37693_ + 2 o p_37694_ + (Laif;Lqr;)V + 0 o p_37696_ + 1 o p_37697_ + A ()Z m_37698_ + B ()Z m_37699_ + C ()Z m_37700_ + D ()Z m_37701_ + E ()Z m_37702_ + F ()V m_37703_ + G ()Z m_37704_ + H ()V m_37705_ + a (Lbdu;)I m_37724_ + 0 o p_37725_ + a (ILbzw;Lgu;Z)V m_37713_ + 0 o p_37714_ + 1 o p_37715_ + 2 o p_37716_ + 3 o p_37717_ + a (Lqr;)Lqr; m_37747_ + 0 o p_37748_ + a (Lbzw;Z)V m_37740_ + 0 o p_37741_ + 1 o p_37742_ + a (Lgu;)V m_37743_ + 0 o p_37744_ + a (ILbzw;)V m_37710_ + 0 o p_37711_ + 1 o p_37712_ + a (II)Lgu; m_37707_ + 0 o p_37708_ + 1 o p_37709_ + a (Laig;)Z m_289167_ + 0 o p_289493_ + a (Lbzv$b;Lapf;ILbdv;Z)I m_219828_ + 0 o p_219829_ + 1 o p_219830_ + 2 o p_219831_ + 3 o p_219832_ + 4 o p_219833_ + a ()Z m_37706_ + a (Lbyo;)V m_37728_ + 0 o p_37729_ + a (Lbzv$b;IZ)I m_37730_ + 0 o p_37731_ + 1 o p_37732_ + 2 o p_37733_ + a (ILbzw;Z)Z m_37718_ + 0 o p_37719_ + 1 o p_37720_ + 2 o p_37721_ + a (Ljava/lang/Integer;)Ljava/util/Set; m_37745_ + static + 0 o p_37746_ + a (I)V m_150218_ + 0 o p_150219_ + a (Lbfj;)V m_37726_ + 0 o p_37727_ + b (ILbzw;)Z m_37752_ + 0 o p_37753_ + 1 o p_37754_ + b (I)Lbzw; m_37750_ + 0 o p_37751_ + b (Lgu;)V m_37755_ + 0 o p_37756_ + b ()Z m_37749_ + c (I)V m_37758_ + 0 o p_37759_ + c ()Z m_37757_ + c (Lgu;)V m_37760_ + 0 o p_37761_ + d (Lgu;)D m_37765_ + 0 o p_37766_ + d ()Z m_37762_ + d (I)Ljava/util/Optional; m_37763_ + 0 o p_37764_ + e ()Z m_37767_ + f ()Z m_37768_ + g ()F m_150220_ + h ()Ljava/util/Set; m_150221_ + i ()Lcmm; m_37769_ + j ()Z m_37770_ + k ()I m_37771_ + l ()I m_37772_ + m ()I m_37773_ + n ()V m_37774_ + o ()V m_37775_ + p ()V m_37776_ + q ()F m_37777_ + r ()I m_37778_ + s ()Lcfz; m_37779_ + static + t ()Lgu; m_37780_ + u ()I m_37781_ + v ()Z m_37782_ + w ()F m_37783_ + x ()Ljava/util/function/Predicate; m_37784_ + y ()V m_37785_ + z ()V m_37786_ +bzv$1 net/minecraft/world/entity/raid/Raid$1 + a f_37787_ + b f_37788_ + ()V + static +bzv$a net/minecraft/world/entity/raid/Raid$RaidStatus + a ONGOING + b VICTORY + c LOSS + d STOPPED + e f_37794_ + f $VALUES + ()V + static + (Ljava/lang/String;I)V + 0 o p_37798_ + 1 o p_37799_ + a ()Ljava/lang/String; m_37800_ + a (Ljava/lang/String;)Lbzv$a; m_37803_ + static + 0 o p_37804_ + b ()[Lbzv$a; m_150222_ + static + valueOf (Ljava/lang/String;)Lbzv$a; valueOf + static + 0 o p_37806_ + values ()[Lbzv$a; values + static +bzv$b net/minecraft/world/entity/raid/Raid$RaiderType + a VINDICATOR + b EVOKER + c PILLAGER + d WITCH + e RAVAGER + f f_37813_ + g f_37814_ + h f_37815_ + i $VALUES + ()V + static + (Ljava/lang/String;ILbfn;[I)V + 0 o p_37819_ + 1 o p_37820_ + 2 o p_37821_ + 3 o p_37822_ + a ()[Lbzv$b; m_150223_ + static + valueOf (Ljava/lang/String;)Lbzv$b; valueOf + static + 0 o p_37829_ + values ()[Lbzv$b; values + static +bzw net/minecraft/world/entity/raid/Raider + b f_37831_ + bT f_37833_ + bU f_37834_ + c f_37835_ + d f_37836_ + e f_37832_ + ()V + static + (Lbfn;Lcmm;)V + 0 o p_37839_ + 1 o p_37840_ + A (Z)V m_37899_ + 0 o p_37900_ + T ()Z m_8023_ + Y_ ()Lamg; m_7930_ + a (Lqr;)V m_7378_ + 0 o p_37862_ + a (Lben;)V m_6667_ + 0 o p_37847_ + a (Lcnb;Lbdv;Lbgd;Lbgt;Lqr;)Lbgt; m_6518_ + 0 o p_37856_ + 1 o p_37857_ + 2 o p_37858_ + 3 o p_37859_ + 4 o p_37860_ + a (Lbzw;)Lapf; m_219834_ + static + 0 o p_219835_ + a (Lben;F)Z m_6469_ + 0 o p_37849_ + 1 o p_37850_ + a (Lbzv;)V m_37851_ + 0 o p_37852_ + a (IZ)V m_7895_ + 0 o p_37844_ + 1 o p_37845_ + a_ ()V m_8097_ + b (Lqr;)V m_7380_ + 0 o p_37870_ + b (Lbzw;)F m_150226_ + static + 0 o p_150227_ + b (Lbvh;)V m_7581_ + 0 o p_37866_ + b (I)V m_37842_ + 0 o p_37843_ + b_ ()V m_8107_ + c (Lbzw;)Lapf; m_219836_ + static + 0 o p_219837_ + c (Lbvh;)Z m_289168_ + static + 0 o p_289494_ + c (I)V m_37863_ + 0 o p_37864_ + d (Lbzw;)Z m_150230_ + static + 0 o p_150231_ + e (Lbzw;)Lapf; m_219838_ + static + 0 o p_219839_ + f (Lbzw;)Lapf; m_219840_ + static + 0 o p_219841_ + gd ()V m_7562_ + gf ()Z m_7492_ + gl ()Z m_37882_ + gm ()Lbzv; m_37885_ + gn ()Z m_37886_ + go ()I m_37887_ + gp ()Z m_37888_ + gq ()I m_37889_ + h (D)Z m_6785_ + 0 o p_37894_ + x ()V m_8099_ + z (Z)V m_37897_ + 0 o p_37898_ +bzw$a net/minecraft/world/entity/raid/Raider$HoldGroundAttackGoal + a f_37901_ + b f_37902_ + c f_37903_ + d f_37904_ + (Lbzw;Lbvk;F)V + 0 o p_37906_ + 1 o p_37907_ + 2 o p_37908_ + K_ ()Z m_183429_ + a ()Z m_8036_ + c ()V m_8056_ + d ()V m_8041_ + e ()V m_8037_ +bzw$b net/minecraft/world/entity/raid/Raider$ObtainRaidLeaderBannerGoal + a f_37913_ + b f_37914_ + (Lbzw;Lbzw;)V + 0 o p_37916_ + 1 o p_37917_ + a ()Z m_8036_ + e ()V m_8037_ +bzw$c net/minecraft/world/entity/raid/Raider$RaiderCelebration + a f_37920_ + b f_37921_ + (Lbzw;Lbzw;)V + 0 o p_37923_ + 1 o p_37924_ + a ()Z m_8036_ + c ()V m_8056_ + d ()V m_8041_ + e ()V m_8037_ +bzw$d net/minecraft/world/entity/raid/Raider$RaiderMoveThroughVillageGoal + a f_37929_ + b f_37930_ + c f_37931_ + d f_37932_ + e f_37933_ + f f_37934_ + (Lbzw;DI)V + 0 o p_37936_ + 1 o p_37937_ + 2 o p_37938_ + a ()Z m_8036_ + a (Lgu;)Z m_37942_ + 0 o p_37943_ + a (Lhe;)Z m_219842_ + static + 0 o p_219843_ + b ()Z m_8045_ + c ()V m_8056_ + d ()V m_8041_ + e ()V m_8037_ + h ()Z m_37948_ + i ()Z m_37949_ + k ()V m_37950_ +bzx net/minecraft/world/entity/raid/Raids + a f_150234_ + b f_37951_ + c f_37952_ + d f_37953_ + e f_37954_ + (Laif;)V + 0 o p_37956_ + a (Laif;Lgu;)Lbzv; m_37960_ + 0 o p_37961_ + 1 o p_37962_ + a (Lqr;)Lqr; m_7176_ + 0 o p_37976_ + a (Laif;Lqr;)Lbzx; m_150235_ + static + 0 o p_150236_ + 1 o p_150237_ + a ()V m_37957_ + a (Lhe;)Ljava/lang/String; m_211596_ + static + 0 o p_211597_ + a (I)Lbzv; m_37958_ + 0 o p_37959_ + a (Lbzw;Lbzv;)Z m_37965_ + static + 0 o p_37966_ + 1 o p_37967_ + a (Lgu;I)Lbzv; m_37970_ + 0 o p_37971_ + 1 o p_37972_ + a (Laig;)Lbzv; m_37963_ + 0 o p_37964_ + b (Lhe;)Z m_219844_ + static + 0 o p_219845_ + d ()I m_37977_ +bzy net/minecraft/world/entity/raid/package-info +bzz net/minecraft/world/entity/schedule/Activity + A f_37993_ + B f_37994_ + a f_37978_ + b f_37979_ + c f_37980_ + d f_37981_ + e f_37982_ + f f_37983_ + g f_37984_ + h f_37985_ + i f_37986_ + j f_37987_ + k f_37988_ + l f_37989_ + m f_37990_ + n f_37991_ + o f_37992_ + p f_150238_ + q f_150239_ + r f_150240_ + s f_219846_ + t f_219847_ + u f_219848_ + v f_219849_ + w f_219850_ + x f_219851_ + y f_219852_ + z f_219853_ + ()V + static + (Ljava/lang/String;)V + 0 o p_37997_ + a ()Ljava/lang/String; m_37998_ + a (Ljava/lang/String;)Lbzz; m_37999_ + static + 0 o p_38000_ + equals (Ljava/lang/Object;)Z equals + 0 o p_38002_ + hashCode ()I hashCode + toString ()Ljava/lang/String; toString +c com/mojang/math/Divisor + a f_252516_ + b f_252539_ + c f_252455_ + d f_252404_ + e f_252437_ + (II)V + 0 o p_254018_ + 1 o p_254504_ + a (II)Ljava/lang/Iterable; m_253068_ + static + 0 o p_254381_ + 1 o p_254129_ + b (II)Ljava/util/Iterator; m_253093_ + static + 0 o p_254215_ + 1 o p_254151_ + hasNext ()Z hasNext + nextInt ()I nextInt +ca net/minecraft/advancements/critereon/ItemUsedOnLocationTrigger + a f_285601_ + (Lacq;)V + 0 o p_286779_ + a (Laig;Lgu;Lcfz;)V m_285767_ + 0 o p_286813_ + 1 o p_286625_ + 2 o p_286620_ + a ()Lacq; m_7295_ + a (Ldzk;Lca$a;)Z m_285985_ + static + 0 o p_286482_ + 1 o p_286596_ + a (Lcom/google/gson/JsonObject;Lba;Lbe;)Lca$a; m_7214_ + 0 o p_286301_ + 1 o p_286748_ + 2 o p_286322_ + b (Lcom/google/gson/JsonObject;Lba;Lbe;)Lar; m_7214_ + 0 o p_286237_ + 1 o p_286508_ + 2 o p_286513_ +ca$a net/minecraft/advancements/critereon/ItemUsedOnLocationTrigger$TriggerInstance + a f_285570_ + (Lacq;Lba;Lba;)V + 0 o p_286265_ + 1 o p_286333_ + 2 o p_286319_ + a (Lcpn;)Lca$a; m_286031_ + static + 0 o p_286530_ + a (Lch$a;Lbz$a;)Lca$a; m_285945_ + static + 0 o p_286808_ + 1 o p_286486_ + a (Lct;)Lcom/google/gson/JsonObject; m_7683_ + 0 o p_286870_ + a ([Leck$a;)Lca$a; m_285745_ + static + 0 o p_286365_ + a (I)[Leck; m_286091_ + static + 0 o p_286827_ + a (Ldzk;)Z m_285898_ + 0 o p_286800_ + a (Lch$a;Lbz$a;Lacq;)Lca$a; m_285996_ + static + 0 o p_286740_ + 1 o p_286777_ + 2 o p_286742_ + b (Lch$a;Lbz$a;)Lca$a; m_285770_ + static + 0 o p_286325_ + 1 o p_286531_ +caa net/minecraft/world/entity/schedule/Keyframe + a f_38005_ + b f_38006_ + (IF)V + 0 o p_38008_ + 1 o p_38009_ + a ()I m_38010_ + b ()F m_38011_ +cab net/minecraft/world/entity/schedule/Schedule + a f_150241_ + b f_150242_ + c f_38012_ + d f_38013_ + e f_38014_ + f f_38015_ + g f_38016_ + ()V + static + ()V + a (ILjava/util/Map$Entry;)D m_38021_ + static + 0 o p_38022_ + 1 o p_38023_ + a (I)Lbzz; m_38019_ + 0 o p_38020_ + a (Lbzz;)V m_38024_ + 0 o p_38025_ + a (Ljava/lang/String;)Lcac; m_38029_ + static + 0 o p_38030_ + a (Lbzz;Ljava/util/Map$Entry;)Z m_38026_ + static + 0 o p_38027_ + 1 o p_38028_ + b (Lbzz;)Lcad; m_38031_ + 0 o p_38032_ + c (Lbzz;)Ljava/util/List; m_38033_ + 0 o p_38034_ +cac net/minecraft/world/entity/schedule/ScheduleBuilder + a f_38035_ + b f_38036_ + (Lcab;)V + 0 o p_38038_ + a (Lcac$a;)V m_38043_ + 0 o p_38044_ + a (ILbzz;)Lcac; m_38040_ + 0 o p_38041_ + 1 o p_38042_ + a (Lcac$a;Lcad;)V m_150243_ + static + 0 o p_150244_ + 1 o p_150245_ + a ()Lcab; m_38039_ +cac$a net/minecraft/world/entity/schedule/ScheduleBuilder$ActivityTransition + a f_38048_ + b f_38049_ + (ILbzz;)V + 0 o p_38051_ + 1 o p_38052_ + a ()I m_38053_ + b ()Lbzz; m_38054_ +cad net/minecraft/world/entity/schedule/Timeline + a f_38055_ + b f_38056_ + ()V + a (Lit/unimi/dsi/fastutil/ints/Int2ObjectSortedMap;Lcaa;)V m_38063_ + static + 0 o p_38064_ + 1 o p_38065_ + a (I)F m_38058_ + 0 o p_38059_ + a ()Lcom/google/common/collect/ImmutableList; m_150246_ + a (Ljava/util/Collection;)Lcad; m_150247_ + 0 o p_150248_ + a (IF)Lcad; m_38060_ + 0 o p_38061_ + 1 o p_38062_ + b ()V m_38066_ +cae net/minecraft/world/entity/schedule/package-info +caf net/minecraft/world/entity/vehicle/AbstractMinecart + b f_150249_ + c f_38079_ + d f_38080_ + e f_38081_ + f f_38082_ + g f_38083_ + h f_38084_ + i f_38067_ + j f_38068_ + k f_287786_ + l f_38069_ + m f_38070_ + n f_38071_ + o f_38072_ + p f_38073_ + q f_38074_ + r f_38075_ + s f_38076_ + t f_38077_ + u f_38078_ + ()V + static + (Lbfn;Lcmm;DDD)V + 0 o p_38090_ + 1 o p_38091_ + 2 o p_38092_ + 3 o p_38093_ + 4 o p_38094_ + (Lbfn;Lcmm;)V + 0 o p_38087_ + 1 o p_38088_ + a (IIIZ)V m_6025_ + 0 o p_38111_ + 1 o p_38112_ + 2 o p_38113_ + 3 o p_38114_ + a (Lqr;)V m_7378_ + 0 o p_38137_ + a (Z)V m_38138_ + 0 o p_38139_ + a (DDDFFIZ)V m_6453_ + 0 o p_38102_ + 1 o p_38103_ + 2 o p_38104_ + 3 o p_38105_ + 4 o p_38106_ + 5 o p_38107_ + 6 o p_38108_ + a (Lben;)V m_7617_ + 0 o p_38115_ + a (Lgu;)Z m_38129_ + 0 o p_38130_ + a (Lben;F)Z m_6469_ + 0 o p_38117_ + 1 o p_38118_ + a (F)V m_38109_ + 0 o p_38110_ + a (Lha$a;Ll$a;)Leei; m_7643_ + 0 o p_38132_ + 1 o p_38133_ + a (Lddf;)Lcom/mojang/datafixers/util/Pair; m_38125_ + static + 0 o p_38126_ + a (Lgu$a;)Lefb; m_289170_ + 0 o p_289496_ + a (Ljava/util/EnumMap;)V m_38134_ + static + 0 o p_38135_ + a (Lcmm;DDDLcaf$a;)Lcaf; m_38119_ + static + 0 o p_38120_ + 1 o p_38121_ + 2 o p_38122_ + 3 o p_38123_ + 4 o p_38124_ + a (DDDD)Leei; m_38096_ + 0 o p_38097_ + 1 o p_38098_ + 2 o p_38099_ + 3 o p_38100_ + aH ()F m_6041_ + aS ()Lbfj$b; m_142319_ + a_ ()V m_8097_ + b (Lbfz;)Leei; m_7688_ + 0 o p_38145_ + b (Lqr;)V m_7380_ + 0 o p_38151_ + b (Lgu;)Lefb; m_289169_ + 0 o p_289495_ + bo ()Z m_6087_ + bp ()Z m_6094_ + bx ()D m_6048_ + c (I)V m_38154_ + 0 o p_38155_ + c (Lgu;Ldcb;)V m_6401_ + 0 o p_38156_ + 1 o p_38157_ + c (Ldcb;)V m_38146_ + 0 o p_38147_ + cC ()Lha; m_6374_ + cc ()Z m_288188_ + d (I)V m_38160_ + 0 o p_38161_ + dv ()Lcfz; m_142340_ + g (Lbfj;)V m_7334_ + 0 o p_38165_ + h (Lbfj;)Z m_7337_ + 0 o p_38168_ + j ()Lcfu; m_213728_ + j_ ()Leed; m_6921_ + k ()D m_7097_ + l (DDD)V m_6001_ + 0 o p_38171_ + 1 o p_38172_ + 2 o p_38173_ + l ()V m_8119_ + m (I)V m_38174_ + 0 o p_38175_ + m (F)V m_6053_ + 0 o p_265349_ + o ()V m_38163_ + p ()V m_7114_ + q (DDD)Leei; m_38179_ + 0 o p_38180_ + 1 o p_38181_ + 2 o p_38182_ + q ()F m_38169_ + r ()I m_38176_ + s ()I m_38177_ + t ()Lcaf$a; m_6064_ + v ()Ldcb; m_38178_ + w ()Ldcb; m_6390_ + x ()I m_38183_ + y ()I m_7144_ + z ()Z m_38184_ +caf$1 net/minecraft/world/entity/vehicle/AbstractMinecart$1 + a f_38185_ + b f_150252_ + ()V + static +caf$a net/minecraft/world/entity/vehicle/AbstractMinecart$Type + a RIDEABLE + b CHEST + c FURNACE + d TNT + e SPAWNER + f HOPPER + g COMMAND_BLOCK + h $VALUES + ()V + static + (Ljava/lang/String;I)V + 0 o p_38197_ + 1 o p_38198_ + a ()[Lcaf$a; m_150253_ + static + valueOf (Ljava/lang/String;)Lcaf$a; valueOf + static + 0 o p_38200_ + values ()[Lcaf$a; values + static +cag net/minecraft/world/entity/vehicle/AbstractMinecartContainer + c f_38202_ + d f_38204_ + e f_38205_ + (Lbfn;DDDLcmm;)V + 0 o p_38207_ + 1 o p_38208_ + 2 o p_38209_ + 3 o p_38210_ + 4 o p_38211_ + (Lbfn;Lcmm;)V + 0 o p_38213_ + 1 o p_38214_ + A ()Lacq; m_214142_ + C ()J m_213803_ + D ()Lhn; m_213659_ + E ()V m_213775_ + a (Lqr;)V m_7378_ + 0 o p_38235_ + a (ILbyn;)Lcbf; m_7402_ + 0 o p_38222_ + 1 o p_38223_ + a (Lben;)V m_7617_ + 0 o p_38228_ + a (Lbyo;)Z m_6542_ + 0 o p_38230_ + a (II)Lcfz; m_7407_ + 0 o p_38220_ + 1 o p_38221_ + a ()V m_6211_ + a (ILcfz;)V m_6836_ + 0 o p_38225_ + 1 o p_38226_ + a (Lbfj$c;)V m_142687_ + 0 o p_150255_ + a (I)Lcfz; m_8020_ + 0 o p_38218_ + a (Lbyo;Lbdw;)Lbdx; m_6096_ + 0 o p_38232_ + 1 o p_38233_ + a (Lacq;J)V m_38236_ + 0 o p_38237_ + 1 o p_38238_ + a (Lacq;)V m_214199_ + 0 o p_219859_ + a (J)V m_214065_ + 0 o p_219857_ + a_ (I)Lbgs; m_141942_ + 0 o p_150257_ + b (Lqr;)V m_7380_ + 0 o p_38248_ + b (I)Lcfz; m_8016_ + 0 o p_38244_ + createMenu (ILbyn;Lbyo;)Lcbf; m_7208_ + 0 o p_38251_ + 1 o p_38252_ + 2 o p_38253_ + e ()V m_6596_ + p ()V m_7114_ +cah net/minecraft/world/entity/vehicle/Boat + aD f_38270_ + aE f_38271_ + aF f_38272_ + aG f_38273_ + aH f_38274_ + aI f_38275_ + aJ f_38276_ + aK f_38277_ + aL f_38278_ + aM f_38279_ + aN f_38280_ + aO f_38281_ + aP f_38257_ + aQ f_38258_ + aR f_38259_ + aS f_38260_ + aT f_38261_ + b f_150268_ + c f_150269_ + d f_150270_ + e f_150271_ + f f_38282_ + g f_38283_ + h f_38284_ + i f_38285_ + j f_38286_ + k f_38287_ + l f_38262_ + m f_150266_ + n f_150267_ + o f_38263_ + p f_38264_ + q f_38265_ + r f_38266_ + s f_38267_ + t f_38268_ + u f_38269_ + ()V + static + (Lbfn;Lcmm;)V + 0 o p_38290_ + 1 o p_38291_ + (Lcmm;DDD)V + 0 o p_38293_ + 1 o p_38294_ + 2 o p_38295_ + 3 o p_38296_ + A ()Z m_38393_ + C ()Lcah$a; m_38394_ + D ()V m_38395_ + E ()V m_38396_ + F ()I m_38397_ + a (ZZZZ)V m_38342_ + 0 o p_38343_ + 1 o p_38344_ + 2 o p_38345_ + 3 o p_38346_ + a (Lqr;)V m_7378_ + 0 o p_38338_ + a (DDDFFIZ)V m_6453_ + 0 o p_38299_ + 1 o p_38300_ + 2 o p_38301_ + 3 o p_38302_ + 4 o p_38303_ + 5 o p_38304_ + 6 o p_38305_ + a (ZZ)V m_38339_ + 0 o p_38340_ + 1 o p_38341_ + a (Lben;)V m_213560_ + 0 o p_219862_ + a (Lben;F)Z m_6469_ + 0 o p_38319_ + 1 o p_38320_ + a (F)V m_38311_ + 0 o p_38312_ + a (Ljava/lang/Object;)V m_28464_ + 0 o p_262627_ + a (Lbgl;Lbfk;)F m_6380_ + 0 o p_38327_ + 1 o p_38328_ + a (Lbfj;Lbfj$a;)V m_19956_ + 0 o p_289552_ + 1 o p_289571_ + a (Lha$a;Ll$a;)Leei; m_7643_ + 0 o p_38335_ + 1 o p_38336_ + a (IF)F m_38315_ + 0 o p_38316_ + 1 o p_38317_ + a (Lcah$b;)V m_28464_ + 0 o p_38333_ + a (Lbfj;)Z m_271938_ + 0 o p_273171_ + a (Lbyo;Lbdw;)Lbdx; m_6096_ + 0 o p_38330_ + 1 o p_38331_ + a (Lbfj;Lbfj;)Z m_38323_ + static + 0 o p_38324_ + 1 o p_38325_ + a (DZLdcb;Lgu;)V m_7840_ + 0 o p_38307_ + 1 o p_38308_ + 2 o p_38309_ + 3 o p_38310_ + aS ()Lbfj$b; m_142319_ + aZ ()Z m_5842_ + a_ ()V m_8097_ + b (Lbfz;)Leei; m_7688_ + 0 o p_38357_ + b (Lqr;)V m_7380_ + 0 o p_38359_ + b (Lbfj;)V m_38321_ + 0 o p_38322_ + b (I)V m_38366_ + 0 o p_38367_ + bo ()Z m_6087_ + bp ()Z m_6094_ + bu ()Z m_5829_ + bx ()D m_6048_ + c (I)Z m_38313_ + 0 o p_38314_ + c (Lbfj;)Z m_150273_ + static + 0 o p_150274_ + c ()Ljava/lang/Object; m_28554_ + cC ()Lha; m_6374_ + cL ()Lbfz; m_6688_ + d (I)V m_38354_ + 0 o p_38355_ + dv ()Lcfz; m_142340_ + g (Lbfj;)V m_7334_ + 0 o p_38373_ + h (Lbfj;)Z m_7337_ + 0 o p_38376_ + j (Lbfj;)V m_7340_ + 0 o p_38383_ + j ()Lcfu; m_38369_ + k (Z)V m_6845_ + 0 o p_38381_ + k ()Lamg; m_38370_ + l ()V m_8119_ + m (I)V m_38362_ + 0 o p_38363_ + m (F)V m_6053_ + 0 o p_265761_ + o ()F m_38371_ + o (Lbfj;)Z m_7310_ + 0 o p_38390_ + p ()F m_38377_ + q ()F m_213802_ + r ()F m_38384_ + s ()I m_38385_ + s (F)F m_38352_ + 0 o p_38353_ + t ()I m_38386_ + v ()Lcah$b; m_28554_ + w ()I m_213801_ + x ()V m_38388_ + y ()V m_38391_ + z ()Lcah$a; m_38392_ +cah$1 net/minecraft/world/entity/vehicle/Boat$1 + a f_38398_ + b f_38399_ + ()V + static +cah$a net/minecraft/world/entity/vehicle/Boat$Status + a IN_WATER + b UNDER_WATER + c UNDER_FLOWING_WATER + d ON_LAND + e IN_AIR + f $VALUES + ()V + static + (Ljava/lang/String;I)V + 0 o p_38409_ + 1 o p_38410_ + a ()[Lcah$a; m_150276_ + static + valueOf (Ljava/lang/String;)Lcah$a; valueOf + static + 0 o p_38412_ + values ()[Lcah$a; values + static +cah$b net/minecraft/world/entity/vehicle/Boat$Type + a OAK + b SPRUCE + c BIRCH + d JUNGLE + e ACACIA + f CHERRY + g DARK_OAK + h MANGROVE + i BAMBOO + j f_262275_ + k f_38420_ + l f_38421_ + m f_262735_ + n $VALUES + ()V + static + (Ljava/lang/String;ILcpn;Ljava/lang/String;)V + 0 o p_38425_ + 1 o p_38426_ + 2 o p_38427_ + 3 o p_38428_ + a ()Ljava/lang/String; m_38429_ + a (Ljava/lang/String;)Lcah$b; m_38432_ + static + 0 o p_38433_ + a (I)Lcah$b; m_38430_ + static + 0 o p_38431_ + b ()Lcpn; m_38434_ + c ()Ljava/lang/String; m_7912_ + d ()[Lcah$b; m_150277_ + static + toString ()Ljava/lang/String; toString + valueOf (Ljava/lang/String;)Lcah$b; valueOf + static + 0 o p_38437_ + values ()[Lcah$b; values + static +cai net/minecraft/world/entity/vehicle/ChestBoat + f f_219867_ + g f_219864_ + h f_219865_ + i f_219866_ + (Lcmm;DDD)V + 0 o p_219872_ + 1 o p_219873_ + 2 o p_219874_ + 3 o p_219875_ + (Lbfn;Lcmm;)V + 0 o p_219869_ + 1 o p_219870_ + A ()Lacq; m_214142_ + C ()J m_213803_ + D ()Lhn; m_213659_ + E ()V m_213775_ + a (Lqr;)V m_7378_ + 0 o p_219901_ + a (Lben;)V m_213560_ + 0 o p_219892_ + a (Lbyo;)Z m_6542_ + 0 o p_219896_ + a ()V m_6211_ + a (II)Lcfz; m_7407_ + 0 o p_219882_ + 1 o p_219883_ + a (ILcfz;)V m_6836_ + 0 o p_219885_ + 1 o p_219886_ + a (Lbfj$c;)V m_142687_ + 0 o p_219894_ + a (I)Lcfz; m_8020_ + 0 o p_219880_ + a (Lbyo;Lbdw;)Lbdx; m_6096_ + 0 o p_219898_ + 1 o p_219899_ + a (Lacq;)V m_214199_ + 0 o p_219890_ + a (J)V m_214065_ + 0 o p_219888_ + a_ (I)Lbgs; m_141942_ + 0 o p_219918_ + b (Lbyo;)V m_213583_ + 0 o p_219906_ + b (Lqr;)V m_7380_ + 0 o p_219908_ + b ()I m_6643_ + b (I)Lcfz; m_8016_ + 0 o p_219904_ + c (Lbyo;)V m_5785_ + 0 o p_270286_ + createMenu (ILbyn;Lbyo;)Lcbf; m_7208_ + 0 o p_219910_ + 1 o p_219911_ + 2 o p_219912_ + e (Lbyo;)V m_219913_ + 0 o p_219914_ + e ()V m_6596_ + j ()Lcfu; m_38369_ + q ()F m_213802_ + w ()I m_213801_ +cai$1 net/minecraft/world/entity/vehicle/ChestBoat$1 + a f_219923_ + ()V + static +caj net/minecraft/world/entity/vehicle/ContainerEntity + A ()Lacq; m_214142_ + C ()J m_213803_ + D ()Lhn; m_213659_ + E ()V m_213775_ + a (Lben;Lcmm;Lbfj;)V m_219927_ + 0 o p_219928_ + 1 o p_219929_ + 2 o p_219930_ + a (Lacq;)V m_214199_ + 0 o p_219926_ + a (J)V m_214065_ + 0 o p_219925_ + ab_ ()Z m_7983_ + b (II)Lcfz; m_219936_ + 0 o p_219937_ + 1 o p_219938_ + b_ (Lqr;)V m_219934_ + 0 o p_219935_ + c (Lqr;)V m_219943_ + 0 o p_219944_ + c (ILcfz;)V m_219940_ + 0 o p_219941_ + 1 o p_219942_ + c_ (Lbyo;)Lbdx; m_268996_ + 0 o p_270068_ + dD ()Z m_213877_ + dI ()Lcmm; m_9236_ + dg ()Leei; m_20182_ + e_ (I)Lcfz; m_219945_ + 0 o p_219946_ + f ()V m_219953_ + f (Lbyo;)V m_219949_ + 0 o p_219950_ + f_ (I)Lcfz; m_219947_ + 0 o p_219948_ + g (Lbyo;)Z m_219954_ + 0 o p_219955_ + g ()Z m_219956_ + g_ (I)Lbgs; m_219951_ + 0 o p_219952_ +caj$1 net/minecraft/world/entity/vehicle/ContainerEntity$1 + a f_219957_ + c f_219958_ + (Lcaj;I)V + 0 o p_219960_ + 1 o p_219961_ + a ()Lcfz; m_142196_ + a (Lcfz;)Z m_142104_ + 0 o p_219964_ +cak net/minecraft/world/entity/vehicle/DismountHelper + ()V + a (Lbfn;Lclw;Lgu;Z)Leei; m_38441_ + static + 0 o p_38442_ + 1 o p_38443_ + 2 o p_38444_ + 3 o p_38445_ + a (Lgu;ILjava/util/function/Function;)D m_38463_ + static + 0 o p_38464_ + 1 o p_38465_ + 2 o p_38466_ + a (D)Z m_38439_ + static + 0 o p_38440_ + a (Lclw;Lgu;)Lefb; m_38460_ + static + 0 o p_38461_ + 1 o p_38462_ + a (Lclw;Lbfz;Leed;)Z m_38456_ + static + 0 o p_38457_ + 1 o p_38458_ + 2 o p_38459_ + a (Lcls;Lgu;)Lefb; m_38446_ + static + 0 o p_38447_ + 1 o p_38448_ + a (Lclw;Leei;Lbfz;Lbgl;)Z m_150279_ + static + 0 o p_150280_ + 1 o p_150281_ + 2 o p_150282_ + 3 o p_150283_ + a (Lha;)[[I m_38467_ + static + 0 o p_38468_ +cal net/minecraft/world/entity/vehicle/Minecart + (Lbfn;Lcmm;)V + 0 o p_38470_ + 1 o p_38471_ + (Lcmm;DDD)V + 0 o p_38473_ + 1 o p_38474_ + 2 o p_38475_ + 3 o p_38476_ + a (IIIZ)V m_6025_ + 0 o p_38478_ + 1 o p_38479_ + 2 o p_38480_ + 3 o p_38481_ + a (Lbyo;Lbdw;)Lbdx; m_6096_ + 0 o p_38483_ + 1 o p_38484_ + j ()Lcfu; m_213728_ + t ()Lcaf$a; m_6064_ +cam net/minecraft/world/entity/vehicle/MinecartChest + (Lbfn;Lcmm;)V + 0 o p_38487_ + 1 o p_38488_ + (Lcmm;DDD)V + 0 o p_38490_ + 1 o p_38491_ + 2 o p_38492_ + 3 o p_38493_ + a (Lbyo;Lbdw;)Lbdx; m_6096_ + 0 o p_270398_ + 1 o p_270576_ + a (ILbyn;)Lcbf; m_7402_ + 0 o p_38496_ + 1 o p_38497_ + b ()I m_6643_ + c (Lbyo;)V m_5785_ + 0 o p_270111_ + j ()Lcfu; m_213728_ + t ()Lcaf$a; m_6064_ + w ()Ldcb; m_6390_ + y ()I m_7144_ +can net/minecraft/world/entity/vehicle/MinecartCommandBlock + c f_38503_ + d f_38504_ + e f_38505_ + f f_150284_ + g f_38506_ + ()V + static + (Lbfn;Lcmm;)V + 0 o p_38509_ + 1 o p_38510_ + (Lcmm;DDD)V + 0 o p_38512_ + 1 o p_38513_ + 2 o p_38514_ + 3 o p_38515_ + A ()Lcln; m_38534_ + a (IIIZ)V m_6025_ + 0 o p_38517_ + 1 o p_38518_ + 2 o p_38519_ + 3 o p_38520_ + a (Lqr;)V m_7378_ + 0 o p_38525_ + a (Laby;)V m_7350_ + 0 o p_38527_ + a (Lbyo;Lbdw;)Lbdx; m_6096_ + 0 o p_38522_ + 1 o p_38523_ + a_ ()V m_8097_ + b (Lqr;)V m_7380_ + 0 o p_38529_ + cK ()Z m_6127_ + j ()Lcfu; m_213728_ + t ()Lcaf$a; m_6064_ + w ()Ldcb; m_6390_ +can$a net/minecraft/world/entity/vehicle/MinecartCommandBlock$MinecartCommandBase + b f_38537_ + (Lcan;)V + 0 o p_38539_ + e ()Laif; m_5991_ + f ()V m_7368_ + g ()Leei; m_6607_ + h ()Lcan; m_38543_ + i ()Lds; m_6712_ + j ()Z m_288209_ +cao net/minecraft/world/entity/vehicle/MinecartFurnace + c f_38545_ + d f_38546_ + e f_38547_ + f f_38548_ + g f_38549_ + ()V + static + (Lbfn;Lcmm;)V + 0 o p_38552_ + 1 o p_38553_ + (Lcmm;DDD)V + 0 o p_38555_ + 1 o p_38556_ + 2 o p_38557_ + 3 o p_38558_ + A ()Z m_38579_ + a (Lqr;)V m_7378_ + 0 o p_38565_ + a (Lbyo;Lbdw;)Lbdx; m_6096_ + 0 o p_38562_ + 1 o p_38563_ + a_ ()V m_8097_ + b (Lqr;)V m_7380_ + 0 o p_38567_ + c (Lgu;Ldcb;)V m_6401_ + 0 o p_38569_ + 1 o p_38570_ + j ()Lcfu; m_213728_ + k ()D m_7097_ + l ()V m_8119_ + p (Z)V m_38576_ + 0 o p_38577_ + p ()V m_7114_ + t ()Lcaf$a; m_6064_ + w ()Ldcb; m_6390_ +cap net/minecraft/world/entity/vehicle/MinecartHopper + f f_38580_ + (Lbfn;Lcmm;)V + 0 o p_38584_ + 1 o p_38585_ + (Lcmm;DDD)V + 0 o p_38587_ + 1 o p_38588_ + 2 o p_38589_ + 3 o p_38590_ + F ()Z m_38617_ + G ()D m_6343_ + I ()D m_6358_ + J ()D m_6446_ + K ()Z m_38592_ + a (IIIZ)V m_6025_ + 0 o p_38596_ + 1 o p_38597_ + 2 o p_38598_ + 3 o p_38599_ + a (Lqr;)V m_7378_ + 0 o p_38606_ + a (ILbyn;)Lcbf; m_7402_ + 0 o p_38601_ + 1 o p_38602_ + b (Lqr;)V m_7380_ + 0 o p_38608_ + b ()I m_6643_ + j ()Lcfu; m_213728_ + l ()V m_8119_ + p (Z)V m_38613_ + 0 o p_38614_ + t ()Lcaf$a; m_6064_ + w ()Ldcb; m_6390_ + y ()I m_7144_ +caq net/minecraft/world/entity/vehicle/MinecartSpawner + c f_38621_ + d f_150333_ + (Lbfn;Lcmm;)V + 0 o p_38623_ + 1 o p_38624_ + (Lcmm;DDD)V + 0 o p_38626_ + 1 o p_38627_ + 2 o p_38628_ + 3 o p_38629_ + A ()Lclo; m_150340_ + a (Lqr;)V m_7378_ + 0 o p_38633_ + b (Lqr;)V m_7380_ + 0 o p_38635_ + b (B)V m_7822_ + 0 o p_38631_ + b (Lcmm;)Ljava/lang/Runnable; m_150334_ + 0 o p_150335_ + c (Lcmm;)V m_289172_ + 0 o p_289498_ + cK ()Z m_6127_ + d (Lcmm;)V m_289171_ + 0 o p_289497_ + j ()Lcfu; m_213728_ + l ()V m_8119_ + t ()Lcaf$a; m_6064_ + w ()Ldcb; m_6390_ +caq$1 net/minecraft/world/entity/vehicle/MinecartSpawner$1 + a f_38640_ + (Lcaq;)V + 0 o p_38642_ + a (Lcmm;Lgu;I)V m_142523_ + 0 o p_150342_ + 1 o p_150343_ + 2 o p_150344_ +car net/minecraft/world/entity/vehicle/MinecartTNT + c f_150345_ + d f_38647_ + (Lbfn;Lcmm;)V + 0 o p_38649_ + 1 o p_38650_ + (Lcmm;DDD)V + 0 o p_38652_ + 1 o p_38653_ + 2 o p_38654_ + 3 o p_38655_ + A ()V m_38693_ + C ()I m_38694_ + D ()Z m_38695_ + a (IIIZ)V m_6025_ + 0 o p_38659_ + 1 o p_38660_ + 2 o p_38661_ + 3 o p_38662_ + a (Lben;F)Z m_6469_ + 0 o p_38666_ + 1 o p_38667_ + a (FFLben;)Z m_142535_ + 0 o p_150347_ + 1 o p_150348_ + 2 o p_150349_ + a (Lqr;)V m_7378_ + 0 o p_38682_ + a (Lben;)V m_7617_ + 0 o p_38664_ + a (Lcme;Lcls;Lgu;Ldcb;F)Z m_7349_ + 0 o p_38669_ + 1 o p_38670_ + 2 o p_38671_ + 3 o p_38672_ + 4 o p_38673_ + a (Lcme;Lcls;Lgu;Ldcb;Ldxe;F)F m_7077_ + 0 o p_38675_ + 1 o p_38676_ + 2 o p_38677_ + 3 o p_38678_ + 4 o p_38679_ + 5 o p_38680_ + a (Lben;D)V m_257440_ + 0 o p_259539_ + 1 o p_260287_ + b (Lqr;)V m_7380_ + 0 o p_38687_ + b (B)V m_7822_ + 0 o p_38657_ + h (D)V m_38688_ + 0 o p_38689_ + j ()Lcfu; m_213728_ + l ()V m_8119_ + t ()Lcaf$a; m_6064_ + w ()Ldcb; m_6390_ +cas net/minecraft/world/entity/vehicle/package-info +cat net/minecraft/world/flag/FeatureElement + bv f_244051_ + ()V + static + a (Lcaw;)Z m_245993_ + 0 o p_249172_ + m ()Lcaw; m_245183_ +cau net/minecraft/world/flag/FeatureFlag + a f_243952_ + b f_244012_ + (Lcax;I)V + 0 o p_249115_ + 1 o p_251067_ +cav net/minecraft/world/flag/FeatureFlagRegistry + a f_244528_ + b f_244444_ + c f_244560_ + d f_243770_ + ()V + static + (Lcax;Lcaw;Ljava/util/Map;)V + 0 o p_249715_ + 1 o p_249277_ + 2 o p_249557_ + a (Lcaw;Ljava/util/Set;Lacq;Lcau;)V m_245840_ + static + 0 o p_249513_ + 1 o p_251781_ + 2 o p_252018_ + 3 o p_250772_ + a (Ljava/util/List;)Lcom/mojang/serialization/DataResult; m_274257_ + 0 o p_275144_ + a (Lcaw;)Z m_246363_ + 0 o p_251939_ + a (Ljava/lang/Iterable;)Lcaw; m_247416_ + 0 o p_250759_ + a ([Lcau;)Lcaw; m_245769_ + 0 o p_252295_ + a (Ljava/lang/Iterable;Ljava/util/function/Consumer;)Lcaw; m_247021_ + 0 o p_251769_ + 1 o p_251521_ + a ()Lcaw; m_247355_ + a (Lacq;)V m_245474_ + static + 0 o p_251224_ + a (Ljava/util/Set;)Ljava/lang/String; m_274256_ + static + 0 o p_275143_ + b (Lcaw;)Ljava/util/Set; m_245829_ + 0 o p_251153_ + b ()Lcom/mojang/serialization/Codec; m_245213_ + c (Lcaw;)Ljava/util/List; m_245711_ + 0 o p_249796_ +cav$a net/minecraft/world/flag/FeatureFlagRegistry$Builder + a f_243698_ + b f_244365_ + c f_244349_ + (Ljava/lang/String;)V + 0 o p_251576_ + a ()Lcav; m_245707_ + a (Lacq;)Lcau; m_247497_ + 0 o p_250098_ + a (Ljava/lang/String;)Lcau; m_246015_ + 0 o p_251782_ +caw net/minecraft/world/flag/FeatureFlagSet + a f_244635_ + b f_244513_ + c f_243923_ + d f_243922_ + ()V + static + (Lcax;J)V + 0 o p_250433_ + 1 o p_251523_ + a (Lcau;)Lcaw; m_247091_ + static + 0 o p_252331_ + a ()Lcaw; m_246902_ + static + a (Lcau;[Lcau;)Lcaw; m_245702_ + static + 0 o p_251008_ + 1 o p_249805_ + a (Lcax;Ljava/util/Collection;)Lcaw; m_247438_ + static + 0 o p_251573_ + 1 o p_251037_ + a (Lcax;JLjava/lang/Iterable;)J m_245120_ + static + 0 o p_249684_ + 1 o p_250982_ + 2 o p_251734_ + a (Lcaw;)Z m_247715_ + 0 o p_249164_ + b (Lcau;)Z m_245372_ + 0 o p_249521_ + b (Lcaw;)Lcaw; m_246699_ + 0 o p_251527_ + equals (Ljava/lang/Object;)Z equals + 0 o p_248691_ + hashCode ()I hashCode +cax net/minecraft/world/flag/FeatureFlagUniverse + a f_243740_ + (Ljava/lang/String;)V + 0 o p_249484_ + toString ()Ljava/lang/String; toString +cay net/minecraft/world/flag/FeatureFlags + a f_244571_ + b f_244112_ + c f_244280_ + d f_244298_ + e f_244377_ + f f_244332_ + ()V + static + ()V + a (Ljava/util/Set;Lacq;)Z m_247097_ + static + 0 o p_250136_ + 1 o p_251831_ + a (Lcaw;Lcaw;)Ljava/lang/String; m_245229_ + static + 0 o p_250581_ + 1 o p_250326_ + a (Lcav;Lcaw;Lcaw;)Ljava/lang/String; m_247250_ + static + 0 o p_249213_ + 1 o p_250429_ + 2 o p_250547_ + a (Lcaw;)Z m_246811_ + static + 0 o p_249170_ +caz net/minecraft/world/flag/package-info +cb net/minecraft/advancements/critereon/KilledByCrossbowTrigger + a f_46867_ + ()V + static + ()V + a ()Lacq; m_7295_ + a (Ljava/util/List;Ljava/util/Set;Lcb$a;)Z m_46878_ + static + 0 o p_46879_ + 1 o p_46880_ + 2 o p_46881_ + a (Lcom/google/gson/JsonObject;Lba;Lbe;)Lcb$a; m_7214_ + 0 o p_286238_ + 1 o p_286227_ + 2 o p_286919_ + a (Laig;Ljava/util/Collection;)V m_46871_ + 0 o p_46872_ + 1 o p_46873_ + b (Lcom/google/gson/JsonObject;Lba;Lbe;)Lar; m_7214_ + 0 o p_286674_ + 1 o p_286689_ + 2 o p_286778_ +cb$a net/minecraft/advancements/critereon/KilledByCrossbowTrigger$TriggerInstance + a f_46887_ + b f_46888_ + (Lba;[Lba;Lcj$d;)V + 0 o p_286398_ + 1 o p_286510_ + 2 o p_286571_ + a (Lct;)Lcom/google/gson/JsonObject; m_7683_ + 0 o p_46896_ + a (Lcj$d;)Lcb$a; m_46893_ + static + 0 o p_46894_ + a (Ljava/util/Collection;I)Z m_46897_ + 0 o p_46898_ + 1 o p_46899_ + a ([Lbo$a;)Lcb$a; m_46900_ + static + 0 o p_46901_ +cba net/minecraft/world/food/FoodConstants + a f_150350_ + b f_150351_ + c f_150352_ + d f_150353_ + e f_150354_ + f f_150355_ + g f_150356_ + h f_150357_ + i f_150358_ + j f_150359_ + k f_150360_ + l f_150361_ + m f_150362_ + n f_150363_ + o f_150364_ + p f_150365_ + q f_150366_ + r f_150367_ + s f_150368_ + t f_150369_ + u f_150370_ + v f_150372_ + w f_150373_ + x f_150374_ + y f_150375_ + ()V +cbb net/minecraft/world/food/FoodData + a f_38696_ + b f_38697_ + c f_38698_ + d f_38699_ + e f_38700_ + ()V + a (I)V m_38705_ + 0 o p_38706_ + a (F)V m_38703_ + 0 o p_38704_ + a (IF)V m_38707_ + 0 o p_38708_ + 1 o p_38709_ + a (Lqr;)V m_38715_ + 0 o p_38716_ + a ()I m_38702_ + a (Lcfu;Lcfz;)V m_38712_ + 0 o p_38713_ + 1 o p_38714_ + a (Lbyo;)V m_38710_ + 0 o p_38711_ + b (Lqr;)V m_38719_ + 0 o p_38720_ + b ()I m_150377_ + b (F)V m_38717_ + 0 o p_38718_ + c (F)V m_150378_ + 0 o p_150379_ + c ()Z m_38721_ + d ()F m_150380_ + e ()F m_38722_ +cbc net/minecraft/world/food/FoodProperties + a f_38723_ + b f_38724_ + c f_38725_ + d f_38726_ + e f_38727_ + f f_38728_ + (IFZZZLjava/util/List;)V + 0 o p_38730_ + 1 o p_38731_ + 2 o p_38732_ + 3 o p_38733_ + 4 o p_38734_ + 5 o p_38735_ + a ()I m_38744_ + b ()F m_38745_ + c ()Z m_38746_ + d ()Z m_38747_ + e ()Z m_38748_ + f ()Ljava/util/List; m_38749_ +cbc$a net/minecraft/world/food/FoodProperties$Builder + a f_38750_ + b f_38751_ + c f_38752_ + d f_38753_ + e f_38754_ + f f_38755_ + ()V + a ()Lcbc$a; m_38757_ + a (Lbfa;F)Lcbc$a; m_38762_ + 0 o p_38763_ + 1 o p_38764_ + a (I)Lcbc$a; m_38760_ + 0 o p_38761_ + a (F)Lcbc$a; m_38758_ + 0 o p_38759_ + b ()Lcbc$a; m_38765_ + c ()Lcbc$a; m_38766_ + d ()Lcbc; m_38767_ +cbd net/minecraft/world/food/Foods + A f_38797_ + B f_38798_ + C f_38799_ + D f_38800_ + E f_38801_ + F f_38802_ + G f_38803_ + H f_38804_ + I f_38805_ + J f_38806_ + K f_38807_ + L f_38808_ + M f_150381_ + N f_38809_ + a f_38810_ + b f_38811_ + c f_38812_ + d f_38813_ + e f_38814_ + f f_38815_ + g f_38816_ + h f_38817_ + i f_38818_ + j f_38819_ + k f_38820_ + l f_38821_ + m f_38822_ + n f_38823_ + o f_38824_ + p f_38825_ + q f_38826_ + r f_38827_ + s f_38828_ + t f_38829_ + u f_38830_ + v f_38831_ + w f_38832_ + x f_38833_ + y f_38834_ + z f_38835_ + ()V + static + ()V + a (I)Lcbc$a; m_150383_ + static + 0 o p_150384_ +cbe net/minecraft/world/food/package-info +cbf net/minecraft/world/inventory/AbstractContainerMenu + a f_150385_ + b f_150386_ + c f_150387_ + d f_150388_ + e f_150389_ + f f_150390_ + g f_150391_ + h f_150392_ + i f_38839_ + j f_38840_ + k f_207773_ + l f_38841_ + m f_38842_ + n f_150393_ + o f_150394_ + p f_150395_ + q f_150396_ + r f_182405_ + s f_38843_ + t f_38845_ + u f_38846_ + v f_38847_ + w f_38848_ + x f_150397_ + y f_150398_ + ()V + static + (Lcck;I)V + 0 o p_38851_ + 1 o p_38852_ + a (Lcbv;)Lcbv; m_38895_ + 0 o p_38896_ + a (Lcpn;Lbyo;Lcmm;Lgu;)Ljava/lang/Boolean; m_38913_ + static + 0 o p_38914_ + 1 o p_38915_ + 2 o p_38916_ + 3 o p_38917_ + a (II)V m_7511_ + 0 o p_38855_ + 1 o p_38856_ + a (Lbdq;)V m_6199_ + 0 o p_38868_ + a (IILcbo;Lbyo;)V m_150399_ + 0 o p_150400_ + 1 o p_150401_ + 2 o p_150402_ + 3 o p_150403_ + a (Lcfz;Lccx;)Z m_5882_ + 0 o p_38908_ + 1 o p_38909_ + a (Lcbp;I)V m_38886_ + static + 0 o p_38887_ + 1 o p_38888_ + a (ILbyo;)Z m_38862_ + static + 0 o p_38863_ + 1 o p_38864_ + a (Lcbq;Lbyo;Lcpn;)Z m_38889_ + static + 0 o p_38890_ + 1 o p_38891_ + 2 o p_38892_ + a (Lbdq;I)V m_38869_ + static + 0 o p_38870_ + 1 o p_38871_ + a (Lcbp;)V m_38884_ + 0 o p_38885_ + a (Lcfz;)V m_150422_ + 0 o p_150423_ + a (Ljava/util/Set;ILcfz;)I m_278794_ + static + 0 o p_279393_ + 1 o p_279288_ + 2 o p_279172_ + a (Lccx;Lbyo;Lcfz;)V m_150418_ + 0 o p_150419_ + 1 o p_150420_ + 2 o p_150421_ + a (Lccx;)Lccx; m_38897_ + 0 o p_38898_ + a (ILjava/util/List;Lcfz;)V m_182410_ + 0 o p_182411_ + 1 o p_182412_ + 2 o p_182413_ + a (Lbyo;)Z m_6875_ + 0 o p_38874_ + a (Lcfz;IIZ)Z m_38903_ + 0 o p_38904_ + 1 o p_38905_ + 2 o p_38906_ + 3 o p_38907_ + a (Lcbs;)V m_150416_ + 0 o p_150417_ + a (Lczn;)I m_38918_ + static + 0 o p_38919_ + a (Lbyo;Lbdq;)V m_150411_ + 0 o p_150412_ + 1 o p_150413_ + a (ILcfz;)V m_150404_ + 0 o p_150405_ + 1 o p_150406_ + a (Lbyo;Lcbn;Lccx;Lcfz;Lcfz;)Z m_246200_ + 0 o p_249615_ + 1 o p_250300_ + 2 o p_249384_ + 3 o p_251073_ + 4 o p_252026_ + a (ILcfz;Ljava/util/function/Supplier;)V m_150407_ + 0 o p_150408_ + 1 o p_150409_ + 2 o p_150410_ + a ()Lcck; m_6772_ + a (Lbyo;I)Lcfz; m_7648_ + 0 o p_38941_ + 1 o p_38942_ + a (Lccx;Lcfz;Z)Z m_38899_ + static + 0 o p_38900_ + 1 o p_38901_ + 2 o p_38902_ + a (IILcfz;)V m_182406_ + 0 o p_182407_ + 1 o p_182408_ + 2 o p_182409_ + a (I)Z m_207775_ + 0 o p_207776_ + a (Lcbr;)V m_38893_ + 0 o p_38894_ + a (Lcbf;)V m_150414_ + 0 o p_150415_ + a (Lcfz;Lccx;Lbyo;Lcfz;)V m_150424_ + static + 0 o p_150425_ + 1 o p_150426_ + 2 o p_150427_ + 3 o p_150428_ + b (Lbyo;)V m_6877_ + 0 o p_38940_ + b (Lbyo;I)Z m_6366_ + 0 o p_38875_ + 1 o p_38876_ + b (Lbdq;I)Ljava/util/OptionalInt; m_182417_ + 0 o p_182418_ + 1 o p_182419_ + b (ILcfz;Ljava/util/function/Supplier;)V m_150435_ + 0 o p_150436_ + 1 o p_150437_ + 2 o p_150438_ + b (Lcbr;)V m_38943_ + 0 o p_38944_ + b (IILcbo;Lbyo;)V m_150430_ + 0 o p_150431_ + 1 o p_150432_ + 2 o p_150433_ + 3 o p_150434_ + b (Lbdq;)I m_38938_ + static + 0 o p_38939_ + b (Lccx;)Z m_5622_ + 0 o p_38945_ + b (I)Lccx; m_38853_ + 0 o p_38854_ + b (II)I m_38930_ + static + 0 o p_38931_ + 1 o p_38932_ + b (Lcfz;)V m_142503_ + 0 o p_150439_ + b (ILcfz;)V m_182414_ + 0 o p_182415_ + 1 o p_182416_ + b ()V m_150429_ + c (I)I m_38928_ + static + 0 o p_38929_ + c (II)V m_182420_ + 0 o p_182421_ + 1 o p_182422_ + c ()Lhn; m_38927_ + d (I)I m_38947_ + static + 0 o p_38948_ + d ()V m_38946_ + d (II)V m_150440_ + 0 o p_150441_ + 1 o p_150442_ + e ()V m_182423_ + f ()V m_38951_ + g ()Lcfz; m_142621_ + h ()V m_150443_ + i ()V m_150444_ + j ()I m_182424_ + k ()I m_182425_ + l ()V m_150445_ + m ()Lbgs; m_150446_ + n ()Ljava/lang/String; m_38952_ + o ()Ljava/lang/String; m_257320_ +cbf$1 net/minecraft/world/inventory/AbstractContainerMenu$1 + a f_150447_ + (Lcbf;)V + 0 o p_150449_ + a ()Lcfz; m_142196_ + a (Lcfz;)Z m_142104_ + 0 o p_150452_ +cbg net/minecraft/world/inventory/AbstractFurnaceMenu + k f_150453_ + l f_150454_ + m f_150455_ + n f_150456_ + o f_150457_ + p f_38954_ + q f_150458_ + r f_150459_ + s f_150460_ + t f_150461_ + u f_38955_ + v f_38956_ + w f_38957_ + x f_38958_ + (Lcck;Lcjf;Lccq;ILbyn;)V + 0 o p_38960_ + 1 o p_38961_ + 2 o p_38962_ + 3 o p_38963_ + 4 o p_38964_ + (Lcck;Lcjf;Lccq;ILbyn;Lbdq;Lcbp;)V + 0 o p_38966_ + 1 o p_38967_ + 2 o p_38968_ + 3 o p_38969_ + 4 o p_38970_ + 5 o p_38971_ + 6 o p_38972_ + a (Lbyo;I)Lcfz; m_7648_ + 0 o p_38986_ + 1 o p_38987_ + a (Lbyo;)Z m_6875_ + 0 o p_38974_ + a (Lbys;)V m_5816_ + 0 o p_38976_ + a (Lcjc;)Z m_6032_ + 0 o p_38980_ + c (Lcfz;)Z m_38977_ + 0 o p_38978_ + d (Lcfz;)Z m_38988_ + 0 o p_38989_ + e (I)Z m_142157_ + 0 o p_150463_ + l ()V m_6650_ + m ()I m_6636_ + n ()I m_6635_ + o ()I m_6656_ + p ()I m_6653_ + q ()I m_38995_ + r ()I m_38996_ + s ()Z m_38997_ + t ()Lccq; m_5867_ +cbh net/minecraft/world/inventory/AnvilMenu + A f_150464_ + B f_150465_ + C f_150466_ + D f_150467_ + E f_265898_ + F f_265878_ + G f_265992_ + H f_266013_ + k f_265994_ + l f_265986_ + m f_266102_ + n f_150468_ + s f_38999_ + t f_150469_ + u f_39000_ + v f_39001_ + w f_39002_ + x f_150470_ + y f_150471_ + z f_150472_ + ()V + static + (ILbyn;)V + 0 o p_39005_ + 1 o p_39006_ + (ILbyn;Lcbq;)V + 0 o p_39008_ + 1 o p_39009_ + 2 o p_39010_ + a (Lbyo;Lcfz;)V m_142365_ + 0 o p_150474_ + 1 o p_150475_ + a (Lbyo;Lcmm;Lgu;)V m_150476_ + static + 0 o p_182427_ + 1 o p_150479_ + 2 o p_150480_ + a (Lbyo;Z)Z m_6560_ + 0 o p_39023_ + 1 o p_39024_ + a (Ldcb;)Z m_8039_ + 0 o p_39019_ + a (Ljava/lang/String;)Z m_39020_ + 0 o p_288970_ + b (Ljava/lang/String;)Ljava/lang/String; m_288226_ + static + 0 o p_288995_ + e (I)I m_39025_ + static + 0 o p_39026_ + e (Lcfz;)Z m_266136_ + static + 0 o p_266634_ + f (Lcfz;)Z m_266137_ + static + 0 o p_266635_ + l ()Lccg; m_266183_ + m ()V m_6640_ + n ()I m_39028_ +cbh$1 net/minecraft/world/inventory/AnvilMenu$1 + a f_39029_ + ()V + static +cbi net/minecraft/world/inventory/BeaconMenu + k f_150481_ + l f_150482_ + m f_150483_ + n f_150484_ + o f_150485_ + p f_150486_ + q f_150487_ + r f_39031_ + s f_39032_ + t f_39033_ + u f_39034_ + (ILbdq;)V + 0 o p_39036_ + 1 o p_39037_ + (ILbdq;Lcbp;Lcbq;)V + 0 o p_39039_ + 1 o p_39040_ + 2 o p_39041_ + 3 o p_39042_ + a (Ljava/util/Optional;Ljava/util/Optional;)V m_219972_ + 0 o p_219973_ + 1 o p_219974_ + a (Lbyo;I)Lcfz; m_7648_ + 0 o p_39051_ + 1 o p_39052_ + a (Lbyo;)Z m_6875_ + 0 o p_39047_ + a (II)V m_7511_ + 0 o p_39044_ + 1 o p_39045_ + b (Lbyo;)V m_6877_ + 0 o p_39049_ + l ()I m_39056_ + m ()Lbey; m_39057_ + n ()Lbey; m_39058_ + o ()Z m_39059_ +cbi$1 net/minecraft/world/inventory/BeaconMenu$1 + c f_39060_ + (Lcbi;I)V + 0 o p_39062_ + 1 o p_39063_ + ac_ ()I m_6893_ + b (ILcfz;)Z m_7013_ + 0 o p_39066_ + 1 o p_39067_ +cbi$a net/minecraft/world/inventory/BeaconMenu$PaymentSlot + a f_39068_ + (Lcbi;Lbdq;III)V + 0 o p_39070_ + 1 o p_39071_ + 2 o p_39072_ + 3 o p_39073_ + 4 o p_39074_ + a (Lcfz;)Z m_5857_ + 0 o p_39077_ + a ()I m_6641_ +cbj net/minecraft/world/inventory/BlastFurnaceMenu + (ILbyn;Lbdq;Lcbp;)V + 0 o p_39082_ + 1 o p_39083_ + 2 o p_39084_ + 3 o p_39085_ + (ILbyn;)V + 0 o p_39079_ + 1 o p_39080_ +cbk net/minecraft/world/inventory/BrewingStandMenu + k f_150488_ + l f_150489_ + m f_150490_ + n f_150491_ + o f_150492_ + p f_150493_ + q f_150494_ + r f_150495_ + s f_150496_ + t f_150497_ + u f_39086_ + v f_39087_ + w f_39088_ + (ILbyn;Lbdq;Lcbp;)V + 0 o p_39093_ + 1 o p_39094_ + 2 o p_39095_ + 3 o p_39096_ + (ILbyn;)V + 0 o p_39090_ + 1 o p_39091_ + a (Lbyo;I)Lcfz; m_7648_ + 0 o p_39100_ + 1 o p_39101_ + a (Lbyo;)Z m_6875_ + 0 o p_39098_ + l ()I m_39102_ + m ()I m_39103_ +cbk$a net/minecraft/world/inventory/BrewingStandMenu$FuelSlot + (Lbdq;III)V + 0 o p_39105_ + 1 o p_39106_ + 2 o p_39107_ + 3 o p_39108_ + a (Lcfz;)Z m_5857_ + 0 o p_39111_ + a ()I m_6641_ + b (Lcfz;)Z m_39112_ + static + 0 o p_39113_ +cbk$b net/minecraft/world/inventory/BrewingStandMenu$IngredientsSlot + (Lbdq;III)V + 0 o p_39115_ + 1 o p_39116_ + 2 o p_39117_ + 3 o p_39118_ + a (Lcfz;)Z m_5857_ + 0 o p_39121_ + a ()I m_6641_ +cbk$c net/minecraft/world/inventory/BrewingStandMenu$PotionSlot + (Lbdq;III)V + 0 o p_39123_ + 1 o p_39124_ + 2 o p_39125_ + 3 o p_39126_ + a (Lcfz;)Z m_5857_ + 0 o p_39132_ + a (Lbyo;Lcfz;)V m_142406_ + 0 o p_150499_ + 1 o p_150500_ + a ()I m_6641_ + b (Lcfz;)Z m_39133_ + static + 0 o p_39134_ +cbl net/minecraft/world/inventory/CartographyTableMenu + k f_150501_ + l f_150502_ + m f_150503_ + n f_39135_ + o f_150504_ + p f_150505_ + q f_150506_ + r f_150507_ + s f_39136_ + t f_39137_ + u f_39138_ + (ILbyn;)V + 0 o p_39140_ + 1 o p_39141_ + (ILbyn;Lcbq;)V + 0 o p_39143_ + 1 o p_39144_ + 2 o p_39145_ + a (Lcfz;Lcfz;Lcfz;)V m_39162_ + 0 o p_39163_ + 1 o p_39164_ + 2 o p_39165_ + a (Lcfz;Lcfz;Lcfz;Lcmm;Lgu;)V m_278586_ + 0 o p_279036_ + 1 o p_279037_ + 2 o p_279038_ + 3 o p_279039_ + 4 o p_279040_ + a (Lbyo;I)Lcfz; m_7648_ + 0 o p_39175_ + 1 o p_39176_ + a (Lbyo;)Z m_6875_ + 0 o p_39149_ + a (Lbdq;)V m_6199_ + 0 o p_39147_ + a (Lbyo;Lcmm;Lgu;)V m_39150_ + 0 o p_39151_ + 1 o p_39152_ + 2 o p_39153_ + a (Lcfz;Lccx;)Z m_5882_ + 0 o p_39160_ + 1 o p_39161_ + b (Lbyo;)V m_6877_ + 0 o p_39173_ +cbl$1 net/minecraft/world/inventory/CartographyTableMenu$1 + c f_39177_ + (Lcbl;I)V + 0 o p_39179_ + 1 o p_39180_ + e ()V m_6596_ +cbl$2 net/minecraft/world/inventory/CartographyTableMenu$2 + c f_39182_ + (Lcbl;)V + 0 o p_39184_ + e ()V m_6596_ +cbl$3 net/minecraft/world/inventory/CartographyTableMenu$3 + a f_39186_ + (Lcbl;Lbdq;III)V + 0 o p_39188_ + 1 o p_39189_ + 2 o p_39190_ + 3 o p_39191_ + 4 o p_39192_ + a (Lcfz;)Z m_5857_ + 0 o p_39194_ +cbl$4 net/minecraft/world/inventory/CartographyTableMenu$4 + a f_39195_ + (Lcbl;Lbdq;III)V + 0 o p_39197_ + 1 o p_39198_ + 2 o p_39199_ + 3 o p_39200_ + 4 o p_39201_ + a (Lcfz;)Z m_5857_ + 0 o p_39203_ +cbl$5 net/minecraft/world/inventory/CartographyTableMenu$5 + a f_39204_ + b f_39205_ + (Lcbl;Lbdq;IIILcbq;)V + 0 o p_39207_ + 1 o p_39208_ + 2 o p_39209_ + 3 o p_39210_ + 4 o p_39211_ + 5 o p_39212_ + a (Lcfz;)Z m_5857_ + 0 o p_39217_ + a (Lbyo;Lcfz;)V m_142406_ + 0 o p_150509_ + 1 o p_150510_ + a (Lcmm;Lgu;)V m_39218_ + 0 o p_39219_ + 1 o p_39220_ +cbm net/minecraft/world/inventory/ChestMenu + k f_150511_ + l f_39221_ + m f_39222_ + (Lcck;ILbyn;I)V + 0 o p_39224_ + 1 o p_39225_ + 2 o p_39226_ + 3 o p_39227_ + (Lcck;ILbyn;Lbdq;I)V + 0 o p_39229_ + 1 o p_39230_ + 2 o p_39231_ + 3 o p_39232_ + 4 o p_39233_ + a (Lbyo;I)Lcfz; m_7648_ + 0 o p_39253_ + 1 o p_39254_ + a (ILbyn;)Lcbm; m_39234_ + static + 0 o p_39235_ + 1 o p_39236_ + a (ILbyn;Lbdq;)Lcbm; m_39237_ + static + 0 o p_39238_ + 1 o p_39239_ + 2 o p_39240_ + a (Lbyo;)Z m_6875_ + 0 o p_39242_ + b (ILbyn;Lbdq;)Lcbm; m_39246_ + static + 0 o p_39247_ + 1 o p_39248_ + 2 o p_39249_ + b (Lbyo;)V m_6877_ + 0 o p_39251_ + b (ILbyn;)Lcbm; m_39243_ + static + 0 o p_39244_ + 1 o p_39245_ + c (ILbyn;)Lcbm; m_39255_ + static + 0 o p_39256_ + 1 o p_39257_ + d (ILbyn;)Lcbm; m_39258_ + static + 0 o p_39259_ + 1 o p_39260_ + e (ILbyn;)Lcbm; m_39262_ + static + 0 o p_39263_ + 1 o p_39264_ + f (ILbyn;)Lcbm; m_39266_ + static + 0 o p_39267_ + 1 o p_39268_ + l ()Lbdq; m_39261_ + m ()I m_39265_ +cbn net/minecraft/world/inventory/ClickAction + a PRIMARY + b SECONDARY + c $VALUES + ()V + static + (Ljava/lang/String;I)V + 0 o p_150517_ + 1 o p_150518_ + a ()[Lcbn; m_150519_ + static + valueOf (Ljava/lang/String;)Lcbn; valueOf + static + 0 o p_150521_ + values ()[Lcbn; values + static +cbo net/minecraft/world/inventory/ClickType + a PICKUP + b QUICK_MOVE + c SWAP + d CLONE + e THROW + f QUICK_CRAFT + g PICKUP_ALL + h $VALUES + ()V + static + (Ljava/lang/String;I)V + 0 o p_39279_ + 1 o p_39280_ + a ()[Lcbo; m_150523_ + static + valueOf (Ljava/lang/String;)Lcbo; valueOf + static + 0 o p_39282_ + values ()[Lcbo; values + static +cbp net/minecraft/world/inventory/ContainerData + a (I)I m_6413_ + 0 o p_39284_ + a (II)V m_8050_ + 0 o p_39285_ + 1 o p_39286_ + a ()I m_6499_ +cbq net/minecraft/world/inventory/ContainerLevelAccess + a f_39287_ + ()V + static + a (Ljava/util/function/BiFunction;)Ljava/util/Optional; m_6721_ + 0 o p_39298_ + a (Ljava/util/function/BiFunction;Ljava/lang/Object;)Ljava/lang/Object; m_39299_ + 0 o p_39300_ + 1 o p_39301_ + a (Ljava/util/function/BiConsumer;)V m_39292_ + 0 o p_39293_ + a (Ljava/util/function/BiConsumer;Lcmm;Lgu;)Ljava/util/Optional; m_39294_ + static + 0 o p_39295_ + 1 o p_39296_ + 2 o p_39297_ + a (Lcmm;Lgu;)Lcbq; m_39289_ + static + 0 o p_39290_ + 1 o p_39291_ +cbq$1 net/minecraft/world/inventory/ContainerLevelAccess$1 + ()V + a (Ljava/util/function/BiFunction;)Ljava/util/Optional; m_6721_ + 0 o p_39304_ +cbq$2 net/minecraft/world/inventory/ContainerLevelAccess$2 + b f_39305_ + c f_39306_ + (Lcmm;Lgu;)V + 0 o p_39308_ + 1 o p_39309_ + a (Ljava/util/function/BiFunction;)Ljava/util/Optional; m_6721_ + 0 o p_39311_ +cbr net/minecraft/world/inventory/ContainerListener + a (Lcbf;ILcfz;)V m_7934_ + 0 o p_39315_ + 1 o p_39316_ + 2 o p_39317_ + a (Lcbf;II)V m_142153_ + 0 o p_150524_ + 1 o p_150525_ + 2 o p_150526_ +cbs net/minecraft/world/inventory/ContainerSynchronizer + a (Lcbf;ILcfz;)V m_142074_ + 0 o p_150530_ + 1 o p_150531_ + 2 o p_150532_ + a (Lcbf;Lcfz;)V m_142529_ + 0 o p_150533_ + 1 o p_150534_ + a (Lcbf;Lhn;Lcfz;[I)V m_142589_ + 0 o p_150535_ + 1 o p_150536_ + 2 o p_150537_ + 3 o p_150538_ + a (Lcbf;II)V m_142145_ + 0 o p_150527_ + 1 o p_150528_ + 2 o p_150529_ +cbt net/minecraft/world/inventory/CraftingContainer + f ()I m_39347_ + g ()I m_39346_ + h ()Ljava/util/List; m_280657_ +cbu net/minecraft/world/inventory/CraftingMenu + k f_150539_ + l f_150540_ + m f_150541_ + n f_150542_ + o f_150543_ + p f_150544_ + q f_150545_ + r f_39348_ + s f_39349_ + t f_39350_ + u f_39351_ + (ILbyn;)V + 0 o p_39353_ + 1 o p_39354_ + (ILbyn;Lcbq;)V + 0 o p_39356_ + 1 o p_39357_ + 2 o p_39358_ + a (Lbyo;I)Lcfz; m_7648_ + 0 o p_39391_ + 1 o p_39392_ + a (Lbyo;Lcmm;Lgu;)V m_39369_ + 0 o p_39370_ + 1 o p_39371_ + 2 o p_39372_ + a (Lcbf;Lcmm;Lbyo;Lcbt;Lccs;)V m_150546_ + static + 0 o p_150547_ + 1 o p_150548_ + 2 o p_150549_ + 3 o p_150550_ + 4 o p_150551_ + a (Lbyo;)Z m_6875_ + 0 o p_39368_ + a (Lbdq;)V m_6199_ + 0 o p_39366_ + a (Lcfz;Lbyo;Lcmm;Lgu;)V m_39375_ + static + 0 o p_39376_ + 1 o p_39377_ + 2 o p_39378_ + 3 o p_39379_ + a (Lcmm;Lgu;)V m_39385_ + 0 o p_39386_ + 1 o p_39387_ + a (Lbys;)V m_5816_ + 0 o p_39374_ + a (Lcfz;Lccx;)Z m_5882_ + 0 o p_39381_ + 1 o p_39382_ + a (Lcjc;)Z m_6032_ + 0 o p_39384_ + b (Lbyo;)V m_6877_ + 0 o p_39389_ + e (I)Z m_142157_ + 0 o p_150553_ + l ()V m_6650_ + m ()I m_6636_ + n ()I m_6635_ + o ()I m_6656_ + p ()I m_6653_ + t ()Lccq; m_5867_ +cbv net/minecraft/world/inventory/DataSlot + a f_39399_ + ()V + a ()Lcbv; m_39401_ + static + a (I)V m_6422_ + 0 o p_39402_ + a ([II)Lcbv; m_39406_ + static + 0 o p_39407_ + 1 o p_39408_ + a (Lcbp;I)Lcbv; m_39403_ + static + 0 o p_39404_ + 1 o p_39405_ + b ()I m_6501_ + c ()Z m_39409_ +cbv$1 net/minecraft/world/inventory/DataSlot$1 + a f_39410_ + b f_39411_ + (Lcbp;I)V + 0 o p_39413_ + 1 o p_39414_ + a (I)V m_6422_ + 0 o p_39416_ + b ()I m_6501_ +cbv$2 net/minecraft/world/inventory/DataSlot$2 + a f_39418_ + b f_39419_ + ([II)V + 0 o p_39421_ + 1 o p_39422_ + a (I)V m_6422_ + 0 o p_39424_ + b ()I m_6501_ +cbv$3 net/minecraft/world/inventory/DataSlot$3 + a f_39426_ + ()V + a (I)V m_6422_ + 0 o p_39429_ + b ()I m_6501_ +cbw net/minecraft/world/inventory/DispenserMenu + k f_150557_ + l f_150558_ + m f_150559_ + n f_150560_ + o f_150561_ + p f_39431_ + (ILbyn;)V + 0 o p_39433_ + 1 o p_39434_ + (ILbyn;Lbdq;)V + 0 o p_39436_ + 1 o p_39437_ + 2 o p_39438_ + a (Lbyo;I)Lcfz; m_7648_ + 0 o p_39444_ + 1 o p_39445_ + a (Lbyo;)Z m_6875_ + 0 o p_39440_ + b (Lbyo;)V m_6877_ + 0 o p_39442_ +cbx net/minecraft/world/inventory/EnchantmentMenu + k f_39446_ + l f_39447_ + m f_39448_ + n f_39449_ + o f_39450_ + p f_39451_ + q f_39452_ + (ILbyn;)V + 0 o p_39454_ + 1 o p_39455_ + (ILbyn;Lcbq;)V + 0 o p_39457_ + 1 o p_39458_ + 2 o p_39459_ + a (Lcfz;Lcmm;Lgu;)V m_39483_ + 0 o p_39484_ + 1 o p_39485_ + 2 o p_39486_ + a (Lbyo;I)Lcfz; m_7648_ + 0 o p_39490_ + 1 o p_39491_ + a (Lbyo;Lcmm;Lgu;)V m_39467_ + 0 o p_39468_ + 1 o p_39469_ + 2 o p_39470_ + a (Lcfz;ILbyo;ILcfz;Lcmm;Lgu;)V m_39475_ + 0 o p_39476_ + 1 o p_39477_ + 2 o p_39478_ + 3 o p_39479_ + 4 o p_39480_ + 5 o p_39481_ + 6 o p_39482_ + a (Lbyo;)Z m_6875_ + 0 o p_39463_ + a (Lbdq;)V m_6199_ + 0 o p_39461_ + a (Lcfz;II)Ljava/util/List; m_39471_ + 0 o p_39472_ + 1 o p_39473_ + 2 o p_39474_ + b (Lbyo;)V m_6877_ + 0 o p_39488_ + b (Lbyo;I)Z m_6366_ + 0 o p_39465_ + 1 o p_39466_ + l ()I m_39492_ + m ()I m_39493_ +cbx$1 net/minecraft/world/inventory/EnchantmentMenu$1 + c f_39494_ + (Lcbx;I)V + 0 o p_39496_ + 1 o p_39497_ + e ()V m_6596_ +cbx$2 net/minecraft/world/inventory/EnchantmentMenu$2 + a f_39499_ + (Lcbx;Lbdq;III)V + 0 o p_39501_ + 1 o p_39502_ + 2 o p_39503_ + 3 o p_39504_ + 4 o p_39505_ + a (Lcfz;)Z m_5857_ + 0 o p_39508_ + a ()I m_6641_ +cbx$3 net/minecraft/world/inventory/EnchantmentMenu$3 + a f_39509_ + (Lcbx;Lbdq;III)V + 0 o p_39511_ + 1 o p_39512_ + 2 o p_39513_ + 3 o p_39514_ + 4 o p_39515_ + a (Lcfz;)Z m_5857_ + 0 o p_39517_ +cby net/minecraft/world/inventory/FurnaceFuelSlot + a f_39518_ + (Lcbg;Lbdq;III)V + 0 o p_39520_ + 1 o p_39521_ + 2 o p_39522_ + 3 o p_39523_ + 4 o p_39524_ + a (Lcfz;)Z m_5857_ + 0 o p_39526_ + a_ (Lcfz;)I m_5866_ + 0 o p_39528_ + c (Lcfz;)Z m_39529_ + static + 0 o p_39530_ +cbz net/minecraft/world/inventory/FurnaceMenu + (ILbyn;Lbdq;Lcbp;)V + 0 o p_39535_ + 1 o p_39536_ + 2 o p_39537_ + 3 o p_39538_ + (ILbyn;)V + 0 o p_39532_ + 1 o p_39533_ +cc net/minecraft/advancements/critereon/KilledTrigger + a f_48100_ + (Lacq;)V + 0 o p_48102_ + a (Laig;Lbfj;Lben;)V m_48104_ + 0 o p_48105_ + 1 o p_48106_ + 2 o p_48107_ + a (Laig;Ldzk;Lben;Lcc$a;)Z m_48108_ + static + 0 o p_48109_ + 1 o p_48110_ + 2 o p_48111_ + 3 o p_48112_ + a ()Lacq; m_7295_ + a (Lcom/google/gson/JsonObject;Lba;Lbe;)Lcc$a; m_7214_ + 0 o p_286718_ + 1 o p_286909_ + 2 o p_286514_ + b (Lcom/google/gson/JsonObject;Lba;Lbe;)Lar; m_7214_ + 0 o p_286846_ + 1 o p_286681_ + 2 o p_286257_ +cc$a net/minecraft/advancements/critereon/KilledTrigger$TriggerInstance + a f_48123_ + b f_48124_ + (Lacq;Lba;Lba;Lbd;)V + 0 o p_286471_ + 1 o p_286673_ + 2 o p_286390_ + 3 o p_286643_ + a (Lbo;Lbd;)Lcc$a; m_152113_ + static + 0 o p_152114_ + 1 o p_152115_ + a (Lct;)Lcom/google/gson/JsonObject; m_7683_ + 0 o p_48140_ + a (Lbo$a;Lbd$a;)Lcc$a; m_48136_ + static + 0 o p_48137_ + 1 o p_48138_ + a (Lbo;Lbd$a;)Lcc$a; m_152110_ + static + 0 o p_152111_ + 1 o p_152112_ + a (Lbo;)Lcc$a; m_152108_ + static + 0 o p_152109_ + a (Lbo$a;)Lcc$a; m_48134_ + static + 0 o p_48135_ + a (Lbo$a;Lbd;)Lcc$a; m_152105_ + static + 0 o p_152106_ + 1 o p_152107_ + a (Laig;Ldzk;Lben;)Z m_48130_ + 0 o p_48131_ + 1 o p_48132_ + 2 o p_48133_ + b (Lbo$a;Lbd;)Lcc$a; m_152121_ + static + 0 o p_152122_ + 1 o p_152123_ + b (Lbo$a;Lbd$a;)Lcc$a; m_152118_ + static + 0 o p_152119_ + 1 o p_152120_ + b (Lbo;Lbd;)Lcc$a; m_152129_ + static + 0 o p_152130_ + 1 o p_152131_ + b (Lbo;)Lcc$a; m_152124_ + static + 0 o p_152125_ + b (Lbo;Lbd$a;)Lcc$a; m_152126_ + static + 0 o p_152127_ + 1 o p_152128_ + b (Lbo$a;)Lcc$a; m_152116_ + static + 0 o p_152117_ + c ()Lcc$a; m_48141_ + static + d ()Lcc$a; m_220237_ + static + e ()Lcc$a; m_48142_ + static +cca net/minecraft/world/inventory/FurnaceResultSlot + a f_39539_ + b f_39540_ + (Lbyo;Lbdq;III)V + 0 o p_39542_ + 1 o p_39543_ + 2 o p_39544_ + 3 o p_39545_ + 4 o p_39546_ + a (I)Lcfz; m_6201_ + 0 o p_39548_ + a (Lcfz;I)V m_7169_ + 0 o p_39555_ + 1 o p_39556_ + a (Lcfz;)Z m_5857_ + 0 o p_39553_ + a (Lbyo;Lcfz;)V m_142406_ + 0 o p_150563_ + 1 o p_150564_ + b_ (Lcfz;)V m_5845_ + 0 o p_39558_ +ccb net/minecraft/world/inventory/GrindstoneMenu + k f_150565_ + l f_150566_ + m f_150567_ + n f_150568_ + o f_150569_ + p f_150570_ + q f_150571_ + r f_150572_ + s f_39559_ + t f_39560_ + u f_39561_ + (ILbyn;)V + 0 o p_39563_ + 1 o p_39564_ + (ILbyn;Lcbq;)V + 0 o p_39566_ + 1 o p_39567_ + 2 o p_39568_ + a (Lcfz;Lcfz;)Lcfz; m_39590_ + 0 o p_39591_ + 1 o p_39592_ + a (Lbyo;I)Lcfz; m_7648_ + 0 o p_39588_ + 1 o p_39589_ + a (Lbyo;)Z m_6875_ + 0 o p_39572_ + a (Lbdq;)V m_6199_ + 0 o p_39570_ + a (Lcfz;II)Lcfz; m_39579_ + 0 o p_39580_ + 1 o p_39581_ + 2 o p_39582_ + a (Lbyo;Lcmm;Lgu;)V m_39573_ + 0 o p_39574_ + 1 o p_39575_ + 2 o p_39576_ + a (Ljava/util/Map$Entry;)Z m_39583_ + static + 0 o p_39584_ + b (Lbyo;)V m_6877_ + 0 o p_39586_ + l ()V m_39593_ +ccb$1 net/minecraft/world/inventory/GrindstoneMenu$1 + c f_39594_ + (Lccb;I)V + 0 o p_39596_ + 1 o p_39597_ + e ()V m_6596_ +ccb$2 net/minecraft/world/inventory/GrindstoneMenu$2 + a f_39599_ + (Lccb;Lbdq;III)V + 0 o p_39601_ + 1 o p_39602_ + 2 o p_39603_ + 3 o p_39604_ + 4 o p_39605_ + a (Lcfz;)Z m_5857_ + 0 o p_39607_ +ccb$3 net/minecraft/world/inventory/GrindstoneMenu$3 + a f_39608_ + (Lccb;Lbdq;III)V + 0 o p_39610_ + 1 o p_39611_ + 2 o p_39612_ + 3 o p_39613_ + 4 o p_39614_ + a (Lcfz;)Z m_5857_ + 0 o p_39616_ +ccb$4 net/minecraft/world/inventory/GrindstoneMenu$4 + a f_39617_ + b f_39618_ + (Lccb;Lbdq;IIILcbq;)V + 0 o p_39620_ + 1 o p_39621_ + 2 o p_39622_ + 3 o p_39623_ + 4 o p_39624_ + 5 o p_39625_ + a (Lcmm;)I m_39631_ + 0 o p_39632_ + a (Lcfz;)Z m_5857_ + 0 o p_39630_ + a (Lbyo;Lcfz;)V m_142406_ + 0 o p_150574_ + 1 o p_150575_ + a (Lcmm;Lgu;)V m_39633_ + 0 o p_39634_ + 1 o p_39635_ + g (Lcfz;)I m_39636_ + 0 o p_39637_ +ccc net/minecraft/world/inventory/HopperMenu + k f_150576_ + l f_39638_ + (ILbyn;)V + 0 o p_39640_ + 1 o p_39641_ + (ILbyn;Lbdq;)V + 0 o p_39643_ + 1 o p_39644_ + 2 o p_39645_ + a (Lbyo;I)Lcfz; m_7648_ + 0 o p_39651_ + 1 o p_39652_ + a (Lbyo;)Z m_6875_ + 0 o p_39647_ + b (Lbyo;)V m_6877_ + 0 o p_39649_ +ccd net/minecraft/world/inventory/HorseInventoryMenu + k f_39653_ + l f_39654_ + (ILbyn;Lbdq;Lbtk;)V + 0 o p_39656_ + 1 o p_39657_ + 2 o p_39658_ + 3 o p_39659_ + a (Lbyo;I)Lcfz; m_7648_ + 0 o p_39665_ + 1 o p_39666_ + a (Lbyo;)Z m_6875_ + 0 o p_39661_ + a (Lbtk;)Z m_150577_ + 0 o p_150578_ + b (Lbyo;)V m_6877_ + 0 o p_39663_ +ccd$1 net/minecraft/world/inventory/HorseInventoryMenu$1 + a f_39667_ + b f_39668_ + (Lccd;Lbdq;IIILbtk;)V + 0 o p_39670_ + 1 o p_39671_ + 2 o p_39672_ + 3 o p_39673_ + 4 o p_39674_ + 5 o p_39675_ + a (Lcfz;)Z m_5857_ + 0 o p_39677_ + b ()Z m_6659_ +ccd$2 net/minecraft/world/inventory/HorseInventoryMenu$2 + a f_39679_ + b f_39680_ + (Lccd;Lbdq;IIILbtk;)V + 0 o p_39682_ + 1 o p_39683_ + 2 o p_39684_ + 3 o p_39685_ + 4 o p_39686_ + 5 o p_39687_ + a (Lcfz;)Z m_5857_ + 0 o p_39690_ + a ()I m_6641_ + b ()Z m_6659_ +cce net/minecraft/world/inventory/InventoryMenu + A f_39697_ + B f_39698_ + C f_39699_ + D f_39700_ + E f_39701_ + F f_39702_ + G f_39703_ + k f_150579_ + l f_150580_ + m f_150581_ + n f_150582_ + o f_150583_ + p f_150584_ + q f_150585_ + r f_150586_ + s f_150587_ + t f_150588_ + u f_150589_ + v f_39692_ + w f_39693_ + x f_39694_ + y f_39695_ + z f_39696_ + ()V + static + (Lbyn;ZLbyo;)V + 0 o p_39706_ + 1 o p_39707_ + 2 o p_39708_ + a (Lbyo;I)Lcfz; m_7648_ + 0 o p_39723_ + 1 o p_39724_ + a (Lbyo;Lbfo;Lcfz;Lcfz;)V m_269535_ + static + 0 o p_270432_ + 1 o p_270254_ + 2 o p_270316_ + 3 o p_270993_ + a (Lbyo;)Z m_6875_ + 0 o p_39712_ + a (Lbdq;)V m_6199_ + 0 o p_39710_ + a (Lbys;)V m_5816_ + 0 o p_39714_ + a (Lcfz;Lccx;)Z m_5882_ + 0 o p_39716_ + 1 o p_39717_ + a (Lcjc;)Z m_6032_ + 0 o p_39719_ + b (Lbyo;)V m_6877_ + 0 o p_39721_ + e (I)Z m_142157_ + 0 o p_150591_ + f (I)Z m_150592_ + static + 0 o p_150593_ + l ()V m_6650_ + m ()I m_6636_ + n ()I m_6635_ + o ()I m_6656_ + p ()I m_6653_ + q ()Lcbt; m_39730_ + t ()Lccq; m_5867_ +cce$1 net/minecraft/world/inventory/InventoryMenu$1 + a f_219975_ + b f_39733_ + c f_39734_ + (Lcce;Lbdq;IIILbyo;Lbfo;)V + 0 o p_219977_ + 1 o p_219978_ + 2 o p_219979_ + 3 o p_219980_ + 4 o p_219981_ + 5 o p_219982_ + 6 o p_219983_ + a (Lcfz;)Z m_5857_ + 0 o p_39746_ + a (Lbyo;)Z m_8010_ + 0 o p_39744_ + a ()I m_6641_ + c ()Lcom/mojang/datafixers/util/Pair; m_7543_ + d (Lcfz;)V m_269060_ + 0 o p_270969_ +cce$2 net/minecraft/world/inventory/InventoryMenu$2 + a f_268492_ + b f_39748_ + (Lcce;Lbdq;IIILbyo;)V + 0 o p_270296_ + 1 o p_270787_ + 2 o p_270806_ + 3 o p_270224_ + 4 o p_270876_ + 5 o p_270204_ + c ()Lcom/mojang/datafixers/util/Pair; m_7543_ + d (Lcfz;)V m_269060_ + 0 o p_270479_ +ccf net/minecraft/world/inventory/ItemCombinerMenu + k f_265978_ + l f_266084_ + m f_266110_ + n f_266048_ + o f_39770_ + p f_39771_ + q f_39769_ + r f_39768_ + (Lcck;ILbyn;Lcbq;)V + 0 o p_39773_ + 1 o p_39774_ + 2 o p_39775_ + 3 o p_39776_ + a (Lbyo;Lcmm;Lgu;)Ljava/lang/Boolean; m_39783_ + 0 o p_39784_ + 1 o p_39785_ + 2 o p_39786_ + a (Lbyo;I)Lcfz; m_7648_ + 0 o p_39792_ + 1 o p_39793_ + a (Lbyo;Lcfz;)V m_142365_ + 0 o p_150601_ + 1 o p_150602_ + a (Lccg;)V m_266254_ + 0 o p_267172_ + a (Lbyo;Z)Z m_6560_ + 0 o p_39798_ + 1 o p_39799_ + a (Ldcb;)Z m_8039_ + 0 o p_39788_ + a (Lbyo;)Z m_6875_ + 0 o p_39780_ + a (Lbdq;)V m_6199_ + 0 o p_39778_ + a (Lbyn;)V m_266235_ + 0 o p_267325_ + b (Lbyo;)V m_6877_ + 0 o p_39790_ + b (Lccg;)V m_266430_ + 0 o p_267000_ + b (Lbyo;Lcmm;Lgu;)V m_39794_ + 0 o p_39795_ + 1 o p_39796_ + 2 o p_39797_ + c (Lcfz;)Z m_5861_ + 0 o p_39787_ + d (Lcfz;)I m_266159_ + 0 o p_267159_ + e (I)Lbee; m_266190_ + 0 o p_267204_ + l ()Lccg; m_266183_ + m ()V m_6640_ + n ()I m_266318_ + o ()I m_266562_ + p ()I m_266402_ + q ()I m_266416_ + r ()I m_266360_ +ccf$1 net/minecraft/world/inventory/ItemCombinerMenu$1 + a f_266105_ + b f_39800_ + (Lccf;Lbdq;IIILccg$b;)V + 0 o p_266793_ + 1 o p_266806_ + 2 o p_266845_ + 3 o p_267070_ + 4 o p_266773_ + 5 o p_267053_ + a (Lcfz;)Z m_5857_ + 0 o p_267156_ +ccf$2 net/minecraft/world/inventory/ItemCombinerMenu$2 + a f_39805_ + (Lccf;Lbdq;III)V + 0 o p_39807_ + 1 o p_39808_ + 2 o p_39809_ + 3 o p_39810_ + 4 o p_39811_ + a (Lcfz;)Z m_5857_ + 0 o p_39818_ + a (Lbyo;)Z m_8010_ + 0 o p_39813_ + a (Lbyo;Lcfz;)V m_142406_ + 0 o p_150604_ + 1 o p_150605_ +ccf$3 net/minecraft/world/inventory/ItemCombinerMenu$3 + c f_265891_ + (Lccf;I)V + 0 o p_267106_ + 1 o p_266840_ + e ()V m_6596_ +ccg net/minecraft/world/inventory/ItemCombinerMenuSlotDefinition + a f_266033_ + b f_265921_ + (Ljava/util/List;Lccg$b;)V + 0 o p_266947_ + 1 o p_266715_ + a ()Lccg$a; m_266303_ + static + a (I)Z m_266229_ + 0 o p_267185_ + b ()Lccg$b; m_266349_ + b (I)Lccg$b; m_266322_ + 0 o p_266907_ + c ()Ljava/util/List; m_266233_ + d ()I m_266578_ + e ()I m_266388_ + f ()Ljava/util/List; m_266517_ +ccg$a net/minecraft/world/inventory/ItemCombinerMenuSlotDefinition$Builder + a f_265930_ + b f_266115_ + ()V + a (IIILjava/util/function/Predicate;)Lccg$a; m_266197_ + 0 o p_267315_ + 1 o p_267028_ + 2 o p_266815_ + 3 o p_267120_ + a ()Lccg; m_266441_ + a (III)Lccg$a; m_266198_ + 0 o p_267180_ + 1 o p_267130_ + 2 o p_266910_ + a (Lcfz;)Z m_266472_ + static + 0 o p_266825_ +ccg$b net/minecraft/world/inventory/ItemCombinerMenuSlotDefinition$SlotDefinition + a f_266086_ + b f_266065_ + c f_265926_ + d f_265897_ + e f_266077_ + ()V + static + (IIILjava/util/function/Predicate;)V + 0 o f_266086_ + 1 o f_266065_ + 2 o f_265926_ + 3 o f_265897_ + a (Lcfz;)Z m_266314_ + static + 0 o p_267109_ + a ()I f_266086_ + b ()I f_266065_ + c ()I f_265926_ + d ()Ljava/util/function/Predicate; f_265897_ + equals (Ljava/lang/Object;)Z equals + 0 o p_267115_ + hashCode ()I hashCode + toString ()Ljava/lang/String; toString +cch net/minecraft/world/inventory/LecternMenu + k f_150606_ + l f_150607_ + m f_150608_ + n f_150609_ + o f_150610_ + p f_150611_ + q f_39819_ + r f_39820_ + (I)V + 0 o p_39822_ + (ILbdq;Lcbp;)V + 0 o p_39824_ + 1 o p_39825_ + 2 o p_39826_ + a (Lbyo;I)Lcfz; m_7648_ + 0 o p_219987_ + 1 o p_219988_ + a (Lbyo;)Z m_6875_ + 0 o p_39831_ + a (II)V m_7511_ + 0 o p_39828_ + 1 o p_39829_ + b (Lbyo;I)Z m_6366_ + 0 o p_39833_ + 1 o p_39834_ + l ()Lcfz; m_39835_ + m ()I m_39836_ +cch$1 net/minecraft/world/inventory/LecternMenu$1 + a f_39837_ + (Lcch;Lbdq;III)V + 0 o p_39839_ + 1 o p_39840_ + 2 o p_39841_ + 3 o p_39842_ + 4 o p_39843_ + d ()V m_6654_ +cci net/minecraft/world/inventory/LoomMenu + k f_219989_ + l f_150612_ + m f_150613_ + n f_150614_ + o f_150615_ + p f_39845_ + q f_39846_ + r f_219990_ + s f_39847_ + t f_39848_ + u f_39849_ + v f_39850_ + w f_39851_ + x f_39852_ + y f_39853_ + z f_39854_ + (ILbyn;)V + 0 o p_39856_ + 1 o p_39857_ + (ILbyn;Lcbq;)V + 0 o p_39859_ + 1 o p_39860_ + 2 o p_39861_ + a (Ljava/lang/Runnable;)V m_39878_ + 0 o p_39879_ + a (Lhe;)V m_219991_ + 0 o p_219992_ + a (Lbyo;I)Lcfz; m_7648_ + 0 o p_39883_ + 1 o p_39884_ + a (Lbyo;Lcmm;Lgu;)V m_39869_ + 0 o p_39870_ + 1 o p_39871_ + 2 o p_39872_ + a (Lbyo;)Z m_6875_ + 0 o p_39865_ + a (Lbdq;)V m_6199_ + 0 o p_39863_ + b (Lbyo;)V m_6877_ + 0 o p_39881_ + b (Lbyo;I)Z m_6366_ + 0 o p_39867_ + 1 o p_39868_ + c (Lcfz;)Ljava/util/List; m_219993_ + 0 o p_219994_ + e (I)Z m_242642_ + 0 o p_242850_ + l ()Ljava/util/List; m_219995_ + m ()I m_39891_ + n ()Lccx; m_39894_ + o ()Lccx; m_39895_ + p ()Lccx; m_39896_ + q ()Lccx; m_39897_ + r ()V m_39899_ + static +cci$1 net/minecraft/world/inventory/LoomMenu$1 + c f_39900_ + (Lcci;I)V + 0 o p_39902_ + 1 o p_39903_ + e ()V m_6596_ +cci$2 net/minecraft/world/inventory/LoomMenu$2 + c f_39905_ + (Lcci;I)V + 0 o p_39907_ + 1 o p_39908_ + e ()V m_6596_ +cci$3 net/minecraft/world/inventory/LoomMenu$3 + a f_39910_ + (Lcci;Lbdq;III)V + 0 o p_39912_ + 1 o p_39913_ + 2 o p_39914_ + 3 o p_39915_ + 4 o p_39916_ + a (Lcfz;)Z m_5857_ + 0 o p_39918_ +cci$4 net/minecraft/world/inventory/LoomMenu$4 + a f_39919_ + (Lcci;Lbdq;III)V + 0 o p_39921_ + 1 o p_39922_ + 2 o p_39923_ + 3 o p_39924_ + 4 o p_39925_ + a (Lcfz;)Z m_5857_ + 0 o p_39927_ +cci$5 net/minecraft/world/inventory/LoomMenu$5 + a f_39928_ + (Lcci;Lbdq;III)V + 0 o p_39930_ + 1 o p_39931_ + 2 o p_39932_ + 3 o p_39933_ + 4 o p_39934_ + a (Lcfz;)Z m_5857_ + 0 o p_39936_ +cci$6 net/minecraft/world/inventory/LoomMenu$6 + a f_39937_ + b f_39938_ + (Lcci;Lbdq;IIILcbq;)V + 0 o p_39940_ + 1 o p_39941_ + 2 o p_39942_ + 3 o p_39943_ + 4 o p_39944_ + 5 o p_39945_ + a (Lcfz;)Z m_5857_ + 0 o p_39950_ + a (Lbyo;Lcfz;)V m_142406_ + 0 o p_150617_ + 1 o p_150618_ + a (Lcmm;Lgu;)V m_39951_ + 0 o p_39952_ + 1 o p_39953_ +ccj net/minecraft/world/inventory/MenuConstructor + createMenu (ILbyn;Lbyo;)Lcbf; m_7208_ + 0 o p_39954_ + 1 o p_39955_ + 2 o p_39956_ +cck net/minecraft/world/inventory/MenuType + a f_39957_ + b f_39958_ + c f_39959_ + d f_39960_ + e f_39961_ + f f_39962_ + g f_39963_ + h f_39964_ + i f_39965_ + j f_39966_ + k f_39967_ + l f_39968_ + m f_39969_ + n f_39970_ + o f_39971_ + p f_39972_ + q f_39973_ + r f_39974_ + s f_39975_ + t f_39976_ + u f_39977_ + v f_39978_ + w f_39979_ + x f_39980_ + y f_265869_ + z f_39981_ + ()V + static + (Lcck$a;Lcaw;)V + 0 o p_267054_ + 1 o p_266909_ + a (Ljava/lang/String;Lcck$a;[Lcau;)Lcck; m_266268_ + static + 0 o p_267295_ + 1 o p_266945_ + 2 o p_267055_ + a (Ljava/lang/String;Lcck$a;)Lcck; m_39988_ + static + 0 o p_39989_ + 1 o p_39990_ + a (ILbyn;)Lcbf; m_39985_ + 0 o p_39986_ + 1 o p_39987_ + b (ILbyn;)Lcch; m_39991_ + static + 0 o p_39992_ + 1 o p_39993_ + m ()Lcaw; m_245183_ +cck$a net/minecraft/world/inventory/MenuType$MenuSupplier + create (ILbyn;)Lcbf; m_39994_ + 0 o p_39995_ + 1 o p_39996_ +ccl net/minecraft/world/inventory/MerchantContainer + c f_39997_ + d f_39998_ + e f_39999_ + f f_40000_ + g f_40001_ + (Lclj;)V + 0 o p_40003_ + a (ILcfz;)V m_6836_ + 0 o p_40013_ + 1 o p_40014_ + a (I)Lcfz; m_8020_ + 0 o p_40008_ + a (Lbyo;)Z m_6542_ + 0 o p_40016_ + a (II)Lcfz; m_7407_ + 0 o p_40010_ + 1 o p_40011_ + a ()V m_6211_ + ab_ ()Z m_7983_ + b ()I m_6643_ + b (I)Lcfz; m_8016_ + 0 o p_40018_ + c (I)V m_40020_ + 0 o p_40021_ + d (I)Z m_40022_ + 0 o p_40023_ + e ()V m_6596_ + f ()V m_40024_ + g ()Lclk; m_40025_ + h ()I m_40026_ +ccm net/minecraft/world/inventory/MerchantMenu + k f_150619_ + l f_150620_ + m f_150621_ + n f_150622_ + o f_150623_ + p f_150624_ + q f_150625_ + r f_150626_ + s f_150627_ + t f_150628_ + u f_150629_ + v f_40027_ + w f_40028_ + x f_40029_ + y f_40030_ + z f_40031_ + (ILbyn;Lclj;)V + 0 o p_40036_ + 1 o p_40037_ + 2 o p_40038_ + (ILbyn;)V + 0 o p_40033_ + 1 o p_40034_ + a (Lcll;)V m_40046_ + 0 o p_40047_ + a (Lbyo;I)Lcfz; m_7648_ + 0 o p_40053_ + 1 o p_40054_ + a (Z)V m_40048_ + 0 o p_40049_ + a (Lbyo;)Z m_6875_ + 0 o p_40042_ + a (Lbdq;)V m_6199_ + 0 o p_40040_ + a (Lcfz;Lccx;)Z m_5882_ + 0 o p_40044_ + 1 o p_40045_ + b (Lbyo;)V m_6877_ + 0 o p_40051_ + b (Z)V m_40058_ + 0 o p_40059_ + c (ILcfz;)V m_40060_ + 0 o p_40061_ + 1 o p_40062_ + e (I)V m_40063_ + 0 o p_40064_ + f (I)V m_40066_ + 0 o p_40067_ + g (I)V m_40069_ + 0 o p_40070_ + h (I)V m_40072_ + 0 o p_40073_ + l ()I m_40065_ + m ()I m_40068_ + n ()I m_40071_ + o ()Z m_40074_ + p ()Lcll; m_40075_ + q ()Z m_40076_ + r ()V m_40077_ +ccn net/minecraft/world/inventory/MerchantResultSlot + a f_40078_ + b f_40079_ + c f_40080_ + h f_40081_ + (Lbyo;Lclj;Lccl;III)V + 0 o p_40083_ + 1 o p_40084_ + 2 o p_40085_ + 3 o p_40086_ + 4 o p_40087_ + 5 o p_40088_ + a (I)Lcfz; m_6201_ + 0 o p_40090_ + a (Lcfz;I)V m_7169_ + 0 o p_40097_ + 1 o p_40098_ + a (Lcfz;)Z m_5857_ + 0 o p_40095_ + a (Lbyo;Lcfz;)V m_142406_ + 0 o p_150631_ + 1 o p_150632_ + b_ (Lcfz;)V m_5845_ + 0 o p_40100_ +cco net/minecraft/world/inventory/PlayerEnderChestContainer + c f_40101_ + ()V + a (Ldah;)V m_40105_ + 0 o p_40106_ + a (Lqx;)V m_7797_ + 0 o p_40108_ + a (Lbyo;)Z m_6542_ + 0 o p_40104_ + b (Ldah;)Z m_150633_ + 0 o p_150634_ + c (Lbyo;)V m_5785_ + 0 o p_40110_ + d_ (Lbyo;)V m_5856_ + 0 o p_40112_ + g ()Lqx; m_7927_ +ccp net/minecraft/world/inventory/RecipeBookMenu + (Lcck;I)V + 0 o p_40115_ + 1 o p_40116_ + a (ZLcjc;Laig;)V m_6951_ + 0 o p_40119_ + 1 o p_40120_ + 2 o p_40121_ + a (Lbys;)V m_5816_ + 0 o p_40117_ + a (Lcjc;)Z m_6032_ + 0 o p_40118_ + e (I)Z m_142157_ + 0 o p_150635_ + l ()V m_6650_ + m ()I m_6636_ + n ()I m_6635_ + o ()I m_6656_ + p ()I m_6653_ + t ()Lccq; m_5867_ +ccq net/minecraft/world/inventory/RecipeBookType + a CRAFTING + b FURNACE + c BLAST_FURNACE + d SMOKER + e $VALUES + ()V + static + (Ljava/lang/String;I)V + 0 o p_40129_ + 1 o p_40130_ + a ()[Lccq; m_150636_ + static + valueOf (Ljava/lang/String;)Lccq; valueOf + static + 0 o p_40132_ + values ()[Lccq; values + static +ccr net/minecraft/world/inventory/RecipeHolder + a (Lbyo;Ljava/util/List;)V m_58395_ + 0 o p_281647_ + 1 o p_282578_ + a (Lcjc;)V m_6029_ + 0 o p_40134_ + a (Lcmm;Laig;Lcjc;)Z m_40135_ + 0 o p_40136_ + 1 o p_40137_ + 2 o p_40138_ + d ()Lcjc; m_7928_ +ccs net/minecraft/world/inventory/ResultContainer + c f_40140_ + d f_40141_ + ()V + a (I)Lcfz; m_8020_ + 0 o p_40147_ + a (ILcfz;)V m_6836_ + 0 o p_40152_ + 1 o p_40153_ + a (Lbyo;)Z m_6542_ + 0 o p_40155_ + a (II)Lcfz; m_7407_ + 0 o p_40149_ + 1 o p_40150_ + a ()V m_6211_ + a (Lcjc;)V m_6029_ + 0 o p_40157_ + ab_ ()Z m_7983_ + b (I)Lcfz; m_8016_ + 0 o p_40160_ + b ()I m_6643_ + d ()Lcjc; m_7928_ + e ()V m_6596_ +cct net/minecraft/world/inventory/ResultSlot + a f_40162_ + b f_40163_ + c f_40164_ + (Lbyo;Lcbt;Lbdq;III)V + 0 o p_40166_ + 1 o p_40167_ + 2 o p_40168_ + 3 o p_40169_ + 4 o p_40170_ + 5 o p_40171_ + a (I)Lcfz; m_6201_ + 0 o p_40173_ + a (Lcfz;I)V m_7169_ + 0 o p_40180_ + 1 o p_40181_ + a (Lcfz;)Z m_5857_ + 0 o p_40178_ + a (Lbyo;Lcfz;)V m_142406_ + 0 o p_150638_ + 1 o p_150639_ + b (I)V m_6405_ + 0 o p_40183_ + b_ (Lcfz;)V m_5845_ + 0 o p_40185_ +ccu net/minecraft/world/inventory/ShulkerBoxMenu + k f_150640_ + l f_40186_ + (ILbyn;)V + 0 o p_40188_ + 1 o p_40189_ + (ILbyn;Lbdq;)V + 0 o p_40191_ + 1 o p_40192_ + 2 o p_40193_ + a (Lbyo;I)Lcfz; m_7648_ + 0 o p_40199_ + 1 o p_40200_ + a (Lbyo;)Z m_6875_ + 0 o p_40195_ + b (Lbyo;)V m_6877_ + 0 o p_40197_ +ccv net/minecraft/world/inventory/ShulkerBoxSlot + (Lbdq;III)V + 0 o p_40202_ + 1 o p_40203_ + 2 o p_40204_ + 3 o p_40205_ + a (Lcfz;)Z m_5857_ + 0 o p_40207_ +ccw net/minecraft/world/inventory/SimpleContainerData + a f_40208_ + (I)V + 0 o p_40210_ + a (I)I m_6413_ + 0 o p_40213_ + a (II)V m_8050_ + 0 o p_40215_ + 1 o p_40216_ + a ()I m_6499_ +ccx net/minecraft/world/inventory/Slot + a f_40217_ + d f_40218_ + e f_40219_ + f f_40220_ + g f_40221_ + (Lbdq;III)V + 0 o p_40223_ + 1 o p_40224_ + 2 o p_40225_ + 3 o p_40226_ + a (Lcfz;I)V m_7169_ + 0 o p_40232_ + 1 o p_40233_ + a (Lcfz;)Z m_5857_ + 0 o p_40231_ + a (Lbyo;Lcfz;)V m_142406_ + 0 o p_150645_ + 1 o p_150646_ + a ()I m_6641_ + a (Lbyo;)Z m_8010_ + 0 o p_40228_ + a (IILbyo;)Ljava/util/Optional; m_150641_ + 0 o p_150642_ + 1 o p_150643_ + 2 o p_150644_ + a (Lcfz;Lcfz;)V m_40234_ + 0 o p_40235_ + 1 o p_40236_ + a (I)Lcfz; m_6201_ + 0 o p_40227_ + a_ (Lcfz;)I m_5866_ + 0 o p_40238_ + b (Lbyo;Lcfz;)V m_150653_ + 0 o p_150654_ + 1 o p_150655_ + b (Lcfz;I)Lcfz; m_150656_ + 0 o p_150657_ + 1 o p_150658_ + b (Lbyo;)Z m_150651_ + 0 o p_150652_ + b (IILbyo;)Lcfz; m_150647_ + 0 o p_150648_ + 1 o p_150649_ + 2 o p_150650_ + b (I)V m_6405_ + 0 o p_40237_ + b ()Z m_6659_ + b_ (Lcfz;)V m_5845_ + 0 o p_40239_ + c ()Lcom/mojang/datafixers/util/Pair; m_7543_ + d (Lcfz;)V m_269060_ + 0 o p_270152_ + d ()V m_6654_ + e ()Lcfz; m_7993_ + e (Lcfz;)V m_5852_ + 0 o p_40240_ + f (Lcfz;)Lcfz; m_150659_ + 0 o p_150660_ + f ()Z m_6657_ + g ()I m_150661_ + h ()Z m_280329_ +ccy net/minecraft/world/inventory/SmithingMenu + k f_266015_ + l f_266035_ + m f_265928_ + n f_266024_ + s f_265913_ + t f_266041_ + u f_265899_ + v f_266111_ + w f_265851_ + x f_40241_ + y f_40242_ + z f_40243_ + (ILbyn;)V + 0 o p_40245_ + 1 o p_40246_ + (ILbyn;Lcbq;)V + 0 o p_40248_ + 1 o p_40249_ + 2 o p_40250_ + a (Lcfz;Lcjp;)Ljava/util/Optional; m_266144_ + static + 0 o p_266646_ + 1 o p_266647_ + a (Lbyo;Lcfz;)V m_142365_ + 0 o p_150663_ + 1 o p_150664_ + a (Lbyo;Z)Z m_6560_ + 0 o p_40268_ + 1 o p_40269_ + a (Ldcb;)Z m_8039_ + 0 o p_40266_ + a (Lcmm;Lgu;)V m_40262_ + static + 0 o p_40263_ + 1 o p_40264_ + a (Lcfz;Lccx;)Z m_5882_ + 0 o p_40257_ + 1 o p_40258_ + a (Lcjp;Lcfz;)Ljava/util/Optional; m_266320_ + static + 0 o p_266790_ + 1 o p_266818_ + b (Lcfz;Lcjp;)Ljava/util/Optional; m_266140_ + static + 0 o p_266639_ + 1 o p_266640_ + c (Lcfz;Lcjp;)Z m_285723_ + static + 0 o p_286203_ + 1 o p_286204_ + c (Lcfz;)Z m_5861_ + 0 o p_266846_ + d (Lcfz;Lcjp;)Z m_285724_ + static + 0 o p_286205_ + 1 o p_286206_ + d (Lcfz;)I m_266159_ + 0 o p_266739_ + e (I)V m_40270_ + 0 o p_40271_ + e (Lcfz;)Z m_285725_ + 0 o p_286207_ + e (Lcfz;Lcjp;)Z m_266141_ + static + 0 o p_266641_ + 1 o p_266642_ + f (Lcfz;)Z m_285726_ + 0 o p_286208_ + g (Lcfz;)Z m_266142_ + 0 o p_266643_ + l ()Lccg; m_266183_ + m ()V m_6640_ + n ()Ljava/util/List; m_280632_ +ccz net/minecraft/world/inventory/SmokerMenu + (ILbyn;Lbdq;Lcbp;)V + 0 o p_40277_ + 1 o p_40278_ + 2 o p_40279_ + 3 o p_40280_ + (ILbyn;)V + 0 o p_40274_ + 1 o p_40275_ +cd net/minecraft/advancements/critereon/LevitationTrigger + a f_49112_ + ()V + static + ()V + a (Laig;Leei;I)V m_49116_ + 0 o p_49117_ + 1 o p_49118_ + 2 o p_49119_ + a ()Lacq; m_7295_ + a (Laig;Leei;ILcd$a;)Z m_49120_ + static + 0 o p_49121_ + 1 o p_49122_ + 2 o p_49123_ + 3 o p_49124_ + a (Lcom/google/gson/JsonObject;Lba;Lbe;)Lcd$a; m_7214_ + 0 o p_286359_ + 1 o p_286588_ + 2 o p_286241_ + b (Lcom/google/gson/JsonObject;Lba;Lbe;)Lar; m_7214_ + 0 o p_286542_ + 1 o p_286403_ + 2 o p_286281_ +cd$a net/minecraft/advancements/critereon/LevitationTrigger$TriggerInstance + a f_49134_ + b f_49135_ + (Lba;Lbf;Lcj$d;)V + 0 o p_286511_ + 1 o p_286806_ + 2 o p_286676_ + a (Lct;)Lcom/google/gson/JsonObject; m_7683_ + 0 o p_49147_ + a (Laig;Leei;I)Z m_49140_ + 0 o p_49141_ + 1 o p_49142_ + 2 o p_49143_ + a (Lbf;)Lcd$a; m_49144_ + static + 0 o p_49145_ +cda net/minecraft/world/inventory/StackedContentsCompatible + a (Lbys;)V m_5809_ + 0 o p_40281_ +cdb net/minecraft/world/inventory/StonecutterMenu + A f_40292_ + k f_150665_ + l f_150666_ + m f_40282_ + n f_40283_ + o f_40284_ + p f_150667_ + q f_150668_ + r f_150669_ + s f_150670_ + t f_40285_ + u f_40286_ + v f_40287_ + w f_40288_ + x f_40289_ + y f_40290_ + z f_40291_ + (ILbyn;)V + 0 o p_40294_ + 1 o p_40295_ + (ILbyn;Lcbq;)V + 0 o p_40297_ + 1 o p_40298_ + 2 o p_40299_ + a (Ljava/lang/Runnable;)V m_40323_ + 0 o p_40324_ + a ()Lcck; m_6772_ + a (Lbyo;I)Lcfz; m_7648_ + 0 o p_40328_ + 1 o p_40329_ + a (Lbyo;Lcmm;Lgu;)V m_40311_ + 0 o p_40312_ + 1 o p_40313_ + 2 o p_40314_ + a (Lbyo;)Z m_6875_ + 0 o p_40307_ + a (Lbdq;)V m_6199_ + 0 o p_40302_ + a (Lbdq;Lcfz;)V m_40303_ + 0 o p_40304_ + 1 o p_40305_ + a (Lcfz;Lccx;)Z m_5882_ + 0 o p_40321_ + 1 o p_40322_ + b (Lbyo;)V m_6877_ + 0 o p_40326_ + b (Lbyo;I)Z m_6366_ + 0 o p_40309_ + 1 o p_40310_ + e (I)Z m_40334_ + 0 o p_40335_ + l ()I m_40338_ + m ()Ljava/util/List; m_40339_ + n ()I m_40340_ + o ()Z m_40341_ + p ()V m_40342_ + q ()V m_40343_ + static +cdb$1 net/minecraft/world/inventory/StonecutterMenu$1 + c f_40344_ + (Lcdb;I)V + 0 o p_40346_ + 1 o p_40347_ + e ()V m_6596_ +cdb$2 net/minecraft/world/inventory/StonecutterMenu$2 + a f_40349_ + b f_40350_ + (Lcdb;Lbdq;IIILcbq;)V + 0 o p_40352_ + 1 o p_40353_ + 2 o p_40354_ + 3 o p_40355_ + 4 o p_40356_ + 5 o p_40357_ + a (Lcfz;)Z m_5857_ + 0 o p_40362_ + a (Lbyo;Lcfz;)V m_142406_ + 0 o p_150672_ + 1 o p_150673_ + a (Lcmm;Lgu;)V m_40363_ + 0 o p_40364_ + 1 o p_40365_ + i ()Ljava/util/List; m_280281_ +cdc net/minecraft/world/inventory/TransientCraftingContainer + c f_286951_ + d f_286956_ + e f_286972_ + f f_286998_ + (Lcbf;IILhn;)V + 0 o p_287708_ + 1 o p_287591_ + 2 o p_287609_ + 3 o p_287695_ + (Lcbf;II)V + 0 o p_287684_ + 1 o p_287629_ + 2 o p_287593_ + a (ILcfz;)V m_6836_ + 0 o p_287681_ + 1 o p_287620_ + a (I)Lcfz; m_8020_ + 0 o p_287712_ + a (Lbyo;)Z m_6542_ + 0 o p_287774_ + a (II)Lcfz; m_7407_ + 0 o p_287682_ + 1 o p_287576_ + a ()V m_6211_ + a (Lbys;)V m_5809_ + 0 o p_287653_ + ab_ ()Z m_7983_ + b ()I m_6643_ + b (I)Lcfz; m_8016_ + 0 o p_287637_ + e ()V m_6596_ + f ()I m_39347_ + g ()I m_39346_ + h ()Ljava/util/List; m_280657_ +cdd net/minecraft/world/inventory/package-info +cde net/minecraft/world/inventory/tooltip/BundleTooltip + a f_150674_ + b f_150675_ + (Lhn;I)V + 0 o p_150677_ + 1 o p_150678_ + a ()Lhn; m_150679_ + b ()I m_150680_ +cdf net/minecraft/world/inventory/tooltip/TooltipComponent +cdg net/minecraft/world/inventory/tooltip/package-info +cdh net/minecraft/world/item/AdventureModeCheck + a f_186321_ + b f_186322_ + c f_186323_ + d f_186324_ + (Ljava/lang/String;)V + 0 o p_186327_ + a (Ldcf;Ldcf;Z)Z m_186332_ + static + 0 o p_186333_ + 1 o p_186334_ + 2 o p_186335_ + a (Lcfz;Lhr;Ldcf;)Z m_204085_ + 0 o p_204086_ + 1 o p_204087_ + 2 o p_204088_ +cdi net/minecraft/world/item/AirItem + a f_40366_ + (Lcpn;Lcfu$a;)V + 0 o p_40368_ + 1 o p_40369_ + a (Lcfz;Lcmm;Ljava/util/List;Lchq;)V m_7373_ + 0 o p_40372_ + 1 o p_40373_ + 2 o p_40374_ + 3 o p_40375_ + a ()Ljava/lang/String; m_5524_ +cdj net/minecraft/world/item/ArmorItem + a f_40376_ + b f_265916_ + c f_40378_ + d f_40379_ + e f_265987_ + f f_40381_ + g f_40382_ + h f_40383_ + ()V + static + (Lcdk;Lcdj$a;Lcfu$a;)V + 0 o p_40386_ + 1 o p_266831_ + 2 o p_40388_ + a (Ljava/util/EnumMap;)V m_266451_ + static + 0 o p_266744_ + a (Lcmm;Lbyo;Lbdw;)Lbdy; m_7203_ + 0 o p_40395_ + 1 o p_40396_ + 2 o p_40397_ + a (Lcfz;Lcfz;)Z m_6832_ + 0 o p_40392_ + 1 o p_40393_ + a (Lgv;Lcfz;)Z m_40398_ + static + 0 o p_40399_ + 1 o p_40400_ + a (Lbfo;)Lcom/google/common/collect/Multimap; m_7167_ + 0 o p_40390_ + ak_ ()Lamg; m_150681_ + b ()Lcdj$a; m_266204_ + c ()I m_6473_ + d ()Lcdk; m_40401_ + e ()I m_40404_ + f ()F m_40405_ + g ()Lbfo; m_40402_ +cdj$1 net/minecraft/world/item/ArmorItem$1 + ()V + a (Lgv;Lcfz;)Lcfz; m_7498_ + 0 o p_40408_ + 1 o p_40409_ +cdj$a net/minecraft/world/item/ArmorItem$Type + a HELMET + b CHESTPLATE + c LEGGINGS + d BOOTS + e f_265980_ + f f_266116_ + g $VALUES + ()V + static + (Ljava/lang/String;ILbfo;Ljava/lang/String;)V + 0 o p_267174_ + 1 o p_266877_ + 2 o p_266754_ + 3 o p_266886_ + a ()Lbfo; m_266308_ + b ()Ljava/lang/String; m_266355_ + c ()[Lcdj$a; m_266245_ + static + valueOf (Ljava/lang/String;)Lcdj$a; valueOf + static + 0 o p_267127_ + values ()[Lcdj$a; values + static +cdk net/minecraft/world/item/ArmorMaterial + a (Lcdj$a;)I m_266425_ + 0 o p_266807_ + a ()I m_6646_ + b ()Lamg; m_7344_ + b (Lcdj$a;)I m_7366_ + 0 o p_267168_ + d ()Lciz; m_6230_ + e ()Ljava/lang/String; m_6082_ + f ()F m_6651_ + g ()F m_6649_ +cdl net/minecraft/world/item/ArmorMaterials + a LEATHER + b CHAIN + c IRON + d GOLD + e DIAMOND + f TURTLE + g NETHERITE + h f_265935_ + i f_266010_ + j f_40461_ + k f_40462_ + l f_265966_ + m f_40464_ + n f_40465_ + o f_40466_ + p f_40467_ + q f_40468_ + r $VALUES + ()V + static + (Ljava/lang/String;ILjava/lang/String;ILjava/util/EnumMap;ILamg;FFLjava/util/function/Supplier;)V + 0 o p_268253_ + 1 o p_268154_ + 2 o p_268171_ + 3 o p_268303_ + 4 o p_267941_ + 5 o p_268086_ + 6 o p_268145_ + 7 o p_268058_ + 8 o p_268180_ + 9 o p_268256_ + a ()I m_6646_ + a (Lcdj$a;)I m_266425_ + 0 o p_266745_ + a (Ljava/util/EnumMap;)V m_266150_ + static + 0 o p_266653_ + b ()Lamg; m_7344_ + b (Ljava/util/EnumMap;)V m_266152_ + static + 0 o p_266655_ + b (Lcdj$a;)I m_7366_ + 0 o p_266752_ + c (Ljava/util/EnumMap;)V m_266153_ + static + 0 o p_266656_ + c ()Ljava/lang/String; m_7912_ + d (Ljava/util/EnumMap;)V m_266146_ + static + 0 o p_266649_ + d ()Lciz; m_6230_ + e ()Ljava/lang/String; m_6082_ + e (Ljava/util/EnumMap;)V m_266147_ + static + 0 o p_266650_ + f ()F m_6651_ + f (Ljava/util/EnumMap;)V m_266151_ + static + 0 o p_266654_ + g (Ljava/util/EnumMap;)V m_266148_ + static + 0 o p_266651_ + g ()F m_6649_ + h (Ljava/util/EnumMap;)V m_266149_ + static + 0 o p_266652_ + h ()Lciz; m_40492_ + static + i ()Lciz; m_40493_ + static + j ()Lciz; m_40494_ + static + k ()Lciz; m_40495_ + static + l ()Lciz; m_40496_ + static + m ()Lciz; m_40497_ + static + n ()Lciz; m_40498_ + static + o ()[Lcdl; m_150682_ + static + valueOf (Ljava/lang/String;)Lcdl; valueOf + static + 0 o p_40500_ + values ()[Lcdl; values + static +cdm net/minecraft/world/item/ArmorStandItem + (Lcfu$a;)V + 0 o p_40503_ + a (Lcij;)Lbdx; m_6225_ + 0 o p_40510_ +cdn net/minecraft/world/item/ArrowItem + (Lcfu$a;)V + 0 o p_40512_ + a (Lcmm;Lcfz;Lbfz;)Lbyu; m_6394_ + 0 o p_40513_ + 1 o p_40514_ + 2 o p_40515_ +cdo net/minecraft/world/item/AxeItem + a f_150683_ + ()V + static + (Lchm;FFLcfu$a;)V + 0 o p_40521_ + 1 o p_40522_ + 2 o p_40523_ + 3 o p_40524_ + a (Lcij;)Lbdx; m_6225_ + 0 o p_40529_ + a (Ldcb;Lcpn;)Ldcb; m_150687_ + static + 0 o p_150688_ + 1 o p_150689_ + a (Lcij;Lbyo;)V m_150684_ + static + 0 o p_150685_ + 1 o p_150686_ + b (Ldcb;Lcpn;)Ldcb; m_150692_ + static + 0 o p_150693_ + 1 o p_150694_ + b (Ldcb;)Ljava/util/Optional; m_150690_ + 0 o p_150691_ +cdp net/minecraft/world/item/BannerItem + c f_150695_ + (Lcpn;Lcpn;Lcfu$a;)V + 0 o p_40534_ + 1 o p_40535_ + 2 o p_40536_ + a (Lcfz;Lcmm;Ljava/util/List;Lchq;)V m_7373_ + 0 o p_40538_ + 1 o p_40539_ + 2 o p_40540_ + 3 o p_40541_ + a (Lcfz;Ljava/util/List;)V m_40542_ + static + 0 o p_40543_ + 1 o p_40544_ + a (Ljava/util/List;Lcen;Ljava/lang/String;)V m_220003_ + static + 0 o p_220004_ + 1 o p_220005_ + 2 o p_220006_ + a (Lacp;)Ljava/lang/String; m_220001_ + static + 0 o p_220002_ + b ()Lcen; m_40545_ +cdq net/minecraft/world/item/BannerPatternItem + a f_40546_ + (Lanl;Lcfu$a;)V + 0 o p_220008_ + 1 o p_220009_ + a (Lcfz;Lcmm;Ljava/util/List;Lchq;)V m_7373_ + 0 o p_40551_ + 1 o p_40552_ + 2 o p_40553_ + 3 o p_40554_ + b ()Lanl; m_220010_ + d ()Ltj; m_40556_ +cdr net/minecraft/world/item/BedItem + (Lcpn;Lcfu$a;)V + 0 o p_40558_ + 1 o p_40559_ + a (Lcih;Ldcb;)Z m_7429_ + 0 o p_40561_ + 1 o p_40562_ +cds net/minecraft/world/item/BlockItem + a f_150696_ + b f_150697_ + c f_40563_ + (Lcpn;Lcfu$a;)V + 0 o p_40565_ + 1 o p_40566_ + a (Lcij;)Lbdx; m_6225_ + 0 o p_40581_ + a (Lcih;)Lbdx; m_40576_ + 0 o p_40577_ + a (Lcfz;Lcmm;Ljava/util/List;Lchq;)V m_7373_ + 0 o p_40572_ + 1 o p_40573_ + 2 o p_40574_ + 3 o p_40575_ + a (Ldcb;Ldde;Ljava/lang/Comparable;)Ldcb; m_40589_ + static + 0 o p_40590_ + 1 o p_40591_ + 2 o p_40592_ + a ()Ljava/lang/String; m_5524_ + a (Ldcb;)Lamg; m_40587_ + 0 o p_40588_ + a (Ljava/util/Map;Lcfu;)V m_6192_ + 0 o p_40607_ + 1 o p_40608_ + a (Lgu;Lcmm;Lcfz;Ldcb;)Ldcb; m_40602_ + 0 o p_40603_ + 1 o p_40604_ + 2 o p_40605_ + 3 o p_40606_ + a (Lcmm;Lbyo;Lgu;Lcfz;)Z m_40582_ + static + 0 o p_40583_ + 1 o p_40584_ + 2 o p_40585_ + 3 o p_40586_ + a (Lcfz;Lczp;Lqr;)V m_186338_ + static + 0 o p_186339_ + 1 o p_186340_ + 2 o p_186341_ + a (Lgu;Lcmm;Lbyo;Lcfz;Ldcb;)Z m_7274_ + 0 o p_40597_ + 1 o p_40598_ + 2 o p_40599_ + 3 o p_40600_ + 4 o p_40601_ + a (Lcih;Ldcb;)Z m_7429_ + 0 o p_40578_ + 1 o p_40579_ + a (Ldcb;Ldde;Ljava/lang/String;)Ldcb; m_40593_ + static + 0 o p_40594_ + 1 o p_40595_ + 2 o p_40596_ + a (Lbvh;)V m_142023_ + 0 o p_150700_ + a (Lcfz;)Lqr; m_186336_ + static + 0 o p_186337_ + ah_ ()Z m_142095_ + b (Lcih;Ldcb;)Z m_40610_ + 0 o p_40611_ + 1 o p_40612_ + b (Lcih;)Lcih; m_7732_ + 0 o p_40609_ + c (Lcih;)Ldcb; m_5965_ + 0 o p_40613_ + d ()Z m_6652_ + e ()Lcpn; m_40614_ + m ()Lcaw; m_245183_ +cdt net/minecraft/world/item/BoatItem + a f_40615_ + b f_40616_ + c f_220011_ + ()V + static + (ZLcah$b;Lcfu$a;)V + 0 o p_220013_ + 1 o p_220014_ + 2 o p_220015_ + a (Lcmm;Leeg;)Lcah; m_220016_ + 0 o p_220017_ + 1 o p_220018_ + a (Lcmm;Lbyo;Lbdw;)Lbdy; m_7203_ + 0 o p_40622_ + 1 o p_40623_ + 2 o p_40624_ +cdu net/minecraft/world/item/BoneMealItem + a f_150701_ + b f_150702_ + c f_150703_ + (Lcfu$a;)V + 0 o p_40626_ + a (Lcij;)Lbdx; m_6225_ + 0 o p_40637_ + a (Lcmn;Lgu;I)V m_40638_ + static + 0 o p_40639_ + 1 o p_40640_ + 2 o p_40641_ + a (Lhe;)Ldcb; m_204094_ + static + 0 o p_204095_ + a (Lcmm;Lhi$c;)Ljava/util/Optional; m_204089_ + static + 0 o p_204090_ + 1 o p_204091_ + a (Lcfz;Lcmm;Lgu;)Z m_40627_ + static + 0 o p_40628_ + 1 o p_40629_ + 2 o p_40630_ + a (Lcfz;Lcmm;Lgu;Lha;)Z m_40631_ + static + 0 o p_40632_ + 1 o p_40633_ + 2 o p_40634_ + 3 o p_40635_ + a (Ldca$a;)Z m_204092_ + static + 0 o p_204093_ + b (Lhe;)Ldcb; m_204099_ + static + 0 o p_204100_ + b (Lcmm;Lhi$c;)Ljava/util/Optional; m_204096_ + static + 0 o p_204097_ + 1 o p_204098_ +cdv net/minecraft/world/item/BookItem + (Lcfu$a;)V + 0 o p_40643_ + c ()I m_6473_ + d_ (Lcfz;)Z m_8120_ + 0 o p_40646_ +cdw net/minecraft/world/item/BottleItem + (Lcfu$a;)V + 0 o p_40648_ + a (Lbfg;)Z m_289173_ + static + 0 o p_289499_ + a (Lcfz;Lbyo;Lcfz;)Lcfz; m_40651_ + 0 o p_40652_ + 1 o p_40653_ + 2 o p_40654_ + a (Lcmm;Lbyo;Lbdw;)Lbdy; m_7203_ + 0 o p_40656_ + 1 o p_40657_ + 2 o p_40658_ +cdx net/minecraft/world/item/BowItem + a f_150704_ + b f_150705_ + (Lcfu$a;)V + 0 o p_40660_ + a (Lbyo;Lbyo;)V m_289174_ + static + 0 o p_289500_ + 1 o p_289501_ + a (I)F m_40661_ + static + 0 o p_40662_ + a (Lcmm;Lbyo;Lbdw;)Lbdy; m_7203_ + 0 o p_40672_ + 1 o p_40673_ + 2 o p_40674_ + a (Lcfz;Lcmm;Lbfz;I)V m_5551_ + 0 o p_40667_ + 1 o p_40668_ + 2 o p_40669_ + 3 o p_40670_ + b ()Ljava/util/function/Predicate; m_6437_ + b (Lcfz;)I m_8105_ + 0 o p_40680_ + c (Lcfz;)Lchs; m_6164_ + 0 o p_40678_ + d ()I m_6615_ +cdy net/minecraft/world/item/BowlFoodItem + (Lcfu$a;)V + 0 o p_40682_ + a (Lcfz;Lcmm;Lbfz;)Lcfz; m_5922_ + 0 o p_40684_ + 1 o p_40685_ + 2 o p_40686_ +cdz net/minecraft/world/item/BrushItem + a f_278125_ + b f_271380_ + c f_279643_ + ()V + static + (Lcfu$a;)V + 0 o p_272907_ + a (Lcij;)Lbdx; m_6225_ + 0 o p_272607_ + a (Lbfz;)Leeg; m_280200_ + 0 o p_281264_ + a (Lbfo;Lbfz;)V m_278588_ + static + 0 o p_279043_ + 1 o p_279044_ + a (Lcmm;Leee;Ldcb;Leei;Lbft;)V m_278154_ + 0 o p_278327_ + 1 o p_278272_ + 2 o p_278235_ + 3 o p_278337_ + 4 o p_285071_ + a (Lbfj;)Z m_279953_ + static + 0 o p_281111_ + a (Lcmm;Lbfz;Lcfz;I)V m_5929_ + 0 o p_273467_ + 1 o p_273619_ + 2 o p_273316_ + 3 o p_273101_ + b (Lcfz;)I m_8105_ + 0 o p_272765_ + c (Lcfz;)Lchs; m_6164_ + 0 o p_273490_ +cdz$1 net/minecraft/world/item/BrushItem$1 + a f_271131_ + ()V + static +cdz$a net/minecraft/world/item/BrushItem$DustParticlesDelta + a f_271456_ + b f_271284_ + c f_271522_ + d f_271382_ + e f_271440_ + (DDD)V + 0 o f_271456_ + 1 o f_271284_ + 2 o f_271522_ + a (Leei;Lha;)Lcdz$a; m_271695_ + static + 0 o p_273421_ + 1 o p_272987_ + a ()D f_271456_ + b ()D f_271284_ + c ()D f_271522_ + equals (Ljava/lang/Object;)Z equals + 0 o p_273751_ + hashCode ()I hashCode + toString ()Ljava/lang/String; toString +ce net/minecraft/advancements/critereon/LightPredicate + a f_51335_ + b f_51336_ + ()V + static + (Lcj$d;)V + 0 o p_51339_ + a (Lcom/google/gson/JsonElement;)Lce; m_51344_ + static + 0 o p_51345_ + a ()Lcom/google/gson/JsonElement; m_51340_ + a (Laif;Lgu;)Z m_51341_ + 0 o p_51342_ + 1 o p_51343_ +ce$a net/minecraft/advancements/critereon/LightPredicate$Builder + a f_153101_ + ()V + a (Lcj$d;)Lce$a; m_153104_ + 0 o p_153105_ + a ()Lce$a; m_153103_ + static + b ()Lce; m_153106_ +cea net/minecraft/world/item/BucketItem + a f_40687_ + (Ldxd;Lcfu$a;)V + 0 o p_40689_ + 1 o p_40690_ + a (Lbyo;Lamg;)V m_150707_ + static + 0 o p_150708_ + 1 o p_150709_ + a (Lcfz;Lbyo;)Lcfz; m_40699_ + static + 0 o p_40700_ + 1 o p_40701_ + a (Lcmm;Lbyo;Lbdw;)Lbdy; m_7203_ + 0 o p_40703_ + 1 o p_40704_ + 2 o p_40705_ + a (Lbyo;Lcmm;Lgu;Leee;)Z m_142073_ + 0 o p_150716_ + 1 o p_150717_ + 2 o p_150718_ + 3 o p_150719_ + a (Lbyo;Lcmm;Lcfz;Lgu;)V m_142131_ + 0 o p_150711_ + 1 o p_150712_ + 2 o p_150713_ + 3 o p_150714_ + a (Lbyo;Lcmn;Lgu;)V m_7718_ + 0 o p_40696_ + 1 o p_40697_ + 2 o p_40698_ +ceb net/minecraft/world/item/BundleItem + a f_150720_ + b f_150721_ + c f_150722_ + d f_150723_ + ()V + static + (Lcfu$a;)V + 0 o p_150726_ + a (Lcfz;Lqx;)Ljava/util/Optional; m_150756_ + static + 0 o p_150757_ + 1 o p_150758_ + a (Lcfz;Lcmm;Ljava/util/List;Lchq;)V m_7373_ + 0 o p_150749_ + 1 o p_150750_ + 2 o p_150751_ + 3 o p_150752_ + a (Lcfz;Lcfz;Lccx;Lcbn;Lbyo;Lbgs;)Z m_142305_ + 0 o p_150742_ + 1 o p_150743_ + 2 o p_150744_ + 3 o p_150745_ + 4 o p_150746_ + 5 o p_150747_ + a (Lbvh;)V m_142023_ + 0 o p_150728_ + a (Lcfz;Lqr;)Z m_186348_ + static + 0 o p_186349_ + 1 o p_186350_ + a (Lbyo;Lbgs;Lcfz;)V m_186344_ + 0 o p_186345_ + 1 o p_186346_ + 2 o p_186347_ + a (Lbfj;)V m_186342_ + 0 o p_186343_ + a (Lcmm;Lbyo;Lbdw;)Lbdy; m_7203_ + 0 o p_150760_ + 1 o p_150761_ + 2 o p_150762_ + a (Lcfz;Lccx;Lcbn;Lbyo;)Z m_142207_ + 0 o p_150733_ + 1 o p_150734_ + 2 o p_150735_ + 3 o p_150736_ + a (Lcfz;Lbyo;)Z m_150729_ + static + 0 o p_150730_ + 1 o p_150731_ + a (Lcfz;Lccx;Lcfz;)V m_150737_ + static + 0 o p_150738_ + 1 o p_150739_ + 2 o p_150740_ + b (Lbfj;)V m_186351_ + 0 o p_186352_ + b (Lcfz;Lcfz;)I m_150763_ + static + 0 o p_150764_ + 1 o p_150765_ + c (Lbfj;)V m_186353_ + 0 o p_186354_ + d (Lcfz;)F m_150766_ + static + 0 o p_150767_ + e (Lcfz;)Z m_142522_ + 0 o p_150769_ + f (Lcfz;)I m_142158_ + 0 o p_150771_ + g (Lcfz;)I m_142159_ + 0 o p_150773_ + h (Lcfz;)Ljava/util/Optional; m_142422_ + 0 o p_150775_ + k (Lcfz;)I m_150776_ + static + 0 o p_150777_ + o (Lcfz;)I m_150778_ + static + 0 o p_150779_ + p (Lcfz;)Ljava/util/Optional; m_150780_ + static + 0 o p_150781_ + q (Lcfz;)Ljava/util/stream/Stream; m_150782_ + static + 0 o p_150783_ + r (Lcfz;)I m_186355_ + static + 0 o p_186356_ +cec net/minecraft/world/item/ChorusFruitItem + (Lcfu$a;)V + 0 o p_40710_ + a (Lcfz;Lcmm;Lbfz;)Lcfz; m_5922_ + 0 o p_40712_ + 1 o p_40713_ + 2 o p_40714_ +ced net/minecraft/world/item/CompassItem + a f_150786_ + b f_150787_ + c f_150788_ + d f_40715_ + ()V + static + (Lcfu$a;)V + 0 o p_40718_ + a (Lcij;)Lbdx; m_6225_ + 0 o p_40726_ + a (Lcmm;)Lhd; m_220019_ + static + 0 o p_220020_ + a (Lacp;Lgu;Lqr;)V m_40732_ + 0 o p_40733_ + 1 o p_40734_ + 2 o p_40735_ + a (Lqr;Lrk;)V m_40729_ + static + 0 o p_40730_ + 1 o p_40731_ + a (Lqr;)Lhd; m_220021_ + static + 0 o p_220022_ + a (Lcfz;Lcmm;Lbfj;IZ)V m_6883_ + 0 o p_40720_ + 1 o p_40721_ + 2 o p_40722_ + 3 o p_40723_ + 4 o p_40724_ + c (Lqr;)Ljava/util/Optional; m_40727_ + static + 0 o p_40728_ + d (Lcfz;)Z m_40736_ + static + 0 o p_40737_ + i (Lcfz;)Z m_5812_ + 0 o p_40739_ + j (Lcfz;)Ljava/lang/String; m_5671_ + 0 o p_40741_ +cee net/minecraft/world/item/ComplexItem + (Lcfu$a;)V + 0 o p_40743_ + a (Lcfz;Lcmm;Lbyo;)Luo; m_7233_ + 0 o p_40744_ + 1 o p_40745_ + 2 o p_40746_ + ad_ ()Z m_7807_ +cef net/minecraft/world/item/CreativeModeTab + a f_40764_ + b f_40766_ + c f_40767_ + d f_40768_ + e f_257018_ + f f_256931_ + g f_256967_ + h f_256819_ + i f_40770_ + j f_243839_ + k f_243841_ + l f_256965_ + m f_256912_ + n f_256824_ + (Lcef$f;ILcef$h;Lsw;Ljava/util/function/Supplier;Lcef$b;)V + 0 o p_260217_ + 1 o p_259557_ + 2 o p_260176_ + 3 o p_260100_ + 4 o p_259543_ + 5 o p_259085_ + a (Ljava/util/function/Consumer;)V m_257882_ + 0 o p_259669_ + a (Lcfz;)Z m_257694_ + 0 o p_259317_ + a ()Lsw; m_40786_ + a (Lcef$f;I)Lcef$a; m_257815_ + static + 0 o p_259342_ + 1 o p_260312_ + a (Lcef$d;)V m_269498_ + 0 o p_270156_ + b ()Lcfz; m_40787_ + c ()Ljava/lang/String; m_40788_ + d ()Z m_40789_ + e ()Z m_40791_ + f ()I m_257903_ + g ()Lcef$f; m_258064_ + h ()Z m_257905_ + i ()Z m_257497_ + j ()Z m_6563_ + k ()Lcef$h; m_257962_ + l ()Ljava/util/Collection; m_260957_ + m ()Ljava/util/Collection; m_261235_ + n ()V m_257466_ + o ()Ljava/lang/IllegalStateException; m_280646_ +cef$1 net/minecraft/world/item/CreativeModeTab$1 + a f_244541_ + ()V + static +cef$a net/minecraft/world/item/CreativeModeTab$Builder + a f_256756_ + b f_256796_ + c f_256977_ + d f_256856_ + e f_256981_ + f f_256953_ + g f_256992_ + h f_256851_ + i f_256854_ + j f_256847_ + k f_257036_ + ()V + static + (Lcef$f;I)V + 0 o p_259171_ + 1 o p_259661_ + a (Lcef$d;Lcef$e;)V m_257969_ + static + 0 o p_270422_ + 1 o p_259433_ + a (Ljava/lang/String;)Lcef$a; m_257609_ + 0 o p_259981_ + a (Ljava/util/function/Supplier;)Lcef$a; m_257737_ + 0 o p_259333_ + a (Lsw;)Lcef$a; m_257941_ + 0 o p_259616_ + a (Lcef$h;)Lcef$a; m_257623_ + 0 o p_259283_ + a (Lcef$b;)Lcef$a; m_257501_ + 0 o p_259814_ + a ()Lcef$a; m_257826_ + b ()Lcef$a; m_257809_ + c ()Lcef$a; m_257794_ + d ()Lcef; m_257652_ + e ()Lcfz; m_257579_ + static +cef$b net/minecraft/world/item/CreativeModeTab$DisplayItemsGenerator + accept (Lcef$d;Lcef$e;)V m_257865_ + 0 o p_270258_ + 1 o p_259752_ +cef$c net/minecraft/world/item/CreativeModeTab$ItemDisplayBuilder + a f_244363_ + b f_244585_ + c f_244054_ + d f_243878_ + (Lcef;Lcaw;)V + 0 o p_251040_ + 1 o p_249331_ + a (Lcfz;Lcef$g;)V m_246267_ + 0 o p_250391_ + 1 o p_251472_ +cef$d net/minecraft/world/item/CreativeModeTab$ItemDisplayParameters + a f_268709_ + b f_268429_ + c f_268485_ + (Lcaw;ZLhg$b;)V + 0 o f_268709_ + 1 o f_268429_ + 2 o f_268485_ + a ()Lcaw; f_268709_ + a (Lcaw;ZLhg$b;)Z m_269247_ + 0 o p_270338_ + 1 o p_270835_ + 2 o p_270575_ + b ()Z f_268429_ + c ()Lhg$b; f_268485_ + equals (Ljava/lang/Object;)Z equals + 0 o p_270097_ + hashCode ()I hashCode + toString ()Ljava/lang/String; toString +cef$e net/minecraft/world/item/CreativeModeTab$Output + a (Lcfz;Lcef$g;)V m_246267_ + 0 o p_251806_ + 1 o p_249603_ + a (Lcml;)V m_246326_ + 0 o p_248610_ + a (Lcef$g;Lcfz;)V m_247606_ + 0 o p_250983_ + 1 o p_252337_ + a (Lcfz;)V m_246342_ + 0 o p_249977_ + a (Ljava/util/Collection;Lcef$g;)V m_246233_ + 0 o p_251548_ + 1 o p_252285_ + a (Ljava/util/Collection;)V m_246601_ + 0 o p_250244_ + a (Lcml;Lcef$g;)V m_245282_ + 0 o p_251528_ + 1 o p_249821_ +cef$f net/minecraft/world/item/CreativeModeTab$Row + a TOP + b BOTTOM + c $VALUES + ()V + static + (Ljava/lang/String;I)V + 0 o p_259766_ + 1 o p_259955_ + a ()[Lcef$f; m_257616_ + static + valueOf (Ljava/lang/String;)Lcef$f; valueOf + static + 0 o p_259650_ + values ()[Lcef$f; values + static +cef$g net/minecraft/world/item/CreativeModeTab$TabVisibility + a PARENT_AND_SEARCH_TABS + b PARENT_TAB_ONLY + c SEARCH_TAB_ONLY + d $VALUES + ()V + static + (Ljava/lang/String;I)V + 0 o p_251869_ + 1 o p_249216_ + a ()[Lcef$g; m_246258_ + static + valueOf (Ljava/lang/String;)Lcef$g; valueOf + static + 0 o p_249186_ + values ()[Lcef$g; values + static +cef$h net/minecraft/world/item/CreativeModeTab$Type + a CATEGORY + b INVENTORY + c HOTBAR + d SEARCH + e $VALUES + ()V + static + (Ljava/lang/String;I)V + 0 o p_259131_ + 1 o p_259867_ + a ()[Lcef$h; m_257818_ + static + valueOf (Ljava/lang/String;)Lcef$h; valueOf + static + 0 o p_259622_ + values ()[Lcef$h; values + static +ceg net/minecraft/world/item/CreativeModeTabs + a f_256788_ + b f_256725_ + c f_256776_ + d f_256791_ + e f_257028_ + f f_256917_ + g f_256750_ + h f_256869_ + i f_256797_ + j f_256839_ + k f_256968_ + l f_256731_ + m f_256837_ + n f_257039_ + o f_268478_ + p f_268496_ + ()V + static + ()V + a (Lhe$c;)Z m_268965_ + static + 0 o p_270012_ + a (Lcfu;Lcef$e;Lcef$g;Lhi$c;)V m_268968_ + static + 0 o p_270018_ + 1 o p_270019_ + 2 o p_270020_ + 3 o p_270021_ + a (Lcfu;Lhe$c;)Lcfz; m_268952_ + static + 0 o p_269985_ + 1 o p_269986_ + a (Lhr;)Lcef; m_280294_ + static + 0 o p_283144_ + a (Lcef$d;)V m_269421_ + static + 0 o p_270447_ + a (Lcef$e;Lhg$c;Ljava/util/function/Predicate;Lcef$g;)V m_269255_ + static + 0 o p_271007_ + 1 o p_270618_ + 2 o p_270878_ + 3 o p_270261_ + a (Lckg;I)Lcfz; m_268962_ + static + 0 o p_270005_ + 1 o p_270006_ + a (Lcef$e;Lhg;Lcfu;Lanl;Lcef$g;)V m_269481_ + static + 0 o p_270699_ + 1 o p_270948_ + 2 o p_270421_ + 3 o p_270798_ + 4 o p_270817_ + a (Lcef$e;Lhg$c;)V m_268966_ + static + 0 o p_270013_ + 1 o p_270014_ + a (Lcef;)Z m_257584_ + static + 0 o p_260124_ + a (Lcaw;ZLhg$b;)Z m_269226_ + static + 0 o p_270988_ + 1 o p_270090_ + 2 o p_270799_ + a (Ljava/lang/String;)Lacp; m_280238_ + static + 0 o p_281544_ + a (Lcfu;Lhe;)Lcfz; m_268956_ + static + 0 o p_269994_ + 1 o p_269995_ + a (Lcef$e;Lhg;Lcfu;Lcef$g;)V m_269246_ + static + 0 o p_270129_ + 1 o p_270334_ + 2 o p_270968_ + 3 o p_270778_ + a (Lcef$e;Lhg;Ljava/util/Set;Lcef$g;)V m_269182_ + static + 0 o p_270868_ + 1 o p_270903_ + 2 o p_270380_ + 3 o p_270407_ + a (Lckg;)Ljava/util/stream/Stream; m_268970_ + static + 0 o p_270024_ + a (Lcef$d;Lcef;)V m_268959_ + static + 0 o p_270001_ + 1 o p_270002_ + a ()V m_280019_ + static + a (Lhr;Lcef$d;Lcef$e;)V m_279954_ + static + 0 o p_281112_ + 1 o p_281113_ + 2 o p_281114_ + a (Lcef$e;Lcef$g;Lcfz;)V m_268964_ + static + 0 o p_270009_ + 1 o p_270010_ + 2 o p_270011_ + a (Lcef$e;Ljava/util/Set;Lhg$c;)V m_268951_ + static + 0 o p_269982_ + 1 o p_269983_ + 2 o p_269984_ + a (Lhe;)Z m_268960_ + static + 0 o p_270003_ + a (Lcef$d;Lcef$e;)V m_268950_ + static + 0 o p_269980_ + 1 o p_269981_ + a (Lbvd;)I m_268961_ + static + 0 o p_270004_ + a (Lcef$e;Lcef$g;Lhe$c;)V m_268949_ + static + 0 o p_269977_ + 1 o p_269978_ + 2 o p_269979_ + a (Ljava/util/Set;Lckg;)Z m_268954_ + static + 0 o p_269990_ + 1 o p_269991_ + a (Lcef$e;Lcef$g;)V m_257855_ + static + 0 o p_259484_ + 1 o p_260051_ + b (Lcef$e;Lcef$g;)V m_257852_ + static + 0 o p_259586_ + 1 o p_259372_ + b (Lcef$d;Lcef$e;)V m_271663_ + static + 0 o p_272538_ + 1 o p_272539_ + b (Lcef$d;Lcef;)V m_268957_ + static + 0 o p_269996_ + 1 o p_269997_ + b (Lhe;)Z m_268977_ + static + 0 o p_270037_ + b (Lcef$e;Lhg;Ljava/util/Set;Lcef$g;)V m_269335_ + static + 0 o p_270961_ + 1 o p_270628_ + 2 o p_271024_ + 3 o p_270805_ + b ()Lcef; m_257543_ + static + b (Lckg;)Lcfz; m_268978_ + static + 0 o p_270038_ + b (Ljava/util/Set;Lckg;)Z m_268963_ + static + 0 o p_270007_ + 1 o p_270008_ + b (Lcef;)Z m_257947_ + static + 0 o p_259647_ + b (Lcef$e;Lcef$g;Lcfz;)V m_268967_ + static + 0 o p_270015_ + 1 o p_270016_ + 2 o p_270017_ + b (Lcef$e;Lhg$c;)V m_268955_ + static + 0 o p_269992_ + 1 o p_269993_ + c (Lcef$e;Lhg$c;)V m_268974_ + static + 0 o p_270031_ + 1 o p_270032_ + c ()Ljava/util/List; m_257388_ + static + c (Lcef$d;Lcef$e;)V m_276748_ + static + 0 o p_277299_ + 1 o p_277300_ + c (Lcef$e;Lcef$g;Lcfz;)V m_268953_ + static + 0 o p_269987_ + 1 o p_269988_ + 2 o p_269989_ + d ()Ljava/util/List; m_257478_ + static + d (Lcef$d;Lcef$e;)V m_257769_ + static + 0 o p_270190_ + 1 o p_259709_ + d (Lcef$e;Lcef$g;Lcfz;)V m_268958_ + static + 0 o p_269998_ + 1 o p_269999_ + 2 o p_270000_ + d (Lcef$e;Lhg$c;)V m_268976_ + static + 0 o p_270035_ + 1 o p_270036_ + e (Lcef$d;Lcef$e;)V m_257664_ + static + 0 o p_271005_ + 1 o p_259465_ + e ()Lcef; m_258007_ + static + e (Lcef$e;Lhg$c;)V m_268971_ + static + 0 o p_270025_ + 1 o p_270026_ + f ()Ljava/util/stream/Stream; m_280350_ + static + f (Lcef$d;Lcef$e;)V m_284092_ + static + 0 o p_284857_ + 1 o p_284858_ + g (Lcef$d;Lcef$e;)V m_257428_ + static + 0 o p_270617_ + 1 o p_259444_ + g ()Lcfz; m_257519_ + static + h (Lcef$d;Lcef$e;)V m_276747_ + static + 0 o p_277297_ + 1 o p_277298_ + h ()Lcfz; m_257753_ + static + i ()Lcfz; m_257885_ + static + i (Lcef$d;Lcef$e;)V m_288178_ + static + 0 o p_288945_ + 1 o p_288946_ + j (Lcef$d;Lcef$e;)V m_268975_ + static + 0 o p_270033_ + 1 o p_270034_ + j ()Lcfz; m_257481_ + static + k ()Lcfz; m_257978_ + static + k (Lcef$d;Lcef$e;)V m_257431_ + static + 0 o p_270425_ + 1 o p_260158_ + l ()Lcfz; m_257948_ + static + m ()Lcfz; m_257535_ + static + n ()Lcfz; m_257842_ + static + o ()Lcfz; m_257437_ + static + p ()Lcfz; m_257493_ + static + q ()Lcfz; m_257454_ + static + r ()Lcfz; m_257637_ + static + s ()Lcfz; m_257722_ + static + t ()Lcfz; m_257847_ + static +ceh net/minecraft/world/item/CrossbowItem + a f_150789_ + b f_150790_ + e f_150791_ + f f_150792_ + g f_40847_ + h f_40848_ + i f_150793_ + j f_150794_ + k f_150795_ + r f_150796_ + (Lcfu$a;)V + 0 o p_40850_ + a (Lbfz;Lcfz;Lcfz;ZZ)Z m_40862_ + static + 0 o p_40863_ + 1 o p_40864_ + 2 o p_40865_ + 3 o p_40866_ + 4 o p_40867_ + a (Lcmm;Lbfz;Lbdw;Lcfz;Lcfz;FZFFF)V m_40894_ + static + 0 o p_40895_ + 1 o p_40896_ + 2 o p_40897_ + 3 o p_40898_ + 4 o p_40899_ + 5 o p_40900_ + 6 o p_40901_ + 7 o p_40902_ + 8 o p_40903_ + 9 o p_40904_ + a (Lcmm;Lbfz;Lcfz;)V m_40905_ + static + 0 o p_40906_ + 1 o p_40907_ + 2 o p_40908_ + a (Lcfz;Lcmm;Ljava/util/List;Lchq;)V m_7373_ + 0 o p_40880_ + 1 o p_40881_ + 2 o p_40882_ + 3 o p_40883_ + a (Lbfz;Lcfz;)Z m_40859_ + static + 0 o p_40860_ + 1 o p_40861_ + a (Lbdw;Lbfz;)V m_40856_ + static + 0 o p_40857_ + 1 o p_40858_ + a (Lcfu;Lcfz;)Z m_40868_ + static + 0 o p_40869_ + 1 o p_40870_ + a (Lcfz;Lcfu;)Z m_40871_ + static + 0 o p_40872_ + 1 o p_40873_ + a (Lcmm;Lbfz;Lcfz;Lcfz;)Lbyu; m_40914_ + static + 0 o p_40915_ + 1 o p_40916_ + 2 o p_40917_ + 3 o p_40918_ + a (Lcfz;Z)V m_40884_ + static + 0 o p_40885_ + 1 o p_40886_ + a (Lcmm;Lbfz;Lcfz;I)V m_5929_ + 0 o p_40910_ + 1 o p_40911_ + 2 o p_40912_ + 3 o p_40913_ + a (Lcfz;Lcmm;Lbfz;I)V m_5551_ + 0 o p_40875_ + 1 o p_40876_ + 2 o p_40877_ + 3 o p_40878_ + a (Lcmm;Lbyo;Lbdw;)Lbdy; m_7203_ + 0 o p_40920_ + 1 o p_40921_ + 2 o p_40922_ + a (ILcfz;)F m_40853_ + static + 0 o p_40854_ + 1 o p_40855_ + a (ZLapf;)F m_220025_ + static + 0 o p_220026_ + 1 o p_220027_ + a (I)Lamg; m_40851_ + 0 o p_40852_ + a (Lcmm;Lbfz;Lbdw;Lcfz;FF)V m_40887_ + static + 0 o p_40888_ + 1 o p_40889_ + 2 o p_40890_ + 3 o p_40891_ + 4 o p_40892_ + 5 o p_40893_ + a (Lapf;)[F m_220023_ + static + 0 o p_220024_ + b (Lcfz;Lcfz;)V m_40928_ + static + 0 o p_40929_ + 1 o p_40930_ + b (Lcfz;)I m_8105_ + 0 o p_40938_ + b ()Ljava/util/function/Predicate; m_6437_ + c (Lcfz;)Lchs; m_6164_ + 0 o p_40935_ + d ()I m_6615_ + d (Lcfz;)Z m_40932_ + static + 0 o p_40933_ + e ()Ljava/util/function/Predicate; m_6442_ + k (Lcfz;)I m_40939_ + static + 0 o p_40940_ + l (Lcfz;)Z m_41463_ + 0 o p_150801_ + o (Lcfz;)F m_40945_ + static + 0 o p_40946_ + p (Lcfz;)Ljava/util/List; m_40941_ + static + 0 o p_40942_ + q (Lcfz;)V m_40943_ + static + 0 o p_40944_ +cei net/minecraft/world/item/DebugStickItem + (Lcfu$a;)V + 0 o p_40948_ + a (Lcij;)Lbdx; m_6225_ + 0 o p_40960_ + a (Lbyo;Lsw;)V m_40956_ + static + 0 o p_40957_ + 1 o p_40958_ + a (Ldcb;Ldde;Z)Ldcb; m_40969_ + static + 0 o p_40970_ + 1 o p_40971_ + 2 o p_40972_ + a (Ljava/lang/Iterable;Ljava/lang/Object;Z)Ljava/lang/Object; m_40973_ + static + 0 o p_40974_ + 1 o p_40975_ + 2 o p_40976_ + a (Ldcb;Ldde;)Ljava/lang/String; m_40966_ + static + 0 o p_40967_ + 1 o p_40968_ + a (Lbyo;Ldcb;Lcmn;Lgu;ZLcfz;)Z m_150802_ + 0 o p_150803_ + 1 o p_150804_ + 2 o p_150805_ + 3 o p_150806_ + 4 o p_150807_ + 5 o p_150808_ + a (Ldcb;Lcmm;Lgu;Lbyo;)Z m_6777_ + 0 o p_40962_ + 1 o p_40963_ + 2 o p_40964_ + 3 o p_40965_ + i (Lcfz;)Z m_5812_ + 0 o p_40978_ +cej net/minecraft/world/item/DiggerItem + a f_40979_ + b f_40980_ + c f_40981_ + d f_40982_ + (FFLchm;Lanl;Lcfu$a;)V + 0 o p_204108_ + 1 o p_204109_ + 2 o p_204110_ + 3 o p_204111_ + 4 o p_204112_ + a (Lbfz;)V m_40991_ + static + 0 o p_40992_ + a (Lcfz;Lbfz;Lbfz;)Z m_7579_ + 0 o p_40994_ + 1 o p_40995_ + 2 o p_40996_ + a (Lbfo;)Lcom/google/common/collect/Multimap; m_7167_ + 0 o p_40990_ + a (Lcfz;Lcmm;Ldcb;Lgu;Lbfz;)Z m_6813_ + 0 o p_40998_ + 1 o p_40999_ + 2 o p_41000_ + 3 o p_41001_ + 4 o p_41002_ + a (Lcfz;Ldcb;)F m_8102_ + 0 o p_41004_ + 1 o p_41005_ + a_ (Ldcb;)Z m_8096_ + 0 o p_150816_ + b (Lbfz;)V m_41006_ + static + 0 o p_41007_ + d ()F m_41008_ +cek net/minecraft/world/item/DiscFragmentItem + (Lcfu$a;)V + 0 o p_220029_ + a (Lcfz;Lcmm;Ljava/util/List;Lchq;)V m_7373_ + 0 o p_220031_ + 1 o p_220032_ + 2 o p_220033_ + 3 o p_220034_ + d ()Ltj; m_220035_ +cel net/minecraft/world/item/DispensibleContainerItem + a (Lbyo;Lcmm;Lgu;Leee;)Z m_142073_ + 0 o p_150821_ + 1 o p_150822_ + 2 o p_150823_ + 3 o p_150824_ + a (Lbyo;Lcmm;Lcfz;Lgu;)V m_142131_ + 0 o p_150817_ + 1 o p_150818_ + 2 o p_150819_ + 3 o p_150820_ +cem net/minecraft/world/item/DoubleHighBlockItem + (Lcpn;Lcfu$a;)V + 0 o p_41010_ + 1 o p_41011_ + a (Lcih;Ldcb;)Z m_7429_ + 0 o p_41013_ + 1 o p_41014_ +cen net/minecraft/world/item/DyeColor + a WHITE + b ORANGE + c MAGENTA + d LIGHT_BLUE + e YELLOW + f LIME + g PINK + h GRAY + i LIGHT_GRAY + j CYAN + k PURPLE + l BLUE + m BROWN + n GREEN + o RED + p BLACK + q f_262211_ + r f_41032_ + s f_41033_ + t f_41034_ + u f_41035_ + v f_283766_ + w f_41039_ + x f_41040_ + y f_41041_ + z $VALUES + ()V + static + (Ljava/lang/String;IILjava/lang/String;ILdxi;II)V + 0 o p_41044_ + 1 o p_41045_ + 2 o p_41046_ + 3 o p_41047_ + 4 o p_41048_ + 5 o p_285297_ + 6 o p_41050_ + 7 o p_41051_ + a ()I m_41060_ + a (I)Lcen; m_41053_ + static + 0 o p_41054_ + a (Lcen;)Lcen; m_41055_ + static + 0 o p_41056_ + a (Ljava/lang/String;Lcen;)Lcen; m_41057_ + static + 0 o p_41058_ + 1 o p_41059_ + b (I)Lcen; m_41061_ + static + 0 o p_41062_ + b (Lcen;)Ljava/lang/Integer; m_41063_ + static + 0 o p_41064_ + b ()Ljava/lang/String; m_41065_ + c ()Ljava/lang/String; m_7912_ + d ()[F m_41068_ + e ()Ldxi; m_284406_ + f ()I m_41070_ + g ()I m_41071_ + h ()[Lcen; m_150825_ + static + toString ()Ljava/lang/String; toString + valueOf (Ljava/lang/String;)Lcen; valueOf + static + 0 o p_41074_ + values ()[Lcen; values + static +ceo net/minecraft/world/item/DyeItem + a f_41076_ + b f_41077_ + ()V + static + (Lcen;Lcfu$a;)V + 0 o p_41080_ + 1 o p_41081_ + a (Ldaw;)Ldaw; m_276862_ + 0 o p_277649_ + a (Lcfz;Lbyo;Lbfz;Lbdw;)Lbdx; m_6880_ + 0 o p_41085_ + 1 o p_41086_ + 2 o p_41087_ + 3 o p_41088_ + a (Lcmm;Ldav;ZLbyo;)Z m_276787_ + 0 o p_277691_ + 1 o p_277488_ + 2 o p_277951_ + 3 o p_277932_ + a (Lcen;)Lceo; m_41082_ + static + 0 o p_41083_ + d ()Lcen; m_41089_ +cep net/minecraft/world/item/DyeableArmorItem + (Lcdk;Lcdj$a;Lcfu$a;)V + 0 o p_266710_ + 1 o p_267178_ + 2 o p_267093_ +ceq net/minecraft/world/item/DyeableHorseArmorItem + (ILjava/lang/String;Lcfu$a;)V + 0 o p_41110_ + 1 o p_41111_ + 2 o p_41112_ +cer net/minecraft/world/item/DyeableLeatherItem + o_ f_150826_ + p_ f_150827_ + q_ f_150828_ + a (Lcfz;Ljava/util/List;)Lcfz; m_41118_ + static + 0 o p_41119_ + 1 o p_41120_ + a (Lcfz;I)V m_41115_ + 0 o p_41116_ + 1 o p_41117_ + a (Lcfz;)Z m_41113_ + 0 o p_41114_ + e_ (Lcfz;)I m_41121_ + 0 o p_41122_ + f_ (Lcfz;)V m_41123_ + 0 o p_41124_ +ces net/minecraft/world/item/EggItem + (Lcfu$a;)V + 0 o p_41126_ + a (Lcmm;Lbyo;Lbdw;)Lbdy; m_7203_ + 0 o p_41128_ + 1 o p_41129_ + 2 o p_41130_ +cet net/minecraft/world/item/ElytraItem + (Lcfu$a;)V + 0 o p_41132_ + a (Lcmm;Lbyo;Lbdw;)Lbdy; m_7203_ + 0 o p_41137_ + 1 o p_41138_ + 2 o p_41139_ + a (Lcfz;Lcfz;)Z m_6832_ + 0 o p_41134_ + 1 o p_41135_ + ak_ ()Lamg; m_150681_ + d (Lcfz;)Z m_41140_ + static + 0 o p_41141_ + g ()Lbfo; m_40402_ +ceu net/minecraft/world/item/EmptyMapItem + (Lcfu$a;)V + 0 o p_41143_ + a (Lcmm;Lbyo;Lbdw;)Lbdy; m_7203_ + 0 o p_41145_ + 1 o p_41146_ + 2 o p_41147_ +cev net/minecraft/world/item/EnchantedBookItem + a f_150830_ + (Lcfu$a;)V + 0 o p_41149_ + a (Lcfz;Lcmm;Ljava/util/List;Lchq;)V m_7373_ + 0 o p_41157_ + 1 o p_41158_ + 2 o p_41159_ + 3 o p_41160_ + a (Lckj;)Lcfz; m_41161_ + static + 0 o p_41162_ + a (Lcfz;Lckj;)V m_41153_ + static + 0 o p_41154_ + 1 o p_41155_ + d (Lcfz;)Lqx; m_41163_ + static + 0 o p_41164_ + d_ (Lcfz;)Z m_8120_ + 0 o p_41168_ + i (Lcfz;)Z m_5812_ + 0 o p_41166_ +cew net/minecraft/world/item/EnchantedGoldenAppleItem + (Lcfu$a;)V + 0 o p_41170_ + i (Lcfz;)Z m_5812_ + 0 o p_41172_ +cex net/minecraft/world/item/EndCrystalItem + (Lcfu$a;)V + 0 o p_41174_ + a (Lcij;)Lbdx; m_6225_ + 0 o p_41176_ + i (Lcfz;)Z m_5812_ + 0 o p_41178_ +cey net/minecraft/world/item/EnderEyeItem + (Lcfu$a;)V + 0 o p_41180_ + a (Lcij;)Lbdx; m_6225_ + 0 o p_41182_ + a (Lcmm;Lbyo;Lbdw;)Lbdy; m_7203_ + 0 o p_41184_ + 1 o p_41185_ + 2 o p_41186_ +cez net/minecraft/world/item/EnderpearlItem + (Lcfu$a;)V + 0 o p_41188_ + a (Lcmm;Lbyo;Lbdw;)Lbdy; m_7203_ + 0 o p_41190_ + 1 o p_41191_ + 2 o p_41192_ +cf net/minecraft/advancements/critereon/LighthingBoltPredicate + b f_153233_ + c f_153234_ + d f_153235_ + e f_153236_ + (Lcj$d;Lbo;)V + 0 o p_153239_ + 1 o p_153240_ + a (Lcj$d;)Lcf; m_153250_ + static + 0 o p_153251_ + a ()Lcom/google/gson/JsonObject; m_213616_ + a (Laif;Leei;Lbfj;)Z m_153242_ + 0 o p_153243_ + 1 o p_153244_ + 2 o p_153245_ + a (Lbfj;Laif;Leei;)Z m_153246_ + 0 o p_153247_ + 1 o p_153248_ + 2 o p_153249_ + a (Lcom/google/gson/JsonObject;)Lcf; m_220332_ + static + 0 o p_220333_ + c ()Lbp$a; m_213836_ +cfa net/minecraft/world/item/Equipable + a (Lcfu;Lcmm;Lbyo;Lbdw;)Lbdy; m_269277_ + 0 o p_270453_ + 1 o p_270395_ + 2 o p_270300_ + 3 o p_270262_ + ak_ ()Lamg; m_150681_ + c_ (Lcfz;)Lcfa; m_269088_ + static + 0 o p_270317_ + g ()Lbfo; m_40402_ +cfb net/minecraft/world/item/ExperienceBottleItem + (Lcfu$a;)V + 0 o p_41194_ + a (Lcmm;Lbyo;Lbdw;)Lbdy; m_7203_ + 0 o p_41196_ + 1 o p_41197_ + 2 o p_41198_ + i (Lcfz;)Z m_5812_ + 0 o p_41200_ +cfc net/minecraft/world/item/FireChargeItem + (Lcfu$a;)V + 0 o p_41202_ + a (Lcij;)Lbdx; m_6225_ + 0 o p_41204_ + a (Lcmm;Lgu;)V m_41205_ + 0 o p_41206_ + 1 o p_41207_ +cfd net/minecraft/world/item/FireworkRocketItem + a f_256994_ + b f_150831_ + c f_150832_ + d f_150833_ + e f_150834_ + f f_150835_ + g f_150836_ + h f_150837_ + i f_150838_ + j f_150839_ + k f_150840_ + ()V + static + (Lcfu$a;)V + 0 o p_41209_ + a (Lcij;)Lbdx; m_6225_ + 0 o p_41216_ + a (Lcfz;Lcmm;Ljava/util/List;Lchq;)V m_7373_ + 0 o p_41211_ + 1 o p_41212_ + 2 o p_41213_ + 3 o p_41214_ + a (Lcmm;Lbyo;Lbdw;)Lbdy; m_7203_ + 0 o p_41218_ + 1 o p_41219_ + 2 o p_41220_ + a (Lcfz;B)V m_257843_ + static + 0 o p_260106_ + 1 o p_260332_ + ae_ ()Lcfz; m_7968_ +cfd$a net/minecraft/world/item/FireworkRocketItem$Shape + a SMALL_BALL + b LARGE_BALL + c STAR + d CREEPER + e BURST + f f_41226_ + g f_41227_ + h f_41228_ + i $VALUES + ()V + static + (Ljava/lang/String;IILjava/lang/String;)V + 0 o p_41232_ + 1 o p_41233_ + 2 o p_41234_ + 3 o p_41235_ + a (I)Lcfd$a; m_41237_ + static + 0 o p_41238_ + a ()I m_41236_ + b ()Ljava/lang/String; m_41241_ + c ()[Lcfd$a; m_150842_ + static + valueOf (Ljava/lang/String;)Lcfd$a; valueOf + static + 0 o p_41245_ + values ()[Lcfd$a; values + static +cfe net/minecraft/world/item/FireworkStarItem + (Lcfu$a;)V + 0 o p_41248_ + a (I)Lsw; m_41249_ + static + 0 o p_41250_ + a (Lqr;Ljava/util/List;)V m_41256_ + static + 0 o p_41257_ + 1 o p_41258_ + a (Lcfz;Lcmm;Ljava/util/List;Lchq;)V m_7373_ + 0 o p_41252_ + 1 o p_41253_ + 2 o p_41254_ + 3 o p_41255_ + a (Ltj;[I)Lsw; m_41259_ + static + 0 o p_41260_ + 1 o p_41261_ +cff net/minecraft/world/item/FishingRodItem + (Lcfu$a;)V + 0 o p_41285_ + a (Lbdw;Lbyo;)V m_41286_ + static + 0 o p_41287_ + 1 o p_41288_ + a (Lcmm;Lbyo;Lbdw;)Lbdy; m_7203_ + 0 o p_41290_ + 1 o p_41291_ + 2 o p_41292_ + c ()I m_6473_ +cfg net/minecraft/world/item/FlintAndSteelItem + (Lcfu$a;)V + 0 o p_41295_ + a (Lcij;)Lbdx; m_6225_ + 0 o p_41297_ + a (Lcij;Lbyo;)V m_41298_ + static + 0 o p_41299_ + 1 o p_41300_ + b (Lcij;Lbyo;)V m_41301_ + static + 0 o p_41302_ + 1 o p_41303_ +cfh net/minecraft/world/item/FoodOnAStickItem + a f_41304_ + b f_41305_ + (Lcfu$a;Lbfn;I)V + 0 o p_41307_ + 1 o p_41308_ + 2 o p_41309_ + a (Lbdw;Lbyo;)V m_41310_ + static + 0 o p_41311_ + 1 o p_41312_ + a (Lcmm;Lbyo;Lbdw;)Lbdy; m_7203_ + 0 o p_41314_ + 1 o p_41315_ + 2 o p_41316_ +cfi net/minecraft/world/item/GameMasterBlockItem + (Lcpn;Lcfu$a;)V + 0 o p_41318_ + 1 o p_41319_ + c (Lcih;)Ldcb; m_5965_ + 0 o p_41321_ +cfj net/minecraft/world/item/GlowInkSacItem + (Lcfu$a;)V + 0 o p_277648_ + a (Ldaw;)Ldaw; m_277194_ + static + 0 o p_277781_ + a (Lcmm;Ldav;ZLbyo;)Z m_276787_ + 0 o p_278089_ + 1 o p_277706_ + 2 o p_277442_ + 3 o p_277983_ +cfk net/minecraft/world/item/HangingEntityItem + a f_268736_ + b f_41322_ + ()V + static + (Lbfn;Lcfu$a;)V + 0 o p_41324_ + 1 o p_41325_ + a (Lcij;)Lbdx; m_6225_ + 0 o p_41331_ + a (Ljava/util/List;Lhe;)V m_269207_ + static + 0 o p_270807_ + 1 o p_270767_ + a (Lbyo;Lha;Lcfz;Lgu;)Z m_5595_ + 0 o p_41326_ + 1 o p_41327_ + 2 o p_41328_ + 3 o p_41329_ + a (Lcfz;Lcmm;Ljava/util/List;Lchq;)V m_7373_ + 0 o p_270235_ + 1 o p_270688_ + 2 o p_270630_ + 3 o p_270170_ + a (Ljava/util/List;Lacp;)V m_269401_ + static + 0 o p_270665_ + 1 o p_270217_ + a (Ljava/util/List;)V m_269512_ + static + 0 o p_270620_ +cfl net/minecraft/world/item/HangingSignItem + (Lcpn;Lcpn;Lcfu$a;)V + 0 o p_251582_ + 1 o p_250734_ + 2 o p_250266_ + a (Lcmp;Ldcb;Lgu;)Z m_246210_ + 0 o p_252032_ + 1 o p_252230_ + 2 o p_252075_ +cfm net/minecraft/world/item/HoeItem + a f_41332_ + ()V + static + (Lchm;IFLcfu$a;)V + 0 o p_41336_ + 1 o p_41337_ + 2 o p_41338_ + 3 o p_41339_ + a (Lcij;)Lbdx; m_6225_ + 0 o p_41341_ + a (Ldcb;Lcij;)V m_150860_ + static + 0 o p_238240_ + 1 o p_238241_ + a (Ldcb;Lcml;Lcij;)V m_238243_ + static + 0 o p_238244_ + 1 o p_238245_ + 2 o p_238246_ + a (Ldcb;Lcml;)Ljava/util/function/Consumer; m_150849_ + static + 0 o p_150850_ + 1 o p_150851_ + a (Lcij;Lbyo;)V m_150843_ + static + 0 o p_150844_ + 1 o p_150845_ + b (Ldcb;)Ljava/util/function/Consumer; m_150858_ + static + 0 o p_150859_ + b (Lcij;)Z m_150856_ + static + 0 o p_150857_ + c (Lcij;)Z m_150846_ + static + 0 o p_238242_ +cfn net/minecraft/world/item/HoneyBottleItem + a f_150862_ + (Lcfu$a;)V + 0 o p_41346_ + a (Lcfz;Lcmm;Lbfz;)Lcfz; m_5922_ + 0 o p_41348_ + 1 o p_41349_ + 2 o p_41350_ + a (Lcmm;Lbyo;Lbdw;)Lbdy; m_7203_ + 0 o p_41352_ + 1 o p_41353_ + 2 o p_41354_ + af_ ()Lamg; m_6023_ + ag_ ()Lamg; m_6061_ + b (Lcfz;)I m_8105_ + 0 o p_41360_ + c (Lcfz;)Lchs; m_6164_ + 0 o p_41358_ +cfo net/minecraft/world/item/HoneycombItem + a f_150863_ + b f_150864_ + ()V + static + (Lcfu$a;)V + 0 o p_150867_ + a (Lcij;)Lbdx; m_6225_ + 0 o p_150869_ + a (Lcij;Lgu;Lcmm;Ldcb;)Lbdx; m_238247_ + static + 0 o p_238248_ + 1 o p_238249_ + 2 o p_238250_ + 3 o p_238251_ + a (Ldcb;Lcpn;)Ldcb; m_150875_ + static + 0 o p_150876_ + 1 o p_150877_ + a (Lcmm;Ldav;ZLbyo;)Z m_276787_ + 0 o p_277838_ + 1 o p_277988_ + 2 o p_277394_ + 3 o p_277816_ + a (Ldaw;Lbyo;)Z m_277072_ + 0 o p_277550_ + 1 o p_277640_ + b (Ldcb;)Ljava/util/Optional; m_150878_ + static + 0 o p_150879_ + h ()Lcom/google/common/collect/BiMap; m_150880_ + static + i ()Lcom/google/common/collect/BiMap; m_150881_ + static +cfp net/minecraft/world/item/HorseArmorItem + a f_150882_ + b f_41361_ + c f_41362_ + (ILjava/lang/String;Lcfu$a;)V + 0 o p_41364_ + 1 o p_41365_ + 2 o p_41366_ + h ()Lacq; m_41367_ + i ()I m_41368_ +cfq net/minecraft/world/item/InkSacItem + (Lcfu$a;)V + 0 o p_277643_ + a (Ldaw;)Ldaw; m_277089_ + static + 0 o p_277425_ + a (Lcmm;Ldav;ZLbyo;)Z m_276787_ + 0 o p_277633_ + 1 o p_277698_ + 2 o p_277634_ + 3 o p_277815_ +cfr net/minecraft/world/item/Instrument + a f_220078_ + b f_220079_ + c f_220080_ + d f_220081_ + ()V + static + (Lhe;IF)V + 0 o f_220079_ + 1 o f_220080_ + 2 o f_220081_ + a ()Lhe; f_220079_ + a (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; m_263163_ + static + 0 o p_220089_ + b ()I f_220080_ + c ()F f_220081_ + equals (Ljava/lang/Object;)Z equals + 0 o p_220093_ + hashCode ()I hashCode + toString ()Ljava/lang/String; toString +cfs net/minecraft/world/item/InstrumentItem + a f_220096_ + b f_220097_ + (Lcfu$a;Lanl;)V + 0 o p_220099_ + 1 o p_220100_ + a (Lhe;)Ljava/lang/Integer; m_244990_ + static + 0 o p_248418_ + a (Lcfz;Lcmm;Ljava/util/List;Lchq;)V m_7373_ + 0 o p_220115_ + 1 o p_220116_ + 2 o p_220117_ + 3 o p_220118_ + a (Lcfz;Lhe;)V m_220119_ + static + 0 o p_220120_ + 1 o p_220121_ + a (Lcmm;Lbyo;Lbdw;)Lbdy; m_7203_ + 0 o p_220123_ + 1 o p_220124_ + 2 o p_220125_ + a (Lcfz;Lanl;Lapf;)V m_220110_ + static + 0 o p_220111_ + 1 o p_220112_ + 2 o p_220113_ + a (Lapf;Lhi$c;)Ljava/util/Optional; m_220101_ + static + 0 o p_220102_ + 1 o p_220103_ + a (Lcfu;Lhe;)Lcfz; m_220107_ + static + 0 o p_220108_ + 1 o p_220109_ + a (Lcmm;Lbyo;Lcfr;)V m_220126_ + static + 0 o p_220127_ + 1 o p_220128_ + 2 o p_220129_ + b (Lcfz;)I m_8105_ + 0 o p_220131_ + b (Lcfz;Lhe;)V m_244989_ + static + 0 o p_248416_ + 1 o p_248417_ + c (Lcfz;)Lchs; m_6164_ + 0 o p_220133_ + d (Lcfz;)Ljava/util/Optional; m_220134_ + 0 o p_220135_ + h ()Ljava/lang/IllegalStateException; m_220136_ + static +cft net/minecraft/world/item/Instruments + a f_220137_ + b f_220138_ + c f_220139_ + d f_220140_ + e f_220141_ + f f_220142_ + g f_220143_ + h f_220144_ + i f_220145_ + j f_220146_ + ()V + static + a (Ljava/lang/String;)Lacp; m_220150_ + static + 0 o p_220151_ + a (Lhr;)Lcfr; m_220148_ + static + 0 o p_220149_ +cfu net/minecraft/world/item/Item + a f_150883_ + b f_204113_ + c f_41369_ + d f_41370_ + e f_41371_ + f f_41372_ + g f_41378_ + h f_41379_ + i f_41380_ + j f_243811_ + l f_41373_ + m f_41374_ + n f_41375_ + o f_150884_ + p f_150885_ + q f_150886_ + ()V + static + (Lcfu$a;)V + 0 o p_41383_ + a (Lben;)Z m_41386_ + 0 o p_41387_ + a (Lcfz;Lcfz;Lccx;Lcbn;Lbyo;Lbgs;)Z m_142305_ + 0 o p_150892_ + 1 o p_150893_ + 2 o p_150894_ + 3 o p_150895_ + 4 o p_150896_ + 5 o p_150897_ + a (Lcfz;Lcmm;Lbfj;IZ)V m_6883_ + 0 o p_41404_ + 1 o p_41405_ + 2 o p_41406_ + 3 o p_41407_ + 4 o p_41408_ + a (Lcfz;Lcmm;Lbfz;I)V m_5551_ + 0 o p_41412_ + 1 o p_41413_ + 2 o p_41414_ + 3 o p_41415_ + a (Lcfz;Lbfz;Lbfz;)Z m_7579_ + 0 o p_41395_ + 1 o p_41396_ + 2 o p_41397_ + a (Lcfz;Lcmm;Ldcb;Lgu;Lbfz;)Z m_6813_ + 0 o p_41416_ + 1 o p_41417_ + 2 o p_41418_ + 3 o p_41419_ + 4 o p_41420_ + a (Ldcb;Lcmm;Lgu;Lbyo;)Z m_6777_ + 0 o p_41441_ + 1 o p_41442_ + 2 o p_41443_ + 3 o p_41444_ + a (Lcfz;Lcfz;)Z m_6832_ + 0 o p_41402_ + 1 o p_41403_ + a (Lcfz;Lccx;Lcbn;Lbyo;)Z m_142207_ + 0 o p_150888_ + 1 o p_150889_ + 2 o p_150890_ + 3 o p_150891_ + a (Lcfu;)I m_41393_ + static + 0 o p_41394_ + a (Lcmm;Lbyo;Lclv$b;)Leee; m_41435_ + static + 0 o p_41436_ + 1 o p_41437_ + 2 o p_41438_ + a (Lcpn;)Lcfu; m_41439_ + static + 0 o p_41440_ + a (Lcfz;Lbyo;Lbfz;Lbdw;)Lbdx; m_6880_ + 0 o p_41398_ + 1 o p_41399_ + 2 o p_41400_ + 3 o p_41401_ + a (Lcfz;Lcmm;Ljava/util/List;Lchq;)V m_7373_ + 0 o p_41421_ + 1 o p_41422_ + 2 o p_41423_ + 3 o p_41424_ + a (Lcfz;Ldcb;)F m_8102_ + 0 o p_41425_ + 1 o p_41426_ + a (Lbvh;)V m_142023_ + 0 o p_150887_ + a (Lcmm;Lbfz;Lcfz;I)V m_5929_ + 0 o p_41428_ + 1 o p_41429_ + 2 o p_41430_ + 3 o p_41431_ + a (Lcij;)Lbdx; m_6225_ + 0 o p_41427_ + a ()Ljava/lang/String; m_5524_ + a (Lcmm;Lbyo;Lbdw;)Lbdy; m_7203_ + 0 o p_41432_ + 1 o p_41433_ + 2 o p_41434_ + a (Lbfo;)Lcom/google/common/collect/Multimap; m_7167_ + 0 o p_41388_ + a (Lcfz;Lcmm;Lbfz;)Lcfz; m_5922_ + 0 o p_41409_ + 1 o p_41410_ + 2 o p_41411_ + a_ (Ldcb;)Z m_8096_ + 0 o p_41450_ + ad_ ()Z m_7807_ + ae_ ()Lcfz; m_7968_ + af_ ()Lamg; m_6023_ + ag_ ()Lamg; m_6061_ + ah_ ()Z m_142095_ + b (Lqr;)V m_142312_ + 0 o p_150898_ + b (Lcfz;Lcmm;Lbyo;)V m_7836_ + 0 o p_41447_ + 1 o p_41448_ + 2 o p_41449_ + b (I)Lcfu; m_41445_ + static + 0 o p_41446_ + b (Lcfz;)I m_8105_ + 0 o p_41454_ + c ()I m_6473_ + c (Lcfz;)Lchs; m_6164_ + 0 o p_41452_ + d_ (Lcfz;)Z m_8120_ + 0 o p_41456_ + e (Lcfz;)Z m_142522_ + 0 o p_150899_ + f (Lcfz;)I m_142158_ + 0 o p_150900_ + g (Lcfz;)I m_142159_ + 0 o p_150901_ + h (Lcfz;)Ljava/util/Optional; m_142422_ + 0 o p_150902_ + i (Lcfz;)Z m_5812_ + 0 o p_41453_ + j (Lcfz;)Ljava/lang/String; m_5671_ + 0 o p_41455_ + j ()Lhe$c; m_204114_ + k ()Lcfu; m_5456_ + l (Lcfz;)Z m_41463_ + 0 o p_41464_ + l ()I m_41459_ + m ()Lcaw; m_245183_ + m (Lcfz;)Lsw; m_7626_ + 0 o p_41458_ + n ()I m_41462_ + n (Lcfz;)Lcgq; m_41460_ + 0 o p_41461_ + o ()Z m_41465_ + p ()Lsw; m_41466_ + q ()Ljava/lang/String; m_41467_ + r ()Z m_41468_ + s ()Lcfu; m_41469_ + t ()Z m_41470_ + toString ()Ljava/lang/String; toString + u ()Z m_41472_ + v ()Lcbc; m_41473_ + w ()Z m_41475_ +cfu$1 net/minecraft/world/item/Item$1 + a f_41476_ + ()V + static +cfu$a net/minecraft/world/item/Item$Properties + a f_41478_ + b f_41479_ + c f_41480_ + d f_41482_ + e f_41483_ + f f_41484_ + g f_244559_ + ()V + a (I)Lcfu$a; m_41487_ + 0 o p_41488_ + a (Lcbc;)Lcfu$a; m_41489_ + 0 o p_41490_ + a (Lcgq;)Lcfu$a; m_41497_ + 0 o p_41498_ + a ()Lcfu$a; m_41486_ + a (Lcfu;)Lcfu$a; m_41495_ + 0 o p_41496_ + a ([Lcau;)Lcfu$a; m_246768_ + 0 o p_250948_ + b (I)Lcfu$a; m_41499_ + 0 o p_41500_ + c (I)Lcfu$a; m_41503_ + 0 o p_41504_ +cfv net/minecraft/world/item/ItemCooldowns + a f_41515_ + b f_41516_ + ()V + a (Lcfu;)Z m_41519_ + 0 o p_41520_ + a (Lcfu;F)F m_41521_ + 0 o p_41522_ + 1 o p_41523_ + a ()V m_41518_ + a (Lcfu;I)V m_41524_ + 0 o p_41525_ + 1 o p_41526_ + b (Lcfu;)V m_41527_ + 0 o p_41528_ + b (Lcfu;I)V m_6899_ + 0 o p_41529_ + 1 o p_41530_ + c (Lcfu;)V m_7432_ + 0 o p_41531_ +cfv$a net/minecraft/world/item/ItemCooldowns$CooldownInstance + a f_41533_ + b f_41534_ + (II)V + 0 o p_186358_ + 1 o p_186359_ +cfw net/minecraft/world/item/ItemDisplayContext + a NONE + b THIRD_PERSON_LEFT_HAND + c THIRD_PERSON_RIGHT_HAND + d FIRST_PERSON_LEFT_HAND + e FIRST_PERSON_RIGHT_HAND + f HEAD + g GUI + h GROUND + i FIXED + j f_268458_ + k f_268648_ + l f_268735_ + m f_268747_ + n $VALUES + ()V + static + (Ljava/lang/String;IILjava/lang/String;)V + 0 o p_270291_ + 1 o p_270563_ + 2 o p_270624_ + 3 o p_270851_ + a ()B m_269462_ + b ()Z m_269069_ + c ()Ljava/lang/String; m_7912_ + d ()[Lcfw; m_269476_ + static + valueOf (Ljava/lang/String;)Lcfw; valueOf + static + 0 o p_270079_ + values ()[Lcfw; values + static +cfx net/minecraft/world/item/ItemFrameItem + (Lbfn;Lcfu$a;)V + 0 o p_150904_ + 1 o p_150905_ + a (Lbyo;Lha;Lcfz;Lgu;)Z m_5595_ + 0 o p_41551_ + 1 o p_41552_ + 2 o p_41553_ + 3 o p_41554_ +cfy net/minecraft/world/item/ItemNameBlockItem + (Lcpn;Lcfu$a;)V + 0 o p_41579_ + 1 o p_41580_ + a ()Ljava/lang/String; m_5524_ +cfz net/minecraft/world/item/ItemStack + a f_41582_ + b f_41583_ + c f_41584_ + d f_150906_ + e f_150909_ + f f_150910_ + g f_150911_ + h f_150912_ + i f_150913_ + j f_41585_ + k f_150914_ + l f_150915_ + m f_150916_ + n f_150917_ + o f_150918_ + p f_243862_ + q f_150919_ + r f_41586_ + s f_41587_ + t f_41588_ + u f_41589_ + v f_41590_ + w f_41592_ + x f_186360_ + y f_186361_ + ()V + static + (Lqr;)V + 0 o p_41608_ + (Lhe;I)V + 0 o p_220155_ + 1 o p_220156_ + (Lcml;I)V + 0 o p_41601_ + 1 o p_41602_ + (Lhe;)V + 0 o p_204116_ + (Lcml;)V + 0 o p_41599_ + (Ljava/lang/Void;)V + 0 o p_282703_ + (Lcml;ILjava/util/Optional;)V + 0 o p_41604_ + 1 o p_41605_ + 2 o p_41606_ + A ()Z m_41788_ + B ()Z m_41790_ + C ()Lcgq; m_41791_ + D ()Z m_41792_ + E ()Z m_41793_ + F ()Z m_41794_ + G ()Lbva; m_41795_ + H ()Lbfj; m_41609_ + I ()I m_41610_ + J ()Lsw; m_41611_ + K ()I m_41612_ + L ()I m_41613_ + M ()Z m_41614_ + N ()Lamg; m_41615_ + O ()Lamg; m_41616_ + P ()I m_41618_ + a (Lfg$a;)Ljava/util/List; m_220161_ + static + 0 o p_220162_ + a (Ljava/lang/String;)Lqr; m_41698_ + 0 o p_41699_ + a (Lckg;I)V m_41663_ + 0 o p_41664_ + 1 o p_41665_ + a (Ljava/util/List;Lqr;Lckg;)V m_41705_ + static + 0 o p_41706_ + 1 o p_41707_ + 2 o p_41708_ + a (Lcfz;Lccx;Lcbn;Lbyo;Lbgs;)Z m_150932_ + 0 o p_150933_ + 1 o p_150934_ + 2 o p_150935_ + 3 o p_150936_ + 4 o p_150937_ + a (Ljava/util/List;Lqx;)V m_41709_ + static + 0 o p_41710_ + 1 o p_41711_ + a (Ldcb;)F m_41691_ + 0 o p_41692_ + a (Lcaw;)Z m_246617_ + 0 o p_250869_ + a (Lcfz;Lcfz;)Z m_41728_ + static + 0 o p_41729_ + 1 o p_41730_ + a (Lanl;)Z m_204117_ + 0 o p_204118_ + a (Lbyo;Lchq;)Ljava/util/List; m_41651_ + 0 o p_41652_ + 1 o p_41653_ + a (I)Lcfz; m_41620_ + 0 o p_41621_ + a ()Ljava/util/Optional; m_150921_ + a (Lhr;Ldcf;)Z m_204121_ + 0 o p_204122_ + 1 o p_204123_ + a (ILbfz;Ljava/util/function/Consumer;)V m_41622_ + 0 o p_41623_ + 1 o p_41624_ + 2 o p_41625_ + a (ILcfz$a;)Z m_41626_ + static + 0 o p_41627_ + 1 o p_41628_ + a (Lbvh;)V m_150924_ + 0 o p_150925_ + a (Lts;)Lts; m_220169_ + 0 o p_220170_ + a (Lcmm;Ldcb;Lgu;Lbyo;)V m_41686_ + 0 o p_41687_ + 1 o p_41688_ + 2 o p_41689_ + 3 o p_41690_ + a (Lcij;)Lbdx; m_41661_ + 0 o p_41662_ + a (Lcmm;Lbfj;IZ)V m_41666_ + 0 o p_41667_ + 1 o p_41668_ + 2 o p_41669_ + 3 o p_41670_ + a (Lbfj;)V m_41636_ + 0 o p_41637_ + a (Lhe;)Z m_220165_ + 0 o p_220166_ + a (Lsw;)Lcfz; m_41714_ + 0 o p_41715_ + a (Lcfz$a;)V m_41654_ + 0 o p_41655_ + a (Lbyo;Lbfz;Lbdw;)Lbdx; m_41647_ + 0 o p_41648_ + 1 o p_41649_ + 2 o p_41650_ + a (Ljava/text/DecimalFormat;)V m_41703_ + static + 0 o p_41704_ + a (Lcfu;)Z m_150930_ + 0 o p_150931_ + a (Lccx;Lcbn;Lbyo;)Z m_150926_ + 0 o p_150927_ + 1 o p_150928_ + 2 o p_150929_ + a (Lqr;)Lcfz; m_41712_ + static + 0 o p_41713_ + a (ILapf;Laig;)Z m_220157_ + 0 o p_220158_ + 1 o p_220159_ + 2 o p_220160_ + a (Lbfz;Lbyo;)V m_41640_ + 0 o p_41641_ + 1 o p_41642_ + a (Lcfz;)Ljava/util/Optional; m_279955_ + static + 0 o p_281115_ + a (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; m_257321_ + static + 0 o p_258963_ + a (Lbhb;Lbhe;Lbfo;)V m_41643_ + 0 o p_41644_ + 1 o p_41645_ + 2 o p_41646_ + a (Lcmm;Lbfz;)Lcfz; m_41671_ + 0 o p_41672_ + 1 o p_41673_ + a (Lcmm;Lbfz;I)V m_41674_ + 0 o p_41675_ + 1 o p_41676_ + 2 o p_41677_ + a (Lcmm;Lbyo;Lbdw;)Lbdy; m_41682_ + 0 o p_41683_ + 1 o p_41684_ + 2 o p_41685_ + a (Lfg$b;)Ljava/util/List; m_220163_ + static + 0 o p_220164_ + a (Lbfo;)Lcom/google/common/collect/Multimap; m_41638_ + 0 o p_41639_ + a (Lcmm;Lbyo;I)V m_41678_ + 0 o p_41679_ + 1 o p_41680_ + 2 o p_41681_ + a (Ljava/util/function/Predicate;)Z m_220167_ + 0 o p_220168_ + a (Ljava/lang/String;Lrk;)V m_41700_ + 0 o p_41701_ + 1 o p_41702_ + b (Lcmm;Lbfz;I)V m_41731_ + 0 o p_41732_ + 1 o p_41733_ + 2 o p_41734_ + b (Lcfz;Lcfz;)Z m_41656_ + static + 0 o p_287761_ + 1 o p_287676_ + b (Ljava/lang/String;)Lqr; m_41737_ + 0 o p_41738_ + b (Lhr;Ldcf;)Z m_204128_ + 0 o p_204129_ + 1 o p_204130_ + b (Lqr;)Lqr; m_41739_ + 0 o p_41740_ + b (Ldcb;)Z m_41735_ + 0 o p_41736_ + b (I)V m_41721_ + 0 o p_41722_ + b (Lhe;)Ltj; m_220171_ + static + 0 o p_220172_ + b ()Z m_41619_ + c (I)Lcfz; m_255036_ + 0 o p_256354_ + c (Lqr;)V m_41751_ + 0 o p_41752_ + c (Lcfz;Lcfz;)Z m_150942_ + static + 0 o p_150943_ + 1 o p_150944_ + c ()Lcfz; m_278832_ + c (Ljava/lang/String;)V m_41749_ + 0 o p_41750_ + d (I)V m_41742_ + 0 o p_41743_ + d ()Lcfu; m_41720_ + d (Ljava/lang/String;)Ljava/util/Collection; m_41761_ + static + 0 o p_41762_ + e ()Lhe; m_220173_ + e (I)V m_41754_ + 0 o p_41755_ + f (I)V m_41764_ + 0 o p_41765_ + f ()Ljava/util/stream/Stream; m_204131_ + g ()I m_41741_ + g (I)V m_41769_ + 0 o p_41770_ + h ()Z m_41753_ + h (I)V m_41774_ + 0 o p_41775_ + i ()Z m_41763_ + j ()Z m_41768_ + k ()I m_41773_ + l ()I m_41776_ + m ()Z m_150947_ + n ()I m_150948_ + o ()I m_150949_ + p ()Lcfz; m_41777_ + q ()Ljava/lang/String; m_41778_ + r ()I m_41779_ + s ()Lchs; m_41780_ + t ()Z m_41781_ + toString ()Ljava/lang/String; toString + u ()Z m_41782_ + v ()Lqr; m_41783_ + w ()Lqr; m_41784_ + x ()Lqx; m_41785_ + y ()Lsw; m_41786_ + z ()V m_41787_ +cfz$a net/minecraft/world/item/ItemStack$TooltipPart + a ENCHANTMENTS + b MODIFIERS + c UNBREAKABLE + d CAN_DESTROY + e CAN_PLACE + f ADDITIONAL + g DYE + h UPGRADES + i f_41803_ + j $VALUES + ()V + static + (Ljava/lang/String;I)V + 0 o p_41807_ + 1 o p_41808_ + a ()I m_41809_ + b ()[Lcfz$a; m_150950_ + static + valueOf (Ljava/lang/String;)Lcfz$a; valueOf + static + 0 o p_41811_ + values ()[Lcfz$a; values + static +cg net/minecraft/advancements/critereon/LightningStrikeTrigger + a f_153384_ + ()V + static + ()V + a (Ldzk;Ljava/util/List;Lcg$a;)Z m_153399_ + static + 0 o p_153400_ + 1 o p_153401_ + 2 o p_153402_ + a (Laig;Lbfj;)Ldzk; m_153388_ + static + 0 o p_153389_ + 1 o p_153390_ + a (Laig;Lbfy;Ljava/util/List;)V m_153391_ + 0 o p_153392_ + 1 o p_153393_ + 2 o p_153394_ + a ()Lacq; m_7295_ + a (Lcom/google/gson/JsonObject;Lba;Lbe;)Lcg$a; m_7214_ + 0 o p_286889_ + 1 o p_286650_ + 2 o p_286384_ + b (Lcom/google/gson/JsonObject;Lba;Lbe;)Lar; m_7214_ + 0 o p_286546_ + 1 o p_286781_ + 2 o p_286393_ +cg$a net/minecraft/advancements/critereon/LightningStrikeTrigger$TriggerInstance + a f_153407_ + b f_153408_ + (Lba;Lba;Lba;)V + 0 o p_286747_ + 1 o p_286287_ + 2 o p_286566_ + a (Ldzk;Ljava/util/List;)Z m_153418_ + 0 o p_153419_ + 1 o p_153420_ + a (Lct;)Lcom/google/gson/JsonObject; m_7683_ + 0 o p_153417_ + a (Lbo;Lbo;)Lcg$a; m_153413_ + static + 0 o p_153414_ + 1 o p_153415_ +cga net/minecraft/world/item/ItemStackLinkedSet + a f_260558_ + ()V + static + ()V + a (Lcfz;)I m_260929_ + static + 0 o p_262160_ + a ()Ljava/util/Set; m_261170_ + static +cga$1 net/minecraft/world/item/ItemStackLinkedSet$1 + ()V + a (Lcfz;)I hashCode + 0 o p_251266_ + a (Lcfz;Lcfz;)Z equals + 0 o p_250623_ + 1 o p_251135_ + equals (Ljava/lang/Object;Ljava/lang/Object;)Z equals + 0 o p_251731_ + 1 o p_249435_ + hashCode (Ljava/lang/Object;)I hashCode + 0 o p_251743_ +cgb net/minecraft/world/item/ItemUtils + ()V + a (Lcfz;Lbyo;Lcfz;)Lcfz; m_41813_ + static + 0 o p_41814_ + 1 o p_41815_ + 2 o p_41816_ + a (Lcmm;Lbvh;Lcfz;)V m_289175_ + static + 0 o p_289502_ + 1 o p_289503_ + 2 o p_289504_ + a (Lbvh;Ljava/util/stream/Stream;)V m_150952_ + static + 0 o p_150953_ + 1 o p_150954_ + a (Lcfz;Lbyo;Lcfz;Z)Lcfz; m_41817_ + static + 0 o p_41818_ + 1 o p_41819_ + 2 o p_41820_ + 3 o p_41821_ + a (Lcmm;Lbyo;Lbdw;)Lbdy; m_150959_ + static + 0 o p_150960_ + 1 o p_150961_ + 2 o p_150962_ +cgc net/minecraft/world/item/Items + A f_42794_ + B f_42795_ + C f_271154_ + D f_42796_ + E f_220174_ + F f_243694_ + G f_42797_ + H f_42798_ + I f_243813_ + J f_42799_ + K f_42800_ + L f_42801_ + M f_41826_ + N f_41827_ + O f_271375_ + P f_41828_ + Q f_220175_ + R f_41829_ + S f_41830_ + T f_271327_ + U f_276672_ + V f_41831_ + W f_41832_ + X f_41835_ + Y f_150963_ + Z f_41834_ + a f_41852_ + aA f_42791_ + aB f_151001_ + aC f_151002_ + aD f_151003_ + aE f_151004_ + aF f_151005_ + aG f_151006_ + aH f_151007_ + aI f_151008_ + aJ f_150970_ + aK f_150971_ + aL f_150972_ + aM f_150973_ + aN f_150974_ + aO f_150975_ + aP f_150976_ + aQ f_150977_ + aR f_150978_ + aS f_150979_ + aT f_150980_ + aU f_150981_ + aV f_150982_ + aW f_150983_ + aX f_150984_ + aY f_150985_ + aZ f_150986_ + aa f_150964_ + ab f_150965_ + ac f_150966_ + ad f_41833_ + ae f_150967_ + af f_41977_ + ag f_150968_ + ah f_42107_ + ai f_150969_ + aj f_41853_ + ak f_150993_ + al f_42010_ + am f_150994_ + an f_41836_ + ao f_42154_ + ap f_42792_ + aq f_42200_ + ar f_150995_ + as f_150996_ + at f_150997_ + au f_150998_ + av f_150999_ + aw f_41913_ + ax f_151000_ + ay f_41912_ + az f_41959_ + b f_41905_ + bA f_220182_ + bB f_41851_ + bC f_41879_ + bD f_41880_ + bE f_41881_ + bF f_41882_ + bG f_41883_ + bH f_41884_ + bI f_271182_ + bJ f_41885_ + bK f_220176_ + bL f_41886_ + bM f_41887_ + bN f_256923_ + bO f_41888_ + bP f_41889_ + bQ f_41890_ + bR f_41891_ + bS f_41892_ + bT f_271302_ + bU f_41893_ + bV f_220177_ + bW f_41894_ + bX f_41895_ + bY f_41896_ + bZ f_41897_ + ba f_150987_ + bb f_150988_ + bc f_150989_ + bd f_150990_ + be f_150991_ + bf f_150992_ + bg f_41837_ + bh f_41838_ + bi f_41839_ + bj f_41840_ + bk f_41841_ + bl f_271090_ + bm f_41842_ + bn f_220179_ + bo f_220180_ + bp f_220181_ + bq f_41843_ + br f_41844_ + bs f_256933_ + bt f_41845_ + bu f_41846_ + bv f_41847_ + bw f_41848_ + bx f_41849_ + by f_271164_ + bz f_41850_ + c f_41958_ + cA f_41872_ + cB f_41873_ + cC f_41874_ + cD f_41875_ + cE f_41876_ + cF f_41877_ + cG f_41878_ + cH f_41932_ + cI f_41933_ + cJ f_41934_ + cK f_41935_ + cL f_41936_ + cM f_41937_ + cN f_41938_ + cO f_41939_ + cP f_41940_ + cQ f_41941_ + cR f_41942_ + cS f_41943_ + cT f_41944_ + cU f_41945_ + cV f_41946_ + cW f_41947_ + cX f_41948_ + cY f_41949_ + cZ f_41950_ + ca f_41898_ + cb f_41899_ + cc f_41900_ + cd f_271517_ + ce f_41901_ + cf f_220178_ + cg f_151009_ + ch f_186362_ + ci f_41902_ + cj f_41903_ + ck f_41904_ + cl f_151011_ + cm f_41854_ + cn f_41856_ + co f_41857_ + cp f_41858_ + cq f_41863_ + cr f_41864_ + cs f_41865_ + ct f_151012_ + cu f_151013_ + cv f_41866_ + cw f_41867_ + cx f_41868_ + cy f_41870_ + cz f_41871_ + d f_42011_ + dA f_41918_ + dB f_271349_ + dC f_41919_ + dD f_220183_ + dE f_243860_ + dF f_244160_ + dG f_41920_ + dH f_41921_ + dI f_41922_ + dJ f_41923_ + dK f_41924_ + dL f_41925_ + dM f_41926_ + dN f_41927_ + dO f_41928_ + dP f_41929_ + dQ f_220184_ + dR f_41930_ + dS f_41931_ + dT f_41985_ + dU f_41986_ + dV f_41987_ + dW f_41988_ + dX f_41989_ + dY f_41990_ + dZ f_41991_ + da f_41951_ + db f_271471_ + dc f_276698_ + dd f_151014_ + de f_41952_ + df f_41953_ + dg f_41954_ + dh f_41955_ + di f_41956_ + dj f_41957_ + dk f_41906_ + dl f_41907_ + dm f_41908_ + dn f_41909_ + do f_41910_ + dp f_151015_ + dq f_271209_ + dr f_151016_ + ds f_151017_ + dt f_151018_ + du f_151019_ + dv f_41911_ + dw f_41914_ + dx f_41915_ + dy f_41916_ + dz f_41917_ + e f_42064_ + eA f_41982_ + eB f_41983_ + eC f_41984_ + eD f_42038_ + eE f_42039_ + eF f_42040_ + eG f_42041_ + eH f_42042_ + eI f_271316_ + eJ f_42043_ + eK f_220188_ + eL f_244106_ + eM f_42044_ + eN f_42045_ + eO f_42046_ + eP f_42047_ + eQ f_42055_ + eR f_42048_ + eS f_42049_ + eT f_42050_ + eU f_42051_ + eV f_42052_ + eW f_151026_ + eX f_42053_ + eY f_42054_ + eZ f_42012_ + ea f_41992_ + eb f_41993_ + ec f_41994_ + ed f_41995_ + ee f_41997_ + ef f_244640_ + eg f_271478_ + eh f_41998_ + ei f_41999_ + ej f_42000_ + ek f_42001_ + el f_42002_ + em f_42003_ + en f_42004_ + eo f_42005_ + ep f_42006_ + eq f_42007_ + er f_42009_ + es f_41960_ + et f_41961_ + eu f_41962_ + ev f_41963_ + ew f_41965_ + ex f_41979_ + ey f_41980_ + ez f_41981_ + f f_42117_ + fA f_151025_ + fB f_42091_ + fC f_42092_ + fD f_220191_ + fE f_42093_ + fF f_42094_ + fG f_42095_ + fH f_42096_ + fI f_42097_ + fJ f_42098_ + fK f_42099_ + fL f_220192_ + fM f_220193_ + fN f_220194_ + fO f_220195_ + fP f_42100_ + fQ f_42101_ + fR f_42102_ + fS f_42103_ + fT f_42104_ + fU f_42106_ + fV f_42108_ + fW f_42110_ + fX f_42008_ + fY f_42111_ + fZ f_42112_ + fa f_42013_ + fb f_42014_ + fc f_42015_ + fd f_42016_ + fe f_42017_ + ff f_151027_ + fg f_42018_ + fh f_42019_ + fi f_42020_ + fj f_42021_ + fk f_220185_ + fl f_220186_ + fm f_151020_ + fn f_151021_ + fo f_151022_ + fp f_151023_ + fq f_151024_ + fr f_220187_ + fs f_42022_ + ft f_42023_ + fu f_42024_ + fv f_42025_ + fw f_42026_ + fx f_42027_ + fy f_42028_ + fz f_42029_ + g f_42170_ + gA f_42080_ + gB f_42081_ + gC f_42082_ + gD f_151028_ + gE f_151029_ + gF f_151030_ + gG f_151031_ + gH f_42146_ + gI f_42147_ + gJ f_42148_ + gK f_42156_ + gL f_42157_ + gM f_42158_ + gN f_42159_ + gO f_42160_ + gP f_42163_ + gQ f_42164_ + gR f_42165_ + gS f_42166_ + gT f_42167_ + gU f_42168_ + gV f_42169_ + gW f_42118_ + gX f_42119_ + gY f_42120_ + gZ f_42121_ + ga f_42113_ + gb f_42202_ + gc f_271397_ + gd f_42203_ + ge f_220189_ + gf f_244189_ + gg f_243828_ + gh f_42114_ + gi f_42115_ + gj f_42116_ + gk f_42065_ + gl f_42066_ + gm f_42067_ + gn f_42068_ + go f_42069_ + gp f_42070_ + gq f_42071_ + gr f_42072_ + gs f_42073_ + gt f_220190_ + gu f_42074_ + gv f_42075_ + gw f_42076_ + gx f_42077_ + gy f_42078_ + gz f_42079_ + h f_42223_ + hA f_151032_ + hB f_42206_ + hC f_42207_ + hD f_42208_ + hE f_42209_ + hF f_42210_ + hG f_42211_ + hH f_42212_ + hI f_42213_ + hJ f_42214_ + hK f_42215_ + hL f_42216_ + hM f_42217_ + hN f_42218_ + hO f_42219_ + hP f_42220_ + hQ f_42221_ + hR f_42222_ + hS f_42171_ + hT f_42172_ + hU f_42173_ + hV f_42174_ + hW f_42175_ + hX f_42176_ + hY f_42177_ + hZ f_42178_ + ha f_42122_ + hb f_42123_ + hc f_42124_ + hd f_42125_ + he f_42126_ + hf f_42127_ + hg f_151033_ + hh f_42129_ + hi f_42130_ + hj f_42131_ + hk f_42132_ + hl f_42133_ + hm f_42134_ + hn f_42135_ + ho f_42136_ + hp f_42137_ + hq f_42138_ + hr f_42139_ + hs f_42140_ + ht f_42141_ + hu f_42142_ + hv f_42143_ + hw f_42197_ + hx f_42198_ + hy f_42199_ + hz f_42201_ + i f_151034_ + iA f_42258_ + iB f_42259_ + iC f_42260_ + iD f_42261_ + iE f_42262_ + iF f_42263_ + iG f_42265_ + iH f_42266_ + iI f_42267_ + iJ f_42268_ + iK f_42269_ + iL f_42270_ + iM f_42271_ + iN f_42272_ + iO f_42273_ + iP f_42274_ + iQ f_42275_ + iR f_42224_ + iS f_42225_ + iT f_42226_ + iU f_42227_ + iV f_42228_ + iW f_42229_ + iX f_42230_ + iY f_42231_ + iZ f_42232_ + ia f_42179_ + ib f_42180_ + ic f_42181_ + id f_42182_ + ie f_42183_ + if f_42184_ + ig f_42185_ + ih f_42186_ + ii f_42187_ + ij f_42188_ + ik f_42189_ + il f_42190_ + im f_42191_ + in f_42192_ + io f_42193_ + ip f_42194_ + iq f_42195_ + ir f_42196_ + is f_42250_ + it f_42251_ + iu f_42252_ + iv f_42253_ + iw f_42254_ + ix f_42255_ + iy f_42256_ + iz f_42257_ + j f_151035_ + jA f_42312_ + jB f_42313_ + jC f_42314_ + jD f_42315_ + jE f_42316_ + jF f_42317_ + jG f_42318_ + jH f_42319_ + jI f_42320_ + jJ f_42321_ + jK f_42322_ + jL f_42323_ + jM f_42324_ + jN f_42325_ + jO f_42326_ + jP f_42327_ + jQ f_42328_ + jR f_42277_ + jS f_42278_ + jT f_42279_ + jU f_276468_ + jV f_42280_ + jW f_42281_ + jX f_42282_ + jY f_42283_ + jZ f_42284_ + ja f_42233_ + jb f_42234_ + jc f_42235_ + jd f_42236_ + je f_42237_ + jf f_42238_ + jg f_42239_ + jh f_42240_ + ji f_42241_ + jj f_42242_ + jk f_42243_ + jl f_42244_ + jm f_42245_ + jn f_42246_ + jo f_42247_ + jp f_42248_ + jq f_42249_ + jr f_42303_ + js f_42304_ + jt f_42305_ + ju f_42306_ + jv f_42307_ + jw f_42308_ + jx f_42309_ + jy f_42310_ + jz f_42311_ + k f_151040_ + kA f_42364_ + kB f_42365_ + kC f_42366_ + kD f_42367_ + kE f_42368_ + kF f_42369_ + kG f_42370_ + kH f_42371_ + kI f_42372_ + kJ f_42373_ + kK f_42374_ + kL f_42375_ + kM f_42376_ + kN f_42377_ + kO f_42378_ + kP f_151036_ + kQ f_151037_ + kR f_151038_ + kS f_151039_ + kT f_42379_ + kU f_42380_ + kV f_42381_ + kW f_42330_ + kX f_42331_ + kY f_42332_ + kZ f_42333_ + ka f_42285_ + kb f_42286_ + kc f_42287_ + kd f_42288_ + ke f_42289_ + kf f_42290_ + kg f_42291_ + kh f_42292_ + ki f_42293_ + kj f_42294_ + kk f_42295_ + kl f_42296_ + km f_42297_ + kn f_42298_ + ko f_42299_ + kp f_42300_ + kq f_42301_ + kr f_42302_ + ks f_42356_ + kt f_42357_ + ku f_42358_ + kv f_42359_ + kw f_42360_ + kx f_42361_ + ky f_42362_ + kz f_42363_ + l f_151047_ + lA f_41966_ + lB f_151041_ + lC f_42152_ + lD f_151042_ + lE f_276539_ + lF f_42109_ + lG f_42149_ + lH f_41996_ + lI f_42105_ + lJ f_41859_ + lK f_42083_ + lL f_42145_ + lM f_42084_ + lN f_42085_ + lO f_42086_ + lP f_42087_ + lQ f_42088_ + lR f_271474_ + lS f_42089_ + lT f_220199_ + lU f_244424_ + lV f_42090_ + lW f_42144_ + lX f_41967_ + lY f_41976_ + lZ f_42150_ + la f_42334_ + lb f_42335_ + lc f_42336_ + ld f_42337_ + le f_42338_ + lf f_42339_ + lg f_151043_ + lh f_151044_ + li f_151045_ + lj f_151046_ + lk f_42340_ + ll f_42451_ + lm f_41978_ + ln f_42153_ + lo f_42350_ + lp f_42351_ + lq f_41869_ + lr f_41862_ + ls f_42204_ + lt f_42788_ + lu f_42264_ + lv f_42155_ + lw f_41855_ + lx f_42162_ + ly f_42774_ + lz f_42793_ + m f_151048_ + mA f_42057_ + mB f_42058_ + mC f_42059_ + mD f_42060_ + mE f_271114_ + mF f_42061_ + mG f_220198_ + mH f_244311_ + mI f_42062_ + mJ f_42063_ + mK f_42030_ + mL f_42031_ + mM f_42032_ + mN f_42033_ + mO f_42034_ + mP f_271205_ + mQ f_42035_ + mR f_220206_ + mS f_244345_ + mT f_42036_ + mU f_42037_ + mV f_41860_ + mW f_41861_ + mX f_41964_ + mY f_42161_ + mZ f_42450_ + ma f_42151_ + mb f_41968_ + mc f_41969_ + md f_41970_ + me f_41971_ + mf f_41972_ + mg f_271282_ + mh f_41973_ + mi f_220196_ + mj f_244469_ + mk f_41974_ + ml f_41975_ + mm f_42341_ + mn f_42342_ + mo f_42343_ + mp f_42344_ + mq f_42345_ + mr f_42346_ + ms f_271459_ + mt f_42347_ + mu f_220197_ + mv f_243820_ + mw f_42348_ + mx f_42349_ + my f_42128_ + mz f_42056_ + n f_151054_ + nA f_42352_ + nB f_42353_ + nC f_42354_ + nD f_42355_ + nE f_42409_ + nF f_42410_ + nG f_42411_ + nH f_42412_ + nI f_42413_ + nJ f_42414_ + nK f_42415_ + nL f_42616_ + nM f_42534_ + nN f_42692_ + nO f_151049_ + nP f_151050_ + nQ f_42416_ + nR f_151051_ + nS f_151052_ + nT f_151053_ + nU f_42417_ + nV f_42418_ + nW f_42419_ + nX f_42420_ + nY f_42421_ + nZ f_42422_ + na f_42449_ + nb f_42519_ + nc f_42520_ + nd f_42693_ + ne f_42694_ + nf f_42684_ + ng f_42685_ + nh f_42741_ + ni f_42453_ + nj f_220207_ + nk f_42742_ + nl f_220208_ + nm f_42743_ + nn f_220200_ + no f_42744_ + np f_220201_ + nq f_42745_ + nr f_220202_ + ns f_271386_ + nt f_271490_ + nu f_42746_ + nv f_220203_ + nw f_220204_ + nx f_220205_ + ny f_244624_ + nz f_244260_ + o f_42276_ + oA f_42397_ + oB f_42398_ + oC f_42399_ + oD f_42400_ + oE f_42401_ + oF f_42402_ + oG f_42403_ + oH f_42404_ + oI f_42405_ + oJ f_42406_ + oK f_42407_ + oL f_42408_ + oM f_42462_ + oN f_42463_ + oO f_42464_ + oP f_42465_ + oQ f_42466_ + oR f_42467_ + oS f_42468_ + oT f_42469_ + oU f_42470_ + oV f_42471_ + oW f_42472_ + oX f_42473_ + oY f_42474_ + oZ f_42475_ + oa f_42423_ + ob f_42424_ + oc f_42425_ + od f_42426_ + oe f_42427_ + of f_42428_ + og f_42429_ + oh f_42430_ + oi f_42431_ + oj f_42432_ + ok f_42433_ + ol f_42434_ + om f_42383_ + on f_42384_ + oo f_42385_ + op f_42386_ + oq f_42387_ + or f_42388_ + os f_42389_ + ot f_42390_ + ou f_42391_ + ov f_42392_ + ow f_42393_ + ox f_42394_ + oy f_42395_ + oz f_42396_ + p f_42329_ + pA f_243963_ + pB f_244431_ + pC f_243722_ + pD f_244440_ + pE f_271501_ + pF f_243805_ + pG f_244479_ + pH f_243999_ + pI f_244617_ + pJ f_244637_ + pK f_42446_ + pL f_42447_ + pM f_42448_ + pN f_151055_ + pO f_42452_ + pP f_42454_ + pQ f_42455_ + pR f_42456_ + pS f_42457_ + pT f_42458_ + pU f_42459_ + pV f_151057_ + pW f_220210_ + pX f_42460_ + pY f_42461_ + pZ f_42515_ + pa f_42476_ + pb f_42477_ + pc f_42478_ + pd f_42479_ + pe f_42480_ + pf f_42481_ + pg f_42482_ + ph f_42483_ + pi f_42484_ + pj f_42485_ + pk f_42486_ + pl f_42487_ + pm f_42436_ + pn f_42437_ + po f_42438_ + pp f_42439_ + pq f_42440_ + pr f_42441_ + ps f_42442_ + pt f_271504_ + pu f_42443_ + pv f_220209_ + pw f_244057_ + px f_42444_ + py f_42445_ + pz f_244406_ + q f_42382_ + qA f_42489_ + qB f_42490_ + qC f_42491_ + qD f_42492_ + qE f_42493_ + qF f_42494_ + qG f_42495_ + qH f_42496_ + qI f_42497_ + qJ f_42498_ + qK f_42499_ + qL f_42500_ + qM f_42501_ + qN f_42502_ + qO f_42503_ + qP f_42504_ + qQ f_42505_ + qR f_42506_ + qS f_42507_ + qT f_42508_ + qU f_42509_ + qV f_42510_ + qW f_42511_ + qX f_42512_ + qY f_42513_ + qZ f_42514_ + qa f_42516_ + qb f_42517_ + qc f_42518_ + qd f_42521_ + qe f_42522_ + qf f_220211_ + qg f_151058_ + qh f_42523_ + qi f_42524_ + qj f_151059_ + qk f_42525_ + ql f_42526_ + qm f_42527_ + qn f_42528_ + qo f_42529_ + qp f_42530_ + qq f_42531_ + qr f_42532_ + qs f_151056_ + qt f_42533_ + qu f_42535_ + qv f_42536_ + qw f_42537_ + qx f_42538_ + qy f_42539_ + qz f_42540_ + r f_42435_ + rA f_42542_ + rB f_42543_ + rC f_42544_ + rD f_42545_ + rE f_42546_ + rF f_220212_ + rG f_151060_ + rH f_42547_ + rI f_42548_ + rJ f_42549_ + rK f_42550_ + rL f_243767_ + rM f_42551_ + rN f_42552_ + rO f_42553_ + rP f_42554_ + rQ f_42555_ + rR f_42556_ + rS f_42557_ + rT f_42558_ + rU f_42559_ + rV f_254703_ + rW f_42560_ + rX f_42561_ + rY f_42562_ + rZ f_42563_ + ra f_42568_ + rb f_42569_ + rc f_42570_ + rd f_42571_ + re f_42572_ + rf f_42573_ + rg f_42574_ + rh f_42575_ + ri f_42576_ + rj f_42577_ + rk f_42578_ + rl f_42579_ + rm f_42580_ + rn f_42581_ + ro f_42582_ + rp f_42583_ + rq f_42584_ + rr f_42585_ + rs f_42586_ + rt f_42587_ + ru f_42588_ + rv f_42589_ + rw f_42590_ + rx f_42591_ + ry f_42592_ + rz f_42593_ + s f_151064_ + sA f_42639_ + sB f_42640_ + sC f_42641_ + sD f_42642_ + sE f_42643_ + sF f_42644_ + sG f_271374_ + sH f_254656_ + sI f_42645_ + sJ f_42646_ + sK f_42595_ + sL f_42596_ + sM f_220214_ + sN f_42597_ + sO f_42598_ + sP f_42599_ + sQ f_42600_ + sR f_42601_ + sS f_42602_ + sT f_42603_ + sU f_220215_ + sV f_42604_ + sW f_254669_ + sX f_42605_ + sY f_42606_ + sZ f_42607_ + sa f_220213_ + sb f_42564_ + sc f_151061_ + sd f_151062_ + se f_42565_ + sf f_42566_ + sg f_42567_ + sh f_42621_ + si f_254737_ + sj f_42622_ + sk f_42623_ + sl f_42624_ + sm f_42625_ + sn f_42626_ + so f_42627_ + sp f_42628_ + sq f_42629_ + sr f_42630_ + ss f_42631_ + st f_42632_ + su f_42633_ + sv f_42634_ + sw f_42635_ + sx f_42636_ + sy f_42637_ + sz f_42638_ + t f_220216_ + tA f_42688_ + tB f_42689_ + tC f_42690_ + tD f_42691_ + tE f_42695_ + tF f_42696_ + tG f_42697_ + tH f_42698_ + tI f_42699_ + tJ f_42648_ + tK f_42649_ + tL f_42650_ + tM f_42651_ + tN f_42652_ + tO f_42653_ + tP f_42654_ + tQ f_42655_ + tR f_42656_ + tS f_42657_ + tT f_42658_ + tU f_42659_ + tV f_42660_ + tW f_42661_ + tX f_42662_ + tY f_42663_ + tZ f_42664_ + ta f_42608_ + tb f_42609_ + tc f_42610_ + td f_42611_ + te f_42612_ + tf f_42613_ + tg f_42614_ + th f_42615_ + ti f_42617_ + tj f_151063_ + tk f_42618_ + tl f_42619_ + tm f_42620_ + tn f_42674_ + to f_42675_ + tp f_42676_ + tq f_42677_ + tr f_42678_ + ts f_42679_ + tt f_42680_ + tu f_42681_ + tv f_42682_ + tw f_42683_ + tx f_260451_ + ty f_42686_ + tz f_42687_ + u f_42488_ + uA f_42748_ + uB f_42749_ + uC f_42750_ + uD f_42751_ + uE f_42752_ + uF f_42701_ + uG f_42702_ + uH f_42703_ + uI f_42704_ + uJ f_42705_ + uK f_42706_ + uL f_42707_ + uM f_42708_ + uN f_42709_ + uO f_42710_ + uP f_42711_ + uQ f_186363_ + uR f_283830_ + uS f_220217_ + uT f_42712_ + uU f_220218_ + uV f_42713_ + uW f_42714_ + uX f_42715_ + uY f_42716_ + uZ f_42717_ + ua f_42665_ + ub f_42666_ + uc f_42667_ + ud f_42668_ + ue f_42669_ + uf f_42670_ + ug f_42671_ + uh f_42672_ + ui f_42673_ + uj f_42727_ + uk f_42728_ + ul f_42729_ + um f_42730_ + un f_42731_ + uo f_271133_ + up f_276594_ + uq f_42732_ + ur f_42733_ + us f_42734_ + ut f_42735_ + uu f_42736_ + uv f_42737_ + uw f_42738_ + ux f_42739_ + uy f_42740_ + uz f_42747_ + v f_42541_ + vA f_42784_ + vB f_42785_ + vC f_42786_ + vD f_42787_ + vE f_42789_ + vF f_42790_ + vG f_42754_ + vH f_42755_ + vI f_42756_ + vJ f_42757_ + vK f_42758_ + vL f_42759_ + vM f_42760_ + vN f_42761_ + vO f_42762_ + vP f_42763_ + vQ f_42764_ + vR f_42765_ + vS f_42766_ + vT f_42767_ + vU f_151065_ + vV f_151066_ + vW f_151067_ + vX f_151068_ + vY f_151069_ + vZ f_151070_ + va f_42718_ + vb f_42719_ + vc f_42720_ + vd f_42721_ + ve f_42722_ + vf f_42723_ + vg f_186364_ + vh f_42725_ + vi f_220219_ + vj f_42726_ + vk f_42768_ + vl f_42769_ + vm f_42770_ + vn f_42771_ + vo f_42772_ + vp f_42773_ + vq f_42775_ + vr f_42776_ + vs f_42777_ + vt f_42778_ + vu f_42779_ + vv f_42780_ + vw f_151079_ + vx f_42781_ + vy f_42782_ + vz f_42783_ + w f_42594_ + wA f_265887_ + wB f_266029_ + wC f_265965_ + wD f_265964_ + wE f_265946_ + wF f_265974_ + wG f_265858_ + wH f_266114_ + wI f_276612_ + wJ f_276546_ + wK f_276537_ + wL f_276465_ + wM f_276433_ + wN f_279633_ + wO f_279642_ + wP f_279634_ + wQ f_279567_ + wR f_279583_ + wS f_279650_ + wT f_279619_ + wU f_279616_ + wV f_279584_ + wW f_279623_ + wX f_279606_ + wY f_279598_ + wZ f_279559_ + wa f_151071_ + wb f_151072_ + wc f_151073_ + wd f_151074_ + we f_151075_ + wf f_151076_ + wg f_151077_ + wh f_151078_ + wi f_151080_ + wj f_151081_ + wk f_151082_ + wl f_151083_ + wm f_151084_ + wn f_151085_ + wo f_151086_ + wp f_151087_ + wq f_220220_ + wr f_220221_ + ws f_220222_ + wt f_220223_ + wu f_220224_ + wv f_271356_ + ww f_265918_ + wx f_265996_ + wy f_266078_ + wz f_265914_ + x f_42647_ + xa f_279560_ + xb f_279647_ + xc f_279528_ + xd f_279545_ + xe f_279529_ + xf f_279570_ + xg f_279636_ + y f_42700_ + z f_42753_ + ()V + static + ()V + a (Lcpn;[Lcpn;)Lcfu; m_245048_ + static + 0 o p_252092_ + 1 o p_248886_ + a (Lcpn;)Lcfu; m_42805_ + static + 0 o p_42806_ + a (Lcds;)Lcfu; m_42803_ + static + 0 o p_42804_ + a (Lacp;Lcfu;)Lcfu; m_280247_ + static + 0 o p_281502_ + 1 o p_283159_ + a (Lacq;Lcfu;)Lcfu; m_42816_ + static + 0 o p_42817_ + 1 o p_42818_ + a (Lcpn;Lcfu;)Lcfu; m_42810_ + static + 0 o p_42811_ + 1 o p_42812_ + a (Ljava/lang/String;Lcfu;)Lcfu; m_42813_ + static + 0 o p_42814_ + 1 o p_42815_ +cgd net/minecraft/world/item/KnowledgeBookItem + a f_151103_ + b f_42819_ + ()V + static + (Lcfu$a;)V + 0 o p_42822_ + a (Lcmm;Lbyo;Lbdw;)Lbdy; m_7203_ + 0 o p_42824_ + 1 o p_42825_ + 2 o p_42826_ +cge net/minecraft/world/item/LeadItem + (Lcfu$a;)V + 0 o p_42828_ + a (Lcij;)Lbdx; m_6225_ + 0 o p_42834_ + a (Lbyo;Lcmm;Lgu;)Lbdx; m_42829_ + static + 0 o p_42830_ + 1 o p_42831_ + 2 o p_42832_ +cgf net/minecraft/world/item/LingeringPotionItem + (Lcfu$a;)V + 0 o p_42836_ + a (Lcfz;Lcmm;Ljava/util/List;Lchq;)V m_7373_ + 0 o p_42838_ + 1 o p_42839_ + 2 o p_42840_ + 3 o p_42841_ + a (Lcmm;Lbyo;Lbdw;)Lbdy; m_7203_ + 0 o p_42843_ + 1 o p_42844_ + 2 o p_42845_ +cgg net/minecraft/world/item/MapItem + a f_151104_ + b f_151105_ + c f_257005_ + d f_256921_ + e f_151106_ + f f_151107_ + (Lcfu$a;)V + 0 o p_42847_ + a (Lcij;)Lbdx; m_6225_ + 0 o p_42885_ + a (Lcmm;IIIZZLacp;)I m_151120_ + static + 0 o p_151121_ + 1 o p_151122_ + 2 o p_151123_ + 3 o p_151124_ + 4 o p_151125_ + 5 o p_151126_ + 6 o p_151127_ + a (Lcfz;I)V m_151108_ + static + 0 o p_151109_ + 1 o p_151110_ + a (Lcfz;Lcmm;Ljava/util/List;Lchq;)V m_7373_ + 0 o p_42880_ + 1 o p_42881_ + 2 o p_42882_ + 3 o p_42883_ + a (Lcfz;Lcmm;IIIZZLacp;)V m_151111_ + static + 0 o p_151112_ + 1 o p_151113_ + 2 o p_151114_ + 3 o p_151115_ + 4 o p_151116_ + 5 o p_151117_ + 6 o p_151118_ + 7 o p_151119_ + a (I)Ljava/lang/String; m_42848_ + static + 0 o p_42849_ + a (Ljava/lang/Integer;Lcmm;)Ldyo; m_151128_ + static + 0 o p_151129_ + 1 o p_151130_ + a (Lcmm;IIBZZ)Lcfz; m_42886_ + static + 0 o p_42887_ + 1 o p_42888_ + 2 o p_42889_ + 3 o p_42890_ + 4 o p_42891_ + 5 o p_42892_ + a (Lcfz;Lcmm;)Ldyo; m_42853_ + static + 0 o p_42854_ + 1 o p_42855_ + a (Laif;Lcfz;)V m_42850_ + static + 0 o p_42851_ + 1 o p_42852_ + a (Lcmm;Lbfj;Ldyo;)V m_42893_ + 0 o p_42894_ + 1 o p_42895_ + 2 o p_42896_ + a ([ZII)Z m_212251_ + static + 0 o p_212252_ + 1 o p_212253_ + 2 o p_212254_ + a (Lcfz;Lcmm;Lbfj;IZ)V m_6883_ + 0 o p_42870_ + 1 o p_42871_ + 2 o p_42872_ + 3 o p_42873_ + 4 o p_42874_ + a (Lcfz;Lcmm;I)V m_42856_ + static + 0 o p_42857_ + 1 o p_42858_ + 2 o p_42859_ + a (Lcmm;Lcfz;)V m_42897_ + static + 0 o p_42898_ + 1 o p_42899_ + a (Lcfz;Lcmm;Lbyo;)Luo; m_7233_ + 0 o p_42876_ + 1 o p_42877_ + 2 o p_42878_ + a (Lcmm;Ldcb;Lgu;)Ldcb; m_42900_ + 0 o p_42901_ + 1 o p_42902_ + 2 o p_42903_ + b (Lcfz;Lcmm;Lbyo;)V m_7836_ + 0 o p_42913_ + 1 o p_42914_ + 2 o p_42915_ + d (Lcfz;)Ljava/lang/Integer; m_151131_ + static + 0 o p_151132_ + k (Lcfz;)I m_42918_ + static + 0 o p_42919_ +cgh net/minecraft/world/item/MilkBucketItem + a f_151133_ + (Lcfu$a;)V + 0 o p_42921_ + a (Lcfz;Lcmm;Lbfz;)Lcfz; m_5922_ + 0 o p_42923_ + 1 o p_42924_ + 2 o p_42925_ + a (Lcmm;Lbyo;Lbdw;)Lbdy; m_7203_ + 0 o p_42927_ + 1 o p_42928_ + 2 o p_42929_ + b (Lcfz;)I m_8105_ + 0 o p_42933_ + c (Lcfz;)Lchs; m_6164_ + 0 o p_42931_ +cgi net/minecraft/world/item/MinecartItem + a f_42934_ + b f_42935_ + ()V + static + (Lcaf$a;Lcfu$a;)V + 0 o p_42938_ + 1 o p_42939_ + a (Lcij;)Lbdx; m_6225_ + 0 o p_42943_ +cgi$1 net/minecraft/world/item/MinecartItem$1 + c f_42944_ + ()V + a (Lgv;Lcfz;)Lcfz; m_7498_ + 0 o p_42949_ + 1 o p_42950_ + a (Lgv;)V m_6823_ + 0 o p_42947_ +cgj net/minecraft/world/item/MobBucketItem + a f_151134_ + b f_151135_ + (Lbfn;Ldxd;Lamg;Lcfu$a;)V + 0 o p_151137_ + 1 o p_151138_ + 2 o p_151139_ + 3 o p_151140_ + a (Lcfz;Lcmm;Ljava/util/List;Lchq;)V m_7373_ + 0 o p_151155_ + 1 o p_151156_ + 2 o p_151157_ + 3 o p_151158_ + a (Laif;Lcfz;Lgu;)V m_151141_ + 0 o p_151142_ + 1 o p_151143_ + 2 o p_151144_ + a (Lbyo;Lcmm;Lcfz;Lgu;)V m_142131_ + 0 o p_151146_ + 1 o p_151147_ + 2 o p_151148_ + 3 o p_151149_ + a (Lbyo;Lcmn;Lgu;)V m_7718_ + 0 o p_151151_ + 1 o p_151152_ + 2 o p_151153_ +cgk net/minecraft/world/item/NameTagItem + (Lcfu$a;)V + 0 o p_42952_ + a (Lcfz;Lbyo;Lbfz;Lbdw;)Lbdx; m_6880_ + 0 o p_42954_ + 1 o p_42955_ + 2 o p_42956_ + 3 o p_42957_ +cgl net/minecraft/world/item/PickaxeItem + (Lchm;IFLcfu$a;)V + 0 o p_42961_ + 1 o p_42962_ + 2 o p_42963_ + 3 o p_42964_ +cgm net/minecraft/world/item/PlaceOnWaterBlockItem + (Lcpn;Lcfu$a;)V + 0 o p_220226_ + 1 o p_220227_ + a (Lcij;)Lbdx; m_6225_ + 0 o p_220229_ + a (Lcmm;Lbyo;Lbdw;)Lbdy; m_7203_ + 0 o p_220231_ + 1 o p_220232_ + 2 o p_220233_ +cgn net/minecraft/world/item/PlayerHeadItem + c f_151174_ + (Lcpn;Lcpn;Lcfu$a;)V + 0 o p_42971_ + 1 o p_42972_ + 2 o p_42973_ + a (Lqr;Lcom/mojang/authlib/GameProfile;)V m_151175_ + static + 0 o p_151176_ + 1 o p_151177_ + b (Lqr;)V m_142312_ + 0 o p_151179_ + m (Lcfz;)Lsw; m_7626_ + 0 o p_42977_ +cgo net/minecraft/world/item/PotionItem + a f_151180_ + (Lcfu$a;)V + 0 o p_42979_ + a (Lcij;)Lbdx; m_6225_ + 0 o p_220235_ + a (Lcfz;Lcmm;Lbfz;)Lcfz; m_5922_ + 0 o p_42984_ + 1 o p_42985_ + 2 o p_42986_ + a (Lcfz;Lcmm;Ljava/util/List;Lchq;)V m_7373_ + 0 o p_42988_ + 1 o p_42989_ + 2 o p_42990_ + 3 o p_42991_ + a (Lcmm;Lbyo;Lbdw;)Lbdy; m_7203_ + 0 o p_42993_ + 1 o p_42994_ + 2 o p_42995_ + ae_ ()Lcfz; m_7968_ + b (Lcfz;)I m_8105_ + 0 o p_43001_ + c (Lcfz;)Lchs; m_6164_ + 0 o p_42997_ + j (Lcfz;)Ljava/lang/String; m_5671_ + 0 o p_43003_ +cgp net/minecraft/world/item/ProjectileWeaponItem + c f_43005_ + d f_43006_ + ()V + static + (Lcfu$a;)V + 0 o p_43009_ + a (Lbfz;Ljava/util/function/Predicate;)Lcfz; m_43010_ + static + 0 o p_43011_ + 1 o p_43012_ + b ()Ljava/util/function/Predicate; m_6437_ + c ()I m_6473_ + d (Lcfz;)Z m_43014_ + static + 0 o p_43015_ + d ()I m_6615_ + e ()Ljava/util/function/Predicate; m_6442_ + k (Lcfz;)Z m_43016_ + static + 0 o p_43017_ +cgq net/minecraft/world/item/Rarity + a COMMON + b UNCOMMON + c RARE + d EPIC + e f_43022_ + f $VALUES + ()V + static + (Ljava/lang/String;ILn;)V + 0 o p_43026_ + 1 o p_43027_ + 2 o p_43028_ + a ()[Lcgq; m_151181_ + static + valueOf (Ljava/lang/String;)Lcgq; valueOf + static + 0 o p_43030_ + values ()[Lcgq; values + static +cgr net/minecraft/world/item/RecordItem + a f_43032_ + b f_43033_ + c f_43034_ + d f_238749_ + ()V + static + (ILamg;Lcfu$a;I)V + 0 o p_239614_ + 1 o p_239615_ + 2 o p_239616_ + 3 o p_239617_ + a (Lcij;)Lbdx; m_6225_ + 0 o p_43048_ + a (Lcfz;Lcmm;Ljava/util/List;Lchq;)V m_7373_ + 0 o p_43043_ + 1 o p_43044_ + 2 o p_43045_ + 3 o p_43046_ + a (Lamg;)Lcgr; m_43040_ + static + 0 o p_43041_ + h ()I m_43049_ + i ()Ltj; m_43050_ + x ()Lamg; m_43051_ + y ()I m_43036_ +cgs net/minecraft/world/item/SaddleItem + (Lcfu$a;)V + 0 o p_43053_ + a (Lcfz;Lbyo;Lbfz;Lbdw;)Lbdx; m_6880_ + 0 o p_43055_ + 1 o p_43056_ + 2 o p_43057_ + 3 o p_43058_ +cgt net/minecraft/world/item/ScaffoldingBlockItem + (Lcpn;Lcfu$a;)V + 0 o p_43060_ + 1 o p_43061_ + b (Lcih;)Lcih; m_7732_ + 0 o p_43063_ + d ()Z m_6652_ +cgu net/minecraft/world/item/ServerItemCooldowns + a f_43065_ + (Laig;)V + 0 o p_43067_ + b (Lcfu;I)V m_6899_ + 0 o p_43069_ + 1 o p_43070_ + c (Lcfu;)V m_7432_ + 0 o p_43072_ +cgv net/minecraft/world/item/ShearsItem + (Lcfu$a;)V + 0 o p_43074_ + a (Lcij;)Lbdx; m_6225_ + 0 o p_186371_ + a (Lbfz;)V m_43075_ + static + 0 o p_43076_ + a (Lcfz;Lcmm;Ldcb;Lgu;Lbfz;)Z m_6813_ + 0 o p_43078_ + 1 o p_43079_ + 2 o p_43080_ + 3 o p_43081_ + 4 o p_43082_ + a (Lcfz;Ldcb;)F m_8102_ + 0 o p_43084_ + 1 o p_43085_ + a (Lcij;Lbyo;)V m_186372_ + static + 0 o p_186373_ + 1 o p_186374_ + a_ (Ldcb;)Z m_8096_ + 0 o p_43087_ +cgw net/minecraft/world/item/ShieldItem + a f_151182_ + b f_151183_ + c f_151184_ + (Lcfu$a;)V + 0 o p_43089_ + a (Lcfz;Lcmm;Ljava/util/List;Lchq;)V m_7373_ + 0 o p_43094_ + 1 o p_43095_ + 2 o p_43096_ + 3 o p_43097_ + a (Lcmm;Lbyo;Lbdw;)Lbdy; m_7203_ + 0 o p_43099_ + 1 o p_43100_ + 2 o p_43101_ + a (Lcfz;Lcfz;)Z m_6832_ + 0 o p_43091_ + 1 o p_43092_ + b (Lcfz;)I m_8105_ + 0 o p_43107_ + c (Lcfz;)Lchs; m_6164_ + 0 o p_43105_ + d (Lcfz;)Lcen; m_43102_ + static + 0 o p_43103_ + g ()Lbfo; m_40402_ + j (Lcfz;)Ljava/lang/String; m_5671_ + 0 o p_43109_ +cgx net/minecraft/world/item/ShovelItem + a f_43110_ + ()V + static + (Lchm;FFLcfu$a;)V + 0 o p_43114_ + 1 o p_43115_ + 2 o p_43116_ + 3 o p_43117_ + a (Lcij;)Lbdx; m_6225_ + 0 o p_43119_ + a (Lcij;Lbyo;)V m_43120_ + static + 0 o p_43121_ + 1 o p_43122_ +cgy net/minecraft/world/item/SignApplicator + a (Lcmm;Ldav;ZLbyo;)Z m_276787_ + 0 o p_277619_ + 1 o p_277811_ + 2 o p_277484_ + 3 o p_277362_ + a (Ldaw;Lbyo;)Z m_277072_ + 0 o p_278084_ + 1 o p_277515_ +cgz net/minecraft/world/item/SignItem + (Lcfu$a;Lcpn;Lcpn;Lha;)V + 0 o p_278081_ + 1 o p_277743_ + 2 o p_277375_ + 3 o p_278052_ + (Lcfu$a;Lcpn;Lcpn;)V + 0 o p_43126_ + 1 o p_43127_ + 2 o p_43128_ + a (Lgu;Lcmm;Lbyo;Lcfz;Ldcb;)Z m_7274_ + 0 o p_43130_ + 1 o p_43131_ + 2 o p_43132_ + 3 o p_43133_ + 4 o p_43134_ +ch net/minecraft/advancements/critereon/LocationPredicate + a f_52592_ + b f_52593_ + c f_52594_ + d f_52595_ + e f_52596_ + f f_52597_ + g f_220588_ + h f_52599_ + i f_52600_ + j f_52601_ + k f_52602_ + l f_52603_ + ()V + static + (Lcj$c;Lcj$c;Lcj$c;Lacp;Lacp;Lacp;Ljava/lang/Boolean;Lce;Lat;Lbv;)V + 0 o p_207916_ + 1 o p_207917_ + 2 o p_207918_ + 3 o p_207919_ + 4 o p_207920_ + 5 o p_207921_ + 6 o p_207922_ + 7 o p_207923_ + 8 o p_207924_ + 9 o p_207925_ + a (Lcom/google/gson/JsonElement;)Lch; m_52629_ + static + 0 o p_52630_ + a (Lcj$c;)Lch; m_187442_ + static + 0 o p_187443_ + a (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonElement;)V m_52631_ + static + 0 o p_52632_ + 1 o p_52633_ + a (Lacp;)Lch; m_52634_ + static + 0 o p_52635_ + a (Laif;DDD)Z m_52617_ + 0 o p_52618_ + 1 o p_52619_ + 2 o p_52620_ + 3 o p_52621_ + a ()Lcom/google/gson/JsonElement; m_52616_ + a (Lacq;)Lacp; m_257057_ + static + 0 o p_207927_ + b (Lacq;)Lacp; m_257056_ + static + 0 o p_52637_ + b (Lacp;)Lch; m_52638_ + static + 0 o p_52639_ + c (Lacp;)Lch; m_220589_ + static + 0 o p_220590_ +ch$a net/minecraft/advancements/critereon/LocationPredicate$Builder + a f_52640_ + b f_52641_ + c f_52642_ + d f_52643_ + e f_220591_ + f f_52645_ + g f_52646_ + h f_52647_ + i f_52648_ + j f_52649_ + ()V + a ()Lch$a; m_52651_ + static + a (Lce;)Lch$a; m_153968_ + 0 o p_153969_ + a (Lat;)Lch$a; m_52652_ + 0 o p_52653_ + a (Ljava/lang/Boolean;)Lch$a; m_52654_ + 0 o p_52655_ + a (Lacp;)Lch$a; m_52656_ + 0 o p_52657_ + a (Lbv;)Lch$a; m_153966_ + 0 o p_153967_ + a (Lcj$c;)Lch$a; m_153970_ + 0 o p_153971_ + b ()Lch; m_52658_ + b (Lcj$c;)Lch$a; m_153974_ + 0 o p_153975_ + b (Lacp;)Lch$a; m_220592_ + 0 o p_220593_ + c (Lcj$c;)Lch$a; m_153978_ + 0 o p_153979_ + c (Lacp;)Lch$a; m_153976_ + 0 o p_153977_ +cha net/minecraft/world/item/SimpleFoiledItem + (Lcfu$a;)V + 0 o p_43136_ + i (Lcfz;)Z m_5812_ + 0 o p_43138_ +chb net/minecraft/world/item/SmithingTemplateItem + A f_266096_ + B f_265932_ + C f_265955_ + D f_266026_ + E f_266082_ + F f_265894_ + G f_266085_ + H f_265873_ + I f_265879_ + J f_268746_ + K f_266097_ + L f_266037_ + M f_265939_ + N f_265995_ + O f_266075_ + P f_265875_ + Q f_266068_ + a f_265906_ + b f_265923_ + c f_265860_ + d f_265864_ + e f_265895_ + f f_265982_ + g f_265948_ + h f_265960_ + i f_265846_ + j f_266023_ + k f_266054_ + r f_265856_ + s f_265863_ + t f_266072_ + u f_266113_ + v f_266066_ + w f_265859_ + x f_265917_ + y f_265950_ + z f_265990_ + ()V + static + (Lsw;Lsw;Lsw;Lsw;Lsw;Ljava/util/List;Ljava/util/List;)V + 0 o p_266834_ + 1 o p_267043_ + 2 o p_267048_ + 3 o p_267278_ + 4 o p_267090_ + 5 o p_266755_ + 6 o p_267060_ + A ()Ljava/util/List; m_266239_ + static + B ()Ljava/util/List; m_266346_ + static + C ()Ljava/util/List; m_266257_ + static + D ()Ljava/util/List; m_266579_ + static + a (Lcfz;Lcmm;Ljava/util/List;Lchq;)V m_7373_ + 0 o p_267313_ + 1 o p_266896_ + 2 o p_266820_ + 3 o p_266857_ + a ()Ljava/lang/String; m_5524_ + a (Lacp;)Lchb; m_266304_ + static + 0 o p_266875_ + a (Lacq;)Lchb; m_266172_ + static + 0 o p_266880_ + h ()Lchb; m_266165_ + static + i ()Lsw; m_266212_ + x ()Lsw; m_266549_ + y ()Ljava/util/List; m_266534_ + z ()Ljava/util/List; m_266326_ +chc net/minecraft/world/item/SnowballItem + (Lcfu$a;)V + 0 o p_43140_ + a (Lcmm;Lbyo;Lbdw;)Lbdy; m_7203_ + 0 o p_43142_ + 1 o p_43143_ + 2 o p_43144_ +chd net/minecraft/world/item/SolidBucketItem + c f_151185_ + (Lcpn;Lamg;Lcfu$a;)V + 0 o p_151187_ + 1 o p_151188_ + 2 o p_151189_ + a (Lcij;)Lbdx; m_6225_ + 0 o p_151197_ + a ()Ljava/lang/String; m_5524_ + a (Ldcb;)Lamg; m_40587_ + 0 o p_151199_ + a (Lbyo;Lcmm;Lgu;Leee;)Z m_142073_ + 0 o p_151192_ + 1 o p_151193_ + 2 o p_151194_ + 3 o p_151195_ +che net/minecraft/world/item/SpawnEggItem + a f_43201_ + b f_151200_ + c f_151201_ + d f_43204_ + ()V + static + (Lbfn;IILcfu$a;)V + 0 o p_43207_ + 1 o p_43208_ + 2 o p_43209_ + 3 o p_43210_ + a (Lcij;)Lbdx; m_6225_ + 0 o p_43223_ + a (Lqr;Lbfn;)Z m_43230_ + 0 o p_43231_ + 1 o p_43232_ + a (Lbfn;)Lche; m_43213_ + static + 0 o p_43214_ + a (I)I m_43211_ + 0 o p_43212_ + a (Lcmm;Lbyo;Lbdw;)Lbdy; m_7203_ + 0 o p_43225_ + 1 o p_43226_ + 2 o p_43227_ + a (Lbyo;Lbgb;Lbfn;Laif;Leei;Lcfz;)Ljava/util/Optional; m_43215_ + 0 o p_43216_ + 1 o p_43217_ + 2 o p_43218_ + 3 o p_43219_ + 4 o p_43220_ + 5 o p_43221_ + a (Lqr;)Lbfn; m_43228_ + 0 o p_43229_ + h ()Ljava/lang/Iterable; m_43233_ + static + m ()Lcaw; m_245183_ +chf net/minecraft/world/item/SpectralArrowItem + (Lcfu$a;)V + 0 o p_43235_ + a (Lcmm;Lcfz;Lbfz;)Lbyu; m_6394_ + 0 o p_43237_ + 1 o p_43238_ + 2 o p_43239_ +chg net/minecraft/world/item/SplashPotionItem + (Lcfu$a;)V + 0 o p_43241_ + a (Lcmm;Lbyo;Lbdw;)Lbdy; m_7203_ + 0 o p_43243_ + 1 o p_43244_ + 2 o p_43245_ +chh net/minecraft/world/item/SpyglassItem + a f_151202_ + b f_151203_ + (Lcfu$a;)V + 0 o p_151205_ + a (Lbfz;)V m_151206_ + 0 o p_151207_ + a (Lcfz;Lcmm;Lbfz;)Lcfz; m_5922_ + 0 o p_151209_ + 1 o p_151210_ + 2 o p_151211_ + a (Lcmm;Lbyo;Lbdw;)Lbdy; m_7203_ + 0 o p_151218_ + 1 o p_151219_ + 2 o p_151220_ + a (Lcfz;Lcmm;Lbfz;I)V m_5551_ + 0 o p_151213_ + 1 o p_151214_ + 2 o p_151215_ + 3 o p_151216_ + b (Lcfz;)I m_8105_ + 0 o p_151222_ + c (Lcfz;)Lchs; m_6164_ + 0 o p_151224_ +chi net/minecraft/world/item/StandingAndWallBlockItem + c f_244386_ + d f_43246_ + (Lcpn;Lcpn;Lcfu$a;Lha;)V + 0 o p_248873_ + 1 o p_251044_ + 2 o p_249308_ + 3 o p_250800_ + a (Lcmp;Ldcb;Lgu;)Z m_246210_ + 0 o p_250350_ + 1 o p_249311_ + 2 o p_250328_ + a (Ljava/util/Map;Lcfu;)V m_6192_ + 0 o p_43252_ + 1 o p_43253_ + c (Lcih;)Ldcb; m_5965_ + 0 o p_43255_ +chj net/minecraft/world/item/SuspiciousStewItem + a f_151225_ + b f_151226_ + c f_151227_ + d f_256996_ + (Lcfu$a;)V + 0 o p_43257_ + a (Lcfz;Ljava/util/function/Consumer;)V m_258054_ + static + 0 o p_260126_ + 1 o p_259500_ + a (Lcfz;Lcmm;Lbfz;)Lcfz; m_5922_ + 0 o p_43263_ + 1 o p_43264_ + 2 o p_43265_ + a (Lcfz;Lcmm;Ljava/util/List;Lchq;)V m_7373_ + 0 o p_260314_ + 1 o p_259224_ + 2 o p_259700_ + 3 o p_260021_ + a (Lcfz;Lbey;I)V m_43258_ + static + 0 o p_43259_ + 1 o p_43260_ + 2 o p_43261_ +chk net/minecraft/world/item/SwordItem + a f_43266_ + b f_43267_ + (Lchm;IFLcfu$a;)V + 0 o p_43269_ + 1 o p_43270_ + 2 o p_43271_ + 3 o p_43272_ + a (Lbfz;)V m_43275_ + static + 0 o p_43276_ + a (Lcfz;Lbfz;Lbfz;)Z m_7579_ + 0 o p_43278_ + 1 o p_43279_ + 2 o p_43280_ + a (Lbfo;)Lcom/google/common/collect/Multimap; m_7167_ + 0 o p_43274_ + a (Lcfz;Lcmm;Ldcb;Lgu;Lbfz;)Z m_6813_ + 0 o p_43282_ + 1 o p_43283_ + 2 o p_43284_ + 3 o p_43285_ + 4 o p_43286_ + a (Ldcb;Lcmm;Lgu;Lbyo;)Z m_6777_ + 0 o p_43291_ + 1 o p_43292_ + 2 o p_43293_ + 3 o p_43294_ + a (Lcfz;Ldcb;)F m_8102_ + 0 o p_43288_ + 1 o p_43289_ + a_ (Ldcb;)Z m_8096_ + 0 o p_43298_ + b (Lbfz;)V m_43295_ + static + 0 o p_43296_ + h ()F m_43299_ +chl net/minecraft/world/item/ThrowablePotionItem + (Lcfu$a;)V + 0 o p_43301_ + a (Lcmm;Lbyo;Lbdw;)Lbdy; m_7203_ + 0 o p_43303_ + 1 o p_43304_ + 2 o p_43305_ +chm net/minecraft/world/item/Tier + a ()I m_6609_ + b ()F m_6624_ + c ()F m_6631_ + d ()I m_6604_ + e ()I m_6601_ + f ()Lciz; m_6282_ +chn net/minecraft/world/item/TieredItem + a f_43306_ + (Lchm;Lcfu$a;)V + 0 o p_43308_ + 1 o p_43309_ + a (Lcfz;Lcfz;)Z m_6832_ + 0 o p_43311_ + 1 o p_43312_ + c ()I m_6473_ + i ()Lchm; m_43314_ +cho net/minecraft/world/item/Tiers + a WOOD + b STONE + c IRON + d DIAMOND + e GOLD + f NETHERITE + g f_43321_ + h f_43322_ + i f_43323_ + j f_43324_ + k f_43325_ + l f_43326_ + m $VALUES + ()V + static + (Ljava/lang/String;IIIFFILjava/util/function/Supplier;)V + 0 o p_43330_ + 1 o p_43331_ + 2 o p_43332_ + 3 o p_43333_ + 4 o p_43334_ + 5 o p_43335_ + 6 o p_43336_ + 7 o p_43337_ + a ()I m_6609_ + b ()F m_6624_ + c ()F m_6631_ + d ()I m_6604_ + e ()I m_6601_ + f ()Lciz; m_6282_ + g ()Lciz; m_43344_ + static + h ()Lciz; m_43345_ + static + i ()Lciz; m_43346_ + static + j ()Lciz; m_43347_ + static + k ()Lciz; m_43348_ + static + l ()Lciz; m_43349_ + static + m ()[Lcho; m_151228_ + static + valueOf (Ljava/lang/String;)Lcho; valueOf + static + 0 o p_43351_ + values ()[Lcho; values + static +chp net/minecraft/world/item/TippedArrowItem + (Lcfu$a;)V + 0 o p_43354_ + a (Lcfz;Lcmm;Ljava/util/List;Lchq;)V m_7373_ + 0 o p_43359_ + 1 o p_43360_ + 2 o p_43361_ + 3 o p_43362_ + ae_ ()Lcfz; m_7968_ + j (Lcfz;)Ljava/lang/String; m_5671_ + 0 o p_43364_ +chq net/minecraft/world/item/TooltipFlag + a f_256752_ + b f_256730_ + ()V + static + a ()Z m_7050_ + b ()Z m_257552_ +chq$a net/minecraft/world/item/TooltipFlag$Default + c f_43368_ + d f_257043_ + (ZZ)V + 0 o f_43368_ + 1 o f_257043_ + a ()Z m_7050_ + b ()Z m_257552_ + c ()Lchq$a; m_257777_ + d ()Z f_43368_ + e ()Z f_257043_ + equals (Ljava/lang/Object;)Z equals + 0 o p_260237_ + hashCode ()I hashCode + toString ()Ljava/lang/String; toString +chr net/minecraft/world/item/TridentItem + a f_151230_ + b f_151231_ + c f_151232_ + d f_43379_ + (Lcfu$a;)V + 0 o p_43381_ + a (Lcfz;Lbfz;Lbfz;)Z m_7579_ + 0 o p_43390_ + 1 o p_43391_ + 2 o p_43392_ + a (Lcfz;Lcmm;Ldcb;Lgu;Lbfz;)Z m_6813_ + 0 o p_43399_ + 1 o p_43400_ + 2 o p_43401_ + 3 o p_43402_ + 4 o p_43403_ + a (Ldcb;Lcmm;Lgu;Lbyo;)Z m_6777_ + 0 o p_43409_ + 1 o p_43410_ + 2 o p_43411_ + 3 o p_43412_ + a (Lcmm;Lbyo;Lbdw;)Lbdy; m_7203_ + 0 o p_43405_ + 1 o p_43406_ + 2 o p_43407_ + a (Lbfz;)V m_43384_ + static + 0 o p_43385_ + a (Lbfz;Lbyo;)V m_43386_ + static + 0 o p_43387_ + 1 o p_43388_ + a (Lbfo;)Lcom/google/common/collect/Multimap; m_7167_ + 0 o p_43383_ + a (Lcfz;Lcmm;Lbfz;I)V m_5551_ + 0 o p_43394_ + 1 o p_43395_ + 2 o p_43396_ + 3 o p_43397_ + b (Lcfz;)I m_8105_ + 0 o p_43419_ + b (Lbfz;)V m_43413_ + static + 0 o p_43414_ + c ()I m_6473_ + c (Lcfz;)Lchs; m_6164_ + 0 o p_43417_ +chs net/minecraft/world/item/UseAnim + a NONE + b EAT + c DRINK + d BLOCK + e BOW + f SPEAR + g CROSSBOW + h SPYGLASS + i TOOT_HORN + j BRUSH + k $VALUES + ()V + static + (Ljava/lang/String;I)V + 0 o p_43430_ + 1 o p_43431_ + a ()[Lchs; m_151234_ + static + valueOf (Ljava/lang/String;)Lchs; valueOf + static + 0 o p_43433_ + values ()[Lchs; values + static +cht net/minecraft/world/item/Vanishable +chu net/minecraft/world/item/WritableBookItem + (Lcfu$a;)V + 0 o p_43445_ + a (Lcij;)Lbdx; m_6225_ + 0 o p_43447_ + a (Lcmm;Lbyo;Lbdw;)Lbdy; m_7203_ + 0 o p_43449_ + 1 o p_43450_ + 2 o p_43451_ + a (Lqr;)Z m_43452_ + static + 0 o p_43453_ +chv net/minecraft/world/item/WrittenBookItem + a f_151235_ + b f_151236_ + c f_151237_ + d f_151238_ + e f_151239_ + f f_151240_ + g f_151241_ + h f_151242_ + i f_151243_ + j f_151244_ + k f_151245_ + r f_151246_ + s f_151247_ + (Lcfu$a;)V + 0 o p_43455_ + a (Lcij;)Lbdx; m_6225_ + 0 o p_43466_ + a (Lcfz;Lds;Lbyo;)Z m_43461_ + static + 0 o p_43462_ + 1 o p_43463_ + 2 o p_43464_ + a (Lcfz;Lcmm;Ljava/util/List;Lchq;)V m_7373_ + 0 o p_43457_ + 1 o p_43458_ + 2 o p_43459_ + 3 o p_43460_ + a (Lcmm;Lbyo;Lbdw;)Lbdy; m_7203_ + 0 o p_43468_ + 1 o p_43469_ + 2 o p_43470_ + a (Lds;Lbyo;Ljava/lang/String;)Ljava/lang/String; m_151248_ + static + 0 o p_151249_ + 1 o p_151250_ + 2 o p_151251_ + a (Lqr;)Z m_43471_ + static + 0 o p_43472_ + d (Lcfz;)I m_43473_ + static + 0 o p_43474_ + i (Lcfz;)Z m_5812_ + 0 o p_43476_ + k (Lcfz;)I m_43477_ + static + 0 o p_43478_ + m (Lcfz;)Lsw; m_7626_ + 0 o p_43480_ +chw net/minecraft/world/item/alchemy/Potion + a f_43481_ + b f_43482_ + ([Lbfa;)V + 0 o p_43487_ + (Ljava/lang/String;[Lbfa;)V + 0 o p_43484_ + 1 o p_43485_ + a ()Ljava/util/List; m_43488_ + a (Ljava/lang/String;)Lchw; m_43489_ + static + 0 o p_43490_ + b ()Z m_43491_ + b (Ljava/lang/String;)Ljava/lang/String; m_43492_ + 0 o p_43493_ +chx net/minecraft/world/item/alchemy/PotionBrewing + a f_151252_ + b f_43494_ + c f_43495_ + d f_43496_ + e f_43497_ + ()V + static + ()V + a (Lcfu;)V m_43500_ + static + 0 o p_43501_ + a (Lcfz;)Z m_43506_ + static + 0 o p_43507_ + a (Lchw;)Z m_43511_ + static + 0 o p_43512_ + a (Lcfz;Lcfz;)Z m_43508_ + static + 0 o p_43509_ + 1 o p_43510_ + a (Lchw;Lcfu;Lchw;)V m_43513_ + static + 0 o p_43514_ + 1 o p_43515_ + 2 o p_43516_ + a ()V m_43499_ + static + a (Lcfu;Lcfu;Lcfu;)V m_43502_ + static + 0 o p_43503_ + 1 o p_43504_ + 2 o p_43505_ + b (Lcfz;Lcfz;)Z m_43519_ + static + 0 o p_43520_ + 1 o p_43521_ + b (Lcfz;)Z m_43517_ + static + 0 o p_43518_ + c (Lcfz;Lcfz;)Z m_43524_ + static + 0 o p_43525_ + 1 o p_43526_ + c (Lcfz;)Z m_43522_ + static + 0 o p_43523_ + d (Lcfz;)Z m_43527_ + static + 0 o p_43528_ + d (Lcfz;Lcfz;)Lcfz; m_43529_ + static + 0 o p_43530_ + 1 o p_43531_ +chx$a net/minecraft/world/item/alchemy/PotionBrewing$Mix + a f_43532_ + b f_43533_ + c f_43534_ + (Ljava/lang/Object;Lciz;Ljava/lang/Object;)V + 0 o p_43536_ + 1 o p_43537_ + 2 o p_43538_ +chy net/minecraft/world/item/alchemy/PotionUtils + a f_151254_ + b f_151255_ + c f_151256_ + d f_151257_ + e f_43545_ + ()V + static + ()V + a (Ljava/util/Collection;)I m_43564_ + static + 0 o p_43565_ + a (Ljava/util/List;Ljava/util/List;F)V m_257410_ + static + 0 o p_259687_ + 1 o p_259660_ + 2 o p_259949_ + a (Lqr;)Ljava/util/List; m_43566_ + static + 0 o p_43567_ + a (Lcfz;)Ljava/util/List; m_43547_ + static + 0 o p_43548_ + a (Lcfz;Ljava/util/List;F)V m_43555_ + static + 0 o p_43556_ + 1 o p_43557_ + 2 o p_43558_ + a (Lcfz;Ljava/util/Collection;)Lcfz; m_43552_ + static + 0 o p_43553_ + 1 o p_43554_ + a (Lchw;Ljava/util/Collection;)Ljava/util/List; m_43561_ + static + 0 o p_43562_ + 1 o p_43563_ + a (Lcfz;Lchw;)Lcfz; m_43549_ + static + 0 o p_43550_ + 1 o p_43551_ + a (Lqr;Ljava/util/List;)V m_43568_ + static + 0 o p_43569_ + 1 o p_43570_ + a (Lchw;)I m_43559_ + static + 0 o p_43560_ + b (Lcfz;)Ljava/util/List; m_43571_ + static + 0 o p_43572_ + b (Lqr;)Ljava/util/List; m_43573_ + static + 0 o p_43574_ + c (Lqr;)Lchw; m_43577_ + static + 0 o p_43578_ + c (Lcfz;)I m_43575_ + static + 0 o p_43576_ + d (Lcfz;)Lchw; m_43579_ + static + 0 o p_43580_ +chz net/minecraft/world/item/alchemy/Potions + A f_43623_ + B f_43581_ + C f_43582_ + D f_43583_ + E f_43584_ + F f_43585_ + G f_43586_ + H f_43587_ + I f_43588_ + J f_43589_ + K f_43590_ + L f_43591_ + M f_43592_ + N f_43593_ + O f_43594_ + P f_43595_ + Q f_43596_ + R f_43597_ + a f_268695_ + b f_43598_ + c f_43599_ + d f_43600_ + e f_43601_ + f f_43602_ + g f_43603_ + h f_43604_ + i f_43605_ + j f_43606_ + k f_43607_ + l f_43608_ + m f_43609_ + n f_43610_ + o f_43611_ + p f_43612_ + q f_43613_ + r f_43614_ + s f_43615_ + t f_43616_ + u f_43617_ + v f_43618_ + w f_43619_ + x f_43620_ + y f_43621_ + z f_43622_ + ()V + static + ()V + a (Ljava/lang/String;Lchw;)Lchw; m_43625_ + static + 0 o p_43626_ + 1 o p_43627_ + a (Lacp;Lchw;)Lchw; m_269156_ + static + 0 o p_270074_ + 1 o p_271009_ +ci net/minecraft/advancements/critereon/LootTableTrigger + a f_54593_ + ()V + static + ()V + a (Lcom/google/gson/JsonObject;Lba;Lbe;)Lci$a; m_7214_ + 0 o p_286915_ + 1 o p_286259_ + 2 o p_286891_ + a (Lacq;Lci$a;)Z m_54604_ + static + 0 o p_54605_ + 1 o p_54606_ + a ()Lacq; m_7295_ + a (Laig;Lacq;)V m_54597_ + 0 o p_54598_ + 1 o p_54599_ + b (Lcom/google/gson/JsonObject;Lba;Lbe;)Lar; m_7214_ + 0 o p_286293_ + 1 o p_286553_ + 2 o p_286757_ +ci$a net/minecraft/advancements/critereon/LootTableTrigger$TriggerInstance + a f_54612_ + (Lba;Lacq;)V + 0 o p_286834_ + 1 o p_286434_ + a (Lct;)Lcom/google/gson/JsonObject; m_7683_ + 0 o p_54617_ + a (Lacq;)Lci$a; m_54618_ + static + 0 o p_54619_ + b (Lacq;)Z m_54620_ + 0 o p_54621_ +cia net/minecraft/world/item/alchemy/package-info +cib net/minecraft/world/item/armortrim/ArmorTrim + a f_265985_ + b f_265908_ + c f_266079_ + d f_266060_ + e f_266045_ + f f_265943_ + g f_265947_ + h f_265975_ + ()V + static + (Lhe;Lhe;)V + 0 o p_267249_ + 1 o p_267212_ + a (Lhs;Lcfz;)Ljava/util/Optional; m_266285_ + static + 0 o p_266952_ + 1 o p_266766_ + a (Ljava/lang/String;Ljava/lang/String;)Ljava/lang/String; m_266185_ + static + 0 o p_267041_ + 1 o p_266864_ + a (Lcdk;)Lacq; m_267774_ + 0 o p_268043_ + a (Lcfz;Lhs;Ljava/util/List;)V m_266563_ + static + 0 o p_266761_ + 1 o p_266979_ + 2 o p_267199_ + a ()Lhe; m_266429_ + a (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; m_266203_ + static + 0 o p_267058_ + a (Lhe;Lhe;)Z m_266357_ + 0 o p_266942_ + 1 o p_267247_ + a (Lhe;Lcdk;)Lacq; m_267561_ + 0 o p_267931_ + 1 o p_267932_ + a (Lhs;Lcfz;Lcib;)Z m_266570_ + static + 0 o p_267181_ + 1 o p_266994_ + 2 o p_267002_ + b (Ljava/lang/String;Ljava/lang/String;)Ljava/lang/String; m_266246_ + static + 0 o p_267296_ + 1 o p_266737_ + b (Lhe;Lcdk;)Lacq; m_267562_ + 0 o p_267933_ + 1 o p_267934_ + b (Lcdk;)Lacq; m_267606_ + 0 o p_268143_ + b ()Lhe; m_266210_ + c (Lcdk;)Ljava/lang/String; m_267648_ + 0 o p_268122_ + equals (Ljava/lang/Object;)Z equals + 0 o p_267123_ +cic net/minecraft/world/item/armortrim/TrimMaterial + a f_266095_ + b f_266056_ + c f_265854_ + d f_265970_ + e f_265933_ + f f_267481_ + g f_266021_ + ()V + static + (Ljava/lang/String;Lhe;FLjava/util/Map;Lsw;)V + 0 o f_265854_ + 1 o f_265970_ + 2 o f_265933_ + 3 o f_267481_ + 4 o f_266021_ + a ()Ljava/lang/String; f_265854_ + a (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; m_267563_ + static + 0 o p_267935_ + a (Ljava/lang/String;Lcfu;FLsw;Ljava/util/Map;)Lcic; m_267605_ + static + 0 o p_268108_ + 1 o p_268361_ + 2 o p_268202_ + 3 o p_268273_ + 4 o p_267977_ + b ()Lhe; f_265970_ + c ()F f_265933_ + d ()Ljava/util/Map; f_267481_ + e ()Lsw; f_266021_ + equals (Ljava/lang/Object;)Z equals + 0 o p_266748_ + hashCode ()I hashCode + toString ()Ljava/lang/String; toString +cid net/minecraft/world/item/armortrim/TrimMaterials + a f_265905_ + b f_266000_ + c f_265896_ + d f_265870_ + e f_265969_ + f f_265937_ + g f_266071_ + h f_266027_ + i f_265981_ + j f_265872_ + ()V + static + ()V + a (Lcfz;Lhe$c;)Z m_266279_ + static + 0 o p_267154_ + 1 o p_266876_ + a (Ljava/lang/String;)Lacp; m_266224_ + static + 0 o p_266965_ + a (Lhs;Lcfz;)Ljava/util/Optional; m_266539_ + static + 0 o p_266981_ + 1 o p_267327_ + a (Lnm;)V m_266479_ + static + 0 o p_267033_ + a (Lnm;Lacp;Lcfu;Lts;FLjava/util/Map;)V m_267736_ + static + 0 o p_268244_ + 1 o p_268139_ + 2 o p_268311_ + 3 o p_268232_ + 4 o p_268197_ + 5 o p_268352_ + a (Lnm;Lacp;Lcfu;Lts;F)V m_267802_ + static + 0 o p_268176_ + 1 o p_268293_ + 2 o p_268156_ + 3 o p_268174_ + 4 o p_268274_ +cie net/minecraft/world/item/armortrim/TrimPattern + a f_266050_ + b f_265977_ + c f_266052_ + d f_265847_ + e f_265850_ + ()V + static + (Lacq;Lhe;Lsw;)V + 0 o f_266052_ + 1 o f_265847_ + 2 o f_265850_ + a ()Lacq; f_266052_ + a (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; m_266379_ + static + 0 o p_267105_ + a (Lhe;)Lsw; m_266463_ + 0 o p_266827_ + b ()Lhe; f_265847_ + c ()Lsw; f_265850_ + equals (Ljava/lang/Object;)Z equals + 0 o p_267026_ + hashCode ()I hashCode + toString ()Ljava/lang/String; toString +cif net/minecraft/world/item/armortrim/TrimPatterns + a f_265866_ + b f_265941_ + c f_265901_ + d f_266087_ + e f_266074_ + f f_266091_ + g f_266039_ + h f_266069_ + i f_266083_ + j f_266089_ + k f_265976_ + l f_276615_ + m f_276604_ + n f_276510_ + o f_276435_ + p f_276573_ + ()V + static + ()V + a (Lcfz;Lhe$c;)Z m_266226_ + static + 0 o p_267027_ + 1 o p_266833_ + a (Lnm;Lcfu;Lacp;)V m_266160_ + static + 0 o p_267064_ + 1 o p_267097_ + 2 o p_267079_ + a (Ljava/lang/String;)Lacp; m_266452_ + static + 0 o p_266889_ + a (Lhs;Lcfz;)Ljava/util/Optional; m_266468_ + static + 0 o p_267205_ + 1 o p_267001_ + a (Lnm;)V m_266400_ + static + 0 o p_267319_ +cig net/minecraft/world/item/armortrim/package-info +cih net/minecraft/world/item/context/BlockPlaceContext + a f_43628_ + b f_43629_ + (Lbyo;Lbdw;Lcfz;Leee;)V + 0 o p_43631_ + 1 o p_43632_ + 2 o p_43633_ + 3 o p_43634_ + (Lcmm;Lbyo;Lbdw;Lcfz;Leee;)V + 0 o p_43638_ + 1 o p_43639_ + 2 o p_43640_ + 3 o p_43641_ + 4 o p_43642_ + (Lcij;)V + 0 o p_43636_ + a (Lcih;Lgu;Lha;)Lcih; m_43644_ + static + 0 o p_43645_ + 1 o p_43646_ + 2 o p_43647_ + a ()Lgu; m_8083_ + b ()Z m_7059_ + c ()Z m_7058_ + d ()Lha; m_7820_ + e ()Lha; m_151260_ + f ()[Lha; m_6232_ +cii net/minecraft/world/item/context/DirectionalPlaceContext + b f_43648_ + (Lcmm;Lgu;Lha;Lcfz;Lha;)V + 0 o p_43650_ + 1 o p_43651_ + 2 o p_43652_ + 3 o p_43653_ + 4 o p_43654_ + a ()Lgu; m_8083_ + b ()Z m_7059_ + c ()Z m_7058_ + d ()Lha; m_7820_ + f ()[Lha; m_6232_ + g ()Lha; m_8125_ + h ()Z m_7078_ + i ()F m_7074_ +cii$1 net/minecraft/world/item/context/DirectionalPlaceContext$1 + a f_43663_ + ()V + static +cij net/minecraft/world/item/context/UseOnContext + a f_43703_ + b f_43704_ + c f_43705_ + d f_43706_ + e f_43707_ + (Lcmm;Lbyo;Lbdw;Lcfz;Leee;)V + 0 o p_43713_ + 1 o p_43714_ + 2 o p_43715_ + 3 o p_43716_ + 4 o p_43717_ + (Lbyo;Lbdw;Leee;)V + 0 o p_43709_ + 1 o p_43710_ + 2 o p_43711_ + a ()Lgu; m_8083_ + g ()Lha; m_8125_ + h ()Z m_7078_ + i ()F m_7074_ + j ()Leee; m_43718_ + k ()Lha; m_43719_ + l ()Leei; m_43720_ + m ()Z m_43721_ + n ()Lcfz; m_43722_ + o ()Lbyo; m_43723_ + p ()Lbdw; m_43724_ + q ()Lcmm; m_43725_ +cik net/minecraft/world/item/context/package-info +cil net/minecraft/world/item/crafting/AbstractCookingRecipe + a f_43726_ + b f_43727_ + c f_43728_ + d f_43729_ + e f_43730_ + f f_43731_ + g f_43732_ + h f_243702_ + (Lcjf;Lacq;Ljava/lang/String;Lcir;Lciz;Lcfz;FI)V + 0 o p_250197_ + 1 o p_249379_ + 2 o p_249518_ + 3 o p_250891_ + 4 o p_251354_ + 5 o p_252185_ + 6 o p_252165_ + 7 o p_250256_ + a (Lhs;)Lcfz; m_8043_ + 0 o p_266851_ + a (II)Z m_8004_ + 0 o p_43743_ + 1 o p_43744_ + a (Lbdq;Lcmm;)Z m_5818_ + 0 o p_43748_ + 1 o p_43749_ + a (Lbdq;Lhs;)Lcfz; m_5874_ + 0 o p_43746_ + 1 o p_267063_ + a ()Lhn; m_7527_ + b ()F m_43750_ + c ()Ljava/lang/String; m_6076_ + d ()I m_43753_ + e ()Lacq; m_6423_ + f ()Lcjf; m_6671_ + g ()Lcir; m_245534_ +cim net/minecraft/world/item/crafting/ArmorDyeRecipe + (Lacq;Lcis;)V + 0 o p_250281_ + 1 o p_251949_ + a (Lcbt;Lhs;)Lcfz; m_5874_ + 0 o p_43767_ + 1 o p_267017_ + a (II)Z m_8004_ + 0 o p_43759_ + 1 o p_43760_ + a (Lbdq;Lcmm;)Z m_5818_ + 0 o p_43764_ + 1 o p_43765_ + a (Lbdq;Lhs;)Lcfz; m_5874_ + 0 o p_267155_ + 1 o p_267140_ + a (Lcbt;Lcmm;)Z m_5818_ + 0 o p_43769_ + 1 o p_43770_ + aj_ ()Lcje; m_7707_ +cin net/minecraft/world/item/crafting/BannerDuplicateRecipe + (Lacq;Lcis;)V + 0 o p_249594_ + 1 o p_250373_ + a (Lcbt;Lhs;)Lcfz; m_5874_ + 0 o p_43783_ + 1 o p_267308_ + a (II)Z m_8004_ + 0 o p_43775_ + 1 o p_43776_ + a (Lbdq;)Lhn; m_7457_ + 0 o p_43789_ + a (Lbdq;Lcmm;)Z m_5818_ + 0 o p_43780_ + 1 o p_43781_ + a (Lbdq;Lhs;)Lcfz; m_5874_ + 0 o p_267228_ + 1 o p_266891_ + a (Lcbt;Lcmm;)Z m_5818_ + 0 o p_43785_ + 1 o p_43786_ + a (Lcbt;)Lhn; m_7457_ + 0 o p_43791_ + aj_ ()Lcje; m_7707_ +cio net/minecraft/world/item/crafting/BlastingRecipe + (Lacq;Ljava/lang/String;Lcir;Lciz;Lcfz;FI)V + 0 o p_249728_ + 1 o p_251053_ + 2 o p_249936_ + 3 o p_251550_ + 4 o p_251027_ + 5 o p_250843_ + 6 o p_249841_ + aj_ ()Lcje; m_7707_ + h ()Lcfz; m_8042_ +cip net/minecraft/world/item/crafting/BookCloningRecipe + (Lacq;Lcis;)V + 0 o p_252235_ + 1 o p_251090_ + a (Lcbt;Lhs;)Lcfz; m_5874_ + 0 o p_43812_ + 1 o p_267039_ + a (II)Z m_8004_ + 0 o p_43804_ + 1 o p_43805_ + a (Lbdq;)Lhn; m_7457_ + 0 o p_43818_ + a (Lbdq;Lcmm;)Z m_5818_ + 0 o p_43809_ + 1 o p_43810_ + a (Lbdq;Lhs;)Lcfz; m_5874_ + 0 o p_267148_ + 1 o p_266986_ + a (Lcbt;Lcmm;)Z m_5818_ + 0 o p_43814_ + 1 o p_43815_ + a (Lcbt;)Lhn; m_7457_ + 0 o p_43820_ + aj_ ()Lcje; m_7707_ +ciq net/minecraft/world/item/crafting/CampfireCookingRecipe + (Lacq;Ljava/lang/String;Lcir;Lciz;Lcfz;FI)V + 0 o p_249468_ + 1 o p_250140_ + 2 o p_251808_ + 3 o p_249826_ + 4 o p_251839_ + 5 o p_251432_ + 6 o p_251471_ + aj_ ()Lcje; m_7707_ + h ()Lcfz; m_8042_ +cir net/minecraft/world/item/crafting/CookingBookCategory + a FOOD + b BLOCKS + c MISC + d f_244271_ + e f_244064_ + f $VALUES + ()V + static + (Ljava/lang/String;ILjava/lang/String;)V + 0 o p_250900_ + 1 o p_250750_ + 2 o p_248549_ + a ()[Lcir; m_247680_ + static + c ()Ljava/lang/String; m_7912_ + valueOf (Ljava/lang/String;)Lcir; valueOf + static + 0 o p_250542_ + values ()[Lcir; values + static +cis net/minecraft/world/item/crafting/CraftingBookCategory + a BUILDING + b REDSTONE + c EQUIPMENT + d MISC + e f_244644_ + f f_244018_ + g $VALUES + ()V + static + (Ljava/lang/String;ILjava/lang/String;)V + 0 o p_250913_ + 1 o p_248827_ + 2 o p_249346_ + a ()[Lcis; m_245314_ + static + c ()Ljava/lang/String; m_7912_ + valueOf (Ljava/lang/String;)Lcis; valueOf + static + 0 o p_251367_ + values ()[Lcis; values + static +cit net/minecraft/world/item/crafting/CraftingRecipe + d ()Lcis; m_245232_ + f ()Lcjf; m_6671_ +ciu net/minecraft/world/item/crafting/CustomRecipe + a f_43831_ + b f_244184_ + (Lacq;Lcis;)V + 0 o p_252125_ + 1 o p_249010_ + a (Lhs;)Lcfz; m_8043_ + 0 o p_267025_ + ai_ ()Z m_5598_ + d ()Lcis; m_245232_ + e ()Lacq; m_6423_ +civ net/minecraft/world/item/crafting/DecoratedPotRecipe + (Lacq;Lcis;)V + 0 o p_273671_ + 1 o p_273056_ + a (Lcbt;Lhs;)Lcfz; m_5874_ + 0 o p_272861_ + 1 o p_273288_ + a (II)Z m_8004_ + 0 o p_273734_ + 1 o p_273516_ + a (Lbdq;Lcmm;)Z m_5818_ + 0 o p_272796_ + 1 o p_273084_ + a (Lbdq;Lhs;)Lcfz; m_5874_ + 0 o p_273587_ + 1 o p_273508_ + a (Lcbt;Lcmm;)Z m_5818_ + 0 o p_272882_ + 1 o p_272812_ + a (Ldac$a;)Lcfz; m_284234_ + static + 0 o p_285413_ + aj_ ()Lcje; m_7707_ +ciw net/minecraft/world/item/crafting/FireworkRocketRecipe + a f_43837_ + b f_43838_ + c f_43839_ + ()V + static + (Lacq;Lcis;)V + 0 o p_250923_ + 1 o p_250134_ + a (Lhs;)Lcfz; m_8043_ + 0 o p_267261_ + a (Lcbt;Lhs;)Lcfz; m_5874_ + 0 o p_43852_ + 1 o p_266791_ + a (II)Z m_8004_ + 0 o p_43844_ + 1 o p_43845_ + a (Lbdq;Lcmm;)Z m_5818_ + 0 o p_43849_ + 1 o p_43850_ + a (Lbdq;Lhs;)Lcfz; m_5874_ + 0 o p_266938_ + 1 o p_267086_ + a (Lcbt;Lcmm;)Z m_5818_ + 0 o p_43854_ + 1 o p_43855_ + aj_ ()Lcje; m_7707_ +cix net/minecraft/world/item/crafting/FireworkStarFadeRecipe + a f_43858_ + ()V + static + (Lacq;Lcis;)V + 0 o p_249812_ + 1 o p_251846_ + a (Lcbt;Lhs;)Lcfz; m_5874_ + 0 o p_43871_ + 1 o p_266682_ + a (II)Z m_8004_ + 0 o p_43863_ + 1 o p_43864_ + a (Lbdq;Lcmm;)Z m_5818_ + 0 o p_43868_ + 1 o p_43869_ + a (Lbdq;Lhs;)Lcfz; m_5874_ + 0 o p_266931_ + 1 o p_266874_ + a (Lcbt;Lcmm;)Z m_5818_ + 0 o p_43873_ + 1 o p_43874_ + aj_ ()Lcje; m_7707_ +ciy net/minecraft/world/item/crafting/FireworkStarRecipe + a f_43876_ + b f_43877_ + c f_43878_ + d f_43879_ + e f_43880_ + ()V + static + (Lacq;Lcis;)V + 0 o p_250809_ + 1 o p_251577_ + a (Lhs;)Lcfz; m_8043_ + 0 o p_266932_ + a (Lcbt;Lhs;)Lcfz; m_5874_ + 0 o p_43893_ + 1 o p_266692_ + a (II)Z m_8004_ + 0 o p_43885_ + 1 o p_43886_ + a (Lbdq;Lcmm;)Z m_5818_ + 0 o p_43890_ + 1 o p_43891_ + a (Lbdq;Lhs;)Lcfz; m_5874_ + 0 o p_266960_ + 1 o p_266794_ + a (Ljava/util/HashMap;)V m_260791_ + static + 0 o p_261449_ + a (Lcbt;Lcmm;)Z m_5818_ + 0 o p_43895_ + 1 o p_43896_ + aj_ ()Lcje; m_7707_ +ciz net/minecraft/world/item/crafting/Ingredient + a f_43901_ + b f_43902_ + c f_43903_ + d f_43904_ + ()V + static + (Ljava/util/stream/Stream;)V + 0 o p_43907_ + a ([Lcml;)Lciz; m_43929_ + static + 0 o p_43930_ + a (Lanl;)Lciz; m_204132_ + static + 0 o p_204133_ + a (Lciz$c;)Ljava/util/stream/Stream; m_43915_ + static + 0 o p_43916_ + a (Lcom/google/gson/JsonElement;Z)Lciz; m_288218_ + static + 0 o p_289022_ + 1 o p_288974_ + a (Lcfz;)Z test + 0 o p_43914_ + a ([Lcfz;)Lciz; m_43927_ + static + 0 o p_43928_ + a (Lsf;)V m_43923_ + 0 o p_43924_ + a (Ljava/util/stream/Stream;)Lciz; m_43921_ + static + 0 o p_43922_ + a ()[Lcfz; m_43908_ + a (Lcom/google/gson/JsonObject;)Lciz$c; m_43919_ + static + 0 o p_289797_ + a (Lcom/google/gson/JsonElement;)Lciz; m_43917_ + static + 0 o p_43918_ + a (I)[Lcfz; m_43909_ + static + 0 o p_43910_ + b (I)[Lciz$c; m_43932_ + static + 0 o p_43933_ + b (Lsf;)Lciz; m_43940_ + static + 0 o p_43941_ + b ()Lit/unimi/dsi/fastutil/ints/IntList; m_43931_ + b (Lcom/google/gson/JsonElement;)Lciz$c; m_289713_ + static + 0 o p_289756_ + b (Lcfz;)Z m_43943_ + static + 0 o p_43944_ + b (Ljava/util/stream/Stream;)Lciz; m_43938_ + static + 0 o p_43939_ + c ()Lcom/google/gson/JsonElement; m_43942_ + d ()Z m_43947_ + e ()Lciz; m_151265_ + static + test (Ljava/lang/Object;)Z test + 0 o p_43950_ +ciz$a net/minecraft/world/item/crafting/Ingredient$ItemValue + a f_43951_ + (Lcfz;)V + 0 o p_43953_ + a ()Ljava/util/Collection; m_6223_ + b ()Lcom/google/gson/JsonObject; m_6544_ +ciz$b net/minecraft/world/item/crafting/Ingredient$TagValue + a f_43959_ + (Lanl;)V + 0 o p_204135_ + a ()Ljava/util/Collection; m_6223_ + b ()Lcom/google/gson/JsonObject; m_6544_ +ciz$c net/minecraft/world/item/crafting/Ingredient$Value + a ()Ljava/util/Collection; m_6223_ + b ()Lcom/google/gson/JsonObject; m_6544_ +cj net/minecraft/advancements/critereon/MinMaxBounds + a f_55297_ + b f_55298_ + c f_55299_ + d f_55300_ + ()V + static + (Ljava/lang/Number;Ljava/lang/Number;)V + 0 o p_55303_ + 1 o p_55304_ + a (Ljava/lang/Object;Ljava/util/function/Function;)Ljava/lang/Object; m_55323_ + static + 0 o p_55324_ + 1 o p_55325_ + a (Lcom/mojang/brigadier/StringReader;Ljava/util/function/Function;Ljava/util/function/Supplier;)Ljava/lang/Number; m_55319_ + static + 0 o p_55320_ + 1 o p_55321_ + 2 o p_55322_ + a ()Ljava/lang/Number; m_55305_ + a (Lcom/mojang/brigadier/StringReader;Lcj$b;Ljava/util/function/Function;Ljava/util/function/Supplier;Ljava/util/function/Function;)Lcj; m_55313_ + static + 0 o p_55314_ + 1 o p_55315_ + 2 o p_55316_ + 3 o p_55317_ + 4 o p_55318_ + a (Lcom/google/gson/JsonElement;Lcj;Ljava/util/function/BiFunction;Lcj$a;)Lcj; m_55306_ + static + 0 o p_55307_ + 1 o p_55308_ + 2 o p_55309_ + 3 o p_55310_ + a (Lcom/mojang/brigadier/StringReader;)Z m_55311_ + static + 0 o p_55312_ + b ()Ljava/lang/Number; m_55326_ + c ()Z m_55327_ + d ()Lcom/google/gson/JsonElement; m_55328_ +cj$a net/minecraft/advancements/critereon/MinMaxBounds$BoundsFactory + create (Ljava/lang/Number;Ljava/lang/Number;)Lcj; m_55329_ + 0 o p_55330_ + 1 o p_55331_ +cj$b net/minecraft/advancements/critereon/MinMaxBounds$BoundsFromReaderFactory + create (Lcom/mojang/brigadier/StringReader;Ljava/lang/Number;Ljava/lang/Number;)Lcj; m_55332_ + 0 o p_55333_ + 1 o p_55334_ + 2 o p_55335_ +cj$c net/minecraft/advancements/critereon/MinMaxBounds$Doubles + e f_154779_ + f f_154780_ + g f_154781_ + ()V + static + (Ljava/lang/Double;Ljava/lang/Double;)V + 0 o p_154784_ + 1 o p_154785_ + a (Lcom/google/gson/JsonElement;)Lcj$c; m_154791_ + static + 0 o p_154792_ + a (Lcom/mojang/brigadier/StringReader;Ljava/lang/Double;Ljava/lang/Double;)Lcj$c; m_154795_ + static + 0 o p_154796_ + 1 o p_154797_ + 2 o p_154798_ + a (Ljava/lang/Double;)Ljava/lang/Double; m_154802_ + static + 0 o p_154803_ + a (Lcom/mojang/brigadier/StringReader;Ljava/util/function/Function;)Lcj$c; m_154799_ + static + 0 o p_154800_ + 1 o p_154801_ + a (DD)Lcj$c; m_154788_ + static + 0 o p_154789_ + 1 o p_154790_ + a (D)Lcj$c; m_154786_ + static + 0 o p_154787_ + a (Lcom/mojang/brigadier/StringReader;)Lcj$c; m_154793_ + static + 0 o p_154794_ + b (D)Lcj$c; m_154804_ + static + 0 o p_154805_ + b (Ljava/lang/Double;)Ljava/lang/Double; m_154806_ + static + 0 o p_154807_ + c (D)Lcj$c; m_154808_ + static + 0 o p_154809_ + d (D)Z m_154810_ + 0 o p_154811_ + e (D)Z m_154812_ + 0 o p_154813_ +cj$d net/minecraft/advancements/critereon/MinMaxBounds$Ints + e f_55364_ + f f_55365_ + g f_55366_ + ()V + static + (Ljava/lang/Integer;Ljava/lang/Integer;)V + 0 o p_55369_ + 1 o p_55370_ + a (I)Lcj$d; m_55371_ + static + 0 o p_55372_ + a (II)Lcj$d; m_154814_ + static + 0 o p_154815_ + 1 o p_154816_ + a (Lcom/google/gson/JsonElement;)Lcj$d; m_55373_ + static + 0 o p_55374_ + a (Lcom/mojang/brigadier/StringReader;Ljava/lang/Integer;Ljava/lang/Integer;)Lcj$d; m_55377_ + static + 0 o p_55378_ + 1 o p_55379_ + 2 o p_55380_ + a (Lcom/mojang/brigadier/StringReader;Ljava/util/function/Function;)Lcj$d; m_55381_ + static + 0 o p_55382_ + 1 o p_55383_ + a (Ljava/lang/Integer;)Ljava/lang/Long; m_55384_ + static + 0 o p_55385_ + a (J)Z m_154817_ + 0 o p_154818_ + a (Lcom/mojang/brigadier/StringReader;)Lcj$d; m_55375_ + static + 0 o p_55376_ + b (Ljava/lang/Integer;)Ljava/lang/Integer; m_55388_ + static + 0 o p_55389_ + b (I)Lcj$d; m_55386_ + static + 0 o p_55387_ + c (I)Lcj$d; m_154819_ + static + 0 o p_154820_ + d (I)Z m_55390_ + 0 o p_55391_ +cja net/minecraft/world/item/crafting/MapCloningRecipe + (Lacq;Lcis;)V + 0 o p_250551_ + 1 o p_251985_ + a (Lcbt;Lhs;)Lcfz; m_5874_ + 0 o p_43978_ + 1 o p_267299_ + a (II)Z m_8004_ + 0 o p_43970_ + 1 o p_43971_ + a (Lbdq;Lcmm;)Z m_5818_ + 0 o p_43975_ + 1 o p_43976_ + a (Lbdq;Lhs;)Lcfz; m_5874_ + 0 o p_266946_ + 1 o p_267214_ + a (Lcbt;Lcmm;)Z m_5818_ + 0 o p_43980_ + 1 o p_43981_ + aj_ ()Lcje; m_7707_ +cjb net/minecraft/world/item/crafting/MapExtendingRecipe + (Lacq;Lcis;)V + 0 o p_250265_ + 1 o p_250154_ + a (Lcbt;)Lcfz; m_278773_ + static + 0 o p_279436_ + a (Lcbt;Lhs;)Lcfz; m_5874_ + 0 o p_43991_ + 1 o p_266892_ + a (Lbdq;Lcmm;)Z m_5818_ + 0 o p_43988_ + 1 o p_43989_ + a (Lbdq;Lhs;)Lcfz; m_5874_ + 0 o p_266674_ + 1 o p_266736_ + a (Lcbt;Lcmm;)Z m_5818_ + 0 o p_43993_ + 1 o p_43994_ + ai_ ()Z m_5598_ + aj_ ()Lcje; m_7707_ +cjc net/minecraft/world/item/crafting/Recipe + a (Lhs;)Lcfz; m_8043_ + 0 o p_267052_ + a (II)Z m_8004_ + 0 o p_43999_ + 1 o p_44000_ + a ()Lhn; m_7527_ + a (Lbdq;)Lhn; m_7457_ + 0 o p_44004_ + a (Lbdq;Lcmm;)Z m_5818_ + 0 o p_44002_ + 1 o p_44003_ + a (Lbdq;Lhs;)Lcfz; m_5874_ + 0 o p_44001_ + 1 o p_267165_ + a (Lciz;)Z m_151267_ + static + 0 o p_151268_ + ai_ ()Z m_5598_ + aj_ ()Lcje; m_7707_ + c ()Ljava/lang/String; m_6076_ + e ()Lacq; m_6423_ + f ()Lcjf; m_6671_ + h ()Lcfz; m_8042_ + i ()Z m_271738_ + j ()Z m_142505_ +cjd net/minecraft/world/item/crafting/RecipeManager + a f_44005_ + b f_44006_ + c f_44007_ + d f_199900_ + e f_44008_ + ()V + static + ()V + a (Lcjf;Lbdq;Lcmm;Lacq;)Ljava/util/Optional; m_220248_ + 0 o p_220249_ + 1 o p_220250_ + 2 o p_220251_ + 3 o p_220252_ + a (Lcjf;)Ljava/util/List; m_44013_ + 0 o p_44014_ + a (Ljava/lang/String;)Lcom/google/gson/JsonSyntaxException; m_220253_ + static + 0 o p_220254_ + a ()Z m_151269_ + a (Ljava/util/Map;Lcom/google/common/collect/ImmutableMap$Builder;Lcjc;)V m_220259_ + static + 0 o p_220260_ + 1 o p_220261_ + 2 o p_220262_ + a (Lacq;Lcom/google/gson/JsonObject;)Lcjc; m_44045_ + static + 0 o p_44046_ + 1 o p_44047_ + a (Lacq;)Ljava/util/Optional; m_44043_ + 0 o p_44044_ + a (Ljava/util/Map$Entry;)Lcom/mojang/datafixers/util/Pair; m_220255_ + static + 0 o p_220256_ + a (Ljava/lang/Iterable;)V m_44024_ + 0 o p_44025_ + a (Lcmm;Lcjc;)Ljava/lang/String; m_268980_ + static + 0 o p_270042_ + 1 o p_270043_ + a (Ljava/util/Map;Lakx;Lban;)V m_5787_ + 0 o p_44037_ + 1 o p_44038_ + 2 o p_44039_ + a (Lcjf;Lbdq;Lcmm;)Ljava/util/Optional; m_44015_ + 0 o p_44016_ + 1 o p_44017_ + 2 o p_44018_ + a (Ljava/util/Map;)Ljava/util/stream/Stream; m_220257_ + static + 0 o p_220258_ + a (Ljava/lang/Object;Lakx;Lban;)V m_5787_ + 0 o p_44027_ + 1 o p_44028_ + 2 o p_44029_ + a (Lbdq;Lcmm;Ljava/util/Map$Entry;)Z m_220242_ + static + 0 o p_220243_ + 1 o p_220244_ + 2 o p_220245_ + a (Lbdq;Lcmm;Lcjc;)Z m_220238_ + static + 0 o p_220239_ + 1 o p_220240_ + 2 o p_220241_ + b (Ljava/util/Map$Entry;)Ljava/util/Map; m_44032_ + static + 0 o p_44033_ + b (Lbdq;Lcmm;Lcjc;)Z m_220263_ + static + 0 o p_220264_ + 1 o p_220265_ + 2 o p_220266_ + b ()Ljava/util/Collection; m_44051_ + b (Lcjf;)Lcjd$a; m_220267_ + static + 0 o p_220268_ + b (Lcjf;Lbdq;Lcmm;)Ljava/util/List; m_44056_ + 0 o p_44057_ + 1 o p_44058_ + 2 o p_44059_ + b (Ljava/util/Map;)Ljava/util/stream/Stream; m_220269_ + static + 0 o p_220270_ + c (Lcjf;Lbdq;Lcmm;)Lhn; m_44069_ + 0 o p_44070_ + 1 o p_44071_ + 2 o p_44072_ + c (Lcjf;)Ljava/util/Map; m_44054_ + 0 o p_44055_ + d ()Ljava/util/stream/Stream; m_44073_ + d (Lcjf;)Ljava/util/Map; m_220271_ + static + 0 o p_220272_ + e (Lcjf;)Lcom/google/common/collect/ImmutableMap$Builder; m_44074_ + static + 0 o p_44075_ +cjd$1 net/minecraft/world/item/crafting/RecipeManager$1 + a f_220273_ + b f_220274_ + (Lcjf;)V + 0 o p_220276_ + a (Lbdq;Lcmm;)Ljava/util/Optional; m_213657_ + 0 o p_220278_ + 1 o p_220279_ +cjd$a net/minecraft/world/item/crafting/RecipeManager$CachedCheck + a (Lbdq;Lcmm;)Ljava/util/Optional; m_213657_ + 0 o p_220280_ + 1 o p_220281_ +cje net/minecraft/world/item/crafting/RecipeSerializer + a f_44076_ + b f_44077_ + c f_44078_ + d f_44079_ + e f_44080_ + f f_44081_ + g f_44082_ + h f_44083_ + i f_44084_ + j f_44085_ + k f_44086_ + l f_44087_ + m f_44088_ + n f_44089_ + o f_44090_ + p f_44091_ + q f_44092_ + r f_44093_ + s f_44094_ + t f_44095_ + u f_266093_ + v f_265968_ + w f_271437_ + ()V + static + a (Lsf;Lcjc;)V m_6178_ + 0 o p_44101_ + 1 o p_44102_ + a (Ljava/lang/String;Lcje;)Lcje; m_44098_ + static + 0 o p_44099_ + 1 o p_44100_ + a (Lacq;Lsf;)Lcjc; m_8005_ + 0 o p_44105_ + 1 o p_44106_ + a (Lacq;Lcom/google/gson/JsonObject;)Lcjc; m_6729_ + 0 o p_44103_ + 1 o p_44104_ +cjf net/minecraft/world/item/crafting/RecipeType + a f_44107_ + b f_44108_ + c f_44109_ + d f_44110_ + e f_44111_ + f f_44112_ + g f_44113_ + ()V + static + a (Ljava/lang/String;)Lcjf; m_44119_ + static + 0 o p_44120_ +cjf$1 net/minecraft/world/item/crafting/RecipeType$1 + h f_44121_ + (Ljava/lang/String;)V + 0 o p_44123_ + toString ()Ljava/lang/String; toString +cjg net/minecraft/world/item/crafting/RepairItemRecipe + (Lacq;Lcis;)V + 0 o p_250543_ + 1 o p_248679_ + a (Ljava/util/Map;Ljava/util/Map;Ljava/util/Map;Lckg;)V m_44140_ + static + 0 o p_44141_ + 1 o p_44142_ + 2 o p_44143_ + 3 o p_44144_ + a (Lcbt;Lhs;)Lcfz; m_5874_ + 0 o p_44136_ + 1 o p_267094_ + a (II)Z m_8004_ + 0 o p_44128_ + 1 o p_44129_ + a (Lbdq;Lcmm;)Z m_5818_ + 0 o p_44133_ + 1 o p_44134_ + a (Lbdq;Lhs;)Lcfz; m_5874_ + 0 o p_267281_ + 1 o p_266957_ + a (Lcbt;Lcmm;)Z m_5818_ + 0 o p_44138_ + 1 o p_44139_ + aj_ ()Lcje; m_7707_ +cjh net/minecraft/world/item/crafting/ShapedRecipe + a f_44146_ + b f_44147_ + c f_44148_ + d f_44149_ + e f_44150_ + f f_44151_ + g f_244483_ + h f_271538_ + (Lacq;Ljava/lang/String;Lcis;IILhn;Lcfz;)V + 0 o p_250963_ + 1 o p_250221_ + 2 o p_250716_ + 3 o p_251480_ + 4 o p_251980_ + 5 o p_252150_ + 6 o p_248581_ + (Lacq;Ljava/lang/String;Lcis;IILhn;Lcfz;Z)V + 0 o p_273203_ + 1 o p_272759_ + 2 o p_273506_ + 3 o p_272952_ + 4 o p_272920_ + 5 o p_273650_ + 6 o p_272852_ + 7 o p_273122_ + a (II)Z m_8004_ + 0 o p_44161_ + 1 o p_44162_ + a (Lcbt;Lhs;)Lcfz; m_5874_ + 0 o p_266686_ + 1 o p_266725_ + a ([Ljava/lang/String;)[Ljava/lang/String; m_44186_ + static + 0 o p_44187_ + a (Ljava/lang/String;)I m_44184_ + static + 0 o p_44185_ + a (Lcom/google/gson/JsonObject;)Lcfz; m_151274_ + static + 0 o p_151275_ + a (Lcbt;Lcmm;)Z m_5818_ + 0 o p_44176_ + 1 o p_44177_ + a (Lciz;)Z m_151272_ + static + 0 o p_151273_ + a (Lhs;)Lcfz; m_8043_ + 0 o p_266881_ + a ([Ljava/lang/String;Ljava/util/Map;II)Lhn; m_44202_ + static + 0 o p_44203_ + 1 o p_44204_ + 2 o p_44205_ + 3 o p_44206_ + a (Lcbt;IIZ)Z m_44170_ + 0 o p_44171_ + 1 o p_44172_ + 2 o p_44173_ + 3 o p_44174_ + a ()Lhn; m_7527_ + a (Lbdq;Lcmm;)Z m_5818_ + 0 o p_44166_ + 1 o p_44167_ + a (Lcom/google/gson/JsonArray;)[Ljava/lang/String; m_44196_ + static + 0 o p_44197_ + a (Lbdq;Lhs;)Lcfz; m_5874_ + 0 o p_266856_ + 1 o p_267069_ + aj_ ()Lcje; m_7707_ + b (Lciz;)Z m_151276_ + static + 0 o p_151277_ + b (Ljava/lang/String;)I m_44200_ + static + 0 o p_44201_ + b (Lcom/google/gson/JsonObject;)Lcfu; m_151278_ + static + 0 o p_151279_ + c ()Ljava/lang/String; m_6076_ + c (Ljava/lang/String;)Lcom/google/gson/JsonSyntaxException; m_151280_ + static + 0 o p_151281_ + c (Lcom/google/gson/JsonObject;)Ljava/util/Map; m_44210_ + static + 0 o p_44211_ + d ()Lcis; m_245232_ + e ()Lacq; m_6423_ + i ()Z m_271738_ + j ()Z m_142505_ + k ()I m_44220_ + l ()I m_44221_ +cjh$a net/minecraft/world/item/crafting/ShapedRecipe$Serializer + ()V + a (Lsf;Lcjh;)V m_6178_ + 0 o p_44227_ + 1 o p_44228_ + a (Lsf;Lcjc;)V m_6178_ + 0 o p_44224_ + 1 o p_44225_ + a (Lacq;Lsf;)Lcjc; m_8005_ + 0 o p_44233_ + 1 o p_44234_ + a (Lacq;Lcom/google/gson/JsonObject;)Lcjc; m_6729_ + 0 o p_44230_ + 1 o p_44231_ + b (Lacq;Lsf;)Lcjh; m_8005_ + 0 o p_44239_ + 1 o p_44240_ + b (Lacq;Lcom/google/gson/JsonObject;)Lcjh; m_6729_ + 0 o p_44236_ + 1 o p_44237_ +cji net/minecraft/world/item/crafting/ShapelessRecipe + a f_44241_ + b f_44242_ + c f_244076_ + d f_44243_ + e f_44244_ + (Lacq;Ljava/lang/String;Lcis;Lcfz;Lhn;)V + 0 o p_251840_ + 1 o p_249640_ + 2 o p_249390_ + 3 o p_252071_ + 4 o p_250689_ + a (Lhs;)Lcfz; m_8043_ + 0 o p_267111_ + a (Lcbt;Lhs;)Lcfz; m_5874_ + 0 o p_44260_ + 1 o p_266797_ + a (II)Z m_8004_ + 0 o p_44252_ + 1 o p_44253_ + a (Lbdq;Lcmm;)Z m_5818_ + 0 o p_44257_ + 1 o p_44258_ + a (Lbdq;Lhs;)Lcfz; m_5874_ + 0 o p_266832_ + 1 o p_266695_ + a (Lcbt;Lcmm;)Z m_5818_ + 0 o p_44262_ + 1 o p_44263_ + a ()Lhn; m_7527_ + aj_ ()Lcje; m_7707_ + c ()Ljava/lang/String; m_6076_ + d ()Lcis; m_245232_ + e ()Lacq; m_6423_ +cji$a net/minecraft/world/item/crafting/ShapelessRecipe$Serializer + ()V + a (Lsf;Lcjc;)V m_6178_ + 0 o p_44278_ + 1 o p_44279_ + a (Lcom/google/gson/JsonArray;)Lhn; m_44275_ + static + 0 o p_44276_ + a (Lacq;Lsf;)Lcjc; m_8005_ + 0 o p_44287_ + 1 o p_44288_ + a (Lacq;Lcom/google/gson/JsonObject;)Lcjc; m_6729_ + 0 o p_44284_ + 1 o p_44285_ + a (Lsf;Lcji;)V m_6178_ + 0 o p_44281_ + 1 o p_44282_ + b (Lacq;Lsf;)Lcji; m_8005_ + 0 o p_44293_ + 1 o p_44294_ + b (Lacq;Lcom/google/gson/JsonObject;)Lcji; m_6729_ + 0 o p_44290_ + 1 o p_44291_ +cjj net/minecraft/world/item/crafting/ShieldDecorationRecipe + (Lacq;Lcis;)V + 0 o p_251738_ + 1 o p_251065_ + a (Lcbt;Lhs;)Lcfz; m_5874_ + 0 o p_44306_ + 1 o p_267112_ + a (II)Z m_8004_ + 0 o p_44298_ + 1 o p_44299_ + a (Lbdq;Lcmm;)Z m_5818_ + 0 o p_44303_ + 1 o p_44304_ + a (Lbdq;Lhs;)Lcfz; m_5874_ + 0 o p_267099_ + 1 o p_266717_ + a (Lcbt;Lcmm;)Z m_5818_ + 0 o p_44308_ + 1 o p_44309_ + aj_ ()Lcje; m_7707_ +cjk net/minecraft/world/item/crafting/ShulkerBoxColoring + (Lacq;Lcis;)V + 0 o p_248647_ + 1 o p_250756_ + a (Lcbt;Lhs;)Lcfz; m_5874_ + 0 o p_44322_ + 1 o p_266985_ + a (II)Z m_8004_ + 0 o p_44314_ + 1 o p_44315_ + a (Lbdq;Lcmm;)Z m_5818_ + 0 o p_44319_ + 1 o p_44320_ + a (Lbdq;Lhs;)Lcfz; m_5874_ + 0 o p_266786_ + 1 o p_267078_ + a (Lcbt;Lcmm;)Z m_5818_ + 0 o p_44324_ + 1 o p_44325_ + aj_ ()Lcje; m_7707_ +cjl net/minecraft/world/item/crafting/SimpleCookingSerializer + x f_44327_ + y f_44328_ + (Lcjl$a;I)V + 0 o p_44330_ + 1 o p_44331_ + a (Lsf;Lcjc;)V m_6178_ + 0 o p_44338_ + 1 o p_44339_ + a (Lacq;Lsf;)Lcjc; m_8005_ + 0 o p_44344_ + 1 o p_44345_ + a (Lacq;Lcom/google/gson/JsonObject;)Lcjc; m_6729_ + 0 o p_44341_ + 1 o p_44342_ + a (Ljava/lang/String;)Ljava/lang/IllegalStateException; m_44332_ + static + 0 o p_44333_ + a (Lsf;Lcil;)V m_6178_ + 0 o p_44335_ + 1 o p_44336_ + b (Lacq;Lcom/google/gson/JsonObject;)Lcil; m_6729_ + 0 o p_44347_ + 1 o p_44348_ + b (Lacq;Lsf;)Lcil; m_8005_ + 0 o p_44350_ + 1 o p_44351_ +cjl$a net/minecraft/world/item/crafting/SimpleCookingSerializer$CookieBaker + create (Lacq;Ljava/lang/String;Lcir;Lciz;Lcfz;FI)Lcil; m_44352_ + 0 o p_44353_ + 1 o p_44354_ + 2 o p_249487_ + 3 o p_44355_ + 4 o p_44356_ + 5 o p_44357_ + 6 o p_44358_ +cjm net/minecraft/world/item/crafting/SimpleCraftingRecipeSerializer + x f_244567_ + (Lcjm$a;)V + 0 o p_250090_ + a (Lsf;Lcjc;)V m_6178_ + 0 o p_251640_ + 1 o p_251721_ + a (Lsf;Lcit;)V m_6178_ + 0 o p_248968_ + 1 o p_250179_ + a (Lacq;Lsf;)Lcjc; m_8005_ + 0 o p_251627_ + 1 o p_249712_ + a (Lacq;Lcom/google/gson/JsonObject;)Lcjc; m_6729_ + 0 o p_248602_ + 1 o p_249415_ + b (Lacq;Lcom/google/gson/JsonObject;)Lcit; m_6729_ + 0 o p_249786_ + 1 o p_252161_ + b (Lacq;Lsf;)Lcit; m_8005_ + 0 o p_251508_ + 1 o p_251882_ +cjm$a net/minecraft/world/item/crafting/SimpleCraftingRecipeSerializer$Factory + create (Lacq;Lcis;)Lcit; m_247316_ + 0 o p_250892_ + 1 o p_249920_ +cjn net/minecraft/world/item/crafting/SingleItemRecipe + a f_44409_ + b f_44410_ + c f_44411_ + d f_44412_ + e f_44413_ + f f_44414_ + (Lcjf;Lcje;Lacq;Ljava/lang/String;Lciz;Lcfz;)V + 0 o p_44416_ + 1 o p_44417_ + 2 o p_44418_ + 3 o p_44419_ + 4 o p_44420_ + 5 o p_44421_ + a (Lhs;)Lcfz; m_8043_ + 0 o p_266964_ + a (II)Z m_8004_ + 0 o p_44424_ + 1 o p_44425_ + a (Lbdq;Lhs;)Lcfz; m_5874_ + 0 o p_44427_ + 1 o p_266999_ + a ()Lhn; m_7527_ + aj_ ()Lcje; m_7707_ + c ()Ljava/lang/String; m_6076_ + e ()Lacq; m_6423_ + f ()Lcjf; m_6671_ +cjn$a net/minecraft/world/item/crafting/SingleItemRecipe$Serializer + x f_44433_ + (Lcjn$a$a;)V + 0 o p_44435_ + a (Lsf;Lcjc;)V m_6178_ + 0 o p_44437_ + 1 o p_44438_ + a (Lacq;Lsf;)Lcjc; m_8005_ + 0 o p_44446_ + 1 o p_44447_ + a (Lacq;Lcom/google/gson/JsonObject;)Lcjc; m_6729_ + 0 o p_44443_ + 1 o p_44444_ + a (Lsf;Lcjn;)V m_6178_ + 0 o p_44440_ + 1 o p_44441_ + b (Lacq;Lcom/google/gson/JsonObject;)Lcjn; m_6729_ + 0 o p_44449_ + 1 o p_44450_ + b (Lacq;Lsf;)Lcjn; m_8005_ + 0 o p_44452_ + 1 o p_44453_ +cjn$a$a net/minecraft/world/item/crafting/SingleItemRecipe$Serializer$SingleItemMaker + create (Lacq;Ljava/lang/String;Lciz;Lcfz;)Lcjn; m_44454_ + 0 o p_44455_ + 1 o p_44456_ + 2 o p_44457_ + 3 o p_44458_ +cjo net/minecraft/world/item/crafting/SmeltingRecipe + (Lacq;Ljava/lang/String;Lcir;Lciz;Lcfz;FI)V + 0 o p_249157_ + 1 o p_250200_ + 2 o p_251114_ + 3 o p_250340_ + 4 o p_250306_ + 5 o p_249577_ + 6 o p_250030_ + aj_ ()Lcje; m_7707_ + h ()Lcfz; m_8042_ +cjp net/minecraft/world/item/crafting/SmithingRecipe + a (II)Z m_8004_ + 0 o p_266835_ + 1 o p_266829_ + a (Lcfz;)Z m_266166_ + 0 o p_266982_ + b (Lcfz;)Z m_266343_ + 0 o p_266962_ + c (Lcfz;)Z m_266253_ + 0 o p_267132_ + f ()Lcjf; m_6671_ + h ()Lcfz; m_8042_ +cjq net/minecraft/world/item/crafting/SmithingTransformRecipe + a f_265924_ + b f_265949_ + c f_265888_ + d f_265907_ + e f_266098_ + (Lacq;Lciz;Lciz;Lciz;Lcfz;)V + 0 o p_267143_ + 1 o p_266750_ + 2 o p_266787_ + 3 o p_267292_ + 4 o p_267031_ + a (Lhs;)Lcfz; m_8043_ + 0 o p_267209_ + a (Lbdq;Lcmm;)Z m_5818_ + 0 o p_266855_ + 1 o p_266781_ + a (Lcfz;)Z m_266166_ + 0 o p_267113_ + a (Lbdq;Lhs;)Lcfz; m_5874_ + 0 o p_267036_ + 1 o p_266699_ + aj_ ()Lcje; m_7707_ + b (Lcfz;)Z m_266343_ + 0 o p_267276_ + c (Lcfz;)Z m_266253_ + 0 o p_267260_ + e ()Lacq; m_6423_ + j ()Z m_142505_ +cjq$a net/minecraft/world/item/crafting/SmithingTransformRecipe$Serializer + ()V + a (Lsf;Lcjq;)V m_6178_ + 0 o p_266746_ + 1 o p_266927_ + a (Lsf;Lcjc;)V m_6178_ + 0 o p_266913_ + 1 o p_267125_ + a (Lacq;Lsf;)Lcjc; m_8005_ + 0 o p_266858_ + 1 o p_267139_ + a (Lacq;Lcom/google/gson/JsonObject;)Lcjc; m_6729_ + 0 o p_267243_ + 1 o p_267223_ + b (Lacq;Lsf;)Lcjq; m_8005_ + 0 o p_267117_ + 1 o p_267316_ + b (Lacq;Lcom/google/gson/JsonObject;)Lcjq; m_6729_ + 0 o p_266953_ + 1 o p_266720_ +cjr net/minecraft/world/item/crafting/SmithingTrimRecipe + a f_265885_ + b f_265958_ + c f_266040_ + d f_266053_ + (Lacq;Lciz;Lciz;Lciz;)V + 0 o p_267235_ + 1 o p_267298_ + 2 o p_266862_ + 3 o p_267050_ + a (Lhs;)Lcfz; m_8043_ + 0 o p_266948_ + a (Lbdq;Lcmm;)Z m_5818_ + 0 o p_267224_ + 1 o p_266798_ + a (Lcfz;)Z m_266166_ + 0 o p_266762_ + a (Lbdq;Lhs;)Lcfz; m_5874_ + 0 o p_267320_ + 1 o p_267280_ + aj_ ()Lcje; m_7707_ + b (Lcfz;)Z m_266343_ + 0 o p_266795_ + c (Lcfz;)Z m_266253_ + 0 o p_266922_ + e ()Lacq; m_6423_ + j ()Z m_142505_ +cjr$a net/minecraft/world/item/crafting/SmithingTrimRecipe$Serializer + ()V + a (Lsf;Lcjr;)V m_6178_ + 0 o p_266901_ + 1 o p_266893_ + a (Lsf;Lcjc;)V m_6178_ + 0 o p_266805_ + 1 o p_267236_ + a (Lacq;Lsf;)Lcjc; m_8005_ + 0 o p_266742_ + 1 o p_266888_ + a (Lacq;Lcom/google/gson/JsonObject;)Lcjc; m_6729_ + 0 o p_266954_ + 1 o p_267194_ + b (Lacq;Lsf;)Lcjr; m_8005_ + 0 o p_267169_ + 1 o p_267251_ + b (Lacq;Lcom/google/gson/JsonObject;)Lcjr; m_6729_ + 0 o p_267037_ + 1 o p_267004_ +cjs net/minecraft/world/item/crafting/SmokingRecipe + (Lacq;Ljava/lang/String;Lcir;Lciz;Lcfz;FI)V + 0 o p_249711_ + 1 o p_249312_ + 2 o p_251017_ + 3 o p_252345_ + 4 o p_250002_ + 5 o p_250535_ + 6 o p_251222_ + aj_ ()Lcje; m_7707_ + h ()Lcfz; m_8042_ +cjt net/minecraft/world/item/crafting/StonecutterRecipe + (Lacq;Ljava/lang/String;Lciz;Lcfz;)V + 0 o p_44478_ + 1 o p_44479_ + 2 o p_44480_ + 3 o p_44481_ + a (Lbdq;Lcmm;)Z m_5818_ + 0 o p_44483_ + 1 o p_44484_ + h ()Lcfz; m_8042_ +cju net/minecraft/world/item/crafting/SuspiciousStewRecipe + (Lacq;Lcis;)V + 0 o p_248870_ + 1 o p_250392_ + a (Lcbt;Lhs;)Lcfz; m_5874_ + 0 o p_44497_ + 1 o p_266871_ + a (II)Z m_8004_ + 0 o p_44489_ + 1 o p_44490_ + a (Lbdq;Lcmm;)Z m_5818_ + 0 o p_44494_ + 1 o p_44495_ + a (Lbdq;Lhs;)Lcfz; m_5874_ + 0 o p_266687_ + 1 o p_266700_ + a (Lcbt;Lcmm;)Z m_5818_ + 0 o p_44499_ + 1 o p_44500_ + aj_ ()Lcje; m_7707_ +cjv net/minecraft/world/item/crafting/TippedArrowRecipe + (Lacq;Lcis;)V + 0 o p_250995_ + 1 o p_252163_ + a (Lcbt;Lhs;)Lcfz; m_5874_ + 0 o p_44513_ + 1 o p_267186_ + a (II)Z m_8004_ + 0 o p_44505_ + 1 o p_44506_ + a (Lbdq;Lcmm;)Z m_5818_ + 0 o p_44510_ + 1 o p_44511_ + a (Lbdq;Lhs;)Lcfz; m_5874_ + 0 o p_267014_ + 1 o p_266677_ + a (Lcbt;Lcmm;)Z m_5818_ + 0 o p_44515_ + 1 o p_44516_ + aj_ ()Lcje; m_7707_ +cjw net/minecraft/world/item/crafting/package-info +cjx net/minecraft/world/item/enchantment/ArrowDamageEnchantment + (Lckg$a;[Lbfo;)V + 0 o p_44568_ + 1 o p_44569_ + a (I)I m_6183_ + 0 o p_44572_ + a ()I m_6586_ + b (I)I m_6175_ + 0 o p_44574_ +cjy net/minecraft/world/item/enchantment/ArrowFireEnchantment + (Lckg$a;[Lbfo;)V + 0 o p_44576_ + 1 o p_44577_ + a (I)I m_6183_ + 0 o p_44580_ + b (I)I m_6175_ + 0 o p_44582_ +cjz net/minecraft/world/item/enchantment/ArrowInfiniteEnchantment + (Lckg$a;[Lbfo;)V + 0 o p_44584_ + 1 o p_44585_ + a (I)I m_6183_ + 0 o p_44588_ + a (Lckg;)Z m_5975_ + 0 o p_44590_ + b (I)I m_6175_ + 0 o p_44592_ +ck net/minecraft/advancements/critereon/MobEffectsPredicate + a f_56547_ + b f_56548_ + ()V + static + (Ljava/util/Map;)V + 0 o p_56551_ + a (Lacq;)Lcom/google/gson/JsonSyntaxException; m_56563_ + static + 0 o p_56564_ + a (Lbey;Lck$a;)Lck; m_154977_ + 0 o p_154978_ + 1 o p_154979_ + a (Lcom/google/gson/JsonElement;)Lck; m_56559_ + static + 0 o p_56560_ + a (Ljava/util/Map;)Z m_56561_ + 0 o p_56562_ + a (Lbfj;)Z m_56555_ + 0 o p_56556_ + a (Lbfz;)Z m_56557_ + 0 o p_56558_ + a ()Lck; m_56552_ + static + a (Lbey;)Lck; m_56553_ + 0 o p_56554_ + b ()Lcom/google/gson/JsonElement; m_56565_ +ck$a net/minecraft/advancements/critereon/MobEffectsPredicate$MobEffectInstancePredicate + a f_56566_ + b f_56567_ + c f_56568_ + d f_56569_ + (Lcj$d;Lcj$d;Ljava/lang/Boolean;Ljava/lang/Boolean;)V + 0 o p_56572_ + 1 o p_56573_ + 2 o p_56574_ + 3 o p_56575_ + ()V + a (Lcom/google/gson/JsonObject;)Lck$a; m_56579_ + static + 0 o p_56580_ + a ()Lcom/google/gson/JsonElement; m_56576_ + a (Lbfa;)Z m_56577_ + 0 o p_56578_ +cka net/minecraft/world/item/enchantment/ArrowKnockbackEnchantment + (Lckg$a;[Lbfo;)V + 0 o p_44594_ + 1 o p_44595_ + a (I)I m_6183_ + 0 o p_44598_ + a ()I m_6586_ + b (I)I m_6175_ + 0 o p_44600_ +ckb net/minecraft/world/item/enchantment/ArrowPiercingEnchantment + (Lckg$a;[Lbfo;)V + 0 o p_44602_ + 1 o p_44603_ + a (I)I m_6183_ + 0 o p_44606_ + a ()I m_6586_ + a (Lckg;)Z m_5975_ + 0 o p_44608_ + b (I)I m_6175_ + 0 o p_44610_ +ckc net/minecraft/world/item/enchantment/BindingCurseEnchantment + (Lckg$a;[Lbfo;)V + 0 o p_44612_ + 1 o p_44613_ + a (Lcfz;)Z m_6081_ + 0 o p_270577_ + a (I)I m_6183_ + 0 o p_44616_ + b ()Z m_6591_ + b (I)I m_6175_ + 0 o p_44619_ + c ()Z m_6589_ +ckd net/minecraft/world/item/enchantment/DamageEnchantment + a f_151289_ + b f_151290_ + c f_151291_ + d f_44621_ + g f_44622_ + h f_44623_ + i f_44624_ + j f_44625_ + ()V + static + (Lckg$a;I[Lbfo;)V + 0 o p_44628_ + 1 o p_44629_ + 2 o p_44630_ + a (Lcfz;)Z m_6081_ + 0 o p_44642_ + a (I)I m_6183_ + 0 o p_44633_ + a ()I m_6586_ + a (ILbge;)F m_7335_ + 0 o p_44635_ + 1 o p_44636_ + a (Lckg;)Z m_5975_ + 0 o p_44644_ + a (Lbfz;Lbfj;I)V m_7677_ + 0 o p_44638_ + 1 o p_44639_ + 2 o p_44640_ + b (I)I m_6175_ + 0 o p_44646_ +cke net/minecraft/world/item/enchantment/DigDurabilityEnchantment + (Lckg$a;[Lbfo;)V + 0 o p_44648_ + 1 o p_44649_ + a (Lcfz;)Z m_6081_ + 0 o p_44654_ + a (Lcfz;ILapf;)Z m_220282_ + static + 0 o p_220283_ + 1 o p_220284_ + 2 o p_220285_ + a (I)I m_6183_ + 0 o p_44652_ + a ()I m_6586_ + b (I)I m_6175_ + 0 o p_44660_ +ckf net/minecraft/world/item/enchantment/DiggingEnchantment + (Lckg$a;[Lbfo;)V + 0 o p_44662_ + 1 o p_44663_ + a (Lcfz;)Z m_6081_ + 0 o p_44668_ + a (I)I m_6183_ + 0 o p_44666_ + a ()I m_6586_ + b (I)I m_6175_ + 0 o p_44670_ +ckg net/minecraft/world/item/enchantment/Enchantment + a f_44671_ + b f_44674_ + e f_44672_ + f f_44673_ + (Lckg$a;Lckh;[Lbfo;)V + 0 o p_44676_ + 1 o p_44677_ + 2 o p_44678_ + a (Lcfz;)Z m_6081_ + 0 o p_44689_ + a (I)I m_6183_ + 0 o p_44679_ + a ()I m_6586_ + a (ILben;)I m_7205_ + 0 o p_44680_ + 1 o p_44681_ + a (ILbge;)F m_7335_ + 0 o p_44682_ + 1 o p_44683_ + a (Lckg;)Z m_5975_ + 0 o p_44690_ + a (Lbfz;)Ljava/util/Map; m_44684_ + 0 o p_44685_ + a (Lbfz;Lbfj;I)V m_7677_ + 0 o p_44686_ + 1 o p_44687_ + 2 o p_44688_ + b (Lckg;)Z m_44695_ + 0 o p_44696_ + b (Lbfz;Lbfj;I)V m_7675_ + 0 o p_44692_ + 1 o p_44693_ + 2 o p_44694_ + b ()Z m_6591_ + b (I)I m_6175_ + 0 o p_44691_ + c (I)Lckg; m_44697_ + static + 0 o p_44698_ + c ()Z m_6589_ + d ()Lckg$a; m_44699_ + d (I)Lsw; m_44700_ + 0 o p_44701_ + e ()I m_44702_ + f ()Ljava/lang/String; m_44703_ + g ()Ljava/lang/String; m_44704_ + h ()Z m_6594_ + i ()Z m_6592_ +ckg$a net/minecraft/world/item/enchantment/Enchantment$Rarity + a COMMON + b UNCOMMON + c RARE + d VERY_RARE + e f_44709_ + f $VALUES + ()V + static + (Ljava/lang/String;II)V + 0 o p_44713_ + 1 o p_44714_ + 2 o p_44715_ + a ()I m_44716_ + b ()[Lckg$a; m_151292_ + static + valueOf (Ljava/lang/String;)Lckg$a; valueOf + static + 0 o p_44718_ + values ()[Lckg$a; values + static +ckh net/minecraft/world/item/enchantment/EnchantmentCategory + a ARMOR + b ARMOR_FEET + c ARMOR_LEGS + d ARMOR_CHEST + e ARMOR_HEAD + f WEAPON + g DIGGER + h FISHING_ROD + i TRIDENT + j BREAKABLE + k BOW + l WEARABLE + m CROSSBOW + n VANISHABLE + o $VALUES + ()V + static + (Ljava/lang/String;I)V + 0 o p_44737_ + 1 o p_44738_ + a (Lcfu;)Z m_7454_ + 0 o p_44743_ + a ()[Lckh; m_151293_ + static + valueOf (Ljava/lang/String;)Lckh; valueOf + static + 0 o p_44745_ + values ()[Lckh; values + static +ckh$1 net/minecraft/world/item/enchantment/EnchantmentCategory$1 + (Ljava/lang/String;I)V + 0 o p_44748_ + 1 o p_44749_ + a (Lcfu;)Z m_7454_ + 0 o p_44751_ +ckh$10 net/minecraft/world/item/enchantment/EnchantmentCategory$5 + (Ljava/lang/String;I)V + 0 o p_44753_ + 1 o p_44754_ + a (Lcfu;)Z m_7454_ + 0 o p_44756_ +ckh$11 net/minecraft/world/item/enchantment/EnchantmentCategory$6 + (Ljava/lang/String;I)V + 0 o p_44758_ + 1 o p_44759_ + a (Lcfu;)Z m_7454_ + 0 o p_44761_ +ckh$12 net/minecraft/world/item/enchantment/EnchantmentCategory$7 + (Ljava/lang/String;I)V + 0 o p_44763_ + 1 o p_44764_ + a (Lcfu;)Z m_7454_ + 0 o p_44766_ +ckh$13 net/minecraft/world/item/enchantment/EnchantmentCategory$8 + (Ljava/lang/String;I)V + 0 o p_44768_ + 1 o p_44769_ + a (Lcfu;)Z m_7454_ + 0 o p_44771_ +ckh$14 net/minecraft/world/item/enchantment/EnchantmentCategory$9 + (Ljava/lang/String;I)V + 0 o p_44773_ + 1 o p_44774_ + a (Lcfu;)Z m_7454_ + 0 o p_44776_ +ckh$2 net/minecraft/world/item/enchantment/EnchantmentCategory$10 + (Ljava/lang/String;I)V + 0 o p_44778_ + 1 o p_44779_ + a (Lcfu;)Z m_7454_ + 0 o p_44781_ +ckh$3 net/minecraft/world/item/enchantment/EnchantmentCategory$11 + (Ljava/lang/String;I)V + 0 o p_44783_ + 1 o p_44784_ + a (Lcfu;)Z m_7454_ + 0 o p_44786_ +ckh$4 net/minecraft/world/item/enchantment/EnchantmentCategory$12 + (Ljava/lang/String;I)V + 0 o p_44788_ + 1 o p_44789_ + a (Lcfu;)Z m_7454_ + 0 o p_44791_ +ckh$5 net/minecraft/world/item/enchantment/EnchantmentCategory$13 + (Ljava/lang/String;I)V + 0 o p_44793_ + 1 o p_44794_ + a (Lcfu;)Z m_7454_ + 0 o p_44796_ +ckh$6 net/minecraft/world/item/enchantment/EnchantmentCategory$14 + (Ljava/lang/String;I)V + 0 o p_44798_ + 1 o p_44799_ + a (Lcfu;)Z m_7454_ + 0 o p_44801_ +ckh$7 net/minecraft/world/item/enchantment/EnchantmentCategory$2 + (Ljava/lang/String;I)V + 0 o p_44803_ + 1 o p_44804_ + a (Lcfu;)Z m_7454_ + 0 o p_44806_ +ckh$8 net/minecraft/world/item/enchantment/EnchantmentCategory$3 + (Ljava/lang/String;I)V + 0 o p_44808_ + 1 o p_44809_ + a (Lcfu;)Z m_7454_ + 0 o p_44811_ +ckh$9 net/minecraft/world/item/enchantment/EnchantmentCategory$4 + (Ljava/lang/String;I)V + 0 o p_44813_ + 1 o p_44814_ + a (Lcfu;)Z m_7454_ + 0 o p_44816_ +cki net/minecraft/world/item/enchantment/EnchantmentHelper + a f_182430_ + b f_182431_ + c f_220286_ + ()V + a (Ljava/util/Collection;Lckg;)Z m_44859_ + static + 0 o p_44860_ + 1 o p_44861_ + a (Ljava/util/List;Lckj;)V m_44862_ + static + 0 o p_44863_ + 1 o p_44864_ + a (ILcfz;Z)Ljava/util/List; m_44817_ + static + 0 o p_44818_ + 1 o p_44819_ + 2 o p_44820_ + a (Lbfz;Lbfj;)V m_44823_ + static + 0 o p_44824_ + 1 o p_44825_ + a (Lckg;Lbfz;Ljava/util/function/Predicate;)Ljava/util/Map$Entry; m_44839_ + static + 0 o p_44840_ + 1 o p_44841_ + 2 o p_44842_ + a (Lcki$a;Lcfz;)V m_44850_ + static + 0 o p_44851_ + 1 o p_44852_ + a (Ljava/util/Map;Lqr;Lckg;)V m_44868_ + static + 0 o p_44869_ + 1 o p_44870_ + 2 o p_44871_ + a (Lcfz;)Ljava/util/Map; m_44831_ + static + 0 o p_44832_ + a (Lckg;Lbfz;)I m_44836_ + static + 0 o p_44837_ + 1 o p_44838_ + a (Lckg;)Lacq; m_182432_ + static + 0 o p_182433_ + a (Lqr;)I m_182438_ + static + 0 o p_182439_ + a (Lckg;Lcfz;)I m_44843_ + static + 0 o p_44844_ + 1 o p_44845_ + a (Lbfz;)F m_44821_ + static + 0 o p_44822_ + a (Lorg/apache/commons/lang3/mutable/MutableFloat;Lbge;Lckg;I)V m_44884_ + static + 0 o p_44885_ + 1 o p_44886_ + 2 o p_44887_ + 3 o p_44888_ + a (Lbfz;Lbfj;Lckg;I)V m_44826_ + static + 0 o p_44827_ + 1 o p_44828_ + 2 o p_44829_ + 3 o p_44830_ + a (Lorg/apache/commons/lang3/mutable/MutableInt;Lben;Lckg;I)V m_44889_ + static + 0 o p_44890_ + 1 o p_44891_ + 2 o p_44892_ + 3 o p_44893_ + a (Lqr;I)V m_182440_ + static + 0 o p_182441_ + 1 o p_182442_ + a (Lqx;)Ljava/util/Map; m_44882_ + static + 0 o p_44883_ + a (Ljava/util/Map;Lcfz;)V m_44865_ + static + 0 o p_44866_ + 1 o p_44867_ + a (Lcki$a;Ljava/lang/Iterable;)V m_44853_ + static + 0 o p_44854_ + 1 o p_44855_ + a (Lapf;IILcfz;)I m_220287_ + static + 0 o p_220288_ + 1 o p_220289_ + 2 o p_220290_ + 3 o p_220291_ + a (Ljava/lang/Iterable;Lben;)I m_44856_ + static + 0 o p_44857_ + 1 o p_44858_ + a (Lcfz;Lbge;)F m_44833_ + static + 0 o p_44834_ + 1 o p_44835_ + a (Lapf;Lcfz;IZ)Lcfz; m_220292_ + static + 0 o p_220293_ + 1 o p_220294_ + 2 o p_220295_ + 3 o p_220296_ + a (Lacq;I)Lqr; m_182443_ + static + 0 o p_182444_ + 1 o p_182445_ + a (Lcki$a;Lqr;Lckg;)V m_182434_ + static + 0 o p_182435_ + 1 o p_182436_ + 2 o p_182437_ + b (Lbfz;)F m_220302_ + static + 0 o p_220303_ + b (Lckg;Lbfz;)Ljava/util/Map$Entry; m_44906_ + static + 0 o p_44907_ + 1 o p_44908_ + b (Lbfz;Lbfj;Lckg;I)V m_44899_ + static + 0 o p_44900_ + 1 o p_44901_ + 2 o p_44902_ + 3 o p_44903_ + b (Lapf;Lcfz;IZ)Ljava/util/List; m_220297_ + static + 0 o p_220298_ + 1 o p_220299_ + 2 o p_220300_ + 3 o p_220301_ + b (Lqr;)Lacq; m_182446_ + static + 0 o p_182447_ + b (Lbfz;Lbfj;)V m_44896_ + static + 0 o p_44897_ + 1 o p_44898_ + b (Lcfz;)I m_44904_ + static + 0 o p_44905_ + c (Lcfz;)I m_44916_ + static + 0 o p_44917_ + c (Lbfz;)I m_44894_ + static + 0 o p_44895_ + d (Lbfz;)I m_44914_ + static + 0 o p_44915_ + d (Lcfz;)Z m_44920_ + static + 0 o p_44921_ + e (Lcfz;)Z m_44924_ + static + 0 o p_44925_ + e (Lbfz;)I m_44918_ + static + 0 o p_44919_ + f (Lbfz;)I m_44922_ + static + 0 o p_44923_ + f (Lcfz;)Z m_272262_ + static + 0 o p_273444_ + g (Lcfz;)I m_44928_ + static + 0 o p_44929_ + g (Lbfz;)I m_44926_ + static + 0 o p_44927_ + h (Lbfz;)I m_44930_ + static + 0 o p_44931_ + h (Lcfz;)I m_44932_ + static + 0 o p_44933_ + i (Lbfz;)Z m_44934_ + static + 0 o p_44935_ + i (Lcfz;)Z m_44936_ + static + 0 o p_44937_ + j (Lbfz;)Z m_44938_ + static + 0 o p_44939_ + j (Lcfz;)Z m_44940_ + static + 0 o p_44941_ + k (Lbfz;)Z m_44942_ + static + 0 o p_44943_ +cki$a net/minecraft/world/item/enchantment/EnchantmentHelper$EnchantmentVisitor + accept (Lckg;I)V m_44944_ + 0 o p_44945_ + 1 o p_44946_ +ckj net/minecraft/world/item/enchantment/EnchantmentInstance + a f_44947_ + b f_44948_ + (Lckg;I)V + 0 o p_44950_ + 1 o p_44951_ +ckk net/minecraft/world/item/enchantment/Enchantments + A f_44990_ + B f_44952_ + C f_44953_ + D f_44954_ + E f_44955_ + F f_44956_ + G f_44957_ + H f_44958_ + I f_44959_ + J f_44960_ + K f_44961_ + L f_44962_ + M f_44963_ + N f_44964_ + a f_44965_ + b f_44966_ + c f_44967_ + d f_44968_ + e f_44969_ + f f_44970_ + g f_44971_ + h f_44972_ + i f_44973_ + j f_44974_ + k f_44975_ + l f_44976_ + m f_220304_ + n f_44977_ + o f_44978_ + p f_44979_ + q f_44980_ + r f_44981_ + s f_44982_ + t f_44983_ + u f_44984_ + v f_44985_ + w f_44986_ + x f_44987_ + y f_44988_ + z f_44989_ + ()V + static + ()V + a (Ljava/lang/String;Lckg;)Lckg; m_44992_ + static + 0 o p_44993_ + 1 o p_44994_ +ckl net/minecraft/world/item/enchantment/FireAspectEnchantment + (Lckg$a;[Lbfo;)V + 0 o p_44996_ + 1 o p_44997_ + a (I)I m_6183_ + 0 o p_45000_ + a ()I m_6586_ + b (I)I m_6175_ + 0 o p_45002_ +ckm net/minecraft/world/item/enchantment/FishingSpeedEnchantment + (Lckg$a;Lckh;[Lbfo;)V + 0 o p_45004_ + 1 o p_45005_ + 2 o p_45006_ + a (I)I m_6183_ + 0 o p_45009_ + a ()I m_6586_ + b (I)I m_6175_ + 0 o p_45011_ +ckn net/minecraft/world/item/enchantment/FrostWalkerEnchantment + (Lckg$a;[Lbfo;)V + 0 o p_45013_ + 1 o p_45014_ + a (I)I m_6183_ + 0 o p_45017_ + a ()I m_6586_ + a (Lckg;)Z m_5975_ + 0 o p_45024_ + a (Lbfz;Lcmm;Lgu;I)V m_45018_ + static + 0 o p_45019_ + 1 o p_45020_ + 2 o p_45021_ + 3 o p_45022_ + b ()Z m_6591_ + b (I)I m_6175_ + 0 o p_45027_ +cko net/minecraft/world/item/enchantment/KnockbackEnchantment + (Lckg$a;[Lbfo;)V + 0 o p_45079_ + 1 o p_45080_ + a (I)I m_6183_ + 0 o p_45083_ + a ()I m_6586_ + b (I)I m_6175_ + 0 o p_45085_ +ckp net/minecraft/world/item/enchantment/LootBonusEnchantment + (Lckg$a;Lckh;[Lbfo;)V + 0 o p_45087_ + 1 o p_45088_ + 2 o p_45089_ + a (I)I m_6183_ + 0 o p_45092_ + a ()I m_6586_ + a (Lckg;)Z m_5975_ + 0 o p_45094_ + b (I)I m_6175_ + 0 o p_45096_ +ckq net/minecraft/world/item/enchantment/MendingEnchantment + (Lckg$a;[Lbfo;)V + 0 o p_45098_ + 1 o p_45099_ + a (I)I m_6183_ + 0 o p_45102_ + b ()Z m_6591_ + b (I)I m_6175_ + 0 o p_45105_ +ckr net/minecraft/world/item/enchantment/MultiShotEnchantment + (Lckg$a;[Lbfo;)V + 0 o p_45107_ + 1 o p_45108_ + a (I)I m_6183_ + 0 o p_45111_ + a (Lckg;)Z m_5975_ + 0 o p_45113_ + b (I)I m_6175_ + 0 o p_45115_ +cks net/minecraft/world/item/enchantment/OxygenEnchantment + (Lckg$a;[Lbfo;)V + 0 o p_45117_ + 1 o p_45118_ + a (I)I m_6183_ + 0 o p_45121_ + a ()I m_6586_ + b (I)I m_6175_ + 0 o p_45123_ +ckt net/minecraft/world/item/enchantment/ProtectionEnchantment + a f_45124_ + (Lckg$a;Lckt$a;[Lbfo;)V + 0 o p_45126_ + 1 o p_45127_ + 2 o p_45128_ + a (Lbfz;D)D m_45135_ + static + 0 o p_45136_ + 1 o p_45137_ + a (I)I m_6183_ + 0 o p_45131_ + a ()I m_6586_ + a (ILben;)I m_7205_ + 0 o p_45133_ + 1 o p_45134_ + a (Lckg;)Z m_5975_ + 0 o p_45142_ + a (Lbfz;I)I m_45138_ + static + 0 o p_45139_ + 1 o p_45140_ + b (I)I m_6175_ + 0 o p_45144_ +ckt$a net/minecraft/world/item/enchantment/ProtectionEnchantment$Type + a ALL + b FIRE + c FALL + d EXPLOSION + e PROJECTILE + f f_45151_ + g f_45152_ + h $VALUES + ()V + static + (Ljava/lang/String;III)V + 0 o p_151297_ + 1 o p_151298_ + 2 o p_151299_ + 3 o p_151300_ + a ()I m_45161_ + b ()I m_45162_ + c ()[Lckt$a; m_151301_ + static + valueOf (Ljava/lang/String;)Lckt$a; valueOf + static + 0 o p_45164_ + values ()[Lckt$a; values + static +cku net/minecraft/world/item/enchantment/QuickChargeEnchantment + (Lckg$a;[Lbfo;)V + 0 o p_45167_ + 1 o p_45168_ + a (I)I m_6183_ + 0 o p_45171_ + a ()I m_6586_ + b (I)I m_6175_ + 0 o p_45173_ +ckv net/minecraft/world/item/enchantment/SoulSpeedEnchantment + (Lckg$a;[Lbfo;)V + 0 o p_45175_ + 1 o p_45176_ + a (I)I m_6183_ + 0 o p_45179_ + a ()I m_6586_ + b ()Z m_6591_ + b (I)I m_6175_ + 0 o p_45182_ + h ()Z m_6594_ + i ()Z m_6592_ +ckw net/minecraft/world/item/enchantment/SweepingEdgeEnchantment + (Lckg$a;[Lbfo;)V + 0 o p_45186_ + 1 o p_45187_ + a (I)I m_6183_ + 0 o p_45190_ + a ()I m_6586_ + b (I)I m_6175_ + 0 o p_45192_ + e (I)F m_45193_ + static + 0 o p_45194_ +ckx net/minecraft/world/item/enchantment/SwiftSneakEnchantment + (Lckg$a;[Lbfo;)V + 0 o p_220306_ + 1 o p_220307_ + a (I)I m_6183_ + 0 o p_220310_ + a ()I m_6586_ + b ()Z m_6591_ + b (I)I m_6175_ + 0 o p_220313_ + h ()Z m_6594_ + i ()Z m_6592_ +cky net/minecraft/world/item/enchantment/ThornsEnchantment + a f_151302_ + (Lckg$a;[Lbfo;)V + 0 o p_45196_ + 1 o p_45197_ + a (Ljava/util/Map$Entry;Lbfz;)V m_45206_ + static + 0 o p_45207_ + 1 o p_45208_ + a (Lcfz;)Z m_6081_ + 0 o p_45205_ + a (I)I m_6183_ + 0 o p_45200_ + a ()I m_6586_ + a (ILapf;)Z m_220316_ + static + 0 o p_220317_ + 1 o p_220318_ + b (ILapf;)I m_220319_ + static + 0 o p_220320_ + 1 o p_220321_ + b (I)I m_6175_ + 0 o p_45210_ + b (Lbfz;Lbfj;I)V m_7675_ + 0 o p_45215_ + 1 o p_45216_ + 2 o p_45217_ +ckz net/minecraft/world/item/enchantment/TridentChannelingEnchantment + (Lckg$a;[Lbfo;)V + 0 o p_45219_ + 1 o p_45220_ + a (I)I m_6183_ + 0 o p_45223_ + b (I)I m_6175_ + 0 o p_45227_ +cl net/minecraft/advancements/critereon/NbtPredicate + a f_57471_ + b f_57472_ + ()V + static + (Lqr;)V + 0 o p_57475_ + a (Lcfz;)Z m_57479_ + 0 o p_57480_ + a ()Lcom/google/gson/JsonElement; m_57476_ + a (Lbfj;)Z m_57477_ + 0 o p_57478_ + a (Lrk;)Z m_57483_ + 0 o p_57484_ + a (Lcom/google/gson/JsonElement;)Lcl; m_57481_ + static + 0 o p_57482_ + b (Lbfj;)Lqr; m_57485_ + static + 0 o p_57486_ +cla net/minecraft/world/item/enchantment/TridentImpalerEnchantment + (Lckg$a;[Lbfo;)V + 0 o p_45229_ + 1 o p_45230_ + a (I)I m_6183_ + 0 o p_45233_ + a ()I m_6586_ + a (ILbge;)F m_7335_ + 0 o p_45235_ + 1 o p_45236_ + b (I)I m_6175_ + 0 o p_45238_ +clb net/minecraft/world/item/enchantment/TridentLoyaltyEnchantment + (Lckg$a;[Lbfo;)V + 0 o p_45240_ + 1 o p_45241_ + a (I)I m_6183_ + 0 o p_45244_ + a ()I m_6586_ + b (I)I m_6175_ + 0 o p_45248_ +clc net/minecraft/world/item/enchantment/TridentRiptideEnchantment + (Lckg$a;[Lbfo;)V + 0 o p_45250_ + 1 o p_45251_ + a (I)I m_6183_ + 0 o p_45254_ + a ()I m_6586_ + a (Lckg;)Z m_5975_ + 0 o p_45256_ + b (I)I m_6175_ + 0 o p_45258_ +cld net/minecraft/world/item/enchantment/UntouchingEnchantment + (Lckg$a;[Lbfo;)V + 0 o p_45260_ + 1 o p_45261_ + a (I)I m_6183_ + 0 o p_45264_ + a (Lckg;)Z m_5975_ + 0 o p_45266_ + b (I)I m_6175_ + 0 o p_45268_ +cle net/minecraft/world/item/enchantment/VanishingCurseEnchantment + (Lckg$a;[Lbfo;)V + 0 o p_45270_ + 1 o p_45271_ + a (I)I m_6183_ + 0 o p_45274_ + b ()Z m_6591_ + b (I)I m_6175_ + 0 o p_45277_ + c ()Z m_6589_ +clf net/minecraft/world/item/enchantment/WaterWalkerEnchantment + (Lckg$a;[Lbfo;)V + 0 o p_45280_ + 1 o p_45281_ + a (I)I m_6183_ + 0 o p_45284_ + a ()I m_6586_ + a (Lckg;)Z m_5975_ + 0 o p_45286_ + b (I)I m_6175_ + 0 o p_45288_ +clg net/minecraft/world/item/enchantment/WaterWorkerEnchantment + (Lckg$a;[Lbfo;)V + 0 o p_45290_ + 1 o p_45291_ + a (I)I m_6183_ + 0 o p_45294_ + b (I)I m_6175_ + 0 o p_45296_ +clh net/minecraft/world/item/enchantment/package-info +cli net/minecraft/world/item/package-info +clj net/minecraft/world/item/trading/Merchant + a (Lcll;)V m_6255_ + 0 o p_45306_ + a (Lclk;)V m_6996_ + 0 o p_45305_ + a (Lbyo;Lsw;I)V m_45301_ + 0 o p_45302_ + 1 o p_45303_ + 2 o p_45304_ + a (ILbyn;Lbyo;)Lcbf; m_45297_ + 0 o p_45298_ + 1 o p_45299_ + 2 o p_45300_ + f (Lbyo;)V m_7189_ + 0 o p_45307_ + fY ()Lbyo; m_7962_ + ga ()Lcll; m_6616_ + gb ()Z m_7826_ + gc ()Lamg; m_7596_ + gg ()Z m_183595_ + gk ()Z m_7862_ + l (Lcfz;)V m_7713_ + 0 o p_45308_ + r ()I m_7809_ + t (I)V m_6621_ + 0 o p_45309_ +clk net/minecraft/world/item/trading/MerchantOffer + a f_45310_ + b f_45311_ + c f_45312_ + d f_45313_ + e f_45314_ + f f_45315_ + g f_45316_ + h f_45317_ + i f_45318_ + j f_45319_ + (Lcfz;Lcfz;Lcfz;IIF)V + 0 o p_45327_ + 1 o p_45328_ + 2 o p_45329_ + 3 o p_45330_ + 4 o p_45331_ + 5 o p_45332_ + (Lqr;)V + 0 o p_45351_ + (Lcfz;Lcfz;Lcfz;IIIF)V + 0 o p_45334_ + 1 o p_45335_ + 2 o p_45336_ + 3 o p_45337_ + 4 o p_45338_ + 5 o p_45339_ + 6 o p_45340_ + (Lcfz;Lcfz;Lcfz;IIIFI)V + 0 o p_45342_ + 1 o p_45343_ + 2 o p_45344_ + 3 o p_45345_ + 4 o p_45346_ + 5 o p_45347_ + 6 o p_45348_ + 7 o p_45349_ + (Lcfz;Lcfz;IIF)V + 0 o p_45321_ + 1 o p_45322_ + 2 o p_45323_ + 3 o p_45324_ + 4 o p_45325_ + a ()Lcfz; m_45352_ + a (I)V m_45353_ + 0 o p_45354_ + a (Lcfz;Lcfz;)Z m_45355_ + 0 o p_45356_ + 1 o p_45357_ + b (Lcfz;Lcfz;)Z m_45361_ + 0 o p_45362_ + 1 o p_45363_ + b (I)V m_45359_ + 0 o p_45360_ + b ()Lcfz; m_45358_ + c (Lcfz;Lcfz;)Z m_45365_ + 0 o p_45366_ + 1 o p_45367_ + c ()Lcfz; m_45364_ + d ()Lcfz; m_45368_ + e ()V m_45369_ + f ()Lcfz; m_45370_ + g ()I m_45371_ + h ()V m_45372_ + i ()I m_45373_ + j ()V m_45374_ + k ()I m_45375_ + l ()V m_45376_ + m ()I m_45377_ + n ()F m_45378_ + o ()I m_45379_ + p ()Z m_45380_ + q ()V m_45381_ + r ()Z m_45382_ + s ()Z m_45383_ + t ()Lqr; m_45384_ +cll net/minecraft/world/item/trading/MerchantOffers + (I)V + 0 o p_220323_ + (Lqr;)V + 0 o p_45387_ + ()V + a ()Lqr; m_45388_ + a (Lcfz;Lcfz;I)Lclk; m_45389_ + 0 o p_45390_ + 1 o p_45391_ + 2 o p_45392_ + a (Lsf;)V m_45393_ + 0 o p_45394_ + a (Lsf;Lclk;)V m_220324_ + static + 0 o p_220325_ + 1 o p_220326_ + b (Lsf;)Lcll; m_45395_ + static + 0 o p_45396_ + c (Lsf;)Lclk; m_220327_ + static + 0 o p_220328_ +clm net/minecraft/world/item/trading/package-info +cln net/minecraft/world/level/BaseCommandBlock + b f_45397_ + c f_45398_ + d f_45399_ + e f_45400_ + f f_45401_ + g f_45402_ + h f_45403_ + i f_45404_ + j f_45405_ + ()V + static + ()V + N_ ()Z m_6102_ + a (Ljava/lang/String;)V m_6590_ + 0 o p_45420_ + a (Z)V m_45428_ + 0 o p_45429_ + a (Lqr;)Lqr; m_45421_ + 0 o p_45422_ + a (Lbyo;)Lbdx; m_45412_ + 0 o p_45413_ + a (Lcom/mojang/brigadier/context/CommandContext;ZI)V m_45416_ + 0 o p_45417_ + 1 o p_45418_ + 2 o p_45419_ + a (I)V m_45410_ + 0 o p_45411_ + a (Lcmm;)Z m_45414_ + 0 o p_45415_ + a (Lsw;)V m_213846_ + 0 o p_220330_ + b (Lqr;)V m_45431_ + 0 o p_45432_ + b (Lsw;)V m_45423_ + 0 o p_45424_ + c (Lsw;)V m_45433_ + 0 o p_45434_ + e ()Laif; m_5991_ + e_ ()Z m_6999_ + f ()V m_7368_ + g ()Leei; m_6607_ + h ()Ljava/lang/String; m_45435_ + i ()Lds; m_6712_ + j ()Z m_288209_ + k ()I m_45436_ + l ()Lsw; m_45437_ + m ()Ljava/lang/String; m_45438_ + n ()Lsw; m_45439_ + o ()Z m_45440_ + q_ ()Z m_7028_ +clo net/minecraft/world/level/BaseSpawner + a f_45441_ + b f_254624_ + c f_151303_ + d f_45442_ + e f_45443_ + f f_45444_ + g f_45445_ + h f_45446_ + i f_45447_ + j f_45448_ + k f_45449_ + l f_45450_ + m f_45451_ + n f_45452_ + o f_45453_ + ()V + static + ()V + a (Ljava/lang/String;)V m_186387_ + static + 0 o p_186388_ + a (Lcmm;Lgu;Lqr;)V m_151328_ + 0 o p_151329_ + 1 o p_151330_ + 2 o p_151331_ + a (DDDLbfj;)Lbfj; m_151306_ + static + 0 o p_151307_ + 1 o p_151308_ + 2 o p_151309_ + 3 o p_151310_ + a (Lbfn;Lcmm;Lapf;Lgu;)V m_253197_ + 0 o p_253682_ + 1 o p_254041_ + 2 o p_254221_ + 3 o p_254050_ + a ()D m_45473_ + a (Lcmm;Lgu;Lbcj$b;)V m_186383_ + 0 o p_186384_ + 1 o p_186385_ + 2 o p_186386_ + a (Lqr;)Lqr; m_186381_ + 0 o p_186382_ + a (Laif;Lgu;)V m_151311_ + 0 o p_151312_ + 1 o p_151313_ + a (Lcmm;Lgu;Lcnd;)V m_142667_ + 0 o p_151325_ + 1 o p_151326_ + 2 o p_151327_ + a (Lcmm;Lgu;)V m_151319_ + 0 o p_151320_ + 1 o p_151321_ + a (Lcmm;Lapf;Lgu;)Lbfj; m_253067_ + 0 o p_254323_ + 1 o p_254353_ + 2 o p_254313_ + a (Lcmm;I)Z m_151316_ + 0 o p_151317_ + 1 o p_151318_ + a (Lcmm;Lgu;I)V m_142523_ + 0 o p_151322_ + 1 o p_151323_ + 2 o p_151324_ + b (Lcmm;Lgu;)Z m_151343_ + 0 o p_151344_ + 1 o p_151345_ + b ()D m_45474_ + b (Lcmm;Lapf;Lgu;)Lcnd; m_253144_ + 0 o p_254503_ + 1 o p_253892_ + 2 o p_254487_ + b (Ljava/lang/String;)V m_186390_ + static + 0 o p_186391_ + c ()Ljava/lang/IllegalStateException; m_186389_ + static + c (Lcmm;Lgu;)V m_151350_ + 0 o p_151351_ + 1 o p_151352_ +clp net/minecraft/world/level/BlockAndTintGetter + a (Lgu;Lclx;)I m_6171_ + 0 o p_45520_ + 1 o p_45521_ + a (Lcmv;Lgu;)I m_45517_ + 0 o p_45518_ + 1 o p_45519_ + a (Lha;Z)F m_7717_ + 0 o p_45522_ + 1 o p_45523_ + b (Lgu;I)I m_45524_ + 0 o p_45525_ + 1 o p_45526_ + g (Lgu;)Z m_45527_ + 0 o p_45528_ + s_ ()Ldwt; m_5518_ +clq net/minecraft/world/level/BlockCollisions + a f_186392_ + b f_186393_ + c f_186394_ + d f_186395_ + e f_186396_ + f f_186397_ + g f_186398_ + h f_186399_ + i f_186400_ + j f_285595_ + (Lclw;Lbfj;Leed;ZLjava/util/function/BiFunction;)V + 0 o p_286817_ + 1 o p_286246_ + 2 o p_286624_ + 3 o p_286354_ + 4 o p_286303_ + a (II)Lcls; m_186411_ + 0 o p_186412_ + 1 o p_186413_ + computeNext ()Ljava/lang/Object; computeNext +clr net/minecraft/world/level/BlockEventData + a f_45529_ + b f_45530_ + c f_45531_ + d f_45532_ + (Lgu;Lcpn;II)V + 0 o f_45529_ + 1 o f_45530_ + 2 o f_45531_ + 3 o f_45532_ + a ()Lgu; f_45529_ + b ()Lcpn; f_45530_ + c ()I f_45531_ + d ()I f_45532_ + equals (Ljava/lang/Object;)Z equals + 0 o p_45543_ + hashCode ()I hashCode + toString ()Ljava/lang/String; toString +cls net/minecraft/world/level/BlockGetter + M ()I m_7469_ + a (Lefb;Ljava/util/function/Supplier;)D m_45564_ + 0 o p_45565_ + 1 o p_45566_ + a (Lgu;Lczp;)Ljava/util/Optional; m_141902_ + 0 o p_151367_ + 1 o p_151368_ + a (Leed;)Ljava/util/stream/Stream; m_45556_ + 0 o p_45557_ + a (Lclu;)Leee; m_151353_ + 0 o p_151354_ + a (Lclv;)Leee; m_45547_ + 0 o p_45548_ + a (Leei;Leei;Ljava/lang/Object;Ljava/util/function/BiFunction;Ljava/util/function/Function;)Ljava/lang/Object; m_151361_ + static + 0 o p_151362_ + 1 o p_151363_ + 2 o p_151364_ + 3 o p_151365_ + 4 o p_151366_ + a (Lclu;Lgu;)Leee; m_274263_ + 0 o p_275154_ + 1 o p_275155_ + a (Leei;Leei;Lgu;Lefb;Ldcb;)Leee; m_45558_ + 0 o p_45559_ + 1 o p_45560_ + 2 o p_45561_ + 3 o p_45562_ + 4 o p_45563_ + a (Lclv;Lgu;)Leee; m_151358_ + 0 o p_151359_ + 1 o p_151360_ + a_ (Lgu;)Ldcb; m_8055_ + 0 o p_45571_ + b (Lclv;)Leee; m_274262_ + static + 0 o p_275153_ + b (Lclu;)Leee; m_274264_ + static + 0 o p_275156_ + b_ (Lgu;)Ldxe; m_6425_ + 0 o p_45569_ + c_ (Lgu;)Lczn; m_7702_ + 0 o p_45570_ + f (Lgu;)Lefb; m_151373_ + 0 o p_151374_ + h (Lgu;)I m_7146_ + 0 o p_45572_ + i (Lgu;)D m_45573_ + 0 o p_45574_ +clt net/minecraft/world/level/ChunkPos + a f_45577_ + b f_186419_ + c f_220335_ + d f_220336_ + e f_45578_ + f f_45579_ + g f_199440_ + h f_151375_ + i f_151376_ + j f_151377_ + k f_151378_ + l f_151379_ + m f_151380_ + n f_151381_ + ()V + static + (J)V + 0 o p_45585_ + (Lgu;)V + 0 o p_45587_ + (II)V + 0 o p_45582_ + 1 o p_45583_ + a ()J m_45588_ + a (II)Lclt; m_220337_ + static + 0 o p_220338_ + 1 o p_220339_ + a (III)Lgu; m_151384_ + 0 o p_151385_ + 1 o p_151386_ + 2 o p_151387_ + a (Lclt;Lclt;)Ljava/util/stream/Stream; m_45599_ + static + 0 o p_45600_ + 1 o p_45601_ + a (I)I m_151382_ + 0 o p_151383_ + a (J)I m_45592_ + static + 0 o p_45593_ + a (Lgu;)J m_151388_ + static + 0 o p_151389_ + a (Lclt;)I m_45594_ + 0 o p_45595_ + a (Lclt;I)Ljava/util/stream/Stream; m_45596_ + static + 0 o p_45597_ + 1 o p_45598_ + b (II)Lclt; m_220340_ + static + 0 o p_220341_ + 1 o p_220342_ + b ()I m_151390_ + b (I)I m_151391_ + 0 o p_151392_ + b (J)I m_45602_ + static + 0 o p_45603_ + c (II)J m_45589_ + static + 0 o p_45590_ + 1 o p_45591_ + c ()I m_151393_ + c (I)Lgu; m_151394_ + 0 o p_151395_ + d (II)I m_220343_ + static + 0 o p_220344_ + 1 o p_220345_ + d ()I m_45604_ + e ()I m_45605_ + equals (Ljava/lang/Object;)Z equals + 0 o p_45607_ + f ()I m_45608_ + g ()I m_45609_ + h ()I m_45610_ + hashCode ()I hashCode + i ()I m_45612_ + j ()I m_45613_ + k ()I m_45614_ + l ()Lgu; m_45615_ + toString ()Ljava/lang/String; toString +clt$1 net/minecraft/world/level/ChunkPos$1 + a f_45617_ + b f_45618_ + c f_45619_ + d f_45620_ + e f_45621_ + (JILclt;Lclt;II)V + 0 o p_45623_ + 1 o p_45624_ + 2 o p_45625_ + 3 o p_45626_ + 4 o p_45627_ + 5 o p_45628_ + tryAdvance (Ljava/util/function/Consumer;)Z tryAdvance + 0 o p_45630_ +clu net/minecraft/world/level/ClipBlockStateContext + a f_151397_ + b f_151398_ + c f_151399_ + (Leei;Leei;Ljava/util/function/Predicate;)V + 0 o p_151401_ + 1 o p_151402_ + 2 o p_151403_ + a ()Leei; m_151404_ + b ()Leei; m_151405_ + c ()Ljava/util/function/Predicate; m_151406_ +clv net/minecraft/world/level/ClipContext + a f_45682_ + b f_45683_ + c f_45684_ + d f_45685_ + e f_45686_ + (Leei;Leei;Lclv$a;Lclv$b;Lbfj;)V + 0 o p_45688_ + 1 o p_45689_ + 2 o p_45690_ + 3 o p_45691_ + 4 o p_45692_ + a (Ldxe;Lcls;Lgu;)Lefb; m_45698_ + 0 o p_45699_ + 1 o p_45700_ + 2 o p_45701_ + a ()Leei; m_45693_ + a (Ldcb;Lcls;Lgu;)Lefb; m_45694_ + 0 o p_45695_ + 1 o p_45696_ + 2 o p_45697_ + b ()Leei; m_45702_ +clv$a net/minecraft/world/level/ClipContext$Block + a COLLIDER + b OUTLINE + c VISUAL + d FALLDAMAGE_RESETTING + e f_45706_ + f $VALUES + ()V + static + (Ljava/lang/String;ILclv$c;)V + 0 o p_45710_ + 1 o p_45711_ + 2 o p_45712_ + a ()[Lclv$a; m_151407_ + static + a (Ldcb;Lcls;Lgu;Leen;)Lefb; m_201981_ + static + 0 o p_201982_ + 1 o p_201983_ + 2 o p_201984_ + 3 o p_201985_ + get (Ldcb;Lcls;Lgu;Leen;)Lefb; m_7544_ + 0 o p_45714_ + 1 o p_45715_ + 2 o p_45716_ + 3 o p_45717_ + valueOf (Ljava/lang/String;)Lclv$a; valueOf + static + 0 o p_45719_ + values ()[Lclv$a; values + static +clv$b net/minecraft/world/level/ClipContext$Fluid + a NONE + b SOURCE_ONLY + c ANY + d WATER + e f_45724_ + f $VALUES + ()V + static + (Ljava/lang/String;ILjava/util/function/Predicate;)V + 0 o p_45728_ + 1 o p_45729_ + 2 o p_45730_ + a ()[Lclv$b; m_151408_ + static + a (Ldxe;)Z m_45731_ + 0 o p_45732_ + b (Ldxe;)Z m_201987_ + static + 0 o p_201988_ + c (Ldxe;)Z m_45733_ + static + 0 o p_45734_ + d (Ldxe;)Z m_45735_ + static + 0 o p_45736_ + valueOf (Ljava/lang/String;)Lclv$b; valueOf + static + 0 o p_45738_ + values ()[Lclv$b; values + static +clv$c net/minecraft/world/level/ClipContext$ShapeGetter + get (Ldcb;Lcls;Lgu;Leen;)Lefb; m_7544_ + 0 o p_45740_ + 1 o p_45741_ + 2 o p_45742_ + 3 o p_45743_ +clw net/minecraft/world/level/CollisionGetter + a (Lbfj;Leed;)Z m_45756_ + 0 o p_45757_ + 1 o p_45758_ + a (Ldcb;Lgu;Leen;)Z m_45752_ + 0 o p_45753_ + 1 o p_45754_ + 2 o p_45755_ + a (DDDLeed;)Leed; m_186420_ + static + 0 o p_186421_ + 1 o p_186422_ + 2 o p_186423_ + 3 o p_186424_ + a (Lefb;)Ljava/util/stream/Stream; m_186425_ + static + 0 o p_186426_ + a (Lbfj;Lefb;)Z m_5450_ + 0 o p_45750_ + 1 o p_45751_ + a (Lgu$a;Lefb;)Lgu; m_285729_ + static + 0 o p_286213_ + 1 o p_286214_ + a (Lbfj;Lefb;Leei;DDD)Ljava/util/Optional; m_151418_ + 0 o p_151419_ + 1 o p_151420_ + 2 o p_151421_ + 3 o p_151422_ + 4 o p_151423_ + 5 o p_151424_ + b (Lefb;)Z m_186429_ + 0 o p_186430_ + b (Lbfj;Leed;)Ljava/util/List; m_183134_ + 0 o p_186427_ + 1 o p_186428_ + b (Lgu$a;Lefb;)Lefb; m_285728_ + static + 0 o p_286211_ + 1 o p_286212_ + b (Leed;)Z m_45772_ + 0 o p_45773_ + c (Lgu$a;Lefb;)Lefb; m_285730_ + static + 0 o p_286215_ + 1 o p_286216_ + c (II)Lcls; m_7925_ + 0 o p_45774_ + 1 o p_45775_ + c (Lbfj;Leed;)Ljava/lang/Iterable; m_186431_ + 0 o p_186432_ + 1 o p_186433_ + d (Lbfj;Leed;)Ljava/lang/Iterable; m_186434_ + 0 o p_186435_ + 1 o p_186436_ + e (Lbfj;Leed;)Z m_186437_ + 0 o p_186438_ + 1 o p_186439_ + f (Lbfj;)Z m_45784_ + 0 o p_45785_ + f (Lbfj;Leed;)Ljava/util/Optional; m_285750_ + 0 o p_286468_ + 1 o p_286792_ + g (Lbfj;)Z m_45786_ + 0 o p_45787_ + g (Lbfj;Leed;)Lefb; m_186440_ + 0 o p_186441_ + 1 o p_186442_ + h (Lbfj;Leed;)Ljava/util/Iterator; m_285727_ + 0 o p_286209_ + 1 o p_286210_ + w_ ()Ldds; m_6857_ +clx net/minecraft/world/level/ColorResolver + getColor (Lcnk;DD)I m_130045_ + 0 o p_130046_ + 1 o p_130047_ + 2 o p_130048_ +cly net/minecraft/world/level/CommonLevelAccessor + a (Ldhk$a;Lgu;)Lgu; m_5452_ + 0 o p_45831_ + 1 o p_45832_ + a (Lbfj;Lefb;)Z m_5450_ + 0 o p_45828_ + 1 o p_45829_ + a (Lgu;Lczp;)Ljava/util/Optional; m_141902_ + 0 o p_151452_ + 1 o p_151453_ + b (Lbfj;Leed;)Ljava/util/List; m_183134_ + 0 o p_186447_ + 1 o p_186448_ +clz net/minecraft/world/level/CustomSpawner + a (Laif;ZZ)I m_7995_ + 0 o p_45839_ + 1 o p_45840_ + 2 o p_45841_ +cm net/minecraft/advancements/critereon/PickedUpItemTrigger + a f_221294_ + (Lacq;)V + 0 o p_221296_ + a ()Lacq; m_7295_ + a (Laig;Lcfz;Ldzk;Lcm$a;)Z m_221302_ + static + 0 o p_221303_ + 1 o p_221304_ + 2 o p_221305_ + 3 o p_221306_ + a (Lcom/google/gson/JsonObject;Lba;Lbe;)Lcm$a; m_7214_ + 0 o p_286475_ + 1 o p_286683_ + 2 o p_286255_ + a (Laig;Lcfz;Lbfj;)V m_221298_ + 0 o p_221299_ + 1 o p_221300_ + 2 o p_221301_ + b (Lcom/google/gson/JsonObject;Lba;Lbe;)Lar; m_7214_ + 0 o p_286503_ + 1 o p_286382_ + 2 o p_286658_ +cm$a net/minecraft/advancements/critereon/PickedUpItemTrigger$TriggerInstance + a f_221315_ + b f_221316_ + (Lacq;Lba;Lbz;Lba;)V + 0 o p_286249_ + 1 o p_286258_ + 2 o p_286761_ + 3 o p_286491_ + a (Laig;Lcfz;Ldzk;)Z m_221322_ + 0 o p_221323_ + 1 o p_221324_ + 2 o p_221325_ + a (Lct;)Lcom/google/gson/JsonObject; m_7683_ + 0 o p_221331_ + a (Lba;Lbz;Lba;)Lcm$a; m_286072_ + static + 0 o p_286865_ + 1 o p_286788_ + 2 o p_286327_ + b (Lba;Lbz;Lba;)Lcm$a; m_286101_ + static + 0 o p_286405_ + 1 o p_286518_ + 2 o p_286381_ +cma net/minecraft/world/level/DataPackConfig + a f_45842_ + b f_45843_ + c f_45844_ + d f_45845_ + ()V + static + (Ljava/util/List;Ljava/util/List;)V + 0 o p_45848_ + 1 o p_45849_ + a (Lcma;)Ljava/util/List; m_151454_ + static + 0 o p_151455_ + a ()Ljava/util/List; m_45850_ + a (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; m_45853_ + static + 0 o p_45854_ + b (Lcma;)Ljava/util/List; m_151456_ + static + 0 o p_151457_ + b ()Ljava/util/List; m_45855_ +cmb net/minecraft/world/level/EmptyBlockGetter + a INSTANCE + b $VALUES + ()V + static + (Ljava/lang/String;I)V + 0 o p_45862_ + 1 o p_45863_ + C_ ()I m_141937_ + D_ ()I m_141928_ + a ()[Lcmb; m_151458_ + static + a_ (Lgu;)Ldcb; m_8055_ + 0 o p_45869_ + b_ (Lgu;)Ldxe; m_6425_ + 0 o p_45865_ + c_ (Lgu;)Lczn; m_7702_ + 0 o p_45867_ + valueOf (Ljava/lang/String;)Lcmb; valueOf + static + 0 o p_45871_ + values ()[Lcmb; values + static +cmc net/minecraft/world/level/EntityBasedExplosionDamageCalculator + a f_45892_ + (Lbfj;)V + 0 o p_45894_ + a (Lcme;Lcls;Lgu;Ldcb;F)Z m_6714_ + 0 o p_45896_ + 1 o p_45897_ + 2 o p_45898_ + 3 o p_45899_ + 4 o p_45900_ + a (Lcme;Lcls;Lgu;Ldcb;Ldxe;)Ljava/util/Optional; m_6617_ + 0 o p_45902_ + 1 o p_45903_ + 2 o p_45904_ + 3 o p_45905_ + 4 o p_45906_ + a (Lcme;Lcls;Lgu;Ldcb;Ldxe;Ljava/lang/Float;)Ljava/lang/Float; m_45907_ + 0 o p_45908_ + 1 o p_45909_ + 2 o p_45910_ + 3 o p_45911_ + 4 o p_45912_ + 5 o p_45913_ +cmd net/minecraft/world/level/EntityGetter + a (Ldfz;Leed;Ljava/util/function/Predicate;)Ljava/util/List; m_142425_ + 0 o p_151464_ + 1 o p_151465_ + 2 o p_151466_ + a (Lbqm;Lbfz;DDD)Lbyo; m_45949_ + 0 o p_45950_ + 1 o p_45951_ + 2 o p_45952_ + 3 o p_45953_ + 4 o p_45954_ + a (Ljava/lang/Class;Lbqm;Lbfz;Leed;)Ljava/util/List; m_45971_ + 0 o p_45972_ + 1 o p_45973_ + 2 o p_45974_ + 3 o p_45975_ + a (DDDDLjava/util/function/Predicate;)Lbyo; m_5788_ + 0 o p_45919_ + 1 o p_45920_ + 2 o p_45921_ + 3 o p_45922_ + 4 o p_45923_ + a (Ljava/lang/Class;Lbqm;Lbfz;DDDLeed;)Lbfz; m_45963_ + 0 o p_45964_ + 1 o p_45965_ + 2 o p_45966_ + 3 o p_45967_ + 4 o p_45968_ + 5 o p_45969_ + 6 o p_45970_ + a (DDDD)Z m_45914_ + 0 o p_45915_ + 1 o p_45916_ + 2 o p_45917_ + 3 o p_45918_ + a (Ljava/util/List;Lbqm;Lbfz;DDD)Lbfz; m_45982_ + 0 o p_45983_ + 1 o p_45984_ + 2 o p_45985_ + 3 o p_45986_ + 4 o p_45987_ + 5 o p_45988_ + a (Lbqm;Lbfz;)Lbyo; m_45946_ + 0 o p_45947_ + 1 o p_45948_ + a (Lbfj;Leed;Ljava/util/function/Predicate;)Ljava/util/List; m_6249_ + 0 o p_45936_ + 1 o p_45937_ + 2 o p_45938_ + a (DDDDZ)Lbyo; m_45924_ + 0 o p_45925_ + 1 o p_45926_ + 2 o p_45927_ + 3 o p_45928_ + 4 o p_45929_ + a (Ljava/lang/Class;Leed;Ljava/util/function/Predicate;)Ljava/util/List; m_6443_ + 0 o p_45979_ + 1 o p_45980_ + 2 o p_45981_ + a (Lbqm;Lbfz;Leed;)Ljava/util/List; m_45955_ + 0 o p_45956_ + 1 o p_45957_ + 2 o p_45958_ + a (Lbfj;Lefb;)Z m_5450_ + 0 o p_45939_ + 1 o p_45940_ + a (Ljava/lang/Class;Leed;)Ljava/util/List; m_45976_ + 0 o p_45977_ + 1 o p_45978_ + a (Lbfj;D)Lbyo; m_45930_ + 0 o p_45931_ + 1 o p_45932_ + a (Lbqm;DDD)Lbyo; m_45941_ + 0 o p_45942_ + 1 o p_45943_ + 2 o p_45944_ + 3 o p_45945_ + a (Lbfz;)Z m_186449_ + static + 0 o p_186450_ + a_ (Lbfj;Leed;)Ljava/util/List; m_45933_ + 0 o p_45934_ + 1 o p_45935_ + b (Ljava/util/UUID;)Lbyo; m_46003_ + 0 o p_46004_ + b (Lbfj;Leed;)Ljava/util/List; m_183134_ + 0 o p_186451_ + 1 o p_186452_ + b (Lbfz;)Z m_186453_ + static + 0 o p_186454_ + v ()Ljava/util/List; m_6907_ +cme net/minecraft/world/level/Explosion + a f_46008_ + b f_151469_ + c f_46009_ + d f_46010_ + e f_46011_ + f f_46012_ + g f_46013_ + h f_46014_ + i f_46015_ + j f_46016_ + k f_46017_ + l f_46018_ + m f_46019_ + n f_46020_ + o f_46021_ + ()V + static + (Lcmm;Lbfj;DDDFZLcme$a;Ljava/util/List;)V + 0 o p_46041_ + 1 o p_46042_ + 2 o p_46043_ + 3 o p_46044_ + 4 o p_46045_ + 5 o p_46046_ + 6 o p_46047_ + 7 o p_46048_ + 8 o p_46049_ + (Lcmm;Lbfj;DDDFLjava/util/List;)V + 0 o p_46024_ + 1 o p_46025_ + 2 o p_46026_ + 3 o p_46027_ + 4 o p_46028_ + 5 o p_46029_ + 6 o p_46030_ + (Lcmm;Lbfj;DDDFZLcme$a;)V + 0 o p_46032_ + 1 o p_46033_ + 2 o p_46034_ + 3 o p_46035_ + 4 o p_46036_ + 5 o p_46037_ + 6 o p_46038_ + 7 o p_46039_ + (Lcmm;Lbfj;Lben;Lcmf;DDDFZLcme$a;)V + 0 o p_46051_ + 1 o p_46052_ + 2 o p_46053_ + 3 o p_46054_ + 4 o p_46055_ + 5 o p_46056_ + 6 o p_46057_ + 7 o p_46058_ + 8 o p_46059_ + 9 o p_46060_ + a (Leei;Lbfj;)F m_46064_ + static + 0 o p_46065_ + 1 o p_46066_ + a (Z)V m_46075_ + 0 o p_46076_ + a (Lbfj;)Lcmf; m_46062_ + 0 o p_46063_ + a ()V m_46061_ + a (Lit/unimi/dsi/fastutil/objects/ObjectArrayList;Lcfz;Lgu;)V m_46067_ + static + 0 o p_46068_ + 1 o p_46069_ + 2 o p_46070_ + a (Lit/unimi/dsi/fastutil/objects/ObjectArrayList;Lgu;Lcfz;)V m_46071_ + static + 0 o p_46072_ + 1 o p_46073_ + 2 o p_46074_ + b ()Z m_254884_ + c ()Lben; m_46077_ + d ()Ljava/util/Map; m_46078_ + e ()Lbfz; m_252906_ + f ()Lbfj; m_253049_ + g ()V m_46080_ + h ()Ljava/util/List; m_46081_ +cme$a net/minecraft/world/level/Explosion$BlockInteraction + a KEEP + b DESTROY + c DESTROY_WITH_DECAY + d $VALUES + ()V + static + (Ljava/lang/String;I)V + 0 o p_46088_ + 1 o p_46089_ + a ()[Lcme$a; m_151477_ + static + valueOf (Ljava/lang/String;)Lcme$a; valueOf + static + 0 o p_46091_ + values ()[Lcme$a; values + static +cmf net/minecraft/world/level/ExplosionDamageCalculator + ()V + a (Lcme;Lcls;Lgu;Ldcb;F)Z m_6714_ + 0 o p_46094_ + 1 o p_46095_ + 2 o p_46096_ + 3 o p_46097_ + 4 o p_46098_ + a (Lcme;Lcls;Lgu;Ldcb;Ldxe;)Ljava/util/Optional; m_6617_ + 0 o p_46099_ + 1 o p_46100_ + 2 o p_46101_ + 3 o p_46102_ + 4 o p_46103_ +cmg net/minecraft/world/level/FoliageColor + a f_46104_ + ()V + static + ()V + a ([I)V m_46110_ + static + 0 o p_46111_ + a ()I m_46106_ + static + a (DD)I m_46107_ + static + 0 o p_46108_ + 1 o p_46109_ + b ()I m_46112_ + static + c ()I m_46113_ + static + d ()I m_220346_ + static +cmh net/minecraft/world/level/ForcedChunksSavedData + a f_151479_ + b f_151480_ + c f_46114_ + (Lit/unimi/dsi/fastutil/longs/LongSet;)V + 0 o p_151482_ + ()V + a (Lqr;)Lqr; m_7176_ + 0 o p_46120_ + a ()Lit/unimi/dsi/fastutil/longs/LongSet; m_46116_ + b (Lqr;)Lcmh; m_151483_ + static + 0 o p_151484_ +cmi net/minecraft/world/level/GameRules + A f_46155_ + B f_46156_ + C f_46121_ + D f_46122_ + E f_46123_ + F f_151485_ + G f_46124_ + H f_46125_ + I f_220347_ + J f_46126_ + K f_46127_ + L f_151486_ + M f_254629_ + N f_254692_ + O f_254705_ + P f_254637_ + Q f_254725_ + R f_254672_ + S f_254630_ + T f_268705_ + U f_46128_ + V f_46129_ + W f_46130_ + a f_151487_ + b f_46131_ + c f_46132_ + d f_46133_ + e f_46134_ + f f_46135_ + g f_46136_ + h f_46137_ + i f_46138_ + j f_46139_ + k f_46140_ + l f_46141_ + m f_46142_ + n f_46143_ + o f_46144_ + p f_46145_ + q f_46146_ + r f_46147_ + s f_46148_ + t f_46149_ + u f_46150_ + v f_46151_ + w f_46152_ + x f_263760_ + y f_46153_ + z f_46154_ + ()V + static + (Lcom/mojang/serialization/DynamicLike;)V + 0 o p_46160_ + (Ljava/util/Map;)V + 0 o p_46162_ + ()V + a (Lcom/mojang/serialization/DynamicLike;Lcmi$e;Lcmi$g;)V m_46185_ + static + 0 o p_46186_ + 1 o p_46187_ + 2 o p_46188_ + a (Lcmi;Lnet/minecraft/server/MinecraftServer;Lcmi$e;)V m_46179_ + 0 o p_46180_ + 1 o p_46181_ + 2 o p_46182_ + a (Lnet/minecraft/server/MinecraftServer;Lcmi$a;)V m_46199_ + static + 0 o p_46200_ + 1 o p_46201_ + a (Ljava/util/Map$Entry;)Lcmi$g; m_46193_ + static + 0 o p_46194_ + a (Lcmi;Lnet/minecraft/server/MinecraftServer;)V m_46176_ + 0 o p_46177_ + 1 o p_46178_ + a (Lcmi$e;Lcmi;Lnet/minecraft/server/MinecraftServer;)V m_46172_ + 0 o p_46173_ + 1 o p_46174_ + 2 o p_46175_ + a (Lqr;Lcmi$e;Lcmi$g;)V m_46195_ + static + 0 o p_46196_ + 1 o p_46197_ + 2 o p_46198_ + a (Lcmi$c;)V m_46164_ + static + 0 o p_46165_ + a (Lcmi$c;Lcmi$e;Lcmi$f;)V m_46166_ + static + 0 o p_46167_ + 1 o p_46168_ + 2 o p_46169_ + a ()Lqr; m_46163_ + a (Lcmi$e;)Lcmi$g; m_46170_ + 0 o p_46171_ + a (Ljava/lang/String;Lcmi$b;Lcmi$f;)Lcmi$e; m_46189_ + static + 0 o p_46190_ + 1 o p_46191_ + 2 o p_46192_ + a (Lcom/mojang/serialization/DynamicLike;)V m_46183_ + 0 o p_46184_ + b (Lcmi$c;Lcmi$e;Lcmi$f;)V m_46203_ + static + 0 o p_46204_ + 1 o p_46205_ + 2 o p_46206_ + b ()Lcmi; m_46202_ + b (Ljava/util/Map$Entry;)Lcmi$g; m_46209_ + static + 0 o p_46210_ + b (Lnet/minecraft/server/MinecraftServer;Lcmi$a;)V m_46211_ + static + 0 o p_46212_ + 1 o p_46213_ + b (Lcmi$e;)Z m_46207_ + 0 o p_46208_ + c (Lcmi$e;)I m_46215_ + 0 o p_46216_ + d (Lcmi$e;)Ljava/lang/String; m_46217_ + static + 0 o p_46218_ +cmi$a net/minecraft/world/level/GameRules$BooleanValue + b f_46219_ + (Lcmi$f;Z)V + 0 o p_46221_ + 1 o p_46222_ + a (Ljava/lang/String;)V m_7377_ + 0 o p_46234_ + a (Lcmi$a;Lnet/minecraft/server/MinecraftServer;)V m_5614_ + 0 o p_46225_ + 1 o p_46226_ + a (Lnet/minecraft/server/MinecraftServer;Lcmi$a;)V m_46235_ + static + 0 o p_46236_ + 1 o p_46237_ + a (Z)Lcmi$f; m_46250_ + static + 0 o p_46251_ + a (Lcmi$g;Lnet/minecraft/server/MinecraftServer;)V m_5614_ + 0 o p_46228_ + 1 o p_46229_ + a (ZLnet/minecraft/server/MinecraftServer;)V m_46246_ + 0 o p_46247_ + 1 o p_46248_ + a (ZLcmi$f;)Lcmi$a; m_46240_ + static + 0 o p_46241_ + 1 o p_46242_ + a ()Z m_46223_ + a (ZLjava/util/function/BiConsumer;)Lcmi$f; m_46252_ + static + 0 o p_46253_ + 1 o p_46254_ + a (Lcom/mojang/brigadier/context/CommandContext;Ljava/lang/String;)V m_5528_ + 0 o p_46231_ + 1 o p_46232_ + b ()Ljava/lang/String; m_5831_ + c ()I m_6855_ + d ()Lcmi$a; m_5589_ + e ()Lcmi$a; m_5590_ + f ()Lcmi$g; m_5590_ + g ()Lcmi$g; m_5589_ +cmi$b net/minecraft/world/level/GameRules$Category + a PLAYER + b MOBS + c SPAWNING + d DROPS + e UPDATES + f CHAT + g MISC + h f_46267_ + i $VALUES + ()V + static + (Ljava/lang/String;ILjava/lang/String;)V + 0 o p_46271_ + 1 o p_46272_ + 2 o p_46273_ + a ()Ljava/lang/String; m_46274_ + b ()[Lcmi$b; m_151488_ + static + valueOf (Ljava/lang/String;)Lcmi$b; valueOf + static + 0 o p_46276_ + values ()[Lcmi$b; values + static +cmi$c net/minecraft/world/level/GameRules$GameRuleTypeVisitor + a (Lcmi$e;Lcmi$f;)V m_6889_ + 0 o p_46278_ + 1 o p_46279_ + b (Lcmi$e;Lcmi$f;)V m_6891_ + 0 o p_46280_ + 1 o p_46281_ + c (Lcmi$e;Lcmi$f;)V m_6894_ + 0 o p_46282_ + 1 o p_46283_ +cmi$d net/minecraft/world/level/GameRules$IntegerValue + b f_46284_ + (Lcmi$f;I)V + 0 o p_46286_ + 1 o p_46287_ + a (Ljava/lang/String;)V m_7377_ + 0 o p_46307_ + a (ILnet/minecraft/server/MinecraftServer;)V m_151489_ + 0 o p_151490_ + 1 o p_151491_ + a (ILjava/util/function/BiConsumer;)Lcmi$f; m_46294_ + static + 0 o p_46295_ + 1 o p_46296_ + a (Lcmi$g;Lnet/minecraft/server/MinecraftServer;)V m_5614_ + 0 o p_46301_ + 1 o p_46302_ + a ()I m_46288_ + a (Lnet/minecraft/server/MinecraftServer;Lcmi$d;)V m_46308_ + static + 0 o p_46309_ + 1 o p_46310_ + a (I)Lcmi$f; m_46312_ + static + 0 o p_46313_ + a (Lcom/mojang/brigadier/context/CommandContext;Ljava/lang/String;)V m_5528_ + 0 o p_46304_ + 1 o p_46305_ + a (ILcmi$f;)Lcmi$d; m_46291_ + static + 0 o p_46292_ + 1 o p_46293_ + a (Lcmi$d;Lnet/minecraft/server/MinecraftServer;)V m_5614_ + 0 o p_46298_ + 1 o p_46299_ + b (Ljava/lang/String;)Z m_46314_ + 0 o p_46315_ + b ()Ljava/lang/String; m_5831_ + c (Ljava/lang/String;)I m_46317_ + static + 0 o p_46318_ + c ()I m_6855_ + d ()Lcmi$d; m_5589_ + e ()Lcmi$d; m_5590_ + f ()Lcmi$g; m_5590_ + g ()Lcmi$g; m_5589_ +cmi$e net/minecraft/world/level/GameRules$Key + a f_46323_ + b f_46324_ + (Ljava/lang/String;Lcmi$b;)V + 0 o p_46326_ + 1 o p_46327_ + a ()Ljava/lang/String; m_46328_ + b ()Ljava/lang/String; m_46331_ + c ()Lcmi$b; m_46332_ + equals (Ljava/lang/Object;)Z equals + 0 o p_46334_ + hashCode ()I hashCode + toString ()Ljava/lang/String; toString +cmi$f net/minecraft/world/level/GameRules$Type + a f_46337_ + b f_46338_ + c f_46339_ + d f_46340_ + (Ljava/util/function/Supplier;Ljava/util/function/Function;Ljava/util/function/BiConsumer;Lcmi$h;)V + 0 o p_46342_ + 1 o p_46343_ + 2 o p_46344_ + 3 o p_46345_ + a (Lcmi$c;Lcmi$e;)V m_46353_ + 0 o p_46354_ + 1 o p_46355_ + a (Ljava/lang/String;)Lcom/mojang/brigadier/builder/RequiredArgumentBuilder; m_46358_ + 0 o p_46359_ + a ()Lcmi$g; m_46352_ +cmi$g net/minecraft/world/level/GameRules$Value + a f_46360_ + (Lcmi$f;)V + 0 o p_46362_ + a (Ljava/lang/String;)V m_7377_ + 0 o p_46367_ + a (Lcom/mojang/brigadier/context/CommandContext;Ljava/lang/String;)V m_5528_ + 0 o p_46365_ + 1 o p_46366_ + a (Lnet/minecraft/server/MinecraftServer;)V m_46368_ + 0 o p_46369_ + a (Lcmi$g;Lnet/minecraft/server/MinecraftServer;)V m_5614_ + 0 o p_46363_ + 1 o p_46364_ + b ()Ljava/lang/String; m_5831_ + b (Lcom/mojang/brigadier/context/CommandContext;Ljava/lang/String;)V m_46370_ + 0 o p_46371_ + 1 o p_46372_ + c ()I m_6855_ + f ()Lcmi$g; m_5590_ + g ()Lcmi$g; m_5589_ + toString ()Ljava/lang/String; toString +cmi$h net/minecraft/world/level/GameRules$VisitorCaller + call (Lcmi$c;Lcmi$e;Lcmi$f;)V m_46374_ + 0 o p_46375_ + 1 o p_46376_ + 2 o p_46377_ +cmj net/minecraft/world/level/GameType + a SURVIVAL + b CREATIVE + c ADVENTURE + d SPECTATOR + e f_151492_ + f f_262729_ + g f_262728_ + h f_46378_ + i f_46383_ + j f_46384_ + k f_151493_ + l f_151494_ + m $VALUES + ()V + static + (Ljava/lang/String;IILjava/lang/String;)V + 0 o p_46388_ + 1 o p_46389_ + 2 o p_46390_ + 3 o p_46391_ + a ()I m_46392_ + a (Lbyl;)V m_46398_ + 0 o p_46399_ + a (Ljava/lang/String;Lcmj;)Lcmj; m_46402_ + static + 0 o p_46403_ + 1 o p_46404_ + a (Lcmj;)I m_151495_ + static + 0 o p_151496_ + a (I)Lcmj; m_46393_ + static + 0 o p_46394_ + a (Ljava/lang/String;)Lcmj; m_46400_ + static + 0 o p_46401_ + b ()Ljava/lang/String; m_46405_ + b (I)Lcmj; m_151497_ + static + 0 o p_151498_ + c ()Ljava/lang/String; m_7912_ + d ()Lsw; m_151499_ + e ()Lsw; m_151500_ + f ()Z m_46407_ + g ()Z m_46408_ + h ()Z m_46409_ + i ()[Lcmj; m_151501_ + static + valueOf (Ljava/lang/String;)Lcmj; valueOf + static + 0 o p_46411_ + values ()[Lcmj; values + static +cmk net/minecraft/world/level/GrassColor + a f_46413_ + ()V + static + ()V + a ([I)V m_46418_ + static + 0 o p_46419_ + a ()I m_276205_ + static + a (DD)I m_46415_ + static + 0 o p_46416_ + 1 o p_46417_ +cml net/minecraft/world/level/ItemLike + k ()Lcfu; m_5456_ +cmm net/minecraft/world/level/Level + A f_46442_ + B f_46443_ + D f_220349_ + E f_204147_ + F f_46446_ + G f_46447_ + H f_46420_ + I f_46421_ + J f_268710_ + K f_268497_ + L f_186455_ + a f_151503_ + b f_151504_ + c f_46423_ + d f_46424_ + e f_46425_ + f f_220348_ + g f_46427_ + h f_46428_ + i f_46429_ + j f_46430_ + k f_151505_ + l f_151506_ + m f_151507_ + n f_151508_ + o f_151509_ + p f_151510_ + q f_151511_ + r f_151512_ + s f_220350_ + t f_46435_ + u f_46436_ + v f_46437_ + w f_46438_ + x f_46439_ + y f_46440_ + z f_46441_ + ()V + static + (Ldzf;Lacp;Lhs;Lhe;Ljava/util/function/Supplier;ZZJI)V + 0 o p_270739_ + 1 o p_270683_ + 2 o p_270200_ + 3 o p_270240_ + 4 o p_270692_ + 5 o p_270904_ + 6 o p_270470_ + 7 o p_270248_ + 8 o p_270466_ + A_ ()J m_183596_ + B_ ()Lhs; m_9598_ + D (Lgu;)Z m_46457_ + static + 0 o p_46458_ + E ()Ldgb; m_142646_ + F ()Ljava/lang/String; m_46464_ + I ()Lefg; m_6188_ + N ()Z m_46461_ + O ()Z m_46462_ + P ()V m_46463_ + Q ()V m_46465_ + R ()Lgu; m_220360_ + S ()F m_220361_ + T ()V m_46466_ + U ()V m_7462_ + V ()J m_46467_ + W ()J m_46468_ + X ()Lcmi; m_46469_ + Y ()Z m_46470_ + Z ()Z m_46471_ + a (Lbyo;Lgu;Lamg;Lami;FF)V m_5594_ + 0 o p_46560_ + 1 o p_46561_ + 2 o p_46562_ + 3 o p_46563_ + 4 o p_46564_ + 5 o p_46565_ + a (Lbfj;DDDFLcmm$a;)Lcme; m_254849_ + 0 o p_256599_ + 1 o p_255914_ + 2 o p_255684_ + 3 o p_255843_ + 4 o p_256310_ + 5 o p_256178_ + a (Ldhk$a;II)I m_6924_ + 0 o p_46571_ + 1 o p_46572_ + 2 o p_46573_ + a (DDDDDDLqr;)V m_7228_ + 0 o p_46475_ + 1 o p_46476_ + 2 o p_46477_ + 3 o p_46478_ + 4 o p_46479_ + 5 o p_46480_ + 6 o p_46481_ + a (Lgu;Lcpn;II)V m_7696_ + 0 o p_46582_ + 1 o p_46583_ + 2 o p_46584_ + 3 o p_46585_ + a (Lit;DDDDDD)V m_7106_ + 0 o p_46631_ + 1 o p_46632_ + 2 o p_46633_ + 3 o p_46634_ + 4 o p_46635_ + 5 o p_46636_ + 6 o p_46637_ + a (Lbfj;Lben;Lcmf;DDDFZLcmm$a;Z)Lcme; m_255278_ + 0 o p_256233_ + 1 o p_255861_ + 2 o p_255867_ + 3 o p_256447_ + 4 o p_255732_ + 5 o p_255717_ + 6 o p_256013_ + 7 o p_256228_ + 8 o p_255784_ + 9 o p_256377_ + a (DDDLamg;Lami;FFZ)V m_7785_ + 0 o p_46482_ + 1 o p_46483_ + 2 o p_46484_ + 3 o p_46485_ + 4 o p_46486_ + 5 o p_46487_ + 6 o p_46488_ + 7 o p_46489_ + a (Lgu;Lbfj;Lha;)Z m_46578_ + 0 o p_46579_ + 1 o p_46580_ + 2 o p_46581_ + a (Lhe;)Ljava/lang/IllegalArgumentException; m_220391_ + static + 0 o p_220392_ + a (Lbyo;Lbfj;Lamg;Lami;FF)V m_6269_ + 0 o p_46551_ + 1 o p_46552_ + 2 o p_46553_ + 3 o p_46554_ + 4 o p_46555_ + 5 o p_46556_ + a (Lbfj;Leed;Ljava/util/function/Predicate;)Ljava/util/List; m_6249_ + 0 o p_46536_ + 1 o p_46537_ + 2 o p_46538_ + a (Lbfj;B)V m_7605_ + 0 o p_46509_ + 1 o p_46510_ + a (Lgu;Ljava/util/function/Predicate;)Z m_7433_ + 0 o p_46620_ + 1 o p_46621_ + a (Lbyo;DDDLhe;Lami;FFJ)V m_262808_ + 0 o p_262953_ + 1 o p_263004_ + 2 o p_263398_ + 3 o p_263376_ + 4 o p_263359_ + 5 o p_263020_ + 6 o p_263055_ + 7 o p_262914_ + 8 o p_262991_ + a (Lbfj;Lgu;Lamg;Lami;FF)V m_245803_ + 0 o p_252137_ + 1 o p_251749_ + 2 o p_248842_ + 3 o p_251104_ + 4 o p_249531_ + 5 o p_250763_ + a (Ldfz;Leed;Ljava/util/function/Predicate;Ljava/util/List;)V m_261153_ + 0 o p_261899_ + 1 o p_261837_ + 2 o p_261519_ + 3 o p_262046_ + a (Ldcb;Lgu;Lcpn;Lgu;Z)V m_213960_ + 0 o p_220379_ + 1 o p_220380_ + 2 o p_220381_ + 3 o p_220382_ + 4 o p_220383_ + a (Lgu;Z)Z m_7471_ + 0 o p_46623_ + 1 o p_46624_ + a (Lczn;)V m_151523_ + 0 o p_151524_ + a (Lbfj;Ljava/util/function/Predicate;Ljava/util/List;Lbfj;)V m_151518_ + static + 0 o p_151519_ + 1 o p_151520_ + 2 o p_151521_ + 3 o p_151522_ + a (Lbyo;Lbfj;Lhe;Lami;FFJ)V m_213890_ + 0 o p_220372_ + 1 o p_220373_ + 2 o p_263500_ + 3 o p_220375_ + 4 o p_220376_ + 5 o p_220377_ + 6 o p_220378_ + a (Ldbd;)V m_151525_ + 0 o p_151526_ + a (Lbfj;Lben;Lcmf;Leei;FZLcmm$a;)Lcme; m_254951_ + 0 o p_255653_ + 1 o p_256558_ + 2 o p_255929_ + 3 o p_256001_ + 4 o p_255963_ + 5 o p_256099_ + 6 o p_256371_ + a (Lo;)Lp; m_6026_ + 0 o p_46656_ + a (Lgu;Ldcb;Ldcb;)V m_6559_ + 0 o p_46609_ + 1 o p_46610_ + 2 o p_46611_ + a (Ldfz;Leed;Ljava/util/function/Predicate;Ljava/util/List;I)V m_260826_ + 0 o p_261885_ + 1 o p_262086_ + 2 o p_261688_ + 3 o p_262071_ + 4 o p_261858_ + a (Luo;)V m_5503_ + 0 o p_46657_ + a (Lbyo;Lgu;)Z m_7966_ + 0 o p_46557_ + 1 o p_46558_ + a (Lgu;Lamg;Lami;FFZ)V m_245747_ + 0 o p_250938_ + 1 o p_252209_ + 2 o p_249161_ + 3 o p_249980_ + 4 o p_250277_ + 5 o p_250151_ + a (Lgu;Ldcb;II)Z m_6933_ + 0 o p_46605_ + 1 o p_46606_ + 2 o p_46607_ + 3 o p_46608_ + a ()Ljava/lang/String; m_46474_ + a (Lgu;Ldcb;)V m_142052_ + 0 o p_151531_ + 1 o p_151532_ + a (Lbfj;Lben;Lcmf;DDDFZLcmm$a;)Lcme; m_254877_ + 0 o p_256145_ + 1 o p_256004_ + 2 o p_255696_ + 3 o p_256208_ + 4 o p_256036_ + 5 o p_255746_ + 6 o p_256647_ + 7 o p_256098_ + 8 o p_256104_ + a (Lgu;ZLbfj;I)Z m_7740_ + 0 o p_46626_ + 1 o p_46627_ + 2 o p_46628_ + 3 o p_46629_ + a (Lgu;Lbfj;)Z m_46575_ + 0 o p_46576_ + 1 o p_46577_ + a (Lit;ZDDDDDD)V m_6493_ + 0 o p_46638_ + 1 o p_46639_ + 2 o p_46640_ + 3 o p_46641_ + 4 o p_46642_ + 5 o p_46643_ + 6 o p_46644_ + 7 o p_46645_ + a (Ljava/util/function/Consumer;Lbfj;)V m_46653_ + 0 o p_46654_ + 1 o p_46655_ + a (Lgu;Lcpn;)V m_46672_ + 0 o p_46673_ + 1 o p_46674_ + a (Lbyo;DDDLamg;Lami;FF)V m_6263_ + 0 o p_46543_ + 1 o p_46544_ + 2 o p_46545_ + 3 o p_46546_ + 4 o p_46547_ + 5 o p_46548_ + 6 o p_46549_ + 7 o p_46550_ + a (Lgu;Ldcb;I)Z m_7731_ + 0 o p_46601_ + 1 o p_46602_ + 2 o p_46603_ + a (IILdec;Z)Lddx; m_6522_ + 0 o p_46502_ + 1 o p_46503_ + 2 o p_46504_ + 3 o p_46505_ + a (ILgu;I)V m_6801_ + 0 o p_46506_ + 1 o p_46507_ + 2 o p_46508_ + a (Lgu;Ldcb;Ldcb;I)V m_7260_ + 0 o p_46612_ + 1 o p_46613_ + 2 o p_46614_ + 3 o p_46615_ + a (Lcmi$e;)Lcme$a; m_255157_ + 0 o p_256250_ + a (Ljava/lang/String;)Ldyo; m_7489_ + 0 o p_46650_ + a (Lbyo;DDDLamg;Lami;FFJ)V m_214150_ + 0 o p_220363_ + 1 o p_220364_ + 2 o p_220365_ + 3 o p_220366_ + 4 o p_220367_ + 5 o p_220368_ + 6 o p_220369_ + 7 o p_220370_ + 8 o p_220371_ + a (Ljava/util/function/Predicate;Ljava/util/List;ILdfz;Lbfj;)Lanr$a; m_260792_ + static + 0 o p_261450_ + 1 o p_261451_ + 2 o p_261452_ + 3 o p_261453_ + 4 o p_261454_ + a (II)Lddx; m_6325_ + 0 o p_46494_ + 1 o p_46495_ + a (J)Z m_183438_ + 0 o p_186456_ + a (Lgu;Lcpn;Lha;)V m_46590_ + 0 o p_46591_ + 1 o p_46592_ + 2 o p_46593_ + a (Lha;Ldcb;Lgu;Lgu;II)V m_213683_ + 0 o p_220385_ + 1 o p_220386_ + 2 o p_220387_ + 3 o p_220388_ + 4 o p_220389_ + 5 o p_220390_ + a (I)Lbfj; m_6815_ + 0 o p_46492_ + a (Lgu;Lcpn;Lgu;)V m_46586_ + 0 o p_46587_ + 1 o p_46588_ + 2 o p_46589_ + a (F)F m_46490_ + 0 o p_46491_ + a (IIII)Lgu; m_46496_ + 0 o p_46497_ + 1 o p_46498_ + 2 o p_46499_ + 3 o p_46500_ + a (Ldfz;Leed;Ljava/util/function/Predicate;)Ljava/util/List; m_142425_ + 0 o p_151528_ + 1 o p_151529_ + 2 o p_151530_ + a (Ljava/lang/String;Ldyo;)V m_142325_ + 0 o p_151533_ + 1 o p_151534_ + a (Lbfj;Lben;)V m_269196_ + 0 o p_270831_ + 1 o p_270361_ + a (Lbfj;DDDFZLcmm$a;)Lcme; m_255391_ + 0 o p_255682_ + 1 o p_255803_ + 2 o p_256403_ + 3 o p_256538_ + 4 o p_255674_ + 5 o p_256634_ + 6 o p_256111_ + a_ (Lgu;)Ldcb; m_8055_ + 0 o p_46732_ + aa ()Lacp; m_220362_ + ab ()Lhe; m_204156_ + ac ()Lacp; m_46472_ + ad ()Lban; m_46473_ + ae ()Ljava/util/function/Supplier; m_46658_ + af ()Z m_46659_ + ag ()Lbeo; m_269111_ + b (ZZ)V m_46703_ + 0 o p_46704_ + 1 o p_46705_ + b (Lgu;Ljava/util/function/Predicate;)Z m_142433_ + 0 o p_151541_ + 1 o p_151542_ + b (Lgu;Ldcb;Ldcb;)V m_6550_ + 0 o p_46678_ + 1 o p_46679_ + 2 o p_46680_ + b (F)F m_46661_ + 0 o p_46662_ + b (Lit;ZDDDDDD)V m_6485_ + 0 o p_46691_ + 1 o p_46692_ + 2 o p_46693_ + 3 o p_46694_ + 4 o p_46695_ + 5 o p_46696_ + 6 o p_46697_ + 7 o p_46698_ + b (Lgu;Ldcb;)Z m_46597_ + 0 o p_46598_ + 1 o p_46599_ + b (Lit;DDDDDD)V m_7107_ + 0 o p_46684_ + 1 o p_46685_ + 2 o p_46686_ + 3 o p_46687_ + 4 o p_46688_ + 5 o p_46689_ + 6 o p_46690_ + b (ILgu;I)V m_6798_ + 0 o p_46665_ + 1 o p_46666_ + 2 o p_46667_ + b (I)Z m_46724_ + static + 0 o p_46725_ + b_ (Lgu;)Ldxe; m_6425_ + 0 o p_46671_ + c (II)Lcls; m_7925_ + 0 o p_46711_ + 1 o p_46712_ + c (F)V m_46707_ + 0 o p_46708_ + c (I)V m_6580_ + 0 o p_46709_ + c (Lgu;Lcpn;)V m_46717_ + 0 o p_46718_ + 1 o p_46719_ + c_ (Lgu;)Lczn; m_7702_ + 0 o p_46716_ + close ()V close + d (F)F m_46722_ + 0 o p_46723_ + d (II)Ldei; m_6325_ + 0 o p_46727_ + 1 o p_46728_ + d_ (Lgu;)Lbdv; m_6436_ + 0 o p_46730_ + e (F)V m_46734_ + 0 o p_46735_ + h (Lbfj;)Z m_183599_ + 0 o p_186458_ + j (Lgu;)Z m_46739_ + 0 o p_46740_ + k (Lgu;)Z m_46741_ + static + 0 o p_46742_ + l (Lgu;)Ldei; m_46745_ + 0 o p_46746_ + m (Lgu;)Z m_220393_ + 0 o p_220394_ + n (Lgu;)V m_46747_ + 0 o p_46748_ + n ()Lnet/minecraft/server/MinecraftServer; m_7654_ + o (Lgu;)Z m_46749_ + 0 o p_46750_ + p (Lgu;)V m_151543_ + 0 o p_151544_ + p ()Ljava/lang/String; m_268981_ + q (Lgu;)Z m_46758_ + 0 o p_46759_ + q ()Lcjd; m_7465_ + r ()Z m_7441_ + r_ ()Z m_5776_ + s_ ()Ldwt; m_5518_ + t ()I m_7354_ + t_ ()I m_5736_ + u_ ()Ldyv; m_6106_ + v_ ()I m_7445_ + w_ ()Ldds; m_6857_ + x_ ()Ldfk; m_6042_ + y_ ()Lapf; m_213780_ + z_ ()Lcnm; m_7062_ +cmm$1 net/minecraft/world/level/Level$1 + a f_220396_ + b f_46765_ + (Lcmm;Ldfk;)V + 0 o p_220398_ + 1 o p_220399_ + a ()D m_6347_ + b ()D m_6345_ +cmm$2 net/minecraft/world/level/Level$2 + a f_254640_ + ()V + static +cmm$a net/minecraft/world/level/Level$ExplosionInteraction + a NONE + b BLOCK + c MOB + d TNT + e $VALUES + ()V + static + (Ljava/lang/String;I)V + 0 o p_255976_ + 1 o p_256585_ + a ()[Lcmm$a; m_255267_ + static + valueOf (Ljava/lang/String;)Lcmm$a; valueOf + static + 0 o p_256573_ + values ()[Lcmm$a; values + static +cmn net/minecraft/world/level/LevelAccessor + A_ ()J m_183596_ + J ()Ldeb; m_7726_ + K ()Lefp; m_183324_ + L ()Lefp; m_183326_ + a (Lha;Ldcb;Lgu;Lgu;II)V m_213683_ + 0 o p_220411_ + 1 o p_220412_ + 2 o p_220413_ + 3 o p_220414_ + 4 o p_220415_ + 5 o p_220416_ + a (Lbyo;Lgu;Lamg;Lami;FF)V m_5594_ + 0 o p_46775_ + 1 o p_46776_ + 2 o p_46777_ + 3 o p_46778_ + 4 o p_46779_ + 5 o p_46780_ + a (Lbfj;Ldgl;Leei;)V m_220400_ + 0 o p_220401_ + 1 o p_220402_ + 2 o p_220403_ + a (Lbyo;ILgu;I)V m_5898_ + 0 o p_46771_ + 1 o p_46772_ + 2 o p_46773_ + 3 o p_46774_ + a (Lgu;Ljava/lang/Object;ILefx;)Left; m_186482_ + 0 o p_186483_ + 1 o p_186484_ + 2 o p_186485_ + 3 o p_186486_ + a (Lbyo;Lgu;Lamg;Lami;)V m_247517_ + 0 o p_251195_ + 1 o p_250192_ + 2 o p_249887_ + 3 o p_250593_ + a (Ldgl;Lgu;Ldgl$a;)V m_220407_ + 0 o p_220408_ + 1 o p_220409_ + 2 o p_220410_ + a (Lit;DDDDDD)V m_7106_ + 0 o p_46783_ + 1 o p_46784_ + 2 o p_46785_ + 3 o p_46786_ + 4 o p_46787_ + 5 o p_46788_ + 6 o p_46789_ + a (Lgu;Ldxd;I)V m_186469_ + 0 o p_186470_ + 1 o p_186471_ + 2 o p_186472_ + a (Lgu;Lcpn;ILefx;)V m_186464_ + 0 o p_186465_ + 1 o p_186466_ + 2 o p_186467_ + 3 o p_186468_ + a (Lgu;Ldxd;ILefx;)V m_186473_ + 0 o p_186474_ + 1 o p_186475_ + 2 o p_186476_ + 3 o p_186477_ + a (Lgu;Ljava/lang/Object;I)Left; m_186478_ + 0 o p_186479_ + 1 o p_186480_ + 2 o p_186481_ + a (Lgu;Lcpn;I)V m_186460_ + 0 o p_186461_ + 1 o p_186462_ + 2 o p_186463_ + a (Ldgl;Leei;Ldgl$a;)V m_214171_ + 0 o p_220404_ + 1 o p_220405_ + 2 o p_220406_ + a (Lbfj;Ldgl;Lgu;)V m_142346_ + 0 o p_151549_ + 1 o p_151550_ + 2 o p_151551_ + ah ()J m_8044_ + ai ()Lbdu; m_46791_ + b (Lgu;Lcpn;)V m_6289_ + 0 o p_46781_ + 1 o p_46782_ + b (II)Z m_7232_ + 0 o p_46794_ + 1 o p_46795_ + c (ILgu;I)V m_46796_ + 0 o p_46797_ + 1 o p_46798_ + 2 o p_46799_ + d_ (Lgu;)Lbdv; m_6436_ + 0 o p_46800_ + n ()Lnet/minecraft/server/MinecraftServer; m_7654_ + u_ ()Ldyv; m_6106_ + y_ ()Lapf; m_213780_ +cmo net/minecraft/world/level/LevelHeightAccessor + C_ ()I m_141937_ + D_ ()I m_141928_ + aj ()I m_151558_ + ak ()I m_151559_ + al ()I m_151560_ + am ()I m_151561_ + d (I)Z m_151562_ + 0 o p_151563_ + e (I)I m_151564_ + 0 o p_151565_ + e (II)Lcmo; m_186487_ + static + 0 o p_186488_ + 1 o p_186489_ + f (I)I m_151566_ + 0 o p_151567_ + g (I)I m_151568_ + 0 o p_151569_ + r (Lgu;)Z m_151570_ + 0 o p_151571_ +cmo$1 net/minecraft/world/level/LevelHeightAccessor$1 + a f_186490_ + b f_186491_ + (II)V + 0 o p_186493_ + 1 o p_186494_ + C_ ()I m_141937_ + D_ ()I m_141928_ +cmp net/minecraft/world/level/LevelReader + A (Lgu;)Z m_46805_ + 0 o p_46806_ + B_ ()Lhs; m_9598_ + C_ ()I m_141937_ + D_ ()I m_141928_ + G ()Lcaw; m_246046_ + a (III)Lhe; m_203675_ + 0 o p_204159_ + 1 o p_204160_ + 2 o p_204161_ + a (IIIIII)Z m_46812_ + 0 o p_46813_ + 1 o p_46814_ + 2 o p_46815_ + 3 o p_46816_ + 4 o p_46817_ + 5 o p_46818_ + a (Ldhk$a;II)I m_6924_ + 0 o p_46827_ + 1 o p_46828_ + 2 o p_46829_ + a (Ldhk$a;Lgu;)Lgu; m_5452_ + 0 o p_46830_ + 1 o p_46831_ + a (IILdec;Z)Lddx; m_6522_ + 0 o p_46823_ + 1 o p_46824_ + 2 o p_46825_ + 3 o p_46826_ + a (Lgu;Lgu;)Z m_46832_ + 0 o p_46833_ + 1 o p_46834_ + a (Lgu;Lclx;)I m_6171_ + 0 o p_46836_ + 1 o p_46837_ + a (Lacp;)Lhg; m_246945_ + 0 o p_249578_ + a (IILdec;)Lddx; m_46819_ + 0 o p_46820_ + 1 o p_46821_ + 2 o p_46822_ + a (II)Lddx; m_6325_ + 0 o p_46807_ + 1 o p_46808_ + b (II)Z m_7232_ + 0 o p_46838_ + 1 o p_46839_ + b (IIII)Z m_151572_ + 0 o p_151573_ + 1 o p_151574_ + 2 o p_151575_ + 3 o p_151576_ + c (II)Lcls; m_7925_ + 0 o p_46845_ + 1 o p_46846_ + c (Leed;)Ljava/util/stream/Stream; m_46847_ + 0 o p_46848_ + c (Lgu;I)I m_46849_ + 0 o p_46850_ + 1 o p_46851_ + d (Leed;)Z m_46855_ + 0 o p_46856_ + f (II)Z m_151577_ + 0 o p_151578_ + 1 o p_151579_ + getNoiseBiome (III)Lhe; m_203495_ + 0 o p_204163_ + 1 o p_204164_ + 2 o p_204165_ + r_ ()Z m_5776_ + s (Lgu;)Lhe; m_204166_ + 0 o p_204167_ + t (Lgu;)Z m_46859_ + 0 o p_46860_ + t_ ()I m_5736_ + u (Lgu;)Z m_46861_ + 0 o p_46862_ + v (Lgu;)F m_220419_ + 0 o p_220420_ + v_ ()I m_7445_ + w (Lgu;)F m_220417_ + 0 o p_220418_ + x (Lgu;)Lddx; m_46865_ + 0 o p_46866_ + x_ ()Ldfk; m_6042_ + y (Lgu;)Z m_46801_ + 0 o p_46802_ + z (Lgu;)I m_46803_ + 0 o p_46804_ + z_ ()Lcnm; m_7062_ +cmq net/minecraft/world/level/LevelSettings + a f_46902_ + b f_46903_ + c f_46904_ + d f_46905_ + e f_46906_ + f f_46907_ + g f_243681_ + (Ljava/lang/String;Lcmj;ZLbdu;ZLcmi;Lcnf;)V + 0 o p_250485_ + 1 o p_250207_ + 2 o p_251631_ + 3 o p_252122_ + 4 o p_248961_ + 5 o p_248536_ + 6 o p_249797_ + a (Ljava/lang/Number;)Lbdu; m_46927_ + static + 0 o p_46928_ + a (Lcmj;)Lcmq; m_46922_ + 0 o p_46923_ + a ()Ljava/lang/String; m_46917_ + a (Lcnf;)Lcmq; m_247275_ + 0 o p_250867_ + a (Lcom/mojang/serialization/Dynamic;Lcnf;)Lcmq; m_46924_ + static + 0 o p_46925_ + 1 o p_251697_ + a (Lbdu;)Lcmq; m_46918_ + 0 o p_46919_ + b ()Lcmj; m_46929_ + c ()Z m_46930_ + d ()Lbdu; m_46931_ + e ()Z m_46932_ + f ()Lcmi; m_46933_ + g ()Lcnf; m_246291_ + h ()Lcmq; m_46935_ +cmr net/minecraft/world/level/LevelSimulatedRW +cms net/minecraft/world/level/LevelSimulatedReader + a (Lgu;Ljava/util/function/Predicate;)Z m_7433_ + 0 o p_46938_ + 1 o p_46939_ + a (Ldhk$a;Lgu;)Lgu; m_5452_ + 0 o p_46936_ + 1 o p_46937_ + a (Lgu;Lczp;)Ljava/util/Optional; m_141902_ + 0 o p_151582_ + 1 o p_151583_ + b (Lgu;Ljava/util/function/Predicate;)Z m_142433_ + 0 o p_151584_ + 1 o p_151585_ +cmt net/minecraft/world/level/LevelTimeAccess + ah ()J m_8044_ + an ()F m_46940_ + ao ()I m_46941_ + f (F)F m_46942_ + 0 o p_46943_ +cmu net/minecraft/world/level/LevelWriter + a (Lgu;Ldcb;II)Z m_6933_ + 0 o p_46947_ + 1 o p_46948_ + 2 o p_46949_ + 3 o p_46950_ + a (Lgu;Z)Z m_7471_ + 0 o p_46951_ + 1 o p_46952_ + a (Lgu;ZLbfj;)Z m_46953_ + 0 o p_46954_ + 1 o p_46955_ + 2 o p_46956_ + a (Lgu;Ldcb;I)Z m_7731_ + 0 o p_46944_ + 1 o p_46945_ + 2 o p_46946_ + a (Lgu;ZLbfj;I)Z m_7740_ + 0 o p_46957_ + 1 o p_46958_ + 2 o p_46959_ + 3 o p_46960_ + b (Lbfj;)Z m_7967_ + 0 o p_46964_ + b (Lgu;Z)Z m_46961_ + 0 o p_46962_ + 1 o p_46963_ +cmv net/minecraft/world/level/LightLayer + a SKY + b BLOCK + c $VALUES + ()V + static + (Ljava/lang/String;I)V + 0 o p_278245_ + 1 o p_278287_ + a ()[Lcmv; m_151586_ + static + valueOf (Ljava/lang/String;)Lcmv; valueOf + static + 0 o p_46975_ + values ()[Lcmv; values + static +cmw net/minecraft/world/level/LocalMobCapCalculator + a f_186497_ + b f_186498_ + c f_186499_ + (Lahr;)V + 0 o p_186501_ + a (Lclt;Lbgc;)V m_186512_ + 0 o p_186513_ + 1 o p_186514_ + a (Lclt;)Ljava/util/List; m_186507_ + 0 o p_186508_ + a (Lclt;J)Ljava/util/List; m_186509_ + 0 o p_186510_ + 1 o p_186511_ + a (Laig;)Lcmw$a; m_186502_ + static + 0 o p_186503_ + a (Lbgc;Lclt;)Z m_186504_ + 0 o p_186505_ + 1 o p_186506_ +cmw$a net/minecraft/world/level/LocalMobCapCalculator$MobCounts + a f_186515_ + ()V + a (Lbgc;Ljava/lang/Integer;)Ljava/lang/Integer; m_186519_ + static + 0 o p_186520_ + 1 o p_186521_ + a (Lbgc;)V m_186517_ + 0 o p_186518_ + b (Lbgc;)Z m_186522_ + 0 o p_186523_ +cmx net/minecraft/world/level/NaturalSpawner + a f_151587_ + b f_151588_ + c f_46977_ + d f_151589_ + e f_46978_ + f f_46979_ + ()V + static + ()V + a (Laif;Lddx;Lgu$a;D)Z m_47024_ + static + 0 o p_47025_ + 1 o p_47026_ + 2 o p_47027_ + 3 o p_47028_ + a (Lbgc;Laif;Lgu;)V m_151612_ + static + 0 o p_151613_ + 1 o p_151614_ + 2 o p_151615_ + a (Laif;Lcne;Lddy;Lbgc;Lcnw$c;Lgu;)Z m_220436_ + static + 0 o p_220437_ + 1 o p_220438_ + 2 o p_220439_ + 3 o p_220440_ + 4 o p_220441_ + 5 o p_220442_ + a (Lcmp;Lbfn;II)Lgu; m_47065_ + static + 0 o p_47066_ + 1 o p_47067_ + 2 o p_47068_ + 3 o p_47069_ + a (Lbgc;Laif;Lddx;Lgu;Lcmx$c;Lcmx$a;)V m_47038_ + static + 0 o p_47039_ + 1 o p_47040_ + 2 o p_47041_ + 3 o p_47042_ + 4 o p_47043_ + 5 o p_47044_ + a (Lgu;Lddx;)Lcnk; m_47095_ + static + 0 o p_47096_ + 1 o p_47097_ + a (Lgu;Laif;Lbgc;Lcne;)Z m_220455_ + static + 0 o p_220456_ + 1 o p_220457_ + 2 o p_220458_ + 3 o p_220459_ + a (Lbgc;)Z m_47036_ + static + 0 o p_47037_ + a (Lbgc;Laif;Ldei;Lcmx$c;Lcmx$a;)V m_47045_ + static + 0 o p_47046_ + 1 o p_47047_ + 2 o p_47048_ + 3 o p_47049_ + 4 o p_47050_ + a (Laif;Lcne;Lddy;Lbgc;Lgu;Lhe;)Lbcl; m_220443_ + static + 0 o p_220444_ + 1 o p_220445_ + 2 o p_220446_ + 3 o p_220447_ + 4 o p_220448_ + 5 o p_220449_ + a (Lbgu$c;Lcmp;Lgu;Lbfn;)Z m_47051_ + static + 0 o p_47052_ + 1 o p_47053_ + 2 o p_47054_ + 3 o p_47055_ + a (Lbfn;Lgu;Lddx;)Z m_151605_ + static + 0 o p_151606_ + 1 o p_151607_ + 2 o p_151608_ + a (Lcnb;Lhe;Lclt;Lapf;)V m_220450_ + static + 0 o p_220451_ + 1 o p_220452_ + 2 o p_220453_ + 3 o p_220454_ + a (Laif;Lcne;Lddy;Lbgc;Lapf;Lgu;)Ljava/util/Optional; m_220429_ + static + 0 o p_220430_ + 1 o p_220431_ + 2 o p_220432_ + 3 o p_220433_ + 4 o p_220434_ + 5 o p_220435_ + a (I)[Lbgc; m_46982_ + static + 0 o p_46983_ + a (ILjava/lang/Iterable;Lcmx$b;Lcmw;)Lcmx$d; m_186524_ + static + 0 o p_186525_ + 1 o p_186526_ + 2 o p_186527_ + 3 o p_186528_ + a (Laif;Lbgc;Lcne;Lddy;Lcnw$c;Lgu$a;D)Z m_220421_ + static + 0 o p_220422_ + 1 o p_220423_ + 2 o p_220424_ + 3 o p_220425_ + 4 o p_220426_ + 5 o p_220427_ + 6 o p_220428_ + a (Laif;Lbfn;)Lbgb; m_46988_ + static + 0 o p_46989_ + 1 o p_46990_ + a (Laif;Ldei;Lcmx$d;ZZZ)V m_47029_ + static + 0 o p_47030_ + 1 o p_47031_ + 2 o p_47032_ + 3 o p_47033_ + 4 o p_47034_ + 5 o p_47035_ + a (Lcls;Lgu;Ldcb;Ldxe;Lbfn;)Z m_47056_ + static + 0 o p_47057_ + 1 o p_47058_ + 2 o p_47059_ + 3 o p_47060_ + 4 o p_47061_ + a (Laif;Lbgb;D)Z m_46991_ + static + 0 o p_46992_ + 1 o p_46993_ + 2 o p_46994_ + a (Lcmm;Ldei;)Lgu; m_47062_ + static + 0 o p_47063_ + 1 o p_47064_ + a (Lgu;Lbfj;Lcna;Lcmw;Lbgc;Lit/unimi/dsi/fastutil/objects/Object2IntOpenHashMap;Ldei;)V m_274265_ + static + 0 o p_275157_ + 1 o p_275158_ + 2 o p_275159_ + 3 o p_275160_ + 4 o p_275161_ + 5 o p_275162_ + 6 o p_275163_ + a (Lbgb;Lddx;)V m_151609_ + static + 0 o p_151610_ + 1 o p_151611_ +cmx$1 net/minecraft/world/level/NaturalSpawner$1 + a f_47098_ + ()V + static +cmx$a net/minecraft/world/level/NaturalSpawner$AfterSpawnCallback + run (Lbgb;Lddx;)V m_47100_ + 0 o p_47101_ + 1 o p_47102_ +cmx$b net/minecraft/world/level/NaturalSpawner$ChunkGetter + query (JLjava/util/function/Consumer;)V m_47103_ + 0 o p_47104_ + 1 o p_47105_ +cmx$c net/minecraft/world/level/NaturalSpawner$SpawnPredicate + test (Lbfn;Lgu;Lddx;)Z m_47106_ + 0 o p_47107_ + 1 o p_47108_ + 2 o p_47109_ +cmx$d net/minecraft/world/level/NaturalSpawner$SpawnState + a f_47110_ + b f_47111_ + c f_47112_ + d f_47113_ + e f_186542_ + f f_47114_ + g f_47115_ + h f_47116_ + (ILit/unimi/dsi/fastutil/objects/Object2IntOpenHashMap;Lcna;Lcmw;)V + 0 o p_186544_ + 1 o p_186545_ + 2 o p_186546_ + 3 o p_186547_ + a (Lbfn;Lgu;Lddx;)Z m_47127_ + 0 o p_47128_ + 1 o p_47129_ + 2 o p_47130_ + a ()I m_47126_ + a (Lbgb;Lddx;)V m_47131_ + 0 o p_47132_ + 1 o p_47133_ + a (Lbgc;Lclt;)Z m_186548_ + 0 o p_186549_ + 1 o p_186550_ + b ()Lit/unimi/dsi/fastutil/objects/Object2IntMap; m_47148_ +cmy net/minecraft/world/level/NoiseColumn + a f_151621_ + b f_47149_ + (I[Ldcb;)V + 0 o p_151623_ + 1 o p_151624_ + a (I)Ldcb; m_183556_ + 0 o p_186552_ + a (ILdcb;)V m_183639_ + 0 o p_186554_ + 1 o p_186555_ +cmz net/minecraft/world/level/PathNavigationRegion + a f_47158_ + b f_47159_ + c f_47160_ + d f_47161_ + e f_47162_ + f f_204180_ + (Lcmm;Lgu;Lgu;)V + 0 o p_47164_ + 1 o p_47165_ + 2 o p_47166_ + C_ ()I m_141937_ + D_ ()I m_141928_ + a ()Lban; m_151625_ + a (Lcmm;)Lhe; m_268982_ + static + 0 o p_270044_ + a (II)Lddx; m_47167_ + 0 o p_47168_ + 1 o p_47169_ + a_ (Lgu;)Ldcb; m_8055_ + 0 o p_47188_ + b (Lbfj;Leed;)Ljava/util/List; m_183134_ + 0 o p_186557_ + 1 o p_186558_ + b_ (Lgu;)Ldxe; m_6425_ + 0 o p_47171_ + c (II)Lcls; m_7925_ + 0 o p_47173_ + 1 o p_47174_ + c_ (Lgu;)Lczn; m_7702_ + 0 o p_47180_ + d (Lgu;)Lddx; m_47185_ + 0 o p_47186_ + w_ ()Ldds; m_6857_ +cn net/minecraft/advancements/critereon/PlayerHurtEntityTrigger + a f_60108_ + ()V + static + ()V + a (Laig;Lbfj;Lben;FFZ)V m_60112_ + 0 o p_60113_ + 1 o p_60114_ + 2 o p_60115_ + 3 o p_60116_ + 4 o p_60117_ + 5 o p_60118_ + a (Laig;Ldzk;Lben;FFZLcn$a;)Z m_60119_ + static + 0 o p_60120_ + 1 o p_60121_ + 2 o p_60122_ + 3 o p_60123_ + 4 o p_60124_ + 5 o p_60125_ + 6 o p_60126_ + a ()Lacq; m_7295_ + a (Lcom/google/gson/JsonObject;Lba;Lbe;)Lcn$a; m_7214_ + 0 o p_286442_ + 1 o p_286426_ + 2 o p_286750_ + b (Lcom/google/gson/JsonObject;Lba;Lbe;)Lar; m_7214_ + 0 o p_286651_ + 1 o p_286498_ + 2 o p_286328_ +cn$a net/minecraft/advancements/critereon/PlayerHurtEntityTrigger$TriggerInstance + a f_60136_ + b f_60137_ + (Lba;Lbc;Lba;)V + 0 o p_286866_ + 1 o p_286225_ + 2 o p_286266_ + a (Lbc;)Lcn$a; m_156061_ + static + 0 o p_156062_ + a (Lbc;Lbo;)Lcn$a; m_156063_ + static + 0 o p_156064_ + 1 o p_156065_ + a (Lct;)Lcom/google/gson/JsonObject; m_7683_ + 0 o p_60152_ + a (Laig;Ldzk;Lben;FFZ)Z m_60142_ + 0 o p_60143_ + 1 o p_60144_ + 2 o p_60145_ + 3 o p_60146_ + 4 o p_60147_ + 5 o p_60148_ + a (Lbc$a;)Lcn$a; m_60149_ + static + 0 o p_60150_ + a (Lbo;)Lcn$a; m_156066_ + static + 0 o p_156067_ + a (Lbc$a;Lbo;)Lcn$a; m_156058_ + static + 0 o p_156059_ + 1 o p_156060_ + c ()Lcn$a; m_156068_ + static +cna net/minecraft/world/level/PotentialCalculator + a f_47190_ + ()V + a (Lgu;D)V m_47192_ + 0 o p_47193_ + 1 o p_47194_ + b (Lgu;D)D m_47195_ + 0 o p_47196_ + 1 o p_47197_ +cna$a net/minecraft/world/level/PotentialCalculator$PointCharge + a f_47198_ + b f_47199_ + (Lgu;D)V + 0 o p_47201_ + 1 o p_47202_ + a (Lgu;)D m_47203_ + 0 o p_47204_ +cnb net/minecraft/world/level/ServerLevelAccessor + C ()Laif; m_6018_ + a_ (Lbfj;)V m_47205_ + 0 o p_47206_ +cnc net/minecraft/world/level/SignalGetter + C f_276432_ + ()V + static + B (Lgu;)Z m_276867_ + 0 o p_277626_ + C (Lgu;)I m_277086_ + 0 o p_277977_ + a (Lgu;Lha;Z)I m_277094_ + 0 o p_277757_ + 1 o p_278104_ + 2 o p_277707_ + a (Lgu;Lha;)I m_277075_ + 0 o p_277954_ + 1 o p_277342_ + b (Lgu;Lha;)Z m_276987_ + 0 o p_277371_ + 1 o p_277391_ + c (Lgu;Lha;)I m_277185_ + 0 o p_277961_ + 1 o p_277351_ + e_ (Lgu;)I m_277173_ + 0 o p_277959_ +cnd net/minecraft/world/level/SpawnData + a f_254695_ + b f_186559_ + c f_186560_ + d f_186561_ + e f_186562_ + ()V + static + (Lqr;Ljava/util/Optional;)V + 0 o f_186561_ + 1 o f_186562_ + ()V + a ()Lqr; m_186567_ + a (Lcnd;)Ljava/util/Optional; m_186568_ + static + 0 o p_186569_ + a (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; m_186570_ + static + 0 o p_186571_ + b ()Ljava/util/Optional; m_186574_ + b (Lcnd;)Lqr; m_186575_ + static + 0 o p_186576_ + c ()Lqr; f_186561_ + d ()Ljava/util/Optional; f_186562_ + equals (Ljava/lang/Object;)Z equals + 0 o p_186580_ + hashCode ()I hashCode + toString ()Ljava/lang/String; toString +cnd$a net/minecraft/world/level/SpawnData$CustomSpawnRules + a f_186583_ + b f_186584_ + c f_186585_ + d f_186586_ + ()V + static + (Laot;Laot;)V + 0 o f_186584_ + 1 o f_186585_ + a ()Laot; f_186584_ + a (Laot;)Lcom/mojang/serialization/DataResult; m_186592_ + static + 0 o p_186593_ + a (Ljava/lang/String;)Lcom/mojang/serialization/MapCodec; m_285810_ + static + 0 o p_286409_ + a (Lcnd$a;)Laot; m_186594_ + static + 0 o p_186595_ + a (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; m_285731_ + static + 0 o p_286217_ + b ()Laot; f_186585_ + b (Lcnd$a;)Laot; m_186599_ + static + 0 o p_186600_ + c ()Ljava/lang/String; m_274266_ + static + equals (Ljava/lang/Object;)Z equals + 0 o p_186602_ + hashCode ()I hashCode + toString ()Ljava/lang/String; toString +cne net/minecraft/world/level/StructureManager + a f_220460_ + b f_244109_ + c f_220462_ + (Lcmn;Ldii;Ldsb;)V + 0 o p_249675_ + 1 o p_248820_ + 2 o p_249103_ + a (Lgu;)Z m_220486_ + 0 o p_220487_ + a (Lgu;Lacp;)Ldsi; m_220488_ + 0 o p_220489_ + 1 o p_220490_ + a (Lanl;Lhe$c;)Ljava/lang/Boolean; m_244994_ + static + 0 o p_248424_ + 1 o p_248425_ + a (Laim;)Lcne; m_220468_ + 0 o p_220469_ + a (Lclt;Ljava/util/function/Predicate;)Ljava/util/List; m_220477_ + 0 o p_220478_ + 1 o p_220479_ + a (Lhx;Ldsa;)Ljava/util/List; m_220504_ + 0 o p_220505_ + 1 o p_220506_ + a (Ldsa;Lit/unimi/dsi/fastutil/longs/LongSet;Ljava/util/function/Consumer;)V m_220480_ + 0 o p_220481_ + 1 o p_220482_ + 2 o p_220483_ + a (Ldsi;)V m_220484_ + 0 o p_220485_ + a (Lhx;Ldsa;Ldeu;)Ldsi; m_220512_ + 0 o p_220513_ + 1 o p_220514_ + 2 o p_220515_ + a ()Z m_220467_ + a (Lgu;Ldsa;)Ldsi; m_220494_ + 0 o p_220495_ + 1 o p_220496_ + a (Lhx;Ldsa;Ldsi;Ldeu;)V m_220516_ + 0 o p_220517_ + 1 o p_220518_ + 2 o p_220519_ + 3 o p_220520_ + a (Lhx;Ldsa;JLdeu;)V m_220507_ + 0 o p_220508_ + 1 o p_220509_ + 2 o p_220510_ + 3 o p_220511_ + a (Lclt;Ldsa;Z)Ldsc; m_220473_ + 0 o p_220474_ + 1 o p_220475_ + 2 o p_220476_ + a (Lgu;Lanl;)Ldsi; m_220491_ + 0 o p_220492_ + 1 o p_220493_ + a (Lhr;Lanl;Ldsa;)Z m_257323_ + static + 0 o p_258965_ + 1 o p_258966_ + 2 o p_258967_ + a (Lgu;Ldsi;)Z m_220497_ + 0 o p_220498_ + 1 o p_220499_ + b ()Lhs; m_220521_ + b (Lgu;)Ljava/util/Map; m_220522_ + 0 o p_220523_ + b (Lgu;Ldsa;)Ldsi; m_220524_ + 0 o p_220525_ + 1 o p_220526_ +cnf net/minecraft/world/level/WorldDataConfiguration + a f_243757_ + b f_244621_ + c f_244649_ + d f_244096_ + e f_243973_ + ()V + static + (Lcma;Lcaw;)V + 0 o f_244096_ + 1 o f_243973_ + a ()Lcma; f_244096_ + a (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; m_247068_ + static + 0 o p_249474_ + a (Lcaw;)Lcnf; m_245801_ + 0 o p_249090_ + b ()Lcaw; f_243973_ + equals (Ljava/lang/Object;)Z equals + 0 o p_251210_ + hashCode ()I hashCode + toString ()Ljava/lang/String; toString +cng net/minecraft/world/level/WorldGenLevel + A ()J m_7328_ + a (Ljava/util/function/Supplier;)V m_143497_ + 0 o p_186618_ + f_ (Lgu;)Z m_180807_ + 0 o p_181157_ +cnh net/minecraft/world/level/biome/AmbientAdditionsSettings + a f_47371_ + b f_47372_ + c f_47373_ + ()V + static + (Lhe;D)V + 0 o p_263329_ + 1 o p_263326_ + a ()Lhe; m_263205_ + a (Lcnh;)Ljava/lang/Double; m_151639_ + static + 0 o p_151640_ + a (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; m_263165_ + static + 0 o p_47382_ + b (Lcnh;)Lhe; m_263164_ + static + 0 o p_151642_ + b ()D m_47383_ +cni net/minecraft/world/level/biome/AmbientMoodSettings + a f_47386_ + b f_47387_ + c f_47388_ + d f_47389_ + e f_47390_ + f f_47391_ + ()V + static + (Lhe;IID)V + 0 o p_263350_ + 1 o p_263364_ + 2 o p_263333_ + 3 o p_263345_ + a ()Lhe; m_263199_ + a (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; m_263167_ + static + 0 o p_47402_ + a (Lcni;)Ljava/lang/Double; m_151643_ + static + 0 o p_151644_ + b (Lcni;)Ljava/lang/Integer; m_151645_ + static + 0 o p_151646_ + b ()I m_47403_ + c ()I m_47406_ + c (Lcni;)Ljava/lang/Integer; m_151647_ + static + 0 o p_151648_ + d ()D m_47409_ + d (Lcni;)Lhe; m_263166_ + static + 0 o p_151650_ +cnj net/minecraft/world/level/biome/AmbientParticleSettings + a f_47412_ + b f_47413_ + c f_47414_ + ()V + static + (Lit;F)V + 0 o p_47417_ + 1 o p_47418_ + a ()Lit; m_47419_ + a (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; m_47422_ + static + 0 o p_47423_ + a (Lcnj;)Ljava/lang/Float; m_151651_ + static + 0 o p_151652_ + a (Lapf;)Z m_220527_ + 0 o p_220528_ + b (Lcnj;)Lit; m_151653_ + static + 0 o p_151654_ +cnk net/minecraft/world/level/biome/Biome + a f_47429_ + b f_47430_ + c f_47431_ + d f_47432_ + e f_47433_ + f f_47435_ + g f_47436_ + h f_151655_ + i f_47437_ + j f_47438_ + k f_47439_ + l f_47443_ + m f_47444_ + ()V + static + (Lcnk$b;Lcnq;Lcnl;Lcnw;)V + 0 o p_220530_ + 1 o p_220531_ + 2 o p_220532_ + 3 o p_220533_ + a (Lcnk$b;Lcnq;)Lcnk; m_220534_ + static + 0 o p_220535_ + 1 o p_220536_ + a ()I m_47463_ + a (Lgu;)Lcnk$c; m_264600_ + 0 o p_265163_ + a (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; m_220539_ + static + 0 o p_220540_ + a (Lcnk;)Lcnq; m_220537_ + static + 0 o p_220538_ + a (Lcmp;Lgu;Z)Z m_47480_ + 0 o p_47481_ + 1 o p_47482_ + 2 o p_47483_ + a (Lcmp;Lgu;)Z m_47477_ + 0 o p_47478_ + 1 o p_47479_ + a (DD)I m_47464_ + 0 o p_47465_ + 1 o p_47466_ + b (Lcnk;)Lcnk$b; m_220541_ + static + 0 o p_220542_ + b (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; m_220543_ + static + 0 o p_220544_ + b ()Lcnw; m_47518_ + b (Lgu;)Z m_198904_ + 0 o p_198905_ + b (Lcmp;Lgu;)Z m_47519_ + 0 o p_47520_ + 1 o p_47521_ + c (Lcnk;)Lcnw; m_220545_ + static + 0 o p_220546_ + c ()Z m_264473_ + c (Lgu;)Z m_198906_ + 0 o p_198907_ + d ()Lcnl; m_47536_ + d (Lcnk;)Lcnl; m_220547_ + static + 0 o p_220548_ + d (Lgu;)Z m_198908_ + 0 o p_198909_ + e (Lgu;)F m_47528_ + 0 o p_47529_ + e ()I m_47539_ + e (Lcnk;)Lcnq; m_220549_ + static + 0 o p_220550_ + f (Lgu;)F m_47505_ + 0 o p_47506_ + f (Lcnk;)Lcnk$b; m_151716_ + static + 0 o p_151717_ + f ()I m_47542_ + g ()F m_47554_ + h ()Lcnq; m_47557_ + i ()I m_47560_ + j ()I m_47561_ + k ()Ljava/util/Optional; m_47562_ + l ()Ljava/util/Optional; m_47563_ + m ()Ljava/util/Optional; m_47564_ + n ()Ljava/util/Optional; m_47565_ + o ()Ljava/util/Optional; m_47566_ + p ()I m_47570_ + q ()I m_47571_ + r ()Lit/unimi/dsi/fastutil/longs/Long2FloatLinkedOpenHashMap; m_220551_ + s ()Lit/unimi/dsi/fastutil/longs/Long2FloatLinkedOpenHashMap; m_220552_ +cnk$1 net/minecraft/world/level/biome/Biome$1 + a f_47574_ + (Lcnk;IF)V + 0 o p_47576_ + 1 o p_47577_ + 2 o p_47578_ + rehash (I)V rehash + 0 o p_47580_ +cnk$a net/minecraft/world/level/biome/Biome$BiomeBuilder + a f_263814_ + b f_47585_ + c f_47586_ + d f_47587_ + e f_47588_ + f f_47589_ + g f_47590_ + ()V + a (F)Lcnk$a; m_47609_ + 0 o p_47610_ + a (Lcnl;)Lcnk$a; m_47601_ + 0 o p_47602_ + a (Lcnk$d;)Lcnk$a; m_47599_ + 0 o p_47600_ + a (Lcnq;)Lcnk$a; m_47603_ + 0 o p_47604_ + a ()Lcnk; m_47592_ + a (Z)Lcnk$a; m_264558_ + 0 o p_265480_ + a (Lcnw;)Lcnk$a; m_47605_ + 0 o p_47606_ + b (F)Lcnk$a; m_47611_ + 0 o p_47612_ + toString ()Ljava/lang/String; toString +cnk$b net/minecraft/world/level/biome/Biome$ClimateSettings + a f_47679_ + b f_263819_ + c f_47681_ + d f_47682_ + e f_47683_ + ()V + static + (ZFLcnk$d;F)V + 0 o f_263819_ + 1 o f_47681_ + 2 o f_47682_ + 3 o f_47683_ + a ()Z f_263819_ + a (Lcnk$b;)Ljava/lang/Float; m_151732_ + static + 0 o p_151733_ + a (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; m_264019_ + static + 0 o p_264995_ + b (Lcnk$b;)Lcnk$d; m_151734_ + static + 0 o p_151735_ + b ()F f_47681_ + c ()Lcnk$d; f_47682_ + c (Lcnk$b;)Ljava/lang/Float; m_151736_ + static + 0 o p_151737_ + d (Lcnk$b;)Ljava/lang/Boolean; m_264020_ + static + 0 o p_264996_ + d ()F f_47683_ + equals (Ljava/lang/Object;)Z equals + 0 o p_220558_ + hashCode ()I hashCode + toString ()Ljava/lang/String; toString +cnk$c net/minecraft/world/level/biome/Biome$Precipitation + a NONE + b RAIN + c SNOW + d $VALUES + ()V + static + (Ljava/lang/String;I)V + 0 o p_265396_ + 1 o p_265696_ + a ()[Lcnk$c; m_151740_ + static + valueOf (Ljava/lang/String;)Lcnk$c; valueOf + static + 0 o p_47733_ + values ()[Lcnk$c; values + static +cnk$d net/minecraft/world/level/biome/Biome$TemperatureModifier + a NONE + b FROZEN + c f_47737_ + d f_47738_ + e $VALUES + ()V + static + (Ljava/lang/String;ILjava/lang/String;)V + 0 o p_47743_ + 1 o p_47744_ + 2 o p_47745_ + a ()Ljava/lang/String; m_47758_ + a (Lgu;F)F m_8117_ + 0 o p_47754_ + 1 o p_47755_ + b ()[Lcnk$d; m_151741_ + static + c ()Ljava/lang/String; m_7912_ + valueOf (Ljava/lang/String;)Lcnk$d; valueOf + static + 0 o p_47760_ + values ()[Lcnk$d; values + static +cnk$d$1 net/minecraft/world/level/biome/Biome$TemperatureModifier$1 + (Ljava/lang/String;ILjava/lang/String;)V + 0 o p_47763_ + 1 o p_47764_ + 2 o p_47765_ + a (Lgu;F)F m_8117_ + 0 o p_47767_ + 1 o p_47768_ +cnk$d$2 net/minecraft/world/level/biome/Biome$TemperatureModifier$2 + (Ljava/lang/String;ILjava/lang/String;)V + 0 o p_47770_ + 1 o p_47771_ + 2 o p_47772_ + a (Lgu;F)F m_8117_ + 0 o p_47774_ + 1 o p_47775_ +cnl net/minecraft/world/level/biome/BiomeGenerationSettings + a f_47777_ + b f_47778_ + c f_47776_ + d f_47780_ + e f_47781_ + f f_47783_ + g f_186648_ + ()V + static + (Ljava/util/Map;Ljava/util/List;)V + 0 o p_186650_ + 1 o p_186651_ + a (Ldhg$a;)Ljava/lang/Iterable; m_204187_ + 0 o p_204188_ + a ()Ljava/util/List; m_47815_ + a (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; m_186654_ + static + 0 o p_186655_ + a (Ldre;)Z m_186658_ + 0 o p_186659_ + a (Ldkb;)Z m_186656_ + static + 0 o p_186657_ + a (Ljava/util/List;)Ljava/util/Set; m_204189_ + static + 0 o p_204190_ + a (Lcnl;)Ljava/util/List; m_186652_ + static + 0 o p_186653_ + b (Ljava/util/List;)Ljava/util/List; m_204191_ + static + 0 o p_204192_ + b ()Ljava/util/List; m_47818_ + b (Lcnl;)Ljava/util/Map; m_186660_ + static + 0 o p_186661_ +cnl$a net/minecraft/world/level/biome/BiomeGenerationSettings$Builder + a f_254679_ + b f_254731_ + (Lhf;Lhf;)V + 0 o p_255774_ + 1 o p_256003_ + a (Ldhg$b;Lacp;)Lcnl$a; m_255155_ + 0 o p_256059_ + 1 o p_256259_ + a (Ldhg$a;Lacp;)Lcnl$a; m_255308_ + 0 o p_256471_ + 1 o p_255733_ +cnl$b net/minecraft/world/level/biome/BiomeGenerationSettings$PlainBuilder + a f_254678_ + b f_254648_ + ()V + a (Ljava/util/Map$Entry;)Lhi; m_255250_ + static + 0 o p_255831_ + a (Ldhg$b;Lhe;)Lcnl$b; m_255419_ + 0 o p_256360_ + 1 o p_256577_ + a (I)V m_255276_ + 0 o p_256411_ + a (ILhe;)Lcnl$b; m_254982_ + 0 o p_256305_ + 1 o p_255636_ + a (Ldhg$a;Lhe;)Lcnl$b; m_254863_ + 0 o p_256091_ + 1 o p_256082_ + a ()Lcnl; m_255380_ + a (Ldhg$a;)Ljava/util/List; m_255277_ + static + 0 o p_256199_ +cnm net/minecraft/world/level/biome/BiomeManager + a f_151750_ + b f_186673_ + c f_186674_ + d f_186675_ + e f_47862_ + f f_47863_ + ()V + static + (Lcnm$a;J)V + 0 o p_186677_ + 1 o p_186678_ + a (III)Lhe; m_204210_ + 0 o p_204211_ + 1 o p_204212_ + 2 o p_204213_ + a (DDD)Lhe; m_204206_ + 0 o p_204207_ + 1 o p_204208_ + 2 o p_204209_ + a (Lgu;)Lhe; m_204214_ + 0 o p_204215_ + a (J)J m_47877_ + static + 0 o p_47878_ + a (Lcnm$a;)Lcnm; m_186687_ + 0 o p_186688_ + a (JIIIDDD)D m_186679_ + static + 0 o p_186680_ + 1 o p_186681_ + 2 o p_186682_ + 3 o p_186683_ + 4 o p_186684_ + 5 o p_186685_ + 6 o p_186686_ + b (J)D m_186689_ + static + 0 o p_186690_ + b (Lgu;)Lhe; m_204216_ + 0 o p_204217_ +cnm$a net/minecraft/world/level/biome/BiomeManager$NoiseBiomeSource + getNoiseBiome (III)Lhe; m_203495_ + 0 o p_204218_ + 1 o p_204219_ + 2 o p_204220_ +cnn net/minecraft/world/level/biome/BiomeResolver + getNoiseBiome (IIILcnt$f;)Lhe; m_203407_ + 0 o p_204221_ + 1 o p_204222_ + 2 o p_204223_ + 3 o p_204224_ +cno net/minecraft/world/level/biome/BiomeSource + a f_47888_ + b f_47891_ + ()V + static + ()V + a ()Lcom/mojang/serialization/Codec; m_5820_ + a (IIIIILjava/util/function/Predicate;Lapf;ZLcnt$f;)Lcom/mojang/datafixers/util/Pair; m_213971_ + 0 o p_220561_ + 1 o p_220562_ + 2 o p_220563_ + 3 o p_220564_ + 4 o p_220565_ + 5 o p_220566_ + 6 o p_220567_ + 7 o p_220568_ + 8 o p_220569_ + a (Ljava/util/List;Lgu;Lcnt$f;)V m_207301_ + 0 o p_207837_ + 1 o p_207838_ + 2 o p_207839_ + a (Lgu;IIILjava/util/function/Predicate;Lcnt$f;Lcmp;)Lcom/mojang/datafixers/util/Pair; m_214004_ + 0 o p_220578_ + 1 o p_220579_ + 2 o p_220580_ + 3 o p_220581_ + 4 o p_220582_ + 5 o p_220583_ + 6 o p_220584_ + a (IIIILcnt$f;)Ljava/util/Set; m_183399_ + 0 o p_186705_ + 1 o p_186706_ + 2 o p_186707_ + 3 o p_186708_ + 4 o p_186709_ + a (IIIILjava/util/function/Predicate;Lapf;Lcnt$f;)Lcom/mojang/datafixers/util/Pair; m_220570_ + 0 o p_220571_ + 1 o p_220572_ + 2 o p_220573_ + 3 o p_220574_ + 4 o p_220575_ + 5 o p_220576_ + 6 o p_220577_ + b ()Ljava/util/stream/Stream; m_274359_ + c ()Ljava/util/Set; m_207840_ + d ()Ljava/util/Set; m_274508_ + getNoiseBiome (IIILcnt$f;)Lhe; m_203407_ + 0 o p_204238_ + 1 o p_204239_ + 2 o p_204240_ + 3 o p_204241_ +cnp net/minecraft/world/level/biome/BiomeSources + ()V + a (Lhr;)Lcom/mojang/serialization/Codec; m_220586_ + static + 0 o p_220587_ +cnq net/minecraft/world/level/biome/BiomeSpecialEffects + a f_47926_ + b f_47927_ + c f_47928_ + d f_47929_ + e f_47930_ + f f_47931_ + g f_47932_ + h f_47933_ + i f_47934_ + j f_47935_ + k f_47936_ + l f_47937_ + m f_47938_ + ()V + static + (IIIILjava/util/Optional;Ljava/util/Optional;Lcnq$b;Ljava/util/Optional;Ljava/util/Optional;Ljava/util/Optional;Ljava/util/Optional;Ljava/util/Optional;)V + 0 o p_47941_ + 1 o p_47942_ + 2 o p_47943_ + 3 o p_47944_ + 4 o p_47945_ + 5 o p_47946_ + 6 o p_47947_ + 7 o p_47948_ + 8 o p_47949_ + 9 o p_47950_ + 10 o p_47951_ + 11 o p_47952_ + a ()I m_47967_ + a (Lcnq;)Ljava/util/Optional; m_151759_ + static + 0 o p_151760_ + a (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; m_47970_ + static + 0 o p_47971_ + b (Lcnq;)Ljava/util/Optional; m_151761_ + static + 0 o p_151762_ + b ()I m_47972_ + c ()I m_47975_ + c (Lcnq;)Ljava/util/Optional; m_151763_ + static + 0 o p_151764_ + d (Lcnq;)Ljava/util/Optional; m_151765_ + static + 0 o p_151766_ + d ()I m_47978_ + e (Lcnq;)Ljava/util/Optional; m_151767_ + static + 0 o p_151768_ + e ()Ljava/util/Optional; m_47981_ + f (Lcnq;)Lcnq$b; m_151769_ + static + 0 o p_151770_ + f ()Ljava/util/Optional; m_47984_ + g ()Lcnq$b; m_47987_ + g (Lcnq;)Ljava/util/Optional; m_151771_ + static + 0 o p_151772_ + h ()Ljava/util/Optional; m_47990_ + h (Lcnq;)Ljava/util/Optional; m_151773_ + static + 0 o p_151774_ + i ()Ljava/util/Optional; m_47993_ + i (Lcnq;)Ljava/lang/Integer; m_151775_ + static + 0 o p_151776_ + j (Lcnq;)Ljava/lang/Integer; m_151777_ + static + 0 o p_151778_ + j ()Ljava/util/Optional; m_47996_ + k ()Ljava/util/Optional; m_47999_ + k (Lcnq;)Ljava/lang/Integer; m_151779_ + static + 0 o p_151780_ + l (Lcnq;)Ljava/lang/Integer; m_151781_ + static + 0 o p_151782_ + l ()Ljava/util/Optional; m_48002_ +cnq$a net/minecraft/world/level/biome/BiomeSpecialEffects$Builder + a f_48005_ + b f_48006_ + c f_48007_ + d f_48008_ + e f_48009_ + f f_48010_ + g f_48011_ + h f_48012_ + i f_48013_ + j f_48014_ + k f_48015_ + l f_48016_ + ()V + a ()Lcnq; m_48018_ + a (Lcnh;)Lcnq$a; m_48025_ + 0 o p_48026_ + a (Lcnj;)Lcnq$a; m_48029_ + 0 o p_48030_ + a (Lcni;)Lcnq$a; m_48027_ + 0 o p_48028_ + a (Lhe;)Lcnq$a; m_48023_ + 0 o p_263327_ + a (Lcnq$b;)Lcnq$a; m_48031_ + 0 o p_48032_ + a (Lame;)Lcnq$a; m_48021_ + 0 o p_48022_ + a (I)Lcnq$a; m_48019_ + 0 o p_48020_ + b ()Ljava/lang/IllegalStateException; m_48033_ + static + b (I)Lcnq$a; m_48034_ + 0 o p_48035_ + c ()Ljava/lang/IllegalStateException; m_48036_ + static + c (I)Lcnq$a; m_48037_ + 0 o p_48038_ + d ()Ljava/lang/IllegalStateException; m_48039_ + static + d (I)Lcnq$a; m_48040_ + 0 o p_48041_ + e ()Ljava/lang/IllegalStateException; m_48042_ + static + e (I)Lcnq$a; m_48043_ + 0 o p_48044_ + f (I)Lcnq$a; m_48045_ + 0 o p_48046_ +cnq$b net/minecraft/world/level/biome/BiomeSpecialEffects$GrassColorModifier + a NONE + b DARK_FOREST + c SWAMP + d f_48050_ + e f_48051_ + f $VALUES + ()V + static + (Ljava/lang/String;ILjava/lang/String;)V + 0 o p_48056_ + 1 o p_48057_ + 2 o p_48058_ + a ()Ljava/lang/String; m_48072_ + a (DDI)I m_6583_ + 0 o p_48065_ + 1 o p_48066_ + 2 o p_48067_ + b ()[Lcnq$b; m_151783_ + static + c ()Ljava/lang/String; m_7912_ + valueOf (Ljava/lang/String;)Lcnq$b; valueOf + static + 0 o p_48074_ + values ()[Lcnq$b; values + static +cnq$b$1 net/minecraft/world/level/biome/BiomeSpecialEffects$GrassColorModifier$1 + (Ljava/lang/String;ILjava/lang/String;)V + 0 o p_48077_ + 1 o p_48078_ + 2 o p_48079_ + a (DDI)I m_6583_ + 0 o p_48081_ + 1 o p_48082_ + 2 o p_48083_ +cnq$b$2 net/minecraft/world/level/biome/BiomeSpecialEffects$GrassColorModifier$2 + (Ljava/lang/String;ILjava/lang/String;)V + 0 o p_48085_ + 1 o p_48086_ + 2 o p_48087_ + a (DDI)I m_6583_ + 0 o p_48089_ + 1 o p_48090_ + 2 o p_48091_ +cnq$b$3 net/minecraft/world/level/biome/BiomeSpecialEffects$GrassColorModifier$3 + (Ljava/lang/String;ILjava/lang/String;)V + 0 o p_48093_ + 1 o p_48094_ + 2 o p_48095_ + a (DDI)I m_6583_ + 0 o p_48097_ + 1 o p_48098_ + 2 o p_48099_ +cnr net/minecraft/world/level/biome/Biomes + A f_48159_ + B f_48194_ + C f_186753_ + D f_186754_ + E f_271432_ + F f_186755_ + G f_186756_ + H f_186757_ + I f_186758_ + J f_186759_ + K f_48208_ + L f_48212_ + M f_48217_ + N f_48148_ + O f_186760_ + P f_48166_ + Q f_48167_ + R f_48170_ + S f_48174_ + T f_48225_ + U f_48168_ + V f_48171_ + W f_48211_ + X f_48172_ + Y f_48215_ + Z f_151784_ + a f_48173_ + aa f_151785_ + ab f_220594_ + ac f_48209_ + ad f_48201_ + ae f_48200_ + af f_48199_ + ag f_48175_ + ah f_48210_ + ai f_48164_ + aj f_48163_ + ak f_48162_ + al f_48165_ + b f_48202_ + c f_48176_ + d f_186761_ + e f_48182_ + f f_48203_ + g f_48207_ + h f_220595_ + i f_48205_ + j f_48179_ + k f_48149_ + l f_48151_ + m f_186762_ + n f_186763_ + o f_186764_ + p f_48206_ + q f_48152_ + r f_48157_ + s f_48158_ + t f_186765_ + u f_186766_ + v f_186767_ + w f_186768_ + x f_48222_ + y f_186769_ + z f_48197_ + ()V + static + ()V + a (Ljava/lang/String;)Lacp; m_48228_ + static + 0 o p_48229_ +cns net/minecraft/world/level/biome/CheckerboardColumnBiomeSource + b f_48230_ + c f_48231_ + d f_48232_ + e f_48233_ + ()V + static + (Lhi;I)V + 0 o p_204243_ + 1 o p_204244_ + a ()Lcom/mojang/serialization/Codec; m_5820_ + a (Lcns;)Ljava/lang/Integer; m_151787_ + static + 0 o p_151788_ + a (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; m_48243_ + static + 0 o p_48244_ + b ()Ljava/util/stream/Stream; m_274359_ + b (Lcns;)Lhi; m_204245_ + static + 0 o p_204246_ + getNoiseBiome (IIILcnt$f;)Lhe; m_203407_ + 0 o p_204248_ + 1 o p_204249_ + 2 o p_204250_ + 3 o p_204251_ +cnt net/minecraft/world/level/biome/Climate + a f_186775_ + b f_186776_ + c f_186777_ + ()V + a (FFFFFFF)Lcnt$d; m_186788_ + static + 0 o p_186789_ + 1 o p_186790_ + 2 o p_186791_ + 3 o p_186792_ + 4 o p_186793_ + 5 o p_186794_ + 6 o p_186795_ + a (FFFFFF)Lcnt$h; m_186781_ + static + 0 o p_186782_ + 1 o p_186783_ + 2 o p_186784_ + 3 o p_186785_ + 4 o p_186786_ + 5 o p_186787_ + a ()Lcnt$f; m_207841_ + static + a (F)J m_186779_ + static + 0 o p_186780_ + a (J)F m_186796_ + static + 0 o p_186797_ + a (Lcnt$b;Lcnt$b;Lcnt$b;Lcnt$b;Lcnt$b;Lcnt$b;F)Lcnt$d; m_186798_ + static + 0 o p_186799_ + 1 o p_186800_ + 2 o p_186801_ + 3 o p_186802_ + 4 o p_186803_ + 5 o p_186804_ + 6 o p_186805_ + a (Ljava/util/List;Lcnt$f;)Lgu; m_207842_ + static + 0 o p_207843_ + 1 o p_207844_ +cnt$a net/minecraft/world/level/biome/Climate$DistanceMetric + distance (Lcnt$e$b;[J)J m_186809_ + 0 o p_186810_ + 1 o p_186811_ +cnt$b net/minecraft/world/level/biome/Climate$Parameter + a f_186812_ + b f_186813_ + c f_186814_ + ()V + static + (JJ)V + 0 o f_186813_ + 1 o f_186814_ + a (F)Lcnt$b; m_186820_ + static + 0 o p_186821_ + a (Ljava/lang/Float;Ljava/lang/Float;)Lcom/mojang/serialization/DataResult; m_274267_ + static + 0 o p_275164_ + 1 o p_275165_ + a ()J f_186813_ + a (Lcnt$b;Lcnt$b;)Lcnt$b; m_186829_ + static + 0 o p_186830_ + 1 o p_186831_ + a (FF)Lcnt$b; m_186822_ + static + 0 o p_186823_ + 1 o p_186824_ + a (J)J m_186825_ + 0 o p_186826_ + a (Lcnt$b;)J m_186827_ + 0 o p_186828_ + b ()J f_186814_ + b (Ljava/lang/Float;Ljava/lang/Float;)Ljava/lang/String; m_274268_ + static + 0 o p_275166_ + 1 o p_275167_ + b (Lcnt$b;)Lcnt$b; m_186836_ + 0 o p_186837_ + c (Lcnt$b;)Ljava/lang/Float; m_186838_ + static + 0 o p_186839_ + d (Lcnt$b;)Ljava/lang/Float; m_186840_ + static + 0 o p_186841_ + equals (Ljava/lang/Object;)Z equals + 0 o p_186843_ + hashCode ()I hashCode + toString ()Ljava/lang/String; toString +cnt$c net/minecraft/world/level/biome/Climate$ParameterList + a f_186846_ + b f_186847_ + (Ljava/util/List;)V + 0 o p_186849_ + a (Lcnt$h;)Ljava/lang/Object; m_204252_ + 0 o p_204253_ + a (Lcom/mojang/serialization/MapCodec;Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; m_274448_ + static + 0 o p_275562_ + 1 o p_275233_ + a ()Ljava/util/List; m_186850_ + a (Lcnt$h;Lcnt$a;)Ljava/lang/Object; m_186853_ + 0 o p_186854_ + 1 o p_186855_ + a (Lcom/mojang/serialization/MapCodec;)Lcom/mojang/serialization/Codec; m_274436_ + static + 0 o p_275523_ + b (Lcnt$h;)Ljava/lang/Object; m_204254_ + 0 o p_204255_ + c (Lcnt$h;)Ljava/lang/Object; m_186851_ + 0 o p_186852_ +cnt$d net/minecraft/world/level/biome/Climate$ParameterPoint + a f_186862_ + b f_186863_ + c f_186864_ + d f_186865_ + e f_186866_ + f f_186867_ + g f_186868_ + h f_186869_ + ()V + static + (Lcnt$b;Lcnt$b;Lcnt$b;Lcnt$b;Lcnt$b;Lcnt$b;J)V + 0 o f_186863_ + 1 o f_186864_ + 2 o f_186865_ + 3 o f_186866_ + 4 o f_186867_ + 5 o f_186868_ + 6 o f_186869_ + a (Lcnt$h;)J m_186882_ + 0 o p_186883_ + a ()Ljava/util/List; m_186879_ + a (Lcnt$d;)Ljava/lang/Long; m_186880_ + static + 0 o p_186881_ + a (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; m_186884_ + static + 0 o p_186885_ + b (Lcnt$d;)Lcnt$b; m_186887_ + static + 0 o p_186888_ + b ()Lcnt$b; f_186863_ + c ()Lcnt$b; f_186864_ + c (Lcnt$d;)Lcnt$b; m_186890_ + static + 0 o p_186891_ + d (Lcnt$d;)Lcnt$b; m_186893_ + static + 0 o p_186894_ + d ()Lcnt$b; f_186865_ + e (Lcnt$d;)Lcnt$b; m_186896_ + static + 0 o p_186897_ + e ()Lcnt$b; f_186866_ + equals (Ljava/lang/Object;)Z equals + 0 o p_186899_ + f ()Lcnt$b; f_186867_ + f (Lcnt$d;)Lcnt$b; m_186901_ + static + 0 o p_186902_ + g ()Lcnt$b; f_186868_ + g (Lcnt$d;)Lcnt$b; m_186904_ + static + 0 o p_186905_ + h ()J f_186869_ + hashCode ()I hashCode + toString ()Ljava/lang/String; toString +cnt$e net/minecraft/world/level/biome/Climate$RTree + a f_186909_ + b f_186910_ + c f_186911_ + (Lcnt$e$b;)V + 0 o p_186913_ + a (Ljava/util/List;IIZ)V m_186937_ + static + 0 o p_186938_ + 1 o p_186939_ + 2 o p_186940_ + 3 o p_186941_ + a (Lcom/mojang/datafixers/util/Pair;)Lcnt$e$a; m_186933_ + static + 0 o p_186934_ + a (IZ)Ljava/util/Comparator; m_186923_ + static + 0 o p_186924_ + 1 o p_186925_ + a (IZLcnt$e$b;)J m_186926_ + static + 0 o p_186927_ + 1 o p_186928_ + 2 o p_186929_ + a (ILcnt$e$b;)J m_186914_ + static + 0 o p_186915_ + 1 o p_186916_ + a (Lcnt$h;Lcnt$a;)Ljava/lang/Object; m_186930_ + 0 o p_186931_ + 1 o p_186932_ + a ([Lcnt$b;)J m_186942_ + static + 0 o p_186943_ + a (Ljava/util/List;)Lcnt$e; m_186935_ + static + 0 o p_186936_ + a (ILjava/util/List;)Lcnt$e$b; m_186920_ + static + 0 o p_186921_ + 1 o p_186922_ + a (ILcnt$e$c;)Lcnt$e$b; m_186917_ + static + 0 o p_186918_ + 1 o p_186919_ + b (Ljava/util/List;)Ljava/util/List; m_186944_ + static + 0 o p_186945_ + c (Ljava/util/List;)Ljava/util/List; m_186946_ + static + 0 o p_186947_ +cnt$e$a net/minecraft/world/level/biome/Climate$RTree$Leaf + b f_186948_ + (Lcnt$d;Ljava/lang/Object;)V + 0 o p_186950_ + 1 o p_186951_ + a ([JLcnt$e$a;Lcnt$a;)Lcnt$e$a; m_183370_ + 0 o p_186953_ + 1 o p_186954_ + 2 o p_186955_ +cnt$e$b net/minecraft/world/level/biome/Climate$RTree$Node + a f_186956_ + (Ljava/util/List;)V + 0 o p_186958_ + a ([J)J m_186959_ + 0 o p_186960_ + a ([JLcnt$e$a;Lcnt$a;)Lcnt$e$a; m_183370_ + 0 o p_186961_ + 1 o p_186962_ + 2 o p_186963_ + toString ()Ljava/lang/String; toString +cnt$e$c net/minecraft/world/level/biome/Climate$RTree$SubTree + b f_186965_ + (Ljava/util/List;Ljava/util/List;)V + 0 o p_186969_ + 1 o p_186970_ + (Ljava/util/List;)V + 0 o p_186967_ + a ([JLcnt$e$a;Lcnt$a;)Lcnt$e$a; m_183370_ + 0 o p_186972_ + 1 o p_186973_ + 2 o p_186974_ +cnt$f net/minecraft/world/level/biome/Climate$Sampler + a f_207845_ + b f_207846_ + c f_207847_ + d f_207848_ + e f_207849_ + f f_207850_ + g f_207851_ + (Ldhd;Ldhd;Ldhd;Ldhd;Ldhd;Ldhd;Ljava/util/List;)V + 0 o f_207845_ + 1 o f_207846_ + 2 o f_207847_ + 3 o f_207848_ + 4 o f_207849_ + 5 o f_207850_ + 6 o f_207851_ + a (III)Lcnt$h; m_183445_ + 0 o p_186975_ + 1 o p_186976_ + 2 o p_186977_ + a ()Lgu; m_183230_ + b ()Ldhd; f_207845_ + c ()Ldhd; f_207846_ + d ()Ldhd; f_207847_ + e ()Ldhd; f_207848_ + equals (Ljava/lang/Object;)Z equals + 0 o p_207865_ + f ()Ldhd; f_207849_ + g ()Ldhd; f_207850_ + h ()Ljava/util/List; f_207851_ + hashCode ()I hashCode + toString ()Ljava/lang/String; toString +cnt$g net/minecraft/world/level/biome/Climate$SpawnFinder + a f_186978_ + (Ljava/util/List;Lcnt$f;)V + 0 o p_207872_ + 1 o p_207873_ + a (Ljava/util/List;Lcnt$f;II)Lcnt$g$a; m_207879_ + static + 0 o p_207880_ + 1 o p_207881_ + 2 o p_207882_ + 3 o p_207883_ + a (Ljava/util/List;Lcnt$f;FF)V m_207874_ + 0 o p_207875_ + 1 o p_207876_ + 2 o p_207877_ + 3 o p_207878_ +cnt$g$a net/minecraft/world/level/biome/Climate$SpawnFinder$Result + a f_186992_ + b f_186993_ + (Lgu;J)V + 0 o f_186992_ + 1 o f_186993_ + a ()Lgu; f_186992_ + b ()J f_186993_ + equals (Ljava/lang/Object;)Z equals + 0 o p_187000_ + hashCode ()I hashCode + toString ()Ljava/lang/String; toString +cnt$h net/minecraft/world/level/biome/Climate$TargetPoint + a f_187003_ + b f_187004_ + c f_187005_ + d f_187006_ + e f_187007_ + f f_187008_ + (JJJJJJ)V + 0 o f_187003_ + 1 o f_187004_ + 2 o f_187005_ + 3 o f_187006_ + 4 o f_187007_ + 5 o f_187008_ + a ()[J m_187016_ + b ()J f_187003_ + c ()J f_187004_ + d ()J f_187005_ + e ()J f_187006_ + equals (Ljava/lang/Object;)Z equals + 0 o p_187022_ + f ()J f_187007_ + g ()J f_187008_ + hashCode ()I hashCode + toString ()Ljava/lang/String; toString +cnu net/minecraft/world/level/biome/FeatureSorter + ()V + a (ILcnu$a;)Z m_220597_ + static + 0 o p_220598_ + 1 o p_220599_ + a (Lorg/apache/commons/lang3/mutable/MutableInt;Ljava/lang/Object;)I m_220607_ + static + 0 o p_220608_ + 1 o p_220609_ + a (Ljava/util/List;Ljava/util/function/Function;Z)Ljava/util/List; m_220603_ + static + 0 o p_220604_ + 1 o p_220605_ + 2 o p_220606_ + a (Ljava/util/Comparator;Lcnu$a;)Ljava/util/Set; m_220600_ + static + 0 o p_220601_ + 1 o p_220602_ +cnu$a net/minecraft/world/level/biome/FeatureSorter$1FeatureData + a f_220610_ + b f_220611_ + c f_220612_ + (IILdre;)V + 0 o f_220610_ + 1 o f_220611_ + 2 o f_220612_ + a ()I f_220610_ + b ()I f_220611_ + c ()Ldre; f_220612_ + equals (Ljava/lang/Object;)Z equals + 0 o p_220621_ + hashCode ()I hashCode + toString ()Ljava/lang/String; toString +cnu$b net/minecraft/world/level/biome/FeatureSorter$StepFeatureData + a f_220624_ + b f_220625_ + (Ljava/util/List;Ljava/util/function/ToIntFunction;)V + 0 o f_220624_ + 1 o f_220625_ + (Ljava/util/List;)V + 0 o p_220627_ + a (I)Lit/unimi/dsi/fastutil/objects/Object2IntMap; m_220632_ + static + 0 o p_220633_ + a ()Ljava/util/List; f_220624_ + b ()Ljava/util/function/ToIntFunction; f_220625_ + equals (Ljava/lang/Object;)Z equals + 0 o p_220636_ + hashCode ()I hashCode + toString ()Ljava/lang/String; toString +cnv net/minecraft/world/level/biome/FixedBiomeSource + b f_48251_ + c f_48252_ + ()V + static + (Lhe;)V + 0 o p_204257_ + a ()Lcom/mojang/serialization/Codec; m_5820_ + a (Lcnv;)Lhe; m_204258_ + static + 0 o p_204259_ + a (IIIIILjava/util/function/Predicate;Lapf;ZLcnt$f;)Lcom/mojang/datafixers/util/Pair; m_213971_ + 0 o p_220640_ + 1 o p_220641_ + 2 o p_220642_ + 3 o p_220643_ + 4 o p_220644_ + 5 o p_220645_ + 6 o p_220646_ + 7 o p_220647_ + 8 o p_220648_ + a (Lgu;IIILjava/util/function/Predicate;Lcnt$f;Lcmp;)Lcom/mojang/datafixers/util/Pair; m_214004_ + 0 o p_220650_ + 1 o p_220651_ + 2 o p_220652_ + 3 o p_220653_ + 4 o p_220654_ + 5 o p_220655_ + 6 o p_220656_ + a (IIIILcnt$f;)Ljava/util/Set; m_183399_ + 0 o p_187038_ + 1 o p_187039_ + 2 o p_187040_ + 3 o p_187041_ + 4 o p_187042_ + b ()Ljava/util/stream/Stream; m_274359_ + getNoiseBiome (III)Lhe; m_203495_ + 0 o p_204261_ + 1 o p_204262_ + 2 o p_204263_ + getNoiseBiome (IIILcnt$f;)Lhe; m_203407_ + 0 o p_204265_ + 1 o p_204266_ + 2 o p_204267_ + 3 o p_204268_ +cnw net/minecraft/world/level/biome/MobSpawnSettings + a f_151796_ + b f_48326_ + c f_48327_ + d f_48325_ + e f_151797_ + f f_48328_ + g f_48329_ + h f_48330_ + ()V + static + (FLjava/util/Map;Ljava/util/Map;)V + 0 o p_196689_ + 1 o p_196690_ + 2 o p_196691_ + a ()F m_48344_ + a (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; m_187050_ + static + 0 o p_187051_ + a (Lbfn;)Lcnw$b; m_48345_ + 0 o p_48346_ + a (Lcnw;)Ljava/util/Map; m_187048_ + static + 0 o p_187049_ + a (Lbgc;)Lbcl; m_151798_ + 0 o p_151799_ + b (Lcnw;)Ljava/util/Map; m_187052_ + static + 0 o p_187053_ + c (Lcnw;)Ljava/lang/Float; m_187054_ + static + 0 o p_187055_ +cnw$a net/minecraft/world/level/biome/MobSpawnSettings$Builder + a f_48362_ + b f_48363_ + c f_48364_ + ()V + a (F)Lcnw$a; m_48368_ + 0 o p_48369_ + a (Lbfn;DD)Lcnw$a; m_48370_ + 0 o p_48371_ + 1 o p_48372_ + 2 o p_48373_ + a ()Lcnw; m_48381_ + a (Lbgc;Lcnw$c;)Lcnw$a; m_48376_ + 0 o p_48377_ + 1 o p_48378_ + a (Lbgc;)Ljava/util/List; m_48374_ + static + 0 o p_48375_ + a (Ljava/util/Map$Entry;)Lbcl; m_151808_ + static + 0 o p_151809_ + b (Lbgc;)Lbgc; m_48382_ + static + 0 o p_48383_ +cnw$b net/minecraft/world/level/biome/MobSpawnSettings$MobSpawnCost + a f_48384_ + b f_48385_ + c f_48386_ + ()V + static + (DD)V + 0 o f_48385_ + 1 o f_48386_ + a (Lcnw$b;)Ljava/lang/Double; m_151810_ + static + 0 o p_151811_ + a (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; m_48398_ + static + 0 o p_48399_ + a ()D f_48385_ + b (Lcnw$b;)Ljava/lang/Double; m_151812_ + static + 0 o p_151813_ + b ()D f_48386_ + equals (Ljava/lang/Object;)Z equals + 0 o p_275664_ + hashCode ()I hashCode + toString ()Ljava/lang/String; toString +cnw$c net/minecraft/world/level/biome/MobSpawnSettings$SpawnerData + a f_48403_ + b f_48404_ + c f_48405_ + d f_48406_ + ()V + static + (Lbfn;III)V + 0 o p_48409_ + 1 o p_48410_ + 2 o p_48411_ + 3 o p_48412_ + (Lbfn;Lbci;II)V + 0 o p_151815_ + 1 o p_151816_ + 2 o p_151817_ + 3 o p_151818_ + a (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; m_274270_ + static + 0 o p_275169_ + a (Lcnw$c;)Lcom/mojang/serialization/DataResult; m_274269_ + static + 0 o p_275168_ + b ()Ljava/lang/String; m_274271_ + static + b (Lcnw$c;)Ljava/lang/Integer; m_151819_ + static + 0 o p_151820_ + c (Lcnw$c;)Ljava/lang/Integer; m_151823_ + static + 0 o p_151824_ + d (Lcnw$c;)Lbfn; m_151825_ + static + 0 o p_151826_ + toString ()Ljava/lang/String; toString +cnx net/minecraft/world/level/biome/MultiNoiseBiomeSource + b f_48424_ + c f_48425_ + d f_273882_ + e f_273891_ + f f_48435_ + ()V + static + (Lcom/mojang/datafixers/util/Either;)V + 0 o p_275370_ + a (Lacp;)Z m_274493_ + 0 o p_275637_ + a (Lhe;)Lcnx; m_274591_ + static + 0 o p_275250_ + a (Lcnt$c;)Lcnx; m_274596_ + static + 0 o p_275223_ + a (Lcnt$h;)Lhe; m_204269_ + 0 o p_204270_ + a ()Lcom/mojang/serialization/Codec; m_5820_ + a (Lcnx;)Lcom/mojang/datafixers/util/Either; m_274272_ + static + 0 o p_275170_ + a (Ljava/util/List;Lgu;Lcnt$f;)V m_207301_ + 0 o p_207895_ + 1 o p_207896_ + 2 o p_207897_ + b ()Ljava/util/stream/Stream; m_274359_ + b (Lhe;)Lcnt$c; m_274274_ + static + 0 o p_275172_ + b (Lcnt$c;)Lcnt$c; m_274273_ + static + 0 o p_275171_ + d ()Lcnt$c; m_274409_ + getNoiseBiome (IIILcnt$f;)Lhe; m_203407_ + 0 o p_204272_ + 1 o p_204273_ + 2 o p_204274_ + 3 o p_204275_ +cny net/minecraft/world/level/biome/MultiNoiseBiomeSourceParameterList + a f_273907_ + b f_273930_ + c f_273943_ + d f_273815_ + ()V + static + (Lcny$a;Lhf;)V + 0 o p_275275_ + 1 o p_275192_ + a (Lcny;)Lcny$a; m_274390_ + static + 0 o p_275196_ + a (Lcny$a;)Lcnt$c; m_274547_ + static + 0 o p_275480_ + a (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; m_274470_ + static + 0 o p_275469_ + a ()Lcnt$c; m_274385_ + a (Lacp;)Lacp; m_274334_ + static + 0 o p_275406_ + b (Lcny$a;)Lcny$a; m_274544_ + static + 0 o p_275210_ + b ()Ljava/util/Map; m_274368_ + static +cny$a net/minecraft/world/level/biome/MultiNoiseBiomeSourceParameterList$Preset + a f_273838_ + b f_273915_ + c f_273825_ + d f_273944_ + e f_273865_ + f f_273938_ + ()V + static + (Lacq;Lcny$a$a;)V + 0 o f_273944_ + 1 o f_273865_ + a (Ljava/util/function/Function;)Lcnt$c; m_276781_ + static + 0 o p_277826_ + a (Lcom/google/common/collect/ImmutableList$Builder;Ljava/util/function/Function;Lcom/mojang/datafixers/util/Pair;)V m_274501_ + static + 0 o p_275512_ + 1 o p_275540_ + 2 o p_275579_ + a (Lcny$a;)Lcom/mojang/serialization/DataResult; m_274346_ + static + 0 o p_275325_ + a (Lacq;)Lcom/mojang/serialization/DataResult; m_274363_ + static + 0 o p_275567_ + a ()Ljava/util/stream/Stream; m_274593_ + a (Lacp;)Lacp; m_274532_ + static + 0 o p_275429_ + b ()Lacq; f_273944_ + b (Lacq;)Lcom/mojang/serialization/DataResult; m_274315_ + static + 0 o p_275257_ + b (Lcny$a;)Lcny$a; m_274469_ + static + 0 o p_275365_ + c (Lacq;)Ljava/lang/String; m_274423_ + static + 0 o p_275313_ + c ()Lcny$a$a; f_273865_ + equals (Ljava/lang/Object;)Z equals + 0 o p_275409_ + hashCode ()I hashCode + toString ()Ljava/lang/String; toString +cny$a$1 net/minecraft/world/level/biome/MultiNoiseBiomeSourceParameterList$Preset$1 + ()V + apply (Ljava/util/function/Function;)Lcnt$c; m_274430_ + 0 o p_275356_ +cny$a$2 net/minecraft/world/level/biome/MultiNoiseBiomeSourceParameterList$Preset$2 + ()V + apply (Ljava/util/function/Function;)Lcnt$c; m_274430_ + 0 o p_275530_ +cny$a$a net/minecraft/world/level/biome/MultiNoiseBiomeSourceParameterList$Preset$SourceProvider + apply (Ljava/util/function/Function;)Lcnt$c; m_274430_ + 0 o p_275485_ +cnz net/minecraft/world/level/biome/MultiNoiseBiomeSourceParameterLists + a f_273830_ + b f_273878_ + ()V + static + ()V + a (Ljava/lang/String;)Lacp; m_274548_ + static + 0 o p_275281_ + a (Lnm;)V m_274553_ + static + 0 o p_275387_ +co net/minecraft/advancements/critereon/PlayerInteractTrigger + a f_61490_ + ()V + static + ()V + a (Lcfz;Ldzk;Lco$a;)Z m_61498_ + static + 0 o p_61499_ + 1 o p_61500_ + 2 o p_61501_ + a ()Lacq; m_7295_ + a (Lcom/google/gson/JsonObject;Lba;Lbe;)Lco$a; m_7214_ + 0 o p_286617_ + 1 o p_286504_ + 2 o p_286558_ + a (Laig;Lcfz;Lbfj;)V m_61494_ + 0 o p_61495_ + 1 o p_61496_ + 2 o p_61497_ + b (Lcom/google/gson/JsonObject;Lba;Lbe;)Lar; m_7214_ + 0 o p_286758_ + 1 o p_286220_ + 2 o p_286859_ +co$a net/minecraft/advancements/critereon/PlayerInteractTrigger$TriggerInstance + a f_61511_ + b f_61512_ + (Lba;Lbz;Lba;)V + 0 o p_286824_ + 1 o p_286719_ + 2 o p_286219_ + a (Lct;)Lcom/google/gson/JsonObject; m_7683_ + 0 o p_61525_ + a (Lcfz;Ldzk;)Z m_61521_ + 0 o p_61522_ + 1 o p_61523_ + a (Lbz$a;Lba;)Lco$a; m_285812_ + static + 0 o p_286235_ + 1 o p_286667_ + a (Lba;Lbz$a;Lba;)Lco$a; m_285836_ + static + 0 o p_286452_ + 1 o p_286289_ + 2 o p_286370_ +coa net/minecraft/world/level/biome/OverworldBiomeBuilder + A f_187151_ + B f_187152_ + C f_187121_ + D f_187122_ + E f_187123_ + F f_187124_ + G f_187125_ + H f_201989_ + a f_187127_ + b f_187128_ + c f_187129_ + d f_187130_ + e f_187131_ + f f_187132_ + g f_187133_ + h f_187134_ + i f_187135_ + j f_187136_ + k f_187137_ + l f_187138_ + m f_220663_ + n f_220664_ + o f_187139_ + p f_187140_ + q f_187141_ + r f_187142_ + s f_187143_ + t f_187144_ + u f_187145_ + v f_187146_ + w f_187147_ + x f_187148_ + y f_187149_ + z f_187150_ + ()V + a (II)Lacp; m_187160_ + 0 o p_187161_ + 1 o p_187162_ + a (D)Ljava/lang/String; m_187155_ + static + 0 o p_187156_ + a ()Ljava/util/List; m_187154_ + a (ILcnt$b;)Lacp; m_187172_ + 0 o p_187173_ + 1 o p_187174_ + a (Ljava/util/function/Consumer;Lcnt$b;Lcnt$b;Lcnt$b;Lcnt$b;Lcnt$b;FLacp;)V m_187180_ + 0 o p_187181_ + 1 o p_187182_ + 2 o p_187183_ + 3 o p_187184_ + 4 o p_187185_ + 5 o p_187186_ + 6 o p_187187_ + 7 o p_187188_ + a (Ljava/util/function/Consumer;Lcnt$b;)V m_187177_ + 0 o p_187178_ + 1 o p_187179_ + a (IILcnt$b;)Lacp; m_187163_ + 0 o p_187164_ + 1 o p_187165_ + 2 o p_187166_ + a (Ljava/util/function/Consumer;)V m_187175_ + 0 o p_187176_ + a (D[Lcnt$b;)Ljava/lang/String; m_187157_ + static + 0 o p_187158_ + 1 o p_187159_ + a (IILcnt$b;Lacp;)Lacp; m_201990_ + 0 o p_201991_ + 1 o p_201992_ + 2 o p_201993_ + 3 o p_201994_ + a (Ldhd;Ldhd;Ldhd$b;)Z m_246093_ + static + 0 o p_252040_ + 1 o p_250447_ + 2 o p_249270_ + b (Ljava/util/function/Consumer;Lcnt$b;Lcnt$b;Lcnt$b;Lcnt$b;Lcnt$b;FLacp;)V m_187200_ + 0 o p_187201_ + 1 o p_187202_ + 2 o p_187203_ + 3 o p_187204_ + 4 o p_187205_ + 5 o p_187206_ + 6 o p_187207_ + 7 o p_187208_ + b (Ljava/util/function/Consumer;Lcnt$b;)V m_187197_ + 0 o p_187198_ + 1 o p_187199_ + b (D)Ljava/lang/String; m_187189_ + 0 o p_187190_ + b (IILcnt$b;)Lacp; m_187191_ + 0 o p_187192_ + 1 o p_187193_ + 2 o p_187194_ + b (Ljava/util/function/Consumer;)V m_255158_ + 0 o p_256276_ + b ()[Lcnt$b; m_201995_ + c (Ljava/util/function/Consumer;)V m_187195_ + 0 o p_187196_ + c ()[Lcnt$b; m_201996_ + c (Ljava/util/function/Consumer;Lcnt$b;)V m_187217_ + 0 o p_187218_ + 1 o p_187219_ + c (Ljava/util/function/Consumer;Lcnt$b;Lcnt$b;Lcnt$b;Lcnt$b;Lcnt$b;FLacp;)V m_220668_ + 0 o p_220669_ + 1 o p_220670_ + 2 o p_220671_ + 3 o p_220672_ + 4 o p_220673_ + 5 o p_220674_ + 6 o p_220675_ + 7 o p_220676_ + c (IILcnt$b;)Lacp; m_187211_ + 0 o p_187212_ + 1 o p_187213_ + 2 o p_187214_ + c (D)Ljava/lang/String; m_187209_ + 0 o p_187210_ + d (IILcnt$b;)Lacp; m_187222_ + 0 o p_187223_ + 1 o p_187224_ + 2 o p_187225_ + d (Ljava/util/function/Consumer;Lcnt$b;)V m_187228_ + 0 o p_187229_ + 1 o p_187230_ + d (D)Ljava/lang/String; m_187220_ + 0 o p_187221_ + d (Ljava/util/function/Consumer;)V m_187215_ + 0 o p_187216_ + d ()[Lcnt$b; m_201997_ + e (Ljava/util/function/Consumer;)V m_187226_ + 0 o p_187227_ + e (Ljava/util/function/Consumer;Lcnt$b;)V m_187237_ + 0 o p_187238_ + 1 o p_187239_ + e ()[Lcnt$b; m_201998_ + e (IILcnt$b;)Lacp; m_187233_ + 0 o p_187234_ + 1 o p_187235_ + 2 o p_187236_ + e (D)Ljava/lang/String; m_187231_ + 0 o p_187232_ + f ()[Lcnt$b; m_201999_ + f (IILcnt$b;)Lacp; m_187240_ + 0 o p_187241_ + 1 o p_187242_ + 2 o p_187243_ + g (IILcnt$b;)Lacp; m_187244_ + 0 o p_187245_ + 1 o p_187246_ + 2 o p_187247_ + g ()[Lcnt$b; m_202000_ + h (IILcnt$b;)Lacp; m_202001_ + 0 o p_202002_ + 1 o p_202003_ + 2 o p_202004_ +cob net/minecraft/world/level/biome/TheEndBiomeSource + b f_48617_ + c f_48621_ + d f_48622_ + e f_48623_ + f f_48624_ + g f_48625_ + ()V + static + (Lhe;Lhe;Lhe;Lhe;Lhe;)V + 0 o p_220678_ + 1 o p_220679_ + 2 o p_220680_ + 3 o p_220681_ + 4 o p_220682_ + a ()Lcom/mojang/serialization/Codec; m_5820_ + a (Lhf;)Lcob; m_254978_ + static + 0 o p_256561_ + a (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; m_254810_ + static + 0 o p_255555_ + b ()Ljava/util/stream/Stream; m_274359_ + getNoiseBiome (IIILcnt$f;)Lhe; m_203407_ + 0 o p_204292_ + 1 o p_204293_ + 2 o p_204294_ + 3 o p_204295_ +coc net/minecraft/world/level/biome/package-info +cod net/minecraft/world/level/block/AbstractBannerBlock + a f_48657_ + (Lcen;Ldca$d;)V + 0 o p_48659_ + 1 o p_48660_ + a (Ldcb;)Z m_48673_ + 0 o p_279267_ + a ()Lcen; m_48674_ + a (Lcfz;Lczd;)V m_187399_ + static + 0 o p_187400_ + 1 o p_187401_ + a (Lcmm;Lgu;Ldcb;Lbfz;Lcfz;)V m_6402_ + 0 o p_48668_ + 1 o p_48669_ + 2 o p_48670_ + 3 o p_48671_ + 4 o p_48672_ + a (Lcls;Lgu;Ldcb;)Lcfz; m_7397_ + 0 o p_48664_ + 1 o p_48665_ + 2 o p_48666_ + a (Lgu;Ldcb;)Lczn; m_142194_ + 0 o p_151892_ + 1 o p_151893_ + b (Lcfz;Lczd;)V m_187402_ + static + 0 o p_187403_ + 1 o p_187404_ +coe net/minecraft/world/level/block/AbstractCandleBlock + a f_151894_ + b f_151895_ + ()V + static + (Ldca$d;)V + 0 o p_151898_ + a (Lcmm;Leei;Lapf;)V m_220687_ + static + 0 o p_220688_ + 1 o p_220689_ + 2 o p_220690_ + a (Lbyo;Ldcb;Lcmn;Lgu;)V m_151899_ + static + 0 o p_151900_ + 1 o p_151901_ + 2 o p_151902_ + 3 o p_151903_ + a (Lcmm;Ldcb;Leee;Lbzg;)V m_5581_ + 0 o p_151905_ + 1 o p_151906_ + 2 o p_151907_ + 3 o p_151908_ + a (Lcmn;Lgu;Leei;)V m_151923_ + static + 0 o p_151924_ + 1 o p_151925_ + 2 o p_151926_ + a (Lcmn;Ldcb;Lgu;Z)V m_151918_ + static + 0 o p_151919_ + 1 o p_151920_ + 2 o p_151921_ + 3 o p_151922_ + a (Ldcb;Lcmm;Lgu;Lapf;)V m_214162_ + 0 o p_220697_ + 1 o p_220698_ + 2 o p_220699_ + 3 o p_220700_ + a (Lcmm;Lgu;Lapf;Leei;)V m_220691_ + static + 0 o p_220692_ + 1 o p_220693_ + 2 o p_220694_ + 3 o p_220695_ + b (Ldcb;)Ljava/lang/Iterable; m_142199_ + 0 o p_151927_ + c (Ldcb;)Z m_151933_ + static + 0 o p_151934_ + d (Ldcb;)Z m_142595_ + 0 o p_151935_ +cof net/minecraft/world/level/block/AbstractCauldronBlock + a f_151936_ + b f_151937_ + c f_151938_ + d f_151939_ + e f_151940_ + f f_151941_ + g f_151942_ + h f_151943_ + ()V + static + (Ldca$d;Ljava/util/Map;)V + 0 o p_151946_ + 1 o p_151947_ + a (Ldxd;)Z m_142087_ + 0 o p_151983_ + a (Ldcb;Lgu;Lbfj;)Z m_151979_ + 0 o p_151980_ + 1 o p_151981_ + 2 o p_151982_ + a (Ldcb;Laif;Lgu;Lapf;)V m_213897_ + 0 o p_220702_ + 1 o p_220703_ + 2 o p_220704_ + 3 o p_220705_ + a (Ldcb;Lcls;Lgu;Leen;)Lefb; m_5940_ + 0 o p_151964_ + 1 o p_151965_ + 2 o p_151966_ + 3 o p_151967_ + a (Ldcb;Lcls;Lgu;)Lefb; m_6079_ + 0 o p_151955_ + 1 o p_151956_ + 2 o p_151957_ + a (Ldcb;Lcls;Lgu;Ldxu;)Z m_7357_ + 0 o p_151959_ + 1 o p_151960_ + 2 o p_151961_ + 3 o p_151962_ + a (Ldcb;Lcmm;Lgu;Lbyo;Lbdw;Leee;)Lbdx; m_6227_ + 0 o p_151969_ + 1 o p_151970_ + 2 o p_151971_ + 3 o p_151972_ + 4 o p_151973_ + 5 o p_151974_ + a (Ldcb;Lcmm;Lgu;Ldxd;)V m_142310_ + 0 o p_151975_ + 1 o p_151976_ + 2 o p_151977_ + 3 o p_151978_ + b (Ldcb;)D m_142446_ + 0 o p_151948_ + d (Ldcb;)Z m_142596_ + 0 o p_151984_ + d_ (Ldcb;)Z m_7278_ + 0 o p_151986_ +cog net/minecraft/world/level/block/AbstractChestBlock + a f_48675_ + (Ldca$d;Ljava/util/function/Supplier;)V + 0 o p_48677_ + 1 o p_48678_ + a (Ldcb;Lcmm;Lgu;Z)Lcrq$c; m_5641_ + 0 o p_48679_ + 1 o p_48680_ + 2 o p_48681_ + 3 o p_48682_ +coh net/minecraft/world/level/block/AbstractFurnaceBlock + a f_48683_ + b f_48684_ + ()V + static + (Ldca$d;)V + 0 o p_48687_ + a (Ldcb;Lcvz;)Ldcb; m_6843_ + 0 o p_48722_ + 1 o p_48723_ + a (Ldcc$a;)V m_7926_ + 0 o p_48725_ + a (Ldcb;Lcmm;Lgu;Ldcb;Z)V m_6810_ + 0 o p_48713_ + 1 o p_48714_ + 2 o p_48715_ + 3 o p_48716_ + 4 o p_48717_ + a (Lcmm;Lgu;Ldcb;Lbfz;Lcfz;)V m_6402_ + 0 o p_48694_ + 1 o p_48695_ + 2 o p_48696_ + 3 o p_48697_ + 4 o p_48698_ + a (Ldcb;Lcmm;Lgu;)I m_6782_ + 0 o p_48702_ + 1 o p_48703_ + 2 o p_48704_ + a (Ldcb;Lcui;)Ldcb; m_6943_ + 0 o p_48719_ + 1 o p_48720_ + a (Lcmm;Lgu;Lbyo;)V m_7137_ + 0 o p_48690_ + 1 o p_48691_ + 2 o p_48692_ + a (Lcmm;Lczp;Lczp;)Lczo; m_151987_ + static + 0 o p_151988_ + 1 o p_151989_ + 2 o p_151990_ + a (Ldcb;Lcmm;Lgu;Lbyo;Lbdw;Leee;)Lbdx; m_6227_ + 0 o p_48706_ + 1 o p_48707_ + 2 o p_48708_ + 3 o p_48709_ + 4 o p_48710_ + 5 o p_48711_ + a (Lcih;)Ldcb; m_5573_ + 0 o p_48689_ + b_ (Ldcb;)Lcvs; m_7514_ + 0 o p_48727_ + d_ (Ldcb;)Z m_7278_ + 0 o p_48700_ +coi net/minecraft/world/level/block/AbstractGlassBlock + (Ldca$d;)V + 0 o p_48729_ + b (Ldcb;Lcls;Lgu;)F m_7749_ + 0 o p_48731_ + 1 o p_48732_ + 2 o p_48733_ + b (Ldcb;Lcls;Lgu;Leen;)Lefb; m_5909_ + 0 o p_48735_ + 1 o p_48736_ + 2 o p_48737_ + 3 o p_48738_ + c (Ldcb;Lcls;Lgu;)Z m_7420_ + 0 o p_48740_ + 1 o p_48741_ + 2 o p_48742_ +coj net/minecraft/world/level/block/AbstractSkullBlock + a f_48743_ + (Lcwp$a;Ldca$d;)V + 0 o p_48745_ + 1 o p_48746_ + a (Ldcb;Lcls;Lgu;Ldxu;)Z m_7357_ + 0 o p_48750_ + 1 o p_48751_ + 2 o p_48752_ + 3 o p_48753_ + a ()Lcwp$a; m_48754_ + a (Lgu;Ldcb;)Lczn; m_142194_ + 0 o p_151996_ + 1 o p_151997_ + a (Lcmm;Ldcb;Lczp;)Lczo; m_142354_ + 0 o p_151992_ + 1 o p_151993_ + 2 o p_151994_ + g ()Lbfo; m_40402_ +cok net/minecraft/world/level/block/AirBlock + (Ldca$d;)V + 0 o p_48756_ + a (Ldcb;Lcls;Lgu;Leen;)Lefb; m_5940_ + 0 o p_48760_ + 1 o p_48761_ + 2 o p_48762_ + 3 o p_48763_ + b_ (Ldcb;)Lcvs; m_7514_ + 0 o p_48758_ +col net/minecraft/world/level/block/AmethystBlock + (Ldca$d;)V + 0 o p_151999_ + a (Lcmm;Ldcb;Leee;Lbzg;)V m_5581_ + 0 o p_152001_ + 1 o p_152002_ + 2 o p_152003_ + 3 o p_152004_ +com net/minecraft/world/level/block/AmethystClusterBlock + a f_152005_ + b f_152006_ + c f_152007_ + d f_152008_ + e f_152009_ + f f_152010_ + g f_152011_ + h f_152012_ + ()V + static + (IILdca$d;)V + 0 o p_152015_ + 1 o p_152016_ + 2 o p_152017_ + a (Ldcb;Lha;Ldcb;Lcmn;Lgu;Lgu;)Ldcb; m_7417_ + 0 o p_152036_ + 1 o p_152037_ + 2 o p_152038_ + 3 o p_152039_ + 4 o p_152040_ + 5 o p_152041_ + a (Ldcb;Lcmp;Lgu;)Z m_7898_ + 0 o p_152026_ + 1 o p_152027_ + 2 o p_152028_ + a (Ldcb;Lcvz;)Ldcb; m_6843_ + 0 o p_152033_ + 1 o p_152034_ + a (Ldcc$a;)V m_7926_ + 0 o p_152043_ + a (Lcih;)Ldcb; m_5573_ + 0 o p_152019_ + a (Ldcb;Lcls;Lgu;Leen;)Lefb; m_5940_ + 0 o p_152021_ + 1 o p_152022_ + 2 o p_152023_ + 3 o p_152024_ + a (Ldcb;Lcui;)Ldcb; m_6943_ + 0 o p_152030_ + 1 o p_152031_ + c_ (Ldcb;)Ldxe; m_5888_ + 0 o p_152045_ +com$1 net/minecraft/world/level/block/AmethystClusterBlock$1 + a f_152048_ + ()V + static +com/mojang/blaze3d/platform/GLX com/mojang/blaze3d/platform/GLX + LOGGER LOGGER + cpuInfo cpuInfo + ()V + static + ()V + _getCpuInfo ()Ljava/lang/String; _getCpuInfo + static + _getLWJGLVersion ()Ljava/lang/String; _getLWJGLVersion + static + _getRefreshRate (Lehn;)I _getRefreshRate + static + 0 o p_69342_ + _init (IZ)V _init + static + 0 o p_69344_ + 1 o p_69345_ + _initGlfw ()Ljava/util/function/LongSupplier; _initGlfw + static + _renderCrosshair (IZZZ)V _renderCrosshair + static + 0 o p_69348_ + 1 o p_69349_ + 2 o p_69350_ + 3 o p_69351_ + _setGlfwErrorCallback (Lorg/lwjgl/glfw/GLFWErrorCallbackI;)V _setGlfwErrorCallback + static + 0 o p_69353_ + _shouldClose (Lehn;)Z _shouldClose + static + 0 o p_69356_ + getOpenGLVersionString ()Ljava/lang/String; getOpenGLVersionString + static + lambda$_initGlfw$0 (Ljava/lang/Integer;Ljava/lang/String;)V lambda$_initGlfw$0 + static + 0 o p_242032_ + 1 o p_242033_ + lambda$_initGlfw$1 (Ljava/util/List;IJ)V lambda$_initGlfw$1 + static + 0 o p_242029_ + 1 o p_69365_ + 2 o p_69366_ + lambda$_initGlfw$2 ()J lambda$_initGlfw$2 + static + make (Ljava/util/function/Supplier;)Ljava/lang/Object; make + static + 0 o p_69374_ + make (Ljava/lang/Object;Ljava/util/function/Consumer;)Ljava/lang/Object; make + static + 0 o p_69371_ + 1 o p_69372_ +com/mojang/blaze3d/platform/GlConst com/mojang/blaze3d/platform/GlConst + GL_ALPHA_BIAS GL_ALPHA_BIAS + GL_ALWAYS GL_ALWAYS + GL_ARRAY_BUFFER GL_ARRAY_BUFFER + GL_BGR GL_BGR + GL_BYTE GL_BYTE + GL_CLAMP_TO_EDGE GL_CLAMP_TO_EDGE + GL_COLOR_ATTACHMENT0 GL_COLOR_ATTACHMENT0 + GL_COLOR_BUFFER_BIT GL_COLOR_BUFFER_BIT + GL_COMPILE_STATUS GL_COMPILE_STATUS + GL_DEPTH_ATTACHMENT GL_DEPTH_ATTACHMENT + GL_DEPTH_BUFFER_BIT GL_DEPTH_BUFFER_BIT + GL_DEPTH_COMPONENT GL_DEPTH_COMPONENT + GL_DEPTH_COMPONENT24 GL_DEPTH_COMPONENT24 + GL_DEPTH_COMPONENT32 GL_DEPTH_COMPONENT32 + GL_DEPTH_TEXTURE_MODE GL_DEPTH_TEXTURE_MODE + GL_DRAW_FRAMEBUFFER GL_DRAW_FRAMEBUFFER + GL_DST_ALPHA GL_DST_ALPHA + GL_DST_COLOR GL_DST_COLOR + GL_DYNAMIC_DRAW GL_DYNAMIC_DRAW + GL_ELEMENT_ARRAY_BUFFER GL_ELEMENT_ARRAY_BUFFER + GL_EQUAL GL_EQUAL + GL_FALSE GL_FALSE + GL_FILL GL_FILL + GL_FLOAT GL_FLOAT + GL_FRAGMENT_SHADER GL_FRAGMENT_SHADER + GL_FRAMEBUFFER GL_FRAMEBUFFER + GL_FRAMEBUFFER_COMPLETE GL_FRAMEBUFFER_COMPLETE + GL_FRAMEBUFFER_INCOMPLETE_ATTACHMENT GL_FRAMEBUFFER_INCOMPLETE_ATTACHMENT + GL_FRAMEBUFFER_INCOMPLETE_DRAW_BUFFER GL_FRAMEBUFFER_INCOMPLETE_DRAW_BUFFER + GL_FRAMEBUFFER_INCOMPLETE_MISSING_ATTACHMENT GL_FRAMEBUFFER_INCOMPLETE_MISSING_ATTACHMENT + GL_FRAMEBUFFER_INCOMPLETE_READ_BUFFER GL_FRAMEBUFFER_INCOMPLETE_READ_BUFFER + GL_FRAMEBUFFER_UNSUPPORTED GL_FRAMEBUFFER_UNSUPPORTED + GL_FRONT GL_FRONT + GL_FRONT_AND_BACK GL_FRONT_AND_BACK + GL_FUNC_ADD GL_FUNC_ADD + GL_FUNC_REVERSE_SUBTRACT GL_FUNC_REVERSE_SUBTRACT + GL_FUNC_SUBTRACT GL_FUNC_SUBTRACT + GL_GEQUAL GL_GEQUAL + GL_GREATER GL_GREATER + GL_INT GL_INT + GL_LEQUAL GL_LEQUAL + GL_LINE GL_LINE + GL_LINEAR GL_LINEAR + GL_LINEAR_MIPMAP_LINEAR GL_LINEAR_MIPMAP_LINEAR + GL_LINES GL_LINES + GL_LINE_STRIP GL_LINE_STRIP + GL_LINK_STATUS GL_LINK_STATUS + GL_MAX GL_MAX + GL_MAX_TEXTURE_SIZE GL_MAX_TEXTURE_SIZE + GL_MIN GL_MIN + GL_NEAREST GL_NEAREST + GL_NEAREST_MIPMAP_LINEAR GL_NEAREST_MIPMAP_LINEAR + GL_NONE GL_NONE + GL_ONE GL_ONE + GL_ONE_MINUS_DST_ALPHA GL_ONE_MINUS_DST_ALPHA + GL_ONE_MINUS_DST_COLOR GL_ONE_MINUS_DST_COLOR + GL_ONE_MINUS_SRC_ALPHA GL_ONE_MINUS_SRC_ALPHA + GL_ONE_MINUS_SRC_COLOR GL_ONE_MINUS_SRC_COLOR + GL_OUT_OF_MEMORY GL_OUT_OF_MEMORY + GL_PACK_ALIGNMENT GL_PACK_ALIGNMENT + GL_PROXY_TEXTURE_2D GL_PROXY_TEXTURE_2D + GL_READ_FRAMEBUFFER GL_READ_FRAMEBUFFER + GL_RED GL_RED + GL_RENDERBUFFER GL_RENDERBUFFER + GL_REPLACE GL_REPLACE + GL_RG GL_RG + GL_RGB GL_RGB + GL_RGBA GL_RGBA + GL_RGBA8 GL_RGBA8 + GL_SHORT GL_SHORT + GL_SRC_ALPHA GL_SRC_ALPHA + GL_SRC_COLOR GL_SRC_COLOR + GL_STATIC_DRAW GL_STATIC_DRAW + GL_TEXTURE0 GL_TEXTURE0 + GL_TEXTURE1 GL_TEXTURE1 + GL_TEXTURE2 GL_TEXTURE2 + GL_TEXTURE_2D GL_TEXTURE_2D + GL_TEXTURE_COMPARE_MODE GL_TEXTURE_COMPARE_MODE + GL_TEXTURE_MAG_FILTER GL_TEXTURE_MAG_FILTER + GL_TEXTURE_MIN_FILTER GL_TEXTURE_MIN_FILTER + GL_TEXTURE_WIDTH GL_TEXTURE_WIDTH + GL_TEXTURE_WRAP_S GL_TEXTURE_WRAP_S + GL_TEXTURE_WRAP_T GL_TEXTURE_WRAP_T + GL_TRIANGLES GL_TRIANGLES + GL_TRIANGLE_FAN GL_TRIANGLE_FAN + GL_TRIANGLE_STRIP GL_TRIANGLE_STRIP + GL_TRUE GL_TRUE + GL_UNPACK_ALIGNMENT GL_UNPACK_ALIGNMENT + GL_UNPACK_LSB_FIRST GL_UNPACK_LSB_FIRST + GL_UNPACK_ROW_LENGTH GL_UNPACK_ROW_LENGTH + GL_UNPACK_SKIP_PIXELS GL_UNPACK_SKIP_PIXELS + GL_UNPACK_SKIP_ROWS GL_UNPACK_SKIP_ROWS + GL_UNPACK_SWAP_BYTES GL_UNPACK_SWAP_BYTES + GL_UNSIGNED_BYTE GL_UNSIGNED_BYTE + GL_UNSIGNED_INT GL_UNSIGNED_INT + GL_UNSIGNED_SHORT GL_UNSIGNED_SHORT + GL_VERTEX_SHADER GL_VERTEX_SHADER + GL_WRITE_ONLY GL_WRITE_ONLY + GL_ZERO GL_ZERO + ()V +com/mojang/blaze3d/platform/GlStateManager com/mojang/blaze3d/platform/GlStateManager + BLEND BLEND + COLOR_LOGIC COLOR_LOGIC + COLOR_MASK COLOR_MASK + CULL CULL + DEPTH DEPTH + ON_LINUX ON_LINUX + POLY_OFFSET POLY_OFFSET + SCISSOR SCISSOR + STENCIL STENCIL + TEXTURES TEXTURES + TEXTURE_COUNT TEXTURE_COUNT + activeTexture activeTexture + ()V + static + ()V + _activeTexture (I)V _activeTexture + static + 0 o p_84539_ + _bindTexture (I)V _bindTexture + static + 0 o p_84545_ + _blendEquation (I)V _blendEquation + static + 0 o p_84380_ + _blendFunc (II)V _blendFunc + static + 0 o p_84329_ + 1 o p_84330_ + _blendFuncSeparate (IIII)V _blendFuncSeparate + static + 0 o p_84336_ + 1 o p_84337_ + 2 o p_84338_ + 3 o p_84339_ + _clear (IZ)V _clear + static + 0 o p_84267_ + 1 o p_84268_ + _clearColor (FFFF)V _clearColor + static + 0 o p_84319_ + 1 o p_84320_ + 2 o p_84321_ + 3 o p_84322_ + _clearDepth (D)V _clearDepth + static + 0 o p_84122_ + _clearStencil (I)V _clearStencil + static + 0 o p_84554_ + _colorMask (ZZZZ)V _colorMask + static + 0 o p_84301_ + 1 o p_84302_ + 2 o p_84303_ + 3 o p_84304_ + _deleteTexture (I)V _deleteTexture + static + 0 o p_84542_ + _deleteTextures ([I)V _deleteTextures + static + 0 o p_84366_ + _depthFunc (I)V _depthFunc + static + 0 o p_84324_ + _depthMask (Z)V _depthMask + static + 0 o p_84299_ + _disableBlend ()V _disableBlend + static + _disableColorLogicOp ()V _disableColorLogicOp + static + _disableCull ()V _disableCull + static + _disableDepthTest ()V _disableDepthTest + static + _disablePolygonOffset ()V _disablePolygonOffset + static + _disableScissorTest ()V _disableScissorTest + static + _disableVertexAttribArray (I)V _disableVertexAttribArray + static + 0 o p_84087_ + _drawElements (IIIJ)V _drawElements + static + 0 o p_157054_ + 1 o p_157055_ + 2 o p_157056_ + 3 o p_157057_ + _enableBlend ()V _enableBlend + static + _enableColorLogicOp ()V _enableColorLogicOp + static + _enableCull ()V _enableCull + static + _enableDepthTest ()V _enableDepthTest + static + _enablePolygonOffset ()V _enablePolygonOffset + static + _enableScissorTest ()V _enableScissorTest + static + _enableVertexAttribArray (I)V _enableVertexAttribArray + static + 0 o p_84566_ + _genTexture ()I _genTexture + static + _genTextures ([I)V _genTextures + static + 0 o p_84306_ + _getActiveTexture ()I _getActiveTexture + static + _getError ()I _getError + static + _getInteger (I)I _getInteger + static + 0 o p_84093_ + _getString (I)Ljava/lang/String; _getString + static + 0 o p_84090_ + _getTexImage (IIIIJ)V _getTexImage + static + 0 o p_84228_ + 1 o p_84229_ + 2 o p_84230_ + 3 o p_84231_ + 4 o p_84232_ + _getTexLevelParameter (III)I _getTexLevelParameter + static + 0 o p_84385_ + 1 o p_84386_ + 2 o p_84387_ + _glBindAttribLocation (IILjava/lang/CharSequence;)V _glBindAttribLocation + static + 0 o p_157062_ + 1 o p_157063_ + 2 o p_157064_ + _glBindBuffer (II)V _glBindBuffer + static + 0 o p_84481_ + 1 o p_84482_ + _glBindFramebuffer (II)V _glBindFramebuffer + static + 0 o p_84487_ + 1 o p_84488_ + _glBindRenderbuffer (II)V _glBindRenderbuffer + static + 0 o p_157066_ + 1 o p_157067_ + _glBindVertexArray (I)V _glBindVertexArray + static + 0 o p_157069_ + _glBlitFrameBuffer (IIIIIIIIII)V _glBlitFrameBuffer + static + 0 o p_84189_ + 1 o p_84190_ + 2 o p_84191_ + 3 o p_84192_ + 4 o p_84193_ + 5 o p_84194_ + 6 o p_84195_ + 7 o p_84196_ + 8 o p_84197_ + 9 o p_84198_ + _glBufferData (IJI)V _glBufferData + static + 0 o p_157071_ + 1 o p_157072_ + 2 o p_157073_ + _glBufferData (ILjava/nio/ByteBuffer;I)V _glBufferData + static + 0 o p_84257_ + 1 o p_84258_ + 2 o p_84259_ + _glCopyTexSubImage2D (IIIIIIII)V _glCopyTexSubImage2D + static + 0 o p_84180_ + 1 o p_84181_ + 2 o p_84182_ + 3 o p_84183_ + 4 o p_84184_ + 5 o p_84185_ + 6 o p_84186_ + 7 o p_84187_ + _glDeleteBuffers (I)V _glDeleteBuffers + static + 0 o p_84497_ + _glDeleteFramebuffers (I)V _glDeleteFramebuffers + static + 0 o p_84503_ + _glDeleteRenderbuffers (I)V _glDeleteRenderbuffers + static + 0 o p_157075_ + _glDeleteVertexArrays (I)V _glDeleteVertexArrays + static + 0 o p_157077_ + _glDrawPixels (IIIIJ)V _glDrawPixels + static + 0 o p_157079_ + 1 o p_157080_ + 2 o p_157081_ + 3 o p_157082_ + 4 o p_157083_ + _glFramebufferRenderbuffer (IIII)V _glFramebufferRenderbuffer + static + 0 o p_157085_ + 1 o p_157086_ + 2 o p_157087_ + 3 o p_157088_ + _glFramebufferTexture2D (IIIII)V _glFramebufferTexture2D + static + 0 o p_84174_ + 1 o p_84175_ + 2 o p_84176_ + 3 o p_84177_ + 4 o p_84178_ + _glGenBuffers ()I _glGenBuffers + static + _glGenVertexArrays ()I _glGenVertexArrays + static + _glGetAttribLocation (ILjava/lang/CharSequence;)I _glGetAttribLocation + static + 0 o p_84399_ + 1 o p_84400_ + _glGetUniformLocation (ILjava/lang/CharSequence;)I _glGetUniformLocation + static + 0 o p_84346_ + 1 o p_84347_ + _glMapBuffer (II)Ljava/nio/ByteBuffer; _glMapBuffer + static + 0 o p_157091_ + 1 o p_157092_ + _glRenderbufferStorage (IIII)V _glRenderbufferStorage + static + 0 o p_157094_ + 1 o p_157095_ + 2 o p_157096_ + 3 o p_157097_ + _glUniform1 (ILjava/nio/IntBuffer;)V _glUniform1 + static + 0 o p_84264_ + 1 o p_84265_ + _glUniform1 (ILjava/nio/FloatBuffer;)V _glUniform1 + static + 0 o p_84349_ + 1 o p_84350_ + _glUniform1i (II)V _glUniform1i + static + 0 o p_84468_ + 1 o p_84469_ + _glUniform2 (ILjava/nio/FloatBuffer;)V _glUniform2 + static + 0 o p_84402_ + 1 o p_84403_ + _glUniform2 (ILjava/nio/IntBuffer;)V _glUniform2 + static + 0 o p_84352_ + 1 o p_84353_ + _glUniform3 (ILjava/nio/FloatBuffer;)V _glUniform3 + static + 0 o p_84436_ + 1 o p_84437_ + _glUniform3 (ILjava/nio/IntBuffer;)V _glUniform3 + static + 0 o p_84405_ + 1 o p_84406_ + _glUniform4 (ILjava/nio/FloatBuffer;)V _glUniform4 + static + 0 o p_84462_ + 1 o p_84463_ + _glUniform4 (ILjava/nio/IntBuffer;)V _glUniform4 + static + 0 o p_84439_ + 1 o p_84440_ + _glUniformMatrix2 (IZLjava/nio/FloatBuffer;)V _glUniformMatrix2 + static + 0 o p_84270_ + 1 o p_84271_ + 2 o p_84272_ + _glUniformMatrix3 (IZLjava/nio/FloatBuffer;)V _glUniformMatrix3 + static + 0 o p_84355_ + 1 o p_84356_ + 2 o p_84357_ + _glUniformMatrix4 (IZLjava/nio/FloatBuffer;)V _glUniformMatrix4 + static + 0 o p_84408_ + 1 o p_84409_ + 2 o p_84410_ + _glUnmapBuffer (I)V _glUnmapBuffer + static + 0 o p_157099_ + _glUseProgram (I)V _glUseProgram + static + 0 o p_84479_ + _logicOp (I)V _logicOp + static + 0 o p_84533_ + _pixelStore (II)V _pixelStore + static + 0 o p_84523_ + 1 o p_84524_ + _polygonMode (II)V _polygonMode + static + 0 o p_84517_ + 1 o p_84518_ + _polygonOffset (FF)V _polygonOffset + static + 0 o p_84137_ + 1 o p_84138_ + _readPixels (IIIIIIJ)V _readPixels + static + 0 o p_157101_ + 1 o p_157102_ + 2 o p_157103_ + 3 o p_157104_ + 4 o p_157105_ + 5 o p_157106_ + 6 o p_157107_ + _readPixels (IIIIIILjava/nio/ByteBuffer;)V _readPixels + static + 0 o p_84220_ + 1 o p_84221_ + 2 o p_84222_ + 3 o p_84223_ + 4 o p_84224_ + 5 o p_84225_ + 6 o p_84226_ + _scissorBox (IIII)V _scissorBox + static + 0 o p_84169_ + 1 o p_84170_ + 2 o p_84171_ + 3 o p_84172_ + _stencilFunc (III)V _stencilFunc + static + 0 o p_84427_ + 1 o p_84428_ + 2 o p_84429_ + _stencilMask (I)V _stencilMask + static + 0 o p_84551_ + _stencilOp (III)V _stencilOp + static + 0 o p_84453_ + 1 o p_84454_ + 2 o p_84455_ + _texImage2D (IIIIIIIILjava/nio/IntBuffer;)V _texImage2D + static + 0 o p_84210_ + 1 o p_84211_ + 2 o p_84212_ + 3 o p_84213_ + 4 o p_84214_ + 5 o p_84215_ + 6 o p_84216_ + 7 o p_84217_ + 8 o p_84218_ + _texParameter (IIF)V _texParameter + static + 0 o p_84161_ + 1 o p_84162_ + 2 o p_84163_ + _texParameter (III)V _texParameter + static + 0 o p_84332_ + 1 o p_84333_ + 2 o p_84334_ + _texSubImage2D (IIIIIIIIJ)V _texSubImage2D + static + 0 o p_84200_ + 1 o p_84201_ + 2 o p_84202_ + 3 o p_84203_ + 4 o p_84204_ + 5 o p_84205_ + 6 o p_84206_ + 7 o p_84207_ + 8 o p_84208_ + _upload (IIIIILehk$a;Ljava/nio/IntBuffer;Ljava/util/function/Consumer;)V _upload + static + 0 o p_287672_ + 1 o p_287577_ + 2 o p_287618_ + 3 o p_287777_ + 4 o p_287707_ + 5 o p_287692_ + 6 o p_287674_ + 7 o p_287588_ + _vertexAttribIPointer (IIIIJ)V _vertexAttribIPointer + static + 0 o p_157109_ + 1 o p_157110_ + 2 o p_157111_ + 3 o p_157112_ + 4 o p_157113_ + _vertexAttribPointer (IIIZIJ)V _vertexAttribPointer + static + 0 o p_84239_ + 1 o p_84240_ + 2 o p_84241_ + 3 o p_84242_ + 4 o p_84243_ + 5 o p_84244_ + _viewport (IIII)V _viewport + static + 0 o p_84431_ + 1 o p_84432_ + 2 o p_84433_ + 3 o p_84434_ + getBoundFramebuffer ()I getBoundFramebuffer + static + glActiveTexture (I)V glActiveTexture + static + 0 o p_84515_ + glAttachShader (II)V glAttachShader + static + 0 o p_84424_ + 1 o p_84425_ + glBlendFuncSeparate (IIII)V glBlendFuncSeparate + static + 0 o p_84389_ + 1 o p_84390_ + 2 o p_84391_ + 3 o p_84392_ + glCheckFramebufferStatus (I)I glCheckFramebufferStatus + static + 0 o p_84509_ + glCompileShader (I)V glCompileShader + static + 0 o p_84466_ + glCreateProgram ()I glCreateProgram + static + glCreateShader (I)I glCreateShader + static + 0 o p_84448_ + glDeleteProgram (I)V glDeleteProgram + static + 0 o p_84485_ + glDeleteShader (I)V glDeleteShader + static + 0 o p_84422_ + glGenFramebuffers ()I glGenFramebuffers + static + glGenRenderbuffers ()I glGenRenderbuffers + static + glGetProgramInfoLog (II)Ljava/lang/String; glGetProgramInfoLog + static + 0 o p_84499_ + 1 o p_84500_ + glGetProgrami (II)I glGetProgrami + static + 0 o p_84382_ + 1 o p_84383_ + glGetShaderInfoLog (II)Ljava/lang/String; glGetShaderInfoLog + static + 0 o p_84493_ + 1 o p_84494_ + glGetShaderi (II)I glGetShaderi + static + 0 o p_84450_ + 1 o p_84451_ + glLinkProgram (I)V glLinkProgram + static + 0 o p_84491_ + glShaderSource (ILjava/util/List;)V glShaderSource + static + 0 o p_157117_ + 1 o p_157118_ + lambda$static$0 (I)Lcom/mojang/blaze3d/platform/GlStateManager$l; lambda$static$0 + static + 0 o p_157120_ + lambda$static$1 (I)[Lcom/mojang/blaze3d/platform/GlStateManager$l; lambda$static$1 + static + 0 o p_157122_ + lambda$upload$2 (IIIIILehk$a;Ljava/nio/IntBuffer;Ljava/util/function/Consumer;)V lambda$upload$2 + static + 0 o p_287293_ + 1 o p_287294_ + 2 o p_287295_ + 3 o p_287296_ + 4 o p_287297_ + 5 o p_287298_ + 6 o p_287299_ + 7 o p_287300_ + setupGui3DDiffuseLighting (Lorg/joml/Vector3f;Lorg/joml/Vector3f;)V setupGui3DDiffuseLighting + static + 0 o p_254290_ + 1 o p_254528_ + setupGuiFlatDiffuseLighting (Lorg/joml/Vector3f;Lorg/joml/Vector3f;)V setupGuiFlatDiffuseLighting + static + 0 o p_254237_ + 1 o p_253658_ + setupLevelDiffuseLighting (Lorg/joml/Vector3f;Lorg/joml/Vector3f;Lorg/joml/Matrix4f;)V setupLevelDiffuseLighting + static + 0 o p_254343_ + 1 o p_254532_ + 2 o p_254339_ + upload (IIIIILehk$a;Ljava/nio/IntBuffer;Ljava/util/function/Consumer;)V upload + static + 0 o p_287776_ + 1 o p_287602_ + 2 o p_287633_ + 3 o p_287778_ + 4 o p_287752_ + 5 o p_287608_ + 6 o p_287753_ + 7 o p_287739_ +com/mojang/blaze3d/platform/GlStateManager$DestFactor com/mojang/blaze3d/platform/GlStateManager$DestFactor + $VALUES $VALUES + CONSTANT_ALPHA CONSTANT_ALPHA + CONSTANT_COLOR CONSTANT_COLOR + DST_ALPHA DST_ALPHA + DST_COLOR DST_COLOR + ONE ONE + ONE_MINUS_CONSTANT_ALPHA ONE_MINUS_CONSTANT_ALPHA + ONE_MINUS_CONSTANT_COLOR ONE_MINUS_CONSTANT_COLOR + ONE_MINUS_DST_ALPHA ONE_MINUS_DST_ALPHA + ONE_MINUS_DST_COLOR ONE_MINUS_DST_COLOR + ONE_MINUS_SRC_ALPHA ONE_MINUS_SRC_ALPHA + ONE_MINUS_SRC_COLOR ONE_MINUS_SRC_COLOR + SRC_ALPHA SRC_ALPHA + SRC_COLOR SRC_COLOR + ZERO ZERO + value value + $values ()[Lcom/mojang/blaze3d/platform/GlStateManager$DestFactor; $values + static + ()V + static + (Ljava/lang/String;II)V + 0 o p_84650_ + 1 o p_84651_ + 2 o p_84652_ + valueOf (Ljava/lang/String;)Lcom/mojang/blaze3d/platform/GlStateManager$DestFactor; valueOf + static + 0 o p_84654_ + values ()[Lcom/mojang/blaze3d/platform/GlStateManager$DestFactor; values + static +com/mojang/blaze3d/platform/GlStateManager$SourceFactor com/mojang/blaze3d/platform/GlStateManager$SourceFactor + $VALUES $VALUES + CONSTANT_ALPHA CONSTANT_ALPHA + CONSTANT_COLOR CONSTANT_COLOR + DST_ALPHA DST_ALPHA + DST_COLOR DST_COLOR + ONE ONE + ONE_MINUS_CONSTANT_ALPHA ONE_MINUS_CONSTANT_ALPHA + ONE_MINUS_CONSTANT_COLOR ONE_MINUS_CONSTANT_COLOR + ONE_MINUS_DST_ALPHA ONE_MINUS_DST_ALPHA + ONE_MINUS_DST_COLOR ONE_MINUS_DST_COLOR + ONE_MINUS_SRC_ALPHA ONE_MINUS_SRC_ALPHA + ONE_MINUS_SRC_COLOR ONE_MINUS_SRC_COLOR + SRC_ALPHA SRC_ALPHA + SRC_ALPHA_SATURATE SRC_ALPHA_SATURATE + SRC_COLOR SRC_COLOR + ZERO ZERO + value value + $values ()[Lcom/mojang/blaze3d/platform/GlStateManager$SourceFactor; $values + static + ()V + static + (Ljava/lang/String;II)V + 0 o p_84755_ + 1 o p_84756_ + 2 o p_84757_ + valueOf (Ljava/lang/String;)Lcom/mojang/blaze3d/platform/GlStateManager$SourceFactor; valueOf + static + 0 o p_84759_ + values ()[Lcom/mojang/blaze3d/platform/GlStateManager$SourceFactor; values + static +com/mojang/blaze3d/platform/GlStateManager$a com/mojang/blaze3d/platform/GlStateManager$BlendState + a f_84577_ + b f_84578_ + c f_84579_ + d f_84580_ + e f_84581_ + ()V +com/mojang/blaze3d/platform/GlStateManager$b com/mojang/blaze3d/platform/GlStateManager$BooleanState + a f_84585_ + b f_84586_ + (I)V + 0 o p_84588_ + a ()V m_84589_ + a (Z)V m_84590_ + 0 o p_84591_ + b ()V m_84592_ +com/mojang/blaze3d/platform/GlStateManager$c com/mojang/blaze3d/platform/GlStateManager$ColorLogicState + a f_84603_ + b f_84604_ + ()V +com/mojang/blaze3d/platform/GlStateManager$d com/mojang/blaze3d/platform/GlStateManager$ColorMask + a f_84608_ + b f_84609_ + c f_84610_ + d f_84611_ + ()V +com/mojang/blaze3d/platform/GlStateManager$e com/mojang/blaze3d/platform/GlStateManager$CullState + a f_84621_ + b f_84622_ + ()V +com/mojang/blaze3d/platform/GlStateManager$f com/mojang/blaze3d/platform/GlStateManager$DepthState + a f_84626_ + b f_84627_ + c f_84628_ + ()V +com/mojang/blaze3d/platform/GlStateManager$g com/mojang/blaze3d/platform/GlStateManager$LogicOp + a AND + b AND_INVERTED + c AND_REVERSE + d CLEAR + e COPY + f COPY_INVERTED + g EQUIV + h INVERT + i NAND + j NOOP + k NOR + l OR + m OR_INVERTED + n OR_REVERSE + o SET + p XOR + q f_84715_ + r $VALUES + ()V + static + (Ljava/lang/String;II)V + 0 o p_84719_ + 1 o p_84720_ + 2 o p_84721_ + a ()[Lcom/mojang/blaze3d/platform/GlStateManager$g; m_157125_ + static + valueOf (Ljava/lang/String;)Lcom/mojang/blaze3d/platform/GlStateManager$g; valueOf + static + 0 o p_84723_ + values ()[Lcom/mojang/blaze3d/platform/GlStateManager$g; values + static +com/mojang/blaze3d/platform/GlStateManager$h com/mojang/blaze3d/platform/GlStateManager$PolygonOffsetState + a f_84725_ + b f_84726_ + c f_84727_ + d f_84728_ + ()V +com/mojang/blaze3d/platform/GlStateManager$i com/mojang/blaze3d/platform/GlStateManager$ScissorState + a f_84732_ + ()V +com/mojang/blaze3d/platform/GlStateManager$j com/mojang/blaze3d/platform/GlStateManager$StencilFunc + a f_84761_ + b f_84762_ + c f_84763_ + ()V +com/mojang/blaze3d/platform/GlStateManager$k com/mojang/blaze3d/platform/GlStateManager$StencilState + a f_84767_ + b f_84768_ + c f_84769_ + d f_84770_ + e f_84771_ + ()V +com/mojang/blaze3d/platform/GlStateManager$l com/mojang/blaze3d/platform/GlStateManager$TextureState + a f_84801_ + ()V +com/mojang/blaze3d/platform/GlStateManager$m com/mojang/blaze3d/platform/GlStateManager$Viewport + a INSTANCE + b f_84806_ + c f_84807_ + d f_84808_ + e f_84809_ + f $VALUES + ()V + static + (Ljava/lang/String;I)V + 0 o p_84813_ + 1 o p_84814_ + a ()I m_157126_ + static + b ()I m_157127_ + static + c ()I m_157128_ + static + d ()I m_157129_ + static + e ()[Lcom/mojang/blaze3d/platform/GlStateManager$m; m_157130_ + static + valueOf (Ljava/lang/String;)Lcom/mojang/blaze3d/platform/GlStateManager$m; valueOf + static + 0 o p_84816_ + values ()[Lcom/mojang/blaze3d/platform/GlStateManager$m; values + static +com/mojang/blaze3d/platform/TextureUtil com/mojang/blaze3d/platform/TextureUtil + DEFAULT_IMAGE_BUFFER_SIZE DEFAULT_IMAGE_BUFFER_SIZE + LOGGER LOGGER + MIN_MIPMAP_LEVEL MIN_MIPMAP_LEVEL + ()V + static + ()V + bind (I)V bind + static + 0 o p_85310_ + generateTextureId ()I generateTextureId + static + getDebugTexturePath (Ljava/nio/file/Path;)Ljava/nio/file/Path; getDebugTexturePath + static + 0 o p_262015_ + getDebugTexturePath ()Ljava/nio/file/Path; getDebugTexturePath + static + prepareImage (Lehk$b;III)V prepareImage + static + 0 o p_85293_ + 1 o p_85294_ + 2 o p_85295_ + 3 o p_85296_ + prepareImage (Lehk$b;IIII)V prepareImage + static + 0 o p_85298_ + 1 o p_85299_ + 2 o p_85300_ + 3 o p_85301_ + 4 o p_85302_ + prepareImage (IIII)V prepareImage + static + 0 o p_85288_ + 1 o p_85289_ + 2 o p_85290_ + 3 o p_85291_ + prepareImage (III)V prepareImage + static + 0 o p_85284_ + 1 o p_85285_ + 2 o p_85286_ + readResource (Ljava/nio/channels/ReadableByteChannel;I)Ljava/nio/ByteBuffer; readResource + static + 0 o p_273208_ + 1 o p_273297_ + readResource (Ljava/io/InputStream;)Ljava/nio/ByteBuffer; readResource + static + 0 o p_85304_ + releaseTextureId (I)V releaseTextureId + static + 0 o p_85282_ + writeAsPNG (Ljava/nio/file/Path;Ljava/lang/String;IIII)V writeAsPNG + static + 0 o p_261923_ + 1 o p_262070_ + 2 o p_261655_ + 3 o p_261576_ + 4 o p_261966_ + 5 o p_261775_ + writeAsPNG (Ljava/nio/file/Path;Ljava/lang/String;IIIILjava/util/function/IntUnaryOperator;)V writeAsPNG + static + 0 o p_285286_ + 1 o p_285408_ + 2 o p_285400_ + 3 o p_285244_ + 4 o p_285373_ + 5 o p_285206_ + 6 o p_284988_ +com/mojang/blaze3d/systems/RenderSystem com/mojang/blaze3d/systems/RenderSystem + LOGGER LOGGER + MAX_SUPPORTED_TEXTURE_SIZE MAX_SUPPORTED_TEXTURE_SIZE + MINIMUM_ATLAS_TEXTURE_SIZE MINIMUM_ATLAS_TEXTURE_SIZE + RENDER_THREAD_TESSELATOR RENDER_THREAD_TESSELATOR + apiDescription apiDescription + gameThread gameThread + inverseViewRotationMatrix inverseViewRotationMatrix + isInInit isInInit + isReplayingQueue isReplayingQueue + lastDrawTime lastDrawTime + modelViewMatrix modelViewMatrix + modelViewStack modelViewStack + pollEventsWaitStart pollEventsWaitStart + pollingEvents pollingEvents + projectionMatrix projectionMatrix + recordingQueue recordingQueue + renderThread renderThread + savedProjectionMatrix savedProjectionMatrix + savedVertexSorting savedVertexSorting + shader shader + shaderColor shaderColor + shaderFogColor shaderFogColor + shaderFogEnd shaderFogEnd + shaderFogShape shaderFogShape + shaderFogStart shaderFogStart + shaderGameTime shaderGameTime + shaderGlintAlpha shaderGlintAlpha + shaderLightDirections shaderLightDirections + shaderLineWidth shaderLineWidth + shaderTextures shaderTextures + sharedSequential sharedSequential + sharedSequentialLines sharedSequentialLines + sharedSequentialQuad sharedSequentialQuad + textureMatrix textureMatrix + vertexSorting vertexSorting + ()V + static + ()V + _backupProjectionMatrix ()V _backupProjectionMatrix + static + _restoreProjectionMatrix ()V _restoreProjectionMatrix + static + _setShaderColor (FFFF)V _setShaderColor + static + 0 o p_157160_ + 1 o p_157161_ + 2 o p_157162_ + 3 o p_157163_ + _setShaderFogColor (FFFF)V _setShaderFogColor + static + 0 o p_157165_ + 1 o p_157166_ + 2 o p_157167_ + 3 o p_157168_ + _setShaderFogEnd (F)V _setShaderFogEnd + static + 0 o p_157170_ + _setShaderFogShape (Lehw;)V _setShaderFogShape + static + 0 o p_202040_ + _setShaderFogStart (F)V _setShaderFogStart + static + 0 o p_157172_ + _setShaderGlintAlpha (F)V _setShaderGlintAlpha + static + 0 o p_268319_ + _setShaderLights (Lorg/joml/Vector3f;Lorg/joml/Vector3f;)V _setShaderLights + static + 0 o p_253618_ + 1 o p_253929_ + _setShaderTexture (ILacq;)V _setShaderTexture + static + 0 o p_157180_ + 1 o p_157181_ + _setShaderTexture (II)V _setShaderTexture + static + 0 o p_157177_ + 1 o p_157178_ + activeTexture (I)V activeTexture + static + 0 o p_69389_ + applyModelViewMatrix ()V applyModelViewMatrix + static + assertInInitPhase ()V assertInInitPhase + static + assertOnGameThread ()V assertOnGameThread + static + assertOnGameThreadOrInit ()V assertOnGameThreadOrInit + static + assertOnRenderThread ()V assertOnRenderThread + static + assertOnRenderThreadOrInit ()V assertOnRenderThreadOrInit + static + backupProjectionMatrix ()V backupProjectionMatrix + static + beginInitialization ()V beginInitialization + static + bindTexture (I)V bindTexture + static + 0 o p_69397_ + bindTextureForSetup (I)V bindTextureForSetup + static + 0 o p_157185_ + blendEquation (I)V blendEquation + static + 0 o p_69404_ + blendFunc (II)V blendFunc + static + 0 o p_69406_ + 1 o p_69407_ + blendFunc (Lcom/mojang/blaze3d/platform/GlStateManager$SourceFactor;Lcom/mojang/blaze3d/platform/GlStateManager$DestFactor;)V blendFunc + static + 0 o p_69409_ + 1 o p_69410_ + blendFuncSeparate (Lcom/mojang/blaze3d/platform/GlStateManager$SourceFactor;Lcom/mojang/blaze3d/platform/GlStateManager$DestFactor;Lcom/mojang/blaze3d/platform/GlStateManager$SourceFactor;Lcom/mojang/blaze3d/platform/GlStateManager$DestFactor;)V blendFuncSeparate + static + 0 o p_69417_ + 1 o p_69418_ + 2 o p_69419_ + 3 o p_69420_ + blendFuncSeparate (IIII)V blendFuncSeparate + static + 0 o p_69412_ + 1 o p_69413_ + 2 o p_69414_ + 3 o p_69415_ + clear (IZ)V clear + static + 0 o p_69422_ + 1 o p_69423_ + clearColor (FFFF)V clearColor + static + 0 o p_69425_ + 1 o p_69426_ + 2 o p_69427_ + 3 o p_69428_ + clearDepth (D)V clearDepth + static + 0 o p_69431_ + clearStencil (I)V clearStencil + static + 0 o p_69433_ + colorMask (ZZZZ)V colorMask + static + 0 o p_69445_ + 1 o p_69446_ + 2 o p_69447_ + 3 o p_69448_ + constructThreadException ()Ljava/lang/IllegalStateException; constructThreadException + static + defaultBlendFunc ()V defaultBlendFunc + static + deleteTexture (I)V deleteTexture + static + 0 o p_69455_ + depthFunc (I)V depthFunc + static + 0 o p_69457_ + depthMask (Z)V depthMask + static + 0 o p_69459_ + disableBlend ()V disableBlend + static + disableColorLogicOp ()V disableColorLogicOp + static + disableCull ()V disableCull + static + disableDepthTest ()V disableDepthTest + static + disablePolygonOffset ()V disablePolygonOffset + static + disableScissor ()V disableScissor + static + drawElements (III)V drawElements + static + 0 o p_157187_ + 1 o p_157188_ + 2 o p_157189_ + enableBlend ()V enableBlend + static + enableColorLogicOp ()V enableColorLogicOp + static + enableCull ()V enableCull + static + enableDepthTest ()V enableDepthTest + static + enablePolygonOffset ()V enablePolygonOffset + static + enableScissor (IIII)V enableScissor + static + 0 o p_69489_ + 1 o p_69490_ + 2 o p_69491_ + 3 o p_69492_ + finishInitialization ()V finishInitialization + static + flipFrame (J)V flipFrame + static + 0 o p_69496_ + getApiDescription ()Ljava/lang/String; getApiDescription + static + getBackendDescription ()Ljava/lang/String; getBackendDescription + static + getCapsString ()Ljava/lang/String; getCapsString + static + getInverseViewRotationMatrix ()Lorg/joml/Matrix3f; getInverseViewRotationMatrix + static + getModelViewMatrix ()Lorg/joml/Matrix4f; getModelViewMatrix + static + getModelViewStack ()Leij; getModelViewStack + static + getProjectionMatrix ()Lorg/joml/Matrix4f; getProjectionMatrix + static + getSequentialBuffer (Leio$b;)Lcom/mojang/blaze3d/systems/RenderSystem$a; getSequentialBuffer + static + 0 o p_221942_ + getShader ()Lfki; getShader + static + getShaderColor ()[F getShaderColor + static + getShaderFogColor ()[F getShaderFogColor + static + getShaderFogEnd ()F getShaderFogEnd + static + getShaderFogShape ()Lehw; getShaderFogShape + static + getShaderFogStart ()F getShaderFogStart + static + getShaderGameTime ()F getShaderGameTime + static + getShaderGlintAlpha ()F getShaderGlintAlpha + static + getShaderLineWidth ()F getShaderLineWidth + static + getShaderTexture (I)I getShaderTexture + static + 0 o p_157204_ + getString (ILjava/util/function/Consumer;)V getString + static + 0 o p_69520_ + 1 o p_69521_ + getTextureMatrix ()Lorg/joml/Matrix4f; getTextureMatrix + static + getVertexSorting ()Leir; getVertexSorting + static + glBindBuffer (ILjava/util/function/IntSupplier;)V glBindBuffer + static + 0 o p_157209_ + 1 o p_157210_ + glBindVertexArray (Ljava/util/function/Supplier;)V glBindVertexArray + static + 0 o p_157212_ + glBufferData (ILjava/nio/ByteBuffer;I)V glBufferData + static + 0 o p_69526_ + 1 o p_69527_ + 2 o p_69528_ + glDeleteBuffers (I)V glDeleteBuffers + static + 0 o p_69530_ + glDeleteVertexArrays (I)V glDeleteVertexArrays + static + 0 o p_157214_ + glGenBuffers (Ljava/util/function/Consumer;)V glGenBuffers + static + 0 o p_69532_ + glGenVertexArrays (Ljava/util/function/Consumer;)V glGenVertexArrays + static + 0 o p_157216_ + glUniform1 (ILjava/nio/IntBuffer;)V glUniform1 + static + 0 o p_69541_ + 1 o p_69542_ + glUniform1 (ILjava/nio/FloatBuffer;)V glUniform1 + static + 0 o p_69538_ + 1 o p_69539_ + glUniform1i (II)V glUniform1i + static + 0 o p_69544_ + 1 o p_69545_ + glUniform2 (ILjava/nio/IntBuffer;)V glUniform2 + static + 0 o p_69550_ + 1 o p_69551_ + glUniform2 (ILjava/nio/FloatBuffer;)V glUniform2 + static + 0 o p_69547_ + 1 o p_69548_ + glUniform3 (ILjava/nio/IntBuffer;)V glUniform3 + static + 0 o p_69556_ + 1 o p_69557_ + glUniform3 (ILjava/nio/FloatBuffer;)V glUniform3 + static + 0 o p_69553_ + 1 o p_69554_ + glUniform4 (ILjava/nio/IntBuffer;)V glUniform4 + static + 0 o p_69562_ + 1 o p_69563_ + glUniform4 (ILjava/nio/FloatBuffer;)V glUniform4 + static + 0 o p_69559_ + 1 o p_69560_ + glUniformMatrix2 (IZLjava/nio/FloatBuffer;)V glUniformMatrix2 + static + 0 o p_69565_ + 1 o p_69566_ + 2 o p_69567_ + glUniformMatrix3 (IZLjava/nio/FloatBuffer;)V glUniformMatrix3 + static + 0 o p_69569_ + 1 o p_69570_ + 2 o p_69571_ + glUniformMatrix4 (IZLjava/nio/FloatBuffer;)V glUniformMatrix4 + static + 0 o p_69573_ + 1 o p_69574_ + 2 o p_69575_ + initBackendSystem ()Lapv$a; initBackendSystem + static + initGameThread (Z)V initGameThread + static + 0 o p_69578_ + initRenderThread ()V initRenderThread + static + initRenderer (IZ)V initRenderer + static + 0 o p_69581_ + 1 o p_69582_ + isFrozenAtPollEvents ()Z isFrozenAtPollEvents + static + isInInitPhase ()Z isInInitPhase + static + isOnGameThread ()Z isOnGameThread + static + isOnRenderThread ()Z isOnRenderThread + static + isOnRenderThreadOrInit ()Z isOnRenderThreadOrInit + static + lambda$activeTexture$13 (I)V lambda$activeTexture$13 + static + 0 o p_157218_ + lambda$applyModelViewMatrix$69 (Lorg/joml/Matrix4f;)V lambda$applyModelViewMatrix$69 + static + 0 o p_253274_ + lambda$backupProjectionMatrix$70 ()V lambda$backupProjectionMatrix$70 + static + lambda$bindTexture$16 (I)V lambda$bindTexture$16 + static + 0 o p_157223_ + lambda$blendEquation$9 (I)V lambda$blendEquation$9 + static + 0 o p_157225_ + lambda$blendFunc$5 (Lcom/mojang/blaze3d/platform/GlStateManager$SourceFactor;Lcom/mojang/blaze3d/platform/GlStateManager$DestFactor;)V lambda$blendFunc$5 + static + 0 o p_157227_ + 1 o p_157228_ + lambda$blendFunc$6 (II)V lambda$blendFunc$6 + static + 0 o p_157230_ + 1 o p_157231_ + lambda$blendFuncSeparate$7 (Lcom/mojang/blaze3d/platform/GlStateManager$SourceFactor;Lcom/mojang/blaze3d/platform/GlStateManager$DestFactor;Lcom/mojang/blaze3d/platform/GlStateManager$SourceFactor;Lcom/mojang/blaze3d/platform/GlStateManager$DestFactor;)V lambda$blendFuncSeparate$7 + static + 0 o p_157233_ + 1 o p_157234_ + 2 o p_157235_ + 3 o p_157236_ + lambda$blendFuncSeparate$8 (IIII)V lambda$blendFuncSeparate$8 + static + 0 o p_157238_ + 1 o p_157239_ + 2 o p_157240_ + 3 o p_157241_ + lambda$clear$25 (IZ)V lambda$clear$25 + static + 0 o p_157243_ + 1 o p_157244_ + lambda$clearColor$23 (FFFF)V lambda$clearColor$23 + static + 0 o p_157246_ + 1 o p_157247_ + 2 o p_157248_ + 3 o p_157249_ + lambda$clearDepth$22 (D)V lambda$clearDepth$22 + static + 0 o p_157251_ + lambda$clearStencil$24 (I)V lambda$clearStencil$24 + static + 0 o p_157253_ + lambda$colorMask$18 (ZZZZ)V lambda$colorMask$18 + static + 0 o p_157255_ + 1 o p_157256_ + 2 o p_157257_ + 3 o p_157258_ + lambda$deleteTexture$15 (I)V lambda$deleteTexture$15 + static + 0 o p_157260_ + lambda$depthFunc$3 (I)V lambda$depthFunc$3 + static + 0 o p_157262_ + lambda$depthMask$4 (Z)V lambda$depthMask$4 + static + 0 o p_157264_ + lambda$drawElements$33 (III)V lambda$drawElements$33 + static + 0 o p_202046_ + 1 o p_202047_ + 2 o p_202048_ + lambda$enableScissor$2 (IIII)V lambda$enableScissor$2 + static + 0 o p_157270_ + 1 o p_157271_ + 2 o p_157272_ + 3 o p_157273_ + lambda$getString$37 (ILjava/util/function/Consumer;)V lambda$getString$37 + static + 0 o p_202050_ + 1 o p_202051_ + lambda$glBindBuffer$39 (ILjava/util/function/IntSupplier;)V lambda$glBindBuffer$39 + static + 0 o p_202053_ + 1 o p_202054_ + lambda$glBindVertexArray$40 (Ljava/util/function/Supplier;)V lambda$glBindVertexArray$40 + static + 0 o p_202056_ + lambda$glDeleteBuffers$41 (I)V lambda$glDeleteBuffers$41 + static + 0 o p_202058_ + lambda$glDeleteVertexArrays$42 (I)V lambda$glDeleteVertexArrays$42 + static + 0 o p_202060_ + lambda$glGenBuffers$60 (Ljava/util/function/Consumer;)V lambda$glGenBuffers$60 + static + 0 o p_202062_ + lambda$glGenVertexArrays$61 (Ljava/util/function/Consumer;)V lambda$glGenVertexArrays$61 + static + 0 o p_202064_ + lambda$glUniform1$44 (ILjava/nio/IntBuffer;)V lambda$glUniform1$44 + static + 0 o p_202066_ + 1 o p_202067_ + lambda$glUniform1$48 (ILjava/nio/FloatBuffer;)V lambda$glUniform1$48 + static + 0 o p_202069_ + 1 o p_202070_ + lambda$glUniform1i$43 (II)V lambda$glUniform1i$43 + static + 0 o p_202072_ + 1 o p_202073_ + lambda$glUniform2$45 (ILjava/nio/IntBuffer;)V lambda$glUniform2$45 + static + 0 o p_202075_ + 1 o p_202076_ + lambda$glUniform2$49 (ILjava/nio/FloatBuffer;)V lambda$glUniform2$49 + static + 0 o p_202078_ + 1 o p_202079_ + lambda$glUniform3$46 (ILjava/nio/IntBuffer;)V lambda$glUniform3$46 + static + 0 o p_202081_ + 1 o p_202082_ + lambda$glUniform3$50 (ILjava/nio/FloatBuffer;)V lambda$glUniform3$50 + static + 0 o p_202084_ + 1 o p_202085_ + lambda$glUniform4$47 (ILjava/nio/IntBuffer;)V lambda$glUniform4$47 + static + 0 o p_202087_ + 1 o p_202088_ + lambda$glUniform4$51 (ILjava/nio/FloatBuffer;)V lambda$glUniform4$51 + static + 0 o p_202090_ + 1 o p_202091_ + lambda$glUniformMatrix2$52 (IZLjava/nio/FloatBuffer;)V lambda$glUniformMatrix2$52 + static + 0 o p_202093_ + 1 o p_202094_ + 2 o p_202095_ + lambda$glUniformMatrix3$53 (IZLjava/nio/FloatBuffer;)V lambda$glUniformMatrix3$53 + static + 0 o p_202097_ + 1 o p_202098_ + 2 o p_202099_ + lambda$glUniformMatrix4$54 (IZLjava/nio/FloatBuffer;)V lambda$glUniformMatrix4$54 + static + 0 o p_202101_ + 1 o p_202102_ + 2 o p_202103_ + lambda$lineWidth$34 (F)V lambda$lineWidth$34 + static + 0 o p_202105_ + lambda$logicOp$12 (Lcom/mojang/blaze3d/platform/GlStateManager$g;)V lambda$logicOp$12 + static + 0 o p_157332_ + lambda$pixelStore$35 (II)V lambda$pixelStore$35 + static + 0 o p_202107_ + 1 o p_202108_ + lambda$polygonMode$10 (II)V lambda$polygonMode$10 + static + 0 o p_157337_ + 1 o p_157338_ + lambda$polygonOffset$11 (FF)V lambda$polygonOffset$11 + static + 0 o p_157340_ + 1 o p_157341_ + lambda$readPixels$36 (IIIIIILjava/nio/ByteBuffer;)V lambda$readPixels$36 + static + 0 o p_202110_ + 1 o p_202111_ + 2 o p_202112_ + 3 o p_202113_ + 4 o p_202114_ + 5 o p_202115_ + 6 o p_202116_ + lambda$renderCrosshair$38 (I)V lambda$renderCrosshair$38 + static + 0 o p_202118_ + lambda$resetTextureMatrix$68 ()V lambda$resetTextureMatrix$68 + static + lambda$restoreProjectionMatrix$71 ()V lambda$restoreProjectionMatrix$71 + static + lambda$setInverseViewRotationMatrix$66 (Lorg/joml/Matrix3f;)V lambda$setInverseViewRotationMatrix$66 + static + 0 o p_253279_ + lambda$setProjectionMatrix$65 (Lorg/joml/Matrix4f;Leir;)V lambda$setProjectionMatrix$65 + static + 0 o p_277211_ + 1 o p_277212_ + lambda$setShader$62 (Ljava/util/function/Supplier;)V lambda$setShader$62 + static + 0 o p_202126_ + lambda$setShaderColor$32 (FFFF)V lambda$setShaderColor$32 + static + 0 o p_202128_ + 1 o p_202129_ + 2 o p_202130_ + 3 o p_202131_ + lambda$setShaderFogColor$29 (FFFF)V lambda$setShaderFogColor$29 + static + 0 o p_157364_ + 1 o p_157365_ + 2 o p_157366_ + 3 o p_157367_ + lambda$setShaderFogEnd$28 (F)V lambda$setShaderFogEnd$28 + static + 0 o p_157369_ + lambda$setShaderFogShape$30 (Lehw;)V lambda$setShaderFogShape$30 + static + 0 o p_202133_ + lambda$setShaderFogStart$26 (F)V lambda$setShaderFogStart$26 + static + 0 o p_157371_ + lambda$setShaderGameTime$72 (F)V lambda$setShaderGameTime$72 + static + 0 o p_202135_ + lambda$setShaderGlintAlpha$27 (F)V lambda$setShaderGlintAlpha$27 + static + 0 o p_267834_ + lambda$setShaderLights$31 (Lorg/joml/Vector3f;Lorg/joml/Vector3f;)V lambda$setShaderLights$31 + static + 0 o p_253275_ + 1 o p_253276_ + lambda$setShaderTexture$63 (ILacq;)V lambda$setShaderTexture$63 + static + 0 o p_202140_ + 1 o p_202141_ + lambda$setShaderTexture$64 (II)V lambda$setShaderTexture$64 + static + 0 o p_202143_ + 1 o p_202144_ + lambda$setTextureMatrix$67 (Lorg/joml/Matrix4f;)V lambda$setTextureMatrix$67 + static + 0 o p_253273_ + lambda$setupGui3DDiffuseLighting$59 (Lorg/joml/Vector3f;Lorg/joml/Vector3f;)V lambda$setupGui3DDiffuseLighting$59 + static + 0 o p_253271_ + 1 o p_253272_ + lambda$setupGuiFlatDiffuseLighting$58 (Lorg/joml/Vector3f;Lorg/joml/Vector3f;)V lambda$setupGuiFlatDiffuseLighting$58 + static + 0 o p_253277_ + 1 o p_253278_ + lambda$setupLevelDiffuseLighting$57 (Lorg/joml/Vector3f;Lorg/joml/Vector3f;Lorg/joml/Matrix4f;)V lambda$setupLevelDiffuseLighting$57 + static + 0 o p_253267_ + 1 o p_253268_ + 2 o p_253269_ + lambda$setupOverlayColor$55 (Ljava/util/function/IntSupplier;)V lambda$setupOverlayColor$55 + static + 0 o p_202158_ + lambda$static$0 (Lit/unimi/dsi/fastutil/ints/IntConsumer;I)V lambda$static$0 + static + 0 o p_157398_ + 1 o p_157399_ + lambda$static$1 (Lit/unimi/dsi/fastutil/ints/IntConsumer;I)V lambda$static$1 + static + 0 o p_157401_ + 1 o p_157402_ + lambda$stencilFunc$19 (III)V lambda$stencilFunc$19 + static + 0 o p_157404_ + 1 o p_157405_ + 2 o p_157406_ + lambda$stencilMask$20 (I)V lambda$stencilMask$20 + static + 0 o p_157408_ + lambda$stencilOp$21 (III)V lambda$stencilOp$21 + static + 0 o p_157410_ + 1 o p_157411_ + 2 o p_157412_ + lambda$teardownOverlayColor$56 ()V lambda$teardownOverlayColor$56 + static + lambda$texParameter$14 (III)V lambda$texParameter$14 + static + 0 o p_157415_ + 1 o p_157416_ + 2 o p_157417_ + lambda$viewport$17 (IIII)V lambda$viewport$17 + static + 0 o p_157419_ + 1 o p_157420_ + 2 o p_157421_ + 3 o p_157422_ + limitDisplayFPS (I)V limitDisplayFPS + static + 0 o p_69831_ + lineWidth (F)V lineWidth + static + 0 o p_69833_ + logicOp (Lcom/mojang/blaze3d/platform/GlStateManager$g;)V logicOp + static + 0 o p_69836_ + maxSupportedTextureSize ()I maxSupportedTextureSize + static + pixelStore (II)V pixelStore + static + 0 o p_69855_ + 1 o p_69856_ + pollEvents ()V pollEvents + static + polygonMode (II)V polygonMode + static + 0 o p_69861_ + 1 o p_69862_ + polygonOffset (FF)V polygonOffset + static + 0 o p_69864_ + 1 o p_69865_ + readPixels (IIIIIILjava/nio/ByteBuffer;)V readPixels + static + 0 o p_69872_ + 1 o p_69873_ + 2 o p_69874_ + 3 o p_69875_ + 4 o p_69876_ + 5 o p_69877_ + 6 o p_69878_ + recordRenderCall (Legt;)V recordRenderCall + static + 0 o p_69880_ + renderCrosshair (I)V renderCrosshair + static + 0 o p_69882_ + renderThreadTesselator ()Leil; renderThreadTesselator + static + replayQueue ()V replayQueue + static + resetTextureMatrix ()V resetTextureMatrix + static + restoreProjectionMatrix ()V restoreProjectionMatrix + static + runAsFancy (Ljava/lang/Runnable;)V runAsFancy + static + 0 o p_69891_ + setErrorCallback (Lorg/lwjgl/glfw/GLFWErrorCallbackI;)V setErrorCallback + static + 0 o p_69901_ + setInverseViewRotationMatrix (Lorg/joml/Matrix3f;)V setInverseViewRotationMatrix + static + 0 o p_253989_ + setProjectionMatrix (Lorg/joml/Matrix4f;Leir;)V setProjectionMatrix + static + 0 o p_277884_ + 1 o p_277702_ + setShader (Ljava/util/function/Supplier;)V setShader + static + 0 o p_157428_ + setShaderColor (FFFF)V setShaderColor + static + 0 o p_157430_ + 1 o p_157431_ + 2 o p_157432_ + 3 o p_157433_ + setShaderFogColor (FFF)V setShaderFogColor + static + 0 o p_157435_ + 1 o p_157436_ + 2 o p_157437_ + setShaderFogColor (FFFF)V setShaderFogColor + static + 0 o p_157439_ + 1 o p_157440_ + 2 o p_157441_ + 3 o p_157442_ + setShaderFogEnd (F)V setShaderFogEnd + static + 0 o p_157444_ + setShaderFogShape (Lehw;)V setShaderFogShape + static + 0 o p_202161_ + setShaderFogStart (F)V setShaderFogStart + static + 0 o p_157446_ + setShaderGameTime (JF)V setShaderGameTime + static + 0 o p_157448_ + 1 o p_157449_ + setShaderGlintAlpha (F)V setShaderGlintAlpha + static + 0 o p_268329_ + setShaderGlintAlpha (D)V setShaderGlintAlpha + static + 0 o p_268332_ + setShaderLights (Lorg/joml/Vector3f;Lorg/joml/Vector3f;)V setShaderLights + static + 0 o p_254155_ + 1 o p_254006_ + setShaderTexture (II)V setShaderTexture + static + 0 o p_157454_ + 1 o p_157455_ + setShaderTexture (ILacq;)V setShaderTexture + static + 0 o p_157457_ + 1 o p_157458_ + setTextureMatrix (Lorg/joml/Matrix4f;)V setTextureMatrix + static + 0 o p_254081_ + setupDefaultState (IIII)V setupDefaultState + static + 0 o p_69903_ + 1 o p_69904_ + 2 o p_69905_ + 3 o p_69906_ + setupGui3DDiffuseLighting (Lorg/joml/Vector3f;Lorg/joml/Vector3f;)V setupGui3DDiffuseLighting + static + 0 o p_253859_ + 1 o p_253890_ + setupGuiFlatDiffuseLighting (Lorg/joml/Vector3f;Lorg/joml/Vector3f;)V setupGuiFlatDiffuseLighting + static + 0 o p_254419_ + 1 o p_254483_ + setupLevelDiffuseLighting (Lorg/joml/Vector3f;Lorg/joml/Vector3f;Lorg/joml/Matrix4f;)V setupLevelDiffuseLighting + static + 0 o p_254489_ + 1 o p_254541_ + 2 o p_253812_ + setupOverlayColor (Ljava/util/function/IntSupplier;I)V setupOverlayColor + static + 0 o p_69921_ + 1 o p_69922_ + setupShaderLights (Lfki;)V setupShaderLights + static + 0 o p_157462_ + stencilFunc (III)V stencilFunc + static + 0 o p_69926_ + 1 o p_69927_ + 2 o p_69928_ + stencilMask (I)V stencilMask + static + 0 o p_69930_ + stencilOp (III)V stencilOp + static + 0 o p_69932_ + 1 o p_69933_ + 2 o p_69934_ + teardownOverlayColor ()V teardownOverlayColor + static + texParameter (III)V texParameter + static + 0 o p_69938_ + 1 o p_69939_ + 2 o p_69940_ + viewport (IIII)V viewport + static + 0 o p_69950_ + 1 o p_69951_ + 2 o p_69952_ + 3 o p_69953_ +com/mojang/blaze3d/systems/RenderSystem$1 com/mojang/blaze3d/systems/RenderSystem$1 + a f_221943_ + b f_157463_ + ()V + static +com/mojang/blaze3d/systems/RenderSystem$a com/mojang/blaze3d/systems/RenderSystem$AutoStorageIndexBuffer + a f_157465_ + b f_157466_ + c f_157467_ + d f_157468_ + e f_157469_ + f f_157470_ + (IILcom/mojang/blaze3d/systems/RenderSystem$a$a;)V + 0 o p_157472_ + 1 o p_157473_ + 2 o p_157474_ + a (Ljava/nio/ByteBuffer;)Lit/unimi/dsi/fastutil/ints/IntConsumer; m_157478_ + 0 o p_157479_ + a (I)Z m_221944_ + 0 o p_221945_ + a ()Leio$a; m_157483_ + a (Ljava/nio/ByteBuffer;I)V m_157480_ + static + 0 o p_157481_ + 1 o p_157482_ + b (I)V m_221946_ + 0 o p_221947_ + c (I)V m_157476_ + 0 o p_157477_ +com/mojang/blaze3d/systems/RenderSystem$a$a com/mojang/blaze3d/systems/RenderSystem$AutoStorageIndexBuffer$IndexGenerator + accept (Lit/unimi/dsi/fastutil/ints/IntConsumer;I)V m_157487_ + 0 o p_157488_ + 1 o p_157489_ +coo net/minecraft/world/level/block/AnvilBlock + a f_48764_ + b f_48765_ + c f_48766_ + d f_48767_ + e f_48768_ + f f_48769_ + g f_48770_ + h f_48771_ + i f_48772_ + j f_48773_ + k f_48774_ + l f_152050_ + m f_152051_ + ()V + static + (Ldca$d;)V + 0 o p_48777_ + a (Lcmm;Lgu;Lbvg;)V m_142525_ + 0 o p_152053_ + 1 o p_152054_ + 2 o p_152055_ + a (Lbfj;)Lben; m_252932_ + 0 o p_254036_ + a (Ldcb;Lcvz;)Ldcb; m_6843_ + 0 o p_48811_ + 1 o p_48812_ + a (Ldcc$a;)V m_7926_ + 0 o p_48814_ + a (Ldcb;Lcls;Lgu;Leen;)Lefb; m_5940_ + 0 o p_48816_ + 1 o p_48817_ + 2 o p_48818_ + 3 o p_48819_ + a (Ldcb;Lcls;Lgu;Ldxu;)Z m_7357_ + 0 o p_48799_ + 1 o p_48800_ + 2 o p_48801_ + 3 o p_48802_ + a (Ldcb;Lcmm;Lgu;Lbyo;Lbdw;Leee;)Lbdx; m_6227_ + 0 o p_48804_ + 1 o p_48805_ + 2 o p_48806_ + 3 o p_48807_ + 4 o p_48808_ + 5 o p_48809_ + a (Lcih;)Ldcb; m_5573_ + 0 o p_48781_ + a (Lbvg;)V m_6788_ + 0 o p_48779_ + a (Lcmm;Lgu;Ldcb;Ldcb;Lbvg;)V m_48792_ + 0 o p_48793_ + 1 o p_48794_ + 2 o p_48795_ + 3 o p_48796_ + 4 o p_48797_ + a (Lcmm;Lgu;ILbyn;Lbyo;)Lcbf; m_48782_ + static + 0 o p_48783_ + 1 o p_48784_ + 2 o p_48785_ + 3 o p_48786_ + 4 o p_48787_ + b (Ldcb;Lcmm;Lgu;)Lbea; m_7246_ + 0 o p_48821_ + 1 o p_48822_ + 2 o p_48823_ + d (Ldcb;Lcls;Lgu;)I m_6248_ + 0 o p_48827_ + 1 o p_48828_ + 2 o p_48829_ + e (Ldcb;)Ldcb; m_48824_ + static + 0 o p_48825_ +cop net/minecraft/world/level/block/AttachedStemBlock + a f_48830_ + b f_152057_ + c f_48832_ + d f_48831_ + e f_152058_ + ()V + static + (Lcxk;Ljava/util/function/Supplier;Ldca$d;)V + 0 o p_152060_ + 1 o p_152061_ + 2 o p_152062_ + a (Ldcb;Lha;Ldcb;Lcmn;Lgu;Lgu;)Ldcb; m_7417_ + 0 o p_48848_ + 1 o p_48849_ + 2 o p_48850_ + 3 o p_48851_ + 4 o p_48852_ + 5 o p_48853_ + a (Ldcb;Lcvz;)Ldcb; m_6843_ + 0 o p_48845_ + 1 o p_48846_ + a (Ldcc$a;)V m_7926_ + 0 o p_48855_ + a (Ldcb;Lcls;Lgu;Leen;)Lefb; m_5940_ + 0 o p_48858_ + 1 o p_48859_ + 2 o p_48860_ + 3 o p_48861_ + a (Lcls;Lgu;Ldcb;)Lcfz; m_7397_ + 0 o p_48838_ + 1 o p_48839_ + 2 o p_48840_ + a (Ldcb;Lcui;)Ldcb; m_6943_ + 0 o p_48842_ + 1 o p_48843_ + d (Ldcb;Lcls;Lgu;)Z m_6266_ + 0 o p_48863_ + 1 o p_48864_ + 2 o p_48865_ +coq net/minecraft/world/level/block/AzaleaBlock + a f_152063_ + b f_152064_ + ()V + static + (Ldca$d;)V + 0 o p_152067_ + a (Lcmm;Lapf;Lgu;Ldcb;)Z m_214167_ + 0 o p_220712_ + 1 o p_220713_ + 2 o p_220714_ + 3 o p_220715_ + a (Lcmp;Lgu;Ldcb;Z)Z m_7370_ + 0 o p_256329_ + 1 o p_256107_ + 2 o p_255771_ + 3 o p_255916_ + a (Ldcb;Lcls;Lgu;Leen;)Lefb; m_5940_ + 0 o p_152084_ + 1 o p_152085_ + 2 o p_152086_ + 3 o p_152087_ + a (Laif;Lapf;Lgu;Ldcb;)V m_214148_ + 0 o p_220707_ + 1 o p_220708_ + 2 o p_220709_ + 3 o p_220710_ + d (Ldcb;Lcls;Lgu;)Z m_6266_ + 0 o p_152089_ + 1 o p_152090_ + 2 o p_152091_ +cor net/minecraft/world/level/block/BambooSaplingBlock + a f_152100_ + b f_48954_ + ()V + static + (Ldca$d;)V + 0 o p_48957_ + a (Ldcb;Lha;Ldcb;Lcmn;Lgu;Lgu;)Ldcb; m_7417_ + 0 o p_48990_ + 1 o p_48991_ + 2 o p_48992_ + 3 o p_48993_ + 4 o p_48994_ + 5 o p_48995_ + a (Ldcb;Lcmp;Lgu;)Z m_7898_ + 0 o p_48986_ + 1 o p_48987_ + 2 o p_48988_ + a (Ldcb;Lbyo;Lcls;Lgu;)F m_5880_ + 0 o p_48981_ + 1 o p_48982_ + 2 o p_48983_ + 3 o p_48984_ + a (Lcmm;Lapf;Lgu;Ldcb;)Z m_214167_ + 0 o p_220748_ + 1 o p_220749_ + 2 o p_220750_ + 3 o p_220751_ + a (Lcmp;Lgu;Ldcb;Z)Z m_7370_ + 0 o p_256136_ + 1 o p_256527_ + 2 o p_255620_ + 3 o p_256316_ + a (Ldcb;Lcls;Lgu;Leen;)Lefb; m_5940_ + 0 o p_49003_ + 1 o p_49004_ + 2 o p_49005_ + 3 o p_49006_ + a (Lcls;Lgu;Ldcb;)Lcfz; m_7397_ + 0 o p_48964_ + 1 o p_48965_ + 2 o p_48966_ + a (Lcmm;Lgu;)V m_48972_ + 0 o p_48973_ + 1 o p_48974_ + a (Laif;Lapf;Lgu;Ldcb;)V m_214148_ + 0 o p_220743_ + 1 o p_220744_ + 2 o p_220745_ + 3 o p_220746_ + b (Ldcb;Laif;Lgu;Lapf;)V m_213898_ + 0 o p_220753_ + 1 o p_220754_ + 2 o p_220755_ + 3 o p_220756_ +cos net/minecraft/world/level/block/BambooStalkBlock + a f_260434_ + b f_260643_ + c f_260619_ + d f_260479_ + e f_260493_ + f f_260505_ + g f_260603_ + h f_260716_ + i f_260694_ + j f_260667_ + k f_260621_ + l f_260513_ + m f_260569_ + n f_260497_ + ()V + static + (Ldca$d;)V + 0 o p_261753_ + a (Ldcb;Lha;Ldcb;Lcmn;Lgu;Lgu;)Ldcb; m_7417_ + 0 o p_261476_ + 1 o p_261512_ + 2 o p_262167_ + 3 o p_261956_ + 4 o p_261876_ + 5 o p_262140_ + a (Ldcb;Lbyo;Lcls;Lgu;)F m_5880_ + 0 o p_261691_ + 1 o p_262171_ + 2 o p_261621_ + 3 o p_261500_ + a (Ldcc$a;)V m_7926_ + 0 o p_261641_ + a (Ldcb;Laif;Lgu;Lapf;)V m_213897_ + 0 o p_261612_ + 1 o p_261527_ + 2 o p_261846_ + 3 o p_261638_ + a (Lcmp;Lgu;Ldcb;Z)Z m_7370_ + 0 o p_262065_ + 1 o p_262033_ + 2 o p_261700_ + 3 o p_261524_ + a (Ldcb;Lcls;Lgu;Leen;)Lefb; m_5940_ + 0 o p_261515_ + 1 o p_261586_ + 2 o p_261526_ + 3 o p_261930_ + a (Ldcb;Lcmm;Lgu;Lapf;I)V m_261305_ + 0 o p_261855_ + 1 o p_262076_ + 2 o p_262109_ + 3 o p_261633_ + 4 o p_261759_ + a (Laif;Lapf;Lgu;Ldcb;)V m_214148_ + 0 o p_261845_ + 1 o p_262034_ + 2 o p_261955_ + 3 o p_261685_ + a (Lcls;Lgu;)I m_261076_ + 0 o p_261541_ + 1 o p_261593_ + a (Ldcb;Lcls;Lgu;Ldxu;)Z m_7357_ + 0 o p_262166_ + 1 o p_262143_ + 2 o p_261968_ + 3 o p_261513_ + a (Ldcb;Lcmp;Lgu;)Z m_7898_ + 0 o p_261860_ + 1 o p_262154_ + 2 o p_261493_ + a (Lcmm;Lapf;Lgu;Ldcb;)Z m_214167_ + 0 o p_261870_ + 1 o p_261802_ + 2 o p_262123_ + 3 o p_261972_ + a (Lcih;)Ldcb; m_5573_ + 0 o p_261764_ + a_ (Ldcb;Lcls;Lgu;)Z m_180643_ + 0 o p_262062_ + 1 o p_261848_ + 2 o p_261466_ + b (Lcls;Lgu;)I m_261132_ + 0 o p_261927_ + 1 o p_261481_ + b (Ldcb;Laif;Lgu;Lapf;)V m_213898_ + 0 o p_261931_ + 1 o p_261751_ + 2 o p_261616_ + 3 o p_261766_ + c (Ldcb;Lcls;Lgu;Leen;)Lefb; m_5939_ + 0 o p_261560_ + 1 o p_261965_ + 2 o p_261950_ + 3 o p_261571_ + c (Ldcb;Lcls;Lgu;)Z m_7420_ + 0 o p_261479_ + 1 o p_261942_ + 2 o p_261844_ + e_ (Ldcb;)Z m_6724_ + 0 o p_262083_ +cot net/minecraft/world/level/block/BannerBlock + a f_49007_ + b f_49008_ + c f_49009_ + ()V + static + (Lcen;Ldca$d;)V + 0 o p_49012_ + 1 o p_49013_ + a (Ldcb;Lha;Ldcb;Lcmn;Lgu;Lgu;)Ldcb; m_7417_ + 0 o p_49029_ + 1 o p_49030_ + 2 o p_49031_ + 3 o p_49032_ + 4 o p_49033_ + 5 o p_49034_ + a (Ldcb;Lcmp;Lgu;)Z m_7898_ + 0 o p_49019_ + 1 o p_49020_ + 2 o p_49021_ + a (Ldcb;Lcvz;)Ldcb; m_6843_ + 0 o p_49026_ + 1 o p_49027_ + a (Ldcc$a;)V m_7926_ + 0 o p_49036_ + a (Lcen;)Lcpn; m_49014_ + static + 0 o p_49015_ + a (Lcih;)Ldcb; m_5573_ + 0 o p_49017_ + a (Ldcb;Lcls;Lgu;Leen;)Lefb; m_5940_ + 0 o p_49038_ + 1 o p_49039_ + 2 o p_49040_ + 3 o p_49041_ + a (Ldcb;Lcui;)Ldcb; m_6943_ + 0 o p_49023_ + 1 o p_49024_ +cou net/minecraft/world/level/block/BarrelBlock + a f_49042_ + b f_49043_ + ()V + static + (Ldca$d;)V + 0 o p_49046_ + a (Ldcb;Lcvz;)Ldcb; m_6843_ + 0 o p_49085_ + 1 o p_49086_ + a (Ldcc$a;)V m_7926_ + 0 o p_49088_ + a (Ldcb;Lcmm;Lgu;Ldcb;Z)V m_6810_ + 0 o p_49076_ + 1 o p_49077_ + 2 o p_49078_ + 3 o p_49079_ + 4 o p_49080_ + a (Ldcb;Laif;Lgu;Lapf;)V m_213897_ + 0 o p_220758_ + 1 o p_220759_ + 2 o p_220760_ + 3 o p_220761_ + a (Lcmm;Lgu;Ldcb;Lbfz;Lcfz;)V m_6402_ + 0 o p_49052_ + 1 o p_49053_ + 2 o p_49054_ + 3 o p_49055_ + 4 o p_49056_ + a (Ldcb;Lcmm;Lgu;)I m_6782_ + 0 o p_49065_ + 1 o p_49066_ + 2 o p_49067_ + a (Ldcb;Lcui;)Ldcb; m_6943_ + 0 o p_49082_ + 1 o p_49083_ + a (Ldcb;Lcmm;Lgu;Lbyo;Lbdw;Leee;)Lbdx; m_6227_ + 0 o p_49069_ + 1 o p_49070_ + 2 o p_49071_ + 3 o p_49072_ + 4 o p_49073_ + 5 o p_49074_ + a (Lcih;)Ldcb; m_5573_ + 0 o p_49048_ + a (Lgu;Ldcb;)Lczn; m_142194_ + 0 o p_152102_ + 1 o p_152103_ + b_ (Ldcb;)Lcvs; m_7514_ + 0 o p_49090_ + d_ (Ldcb;)Z m_7278_ + 0 o p_49058_ +cov net/minecraft/world/level/block/BarrierBlock + (Ldca$d;)V + 0 o p_49092_ + b (Ldcb;Lcls;Lgu;)F m_7749_ + 0 o p_49094_ + 1 o p_49095_ + 2 o p_49096_ + b_ (Ldcb;)Lcvs; m_7514_ + 0 o p_49098_ + c (Ldcb;Lcls;Lgu;)Z m_7420_ + 0 o p_49100_ + 1 o p_49101_ + 2 o p_49102_ +cow net/minecraft/world/level/block/BaseCoralFanBlock + a f_49103_ + ()V + static + (Ldca$d;)V + 0 o p_49106_ + a (Ldcb;Lcls;Lgu;Leen;)Lefb; m_5940_ + 0 o p_49108_ + 1 o p_49109_ + 2 o p_49110_ + 3 o p_49111_ +cox net/minecraft/world/level/block/BaseCoralPlantBlock + a f_152104_ + b f_49148_ + ()V + static + (Ldca$d;)V + 0 o p_49151_ + a (Ldcb;Lcls;Lgu;Leen;)Lefb; m_5940_ + 0 o p_49153_ + 1 o p_49154_ + 2 o p_49155_ + 3 o p_49156_ +coy net/minecraft/world/level/block/BaseCoralPlantTypeBlock + a f_49157_ + c f_49158_ + ()V + static + (Ldca$d;)V + 0 o p_49161_ + a (Ldcb;Lha;Ldcb;Lcmn;Lgu;Lgu;)Ldcb; m_7417_ + 0 o p_49173_ + 1 o p_49174_ + 2 o p_49175_ + 3 o p_49176_ + 4 o p_49177_ + 5 o p_49178_ + a (Ldcb;Lcmn;Lgu;)V m_49164_ + 0 o p_49165_ + 1 o p_49166_ + 2 o p_49167_ + a (Ldcb;Lcmp;Lgu;)Z m_7898_ + 0 o p_49169_ + 1 o p_49170_ + 2 o p_49171_ + a (Ldcc$a;)V m_7926_ + 0 o p_49180_ + a (Lcih;)Ldcb; m_5573_ + 0 o p_49163_ + a (Ldcb;Lcls;Lgu;Leen;)Lefb; m_5940_ + 0 o p_49182_ + 1 o p_49183_ + 2 o p_49184_ + 3 o p_49185_ + c_ (Ldcb;)Ldxe; m_5888_ + 0 o p_49191_ + e (Ldcb;Lcls;Lgu;)Z m_49186_ + static + 0 o p_49187_ + 1 o p_49188_ + 2 o p_49189_ +coz net/minecraft/world/level/block/BaseCoralWallFanBlock + a f_49192_ + b f_49193_ + ()V + static + (Ldca$d;)V + 0 o p_49196_ + a (Ldcb;Lha;Ldcb;Lcmn;Lgu;Lgu;)Ldcb; m_7417_ + 0 o p_49210_ + 1 o p_49211_ + 2 o p_49212_ + 3 o p_49213_ + 4 o p_49214_ + 5 o p_49215_ + a (Ldcb;Lcmp;Lgu;)Z m_7898_ + 0 o p_49200_ + 1 o p_49201_ + 2 o p_49202_ + a (Ldcb;Lcvz;)Ldcb; m_6843_ + 0 o p_49207_ + 1 o p_49208_ + a (Ldcc$a;)V m_7926_ + 0 o p_49217_ + a (Lcih;)Ldcb; m_5573_ + 0 o p_49198_ + a (Ldcb;Lcls;Lgu;Leen;)Lefb; m_5940_ + 0 o p_49219_ + 1 o p_49220_ + 2 o p_49221_ + 3 o p_49222_ + a (Ldcb;Lcui;)Ldcb; m_6943_ + 0 o p_49204_ + 1 o p_49205_ +cp net/minecraft/advancements/critereon/PlayerPredicate + b f_156743_ + c f_62245_ + d f_62246_ + e f_62247_ + f f_62248_ + g f_62249_ + h f_156744_ + (Lcj$d;Lcmj;Ljava/util/Map;Lit/unimi/dsi/fastutil/objects/Object2BooleanMap;Ljava/util/Map;Lbo;)V + 0 o p_156746_ + 1 o p_156747_ + 2 o p_156748_ + 3 o p_156749_ + 4 o p_156750_ + 5 o p_156751_ + a (Lamo;)Lacq; m_62265_ + static + 0 o p_62266_ + a (Lcom/google/gson/JsonObject;Lacq;Lcp$c;)V m_222493_ + static + 0 o p_222494_ + 1 o p_222495_ + 2 o p_222496_ + a (Lamq;Lacq;)Lamo; m_62267_ + static + 0 o p_62268_ + 1 o p_62269_ + a (Lcom/google/gson/JsonObject;Lacq;Ljava/lang/Boolean;)V m_222497_ + static + 0 o p_222498_ + 1 o p_222499_ + 2 o p_222500_ + a (Lbfj;)Z m_156764_ + static + 0 o p_156765_ + a ()Lcom/google/gson/JsonObject; m_213616_ + a (Lit/unimi/dsi/fastutil/objects/Object2BooleanMap;Ljava/util/Map$Entry;)V m_62286_ + static + 0 o p_62287_ + 1 o p_62288_ + a (Lbfj;Laif;Leei;)Z m_153246_ + 0 o p_222484_ + 1 o p_222485_ + 2 o p_222486_ + a (Lcom/google/gson/JsonArray;Lamo;Lcj$d;)V m_257058_ + static + 0 o p_258106_ + 1 o p_222489_ + 2 o p_222490_ + a (Lcom/google/gson/JsonObject;)Lcp; m_222491_ + static + 0 o p_222492_ + b (Lcom/google/gson/JsonElement;)Lcp$c; m_62289_ + static + 0 o p_62290_ + c ()Lbp$a; m_213836_ +cp$a net/minecraft/advancements/critereon/PlayerPredicate$AdvancementCriterionsPredicate + a f_62291_ + (Lit/unimi/dsi/fastutil/objects/Object2BooleanMap;)V + 0 o p_62293_ + a (Lag;)Z test + 0 o p_62296_ + a ()Lcom/google/gson/JsonElement; m_7943_ + test (Ljava/lang/Object;)Z test + 0 o p_62298_ +cp$b net/minecraft/advancements/critereon/PlayerPredicate$AdvancementDonePredicate + a f_62299_ + (Z)V + 0 o p_62301_ + a (Lag;)Z test + 0 o p_62304_ + a ()Lcom/google/gson/JsonElement; m_7943_ + test (Ljava/lang/Object;)Z test + 0 o p_62306_ +cp$c net/minecraft/advancements/critereon/PlayerPredicate$AdvancementPredicate + a ()Lcom/google/gson/JsonElement; m_7943_ +cp$d net/minecraft/advancements/critereon/PlayerPredicate$Builder + a f_62307_ + b f_62308_ + c f_62309_ + d f_62310_ + e f_62311_ + f f_156766_ + ()V + a (Lacq;Z)Lcp$d; m_156780_ + 0 o p_156781_ + 1 o p_156782_ + a (Lbo;)Lcp$d; m_156771_ + 0 o p_156772_ + a ()Lcp$d; m_156767_ + static + a (Lamo;Lcj$d;)Lcp$d; m_156768_ + 0 o p_156769_ + 1 o p_156770_ + a (Lacq;Ljava/util/Map;)Lcp$d; m_156777_ + 0 o p_156778_ + 1 o p_156779_ + a (Lcj$d;)Lcp$d; m_156775_ + 0 o p_156776_ + a (Lcmj;)Lcp$d; m_156773_ + 0 o p_156774_ + b (Lacq;Z)Lcp$d; m_156783_ + 0 o p_156784_ + 1 o p_156785_ + b ()Lcp; m_62313_ +cpa net/minecraft/world/level/block/BaseEntityBlock + (Ldca$d;)V + 0 o p_49224_ + a (Lczp;Lczp;Lczo;)Lczo; m_152132_ + static + 0 o p_152133_ + 1 o p_152134_ + 2 o p_152135_ + a (Ldcb;Lcmm;Lgu;II)Z m_8133_ + 0 o p_49226_ + 1 o p_49227_ + 2 o p_49228_ + 3 o p_49229_ + 4 o p_49230_ + b (Ldcb;Lcmm;Lgu;)Lbea; m_7246_ + 0 o p_49234_ + 1 o p_49235_ + 2 o p_49236_ + b_ (Ldcb;)Lcvs; m_7514_ + 0 o p_49232_ +cpb net/minecraft/world/level/block/BaseFireBlock + a f_152136_ + b f_49237_ + c f_152137_ + d f_49238_ + ()V + static + (Ldca$d;F)V + 0 o p_49241_ + 1 o p_49242_ + a (Lcmm;Lbyo;Lgu;Ldcb;)V m_142387_ + 0 o p_152139_ + 1 o p_152140_ + 2 o p_152141_ + 3 o p_152142_ + a (Ldcb;Lcmm;Lgu;Lbfj;)V m_7892_ + 0 o p_49260_ + 1 o p_49261_ + 2 o p_49262_ + 3 o p_49263_ + a (Ldcb;Lcls;Lgu;Leen;)Lefb; m_5940_ + 0 o p_49274_ + 1 o p_49275_ + 2 o p_49276_ + 3 o p_49277_ + a (Ldcb;Lcmm;Lgu;Lapf;)V m_214162_ + 0 o p_220763_ + 1 o p_220764_ + 2 o p_220765_ + 3 o p_220766_ + a (Lcls;Lgu;)Ldcb; m_49245_ + static + 0 o p_49246_ + 1 o p_49247_ + a (Lcmm;Lgu;Ldcb;Lbyo;)V m_5707_ + 0 o p_49251_ + 1 o p_49252_ + 2 o p_49253_ + 3 o p_49254_ + a (Lcmm;)Z m_49248_ + static + 0 o p_49249_ + a (Lcih;)Ldcb; m_5573_ + 0 o p_49244_ + a (Lcmm;Lgu;Lha;)Z m_49255_ + static + 0 o p_49256_ + 1 o p_49257_ + 2 o p_49258_ + b (Lcmm;Lgu;Lha;)Z m_49269_ + static + 0 o p_49270_ + 1 o p_49271_ + 2 o p_49272_ + b (Ldcb;Lcmm;Lgu;Ldcb;Z)V m_6807_ + 0 o p_49279_ + 1 o p_49280_ + 2 o p_49281_ + 3 o p_49282_ + 4 o p_49283_ + f (Ldcb;)Z m_7599_ + 0 o p_49284_ +cpc net/minecraft/world/level/block/BasePressurePlateBlock + a f_49285_ + b f_49286_ + c f_49287_ + d f_271167_ + ()V + static + (Ldca$d;Ldcq;)V + 0 o p_273450_ + 1 o p_273402_ + a (Ldcb;Lha;Ldcb;Lcmn;Lgu;Lgu;)Ldcb; m_7417_ + 0 o p_49329_ + 1 o p_49330_ + 2 o p_49331_ + 3 o p_49332_ + 4 o p_49333_ + 5 o p_49334_ + a (Ldcb;Lcmm;Lgu;Lbfj;)V m_7892_ + 0 o p_49314_ + 1 o p_49315_ + 2 o p_49316_ + 3 o p_49317_ + a (Ldcb;Lcls;Lgu;Lha;)I m_6378_ + 0 o p_49309_ + 1 o p_49310_ + 2 o p_49311_ + 3 o p_49312_ + a (Ldcb;Lcmm;Lgu;Ldcb;Z)V m_6810_ + 0 o p_49319_ + 1 o p_49320_ + 2 o p_49321_ + 3 o p_49322_ + 4 o p_49323_ + a (Ldcb;Laif;Lgu;Lapf;)V m_213897_ + 0 o p_220768_ + 1 o p_220769_ + 2 o p_220770_ + 3 o p_220771_ + a (Ldcb;I)Ldcb; m_7422_ + 0 o p_49301_ + 1 o p_49302_ + a (Lbfj;Lcmm;Lgu;Ldcb;I)V m_152143_ + 0 o p_152144_ + 1 o p_152145_ + 2 o p_152146_ + 3 o p_152147_ + 4 o p_152148_ + a (Ldcb;Lcls;Lgu;Leen;)Lefb; m_5940_ + 0 o p_49341_ + 1 o p_49342_ + 2 o p_49343_ + 3 o p_49344_ + a ()I m_7342_ + a (Lbfj;)Z m_289614_ + static + 0 o p_289691_ + a (Ldcb;Lcmp;Lgu;)Z m_7898_ + 0 o p_49325_ + 1 o p_49326_ + 2 o p_49327_ + a (Ldcb;)Z m_48673_ + 0 o p_279155_ + a (Lcmm;Leed;Ljava/lang/Class;)I m_289607_ + static + 0 o p_289656_ + 1 o p_289647_ + 2 o p_289686_ + a (Lcmm;Lgu;)V m_49291_ + 0 o p_49292_ + 1 o p_49293_ + b (Lcmm;Lgu;)I m_6693_ + 0 o p_49336_ + 1 o p_49337_ + b (Ldcb;Lcls;Lgu;Lha;)I m_6376_ + 0 o p_49346_ + 1 o p_49347_ + 2 o p_49348_ + 3 o p_49349_ + f_ (Ldcb;)Z m_7899_ + 0 o p_49351_ + g (Ldcb;)I m_6016_ + 0 o p_49354_ +cpd net/minecraft/world/level/block/BaseRailBlock + a f_49355_ + b f_49356_ + c f_152149_ + d f_49357_ + ()V + static + (ZLdca$d;)V + 0 o p_49360_ + 1 o p_49361_ + a (Ldcb;Lha;Ldcb;Lcmn;Lgu;Lgu;)Ldcb; m_7417_ + 0 o p_152151_ + 1 o p_152152_ + 2 o p_152153_ + 3 o p_152154_ + 4 o p_152155_ + 5 o p_152156_ + a (Ldcb;Lcmm;Lgu;Lcpn;)V m_6360_ + 0 o p_49372_ + 1 o p_49373_ + 2 o p_49374_ + 3 o p_49375_ + a (Ldcb;Lcmm;Lgu;Z)Ldcb; m_49389_ + 0 o p_49390_ + 1 o p_49391_ + 2 o p_49392_ + 3 o p_49393_ + a (Ldcb;Lcmm;Lgu;Ldcb;Z)V m_6810_ + 0 o p_49384_ + 1 o p_49385_ + 2 o p_49386_ + 3 o p_49387_ + 4 o p_49388_ + a (Ldcb;Lcls;Lgu;Leen;)Lefb; m_5940_ + 0 o p_49403_ + 1 o p_49404_ + 2 o p_49405_ + 3 o p_49406_ + a (Ldcb;Lcmm;Lgu;Lcpn;Lgu;Z)V m_6861_ + 0 o p_49377_ + 1 o p_49378_ + 2 o p_49379_ + 3 o p_49380_ + 4 o p_49381_ + 5 o p_49382_ + a (Ldcb;Lcmp;Lgu;)Z m_7898_ + 0 o p_49395_ + 1 o p_49396_ + 2 o p_49397_ + a ()Z m_49413_ + a (Lcmm;Lgu;Ldcb;Z)Ldcb; m_49367_ + 0 o p_49368_ + 1 o p_49369_ + 2 o p_49370_ + 3 o p_49371_ + a (Lgu;Lcmm;Lddf;)Z m_49398_ + static + 0 o p_49399_ + 1 o p_49400_ + 2 o p_49401_ + a (Lcmm;Lgu;)Z m_49364_ + static + 0 o p_49365_ + 1 o p_49366_ + a (Lcih;)Ldcb; m_5573_ + 0 o p_49363_ + b (Ldcb;Lcmm;Lgu;Ldcb;Z)V m_6807_ + 0 o p_49408_ + 1 o p_49409_ + 2 o p_49410_ + 3 o p_49411_ + 4 o p_49412_ + b ()Ldde; m_7978_ + c_ (Ldcb;)Ldxe; m_5888_ + 0 o p_152158_ + g (Ldcb;)Z m_49416_ + static + 0 o p_49417_ +cpd$1 net/minecraft/world/level/block/BaseRailBlock$1 + a f_49418_ + ()V + static +cpe net/minecraft/world/level/block/BeaconBeamBlock + a ()Lcen; m_7988_ +cpf net/minecraft/world/level/block/BeaconBlock + (Ldca$d;)V + 0 o p_49421_ + a (Ldcb;Lcmm;Lgu;Lbyo;Lbdw;Leee;)Lbdx; m_6227_ + 0 o p_49432_ + 1 o p_49433_ + 2 o p_49434_ + 3 o p_49435_ + 4 o p_49436_ + 5 o p_49437_ + a ()Lcen; m_7988_ + a (Lcmm;Lgu;Ldcb;Lbfz;Lcfz;)V m_6402_ + 0 o p_49426_ + 1 o p_49427_ + 2 o p_49428_ + 3 o p_49429_ + 4 o p_49430_ + a (Lgu;Ldcb;)Lczn; m_142194_ + 0 o p_152164_ + 1 o p_152165_ + a (Lcmm;Ldcb;Lczp;)Lczo; m_142354_ + 0 o p_152160_ + 1 o p_152161_ + 2 o p_152162_ + b_ (Ldcb;)Lcvs; m_7514_ + 0 o p_49439_ +cpg net/minecraft/world/level/block/BedBlock + a f_49440_ + b f_49441_ + c f_152166_ + d f_49442_ + e f_49443_ + f f_49444_ + g f_49445_ + h f_49446_ + i f_49447_ + j f_49448_ + k f_49449_ + l f_49450_ + m f_152167_ + n f_49451_ + ()V + static + (Lcen;Ldca$d;)V + 0 o p_49454_ + 1 o p_49455_ + a (Ldco;Lha;)Lha; m_49533_ + static + 0 o p_49534_ + 1 o p_49535_ + a ()Lcen; m_49554_ + a (Lcmm;Ldcb;Lgu;Lbfj;F)V m_142072_ + 0 o p_152169_ + 1 o p_152170_ + 2 o p_152171_ + 3 o p_152172_ + 4 o p_152173_ + a (Lha;Lha;)[[I m_49538_ + static + 0 o p_49539_ + 1 o p_49540_ + a (Lbfn;Lclw;Lgu;Lha;Lha;)Ljava/util/Optional; m_49463_ + static + 0 o p_49464_ + 1 o p_49465_ + 2 o p_49466_ + 3 o p_49467_ + 4 o p_49468_ + a (Ldcb;Lgu;)J m_7799_ + 0 o p_49522_ + 1 o p_49523_ + a (Lha;)[[I m_49536_ + static + 0 o p_49537_ + a (Ldcb;Lha;Ldcb;Lcmn;Lgu;Lgu;)Ldcb; m_7417_ + 0 o p_49525_ + 1 o p_49526_ + 2 o p_49527_ + 3 o p_49528_ + 4 o p_49529_ + 5 o p_49530_ + a (Ldcc$a;)V m_7926_ + 0 o p_49532_ + a (Lbfj;)V m_49456_ + 0 o p_49457_ + a (Lbfn;Lclw;Lgu;[[IZ)Ljava/util/Optional; m_49469_ + static + 0 o p_49470_ + 1 o p_49471_ + 2 o p_49472_ + 3 o p_49473_ + 4 o p_49474_ + a (Lcls;Lbfj;)V m_5548_ + 0 o p_49483_ + 1 o p_49484_ + a (Lcls;Lgu;)Lha; m_49485_ + static + 0 o p_49486_ + 1 o p_49487_ + a (Ldcb;Lcls;Lgu;Leen;)Lefb; m_5940_ + 0 o p_49547_ + 1 o p_49548_ + 2 o p_49549_ + 3 o p_49550_ + a (Lbfn;Lclw;Lgu;Lha;F)Ljava/util/Optional; m_260958_ + static + 0 o p_261547_ + 1 o p_261946_ + 2 o p_261614_ + 3 o p_261648_ + 4 o p_261680_ + a (Lcmm;Lgu;Ldcb;Lbfz;Lcfz;)V m_6402_ + 0 o p_49499_ + 1 o p_49500_ + 2 o p_49501_ + 3 o p_49502_ + 4 o p_49503_ + a (Ldcb;Lcls;Lgu;Ldxu;)Z m_7357_ + 0 o p_49510_ + 1 o p_49511_ + 2 o p_49512_ + 3 o p_49513_ + a (Lcmm;Lgu;Ldcb;Lbyo;)V m_5707_ + 0 o p_49505_ + 1 o p_49506_ + 2 o p_49507_ + 3 o p_49508_ + a (Lbyo;Lbyo$a;)V m_49475_ + static + 0 o p_49476_ + 1 o p_49477_ + a (Ldcb;Lcmm;Lgu;Lbyo;Lbdw;Leee;)Lbdx; m_6227_ + 0 o p_49515_ + 1 o p_49516_ + 2 o p_49517_ + 3 o p_49518_ + 4 o p_49519_ + 5 o p_49520_ + a (Lcmm;)Z m_49488_ + static + 0 o p_49489_ + a (Lcmm;Lgu;)Z m_49490_ + 0 o p_49491_ + 1 o p_49492_ + a (Lcih;)Ldcb; m_5573_ + 0 o p_49479_ + a (Lgu;Ldcb;)Lczn; m_142194_ + 0 o p_152175_ + 1 o p_152176_ + b (Lha;Lha;)[[I m_49551_ + static + 0 o p_49552_ + 1 o p_49553_ + b (Lcls;Lgu;)Z m_49541_ + static + 0 o p_49542_ + 1 o p_49543_ + b_ (Ldcb;)Lcvs; m_7514_ + 0 o p_49545_ + g (Ldcb;)Lha; m_49557_ + static + 0 o p_49558_ + h (Ldcb;)Lcrq$a; m_49559_ + static + 0 o p_49560_ +cpg$1 net/minecraft/world/level/block/BedBlock$1 + a f_49561_ + ()V + static +cph net/minecraft/world/level/block/BeehiveBlock + a f_49563_ + b f_49564_ + c f_152177_ + d f_152178_ + ()V + static + (Ldca$d;)V + 0 o p_49568_ + a (Ldcb;Lha;Ldcb;Lcmn;Lgu;Lgu;)Ldcb; m_7417_ + 0 o p_49639_ + 1 o p_49640_ + 2 o p_49641_ + 3 o p_49642_ + 4 o p_49643_ + 5 o p_49644_ + a (Ldcc$a;)V m_7926_ + 0 o p_49646_ + a (Ldcb;Lcmm;Lgu;)I m_6782_ + 0 o p_49620_ + 1 o p_49621_ + 2 o p_49622_ + a (Lcmm;Lgu;Ldcb;)V m_49603_ + 0 o p_49604_ + 1 o p_49605_ + 2 o p_49606_ + a (Ldcb;Lcmm;Lgu;Lapf;)V m_214162_ + 0 o p_220773_ + 1 o p_220774_ + 2 o p_220775_ + 3 o p_220776_ + a (Lcmm;Ldcb;Lgu;Lbyo;Lczk$b;)V m_49594_ + 0 o p_49595_ + 1 o p_49596_ + 2 o p_49597_ + 3 o p_49598_ + 4 o p_49599_ + a (Lcmm;Lgu;Ldcb;Lbyo;)V m_5707_ + 0 o p_49608_ + 1 o p_49609_ + 2 o p_49610_ + 3 o p_49611_ + a (Ldcb;Ldzq$a;)Ljava/util/List; m_49635_ + 0 o p_49636_ + 1 o p_287581_ + a (Lbdw;Lbyo;)V m_49569_ + static + 0 o p_49570_ + 1 o p_49571_ + a (Ldcb;Lcmm;Lgu;Lbyo;Lbdw;Leee;)Lbdx; m_6227_ + 0 o p_49624_ + 1 o p_49625_ + 2 o p_49626_ + 3 o p_49627_ + 4 o p_49628_ + 5 o p_49629_ + a (Lcmm;Ldcb;Lgu;)V m_49590_ + 0 o p_49591_ + 1 o p_49592_ + 2 o p_49593_ + a (Lcmm;Lbyo;Lgu;Ldcb;Lczn;Lcfz;)V m_6240_ + 0 o p_49584_ + 1 o p_49585_ + 2 o p_49586_ + 3 o p_49587_ + 4 o p_49588_ + 5 o p_49589_ + a (Lcmm;DDDDD)V m_49576_ + 0 o p_49577_ + 1 o p_49578_ + 2 o p_49579_ + 3 o p_49580_ + 4 o p_49581_ + 5 o p_49582_ + a (Lcmm;Lgu;Lefb;D)V m_49612_ + 0 o p_49613_ + 1 o p_49614_ + 2 o p_49615_ + 3 o p_49616_ + a (Lcih;)Ldcb; m_5573_ + 0 o p_49573_ + a (Lcmm;Lgu;)V m_49600_ + static + 0 o p_49601_ + 1 o p_49602_ + a (Lgu;Ldcb;)Lczn; m_142194_ + 0 o p_152184_ + 1 o p_152185_ + a (Lcmm;Ldcb;Lczp;)Lczo; m_142354_ + 0 o p_152180_ + 1 o p_152181_ + 2 o p_152182_ + b (Lcmm;Lgu;)V m_49649_ + 0 o p_49650_ + 1 o p_49651_ + b_ (Ldcb;)Lcvs; m_7514_ + 0 o p_49653_ + c (Lcmm;Lgu;)Z m_49654_ + 0 o p_49655_ + 1 o p_49656_ + d_ (Ldcb;)Z m_7278_ + 0 o p_49618_ +cpi net/minecraft/world/level/block/BeetrootBlock + a f_152186_ + b f_49657_ + e f_49658_ + ()V + static + (Ldca$d;)V + 0 o p_49661_ + a (Ldcc$a;)V m_7926_ + 0 o p_49665_ + a (Lcmm;)I m_7125_ + 0 o p_49663_ + a (Ldcb;Lcls;Lgu;Leen;)Lefb; m_5940_ + 0 o p_49672_ + 1 o p_49673_ + 2 o p_49674_ + 3 o p_49675_ + a ()Lddb; m_7959_ + b ()I m_7419_ + b (Ldcb;Laif;Lgu;Lapf;)V m_213898_ + 0 o p_220778_ + 1 o p_220779_ + 2 o p_220780_ + 3 o p_220781_ + c ()Lcml; m_6404_ +cpj net/minecraft/world/level/block/BellBlock + D f_49692_ + E f_49693_ + a f_49679_ + b f_49680_ + c f_49681_ + d f_152187_ + e f_49682_ + f f_49683_ + g f_49684_ + h f_49685_ + i f_49686_ + j f_49687_ + k f_49688_ + l f_49689_ + m f_49690_ + n f_49691_ + ()V + static + (Ldca$d;)V + 0 o p_49696_ + a (Ldcb;Lha;Ldcb;Lcmn;Lgu;Lgu;)Ldcb; m_7417_ + 0 o p_49744_ + 1 o p_49745_ + 2 o p_49746_ + 3 o p_49747_ + 4 o p_49748_ + 5 o p_49749_ + a (Ldcc$a;)V m_7926_ + 0 o p_49751_ + a (Ldcb;Lcmm;Lgu;Lcpn;Lgu;Z)V m_6861_ + 0 o p_49729_ + 1 o p_49730_ + 2 o p_49731_ + 3 o p_49732_ + 4 o p_49733_ + 5 o p_49734_ + a (Lcmm;Ldcb;Leee;Lbyo;Z)Z m_49701_ + 0 o p_49702_ + 1 o p_49703_ + 2 o p_49704_ + 3 o p_49705_ + 4 o p_49706_ + a (Ldcb;Lcls;Lgu;Leen;)Lefb; m_5940_ + 0 o p_49755_ + 1 o p_49756_ + 2 o p_49757_ + 3 o p_49758_ + a (Lbfj;Lcmm;Lgu;Lha;)Z m_152188_ + 0 o p_152189_ + 1 o p_152190_ + 2 o p_152191_ + 3 o p_152192_ + a (Ldcb;Lcls;Lgu;Ldxu;)Z m_7357_ + 0 o p_49717_ + 1 o p_49718_ + 2 o p_49719_ + 3 o p_49720_ + a (Ldcb;Lcmp;Lgu;)Z m_7898_ + 0 o p_49736_ + 1 o p_49737_ + 2 o p_49738_ + a (Ldcb;Lcmm;Lgu;Lbyo;Lbdw;Leee;)Lbdx; m_6227_ + 0 o p_49722_ + 1 o p_49723_ + 2 o p_49724_ + 3 o p_49725_ + 4 o p_49726_ + 5 o p_49727_ + a (Lcmm;Ldcb;Leee;Lbzg;)V m_5581_ + 0 o p_49708_ + 1 o p_49709_ + 2 o p_49710_ + 3 o p_49711_ + a (Ldcb;Lha;D)Z m_49739_ + 0 o p_49740_ + 1 o p_49741_ + 2 o p_49742_ + a (Lcih;)Ldcb; m_5573_ + 0 o p_49698_ + a (Lcmm;Lgu;Lha;)Z m_49712_ + 0 o p_49713_ + 1 o p_49714_ + 2 o p_49715_ + a (Lgu;Ldcb;)Lczn; m_142194_ + 0 o p_152198_ + 1 o p_152199_ + a (Lcmm;Ldcb;Lczp;)Lczo; m_142354_ + 0 o p_152194_ + 1 o p_152195_ + 2 o p_152196_ + b_ (Ldcb;)Lcvs; m_7514_ + 0 o p_49753_ + c (Ldcb;Lcls;Lgu;Leen;)Lefb; m_5939_ + 0 o p_49760_ + 1 o p_49761_ + 2 o p_49762_ + 3 o p_49763_ + h (Ldcb;)Lefb; m_49766_ + 0 o p_49767_ + n (Ldcb;)Lha; m_49768_ + static + 0 o p_49769_ +cpj$1 net/minecraft/world/level/block/BellBlock$1 + a f_49770_ + ()V + static +cpk net/minecraft/world/level/block/BigDripleafBlock + a f_152200_ + b f_152201_ + c f_152202_ + d f_152203_ + e f_152204_ + f f_152205_ + g f_152206_ + h f_152207_ + i f_152208_ + j f_152209_ + k f_152210_ + l f_152211_ + ()V + static + (Ldca$d;)V + 0 o p_152214_ + a (Ldcb;Lcmm;Lgu;Lbfj;)V m_7892_ + 0 o p_152266_ + 1 o p_152267_ + 2 o p_152268_ + 3 o p_152269_ + a (Ldcb;Lcmm;Lgu;Lcpn;Lgu;Z)V m_6861_ + 0 o p_152271_ + 1 o p_152272_ + 2 o p_152273_ + 3 o p_152274_ + 4 o p_152275_ + 5 o p_152276_ + a (Lcmm;Lgu;Lamg;)V m_152232_ + static + 0 o p_152233_ + 1 o p_152234_ + 2 o p_152235_ + a (Ldcb;Lcmm;Lgu;Lddm;)V m_152277_ + static + 0 o p_152278_ + 1 o p_152279_ + 2 o p_152280_ + 3 o p_152281_ + a (Ldcb;Lcmp;Lgu;)Z m_7898_ + 0 o p_152289_ + 1 o p_152290_ + 2 o p_152291_ + a (Lit/unimi/dsi/fastutil/objects/Object2IntArrayMap;)V m_152304_ + static + 0 o p_152305_ + a (Lcmm;Ldcb;Leee;Lbzg;)V m_5581_ + 0 o p_152228_ + 1 o p_152229_ + 2 o p_152230_ + 3 o p_152231_ + a (Ldcb;Lcmm;Lgu;Lddm;Lamg;)V m_152282_ + 0 o p_152283_ + 1 o p_152284_ + 2 o p_152285_ + 3 o p_152286_ + 4 o p_152287_ + a (Ldcb;Lha;Ldcb;Lcmn;Lgu;Lgu;)Ldcb; m_7417_ + 0 o p_152293_ + 1 o p_152294_ + 2 o p_152295_ + 3 o p_152296_ + 4 o p_152297_ + 5 o p_152298_ + a (Ldcc$a;)V m_7926_ + 0 o p_152300_ + a (Lcmn;Lapf;Lgu;Lha;)V m_220792_ + static + 0 o p_220793_ + 1 o p_220794_ + 2 o p_220795_ + 3 o p_220796_ + a (Ldcb;Laif;Lgu;Lapf;)V m_213897_ + 0 o p_220798_ + 1 o p_220799_ + 2 o p_220800_ + 3 o p_220801_ + a (Lcmp;Lgu;Ldcb;Z)Z m_7370_ + 0 o p_255698_ + 1 o p_256302_ + 2 o p_255648_ + 3 o p_256217_ + a (Ldcb;Lcls;Lgu;Leen;)Lefb; m_5940_ + 0 o p_152261_ + 1 o p_152262_ + 2 o p_152263_ + 3 o p_152264_ + a (Laif;Lapf;Lgu;Ldcb;)V m_214148_ + 0 o p_220783_ + 1 o p_220784_ + 2 o p_220785_ + 3 o p_220786_ + a (Lgu;Lbfj;)Z m_152301_ + static + 0 o p_152302_ + 1 o p_152303_ + a (Lcmn;Lgu;Ldxe;Lha;)Z m_152241_ + static + 0 o p_152242_ + 1 o p_152243_ + 2 o p_152244_ + 3 o p_152245_ + a (Lcmm;Lapf;Lgu;Ldcb;)Z m_214167_ + 0 o p_220788_ + 1 o p_220789_ + 2 o p_220790_ + 3 o p_220791_ + a (Lcih;)Ldcb; m_5573_ + 0 o p_152221_ + a (Lcmo;Lgu;Ldcb;)Z m_152251_ + static + 0 o p_152252_ + 1 o p_152253_ + 2 o p_152254_ + c (Ldcb;Lcls;Lgu;Leen;)Lefb; m_5939_ + 0 o p_152307_ + 1 o p_152308_ + 2 o p_152309_ + 3 o p_152310_ + c_ (Ldcb;)Ldxe; m_5888_ + 0 o p_152312_ + d (Ldcb;Lcmm;Lgu;)V m_152313_ + static + 0 o p_152314_ + 1 o p_152315_ + 2 o p_152316_ + h (Ldcb;)Lefb; m_152317_ + static + 0 o p_152318_ + n (Ldcb;)Z m_152319_ + static + 0 o p_152320_ +cpl net/minecraft/world/level/block/BigDripleafStemBlock + a f_152321_ + b f_152322_ + c f_152323_ + d f_152324_ + e f_152325_ + f f_152326_ + ()V + static + (Ldca$d;)V + 0 o p_152329_ + a (Ldcb;Lha;Ldcb;Lcmn;Lgu;Lgu;)Ldcb; m_7417_ + 0 o p_152369_ + 1 o p_152370_ + 2 o p_152371_ + 3 o p_152372_ + 4 o p_152373_ + 5 o p_152374_ + a (Ldcc$a;)V m_7926_ + 0 o p_152376_ + a (Ldcb;Laif;Lgu;Lapf;)V m_213897_ + 0 o p_220813_ + 1 o p_220814_ + 2 o p_220815_ + 3 o p_220816_ + a (Lcmp;Lgu;Ldcb;Z)Z m_7370_ + 0 o p_255683_ + 1 o p_256358_ + 2 o p_256408_ + 3 o p_255706_ + a (Ldcb;Lcls;Lgu;Leen;)Lefb; m_5940_ + 0 o p_152360_ + 1 o p_152361_ + 2 o p_152362_ + 3 o p_152363_ + a (Laif;Lapf;Lgu;Ldcb;)V m_214148_ + 0 o p_220803_ + 1 o p_220804_ + 2 o p_220805_ + 3 o p_220806_ + a (Ldcb;Lcmp;Lgu;)Z m_7898_ + 0 o p_152365_ + 1 o p_152366_ + 2 o p_152367_ + a (Lcmn;Lgu;Ldxe;Lha;)Z m_152349_ + static + 0 o p_152350_ + 1 o p_152351_ + 2 o p_152352_ + 3 o p_152353_ + a (Lcmm;Lapf;Lgu;Ldcb;)Z m_214167_ + 0 o p_220808_ + 1 o p_220809_ + 2 o p_220810_ + 3 o p_220811_ + a (Lcls;Lgu;Ldcb;)Lcfz; m_7397_ + 0 o p_152336_ + 1 o p_152337_ + 2 o p_152338_ + c_ (Ldcb;)Ldxe; m_5888_ + 0 o p_152378_ +cpl$1 net/minecraft/world/level/block/BigDripleafStemBlock$1 + a f_152379_ + ()V + static +cpm net/minecraft/world/level/block/BlastFurnaceBlock + (Ldca$d;)V + 0 o p_49773_ + a (Lgu;Ldcb;)Lczn; m_142194_ + 0 o p_152386_ + 1 o p_152387_ + a (Lcmm;Ldcb;Lczp;)Lczo; m_142354_ + 0 o p_152382_ + 1 o p_152383_ + 2 o p_152384_ + a (Ldcb;Lcmm;Lgu;Lapf;)V m_214162_ + 0 o p_220818_ + 1 o p_220819_ + 2 o p_220820_ + 3 o p_220821_ + a (Lcmm;Lgu;Lbyo;)V m_7137_ + 0 o p_49777_ + 1 o p_49778_ + 2 o p_49779_ +cpn net/minecraft/world/level/block/Block + A f_152390_ + B f_152391_ + C f_49792_ + a f_49790_ + b f_204296_ + c f_49785_ + d f_49786_ + e f_49787_ + f f_49788_ + g f_152392_ + h f_49789_ + o f_49791_ + p f_152393_ + q f_152394_ + r f_152395_ + s f_152396_ + t f_152397_ + u f_152398_ + v f_152399_ + w f_152401_ + x f_152402_ + y f_152388_ + z f_152389_ + ()V + static + (Ldca$d;)V + 0 o p_49795_ + a (Lefb;Lha;)Z m_49918_ + static + 0 o p_49919_ + 1 o p_49920_ + a (Ldcb;Ldcb;Lcmn;Lgu;I)V m_49902_ + static + 0 o p_49903_ + 1 o p_49904_ + 2 o p_49905_ + 3 o p_49906_ + 4 o p_49907_ + a (Lcmm;Ldcb;Lgu;Lbfj;F)V m_142072_ + 0 o p_152426_ + 1 o p_152427_ + 2 o p_152428_ + 3 o p_152429_ + 4 o p_152430_ + a (Ldcb;Laif;Lgu;Lczn;)Ljava/util/List; m_49869_ + static + 0 o p_49870_ + 1 o p_49871_ + 2 o p_49872_ + 3 o p_49873_ + a (Lcfu;)Lcpn; m_49814_ + static + 0 o p_49815_ + a (Ldcb;)Z m_48673_ + 0 o p_279289_ + a (Laif;Lgu;Lcfz;Lbdc;)V m_220822_ + 0 o p_220823_ + 1 o p_220824_ + 2 o p_220825_ + 3 o p_220826_ + a (Ldcb;Lcls;Lgu;Lha;Lgu;)Z m_152444_ + static + 0 o p_152445_ + 1 o p_152446_ + 2 o p_152447_ + 3 o p_152448_ + 4 o p_152449_ + a (Lcls;Lgu;Ldcb;)Lcfz; m_7397_ + 0 o p_49823_ + 1 o p_49824_ + 2 o p_49825_ + a (Lcmm;DDDLcfz;)Lbvh; m_152407_ + static + 0 o p_152408_ + 1 o p_152409_ + 2 o p_152410_ + 3 o p_152411_ + 4 o p_152412_ + a (Lcmm;DDDLcfz;DDD)Lbvh; m_152413_ + static + 0 o p_152414_ + 1 o p_152415_ + 2 o p_152416_ + 3 o p_152417_ + 4 o p_152418_ + 5 o p_152419_ + 6 o p_152420_ + 7 o p_152421_ + a (Lcfz;Lcls;Ljava/util/List;Lchq;)V m_5871_ + 0 o p_49816_ + 1 o p_49817_ + 2 o p_49818_ + 3 o p_49819_ + a (Lcmm;Lbyo;Lgu;Ldcb;)V m_142387_ + 0 o p_152422_ + 1 o p_152423_ + 2 o p_152424_ + 3 o p_152425_ + a (Lcme;)Z m_6903_ + 0 o p_49826_ + a (Ldcb;Lcmm;Lgu;Lczn;Lbfj;Lcfz;)V m_49881_ + static + 0 o p_49882_ + 1 o p_49883_ + 2 o p_49884_ + 3 o p_49885_ + 4 o p_49886_ + 5 o p_49887_ + a (Lcmm;Lgu;Ldcb;Lbfz;Lcfz;)V m_6402_ + 0 o p_49847_ + 1 o p_49848_ + 2 o p_49849_ + 3 o p_49850_ + 4 o p_49851_ + a (Ldcb;Laif;Lgu;Lczn;Lbfj;Lcfz;)Ljava/util/List; m_49874_ + static + 0 o p_49875_ + 1 o p_49876_ + 2 o p_49877_ + 3 o p_49878_ + 4 o p_49879_ + 5 o p_49880_ + a (Ldcb;Lcmn;Lgu;Lczn;)V m_49892_ + static + 0 o p_49893_ + 1 o p_49894_ + 2 o p_49895_ + 3 o p_49896_ + a (Lcmn;Lgu;Ldcb;)V m_6786_ + 0 o p_49860_ + 1 o p_49861_ + 2 o p_49862_ + a (Lcmm;Lbyo;Lgu;Ldcb;Lczn;Lcfz;)V m_6240_ + 0 o p_49827_ + 1 o p_49828_ + 2 o p_49829_ + 3 o p_49830_ + 4 o p_49831_ + 5 o p_49832_ + a (Lcmm;Lgu;Lha;Lcfz;)V m_152435_ + static + 0 o p_152436_ + 1 o p_152437_ + 2 o p_152438_ + 3 o p_152439_ + a (Lcih;)Ldcb; m_5573_ + 0 o p_49820_ + a (Lcmm;Lgu;Lcfz;)V m_49840_ + static + 0 o p_49841_ + 1 o p_49842_ + 2 o p_49843_ + a (Lcmn;Lgu;Lcfz;)V m_49856_ + static + 0 o p_49857_ + 1 o p_49858_ + 2 o p_49859_ + a (I)Ldcb; m_49803_ + static + 0 o p_49804_ + a (Ldcb;Lcmm;Lgu;Lcnk$c;)V m_141997_ + 0 o p_152450_ + 1 o p_152451_ + 2 o p_152452_ + 3 o p_152453_ + a (DDDDDD)Lefb; m_49796_ + static + 0 o p_49797_ + 1 o p_49798_ + 2 o p_49799_ + 3 o p_49800_ + 4 o p_49801_ + 5 o p_49802_ + a (Lefb;)Z m_49916_ + static + 0 o p_49917_ + a (Ldcb;Ldcb;Lcmn;Lgu;II)V m_49908_ + static + 0 o p_49909_ + 1 o p_49910_ + 2 o p_49911_ + 3 o p_49912_ + 4 o p_49913_ + 5 o p_49914_ + a (Ljava/util/function/Function;)Lcom/google/common/collect/ImmutableMap; m_152458_ + 0 o p_152459_ + a (Lcmp;Lgu;Lha;)Z m_49863_ + static + 0 o p_49864_ + 1 o p_49865_ + 2 o p_49866_ + a (Ldcb;Ldcb;Lcmn;Lgu;)Ldcb; m_49897_ + static + 0 o p_49898_ + 1 o p_49899_ + 2 o p_238252_ + 3 o p_49901_ + a (Lcmm;Lgu;Lcme;)V m_7592_ + 0 o p_49844_ + 1 o p_49845_ + 2 o p_49846_ + a (Ldcc$a;)V m_7926_ + 0 o p_49915_ + a (Laif;Lgu;I)V m_49805_ + 0 o p_49806_ + 1 o p_49807_ + 2 o p_49808_ + a (Lcls;Lbfj;)V m_5548_ + 0 o p_49821_ + 1 o p_49822_ + a (Ldcb;Lcmm;Lgu;Lapf;)V m_214162_ + 0 o p_220827_ + 1 o p_220828_ + 2 o p_220829_ + 3 o p_220830_ + a (Lcmm;Ljava/util/function/Supplier;Lcfz;)V m_152440_ + static + 0 o p_152441_ + 1 o p_152442_ + 2 o p_152443_ + a (Lcmm;Lgu;Ldcb;Lbyo;)V m_5707_ + 0 o p_49852_ + 1 o p_49853_ + 2 o p_49854_ + 3 o p_49855_ + a (Ldcb;Ldcb;Ldde;)Ldcb; m_152454_ + static + 0 o p_152455_ + 1 o p_152456_ + 2 o p_152457_ + a (Lcmm;Lgu;Ldcb;Lbfj;)V m_141947_ + 0 o p_152431_ + 1 o p_152432_ + 2 o p_152433_ + 3 o p_152434_ + b (Ldcb;Lcmn;Lgu;)Ldcb; m_49931_ + static + 0 o p_49932_ + 1 o p_49933_ + 2 o p_49934_ + b (Lcmm;Lgu;Lcfz;)V m_49941_ + static + 0 o p_49942_ + 1 o p_49943_ + 2 o p_49944_ + c (Lcls;Lgu;)Z m_49936_ + static + 0 o p_49937_ + 1 o p_49938_ + c (Ldcb;Lcmm;Lgu;)V m_49950_ + static + 0 o p_49951_ + 1 o p_49952_ + 2 o p_49953_ + c (Lcmm;Lgu;Lcfz;)V m_152403_ + static + 0 o p_287755_ + 1 o p_152405_ + 2 o p_152406_ + c (Ldcb;Lcls;Lgu;)Z m_7420_ + 0 o p_49928_ + 1 o p_49929_ + 2 o p_49930_ + d ()F m_7325_ + e ()Ltj; m_49954_ + e_ (Ldcb;)Z m_6724_ + 0 o p_49921_ + f ()Ljava/lang/String; m_7705_ + h ()F m_49958_ + i ()F m_49961_ + i (Ldcb;)I m_49956_ + static + 0 o p_49957_ + j ()F m_49964_ + j (Ldcb;)Z m_152463_ + static + 0 o p_152464_ + k ()Lcfu; m_5456_ + k (Ldcb;)V m_49959_ + 0 o p_49960_ + l (Ldcb;)Ldcb; m_152465_ + 0 o p_152466_ + l ()Ldcc; m_49965_ + m (Ldcb;)Lcxa; m_49962_ + 0 o p_49963_ + n ()Ldcb; m_49966_ + o ()Z m_49967_ + p ()Lcpn; m_7374_ + q ()Lhe$c; m_204297_ + toString ()Ljava/lang/String; toString + u ()Lit/unimi/dsi/fastutil/objects/Object2ByteLinkedOpenHashMap; m_49935_ + static +cpn$1 net/minecraft/world/level/block/Block$1 + ()V + a (Lefb;)Ljava/lang/Boolean; load + 0 o p_49972_ + load (Ljava/lang/Object;)Ljava/lang/Object; load + 0 o p_49974_ +cpn$2 net/minecraft/world/level/block/Block$2 + (IF)V + 0 o p_49976_ + 1 o p_49977_ + rehash (I)V rehash + 0 o p_49979_ +cpn$a net/minecraft/world/level/block/Block$BlockStatePairKey + a f_49980_ + b f_49981_ + c f_49982_ + (Ldcb;Ldcb;Lha;)V + 0 o p_49984_ + 1 o p_49985_ + 2 o p_49986_ + equals (Ljava/lang/Object;)Z equals + 0 o p_49988_ + hashCode ()I hashCode +cpo net/minecraft/world/level/block/Blocks + A f_50749_ + B f_50750_ + C f_271334_ + D f_50751_ + E f_220831_ + F f_50752_ + G f_49990_ + H f_49991_ + I f_49992_ + J f_271439_ + K f_49993_ + L f_49994_ + M f_276445_ + N f_49995_ + O f_152467_ + P f_49996_ + Q f_152468_ + R f_49997_ + S f_152469_ + T f_49998_ + U f_49999_ + V f_50000_ + W f_50001_ + X f_50002_ + Y f_50003_ + Z f_271170_ + a f_50016_ + aA f_50048_ + aB f_271145_ + aC f_50049_ + aD f_220837_ + aE f_50050_ + aF f_50051_ + aG f_50052_ + aH f_50053_ + aI f_50054_ + aJ f_271115_ + aK f_50055_ + aL f_220838_ + aM f_152470_ + aN f_152471_ + aO f_50056_ + aP f_50057_ + aQ f_50058_ + aR f_50059_ + aS f_152472_ + aT f_50060_ + aU f_50061_ + aV f_50062_ + aW f_50063_ + aX f_50064_ + aY f_50065_ + aZ f_50066_ + aa f_50004_ + ab f_220832_ + ac f_220833_ + ad f_220834_ + ae f_256831_ + af f_50005_ + ag f_50006_ + ah f_50007_ + ai f_50008_ + aj f_271326_ + ak f_50009_ + al f_50010_ + am f_220835_ + an f_256740_ + ao f_50011_ + ap f_50012_ + aq f_50013_ + ar f_50014_ + as f_50015_ + at f_271348_ + au f_50043_ + av f_220836_ + aw f_50044_ + ax f_50045_ + ay f_50046_ + az f_50047_ + b f_50069_ + bA f_50041_ + bB f_50042_ + bC f_50096_ + bD f_50097_ + bE f_50098_ + bF f_50099_ + bG f_50100_ + bH f_50101_ + bI f_50102_ + bJ f_50103_ + bK f_50104_ + bL f_50105_ + bM f_50106_ + bN f_50107_ + bO f_50108_ + bP f_50109_ + bQ f_50110_ + bR f_50111_ + bS f_271329_ + bT f_50112_ + bU f_50113_ + bV f_50114_ + bW f_50115_ + bX f_50116_ + bY f_50117_ + bZ f_50118_ + ba f_50067_ + bb f_50068_ + bc f_50017_ + bd f_50018_ + be f_50019_ + bf f_50020_ + bg f_50021_ + bh f_50022_ + bi f_50023_ + bj f_50024_ + bk f_50025_ + bl f_50026_ + bm f_50027_ + bn f_50028_ + bo f_50029_ + bp f_50030_ + bq f_50031_ + br f_50032_ + bs f_50033_ + bt f_50034_ + bu f_50035_ + bv f_50036_ + bw f_50037_ + bx f_50038_ + by f_50039_ + bz f_50040_ + c f_50122_ + cA f_50091_ + cB f_50092_ + cC f_50093_ + cD f_50094_ + cE f_50095_ + cF f_50149_ + cG f_50150_ + cH f_50151_ + cI f_271516_ + cJ f_50152_ + cK f_50153_ + cL f_220841_ + cM f_244433_ + cN f_50154_ + cO f_50155_ + cP f_50156_ + cQ f_50157_ + cR f_50158_ + cS f_50159_ + cT f_50160_ + cU f_50161_ + cV f_271107_ + cW f_50162_ + cX f_50163_ + cY f_220839_ + cZ f_244608_ + ca f_50119_ + cb f_50120_ + cc f_50121_ + cd f_50070_ + ce f_50071_ + cf f_50072_ + cg f_50073_ + ch f_50074_ + ci f_50075_ + cj f_50076_ + ck f_50077_ + cl f_50078_ + cm f_244299_ + cn f_50079_ + co f_50080_ + cp f_50081_ + cq f_50082_ + cr f_50083_ + cs f_50084_ + ct f_50085_ + cu f_50086_ + cv f_50087_ + cw f_50088_ + cx f_50089_ + cy f_152474_ + cz f_50090_ + d f_50175_ + dA f_50168_ + dB f_50169_ + dC f_50170_ + dD f_50171_ + dE f_271227_ + dF f_50172_ + dG f_220840_ + dH f_244183_ + dI f_50173_ + dJ f_152473_ + dK f_50174_ + dL f_50123_ + dM f_50124_ + dN f_50125_ + dO f_50126_ + dP f_50127_ + dQ f_50128_ + dR f_50129_ + dS f_50130_ + dT f_50131_ + dU f_50132_ + dV f_50133_ + dW f_50134_ + dX f_50135_ + dY f_50136_ + dZ f_50137_ + da f_244319_ + db f_244633_ + dc f_243890_ + dd f_243716_ + de f_271116_ + df f_244263_ + dg f_243960_ + dh f_244147_ + di f_244396_ + dj f_244485_ + dk f_244091_ + dl f_244093_ + dm f_243895_ + dn f_244296_ + do f_243773_ + dp f_271427_ + dq f_243897_ + dr f_243998_ + ds f_244385_ + dt f_244281_ + du f_244241_ + dv f_244462_ + dw f_50164_ + dx f_50165_ + dy f_50166_ + dz f_50167_ + e f_50228_ + eA f_50217_ + eB f_50218_ + eC f_50219_ + eD f_50220_ + eE f_271350_ + eF f_50221_ + eG f_220842_ + eH f_244549_ + eI f_50222_ + eJ f_50223_ + eK f_50224_ + eL f_50225_ + eM f_220843_ + eN f_220844_ + eO f_50226_ + eP f_50227_ + eQ f_50176_ + eR f_50177_ + eS f_50178_ + eT f_50179_ + eU f_50180_ + eV f_50181_ + eW f_50182_ + eX f_50183_ + eY f_50184_ + eZ f_50185_ + ea f_50138_ + eb f_50139_ + ec f_50140_ + ed f_50141_ + ee f_50142_ + ef f_50143_ + eg f_50144_ + eh f_50145_ + ei f_50146_ + ej f_50147_ + ek f_50148_ + el f_50202_ + em f_50203_ + en f_50204_ + eo f_50205_ + ep f_50206_ + eq f_50207_ + er f_50208_ + es f_50209_ + et f_50210_ + eu f_50211_ + ev f_50212_ + ew f_50213_ + ex f_50214_ + ey f_50215_ + ez f_50216_ + f f_50281_ + fA f_50260_ + fB f_50261_ + fC f_50262_ + fD f_50263_ + fE f_50264_ + fF f_152479_ + fG f_50265_ + fH f_50266_ + fI f_50267_ + fJ f_50268_ + fK f_50269_ + fL f_50270_ + fM f_50271_ + fN f_50272_ + fO f_50273_ + fP f_50274_ + fQ f_50275_ + fR f_50276_ + fS f_271468_ + fT f_50277_ + fU f_50278_ + fV f_50279_ + fW f_50280_ + fX f_50229_ + fY f_271106_ + fZ f_50230_ + fa f_50186_ + fb f_50187_ + fc f_50188_ + fd f_50189_ + fe f_50190_ + ff f_50191_ + fg f_152475_ + fh f_50192_ + fi f_50193_ + fj f_50194_ + fk f_220845_ + fl f_50195_ + fm f_50196_ + fn f_50197_ + fo f_50198_ + fp f_50199_ + fq f_50200_ + fr f_50201_ + fs f_50255_ + ft f_50256_ + fu f_152476_ + fv f_152477_ + fw f_152478_ + fx f_50257_ + fy f_50258_ + fz f_50259_ + g f_50334_ + gA f_271396_ + gB f_50309_ + gC f_220846_ + gD f_244625_ + gE f_50310_ + gF f_50311_ + gG f_50312_ + gH f_50313_ + gI f_50314_ + gJ f_50315_ + gK f_50316_ + gL f_50317_ + gM f_50318_ + gN f_50319_ + gO f_50320_ + gP f_50321_ + gQ f_260630_ + gR f_260585_ + gS f_50322_ + gT f_50323_ + gU f_50324_ + gV f_50325_ + gW f_50326_ + gX f_50327_ + gY f_50328_ + gZ f_50329_ + ga f_220847_ + gb f_50231_ + gc f_50232_ + gd f_50233_ + ge f_50234_ + gf f_50235_ + gg f_50236_ + gh f_50237_ + gi f_50238_ + gj f_50239_ + gk f_50240_ + gl f_50241_ + gm f_50242_ + gn f_50243_ + go f_50244_ + gp f_50245_ + gq f_50246_ + gr f_50247_ + gs f_50248_ + gt f_50249_ + gu f_50250_ + gv f_50251_ + gw f_50252_ + gx f_50253_ + gy f_50254_ + gz f_50308_ + h f_50387_ + hA f_50304_ + hB f_50305_ + hC f_50306_ + hD f_50307_ + hE f_50361_ + hF f_50362_ + hG f_50363_ + hH f_50364_ + hI f_50365_ + hJ f_50366_ + hK f_50367_ + hL f_50368_ + hM f_50369_ + hN f_50370_ + hO f_50371_ + hP f_50372_ + hQ f_271206_ + hR f_50373_ + hS f_220848_ + hT f_243755_ + hU f_244193_ + hV f_50374_ + hW f_50375_ + hX f_152480_ + hY f_50376_ + hZ f_50377_ + ha f_50330_ + hb f_50331_ + hc f_50332_ + hd f_50333_ + he f_50282_ + hf f_50283_ + hg f_50284_ + hh f_50285_ + hi f_50286_ + hj f_50287_ + hk f_50288_ + hl f_50289_ + hm f_50290_ + hn f_50291_ + ho f_50292_ + hp f_50293_ + hq f_50294_ + hr f_50295_ + hs f_50296_ + ht f_50297_ + hu f_50298_ + hv f_50299_ + hw f_50300_ + hx f_50301_ + hy f_50302_ + hz f_50303_ + i f_50440_ + iA f_50352_ + iB f_50353_ + iC f_50354_ + iD f_50355_ + iE f_50356_ + iF f_50357_ + iG f_50358_ + iH f_50359_ + iI f_50360_ + iJ f_50414_ + iK f_50415_ + iL f_50416_ + iM f_50417_ + iN f_50418_ + iO f_50419_ + iP f_50420_ + iQ f_50421_ + iR f_50422_ + iS f_50423_ + iT f_50424_ + iU f_50425_ + iV f_50426_ + iW f_50427_ + iX f_50428_ + iY f_50429_ + iZ f_50430_ + ia f_50378_ + ib f_50379_ + ic f_50380_ + id f_50381_ + ie f_50382_ + if f_50383_ + ig f_50384_ + ih f_50385_ + ii f_50386_ + ij f_50335_ + ik f_50336_ + il f_50337_ + im f_50338_ + in f_50339_ + io f_50340_ + ip f_50341_ + iq f_50342_ + ir f_50343_ + is f_50344_ + it f_50345_ + iu f_50346_ + iv f_50347_ + iw f_50348_ + ix f_50349_ + iy f_50350_ + iz f_50351_ + j f_50493_ + jA f_220851_ + jB f_244004_ + jC f_244230_ + jD f_50404_ + jE f_50405_ + jF f_50406_ + jG f_50407_ + jH f_50408_ + jI f_50409_ + jJ f_50410_ + jK f_50411_ + jL f_220849_ + jM f_50412_ + jN f_50413_ + jO f_50467_ + jP f_50468_ + jQ f_50469_ + jR f_50470_ + jS f_50471_ + jT f_50472_ + jU f_50473_ + jV f_50474_ + jW f_50475_ + jX f_50476_ + jY f_50477_ + jZ f_271274_ + ja f_50431_ + jb f_50432_ + jc f_50433_ + jd f_50434_ + je f_50435_ + jf f_50436_ + jg f_50437_ + jh f_50438_ + ji f_50439_ + jj f_50388_ + jk f_50389_ + jl f_50390_ + jm f_50391_ + jn f_50392_ + jo f_50393_ + jp f_50394_ + jq f_50395_ + jr f_50396_ + js f_50397_ + jt f_50398_ + ju f_50399_ + jv f_50400_ + jw f_50401_ + jx f_50402_ + jy f_271301_ + jz f_50403_ + k f_50546_ + kA f_271410_ + kB f_276665_ + kC f_276668_ + kD f_50444_ + kE f_152481_ + kF f_50446_ + kG f_50447_ + kH f_50448_ + kI f_50449_ + kJ f_50450_ + kK f_50451_ + kL f_50452_ + kM f_50453_ + kN f_50454_ + kO f_50455_ + kP f_50456_ + kQ f_50457_ + kR f_50458_ + kS f_50459_ + kT f_50460_ + kU f_50461_ + kV f_50462_ + kW f_50463_ + kX f_50464_ + kY f_50465_ + kZ f_50466_ + ka f_50478_ + kb f_220850_ + kc f_244313_ + kd f_50479_ + ke f_50480_ + kf f_50481_ + kg f_50482_ + kh f_271219_ + ki f_50483_ + kj f_220852_ + kk f_244641_ + kl f_50484_ + km f_50485_ + kn f_50486_ + ko f_50487_ + kp f_271169_ + kq f_50488_ + kr f_220853_ + ks f_244648_ + kt f_50489_ + ku f_50490_ + kv f_50491_ + kw f_50492_ + kx f_50441_ + ky f_50442_ + kz f_50443_ + l f_50599_ + lA f_50494_ + lB f_50495_ + lC f_50496_ + lD f_50497_ + lE f_50498_ + lF f_50499_ + lG f_50500_ + lH f_50501_ + lI f_50502_ + lJ f_50503_ + lK f_50504_ + lL f_50505_ + lM f_50506_ + lN f_50507_ + lO f_50508_ + lP f_50509_ + lQ f_50510_ + lR f_50511_ + lS f_50512_ + lT f_50513_ + lU f_50514_ + lV f_50515_ + lW f_50516_ + lX f_50517_ + lY f_50518_ + lZ f_50519_ + la f_50520_ + lb f_50521_ + lc f_50522_ + ld f_50523_ + le f_50524_ + lf f_50525_ + lg f_50526_ + lh f_50527_ + li f_50528_ + lj f_50529_ + lk f_50530_ + ll f_50531_ + lm f_50532_ + ln f_50533_ + lo f_50534_ + lp f_50535_ + lq f_50536_ + lr f_50537_ + ls f_50538_ + lt f_50539_ + lu f_50540_ + lv f_50541_ + lw f_50542_ + lx f_50543_ + ly f_50544_ + lz f_50545_ + m f_50652_ + mA f_50598_ + mB f_50547_ + mC f_50548_ + mD f_50549_ + mE f_50550_ + mF f_50551_ + mG f_50552_ + mH f_50553_ + mI f_50554_ + mJ f_50555_ + mK f_50556_ + mL f_50557_ + mM f_50558_ + mN f_50559_ + mO f_50560_ + mP f_50561_ + mQ f_50562_ + mR f_50563_ + mS f_50564_ + mT f_50565_ + mU f_50566_ + mV f_50567_ + mW f_50568_ + mX f_50569_ + mY f_50570_ + mZ f_50571_ + ma f_50573_ + mb f_50574_ + mc f_50575_ + md f_50576_ + me f_50577_ + mf f_50578_ + mg f_276643_ + mh f_50579_ + mi f_50580_ + mj f_50581_ + mk f_50582_ + ml f_50583_ + mm f_50584_ + mn f_50585_ + mo f_50586_ + mp f_50587_ + mq f_50588_ + mr f_50589_ + ms f_50590_ + mt f_50591_ + mu f_50592_ + mv f_50593_ + mw f_50594_ + mx f_50595_ + my f_50596_ + mz f_50597_ + n f_50705_ + nA f_50651_ + nB f_50600_ + nC f_50601_ + nD f_50602_ + nE f_50603_ + nF f_50604_ + nG f_50605_ + nH f_50606_ + nI f_50607_ + nJ f_50608_ + nK f_50609_ + nL f_220854_ + nM f_50610_ + nN f_50611_ + nO f_50612_ + nP f_50613_ + nQ f_50614_ + nR f_50615_ + nS f_50616_ + nT f_50617_ + nU f_50618_ + nV f_50619_ + nW f_50620_ + nX f_50621_ + nY f_50622_ + nZ f_50623_ + na f_50572_ + nb f_50626_ + nc f_50627_ + nd f_50628_ + ne f_50629_ + nf f_50630_ + ng f_50631_ + nh f_50632_ + ni f_50633_ + nj f_50634_ + nk f_50635_ + nl f_50636_ + nm f_50637_ + nn f_50638_ + no f_50639_ + np f_50640_ + nq f_50641_ + nr f_50642_ + ns f_50643_ + nt f_50644_ + nu f_50645_ + nv f_50646_ + nw f_50647_ + nx f_50648_ + ny f_50649_ + nz f_50650_ + o f_50741_ + oA f_50703_ + oB f_50704_ + oC f_50653_ + oD f_50654_ + oE f_50655_ + oF f_50656_ + oG f_50657_ + oH f_50658_ + oI f_50659_ + oJ f_50660_ + oK f_50661_ + oL f_50662_ + oM f_50663_ + oN f_50664_ + oO f_50665_ + oP f_50666_ + oQ f_50667_ + oR f_50668_ + oS f_50669_ + oT f_50670_ + oU f_50671_ + oV f_50672_ + oW f_50673_ + oX f_50674_ + oY f_50675_ + oZ f_50676_ + oa f_50624_ + ob f_50625_ + oc f_50679_ + od f_50680_ + oe f_50681_ + of f_50682_ + og f_50683_ + oh f_50684_ + oi f_50685_ + oj f_50686_ + ok f_50687_ + ol f_50688_ + om f_50689_ + on f_50690_ + oo f_50691_ + op f_50692_ + oq f_50693_ + or f_50694_ + os f_50695_ + ot f_50696_ + ou f_50697_ + ov f_50698_ + ow f_50699_ + ox f_50700_ + oy f_50701_ + oz f_50702_ + p f_50742_ + pA f_50739_ + pB f_50740_ + pC f_50706_ + pD f_50707_ + pE f_50708_ + pF f_50709_ + pG f_50710_ + pH f_50711_ + pI f_50712_ + pJ f_50713_ + pK f_50714_ + pL f_152482_ + pM f_152483_ + pN f_152484_ + pO f_152511_ + pP f_152512_ + pQ f_152513_ + pR f_152514_ + pS f_152515_ + pT f_152516_ + pU f_152517_ + pV f_152518_ + pW f_152519_ + pX f_152520_ + pY f_152521_ + pZ f_152522_ + pa f_50677_ + pb f_50678_ + pc f_50715_ + pd f_50716_ + pe f_50717_ + pf f_50718_ + pg f_50719_ + ph f_50720_ + pi f_50721_ + pj f_50722_ + pk f_50723_ + pl f_50724_ + pm f_50725_ + pn f_50726_ + po f_50727_ + pp f_50728_ + pq f_50729_ + pr f_50730_ + ps f_50731_ + pt f_50732_ + pu f_50733_ + pv f_50734_ + pw f_50735_ + px f_50736_ + py f_50737_ + pz f_50738_ + q f_50743_ + qA f_152497_ + qB f_152498_ + qC f_152499_ + qD f_152500_ + qE f_276595_ + qF f_220855_ + qG f_220856_ + qH f_220857_ + qI f_220858_ + qJ f_152501_ + qK f_152502_ + qL f_152503_ + qM f_152504_ + qN f_152505_ + qO f_152506_ + qP f_152507_ + qQ f_152508_ + qR f_152509_ + qS f_152510_ + qT f_152563_ + qU f_152564_ + qV f_152565_ + qW f_152566_ + qX f_152567_ + qY f_152568_ + qZ f_152569_ + qa f_152523_ + qb f_152524_ + qc f_152525_ + qd f_152526_ + qe f_152527_ + qf f_152528_ + qg f_152529_ + qh f_152530_ + qi f_152531_ + qj f_152532_ + qk f_152533_ + ql f_152534_ + qm f_152535_ + qn f_152536_ + qo f_152485_ + qp f_152486_ + qq f_152487_ + qr f_152488_ + qs f_152489_ + qt f_152490_ + qu f_152491_ + qv f_152492_ + qw f_152493_ + qx f_152494_ + qy f_152495_ + qz f_152496_ + r f_50744_ + rA f_271445_ + rB f_152544_ + rC f_152545_ + rD f_152546_ + rE f_152547_ + rF f_152548_ + rG f_152549_ + rH f_220864_ + rI f_152550_ + rJ f_152551_ + rK f_152552_ + rL f_152553_ + rM f_152554_ + rN f_152555_ + rO f_152556_ + rP f_152557_ + rQ f_152558_ + rR f_152559_ + rS f_152560_ + rT f_152561_ + rU f_152562_ + rV f_152589_ + rW f_152590_ + rX f_152591_ + rY f_152592_ + rZ f_152593_ + ra f_152570_ + rb f_152571_ + rc f_152572_ + rd f_152573_ + re f_152574_ + rf f_152575_ + rg f_152576_ + rh f_152577_ + ri f_152578_ + rj f_152579_ + rk f_152580_ + rl f_152581_ + rm f_152582_ + rn f_152583_ + ro f_152584_ + rp f_152585_ + rq f_152586_ + rr f_152587_ + rs f_152588_ + rt f_152537_ + ru f_152538_ + rv f_152539_ + rw f_152540_ + rx f_152541_ + ry f_152542_ + rz f_152543_ + s f_271304_ + sa f_152594_ + sb f_152595_ + sc f_152596_ + sd f_152597_ + se f_152598_ + sf f_152599_ + sg f_152600_ + sh f_152601_ + si f_152602_ + sj f_220859_ + sk f_220860_ + sl f_220861_ + sm f_220862_ + sn f_220863_ + so f_271197_ + t f_50745_ + u f_220865_ + v f_244477_ + w f_244489_ + x f_50746_ + y f_50747_ + z f_50748_ + ()V + static + ()V + A (Ldcb;)I m_50857_ + static + 0 o p_50856_ + B (Ldcb;)I m_187436_ + static + 0 o p_187437_ + C (Ldcb;)I m_50871_ + static + 0 o p_50870_ + D (Ldcb;)I m_50873_ + static + 0 o p_50872_ + E (Ldcb;)I m_50875_ + static + 0 o p_50874_ + F (Ldcb;)I m_50877_ + static + 0 o p_50876_ + G (Ldcb;)I m_152604_ + static + 0 o p_50884_ + H (Ldcb;)I m_152606_ + static + 0 o p_152605_ + I (Ldcb;)I m_50885_ + static + 0 o p_152607_ + J (Ldcb;)I m_181165_ + static + 0 o p_50886_ + K (Ldcb;)I m_181167_ + static + 0 o p_50755_ + L (Ldcb;)I m_50754_ + static + 0 o p_50892_ + M (Ldcb;)I m_220866_ + static + 0 o p_220867_ + a (Lcen;)Lcpg; m_50764_ + static + 0 o p_50765_ + a (Ljava/lang/String;Lcpn;)Lcpn; m_50795_ + static + 0 o p_50796_ + 1 o p_50797_ + a (I)Ljava/util/function/ToIntFunction; m_50759_ + static + 0 o p_50760_ + a (Ldxi;Ldxi;)Lcvy; m_284204_ + static + 0 o p_285370_ + 1 o p_285126_ + a (Lcen;Ldca$d;)Lcwm; m_50766_ + static + 0 o p_50767_ + 1 o p_50768_ + a (Ldxi;Ldxi;Lcxa;)Lcvy; m_284306_ + static + 0 o p_285425_ + 1 o p_285292_ + 2 o p_285418_ + a (Ldcb;)I m_220868_ + static + 0 o p_220869_ + a (Lcpn;[Lcau;)Lcsm; m_278189_ + static + 0 o p_278261_ + 1 o p_278322_ + a (Lcxa;)Lctu; m_152614_ + static + 0 o p_152615_ + a (Ldcq;[Lcau;)Lcpw; m_278156_ + static + 0 o p_278239_ + 1 o p_278229_ + a (ILdcb;)I m_50761_ + static + 0 o p_50762_ + 1 o p_50763_ + a (Ldcb;Lcls;Lgu;Lbfn;)Ljava/lang/Boolean; m_50778_ + static + 0 o p_50779_ + 1 o p_50780_ + 2 o p_50781_ + 3 o p_50782_ + a (Ldxi;Ldxi;Ldcb;)Ldxi; m_257326_ + static + 0 o p_285344_ + 1 o p_285394_ + 2 o p_258972_ + a (Ldcb;Lcls;Lgu;)Z m_50774_ + static + 0 o p_50775_ + 1 o p_50776_ + 2 o p_50777_ + a (Ldxi;)Lcpn; m_284519_ + static + 0 o p_285125_ + a (Z)Ldbu; m_50798_ + static + 0 o p_50799_ + a ()V m_50758_ + static + a (Ldxi;Ldcb;)Ldxi; m_181172_ + static + 0 o p_285359_ + 1 o p_152620_ + a (Lcen;Ldcb;)Ldxi; m_284094_ + static + 0 o p_284862_ + 1 o p_284863_ + b (Ldxi;)Lcqb; m_284429_ + static + 0 o p_285034_ + b (Lcen;)Lcxf; m_50801_ + static + 0 o p_50802_ + b ()Lcpw; m_246720_ + static + b (Ldcb;)I m_220870_ + static + 0 o p_220871_ + b (Ldcb;Lcls;Lgu;Lbfn;)Ljava/lang/Boolean; m_50809_ + static + 0 o p_50810_ + 1 o p_50811_ + 2 o p_50812_ + 3 o p_50813_ + b (Ldcb;Lcls;Lgu;)Z m_50805_ + static + 0 o p_50806_ + 1 o p_50807_ + 2 o p_50808_ + b (Ldxi;Ldxi;Ldcb;)Ldxi; m_181175_ + static + 0 o p_285399_ + 1 o p_285349_ + 2 o p_152624_ + c (Ldcb;Lcls;Lgu;Lbfn;)Ljava/lang/Boolean; m_50821_ + static + 0 o p_50822_ + 1 o p_50823_ + 2 o p_50824_ + 3 o p_50825_ + c ()Lcfu; m_187415_ + static + c (Ldcb;)I m_220872_ + static + 0 o p_220873_ + c (Ldcb;Lcls;Lgu;)Z m_187411_ + static + 0 o p_187412_ + 1 o p_187413_ + 2 o p_187414_ + d (Ldcb;Lcls;Lgu;)Z m_187416_ + static + 0 o p_187417_ + 1 o p_187418_ + 2 o p_187419_ + d (Ldcb;Lcls;Lgu;Lbfn;)Z m_187420_ + static + 0 o p_187421_ + 1 o p_187422_ + 2 o p_187423_ + 3 o p_187424_ + d (Ldcb;)I m_152670_ + static + 0 o p_152651_ + d ()Lcfu; m_152649_ + static + e (Ldcb;Lcls;Lgu;)Z m_181185_ + static + 0 o p_152641_ + 1 o p_152642_ + 2 o p_152643_ + e (Ldcb;Lcls;Lgu;Lbfn;)Z m_152656_ + static + 0 o p_152645_ + 1 o p_152646_ + 2 o p_152647_ + 3 o p_152648_ + e ()Lcfu; m_152661_ + static + e (Ldcb;)I m_187405_ + static + 0 o p_187406_ + f (Ldcb;Lcls;Lgu;)Z m_278139_ + static + 0 o p_278209_ + 1 o p_278210_ + 2 o p_278211_ + f (Ldcb;)I m_187408_ + static + 0 o p_187409_ + f (Ldcb;Lcls;Lgu;Lbfn;)Z m_187425_ + static + 0 o p_187426_ + 1 o p_187427_ + 2 o p_187428_ + 3 o p_187429_ + f ()Lcfu; m_152669_ + static + g ()Lczp; m_181206_ + static + g (Ldcb;)I m_152631_ + static + 0 o p_152617_ + h (Ldcb;)I m_152638_ + static + 0 o p_152629_ + i (Ldcb;)I m_152650_ + static + 0 o p_152632_ + j (Ldcb;)I m_152662_ + static + 0 o p_152639_ + k (Ldcb;)I m_152673_ + static + 0 o p_152663_ + l (Ldcb;)I m_187430_ + static + 0 o p_187431_ + m (Ldcb;)I m_187432_ + static + 0 o p_187433_ + n (Ldcb;)I m_152681_ + static + 0 o p_152677_ + o (Ldcb;)I m_152685_ + static + 0 o p_50804_ + p (Ldcb;)I m_152683_ + static + 0 o p_152680_ + q (Ldcb;)I m_50803_ + static + 0 o p_152684_ + r (Ldcb;)I m_187434_ + static + 0 o p_187435_ + s (Ldcb;)I m_50827_ + static + 0 o p_152686_ + t (Ldcb;)I m_50839_ + static + 0 o p_152688_ + u (Ldcb;)I m_50846_ + static + 0 o p_50828_ + v (Ldcb;)I m_50855_ + static + 0 o p_50854_ + w (Ldcb;)I m_50853_ + static + 0 o p_50840_ + x (Ldcb;)I m_152689_ + static + 0 o p_50847_ + y (Ldcb;)I m_152691_ + static + 0 o p_152690_ + z (Ldcb;)I m_50859_ + static + 0 o p_152692_ +cpp net/minecraft/world/level/block/BonemealableBlock + a (Lcmm;Lapf;Lgu;Ldcb;)Z m_214167_ + 0 o p_220878_ + 1 o p_220879_ + 2 o p_220880_ + 3 o p_220881_ + a (Lcmp;Lgu;Ldcb;Z)Z m_7370_ + 0 o p_256559_ + 1 o p_50898_ + 2 o p_50899_ + 3 o p_50900_ + a (Laif;Lapf;Lgu;Ldcb;)V m_214148_ + 0 o p_220874_ + 1 o p_220875_ + 2 o p_220876_ + 3 o p_220877_ +cpq net/minecraft/world/level/block/BrewingStandBlock + a f_50905_ + b f_50906_ + ()V + static + (Ldca$d;)V + 0 o p_50909_ + a (Ldcc$a;)V m_7926_ + 0 o p_50948_ + a (Ldcb;Lcmm;Lgu;Ldcb;Z)V m_6810_ + 0 o p_50937_ + 1 o p_50938_ + 2 o p_50939_ + 3 o p_50940_ + 4 o p_50941_ + a (Ldcb;Lcls;Lgu;Leen;)Lefb; m_5940_ + 0 o p_50952_ + 1 o p_50953_ + 2 o p_50954_ + 3 o p_50955_ + a (Lcmm;Lgu;Ldcb;Lbfz;Lcfz;)V m_6402_ + 0 o p_50913_ + 1 o p_50914_ + 2 o p_50915_ + 3 o p_50916_ + 4 o p_50917_ + a (Ldcb;Lcmm;Lgu;)I m_6782_ + 0 o p_50926_ + 1 o p_50927_ + 2 o p_50928_ + a (Ldcb;Lcmm;Lgu;Lapf;)V m_214162_ + 0 o p_220883_ + 1 o p_220884_ + 2 o p_220885_ + 3 o p_220886_ + a (Ldcb;Lcls;Lgu;Ldxu;)Z m_7357_ + 0 o p_50921_ + 1 o p_50922_ + 2 o p_50923_ + 3 o p_50924_ + a (Ldcb;Lcmm;Lgu;Lbyo;Lbdw;Leee;)Lbdx; m_6227_ + 0 o p_50930_ + 1 o p_50931_ + 2 o p_50932_ + 3 o p_50933_ + 4 o p_50934_ + 5 o p_50935_ + a (Lgu;Ldcb;)Lczn; m_142194_ + 0 o p_152698_ + 1 o p_152699_ + a (Lcmm;Ldcb;Lczp;)Lczo; m_142354_ + 0 o p_152694_ + 1 o p_152695_ + 2 o p_152696_ + b_ (Ldcb;)Lcvs; m_7514_ + 0 o p_50950_ + d_ (Ldcb;)Z m_7278_ + 0 o p_50919_ +cpr net/minecraft/world/level/block/BrushableBlock + a f_276547_ + b f_276488_ + c f_276601_ + d f_276507_ + e f_276618_ + ()V + static + (Lcpn;Ldca$d;Lamg;Lamg;)V + 0 o p_277629_ + 1 o p_277373_ + 2 o p_278060_ + 3 o p_277352_ + a (Ldcb;Lha;Ldcb;Lcmn;Lgu;Lgu;)Ldcb; m_7417_ + 0 o p_277801_ + 1 o p_277455_ + 2 o p_277832_ + 3 o p_277473_ + 4 o p_278111_ + 5 o p_277904_ + a (Lcmm;Lgu;Lbvg;)V m_142525_ + 0 o p_278097_ + 1 o p_277734_ + 2 o p_277539_ + a (Ldcc$a;)V m_7926_ + 0 o p_277623_ + a (Ldcb;Laif;Lgu;Lapf;)V m_213897_ + 0 o p_277544_ + 1 o p_277779_ + 2 o p_278019_ + 3 o p_277471_ + a (Ldcb;Lcmm;Lgu;Lapf;)V m_214162_ + 0 o p_277390_ + 1 o p_277525_ + 2 o p_278107_ + 3 o p_277574_ + a ()Lcpn; m_277074_ + a (Lgu;Ldcb;)Lczn; m_142194_ + 0 o p_277683_ + 1 o p_277381_ + b (Ldcb;Lcmm;Lgu;Ldcb;Z)V m_6807_ + 0 o p_277817_ + 1 o p_277984_ + 2 o p_277869_ + 3 o p_277926_ + 4 o p_277736_ + b ()Lamg; m_276856_ + b_ (Ldcb;)Lcvs; m_7514_ + 0 o p_277553_ + c ()Lamg; m_277154_ +cps net/minecraft/world/level/block/BubbleColumnBlock + a f_50956_ + b f_152700_ + ()V + static + (Ldca$d;)V + 0 o p_50959_ + a (Ldcb;Lha;Ldcb;Lcmn;Lgu;Lgu;)Ldcb; m_7417_ + 0 o p_50990_ + 1 o p_50991_ + 2 o p_50992_ + 3 o p_50993_ + 4 o p_50994_ + 5 o p_50995_ + a (Ldcb;Lcmm;Lgu;Lbfj;)V m_7892_ + 0 o p_50976_ + 1 o p_50977_ + 2 o p_50978_ + 3 o p_50979_ + a (Ldcc$a;)V m_7926_ + 0 o p_50997_ + a (Ldcb;Laif;Lgu;Lapf;)V m_213897_ + 0 o p_220888_ + 1 o p_220889_ + 2 o p_220890_ + 3 o p_220891_ + a (Ldcb;Lcls;Lgu;Leen;)Lefb; m_5940_ + 0 o p_51005_ + 1 o p_51006_ + 2 o p_51007_ + 3 o p_51008_ + a (Ldcb;Lcmm;Lgu;Lapf;)V m_214162_ + 0 o p_220893_ + 1 o p_220894_ + 2 o p_220895_ + 3 o p_220896_ + a (Lcmn;Lgu;Ldcb;Ldcb;)V m_152702_ + static + 0 o p_152703_ + 1 o p_152704_ + 2 o p_152705_ + 3 o p_152706_ + a (Ldcb;Lcmp;Lgu;)Z m_7898_ + 0 o p_50986_ + 1 o p_50987_ + 2 o p_50988_ + am_ ()Ljava/util/Optional; m_142298_ + b (Lcmn;Lgu;Ldcb;)V m_152707_ + static + 0 o p_152708_ + 1 o p_152709_ + 2 o p_152710_ + b_ (Ldcb;)Lcvs; m_7514_ + 0 o p_51003_ + c (Lcmn;Lgu;Ldcb;)Lcfz; m_142598_ + 0 o p_152712_ + 1 o p_152713_ + 2 o p_152714_ + c_ (Ldcb;)Ldxe; m_5888_ + 0 o p_51016_ + h (Ldcb;)Z m_152715_ + static + 0 o p_152716_ + n (Ldcb;)Ldcb; m_152717_ + static + 0 o p_152718_ +cpt net/minecraft/world/level/block/BucketPickup + am_ ()Ljava/util/Optional; m_142298_ + c (Lcmn;Lgu;Ldcb;)Lcfz; m_142598_ + 0 o p_152719_ + 1 o p_152720_ + 2 o p_152721_ +cpu net/minecraft/world/level/block/BuddingAmethystBlock + a f_152722_ + b f_152723_ + ()V + static + (Ldca$d;)V + 0 o p_152726_ + b (Ldcb;Laif;Lgu;Lapf;)V m_213898_ + 0 o p_220898_ + 1 o p_220899_ + 2 o p_220900_ + 3 o p_220901_ + g (Ldcb;)Z m_152734_ + static + 0 o p_152735_ +cpv net/minecraft/world/level/block/BushBlock + (Ldca$d;)V + 0 o p_51021_ + a (Ldcb;Lha;Ldcb;Lcmn;Lgu;Lgu;)Ldcb; m_7417_ + 0 o p_51032_ + 1 o p_51033_ + 2 o p_51034_ + 3 o p_51035_ + 4 o p_51036_ + 5 o p_51037_ + a (Ldcb;Lcls;Lgu;Ldxu;)Z m_7357_ + 0 o p_51023_ + 1 o p_51024_ + 2 o p_51025_ + 3 o p_51026_ + a (Ldcb;Lcmp;Lgu;)Z m_7898_ + 0 o p_51028_ + 1 o p_51029_ + 2 o p_51030_ + c (Ldcb;Lcls;Lgu;)Z m_7420_ + 0 o p_51039_ + 1 o p_51040_ + 2 o p_51041_ + d (Ldcb;Lcls;Lgu;)Z m_6266_ + 0 o p_51042_ + 1 o p_51043_ + 2 o p_51044_ +cpw net/minecraft/world/level/block/ButtonBlock + D f_51057_ + E f_51058_ + F f_51059_ + G f_51060_ + H f_51061_ + J f_152736_ + K f_152737_ + L f_271519_ + M f_244105_ + N f_243959_ + a f_51045_ + b f_152738_ + c f_152739_ + d f_51046_ + e f_51047_ + f f_51048_ + g f_51049_ + h f_51050_ + i f_51051_ + j f_51052_ + k f_51053_ + l f_51054_ + m f_51055_ + n f_51056_ + ()V + static + (Ldca$d;Ldcq;IZ)V + 0 o p_273290_ + 1 o p_273462_ + 2 o p_273212_ + 3 o p_272786_ + a (Ldcb;Lcmm;Lgu;Lbfj;)V m_7892_ + 0 o p_51083_ + 1 o p_51084_ + 2 o p_51085_ + 3 o p_51086_ + a (Ldcb;Lcls;Lgu;Lha;)I m_6378_ + 0 o p_51078_ + 1 o p_51079_ + 2 o p_51080_ + 3 o p_51081_ + a (Ldcc$a;)V m_7926_ + 0 o p_51101_ + a (Ldcb;Lcmm;Lgu;Ldcb;Z)V m_6810_ + 0 o p_51095_ + 1 o p_51096_ + 2 o p_51097_ + 3 o p_51098_ + 4 o p_51099_ + a (Ldcb;Laif;Lgu;Lapf;)V m_213897_ + 0 o p_220903_ + 1 o p_220904_ + 2 o p_220905_ + 3 o p_220906_ + a (Ldcb;Lcls;Lgu;Leen;)Lefb; m_5940_ + 0 o p_51104_ + 1 o p_51105_ + 2 o p_51106_ + 3 o p_51107_ + a (Lbyo;Lcmn;Lgu;Z)V m_51067_ + 0 o p_51068_ + 1 o p_51069_ + 2 o p_51070_ + 3 o p_51071_ + a (Ldcb;Lcmm;Lgu;Lbyo;Lbdw;Leee;)Lbdx; m_6227_ + 0 o p_51088_ + 1 o p_51089_ + 2 o p_51090_ + 3 o p_51091_ + 4 o p_51092_ + 5 o p_51093_ + a (Z)Lamg; m_5722_ + 0 o p_51102_ + b (Ldcb;Lcls;Lgu;Lha;)I m_6376_ + 0 o p_51109_ + 1 o p_51110_ + 2 o p_51111_ + 3 o p_51112_ + d (Ldcb;Lcmm;Lgu;)V m_51116_ + 0 o p_51117_ + 1 o p_51118_ + 2 o p_51119_ + e (Ldcb;Lcmm;Lgu;)V m_51120_ + 0 o p_51121_ + 1 o p_51122_ + 2 o p_51123_ + f (Ldcb;Lcmm;Lgu;)V m_51124_ + 0 o p_51125_ + 1 o p_51126_ + 2 o p_51127_ + f_ (Ldcb;)Z m_7899_ + 0 o p_51114_ +cpw$1 net/minecraft/world/level/block/ButtonBlock$1 + a f_51128_ + b f_51129_ + ()V + static +cpx net/minecraft/world/level/block/CactusBlock + a f_51131_ + b f_152740_ + c f_152741_ + d f_51132_ + e f_51133_ + ()V + static + (Ldca$d;)V + 0 o p_51136_ + a (Ldcb;Lha;Ldcb;Lcmn;Lgu;Lgu;)Ldcb; m_7417_ + 0 o p_51157_ + 1 o p_51158_ + 2 o p_51159_ + 3 o p_51160_ + 4 o p_51161_ + 5 o p_51162_ + a (Ldcb;Lcls;Lgu;Ldxu;)Z m_7357_ + 0 o p_51143_ + 1 o p_51144_ + 2 o p_51145_ + 3 o p_51146_ + a (Ldcb;Lcmp;Lgu;)Z m_7898_ + 0 o p_51153_ + 1 o p_51154_ + 2 o p_51155_ + a (Ldcb;Lcmm;Lgu;Lbfj;)V m_7892_ + 0 o p_51148_ + 1 o p_51149_ + 2 o p_51150_ + 3 o p_51151_ + a (Ldcc$a;)V m_7926_ + 0 o p_51164_ + a (Ldcb;Laif;Lgu;Lapf;)V m_213897_ + 0 o p_220908_ + 1 o p_220909_ + 2 o p_220910_ + 3 o p_220911_ + a (Ldcb;Lcls;Lgu;Leen;)Lefb; m_5940_ + 0 o p_51171_ + 1 o p_51172_ + 2 o p_51173_ + 3 o p_51174_ + b (Ldcb;Laif;Lgu;Lapf;)V m_213898_ + 0 o p_220913_ + 1 o p_220914_ + 2 o p_220915_ + 3 o p_220916_ + c (Ldcb;Lcls;Lgu;Leen;)Lefb; m_5939_ + 0 o p_51176_ + 1 o p_51177_ + 2 o p_51178_ + 3 o p_51179_ +cpy net/minecraft/world/level/block/CakeBlock + a f_152742_ + b f_51180_ + c f_152743_ + d f_152744_ + e f_152745_ + f f_51181_ + ()V + static + (Ldca$d;)V + 0 o p_51184_ + a (Lcmn;Lgu;Ldcb;Lbyo;)Lbdx; m_51185_ + static + 0 o p_51186_ + 1 o p_51187_ + 2 o p_51188_ + 3 o p_51189_ + a (Ldcb;Lha;Ldcb;Lcmn;Lgu;Lgu;)Ldcb; m_7417_ + 0 o p_51213_ + 1 o p_51214_ + 2 o p_51215_ + 3 o p_51216_ + 4 o p_51217_ + 5 o p_51218_ + a (Ldcb;Lcls;Lgu;Ldxu;)Z m_7357_ + 0 o p_51193_ + 1 o p_51194_ + 2 o p_51195_ + 3 o p_51196_ + a (Ldcb;Lcmp;Lgu;)Z m_7898_ + 0 o p_51209_ + 1 o p_51210_ + 2 o p_51211_ + a (Ldcc$a;)V m_7926_ + 0 o p_51220_ + a (Ldcb;Lcmm;Lgu;Lbyo;Lbdw;Leee;)Lbdx; m_6227_ + 0 o p_51202_ + 1 o p_51203_ + 2 o p_51204_ + 3 o p_51205_ + 4 o p_51206_ + 5 o p_51207_ + a (Ldcb;Lcls;Lgu;Leen;)Lefb; m_5940_ + 0 o p_51222_ + 1 o p_51223_ + 2 o p_51224_ + 3 o p_51225_ + a (Ldcb;Lcmm;Lgu;)I m_6782_ + 0 o p_51198_ + 1 o p_51199_ + 2 o p_51200_ + b (I)I m_152746_ + static + 0 o p_152747_ + d_ (Ldcb;)Z m_7278_ + 0 o p_51191_ +cpz net/minecraft/world/level/block/CalibratedSculkSensorBlock + a f_276692_ + ()V + static + (Ldca$d;)V + 0 o p_277532_ + a (Ldcb;Lcvz;)Ldcb; m_6843_ + 0 o p_277545_ + 1 o p_277482_ + a (Ldcb;Lcls;Lgu;Lha;)I m_6378_ + 0 o p_277782_ + 1 o p_277556_ + 2 o p_277903_ + 3 o p_278059_ + a (Ldcc$a;)V m_7926_ + 0 o p_277652_ + a (Lcmm;Lgu;Ldcb;Lczs;)V m_288182_ + static + 0 o p_288952_ + 1 o p_288953_ + 2 o p_288954_ + 3 o p_288955_ + a (Lcih;)Ldcb; m_5573_ + 0 o p_277423_ + a (Ldcb;Lcui;)Ldcb; m_6943_ + 0 o p_277615_ + 1 o p_277916_ + a (Lgu;Ldcb;)Lczn; m_142194_ + 0 o p_277925_ + 1 o p_277938_ + a (Lcmm;Ldcb;Lczp;)Lczo; m_142354_ + 0 o p_277645_ + 1 o p_278033_ + 2 o p_277641_ + b ()I m_278716_ +cq net/minecraft/advancements/critereon/PlayerTrigger + a f_222614_ + (Lacq;)V + 0 o p_222616_ + a (Lcom/google/gson/JsonObject;Lba;Lbe;)Lcq$a; m_7214_ + 0 o p_286310_ + 1 o p_286629_ + 2 o p_286901_ + a ()Lacq; m_7295_ + a (Laig;)V m_222618_ + 0 o p_222619_ + a (Lcq$a;)Z m_222624_ + static + 0 o p_222625_ + b (Lcom/google/gson/JsonObject;Lba;Lbe;)Lar; m_7214_ + 0 o p_286911_ + 1 o p_286356_ + 2 o p_286261_ +cq$a net/minecraft/advancements/critereon/PlayerTrigger$TriggerInstance + (Lacq;Lba;)V + 0 o p_286413_ + 1 o p_286749_ + a (Lch;)Lcq$a; m_222635_ + static + 0 o p_222636_ + a (Lbo;)Lcq$a; m_222633_ + static + 0 o p_222634_ + a (Lcpn;Lcfu;)Lcq$a; m_222637_ + static + 0 o p_222638_ + 1 o p_222639_ + c ()Lcq$a; m_222640_ + static + d ()Lcq$a; m_222641_ + static + e ()Lcq$a; m_222642_ + static + f ()Lcq$a; m_272050_ + static +cqa net/minecraft/world/level/block/CampfireBlock + a f_51226_ + b f_51227_ + c f_51228_ + d f_51229_ + e f_51230_ + f f_51231_ + g f_152748_ + h f_51232_ + i f_51233_ + ()V + static + (ZILdca$d;)V + 0 o p_51236_ + 1 o p_51237_ + 2 o p_51238_ + a (Ldcb;Lcmm;Lgu;Lbfj;)V m_7892_ + 0 o p_51269_ + 1 o p_51270_ + 2 o p_51271_ + 3 o p_51272_ + a (Ldcb;Lcmm;Lgu;Ldcb;Z)V m_6810_ + 0 o p_51281_ + 1 o p_51282_ + 2 o p_51283_ + 3 o p_51284_ + 4 o p_51285_ + a (Lbfj;Lcmn;Lgu;Ldcb;)V m_152749_ + static + 0 o p_152750_ + 1 o p_152751_ + 2 o p_152752_ + 3 o p_152753_ + a (Ldcb;Lcui;)Ldcb; m_6943_ + 0 o p_51292_ + 1 o p_51293_ + a (Lcmn;Lgu;Ldcb;Ldxe;)Z m_7361_ + 0 o p_51257_ + 1 o p_51258_ + 2 o p_51259_ + 3 o p_51260_ + a (Lcmm;Ldcb;Leee;Lbzg;)V m_5581_ + 0 o p_51244_ + 1 o p_51245_ + 2 o p_51246_ + 3 o p_51247_ + a (Lcmm;Ldcb;Lczp;)Lczo; m_142354_ + 0 o p_152755_ + 1 o p_152756_ + 2 o p_152757_ + a (Ldcb;Lha;Ldcb;Lcmn;Lgu;Lgu;)Ldcb; m_7417_ + 0 o p_51298_ + 1 o p_51299_ + 2 o p_51300_ + 3 o p_51301_ + 4 o p_51302_ + 5 o p_51303_ + a (Ldcb;Lcvz;)Ldcb; m_6843_ + 0 o p_51295_ + 1 o p_51296_ + a (Ldcc$a;)V m_7926_ + 0 o p_51305_ + a (Ldcb;Lcls;Lgu;Leen;)Lefb; m_5940_ + 0 o p_51309_ + 1 o p_51310_ + 2 o p_51311_ + 3 o p_51312_ + a (Ldca$a;)Z m_51261_ + static + 0 o p_51262_ + a (Ldcb;Lcmm;Lgu;Lapf;)V m_214162_ + 0 o p_220918_ + 1 o p_220919_ + 2 o p_220920_ + 3 o p_220921_ + a (Ldcb;Lcls;Lgu;Ldxu;)Z m_7357_ + 0 o p_51264_ + 1 o p_51265_ + 2 o p_51266_ + 3 o p_51267_ + a (Lcmm;Lgu;ZZ)V m_51251_ + static + 0 o p_51252_ + 1 o p_51253_ + 2 o p_51254_ + 3 o p_51255_ + a (Ldcb;Lcmm;Lgu;Lbyo;Lbdw;Leee;)Lbdx; m_6227_ + 0 o p_51274_ + 1 o p_51275_ + 2 o p_51276_ + 3 o p_51277_ + 4 o p_51278_ + 5 o p_51279_ + a (Lcmm;Lgu;)Z m_51248_ + static + 0 o p_51249_ + 1 o p_51250_ + a (Lcih;)Ldcb; m_5573_ + 0 o p_51240_ + a (Lgu;Ldcb;)Lczn; m_142194_ + 0 o p_152759_ + 1 o p_152760_ + b_ (Ldcb;)Lcvs; m_7514_ + 0 o p_51307_ + c_ (Ldcb;)Ldxe; m_5888_ + 0 o p_51318_ + g (Ldcb;)Z m_51319_ + static + 0 o p_51320_ + h (Ldcb;)Z m_51321_ + static + 0 o p_51322_ + n (Ldcb;)Z m_51323_ + 0 o p_51324_ +cqb net/minecraft/world/level/block/CandleBlock + c f_152788_ + d f_152789_ + e f_152790_ + f f_152791_ + g f_152792_ + h f_152793_ + i f_152794_ + j f_152795_ + k f_152796_ + l f_152797_ + m f_152798_ + ()V + static + (Ldca$d;)V + 0 o p_152801_ + a (Ldcb;Lha;Ldcb;Lcmn;Lgu;Lgu;)Ldcb; m_7417_ + 0 o p_152833_ + 1 o p_152834_ + 2 o p_152835_ + 3 o p_152836_ + 4 o p_152837_ + 5 o p_152838_ + a (Ldcc$a;)V m_7926_ + 0 o p_152840_ + a (Ldcb;Lcls;Lgu;Leen;)Lefb; m_5940_ + 0 o p_152817_ + 1 o p_152818_ + 2 o p_152819_ + 3 o p_152820_ + a (Ldcb;Lcih;)Z m_6864_ + 0 o p_152814_ + 1 o p_152815_ + a (Ldca$a;)Z m_152809_ + static + 0 o p_152810_ + a (Lcmn;Lgu;Ldcb;Ldxe;)Z m_7361_ + 0 o p_152805_ + 1 o p_152806_ + 2 o p_152807_ + 3 o p_152808_ + a (Ldcb;Lcmp;Lgu;)Z m_7898_ + 0 o p_152829_ + 1 o p_152830_ + 2 o p_152831_ + a (Ldcb;Lcmm;Lgu;Lbyo;Lbdw;Leee;)Lbdx; m_6227_ + 0 o p_152822_ + 1 o p_152823_ + 2 o p_152824_ + 3 o p_152825_ + 4 o p_152826_ + 5 o p_152827_ + a (Lcih;)Ldcb; m_5573_ + 0 o p_152803_ + b (Ldcb;)Ljava/lang/Iterable; m_142199_ + 0 o p_152812_ + c_ (Ldcb;)Ldxe; m_5888_ + 0 o p_152844_ + d (Ldcb;)Z m_142595_ + 0 o p_152842_ + g (Ldcb;)Z m_152845_ + static + 0 o p_152846_ + g ()Lit/unimi/dsi/fastutil/ints/Int2ObjectMap; m_152849_ + static + h (Ldcb;)I m_152847_ + static + 0 o p_152848_ +cqc net/minecraft/world/level/block/CandleCakeBlock + c f_152850_ + d f_152851_ + e f_152852_ + f f_152853_ + g f_152854_ + h f_152855_ + i f_152856_ + ()V + static + (Lcpn;Ldca$d;)V + 0 o p_152859_ + 1 o p_152860_ + a (Ldcb;Lha;Ldcb;Lcmn;Lgu;Lgu;)Ldcb; m_7417_ + 0 o p_152898_ + 1 o p_152899_ + 2 o p_152900_ + 3 o p_152901_ + 4 o p_152902_ + 5 o p_152903_ + a (Leee;)Z m_152906_ + static + 0 o p_152907_ + a (Ldcb;Ldca$a;)Z m_152894_ + static + 0 o p_152895_ + 1 o p_152896_ + a (Ldcc$a;)V m_7926_ + 0 o p_152905_ + a (Ldcb;Lcls;Lgu;Leen;)Lefb; m_5940_ + 0 o p_152875_ + 1 o p_152876_ + 2 o p_152877_ + 3 o p_152878_ + a (Ldcb;Lcmm;Lgu;)I m_6782_ + 0 o p_152880_ + 1 o p_152881_ + 2 o p_152882_ + a (Ldcb;Lcls;Lgu;Ldxu;)Z m_7357_ + 0 o p_152870_ + 1 o p_152871_ + 2 o p_152872_ + 3 o p_152873_ + a (Ldcb;Lcmp;Lgu;)Z m_7898_ + 0 o p_152891_ + 1 o p_152892_ + 2 o p_152893_ + a (Lcpn;)Ldcb; m_152865_ + static + 0 o p_152866_ + a (Ldcb;Lcmm;Lgu;Lbyo;Lbdw;Leee;)Lbdx; m_6227_ + 0 o p_152884_ + 1 o p_152885_ + 2 o p_152886_ + 3 o p_152887_ + 4 o p_152888_ + 5 o p_152889_ + a (Lcls;Lgu;Ldcb;)Lcfz; m_7397_ + 0 o p_152862_ + 1 o p_152863_ + 2 o p_152864_ + b (Ldcb;)Ljava/lang/Iterable; m_142199_ + 0 o p_152868_ + d_ (Ldcb;)Z m_7278_ + 0 o p_152909_ + g (Ldcb;)Z m_152910_ + static + 0 o p_152911_ +cqd net/minecraft/world/level/block/CarpetBlock + a f_152912_ + ()V + static + (Ldca$d;)V + 0 o p_152915_ + a (Ldcb;Lha;Ldcb;Lcmn;Lgu;Lgu;)Ldcb; m_7417_ + 0 o p_152926_ + 1 o p_152927_ + 2 o p_152928_ + 3 o p_152929_ + 4 o p_152930_ + 5 o p_152931_ + a (Ldcb;Lcmp;Lgu;)Z m_7898_ + 0 o p_152922_ + 1 o p_152923_ + 2 o p_152924_ + a (Ldcb;Lcls;Lgu;Leen;)Lefb; m_5940_ + 0 o p_152917_ + 1 o p_152918_ + 2 o p_152919_ + 3 o p_152920_ +cqe net/minecraft/world/level/block/CarrotBlock + a f_51325_ + ()V + static + (Ldca$d;)V + 0 o p_51328_ + a (Ldcb;Lcls;Lgu;Leen;)Lefb; m_5940_ + 0 o p_51330_ + 1 o p_51331_ + 2 o p_51332_ + 3 o p_51333_ + c ()Lcml; m_6404_ +cqf net/minecraft/world/level/block/CartographyTableBlock + a f_51346_ + ()V + static + (Ldca$d;)V + 0 o p_51349_ + a (Ldcb;Lcmm;Lgu;Lbyo;Lbdw;Leee;)Lbdx; m_6227_ + 0 o p_51357_ + 1 o p_51358_ + 2 o p_51359_ + 3 o p_51360_ + 4 o p_51361_ + 5 o p_51362_ + a (Lcmm;Lgu;ILbyn;Lbyo;)Lcbf; m_51350_ + static + 0 o p_51351_ + 1 o p_51352_ + 2 o p_51353_ + 3 o p_51354_ + 4 o p_51355_ + b (Ldcb;Lcmm;Lgu;)Lbea; m_7246_ + 0 o p_51364_ + 1 o p_51365_ + 2 o p_51366_ +cqg net/minecraft/world/level/block/CarvedPumpkinBlock + a f_51367_ + b f_51368_ + c f_51369_ + d f_51370_ + e f_51371_ + f f_51372_ + ()V + static + (Ldca$d;)V + 0 o p_51375_ + a ()Ldcg; m_51392_ + a (Ldcc$a;)V m_7926_ + 0 o p_51385_ + a (Lcmm;Ldcg$b;)V m_245585_ + static + 0 o p_249604_ + 1 o p_251190_ + a (Lcmp;Lgu;)Z m_51381_ + 0 o p_51382_ + 1 o p_51383_ + a (Ldcf;)Z m_284096_ + static + 0 o p_284868_ + a (Lcmm;Ldcg$b;Lbfj;Lgu;)V m_245952_ + static + 0 o p_249110_ + 1 o p_251293_ + 2 o p_251251_ + 3 o p_251189_ + a (Lcih;)Ldcb; m_5573_ + 0 o p_51377_ + a (Lcmm;Lgu;)V m_51378_ + 0 o p_51379_ + 1 o p_51380_ + b (Ldcb;Lcmm;Lgu;Ldcb;Z)V m_6807_ + 0 o p_51387_ + 1 o p_51388_ + 2 o p_51389_ + 3 o p_51390_ + 4 o p_51391_ + b (Ldcf;)Z m_284097_ + static + 0 o p_284869_ + b (Lcmm;Ldcg$b;)V m_246758_ + static + 0 o p_248711_ + 1 o p_251935_ + g ()Ldcg; m_51393_ + h (Ldcb;)Z m_51395_ + static + 0 o p_51396_ + u ()Ldcg; m_51394_ + v ()Ldcg; m_51397_ +cqh net/minecraft/world/level/block/CauldronBlock + c f_182448_ + d f_182449_ + (Ldca$d;)V + 0 o p_51403_ + a (Ldxd;)Z m_142087_ + 0 o p_152945_ + a (Ldcb;Lcmm;Lgu;Lcnk$c;)V m_141997_ + 0 o p_152935_ + 1 o p_152936_ + 2 o p_152937_ + 3 o p_152938_ + a (Ldcb;Lcmm;Lgu;Ldxd;)V m_142310_ + 0 o p_152940_ + 1 o p_152941_ + 2 o p_152942_ + 3 o p_152943_ + a (Lcmm;Lcnk$c;)Z m_182450_ + static + 0 o p_182451_ + 1 o p_182452_ + d (Ldcb;)Z m_142596_ + 0 o p_152947_ +cqi net/minecraft/world/level/block/CaveVines + r_ f_152948_ + s_ f_152949_ + ()V + static + a (Lbfj;Ldcb;Lcmm;Lgu;)Lbdx; m_269473_ + static + 0 o p_270738_ + 1 o p_270772_ + 2 o p_270721_ + 3 o p_270587_ + a (ILdcb;)I m_181214_ + static + 0 o p_181215_ + 1 o p_181216_ + h_ (Ldcb;)Z m_152951_ + static + 0 o p_152952_ + h_ (I)Ljava/util/function/ToIntFunction; m_181217_ + static + 0 o p_181218_ +cqj net/minecraft/world/level/block/CaveVinesBlock + f f_152957_ + (Ldca$d;)V + 0 o p_152959_ + a (Ldcb;Ldcb;)Ldcb; m_142643_ + 0 o p_152987_ + 1 o p_152988_ + a (Ldcc$a;)V m_7926_ + 0 o p_152993_ + a (Ldcb;Lcmm;Lgu;Lbyo;Lbdw;Leee;)Lbdx; m_6227_ + 0 o p_152980_ + 1 o p_152981_ + 2 o p_152982_ + 3 o p_152983_ + 4 o p_152984_ + 5 o p_152985_ + a (Ldcb;Lapf;)Ldcb; m_214070_ + 0 o p_220935_ + 1 o p_220936_ + a (Lcmm;Lapf;Lgu;Ldcb;)Z m_214167_ + 0 o p_220930_ + 1 o p_220931_ + 2 o p_220932_ + 3 o p_220933_ + a (Lcmp;Lgu;Ldcb;Z)Z m_7370_ + 0 o p_256026_ + 1 o p_152971_ + 2 o p_152972_ + 3 o p_152973_ + a ()Lcpn; m_7777_ + a (Lcls;Lgu;Ldcb;)Lcfz; m_7397_ + 0 o p_152966_ + 1 o p_152967_ + 2 o p_152968_ + a (Laif;Lapf;Lgu;Ldcb;)V m_214148_ + 0 o p_220923_ + 1 o p_220924_ + 2 o p_220925_ + 3 o p_220926_ + a (Lapf;)I m_213627_ + 0 o p_220928_ + g (Ldcb;)Z m_5971_ + 0 o p_152998_ +cqk net/minecraft/world/level/block/CaveVinesPlantBlock + (Ldca$d;)V + 0 o p_153000_ + a (Ldcb;Ldcb;)Ldcb; m_142644_ + 0 o p_153028_ + 1 o p_153029_ + a (Ldcc$a;)V m_7926_ + 0 o p_153031_ + a (Ldcb;Lcmm;Lgu;Lbyo;Lbdw;Leee;)Lbdx; m_6227_ + 0 o p_153021_ + 1 o p_153022_ + 2 o p_153023_ + 3 o p_153024_ + 4 o p_153025_ + 5 o p_153026_ + a (Lcmm;Lapf;Lgu;Ldcb;)Z m_214167_ + 0 o p_220943_ + 1 o p_220944_ + 2 o p_220945_ + 3 o p_220946_ + a (Lcmp;Lgu;Ldcb;Z)Z m_7370_ + 0 o p_255942_ + 1 o p_153012_ + 2 o p_153013_ + 3 o p_153014_ + a (Lcls;Lgu;Ldcb;)Lcfz; m_7397_ + 0 o p_153007_ + 1 o p_153008_ + 2 o p_153009_ + a (Laif;Lapf;Lgu;Ldcb;)V m_214148_ + 0 o p_220938_ + 1 o p_220939_ + 2 o p_220940_ + 3 o p_220941_ + b ()Lcta; m_7272_ +cql net/minecraft/world/level/block/CeilingHangingSignBlock + a f_244083_ + b f_243835_ + c f_244550_ + d f_244092_ + h f_243683_ + ()V + static + (Ldca$d;Lddo;)V + 0 o p_250481_ + 1 o p_248716_ + a (Ldcb;Lha;Ldcb;Lcmn;Lgu;Lgu;)Ldcb; m_7417_ + 0 o p_251270_ + 1 o p_250331_ + 2 o p_249591_ + 3 o p_251903_ + 4 o p_249685_ + 5 o p_251506_ + a (Ldcb;Lcvz;)Ldcb; m_6843_ + 0 o p_251162_ + 1 o p_250515_ + a (Ldcc$a;)V m_7926_ + 0 o p_251174_ + a (Lbyo;Leee;Ldav;Lcfz;)Z m_278197_ + 0 o p_278279_ + 1 o p_278273_ + 2 o p_278236_ + 3 o p_278343_ + a (Ldcb;Lcls;Lgu;Leen;)Lefb; m_5940_ + 0 o p_250564_ + 1 o p_248998_ + 2 o p_249501_ + 3 o p_248978_ + a (Ldcb;Lcui;)Ldcb; m_6943_ + 0 o p_249682_ + 1 o p_250199_ + a (Ldcb;Lcmp;Lgu;)Z m_7898_ + 0 o p_248994_ + 1 o p_249061_ + 2 o p_249490_ + a (Ldcb;Lcmm;Lgu;Lbyo;Lbdw;Leee;)Lbdx; m_6227_ + 0 o p_251161_ + 1 o p_249327_ + 2 o p_248552_ + 3 o p_248644_ + 4 o p_251941_ + 5 o p_252016_ + a (Lcih;)Ldcb; m_5573_ + 0 o p_252121_ + a (Lgu;Ldcb;)Lczn; m_142194_ + 0 o p_249338_ + 1 o p_250706_ + a (Lcmm;Ldcb;Lczp;)Lczo; m_142354_ + 0 o p_279379_ + 1 o p_279390_ + 2 o p_279231_ + b_ (Ldcb;Lcls;Lgu;)Lefb; m_7947_ + 0 o p_254482_ + 1 o p_253669_ + 2 o p_253916_ + g (Ldcb;)F m_276903_ + 0 o p_277758_ +cqm net/minecraft/world/level/block/ChainBlock + a f_51446_ + b f_153033_ + c f_153034_ + d f_51447_ + e f_51448_ + f f_51449_ + ()V + static + (Ldca$d;)V + 0 o p_51452_ + a (Ldcb;Lha;Ldcb;Lcmn;Lgu;Lgu;)Ldcb; m_7417_ + 0 o p_51461_ + 1 o p_51462_ + 2 o p_51463_ + 3 o p_51464_ + 4 o p_51465_ + 5 o p_51466_ + a (Ldcb;Lcls;Lgu;Ldxu;)Z m_7357_ + 0 o p_51456_ + 1 o p_51457_ + 2 o p_51458_ + 3 o p_51459_ + a (Ldcc$a;)V m_7926_ + 0 o p_51468_ + a (Lcih;)Ldcb; m_5573_ + 0 o p_51454_ + a (Ldcb;Lcls;Lgu;Leen;)Lefb; m_5940_ + 0 o p_51470_ + 1 o p_51471_ + 2 o p_51472_ + 3 o p_51473_ + c_ (Ldcb;)Ldxe; m_5888_ + 0 o p_51475_ +cqm$1 net/minecraft/world/level/block/ChainBlock$1 + a f_51476_ + ()V + static +cqn net/minecraft/world/level/block/ChangeOverTimeBlock + w_ f_153035_ + a (Laif;Lgu;Ldcb;)V m_153036_ + static + 0 o p_153037_ + 1 o p_153038_ + 2 o p_153039_ + a ()F m_142377_ + a_ (Ldcb;Laif;Lgu;Lapf;)V m_220947_ + 0 o p_220948_ + 1 o p_220949_ + 2 o p_220950_ + 3 o p_220951_ + b ()Ljava/lang/Enum; m_142297_ + c (Ldcb;Laif;Lgu;Lapf;)V m_220952_ + 0 o p_220953_ + 1 o p_220954_ + 2 o p_220955_ + 3 o p_220956_ + i_ (Ldcb;)Ljava/util/Optional; m_142123_ + 0 o p_153040_ +cqo net/minecraft/world/level/block/CherryLeavesBlock + (Ldca$d;)V + 0 o p_273704_ + a (Ldcb;Lcmm;Lgu;Lapf;)V m_214162_ + 0 o p_272714_ + 1 o p_272837_ + 2 o p_273218_ + 3 o p_273360_ +cqp net/minecraft/world/level/block/ChestBlock + b f_51478_ + c f_51479_ + d f_51480_ + e f_153051_ + f f_153052_ + g f_153053_ + h f_51481_ + i f_51482_ + j f_51483_ + k f_51484_ + l f_51485_ + m f_51486_ + n f_51487_ + ()V + static + (Ldca$d;Ljava/util/function/Supplier;)V + 0 o p_51490_ + 1 o p_51491_ + a (Ldcb;Lcmm;Lgu;Ldcb;Z)V m_6810_ + 0 o p_51538_ + 1 o p_51539_ + 2 o p_51540_ + 3 o p_51541_ + 4 o p_51542_ + a (Ldcb;Lcmm;Lgu;)I m_6782_ + 0 o p_51527_ + 1 o p_51528_ + 2 o p_51529_ + a (Ldcb;Lcui;)Ldcb; m_6943_ + 0 o p_51549_ + 1 o p_51550_ + a (Ldap;)Lcrq$b; m_51517_ + static + 0 o p_51518_ + a (Ldcb;Lcmm;Lgu;Z)Lcrq$c; m_5641_ + 0 o p_51544_ + 1 o p_51545_ + 2 o p_51546_ + 3 o p_51547_ + a (Lcqp;Ldcb;Lcmm;Lgu;Z)Lbdq; m_51511_ + static + 0 o p_51512_ + 1 o p_51513_ + 2 o p_51514_ + 3 o p_51515_ + 4 o p_51516_ + a (Lcmm;Ldcb;Lczp;)Lczo; m_142354_ + 0 o p_153055_ + 1 o p_153056_ + 2 o p_153057_ + a (Ldcb;Lha;Ldcb;Lcmn;Lgu;Lgu;)Ldcb; m_7417_ + 0 o p_51555_ + 1 o p_51556_ + 2 o p_51557_ + 3 o p_51558_ + 4 o p_51559_ + 5 o p_51560_ + a (Ldcb;Lcvz;)Ldcb; m_6843_ + 0 o p_51552_ + 1 o p_51553_ + a (Ldcc$a;)V m_7926_ + 0 o p_51562_ + a (Ldcb;Laif;Lgu;Lapf;)V m_213897_ + 0 o p_220958_ + 1 o p_220959_ + 2 o p_220960_ + 3 o p_220961_ + a (Ldcb;Lcls;Lgu;Leen;)Lefb; m_5940_ + 0 o p_51569_ + 1 o p_51570_ + 2 o p_51571_ + 3 o p_51572_ + a (Lcmm;Lgu;Ldcb;Lbfz;Lcfz;)V m_6402_ + 0 o p_51503_ + 1 o p_51504_ + 2 o p_51505_ + 3 o p_51506_ + 4 o p_51507_ + a (Ldcb;Lcls;Lgu;Ldxu;)Z m_7357_ + 0 o p_51522_ + 1 o p_51523_ + 2 o p_51524_ + 3 o p_51525_ + a (Lcls;Lgu;)Z m_51499_ + static + 0 o p_51500_ + 1 o p_51501_ + a (Lcih;Lha;)Lha; m_51494_ + 0 o p_51495_ + 1 o p_51496_ + a (Ldcb;Lcmm;Lgu;Lbyo;Lbdw;Leee;)Lbdx; m_6227_ + 0 o p_51531_ + 1 o p_51532_ + 2 o p_51533_ + 3 o p_51534_ + 4 o p_51535_ + 5 o p_51536_ + a (Lcmn;Lgu;)Z m_51508_ + static + 0 o p_51509_ + 1 o p_51510_ + a (Lcih;)Ldcb; m_5573_ + 0 o p_51493_ + a (Lgu;Ldcb;)Lczn; m_142194_ + 0 o p_153064_ + 1 o p_153065_ + b ()Lamo; m_7699_ + b (Ldcb;Lcmm;Lgu;)Lbea; m_7246_ + 0 o p_51574_ + 1 o p_51575_ + 2 o p_51576_ + b (Lcmn;Lgu;)Z m_51563_ + static + 0 o p_51564_ + 1 o p_51565_ + b_ (Ldcb;)Lcvs; m_7514_ + 0 o p_51567_ + c ()Lczp; m_153066_ + c (Lcmn;Lgu;)Z m_51577_ + static + 0 o p_51578_ + 1 o p_51579_ + c_ (Ldcb;)Ldxe; m_5888_ + 0 o p_51581_ + d_ (Ldcb;)Z m_7278_ + 0 o p_51520_ + g (Ldcb;)Lcrq$a; m_51582_ + static + 0 o p_51583_ + h (Ldcb;)Lha; m_51584_ + static + 0 o p_51585_ +cqp$1 net/minecraft/world/level/block/ChestBlock$1 + ()V + a (Lczu;)Ljava/util/Optional; m_7693_ + 0 o p_51589_ + a (Ljava/lang/Object;)Ljava/lang/Object; m_7693_ + 0 o p_51594_ + a (Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object; m_6959_ + 0 o p_51596_ + 1 o p_51597_ + a ()Ljava/util/Optional; m_6502_ + a (Lczu;Lczu;)Ljava/util/Optional; m_6959_ + 0 o p_51591_ + 1 o p_51592_ + b ()Ljava/lang/Object; m_6502_ +cqp$2 net/minecraft/world/level/block/ChestBlock$2 + ()V + a (Lczu;)Ljava/util/Optional; m_7693_ + 0 o p_51602_ + a (Ljava/lang/Object;)Ljava/lang/Object; m_7693_ + 0 o p_51607_ + a (Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object; m_6959_ + 0 o p_51609_ + 1 o p_51610_ + a ()Ljava/util/Optional; m_6502_ + a (Lczu;Lczu;)Ljava/util/Optional; m_6959_ + 0 o p_51604_ + 1 o p_51605_ + b ()Ljava/lang/Object; m_6502_ +cqp$2$1 net/minecraft/world/level/block/ChestBlock$2$1 + a f_51612_ + b f_51613_ + c f_51614_ + d f_51615_ + (Lcqp$2;Lczu;Lczu;Lbdq;)V + 0 o p_51617_ + 1 o p_51618_ + 2 o p_51619_ + 3 o p_51620_ + H_ ()Lsw; m_5446_ + createMenu (ILbyn;Lbyo;)Lcbf; m_7208_ + 0 o p_51622_ + 1 o p_51623_ + 2 o p_51624_ +cqp$3 net/minecraft/world/level/block/ChestBlock$3 + a f_51626_ + (Ldap;)V + 0 o p_51628_ + a (Ljava/lang/Object;)Ljava/lang/Object; m_7693_ + 0 o p_51640_ + a (Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object; m_6959_ + 0 o p_51642_ + 1 o p_51643_ + a ()Lit/unimi/dsi/fastutil/floats/Float2FloatFunction; m_6502_ + a (Lczu;)Lit/unimi/dsi/fastutil/floats/Float2FloatFunction; m_7693_ + 0 o p_51631_ + a (Lczu;Lczu;F)F m_51635_ + static + 0 o p_51636_ + 1 o p_51637_ + 2 o p_51638_ + a (Lczu;Lczu;)Lit/unimi/dsi/fastutil/floats/Float2FloatFunction; m_6959_ + 0 o p_51633_ + 1 o p_51634_ + b ()Ljava/lang/Object; m_6502_ +cqp$4 net/minecraft/world/level/block/ChestBlock$4 + a f_51645_ + ()V + static +cqq net/minecraft/world/level/block/ChiseledBookShelfBlock + a f_260633_ + b f_260698_ + c f_260522_ + ()V + static + (Ldca$d;)V + 0 o p_249989_ + a (Ldcb;Lcvz;)Ldcb; m_6843_ + 0 o p_288975_ + 1 o p_288993_ + a (Lcmm;Lgu;Lbyo;Lczw;Lcfz;I)V m_262410_ + static + 0 o p_262592_ + 1 o p_262669_ + 2 o p_262572_ + 3 o p_262606_ + 4 o p_262587_ + 5 o p_262692_ + a (Ldcc$a;)V m_7926_ + 0 o p_250973_ + a (Ldcb;Lcmm;Lgu;Ldcb;Z)V m_6810_ + 0 o p_250071_ + 1 o p_251485_ + 2 o p_251954_ + 3 o p_251852_ + 4 o p_252250_ + a (Ldcb;Lcui;)Ldcb; m_6943_ + 0 o p_289000_ + 1 o p_288962_ + a (Ldcb;Lcmm;Lgu;)I m_6782_ + 0 o p_249192_ + 1 o p_252207_ + 2 o p_248999_ + a (Leee;Lha;)Ljava/util/Optional; m_260871_ + static + 0 o p_261714_ + 1 o p_262116_ + a (Ldcb;Lcmm;Lgu;Lbyo;Lbdw;Leee;)Lbdx; m_6227_ + 0 o p_251144_ + 1 o p_251668_ + 2 o p_249108_ + 3 o p_249954_ + 4 o p_249823_ + 5 o p_250640_ + a (F)I m_261181_ + static + 0 o p_261599_ + a (Leeh;)I m_261279_ + static + 0 o p_261991_ + a (Lcih;)Ldcb; m_5573_ + 0 o p_251318_ + a (Lgu;Ldcb;)Lczn; m_142194_ + 0 o p_250440_ + 1 o p_248729_ + a (Ldcc$a;Ldde;)V m_260793_ + static + 0 o p_261455_ + 1 o p_261456_ + a (Lcmm;Lgu;Lbyo;Lczw;I)V m_262380_ + static + 0 o p_262654_ + 1 o p_262601_ + 2 o p_262636_ + 3 o p_262605_ + 4 o p_262673_ + b_ (Ldcb;)Lcvs; m_7514_ + 0 o p_251274_ + d_ (Ldcb;)Z m_7278_ + 0 o p_249302_ +cqq$1 net/minecraft/world/level/block/ChiseledBookShelfBlock$1 + a f_260481_ + ()V + static +cqr net/minecraft/world/level/block/ChorusFlowerBlock + a f_153067_ + b f_51647_ + c f_51648_ + ()V + static + (Lcqs;Ldca$d;)V + 0 o p_51651_ + 1 o p_51652_ + a (Ldcb;Lha;Ldcb;Lcmn;Lgu;Lgu;)Ldcb; m_7417_ + 0 o p_51687_ + 1 o p_51688_ + 2 o p_51689_ + 3 o p_51690_ + 4 o p_51691_ + 5 o p_51692_ + a (Lcmn;Lgu;Lapf;I)V m_220962_ + static + 0 o p_220963_ + 1 o p_220964_ + 2 o p_220965_ + 3 o p_220966_ + a (Lcmn;Lgu;Lapf;Lgu;II)V m_220967_ + static + 0 o p_220968_ + 1 o p_220969_ + 2 o p_220970_ + 3 o p_220971_ + 4 o p_220972_ + 5 o p_220973_ + a (Ldcc$a;)V m_7926_ + 0 o p_51694_ + a (Ldcb;Laif;Lgu;Lapf;)V m_213897_ + 0 o p_220975_ + 1 o p_220976_ + 2 o p_220977_ + 3 o p_220978_ + a (Ldcb;Lcmp;Lgu;)Z m_7898_ + 0 o p_51683_ + 1 o p_51684_ + 2 o p_51685_ + a (Lcmm;Ldcb;Leee;Lbzg;)V m_5581_ + 0 o p_51654_ + 1 o p_51655_ + 2 o p_51656_ + 3 o p_51657_ + a (Lcmm;Lgu;)V m_51658_ + 0 o p_51659_ + 1 o p_51660_ + a (Lcmm;Lgu;I)V m_51661_ + 0 o p_51662_ + 1 o p_51663_ + 2 o p_51664_ + b (Lcmp;Lgu;Lha;)Z m_51697_ + static + 0 o p_51698_ + 1 o p_51699_ + 2 o p_51700_ + b (Ldcb;Laif;Lgu;Lapf;)V m_213898_ + 0 o p_220980_ + 1 o p_220981_ + 2 o p_220982_ + 3 o p_220983_ + e_ (Ldcb;)Z m_6724_ + 0 o p_51696_ +cqs net/minecraft/world/level/block/ChorusPlantBlock + (Ldca$d;)V + 0 o p_51707_ + a (Ldcb;Lha;Ldcb;Lcmn;Lgu;Lgu;)Ldcb; m_7417_ + 0 o p_51728_ + 1 o p_51729_ + 2 o p_51730_ + 3 o p_51731_ + 4 o p_51732_ + 5 o p_51733_ + a (Ldcb;Lcls;Lgu;Ldxu;)Z m_7357_ + 0 o p_51719_ + 1 o p_51720_ + 2 o p_51721_ + 3 o p_51722_ + a (Ldcb;Lcmp;Lgu;)Z m_7898_ + 0 o p_51724_ + 1 o p_51725_ + 2 o p_51726_ + a (Ldcc$a;)V m_7926_ + 0 o p_51735_ + a (Ldcb;Laif;Lgu;Lapf;)V m_213897_ + 0 o p_220985_ + 1 o p_220986_ + 2 o p_220987_ + 3 o p_220988_ + a (Lcih;)Ldcb; m_5573_ + 0 o p_51709_ + a (Lcls;Lgu;)Ldcb; m_51710_ + 0 o p_51711_ + 1 o p_51712_ +cqt net/minecraft/world/level/block/CocoaBlock + D f_51740_ + a f_153068_ + b f_51736_ + c f_153069_ + d f_153070_ + e f_153071_ + f f_153072_ + g f_153073_ + h f_153074_ + i f_153075_ + j f_153076_ + k f_153077_ + l f_51737_ + m f_51738_ + n f_51739_ + ()V + static + (Ldca$d;)V + 0 o p_51743_ + a (Ldcb;Lha;Ldcb;Lcmn;Lgu;Lgu;)Ldcb; m_7417_ + 0 o p_51771_ + 1 o p_51772_ + 2 o p_51773_ + 3 o p_51774_ + 4 o p_51775_ + 5 o p_51776_ + a (Ldcc$a;)V m_7926_ + 0 o p_51778_ + a (Lcmp;Lgu;Ldcb;Z)Z m_7370_ + 0 o p_256189_ + 1 o p_51753_ + 2 o p_51754_ + 3 o p_51755_ + a (Ldcb;Lcls;Lgu;Leen;)Lefb; m_5940_ + 0 o p_51787_ + 1 o p_51788_ + 2 o p_51789_ + 3 o p_51790_ + a (Laif;Lapf;Lgu;Ldcb;)V m_214148_ + 0 o p_220990_ + 1 o p_220991_ + 2 o p_220992_ + 3 o p_220993_ + a (Ldcb;Lcls;Lgu;Ldxu;)Z m_7357_ + 0 o p_51762_ + 1 o p_51763_ + 2 o p_51764_ + 3 o p_51765_ + a (Ldcb;Lcmp;Lgu;)Z m_7898_ + 0 o p_51767_ + 1 o p_51768_ + 2 o p_51769_ + a (Lcmm;Lapf;Lgu;Ldcb;)Z m_214167_ + 0 o p_220995_ + 1 o p_220996_ + 2 o p_220997_ + 3 o p_220998_ + a (Lcih;)Ldcb; m_5573_ + 0 o p_51750_ + b (Ldcb;Laif;Lgu;Lapf;)V m_213898_ + 0 o p_221000_ + 1 o p_221001_ + 2 o p_221002_ + 3 o p_221003_ + e_ (Ldcb;)Z m_6724_ + 0 o p_51780_ +cqt$1 net/minecraft/world/level/block/CocoaBlock$1 + a f_51791_ + ()V + static +cqu net/minecraft/world/level/block/CommandBlock + a f_51793_ + b f_51794_ + c f_51795_ + d f_153078_ + ()V + static + (Ldca$d;Z)V + 0 o p_153080_ + 1 o p_153081_ + a (Ldcb;Lcmm;Lgu;Lcln;Z)V m_51831_ + 0 o p_51832_ + 1 o p_51833_ + 2 o p_51834_ + 3 o p_51835_ + 4 o p_51836_ + a (Ldcb;Lcvz;)Ldcb; m_6843_ + 0 o p_51848_ + 1 o p_51849_ + a (Ldcc$a;)V m_7926_ + 0 o p_51851_ + a (Ldcb;Laif;Lgu;Lapf;)V m_213897_ + 0 o p_221005_ + 1 o p_221006_ + 2 o p_221007_ + 3 o p_221008_ + a (Ldcb;Lcmm;Lgu;Lcpn;Lgu;Z)V m_6861_ + 0 o p_51838_ + 1 o p_51839_ + 2 o p_51840_ + 3 o p_51841_ + 4 o p_51842_ + 5 o p_51843_ + a (Ldcb;Lcmm;Lgu;)I m_6782_ + 0 o p_51821_ + 1 o p_51822_ + 2 o p_51823_ + a (Lcmm;Lgu;Ldcb;Lbfz;Lcfz;)V m_6402_ + 0 o p_51804_ + 1 o p_51805_ + 2 o p_51806_ + 3 o p_51807_ + 4 o p_51808_ + a (Ldcb;Lcui;)Ldcb; m_6943_ + 0 o p_51845_ + 1 o p_51846_ + a (Ldcb;Lcmm;Lgu;Lbyo;Lbdw;Leee;)Lbdx; m_6227_ + 0 o p_51825_ + 1 o p_51826_ + 2 o p_51827_ + 3 o p_51828_ + 4 o p_51829_ + 5 o p_51830_ + a (Lcmm;Lgu;Lha;)V m_51809_ + static + 0 o p_51810_ + 1 o p_51811_ + 2 o p_51812_ + a (Lcih;)Ldcb; m_5573_ + 0 o p_51800_ + a (Lgu;Ldcb;)Lczn; m_142194_ + 0 o p_153083_ + 1 o p_153084_ + b_ (Ldcb;)Lcvs; m_7514_ + 0 o p_51853_ + d_ (Ldcb;)Z m_7278_ + 0 o p_51814_ +cqv net/minecraft/world/level/block/ComparatorBlock + a f_51854_ + ()V + static + (Ldca$d;)V + 0 o p_51857_ + a (Ldcc$a;)V m_7926_ + 0 o p_51887_ + a (Lcmm;Lgu;Ldcb;)Z m_7320_ + 0 o p_51861_ + 1 o p_51862_ + 2 o p_51863_ + a (Ldcb;Laif;Lgu;Lapf;)V m_213897_ + 0 o p_221010_ + 1 o p_221011_ + 2 o p_221012_ + 3 o p_221013_ + a (Ldcb;Lcmm;Lgu;Lbyo;Lbdw;Leee;)Lbdx; m_6227_ + 0 o p_51880_ + 1 o p_51881_ + 2 o p_51882_ + 3 o p_51883_ + 4 o p_51884_ + 5 o p_51885_ + a (Lha;Lbva;)Z m_289176_ + static + 0 o p_289505_ + 1 o p_289506_ + a (Lcmm;Lha;Lgu;)Lbva; m_51864_ + 0 o p_51865_ + 1 o p_51866_ + 2 o p_51867_ + a (Lgu;Ldcb;)Lczn; m_142194_ + 0 o p_153086_ + 1 o p_153087_ + a (Ldcb;Lcmm;Lgu;II)Z m_8133_ + 0 o p_51874_ + 1 o p_51875_ + 2 o p_51876_ + 3 o p_51877_ + 4 o p_51878_ + b (Lcls;Lgu;Ldcb;)I m_5968_ + 0 o p_51892_ + 1 o p_51893_ + 2 o p_51894_ + b (Lcmm;Lgu;Ldcb;)I m_7312_ + 0 o p_51896_ + 1 o p_51897_ + 2 o p_51898_ + c (Lcmm;Lgu;Ldcb;)V m_7321_ + 0 o p_51900_ + 1 o p_51901_ + 2 o p_51902_ + e (Lcmm;Lgu;Ldcb;)I m_51903_ + 0 o p_51904_ + 1 o p_51905_ + 2 o p_51906_ + f (Lcmm;Lgu;Ldcb;)V m_51907_ + 0 o p_51908_ + 1 o p_51909_ + 2 o p_51910_ + g (Ldcb;)I m_6112_ + 0 o p_51912_ +cqw net/minecraft/world/level/block/ComposterBlock + a f_153088_ + b f_153089_ + c f_153090_ + d f_51913_ + e f_51914_ + f f_153091_ + g f_51915_ + h f_51916_ + ()V + static + (Ldca$d;)V + 0 o p_51919_ + a (FLcml;)V m_51920_ + static + 0 o p_51921_ + 1 o p_51922_ + a (Lcmm;Lgu;Z)V m_51923_ + static + 0 o p_51924_ + 1 o p_51925_ + 2 o p_51926_ + a (Lbfj;Ldcb;Lcmm;Lgu;)Ldcb; m_51998_ + static + 0 o p_270467_ + 1 o p_51999_ + 2 o p_52000_ + 3 o p_52001_ + a (Ldcc$a;)V m_7926_ + 0 o p_51965_ + a (Ldcb;Laif;Lgu;Lapf;)V m_213897_ + 0 o p_221015_ + 1 o p_221016_ + 2 o p_221017_ + 3 o p_221018_ + a (Ldcb;Lcls;Lgu;Leen;)Lefb; m_5940_ + 0 o p_51973_ + 1 o p_51974_ + 2 o p_51975_ + 3 o p_51976_ + a (Ldcb;Lcmm;Lgu;)I m_6782_ + 0 o p_51945_ + 1 o p_51946_ + 2 o p_51947_ + a (Ldcb;Lcls;Lgu;)Lefb; m_6079_ + 0 o p_51969_ + 1 o p_51970_ + 2 o p_51971_ + a (Lbfj;Ldcb;Lcmn;Lgu;Lcfz;)Ldcb; m_269330_ + static + 0 o p_270464_ + 1 o p_270603_ + 2 o p_270151_ + 3 o p_270547_ + 4 o p_270354_ + a (Ldcb;Lcls;Lgu;Ldxu;)Z m_7357_ + 0 o p_51940_ + 1 o p_51941_ + 2 o p_51942_ + 3 o p_51943_ + a ([Lefb;)V m_51966_ + static + 0 o p_51967_ + a (Lbfj;Ldcb;Laif;Lcfz;Lgu;)Ldcb; m_268990_ + static + 0 o p_270919_ + 1 o p_270087_ + 2 o p_270284_ + 3 o p_270253_ + 4 o p_270678_ + a (Ldcb;Lcmm;Lgu;Lbyo;Lbdw;Leee;)Lbdx; m_6227_ + 0 o p_51949_ + 1 o p_51950_ + 2 o p_51951_ + 3 o p_51952_ + 4 o p_51953_ + 5 o p_51954_ + a ()V m_51988_ + static + a (Ldcb;Lcmn;Lgu;)Lbeg; m_5840_ + 0 o p_51956_ + 1 o p_51957_ + 2 o p_51958_ + a (Lbfj;Ldcb;Lcmn;Lgu;)Ldcb; m_269590_ + static + 0 o p_270236_ + 1 o p_270873_ + 2 o p_270963_ + 3 o p_270211_ + b (Ldcb;Lcmm;Lgu;Ldcb;Z)V m_6807_ + 0 o p_51978_ + 1 o p_51979_ + 2 o p_51980_ + 3 o p_51981_ + 4 o p_51982_ + c (Ldcb;Lcls;Lgu;Leen;)Lefb; m_5939_ + 0 o p_51990_ + 1 o p_51991_ + 2 o p_51992_ + 3 o p_51993_ + d_ (Ldcb;)Z m_7278_ + 0 o p_51928_ +cqw$a net/minecraft/world/level/block/ComposterBlock$EmptyContainer + ()V + a (ILcfz;Lha;)Z m_7155_ + 0 o p_52008_ + 1 o p_52009_ + 2 o p_52010_ + a (Lha;)[I m_7071_ + 0 o p_52012_ + b (ILcfz;Lha;)Z m_7157_ + 0 o p_52014_ + 1 o p_52015_ + 2 o p_52016_ +cqw$b net/minecraft/world/level/block/ComposterBlock$InputContainer + c f_52017_ + d f_52018_ + e f_52019_ + f f_52020_ + (Ldcb;Lcmn;Lgu;)V + 0 o p_52022_ + 1 o p_52023_ + 2 o p_52024_ + a (ILcfz;Lha;)Z m_7155_ + 0 o p_52028_ + 1 o p_52029_ + 2 o p_52030_ + a (Lha;)[I m_7071_ + 0 o p_52032_ + ac_ ()I m_6893_ + b (ILcfz;Lha;)Z m_7157_ + 0 o p_52034_ + 1 o p_52035_ + 2 o p_52036_ + e ()V m_6596_ +cqw$c net/minecraft/world/level/block/ComposterBlock$OutputContainer + c f_52037_ + d f_52038_ + e f_52039_ + f f_52040_ + (Ldcb;Lcmn;Lgu;Lcfz;)V + 0 o p_52042_ + 1 o p_52043_ + 2 o p_52044_ + 3 o p_52045_ + a (ILcfz;Lha;)Z m_7155_ + 0 o p_52049_ + 1 o p_52050_ + 2 o p_52051_ + a (Lha;)[I m_7071_ + 0 o p_52053_ + ac_ ()I m_6893_ + b (ILcfz;Lha;)Z m_7157_ + 0 o p_52055_ + 1 o p_52056_ + 2 o p_52057_ + e ()V m_6596_ +cqx net/minecraft/world/level/block/ConcretePowderBlock + a f_52058_ + (Lcpn;Ldca$d;)V + 0 o p_52060_ + 1 o p_52061_ + a (Ldcb;Lha;Ldcb;Lcmn;Lgu;Lgu;)Ldcb; m_7417_ + 0 o p_52074_ + 1 o p_52075_ + 2 o p_52076_ + 3 o p_52077_ + 4 o p_52078_ + 5 o p_52079_ + a (Lcls;Lgu;)Z m_52064_ + static + 0 o p_52065_ + 1 o p_52066_ + a (Lcih;)Ldcb; m_5573_ + 0 o p_52063_ + a (Lcmm;Lgu;Ldcb;Ldcb;Lbvg;)V m_48792_ + 0 o p_52068_ + 1 o p_52069_ + 2 o p_52070_ + 3 o p_52071_ + 4 o p_52072_ + b (Lcls;Lgu;Ldcb;)Z m_52080_ + static + 0 o p_52081_ + 1 o p_52082_ + 2 o p_52083_ + d (Ldcb;Lcls;Lgu;)I m_6248_ + 0 o p_52085_ + 1 o p_52086_ + 2 o p_52087_ + n (Ldcb;)Z m_52088_ + static + 0 o p_52089_ +cqy net/minecraft/world/level/block/ConduitBlock + a f_52090_ + b f_52091_ + c f_153092_ + ()V + static + (Ldca$d;)V + 0 o p_52094_ + a (Ldcb;Lha;Ldcb;Lcmn;Lgu;Lgu;)Ldcb; m_7417_ + 0 o p_52111_ + 1 o p_52112_ + 2 o p_52113_ + 3 o p_52114_ + 4 o p_52115_ + 5 o p_52116_ + a (Ldcb;Lcls;Lgu;Ldxu;)Z m_7357_ + 0 o p_52106_ + 1 o p_52107_ + 2 o p_52108_ + 3 o p_52109_ + a (Ldcc$a;)V m_7926_ + 0 o p_52118_ + a (Lcih;)Ldcb; m_5573_ + 0 o p_52096_ + a (Ldcb;Lcls;Lgu;Leen;)Lefb; m_5940_ + 0 o p_52122_ + 1 o p_52123_ + 2 o p_52124_ + 3 o p_52125_ + a (Lcmm;Lgu;Ldcb;Lbfz;Lcfz;)V m_6402_ + 0 o p_52100_ + 1 o p_52101_ + 2 o p_52102_ + 3 o p_52103_ + 4 o p_52104_ + a (Lgu;Ldcb;)Lczn; m_142194_ + 0 o p_153098_ + 1 o p_153099_ + a (Lcmm;Ldcb;Lczp;)Lczo; m_142354_ + 0 o p_153094_ + 1 o p_153095_ + 2 o p_153096_ + b_ (Ldcb;)Lcvs; m_7514_ + 0 o p_52120_ + c_ (Ldcb;)Ldxe; m_5888_ + 0 o p_52127_ +cqz net/minecraft/world/level/block/CoralBlock + a f_52128_ + (Lcpn;Ldca$d;)V + 0 o p_52130_ + 1 o p_52131_ + a (Ldcb;Lha;Ldcb;Lcmn;Lgu;Lgu;)Ldcb; m_7417_ + 0 o p_52143_ + 1 o p_52144_ + 2 o p_52145_ + 3 o p_52146_ + 4 o p_52147_ + 5 o p_52148_ + a (Lcls;Lgu;)Z m_52134_ + 0 o p_52135_ + 1 o p_52136_ + a (Ldcb;Laif;Lgu;Lapf;)V m_213897_ + 0 o p_221020_ + 1 o p_221021_ + 2 o p_221022_ + 3 o p_221023_ + a (Lcih;)Ldcb; m_5573_ + 0 o p_52133_ +cr net/minecraft/advancements/critereon/RecipeCraftedTrigger + a f_279610_ + ()V + static + ()V + a (Lcom/google/gson/JsonObject;Lba;Lbe;)Lcr$a; m_7214_ + 0 o p_286541_ + 1 o p_286267_ + 2 o p_286402_ + a ()Lacq; m_7295_ + a (Lacq;Ljava/util/List;Lcr$a;)Z m_280436_ + static + 0 o p_281309_ + 1 o p_282707_ + 2 o p_282798_ + a (Laig;Lacq;Ljava/util/List;)V m_280437_ + 0 o p_281468_ + 1 o p_282903_ + 2 o p_282070_ + b (Lcom/google/gson/JsonObject;Lba;Lbe;)Lar; m_7214_ + 0 o p_286751_ + 1 o p_286685_ + 2 o p_286668_ +cr$a net/minecraft/advancements/critereon/RecipeCraftedTrigger$TriggerInstance + a f_279628_ + b f_279530_ + (Lba;Lacq;Ljava/util/List;)V + 0 o p_286913_ + 1 o p_286906_ + 2 o p_286302_ + a (Lct;)Lcom/google/gson/JsonObject; m_7683_ + 0 o p_281942_ + a (Lacq;)Lcr$a; m_280097_ + static + 0 o p_283538_ + a (Lacq;Ljava/util/List;)Lcr$a; m_280477_ + static + 0 o p_282794_ + 1 o p_281369_ + b (Lacq;Ljava/util/List;)Z m_280013_ + 0 o p_283528_ + 1 o p_283698_ +cra net/minecraft/world/level/block/CoralFanBlock + a f_52149_ + (Lcpn;Ldca$d;)V + 0 o p_52151_ + 1 o p_52152_ + a (Ldcb;Lha;Ldcb;Lcmn;Lgu;Lgu;)Ldcb; m_7417_ + 0 o p_52159_ + 1 o p_52160_ + 2 o p_52161_ + 3 o p_52162_ + 4 o p_52163_ + 5 o p_52164_ + a (Ldcb;Laif;Lgu;Lapf;)V m_213897_ + 0 o p_221025_ + 1 o p_221026_ + 2 o p_221027_ + 3 o p_221028_ + b (Ldcb;Lcmm;Lgu;Ldcb;Z)V m_6807_ + 0 o p_52166_ + 1 o p_52167_ + 2 o p_52168_ + 3 o p_52169_ + 4 o p_52170_ +crb net/minecraft/world/level/block/CoralPlantBlock + a f_153100_ + b f_52171_ + d f_52172_ + ()V + static + (Lcpn;Ldca$d;)V + 0 o p_52175_ + 1 o p_52176_ + a (Ldcb;Lha;Ldcb;Lcmn;Lgu;Lgu;)Ldcb; m_7417_ + 0 o p_52183_ + 1 o p_52184_ + 2 o p_52185_ + 3 o p_52186_ + 4 o p_52187_ + 5 o p_52188_ + a (Ldcb;Laif;Lgu;Lapf;)V m_213897_ + 0 o p_221030_ + 1 o p_221031_ + 2 o p_221032_ + 3 o p_221033_ + a (Ldcb;Lcls;Lgu;Leen;)Lefb; m_5940_ + 0 o p_52190_ + 1 o p_52191_ + 2 o p_52192_ + 3 o p_52193_ + b (Ldcb;Lcmm;Lgu;Ldcb;Z)V m_6807_ + 0 o p_52195_ + 1 o p_52196_ + 2 o p_52197_ + 3 o p_52198_ + 4 o p_52199_ +crc net/minecraft/world/level/block/CoralWallFanBlock + b f_52200_ + (Lcpn;Ldca$d;)V + 0 o p_52202_ + 1 o p_52203_ + a (Ldcb;Lha;Ldcb;Lcmn;Lgu;Lgu;)Ldcb; m_7417_ + 0 o p_52210_ + 1 o p_52211_ + 2 o p_52212_ + 3 o p_52213_ + 4 o p_52214_ + 5 o p_52215_ + a (Ldcb;Laif;Lgu;Lapf;)V m_213897_ + 0 o p_221035_ + 1 o p_221036_ + 2 o p_221037_ + 3 o p_221038_ + b (Ldcb;Lcmm;Lgu;Ldcb;Z)V m_6807_ + 0 o p_52217_ + 1 o p_52218_ + 2 o p_52219_ + 3 o p_52220_ + 4 o p_52221_ +crd net/minecraft/world/level/block/CraftingTableBlock + a f_52222_ + ()V + static + (Ldca$d;)V + 0 o p_52225_ + a (Ldcb;Lcmm;Lgu;Lbyo;Lbdw;Leee;)Lbdx; m_6227_ + 0 o p_52233_ + 1 o p_52234_ + 2 o p_52235_ + 3 o p_52236_ + 4 o p_52237_ + 5 o p_52238_ + a (Lcmm;Lgu;ILbyn;Lbyo;)Lcbf; m_52226_ + static + 0 o p_52227_ + 1 o p_52228_ + 2 o p_52229_ + 3 o p_52230_ + 4 o p_52231_ + b (Ldcb;Lcmm;Lgu;)Lbea; m_7246_ + 0 o p_52240_ + 1 o p_52241_ + 2 o p_52242_ +cre net/minecraft/world/level/block/CropBlock + a f_52243_ + c f_153107_ + d f_52244_ + ()V + static + (Ldca$d;)V + 0 o p_52247_ + a (Ldcb;Lcmm;Lgu;Lbfj;)V m_7892_ + 0 o p_52277_ + 1 o p_52278_ + 2 o p_52279_ + 3 o p_52280_ + a (Ldcc$a;)V m_7926_ + 0 o p_52286_ + a (Lcmm;)I m_7125_ + 0 o p_52262_ + a (Lcmp;Lgu;Ldcb;Z)Z m_7370_ + 0 o p_255715_ + 1 o p_52259_ + 2 o p_52260_ + 3 o p_52261_ + a (Ldcb;Lcls;Lgu;Leen;)Lefb; m_5940_ + 0 o p_52297_ + 1 o p_52298_ + 2 o p_52299_ + 3 o p_52300_ + a (Lcmm;Lgu;Ldcb;)V m_52263_ + 0 o p_52264_ + 1 o p_52265_ + 2 o p_52266_ + a (Laif;Lapf;Lgu;Ldcb;)V m_214148_ + 0 o p_221040_ + 1 o p_221041_ + 2 o p_221042_ + 3 o p_221043_ + a (Lcpn;Lcls;Lgu;)F m_52272_ + static + 0 o p_52273_ + 1 o p_52274_ + 2 o p_52275_ + a (Ldcb;Lcmp;Lgu;)Z m_7898_ + 0 o p_52282_ + 1 o p_52283_ + 2 o p_52284_ + a (Lcmm;Lapf;Lgu;Ldcb;)Z m_214167_ + 0 o p_221045_ + 1 o p_221046_ + 2 o p_221047_ + 3 o p_221048_ + a (Lcls;Lgu;Ldcb;)Lcfz; m_7397_ + 0 o p_52254_ + 1 o p_52255_ + 2 o p_52256_ + a ()Lddb; m_7959_ + b (I)Ldcb; m_52289_ + 0 o p_52290_ + b ()I m_7419_ + b (Ldcb;Laif;Lgu;Lapf;)V m_213898_ + 0 o p_221050_ + 1 o p_221051_ + 2 o p_221052_ + 3 o p_221053_ + c ()Lcml; m_6404_ + d (Ldcb;Lcls;Lgu;)Z m_6266_ + 0 o p_52302_ + 1 o p_52303_ + 2 o p_52304_ + e_ (Ldcb;)Z m_6724_ + 0 o p_52288_ + g (Ldcb;)I m_52305_ + 0 o p_52306_ + h (Ldcb;)Z m_52307_ + 0 o p_52308_ +crf net/minecraft/world/level/block/CrossCollisionBlock + a f_52309_ + b f_52310_ + c f_52311_ + d f_52312_ + e f_52313_ + f f_52314_ + g f_52315_ + h f_52316_ + i f_52317_ + ()V + static + (FFFFFLdca$d;)V + 0 o p_52320_ + 1 o p_52321_ + 2 o p_52322_ + 3 o p_52323_ + 4 o p_52324_ + 5 o p_52325_ + a (Ldcb;Lcvz;)Ldcb; m_6843_ + 0 o p_52341_ + 1 o p_52342_ + a (Ldcb;Lcls;Lgu;Leen;)Lefb; m_5940_ + 0 o p_52352_ + 1 o p_52353_ + 2 o p_52354_ + 3 o p_52355_ + a (Ldcb;Lcui;)Ldcb; m_6943_ + 0 o p_52338_ + 1 o p_52339_ + a (Ljava/util/Map$Entry;)Z m_52345_ + static + 0 o p_52346_ + a (Ldcb;Lcls;Lgu;Ldxu;)Z m_7357_ + 0 o p_52333_ + 1 o p_52334_ + 2 o p_52335_ + 3 o p_52336_ + a (FFFFF)[Lefb; m_52326_ + 0 o p_52327_ + 1 o p_52328_ + 2 o p_52329_ + 3 o p_52330_ + 4 o p_52331_ + a (Lha;)I m_52343_ + static + 0 o p_52344_ + c (Ldcb;Lcls;Lgu;Leen;)Lefb; m_5939_ + 0 o p_52357_ + 1 o p_52358_ + 2 o p_52359_ + 3 o p_52360_ + c (Ldcb;Lcls;Lgu;)Z m_7420_ + 0 o p_52348_ + 1 o p_52349_ + 2 o p_52350_ + c_ (Ldcb;)Ldxe; m_5888_ + 0 o p_52362_ + g (Ldcb;)I m_52363_ + 0 o p_52364_ + h (Ldcb;)I m_52365_ + static + 0 o p_52366_ +crf$1 net/minecraft/world/level/block/CrossCollisionBlock$1 + a f_52367_ + b f_52368_ + ()V + static +crg net/minecraft/world/level/block/CryingObsidianBlock + (Ldca$d;)V + 0 o p_52371_ + a (Ldcb;Lcmm;Lgu;Lapf;)V m_214162_ + 0 o p_221055_ + 1 o p_221056_ + 2 o p_221057_ + 3 o p_221058_ +crh net/minecraft/world/level/block/DaylightDetectorBlock + a f_52377_ + b f_52378_ + c f_52379_ + ()V + static + (Ldca$d;)V + 0 o p_52382_ + a (Ldcb;Lcls;Lgu;Lha;)I m_6378_ + 0 o p_52386_ + 1 o p_52387_ + 2 o p_52388_ + 3 o p_52389_ + a (Ldcc$a;)V m_7926_ + 0 o p_52398_ + a (Ldcb;Lcls;Lgu;Leen;)Lefb; m_5940_ + 0 o p_52402_ + 1 o p_52403_ + 2 o p_52404_ + 3 o p_52405_ + a (Ldcb;Lcmm;Lgu;Lbyo;Lbdw;Leee;)Lbdx; m_6227_ + 0 o p_52391_ + 1 o p_52392_ + 2 o p_52393_ + 3 o p_52394_ + 4 o p_52395_ + 5 o p_52396_ + a (Lgu;Ldcb;)Lczn; m_142194_ + 0 o p_153118_ + 1 o p_153119_ + a (Lcmm;Ldcb;Lczp;)Lczo; m_142354_ + 0 o p_153109_ + 1 o p_153110_ + 2 o p_153111_ + a (Lcmm;Lgu;Ldcb;Ldab;)V m_153112_ + static + 0 o p_153113_ + 1 o p_153114_ + 2 o p_153115_ + 3 o p_153116_ + b_ (Ldcb;)Lcvs; m_7514_ + 0 o p_52400_ + d (Ldcb;Lcmm;Lgu;)V m_52410_ + static + 0 o p_52411_ + 1 o p_52412_ + 2 o p_52413_ + f_ (Ldcb;)Z m_7899_ + 0 o p_52407_ + g_ (Ldcb;)Z m_7923_ + 0 o p_52409_ +cri net/minecraft/world/level/block/DeadBushBlock + a f_153120_ + b f_52414_ + ()V + static + (Ldca$d;)V + 0 o p_52417_ + a (Ldcb;Lcls;Lgu;Leen;)Lefb; m_5940_ + 0 o p_52419_ + 1 o p_52420_ + 2 o p_52421_ + 3 o p_52422_ + d (Ldcb;Lcls;Lgu;)Z m_6266_ + 0 o p_52424_ + 1 o p_52425_ + 2 o p_52426_ +crj net/minecraft/world/level/block/DecoratedPotBlock + a f_283767_ + b f_271091_ + c f_271251_ + d f_276567_ + e f_271222_ + ()V + static + (Ldca$d;)V + 0 o p_273064_ + a (Ldcb;Lha;Ldcb;Lcmn;Lgu;Lgu;)Ldcb; m_7417_ + 0 o p_276307_ + 1 o p_276322_ + 2 o p_276280_ + 3 o p_276320_ + 4 o p_276270_ + 5 o p_276312_ + a (Lcfz;Lcls;Ljava/util/List;Lchq;)V m_5871_ + 0 o p_285238_ + 1 o p_285450_ + 2 o p_285448_ + 3 o p_284997_ + a (Ldcc$a;)V m_7926_ + 0 o p_273169_ + a (Ljava/util/List;Lcfu;)V m_284099_ + static + 0 o p_284872_ + 1 o p_284873_ + a (Ldac;Ljava/util/function/Consumer;)V m_284100_ + static + 0 o p_284874_ + 1 o p_284876_ + a (Ldcb;Lcls;Lgu;Leen;)Lefb; m_5940_ + 0 o p_273112_ + 1 o p_273055_ + 2 o p_273137_ + 3 o p_273151_ + a (Ldcb;Lcls;Lgu;Ldxu;)Z m_7357_ + 0 o p_276295_ + 1 o p_276308_ + 2 o p_276313_ + 3 o p_276303_ + a (Ldcb;Ldzq$a;)Ljava/util/List; m_49635_ + 0 o p_287683_ + 1 o p_287582_ + a (Lcmm;Lgu;Ldcb;Lbyo;)V m_5707_ + 0 o p_273590_ + 1 o p_273343_ + 2 o p_272869_ + 3 o p_273002_ + a (Lcih;)Ldcb; m_5573_ + 0 o p_272711_ + a (Lgu;Ldcb;)Lczn; m_142194_ + 0 o p_273396_ + 1 o p_272674_ + c_ (Ldcb;)Ldxe; m_5888_ + 0 o p_272593_ + m (Ldcb;)Lcxa; m_49962_ + 0 o p_277561_ +crk net/minecraft/world/level/block/DetectorRailBlock + d f_52427_ + e f_52428_ + f f_153121_ + ()V + static + (Ldca$d;)V + 0 o p_52431_ + a (Ldcb;Lcmm;Lgu;Lbfj;)V m_7892_ + 0 o p_52458_ + 1 o p_52459_ + 2 o p_52460_ + 3 o p_52461_ + a (Ldcb;Lcvz;)Ldcb; m_6843_ + 0 o p_52466_ + 1 o p_52467_ + a (Ldcb;Lcls;Lgu;Lha;)I m_6378_ + 0 o p_52449_ + 1 o p_52450_ + 2 o p_52451_ + 3 o p_52452_ + a (Ldcc$a;)V m_7926_ + 0 o p_52469_ + a (Ldcb;Laif;Lgu;Lapf;)V m_213897_ + 0 o p_221060_ + 1 o p_221061_ + 2 o p_221062_ + 3 o p_221063_ + a (Ldcb;Lcmm;Lgu;)I m_6782_ + 0 o p_52454_ + 1 o p_52455_ + 2 o p_52456_ + a (Lcmm;Lgu;Ljava/lang/Class;Ljava/util/function/Predicate;)Ljava/util/List; m_52436_ + 0 o p_52437_ + 1 o p_52438_ + 2 o p_52439_ + 3 o p_52440_ + a (Ldcb;Lcui;)Ldcb; m_6943_ + 0 o p_52463_ + 1 o p_52464_ + a (Lbfj;)Z m_153122_ + static + 0 o p_153123_ + a (Lcmm;Lgu;Ldcb;)V m_52432_ + 0 o p_52433_ + 1 o p_52434_ + 2 o p_52435_ + a (Lgu;)Leed; m_52470_ + 0 o p_52471_ + b (Ldcb;Lcmm;Lgu;Ldcb;Z)V m_6807_ + 0 o p_52483_ + 1 o p_52484_ + 2 o p_52485_ + 3 o p_52486_ + 4 o p_52487_ + b (Lbfj;)Z m_153124_ + static + 0 o p_153125_ + b (Ldcb;Lcls;Lgu;Lha;)I m_6376_ + 0 o p_52478_ + 1 o p_52479_ + 2 o p_52480_ + 3 o p_52481_ + b (Lcmm;Lgu;Ldcb;Z)V m_52472_ + 0 o p_52473_ + 1 o p_52474_ + 2 o p_52475_ + 3 o p_52476_ + b ()Ldde; m_7978_ + d_ (Ldcb;)Z m_7278_ + 0 o p_52442_ + f_ (Ldcb;)Z m_7899_ + 0 o p_52489_ +crk$1 net/minecraft/world/level/block/DetectorRailBlock$1 + a f_52491_ + b f_52492_ + c f_52493_ + ()V + static +crl net/minecraft/world/level/block/DiodeBlock + b f_52495_ + c f_52496_ + ()V + static + (Ldca$d;)V + 0 o p_52499_ + a (Ldcb;Lcls;Lgu;Lha;)I m_6378_ + 0 o p_52520_ + 1 o p_52521_ + 2 o p_52522_ + 3 o p_52523_ + a (Lcnc;Lgu;Ldcb;)I m_276835_ + 0 o p_277358_ + 1 o p_277763_ + 2 o p_277604_ + a (Ldcb;Lcmm;Lgu;Ldcb;Z)V m_6810_ + 0 o p_52532_ + 1 o p_52533_ + 2 o p_52534_ + 3 o p_52535_ + 4 o p_52536_ + a (Ldcb;Laif;Lgu;Lapf;)V m_213897_ + 0 o p_221065_ + 1 o p_221066_ + 2 o p_221067_ + 3 o p_221068_ + a (Lcmm;Lgu;Ldcb;)Z m_7320_ + 0 o p_52502_ + 1 o p_52503_ + 2 o p_52504_ + a (Ldcb;Lcls;Lgu;Leen;)Lefb; m_5940_ + 0 o p_52556_ + 1 o p_52557_ + 2 o p_52558_ + 3 o p_52559_ + a (Ldcb;Lcmm;Lgu;Lcpn;Lgu;Z)V m_6861_ + 0 o p_52525_ + 1 o p_52526_ + 2 o p_52527_ + 3 o p_52528_ + 4 o p_52529_ + 5 o p_52530_ + a (Lcmm;Lgu;Ldcb;Lbfz;Lcfz;)V m_6402_ + 0 o p_52506_ + 1 o p_52507_ + 2 o p_52508_ + 3 o p_52509_ + 4 o p_52510_ + a (Ldcb;Lcmp;Lgu;)Z m_7898_ + 0 o p_52538_ + 1 o p_52539_ + 2 o p_52540_ + a (Lcmp;Lgu;Ldcb;)Z m_7346_ + 0 o p_52511_ + 1 o p_52512_ + 2 o p_52513_ + a ()Z m_276978_ + a (Lcih;)Ldcb; m_5573_ + 0 o p_52501_ + b (Ldcb;Lcmm;Lgu;Ldcb;Z)V m_6807_ + 0 o p_52566_ + 1 o p_52567_ + 2 o p_52568_ + 3 o p_52569_ + 4 o p_52570_ + b (Lcls;Lgu;Ldcb;)I m_5968_ + 0 o p_52541_ + 1 o p_52542_ + 2 o p_52543_ + b (Ldcb;Lcls;Lgu;Lha;)I m_6376_ + 0 o p_52561_ + 1 o p_52562_ + 2 o p_52563_ + 3 o p_52564_ + b (Lcmm;Lgu;Ldcb;)I m_7312_ + 0 o p_52544_ + 1 o p_52545_ + 2 o p_52546_ + c (Lcls;Lgu;Ldcb;)Z m_52573_ + 0 o p_52574_ + 1 o p_52575_ + 2 o p_52576_ + c (Lcmm;Lgu;Ldcb;)V m_7321_ + 0 o p_52577_ + 1 o p_52578_ + 2 o p_52579_ + d (Lcmm;Lgu;Ldcb;)V m_52580_ + 0 o p_52581_ + 1 o p_52582_ + 2 o p_52583_ + f_ (Ldcb;)Z m_7899_ + 0 o p_52572_ + g (Ldcb;)I m_6112_ + 0 o p_52584_ + h (Ldcb;)Z m_52586_ + static + 0 o p_52587_ +crm net/minecraft/world/level/block/DirectionalBlock + a f_52588_ + ()V + static + (Ldca$d;)V + 0 o p_52591_ +crn net/minecraft/world/level/block/DirtPathBlock + a f_153126_ + ()V + static + (Ldca$d;)V + 0 o p_153129_ + a (Ldcb;Lha;Ldcb;Lcmn;Lgu;Lgu;)Ldcb; m_7417_ + 0 o p_153152_ + 1 o p_153153_ + 2 o p_153154_ + 3 o p_153155_ + 4 o p_153156_ + 5 o p_153157_ + a (Ldcb;Lcls;Lgu;Ldxu;)Z m_7357_ + 0 o p_153138_ + 1 o p_153139_ + 2 o p_153140_ + 3 o p_153141_ + a (Ldcb;Lcmp;Lgu;)Z m_7898_ + 0 o p_153148_ + 1 o p_153149_ + 2 o p_153150_ + a (Ldcb;Laif;Lgu;Lapf;)V m_213897_ + 0 o p_221070_ + 1 o p_221071_ + 2 o p_221072_ + 3 o p_221073_ + a (Lcih;)Ldcb; m_5573_ + 0 o p_153131_ + a (Ldcb;Lcls;Lgu;Leen;)Lefb; m_5940_ + 0 o p_153143_ + 1 o p_153144_ + 2 o p_153145_ + 3 o p_153146_ + g_ (Ldcb;)Z m_7923_ + 0 o p_153159_ +cro net/minecraft/world/level/block/DispenserBlock + a f_52659_ + b f_52660_ + c f_52661_ + d f_153160_ + ()V + static + (Ldca$d;)V + 0 o p_52664_ + a (Ldcb;Lcvz;)Ldcb; m_6843_ + 0 o p_52716_ + 1 o p_52717_ + a (Lcfz;)Lih; m_7216_ + 0 o p_52667_ + a (Ldcc$a;)V m_7926_ + 0 o p_52719_ + a (Ldcb;Lcmm;Lgu;Ldcb;Z)V m_6810_ + 0 o p_52707_ + 1 o p_52708_ + 2 o p_52709_ + 3 o p_52710_ + 4 o p_52711_ + a (Lit/unimi/dsi/fastutil/objects/Object2ObjectOpenHashMap;)V m_52722_ + static + 0 o p_52723_ + a (Ldcb;Laif;Lgu;Lapf;)V m_213897_ + 0 o p_221075_ + 1 o p_221076_ + 2 o p_221077_ + 3 o p_221078_ + a (Ldcb;Lcmm;Lgu;Lcpn;Lgu;Z)V m_6861_ + 0 o p_52700_ + 1 o p_52701_ + 2 o p_52702_ + 3 o p_52703_ + 4 o p_52704_ + 5 o p_52705_ + a (Lcmm;Lgu;Ldcb;Lbfz;Lcfz;)V m_6402_ + 0 o p_52676_ + 1 o p_52677_ + 2 o p_52678_ + 3 o p_52679_ + 4 o p_52680_ + a (Ldcb;Lcmm;Lgu;)I m_6782_ + 0 o p_52689_ + 1 o p_52690_ + 2 o p_52691_ + a (Ldcb;Lcui;)Ldcb; m_6943_ + 0 o p_52713_ + 1 o p_52714_ + a (Lgv;)Lho; m_52720_ + static + 0 o p_52721_ + a (Ldcb;Lcmm;Lgu;Lbyo;Lbdw;Leee;)Lbdx; m_6227_ + 0 o p_52693_ + 1 o p_52694_ + 2 o p_52695_ + 3 o p_52696_ + 4 o p_52697_ + 5 o p_52698_ + a (Lcml;Lih;)V m_52672_ + static + 0 o p_52673_ + 1 o p_52674_ + a (Lcih;)Ldcb; m_5573_ + 0 o p_52669_ + a (Laif;Lgu;)V m_5824_ + 0 o p_52665_ + 1 o p_52666_ + a (Lgu;Ldcb;)Lczn; m_142194_ + 0 o p_153162_ + 1 o p_153163_ + b_ (Ldcb;)Lcvs; m_7514_ + 0 o p_52725_ + d_ (Ldcb;)Z m_7278_ + 0 o p_52682_ +crp net/minecraft/world/level/block/DoorBlock + a f_52726_ + b f_52727_ + c f_52728_ + d f_52729_ + e f_52730_ + f f_153164_ + g f_52731_ + h f_52732_ + i f_52733_ + j f_52734_ + k f_271255_ + ()V + static + (Ldca$d;Ldcq;)V + 0 o p_273303_ + 1 o p_272854_ + a (Ldcb;Lha;Ldcb;Lcmn;Lgu;Lgu;)Ldcb; m_7417_ + 0 o p_52796_ + 1 o p_52797_ + 2 o p_52798_ + 3 o p_52799_ + 4 o p_52800_ + 5 o p_52801_ + a (Ldcb;Lcvz;)Ldcb; m_6843_ + 0 o p_52790_ + 1 o p_52791_ + a (Ldcc$a;)V m_7926_ + 0 o p_52803_ + a (Lbfj;Lcmm;Lgu;Z)V m_245755_ + 0 o p_251616_ + 1 o p_249656_ + 2 o p_249439_ + 3 o p_251628_ + a (Ldcb;Lcls;Lgu;Leen;)Lefb; m_5940_ + 0 o p_52807_ + 1 o p_52808_ + 2 o p_52809_ + 3 o p_52810_ + a (Lcmm;Lgu;Ldcb;Lbfz;Lcfz;)V m_6402_ + 0 o p_52749_ + 1 o p_52750_ + 2 o p_52751_ + 3 o p_52752_ + 4 o p_52753_ + a (Ldcb;Lcmm;Lgu;Lcpn;Lgu;Z)V m_6861_ + 0 o p_52776_ + 1 o p_52777_ + 2 o p_52778_ + 3 o p_52779_ + 4 o p_52780_ + 5 o p_52781_ + a (Ldcb;Lcui;)Ldcb; m_6943_ + 0 o p_52787_ + 1 o p_52788_ + a ()Ldcq; m_278711_ + a (Ldcb;Lcls;Lgu;Ldxu;)Z m_7357_ + 0 o p_52764_ + 1 o p_52765_ + 2 o p_52766_ + 3 o p_52767_ + a (Ldcb;Lcmp;Lgu;)Z m_7898_ + 0 o p_52783_ + 1 o p_52784_ + 2 o p_52785_ + a (Lbfj;Lcmm;Ldcb;Lgu;Z)V m_153165_ + 0 o p_153166_ + 1 o p_153167_ + 2 o p_153168_ + 3 o p_153169_ + 4 o p_153170_ + a (Lcmm;Lgu;Ldcb;Lbyo;)V m_5707_ + 0 o p_52755_ + 1 o p_52756_ + 2 o p_52757_ + 3 o p_52758_ + a (Ldcb;Lcmm;Lgu;Lbyo;Lbdw;Leee;)Lbdx; m_6227_ + 0 o p_52769_ + 1 o p_52770_ + 2 o p_52771_ + 3 o p_52772_ + 4 o p_52773_ + 5 o p_52774_ + a (Ldcb;Lgu;)J m_7799_ + 0 o p_52793_ + 1 o p_52794_ + a (Lcmm;Lgu;)Z m_52745_ + static + 0 o p_52746_ + 1 o p_52747_ + a (Lcih;)Ldcb; m_5573_ + 0 o p_52739_ + b (Lcih;)Ldcw; m_52804_ + 0 o p_52805_ + h (Ldcb;)Z m_52815_ + 0 o p_52816_ + n (Ldcb;)Z m_52817_ + static + 0 o p_52818_ +crp$1 net/minecraft/world/level/block/DoorBlock$1 + a f_52819_ + b f_52820_ + ()V + static +crq net/minecraft/world/level/block/DoubleBlockCombiner + ()V + a (Lczp;Ljava/util/function/Function;Ljava/util/function/Function;Ldcv;Ldcb;Lcmn;Lgu;Ljava/util/function/BiPredicate;)Lcrq$c; m_52822_ + static + 0 o p_52823_ + 1 o p_52824_ + 2 o p_52825_ + 3 o p_52826_ + 4 o p_52827_ + 5 o p_52828_ + 6 o p_52829_ + 7 o p_52830_ +crq$a net/minecraft/world/level/block/DoubleBlockCombiner$BlockType + a SINGLE + b FIRST + c SECOND + d $VALUES + ()V + static + (Ljava/lang/String;I)V + 0 o p_52837_ + 1 o p_52838_ + a ()[Lcrq$a; m_153172_ + static + valueOf (Ljava/lang/String;)Lcrq$a; valueOf + static + 0 o p_52840_ + values ()[Lcrq$a; values + static +crq$b net/minecraft/world/level/block/DoubleBlockCombiner$Combiner + a (Ljava/lang/Object;)Ljava/lang/Object; m_7693_ + 0 o p_52842_ + a (Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object; m_6959_ + 0 o p_52843_ + 1 o p_52844_ + b ()Ljava/lang/Object; m_6502_ +crq$c net/minecraft/world/level/block/DoubleBlockCombiner$NeighborCombineResult + apply (Lcrq$b;)Ljava/lang/Object; m_5649_ + 0 o p_52845_ +crq$c$a net/minecraft/world/level/block/DoubleBlockCombiner$NeighborCombineResult$Double + a f_52846_ + b f_52847_ + (Ljava/lang/Object;Ljava/lang/Object;)V + 0 o p_52849_ + 1 o p_52850_ + apply (Lcrq$b;)Ljava/lang/Object; m_5649_ + 0 o p_52852_ +crq$c$b net/minecraft/world/level/block/DoubleBlockCombiner$NeighborCombineResult$Single + a f_52853_ + (Ljava/lang/Object;)V + 0 o p_52855_ + apply (Lcrq$b;)Ljava/lang/Object; m_5649_ + 0 o p_52857_ +crr net/minecraft/world/level/block/DoublePlantBlock + a f_52858_ + ()V + static + (Ldca$d;)V + 0 o p_52861_ + a (Ldcb;Lha;Ldcb;Lcmn;Lgu;Lgu;)Ldcb; m_7417_ + 0 o p_52894_ + 1 o p_52895_ + 2 o p_52896_ + 3 o p_52897_ + 4 o p_52898_ + 5 o p_52899_ + a (Lcmp;Lgu;Ldcb;)Ldcb; m_182453_ + static + 0 o p_182454_ + 1 o p_182455_ + 2 o p_182456_ + a (Ldcc$a;)V m_7926_ + 0 o p_52901_ + a (Lcmm;Lgu;Ldcb;Lbfz;Lcfz;)V m_6402_ + 0 o p_52872_ + 1 o p_52873_ + 2 o p_52874_ + 3 o p_52875_ + 4 o p_52876_ + a (Ldcb;Lcmp;Lgu;)Z m_7898_ + 0 o p_52887_ + 1 o p_52888_ + 2 o p_52889_ + a (Lcmm;Lgu;Ldcb;Lbyo;)V m_5707_ + 0 o p_52878_ + 1 o p_52879_ + 2 o p_52880_ + 3 o p_52881_ + a (Lcmm;Lbyo;Lgu;Ldcb;Lczn;Lcfz;)V m_6240_ + 0 o p_52865_ + 1 o p_52866_ + 2 o p_52867_ + 3 o p_52868_ + 4 o p_52869_ + 5 o p_52870_ + a (Ldcb;Lgu;)J m_7799_ + 0 o p_52891_ + 1 o p_52892_ + a (Lcih;)Ldcb; m_5573_ + 0 o p_52863_ + a (Lcmn;Ldcb;Lgu;I)V m_153173_ + static + 0 o p_153174_ + 1 o p_153175_ + 2 o p_153176_ + 3 o p_153177_ + b (Lcmm;Lgu;Ldcb;Lbyo;)V m_52903_ + static + 0 o p_52904_ + 1 o p_52905_ + 2 o p_52906_ + 3 o p_52907_ +crs net/minecraft/world/level/block/DragonEggBlock + a f_52908_ + ()V + static + (Ldca$d;)V + 0 o p_52911_ + a (Ldcb;Lcls;Lgu;Ldxu;)Z m_7357_ + 0 o p_52913_ + 1 o p_52914_ + 2 o p_52915_ + 3 o p_52916_ + a (Ldcb;Lcmm;Lgu;Lbyo;Lbdw;Leee;)Lbdx; m_6227_ + 0 o p_52923_ + 1 o p_52924_ + 2 o p_52925_ + 3 o p_52926_ + 4 o p_52927_ + 5 o p_52928_ + a (Ldcb;Lcmm;Lgu;Lbyo;)V m_6256_ + 0 o p_52918_ + 1 o p_52919_ + 2 o p_52920_ + 3 o p_52921_ + a (Ldcb;Lcls;Lgu;Leen;)Lefb; m_5940_ + 0 o p_52930_ + 1 o p_52931_ + 2 o p_52932_ + 3 o p_52933_ + a ()I m_7198_ + d (Ldcb;Lcmm;Lgu;)V m_52935_ + 0 o p_52936_ + 1 o p_52937_ + 2 o p_52938_ +crt net/minecraft/world/level/block/DropExperienceBlock + a f_221079_ + (Ldca$d;Lbdc;)V + 0 o p_221083_ + 1 o p_221084_ + (Ldca$d;)V + 0 o p_221081_ + a (Ldcb;Laif;Lgu;Lcfz;Z)V m_213646_ + 0 o p_221086_ + 1 o p_221087_ + 2 o p_221088_ + 3 o p_221089_ + 4 o p_221090_ +cru net/minecraft/world/level/block/DropperBlock + c f_52939_ + ()V + static + (Ldca$d;)V + 0 o p_52942_ + a (Lcfz;)Lih; m_7216_ + 0 o p_52947_ + a (Laif;Lgu;)V m_5824_ + 0 o p_52944_ + 1 o p_52945_ + a (Lgu;Ldcb;)Lczn; m_142194_ + 0 o p_153179_ + 1 o p_153180_ +crv net/minecraft/world/level/block/EnchantmentTableBlock + a f_52950_ + b f_207902_ + ()V + static + (Ldca$d;)V + 0 o p_52953_ + a (Lcmm;Lgu;Lgu;)Z m_207909_ + static + 0 o p_207910_ + 1 o p_207911_ + 2 o p_207912_ + a (Lgu;)Z m_207913_ + static + 0 o p_207914_ + a (Ldcb;Lcls;Lgu;Leen;)Lefb; m_5940_ + 0 o p_52988_ + 1 o p_52989_ + 2 o p_52990_ + 3 o p_52991_ + a (Lcmm;Lgu;Ldcb;Lbfz;Lcfz;)V m_6402_ + 0 o p_52963_ + 1 o p_52964_ + 2 o p_52965_ + 3 o p_52966_ + 4 o p_52967_ + a (Ldcb;Lcmm;Lgu;Lapf;)V m_214162_ + 0 o p_221092_ + 1 o p_221093_ + 2 o p_221094_ + 3 o p_221095_ + a (Ldcb;Lcls;Lgu;Ldxu;)Z m_7357_ + 0 o p_52969_ + 1 o p_52970_ + 2 o p_52971_ + 3 o p_52972_ + a (Ldcb;Lcmm;Lgu;Lbyo;Lbdw;Leee;)Lbdx; m_6227_ + 0 o p_52974_ + 1 o p_52975_ + 2 o p_52976_ + 3 o p_52977_ + 4 o p_52978_ + 5 o p_52979_ + a (Lgu;Ldcb;)Lczn; m_142194_ + 0 o p_153186_ + 1 o p_153187_ + a (Lcmm;Ldcb;Lczp;)Lczo; m_142354_ + 0 o p_153182_ + 1 o p_153183_ + 2 o p_153184_ + a (Lcmm;Lgu;ILbyn;Lbyo;)Lcbf; m_207903_ + static + 0 o p_207904_ + 1 o p_207905_ + 2 o p_207906_ + 3 o p_207907_ + 4 o p_207908_ + b (Ldcb;Lcmm;Lgu;)Lbea; m_7246_ + 0 o p_52993_ + 1 o p_52994_ + 2 o p_52995_ + b_ (Ldcb;)Lcvs; m_7514_ + 0 o p_52986_ + g_ (Ldcb;)Z m_7923_ + 0 o p_52997_ +crw net/minecraft/world/level/block/EndGatewayBlock + (Ldca$d;)V + 0 o p_52999_ + a (Ldcb;Ldxd;)Z m_5946_ + 0 o p_53012_ + 1 o p_53013_ + a (Lcls;Lgu;Ldcb;)Lcfz; m_7397_ + 0 o p_53003_ + 1 o p_53004_ + 2 o p_53005_ + a (Lgu;Ldcb;)Lczn; m_142194_ + 0 o p_153193_ + 1 o p_153194_ + a (Lcmm;Ldcb;Lczp;)Lczo; m_142354_ + 0 o p_153189_ + 1 o p_153190_ + 2 o p_153191_ + a (Ldcb;Lcmm;Lgu;Lapf;)V m_214162_ + 0 o p_221097_ + 1 o p_221098_ + 2 o p_221099_ + 3 o p_221100_ +crx net/minecraft/world/level/block/EndPortalBlock + a f_53014_ + ()V + static + (Ldca$d;)V + 0 o p_53017_ + a (Ldcb;Ldxd;)Z m_5946_ + 0 o p_53035_ + 1 o p_53036_ + a (Ldcb;Lcmm;Lgu;Lbfj;)V m_7892_ + 0 o p_53025_ + 1 o p_53026_ + 2 o p_53027_ + 3 o p_53028_ + a (Ldcb;Lcls;Lgu;Leen;)Lefb; m_5940_ + 0 o p_53038_ + 1 o p_53039_ + 2 o p_53040_ + 3 o p_53041_ + a (Lcls;Lgu;Ldcb;)Lcfz; m_7397_ + 0 o p_53021_ + 1 o p_53022_ + 2 o p_53023_ + a (Lgu;Ldcb;)Lczn; m_142194_ + 0 o p_153196_ + 1 o p_153197_ + a (Ldcb;Lcmm;Lgu;Lapf;)V m_214162_ + 0 o p_221102_ + 1 o p_221103_ + 2 o p_221104_ + 3 o p_221105_ +cry net/minecraft/world/level/block/EndPortalFrameBlock + a f_53042_ + b f_53043_ + c f_53044_ + d f_53045_ + e f_53046_ + f f_53047_ + ()V + static + (Ldca$d;)V + 0 o p_53050_ + a (Ldcb;Lcls;Lgu;Ldxu;)Z m_7357_ + 0 o p_53056_ + 1 o p_53057_ + 2 o p_53058_ + 3 o p_53059_ + a ()Ldcg; m_53077_ + static + a (Ldcb;Lcvz;)Ldcb; m_6843_ + 0 o p_53068_ + 1 o p_53069_ + a (Ldcc$a;)V m_7926_ + 0 o p_53071_ + a (Lcih;)Ldcb; m_5573_ + 0 o p_53052_ + a (Ldcb;Lcls;Lgu;Leen;)Lefb; m_5940_ + 0 o p_53073_ + 1 o p_53074_ + 2 o p_53075_ + 3 o p_53076_ + a (Ldcb;Lcmm;Lgu;)I m_6782_ + 0 o p_53061_ + 1 o p_53062_ + 2 o p_53063_ + a (Ldcb;Lcui;)Ldcb; m_6943_ + 0 o p_53065_ + 1 o p_53066_ + d_ (Ldcb;)Z m_7278_ + 0 o p_53054_ + g_ (Ldcb;)Z m_7923_ + 0 o p_53079_ +crz net/minecraft/world/level/block/EndRodBlock + (Ldca$d;)V + 0 o p_53085_ + a (Ldcc$a;)V m_7926_ + 0 o p_53105_ + a (Lcih;)Ldcb; m_5573_ + 0 o p_53087_ + a (Ldcb;Lcmm;Lgu;Lapf;)V m_214162_ + 0 o p_221107_ + 1 o p_221108_ + 2 o p_221109_ + 3 o p_221110_ +cs net/minecraft/advancements/critereon/RecipeUnlockedTrigger + a f_63714_ + ()V + static + ()V + a (Lcom/google/gson/JsonObject;Lba;Lbe;)Lcs$a; m_7214_ + 0 o p_286387_ + 1 o p_286739_ + 2 o p_286649_ + a (Laig;Lcjc;)V m_63718_ + 0 o p_63719_ + 1 o p_63720_ + a ()Lacq; m_7295_ + a (Lacq;)Lcs$a; m_63728_ + static + 0 o p_63729_ + a (Lcjc;Lcs$a;)Z m_63721_ + static + 0 o p_63722_ + 1 o p_63723_ + b (Lcom/google/gson/JsonObject;Lba;Lbe;)Lar; m_7214_ + 0 o p_286577_ + 1 o p_286691_ + 2 o p_286438_ +cs$a net/minecraft/advancements/critereon/RecipeUnlockedTrigger$TriggerInstance + a f_63735_ + (Lba;Lacq;)V + 0 o p_286461_ + 1 o p_286775_ + a (Lct;)Lcom/google/gson/JsonObject; m_7683_ + 0 o p_63742_ + a (Lcjc;)Z m_63739_ + 0 o p_63740_ +csa net/minecraft/world/level/block/EnderChestBlock + b f_53115_ + c f_53116_ + d f_53117_ + e f_53118_ + ()V + static + (Ldca$d;)V + 0 o p_53121_ + a (Ldcb;Lha;Ldcb;Lcmn;Lgu;Lgu;)Ldcb; m_7417_ + 0 o p_53160_ + 1 o p_53161_ + 2 o p_53162_ + 3 o p_53163_ + 4 o p_53164_ + 5 o p_53165_ + a (Ldcb;Lcvz;)Ldcb; m_6843_ + 0 o p_53157_ + 1 o p_53158_ + a (Ldcc$a;)V m_7926_ + 0 o p_53167_ + a (Ldcb;Laif;Lgu;Lapf;)V m_213897_ + 0 o p_221112_ + 1 o p_221113_ + 2 o p_221114_ + 3 o p_221115_ + a (Ldcb;Lcls;Lgu;Leen;)Lefb; m_5940_ + 0 o p_53171_ + 1 o p_53172_ + 2 o p_53173_ + 3 o p_53174_ + a (Ldcb;Lcui;)Ldcb; m_6943_ + 0 o p_53154_ + 1 o p_53155_ + a (Ldcb;Lcmm;Lgu;Lapf;)V m_214162_ + 0 o p_221117_ + 1 o p_221118_ + 2 o p_221119_ + 3 o p_221120_ + a (Ldcb;Lcls;Lgu;Ldxu;)Z m_7357_ + 0 o p_53132_ + 1 o p_53133_ + 2 o p_53134_ + 3 o p_53135_ + a (Ldcb;Lcmm;Lgu;Z)Lcrq$c; m_5641_ + 0 o p_53149_ + 1 o p_53150_ + 2 o p_53151_ + 3 o p_53152_ + a (Ldcb;Lcmm;Lgu;Lbyo;Lbdw;Leee;)Lbdx; m_6227_ + 0 o p_53137_ + 1 o p_53138_ + 2 o p_53139_ + 3 o p_53140_ + 4 o p_53141_ + 5 o p_53142_ + a (Lcco;ILbyn;Lbyo;)Lcbf; m_53122_ + static + 0 o p_53123_ + 1 o p_53124_ + 2 o p_53125_ + 3 o p_53126_ + a (Lcih;)Ldcb; m_5573_ + 0 o p_53128_ + a (Lgu;Ldcb;)Lczn; m_142194_ + 0 o p_153208_ + 1 o p_153209_ + a (Lcmm;Ldcb;Lczp;)Lczo; m_142354_ + 0 o p_153199_ + 1 o p_153200_ + 2 o p_153201_ + b_ (Ldcb;)Lcvs; m_7514_ + 0 o p_53169_ + c_ (Ldcb;)Ldxe; m_5888_ + 0 o p_53177_ + g ()Lczp; m_53175_ + static +csb net/minecraft/world/level/block/EntityBlock + a (Lgu;Ldcb;)Lczn; m_142194_ + 0 o p_153215_ + 1 o p_153216_ + a (Lcmm;Ldcb;Lczp;)Lczo; m_142354_ + 0 o p_153212_ + 1 o p_153213_ + 2 o p_153214_ + a (Laif;Lczn;)Ldgn; m_214009_ + 0 o p_221121_ + 1 o p_221122_ +csc net/minecraft/world/level/block/EquipableCarvedPumpkinBlock + (Ldca$d;)V + 0 o p_289677_ + g ()Lbfo; m_40402_ +csd net/minecraft/world/level/block/FaceAttachedHorizontalDirectionalBlock + I f_53179_ + ()V + static + (Ldca$d;)V + 0 o p_53182_ + a (Ldcb;Lha;Ldcb;Lcmn;Lgu;Lgu;)Ldcb; m_7417_ + 0 o p_53190_ + 1 o p_53191_ + 2 o p_53192_ + 3 o p_53193_ + 4 o p_53194_ + 5 o p_53195_ + a (Ldcb;Lcmp;Lgu;)Z m_7898_ + 0 o p_53186_ + 1 o p_53187_ + 2 o p_53188_ + a (Lcih;)Ldcb; m_5573_ + 0 o p_53184_ + b (Lcmp;Lgu;Lha;)Z m_53196_ + static + 0 o p_53197_ + 1 o p_53198_ + 2 o p_53199_ + h (Ldcb;)Lha; m_53200_ + static + 0 o p_53201_ +csd$1 net/minecraft/world/level/block/FaceAttachedHorizontalDirectionalBlock$1 + a f_53202_ + ()V + static +cse net/minecraft/world/level/block/Fallable + a (Lcmm;Lgu;Lbvg;)V m_142525_ + 0 o p_153217_ + 1 o p_153218_ + 2 o p_153219_ + a (Lbfj;)Lben; m_252932_ + 0 o p_253907_ + a (Lcmm;Lgu;Ldcb;Ldcb;Lbvg;)V m_48792_ + 0 o p_153220_ + 1 o p_153221_ + 2 o p_153222_ + 3 o p_153223_ + 4 o p_153224_ +csf net/minecraft/world/level/block/FallingBlock + (Ldca$d;)V + 0 o p_53205_ + a (Ldcb;Lha;Ldcb;Lcmn;Lgu;Lgu;)Ldcb; m_7417_ + 0 o p_53226_ + 1 o p_53227_ + 2 o p_53228_ + 3 o p_53229_ + 4 o p_53230_ + 5 o p_53231_ + a (Ldcb;Laif;Lgu;Lapf;)V m_213897_ + 0 o p_221124_ + 1 o p_221125_ + 2 o p_221126_ + 3 o p_221127_ + a (Lbvg;)V m_6788_ + 0 o p_53206_ + a ()I m_7198_ + a (Ldcb;Lcmm;Lgu;Lapf;)V m_214162_ + 0 o p_221129_ + 1 o p_221130_ + 2 o p_221131_ + 3 o p_221132_ + b (Ldcb;Lcmm;Lgu;Ldcb;Z)V m_6807_ + 0 o p_53233_ + 1 o p_53234_ + 2 o p_53235_ + 3 o p_53236_ + 4 o p_53237_ + d (Ldcb;Lcls;Lgu;)I m_6248_ + 0 o p_53238_ + 1 o p_53239_ + 2 o p_53240_ + h (Ldcb;)Z m_53241_ + static + 0 o p_53242_ +csg net/minecraft/world/level/block/FarmBlock + a f_53243_ + b f_53244_ + c f_153225_ + ()V + static + (Ldca$d;)V + 0 o p_53247_ + a (Ldcb;Lha;Ldcb;Lcmn;Lgu;Lgu;)Ldcb; m_7417_ + 0 o p_53276_ + 1 o p_53277_ + 2 o p_53278_ + 3 o p_53279_ + 4 o p_53280_ + 5 o p_53281_ + a (Ldcc$a;)V m_7926_ + 0 o p_53283_ + a (Ldcb;Laif;Lgu;Lapf;)V m_213897_ + 0 o p_221134_ + 1 o p_221135_ + 2 o p_221136_ + 3 o p_221137_ + a (Lcmm;Ldcb;Lgu;Lbfj;F)V m_142072_ + 0 o p_153227_ + 1 o p_153228_ + 2 o p_153229_ + 3 o p_153230_ + 4 o p_153231_ + a (Ldcb;Lcls;Lgu;Leen;)Lefb; m_5940_ + 0 o p_53290_ + 1 o p_53291_ + 2 o p_53292_ + 3 o p_53293_ + a (Ldcb;Lcls;Lgu;Ldxu;)Z m_7357_ + 0 o p_53267_ + 1 o p_53268_ + 2 o p_53269_ + 3 o p_53270_ + a (Ldcb;Lcmp;Lgu;)Z m_7898_ + 0 o p_53272_ + 1 o p_53273_ + 2 o p_53274_ + a (Lcls;Lgu;)Z m_53250_ + static + 0 o p_279219_ + 1 o p_279209_ + a (Lcmp;Lgu;)Z m_53258_ + static + 0 o p_53259_ + 1 o p_53260_ + a (Lbfj;Ldcb;Lcmm;Lgu;)V m_269406_ + static + 0 o p_270981_ + 1 o p_270402_ + 2 o p_270568_ + 3 o p_270551_ + a (Lcih;)Ldcb; m_5573_ + 0 o p_53249_ + b (Ldcb;Laif;Lgu;Lapf;)V m_213898_ + 0 o p_221139_ + 1 o p_221140_ + 2 o p_221141_ + 3 o p_221142_ + g_ (Ldcb;)Z m_7923_ + 0 o p_53295_ +csh net/minecraft/world/level/block/FenceBlock + i f_53300_ + (Ldca$d;)V + 0 o p_53302_ + a (Ldcb;Lcls;Lgu;Ldxu;)Z m_7357_ + 0 o p_53306_ + 1 o p_53307_ + 2 o p_53308_ + 3 o p_53309_ + a (Ldcb;Lha;Ldcb;Lcmn;Lgu;Lgu;)Ldcb; m_7417_ + 0 o p_53323_ + 1 o p_53324_ + 2 o p_53325_ + 3 o p_53326_ + 4 o p_53327_ + 5 o p_53328_ + a (Ldcc$a;)V m_7926_ + 0 o p_53334_ + a (Ldcb;Lcmm;Lgu;Lbyo;Lbdw;Leee;)Lbdx; m_6227_ + 0 o p_53316_ + 1 o p_53317_ + 2 o p_53318_ + 3 o p_53319_ + 4 o p_53320_ + 5 o p_53321_ + a (Lcih;)Ldcb; m_5573_ + 0 o p_53304_ + a (Ldcb;ZLha;)Z m_53329_ + 0 o p_53330_ + 1 o p_53331_ + 2 o p_53332_ + b (Ldcb;Lcls;Lgu;Leen;)Lefb; m_5909_ + 0 o p_53311_ + 1 o p_53312_ + 2 o p_53313_ + 3 o p_53314_ + f (Ldcb;Lcls;Lgu;)Lefb; m_7952_ + 0 o p_53338_ + 1 o p_53339_ + 2 o p_53340_ + h (Ldcb;)Z m_153254_ + 0 o p_153255_ +csi net/minecraft/world/level/block/FenceGateBlock + D f_53353_ + E f_271446_ + a f_53341_ + b f_53342_ + c f_53343_ + d f_53344_ + e f_53345_ + f f_53346_ + g f_53347_ + h f_53348_ + i f_53349_ + j f_252518_ + k f_252514_ + l f_53350_ + m f_53351_ + n f_53352_ + ()V + static + (Ldca$d;Lddo;)V + 0 o p_273352_ + 1 o p_273340_ + a (Ldcb;Lha;Ldcb;Lcmn;Lgu;Lgu;)Ldcb; m_7417_ + 0 o p_53382_ + 1 o p_53383_ + 2 o p_53384_ + 3 o p_53385_ + 4 o p_53386_ + 5 o p_53387_ + a (Ldcc$a;)V m_7926_ + 0 o p_53389_ + a (Ldcb;Lha;)Z m_53378_ + static + 0 o p_53379_ + 1 o p_53380_ + a (Ldcb;Lcls;Lgu;Leen;)Lefb; m_5940_ + 0 o p_53391_ + 1 o p_53392_ + 2 o p_53393_ + 3 o p_53394_ + a (Ldcb;Lcmm;Lgu;Lcpn;Lgu;Z)V m_6861_ + 0 o p_53372_ + 1 o p_53373_ + 2 o p_53374_ + 3 o p_53375_ + 4 o p_53376_ + 5 o p_53377_ + a (Ldcb;Lcls;Lgu;Ldxu;)Z m_7357_ + 0 o p_53360_ + 1 o p_53361_ + 2 o p_53362_ + 3 o p_53363_ + a (Ldcb;Lcmm;Lgu;Lbyo;Lbdw;Leee;)Lbdx; m_6227_ + 0 o p_53365_ + 1 o p_53366_ + 2 o p_53367_ + 3 o p_53368_ + 4 o p_53369_ + 5 o p_53370_ + a (Lcih;)Ldcb; m_5573_ + 0 o p_53358_ + b_ (Ldcb;Lcls;Lgu;)Lefb; m_7947_ + 0 o p_253862_ + 1 o p_254569_ + 2 o p_254197_ + c (Ldcb;Lcls;Lgu;Leen;)Lefb; m_5939_ + 0 o p_53396_ + 1 o p_53397_ + 2 o p_53398_ + 3 o p_53399_ + f (Ldcb;Lcls;Lgu;)Lefb; m_7952_ + 0 o p_53401_ + 1 o p_53402_ + 2 o p_53403_ + h (Ldcb;)Z m_53404_ + 0 o p_53405_ +csi$1 net/minecraft/world/level/block/FenceGateBlock$1 + a f_53406_ + ()V + static +csj net/minecraft/world/level/block/FireBlock + D f_53419_ + E f_53420_ + F f_221143_ + G f_221144_ + H f_221145_ + I f_221146_ + J f_153260_ + K f_153261_ + L f_153262_ + M f_153263_ + N f_221147_ + O f_53422_ + c f_153264_ + d f_53408_ + e f_53409_ + f f_53410_ + g f_53411_ + h f_53412_ + i f_53413_ + j f_53414_ + k f_53415_ + l f_53416_ + m f_53417_ + n f_53418_ + ()V + static + (Ldca$d;)V + 0 o p_53425_ + a (Ldcb;Lha;Ldcb;Lcmn;Lgu;Lgu;)Ldcb; m_7417_ + 0 o p_53458_ + 1 o p_53459_ + 2 o p_53460_ + 3 o p_53461_ + 4 o p_53462_ + 5 o p_53463_ + a (Lcmp;Lgu;)I m_221156_ + 0 o p_221157_ + 1 o p_221158_ + a (Ldcc$a;)V m_7926_ + 0 o p_53465_ + a (Ldcb;Laif;Lgu;Lapf;)V m_213897_ + 0 o p_221160_ + 1 o p_221161_ + 2 o p_221162_ + 3 o p_221163_ + a (Ldcb;Lcls;Lgu;Leen;)Lefb; m_5940_ + 0 o p_53474_ + 1 o p_53475_ + 2 o p_53476_ + 3 o p_53477_ + a (Lcmm;Lgu;ILapf;I)V m_221150_ + 0 o p_221151_ + 1 o p_221152_ + 2 o p_221153_ + 3 o p_221154_ + 4 o p_221155_ + a (Ljava/util/Map$Entry;)Z m_53466_ + static + 0 o p_53467_ + a (Ldcb;Lcmp;Lgu;)Z m_7898_ + 0 o p_53454_ + 1 o p_53455_ + 2 o p_53456_ + a (Lcmm;Lgu;)Z m_53428_ + 0 o p_53429_ + 1 o p_53430_ + a (Lcmn;Lgu;I)Ldcb; m_53437_ + 0 o p_53438_ + 1 o p_53439_ + 2 o p_53440_ + a ()V m_53484_ + static + a (Lcih;)Ldcb; m_5573_ + 0 o p_53427_ + a (Lcpn;II)V m_53444_ + 0 o p_53445_ + 1 o p_53446_ + 2 o p_53447_ + a (Lapf;)I m_221148_ + static + 0 o p_221149_ + b (Ldcb;Lcmm;Lgu;Ldcb;Z)V m_6807_ + 0 o p_53479_ + 1 o p_53480_ + 2 o p_53481_ + 3 o p_53482_ + 4 o p_53483_ + b (Lcls;Lgu;)Ldcb; m_53470_ + 0 o p_53471_ + 1 o p_53472_ + d (Lcls;Lgu;)Z m_53485_ + 0 o p_53486_ + 1 o p_53487_ + f (Ldcb;)Z m_7599_ + 0 o p_53489_ + h (Ldcb;)Lefb; m_53490_ + static + 0 o p_53491_ + n (Ldcb;)I m_221164_ + 0 o p_221165_ + o (Ldcb;)I m_221166_ + 0 o p_221167_ + p (Ldcb;)Z m_53496_ + static + 0 o p_53497_ +csk net/minecraft/world/level/block/FletchingTableBlock + (Ldca$d;)V + 0 o p_53499_ + a (Ldcb;Lcmm;Lgu;Lbyo;Lbdw;Leee;)Lbdx; m_6227_ + 0 o p_53501_ + 1 o p_53502_ + 2 o p_53503_ + 3 o p_53504_ + 4 o p_53505_ + 5 o p_53506_ +csl net/minecraft/world/level/block/FlowerBlock + a f_153265_ + b f_53507_ + c f_53508_ + d f_53509_ + ()V + static + (Lbey;ILdca$d;)V + 0 o p_53512_ + 1 o p_53513_ + 2 o p_53514_ + a ()Lbey; m_53521_ + a (Ldcb;Lcls;Lgu;Leen;)Lefb; m_5940_ + 0 o p_53517_ + 1 o p_53518_ + 2 o p_53519_ + 3 o p_53520_ + b ()I m_53522_ +csm net/minecraft/world/level/block/FlowerPotBlock + a f_153266_ + b f_53523_ + c f_53524_ + d f_53525_ + ()V + static + (Lcpn;Ldca$d;)V + 0 o p_53528_ + 1 o p_53529_ + a (Ldcb;Lha;Ldcb;Lcmn;Lgu;Lgu;)Ldcb; m_7417_ + 0 o p_53547_ + 1 o p_53548_ + 2 o p_53549_ + 3 o p_53550_ + 4 o p_53551_ + 5 o p_53552_ + a (Ldcb;Lcls;Lgu;Ldxu;)Z m_7357_ + 0 o p_53535_ + 1 o p_53536_ + 2 o p_53537_ + 3 o p_53538_ + a (Ldcb;Lcmm;Lgu;Lbyo;Lbdw;Leee;)Lbdx; m_6227_ + 0 o p_53540_ + 1 o p_53541_ + 2 o p_53542_ + 3 o p_53543_ + 4 o p_53544_ + 5 o p_53545_ + a (Ldcb;Lcls;Lgu;Leen;)Lefb; m_5940_ + 0 o p_53556_ + 1 o p_53557_ + 2 o p_53558_ + 3 o p_53559_ + a (Lcls;Lgu;Ldcb;)Lcfz; m_7397_ + 0 o p_53531_ + 1 o p_53532_ + 2 o p_53533_ + a ()Lcpn; m_53560_ + b_ (Ldcb;)Lcvs; m_7514_ + 0 o p_53554_ + g ()Z m_153267_ +csn net/minecraft/world/level/block/FrogspawnBlock + a f_221168_ + b f_221169_ + c f_221170_ + d f_221171_ + e f_221172_ + f f_221173_ + g f_221174_ + ()V + static + (Ldca$d;)V + 0 o p_221177_ + a (Ldcb;Lha;Ldcb;Lcmn;Lgu;Lgu;)Ldcb; m_7417_ + 0 o p_221213_ + 1 o p_221214_ + 2 o p_221215_ + 3 o p_221216_ + 4 o p_221217_ + 5 o p_221218_ + a (Ldcb;Lcmm;Lgu;Lbfj;)V m_7892_ + 0 o p_221204_ + 1 o p_221205_ + 2 o p_221206_ + 3 o p_221207_ + a (Ldcb;Laif;Lgu;Lapf;)V m_213897_ + 0 o p_221194_ + 1 o p_221195_ + 2 o p_221196_ + 3 o p_221197_ + a (II)V m_221178_ + static + 0 o p_221179_ + 1 o p_221180_ + a (Ldcb;Lcls;Lgu;Leen;)Lefb; m_5940_ + 0 o p_221199_ + 1 o p_221200_ + 2 o p_221201_ + 3 o p_221202_ + a (Laif;Lgu;Lapf;)V m_221181_ + 0 o p_221182_ + 1 o p_221183_ + 2 o p_221184_ + a (Ldcb;Lcmp;Lgu;)Z m_7898_ + 0 o p_221209_ + 1 o p_221210_ + 2 o p_221211_ + a (Lcls;Lgu;)Z m_221187_ + static + 0 o p_221188_ + 1 o p_221189_ + a ()V m_221219_ + static + a (Lcmm;Lgu;)V m_221190_ + 0 o p_221191_ + 1 o p_221192_ + a (Lapf;)I m_221185_ + static + 0 o p_221186_ + b (Ldcb;Lcmm;Lgu;Ldcb;Z)V m_6807_ + 0 o p_221227_ + 1 o p_221228_ + 2 o p_221229_ + 3 o p_221230_ + 4 o p_221231_ + b (Laif;Lgu;Lapf;)V m_221220_ + 0 o p_221221_ + 1 o p_221222_ + 2 o p_221223_ + b (Lapf;)D m_221224_ + 0 o p_221225_ +cso net/minecraft/world/level/block/FrostedIceBlock + a f_153268_ + b f_53561_ + c f_153269_ + d f_153270_ + ()V + static + (Ldca$d;)V + 0 o p_53564_ + a (Ldcc$a;)V m_7926_ + 0 o p_53586_ + a (Ldcb;Laif;Lgu;Lapf;)V m_213897_ + 0 o p_221233_ + 1 o p_221234_ + 2 o p_221235_ + 3 o p_221236_ + a (Ldcb;Lcmm;Lgu;Lcpn;Lgu;Z)V m_6861_ + 0 o p_53579_ + 1 o p_53580_ + 2 o p_53581_ + 3 o p_53582_ + 4 o p_53583_ + 5 o p_53584_ + a (Lcls;Lgu;I)Z m_53565_ + 0 o p_53566_ + 1 o p_53567_ + 2 o p_53568_ + a (Lcls;Lgu;Ldcb;)Lcfz; m_7397_ + 0 o p_53570_ + 1 o p_53571_ + 2 o p_53572_ + b (Ldcb;Laif;Lgu;Lapf;)V m_213898_ + 0 o p_221238_ + 1 o p_221239_ + 2 o p_221240_ + 3 o p_221241_ + e (Ldcb;Lcmm;Lgu;)Z m_53592_ + 0 o p_53593_ + 1 o p_53594_ + 2 o p_53595_ +csp net/minecraft/world/level/block/FungusBlock + a f_53596_ + b f_153271_ + c f_256997_ + d f_53597_ + ()V + static + (Ldca$d;Lacp;Lcpn;)V + 0 o p_259749_ + 1 o p_259087_ + 2 o p_260223_ + a (Lcmp;)Ljava/util/Optional; m_255216_ + 0 o p_256589_ + a (Lcmm;Lapf;Lgu;Ldcb;)Z m_214167_ + 0 o p_221248_ + 1 o p_221249_ + 2 o p_221250_ + 3 o p_221251_ + a (Lcmp;Lgu;Ldcb;Z)Z m_7370_ + 0 o p_256655_ + 1 o p_256553_ + 2 o p_256213_ + 3 o p_256270_ + a (Laif;Lapf;Lgu;Lhe;)V m_254840_ + static + 0 o p_256516_ + 1 o p_255804_ + 2 o p_255721_ + 3 o p_256352_ + a (Ldcb;Lcls;Lgu;Leen;)Lefb; m_5940_ + 0 o p_53618_ + 1 o p_53619_ + 2 o p_53620_ + 3 o p_53621_ + a (Laif;Lapf;Lgu;Ldcb;)V m_214148_ + 0 o p_221243_ + 1 o p_221244_ + 2 o p_221245_ + 3 o p_221246_ + d (Ldcb;Lcls;Lgu;)Z m_6266_ + 0 o p_53623_ + 1 o p_53624_ + 2 o p_53625_ +csq net/minecraft/world/level/block/FurnaceBlock + (Ldca$d;)V + 0 o p_53627_ + a (Lgu;Ldcb;)Lczn; m_142194_ + 0 o p_153277_ + 1 o p_153278_ + a (Lcmm;Ldcb;Lczp;)Lczo; m_142354_ + 0 o p_153273_ + 1 o p_153274_ + 2 o p_153275_ + a (Ldcb;Lcmm;Lgu;Lapf;)V m_214162_ + 0 o p_221253_ + 1 o p_221254_ + 2 o p_221255_ + 3 o p_221256_ + a (Lcmm;Lgu;Lbyo;)V m_7137_ + 0 o p_53631_ + 1 o p_53632_ + 2 o p_53633_ +csr net/minecraft/world/level/block/GameMasterBlock +css net/minecraft/world/level/block/GlassBlock + (Ldca$d;)V + 0 o p_53640_ +cst net/minecraft/world/level/block/GlazedTerracottaBlock + (Ldca$d;)V + 0 o p_53677_ + a (Ldcc$a;)V m_7926_ + 0 o p_53681_ + a (Lcih;)Ldcb; m_5573_ + 0 o p_53679_ +csu net/minecraft/world/level/block/GlowLichenBlock + b f_153279_ + c f_221257_ + ()V + static + (Ldca$d;)V + 0 o p_153282_ + a (Ldcb;Lha;Ldcb;Lcmn;Lgu;Lgu;)Ldcb; m_7417_ + 0 o p_153302_ + 1 o p_153303_ + 2 o p_153304_ + 3 o p_153305_ + 4 o p_153306_ + 5 o p_153307_ + a (Ldcc$a;)V m_7926_ + 0 o p_153309_ + a (Lcmp;Lgu;Ldcb;Z)Z m_7370_ + 0 o p_256569_ + 1 o p_153290_ + 2 o p_153291_ + 3 o p_153292_ + a (Ldcb;Lcih;)Z m_6864_ + 0 o p_153299_ + 1 o p_153300_ + a (Laif;Lapf;Lgu;Ldcb;)V m_214148_ + 0 o p_221259_ + 1 o p_221260_ + 2 o p_221261_ + 3 o p_221262_ + a (Ldcb;Lcmp;Lgu;Lha;)Z m_181228_ + 0 o p_181229_ + 1 o p_255939_ + 2 o p_181231_ + 3 o p_153316_ + a (Lcmm;Lapf;Lgu;Ldcb;)Z m_214167_ + 0 o p_221264_ + 1 o p_221265_ + 2 o p_221266_ + 3 o p_221267_ + a (ILdcb;)I m_181219_ + static + 0 o p_181220_ + 1 o p_181221_ + b (I)Ljava/util/function/ToIntFunction; m_181222_ + static + 0 o p_181223_ + b ()Lcum; m_213612_ + c (Ldcb;Lcls;Lgu;)Z m_7420_ + 0 o p_181225_ + 1 o p_181226_ + 2 o p_181227_ + c_ (Ldcb;)Ldxe; m_5888_ + 0 o p_153311_ +csv net/minecraft/world/level/block/GrassBlock + (Ldca$d;)V + 0 o p_53685_ + a (Lcmm;Lapf;Lgu;Ldcb;)Z m_214167_ + 0 o p_221275_ + 1 o p_221276_ + 2 o p_221277_ + 3 o p_221278_ + a (Lcmp;Lgu;Ldcb;Z)Z m_7370_ + 0 o p_256229_ + 1 o p_256432_ + 2 o p_255677_ + 3 o p_256630_ + a (Laif;Lapf;Lgu;Ldcb;)V m_214148_ + 0 o p_221270_ + 1 o p_221271_ + 2 o p_221272_ + 3 o p_221273_ +csw net/minecraft/world/level/block/GravelBlock + (Ldca$d;)V + 0 o p_53736_ + d (Ldcb;Lcls;Lgu;)I m_6248_ + 0 o p_53738_ + 1 o p_53739_ + 2 o p_53740_ +csx net/minecraft/world/level/block/GrindstoneBlock + D f_53798_ + E f_53799_ + F f_53800_ + G f_53801_ + H f_53802_ + J f_53803_ + K f_53804_ + L f_53805_ + M f_53741_ + N f_53742_ + O f_53743_ + P f_53744_ + Q f_53745_ + R f_53746_ + S f_53747_ + T f_53748_ + U f_53749_ + V f_53750_ + W f_53751_ + X f_53752_ + Y f_53753_ + Z f_53754_ + a f_53767_ + aA f_53783_ + aB f_53784_ + aP f_53768_ + aa f_53755_ + ab f_53756_ + ac f_53757_ + ad f_53758_ + ae f_53759_ + af f_53760_ + ag f_53761_ + ah f_53762_ + ai f_53763_ + aj f_53764_ + ak f_53765_ + al f_53766_ + am f_53769_ + an f_53770_ + ao f_53771_ + ap f_53772_ + aq f_53773_ + ar f_53774_ + as f_53775_ + at f_53776_ + au f_53777_ + av f_53778_ + aw f_53779_ + ax f_53780_ + ay f_53781_ + az f_53782_ + b f_53785_ + c f_53786_ + d f_53787_ + e f_53788_ + f f_53789_ + g f_53790_ + h f_53791_ + i f_53792_ + j f_53793_ + k f_53794_ + l f_53795_ + m f_53796_ + n f_53797_ + ()V + static + (Ldca$d;)V + 0 o p_53808_ + a (Ldcb;Lcvz;)Ldcb; m_6843_ + 0 o p_53835_ + 1 o p_53836_ + a (Ldcc$a;)V m_7926_ + 0 o p_53838_ + a (Ldcb;Lcls;Lgu;Leen;)Lefb; m_5940_ + 0 o p_53842_ + 1 o p_53843_ + 2 o p_53844_ + 3 o p_53845_ + a (Ldcb;Lcui;)Ldcb; m_6943_ + 0 o p_53832_ + 1 o p_53833_ + a (Ldcb;Lcls;Lgu;Ldxu;)Z m_7357_ + 0 o p_53816_ + 1 o p_53817_ + 2 o p_53818_ + 3 o p_53819_ + a (Ldcb;Lcmp;Lgu;)Z m_7898_ + 0 o p_53828_ + 1 o p_53829_ + 2 o p_53830_ + a (Ldcb;Lcmm;Lgu;Lbyo;Lbdw;Leee;)Lbdx; m_6227_ + 0 o p_53821_ + 1 o p_53822_ + 2 o p_53823_ + 3 o p_53824_ + 4 o p_53825_ + 5 o p_53826_ + a (Lcmm;Lgu;ILbyn;Lbyo;)Lcbf; m_53809_ + static + 0 o p_53810_ + 1 o p_53811_ + 2 o p_53812_ + 3 o p_53813_ + 4 o p_53814_ + b (Ldcb;Lcmm;Lgu;)Lbea; m_7246_ + 0 o p_53847_ + 1 o p_53848_ + 2 o p_53849_ + b_ (Ldcb;)Lcvs; m_7514_ + 0 o p_53840_ + c (Ldcb;Lcls;Lgu;Leen;)Lefb; m_5939_ + 0 o p_53851_ + 1 o p_53852_ + 2 o p_53853_ + 3 o p_53854_ + n (Ldcb;)Lefb; m_53855_ + 0 o p_53856_ +csx$1 net/minecraft/world/level/block/GrindstoneBlock$1 + a f_53857_ + ()V + static +csy net/minecraft/world/level/block/GrowingPlantBlock + a f_53859_ + b f_53860_ + c f_53861_ + (Ldca$d;Lha;Lefb;Z)V + 0 o p_53863_ + 1 o p_53864_ + 2 o p_53865_ + 3 o p_53866_ + a (Ldcb;Lcmp;Lgu;)Z m_7898_ + 0 o p_53876_ + 1 o p_53877_ + 2 o p_53878_ + a (Ldcb;Laif;Lgu;Lapf;)V m_213897_ + 0 o p_221280_ + 1 o p_221281_ + 2 o p_221282_ + 3 o p_221283_ + a (Lcih;)Ldcb; m_5573_ + 0 o p_53868_ + a (Ldcb;Lcls;Lgu;Leen;)Lefb; m_5940_ + 0 o p_53880_ + 1 o p_53881_ + 2 o p_53882_ + 3 o p_53883_ + a ()Lcpn; m_7777_ + a (Lcmn;)Ldcb; m_7722_ + 0 o p_53869_ + b ()Lcta; m_7272_ + h (Ldcb;)Z m_142209_ + 0 o p_153321_ +csz net/minecraft/world/level/block/GrowingPlantBodyBlock + (Ldca$d;Lha;Lefb;Z)V + 0 o p_53886_ + 1 o p_53887_ + 2 o p_53888_ + 3 o p_53889_ + a (Ldcb;Lha;Ldcb;Lcmn;Lgu;Lgu;)Ldcb; m_7417_ + 0 o p_53913_ + 1 o p_53914_ + 2 o p_53915_ + 3 o p_53916_ + 4 o p_53917_ + 5 o p_53918_ + a (Lcls;Lgu;Lcpn;)Ljava/util/Optional; m_153322_ + 0 o p_153323_ + 1 o p_153324_ + 2 o p_153325_ + a (Ldcb;Ldcb;)Ldcb; m_142644_ + 0 o p_153326_ + 1 o p_153327_ + a (Lcmm;Lapf;Lgu;Ldcb;)Z m_214167_ + 0 o p_221290_ + 1 o p_221291_ + 2 o p_221292_ + 3 o p_221293_ + a (Lcmp;Lgu;Ldcb;Z)Z m_7370_ + 0 o p_256221_ + 1 o p_255647_ + 2 o p_256117_ + 3 o p_256504_ + a (Lcls;Lgu;Ldcb;)Lcfz; m_7397_ + 0 o p_53896_ + 1 o p_53897_ + 2 o p_53898_ + a ()Lcpn; m_7777_ + a (Ldcb;Lcih;)Z m_6864_ + 0 o p_53910_ + 1 o p_53911_ + a (Laif;Lapf;Lgu;Ldcb;)V m_214148_ + 0 o p_221285_ + 1 o p_221286_ + 2 o p_221287_ + 3 o p_221288_ +ct net/minecraft/advancements/critereon/SerializationContext + a f_64768_ + b f_64769_ + ()V + static + ()V + a ([Leck;)Lcom/google/gson/JsonElement; m_64772_ + 0 o p_64773_ +cta net/minecraft/world/level/block/GrowingPlantHeadBlock + d f_53924_ + e f_153328_ + f f_53925_ + ()V + static + (Ldca$d;Lha;Lefb;ZD)V + 0 o p_53928_ + 1 o p_53929_ + 2 o p_53930_ + 3 o p_53931_ + 4 o p_53932_ + a (Ldcb;Lha;Ldcb;Lcmn;Lgu;Lgu;)Ldcb; m_7417_ + 0 o p_53951_ + 1 o p_53952_ + 2 o p_53953_ + 3 o p_53954_ + 4 o p_53955_ + 5 o p_53956_ + a (Ldcc$a;)V m_7926_ + 0 o p_53958_ + a (Lcmp;Lgu;Ldcb;Z)Z m_7370_ + 0 o p_255931_ + 1 o p_256046_ + 2 o p_256550_ + 3 o p_256181_ + a (Lcmn;)Ldcb; m_7722_ + 0 o p_53949_ + a (Laif;Lapf;Lgu;Ldcb;)V m_214148_ + 0 o p_221337_ + 1 o p_221338_ + 2 o p_221339_ + 3 o p_221340_ + a (Ldcb;Ldcb;)Ldcb; m_142643_ + 0 o p_153329_ + 1 o p_153330_ + a (Ldcb;Lapf;)Ldcb; m_214070_ + 0 o p_221347_ + 1 o p_221348_ + a (Lcmm;Lapf;Lgu;Ldcb;)Z m_214167_ + 0 o p_221343_ + 1 o p_221344_ + 2 o p_221345_ + 3 o p_221346_ + a (Lapf;)I m_213627_ + 0 o p_221341_ + b ()Lcta; m_7272_ + b (Ldcb;Laif;Lgu;Lapf;)V m_213898_ + 0 o p_221350_ + 1 o p_221351_ + 2 o p_221352_ + 3 o p_221353_ + e_ (Ldcb;)Z m_6724_ + 0 o p_53961_ + g (Ldcb;)Z m_5971_ + 0 o p_53968_ + n (Ldcb;)Ldcb; m_187438_ + 0 o p_187439_ + o (Ldcb;)Z m_187440_ + 0 o p_187441_ +ctb net/minecraft/world/level/block/HalfTransparentBlock + (Ldca$d;)V + 0 o p_53970_ + a (Ldcb;Ldcb;Lha;)Z m_6104_ + 0 o p_53972_ + 1 o p_53973_ + 2 o p_53974_ +ctc net/minecraft/world/level/block/HangingRootsBlock + a f_153333_ + b f_153334_ + ()V + static + (Ldca$d;)V + 0 o p_153337_ + a (Ldcb;Lha;Ldcb;Lcmn;Lgu;Lgu;)Ldcb; m_7417_ + 0 o p_153351_ + 1 o p_153352_ + 2 o p_153353_ + 3 o p_153354_ + 4 o p_153355_ + 5 o p_153356_ + a (Ldcb;Lcmp;Lgu;)Z m_7898_ + 0 o p_153347_ + 1 o p_153348_ + 2 o p_153349_ + a (Ldcc$a;)V m_7926_ + 0 o p_153358_ + a (Lcih;)Ldcb; m_5573_ + 0 o p_153340_ + a (Ldcb;Lcls;Lgu;Leen;)Lefb; m_5940_ + 0 o p_153342_ + 1 o p_153343_ + 2 o p_153344_ + 3 o p_153345_ + c_ (Ldcb;)Ldxe; m_5888_ + 0 o p_153360_ +ctd net/minecraft/world/level/block/HayBlock + (Ldca$d;)V + 0 o p_53976_ + a (Lcmm;Ldcb;Lgu;Lbfj;F)V m_142072_ + 0 o p_153362_ + 1 o p_153363_ + 2 o p_153364_ + 3 o p_153365_ + 4 o p_153366_ +cte net/minecraft/world/level/block/HoneyBlock + a f_53982_ + b f_153367_ + c f_153368_ + d f_153369_ + e f_153370_ + ()V + static + (Ldca$d;)V + 0 o p_53985_ + a (Ldcb;Lcmm;Lgu;Lbfj;)V m_7892_ + 0 o p_54003_ + 1 o p_54004_ + 2 o p_54005_ + 3 o p_54006_ + a (Lbfj;Lgu;)V m_53991_ + 0 o p_53992_ + 1 o p_53993_ + a (Lbfj;)V m_53986_ + static + 0 o p_53987_ + a (Lcmm;Ldcb;Lgu;Lbfj;F)V m_142072_ + 0 o p_153372_ + 1 o p_153373_ + 2 o p_153374_ + 3 o p_153375_ + 4 o p_153376_ + a (Lgu;Lbfj;)Z m_54007_ + 0 o p_54008_ + 1 o p_54009_ + a (Lcmm;Lbfj;)V m_53994_ + 0 o p_53995_ + 1 o p_53996_ + a (Lbfj;I)V m_53988_ + static + 0 o p_53989_ + 1 o p_53990_ + b (Lbfj;)V m_54010_ + static + 0 o p_54011_ + c (Lbfj;)Z m_54012_ + static + 0 o p_54013_ + c (Ldcb;Lcls;Lgu;Leen;)Lefb; m_5939_ + 0 o p_54015_ + 1 o p_54016_ + 2 o p_54017_ + 3 o p_54018_ + d (Lbfj;)V m_54019_ + 0 o p_54020_ +ctf net/minecraft/world/level/block/HopperBlock + D f_54035_ + E f_54036_ + a f_54021_ + b f_54022_ + c f_54023_ + d f_54024_ + e f_54025_ + f f_54026_ + g f_54027_ + h f_54028_ + i f_54029_ + j f_54030_ + k f_54031_ + l f_54032_ + m f_54033_ + n f_54034_ + ()V + static + (Ldca$d;)V + 0 o p_54039_ + a (Ldcb;Lcvz;)Ldcb; m_6843_ + 0 o p_54094_ + 1 o p_54095_ + a (Ldcb;Lcmm;Lgu;Lbfj;)V m_7892_ + 0 o p_54066_ + 1 o p_54067_ + 2 o p_54068_ + 3 o p_54069_ + a (Ldcc$a;)V m_7926_ + 0 o p_54097_ + a (Ldcb;Lcmm;Lgu;Ldcb;Z)V m_6810_ + 0 o p_54085_ + 1 o p_54086_ + 2 o p_54087_ + 3 o p_54088_ + 4 o p_54089_ + a (Ldcb;Lcls;Lgu;Leen;)Lefb; m_5940_ + 0 o p_54105_ + 1 o p_54106_ + 2 o p_54107_ + 3 o p_54108_ + a (Lcmm;Lgu;Ldcb;Lbfz;Lcfz;)V m_6402_ + 0 o p_54049_ + 1 o p_54050_ + 2 o p_54051_ + 3 o p_54052_ + 4 o p_54053_ + a (Ldcb;Lcmm;Lgu;Lcpn;Lgu;Z)V m_6861_ + 0 o p_54078_ + 1 o p_54079_ + 2 o p_54080_ + 3 o p_54081_ + 4 o p_54082_ + 5 o p_54083_ + a (Ldcb;Lcmm;Lgu;)I m_6782_ + 0 o p_54062_ + 1 o p_54063_ + 2 o p_54064_ + a (Ldcb;Lcui;)Ldcb; m_6943_ + 0 o p_54091_ + 1 o p_54092_ + a (Ldcb;Lcls;Lgu;)Lefb; m_6079_ + 0 o p_54099_ + 1 o p_54100_ + 2 o p_54101_ + a (Ldcb;Lcls;Lgu;Ldxu;)Z m_7357_ + 0 o p_54057_ + 1 o p_54058_ + 2 o p_54059_ + 3 o p_54060_ + a (Ldcb;Lcmm;Lgu;Lbyo;Lbdw;Leee;)Lbdx; m_6227_ + 0 o p_54071_ + 1 o p_54072_ + 2 o p_54073_ + 3 o p_54074_ + 4 o p_54075_ + 5 o p_54076_ + a (Lcih;)Ldcb; m_5573_ + 0 o p_54041_ + a (Lgu;Ldcb;)Lczn; m_142194_ + 0 o p_153382_ + 1 o p_153383_ + a (Lcmm;Ldcb;Lczp;)Lczo; m_142354_ + 0 o p_153378_ + 1 o p_153379_ + 2 o p_153380_ + a (Lcmm;Lgu;Ldcb;I)V m_274306_ + 0 o p_275499_ + 1 o p_275298_ + 2 o p_275611_ + 3 o p_275625_ + b (Ldcb;Lcmm;Lgu;Ldcb;Z)V m_6807_ + 0 o p_54110_ + 1 o p_54111_ + 2 o p_54112_ + 3 o p_54113_ + 4 o p_54114_ + b_ (Ldcb;)Lcvs; m_7514_ + 0 o p_54103_ + d_ (Ldcb;)Z m_7278_ + 0 o p_54055_ +ctf$1 net/minecraft/world/level/block/HopperBlock$1 + a f_54115_ + ()V + static +ctg net/minecraft/world/level/block/HorizontalDirectionalBlock + aC f_54117_ + ()V + static + (Ldca$d;)V + 0 o p_54120_ + a (Ldcb;Lcvz;)Ldcb; m_6843_ + 0 o p_54125_ + 1 o p_54126_ + a (Ldcb;Lcui;)Ldcb; m_6943_ + 0 o p_54122_ + 1 o p_54123_ +cth net/minecraft/world/level/block/HugeMushroomBlock + a f_54127_ + b f_54128_ + c f_54129_ + d f_54130_ + e f_54131_ + f f_54132_ + g f_54133_ + ()V + static + (Ldca$d;)V + 0 o p_54136_ + a (Ldcb;Lha;Ldcb;Lcmn;Lgu;Lgu;)Ldcb; m_7417_ + 0 o p_54146_ + 1 o p_54147_ + 2 o p_54148_ + 3 o p_54149_ + 4 o p_54150_ + 5 o p_54151_ + a (Ldcb;Lcvz;)Ldcb; m_6843_ + 0 o p_54143_ + 1 o p_54144_ + a (Ldcc$a;)V m_7926_ + 0 o p_54153_ + a (Lcih;)Ldcb; m_5573_ + 0 o p_54138_ + a (Ldcb;Lcui;)Ldcb; m_6943_ + 0 o p_54140_ + 1 o p_54141_ +cti net/minecraft/world/level/block/IceBlock + (Ldca$d;)V + 0 o p_54155_ + a (Lcmm;Lbyo;Lgu;Ldcb;Lczn;Lcfz;)V m_6240_ + 0 o p_54157_ + 1 o p_54158_ + 2 o p_54159_ + 3 o p_54160_ + 4 o p_54161_ + 5 o p_54162_ + a ()Ldcb; m_278844_ + static + b (Ldcb;Laif;Lgu;Lapf;)V m_213898_ + 0 o p_221355_ + 1 o p_221356_ + 2 o p_221357_ + 3 o p_221358_ + d (Ldcb;Lcmm;Lgu;)V m_54168_ + 0 o p_54169_ + 1 o p_54170_ + 2 o p_54171_ +ctj net/minecraft/world/level/block/InfestedBlock + a f_54174_ + b f_54175_ + c f_153421_ + d f_153422_ + ()V + static + (Lcpn;Ldca$d;)V + 0 o p_54178_ + 1 o p_54179_ + a (Ldcb;Laif;Lgu;Lcfz;Z)V m_213646_ + 0 o p_221360_ + 1 o p_221361_ + 2 o p_221362_ + 3 o p_221363_ + 4 o p_221364_ + a ()Lcpn; m_54192_ + a (Laif;Lgu;)V m_54180_ + 0 o p_54181_ + 1 o p_54182_ + a (Ljava/util/Map;Ldcb;Ljava/util/function/Supplier;)Ldcb; m_153423_ + static + 0 o p_153424_ + 1 o p_153425_ + 2 o p_153426_ + a (Ljava/util/function/Supplier;Ldcb;)Ldcb; m_153427_ + static + 0 o p_153428_ + 1 o p_153429_ + g ()Ldcb; m_153436_ + h (Ldcb;)Z m_54195_ + static + 0 o p_54196_ + n (Ldcb;)Ldcb; m_153430_ + static + 0 o p_153431_ + o (Ldcb;)Ldcb; m_153432_ + 0 o p_153433_ + p (Ldcb;)Ldcb; m_153434_ + static + 0 o p_153435_ +ctk net/minecraft/world/level/block/InfestedRotatedPillarBlock + (Lcpn;Ldca$d;)V + 0 o p_153438_ + 1 o p_153439_ + a (Ldcb;Lcvz;)Ldcb; m_6843_ + 0 o p_153443_ + 1 o p_153444_ + a (Ldcc$a;)V m_7926_ + 0 o p_153446_ + a (Lcih;)Ldcb; m_5573_ + 0 o p_153441_ +ctl net/minecraft/world/level/block/IronBarsBlock + (Ldca$d;)V + 0 o p_54198_ + a (Ldcb;Lha;Ldcb;Lcmn;Lgu;Lgu;)Ldcb; m_7417_ + 0 o p_54211_ + 1 o p_54212_ + 2 o p_54213_ + 3 o p_54214_ + 4 o p_54215_ + 5 o p_54216_ + a (Ldcb;Z)Z m_54217_ + 0 o p_54218_ + 1 o p_54219_ + a (Ldcc$a;)V m_7926_ + 0 o p_54221_ + a (Ldcb;Ldcb;Lha;)Z m_6104_ + 0 o p_54207_ + 1 o p_54208_ + 2 o p_54209_ + a (Lcih;)Ldcb; m_5573_ + 0 o p_54200_ + b (Ldcb;Lcls;Lgu;Leen;)Lefb; m_5909_ + 0 o p_54202_ + 1 o p_54203_ + 2 o p_54204_ + 3 o p_54205_ +ctm net/minecraft/world/level/block/JigsawBlock + a f_54222_ + ()V + static + (Ldca$d;)V + 0 o p_54225_ + a (Ldvt$c;Ldvt$c;)Z m_54245_ + static + 0 o p_54246_ + 1 o p_54247_ + a (Ldcb;Lcvz;)Ldcb; m_6843_ + 0 o p_54241_ + 1 o p_54242_ + a (Ldcc$a;)V m_7926_ + 0 o p_54244_ + a (Ldcb;Lcmm;Lgu;Lbyo;Lbdw;Leee;)Lbdx; m_6227_ + 0 o p_54231_ + 1 o p_54232_ + 2 o p_54233_ + 3 o p_54234_ + 4 o p_54235_ + 5 o p_54236_ + a (Lha;)Ldam$a; m_54248_ + static + 0 o p_54249_ + a (Lcih;)Ldcb; m_5573_ + 0 o p_54227_ + a (Ldcb;Lcui;)Ldcb; m_6943_ + 0 o p_54238_ + 1 o p_54239_ + a (Lgu;Ldcb;)Lczn; m_142194_ + 0 o p_153448_ + 1 o p_153449_ + h (Ldcb;)Lha; m_54250_ + static + 0 o p_54251_ + n (Ldcb;)Lha; m_54252_ + static + 0 o p_54253_ +ctn net/minecraft/world/level/block/JukeboxBlock + a f_54254_ + ()V + static + (Ldca$d;)V + 0 o p_54257_ + a (Ldcb;Lcls;Lgu;Lha;)I m_6378_ + 0 o p_272942_ + 1 o p_273232_ + 2 o p_273524_ + 3 o p_272902_ + a (Ldcc$a;)V m_7926_ + 0 o p_54294_ + a (Ldcb;Lcmm;Lgu;Ldcb;Z)V m_6810_ + 0 o p_54288_ + 1 o p_54289_ + 2 o p_54290_ + 3 o p_54291_ + 4 o p_54292_ + a (Lcmm;Lgu;Ldcb;Lbfz;Lcfz;)V m_6402_ + 0 o p_54264_ + 1 o p_54265_ + 2 o p_54266_ + 3 o p_54267_ + 4 o p_54268_ + a (Ldcb;Lcmm;Lgu;)I m_6782_ + 0 o p_54277_ + 1 o p_54278_ + 2 o p_54279_ + a (Ldcb;Lcmm;Lgu;Lbyo;Lbdw;Leee;)Lbdx; m_6227_ + 0 o p_54281_ + 1 o p_54282_ + 2 o p_54283_ + 3 o p_54284_ + 4 o p_54285_ + 5 o p_54286_ + a (Lgu;Ldcb;)Lczn; m_142194_ + 0 o p_153451_ + 1 o p_153452_ + a (Lcmm;Ldcb;Lczp;)Lczo; m_142354_ + 0 o p_239682_ + 1 o p_239683_ + 2 o p_239684_ + b_ (Ldcb;)Lcvs; m_7514_ + 0 o p_54296_ + d_ (Ldcb;)Z m_7278_ + 0 o p_54275_ + f_ (Ldcb;)Z m_7899_ + 0 o p_273404_ +cto net/minecraft/world/level/block/KelpBlock + f f_54297_ + g f_153453_ + ()V + static + (Ldca$d;)V + 0 o p_54300_ + a (Lcls;Lgu;Ldcb;Ldxd;)Z m_6044_ + 0 o p_54304_ + 1 o p_54305_ + 2 o p_54306_ + 3 o p_54307_ + a (Lcih;)Ldcb; m_5573_ + 0 o p_54302_ + a ()Lcpn; m_7777_ + a (Lcmn;Lgu;Ldcb;Ldxe;)Z m_7361_ + 0 o p_54309_ + 1 o p_54310_ + 2 o p_54311_ + 3 o p_54312_ + a (Lapf;)I m_213627_ + 0 o p_221366_ + c_ (Ldcb;)Ldxe; m_5888_ + 0 o p_54319_ + g (Ldcb;)Z m_5971_ + 0 o p_54321_ + h (Ldcb;)Z m_142209_ + 0 o p_153455_ +ctp net/minecraft/world/level/block/KelpPlantBlock + (Ldca$d;)V + 0 o p_54323_ + a (Lcls;Lgu;Ldcb;Ldxd;)Z m_6044_ + 0 o p_54325_ + 1 o p_54326_ + 2 o p_54327_ + 3 o p_54328_ + a (Lcmn;Lgu;Ldcb;Ldxe;)Z m_7361_ + 0 o p_54330_ + 1 o p_54331_ + 2 o p_54332_ + 3 o p_54333_ + b ()Lcta; m_7272_ + c_ (Ldcb;)Ldxe; m_5888_ + 0 o p_54336_ + h (Ldcb;)Z m_142209_ + 0 o p_153457_ +ctq net/minecraft/world/level/block/LadderBlock + a f_54337_ + b f_54338_ + c f_153458_ + d f_54339_ + e f_54340_ + f f_54341_ + g f_54342_ + ()V + static + (Ldca$d;)V + 0 o p_54345_ + a (Ldcb;Lha;Ldcb;Lcmn;Lgu;Lgu;)Ldcb; m_7417_ + 0 o p_54363_ + 1 o p_54364_ + 2 o p_54365_ + 3 o p_54366_ + 4 o p_54367_ + 5 o p_54368_ + a (Lcls;Lgu;Lha;)Z m_54348_ + 0 o p_54349_ + 1 o p_54350_ + 2 o p_54351_ + a (Ldcb;Lcmp;Lgu;)Z m_7898_ + 0 o p_54353_ + 1 o p_54354_ + 2 o p_54355_ + a (Ldcb;Lcvz;)Ldcb; m_6843_ + 0 o p_54360_ + 1 o p_54361_ + a (Ldcc$a;)V m_7926_ + 0 o p_54370_ + a (Lcih;)Ldcb; m_5573_ + 0 o p_54347_ + a (Ldcb;Lcls;Lgu;Leen;)Lefb; m_5940_ + 0 o p_54372_ + 1 o p_54373_ + 2 o p_54374_ + 3 o p_54375_ + a (Ldcb;Lcui;)Ldcb; m_6943_ + 0 o p_54357_ + 1 o p_54358_ + c_ (Ldcb;)Ldxe; m_5888_ + 0 o p_54377_ +ctq$1 net/minecraft/world/level/block/LadderBlock$1 + a f_54378_ + ()V + static +ctr net/minecraft/world/level/block/LanternBlock + a f_153459_ + b f_153460_ + c f_153461_ + d f_153462_ + ()V + static + (Ldca$d;)V + 0 o p_153465_ + a (Ldcb;Lha;Ldcb;Lcmn;Lgu;Lgu;)Ldcb; m_7417_ + 0 o p_153483_ + 1 o p_153484_ + 2 o p_153485_ + 3 o p_153486_ + 4 o p_153487_ + 5 o p_153488_ + a (Ldcb;Lcls;Lgu;Ldxu;)Z m_7357_ + 0 o p_153469_ + 1 o p_153470_ + 2 o p_153471_ + 3 o p_153472_ + a (Ldcb;Lcmp;Lgu;)Z m_7898_ + 0 o p_153479_ + 1 o p_153480_ + 2 o p_153481_ + a (Ldcc$a;)V m_7926_ + 0 o p_153490_ + a (Lcih;)Ldcb; m_5573_ + 0 o p_153467_ + a (Ldcb;Lcls;Lgu;Leen;)Lefb; m_5940_ + 0 o p_153474_ + 1 o p_153475_ + 2 o p_153476_ + 3 o p_153477_ + c_ (Ldcb;)Ldxe; m_5888_ + 0 o p_153492_ + h (Ldcb;)Lha; m_153495_ + static + 0 o p_153496_ +cts net/minecraft/world/level/block/LavaCauldronBlock + (Ldca$d;)V + 0 o p_153498_ + a (Ldcb;Lcmm;Lgu;Lbfj;)V m_7892_ + 0 o p_153506_ + 1 o p_153507_ + 2 o p_153508_ + 3 o p_153509_ + a (Ldcb;Lcmm;Lgu;)I m_6782_ + 0 o p_153502_ + 1 o p_153503_ + 2 o p_153504_ + b (Ldcb;)D m_142446_ + 0 o p_153500_ + d (Ldcb;)Z m_142596_ + 0 o p_153511_ +ctt net/minecraft/world/level/block/LayeredCauldronBlock + c f_153512_ + d f_153513_ + e f_153514_ + f f_153515_ + g f_153516_ + h f_153517_ + i f_153518_ + j f_153519_ + ()V + static + (Ldca$d;Ljava/util/function/Predicate;Ljava/util/Map;)V + 0 o p_153522_ + 1 o p_153523_ + 2 o p_153524_ + a (Lcnk$c;)Z m_153525_ + static + 0 o p_153526_ + a (Ldcb;Lcmm;Lgu;Lbfj;)V m_7892_ + 0 o p_153534_ + 1 o p_153535_ + 2 o p_153536_ + 3 o p_153537_ + a (Ldcc$a;)V m_7926_ + 0 o p_153549_ + a (Ldxd;)Z m_142087_ + 0 o p_153551_ + a (Ldcb;Lcmm;Lgu;Lcnk$c;)V m_141997_ + 0 o p_153539_ + 1 o p_153540_ + 2 o p_153541_ + 3 o p_153542_ + a (Ldcb;Lcmm;Lgu;)I m_6782_ + 0 o p_153530_ + 1 o p_153531_ + 2 o p_153532_ + a (Ldcb;Lcmm;Lgu;Ldxd;)V m_142310_ + 0 o p_153544_ + 1 o p_153545_ + 2 o p_153546_ + 3 o p_153547_ + b (Lcnk$c;)Z m_153552_ + static + 0 o p_153553_ + b (Ldcb;)D m_142446_ + 0 o p_153528_ + d (Ldcb;Lcmm;Lgu;)V m_142266_ + 0 o p_153556_ + 1 o p_153557_ + 2 o p_153558_ + d (Ldcb;)Z m_142596_ + 0 o p_153555_ + e (Ldcb;Lcmm;Lgu;)V m_153559_ + static + 0 o p_153560_ + 1 o p_153561_ + 2 o p_153562_ +ctu net/minecraft/world/level/block/LeavesBlock + a f_153563_ + b f_54418_ + c f_54419_ + d f_221367_ + e f_153564_ + ()V + static + (Ldca$d;)V + 0 o p_54422_ + a (Ldcb;Lha;Ldcb;Lcmn;Lgu;Lgu;)Ldcb; m_7417_ + 0 o p_54440_ + 1 o p_54441_ + 2 o p_54442_ + 3 o p_54443_ + 4 o p_54444_ + 5 o p_54445_ + a (Ldcc$a;)V m_7926_ + 0 o p_54447_ + a (Ldcb;Laif;Lgu;Lapf;)V m_213897_ + 0 o p_221369_ + 1 o p_221370_ + 2 o p_221371_ + 3 o p_221372_ + a (Ldcb;Lcmm;Lgu;Lapf;)V m_214162_ + 0 o p_221374_ + 1 o p_221375_ + 2 o p_221376_ + 3 o p_221377_ + a (Lcih;)Ldcb; m_5573_ + 0 o p_54424_ + a (Ldcb;Lcmn;Lgu;)Ldcb; m_54435_ + static + 0 o p_54436_ + 1 o p_54437_ + 2 o p_54438_ + b (Ldcb;Laif;Lgu;Lapf;)V m_213898_ + 0 o p_221379_ + 1 o p_221380_ + 2 o p_221381_ + 3 o p_221382_ + b_ (Ldcb;Lcls;Lgu;)Lefb; m_7947_ + 0 o p_54456_ + 1 o p_54457_ + 2 o p_54458_ + c_ (Ldcb;)Ldxe; m_5888_ + 0 o p_221384_ + e_ (Ldcb;)Z m_6724_ + 0 o p_54449_ + g (Ldcb;Lcls;Lgu;)I m_7753_ + 0 o p_54460_ + 1 o p_54461_ + 2 o p_54462_ + h (Ldcb;)Z m_221385_ + 0 o p_221386_ + n (Ldcb;)Ljava/util/OptionalInt; m_277200_ + static + 0 o p_277868_ + o (Ldcb;)I m_54463_ + static + 0 o p_54464_ +ctv net/minecraft/world/level/block/LecternBlock + a f_54465_ + b f_54466_ + c f_54467_ + d f_54468_ + e f_54469_ + f f_54470_ + g f_54471_ + h f_54472_ + i f_54473_ + j f_54474_ + k f_54475_ + l f_54476_ + m f_153565_ + ()V + static + (Ldca$d;)V + 0 o p_54479_ + a (Ldcb;Lcmm;Lgu;Ldcb;Z)V m_6810_ + 0 o p_54531_ + 1 o p_54532_ + 2 o p_54533_ + 3 o p_54534_ + 4 o p_54535_ + a (Ldcb;Lcui;)Ldcb; m_6943_ + 0 o p_54537_ + 1 o p_54538_ + a (Ldcb;Lcmm;Lgu;)I m_6782_ + 0 o p_54520_ + 1 o p_54521_ + 2 o p_54522_ + a (Lcmm;Lgu;Ldcb;)V m_54488_ + static + 0 o p_54489_ + 1 o p_54490_ + 2 o p_54491_ + a (Lcmm;Lgu;Lbyo;)V m_54484_ + 0 o p_54485_ + 1 o p_54486_ + 2 o p_54487_ + a (Lbfj;Lcmm;Lgu;Ldcb;Lcfz;)Z m_269125_ + static + 0 o p_270350_ + 1 o p_270604_ + 2 o p_270276_ + 3 o p_270445_ + 4 o p_270458_ + a (Ldcb;Lcvz;)Ldcb; m_6843_ + 0 o p_54540_ + 1 o p_54541_ + a (Ldcc$a;)V m_7926_ + 0 o p_54543_ + a (Ldcb;Lcls;Lgu;Lha;)I m_6378_ + 0 o p_54515_ + 1 o p_54516_ + 2 o p_54517_ + 3 o p_54518_ + a (Ldcb;Laif;Lgu;Lapf;)V m_213897_ + 0 o p_221388_ + 1 o p_221389_ + 2 o p_221390_ + 3 o p_221391_ + a (Ldcb;Lcls;Lgu;Leen;)Lefb; m_5940_ + 0 o p_54561_ + 1 o p_54562_ + 2 o p_54563_ + 3 o p_54564_ + a (Lcmm;Lgu;Ldcb;Z)V m_54553_ + static + 0 o p_54554_ + 1 o p_54555_ + 2 o p_54556_ + 3 o p_54557_ + a (Ldcb;Lcls;Lgu;Ldxu;)Z m_7357_ + 0 o p_54510_ + 1 o p_54511_ + 2 o p_54512_ + 3 o p_54513_ + a (Ldcb;Lcmm;Lgu;Lbyo;Lbdw;Leee;)Lbdx; m_6227_ + 0 o p_54524_ + 1 o p_54525_ + 2 o p_54526_ + 3 o p_54527_ + 4 o p_54528_ + 5 o p_54529_ + a (Lcih;)Ldcb; m_5573_ + 0 o p_54481_ + a (Lbfj;Lcmm;Lgu;Ldcb;Z)V m_269306_ + static + 0 o p_270231_ + 1 o p_270114_ + 2 o p_270251_ + 3 o p_270758_ + 4 o p_270452_ + a (Lgu;Ldcb;)Lczn; m_142194_ + 0 o p_153573_ + 1 o p_153574_ + b (Lcmm;Lgu;Ldcb;)V m_54544_ + static + 0 o p_54545_ + 1 o p_54546_ + 2 o p_54547_ + b (Lbfj;Lcmm;Lgu;Ldcb;Lcfz;)V m_269116_ + static + 0 o p_270891_ + 1 o p_270065_ + 2 o p_270155_ + 3 o p_270753_ + 4 o p_270173_ + b (Ldcb;Lcls;Lgu;Lha;)I m_6376_ + 0 o p_54566_ + 1 o p_54567_ + 2 o p_54568_ + 3 o p_54569_ + b (Ldcb;Lcmm;Lgu;)Lbea; m_7246_ + 0 o p_54571_ + 1 o p_54572_ + 2 o p_54573_ + b_ (Ldcb;)Lcvs; m_7514_ + 0 o p_54559_ + c (Ldcb;Lcls;Lgu;Leen;)Lefb; m_5939_ + 0 o p_54577_ + 1 o p_54578_ + 2 o p_54579_ + 3 o p_54580_ + d (Ldcb;Lcmm;Lgu;)V m_54587_ + 0 o p_54588_ + 1 o p_54589_ + 2 o p_54590_ + d_ (Ldcb;)Z m_7278_ + 0 o p_54503_ + f (Ldcb;Lcls;Lgu;)Lefb; m_7952_ + 0 o p_54584_ + 1 o p_54585_ + 2 o p_54586_ + f_ (Ldcb;)Z m_7899_ + 0 o p_54575_ + g_ (Ldcb;)Z m_7923_ + 0 o p_54582_ +ctv$1 net/minecraft/world/level/block/LecternBlock$1 + a f_54591_ + ()V + static +ctw net/minecraft/world/level/block/LevelEvent + A f_153588_ + B f_153589_ + C f_153590_ + D f_153593_ + E f_153594_ + F f_153595_ + G f_153596_ + H f_153597_ + I f_153598_ + J f_153599_ + K f_153600_ + L f_153601_ + M f_153602_ + N f_153603_ + O f_153604_ + P f_153605_ + Q f_153606_ + R f_153608_ + S f_153609_ + T f_153610_ + U f_153611_ + V f_153612_ + W f_153613_ + X f_153614_ + Y f_153615_ + Z f_153616_ + a f_153607_ + aa f_153617_ + ab f_153618_ + ac f_153619_ + ad f_153620_ + ae f_153621_ + af f_153622_ + ag f_153623_ + ah f_153624_ + ai f_153625_ + aj f_153626_ + ak f_221392_ + al f_221393_ + am f_271424_ + an f_276522_ + b f_153627_ + c f_153628_ + d f_153629_ + e f_153630_ + f f_153635_ + g f_271529_ + h f_271287_ + i f_153641_ + j f_153642_ + k f_153643_ + l f_153644_ + m f_153645_ + n f_153646_ + o f_153647_ + p f_153648_ + q f_153649_ + r f_153650_ + s f_153651_ + t f_153581_ + u f_153582_ + v f_153583_ + w f_153584_ + x f_153585_ + y f_153586_ + z f_153587_ + ()V +ctx net/minecraft/world/level/block/LeverBlock + a f_54622_ + b f_153653_ + c f_153654_ + d f_153655_ + e f_54623_ + f f_54624_ + g f_54625_ + h f_54626_ + i f_54627_ + j f_54628_ + k f_54629_ + l f_54630_ + ()V + static + (Ldca$d;)V + 0 o p_54633_ + a (Ldcb;Lcls;Lgu;Lha;)I m_6378_ + 0 o p_54635_ + 1 o p_54636_ + 2 o p_54637_ + 3 o p_54638_ + a (Ldcc$a;)V m_7926_ + 0 o p_54663_ + a (Ldcb;Lcmm;Lgu;Ldcb;Z)V m_6810_ + 0 o p_54647_ + 1 o p_54648_ + 2 o p_54649_ + 3 o p_54650_ + 4 o p_54651_ + a (Ldcb;Lcls;Lgu;Leen;)Lefb; m_5940_ + 0 o p_54665_ + 1 o p_54666_ + 2 o p_54667_ + 3 o p_54668_ + a (Ldcb;Lcmn;Lgu;F)V m_54657_ + static + 0 o p_54658_ + 1 o p_54659_ + 2 o p_54660_ + 3 o p_54661_ + a (Ldcb;Lcmm;Lgu;Lapf;)V m_214162_ + 0 o p_221395_ + 1 o p_221396_ + 2 o p_221397_ + 3 o p_221398_ + a (Ldcb;Lcmm;Lgu;Lbyo;Lbdw;Leee;)Lbdx; m_6227_ + 0 o p_54640_ + 1 o p_54641_ + 2 o p_54642_ + 3 o p_54643_ + 4 o p_54644_ + 5 o p_54645_ + b (Ldcb;Lcls;Lgu;Lha;)I m_6376_ + 0 o p_54670_ + 1 o p_54671_ + 2 o p_54672_ + 3 o p_54673_ + d (Ldcb;Lcmm;Lgu;)Ldcb; m_54676_ + 0 o p_54677_ + 1 o p_54678_ + 2 o p_54679_ + e (Ldcb;Lcmm;Lgu;)V m_54680_ + 0 o p_54681_ + 1 o p_54682_ + 2 o p_54683_ + f_ (Ldcb;)Z m_7899_ + 0 o p_54675_ +ctx$1 net/minecraft/world/level/block/LeverBlock$1 + a f_54684_ + b f_54685_ + c f_54686_ + ()V + static +cty net/minecraft/world/level/block/LightBlock + a f_153656_ + b f_153657_ + c f_153658_ + d f_153659_ + ()V + static + (Ldca$d;)V + 0 o p_153662_ + a (Ldcb;Lha;Ldcb;Lcmn;Lgu;Lgu;)Ldcb; m_7417_ + 0 o p_153680_ + 1 o p_153681_ + 2 o p_153682_ + 3 o p_153683_ + 4 o p_153684_ + 5 o p_153685_ + a (Ldcc$a;)V m_7926_ + 0 o p_153687_ + a (Ldcb;Lcls;Lgu;Leen;)Lefb; m_5940_ + 0 o p_153668_ + 1 o p_153669_ + 2 o p_153670_ + 3 o p_153671_ + a (Ldcb;Lcmm;Lgu;Lbyo;Lbdw;Leee;)Lbdx; m_6227_ + 0 o p_153673_ + 1 o p_153674_ + 2 o p_153675_ + 3 o p_153676_ + 4 o p_153677_ + 5 o p_153678_ + a (Lcfz;I)Lcfz; m_257398_ + static + 0 o p_259339_ + 1 o p_259353_ + a (Lcls;Lgu;Ldcb;)Lcfz; m_7397_ + 0 o p_153664_ + 1 o p_153665_ + 2 o p_153666_ + b (Ldcb;Lcls;Lgu;)F m_7749_ + 0 o p_153689_ + 1 o p_153690_ + 2 o p_153691_ + b_ (Ldcb;)Lcvs; m_7514_ + 0 o p_153693_ + c (Ldcb;Lcls;Lgu;)Z m_7420_ + 0 o p_153695_ + 1 o p_153696_ + 2 o p_153697_ + c_ (Ldcb;)Ldxe; m_5888_ + 0 o p_153699_ + h (Ldcb;)I m_153700_ + static + 0 o p_153701_ +ctz net/minecraft/world/level/block/LightningRodBlock + b f_153702_ + c f_153703_ + d f_153704_ + j f_153705_ + k f_153706_ + ()V + static + (Ldca$d;)V + 0 o p_153709_ + a (Ldcb;Lha;Ldcb;Lcmn;Lgu;Lgu;)Ldcb; m_7417_ + 0 o p_153739_ + 1 o p_153740_ + 2 o p_153741_ + 3 o p_153742_ + 4 o p_153743_ + 5 o p_153744_ + a (Ldcb;Lcls;Lgu;Lha;)I m_6378_ + 0 o p_153723_ + 1 o p_153724_ + 2 o p_153725_ + 3 o p_153726_ + a (Ldcc$a;)V m_7926_ + 0 o p_153746_ + a (Ldcb;Lcmm;Lgu;Ldcb;Z)V m_6810_ + 0 o p_153728_ + 1 o p_153729_ + 2 o p_153730_ + 3 o p_153731_ + 4 o p_153732_ + a (Ldcb;Laif;Lgu;Lapf;)V m_213897_ + 0 o p_221400_ + 1 o p_221401_ + 2 o p_221402_ + 3 o p_221403_ + a (Ldcb;Lcmm;Lgu;Lapf;)V m_214162_ + 0 o p_221405_ + 1 o p_221406_ + 2 o p_221407_ + 3 o p_221408_ + a (Lcmm;Ldcb;Leee;Lbzg;)V m_5581_ + 0 o p_153713_ + 1 o p_153714_ + 2 o p_153715_ + 3 o p_153716_ + a (Lcih;)Ldcb; m_5573_ + 0 o p_153711_ + b (Ldcb;Lcmm;Lgu;Ldcb;Z)V m_6807_ + 0 o p_153753_ + 1 o p_153754_ + 2 o p_153755_ + 3 o p_153756_ + 4 o p_153757_ + b (Ldcb;Lcls;Lgu;Lha;)I m_6376_ + 0 o p_153748_ + 1 o p_153749_ + 2 o p_153750_ + 3 o p_153751_ + c_ (Ldcb;)Ldxe; m_5888_ + 0 o p_153759_ + d (Ldcb;Lcmm;Lgu;)V m_153760_ + 0 o p_153761_ + 1 o p_153762_ + 2 o p_153763_ + e (Ldcb;Lcmm;Lgu;)V m_153764_ + 0 o p_153765_ + 1 o p_153766_ + 2 o p_153767_ + f_ (Ldcb;)Z m_7899_ + 0 o p_153769_ +cu net/minecraft/advancements/critereon/ShotCrossbowTrigger + a f_65458_ + ()V + static + ()V + a (Lcfz;Lcu$a;)Z m_65465_ + static + 0 o p_65466_ + 1 o p_65467_ + a (Lcom/google/gson/JsonObject;Lba;Lbe;)Lcu$a; m_7214_ + 0 o p_286679_ + 1 o p_286410_ + 2 o p_286233_ + a ()Lacq; m_7295_ + a (Laig;Lcfz;)V m_65462_ + 0 o p_65463_ + 1 o p_65464_ + b (Lcom/google/gson/JsonObject;Lba;Lbe;)Lar; m_7214_ + 0 o p_286726_ + 1 o p_286786_ + 2 o p_286701_ +cu$a net/minecraft/advancements/critereon/ShotCrossbowTrigger$TriggerInstance + a f_65477_ + (Lba;Lbz;)V + 0 o p_286262_ + 1 o p_286755_ + a (Lct;)Lcom/google/gson/JsonObject; m_7683_ + 0 o p_65486_ + a (Lcfz;)Z m_65481_ + 0 o p_65482_ + a (Lcml;)Lcu$a; m_65483_ + static + 0 o p_65484_ + a (Lbz;)Lcu$a; m_159431_ + static + 0 o p_159432_ +cua net/minecraft/world/level/block/LiquidBlock + a f_54688_ + b f_54689_ + c f_54690_ + d f_181233_ + e f_54691_ + ()V + static + (Ldxc;Ldca$d;)V + 0 o p_54694_ + 1 o p_54695_ + a (Ldcb;Lha;Ldcb;Lcmn;Lgu;Lgu;)Ldcb; m_7417_ + 0 o p_54723_ + 1 o p_54724_ + 2 o p_54725_ + 3 o p_54726_ + 4 o p_54727_ + 5 o p_54728_ + a (Ldcc$a;)V m_7926_ + 0 o p_54730_ + a (Lcmm;Lgu;Ldcb;)Z m_54696_ + 0 o p_54697_ + 1 o p_54698_ + 2 o p_54699_ + a (Ldcb;Lcls;Lgu;Leen;)Lefb; m_5940_ + 0 o p_54749_ + 1 o p_54750_ + 2 o p_54751_ + 3 o p_54752_ + a (Ldcb;Lcmm;Lgu;Lcpn;Lgu;Z)V m_6861_ + 0 o p_54709_ + 1 o p_54710_ + 2 o p_54711_ + 3 o p_54712_ + 4 o p_54713_ + 5 o p_54714_ + a (Ldcb;Lcls;Lgu;Ldxu;)Z m_7357_ + 0 o p_54704_ + 1 o p_54705_ + 2 o p_54706_ + 3 o p_54707_ + a (Ldcb;Ldzq$a;)Ljava/util/List; m_49635_ + 0 o p_54720_ + 1 o p_287727_ + a (Lcmn;Lgu;)V m_54700_ + 0 o p_54701_ + 1 o p_54702_ + a (Ldcb;Ldcb;Lha;)Z m_6104_ + 0 o p_54716_ + 1 o p_54717_ + 2 o p_54718_ + am_ ()Ljava/util/Optional; m_142298_ + b (Ldcb;Lcmm;Lgu;Ldcb;Z)V m_6807_ + 0 o p_54754_ + 1 o p_54755_ + 2 o p_54756_ + 3 o p_54757_ + 4 o p_54758_ + b (Ldcb;Laif;Lgu;Lapf;)V m_213898_ + 0 o p_221410_ + 1 o p_221411_ + 2 o p_221412_ + 3 o p_221413_ + b_ (Ldcb;)Lcvs; m_7514_ + 0 o p_54738_ + c (Ldcb;Lcls;Lgu;Leen;)Lefb; m_5939_ + 0 o p_54760_ + 1 o p_54761_ + 2 o p_54762_ + 3 o p_54763_ + c (Lcmn;Lgu;Ldcb;)Lcfz; m_142598_ + 0 o p_153772_ + 1 o p_153773_ + 2 o p_153774_ + c (Ldcb;Lcls;Lgu;)Z m_7420_ + 0 o p_54745_ + 1 o p_54746_ + 2 o p_54747_ + c_ (Ldcb;)Ldxe; m_5888_ + 0 o p_54765_ + e_ (Ldcb;)Z m_6724_ + 0 o p_54732_ +cub net/minecraft/world/level/block/LiquidBlockContainer + a (Lcls;Lgu;Ldcb;Ldxd;)Z m_6044_ + 0 o p_54766_ + 1 o p_54767_ + 2 o p_54768_ + 3 o p_54769_ + a (Lcmn;Lgu;Ldcb;Ldxe;)Z m_7361_ + 0 o p_54770_ + 1 o p_54771_ + 2 o p_54772_ + 3 o p_54773_ +cuc net/minecraft/world/level/block/LoomBlock + a f_54774_ + ()V + static + (Ldca$d;)V + 0 o p_54777_ + a (Ldcc$a;)V m_7926_ + 0 o p_54794_ + a (Ldcb;Lcmm;Lgu;Lbyo;Lbdw;Leee;)Lbdx; m_6227_ + 0 o p_54787_ + 1 o p_54788_ + 2 o p_54789_ + 3 o p_54790_ + 4 o p_54791_ + 5 o p_54792_ + a (Lcih;)Ldcb; m_5573_ + 0 o p_54779_ + a (Lcmm;Lgu;ILbyn;Lbyo;)Lcbf; m_54780_ + static + 0 o p_54781_ + 1 o p_54782_ + 2 o p_54783_ + 3 o p_54784_ + 4 o p_54785_ + b (Ldcb;Lcmm;Lgu;)Lbea; m_7246_ + 0 o p_54796_ + 1 o p_54797_ + 2 o p_54798_ +cud net/minecraft/world/level/block/MagmaBlock + a f_153775_ + (Ldca$d;)V + 0 o p_54800_ + a (Ldcb;Lha;Ldcb;Lcmn;Lgu;Lgu;)Ldcb; m_7417_ + 0 o p_54811_ + 1 o p_54812_ + 2 o p_54813_ + 3 o p_54814_ + 4 o p_54815_ + 5 o p_54816_ + a (Ldcb;Laif;Lgu;Lapf;)V m_213897_ + 0 o p_221415_ + 1 o p_221416_ + 2 o p_221417_ + 3 o p_221418_ + a (Lcmm;Lgu;Ldcb;Lbfj;)V m_141947_ + 0 o p_153777_ + 1 o p_153778_ + 2 o p_153779_ + 3 o p_153780_ + b (Ldcb;Lcmm;Lgu;Ldcb;Z)V m_6807_ + 0 o p_54823_ + 1 o p_54824_ + 2 o p_54825_ + 3 o p_54826_ + 4 o p_54827_ +cue net/minecraft/world/level/block/MangroveLeavesBlock + (Ldca$d;)V + 0 o p_221425_ + a (Lcmm;Lapf;Lgu;Ldcb;)Z m_214167_ + 0 o p_221437_ + 1 o p_221438_ + 2 o p_221439_ + 3 o p_221440_ + a (Lcmp;Lgu;Ldcb;Z)Z m_7370_ + 0 o p_256534_ + 1 o p_256299_ + 2 o p_255926_ + 3 o p_255711_ + a (Laif;Lapf;Lgu;Ldcb;)V m_214148_ + 0 o p_221427_ + 1 o p_221428_ + 2 o p_221429_ + 3 o p_221430_ +cuf net/minecraft/world/level/block/MangrovePropaguleBlock + a f_221441_ + b f_221442_ + c f_221443_ + g f_221444_ + h f_221445_ + i f_221446_ + ()V + static + (Ldca$d;)V + 0 o p_221449_ + a (Ldcb;Lha;Ldcb;Lcmn;Lgu;Lgu;)Ldcb; m_7417_ + 0 o p_221477_ + 1 o p_221478_ + 2 o p_221479_ + 3 o p_221480_ + 4 o p_221481_ + 5 o p_221482_ + a (Ldcc$a;)V m_7926_ + 0 o p_221484_ + a (Lcmp;Lgu;Ldcb;Z)Z m_7370_ + 0 o p_256541_ + 1 o p_221459_ + 2 o p_221460_ + 3 o p_221461_ + a (Ldcb;Lcls;Lgu;Leen;)Lefb; m_5940_ + 0 o p_221468_ + 1 o p_221469_ + 2 o p_221470_ + 3 o p_221471_ + a (Laif;Lapf;Lgu;Ldcb;)V m_214148_ + 0 o p_221451_ + 1 o p_221452_ + 2 o p_221453_ + 3 o p_221454_ + a (Ldcb;Lcmp;Lgu;)Z m_7898_ + 0 o p_221473_ + 1 o p_221474_ + 2 o p_221475_ + a (Lcmm;Lapf;Lgu;Ldcb;)Z m_214167_ + 0 o p_221463_ + 1 o p_221464_ + 2 o p_221465_ + 3 o p_221466_ + a (Lcih;)Ldcb; m_5573_ + 0 o p_221456_ + b ()Ldcb; m_221492_ + static + b (I)Ldcb; m_221485_ + static + 0 o p_221486_ + b (Ldcb;Laif;Lgu;Lapf;)V m_213898_ + 0 o p_221488_ + 1 o p_221489_ + 2 o p_221490_ + 3 o p_221491_ + c_ (Ldcb;)Ldxe; m_5888_ + 0 o p_221494_ + d (Ldcb;Lcls;Lgu;)Z m_6266_ + 0 o p_221496_ + 1 o p_221497_ + 2 o p_221498_ + h (Ldcb;)Z m_221499_ + static + 0 o p_221500_ + n (Ldcb;)Z m_221501_ + static + 0 o p_221502_ +cug net/minecraft/world/level/block/MangroveRootsBlock + a f_221503_ + ()V + static + (Ldca$d;)V + 0 o p_221506_ + a (Ldcb;Lha;Ldcb;Lcmn;Lgu;Lgu;)Ldcb; m_7417_ + 0 o p_221514_ + 1 o p_221515_ + 2 o p_221516_ + 3 o p_221517_ + 4 o p_221518_ + 5 o p_221519_ + a (Ldcc$a;)V m_7926_ + 0 o p_221521_ + a (Ldcb;Ldcb;Lha;)Z m_6104_ + 0 o p_221510_ + 1 o p_221511_ + 2 o p_221512_ + a (Lcih;)Ldcb; m_5573_ + 0 o p_221508_ + c_ (Ldcb;)Ldxe; m_5888_ + 0 o p_221523_ +cuh net/minecraft/world/level/block/MelonBlock + (Ldca$d;)V + 0 o p_54829_ + a ()Lcxj; m_7161_ + b ()Lcop; m_7810_ +cui net/minecraft/world/level/block/Mirror + a NONE + b LEFT_RIGHT + c FRONT_BACK + d f_221524_ + e f_221525_ + f f_153781_ + g f_54835_ + h $VALUES + ()V + static + (Ljava/lang/String;ILjava/lang/String;Lh;)V + 0 o p_221527_ + 1 o p_221528_ + 2 o p_221529_ + 3 o p_221530_ + a ()Lh; m_54842_ + a (Lha;)Lcvz; m_54846_ + 0 o p_54847_ + a (II)I m_54843_ + 0 o p_54844_ + 1 o p_54845_ + b (Lha;)Lha; m_54848_ + 0 o p_54849_ + b ()Lsw; m_153787_ + c ()Ljava/lang/String; m_7912_ + d ()[Lcui; m_153788_ + static + valueOf (Ljava/lang/String;)Lcui; valueOf + static + 0 o p_54851_ + values ()[Lcui; values + static +cui$1 net/minecraft/world/level/block/Mirror$1 + a f_54853_ + ()V + static +cuj net/minecraft/world/level/block/MossBlock + (Ldca$d;)V + 0 o p_153790_ + a (Lcmm;Lapf;Lgu;Ldcb;)Z m_214167_ + 0 o p_221538_ + 1 o p_221539_ + 2 o p_221540_ + 3 o p_221541_ + a (Lcmp;Lgu;Ldcb;Z)Z m_7370_ + 0 o p_256507_ + 1 o p_256224_ + 2 o p_256628_ + 3 o p_256093_ + a (Lhr;)Ljava/util/Optional; m_257327_ + static + 0 o p_258973_ + a (Laif;Lapf;Lgu;Ldcb;)V m_214148_ + 0 o p_221533_ + 1 o p_221534_ + 2 o p_221535_ + 3 o p_221536_ + a (Laif;Lapf;Lgu;Lhe$c;)V m_255306_ + static + 0 o p_256652_ + 1 o p_256263_ + 2 o p_256443_ + 3 o p_255669_ +cuk net/minecraft/world/level/block/MudBlock + a f_221542_ + ()V + static + (Ldca$d;)V + 0 o p_221545_ + a (Ldcb;Lcls;Lgu;Ldxu;)Z m_7357_ + 0 o p_221547_ + 1 o p_221548_ + 2 o p_221549_ + 3 o p_221550_ + b (Ldcb;Lcls;Lgu;)F m_7749_ + 0 o p_221552_ + 1 o p_221553_ + 2 o p_221554_ + b (Ldcb;Lcls;Lgu;Leen;)Lefb; m_5909_ + 0 o p_221556_ + 1 o p_221557_ + 2 o p_221558_ + 3 o p_221559_ + b_ (Ldcb;Lcls;Lgu;)Lefb; m_7947_ + 0 o p_221566_ + 1 o p_221567_ + 2 o p_221568_ + c (Ldcb;Lcls;Lgu;Leen;)Lefb; m_5939_ + 0 o p_221561_ + 1 o p_221562_ + 2 o p_221563_ + 3 o p_221564_ +cul net/minecraft/world/level/block/MultifaceBlock + a f_153806_ + b f_153807_ + c f_153808_ + d f_153809_ + e f_153810_ + f f_153811_ + g f_153812_ + h f_153813_ + i f_153814_ + j f_153815_ + k f_153816_ + l f_153817_ + m f_153818_ + n f_153819_ + ()V + static + (Ldca$d;)V + 0 o p_153822_ + a (Ljava/util/Collection;)B m_221576_ + static + 0 o p_221577_ + a (Ldcb;Lha;)Z m_153900_ + static + 0 o p_153901_ + 1 o p_153902_ + a (Ldcb;Lcui;)Ldcb; m_6943_ + 0 o p_153892_ + 1 o p_153893_ + a (Ldcb;Lcmm;Lgu;Lha;)Ldcb; m_153861_ + 0 o p_153862_ + 1 o p_153863_ + 2 o p_153864_ + 3 o p_153865_ + a (Ldcb;Lcih;)Z m_6864_ + 0 o p_153848_ + 1 o p_153849_ + a (Ldcb;Lcmp;Lgu;)Z m_7898_ + 0 o p_153888_ + 1 o p_153889_ + 2 o p_153890_ + a (Ldcb;Ljava/util/function/Function;)Ldcb; m_153910_ + 0 o p_153911_ + 1 o p_153912_ + a (B)Ljava/util/Set; m_221569_ + static + 0 o p_221570_ + a (Ldcb;Ldcs;)Ldcb; m_153897_ + static + 0 o p_153898_ + 1 o p_153899_ + a (Ldcb;Lha;Ldcb;Lcmn;Lgu;Lgu;)Ldcb; m_7417_ + 0 o p_153904_ + 1 o p_153905_ + 2 o p_153906_ + 3 o p_153907_ + 4 o p_153908_ + 5 o p_153909_ + a (Lcls;Lha;Lgu;Ldcb;)Z m_153829_ + static + 0 o p_153830_ + 1 o p_153831_ + 2 o p_153832_ + 3 o p_153833_ + a (Ldcb;Lcvz;)Ldcb; m_6843_ + 0 o p_153895_ + 1 o p_153896_ + a (Ldcc$a;)V m_7926_ + 0 o p_153917_ + a (Ljava/util/EnumMap;)V m_153922_ + static + 0 o p_153923_ + a (Ldcb;Lcls;Lgu;Leen;)Lefb; m_5940_ + 0 o p_153851_ + 1 o p_153852_ + 2 o p_153853_ + 3 o p_153854_ + a (Lha;)Z m_153920_ + 0 o p_153921_ + a (Lcih;)Ldcb; m_5573_ + 0 o p_153824_ + a (Ldcc;)Ldcb; m_153918_ + static + 0 o p_153919_ + a (Lcls;Ldcb;Lgu;Lha;)Z m_221571_ + 0 o p_221572_ + 1 o p_221573_ + 2 o p_221574_ + 3 o p_221575_ + b (Lha;)Ldcs; m_153933_ + static + 0 o p_153934_ + b (Ldcb;Lha;)Z m_221578_ + static + 0 o p_221579_ + 1 o p_221580_ + b ()Lcum; m_213612_ + c (Ldcb;Lha;)Z m_221581_ + static + 0 o p_221582_ + 1 o p_221583_ + c (Ldcb;Lcls;Lgu;Lha;)Ldcb; m_153940_ + 0 o p_153941_ + 1 o p_153942_ + 2 o p_153943_ + 3 o p_153944_ + g ()Z m_153964_ + h (Ldcb;)Ljava/util/Set; m_221584_ + static + 0 o p_221585_ + n (Ldcb;)Z m_153960_ + static + 0 o p_153961_ + o (Ldcb;)Lefb; m_153958_ + static + 0 o p_153959_ + p (Ldcb;)Z m_153962_ + static + 0 o p_153963_ +cum net/minecraft/world/level/block/MultifaceSpreader + a f_221586_ + b f_221587_ + ()V + static + (Lcul;)V + 0 o p_221590_ + (Lcum$b;)V + 0 o p_221592_ + a (Ldcb;Lcls;Lgu;Lha;Lha;)Z m_221606_ + 0 o p_221607_ + 1 o p_221608_ + 2 o p_221609_ + 3 o p_221610_ + 4 o p_221611_ + a (Ldcb;Lha;)Z m_221668_ + 0 o p_221669_ + 1 o p_221670_ + a (Ldcb;Lcmn;Lgu;Lha;Lapf;Z)Ljava/util/Optional; m_221630_ + 0 o p_221631_ + 1 o p_221632_ + 2 o p_221633_ + 3 o p_221634_ + 4 o p_221635_ + 5 o p_221636_ + a (Lcmn;Lcum$c;Z)Ljava/util/Optional; m_221593_ + 0 o p_221594_ + 1 o p_221595_ + 2 o p_221596_ + a (Ldcb;Lcmn;Lgu;Lha;Lha;Z)Ljava/util/Optional; m_221637_ + 0 o p_221638_ + 1 o p_221639_ + 2 o p_221640_ + 3 o p_221641_ + 4 o p_221642_ + 5 o p_221643_ + a (Ldcb;Lcmn;Lgu;Z)J m_221657_ + 0 o p_221658_ + 1 o p_221659_ + 2 o p_221660_ + 3 o p_221661_ + a (Ldcb;Lcmn;Lgu;Lha;Z)J m_221644_ + 0 o p_221645_ + 1 o p_221646_ + 2 o p_221647_ + 3 o p_221648_ + 4 o p_221649_ + a (Ldcb;Lcls;Lgu;Lha;Lha;Lcum$d;)Ljava/util/Optional; m_221612_ + 0 o p_221613_ + 1 o p_221614_ + 2 o p_221615_ + 3 o p_221616_ + 4 o p_221617_ + 5 o p_221618_ + a (Ldcb;Lcmn;Lgu;Lapf;Lha;)Ljava/util/Optional; m_221624_ + 0 o p_221625_ + 1 o p_221626_ + 2 o p_221627_ + 3 o p_221628_ + 4 o p_221629_ + a (Lcmn;ZLcum$c;)Ljava/util/Optional; m_221597_ + 0 o p_221598_ + 1 o p_221599_ + 2 o p_221600_ + a (Ldcb;Lcmn;Lgu;Lha;ZLha;)Ljava/util/Optional; m_221650_ + 0 o p_221651_ + 1 o p_221652_ + 2 o p_221653_ + 3 o p_221654_ + 4 o p_221655_ + 5 o p_221656_ + a (Ldcb;Lcmn;Lgu;ZLha;)Ljava/lang/Long; m_221662_ + 0 o p_221663_ + 1 o p_221664_ + 2 o p_221665_ + 3 o p_221666_ + 4 o p_221667_ + a (Ldcb;Lcls;Lgu;Lha;)Z m_221601_ + 0 o p_221602_ + 1 o p_221603_ + 2 o p_221604_ + 3 o p_221605_ + a (Ldcb;Lcmn;Lgu;Lapf;)Ljava/util/Optional; m_221619_ + 0 o p_221620_ + 1 o p_221621_ + 2 o p_221622_ + 3 o p_221623_ + b (Ldcb;Lcmn;Lgu;Lha;ZLha;)Ljava/util/Optional; m_221671_ + 0 o p_221672_ + 1 o p_221673_ + 2 o p_221674_ + 3 o p_221675_ + 4 o p_221676_ + 5 o p_221677_ + b (Ldcb;Lha;)Z m_221678_ + 0 o p_221679_ + 1 o p_221680_ +cum$a net/minecraft/world/level/block/MultifaceSpreader$DefaultSpreaderConfig + a f_221681_ + (Lcul;)V + 0 o p_221683_ + a (Ldcb;Lcls;Lgu;Lha;)Ldcb; m_214136_ + 0 o p_221694_ + 1 o p_221695_ + 2 o p_221696_ + 3 o p_221697_ + a (Lcls;Lgu;Lcum$c;)Z m_213973_ + 0 o p_221685_ + 1 o p_221686_ + 2 o p_221687_ + a (Lcls;Lgu;Lgu;Lha;Ldcb;)Z m_213938_ + 0 o p_221688_ + 1 o p_221689_ + 2 o p_221690_ + 3 o p_221691_ + 4 o p_221692_ +cum$b net/minecraft/world/level/block/MultifaceSpreader$SpreadConfig + a (Ldcb;Lcls;Lgu;Lha;)Ldcb; m_214136_ + 0 o p_221707_ + 1 o p_221708_ + 2 o p_221709_ + 3 o p_221710_ + a (Lcls;Lgu;Lcum$c;)Z m_213973_ + 0 o p_221698_ + 1 o p_221699_ + 2 o p_221700_ + a (Ldcb;)Z m_214107_ + 0 o p_221706_ + a (Ldcb;Lha;)Z m_221711_ + 0 o p_221712_ + 1 o p_221713_ + a ()[Lcum$e; m_214109_ + a (Lcmn;Lcum$c;Ldcb;Z)Z m_221701_ + 0 o p_221702_ + 1 o p_221703_ + 2 o p_221704_ + 3 o p_221705_ + b (Ldcb;Lha;)Z m_221714_ + 0 o p_221715_ + 1 o p_221716_ +cum$c net/minecraft/world/level/block/MultifaceSpreader$SpreadPos + a f_221717_ + b f_221718_ + (Lgu;Lha;)V + 0 o f_221717_ + 1 o f_221718_ + a ()Lgu; f_221717_ + b ()Lha; f_221718_ + equals (Ljava/lang/Object;)Z equals + 0 o p_221725_ + hashCode ()I hashCode + toString ()Ljava/lang/String; toString +cum$d net/minecraft/world/level/block/MultifaceSpreader$SpreadPredicate + test (Lcls;Lgu;Lcum$c;)Z m_221728_ + 0 o p_221729_ + 1 o p_221730_ + 2 o p_221731_ +cum$e net/minecraft/world/level/block/MultifaceSpreader$SpreadType + a SAME_POSITION + b SAME_PLANE + c WRAP_AROUND + d $VALUES + ()V + static + (Ljava/lang/String;I)V + 0 o p_221738_ + 1 o p_221739_ + a ()[Lcum$e; m_221740_ + static + a (Lgu;Lha;Lha;)Lcum$c; m_213941_ + 0 o p_221741_ + 1 o p_221742_ + 2 o p_221743_ + valueOf (Ljava/lang/String;)Lcum$e; valueOf + static + 0 o p_221745_ + values ()[Lcum$e; values + static +cum$e$1 net/minecraft/world/level/block/MultifaceSpreader$SpreadType$1 + (Ljava/lang/String;I)V + 0 o p_221748_ + 1 o p_221749_ + a (Lgu;Lha;Lha;)Lcum$c; m_213941_ + 0 o p_221751_ + 1 o p_221752_ + 2 o p_221753_ +cum$e$2 net/minecraft/world/level/block/MultifaceSpreader$SpreadType$2 + (Ljava/lang/String;I)V + 0 o p_221755_ + 1 o p_221756_ + a (Lgu;Lha;Lha;)Lcum$c; m_213941_ + 0 o p_221758_ + 1 o p_221759_ + 2 o p_221760_ +cum$e$3 net/minecraft/world/level/block/MultifaceSpreader$SpreadType$3 + (Ljava/lang/String;I)V + 0 o p_221762_ + 1 o p_221763_ + a (Lgu;Lha;Lha;)Lcum$c; m_213941_ + 0 o p_221765_ + 1 o p_221766_ + 2 o p_221767_ +cun net/minecraft/world/level/block/MushroomBlock + a f_153980_ + b f_54855_ + c f_254650_ + ()V + static + (Ldca$d;Lacp;)V + 0 o p_256027_ + 1 o p_256049_ + a (Ldcb;Lcmp;Lgu;)Z m_7898_ + 0 o p_54880_ + 1 o p_54881_ + 2 o p_54882_ + a (Laif;Lgu;Ldcb;Lapf;)Z m_221773_ + 0 o p_221774_ + 1 o p_221775_ + 2 o p_221776_ + 3 o p_221777_ + a (Lcmm;Lapf;Lgu;Ldcb;)Z m_214167_ + 0 o p_221779_ + 1 o p_221780_ + 2 o p_221781_ + 3 o p_221782_ + a (Lcmp;Lgu;Ldcb;Z)Z m_7370_ + 0 o p_255904_ + 1 o p_54871_ + 2 o p_54872_ + 3 o p_54873_ + a (Ldcb;Lcls;Lgu;Leen;)Lefb; m_5940_ + 0 o p_54889_ + 1 o p_54890_ + 2 o p_54891_ + 3 o p_54892_ + a (Laif;Lapf;Lgu;Ldcb;)V m_214148_ + 0 o p_221769_ + 1 o p_221770_ + 2 o p_221771_ + 3 o p_221772_ + b (Ldcb;Laif;Lgu;Lapf;)V m_213898_ + 0 o p_221784_ + 1 o p_221785_ + 2 o p_221786_ + 3 o p_221787_ + d (Ldcb;Lcls;Lgu;)Z m_6266_ + 0 o p_54894_ + 1 o p_54895_ + 2 o p_54896_ +cuo net/minecraft/world/level/block/MyceliumBlock + (Ldca$d;)V + 0 o p_54898_ + a (Ldcb;Lcmm;Lgu;Lapf;)V m_214162_ + 0 o p_221789_ + 1 o p_221790_ + 2 o p_221791_ + 3 o p_221792_ +cup net/minecraft/world/level/block/NetherPortalBlock + a f_54904_ + b f_153985_ + c f_54905_ + d f_54906_ + ()V + static + (Ldca$d;)V + 0 o p_54909_ + a (Ldcb;Lha;Ldcb;Lcmn;Lgu;Lgu;)Ldcb; m_7417_ + 0 o p_54928_ + 1 o p_54929_ + 2 o p_54930_ + 3 o p_54931_ + 4 o p_54932_ + 5 o p_54933_ + a (Ldcb;Lcmm;Lgu;Lbfj;)V m_7892_ + 0 o p_54915_ + 1 o p_54916_ + 2 o p_54917_ + 3 o p_54918_ + a (Ldcb;Lcvz;)Ldcb; m_6843_ + 0 o p_54925_ + 1 o p_54926_ + a (Ldcc$a;)V m_7926_ + 0 o p_54935_ + a (Ldcb;Lcls;Lgu;Leen;)Lefb; m_5940_ + 0 o p_54942_ + 1 o p_54943_ + 2 o p_54944_ + 3 o p_54945_ + a (Lcls;Lgu;Ldcb;)Lcfz; m_7397_ + 0 o p_54911_ + 1 o p_54912_ + 2 o p_54913_ + a (Ldcb;Lcmm;Lgu;Lapf;)V m_214162_ + 0 o p_221794_ + 1 o p_221795_ + 2 o p_221796_ + 3 o p_221797_ + b (Ldcb;Laif;Lgu;Lapf;)V m_213898_ + 0 o p_221799_ + 1 o p_221800_ + 2 o p_221801_ + 3 o p_221802_ +cup$1 net/minecraft/world/level/block/NetherPortalBlock$1 + a f_54946_ + b f_54947_ + ()V + static +cuq net/minecraft/world/level/block/NetherSproutsBlock + a f_54949_ + ()V + static + (Ldca$d;)V + 0 o p_54952_ + a (Ldcb;Lcls;Lgu;Leen;)Lefb; m_5940_ + 0 o p_54955_ + 1 o p_54956_ + 2 o p_54957_ + 3 o p_54958_ + d (Ldcb;Lcls;Lgu;)Z m_6266_ + 0 o p_54960_ + 1 o p_54961_ + 2 o p_54962_ +cur net/minecraft/world/level/block/NetherVines + a f_153986_ + b f_153987_ + ()V + a (Ldcb;)Z m_54963_ + static + 0 o p_54964_ + a (Lapf;)I m_221803_ + static + 0 o p_221804_ +cus net/minecraft/world/level/block/NetherWartBlock + a f_153989_ + b f_54967_ + c f_54968_ + ()V + static + (Ldca$d;)V + 0 o p_54971_ + a (Ldcc$a;)V m_7926_ + 0 o p_54977_ + a (Ldcb;Lcls;Lgu;Leen;)Lefb; m_5940_ + 0 o p_54986_ + 1 o p_54987_ + 2 o p_54988_ + 3 o p_54989_ + a (Lcls;Lgu;Ldcb;)Lcfz; m_7397_ + 0 o p_54973_ + 1 o p_54974_ + 2 o p_54975_ + b (Ldcb;Laif;Lgu;Lapf;)V m_213898_ + 0 o p_221806_ + 1 o p_221807_ + 2 o p_221808_ + 3 o p_221809_ + d (Ldcb;Lcls;Lgu;)Z m_6266_ + 0 o p_54991_ + 1 o p_54992_ + 2 o p_54993_ + e_ (Ldcb;)Z m_6724_ + 0 o p_54979_ +cut net/minecraft/world/level/block/NetherrackBlock + (Ldca$d;)V + 0 o p_54995_ + a (Lcmm;Lapf;Lgu;Ldcb;)Z m_214167_ + 0 o p_221816_ + 1 o p_221817_ + 2 o p_221818_ + 3 o p_221819_ + a (Lcmp;Lgu;Ldcb;Z)Z m_7370_ + 0 o p_256620_ + 1 o p_55003_ + 2 o p_55004_ + 3 o p_55005_ + a (Laif;Lapf;Lgu;Ldcb;)V m_214148_ + 0 o p_221811_ + 1 o p_221812_ + 2 o p_221813_ + 3 o p_221814_ +cuu net/minecraft/world/level/block/NoteBlock + a f_55011_ + b f_55012_ + c f_55013_ + d f_262759_ + ()V + static + (Ldca$d;)V + 0 o p_55016_ + a (Ldcb;Lha;Ldcb;Lcmn;Lgu;Lgu;)Ldcb; m_7417_ + 0 o p_55048_ + 1 o p_55049_ + 2 o p_55050_ + 3 o p_55051_ + 4 o p_55052_ + 5 o p_55053_ + a (Ldcc$a;)V m_7926_ + 0 o p_55055_ + a (Ldcb;Lcmm;Lgu;Lbyo;)V m_6256_ + 0 o p_55029_ + 1 o p_55030_ + 2 o p_55031_ + 3 o p_55032_ + a (Ldcb;Lcmm;Lgu;Lcpn;Lgu;Z)V m_6861_ + 0 o p_55041_ + 1 o p_55042_ + 2 o p_55043_ + 3 o p_55044_ + 4 o p_55045_ + 5 o p_55046_ + a (Ldcb;Lcmm;Lgu;Lbyo;Lbdw;Leee;)Lbdx; m_6227_ + 0 o p_55034_ + 1 o p_55035_ + 2 o p_55036_ + 3 o p_55037_ + 4 o p_55038_ + 5 o p_55039_ + a (Lbfj;Ldcb;Lcmm;Lgu;)V m_260916_ + 0 o p_261664_ + 1 o p_261606_ + 2 o p_261819_ + 3 o p_262042_ + a (Lcmm;Lgu;)Lacq; m_262851_ + 0 o p_263070_ + 1 o p_262999_ + a (Lcih;)Ldcb; m_5573_ + 0 o p_55018_ + a (Ldcb;Lcmm;Lgu;II)Z m_8133_ + 0 o p_55023_ + 1 o p_55024_ + 2 o p_55025_ + 3 o p_55026_ + 4 o p_55027_ + b (Lcmn;Lgu;Ldcb;)Ldcb; m_261136_ + 0 o p_262117_ + 1 o p_261908_ + 2 o p_262130_ + b (I)F m_276981_ + static + 0 o p_277409_ +cuv net/minecraft/world/level/block/NyliumBlock + (Ldca$d;)V + 0 o p_55057_ + a (Laif;Lddy;Lapf;Lgu;Lhe$c;)V m_255256_ + static + 0 o p_255824_ + 1 o p_256334_ + 2 o p_255646_ + 3 o p_256332_ + 4 o p_255920_ + a (Lcmm;Lapf;Lgu;Ldcb;)Z m_214167_ + 0 o p_221830_ + 1 o p_221831_ + 2 o p_221832_ + 3 o p_221833_ + a (Lcmp;Lgu;Ldcb;Z)Z m_7370_ + 0 o p_256194_ + 1 o p_256152_ + 2 o p_256389_ + 3 o p_255846_ + a (Lhr;Lacp;Laif;Lddy;Lapf;Lgu;)V m_255258_ + 0 o p_255879_ + 1 o p_256032_ + 2 o p_255631_ + 3 o p_256445_ + 4 o p_255709_ + 5 o p_256019_ + a (Laif;Lapf;Lgu;Ldcb;)V m_214148_ + 0 o p_221825_ + 1 o p_221826_ + 2 o p_221827_ + 3 o p_221828_ + b (Ldcb;Laif;Lgu;Lapf;)V m_213898_ + 0 o p_221835_ + 1 o p_221836_ + 2 o p_221837_ + 3 o p_221838_ + b (Ldcb;Lcmp;Lgu;)Z m_55078_ + static + 0 o p_55079_ + 1 o p_55080_ + 2 o p_55081_ +cuw net/minecraft/world/level/block/ObserverBlock + b f_55082_ + ()V + static + (Ldca$d;)V + 0 o p_55085_ + a (Ldcb;Lha;Ldcb;Lcmn;Lgu;Lgu;)Ldcb; m_7417_ + 0 o p_55118_ + 1 o p_55119_ + 2 o p_55120_ + 3 o p_55121_ + 4 o p_55122_ + 5 o p_55123_ + a (Ldcb;Lcvz;)Ldcb; m_6843_ + 0 o p_55115_ + 1 o p_55116_ + a (Ldcc$a;)V m_7926_ + 0 o p_55125_ + a (Ldcb;Lcls;Lgu;Lha;)I m_6378_ + 0 o p_55101_ + 1 o p_55102_ + 2 o p_55103_ + 3 o p_55104_ + a (Ldcb;Lcmm;Lgu;Ldcb;Z)V m_6810_ + 0 o p_55106_ + 1 o p_55107_ + 2 o p_55108_ + 3 o p_55109_ + 4 o p_55110_ + a (Ldcb;Laif;Lgu;Lapf;)V m_213897_ + 0 o p_221840_ + 1 o p_221841_ + 2 o p_221842_ + 3 o p_221843_ + a (Ldcb;Lcui;)Ldcb; m_6943_ + 0 o p_55112_ + 1 o p_55113_ + a (Lcmm;Lgu;Ldcb;)V m_55088_ + 0 o p_55089_ + 1 o p_55090_ + 2 o p_55091_ + a (Lcmn;Lgu;)V m_55092_ + 0 o p_55093_ + 1 o p_55094_ + a (Lcih;)Ldcb; m_5573_ + 0 o p_55087_ + b (Ldcb;Lcmm;Lgu;Ldcb;Z)V m_6807_ + 0 o p_55132_ + 1 o p_55133_ + 2 o p_55134_ + 3 o p_55135_ + 4 o p_55136_ + b (Ldcb;Lcls;Lgu;Lha;)I m_6376_ + 0 o p_55127_ + 1 o p_55128_ + 2 o p_55129_ + 3 o p_55130_ + f_ (Ldcb;)Z m_7899_ + 0 o p_55138_ +cux net/minecraft/world/level/block/PiglinWallSkullBlock + b f_260652_ + ()V + static + (Ldca$d;)V + 0 o p_261530_ + a (Ldcb;Lcls;Lgu;Leen;)Lefb; m_5940_ + 0 o p_261765_ + 1 o p_261604_ + 2 o p_261948_ + 3 o p_261889_ +cuy net/minecraft/world/level/block/PinkPetalsBlock + a f_271110_ + b f_271156_ + c f_271347_ + d f_271373_ + ()V + static + (Ldca$d;)V + 0 o p_273335_ + a (Ldcb;Lcvz;)Ldcb; m_6843_ + 0 o p_273485_ + 1 o p_273021_ + a (Ldcc$a;)V m_7926_ + 0 o p_272634_ + a (Lcmm;Lapf;Lgu;Ldcb;)Z m_214167_ + 0 o p_272604_ + 1 o p_273609_ + 2 o p_272988_ + 3 o p_273231_ + a (Lcih;)Ldcb; m_5573_ + 0 o p_273158_ + a (Lcmp;Lgu;Ldcb;Z)Z m_7370_ + 0 o p_272968_ + 1 o p_273762_ + 2 o p_273662_ + 3 o p_273778_ + a (Ldcb;Lcui;)Ldcb; m_6943_ + 0 o p_272961_ + 1 o p_273278_ + a (Ldcb;Lcls;Lgu;Leen;)Lefb; m_5940_ + 0 o p_273399_ + 1 o p_273568_ + 2 o p_273314_ + 3 o p_273274_ + a (Ldcb;Lcih;)Z m_6864_ + 0 o p_272922_ + 1 o p_273534_ + a (Laif;Lapf;Lgu;Ldcb;)V m_214148_ + 0 o p_273476_ + 1 o p_273093_ + 2 o p_272601_ + 3 o p_272683_ +cuz net/minecraft/world/level/block/PipeBlock + a f_55148_ + b f_55149_ + c f_55150_ + d f_55151_ + e f_55152_ + f f_55153_ + g f_55154_ + h f_55155_ + i f_55156_ + ()V + static + (FLdca$d;)V + 0 o p_55159_ + 1 o p_55160_ + a (Ljava/util/EnumMap;)V m_55163_ + static + 0 o p_55164_ + a (F)[Lefb; m_55161_ + 0 o p_55162_ + a (Ldcb;Lcls;Lgu;Leen;)Lefb; m_5940_ + 0 o p_55170_ + 1 o p_55171_ + 2 o p_55172_ + 3 o p_55173_ + c (Ldcb;Lcls;Lgu;)Z m_7420_ + 0 o p_55166_ + 1 o p_55167_ + 2 o p_55168_ + h (Ldcb;)I m_55174_ + 0 o p_55175_ +cv net/minecraft/advancements/critereon/SimpleCriterionTrigger + a f_66232_ + ()V + a (Lacy;)V m_5656_ + 0 o p_66241_ + a (Lcom/google/gson/JsonObject;Lbe;)Lam; m_5868_ + 0 o p_66238_ + 1 o p_66239_ + a (Lacy;Lal$a;)V m_6467_ + 0 o p_66243_ + 1 o p_66244_ + a (Laig;Ljava/util/function/Predicate;)V m_66234_ + 0 o p_66235_ + 1 o p_66236_ + b (Lcom/google/gson/JsonObject;Lbe;)Lar; m_5868_ + 0 o p_66246_ + 1 o p_66247_ + b (Lcom/google/gson/JsonObject;Lba;Lbe;)Lar; m_7214_ + 0 o p_66248_ + 1 o p_286603_ + 2 o p_66250_ + b (Lacy;)Ljava/util/Set; m_66251_ + static + 0 o p_66252_ + b (Lacy;Lal$a;)V m_6468_ + 0 o p_66254_ + 1 o p_66255_ +cva net/minecraft/world/level/block/PitcherCropBlock + b f_276478_ + c f_276671_ + d f_276596_ + e f_278117_ + f f_278440_ + g f_278400_ + h f_276694_ + i f_276589_ + j f_278405_ + k f_278397_ + ()V + static + (Ldca$d;)V + 0 o p_277780_ + a (Ldcb;Lcmm;Lgu;Lbfj;)V m_7892_ + 0 o p_279266_ + 1 o p_279469_ + 2 o p_279119_ + 3 o p_279372_ + a (Laif;Ldcb;Lgu;I)V m_276898_ + 0 o p_277975_ + 1 o p_277349_ + 2 o p_277585_ + 3 o p_277498_ + a (Ldcb;Lcih;)Z m_6864_ + 0 o p_277627_ + 1 o p_277759_ + a (Ldcb;Lcmp;Lgu;)Z m_7898_ + 0 o p_277671_ + 1 o p_277477_ + 2 o p_278085_ + a (Lcmp;Lgu;Ldcb;I)Z m_289996_ + 0 o p_290007_ + 1 o p_290014_ + 2 o p_290017_ + 3 o p_290008_ + a (Ldcb;Lha;Ldcb;Lcmn;Lgu;Lgu;)Ldcb; m_7417_ + 0 o p_277518_ + 1 o p_277700_ + 2 o p_277660_ + 3 o p_277653_ + 4 o p_277982_ + 5 o p_278106_ + a (Ldcc$a;)V m_7926_ + 0 o p_277573_ + a (Lcmp;Lgu;Ldcb;Z)Z m_7370_ + 0 o p_277380_ + 1 o p_277500_ + 2 o p_277715_ + 3 o p_277487_ + a (Ldcb;Lcls;Lgu;Leen;)Lefb; m_5940_ + 0 o p_277602_ + 1 o p_277617_ + 2 o p_278005_ + 3 o p_277514_ + a (Lcmm;Lgu;Ldcb;Lbfz;Lcfz;)V m_6402_ + 0 o p_277432_ + 1 o p_277632_ + 2 o p_277479_ + 3 o p_277805_ + 4 o p_277663_ + a (Laif;Lapf;Lgu;Ldcb;)V m_214148_ + 0 o p_277717_ + 1 o p_277870_ + 2 o p_277836_ + 3 o p_278034_ + a (Lcmp;Lgu;)Z m_277165_ + static + 0 o p_290010_ + 1 o p_277823_ + a (Lcmm;Lapf;Lgu;Ldcb;)Z m_214167_ + 0 o p_277920_ + 1 o p_277594_ + 2 o p_277401_ + 3 o p_277434_ + a (Lcih;)Ldcb; m_5573_ + 0 o p_277448_ + b (Lcmp;Lgu;Ldcb;)Lcva$a; m_289999_ + 0 o p_290009_ + 1 o p_290016_ + 2 o p_290015_ + b (Lcmp;Lgu;)Z m_290004_ + static + 0 o p_290018_ + 1 o p_290011_ + b (Ldcb;Laif;Lgu;Lapf;)V m_213898_ + 0 o p_277950_ + 1 o p_277589_ + 2 o p_277937_ + 3 o p_277887_ + c (Ldcb;Lcls;Lgu;Leen;)Lefb; m_5939_ + 0 o p_277609_ + 1 o p_277398_ + 2 o p_278042_ + 3 o p_277995_ + d (Ldcb;Lcls;Lgu;)Z m_6266_ + 0 o p_277418_ + 1 o p_277461_ + 2 o p_277608_ + e_ (Ldcb;)Z m_6724_ + 0 o p_277483_ + h (Ldcb;)Z m_276876_ + 0 o p_277387_ + n (Ldcb;)Z m_278754_ + static + 0 o p_279488_ + o (Ldcb;)Z m_290001_ + static + 0 o p_290013_ +cva$a net/minecraft/world/level/block/PitcherCropBlock$PosAndState + a f_289994_ + b f_289993_ + (Lgu;Ldcb;)V + 0 o f_289994_ + 1 o f_289993_ + a ()Lgu; f_289994_ + b ()Ldcb; f_289993_ + equals (Ljava/lang/Object;)Z equals + 0 o p_290012_ + hashCode ()I hashCode + toString ()Ljava/lang/String; toString +cvb net/minecraft/world/level/block/PlayerHeadBlock + (Ldca$d;)V + 0 o p_55177_ + a (Lcmm;Lgu;Ldcb;Lbfz;Lcfz;)V m_6402_ + 0 o p_55179_ + 1 o p_55180_ + 2 o p_55181_ + 3 o p_55182_ + 4 o p_55183_ +cvc net/minecraft/world/level/block/PlayerWallHeadBlock + (Ldca$d;)V + 0 o p_55185_ + a (Ldcb;Ldzq$a;)Ljava/util/List; m_49635_ + 0 o p_287758_ + 1 o p_287648_ + a (Lcmm;Lgu;Ldcb;Lbfz;Lcfz;)V m_6402_ + 0 o p_55187_ + 1 o p_55188_ + 2 o p_55189_ + 3 o p_55190_ + 4 o p_55191_ +cvd net/minecraft/world/level/block/PointedDripstoneBlock + D f_153995_ + E f_153996_ + F f_153997_ + G f_153998_ + H f_153999_ + I f_154000_ + J f_154001_ + K f_154002_ + L f_154003_ + M f_154004_ + N f_154005_ + O f_154006_ + P f_154007_ + Q f_154008_ + R f_202005_ + a f_154009_ + b f_154010_ + c f_154011_ + d f_154012_ + e f_154014_ + f f_154015_ + g f_154016_ + h f_154017_ + i f_221844_ + j f_221845_ + k f_154020_ + l f_154021_ + m f_154022_ + n f_153994_ + ()V + static + (Ldca$d;)V + 0 o p_154025_ + a (Lcmm;Lgu;Lbvg;)V m_142525_ + 0 o p_154059_ + 1 o p_154060_ + 2 o p_154061_ + a (Lcmm;Lgu;Ldcb;Ldxd;)V m_154071_ + static + 0 o p_154072_ + 1 o p_154073_ + 2 o p_154074_ + 3 o p_154075_ + a (Laif;Lgu;)Ldxd; m_221849_ + static + 0 o p_221850_ + 1 o p_221851_ + a (Ldxd;Ldcb;)Z m_154160_ + static + 0 o p_154161_ + 1 o p_154162_ + a (Lcmm;Ldcb;Lgu;Lbfj;F)V m_142072_ + 0 o p_154047_ + 1 o p_154048_ + 2 o p_154049_ + 3 o p_154050_ + 4 o p_154051_ + a (Ldcb;Lha;)Z m_154143_ + static + 0 o p_154144_ + 1 o p_154145_ + a (Ldcb;Ldcb;)Z m_154140_ + static + 0 o p_154141_ + 1 o p_154142_ + a (Lcmm;Lgu;Ldcb;)V m_154062_ + static + 0 o p_154063_ + 1 o p_154064_ + 2 o p_154065_ + a (Ldcb;Laif;Lgu;)V m_154097_ + static + 0 o p_154098_ + 1 o p_154099_ + 2 o p_154100_ + a (ZLdcb;)Z m_154166_ + static + 0 o p_154167_ + 1 o p_154168_ + a (Ldcb;Lcmp;Lgu;)Z m_7898_ + 0 o p_154137_ + 1 o p_154138_ + 2 o p_154139_ + a (Ldcb;Lcmn;Lgu;)V m_154230_ + static + 0 o p_154231_ + 1 o p_154232_ + 2 o p_154233_ + a (Laif;Lgu;Lha;)V m_154035_ + static + 0 o p_154036_ + 1 o p_154037_ + 2 o p_154038_ + a (Ldcb;Lha;Ldcb;Lcmn;Lgu;Lgu;)Ldcb; m_7417_ + 0 o p_154147_ + 1 o p_154148_ + 2 o p_154149_ + 3 o p_154150_ + 4 o p_154151_ + 5 o p_154152_ + a (Lbfj;)Lben; m_252932_ + 0 o p_254432_ + a (Lcmn;Lgu;Lha;Ldcy;)V m_154087_ + static + 0 o p_154088_ + 1 o p_154089_ + 2 o p_154090_ + 3 o p_154091_ + a (Ldcb;Laif;Lgu;Lapf;)V m_213897_ + 0 o p_221865_ + 1 o p_221866_ + 2 o p_221867_ + 3 o p_221868_ + a (Ldcb;Laif;Lgu;F)V m_221859_ + static + 0 o p_221860_ + 1 o p_221861_ + 2 o p_221862_ + 3 o p_221863_ + a (Ldcb;Lcls;Lgu;Leen;)Lefb; m_5940_ + 0 o p_154117_ + 1 o p_154118_ + 2 o p_154119_ + 3 o p_154120_ + a (Ldcb;Lcls;Lgu;Ldxu;)Z m_7357_ + 0 o p_154112_ + 1 o p_154113_ + 2 o p_154114_ + 3 o p_154115_ + a (Ldcb;Lcmn;Lgu;IZ)Lgu; m_154130_ + static + 0 o p_154131_ + 1 o p_154132_ + 2 o p_154133_ + 3 o p_154134_ + 4 o p_154135_ + a (Lcvd$a;)Ldxd; m_221857_ + static + 0 o p_221858_ + a (Lcmn;Lgu;Lha$b;Ljava/util/function/BiPredicate;Ljava/util/function/Predicate;I)Ljava/util/Optional; m_202006_ + static + 0 o p_202007_ + 1 o p_202008_ + 2 o p_202009_ + 3 o p_202010_ + 4 o p_202011_ + 5 o p_202012_ + a (Lcih;)Ldcb; m_5573_ + 0 o p_154040_ + a (Lcmm;Lgu;Ldxd;)Lgu; m_154076_ + static + 0 o p_154077_ + 1 o p_154078_ + 2 o p_154079_ + a (Lcmm;Ldxd;)Ldxd; m_154052_ + static + 0 o p_154053_ + 1 o p_154054_ + a (Lha;Lgu;Ldcb;)Z m_202013_ + static + 0 o p_202014_ + 1 o p_202015_ + 2 o p_202016_ + a (Ldcb;Z)Z m_154153_ + static + 0 o p_154154_ + 1 o p_154155_ + a (Lcmm;Ldcb;Leee;Lbzg;)V m_5581_ + 0 o p_154042_ + 1 o p_154043_ + 2 o p_154044_ + 3 o p_154045_ + a (Lcmp;Lgu;Lha;Z)Ldcy; m_154092_ + static + 0 o p_154093_ + 1 o p_154094_ + 2 o p_154095_ + 3 o p_154096_ + a (FLcvd$a;)Z m_221846_ + static + 0 o p_221847_ + 1 o p_221848_ + a (Lcmm;Lgu;Ldcb;I)Ljava/util/Optional; m_154066_ + static + 0 o p_154067_ + 1 o p_154068_ + 2 o p_154069_ + 3 o p_154070_ + a (Ldcc$a;)V m_7926_ + 0 o p_154157_ + a (Ldxd;)Z m_154158_ + static + 0 o p_154159_ + a (Ldcb;Lcmm;Lgu;Lapf;)V m_214162_ + 0 o p_221870_ + 1 o p_221871_ + 2 o p_221872_ + 3 o p_221873_ + a (Lcmm;Lgu;Ldcb;Lcvd$a;)V m_221852_ + static + 0 o p_221853_ + 1 o p_221854_ + 2 o p_221855_ + 3 o p_221856_ + a (Lcmm;Lgu;)Lgu; m_154055_ + static + 0 o p_154056_ + 1 o p_154057_ + a_ (Ldcb;Lcls;Lgu;)Z m_180643_ + 0 o p_181235_ + 1 o p_181236_ + 2 o p_181237_ + al_ ()F m_142740_ + b (Ldcb;Laif;Lgu;)Z m_154194_ + static + 0 o p_154195_ + 1 o p_154196_ + 2 o p_154197_ + b (Ldcb;Lha;)Z m_154207_ + static + 0 o p_154208_ + 1 o p_154209_ + b (Lha;Lgu;Ldcb;)Z m_202021_ + static + 0 o p_202022_ + 1 o p_202023_ + 2 o p_202024_ + b (Lcmm;Lgu;Ldcb;Lcvd$a;)V m_221877_ + static + 0 o p_221878_ + 1 o p_221879_ + 2 o p_221880_ + 3 o p_221881_ + b (Ldcb;Lcmp;Lgu;)Z m_154203_ + static + 0 o p_154204_ + 1 o p_154205_ + 2 o p_154206_ + b (Ldcb;Laif;Lgu;Lapf;)V m_213898_ + 0 o p_221883_ + 1 o p_221884_ + 2 o p_221885_ + 3 o p_221886_ + b (Lcmm;Lgu;)Lcvd$a; m_221874_ + static + 0 o p_221875_ + 1 o p_221876_ + b (Lcmp;Lgu;Lha;)Lha; m_154190_ + static + 0 o p_154191_ + 1 o p_154192_ + 2 o p_154193_ + b (Laif;Lgu;)V m_154032_ + static + 0 o p_154033_ + 1 o p_154034_ + b (Lcmm;Lgu;Ldcb;)Ljava/util/Optional; m_154181_ + static + 0 o p_154182_ + 1 o p_154183_ + 2 o p_154184_ + b (Lcls;Lgu;Ldcb;)Z m_202017_ + static + 0 o p_202018_ + 1 o p_202019_ + 2 o p_202020_ + c (Lcmm;Lgu;Ldcb;)Z m_202028_ + static + 0 o p_202029_ + 1 o p_202030_ + 2 o p_202031_ + c (Ldcb;Laif;Lgu;Lapf;)V m_221887_ + static + 0 o p_221888_ + 1 o p_221889_ + 2 o p_221890_ + 3 o p_221891_ + c (Lcmp;Lgu;Lha;)Z m_154221_ + static + 0 o p_154222_ + 1 o p_154223_ + 2 o p_154224_ + c_ (Ldcb;)Ldxe; m_5888_ + 0 o p_154235_ + d (Lcmm;Lgu;Ldcb;)Z m_202032_ + static + 0 o p_202033_ + 1 o p_202034_ + 2 o p_202035_ + f (Ldcb;Lcls;Lgu;)Lefb; m_7952_ + 0 o p_154170_ + 1 o p_154171_ + 2 o p_154172_ + h (Ldcb;)Z m_154238_ + static + 0 o p_154239_ + n (Ldcb;)Z m_154240_ + static + 0 o p_154241_ + o (Ldcb;)Z m_154242_ + static + 0 o p_154243_ + p (Ldcb;)Z m_154244_ + static + 0 o p_154245_ +cvd$a net/minecraft/world/level/block/PointedDripstoneBlock$FluidInfo + a f_221892_ + b f_221893_ + c f_221894_ + (Lgu;Ldxd;Ldcb;)V + 0 o f_221892_ + 1 o f_221893_ + 2 o f_221894_ + a ()Lgu; f_221892_ + b ()Ldxd; f_221893_ + c ()Ldcb; f_221894_ + equals (Ljava/lang/Object;)Z equals + 0 o p_221903_ + hashCode ()I hashCode + toString ()Ljava/lang/String; toString +cve net/minecraft/world/level/block/PotatoBlock + a f_55195_ + ()V + static + (Ldca$d;)V + 0 o p_55198_ + a (Ldcb;Lcls;Lgu;Leen;)Lefb; m_5940_ + 0 o p_55200_ + 1 o p_55201_ + 2 o p_55202_ + 3 o p_55203_ + c ()Lcml; m_6404_ +cvf net/minecraft/world/level/block/PowderSnowBlock + a f_154246_ + b f_154247_ + c f_154248_ + d f_154249_ + e f_154250_ + f f_196692_ + g f_196693_ + ()V + static + (Ldca$d;)V + 0 o p_154253_ + a (Ldcb;Lcls;Lgu;Ldxu;)Z m_7357_ + 0 o p_154258_ + 1 o p_154259_ + 2 o p_154260_ + 3 o p_154261_ + a (Ldcb;Lcmm;Lgu;Lbfj;)V m_7892_ + 0 o p_154263_ + 1 o p_154264_ + 2 o p_154265_ + 3 o p_154266_ + a (Ldcb;Ldcb;Lha;)Z m_6104_ + 0 o p_154268_ + 1 o p_154269_ + 2 o p_154270_ + a (Lcmm;Ldcb;Lgu;Lbfj;F)V m_142072_ + 0 o p_196695_ + 1 o p_196696_ + 2 o p_196697_ + 3 o p_196698_ + 4 o p_196699_ + a (Lbfj;)Z m_154255_ + static + 0 o p_154256_ + am_ ()Ljava/util/Optional; m_142298_ + b (Ldcb;Lcls;Lgu;Leen;)Lefb; m_5909_ + 0 o p_154276_ + 1 o p_154277_ + 2 o p_154278_ + 3 o p_154279_ + c (Ldcb;Lcls;Lgu;Leen;)Lefb; m_5939_ + 0 o p_154285_ + 1 o p_154286_ + 2 o p_154287_ + 3 o p_154288_ + c (Lcmn;Lgu;Ldcb;)Lcfz; m_142598_ + 0 o p_154281_ + 1 o p_154282_ + 2 o p_154283_ + f (Ldcb;Lcls;Lgu;)Lefb; m_7952_ + 0 o p_154272_ + 1 o p_154273_ + 2 o p_154274_ +cvg net/minecraft/world/level/block/PowderSnowCauldronBlock + (Ldca$d;Ljava/util/function/Predicate;Ljava/util/Map;)V + 0 o p_154290_ + 1 o p_154291_ + 2 o p_154292_ + d (Ldcb;Lcmm;Lgu;)V m_142266_ + 0 o p_154294_ + 1 o p_154295_ + 2 o p_154296_ +cvh net/minecraft/world/level/block/PoweredBlock + (Ldca$d;)V + 0 o p_55206_ + a (Ldcb;Lcls;Lgu;Lha;)I m_6378_ + 0 o p_55208_ + 1 o p_55209_ + 2 o p_55210_ + 3 o p_55211_ + f_ (Ldcb;)Z m_7899_ + 0 o p_55213_ +cvi net/minecraft/world/level/block/PoweredRailBlock + d f_55214_ + e f_55215_ + ()V + static + (Ldca$d;)V + 0 o p_55218_ + a (Ldcb;Lcmm;Lgu;Lcpn;)V m_6360_ + 0 o p_55232_ + 1 o p_55233_ + 2 o p_55234_ + 3 o p_55235_ + a (Ldcb;Lcvz;)Ldcb; m_6843_ + 0 o p_55240_ + 1 o p_55241_ + a (Ldcc$a;)V m_7926_ + 0 o p_55243_ + a (Lcmm;Lgu;ZILddf;)Z m_55225_ + 0 o p_55226_ + 1 o p_55227_ + 2 o p_55228_ + 3 o p_55229_ + 4 o p_55230_ + a (Lcmm;Lgu;Ldcb;ZI)Z m_55219_ + 0 o p_55220_ + 1 o p_55221_ + 2 o p_55222_ + 3 o p_55223_ + 4 o p_55224_ + a (Ldcb;Lcui;)Ldcb; m_6943_ + 0 o p_55237_ + 1 o p_55238_ + b ()Ldde; m_7978_ +cvi$1 net/minecraft/world/level/block/PoweredRailBlock$1 + a f_55245_ + b f_55246_ + c f_55247_ + ()V + static +cvj net/minecraft/world/level/block/PressurePlateBlock + d f_55249_ + e f_55250_ + ()V + static + (Lcvj$a;Ldca$d;Ldcq;)V + 0 o p_273523_ + 1 o p_273571_ + 2 o p_273284_ + a (Ldcc$a;)V m_7926_ + 0 o p_55262_ + a (Ldcb;I)Ldcb; m_7422_ + 0 o p_55259_ + 1 o p_55260_ + b (Lcmm;Lgu;)I m_6693_ + 0 o p_55264_ + 1 o p_55265_ + g (Ldcb;)I m_6016_ + 0 o p_55270_ +cvj$1 net/minecraft/world/level/block/PressurePlateBlock$1 + a f_55271_ + ()V + static +cvj$a net/minecraft/world/level/block/PressurePlateBlock$Sensitivity + a EVERYTHING + b MOBS + c $VALUES + ()V + static + (Ljava/lang/String;I)V + 0 o p_55278_ + 1 o p_55279_ + a ()[Lcvj$a; m_154297_ + static + valueOf (Ljava/lang/String;)Lcvj$a; valueOf + static + 0 o p_55281_ + values ()[Lcvj$a; values + static +cvk net/minecraft/world/level/block/PumpkinBlock + (Ldca$d;)V + 0 o p_55284_ + a (Lbdw;Lbyo;)V m_55285_ + static + 0 o p_55286_ + 1 o p_55287_ + a (Ldcb;Lcmm;Lgu;Lbyo;Lbdw;Leee;)Lbdx; m_6227_ + 0 o p_55289_ + 1 o p_55290_ + 2 o p_55291_ + 3 o p_55292_ + 4 o p_55293_ + 5 o p_55294_ + a ()Lcxj; m_7161_ + b ()Lcop; m_7810_ +cvl net/minecraft/world/level/block/RailBlock + d f_55392_ + ()V + static + (Ldca$d;)V + 0 o p_55395_ + a (Ldcb;Lcmm;Lgu;Lcpn;)V m_6360_ + 0 o p_55397_ + 1 o p_55398_ + 2 o p_55399_ + 3 o p_55400_ + a (Ldcb;Lcvz;)Ldcb; m_6843_ + 0 o p_55405_ + 1 o p_55406_ + a (Ldcc$a;)V m_7926_ + 0 o p_55408_ + a (Ldcb;Lcui;)Ldcb; m_6943_ + 0 o p_55402_ + 1 o p_55403_ + b ()Ldde; m_7978_ +cvl$1 net/minecraft/world/level/block/RailBlock$1 + a f_55410_ + b f_55411_ + c f_55412_ + ()V + static +cvm net/minecraft/world/level/block/RailState + a f_55414_ + b f_55415_ + c f_55416_ + d f_55417_ + e f_55418_ + f f_55419_ + (Lcmm;Lgu;Ldcb;)V + 0 o p_55421_ + 1 o p_55422_ + 2 o p_55423_ + a (Lcvm;)Z m_55425_ + 0 o p_55426_ + a (Lgu;)Z m_55429_ + 0 o p_55430_ + a (ZZLddf;)Lcvm; m_55431_ + 0 o p_55432_ + 1 o p_55433_ + 2 o p_55434_ + a ()Ljava/util/List; m_55424_ + a (Lddf;)V m_55427_ + 0 o p_55428_ + b (Lcvm;)Z m_55436_ + 0 o p_55437_ + b (Lgu;)Lcvm; m_55438_ + 0 o p_55439_ + b ()I m_55435_ + c ()Ldcb; m_55440_ + c (Lgu;)Z m_55443_ + 0 o p_55444_ + c (Lcvm;)V m_55441_ + 0 o p_55442_ + d (Lgu;)Z m_55446_ + 0 o p_55447_ + d ()V m_55445_ +cvm$1 net/minecraft/world/level/block/RailState$1 + a f_55448_ + ()V + static +cvn net/minecraft/world/level/block/RedStoneOreBlock + a f_55450_ + ()V + static + (Ldca$d;)V + 0 o p_55453_ + a (Ldcb;Laif;Lgu;Lcfz;Z)V m_213646_ + 0 o p_221907_ + 1 o p_221908_ + 2 o p_221909_ + 3 o p_221910_ + 4 o p_221911_ + a (Ldcc$a;)V m_7926_ + 0 o p_55484_ + a (Ldcb;Lcmm;Lgu;Lbyo;Lbdw;Leee;)Lbdx; m_6227_ + 0 o p_55472_ + 1 o p_55473_ + 2 o p_55474_ + 3 o p_55475_ + 4 o p_55476_ + 5 o p_55477_ + a (Ldcb;Lcmm;Lgu;Lbyo;)V m_6256_ + 0 o p_55467_ + 1 o p_55468_ + 2 o p_55469_ + 3 o p_55470_ + a (Lcmm;Lgu;)V m_55454_ + static + 0 o p_55455_ + 1 o p_55456_ + a (Ldcb;Lcmm;Lgu;Lapf;)V m_214162_ + 0 o p_221913_ + 1 o p_221914_ + 2 o p_221915_ + 3 o p_221916_ + a (Lcmm;Lgu;Ldcb;Lbfj;)V m_141947_ + 0 o p_154299_ + 1 o p_154300_ + 2 o p_154301_ + 3 o p_154302_ + b (Ldcb;Laif;Lgu;Lapf;)V m_213898_ + 0 o p_221918_ + 1 o p_221919_ + 2 o p_221920_ + 3 o p_221921_ + d (Ldcb;Lcmm;Lgu;)V m_55492_ + static + 0 o p_55493_ + 1 o p_55494_ + 2 o p_55495_ + e_ (Ldcb;)Z m_6724_ + 0 o p_55486_ +cvo net/minecraft/world/level/block/RedStoneWireBlock + D f_55505_ + E f_55506_ + F f_154303_ + G f_55507_ + H f_55508_ + a f_55496_ + b f_55497_ + c f_55498_ + d f_55499_ + e f_55500_ + f f_55501_ + g f_154304_ + h f_154305_ + i f_154306_ + j f_154307_ + k f_154308_ + l f_55502_ + m f_55503_ + n f_55504_ + ()V + static + (Ldca$d;)V + 0 o p_55511_ + a (Lcls;Lgu;Lha;Z)Lddg; m_55522_ + 0 o p_55523_ + 1 o p_55524_ + 2 o p_55525_ + 3 o p_55526_ + a (Ldcb;Lcmn;Lgu;II)V m_7742_ + 0 o p_55579_ + 1 o p_55580_ + 2 o p_55581_ + 3 o p_55582_ + 4 o p_55583_ + a (Ldcb;Lcmm;Lgu;Ldcb;Z)V m_6810_ + 0 o p_55568_ + 1 o p_55569_ + 2 o p_55570_ + 3 o p_55571_ + 4 o p_55572_ + a (Lcmm;Lgu;)I m_55527_ + 0 o p_55528_ + 1 o p_55529_ + a (Ldcb;Lha;)Z m_55594_ + static + 0 o p_55595_ + 1 o p_55596_ + a (Ldcb;Lcmm;Lgu;Lcpn;Lgu;Z)V m_6861_ + 0 o p_55561_ + 1 o p_55562_ + 2 o p_55563_ + 3 o p_55564_ + 4 o p_55565_ + 5 o p_55566_ + a (Ldcb;Lcui;)Ldcb; m_6943_ + 0 o p_55589_ + 1 o p_55590_ + a (Lcmm;Lgu;Ldcb;)V m_55530_ + 0 o p_55531_ + 1 o p_55532_ + 2 o p_55533_ + a (Ldcb;Lcmp;Lgu;)Z m_7898_ + 0 o p_55585_ + 1 o p_55586_ + 2 o p_55587_ + a ([Leei;)V m_154318_ + static + 0 o p_154319_ + a (Ldcb;Lha;Ldcb;Lcmn;Lgu;Lgu;)Ldcb; m_7417_ + 0 o p_55598_ + 1 o p_55599_ + 2 o p_55600_ + 3 o p_55601_ + 4 o p_55602_ + 5 o p_55603_ + a (Lcls;Lgu;Lha;)Lddg; m_55518_ + 0 o p_55519_ + 1 o p_55520_ + 2 o p_55521_ + a (Ldcb;Lcvz;)Ldcb; m_6843_ + 0 o p_55592_ + 1 o p_55593_ + a (Ldcb;Lcls;Lgu;Lha;)I m_6378_ + 0 o p_55549_ + 1 o p_55550_ + 2 o p_55551_ + 3 o p_55552_ + a (Ldcc$a;)V m_7926_ + 0 o p_55605_ + a (Ldcb;Lcls;Lgu;Leen;)Lefb; m_5940_ + 0 o p_55620_ + 1 o p_55621_ + 2 o p_55622_ + 3 o p_55623_ + a (Lcls;Ldcb;Lgu;)Ldcb; m_55514_ + 0 o p_55515_ + 1 o p_55516_ + 2 o p_55517_ + a (Ldcb;Lcmm;Lgu;Lapf;)V m_214162_ + 0 o p_221932_ + 1 o p_221933_ + 2 o p_221934_ + 3 o p_221935_ + a (Lcmm;Lapf;Lgu;Leei;Lha;Lha;FF)V m_221922_ + 0 o p_221923_ + 1 o p_221924_ + 2 o p_221925_ + 3 o p_221926_ + 4 o p_221927_ + 5 o p_221928_ + 6 o p_221929_ + 7 o p_221930_ + a (Ldcb;Lcmm;Lgu;Lbyo;Lbdw;Leee;)Lbdx; m_6227_ + 0 o p_55554_ + 1 o p_55555_ + 2 o p_55556_ + 3 o p_55557_ + 4 o p_55558_ + 5 o p_55559_ + a (Lcmm;Lgu;Ldcb;Ldcb;)V m_55534_ + 0 o p_55535_ + 1 o p_55536_ + 2 o p_55537_ + 3 o p_55538_ + a (Lcih;)Ldcb; m_5573_ + 0 o p_55513_ + b (Lcls;Ldcb;Lgu;)Ldcb; m_55608_ + 0 o p_55609_ + 1 o p_55610_ + 2 o p_55611_ + b (Ldcb;Lcls;Lgu;Lha;)I m_6376_ + 0 o p_55625_ + 1 o p_55626_ + 2 o p_55627_ + 3 o p_55628_ + b (Ldcb;Lcmm;Lgu;Ldcb;Z)V m_6807_ + 0 o p_55630_ + 1 o p_55631_ + 2 o p_55632_ + 3 o p_55633_ + 4 o p_55634_ + b (Lcmm;Lgu;)V m_55616_ + 0 o p_55617_ + 1 o p_55618_ + b (Lcls;Lgu;Ldcb;)Z m_55612_ + 0 o p_55613_ + 1 o p_55614_ + 2 o p_55615_ + b (I)I m_55606_ + static + 0 o p_55607_ + c (Lcmm;Lgu;)V m_55637_ + 0 o p_55638_ + 1 o p_55639_ + f_ (Ldcb;)Z m_7899_ + 0 o p_55636_ + h (Ldcb;)Z m_55640_ + static + 0 o p_55641_ + n (Ldcb;)Lefb; m_55642_ + 0 o p_55643_ + o (Ldcb;)Z m_55644_ + static + 0 o p_55645_ + p (Ldcb;)Z m_55646_ + static + 0 o p_55647_ + q (Ldcb;)I m_55648_ + 0 o p_55649_ +cvo$1 net/minecraft/world/level/block/RedStoneWireBlock$1 + a f_55650_ + b f_55651_ + c f_55652_ + ()V + static +cvp net/minecraft/world/level/block/RedstoneLampBlock + a f_55654_ + ()V + static + (Ldca$d;)V + 0 o p_55657_ + a (Ldcc$a;)V m_7926_ + 0 o p_55673_ + a (Ldcb;Laif;Lgu;Lapf;)V m_213897_ + 0 o p_221937_ + 1 o p_221938_ + 2 o p_221939_ + 3 o p_221940_ + a (Lcih;)Ldcb; m_5573_ + 0 o p_55659_ + a (Ldcb;Lcmm;Lgu;Lcpn;Lgu;Z)V m_6861_ + 0 o p_55666_ + 1 o p_55667_ + 2 o p_55668_ + 3 o p_55669_ + 4 o p_55670_ + 5 o p_55671_ +cvq net/minecraft/world/level/block/RedstoneTorchBlock + a f_55674_ + b f_154325_ + c f_154326_ + d f_154327_ + e f_55675_ + f f_154328_ + ()V + static + (Ldca$d;)V + 0 o p_55678_ + a (Ldcb;Lcls;Lgu;Lha;)I m_6378_ + 0 o p_55694_ + 1 o p_55695_ + 2 o p_55696_ + 3 o p_55697_ + a (Ldcc$a;)V m_7926_ + 0 o p_55717_ + a (Lcmm;Lgu;Z)Z m_55684_ + static + 0 o p_55685_ + 1 o p_55686_ + 2 o p_55687_ + a (Ldcb;Lcmm;Lgu;Ldcb;Z)V m_6810_ + 0 o p_55706_ + 1 o p_55707_ + 2 o p_55708_ + 3 o p_55709_ + 4 o p_55710_ + a (Lcmm;Lgu;Ldcb;)Z m_6918_ + 0 o p_55681_ + 1 o p_55682_ + 2 o p_55683_ + a (Ldcb;Laif;Lgu;Lapf;)V m_213897_ + 0 o p_221949_ + 1 o p_221950_ + 2 o p_221951_ + 3 o p_221952_ + a (Ldcb;Lcmm;Lgu;Lcpn;Lgu;Z)V m_6861_ + 0 o p_55699_ + 1 o p_55700_ + 2 o p_55701_ + 3 o p_55702_ + 4 o p_55703_ + 5 o p_55704_ + a (Ldcb;Lcmm;Lgu;Lapf;)V m_214162_ + 0 o p_221954_ + 1 o p_221955_ + 2 o p_221956_ + 3 o p_221957_ + a (Lcls;)Ljava/util/List; m_55679_ + static + 0 o p_55680_ + b (Ldcb;Lcmm;Lgu;Ldcb;Z)V m_6807_ + 0 o p_55724_ + 1 o p_55725_ + 2 o p_55726_ + 3 o p_55727_ + 4 o p_55728_ + b (Ldcb;Lcls;Lgu;Lha;)I m_6376_ + 0 o p_55719_ + 1 o p_55720_ + 2 o p_55721_ + 3 o p_55722_ + f_ (Ldcb;)Z m_7899_ + 0 o p_55730_ +cvq$a net/minecraft/world/level/block/RedstoneTorchBlock$Toggle + a f_55731_ + b f_55732_ + (Lgu;J)V + 0 o p_55734_ + 1 o p_55735_ +cvr net/minecraft/world/level/block/RedstoneWallTorchBlock + e f_55740_ + f f_55741_ + ()V + static + (Ldca$d;)V + 0 o p_55744_ + a (Ldcb;Lha;Ldcb;Lcmn;Lgu;Lgu;)Ldcb; m_7417_ + 0 o p_55772_ + 1 o p_55773_ + 2 o p_55774_ + 3 o p_55775_ + 4 o p_55776_ + 5 o p_55777_ + a (Ldcb;Lcvz;)Ldcb; m_6843_ + 0 o p_55769_ + 1 o p_55770_ + a (Ldcb;Lcls;Lgu;Lha;)I m_6378_ + 0 o p_55752_ + 1 o p_55753_ + 2 o p_55754_ + 3 o p_55755_ + a (Ldcc$a;)V m_7926_ + 0 o p_55779_ + a (Lcmm;Lgu;Ldcb;)Z m_6918_ + 0 o p_55748_ + 1 o p_55749_ + 2 o p_55750_ + a (Ldcb;Lcls;Lgu;Leen;)Lefb; m_5940_ + 0 o p_55781_ + 1 o p_55782_ + 2 o p_55783_ + 3 o p_55784_ + a (Ldcb;Lcui;)Ldcb; m_6943_ + 0 o p_55766_ + 1 o p_55767_ + a (Ldcb;Lcmm;Lgu;Lapf;)V m_214162_ + 0 o p_221959_ + 1 o p_221960_ + 2 o p_221961_ + 3 o p_221962_ + a (Ldcb;Lcmp;Lgu;)Z m_7898_ + 0 o p_55762_ + 1 o p_55763_ + 2 o p_55764_ + a (Lcih;)Ldcb; m_5573_ + 0 o p_55746_ + f ()Ljava/lang/String; m_7705_ +cvs net/minecraft/world/level/block/RenderShape + a INVISIBLE + b ENTITYBLOCK_ANIMATED + c MODEL + d $VALUES + ()V + static + (Ljava/lang/String;I)V + 0 o p_55792_ + 1 o p_55793_ + a ()[Lcvs; m_154329_ + static + valueOf (Ljava/lang/String;)Lcvs; valueOf + static + 0 o p_55795_ + values ()[Lcvs; values + static +cvt net/minecraft/world/level/block/RepeaterBlock + a f_55797_ + d f_55798_ + ()V + static + (Ldca$d;)V + 0 o p_55801_ + a (Ldcb;Lha;Ldcb;Lcmn;Lgu;Lgu;)Ldcb; m_7417_ + 0 o p_55821_ + 1 o p_55822_ + 2 o p_55823_ + 3 o p_55824_ + 4 o p_55825_ + 5 o p_55826_ + a (Lcmp;Lgu;Ldcb;)Z m_7346_ + 0 o p_55805_ + 1 o p_55806_ + 2 o p_55807_ + a ()Z m_276978_ + a (Ldcc$a;)V m_7926_ + 0 o p_55828_ + a (Ldcb;Lcmm;Lgu;Lbyo;Lbdw;Leee;)Lbdx; m_6227_ + 0 o p_55809_ + 1 o p_55810_ + 2 o p_55811_ + 3 o p_55812_ + 4 o p_55813_ + 5 o p_55814_ + a (Lcih;)Ldcb; m_5573_ + 0 o p_55803_ + a (Ldcb;Lcmm;Lgu;Lapf;)V m_214162_ + 0 o p_221964_ + 1 o p_221965_ + 2 o p_221966_ + 3 o p_221967_ + g (Ldcb;)I m_6112_ + 0 o p_55830_ +cvu net/minecraft/world/level/block/RespawnAnchorBlock + a f_154330_ + b f_154331_ + c f_55833_ + d f_55834_ + e f_55835_ + ()V + static + (Ldca$d;)V + 0 o p_55838_ + a (Lbfn;Lclw;Lgu;Z)Ljava/util/Optional; m_55843_ + static + 0 o p_55844_ + 1 o p_55845_ + 2 o p_55846_ + 3 o p_55847_ + a (Ldcc$a;)V m_7926_ + 0 o p_55886_ + a (Lcfz;)Z m_55848_ + static + 0 o p_55849_ + a (Ldcb;Lcmm;Lgu;)I m_6782_ + 0 o p_55870_ + 1 o p_55871_ + 2 o p_55872_ + a (Lgu;Lcmm;)Z m_55887_ + static + 0 o p_55888_ + 1 o p_55889_ + a (Lbfj;Lcmm;Lgu;Ldcb;)V m_269573_ + static + 0 o p_270997_ + 1 o p_270172_ + 2 o p_270534_ + 3 o p_270661_ + a (Ldcb;Lcmm;Lgu;Lapf;)V m_214162_ + 0 o p_221969_ + 1 o p_221970_ + 2 o p_221971_ + 3 o p_221972_ + a (Lbfn;Lclw;Lgu;)Ljava/util/Optional; m_55839_ + static + 0 o p_55840_ + 1 o p_55841_ + 2 o p_55842_ + a (Ldcb;Lcls;Lgu;Ldxu;)Z m_7357_ + 0 o p_55865_ + 1 o p_55866_ + 2 o p_55867_ + 3 o p_55868_ + a (Ldcb;I)I m_55861_ + static + 0 o p_55862_ + 1 o p_55863_ + a (Ldcb;Lcmm;Lgu;Lbyo;Lbdw;Leee;)Lbdx; m_6227_ + 0 o p_55874_ + 1 o p_55875_ + 2 o p_55876_ + 3 o p_55877_ + 4 o p_55878_ + 5 o p_55879_ + a (Lcmm;)Z m_55850_ + static + 0 o p_55851_ + a (Lcmm;Lgu;)Z m_55852_ + static + 0 o p_55853_ + 1 o p_55854_ + d (Ldcb;Lcmm;Lgu;)V m_55890_ + 0 o p_55891_ + 1 o p_55892_ + 2 o p_55893_ + d_ (Ldcb;)Z m_7278_ + 0 o p_55860_ + h (Ldcb;)Z m_55894_ + static + 0 o p_55895_ +cvu$1 net/minecraft/world/level/block/RespawnAnchorBlock$1 + a f_55896_ + b f_55897_ + c f_55898_ + (Lcvu;Lgu;Z)V + 0 o p_55900_ + 1 o p_55901_ + 2 o p_55902_ + a (Lcme;Lcls;Lgu;Ldcb;Ldxe;)Ljava/util/Optional; m_6617_ + 0 o p_55904_ + 1 o p_55905_ + 2 o p_55906_ + 3 o p_55907_ + 4 o p_55908_ +cvv net/minecraft/world/level/block/RodBlock + e f_154332_ + f f_154333_ + g f_154334_ + h f_154335_ + i f_154336_ + ()V + static + (Ldca$d;)V + 0 o p_154339_ + a (Ldcb;Lcls;Lgu;Ldxu;)Z m_7357_ + 0 o p_154341_ + 1 o p_154342_ + 2 o p_154343_ + 3 o p_154344_ + a (Ldcb;Lcvz;)Ldcb; m_6843_ + 0 o p_154354_ + 1 o p_154355_ + a (Ldcb;Lcls;Lgu;Leen;)Lefb; m_5940_ + 0 o p_154346_ + 1 o p_154347_ + 2 o p_154348_ + 3 o p_154349_ + a (Ldcb;Lcui;)Ldcb; m_6943_ + 0 o p_154351_ + 1 o p_154352_ +cvv$1 net/minecraft/world/level/block/RodBlock$1 + a f_154356_ + ()V + static +cvw net/minecraft/world/level/block/RootedDirtBlock + (Ldca$d;)V + 0 o p_154359_ + a (Lcmm;Lapf;Lgu;Ldcb;)Z m_214167_ + 0 o p_221979_ + 1 o p_221980_ + 2 o p_221981_ + 3 o p_221982_ + a (Lcmp;Lgu;Ldcb;Z)Z m_7370_ + 0 o p_256100_ + 1 o p_255943_ + 2 o p_255655_ + 3 o p_256455_ + a (Laif;Lapf;Lgu;Ldcb;)V m_214148_ + 0 o p_221974_ + 1 o p_221975_ + 2 o p_221976_ + 3 o p_221977_ +cvx net/minecraft/world/level/block/RootsBlock + a f_154375_ + b f_55909_ + ()V + static + (Ldca$d;)V + 0 o p_55912_ + a (Ldcb;Lcls;Lgu;Leen;)Lefb; m_5940_ + 0 o p_55915_ + 1 o p_55916_ + 2 o p_55917_ + 3 o p_55918_ + d (Ldcb;Lcls;Lgu;)Z m_6266_ + 0 o p_55920_ + 1 o p_55921_ + 2 o p_55922_ +cvy net/minecraft/world/level/block/RotatedPillarBlock + g f_55923_ + ()V + static + (Ldca$d;)V + 0 o p_55926_ + a (Ldcb;Lcvz;)Ldcb; m_6843_ + 0 o p_55930_ + 1 o p_55931_ + a (Ldcc$a;)V m_7926_ + 0 o p_55933_ + a (Lcih;)Ldcb; m_5573_ + 0 o p_55928_ + b (Ldcb;Lcvz;)Ldcb; m_154376_ + static + 0 o p_154377_ + 1 o p_154378_ +cvy$1 net/minecraft/world/level/block/RotatedPillarBlock$1 + a f_55934_ + b f_55935_ + ()V + static +cvz net/minecraft/world/level/block/Rotation + a NONE + b CLOCKWISE_90 + c CLOCKWISE_180 + d COUNTERCLOCKWISE_90 + e f_221983_ + f f_221984_ + g f_55941_ + h $VALUES + ()V + static + (Ljava/lang/String;ILjava/lang/String;Lh;)V + 0 o p_221986_ + 1 o p_221987_ + 2 o p_221988_ + 3 o p_221989_ + a ()Lh; m_55948_ + a (Lcvz;)Lcvz; m_55952_ + 0 o p_55953_ + a (II)I m_55949_ + 0 o p_55950_ + 1 o p_55951_ + a (Lapf;)Lcvz; m_221990_ + static + 0 o p_221991_ + a (Lha;)Lha; m_55954_ + 0 o p_55955_ + b (Lapf;)Ljava/util/List; m_221992_ + static + 0 o p_221993_ + b ()[Lcvz; m_154379_ + static + c ()Ljava/lang/String; m_7912_ + valueOf (Ljava/lang/String;)Lcvz; valueOf + static + 0 o p_55961_ + values ()[Lcvz; values + static +cvz$1 net/minecraft/world/level/block/Rotation$1 + a f_55963_ + ()V + static +cw net/minecraft/advancements/critereon/SlideDownBlockTrigger + a f_66974_ + ()V + static + ()V + a (Lcom/google/gson/JsonObject;)Lcpn; m_66987_ + static + 0 o p_66988_ + a (Lacq;)Lcom/google/gson/JsonSyntaxException; m_66993_ + static + 0 o p_66994_ + a (Lcpn;Ljava/lang/String;)V m_66981_ + static + 0 o p_66982_ + 1 o p_66983_ + a (Laig;Ldcb;)V m_66978_ + 0 o p_66979_ + 1 o p_66980_ + a (Lcom/google/gson/JsonObject;Lba;Lbe;)Lcw$a; m_7214_ + 0 o p_286879_ + 1 o p_286565_ + 2 o p_286581_ + a ()Lacq; m_7295_ + a (Ldcb;Lcw$a;)Z m_66984_ + static + 0 o p_66985_ + 1 o p_66986_ + b (Lcom/google/gson/JsonObject;Lba;Lbe;)Lar; m_7214_ + 0 o p_286594_ + 1 o p_286690_ + 2 o p_286564_ +cw$a net/minecraft/advancements/critereon/SlideDownBlockTrigger$TriggerInstance + a f_67000_ + b f_67001_ + (Lba;Lcpn;Lcz;)V + 0 o p_286920_ + 1 o p_286622_ + 2 o p_286692_ + a (Lcpn;)Lcw$a; m_67006_ + static + 0 o p_67007_ + a (Lct;)Lcom/google/gson/JsonObject; m_7683_ + 0 o p_67011_ + a (Ldcb;)Z m_67008_ + 0 o p_67009_ +cwa net/minecraft/world/level/block/SandBlock + a f_55965_ + (ILdca$d;)V + 0 o p_55967_ + 1 o p_55968_ + d (Ldcb;Lcls;Lgu;)I m_6248_ + 0 o p_55970_ + 1 o p_55971_ + 2 o p_55972_ +cwb net/minecraft/world/level/block/SaplingBlock + a f_55975_ + d f_55973_ + e f_154380_ + f f_55974_ + ()V + static + (Ldbh;Ldca$d;)V + 0 o p_55978_ + 1 o p_55979_ + a (Ldcc$a;)V m_7926_ + 0 o p_56001_ + a (Lcmm;Lapf;Lgu;Ldcb;)Z m_214167_ + 0 o p_222006_ + 1 o p_222007_ + 2 o p_222008_ + 3 o p_222009_ + a (Lcmp;Lgu;Ldcb;Z)Z m_7370_ + 0 o p_256124_ + 1 o p_55992_ + 2 o p_55993_ + 3 o p_55994_ + a (Ldcb;Lcls;Lgu;Leen;)Lefb; m_5940_ + 0 o p_56008_ + 1 o p_56009_ + 2 o p_56010_ + 3 o p_56011_ + a (Laif;Lapf;Lgu;Ldcb;)V m_214148_ + 0 o p_221996_ + 1 o p_221997_ + 2 o p_221998_ + 3 o p_221999_ + a (Laif;Lgu;Ldcb;Lapf;)V m_222000_ + 0 o p_222001_ + 1 o p_222002_ + 2 o p_222003_ + 3 o p_222004_ + b (Ldcb;Laif;Lgu;Lapf;)V m_213898_ + 0 o p_222011_ + 1 o p_222012_ + 2 o p_222013_ + 3 o p_222014_ +cwc net/minecraft/world/level/block/ScaffoldingBlock + a f_154381_ + b f_56012_ + c f_56013_ + d f_56014_ + e f_154382_ + f f_56015_ + g f_56016_ + h f_56017_ + i f_56018_ + ()V + static + (Ldca$d;)V + 0 o p_56021_ + a (Ldcb;Lha;Ldcb;Lcmn;Lgu;Lgu;)Ldcb; m_7417_ + 0 o p_56044_ + 1 o p_56045_ + 2 o p_56046_ + 3 o p_56047_ + 4 o p_56048_ + 5 o p_56049_ + a (Ldcc$a;)V m_7926_ + 0 o p_56051_ + a (Ldcb;Laif;Lgu;Lapf;)V m_213897_ + 0 o p_222019_ + 1 o p_222020_ + 2 o p_222021_ + 3 o p_222022_ + a (Ldcb;Lcls;Lgu;Leen;)Lefb; m_5940_ + 0 o p_56057_ + 1 o p_56058_ + 2 o p_56059_ + 3 o p_56060_ + a (Ldcb;Lcih;)Z m_6864_ + 0 o p_56037_ + 1 o p_56038_ + a (Lcls;Lgu;)I m_56024_ + static + 0 o p_56025_ + 1 o p_56026_ + a (Ldcb;Lcls;Lgu;)Lefb; m_6079_ + 0 o p_56053_ + 1 o p_56054_ + 2 o p_56055_ + a (Ldcb;Lcmp;Lgu;)Z m_7898_ + 0 o p_56040_ + 1 o p_56041_ + 2 o p_56042_ + a (Lcih;)Ldcb; m_5573_ + 0 o p_56023_ + a (Lcls;Lgu;I)Z m_56027_ + 0 o p_56028_ + 1 o p_56029_ + 2 o p_56030_ + b (Ldcb;Lcmm;Lgu;Ldcb;Z)V m_6807_ + 0 o p_56062_ + 1 o p_56063_ + 2 o p_56064_ + 3 o p_56065_ + 4 o p_56066_ + c (Ldcb;Lcls;Lgu;Leen;)Lefb; m_5939_ + 0 o p_56068_ + 1 o p_56069_ + 2 o p_56070_ + 3 o p_56071_ + c_ (Ldcb;)Ldxe; m_5888_ + 0 o p_56073_ +cwd net/minecraft/world/level/block/SculkBehaviour + t_ f_222023_ + ()V + static + a (Lcmn;Lgu;Lapf;)Z m_222030_ + 0 o p_222031_ + 1 o p_222032_ + 2 o p_222033_ + a (Lcmn;Lgu;Ldcb;Ljava/util/Collection;Z)Z m_214094_ + 0 o p_222034_ + 1 o p_222035_ + 2 o p_222036_ + 3 o p_222037_ + 4 o p_222038_ + a ()B m_222025_ + a (Lcmn;Ldcb;Lgu;Lapf;)V m_213805_ + 0 o p_222026_ + 1 o p_222027_ + 2 o p_222028_ + 3 o p_222029_ + a (Lcwi$a;Lcmn;Lgu;Lapf;Lcwi;Z)I m_213628_ + 0 o p_222039_ + 1 o p_222040_ + 2 o p_222041_ + 3 o p_222042_ + 4 o p_222043_ + 5 o p_222044_ + c ()Z m_213999_ + i_ (I)I m_213670_ + 0 o p_222045_ +cwd$1 net/minecraft/world/level/block/SculkBehaviour$1 + ()V + a (Lcmn;Lgu;Ldcb;Ljava/util/Collection;Z)Z m_214094_ + 0 o p_222048_ + 1 o p_222049_ + 2 o p_222050_ + 3 o p_222051_ + 4 o p_222052_ + a (Lcwi$a;Lcmn;Lgu;Lapf;Lcwi;Z)I m_213628_ + 0 o p_222054_ + 1 o p_222055_ + 2 o p_222056_ + 3 o p_222057_ + 4 o p_222058_ + 5 o p_222059_ + i_ (I)I m_213670_ + 0 o p_222061_ +cwe net/minecraft/world/level/block/SculkBlock + (Ldca$d;)V + 0 o p_222063_ + a (Lcmn;Lgu;)Z m_222064_ + static + 0 o p_222065_ + 1 o p_222066_ + a (Lcmn;Lgu;Lapf;Z)Ldcb; m_222067_ + 0 o p_222068_ + 1 o p_222069_ + 2 o p_222070_ + 3 o p_222071_ + a (Lcwi;Lgu;Lgu;I)I m_222079_ + static + 0 o p_222080_ + 1 o p_222081_ + 2 o p_222082_ + 3 o p_222083_ + a (Lcwi$a;Lcmn;Lgu;Lapf;Lcwi;Z)I m_213628_ + 0 o p_222073_ + 1 o p_222074_ + 2 o p_222075_ + 3 o p_222076_ + 4 o p_222077_ + 5 o p_222078_ + c ()Z m_213999_ +cwf net/minecraft/world/level/block/SculkCatalystBlock + a f_222086_ + b f_222087_ + ()V + static + (Ldca$d;)V + 0 o p_222090_ + a (Ldcb;Laif;Lgu;Lcfz;Z)V m_213646_ + 0 o p_222109_ + 1 o p_222110_ + 2 o p_222111_ + 3 o p_222112_ + 4 o p_222113_ + a (Ldcc$a;)V m_7926_ + 0 o p_222115_ + a (Ldcb;Laif;Lgu;Lapf;)V m_213897_ + 0 o p_222104_ + 1 o p_222105_ + 2 o p_222106_ + 3 o p_222107_ + a (Lgu;Ldcb;)Lczn; m_142194_ + 0 o p_222117_ + 1 o p_222118_ + a (Lcmm;Ldcb;Lczp;)Lczo; m_142354_ + 0 o p_222100_ + 1 o p_222101_ + 2 o p_222102_ + b_ (Ldcb;)Lcvs; m_7514_ + 0 o p_222120_ +cwg net/minecraft/world/level/block/SculkSensorBlock + a f_276565_ + b f_154383_ + c f_154384_ + d f_154386_ + e f_154387_ + f f_154388_ + g f_154389_ + ()V + static + (Ldca$d;)V + 0 o p_277588_ + a (Ldcb;Lcmm;Lgu;Ldcb;Z)V m_6810_ + 0 o p_154446_ + 1 o p_154447_ + 2 o p_154448_ + 3 o p_154449_ + 4 o p_154450_ + a (Lcmm;Lgu;Ldcb;Ldas;)V m_279962_ + static + 0 o p_281130_ + 1 o p_281131_ + 2 o p_281132_ + 3 o p_281133_ + a (Ldcb;Lcmm;Lgu;)I m_6782_ + 0 o p_154442_ + 1 o p_154443_ + 2 o p_154444_ + a (Lcmm;Lgu;Ldcb;)V m_154407_ + static + 0 o p_154408_ + 1 o p_154409_ + 2 o p_154410_ + a (Ldcb;Laif;Lgu;Lcfz;Z)V m_213646_ + 0 o p_222142_ + 1 o p_222143_ + 2 o p_222144_ + 3 o p_222145_ + 4 o p_222146_ + a (Lbfj;Lcmm;Lgu;I)V m_277083_ + static + 0 o p_279315_ + 1 o p_277804_ + 2 o p_277458_ + 3 o p_277347_ + a ([F)V m_276749_ + static + 0 o p_277301_ + a (Lcmm;Ldcb;Lczp;)Lczo; m_142354_ + 0 o p_154401_ + 1 o p_154402_ + 2 o p_154403_ + a (Ldcb;Lha;Ldcb;Lcmn;Lgu;Lgu;)Ldcb; m_7417_ + 0 o p_154457_ + 1 o p_154458_ + 2 o p_154459_ + 3 o p_154460_ + 4 o p_154461_ + 5 o p_154462_ + a (Ldcb;Lcls;Lgu;Lha;)I m_6378_ + 0 o p_154437_ + 1 o p_154438_ + 2 o p_154439_ + 3 o p_154440_ + a (Ldcc$a;)V m_7926_ + 0 o p_154464_ + a (Ldcb;Laif;Lgu;Lapf;)V m_213897_ + 0 o p_222137_ + 1 o p_222138_ + 2 o p_222139_ + 3 o p_222140_ + a (Ldcb;Lcls;Lgu;Leen;)Lefb; m_5940_ + 0 o p_154432_ + 1 o p_154433_ + 2 o p_154434_ + 3 o p_154435_ + a (Ldcb;Lcmm;Lgu;Lapf;)V m_214162_ + 0 o p_222148_ + 1 o p_222149_ + 2 o p_222150_ + 3 o p_222151_ + a (Ldcb;Lcls;Lgu;Ldxu;)Z m_7357_ + 0 o p_154427_ + 1 o p_154428_ + 2 o p_154429_ + 3 o p_154430_ + a (Lbfj;Lcmm;Lgu;Ldcb;II)V m_277033_ + 0 o p_277529_ + 1 o p_277340_ + 2 o p_277386_ + 3 o p_277799_ + 4 o p_277993_ + 5 o p_278003_ + a (Lcih;)Ldcb; m_5573_ + 0 o p_154396_ + a (Lgu;Ldcb;)Lczn; m_142194_ + 0 o p_154466_ + 1 o p_154467_ + a (Lcmm;Lgu;Ldcb;Lbfj;)V m_141947_ + 0 o p_222132_ + 1 o p_222133_ + 2 o p_222134_ + 3 o p_222135_ + b (Lcmm;Lgu;Ldcb;)V m_276869_ + static + 0 o p_278067_ + 1 o p_277440_ + 2 o p_277354_ + b (Ldcb;Lcls;Lgu;Lha;)I m_6376_ + 0 o p_279407_ + 1 o p_279217_ + 2 o p_279190_ + 3 o p_279273_ + b (Ldcb;Lcmm;Lgu;Ldcb;Z)V m_6807_ + 0 o p_154471_ + 1 o p_154472_ + 2 o p_154473_ + 3 o p_154474_ + 4 o p_154475_ + b ()I m_278716_ + b_ (Ldcb;)Lcvs; m_7514_ + 0 o p_154477_ + c_ (Ldcb;)Ldxe; m_5888_ + 0 o p_154479_ + d_ (Ldcb;)Z m_7278_ + 0 o p_154481_ + f_ (Ldcb;)Z m_7899_ + 0 o p_154484_ + g_ (Ldcb;)Z m_7923_ + 0 o p_154486_ + h (Ldcb;)Lddi; m_154487_ + static + 0 o p_154488_ + n (Ldcb;)Z m_154489_ + static + 0 o p_154490_ +cwh net/minecraft/world/level/block/SculkShriekerBlock + a f_222152_ + b f_222153_ + c f_222154_ + d f_222155_ + e f_222156_ + ()V + static + (Ldca$d;)V + 0 o p_222159_ + a (Ldcb;Lha;Ldcb;Lcmn;Lgu;Lgu;)Ldcb; m_7417_ + 0 o p_222204_ + 1 o p_222205_ + 2 o p_222206_ + 3 o p_222207_ + 4 o p_222208_ + 5 o p_222209_ + a (Laif;Ldat;)V m_222167_ + static + 0 o p_222168_ + 1 o p_222169_ + a (Ldcc$a;)V m_7926_ + 0 o p_222211_ + a (Ldcb;Lcmm;Lgu;Ldcb;Z)V m_6810_ + 0 o p_222198_ + 1 o p_222199_ + 2 o p_222200_ + 3 o p_222201_ + 4 o p_222202_ + a (Ldcb;Laif;Lgu;Lapf;)V m_213897_ + 0 o p_222187_ + 1 o p_222188_ + 2 o p_222189_ + 3 o p_222190_ + a (Lcmm;Lgu;Ldcb;Ldat;)V m_279963_ + static + 0 o p_281134_ + 1 o p_281135_ + 2 o p_281136_ + 3 o p_281137_ + a (Laif;Laig;Ldat;)V m_222160_ + static + 0 o p_222161_ + 1 o p_222162_ + 2 o p_222163_ + a (Ldcb;Laif;Lgu;Lcfz;Z)V m_213646_ + 0 o p_222192_ + 1 o p_222193_ + 2 o p_222194_ + 3 o p_222195_ + 4 o p_222196_ + a (Lcih;)Ldcb; m_5573_ + 0 o p_222171_ + a (Lgu;Ldcb;)Lczn; m_142194_ + 0 o p_222213_ + 1 o p_222214_ + a (Lcmm;Ldcb;Lczp;)Lczo; m_142354_ + 0 o p_222173_ + 1 o p_222174_ + 2 o p_222175_ + a (Lcmm;Lgu;Ldcb;Lbfj;)V m_141947_ + 0 o p_222177_ + 1 o p_222178_ + 2 o p_222179_ + 3 o p_222180_ + b (Laif;Ldat;)V m_222215_ + static + 0 o p_222216_ + 1 o p_222217_ + b_ (Ldcb;)Lcvs; m_7514_ + 0 o p_222219_ + c (Ldcb;Lcls;Lgu;Leen;)Lefb; m_5939_ + 0 o p_222225_ + 1 o p_222226_ + 2 o p_222227_ + 3 o p_222228_ + c_ (Ldcb;)Ldxe; m_5888_ + 0 o p_222230_ + f (Ldcb;Lcls;Lgu;)Lefb; m_7952_ + 0 o p_222221_ + 1 o p_222222_ + 2 o p_222223_ + g_ (Ldcb;)Z m_7923_ + 0 o p_222232_ +cwi net/minecraft/world/level/block/SculkSpreader + a f_222233_ + b f_222234_ + c f_222235_ + d f_222236_ + e f_222237_ + f f_222238_ + g f_222239_ + h f_222240_ + i f_222241_ + j f_222242_ + k f_222243_ + l f_222244_ + m f_222245_ + ()V + static + (ZLanl;IIII)V + 0 o p_222248_ + 1 o p_222249_ + 2 o p_222250_ + 3 o p_222251_ + 4 o p_222252_ + 5 o p_222253_ + a (Lgu;I)V m_222266_ + 0 o p_222267_ + 1 o p_222268_ + a (Lqr;)V m_222269_ + 0 o p_222270_ + a (Lcwi$a;Lgu;Ljava/lang/Integer;)Ljava/lang/Integer; m_222262_ + static + 0 o p_222263_ + 1 o p_222264_ + 2 o p_222265_ + a ()Lcwi; m_222254_ + static + a (Lqr;Lrk;)V m_222271_ + static + 0 o p_222272_ + 1 o p_222273_ + a (Lcmn;Lgu;Lapf;Z)V m_222255_ + 0 o p_222256_ + 1 o p_222257_ + 2 o p_222258_ + 3 o p_222259_ + a (Lcwi$a;)V m_222260_ + 0 o p_222261_ + b (Lcwi$a;)Ljava/lang/Integer; m_279964_ + static + 0 o p_281138_ + b (Lqr;)V m_222275_ + 0 o p_222276_ + b ()Lcwi; m_222274_ + static + c ()Lanl; m_222277_ + d ()I m_222278_ + e ()I m_222279_ + f ()I m_222280_ + g ()I m_222281_ + h ()Z m_222282_ + i ()Ljava/util/List; m_222283_ + j ()V m_222284_ +cwi$a net/minecraft/world/level/block/SculkSpreader$ChargeCursor + a f_222285_ + b f_222286_ + c f_222287_ + d f_222288_ + e f_222289_ + f f_222290_ + g f_222291_ + h f_222292_ + i f_222293_ + ()V + static + (Lgu;I)V + 0 o p_222296_ + 1 o p_222297_ + (Lgu;IIILjava/util/Optional;)V + 0 o p_222299_ + 1 o p_222300_ + 2 o p_222301_ + 3 o p_222302_ + 4 o p_222303_ + a (Ldcb;)Lcwd; m_222333_ + static + 0 o p_222334_ + a (Lit/unimi/dsi/fastutil/objects/ObjectArrayList;)V m_222337_ + static + 0 o p_222338_ + a (Lcmn;Lgu;Z)Z m_222325_ + 0 o p_222326_ + 1 o p_222327_ + 2 o p_222328_ + a (Lcmn;Lgu;Lapf;)Lgu; m_222307_ + static + 0 o p_222308_ + 1 o p_222309_ + 2 o p_222310_ + a (Lgu;)Z m_222335_ + static + 0 o p_222336_ + a ()Lgu; m_222304_ + a (Lcmn;Lgu;Lgu;)Z m_222317_ + static + 0 o p_222318_ + 1 o p_222319_ + 2 o p_222320_ + a (Ljava/util/List;)Ljava/util/Set; m_222339_ + static + 0 o p_222340_ + a (Lcmn;Lgu;Lha;)Z m_222321_ + static + 0 o p_222322_ + 1 o p_222323_ + 2 o p_222324_ + a (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; m_222329_ + static + 0 o p_222330_ + a (Lcwi$a;)V m_222331_ + 0 o p_222332_ + a (Lapf;)Ljava/util/List; m_222305_ + static + 0 o p_222306_ + a (Lcmn;Lgu;Lapf;Lcwi;Z)V m_222311_ + 0 o p_222312_ + 1 o p_222313_ + 2 o p_222314_ + 3 o p_222315_ + 4 o p_222316_ + b (Lcwi$a;)Ljava/util/Optional; m_222342_ + static + 0 o p_222343_ + b ()I m_222341_ + c ()I m_222344_ + c (Lcwi$a;)Ljava/lang/Integer; m_222345_ + static + 0 o p_222346_ + d ()Ljava/util/Set; m_222347_ +cwj net/minecraft/world/level/block/SculkVeinBlock + b f_222348_ + c f_222349_ + d f_222350_ + ()V + static + (Ldca$d;)V + 0 o p_222353_ + a (Ldcb;Lha;Ldcb;Lcmn;Lgu;Lgu;)Ldcb; m_7417_ + 0 o p_222384_ + 1 o p_222385_ + 2 o p_222386_ + 3 o p_222387_ + 4 o p_222388_ + 5 o p_222389_ + a (Lcwi;Lcmn;Lgu;Lapf;)Z m_222375_ + 0 o p_222376_ + 1 o p_222377_ + 2 o p_222378_ + 3 o p_222379_ + a (Ldcc$a;)V m_7926_ + 0 o p_222391_ + a (Ldcb;Lcih;)Z m_6864_ + 0 o p_222381_ + 1 o p_222382_ + a (Lcmn;Lgu;Ldcb;Ljava/util/Collection;)Z m_222363_ + static + 0 o p_222364_ + 1 o p_222365_ + 2 o p_222366_ + 3 o p_222367_ + a (Lcmn;Ldcb;Lgu;Lapf;)V m_213805_ + 0 o p_222359_ + 1 o p_222360_ + 2 o p_222361_ + 3 o p_222362_ + a (Lcmn;Ldcb;Lgu;)Z m_222354_ + static + 0 o p_222355_ + 1 o p_222356_ + 2 o p_222357_ + a (Lcwi$a;Lcmn;Lgu;Lapf;Lcwi;Z)I m_213628_ + 0 o p_222369_ + 1 o p_222370_ + 2 o p_222371_ + 3 o p_222372_ + 4 o p_222373_ + 5 o p_222374_ + b ()Lcum; m_213612_ + c_ (Ldcb;)Ldxe; m_5888_ + 0 o p_222394_ + g ()Lcum; m_222395_ +cwj$a net/minecraft/world/level/block/SculkVeinBlock$SculkVeinSpreaderConfig + b f_222398_ + c f_222399_ + (Lcwj;[Lcum$e;)V + 0 o p_222401_ + 1 o p_222402_ + a (Ldcb;)Z m_214107_ + 0 o p_222411_ + a (Lcls;Lgu;Lgu;Lha;Ldcb;)Z m_213938_ + 0 o p_222405_ + 1 o p_222406_ + 2 o p_222407_ + 3 o p_222408_ + 4 o p_222409_ + a ()[Lcum$e; m_214109_ +cwk net/minecraft/world/level/block/SeaPickleBlock + a f_154491_ + b f_56074_ + c f_56075_ + d f_56076_ + e f_56077_ + f f_56078_ + g f_56079_ + ()V + static + (Ldca$d;)V + 0 o p_56082_ + a (Ldcb;Lha;Ldcb;Lcmn;Lgu;Lgu;)Ldcb; m_7417_ + 0 o p_56113_ + 1 o p_56114_ + 2 o p_56115_ + 3 o p_56116_ + 4 o p_56117_ + 5 o p_56118_ + a (Ldcc$a;)V m_7926_ + 0 o p_56120_ + a (Lcmp;Lgu;Ldcb;Z)Z m_7370_ + 0 o p_255984_ + 1 o p_56092_ + 2 o p_56093_ + 3 o p_56094_ + a (Ldcb;Lcls;Lgu;Leen;)Lefb; m_5940_ + 0 o p_56122_ + 1 o p_56123_ + 2 o p_56124_ + 3 o p_56125_ + a (Ldcb;Lcih;)Z m_6864_ + 0 o p_56101_ + 1 o p_56102_ + a (Laif;Lapf;Lgu;Ldcb;)V m_214148_ + 0 o p_222413_ + 1 o p_222414_ + 2 o p_222415_ + 3 o p_222416_ + a (Ldcb;Lcls;Lgu;Ldxu;)Z m_7357_ + 0 o p_56104_ + 1 o p_56105_ + 2 o p_56106_ + 3 o p_56107_ + a (Ldcb;Lcmp;Lgu;)Z m_7898_ + 0 o p_56109_ + 1 o p_56110_ + 2 o p_56111_ + a (Lcmm;Lapf;Lgu;Ldcb;)Z m_214167_ + 0 o p_222418_ + 1 o p_222419_ + 2 o p_222420_ + 3 o p_222421_ + a (Lcih;)Ldcb; m_5573_ + 0 o p_56089_ + c_ (Ldcb;)Ldxe; m_5888_ + 0 o p_56131_ + d (Ldcb;Lcls;Lgu;)Z m_6266_ + 0 o p_56127_ + 1 o p_56128_ + 2 o p_56129_ + h (Ldcb;)Z m_56132_ + static + 0 o p_56133_ +cwl net/minecraft/world/level/block/SeagrassBlock + a f_154492_ + b f_154493_ + ()V + static + (Ldca$d;)V + 0 o p_154496_ + a (Ldcb;Lha;Ldcb;Lcmn;Lgu;Lgu;)Ldcb; m_7417_ + 0 o p_154530_ + 1 o p_154531_ + 2 o p_154532_ + 3 o p_154533_ + 4 o p_154534_ + 5 o p_154535_ + a (Lcls;Lgu;Ldcb;Ldxd;)Z m_6044_ + 0 o p_154505_ + 1 o p_154506_ + 2 o p_154507_ + 3 o p_154508_ + a (Lcmm;Lapf;Lgu;Ldcb;)Z m_214167_ + 0 o p_222428_ + 1 o p_222429_ + 2 o p_222430_ + 3 o p_222431_ + a (Lcih;)Ldcb; m_5573_ + 0 o p_154503_ + a (Lcmp;Lgu;Ldcb;Z)Z m_7370_ + 0 o p_255857_ + 1 o p_154511_ + 2 o p_154512_ + 3 o p_154513_ + a (Ldcb;Lcls;Lgu;Leen;)Lefb; m_5940_ + 0 o p_154525_ + 1 o p_154526_ + 2 o p_154527_ + 3 o p_154528_ + a (Laif;Lapf;Lgu;Ldcb;)V m_214148_ + 0 o p_222423_ + 1 o p_222424_ + 2 o p_222425_ + 3 o p_222426_ + a (Lcmn;Lgu;Ldcb;Ldxe;)Z m_7361_ + 0 o p_154520_ + 1 o p_154521_ + 2 o p_154522_ + 3 o p_154523_ + c_ (Ldcb;)Ldxe; m_5888_ + 0 o p_154537_ + d (Ldcb;Lcls;Lgu;)Z m_6266_ + 0 o p_154539_ + 1 o p_154540_ + 2 o p_154541_ +cwm net/minecraft/world/level/block/ShulkerBoxBlock + a f_56183_ + b f_56184_ + c f_256820_ + d f_256853_ + e f_256795_ + f f_256800_ + g f_257037_ + h f_256867_ + i f_256794_ + j f_256830_ + k f_56185_ + ()V + static + (Lcen;Ldca$d;)V + 0 o p_56188_ + 1 o p_56189_ + a (Ldcb;Lcmm;Lgu;Ldcb;Z)V m_6810_ + 0 o p_56234_ + 1 o p_56235_ + 2 o p_56236_ + 3 o p_56237_ + 4 o p_56238_ + a ()Lcen; m_56261_ + a (Ldcb;Lcmm;Lgu;)I m_6782_ + 0 o p_56223_ + 1 o p_56224_ + 2 o p_56225_ + a (Ldcb;Lcui;)Ldcb; m_6943_ + 0 o p_56240_ + 1 o p_56241_ + a (Ldau;Ljava/util/function/Consumer;)V m_56216_ + static + 0 o p_56217_ + 1 o p_56219_ + a (Ldcb;Ldzq$a;)Ljava/util/List; m_49635_ + 0 o p_287632_ + 1 o p_287691_ + a (Lcls;Lgu;Ldcb;)Lcfz; m_7397_ + 0 o p_56202_ + 1 o p_56203_ + 2 o p_56204_ + a (Lcmm;Ldcb;Lczp;)Lczo; m_142354_ + 0 o p_154543_ + 1 o p_154544_ + 2 o p_154545_ + a (Lcfz;Lcls;Ljava/util/List;Lchq;)V m_5871_ + 0 o p_56193_ + 1 o p_56194_ + 2 o p_56195_ + 3 o p_56196_ + a (Ldcb;Lcvz;)Ldcb; m_6843_ + 0 o p_56243_ + 1 o p_56244_ + a (Ldcc$a;)V m_7926_ + 0 o p_56249_ + a (Ljava/util/EnumMap;)V m_257328_ + static + 0 o p_258974_ + a (Lcen;)Lcpn; m_56190_ + static + 0 o p_56191_ + a (Lcmm;Lgu;Ldcb;Lbfz;Lcfz;)V m_6402_ + 0 o p_56206_ + 1 o p_56207_ + 2 o p_56208_ + 3 o p_56209_ + 4 o p_56210_ + a (Ldcb;Lcls;Lgu;Leen;)Lefb; m_5940_ + 0 o p_56257_ + 1 o p_56258_ + 2 o p_56259_ + 3 o p_56260_ + a (Lcfz;Ldau;)V m_187444_ + static + 0 o p_187445_ + 1 o p_187446_ + a (Lcmm;Lgu;Ldcb;Lbyo;)V m_5707_ + 0 o p_56212_ + 1 o p_56213_ + 2 o p_56214_ + 3 o p_56215_ + a (Ldcb;Lcmm;Lgu;Lbyo;Lbdw;Leee;)Lbdx; m_6227_ + 0 o p_56227_ + 1 o p_56228_ + 2 o p_56229_ + 3 o p_56230_ + 4 o p_56231_ + 5 o p_56232_ + a (Ldcb;Lcmm;Lgu;Ldau;)Z m_154546_ + static + 0 o p_154547_ + 1 o p_154548_ + 2 o p_154549_ + 3 o p_154550_ + a (Lcpn;)Lcen; m_56262_ + static + 0 o p_56263_ + a (Lcih;)Ldcb; m_5573_ + 0 o p_56198_ + a (Lgu;Ldcb;)Lczn; m_142194_ + 0 o p_154552_ + 1 o p_154553_ + b (Lcfu;)Lcen; m_56252_ + static + 0 o p_56253_ + b (Lcen;)Lcfz; m_56250_ + static + 0 o p_56251_ + b_ (Ldcb;Lcls;Lgu;)Lefb; m_7947_ + 0 o p_259177_ + 1 o p_260305_ + 2 o p_259168_ + b_ (Ldcb;)Lcvs; m_7514_ + 0 o p_56255_ + d_ (Ldcb;)Z m_7278_ + 0 o p_56221_ +cwm$1 net/minecraft/world/level/block/ShulkerBoxBlock$1 + a f_56266_ + ()V + static +cwn net/minecraft/world/level/block/SignBlock + a f_56270_ + e f_56268_ + f f_154554_ + g f_56269_ + ()V + static + (Ldca$d;Lddo;)V + 0 o p_56273_ + 1 o p_56274_ + a (Ldcb;Lha;Ldcb;Lcmn;Lgu;Lgu;)Ldcb; m_7417_ + 0 o p_56285_ + 1 o p_56286_ + 2 o p_56287_ + 3 o p_56288_ + 4 o p_56289_ + 5 o p_56290_ + a (Lsw;)Z m_278727_ + static + 0 o p_279411_ + a (Lcpn;)Lddo; m_247329_ + static + 0 o p_251096_ + a (Lbyo;Ldav;)Z m_277189_ + 0 o p_277952_ + 1 o p_277599_ + a (Ldcb;Lcls;Lgu;Leen;)Lefb; m_5940_ + 0 o p_56293_ + 1 o p_56294_ + 2 o p_56295_ + 3 o p_56296_ + a (Lbyo;Ldav;Z)V m_276926_ + 0 o p_277738_ + 1 o p_277467_ + 2 o p_277771_ + a (Ldcb;)Z m_48673_ + 0 o p_279137_ + a (Ldcb;Lcmm;Lgu;Lbyo;Lbdw;Leee;)Lbdx; m_6227_ + 0 o p_56278_ + 1 o p_56279_ + 2 o p_56280_ + 3 o p_56281_ + 4 o p_56282_ + 5 o p_56283_ + a (Lgu;Ldcb;)Lczn; m_142194_ + 0 o p_154556_ + 1 o p_154557_ + a (Lcmm;Ldcb;Lczp;)Lczo; m_142354_ + 0 o p_277367_ + 1 o p_277896_ + 2 o p_277724_ + b (Lbyo;Ldav;Z)Z m_278656_ + 0 o p_279394_ + 1 o p_279187_ + 2 o p_279225_ + c ()Lddo; m_56297_ + c_ (Ldcb;)Ldxe; m_5888_ + 0 o p_56299_ + g (Ldcb;)F m_276903_ + 0 o p_277705_ + h (Ldcb;)Leei; m_278172_ + 0 o p_278294_ +cwo net/minecraft/world/level/block/SimpleWaterloggedBlock + a (Lcls;Lgu;Ldcb;Ldxd;)Z m_6044_ + 0 o p_56301_ + 1 o p_56302_ + 2 o p_56303_ + 3 o p_56304_ + a (Lcmn;Lgu;Ldcb;Ldxe;)Z m_7361_ + 0 o p_56306_ + 1 o p_56307_ + 2 o p_56308_ + 3 o p_56309_ + am_ ()Ljava/util/Optional; m_142298_ + c (Lcmn;Lgu;Ldcb;)Lcfz; m_142598_ + 0 o p_154560_ + 1 o p_154561_ + 2 o p_154562_ +cwp net/minecraft/world/level/block/SkullBlock + a f_154563_ + b f_56314_ + c f_56315_ + d f_260503_ + e f_154564_ + ()V + static + (Lcwp$a;Ldca$d;)V + 0 o p_56318_ + 1 o p_56319_ + a (Ldcb;Lcvz;)Ldcb; m_6843_ + 0 o p_56326_ + 1 o p_56327_ + a (Ldcc$a;)V m_7926_ + 0 o p_56329_ + a (Lcih;)Ldcb; m_5573_ + 0 o p_56321_ + a (Ldcb;Lcls;Lgu;Leen;)Lefb; m_5940_ + 0 o p_56331_ + 1 o p_56332_ + 2 o p_56333_ + 3 o p_56334_ + a (Ldcb;Lcui;)Ldcb; m_6943_ + 0 o p_56323_ + 1 o p_56324_ + f (Ldcb;Lcls;Lgu;)Lefb; m_7952_ + 0 o p_56336_ + 1 o p_56337_ + 2 o p_56338_ +cwp$a net/minecraft/world/level/block/SkullBlock$Type +cwp$b net/minecraft/world/level/block/SkullBlock$Types + a SKELETON + b WITHER_SKELETON + c PLAYER + d ZOMBIE + e CREEPER + f PIGLIN + g DRAGON + h $VALUES + ()V + static + (Ljava/lang/String;I)V + 0 o p_56348_ + 1 o p_56349_ + a ()[Lcwp$b; m_154565_ + static + valueOf (Ljava/lang/String;)Lcwp$b; valueOf + static + 0 o p_56351_ + values ()[Lcwp$b; values + static +cwq net/minecraft/world/level/block/SlabBlock + a f_56353_ + b f_56354_ + c f_56355_ + d f_56356_ + ()V + static + (Ldca$d;)V + 0 o p_56359_ + a (Ldcb;Lha;Ldcb;Lcmn;Lgu;Lgu;)Ldcb; m_7417_ + 0 o p_56381_ + 1 o p_56382_ + 2 o p_56383_ + 3 o p_56384_ + 4 o p_56385_ + 5 o p_56386_ + a (Ldcb;Lcls;Lgu;Ldxu;)Z m_7357_ + 0 o p_56376_ + 1 o p_56377_ + 2 o p_56378_ + 3 o p_56379_ + a (Ldcc$a;)V m_7926_ + 0 o p_56388_ + a (Lcls;Lgu;Ldcb;Ldxd;)Z m_6044_ + 0 o p_56363_ + 1 o p_56364_ + 2 o p_56365_ + 3 o p_56366_ + a (Lcih;)Ldcb; m_5573_ + 0 o p_56361_ + a (Ldcb;Lcls;Lgu;Leen;)Lefb; m_5940_ + 0 o p_56390_ + 1 o p_56391_ + 2 o p_56392_ + 3 o p_56393_ + a (Ldcb;Lcih;)Z m_6864_ + 0 o p_56373_ + 1 o p_56374_ + a (Lcmn;Lgu;Ldcb;Ldxe;)Z m_7361_ + 0 o p_56368_ + 1 o p_56369_ + 2 o p_56370_ + 3 o p_56371_ + c_ (Ldcb;)Ldxe; m_5888_ + 0 o p_56397_ + g_ (Ldcb;)Z m_7923_ + 0 o p_56395_ +cwq$1 net/minecraft/world/level/block/SlabBlock$1 + a f_56398_ + b f_56399_ + ()V + static +cwr net/minecraft/world/level/block/SlimeBlock + (Ldca$d;)V + 0 o p_56402_ + a (Lbfj;)V m_56403_ + 0 o p_56404_ + a (Lcmm;Ldcb;Lgu;Lbfj;F)V m_142072_ + 0 o p_154567_ + 1 o p_154568_ + 2 o p_154569_ + 3 o p_154570_ + 4 o p_154571_ + a (Lcls;Lbfj;)V m_5548_ + 0 o p_56406_ + 1 o p_56407_ + a (Lcmm;Lgu;Ldcb;Lbfj;)V m_141947_ + 0 o p_154573_ + 1 o p_154574_ + 2 o p_154575_ + 3 o p_154576_ +cws net/minecraft/world/level/block/SmallDripleafBlock + b f_154577_ + c f_154578_ + d f_154579_ + e f_154580_ + ()V + static + (Ldca$d;)V + 0 o p_154583_ + a (Ldcb;Lha;Ldcb;Lcmn;Lgu;Lgu;)Ldcb; m_7417_ + 0 o p_154625_ + 1 o p_154626_ + 2 o p_154627_ + 3 o p_154628_ + 4 o p_154629_ + 5 o p_154630_ + a (Ldcb;Lcvz;)Ldcb; m_6843_ + 0 o p_154622_ + 1 o p_154623_ + a (Ldcc$a;)V m_7926_ + 0 o p_154632_ + a (Lcmp;Lgu;Ldcb;Z)Z m_7370_ + 0 o p_255772_ + 1 o p_154595_ + 2 o p_154596_ + 3 o p_154597_ + a (Ldcb;Lcls;Lgu;Leen;)Lefb; m_5940_ + 0 o p_154610_ + 1 o p_154611_ + 2 o p_154612_ + 3 o p_154613_ + a (Lcmm;Lgu;Ldcb;Lbfz;Lcfz;)V m_6402_ + 0 o p_154599_ + 1 o p_154600_ + 2 o p_154601_ + 3 o p_154602_ + 4 o p_154603_ + a (Ldcb;Lcui;)Ldcb; m_6943_ + 0 o p_154619_ + 1 o p_154620_ + a (Laif;Lapf;Lgu;Ldcb;)V m_214148_ + 0 o p_222433_ + 1 o p_222434_ + 2 o p_222435_ + 3 o p_222436_ + a (Ldcb;Lcmp;Lgu;)Z m_7898_ + 0 o p_154615_ + 1 o p_154616_ + 2 o p_154617_ + a (Lcmm;Lapf;Lgu;Ldcb;)Z m_214167_ + 0 o p_222438_ + 1 o p_222439_ + 2 o p_222440_ + 3 o p_222441_ + a (Lcih;)Ldcb; m_5573_ + 0 o p_154592_ + an_ ()F m_142627_ + c_ (Ldcb;)Ldxe; m_5888_ + 0 o p_154634_ + d (Ldcb;Lcls;Lgu;)Z m_6266_ + 0 o p_154636_ + 1 o p_154637_ + 2 o p_154638_ +cwt net/minecraft/world/level/block/SmithingTableBlock + a f_56417_ + ()V + static + (Ldca$d;)V + 0 o p_56420_ + a (Ldcb;Lcmm;Lgu;Lbyo;Lbdw;Leee;)Lbdx; m_6227_ + 0 o p_56428_ + 1 o p_56429_ + 2 o p_56430_ + 3 o p_56431_ + 4 o p_56432_ + 5 o p_56433_ + a (Lcmm;Lgu;ILbyn;Lbyo;)Lcbf; m_276750_ + static + 0 o p_277302_ + 1 o p_277303_ + 2 o p_277304_ + 3 o p_277305_ + 4 o p_277306_ + b (Ldcb;Lcmm;Lgu;)Lbea; m_7246_ + 0 o p_56435_ + 1 o p_56436_ + 2 o p_56437_ +cwu net/minecraft/world/level/block/SmokerBlock + (Ldca$d;)V + 0 o p_56439_ + a (Lgu;Ldcb;)Lczn; m_142194_ + 0 o p_154644_ + 1 o p_154645_ + a (Lcmm;Ldcb;Lczp;)Lczo; m_142354_ + 0 o p_154640_ + 1 o p_154641_ + 2 o p_154642_ + a (Ldcb;Lcmm;Lgu;Lapf;)V m_214162_ + 0 o p_222443_ + 1 o p_222444_ + 2 o p_222445_ + 3 o p_222446_ + a (Lcmm;Lgu;Lbyo;)V m_7137_ + 0 o p_56443_ + 1 o p_56444_ + 2 o p_56445_ +cwv net/minecraft/world/level/block/SnifferEggBlock + a f_278392_ + b f_278491_ + c f_276603_ + d f_276447_ + e f_276649_ + f f_276696_ + ()V + static + (Ldca$d;)V + 0 o p_277906_ + a (Ldcb;Lcls;Lgu;Ldxu;)Z m_7357_ + 0 o p_279414_ + 1 o p_279243_ + 2 o p_279294_ + 3 o p_279299_ + a (Lcls;Lgu;)Z m_277163_ + static + 0 o p_277485_ + 1 o p_278065_ + a (Ldcc$a;)V m_7926_ + 0 o p_277441_ + a (Ldcb;Laif;Lgu;Lapf;)V m_213897_ + 0 o p_277841_ + 1 o p_277739_ + 2 o p_277692_ + 3 o p_277973_ + a (Ldcb;Lcls;Lgu;Leen;)Lefb; m_5940_ + 0 o p_277872_ + 1 o p_278090_ + 2 o p_277364_ + 3 o p_278016_ + b (Ldcb;Lcmm;Lgu;Ldcb;Z)V m_6807_ + 0 o p_277964_ + 1 o p_277827_ + 2 o p_277526_ + 3 o p_277618_ + 4 o p_277819_ + h (Ldcb;)I m_278758_ + 0 o p_279125_ + n (Ldcb;)Z m_276851_ + 0 o p_278021_ +cww net/minecraft/world/level/block/SnowLayerBlock + a f_154646_ + b f_56581_ + c f_56582_ + d f_154647_ + ()V + static + (Ldca$d;)V + 0 o p_56585_ + a (Ldcb;Lha;Ldcb;Lcmn;Lgu;Lgu;)Ldcb; m_7417_ + 0 o p_56606_ + 1 o p_56607_ + 2 o p_56608_ + 3 o p_56609_ + 4 o p_56610_ + 5 o p_56611_ + a (Ldcc$a;)V m_7926_ + 0 o p_56613_ + a (Ldcb;Lcls;Lgu;Leen;)Lefb; m_5940_ + 0 o p_56620_ + 1 o p_56621_ + 2 o p_56622_ + 3 o p_56623_ + a (Ldcb;Lcih;)Z m_6864_ + 0 o p_56589_ + 1 o p_56590_ + a (Ldcb;Lcls;Lgu;Ldxu;)Z m_7357_ + 0 o p_56592_ + 1 o p_56593_ + 2 o p_56594_ + 3 o p_56595_ + a (Ldcb;Lcmp;Lgu;)Z m_7898_ + 0 o p_56602_ + 1 o p_56603_ + 2 o p_56604_ + a (Lcih;)Ldcb; m_5573_ + 0 o p_56587_ + b (Ldcb;Lcls;Lgu;)F m_7749_ + 0 o p_222453_ + 1 o p_222454_ + 2 o p_222455_ + b (Ldcb;Lcls;Lgu;Leen;)Lefb; m_5909_ + 0 o p_56597_ + 1 o p_56598_ + 2 o p_56599_ + 3 o p_56600_ + b (Ldcb;Laif;Lgu;Lapf;)V m_213898_ + 0 o p_222448_ + 1 o p_222449_ + 2 o p_222450_ + 3 o p_222451_ + b_ (Ldcb;Lcls;Lgu;)Lefb; m_7947_ + 0 o p_56632_ + 1 o p_56633_ + 2 o p_56634_ + c (Ldcb;Lcls;Lgu;Leen;)Lefb; m_5939_ + 0 o p_56625_ + 1 o p_56626_ + 2 o p_56627_ + 3 o p_56628_ + g_ (Ldcb;)Z m_7923_ + 0 o p_56630_ +cww$1 net/minecraft/world/level/block/SnowLayerBlock$1 + a f_56635_ + ()V + static +cwx net/minecraft/world/level/block/SnowyDirtBlock + a f_56637_ + ()V + static + (Ldca$d;)V + 0 o p_56640_ + a (Ldcb;Lha;Ldcb;Lcmn;Lgu;Lgu;)Ldcb; m_7417_ + 0 o p_56644_ + 1 o p_56645_ + 2 o p_56646_ + 3 o p_56647_ + 4 o p_56648_ + 5 o p_56649_ + a (Ldcc$a;)V m_7926_ + 0 o p_56651_ + a (Lcih;)Ldcb; m_5573_ + 0 o p_56642_ + h (Ldcb;)Z m_154648_ + static + 0 o p_154649_ +cwy net/minecraft/world/level/block/SoulFireBlock + (Ldca$d;)V + 0 o p_56653_ + a (Ldcb;Lha;Ldcb;Lcmn;Lgu;Lgu;)Ldcb; m_7417_ + 0 o p_56659_ + 1 o p_56660_ + 2 o p_56661_ + 3 o p_56662_ + 4 o p_56663_ + 5 o p_56664_ + a (Ldcb;Lcmp;Lgu;)Z m_7898_ + 0 o p_56655_ + 1 o p_56656_ + 2 o p_56657_ + f (Ldcb;)Z m_7599_ + 0 o p_56668_ + h (Ldcb;)Z m_154650_ + static + 0 o p_154651_ +cwz net/minecraft/world/level/block/SoulSandBlock + a f_56669_ + b f_154652_ + ()V + static + (Ldca$d;)V + 0 o p_56672_ + a (Ldcb;Lha;Ldcb;Lcmn;Lgu;Lgu;)Ldcb; m_7417_ + 0 o p_56689_ + 1 o p_56690_ + 2 o p_56691_ + 3 o p_56692_ + 4 o p_56693_ + 5 o p_56694_ + a (Ldcb;Lcls;Lgu;Ldxu;)Z m_7357_ + 0 o p_56679_ + 1 o p_56680_ + 2 o p_56681_ + 3 o p_56682_ + a (Ldcb;Laif;Lgu;Lapf;)V m_213897_ + 0 o p_222457_ + 1 o p_222458_ + 2 o p_222459_ + 3 o p_222460_ + b (Ldcb;Lcmm;Lgu;Ldcb;Z)V m_6807_ + 0 o p_56696_ + 1 o p_56697_ + 2 o p_56698_ + 3 o p_56699_ + 4 o p_56700_ + b (Ldcb;Lcls;Lgu;)F m_7749_ + 0 o p_222462_ + 1 o p_222463_ + 2 o p_222464_ + b (Ldcb;Lcls;Lgu;Leen;)Lefb; m_5909_ + 0 o p_56684_ + 1 o p_56685_ + 2 o p_56686_ + 3 o p_56687_ + b_ (Ldcb;Lcls;Lgu;)Lefb; m_7947_ + 0 o p_56707_ + 1 o p_56708_ + 2 o p_56709_ + c (Ldcb;Lcls;Lgu;Leen;)Lefb; m_5939_ + 0 o p_56702_ + 1 o p_56703_ + 2 o p_56704_ + 3 o p_56705_ +cx net/minecraft/advancements/critereon/SlimePredicate + b f_223418_ + (Lcj$d;)V + 0 o p_223420_ + a ()Lcom/google/gson/JsonObject; m_213616_ + a (Lcj$d;)Lcx; m_223426_ + static + 0 o p_223427_ + a (Lbfj;Laif;Leei;)Z m_153246_ + 0 o p_223423_ + 1 o p_223424_ + 2 o p_223425_ + a (Lcom/google/gson/JsonObject;)Lcx; m_223428_ + static + 0 o p_223429_ + c ()Lbp$a; m_213836_ +cxa net/minecraft/world/level/block/SoundType + A f_56762_ + B f_56763_ + C f_56710_ + D f_56711_ + E f_56712_ + F f_56713_ + G f_56714_ + H f_56715_ + I f_56716_ + J f_56717_ + K f_56718_ + L f_56719_ + M f_56720_ + N f_56721_ + O f_56722_ + P f_56723_ + Q f_56724_ + R f_56725_ + S f_56726_ + T f_56727_ + U f_56728_ + V f_56729_ + W f_56730_ + X f_154653_ + Y f_154654_ + Z f_154655_ + a f_279557_ + aA f_154677_ + aB f_154678_ + aC f_154679_ + aD f_154680_ + aE f_222465_ + aF f_222466_ + aG f_222467_ + aH f_222468_ + aI f_222469_ + aJ f_222470_ + aK f_222471_ + aL f_244174_ + aM f_256908_ + aN f_256995_ + aO f_243772_ + aP f_244244_ + aQ f_271497_ + aR f_271370_ + aS f_271239_ + aT f_271094_ + aU f_256956_ + aV f_271168_ + aW f_276658_ + aX f_271215_ + aY f_276571_ + aZ f_56731_ + aa f_154656_ + ab f_154657_ + ac f_154658_ + ad f_154659_ + ae f_154660_ + af f_154661_ + ag f_154662_ + ah f_154663_ + ai f_154664_ + aj f_154665_ + ak f_154666_ + al f_154667_ + am f_154668_ + an f_271137_ + ao f_154669_ + ap f_154670_ + aq f_154671_ + ar f_154672_ + as f_154673_ + at f_154674_ + au f_154675_ + av f_222472_ + aw f_222473_ + ax f_222474_ + ay f_222475_ + az f_154676_ + b f_56736_ + ba f_56732_ + bb f_56733_ + bc f_56734_ + bd f_56735_ + be f_56737_ + bf f_56738_ + c f_56739_ + d f_56740_ + e f_56741_ + f f_56742_ + g f_56743_ + h f_56744_ + i f_56745_ + j f_56746_ + k f_56747_ + l f_154681_ + m f_56748_ + n f_56749_ + o f_56750_ + p f_56751_ + q f_56752_ + r f_56753_ + s f_56754_ + t f_56755_ + u f_56756_ + v f_56757_ + w f_56758_ + x f_56759_ + y f_56760_ + z f_56761_ + ()V + static + (FFLamg;Lamg;Lamg;Lamg;Lamg;)V + 0 o p_56766_ + 1 o p_56767_ + 2 o p_56768_ + 3 o p_56769_ + 4 o p_56770_ + 5 o p_56771_ + 6 o p_56772_ + a ()F m_56773_ + b ()F m_56774_ + c ()Lamg; m_56775_ + d ()Lamg; m_56776_ + e ()Lamg; m_56777_ + f ()Lamg; m_56778_ + g ()Lamg; m_56779_ +cxb net/minecraft/world/level/block/SpawnerBlock + (Ldca$d;)V + 0 o p_56781_ + a (Lcfz;Lcls;Ljava/util/List;Lchq;)V m_5871_ + 0 o p_255714_ + 1 o p_255801_ + 2 o p_255708_ + 3 o p_255667_ + a (Lcfz;)Ljava/util/Optional; m_254931_ + 0 o p_256057_ + a (Ldcb;Laif;Lgu;Lcfz;Z)V m_213646_ + 0 o p_222477_ + 1 o p_222478_ + 2 o p_222479_ + 3 o p_222480_ + 4 o p_222481_ + a (Lbfn;)Lsw; m_255429_ + static + 0 o p_255782_ + a (Lgu;Ldcb;)Lczn; m_142194_ + 0 o p_154687_ + 1 o p_154688_ + a (Lcmm;Ldcb;Lczp;)Lczo; m_142354_ + 0 o p_154683_ + 1 o p_154684_ + 2 o p_154685_ + b_ (Ldcb;)Lcvs; m_7514_ + 0 o p_56794_ +cxc net/minecraft/world/level/block/SpongeBlock + a f_154689_ + b f_154690_ + c f_276425_ + ()V + static + (Ldca$d;)V + 0 o p_56796_ + a (Lgu;Ljava/util/function/Consumer;)V m_277124_ + static + 0 o p_277519_ + 1 o p_277492_ + a (Lgu;Lcmm;Lgu;)Z m_278593_ + static + 0 o p_279052_ + 1 o p_279053_ + 2 o p_279054_ + a (Ldcb;Lcmm;Lgu;Lcpn;Lgu;Z)V m_6861_ + 0 o p_56801_ + 1 o p_56802_ + 2 o p_56803_ + 3 o p_56804_ + 4 o p_56805_ + 5 o p_56806_ + a (Lcmm;Lgu;)V m_56797_ + 0 o p_56798_ + 1 o p_56799_ + b (Ldcb;Lcmm;Lgu;Ldcb;Z)V m_6807_ + 0 o p_56811_ + 1 o p_56812_ + 2 o p_56813_ + 3 o p_56814_ + 4 o p_56815_ + b (Lcmm;Lgu;)Z m_56807_ + 0 o p_56808_ + 1 o p_56809_ +cxd net/minecraft/world/level/block/SporeBlossomBlock + a f_154691_ + b f_154692_ + c f_154693_ + d f_154694_ + ()V + static + (Ldca$d;)V + 0 o p_154697_ + a (Ldcb;Lha;Ldcb;Lcmn;Lgu;Lgu;)Ldcb; m_7417_ + 0 o p_154713_ + 1 o p_154714_ + 2 o p_154715_ + 3 o p_154716_ + 4 o p_154717_ + 5 o p_154718_ + a (Ldcb;Lcmp;Lgu;)Z m_7898_ + 0 o p_154709_ + 1 o p_154710_ + 2 o p_154711_ + a (Ldcb;Lcls;Lgu;Leen;)Lefb; m_5940_ + 0 o p_154699_ + 1 o p_154700_ + 2 o p_154701_ + 3 o p_154702_ + a (Ldcb;Lcmm;Lgu;Lapf;)V m_214162_ + 0 o p_222503_ + 1 o p_222504_ + 2 o p_222505_ + 3 o p_222506_ +cxe net/minecraft/world/level/block/SpreadingSnowyDirtBlock + (Ldca$d;)V + 0 o p_56817_ + b (Ldcb;Laif;Lgu;Lapf;)V m_213898_ + 0 o p_222508_ + 1 o p_222509_ + 2 o p_222510_ + 3 o p_222511_ + b (Ldcb;Lcmp;Lgu;)Z m_56823_ + static + 0 o p_56824_ + 1 o p_56825_ + 2 o p_56826_ + c (Ldcb;Lcmp;Lgu;)Z m_56827_ + static + 0 o p_56828_ + 1 o p_56829_ + 2 o p_56830_ +cxf net/minecraft/world/level/block/StainedGlassBlock + a f_56831_ + (Lcen;Ldca$d;)V + 0 o p_56833_ + 1 o p_56834_ + a ()Lcen; m_7988_ +cxg net/minecraft/world/level/block/StainedGlassPaneBlock + i f_56836_ + (Lcen;Ldca$d;)V + 0 o p_56838_ + 1 o p_56839_ + a ()Lcen; m_7988_ +cxh net/minecraft/world/level/block/StairBlock + D f_56855_ + E f_56856_ + F f_56857_ + G f_56858_ + H f_56859_ + a f_56841_ + b f_56842_ + c f_56843_ + d f_56844_ + e f_56845_ + f f_56846_ + g f_56847_ + h f_56848_ + i f_56849_ + j f_56850_ + k f_56851_ + l f_56852_ + m f_56853_ + n f_56854_ + ()V + static + (Ldcb;Ldca$d;)V + 0 o p_56862_ + 1 o p_56863_ + a (Ldcb;Lcmm;Lgu;Ldcb;Z)V m_6810_ + 0 o p_56908_ + 1 o p_56909_ + 2 o p_56910_ + 3 o p_56911_ + 4 o p_56912_ + a (Ldcb;Lcui;)Ldcb; m_6943_ + 0 o p_56919_ + 1 o p_56920_ + a (Lefb;Lefb;Lefb;Lefb;Lefb;)[Lefb; m_56933_ + static + 0 o p_56934_ + 1 o p_56935_ + 2 o p_56936_ + 3 o p_56937_ + 4 o p_56938_ + a (Lefb;Lefb;Lefb;Lefb;Lefb;I)Lefb; m_56939_ + static + 0 o p_56940_ + 1 o p_56941_ + 2 o p_56942_ + 3 o p_56943_ + 4 o p_56944_ + 5 o p_56945_ + a (Ldcb;Lha;Ldcb;Lcmn;Lgu;Lgu;)Ldcb; m_7417_ + 0 o p_56925_ + 1 o p_56926_ + 2 o p_56927_ + 3 o p_56928_ + 4 o p_56929_ + 5 o p_56930_ + a (Lcmm;Lgu;Lcme;)V m_7592_ + 0 o p_56878_ + 1 o p_56879_ + 2 o p_56880_ + a (Ldcb;Lcvz;)Ldcb; m_6843_ + 0 o p_56922_ + 1 o p_56923_ + a (Ldcc$a;)V m_7926_ + 0 o p_56932_ + a (Ldcb;Lcmm;Lgu;Lbyo;)V m_6256_ + 0 o p_56896_ + 1 o p_56897_ + 2 o p_56898_ + 3 o p_56899_ + a (Ldcb;Laif;Lgu;Lapf;)V m_213897_ + 0 o p_222513_ + 1 o p_222514_ + 2 o p_222515_ + 3 o p_222516_ + a (Ldcb;Lcls;Lgu;Leen;)Lefb; m_5940_ + 0 o p_56956_ + 1 o p_56957_ + 2 o p_56958_ + 3 o p_56959_ + a (Ldcb;Lcmm;Lgu;Lapf;)V m_214162_ + 0 o p_222518_ + 1 o p_222519_ + 2 o p_222520_ + 3 o p_222521_ + a (Ldcb;Lcls;Lgu;Ldxu;)Z m_7357_ + 0 o p_56891_ + 1 o p_56892_ + 2 o p_56893_ + 3 o p_56894_ + a (Ldcb;Lcmm;Lgu;Lbyo;Lbdw;Leee;)Lbdx; m_6227_ + 0 o p_56901_ + 1 o p_56902_ + 2 o p_56903_ + 3 o p_56904_ + 4 o p_56905_ + 5 o p_56906_ + a (Lcmn;Lgu;Ldcb;)V m_6786_ + 0 o p_56882_ + 1 o p_56883_ + 2 o p_56884_ + a (ILefb;Lefb;Lefb;Lefb;Lefb;)Lefb; m_56864_ + static + 0 o p_56865_ + 1 o p_56866_ + 2 o p_56867_ + 3 o p_56868_ + 4 o p_56869_ + 5 o p_56870_ + a (Lcih;)Ldcb; m_5573_ + 0 o p_56872_ + a (Lcmm;Lgu;Ldcb;Lbfj;)V m_141947_ + 0 o p_154720_ + 1 o p_154721_ + 2 o p_154722_ + 3 o p_154723_ + b (I)[Lefb; m_56948_ + static + 0 o p_56949_ + b (Ldcb;Lcmm;Lgu;Ldcb;Z)V m_6807_ + 0 o p_56961_ + 1 o p_56962_ + 2 o p_56963_ + 3 o p_56964_ + 4 o p_56965_ + b (Ldcb;Laif;Lgu;Lapf;)V m_213898_ + 0 o p_222523_ + 1 o p_222524_ + 2 o p_222525_ + 3 o p_222526_ + c (Ldcb;Lcls;Lgu;Lha;)Z m_56970_ + static + 0 o p_56971_ + 1 o p_56972_ + 2 o p_56973_ + 3 o p_56974_ + c_ (Ldcb;)Ldxe; m_5888_ + 0 o p_56969_ + d ()F m_7325_ + e_ (Ldcb;)Z m_6724_ + 0 o p_56947_ + g_ (Ldcb;)Z m_7923_ + 0 o p_56967_ + h (Ldcb;)Z m_56980_ + static + 0 o p_56981_ + i (Ldcb;Lcls;Lgu;)Lddk; m_56976_ + static + 0 o p_56977_ + 1 o p_56978_ + 2 o p_56979_ + n (Ldcb;)I m_56982_ + 0 o p_56983_ +cxh$1 net/minecraft/world/level/block/StairBlock$1 + a f_56984_ + b f_56985_ + ()V + static +cxi net/minecraft/world/level/block/StandingSignBlock + a f_56987_ + ()V + static + (Ldca$d;Lddo;)V + 0 o p_56990_ + 1 o p_56991_ + a (Ldcb;Lha;Ldcb;Lcmn;Lgu;Lgu;)Ldcb; m_7417_ + 0 o p_57005_ + 1 o p_57006_ + 2 o p_57007_ + 3 o p_57008_ + 4 o p_57009_ + 5 o p_57010_ + a (Ldcb;Lcmp;Lgu;)Z m_7898_ + 0 o p_56995_ + 1 o p_56996_ + 2 o p_56997_ + a (Ldcb;Lcvz;)Ldcb; m_6843_ + 0 o p_57002_ + 1 o p_57003_ + a (Ldcc$a;)V m_7926_ + 0 o p_57012_ + a (Lcih;)Ldcb; m_5573_ + 0 o p_56993_ + a (Ldcb;Lcui;)Ldcb; m_6943_ + 0 o p_56999_ + 1 o p_57000_ + g (Ldcb;)F m_276903_ + 0 o p_277795_ +cxj net/minecraft/world/level/block/StemBlock + a f_154724_ + b f_57013_ + c f_154725_ + d f_57014_ + e f_57015_ + f f_154726_ + ()V + static + (Lcxk;Ljava/util/function/Supplier;Ldca$d;)V + 0 o p_154728_ + 1 o p_154729_ + 2 o p_154730_ + a ()Lcxk; m_57056_ + a (Ldcc$a;)V m_7926_ + 0 o p_57040_ + a (Lcmm;Lapf;Lgu;Ldcb;)Z m_214167_ + 0 o p_222533_ + 1 o p_222534_ + 2 o p_222535_ + 3 o p_222536_ + a (Lcmp;Lgu;Ldcb;Z)Z m_7370_ + 0 o p_255699_ + 1 o p_57031_ + 2 o p_57032_ + 3 o p_57033_ + a (Ldcb;Lcls;Lgu;Leen;)Lefb; m_5940_ + 0 o p_57047_ + 1 o p_57048_ + 2 o p_57049_ + 3 o p_57050_ + a (Lcls;Lgu;Ldcb;)Lcfz; m_7397_ + 0 o p_57026_ + 1 o p_57027_ + 2 o p_57028_ + a (Laif;Lapf;Lgu;Ldcb;)V m_214148_ + 0 o p_222528_ + 1 o p_222529_ + 2 o p_222530_ + 3 o p_222531_ + b (Ldcb;Laif;Lgu;Lapf;)V m_213898_ + 0 o p_222538_ + 1 o p_222539_ + 2 o p_222540_ + 3 o p_222541_ + d (Ldcb;Lcls;Lgu;)Z m_6266_ + 0 o p_57053_ + 1 o p_57054_ + 2 o p_57055_ +cxk net/minecraft/world/level/block/StemGrownBlock + (Ldca$d;)V + 0 o p_57058_ + a ()Lcxj; m_7161_ + b ()Lcop; m_7810_ +cxl net/minecraft/world/level/block/StonecutterBlock + a f_57063_ + b f_57064_ + c f_57065_ + ()V + static + (Ldca$d;)V + 0 o p_57068_ + a (Ldcb;Lcvz;)Ldcb; m_6843_ + 0 o p_57093_ + 1 o p_57094_ + a (Ldcc$a;)V m_7926_ + 0 o p_57096_ + a (Ldcb;Lcls;Lgu;Leen;)Lefb; m_5940_ + 0 o p_57100_ + 1 o p_57101_ + 2 o p_57102_ + 3 o p_57103_ + a (Ldcb;Lcui;)Ldcb; m_6943_ + 0 o p_57090_ + 1 o p_57091_ + a (Ldcb;Lcls;Lgu;Ldxu;)Z m_7357_ + 0 o p_57078_ + 1 o p_57079_ + 2 o p_57080_ + 3 o p_57081_ + a (Ldcb;Lcmm;Lgu;Lbyo;Lbdw;Leee;)Lbdx; m_6227_ + 0 o p_57083_ + 1 o p_57084_ + 2 o p_57085_ + 3 o p_57086_ + 4 o p_57087_ + 5 o p_57088_ + a (Lcih;)Ldcb; m_5573_ + 0 o p_57070_ + a (Lcmm;Lgu;ILbyn;Lbyo;)Lcbf; m_57071_ + static + 0 o p_57072_ + 1 o p_57073_ + 2 o p_57074_ + 3 o p_57075_ + 4 o p_57076_ + b (Ldcb;Lcmm;Lgu;)Lbea; m_7246_ + 0 o p_57105_ + 1 o p_57106_ + 2 o p_57107_ + b_ (Ldcb;)Lcvs; m_7514_ + 0 o p_57098_ + g_ (Ldcb;)Z m_7923_ + 0 o p_57109_ +cxm net/minecraft/world/level/block/StructureBlock + a f_57110_ + ()V + static + (Ldca$d;)V + 0 o p_57113_ + a (Ldcc$a;)V m_7926_ + 0 o p_57142_ + a (Ldcb;Lcmm;Lgu;Lbyo;Lbdw;Leee;)Lbdx; m_6227_ + 0 o p_57128_ + 1 o p_57129_ + 2 o p_57130_ + 3 o p_57131_ + 4 o p_57132_ + 5 o p_57133_ + a (Lcmm;Lgu;Ldcb;Lbfz;Lcfz;)V m_6402_ + 0 o p_57122_ + 1 o p_57123_ + 2 o p_57124_ + 3 o p_57125_ + 4 o p_57126_ + a (Ldcb;Lcmm;Lgu;Lcpn;Lgu;Z)V m_6861_ + 0 o p_57135_ + 1 o p_57136_ + 2 o p_57137_ + 3 o p_57138_ + 4 o p_57139_ + 5 o p_57140_ + a (Lgu;Ldcb;)Lczn; m_142194_ + 0 o p_154732_ + 1 o p_154733_ + a (Laif;Ldba;)V m_57114_ + 0 o p_57115_ + 1 o p_57116_ + b_ (Ldcb;)Lcvs; m_7514_ + 0 o p_57144_ +cxm$1 net/minecraft/world/level/block/StructureBlock$1 + a f_57145_ + ()V + static +cxn net/minecraft/world/level/block/StructureVoidBlock + a f_154734_ + b f_57147_ + ()V + static + (Ldca$d;)V + 0 o p_57150_ + a (Ldcb;Lcls;Lgu;Leen;)Lefb; m_5940_ + 0 o p_57158_ + 1 o p_57159_ + 2 o p_57160_ + 3 o p_57161_ + b (Ldcb;Lcls;Lgu;)F m_7749_ + 0 o p_57152_ + 1 o p_57153_ + 2 o p_57154_ + b_ (Ldcb;)Lcvs; m_7514_ + 0 o p_57156_ +cxo net/minecraft/world/level/block/SugarCaneBlock + a f_57164_ + b f_154735_ + c f_57165_ + ()V + static + (Ldca$d;)V + 0 o p_57168_ + a (Ldcb;Lha;Ldcb;Lcmn;Lgu;Lgu;)Ldcb; m_7417_ + 0 o p_57179_ + 1 o p_57180_ + 2 o p_57181_ + 3 o p_57182_ + 4 o p_57183_ + 5 o p_57184_ + a (Ldcb;Lcmp;Lgu;)Z m_7898_ + 0 o p_57175_ + 1 o p_57176_ + 2 o p_57177_ + a (Ldcc$a;)V m_7926_ + 0 o p_57186_ + a (Ldcb;Laif;Lgu;Lapf;)V m_213897_ + 0 o p_222543_ + 1 o p_222544_ + 2 o p_222545_ + 3 o p_222546_ + a (Ldcb;Lcls;Lgu;Leen;)Lefb; m_5940_ + 0 o p_57193_ + 1 o p_57194_ + 2 o p_57195_ + 3 o p_57196_ + b (Ldcb;Laif;Lgu;Lapf;)V m_213898_ + 0 o p_222548_ + 1 o p_222549_ + 2 o p_222550_ + 3 o p_222551_ +cxp net/minecraft/world/level/block/SupportType + a FULL + b CENTER + c RIGID + d $VALUES + ()V + static + (Ljava/lang/String;I)V + 0 o p_57203_ + 1 o p_57204_ + a ()[Lcxp; m_154736_ + static + a (Ldcb;Lcls;Lgu;Lha;)Z m_5588_ + 0 o p_57209_ + 1 o p_57210_ + 2 o p_57211_ + 3 o p_57212_ + valueOf (Ljava/lang/String;)Lcxp; valueOf + static + 0 o p_57214_ + values ()[Lcxp; values + static +cxp$1 net/minecraft/world/level/block/SupportType$1 + (Ljava/lang/String;I)V + 0 o p_57217_ + 1 o p_57218_ + a (Ldcb;Lcls;Lgu;Lha;)Z m_5588_ + 0 o p_57220_ + 1 o p_57221_ + 2 o p_57222_ + 3 o p_57223_ +cxp$2 net/minecraft/world/level/block/SupportType$2 + d f_57224_ + e f_57225_ + (Ljava/lang/String;I)V + 0 o p_57227_ + 1 o p_57228_ + a (Ldcb;Lcls;Lgu;Lha;)Z m_5588_ + 0 o p_57230_ + 1 o p_57231_ + 2 o p_57232_ + 3 o p_57233_ +cxp$3 net/minecraft/world/level/block/SupportType$3 + d f_57234_ + e f_57235_ + (Ljava/lang/String;I)V + 0 o p_57237_ + 1 o p_57238_ + a (Ldcb;Lcls;Lgu;Lha;)Z m_5588_ + 0 o p_57240_ + 1 o p_57241_ + 2 o p_57242_ + 3 o p_57243_ +cxq net/minecraft/world/level/block/SuspiciousEffectHolder + a ()Lbey; m_53521_ + a (Lcml;)Lcxq; m_257980_ + static + 0 o p_259322_ + b ()I m_53522_ + c ()Ljava/util/List; m_257904_ + static +cxr net/minecraft/world/level/block/SweetBerryBushBlock + a f_154737_ + b f_57244_ + c f_154738_ + d f_57245_ + e f_57246_ + ()V + static + (Ldca$d;)V + 0 o p_57249_ + a (Ldcb;Lcmm;Lgu;Lbfj;)V m_7892_ + 0 o p_57270_ + 1 o p_57271_ + 2 o p_57272_ + 3 o p_57273_ + a (Ldcc$a;)V m_7926_ + 0 o p_57282_ + a (Ldcb;Lcmm;Lgu;Lbyo;Lbdw;Leee;)Lbdx; m_6227_ + 0 o p_57275_ + 1 o p_57276_ + 2 o p_57277_ + 3 o p_57278_ + 4 o p_57279_ + 5 o p_57280_ + a (Lcmm;Lapf;Lgu;Ldcb;)Z m_214167_ + 0 o p_222558_ + 1 o p_222559_ + 2 o p_222560_ + 3 o p_222561_ + a (Lcmp;Lgu;Ldcb;Z)Z m_7370_ + 0 o p_256056_ + 1 o p_57261_ + 2 o p_57262_ + 3 o p_57263_ + a (Lcls;Lgu;Ldcb;)Lcfz; m_7397_ + 0 o p_57256_ + 1 o p_57257_ + 2 o p_57258_ + a (Ldcb;Lcls;Lgu;Leen;)Lefb; m_5940_ + 0 o p_57291_ + 1 o p_57292_ + 2 o p_57293_ + 3 o p_57294_ + a (Laif;Lapf;Lgu;Ldcb;)V m_214148_ + 0 o p_222553_ + 1 o p_222554_ + 2 o p_222555_ + 3 o p_222556_ + b (Ldcb;Laif;Lgu;Lapf;)V m_213898_ + 0 o p_222563_ + 1 o p_222564_ + 2 o p_222565_ + 3 o p_222566_ + e_ (Ldcb;)Z m_6724_ + 0 o p_57284_ +cxs net/minecraft/world/level/block/TallFlowerBlock + (Ldca$d;)V + 0 o p_57296_ + a (Lcmm;Lapf;Lgu;Ldcb;)Z m_214167_ + 0 o p_222573_ + 1 o p_222574_ + 2 o p_222575_ + 3 o p_222576_ + a (Lcmp;Lgu;Ldcb;Z)Z m_7370_ + 0 o p_256234_ + 1 o p_57304_ + 2 o p_57305_ + 3 o p_57306_ + a (Laif;Lapf;Lgu;Ldcb;)V m_214148_ + 0 o p_222568_ + 1 o p_222569_ + 2 o p_222570_ + 3 o p_222571_ +cxt net/minecraft/world/level/block/TallGrassBlock + a f_154739_ + b f_57315_ + ()V + static + (Ldca$d;)V + 0 o p_57318_ + a (Lcmm;Lapf;Lgu;Ldcb;)Z m_214167_ + 0 o p_222583_ + 1 o p_222584_ + 2 o p_222585_ + 3 o p_222586_ + a (Lcmp;Lgu;Ldcb;Z)Z m_7370_ + 0 o p_255692_ + 1 o p_57326_ + 2 o p_57327_ + 3 o p_57328_ + a (Ldcb;Lcls;Lgu;Leen;)Lefb; m_5940_ + 0 o p_57336_ + 1 o p_57337_ + 2 o p_57338_ + 3 o p_57339_ + a (Laif;Lapf;Lgu;Ldcb;)V m_214148_ + 0 o p_222578_ + 1 o p_222579_ + 2 o p_222580_ + 3 o p_222581_ +cxu net/minecraft/world/level/block/TallSeagrassBlock + b f_154740_ + c f_154741_ + d f_154742_ + ()V + static + (Ldca$d;)V + 0 o p_154745_ + a (Ldcb;Lcmp;Lgu;)Z m_7898_ + 0 o p_154768_ + 1 o p_154769_ + 2 o p_154770_ + a (Lcls;Lgu;Ldcb;Ldxd;)Z m_6044_ + 0 o p_154753_ + 1 o p_154754_ + 2 o p_154755_ + 3 o p_154756_ + a (Lcih;)Ldcb; m_5573_ + 0 o p_154747_ + a (Ldcb;Lcls;Lgu;Leen;)Lefb; m_5940_ + 0 o p_154763_ + 1 o p_154764_ + 2 o p_154765_ + 3 o p_154766_ + a (Lcls;Lgu;Ldcb;)Lcfz; m_7397_ + 0 o p_154749_ + 1 o p_154750_ + 2 o p_154751_ + a (Lcmn;Lgu;Ldcb;Ldxe;)Z m_7361_ + 0 o p_154758_ + 1 o p_154759_ + 2 o p_154760_ + 3 o p_154761_ + c_ (Ldcb;)Ldxe; m_5888_ + 0 o p_154772_ + d (Ldcb;Lcls;Lgu;)Z m_6266_ + 0 o p_154774_ + 1 o p_154775_ + 2 o p_154776_ +cxv net/minecraft/world/level/block/TargetBlock + a f_57376_ + b f_154777_ + c f_154778_ + ()V + static + (Ldca$d;)V + 0 o p_57379_ + a (Lcmn;Ldcb;Leee;Lbfj;)I m_57391_ + static + 0 o p_57392_ + 1 o p_57393_ + 2 o p_57394_ + 3 o p_57395_ + a (Ldcb;Lcls;Lgu;Lha;)I m_6378_ + 0 o p_57402_ + 1 o p_57403_ + 2 o p_57404_ + 3 o p_57405_ + a (Ldcc$a;)V m_7926_ + 0 o p_57407_ + a (Lcmm;Ldcb;Leee;Lbzg;)V m_5581_ + 0 o p_57381_ + 1 o p_57382_ + 2 o p_57383_ + 3 o p_57384_ + a (Leee;Leei;)I m_57408_ + static + 0 o p_57409_ + 1 o p_57410_ + a (Ldcb;Laif;Lgu;Lapf;)V m_213897_ + 0 o p_222588_ + 1 o p_222589_ + 2 o p_222590_ + 3 o p_222591_ + a (Lcmn;Ldcb;ILgu;I)V m_57385_ + static + 0 o p_57386_ + 1 o p_57387_ + 2 o p_57388_ + 3 o p_57389_ + 4 o p_57390_ + b (Ldcb;Lcmm;Lgu;Ldcb;Z)V m_6807_ + 0 o p_57412_ + 1 o p_57413_ + 2 o p_57414_ + 3 o p_57415_ + 4 o p_57416_ + f_ (Ldcb;)Z m_7899_ + 0 o p_57418_ +cxw net/minecraft/world/level/block/TintedGlassBlock + (Ldca$d;)V + 0 o p_154822_ + c (Ldcb;Lcls;Lgu;)Z m_7420_ + 0 o p_154824_ + 1 o p_154825_ + 2 o p_154826_ + g (Ldcb;Lcls;Lgu;)I m_7753_ + 0 o p_154828_ + 1 o p_154829_ + 2 o p_154830_ +cxx net/minecraft/world/level/block/TntBlock + a f_57419_ + ()V + static + (Ldca$d;)V + 0 o p_57422_ + a (Lcmm;Lgu;Lcme;)V m_7592_ + 0 o p_57441_ + 1 o p_57442_ + 2 o p_57443_ + a (Lcme;)Z m_6903_ + 0 o p_57427_ + a (Ldcc$a;)V m_7926_ + 0 o p_57464_ + a (Lcmm;Lgu;Lbfz;)V m_57436_ + static + 0 o p_57437_ + 1 o p_57438_ + 2 o p_57439_ + a (Ldcb;Lcmm;Lgu;Lcpn;Lgu;Z)V m_6861_ + 0 o p_57457_ + 1 o p_57458_ + 2 o p_57459_ + 3 o p_57460_ + 4 o p_57461_ + 5 o p_57462_ + a (Lcmm;Lgu;Ldcb;Lbyo;)V m_5707_ + 0 o p_57445_ + 1 o p_57446_ + 2 o p_57447_ + 3 o p_57448_ + a (Lbdw;Lbyo;)V m_57423_ + static + 0 o p_57424_ + 1 o p_57425_ + a (Ldcb;Lcmm;Lgu;Lbyo;Lbdw;Leee;)Lbdx; m_6227_ + 0 o p_57450_ + 1 o p_57451_ + 2 o p_57452_ + 3 o p_57453_ + 4 o p_57454_ + 5 o p_57455_ + a (Lcmm;Ldcb;Leee;Lbzg;)V m_5581_ + 0 o p_57429_ + 1 o p_57430_ + 2 o p_57431_ + 3 o p_57432_ + a (Lcmm;Lgu;)V m_57433_ + static + 0 o p_57434_ + 1 o p_57435_ + b (Ldcb;Lcmm;Lgu;Ldcb;Z)V m_6807_ + 0 o p_57466_ + 1 o p_57467_ + 2 o p_57468_ + 3 o p_57469_ + 4 o p_57470_ +cxy net/minecraft/world/level/block/TorchBlock + g f_154831_ + h f_57487_ + i f_57488_ + ()V + static + (Ldca$d;Lit;)V + 0 o p_57491_ + 1 o p_57492_ + a (Ldcb;Lha;Ldcb;Lcmn;Lgu;Lgu;)Ldcb; m_7417_ + 0 o p_57503_ + 1 o p_57504_ + 2 o p_57505_ + 3 o p_57506_ + 4 o p_57507_ + 5 o p_57508_ + a (Ldcb;Lcmp;Lgu;)Z m_7898_ + 0 o p_57499_ + 1 o p_57500_ + 2 o p_57501_ + a (Ldcb;Lcls;Lgu;Leen;)Lefb; m_5940_ + 0 o p_57510_ + 1 o p_57511_ + 2 o p_57512_ + 3 o p_57513_ + a (Ldcb;Lcmm;Lgu;Lapf;)V m_214162_ + 0 o p_222593_ + 1 o p_222594_ + 2 o p_222595_ + 3 o p_222596_ +cxz net/minecraft/world/level/block/TorchflowerCropBlock + a f_271140_ + b f_271086_ + e f_271351_ + f f_271128_ + g f_278489_ + ()V + static + (Ldca$d;)V + 0 o p_272642_ + a (Ldcc$a;)V m_7926_ + 0 o p_272679_ + a (Lcmm;)I m_7125_ + 0 o p_273475_ + a (Ldcb;Lcls;Lgu;Leen;)Lefb; m_5940_ + 0 o p_272748_ + 1 o p_273408_ + 2 o p_272762_ + 3 o p_272649_ + a ()Lddb; m_7959_ + b (I)Ldcb; m_52289_ + 0 o p_275698_ + b ()I m_7419_ + b (Ldcb;Laif;Lgu;Lapf;)V m_213898_ + 0 o p_273361_ + 1 o p_273515_ + 2 o p_273546_ + 3 o p_273261_ + c ()Lcml; m_6404_ +cy net/minecraft/advancements/critereon/StartRidingTrigger + a f_160383_ + ()V + static + ()V + a ()Lacq; m_7295_ + a (Lcom/google/gson/JsonObject;Lba;Lbe;)Lcy$a; m_7214_ + 0 o p_286276_ + 1 o p_286282_ + 2 o p_286851_ + a (Laig;)V m_160387_ + 0 o p_160388_ + a (Lcy$a;)Z m_160393_ + static + 0 o p_160394_ + b (Lcom/google/gson/JsonObject;Lba;Lbe;)Lar; m_7214_ + 0 o p_286869_ + 1 o p_286545_ + 2 o p_286559_ +cy$a net/minecraft/advancements/critereon/StartRidingTrigger$TriggerInstance + (Lba;)V + 0 o p_286351_ + a (Lbo$a;)Lcy$a; m_160401_ + static + 0 o p_160402_ +cya net/minecraft/world/level/block/TrapDoorBlock + a f_57514_ + b f_57515_ + c f_57516_ + d f_57517_ + e f_154832_ + f f_57518_ + g f_57519_ + h f_57520_ + i f_57521_ + j f_57522_ + k f_57523_ + l f_271458_ + ()V + static + (Ldca$d;Ldcq;)V + 0 o p_273079_ + 1 o p_272964_ + a (Ldcb;Lcls;Lgu;Ldxu;)Z m_7357_ + 0 o p_57535_ + 1 o p_57536_ + 2 o p_57537_ + 3 o p_57538_ + a (Ldcb;Lha;Ldcb;Lcmn;Lgu;Lgu;)Ldcb; m_7417_ + 0 o p_57554_ + 1 o p_57555_ + 2 o p_57556_ + 3 o p_57557_ + 4 o p_57558_ + 5 o p_57559_ + a (Ldcc$a;)V m_7926_ + 0 o p_57561_ + a (Ldcb;Lcmm;Lgu;Lbyo;Lbdw;Leee;)Lbdx; m_6227_ + 0 o p_57540_ + 1 o p_57541_ + 2 o p_57542_ + 3 o p_57543_ + 4 o p_57544_ + 5 o p_57545_ + a (Lcih;)Ldcb; m_5573_ + 0 o p_57533_ + a (Ldcb;Lcls;Lgu;Leen;)Lefb; m_5940_ + 0 o p_57563_ + 1 o p_57564_ + 2 o p_57565_ + 3 o p_57566_ + a (Ldcb;Lcmm;Lgu;Lcpn;Lgu;Z)V m_6861_ + 0 o p_57547_ + 1 o p_57548_ + 2 o p_57549_ + 3 o p_57550_ + 4 o p_57551_ + 5 o p_57552_ + a (Lbyo;Lcmm;Lgu;Z)V m_57527_ + 0 o p_57528_ + 1 o p_57529_ + 2 o p_57530_ + 3 o p_57531_ + c_ (Ldcb;)Ldxe; m_5888_ + 0 o p_57568_ +cya$1 net/minecraft/world/level/block/TrapDoorBlock$1 + a f_57569_ + b f_57570_ + ()V + static +cyb net/minecraft/world/level/block/TrappedChestBlock + (Ldca$d;)V + 0 o p_57573_ + a (Ldcb;Lcls;Lgu;Lha;)I m_6378_ + 0 o p_57577_ + 1 o p_57578_ + 2 o p_57579_ + 3 o p_57580_ + a (Lgu;Ldcb;)Lczn; m_142194_ + 0 o p_154834_ + 1 o p_154835_ + b ()Lamo; m_7699_ + b (Ldcb;Lcls;Lgu;Lha;)I m_6376_ + 0 o p_57582_ + 1 o p_57583_ + 2 o p_57584_ + 3 o p_57585_ + f_ (Ldcb;)Z m_7899_ + 0 o p_57587_ + g ()Lczp; m_57589_ + static +cyc net/minecraft/world/level/block/TripWireBlock + a f_57590_ + b f_57591_ + c f_57592_ + d f_57593_ + e f_57594_ + f f_57595_ + g f_57596_ + h f_57597_ + i f_57598_ + j f_57599_ + k f_154836_ + l f_57600_ + ()V + static + (Lcyd;Ldca$d;)V + 0 o p_57603_ + 1 o p_57604_ + a (Ldcb;Lha;Ldcb;Lcmn;Lgu;Lgu;)Ldcb; m_7417_ + 0 o p_57645_ + 1 o p_57646_ + 2 o p_57647_ + 3 o p_57648_ + 4 o p_57649_ + 5 o p_57650_ + a (Ldcb;Lcmm;Lgu;Lbfj;)V m_7892_ + 0 o p_57625_ + 1 o p_57626_ + 2 o p_57627_ + 3 o p_57628_ + a (Ldcb;Lcvz;)Ldcb; m_6843_ + 0 o p_57639_ + 1 o p_57640_ + a (Ldcc$a;)V m_7926_ + 0 o p_57652_ + a (Ldcb;Lcmm;Lgu;Ldcb;Z)V m_6810_ + 0 o p_57630_ + 1 o p_57631_ + 2 o p_57632_ + 3 o p_57633_ + 4 o p_57634_ + a (Ldcb;Laif;Lgu;Lapf;)V m_213897_ + 0 o p_222598_ + 1 o p_222599_ + 2 o p_222600_ + 3 o p_222601_ + a (Ldcb;Lha;)Z m_57641_ + 0 o p_57642_ + 1 o p_57643_ + a (Ldcb;Lcls;Lgu;Leen;)Lefb; m_5940_ + 0 o p_57654_ + 1 o p_57655_ + 2 o p_57656_ + 3 o p_57657_ + a (Ldcb;Lcui;)Ldcb; m_6943_ + 0 o p_57636_ + 1 o p_57637_ + a (Lcmm;Lgu;Ldcb;)V m_57610_ + 0 o p_57611_ + 1 o p_57612_ + 2 o p_57613_ + a (Lcmm;Lgu;Ldcb;Lbyo;)V m_5707_ + 0 o p_57615_ + 1 o p_57616_ + 2 o p_57617_ + 3 o p_57618_ + a (Lcih;)Ldcb; m_5573_ + 0 o p_57606_ + a (Lcmm;Lgu;)V m_57607_ + 0 o p_57608_ + 1 o p_57609_ + b (Ldcb;Lcmm;Lgu;Ldcb;Z)V m_6807_ + 0 o p_57659_ + 1 o p_57660_ + 2 o p_57661_ + 3 o p_57662_ + 4 o p_57663_ +cyc$1 net/minecraft/world/level/block/TripWireBlock$1 + a f_57664_ + b f_57665_ + ()V + static +cyd net/minecraft/world/level/block/TripWireHookBlock + a f_57667_ + b f_57668_ + c f_57669_ + d f_154837_ + e f_154838_ + f f_154839_ + g f_57670_ + h f_57671_ + i f_57672_ + j f_57673_ + k f_154840_ + ()V + static + (Ldca$d;)V + 0 o p_57676_ + a (Ldcb;Lha;Ldcb;Lcmn;Lgu;Lgu;)Ldcb; m_7417_ + 0 o p_57731_ + 1 o p_57732_ + 2 o p_57733_ + 3 o p_57734_ + 4 o p_57735_ + 5 o p_57736_ + a (Ldcb;Lcvz;)Ldcb; m_6843_ + 0 o p_57728_ + 1 o p_57729_ + a (Ldcb;Lcls;Lgu;Lha;)I m_6378_ + 0 o p_57710_ + 1 o p_57711_ + 2 o p_57712_ + 3 o p_57713_ + a (Ldcc$a;)V m_7926_ + 0 o p_57738_ + a (Lcmm;Lgu;Ldcb;ZZILdcb;)V m_57685_ + 0 o p_57686_ + 1 o p_57687_ + 2 o p_57688_ + 3 o p_57689_ + 4 o p_57690_ + 5 o p_57691_ + 6 o p_57692_ + a (Ldcb;Lcmm;Lgu;Ldcb;Z)V m_6810_ + 0 o p_57715_ + 1 o p_57716_ + 2 o p_57717_ + 3 o p_57718_ + 4 o p_57719_ + a (Ldcb;Laif;Lgu;Lapf;)V m_213897_ + 0 o p_222610_ + 1 o p_222611_ + 2 o p_222612_ + 3 o p_222613_ + a (Ldcb;Lcls;Lgu;Leen;)Lefb; m_5940_ + 0 o p_57740_ + 1 o p_57741_ + 2 o p_57742_ + 3 o p_57743_ + a (Lcmm;Lgu;Ldcb;Lbfz;Lcfz;)V m_6402_ + 0 o p_57680_ + 1 o p_57681_ + 2 o p_57682_ + 3 o p_57683_ + 4 o p_57684_ + a (Ldcb;Lcui;)Ldcb; m_6943_ + 0 o p_57725_ + 1 o p_57726_ + a (Ldcb;Lcmp;Lgu;)Z m_7898_ + 0 o p_57721_ + 1 o p_57722_ + 2 o p_57723_ + a (Lcmm;Lgu;Lha;)V m_57693_ + 0 o p_57694_ + 1 o p_57695_ + 2 o p_57696_ + a (Lcih;)Ldcb; m_5573_ + 0 o p_57678_ + a (Lcmm;Lgu;ZZZZ)V m_222602_ + 0 o p_222603_ + 1 o p_222604_ + 2 o p_222605_ + 3 o p_222606_ + 4 o p_222607_ + 5 o p_222608_ + b (Ldcb;Lcls;Lgu;Lha;)I m_6376_ + 0 o p_57745_ + 1 o p_57746_ + 2 o p_57747_ + 3 o p_57748_ + f_ (Ldcb;)Z m_7899_ + 0 o p_57750_ +cyd$1 net/minecraft/world/level/block/TripWireHookBlock$1 + a f_57751_ + ()V + static +cye net/minecraft/world/level/block/TurtleEggBlock + a f_154841_ + b f_154842_ + c f_154843_ + d f_57753_ + e f_57754_ + f f_57755_ + g f_57756_ + ()V + static + (Ldca$d;)V + 0 o p_57759_ + a (Ldcc$a;)V m_7926_ + 0 o p_57799_ + a (Lcmm;Ldcb;Lgu;Lbfj;F)V m_142072_ + 0 o p_154845_ + 1 o p_154846_ + 2 o p_154847_ + 3 o p_154848_ + 4 o p_154849_ + a (Lcmm;Ldcb;Lgu;Lbfj;I)V m_154850_ + 0 o p_154851_ + 1 o p_154852_ + 2 o p_154853_ + 3 o p_154854_ + 4 o p_154855_ + a (Ldcb;Lcls;Lgu;Leen;)Lefb; m_5940_ + 0 o p_57809_ + 1 o p_57810_ + 2 o p_57811_ + 3 o p_57812_ + a (Lcmm;Lgu;Ldcb;)V m_57791_ + 0 o p_57792_ + 1 o p_57793_ + 2 o p_57794_ + a (Ldcb;Lcih;)Z m_6864_ + 0 o p_57796_ + 1 o p_57797_ + a (Lcls;Lgu;)Z m_57762_ + static + 0 o p_57763_ + 1 o p_57764_ + a (Lcmm;Lbfj;)Z m_57767_ + 0 o p_57768_ + 1 o p_57769_ + a (Lcmm;)Z m_57765_ + 0 o p_57766_ + a (Lcmm;Lbyo;Lgu;Ldcb;Lczn;Lcfz;)V m_6240_ + 0 o p_57771_ + 1 o p_57772_ + 2 o p_57773_ + 3 o p_57774_ + 4 o p_57775_ + 5 o p_57776_ + a (Lcih;)Ldcb; m_5573_ + 0 o p_57761_ + a (Lcmm;Lgu;Ldcb;Lbfj;)V m_141947_ + 0 o p_154857_ + 1 o p_154858_ + 2 o p_154859_ + 3 o p_154860_ + b (Ldcb;Lcmm;Lgu;Ldcb;Z)V m_6807_ + 0 o p_57814_ + 1 o p_57815_ + 2 o p_57816_ + 3 o p_57817_ + 4 o p_57818_ + b (Lcls;Lgu;)Z m_57800_ + static + 0 o p_57801_ + 1 o p_57802_ + b (Ldcb;Laif;Lgu;Lapf;)V m_213898_ + 0 o p_222644_ + 1 o p_222645_ + 2 o p_222646_ + 3 o p_222647_ +cyf net/minecraft/world/level/block/TwistingVinesBlock + f f_154861_ + ()V + static + (Ldca$d;)V + 0 o p_154864_ + a ()Lcpn; m_7777_ + a (Lapf;)I m_213627_ + 0 o p_222649_ + g (Ldcb;)Z m_5971_ + 0 o p_154869_ +cyg net/minecraft/world/level/block/TwistingVinesPlantBlock + d f_154870_ + ()V + static + (Ldca$d;)V + 0 o p_154873_ + b ()Lcta; m_7272_ +cyh net/minecraft/world/level/block/VineBlock + a f_57833_ + b f_57834_ + c f_57835_ + d f_57836_ + e f_57837_ + f f_57838_ + g f_154875_ + h f_57839_ + i f_57840_ + j f_57841_ + k f_57842_ + l f_57843_ + m f_57844_ + ()V + static + (Ldca$d;)V + 0 o p_57847_ + a (Ldcb;Lha;Ldcb;Lcmn;Lgu;Lgu;)Ldcb; m_7417_ + 0 o p_57875_ + 1 o p_57876_ + 2 o p_57877_ + 3 o p_57878_ + 4 o p_57879_ + 5 o p_57880_ + a (Lcls;Lgu;Lha;)Z m_57853_ + static + 0 o p_57854_ + 1 o p_57855_ + 2 o p_57856_ + a (Ldcb;Lcvz;)Ldcb; m_6843_ + 0 o p_57868_ + 1 o p_57869_ + a (Ldcc$a;)V m_7926_ + 0 o p_57882_ + a (Ldcb;Lcls;Lgu;Leen;)Lefb; m_5940_ + 0 o p_57897_ + 1 o p_57898_ + 2 o p_57899_ + 3 o p_57900_ + a (Ldcb;Lcui;)Ldcb; m_6943_ + 0 o p_57865_ + 1 o p_57866_ + a (Ldcb;Lcih;)Z m_6864_ + 0 o p_57858_ + 1 o p_57859_ + a (Ljava/util/Map$Entry;)Z m_57885_ + static + 0 o p_57886_ + a (Ldcb;Lcmp;Lgu;)Z m_7898_ + 0 o p_57861_ + 1 o p_57862_ + 2 o p_57863_ + a (Lcls;Lgu;)Z m_57850_ + 0 o p_57851_ + 1 o p_57852_ + a (Lcih;)Ldcb; m_5573_ + 0 o p_57849_ + a (Lha;)Ldcs; m_57883_ + static + 0 o p_57884_ + a (Ldcb;Ldcb;Lapf;)Ldcb; m_222650_ + 0 o p_222651_ + 1 o p_222652_ + 2 o p_222653_ + b (Lcls;Lgu;Lha;)Z m_57887_ + 0 o p_57888_ + 1 o p_57889_ + 2 o p_57890_ + b (Ldcb;Laif;Lgu;Lapf;)V m_213898_ + 0 o p_222655_ + 1 o p_222656_ + 2 o p_222657_ + 3 o p_222658_ + c (Ldcb;Lcls;Lgu;)Z m_7420_ + 0 o p_181239_ + 1 o p_181240_ + 2 o p_181241_ + h (Ldcb;)Lefb; m_57905_ + static + 0 o p_57906_ + i (Ldcb;Lcls;Lgu;)Ldcb; m_57901_ + 0 o p_57902_ + 1 o p_57903_ + 2 o p_57904_ + n (Ldcb;)Z m_57907_ + 0 o p_57908_ + o (Ldcb;)I m_57909_ + 0 o p_57910_ + p (Ldcb;)Z m_57911_ + 0 o p_57912_ +cyh$1 net/minecraft/world/level/block/VineBlock$1 + a f_57913_ + b f_57914_ + ()V + static +cyi net/minecraft/world/level/block/WallBannerBlock + a f_57916_ + b f_57917_ + ()V + static + (Lcen;Ldca$d;)V + 0 o p_57920_ + 1 o p_57921_ + a (Ldcb;Lha;Ldcb;Lcmn;Lgu;Lgu;)Ldcb; m_7417_ + 0 o p_57935_ + 1 o p_57936_ + 2 o p_57937_ + 3 o p_57938_ + 4 o p_57939_ + 5 o p_57940_ + a (Ldcb;Lcmp;Lgu;)Z m_7898_ + 0 o p_57925_ + 1 o p_57926_ + 2 o p_57927_ + a (Ldcb;Lcvz;)Ldcb; m_6843_ + 0 o p_57932_ + 1 o p_57933_ + a (Ldcc$a;)V m_7926_ + 0 o p_57942_ + a (Lcih;)Ldcb; m_5573_ + 0 o p_57923_ + a (Ldcb;Lcls;Lgu;Leen;)Lefb; m_5940_ + 0 o p_57944_ + 1 o p_57945_ + 2 o p_57946_ + 3 o p_57947_ + a (Ldcb;Lcui;)Ldcb; m_6943_ + 0 o p_57929_ + 1 o p_57930_ + f ()Ljava/lang/String; m_7705_ +cyj net/minecraft/world/level/block/WallBlock + D f_57957_ + E f_57958_ + F f_57959_ + G f_57960_ + H f_57961_ + a f_57949_ + b f_57950_ + c f_57951_ + d f_57952_ + e f_57953_ + f f_57954_ + g f_57955_ + h f_57956_ + i f_154876_ + j f_154877_ + k f_154878_ + l f_154879_ + m f_154880_ + n f_154881_ + ()V + static + (Ldca$d;)V + 0 o p_57964_ + a (Ldcb;Lha;Ldcb;Lcmn;Lgu;Lgu;)Ldcb; m_7417_ + 0 o p_58014_ + 1 o p_58015_ + 2 o p_58016_ + 3 o p_58017_ + 4 o p_58018_ + 5 o p_58019_ + a (ZLefb;Lefb;)Lddn; m_58041_ + 0 o p_58042_ + 1 o p_58043_ + 2 o p_58044_ + a (Lefb;Lddn;Lefb;Lefb;)Lefb; m_58033_ + static + 0 o p_58034_ + 1 o p_58035_ + 2 o p_58036_ + 3 o p_58037_ + a (Ldcb;Lcvz;)Ldcb; m_6843_ + 0 o p_58004_ + 1 o p_58005_ + a (FFFFFF)Ljava/util/Map; m_57965_ + 0 o p_57966_ + 1 o p_57967_ + 2 o p_57968_ + 3 o p_57969_ + 4 o p_57970_ + 5 o p_57971_ + a (Ldcc$a;)V m_7926_ + 0 o p_58032_ + a (Lcmp;Ldcb;Lgu;Ldcb;)Ldcb; m_57974_ + 0 o p_57975_ + 1 o p_57976_ + 2 o p_57977_ + 3 o p_57978_ + a (Lefb;Lefb;)Z m_58038_ + static + 0 o p_58039_ + 1 o p_58040_ + a (Lcmp;Ldcb;Lgu;Ldcb;ZZZZ)Ldcb; m_57979_ + 0 o p_57980_ + 1 o p_57981_ + 2 o p_57982_ + 3 o p_57983_ + 4 o p_57984_ + 5 o p_57985_ + 6 o p_57986_ + 7 o p_57987_ + a (Ldcb;Lcls;Lgu;Leen;)Lefb; m_5940_ + 0 o p_58050_ + 1 o p_58051_ + 2 o p_58052_ + 3 o p_58053_ + a (Ldcb;Lcui;)Ldcb; m_6943_ + 0 o p_58001_ + 1 o p_58002_ + a (Lcmp;Lgu;Ldcb;Lgu;Ldcb;Lha;)Ldcb; m_57988_ + 0 o p_57989_ + 1 o p_57990_ + 2 o p_57991_ + 3 o p_57992_ + 4 o p_57993_ + 5 o p_57994_ + a (Ldcb;Lcls;Lgu;Ldxu;)Z m_7357_ + 0 o p_57996_ + 1 o p_57997_ + 2 o p_57998_ + 3 o p_57999_ + a (Ldcb;ZZZZLefb;)Ldcb; m_58024_ + 0 o p_58025_ + 1 o p_58026_ + 2 o p_58027_ + 3 o p_58028_ + 4 o p_58029_ + 5 o p_58030_ + a (Ldcb;Ldde;)Z m_58010_ + static + 0 o p_58011_ + 1 o p_58012_ + a (Ldcb;Ldcb;Lefb;)Z m_58006_ + 0 o p_58007_ + 1 o p_58008_ + 2 o p_58009_ + a (Lcih;)Ldcb; m_5573_ + 0 o p_57973_ + a (Ldcb;ZLha;)Z m_58020_ + 0 o p_58021_ + 1 o p_58022_ + 2 o p_58023_ + c (Ldcb;Lcls;Lgu;Leen;)Lefb; m_5939_ + 0 o p_58055_ + 1 o p_58056_ + 2 o p_58057_ + 3 o p_58058_ + c (Ldcb;Lcls;Lgu;)Z m_7420_ + 0 o p_58046_ + 1 o p_58047_ + 2 o p_58048_ + c_ (Ldcb;)Ldxe; m_5888_ + 0 o p_58060_ +cyj$1 net/minecraft/world/level/block/WallBlock$1 + a f_58061_ + b f_58062_ + ()V + static +cyk net/minecraft/world/level/block/WallHangingSignBlock + a f_244390_ + b f_244007_ + c f_244065_ + d f_244474_ + h f_243914_ + i f_244437_ + ()V + static + (Ldca$d;Lddo;)V + 0 o p_251606_ + 1 o p_252140_ + a (Ldcb;Lha;Ldcb;Lcmn;Lgu;Lgu;)Ldcb; m_7417_ + 0 o p_249879_ + 1 o p_249939_ + 2 o p_250767_ + 3 o p_252228_ + 4 o p_252327_ + 5 o p_251853_ + a (Ldcb;Lcvz;)Ldcb; m_6843_ + 0 o p_249292_ + 1 o p_249867_ + a (Ldcc$a;)V m_7926_ + 0 o p_251029_ + a (Ldcb;Lcls;Lgu;Leen;)Lefb; m_5940_ + 0 o p_250980_ + 1 o p_251012_ + 2 o p_251391_ + 3 o p_251875_ + a (Ldcb;Lcui;)Ldcb; m_6943_ + 0 o p_250446_ + 1 o p_249494_ + a (Leee;Ldcb;)Z m_278170_ + 0 o p_278339_ + 1 o p_278302_ + a (Lcmp;Ldcb;Lgu;Lha;)Z m_246366_ + 0 o p_249746_ + 1 o p_251128_ + 2 o p_250583_ + 3 o p_250567_ + a (Ldcb;Lbyo;Leee;Ldav;Lcfz;)Z m_278152_ + 0 o p_278346_ + 1 o p_278263_ + 2 o p_278269_ + 3 o p_278290_ + 4 o p_278238_ + a (Ldcb;Lcls;Lgu;Ldxu;)Z m_7357_ + 0 o p_253755_ + 1 o p_254193_ + 2 o p_254136_ + 3 o p_253687_ + a (Ldcb;Lcmm;Lgu;Lbyo;Lbdw;Leee;)Lbdx; m_6227_ + 0 o p_251703_ + 1 o p_249080_ + 2 o p_250832_ + 3 o p_251881_ + 4 o p_249800_ + 5 o p_252293_ + a (Lcih;)Ldcb; m_5573_ + 0 o p_251399_ + a (Lgu;Ldcb;)Lczn; m_142194_ + 0 o p_250745_ + 1 o p_250905_ + a (Lcmm;Ldcb;Lczp;)Lczo; m_142354_ + 0 o p_279316_ + 1 o p_279345_ + 2 o p_279384_ + b (Ldcb;Lcmp;Lgu;)Z m_247551_ + 0 o p_249472_ + 1 o p_249453_ + 2 o p_251235_ + b_ (Ldcb;Lcls;Lgu;)Lefb; m_7947_ + 0 o p_253927_ + 1 o p_254149_ + 2 o p_253805_ + c (Ldcb;Lcls;Lgu;Leen;)Lefb; m_5939_ + 0 o p_249963_ + 1 o p_248542_ + 2 o p_252224_ + 3 o p_251891_ + f ()Ljava/lang/String; m_7705_ + g (Ldcb;)F m_276903_ + 0 o p_278073_ +cyk$1 net/minecraft/world/level/block/WallHangingSignBlock$1 + a f_243983_ + ()V + static +cyl net/minecraft/world/level/block/WallSignBlock + a f_58064_ + b f_154882_ + c f_154883_ + d f_154884_ + h f_58065_ + ()V + static + (Ldca$d;Lddo;)V + 0 o p_58068_ + 1 o p_58069_ + a (Ldcb;Lha;Ldcb;Lcmn;Lgu;Lgu;)Ldcb; m_7417_ + 0 o p_58083_ + 1 o p_58084_ + 2 o p_58085_ + 3 o p_58086_ + 4 o p_58087_ + 5 o p_58088_ + a (Ldcb;Lcmp;Lgu;)Z m_7898_ + 0 o p_58073_ + 1 o p_58074_ + 2 o p_58075_ + a (Ldcb;Lcvz;)Ldcb; m_6843_ + 0 o p_58080_ + 1 o p_58081_ + a (Ldcc$a;)V m_7926_ + 0 o p_58090_ + a (Lcih;)Ldcb; m_5573_ + 0 o p_58071_ + a (Ldcb;Lcls;Lgu;Leen;)Lefb; m_5940_ + 0 o p_58092_ + 1 o p_58093_ + 2 o p_58094_ + 3 o p_58095_ + a (Ldcb;Lcui;)Ldcb; m_6943_ + 0 o p_58077_ + 1 o p_58078_ + f ()Ljava/lang/String; m_7705_ + g (Ldcb;)F m_276903_ + 0 o p_278024_ + h (Ldcb;)Leei; m_278172_ + 0 o p_278316_ +cym net/minecraft/world/level/block/WallSkullBlock + a f_58097_ + b f_58098_ + ()V + static + (Lcwp$a;Ldca$d;)V + 0 o p_58101_ + 1 o p_58102_ + a (Ldcb;Lcvz;)Ldcb; m_6843_ + 0 o p_58109_ + 1 o p_58110_ + a (Ldcc$a;)V m_7926_ + 0 o p_58112_ + a (Lcih;)Ldcb; m_5573_ + 0 o p_58104_ + a (Ldcb;Lcls;Lgu;Leen;)Lefb; m_5940_ + 0 o p_58114_ + 1 o p_58115_ + 2 o p_58116_ + 3 o p_58117_ + a (Ldcb;Lcui;)Ldcb; m_6943_ + 0 o p_58106_ + 1 o p_58107_ + f ()Ljava/lang/String; m_7705_ +cyn net/minecraft/world/level/block/WallTorchBlock + a f_58119_ + b f_154885_ + c f_58120_ + ()V + static + (Ldca$d;Lit;)V + 0 o p_58123_ + 1 o p_58124_ + a (Ldcb;Lha;Ldcb;Lcmn;Lgu;Lgu;)Ldcb; m_7417_ + 0 o p_58143_ + 1 o p_58144_ + 2 o p_58145_ + 3 o p_58146_ + 4 o p_58147_ + 5 o p_58148_ + a (Ldcb;Lcmp;Lgu;)Z m_7898_ + 0 o p_58133_ + 1 o p_58134_ + 2 o p_58135_ + a (Ldcb;Lcvz;)Ldcb; m_6843_ + 0 o p_58140_ + 1 o p_58141_ + a (Ldcc$a;)V m_7926_ + 0 o p_58150_ + a (Lcih;)Ldcb; m_5573_ + 0 o p_58126_ + a (Ldcb;Lcls;Lgu;Leen;)Lefb; m_5940_ + 0 o p_58152_ + 1 o p_58153_ + 2 o p_58154_ + 3 o p_58155_ + a (Ldcb;Lcui;)Ldcb; m_6943_ + 0 o p_58137_ + 1 o p_58138_ + a (Ldcb;Lcmm;Lgu;Lapf;)V m_214162_ + 0 o p_222660_ + 1 o p_222661_ + 2 o p_222662_ + 3 o p_222663_ + f ()Ljava/lang/String; m_7705_ + h (Ldcb;)Lefb; m_58156_ + static + 0 o p_58157_ +cyo net/minecraft/world/level/block/WaterlilyBlock + a f_58159_ + ()V + static + (Ldca$d;)V + 0 o p_58162_ + a (Ldcb;Lcmm;Lgu;Lbfj;)V m_7892_ + 0 o p_58164_ + 1 o p_58165_ + 2 o p_58166_ + 3 o p_58167_ + a (Ldcb;Lcls;Lgu;Leen;)Lefb; m_5940_ + 0 o p_58169_ + 1 o p_58170_ + 2 o p_58171_ + 3 o p_58172_ + d (Ldcb;Lcls;Lgu;)Z m_6266_ + 0 o p_58174_ + 1 o p_58175_ + 2 o p_58176_ +cyp net/minecraft/world/level/block/WeatheringCopper + u_ f_154886_ + v_ f_154887_ + ()V + static + a (Ldcb;Lcpn;)Ldcb; m_154894_ + static + 0 o p_154895_ + 1 o p_154896_ + a (Lcpn;)Ljava/util/Optional; m_154890_ + static + 0 o p_154891_ + a ()F m_142377_ + b (Lcpn;)Lcpn; m_154897_ + static + 0 o p_154898_ + b (Ldcb;Lcpn;)Ldcb; m_154901_ + static + 0 o p_154902_ + 1 o p_154903_ + b (Ldcb;)Ljava/util/Optional; m_154899_ + static + 0 o p_154900_ + c (Ldcb;)Ldcb; m_154906_ + static + 0 o p_154907_ + c (Lcpn;)Ljava/util/Optional; m_154904_ + static + 0 o p_154905_ + c ()Lcom/google/common/collect/BiMap; m_154908_ + static + d ()Lcom/google/common/collect/BiMap; m_154909_ + static + i_ (Ldcb;)Ljava/util/Optional; m_142123_ + 0 o p_154893_ +cyp$a net/minecraft/world/level/block/WeatheringCopper$WeatherState + a UNAFFECTED + b EXPOSED + c WEATHERED + d OXIDIZED + e $VALUES + ()V + static + (Ljava/lang/String;I)V + 0 o p_154917_ + 1 o p_154918_ + a ()[Lcyp$a; m_154919_ + static + valueOf (Ljava/lang/String;)Lcyp$a; valueOf + static + 0 o p_154921_ + values ()[Lcyp$a; values + static +cyq net/minecraft/world/level/block/WeatheringCopperFullBlock + d f_154923_ + (Lcyp$a;Ldca$d;)V + 0 o p_154925_ + 1 o p_154926_ + b ()Ljava/lang/Enum; m_142297_ + b (Ldcb;Laif;Lgu;Lapf;)V m_213898_ + 0 o p_222665_ + 1 o p_222666_ + 2 o p_222667_ + 3 o p_222668_ + e_ (Ldcb;)Z m_6724_ + 0 o p_154935_ + g ()Lcyp$a; m_142297_ +cyr net/minecraft/world/level/block/WeatheringCopperSlabBlock + e f_154936_ + (Lcyp$a;Ldca$d;)V + 0 o p_154938_ + 1 o p_154939_ + b ()Ljava/lang/Enum; m_142297_ + b (Ldcb;Laif;Lgu;Lapf;)V m_213898_ + 0 o p_222670_ + 1 o p_222671_ + 2 o p_222672_ + 3 o p_222673_ + e_ (Ldcb;)Z m_6724_ + 0 o p_154947_ + g ()Lcyp$a; m_142297_ +cys net/minecraft/world/level/block/WeatheringCopperStairBlock + F f_154949_ + (Lcyp$a;Ldcb;Ldca$d;)V + 0 o p_154951_ + 1 o p_154952_ + 2 o p_154953_ + b ()Ljava/lang/Enum; m_142297_ + b (Ldcb;Laif;Lgu;Lapf;)V m_213898_ + 0 o p_222675_ + 1 o p_222676_ + 2 o p_222677_ + 3 o p_222678_ + e_ (Ldcb;)Z m_6724_ + 0 o p_154961_ + g ()Lcyp$a; m_142297_ +cyt net/minecraft/world/level/block/WebBlock + (Ldca$d;)V + 0 o p_58178_ + a (Ldcb;Lcmm;Lgu;Lbfj;)V m_7892_ + 0 o p_58180_ + 1 o p_58181_ + 2 o p_58182_ + 3 o p_58183_ +cyu net/minecraft/world/level/block/WeepingVinesBlock + f f_154963_ + ()V + static + (Ldca$d;)V + 0 o p_154966_ + a ()Lcpn; m_7777_ + a (Lapf;)I m_213627_ + 0 o p_222680_ + g (Ldcb;)Z m_5971_ + 0 o p_154971_ +cyv net/minecraft/world/level/block/WeepingVinesPlantBlock + d f_154972_ + ()V + static + (Ldca$d;)V + 0 o p_154975_ + b ()Lcta; m_7272_ +cyw net/minecraft/world/level/block/WeightedPressurePlateBlock + d f_58198_ + e f_58199_ + ()V + static + (ILdca$d;Ldcq;)V + 0 o p_273669_ + 1 o p_273512_ + 2 o p_272868_ + a (Ldcc$a;)V m_7926_ + 0 o p_58211_ + a (Ldcb;I)Ldcb; m_7422_ + 0 o p_58208_ + 1 o p_58209_ + a ()I m_7342_ + b (Lcmm;Lgu;)I m_6693_ + 0 o p_58213_ + 1 o p_58214_ + g (Ldcb;)I m_6016_ + 0 o p_58220_ +cyx net/minecraft/world/level/block/WetSpongeBlock + (Ldca$d;)V + 0 o p_58222_ + a (Ldcb;Lcmm;Lgu;Lapf;)V m_214162_ + 0 o p_222682_ + 1 o p_222683_ + 2 o p_222684_ + 3 o p_222685_ + b (Ldcb;Lcmm;Lgu;Ldcb;Z)V m_6807_ + 0 o p_58229_ + 1 o p_58230_ + 2 o p_58231_ + 3 o p_58232_ + 4 o p_58233_ +cyy net/minecraft/world/level/block/WitherRoseBlock + (Lbey;Ldca$d;)V + 0 o p_58235_ + 1 o p_58236_ + a (Ldcb;Lcmm;Lgu;Lbfj;)V m_7892_ + 0 o p_58238_ + 1 o p_58239_ + 2 o p_58240_ + 3 o p_58241_ + a (Ldcb;Lcmm;Lgu;Lapf;)V m_214162_ + 0 o p_222687_ + 1 o p_222688_ + 2 o p_222689_ + 3 o p_222690_ + d (Ldcb;Lcls;Lgu;)Z m_6266_ + 0 o p_58248_ + 1 o p_58249_ + 2 o p_58250_ +cyz net/minecraft/world/level/block/WitherSkullBlock + e f_58251_ + f f_58252_ + (Ldca$d;)V + 0 o p_58254_ + a (Lcmm;Lgu;Ldax;)V m_58255_ + static + 0 o p_58256_ + 1 o p_58257_ + 2 o p_58258_ + a (Ldcf;)Z m_284102_ + static + 0 o p_284878_ + a (Lcmm;Lgu;Ldcb;Lbfz;Lcfz;)V m_6402_ + 0 o p_58260_ + 1 o p_58261_ + 2 o p_58262_ + 3 o p_58263_ + 4 o p_58264_ + b (Lcmm;Lgu;Lcfz;)Z m_58267_ + static + 0 o p_58268_ + 1 o p_58269_ + 2 o p_58270_ + b (Ldcf;)Z m_58265_ + static + 0 o p_58266_ + c (Ldcf;)Z m_284101_ + static + 0 o p_284877_ + d (Ldcf;)Z m_58271_ + static + 0 o p_58272_ + u ()Ldcg; m_58273_ + static + v ()Ldcg; m_58274_ + static +cz net/minecraft/advancements/critereon/StatePropertiesPredicate + a f_67658_ + b f_67659_ + ()V + static + (Ljava/util/List;)V + 0 o p_67662_ + a (Ldcc;Ldcd;)Z m_67669_ + 0 o p_67670_ + 1 o p_67671_ + a (Lcom/google/gson/JsonElement;)Lcz; m_67679_ + static + 0 o p_67680_ + a (Ldcb;)Z m_67667_ + 0 o p_67668_ + a (Ldxe;)Z m_67684_ + 0 o p_67685_ + a (Lcom/google/gson/JsonObject;Lcz$c;)V m_67681_ + static + 0 o p_67682_ + 1 o p_67683_ + a (Ljava/lang/String;Lcom/google/gson/JsonElement;)Lcz$c; m_67686_ + static + 0 o p_67687_ + 1 o p_67688_ + a (Ldcc;Ljava/util/function/Consumer;Lcz$c;)V m_67675_ + static + 0 o p_67676_ + 1 o p_67677_ + 2 o p_67678_ + a ()Lcom/google/gson/JsonElement; m_67666_ + a (Ldcc;Ljava/util/function/Consumer;)V m_67672_ + 0 o p_67673_ + 1 o p_67674_ + b (Lcom/google/gson/JsonElement;)Ljava/lang/String; m_67689_ + static + 0 o p_67690_ +cz$a net/minecraft/advancements/critereon/StatePropertiesPredicate$Builder + a f_67691_ + ()V + a (Ldde;Ljava/lang/Comparable;)Lcz$a; m_67697_ + 0 o p_67698_ + 1 o p_67699_ + a ()Lcz$a; m_67693_ + static + a (Ldde;Z)Lcz$a; m_67703_ + 0 o p_67704_ + 1 o p_67705_ + a (Ldde;Ljava/lang/String;)Lcz$a; m_67700_ + 0 o p_67701_ + 1 o p_67702_ + a (Ldde;I)Lcz$a; m_67694_ + 0 o p_67695_ + 1 o p_67696_ + b ()Lcz; m_67706_ +cz$b net/minecraft/advancements/critereon/StatePropertiesPredicate$ExactPropertyMatcher + a f_67707_ + (Ljava/lang/String;Ljava/lang/String;)V + 0 o p_67709_ + 1 o p_67710_ + a (Ldcd;Ldde;)Z m_7517_ + 0 o p_67713_ + 1 o p_67714_ + a ()Lcom/google/gson/JsonElement; m_7682_ +cz$c net/minecraft/advancements/critereon/StatePropertiesPredicate$PropertyMatcher + a f_67715_ + (Ljava/lang/String;)V + 0 o p_67717_ + a (Ldcc;Ldcd;)Z m_67718_ + 0 o p_67719_ + 1 o p_67720_ + a (Ldcd;Ldde;)Z m_7517_ + 0 o p_67724_ + 1 o p_67725_ + a ()Lcom/google/gson/JsonElement; m_7682_ + a (Ldcc;Ljava/util/function/Consumer;)V m_67721_ + 0 o p_67722_ + 1 o p_67723_ + b ()Ljava/lang/String; m_67726_ +cz$d net/minecraft/advancements/critereon/StatePropertiesPredicate$RangedPropertyMatcher + a f_67727_ + b f_67728_ + (Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;)V + 0 o p_67730_ + 1 o p_67731_ + 2 o p_67732_ + a (Ldcd;Ldde;)Z m_7517_ + 0 o p_67735_ + 1 o p_67736_ + a ()Lcom/google/gson/JsonElement; m_7682_ +cza net/minecraft/world/level/block/WitherWallSkullBlock + (Ldca$d;)V + 0 o p_58276_ + a (Lcmm;Lgu;Ldcb;Lbfz;Lcfz;)V m_6402_ + 0 o p_58278_ + 1 o p_58279_ + 2 o p_58280_ + 3 o p_58281_ + 4 o p_58282_ +czb net/minecraft/world/level/block/WoolCarpetBlock + b f_58288_ + (Lcen;Ldca$d;)V + 0 o p_58291_ + 1 o p_58292_ + a ()Lcen; m_58309_ +czc net/minecraft/world/level/block/entity/AbstractFurnaceBlockEntity + c f_154980_ + d f_154981_ + e f_154982_ + f f_154983_ + g f_154984_ + h f_154985_ + i f_154986_ + j f_154987_ + k f_154988_ + l f_154989_ + m f_58310_ + n f_58311_ + r f_58313_ + s f_58314_ + t f_58315_ + u f_58316_ + v f_58317_ + w f_58318_ + x f_58319_ + y f_58320_ + z f_222691_ + ()V + static + (Lczp;Lgu;Ldcb;Lcjf;)V + 0 o p_154991_ + 1 o p_154992_ + 2 o p_154993_ + 3 o p_154994_ + a (Ljava/util/List;Laif;Leei;Lit/unimi/dsi/fastutil/objects/Object2IntMap$Entry;Lcjc;)V m_155018_ + static + 0 o p_155019_ + 1 o p_155020_ + 2 o p_155021_ + 3 o p_155022_ + 4 o p_155023_ + a (Lbyo;Ljava/util/List;)V m_58395_ + 0 o p_58396_ + 1 o p_282202_ + a (Lqr;Lacq;Ljava/lang/Integer;)V m_187447_ + static + 0 o p_187448_ + 1 o p_187449_ + 2 o p_187450_ + a (Lqr;)V m_142466_ + 0 o p_155025_ + a (Lcmm;Lczc;)I m_222692_ + static + 0 o p_222693_ + 1 o p_222694_ + a (Lcfz;)I m_7743_ + 0 o p_58343_ + a (Lbyo;)Z m_6542_ + 0 o p_58340_ + a (II)Lcfz; m_7407_ + 0 o p_58330_ + 1 o p_58331_ + a ()V m_6211_ + a (Laig;)V m_155003_ + 0 o p_155004_ + a (Lcjc;)V m_6029_ + 0 o p_58345_ + a (Lbys;)V m_5809_ + 0 o p_58342_ + a (Lcmm;Lgu;Ldcb;Lczc;)V m_155013_ + static + 0 o p_155014_ + 1 o p_155015_ + 2 o p_155016_ + 3 o p_155017_ + a (ILcfz;)V m_6836_ + 0 o p_58333_ + 1 o p_58334_ + a (Ljava/util/Map;Lcml;I)V m_58374_ + static + 0 o p_58375_ + 1 o p_58376_ + 2 o p_58377_ + a (ILcfz;Lha;)Z m_7155_ + 0 o p_58336_ + 1 o p_58337_ + 2 o p_58338_ + a (Laif;Leei;)Ljava/util/List; m_154995_ + 0 o p_154996_ + 1 o p_154997_ + a (Ljava/util/Map;Lanl;I)V m_204302_ + static + 0 o p_204303_ + 1 o p_204304_ + 2 o p_204305_ + a (I)Lcfz; m_8020_ + 0 o p_58328_ + a (Lhs;Lcjc;Lhn;I)Z m_155005_ + static + 0 o p_266924_ + 1 o p_155006_ + 2 o p_155007_ + 3 o p_155008_ + a (Laif;Leei;IF)V m_154998_ + static + 0 o p_154999_ + 1 o p_155000_ + 2 o p_155001_ + 3 o p_155002_ + a (Lha;)[I m_7071_ + 0 o p_58363_ + ab_ ()Z m_7983_ + b (Lhs;Lcjc;Lhn;I)Z m_266209_ + static + 0 o p_266740_ + 1 o p_266780_ + 2 o p_267073_ + 3 o p_267157_ + b (Lqr;)V m_183515_ + 0 o p_187452_ + b (Lcfu;)Z m_58397_ + static + 0 o p_58398_ + b ()I m_6643_ + b (I)Lcfz; m_8016_ + 0 o p_58387_ + b (ILcfz;Lha;)Z m_7157_ + 0 o p_58392_ + 1 o p_58393_ + 2 o p_58394_ + b (Lcfz;)Z m_58399_ + static + 0 o p_58400_ + b (ILcfz;)Z m_7013_ + 0 o p_58389_ + 1 o p_58390_ + d ()Lcjc; m_7928_ + f ()Ljava/util/Map; m_58423_ + static + i ()Z m_58425_ +czc$1 net/minecraft/world/level/block/entity/AbstractFurnaceBlockEntity$1 + a f_58426_ + (Lczc;)V + 0 o p_58428_ + a (I)I m_6413_ + 0 o p_58431_ + a (II)V m_8050_ + 0 o p_58433_ + 1 o p_58434_ + a ()I m_6499_ +czd net/minecraft/world/level/block/entity/BannerBlockEntity + a f_155030_ + b f_155031_ + c f_155032_ + d f_155033_ + e f_58473_ + f f_58474_ + g f_58475_ + h f_58477_ + (Lgu;Ldcb;Lcen;)V + 0 o p_155038_ + 1 o p_155039_ + 2 o p_155040_ + (Lgu;Ldcb;)V + 0 o p_155035_ + 1 o p_155036_ + Z ()Lsw; m_7755_ + a ()Luz; m_58483_ + a (Lqr;)V m_142466_ + 0 o p_155042_ + a (Lsw;)V m_58501_ + 0 o p_58502_ + a (Lcfz;)Lqx; m_58487_ + static + 0 o p_58488_ + a (Lcfz;Lcen;)V m_58489_ + 0 o p_58490_ + 1 o p_58491_ + a (Lcen;Lqx;)Ljava/util/List; m_58484_ + static + 0 o p_58485_ + 1 o p_58486_ + ab ()Lsw; m_7770_ + ao_ ()Lqr; m_5995_ + b (Lqr;)V m_183515_ + 0 o p_187456_ + b (Lcfz;)V m_187453_ + 0 o p_187454_ + c (Lcfz;)I m_58504_ + static + 0 o p_58505_ + c ()Ljava/util/List; m_58508_ + d (Lcfz;)V m_58509_ + static + 0 o p_58510_ + f ()Lcfz; m_155043_ + g ()Lcen; m_155044_ + h ()Luo; m_58483_ +cze net/minecraft/world/level/block/entity/BannerPattern + a f_58532_ + (Ljava/lang/String;)V + 0 o p_222696_ + a (Lacp;Z)Lacq; m_222697_ + static + 0 o p_222698_ + 1 o p_222699_ + a ()Ljava/lang/String; m_58579_ + a (Ljava/lang/String;)Lhe; m_222700_ + static + 0 o p_222701_ + a (Ljava/lang/String;Lhe$c;)Z m_222702_ + static + 0 o p_222703_ + 1 o p_222704_ +cze$a net/minecraft/world/level/block/entity/BannerPattern$Builder + a f_58585_ + ()V + a (Lacp;Lcen;)Lcze$a; m_222705_ + 0 o p_222706_ + 1 o p_222707_ + a (Lhe;Lcen;)Lcze$a; m_222708_ + 0 o p_222709_ + 1 o p_222710_ + a (Lcom/mojang/datafixers/util/Pair;)Lcze$a; m_155048_ + 0 o p_155049_ + a ()Lqx; m_58587_ +czf net/minecraft/world/level/block/entity/BannerPatterns + A f_222711_ + B f_222712_ + C f_222713_ + D f_222714_ + E f_222715_ + F f_222716_ + G f_222717_ + H f_222718_ + I f_222719_ + J f_222720_ + K f_222721_ + L f_222722_ + M f_222723_ + N f_222724_ + O f_222725_ + a f_222726_ + b f_222727_ + c f_222728_ + d f_222729_ + e f_222730_ + f f_222731_ + g f_222732_ + h f_222733_ + i f_222734_ + j f_222735_ + k f_222736_ + l f_222737_ + m f_222738_ + n f_222739_ + o f_222740_ + p f_222741_ + q f_222742_ + r f_222743_ + s f_222744_ + t f_222745_ + u f_222746_ + v f_222747_ + w f_222748_ + x f_222749_ + y f_222750_ + z f_222751_ + ()V + static + ()V + a (Ljava/lang/String;)Lacp; m_222756_ + static + 0 o p_222757_ + a (Lhr;)Lcze; m_222754_ + static + 0 o p_222755_ +czg net/minecraft/world/level/block/entity/BarrelBlockEntity + c f_58591_ + f f_155050_ + (Lgu;Ldcb;)V + 0 o p_155052_ + 1 o p_155053_ + a (Lqr;)V m_142466_ + 0 o p_155055_ + a (ILbyn;)Lcbf; m_6555_ + 0 o p_58598_ + 1 o p_58599_ + a (Ldcb;Z)V m_58606_ + 0 o p_58607_ + 1 o p_58608_ + a (Lhn;)V m_6520_ + 0 o p_58610_ + a (Ldcb;Lamg;)V m_58600_ + 0 o p_58601_ + 1 o p_58602_ + b (Lqr;)V m_183515_ + 0 o p_187459_ + b ()I m_6643_ + c (Lbyo;)V m_5785_ + 0 o p_58614_ + d_ (Lbyo;)V m_5856_ + 0 o p_58616_ + f ()Lhn; m_7086_ + g ()Lsw; m_6820_ + i ()V m_58619_ +czg$1 net/minecraft/world/level/block/entity/BarrelBlockEntity$1 + a f_155056_ + (Lczg;)V + 0 o p_155058_ + a (Lcmm;Lgu;Ldcb;II)V m_142148_ + 0 o p_155066_ + 1 o p_155067_ + 2 o p_155068_ + 3 o p_155069_ + 4 o p_155070_ + a (Lbyo;)Z m_142718_ + 0 o p_155060_ + a (Lcmm;Lgu;Ldcb;)V m_142292_ + 0 o p_155062_ + 1 o p_155063_ + 2 o p_155064_ + b (Lcmm;Lgu;Ldcb;)V m_142289_ + 0 o p_155072_ + 1 o p_155073_ + 2 o p_155074_ +czh net/minecraft/world/level/block/entity/BaseContainerBlockEntity + c f_58621_ + d f_58622_ + (Lczp;Lgu;Ldcb;)V + 0 o p_155076_ + 1 o p_155077_ + 2 o p_155078_ + H_ ()Lsw; m_5446_ + Z ()Lsw; m_7755_ + a (Lsw;)V m_58638_ + 0 o p_58639_ + a (Lbyo;Lbdz;Lsw;)Z m_58629_ + static + 0 o p_58630_ + 1 o p_58631_ + 2 o p_58632_ + a (Lqr;)V m_142466_ + 0 o p_155080_ + a (ILbyn;)Lcbf; m_6555_ + 0 o p_58627_ + 1 o p_58628_ + ab ()Lsw; m_7770_ + b (Lqr;)V m_183515_ + 0 o p_187461_ + createMenu (ILbyn;Lbyo;)Lcbf; m_7208_ + 0 o p_58641_ + 1 o p_58642_ + 2 o p_58643_ + d (Lbyo;)Z m_7525_ + 0 o p_58645_ + g ()Lsw; m_6820_ +czi net/minecraft/world/level/block/entity/BeaconBlockEntity + a f_58646_ + b f_155081_ + c f_155082_ + d f_155083_ + e f_155084_ + f f_155085_ + g f_58647_ + h f_155086_ + i f_243996_ + j f_58648_ + k f_58649_ + l f_58650_ + m f_58651_ + n f_58652_ + r f_58653_ + s f_58654_ + t f_58655_ + u f_58656_ + ()V + static + (Lgu;Ldcb;)V + 0 o p_155088_ + 1 o p_155089_ + H_ ()Lsw; m_5446_ + Z ()Lsw; m_7755_ + a (Lcmm;III)I m_155092_ + static + 0 o p_155093_ + 1 o p_155094_ + 2 o p_155095_ + 3 o p_155096_ + a (Lqr;)V m_142466_ + 0 o p_155113_ + a (Lcmm;Lgu;Lamg;)V m_155103_ + static + 0 o p_155104_ + 1 o p_155105_ + 2 o p_155106_ + a (Lcmm;)V m_142339_ + 0 o p_155091_ + a (Lsw;)V m_58681_ + 0 o p_58682_ + a (Lcmm;Lgu;ILbey;Lbey;)V m_155097_ + static + 0 o p_155098_ + 1 o p_155099_ + 2 o p_155100_ + 3 o p_155101_ + 4 o p_155102_ + a (Lcmm;Lgu;Ldcb;Lczi;)V m_155107_ + static + 0 o p_155108_ + 1 o p_155109_ + 2 o p_155110_ + 3 o p_155111_ + a (I)Lbey; m_58686_ + static + 0 o p_58687_ + ab ()Lsw; m_7770_ + ao_ ()Lqr; m_5995_ + ap_ ()V m_7651_ + b (Lqr;)V m_183515_ + 0 o p_187463_ + c ()Ljava/util/List; m_58702_ + createMenu (ILbyn;Lbyo;)Lcbf; m_7208_ + 0 o p_58696_ + 1 o p_58697_ + 2 o p_58698_ + f ()Luz; m_58483_ + h ()Luo; m_58483_ +czi$1 net/minecraft/world/level/block/entity/BeaconBlockEntity$1 + a f_58706_ + (Lczi;)V + 0 o p_58708_ + a (I)I m_6413_ + 0 o p_58711_ + a (II)V m_8050_ + 0 o p_58713_ + 1 o p_58714_ + a ()I m_6499_ +czi$a net/minecraft/world/level/block/entity/BeaconBlockEntity$BeaconBeamSection + a f_58715_ + b f_58716_ + ([F)V + 0 o p_58718_ + a ()V m_58719_ + b ()[F m_58722_ + c ()I m_58723_ +czj net/minecraft/world/level/block/entity/BedBlockEntity + a f_58724_ + (Lgu;Ldcb;Lcen;)V + 0 o p_155118_ + 1 o p_155119_ + 2 o p_155120_ + (Lgu;Ldcb;)V + 0 o p_155115_ + 1 o p_155116_ + a (Lcen;)V m_58729_ + 0 o p_58730_ + c ()Luz; m_58483_ + d ()Lcen; m_58731_ + h ()Luo; m_58483_ +czk net/minecraft/world/level/block/entity/BeehiveBlockEntity + a f_155121_ + b f_155122_ + c f_155123_ + d f_155124_ + e f_155125_ + f f_155126_ + g f_155127_ + h f_155128_ + i f_155129_ + j f_155130_ + k f_155131_ + l f_58732_ + m f_58733_ + ()V + static + (Lgu;Ldcb;)V + 0 o p_155134_ + 1 o p_155135_ + a (Lcmm;Lgu;Ldcb;Ljava/util/List;Lgu;)V m_155149_ + static + 0 o p_155150_ + 1 o p_155151_ + 2 o p_155152_ + 3 o p_155153_ + 4 o p_155154_ + a (Ldcb;Ljava/util/List;Lczk$b;Lczk$a;)Z m_271670_ + 0 o p_272553_ + 1 o p_272554_ + 2 o p_272555_ + 3 o p_272556_ + a (Lqr;)V m_142466_ + 0 o p_155156_ + a (Lbfj;Z)V m_58741_ + 0 o p_58742_ + 1 o p_58743_ + a (Lcmm;Lgu;Ldcb;Lczk$a;Ljava/util/List;Lczk$b;Lgu;)Z m_155136_ + static + 0 o p_155137_ + 1 o p_155138_ + 2 o p_155139_ + 3 o p_155140_ + 4 o p_155141_ + 5 o p_155142_ + 6 o p_155143_ + a (Lcmm;Lgu;Ldcb;Lczk;)V m_155144_ + static + 0 o p_155145_ + 1 o p_155146_ + 2 o p_155147_ + 3 o p_155148_ + a (ILbrm;)V m_58736_ + static + 0 o p_58737_ + 1 o p_58738_ + a (Ldcb;)I m_58752_ + static + 0 o p_58753_ + a (Ldca$a;)Z m_202036_ + static + 0 o p_202037_ + a (Lbyo;Ldcb;Lczk$b;)V m_58748_ + 0 o p_58749_ + 1 o p_58750_ + 2 o p_58751_ + a (Lbfj;ZI)V m_58744_ + 0 o p_58745_ + 1 o p_58746_ + 2 o p_58747_ + a (Lqr;IZ)V m_155157_ + 0 o p_155158_ + 1 o p_155159_ + 2 o p_155160_ + a (Ldcb;Lczk$b;)Ljava/util/List; m_58759_ + 0 o p_58760_ + 1 o p_58761_ + a (Lbfj;)Lbfj; m_58739_ + static + 0 o p_58740_ + b (Lqr;)V m_183515_ + 0 o p_187467_ + c ()Z m_58773_ + d (Lqr;)V m_155161_ + static + 0 o p_155162_ + d ()Z m_58774_ + e ()V m_6596_ + f ()Z m_58775_ + g ()I m_58776_ + i ()Z m_58777_ + j ()Lqx; m_58779_ + v ()Z m_58780_ +czk$a net/minecraft/world/level/block/entity/BeehiveBlockEntity$BeeData + a f_58782_ + b f_58783_ + c f_58784_ + (Lqr;II)V + 0 o p_58786_ + 1 o p_58787_ + 2 o p_58788_ +czk$b net/minecraft/world/level/block/entity/BeehiveBlockEntity$BeeReleaseStatus + a HONEY_DELIVERED + b BEE_RELEASED + c EMERGENCY + d $VALUES + ()V + static + (Ljava/lang/String;I)V + 0 o p_58808_ + 1 o p_58809_ + a ()[Lczk$b; m_155163_ + static + valueOf (Ljava/lang/String;)Lczk$b; valueOf + static + 0 o p_58811_ + values ()[Lczk$b; values + static +czl net/minecraft/world/level/block/entity/BellBlockEntity + a f_58813_ + b f_58814_ + c f_58815_ + d f_155164_ + e f_155165_ + f f_155166_ + g f_155167_ + h f_155168_ + i f_155169_ + j f_155170_ + k f_155171_ + l f_58816_ + m f_58817_ + n f_58818_ + r f_58819_ + (Lgu;Ldcb;)V + 0 o p_155173_ + 1 o p_155174_ + a (Lcmm;Lgu;Ldcb;Lczl;Lczl$a;)V m_155180_ + static + 0 o p_155181_ + 1 o p_155182_ + 2 o p_155183_ + 3 o p_155184_ + 4 o p_155185_ + a (Lgu;Ljava/util/List;)Z m_155199_ + static + 0 o p_155200_ + 1 o p_155201_ + a (Lha;)V m_58834_ + 0 o p_58835_ + a (Lgu;ILorg/apache/commons/lang3/mutable/MutableInt;Lcmm;Lbfz;)V m_155190_ + static + 0 o p_155191_ + 1 o p_155192_ + 2 o p_155193_ + 3 o p_155194_ + 4 o p_155195_ + a (Lbfz;)V m_58840_ + static + 0 o p_58841_ + a (Lcmm;Lgu;Ljava/util/List;)V m_155186_ + static + 0 o p_155187_ + 1 o p_155188_ + 2 o p_155189_ + a (Lgu;Lbfz;)Z m_155196_ + static + 0 o p_155197_ + 1 o p_155198_ + a (Lcmm;Lgu;Ldcb;Lczl;)V m_155175_ + static + 0 o p_155176_ + 1 o p_155177_ + 2 o p_155178_ + 3 o p_155179_ + a_ (II)Z m_7531_ + 0 o p_58837_ + 1 o p_58838_ + b (Lcmm;Lgu;Ldcb;Lczl;)V m_155202_ + static + 0 o p_155203_ + 1 o p_155204_ + 2 o p_155205_ + 3 o p_155206_ + b (Lcmm;Lgu;Ljava/util/List;)V m_155207_ + static + 0 o p_155208_ + 1 o p_155209_ + 2 o p_155210_ + b (Lgu;Lbfz;)Z m_155211_ + static + 0 o p_155212_ + 1 o p_155213_ + c (Lgu;Lbfz;)Z m_289177_ + static + 0 o p_289507_ + 1 o p_289508_ + c ()V m_58845_ + d (Lgu;Lbfz;)Z m_155217_ + static + 0 o p_155218_ + 1 o p_155219_ +czl$a net/minecraft/world/level/block/entity/BellBlockEntity$ResonationEndAction + run (Lcmm;Lgu;Ljava/util/List;)V m_155220_ + 0 o p_155221_ + 1 o p_155222_ + 2 o p_155223_ +czm net/minecraft/world/level/block/entity/BlastFurnaceBlockEntity + (Lgu;Ldcb;)V + 0 o p_155225_ + 1 o p_155226_ + a (Lcfz;)I m_7743_ + 0 o p_58852_ + a (ILbyn;)Lcbf; m_6555_ + 0 o p_58849_ + 1 o p_58850_ + g ()Lsw; m_6820_ +czn net/minecraft/world/level/block/entity/BlockEntity + c f_58854_ + d f_58855_ + e f_58856_ + o f_58857_ + p f_58858_ + q f_58859_ + ()V + static + (Lczp;Lgu;Ldcb;)V + 0 o p_155228_ + 1 o p_155229_ + 2 o p_155230_ + a (Lqr;)V m_142466_ + 0 o p_155245_ + a (Lcmm;Lgu;Ldcb;)V m_155232_ + static + 0 o p_155233_ + 1 o p_155234_ + 2 o p_155235_ + a (Lqr;Ljava/lang/String;Lczn;)Lczn; m_155246_ + static + 0 o p_155247_ + 1 o p_155248_ + 2 o p_155249_ + a (Lgu;Ldcb;Ljava/lang/String;Lczp;)Lczn; m_155236_ + static + 0 o p_155237_ + 1 o p_155238_ + 2 o p_155239_ + 3 o p_155240_ + a (Lgu;Ldcb;Lqr;)Lczn; m_155241_ + static + 0 o p_155242_ + 1 o p_155243_ + 2 o p_155244_ + a (Lqr;Lczp;)V m_187468_ + static + 0 o p_187469_ + 1 o p_187470_ + a (Ljava/lang/String;)Lczn; m_58881_ + static + 0 o p_58882_ + a (Lcmm;)V m_142339_ + 0 o p_155231_ + a (Lp;)V m_58886_ + 0 o p_58887_ + a_ (II)Z m_7531_ + 0 o p_58889_ + 1 o p_58890_ + ao_ ()Lqr; m_5995_ + ap_ ()V m_7651_ + b (Lqr;)V m_183515_ + 0 o p_187471_ + b (Ldcb;)V m_155250_ + 0 o p_155251_ + c (Lqr;)Lgu; m_187472_ + static + 0 o p_187473_ + d (Lqr;)V m_187474_ + 0 o p_187475_ + e ()V m_6596_ + e (Lqr;)V m_187478_ + 0 o p_187479_ + e (Lcfz;)V m_187476_ + 0 o p_187477_ + f ()Ljava/lang/String; m_257329_ + h ()Luo; m_58483_ + k ()Lcmm; m_58904_ + l ()Z m_58898_ + m ()Lqr; m_187480_ + n ()Lqr; m_187481_ + o ()Lqr; m_187482_ + p ()Lgu; m_58899_ + q ()Ldcb; m_58900_ + r ()Z m_58901_ + s ()V m_6339_ + t ()Z m_6326_ + u ()Lczp; m_58903_ +czo net/minecraft/world/level/block/entity/BlockEntityTicker + tick (Lcmm;Lgu;Ldcb;Lczn;)V m_155252_ + 0 o p_155253_ + 1 o p_155254_ + 2 o p_155255_ + 3 o p_155256_ +czp net/minecraft/world/level/block/entity/BlockEntityType + A f_58942_ + B f_58906_ + C f_58907_ + D f_58908_ + E f_58909_ + F f_58910_ + G f_58911_ + H f_58912_ + I f_155257_ + J f_276581_ + K f_222758_ + L f_222759_ + M f_244310_ + N f_271323_ + O f_271291_ + P f_58913_ + Q f_58914_ + R f_58915_ + S f_58916_ + a f_58917_ + b f_58918_ + c f_58919_ + d f_58920_ + e f_58921_ + f f_58922_ + g f_58923_ + h f_58924_ + i f_244529_ + j f_58925_ + k f_58926_ + l f_58927_ + m f_58928_ + n f_58929_ + o f_58930_ + p f_58931_ + q f_58932_ + r f_58933_ + s f_58934_ + t f_58935_ + u f_58936_ + v f_58937_ + w f_58938_ + x f_58939_ + y f_58940_ + z f_58941_ + ()V + static + (Lczp$a;Ljava/util/Set;Lcom/mojang/datafixers/types/Type;)V + 0 o p_155259_ + 1 o p_155260_ + 2 o p_155261_ + a (Lczp;)Lacq; m_58954_ + static + 0 o p_58955_ + a (Lcls;Lgu;)Lczn; m_58949_ + 0 o p_58950_ + 1 o p_58951_ + a (Ldcb;)Z m_155262_ + 0 o p_155263_ + a (Lgu;Ldcb;)Lczn; m_155264_ + 0 o p_155265_ + 1 o p_155266_ + a (Ljava/lang/String;Lczp$b;)Lczp; m_58956_ + static + 0 o p_58957_ + 1 o p_58958_ +czp$a net/minecraft/world/level/block/entity/BlockEntityType$BlockEntitySupplier + create (Lgu;Ldcb;)Lczn; m_155267_ + 0 o p_155268_ + 1 o p_155269_ +czp$b net/minecraft/world/level/block/entity/BlockEntityType$Builder + a f_58959_ + b f_58960_ + (Lczp$a;Ljava/util/Set;)V + 0 o p_155271_ + 1 o p_155272_ + a (Lcom/mojang/datafixers/types/Type;)Lczp; m_58966_ + 0 o p_58967_ + a (Lczp$a;[Lcpn;)Lczp$b; m_155273_ + static + 0 o p_155274_ + 1 o p_155275_ +czq net/minecraft/world/level/block/entity/BrewingStandBlockEntity + c f_155276_ + d f_155277_ + e f_155278_ + f f_155279_ + g f_58971_ + h f_155280_ + i f_155281_ + j f_58972_ + k f_58973_ + l f_58974_ + m f_58975_ + n f_58976_ + r f_58977_ + s f_58978_ + t f_58979_ + ()V + static + (Lgu;Ldcb;)V + 0 o p_155283_ + 1 o p_155284_ + a (ILcfz;)V m_6836_ + 0 o p_58993_ + 1 o p_58994_ + a (ILcfz;Lha;)Z m_7155_ + 0 o p_58996_ + 1 o p_58997_ + 2 o p_58998_ + a (Lhn;)Z m_155294_ + static + 0 o p_155295_ + a (Lcmm;Lgu;Lhn;)V m_155290_ + static + 0 o p_155291_ + 1 o p_155292_ + 2 o p_155293_ + a (Lqr;)V m_142466_ + 0 o p_155297_ + a (ILbyn;)Lcbf; m_6555_ + 0 o p_58990_ + 1 o p_58991_ + a (I)Lcfz; m_8020_ + 0 o p_58985_ + a (Lbyo;)Z m_6542_ + 0 o p_59000_ + a (II)Lcfz; m_7407_ + 0 o p_58987_ + 1 o p_58988_ + a ()V m_6211_ + a (Lha;)[I m_7071_ + 0 o p_59010_ + a (Lcmm;Lgu;Ldcb;Lczq;)V m_155285_ + static + 0 o p_155286_ + 1 o p_155287_ + 2 o p_155288_ + 3 o p_155289_ + ab_ ()Z m_7983_ + b (Lqr;)V m_183515_ + 0 o p_187484_ + b ()I m_6643_ + b (I)Lcfz; m_8016_ + 0 o p_59015_ + b (ILcfz;Lha;)Z m_7157_ + 0 o p_59020_ + 1 o p_59021_ + 2 o p_59022_ + b (ILcfz;)Z m_7013_ + 0 o p_59017_ + 1 o p_59018_ + f ()[Z m_59029_ + g ()Lsw; m_6820_ +czq$1 net/minecraft/world/level/block/entity/BrewingStandBlockEntity$1 + a f_59033_ + (Lczq;)V + 0 o p_59035_ + a (I)I m_6413_ + 0 o p_59038_ + a (II)V m_8050_ + 0 o p_59040_ + 1 o p_59041_ + a ()I m_6499_ +czr net/minecraft/world/level/block/entity/BrushableBlockEntity + a f_276497_ + b f_276647_ + c f_276481_ + d f_276606_ + e f_276577_ + f f_276551_ + g f_276499_ + h f_276583_ + i f_276531_ + j f_276679_ + k f_276557_ + l f_276563_ + m f_276638_ + n f_276466_ + r f_276487_ + ()V + static + (Lgu;Ldcb;)V + 0 o p_277558_ + 1 o p_278093_ + a (Lqr;)V m_142466_ + 0 o p_277597_ + a (JLbyo;Lha;)Z m_276923_ + 0 o p_277786_ + 1 o p_277520_ + 2 o p_277424_ + a (Lacq;J)V m_277049_ + 0 o p_277611_ + 1 o p_277991_ + a (Lbyo;)V m_276797_ + 0 o p_277940_ + ao_ ()Lqr; m_5995_ + b (Lbyo;)V m_276980_ + 0 o p_277549_ + b (Lqr;)V m_183515_ + 0 o p_277339_ + c (Lbyo;)V m_276934_ + 0 o p_278006_ + c ()V m_277175_ + d (Lqr;)Z m_276996_ + 0 o p_277740_ + d ()Luz; m_58483_ + e (Lqr;)Z m_277014_ + 0 o p_277591_ + f ()Lha; m_277042_ + g ()Lcfz; m_277047_ + h ()Luo; m_58483_ + i ()I m_276942_ +czs net/minecraft/world/level/block/entity/CalibratedSculkSensorBlockEntity + (Lgu;Ldcb;)V + 0 o p_277459_ + 1 o p_278100_ + c ()Ldgu$d; m_280175_ +czs$a net/minecraft/world/level/block/entity/CalibratedSculkSensorBlockEntity$VibrationUser + a f_279588_ + (Lczs;Lgu;)V + 0 o p_282767_ + 1 o p_281602_ + a (Laif;Lgu;Ldgl;Ldgl$a;)Z m_280080_ + 0 o p_282061_ + 1 o p_282550_ + 2 o p_281789_ + 3 o p_281456_ + a (Lcmm;Lgu;Ldcb;)I m_280214_ + 0 o p_282204_ + 1 o p_282397_ + 2 o p_282240_ + a ()I m_280351_ +czt net/minecraft/world/level/block/entity/CampfireBlockEntity + a f_155298_ + b f_155299_ + c f_59042_ + d f_59043_ + e f_59044_ + f f_222760_ + (Lgu;Ldcb;)V + 0 o p_155301_ + 1 o p_155302_ + a (Lbfj;Lcfz;I)Z m_238284_ + 0 o p_238285_ + 1 o p_238286_ + 2 o p_238287_ + a (Lqr;)V m_142466_ + 0 o p_155312_ + a (Lbdq;Lcmm;Lciq;)Lcfz; m_268985_ + static + 0 o p_270052_ + 1 o p_270053_ + 2 o p_270054_ + a (Lcfz;)Ljava/util/Optional; m_59051_ + 0 o p_59052_ + a ()V m_6211_ + a (Lcmm;Lgu;Ldcb;Lczt;)V m_155306_ + static + 0 o p_155307_ + 1 o p_155308_ + 2 o p_155309_ + 3 o p_155310_ + ao_ ()Lqr; m_5995_ + b (Lqr;)V m_183515_ + 0 o p_187486_ + b (Lcmm;Lgu;Ldcb;Lczt;)V m_155313_ + static + 0 o p_155314_ + 1 o p_155315_ + 2 o p_155316_ + 3 o p_155317_ + c (Lcmm;Lgu;Ldcb;Lczt;)V m_155318_ + static + 0 o p_155319_ + 1 o p_155320_ + 2 o p_155321_ + 3 o p_155322_ + c ()Lhn; m_59065_ + d ()Luz; m_58483_ + f ()V m_59066_ + g ()V m_59069_ + h ()Luo; m_58483_ +czu net/minecraft/world/level/block/entity/ChestBlockEntity + c f_155323_ + f f_59073_ + g f_155324_ + j f_155325_ + (Lgu;Ldcb;)V + 0 o p_155331_ + 1 o p_155332_ + (Lczp;Lgu;Ldcb;)V + 0 o p_155327_ + 1 o p_155328_ + 2 o p_155329_ + a (Lczu;Lczu;)V m_59103_ + static + 0 o p_59104_ + 1 o p_59105_ + a (Lcmm;Lgu;Ldcb;II)V m_142151_ + 0 o p_155333_ + 1 o p_155334_ + 2 o p_155335_ + 3 o p_155336_ + 4 o p_155337_ + a (Lqr;)V m_142466_ + 0 o p_155349_ + a (Lcls;Lgu;)I m_59086_ + static + 0 o p_59087_ + 1 o p_59088_ + a (ILbyn;)Lcbf; m_6555_ + 0 o p_59082_ + 1 o p_59083_ + a (Lhn;)V m_6520_ + 0 o p_59110_ + a (F)F m_6683_ + 0 o p_59080_ + a (Lcmm;Lgu;Ldcb;Lamg;)V m_155338_ + static + 0 o p_155339_ + 1 o p_155340_ + 2 o p_155341_ + 3 o p_155342_ + a (Lcmm;Lgu;Ldcb;Lczu;)V m_155343_ + static + 0 o p_155344_ + 1 o p_155345_ + 2 o p_155346_ + 3 o p_155347_ + a_ (II)Z m_7531_ + 0 o p_59114_ + 1 o p_59115_ + b (Lqr;)V m_183515_ + 0 o p_187489_ + b ()I m_6643_ + c (Lbyo;)V m_5785_ + 0 o p_59118_ + d_ (Lbyo;)V m_5856_ + 0 o p_59120_ + f ()Lhn; m_7086_ + g ()Lsw; m_6820_ + i ()V m_155350_ +czu$1 net/minecraft/world/level/block/entity/ChestBlockEntity$1 + a f_155351_ + (Lczu;)V + 0 o p_155353_ + a (Lcmm;Lgu;Ldcb;II)V m_142148_ + 0 o p_155361_ + 1 o p_155362_ + 2 o p_155363_ + 3 o p_155364_ + 4 o p_155365_ + a (Lbyo;)Z m_142718_ + 0 o p_155355_ + a (Lcmm;Lgu;Ldcb;)V m_142292_ + 0 o p_155357_ + 1 o p_155358_ + 2 o p_155359_ + b (Lcmm;Lgu;Ldcb;)V m_142289_ + 0 o p_155367_ + 1 o p_155368_ + 2 o p_155369_ +czv net/minecraft/world/level/block/entity/ChestLidController + a f_155370_ + b f_155371_ + c f_155372_ + ()V + a (F)F m_155375_ + 0 o p_155376_ + a ()V m_155374_ + a (Z)V m_155377_ + 0 o p_155378_ +czw net/minecraft/world/level/block/entity/ChiseledBookShelfBlockEntity + c f_244647_ + d f_254661_ + e f_260576_ + f f_262317_ + ()V + static + (Lgu;Ldcb;)V + 0 o p_249541_ + 1 o p_251752_ + a (ILcfz;)V m_6836_ + 0 o p_256610_ + 1 o p_255789_ + a (Lbdq;ILcfz;)Z m_271862_ + 0 o p_282172_ + 1 o p_281387_ + 2 o p_283257_ + a (Lcfz;Lbdq;Lcfz;)Z m_280244_ + static + 0 o p_282524_ + 1 o p_283363_ + 2 o p_281577_ + a (Lqr;)V m_142466_ + 0 o p_249911_ + a (I)Lcfz; m_8020_ + 0 o p_256203_ + a (Lbyo;)Z m_6542_ + 0 o p_256481_ + a ()V m_6211_ + a (II)Lcfz; m_7407_ + 0 o p_255828_ + 1 o p_255673_ + ab_ ()Z m_7983_ + ac_ ()I m_6893_ + b (Lqr;)V m_183515_ + 0 o p_251872_ + b ()I m_6643_ + b (I)Lcfz; m_8016_ + 0 o p_255874_ + b (ILcfz;)Z m_7013_ + 0 o p_256567_ + 1 o p_255922_ + c (I)V m_261204_ + 0 o p_261806_ + f ()I m_260842_ + g ()I m_262444_ +czx net/minecraft/world/level/block/entity/CommandBlockEntity + a f_59123_ + b f_59124_ + c f_59125_ + d f_59127_ + (Lgu;Ldcb;)V + 0 o p_155380_ + 1 o p_155381_ + a (Lqr;)V m_142466_ + 0 o p_155383_ + a (Z)V m_59135_ + 0 o p_59136_ + b (Lqr;)V m_183515_ + 0 o p_187491_ + b (Z)V m_59137_ + 0 o p_59138_ + c ()Lcln; m_59141_ + d ()Z m_59142_ + f ()Z m_59143_ + g ()V m_59144_ + i ()Z m_59145_ + j ()Z m_59146_ + t ()Z m_6326_ + v ()Lczx$a; m_59148_ + w ()Z m_59151_ + x ()V m_59152_ +czx$1 net/minecraft/world/level/block/entity/CommandBlockEntity$1 + b f_59153_ + (Lczx;)V + 0 o p_59155_ + a (Ljava/lang/String;)V m_6590_ + 0 o p_59157_ + e ()Laif; m_5991_ + f ()V m_7368_ + g ()Leei; m_6607_ + i ()Lds; m_6712_ + j ()Z m_288209_ +czx$a net/minecraft/world/level/block/entity/CommandBlockEntity$Mode + a SEQUENCE + b AUTO + c REDSTONE + d $VALUES + ()V + static + (Ljava/lang/String;I)V + 0 o p_59168_ + 1 o p_59169_ + a ()[Lczx$a; m_155384_ + static + valueOf (Ljava/lang/String;)Lczx$a; valueOf + static + 0 o p_59171_ + values ()[Lczx$a; values + static +czy net/minecraft/world/level/block/entity/ComparatorBlockEntity + a f_59173_ + (Lgu;Ldcb;)V + 0 o p_155386_ + 1 o p_155387_ + a (I)V m_59175_ + 0 o p_59176_ + a (Lqr;)V m_142466_ + 0 o p_155389_ + b (Lqr;)V m_183515_ + 0 o p_187493_ + c ()I m_59182_ +czz net/minecraft/world/level/block/entity/ConduitBlockEntity + a f_59183_ + b f_155390_ + c f_155391_ + d f_155392_ + e f_155393_ + f f_155394_ + g f_155395_ + h f_59184_ + i f_59185_ + j f_59186_ + k f_59187_ + l f_59188_ + m f_59189_ + n f_59190_ + r f_59191_ + ()V + static + (Lgu;Ldcb;)V + 0 o p_155397_ + 1 o p_155398_ + a (Lcmm;Lgu;Ldcb;Lczz;)V m_155403_ + static + 0 o p_155404_ + 1 o p_155405_ + 2 o p_155406_ + 3 o p_155407_ + a (Lcmm;Lgu;Ljava/util/List;)Z m_155414_ + static + 0 o p_155415_ + 1 o p_155416_ + 2 o p_155417_ + a (Lqr;)V m_142466_ + 0 o p_155437_ + a (Lcmm;Lgu;Lczz;)V m_155399_ + static + 0 o p_155400_ + 1 o p_155401_ + 2 o p_155402_ + a (Z)V m_59214_ + 0 o p_59215_ + a (Lcmm;Lgu;Ljava/util/List;Lbfj;I)V m_155418_ + static + 0 o p_155419_ + 1 o p_155420_ + 2 o p_155421_ + 3 o p_155422_ + 4 o p_155423_ + a (Lcmm;Lgu;Ljava/util/UUID;)Lbfz; m_155424_ + static + 0 o p_155425_ + 1 o p_155426_ + 2 o p_155427_ + a (Lgu;)Leed; m_155431_ + static + 0 o p_155432_ + a (F)F m_59197_ + 0 o p_59198_ + a (Lczz;Ljava/util/List;)V m_155428_ + static + 0 o p_155429_ + 1 o p_155430_ + a (Lcmm;Lgu;Ldcb;Ljava/util/List;Lczz;)V m_155408_ + static + 0 o p_155409_ + 1 o p_155410_ + 2 o p_155411_ + 3 o p_155412_ + 4 o p_155413_ + a (Ljava/util/UUID;Lbfz;)Z m_289178_ + static + 0 o p_289509_ + 1 o p_289510_ + a (Lbfz;)Z m_289179_ + static + 0 o p_289511_ + ao_ ()Lqr; m_5995_ + b (Lcmm;Lgu;Ljava/util/List;)V m_155443_ + static + 0 o p_155444_ + 1 o p_155445_ + 2 o p_155446_ + b (Lqr;)V m_183515_ + 0 o p_187495_ + b (Lcmm;Lgu;Ldcb;Lczz;)V m_155438_ + static + 0 o p_155439_ + 1 o p_155440_ + 2 o p_155441_ + 3 o p_155442_ + c ()Luz; m_58483_ + d ()Z m_59216_ + f ()Z m_59217_ + h ()Luo; m_58483_ +d com/mojang/math/FieldsAreNonnullByDefault +da net/minecraft/advancements/critereon/SummonedEntityTrigger + a f_68252_ + ()V + static + ()V + a (Ldzk;Lda$a;)Z m_68263_ + static + 0 o p_68264_ + 1 o p_68265_ + a ()Lacq; m_7295_ + a (Laig;Lbfj;)V m_68256_ + 0 o p_68257_ + 1 o p_68258_ + a (Lcom/google/gson/JsonObject;Lba;Lbe;)Lda$a; m_7214_ + 0 o p_286669_ + 1 o p_286745_ + 2 o p_286637_ + b (Lcom/google/gson/JsonObject;Lba;Lbe;)Lar; m_7214_ + 0 o p_286898_ + 1 o p_286368_ + 2 o p_286829_ +da$a net/minecraft/advancements/critereon/SummonedEntityTrigger$TriggerInstance + a f_68271_ + (Lba;Lba;)V + 0 o p_286853_ + 1 o p_286838_ + a (Lbo$a;)Lda$a; m_68275_ + static + 0 o p_68276_ + a (Lct;)Lcom/google/gson/JsonObject; m_7683_ + 0 o p_68278_ + a (Ldzk;)Z m_68279_ + 0 o p_68280_ +daa net/minecraft/world/level/block/entity/ContainerOpenersCounter + a f_155447_ + b f_155448_ + ()V + a (Lcmm;Lgu;Ldcb;II)V m_142148_ + 0 o p_155463_ + 1 o p_155464_ + 2 o p_155465_ + 3 o p_155466_ + 4 o p_155467_ + a (Lbyo;)Z m_142718_ + 0 o p_155451_ + a (Lcmm;Lgu;)I m_155457_ + 0 o p_155458_ + 1 o p_155459_ + a ()I m_155450_ + a (Lcmm;Lgu;Ldcb;)V m_142292_ + 0 o p_155460_ + 1 o p_155461_ + 2 o p_155462_ + a (Lbyo;Lcmm;Lgu;Ldcb;)V m_155452_ + 0 o p_155453_ + 1 o p_155454_ + 2 o p_155455_ + 3 o p_155456_ + b (Lcmm;Lgu;Ldcb;)V m_142289_ + 0 o p_155473_ + 1 o p_155474_ + 2 o p_155475_ + b (Lbyo;Lcmm;Lgu;Ldcb;)V m_155468_ + 0 o p_155469_ + 1 o p_155470_ + 2 o p_155471_ + 3 o p_155472_ + c (Lcmm;Lgu;Ldcb;)V m_155476_ + 0 o p_155477_ + 1 o p_155478_ + 2 o p_155479_ + d (Lcmm;Lgu;Ldcb;)V m_155480_ + static + 0 o p_155481_ + 1 o p_155482_ + 2 o p_155483_ +dab net/minecraft/world/level/block/entity/DaylightDetectorBlockEntity + (Lgu;Ldcb;)V + 0 o p_155485_ + 1 o p_155486_ +dac net/minecraft/world/level/block/entity/DecoratedPotBlockEntity + a f_271111_ + b f_283890_ + (Lgu;Ldcb;)V + 0 o p_273660_ + 1 o p_272831_ + a (Lqr;)V m_142466_ + 0 o p_272924_ + a (Lcfz;)V m_271870_ + 0 o p_273109_ + ao_ ()Lqr; m_5995_ + b (Lqr;)V m_183515_ + 0 o p_272957_ + c ()Luz; m_58483_ + d ()Lha; m_271886_ + f ()Ldac$a; m_284296_ + h ()Luo; m_58483_ +dac$a net/minecraft/world/level/block/entity/DecoratedPotBlockEntity$Decorations + a f_283770_ + b f_283886_ + c f_283809_ + d f_283873_ + e f_283810_ + ()V + static + (Lcfu;Lcfu;Lcfu;Lcfu;)V + 0 o f_283886_ + 1 o f_283809_ + 2 o f_283873_ + 3 o f_283810_ + a (Lqx;I)Lcfu; m_284538_ + static + 0 o p_285179_ + 1 o p_285060_ + a (Lqr;)Lqr; m_284135_ + 0 o p_285011_ + a ()Ljava/util/stream/Stream; m_284195_ + a (Lqx;Lcfu;)V m_284442_ + static + 0 o p_284995_ + 1 o p_285298_ + b (Lqr;)Ldac$a; m_284207_ + static + 0 o p_284959_ + b ()Lcfu; f_283886_ + c ()Lcfu; f_283809_ + d ()Lcfu; f_283873_ + e ()Lcfu; f_283810_ + equals (Ljava/lang/Object;)Z equals + 0 o p_285509_ + hashCode ()I hashCode + toString ()Ljava/lang/String; toString +dad net/minecraft/world/level/block/entity/DecoratedPotPatterns + A f_271431_ + B f_276511_ + C f_276620_ + D f_276550_ + E f_276639_ + F f_276482_ + G f_276523_ + H f_276534_ + I f_276578_ + J f_276474_ + K f_276676_ + L f_276687_ + M f_276584_ + N f_271499_ + O f_276682_ + P f_276640_ + Q f_271246_ + R f_276644_ + S f_271367_ + a f_271266_ + b f_271192_ + c f_271245_ + d f_276473_ + e f_271355_ + f f_271295_ + g f_276417_ + h f_276453_ + i f_276515_ + j f_276429_ + k f_276483_ + l f_276663_ + m f_276529_ + n f_276623_ + o f_276681_ + p f_276576_ + q f_276456_ + r f_276418_ + s f_271184_ + t f_276437_ + u f_276641_ + v f_271411_ + w f_276521_ + x f_271149_ + y f_276653_ + z f_271238_ + ()V + static + ()V + a (Ljava/lang/String;)Lacp; m_271723_ + static + 0 o p_272919_ + a (Lacp;)Lacq; m_271757_ + static + 0 o p_273198_ + a (Lcfu;)Lacp; m_271696_ + static + 0 o p_273094_ + a (Lhr;)Ljava/lang/String; m_271825_ + static + 0 o p_273479_ +dae net/minecraft/world/level/block/entity/DispenserBlockEntity + c f_155487_ + f f_59228_ + (Lgu;Ldcb;)V + 0 o p_155493_ + 1 o p_155494_ + (Lczp;Lgu;Ldcb;)V + 0 o p_155489_ + 1 o p_155490_ + 2 o p_155491_ + a (Lcfz;)I m_59237_ + 0 o p_59238_ + a (Lhn;)V m_6520_ + 0 o p_59243_ + a (Lqr;)V m_142466_ + 0 o p_155496_ + a (Lapf;)I m_222761_ + 0 o p_222762_ + a (ILbyn;)Lcbf; m_6555_ + 0 o p_59235_ + 1 o p_59236_ + b (Lqr;)V m_183515_ + 0 o p_187498_ + b ()I m_6643_ + f ()Lhn; m_7086_ + g ()Lsw; m_6820_ +daf net/minecraft/world/level/block/entity/DropperBlockEntity + (Lgu;Ldcb;)V + 0 o p_155498_ + 1 o p_155499_ + g ()Lsw; m_6820_ +dag net/minecraft/world/level/block/entity/EnchantmentTableBlockEntity + a f_59251_ + b f_59252_ + c f_59253_ + d f_59254_ + e f_59255_ + f f_59256_ + g f_59257_ + h f_59258_ + i f_59259_ + j f_59260_ + k f_59261_ + l f_59262_ + ()V + static + (Lgu;Ldcb;)V + 0 o p_155501_ + 1 o p_155502_ + Z ()Lsw; m_7755_ + a (Lsw;)V m_59272_ + 0 o p_59273_ + a (Lqr;)V m_142466_ + 0 o p_155509_ + a (Lcmm;Lgu;Ldcb;Ldag;)V m_155503_ + static + 0 o p_155504_ + 1 o p_155505_ + 2 o p_155506_ + 3 o p_155507_ + ab ()Lsw; m_7770_ + b (Lqr;)V m_183515_ + 0 o p_187500_ +dah net/minecraft/world/level/block/entity/EnderChestBlockEntity + a f_155510_ + b f_155511_ + (Lgu;Ldcb;)V + 0 o p_155513_ + 1 o p_155514_ + a (F)F m_6683_ + 0 o p_59281_ + a (Lcmm;Lgu;Ldcb;Ldah;)V m_155517_ + static + 0 o p_155518_ + 1 o p_155519_ + 2 o p_155520_ + 3 o p_155521_ + a (Lbyo;)V m_155515_ + 0 o p_155516_ + a_ (II)Z m_7531_ + 0 o p_59285_ + 1 o p_59286_ + b (Lbyo;)V m_155522_ + 0 o p_155523_ + c (Lbyo;)Z m_59282_ + 0 o p_59283_ + c ()V m_155524_ +dah$1 net/minecraft/world/level/block/entity/EnderChestBlockEntity$1 + a f_155525_ + (Ldah;)V + 0 o p_155527_ + a (Lcmm;Lgu;Ldcb;II)V m_142148_ + 0 o p_155535_ + 1 o p_155536_ + 2 o p_155537_ + 3 o p_155538_ + 4 o p_155539_ + a (Lbyo;)Z m_142718_ + 0 o p_155529_ + a (Lcmm;Lgu;Ldcb;)V m_142292_ + 0 o p_155531_ + 1 o p_155532_ + 2 o p_155533_ + b (Lcmm;Lgu;Ldcb;)V m_142289_ + 0 o p_155541_ + 1 o p_155542_ + 2 o p_155543_ +dai net/minecraft/world/level/block/entity/FurnaceBlockEntity + (Lgu;Ldcb;)V + 0 o p_155545_ + 1 o p_155546_ + a (ILbyn;)Lcbf; m_6555_ + 0 o p_59293_ + 1 o p_59294_ + g ()Lsw; m_6820_ +daj net/minecraft/world/level/block/entity/HangingSignBlockEntity + a f_244379_ + b f_244305_ + (Lgu;Ldcb;)V + 0 o p_250603_ + 1 o p_251674_ + c ()I m_245065_ + d ()I m_245123_ +dak net/minecraft/world/level/block/entity/Hopper + c f_59296_ + x_ f_59297_ + y_ f_59298_ + ()V + static + G ()D m_6343_ + I ()D m_6358_ + J ()D m_6446_ + aq_ ()Lefb; m_59300_ +dal net/minecraft/world/level/block/entity/HopperBlockEntity + f f_155547_ + g f_155548_ + j f_59301_ + k f_59302_ + l f_59303_ + (Lgu;Ldcb;)V + 0 o p_155550_ + 1 o p_155551_ + G ()D m_6343_ + I ()D m_6358_ + J ()D m_6446_ + a (Lcmm;Ldak;)Z m_155552_ + static + 0 o p_155553_ + 1 o p_155554_ + a (Lqr;)V m_142466_ + 0 o p_155588_ + a (Lcmm;DDD)Lbdq; m_59347_ + static + 0 o p_59348_ + 1 o p_59349_ + 2 o p_59350_ + 3 o p_59351_ + a (Lbdq;Lha;)Ljava/util/stream/IntStream; m_59339_ + static + 0 o p_59340_ + 1 o p_59341_ + a (Lbdq;Lbdq;Lcfz;Lha;)Lcfz; m_59326_ + static + 0 o p_59327_ + 1 o p_59328_ + 2 o p_59329_ + 3 o p_59330_ + a (Lbdq;Lbdq;Lcfz;ILha;)Z m_271906_ + static + 0 o p_273433_ + 1 o p_273542_ + 2 o p_273400_ + 3 o p_273519_ + 4 o p_273088_ + a (ILbyn;)Lcbf; m_6555_ + 0 o p_59312_ + 1 o p_59313_ + a (Ldal;Lbfj;)Z m_155584_ + static + 0 o p_155585_ + 1 o p_155586_ + a (Lcmm;Lgu;Ldcb;Ldal;Ljava/util/function/BooleanSupplier;)Z m_155578_ + static + 0 o p_155579_ + 1 o p_155580_ + 2 o p_155581_ + 3 o p_155582_ + 4 o p_155583_ + a (II)Lcfz; m_7407_ + 0 o p_59309_ + 1 o p_59310_ + a (Lcmm;Lgu;)Lbdq; m_59390_ + static + 0 o p_59391_ + 1 o p_59392_ + a (Ldak;Lbdq;Lha;I)Z m_59359_ + static + 0 o p_59360_ + 1 o p_59361_ + 2 o p_59362_ + 3 o p_59363_ + a (ILcfz;)V m_6836_ + 0 o p_59315_ + 1 o p_59316_ + a (Lcmm;Lgu;Ldcb;Ldal;)V m_155573_ + static + 0 o p_155574_ + 1 o p_155575_ + 2 o p_155576_ + 3 o p_155577_ + a (Lcmm;Ldal;)Z m_155559_ + static + 0 o p_155560_ + 1 o p_155561_ + a (Lbdq;Lbvh;)Z m_59331_ + static + 0 o p_59332_ + 1 o p_59333_ + a (Lcfz;Lcfz;)Z m_59344_ + static + 0 o p_59345_ + 1 o p_59346_ + a (Lbdq;Lcfz;ILha;)Z m_59334_ + static + 0 o p_59335_ + 1 o p_59336_ + 2 o p_59337_ + 3 o p_59338_ + a (Lcmm;Lgu;Ldcb;Lbfj;Ldal;)V m_155567_ + static + 0 o p_155568_ + 1 o p_155569_ + 2 o p_155570_ + 3 o p_155571_ + 4 o p_155572_ + a (Lcmm;Ldak;Leed;)Ljava/util/stream/Stream; m_155555_ + static + 0 o p_155556_ + 1 o p_155557_ + 2 o p_155558_ + a (Lbdq;I)Z m_59317_ + static + 0 o p_59318_ + 1 o p_59319_ + a (Lhn;)V m_6520_ + 0 o p_59371_ + a (Ldak;Lbdq;ILha;)Z m_59354_ + static + 0 o p_59355_ + 1 o p_59356_ + 2 o p_59357_ + 3 o p_59358_ + a (Lcmm;Lgu;Ldcb;Lbdq;)Z m_155562_ + static + 0 o p_155563_ + 1 o p_155564_ + 2 o p_155565_ + 3 o p_155566_ + b (Lcmm;Ldak;)Ljava/util/List; m_155589_ + static + 0 o p_155590_ + 1 o p_155591_ + b (Lqr;)V m_183515_ + 0 o p_187502_ + b (Lbdq;Lha;)Z m_59385_ + static + 0 o p_59386_ + 1 o p_59387_ + b ()I m_6643_ + b (Lbdq;I)Z m_59377_ + static + 0 o p_59378_ + 1 o p_59379_ + b (Lbdq;Lbdq;Lcfz;ILha;)Lcfz; m_59320_ + static + 0 o p_59321_ + 1 o p_59322_ + 2 o p_59323_ + 3 o p_59324_ + 4 o p_59325_ + b (Lcmm;Lgu;Ldcb;)Lbdq; m_155592_ + static + 0 o p_155593_ + 1 o p_155594_ + 2 o p_155595_ + c (I)V m_59395_ + 0 o p_59396_ + c (Lcmm;Ldak;)Lbdq; m_155596_ + static + 0 o p_155597_ + 1 o p_155598_ + c (Lbdq;Lha;)Z m_59397_ + static + 0 o p_59398_ + 1 o p_59399_ + f ()Lhn; m_7086_ + g ()Lsw; m_6820_ + i ()Z m_59404_ + j ()Z m_59407_ + v ()Z m_59409_ +dam net/minecraft/world/level/block/entity/JigsawBlockEntity + a f_155599_ + b f_155600_ + c f_155601_ + d f_155602_ + e f_155603_ + f f_59411_ + g f_59412_ + h f_59413_ + i f_59414_ + j f_59415_ + (Lgu;Ldcb;)V + 0 o p_155605_ + 1 o p_155606_ + a (Ljava/lang/String;)V m_59431_ + 0 o p_59432_ + a (Laif;IZ)V m_59420_ + 0 o p_59421_ + 1 o p_59422_ + 2 o p_59423_ + a (Lqr;)V m_142466_ + 0 o p_155608_ + a (Ldam$a;)V m_59424_ + 0 o p_59425_ + a (Lacq;)V m_59435_ + 0 o p_59436_ + a (Lacp;)V m_222763_ + 0 o p_222764_ + ao_ ()Lqr; m_5995_ + b (Lqr;)V m_183515_ + 0 o p_187504_ + b (Lacq;)V m_59438_ + 0 o p_59439_ + c ()Lacq; m_59442_ + d ()Lacq; m_59443_ + f ()Lacp; m_222765_ + g ()Ljava/lang/String; m_59445_ + h ()Luo; m_58483_ + i ()Ldam$a; m_59446_ + j ()Luz; m_58483_ + v ()Ldam$a; m_155609_ +dam$a net/minecraft/world/level/block/entity/JigsawBlockEntity$JointType + a ROLLABLE + b ALIGNED + c f_59449_ + d $VALUES + ()V + static + (Ljava/lang/String;ILjava/lang/String;)V + 0 o p_59453_ + 1 o p_59454_ + 2 o p_59455_ + a (Ljava/lang/String;)Ljava/util/Optional; m_59457_ + static + 0 o p_59458_ + a ()Lsw; m_155610_ + a (Ljava/lang/String;Ldam$a;)Z m_59459_ + static + 0 o p_59460_ + 1 o p_59461_ + b ()[Ldam$a; m_155611_ + static + c ()Ljava/lang/String; m_7912_ + valueOf (Ljava/lang/String;)Ldam$a; valueOf + static + 0 o p_59463_ + values ()[Ldam$a; values + static +dan net/minecraft/world/level/block/entity/JukeboxBlockEntity + c f_271500_ + d f_271436_ + e f_238796_ + f f_238695_ + g f_238572_ + h f_238637_ + (Lgu;Ldcb;)V + 0 o p_155613_ + 1 o p_155614_ + a (ILcfz;)V m_6836_ + 0 o p_273461_ + 1 o p_273584_ + a (Lcmm;Lgu;Ldcb;Ldan;)V m_239937_ + static + 0 o p_239938_ + 1 o p_239939_ + 2 o p_239940_ + 3 o p_239941_ + a (Lbdq;ILcfz;)Z m_271862_ + 0 o p_273497_ + 1 o p_273168_ + 2 o p_273785_ + a (Lcgr;)Z m_271713_ + 0 o p_273267_ + a (Lqr;)V m_142466_ + 0 o p_155616_ + a (Lcfz;)V m_272139_ + 0 o p_272693_ + a (Lbfj;Z)V m_271871_ + 0 o p_273308_ + 1 o p_273038_ + a (I)Lcfz; m_8020_ + 0 o p_273280_ + a (Lbyo;)Z m_6542_ + 0 o p_273466_ + a (II)Lcfz; m_7407_ + 0 o p_273514_ + 1 o p_273414_ + a (Lcmm;Lgu;)V m_269320_ + 0 o p_270782_ + 1 o p_270940_ + ac_ ()I m_6893_ + b (Lcmm;Lgu;Ldcb;)V m_272276_ + 0 o p_273615_ + 1 o p_273143_ + 2 o p_273372_ + b (Lqr;)V m_183515_ + 0 o p_187507_ + b (ILcfz;)Z m_7013_ + 0 o p_273369_ + 1 o p_273689_ + f ()Z m_272025_ + g ()V m_271687_ + i ()V m_272252_ + v ()V m_272088_ + w ()Z m_239365_ +dao net/minecraft/world/level/block/entity/LecternBlockEntity + a f_155617_ + b f_155618_ + c f_155619_ + d f_155620_ + e f_59525_ + f f_59526_ + g f_59527_ + h f_59528_ + i f_59529_ + (Lgu;Ldcb;)V + 0 o p_155622_ + 1 o p_155623_ + H_ ()Lsw; m_5446_ + a (Lbyo;)Lds; m_59534_ + 0 o p_59535_ + a (I)V m_59532_ + 0 o p_59533_ + a (Lcfz;)V m_59536_ + 0 o p_59537_ + a (Lqr;)V m_142466_ + 0 o p_155625_ + a (Lcfz;Lbyo;)V m_59538_ + 0 o p_59539_ + 1 o p_59540_ + a ()V m_6211_ + b (Lcfz;Lbyo;)Lcfz; m_59554_ + 0 o p_59555_ + 1 o p_59556_ + b (Lqr;)V m_183515_ + 0 o p_187509_ + c ()Lcfz; m_59566_ + createMenu (ILbyn;Lbyo;)Lcbf; m_7208_ + 0 o p_59562_ + 1 o p_59563_ + 2 o p_59564_ + f ()Z m_59567_ + g ()I m_59568_ + i ()I m_59569_ + j ()V m_59570_ + t ()Z m_6326_ +dao$1 net/minecraft/world/level/block/entity/LecternBlockEntity$1 + c f_59572_ + (Ldao;)V + 0 o p_59574_ + a (I)Lcfz; m_8020_ + 0 o p_59580_ + a (ILcfz;)V m_6836_ + 0 o p_59585_ + 1 o p_59586_ + a (Lbyo;)Z m_6542_ + 0 o p_59588_ + a (II)Lcfz; m_7407_ + 0 o p_59582_ + 1 o p_59583_ + a ()V m_6211_ + ab_ ()Z m_7983_ + ac_ ()I m_6893_ + b (I)Lcfz; m_8016_ + 0 o p_59590_ + b ()I m_6643_ + b (ILcfz;)Z m_7013_ + 0 o p_59592_ + 1 o p_59593_ + e ()V m_6596_ +dao$2 net/minecraft/world/level/block/entity/LecternBlockEntity$2 + a f_59595_ + (Ldao;)V + 0 o p_59597_ + a (I)I m_6413_ + 0 o p_59600_ + a (II)V m_8050_ + 0 o p_59602_ + 1 o p_59603_ + a ()I m_6499_ +dap net/minecraft/world/level/block/entity/LidBlockEntity + a (F)F m_6683_ + 0 o p_59604_ +daq net/minecraft/world/level/block/entity/RandomizableContainerBlockEntity + d f_155626_ + e f_155627_ + h f_59605_ + i f_59606_ + (Lczp;Lgu;Ldcb;)V + 0 o p_155629_ + 1 o p_155630_ + 2 o p_155631_ + a (ILcfz;)V m_6836_ + 0 o p_59616_ + 1 o p_59617_ + a (Lcls;Lapf;Lgu;Lacq;)V m_222766_ + static + 0 o p_222767_ + 1 o p_222768_ + 2 o p_222769_ + 3 o p_222770_ + a (I)Lcfz; m_8020_ + 0 o p_59611_ + a (Lhn;)V m_6520_ + 0 o p_59625_ + a (Lbyo;)Z m_6542_ + 0 o p_59619_ + a (II)Lcfz; m_7407_ + 0 o p_59613_ + 1 o p_59614_ + a ()V m_6211_ + a (Lacq;J)V m_59626_ + 0 o p_59627_ + 1 o p_59628_ + ab_ ()Z m_7983_ + b (I)Lcfz; m_8016_ + 0 o p_59630_ + createMenu (ILbyn;Lbyo;)Lcbf; m_7208_ + 0 o p_59637_ + 1 o p_59638_ + 2 o p_59639_ + d (Lbyo;)Z m_7525_ + 0 o p_59643_ + d (Lqr;)Z m_59631_ + 0 o p_59632_ + e (Lbyo;)V m_59640_ + 0 o p_59641_ + e (Lqr;)Z m_59634_ + 0 o p_59635_ + f ()Lhn; m_7086_ +dar net/minecraft/world/level/block/entity/SculkCatalystBlockEntity + a f_279609_ + (Lgu;Ldcb;)V + 0 o p_222774_ + 1 o p_222775_ + a (Lcmm;Lgu;Ldcb;Ldar;)V m_222779_ + static + 0 o p_222780_ + 1 o p_222781_ + 2 o p_222782_ + 3 o p_222783_ + a (Lqr;)V m_142466_ + 0 o p_222787_ + b (Lqr;)V m_183515_ + 0 o p_222789_ + c ()Ldar$a; m_280052_ + d ()Ldgn; m_280052_ +dar$a net/minecraft/world/level/block/entity/SculkCatalystBlockEntity$CatalystListener + a f_279651_ + b f_279632_ + c f_279646_ + d f_279622_ + (Ldcb;Ldgp;)V + 0 o p_283224_ + 1 o p_283095_ + a (Laif;Ldgl;Ldgl$a;Leei;)Z m_214068_ + 0 o p_283470_ + 1 o p_282184_ + 2 o p_283014_ + 3 o p_282350_ + a ()Ldgp; m_142460_ + a (Lcmm;Lbfz;)V m_280407_ + 0 o p_281279_ + 1 o p_281378_ + a (Laif;Leei;)V m_289180_ + 0 o p_289512_ + 1 o p_289513_ + a (Laif;Lgu;Ldcb;Lapf;)V m_280309_ + 0 o p_281501_ + 1 o p_281448_ + 2 o p_281966_ + 3 o p_283606_ + b ()I m_142078_ + c ()Ldgn$a; m_247514_ + d ()Lcwi; m_280490_ +das net/minecraft/world/level/block/entity/SculkSensorBlockEntity + b f_222794_ + c f_279553_ + d f_279626_ + e f_279572_ + g f_155633_ + ()V + static + (Lgu;Ldcb;)V + 0 o p_155635_ + 1 o p_155636_ + (Lczp;Lgu;Ldcb;)V + 0 o p_277405_ + 1 o p_277502_ + 2 o p_277699_ + a (I)V m_222800_ + 0 o p_222801_ + a (Ldgu$a;)V m_279970_ + 0 o p_281146_ + a (Lqr;)V m_142466_ + 0 o p_155649_ + a (Lqr;Lrk;)V m_222818_ + static + 0 o p_222819_ + 1 o p_222820_ + b (Lqr;)V m_183515_ + 0 o p_187511_ + c ()Ldgu$d; m_280175_ + d ()Ldgn; m_280052_ + f ()I m_155656_ + g ()Ldgu$b; m_280052_ + gb ()Ldgu$a; m_280002_ + gc ()Ldgu$d; m_280445_ +das$a net/minecraft/world/level/block/entity/SculkSensorBlockEntity$VibrationUser + a f_279659_ + b f_279624_ + c f_279654_ + d f_279571_ + (Ldas;Lgu;)V + 0 o p_281952_ + 1 o p_283482_ + a (Laif;Lgu;Ldgl;Ldgl$a;)Z m_280080_ + 0 o p_282127_ + 1 o p_283268_ + 2 o p_282187_ + 3 o p_282856_ + a ()I m_280351_ + a (Laif;Lgu;Ldgl;Lbfj;Lbfj;F)V m_280271_ + 0 o p_282851_ + 1 o p_281608_ + 2 o p_282979_ + 3 o p_282123_ + 4 o p_283090_ + 5 o p_283130_ + b ()Ldgp; m_280010_ + d ()Z m_280076_ + e ()V m_280022_ + f ()Z m_280215_ +dat net/minecraft/world/level/block/entity/SculkShriekerBlockEntity + b f_222822_ + c f_222824_ + d f_222825_ + e f_222826_ + g f_222827_ + h f_222828_ + i f_222830_ + j f_222829_ + k f_222831_ + l f_279594_ + m f_279562_ + n f_279640_ + ()V + static + (Lgu;Ldcb;)V + 0 o p_222835_ + 1 o p_222836_ + a (Lit/unimi/dsi/fastutil/ints/Int2ObjectOpenHashMap;)V m_222865_ + static + 0 o p_222866_ + a (I)V m_222837_ + 0 o p_222838_ + a (Ldgu$a;)V m_279971_ + 0 o p_281147_ + a (Lqr;)V m_142466_ + 0 o p_222868_ + a (Lbfj;)Laig; m_222861_ + static + 0 o p_222862_ + a (Laif;Laig;)V m_222841_ + 0 o p_222842_ + 1 o p_222843_ + a (Lqr;Lrk;)V m_222869_ + static + 0 o p_222870_ + 1 o p_222871_ + a (Laif;)V m_222839_ + 0 o p_222840_ + a (Laif;Lbfj;)V m_222844_ + 0 o p_222845_ + 1 o p_222846_ + b (Lqr;)V m_183515_ + 0 o p_222878_ + b (Laif;)Z m_222872_ + 0 o p_222873_ + b (Laif;Laig;)Z m_222874_ + 0 o p_222875_ + 1 o p_222876_ + b (Lcmm;)V m_280188_ + 0 o p_281300_ + c (Laif;)Z m_222880_ + 0 o p_222881_ + c ()Ldgu$b; m_280052_ + d ()Ldgn; m_280052_ + gb ()Ldgu$a; m_280002_ + gc ()Ldgu$d; m_280445_ +dat$a net/minecraft/world/level/block/entity/SculkShriekerBlockEntity$VibrationUser + a f_279601_ + b f_279648_ + c f_279639_ + (Ldat;)V + 0 o p_281443_ + a (Laif;Lgu;Ldgl;Ldgl$a;)Z m_280080_ + 0 o p_281256_ + 1 o p_281528_ + 2 o p_282632_ + 3 o p_282914_ + a ()I m_280351_ + a (Laif;Lgu;Ldgl;Lbfj;Lbfj;F)V m_280271_ + 0 o p_283372_ + 1 o p_281679_ + 2 o p_282474_ + 3 o p_282286_ + 4 o p_281384_ + 5 o p_283119_ + b ()Ldgp; m_280010_ + c ()Lanl; m_280028_ + e ()V m_280022_ + f ()Z m_280215_ +dau net/minecraft/world/level/block/entity/ShulkerBoxBlockEntity + c f_155657_ + f f_155658_ + g f_155659_ + j f_155660_ + k f_155661_ + l f_155662_ + m f_155663_ + n f_155664_ + r f_59644_ + s f_59645_ + t f_59646_ + u f_59647_ + v f_59648_ + w f_59649_ + x f_59650_ + ()V + static + (Lgu;Ldcb;)V + 0 o p_155670_ + 1 o p_155671_ + (Lcen;Lgu;Ldcb;)V + 0 o p_155666_ + 1 o p_155667_ + 2 o p_155668_ + a (Lqr;)V m_142466_ + 0 o p_155678_ + a (ILbyn;)Lcbf; m_6555_ + 0 o p_59660_ + 1 o p_59661_ + a (F)F m_59657_ + 0 o p_59658_ + a (Ldcb;)Leed; m_59666_ + 0 o p_59667_ + a (ILcfz;Lha;)Z m_7155_ + 0 o p_59663_ + 1 o p_59664_ + 2 o p_59665_ + a (Lhn;)V m_6520_ + 0 o p_59674_ + a (Lcmm;Lgu;Ldcb;Ldau;)V m_155672_ + static + 0 o p_155673_ + 1 o p_155674_ + 2 o p_155675_ + 3 o p_155676_ + a (Lha;)[I m_7071_ + 0 o p_59672_ + a_ (II)Z m_7531_ + 0 o p_59678_ + 1 o p_59679_ + b (Lcmm;Lgu;Ldcb;)V m_155679_ + 0 o p_155680_ + 1 o p_155681_ + 2 o p_155682_ + b (Lqr;)V m_183515_ + 0 o p_187513_ + b ()I m_6643_ + b (ILcfz;Lha;)Z m_7157_ + 0 o p_59682_ + 1 o p_59683_ + 2 o p_59684_ + c (Lbyo;)V m_5785_ + 0 o p_59688_ + c (Lcmm;Lgu;Ldcb;)V m_155683_ + 0 o p_155684_ + 1 o p_155685_ + 2 o p_155686_ + d (Lcmm;Lgu;Ldcb;)V m_155687_ + static + 0 o p_155688_ + 1 o p_155689_ + 2 o p_155690_ + d_ (Lbyo;)V m_5856_ + 0 o p_59692_ + f (Lqr;)V m_59693_ + 0 o p_59694_ + f ()Lhn; m_7086_ + g ()Lsw; m_6820_ + i ()Ldau$a; m_59700_ + j ()Lcen; m_59701_ + v ()Z m_59702_ +dau$1 net/minecraft/world/level/block/entity/ShulkerBoxBlockEntity$1 + a f_59705_ + ()V + static +dau$a net/minecraft/world/level/block/entity/ShulkerBoxBlockEntity$AnimationStatus + a CLOSED + b OPENING + c OPENED + d CLOSING + e $VALUES + ()V + static + (Ljava/lang/String;I)V + 0 o p_59715_ + 1 o p_59716_ + a ()[Ldau$a; m_155691_ + static + valueOf (Ljava/lang/String;)Ldau$a; valueOf + static + 0 o p_59718_ + values ()[Ldau$a; values + static +dav net/minecraft/world/level/block/entity/SignBlockEntity + a f_276608_ + b f_243840_ + c f_243968_ + d f_59722_ + e f_276598_ + f f_276476_ + g f_276544_ + ()V + static + (Lgu;Ldcb;)V + 0 o p_155700_ + 1 o p_155701_ + (Lczp;Lgu;Ldcb;)V + 0 o p_249609_ + 1 o p_248914_ + 2 o p_249550_ + a (Lqr;)V m_142466_ + 0 o p_155716_ + a (Lbyo;Ljava/util/List;Ldaw;)Ldaw; m_276929_ + 0 o p_277396_ + 1 o p_277744_ + 2 o p_277359_ + a (Z)Ldaw; m_277157_ + 0 o p_277918_ + a (Lcmm;Lgu;Ldcb;Ldav;)V m_276836_ + static + 0 o p_277662_ + 1 o p_278050_ + 2 o p_277927_ + 3 o p_277928_ + a (Lbyo;)Z m_277202_ + 0 o p_277382_ + a (Ljava/util/UUID;)V m_155713_ + 0 o p_155714_ + a (Ldav;Lcmm;Ljava/util/UUID;)V m_276965_ + 0 o p_277656_ + 1 o p_277853_ + 2 o p_277849_ + a (Lbyo;Lcmm;Lgu;)Lds; m_278808_ + static + 0 o p_279428_ + 1 o p_279359_ + 2 o p_279430_ + a (Ldaw;)Ldaw; m_278182_ + 0 o p_278305_ + a (Lsw;)Lsw; m_278165_ + 0 o p_278307_ + a (ZLbyo;)Z m_278157_ + 0 o p_278276_ + 1 o p_278240_ + a (Lqr;Lrk;)V m_277084_ + static + 0 o p_277829_ + 1 o p_277389_ + a (Lbyo;Lcmm;Lgu;Z)Z m_278155_ + 0 o p_279304_ + 1 o p_279201_ + 2 o p_278282_ + 3 o p_278254_ + a (Ldaw;Z)Z m_276956_ + 0 o p_277733_ + 1 o p_277720_ + a (Lbyo;ZLjava/util/List;)V m_277134_ + 0 o p_278048_ + 1 o p_278103_ + 2 o p_277990_ + a (Ljava/util/function/UnaryOperator;Z)Z m_277073_ + 0 o p_277877_ + 1 o p_277426_ + ao_ ()Lqr; m_5995_ + b (Lbyo;Ljava/util/List;Ldaw;)Ldaw; m_276884_ + 0 o p_277775_ + 1 o p_277941_ + 2 o p_277776_ + b (Lqr;)V m_183515_ + 0 o p_187515_ + b (Ldaw;)Z m_277170_ + 0 o p_277777_ + b (Z)Z m_277031_ + 0 o p_277344_ + b (Lbyo;)Ldaw; m_277176_ + 0 o p_277444_ + b (Ljava/util/UUID;)Z m_276813_ + 0 o p_277978_ + b (Lqr;Lrk;)V m_276838_ + static + 0 o p_277523_ + 1 o p_277417_ + c ()I m_245065_ + c (Ldaw;)Z m_276964_ + 0 o p_278038_ + d (Ldaw;)V m_278141_ + 0 o p_278213_ + d ()I m_245123_ + e (Ldaw;)V m_278140_ + 0 o p_278212_ + f ()Ldaw; m_277006_ + g ()Ldaw; m_277142_ + h ()Luo; m_58483_ + i ()Ldaw; m_277159_ + j ()Luz; m_58483_ + t ()Z m_6326_ + v ()Ljava/util/UUID; m_155726_ + w ()Z m_277118_ + x ()V m_155728_ +daw net/minecraft/world/level/block/entity/SignText + a f_276558_ + b f_276490_ + c f_276587_ + d f_276632_ + e f_276590_ + f f_276673_ + g f_276420_ + h f_276467_ + i f_276669_ + ()V + static + ([Lsw;[Lsw;Lcen;Z)V + 0 o p_277506_ + 1 o p_277908_ + 2 o p_277883_ + 3 o p_278091_ + ()V + a (Lcen;)Ldaw; m_276901_ + 0 o p_277507_ + a (Lsw;)Z m_276814_ + static + 0 o p_277499_ + a (ILsw;)Ldaw; m_276913_ + 0 o p_277878_ + 1 o p_277360_ + a (ZLjava/util/function/Function;)[Laom; m_277130_ + 0 o p_277336_ + 1 o p_277538_ + a ([Lsw;)Ljava/util/List; m_276943_ + static + 0 o p_277460_ + a ()Z m_276843_ + a (Z)Ldaw; m_277132_ + 0 o p_277953_ + a (Lbyo;)Z m_276776_ + 0 o p_277764_ + a (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; m_276933_ + static + 0 o p_277675_ + a ([Lsw;Ljava/util/Optional;Lcen;Z)Ldaw; m_277020_ + static + 0 o p_277661_ + 1 o p_277768_ + 2 o p_277345_ + 3 o p_278008_ + a (IZ)Lsw; m_277138_ + 0 o p_277404_ + 1 o p_278108_ + a (Ljava/util/List;)Lcom/mojang/serialization/DataResult; m_277164_ + static + 0 o p_277790_ + a (Ldaw;)Ljava/lang/Boolean; m_276780_ + static + 0 o p_277555_ + a ([Lsw;[Lsw;)V m_276973_ + static + 0 o p_277696_ + 1 o p_277436_ + a (ILsw;Lsw;)Ldaw; m_276948_ + 0 o p_277690_ + 1 o p_277852_ + 2 o p_277564_ + b (Lbyo;)Z m_276807_ + 0 o p_277865_ + b (Ljava/util/List;)[Lsw; m_277088_ + static + 0 o p_277881_ + b (Z)[Lsw; m_276945_ + 0 o p_277992_ + b (Ldaw;)Lcen; m_276932_ + static + 0 o p_277343_ + b ()Lcen; m_276773_ + c (Ldaw;)[Lsw; m_276937_ + static + 0 o p_277822_ + c ()[Lsw; m_276784_ + static + d ()Ljava/util/Optional; m_276946_ +dax net/minecraft/world/level/block/entity/SkullBlockEntity + a f_155729_ + b f_262238_ + c f_59755_ + d f_59756_ + e f_182457_ + f f_59757_ + g f_262250_ + h f_260504_ + i f_260642_ + (Lgu;Ldcb;)V + 0 o p_155731_ + 1 o p_155732_ + a (Lcom/mojang/authlib/GameProfile;)V m_59769_ + 0 o p_59770_ + a (Lqr;)V m_142466_ + 0 o p_155745_ + a (Ljava/util/Optional;Ljava/util/function/Consumer;Lcom/mojang/authlib/GameProfile;)V m_182458_ + static + 0 o p_182459_ + 1 o p_182460_ + 2 o p_182461_ + a (Lcmm;Lgu;Ldcb;Ldax;)V m_261318_ + static + 0 o p_261710_ + 1 o p_262153_ + 2 o p_262021_ + 3 o p_261594_ + a (Ladh;Ljava/util/concurrent/Executor;)V m_222885_ + static + 0 o p_222886_ + 1 o p_222887_ + a (F)F m_261082_ + 0 o p_262053_ + a (Ljava/util/function/Consumer;Lcom/mojang/authlib/GameProfile;)V m_276181_ + static + 0 o p_276258_ + 1 o p_276259_ + a (Lcom/mojang/authlib/GameProfile;Ljava/util/function/Consumer;)V m_155738_ + static + 0 o p_155739_ + 1 o p_155740_ + a (Ljava/util/function/Consumer;Lcom/mojang/authlib/GameProfile;Ljava/util/Optional;)V m_182467_ + static + 0 o p_182468_ + 1 o p_182469_ + 2 o p_182470_ + ao_ ()Lqr; m_5995_ + b (Lcom/mojang/authlib/GameProfile;)V m_155746_ + 0 o p_155747_ + b (Lqr;)V m_183515_ + 0 o p_187518_ + b (Lcom/mojang/authlib/GameProfile;Ljava/util/function/Consumer;)V m_276180_ + static + 0 o p_276256_ + 1 o p_276257_ + b (Ljava/util/function/Consumer;Lcom/mojang/authlib/GameProfile;)V m_182474_ + static + 0 o p_182475_ + 1 o p_182476_ + c (Ljava/util/function/Consumer;Lcom/mojang/authlib/GameProfile;)V m_276179_ + static + 0 o p_276254_ + 1 o p_276255_ + c ()V m_196704_ + static + d ()Lcom/mojang/authlib/GameProfile; m_59779_ + f ()Lacq; m_262374_ + g ()Luz; m_58483_ + h ()Luo; m_58483_ + i ()V m_59780_ +day net/minecraft/world/level/block/entity/SmokerBlockEntity + (Lgu;Ldcb;)V + 0 o p_155749_ + 1 o p_155750_ + a (Lcfz;)I m_7743_ + 0 o p_59786_ + a (ILbyn;)Lcbf; m_6555_ + 0 o p_59783_ + 1 o p_59784_ + g ()Lsw; m_6820_ +daz net/minecraft/world/level/block/entity/SpawnerBlockEntity + a f_59788_ + (Lgu;Ldcb;)V + 0 o p_155752_ + 1 o p_155753_ + a (Lbfn;Lapf;)V m_252803_ + 0 o p_254530_ + 1 o p_253719_ + a (Lcmm;Lgu;Ldcb;Ldaz;)V m_155754_ + static + 0 o p_155755_ + 1 o p_155756_ + 2 o p_155757_ + 3 o p_155758_ + a (Lqr;)V m_142466_ + 0 o p_155760_ + a_ (II)Z m_7531_ + 0 o p_59797_ + 1 o p_59798_ + ao_ ()Lqr; m_5995_ + b (Lcmm;Lgu;Ldcb;Ldaz;)V m_155761_ + static + 0 o p_155762_ + 1 o p_155763_ + 2 o p_155764_ + 3 o p_155765_ + b (Lqr;)V m_183515_ + 0 o p_187521_ + c ()Luz; m_58483_ + d ()Lclo; m_59801_ + h ()Luo; m_58483_ + t ()Z m_6326_ +daz$1 net/minecraft/world/level/block/entity/SpawnerBlockEntity$1 + a f_59803_ + (Ldaz;)V + 0 o p_59805_ + a (Lcmm;Lgu;Lcnd;)V m_142667_ + 0 o p_155771_ + 1 o p_155772_ + 2 o p_155773_ + a (Lcmm;Lgu;I)V m_142523_ + 0 o p_155767_ + 1 o p_155768_ + 2 o p_155769_ +db net/minecraft/advancements/critereon/TagPredicate + a f_268479_ + b f_268414_ + (Lanl;Z)V + 0 o p_270819_ + 1 o p_270913_ + a (Lanl;)Ldb; m_269314_ + static + 0 o p_270668_ + a (Lhe;)Z m_269475_ + 0 o p_270125_ + a ()Lcom/google/gson/JsonElement; m_269579_ + a (Lcom/google/gson/JsonElement;Lacp;)Ldb; m_269409_ + static + 0 o p_270982_ + 1 o p_270978_ + b (Lanl;)Ldb; m_269422_ + static + 0 o p_270264_ +dba net/minecraft/world/level/block/entity/StructureBlockEntity + a f_155774_ + b f_155775_ + c f_155776_ + d f_155777_ + e f_59812_ + f f_59813_ + g f_59814_ + h f_59815_ + i f_59816_ + j f_59817_ + k f_59818_ + l f_59819_ + m f_59820_ + n f_59821_ + r f_59822_ + s f_59823_ + t f_59824_ + u f_59825_ + (Lgu;Ldcb;)V + 0 o p_155779_ + 1 o p_155780_ + A ()F m_59827_ + B ()J m_59828_ + C ()Z m_59829_ + D ()Z m_59830_ + E ()V m_59831_ + F ()Z m_59832_ + G ()Z m_59833_ + H ()Z m_59834_ + I ()Z m_59835_ + J ()V m_59836_ + a (Lqr;)V m_142466_ + 0 o p_155800_ + a (Z)V m_59876_ + 0 o p_59877_ + a (Lcvz;)V m_59883_ + 0 o p_59884_ + a (Laif;)Z m_59842_ + 0 o p_59843_ + a (F)V m_59838_ + 0 o p_59839_ + a (Lgu;)V m_59885_ + 0 o p_59886_ + a (Laif;ZLdvt;)Z m_59847_ + 0 o p_59848_ + 1 o p_59849_ + 2 o p_59850_ + a (Lddl;)V m_59860_ + 0 o p_59861_ + a (Lcui;)V m_59881_ + 0 o p_59882_ + a (J)V m_59840_ + 0 o p_59841_ + a (Lhz;)V m_155797_ + 0 o p_155798_ + a (Ljava/lang/String;)V m_59868_ + 0 o p_59869_ + a (Lbfz;)V m_59851_ + 0 o p_59852_ + a (Lgu;Ldrs;)Z m_155788_ + 0 o p_155789_ + 1 o p_155790_ + a (Lgu;Lgu;)Ljava/util/stream/Stream; m_155791_ + 0 o p_155792_ + 1 o p_155793_ + a (Lbyo;)Z m_59853_ + 0 o p_59854_ + a (Laif;Lgu;)V m_155781_ + static + 0 o p_155782_ + 1 o p_155783_ + a (Ldba;)Z m_155786_ + 0 o p_155787_ + a (Laif;Z)Z m_59844_ + 0 o p_59845_ + 1 o p_59846_ + a (Lczn;)Ldba; m_155784_ + static + 0 o p_155785_ + a (Lgu;Ljava/util/stream/Stream;)Ljava/util/Optional; m_155794_ + static + 0 o p_155795_ + 1 o p_155796_ + a (Lacq;)V m_59874_ + 0 o p_59875_ + ao_ ()Lqr; m_5995_ + b (Lqr;)V m_183515_ + 0 o p_187524_ + b (J)Lapf; m_222888_ + static + 0 o p_222889_ + b (Lczn;)Z m_155801_ + static + 0 o p_155802_ + b (Z)Z m_59889_ + 0 o p_59890_ + b (Ljava/lang/String;)V m_59887_ + 0 o p_59888_ + b (Lgu;)Z m_271673_ + 0 o p_272561_ + c ()Luz; m_58483_ + c (Z)V m_59893_ + 0 o p_59894_ + d ()Ljava/lang/String; m_59895_ + d (Z)V m_59896_ + 0 o p_59897_ + e (Z)V m_59898_ + 0 o p_59899_ + f ()Ljava/lang/String; m_59900_ + g ()Z m_59901_ + h ()Luo; m_58483_ + i ()Lgu; m_59902_ + j ()Lhz; m_155805_ + v ()Lcui; m_59905_ + w ()Lcvz; m_59906_ + x ()Ljava/lang/String; m_59907_ + y ()Lddl; m_59908_ + z ()Z m_59910_ +dba$a net/minecraft/world/level/block/entity/StructureBlockEntity$UpdateType + a UPDATE_DATA + b SAVE_AREA + c LOAD_AREA + d SCAN_AREA + e $VALUES + ()V + static + (Ljava/lang/String;I)V + 0 o p_59920_ + 1 o p_59921_ + a ()[Ldba$a; m_155806_ + static + valueOf (Ljava/lang/String;)Ldba$a; valueOf + static + 0 o p_59923_ + values ()[Ldba$a; values + static +dbb net/minecraft/world/level/block/entity/TheEndGatewayBlockEntity + a f_59925_ + b f_155807_ + c f_155808_ + d f_155809_ + e f_155810_ + f f_155811_ + g f_59926_ + h f_59927_ + i f_59928_ + j f_59929_ + ()V + static + (Lgu;Ldcb;)V + 0 o p_155813_ + 1 o p_155814_ + a (Lqr;)V m_142466_ + 0 o p_155840_ + a (Lhr;)Ljava/util/Optional; m_257330_ + static + 0 o p_258975_ + a (Laif;Leei;)Z m_155815_ + static + 0 o p_155816_ + 1 o p_155817_ + a (F)F m_59933_ + 0 o p_59934_ + a (Lcmm;Lgu;Ldcb;Lbfj;Ldbb;)V m_155828_ + static + 0 o p_155829_ + 1 o p_155830_ + 2 o p_155831_ + 3 o p_155832_ + 4 o p_155833_ + a (Lcmm;Leei;)Ldei; m_59947_ + static + 0 o p_59948_ + 1 o p_59949_ + a (Laif;Lgu;Lhe$c;)V m_255321_ + static + 0 o p_255911_ + 1 o p_255685_ + 2 o p_256040_ + a (Ldei;)Lgu; m_59953_ + static + 0 o p_59954_ + a (Lbfj;)Z m_59940_ + static + 0 o p_59941_ + a (Laif;Lgu;)Lgu; m_155818_ + static + 0 o p_155819_ + 1 o p_155820_ + a (Lha;)Z m_6665_ + 0 o p_59959_ + a (Lcmm;Lgu;Ldcb;Ldbb;)V m_155834_ + static + 0 o p_155835_ + 1 o p_155836_ + 2 o p_155837_ + 3 o p_155838_ + a (Lcmm;Lgu;)Lgu; m_155825_ + static + 0 o p_155826_ + 1 o p_155827_ + a (Lcls;Lgu;IZ)Lgu; m_59942_ + static + 0 o p_59943_ + 1 o p_59944_ + 2 o p_59945_ + 3 o p_59946_ + a (Laif;Lgu;Ldmr;)V m_155821_ + static + 0 o p_155822_ + 1 o p_155823_ + 2 o p_155824_ + a (Lgu;Z)V m_59955_ + 0 o p_59956_ + 1 o p_59957_ + a_ (II)Z m_7531_ + 0 o p_59963_ + 1 o p_59964_ + ao_ ()Lqr; m_5995_ + b (Laif;Lgu;)Leei; m_155841_ + static + 0 o p_155842_ + 1 o p_155843_ + b (F)F m_59967_ + 0 o p_59968_ + b (Lqr;)V m_183515_ + 0 o p_187527_ + b (Lcmm;Lgu;Ldcb;Ldbb;)V m_155844_ + static + 0 o p_155845_ + 1 o p_155846_ + 2 o p_155847_ + 3 o p_155848_ + c (Lcmm;Lgu;Ldcb;Ldbb;)V m_155849_ + static + 0 o p_155850_ + 1 o p_155851_ + 2 o p_155852_ + 3 o p_155853_ + c ()Z m_59971_ + d ()Z m_59972_ + f ()Luz; m_58483_ + g ()I m_59975_ + h ()Luo; m_58483_ +dbc net/minecraft/world/level/block/entity/TheEndPortalBlockEntity + (Lgu;Ldcb;)V + 0 o p_155859_ + 1 o p_155860_ + (Lczp;Lgu;Ldcb;)V + 0 o p_155855_ + 1 o p_155856_ + 2 o p_155857_ + a (Lha;)Z m_6665_ + 0 o p_59980_ +dbd net/minecraft/world/level/block/entity/TickingBlockEntity + a ()V m_142224_ + b ()Z m_142220_ + c ()Lgu; m_142689_ + d ()Ljava/lang/String; m_142280_ +dbe net/minecraft/world/level/block/entity/TrappedChestBlockEntity + (Lgu;Ldcb;)V + 0 o p_155862_ + 1 o p_155863_ + a (Lcmm;Lgu;Ldcb;II)V m_142151_ + 0 o p_155865_ + 1 o p_155866_ + 2 o p_155867_ + 3 o p_155868_ + 4 o p_155869_ +dbf net/minecraft/world/level/block/entity/package-info +dbg net/minecraft/world/level/block/grower/AbstractMegaTreeGrower + ()V + a (Lapf;)Lacp; m_213566_ + 0 o p_222904_ + a (Laif;Lddy;Lgu;Ldcb;Lapf;II)Z m_222896_ + 0 o p_222897_ + 1 o p_222898_ + 2 o p_222899_ + 3 o p_222900_ + 4 o p_222901_ + 5 o p_222902_ + 6 o p_222903_ + a (Ldcb;Lcls;Lgu;II)Z m_59998_ + static + 0 o p_59999_ + 1 o p_60000_ + 2 o p_60001_ + 3 o p_60002_ + 4 o p_60003_ + a (Laif;Lddy;Lgu;Ldcb;Lapf;)Z m_213817_ + 0 o p_222891_ + 1 o p_222892_ + 2 o p_222893_ + 3 o p_222894_ + 4 o p_222895_ +dbh net/minecraft/world/level/block/grower/AbstractTreeGrower + ()V + a (Lapf;Z)Lacp; m_213888_ + 0 o p_222910_ + 1 o p_222911_ + a (Lcmn;Lgu;)Z m_60011_ + 0 o p_60012_ + 1 o p_60013_ + a (Laif;Lddy;Lgu;Ldcb;Lapf;)Z m_213817_ + 0 o p_222905_ + 1 o p_222906_ + 2 o p_222907_ + 3 o p_222908_ + 4 o p_222909_ +dbi net/minecraft/world/level/block/grower/AcaciaTreeGrower + ()V + a (Lapf;Z)Lacp; m_213888_ + 0 o p_256308_ + 1 o p_256632_ +dbj net/minecraft/world/level/block/grower/AzaleaTreeGrower + ()V + a (Lapf;Z)Lacp; m_213888_ + 0 o p_255997_ + 1 o p_255923_ +dbk net/minecraft/world/level/block/grower/BirchTreeGrower + ()V + a (Lapf;Z)Lacp; m_213888_ + 0 o p_256345_ + 1 o p_255618_ +dbl net/minecraft/world/level/block/grower/CherryTreeGrower + ()V + a (Lapf;Z)Lacp; m_213888_ + 0 o p_272730_ + 1 o p_273684_ +dbm net/minecraft/world/level/block/grower/DarkOakTreeGrower + ()V + a (Lapf;)Lacp; m_213566_ + 0 o p_255891_ + a (Lapf;Z)Lacp; m_213888_ + 0 o p_222924_ + 1 o p_222925_ +dbn net/minecraft/world/level/block/grower/JungleTreeGrower + ()V + a (Lapf;)Lacp; m_213566_ + 0 o p_256359_ + a (Lapf;Z)Lacp; m_213888_ + 0 o p_255992_ + 1 o p_255946_ +dbo net/minecraft/world/level/block/grower/MangroveTreeGrower + a f_222931_ + (F)V + 0 o p_222933_ + a (Lapf;Z)Lacp; m_213888_ + 0 o p_255870_ + 1 o p_256508_ +dbp net/minecraft/world/level/block/grower/OakTreeGrower + ()V + a (Lapf;Z)Lacp; m_213888_ + 0 o p_256119_ + 1 o p_256536_ +dbq net/minecraft/world/level/block/grower/SpruceTreeGrower + ()V + a (Lapf;)Lacp; m_213566_ + 0 o p_255928_ + a (Lapf;Z)Lacp; m_213888_ + 0 o p_255637_ + 1 o p_255764_ +dbr net/minecraft/world/level/block/grower/package-info +dbs net/minecraft/world/level/block/package-info +dbt net/minecraft/world/level/block/piston/MovingPistonBlock + a f_60046_ + b f_60047_ + ()V + static + (Ldca$d;)V + 0 o p_60050_ + a (Ldcb;Lcvz;)Ldcb; m_6843_ + 0 o p_60086_ + 1 o p_60087_ + a (Ldcc$a;)V m_7926_ + 0 o p_60097_ + a (Lgu;Ldcb;Ldcb;Lha;ZZ)Lczn; m_155881_ + static + 0 o p_155882_ + 1 o p_155883_ + 2 o p_155884_ + 3 o p_155885_ + 4 o p_155886_ + 5 o p_155887_ + a (Ldcb;Lcmm;Lgu;Ldcb;Z)V m_6810_ + 0 o p_60077_ + 1 o p_60078_ + 2 o p_60079_ + 3 o p_60080_ + 4 o p_60081_ + a (Lcls;Lgu;)Ldbx; m_60053_ + 0 o p_60054_ + 1 o p_60055_ + a (Ldcb;Lcls;Lgu;Leen;)Lefb; m_5940_ + 0 o p_60099_ + 1 o p_60100_ + 2 o p_60101_ + 3 o p_60102_ + a (Ldcb;Lcui;)Ldcb; m_6943_ + 0 o p_60083_ + 1 o p_60084_ + a (Ldcb;Lcls;Lgu;Ldxu;)Z m_7357_ + 0 o p_60065_ + 1 o p_60066_ + 2 o p_60067_ + 3 o p_60068_ + a (Ldcb;Ldzq$a;)Ljava/util/List; m_49635_ + 0 o p_287650_ + 1 o p_287754_ + a (Ldcb;Lcmm;Lgu;Lbyo;Lbdw;Leee;)Lbdx; m_6227_ + 0 o p_60070_ + 1 o p_60071_ + 2 o p_60072_ + 3 o p_60073_ + 4 o p_60074_ + 5 o p_60075_ + a (Lcmn;Lgu;Ldcb;)V m_6786_ + 0 o p_60061_ + 1 o p_60062_ + 2 o p_60063_ + a (Lcls;Lgu;Ldcb;)Lcfz; m_7397_ + 0 o p_60057_ + 1 o p_60058_ + 2 o p_60059_ + a (Lgu;Ldcb;)Lczn; m_142194_ + 0 o p_155879_ + 1 o p_155880_ + a (Lcmm;Ldcb;Lczp;)Lczo; m_142354_ + 0 o p_155875_ + 1 o p_155876_ + 2 o p_155877_ + c (Ldcb;Lcls;Lgu;Leen;)Lefb; m_5939_ + 0 o p_60104_ + 1 o p_60105_ + 2 o p_60106_ + 3 o p_60107_ +dbu net/minecraft/world/level/block/piston/PistonBaseBlock + b f_60153_ + c f_155888_ + d f_155889_ + e f_155890_ + f f_155891_ + g f_60154_ + h f_60155_ + i f_60156_ + j f_60157_ + k f_60158_ + l f_60159_ + m f_60160_ + ()V + static + (ZLdca$d;)V + 0 o p_60163_ + 1 o p_60164_ + a (Ldcb;Lcvz;)Ldcb; m_6843_ + 0 o p_60215_ + 1 o p_60216_ + a (Ldcc$a;)V m_7926_ + 0 o p_60218_ + a (Ldcb;Lcmm;Lgu;Lha;ZLha;)Z m_60204_ + static + 0 o p_60205_ + 1 o p_60206_ + 2 o p_60207_ + 3 o p_60208_ + 4 o p_60209_ + 5 o p_60210_ + a (Ldcb;Lcls;Lgu;Leen;)Lefb; m_5940_ + 0 o p_60220_ + 1 o p_60221_ + 2 o p_60222_ + 3 o p_60223_ + a (Lcmm;Lgu;Ldcb;Lbfz;Lcfz;)V m_6402_ + 0 o p_60172_ + 1 o p_60173_ + 2 o p_60174_ + 3 o p_60175_ + 4 o p_60176_ + a (Ldcb;Lcmm;Lgu;Lcpn;Lgu;Z)V m_6861_ + 0 o p_60198_ + 1 o p_60199_ + 2 o p_60200_ + 3 o p_60201_ + 4 o p_60202_ + 5 o p_60203_ + a (Ldcb;Lcui;)Ldcb; m_6943_ + 0 o p_60212_ + 1 o p_60213_ + a (Lcmm;Lgu;Ldcb;)V m_60167_ + 0 o p_60168_ + 1 o p_60169_ + 2 o p_60170_ + a (Ldcb;Lcls;Lgu;Ldxu;)Z m_7357_ + 0 o p_60187_ + 1 o p_60188_ + 2 o p_60189_ + 3 o p_60190_ + a (Lcmm;Lgu;Lha;Z)Z m_60181_ + 0 o p_60182_ + 1 o p_60183_ + 2 o p_60184_ + 3 o p_60185_ + a (Lcih;)Ldcb; m_5573_ + 0 o p_60166_ + a (Lcnc;Lgu;Lha;)Z m_60177_ + 0 o p_277378_ + 1 o p_60179_ + 2 o p_60180_ + a (Ldcb;Lcmm;Lgu;II)Z m_8133_ + 0 o p_60192_ + 1 o p_60193_ + 2 o p_60194_ + 3 o p_60195_ + 4 o p_60196_ + b (Ldcb;Lcmm;Lgu;Ldcb;Z)V m_6807_ + 0 o p_60225_ + 1 o p_60226_ + 2 o p_60227_ + 3 o p_60228_ + 4 o p_60229_ + g_ (Ldcb;)Z m_7923_ + 0 o p_60231_ +dbu$1 net/minecraft/world/level/block/piston/PistonBaseBlock$1 + a f_60232_ + b f_60233_ + ()V + static +dbv net/minecraft/world/level/block/piston/PistonHeadBlock + D f_60244_ + E f_60245_ + F f_60246_ + G f_60247_ + H f_60248_ + I f_60249_ + J f_60250_ + K f_60251_ + L f_60252_ + M f_60253_ + N f_60254_ + O f_60255_ + P f_60256_ + b f_60235_ + c f_60236_ + d f_155892_ + e f_60237_ + f f_60238_ + g f_60239_ + h f_60240_ + i f_60241_ + j f_60242_ + k f_155893_ + l f_155894_ + m f_155895_ + n f_60243_ + ()V + static + (Ldca$d;)V + 0 o p_60259_ + a (Ldcb;Lha;Ldcb;Lcmn;Lgu;Lgu;)Ldcb; m_7417_ + 0 o p_60301_ + 1 o p_60302_ + 2 o p_60303_ + 3 o p_60304_ + 4 o p_60305_ + 5 o p_60306_ + a (Lha;Z)Lefb; m_60309_ + static + 0 o p_60310_ + 1 o p_60311_ + a (Ldcb;Lcvz;)Ldcb; m_6843_ + 0 o p_60295_ + 1 o p_60296_ + a (Ldcc$a;)V m_7926_ + 0 o p_60308_ + a (Ldcb;Lcmm;Lgu;Ldcb;Z)V m_6810_ + 0 o p_60282_ + 1 o p_60283_ + 2 o p_60284_ + 3 o p_60285_ + 4 o p_60286_ + a (Ldcb;Ldcb;)Z m_60297_ + 0 o p_60298_ + 1 o p_60299_ + a (Ldcb;Lcls;Lgu;Leen;)Lefb; m_5940_ + 0 o p_60320_ + 1 o p_60321_ + 2 o p_60322_ + 3 o p_60323_ + a (Ldcb;Lcmm;Lgu;Lcpn;Lgu;Z)V m_6861_ + 0 o p_60275_ + 1 o p_60276_ + 2 o p_60277_ + 3 o p_60278_ + 4 o p_60279_ + 5 o p_60280_ + a (Ldcb;Lcui;)Ldcb; m_6943_ + 0 o p_60292_ + 1 o p_60293_ + a (Ldcb;Lcls;Lgu;Ldxu;)Z m_7357_ + 0 o p_60270_ + 1 o p_60271_ + 2 o p_60272_ + 3 o p_60273_ + a (Ldcb;Lcmp;Lgu;)Z m_7898_ + 0 o p_60288_ + 1 o p_60289_ + 2 o p_60290_ + a (Lcmm;Lgu;Ldcb;Lbyo;)V m_5707_ + 0 o p_60265_ + 1 o p_60266_ + 2 o p_60267_ + 3 o p_60268_ + a (Z)[Lefb; m_60312_ + static + 0 o p_60313_ + a (ZLha;)Lefb; m_60314_ + static + 0 o p_60315_ + 1 o p_60316_ + a (Lcls;Lgu;Ldcb;)Lcfz; m_7397_ + 0 o p_60261_ + 1 o p_60262_ + 2 o p_60263_ + b (I)[Lefb; m_60317_ + static + 0 o p_60318_ + g_ (Ldcb;)Z m_7923_ + 0 o p_60325_ +dbv$1 net/minecraft/world/level/block/piston/PistonHeadBlock$1 + a f_60326_ + ()V + static +dbw net/minecraft/world/level/block/piston/PistonMath + ()V + a (Leed;Lha;D)Leed; m_60328_ + static + 0 o p_60329_ + 1 o p_60330_ + 2 o p_60331_ +dbw$1 net/minecraft/world/level/block/piston/PistonMath$1 + a f_60332_ + ()V + static +dbx net/minecraft/world/level/block/piston/PistonMovingBlockEntity + a f_155897_ + b f_155898_ + c f_155899_ + d f_60334_ + e f_60335_ + f f_60336_ + g f_60337_ + h f_60338_ + i f_60339_ + j f_60340_ + k f_60341_ + l f_60342_ + ()V + static + (Lgu;Ldcb;Ldcb;Lha;ZZ)V + 0 o p_155904_ + 1 o p_155905_ + 2 o p_155906_ + 3 o p_155907_ + 4 o p_155908_ + 5 o p_155909_ + (Lgu;Ldcb;)V + 0 o p_155901_ + 1 o p_155902_ + a (Leed;Lbfj;Lgu;)Z m_287216_ + static + 0 o p_287782_ + 1 o p_287720_ + 2 o p_287775_ + a (Leed;Lgu;Lbfj;)Z m_287130_ + static + 0 o p_287550_ + 1 o p_287551_ + 2 o p_287552_ + a (Lqr;)V m_142466_ + 0 o p_155930_ + a (F)F m_60350_ + 0 o p_60351_ + a (Lcmm;Lgu;Ldcb;Ldbx;)V m_155915_ + static + 0 o p_155916_ + 1 o p_155917_ + 2 o p_155918_ + 3 o p_155919_ + a (Lgu;Lbfj;Lha;D)V m_155920_ + static + 0 o p_155921_ + 1 o p_155922_ + 2 o p_155923_ + 3 o p_155924_ + a (Leed;Lha;Leed;)D m_60367_ + static + 0 o p_60368_ + 1 o p_60369_ + 2 o p_60370_ + a (Lha;Lbfj;DLha;)V m_60371_ + static + 0 o p_60372_ + 1 o p_60373_ + 2 o p_60374_ + 3 o p_60375_ + a (Lcls;Lgu;)Lefb; m_60356_ + 0 o p_60357_ + 1 o p_60358_ + a (Lcmm;Lgu;FLdbx;)V m_155910_ + static + 0 o p_155911_ + 1 o p_155912_ + 2 o p_155913_ + 3 o p_155914_ + a (Lcmm;)V m_142339_ + 0 o p_250671_ + a (Lgu;Leed;Ldbx;)Leed; m_155925_ + static + 0 o p_155926_ + 1 o p_155927_ + 2 o p_155928_ + ao_ ()Lqr; m_5995_ + b (F)F m_60380_ + 0 o p_60381_ + b (Lqr;)V m_183515_ + 0 o p_187530_ + b (Lcmm;Lgu;FLdbx;)V m_155931_ + static + 0 o p_155932_ + 1 o p_155933_ + 2 o p_155934_ + 3 o p_155935_ + c ()Z m_60387_ + c (F)F m_60385_ + 0 o p_60386_ + d (F)F m_60388_ + 0 o p_60389_ + d ()Lha; m_60392_ + e (F)F m_60390_ + 0 o p_60391_ + f ()Z m_60397_ + g ()Lha; m_60399_ + i ()Ldcb; m_60400_ + j ()V m_60401_ + v ()J m_60402_ + w ()Ldcb; m_60403_ + x ()Z m_60404_ + y ()Lha; m_60405_ + static +dbx$1 net/minecraft/world/level/block/piston/PistonMovingBlockEntity$1 + a f_60406_ + b f_60407_ + ()V + static +dby net/minecraft/world/level/block/piston/PistonStructureResolver + a f_155936_ + b f_60409_ + c f_60410_ + d f_60411_ + e f_60412_ + f f_60413_ + g f_60414_ + h f_60415_ + i f_60416_ + (Lcmm;Lgu;Lha;Z)V + 0 o p_60418_ + 1 o p_60419_ + 2 o p_60420_ + 3 o p_60421_ + a ()Z m_60422_ + a (Lgu;)Z m_60431_ + 0 o p_60432_ + a (Ldcb;)Z m_155937_ + static + 0 o p_155938_ + a (II)V m_60423_ + 0 o p_60424_ + 1 o p_60425_ + a (Ldcb;Ldcb;)Z m_155939_ + static + 0 o p_155940_ + 1 o p_155941_ + a (Lgu;Lha;)Z m_60433_ + 0 o p_60434_ + 1 o p_60435_ + b ()Lha; m_155942_ + c ()Ljava/util/List; m_60436_ + d ()Ljava/util/List; m_60437_ +dbz net/minecraft/world/level/block/piston/package-info +dc net/minecraft/advancements/critereon/TameAnimalTrigger + a f_68825_ + ()V + static + ()V + a (Ldzk;Ldc$a;)Z m_68836_ + static + 0 o p_68837_ + 1 o p_68838_ + a (Laig;Lbrl;)V m_68829_ + 0 o p_68830_ + 1 o p_68831_ + a ()Lacq; m_7295_ + a (Lcom/google/gson/JsonObject;Lba;Lbe;)Ldc$a; m_7214_ + 0 o p_286910_ + 1 o p_286765_ + 2 o p_286732_ + b (Lcom/google/gson/JsonObject;Lba;Lbe;)Lar; m_7214_ + 0 o p_286684_ + 1 o p_286860_ + 2 o p_286550_ +dc$a net/minecraft/advancements/critereon/TameAnimalTrigger$TriggerInstance + a f_68844_ + (Lba;Lba;)V + 0 o p_286593_ + 1 o p_286484_ + a (Lct;)Lcom/google/gson/JsonObject; m_7683_ + 0 o p_68851_ + a (Ldzk;)Z m_68852_ + 0 o p_68853_ + a (Lbo;)Ldc$a; m_68848_ + static + 0 o p_68849_ + c ()Ldc$a; m_68854_ + static +dca net/minecraft/world/level/block/state/BlockBehaviour + aD f_60441_ + aE f_60443_ + aF f_60444_ + aG f_60445_ + aH f_60446_ + aI f_60447_ + aJ f_60448_ + aK f_60449_ + aL f_60438_ + aM f_243733_ + aN f_60439_ + aO f_60440_ + ()V + static + (Ldca$d;)V + 0 o p_60452_ + a (Ldcb;Lcmn;Lgu;II)V m_7742_ + 0 o p_60520_ + 1 o p_60521_ + 2 o p_60522_ + 3 o p_60523_ + 4 o p_60524_ + a (Ldcb;Lcmm;Lgu;Ldcb;Z)V m_6810_ + 0 o p_60515_ + 1 o p_60516_ + 2 o p_60517_ + 3 o p_60518_ + 4 o p_60519_ + a (Ldcb;Lcmm;Lgu;Lcpn;Lgu;Z)V m_6861_ + 0 o p_60509_ + 1 o p_60510_ + 2 o p_60511_ + 3 o p_60512_ + 4 o p_60513_ + 5 o p_60514_ + a (Ldcb;Lcui;)Ldcb; m_6943_ + 0 o p_60528_ + 1 o p_60529_ + a (Ldcb;Lcmm;Lgu;)I m_6782_ + 0 o p_60487_ + 1 o p_60488_ + 2 o p_60489_ + a (Ldcb;Lcih;)Z m_6864_ + 0 o p_60470_ + 1 o p_60471_ + a (Ldcb;Lcmp;Lgu;)Z m_7898_ + 0 o p_60525_ + 1 o p_60526_ + 2 o p_60527_ + a (Ldcb;Ldzq$a;)Ljava/util/List; m_49635_ + 0 o p_287732_ + 1 o p_287596_ + a (Ldcb;Lha;Ldcb;Lcmn;Lgu;Lgu;)Ldcb; m_7417_ + 0 o p_60541_ + 1 o p_60542_ + 2 o p_60543_ + 3 o p_60544_ + 4 o p_60545_ + 5 o p_60546_ + a (Ldcb;Lcls;Lgu;Lha;)I m_6378_ + 0 o p_60483_ + 1 o p_60484_ + 2 o p_60485_ + 3 o p_60486_ + a (Ldcb;Lcmm;Lgu;Lbyo;)V m_6256_ + 0 o p_60499_ + 1 o p_60500_ + 2 o p_60501_ + 3 o p_60502_ + a (Ldcb;Laif;Lgu;Lapf;)V m_213897_ + 0 o p_222945_ + 1 o p_222946_ + 2 o p_222947_ + 3 o p_222948_ + a (Ldcb;Lcls;Lgu;Leen;)Lefb; m_5940_ + 0 o p_60555_ + 1 o p_60556_ + 2 o p_60557_ + 3 o p_60558_ + a (Ldcb;Lcls;Lgu;Ldxu;)Z m_7357_ + 0 o p_60475_ + 1 o p_60476_ + 2 o p_60477_ + 3 o p_60478_ + a (Ldcb;Lbyo;Lcls;Lgu;)F m_5880_ + 0 o p_60466_ + 1 o p_60467_ + 2 o p_60468_ + 3 o p_60469_ + a (Ldcb;Lcmm;Lgu;Lbfj;)V m_7892_ + 0 o p_60495_ + 1 o p_60496_ + 2 o p_60497_ + 3 o p_60498_ + a (Ldcb;Lcls;Lgu;)Lefb; m_6079_ + 0 o p_60547_ + 1 o p_60548_ + 2 o p_60549_ + a (Ldcb;Ldxd;)Z m_5946_ + 0 o p_60535_ + 1 o p_60536_ + a (Ldcb;Laif;Lgu;Lcfz;Z)V m_213646_ + 0 o p_222949_ + 1 o p_222950_ + 2 o p_222951_ + 3 o p_222952_ + 4 o p_222953_ + a (Ldcb;Ldcb;Lha;)Z m_6104_ + 0 o p_60532_ + 1 o p_60533_ + 2 o p_60534_ + a (Ldcb;Lgu;)J m_7799_ + 0 o p_60539_ + 1 o p_60540_ + a (Lcmm;Ldcb;Leee;Lbzg;)V m_5581_ + 0 o p_60453_ + 1 o p_60454_ + 2 o p_60455_ + 3 o p_60456_ + a (Ldcb;Lcvz;)Ldcb; m_6843_ + 0 o p_60530_ + 1 o p_60531_ + a (Ldcb;Lcmm;Lgu;Lbyo;Lbdw;Leee;)Lbdx; m_6227_ + 0 o p_60503_ + 1 o p_60504_ + 2 o p_60505_ + 3 o p_60506_ + 4 o p_60507_ + 5 o p_60508_ + a (Ldcb;Lcmm;Lgu;II)Z m_8133_ + 0 o p_60490_ + 1 o p_60491_ + 2 o p_60492_ + 3 o p_60493_ + 4 o p_60494_ + a_ (Ldcb;Lcls;Lgu;)Z m_180643_ + 0 o p_181242_ + 1 o p_181243_ + 2 o p_181244_ + al_ ()F m_142740_ + an_ ()F m_142627_ + b (Ldcb;Lcls;Lgu;Leen;)Lefb; m_5909_ + 0 o p_60479_ + 1 o p_60480_ + 2 o p_60481_ + 3 o p_60482_ + b (Ldcb;Lcmm;Lgu;Ldcb;Z)V m_6807_ + 0 o p_60566_ + 1 o p_60567_ + 2 o p_60568_ + 3 o p_60569_ + 4 o p_60570_ + b (Ldcb;Lcmm;Lgu;)Lbea; m_7246_ + 0 o p_60563_ + 1 o p_60564_ + 2 o p_60565_ + b (Ldcb;Laif;Lgu;Lapf;)V m_213898_ + 0 o p_222954_ + 1 o p_222955_ + 2 o p_222956_ + 3 o p_222957_ + b (Ldcb;Lcls;Lgu;)F m_7749_ + 0 o p_60472_ + 1 o p_60473_ + 2 o p_60474_ + b (Ldcb;Lcls;Lgu;Lha;)I m_6376_ + 0 o p_60559_ + 1 o p_60560_ + 2 o p_60561_ + 3 o p_60562_ + b_ (Ldcb;Lcls;Lgu;)Lefb; m_7947_ + 0 o p_60581_ + 1 o p_60582_ + 2 o p_60583_ + b_ (Ldcb;)Lcvs; m_7514_ + 0 o p_60550_ + c (Ldcb;Lcls;Lgu;Leen;)Lefb; m_5939_ + 0 o p_60572_ + 1 o p_60573_ + 2 o p_60574_ + 3 o p_60575_ + c_ (Ldcb;)Ldxe; m_5888_ + 0 o p_60577_ + d_ (Ldcb;)Z m_7278_ + 0 o p_60457_ + f (Ldcb;Lcls;Lgu;)Lefb; m_7952_ + 0 o p_60578_ + 1 o p_60579_ + 2 o p_60580_ + f_ (Ldcb;)Z m_7899_ + 0 o p_60571_ + g (Ldcb;Lcls;Lgu;)I m_7753_ + 0 o p_60585_ + 1 o p_60586_ + 2 o p_60587_ + g_ (Ldcb;)Z m_7923_ + 0 o p_60576_ + h (Ldcb;Lcls;Lgu;)Z m_222958_ + 0 o p_222959_ + 1 o p_222960_ + 2 o p_222961_ + k ()Lcfu; m_5456_ + m ()Lcaw; m_245183_ + p ()Lcpn; m_7374_ + r ()Lacq; m_60589_ + s ()Ldxi; m_284356_ + t ()F m_155943_ +dca$1 net/minecraft/world/level/block/state/BlockBehaviour$1 + a f_60591_ + b f_271377_ + ()V + static +dca$a net/minecraft/world/level/block/state/BlockBehaviour$BlockStateBase + A f_244227_ + a f_60593_ + b f_60594_ + g f_60595_ + h f_60596_ + i f_278120_ + j f_278472_ + k f_279551_ + l f_278134_ + m f_283893_ + n f_60599_ + o f_60600_ + p f_60601_ + q f_60602_ + r f_60603_ + s f_60604_ + t f_60605_ + u f_60606_ + v f_271099_ + w f_244264_ + x f_279617_ + y f_279615_ + z f_243896_ + (Lcpn;Lcom/google/common/collect/ImmutableMap;Lcom/mojang/serialization/MapCodec;)V + 0 o p_60608_ + 1 o p_60609_ + 2 o p_60610_ + A ()Lddc; m_280603_ + D ()Z m_280210_ + a (Ldcb;Lha;)Z m_60719_ + 0 o p_60720_ + 1 o p_60721_ + a (Lha;Ldcb;Lcmn;Lgu;Lgu;)Ldcb; m_60728_ + 0 o p_60729_ + 1 o p_60730_ + 2 o p_60731_ + 3 o p_60732_ + 4 o p_60733_ + a (Laif;Lgu;Lcfz;Z)V m_222967_ + 0 o p_222968_ + 1 o p_222969_ + 2 o p_222970_ + 3 o p_222971_ + a (Lcls;Lgu;Leen;)Lefb; m_60651_ + 0 o p_60652_ + 1 o p_60653_ + 2 o p_60654_ + a (Lcih;)Z m_60629_ + 0 o p_60630_ + a (Lcmm;Lbyo;Lbdw;Leee;)Lbdx; m_60664_ + 0 o p_60665_ + 1 o p_60666_ + 2 o p_60667_ + 3 o p_60668_ + a (Ldzq$a;)Ljava/util/List; m_287290_ + 0 o p_287688_ + a (Lcmm;Lgu;II)Z m_60677_ + 0 o p_60678_ + 1 o p_60679_ + 2 o p_60680_ + 3 o p_60681_ + a (Lcls;Lgu;Lbfj;)Z m_60634_ + 0 o p_60635_ + 1 o p_60636_ + 2 o p_60637_ + a (Lcls;Lgu;Ldxu;)Z m_60647_ + 0 o p_60648_ + 1 o p_60649_ + 2 o p_60650_ + a (Lcvz;)Ldcb; m_60717_ + 0 o p_60718_ + a (Lcls;Lgu;Lha;)Lefb; m_60655_ + 0 o p_60656_ + 1 o p_60657_ + 2 o p_60658_ + a (Lcls;Lgu;Lbfn;)Z m_60643_ + 0 o p_60644_ + 1 o p_60645_ + 2 o p_60646_ + a (Lanl;)Z m_204336_ + 0 o p_204337_ + a (Lanl;Ljava/util/function/Predicate;)Z m_204338_ + 0 o p_204339_ + 1 o p_204340_ + a (Lcls;Lgu;)Z m_60631_ + 0 o p_60632_ + 1 o p_60633_ + a (Lcmm;Lgu;Lbfj;)V m_60682_ + 0 o p_60683_ + 1 o p_60684_ + 2 o p_60685_ + a (Lgu;)J m_60726_ + 0 o p_60727_ + a (Lbyo;Lcls;Lgu;)F m_60625_ + 0 o p_60626_ + 1 o p_60627_ + 2 o p_60628_ + a (Lcmm;Lgu;Lcpn;Lgu;Z)V m_60690_ + 0 o p_60691_ + 1 o p_60692_ + 2 o p_60693_ + 3 o p_60694_ + 4 o p_60695_ + a (Lcmp;Lgu;)Z m_60710_ + 0 o p_60711_ + 1 o p_60712_ + a (Lcui;)Ldcb; m_60715_ + 0 o p_60716_ + a (Lcls;Lgu;Lha;Lcxp;)Z m_60659_ + 0 o p_60660_ + 1 o p_60661_ + 2 o p_60662_ + 3 o p_60663_ + a (Lcmm;Lczp;)Lczo; m_155944_ + 0 o p_155945_ + 1 o p_155946_ + a (Lcls;Lgu;Lbfj;Lha;)Z m_60638_ + 0 o p_60639_ + 1 o p_60640_ + 2 o p_60641_ + 3 o p_60642_ + a (Lcmm;Lgu;)I m_60674_ + 0 o p_60675_ + 1 o p_60676_ + a (Laif;Lgu;Lapf;)V m_222963_ + 0 o p_222964_ + 1 o p_222965_ + 2 o p_222966_ + a (Lcls;Lgu;Ldca$b;)Leei; m_272178_ + 0 o p_272771_ + 1 o p_272673_ + 2 o p_273089_ + a (Lcmm;Lgu;Lbyo;)V m_60686_ + 0 o p_60687_ + 1 o p_60688_ + 2 o p_60689_ + a (Lcpn;)Z m_60713_ + 0 o p_60714_ + a (Lcmn;Lgu;I)V m_60701_ + 0 o p_60702_ + 1 o p_60703_ + 2 o p_60704_ + a ()V m_60611_ + a (Lcmm;Ldcb;Leee;Lbzg;)V m_60669_ + 0 o p_60670_ + 1 o p_60671_ + 2 o p_60672_ + 3 o p_60673_ + a (Lhi;)Z m_204341_ + 0 o p_204342_ + a (Ldxd;)Z m_60722_ + 0 o p_60723_ + a (Lcmm;Lgu;Ldcb;Z)V m_60696_ + 0 o p_60697_ + 1 o p_60698_ + 2 o p_60699_ + 3 o p_60700_ + a (Lcmn;Lgu;II)V m_60705_ + 0 o p_60706_ + 1 o p_60707_ + 2 o p_60708_ + 3 o p_60709_ + b ()Lcpn; m_60734_ + b (Lcls;Lgu;)I m_60739_ + 0 o p_60740_ + 1 o p_60741_ + b (Lcls;Lgu;Lha;)I m_60746_ + 0 o p_60747_ + 1 o p_60748_ + 2 o p_60749_ + b (Lcmn;Lgu;I)V m_60758_ + 0 o p_60759_ + 1 o p_60760_ + 2 o p_60761_ + b (Lcmm;Lgu;Ldcb;Z)V m_60753_ + 0 o p_60754_ + 1 o p_60755_ + 2 o p_60756_ + 3 o p_60757_ + b (Laif;Lgu;Lapf;)V m_222972_ + 0 o p_222973_ + 1 o p_222974_ + 2 o p_222975_ + b (Lcmn;Lgu;II)V m_60762_ + 0 o p_60763_ + 1 o p_60764_ + 2 o p_60765_ + 3 o p_60766_ + b (Lcmm;Lgu;)Lbea; m_60750_ + 0 o p_60751_ + 1 o p_60752_ + b (Lcls;Lgu;Leen;)Lefb; m_60742_ + 0 o p_60743_ + 1 o p_60744_ + 2 o p_60745_ + c ()Lhe; m_222976_ + c (Lcls;Lgu;)Lefb; m_60768_ + 0 o p_60769_ + 1 o p_60770_ + c (Lcls;Lgu;Leen;)Lefb; m_60771_ + 0 o p_60772_ + 1 o p_60773_ + 2 o p_60774_ + c (Lcls;Lgu;Lha;)I m_60775_ + 0 o p_60776_ + 1 o p_60777_ + 2 o p_60778_ + d (Lcls;Lgu;)Ldxi; m_284242_ + 0 o p_285002_ + 1 o p_285293_ + d ()Z m_280555_ + d (Lcls;Lgu;Lha;)Z m_60783_ + 0 o p_60784_ + 1 o p_60785_ + 2 o p_60786_ + e (Lcls;Lgu;)Z m_60788_ + 0 o p_60789_ + 1 o p_60790_ + e ()Z m_280296_ + f (Lcls;Lgu;)F m_60792_ + 0 o p_60793_ + 1 o p_60794_ + f ()Z m_60779_ + g (Lcls;Lgu;)Z m_60796_ + 0 o p_60797_ + 1 o p_60798_ + g ()Z m_60787_ + h ()I m_60791_ + h (Lcls;Lgu;)F m_60800_ + 0 o p_60801_ + 1 o p_60802_ + i (Lcls;Lgu;)Z m_60804_ + 0 o p_60805_ + 1 o p_60806_ + i ()Z m_60795_ + j (Lcls;Lgu;)Lefb; m_60808_ + 0 o p_60809_ + 1 o p_60810_ + j ()Z m_278200_ + k ()Z m_278721_ + k (Lcls;Lgu;)Lefb; m_60812_ + 0 o p_60813_ + 1 o p_60814_ + l (Lcls;Lgu;)Lefb; m_60816_ + 0 o p_60817_ + 1 o p_60818_ + l ()Lcvs; m_60799_ + m (Lcls;Lgu;)Lefb; m_60820_ + 0 o p_60821_ + 1 o p_60822_ + m ()Z m_60803_ + n (Lcls;Lgu;)Leei; m_60824_ + 0 o p_60825_ + 1 o p_60826_ + n ()Z m_60807_ + o ()Ldxj; m_60811_ + o (Lcls;Lgu;)Z m_60828_ + 0 o p_60829_ + 1 o p_60830_ + p ()Z m_60815_ + p (Lcls;Lgu;)Z m_60831_ + 0 o p_60832_ + 1 o p_60833_ + q ()Z m_271730_ + q (Lcls;Lgu;)Z m_60835_ + 0 o p_60836_ + 1 o p_60837_ + r ()Z m_247087_ + r (Lcls;Lgu;)Z m_60838_ + 0 o p_60839_ + 1 o p_60840_ + s ()Ljava/util/stream/Stream; m_204343_ + t ()Z m_155947_ + u ()Ldxe; m_60819_ + v ()Z m_60823_ + w ()Lcxa; m_60827_ + x ()Ldcb; m_7160_ + y ()Z m_60834_ + z ()Z m_245147_ +dca$a$a net/minecraft/world/level/block/state/BlockBehaviour$BlockStateBase$Cache + a f_60841_ + b f_60842_ + c f_60843_ + d f_60844_ + e f_60845_ + f f_60846_ + g f_60847_ + h f_60848_ + i f_60849_ + j f_60850_ + ()V + static + (Ldcb;)V + 0 o p_60853_ + a (Lha$a;)Z m_60859_ + 0 o p_60860_ + a (Lha;Lcxp;)Z m_60861_ + 0 o p_60862_ + 1 o p_60863_ + b (Lha;Lcxp;)I m_60866_ + static + 0 o p_60867_ + 1 o p_60868_ +dca$b net/minecraft/world/level/block/state/BlockBehaviour$OffsetFunction + evaluate (Ldcb;Lcls;Lgu;)Leei; m_271794_ + 0 o p_273639_ + 1 o p_273732_ + 2 o p_273779_ +dca$c net/minecraft/world/level/block/state/BlockBehaviour$OffsetType + a NONE + b XZ + c XYZ + d $VALUES + ()V + static + (Ljava/lang/String;I)V + 0 o p_60877_ + 1 o p_60878_ + a ()[Ldca$c; m_155948_ + static + valueOf (Ljava/lang/String;)Ldca$c; valueOf + static + 0 o p_60880_ + values ()[Ldca$c; values + static +dca$d net/minecraft/world/level/block/state/BlockBehaviour$Properties + A f_60901_ + B f_60902_ + C f_60903_ + D f_244138_ + E f_271289_ + a f_283880_ + b f_60884_ + c f_60885_ + d f_60886_ + e f_60887_ + f f_60888_ + g f_60889_ + h f_60890_ + i f_60891_ + j f_60892_ + k f_60893_ + l f_60894_ + m f_60895_ + n f_60896_ + o f_278123_ + p f_278418_ + q f_279665_ + r f_279618_ + s f_278130_ + t f_243850_ + u f_279538_ + v f_279630_ + w f_60897_ + x f_60898_ + y f_60899_ + z f_60900_ + ()V + a (Lcpn;)Ldca$d; m_60916_ + 0 o p_60917_ + a (Lcen;)Ldca$d; m_284268_ + 0 o p_285331_ + a ([Lcau;)Ldca$d; m_246843_ + 0 o p_248792_ + a (Ldcb;Lcls;Lgu;Lbfn;)Z m_284110_ + static + 0 o p_284893_ + 1 o p_284894_ + 2 o p_284895_ + 3 o p_284896_ + a (Ldxi;)Ldca$d; m_284180_ + 0 o p_285137_ + a (Ldcb;)I m_60928_ + static + 0 o p_60929_ + a (Ljava/util/function/ToIntFunction;)Ldca$d; m_60953_ + 0 o p_60954_ + a (Lcxa;)Ldca$d; m_60918_ + 0 o p_60919_ + a (Ldca;)Ldca$d; m_60926_ + static + 0 o p_60927_ + a (Ldca$c;)Ldca$d; m_222979_ + 0 o p_222980_ + a (Lddc;)Ldca$d; m_280658_ + 0 o p_282170_ + a (F)Ldca$d; m_60911_ + 0 o p_60912_ + a (Ldxj;)Ldca$d; m_278166_ + 0 o p_278265_ + a ()Ldca$d; m_284310_ + static + a (Ldxi;Ldcb;)Ldxi; m_222986_ + static + 0 o p_285237_ + 1 o p_222988_ + a (Lcen;Ldcb;)Ldxi; m_284109_ + static + 0 o p_284891_ + 1 o p_284892_ + a (FF)Ldca$d; m_60913_ + 0 o p_60914_ + 1 o p_60915_ + a (Ldca$e;)Ldca$d; m_60922_ + 0 o p_60923_ + a (Ldcb;Lcls;Lgu;)Leei; m_271675_ + static + 0 o p_272565_ + 1 o p_272566_ + 2 o p_272567_ + a (Ldca$f;)Ldca$d; m_60924_ + 0 o p_60925_ + a (Ljava/util/function/Function;)Ldca$d; m_284495_ + 0 o p_285406_ + b (Ldcb;Lcls;Lgu;)Leei; m_271674_ + static + 0 o p_272562_ + 1 o p_272563_ + 2 o p_272564_ + b (F)Ldca$d; m_60956_ + 0 o p_60957_ + b (Ldcb;)Ldxi; m_284106_ + static + 0 o p_284884_ + b (Ldca$f;)Ldca$d; m_60960_ + 0 o p_60961_ + b ()Ldca$d; m_60910_ + c (Ldca$f;)Ldca$d; m_60971_ + 0 o p_60972_ + c ()Ldca$d; m_60955_ + c (F)Ldca$d; m_60967_ + 0 o p_60968_ + c (Ldcb;Lcls;Lgu;)Z m_60930_ + static + 0 o p_60931_ + 1 o p_60932_ + 2 o p_60933_ + d (Ldcb;Lcls;Lgu;)Z m_60962_ + static + 0 o p_60963_ + 1 o p_60964_ + 2 o p_60965_ + d (F)Ldca$d; m_60978_ + 0 o p_60979_ + d ()Ldca$d; m_60966_ + d (Ldca$f;)Ldca$d; m_60982_ + 0 o p_60983_ + e (Ldcb;Lcls;Lgu;)Z m_284107_ + static + 0 o p_284885_ + 1 o p_284886_ + 2 o p_284887_ + e ()Ldca$d; m_60977_ + e (F)Ldca$d; m_155954_ + 0 o p_155955_ + e (Ldca$f;)Ldca$d; m_60991_ + 0 o p_60992_ + f (Ldcb;Lcls;Lgu;)Z m_284108_ + static + 0 o p_284888_ + 1 o p_284889_ + 2 o p_284890_ + f ()Ldca$d; m_60988_ + f (F)Ldca$d; m_155956_ + 0 o p_155957_ + g ()Ldca$d; m_222994_ + h ()Ldca$d; m_278183_ + i ()Ldca$d; m_278788_ + j ()Ldca$d; m_280606_ + k ()Ldca$d; m_280574_ + l ()Ldca$d; m_60996_ + m ()Ldca$d; m_60999_ + n ()Ldca$d; m_246721_ + o ()Ldca$d; m_280170_ +dca$e net/minecraft/world/level/block/state/BlockBehaviour$StateArgumentPredicate + test (Ldcb;Lcls;Lgu;Ljava/lang/Object;)Z m_61030_ + 0 o p_61031_ + 1 o p_61032_ + 2 o p_61033_ + 3 o p_61034_ +dca$f net/minecraft/world/level/block/state/BlockBehaviour$StatePredicate + test (Ldcb;Lcls;Lgu;)Z m_61035_ + 0 o p_61036_ + 1 o p_61037_ + 2 o p_61038_ +dcb net/minecraft/world/level/block/state/BlockState + b f_61039_ + ()V + static + (Lcpn;Lcom/google/common/collect/ImmutableMap;Lcom/mojang/serialization/MapCodec;)V + 0 o p_61042_ + 1 o p_61043_ + 2 o p_61044_ + x ()Ldcb; m_7160_ +dcc net/minecraft/world/level/block/state/StateDefinition + a f_61046_ + b f_61047_ + c f_61048_ + d f_61049_ + ()V + static + (Ljava/util/function/Function;Ljava/lang/Object;Ldcc$b;Ljava/util/Map;)V + 0 o p_61052_ + 1 o p_61053_ + 2 o p_61054_ + 3 o p_61055_ + a ()Lcom/google/common/collect/ImmutableList; m_61056_ + a (Ljava/util/function/Function;Ljava/lang/Object;)Ldcd; m_61087_ + static + 0 o p_61088_ + 1 o p_61089_ + a (Ldcc$b;Ljava/lang/Object;Lcom/mojang/serialization/MapCodec;Ljava/util/Map;Ljava/util/List;Ljava/util/List;)V m_61057_ + static + 0 o p_61058_ + 1 o p_61059_ + 2 o p_61060_ + 3 o p_61061_ + 4 o p_61062_ + 5 o p_61063_ + a (Ldde;Lcom/mojang/datafixers/util/Pair;)Ldcd; m_187534_ + static + 0 o p_187535_ + 1 o p_187536_ + a (Ldde;Ljava/util/List;)Ljava/util/stream/Stream; m_61070_ + static + 0 o p_61071_ + 1 o p_61072_ + a (Ljava/util/List;Ldde;Ljava/lang/Comparable;)Ljava/util/List; m_155958_ + static + 0 o p_155959_ + 1 o p_155960_ + 2 o p_155961_ + a (Ldde;Ldcd;)Lcom/mojang/datafixers/util/Pair; m_187531_ + static + 0 o p_187532_ + 1 o p_187533_ + a (Lcom/mojang/serialization/MapCodec;Ljava/util/function/Supplier;Ljava/lang/String;Ldde;)Lcom/mojang/serialization/MapCodec; m_61076_ + static + 0 o p_61077_ + 1 o p_61078_ + 2 o p_61079_ + 3 o p_61080_ + a (Ljava/lang/String;)Ldde; m_61081_ + 0 o p_61082_ + a (Ldde;Ljava/util/function/Supplier;)Ldde$a; m_187537_ + static + 0 o p_187538_ + 1 o p_187539_ + b (Ljava/lang/String;)V m_187540_ + static + 0 o p_187541_ + b ()Ldcd; m_61090_ + c ()Ljava/lang/Object; m_61091_ + d ()Ljava/util/Collection; m_61092_ + toString ()Ljava/lang/String; toString +dcc$a net/minecraft/world/level/block/state/StateDefinition$Builder + a f_61095_ + b f_61096_ + (Ljava/lang/Object;)V + 0 o p_61098_ + a (Ldde;)V m_61099_ + 0 o p_61100_ + a (Ljava/util/function/Function;Ldcc$b;)Ldcc; m_61101_ + 0 o p_61102_ + 1 o p_61103_ + a ([Ldde;)Ldcc$a; m_61104_ + 0 o p_61105_ +dcc$b net/minecraft/world/level/block/state/StateDefinition$Factory + create (Ljava/lang/Object;Lcom/google/common/collect/ImmutableMap;Lcom/mojang/serialization/MapCodec;)Ljava/lang/Object; m_61106_ + 0 o p_61107_ + 1 o p_61108_ + 2 o p_61109_ +dcd net/minecraft/world/level/block/state/StateHolder + a f_61110_ + b f_61111_ + c f_155962_ + d f_155963_ + e f_61112_ + f f_61113_ + g f_61114_ + ()V + static + (Ljava/lang/Object;Lcom/google/common/collect/ImmutableMap;Lcom/mojang/serialization/MapCodec;)V + 0 o p_61117_ + 1 o p_61118_ + 2 o p_61119_ + B ()Ljava/util/Collection; m_61147_ + C ()Lcom/google/common/collect/ImmutableMap; m_61148_ + a (Ldcd;Ljava/util/Optional;)Ldcd; m_187542_ + static + 0 o p_187543_ + 1 o p_187544_ + a (Ldcd;)Ljava/lang/Object; m_61120_ + static + 0 o p_61121_ + a (Ljava/util/Map;)V m_61133_ + 0 o p_61134_ + a (Ldde;)Ljava/lang/Object; m_61122_ + 0 o p_61123_ + a (Ldde;Ljava/lang/Comparable;)Ljava/lang/Object; m_61124_ + 0 o p_61125_ + 1 o p_61126_ + a (Lcom/mojang/serialization/Codec;Ljava/util/function/Function;)Lcom/mojang/serialization/Codec; m_61127_ + static + 0 o p_61128_ + 1 o p_61129_ + a (Ljava/util/function/Function;Ljava/lang/Object;)Lcom/mojang/serialization/Codec; m_187545_ + static + 0 o p_187546_ + 1 o p_187547_ + a (Ljava/util/Collection;Ljava/lang/Object;)Ljava/lang/Object; m_61130_ + static + 0 o p_61131_ + 1 o p_61132_ + b (Ldde;)Z m_61138_ + 0 o p_61139_ + b (Ldde;Ljava/lang/Comparable;)Ljava/lang/Object; m_263224_ + 0 o p_263324_ + 1 o p_263334_ + c (Ldde;Ljava/lang/Comparable;)Ljava/util/Map; m_61140_ + 0 o p_61141_ + 1 o p_61142_ + c (Ldde;)Ljava/lang/Comparable; m_61143_ + 0 o p_61144_ + d (Ldde;)Ljava/util/Optional; m_61145_ + 0 o p_61146_ + toString ()Ljava/lang/String; toString +dcd$1 net/minecraft/world/level/block/state/StateHolder$1 + ()V + a (Ldde;Ljava/lang/Comparable;)Ljava/lang/String; m_61151_ + 0 o p_61152_ + 1 o p_61153_ + a (Ljava/util/Map$Entry;)Ljava/lang/String; apply + 0 o p_61155_ + apply (Ljava/lang/Object;)Ljava/lang/Object; apply + 0 o p_61157_ +dce net/minecraft/world/level/block/state/package-info +dcf net/minecraft/world/level/block/state/pattern/BlockInWorld + a f_61158_ + b f_61159_ + c f_61160_ + d f_61161_ + e f_61162_ + f f_61163_ + (Lcmp;Lgu;Z)V + 0 o p_61165_ + 1 o p_61166_ + 2 o p_61167_ + a (Ljava/util/function/Predicate;)Ljava/util/function/Predicate; m_61169_ + static + 0 o p_61170_ + a (Ljava/util/function/Predicate;Ldcf;)Z m_61171_ + static + 0 o p_61172_ + 1 o p_61173_ + a ()Ldcb; m_61168_ + b ()Lczn; m_61174_ + c ()Lcmp; m_61175_ + d ()Lgu; m_61176_ +dcg net/minecraft/world/level/block/state/pattern/BlockPattern + a f_61177_ + b f_61178_ + c f_61179_ + d f_61180_ + ([[[Ljava/util/function/Predicate;)V + 0 o p_61182_ + a (Lgu;Lha;Lha;Lcom/google/common/cache/LoadingCache;)Ldcg$b; m_61197_ + 0 o p_61198_ + 1 o p_61199_ + 2 o p_61200_ + 3 o p_61201_ + a (Lcmp;Lgu;)Ldcg$b; m_61184_ + 0 o p_61185_ + 1 o p_61186_ + a (Lgu;Lha;Lha;III)Lgu; m_61190_ + static + 0 o p_61191_ + 1 o p_61192_ + 2 o p_61193_ + 3 o p_61194_ + 4 o p_61195_ + 5 o p_61196_ + a (Lcmp;Lgu;Lha;Lha;)Ldcg$b; m_155964_ + 0 o p_155965_ + 1 o p_155966_ + 2 o p_155967_ + 3 o p_155968_ + a ()I m_61183_ + a (Lcmp;Z)Lcom/google/common/cache/LoadingCache; m_61187_ + static + 0 o p_61188_ + 1 o p_61189_ + b ()I m_61202_ + c ()I m_61203_ + d ()[[[Ljava/util/function/Predicate; m_155969_ +dcg$a net/minecraft/world/level/block/state/pattern/BlockPattern$BlockCacheLoader + a f_61204_ + b f_61205_ + (Lcmp;Z)V + 0 o p_61207_ + 1 o p_61208_ + a (Lgu;)Ldcf; load + 0 o p_61210_ + load (Ljava/lang/Object;)Ljava/lang/Object; load + 0 o p_61212_ +dcg$b net/minecraft/world/level/block/state/pattern/BlockPattern$BlockPatternMatch + a f_61213_ + b f_61214_ + c f_61215_ + d f_61216_ + e f_61217_ + f f_61218_ + g f_61219_ + (Lgu;Lha;Lha;Lcom/google/common/cache/LoadingCache;III)V + 0 o p_61221_ + 1 o p_61222_ + 2 o p_61223_ + 3 o p_61224_ + 4 o p_61225_ + 5 o p_61226_ + 6 o p_61227_ + a ()Lgu; m_61228_ + a (III)Ldcf; m_61229_ + 0 o p_61230_ + 1 o p_61231_ + 2 o p_61232_ + b ()Lha; m_61233_ + c ()Lha; m_61234_ + d ()I m_155970_ + e ()I m_155971_ + f ()I m_155972_ + toString ()Ljava/lang/String; toString +dch net/minecraft/world/level/block/state/pattern/BlockPatternBuilder + a f_61236_ + b f_61237_ + c f_61238_ + d f_61239_ + e f_61240_ + ()V + static + ()V + a ()Ldch; m_61243_ + static + a (Ldcf;)Z m_187548_ + static + 0 o p_187549_ + a ([Ljava/lang/String;)Ldch; m_61247_ + 0 o p_61248_ + a (CLjava/util/function/Predicate;)Ldch; m_61244_ + 0 o p_61245_ + 1 o p_61246_ + b ()Ldcg; m_61249_ + c ()[[[Ljava/util/function/Predicate; m_61250_ + d ()V m_61251_ +dci net/minecraft/world/level/block/state/pattern/package-info +dcj net/minecraft/world/level/block/state/predicate/BlockPredicate + a f_61272_ + (Lcpn;)V + 0 o p_61274_ + a (Ldcb;)Z test + 0 o p_61278_ + a (Lcpn;)Ldcj; m_61275_ + static + 0 o p_61276_ + test (Ljava/lang/Object;)Z test + 0 o p_61280_ +dck net/minecraft/world/level/block/state/predicate/BlockStatePredicate + a f_61281_ + b f_61282_ + c f_61283_ + ()V + static + (Ldcc;)V + 0 o p_61286_ + a (Ldcb;Ldde;Ljava/util/function/Predicate;)Z m_61291_ + 0 o p_61292_ + 1 o p_61293_ + 2 o p_61294_ + a (Ldcb;)Z test + 0 o p_61290_ + a (Ldde;Ljava/util/function/Predicate;)Ldck; m_61295_ + 0 o p_61296_ + 1 o p_61297_ + a (Lcpn;)Ldck; m_61287_ + static + 0 o p_61288_ + b (Ldcb;)Z m_61298_ + static + 0 o p_61299_ + test (Ljava/lang/Object;)Z test + 0 o p_61301_ +dcl net/minecraft/world/level/block/state/predicate/package-info +dcm net/minecraft/world/level/block/state/properties/AttachFace + a FLOOR + b WALL + c CEILING + d f_61305_ + e $VALUES + ()V + static + (Ljava/lang/String;ILjava/lang/String;)V + 0 o p_61309_ + 1 o p_61310_ + 2 o p_61311_ + a ()[Ldcm; m_155973_ + static + c ()Ljava/lang/String; m_7912_ + valueOf (Ljava/lang/String;)Ldcm; valueOf + static + 0 o p_61314_ + values ()[Ldcm; values + static +dcn net/minecraft/world/level/block/state/properties/BambooLeaves + a NONE + b SMALL + c LARGE + d f_61319_ + e $VALUES + ()V + static + (Ljava/lang/String;ILjava/lang/String;)V + 0 o p_61323_ + 1 o p_61324_ + 2 o p_61325_ + a ()[Ldcn; m_155974_ + static + c ()Ljava/lang/String; m_7912_ + toString ()Ljava/lang/String; toString + valueOf (Ljava/lang/String;)Ldcn; valueOf + static + 0 o p_61329_ + values ()[Ldcn; values + static +dco net/minecraft/world/level/block/state/properties/BedPart + a HEAD + b FOOT + c f_61333_ + d $VALUES + ()V + static + (Ljava/lang/String;ILjava/lang/String;)V + 0 o p_61337_ + 1 o p_61338_ + 2 o p_61339_ + a ()[Ldco; m_155975_ + static + c ()Ljava/lang/String; m_7912_ + toString ()Ljava/lang/String; toString + valueOf (Ljava/lang/String;)Ldco; valueOf + static + 0 o p_61343_ + values ()[Ldco; values + static +dcp net/minecraft/world/level/block/state/properties/BellAttachType + a FLOOR + b CEILING + c SINGLE_WALL + d DOUBLE_WALL + e f_61349_ + f $VALUES + ()V + static + (Ljava/lang/String;ILjava/lang/String;)V + 0 o p_61353_ + 1 o p_61354_ + 2 o p_61355_ + a ()[Ldcp; m_155976_ + static + c ()Ljava/lang/String; m_7912_ + valueOf (Ljava/lang/String;)Ldcp; valueOf + static + 0 o p_61358_ + values ()[Ldcp; values + static +dcq net/minecraft/world/level/block/state/properties/BlockSetType + A f_271232_ + a f_271132_ + b f_271208_ + c f_271479_ + d f_271263_ + e f_271198_ + f f_271100_ + g f_271387_ + h f_271512_ + i f_271401_ + j f_271187_ + k f_271528_ + l f_271290_ + m f_271400_ + n f_271383_ + o f_271088_ + p f_271253_ + q f_278463_ + r f_271136_ + s f_271502_ + t f_271141_ + u f_271425_ + v f_271258_ + w f_271234_ + x f_271481_ + y f_271194_ + z f_271394_ + ()V + static + (Ljava/lang/String;ZLcxa;Lamg;Lamg;Lamg;Lamg;Lamg;Lamg;Lamg;Lamg;)V + 0 o f_271253_ + 1 o f_278463_ + 2 o f_271136_ + 3 o f_271502_ + 4 o f_271141_ + 5 o f_271425_ + 6 o f_271258_ + 7 o f_271234_ + 8 o f_271481_ + 9 o f_271194_ + 10 o f_271394_ + (Ljava/lang/String;)V + 0 o p_272860_ + a (Ldcq;)Ldcq; m_272115_ + static + 0 o p_273033_ + a ()Ljava/util/stream/Stream; m_271801_ + static + b ()Ljava/lang/String; f_271253_ + c ()Z f_278463_ + d ()Lcxa; f_271136_ + e ()Lamg; f_271502_ + equals (Ljava/lang/Object;)Z equals + 0 o p_272893_ + f ()Lamg; f_271141_ + g ()Lamg; f_271425_ + h ()Lamg; f_271258_ + hashCode ()I hashCode + i ()Lamg; f_271234_ + j ()Lamg; f_271481_ + k ()Lamg; f_271194_ + l ()Lamg; f_271394_ + toString ()Ljava/lang/String; toString +dcr net/minecraft/world/level/block/state/properties/BlockStateProperties + A f_61360_ + B f_61361_ + C f_61362_ + D f_155977_ + E f_222995_ + F f_222996_ + G f_222997_ + H f_61364_ + I f_61365_ + J f_61366_ + K f_61367_ + L f_61368_ + M f_61369_ + N f_61370_ + O f_61371_ + P f_61372_ + Q f_61373_ + R f_61374_ + S f_271526_ + T f_61375_ + U f_61376_ + V f_61377_ + W f_61378_ + X f_61379_ + Y f_61380_ + Z f_61381_ + a f_61386_ + aA f_61413_ + aB f_155995_ + aC f_61414_ + aD f_61415_ + aE f_61416_ + aF f_61417_ + aG f_155978_ + aH f_155979_ + aI f_155980_ + aJ f_155981_ + aK f_61418_ + aL f_61419_ + aM f_61420_ + aN f_61421_ + aO f_155982_ + aP f_61422_ + aQ f_61423_ + aR f_61424_ + aS f_61425_ + aT f_61426_ + aU f_61387_ + aV f_155983_ + aW f_61388_ + aX f_155984_ + aY f_155985_ + aZ f_61389_ + aa f_61382_ + ab f_61383_ + ac f_61384_ + ad f_61385_ + ae f_61401_ + af f_61402_ + ag f_61403_ + ah f_61404_ + ai f_155987_ + aj f_155988_ + ak f_155989_ + al f_222998_ + am f_155990_ + an f_155991_ + ao f_155992_ + ap f_155993_ + aq f_61405_ + ar f_61406_ + as f_61407_ + at f_222999_ + au f_61408_ + av f_61409_ + aw f_61410_ + ax f_61411_ + ay f_61412_ + az f_155994_ + b f_61427_ + ba f_61390_ + bb f_61391_ + bc f_61392_ + bd f_61393_ + be f_61394_ + bf f_61395_ + bg f_61396_ + bh f_61397_ + bi f_61398_ + bj f_61399_ + bk f_61400_ + bl f_155996_ + bm f_155997_ + bn f_155998_ + bo f_155999_ + bp f_260472_ + bq f_260553_ + br f_260538_ + bs f_260590_ + bt f_260519_ + bu f_260439_ + bv f_271112_ + bw f_276520_ + c f_61428_ + d f_61429_ + e f_61430_ + f f_61431_ + g f_61432_ + h f_61433_ + i f_61434_ + j f_61435_ + k f_61436_ + l f_61437_ + m f_61438_ + n f_61439_ + o f_61440_ + p f_61441_ + q f_61442_ + r f_61443_ + s f_61444_ + t f_61445_ + u f_61446_ + v f_61447_ + w f_61448_ + x f_61449_ + y f_61450_ + z f_61451_ + ()V + static + ()V + a (Lddf;)Z m_61453_ + static + 0 o p_61454_ + a (Lha;)Z m_61455_ + static + 0 o p_61456_ +dcs net/minecraft/world/level/block/state/properties/BooleanProperty + a f_61457_ + (Ljava/lang/String;)V + 0 o p_61459_ + a ()Ljava/util/Collection; m_6908_ + a (Ljava/lang/Boolean;)Ljava/lang/String; m_6940_ + 0 o p_61462_ + a (Ljava/lang/String;)Ldcs; m_61465_ + static + 0 o p_61466_ + a (Ljava/lang/Comparable;)Ljava/lang/String; m_6940_ + 0 o p_61464_ + b ()I m_6310_ + b (Ljava/lang/String;)Ljava/util/Optional; m_6215_ + 0 o p_61469_ + equals (Ljava/lang/Object;)Z equals + 0 o p_61471_ +dct net/minecraft/world/level/block/state/properties/ChestType + a SINGLE + b LEFT + c RIGHT + d f_61476_ + e $VALUES + ()V + static + (Ljava/lang/String;ILjava/lang/String;)V + 0 o p_262986_ + 1 o p_263054_ + 2 o p_263109_ + a ()Ldct; m_61486_ + b ()[Ldct; m_156001_ + static + c ()Ljava/lang/String; m_7912_ + valueOf (Ljava/lang/String;)Ldct; valueOf + static + 0 o p_61488_ + values ()[Ldct; values + static +dct$1 net/minecraft/world/level/block/state/properties/ChestType$1 + a f_262740_ + ()V + static +dcu net/minecraft/world/level/block/state/properties/ComparatorMode + a COMPARE + b SUBTRACT + c f_61528_ + d $VALUES + ()V + static + (Ljava/lang/String;ILjava/lang/String;)V + 0 o p_61532_ + 1 o p_61533_ + 2 o p_61534_ + a ()[Ldcu; m_156002_ + static + c ()Ljava/lang/String; m_7912_ + toString ()Ljava/lang/String; toString + valueOf (Ljava/lang/String;)Ldcu; valueOf + static + 0 o p_61538_ + values ()[Ldcu; values + static +dcv net/minecraft/world/level/block/state/properties/DirectionProperty + (Ljava/lang/String;Ljava/util/Collection;)V + 0 o p_61541_ + 1 o p_61542_ + a (Ljava/lang/String;Ljava/util/Collection;)Ldcv; m_61543_ + static + 0 o p_61544_ + 1 o p_61545_ + a (Ljava/lang/String;Ljava/util/function/Predicate;)Ldcv; m_61546_ + static + 0 o p_61547_ + 1 o p_61548_ + a (Ljava/lang/String;[Lha;)Ldcv; m_61549_ + static + 0 o p_61550_ + 1 o p_61551_ + a (Lha;)Z m_187557_ + static + 0 o p_187558_ + a (Ljava/lang/String;)Ldcv; m_156003_ + static + 0 o p_156004_ +dcw net/minecraft/world/level/block/state/properties/DoorHingeSide + a LEFT + b RIGHT + c $VALUES + ()V + static + (Ljava/lang/String;I)V + 0 o p_61557_ + 1 o p_61558_ + a ()[Ldcw; m_156005_ + static + c ()Ljava/lang/String; m_7912_ + toString ()Ljava/lang/String; toString + valueOf (Ljava/lang/String;)Ldcw; valueOf + static + 0 o p_61562_ + values ()[Ldcw; values + static +dcx net/minecraft/world/level/block/state/properties/DoubleBlockHalf + a UPPER + b LOWER + c $VALUES + ()V + static + (Ljava/lang/String;I)V + 0 o p_61569_ + 1 o p_61570_ + a ()[Ldcx; m_156006_ + static + c ()Ljava/lang/String; m_7912_ + toString ()Ljava/lang/String; toString + valueOf (Ljava/lang/String;)Ldcx; valueOf + static + 0 o p_61574_ + values ()[Ldcx; values + static +dcy net/minecraft/world/level/block/state/properties/DripstoneThickness + a TIP_MERGE + b TIP + c FRUSTUM + d MIDDLE + e BASE + f f_156012_ + g $VALUES + ()V + static + (Ljava/lang/String;ILjava/lang/String;)V + 0 o p_156016_ + 1 o p_156017_ + 2 o p_156018_ + a ()[Ldcy; m_156019_ + static + c ()Ljava/lang/String; m_7912_ + toString ()Ljava/lang/String; toString + valueOf (Ljava/lang/String;)Ldcy; valueOf + static + 0 o p_156023_ + values ()[Ldcy; values + static +dcz net/minecraft/world/level/block/state/properties/EnumProperty + a f_61576_ + b f_61577_ + (Ljava/lang/String;Ljava/lang/Class;Ljava/util/Collection;)V + 0 o p_61579_ + 1 o p_61580_ + 2 o p_61581_ + a ()Ljava/util/Collection; m_6908_ + a (Ljava/lang/String;Ljava/lang/Class;Ljava/util/function/Predicate;)Ldcz; m_61594_ + static + 0 o p_61595_ + 1 o p_61596_ + 2 o p_61597_ + a (Ljava/lang/Enum;)Ljava/lang/String; m_6940_ + 0 o p_61586_ + a (Ljava/lang/String;Ljava/lang/Class;[Ljava/lang/Enum;)Ldcz; m_61598_ + static + 0 o p_61599_ + 1 o p_61600_ + 2 o p_61601_ + a (Ljava/lang/String;Ljava/lang/Class;)Ldcz; m_61587_ + static + 0 o p_61588_ + 1 o p_61589_ + a (Ljava/lang/String;Ljava/lang/Class;Ljava/util/Collection;)Ldcz; m_61590_ + static + 0 o p_61591_ + 1 o p_61592_ + 2 o p_61593_ + a (Ljava/lang/Comparable;)Ljava/lang/String; m_6940_ + 0 o p_61584_ + b (Ljava/lang/Enum;)Z m_187559_ + static + 0 o p_187560_ + b ()I m_6310_ + b (Ljava/lang/String;)Ljava/util/Optional; m_6215_ + 0 o p_61604_ + equals (Ljava/lang/Object;)Z equals + 0 o p_61606_ +dd net/minecraft/advancements/critereon/TargetBlockTrigger + a f_70207_ + ()V + static + ()V + a (Ldzk;Leei;ILdd$a;)Z m_70220_ + static + 0 o p_70221_ + 1 o p_70222_ + 2 o p_70223_ + 3 o p_70224_ + a ()Lacq; m_7295_ + a (Lcom/google/gson/JsonObject;Lba;Lbe;)Ldd$a; m_7214_ + 0 o p_286400_ + 1 o p_286802_ + 2 o p_286826_ + a (Laig;Lbfj;Leei;I)V m_70211_ + 0 o p_70212_ + 1 o p_70213_ + 2 o p_70214_ + 3 o p_70215_ + b (Lcom/google/gson/JsonObject;Lba;Lbe;)Lar; m_7214_ + 0 o p_286796_ + 1 o p_286341_ + 2 o p_286418_ +dd$a net/minecraft/advancements/critereon/TargetBlockTrigger$TriggerInstance + a f_70230_ + b f_70231_ + (Lba;Lcj$d;Lba;)V + 0 o p_286385_ + 1 o p_286505_ + 2 o p_286608_ + a (Ldzk;Leei;I)Z m_70241_ + 0 o p_70242_ + 1 o p_70243_ + 2 o p_70244_ + a (Lct;)Lcom/google/gson/JsonObject; m_7683_ + 0 o p_70240_ + a (Lcj$d;Lba;)Ldd$a; m_285906_ + static + 0 o p_286700_ + 1 o p_286883_ +dda net/minecraft/world/level/block/state/properties/Half + a TOP + b BOTTOM + c f_61609_ + d $VALUES + ()V + static + (Ljava/lang/String;ILjava/lang/String;)V + 0 o p_61613_ + 1 o p_61614_ + 2 o p_61615_ + a ()[Ldda; m_156025_ + static + c ()Ljava/lang/String; m_7912_ + toString ()Ljava/lang/String; toString + valueOf (Ljava/lang/String;)Ldda; valueOf + static + 0 o p_61619_ + values ()[Ldda; values + static +ddb net/minecraft/world/level/block/state/properties/IntegerProperty + a f_61621_ + b f_223000_ + c f_223001_ + (Ljava/lang/String;II)V + 0 o p_61623_ + 1 o p_61624_ + 2 o p_61625_ + a ()Ljava/util/Collection; m_6908_ + a (Ljava/lang/String;II)Lddb; m_61631_ + static + 0 o p_61632_ + 1 o p_61633_ + 2 o p_61634_ + a (Ljava/lang/Integer;)Ljava/lang/String; m_6940_ + 0 o p_61630_ + a (Ljava/lang/Comparable;)Ljava/lang/String; m_6940_ + 0 o p_61628_ + b ()I m_6310_ + b (Ljava/lang/String;)Ljava/util/Optional; m_6215_ + 0 o p_61637_ + equals (Ljava/lang/Object;)Z equals + 0 o p_61639_ +ddc net/minecraft/world/level/block/state/properties/NoteBlockInstrument + A $VALUES + a HARP + b BASEDRUM + c SNARE + d HAT + e BASS + f FLUTE + g BELL + h GUITAR + i CHIME + j XYLOPHONE + k IRON_XYLOPHONE + l COW_BELL + m DIDGERIDOO + n BIT + o BANJO + p PLING + q ZOMBIE + r SKELETON + s CREEPER + t DRAGON + u WITHER_SKELETON + v PIGLIN + w CUSTOM_HEAD + x f_61656_ + y f_61657_ + z f_262302_ + ()V + static + (Ljava/lang/String;ILjava/lang/String;Lhe;Lddc$a;)V + 0 o p_263379_ + 1 o p_263396_ + 2 o p_263425_ + 3 o p_263341_ + 4 o p_263322_ + a ()Lhe; m_263188_ + b ()Z m_262503_ + c ()Ljava/lang/String; m_7912_ + d ()Z m_262394_ + e ()Z m_280504_ + f ()[Lddc; m_156026_ + static + valueOf (Ljava/lang/String;)Lddc; valueOf + static + 0 o p_61670_ + values ()[Lddc; values + static +ddc$a net/minecraft/world/level/block/state/properties/NoteBlockInstrument$Type + a BASE_BLOCK + b MOB_HEAD + c CUSTOM + d $VALUES + ()V + static + (Ljava/lang/String;I)V + 0 o p_262639_ + 1 o p_262649_ + a ()[Lddc$a; m_262420_ + static + valueOf (Ljava/lang/String;)Lddc$a; valueOf + static + 0 o p_262650_ + values ()[Lddc$a; values + static +ddd net/minecraft/world/level/block/state/properties/PistonType + a DEFAULT + b STICKY + c f_61674_ + d $VALUES + ()V + static + (Ljava/lang/String;ILjava/lang/String;)V + 0 o p_61678_ + 1 o p_61679_ + 2 o p_61680_ + a ()[Lddd; m_156027_ + static + c ()Ljava/lang/String; m_7912_ + toString ()Ljava/lang/String; toString + valueOf (Ljava/lang/String;)Lddd; valueOf + static + 0 o p_61684_ + values ()[Lddd; values + static +dde net/minecraft/world/level/block/state/properties/Property + a f_61686_ + b f_61687_ + c f_61688_ + d f_61689_ + e f_61690_ + (Ljava/lang/String;Ljava/lang/Class;)V + 0 o p_61692_ + 1 o p_61693_ + a ()Ljava/util/Collection; m_6908_ + a (Ldcd;Ljava/lang/Comparable;)Ldcd; m_156028_ + 0 o p_156029_ + 1 o p_156030_ + a (Ljava/lang/String;)Lcom/mojang/serialization/DataResult; m_61697_ + 0 o p_61698_ + a (Ldcd;)Ldde$a; m_61694_ + 0 o p_61695_ + a (Lcom/mojang/serialization/DynamicOps;Ldcd;Ljava/lang/Object;)Lcom/mojang/serialization/DataResult; m_156031_ + 0 o p_156032_ + 1 o p_156033_ + 2 o p_156034_ + a (Ljava/lang/Comparable;)Ljava/lang/String; m_6940_ + 0 o p_61696_ + b (Ljava/lang/Comparable;)Ldde$a; m_61699_ + 0 o p_61700_ + b ()I m_6310_ + b (Ljava/lang/String;)Ljava/util/Optional; m_6215_ + 0 o p_61701_ + c (Ljava/lang/String;)Lcom/mojang/serialization/DataResult; m_274278_ + 0 o p_275177_ + c ()Ljava/util/stream/Stream; m_61702_ + d (Ljava/lang/String;)Ljava/lang/String; m_274277_ + 0 o p_275176_ + d ()Lcom/mojang/serialization/Codec; m_156037_ + e ()Lcom/mojang/serialization/Codec; m_61705_ + equals (Ljava/lang/Object;)Z equals + 0 o p_61707_ + f ()Ljava/lang/String; m_61708_ + g ()Ljava/lang/Class; m_61709_ + hashCode ()I hashCode + toString ()Ljava/lang/String; toString +dde$a net/minecraft/world/level/block/state/properties/Property$Value + a f_61712_ + b f_61713_ + (Ldde;Ljava/lang/Comparable;)V + 0 o f_61712_ + 1 o f_61713_ + a ()Ldde; f_61712_ + b ()Ljava/lang/Comparable; f_61713_ + equals (Ljava/lang/Object;)Z equals + 0 o p_61724_ + hashCode ()I hashCode + toString ()Ljava/lang/String; toString +ddf net/minecraft/world/level/block/state/properties/RailShape + a NORTH_SOUTH + b EAST_WEST + c ASCENDING_EAST + d ASCENDING_WEST + e ASCENDING_NORTH + f ASCENDING_SOUTH + g SOUTH_EAST + h SOUTH_WEST + i NORTH_WEST + j NORTH_EAST + k f_61737_ + l $VALUES + ()V + static + (Ljava/lang/String;ILjava/lang/String;)V + 0 o p_61741_ + 1 o p_61742_ + 2 o p_61743_ + a ()Ljava/lang/String; m_156038_ + b ()Z m_61745_ + c ()Ljava/lang/String; m_7912_ + d ()[Lddf; m_156039_ + static + toString ()Ljava/lang/String; toString + valueOf (Ljava/lang/String;)Lddf; valueOf + static + 0 o p_61748_ + values ()[Lddf; values + static +ddg net/minecraft/world/level/block/state/properties/RedstoneSide + a UP + b SIDE + c NONE + d f_61753_ + e $VALUES + ()V + static + (Ljava/lang/String;ILjava/lang/String;)V + 0 o p_61757_ + 1 o p_61758_ + 2 o p_61759_ + a ()Z m_61761_ + b ()[Lddg; m_156040_ + static + c ()Ljava/lang/String; m_7912_ + toString ()Ljava/lang/String; toString + valueOf (Ljava/lang/String;)Lddg; valueOf + static + 0 o p_61764_ + values ()[Lddg; values + static +ddh net/minecraft/world/level/block/state/properties/RotationSegment + a f_263687_ + b f_244269_ + c f_243806_ + d f_243970_ + e f_244031_ + f f_243971_ + ()V + static + ()V + a (I)Ljava/util/Optional; m_247487_ + static + 0 o p_250978_ + a (F)I m_246374_ + static + 0 o p_249057_ + a ()I m_247348_ + static + a (Lha;)I m_245225_ + static + 0 o p_249634_ + b (I)F m_245107_ + static + 0 o p_250653_ +ddi net/minecraft/world/level/block/state/properties/SculkSensorPhase + a INACTIVE + b ACTIVE + c COOLDOWN + d f_156044_ + e $VALUES + ()V + static + (Ljava/lang/String;ILjava/lang/String;)V + 0 o p_156048_ + 1 o p_156049_ + 2 o p_156050_ + a ()[Lddi; m_156051_ + static + c ()Ljava/lang/String; m_7912_ + toString ()Ljava/lang/String; toString + valueOf (Ljava/lang/String;)Lddi; valueOf + static + 0 o p_156055_ + values ()[Lddi; values + static +ddj net/minecraft/world/level/block/state/properties/SlabType + a TOP + b BOTTOM + c DOUBLE + d f_61769_ + e $VALUES + ()V + static + (Ljava/lang/String;ILjava/lang/String;)V + 0 o p_61773_ + 1 o p_61774_ + 2 o p_61775_ + a ()[Lddj; m_156057_ + static + c ()Ljava/lang/String; m_7912_ + toString ()Ljava/lang/String; toString + valueOf (Ljava/lang/String;)Lddj; valueOf + static + 0 o p_61779_ + values ()[Lddj; values + static +ddk net/minecraft/world/level/block/state/properties/StairsShape + a STRAIGHT + b INNER_LEFT + c INNER_RIGHT + d OUTER_LEFT + e OUTER_RIGHT + f f_61786_ + g $VALUES + ()V + static + (Ljava/lang/String;ILjava/lang/String;)V + 0 o p_61790_ + 1 o p_61791_ + 2 o p_61792_ + a ()[Lddk; m_156069_ + static + c ()Ljava/lang/String; m_7912_ + toString ()Ljava/lang/String; toString + valueOf (Ljava/lang/String;)Lddk; valueOf + static + 0 o p_61796_ + values ()[Lddk; values + static +ddl net/minecraft/world/level/block/state/properties/StructureMode + a SAVE + b LOAD + c CORNER + d DATA + e f_61802_ + f f_61803_ + g $VALUES + ()V + static + (Ljava/lang/String;ILjava/lang/String;)V + 0 o p_61807_ + 1 o p_61808_ + 2 o p_61809_ + a ()Lsw; m_61811_ + b ()[Lddl; m_156070_ + static + c ()Ljava/lang/String; m_7912_ + valueOf (Ljava/lang/String;)Lddl; valueOf + static + 0 o p_61813_ + values ()[Lddl; values + static +ddm net/minecraft/world/level/block/state/properties/Tilt + a NONE + b UNSTABLE + c PARTIAL + d FULL + e f_156075_ + f f_156076_ + g $VALUES + ()V + static + (Ljava/lang/String;ILjava/lang/String;Z)V + 0 o p_156080_ + 1 o p_156081_ + 2 o p_156082_ + 3 o p_156083_ + a ()Z m_156084_ + b ()[Lddm; m_156085_ + static + c ()Ljava/lang/String; m_7912_ + valueOf (Ljava/lang/String;)Lddm; valueOf + static + 0 o p_156088_ + values ()[Lddm; values + static +ddn net/minecraft/world/level/block/state/properties/WallSide + a NONE + b LOW + c TALL + d f_61818_ + e $VALUES + ()V + static + (Ljava/lang/String;ILjava/lang/String;)V + 0 o p_61822_ + 1 o p_61823_ + 2 o p_61824_ + a ()[Lddn; m_156090_ + static + c ()Ljava/lang/String; m_7912_ + toString ()Ljava/lang/String; toString + valueOf (Ljava/lang/String;)Lddn; valueOf + static + 0 o p_61828_ + values ()[Lddn; values + static +ddo net/minecraft/world/level/block/state/properties/WoodType + a f_61830_ + b f_61831_ + c f_61832_ + d f_61833_ + e f_271224_ + f f_61834_ + g f_61835_ + h f_61836_ + i f_61837_ + j f_223002_ + k f_244200_ + l f_61839_ + m f_271340_ + n f_271317_ + o f_271309_ + p f_271365_ + q f_271162_ + r f_61838_ + ()V + static + (Ljava/lang/String;Ldcq;Lcxa;Lcxa;Lamg;Lamg;)V + 0 o f_61839_ + 1 o f_271340_ + 2 o f_271317_ + 3 o f_271309_ + 4 o f_271365_ + 5 o f_271162_ + (Ljava/lang/String;Ldcq;)V + 0 o p_273766_ + 1 o p_273104_ + a ()Ljava/util/stream/Stream; m_61843_ + static + a (Lddo;)Lddo; m_61844_ + static + 0 o p_61845_ + b ()Ljava/lang/String; f_61839_ + c ()Ldcq; f_271340_ + d ()Lcxa; f_271317_ + e ()Lcxa; f_271309_ + equals (Ljava/lang/Object;)Z equals + 0 o p_273126_ + f ()Lamg; f_271365_ + g ()Lamg; f_271162_ + hashCode ()I hashCode + toString ()Ljava/lang/String; toString +ddp net/minecraft/world/level/block/state/properties/package-info +ddq net/minecraft/world/level/border/BorderChangeListener + a (Ldds;D)V m_6312_ + 0 o p_61847_ + 1 o p_61848_ + a (Ldds;DDJ)V m_6689_ + 0 o p_61852_ + 1 o p_61853_ + 2 o p_61854_ + 3 o p_61855_ + a (Ldds;DD)V m_7721_ + 0 o p_61849_ + 1 o p_61850_ + 2 o p_61851_ + a (Ldds;I)V m_5904_ + 0 o p_61856_ + 1 o p_61857_ + b (Ldds;I)V m_5903_ + 0 o p_61860_ + 1 o p_61861_ + b (Ldds;D)V m_6315_ + 0 o p_61858_ + 1 o p_61859_ + c (Ldds;D)V m_6313_ + 0 o p_61862_ + 1 o p_61863_ +ddq$a net/minecraft/world/level/border/BorderChangeListener$DelegateBorderChangeListener + a f_61864_ + (Ldds;)V + 0 o p_61866_ + a (Ldds;D)V m_6312_ + 0 o p_61868_ + 1 o p_61869_ + a (Ldds;DDJ)V m_6689_ + 0 o p_61875_ + 1 o p_61876_ + 2 o p_61877_ + 3 o p_61878_ + a (Ldds;DD)V m_7721_ + 0 o p_61871_ + 1 o p_61872_ + 2 o p_61873_ + a (Ldds;I)V m_5904_ + 0 o p_61880_ + 1 o p_61881_ + b (Ldds;I)V m_5903_ + 0 o p_61886_ + 1 o p_61887_ + b (Ldds;D)V m_6315_ + 0 o p_61883_ + 1 o p_61884_ + c (Ldds;D)V m_6313_ + 0 o p_61889_ + 1 o p_61890_ +ddr net/minecraft/world/level/border/BorderStatus + a GROWING + b SHRINKING + c STATIONARY + d f_61894_ + e $VALUES + ()V + static + (Ljava/lang/String;II)V + 0 o p_61898_ + 1 o p_61899_ + 2 o p_61900_ + a ()I m_61901_ + b ()[Lddr; m_156091_ + static + valueOf (Ljava/lang/String;)Lddr; valueOf + static + 0 o p_61903_ + values ()[Lddr; values + static +dds net/minecraft/world/level/border/WorldBorder + a f_61905_ + b f_61906_ + c f_156092_ + d f_196705_ + e f_61907_ + f f_61908_ + g f_61909_ + h f_61910_ + i f_61911_ + j f_61912_ + k f_61913_ + l f_61914_ + ()V + static + ()V + a (Leed;)Z m_61935_ + 0 o p_61936_ + a (Lbfj;Leed;)Z m_187566_ + 0 o p_187567_ + 1 o p_187568_ + a (Lclt;)Z m_61927_ + 0 o p_61928_ + a (DDJ)V m_61919_ + 0 o p_61920_ + 1 o p_61921_ + 2 o p_61922_ + a ()D m_6347_ + a (DDD)Z m_187562_ + 0 o p_187563_ + 1 o p_187564_ + 2 o p_187565_ + a (Lbfj;)D m_61925_ + 0 o p_61926_ + a (D)V m_61917_ + 0 o p_61918_ + a (DD)Z m_156093_ + 0 o p_156094_ + 1 o p_156095_ + a (Lgu;)Z m_61937_ + 0 o p_61938_ + a (I)V m_61923_ + 0 o p_61924_ + a (Ldds$c;)V m_61931_ + 0 o p_61932_ + a (Lddq;)V m_61929_ + 0 o p_61930_ + b (DD)D m_61941_ + 0 o p_61942_ + 1 o p_61943_ + b (DDD)Lgu; m_187569_ + 0 o p_187570_ + 1 o p_187571_ + 2 o p_187572_ + b (Lddq;)V m_156096_ + 0 o p_156097_ + b (I)V m_61944_ + 0 o p_61945_ + b ()D m_6345_ + b (D)V m_61939_ + 0 o p_61940_ + c ()Lefb; m_61946_ + c (D)V m_61947_ + 0 o p_61948_ + c (I)V m_61952_ + 0 o p_61953_ + c (DD)V m_61949_ + 0 o p_61950_ + 1 o p_61951_ + d ()Lddr; m_61954_ + e ()D m_61955_ + f ()D m_61956_ + g ()D m_61957_ + h ()D m_61958_ + i ()D m_61959_ + j ()J m_61960_ + k ()D m_61961_ + l ()Ljava/util/List; m_61962_ + m ()I m_61963_ + n ()D m_61964_ + o ()D m_61965_ + p ()D m_61966_ + q ()I m_61967_ + r ()I m_61968_ + s ()V m_61969_ + t ()Ldds$c; m_61970_ +dds$a net/minecraft/world/level/border/WorldBorder$BorderExtent + a ()D m_6613_ + b ()D m_6608_ + c ()D m_6606_ + d ()D m_6619_ + e ()D m_6618_ + f ()D m_6611_ + g ()J m_6738_ + h ()D m_6605_ + i ()Lddr; m_5570_ + j ()V m_6623_ + k ()V m_6622_ + l ()Ldds$a; m_5794_ + m ()Lefb; m_6186_ +dds$b net/minecraft/world/level/border/WorldBorder$MovingBorderExtent + a f_61971_ + b f_61972_ + c f_61973_ + d f_61974_ + e f_61975_ + f f_61976_ + (Ldds;DDJ)V + 0 o p_61978_ + 1 o p_61979_ + 2 o p_61980_ + 3 o p_61981_ + a ()D m_6613_ + b ()D m_6608_ + c ()D m_6606_ + d ()D m_6619_ + e ()D m_6618_ + f ()D m_6611_ + g ()J m_6738_ + h ()D m_6605_ + i ()Lddr; m_5570_ + j ()V m_6623_ + k ()V m_6622_ + l ()Ldds$a; m_5794_ + m ()Lefb; m_6186_ +dds$c net/minecraft/world/level/border/WorldBorder$Settings + a f_62001_ + b f_62002_ + c f_62003_ + d f_62004_ + e f_62005_ + f f_62006_ + g f_62007_ + h f_62008_ + i f_62009_ + (DDDDIIDJD)V + 0 o p_62011_ + 1 o p_62012_ + 2 o p_62013_ + 3 o p_62014_ + 4 o p_62015_ + 5 o p_62016_ + 6 o p_62017_ + 7 o p_62018_ + 8 o p_62019_ + (Ldds;)V + 0 o p_62032_ + a (Lqr;)V m_62040_ + 0 o p_62041_ + a ()D m_62036_ + a (Lcom/mojang/serialization/DynamicLike;Ldds$c;)Ldds$c; m_62037_ + static + 0 o p_62038_ + 1 o p_62039_ + b ()D m_62042_ + c ()D m_62043_ + d ()D m_62044_ + e ()I m_62045_ + f ()I m_62046_ + g ()D m_62047_ + h ()J m_62048_ + i ()D m_62049_ +dds$d net/minecraft/world/level/border/WorldBorder$StaticBorderExtent + a f_62050_ + b f_62051_ + c f_62052_ + d f_62053_ + e f_62054_ + f f_62055_ + g f_62056_ + (Ldds;D)V + 0 o p_62058_ + 1 o p_62059_ + a ()D m_6613_ + b ()D m_6608_ + c ()D m_6606_ + d ()D m_6619_ + e ()D m_6618_ + f ()D m_6611_ + g ()J m_6738_ + h ()D m_6605_ + i ()Lddr; m_5570_ + j ()V m_6623_ + k ()V m_6622_ + l ()Ldds$a; m_5794_ + m ()Lefb; m_6186_ + n ()V m_62073_ +ddt net/minecraft/world/level/border/package-info +ddu net/minecraft/world/level/chunk/BlockColumn + a (I)Ldcb; m_183556_ + 0 o p_187573_ + a (ILdcb;)V m_183639_ + 0 o p_187574_ + 1 o p_187575_ +ddv net/minecraft/world/level/chunk/BulkSectionAccess + a f_156098_ + b f_156099_ + c f_156100_ + d f_156101_ + (Lcmn;)V + 0 o p_156103_ + a (Lgu;)Ldej; m_156104_ + 0 o p_156105_ + a (Lgu;IJ)Ldej; m_156106_ + 0 o p_156107_ + 1 o p_156108_ + 2 o p_156109_ + b (Lgu;)Ldcb; m_156110_ + 0 o p_156111_ + close ()V close +ddw net/minecraft/world/level/chunk/CarvingMask + a f_187576_ + b f_187577_ + c f_196706_ + ([JI)V + 0 o p_187582_ + 1 o p_187583_ + (II)V + 0 o p_187579_ + 1 o p_187580_ + a (Lclt;)Ljava/util/stream/Stream; m_187589_ + 0 o p_187590_ + a (Lclt;I)Lgu; m_196707_ + 0 o p_196708_ + 1 o p_196709_ + a ()[J m_187584_ + a (Lddw$a;)V m_196710_ + 0 o p_196711_ + a (III)V m_187585_ + 0 o p_187586_ + 1 o p_187587_ + 2 o p_187588_ + b (III)Z m_187594_ + 0 o p_187595_ + 1 o p_187596_ + 2 o p_187597_ + c (III)I m_187598_ + 0 o p_187599_ + 1 o p_187600_ + 2 o p_187601_ + d (III)Z m_196712_ + static + 0 o p_196713_ + 1 o p_196714_ + 2 o p_196715_ +ddw$a net/minecraft/world/level/chunk/CarvingMask$Mask + test (III)Z m_196716_ + 0 o p_196717_ + 1 o p_196718_ + 2 o p_196719_ +ddx net/minecraft/world/level/chunk/ChunkAccess + a f_279635_ + b f_187602_ + c f_187603_ + d f_187604_ + e f_187605_ + f f_187606_ + g f_187607_ + h f_187608_ + i f_283754_ + j f_187609_ + k f_187610_ + l f_187611_ + m f_187612_ + n f_187613_ + o f_207932_ + p f_187614_ + q f_187615_ + r f_223003_ + s f_187617_ + t f_187618_ + ()V + static + (Lclt;Ldev;Lcmo;Lhr;J[Ldej;Ldin;)V + 0 o p_187621_ + 1 o p_187622_ + 2 o p_187623_ + 3 o p_187624_ + 4 o p_187625_ + 5 o p_187626_ + 6 o p_187627_ + A ()V m_284190_ + B ()Ldwo; m_284400_ + C_ ()I m_141937_ + D_ ()I m_141928_ + a (II)Z m_5566_ + 0 o p_62075_ + 1 o p_62076_ + a (Z)V m_8092_ + 0 o p_62094_ + a (Lqr;)V m_5604_ + 0 o p_62091_ + a (Ljava/util/function/Predicate;Ljava/util/function/BiConsumer;)V m_284478_ + 0 o p_285343_ + 1 o p_285030_ + a (Ljava/util/function/Supplier;)Lcnl; m_223014_ + 0 o p_223015_ + a (Ldhk$a;[J)V m_6511_ + 0 o p_62083_ + 1 o p_62084_ + a (III)Ljava/lang/String; m_207933_ + 0 o p_207934_ + 1 o p_207935_ + 2 o p_207936_ + a (Ldhk$a;II)I m_5885_ + 0 o p_62080_ + 1 o p_62081_ + 2 o p_62082_ + a (Ldcb;)Z m_284111_ + static + 0 o p_284897_ + a (Ljava/util/function/BiConsumer;)V m_284254_ + 0 o p_285269_ + a (Ldsa;Ldsi;)V m_213792_ + 0 o p_223010_ + 1 o p_223011_ + a (Ldin;)V m_183400_ + 0 o p_187646_ + a (Lgu;Ldcb;Z)Ldcb; m_6978_ + 0 o p_62087_ + 1 o p_62088_ + 2 o p_62089_ + a (Ldsa;J)V m_213843_ + 0 o p_223007_ + 1 o p_223008_ + a (J)V m_187632_ + 0 o p_187633_ + a (Lczn;)V m_142169_ + 0 o p_156114_ + a ()I m_280525_ + a (Ldhk$a;)Ldhk; m_6005_ + 0 o p_62079_ + a (Lhr;[Ldej;)V m_280116_ + static + 0 o p_281389_ + 1 o p_282796_ + a (Ldsa;)Ldsi; m_213652_ + 0 o p_223005_ + a ([Lit/unimi/dsi/fastutil/shorts/ShortList;I)Lit/unimi/dsi/fastutil/shorts/ShortList; m_62095_ + static + 0 o p_62096_ + 1 o p_62097_ + a (Lbfj;)V m_6286_ + 0 o p_62078_ + a (SI)V m_6561_ + 0 o p_62092_ + 1 o p_62093_ + a (Lcnn;Lcnt$f;)V m_183442_ + 0 o p_187638_ + 1 o p_187639_ + a (I)Ldgo; m_246686_ + 0 o p_251437_ + a (Ljava/util/Map;)V m_8040_ + 0 o p_62090_ + a (Ljava/util/function/Function;)Ldho; m_223012_ + 0 o p_223013_ + b (I)Ldej; m_183278_ + 0 o p_187657_ + b (Ldsa;)Lit/unimi/dsi/fastutil/longs/LongSet; m_213649_ + 0 o p_223017_ + b (Z)V m_8094_ + 0 o p_62100_ + b (J)V m_6141_ + 0 o p_62099_ + b (Ljava/util/Map;)V m_62737_ + 0 o p_187663_ + b ()I m_62098_ + b (Ldhk$a;)Z m_187658_ + 0 o p_187659_ + c ()Ljava/util/Set; m_5928_ + c (Ldsa;)Lit/unimi/dsi/fastutil/longs/LongSet; m_223018_ + static + 0 o p_223019_ + c (Ldhk$a;)Ldhk; m_187664_ + 0 o p_187665_ + d (Lgu;)V m_8114_ + 0 o p_62101_ + d ()[Ldej; m_7103_ + e (Lgu;)V m_8113_ + 0 o p_62102_ + e ()Ljava/util/Collection; m_6890_ + f ()Lclt; m_7697_ + f (Lgu;)Lqr; m_8049_ + 0 o p_62103_ + g (Lgu;)Lqr; m_8051_ + 0 o p_62104_ + g ()Ljava/util/Map; m_6633_ + getNoiseBiome (III)Lhe; m_203495_ + 0 o p_204347_ + 1 o p_204348_ + 2 o p_204349_ + h ()Ljava/util/Map; m_62769_ + i ()Z m_6344_ + j ()Ldec; m_6415_ + k ()Ldec; m_284331_ + n ()[Lit/unimi/dsi/fastutil/shorts/ShortList; m_6720_ + o ()Lefw; m_183531_ + p ()Lefw; m_183526_ + q ()Lddx$a; m_183568_ + r ()Ldev; m_7387_ + s ()Z m_187675_ + t ()Ldin; m_183407_ + u ()J m_6319_ + v ()Z m_6332_ + w ()Z m_187678_ + x ()Ldgy; m_183376_ + y ()Z m_187679_ + z ()Lcmo; m_183618_ +ddx$a net/minecraft/world/level/chunk/ChunkAccess$TicksToSave + a f_187680_ + b f_187681_ + (Lefu;Lefu;)V + 0 o f_187680_ + 1 o f_187681_ + a ()Lefu; f_187680_ + b ()Lefu; f_187681_ + equals (Ljava/lang/Object;)Z equals + 0 o p_187688_ + hashCode ()I hashCode + toString ()Ljava/lang/String; toString +ddy net/minecraft/world/level/chunk/ChunkGenerator + a f_62136_ + b f_62137_ + c f_223020_ + d f_223021_ + ()V + static + (Lcno;)V + 0 o p_256133_ + (Lcno;Ljava/util/function/Function;)V + 0 o p_255838_ + 1 o p_256216_ + a (Ldsi;Lhr;)Ljava/lang/String; m_257331_ + static + 0 o p_258976_ + 1 o p_258977_ + a (Lcne;Lddx;Lhx;Ldsa;)I m_223054_ + static + 0 o p_223055_ + 1 o p_223056_ + 2 o p_223057_ + 3 o p_223058_ + a (Lcng;Lddx;Lcne;)V m_213609_ + 0 o p_223087_ + 1 o p_223088_ + 2 o p_223089_ + a (Ljava/util/concurrent/Executor;Ldim;Ldhy;Lcne;Lddx;)Ljava/util/concurrent/CompletableFuture; m_213974_ + 0 o p_223209_ + 1 o p_223210_ + 2 o p_223211_ + 3 o p_223212_ + 4 o p_223213_ + a (Ljava/util/Optional;Ldsi;)Ljava/lang/String; m_223178_ + static + 0 o p_223179_ + 1 o p_223180_ + a (Ljava/util/List;Ldhy;Lgu;)V m_213600_ + 0 o p_223175_ + 1 o p_223176_ + 2 o p_223177_ + a (Laif;Lhi;Lgu;IZ)Lcom/mojang/datafixers/util/Pair; m_223037_ + 0 o p_223038_ + 1 o p_223039_ + 2 o p_223040_ + 3 o p_223041_ + 4 o p_223042_ + a (Ldsg$a;Lcne;Lhs;Ldhy;Ldvu;JLddx;Lclt;Lhx;)Z m_223104_ + 0 o p_223105_ + 1 o p_223106_ + 2 o p_223107_ + 3 o p_223108_ + 4 o p_223109_ + 5 o p_223110_ + 6 o p_223111_ + 7 o p_223112_ + 8 o p_223113_ + a ()Lcom/mojang/serialization/Codec; m_6909_ + a (Lhe;)Lcnl; m_223131_ + 0 o p_223132_ + a (Ljava/util/Set;Laif;Lcne;Lgu;ZLdsu;)Lcom/mojang/datafixers/util/Pair; m_223181_ + 0 o p_223182_ + 1 o p_223183_ + 2 o p_223184_ + 3 o p_223185_ + 4 o p_223186_ + 5 o p_223187_ + a (Laim;)V m_6929_ + 0 o p_62167_ + a (Lcne;Lgu;Ldsi;)Z m_223062_ + static + 0 o p_223063_ + 1 o p_223064_ + 2 o p_223065_ + a (Ljava/util/Set;Lcmp;Lcne;ZLdsx;Lclt;)Lcom/mojang/datafixers/util/Pair; m_223198_ + static + 0 o p_223199_ + 1 o p_223200_ + 2 o p_223201_ + 3 o p_223202_ + 4 o p_223203_ + 5 o p_223204_ + a (Laim;Lcne;Ldhy;Lddx;)V m_214194_ + 0 o p_223050_ + 1 o p_223051_ + 2 o p_223052_ + 3 o p_223053_ + a (Lddx;)Ldrs; m_187717_ + static + 0 o p_187718_ + a (Ljava/util/function/Function;Lhe;)Ljava/util/List; m_223214_ + static + 0 o p_223215_ + 1 o p_223216_ + a (Lhs;Lddz;Lcne;Lddx;Ldvu;)V m_255037_ + 0 o p_255835_ + 1 o p_256505_ + 2 o p_255934_ + 3 o p_255767_ + 4 o p_255832_ + a (Lorg/apache/commons/lang3/mutable/MutableBoolean;Ljava/util/function/Predicate;Ldsi;)V m_223217_ + static + 0 o p_223218_ + 1 o p_223219_ + 2 o p_223220_ + a (Lhr;Ldsa;)Ljava/lang/String; m_257334_ + static + 0 o p_258981_ + 1 o p_258982_ + a (Lddx;Ldhy;)Lddx; m_223097_ + 0 o p_223098_ + 1 o p_223099_ + a (Ljava/util/concurrent/Executor;Ldhy;Ldim;Lcne;Lddx;)Ljava/util/concurrent/CompletableFuture; m_213908_ + 0 o p_223159_ + 1 o p_223160_ + 2 o p_223161_ + 3 o p_223162_ + 4 o p_223163_ + a (Ldsa;)Ljava/lang/Integer; m_223102_ + static + 0 o p_223103_ + a (Lcmo;)I m_142051_ + 0 o p_156157_ + a (IILdhk$a;Lcmo;Ldhy;)I m_214096_ + 0 o p_223032_ + 1 o p_223033_ + 2 o p_223034_ + 3 o p_223035_ + 4 o p_223036_ + a (Lcng;Lcne;Ldij;Lddx;Lclt;Ldsi;)V m_223080_ + 0 o p_223081_ + 1 o p_223082_ + 2 o p_223083_ + 3 o p_223084_ + 4 o p_223085_ + 5 o p_223086_ + a (Lcng;Ljava/util/Set;Lclt;)V m_223090_ + static + 0 o p_223091_ + 1 o p_223092_ + 2 o p_223093_ + a (Ljava/util/Set;Lcmp;Lcne;IIIZJLdsv;)Lcom/mojang/datafixers/util/Pair; m_223188_ + static + 0 o p_223189_ + 1 o p_223190_ + 2 o p_223191_ + 3 o p_223192_ + 4 o p_223193_ + 5 o p_223194_ + 6 o p_223195_ + 7 o p_223196_ + 8 o p_223197_ + a (Lhe;Lcne;Lbgc;Lgu;)Lbcl; m_223133_ + 0 o p_223134_ + 1 o p_223135_ + 2 o p_223136_ + 3 o p_223137_ + a (Lcne;Ldsi;)Z m_223059_ + static + 0 o p_223060_ + 1 o p_223061_ + a (IILcmo;Ldhy;)Lcmy; m_214184_ + 0 o p_223028_ + 1 o p_223029_ + 2 o p_223030_ + 3 o p_223031_ + a (Lcne;Lhx;Lddx;Lddz;Lclt;Lhs;Ldhy;Ldvu;Lhe;)V m_254811_ + 0 o p_255556_ + 1 o p_255557_ + 2 o p_255558_ + 3 o p_255559_ + 4 o p_255560_ + 5 o p_255561_ + 6 o p_255562_ + 7 o p_255563_ + 8 o p_255564_ + a (Lhg;Ldhy;J)Lddz; m_255169_ + 0 o p_256405_ + 1 o p_256101_ + 2 o p_256018_ + a (Lit/unimi/dsi/fastutil/ints/IntSet;Lcnu$b;Ldre;)V m_223171_ + static + 0 o p_223172_ + 1 o p_223173_ + 2 o p_223174_ + a (Laim;JLdhy;Lcnm;Lcne;Lddx;Ldhg$a;)V m_213679_ + 0 o p_223043_ + 1 o p_223044_ + 2 o p_223045_ + 3 o p_223046_ + 4 o p_223047_ + 5 o p_223048_ + 6 o p_223049_ + a (Ldsi;)Ljava/lang/String; m_223114_ + static + 0 o p_223115_ + a (Lcng;Lcne;Lddx;)V m_223076_ + 0 o p_223077_ + 1 o p_223078_ + 2 o p_223079_ + a (Lhr;Ldre;)Ljava/lang/String; m_257332_ + static + 0 o p_258978_ + 1 o p_258979_ + a (Ldsx;)Ljava/util/Set; m_223126_ + static + 0 o p_223127_ + a (Lcno;Ljava/util/function/Function;)Ljava/util/List; m_223094_ + static + 0 o p_223095_ + 1 o p_223096_ + a (Lgu;Ldsi;)Z m_223128_ + static + 0 o p_223129_ + 1 o p_223130_ + b ()Ljava/util/Optional; m_187743_ + b (IILdhk$a;Lcmo;Ldhy;)I m_223221_ + 0 o p_223222_ + 1 o p_223223_ + 2 o p_223224_ + 3 o p_223225_ + 4 o p_223226_ + b (Lhe;)Lcnl; m_223233_ + static + 0 o p_223234_ + b (Ldsi;)Ljava/lang/String; m_257333_ + static + 0 o p_258980_ + c ()Lcno; m_62218_ + c (IILdhk$a;Lcmo;Ldhy;)I m_223235_ + 0 o p_223236_ + 1 o p_223237_ + 2 o p_223238_ + 3 o p_223239_ + 4 o p_223240_ + d ()I m_6331_ + e ()I m_6337_ + f ()I m_142062_ +ddz net/minecraft/world/level/chunk/ChunkGeneratorStructureState + a f_254706_ + b f_254677_ + c f_254681_ + d f_254647_ + e f_254746_ + f f_254729_ + g f_254674_ + h f_254710_ + i f_254708_ + ()V + static + (Ldhy;Lcno;JJLjava/util/List;)V + 0 o p_256401_ + 1 o p_255742_ + 2 o p_256615_ + 3 o p_255979_ + 4 o p_256237_ + a (Ldhy;JLcno;Ljava/util/stream/Stream;)Lddz; m_255343_ + static + 0 o p_256240_ + 1 o p_256404_ + 2 o p_256274_ + 3 o p_256348_ + a ()Ljava/util/List; m_255252_ + a (Ldsg;Lcno;)Z m_255180_ + static + 0 o p_255766_ + 1 o p_256424_ + a (Ldsa;)Ljava/util/List; m_255431_ + static + 0 o p_256235_ + a (Lcno;Lhe$c;)Z m_254876_ + static + 0 o p_256116_ + 1 o p_256144_ + a (Lhe;)Ljava/util/List; m_255260_ + 0 o p_256494_ + a (Lcom/google/common/base/Stopwatch;Lhe;Ljava/util/List;)Ljava/util/List; m_254933_ + static + 0 o p_256458_ + 1 o p_256047_ + 2 o p_256372_ + a (Ldhy;JLcno;Lhg;)Lddz; m_255081_ + static + 0 o p_256197_ + 1 o p_255806_ + 2 o p_256653_ + 3 o p_256659_ + a (Lhe;Ldsu;)Ljava/util/concurrent/CompletableFuture; m_255294_ + 0 o p_255966_ + 1 o p_255744_ + a (Ldsg$a;)Ljava/util/stream/Stream; m_255018_ + static + 0 o p_255738_ + a (Ldsu;)Ljava/util/List; m_255182_ + 0 o p_256667_ + a (Lhe;III)Z m_254936_ + 0 o p_256489_ + 1 o p_256593_ + 2 o p_256115_ + 3 o p_256619_ + a (IILhi;Lapf;)Lclt; m_254937_ + 0 o p_256436_ + 1 o p_255909_ + 2 o p_255994_ + 3 o p_255880_ + a (Lcno;Lhe;)Z m_255187_ + static + 0 o p_256624_ + 1 o p_255616_ + a (Ljava/util/Set;Lhe;)V m_255168_ + 0 o p_255659_ + 1 o p_255638_ + b ()V m_254958_ + c ()Ldhy; m_255046_ + d ()J m_254887_ + e ()V m_255138_ +de net/minecraft/advancements/critereon/TradeTrigger + a f_70955_ + ()V + static + ()V + a ()Lacq; m_7295_ + a (Lcom/google/gson/JsonObject;Lba;Lbe;)Lde$a; m_7214_ + 0 o p_286654_ + 1 o p_286835_ + 2 o p_286772_ + a (Laig;Lbxw;Lcfz;)V m_70959_ + 0 o p_70960_ + 1 o p_70961_ + 2 o p_70962_ + a (Ldzk;Lcfz;Lde$a;)Z m_70967_ + static + 0 o p_70968_ + 1 o p_70969_ + 2 o p_70970_ + b (Lcom/google/gson/JsonObject;Lba;Lbe;)Lar; m_7214_ + 0 o p_286317_ + 1 o p_286641_ + 2 o p_286251_ +de$a net/minecraft/advancements/critereon/TradeTrigger$TriggerInstance + a f_70976_ + b f_70977_ + (Lba;Lba;Lbz;)V + 0 o p_286523_ + 1 o p_286395_ + 2 o p_286263_ + a (Ldzk;Lcfz;)Z m_70984_ + 0 o p_70985_ + 1 o p_70986_ + a (Lct;)Lcom/google/gson/JsonObject; m_7683_ + 0 o p_70983_ + a (Lbo$a;)Lde$a; m_191436_ + static + 0 o p_191437_ + c ()Lde$a; m_70987_ + static +dea net/minecraft/world/level/chunk/ChunkGenerators + ()V + a (Lhr;)Lcom/mojang/serialization/Codec; m_223242_ + static + 0 o p_223243_ +deb net/minecraft/world/level/chunk/ChunkSource + ()V + a (Lclt;Z)V m_6692_ + 0 o p_62233_ + 1 o p_62234_ + a (IIZ)Ldei; m_62227_ + 0 o p_62228_ + 1 o p_62229_ + 2 o p_62230_ + a (II)Ldei; m_7131_ + 0 o p_62221_ + 1 o p_62222_ + a (ZZ)V m_6707_ + 0 o p_62236_ + 1 o p_62237_ + a (Ljava/util/function/BooleanSupplier;Z)V m_201698_ + 0 o p_202162_ + 1 o p_202163_ + a (IILdec;Z)Lddx; m_7587_ + 0 o p_62223_ + 1 o p_62224_ + 2 o p_62225_ + 3 o p_62226_ + b (II)Z m_5563_ + 0 o p_62238_ + 1 o p_62239_ + c (II)Ldek; m_6196_ + 0 o p_62241_ + 1 o p_62242_ + close ()V close + e ()Ljava/lang/String; m_6754_ + j ()I m_8482_ + p ()Ldwt; m_7827_ +dec net/minecraft/world/level/chunk/ChunkStatus + a f_187758_ + b f_62328_ + c f_62314_ + d f_62315_ + e f_62316_ + f f_62317_ + g f_62318_ + h f_62319_ + i f_62320_ + j f_62322_ + k f_279614_ + l f_62323_ + m f_62324_ + n f_62326_ + o f_62327_ + p f_62329_ + q f_62330_ + r f_62331_ + s f_62333_ + t f_62334_ + u f_62335_ + v f_62336_ + w f_62337_ + x f_279602_ + y f_62338_ + z f_62339_ + ()V + static + (Ldec;IZLjava/util/EnumSet;Ldec$a;Ldec$b;Ldec$c;)V + 0 o p_289640_ + 1 o p_289655_ + 2 o p_289657_ + 3 o p_289662_ + 4 o p_289652_ + 5 o p_289679_ + 6 o p_289646_ + a (Lbaw;Lcom/mojang/datafixers/util/Either;)Lcom/mojang/datafixers/util/Either; m_290023_ + 0 o p_290027_ + 1 o p_281217_ + a ()Ljava/util/List; m_62349_ + static + a (Lddx;)Z m_284462_ + static + 0 o p_285378_ + a (Ldec;Laif;Lddy;Ljava/util/List;Lddx;)V m_196757_ + static + 0 o p_196758_ + 1 o p_196759_ + 2 o p_196760_ + 3 o p_196761_ + 4 o p_196762_ + a (Ljava/lang/String;Ldec;ILjava/util/EnumSet;Ldec$a;Ldec$b;)Ldec; m_62399_ + static + 0 o p_62400_ + 1 o p_62401_ + 2 o p_62402_ + 3 o p_62403_ + 4 o p_62404_ + 5 o p_62405_ + a (Ljava/util/concurrent/Executor;Laif;Lddy;Ldvu;Laii;Ljava/util/function/Function;Ljava/util/List;)Ljava/util/concurrent/CompletableFuture; m_280308_ + 0 o p_283276_ + 1 o p_281420_ + 2 o p_281836_ + 3 o p_281305_ + 4 o p_282570_ + 5 o p_283114_ + 6 o p_282723_ + a (Laif;Ldvu;Laii;Ljava/util/function/Function;Lddx;)Ljava/util/concurrent/CompletableFuture; m_223244_ + 0 o p_223245_ + 1 o p_223246_ + 2 o p_223247_ + 3 o p_223248_ + 4 o p_223249_ + a (Ljava/lang/String;Ldec;IZLjava/util/EnumSet;Ldec$a;Ldec$b;Ldec$c;)Ldec; m_280108_ + static + 0 o p_282817_ + 1 o p_282644_ + 2 o p_281535_ + 3 o p_282329_ + 4 o p_281310_ + 5 o p_281968_ + 6 o p_283654_ + 7 o p_282175_ + a (Lit/unimi/dsi/fastutil/ints/IntArrayList;)V m_223313_ + static + 0 o p_283066_ + a (I)Ldec; m_156185_ + static + 0 o p_156186_ + a (Ldec;)I m_62370_ + static + 0 o p_62371_ + a (Ldec;Laif;Ldvu;Laii;Ljava/util/function/Function;Lddx;)Ljava/util/concurrent/CompletableFuture; m_223259_ + static + 0 o p_223260_ + 1 o p_223261_ + 2 o p_223262_ + 3 o p_223263_ + 4 o p_223264_ + 5 o p_223265_ + a (Ldec;Ljava/util/concurrent/Executor;Laif;Lddy;Ldvu;Laii;Ljava/util/function/Function;Ljava/util/List;Lddx;)Ljava/util/concurrent/CompletableFuture; m_223266_ + static + 0 o p_223267_ + 1 o p_223268_ + 2 o p_223269_ + 3 o p_223270_ + 4 o p_223271_ + 5 o p_223272_ + 6 o p_223273_ + 7 o p_223274_ + 8 o p_223275_ + a (Ljava/lang/String;Ldec;ILjava/util/EnumSet;Ldec$a;Ldec$d;)Ldec; m_62414_ + static + 0 o p_62415_ + 1 o p_62416_ + 2 o p_62417_ + 3 o p_62418_ + 4 o p_62419_ + 5 o p_62420_ + a (Laii;Lddx;)Ljava/util/concurrent/CompletableFuture; m_280141_ + static + 0 o p_282288_ + 1 o p_282906_ + a (Ljava/lang/String;)Ldec; m_62397_ + static + 0 o p_62398_ + b (Ldec;)Z m_62427_ + 0 o p_62428_ + b (Lddx;)V m_290024_ + 0 o p_290029_ + b (Ldec;Laif;Lddy;Ljava/util/List;Lddx;)V m_279978_ + static + 0 o p_281188_ + 1 o p_281189_ + 2 o p_281190_ + 3 o p_281191_ + 4 o p_281192_ + b (Ldec;Laif;Ldvu;Laii;Ljava/util/function/Function;Lddx;)Ljava/util/concurrent/CompletableFuture; m_284112_ + static + 0 o p_284898_ + 1 o p_284899_ + 2 o p_284900_ + 3 o p_284901_ + 4 o p_284902_ + 5 o p_284903_ + b ()I m_62421_ + static + b (Ldec;Ljava/util/concurrent/Executor;Laif;Lddy;Ldvu;Laii;Ljava/util/function/Function;Ljava/util/List;Lddx;)Ljava/util/concurrent/CompletableFuture; m_284113_ + static + 0 o p_284904_ + 1 o p_284905_ + 2 o p_284906_ + 3 o p_284907_ + 4 o p_284908_ + 5 o p_284909_ + 6 o p_284910_ + 7 o p_284911_ + 8 o p_284912_ + b (Laii;Lddx;)Ljava/util/concurrent/CompletableFuture; m_284159_ + static + 0 o p_285039_ + 1 o p_285316_ + c ()I m_62445_ + c (Ldec;Laif;Ldvu;Laii;Ljava/util/function/Function;Lddx;)Ljava/util/concurrent/CompletableFuture; m_279974_ + static + 0 o p_281155_ + 1 o p_281156_ + 2 o p_281157_ + 3 o p_281158_ + 4 o p_281159_ + 5 o p_281160_ + c (Ldec;Laif;Lddy;Ljava/util/List;Lddx;)V m_289182_ + static + 0 o p_289523_ + 1 o p_289524_ + 2 o p_289525_ + 3 o p_289526_ + 4 o p_289527_ + c (Lddx;)Lcom/mojang/datafixers/util/Either; m_279984_ + static + 0 o p_281218_ + c (Ldec;Ljava/util/concurrent/Executor;Laif;Lddy;Ldvu;Laii;Ljava/util/function/Function;Ljava/util/List;Lddx;)Ljava/util/concurrent/CompletableFuture; m_279977_ + static + 0 o p_281179_ + 1 o p_281180_ + 2 o p_281181_ + 3 o p_281182_ + 4 o p_281183_ + 5 o p_281184_ + 6 o p_281185_ + 7 o p_281186_ + 8 o p_281187_ + d ()Ldec; m_62482_ + d (Ldec;Laif;Ldvu;Laii;Ljava/util/function/Function;Lddx;)Ljava/util/concurrent/CompletableFuture; m_279982_ + static + 0 o p_281209_ + 1 o p_281210_ + 2 o p_281211_ + 3 o p_281212_ + 4 o p_281213_ + 5 o p_281214_ + d (Lddx;)Lcom/mojang/datafixers/util/Either; m_279979_ + static + 0 o p_281193_ + d (Ldec;Laif;Lddy;Ljava/util/List;Lddx;)V m_156246_ + static + 0 o p_156247_ + 1 o p_156248_ + 2 o p_156249_ + 3 o p_156250_ + 4 o p_156251_ + d (Ldec;Ljava/util/concurrent/Executor;Laif;Lddy;Ldvu;Laii;Ljava/util/function/Function;Ljava/util/List;Lddx;)Ljava/util/concurrent/CompletableFuture; m_279975_ + static + 0 o p_281161_ + 1 o p_281162_ + 2 o p_281163_ + 3 o p_281164_ + 4 o p_281165_ + 5 o p_281166_ + 6 o p_281167_ + 7 o p_281168_ + 8 o p_281169_ + e (Ldec;Laif;Ldvu;Laii;Ljava/util/function/Function;Lddx;)Ljava/util/concurrent/CompletableFuture; m_279980_ + static + 0 o p_281194_ + 1 o p_281195_ + 2 o p_281196_ + 3 o p_281197_ + 4 o p_281198_ + 5 o p_281199_ + e ()I m_62488_ + e (Ldec;Laif;Lddy;Ljava/util/List;Lddx;)V m_196842_ + static + 0 o p_196843_ + 1 o p_196844_ + 2 o p_196845_ + 3 o p_196846_ + 4 o p_196847_ + e (Ldec;Ljava/util/concurrent/Executor;Laif;Lddy;Ldvu;Laii;Ljava/util/function/Function;Ljava/util/List;Lddx;)Ljava/util/concurrent/CompletableFuture; m_279981_ + static + 0 o p_281200_ + 1 o p_281201_ + 2 o p_281202_ + 3 o p_281203_ + 4 o p_281204_ + 5 o p_281205_ + 6 o p_281206_ + 7 o p_281207_ + 8 o p_281208_ + f (Ldec;Laif;Lddy;Ljava/util/List;Lddx;)V m_156306_ + static + 0 o p_156307_ + 1 o p_156308_ + 2 o p_156309_ + 3 o p_156310_ + 4 o p_156311_ + f (Ldec;Ljava/util/concurrent/Executor;Laif;Lddy;Ldvu;Laii;Ljava/util/function/Function;Ljava/util/List;Lddx;)Ljava/util/concurrent/CompletableFuture; m_289181_ + static + 0 o p_289514_ + 1 o p_289515_ + 2 o p_289516_ + 3 o p_289517_ + 4 o p_289518_ + 5 o p_289519_ + 6 o p_289520_ + 7 o p_289521_ + 8 o p_289522_ + f ()Z m_280148_ + g ()Ldec$a; m_62494_ + h ()Ljava/util/EnumSet; m_62500_ + toString ()Ljava/lang/String; toString +dec$a net/minecraft/world/level/chunk/ChunkStatus$ChunkType + a PROTOCHUNK + b LEVELCHUNK + c $VALUES + ()V + static + (Ljava/lang/String;I)V + 0 o p_62517_ + 1 o p_62518_ + a ()[Ldec$a; m_156312_ + static + valueOf (Ljava/lang/String;)Ldec$a; valueOf + static + 0 o p_62520_ + values ()[Ldec$a; values + static +dec$b net/minecraft/world/level/chunk/ChunkStatus$GenerationTask + doWork (Ldec;Ljava/util/concurrent/Executor;Laif;Lddy;Ldvu;Laii;Ljava/util/function/Function;Ljava/util/List;Lddx;)Ljava/util/concurrent/CompletableFuture; m_214024_ + 0 o p_223371_ + 1 o p_223372_ + 2 o p_223373_ + 3 o p_223374_ + 4 o p_223375_ + 5 o p_223376_ + 6 o p_223377_ + 7 o p_223378_ + 8 o p_223379_ +dec$c net/minecraft/world/level/chunk/ChunkStatus$LoadingTask + doWork (Ldec;Laif;Ldvu;Laii;Ljava/util/function/Function;Lddx;)Ljava/util/concurrent/CompletableFuture; m_223381_ + 0 o p_223382_ + 1 o p_223383_ + 2 o p_223384_ + 3 o p_223385_ + 4 o p_223386_ + 5 o p_223387_ +dec$d net/minecraft/world/level/chunk/ChunkStatus$SimpleGenerationTask + doWork (Ldec;Ljava/util/concurrent/Executor;Laif;Lddy;Ldvu;Laii;Ljava/util/function/Function;Ljava/util/List;Lddx;)Ljava/util/concurrent/CompletableFuture; m_214024_ + 0 o p_281382_ + 1 o p_283285_ + 2 o p_283408_ + 3 o p_282263_ + 4 o p_282374_ + 5 o p_281701_ + 6 o p_282473_ + 7 o p_282316_ + 8 o p_281861_ + doWork (Ldec;Laif;Lddy;Ljava/util/List;Lddx;)V m_156322_ + 0 o p_156323_ + 1 o p_156324_ + 2 o p_156325_ + 3 o p_156326_ + 4 o p_156327_ +ded net/minecraft/world/level/chunk/DataLayer + a f_182480_ + b f_156339_ + c f_156338_ + d f_62551_ + e f_156340_ + f f_279645_ + (I)V + 0 o p_62554_ + ([B)V + 0 o p_62556_ + ()V + a ()[B m_7877_ + a (I)V m_284173_ + 0 o p_285142_ + a (III)I m_62560_ + 0 o p_62561_ + 1 o p_62562_ + 2 o p_62563_ + a (II)V m_62557_ + 0 o p_62558_ + 1 o p_62559_ + a (IIII)V m_62564_ + 0 o p_62565_ + 1 o p_62566_ + 2 o p_62567_ + 3 o p_62568_ + b ()Lded; m_62569_ + b (III)I m_6406_ + static + 0 o p_62572_ + 1 o p_62573_ + 2 o p_62574_ + b (I)Ljava/lang/String; m_156341_ + 0 o p_156342_ + c (I)Z m_280484_ + 0 o p_281763_ + c ()Z m_280098_ + d (I)I m_62570_ + 0 o p_62571_ + d ()Z m_62575_ + e (I)I m_182481_ + static + 0 o p_182482_ + f (I)I m_62578_ + static + 0 o p_62579_ + g (I)B m_280353_ + static + 0 o p_282176_ + toString ()Ljava/lang/String; toString +dee net/minecraft/world/level/chunk/EmptyLevelChunk + n f_204420_ + (Lcmm;Lclt;Lhe;)V + 0 o p_204422_ + 1 o p_204423_ + 2 o p_204424_ + C ()Z m_6430_ + D ()Lahy; m_287138_ + a (II)Z m_5566_ + 0 o p_62587_ + 1 o p_62588_ + a (Lczn;)V m_142169_ + 0 o p_156344_ + a (Lgu;Ldcb;Z)Ldcb; m_6978_ + 0 o p_62605_ + 1 o p_62606_ + 2 o p_62607_ + a (Lgu;Ldei$b;)Lczn; m_5685_ + 0 o p_62609_ + 1 o p_62610_ + a_ (Lgu;)Ldcb; m_8055_ + 0 o p_62625_ + b (Lczn;)V m_142170_ + 0 o p_156346_ + b_ (Lgu;)Ldxe; m_6425_ + 0 o p_62621_ + d (Lgu;)V m_8114_ + 0 o p_62623_ + getNoiseBiome (III)Lhe; m_203495_ + 0 o p_204426_ + 1 o p_204427_ + 2 o p_204428_ + h (Lgu;)I m_7146_ + 0 o p_62628_ +def net/minecraft/world/level/chunk/GlobalPalette + a f_62639_ + (Lhj;)V + 0 o p_187897_ + a (Ljava/util/function/Predicate;)Z m_6419_ + 0 o p_62650_ + a (I)Ljava/lang/Object; m_5795_ + 0 o p_62646_ + a (ILhj;Ldep;Ljava/util/List;)Ldeo; m_187898_ + static + 0 o p_187899_ + 1 o p_187900_ + 2 o p_187901_ + 3 o p_187902_ + a ()I m_6429_ + a (Ljava/lang/Object;)I m_6796_ + 0 o p_62648_ + a (Lsf;)V m_5680_ + 0 o p_62654_ + b ()I m_62680_ + b (Lsf;)V m_5678_ + 0 o p_62656_ + c ()Ldeo; m_199814_ +deg net/minecraft/world/level/chunk/HashMapPalette + a f_62657_ + b f_62658_ + c f_62659_ + d f_62662_ + (Lhj;ILdep;)V + 0 o p_187904_ + 1 o p_187905_ + 2 o p_187906_ + (Lhj;ILdep;Lany;)V + 0 o p_199915_ + 1 o p_199916_ + 2 o p_199917_ + 3 o p_199918_ + (Lhj;ILdep;Ljava/util/List;)V + 0 o p_187908_ + 1 o p_187909_ + 2 o p_187910_ + 3 o p_187911_ + a (ILhj;Ldep;Ljava/util/List;)Ldeo; m_187912_ + static + 0 o p_187913_ + 1 o p_187914_ + 2 o p_187915_ + 3 o p_187916_ + a ()I m_6429_ + a (Lsf;)V m_5680_ + 0 o p_62679_ + a (Ljava/util/function/Predicate;)Z m_6419_ + 0 o p_62675_ + a (I)Ljava/lang/Object; m_5795_ + 0 o p_62671_ + a (Ljava/lang/Object;)I m_6796_ + 0 o p_62673_ + b ()I m_62680_ + b (Lsf;)V m_5678_ + 0 o p_62684_ + c ()Ldeo; m_199814_ + d ()Ljava/util/List; m_187917_ +deh net/minecraft/world/level/chunk/ImposterProtoChunk + n f_62685_ + o f_187918_ + (Ldei;Z)V + 0 o p_187920_ + 1 o p_187921_ + A ()V m_284190_ + B ()Ldwo; m_284400_ + C ()Ldei; m_62768_ + M ()I m_7469_ + a (Lczn;)V m_142169_ + 0 o p_156358_ + a (Z)V m_8092_ + 0 o p_62730_ + a (Lqr;)V m_5604_ + 0 o p_62728_ + a (Ljava/util/function/Predicate;Ljava/util/function/BiConsumer;)V m_284478_ + 0 o p_285465_ + 1 o p_285061_ + a (Ldhk$a;[J)V m_6511_ + 0 o p_62706_ + 1 o p_62707_ + a (Ldec;)V m_7150_ + 0 o p_62698_ + a (Ldhk$a;II)I m_5885_ + 0 o p_62702_ + 1 o p_62703_ + 2 o p_62704_ + a (Ldhk$a;)Ldhk; m_6005_ + 0 o p_187928_ + a (Ldsa;)Ldsi; m_213652_ + 0 o p_223400_ + a (Ldsa;Ldsi;)V m_213792_ + 0 o p_223405_ + 1 o p_223406_ + a (Lbfj;)V m_6286_ + 0 o p_62692_ + a (Ldhg$a;)Lddw; m_183612_ + 0 o p_187926_ + a (Lcnn;Lcnt$f;)V m_183442_ + 0 o p_187923_ + 1 o p_187924_ + a (Ljava/util/Map;)V m_8040_ + 0 o p_62726_ + a (Ldin;)V m_183400_ + 0 o p_187930_ + a (Lgu;Ldcb;Z)Ldcb; m_6978_ + 0 o p_62722_ + 1 o p_62723_ + 2 o p_62724_ + a (Ldsa;J)V m_213843_ + 0 o p_223402_ + 1 o p_223403_ + a_ (Lgu;)Ldcb; m_8055_ + 0 o p_62749_ + b (I)Ldej; m_183278_ + 0 o p_187932_ + b (Ldsa;)Lit/unimi/dsi/fastutil/longs/LongSet; m_213649_ + 0 o p_223408_ + b (Ljava/util/Map;)V m_62737_ + 0 o p_62738_ + b (Z)V m_8094_ + 0 o p_62740_ + b (Ldhg$a;)Lddw; m_183613_ + 0 o p_187934_ + b_ (Lgu;)Ldxe; m_6425_ + 0 o p_62736_ + c (Ldhk$a;)Ldhk$a; m_62741_ + 0 o p_62742_ + c_ (Lgu;)Lczn; m_7702_ + 0 o p_62744_ + d (Lgu;)V m_8114_ + 0 o p_62747_ + d ()[Ldej; m_7103_ + e (Lgu;)V m_8113_ + 0 o p_62752_ + f ()Lclt; m_7697_ + f (Lgu;)Lqr; m_8049_ + 0 o p_62757_ + g (Lgu;)Lqr; m_8051_ + 0 o p_62760_ + g ()Ljava/util/Map; m_6633_ + getNoiseBiome (III)Lhe; m_203495_ + 0 o p_204430_ + 1 o p_204431_ + 2 o p_204432_ + h ()Ljava/util/Map; m_62769_ + i ()Z m_6344_ + j ()Ldec; m_6415_ + o ()Lefw; m_183531_ + p ()Lefw; m_183526_ + q ()Lddx$a; m_183568_ + t ()Ldin; m_183407_ + v ()Z m_6332_ +dei net/minecraft/world/level/chunk/LevelChunk + n f_62771_ + o f_156361_ + p f_156362_ + q f_62775_ + r f_62776_ + s f_62790_ + t f_62791_ + u f_244451_ + v f_62784_ + w f_187943_ + ()V + static + (Lcmm;Lclt;)V + 0 o p_187945_ + 1 o p_187946_ + (Laif;Ldes;Ldei$c;)V + 0 o p_196850_ + 1 o p_196851_ + 2 o p_196852_ + (Lcmm;Lclt;Ldev;Lefo;Lefo;J[Ldej;Ldei$c;Ldin;)V + 0 o p_196854_ + 1 o p_196855_ + 2 o p_196856_ + 3 o p_196857_ + 4 o p_196858_ + 5 o p_196859_ + 6 o p_196860_ + 7 o p_196861_ + 8 o p_196862_ + C ()Z m_6430_ + D ()Lahy; m_287138_ + E ()V m_62952_ + F ()Lcmm; m_62953_ + G ()Ljava/util/Map; m_62954_ + H ()V m_62812_ + I ()V m_187957_ + J ()V m_156369_ + K ()Z m_156370_ + a (Lczn;Lczo;)Ldbd; m_156375_ + 0 o p_156376_ + 1 o p_156377_ + a (Lsf;Lqr;Ljava/util/function/Consumer;)V m_187971_ + 0 o p_187972_ + 1 o p_187973_ + 2 o p_187974_ + a (Lsf;)V m_274381_ + 0 o p_275574_ + a (Lgu;Lczp;Lqr;)V m_187967_ + 0 o p_187968_ + 1 o p_187969_ + 2 o p_187970_ + a (Lgu;Ldei$b;)Lczn; m_5685_ + 0 o p_62868_ + 1 o p_62869_ + a (Lgu;Lqr;)Lczn; m_62870_ + 0 o p_62871_ + 1 o p_62872_ + a (Lgu;Ldcb;Z)Ldcb; m_6978_ + 0 o p_62865_ + 1 o p_62866_ + 2 o p_62867_ + a (Lczn;Laif;)V m_223412_ + 0 o p_223413_ + 1 o p_223414_ + a (Laif;)V m_187958_ + 0 o p_187959_ + a (Lczn;)V m_142169_ + 0 o p_156374_ + a (Laif;II)Ldgo; m_279985_ + 0 o p_281219_ + 1 o p_281220_ + 2 o p_281221_ + a (Ldei$d;)V m_187965_ + static + 0 o p_187966_ + a (Lbfj;)V m_6286_ + 0 o p_62826_ + a (Lczn;Lczo;Lgu;Ldei$d;)Ldei$d; m_187960_ + 0 o p_187961_ + 1 o p_187962_ + 2 o p_187963_ + 3 o p_187964_ + a (I)Ldgo; m_246686_ + 0 o p_251193_ + a (III)Ldxe; m_62814_ + 0 o p_62815_ + 1 o p_62816_ + 2 o p_62817_ + a_ (Lgu;)Ldcb; m_8055_ + 0 o p_62923_ + b (Lczn;)V m_142170_ + 0 o p_156391_ + b (Lczn;Laif;)V m_223415_ + 0 o p_223416_ + 1 o p_223417_ + b (Ljava/util/function/Supplier;)V m_62879_ + 0 o p_62880_ + b (Laif;)V m_187979_ + 0 o p_187980_ + b (III)Ljava/lang/String; m_187975_ + 0 o p_187976_ + 1 o p_187977_ + 2 o p_187978_ + b_ (Lgu;)Ldxe; m_6425_ + 0 o p_62895_ + c (I)V m_280642_ + 0 o p_283355_ + c (Lczn;)V m_156406_ + 0 o p_156407_ + c (III)Ljava/lang/String; m_187981_ + 0 o p_187982_ + 1 o p_187983_ + 2 o p_187984_ + c (J)V m_187985_ + 0 o p_187986_ + c (Z)V m_62913_ + 0 o p_62914_ + c_ (Lgu;)Lczn; m_7702_ + 0 o p_62912_ + d (Lczn;)V m_187987_ + 0 o p_187988_ + d (Lgu;)V m_8114_ + 0 o p_62919_ + g (Lgu;)Lqr; m_8051_ + 0 o p_62932_ + j ()Ldec; m_6415_ + j (Lgu;)Lczn; m_62934_ + 0 o p_62935_ + k (Lgu;)Z m_156410_ + 0 o p_156411_ + l (Lgu;)V m_156412_ + 0 o p_156413_ + o ()Lefw; m_183531_ + p ()Lefw; m_183526_ + q ()Lddx$a; m_183568_ +dei$1 net/minecraft/world/level/chunk/LevelChunk$1 + ()V + a ()V m_142224_ + b ()Z m_142220_ + c ()Lgu; m_142689_ + d ()Ljava/lang/String; m_142280_ +dei$a net/minecraft/world/level/chunk/LevelChunk$BoundTickingBlockEntity + a f_156427_ + b f_156428_ + c f_156429_ + d f_156430_ + (Ldei;Lczn;Lczo;)V + 0 o p_156432_ + 1 o p_156433_ + 2 o p_156434_ + a ()V m_142224_ + b ()Z m_142220_ + c ()Lgu; m_142689_ + d ()Ljava/lang/String; m_142280_ + toString ()Ljava/lang/String; toString +dei$b net/minecraft/world/level/chunk/LevelChunk$EntityCreationType + a IMMEDIATE + b QUEUED + c CHECK + d $VALUES + ()V + static + (Ljava/lang/String;I)V + 0 o p_62962_ + 1 o p_62963_ + a ()[Ldei$b; m_156442_ + static + valueOf (Ljava/lang/String;)Ldei$b; valueOf + static + 0 o p_62965_ + values ()[Ldei$b; values + static +dei$c net/minecraft/world/level/chunk/LevelChunk$PostLoadProcessor + run (Ldei;)V m_196866_ + 0 o p_196867_ +dei$d net/minecraft/world/level/chunk/LevelChunk$RebindableTickingBlockEntityWrapper + a f_156443_ + b f_156444_ + (Ldei;Ldbd;)V + 0 o p_156446_ + 1 o p_156447_ + a ()V m_142224_ + a (Ldbd;)V m_156449_ + 0 o p_156450_ + b ()Z m_142220_ + c ()Lgu; m_142689_ + d ()Ljava/lang/String; m_142280_ + toString ()Ljava/lang/String; toString +dej net/minecraft/world/level/chunk/LevelChunkSection + a f_156455_ + b f_156456_ + c f_156457_ + d f_187994_ + e f_62969_ + f f_62970_ + g f_62971_ + h f_62972_ + i f_187995_ + (Lhr;)V + 0 o p_282873_ + (Ldeq;Lder;)V + 0 o p_282846_ + 1 o p_281695_ + a (Lcnn;Lcnt$f;III)V m_280631_ + 0 o p_282075_ + 1 o p_283084_ + 2 o p_282310_ + 3 o p_281510_ + 4 o p_283057_ + a (IIILdcb;)Ldcb; m_62986_ + 0 o p_62987_ + 1 o p_62988_ + 2 o p_62989_ + 3 o p_62990_ + a (III)Ldcb; m_62982_ + 0 o p_62983_ + 1 o p_62984_ + 2 o p_62985_ + a (Lsf;)V m_63004_ + 0 o p_63005_ + a ()V m_62981_ + a (IIILdcb;Z)Ldcb; m_62991_ + 0 o p_62992_ + 1 o p_62993_ + 2 o p_62994_ + 3 o p_62995_ + 4 o p_62996_ + a (Ljava/util/function/Predicate;)Z m_63002_ + 0 o p_63003_ + b (III)Ldxe; m_63007_ + 0 o p_63008_ + 1 o p_63009_ + 2 o p_63010_ + b (Lsf;)V m_274599_ + 0 o p_275669_ + b ()V m_63006_ + c (Lsf;)V m_63011_ + 0 o p_63012_ + c ()Z m_188008_ + c (III)Lhe; m_204433_ + 0 o p_204434_ + 1 o p_204435_ + 2 o p_204436_ + d ()Z m_63014_ + e ()Z m_63015_ + f ()Z m_63016_ + g ()V m_63018_ + h ()Ldeq; m_63019_ + i ()Lder; m_187996_ + j ()I m_63020_ +dej$a net/minecraft/world/level/chunk/LevelChunkSection$1BlockCounter + a f_204437_ + b f_204438_ + c f_204439_ + d f_204440_ + (Ldej;)V + 0 o p_204442_ + a (Ldcb;I)V m_63144_ + 0 o p_204444_ + 1 o p_204445_ + accept (Ljava/lang/Object;I)V m_63144_ + 0 o p_204447_ + 1 o p_204448_ +dek net/minecraft/world/level/chunk/LightChunk + B ()Ldwo; m_284400_ + a (Ljava/util/function/BiConsumer;)V m_284254_ + 0 o p_285040_ +del net/minecraft/world/level/chunk/LightChunkGetter + a (Lcmv;Lhx;)V m_6506_ + 0 o p_63021_ + 1 o p_63022_ + c (II)Ldek; m_6196_ + 0 o p_63023_ + 1 o p_63024_ + q ()Lcls; m_7653_ +dem net/minecraft/world/level/chunk/LinearPalette + a f_63025_ + b f_63026_ + c f_63027_ + d f_63029_ + e f_63030_ + (Lhj;[Ljava/lang/Object;Ldep;II)V + 0 o p_199921_ + 1 o p_199922_ + 2 o p_199923_ + 3 o p_199924_ + 4 o p_199925_ + (Lhj;ILdep;Ljava/util/List;)V + 0 o p_188015_ + 1 o p_188016_ + 2 o p_188017_ + 3 o p_188018_ + a (Ljava/util/function/Predicate;)Z m_6419_ + 0 o p_63042_ + a (I)Ljava/lang/Object; m_5795_ + 0 o p_63038_ + a (ILhj;Ldep;Ljava/util/List;)Ldeo; m_188019_ + static + 0 o p_188020_ + 1 o p_188021_ + 2 o p_188022_ + 3 o p_188023_ + a ()I m_6429_ + a (Ljava/lang/Object;)I m_6796_ + 0 o p_63040_ + a (Lsf;)V m_5680_ + 0 o p_63046_ + b ()I m_62680_ + b (Lsf;)V m_5678_ + 0 o p_63049_ + c ()Ldeo; m_199814_ +den net/minecraft/world/level/chunk/MissingPaletteEntryException + (I)V + 0 o p_188025_ +deo net/minecraft/world/level/chunk/Palette + a (Ljava/util/function/Predicate;)Z m_6419_ + 0 o p_63062_ + a (I)Ljava/lang/Object; m_5795_ + 0 o p_63060_ + a ()I m_6429_ + a (Ljava/lang/Object;)I m_6796_ + 0 o p_63061_ + a (Lsf;)V m_5680_ + 0 o p_63064_ + b ()I m_62680_ + b (Lsf;)V m_5678_ + 0 o p_63065_ + c ()Ldeo; m_199814_ +deo$a net/minecraft/world/level/chunk/Palette$Factory + create (ILhj;Ldep;Ljava/util/List;)Ldeo; m_188026_ + 0 o p_188027_ + 1 o p_188028_ + 2 o p_188029_ + 3 o p_188030_ +dep net/minecraft/world/level/chunk/PaletteResize + onResize (ILjava/lang/Object;)I m_7248_ + 0 o p_63066_ + 1 o p_63067_ +deq net/minecraft/world/level/chunk/PalettedContainer + a f_188031_ + b f_63070_ + c f_63071_ + d f_188032_ + e f_188033_ + f f_199441_ + (Lhj;Ljava/lang/Object;Ldeq$d;)V + 0 o p_188041_ + 1 o p_188042_ + 2 o p_188043_ + (Lhj;Ldeq$d;Ldeq$a;Lans;Ljava/util/List;)V + 0 o p_188035_ + 1 o p_188036_ + 2 o p_188037_ + 3 o p_188038_ + 4 o p_188039_ + (Lhj;Ldeq$d;Ldeq$c;)V + 0 o p_199928_ + 1 o p_199929_ + 2 o p_199930_ + a (Ldeq$b;)V m_63099_ + 0 o p_63100_ + a (Lhj;Lcom/mojang/serialization/Codec;Ldeq$d;Ljava/lang/Object;Lder$b;)Lcom/mojang/serialization/Codec; m_238427_ + static + 0 o p_238428_ + 1 o p_238429_ + 2 o p_238430_ + 3 o p_238431_ + 4 o p_238432_ + a (Lhj;Lcom/mojang/serialization/Codec;Ldeq$d;Ljava/lang/Object;)Lcom/mojang/serialization/Codec; m_238371_ + static + 0 o p_238372_ + 1 o p_238373_ + 2 o p_238374_ + 3 o p_238375_ + a (Lhj;Ldeq$d;)Lder$a; m_188064_ + 0 o p_188065_ + 1 o p_188066_ + a (Ldeq$b;Lit/unimi/dsi/fastutil/ints/Int2IntMap$Entry;)V m_63138_ + 0 o p_238270_ + 1 o p_238271_ + a (Lsf;)V m_63118_ + 0 o p_63119_ + a (Lcom/mojang/serialization/Codec;Ljava/lang/Object;Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; m_188044_ + static + 0 o p_188045_ + 1 o p_188046_ + 2 o p_188047_ + a ()V m_63084_ + a (ILjava/lang/Object;)Ljava/lang/Object; m_63096_ + 0 o p_63097_ + 1 o p_63098_ + a (Ldeg;I)I m_198176_ + 0 o p_198177_ + 1 o p_198178_ + a (Ljava/util/function/Consumer;Ldeo;I)V m_196885_ + static + 0 o p_238272_ + 1 o p_238273_ + 2 o p_238274_ + a (III)Ljava/lang/Object; m_63087_ + 0 o p_63088_ + 1 o p_63089_ + 2 o p_63090_ + a (Ljava/util/function/Consumer;)V m_196879_ + 0 o p_196880_ + a (Lhj;Ldeq$d;Lder;)Lder$a; m_188071_ + static + 0 o p_188072_ + 1 o p_188073_ + 2 o p_238263_ + a (Lapl$a;)Ljava/lang/String; m_274279_ + static + 0 o p_275178_ + a (IIILjava/lang/Object;)Ljava/lang/Object; m_63091_ + 0 o p_63092_ + 1 o p_63093_ + 2 o p_63094_ + 3 o p_63095_ + a (Lhj;Ldeq$d;Lder$a;)Lcom/mojang/serialization/DataResult; m_188067_ + static + 0 o p_188068_ + 1 o p_188069_ + 2 o p_238258_ + a (Lhj;Ldeo;I)I m_238280_ + static + 0 o p_238281_ + 1 o p_238282_ + 2 o p_238283_ + a (Lit/unimi/dsi/fastutil/ints/Int2IntOpenHashMap;I)V m_198179_ + static + 0 o p_238268_ + 1 o p_238269_ + a (Ldeq;)Lder; m_200428_ + static + 0 o p_238264_ + a (I)Ljava/lang/Object; m_63085_ + 0 o p_63086_ + a (Ljava/util/function/Predicate;)Z m_63109_ + 0 o p_63110_ + a (Lder$b;Lhj;Ldeq$d;Lder$a;)Lcom/mojang/serialization/DataResult; m_188078_ + static + 0 o p_238259_ + 1 o p_238260_ + 2 o p_238261_ + 3 o p_238262_ + a (Ldeq$c;I)Ldeq$c; m_188051_ + 0 o p_188052_ + 1 o p_188053_ + a ([ILjava/util/function/IntUnaryOperator;)V m_198189_ + static + 0 o p_198190_ + 1 o p_198191_ + b (ILjava/lang/Object;)V m_63132_ + 0 o p_63133_ + 1 o p_63134_ + b (Lhj;Lcom/mojang/serialization/Codec;Ldeq$d;Ljava/lang/Object;)Lcom/mojang/serialization/Codec; m_238418_ + static + 0 o p_238419_ + 1 o p_238420_ + 2 o p_238421_ + 3 o p_238422_ + b (Lhj;Ldeq$d;Lder$a;)Lcom/mojang/serialization/DataResult; m_196881_ + static + 0 o p_238265_ + 1 o p_238266_ + 2 o p_238267_ + b (IIILjava/lang/Object;)Ljava/lang/Object; m_63127_ + 0 o p_63128_ + 1 o p_63129_ + 2 o p_63130_ + 3 o p_63131_ + b (Lsf;)V m_63135_ + 0 o p_63136_ + b ()V m_63120_ + c ()I m_63137_ + c (IIILjava/lang/Object;)V m_156470_ + 0 o p_156471_ + 1 o p_156472_ + 2 o p_156473_ + 3 o p_156474_ + c (ILjava/lang/Object;)I m_238277_ + static + 0 o p_238278_ + 1 o p_238279_ + d (ILjava/lang/Object;)I m_198182_ + static + 0 o p_238275_ + 1 o p_238276_ + d ()Ldeq; m_199931_ + e ()Ldeq; m_238334_ + f ()Ljava/lang/String; m_274280_ + static + onResize (ILjava/lang/Object;)I m_7248_ + 0 o p_63142_ + 1 o p_63143_ +deq$a net/minecraft/world/level/chunk/PalettedContainer$Configuration + a f_188085_ + b f_188086_ + (Ldeo$a;I)V + 0 o f_188085_ + 1 o f_188086_ + a (Lhj;Ldep;I)Ldeq$c; m_188091_ + 0 o p_188092_ + 1 o p_188093_ + 2 o p_188094_ + a ()Ldeo$a; f_188085_ + b ()I f_188086_ + equals (Ljava/lang/Object;)Z equals + 0 o p_188097_ + hashCode ()I hashCode + toString ()Ljava/lang/String; toString +deq$b net/minecraft/world/level/chunk/PalettedContainer$CountConsumer + accept (Ljava/lang/Object;I)V m_63144_ + 0 o p_63145_ + 1 o p_63146_ +deq$c net/minecraft/world/level/chunk/PalettedContainer$Data + a f_188100_ + b f_188101_ + c f_188102_ + (Ldeq$a;Lans;Ldeo;)V + 0 o f_188100_ + 1 o f_188101_ + 2 o f_188102_ + a ()I m_188107_ + a (Ldeo;Lans;)V m_188111_ + 0 o p_188112_ + 1 o p_188113_ + a (Lsf;)V m_188114_ + 0 o p_188115_ + b ()Ldeq$c; m_238361_ + c ()Ldeq$a; f_188100_ + d ()Lans; f_188101_ + e ()Ldeo; f_188102_ + equals (Ljava/lang/Object;)Z equals + 0 o p_188120_ + hashCode ()I hashCode + toString ()Ljava/lang/String; toString +deq$d net/minecraft/world/level/chunk/PalettedContainer$Strategy + a f_188134_ + b f_188135_ + c f_188136_ + d f_188137_ + e f_188138_ + f f_188139_ + g f_188140_ + ()V + static + (I)V + 0 o p_188143_ + a (Lhj;I)Ldeq$a; m_183248_ + 0 o p_188149_ + 1 o p_188150_ + a (III)I m_188145_ + 0 o p_188146_ + 1 o p_188147_ + 2 o p_188148_ + a ()I m_188144_ + b (Lhj;I)I m_188151_ + 0 o p_188152_ + 1 o p_188153_ +deq$d$1 net/minecraft/world/level/chunk/PalettedContainer$Strategy$1 + (I)V + 0 o p_188155_ + a (Lhj;I)Ldeq$a; m_183248_ + 0 o p_188157_ + 1 o p_188158_ +deq$d$2 net/minecraft/world/level/chunk/PalettedContainer$Strategy$2 + (I)V + 0 o p_188160_ + a (Lhj;I)Ldeq$a; m_183248_ + 0 o p_188162_ + 1 o p_188163_ +der net/minecraft/world/level/chunk/PalettedContainerRO + a (III)Ljava/lang/Object; m_63087_ + 0 o p_238291_ + 1 o p_238292_ + 2 o p_238293_ + a (Ljava/util/function/Consumer;)V m_196879_ + 0 o p_238353_ + a (Ldeq$b;)V m_63099_ + 0 o p_238355_ + a (Ljava/util/function/Predicate;)Z m_63109_ + 0 o p_238437_ + a (Lhj;Ldeq$d;)Lder$a; m_188064_ + 0 o p_238441_ + 1 o p_238442_ + b (Lsf;)V m_63135_ + 0 o p_238417_ + c ()I m_63137_ + e ()Ldeq; m_238334_ +der$a net/minecraft/world/level/chunk/PalettedContainerRO$PackedData + a f_238184_ + b f_238179_ + (Ljava/util/List;Ljava/util/Optional;)V + 0 o f_238184_ + 1 o f_238179_ + a ()Ljava/util/List; f_238184_ + b ()Ljava/util/Optional; f_238179_ + equals (Ljava/lang/Object;)Z equals + 0 o p_238439_ + hashCode ()I hashCode + toString ()Ljava/lang/String; toString +der$b net/minecraft/world/level/chunk/PalettedContainerRO$Unpacker + read (Lhj;Ldeq$d;Lder$a;)Lcom/mojang/serialization/DataResult; m_238363_ + 0 o p_238364_ + 1 o p_238365_ + 2 o p_238366_ +des net/minecraft/world/level/chunk/ProtoChunk + n f_63151_ + o f_63153_ + p f_63157_ + q f_63166_ + r f_188164_ + s f_63163_ + t f_188165_ + (Lclt;Ldev;[Ldej;Lefr;Lefr;Lcmo;Lhr;Ldin;)V + 0 o p_188173_ + 1 o p_188174_ + 2 o p_188175_ + 3 o p_188176_ + 4 o p_188177_ + 5 o p_188178_ + 6 o p_188179_ + 7 o p_188180_ + (Lclt;Ldev;Lcmo;Lhr;Ldin;)V + 0 o p_188167_ + 1 o p_188168_ + 2 o p_188169_ + 3 o p_188170_ + 4 o p_188171_ + D ()Ljava/util/Map; m_63292_ + E ()Ljava/util/List; m_63293_ + F ()Ljava/util/Map; m_63294_ + G ()Lefo; m_188181_ + H ()Lefo; m_188182_ + a (Lczn;)V m_142169_ + 0 o p_156488_ + a (Ldgy;)V m_188183_ + 0 o p_188184_ + a (Lefr;)Lefo; m_188189_ + static + 0 o p_188190_ + a (Ldec;)V m_7150_ + 0 o p_63187_ + a (SILclt;)Lgu; m_63227_ + static + 0 o p_63228_ + 1 o p_63229_ + 2 o p_63230_ + a (Ldsa;Ldsi;)V m_213792_ + 0 o p_223432_ + 1 o p_223433_ + a (Lbfj;)V m_6286_ + 0 o p_63183_ + a (Ldhg$a;)Lddw; m_183612_ + 0 o p_188185_ + a (SI)V m_6561_ + 0 o p_63225_ + 1 o p_63226_ + a (Ldwt;)V m_63209_ + 0 o p_63210_ + a (Lgu;Ldcb;Z)Ldcb; m_6978_ + 0 o p_63217_ + 1 o p_63218_ + 2 o p_63219_ + a (Ldhg$a;Lddw;)V m_188186_ + 0 o p_188187_ + 1 o p_188188_ + a_ (Lgu;)Ldcb; m_8055_ + 0 o p_63264_ + b (Lqr;)V m_63242_ + 0 o p_63243_ + b (Ldhg$a;)Lddw; m_183613_ + 0 o p_188191_ + b_ (Lgu;)Ldxe; m_6425_ + 0 o p_63239_ + c (Ldhg$a;)Lddw; m_289183_ + 0 o p_289528_ + c_ (Lgu;)Lczn; m_7702_ + 0 o p_63257_ + d (Lgu;)V m_8114_ + 0 o p_63262_ + e (Lgu;)V m_8113_ + 0 o p_63266_ + g (Lgu;)Lqr; m_8051_ + 0 o p_63275_ + getNoiseBiome (III)Lhe; m_203495_ + 0 o p_204450_ + 1 o p_204451_ + 2 o p_204452_ + j (Lgu;)S m_63280_ + static + 0 o p_63281_ + j ()Ldec; m_6415_ + o ()Lefw; m_183531_ + p ()Lefw; m_183526_ + q ()Lddx$a; m_183568_ + x ()Ldgy; m_183376_ + z ()Lcmo; m_183618_ +det net/minecraft/world/level/chunk/SingleValuePalette + a f_188203_ + b f_188204_ + c f_188205_ + (Lhj;Ldep;Ljava/util/List;)V + 0 o p_188207_ + 1 o p_188208_ + 2 o p_188209_ + a (Ljava/util/function/Predicate;)Z m_6419_ + 0 o p_188221_ + a (I)Ljava/lang/Object; m_5795_ + 0 o p_188212_ + a (ILhj;Ldep;Ljava/util/List;)Ldeo; m_188213_ + static + 0 o p_188214_ + 1 o p_188215_ + 2 o p_188216_ + 3 o p_188217_ + a ()I m_6429_ + a (Ljava/lang/Object;)I m_6796_ + 0 o p_188219_ + a (Lsf;)V m_5680_ + 0 o p_188223_ + b ()I m_62680_ + b (Lsf;)V m_5678_ + 0 o p_188226_ + c ()Ldeo; m_199814_ +deu net/minecraft/world/level/chunk/StructureAccess + a (Ldsa;)Ldsi; m_213652_ + 0 o p_223434_ + a (Ldsa;J)V m_213843_ + 0 o p_223435_ + 1 o p_223436_ + a (Ldsa;Ldsi;)V m_213792_ + 0 o p_223437_ + 1 o p_223438_ + b (Ldsa;)Lit/unimi/dsi/fastutil/longs/LongSet; m_213649_ + 0 o p_223439_ + b (Ljava/util/Map;)V m_62737_ + 0 o p_223440_ + h ()Ljava/util/Map; m_62769_ +dev net/minecraft/world/level/chunk/UpgradeData + a f_63320_ + b f_63321_ + c f_156504_ + d f_63322_ + e f_63323_ + f f_208118_ + g f_208119_ + h f_63324_ + i f_63325_ + j f_63326_ + ()V + static + (Lcmo;)V + 0 o p_156506_ + (Lqr;Lcmo;)V + 0 o p_156508_ + 1 o p_156509_ + a (Lcpn;)Ljava/lang/String; m_257336_ + static + 0 o p_258984_ + a (Ljava/lang/String;)Ljava/util/Optional; m_257338_ + static + 0 o p_258986_ + a (Ldei;Lhb;)V m_63343_ + static + 0 o p_63344_ + 1 o p_63345_ + a (Lcmm;Ldev$a;)V m_208120_ + static + 0 o p_208121_ + 1 o p_208122_ + a (Lqx;Lefs;)V m_208137_ + static + 0 o p_208138_ + 1 o p_208139_ + a (Lcmm;Lefs;)V m_208123_ + static + 0 o p_208124_ + 1 o p_208125_ + a (Lqr;Ljava/lang/String;Ljava/util/function/Function;Ljava/util/List;)V m_208132_ + static + 0 o p_208133_ + 1 o p_208134_ + 2 o p_208135_ + 3 o p_208136_ + a (Ldcb;Lha;Lcmn;Lgu;Lgu;)Ldcb; m_63335_ + static + 0 o p_63336_ + 1 o p_63337_ + 2 o p_63338_ + 3 o p_63339_ + 4 o p_63340_ + a ()Z m_63331_ + a (Ldei;)V m_63341_ + 0 o p_63342_ + a (Ldxd;)Ljava/lang/String; m_257337_ + static + 0 o p_258985_ + b (Lcmm;Lefs;)V m_208140_ + static + 0 o p_208141_ + 1 o p_208142_ + b (Lqx;Lefs;)V m_208145_ + static + 0 o p_208146_ + 1 o p_208147_ + b (Ljava/lang/String;)Ljava/util/Optional; m_257335_ + static + 0 o p_258983_ + b (Ldei;)V m_63347_ + 0 o p_63348_ + b ()Lqr; m_63346_ + c ()Ljava/util/Optional; m_208148_ + static + d ()Ljava/util/Optional; m_208149_ + static +dev$a net/minecraft/world/level/chunk/UpgradeData$BlockFixer + a (Ldcb;Lha;Ldcb;Lcmn;Lgu;Lgu;)Ldcb; m_5731_ + 0 o p_63352_ + 1 o p_63353_ + 2 o p_63354_ + 3 o p_63355_ + 4 o p_63356_ + 5 o p_63357_ + a (Lcmn;)V m_5870_ + 0 o p_63351_ +dev$b net/minecraft/world/level/chunk/UpgradeData$BlockFixers + a BLACKLIST + b DEFAULT + c CHEST + d LEAVES + e STEM_BLOCK + f f_63363_ + g $VALUES + ()V + static + (Ljava/lang/String;I[Lcpn;)V + 0 o p_63378_ + 1 o p_63379_ + 2 o p_63380_ + (Ljava/lang/String;IZ[Lcpn;)V + 0 o p_63367_ + 1 o p_63368_ + 2 o p_63369_ + 3 o p_63370_ + a ()[Ldev$b; m_156510_ + static + valueOf (Ljava/lang/String;)Ldev$b; valueOf + static + 0 o p_63387_ + values ()[Ldev$b; values + static +dev$b$1 net/minecraft/world/level/chunk/UpgradeData$BlockFixers$1 + (Ljava/lang/String;I[Lcpn;)V + 0 o p_63390_ + 1 o p_63391_ + 2 o p_63392_ + a (Ldcb;Lha;Ldcb;Lcmn;Lgu;Lgu;)Ldcb; m_5731_ + 0 o p_63394_ + 1 o p_63395_ + 2 o p_63396_ + 3 o p_63397_ + 4 o p_63398_ + 5 o p_63399_ +dev$b$2 net/minecraft/world/level/chunk/UpgradeData$BlockFixers$2 + (Ljava/lang/String;I[Lcpn;)V + 0 o p_63401_ + 1 o p_63402_ + 2 o p_63403_ + a (Ldcb;Lha;Ldcb;Lcmn;Lgu;Lgu;)Ldcb; m_5731_ + 0 o p_63405_ + 1 o p_63406_ + 2 o p_63407_ + 3 o p_63408_ + 4 o p_63409_ + 5 o p_63410_ +dev$b$3 net/minecraft/world/level/chunk/UpgradeData$BlockFixers$3 + (Ljava/lang/String;I[Lcpn;)V + 0 o p_63412_ + 1 o p_63413_ + 2 o p_63414_ + a (Ldcb;Lha;Ldcb;Lcmn;Lgu;Lgu;)Ldcb; m_5731_ + 0 o p_63416_ + 1 o p_63417_ + 2 o p_63418_ + 3 o p_63419_ + 4 o p_63420_ + 5 o p_63421_ +dev$b$4 net/minecraft/world/level/chunk/UpgradeData$BlockFixers$4 + g f_63422_ + (Ljava/lang/String;IZ[Lcpn;)V + 0 o p_63424_ + 1 o p_63425_ + 2 o p_63426_ + 3 o p_63427_ + a (Ldcb;Lha;Ldcb;Lcmn;Lgu;Lgu;)Ldcb; m_5731_ + 0 o p_63432_ + 1 o p_63433_ + 2 o p_63434_ + 3 o p_63435_ + 4 o p_63436_ + 5 o p_63437_ + a (Lcmn;)V m_5870_ + 0 o p_63430_ + a ()Ljava/util/List; m_63428_ + static +dev$b$5 net/minecraft/world/level/chunk/UpgradeData$BlockFixers$5 + (Ljava/lang/String;I[Lcpn;)V + 0 o p_63439_ + 1 o p_63440_ + 2 o p_63441_ + a (Ldcb;Lha;Ldcb;Lcmn;Lgu;Lgu;)Ldcb; m_5731_ + 0 o p_63443_ + 1 o p_63444_ + 2 o p_63445_ + 3 o p_63446_ + 4 o p_63447_ + 5 o p_63448_ +dew net/minecraft/world/level/chunk/package-info +dex net/minecraft/world/level/chunk/storage/ChunkScanAccess + a (Lclt;Lrh;)Ljava/util/concurrent/CompletableFuture; m_196358_ + 0 o p_196888_ + 1 o p_196889_ +dey net/minecraft/world/level/chunk/storage/ChunkSerializer + a f_223441_ + b f_223442_ + c f_223443_ + d f_223444_ + e f_223445_ + f f_223446_ + g f_223447_ + h f_188227_ + i f_63449_ + j f_156511_ + k f_188228_ + l f_188229_ + ()V + static + ()V + a (Ldsq;Lqr;J)Ljava/util/Map; m_188254_ + static + 0 o p_188255_ + 1 o p_188256_ + 2 o p_188257_ + a (Lcpn;)Ljava/lang/String; m_257339_ + static + 0 o p_258987_ + a (Ljava/lang/String;)Ljava/util/Optional; m_257343_ + static + 0 o p_258991_ + a (Lqr;)Ldec$a; m_63485_ + static + 0 o p_63486_ + a (Lclt;ILjava/lang/String;)V m_188239_ + static + 0 o p_188240_ + 1 o p_188241_ + 2 o p_188242_ + a (Lhs;Lclt;Lqr;)Ljava/util/Map; m_208154_ + static + 0 o p_208155_ + 1 o p_208156_ + 2 o p_208157_ + a (Laif;Lqr;)Ldei$c; m_196890_ + static + 0 o p_196891_ + 1 o p_196892_ + a (Lqr;Ljava/lang/String;)Lqx; m_196897_ + static + 0 o p_196898_ + 1 o p_196899_ + a (Ldsq;Lclt;Ljava/util/Map;Ljava/util/Map;)Lqr; m_188249_ + static + 0 o p_188250_ + 1 o p_188251_ + 2 o p_188252_ + 3 o p_188253_ + a (Lhr;)Lcom/mojang/serialization/Codec; m_188260_ + static + 0 o p_188261_ + a (Laif;Lddx;)Lqr; m_63454_ + static + 0 o p_63455_ + 1 o p_63456_ + a ([Lit/unimi/dsi/fastutil/shorts/ShortList;)Lqx; m_63490_ + static + 0 o p_63491_ + a (Lqr;Lrk;)V m_188277_ + static + 0 o p_188278_ + 1 o p_188279_ + a (Laif;Lbqz;Lclt;Lqr;)Ldes; m_188230_ + static + 0 o p_188231_ + 1 o p_188232_ + 2 o p_188233_ + 3 o p_188234_ + a (Lqx;Laif;Lqx;Ldei;)V m_196900_ + static + 0 o p_196901_ + 1 o p_196902_ + 2 o p_196903_ + 3 o p_196904_ + a (Laif;Lqr;Lddx$a;)V m_188235_ + static + 0 o p_188236_ + 1 o p_188237_ + 2 o p_188238_ + a (Lclt;Lacq;J)Z m_208150_ + static + 0 o p_208151_ + 1 o p_208152_ + 2 o p_208153_ + a (Ldxd;)Ljava/lang/String; m_257341_ + static + 0 o p_258989_ + b (Lclt;ILjava/lang/String;)V m_188271_ + static + 0 o p_188272_ + 1 o p_188273_ + 2 o p_188274_ + b (Lqr;Lrk;)V m_196907_ + static + 0 o p_196908_ + 1 o p_196909_ + b (Ljava/lang/String;)Ljava/util/Optional; m_257344_ + static + 0 o p_258992_ + c (Ljava/lang/String;)Ljava/util/Optional; m_257342_ + static + 0 o p_258990_ + c (Lclt;ILjava/lang/String;)V m_188280_ + static + 0 o p_188281_ + 1 o p_188282_ + 2 o p_188283_ + d (Ljava/lang/String;)Ljava/util/Optional; m_257340_ + static + 0 o p_258988_ +dez net/minecraft/world/level/chunk/storage/ChunkStorage + a f_63495_ + b f_63497_ + c f_196910_ + d f_63496_ + (Ljava/nio/file/Path;Lcom/mojang/datafixers/DataFixer;Z)V + 0 o p_196912_ + 1 o p_196913_ + 2 o p_196914_ + a (Lqr;Lacp;Ljava/util/Optional;)V m_196918_ + static + 0 o p_196919_ + 1 o p_196920_ + 2 o p_196921_ + a (Lclt;I)Z m_223451_ + 0 o p_223452_ + 1 o p_223453_ + a (Lclt;Lqr;)V m_63502_ + 0 o p_63503_ + 1 o p_63504_ + a (Lacp;Ljava/util/function/Supplier;)Ldrv; m_223448_ + 0 o p_223449_ + 1 o p_223450_ + a (Lqr;)I m_63505_ + static + 0 o p_63506_ + a (Lqr;Lacp;)V m_196915_ + static + 0 o p_196916_ + 1 o p_196917_ + a (Lacp;Ljava/util/function/Supplier;Lqr;Ljava/util/Optional;)Lqr; m_188288_ + 0 o p_188289_ + 1 o p_188290_ + 2 o p_188291_ + 3 o p_188292_ + close ()V close + e (Lclt;)Ljava/util/concurrent/CompletableFuture; m_223454_ + 0 o p_223455_ + o ()V m_63514_ + p ()Ldex; m_196922_ +df net/minecraft/advancements/critereon/UsedEnderEyeTrigger + a f_73928_ + ()V + static + ()V + a (Laig;Lgu;)V m_73935_ + 0 o p_73936_ + 1 o p_73937_ + a (DLdf$a;)Z m_73932_ + static + 0 o p_73933_ + 1 o p_73934_ + a ()Lacq; m_7295_ + a (Lcom/google/gson/JsonObject;Lba;Lbe;)Ldf$a; m_7214_ + 0 o p_286292_ + 1 o p_286488_ + 2 o p_286702_ + b (Lcom/google/gson/JsonObject;Lba;Lbe;)Lar; m_7214_ + 0 o p_286861_ + 1 o p_286315_ + 2 o p_286916_ +df$a net/minecraft/advancements/critereon/UsedEnderEyeTrigger$TriggerInstance + a f_73947_ + (Lba;Lcj$c;)V + 0 o p_286567_ + 1 o p_286810_ + a (D)Z m_73951_ + 0 o p_73952_ +dfa net/minecraft/world/level/chunk/storage/EntityStorage + a f_156534_ + b f_156535_ + c f_156536_ + d f_156537_ + e f_156538_ + f f_156539_ + g f_156540_ + h f_182485_ + ()V + static + (Laif;Ljava/nio/file/Path;Lcom/mojang/datafixers/DataFixer;ZLjava/util/concurrent/Executor;)V + 0 o p_196924_ + 1 o p_196925_ + 2 o p_196926_ + 3 o p_196927_ + 4 o p_196928_ + a (Lclt;Ljava/util/Optional;)Ldfq; m_223456_ + 0 o p_223457_ + 1 o p_223458_ + a (Z)V m_182219_ + 0 o p_182487_ + a (Lqx;Lbfj;)V m_156565_ + static + 0 o p_156566_ + 1 o p_156567_ + a (Lqr;)Lclt; m_156570_ + static + 0 o p_156571_ + a (Lqr;Lclt;)V m_156562_ + static + 0 o p_156563_ + 1 o p_156564_ + a (Ldfq;)V m_141971_ + 0 o p_156559_ + a (Lclt;)Ljava/util/concurrent/CompletableFuture; m_141930_ + 0 o p_156551_ + a (Lclt;Ljava/lang/Throwable;)Ljava/lang/Void; m_156552_ + static + 0 o p_156553_ + 1 o p_156554_ + b (Lclt;)Ldfq; m_156568_ + static + 0 o p_156569_ + b (Lqr;)Lqr; m_156572_ + 0 o p_156573_ + close ()V close +dfb net/minecraft/world/level/chunk/storage/IOWorker + a f_63515_ + b f_63516_ + c f_63517_ + d f_63518_ + e f_63519_ + f f_223459_ + g f_223460_ + ()V + static + (Ljava/nio/file/Path;ZLjava/lang/String;)V + 0 o p_196930_ + 1 o p_196931_ + 2 o p_196932_ + a (II)Ljava/util/concurrent/CompletableFuture; m_223463_ + 0 o p_223464_ + 1 o p_223465_ + a (Lqr;)Z m_223484_ + 0 o p_223485_ + a ()V m_63553_ + a (Lclt;Lqr;)Ljava/util/concurrent/CompletableFuture; m_63538_ + 0 o p_63539_ + 1 o p_63540_ + a (Ldfb$a;)Ljava/util/concurrent/CompletableFuture; m_223474_ + static + 0 o p_223475_ + a (Lclt;Lrh;)Ljava/util/concurrent/CompletableFuture; m_196358_ + 0 o p_196939_ + 1 o p_196940_ + a (Lbcp;Ljava/util/function/Supplier;)V m_223468_ + 0 o p_223469_ + 1 o p_223470_ + a (Lbcp;)Lbcs$b; m_223466_ + static + 0 o p_223467_ + a (Lqr;Lclt;)Ldfb$a; m_223486_ + static + 0 o p_223487_ + 1 o p_223488_ + a (Lclt;I)Z m_223471_ + 0 o p_223472_ + 1 o p_223473_ + a (Lclt;Ldfb$a;)V m_63535_ + 0 o p_63536_ + 1 o p_63537_ + a (Ljava/util/BitSet;Lclt;)V m_223478_ + 0 o p_223479_ + 1 o p_223480_ + a (Ljava/util/function/Supplier;Lbcp;)Lbcs$b; m_223481_ + 0 o p_223482_ + 1 o p_223483_ + a (Lclt;)Ljava/util/concurrent/CompletableFuture; m_156587_ + 0 o p_156588_ + a (Ljava/lang/Void;)Ljava/util/concurrent/CompletionStage; m_223476_ + 0 o p_223477_ + a (Z)Ljava/util/concurrent/CompletableFuture; m_182498_ + 0 o p_182499_ + a (Ljava/util/function/Supplier;)Ljava/util/concurrent/CompletableFuture; m_63545_ + 0 o p_63546_ + a (I)[Ljava/util/concurrent/CompletableFuture; m_223461_ + static + 0 o p_223462_ + b (Lbcp;)V m_223492_ + static + 0 o p_223493_ + b (Ljava/lang/Void;)Ljava/util/concurrent/CompletionStage; m_182493_ + 0 o p_182494_ + b (Lclt;Lqr;)Lcom/mojang/datafixers/util/Either; m_223496_ + 0 o p_223497_ + 1 o p_223498_ + b (II)Ljava/util/concurrent/CompletableFuture; m_223489_ + 0 o p_223490_ + 1 o p_223491_ + b (Lclt;)Lcom/mojang/datafixers/util/Either; m_223494_ + 0 o p_223495_ + b (Lclt;Lrh;)Lcom/mojang/datafixers/util/Either; m_223499_ + 0 o p_223500_ + 1 o p_223501_ + b ()V m_63561_ + c (II)Ljava/util/BitSet; m_223503_ + 0 o p_223504_ + 1 o p_223505_ + c ()Lcom/mojang/datafixers/util/Either; m_223502_ + static + close ()V close + d ()Lcom/mojang/datafixers/util/Either; m_182502_ + e ()Lcom/mojang/datafixers/util/Either; m_223506_ +dfb$a net/minecraft/world/level/chunk/storage/IOWorker$PendingStore + a f_63565_ + b f_63566_ + (Lqr;)V + 0 o p_63568_ +dfb$b net/minecraft/world/level/chunk/storage/IOWorker$Priority + a FOREGROUND + b BACKGROUND + c SHUTDOWN + d $VALUES + ()V + static + (Ljava/lang/String;I)V + 0 o p_63581_ + 1 o p_63582_ + a ()[Ldfb$b; m_156595_ + static + valueOf (Ljava/lang/String;)Ldfb$b; valueOf + static + 0 o p_63584_ + values ()[Ldfb$b; values + static +dfc net/minecraft/world/level/chunk/storage/RegionBitmap + a f_63608_ + ()V + a ()Lit/unimi/dsi/fastutil/ints/IntSet; m_156603_ + a (II)V m_63612_ + 0 o p_63613_ + 1 o p_63614_ + a (I)I m_63610_ + 0 o p_63611_ + b (II)V m_63615_ + 0 o p_63616_ + 1 o p_63617_ +dfd net/minecraft/world/level/chunk/storage/RegionFile + a f_156604_ + b f_63618_ + c f_63619_ + d f_156605_ + e f_156606_ + f f_156607_ + g f_63620_ + h f_156608_ + i f_156609_ + j f_156610_ + k f_156611_ + l f_63621_ + m f_63622_ + n f_63623_ + o f_63624_ + p f_63625_ + q f_63626_ + ()V + static + (Ljava/nio/file/Path;Ljava/nio/file/Path;Ldff;Z)V + 0 o p_63633_ + 1 o p_63634_ + 2 o p_63635_ + 3 o p_63636_ + (Ljava/nio/file/Path;Ljava/nio/file/Path;Z)V + 0 o p_196950_ + 1 o p_196951_ + 2 o p_196952_ + a (Lclt;Ljava/nio/ByteBuffer;)V m_63654_ + 0 o p_63655_ + 1 o p_63656_ + a (Lclt;B)Ljava/io/DataInputStream; m_63647_ + 0 o p_63648_ + 1 o p_63649_ + a ()V m_63637_ + a (II)I m_63642_ + 0 o p_63643_ + 1 o p_63644_ + a (Lclt;)Ljava/io/DataInputStream; m_63645_ + 0 o p_63646_ + a (B)Z m_63638_ + static + 0 o p_63639_ + a (I)I m_63640_ + static + 0 o p_63641_ + a (Ljava/nio/ByteBuffer;I)Ljava/io/ByteArrayInputStream; m_63659_ + static + 0 o p_63660_ + 1 o p_63661_ + a (Ljava/nio/file/Path;Ljava/nio/ByteBuffer;)Ldfd$b; m_63662_ + 0 o p_63663_ + 1 o p_63664_ + a (Lclt;BLjava/io/InputStream;)Ljava/io/DataInputStream; m_63650_ + 0 o p_63651_ + 1 o p_63652_ + 2 o p_63653_ + a (Ljava/nio/file/Path;Ljava/nio/file/Path;)V m_63665_ + static + 0 o p_63666_ + 1 o p_63667_ + b (B)B m_63669_ + static + 0 o p_63670_ + b (Lclt;)Z m_63673_ + 0 o p_63674_ + b ()I m_156612_ + static + b (I)I m_63671_ + static + 0 o p_63672_ + c (I)I m_63676_ + static + 0 o p_63677_ + c ()Ljava/nio/ByteBuffer; m_63668_ + c (Lclt;)Ljava/io/DataOutputStream; m_63678_ + 0 o p_63679_ + close ()V close + d (Lclt;)V m_156613_ + 0 o p_156614_ + d ()V m_63675_ + e (Lclt;)Z m_63682_ + 0 o p_63683_ + e ()V m_63681_ + f (Lclt;)Ljava/nio/file/Path; m_63684_ + 0 o p_63685_ + g (Lclt;)I m_63686_ + 0 o p_63687_ + h (Lclt;)I m_63688_ + static + 0 o p_63689_ + i (Lclt;)V m_63690_ + 0 o p_63691_ +dfd$a net/minecraft/world/level/chunk/storage/RegionFile$ChunkBuffer + a f_63692_ + b f_63693_ + (Ldfd;Lclt;)V + 0 o p_63695_ + 1 o p_63696_ + close ()V close +dfd$b net/minecraft/world/level/chunk/storage/RegionFile$CommitOp + run ()V m_63698_ +dfe net/minecraft/world/level/chunk/storage/RegionFileStorage + a f_156615_ + b f_156616_ + c f_63699_ + d f_63700_ + e f_63701_ + (Ljava/nio/file/Path;Z)V + 0 o p_196954_ + 1 o p_196955_ + a (Lclt;)Lqr; m_63706_ + 0 o p_63707_ + a (Lclt;Lqr;)V m_63708_ + 0 o p_63709_ + 1 o p_63710_ + a ()V m_63705_ + a (Lclt;Lrh;)V m_196956_ + 0 o p_196957_ + 1 o p_196958_ + b (Lclt;)Ldfd; m_63711_ + 0 o p_63712_ + close ()V close +dff net/minecraft/world/level/chunk/storage/RegionFileVersion + a f_63743_ + b f_63744_ + c f_63745_ + d f_63746_ + e f_63747_ + f f_63748_ + g f_63749_ + ()V + static + (ILdff$a;Ldff$a;)V + 0 o p_63752_ + 1 o p_63753_ + 2 o p_63754_ + a (Ljava/io/InputStream;)Ljava/io/InputStream; m_63760_ + 0 o p_63761_ + a (I)Ldff; m_63756_ + static + 0 o p_63757_ + a (Ldff;)Ldff; m_63758_ + static + 0 o p_63759_ + a ()I m_63755_ + a (Ljava/io/OutputStream;)Ljava/io/OutputStream; m_63762_ + 0 o p_63763_ + b (Ljava/io/InputStream;)Ljava/io/InputStream; m_196959_ + static + 0 o p_196960_ + b (I)Z m_63764_ + static + 0 o p_63765_ + b (Ljava/io/OutputStream;)Ljava/io/OutputStream; m_196961_ + static + 0 o p_196962_ + c (Ljava/io/InputStream;)Ljava/io/InputStream; m_196963_ + static + 0 o p_196964_ + c (Ljava/io/OutputStream;)Ljava/io/OutputStream; m_196965_ + static + 0 o p_196966_ + d (Ljava/io/InputStream;)Ljava/io/InputStream; m_63766_ + static + 0 o p_63767_ + d (Ljava/io/OutputStream;)Ljava/io/OutputStream; m_63768_ + static + 0 o p_63769_ +dff$a net/minecraft/world/level/chunk/storage/RegionFileVersion$StreamWrapper + wrap (Ljava/lang/Object;)Ljava/lang/Object; m_63770_ + 0 o p_63771_ +dfg net/minecraft/world/level/chunk/storage/SectionStorage + a f_63772_ + b f_156617_ + c f_156618_ + d f_63773_ + e f_63774_ + f f_63775_ + g f_63776_ + h f_63777_ + i f_63778_ + j f_63779_ + k f_223507_ + ()V + static + (Ljava/nio/file/Path;Ljava/util/function/Function;Ljava/util/function/Function;Lcom/mojang/datafixers/DataFixer;Laqc;ZLhs;Lcmo;)V + 0 o p_223509_ + 1 o p_223510_ + 2 o p_223511_ + 3 o p_223512_ + 4 o p_223513_ + 5 o p_223514_ + 6 o p_223515_ + 7 o p_223516_ + a (Lclt;Lcom/mojang/serialization/DynamicOps;Ljava/lang/Object;)V m_63801_ + 0 o p_63802_ + 1 o p_63803_ + 2 o p_63804_ + a (Lcom/mojang/serialization/Dynamic;)I m_63805_ + static + 0 o p_63806_ + a (Lclt;I)J m_156627_ + static + 0 o p_156628_ + 1 o p_156629_ + a (Lclt;Ljava/lang/Throwable;)Ljava/util/Optional; m_223524_ + static + 0 o p_223525_ + 1 o p_223526_ + a (JLcom/mojang/serialization/Dynamic;)Ljava/util/Optional; m_223517_ + 0 o p_223518_ + 1 o p_223519_ + a (Lclt;)V m_63796_ + 0 o p_63797_ + a (JZLjava/lang/Object;)V m_223520_ + 0 o p_223521_ + 1 o p_223522_ + 2 o p_223523_ + a ()Z m_202164_ + a (Lclt;Lcom/mojang/serialization/DynamicOps;)Lcom/mojang/serialization/Dynamic; m_63798_ + 0 o p_63799_ + 1 o p_63800_ + a (Ljava/util/function/BooleanSupplier;)V m_6202_ + 0 o p_63812_ + a (J)V m_5838_ + 0 o p_63788_ + a (Ljava/util/Map;Lcom/mojang/serialization/DynamicOps;Ljava/lang/String;Ljava/lang/Object;)V m_223527_ + static + 0 o p_223528_ + 1 o p_223529_ + 2 o p_223530_ + 3 o p_223531_ + b (Lclt;)V m_63814_ + 0 o p_63815_ + b (J)V m_5839_ + 0 o p_63813_ + c (J)Ljava/util/Optional; m_63818_ + 0 o p_63819_ + c (Lclt;)Ljava/util/concurrent/CompletableFuture; m_223532_ + 0 o p_223533_ + close ()V close + d (Lclt;)V m_63825_ + 0 o p_63826_ + d (J)Ljava/util/Optional; m_63823_ + 0 o p_63824_ + e (J)Z m_156630_ + 0 o p_156631_ + f (J)Ljava/lang/Object; m_63827_ + 0 o p_63828_ + g (J)V m_223534_ + 0 o p_223535_ + h (J)V m_223536_ + 0 o p_223537_ + i (J)V m_63833_ + 0 o p_63834_ +dfh net/minecraft/world/level/chunk/storage/package-info +dfi net/minecraft/world/level/dimension/BuiltinDimensionTypes + a f_223538_ + b f_223539_ + c f_223540_ + d f_223541_ + e f_223542_ + f f_223543_ + g f_223544_ + ()V + static + ()V + a (Ljava/lang/String;)Lacp; m_223547_ + static + 0 o p_223548_ +dfj net/minecraft/world/level/dimension/DimensionDefaults + a f_156634_ + b f_156635_ + c f_156636_ + d f_156637_ + e f_156638_ + f f_156639_ + g f_156640_ + h f_156641_ + i f_156642_ + j f_156643_ + k f_156644_ + l f_156645_ + ()V +dfk net/minecraft/world/level/dimension/DimensionType + a f_156649_ + b f_156650_ + c f_156651_ + d f_156652_ + e f_156653_ + f f_188293_ + g f_188294_ + h f_63843_ + i f_63844_ + j f_63853_ + k f_63854_ + l f_223549_ + m f_63856_ + n f_63857_ + o f_63858_ + p f_63859_ + q f_63862_ + r f_63863_ + s f_156647_ + t f_156648_ + u f_63865_ + v f_63836_ + w f_63837_ + x f_63838_ + y f_223550_ + z f_156654_ + ()V + static + (Ljava/util/OptionalLong;ZZZZDZZIIILanl;Lacq;FLdfk$a;)V + 0 o f_63854_ + 1 o f_223549_ + 2 o f_63856_ + 3 o f_63857_ + 4 o f_63858_ + 5 o f_63859_ + 6 o f_63862_ + 7 o f_63863_ + 8 o f_156647_ + 9 o f_156648_ + 10 o f_63865_ + 11 o f_63836_ + 12 o f_63837_ + 13 o f_63838_ + 14 o f_223550_ + a (Ldfk;Ldfk;)D m_63908_ + static + 0 o p_63909_ + 1 o p_63910_ + a ()Z m_63967_ + a (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; m_223567_ + static + 0 o p_223568_ + a (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/DataResult; m_63911_ + static + 0 o p_63912_ + a (Lacp;Ljava/nio/file/Path;)Ljava/nio/file/Path; m_196975_ + static + 0 o p_196976_ + 1 o p_196977_ + a (J)F m_63904_ + 0 o p_63905_ + b ()Z m_63960_ + b (J)I m_63936_ + 0 o p_63937_ + c ()Z m_63963_ + d ()Lbdc; m_223569_ + e ()I m_223570_ + equals (Ljava/lang/Object;)Z equals + 0 o p_223572_ + f ()Ljava/util/OptionalLong; f_63854_ + g ()Z f_223549_ + h ()Z f_63856_ + hashCode ()I hashCode + i ()Z f_63857_ + j ()Z f_63858_ + k ()D f_63859_ + l ()Z f_63862_ + m ()Z f_63863_ + n ()I f_156647_ + o ()I f_156648_ + p ()I f_63865_ + q ()Lanl; f_63836_ + r ()Lacq; f_63837_ + s ()F f_63838_ + t ()Ldfk$a; f_223550_ + toString ()Ljava/lang/String; toString +dfk$a net/minecraft/world/level/dimension/DimensionType$MonsterSettings + a f_223578_ + b f_223579_ + c f_223580_ + d f_223581_ + e f_223582_ + ()V + static + (ZZLbdc;I)V + 0 o f_223579_ + 1 o f_223580_ + 2 o f_223581_ + 3 o f_223582_ + a ()Z f_223579_ + a (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; m_223590_ + static + 0 o p_223591_ + b ()Z f_223580_ + c ()Lbdc; f_223581_ + d ()I f_223582_ + equals (Ljava/lang/Object;)Z equals + 0 o p_223596_ + hashCode ()I hashCode + toString ()Ljava/lang/String; toString +dfl net/minecraft/world/level/dimension/LevelStem + a f_63970_ + b f_63971_ + c f_63972_ + d f_63973_ + e f_63975_ + f f_63976_ + ()V + static + (Lhe;Lddy;)V + 0 o f_63975_ + 1 o f_63976_ + a ()Lhe; f_63975_ + a (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; m_63985_ + static + 0 o p_63986_ + b ()Lddy; f_63976_ + equals (Ljava/lang/Object;)Z equals + 0 o p_249224_ + hashCode ()I hashCode + toString ()Ljava/lang/String; toString +dfm net/minecraft/world/level/dimension/end/DragonRespawnAnimation + a START + b PREPARING_TO_SUMMON_PILLARS + c SUMMONING_PILLARS + d SUMMONING_DRAGON + e END + f $VALUES + ()V + static + (Ljava/lang/String;I)V + 0 o p_63999_ + 1 o p_64000_ + a ()[Ldfm; m_156734_ + static + a (Laif;Ldfn;Ljava/util/List;ILgu;)V m_6363_ + 0 o p_64005_ + 1 o p_64006_ + 2 o p_64007_ + 3 o p_64008_ + 4 o p_64009_ + valueOf (Ljava/lang/String;)Ldfm; valueOf + static + 0 o p_64011_ + values ()[Ldfm; values + static +dfm$1 net/minecraft/world/level/dimension/end/DragonRespawnAnimation$1 + (Ljava/lang/String;I)V + 0 o p_64014_ + 1 o p_64015_ + a (Laif;Ldfn;Ljava/util/List;ILgu;)V m_6363_ + 0 o p_64017_ + 1 o p_64018_ + 2 o p_64019_ + 3 o p_64020_ + 4 o p_64021_ +dfm$2 net/minecraft/world/level/dimension/end/DragonRespawnAnimation$2 + (Ljava/lang/String;I)V + 0 o p_64023_ + 1 o p_64024_ + a (Laif;Ldfn;Ljava/util/List;ILgu;)V m_6363_ + 0 o p_64026_ + 1 o p_64027_ + 2 o p_64028_ + 3 o p_64029_ + 4 o p_64030_ +dfm$3 net/minecraft/world/level/dimension/end/DragonRespawnAnimation$3 + (Ljava/lang/String;I)V + 0 o p_64032_ + 1 o p_64033_ + a (Laif;Ldfn;Ljava/util/List;ILgu;)V m_6363_ + 0 o p_64035_ + 1 o p_64036_ + 2 o p_64037_ + 3 o p_64038_ + 4 o p_64039_ +dfm$4 net/minecraft/world/level/dimension/end/DragonRespawnAnimation$4 + (Ljava/lang/String;I)V + 0 o p_64041_ + 1 o p_64042_ + a (Laif;Ldfn;Ljava/util/List;ILgu;)V m_6363_ + 0 o p_64044_ + 1 o p_64045_ + 2 o p_64046_ + 3 o p_64047_ + 4 o p_64048_ +dfm$5 net/minecraft/world/level/dimension/end/DragonRespawnAnimation$5 + (Ljava/lang/String;I)V + 0 o p_64050_ + 1 o p_64051_ + a (Laif;Ldfn;Ljava/util/List;ILgu;)V m_6363_ + 0 o p_64053_ + 1 o p_64054_ + 2 o p_64055_ + 3 o p_64056_ + 4 o p_64057_ +dfn net/minecraft/world/level/dimension/end/EndDragonFight + A f_64074_ + B f_64075_ + a f_156739_ + b f_156735_ + c f_156736_ + d f_64058_ + e f_156737_ + f f_156738_ + g f_156740_ + h f_156741_ + i f_156742_ + j f_286991_ + k f_64060_ + l f_64061_ + m f_286985_ + n f_64062_ + o f_64063_ + p f_64064_ + q f_64065_ + r f_64066_ + s f_64067_ + t f_64068_ + u f_64069_ + v f_286982_ + w f_64070_ + x f_64071_ + y f_64072_ + z f_64073_ + ()V + static + (Laif;JLdfn$a;Lgu;)V + 0 o p_289771_ + 1 o p_289793_ + 2 o p_289768_ + 3 o p_289794_ + (Laif;JLdfn$a;)V + 0 o p_289759_ + 1 o p_289805_ + 2 o p_289800_ + a (Z)V m_64093_ + 0 o p_64094_ + a (Lhr;)Ljava/util/Optional; m_257345_ + static + 0 o p_258993_ + a (Lbua;Lben;)V m_64082_ + 0 o p_64083_ + 1 o p_64084_ + a (Lgu;Lhe$c;)V m_255387_ + 0 o p_256007_ + 1 o p_256486_ + a ()V m_287277_ + a (J)Ljava/util/List; m_289714_ + static + 0 o p_289757_ + a (Lgu;)V m_64089_ + 0 o p_64090_ + a (Ljava/util/List;)V m_64091_ + 0 o p_64092_ + a (Ldfm;)V m_64087_ + 0 o p_64088_ + a (Lbub;)V m_64085_ + 0 o p_64086_ + b ()Ldfn$a; m_289745_ + b (Lbub;)V m_64096_ + 0 o p_64097_ + c ()V m_64095_ + d ()V m_287238_ + e ()I m_64098_ + f ()Z m_64099_ + g ()V m_64100_ + h ()V m_64101_ + i ()Ljava/util/UUID; m_288211_ + j ()V m_64102_ + k ()V m_64103_ + l ()Z m_64104_ + m ()Ldcg$b; m_64105_ + n ()Z m_64106_ + o ()V m_64107_ + p ()V m_64108_ + q ()V m_64109_ + r ()Lbub; m_64110_ +dfn$a net/minecraft/world/level/dimension/end/EndDragonFight$Data + a f_289707_ + b f_289709_ + c f_289710_ + d f_289711_ + e f_289704_ + f f_289703_ + g f_289702_ + h f_289708_ + i f_289705_ + ()V + static + (ZZZZLjava/util/Optional;Ljava/util/Optional;Ljava/util/Optional;)V + 0 o f_289710_ + 1 o f_289711_ + 2 o f_289704_ + 3 o f_289703_ + 4 o f_289702_ + 5 o f_289708_ + 6 o f_289705_ + a ()Z f_289710_ + a (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; m_289715_ + static + 0 o p_289803_ + b ()Z f_289711_ + c ()Z f_289704_ + d ()Z f_289703_ + e ()Ljava/util/Optional; f_289702_ + equals (Ljava/lang/Object;)Z equals + 0 o p_289779_ + f ()Ljava/util/Optional; f_289708_ + g ()Ljava/util/Optional; f_289705_ + hashCode ()I hashCode + toString ()Ljava/lang/String; toString +dfo net/minecraft/world/level/dimension/end/package-info +dfp net/minecraft/world/level/dimension/package-info +dfq net/minecraft/world/level/entity/ChunkEntities + a f_156786_ + b f_156787_ + (Lclt;Ljava/util/List;)V + 0 o p_156789_ + 1 o p_156790_ + a ()Lclt; m_156791_ + b ()Ljava/util/stream/Stream; m_156792_ + c ()Z m_156793_ +dfr net/minecraft/world/level/entity/ChunkStatusUpdateListener + onChunkStatusChange (Lclt;Lahy;)V m_156794_ + 0 o p_156795_ + 1 o p_287725_ +dfs net/minecraft/world/level/entity/EntityAccess + a (Ldft;)V m_141960_ + 0 o p_156797_ + af ()I m_19879_ + b (Lbfj$c;)V m_142467_ + 0 o p_156798_ + cE ()Leed; m_20191_ + cP ()Ljava/util/stream/Stream; m_20199_ + cQ ()Ljava/util/stream/Stream; m_142429_ + ct ()Ljava/util/UUID; m_20148_ + dG ()Z m_142391_ + dH ()Z m_142389_ + di ()Lgu; m_20183_ +dft net/minecraft/world/level/entity/EntityInLevelCallback + a f_156799_ + ()V + static + a (Lbfj$c;)V m_142472_ + 0 o p_156801_ + a ()V m_142044_ +dft$1 net/minecraft/world/level/entity/EntityInLevelCallback$1 + ()V + a (Lbfj$c;)V m_142472_ + 0 o p_156805_ + a ()V m_142044_ +dfu net/minecraft/world/level/entity/EntityLookup + a f_156806_ + b f_156807_ + c f_156808_ + ()V + static + ()V + a (Ldfs;)V m_156814_ + 0 o p_156815_ + a (Ljava/util/UUID;)Ldfs; m_156819_ + 0 o p_156820_ + a (I)Ldfs; m_156812_ + 0 o p_156813_ + a ()Ljava/lang/Iterable; m_156811_ + a (Ldfz;Lanr;)V m_260822_ + 0 o p_261575_ + 1 o p_261925_ + b ()I m_156821_ + b (Ldfs;)V m_156822_ + 0 o p_156823_ +dfv net/minecraft/world/level/entity/EntityPersistentStorage + a (Ldfq;)V m_141971_ + 0 o p_156825_ + a (Lclt;)Ljava/util/concurrent/CompletableFuture; m_141930_ + 0 o p_156824_ + a (Z)V m_182219_ + 0 o p_182503_ + close ()V close +dfw net/minecraft/world/level/entity/EntitySection + a f_156826_ + b f_156827_ + c f_156828_ + ()V + static + (Ljava/lang/Class;Ldgf;)V + 0 o p_156831_ + 1 o p_156832_ + a (Ldfs;)V m_188346_ + 0 o p_188347_ + a (Ldfz;Leed;Lanr;)Lanr$a; m_188348_ + 0 o p_188349_ + 1 o p_188350_ + 2 o p_261535_ + a ()Z m_156833_ + a (Leed;Lanr;)Lanr$a; m_260830_ + 0 o p_262016_ + 1 o p_261863_ + a (Ldgf;)Ldgf; m_156838_ + 0 o p_156839_ + b (Ldfs;)Z m_188355_ + 0 o p_188356_ + b ()Ljava/util/stream/Stream; m_156845_ + c ()Ldgf; m_156848_ + d ()I m_156849_ +dfx net/minecraft/world/level/entity/EntitySectionStorage + a f_156850_ + b f_156851_ + c f_156852_ + d f_156853_ + (Ljava/lang/Class;Lit/unimi/dsi/fastutil/longs/Long2ObjectFunction;)V + 0 o p_156855_ + 1 o p_156856_ + a (Leed;Lanr;)V m_188362_ + 0 o p_188363_ + 1 o p_261588_ + a (Leed;Lanr;Ldfw;)Lanr$a; m_260794_ + static + 0 o p_261457_ + 1 o p_261458_ + 2 o p_261459_ + a (Lit/unimi/dsi/fastutil/longs/LongSet;J)V m_156884_ + static + 0 o p_156885_ + 1 o p_156886_ + a (II)Lit/unimi/dsi/fastutil/longs/LongSortedSet; m_156858_ + 0 o p_156859_ + 1 o p_156860_ + a (Ldfz;Leed;Lanr;Ldfw;)Lanr$a; m_260795_ + static + 0 o p_261460_ + 1 o p_261461_ + 2 o p_261462_ + 3 o p_261463_ + a (Ldfz;Leed;Lanr;)V m_261191_ + 0 o p_261630_ + 1 o p_261843_ + 2 o p_261742_ + a ()Lit/unimi/dsi/fastutil/longs/LongSet; m_156857_ + a (J)Ljava/util/stream/LongStream; m_156861_ + 0 o p_156862_ + b (Leed;Lanr;)V m_261111_ + 0 o p_261820_ + 1 o p_261992_ + b (J)Ljava/util/stream/Stream; m_156888_ + 0 o p_156889_ + b ()I m_156887_ + c (J)Ldfw; m_156893_ + 0 o p_156894_ + d (J)Ldfw; m_156895_ + 0 o p_156896_ + e (J)V m_156897_ + 0 o p_156898_ + f (J)J m_156899_ + static + 0 o p_156900_ + g (J)Ldfw; m_156901_ + 0 o p_156902_ +dfy net/minecraft/world/level/entity/EntityTickList + a f_156903_ + b f_156904_ + c f_156905_ + ()V + a (Ljava/util/function/Consumer;)V m_156910_ + 0 o p_156911_ + a (Lbfj;)V m_156908_ + 0 o p_156909_ + a ()V m_156907_ + b (Lbfj;)V m_156912_ + 0 o p_156913_ + c (Lbfj;)Z m_156914_ + 0 o p_156915_ +dfz net/minecraft/world/level/entity/EntityTypeTest + a (Ljava/lang/Class;)Ldfz; m_156916_ + static + 0 o p_156917_ + a (Ljava/lang/Object;)Ljava/lang/Object; m_141992_ + 0 o p_156918_ + a ()Ljava/lang/Class; m_142225_ +dfz$1 net/minecraft/world/level/entity/EntityTypeTest$1 + a f_156919_ + (Ljava/lang/Class;)V + 0 o p_156921_ + a (Ljava/lang/Object;)Ljava/lang/Object; m_141992_ + 0 o p_156924_ + a ()Ljava/lang/Class; m_142225_ +dg net/minecraft/advancements/critereon/UsedTotemTrigger + a f_74427_ + ()V + static + ()V + a (Lcfz;Ldg$a;)Z m_74434_ + static + 0 o p_74435_ + 1 o p_74436_ + a ()Lacq; m_7295_ + a (Lcom/google/gson/JsonObject;Lba;Lbe;)Ldg$a; m_7214_ + 0 o p_286841_ + 1 o p_286597_ + 2 o p_286414_ + a (Laig;Lcfz;)V m_74431_ + 0 o p_74432_ + 1 o p_74433_ + b (Lcom/google/gson/JsonObject;Lba;Lbe;)Lar; m_7214_ + 0 o p_286598_ + 1 o p_286404_ + 2 o p_286483_ +dg$a net/minecraft/advancements/critereon/UsedTotemTrigger$TriggerInstance + a f_74446_ + (Lba;Lbz;)V + 0 o p_286406_ + 1 o p_286462_ + a (Lcml;)Ldg$a; m_74452_ + static + 0 o p_74453_ + a (Lct;)Lcom/google/gson/JsonObject; m_7683_ + 0 o p_74455_ + a (Lbz;)Ldg$a; m_163724_ + static + 0 o p_163725_ + a (Lcfz;)Z m_74450_ + 0 o p_74451_ +dga net/minecraft/world/level/entity/LevelCallback + a (Ljava/lang/Object;)V m_214006_ + 0 o p_223609_ + b (Ljava/lang/Object;)V m_141981_ + 0 o p_156925_ + c (Ljava/lang/Object;)V m_141985_ + 0 o p_156926_ + d (Ljava/lang/Object;)V m_141983_ + 0 o p_156927_ + e (Ljava/lang/Object;)V m_141987_ + 0 o p_156928_ + f (Ljava/lang/Object;)V m_141986_ + 0 o p_156929_ + g (Ljava/lang/Object;)V m_141989_ + 0 o p_156930_ +dgb net/minecraft/world/level/entity/LevelEntityGetter + a (Ljava/util/UUID;)Ldfs; m_142694_ + 0 o p_156939_ + a (I)Ldfs; m_142597_ + 0 o p_156931_ + a ()Ljava/lang/Iterable; m_142273_ + a (Ldfz;Lanr;)V m_142690_ + 0 o p_156935_ + 1 o p_261602_ + a (Ldfz;Leed;Lanr;)V m_142137_ + 0 o p_156932_ + 1 o p_156933_ + 2 o p_261542_ + a (Leed;Ljava/util/function/Consumer;)V m_142232_ + 0 o p_156937_ + 1 o p_156938_ +dgc net/minecraft/world/level/entity/LevelEntityGetterAdapter + a f_156940_ + b f_156941_ + (Ldfu;Ldfx;)V + 0 o p_156943_ + 1 o p_156944_ + a (Ljava/util/UUID;)Ldfs; m_142694_ + 0 o p_156959_ + a (I)Ldfs; m_142597_ + 0 o p_156947_ + a ()Ljava/lang/Iterable; m_142273_ + a (Ldfz;Lanr;)V m_142690_ + 0 o p_261718_ + 1 o p_262009_ + a (Ldfz;Leed;Lanr;)V m_142137_ + 0 o p_261696_ + 1 o p_261693_ + 2 o p_261719_ + a (Leed;Ljava/util/function/Consumer;)V m_142232_ + 0 o p_156956_ + 1 o p_156957_ +dgd net/minecraft/world/level/entity/PersistentEntitySectionManager + a f_157490_ + b f_157491_ + c f_157492_ + d f_157493_ + e f_157494_ + f f_157495_ + g f_157496_ + h f_157497_ + i f_157498_ + j f_157499_ + k f_157500_ + ()V + static + (Ljava/lang/Class;Ldga;Ldfv;)V + 0 o p_157503_ + 1 o p_157504_ + 2 o p_157505_ + a (Laob;J)V m_157515_ + 0 o p_157516_ + 1 o p_157517_ + a (Ldfs;Z)Z m_157538_ + 0 o p_157539_ + 1 o p_157540_ + a (Ljava/io/Writer;)V m_157548_ + 0 o p_157549_ + a (Ljava/util/UUID;)Z m_157550_ + 0 o p_157551_ + a (Ldgf;Ldfw;)V m_157543_ + 0 o p_157544_ + 1 o p_157545_ + a (Laob;Ldgd$b;J)V m_157518_ + 0 o p_157519_ + 1 o p_157520_ + 2 o p_157521_ + a (Lgu;)Z m_202167_ + 0 o p_202168_ + a (Lclt;Lahy;)V m_287207_ + 0 o p_287590_ + 1 o p_287623_ + a (Ldfw;)Ljava/util/stream/Stream; m_157541_ + static + 0 o p_157542_ + a (Lclt;Ljava/lang/Throwable;)Ljava/lang/Void; m_157530_ + static + 0 o p_157531_ + 1 o p_157532_ + a (J)Z m_157507_ + 0 o p_157508_ + a (Ldfs;Ldgf;)Ldgf; m_157535_ + static + 0 o p_157536_ + 1 o p_157537_ + a (Lclt;)Z m_202165_ + 0 o p_202166_ + a ()V m_157506_ + a (JLjava/util/function/Consumer;)Z m_157512_ + 0 o p_157513_ + 1 o p_157514_ + a (Ldfs;)Z m_157533_ + 0 o p_157534_ + a (Lclt;Ldgf;)V m_157527_ + 0 o p_157528_ + 1 o p_157529_ + a (JLdfw;)V m_157509_ + 0 o p_157510_ + 1 o p_157511_ + a (Ljava/util/stream/Stream;)V m_157552_ + 0 o p_157553_ + b (Ljava/util/stream/Stream;)V m_157559_ + 0 o p_157560_ + b (J)V m_157555_ + 0 o p_157556_ + b (Ldfs;)Z m_157557_ + 0 o p_157558_ + b ()V m_157554_ + c (Ldfs;)V m_157564_ + 0 o p_157565_ + c ()V m_157561_ + c (J)V m_157562_ + 0 o p_157563_ + close ()V close + d ()Ldgb; m_157567_ + d (J)Z m_157568_ + 0 o p_157569_ + d (Ldfs;)V m_157570_ + 0 o p_157571_ + e ()Ljava/lang/String; m_157572_ + e (J)Z m_157573_ + 0 o p_157574_ + e (Ldfs;)V m_157575_ + 0 o p_157576_ + f (Ldfs;)V m_157580_ + 0 o p_157581_ + f ()V m_157577_ + f (J)V m_157578_ + 0 o p_157579_ + g ()V m_157582_ + g (Ldfs;)V m_157585_ + 0 o p_157586_ + g (J)Z m_157583_ + 0 o p_157584_ + h ()Lit/unimi/dsi/fastutil/longs/LongSet; m_157587_ + h (Ldfs;)V m_157588_ + static + 0 o p_157589_ + i (Ldfs;)V m_157590_ + static + 0 o p_157591_ + j (Ldfs;)V m_157592_ + 0 o p_157593_ + k (Ldfs;)V m_157594_ + 0 o p_157595_ + l (Ldfs;)Z m_157596_ + static + 0 o p_157597_ + m (Ldfs;)Z m_157598_ + static + 0 o p_157599_ + n (Ldfs;)Z m_157600_ + static + 0 o p_157601_ + o (Ldfs;)Z m_157602_ + static + 0 o p_157603_ + p (Ldfs;)V m_157604_ + 0 o p_157605_ + q (Ldfs;)V m_157606_ + 0 o p_157607_ +dgd$a net/minecraft/world/level/entity/PersistentEntitySectionManager$Callback + b f_157608_ + c f_157609_ + d f_157610_ + e f_157611_ + (Ldgd;Ldfs;JLdfw;)V + 0 o p_157613_ + 1 o p_157614_ + 2 o p_157615_ + 3 o p_157616_ + a (Ldgf;Ldgf;)V m_157620_ + 0 o p_157621_ + 1 o p_157622_ + a (Lbfj$c;)V m_142472_ + 0 o p_157619_ + a ()V m_142044_ +dgd$b net/minecraft/world/level/entity/PersistentEntitySectionManager$ChunkLoadStatus + a FRESH + b PENDING + c LOADED + d $VALUES + ()V + static + (Ljava/lang/String;I)V + 0 o p_157629_ + 1 o p_157630_ + a ()[Ldgd$b; m_157631_ + static + valueOf (Ljava/lang/String;)Ldgd$b; valueOf + static + 0 o p_157633_ + values ()[Ldgd$b; values + static +dge net/minecraft/world/level/entity/TransientEntitySectionManager + a f_157635_ + b f_157636_ + c f_157637_ + d f_157638_ + e f_157639_ + f f_157640_ + ()V + static + (Ljava/lang/Class;Ldga;)V + 0 o p_157643_ + 1 o p_157644_ + a (J)Ldgf; m_157646_ + 0 o p_157647_ + a (Lclt;)V m_157651_ + 0 o p_157652_ + a (Ldfs;)V m_157653_ + 0 o p_157654_ + a (JLdfw;)V m_157648_ + 0 o p_157649_ + 1 o p_157650_ + a (Ldfw;)V m_157655_ + 0 o p_157656_ + a ()Ldgb; m_157645_ + b ()I m_157657_ + b (Ldfw;)V m_157662_ + 0 o p_157663_ + b (Lclt;)V m_157658_ + 0 o p_157659_ + b (Ldfs;)Z m_157660_ + static + 0 o p_157661_ + c (Ldfs;)Z m_157665_ + static + 0 o p_157666_ + c ()Ljava/lang/String; m_157664_ +dge$a net/minecraft/world/level/entity/TransientEntitySectionManager$Callback + b f_157667_ + c f_157668_ + d f_157669_ + e f_157670_ + (Ldge;Ldfs;JLdfw;)V + 0 o p_157672_ + 1 o p_157673_ + 2 o p_157674_ + 3 o p_157675_ + a (Lbfj$c;)V m_142472_ + 0 o p_157678_ + a ()V m_142044_ +dgf net/minecraft/world/level/entity/Visibility + a HIDDEN + b TRACKED + c TICKING + d f_157682_ + e f_157683_ + f $VALUES + ()V + static + (Ljava/lang/String;IZZ)V + 0 o p_157687_ + 1 o p_157688_ + 2 o p_157689_ + 3 o p_157690_ + a ()Z m_157691_ + a (Lahy;)Ldgf; m_287140_ + static + 0 o p_287651_ + b ()Z m_157694_ + c ()[Ldgf; m_157695_ + static + valueOf (Ljava/lang/String;)Ldgf; valueOf + static + 0 o p_157697_ + values ()[Ldgf; values + static +dgg net/minecraft/world/level/entity/package-info +dgh net/minecraft/world/level/gameevent/BlockPositionSource + a f_157699_ + c f_157700_ + ()V + static + (Lgu;)V + 0 o p_157703_ + a (Ldgh;)Lgu; m_223610_ + static + 0 o p_223611_ + a ()Ldgq; m_142510_ + a (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; m_157709_ + static + 0 o p_157710_ + a (Lcmm;)Ljava/util/Optional; m_142502_ + 0 o p_157708_ +dgh$a net/minecraft/world/level/gameevent/BlockPositionSource$Type + ()V + a (Lsf;Ldgh;)V m_142235_ + 0 o p_157718_ + 1 o p_157719_ + a ()Lcom/mojang/serialization/Codec; m_142341_ + a (Lsf;Ldgp;)V m_142235_ + 0 o p_157721_ + 1 o p_157722_ + a (Lsf;)Ldgh; m_142281_ + 0 o p_157716_ + b (Lsf;)Ldgp; m_142281_ + 0 o p_157724_ +dgi net/minecraft/world/level/gameevent/DynamicGameEventListener + a f_223612_ + b f_223613_ + (Ldgn;)V + 0 o p_223615_ + a (Laif;Lhx;)V m_223619_ + 0 o p_223620_ + 1 o p_223621_ + a ()Ldgn; m_223616_ + a (Lcmp;Lhx;Ljava/util/function/Consumer;)V m_223622_ + static + 0 o p_223623_ + 1 o p_223624_ + 2 o p_223625_ + a (Ldgo;)V m_245008_ + 0 o p_248451_ + a (Laif;)V m_223617_ + 0 o p_223618_ + b (Laif;)V m_223634_ + 0 o p_223635_ + b (Ldgo;)V m_245009_ + 0 o p_248452_ + c (Ldgo;)V m_245010_ + 0 o p_248453_ + c (Laif;)V m_223641_ + 0 o p_223642_ +dgj net/minecraft/world/level/gameevent/EntityPositionSource + a f_157725_ + c f_223645_ + d f_223646_ + ()V + static + (Lbfj;F)V + 0 o p_223648_ + 1 o p_223649_ + (Lcom/mojang/datafixers/util/Either;F)V + 0 o p_223651_ + 1 o p_223652_ + a (Lcmm;Ljava/util/UUID;)Lbfj; m_223658_ + static + 0 o p_223659_ + 1 o p_223660_ + a (Ljava/util/UUID;Ljava/lang/Float;)Ldgj; m_223671_ + static + 0 o p_223672_ + 1 o p_223673_ + a (Lbfj;)V m_223653_ + 0 o p_223654_ + a ()Ldgq; m_142510_ + a (Ljava/util/UUID;)Ljava/lang/Integer; m_223669_ + static + 0 o p_223670_ + a (Lcom/mojang/datafixers/util/Either;)Ljava/lang/Integer; m_223661_ + static + 0 o p_223662_ + a (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; m_252733_ + static + 0 o p_253607_ + a (Ljava/lang/Integer;)Ljava/util/UUID; m_223667_ + static + 0 o p_223668_ + a (Lcmm;Lcom/mojang/datafixers/util/Either;)Ljava/util/Optional; m_223655_ + static + 0 o p_223656_ + 1 o p_223657_ + a (Ldgj;)Ljava/lang/Float; m_223665_ + static + 0 o p_223666_ + a (Lcmm;)Ljava/util/Optional; m_142502_ + 0 o p_157733_ + b (Lbfj;)Leei; m_223675_ + 0 o p_223676_ + b ()Ljava/util/UUID; m_223674_ + b (Lcom/mojang/datafixers/util/Either;)Ljava/util/UUID; m_223679_ + static + 0 o p_223680_ + b (Lcmm;)V m_223677_ + 0 o p_223678_ + c ()I m_223681_ +dgj$a net/minecraft/world/level/gameevent/EntityPositionSource$Type + ()V + a ()Lcom/mojang/serialization/Codec; m_142341_ + a (Lsf;Ldgj;)V m_142235_ + 0 o p_157743_ + 1 o p_157744_ + a (Lsf;Ldgp;)V m_142235_ + 0 o p_157746_ + 1 o p_157747_ + a (Lsf;)Ldgj; m_142281_ + 0 o p_157741_ + b (Lsf;)Ldgp; m_142281_ + 0 o p_157749_ +dgk net/minecraft/world/level/gameevent/EuclideanGameEventListenerRegistry + b f_244422_ + c f_244308_ + d f_244008_ + e f_244249_ + f f_244607_ + g f_279540_ + h f_279576_ + (Laif;ILdgk$a;)V + 0 o p_281505_ + 1 o p_283450_ + 2 o p_282325_ + a ()Z m_245428_ + a (Laif;Leei;Ldgn;)Ljava/util/Optional; m_247048_ + static + 0 o p_249585_ + 1 o p_251333_ + 2 o p_251051_ + a (Ldgn;)V m_245531_ + 0 o p_248767_ + a (Ldgl;Leei;Ldgl$a;Ldgo$a;)Z m_245521_ + 0 o p_251377_ + 1 o p_251445_ + 2 o p_252317_ + 3 o p_251422_ + b (Ldgn;)V m_246052_ + 0 o p_250006_ +dgk$a net/minecraft/world/level/gameevent/EuclideanGameEventListenerRegistry$OnEmptyAction + apply (I)V m_280077_ + 0 o p_282867_ +dgl net/minecraft/world/level/gameevent/GameEvent + A f_157769_ + B f_157770_ + C f_223696_ + D f_223697_ + E f_223698_ + F f_238690_ + G f_238649_ + H f_157772_ + I f_223699_ + J f_157776_ + K f_157777_ + L f_157778_ + M f_223700_ + N f_157781_ + O f_223701_ + P f_157784_ + Q f_157785_ + R f_157786_ + S f_238175_ + T f_276553_ + U f_276530_ + V f_276691_ + W f_276533_ + X f_276695_ + Y f_276518_ + Z f_276655_ + a f_223702_ + aa f_276494_ + ab f_276419_ + ac f_276431_ + ad f_276621_ + ae f_276548_ + af f_276569_ + ag f_276454_ + ah f_276436_ + ai f_157788_ + aj f_157789_ + ak f_157790_ + al f_204527_ + b f_157791_ + c f_157792_ + d f_157793_ + e f_223703_ + f f_157794_ + g f_157795_ + h f_157796_ + i f_157797_ + j f_157802_ + k f_157803_ + l f_223704_ + m f_157806_ + n f_223705_ + o f_223706_ + p f_223707_ + q f_268533_ + r f_223708_ + s f_268500_ + t f_157810_ + u f_223709_ + v f_223710_ + w f_157811_ + x f_157812_ + y f_157815_ + z f_157816_ + ()V + static + (Ljava/lang/String;I)V + 0 o p_157819_ + 1 o p_157820_ + a (Ljava/lang/String;)Ldgl; m_157822_ + static + 0 o p_157823_ + a (Ljava/lang/String;I)Ldgl; m_157824_ + static + 0 o p_157825_ + 1 o p_157826_ + a ()Ljava/lang/String; m_157821_ + a (Lanl;)Z m_204528_ + 0 o p_204529_ + b ()I m_157827_ + c ()Lhe$c; m_204530_ + toString ()Ljava/lang/String; toString +dgl$a net/minecraft/world/level/gameevent/GameEvent$Context + a f_223711_ + b f_223712_ + (Lbfj;Ldcb;)V + 0 o f_223711_ + 1 o f_223712_ + a ()Lbfj; f_223711_ + a (Ldcb;)Ldgl$a; m_223722_ + static + 0 o p_223723_ + a (Lbfj;Ldcb;)Ldgl$a; m_223719_ + static + 0 o p_223720_ + 1 o p_223721_ + a (Lbfj;)Ldgl$a; m_223717_ + static + 0 o p_223718_ + b ()Ldcb; f_223712_ + equals (Ljava/lang/Object;)Z equals + 0 o p_223726_ + hashCode ()I hashCode + toString ()Ljava/lang/String; toString +dgl$b net/minecraft/world/level/gameevent/GameEvent$ListenerInfo + a f_244497_ + b f_244423_ + c f_244470_ + d f_244568_ + e f_243994_ + (Ldgl;Leei;Ldgl$a;Ldgn;Leei;)V + 0 o p_251490_ + 1 o p_249118_ + 2 o p_251196_ + 3 o p_251701_ + 4 o p_248854_ + a ()Ldgl; m_247303_ + a (Ldgl$b;)I compareTo + 0 o p_249631_ + b ()Leei; m_247585_ + c ()Ldgl$a; m_246300_ + compareTo (Ljava/lang/Object;)I compareTo + 0 o p_252054_ + d ()Ldgn; m_247093_ +dgm net/minecraft/world/level/gameevent/GameEventDispatcher + a f_243917_ + (Laif;)V + 0 o p_251921_ + a (Ljava/util/List;Ldgl;Leei;Ldgl$a;Ldgn;Leei;)V m_246660_ + 0 o p_252323_ + 1 o p_251368_ + 2 o p_248965_ + 3 o p_251276_ + 4 o p_251272_ + 5 o p_248685_ + a (Ljava/util/List;)V m_245095_ + 0 o p_251433_ + a (Ldgl;Leei;Ldgl$a;)V m_245905_ + 0 o p_251754_ + 1 o p_250613_ + 2 o p_251777_ +dgn net/minecraft/world/level/gameevent/GameEventListener + a (Laif;Ldgl;Ldgl$a;Leei;)Z m_214068_ + 0 o p_223757_ + 1 o p_251491_ + 2 o p_249681_ + 3 o p_251048_ + a ()Ldgp; m_142460_ + b ()I m_142078_ + c ()Ldgn$a; m_247514_ +dgn$a net/minecraft/world/level/gameevent/GameEventListener$DeliveryMode + a UNSPECIFIED + b BY_DISTANCE + c $VALUES + ()V + static + (Ljava/lang/String;I)V + 0 o p_249147_ + 1 o p_249637_ + a ()[Ldgn$a; m_245393_ + static + valueOf (Ljava/lang/String;)Ldgn$a; valueOf + static + 0 o p_250916_ + values ()[Ldgn$a; values + static +dgn$b net/minecraft/world/level/gameevent/GameEventListener$Holder + d ()Ldgn; m_280052_ +dgo net/minecraft/world/level/gameevent/GameEventListenerRegistry + a f_244154_ + ()V + static + a ()Z m_245428_ + a (Ldgn;)V m_245531_ + 0 o p_249257_ + a (Ldgl;Leei;Ldgl$a;Ldgo$a;)Z m_245521_ + 0 o p_251001_ + 1 o p_249144_ + 2 o p_249328_ + 3 o p_250123_ + b (Ldgn;)V m_246052_ + 0 o p_248758_ +dgo$1 net/minecraft/world/level/gameevent/GameEventListenerRegistry$1 + ()V + a ()Z m_245428_ + a (Ldgn;)V m_245531_ + 0 o p_251092_ + a (Ldgl;Leei;Ldgl$a;Ldgo$a;)Z m_245521_ + 0 o p_251260_ + 1 o p_249086_ + 2 o p_249012_ + 3 o p_252106_ + b (Ldgn;)V m_246052_ + 0 o p_251937_ +dgo$a net/minecraft/world/level/gameevent/GameEventListenerRegistry$ListenerVisitor + visit (Ldgn;Leei;)V m_247726_ + 0 o p_250787_ + 1 o p_251603_ +dgp net/minecraft/world/level/gameevent/PositionSource + b f_157868_ + ()V + static + a ()Ldgq; m_142510_ + a (Lcmm;)Ljava/util/Optional; m_142502_ + 0 o p_157870_ +dgq net/minecraft/world/level/gameevent/PositionSourceType + a f_157871_ + b f_157872_ + ()V + static + a (Ldgp;Lsf;)V m_157874_ + static + 0 o p_157875_ + 1 o p_157876_ + a ()Lcom/mojang/serialization/Codec; m_142341_ + a (Ljava/lang/String;Ldgq;)Ldgq; m_157877_ + static + 0 o p_157878_ + 1 o p_157879_ + a (Lsf;Ldgp;)V m_142235_ + 0 o p_157880_ + 1 o p_157881_ + a (Lacq;)Ljava/lang/IllegalArgumentException; m_157882_ + static + 0 o p_157883_ + b (Lsf;)Ldgp; m_142281_ + 0 o p_157884_ + c (Lsf;)Ldgp; m_157885_ + static + 0 o p_157886_ +dgr net/minecraft/world/level/gameevent/package-info +dgs net/minecraft/world/level/gameevent/vibrations/VibrationInfo + a f_244481_ + b f_243709_ + c f_243776_ + d f_243906_ + e f_243797_ + f f_243913_ + g f_244048_ + ()V + static + (Ldgl;FLeei;Ljava/util/UUID;Ljava/util/UUID;)V + 0 o p_249055_ + 1 o p_250190_ + 2 o p_251692_ + 3 o p_249849_ + 4 o p_249731_ + (Ldgl;FLeei;Ljava/util/UUID;Ljava/util/UUID;Lbfj;)V + 0 o f_243709_ + 1 o f_243776_ + 2 o f_243906_ + 3 o f_243797_ + 4 o f_243913_ + 5 o f_244048_ + (Ldgl;FLeei;Lbfj;)V + 0 o p_252023_ + 1 o p_251086_ + 2 o p_250935_ + 3 o p_249432_ + a ()Ldgl; f_243709_ + a (Lbfj;)Ljava/util/UUID; m_247625_ + static + 0 o p_251531_ + a (Ldgl;Ljava/lang/Float;Leei;Ljava/util/Optional;Ljava/util/Optional;)Ldgs; m_246457_ + static + 0 o p_249268_ + 1 o p_252231_ + 2 o p_250951_ + 3 o p_250574_ + 4 o p_249661_ + a (Laif;)Ljava/util/Optional; m_246794_ + 0 o p_249184_ + a (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; m_257346_ + static + 0 o p_258994_ + a (Ldgs;)Ljava/util/Optional; m_247424_ + static + 0 o p_250607_ + b (Ldgs;)Ljava/util/Optional; m_247491_ + static + 0 o p_250608_ + b (Laif;)Ljava/util/Optional; m_247126_ + 0 o p_249217_ + b ()F f_243776_ + b (Lbfj;)Lbzg; m_246642_ + static + 0 o p_249388_ + c (Lbfj;)Z m_246490_ + static + 0 o p_249829_ + c (Laif;)Ljava/util/Optional; m_247210_ + 0 o p_251816_ + c ()Leei; f_243906_ + d (Laif;)Ljava/util/Optional; m_245851_ + 0 o p_251545_ + d ()Ljava/util/UUID; f_243797_ + e ()Ljava/util/UUID; f_243913_ + equals (Ljava/lang/Object;)Z equals + 0 o p_249239_ + f ()Lbfj; f_244048_ + hashCode ()I hashCode + toString ()Ljava/lang/String; toString +dgt net/minecraft/world/level/gameevent/vibrations/VibrationSelector + a f_244309_ + b f_244532_ + ()V + static + ()V + (Ljava/util/Optional;J)V + 0 o p_251736_ + 1 o p_251649_ + a (Ldgs;J)V m_247691_ + 0 o p_250149_ + 1 o p_249749_ + a ()V m_246080_ + a (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; m_246723_ + static + 0 o p_249445_ + a (J)Ljava/util/Optional; m_245156_ + 0 o p_250251_ + a (JLdgs;)Lorg/apache/commons/lang3/tuple/Pair; m_245756_ + static + 0 o p_251479_ + 1 o p_251571_ + a (Ldgt;)Ljava/lang/Long; m_246022_ + static + 0 o p_251458_ + b (Ldgs;J)Z m_247012_ + 0 o p_248697_ + 1 o p_249040_ + b (Ldgt;)Ljava/util/Optional; m_246604_ + static + 0 o p_251862_ +dgu net/minecraft/world/level/gameevent/vibrations/VibrationSystem + d_ f_279664_ + e_ f_279561_ + ()V + static + a (Lit/unimi/dsi/fastutil/objects/Object2IntOpenHashMap;)V m_280224_ + static + 0 o p_282267_ + a_ (FI)I m_280007_ + static + 0 o p_282483_ + 1 o p_282722_ + a_ (Ldgl;)I m_280122_ + static + 0 o p_281355_ + b (I)Ldgl; m_280393_ + static + 0 o p_282105_ + gb ()Ldgu$a; m_280002_ + gc ()Ldgu$d; m_280445_ +dgu$a net/minecraft/world/level/gameevent/vibrations/VibrationSystem$Data + a f_279637_ + b f_279525_ + c f_279652_ + d f_279638_ + e f_279593_ + f f_279613_ + ()V + static + (Ldgs;Ldgt;IZ)V + 0 o p_281967_ + 1 o p_283036_ + 2 o p_283607_ + 3 o p_282438_ + ()V + a (I)V m_280178_ + 0 o p_282973_ + a (Ldgs;)V m_280036_ + 0 o p_282049_ + a (Z)V m_280671_ + 0 o p_281702_ + a ()Ldgt; m_280457_ + a (Ldgu$a;)Ljava/util/Optional; m_280609_ + static + 0 o p_281665_ + a (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; m_280067_ + static + 0 o p_283387_ + a (Ljava/util/Optional;Ldgt;Ljava/lang/Integer;)Ldgu$a; m_280562_ + static + 0 o p_281934_ + 1 o p_282381_ + 2 o p_282931_ + b ()Ldgs; m_280602_ + c ()I m_280274_ + d ()V m_280502_ + e ()Z m_280616_ +dgu$b net/minecraft/world/level/gameevent/vibrations/VibrationSystem$Listener + a f_279547_ + (Ldgu;)V + 0 o p_281843_ + a (Laif;Ldgl;Ldgl$a;Leei;)Z m_214068_ + 0 o p_282254_ + 1 o p_283599_ + 2 o p_283664_ + 3 o p_282426_ + a (Laif;Ldgl;Ldgl$a;Leei;Leei;)V m_280268_ + 0 o p_282247_ + 1 o p_283507_ + 2 o p_282620_ + 3 o p_283162_ + 4 o p_281936_ + a (Ldcb;)Z m_280466_ + static + 0 o p_283608_ + a (Laif;Ldgu$a;Ldgl;Ldgl$a;Leei;Leei;)V m_280099_ + 0 o p_282037_ + 1 o p_283229_ + 2 o p_281778_ + 3 o p_283344_ + 4 o p_281758_ + 5 o p_282990_ + a ()Ldgp; m_142460_ + a (Lcmm;Leei;Leei;)Z m_280258_ + static + 0 o p_283225_ + 1 o p_283328_ + 2 o p_283163_ + a (Lgu;Lgu;)F m_280659_ + static + 0 o p_282413_ + 1 o p_281960_ + b (Laif;Ldgl;Ldgl$a;Leei;)V m_280275_ + 0 o p_282808_ + 1 o p_281875_ + 2 o p_281652_ + 3 o p_281530_ + b ()I m_142078_ +dgu$c net/minecraft/world/level/gameevent/vibrations/VibrationSystem$Ticker + a (Laif;Ldgu$a;Ldgu$d;)V m_280634_ + static + 0 o p_282775_ + 1 o p_282792_ + 2 o p_281845_ + a (Ldgu$a;Ldgu$d;Laif;Ldgs;)V m_280257_ + static + 0 o p_281625_ + 1 o p_282561_ + 2 o p_281332_ + 3 o p_282059_ + a (Lcmm;Lgu;)Z m_280446_ + static + 0 o p_282735_ + 1 o p_281722_ + a (Lcmm;Ldgu$a;Ldgu$d;)V m_280259_ + static + 0 o p_281704_ + 1 o p_282633_ + 2 o p_281564_ + a (Laif;Ldgu$a;Ldgu$d;Ldgs;)Z m_280174_ + static + 0 o p_282967_ + 1 o p_283447_ + 2 o p_282301_ + 3 o p_281498_ + b (Laif;Ldgu$a;Ldgu$d;)V m_280404_ + static + 0 o p_282010_ + 1 o p_282354_ + 2 o p_282958_ +dgu$d net/minecraft/world/level/gameevent/vibrations/VibrationSystem$User + a (Laif;Lgu;Ldgl;Ldgl$a;)Z m_280080_ + 0 o p_282960_ + 1 o p_282488_ + 2 o p_282865_ + 3 o p_283577_ + a (F)I m_280576_ + 0 o p_281658_ + a (Ldgl;Ldgl$a;)Z m_280612_ + 0 o p_282750_ + 1 o p_283373_ + a ()I m_280351_ + a (Laif;Lgu;Ldgl;Lbfj;Lbfj;F)V m_280271_ + 0 o p_282148_ + 1 o p_282090_ + 2 o p_283663_ + 3 o p_281578_ + 4 o p_281308_ + 5 o p_281707_ + b ()Ldgp; m_280010_ + c ()Lanl; m_280028_ + d ()Z m_280076_ + e ()V m_280022_ + f ()Z m_280215_ +dgv net/minecraft/world/level/gameevent/vibrations/package-info +dgw net/minecraft/world/level/levelgen/Aquifer + a (Ldhd$b;D)Ldcb; m_207104_ + 0 o p_208158_ + 1 o p_208159_ + a ()Z m_142203_ + a (Ldgw$a;)Ldgw; m_188374_ + static + 0 o p_188375_ + a (Ldho;Lclt;Ldhq;Ldhx;IILdgw$a;)Ldgw; m_223880_ + static + 0 o p_223881_ + 1 o p_223882_ + 2 o p_223883_ + 3 o p_223884_ + 4 o p_223885_ + 5 o p_223886_ + 6 o p_223887_ +dgw$1 net/minecraft/world/level/levelgen/Aquifer$1 + a f_188388_ + (Ldgw$a;)V + 0 o p_188390_ + a (Ldhd$b;D)Ldcb; m_207104_ + 0 o p_208172_ + 1 o p_208173_ + a ()Z m_142203_ +dgw$a net/minecraft/world/level/levelgen/Aquifer$FluidPicker + computeFluid (III)Ldgw$b; m_183538_ + 0 o p_188397_ + 1 o p_188398_ + 2 o p_188399_ +dgw$b net/minecraft/world/level/levelgen/Aquifer$FluidStatus + a f_188400_ + b f_188401_ + (ILdcb;)V + 0 o p_188403_ + 1 o p_188404_ + a (I)Ldcb; m_188405_ + 0 o p_188406_ +dgw$c net/minecraft/world/level/levelgen/Aquifer$NoiseBasedAquifer + A f_158005_ + B f_158006_ + C f_188412_ + a f_157985_ + b f_157986_ + c f_157987_ + d f_157988_ + e f_157989_ + f f_157990_ + g f_157991_ + h f_157992_ + i f_157993_ + j f_196978_ + k f_196979_ + l f_188407_ + m f_157994_ + n f_188408_ + o f_188409_ + p f_157996_ + q f_188410_ + r f_157998_ + s f_157999_ + t f_188411_ + u f_223888_ + v f_223889_ + w f_158000_ + x f_158002_ + y f_158003_ + z f_158004_ + ()V + static + (Ldho;Lclt;Ldhq;Ldhx;IILdgw$a;)V + 0 o p_223891_ + 1 o p_223892_ + 2 o p_223893_ + 3 o p_223894_ + 4 o p_223895_ + 5 o p_223896_ + 6 o p_223897_ + a (Ldhd$b;D)Ldcb; m_207104_ + 0 o p_208186_ + 1 o p_208187_ + a (IIII)I m_223898_ + 0 o p_223899_ + 1 o p_223900_ + 2 o p_223901_ + 3 o p_223902_ + a (III)I m_158027_ + 0 o p_158028_ + 1 o p_158029_ + 2 o p_158030_ + a (I)I m_158039_ + 0 o p_158040_ + a (Ldhd$b;Lorg/apache/commons/lang3/mutable/MutableDouble;Ldgw$b;Ldgw$b;)D m_208188_ + 0 o p_208189_ + 1 o p_208190_ + 2 o p_208191_ + 3 o p_208192_ + a ()Z m_142203_ + a (J)Ldgw$b; m_188445_ + 0 o p_188446_ + a (IIILdgw$b;I)Ldcb; m_223903_ + 0 o p_223904_ + 1 o p_223905_ + 2 o p_223906_ + 3 o p_223907_ + 4 o p_223908_ + a (IIILdgw$b;IZ)I m_223909_ + 0 o p_223910_ + 1 o p_223911_ + 2 o p_223912_ + 3 o p_223913_ + 4 o p_223914_ + 5 o p_223915_ + a (II)D m_158024_ + static + 0 o p_158025_ + 1 o p_158026_ + b (III)Ldgw$b; m_188447_ + 0 o p_188448_ + 1 o p_188449_ + 2 o p_188450_ + b (I)I m_158045_ + 0 o p_158046_ + c (I)I m_158047_ + 0 o p_158048_ +dgx net/minecraft/world/level/levelgen/Beardifier + a f_158060_ + f f_158061_ + g f_158062_ + h f_158065_ + i f_158066_ + ()V + static + (Lit/unimi/dsi/fastutil/objects/ObjectListIterator;Lit/unimi/dsi/fastutil/objects/ObjectListIterator;)V + 0 o p_223917_ + 1 o p_223918_ + a (Lcne;Lclt;)Ldgx; m_223937_ + static + 0 o p_223938_ + 1 o p_223939_ + a (Ldhd$b;)D m_207386_ + 0 o p_208200_ + a (IDI)D m_223921_ + static + 0 o p_223922_ + 1 o p_223923_ + 2 o p_223924_ + a (Ldsa;)Z m_223940_ + static + 0 o p_223941_ + a (IIII)D m_223925_ + static + 0 o p_223926_ + 1 o p_223927_ + 2 o p_223928_ + 3 o p_223929_ + a (Lclt;Lit/unimi/dsi/fastutil/objects/ObjectList;IILit/unimi/dsi/fastutil/objects/ObjectList;Ldsi;)V m_223930_ + static + 0 o p_223931_ + 1 o p_223932_ + 2 o p_223933_ + 3 o p_223934_ + 4 o p_223935_ + 5 o p_223936_ + a ()D m_207402_ + a (III)D m_158083_ + static + 0 o p_158084_ + 1 o p_158085_ + 2 o p_158086_ + a (I)Z m_223919_ + static + 0 o p_223920_ + a ([F)V m_158081_ + static + 0 o p_158082_ + b ()D m_207401_ + b (III)D m_158091_ + static + 0 o p_158092_ + 1 o p_158093_ + 2 o p_158094_ +dgx$1 net/minecraft/world/level/levelgen/Beardifier$1 + a f_223942_ + ()V + static +dgx$a net/minecraft/world/level/levelgen/Beardifier$Rigid + a f_223944_ + b f_223945_ + c f_223946_ + (Ldrs;Ldsl;I)V + 0 o f_223944_ + 1 o f_223945_ + 2 o f_223946_ + a ()Ldrs; f_223944_ + b ()Ldsl; f_223945_ + c ()I f_223946_ + equals (Ljava/lang/Object;)Z equals + 0 o p_223955_ + hashCode ()I hashCode + toString ()Ljava/lang/String; toString +dgy net/minecraft/world/level/levelgen/BelowZeroRetrogen + a f_188455_ + b f_188456_ + c f_188457_ + d f_188458_ + e f_188459_ + f f_196980_ + g f_188460_ + h f_188461_ + ()V + static + (Ldec;Ljava/util/Optional;)V + 0 o p_188464_ + 1 o p_188465_ + a (Ldes;)V m_188474_ + static + 0 o p_188475_ + a (II)Z m_198214_ + 0 o p_198215_ + 1 o p_198216_ + a (Lqr;)Ldgy; m_188485_ + static + 0 o p_188486_ + a (Lcnn;Lddx;)Lcnn; m_204531_ + static + 0 o p_204532_ + 1 o p_204533_ + a (Ljava/util/BitSet;)Ljava/util/stream/LongStream; m_188481_ + static + 0 o p_188482_ + a (Ljava/util/stream/LongStream;)Ljava/util/BitSet; m_188483_ + static + 0 o p_188484_ + a (Ldgy;)Ljava/util/Optional; m_188479_ + static + 0 o p_188480_ + a (Ldec;)Lcom/mojang/serialization/DataResult; m_274282_ + static + 0 o p_275180_ + a (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; m_188470_ + static + 0 o p_188471_ + a (Lcnn;Ljava/util/function/Predicate;Lddx;IIILcnt$f;)Lhe; m_204534_ + static + 0 o p_204535_ + 1 o p_204536_ + 2 o p_204537_ + 3 o p_204538_ + 4 o p_204539_ + 5 o p_204540_ + 6 o p_204541_ + a (Ldes;Lgu;)V m_198217_ + static + 0 o p_198218_ + 1 o p_198219_ + a ()Ldec; m_188466_ + b (Ldes;Lgu;)V m_188490_ + static + 0 o p_188491_ + 1 o p_188492_ + b (Ldes;)V m_198221_ + 0 o p_198222_ + b ()Z m_198220_ + c ()Ljava/lang/String; m_274283_ + static +dgy$1 net/minecraft/world/level/levelgen/BelowZeroRetrogen$1 + ()V + C_ ()I m_141937_ + D_ ()I m_141928_ +dgz net/minecraft/world/level/levelgen/BitRandomSource + b f_188496_ + c f_188497_ + a (I)I m_188503_ + 0 o p_188504_ + c (I)I m_64707_ + 0 o p_188498_ + f ()I m_188502_ + g ()J m_188505_ + h ()Z m_188499_ + i ()F m_188501_ + j ()D m_188500_ +dh net/minecraft/advancements/critereon/UsingItemTrigger + a f_163861_ + ()V + static + ()V + a ()Lacq; m_7295_ + a (Lcfz;Ldh$a;)Z m_163868_ + static + 0 o p_163869_ + 1 o p_163870_ + a (Lcom/google/gson/JsonObject;Lba;Lbe;)Ldh$a; m_7214_ + 0 o p_286642_ + 1 o p_286670_ + 2 o p_286897_ + a (Laig;Lcfz;)V m_163865_ + 0 o p_163866_ + 1 o p_163867_ + b (Lcom/google/gson/JsonObject;Lba;Lbe;)Lar; m_7214_ + 0 o p_286527_ + 1 o p_286890_ + 2 o p_286589_ +dh$a net/minecraft/advancements/critereon/UsingItemTrigger$TriggerInstance + a f_163879_ + (Lba;Lbz;)V + 0 o p_286652_ + 1 o p_286296_ + a (Lbo$a;Lbz$a;)Ldh$a; m_163883_ + static + 0 o p_163884_ + 1 o p_163885_ + a (Lct;)Lcom/google/gson/JsonObject; m_7683_ + 0 o p_163889_ + a (Lcfz;)Z m_163886_ + 0 o p_163887_ +dha net/minecraft/world/level/levelgen/Column + ()V + a (Lcms;Lgu;ILjava/util/function/Predicate;Ljava/util/function/Predicate;)Ljava/util/Optional; m_158175_ + static + 0 o p_158176_ + 1 o p_158177_ + 2 o p_158178_ + 3 o p_158179_ + 4 o p_158180_ + a (Ljava/util/OptionalInt;)Ldha; m_158181_ + 0 o p_158182_ + a (Ljava/util/OptionalInt;Ljava/util/OptionalInt;)Ldha; m_158183_ + static + 0 o p_158184_ + 1 o p_158185_ + a (Lcms;ILjava/util/function/Predicate;Ljava/util/function/Predicate;Lgu$a;ILha;)Ljava/util/OptionalInt; m_158167_ + static + 0 o p_158168_ + 1 o p_158169_ + 2 o p_158170_ + 3 o p_158171_ + 4 o p_158172_ + 5 o p_158173_ + 6 o p_158174_ + a ()Ldha; m_158161_ + static + a (I)Ldha; m_158162_ + static + 0 o p_158163_ + a (II)Ldha$b; m_158164_ + static + 0 o p_158165_ + 1 o p_158166_ + b (Ljava/util/OptionalInt;)Ldha; m_158191_ + 0 o p_158192_ + b ()Ljava/util/OptionalInt; m_142011_ + b (II)Ldha$b; m_158188_ + static + 0 o p_158189_ + 1 o p_158190_ + b (I)Ldha; m_158186_ + static + 0 o p_158187_ + c (I)Ldha; m_158193_ + static + 0 o p_158194_ + c ()Ljava/util/OptionalInt; m_142009_ + d (I)Ldha; m_158195_ + static + 0 o p_158196_ + d ()Ljava/util/OptionalInt; m_142030_ +dha$a net/minecraft/world/level/levelgen/Column$Line + a f_158197_ + ()V + static + ()V + b ()Ljava/util/OptionalInt; m_142011_ + c ()Ljava/util/OptionalInt; m_142009_ + d ()Ljava/util/OptionalInt; m_142030_ + toString ()Ljava/lang/String; toString +dha$b net/minecraft/world/level/levelgen/Column$Range + a f_158204_ + b f_158205_ + (II)V + 0 o p_158207_ + 1 o p_158208_ + b ()Ljava/util/OptionalInt; m_142011_ + c ()Ljava/util/OptionalInt; m_142009_ + d ()Ljava/util/OptionalInt; m_142030_ + e ()I m_158212_ + f ()I m_158213_ + g ()I m_158214_ + toString ()Ljava/lang/String; toString +dha$c net/minecraft/world/level/levelgen/Column$Ray + a f_158216_ + b f_158217_ + (IZ)V + 0 o p_158219_ + 1 o p_158220_ + b ()Ljava/util/OptionalInt; m_142011_ + c ()Ljava/util/OptionalInt; m_142009_ + d ()Ljava/util/OptionalInt; m_142030_ + toString ()Ljava/lang/String; toString +dhb net/minecraft/world/level/levelgen/DebugLevelSource + c f_64111_ + d f_64112_ + e f_64113_ + f f_158225_ + g f_158226_ + h f_158227_ + i f_64114_ + j f_64115_ + k f_64116_ + ()V + static + (Lhe$c;)V + 0 o p_255723_ + a (IILcmo;Ldhy;)Lcmy; m_214184_ + 0 o p_223959_ + 1 o p_223960_ + 2 o p_223961_ + 3 o p_223962_ + a (Lcpn;)Ljava/util/stream/Stream; m_208207_ + static + 0 o p_208208_ + a (Lcng;Lddx;Lcne;)V m_213609_ + 0 o p_223983_ + 1 o p_223984_ + 2 o p_223985_ + a (Laim;Lcne;Ldhy;Lddx;)V m_214194_ + 0 o p_223978_ + 1 o p_223979_ + 2 o p_223980_ + 3 o p_223981_ + a (IILdhk$a;Lcmo;Ldhy;)I m_214096_ + 0 o p_223964_ + 1 o p_223965_ + 2 o p_223966_ + 3 o p_223967_ + 4 o p_223968_ + a (Ljava/util/concurrent/Executor;Ldim;Ldhy;Lcne;Lddx;)Ljava/util/concurrent/CompletableFuture; m_213974_ + 0 o p_223991_ + 1 o p_223992_ + 2 o p_223993_ + 3 o p_223994_ + 4 o p_223995_ + a (Ljava/util/List;Ldhy;Lgu;)V m_213600_ + 0 o p_223987_ + 1 o p_223988_ + 2 o p_223989_ + a ()Lcom/mojang/serialization/Codec; m_6909_ + a (Laim;JLdhy;Lcnm;Lcne;Lddx;Ldhg$a;)V m_213679_ + 0 o p_223970_ + 1 o p_223971_ + 2 o p_223972_ + 3 o p_223973_ + 4 o p_223974_ + 5 o p_223975_ + 6 o p_223976_ + a (II)Ldcb; m_64148_ + static + 0 o p_64149_ + 1 o p_64150_ + a (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; m_254814_ + static + 0 o p_255576_ + a (Laim;)V m_6929_ + 0 o p_188511_ + d ()I m_6331_ + e ()I m_6337_ + f ()I m_142062_ +dhc net/minecraft/world/level/levelgen/Density + a f_188536_ + b f_188537_ + c f_188538_ + ()V +dhd net/minecraft/world/level/levelgen/DensityFunction + b f_208216_ + c f_208217_ + d f_208218_ + ()V + static + a (Ldhd$b;)D m_207386_ + 0 o p_208223_ + a (Ldhd;)Lhe; m_208225_ + static + 0 o p_208226_ + a ()D m_207402_ + a (DD)Ldhd; m_208220_ + 0 o p_208221_ + 1 o p_208222_ + a (Ldhd$f;)Ldhd; m_207456_ + 0 o p_208224_ + a ([DLdhd$a;)V m_207362_ + 0 o p_208227_ + 1 o p_208228_ + b ()D m_207401_ + c ()Laou; m_214023_ + d ()Ldhd; m_208229_ + e ()Ldhd; m_208230_ + f ()Ldhd; m_208231_ + g ()Ldhd; m_208232_ + h ()Ldhd; m_208233_ + i ()Ldhd; m_208234_ +dhd$a net/minecraft/world/level/levelgen/DensityFunction$ContextProvider + a (I)Ldhd$b; m_207263_ + 0 o p_208235_ + a ([DLdhd;)V m_207207_ + 0 o p_208236_ + 1 o p_208237_ +dhd$b net/minecraft/world/level/levelgen/DensityFunction$FunctionContext + a ()I m_207115_ + b ()I m_207114_ + c ()I m_207113_ + d ()Ldim; m_188743_ +dhd$c net/minecraft/world/level/levelgen/DensityFunction$NoiseHolder + a f_223996_ + b f_223997_ + c f_223998_ + ()V + static + (Lhe;)V + 0 o p_224001_ + (Lhe;Ldwh;)V + 0 o f_223997_ + 1 o f_223998_ + a (DDD)D m_224006_ + 0 o p_224007_ + 1 o p_224008_ + 2 o p_224009_ + a (Lhe;)Ldhd$c; m_224010_ + static + 0 o p_224011_ + a ()D m_224005_ + b ()Lhe; f_223997_ + c ()Ldwh; f_223998_ + equals (Ljava/lang/Object;)Z equals + 0 o p_224015_ + hashCode ()I hashCode + toString ()Ljava/lang/String; toString +dhd$d net/minecraft/world/level/levelgen/DensityFunction$SimpleFunction + a (Ldhd$f;)Ldhd; m_207456_ + 0 o p_208239_ + a ([DLdhd$a;)V m_207362_ + 0 o p_208241_ + 1 o p_208242_ +dhd$e net/minecraft/world/level/levelgen/DensityFunction$SinglePointContext + a f_208243_ + b f_208244_ + c f_208245_ + (III)V + 0 o f_208243_ + 1 o f_208244_ + 2 o f_208245_ + a ()I m_207115_ + b ()I m_207114_ + c ()I m_207113_ + equals (Ljava/lang/Object;)Z equals + 0 o p_208254_ + hashCode ()I hashCode + toString ()Ljava/lang/String; toString +dhd$f net/minecraft/world/level/levelgen/DensityFunction$Visitor + a (Ldhd$c;)Ldhd$c; m_213918_ + 0 o p_224018_ + apply (Ldhd;)Ldhd; m_214017_ + 0 o p_224019_ +dhe net/minecraft/world/level/levelgen/DensityFunctions + a f_208257_ + b f_208258_ + c f_208259_ + d f_208260_ + ()V + static + ()V + a (Lcom/mojang/datafixers/util/Either;)Ldhd; m_224022_ + static + 0 o p_224023_ + a (D)Ldhd; m_208264_ + static + 0 o p_208265_ + a (Ldhd;DLdhd;)Ldhd; m_224030_ + static + 0 o p_224031_ + 1 o p_224032_ + 2 o p_224033_ + a (Lhe;D)Ldhd; m_208324_ + static + 0 o p_208325_ + 1 o p_208326_ + a (Ljava/util/function/BiFunction;Ljava/util/function/Function;Ljava/util/function/Function;)Laou; m_224038_ + static + 0 o p_224039_ + 1 o p_224040_ + 2 o p_224041_ + a (Lcom/mojang/serialization/MapCodec;)Laou; m_224028_ + static + 0 o p_224029_ + a (Ljava/util/function/Function;Ljava/util/function/Function;)Laou; m_224042_ + static + 0 o p_224043_ + 1 o p_224044_ + a (Laod;)Ldhd; m_224020_ + static + 0 o p_224021_ + a (Ldhd;Lhe;Ldhe$z$a;)Ldhd; m_208315_ + static + 0 o p_208316_ + 1 o p_208317_ + 2 o p_208318_ + a (Ljava/util/function/Function;Ljava/util/function/Function;Ljava/util/function/BiFunction;Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; m_224045_ + static + 0 o p_224046_ + 1 o p_224047_ + 2 o p_224048_ + 3 o p_224049_ + a (Lhr;Ljava/lang/String;Laou;)Lcom/mojang/serialization/Codec; m_224034_ + static + 0 o p_224035_ + 1 o p_224036_ + 2 o p_224037_ + a ()Ldhd; m_208263_ + static + a (Ldhd;)Ldhd; m_208281_ + static + 0 o p_208282_ + a (J)Ldhd; m_208271_ + static + 0 o p_208272_ + a (Lhr;)Lcom/mojang/serialization/Codec; m_208342_ + static + 0 o p_208343_ + a (Lhe;DD)Ldhd; m_208327_ + static + 0 o p_208328_ + 1 o p_208329_ + 2 o p_208330_ + a (Ldhd;DDLdhd;Ldhd;)Ldhd; m_208287_ + static + 0 o p_208288_ + 1 o p_208289_ + 2 o p_208290_ + 3 o p_208291_ + 4 o p_208292_ + a (IIDD)Ldhd; m_208266_ + static + 0 o p_208267_ + 1 o p_208268_ + 2 o p_208269_ + 3 o p_208270_ + a (Ldhd;Ldhd;)Ldhd; m_208293_ + static + 0 o p_208294_ + 1 o p_208295_ + a (Lhe;DDDD)Ldhd; m_208336_ + static + 0 o p_208337_ + 1 o p_208338_ + 2 o p_208339_ + 3 o p_208340_ + 4 o p_208341_ + a (Ldhd;Ldhd;DLhe;)Ldhd; m_208296_ + static + 0 o p_208297_ + 1 o p_208298_ + 2 o p_208299_ + 3 o p_208300_ + a (Ldhd;Ldhe$k$a;)Ldhd; m_208312_ + static + 0 o p_208313_ + 1 o p_208314_ + a (Lhe;DDD)Ldhd; m_208331_ + static + 0 o p_208332_ + 1 o p_208333_ + 2 o p_208334_ + 3 o p_208335_ + a (Lhe;)Ldhd; m_208322_ + static + 0 o p_208323_ + a (Ldhd;Ldhd;Ldhd;)Ldhd; m_208301_ + static + 0 o p_208302_ + 1 o p_208303_ + 2 o p_208304_ + a (Lcom/mojang/serialization/Codec;Ljava/util/function/Function;Ljava/util/function/Function;)Laou; m_224024_ + static + 0 o p_224025_ + 1 o p_224026_ + 2 o p_224027_ + a (Ldhd;DD)Ldhd; m_208283_ + static + 0 o p_208284_ + 1 o p_208285_ + 2 o p_208286_ + b (Ldhd;Ldhd;)Ldhd; m_208363_ + static + 0 o p_208364_ + 1 o p_208365_ + b (Ldhd;)Ldhd; m_208361_ + static + 0 o p_208362_ + b (Lhe;)Ldhd; m_208366_ + static + 0 o p_208367_ + b ()Ldhd; m_208360_ + static + b (Lhe;DD)Ldhd; m_208368_ + static + 0 o p_208369_ + 1 o p_208370_ + 2 o p_208371_ + c (Ldhd;Ldhd;)Ldhd; m_208375_ + static + 0 o p_208376_ + 1 o p_208377_ + c (Lhe;)Ldhd; m_208378_ + static + 0 o p_208379_ + c ()Ldhd; m_208372_ + static + c (Ldhd;)Ldhd; m_208373_ + static + 0 o p_208374_ + d (Lhe;)Ldhd; m_208385_ + static + 0 o p_208386_ + d (Ldhd;Ldhd;)Ldhd; m_208382_ + static + 0 o p_208383_ + 1 o p_208384_ + d (Ldhd;)Ldhd; m_208380_ + static + 0 o p_208381_ + e (Ldhd;)Ldhd; m_208387_ + static + 0 o p_208388_ + f (Ldhd;)Ldhd; m_208389_ + static + 0 o p_208390_ + g (Ldhd;)Lcom/mojang/datafixers/util/Either; m_224050_ + static + 0 o p_224051_ + h (Ldhd;)Lcom/mojang/serialization/Codec; m_224052_ + static + 0 o p_224053_ +dhe$1 net/minecraft/world/level/levelgen/DensityFunctions$1 + a f_208393_ + b f_208394_ + c f_208395_ + ()V + static +dhe$a net/minecraft/world/level/levelgen/DensityFunctions$Ap2 + e f_208397_ + f f_208398_ + g f_208399_ + h f_208400_ + i f_208401_ + (Ldhe$y$a;Ldhd;Ldhd;DD)V + 0 o f_208397_ + 1 o f_208398_ + 2 o f_208399_ + 3 o f_208400_ + 4 o f_208401_ + a (Ldhd$b;)D m_207386_ + 0 o p_208410_ + a (Ldhd$f;)Ldhd; m_207456_ + 0 o p_208412_ + a ([DLdhd$a;)V m_207362_ + 0 o p_208414_ + 1 o p_208415_ + a ()D m_207402_ + b ()D m_207401_ + equals (Ljava/lang/Object;)Z equals + 0 o p_208418_ + hashCode ()I hashCode + j ()Ldhe$y$a; m_207119_ + k ()Ldhd; m_207185_ + l ()Ldhd; m_207190_ + toString ()Ljava/lang/String; toString +dhe$aa net/minecraft/world/level/levelgen/DensityFunctions$YClampedGradient + a f_208480_ + e f_208481_ + f f_208482_ + g f_208483_ + h f_208484_ + i f_208485_ + ()V + static + (IIDD)V + 0 o f_208481_ + 1 o f_208482_ + 2 o f_208483_ + 3 o f_208484_ + a (Ldhd$b;)D m_207386_ + 0 o p_208496_ + a ()D m_207402_ + a (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; m_208493_ + static + 0 o p_208494_ + b ()D m_207401_ + c ()Laou; m_214023_ + equals (Ljava/lang/Object;)Z equals + 0 o p_208500_ + hashCode ()I hashCode + j ()I f_208481_ + k ()I f_208482_ + l ()D f_208483_ + m ()D f_208484_ + toString ()Ljava/lang/String; toString +dhe$b net/minecraft/world/level/levelgen/DensityFunctions$BeardifierMarker + a INSTANCE + f $VALUES + ()V + static + (Ljava/lang/String;I)V + 0 o p_208511_ + 1 o p_208512_ + a (Ldhd$b;)D m_207386_ + 0 o p_208515_ + a ([DLdhd$a;)V m_207362_ + 0 o p_208517_ + 1 o p_208518_ + a ()D m_207402_ + b ()D m_207401_ + j ()[Ldhe$b; m_208520_ + static + valueOf (Ljava/lang/String;)Ldhe$b; valueOf + static + 0 o p_208522_ + values ()[Ldhe$b; values + static +dhe$c net/minecraft/world/level/levelgen/DensityFunctions$BeardifierOrMarker + e f_208524_ + ()V + static + c ()Laou; m_214023_ +dhe$d net/minecraft/world/level/levelgen/DensityFunctions$BlendAlpha + a INSTANCE + e f_208528_ + f $VALUES + ()V + static + (Ljava/lang/String;I)V + 0 o p_208532_ + 1 o p_208533_ + a (Ldhd$b;)D m_207386_ + 0 o p_208536_ + a ([DLdhd$a;)V m_207362_ + 0 o p_208538_ + 1 o p_208539_ + a ()D m_207402_ + b ()D m_207401_ + c ()Laou; m_214023_ + j ()[Ldhe$d; m_208542_ + static + valueOf (Ljava/lang/String;)Ldhe$d; valueOf + static + 0 o p_208544_ + values ()[Ldhe$d; values + static +dhe$e net/minecraft/world/level/levelgen/DensityFunctions$BlendDensity + a f_208546_ + e f_208547_ + ()V + static + (Ldhd;)V + 0 o f_208546_ + a (Ldhd$b;D)D m_207219_ + 0 o p_208553_ + 1 o p_208554_ + a (Ldhd$f;)Ldhd; m_207456_ + 0 o p_208556_ + a ()D m_207402_ + b ()D m_207401_ + c ()Laou; m_214023_ + equals (Ljava/lang/Object;)Z equals + 0 o p_208560_ + hashCode ()I hashCode + j ()Ldhd; m_207189_ + toString ()Ljava/lang/String; toString +dhe$f net/minecraft/world/level/levelgen/DensityFunctions$BlendOffset + a INSTANCE + e f_208565_ + f $VALUES + ()V + static + (Ljava/lang/String;I)V + 0 o p_208569_ + 1 o p_208570_ + a (Ldhd$b;)D m_207386_ + 0 o p_208573_ + a ([DLdhd$a;)V m_207362_ + 0 o p_208575_ + 1 o p_208576_ + a ()D m_207402_ + b ()D m_207401_ + c ()Laou; m_214023_ + j ()[Ldhe$f; m_208579_ + static + valueOf (Ljava/lang/String;)Ldhe$f; valueOf + static + 0 o p_208581_ + values ()[Ldhe$f; values + static +dhe$g net/minecraft/world/level/levelgen/DensityFunctions$Clamp + a f_208583_ + e f_208584_ + f f_208585_ + g f_208586_ + h f_208587_ + ()V + static + (Ldhd;DD)V + 0 o f_208584_ + 1 o f_208585_ + 2 o f_208586_ + a (D)D m_207382_ + 0 o p_208595_ + a (Ldhd$f;)Ldhd; m_207456_ + 0 o p_208599_ + a (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; m_208596_ + static + 0 o p_208597_ + a ()D m_207402_ + as_ ()Ldhd; m_207305_ + b ()D m_207401_ + c ()Laou; m_214023_ + equals (Ljava/lang/Object;)Z equals + 0 o p_208604_ + hashCode ()I hashCode + toString ()Ljava/lang/String; toString +dhe$h net/minecraft/world/level/levelgen/DensityFunctions$Constant + a f_208607_ + e f_208608_ + f f_208609_ + ()V + static + (D)V + 0 o f_208607_ + a (Ldhd$b;)D m_207386_ + 0 o p_208615_ + a ([DLdhd$a;)V m_207362_ + 0 o p_208617_ + 1 o p_208618_ + a ()D m_207402_ + b ()D m_207401_ + c ()Laou; m_214023_ + equals (Ljava/lang/Object;)Z equals + 0 o p_208622_ + hashCode ()I hashCode + j ()D f_208607_ + toString ()Ljava/lang/String; toString +dhe$i net/minecraft/world/level/levelgen/DensityFunctions$EndIslandDensityFunction + a f_208626_ + e f_224061_ + f f_208627_ + ()V + static + (J)V + 0 o p_208630_ + a (Ldwk;II)F m_224062_ + static + 0 o p_224063_ + 1 o p_224064_ + 2 o p_224065_ + a (Ldhd$b;)D m_207386_ + 0 o p_208633_ + a ()D m_207402_ + b ()D m_207401_ + c ()Laou; m_214023_ +dhe$j net/minecraft/world/level/levelgen/DensityFunctions$HolderHolder + a f_208636_ + (Lhe;)V + 0 o f_208636_ + a (Ldhd$b;)D m_207386_ + 0 o p_208641_ + a (Ldhd$f;)Ldhd; m_207456_ + 0 o p_208643_ + a ([DLdhd$a;)V m_207362_ + 0 o p_208645_ + 1 o p_208646_ + a ()D m_207402_ + b ()D m_207401_ + c ()Laou; m_214023_ + equals (Ljava/lang/Object;)Z equals + 0 o p_208650_ + hashCode ()I hashCode + j ()Lhe; f_208636_ + toString ()Ljava/lang/String; toString +dhe$k net/minecraft/world/level/levelgen/DensityFunctions$Mapped + a f_208654_ + e f_208655_ + f f_208656_ + g f_208657_ + (Ldhe$k$a;Ldhd;DD)V + 0 o f_208654_ + 1 o f_208655_ + 2 o f_208656_ + 3 o f_208657_ + a (Ldhe$k$a;Ldhd;)Ldhe$k; m_208671_ + static + 0 o p_208672_ + 1 o p_208673_ + a ()D m_207402_ + a (D)D m_207382_ + 0 o p_208665_ + a (Ldhe$k$a;D)D m_208668_ + static + 0 o p_208669_ + 1 o p_208670_ + a (Ldhd$f;)Ldhd; m_207456_ + 0 o p_208667_ + as_ ()Ldhd; m_207305_ + b (Ldhd$f;)Ldhe$k; m_207456_ + 0 o p_208677_ + b ()D m_207401_ + c ()Laou; m_214023_ + equals (Ljava/lang/Object;)Z equals + 0 o p_208680_ + hashCode ()I hashCode + k ()Ldhe$k$a; f_208654_ + toString ()Ljava/lang/String; toString +dhe$k$a net/minecraft/world/level/levelgen/DensityFunctions$Mapped$Type + a ABS + b SQUARE + c CUBE + d HALF_NEGATIVE + e QUARTER_NEGATIVE + f SQUEEZE + g f_208690_ + h f_208691_ + i $VALUES + ()V + static + (Ljava/lang/String;ILjava/lang/String;)V + 0 o p_208695_ + 1 o p_208696_ + 2 o p_208697_ + a (Ldhd;)Ldhe$k; m_208699_ + 0 o p_208700_ + a ()[Ldhe$k$a; m_208698_ + static + c ()Ljava/lang/String; m_7912_ + valueOf (Ljava/lang/String;)Ldhe$k$a; valueOf + static + 0 o p_208703_ + values ()[Ldhe$k$a; values + static +dhe$l net/minecraft/world/level/levelgen/DensityFunctions$Marker + a f_208705_ + e f_208706_ + (Ldhe$l$a;Ldhd;)V + 0 o f_208705_ + 1 o f_208706_ + a (Ldhd$b;)D m_207386_ + 0 o p_208712_ + a ([DLdhd$a;)V m_207362_ + 0 o p_208716_ + 1 o p_208717_ + a ()D m_207402_ + b ()D m_207401_ + equals (Ljava/lang/Object;)Z equals + 0 o p_208720_ + hashCode ()I hashCode + j ()Ldhe$l$a; m_207136_ + k ()Ldhd; m_207056_ + toString ()Ljava/lang/String; toString +dhe$l$a net/minecraft/world/level/levelgen/DensityFunctions$Marker$Type + a Interpolated + b FlatCache + c Cache2D + d CacheOnce + e CacheAllInCell + f f_208730_ + g f_208731_ + h $VALUES + ()V + static + (Ljava/lang/String;ILjava/lang/String;)V + 0 o p_208735_ + 1 o p_208736_ + 2 o p_208737_ + a ()[Ldhe$l$a; m_208738_ + static + a (Ldhd;)Ldhe$m; m_208739_ + 0 o p_208740_ + c ()Ljava/lang/String; m_7912_ + valueOf (Ljava/lang/String;)Ldhe$l$a; valueOf + static + 0 o p_208743_ + values ()[Ldhe$l$a; values + static +dhe$m net/minecraft/world/level/levelgen/DensityFunctions$MarkerOrMarked + a (Ldhd$f;)Ldhd; m_207456_ + 0 o p_224070_ + c ()Laou; m_214023_ + j ()Ldhe$l$a; m_207136_ + k ()Ldhd; m_207056_ +dhe$n net/minecraft/world/level/levelgen/DensityFunctions$MulOrAdd + e f_208746_ + f f_208747_ + g f_208748_ + h f_208749_ + i f_208750_ + (Ldhe$n$a;Ldhd;DDD)V + 0 o f_208746_ + 1 o f_208747_ + 2 o f_208748_ + 3 o f_208749_ + 4 o f_208750_ + a ()D m_207402_ + a (D)D m_207382_ + 0 o p_208759_ + a (Ldhd$f;)Ldhd; m_207456_ + 0 o p_208761_ + as_ ()Ldhd; m_207305_ + b ()D m_207401_ + equals (Ljava/lang/Object;)Z equals + 0 o p_208765_ + hashCode ()I hashCode + j ()Ldhe$y$a; m_207119_ + k ()Ldhd; m_207185_ + l ()Ldhd; m_207190_ + m ()Ldhe$n$a; f_208746_ + n ()D f_208750_ + toString ()Ljava/lang/String; toString +dhe$n$a net/minecraft/world/level/levelgen/DensityFunctions$MulOrAdd$Type + a MUL + b ADD + c $VALUES + ()V + static + (Ljava/lang/String;I)V + 0 o p_208778_ + 1 o p_208779_ + a ()[Ldhe$n$a; m_208780_ + static + valueOf (Ljava/lang/String;)Ldhe$n$a; valueOf + static + 0 o p_208782_ + values ()[Ldhe$n$a; values + static +dhe$o net/minecraft/world/level/levelgen/DensityFunctions$Noise + a f_208784_ + e f_208785_ + f f_208787_ + g f_208788_ + h f_208789_ + ()V + static + (Ldhd$c;DD)V + 0 o f_208787_ + 1 o f_208788_ + 2 o f_208789_ + a (Ldhd$b;)D m_207386_ + 0 o p_208800_ + a ()D m_207402_ + a (Ldhd$f;)Ldhd; m_207456_ + 0 o p_224077_ + a ([DLdhd$a;)V m_207362_ + 0 o p_224079_ + 1 o p_224080_ + a (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; m_208797_ + static + 0 o p_208798_ + b ()D m_207401_ + c ()Laou; m_214023_ + equals (Ljava/lang/Object;)Z equals + 0 o p_208808_ + hashCode ()I hashCode + j ()Ldhd$c; f_208787_ + k ()D f_208788_ + l ()D f_208789_ + toString ()Ljava/lang/String; toString +dhe$p net/minecraft/world/level/levelgen/DensityFunctions$PureTransformer + a (Ldhd$b;)D m_207386_ + 0 o p_208817_ + a (D)D m_207382_ + 0 o p_208815_ + a ([DLdhd$a;)V m_207362_ + 0 o p_208819_ + 1 o p_208820_ + as_ ()Ldhd; m_207305_ +dhe$q net/minecraft/world/level/levelgen/DensityFunctions$RangeChoice + a f_208821_ + e f_208822_ + f f_208823_ + g f_208824_ + h f_208825_ + i f_208826_ + j f_208827_ + ()V + static + (Ldhd;DDLdhd;Ldhd;)V + 0 o f_208823_ + 1 o f_208824_ + 2 o f_208825_ + 3 o f_208826_ + 4 o f_208827_ + a (Ldhd$b;)D m_207386_ + 0 o p_208839_ + a ()D m_207402_ + a (Ldhd$f;)Ldhd; m_207456_ + 0 o p_208841_ + a ([DLdhd$a;)V m_207362_ + 0 o p_208843_ + 1 o p_208844_ + a (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; m_208836_ + static + 0 o p_208837_ + b ()D m_207401_ + c ()Laou; m_214023_ + equals (Ljava/lang/Object;)Z equals + 0 o p_208848_ + hashCode ()I hashCode + j ()Ldhd; f_208823_ + k ()D f_208824_ + l ()D f_208825_ + m ()Ldhd; f_208826_ + n ()Ldhd; f_208827_ + toString ()Ljava/lang/String; toString +dhe$r net/minecraft/world/level/levelgen/DensityFunctions$Shift + a f_208857_ + e f_208858_ + ()V + static + (Ldhd$c;)V + 0 o f_208857_ + a (Ldhd$b;)D m_207386_ + 0 o p_208864_ + a (Ldhd$f;)Ldhd; m_207456_ + 0 o p_224087_ + c ()Laou; m_214023_ + equals (Ljava/lang/Object;)Z equals + 0 o p_208871_ + hashCode ()I hashCode + j ()Ldhd$c; m_214040_ + toString ()Ljava/lang/String; toString +dhe$s net/minecraft/world/level/levelgen/DensityFunctions$ShiftA + a f_208877_ + e f_208878_ + ()V + static + (Ldhd$c;)V + 0 o f_208877_ + a (Ldhd$b;)D m_207386_ + 0 o p_208884_ + a (Ldhd$f;)Ldhd; m_207456_ + 0 o p_224093_ + c ()Laou; m_214023_ + equals (Ljava/lang/Object;)Z equals + 0 o p_208891_ + hashCode ()I hashCode + j ()Ldhd$c; m_214040_ + toString ()Ljava/lang/String; toString +dhe$t net/minecraft/world/level/levelgen/DensityFunctions$ShiftB + a f_208897_ + e f_208898_ + ()V + static + (Ldhd$c;)V + 0 o f_208897_ + a (Ldhd$b;)D m_207386_ + 0 o p_208904_ + a (Ldhd$f;)Ldhd; m_207456_ + 0 o p_224099_ + c ()Laou; m_214023_ + equals (Ljava/lang/Object;)Z equals + 0 o p_208911_ + hashCode ()I hashCode + j ()Ldhd$c; m_214040_ + toString ()Ljava/lang/String; toString +dhe$u net/minecraft/world/level/levelgen/DensityFunctions$ShiftNoise + a (DDD)D m_208917_ + 0 o p_208918_ + 1 o p_208919_ + 2 o p_208920_ + a ([DLdhd$a;)V m_207362_ + 0 o p_224103_ + 1 o p_224104_ + a ()D m_207402_ + b ()D m_207401_ + j ()Ldhd$c; m_214040_ +dhe$v net/minecraft/world/level/levelgen/DensityFunctions$ShiftedNoise + a f_208923_ + e f_208924_ + f f_208925_ + g f_208926_ + h f_208927_ + i f_208928_ + j f_208930_ + k f_208931_ + ()V + static + (Ldhd;Ldhd;Ldhd;DDLdhd$c;)V + 0 o f_208924_ + 1 o f_208925_ + 2 o f_208926_ + 3 o f_208927_ + 4 o f_208928_ + 5 o f_208930_ + a (Ldhd$b;)D m_207386_ + 0 o p_208945_ + a ()D m_207402_ + a (Ldhd$f;)Ldhd; m_207456_ + 0 o p_208947_ + a ([DLdhd$a;)V m_207362_ + 0 o p_208956_ + 1 o p_208957_ + a (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; m_208942_ + static + 0 o p_208943_ + b ()D m_207401_ + c ()Laou; m_214023_ + equals (Ljava/lang/Object;)Z equals + 0 o p_208961_ + hashCode ()I hashCode + j ()Ldhd; f_208924_ + k ()Ldhd; f_208925_ + l ()Ldhd; f_208926_ + m ()D f_208927_ + n ()D f_208928_ + o ()Ldhd$c; f_208930_ + toString ()Ljava/lang/String; toString +dhe$w net/minecraft/world/level/levelgen/DensityFunctions$Spline + a f_211701_ + e f_211702_ + f f_224114_ + g f_211705_ + ()V + static + (Laod;)V + 0 o f_211702_ + a (Ldhd$b;)D m_207386_ + 0 o p_211715_ + a ()D m_207402_ + a (Ldhd$f;)Ldhd; m_207456_ + 0 o p_211717_ + a ([DLdhd$a;)V m_207362_ + 0 o p_211722_ + 1 o p_211723_ + a (Ldhd$f;Ldhe$w$a;)Ldhe$w$a; m_224117_ + static + 0 o p_224118_ + 1 o p_224119_ + b ()D m_207401_ + c ()Laou; m_214023_ + equals (Ljava/lang/Object;)Z equals + 0 o p_211727_ + hashCode ()I hashCode + j ()Laod; f_211702_ + toString ()Ljava/lang/String; toString +dhe$w$a net/minecraft/world/level/levelgen/DensityFunctions$Spline$Coordinate + b f_224121_ + c f_224122_ + ()V + static + (Lhe;)V + 0 o f_224122_ + a ()Lhe; f_224122_ + a (Ldhe$w$b;)F m_183321_ + 0 o p_224130_ + a (Ldhd$f;)Ldhe$w$a; m_224127_ + 0 o p_224128_ + a (Ljava/lang/Object;)F m_183321_ + 0 o p_224132_ + b ()F m_213850_ + c ()F m_213849_ + equals (Ljava/lang/Object;)Z equals + 0 o p_224136_ + hashCode ()I hashCode + toString ()Ljava/lang/String; toString +dhe$w$b net/minecraft/world/level/levelgen/DensityFunctions$Spline$Point + a f_224139_ + (Ldhd$b;)V + 0 o f_224139_ + a ()Ldhd$b; f_224139_ + equals (Ljava/lang/Object;)Z equals + 0 o p_224144_ + hashCode ()I hashCode + toString ()Ljava/lang/String; toString +dhe$x net/minecraft/world/level/levelgen/DensityFunctions$TransformerWithContext + a (Ldhd$b;)D m_207386_ + 0 o p_209065_ + a (Ldhd$b;D)D m_207219_ + 0 o p_209066_ + 1 o p_209067_ + a ([DLdhd$a;)V m_207362_ + 0 o p_209069_ + 1 o p_209070_ + j ()Ldhd; m_207189_ +dhe$y net/minecraft/world/level/levelgen/DensityFunctions$TwoArgumentSimpleFunction + a f_209071_ + ()V + static + a (Ldhe$y$a;Ldhd;Ldhd;)Ldhe$y; m_209073_ + static + 0 o p_209074_ + 1 o p_209075_ + 2 o p_209076_ + c ()Laou; m_214023_ + j ()Ldhe$y$a; m_207119_ + k ()Ldhd; m_207185_ + l ()Ldhd; m_207190_ +dhe$y$a net/minecraft/world/level/levelgen/DensityFunctions$TwoArgumentSimpleFunction$Type + a ADD + b MUL + c MIN + d MAX + e f_209082_ + f f_209083_ + g $VALUES + ()V + static + (Ljava/lang/String;ILjava/lang/String;)V + 0 o p_209087_ + 1 o p_209088_ + 2 o p_209089_ + a (Ldhd;Ldhd;)Ldhe$y; m_209091_ + 0 o p_209092_ + 1 o p_209093_ + a ()[Ldhe$y$a; m_209090_ + static + c ()Ljava/lang/String; m_7912_ + valueOf (Ljava/lang/String;)Ldhe$y$a; valueOf + static + 0 o p_209096_ + values ()[Ldhe$y$a; values + static +dhe$z net/minecraft/world/level/levelgen/DensityFunctions$WeirdScaledSampler + a f_208424_ + e f_208425_ + f f_208427_ + g f_208428_ + h f_208429_ + ()V + static + (Ldhd;Ldhd$c;Ldhe$z$a;)V + 0 o f_208425_ + 1 o f_208427_ + 2 o f_208428_ + a ()D m_207402_ + a (Ldhd$b;D)D m_207219_ + 0 o p_208440_ + 1 o p_208441_ + a (Ldhd$f;)Ldhd; m_207456_ + 0 o p_208443_ + a (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; m_208437_ + static + 0 o p_208438_ + b ()D m_207401_ + c ()Laou; m_214023_ + equals (Ljava/lang/Object;)Z equals + 0 o p_208451_ + hashCode ()I hashCode + j ()Ldhd; m_207189_ + k ()Ldhd$c; f_208427_ + l ()Ldhe$z$a; f_208428_ + toString ()Ljava/lang/String; toString +dhe$z$a net/minecraft/world/level/levelgen/DensityFunctions$WeirdScaledSampler$RarityValueMapper + a TYPE1 + b TYPE2 + c f_208460_ + d f_208462_ + e f_208463_ + f f_208464_ + g $VALUES + ()V + static + (Ljava/lang/String;ILjava/lang/String;Lit/unimi/dsi/fastutil/doubles/Double2DoubleFunction;D)V + 0 o p_208468_ + 1 o p_208469_ + 2 o p_208470_ + 3 o p_208471_ + 4 o p_208472_ + a ()[Ldhe$z$a; m_208473_ + static + c ()Ljava/lang/String; m_7912_ + valueOf (Ljava/lang/String;)Ldhe$z$a; valueOf + static + 0 o p_208478_ + values ()[Ldhe$z$a; values + static +dhf net/minecraft/world/level/levelgen/FlatLevelSource + c f_64164_ + d f_64165_ + ()V + static + (Ldqd;)V + 0 o p_256337_ + a (IILcmo;Ldhy;)Lcmy; m_214184_ + 0 o p_224155_ + 1 o p_224156_ + 2 o p_224157_ + 3 o p_224158_ + a (Lcmo;)I m_142051_ + 0 o p_158279_ + a (Laim;Lcne;Ldhy;Lddx;)V m_214194_ + 0 o p_224174_ + 1 o p_224175_ + 2 o p_224176_ + 3 o p_224177_ + a (IILdhk$a;Lcmo;Ldhy;)I m_214096_ + 0 o p_224160_ + 1 o p_224161_ + 2 o p_224162_ + 3 o p_224163_ + 4 o p_224164_ + a (Lhe$c;)Lhe; m_254817_ + static + 0 o p_255579_ + a (Lhg;Ldhy;J)Lddz; m_255169_ + 0 o p_256602_ + 1 o p_255830_ + 2 o p_256355_ + a (Ljava/util/concurrent/Executor;Ldim;Ldhy;Lcne;Lddx;)Ljava/util/concurrent/CompletableFuture; m_213974_ + 0 o p_224183_ + 1 o p_224184_ + 2 o p_224185_ + 3 o p_224186_ + 4 o p_224187_ + a (Ljava/util/List;Ldhy;Lgu;)V m_213600_ + 0 o p_224179_ + 1 o p_224180_ + 2 o p_224181_ + a (Lhg;)Ljava/util/stream/Stream; m_254816_ + static + 0 o p_255578_ + a ()Lcom/mojang/serialization/Codec; m_6909_ + a (Laim;JLdhy;Lcnm;Lcne;Lddx;Ldhg$a;)V m_213679_ + 0 o p_224166_ + 1 o p_224167_ + 2 o p_224168_ + 3 o p_224169_ + 4 o p_224170_ + 5 o p_224171_ + 6 o p_224172_ + a (I)[Ldcb; m_204542_ + static + 0 o p_204543_ + a (Ldcb;)Ldcb; m_204548_ + static + 0 o p_204549_ + a (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; m_254815_ + static + 0 o p_255577_ + a (Laim;)V m_6929_ + 0 o p_188545_ + d ()I m_6331_ + e ()I m_6337_ + f ()I m_142062_ + g ()Ldqd; m_64191_ +dhg net/minecraft/world/level/levelgen/GenerationStep + ()V +dhg$a net/minecraft/world/level/levelgen/GenerationStep$Carving + a AIR + b LIQUID + c f_64194_ + d f_64196_ + e $VALUES + ()V + static + (Ljava/lang/String;ILjava/lang/String;)V + 0 o p_64200_ + 1 o p_64201_ + 2 o p_64202_ + a ()Ljava/lang/String; m_64208_ + b ()[Ldhg$a; m_158285_ + static + c ()Ljava/lang/String; m_7912_ + valueOf (Ljava/lang/String;)Ldhg$a; valueOf + static + 0 o p_64210_ + values ()[Ldhg$a; values + static +dhg$b net/minecraft/world/level/levelgen/GenerationStep$Decoration + a RAW_GENERATION + b LAKES + c LOCAL_MODIFICATIONS + d UNDERGROUND_STRUCTURES + e SURFACE_STRUCTURES + f STRONGHOLDS + g UNDERGROUND_ORES + h UNDERGROUND_DECORATION + i FLUID_SPRINGS + j VEGETAL_DECORATION + k TOP_LAYER_MODIFICATION + l f_224188_ + m f_224189_ + n $VALUES + ()V + static + (Ljava/lang/String;ILjava/lang/String;)V + 0 o p_224191_ + 1 o p_224192_ + 2 o p_224193_ + a ()Ljava/lang/String; m_224194_ + b ()[Ldhg$b; m_158286_ + static + c ()Ljava/lang/String; m_7912_ + valueOf (Ljava/lang/String;)Ldhg$b; valueOf + static + 0 o p_64228_ + values ()[Ldhg$b; values + static +dhh net/minecraft/world/level/levelgen/GeodeBlockSettings + a f_158287_ + b f_158288_ + c f_158289_ + d f_158290_ + e f_158291_ + f f_158292_ + g f_158293_ + h f_158294_ + i f_158295_ + ()V + static + (Ldot;Ldot;Ldot;Ldot;Ldot;Ljava/util/List;Lanl;Lanl;)V + 0 o p_204555_ + 1 o p_204556_ + 2 o p_204557_ + 3 o p_204558_ + 4 o p_204559_ + 5 o p_204560_ + 6 o p_204561_ + 7 o p_204562_ + a (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; m_158306_ + static + 0 o p_158307_ + a (Ldhh;)Lanl; m_204563_ + static + 0 o p_204564_ + b (Ldhh;)Lanl; m_204565_ + static + 0 o p_204566_ + c (Ldhh;)Ljava/util/List; m_158312_ + static + 0 o p_158313_ + d (Ldhh;)Ldot; m_158314_ + static + 0 o p_158315_ + e (Ldhh;)Ldot; m_158316_ + static + 0 o p_158317_ + f (Ldhh;)Ldot; m_158318_ + static + 0 o p_158319_ + g (Ldhh;)Ldot; m_158320_ + static + 0 o p_158321_ + h (Ldhh;)Ldot; m_158322_ + static + 0 o p_158323_ +dhi net/minecraft/world/level/levelgen/GeodeCrackSettings + a f_158324_ + b f_158325_ + c f_158326_ + d f_158327_ + ()V + static + (DDI)V + 0 o p_158330_ + 1 o p_158331_ + 2 o p_158332_ + a (Ldhi;)Ljava/lang/Integer; m_158335_ + static + 0 o p_158336_ + a (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; m_158333_ + static + 0 o p_158334_ + b (Ldhi;)Ljava/lang/Double; m_158337_ + static + 0 o p_158338_ + c (Ldhi;)Ljava/lang/Double; m_158339_ + static + 0 o p_158340_ +dhj net/minecraft/world/level/levelgen/GeodeLayerSettings + a f_158341_ + b f_158342_ + c f_158343_ + d f_158344_ + e f_158345_ + f f_158346_ + ()V + static + (DDDD)V + 0 o p_158349_ + 1 o p_158350_ + 2 o p_158351_ + 3 o p_158352_ + a (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; m_158353_ + static + 0 o p_158354_ + a (Ldhj;)Ljava/lang/Double; m_158355_ + static + 0 o p_158356_ + b (Ldhj;)Ljava/lang/Double; m_158357_ + static + 0 o p_158358_ + c (Ldhj;)Ljava/lang/Double; m_158359_ + static + 0 o p_158360_ + d (Ldhj;)Ljava/lang/Double; m_158361_ + static + 0 o p_158362_ +dhk net/minecraft/world/level/levelgen/Heightmap + a f_158363_ + b f_64230_ + c f_64231_ + d f_64232_ + e f_64233_ + f f_64234_ + ()V + static + (Lddx;Ldhk$a;)V + 0 o p_64237_ + 1 o p_64238_ + a (Lddx;Ldhk$a;[J)V m_158364_ + 0 o p_158365_ + 1 o p_158366_ + 2 o p_158367_ + a (Ldcb;)Z m_284114_ + static + 0 o p_284913_ + a (IIILdcb;)Z m_64249_ + 0 o p_64250_ + 1 o p_64251_ + 2 o p_64252_ + 3 o p_64253_ + a (Lddx;Ljava/util/Set;)V m_64256_ + static + 0 o p_64257_ + 1 o p_64258_ + a (I)I m_64240_ + 0 o p_64241_ + a ()[J m_64239_ + a (III)V m_64245_ + 0 o p_64246_ + 1 o p_64247_ + 2 o p_64248_ + a (II)I m_64242_ + 0 o p_64243_ + 1 o p_64244_ + b (II)I m_158368_ + 0 o p_158369_ + 1 o p_158370_ + c (II)I m_64265_ + static + 0 o p_64266_ + 1 o p_64267_ +dhk$a net/minecraft/world/level/levelgen/Heightmap$Types + a WORLD_SURFACE_WG + b WORLD_SURFACE + c OCEAN_FLOOR_WG + d OCEAN_FLOOR + e MOTION_BLOCKING + f MOTION_BLOCKING_NO_LEAVES + g f_64274_ + h f_64275_ + i f_64276_ + j f_64277_ + k $VALUES + ()V + static + (Ljava/lang/String;ILjava/lang/String;Ldhk$b;Ljava/util/function/Predicate;)V + 0 o p_64282_ + 1 o p_64283_ + 2 o p_64284_ + 3 o p_64285_ + 4 o p_64286_ + a (Ldcb;)Z m_284115_ + static + 0 o p_284914_ + a ()Ljava/lang/String; m_64294_ + b ()Z m_64297_ + b (Ldcb;)Z m_284116_ + static + 0 o p_284915_ + c ()Ljava/lang/String; m_7912_ + d ()Z m_64298_ + e ()Ljava/util/function/Predicate; m_64299_ + f ()[Ldhk$a; m_158371_ + static + valueOf (Ljava/lang/String;)Ldhk$a; valueOf + static + 0 o p_64301_ + values ()[Ldhk$a; values + static +dhk$b net/minecraft/world/level/levelgen/Heightmap$Usage + a WORLDGEN + b LIVE_WORLD + c CLIENT + d $VALUES + ()V + static + (Ljava/lang/String;I)V + 0 o p_64309_ + 1 o p_64310_ + a ()[Ldhk$b; m_158372_ + static + valueOf (Ljava/lang/String;)Ldhk$b; valueOf + static + 0 o p_64312_ + values ()[Ldhk$b; values + static +dhl net/minecraft/world/level/levelgen/LegacyRandomSource + d f_188571_ + e f_188572_ + f f_188573_ + g f_188574_ + h f_188575_ + i f_188576_ + (J)V + 0 o p_188578_ + b (J)V m_188584_ + 0 o p_188585_ + c (I)I m_64707_ + 0 o p_188581_ + d ()Lapf; m_213769_ + e ()Ldhx; m_188582_ + k ()D m_188583_ +dhl$a net/minecraft/world/level/levelgen/LegacyRandomSource$LegacyPositionalRandomFactory + a f_188586_ + (J)V + 0 o p_188588_ + a (Ljava/lang/StringBuilder;)V m_183502_ + 0 o p_188596_ + a (III)Lapf; m_213715_ + 0 o p_224198_ + 1 o p_224199_ + 2 o p_224200_ + a (Ljava/lang/String;)Lapf; m_214111_ + 0 o p_224202_ +dhm net/minecraft/world/level/levelgen/MarsagliaPolarGaussian + a f_188597_ + b f_188598_ + c f_188599_ + (Lapf;)V + 0 o p_224204_ + a ()V m_188602_ + b ()D m_188603_ +dhn net/minecraft/world/level/levelgen/NoiseBasedChunkGenerator + c f_64314_ + d f_64321_ + e f_64318_ + f f_188607_ + ()V + static + (Lcno;Lhe;)V + 0 o p_256415_ + 1 o p_256182_ + a (Lcmo;Ldhy;IILorg/apache/commons/lang3/mutable/MutableObject;Ljava/util/function/Predicate;)Ljava/util/OptionalInt; m_224239_ + 0 o p_224240_ + 1 o p_224241_ + 2 o p_224242_ + 3 o p_224243_ + 4 o p_224244_ + 5 o p_224245_ + a (Ldim;Lcne;Ldhy;Lddx;II)Lddx; m_224284_ + 0 o p_224285_ + 1 o p_224286_ + 2 o p_224287_ + 3 o p_224288_ + 4 o p_224289_ + 5 o p_224290_ + a (IILdhk$a;Lcmo;Ldhy;)I m_214096_ + 0 o p_224216_ + 1 o p_224217_ + 2 o p_224218_ + 3 o p_224219_ + 4 o p_224220_ + a (Ldim;Ldhy;Lcne;Lddx;)V m_224291_ + 0 o p_224292_ + 1 o p_224293_ + 2 o p_224294_ + 3 o p_224295_ + a (Ljava/util/concurrent/Executor;Ldim;Ldhy;Lcne;Lddx;)Ljava/util/concurrent/CompletableFuture; m_213974_ + 0 o p_224312_ + 1 o p_224313_ + 2 o p_224314_ + 3 o p_224315_ + 4 o p_224316_ + a (Ljava/util/List;Ldhy;Lgu;)V m_213600_ + 0 o p_224304_ + 1 o p_224305_ + 2 o p_224306_ + a (Lcne;Ldim;Ldhy;Lddx;)Ldho; m_224251_ + 0 o p_224252_ + 1 o p_224253_ + 2 o p_224254_ + 3 o p_224255_ + a ()Lcom/mojang/serialization/Codec; m_6909_ + a (Ldhy;III)Lhe; m_254818_ + 0 o p_255580_ + 1 o p_255581_ + 2 o p_255582_ + 3 o p_255583_ + a (Lclt;Ldhy;)Lcnl; m_254821_ + 0 o p_255586_ + 1 o p_255587_ + a (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; m_254820_ + static + 0 o p_255585_ + a (Ljava/util/Set;Lddx;Ljava/lang/Throwable;)V m_224307_ + static + 0 o p_224308_ + 1 o p_224309_ + 2 o p_224310_ + a (Laim;)V m_6929_ + 0 o p_64379_ + a (Lacp;)Z m_224221_ + 0 o p_224222_ + a (IILcmo;Ldhy;)Lcmy; m_214184_ + 0 o p_224211_ + 1 o p_224212_ + 2 o p_224213_ + 3 o p_224214_ + a (Ldgw$b;ILdgw$b;Ldgw$b;III)Ldgw$b; m_224269_ + static + 0 o p_224270_ + 1 o p_224271_ + 2 o p_224272_ + 3 o p_224273_ + 4 o p_224274_ + 5 o p_224275_ + 6 o p_224276_ + a (Ldho;IIILdcb;)Ldcb; m_198231_ + 0 o p_198232_ + 1 o p_198233_ + 2 o p_198234_ + 3 o p_198235_ + 4 o p_198236_ + a (Lddx;Ldih;Ldhy;Lcne;Lcnm;Lhr;Ldim;)V m_224261_ + 0 o p_224262_ + 1 o p_224263_ + 2 o p_224264_ + 3 o p_224265_ + 4 o p_224266_ + 5 o p_224267_ + 6 o p_224268_ + a (Laim;Lcne;Ldhy;Lddx;)V m_214194_ + 0 o p_224232_ + 1 o p_224233_ + 2 o p_224234_ + 3 o p_224235_ + a (Lddx;Lcne;Ldim;Ldhy;)Ldho; m_224256_ + 0 o p_224257_ + 1 o p_224258_ + 2 o p_224259_ + 3 o p_224260_ + a (Laim;JLdhy;Lcnm;Lcne;Lddx;Ldhg$a;)V m_213679_ + 0 o p_224224_ + 1 o p_224225_ + 2 o p_224226_ + 3 o p_224227_ + 4 o p_224228_ + 5 o p_224229_ + 6 o p_224230_ + a (Lcne;Laim;Ldhy;Lddx;)Ldho; m_224246_ + 0 o p_224247_ + 1 o p_224248_ + 2 o p_224249_ + 3 o p_224250_ + a (Ldhp;)Ldgw$a; m_247703_ + static + 0 o p_249264_ + a (Ldhn;)Lhe; m_224277_ + static + 0 o p_224278_ + a (Ljava/util/concurrent/Executor;Ldhy;Ldim;Lcne;Lddx;)Ljava/util/concurrent/CompletableFuture; m_213908_ + 0 o p_224298_ + 1 o p_224299_ + 2 o p_224300_ + 3 o p_224301_ + 4 o p_224302_ + b (Ldhn;)Lcno; m_254819_ + static + 0 o p_255584_ + b (Ldim;Ldhy;Lcne;Lddx;)Lddx; m_224331_ + 0 o p_224332_ + 1 o p_224333_ + 2 o p_224334_ + 3 o p_224335_ + b (Lhe;)Ldgw$a; m_245021_ + static + 0 o p_248476_ + b (Lcne;Ldim;Ldhy;Lddx;)Ldho; m_224317_ + 0 o p_224318_ + 1 o p_224319_ + 2 o p_224320_ + 3 o p_224321_ + b (Ldim;Lcne;Ldhy;Lddx;II)Lddx; m_224324_ + 0 o p_224325_ + 1 o p_224326_ + 2 o p_224327_ + 3 o p_224328_ + 4 o p_224329_ + 5 o p_224330_ + c (Lcne;Ldim;Ldhy;Lddx;)Ldho; m_224336_ + 0 o p_224337_ + 1 o p_224338_ + 2 o p_224339_ + 3 o p_224340_ + d ()I m_6331_ + e ()I m_6337_ + f ()I m_142062_ + g ()Lhe; m_224341_ +dho net/minecraft/world/level/levelgen/NoiseChunk + A f_209150_ + B f_209151_ + C f_209152_ + D f_209153_ + E f_209154_ + F f_209155_ + G f_209156_ + H f_209157_ + I f_209158_ + J f_209159_ + a f_188717_ + b f_188718_ + c f_188719_ + d f_188720_ + e f_188721_ + f f_188722_ + g f_188723_ + h f_188724_ + i f_188725_ + j f_209160_ + k f_209161_ + l f_198238_ + m f_188728_ + n f_209162_ + o f_209163_ + p f_188731_ + q f_209164_ + r f_209165_ + s f_209166_ + t f_209167_ + u f_209168_ + v f_209169_ + w f_209170_ + x f_209171_ + y f_209172_ + z f_209173_ + (ILdhy;IILdhs;Ldhe$c;Ldhp;Ldgw$a;Ldim;)V + 0 o p_224343_ + 1 o p_224344_ + 2 o p_224345_ + 3 o p_224346_ + 4 o p_224347_ + 5 o p_224348_ + 6 o p_224349_ + 7 o p_224350_ + 8 o p_224351_ + a (ZI)V m_209220_ + 0 o p_209221_ + 1 o p_209222_ + a ()I m_207115_ + a (IILdho$i;)V m_209202_ + static + 0 o p_209203_ + 1 o p_209204_ + 2 o p_209205_ + a (ID)V m_209191_ + 0 o p_209192_ + 1 o p_209193_ + a (II)I m_198256_ + 0 o p_198257_ + 1 o p_198258_ + a (Ldhd;)Ldhd; m_209213_ + 0 o p_209214_ + a (J)I m_198249_ + 0 o p_198250_ + a (Ldhq;Ljava/util/List;)Lcnt$f; m_224359_ + 0 o p_224360_ + 1 o p_224361_ + a ([DLdhd;)V m_207207_ + 0 o p_209224_ + 1 o p_209225_ + a (Ldhd;Ldhd$b;)Ldcb; m_209215_ + 0 o p_209216_ + 1 o p_209217_ + a (Lddx;Ldhy;Ldhe$c;Ldhp;Ldgw$a;Ldim;)Ldho; m_224352_ + static + 0 o p_224353_ + 1 o p_224354_ + 2 o p_224355_ + 3 o p_224356_ + 4 o p_224357_ + 5 o p_224358_ + a (DLdho$i;)V m_209186_ + static + 0 o p_209187_ + 1 o p_209188_ + a (I)Ldhd$b; m_207263_ + 0 o p_209190_ + b (DLdho$i;)V m_209227_ + static + 0 o p_209228_ + 1 o p_209229_ + b (Ldhd;)Ldhd; m_209233_ + 0 o p_209234_ + b (II)V m_188810_ + 0 o p_188811_ + 1 o p_188812_ + b (I)V m_188749_ + 0 o p_188750_ + b ()I m_207114_ + b (ID)V m_209230_ + 0 o p_209231_ + 1 o p_209232_ + c ()I m_207113_ + c (ID)V m_209241_ + 0 o p_209242_ + 1 o p_209243_ + c (DLdho$i;)V m_209236_ + static + 0 o p_209237_ + 1 o p_209238_ + c (I)Ldho; m_207263_ + 0 o p_209240_ + c (II)Ldim$a; m_209244_ + 0 o p_209245_ + 1 o p_209246_ + d ()Ldim; m_188743_ + e ()Ldcb; m_209247_ + f ()V m_188791_ + g ()V m_209248_ + h ()V m_188804_ + i ()Ldgw; m_188817_ + j ()I m_224362_ + k ()I m_224363_ +dho$1 net/minecraft/world/level/levelgen/NoiseChunk$1 + a f_209249_ + (Ldho;)V + 0 o p_209251_ + a (I)Ldhd$b; m_207263_ + 0 o p_209253_ + a ([DLdhd;)V m_207207_ + 0 o p_209255_ + 1 o p_209256_ +dho$2 net/minecraft/world/level/levelgen/NoiseChunk$2 + a f_209257_ + ()V + static +dho$a net/minecraft/world/level/levelgen/NoiseChunk$BlendAlpha + a f_209259_ + (Ldho;)V + 0 o p_209261_ + a (Ldhd$b;)D m_207386_ + 0 o p_209264_ + a (Ldhd$f;)Ldhd; m_207456_ + 0 o p_224365_ + a ([DLdhd$a;)V m_207362_ + 0 o p_209266_ + 1 o p_209267_ + a ()D m_207402_ + b ()D m_207401_ + c ()Laou; m_214023_ + k ()Ldhd; m_207056_ +dho$b net/minecraft/world/level/levelgen/NoiseChunk$BlendOffset + a f_209271_ + (Ldho;)V + 0 o p_209273_ + a (Ldhd$b;)D m_207386_ + 0 o p_209276_ + a (Ldhd$f;)Ldhd; m_207456_ + 0 o p_224368_ + a ([DLdhd$a;)V m_207362_ + 0 o p_209278_ + 1 o p_209279_ + a ()D m_207402_ + b ()D m_207401_ + c ()Laou; m_214023_ + k ()Ldhd; m_207056_ +dho$c net/minecraft/world/level/levelgen/NoiseChunk$BlockStateFiller + calculate (Ldhd$b;)Ldcb; m_207387_ + 0 o p_209283_ +dho$d net/minecraft/world/level/levelgen/NoiseChunk$Cache2D + a f_209284_ + e f_209285_ + f f_209286_ + (Ldhd;)V + 0 o p_209288_ + a (Ldhd$b;)D m_207386_ + 0 o p_209290_ + a ([DLdhd$a;)V m_207362_ + 0 o p_209292_ + 1 o p_209293_ + j ()Ldhe$l$a; m_207136_ + k ()Ldhd; m_207056_ +dho$e net/minecraft/world/level/levelgen/NoiseChunk$CacheAllInCell + a f_209296_ + e f_209297_ + f f_209298_ + (Ldho;Ldhd;)V + 0 o p_209300_ + 1 o p_209301_ + a (Ldhd$b;)D m_207386_ + 0 o p_209303_ + a ([DLdhd$a;)V m_207362_ + 0 o p_209305_ + 1 o p_209306_ + j ()Ldhe$l$a; m_207136_ + k ()Ldhd; m_207056_ +dho$f net/minecraft/world/level/levelgen/NoiseChunk$CacheOnce + a f_209309_ + e f_209310_ + f f_209311_ + g f_209312_ + h f_209313_ + i f_209314_ + (Ldho;Ldhd;)V + 0 o p_209316_ + 1 o p_209317_ + a (Ldhd$b;)D m_207386_ + 0 o p_209319_ + a ([DLdhd$a;)V m_207362_ + 0 o p_209321_ + 1 o p_209322_ + j ()Ldhe$l$a; m_207136_ + k ()Ldhd; m_207056_ +dho$g net/minecraft/world/level/levelgen/NoiseChunk$FlatCache + a f_209325_ + e f_209326_ + f f_209327_ + (Ldho;Ldhd;Z)V + 0 o p_209329_ + 1 o p_209330_ + 2 o p_209331_ + a (Ldhd$b;)D m_207386_ + 0 o p_209333_ + a ([DLdhd$a;)V m_207362_ + 0 o p_209335_ + 1 o p_209336_ + j ()Ldhe$l$a; m_207136_ + k ()Ldhd; m_207056_ +dho$h net/minecraft/world/level/levelgen/NoiseChunk$NoiseChunkDensityFunction + a ()D m_207402_ + b ()D m_207401_ + k ()Ldhd; m_207056_ +dho$i net/minecraft/world/level/levelgen/NoiseChunk$NoiseInterpolator + a f_188827_ + e f_188828_ + f f_188829_ + g f_188830_ + h f_188831_ + i f_188832_ + j f_188833_ + k f_188834_ + l f_188835_ + m f_188836_ + n f_188837_ + o f_188838_ + p f_188839_ + q f_188840_ + r f_188841_ + s f_188842_ + t f_188843_ + u f_188844_ + v f_188845_ + (Ldho;Ldhd;)V + 0 o p_209344_ + 1 o p_209345_ + a (D)V m_188850_ + 0 o p_188851_ + a (Ldhd$b;)D m_207386_ + 0 o p_209347_ + a (II)[[D m_188854_ + 0 o p_188855_ + 1 o p_188856_ + a ([DLdhd$a;)V m_207362_ + 0 o p_209349_ + 1 o p_209350_ + b (II)V m_188863_ + 0 o p_188864_ + 1 o p_188865_ + b (D)V m_188861_ + 0 o p_188862_ + c (D)V m_188866_ + 0 o p_188867_ + j ()Ldhe$l$a; m_207136_ + k ()Ldhd; m_207056_ + l ()V m_188860_ +dhp net/minecraft/world/level/levelgen/NoiseGeneratorSettings + a f_64430_ + b f_64431_ + c f_64432_ + d f_188869_ + e f_64433_ + f f_64434_ + g f_64435_ + h f_64436_ + i f_64437_ + j f_64439_ + k f_64440_ + l f_64441_ + m f_209353_ + n f_188871_ + o f_224370_ + p f_64444_ + q f_64445_ + r f_158533_ + s f_158536_ + t f_209354_ + ()V + static + (Ldhs;Ldcb;Ldcb;Ldhq;Ldib$o;Ljava/util/List;IZZZZ)V + 0 o f_64439_ + 1 o f_64440_ + 2 o f_64441_ + 3 o f_209353_ + 4 o f_188871_ + 5 o f_224370_ + 6 o f_64444_ + 7 o f_64445_ + 8 o f_158533_ + 9 o f_158536_ + 10 o f_209354_ + a ()Z f_64445_ + a (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; m_64474_ + static + 0 o p_64475_ + a (Lnm;ZZ)Ldhp; m_255226_ + static + 0 o p_256460_ + 1 o p_256427_ + 2 o p_256318_ + a (Lnm;)V m_254959_ + static + 0 o p_256365_ + b (Lnm;)Ldhp; m_255186_ + static + 0 o p_256478_ + b ()Z m_158567_ + c ()Z m_209369_ + c (Lnm;)Ldhp; m_255410_ + static + 0 o p_256180_ + d ()Ldij$a; m_188893_ + d (Lnm;)Ldhp; m_255038_ + static + 0 o p_255690_ + e (Lnm;)Ldhp; m_255230_ + static + 0 o p_255885_ + e ()Ldhp; m_238396_ + static + equals (Ljava/lang/Object;)Z equals + 0 o p_209371_ + f ()Ldhs; f_64439_ + g ()Ldcb; f_64440_ + h ()Ldcb; f_64441_ + hashCode ()I hashCode + i ()Ldhq; f_209353_ + j ()Ldib$o; f_188871_ + k ()Ljava/util/List; f_224370_ + l ()I f_64444_ + m ()Z f_158533_ + n ()Z f_209354_ + toString ()Ljava/lang/String; toString +dhq net/minecraft/world/level/levelgen/NoiseRouter + a f_224391_ + b f_209378_ + c f_209379_ + d f_209380_ + e f_209381_ + f f_209384_ + g f_224392_ + h f_209386_ + i f_209387_ + j f_209388_ + k f_209389_ + l f_209390_ + m f_209391_ + n f_209392_ + o f_209393_ + p f_209394_ + ()V + static + (Ldhd;Ldhd;Ldhd;Ldhd;Ldhd;Ldhd;Ldhd;Ldhd;Ldhd;Ldhd;Ldhd;Ldhd;Ldhd;Ldhd;Ldhd;)V + 0 o f_209378_ + 1 o f_209379_ + 2 o f_209380_ + 3 o f_209381_ + 4 o f_209384_ + 5 o f_224392_ + 6 o f_209386_ + 7 o f_209387_ + 8 o f_209388_ + 9 o f_209389_ + 10 o f_209390_ + 11 o f_209391_ + 12 o f_209392_ + 13 o f_209393_ + 14 o f_209394_ + a (Ldhd$f;)Ldhq; m_224412_ + 0 o p_224413_ + a (Ljava/lang/String;Ljava/util/function/Function;)Lcom/mojang/serialization/codecs/RecordCodecBuilder; m_224414_ + static + 0 o p_224415_ + 1 o p_224416_ + a (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; m_224410_ + static + 0 o p_224411_ + a ()Ldhd; f_209378_ + b ()Ldhd; f_209379_ + c ()Ldhd; f_209380_ + d ()Ldhd; f_209381_ + e ()Ldhd; f_209384_ + equals (Ljava/lang/Object;)Z equals + 0 o p_209421_ + f ()Ldhd; f_224392_ + g ()Ldhd; f_209386_ + h ()Ldhd; f_209387_ + hashCode ()I hashCode + i ()Ldhd; f_209388_ + j ()Ldhd; f_209389_ + k ()Ldhd; f_209390_ + l ()Ldhd; f_209391_ + m ()Ldhd; f_209392_ + n ()Ldhd; f_209393_ + o ()Ldhd; f_209394_ + toString ()Ljava/lang/String; toString +dhr net/minecraft/world/level/levelgen/NoiseRouterData + A f_224418_ + B f_209456_ + C f_224419_ + D f_209459_ + E f_224420_ + F f_209460_ + G f_209461_ + H f_224421_ + I f_224422_ + J f_224423_ + K f_224424_ + L f_224425_ + M f_209462_ + N f_209463_ + O f_209464_ + P f_209465_ + Q f_209437_ + R f_209438_ + S f_209439_ + a f_224426_ + b f_224427_ + c f_224428_ + d f_209451_ + e f_209452_ + f f_209453_ + g f_224429_ + h f_224430_ + i f_209454_ + j f_224431_ + k f_209455_ + l f_209457_ + m f_209458_ + n f_209440_ + o f_209441_ + p f_209442_ + q f_209443_ + r f_224432_ + s f_209444_ + t f_209445_ + u f_209446_ + v f_209447_ + w f_209448_ + x f_209449_ + y f_224433_ + z f_224434_ + ()V + static + ()V + a ()Ldhq; m_238384_ + static + a (Lhf;Lhf;ZZ)Ldhq; m_255262_ + static + 0 o p_255681_ + 1 o p_256005_ + 2 o p_255649_ + 3 o p_255617_ + a (Lhf;)Ldhq; m_255104_ + static + 0 o p_256079_ + a (Ldhd;IIIIDIID)Ldhd; m_224443_ + static + 0 o p_224444_ + 1 o p_224445_ + 2 o p_224446_ + 3 o p_224447_ + 4 o p_224448_ + 5 o p_224449_ + 6 o p_224450_ + 7 o p_224451_ + 8 o p_224452_ + a (F)F m_224435_ + static + 0 o p_224436_ + a (Lnm;Lhf;Ldhd;Lhe;Lhe;Lacp;Lacp;Lacp;Lacp;Lacp;Z)V m_224474_ + static + 0 o p_256336_ + 1 o p_256393_ + 2 o p_224476_ + 3 o p_224477_ + 4 o p_224478_ + 5 o p_224479_ + 6 o p_224480_ + 7 o p_224481_ + 8 o p_224482_ + 9 o p_224483_ + 10 o p_224484_ + a (Lhf;Lacp;)Ldhd; m_255403_ + static + 0 o p_256312_ + 1 o p_256077_ + a (Ldhd;)Ldhd; m_224437_ + static + 0 o p_224438_ + a (Lhf;Lhf;Ldhd;)Ldhd; m_255355_ + static + 0 o p_256548_ + 1 o p_256236_ + 2 o p_256658_ + a (ZLdhd;)Ldhd; m_224489_ + static + 0 o p_224490_ + 1 o p_224491_ + a (Ldhd;Ldhd;III)Ldhd; m_209471_ + static + 0 o p_209472_ + 1 o p_209473_ + 2 o p_209474_ + 3 o p_209475_ + 4 o p_209476_ + a (Lnm;)Lhe; m_255288_ + static + 0 o p_256220_ + a (Ldhu$a;)I m_224456_ + static + 0 o p_224457_ + a (Lnm;Lacp;Ldhd;)Ldhd; m_255105_ + static + 0 o p_256149_ + 1 o p_255905_ + 2 o p_255856_ + a (Lhf;Lhf;)Ldhq; m_255404_ + static + 0 o p_256256_ + 1 o p_256169_ + a (Ldhd;Ldhd;)Ldhd; m_224453_ + static + 0 o p_224454_ + 1 o p_224455_ + a (Ljava/lang/String;)Lacp; m_209536_ + static + 0 o p_209537_ + a (Lhf;II)Ldhd; m_254915_ + static + 0 o p_256084_ + 1 o p_255802_ + 2 o p_255834_ + a (Ldhd;II)Ldhd; m_224439_ + static + 0 o p_224440_ + 1 o p_224441_ + 2 o p_224442_ + b (Ldhd;Ldhd;)Ldhd; m_212271_ + static + 0 o p_212272_ + 1 o p_212273_ + b (Ldhd;)Ldhd; m_224492_ + static + 0 o p_224493_ + b (Lhf;)Ldhd; m_254847_ + static + 0 o p_255763_ + b (Lhf;Lhf;Ldhd;)Ldhq; m_254999_ + static + 0 o p_255724_ + 1 o p_255986_ + 2 o p_256378_ + b (Ldhu$a;)I m_224494_ + static + 0 o p_224495_ + b (Lhf;Lhf;)Ldhq; m_255020_ + static + 0 o p_256088_ + 1 o p_255675_ + c (Lhf;Lhf;)Ldhq; m_254860_ + static + 0 o p_256633_ + 1 o p_255902_ + c (Lhf;)Ldhd; m_255167_ + static + 0 o p_255985_ + c (Ldhd;)Ldhd; m_224505_ + static + 0 o p_224506_ + d (Lhf;Lhf;)Ldhd; m_255275_ + static + 0 o p_256511_ + 1 o p_255899_ + e (Lhf;Lhf;)Ldhd; m_255300_ + static + 0 o p_256402_ + 1 o p_255632_ + f (Lhf;Lhf;)Ldhd; m_255130_ + static + 0 o p_256535_ + 1 o p_255650_ +dhr$a net/minecraft/world/level/levelgen/NoiseRouterData$QuantizedSpaghettiRarity + ()V + a (D)D m_209563_ + static + 0 o p_209564_ + b (D)D m_209565_ + static + 0 o p_209566_ +dhs net/minecraft/world/level/levelgen/NoiseSettings + a f_64507_ + b f_224519_ + c f_209630_ + d f_209631_ + e f_209632_ + f f_209633_ + g f_158688_ + h f_64508_ + i f_64512_ + j f_64513_ + ()V + static + (IIII)V + 0 o f_158688_ + 1 o f_64508_ + 2 o f_64512_ + 3 o f_64513_ + a (IIII)Ldhs; m_224525_ + static + 0 o p_224526_ + 1 o p_224527_ + 2 o p_224528_ + 3 o p_224529_ + a ()I m_189212_ + a (Lcom/mojang/serialization/DataResult$PartialResult;)V m_158718_ + static + 0 o p_158719_ + a (Ldhs;)Lcom/mojang/serialization/DataResult; m_158720_ + static + 0 o p_158721_ + a (Lcmo;)Ldhs; m_224530_ + 0 o p_224531_ + a (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; m_64535_ + static + 0 o p_64536_ + b ()I m_189213_ + c ()I f_158688_ + d ()I f_64508_ + e ()I f_64512_ + equals (Ljava/lang/Object;)Z equals + 0 o p_189215_ + f ()I f_64513_ + g ()Ljava/lang/String; m_274286_ + static + h ()Ljava/lang/String; m_274284_ + static + hashCode ()I hashCode + i ()Ljava/lang/String; m_274285_ + static + toString ()Ljava/lang/String; toString +dht net/minecraft/world/level/levelgen/Noises + A f_189243_ + B f_189244_ + C f_189245_ + D f_189246_ + E f_189247_ + F f_189248_ + G f_189249_ + H f_189250_ + I f_189251_ + J f_189252_ + K f_189253_ + L f_189254_ + M f_189255_ + N f_189256_ + O f_189257_ + P f_189258_ + Q f_189259_ + R f_189260_ + S f_189261_ + T f_189262_ + U f_189263_ + V f_189264_ + W f_189265_ + X f_189266_ + Y f_189267_ + Z f_189268_ + a f_189269_ + aa f_189270_ + ab f_189271_ + ac f_189272_ + ad f_189273_ + ae f_189274_ + af f_189275_ + ag f_189276_ + ah f_189277_ + b f_189278_ + c f_189279_ + d f_189280_ + e f_189281_ + f f_189282_ + g f_189283_ + h f_189284_ + i f_189285_ + j f_189286_ + k f_189287_ + l f_189288_ + m f_189289_ + n f_189290_ + o f_189291_ + p f_189292_ + q f_189293_ + r f_189294_ + s f_189295_ + t f_189296_ + u f_189297_ + v f_189298_ + w f_189299_ + x f_189300_ + y f_189301_ + z f_189302_ + ()V + static + ()V + a (Ljava/lang/String;)Lacp; m_189309_ + static + 0 o p_189310_ + a (Lhf;Ldhx;Lacp;)Ldwh; m_255421_ + static + 0 o p_256362_ + 1 o p_256306_ + 2 o p_256639_ +dhu net/minecraft/world/level/levelgen/OreVeinifier + a f_209650_ + b f_209651_ + c f_209652_ + d f_209653_ + e f_209654_ + f f_209655_ + g f_209656_ + h f_209657_ + i f_209658_ + ()V + a (Ldhd;Ldcb;Ldhx;Ldhd;Ldhd;Ldhd$b;)Ldcb; m_209660_ + static + 0 o p_209661_ + 1 o p_209662_ + 2 o p_209663_ + 3 o p_209664_ + 4 o p_209665_ + 5 o p_209666_ + a (Ldhd;Ldhd;Ldhd;Ldhx;)Ldho$c; m_209667_ + static + 0 o p_209668_ + 1 o p_209669_ + 2 o p_209670_ + 3 o p_209671_ +dhu$a net/minecraft/world/level/levelgen/OreVeinifier$VeinType + a COPPER + b IRON + c f_209674_ + d f_209675_ + e f_209676_ + f f_209677_ + g f_209678_ + h $VALUES + ()V + static + (Ljava/lang/String;ILdcb;Ldcb;Ldcb;II)V + 0 o p_209682_ + 1 o p_209683_ + 2 o p_209684_ + 3 o p_209685_ + 4 o p_209686_ + 5 o p_209687_ + 6 o p_209688_ + a ()[Ldhu$a; m_209689_ + static + valueOf (Ljava/lang/String;)Ldhu$a; valueOf + static + 0 o p_209691_ + values ()[Ldhu$a; values + static +dhv net/minecraft/world/level/levelgen/PatrolSpawner + a f_64562_ + ()V + a (Laif;ZZ)I m_7995_ + 0 o p_64570_ + 1 o p_64571_ + 2 o p_64572_ + a (Laif;Lgu;Lapf;Z)Z m_224532_ + 0 o p_224533_ + 1 o p_224534_ + 2 o p_224535_ + 3 o p_224536_ +dhw net/minecraft/world/level/levelgen/PhantomSpawner + a f_64573_ + ()V + a (Laif;ZZ)I m_7995_ + 0 o p_64576_ + 1 o p_64577_ + 2 o p_64578_ +dhx net/minecraft/world/level/levelgen/PositionalRandomFactory + a (Ljava/lang/StringBuilder;)V m_183502_ + 0 o p_189317_ + a (Lgu;)Lapf; m_224542_ + 0 o p_224543_ + a (Lacq;)Lapf; m_224540_ + 0 o p_224541_ + a (III)Lapf; m_213715_ + 0 o p_224537_ + 1 o p_224538_ + 2 o p_224539_ + a (Ljava/lang/String;)Lapf; m_214111_ + 0 o p_224544_ +dhy net/minecraft/world/level/levelgen/RandomState + a f_224545_ + b f_224547_ + c f_224548_ + d f_224549_ + e f_224550_ + f f_224551_ + g f_224552_ + h f_224553_ + i f_224554_ + (Ldhp;Lhf;J)V + 0 o p_255668_ + 1 o p_256663_ + 2 o p_255691_ + a (Lacp;Lacp;)Ldwh; m_254822_ + 0 o p_255588_ + 1 o p_255589_ + a (Lacp;)Ldwh; m_224560_ + 0 o p_224561_ + a (Lacq;Lacq;)Ldhx; m_224567_ + 0 o p_224568_ + 1 o p_224569_ + a (Ldhp;Lhf;J)Ldhy; m_255302_ + static + 0 o p_255761_ + 1 o p_256649_ + 2 o p_255965_ + a ()Ldhq; m_224578_ + a (Lacq;)Ldhx; m_224565_ + 0 o p_224566_ + a (Lhf$a;Lacp;J)Ldhy; m_255077_ + static + 0 o p_255935_ + 1 o p_256314_ + 2 o p_256595_ + b ()Lcnt$f; m_224579_ + c ()Ldic; m_224580_ + d ()Ldhx; m_224581_ + e ()Ldhx; m_224582_ +dhy$1 net/minecraft/world/level/levelgen/RandomState$1 + a f_244167_ + b f_244328_ + (Ldhy;)V + 0 o p_249240_ + a (Ldhd;)Ldhd; m_246139_ + 0 o p_249732_ + apply (Ldhd;)Ldhd; m_214017_ + 0 o p_248616_ +dhy$a net/minecraft/world/level/levelgen/RandomState$1NoiseWiringHelper + a f_224583_ + b f_224584_ + c f_224585_ + d f_224586_ + (Ldhy;JZ)V + 0 o p_224588_ + 1 o p_224589_ + 2 o p_224590_ + a (J)Lapf; m_224591_ + 0 o p_224592_ + a (Ldhd$c;)Ldhd$c; m_213918_ + 0 o p_224594_ + a (Ldhd;)Ldhd; m_224595_ + 0 o p_224596_ + apply (Ldhd;)Ldhd; m_214017_ + 0 o p_224598_ +dhz net/minecraft/world/level/levelgen/RandomSupport + a f_189323_ + b f_189324_ + c f_287788_ + d f_189325_ + ()V + static + ()V + a ()J m_224599_ + static + a (Ljava/lang/String;)Ldhz$a; m_288212_ + static + 0 o p_288994_ + a (J)J m_189329_ + static + 0 o p_189330_ + b (J)Ldhz$a; m_289611_ + static + 0 o p_289660_ + c (J)Ldhz$a; m_189331_ + static + 0 o p_189332_ + d (J)J m_224600_ + static + 0 o p_224601_ +dhz$a net/minecraft/world/level/levelgen/RandomSupport$Seed128bit + a f_189335_ + b f_189336_ + (JJ)V + 0 o f_189335_ + 1 o f_189336_ + a ()Ldhz$a; m_289608_ + a (JJ)Ldhz$a; m_288194_ + 0 o p_288963_ + 1 o p_288992_ + a (Ldhz$a;)Ldhz$a; m_288205_ + 0 o p_289009_ + b ()J f_189335_ + c ()J f_189336_ + equals (Ljava/lang/Object;)Z equals + 0 o p_189343_ + hashCode ()I hashCode + toString ()Ljava/lang/String; toString +di net/minecraft/advancements/critereon/WrappedMinMaxBounds + a f_75350_ + b f_75351_ + c f_75352_ + d f_75353_ + ()V + static + (Ljava/lang/Float;Ljava/lang/Float;)V + 0 o p_75356_ + 1 o p_75357_ + a (Lcom/google/gson/JsonElement;)Ldi; m_164407_ + static + 0 o p_164408_ + a (D)Z m_164400_ + 0 o p_164401_ + a (Ljava/lang/Float;)Ljava/lang/Float; m_164412_ + static + 0 o p_164413_ + a (FF)Ldi; m_164404_ + static + 0 o p_164405_ + 1 o p_164406_ + a (Lcom/mojang/brigadier/StringReader;ZLjava/util/function/Function;)Ldi; m_75359_ + static + 0 o p_75360_ + 1 o p_75361_ + 2 o p_75362_ + a ()Ljava/lang/Float; m_75358_ + a (Lcom/mojang/brigadier/StringReader;Z)Ldi; m_164409_ + static + 0 o p_164410_ + 1 o p_164411_ + a (F)Ldi; m_164402_ + static + 0 o p_164403_ + a (Ljava/lang/Float;Ljava/util/function/Function;)Ljava/lang/Float; m_75363_ + static + 0 o p_75364_ + 1 o p_75365_ + b ()Ljava/lang/Float; m_75366_ + b (F)Ldi; m_164414_ + static + 0 o p_164415_ + b (Lcom/mojang/brigadier/StringReader;Z)Ljava/lang/Float; m_75367_ + static + 0 o p_75368_ + 1 o p_75369_ + c ()Lcom/google/gson/JsonElement; m_164416_ + c (F)Ldi; m_164417_ + static + 0 o p_164418_ + c (Lcom/mojang/brigadier/StringReader;Z)Z m_75370_ + static + 0 o p_75371_ + 1 o p_75372_ + d (F)Z m_164419_ + 0 o p_164420_ +dia net/minecraft/world/level/levelgen/SingleThreadedRandomSource + d f_189346_ + e f_189347_ + f f_189348_ + g f_189349_ + h f_189350_ + i f_189351_ + (J)V + 0 o p_189353_ + b (J)V m_188584_ + 0 o p_189360_ + c (I)I m_64707_ + 0 o p_189356_ + d ()Lapf; m_213769_ + e ()Ldhx; m_188582_ + k ()D m_188583_ +dib net/minecraft/world/level/levelgen/SurfaceRules + a f_189375_ + b f_189376_ + c f_202169_ + d f_202170_ + e f_189377_ + f f_189378_ + ()V + static + ()V + a (Ldib$f;)Ldib$f; m_189392_ + static + 0 o p_189393_ + a (II)Ldib$f; m_189382_ + static + 0 o p_189383_ + 1 o p_189384_ + a (Ljava/util/List;)Ldib$c; m_189407_ + static + 0 o p_189408_ + a (IZILdqv;)Ldib$f; m_202171_ + static + 0 o p_202172_ + 1 o p_202173_ + 2 o p_202174_ + 3 o p_202175_ + a ()Ldib$f; m_189381_ + static + a (Ldib$f;Ldib$o;)Ldib$o; m_189394_ + static + 0 o p_189395_ + 1 o p_189396_ + a ([Lacp;)Ldib$f; m_189416_ + static + 0 o p_189417_ + a (Lacp;DD)Ldib$f; m_189412_ + static + 0 o p_189413_ + 1 o p_189414_ + 2 o p_189415_ + a (IZLdqv;)Ldib$f; m_202176_ + static + 0 o p_202177_ + 1 o p_202178_ + 2 o p_202179_ + a (Ldie;I)Ldib$f; m_189400_ + static + 0 o p_189401_ + 1 o p_189402_ + a (Lacp;D)Ldib$f; m_189409_ + static + 0 o p_189410_ + 1 o p_189411_ + a (Lhr;Ljava/lang/String;Laou;)Lcom/mojang/serialization/Codec; m_224603_ + static + 0 o p_224604_ + 1 o p_224605_ + 2 o p_224606_ + a (Ljava/lang/String;Ldie;Ldie;)Ldib$f; m_189403_ + static + 0 o p_189404_ + 1 o p_189405_ + 2 o p_189406_ + a ([Ldib$o;)Ldib$o; m_198272_ + static + 0 o p_198273_ + a (Ldcb;)Ldib$o; m_189390_ + static + 0 o p_189391_ + b (II)Ldib$f; m_189419_ + static + 0 o p_189420_ + 1 o p_189421_ + b ()Ldib$f; m_189418_ + static + b (Ldie;I)Ldib$f; m_189422_ + static + 0 o p_189423_ + 1 o p_189424_ + c ()Ldib$f; m_189425_ + static + d ()Ldib$f; m_189426_ + static + e ()Ldib$o; m_189427_ + static +dib$a net/minecraft/world/level/levelgen/SurfaceRules$AbovePreliminarySurface + a INSTANCE + c f_189429_ + d $VALUES + ()V + static + (Ljava/lang/String;I)V + 0 o p_189433_ + 1 o p_189434_ + a ()Laou; m_213794_ + a (Ldib$g;)Ldib$e; apply + 0 o p_189437_ + apply (Ljava/lang/Object;)Ljava/lang/Object; apply + 0 o p_189439_ + b ()[Ldib$a; m_189440_ + static + valueOf (Ljava/lang/String;)Ldib$a; valueOf + static + 0 o p_189442_ + values ()[Ldib$a; values + static +dib$aa net/minecraft/world/level/levelgen/SurfaceRules$YConditionSource + a f_189444_ + c f_189445_ + d f_189446_ + e f_189447_ + ()V + static + (Ldie;IZ)V + 0 o f_189444_ + 1 o f_189445_ + 2 o f_189446_ + a ()Laou; m_213794_ + a (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; m_189454_ + static + 0 o p_189455_ + a (Ldib$g;)Ldib$e; apply + 0 o p_189457_ + apply (Ljava/lang/Object;)Ljava/lang/Object; apply + 0 o p_189459_ + b ()Ldie; f_189444_ + c ()I f_189445_ + d ()Z f_189446_ + equals (Ljava/lang/Object;)Z equals + 0 o p_189464_ + hashCode ()I hashCode + toString ()Ljava/lang/String; toString +dib$aa$a net/minecraft/world/level/levelgen/SurfaceRules$YConditionSource$1YCondition + a f_189467_ + b f_189468_ + (Ldib$aa;Ldib$g;)V + 0 o p_189470_ + 1 o p_189471_ + a ()Z m_183479_ +dib$b net/minecraft/world/level/levelgen/SurfaceRules$Bandlands + a INSTANCE + c f_189474_ + d $VALUES + ()V + static + (Ljava/lang/String;I)V + 0 o p_189478_ + 1 o p_189479_ + a ()Laou; m_213795_ + a (Ldib$g;)Ldib$u; apply + 0 o p_189482_ + apply (Ljava/lang/Object;)Ljava/lang/Object; apply + 0 o p_189484_ + b ()[Ldib$b; m_189485_ + static + valueOf (Ljava/lang/String;)Ldib$b; valueOf + static + 0 o p_189487_ + values ()[Ldib$b; values + static +dib$c net/minecraft/world/level/levelgen/SurfaceRules$BiomeConditionSource + a f_189490_ + c f_189489_ + d f_204618_ + ()V + static + (Ljava/util/List;)V + 0 o p_189493_ + a ()Laou; m_213794_ + a (Ldib$c;)Ljava/util/List; m_204619_ + static + 0 o p_204620_ + a (Ldib$g;)Ldib$e; apply + 0 o p_189496_ + apply (Ljava/lang/Object;)Ljava/lang/Object; apply + 0 o p_189498_ + equals (Ljava/lang/Object;)Z equals + 0 o p_209694_ + hashCode ()I hashCode + toString ()Ljava/lang/String; toString +dib$c$a net/minecraft/world/level/levelgen/SurfaceRules$BiomeConditionSource$1BiomeCondition + a f_189504_ + b f_189506_ + (Ldib$c;Ldib$g;)V + 0 o p_204622_ + 1 o p_204623_ + a ()Z m_183479_ +dib$d net/minecraft/world/level/levelgen/SurfaceRules$BlockRuleSource + a f_189512_ + c f_189513_ + d f_189514_ + ()V + static + (Ldcb;Ldib$r;)V + 0 o f_189512_ + 1 o f_189513_ + (Ldcb;)V + 0 o p_189517_ + a ()Laou; m_213795_ + a (Ldib$g;)Ldib$u; apply + 0 o p_189523_ + apply (Ljava/lang/Object;)Ljava/lang/Object; apply + 0 o p_189525_ + b ()Ldcb; f_189512_ + c ()Ldib$r; f_189513_ + equals (Ljava/lang/Object;)Z equals + 0 o p_189529_ + hashCode ()I hashCode + toString ()Ljava/lang/String; toString +dib$e net/minecraft/world/level/levelgen/SurfaceRules$Condition + b ()Z m_183475_ +dib$f net/minecraft/world/level/levelgen/SurfaceRules$ConditionSource + b f_189532_ + ()V + static + a ()Laou; m_213794_ + a (Lhr;)Lcom/mojang/serialization/Codec; m_204624_ + static + 0 o p_204625_ + a (Ldib$f;)Lcom/mojang/serialization/Codec; m_224612_ + static + 0 o p_224613_ +dib$g net/minecraft/world/level/levelgen/SurfaceRules$Context + A f_189555_ + B f_189557_ + C f_189558_ + D f_189559_ + E f_189560_ + a f_198274_ + b f_198275_ + c f_198276_ + d f_198277_ + e f_189535_ + f f_189536_ + g f_189537_ + h f_189538_ + i f_189539_ + j f_224614_ + k f_189540_ + l f_189541_ + m f_189542_ + n f_189544_ + o f_198278_ + p f_198279_ + q f_189545_ + r f_189546_ + s f_189547_ + t f_189548_ + u f_189549_ + v f_202180_ + w f_189551_ + x f_189552_ + y f_189553_ + z f_189554_ + (Ldic;Ldhy;Lddx;Ldho;Ljava/util/function/Function;Lhr;Ldih;)V + 0 o p_224616_ + 1 o p_224617_ + 2 o p_224618_ + 3 o p_224619_ + 4 o p_224620_ + 5 o p_224621_ + 6 o p_224622_ + a (III)Lhe; m_204626_ + 0 o p_204627_ + 1 o p_204628_ + 2 o p_204629_ + a (II)V m_189569_ + 0 o p_189570_ + 1 o p_189571_ + a (I)I m_198280_ + static + 0 o p_198281_ + a (IIIIII)V m_189576_ + 0 o p_189577_ + 1 o p_189578_ + 2 o p_189579_ + 3 o p_189580_ + 4 o p_189581_ + 5 o p_189582_ + a ()D m_202181_ + b (I)I m_198282_ + static + 0 o p_198283_ + b ()I m_189583_ +dib$g$a net/minecraft/world/level/levelgen/SurfaceRules$Context$AbovePreliminarySurfaceCondition + a f_189586_ + (Ldib$g;)V + 0 o p_189588_ + b ()Z m_183475_ +dib$g$b net/minecraft/world/level/levelgen/SurfaceRules$Context$HoleCondition + (Ldib$g;)V + 0 o p_189591_ + a ()Z m_183479_ +dib$g$c net/minecraft/world/level/levelgen/SurfaceRules$Context$SteepMaterialCondition + (Ldib$g;)V + 0 o p_189594_ + a ()Z m_183479_ +dib$g$d net/minecraft/world/level/levelgen/SurfaceRules$Context$TemperatureHelperCondition + (Ldib$g;)V + 0 o p_189597_ + a ()Z m_183479_ +dib$h net/minecraft/world/level/levelgen/SurfaceRules$Hole + a INSTANCE + c f_189600_ + d $VALUES + ()V + static + (Ljava/lang/String;I)V + 0 o p_189604_ + 1 o p_189605_ + a ()Laou; m_213794_ + a (Ldib$g;)Ldib$e; apply + 0 o p_189608_ + apply (Ljava/lang/Object;)Ljava/lang/Object; apply + 0 o p_189610_ + b ()[Ldib$h; m_189611_ + static + valueOf (Ljava/lang/String;)Ldib$h; valueOf + static + 0 o p_189613_ + values ()[Ldib$h; values + static +dib$i net/minecraft/world/level/levelgen/SurfaceRules$LazyCondition + a f_189615_ + c f_189616_ + d f_189617_ + (Ldib$g;)V + 0 o p_189619_ + a ()Z m_183479_ + b ()Z m_183475_ + c ()J m_183477_ +dib$j net/minecraft/world/level/levelgen/SurfaceRules$LazyXZCondition + (Ldib$g;)V + 0 o p_189622_ + c ()J m_183477_ +dib$k net/minecraft/world/level/levelgen/SurfaceRules$LazyYCondition + (Ldib$g;)V + 0 o p_189625_ + c ()J m_183477_ +dib$l net/minecraft/world/level/levelgen/SurfaceRules$NoiseThresholdConditionSource + a f_189627_ + c f_189628_ + d f_189629_ + e f_189630_ + ()V + static + (Lacp;DD)V + 0 o f_189627_ + 1 o f_189628_ + 2 o f_189629_ + a ()Laou; m_213794_ + a (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; m_257347_ + static + 0 o p_258995_ + a (Ldib$g;)Ldib$e; apply + 0 o p_189640_ + apply (Ljava/lang/Object;)Ljava/lang/Object; apply + 0 o p_189642_ + b ()Lacp; f_189627_ + c ()D f_189628_ + d ()D f_189629_ + equals (Ljava/lang/Object;)Z equals + 0 o p_189647_ + hashCode ()I hashCode + toString ()Ljava/lang/String; toString +dib$l$a net/minecraft/world/level/levelgen/SurfaceRules$NoiseThresholdConditionSource$1NoiseThresholdCondition + a f_189650_ + b f_189651_ + e f_189652_ + (Ldib$l;Ldib$g;Ldwh;)V + 0 o p_189654_ + 1 o p_189655_ + 2 o p_189656_ + a ()Z m_183479_ +dib$m net/minecraft/world/level/levelgen/SurfaceRules$NotCondition + a f_189658_ + (Ldib$e;)V + 0 o f_189658_ + a ()Ldib$e; f_189658_ + b ()Z m_183475_ + equals (Ljava/lang/Object;)Z equals + 0 o p_189664_ + hashCode ()I hashCode + toString ()Ljava/lang/String; toString +dib$n net/minecraft/world/level/levelgen/SurfaceRules$NotConditionSource + a f_189667_ + c f_189668_ + ()V + static + (Ldib$f;)V + 0 o f_189667_ + a ()Laou; m_213794_ + a (Ldib$g;)Ldib$e; apply + 0 o p_189674_ + apply (Ljava/lang/Object;)Ljava/lang/Object; apply + 0 o p_189676_ + b ()Ldib$f; f_189667_ + equals (Ljava/lang/Object;)Z equals + 0 o p_189679_ + hashCode ()I hashCode + toString ()Ljava/lang/String; toString +dib$o net/minecraft/world/level/levelgen/SurfaceRules$RuleSource + b f_189682_ + ()V + static + a ()Laou; m_213795_ + a (Lhr;)Lcom/mojang/serialization/Codec; m_204630_ + static + 0 o p_204631_ + a (Ldib$o;)Lcom/mojang/serialization/Codec; m_224626_ + static + 0 o p_224627_ +dib$p net/minecraft/world/level/levelgen/SurfaceRules$SequenceRule + a f_189685_ + (Ljava/util/List;)V + 0 o f_189685_ + a ()Ljava/util/List; f_189685_ + equals (Ljava/lang/Object;)Z equals + 0 o p_189690_ + hashCode ()I hashCode + toString ()Ljava/lang/String; toString + tryApply (III)Ldcb; m_183550_ + 0 o p_189694_ + 1 o p_189695_ + 2 o p_189696_ +dib$q net/minecraft/world/level/levelgen/SurfaceRules$SequenceRuleSource + a f_189697_ + c f_189698_ + ()V + static + (Ljava/util/List;)V + 0 o f_189697_ + a ()Laou; m_213795_ + a (Ldib$g;)Ldib$u; apply + 0 o p_189704_ + apply (Ljava/lang/Object;)Ljava/lang/Object; apply + 0 o p_189706_ + b ()Ljava/util/List; f_189697_ + equals (Ljava/lang/Object;)Z equals + 0 o p_189709_ + hashCode ()I hashCode + toString ()Ljava/lang/String; toString +dib$r net/minecraft/world/level/levelgen/SurfaceRules$StateRule + a f_189712_ + (Ldcb;)V + 0 o f_189712_ + a ()Ldcb; f_189712_ + equals (Ljava/lang/Object;)Z equals + 0 o p_189717_ + hashCode ()I hashCode + toString ()Ljava/lang/String; toString + tryApply (III)Ldcb; m_183550_ + 0 o p_189721_ + 1 o p_189722_ + 2 o p_189723_ +dib$s net/minecraft/world/level/levelgen/SurfaceRules$Steep + a INSTANCE + c f_189725_ + d $VALUES + ()V + static + (Ljava/lang/String;I)V + 0 o p_189729_ + 1 o p_189730_ + a ()Laou; m_213794_ + a (Ldib$g;)Ldib$e; apply + 0 o p_189733_ + apply (Ljava/lang/Object;)Ljava/lang/Object; apply + 0 o p_189735_ + b ()[Ldib$s; m_189736_ + static + valueOf (Ljava/lang/String;)Ldib$s; valueOf + static + 0 o p_189738_ + values ()[Ldib$s; values + static +dib$t net/minecraft/world/level/levelgen/SurfaceRules$StoneDepthCheck + a f_189740_ + c f_189741_ + d f_202182_ + e f_189743_ + f f_189744_ + ()V + static + (IZILdqv;)V + 0 o f_189740_ + 1 o f_189741_ + 2 o f_202182_ + 3 o f_189743_ + a ()Laou; m_213794_ + a (Ldib$g;)Ldib$e; apply + 0 o p_189755_ + a (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; m_189752_ + static + 0 o p_189753_ + apply (Ljava/lang/Object;)Ljava/lang/Object; apply + 0 o p_189757_ + b ()I f_189740_ + c ()Z f_189741_ + d ()I f_202182_ + e ()Ldqv; f_189743_ + equals (Ljava/lang/Object;)Z equals + 0 o p_189762_ + hashCode ()I hashCode + toString ()Ljava/lang/String; toString +dib$t$a net/minecraft/world/level/levelgen/SurfaceRules$StoneDepthCheck$1StoneDepthCondition + a f_189766_ + b f_189767_ + e f_189768_ + (Ldib$t;Ldib$g;Z)V + 0 o p_189770_ + 1 o p_189771_ + 2 o p_189772_ + a ()Z m_183479_ +dib$u net/minecraft/world/level/levelgen/SurfaceRules$SurfaceRule + tryApply (III)Ldcb; m_183550_ + 0 o p_189774_ + 1 o p_189775_ + 2 o p_189776_ +dib$v net/minecraft/world/level/levelgen/SurfaceRules$Temperature + a INSTANCE + c f_189778_ + d $VALUES + ()V + static + (Ljava/lang/String;I)V + 0 o p_189782_ + 1 o p_189783_ + a ()Laou; m_213794_ + a (Ldib$g;)Ldib$e; apply + 0 o p_189786_ + apply (Ljava/lang/Object;)Ljava/lang/Object; apply + 0 o p_189788_ + b ()[Ldib$v; m_189789_ + static + valueOf (Ljava/lang/String;)Ldib$v; valueOf + static + 0 o p_189791_ + values ()[Ldib$v; values + static +dib$w net/minecraft/world/level/levelgen/SurfaceRules$TestRule + a f_189793_ + b f_189794_ + (Ldib$e;Ldib$u;)V + 0 o f_189793_ + 1 o f_189794_ + a ()Ldib$e; f_189793_ + b ()Ldib$u; f_189794_ + equals (Ljava/lang/Object;)Z equals + 0 o p_189801_ + hashCode ()I hashCode + toString ()Ljava/lang/String; toString + tryApply (III)Ldcb; m_183550_ + 0 o p_189805_ + 1 o p_189806_ + 2 o p_189807_ +dib$x net/minecraft/world/level/levelgen/SurfaceRules$TestRuleSource + a f_189808_ + c f_189809_ + d f_189810_ + ()V + static + (Ldib$f;Ldib$o;)V + 0 o f_189808_ + 1 o f_189809_ + a ()Laou; m_213795_ + a (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; m_189816_ + static + 0 o p_189817_ + a (Ldib$g;)Ldib$u; apply + 0 o p_189819_ + apply (Ljava/lang/Object;)Ljava/lang/Object; apply + 0 o p_189821_ + b ()Ldib$f; f_189808_ + c ()Ldib$o; f_189809_ + equals (Ljava/lang/Object;)Z equals + 0 o p_189825_ + hashCode ()I hashCode + toString ()Ljava/lang/String; toString +dib$y net/minecraft/world/level/levelgen/SurfaceRules$VerticalGradientConditionSource + a f_189828_ + c f_189829_ + d f_189830_ + e f_189831_ + ()V + static + (Lacq;Ldie;Ldie;)V + 0 o f_189828_ + 1 o f_189829_ + 2 o f_189830_ + a ()Laou; m_213794_ + a (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; m_189838_ + static + 0 o p_189839_ + a (Ldib$g;)Ldib$e; apply + 0 o p_189841_ + apply (Ljava/lang/Object;)Ljava/lang/Object; apply + 0 o p_189843_ + b ()Lacq; f_189828_ + c ()Ldie; f_189829_ + d ()Ldie; f_189830_ + equals (Ljava/lang/Object;)Z equals + 0 o p_189848_ + hashCode ()I hashCode + toString ()Ljava/lang/String; toString +dib$y$a net/minecraft/world/level/levelgen/SurfaceRules$VerticalGradientConditionSource$1VerticalGradientCondition + a f_189851_ + b f_189852_ + e f_189853_ + f f_189854_ + g f_189855_ + (Ldib$y;Ldib$g;IILdhx;)V + 0 o p_189857_ + 1 o p_189858_ + 2 o p_189859_ + 3 o p_189860_ + 4 o p_189861_ + a ()Z m_183479_ +dib$z net/minecraft/world/level/levelgen/SurfaceRules$WaterConditionSource + a f_189863_ + c f_189864_ + d f_189865_ + e f_189866_ + ()V + static + (IIZ)V + 0 o f_189863_ + 1 o f_189864_ + 2 o f_189865_ + a ()Laou; m_213794_ + a (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; m_189873_ + static + 0 o p_189874_ + a (Ldib$g;)Ldib$e; apply + 0 o p_189876_ + apply (Ljava/lang/Object;)Ljava/lang/Object; apply + 0 o p_189878_ + b ()I f_189863_ + c ()I f_189864_ + d ()Z f_189865_ + equals (Ljava/lang/Object;)Z equals + 0 o p_189883_ + hashCode ()I hashCode + toString ()Ljava/lang/String; toString +dib$z$a net/minecraft/world/level/levelgen/SurfaceRules$WaterConditionSource$1WaterCondition + a f_189886_ + b f_189887_ + (Ldib$z;Ldib$g;)V + 0 o p_189889_ + 1 o p_189890_ + a ()Z m_183479_ +dic net/minecraft/world/level/levelgen/SurfaceSystem + a f_189894_ + b f_189895_ + c f_189896_ + d f_189897_ + e f_189898_ + f f_189899_ + g f_189900_ + h f_189901_ + i f_189902_ + j f_189904_ + k f_189905_ + l f_189906_ + m f_189907_ + n f_189908_ + o f_189909_ + p f_189910_ + q f_189911_ + r f_189912_ + s f_189913_ + t f_224635_ + u f_189918_ + v f_189892_ + ()V + static + (Ldhy;Ldcb;ILdhx;)V + 0 o p_224637_ + 1 o p_224638_ + 2 o p_224639_ + 3 o p_224640_ + a (Lapf;)[Ldcb; m_224641_ + static + 0 o p_224642_ + a (Ldhy;Lcnm;Lhr;ZLdih;Lddx;Ldho;Ldib$o;)V m_224648_ + 0 o p_224649_ + 1 o p_224650_ + 2 o p_224651_ + 3 o p_224652_ + 4 o p_224653_ + 5 o p_224654_ + 6 o p_224655_ + 7 o p_224656_ + a (Ldcb;)Z m_189952_ + 0 o p_189953_ + a (Lddu;IIILcmo;)V m_189954_ + 0 o p_189955_ + 1 o p_189956_ + 2 o p_189957_ + 3 o p_189958_ + 4 o p_189959_ + a (II)I m_189927_ + 0 o p_189928_ + 1 o p_189929_ + a (Ldib$o;Ldjk;Ljava/util/function/Function;Lddx;Ldho;Lgu;Z)Ljava/util/Optional; m_189971_ + 0 o p_189972_ + 1 o p_189973_ + 2 o p_189974_ + 3 o p_189975_ + 4 o p_189976_ + 5 o p_189977_ + 6 o p_189978_ + a (III)Ldcb; m_189930_ + 0 o p_189931_ + 1 o p_189932_ + 2 o p_189933_ + a (Lapf;[Ldcb;ILdcb;)V m_224643_ + static + 0 o p_224644_ + 1 o p_224645_ + 2 o p_224646_ + 3 o p_224647_ + a (ILcnk;Lddu;Lgu$a;III)V m_189934_ + 0 o p_189935_ + 1 o p_189936_ + 2 o p_189937_ + 3 o p_189938_ + 4 o p_189939_ + 5 o p_189940_ + 6 o p_189941_ + b (II)D m_202189_ + 0 o p_202190_ + 1 o p_202191_ +dic$1 net/minecraft/world/level/levelgen/SurfaceSystem$1 + a f_189996_ + b f_189997_ + c f_189998_ + d f_189999_ + (Ldic;Lddx;Lgu$a;Lclt;)V + 0 o p_190001_ + 1 o p_190002_ + 2 o p_190003_ + 3 o p_190004_ + a (I)Ldcb; m_183556_ + 0 o p_190006_ + a (ILdcb;)V m_183639_ + 0 o p_190008_ + 1 o p_190009_ + toString ()Ljava/lang/String; toString +did net/minecraft/world/level/levelgen/ThreadSafeLegacyRandomSource + d f_224657_ + e f_224658_ + f f_224659_ + g f_224660_ + h f_224661_ + i f_224662_ + (J)V + 0 o p_224664_ + b (J)V m_188584_ + 0 o p_224666_ + c (I)I m_64707_ + 0 o p_224668_ + d ()Lapf; m_213769_ + e ()Ldhx; m_188582_ + k ()D m_188583_ +die net/minecraft/world/level/levelgen/VerticalAnchor + a f_158914_ + b f_158915_ + c f_158916_ + ()V + static + a (Lcom/mojang/datafixers/util/Either;)Ldie; m_158924_ + static + 0 o p_158925_ + a (I)Ldie; m_158922_ + static + 0 o p_158923_ + a ()Ldie; m_158921_ + static + a (Ldie;)Lcom/mojang/datafixers/util/Either; m_158926_ + static + 0 o p_158927_ + a (Ldih;)I m_142322_ + 0 o p_158928_ + b ()Ldie; m_158929_ + static + b (Lcom/mojang/datafixers/util/Either;)Ljava/lang/Record; m_209697_ + static + 0 o p_209698_ + b (I)Ldie; m_158930_ + static + 0 o p_158931_ + c (I)Ldie; m_158935_ + static + 0 o p_158936_ +die$a net/minecraft/world/level/levelgen/VerticalAnchor$AboveBottom + d f_158937_ + e f_209699_ + ()V + static + (I)V + 0 o f_209699_ + a (Ldih;)I m_142322_ + 0 o p_158942_ + c ()I f_209699_ + equals (Ljava/lang/Object;)Z equals + 0 o p_209702_ + hashCode ()I hashCode + toString ()Ljava/lang/String; toString +die$b net/minecraft/world/level/levelgen/VerticalAnchor$Absolute + d f_158944_ + e f_209704_ + ()V + static + (I)V + 0 o f_209704_ + a (Ldih;)I m_142322_ + 0 o p_158949_ + c ()I f_209704_ + equals (Ljava/lang/Object;)Z equals + 0 o p_209707_ + hashCode ()I hashCode + toString ()Ljava/lang/String; toString +die$c net/minecraft/world/level/levelgen/VerticalAnchor$BelowTop + d f_158951_ + e f_209709_ + ()V + static + (I)V + 0 o f_209709_ + a (Ldih;)I m_142322_ + 0 o p_158956_ + c ()I f_209709_ + equals (Ljava/lang/Object;)Z equals + 0 o p_209712_ + hashCode ()I hashCode + toString ()Ljava/lang/String; toString +dif net/minecraft/world/level/levelgen/WorldDimensions + a f_243810_ + b f_243948_ + c f_243726_ + d f_243847_ + ()V + static + (Lhr;)V + 0 o f_243948_ + a (Lhr;Lhr;Lddy;)Lhr; m_246477_ + static + 0 o p_248853_ + 1 o p_251908_ + 2 o p_251737_ + a (Lhr;)Ldif$b; m_245300_ + 0 o p_248787_ + a (Ldfl;)Z m_245847_ + static + 0 o p_250762_ + a ()Lddy; m_246737_ + a (Lhs;Lddy;)Ldif; m_246747_ + 0 o p_251390_ + 1 o p_248755_ + a (Lia;Ldif$a;)V m_257350_ + static + 0 o p_259000_ + 1 o p_259001_ + a (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; m_257348_ + static + 0 o p_258996_ + a (Lhr;Ljava/util/List;Lacp;)V m_257349_ + 0 o p_258997_ + 1 o p_258998_ + 2 o p_248571_ + a (Ljava/util/stream/Stream;)Ljava/util/stream/Stream; m_247421_ + static + 0 o p_251309_ + a (Ljava/util/List;Lacp;Ldfl;)V m_246533_ + static + 0 o p_249027_ + 1 o p_249313_ + 2 o p_250263_ + a (Lacp;)Ljava/util/Optional; m_245957_ + 0 o p_250824_ + a (Lhr;Lhe;Lddy;)Lhr; m_247534_ + static + 0 o p_248907_ + 1 o p_251895_ + 2 o p_250220_ + a (Lacp;Ldfl;)Lcom/mojang/serialization/Lifecycle; m_245357_ + static + 0 o p_250764_ + 1 o p_248865_ + b ()Lcom/google/common/collect/ImmutableSet; m_247539_ + b (Ldfl;)Z m_246615_ + static + 0 o p_250497_ + b (Lacp;Ldfl;)Z m_245858_ + static + 0 o p_250556_ + 1 o p_250034_ + b (Lacp;)Ljava/util/Optional; m_257351_ + 0 o p_259002_ + b (Lhr;)Ldzc$a; m_246830_ + static + 0 o p_251549_ + c (Ldfl;)Z m_247592_ + static + 0 o p_250720_ + c ()Z m_246739_ + c (Lacp;)Z m_246921_ + static + 0 o p_251885_ + d ()Lhr; f_243948_ + d (Ldfl;)Ldzc$a; m_245587_ + static + 0 o p_251481_ + equals (Ljava/lang/Object;)Z equals + 0 o p_251618_ + hashCode ()I hashCode + toString ()Ljava/lang/String; toString +dif$a net/minecraft/world/level/levelgen/WorldDimensions$1Entry + a f_244236_ + b f_243758_ + (Lacp;Ldfl;)V + 0 o f_244236_ + 1 o f_243758_ + a ()Lacp; f_244236_ + b ()Ldfl; f_243758_ + c ()Lcom/mojang/serialization/Lifecycle; m_246583_ + equals (Ljava/lang/Object;)Z equals + 0 o p_250835_ + hashCode ()I hashCode + toString ()Ljava/lang/String; toString +dif$b net/minecraft/world/level/levelgen/WorldDimensions$Complete + a f_244049_ + b f_244634_ + (Lhr;Ldzc$a;)V + 0 o f_244049_ + 1 o f_244634_ + a ()Lcom/mojang/serialization/Lifecycle; m_245945_ + b ()Lhs$b; m_245593_ + c ()Lhr; f_244049_ + d ()Ldzc$a; f_244634_ + equals (Ljava/lang/Object;)Z equals + 0 o p_250925_ + hashCode ()I hashCode + toString ()Ljava/lang/String; toString +dig net/minecraft/world/level/levelgen/WorldGenSettings + a f_64600_ + b f_243992_ + c f_64605_ + ()V + static + (Ldii;Ldif;)V + 0 o f_243992_ + 1 o f_64605_ + a (Lcom/mojang/serialization/DynamicOps;Ldii;Ldif;)Lcom/mojang/serialization/DataResult; m_246823_ + static + 0 o p_250104_ + 1 o p_250578_ + 2 o p_249244_ + a (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; m_245022_ + static + 0 o p_248477_ + a (Lcom/mojang/serialization/DynamicOps;Ldii;Lhs;)Lcom/mojang/serialization/DataResult; m_245563_ + static + 0 o p_250917_ + 1 o p_250366_ + 2 o p_251515_ + a ()Ldii; f_243992_ + b ()Ldif; f_64605_ + equals (Ljava/lang/Object;)Z equals + 0 o p_250076_ + hashCode ()I hashCode + toString ()Ljava/lang/String; toString +dih net/minecraft/world/level/levelgen/WorldGenerationContext + a f_182504_ + b f_182505_ + (Lddy;Lcmo;)V + 0 o p_182507_ + 1 o p_182508_ + a ()I m_142201_ + b ()I m_142208_ +dii net/minecraft/world/level/levelgen/WorldOptions + a f_244622_ + b f_244225_ + c f_243816_ + d f_244001_ + e f_244615_ + f f_243984_ + ()V + static + (JZZLjava/util/Optional;)V + 0 o p_249191_ + 1 o p_250927_ + 2 o p_249013_ + 3 o p_250735_ + (JZZ)V + 0 o p_251567_ + 1 o p_250743_ + 2 o p_250454_ + a (Ljava/lang/String;)Ljava/util/OptionalLong; m_261063_ + static + 0 o p_262144_ + a (Z)Ldii; m_247325_ + 0 o p_251744_ + a (Ldii;)Ljava/util/Optional; m_245056_ + static + 0 o p_249400_ + a (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; m_247237_ + static + 0 o p_249978_ + a ()Ldii; m_247394_ + static + a (Ljava/util/OptionalLong;)Ldii; m_261051_ + 0 o p_261572_ + b (Z)Ldii; m_247283_ + 0 o p_251426_ + b ()J m_245499_ + c ()Z m_247749_ + d ()Z m_245100_ + e ()Z m_247070_ + f ()J m_255240_ + static +dij net/minecraft/world/level/levelgen/WorldgenRandom + d f_190054_ + e f_64676_ + (Lapf;)V + 0 o p_224680_ + a (IIJJ)Lapf; m_224681_ + static + 0 o p_224682_ + 1 o p_224683_ + 2 o p_224684_ + 3 o p_224685_ + a (JII)J m_64690_ + 0 o p_64691_ + 1 o p_64692_ + 2 o p_64693_ + a (JIII)V m_190058_ + 0 o p_190059_ + 1 o p_190060_ + 2 o p_190061_ + 3 o p_190062_ + b (JII)V m_190064_ + 0 o p_190065_ + 1 o p_190066_ + 2 o p_190067_ + b (J)V m_188584_ + 0 o p_190073_ + c (I)I m_64707_ + 0 o p_64708_ + c (JII)V m_190068_ + 0 o p_190069_ + 1 o p_190070_ + 2 o p_190071_ + d ()Lapf; m_213769_ + e ()Ldhx; m_188582_ + l ()I m_158960_ +dij$a net/minecraft/world/level/levelgen/WorldgenRandom$Algorithm + a LEGACY + b XOROSHIRO + c f_190076_ + d $VALUES + ()V + static + (Ljava/lang/String;ILjava/util/function/LongFunction;)V + 0 o p_190080_ + 1 o p_190081_ + 2 o p_190082_ + a ()[Ldij$a; m_190083_ + static + a (J)Lapf; m_224687_ + 0 o p_224688_ + valueOf (Ljava/lang/String;)Ldij$a; valueOf + static + 0 o p_190087_ + values ()[Ldij$a; values + static +dik net/minecraft/world/level/levelgen/Xoroshiro128PlusPlus + a f_286992_ + b f_190089_ + c f_190090_ + ()V + static + (Ldhz$a;)V + 0 o p_190095_ + (JJ)V + 0 o p_190092_ + 1 o p_190093_ + a (Ldik;)Ljava/util/stream/LongStream; m_287273_ + static + 0 o p_287687_ + a ()J m_190096_ + a (Ljava/util/stream/LongStream;)Lcom/mojang/serialization/DataResult; m_287194_ + static + 0 o p_287733_ + a ([J)Ldik; m_287249_ + static + 0 o p_287742_ +dil net/minecraft/world/level/levelgen/XoroshiroRandomSource + b f_286948_ + c f_190097_ + d f_190098_ + e f_190099_ + f f_190100_ + ()V + static + (Ldik;)V + 0 o p_287656_ + (J)V + 0 o p_190102_ + (Ldhz$a;)V + 0 o p_289014_ + (JJ)V + 0 o p_190104_ + 1 o p_190105_ + a (Ldil;)Ldik; m_287215_ + static + 0 o p_287690_ + a (Ldik;)Ldil; m_287168_ + static + 0 o p_287645_ + a (I)I m_188503_ + 0 o p_190118_ + b (I)V m_190110_ + 0 o p_190111_ + b (J)V m_188584_ + 0 o p_190121_ + c (I)J m_190107_ + 0 o p_190108_ + d ()Lapf; m_213769_ + e ()Ldhx; m_188582_ + f ()I m_188502_ + g ()J m_188505_ + h ()Z m_188499_ + i ()F m_188501_ + j ()D m_188500_ + k ()D m_188583_ +dil$a net/minecraft/world/level/levelgen/XoroshiroRandomSource$XoroshiroPositionalRandomFactory + a f_190123_ + b f_190124_ + (JJ)V + 0 o p_190127_ + 1 o p_190128_ + a (Ljava/lang/StringBuilder;)V m_183502_ + 0 o p_190136_ + a (III)Lapf; m_213715_ + 0 o p_224691_ + 1 o p_224692_ + 2 o p_224693_ + a (Ljava/lang/String;)Lapf; m_214111_ + 0 o p_224695_ +dim net/minecraft/world/level/levelgen/blending/Blender + a f_190137_ + b f_190138_ + c f_190139_ + d f_190140_ + e f_190141_ + f f_190142_ + g f_197017_ + h f_224696_ + i f_224697_ + ()V + static + (Lit/unimi/dsi/fastutil/longs/Long2ObjectOpenHashMap;Lit/unimi/dsi/fastutil/longs/Long2ObjectOpenHashMap;)V + 0 o p_202197_ + 1 o p_202198_ + a (III)Lhe; m_224706_ + 0 o p_224707_ + 1 o p_224708_ + 2 o p_224709_ + a (Ljava/util/List;DDD)D m_202265_ + static + 0 o p_202266_ + 1 o p_202267_ + 2 o p_202268_ + 3 o p_202269_ + a (IILorg/apache/commons/lang3/mutable/MutableDouble;Lorg/apache/commons/lang3/mutable/MutableObject;IILhe;)V m_224718_ + static + 0 o p_224719_ + 1 o p_224720_ + 2 o p_224721_ + 3 o p_224722_ + 4 o p_224723_ + 5 o p_224724_ + 6 o p_224725_ + a (IIILorg/apache/commons/lang3/mutable/MutableDouble;Lorg/apache/commons/lang3/mutable/MutableDouble;Lorg/apache/commons/lang3/mutable/MutableDouble;IIID)V m_202223_ + static + 0 o p_202224_ + 1 o p_202225_ + 2 o p_202226_ + 3 o p_202227_ + 4 o p_202228_ + 5 o p_202229_ + 6 o p_202230_ + 7 o p_202231_ + 8 o p_202232_ + 9 o p_202233_ + a ()Ldim; m_190153_ + static + a (Lhb;Ldin;)Ldim$c; m_224729_ + static + 0 o p_224730_ + 1 o p_224731_ + a (Ljava/util/List;Lhb;Ldin;)V m_224732_ + static + 0 o p_224733_ + 1 o p_224734_ + 2 o p_224735_ + a (IIILorg/apache/commons/lang3/mutable/MutableDouble;Lorg/apache/commons/lang3/mutable/MutableObject;Ljava/lang/Long;Ldin;)V m_224710_ + static + 0 o p_224711_ + 1 o p_224712_ + 2 o p_224713_ + 3 o p_224714_ + 4 o p_224715_ + 5 o p_224716_ + 6 o p_224717_ + a (DDDDDD)D m_197024_ + static + 0 o p_197025_ + 1 o p_197026_ + 2 o p_197027_ + 3 o p_197028_ + 4 o p_197029_ + 5 o p_197030_ + a (IILorg/apache/commons/lang3/mutable/MutableDouble;Lorg/apache/commons/lang3/mutable/MutableDouble;Lorg/apache/commons/lang3/mutable/MutableDouble;IID)V m_190193_ + static + 0 o p_190194_ + 1 o p_190195_ + 2 o p_190196_ + 3 o p_190197_ + 4 o p_190198_ + 5 o p_190199_ + 6 o p_190200_ + 7 o p_190201_ + a (IIILorg/apache/commons/lang3/mutable/MutableDouble;Lorg/apache/commons/lang3/mutable/MutableDouble;Lorg/apache/commons/lang3/mutable/MutableDouble;Ljava/lang/Long;Ldin;)V m_202234_ + static + 0 o p_202235_ + 1 o p_202236_ + 2 o p_202237_ + 3 o p_202238_ + 4 o p_202239_ + 5 o p_202240_ + 6 o p_202241_ + 7 o p_202242_ + a (D)D m_190154_ + static + 0 o p_190155_ + a (Lddw$a;Lddw;)V m_202257_ + static + 0 o p_202258_ + 1 o p_202259_ + a (Ldin;Ljava/util/Map;)Ldim$c; m_224726_ + static + 0 o p_224727_ + 1 o p_224728_ + a (Ldim$b;IIIII)D m_190211_ + 0 o p_190212_ + 1 o p_190213_ + 2 o p_190214_ + 3 o p_190215_ + 4 o p_190216_ + 5 o p_190217_ + a (DDDDDDD)D m_224698_ + static + 0 o p_224699_ + 1 o p_224700_ + 2 o p_224701_ + 3 o p_224702_ + 4 o p_224703_ + 5 o p_224704_ + 6 o p_224705_ + a (Ldim$c;III)Z m_202260_ + static + 0 o p_202261_ + 1 o p_202262_ + 2 o p_202263_ + 3 o p_202264_ + a (Laim;)Ldim; m_190202_ + static + 0 o p_190203_ + a (Laim;Lddx;)V m_197031_ + static + 0 o p_197032_ + 1 o p_197033_ + a (II)Ldim$a; m_207242_ + 0 o p_209719_ + 1 o p_209720_ + a (IIILdim$b;)D m_190174_ + 0 o p_190175_ + 1 o p_190176_ + 2 o p_190177_ + 3 o p_190178_ + a (IILorg/apache/commons/lang3/mutable/MutableDouble;Lorg/apache/commons/lang3/mutable/MutableDouble;Lorg/apache/commons/lang3/mutable/MutableDouble;Ljava/lang/Long;Ldin;)V m_202243_ + static + 0 o p_202244_ + 1 o p_202245_ + 2 o p_202246_ + 3 o p_202247_ + 4 o p_202248_ + 5 o p_202249_ + 6 o p_202250_ + a (Ldhd$b;D)D m_207103_ + 0 o p_209721_ + 1 o p_209722_ + a (Lddx;Lgu;)V m_197040_ + static + 0 o p_197041_ + 1 o p_197042_ + a (Lcng;Ldes;)V m_197034_ + static + 0 o p_197035_ + 1 o p_197036_ + a (Lcnn;)Lcnn; m_183383_ + 0 o p_190204_ + a (Lcnn;IIILcnt$f;)Lhe; m_204667_ + 0 o p_204668_ + 1 o p_204669_ + 2 o p_204670_ + 3 o p_204671_ + 4 o p_204672_ +dim$1 net/minecraft/world/level/levelgen/blending/Blender$1 + (Lit/unimi/dsi/fastutil/longs/Long2ObjectOpenHashMap;Lit/unimi/dsi/fastutil/longs/Long2ObjectOpenHashMap;)V + 0 o p_202274_ + 1 o p_202275_ + a (Ldhd$b;D)D m_207103_ + 0 o p_209727_ + 1 o p_209728_ + a (II)Ldim$a; m_207242_ + 0 o p_209724_ + 1 o p_209725_ + a (Lcnn;)Lcnn; m_183383_ + 0 o p_190232_ +dim$a net/minecraft/world/level/levelgen/blending/Blender$BlendingOutput + a f_209729_ + b f_209730_ + (DD)V + 0 o f_209729_ + 1 o f_209730_ + a ()D f_209729_ + b ()D f_209730_ + equals (Ljava/lang/Object;)Z equals + 0 o p_209737_ + hashCode ()I hashCode + toString ()Ljava/lang/String; toString +dim$b net/minecraft/world/level/levelgen/blending/Blender$CellValueGetter + get (Ldin;III)D m_190233_ + 0 o p_190234_ + 1 o p_190235_ + 2 o p_190236_ + 3 o p_190237_ +dim$c net/minecraft/world/level/levelgen/blending/Blender$DistanceGetter + getDistance (DDD)D m_197061_ + 0 o p_197062_ + 1 o p_197063_ + 2 o p_197064_ +din net/minecraft/world/level/levelgen/blending/BlendingData + a f_198290_ + b f_190252_ + c f_198291_ + d f_190253_ + e f_190254_ + f f_190255_ + g f_224736_ + h f_224737_ + i f_190257_ + j f_190258_ + k f_190259_ + l f_190260_ + m f_190261_ + n f_190262_ + o f_190263_ + p f_224738_ + q f_190265_ + r f_190267_ + s f_190269_ + t f_202276_ + u f_190270_ + v f_190272_ + ()V + static + (IILjava/util/Optional;)V + 0 o p_224740_ + 1 o p_224741_ + 2 o p_224742_ + a (IILdin$c;)V m_190295_ + 0 o p_190296_ + 1 o p_190297_ + 2 o p_190298_ + a (IIILdin$a;)V m_224748_ + 0 o p_224749_ + 1 o p_224750_ + 2 o p_224751_ + 3 o p_224752_ + a (Lddx;Lgu$a;)D m_198297_ + static + 0 o p_198298_ + 1 o p_198299_ + a (Lddx;II)I m_190310_ + 0 o p_190311_ + 1 o p_190312_ + 2 o p_190313_ + a (Lcng;IIZ)Ljava/util/Set; m_197065_ + static + 0 o p_197066_ + 1 o p_197067_ + 2 o p_197068_ + 3 o p_197069_ + a (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; m_224753_ + static + 0 o p_224754_ + a (Laim;II)Ldin; m_190304_ + static + 0 o p_190305_ + 1 o p_190306_ + 2 o p_190307_ + a ([D)V m_224755_ + static + 0 o p_224756_ + a (II)I m_190330_ + static + 0 o p_190331_ + 1 o p_190332_ + a ()Lcmo; m_224743_ + a (Ldin;)Lcom/mojang/serialization/DataResult; m_190320_ + static + 0 o p_190321_ + a (ILddx;II)V m_190299_ + 0 o p_190300_ + 1 o p_190301_ + 2 o p_190302_ + 3 o p_190303_ + a (D)Z m_224744_ + static + 0 o p_224745_ + a (I)I m_224746_ + 0 o p_224747_ + a (IIIILdin$b;)V m_190289_ + 0 o p_190290_ + 1 o p_190291_ + 2 o p_190292_ + 3 o p_190293_ + 4 o p_190294_ + a ([DI)D m_190324_ + 0 o p_190325_ + 1 o p_190326_ + a (Lddx;Ljava/util/Set;)V m_190317_ + 0 o p_190318_ + 1 o p_190319_ + a (III)D m_190285_ + 0 o p_190286_ + 1 o p_190287_ + 2 o p_190288_ + a (Lddx;Lgu;)Z m_190314_ + static + 0 o p_190315_ + 1 o p_190316_ + a (Lddx;III)[D m_198292_ + 0 o p_198293_ + 1 o p_198294_ + 2 o p_198295_ + 3 o p_198296_ + b (Ldin;)Ljava/util/Optional; m_224761_ + static + 0 o p_224762_ + b (III)D m_190333_ + 0 o p_190334_ + 1 o p_190335_ + 2 o p_190336_ + b (Lddx;Lgu$a;)D m_198300_ + static + 0 o p_198301_ + 1 o p_198302_ + b (Lddx;II)Ljava/util/List; m_224757_ + 0 o p_224758_ + 1 o p_224759_ + 2 o p_224760_ + b ()I m_190327_ + b (II)I m_190350_ + static + 0 o p_190351_ + 1 o p_190352_ + b (I)I m_190348_ + static + 0 o p_190349_ + c (I)I m_190354_ + static + 0 o p_190355_ + c ()I m_224763_ + c (Ldin;)Ljava/lang/Integer; m_224764_ + static + 0 o p_224765_ + d (Ldin;)Ljava/lang/Integer; m_224766_ + static + 0 o p_224767_ + d (I)I m_190356_ + static + 0 o p_190357_ + d ()I m_190347_ + e ()I m_190353_ + f ()Ljava/lang/String; m_274287_ + static +din$a net/minecraft/world/level/levelgen/blending/BlendingData$BiomeConsumer + consume (IILhe;)V m_204673_ + 0 o p_204674_ + 1 o p_204675_ + 2 o p_204676_ +din$b net/minecraft/world/level/levelgen/blending/BlendingData$DensityConsumer + consume (IIID)V m_190361_ + 0 o p_190362_ + 1 o p_190363_ + 2 o p_190364_ + 3 o p_190365_ +din$c net/minecraft/world/level/levelgen/blending/BlendingData$HeightConsumer + consume (IID)V m_190366_ + 0 o p_190367_ + 1 o p_190368_ + 2 o p_190369_ +dio net/minecraft/world/level/levelgen/blending/package-info +dip net/minecraft/world/level/levelgen/blockpredicates/AllOfPredicate + a f_190370_ + ()V + static + (Ljava/util/List;)V + 0 o p_190373_ + a (Lcng;Lgu;)Z test + 0 o p_190376_ + 1 o p_190377_ + a ()Ldis; m_183575_ + test (Ljava/lang/Object;Ljava/lang/Object;)Z test + 0 o p_190379_ + 1 o p_190380_ +diq net/minecraft/world/level/levelgen/blockpredicates/AnyOfPredicate + a f_190381_ + ()V + static + (Ljava/util/List;)V + 0 o p_190384_ + a (Lcng;Lgu;)Z test + 0 o p_190387_ + 1 o p_190388_ + a ()Ldis; m_183575_ + test (Ljava/lang/Object;Ljava/lang/Object;)Z test + 0 o p_190390_ + 1 o p_190391_ +dir net/minecraft/world/level/levelgen/blockpredicates/BlockPredicate + b f_190392_ + c f_190393_ + d f_190394_ + ()V + static + a ()Ldis; m_183575_ + a ([Lcpn;)Ldir; m_224780_ + static + 0 o p_224781_ + a (Lhz;[Lcpn;)Ldir; m_224774_ + static + 0 o p_224775_ + 1 o p_224776_ + a (Lhz;)Ldir; m_190410_ + static + 0 o p_190411_ + a (Lha;)Ldir; m_198913_ + static + 0 o p_198914_ + a (Ldcb;Lhz;)Ldir; m_190399_ + static + 0 o p_190400_ + 1 o p_190401_ + a (Ldir;)Ldir; m_190402_ + static + 0 o p_190403_ + a (Lhz;Lanl;)Ldir; m_224768_ + static + 0 o p_224769_ + 1 o p_224770_ + a (Lhz;[Ldxd;)Ldir; m_224777_ + static + 0 o p_224778_ + 1 o p_224779_ + a (Ldir;Ldir;)Ldir; m_190404_ + static + 0 o p_190405_ + 1 o p_190406_ + a ([Ldxd;)Ldir; m_224782_ + static + 0 o p_224783_ + a (Lhz;Lha;)Ldir; m_198308_ + static + 0 o p_198309_ + 1 o p_198310_ + a (Lhz;Ljava/util/List;)Ldir; m_224771_ + static + 0 o p_224772_ + 1 o p_224773_ + a ([Ldir;)Ldir; m_190417_ + static + 0 o p_190418_ + a (Lanl;)Ldir; m_204677_ + static + 0 o p_204678_ + a (Ljava/util/List;)Ldir; m_190412_ + static + 0 o p_190413_ + b ()Ldir; m_190419_ + static + b (Ljava/util/List;)Ldir; m_190425_ + static + 0 o p_190426_ + b (Lhz;Ljava/util/List;)Ldir; m_224784_ + static + 0 o p_224785_ + 1 o p_224786_ + b ([Ldir;)Ldir; m_190430_ + static + 0 o p_190431_ + b (Ldir;Ldir;)Ldir; m_190420_ + static + 0 o p_190421_ + 1 o p_190422_ + b (Lhz;)Ldir; m_190423_ + static + 0 o p_190424_ + c ()Ldir; m_190432_ + static + c (Lhz;)Ldir; m_245833_ + static + 0 o p_249383_ + c (Ljava/util/List;)Ldir; m_198311_ + static + 0 o p_198312_ + d ()Ldir; m_246848_ + static + d (Lhz;)Ldir; m_190433_ + static + 0 o p_190434_ + e ()Ldir; m_190435_ + static +dis net/minecraft/world/level/levelgen/blockpredicates/BlockPredicateType + a f_190436_ + b f_198313_ + c f_190437_ + d f_198314_ + e f_190438_ + f f_190439_ + g f_190440_ + h f_190441_ + i f_190442_ + j f_190443_ + k f_190444_ + l f_190445_ + ()V + static + a (Lcom/mojang/serialization/Codec;)Lcom/mojang/serialization/Codec; m_190447_ + static + 0 o p_190448_ + a (Ljava/lang/String;Lcom/mojang/serialization/Codec;)Ldis; m_190449_ + static + 0 o p_190450_ + 1 o p_190451_ + codec ()Lcom/mojang/serialization/Codec; m_190452_ +dit net/minecraft/world/level/levelgen/blockpredicates/CombiningPredicate + e f_190453_ + (Ljava/util/List;)V + 0 o p_190455_ + a (Ldit;)Ljava/util/List; m_190456_ + static + 0 o p_190457_ + a (Ljava/util/function/Function;)Lcom/mojang/serialization/Codec; m_190458_ + static + 0 o p_190459_ + a (Ljava/util/function/Function;Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; m_190460_ + static + 0 o p_190461_ + 1 o p_190462_ +diu net/minecraft/world/level/levelgen/blockpredicates/HasSturdyFacePredicate + a f_198315_ + e f_198316_ + f f_198317_ + ()V + static + (Lhz;Lha;)V + 0 o p_198320_ + 1 o p_198321_ + a (Lcng;Lgu;)Z test + 0 o p_198324_ + 1 o p_198325_ + a (Ldiu;)Lha; m_198328_ + static + 0 o p_198329_ + a ()Ldis; m_183575_ + a (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; m_198326_ + static + 0 o p_198327_ + b (Ldiu;)Lhz; m_198330_ + static + 0 o p_198331_ + test (Ljava/lang/Object;Ljava/lang/Object;)Z test + 0 o p_198333_ + 1 o p_198334_ +div net/minecraft/world/level/levelgen/blockpredicates/InsideWorldBoundsPredicate + a f_190463_ + e f_190464_ + ()V + static + (Lhz;)V + 0 o p_190467_ + a (Lcng;Lgu;)Z test + 0 o p_190470_ + 1 o p_190471_ + a (Ldiv;)Lhz; m_190474_ + static + 0 o p_190475_ + a ()Ldis; m_183575_ + a (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; m_190472_ + static + 0 o p_190473_ + test (Ljava/lang/Object;Ljava/lang/Object;)Z test + 0 o p_190477_ + 1 o p_190478_ +diw net/minecraft/world/level/levelgen/blockpredicates/MatchingBlockTagPredicate + a f_198335_ + e f_198336_ + ()V + static + (Lhz;Lanl;)V + 0 o p_204683_ + 1 o p_204684_ + a (Ldiw;)Lanl; m_204685_ + static + 0 o p_204686_ + a (Ldcb;)Z m_183454_ + 0 o p_198343_ + a ()Ldis; m_183575_ + b (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; m_257352_ + static + 0 o p_259003_ +dix net/minecraft/world/level/levelgen/blockpredicates/MatchingBlocksPredicate + a f_190479_ + e f_190480_ + ()V + static + (Lhz;Lhi;)V + 0 o p_204690_ + 1 o p_204691_ + a (Ldcb;)Z m_183454_ + 0 o p_190487_ + a (Ldix;)Lhi; m_204692_ + static + 0 o p_204693_ + a ()Ldis; m_183575_ + b (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; m_257353_ + static + 0 o p_259004_ +diy net/minecraft/world/level/levelgen/blockpredicates/MatchingFluidsPredicate + a f_190492_ + e f_190493_ + ()V + static + (Lhz;Lhi;)V + 0 o p_204695_ + 1 o p_204696_ + a (Ldcb;)Z m_183454_ + 0 o p_190500_ + a ()Ldis; m_183575_ + a (Ldiy;)Lhi; m_204697_ + static + 0 o p_204698_ + b (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; m_257354_ + static + 0 o p_259005_ +diz net/minecraft/world/level/levelgen/blockpredicates/NotPredicate + a f_190505_ + e f_190506_ + ()V + static + (Ldir;)V + 0 o p_190509_ + a (Lcng;Lgu;)Z test + 0 o p_190512_ + 1 o p_190513_ + a ()Ldis; m_183575_ + a (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; m_190514_ + static + 0 o p_190515_ + a (Ldiz;)Ldir; m_190516_ + static + 0 o p_190517_ + test (Ljava/lang/Object;Ljava/lang/Object;)Z test + 0 o p_190519_ + 1 o p_190520_ +dj net/minecraft/advancements/critereon/package-info +dja net/minecraft/world/level/levelgen/blockpredicates/ReplaceablePredicate + a f_190521_ + ()V + static + (Lhz;)V + 0 o p_190524_ + a (Ldcb;)Z m_183454_ + 0 o p_190527_ + a ()Ldis; m_183575_ + b (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; m_190528_ + static + 0 o p_190529_ +djb net/minecraft/world/level/levelgen/blockpredicates/SolidPredicate + a f_190530_ + ()V + static + (Lhz;)V + 0 o p_190533_ + a (Ldcb;)Z m_183454_ + 0 o p_190536_ + a ()Ldis; m_183575_ + b (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; m_190537_ + static + 0 o p_190538_ +djc net/minecraft/world/level/levelgen/blockpredicates/StateTestingPredicate + f f_190539_ + (Lhz;)V + 0 o p_190541_ + a (Lcng;Lgu;)Z test + 0 o p_190543_ + 1 o p_190544_ + a (Ldcb;)Z m_183454_ + 0 o p_190545_ + a (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/Products$P1; m_190546_ + static + 0 o p_190547_ + a (Ldjc;)Lhz; m_190548_ + static + 0 o p_190549_ + test (Ljava/lang/Object;Ljava/lang/Object;)Z test + 0 o p_190551_ + 1 o p_190552_ +djd net/minecraft/world/level/levelgen/blockpredicates/TrueBlockPredicate + a f_190553_ + e f_190554_ + ()V + static + ()V + a (Lcng;Lgu;)Z test + 0 o p_190559_ + 1 o p_190560_ + a ()Ldis; m_183575_ + f ()Ldjd; m_190561_ + static + test (Ljava/lang/Object;Ljava/lang/Object;)Z test + 0 o p_190563_ + 1 o p_190564_ +dje net/minecraft/world/level/levelgen/blockpredicates/WouldSurvivePredicate + a f_190565_ + e f_190566_ + f f_190567_ + ()V + static + (Lhz;Ldcb;)V + 0 o p_190570_ + 1 o p_190571_ + a (Ldje;)Ldcb; m_190578_ + static + 0 o p_190579_ + a (Lcng;Lgu;)Z test + 0 o p_190574_ + 1 o p_190575_ + a ()Ldis; m_183575_ + a (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; m_190576_ + static + 0 o p_190577_ + b (Ldje;)Lhz; m_190580_ + static + 0 o p_190581_ + test (Ljava/lang/Object;Ljava/lang/Object;)Z test + 0 o p_190583_ + 1 o p_190584_ +djf net/minecraft/world/level/levelgen/blockpredicates/package-info +djg net/minecraft/world/level/levelgen/carver/CanyonCarverConfiguration + a f_158966_ + b f_158967_ + c f_158968_ + ()V + static + (Ldji;Lbda;Ldjg$a;)V + 0 o p_158980_ + 1 o p_158981_ + 2 o p_158982_ + (FLdqh;Lbda;Ldie;Ldjj;Lhi;Lbda;Ldjg$a;)V + 0 o p_224788_ + 1 o p_224789_ + 2 o p_224790_ + 3 o p_224791_ + 4 o p_224792_ + 5 o p_224793_ + 6 o p_224794_ + 7 o p_224795_ + a (Ldjg;)Ldjg$a; m_158985_ + static + 0 o p_158986_ + a (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; m_158983_ + static + 0 o p_158984_ + b (Ldjg;)Lbda; m_158987_ + static + 0 o p_158988_ + c (Ldjg;)Ldji; m_158989_ + static + 0 o p_158990_ +djg$a net/minecraft/world/level/levelgen/carver/CanyonCarverConfiguration$CanyonShapeConfiguration + a f_158991_ + b f_158992_ + c f_158993_ + d f_158994_ + e f_158995_ + f f_158996_ + g f_158997_ + ()V + static + (Lbda;Lbda;ILbda;FF)V + 0 o p_159000_ + 1 o p_159001_ + 2 o p_159002_ + 3 o p_159003_ + 4 o p_159004_ + 5 o p_159005_ + a (Ldjg$a;)Ljava/lang/Float; m_159008_ + static + 0 o p_159009_ + a (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; m_159006_ + static + 0 o p_159007_ + b (Ldjg$a;)Ljava/lang/Float; m_159010_ + static + 0 o p_159011_ + c (Ldjg$a;)Lbda; m_159012_ + static + 0 o p_159013_ + d (Ldjg$a;)Ljava/lang/Integer; m_159014_ + static + 0 o p_159015_ + e (Ldjg$a;)Lbda; m_159016_ + static + 0 o p_159017_ + f (Ldjg$a;)Lbda; m_159018_ + static + 0 o p_159019_ +djh net/minecraft/world/level/levelgen/carver/CanyonWorldCarver + (Lcom/mojang/serialization/Codec;)V + 0 o p_64711_ + a (Ldjk;Ldjg;Lddx;Ljava/util/function/Function;Lapf;Ldgw;Lclt;Lddw;)Z m_213788_ + 0 o p_224813_ + 1 o p_224814_ + 2 o p_224815_ + 3 o p_224816_ + 4 o p_224817_ + 5 o p_224818_ + 6 o p_224819_ + 7 o p_224820_ + a (Ldjg;Lapf;)Z m_214133_ + 0 o p_224797_ + 1 o p_224798_ + a ([FLdjk;DDDI)Z m_159080_ + 0 o p_159081_ + 1 o p_159082_ + 2 o p_159083_ + 3 o p_159084_ + 4 o p_159085_ + 5 o p_159086_ + a (Ldjk;[FDDDI)Z m_159073_ + 0 o p_159074_ + 1 o p_159075_ + 2 o p_159076_ + 3 o p_159077_ + 4 o p_159078_ + 5 o p_159079_ + a (Ldji;Lapf;)Z m_214133_ + 0 o p_224806_ + 1 o p_224807_ + a (Ldjg;Lapf;DFF)D m_224799_ + 0 o p_224800_ + 1 o p_224801_ + 2 o p_224802_ + 3 o p_224803_ + 4 o p_224804_ + a (Ldjk;Ldjg;Lddx;Ljava/util/function/Function;JLdgw;DDDFFFIIDLddw;)V m_190593_ + 0 o p_190594_ + 1 o p_190595_ + 2 o p_190596_ + 3 o p_190597_ + 4 o p_190598_ + 5 o p_190599_ + 6 o p_190600_ + 7 o p_190601_ + 8 o p_190602_ + 9 o p_190603_ + 10 o p_190604_ + 11 o p_190605_ + 12 o p_190606_ + 13 o p_190607_ + 14 o p_190608_ + 15 o p_190609_ + a (Ldjk;Ldji;Lddx;Ljava/util/function/Function;Lapf;Ldgw;Lclt;Lddw;)Z m_213788_ + 0 o p_224822_ + 1 o p_224823_ + 2 o p_224824_ + 3 o p_224825_ + 4 o p_224826_ + 5 o p_224827_ + 6 o p_224828_ + 7 o p_224829_ + a (Ldjk;Ldjg;Lapf;)[F m_224808_ + 0 o p_224809_ + 1 o p_224810_ + 2 o p_224811_ +dji net/minecraft/world/level/levelgen/carver/CarverConfiguration + d f_159087_ + e f_159088_ + f f_159089_ + g f_159090_ + h f_159092_ + i f_224830_ + ()V + static + (FLdqh;Lbda;Ldie;Ldjj;Lhi;)V + 0 o p_224832_ + 1 o p_224833_ + 2 o p_224834_ + 3 o p_224835_ + 4 o p_224836_ + 5 o p_224837_ + a (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; m_224838_ + static + 0 o p_224839_ + a (Ldji;)Lhi; m_224840_ + static + 0 o p_224841_ + b (Ldji;)Ldjj; m_190636_ + static + 0 o p_190637_ + c (Ldji;)Ldie; m_159106_ + static + 0 o p_159107_ + d (Ldji;)Lbda; m_159108_ + static + 0 o p_159109_ + e (Ldji;)Ldqh; m_159110_ + static + 0 o p_159111_ + f (Ldji;)Ljava/lang/Float; m_159112_ + static + 0 o p_159113_ +djj net/minecraft/world/level/levelgen/carver/CarverDebugSettings + a f_159114_ + b f_159115_ + c f_159116_ + d f_159117_ + e f_159118_ + f f_159119_ + g f_159120_ + ()V + static + (ZLdcb;Ldcb;Ldcb;Ldcb;)V + 0 o p_159123_ + 1 o p_159124_ + 2 o p_159125_ + 3 o p_159126_ + 4 o p_159127_ + a (ZLdcb;)Ldjj; m_159136_ + static + 0 o p_159137_ + 1 o p_159138_ + a (Ldcb;Ldcb;Ldcb;Ldcb;)Ldjj; m_159129_ + static + 0 o p_159130_ + 1 o p_159131_ + 2 o p_159132_ + 3 o p_159133_ + a ()Z m_159128_ + a (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; m_159134_ + static + 0 o p_159135_ + a (ZLdcb;Ldcb;Ldcb;Ldcb;)Ldjj; m_159139_ + static + 0 o p_159140_ + 1 o p_159141_ + 2 o p_159142_ + 3 o p_159143_ + 4 o p_159144_ + b ()Ldcb; m_159145_ + c ()Ldcb; m_159146_ + d ()Ldcb; m_159147_ + e ()Ldcb; m_159148_ +djk net/minecraft/world/level/levelgen/carver/CarvingContext + a f_190639_ + b f_190640_ + c f_224842_ + d f_224843_ + (Ldhn;Lhs;Lcmo;Ldho;Ldhy;Ldib$o;)V + 0 o p_224845_ + 1 o p_224846_ + 2 o p_224847_ + 3 o p_224848_ + 4 o p_224849_ + 5 o p_224850_ + a (Ljava/util/function/Function;Lddx;Lgu;Z)Ljava/util/Optional; m_190646_ + 0 o p_190647_ + 1 o p_190648_ + 2 o p_190649_ + 3 o p_190650_ + c ()Lhs; m_190651_ + d ()Ldhy; m_224851_ +djl net/minecraft/world/level/levelgen/carver/CaveCarverConfiguration + a f_159154_ + b f_159155_ + c f_159156_ + j f_159157_ + ()V + static + (FLdqh;Lbda;Ldie;Ldjj;Lhi;Lbda;Lbda;Lbda;)V + 0 o p_224853_ + 1 o p_224854_ + 2 o p_224855_ + 3 o p_224856_ + 4 o p_224857_ + 5 o p_224858_ + 6 o p_224859_ + 7 o p_224860_ + 8 o p_224861_ + (FLdqh;Lbda;Ldie;Lhi;Lbda;Lbda;Lbda;)V + 0 o p_224863_ + 1 o p_224864_ + 2 o p_224865_ + 3 o p_224866_ + 4 o p_224867_ + 5 o p_224868_ + 6 o p_224869_ + 7 o p_224870_ + (Ldji;Lbda;Lbda;Lbda;)V + 0 o p_159179_ + 1 o p_159180_ + 2 o p_159181_ + 3 o p_159182_ + a (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; m_159183_ + static + 0 o p_159184_ + a (Ldjl;)Lbda; m_159185_ + static + 0 o p_159186_ + b (Ldjl;)Lbda; m_159187_ + static + 0 o p_159188_ + c (Ldjl;)Lbda; m_159189_ + static + 0 o p_159190_ + d (Ldjl;)Ldji; m_159191_ + static + 0 o p_159192_ +djm net/minecraft/world/level/levelgen/carver/CaveWorldCarver + (Lcom/mojang/serialization/Codec;)V + 0 o p_159194_ + a (Lapf;)F m_213592_ + 0 o p_224871_ + a (Ldjk;Ldjl;Lddx;Ljava/util/function/Function;JLdgw;DDDDDFFFIIDLddw;Ldjp$a;)V m_190670_ + 0 o p_190671_ + 1 o p_190672_ + 2 o p_190673_ + 3 o p_190674_ + 4 o p_190675_ + 5 o p_190676_ + 6 o p_190677_ + 7 o p_190678_ + 8 o p_190679_ + 9 o p_190680_ + 10 o p_190681_ + 11 o p_190682_ + 12 o p_190683_ + 13 o p_190684_ + 14 o p_190685_ + 15 o p_190686_ + 16 o p_190687_ + 17 o p_190688_ + 18 o p_190689_ + a (DLdjk;DDDI)Z m_159200_ + static + 0 o p_159201_ + 1 o p_159202_ + 2 o p_159203_ + 3 o p_159204_ + 4 o p_159205_ + 5 o p_159206_ + a (DDDD)Z m_159195_ + static + 0 o p_159196_ + 1 o p_159197_ + 2 o p_159198_ + 3 o p_159199_ + a (Ldji;Lapf;)Z m_214133_ + 0 o p_224873_ + 1 o p_224874_ + a ()I m_6208_ + a (Ldjl;Lapf;)Z m_214133_ + 0 o p_224894_ + 1 o p_224895_ + a (Ldjk;Ldjl;Lddx;Ljava/util/function/Function;Lapf;Ldgw;Lclt;Lddw;)Z m_213788_ + 0 o p_224885_ + 1 o p_224886_ + 2 o p_224887_ + 3 o p_224888_ + 4 o p_224889_ + 5 o p_224890_ + 6 o p_224891_ + 7 o p_224892_ + a (Ldjk;Ldjl;Lddx;Ljava/util/function/Function;Ldgw;DDDFDLddw;Ldjp$a;)V m_190690_ + 0 o p_190691_ + 1 o p_190692_ + 2 o p_190693_ + 3 o p_190694_ + 4 o p_190695_ + 5 o p_190696_ + 6 o p_190697_ + 7 o p_190698_ + 8 o p_190699_ + 9 o p_190700_ + 10 o p_190701_ + 11 o p_190702_ + a (Ldjk;Ldji;Lddx;Ljava/util/function/Function;Lapf;Ldgw;Lclt;Lddw;)Z m_213788_ + 0 o p_224876_ + 1 o p_224877_ + 2 o p_224878_ + 3 o p_224879_ + 4 o p_224880_ + 5 o p_224881_ + 6 o p_224882_ + 7 o p_224883_ + b ()D m_6203_ +djn net/minecraft/world/level/levelgen/carver/ConfiguredWorldCarver + a f_64846_ + b f_64847_ + c f_64848_ + d f_64849_ + e f_64850_ + ()V + static + (Ldjp;Ldji;)V + 0 o f_64849_ + 1 o f_64850_ + a ()Ldjp; f_64849_ + a (Ldjn;)Ldjp; m_64866_ + static + 0 o p_64867_ + a (Ldjk;Lddx;Ljava/util/function/Function;Lapf;Ldgw;Lclt;Lddw;)Z m_224898_ + 0 o p_224899_ + 1 o p_224900_ + 2 o p_224901_ + 3 o p_224902_ + 4 o p_224903_ + 5 o p_224904_ + 6 o p_224905_ + a (Lapf;)Z m_224896_ + 0 o p_224897_ + b ()Ldji; f_64850_ + equals (Ljava/lang/Object;)Z equals + 0 o p_204701_ + hashCode ()I hashCode + toString ()Ljava/lang/String; toString +djo net/minecraft/world/level/levelgen/carver/NetherWorldCarver + (Lcom/mojang/serialization/Codec;)V + 0 o p_64873_ + a (Lapf;)F m_213592_ + 0 o p_224907_ + a (Ldjk;Ldji;Lddx;Ljava/util/function/Function;Lddw;Lgu$a;Lgu$a;Ldgw;Lorg/apache/commons/lang3/mutable/MutableBoolean;)Z m_183633_ + 0 o p_190721_ + 1 o p_190722_ + 2 o p_190723_ + 3 o p_190724_ + 4 o p_190725_ + 5 o p_190726_ + 6 o p_190727_ + 7 o p_190728_ + 8 o p_190729_ + a ()I m_6208_ + a (Ldjk;Ldjl;Lddx;Ljava/util/function/Function;Lddw;Lgu$a;Lgu$a;Ldgw;Lorg/apache/commons/lang3/mutable/MutableBoolean;)Z m_183633_ + 0 o p_190731_ + 1 o p_190732_ + 2 o p_190733_ + 3 o p_190734_ + 4 o p_190735_ + 5 o p_190736_ + 6 o p_190737_ + 7 o p_190738_ + 8 o p_190739_ + b ()D m_6203_ +djp net/minecraft/world/level/levelgen/carver/WorldCarver + a f_64974_ + b f_64975_ + c f_64976_ + d f_64979_ + e f_64980_ + f f_64981_ + g f_64982_ + h f_64984_ + i f_64986_ + ()V + static + (Lcom/mojang/serialization/Codec;)V + 0 o p_159366_ + a (Ldji;)Ldjn; m_65063_ + 0 o p_65064_ + a (Ldjk;Ldji;Lddx;Ljava/util/function/Function;Ldgw;DDDDDLddw;Ldjp$a;)Z m_190753_ + 0 o p_190754_ + 1 o p_190755_ + 2 o p_190756_ + 3 o p_190757_ + 4 o p_190758_ + 5 o p_190759_ + 6 o p_190760_ + 7 o p_190761_ + 8 o p_190762_ + 9 o p_190763_ + 10 o p_190764_ + 11 o p_190765_ + a (Ljava/lang/String;Ldjp;)Ldjp; m_65065_ + static + 0 o p_65066_ + 1 o p_65067_ + a (Ldji;Lapf;)Z m_214133_ + 0 o p_224908_ + 1 o p_224909_ + a (Ldji;Ldcb;)Z m_224910_ + 0 o p_224911_ + 1 o p_224912_ + a (Lclt;DDIIF)Z m_159367_ + static + 0 o p_159368_ + 1 o p_159369_ + 2 o p_159370_ + 3 o p_159371_ + 4 o p_159372_ + 5 o p_159373_ + a (Ldjk;Ldji;Lddx;Ljava/util/function/Function;Lddw;Lgu$a;Lgu$a;Ldgw;Lorg/apache/commons/lang3/mutable/MutableBoolean;)Z m_183633_ + 0 o p_190744_ + 1 o p_190745_ + 2 o p_190746_ + 3 o p_190747_ + 4 o p_190748_ + 5 o p_190749_ + 6 o p_190750_ + 7 o p_190751_ + 8 o p_190752_ + a (Lddx;Lgu$a;Ldcb;)V m_284117_ + static + 0 o p_284916_ + 1 o p_284917_ + 2 o p_284918_ + a (Ldjk;Ldji;Lgu;Ldgw;)Ldcb; m_159418_ + 0 o p_159419_ + 1 o p_159420_ + 2 o p_159421_ + 3 o p_159422_ + a (Ldjk;Ldji;Lddx;Ljava/util/function/Function;Lapf;Ldgw;Lclt;Lddw;)Z m_213788_ + 0 o p_224913_ + 1 o p_224914_ + 2 o p_224915_ + 3 o p_224916_ + 4 o p_224917_ + 5 o p_224918_ + 6 o p_224919_ + 7 o p_224920_ + b (Ldji;)Z m_159423_ + static + 0 o p_159424_ + b (Ldji;Ldcb;)Ldcb; m_159381_ + static + 0 o p_159382_ + 1 o p_159383_ + c ()Lcom/mojang/serialization/Codec; m_65072_ + d ()I m_65073_ +djp$a net/minecraft/world/level/levelgen/carver/WorldCarver$CarveSkipChecker + shouldSkip (Ldjk;DDDI)Z m_159425_ + 0 o p_159426_ + 1 o p_159427_ + 2 o p_159428_ + 3 o p_159429_ + 4 o p_159430_ +djq net/minecraft/world/level/levelgen/carver/package-info +djr net/minecraft/world/level/levelgen/feature/AbstractHugeMushroomFeature + (Lcom/mojang/serialization/Codec;)V + 0 o p_65093_ + a (Lcmn;Lapf;Lgu;Ldmu;ILgu$a;)V m_224929_ + 0 o p_224930_ + 1 o p_224931_ + 2 o p_224932_ + 3 o p_224933_ + 4 o p_224934_ + 5 o p_224935_ + a (Lcmn;Lgu;ILgu$a;Ldmu;)Z m_65098_ + 0 o p_65099_ + 1 o p_65100_ + 2 o p_65101_ + 3 o p_65102_ + 4 o p_65103_ + a (IIII)I m_6794_ + 0 o p_65094_ + 1 o p_65095_ + 2 o p_65096_ + 3 o p_65097_ + a (Ldkq;)Z m_142674_ + 0 o p_159436_ + a (Lcmn;Lapf;Lgu;ILgu$a;Ldmu;)V m_213950_ + 0 o p_224923_ + 1 o p_224924_ + 2 o p_224925_ + 3 o p_224926_ + 4 o p_224927_ + 5 o p_224928_ + a (Lapf;)I m_224921_ + 0 o p_224922_ +djs net/minecraft/world/level/levelgen/feature/BambooFeature + a f_65131_ + b f_65132_ + c f_65133_ + d f_65134_ + ()V + static + (Lcom/mojang/serialization/Codec;)V + 0 o p_65137_ + a (Ldkq;)Z m_142674_ + 0 o p_159438_ +djt net/minecraft/world/level/levelgen/feature/BasaltColumnsFeature + a f_65150_ + an f_159442_ + b f_159439_ + c f_159440_ + d f_159441_ + ()V + static + (Lcom/mojang/serialization/Codec;)V + 0 o p_65153_ + a (Lcmn;ILgu;II)Z m_65167_ + 0 o p_65168_ + 1 o p_65169_ + 2 o p_65170_ + 3 o p_65171_ + 4 o p_65172_ + a (Ldkq;)Z m_142674_ + 0 o p_159444_ + a (Lcmn;ILgu;)Z m_65163_ + static + 0 o p_65164_ + 1 o p_65165_ + 2 o p_65166_ + a (Lcmn;ILgu$a;)Z m_65154_ + static + 0 o p_65155_ + 1 o p_65156_ + 2 o p_65157_ + a (Lcmn;Lgu$a;I)Lgu; m_65173_ + static + 0 o p_65174_ + 1 o p_65175_ + 2 o p_65176_ + a (Lcmn;ILgu$a;I)Lgu; m_65158_ + static + 0 o p_65159_ + 1 o p_65160_ + 2 o p_65161_ + 3 o p_65162_ +dju net/minecraft/world/level/levelgen/feature/BasaltPillarFeature + (Lcom/mojang/serialization/Codec;)V + 0 o p_65190_ + a (Ldkq;)Z m_142674_ + 0 o p_159446_ + a (Lcmn;Lapf;Lgu;)V m_224936_ + 0 o p_224937_ + 1 o p_224938_ + 2 o p_224939_ + b (Lcmn;Lapf;Lgu;)Z m_224940_ + 0 o p_224941_ + 1 o p_224942_ + 2 o p_224943_ +djv net/minecraft/world/level/levelgen/feature/BlockBlobFeature + (Lcom/mojang/serialization/Codec;)V + 0 o p_65248_ + a (Ldkq;)Z m_142674_ + 0 o p_159471_ +djw net/minecraft/world/level/levelgen/feature/BlockColumnFeature + (Lcom/mojang/serialization/Codec;)V + 0 o p_190789_ + a (Ldkq;)Z m_142674_ + 0 o p_190791_ + a ([IIIZ)V m_190792_ + static + 0 o p_190793_ + 1 o p_190794_ + 2 o p_190795_ + 3 o p_190796_ +djx net/minecraft/world/level/levelgen/feature/BlockPileFeature + (Lcom/mojang/serialization/Codec;)V + 0 o p_65262_ + a (Ldkq;)Z m_142674_ + 0 o p_159473_ + a (Lcmn;Lgu;Lapf;)Z m_224944_ + 0 o p_224945_ + 1 o p_224946_ + 2 o p_224947_ + a (Lcmn;Lgu;Lapf;Ldmk;)V m_224948_ + 0 o p_224949_ + 1 o p_224950_ + 2 o p_224951_ + 3 o p_224952_ +djy net/minecraft/world/level/levelgen/feature/BlueIceFeature + (Lcom/mojang/serialization/Codec;)V + 0 o p_65285_ + a (Ldkq;)Z m_142674_ + 0 o p_159475_ +djz net/minecraft/world/level/levelgen/feature/BonusChestFeature + (Lcom/mojang/serialization/Codec;)V + 0 o p_65299_ + a (Ldkq;)Z m_142674_ + 0 o p_159477_ +dk net/minecraft/advancements/package-info +dka net/minecraft/world/level/levelgen/feature/ChorusPlantFeature + (Lcom/mojang/serialization/Codec;)V + 0 o p_65360_ + a (Ldkq;)Z m_142674_ + 0 o p_159521_ +dkb net/minecraft/world/level/levelgen/feature/ConfiguredFeature + a f_65373_ + b f_65374_ + c f_65375_ + d f_65377_ + e f_65378_ + ()V + static + (Ldko;Ldms;)V + 0 o f_65377_ + 1 o f_65378_ + a (Ldkb;)Ldko; m_65390_ + static + 0 o p_65391_ + a ()Ljava/util/stream/Stream; m_65398_ + a (Lcng;Lddy;Lapf;Lgu;)Z m_224953_ + 0 o p_224954_ + 1 o p_224955_ + 2 o p_224956_ + 3 o p_224957_ + b ()Ldko; f_65377_ + c ()Ldms; f_65378_ + equals (Ljava/lang/Object;)Z equals + 0 o p_204705_ + hashCode ()I hashCode + toString ()Ljava/lang/String; toString +dkc net/minecraft/world/level/levelgen/feature/CoralClawFeature + (Lcom/mojang/serialization/Codec;)V + 0 o p_65422_ + a (Lcmn;Lapf;Lgu;Ldcb;)Z m_214196_ + 0 o p_224959_ + 1 o p_224960_ + 2 o p_224961_ + 3 o p_224962_ +dkd net/minecraft/world/level/levelgen/feature/CoralFeature + (Lcom/mojang/serialization/Codec;)V + 0 o p_65429_ + a (Ldkq;)Z m_142674_ + 0 o p_159536_ + a (Lha;Lcmn;Lgu;Lcpn;)V m_204721_ + static + 0 o p_204722_ + 1 o p_204723_ + 2 o p_204724_ + 3 o p_204725_ + a (Lcmn;Lapf;Lgu;Ldcb;)Z m_214196_ + 0 o p_224966_ + 1 o p_224967_ + 2 o p_224968_ + 3 o p_224969_ + a (Lcmn;Lgu;Lcpn;)V m_204717_ + static + 0 o p_204718_ + 1 o p_204719_ + 2 o p_204720_ + a (Lapf;Lhi$c;)Ljava/util/Optional; m_224963_ + static + 0 o p_224964_ + 1 o p_224965_ + b (Lapf;Lhi$c;)Ljava/util/Optional; m_224970_ + static + 0 o p_224971_ + 1 o p_224972_ + b (Lcmn;Lapf;Lgu;Ldcb;)Z m_224973_ + 0 o p_224974_ + 1 o p_224975_ + 2 o p_224976_ + 3 o p_224977_ + c (Lapf;Lhi$c;)Ljava/util/Optional; m_224978_ + static + 0 o p_224979_ + 1 o p_224980_ +dke net/minecraft/world/level/levelgen/feature/CoralMushroomFeature + (Lcom/mojang/serialization/Codec;)V + 0 o p_65452_ + a (Lcmn;Lapf;Lgu;Ldcb;)Z m_214196_ + 0 o p_224982_ + 1 o p_224983_ + 2 o p_224984_ + 3 o p_224985_ +dkf net/minecraft/world/level/levelgen/feature/CoralTreeFeature + (Lcom/mojang/serialization/Codec;)V + 0 o p_65488_ + a (Lcmn;Lapf;Lgu;Ldcb;)Z m_214196_ + 0 o p_224987_ + 1 o p_224988_ + 2 o p_224989_ + 3 o p_224990_ +dkg net/minecraft/world/level/levelgen/feature/DeltaFeature + a f_65546_ + b f_65547_ + c f_159546_ + ()V + static + (Lcom/mojang/serialization/Codec;)V + 0 o p_65550_ + a (Lcmn;Lgu;Ldmo;)Z m_65551_ + static + 0 o p_65552_ + 1 o p_65553_ + 2 o p_65554_ + a (Ldkq;)Z m_142674_ + 0 o p_159548_ +dkh net/minecraft/world/level/levelgen/feature/DesertWellFeature + a f_65593_ + an f_65596_ + b f_276683_ + c f_65594_ + d f_65595_ + ()V + static + (Lcom/mojang/serialization/Codec;)V + 0 o p_65599_ + a (Ldkq;)Z m_142674_ + 0 o p_159571_ + a (Lgu;Lczr;)V m_276756_ + static + 0 o p_277321_ + 1 o p_277322_ + b (Lcng;Lgu;)V m_277210_ + static + 0 o p_278029_ + 1 o p_278082_ +dki net/minecraft/world/level/levelgen/feature/DiskFeature + (Lcom/mojang/serialization/Codec;)V + 0 o p_224992_ + a (Ldmp;Lcng;Lapf;IILgu$a;)Z m_224995_ + 0 o p_224996_ + 1 o p_224997_ + 2 o p_224998_ + 3 o p_224999_ + 4 o p_225000_ + 5 o p_225001_ + a (Ldkq;)Z m_142674_ + 0 o p_224994_ +dkj net/minecraft/world/level/levelgen/feature/DripstoneClusterFeature + (Lcom/mojang/serialization/Codec;)V + 0 o p_159575_ + a (Lapf;FFFF)F m_225002_ + static + 0 o p_225003_ + 1 o p_225004_ + 2 o p_225005_ + 3 o p_225006_ + 4 o p_225007_ + a (Ldkq;)Z m_142674_ + 0 o p_159605_ + a (Lapf;IIFILdmq;)I m_225008_ + 0 o p_225009_ + 1 o p_225010_ + 2 o p_225011_ + 3 o p_225012_ + 4 o p_225013_ + 5 o p_225014_ + a (Lcmp;Lgu;)Z m_159585_ + 0 o p_159586_ + 1 o p_159587_ + a (Lcmn;Lgu;)Z m_159582_ + 0 o p_159583_ + 1 o p_159584_ + a (IIIILdmq;)D m_159576_ + 0 o p_159577_ + 1 o p_159578_ + 2 o p_159579_ + 3 o p_159580_ + 4 o p_159581_ + a (Lcng;Lapf;Lgu;IIFDIFLdmq;)V m_225015_ + 0 o p_225016_ + 1 o p_225017_ + 2 o p_225018_ + 3 o p_225019_ + 4 o p_225020_ + 5 o p_225021_ + 6 o p_225022_ + 7 o p_225023_ + 8 o p_225024_ + 9 o p_225025_ + a (Lcng;Lgu;ILha;)V m_159588_ + 0 o p_159589_ + 1 o p_159590_ + 2 o p_159591_ + 3 o p_159592_ + b (Lcng;Lgu;)Z m_159619_ + 0 o p_159620_ + 1 o p_159621_ +dkk net/minecraft/world/level/levelgen/feature/DripstoneUtils + ()V + a (Lcng;Lgu;I)Z m_159639_ + static + 0 o p_159640_ + 1 o p_159641_ + 2 o p_159642_ + a (Lha;IZLjava/util/function/Consumer;)V m_159651_ + static + 0 o p_159652_ + 1 o p_159653_ + 2 o p_159654_ + 3 o p_159655_ + a (Lcmn;Lgu;Lha;IZ)V m_190847_ + static + 0 o p_190848_ + 1 o p_190849_ + 2 o p_190850_ + 3 o p_190851_ + 4 o p_190852_ + a (DDDD)D m_159623_ + static + 0 o p_159624_ + 1 o p_159625_ + 2 o p_159626_ + 3 o p_159627_ + a (Lha;Ldcy;)Ldcb; m_159656_ + static + 0 o p_159657_ + 1 o p_159658_ + a (Lcmn;Lgu$a;Lha;Ldcb;)V m_276757_ + static + 0 o p_277323_ + 1 o p_277324_ + 2 o p_277325_ + 3 o p_277326_ + a (Ldcb;)Z m_159649_ + static + 0 o p_159650_ + a (Lcmn;Lgu;)Z m_159628_ + static + 0 o p_159629_ + 1 o p_159630_ + b (Ldcb;)Z m_159662_ + static + 0 o p_159663_ + b (Lcmn;Lgu;)Z m_159659_ + static + 0 o p_159660_ + 1 o p_159661_ + c (Lcmn;Lgu;)Z m_190853_ + static + 0 o p_190854_ + 1 o p_190855_ + c (Ldcb;)Z m_159664_ + static + 0 o p_159665_ + d (Ldcb;)Z m_203130_ + static + 0 o p_203131_ + e (Ldcb;)Z m_159666_ + static + 0 o p_159667_ +dkl net/minecraft/world/level/levelgen/feature/EndGatewayFeature + (Lcom/mojang/serialization/Codec;)V + 0 o p_65682_ + a (Ldkq;)Z m_142674_ + 0 o p_159715_ + a (Lcng;Lgu;Ldmr;Lgu;)V m_65695_ + static + 0 o p_65696_ + 1 o p_65697_ + 2 o p_65698_ + 3 o p_65699_ +dkm net/minecraft/world/level/levelgen/feature/EndIslandFeature + (Lcom/mojang/serialization/Codec;)V + 0 o p_65701_ + a (Ldkq;)Z m_142674_ + 0 o p_159717_ +dkn net/minecraft/world/level/levelgen/feature/EndPodiumFeature + a f_159718_ + an f_65714_ + ao f_65715_ + b f_159719_ + c f_159720_ + d f_159721_ + ()V + static + (Z)V + 0 o p_65718_ + a (Ldkq;)Z m_142674_ + 0 o p_159723_ + a (Lgu;)Lgu; m_287210_ + static + 0 o p_287614_ +dko net/minecraft/world/level/levelgen/feature/Feature + A f_225026_ + B f_159726_ + C f_65777_ + D f_65778_ + E f_65779_ + F f_65780_ + G f_65781_ + H f_65783_ + I f_65731_ + J f_65732_ + K f_65733_ + L f_65734_ + M f_65735_ + N f_65736_ + O f_65737_ + P f_65738_ + Q f_65739_ + R f_65740_ + S f_65741_ + T f_65742_ + U f_65743_ + V f_65744_ + W f_65745_ + X f_65746_ + Y f_65747_ + Z f_65748_ + a f_65757_ + aa f_65749_ + ab f_65750_ + ac f_65751_ + ad f_65752_ + ae f_159727_ + af f_65754_ + ag f_65755_ + ah f_65756_ + ai f_159728_ + aj f_159729_ + ak f_159730_ + al f_190874_ + am f_225027_ + e f_65759_ + f f_65760_ + g f_65761_ + h f_65762_ + i f_65763_ + j f_65764_ + k f_65765_ + l f_65766_ + m f_159732_ + n f_65768_ + o f_65769_ + p f_65770_ + q f_65771_ + r f_65772_ + s f_65773_ + t f_65774_ + u f_65775_ + v f_65776_ + w f_190875_ + x f_159734_ + y f_159735_ + z f_159724_ + ()V + static + (Lcom/mojang/serialization/Codec;)V + 0 o p_65786_ + a (Lcng;Lgu;)V m_159739_ + 0 o p_159740_ + 1 o p_159741_ + a (Lanl;)Ljava/util/function/Predicate; m_204735_ + static + 0 o p_204736_ + a (Ljava/lang/String;Ldko;)Ldko; m_65807_ + static + 0 o p_65808_ + 1 o p_65809_ + a (Lcmu;Lgu;Ldcb;)V m_5974_ + 0 o p_65791_ + 1 o p_65792_ + 2 o p_65793_ + a (Ljava/util/function/Function;Lgu;Ljava/util/function/Predicate;)Z m_159753_ + static + 0 o p_159754_ + 1 o p_159755_ + 2 o p_159756_ + a (Lanl;Ldcb;)Z m_204737_ + static + 0 o p_204738_ + 1 o p_204739_ + a (Ldms;Lcng;Lddy;Lapf;Lgu;)Z m_225028_ + 0 o p_225029_ + 1 o p_225030_ + 2 o p_225031_ + 3 o p_225032_ + 4 o p_225033_ + a ()Lcom/mojang/serialization/Codec; m_65787_ + a (Ljava/util/function/Function;Lgu;)Z m_159750_ + static + 0 o p_159751_ + 1 o p_159752_ + a (Ldms;)Ldkb; m_65805_ + 0 o p_65806_ + a (Ldkq;)Z m_142674_ + 0 o p_159749_ + a (Lcng;Lgu;Ldcb;Ljava/util/function/Predicate;)V m_159742_ + 0 o p_159743_ + 1 o p_159744_ + 2 o p_159745_ + 3 o p_159746_ + a (Ldcb;)Z m_159747_ + static + 0 o p_159748_ + a (Lcms;Lgu;)Z m_65788_ + static + 0 o p_65789_ + 1 o p_65790_ + b (Ldcb;)Z m_159759_ + static + 0 o p_159760_ +dkp net/minecraft/world/level/levelgen/feature/FeatureCountTracker + a f_190876_ + b f_190877_ + ()V + static + ()V + a (Laif;Ldkb;Ljava/util/Optional;)V m_190883_ + static + 0 o p_190884_ + 1 o p_190885_ + 2 o p_190886_ + a (Ljava/lang/String;Ljava/lang/Integer;Lhr;Ldkp$a;Ljava/lang/Integer;)V m_241761_ + static + 0 o p_242146_ + 1 o p_242147_ + 2 o p_242148_ + 3 o p_190897_ + 4 o p_190898_ + a (Laif;Ldkp$b;)V m_190887_ + static + 0 o p_190888_ + 1 o p_190889_ + a (Ldkp$a;Ljava/lang/Integer;)Ljava/lang/Integer; m_190890_ + static + 0 o p_190891_ + 1 o p_190892_ + a ()V m_190880_ + static + a (Laif;)V m_190881_ + static + 0 o p_190882_ + b ()V m_190899_ + static +dkp$1 net/minecraft/world/level/levelgen/feature/FeatureCountTracker$1 + ()V + a (Laif;)Ldkp$b; load + 0 o p_190902_ + load (Ljava/lang/Object;)Ljava/lang/Object; load + 0 o p_190904_ +dkp$a net/minecraft/world/level/levelgen/feature/FeatureCountTracker$FeatureData + a f_190905_ + b f_190906_ + (Ldkb;Ljava/util/Optional;)V + 0 o f_190905_ + 1 o f_190906_ + a ()Ldkb; f_190905_ + b ()Ljava/util/Optional; f_190906_ + equals (Ljava/lang/Object;)Z equals + 0 o p_190913_ + hashCode ()I hashCode + toString ()Ljava/lang/String; toString +dkp$b net/minecraft/world/level/levelgen/feature/FeatureCountTracker$LevelData + a f_190916_ + b f_190917_ + (Lit/unimi/dsi/fastutil/objects/Object2IntMap;Lorg/apache/commons/lang3/mutable/MutableInt;)V + 0 o f_190916_ + 1 o f_190917_ + a ()Lit/unimi/dsi/fastutil/objects/Object2IntMap; f_190916_ + b ()Lorg/apache/commons/lang3/mutable/MutableInt; f_190917_ + equals (Ljava/lang/Object;)Z equals + 0 o p_190924_ + hashCode ()I hashCode + toString ()Ljava/lang/String; toString +dkq net/minecraft/world/level/levelgen/feature/FeaturePlaceContext + a f_190927_ + b f_159763_ + c f_159764_ + d f_159765_ + e f_159766_ + f f_159767_ + (Ljava/util/Optional;Lcng;Lddy;Lapf;Lgu;Ldms;)V + 0 o p_225035_ + 1 o p_225036_ + 2 o p_225037_ + 3 o p_225038_ + 4 o p_225039_ + 5 o p_225040_ + a ()Ljava/util/Optional; m_190935_ + b ()Lcng; m_159774_ + c ()Lddy; m_159775_ + d ()Lapf; m_225041_ + e ()Lgu; m_159777_ + f ()Ldms; m_159778_ +dkr net/minecraft/world/level/levelgen/feature/FillLayerFeature + (Lcom/mojang/serialization/Codec;)V + 0 o p_65818_ + a (Ldkq;)Z m_142674_ + 0 o p_159780_ +dks net/minecraft/world/level/levelgen/feature/FossilFeature + (Lcom/mojang/serialization/Codec;)V + 0 o p_65851_ + a (Lcng;Lorg/apache/commons/lang3/mutable/MutableInt;Lgu;)V m_284118_ + static + 0 o p_284919_ + 1 o p_284920_ + 2 o p_284921_ + a (Ldkq;)Z m_142674_ + 0 o p_159789_ + a (Lcng;Ldrs;)I m_159781_ + static + 0 o p_159782_ + 1 o p_159783_ +dkt net/minecraft/world/level/levelgen/feature/FossilFeatureConfiguration + a f_159796_ + b f_159797_ + c f_159798_ + d f_159799_ + e f_159800_ + f f_159801_ + ()V + static + (Ljava/util/List;Ljava/util/List;Lhe;Lhe;I)V + 0 o p_204751_ + 1 o p_204752_ + 2 o p_204753_ + 3 o p_204754_ + 4 o p_204755_ + a (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; m_159815_ + static + 0 o p_159816_ + a (Ldkt;)Ljava/lang/Integer; m_159817_ + static + 0 o p_159818_ + b (Ldkt;)Lhe; m_204756_ + static + 0 o p_204757_ + c (Ldkt;)Lhe; m_204758_ + static + 0 o p_204759_ + d (Ldkt;)Ljava/util/List; m_159827_ + static + 0 o p_159828_ + e (Ldkt;)Ljava/util/List; m_159829_ + static + 0 o p_159830_ +dku net/minecraft/world/level/levelgen/feature/GeodeFeature + a f_159831_ + ()V + static + (Lcom/mojang/serialization/Codec;)V + 0 o p_159834_ + a (Ldkq;)Z m_142674_ + 0 o p_159836_ +dkv net/minecraft/world/level/levelgen/feature/GlowstoneFeature + (Lcom/mojang/serialization/Codec;)V + 0 o p_65865_ + a (Ldkq;)Z m_142674_ + 0 o p_159861_ +dkw net/minecraft/world/level/levelgen/feature/HugeBrownMushroomFeature + (Lcom/mojang/serialization/Codec;)V + 0 o p_65879_ + a (IIII)I m_6794_ + 0 o p_65881_ + 1 o p_65882_ + 2 o p_65883_ + 3 o p_65884_ + a (Lcmn;Lapf;Lgu;ILgu$a;Ldmu;)V m_213950_ + 0 o p_225043_ + 1 o p_225044_ + 2 o p_225045_ + 3 o p_225046_ + 4 o p_225047_ + 5 o p_225048_ +dkx net/minecraft/world/level/levelgen/feature/HugeFungusConfiguration + a f_65892_ + b f_65897_ + c f_65898_ + d f_65899_ + e f_65900_ + f f_283781_ + g f_65901_ + ()V + static + (Ldcb;Ldcb;Ldcb;Ldcb;Ldir;Z)V + 0 o p_285423_ + 1 o p_285075_ + 2 o p_285050_ + 3 o p_285067_ + 4 o p_284983_ + 5 o p_285285_ + a (Ldkx;)Ljava/lang/Boolean; m_159866_ + static + 0 o p_159867_ + a (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; m_284119_ + static + 0 o p_284922_ + b (Ldkx;)Ldir; m_284120_ + static + 0 o p_284923_ + c (Ldkx;)Ldcb; m_159868_ + static + 0 o p_159869_ + d (Ldkx;)Ldcb; m_159870_ + static + 0 o p_159871_ + e (Ldkx;)Ldcb; m_159872_ + static + 0 o p_159873_ + f (Ldkx;)Ldcb; m_159874_ + static + 0 o p_159875_ +dky net/minecraft/world/level/levelgen/feature/HugeFungusFeature + a f_159876_ + (Lcom/mojang/serialization/Codec;)V + 0 o p_65922_ + a (Lgu;Lcmn;Lapf;)V m_225070_ + static + 0 o p_225071_ + 1 o p_225072_ + 2 o p_225073_ + a (Ldkq;)Z m_142674_ + 0 o p_159878_ + a (Lcmn;Lapf;Lgu;Ldcb;Z)V m_225064_ + 0 o p_225065_ + 1 o p_225066_ + 2 o p_225067_ + 3 o p_225068_ + 4 o p_225069_ + a (Lcng;Lgu;Ldkx;Z)Z m_284534_ + static + 0 o p_285049_ + 1 o p_285309_ + 2 o p_284992_ + 3 o p_285162_ + a (Lcmn;Lapf;Ldkx;Lgu$a;FFF)V m_225049_ + 0 o p_225050_ + 1 o p_225051_ + 2 o p_225052_ + 3 o p_225053_ + 4 o p_225054_ + 5 o p_225055_ + 6 o p_225056_ + a (Lcng;Lapf;Ldkx;Lgu;IZ)V m_284273_ + 0 o p_285364_ + 1 o p_285032_ + 2 o p_285198_ + 3 o p_285090_ + 4 o p_285249_ + 5 o p_285355_ + b (Lcng;Lapf;Ldkx;Lgu;IZ)V m_284325_ + 0 o p_285200_ + 1 o p_285456_ + 2 o p_285146_ + 3 o p_285097_ + 4 o p_285156_ + 5 o p_285265_ +dkz net/minecraft/world/level/levelgen/feature/HugeRedMushroomFeature + (Lcom/mojang/serialization/Codec;)V + 0 o p_65975_ + a (IIII)I m_6794_ + 0 o p_65977_ + 1 o p_65978_ + 2 o p_65979_ + 3 o p_65980_ + a (Lcmn;Lapf;Lgu;ILgu$a;Ldmu;)V m_213950_ + 0 o p_225082_ + 1 o p_225083_ + 2 o p_225084_ + 3 o p_225085_ + 4 o p_225086_ + 5 o p_225087_ +dl net/minecraft/commands/BrigadierExceptions + A f_77128_ + a f_77129_ + b f_77130_ + c f_77131_ + d f_77132_ + e f_77133_ + f f_77134_ + g f_77135_ + h f_77136_ + i f_77137_ + j f_77138_ + k f_77139_ + l f_77140_ + m f_77141_ + n f_77142_ + o f_77143_ + p f_77144_ + q f_77145_ + r f_77146_ + s f_77147_ + t f_77148_ + u f_77149_ + v f_77150_ + w f_77151_ + x f_77152_ + y f_77153_ + z f_77154_ + ()V + static + ()V + a (Ljava/lang/Object;)Lcom/mojang/brigadier/Message; m_77157_ + static + 0 o p_77158_ + a (Ljava/lang/Object;Ljava/lang/Object;)Lcom/mojang/brigadier/Message; m_77159_ + static + 0 o p_77160_ + 1 o p_77161_ + b (Ljava/lang/Object;)Lcom/mojang/brigadier/Message; m_77162_ + static + 0 o p_77163_ + b (Ljava/lang/Object;Ljava/lang/Object;)Lcom/mojang/brigadier/Message; m_77164_ + static + 0 o p_77165_ + 1 o p_77166_ + c (Ljava/lang/Object;Ljava/lang/Object;)Lcom/mojang/brigadier/Message; m_77169_ + static + 0 o p_77170_ + 1 o p_77171_ + c (Ljava/lang/Object;)Lcom/mojang/brigadier/Message; m_77167_ + static + 0 o p_77168_ + d (Ljava/lang/Object;Ljava/lang/Object;)Lcom/mojang/brigadier/Message; m_77174_ + static + 0 o p_77175_ + 1 o p_77176_ + d (Ljava/lang/Object;)Lcom/mojang/brigadier/Message; m_77172_ + static + 0 o p_77173_ + dispatcherExpectedArgumentSeparator ()Lcom/mojang/brigadier/exceptions/SimpleCommandExceptionType; dispatcherExpectedArgumentSeparator + dispatcherParseException ()Lcom/mojang/brigadier/exceptions/DynamicCommandExceptionType; dispatcherParseException + dispatcherUnknownArgument ()Lcom/mojang/brigadier/exceptions/SimpleCommandExceptionType; dispatcherUnknownArgument + dispatcherUnknownCommand ()Lcom/mojang/brigadier/exceptions/SimpleCommandExceptionType; dispatcherUnknownCommand + doubleTooHigh ()Lcom/mojang/brigadier/exceptions/Dynamic2CommandExceptionType; doubleTooHigh + doubleTooLow ()Lcom/mojang/brigadier/exceptions/Dynamic2CommandExceptionType; doubleTooLow + e (Ljava/lang/Object;)Lcom/mojang/brigadier/Message; m_77183_ + static + 0 o p_77184_ + e (Ljava/lang/Object;Ljava/lang/Object;)Lcom/mojang/brigadier/Message; m_77185_ + static + 0 o p_77186_ + 1 o p_77187_ + f (Ljava/lang/Object;)Lcom/mojang/brigadier/Message; m_77188_ + static + 0 o p_77189_ + f (Ljava/lang/Object;Ljava/lang/Object;)Lcom/mojang/brigadier/Message; m_77190_ + static + 0 o p_77191_ + 1 o p_77192_ + floatTooHigh ()Lcom/mojang/brigadier/exceptions/Dynamic2CommandExceptionType; floatTooHigh + floatTooLow ()Lcom/mojang/brigadier/exceptions/Dynamic2CommandExceptionType; floatTooLow + g (Ljava/lang/Object;Ljava/lang/Object;)Lcom/mojang/brigadier/Message; m_77197_ + static + 0 o p_77198_ + 1 o p_77199_ + g (Ljava/lang/Object;)Lcom/mojang/brigadier/Message; m_77195_ + static + 0 o p_77196_ + h (Ljava/lang/Object;Ljava/lang/Object;)Lcom/mojang/brigadier/Message; m_77202_ + static + 0 o p_77203_ + 1 o p_77204_ + h (Ljava/lang/Object;)Lcom/mojang/brigadier/Message; m_77200_ + static + 0 o p_77201_ + i (Ljava/lang/Object;)Lcom/mojang/brigadier/Message; m_77205_ + static + 0 o p_77206_ + integerTooHigh ()Lcom/mojang/brigadier/exceptions/Dynamic2CommandExceptionType; integerTooHigh + integerTooLow ()Lcom/mojang/brigadier/exceptions/Dynamic2CommandExceptionType; integerTooLow + literalIncorrect ()Lcom/mojang/brigadier/exceptions/DynamicCommandExceptionType; literalIncorrect + longTooHigh ()Lcom/mojang/brigadier/exceptions/Dynamic2CommandExceptionType; longTooHigh + longTooLow ()Lcom/mojang/brigadier/exceptions/Dynamic2CommandExceptionType; longTooLow + readerExpectedBool ()Lcom/mojang/brigadier/exceptions/SimpleCommandExceptionType; readerExpectedBool + readerExpectedDouble ()Lcom/mojang/brigadier/exceptions/SimpleCommandExceptionType; readerExpectedDouble + readerExpectedEndOfQuote ()Lcom/mojang/brigadier/exceptions/SimpleCommandExceptionType; readerExpectedEndOfQuote + readerExpectedFloat ()Lcom/mojang/brigadier/exceptions/SimpleCommandExceptionType; readerExpectedFloat + readerExpectedInt ()Lcom/mojang/brigadier/exceptions/SimpleCommandExceptionType; readerExpectedInt + readerExpectedLong ()Lcom/mojang/brigadier/exceptions/SimpleCommandExceptionType; readerExpectedLong + readerExpectedStartOfQuote ()Lcom/mojang/brigadier/exceptions/SimpleCommandExceptionType; readerExpectedStartOfQuote + readerExpectedSymbol ()Lcom/mojang/brigadier/exceptions/DynamicCommandExceptionType; readerExpectedSymbol + readerInvalidBool ()Lcom/mojang/brigadier/exceptions/DynamicCommandExceptionType; readerInvalidBool + readerInvalidDouble ()Lcom/mojang/brigadier/exceptions/DynamicCommandExceptionType; readerInvalidDouble + readerInvalidEscape ()Lcom/mojang/brigadier/exceptions/DynamicCommandExceptionType; readerInvalidEscape + readerInvalidFloat ()Lcom/mojang/brigadier/exceptions/DynamicCommandExceptionType; readerInvalidFloat + readerInvalidInt ()Lcom/mojang/brigadier/exceptions/DynamicCommandExceptionType; readerInvalidInt + readerInvalidLong ()Lcom/mojang/brigadier/exceptions/DynamicCommandExceptionType; readerInvalidLong +dla net/minecraft/world/level/levelgen/feature/IceSpikeFeature + (Lcom/mojang/serialization/Codec;)V + 0 o p_66003_ + a (Ldkq;)Z m_142674_ + 0 o p_159882_ +dlb net/minecraft/world/level/levelgen/feature/IcebergFeature + (Lcom/mojang/serialization/Codec;)V + 0 o p_66017_ + a (Lgu;Lcmn;Lapf;IIZZLdcb;)V m_225124_ + 0 o p_225125_ + 1 o p_225126_ + 2 o p_225127_ + 3 o p_225128_ + 4 o p_225129_ + 5 o p_225130_ + 6 o p_225131_ + 7 o p_225132_ + a (Lapf;Lcmn;IILgu;ZIDI)V m_225099_ + 0 o p_225100_ + 1 o p_225101_ + 2 o p_225102_ + 3 o p_225103_ + 4 o p_225104_ + 5 o p_225105_ + 6 o p_225106_ + 7 o p_225107_ + 8 o p_225108_ + a (Lcmn;Lapf;Lgu;IIIIIIZIDZLdcb;)V m_225109_ + 0 o p_225110_ + 1 o p_225111_ + 2 o p_225112_ + 3 o p_225113_ + 4 o p_225114_ + 5 o p_225115_ + 6 o p_225116_ + 7 o p_225117_ + 8 o p_225118_ + 9 o p_225119_ + 10 o p_225120_ + 11 o p_225121_ + 12 o p_225122_ + 13 o p_225123_ + a (IILgu;ILapf;)D m_225088_ + 0 o p_225089_ + 1 o p_225090_ + 2 o p_225091_ + 3 o p_225092_ + 4 o p_225093_ + a (III)I m_66018_ + 0 o p_66019_ + 1 o p_66020_ + 2 o p_66021_ + a (IILgu;Lcmn;ZDLgu;II)V m_66035_ + 0 o p_66036_ + 1 o p_66037_ + 2 o p_66038_ + 3 o p_66039_ + 4 o p_66040_ + 5 o p_66041_ + 6 o p_66042_ + 7 o p_66043_ + 8 o p_66044_ + a (Lcmn;Lgu;IIZI)V m_66051_ + 0 o p_66052_ + 1 o p_66053_ + 2 o p_66054_ + 3 o p_66055_ + 4 o p_66056_ + 5 o p_66057_ + a (IILgu;IID)D m_66022_ + 0 o p_66023_ + 1 o p_66024_ + 2 o p_66025_ + 3 o p_66026_ + 4 o p_66027_ + 5 o p_66028_ + a (Lcls;Lgu;)Z m_66045_ + 0 o p_66046_ + 1 o p_66047_ + a (Lcmn;Lgu;)V m_66048_ + 0 o p_66049_ + 1 o p_66050_ + a (Ldkq;)Z m_142674_ + 0 o p_159884_ + a (Lapf;III)I m_225094_ + 0 o p_225095_ + 1 o p_225096_ + 2 o p_225097_ + 3 o p_225098_ + b (III)I m_66109_ + 0 o p_66110_ + 1 o p_66111_ + 2 o p_66112_ + b (Lapf;III)I m_225133_ + 0 o p_225134_ + 1 o p_225135_ + 2 o p_225136_ + 3 o p_225137_ + c (Ldcb;)Z m_159885_ + static + 0 o p_159886_ +dlc net/minecraft/world/level/levelgen/feature/KelpFeature + (Lcom/mojang/serialization/Codec;)V + 0 o p_66219_ + a (Ldkq;)Z m_142674_ + 0 o p_159956_ +dld net/minecraft/world/level/levelgen/feature/LakeFeature + a f_66256_ + ()V + static + (Lcom/mojang/serialization/Codec;)V + 0 o p_66259_ + a (Ldkq;)Z m_142674_ + 0 o p_159958_ + c (Ldcb;)Z m_190951_ + 0 o p_190952_ +dld$a net/minecraft/world/level/levelgen/feature/LakeFeature$Configuration + a f_190953_ + b f_190954_ + c f_190955_ + ()V + static + (Ldot;Ldot;)V + 0 o f_190954_ + 1 o f_190955_ + a (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; m_190961_ + static + 0 o p_190962_ + a ()Ldot; f_190954_ + b ()Ldot; f_190955_ + equals (Ljava/lang/Object;)Z equals + 0 o p_190965_ + hashCode ()I hashCode + toString ()Ljava/lang/String; toString +dle net/minecraft/world/level/levelgen/feature/LargeDripstoneFeature + (Lcom/mojang/serialization/Codec;)V + 0 o p_159960_ + a (Lgu;ZLapf;ILbda;Lbda;)Ldle$a; m_225138_ + static + 0 o p_225139_ + 1 o p_225140_ + 2 o p_225141_ + 3 o p_225142_ + 4 o p_225143_ + 5 o p_225144_ + a (Ldkq;)Z m_142674_ + 0 o p_159967_ + a (Lcng;Lgu;Ldha$b;Ldle$b;)V m_159961_ + 0 o p_159962_ + 1 o p_159963_ + 2 o p_159964_ + 3 o p_159965_ +dle$a net/minecraft/world/level/levelgen/feature/LargeDripstoneFeature$LargeDripstone + a f_159975_ + b f_159976_ + c f_159977_ + d f_159978_ + e f_159979_ + (Lgu;ZIDD)V + 0 o p_197116_ + 1 o p_197117_ + 2 o p_197118_ + 3 o p_197119_ + 4 o p_197120_ + a (F)I m_159987_ + 0 o p_159988_ + a (Lcng;Lapf;Ldle$b;)V m_225145_ + 0 o p_225146_ + 1 o p_225147_ + 2 o p_225148_ + a (Ldmv;)Z m_159996_ + 0 o p_159997_ + a (Lcng;Ldle$b;)Z m_159989_ + 0 o p_159990_ + 1 o p_159991_ + a ()I m_159986_ + b ()I m_159998_ + c ()I m_159999_ +dle$b net/minecraft/world/level/levelgen/feature/LargeDripstoneFeature$WindOffsetter + a f_160000_ + b f_160001_ + (ILapf;Lbda;)V + 0 o p_225150_ + 1 o p_225151_ + 2 o p_225152_ + ()V + a (Lgu;)Lgu; m_160008_ + 0 o p_160009_ + a ()Ldle$b; m_160007_ + static +dlf net/minecraft/world/level/levelgen/feature/MonsterRoomFeature + a f_66340_ + b f_66341_ + c f_66342_ + ()V + static + (Lcom/mojang/serialization/Codec;)V + 0 o p_66345_ + a (Lapf;)Lbfn; m_225153_ + 0 o p_225154_ + a (Ldkq;)Z m_142674_ + 0 o p_160066_ +dlg net/minecraft/world/level/levelgen/feature/MultifaceGrowthFeature + (Lcom/mojang/serialization/Codec;)V + 0 o p_225156_ + a (Ldkq;)Z m_142674_ + 0 o p_225165_ + a (Lcng;Lgu;Ldcb;Ldmx;Lapf;Ljava/util/List;)Z m_225157_ + static + 0 o p_225158_ + 1 o p_225159_ + 2 o p_225160_ + 3 o p_225161_ + 4 o p_225162_ + 5 o p_225163_ + c (Ldcb;)Z m_225166_ + static + 0 o p_225167_ +dlh net/minecraft/world/level/levelgen/feature/NetherForestVegetationFeature + (Lcom/mojang/serialization/Codec;)V + 0 o p_66361_ + a (Ldkq;)Z m_142674_ + 0 o p_160068_ +dli net/minecraft/world/level/levelgen/feature/NoOpFeature + (Lcom/mojang/serialization/Codec;)V + 0 o p_66431_ + a (Ldkq;)Z m_142674_ + 0 o p_160112_ +dlj net/minecraft/world/level/levelgen/feature/OreFeature + (Lcom/mojang/serialization/Codec;)V + 0 o p_66531_ + a (Ldkq;)Z m_142674_ + 0 o p_160177_ + a (Lcng;Lapf;Ldna;DDDDDDIIIII)Z m_225171_ + 0 o p_225172_ + 1 o p_225173_ + 2 o p_225174_ + 3 o p_225175_ + 4 o p_225176_ + 5 o p_225177_ + 6 o p_225178_ + 7 o p_225179_ + 8 o p_225180_ + 9 o p_225181_ + 10 o p_225182_ + 11 o p_225183_ + 12 o p_225184_ + 13 o p_225185_ + a (Ldcb;Ljava/util/function/Function;Lapf;Ldna;Ldna$a;Lgu$a;)Z m_225186_ + static + 0 o p_225187_ + 1 o p_225188_ + 2 o p_225189_ + 3 o p_225190_ + 4 o p_225191_ + 5 o p_225192_ + a (Lapf;F)Z m_225168_ + static + 0 o p_225169_ + 1 o p_225170_ +dlk net/minecraft/world/level/levelgen/feature/PointedDripstoneFeature + (Lcom/mojang/serialization/Codec;)V + 0 o p_191067_ + a (Lcmn;Lgu;Lapf;)Ljava/util/Optional; m_225198_ + static + 0 o p_225199_ + 1 o p_225200_ + 2 o p_225201_ + a (Lcmn;Lapf;Lgu;Ldnb;)V m_225193_ + static + 0 o p_225194_ + 1 o p_225195_ + 2 o p_225196_ + 3 o p_225197_ + a (Ldkq;)Z m_142674_ + 0 o p_191078_ +dll net/minecraft/world/level/levelgen/feature/RandomBooleanSelectorFeature + (Lcom/mojang/serialization/Codec;)V + 0 o p_66591_ + a (Ldkq;)Z m_142674_ + 0 o p_160208_ +dlm net/minecraft/world/level/levelgen/feature/RandomPatchFeature + (Lcom/mojang/serialization/Codec;)V + 0 o p_66605_ + a (Ldkq;)Z m_142674_ + 0 o p_160210_ +dln net/minecraft/world/level/levelgen/feature/RandomSelectorFeature + (Lcom/mojang/serialization/Codec;)V + 0 o p_66619_ + a (Ldkq;)Z m_142674_ + 0 o p_160212_ +dlo net/minecraft/world/level/levelgen/feature/ReplaceBlobsFeature + (Lcom/mojang/serialization/Codec;)V + 0 o p_66633_ + a (Ldkq;)Z m_142674_ + 0 o p_160214_ + a (Lcmn;Lgu$a;Lcpn;)Lgu; m_66634_ + static + 0 o p_66635_ + 1 o p_66636_ + 2 o p_66637_ +dlp net/minecraft/world/level/levelgen/feature/ReplaceBlockFeature + (Lcom/mojang/serialization/Codec;)V + 0 o p_66651_ + a (Ldkq;)Z m_142674_ + 0 o p_160216_ +dlq net/minecraft/world/level/levelgen/feature/RootSystemFeature + (Lcom/mojang/serialization/Codec;)V + 0 o p_160218_ + a (Ldcb;II)Z m_160252_ + static + 0 o p_160253_ + 1 o p_160254_ + 2 o p_160255_ + a (Lcng;Ldni;Lapf;Lgu;Lgu$a;)V m_225216_ + static + 0 o p_225217_ + 1 o p_225218_ + 2 o p_225219_ + 3 o p_225220_ + 4 o p_225221_ + a (Ldkq;)Z m_142674_ + 0 o p_160257_ + a (Lcng;Lddy;Ldni;Lapf;Lgu$a;Lgu;)Z m_225202_ + static + 0 o p_225203_ + 1 o p_225204_ + 2 o p_225205_ + 3 o p_225206_ + 4 o p_225207_ + 5 o p_225208_ + a (Lcng;Ldni;Lapf;IILgu$a;)V m_225209_ + static + 0 o p_225210_ + 1 o p_225211_ + 2 o p_225212_ + 3 o p_225213_ + 4 o p_225214_ + 5 o p_225215_ + a (Lgu;ILcng;Ldni;Lapf;)V m_225222_ + static + 0 o p_225223_ + 1 o p_225224_ + 2 o p_225225_ + 3 o p_225226_ + 4 o p_225227_ + a (Ldni;Ldcb;)Z m_204760_ + static + 0 o p_204761_ + 1 o p_204762_ + a (Lcng;Ldni;Lgu;)Z m_160235_ + static + 0 o p_160236_ + 1 o p_160237_ + 2 o p_160238_ +dlr net/minecraft/world/level/levelgen/feature/ScatteredOreFeature + a f_160302_ + (Lcom/mojang/serialization/Codec;)V + 0 o p_160304_ + a (Lgu$a;Lapf;Lgu;I)V m_225231_ + 0 o p_225232_ + 1 o p_225233_ + 2 o p_225234_ + 3 o p_225235_ + a (Lapf;I)I m_225228_ + 0 o p_225229_ + 1 o p_225230_ + a (Ldkq;)Z m_142674_ + 0 o p_160306_ +dls net/minecraft/world/level/levelgen/feature/SculkPatchFeature + (Lcom/mojang/serialization/Codec;)V + 0 o p_225237_ + a (Ldkq;)Z m_142674_ + 0 o p_225242_ + a (Lcmn;Lgu;)Z m_225238_ + 0 o p_225239_ + 1 o p_225240_ + b (Lcmn;Lgu;)Z m_225243_ + static + 0 o p_225244_ + 1 o p_225245_ +dlt net/minecraft/world/level/levelgen/feature/SeaPickleFeature + (Lcom/mojang/serialization/Codec;)V + 0 o p_66754_ + a (Ldkq;)Z m_142674_ + 0 o p_160316_ +dlu net/minecraft/world/level/levelgen/feature/SeagrassFeature + (Lcom/mojang/serialization/Codec;)V + 0 o p_66768_ + a (Ldkq;)Z m_142674_ + 0 o p_160318_ +dlv net/minecraft/world/level/levelgen/feature/SimpleBlockFeature + (Lcom/mojang/serialization/Codec;)V + 0 o p_66808_ + a (Ldkq;)Z m_142674_ + 0 o p_160341_ +dlw net/minecraft/world/level/levelgen/feature/SimpleRandomSelectorFeature + (Lcom/mojang/serialization/Codec;)V + 0 o p_66822_ + a (Ldkq;)Z m_142674_ + 0 o p_160343_ +dlx net/minecraft/world/level/levelgen/feature/SnowAndFreezeFeature + (Lcom/mojang/serialization/Codec;)V + 0 o p_66836_ + a (Ldkq;)Z m_142674_ + 0 o p_160368_ +dly net/minecraft/world/level/levelgen/feature/SpikeFeature + a f_160369_ + b f_160370_ + c f_66849_ + ()V + static + (Lcom/mojang/serialization/Codec;)V + 0 o p_66852_ + a (Lcnb;Lapf;Ldnm;Ldly$a;)V m_225246_ + 0 o p_225247_ + 1 o p_225248_ + 2 o p_225249_ + 3 o p_225250_ + a (Lcng;)Ljava/util/List; m_66858_ + static + 0 o p_66859_ + a (Ldkq;)Z m_142674_ + 0 o p_160372_ +dly$a net/minecraft/world/level/levelgen/feature/SpikeFeature$EndSpike + a f_66872_ + b f_66873_ + c f_66874_ + d f_66875_ + e f_66876_ + f f_66877_ + g f_66878_ + ()V + static + (IIIIZ)V + 0 o p_66881_ + 1 o p_66882_ + 2 o p_66883_ + 3 o p_66884_ + 4 o p_66885_ + a (Lgu;)Z m_66891_ + 0 o p_66892_ + a ()I m_66886_ + a (Ldly$a;)Ljava/lang/Boolean; m_160373_ + static + 0 o p_160374_ + a (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; m_66889_ + static + 0 o p_66890_ + b (Ldly$a;)Ljava/lang/Integer; m_160375_ + static + 0 o p_160376_ + b ()I m_66893_ + c ()I m_66896_ + c (Ldly$a;)Ljava/lang/Integer; m_160377_ + static + 0 o p_160378_ + d (Ldly$a;)Ljava/lang/Integer; m_160379_ + static + 0 o p_160380_ + d ()I m_66899_ + e ()Z m_66902_ + e (Ldly$a;)Ljava/lang/Integer; m_160381_ + static + 0 o p_160382_ + f ()Leed; m_66905_ +dly$b net/minecraft/world/level/levelgen/feature/SpikeFeature$SpikeCacheLoader + ()V + a (Ljava/lang/Long;)Ljava/util/List; load + 0 o p_66910_ + load (Ljava/lang/Object;)Ljava/lang/Object; load + 0 o p_66912_ +dlz net/minecraft/world/level/levelgen/feature/SpringFeature + (Lcom/mojang/serialization/Codec;)V + 0 o p_66914_ + a (Ldkq;)Z m_142674_ + 0 o p_160404_ +dm net/minecraft/commands/CommandBuildContext + a (Lhg$b;Lcaw;)Ldm; m_255418_ + static + 0 o p_255702_ + 1 o p_255968_ + a (Lacp;)Lhg; m_227133_ + 0 o p_227134_ + a (Lhs;Lcaw;)Ldm$a; m_255409_ + static + 0 o p_255925_ + 1 o p_255945_ +dm$1 net/minecraft/commands/CommandBuildContext$1 + a f_254736_ + b f_254659_ + (Lhg$b;Lcaw;)V + 0 o p_256248_ + 1 o p_255812_ + a (Lacp;)Lhg; m_227133_ + 0 o p_255791_ +dm$2 net/minecraft/commands/CommandBuildContext$2 + a f_254691_ + b f_254628_ + c f_254623_ + (Lhs;Lcaw;)V + 0 o p_255818_ + 1 o p_256061_ + a (Ldm$b;)V m_254905_ + 0 o p_256626_ + a (Lacp;)Lhg; m_227133_ + 0 o p_256616_ +dm$2$1 net/minecraft/commands/CommandBuildContext$2$1 + a f_254660_ + b f_254686_ + c f_254666_ + (Ldm$2;Lhg$c;Lhg$c;)V + 0 o p_256109_ + 1 o p_255850_ + 2 o p_256296_ + a ()Lhg$c; m_254893_ +dm$3 net/minecraft/commands/CommandBuildContext$3 + a f_254651_ + ()V + static +dm$a net/minecraft/commands/CommandBuildContext$Configurable + a (Ldm$b;)V m_254905_ + 0 o p_256669_ +dm$b net/minecraft/commands/CommandBuildContext$MissingTagAccessPolicy + a CREATE_NEW + b FAIL + c $VALUES + ()V + static + (Ljava/lang/String;I)V + 0 o p_227151_ + 1 o p_227152_ + a ()[Ldm$b; m_227153_ + static + valueOf (Ljava/lang/String;)Ldm$b; valueOf + static + 0 o p_227155_ + values ()[Ldm$b; values + static +dma net/minecraft/world/level/levelgen/feature/TreeFeature + a f_160509_ + (Lcom/mojang/serialization/Codec;)V + 0 o p_67201_ + a (Ldno;Lcng;Ldoe$b;Lapf;IIILdoe$a;)V m_271680_ + static + 0 o p_272575_ + 1 o p_272576_ + 2 o p_272577_ + 3 o p_272578_ + 4 o p_272579_ + 5 o p_272580_ + 6 o p_272581_ + 7 o p_272582_ + a (Lcmn;Ldrs;Ljava/util/Set;Ljava/util/Set;Ljava/util/Set;)Leer; m_225251_ + static + 0 o p_225252_ + 1 o p_225253_ + 2 o p_225254_ + 3 o p_225255_ + 4 o p_225256_ + a (Lcng;Lapf;Lgu;Ljava/util/function/BiConsumer;Ljava/util/function/BiConsumer;Ldoe$b;Ldno;)Z m_225257_ + 0 o p_225258_ + 1 o p_225259_ + 2 o p_225260_ + 3 o p_225261_ + 4 o p_225262_ + 5 o p_273670_ + 6 o p_225264_ + a (Ljava/util/Set;Lcng;Lgu;Ldcb;)V m_160540_ + static + 0 o p_160541_ + 1 o p_160542_ + 2 o p_160543_ + 3 o p_160544_ + a (Lcmu;Lgu;Ldcb;)V m_5974_ + 0 o p_67221_ + 1 o p_67222_ + 2 o p_67223_ + a (Lgu;Lapf;Ldoq;)Lgu; m_225283_ + static + 0 o p_225284_ + 1 o p_225285_ + 2 o p_225286_ + a (Ldkq;)Z m_142674_ + 0 o p_160530_ + a (Ldpk$a;Ldpk;)V m_225280_ + static + 0 o p_225281_ + 1 o p_225282_ + a (Lcng;Ljava/util/Set;Ljava/util/Set;Ljava/util/Set;Ldrs;)Ljava/lang/Boolean; m_225265_ + static + 0 o p_225266_ + 1 o p_225267_ + 2 o p_225268_ + 3 o p_225269_ + 4 o p_225270_ + a (Lcms;ILgu;Ldno;)I m_67215_ + 0 o p_67216_ + 1 o p_67217_ + 2 o p_67218_ + 3 o p_67219_ + b (Ljava/util/Set;Lcng;Lgu;Ldcb;)V m_160545_ + static + 0 o p_160546_ + 1 o p_160547_ + 2 o p_160548_ + 3 o p_160549_ + b (Lcms;Lgu;)Z m_67267_ + static + 0 o p_67268_ + 1 o p_67269_ + b (Lcmu;Lgu;Ldcb;)V m_67256_ + static + 0 o p_67257_ + 1 o p_67258_ + 2 o p_67259_ + c (Lcms;Lgu;)Z m_67272_ + static + 0 o p_67273_ + 1 o p_67274_ + c (Ldcb;)Z m_284122_ + static + 0 o p_284925_ + c (Ljava/util/Set;Lcng;Lgu;Ldcb;)V m_160552_ + static + 0 o p_160553_ + 1 o p_160554_ + 2 o p_160555_ + 3 o p_160556_ + d (Lcms;Lgu;)Z m_67277_ + static + 0 o p_67278_ + 1 o p_67279_ + d (Ldcb;)Z m_284121_ + static + 0 o p_284924_ + e (Ldcb;)Z m_225298_ + static + 0 o p_225299_ +dma$1 net/minecraft/world/level/levelgen/feature/TreeFeature$1 + a f_271346_ + b f_271398_ + c f_271236_ + (Ldma;Ljava/util/Set;Lcng;)V + 0 o p_272901_ + 1 o p_272858_ + 2 o p_273697_ + a (Lgu;)Z m_271808_ + 0 o p_272999_ + a (Lgu;Ldcb;)V m_271838_ + 0 o p_272825_ + 1 o p_273311_ +dmb net/minecraft/world/level/levelgen/feature/TwistingVinesFeature + (Lcom/mojang/serialization/Codec;)V + 0 o p_67292_ + a (Lcmn;Lgu$a;)Z m_67293_ + static + 0 o p_67294_ + 1 o p_67295_ + a (Ldkq;)Z m_142674_ + 0 o p_160558_ + a (Lcmn;Lgu;)Z m_67296_ + static + 0 o p_67297_ + 1 o p_67298_ + a (Lcmn;Lapf;Lgu$a;III)V m_225300_ + static + 0 o p_225301_ + 1 o p_225302_ + 2 o p_225303_ + 3 o p_225304_ + 4 o p_225305_ + 5 o p_225306_ +dmc net/minecraft/world/level/levelgen/feature/UnderwaterMagmaFeature + (Lcom/mojang/serialization/Codec;)V + 0 o p_160560_ + a (Ldkq;)Z m_142674_ + 0 o p_160569_ + a (Lcmn;Lgu;)Z m_160561_ + 0 o p_160562_ + 1 o p_160563_ + a (Lcng;Lgu;Ldnq;)Ljava/util/OptionalInt; m_160564_ + static + 0 o p_160565_ + 1 o p_160566_ + 2 o p_160567_ + a (Lapf;Ldnq;Lgu;)Z m_225307_ + static + 0 o p_225308_ + 1 o p_225309_ + 2 o p_225310_ + b (Lcng;Lgu;)Z m_160574_ + 0 o p_160575_ + 1 o p_160576_ + c (Ldcb;)Z m_160580_ + static + 0 o p_160581_ + c (Lcng;Lgu;)I m_160577_ + static + 0 o p_160578_ + 1 o p_160579_ + d (Lcng;Lgu;)Z m_160582_ + 0 o p_160583_ + 1 o p_160584_ + d (Ldcb;)Z m_160585_ + static + 0 o p_160586_ +dmd net/minecraft/world/level/levelgen/feature/VegetationPatchFeature + (Lcom/mojang/serialization/Codec;)V + 0 o p_160588_ + a (Ldkq;Lcng;Ldnr;Lapf;Ljava/util/Set;II)V m_225330_ + 0 o p_225331_ + 1 o p_225332_ + 2 o p_225333_ + 3 o p_225334_ + 4 o p_225335_ + 5 o p_225336_ + 6 o p_225337_ + a (Lcng;Ldnr;Lddy;Lapf;Lgu;)Z m_213555_ + 0 o p_225318_ + 1 o p_225319_ + 2 o p_225320_ + 3 o p_225321_ + 4 o p_225322_ + a (Lcng;Ldnr;Lapf;Lgu;Ljava/util/function/Predicate;II)Ljava/util/Set; m_213631_ + 0 o p_225311_ + 1 o p_225312_ + 2 o p_225313_ + 3 o p_225314_ + 4 o p_225315_ + 5 o p_225316_ + 6 o p_225317_ + a (Ldkq;)Z m_142674_ + 0 o p_160612_ + a (Lcng;Ldnr;Ljava/util/function/Predicate;Lapf;Lgu$a;I)Z m_225323_ + 0 o p_225324_ + 1 o p_225325_ + 2 o p_225326_ + 3 o p_225327_ + 4 o p_225328_ + 5 o p_225329_ + a (Ldnr;Ldcb;)Z m_204780_ + static + 0 o p_204781_ + 1 o p_204782_ + c (Ldcb;)Z m_284123_ + static + 0 o p_284926_ +dme net/minecraft/world/level/levelgen/feature/VinesFeature + (Lcom/mojang/serialization/Codec;)V + 0 o p_67337_ + a (Ldkq;)Z m_142674_ + 0 o p_160628_ +dmf net/minecraft/world/level/levelgen/feature/VoidStartPlatformFeature + a f_160629_ + b f_67351_ + c f_160630_ + d f_160631_ + ()V + static + (Lcom/mojang/serialization/Codec;)V + 0 o p_67354_ + a (IIII)I m_67355_ + static + 0 o p_67356_ + 1 o p_67357_ + 2 o p_67358_ + 3 o p_67359_ + a (Ldkq;)Z m_142674_ + 0 o p_160633_ +dmg net/minecraft/world/level/levelgen/feature/WaterloggedVegetationPatchFeature + (Lcom/mojang/serialization/Codec;)V + 0 o p_160635_ + a (Lcng;Ldnr;Lddy;Lapf;Lgu;)Z m_213555_ + 0 o p_225347_ + 1 o p_225348_ + 2 o p_225349_ + 3 o p_225350_ + 4 o p_225351_ + a (Lcng;Ldnr;Lapf;Lgu;Ljava/util/function/Predicate;II)Ljava/util/Set; m_213631_ + 0 o p_225339_ + 1 o p_225340_ + 2 o p_225341_ + 3 o p_225342_ + 4 o p_225343_ + 5 o p_225344_ + 6 o p_225345_ + a (Lcng;Ljava/util/Set;Lgu;Lgu$a;)Z m_160655_ + static + 0 o p_160656_ + 1 o p_160657_ + 2 o p_160658_ + 3 o p_160659_ + a (Lcng;Lgu;Lgu$a;Lha;)Z m_160650_ + static + 0 o p_160651_ + 1 o p_160652_ + 2 o p_160653_ + 3 o p_160654_ +dmh net/minecraft/world/level/levelgen/feature/WeepingVinesFeature + a f_67372_ + ()V + static + (Lcom/mojang/serialization/Codec;)V + 0 o p_67375_ + a (Ldkq;)Z m_142674_ + 0 o p_160661_ + a (Lcmn;Lapf;Lgu;)V m_225359_ + 0 o p_225360_ + 1 o p_225361_ + 2 o p_225362_ + a (Lcmn;Lapf;Lgu$a;III)V m_225352_ + static + 0 o p_225353_ + 1 o p_225354_ + 2 o p_225355_ + 3 o p_225356_ + 4 o p_225357_ + 5 o p_225358_ + b (Lcmn;Lapf;Lgu;)V m_225363_ + 0 o p_225364_ + 1 o p_225365_ + 2 o p_225366_ +dmi net/minecraft/world/level/levelgen/feature/WeightedPlacedFeature + a f_191171_ + b f_191172_ + c f_191173_ + ()V + static + (Lhe;F)V + 0 o p_204786_ + 1 o p_204787_ + a (Ldmi;)Ljava/lang/Float; m_191188_ + static + 0 o p_191189_ + a (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; m_191186_ + static + 0 o p_191187_ + a (Lcng;Lddy;Lapf;Lgu;)Z m_225367_ + 0 o p_225368_ + 1 o p_225369_ + 2 o p_225370_ + 3 o p_225371_ + b (Ldmi;)Lhe; m_204788_ + static + 0 o p_204789_ +dmj net/minecraft/world/level/levelgen/feature/configurations/BlockColumnConfiguration + a f_191206_ + b f_191207_ + c f_191208_ + d f_191209_ + e f_191210_ + ()V + static + (Ljava/util/List;Lha;Ldir;Z)V + 0 o f_191207_ + 1 o f_191208_ + 2 o f_191209_ + 3 o f_191210_ + a (Lbdc;Ldot;)Ldmj$a; m_191218_ + static + 0 o p_191219_ + 1 o p_191220_ + a ()Ljava/util/List; f_191207_ + a (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; m_191221_ + static + 0 o p_191222_ + b ()Lha; f_191208_ + b (Lbdc;Ldot;)Ldmj; m_191224_ + static + 0 o p_191225_ + 1 o p_191226_ + c ()Ldir; f_191209_ + d ()Z f_191210_ + equals (Ljava/lang/Object;)Z equals + 0 o p_191230_ + hashCode ()I hashCode + toString ()Ljava/lang/String; toString +dmj$a net/minecraft/world/level/levelgen/feature/configurations/BlockColumnConfiguration$Layer + a f_191233_ + b f_191234_ + c f_191235_ + ()V + static + (Lbdc;Ldot;)V + 0 o f_191234_ + 1 o f_191235_ + a (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; m_191241_ + static + 0 o p_191242_ + a ()Lbdc; f_191234_ + b ()Ldot; f_191235_ + equals (Ljava/lang/Object;)Z equals + 0 o p_191245_ + hashCode ()I hashCode + toString ()Ljava/lang/String; toString +dmk net/minecraft/world/level/levelgen/feature/configurations/BlockPileConfiguration + a f_67539_ + b f_67540_ + ()V + static + (Ldot;)V + 0 o p_67543_ + a (Ldmk;)Ldot; m_67544_ + static + 0 o p_67545_ +dml net/minecraft/world/level/levelgen/feature/configurations/BlockStateConfiguration + a f_67546_ + b f_67547_ + ()V + static + (Ldcb;)V + 0 o p_67550_ + a (Ldml;)Ldcb; m_67551_ + static + 0 o p_67552_ +dmm net/minecraft/world/level/levelgen/feature/configurations/ColumnFeatureConfiguration + a f_67553_ + b f_67554_ + c f_67555_ + ()V + static + (Lbdc;Lbdc;)V + 0 o p_160715_ + 1 o p_160716_ + a (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; m_67562_ + static + 0 o p_67563_ + a ()Lbdc; m_160717_ + a (Ldmm;)Lbdc; m_160718_ + static + 0 o p_160719_ + b ()Lbdc; m_160720_ + b (Ldmm;)Lbdc; m_160721_ + static + 0 o p_160722_ +dmn net/minecraft/world/level/levelgen/feature/configurations/CountConfiguration + a f_67568_ + b f_67569_ + ()V + static + (Lbdc;)V + 0 o p_160724_ + (I)V + 0 o p_67572_ + a ()Lbdc; m_160725_ +dmo net/minecraft/world/level/levelgen/feature/configurations/DeltaFeatureConfiguration + a f_67593_ + b f_67594_ + c f_67595_ + d f_67596_ + e f_67597_ + ()V + static + (Ldcb;Ldcb;Lbdc;Lbdc;)V + 0 o p_160731_ + 1 o p_160732_ + 2 o p_160733_ + 3 o p_160734_ + a (Ldmo;)Lbdc; m_160735_ + static + 0 o p_160736_ + a (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; m_67606_ + static + 0 o p_67607_ + a ()Ldcb; m_67608_ + b ()Ldcb; m_67611_ + b (Ldmo;)Lbdc; m_160737_ + static + 0 o p_160738_ + c ()Lbdc; m_160741_ + c (Ldmo;)Ldcb; m_160739_ + static + 0 o p_160740_ + d ()Lbdc; m_160744_ + d (Ldmo;)Ldcb; m_160742_ + static + 0 o p_160743_ +dmp net/minecraft/world/level/levelgen/feature/configurations/DiskConfiguration + a f_67618_ + b f_225372_ + c f_225373_ + d f_67620_ + e f_67621_ + ()V + static + (Ldpb;Ldir;Lbdc;I)V + 0 o f_225372_ + 1 o f_225373_ + 2 o f_67620_ + 3 o f_67621_ + a (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; m_191249_ + static + 0 o p_191250_ + a ()Ldpb; f_225372_ + b ()Ldir; f_225373_ + c ()Lbdc; f_67620_ + d ()I f_67621_ + equals (Ljava/lang/Object;)Z equals + 0 o p_191255_ + hashCode ()I hashCode + toString ()Ljava/lang/String; toString +dmq net/minecraft/world/level/levelgen/feature/configurations/DripstoneClusterConfiguration + a f_160758_ + b f_160759_ + c f_160760_ + d f_160761_ + e f_160762_ + f f_160763_ + g f_160764_ + h f_160765_ + i f_160766_ + j f_160767_ + k f_160768_ + l f_160769_ + ()V + static + (ILbdc;Lbdc;IILbdc;Lbda;Lbda;FII)V + 0 o p_160772_ + 1 o p_160773_ + 2 o p_160774_ + 3 o p_160775_ + 4 o p_160776_ + 5 o p_160777_ + 6 o p_160778_ + 7 o p_160779_ + 8 o p_160780_ + 9 o p_160781_ + 10 o p_160782_ + a (Ldmq;)Ljava/lang/Integer; m_160785_ + static + 0 o p_160786_ + a (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; m_160783_ + static + 0 o p_160784_ + b (Ldmq;)Ljava/lang/Integer; m_160787_ + static + 0 o p_160788_ + c (Ldmq;)Ljava/lang/Float; m_160789_ + static + 0 o p_160790_ + d (Ldmq;)Lbda; m_160791_ + static + 0 o p_160792_ + e (Ldmq;)Lbda; m_160793_ + static + 0 o p_160794_ + f (Ldmq;)Lbdc; m_160795_ + static + 0 o p_160796_ + g (Ldmq;)Ljava/lang/Integer; m_160797_ + static + 0 o p_160798_ + h (Ldmq;)Ljava/lang/Integer; m_160799_ + static + 0 o p_160800_ + i (Ldmq;)Lbdc; m_160801_ + static + 0 o p_160802_ + j (Ldmq;)Lbdc; m_160803_ + static + 0 o p_160804_ + k (Ldmq;)Ljava/lang/Integer; m_160805_ + static + 0 o p_160806_ +dmr net/minecraft/world/level/levelgen/feature/configurations/EndGatewayConfiguration + a f_67639_ + b f_67640_ + c f_67641_ + ()V + static + (Ljava/util/Optional;Z)V + 0 o p_67644_ + 1 o p_67645_ + a (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; m_67648_ + static + 0 o p_67649_ + a ()Ldmr; m_67653_ + static + a (Lgu;Z)Ldmr; m_67650_ + static + 0 o p_67651_ + 1 o p_67652_ + a (Ldmr;)Ljava/lang/Boolean; m_160807_ + static + 0 o p_160808_ + b ()Ljava/util/Optional; m_67656_ + b (Ldmr;)Ljava/util/Optional; m_160809_ + static + 0 o p_160810_ + c ()Z m_67657_ +dms net/minecraft/world/level/levelgen/feature/configurations/FeatureConfiguration + m f_67737_ + ()V + static + e ()Ljava/util/stream/Stream; m_7817_ +dmt net/minecraft/world/level/levelgen/feature/configurations/GeodeConfiguration + a f_160811_ + b f_160812_ + c f_160813_ + d f_160814_ + e f_160815_ + f f_160816_ + g f_160817_ + h f_160818_ + i f_160819_ + j f_160820_ + k f_160821_ + l f_160822_ + n f_160823_ + o f_160824_ + p f_160825_ + ()V + static + (Ldhh;Ldhj;Ldhi;DDZLbdc;Lbdc;Lbdc;IIDI)V + 0 o p_160828_ + 1 o p_160829_ + 2 o p_160830_ + 3 o p_160831_ + 4 o p_160832_ + 5 o p_160833_ + 6 o p_160834_ + 7 o p_160835_ + 8 o p_160836_ + 9 o p_160837_ + 10 o p_160838_ + 11 o p_160839_ + 12 o p_160840_ + a (Ldmt;)Ljava/lang/Integer; m_160843_ + static + 0 o p_160844_ + a (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; m_160841_ + static + 0 o p_160842_ + b (Ldmt;)Ljava/lang/Double; m_160845_ + static + 0 o p_160846_ + c (Ldmt;)Ljava/lang/Integer; m_160847_ + static + 0 o p_160848_ + d (Ldmt;)Ljava/lang/Integer; m_160849_ + static + 0 o p_160850_ + e (Ldmt;)Lbdc; m_160851_ + static + 0 o p_160852_ + f (Ldmt;)Lbdc; m_160853_ + static + 0 o p_160854_ + g (Ldmt;)Lbdc; m_160855_ + static + 0 o p_160856_ + h (Ldmt;)Ljava/lang/Boolean; m_160857_ + static + 0 o p_160858_ + i (Ldmt;)Ljava/lang/Double; m_160859_ + static + 0 o p_160860_ + j (Ldmt;)Ljava/lang/Double; m_160861_ + static + 0 o p_160862_ + k (Ldmt;)Ldhi; m_160863_ + static + 0 o p_160864_ + l (Ldmt;)Ldhj; m_160865_ + static + 0 o p_160866_ + m (Ldmt;)Ldhh; m_160867_ + static + 0 o p_160868_ +dmu net/minecraft/world/level/levelgen/feature/configurations/HugeMushroomFeatureConfiguration + a f_67739_ + b f_67740_ + c f_67741_ + d f_67742_ + ()V + static + (Ldot;Ldot;I)V + 0 o p_67745_ + 1 o p_67746_ + 2 o p_67747_ + a (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; m_67750_ + static + 0 o p_67751_ + a (Ldmu;)Ljava/lang/Integer; m_160938_ + static + 0 o p_160939_ + b (Ldmu;)Ldot; m_160940_ + static + 0 o p_160941_ + c (Ldmu;)Ldot; m_160942_ + static + 0 o p_160943_ +dmv net/minecraft/world/level/levelgen/feature/configurations/LargeDripstoneConfiguration + a f_160944_ + b f_160945_ + c f_160946_ + d f_160947_ + e f_160948_ + f f_160949_ + g f_160950_ + h f_160951_ + i f_160952_ + j f_160953_ + ()V + static + (ILbdc;Lbda;FLbda;Lbda;Lbda;IF)V + 0 o p_160956_ + 1 o p_160957_ + 2 o p_160958_ + 3 o p_160959_ + 4 o p_160960_ + 5 o p_160961_ + 6 o p_160962_ + 7 o p_160963_ + 8 o p_160964_ + a (Ldmv;)Ljava/lang/Float; m_160967_ + static + 0 o p_160968_ + a (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; m_160965_ + static + 0 o p_160966_ + b (Ldmv;)Ljava/lang/Integer; m_160969_ + static + 0 o p_160970_ + c (Ldmv;)Lbda; m_160971_ + static + 0 o p_160972_ + d (Ldmv;)Lbda; m_160973_ + static + 0 o p_160974_ + e (Ldmv;)Lbda; m_160975_ + static + 0 o p_160976_ + f (Ldmv;)Ljava/lang/Float; m_160977_ + static + 0 o p_160978_ + g (Ldmv;)Lbda; m_160979_ + static + 0 o p_160980_ + h (Ldmv;)Lbdc; m_160981_ + static + 0 o p_160982_ + i (Ldmv;)Ljava/lang/Integer; m_160983_ + static + 0 o p_160984_ +dmw net/minecraft/world/level/levelgen/feature/configurations/LayerConfiguration + a f_67767_ + b f_67768_ + c f_67769_ + ()V + static + (ILdcb;)V + 0 o p_67772_ + 1 o p_67773_ + a (Ldmw;)Ldcb; m_160985_ + static + 0 o p_160986_ + a (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; m_67776_ + static + 0 o p_67777_ + b (Ldmw;)Ljava/lang/Integer; m_160987_ + static + 0 o p_160988_ +dmx net/minecraft/world/level/levelgen/feature/configurations/MultifaceGrowthConfiguration + a f_225381_ + b f_225382_ + c f_225383_ + d f_225384_ + e f_225385_ + f f_225386_ + g f_225387_ + h f_225388_ + i f_225389_ + ()V + static + (Lcul;IZZZFLhi;)V + 0 o p_225392_ + 1 o p_225393_ + 2 o p_225394_ + 3 o p_225395_ + 4 o p_225396_ + 5 o p_225397_ + 6 o p_225398_ + a ()Ljava/lang/String; m_274288_ + static + a (Ldmx;)Lhi; m_225408_ + static + 0 o p_225409_ + a (Lcpn;)Lcom/mojang/serialization/DataResult; m_225404_ + static + 0 o p_225405_ + a (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; m_225406_ + static + 0 o p_225407_ + a (Lha;Lha;)Z m_225410_ + static + 0 o p_225411_ + 1 o p_225412_ + a (Lapf;)Ljava/util/List; m_225399_ + 0 o p_225400_ + a (Lapf;Lha;)Ljava/util/List; m_225401_ + 0 o p_225402_ + 1 o p_225403_ + b (Ldmx;)Ljava/lang/Float; m_225413_ + static + 0 o p_225414_ + c (Ldmx;)Ljava/lang/Boolean; m_225415_ + static + 0 o p_225416_ + d (Ldmx;)Ljava/lang/Boolean; m_225417_ + static + 0 o p_225418_ + e (Ldmx;)Ljava/lang/Boolean; m_225419_ + static + 0 o p_225420_ + f (Ldmx;)Ljava/lang/Integer; m_225421_ + static + 0 o p_225422_ + g (Ldmx;)Lcul; m_225423_ + static + 0 o p_225424_ +dmy net/minecraft/world/level/levelgen/feature/configurations/NetherForestVegetationConfig + c f_191258_ + d f_191259_ + e f_191260_ + ()V + static + (Ldot;II)V + 0 o p_191263_ + 1 o p_191264_ + 2 o p_191265_ + a (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; m_191266_ + static + 0 o p_191267_ + a (Ldmy;)Ljava/lang/Integer; m_191268_ + static + 0 o p_191269_ + b (Ldmy;)Ljava/lang/Integer; m_191270_ + static + 0 o p_191271_ + c (Ldmy;)Ldot; m_191272_ + static + 0 o p_191273_ +dmz net/minecraft/world/level/levelgen/feature/configurations/NoneFeatureConfiguration + a f_67815_ + b f_67816_ + ()V + static + ()V + a ()Ldmz; m_67819_ + static +dn net/minecraft/commands/CommandFunction + a f_77976_ + b f_77977_ + (Lacq;[Ldn$c;)V + 0 o p_77979_ + 1 o p_77980_ + a ()Lacq; m_77981_ + a (Lacq;Lcom/mojang/brigadier/CommandDispatcher;Lds;Ljava/util/List;)Ldn; m_77984_ + static + 0 o p_77985_ + 1 o p_77986_ + 2 o p_77987_ + 3 o p_77988_ + b ()[Ldn$c; m_77989_ +dn$a net/minecraft/commands/CommandFunction$CacheableFunction + a f_77990_ + b f_77991_ + c f_77992_ + d f_77993_ + ()V + static + (Lacq;)V + 0 o p_77998_ + (Ldn;)V + 0 o p_77996_ + a (Lade;)Ljava/util/Optional; m_78002_ + 0 o p_78003_ + a (Ldn;)Lacq; m_78000_ + static + 0 o p_78001_ + a ()Lacq; m_77999_ +dn$b net/minecraft/commands/CommandFunction$CommandEntry + a f_78004_ + (Lcom/mojang/brigadier/ParseResults;)V + 0 o p_78006_ + a (Lade;Lds;)I m_164875_ + 0 o p_164876_ + 1 o p_164877_ + a (Lds;Lds;)Lds; m_242679_ + static + 0 o p_242939_ + 1 o p_242934_ + execute (Lade;Lds;Ljava/util/Deque;IILade$c;)V m_142134_ + 0 o p_164879_ + 1 o p_164880_ + 2 o p_164881_ + 3 o p_164882_ + 4 o p_164883_ + 5 o p_164884_ + toString ()Ljava/lang/String; toString +dn$c net/minecraft/commands/CommandFunction$Entry + execute (Lade;Lds;Ljava/util/Deque;IILade$c;)V m_142134_ + 0 o p_164885_ + 1 o p_164886_ + 2 o p_164887_ + 3 o p_164888_ + 4 o p_164889_ + 5 o p_164890_ +dn$d net/minecraft/commands/CommandFunction$FunctionEntry + a f_78017_ + (Ldn;)V + 0 o p_78019_ + a (Lade$c;IILjava/util/Deque;Lds;Ldn;)V m_164894_ + static + 0 o p_164895_ + 1 o p_164896_ + 2 o p_164897_ + 3 o p_164898_ + 4 o p_164899_ + 5 o p_164900_ + a (Lade$c;I)V m_164891_ + 0 o p_164892_ + 1 o p_164893_ + execute (Lade;Lds;Ljava/util/Deque;IILade$c;)V m_142134_ + 0 o p_164902_ + 1 o p_164903_ + 2 o p_164904_ + 3 o p_164905_ + 4 o p_164906_ + 5 o p_164907_ + toString ()Ljava/lang/String; toString +dna net/minecraft/world/level/levelgen/feature/configurations/OreConfiguration + a f_67837_ + b f_161005_ + c f_67839_ + d f_161006_ + ()V + static + (Ljava/util/List;IF)V + 0 o p_161016_ + 1 o p_161017_ + 2 o p_161018_ + (Ljava/util/List;I)V + 0 o p_161013_ + 1 o p_161014_ + (Ldvn;Ldcb;I)V + 0 o p_67843_ + 1 o p_67844_ + 2 o p_67845_ + (Ldvn;Ldcb;IF)V + 0 o p_161008_ + 1 o p_161009_ + 2 o p_161010_ + 3 o p_161011_ + a (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; m_67848_ + static + 0 o p_67849_ + a (Ldna;)Ljava/lang/Float; m_161019_ + static + 0 o p_161020_ + a (Ldvn;Ldcb;)Ldna$a; m_161021_ + static + 0 o p_161022_ + 1 o p_161023_ + b (Ldna;)Ljava/lang/Integer; m_161024_ + static + 0 o p_161025_ + c (Ldna;)Ljava/util/List; m_161026_ + static + 0 o p_161027_ +dna$a net/minecraft/world/level/levelgen/feature/configurations/OreConfiguration$TargetBlockState + a f_161031_ + b f_161032_ + c f_161033_ + ()V + static + (Ldvn;Ldcb;)V + 0 o p_161036_ + 1 o p_161037_ + a (Ldna$a;)Ldcb; m_161040_ + static + 0 o p_161041_ + a (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; m_161038_ + static + 0 o p_161039_ + b (Ldna$a;)Ldvn; m_161042_ + static + 0 o p_161043_ +dnb net/minecraft/world/level/levelgen/feature/configurations/PointedDripstoneConfiguration + a f_191274_ + b f_191275_ + c f_191276_ + d f_191277_ + e f_191278_ + ()V + static + (FFFF)V + 0 o p_191281_ + 1 o p_191282_ + 2 o p_191283_ + 3 o p_191284_ + a (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; m_191285_ + static + 0 o p_191286_ + a (Ldnb;)Ljava/lang/Float; m_191287_ + static + 0 o p_191288_ + b (Ldnb;)Ljava/lang/Float; m_191289_ + static + 0 o p_191290_ + c (Ldnb;)Ljava/lang/Float; m_191291_ + static + 0 o p_191292_ + d (Ldnb;)Ljava/lang/Float; m_191293_ + static + 0 o p_191294_ +dnc net/minecraft/world/level/levelgen/feature/configurations/ProbabilityFeatureConfiguration + k f_67858_ + l f_67859_ + ()V + static + (F)V + 0 o p_67862_ + a (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; m_67865_ + static + 0 o p_67866_ + a (Ldnc;)Ljava/lang/Float; m_161044_ + static + 0 o p_161045_ +dnd net/minecraft/world/level/levelgen/feature/configurations/RandomBooleanFeatureConfiguration + a f_67867_ + b f_67868_ + c f_67869_ + ()V + static + (Lhe;Lhe;)V + 0 o p_204804_ + 1 o p_204805_ + a (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; m_67876_ + static + 0 o p_67877_ + a (Ldnd;)Lhe; m_204806_ + static + 0 o p_204807_ + b (Ldnd;)Lhe; m_204808_ + static + 0 o p_204809_ + e ()Ljava/util/stream/Stream; m_7817_ +dne net/minecraft/world/level/levelgen/feature/configurations/RandomFeatureConfiguration + a f_67881_ + b f_67882_ + c f_67883_ + ()V + static + (Ljava/util/List;Lhe;)V + 0 o p_204811_ + 1 o p_204812_ + a (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; m_67897_ + static + 0 o p_67898_ + a (Ldne;)Lhe; m_204815_ + static + 0 o p_204816_ + a (Ldmi;)Ljava/util/stream/Stream; m_204813_ + static + 0 o p_204814_ + b (Ldne;)Ljava/util/List; m_161052_ + static + 0 o p_161053_ + e ()Ljava/util/stream/Stream; m_7817_ +dnf net/minecraft/world/level/levelgen/feature/configurations/RandomPatchConfiguration + a f_67902_ + b f_67907_ + c f_191302_ + d f_191303_ + e f_191304_ + ()V + static + (IIILhe;)V + 0 o f_67907_ + 1 o f_191302_ + 2 o f_191303_ + 3 o f_191304_ + a (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; m_191311_ + static + 0 o p_191312_ + a ()I f_67907_ + b ()I f_191302_ + c ()I f_191303_ + d ()Lhe; f_191304_ + equals (Ljava/lang/Object;)Z equals + 0 o p_191317_ + hashCode ()I hashCode + toString ()Ljava/lang/String; toString +dng net/minecraft/world/level/levelgen/feature/configurations/ReplaceBlockConfiguration + a f_68023_ + b f_161083_ + ()V + static + (Ldcb;Ldcb;)V + 0 o p_68028_ + 1 o p_68029_ + (Ljava/util/List;)V + 0 o p_161085_ + a (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; m_161086_ + static + 0 o p_161087_ + a (Ldng;)Ljava/util/List; m_161088_ + static + 0 o p_161089_ +dnh net/minecraft/world/level/levelgen/feature/configurations/ReplaceSphereConfiguration + a f_68036_ + b f_68037_ + c f_68038_ + d f_68039_ + ()V + static + (Ldcb;Ldcb;Lbdc;)V + 0 o p_161091_ + 1 o p_161092_ + 2 o p_161093_ + a (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; m_68047_ + static + 0 o p_68048_ + a ()Lbdc; m_161096_ + a (Ldnh;)Lbdc; m_161094_ + static + 0 o p_161095_ + b (Ldnh;)Ldcb; m_161097_ + static + 0 o p_161098_ + c (Ldnh;)Ldcb; m_161099_ + static + 0 o p_161100_ +dni net/minecraft/world/level/levelgen/feature/configurations/RootSystemConfiguration + a f_161101_ + b f_161102_ + c f_161103_ + d f_161104_ + e f_161105_ + f f_161106_ + g f_161107_ + h f_161108_ + i f_161109_ + j f_161110_ + k f_161111_ + l f_161112_ + n f_161113_ + o f_198355_ + ()V + static + (Lhe;IILanl;Ldot;IIIILdot;IILdir;)V + 0 o p_204824_ + 1 o p_204825_ + 2 o p_204826_ + 3 o p_204827_ + 4 o p_204828_ + 5 o p_204829_ + 6 o p_204830_ + 7 o p_204831_ + 8 o p_204832_ + 9 o p_204833_ + 10 o p_204834_ + 11 o p_204835_ + 12 o p_204836_ + a (Ldni;)Ldir; m_198372_ + static + 0 o p_198373_ + a (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; m_198370_ + static + 0 o p_198371_ + b (Ldni;)Ljava/lang/Integer; m_161130_ + static + 0 o p_161131_ + c (Ldni;)Ljava/lang/Integer; m_161132_ + static + 0 o p_161133_ + d (Ldni;)Ldot; m_161134_ + static + 0 o p_161135_ + e (Ldni;)Ljava/lang/Integer; m_161136_ + static + 0 o p_161137_ + f (Ldni;)Ljava/lang/Integer; m_161138_ + static + 0 o p_161139_ + g (Ldni;)Ljava/lang/Integer; m_161140_ + static + 0 o p_161141_ + h (Ldni;)Ljava/lang/Integer; m_161142_ + static + 0 o p_161143_ + i (Ldni;)Ldot; m_161144_ + static + 0 o p_161145_ + j (Ldni;)Lanl; m_204837_ + static + 0 o p_204838_ + k (Ldni;)Ljava/lang/Integer; m_161148_ + static + 0 o p_161149_ + l (Ldni;)Ljava/lang/Integer; m_161150_ + static + 0 o p_161151_ + m (Ldni;)Lhe; m_204839_ + static + 0 o p_204840_ +dnj net/minecraft/world/level/levelgen/feature/configurations/SculkPatchConfiguration + a f_225425_ + b f_225426_ + c f_225427_ + d f_225428_ + e f_225429_ + f f_225430_ + g f_225431_ + h f_225432_ + ()V + static + (IIIIILbdc;F)V + 0 o f_225426_ + 1 o f_225427_ + 2 o f_225428_ + 3 o f_225429_ + 4 o f_225430_ + 5 o f_225431_ + 6 o f_225432_ + a ()I f_225426_ + a (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; m_225443_ + static + 0 o p_225444_ + b ()I f_225427_ + c ()I f_225428_ + d ()I f_225429_ + equals (Ljava/lang/Object;)Z equals + 0 o p_225449_ + f ()I f_225430_ + g ()Lbdc; f_225431_ + h ()F f_225432_ + hashCode ()I hashCode + toString ()Ljava/lang/String; toString +dnk net/minecraft/world/level/levelgen/feature/configurations/SimpleBlockConfiguration + a f_68068_ + b f_68069_ + ()V + static + (Ldot;)V + 0 o f_68069_ + a (Ldnk;)Ldot; m_161167_ + static + 0 o p_161168_ + a (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; m_191330_ + static + 0 o p_191331_ + a ()Ldot; f_68069_ + equals (Ljava/lang/Object;)Z equals + 0 o p_191333_ + hashCode ()I hashCode + toString ()Ljava/lang/String; toString +dnl net/minecraft/world/level/levelgen/feature/configurations/SimpleRandomFeatureConfiguration + a f_68089_ + b f_68090_ + ()V + static + (Lhi;)V + 0 o p_204842_ + a (Ldnl;)Lhi; m_204843_ + static + 0 o p_204844_ + a (Lhe;)Ljava/util/stream/Stream; m_204845_ + static + 0 o p_204846_ + e ()Ljava/util/stream/Stream; m_7817_ +dnm net/minecraft/world/level/levelgen/feature/configurations/SpikeConfiguration + a f_68099_ + b f_68100_ + c f_68101_ + d f_68102_ + ()V + static + (ZLjava/util/List;Lgu;)V + 0 o p_68105_ + 1 o p_68106_ + 2 o p_68107_ + (ZLjava/util/List;Ljava/util/Optional;)V + 0 o p_68109_ + 1 o p_68110_ + 2 o p_68111_ + a ()Z m_68116_ + a (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; m_68114_ + static + 0 o p_68115_ + a (Ldnm;)Ljava/util/Optional; m_161190_ + static + 0 o p_161191_ + b (Ldnm;)Ljava/util/List; m_161192_ + static + 0 o p_161193_ + b ()Ljava/util/List; m_68119_ + c ()Lgu; m_68122_ + c (Ldnm;)Ljava/lang/Boolean; m_161194_ + static + 0 o p_161195_ +dnn net/minecraft/world/level/levelgen/feature/configurations/SpringConfiguration + a f_68123_ + b f_68124_ + c f_68125_ + d f_68126_ + e f_68127_ + f f_68128_ + ()V + static + (Ldxe;ZIILhi;)V + 0 o p_204848_ + 1 o p_204849_ + 2 o p_204850_ + 3 o p_204851_ + 4 o p_204852_ + a (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; m_68138_ + static + 0 o p_68139_ + a (Ldnn;)Lhi; m_204853_ + static + 0 o p_204854_ + b (Ldnn;)Ljava/lang/Integer; m_161198_ + static + 0 o p_161199_ + c (Ldnn;)Ljava/lang/Integer; m_161200_ + static + 0 o p_161201_ + d (Ldnn;)Ljava/lang/Boolean; m_161202_ + static + 0 o p_161203_ + e (Ldnn;)Ldxe; m_161204_ + static + 0 o p_161205_ +dno net/minecraft/world/level/levelgen/feature/configurations/TreeConfiguration + a f_68184_ + b f_68185_ + c f_161212_ + d f_68190_ + e f_161213_ + f f_68189_ + g f_225455_ + h f_68191_ + i f_68187_ + j f_68193_ + k f_161215_ + ()V + static + (Ldot;Ldpw;Ldot;Ldoe;Ljava/util/Optional;Ldot;Ldnt;Ljava/util/List;ZZ)V + 0 o p_225457_ + 1 o p_225458_ + 2 o p_225459_ + 3 o p_225460_ + 4 o p_225461_ + 5 o p_225462_ + 6 o p_225463_ + 7 o p_225464_ + 8 o p_225465_ + 9 o p_225466_ + a (Ldno;)Ljava/lang/Boolean; m_225469_ + static + 0 o p_225470_ + a (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; m_225467_ + static + 0 o p_225468_ + b (Ldno;)Ljava/lang/Boolean; m_161231_ + static + 0 o p_161232_ + c (Ldno;)Ljava/util/List; m_225471_ + static + 0 o p_225472_ + d (Ldno;)Ldnt; m_225473_ + static + 0 o p_225474_ + e (Ldno;)Ldot; m_225475_ + static + 0 o p_225476_ + f (Ldno;)Ljava/util/Optional; m_225477_ + static + 0 o p_225478_ + g (Ldno;)Ldoe; m_191356_ + static + 0 o p_191357_ + h (Ldno;)Ldot; m_161243_ + static + 0 o p_161244_ + i (Ldno;)Ldpw; m_161245_ + static + 0 o p_161246_ + j (Ldno;)Ldot; m_161247_ + static + 0 o p_161248_ +dno$a net/minecraft/world/level/levelgen/feature/configurations/TreeConfiguration$TreeConfigurationBuilder + a f_68229_ + b f_161249_ + c f_68232_ + d f_68231_ + e f_225479_ + f f_161251_ + g f_68233_ + h f_68234_ + i f_68236_ + j f_161252_ + (Ldot;Ldpw;Ldot;Ldoe;Ljava/util/Optional;Ldnt;)V + 0 o p_225481_ + 1 o p_225482_ + 2 o p_225483_ + 3 o p_225484_ + 4 o p_225485_ + 5 o p_225486_ + (Ldot;Ldpw;Ldot;Ldoe;Ldnt;)V + 0 o p_191359_ + 1 o p_191360_ + 2 o p_191361_ + 3 o p_191362_ + 4 o p_191363_ + a ()Ldno$a; m_68244_ + a (Ldot;)Ldno$a; m_161260_ + 0 o p_161261_ + a (Ljava/util/List;)Ldno$a; m_68249_ + 0 o p_68250_ + b ()Ldno$a; m_161262_ + c ()Ldno; m_68251_ +dnp net/minecraft/world/level/levelgen/feature/configurations/TwistingVinesConfig + a f_191364_ + b f_191365_ + c f_191366_ + d f_191367_ + ()V + static + (III)V + 0 o f_191365_ + 1 o f_191366_ + 2 o f_191367_ + a (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; m_191374_ + static + 0 o p_191375_ + a ()I f_191365_ + b ()I f_191366_ + c ()I f_191367_ + equals (Ljava/lang/Object;)Z equals + 0 o p_191379_ + hashCode ()I hashCode + toString ()Ljava/lang/String; toString +dnq net/minecraft/world/level/levelgen/feature/configurations/UnderwaterMagmaConfiguration + a f_161263_ + b f_161264_ + c f_161265_ + d f_161266_ + ()V + static + (IIF)V + 0 o p_161269_ + 1 o p_161270_ + 2 o p_161271_ + a (Ldnq;)Ljava/lang/Float; m_161274_ + static + 0 o p_161275_ + a (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; m_161272_ + static + 0 o p_161273_ + b (Ldnq;)Ljava/lang/Integer; m_161276_ + static + 0 o p_161277_ + c (Ldnq;)Ljava/lang/Integer; m_161278_ + static + 0 o p_161279_ +dnr net/minecraft/world/level/levelgen/feature/configurations/VegetationPatchConfiguration + a f_161280_ + b f_161281_ + c f_161282_ + d f_161283_ + e f_161284_ + f f_161285_ + g f_161286_ + h f_161287_ + i f_161288_ + j f_161289_ + k f_161290_ + ()V + static + (Lanl;Ldot;Lhe;Ldqv;Lbdc;FIFLbdc;F)V + 0 o p_204856_ + 1 o p_204857_ + 2 o p_204858_ + 3 o p_204859_ + 4 o p_204860_ + 5 o p_204861_ + 6 o p_204862_ + 7 o p_204863_ + 8 o p_204864_ + 9 o p_204865_ + a (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; m_161303_ + static + 0 o p_161304_ + a (Ldnr;)Ljava/lang/Float; m_161305_ + static + 0 o p_161306_ + b (Ldnr;)Lbdc; m_161307_ + static + 0 o p_161308_ + c (Ldnr;)Ljava/lang/Float; m_161309_ + static + 0 o p_161310_ + d (Ldnr;)Ljava/lang/Integer; m_161311_ + static + 0 o p_161312_ + e (Ldnr;)Ljava/lang/Float; m_161313_ + static + 0 o p_161314_ + f (Ldnr;)Lbdc; m_161315_ + static + 0 o p_161316_ + g (Ldnr;)Ldqv; m_161317_ + static + 0 o p_161318_ + h (Ldnr;)Lhe; m_204866_ + static + 0 o p_204867_ + i (Ldnr;)Ldot; m_161321_ + static + 0 o p_161322_ + j (Ldnr;)Lanl; m_204868_ + static + 0 o p_204869_ +dns net/minecraft/world/level/levelgen/feature/configurations/package-info +dnt net/minecraft/world/level/levelgen/feature/featuresize/FeatureSize + a f_68281_ + b f_161325_ + c f_68282_ + ()V + static + (Ljava/util/OptionalInt;)V + 0 o p_68285_ + a ()Lcom/mojang/serialization/codecs/RecordCodecBuilder; m_68286_ + static + a (Ljava/util/OptionalInt;)Ljava/util/Optional; m_68293_ + static + 0 o p_68294_ + a (II)I m_6133_ + 0 o p_68287_ + 1 o p_68288_ + a (Ldnt;)Ljava/util/OptionalInt; m_68289_ + static + 0 o p_68290_ + a (Ljava/util/Optional;)Ljava/util/OptionalInt; m_68291_ + static + 0 o p_68292_ + b ()Ldnu; m_7612_ + c ()Ljava/util/OptionalInt; m_68295_ +dnu net/minecraft/world/level/levelgen/feature/featuresize/FeatureSizeType + a f_68296_ + b f_68297_ + c f_68298_ + ()V + static + (Lcom/mojang/serialization/Codec;)V + 0 o p_68301_ + a ()Lcom/mojang/serialization/Codec; m_68302_ + a (Ljava/lang/String;Lcom/mojang/serialization/Codec;)Ldnu; m_68303_ + static + 0 o p_68304_ + 1 o p_68305_ +dnv net/minecraft/world/level/levelgen/feature/featuresize/ThreeLayersFeatureSize + d f_68306_ + e f_68307_ + f f_68308_ + g f_68309_ + h f_68310_ + i f_68311_ + ()V + static + (IIIIILjava/util/OptionalInt;)V + 0 o p_68314_ + 1 o p_68315_ + 2 o p_68316_ + 3 o p_68317_ + 4 o p_68318_ + 5 o p_68319_ + a (Ldnv;)Ljava/lang/Integer; m_161326_ + static + 0 o p_161327_ + a (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; m_68325_ + static + 0 o p_68326_ + a (II)I m_6133_ + 0 o p_68321_ + 1 o p_68322_ + b (Ldnv;)Ljava/lang/Integer; m_161328_ + static + 0 o p_161329_ + b ()Ldnu; m_7612_ + c (Ldnv;)Ljava/lang/Integer; m_161330_ + static + 0 o p_161331_ + d (Ldnv;)Ljava/lang/Integer; m_161332_ + static + 0 o p_161333_ + e (Ldnv;)Ljava/lang/Integer; m_161334_ + static + 0 o p_161335_ +dnw net/minecraft/world/level/levelgen/feature/featuresize/TwoLayersFeatureSize + d f_68336_ + e f_68337_ + f f_68338_ + g f_68339_ + ()V + static + (III)V + 0 o p_68342_ + 1 o p_68343_ + 2 o p_68344_ + (IIILjava/util/OptionalInt;)V + 0 o p_68346_ + 1 o p_68347_ + 2 o p_68348_ + 3 o p_68349_ + a (Ldnw;)Ljava/lang/Integer; m_161336_ + static + 0 o p_161337_ + a (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; m_68355_ + static + 0 o p_68356_ + a (II)I m_6133_ + 0 o p_68351_ + 1 o p_68352_ + b ()Ldnu; m_7612_ + b (Ldnw;)Ljava/lang/Integer; m_161338_ + static + 0 o p_161339_ + c (Ldnw;)Ljava/lang/Integer; m_161340_ + static + 0 o p_161341_ +dnx net/minecraft/world/level/levelgen/feature/featuresize/package-info +dny net/minecraft/world/level/levelgen/feature/foliageplacers/AcaciaFoliagePlacer + a f_68362_ + ()V + static + (Lbdc;Lbdc;)V + 0 o p_161343_ + 1 o p_161344_ + a (Lapf;IIIIZ)Z m_214203_ + 0 o p_225488_ + 1 o p_225489_ + 2 o p_225490_ + 3 o p_225491_ + 4 o p_225492_ + 5 o p_225493_ + a (Lcms;Ldoe$b;Lapf;Ldno;ILdoe$a;III)V m_213633_ + 0 o p_225499_ + 1 o p_273746_ + 2 o p_225501_ + 3 o p_225502_ + 4 o p_225503_ + 5 o p_225504_ + 6 o p_225505_ + 7 o p_225506_ + 8 o p_225507_ + a (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; m_68379_ + static + 0 o p_68380_ + a ()Ldof; m_5897_ + a (Lapf;ILdno;)I m_214116_ + 0 o p_225495_ + 1 o p_225496_ + 2 o p_225497_ +dnz net/minecraft/world/level/levelgen/feature/foliageplacers/BlobFoliagePlacer + a f_68392_ + b f_68393_ + ()V + static + (Lbdc;Lbdc;I)V + 0 o p_161356_ + 1 o p_161357_ + 2 o p_161358_ + a (Lapf;IIIIZ)Z m_214203_ + 0 o p_225509_ + 1 o p_225510_ + 2 o p_225511_ + 3 o p_225512_ + 4 o p_225513_ + 5 o p_225514_ + a (Ldnz;)Ljava/lang/Integer; m_68411_ + static + 0 o p_68412_ + a (Lcms;Ldoe$b;Lapf;Ldno;ILdoe$a;III)V m_213633_ + 0 o p_273066_ + 1 o p_272716_ + 2 o p_273178_ + 3 o p_272850_ + 4 o p_273067_ + 5 o p_273711_ + 6 o p_273580_ + 7 o p_273511_ + 8 o p_273685_ + a ()Ldof; m_5897_ + a (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/Products$P3; m_68413_ + static + 0 o p_68414_ + a (Lapf;ILdno;)I m_214116_ + 0 o p_225516_ + 1 o p_225517_ + 2 o p_225518_ + c (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; m_68426_ + static + 0 o p_68427_ +doa net/minecraft/world/level/levelgen/feature/foliageplacers/BushFoliagePlacer + c f_68428_ + ()V + static + (Lbdc;Lbdc;I)V + 0 o p_161370_ + 1 o p_161371_ + 2 o p_161372_ + a (Lapf;IIIIZ)Z m_214203_ + 0 o p_225530_ + 1 o p_225531_ + 2 o p_225532_ + 3 o p_225533_ + 4 o p_225534_ + 5 o p_225535_ + a (Lcms;Ldoe$b;Lapf;Ldno;ILdoe$a;III)V m_213633_ + 0 o p_273251_ + 1 o p_273782_ + 2 o p_273626_ + 3 o p_272956_ + 4 o p_273384_ + 5 o p_273459_ + 6 o p_273161_ + 7 o p_272989_ + 8 o p_273166_ + a ()Ldof; m_5897_ + c (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; m_68453_ + static + 0 o p_68454_ +dob net/minecraft/world/level/levelgen/feature/foliageplacers/CherryFoliagePlacer + a f_271259_ + b f_271102_ + c f_271179_ + g f_271392_ + h f_271143_ + i f_271510_ + ()V + static + (Lbdc;Lbdc;Lbdc;FFFF)V + 0 o p_272646_ + 1 o p_272802_ + 2 o p_273604_ + 3 o p_272737_ + 4 o p_273720_ + 5 o p_273152_ + 6 o p_273529_ + a (Lapf;IIIIZ)Z m_214203_ + 0 o p_273294_ + 1 o p_273380_ + 2 o p_272865_ + 3 o p_272853_ + 4 o p_272631_ + 5 o p_273432_ + a (Ldob;)Ljava/lang/Float; m_272211_ + static + 0 o p_273098_ + a (Lcms;Ldoe$b;Lapf;Ldno;ILdoe$a;III)V m_213633_ + 0 o p_272723_ + 1 o p_273410_ + 2 o p_273057_ + 3 o p_273220_ + 4 o p_272975_ + 5 o p_273037_ + 6 o p_273647_ + 7 o p_273700_ + 8 o p_273188_ + a (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; m_271820_ + static + 0 o p_273246_ + a ()Ldof; m_5897_ + a (Lapf;ILdno;)I m_214116_ + 0 o p_273679_ + 1 o p_273336_ + 2 o p_273643_ + b (Ldob;)Ljava/lang/Float; m_271778_ + static + 0 o p_273148_ + c (Ldob;)Ljava/lang/Float; m_272111_ + static + 0 o p_273020_ + d (Ldob;)Ljava/lang/Float; m_272122_ + static + 0 o p_273760_ + e (Ldob;)Lbdc; m_272124_ + static + 0 o p_273527_ +doc net/minecraft/world/level/levelgen/feature/foliageplacers/DarkOakFoliagePlacer + a f_68455_ + ()V + static + (Lbdc;Lbdc;)V + 0 o p_161384_ + 1 o p_161385_ + a (Lapf;IIIIZ)Z m_214203_ + 0 o p_225547_ + 1 o p_225548_ + 2 o p_225549_ + 3 o p_225550_ + 4 o p_225551_ + 5 o p_225552_ + a (Lcms;Ldoe$b;Lapf;Ldno;ILdoe$a;III)V m_213633_ + 0 o p_225558_ + 1 o p_273641_ + 2 o p_225560_ + 3 o p_225561_ + 4 o p_225562_ + 5 o p_225563_ + 6 o p_225564_ + 7 o p_225565_ + 8 o p_225566_ + a (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; m_68472_ + static + 0 o p_68473_ + a ()Ldof; m_5897_ + a (Lapf;ILdno;)I m_214116_ + 0 o p_225554_ + 1 o p_225555_ + 2 o p_225556_ + b (Lapf;IIIIZ)Z m_214202_ + 0 o p_225568_ + 1 o p_225569_ + 2 o p_225570_ + 3 o p_225571_ + 4 o p_225572_ + 5 o p_225573_ +dod net/minecraft/world/level/levelgen/feature/foliageplacers/FancyFoliagePlacer + c f_68492_ + ()V + static + (Lbdc;Lbdc;I)V + 0 o p_161397_ + 1 o p_161398_ + 2 o p_161399_ + a (Lapf;IIIIZ)Z m_214203_ + 0 o p_225575_ + 1 o p_225576_ + 2 o p_225577_ + 3 o p_225578_ + 4 o p_225579_ + 5 o p_225580_ + a (Lcms;Ldoe$b;Lapf;Ldno;ILdoe$a;III)V m_213633_ + 0 o p_225582_ + 1 o p_273184_ + 2 o p_225584_ + 3 o p_225585_ + 4 o p_225586_ + 5 o p_225587_ + 6 o p_225588_ + 7 o p_225589_ + 8 o p_225590_ + a ()Ldof; m_5897_ + c (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; m_68517_ + static + 0 o p_68518_ +doe net/minecraft/world/level/levelgen/feature/foliageplacers/FoliagePlacer + d f_68519_ + e f_68520_ + f f_68521_ + ()V + static + (Lbdc;Lbdc;)V + 0 o p_161411_ + 1 o p_161412_ + a (Ldoe;)Lbdc; m_161446_ + static + 0 o p_161447_ + a (Lcms;Ldoe$b;Lapf;Ldno;Lgu;)Z m_272253_ + static + 0 o p_273596_ + 1 o p_273054_ + 2 o p_272977_ + 3 o p_273040_ + 4 o p_273406_ + a (Ldxe;)Z m_225637_ + static + 0 o p_225638_ + a (Lcms;Ldoe$b;Lapf;Ldno;ILdoe$a;II)V m_271927_ + 0 o p_273526_ + 1 o p_273018_ + 2 o p_273425_ + 3 o p_273138_ + 4 o p_273282_ + 5 o p_272944_ + 6 o p_272930_ + 7 o p_272727_ + a (Lcms;Ldoe$b;Lapf;Ldno;Lgu;IIZ)V m_225628_ + 0 o p_225629_ + 1 o p_272772_ + 2 o p_225631_ + 3 o p_225632_ + 4 o p_225633_ + 5 o p_225634_ + 6 o p_225635_ + 7 o p_225636_ + a (Lcms;Ldoe$b;Lapf;Ldno;Lgu;IIZFF)V m_272160_ + 0 o p_273087_ + 1 o p_273225_ + 2 o p_272629_ + 3 o p_272885_ + 4 o p_273412_ + 5 o p_272712_ + 6 o p_272656_ + 7 o p_272689_ + 8 o p_273464_ + 9 o p_273068_ + a ()Ldof; m_5897_ + a (Lapf;ILdno;)I m_214116_ + 0 o p_225601_ + 1 o p_225602_ + 2 o p_225603_ + a (Lapf;IIIIZ)Z m_214203_ + 0 o p_225595_ + 1 o p_225596_ + 2 o p_225597_ + 3 o p_225598_ + 4 o p_225599_ + 5 o p_225600_ + a (Lapf;I)I m_214117_ + 0 o p_225593_ + 1 o p_225594_ + a (Lcms;Ldoe$b;Lapf;Ldno;FLgu;Lgu$a;)Z m_277091_ + static + 0 o p_277577_ + 1 o p_277449_ + 2 o p_277966_ + 3 o p_277897_ + 4 o p_277979_ + 5 o p_277833_ + 6 o p_277567_ + a (Lcms;Ldoe$b;Lapf;Ldno;ILdoe$a;III)V m_213633_ + 0 o p_225613_ + 1 o p_273598_ + 2 o p_225615_ + 3 o p_225616_ + 4 o p_225617_ + 5 o p_225618_ + 6 o p_225619_ + 7 o p_225620_ + 8 o p_225621_ + a (Lapf;)I m_225591_ + 0 o p_225592_ + b (Ldoe;)Lbdc; m_161448_ + static + 0 o p_161449_ + b (Lapf;IIIIZ)Z m_214202_ + 0 o p_225639_ + 1 o p_225640_ + 2 o p_225641_ + 3 o p_225642_ + 4 o p_225643_ + 5 o p_225644_ + b (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/Products$P2; m_68573_ + static + 0 o p_68574_ +doe$a net/minecraft/world/level/levelgen/feature/foliageplacers/FoliagePlacer$FoliageAttachment + a f_161450_ + b f_68582_ + c f_68583_ + (Lgu;IZ)V + 0 o p_68585_ + 1 o p_68586_ + 2 o p_68587_ + a ()Lgu; m_161451_ + b ()I m_68589_ + c ()Z m_68590_ +doe$b net/minecraft/world/level/levelgen/feature/foliageplacers/FoliagePlacer$FoliageSetter + a (Lgu;)Z m_271808_ + 0 o p_273118_ + a (Lgu;Ldcb;)V m_271838_ + 0 o p_273742_ + 1 o p_273780_ +dof net/minecraft/world/level/levelgen/feature/foliageplacers/FoliagePlacerType + a f_68591_ + b f_68592_ + c f_68593_ + d f_68594_ + e f_68595_ + f f_68596_ + g f_68597_ + h f_68598_ + i f_68599_ + j f_161452_ + k f_271376_ + l f_68600_ + ()V + static + (Lcom/mojang/serialization/Codec;)V + 0 o p_68603_ + a ()Lcom/mojang/serialization/Codec; m_68604_ + a (Ljava/lang/String;Lcom/mojang/serialization/Codec;)Ldof; m_68605_ + static + 0 o p_68606_ + 1 o p_68607_ +dog net/minecraft/world/level/levelgen/feature/foliageplacers/MegaJungleFoliagePlacer + a f_68608_ + b f_68609_ + ()V + static + (Lbdc;Lbdc;I)V + 0 o p_161454_ + 1 o p_161455_ + 2 o p_161456_ + a (Lapf;IIIIZ)Z m_214203_ + 0 o p_225646_ + 1 o p_225647_ + 2 o p_225648_ + 3 o p_225649_ + 4 o p_225650_ + 5 o p_225651_ + a (Ldog;)Ljava/lang/Integer; m_161467_ + static + 0 o p_161468_ + a (Lcms;Ldoe$b;Lapf;Ldno;ILdoe$a;III)V m_213633_ + 0 o p_225657_ + 1 o p_273447_ + 2 o p_225659_ + 3 o p_225660_ + 4 o p_225661_ + 5 o p_225662_ + 6 o p_225663_ + 7 o p_225664_ + 8 o p_225665_ + a (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; m_68629_ + static + 0 o p_68630_ + a ()Ldof; m_5897_ + a (Lapf;ILdno;)I m_214116_ + 0 o p_225653_ + 1 o p_225654_ + 2 o p_225655_ +doh net/minecraft/world/level/levelgen/feature/foliageplacers/MegaPineFoliagePlacer + a f_68642_ + b f_68643_ + ()V + static + (Lbdc;Lbdc;Lbdc;)V + 0 o p_161470_ + 1 o p_161471_ + 2 o p_161472_ + a (Lapf;IIIIZ)Z m_214203_ + 0 o p_225667_ + 1 o p_225668_ + 2 o p_225669_ + 3 o p_225670_ + 4 o p_225671_ + 5 o p_225672_ + a (Ldoh;)Lbdc; m_161483_ + static + 0 o p_161484_ + a (Lcms;Ldoe$b;Lapf;Ldno;ILdoe$a;III)V m_213633_ + 0 o p_225678_ + 1 o p_273345_ + 2 o p_225680_ + 3 o p_225681_ + 4 o p_225682_ + 5 o p_225683_ + 6 o p_225684_ + 7 o p_225685_ + 8 o p_225686_ + a (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; m_68663_ + static + 0 o p_68664_ + a ()Ldof; m_5897_ + a (Lapf;ILdno;)I m_214116_ + 0 o p_225674_ + 1 o p_225675_ + 2 o p_225676_ +doi net/minecraft/world/level/levelgen/feature/foliageplacers/PineFoliagePlacer + a f_68676_ + b f_68677_ + ()V + static + (Lbdc;Lbdc;Lbdc;)V + 0 o p_161486_ + 1 o p_161487_ + 2 o p_161488_ + a (Lapf;IIIIZ)Z m_214203_ + 0 o p_225691_ + 1 o p_225692_ + 2 o p_225693_ + 3 o p_225694_ + 4 o p_225695_ + 5 o p_225696_ + a (Lapf;I)I m_214117_ + 0 o p_225688_ + 1 o p_225689_ + a (Lcms;Ldoe$b;Lapf;Ldno;ILdoe$a;III)V m_213633_ + 0 o p_225702_ + 1 o p_272791_ + 2 o p_225704_ + 3 o p_225705_ + 4 o p_225706_ + 5 o p_225707_ + 6 o p_225708_ + 7 o p_225709_ + 8 o p_225710_ + a (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; m_68697_ + static + 0 o p_68698_ + a (Ldoi;)Lbdc; m_161499_ + static + 0 o p_161500_ + a ()Ldof; m_5897_ + a (Lapf;ILdno;)I m_214116_ + 0 o p_225698_ + 1 o p_225699_ + 2 o p_225700_ +doj net/minecraft/world/level/levelgen/feature/foliageplacers/RandomSpreadFoliagePlacer + a f_161501_ + b f_161502_ + c f_161503_ + ()V + static + (Lbdc;Lbdc;Lbdc;I)V + 0 o p_161506_ + 1 o p_161507_ + 2 o p_161508_ + 3 o p_161509_ + a (Lapf;IIIIZ)Z m_214203_ + 0 o p_225712_ + 1 o p_225713_ + 2 o p_225714_ + 3 o p_225715_ + 4 o p_225716_ + 5 o p_225717_ + a (Lcms;Ldoe$b;Lapf;Ldno;ILdoe$a;III)V m_213633_ + 0 o p_225723_ + 1 o p_272842_ + 2 o p_225725_ + 3 o p_225726_ + 4 o p_225727_ + 5 o p_225728_ + 6 o p_225729_ + 7 o p_225730_ + 8 o p_225731_ + a (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; m_161521_ + static + 0 o p_161522_ + a ()Ldof; m_5897_ + a (Lapf;ILdno;)I m_214116_ + 0 o p_225719_ + 1 o p_225720_ + 2 o p_225721_ + a (Ldoj;)Ljava/lang/Integer; m_161523_ + static + 0 o p_161524_ + b (Ldoj;)Lbdc; m_161536_ + static + 0 o p_161537_ +dok net/minecraft/world/level/levelgen/feature/foliageplacers/SpruceFoliagePlacer + a f_68713_ + b f_68714_ + ()V + static + (Lbdc;Lbdc;Lbdc;)V + 0 o p_161539_ + 1 o p_161540_ + 2 o p_161541_ + a (Lapf;IIIIZ)Z m_214203_ + 0 o p_225733_ + 1 o p_225734_ + 2 o p_225735_ + 3 o p_225736_ + 4 o p_225737_ + 5 o p_225738_ + a (Ldok;)Lbdc; m_161552_ + static + 0 o p_161553_ + a (Lcms;Ldoe$b;Lapf;Ldno;ILdoe$a;III)V m_213633_ + 0 o p_225744_ + 1 o p_273256_ + 2 o p_225746_ + 3 o p_225747_ + 4 o p_225748_ + 5 o p_225749_ + 6 o p_225750_ + 7 o p_225751_ + 8 o p_225752_ + a (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; m_68734_ + static + 0 o p_68735_ + a ()Ldof; m_5897_ + a (Lapf;ILdno;)I m_214116_ + 0 o p_225740_ + 1 o p_225741_ + 2 o p_225742_ +dol net/minecraft/world/level/levelgen/feature/foliageplacers/package-info +dom net/minecraft/world/level/levelgen/feature/package-info +don net/minecraft/world/level/levelgen/feature/rootplacers/AboveRootPlacement + a f_225753_ + b f_225754_ + c f_225755_ + ()V + static + (Ldot;F)V + 0 o f_225754_ + 1 o f_225755_ + a (Ldon;)Ljava/lang/Float; m_225763_ + static + 0 o p_225764_ + a (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; m_225761_ + static + 0 o p_225762_ + a ()Ldot; f_225754_ + b (Ldon;)Ldot; m_225766_ + static + 0 o p_225767_ + b ()F f_225755_ + equals (Ljava/lang/Object;)Z equals + 0 o p_225769_ + hashCode ()I hashCode + toString ()Ljava/lang/String; toString +doo net/minecraft/world/level/levelgen/feature/rootplacers/MangroveRootPlacement + a f_225772_ + b f_225773_ + c f_225774_ + d f_225775_ + e f_225776_ + f f_225777_ + g f_225778_ + ()V + static + (Lhi;Lhi;Ldot;IIF)V + 0 o f_225773_ + 1 o f_225774_ + 2 o f_225775_ + 3 o f_225776_ + 4 o f_225777_ + 5 o f_225778_ + a ()Lhi; f_225773_ + a (Ldoo;)Ljava/lang/Float; m_225790_ + static + 0 o p_225791_ + a (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; m_225788_ + static + 0 o p_225789_ + b (Ldoo;)Ljava/lang/Integer; m_225793_ + static + 0 o p_225794_ + b ()Lhi; f_225774_ + c ()Ldot; f_225775_ + c (Ldoo;)Ljava/lang/Integer; m_225796_ + static + 0 o p_225797_ + d ()I f_225776_ + d (Ldoo;)Ldot; m_225799_ + static + 0 o p_225800_ + e ()I f_225777_ + e (Ldoo;)Lhi; m_225802_ + static + 0 o p_225803_ + equals (Ljava/lang/Object;)Z equals + 0 o p_225805_ + f (Ldoo;)Lhi; m_225807_ + static + 0 o p_225808_ + f ()F f_225778_ + hashCode ()I hashCode + toString ()Ljava/lang/String; toString +dop net/minecraft/world/level/levelgen/feature/rootplacers/MangroveRootPlacer + a f_225811_ + b f_225812_ + c f_225813_ + h f_225814_ + ()V + static + (Lbdc;Ldot;Ljava/util/Optional;Ldoo;)V + 0 o p_225817_ + 1 o p_225818_ + 2 o p_225819_ + 3 o p_225820_ + a (Ldcb;)Z m_225846_ + 0 o p_225847_ + a (Ldop;)Ldoo; m_225848_ + static + 0 o p_225849_ + a (Lcms;Lgu;)Z m_213551_ + 0 o p_225831_ + 1 o p_225832_ + a (Lgu;Lha;Lapf;Lgu;)Ljava/util/List; m_225850_ + 0 o p_225851_ + 1 o p_225852_ + 2 o p_225853_ + 3 o p_225854_ + a (Lcms;Lapf;Lgu;Lha;Lgu;Ljava/util/List;I)Z m_225822_ + 0 o p_225823_ + 1 o p_225824_ + 2 o p_225825_ + 3 o p_225826_ + 4 o p_225827_ + 5 o p_225828_ + 6 o p_225829_ + a (Lcms;Ljava/util/function/BiConsumer;Lapf;Lgu;Lgu;Ldno;)Z m_213684_ + 0 o p_225840_ + 1 o p_225841_ + 2 o p_225842_ + 3 o p_225843_ + 4 o p_225844_ + 5 o p_225845_ + a (Lcms;Ljava/util/function/BiConsumer;Lapf;Lgu;Ldno;)V m_213654_ + 0 o p_225834_ + 1 o p_225835_ + 2 o p_225836_ + 3 o p_225837_ + 4 o p_225838_ + a ()Ldor; m_213745_ + b (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; m_225855_ + static + 0 o p_225856_ + b (Ldcb;)Z m_225857_ + 0 o p_225858_ +doq net/minecraft/world/level/levelgen/feature/rootplacers/RootPlacer + d f_225859_ + e f_225860_ + f f_225861_ + g f_225862_ + ()V + static + (Lbdc;Ldot;Ljava/util/Optional;)V + 0 o p_225865_ + 1 o p_225866_ + 2 o p_225867_ + a (Ldoq;)Ljava/util/Optional; m_225887_ + static + 0 o p_225888_ + a (Lcms;Lgu;Ldcb;)Ldcb; m_225870_ + 0 o p_225871_ + 1 o p_225872_ + 2 o p_225873_ + a (Ldxe;)Z m_225889_ + static + 0 o p_225890_ + a (Lcms;Ljava/util/function/BiConsumer;Lapf;Lgu;Lgu;Ldno;)Z m_213684_ + 0 o p_225879_ + 1 o p_225880_ + 2 o p_225881_ + 3 o p_225882_ + 4 o p_225883_ + 5 o p_225884_ + a (Lgu;Lapf;)Lgu; m_225891_ + 0 o p_225892_ + 1 o p_225893_ + a (Lcms;Lgu;)Z m_213551_ + 0 o p_225868_ + 1 o p_225869_ + a (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/Products$P3; m_225885_ + static + 0 o p_225886_ + a (Lcms;Ljava/util/function/BiConsumer;Lapf;Lgu;Ldno;)V m_213654_ + 0 o p_225874_ + 1 o p_225875_ + 2 o p_225876_ + 3 o p_225877_ + 4 o p_225878_ + a ()Ldor; m_213745_ + b (Ldoq;)Ldot; m_225894_ + static + 0 o p_225895_ + c (Ldoq;)Lbdc; m_225896_ + static + 0 o p_225897_ +dor net/minecraft/world/level/levelgen/feature/rootplacers/RootPlacerType + a f_225898_ + b f_225899_ + ()V + static + (Lcom/mojang/serialization/Codec;)V + 0 o p_225902_ + a ()Lcom/mojang/serialization/Codec; m_225903_ + a (Ljava/lang/String;Lcom/mojang/serialization/Codec;)Ldor; m_225904_ + static + 0 o p_225905_ + 1 o p_225906_ +dos net/minecraft/world/level/levelgen/feature/rootplacers/package-info +dot net/minecraft/world/level/levelgen/feature/stateproviders/BlockStateProvider + a f_68747_ + ()V + static + ()V + a ()Ldou; m_5923_ + a (Lapf;Lgu;)Ldcb; m_213972_ + 0 o p_225907_ + 1 o p_225908_ + a (Ldcb;)Ldpc; m_191384_ + static + 0 o p_191385_ + a (Lcpn;)Ldpc; m_191382_ + static + 0 o p_191383_ +dou net/minecraft/world/level/levelgen/feature/stateproviders/BlockStateProviderType + a f_68752_ + b f_68753_ + c f_191386_ + d f_191387_ + e f_191388_ + f f_68756_ + g f_161554_ + h f_68757_ + ()V + static + (Lcom/mojang/serialization/Codec;)V + 0 o p_68760_ + a ()Lcom/mojang/serialization/Codec; m_68761_ + a (Ljava/lang/String;Lcom/mojang/serialization/Codec;)Ldou; m_68762_ + static + 0 o p_68763_ + 1 o p_68764_ +dov net/minecraft/world/level/levelgen/feature/stateproviders/DualNoiseProvider + b f_191389_ + i f_191390_ + j f_191391_ + k f_191392_ + l f_191393_ + ()V + static + (Laot;Ldwh$a;FJLdwh$a;FLjava/util/List;)V + 0 o p_191396_ + 1 o p_191397_ + 2 o p_191398_ + 3 o p_191399_ + 4 o p_191400_ + 5 o p_191401_ + 6 o p_191402_ + a (Ldov;)Ljava/lang/Float; m_191404_ + static + 0 o p_191405_ + a ()Ldou; m_5923_ + a (Lapf;Lgu;)Ldcb; m_213972_ + 0 o p_225910_ + 1 o p_225911_ + a (Lgu;)D m_191406_ + 0 o p_191407_ + b (Ldov;)Ldwh$a; m_191411_ + static + 0 o p_191412_ + c (Ldov;)Laot; m_191415_ + static + 0 o p_191416_ + c (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; m_191413_ + static + 0 o p_191414_ +dow net/minecraft/world/level/levelgen/feature/stateproviders/NoiseBasedStateProvider + c f_191417_ + d f_191418_ + e f_191419_ + f f_191420_ + (JLdwh$a;F)V + 0 o p_191422_ + 1 o p_191423_ + 2 o p_191424_ + a (Lgu;D)D m_191429_ + 0 o p_191430_ + 1 o p_191431_ + a (Ldow;)Ljava/lang/Float; m_191427_ + static + 0 o p_191428_ + a (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/Products$P3; m_191425_ + static + 0 o p_191426_ + b (Ldow;)Ldwh$a; m_191432_ + static + 0 o p_191433_ + c (Ldow;)Ljava/lang/Long; m_191434_ + static + 0 o p_191435_ +dox net/minecraft/world/level/levelgen/feature/stateproviders/NoiseProvider + g f_191438_ + h f_191439_ + ()V + static + (JLdwh$a;FLjava/util/List;)V + 0 o p_191442_ + 1 o p_191443_ + 2 o p_191444_ + 3 o p_191445_ + a (Ljava/util/List;D)Ldcb; m_191449_ + 0 o p_191450_ + 1 o p_191451_ + a (Ldox;)Ljava/util/List; m_191447_ + static + 0 o p_191448_ + a (Ljava/util/List;Lgu;D)Ldcb; m_191452_ + 0 o p_191453_ + 1 o p_191454_ + 2 o p_191455_ + a ()Ldou; m_5923_ + a (Lapf;Lgu;)Ldcb; m_213972_ + 0 o p_225913_ + 1 o p_225914_ + b (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/Products$P4; m_191459_ + static + 0 o p_191460_ + c (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; m_191461_ + static + 0 o p_191462_ +doy net/minecraft/world/level/levelgen/feature/stateproviders/NoiseThresholdProvider + b f_191463_ + g f_191464_ + h f_191465_ + i f_191466_ + j f_191467_ + k f_191468_ + ()V + static + (JLdwh$a;FFFLdcb;Ljava/util/List;Ljava/util/List;)V + 0 o p_191471_ + 1 o p_191472_ + 2 o p_191473_ + 3 o p_191474_ + 4 o p_191475_ + 5 o p_191476_ + 6 o p_191477_ + 7 o p_191478_ + a (Ldoy;)Ljava/util/List; m_191480_ + static + 0 o p_191481_ + a ()Ldou; m_5923_ + a (Lapf;Lgu;)Ldcb; m_213972_ + 0 o p_225916_ + 1 o p_225917_ + b (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; m_191485_ + static + 0 o p_191486_ + b (Ldoy;)Ljava/util/List; m_191487_ + static + 0 o p_191488_ + c (Ldoy;)Ldcb; m_191489_ + static + 0 o p_191490_ + d (Ldoy;)Ljava/lang/Float; m_191491_ + static + 0 o p_191492_ + e (Ldoy;)Ljava/lang/Float; m_191493_ + static + 0 o p_191494_ +doz net/minecraft/world/level/levelgen/feature/stateproviders/RandomizedIntStateProvider + b f_161555_ + c f_161556_ + d f_161557_ + e f_161558_ + f f_161559_ + ()V + static + (Ldot;Ljava/lang/String;Lbdc;)V + 0 o p_161566_ + 1 o p_161567_ + 2 o p_161568_ + (Ldot;Lddb;Lbdc;)V + 0 o p_161562_ + 1 o p_161563_ + 2 o p_161564_ + a (Ldde;)Lddb; m_161573_ + static + 0 o p_161574_ + a (Lapf;Lgu;)Ldcb; m_213972_ + 0 o p_225919_ + 1 o p_225920_ + a (Ldcb;Ljava/lang/String;)Lddb; m_161570_ + static + 0 o p_161571_ + 1 o p_161572_ + a (Ljava/lang/String;)Ljava/lang/IllegalArgumentException; m_161579_ + static + 0 o p_161580_ + a (Ldoz;)Lbdc; m_161577_ + static + 0 o p_161578_ + a (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; m_161575_ + static + 0 o p_161576_ + a (Ljava/lang/String;Ldde;)Z m_161581_ + static + 0 o p_161582_ + 1 o p_161583_ + a ()Ldou; m_5923_ + b (Ldde;)Z m_161587_ + static + 0 o p_161588_ + b (Ldoz;)Ljava/lang/String; m_161589_ + static + 0 o p_161590_ + c (Ldoz;)Ldot; m_161591_ + static + 0 o p_161592_ +dp net/minecraft/commands/CommandRuntimeException + a f_79223_ + (Lsw;)V + 0 o p_79225_ + a ()Lsw; m_79226_ +dpa net/minecraft/world/level/levelgen/feature/stateproviders/RotatedBlockProvider + b f_68786_ + c f_68787_ + ()V + static + (Lcpn;)V + 0 o p_68790_ + a ()Ldou; m_5923_ + a (Ldpa;)Lcpn; m_68792_ + static + 0 o p_68793_ + a (Lapf;Lgu;)Ldcb; m_213972_ + 0 o p_225922_ + 1 o p_225923_ +dpb net/minecraft/world/level/levelgen/feature/stateproviders/RuleBasedBlockStateProvider + a f_225924_ + b f_225925_ + c f_225926_ + ()V + static + (Ldot;Ljava/util/List;)V + 0 o f_225925_ + 1 o f_225926_ + a (Lcng;Lapf;Lgu;)Ldcb; m_225932_ + 0 o p_225933_ + 1 o p_225934_ + 2 o p_225935_ + a (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; m_225938_ + static + 0 o p_225939_ + a (Ldot;)Ldpb; m_225940_ + static + 0 o p_225941_ + a ()Ldot; f_225925_ + a (Lcpn;)Ldpb; m_225936_ + static + 0 o p_225937_ + b ()Ljava/util/List; f_225926_ + equals (Ljava/lang/Object;)Z equals + 0 o p_225944_ + hashCode ()I hashCode + toString ()Ljava/lang/String; toString +dpb$a net/minecraft/world/level/levelgen/feature/stateproviders/RuleBasedBlockStateProvider$Rule + a f_225947_ + b f_225948_ + c f_225949_ + ()V + static + (Ldir;Ldot;)V + 0 o f_225948_ + 1 o f_225949_ + a ()Ldir; f_225948_ + a (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; m_225955_ + static + 0 o p_225956_ + b ()Ldot; f_225949_ + equals (Ljava/lang/Object;)Z equals + 0 o p_225959_ + hashCode ()I hashCode + toString ()Ljava/lang/String; toString +dpc net/minecraft/world/level/levelgen/feature/stateproviders/SimpleStateProvider + b f_68797_ + c f_68798_ + ()V + static + (Ldcb;)V + 0 o p_68801_ + a (Ldpc;)Ldcb; m_68803_ + static + 0 o p_68804_ + a ()Ldou; m_5923_ + a (Lapf;Lgu;)Ldcb; m_213972_ + 0 o p_225963_ + 1 o p_225964_ +dpd net/minecraft/world/level/levelgen/feature/stateproviders/WeightedStateProvider + b f_68808_ + c f_68809_ + ()V + static + (Lbch$a;)V + 0 o p_161594_ + (Lbch;)V + 0 o p_161596_ + a (Lbch;)Lcom/mojang/serialization/DataResult; m_161597_ + static + 0 o p_161598_ + a (Ldpd;)Lbch; m_161599_ + static + 0 o p_161600_ + a ()Ldou; m_5923_ + a (Lapf;Lgu;)Ldcb; m_213972_ + 0 o p_225966_ + 1 o p_225967_ + b ()Ljava/lang/String; m_274289_ + static +dpe net/minecraft/world/level/levelgen/feature/stateproviders/package-info +dpf net/minecraft/world/level/levelgen/feature/treedecorators/AlterGroundDecorator + a f_69302_ + b f_69303_ + ()V + static + (Ldot;)V + 0 o p_69306_ + a (Ldpk$a;)V m_214187_ + 0 o p_225969_ + a (ILgu;)Z m_69308_ + static + 0 o p_69309_ + 1 o p_69310_ + a (Ldpf;)Ldot; m_69326_ + static + 0 o p_69327_ + a ()Ldpl; m_6663_ + a (Ldpk$a;Lgu;)V m_225970_ + 0 o p_225971_ + 1 o p_225972_ + b (Ldpk$a;Lgu;)V m_225973_ + 0 o p_225974_ + 1 o p_225975_ + c (Ldpk$a;Lgu;)V m_225976_ + 0 o p_225977_ + 1 o p_225978_ +dpg net/minecraft/world/level/levelgen/feature/treedecorators/AttachedToLeavesDecorator + a f_225979_ + b f_225980_ + c f_225981_ + d f_225982_ + e f_225983_ + f f_225984_ + g f_225985_ + ()V + static + (FIILdot;ILjava/util/List;)V + 0 o p_225988_ + 1 o p_225989_ + 2 o p_225990_ + 3 o p_225991_ + 4 o p_225992_ + 5 o p_225993_ + a (Ldpk$a;Lgu;Lha;)Z m_226001_ + 0 o p_226002_ + 1 o p_226003_ + 2 o p_226004_ + a (Ldpk$a;)V m_214187_ + 0 o p_226000_ + a ()Ldpl; m_6663_ + a (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; m_225995_ + static + 0 o p_225996_ + a (Ldpg;)Ljava/util/List; m_225997_ + static + 0 o p_225998_ + b (Ldpg;)Ljava/lang/Integer; m_226005_ + static + 0 o p_226006_ + c (Ldpg;)Ldot; m_226007_ + static + 0 o p_226008_ + d (Ldpg;)Ljava/lang/Integer; m_226009_ + static + 0 o p_226010_ + e (Ldpg;)Ljava/lang/Integer; m_226011_ + static + 0 o p_226012_ + f (Ldpg;)Ljava/lang/Float; m_226013_ + static + 0 o p_226014_ +dph net/minecraft/world/level/levelgen/feature/treedecorators/BeehiveDecorator + a f_69954_ + b f_202294_ + c f_202295_ + d f_69955_ + ()V + static + (F)V + 0 o p_69958_ + a (Ldpk$a;)V m_214187_ + 0 o p_226019_ + a (ILgu;)Z m_202298_ + static + 0 o p_202299_ + 1 o p_202300_ + a (Lapf;Lczk;)V m_257355_ + static + 0 o p_259006_ + 1 o p_259007_ + a (Lgu;)Ljava/util/stream/Stream; m_202304_ + static + 0 o p_202305_ + a ()Ldpl; m_6663_ + a (Ldph;)Ljava/lang/Float; m_69970_ + static + 0 o p_69971_ + a (I)[Lha; m_202296_ + static + 0 o p_202297_ + a (Lha;)Z m_202306_ + static + 0 o p_202307_ + a (Ldpk$a;Lgu;)Z m_226020_ + static + 0 o p_226021_ + 1 o p_226022_ +dpi net/minecraft/world/level/levelgen/feature/treedecorators/CocoaDecorator + a f_69972_ + b f_69973_ + ()V + static + (F)V + 0 o p_69976_ + a (Ldpk$a;)V m_214187_ + 0 o p_226028_ + a (ILgu;)Z m_69978_ + static + 0 o p_69979_ + 1 o p_69980_ + a ()Ldpl; m_6663_ + a (Lapf;Ldpk$a;Lgu;)V m_226023_ + static + 0 o p_226024_ + 1 o p_226025_ + 2 o p_226026_ + a (Ldpi;)Ljava/lang/Float; m_69988_ + static + 0 o p_69989_ +dpj net/minecraft/world/level/levelgen/feature/treedecorators/LeaveVineDecorator + a f_69996_ + b f_226029_ + ()V + static + (F)V + 0 o p_226031_ + a (Ldpk$a;)V m_214187_ + 0 o p_226039_ + a ()Ldpl; m_6663_ + a (Lapf;Ldpk$a;Lgu;)V m_226032_ + 0 o p_226033_ + 1 o p_226034_ + 2 o p_226035_ + a (Lgu;Ldcs;Ldpk$a;)V m_226040_ + static + 0 o p_226041_ + 1 o p_226042_ + 2 o p_226043_ + a (Ldpj;)Ljava/lang/Float; m_226036_ + static + 0 o p_226037_ +dpk net/minecraft/world/level/levelgen/feature/treedecorators/TreeDecorator + h f_70021_ + ()V + static + ()V + a (Ldpk$a;)V m_214187_ + 0 o p_226044_ + a ()Ldpl; m_6663_ +dpk$a net/minecraft/world/level/levelgen/feature/treedecorators/TreeDecorator$Context + a f_226045_ + b f_226046_ + c f_226047_ + d f_226048_ + e f_226049_ + f f_226050_ + (Lcms;Ljava/util/function/BiConsumer;Lapf;Ljava/util/Set;Ljava/util/Set;Ljava/util/Set;)V + 0 o p_226052_ + 1 o p_226053_ + 2 o p_226054_ + 3 o p_226055_ + 4 o p_226056_ + 5 o p_226057_ + a (Lgu;Ldcs;)V m_226064_ + 0 o p_226065_ + 1 o p_226066_ + a ()Lcms; m_226058_ + a (Lgu;)Z m_226059_ + 0 o p_226060_ + a (Lgu;Ldcb;)V m_226061_ + 0 o p_226062_ + 1 o p_226063_ + b ()Lapf; m_226067_ + c ()Lit/unimi/dsi/fastutil/objects/ObjectArrayList; m_226068_ + d ()Lit/unimi/dsi/fastutil/objects/ObjectArrayList; m_226069_ + e ()Lit/unimi/dsi/fastutil/objects/ObjectArrayList; m_226070_ +dpl net/minecraft/world/level/levelgen/feature/treedecorators/TreeDecoratorType + a f_70042_ + b f_70043_ + c f_70044_ + d f_70045_ + e f_70046_ + f f_226071_ + g f_70047_ + ()V + static + (Lcom/mojang/serialization/Codec;)V + 0 o p_70050_ + a ()Lcom/mojang/serialization/Codec; m_70051_ + a (Ljava/lang/String;Lcom/mojang/serialization/Codec;)Ldpl; m_70052_ + static + 0 o p_70053_ + 1 o p_70054_ +dpm net/minecraft/world/level/levelgen/feature/treedecorators/TrunkVineDecorator + a f_70055_ + b f_70056_ + ()V + static + ()V + a (Ldpk$a;)V m_214187_ + 0 o p_226077_ + a ()Ldpl; m_6663_ + a (Lapf;Ldpk$a;Lgu;)V m_226072_ + static + 0 o p_226073_ + 1 o p_226074_ + 2 o p_226075_ + b ()Ldpm; m_70073_ + static +dpn net/minecraft/world/level/levelgen/feature/treedecorators/package-info +dpo net/minecraft/world/level/levelgen/feature/trunkplacers/BendingTrunkPlacer + a f_161765_ + b f_161766_ + h f_161767_ + ()V + static + (IIIILbdc;)V + 0 o p_161770_ + 1 o p_161771_ + 2 o p_161772_ + 3 o p_161773_ + 4 o p_161774_ + a (Ldpo;)Lbdc; m_161783_ + static + 0 o p_161784_ + a ()Ldpx; m_7362_ + a (Lcms;Ljava/util/function/BiConsumer;Lapf;ILgu;Ldno;)Ljava/util/List; m_213934_ + 0 o p_226079_ + 1 o p_226080_ + 2 o p_226081_ + 3 o p_226082_ + 4 o p_226083_ + 5 o p_226084_ + b (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; m_161785_ + static + 0 o p_161786_ + b (Ldpo;)Ljava/lang/Integer; m_161787_ + static + 0 o p_161788_ +dpp net/minecraft/world/level/levelgen/feature/trunkplacers/CherryTrunkPlacer + a f_271475_ + b f_271464_ + h f_271342_ + i f_271384_ + j f_271473_ + k f_271407_ + l f_271123_ + ()V + static + (IIILbdc;Lbdc;Lbdi;Lbdc;)V + 0 o p_273281_ + 1 o p_273327_ + 2 o p_272619_ + 3 o p_272873_ + 4 o p_272789_ + 5 o p_272917_ + 6 o p_272948_ + a (Ldpp;)Lbdc; m_272249_ + static + 0 o p_273633_ + a (Lcms;Ljava/util/function/BiConsumer;Lapf;ILgu;Ldno;Ljava/util/function/Function;Lha;IZLgu$a;)Ldoe$a; m_271969_ + 0 o p_272736_ + 1 o p_273092_ + 2 o p_273449_ + 3 o p_272659_ + 4 o p_273743_ + 5 o p_273027_ + 6 o p_273558_ + 7 o p_273712_ + 8 o p_272980_ + 9 o p_272719_ + 10 o p_273496_ + a ()Ldpx; m_7362_ + a (Lha;Ldcb;)Ldcb; m_271967_ + static + 0 o p_272896_ + 1 o p_273382_ + a (Lbdi;)Lcom/mojang/serialization/DataResult; m_274291_ + static + 0 o p_275181_ + a (Lcms;Ljava/util/function/BiConsumer;Lapf;ILgu;Ldno;)Ljava/util/List; m_213934_ + 0 o p_272827_ + 1 o p_272650_ + 2 o p_272993_ + 3 o p_272990_ + 4 o p_273471_ + 5 o p_273355_ + b (Ldpp;)Lbdi; m_272118_ + static + 0 o p_272705_ + b ()Ljava/lang/String; m_274290_ + static + b (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; m_271878_ + static + 0 o p_273579_ + c (Ldpp;)Lbdc; m_272205_ + static + 0 o p_273612_ + d (Ldpp;)Lbdc; m_272093_ + static + 0 o p_272644_ +dpq net/minecraft/world/level/levelgen/feature/trunkplacers/DarkOakTrunkPlacer + a f_70074_ + ()V + static + (III)V + 0 o p_70077_ + 1 o p_70078_ + 2 o p_70079_ + a ()Ldpx; m_7362_ + a (Lcms;Ljava/util/function/BiConsumer;Lapf;ILgu;Ldno;)Ljava/util/List; m_213934_ + 0 o p_226086_ + 1 o p_226087_ + 2 o p_226088_ + 3 o p_226089_ + 4 o p_226090_ + 5 o p_226091_ + b (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; m_70089_ + static + 0 o p_70090_ +dpr net/minecraft/world/level/levelgen/feature/trunkplacers/FancyTrunkPlacer + a f_70091_ + b f_161796_ + h f_161797_ + i f_161798_ + j f_161799_ + ()V + static + (III)V + 0 o p_70094_ + 1 o p_70095_ + 2 o p_70096_ + a (Lcms;Ljava/util/function/BiConsumer;Lapf;ILgu;Ljava/util/List;Ldno;)V m_226099_ + 0 o p_226100_ + 1 o p_226101_ + 2 o p_226102_ + 3 o p_226103_ + 4 o p_226104_ + 5 o p_226105_ + 6 o p_226106_ + a (II)Z m_70098_ + 0 o p_70099_ + 1 o p_70100_ + a (Lcms;Ljava/util/function/BiConsumer;Lapf;Lgu;Lgu;ZLdno;)Z m_226107_ + 0 o p_226108_ + 1 o p_226109_ + 2 o p_226110_ + 3 o p_226111_ + 4 o p_226112_ + 5 o p_226113_ + 6 o p_226114_ + a (Lgu;)I m_70127_ + 0 o p_70128_ + a (Lgu;Lgu;)Lha$a; m_70129_ + 0 o p_70130_ + 1 o p_70131_ + a ()Ldpx; m_7362_ + a (Lgu;Lgu;Ldcb;)Ldcb; m_263170_ + 0 o p_263318_ + 1 o p_263319_ + 2 o p_161826_ + a (Lcms;Ljava/util/function/BiConsumer;Lapf;ILgu;Ldno;)Ljava/util/List; m_213934_ + 0 o p_226093_ + 1 o p_226094_ + 2 o p_226095_ + 3 o p_226096_ + 4 o p_226097_ + 5 o p_226098_ + b (II)F m_70132_ + static + 0 o p_70133_ + 1 o p_70134_ + b (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; m_70135_ + static + 0 o p_70136_ +dpr$a net/minecraft/world/level/levelgen/feature/trunkplacers/FancyTrunkPlacer$FoliageCoords + a f_70137_ + b f_70138_ + (Lgu;I)V + 0 o p_70140_ + 1 o p_70141_ + a ()I m_70142_ +dps net/minecraft/world/level/levelgen/feature/trunkplacers/ForkingTrunkPlacer + a f_70145_ + ()V + static + (III)V + 0 o p_70148_ + 1 o p_70149_ + 2 o p_70150_ + a ()Ldpx; m_7362_ + a (Lcms;Ljava/util/function/BiConsumer;Lapf;ILgu;Ldno;)Ljava/util/List; m_213934_ + 0 o p_226116_ + 1 o p_226117_ + 2 o p_226118_ + 3 o p_226119_ + 4 o p_226120_ + 5 o p_226121_ + b (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; m_70160_ + static + 0 o p_70161_ +dpt net/minecraft/world/level/levelgen/feature/trunkplacers/GiantTrunkPlacer + a f_70162_ + ()V + static + (III)V + 0 o p_70165_ + 1 o p_70166_ + 2 o p_70167_ + a (Lcms;Ljava/util/function/BiConsumer;Lapf;Lgu$a;Ldno;Lgu;III)V m_226129_ + 0 o p_226130_ + 1 o p_226131_ + 2 o p_226132_ + 3 o p_226133_ + 4 o p_226134_ + 5 o p_226135_ + 6 o p_226136_ + 7 o p_226137_ + 8 o p_226138_ + a ()Ldpx; m_7362_ + a (Lcms;Ljava/util/function/BiConsumer;Lapf;ILgu;Ldno;)Ljava/util/List; m_213934_ + 0 o p_226123_ + 1 o p_226124_ + 2 o p_226125_ + 3 o p_226126_ + 4 o p_226127_ + 5 o p_226128_ + b (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; m_70188_ + static + 0 o p_70189_ +dpu net/minecraft/world/level/levelgen/feature/trunkplacers/MegaJungleTrunkPlacer + b f_70190_ + ()V + static + (III)V + 0 o p_70193_ + 1 o p_70194_ + 2 o p_70195_ + a ()Ldpx; m_7362_ + a (Lcms;Ljava/util/function/BiConsumer;Lapf;ILgu;Ldno;)Ljava/util/List; m_213934_ + 0 o p_226140_ + 1 o p_226141_ + 2 o p_226142_ + 3 o p_226143_ + 4 o p_226144_ + 5 o p_226145_ + b (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; m_70205_ + static + 0 o p_70206_ +dpv net/minecraft/world/level/levelgen/feature/trunkplacers/StraightTrunkPlacer + a f_70245_ + ()V + static + (III)V + 0 o p_70248_ + 1 o p_70249_ + 2 o p_70250_ + a ()Ldpx; m_7362_ + a (Lcms;Ljava/util/function/BiConsumer;Lapf;ILgu;Ldno;)Ljava/util/List; m_213934_ + 0 o p_226147_ + 1 o p_226148_ + 2 o p_226149_ + 3 o p_226150_ + 4 o p_226151_ + 5 o p_226152_ + b (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; m_70260_ + static + 0 o p_70261_ +dpw net/minecraft/world/level/levelgen/feature/trunkplacers/TrunkPlacer + a f_161865_ + b f_161866_ + c f_70262_ + d f_161867_ + e f_70263_ + f f_70264_ + g f_70265_ + ()V + static + (III)V + 0 o p_70268_ + 1 o p_70269_ + 2 o p_70270_ + a (Lcms;Ljava/util/function/BiConsumer;Lapf;Lgu;Ldno;Ljava/util/function/Function;)Z m_226175_ + 0 o p_226176_ + 1 o p_226177_ + 2 o p_226178_ + 3 o p_226179_ + 4 o p_226180_ + 5 o p_226181_ + a (Ldpw;)Ljava/lang/Integer; m_70307_ + static + 0 o p_70308_ + a (Lcms;Ljava/util/function/BiConsumer;Lapf;Lgu$a;Ldno;)V m_226163_ + 0 o p_226164_ + 1 o p_226165_ + 2 o p_226166_ + 3 o p_226167_ + 4 o p_226168_ + a (Ldcb;)Z m_226182_ + static + 0 o p_226183_ + a (Lcms;Lgu;)Z m_213554_ + 0 o p_226155_ + 1 o p_226156_ + a ()Ldpx; m_7362_ + a (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/Products$P3; m_70305_ + static + 0 o p_70306_ + a (Lcms;Ljava/util/function/BiConsumer;Lapf;Lgu;Ldno;)V m_226169_ + static + 0 o p_226170_ + 1 o p_226171_ + 2 o p_226172_ + 3 o p_226173_ + 4 o p_226174_ + a (Lcms;Ljava/util/function/BiConsumer;Lapf;ILgu;Ldno;)Ljava/util/List; m_213934_ + 0 o p_226157_ + 1 o p_226158_ + 2 o p_226159_ + 3 o p_226160_ + 4 o p_226161_ + 5 o p_226162_ + a (Lapf;)I m_226153_ + 0 o p_226154_ + b (Lcms;Lgu;)Z m_226184_ + 0 o p_226185_ + 1 o p_226186_ + b (Ldcb;)Z m_70303_ + static + 0 o p_70304_ + b (Ldpw;)Ljava/lang/Integer; m_70311_ + static + 0 o p_70312_ + b (Lcms;Ljava/util/function/BiConsumer;Lapf;Lgu;Ldno;)Z m_226187_ + 0 o p_226188_ + 1 o p_226189_ + 2 o p_226190_ + 3 o p_226191_ + 4 o p_226192_ + c (Ldpw;)Ljava/lang/Integer; m_70313_ + static + 0 o p_70314_ + c (Lcms;Lgu;)Z m_70295_ + static + 0 o p_70296_ + 1 o p_70297_ +dpx net/minecraft/world/level/levelgen/feature/trunkplacers/TrunkPlacerType + a f_70315_ + b f_70316_ + c f_70317_ + d f_70318_ + e f_70319_ + f f_70320_ + g f_161899_ + h f_226193_ + i f_271399_ + j f_70321_ + ()V + static + (Lcom/mojang/serialization/Codec;)V + 0 o p_70324_ + a ()Lcom/mojang/serialization/Codec; m_70325_ + a (Ljava/lang/String;Lcom/mojang/serialization/Codec;)Ldpx; m_70326_ + static + 0 o p_70327_ + 1 o p_70328_ +dpy net/minecraft/world/level/levelgen/feature/trunkplacers/UpwardsBranchingTrunkPlacer + a f_226194_ + b f_226195_ + h f_226196_ + i f_226197_ + j f_226198_ + ()V + static + (IIILbdc;FLbdc;Lhi;)V + 0 o p_226201_ + 1 o p_226202_ + 2 o p_226203_ + 3 o p_226204_ + 4 o p_226205_ + 5 o p_226206_ + 6 o p_226207_ + a (Lcms;Ljava/util/function/BiConsumer;Lapf;ILdno;Ljava/util/List;Lgu$a;ILha;II)V m_226212_ + 0 o p_226213_ + 1 o p_226214_ + 2 o p_226215_ + 3 o p_226216_ + 4 o p_226217_ + 5 o p_226218_ + 6 o p_226219_ + 7 o p_226220_ + 8 o p_226221_ + 9 o p_226222_ + 10 o p_226223_ + a (Ldcb;)Z m_226231_ + 0 o p_226232_ + a (Lcms;Lgu;)Z m_213554_ + 0 o p_226210_ + 1 o p_226211_ + a ()Ldpx; m_7362_ + a (Ldpy;)Lhi; m_226233_ + static + 0 o p_226234_ + a (Lcms;Ljava/util/function/BiConsumer;Lapf;ILgu;Ldno;)Ljava/util/List; m_213934_ + 0 o p_226225_ + 1 o p_226226_ + 2 o p_226227_ + 3 o p_226228_ + 4 o p_226229_ + 5 o p_226230_ + b (Ldpy;)Lbdc; m_226237_ + static + 0 o p_226238_ + b (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; m_257356_ + static + 0 o p_259008_ + c (Ldpy;)Ljava/lang/Float; m_226239_ + static + 0 o p_226240_ + d (Ldpy;)Lbdc; m_226241_ + static + 0 o p_226242_ +dpz net/minecraft/world/level/levelgen/feature/trunkplacers/package-info +dq net/minecraft/commands/CommandSigningContext + a f_242494_ + ()V + static + a (Ljava/lang/String;)Ltl; m_213987_ + 0 o p_230580_ +dq$1 net/minecraft/commands/CommandSigningContext$1 + ()V + a (Ljava/lang/String;)Ltl; m_213987_ + 0 o p_242898_ +dq$a net/minecraft/commands/CommandSigningContext$SignedArguments + b f_242498_ + (Ljava/util/Map;)V + 0 o f_242498_ + a ()Ljava/util/Map; f_242498_ + a (Ljava/lang/String;)Ltl; m_213987_ + 0 o p_242852_ + equals (Ljava/lang/Object;)Z equals + 0 o p_230600_ + hashCode ()I hashCode + toString ()Ljava/lang/String; toString +dqa net/minecraft/world/level/levelgen/flat/FlatLayerInfo + a f_70329_ + b f_161900_ + c f_70331_ + ()V + static + (ILcpn;)V + 0 o p_70335_ + 1 o p_70336_ + a (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; m_257357_ + static + 0 o p_259009_ + a ()I m_70337_ + a (Ldqa;)Lcpn; m_161901_ + static + 0 o p_161902_ + b ()Ldcb; m_70344_ + toString ()Ljava/lang/String; toString +dqb net/minecraft/world/level/levelgen/flat/FlatLevelGeneratorPreset + a f_226243_ + b f_226244_ + c f_226245_ + d f_226246_ + ()V + static + (Lhe;Ldqd;)V + 0 o f_226245_ + 1 o f_226246_ + a ()Lhe; f_226245_ + a (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; m_257358_ + static + 0 o p_259010_ + a (Ldqb;)Ldqd; m_226254_ + static + 0 o p_226255_ + b ()Ldqd; f_226246_ + b (Ldqb;)Lhe; m_226257_ + static + 0 o p_226258_ + equals (Ljava/lang/Object;)Z equals + 0 o p_226260_ + hashCode ()I hashCode + toString ()Ljava/lang/String; toString +dqc net/minecraft/world/level/levelgen/flat/FlatLevelGeneratorPresets + a f_226263_ + b f_226264_ + c f_226265_ + d f_226266_ + e f_226267_ + f f_226268_ + g f_226269_ + h f_226270_ + i f_226271_ + ()V + static + ()V + a (Ljava/lang/String;)Lacp; m_226276_ + static + 0 o p_226277_ + a (Lnm;)V m_254848_ + static + 0 o p_256023_ +dqc$a net/minecraft/world/level/levelgen/flat/FlatLevelGeneratorPresets$Bootstrap + a f_254741_ + (Lnm;)V + 0 o p_256120_ + a (Lacp;Lcml;Lacp;Ljava/util/Set;ZZ[Ldqa;)V m_255284_ + 0 o p_256174_ + 1 o p_255748_ + 2 o p_256483_ + 3 o p_255807_ + 4 o p_256642_ + 5 o p_256006_ + 6 o p_255913_ + a ()V m_226283_ +dqd net/minecraft/world/level/levelgen/flat/FlatLevelGeneratorSettings + a f_70347_ + b f_70348_ + c f_209788_ + d f_70352_ + e f_70353_ + f f_70354_ + g f_70355_ + h f_70356_ + i f_70357_ + j f_254642_ + ()V + static + (Ljava/util/Optional;Ljava/util/List;ZZLjava/util/Optional;Lhe$c;Lhe;Lhe;)V + 0 o p_256456_ + 1 o p_255826_ + 2 o p_255740_ + 3 o p_255726_ + 4 o p_256292_ + 5 o p_255964_ + 6 o p_256419_ + 7 o p_255710_ + (Ljava/util/Optional;Lhe;Ljava/util/List;)V + 0 o p_256029_ + 1 o p_256190_ + 2 o p_255960_ + a (Ldqd;)Lcom/mojang/serialization/DataResult; m_161905_ + static + 0 o p_161906_ + a (Ljava/util/List;Ljava/util/Optional;Lhe;)Ldqd; m_254853_ + 0 o p_256587_ + 1 o p_256500_ + 2 o p_256598_ + a (Ldcb;)Z m_209801_ + static + 0 o p_209802_ + a (Lhe;)Lcnl; m_226294_ + 0 o p_226295_ + a ()V m_70369_ + a (Lhf;Lhf;Lhf;)Ldqd; m_254980_ + static + 0 o p_256175_ + 1 o p_256081_ + 2 o p_256484_ + a (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; m_254825_ + static + 0 o p_209800_ + a (Ljava/util/Optional;Lhe;)Lhe; m_255287_ + static + 0 o p_256142_ + 1 o p_256475_ + a (Lhf;)Lhe; m_255268_ + static + 0 o p_256645_ + b (Ldqd;)Ljava/util/Optional; m_209806_ + static + 0 o p_209807_ + b (Lhf;)Ljava/util/List; m_255047_ + static + 0 o p_256282_ + b ()V m_70385_ + c (Ldqd;)Ljava/lang/Boolean; m_209808_ + static + 0 o p_209809_ + c ()Ljava/util/Optional; m_209810_ + d ()Lhe; m_204921_ + d (Ldqd;)Ljava/lang/Boolean; m_161911_ + static + 0 o p_161912_ + e ()Ljava/util/List; m_70401_ + e (Ldqd;)Ljava/util/Optional; m_209811_ + static + 0 o p_209812_ + f ()Ljava/util/List; m_161917_ + g ()V m_70403_ + h ()Ljava/lang/String; m_274292_ + static +dqe net/minecraft/world/level/levelgen/flat/package-info +dqf net/minecraft/world/level/levelgen/heightproviders/BiasedToBottomHeight + a f_161918_ + b f_161919_ + d f_161920_ + e f_161921_ + f f_161922_ + ()V + static + (Ldie;Ldie;I)V + 0 o p_161925_ + 1 o p_161926_ + 2 o p_161927_ + a (Ldie;Ldie;I)Ldqf; m_161931_ + static + 0 o p_161932_ + 1 o p_161933_ + 2 o p_161934_ + a (Lapf;Ldih;)I m_213859_ + 0 o p_226297_ + 1 o p_226298_ + a (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; m_161929_ + static + 0 o p_161930_ + a ()Ldqi; m_142002_ + a (Ldqf;)Ljava/lang/Integer; m_161935_ + static + 0 o p_161936_ + b (Ldqf;)Ldie; m_161940_ + static + 0 o p_161941_ + c (Ldqf;)Ldie; m_161942_ + static + 0 o p_161943_ + toString ()Ljava/lang/String; toString +dqg net/minecraft/world/level/levelgen/heightproviders/ConstantHeight + a f_161945_ + b f_161946_ + d f_161947_ + ()V + static + (Ldie;)V + 0 o p_161950_ + a (Lapf;Ldih;)I m_213859_ + 0 o p_226300_ + 1 o p_226301_ + a (Lcom/mojang/datafixers/util/Either;)Ldqg; m_161952_ + static + 0 o p_161953_ + a (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; m_161954_ + static + 0 o p_161955_ + a ()Ldqi; m_142002_ + a (Ldie;)Ldqg; m_161956_ + static + 0 o p_161957_ + a (Ldqg;)Lcom/mojang/datafixers/util/Either; m_161958_ + static + 0 o p_161959_ + b ()Ldie; m_161963_ + b (Ldqg;)Ldqg; m_161964_ + static + 0 o p_161965_ + c (Ldqg;)Ldie; m_161966_ + static + 0 o p_161967_ + toString ()Ljava/lang/String; toString +dqh net/minecraft/world/level/levelgen/heightproviders/HeightProvider + a f_161969_ + c f_161970_ + ()V + static + ()V + a (Lapf;Ldih;)I m_213859_ + 0 o p_226302_ + 1 o p_226303_ + a (Lcom/mojang/datafixers/util/Either;)Ldqh; m_161973_ + static + 0 o p_161974_ + a ()Ldqi; m_142002_ + a (Ldqh;)Lcom/mojang/datafixers/util/Either; m_161975_ + static + 0 o p_161976_ + b (Ldqh;)Ldqh; m_161979_ + static + 0 o p_161980_ +dqi net/minecraft/world/level/levelgen/heightproviders/HeightProviderType + a f_161981_ + b f_161982_ + c f_161983_ + d f_161984_ + e f_161985_ + f f_191531_ + ()V + static + a (Lcom/mojang/serialization/Codec;)Lcom/mojang/serialization/Codec; m_161987_ + static + 0 o p_161988_ + a (Ljava/lang/String;Lcom/mojang/serialization/Codec;)Ldqi; m_161989_ + static + 0 o p_161990_ + 1 o p_161991_ + codec ()Lcom/mojang/serialization/Codec; m_161992_ +dqj net/minecraft/world/level/levelgen/heightproviders/TrapezoidHeight + a f_161993_ + b f_161994_ + d f_161995_ + e f_161996_ + f f_161997_ + ()V + static + (Ldie;Ldie;I)V + 0 o p_162000_ + 1 o p_162001_ + 2 o p_162002_ + a (Lapf;Ldih;)I m_213859_ + 0 o p_226305_ + 1 o p_226306_ + a (Ldie;Ldie;I)Ldqj; m_162009_ + static + 0 o p_162010_ + 1 o p_162011_ + 2 o p_162012_ + a (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; m_162004_ + static + 0 o p_162005_ + a (Ldie;Ldie;)Ldqj; m_162006_ + static + 0 o p_162007_ + 1 o p_162008_ + a ()Ldqi; m_142002_ + a (Ldqj;)Ljava/lang/Integer; m_162013_ + static + 0 o p_162014_ + b (Ldqj;)Ldie; m_162018_ + static + 0 o p_162019_ + c (Ldqj;)Ldie; m_162020_ + static + 0 o p_162021_ + toString ()Ljava/lang/String; toString +dqk net/minecraft/world/level/levelgen/heightproviders/UniformHeight + a f_162023_ + b f_162024_ + d f_162025_ + e f_162026_ + f f_198374_ + ()V + static + (Ldie;Ldie;)V + 0 o p_162029_ + 1 o p_162030_ + a (Lapf;Ldih;)I m_213859_ + 0 o p_226308_ + 1 o p_226309_ + a (Ldqk;)Ldie; m_162037_ + static + 0 o p_162038_ + a (Ldie;Ldie;)Ldqk; m_162034_ + static + 0 o p_162035_ + 1 o p_162036_ + a (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; m_162032_ + static + 0 o p_162033_ + a ()Ldqi; m_142002_ + b (Ldqk;)Ldie; m_162042_ + static + 0 o p_162043_ + toString ()Ljava/lang/String; toString +dql net/minecraft/world/level/levelgen/heightproviders/VeryBiasedToBottomHeight + a f_162045_ + b f_162046_ + d f_162047_ + e f_162048_ + f f_162049_ + ()V + static + (Ldie;Ldie;I)V + 0 o p_162052_ + 1 o p_162053_ + 2 o p_162054_ + a (Lapf;Ldih;)I m_213859_ + 0 o p_226311_ + 1 o p_226312_ + a (Ldie;Ldie;I)Ldql; m_162058_ + static + 0 o p_162059_ + 1 o p_162060_ + 2 o p_162061_ + a (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; m_162056_ + static + 0 o p_162057_ + a ()Ldqi; m_142002_ + a (Ldql;)Ljava/lang/Integer; m_162062_ + static + 0 o p_162063_ + b (Ldql;)Ldie; m_162067_ + static + 0 o p_162068_ + c (Ldql;)Ldie; m_162069_ + static + 0 o p_162070_ + toString ()Ljava/lang/String; toString +dqm net/minecraft/world/level/levelgen/heightproviders/WeightedListHeight + a f_191532_ + b f_191533_ + ()V + static + (Lbch;)V + 0 o p_191536_ + a (Ldqm;)Lbch; m_191540_ + static + 0 o p_191541_ + a (Lapf;Ldih;)I m_213859_ + 0 o p_226314_ + 1 o p_226315_ + a (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; m_191538_ + static + 0 o p_191539_ + a ()Ldqi; m_142002_ +dqn net/minecraft/world/level/levelgen/heightproviders/package-info +dqo net/minecraft/world/level/levelgen/material/MaterialRuleList + a f_191545_ + (Ljava/util/List;)V + 0 o f_191545_ + a ()Ljava/util/List; f_191545_ + calculate (Ldhd$b;)Ldcb; m_207387_ + 0 o p_209815_ + equals (Ljava/lang/Object;)Z equals + 0 o p_209817_ + hashCode ()I hashCode + toString ()Ljava/lang/String; toString +dqp net/minecraft/world/level/levelgen/material/WorldGenMaterialRule + a (Ldho;III)Ldcb; m_183577_ + 0 o p_191553_ + 1 o p_191554_ + 2 o p_191555_ + 3 o p_191556_ +dqq net/minecraft/world/level/levelgen/material/package-info +dqr net/minecraft/world/level/levelgen/package-info +dqs net/minecraft/world/level/levelgen/placement/BiomeFilter + a f_191557_ + c f_191558_ + ()V + static + ()V + a (Ldrf;Lapf;Lgu;)Z m_213917_ + 0 o p_226317_ + 1 o p_226318_ + 2 o p_226319_ + a ()Ldqs; m_191561_ + static + b ()Ldri; m_183327_ + c ()Ljava/lang/IllegalStateException; m_191567_ + static + d ()Ldqs; m_191568_ + static +dqt net/minecraft/world/level/levelgen/placement/BlockPredicateFilter + a f_191569_ + c f_191570_ + ()V + static + (Ldir;)V + 0 o p_191573_ + a (Ldir;)Ldqt; m_191576_ + static + 0 o p_191577_ + a (Ldqt;)Ldir; m_191578_ + static + 0 o p_191579_ + a (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; m_191574_ + static + 0 o p_191575_ + a (Ldrf;Lapf;Lgu;)Z m_213917_ + 0 o p_226321_ + 1 o p_226322_ + 2 o p_226323_ + b ()Ldri; m_183327_ +dqu net/minecraft/world/level/levelgen/placement/CarvingMaskPlacement + a f_191585_ + c f_191586_ + ()V + static + (Ldhg$a;)V + 0 o p_191589_ + a (Ldqu;)Ldhg$a; m_191592_ + static + 0 o p_191593_ + a (Ldhg$a;)Ldqu; m_191590_ + static + 0 o p_191591_ + a_ (Ldrf;Lapf;Lgu;)Ljava/util/stream/Stream; m_213676_ + 0 o p_226325_ + 1 o p_226326_ + 2 o p_226327_ + b ()Ldri; m_183327_ +dqv net/minecraft/world/level/levelgen/placement/CaveSurface + a CEILING + b FLOOR + c f_162094_ + d f_162095_ + e f_162096_ + f f_162097_ + g $VALUES + ()V + static + (Ljava/lang/String;ILha;ILjava/lang/String;)V + 0 o p_162102_ + 1 o p_162103_ + 2 o p_162104_ + 3 o p_162105_ + 4 o p_162106_ + a ()Lha; m_162107_ + b ()I m_162110_ + c ()Ljava/lang/String; m_7912_ + d ()[Ldqv; m_162112_ + static + valueOf (Ljava/lang/String;)Ldqv; valueOf + static + 0 o p_162114_ + values ()[Ldqv; values + static +dqw net/minecraft/world/level/levelgen/placement/CountOnEveryLayerPlacement + a f_191599_ + c f_191600_ + ()V + static + (Lbdc;)V + 0 o p_191603_ + a (Ldqw;)Lbdc; m_191610_ + static + 0 o p_191611_ + a (Ldcb;)Z m_191608_ + static + 0 o p_191609_ + a (Lbdc;)Ldqw; m_191606_ + static + 0 o p_191607_ + a (I)Ldqw; m_191604_ + static + 0 o p_191605_ + a (Ldrf;IIII)I m_191612_ + static + 0 o p_191613_ + 1 o p_191614_ + 2 o p_191615_ + 3 o p_191616_ + 4 o p_191617_ + a_ (Ldrf;Lapf;Lgu;)Ljava/util/stream/Stream; m_213676_ + 0 o p_226329_ + 1 o p_226330_ + 2 o p_226331_ + b ()Ldri; m_183327_ +dqx net/minecraft/world/level/levelgen/placement/CountPlacement + a f_191623_ + c f_191624_ + ()V + static + (Lbdc;)V + 0 o p_191627_ + a (Lapf;Lgu;)I m_213944_ + 0 o p_226333_ + 1 o p_226334_ + a (Ldqx;)Lbdc; m_191632_ + static + 0 o p_191633_ + a (I)Ldqx; m_191628_ + static + 0 o p_191629_ + a (Lbdc;)Ldqx; m_191630_ + static + 0 o p_191631_ + b ()Ldri; m_183327_ +dqy net/minecraft/world/level/levelgen/placement/EnvironmentScanPlacement + a f_191638_ + c f_191639_ + d f_191640_ + e f_191641_ + f f_191642_ + ()V + static + (Lha;Ldir;Ldir;I)V + 0 o p_191645_ + 1 o p_191646_ + 2 o p_191647_ + 3 o p_191648_ + a (Lha;Ldir;I)Ldqy; m_191653_ + static + 0 o p_191654_ + 1 o p_191655_ + 2 o p_191656_ + a (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; m_191649_ + static + 0 o p_191650_ + a (Ldqy;)Ljava/lang/Integer; m_191651_ + static + 0 o p_191652_ + a (Lha;Ldir;Ldir;I)Ldqy; m_191657_ + static + 0 o p_191658_ + 1 o p_191659_ + 2 o p_191660_ + 3 o p_191661_ + a_ (Ldrf;Lapf;Lgu;)Ljava/util/stream/Stream; m_213676_ + 0 o p_226336_ + 1 o p_226337_ + 2 o p_226338_ + b (Ldqy;)Ldir; m_191667_ + static + 0 o p_191668_ + b ()Ldri; m_183327_ + c (Ldqy;)Ldir; m_191669_ + static + 0 o p_191670_ + d (Ldqy;)Lha; m_191671_ + static + 0 o p_191672_ +dqz net/minecraft/world/level/levelgen/placement/HeightRangePlacement + a f_191673_ + c f_191674_ + ()V + static + (Ldqh;)V + 0 o p_191677_ + a (Ldqz;)Ldqh; m_191685_ + static + 0 o p_191686_ + a (Ldqh;)Ldqz; m_191683_ + static + 0 o p_191684_ + a (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; m_191678_ + static + 0 o p_191679_ + a (Ldie;Ldie;)Ldqz; m_191680_ + static + 0 o p_191681_ + 1 o p_191682_ + a_ (Ldrf;Lapf;Lgu;)Ljava/util/stream/Stream; m_213676_ + 0 o p_226340_ + 1 o p_226341_ + 2 o p_226342_ + b (Ldie;Ldie;)Ldqz; m_191692_ + static + 0 o p_191693_ + 1 o p_191694_ + b ()Ldri; m_183327_ +dr net/minecraft/commands/CommandSource + a f_80164_ + ()V + static + N_ ()Z m_6102_ + a (Lsw;)V m_213846_ + 0 o p_230797_ + e_ ()Z m_6999_ + f_ ()Z m_142559_ + q_ ()Z m_7028_ +dr$1 net/minecraft/commands/CommandSource$1 + ()V + N_ ()Z m_6102_ + a (Lsw;)V m_213846_ + 0 o p_230799_ + e_ ()Z m_6999_ + q_ ()Z m_7028_ +dra net/minecraft/world/level/levelgen/placement/HeightmapPlacement + a f_191695_ + c f_191696_ + ()V + static + (Ldhk$a;)V + 0 o p_191699_ + a (Ldhk$a;)Ldra; m_191702_ + static + 0 o p_191703_ + a (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; m_191700_ + static + 0 o p_191701_ + a (Ldra;)Ldhk$a; m_191704_ + static + 0 o p_191705_ + a_ (Ldrf;Lapf;Lgu;)Ljava/util/stream/Stream; m_213676_ + 0 o p_226344_ + 1 o p_226345_ + 2 o p_226346_ + b ()Ldri; m_183327_ +drb net/minecraft/world/level/levelgen/placement/InSquarePlacement + a f_191711_ + c f_191712_ + ()V + static + ()V + a ()Ldrb; m_191715_ + static + a_ (Ldrf;Lapf;Lgu;)Ljava/util/stream/Stream; m_213676_ + 0 o p_226348_ + 1 o p_226349_ + 2 o p_226350_ + b ()Ldri; m_183327_ + c ()Ldrb; m_191721_ + static +drc net/minecraft/world/level/levelgen/placement/NoiseBasedCountPlacement + a f_191722_ + c f_191723_ + d f_191724_ + e f_191725_ + ()V + static + (IDD)V + 0 o p_191728_ + 1 o p_191729_ + 2 o p_191730_ + a (Lapf;Lgu;)I m_213944_ + 0 o p_226352_ + 1 o p_226353_ + a (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; m_191735_ + static + 0 o p_191736_ + a (IDD)Ldrc; m_191731_ + static + 0 o p_191732_ + 1 o p_191733_ + 2 o p_191734_ + a (Ldrc;)Ljava/lang/Double; m_191737_ + static + 0 o p_191738_ + b ()Ldri; m_183327_ + b (Ldrc;)Ljava/lang/Double; m_191743_ + static + 0 o p_191744_ + c (Ldrc;)Ljava/lang/Integer; m_191745_ + static + 0 o p_191746_ +drd net/minecraft/world/level/levelgen/placement/NoiseThresholdCountPlacement + a f_191747_ + c f_191748_ + d f_191749_ + e f_191750_ + ()V + static + (DII)V + 0 o p_191753_ + 1 o p_191754_ + 2 o p_191755_ + a (Lapf;Lgu;)I m_213944_ + 0 o p_226355_ + 1 o p_226356_ + a (Ldrd;)Ljava/lang/Integer; m_191762_ + static + 0 o p_191763_ + a (DII)Ldrd; m_191756_ + static + 0 o p_191757_ + 1 o p_191758_ + 2 o p_191759_ + a (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; m_191760_ + static + 0 o p_191761_ + b (Ldrd;)Ljava/lang/Integer; m_191768_ + static + 0 o p_191769_ + b ()Ldri; m_183327_ + c (Ldrd;)Ljava/lang/Double; m_191770_ + static + 0 o p_191771_ +dre net/minecraft/world/level/levelgen/placement/PlacedFeature + a f_191772_ + b f_191773_ + c f_191774_ + d f_204922_ + e f_191775_ + f f_191776_ + ()V + static + (Lhe;Ljava/util/List;)V + 0 o f_191775_ + 1 o f_191776_ + a (Ldrh;Ldrf;Lapf;Lgu;)Ljava/util/stream/Stream; m_226372_ + static + 0 o p_226373_ + 1 o p_226374_ + 2 o p_226375_ + 3 o p_226376_ + a (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; m_191787_ + static + 0 o p_191788_ + a ()Ljava/util/stream/Stream; m_191781_ + a (Ldrf;Lapf;Lgu;)Z m_226368_ + 0 o p_226369_ + 1 o p_226370_ + 2 o p_226371_ + a (Lcng;Lddy;Lapf;Lgu;)Z m_226357_ + 0 o p_226358_ + 1 o p_226359_ + 2 o p_226360_ + 3 o p_226361_ + a (Ldkb;Ldrf;Lapf;Lorg/apache/commons/lang3/mutable/MutableBoolean;Lgu;)V m_226362_ + static + 0 o p_226363_ + 1 o p_226364_ + 2 o p_226365_ + 3 o p_226366_ + 4 o p_226367_ + a (Ldre;)Ljava/util/List; m_191795_ + static + 0 o p_191796_ + b (Ldre;)Lhe; m_204927_ + static + 0 o p_204928_ + b (Lcng;Lddy;Lapf;Lgu;)Z m_226377_ + 0 o p_226378_ + 1 o p_226379_ + 2 o p_226380_ + 3 o p_226381_ + b ()Lhe; f_191775_ + c ()Ljava/util/List; f_191776_ + equals (Ljava/lang/Object;)Z equals + 0 o p_204931_ + hashCode ()I hashCode + toString ()Ljava/lang/String; toString +drf net/minecraft/world/level/levelgen/placement/PlacementContext + a f_191814_ + b f_191815_ + c f_191816_ + (Lcng;Lddy;Ljava/util/Optional;)V + 0 o p_191818_ + 1 o p_191819_ + 2 o p_191820_ + a (Ldhk$a;II)I m_191824_ + 0 o p_191825_ + 1 o p_191826_ + 2 o p_191827_ + a (Lclt;Ldhg$a;)Lddw; m_191821_ + 0 o p_191822_ + 1 o p_191823_ + a (Lgu;)Ldcb; m_191828_ + 0 o p_191829_ + c ()I m_191830_ + d ()Lcng; m_191831_ + e ()Ljava/util/Optional; m_191832_ + f ()Lddy; m_191833_ +drg net/minecraft/world/level/levelgen/placement/PlacementFilter + ()V + a (Ldrf;Lapf;Lgu;)Z m_213917_ + 0 o p_226382_ + 1 o p_226383_ + 2 o p_226384_ + a_ (Ldrf;Lapf;Lgu;)Ljava/util/stream/Stream; m_213676_ + 0 o p_226386_ + 1 o p_226387_ + 2 o p_226388_ +drh net/minecraft/world/level/levelgen/placement/PlacementModifier + b f_191842_ + ()V + static + ()V + a_ (Ldrf;Lapf;Lgu;)Ljava/util/stream/Stream; m_213676_ + 0 o p_226389_ + 1 o p_226390_ + 2 o p_226391_ + b ()Ldri; m_183327_ +dri net/minecraft/world/level/levelgen/placement/PlacementModifierType + a f_191848_ + b f_191849_ + c f_191850_ + d f_191851_ + e f_191852_ + f f_191853_ + g f_191854_ + h f_191855_ + i f_191856_ + j f_191857_ + k f_191858_ + l f_191859_ + m f_191860_ + n f_191861_ + o f_191862_ + ()V + static + a (Lcom/mojang/serialization/Codec;)Lcom/mojang/serialization/Codec; m_191864_ + static + 0 o p_191865_ + a (Ljava/lang/String;Lcom/mojang/serialization/Codec;)Ldri; m_191866_ + static + 0 o p_191867_ + 1 o p_191868_ + codec ()Lcom/mojang/serialization/Codec; m_191869_ +drj net/minecraft/world/level/levelgen/placement/RandomOffsetPlacement + a f_191870_ + c f_191871_ + d f_191872_ + ()V + static + (Lbdc;Lbdc;)V + 0 o p_191875_ + 1 o p_191876_ + a (Ldrj;)Lbdc; m_191884_ + static + 0 o p_191885_ + a (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; m_191882_ + static + 0 o p_191883_ + a (Lbdc;Lbdc;)Ldrj; m_191879_ + static + 0 o p_191880_ + 1 o p_191881_ + a (Lbdc;)Ldrj; m_191877_ + static + 0 o p_191878_ + a_ (Ldrf;Lapf;Lgu;)Ljava/util/stream/Stream; m_213676_ + 0 o p_226393_ + 1 o p_226394_ + 2 o p_226395_ + b (Lbdc;)Ldrj; m_191891_ + static + 0 o p_191892_ + b ()Ldri; m_183327_ + b (Ldrj;)Lbdc; m_191893_ + static + 0 o p_191894_ +drk net/minecraft/world/level/levelgen/placement/RarityFilter + a f_191895_ + c f_191896_ + ()V + static + (I)V + 0 o p_191899_ + a (Ldrk;)Ljava/lang/Integer; m_191906_ + static + 0 o p_191907_ + a (I)Ldrk; m_191900_ + static + 0 o p_191901_ + a (Ldrf;Lapf;Lgu;)Z m_213917_ + 0 o p_226397_ + 1 o p_226398_ + 2 o p_226399_ + b ()Ldri; m_183327_ +drl net/minecraft/world/level/levelgen/placement/RepeatingPlacement + ()V + a (Lapf;Lgu;)I m_213944_ + 0 o p_226400_ + 1 o p_226401_ + a (Lgu;I)Lgu; m_191910_ + static + 0 o p_191911_ + 1 o p_191912_ + a_ (Ldrf;Lapf;Lgu;)Ljava/util/stream/Stream; m_213676_ + 0 o p_226403_ + 1 o p_226404_ + 2 o p_226405_ +drm net/minecraft/world/level/levelgen/placement/SurfaceRelativeThresholdFilter + a f_191919_ + c f_191920_ + d f_191921_ + e f_191922_ + ()V + static + (Ldhk$a;II)V + 0 o p_191925_ + 1 o p_191926_ + 2 o p_191927_ + a (Ldrm;)Ljava/lang/Integer; m_191938_ + static + 0 o p_191939_ + a (Ldhk$a;II)Ldrm; m_191930_ + static + 0 o p_191931_ + 1 o p_191932_ + 2 o p_191933_ + a (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; m_191928_ + static + 0 o p_191929_ + a (Ldrf;Lapf;Lgu;)Z m_213917_ + 0 o p_226407_ + 1 o p_226408_ + 2 o p_226409_ + b (Ldrm;)Ljava/lang/Integer; m_191941_ + static + 0 o p_191942_ + b ()Ldri; m_183327_ + c (Ldrm;)Ldhk$a; m_191943_ + static + 0 o p_191944_ +drn net/minecraft/world/level/levelgen/placement/SurfaceWaterDepthFilter + a f_191945_ + c f_191946_ + ()V + static + (I)V + 0 o p_191949_ + a (Ldrn;)Ljava/lang/Integer; m_191958_ + static + 0 o p_191959_ + a (I)Ldrn; m_191950_ + static + 0 o p_191951_ + a (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; m_191952_ + static + 0 o p_191953_ + a (Ldrf;Lapf;Lgu;)Z m_213917_ + 0 o p_226411_ + 1 o p_226412_ + 2 o p_226413_ + b ()Ldri; m_183327_ +dro net/minecraft/world/level/levelgen/placement/package-info +drp net/minecraft/world/level/levelgen/presets/WorldPreset + a f_226414_ + b f_226415_ + c f_226416_ + ()V + static + (Ljava/util/Map;)V + 0 o p_226419_ + a (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; m_257359_ + static + 0 o p_259011_ + a (Ldrp;)Lcom/mojang/serialization/DataResult; m_238378_ + static + 0 o p_238379_ + a ()Ldif; m_247748_ + a (Lia;Lacp;)V m_257360_ + 0 o p_259012_ + 1 o p_259013_ + b ()Ljava/util/Optional; m_226420_ + b (Ldrp;)Ljava/util/Map; m_226429_ + static + 0 o p_226430_ + c ()Lhr; m_226435_ + d ()Ljava/lang/String; m_274293_ + static +drq net/minecraft/world/level/levelgen/presets/WorldPresets + a f_226437_ + b f_226438_ + c f_226439_ + d f_226440_ + e f_226441_ + f f_226442_ + ()V + static + ()V + a (Ljava/lang/String;)Lacp; m_226459_ + static + 0 o p_226460_ + a (Lnm;)V m_254897_ + static + 0 o p_256172_ + a (Lhs;)Ldif; m_246552_ + static + 0 o p_251732_ + a (Lhr;)Ljava/util/Optional; m_246618_ + static + 0 o p_249784_ + a (Ldfl;)Ljava/util/Optional; m_246029_ + static + 0 o p_251294_ + b (Lhs;)Ldfl; m_226463_ + static + 0 o p_226464_ +drq$a net/minecraft/world/level/levelgen/presets/WorldPresets$Bootstrap + a f_254745_ + b f_226469_ + c f_226467_ + d f_254750_ + e f_226468_ + f f_273886_ + g f_226471_ + h f_226474_ + i f_226477_ + (Lnm;)V + 0 o p_256588_ + a (Lddy;)Ldfl; m_226487_ + 0 o p_226488_ + a (Ldfl;)Ldrp; m_226489_ + 0 o p_226490_ + a ()V m_271735_ + a (Lacp;Ldfl;)V m_254854_ + 0 o p_256570_ + 1 o p_256269_ + a (Lcno;Lhe;)Ldfl; m_226484_ + 0 o p_226485_ + 1 o p_226486_ + a (Lcno;)V m_271739_ + 0 o p_273133_ +drr net/minecraft/world/level/levelgen/presets/package-info +drs net/minecraft/world/level/levelgen/structure/BoundingBox + a f_162354_ + b f_162355_ + c f_162356_ + d f_162357_ + e f_162358_ + f f_162359_ + g f_162360_ + h f_162361_ + ()V + static + (Lgu;)V + 0 o p_162364_ + (IIIIII)V + 0 o p_71001_ + 1 o p_71002_ + 2 o p_71003_ + 3 o p_71004_ + 4 o p_71005_ + 5 o p_71006_ + a ()Ldrs; m_71044_ + static + a (IIIIIIIIILha;)Ldrs; m_71031_ + static + 0 o p_71032_ + 1 o p_71033_ + 2 o p_71034_ + 3 o p_71035_ + 4 o p_71036_ + 5 o p_71037_ + 6 o p_71038_ + 7 o p_71039_ + 8 o p_71040_ + 9 o p_71041_ + a (Ljava/util/stream/IntStream;)Lcom/mojang/serialization/DataResult; m_162382_ + static + 0 o p_162383_ + a (Ljava/lang/Iterable;)Ljava/util/Optional; m_162378_ + static + 0 o p_162379_ + a (III)Ldrs; m_162367_ + 0 o p_162368_ + 1 o p_162369_ + 2 o p_162370_ + a (Lgu;)Ldrs; m_162371_ + 0 o p_162372_ + a (Lhz;Lhz;)Ldrs; m_162375_ + static + 0 o p_162376_ + 1 o p_162377_ + a (Ldrs;)Z m_71049_ + 0 o p_71050_ + a (I)Ldrs; m_191961_ + 0 o p_191962_ + a (Ljava/util/function/Consumer;)V m_162380_ + 0 o p_162381_ + a ([I)Ldrs; m_162384_ + static + 0 o p_162385_ + a (Lhz;)Ldrs; m_162373_ + 0 o p_162374_ + a (IIII)Z m_71019_ + 0 o p_71020_ + 1 o p_71021_ + 2 o p_71022_ + 3 o p_71023_ + b (Ljava/lang/Iterable;)Ljava/util/Optional; m_162388_ + static + 0 o p_162389_ + b ()Lhz; m_71053_ + b (III)Ldrs; m_71045_ + 0 o p_71046_ + 1 o p_71047_ + 2 o p_71048_ + b (Ldrs;)Ldrs; m_162386_ + 0 o p_162387_ + b (Lhz;)Z m_71051_ + 0 o p_71052_ + c (III)Z m_260866_ + 0 o p_261671_ + 1 o p_261537_ + 2 o p_261678_ + c ()I m_71056_ + c (Ldrs;)Ljava/util/stream/IntStream; m_162390_ + static + 0 o p_162391_ + d ()I m_71057_ + e ()I m_71058_ + equals (Ljava/lang/Object;)Z equals + 0 o p_162393_ + f ()Lgu; m_162394_ + g ()I m_162395_ + h ()I m_162396_ + hashCode ()I hashCode + i ()I m_162398_ + j ()I m_162399_ + k ()I m_162400_ + l ()I m_162401_ + toString ()Ljava/lang/String; toString +drs$1 net/minecraft/world/level/levelgen/structure/BoundingBox$1 + a f_71062_ + ()V + static +drt net/minecraft/world/level/levelgen/structure/BuiltinStructureSets + a f_209820_ + b f_209821_ + c f_209822_ + d f_209823_ + e f_209824_ + f f_209825_ + g f_209826_ + h f_209827_ + i f_209828_ + j f_209829_ + k f_209830_ + l f_209831_ + m f_209832_ + n f_209833_ + o f_209834_ + p f_209835_ + q f_226491_ + r f_209836_ + s f_276475_ + ()V + static + a (Ljava/lang/String;)Lacp; m_209838_ + static + 0 o p_209839_ +dru net/minecraft/world/level/levelgen/structure/BuiltinStructures + A f_209840_ + B f_209841_ + C f_209842_ + D f_209843_ + E f_209844_ + F f_226492_ + G f_276588_ + a f_209845_ + b f_209846_ + c f_209847_ + d f_209848_ + e f_209849_ + f f_209850_ + g f_209851_ + h f_209852_ + i f_209853_ + j f_209854_ + k f_209855_ + l f_209856_ + m f_209857_ + n f_209858_ + o f_209859_ + p f_209860_ + q f_209861_ + r f_209862_ + s f_209863_ + t f_209864_ + u f_209865_ + v f_209866_ + w f_209867_ + x f_209868_ + y f_209869_ + z f_209870_ + ()V + static + a (Ljava/lang/String;)Lacp; m_209872_ + static + 0 o p_209873_ +drv net/minecraft/world/level/levelgen/structure/LegacyStructureDataHandler + a f_71299_ + b f_71300_ + c f_209874_ + d f_71301_ + e f_71302_ + f f_71303_ + g f_71304_ + h f_71305_ + ()V + static + (Ldyu;Ljava/util/List;Ljava/util/List;)V + 0 o p_71308_ + 1 o p_71309_ + 2 o p_71310_ + a (Lqr;)Lqr; m_71326_ + 0 o p_71327_ + a (Ljava/lang/String;)Lit/unimi/dsi/fastutil/longs/Long2ObjectMap; m_71334_ + static + 0 o p_71335_ + a (II)Z m_71311_ + 0 o p_71312_ + 1 o p_71313_ + a (IILjava/lang/String;)Z m_71314_ + 0 o p_71315_ + 1 o p_71316_ + 2 o p_71317_ + a (Lqr;Lclt;)Lqr; m_71328_ + 0 o p_71329_ + 1 o p_71330_ + a (Ldyu;)V m_71320_ + 0 o p_71321_ + a (Ljava/util/HashMap;)V m_71324_ + static + 0 o p_71325_ + a (J)V m_71318_ + 0 o p_71319_ + a (Lacp;Ldyu;)Ldrv; m_71331_ + static + 0 o p_71332_ + 1 o p_71333_ + b (Ljava/util/HashMap;)V m_71336_ + static + 0 o p_71337_ +drw net/minecraft/world/level/levelgen/structure/PoolElementStructurePiece + a f_72597_ + b f_72598_ + c f_72599_ + d f_72600_ + h f_72601_ + i f_72602_ + j f_226493_ + ()V + static + (Ldsq;Lqr;)V + 0 o p_192406_ + 1 o p_192407_ + (Ldvu;Ldth;Lgu;ILcvz;Ldrs;)V + 0 o p_226495_ + 1 o p_226496_ + 2 o p_226497_ + 3 o p_226498_ + 4 o p_226499_ + 5 o p_226500_ + a ()Lcvz; m_6830_ + a (Lcng;Lcne;Lddy;Lapf;Ldrs;Lgu;Z)V m_226509_ + 0 o p_226510_ + 1 o p_226511_ + 2 o p_226512_ + 3 o p_226513_ + 4 o p_226514_ + 5 o p_226515_ + 6 o p_226516_ + a (Lcom/mojang/serialization/DynamicOps;Lrk;)V m_204941_ + 0 o p_204942_ + 1 o p_204943_ + a (III)V m_6324_ + 0 o p_72616_ + 1 o p_72617_ + 2 o p_72618_ + a (Lcng;Lcne;Lddy;Lapf;Ldrs;Lclt;Lgu;)V m_213694_ + 0 o p_226502_ + 1 o p_226503_ + 2 o p_226504_ + 3 o p_226505_ + 4 o p_226506_ + 5 o p_226507_ + 6 o p_226508_ + a (Ldtc;)V m_209916_ + 0 o p_209917_ + a (Lqr;Lrk;)V m_163123_ + static + 0 o p_163124_ + 1 o p_163125_ + a (Ldsq;Lqr;)V m_183620_ + 0 o p_192425_ + 1 o p_192426_ + b ()Ldth; m_209918_ + c ()Lgu; m_72646_ + d ()I m_72647_ + e ()Ljava/util/List; m_72648_ + l ()Ljava/lang/IllegalStateException; m_163129_ + static + toString ()Ljava/lang/String; toString +drx net/minecraft/world/level/levelgen/structure/PostPlacementProcessor + a f_192427_ + ()V + static + a (Lcng;Lcne;Lddy;Lapf;Ldrs;Lclt;Ldsp;)V m_226517_ + static + 0 o p_226518_ + 1 o p_226519_ + 2 o p_226520_ + 3 o p_226521_ + 4 o p_226522_ + 5 o p_226523_ + 6 o p_226524_ + afterPlace (Lcng;Lcne;Lddy;Lapf;Ldrs;Lclt;Ldsp;)V m_226525_ + 0 o p_226526_ + 1 o p_226527_ + 2 o p_226528_ + 3 o p_226529_ + 4 o p_226530_ + 5 o p_226531_ + 6 o p_226532_ +dry net/minecraft/world/level/levelgen/structure/ScatteredFeaturePiece + a f_72787_ + b f_72788_ + c f_72789_ + d f_72790_ + (Ldsr;IIIIIILha;)V + 0 o p_209920_ + 1 o p_209921_ + 2 o p_209922_ + 3 o p_209923_ + 4 o p_209924_ + 5 o p_209925_ + 6 o p_209926_ + 7 o p_209927_ + (Ldsr;Lqr;)V + 0 o p_209929_ + 1 o p_209930_ + a (Ldsq;Lqr;)V m_183620_ + 0 o p_192471_ + 1 o p_192472_ + a (Lcmn;Ldrs;I)Z m_72803_ + 0 o p_72804_ + 1 o p_72805_ + 2 o p_72806_ + a (Lcmn;I)Z m_192467_ + 0 o p_192468_ + 1 o p_192469_ +drz net/minecraft/world/level/levelgen/structure/SinglePieceStructure + d f_226533_ + e f_226534_ + f f_226535_ + (Ldrz$a;IILdsa$c;)V + 0 o p_226537_ + 1 o p_226538_ + 2 o p_226539_ + 3 o p_226540_ + a (Ldss;Ldsa$a;)V m_226546_ + 0 o p_226547_ + 1 o p_226548_ + a (Ldsa$a;Ldss;)V m_226543_ + 0 o p_226544_ + 1 o p_226545_ + a (Ldsa$a;)Ljava/util/Optional; m_214086_ + 0 o p_226542_ +drz$a net/minecraft/world/level/levelgen/structure/SinglePieceStructure$PieceConstructor + construct (Ldij;II)Ldse; m_226549_ + 0 o p_226550_ + 1 o p_226551_ + 2 o p_226552_ +ds net/minecraft/commands/CommandSourceStack + a f_81286_ + b f_81287_ + c f_81288_ + d f_81289_ + e f_81290_ + f f_81291_ + g f_81292_ + h f_81293_ + i f_81294_ + j f_81295_ + k f_81296_ + l f_81297_ + m f_81298_ + n f_81299_ + o f_230878_ + p f_241659_ + q f_279552_ + ()V + static + (Ldr;Leei;Leeh;Laif;ILjava/lang/String;Lsw;Lnet/minecraft/server/MinecraftServer;Lbfj;ZLcom/mojang/brigadier/ResultConsumer;Leb$a;Ldq;Lapt;Ljava/util/function/IntConsumer;)V + 0 o p_282943_ + 1 o p_282023_ + 2 o p_282896_ + 3 o p_282659_ + 4 o p_283075_ + 5 o p_282379_ + 6 o p_282469_ + 7 o p_281590_ + 8 o p_281515_ + 9 o p_282415_ + 10 o p_282042_ + 11 o p_282332_ + 12 o p_283585_ + 13 o p_282376_ + 14 o p_282226_ + (Ldr;Leei;Leeh;Laif;ILjava/lang/String;Lsw;Lnet/minecraft/server/MinecraftServer;Lbfj;)V + 0 o p_81302_ + 1 o p_81303_ + 2 o p_81304_ + 3 o p_81305_ + 4 o p_81306_ + 5 o p_81307_ + 6 o p_81308_ + 7 o p_81309_ + 8 o p_81310_ + a ()Lds; m_81324_ + a (Ldu$a;Lcom/mojang/brigadier/suggestion/SuggestionsBuilder;Lhr;)Ljava/util/concurrent/CompletableFuture; m_212325_ + 0 o p_212326_ + 1 o p_212327_ + 2 o p_212328_ + a (Lcom/mojang/brigadier/context/CommandContext;ZI)V m_81342_ + 0 o p_81343_ + 1 o p_81344_ + 2 o p_81345_ + a (Lbfj;Leb$a;)Lds; m_81331_ + 0 o p_81332_ + 1 o p_81333_ + a (Lbfj;)Lds; m_81329_ + 0 o p_81330_ + a (I)Lds; m_81325_ + 0 o p_81326_ + a (Lsw;)V m_243053_ + 0 o p_243331_ + a (Ldq;)Lds; m_230893_ + 0 o p_230894_ + a (Leei;)Lds; m_81348_ + 0 o p_81349_ + a (Lcom/mojang/brigadier/context/CommandContext;)Ljava/util/concurrent/CompletableFuture; m_212155_ + 0 o p_212324_ + a (Lcom/mojang/brigadier/ResultConsumer;)Lds; m_81334_ + 0 o p_81335_ + a (Laig;)Z m_243061_ + 0 o p_243268_ + a (Lacp;Ldu$a;Lcom/mojang/brigadier/suggestion/SuggestionsBuilder;Lcom/mojang/brigadier/context/CommandContext;)Ljava/util/concurrent/CompletableFuture; m_212095_ + 0 o p_212330_ + 1 o p_212331_ + 2 o p_212332_ + 3 o p_212333_ + a (Laif;)Lds; m_81327_ + 0 o p_81328_ + a (Ltk;ZLss$a;)V m_246719_ + 0 o p_251464_ + 1 o p_252146_ + 2 o p_250406_ + a (Leb$a;)Lds; m_81350_ + 0 o p_81351_ + a (Ljava/util/function/Supplier;Z)V m_288197_ + 0 o p_288979_ + 1 o p_289007_ + a (Ldr;)Lds; m_165484_ + 0 o p_165485_ + a (Leeh;)Lds; m_81346_ + 0 o p_81347_ + a (Ljava/util/function/IntConsumer;)Lds; m_280439_ + 0 o p_282875_ + a (Lcom/mojang/brigadier/ResultConsumer;Ljava/util/function/BinaryOperator;)Lds; m_81336_ + 0 o p_81337_ + 1 o p_81338_ + a (Lapt;)Lds; m_241952_ + 0 o p_242228_ + b ()Lsw; m_81357_ + b (Lcom/mojang/brigadier/context/CommandContext;ZI)V m_81360_ + static + 0 o p_81361_ + 1 o p_81362_ + 2 o p_81363_ + b (Leei;)Lds; m_81364_ + 0 o p_81365_ + b (I)Lds; m_81358_ + 0 o p_81359_ + b (Lsw;)V m_81352_ + 0 o p_81353_ + c (I)Z m_6761_ + 0 o p_81370_ + c (Lsw;)V m_81366_ + 0 o p_81367_ + c ()Ljava/lang/String; m_81368_ + d (I)V m_279866_ + static + 0 o p_280930_ + d ()Leei; m_81371_ + e ()Laif; m_81372_ + f ()Lbfj; m_81373_ + g ()Lbfj; m_81374_ + h ()Laig; m_81375_ + i ()Laig; m_230896_ + j ()Z m_230897_ + k ()Leeh; m_81376_ + l ()Lnet/minecraft/server/MinecraftServer; m_81377_ + m ()Leb$a; m_81378_ + n ()Ldq; m_230898_ + o ()Lapt; m_241923_ + p ()Ljava/util/function/IntConsumer; m_280336_ + q ()Ljava/util/Collection; m_5982_ + r ()Ljava/util/Collection; m_5983_ + s ()Ljava/util/stream/Stream; m_5984_ + t ()Ljava/util/stream/Stream; m_6860_ + u ()Ljava/util/Set; m_6553_ + v ()Lhs; m_5894_ + w ()Lcaw; m_245239_ +dsa net/minecraft/world/level/levelgen/structure/Structure + a f_226553_ + b f_226554_ + c f_226555_ + ()V + static + (Ldsa$c;)V + 0 o p_226558_ + a (Ldsa$a;Ldhk$a;Ljava/util/function/Consumer;)Ljava/util/Optional; m_226585_ + static + 0 o p_226586_ + 1 o p_226587_ + 2 o p_226588_ + a (Ldsa;)Ldsa$c; m_226594_ + static + 0 o p_226595_ + a (Lcng;Lcne;Lddy;Lapf;Ldrs;Lclt;Ldsp;)V m_214110_ + 0 o p_226560_ + 1 o p_226561_ + 2 o p_226562_ + 3 o p_226563_ + 4 o p_226564_ + 5 o p_226565_ + 6 o p_226566_ + a (Ldsa$a;II)I m_226572_ + static + 0 o p_226573_ + 1 o p_226574_ + 2 o p_226575_ + a (Ldsa$b;Ldsa$a;)Z m_262828_ + static + 0 o p_263042_ + 1 o p_263005_ + a (Ldsa$a;IIII)I m_226576_ + static + 0 o p_226577_ + 1 o p_226578_ + 2 o p_226579_ + 3 o p_226580_ + 4 o p_226581_ + a (Ldsa$a;Lcvz;)Lgu; m_226582_ + 0 o p_226583_ + 1 o p_226584_ + a ()Lhi; m_226559_ + a (Ldrs;)Ldrs; m_226569_ + 0 o p_226570_ + a (Ljava/util/function/Function;)Lcom/mojang/serialization/Codec; m_226607_ + static + 0 o p_226608_ + a (Ljava/util/function/Function;Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; m_226609_ + static + 0 o p_226610_ + 1 o p_226611_ + a (Ldsa$a;)Ljava/util/Optional; m_214086_ + 0 o p_226571_ + a (Ldsa$a;Ldsa$b;)Z m_262787_ + static + 0 o p_262910_ + 1 o p_262911_ + a (Lhs;Lddy;Lcno;Ldhy;Ldvu;JLclt;ILcmo;Ljava/util/function/Predicate;)Ldsi; m_226596_ + 0 o p_226597_ + 1 o p_226598_ + 2 o p_226599_ + 3 o p_226600_ + 4 o p_226601_ + 5 o p_226602_ + 6 o p_226603_ + 7 o p_226604_ + 8 o p_226605_ + 9 o p_226606_ + a (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/serialization/codecs/RecordCodecBuilder; m_226567_ + static + 0 o p_226568_ + b (Ldsa$a;IIII)[I m_226613_ + static + 0 o p_226614_ + 1 o p_226615_ + 2 o p_226616_ + 3 o p_226617_ + 4 o p_226618_ + b (Ldsa$a;)Ljava/util/Optional; m_262864_ + 0 o p_263060_ + b ()Ljava/util/Map; m_226612_ + c ()Ldhg$b; m_226619_ + d ()Ldsl; m_226620_ + e ()Ldsj; m_213658_ +dsa$a net/minecraft/world/level/levelgen/structure/Structure$GenerationContext + a f_226621_ + b f_226622_ + c f_226623_ + d f_226624_ + e f_226625_ + f f_226626_ + g f_226627_ + h f_226628_ + i f_226629_ + j f_226630_ + (Lhs;Lddy;Lcno;Ldhy;Ldvu;Ldij;JLclt;Lcmo;Ljava/util/function/Predicate;)V + 0 o f_226621_ + 1 o f_226622_ + 2 o f_226623_ + 3 o f_226624_ + 4 o f_226625_ + 5 o f_226626_ + 6 o f_226627_ + 7 o f_226628_ + 8 o f_226629_ + 9 o f_226630_ + (Lhs;Lddy;Lcno;Ldhy;Ldvu;JLclt;Lcmo;Ljava/util/function/Predicate;)V + 0 o p_226632_ + 1 o p_226633_ + 2 o p_226634_ + 3 o p_226635_ + 4 o p_226636_ + 5 o p_226637_ + 6 o p_226638_ + 7 o p_226639_ + 8 o p_226640_ + a (JLclt;)Ldij; m_226653_ + static + 0 o p_226654_ + 1 o p_226655_ + a ()Lhs; f_226621_ + b ()Lddy; f_226622_ + c ()Lcno; f_226623_ + d ()Ldhy; f_226624_ + e ()Ldvu; f_226625_ + equals (Ljava/lang/Object;)Z equals + 0 o p_226661_ + f ()Ldij; f_226626_ + g ()J f_226627_ + h ()Lclt; f_226628_ + hashCode ()I hashCode + i ()Lcmo; f_226629_ + j ()Ljava/util/function/Predicate; f_226630_ + toString ()Ljava/lang/String; toString +dsa$b net/minecraft/world/level/levelgen/structure/Structure$GenerationStub + a f_226669_ + b f_226670_ + (Lgu;Lcom/mojang/datafixers/util/Either;)V + 0 o f_226669_ + 1 o f_226670_ + (Lgu;Ljava/util/function/Consumer;)V + 0 o p_226675_ + 1 o p_226676_ + a (Ldss;)Ldss; m_226678_ + static + 0 o p_226679_ + a (Ljava/util/function/Consumer;)Ldss; m_226680_ + static + 0 o p_226681_ + a ()Ldss; m_226677_ + b ()Lgu; f_226669_ + c ()Lcom/mojang/datafixers/util/Either; f_226670_ + equals (Ljava/lang/Object;)Z equals + 0 o p_226685_ + hashCode ()I hashCode + toString ()Ljava/lang/String; toString +dsa$c net/minecraft/world/level/levelgen/structure/Structure$StructureSettings + a f_226688_ + b f_226689_ + c f_226690_ + d f_226691_ + e f_226692_ + ()V + static + (Lhi;Ljava/util/Map;Ldhg$b;Ldsl;)V + 0 o f_226689_ + 1 o f_226690_ + 2 o f_226691_ + 3 o f_226692_ + a ()Lhi; f_226689_ + a (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; m_257361_ + static + 0 o p_259014_ + b ()Ljava/util/Map; f_226690_ + c ()Ldhg$b; f_226691_ + d ()Ldsl; f_226692_ + equals (Ljava/lang/Object;)Z equals + 0 o p_226706_ + hashCode ()I hashCode + toString ()Ljava/lang/String; toString +dsb net/minecraft/world/level/levelgen/structure/StructureCheck + a f_197235_ + b f_197236_ + c f_197237_ + d f_197238_ + e f_197239_ + f f_204945_ + g f_226709_ + h f_197241_ + i f_197242_ + j f_226710_ + k f_197243_ + l f_197244_ + m f_197245_ + n f_197246_ + o f_197247_ + p f_197248_ + ()V + static + (Ldex;Lhs;Ldvu;Lacp;Lddy;Ldhy;Lcmo;Lcno;JLcom/mojang/datafixers/DataFixer;)V + 0 o p_226712_ + 1 o p_226713_ + 2 o p_226714_ + 3 o p_226715_ + 4 o p_226716_ + 5 o p_226717_ + 6 o p_226718_ + 7 o p_226719_ + 8 o p_226720_ + 9 o p_226721_ + a (JLit/unimi/dsi/fastutil/longs/Long2BooleanMap;)V m_209954_ + static + 0 o p_209955_ + 1 o p_209956_ + a (Lit/unimi/dsi/fastutil/objects/Object2IntMap;Ldsa;Z)Ldsc; m_226751_ + 0 o p_226752_ + 1 o p_226753_ + 2 o p_226754_ + a (Ldsa;Ljava/lang/Long;Lit/unimi/dsi/fastutil/objects/Object2IntMap;)Lit/unimi/dsi/fastutil/objects/Object2IntMap; m_226743_ + static + 0 o p_226744_ + 1 o p_226745_ + 2 o p_226746_ + a (Lclt;Ldsa;ZJ)Ldsc; m_226733_ + 0 o p_226734_ + 1 o p_226735_ + 2 o p_226736_ + 3 o p_226737_ + a (Lit/unimi/dsi/fastutil/objects/Object2IntMap;Ldsa;Ldsi;)V m_226747_ + static + 0 o p_226748_ + 1 o p_226749_ + 2 o p_226750_ + a (Lclt;Ljava/util/Map;)V m_197282_ + 0 o p_197283_ + 1 o p_197284_ + a (JLit/unimi/dsi/fastutil/objects/Object2IntMap;)V m_197263_ + 0 o p_197264_ + 1 o p_197265_ + a (Lclt;Ldsa;Z)Ldsc; m_226729_ + 0 o p_226730_ + 1 o p_226731_ + 2 o p_226732_ + a (Lit/unimi/dsi/fastutil/objects/Object2IntMap;)Lit/unimi/dsi/fastutil/objects/Object2IntMap; m_197298_ + static + 0 o p_197299_ + a (Lclt;Ldsa;)V m_226722_ + 0 o p_226723_ + 1 o p_226724_ + a (Ldsa;Ljava/lang/Integer;)Ljava/lang/Integer; m_226740_ + static + 0 o p_226741_ + 1 o p_226742_ + a (Lqr;)Lit/unimi/dsi/fastutil/objects/Object2IntMap; m_197311_ + 0 o p_197312_ + a (Lclt;Ldsa;J)Z m_226725_ + 0 o p_226726_ + 1 o p_226727_ + 2 o p_226728_ + a (Ldsa;)Lit/unimi/dsi/fastutil/longs/Long2BooleanMap; m_226738_ + static + 0 o p_226739_ + b (Lclt;Ldsa;)Z m_226755_ + 0 o p_226756_ + 1 o p_226757_ +dsc net/minecraft/world/level/levelgen/structure/StructureCheckResult + a START_PRESENT + b START_NOT_PRESENT + c CHUNK_LOAD_NEEDED + d $VALUES + ()V + static + (Ljava/lang/String;I)V + 0 o p_197319_ + 1 o p_197320_ + a ()[Ldsc; m_197321_ + static + valueOf (Ljava/lang/String;)Ldsc; valueOf + static + 0 o p_197323_ + values ()[Ldsc; values + static +dsd net/minecraft/world/level/levelgen/structure/StructureFeatureIndexSavedData + a f_163528_ + b f_163529_ + c f_73360_ + d f_73361_ + (Lit/unimi/dsi/fastutil/longs/LongSet;Lit/unimi/dsi/fastutil/longs/LongSet;)V + 0 o p_163532_ + 1 o p_163533_ + ()V + a (Lqr;)Lqr; m_7176_ + 0 o p_73372_ + a (J)V m_73365_ + 0 o p_73366_ + a ()Lit/unimi/dsi/fastutil/longs/LongSet; m_73364_ + b (Lqr;)Ldsd; m_163534_ + static + 0 o p_163535_ + b (J)Z m_73369_ + 0 o p_73370_ + c (J)Z m_73373_ + 0 o p_73374_ + d (J)V m_73375_ + 0 o p_73376_ +dse net/minecraft/world/level/levelgen/structure/StructurePiece + a f_163536_ + b f_73377_ + c f_73378_ + d f_73379_ + e f_73382_ + f f_73383_ + g f_73384_ + h f_73380_ + i f_73381_ + ()V + static + (Ldsr;Lqr;)V + 0 o p_209998_ + 1 o p_209999_ + (Ldsr;ILdrs;)V + 0 o p_209994_ + 1 o p_209995_ + 2 o p_209996_ + a (Lcng;Ldrs;IIIIIILdcb;Ldcb;Z)V m_73441_ + 0 o p_73442_ + 1 o p_73443_ + 2 o p_73444_ + 3 o p_73445_ + 4 o p_73446_ + 5 o p_73447_ + 6 o p_73448_ + 7 o p_73449_ + 8 o p_73450_ + 9 o p_73451_ + 10 o p_73452_ + a ()Lcvz; m_6830_ + a (Lcng;Ldrs;Lapf;IIILha;Lacq;)Z m_226819_ + 0 o p_226820_ + 1 o p_226821_ + 2 o p_226822_ + 3 o p_226823_ + 4 o p_226824_ + 5 o p_226825_ + 6 o p_226826_ + 7 o p_226827_ + a (Ljava/util/stream/Stream;)Ldrs; m_192651_ + static + 0 o p_192652_ + a (Lcng;Ldrs;IIIIIIZLapf;Ldse$a;)V m_226776_ + 0 o p_226777_ + 1 o p_226778_ + 2 o p_226779_ + 3 o p_226780_ + 4 o p_226781_ + 5 o p_226782_ + 6 o p_226783_ + 7 o p_226784_ + 8 o p_226785_ + 9 o p_226786_ + 10 o p_226787_ + a (III)V m_6324_ + 0 o p_73395_ + 1 o p_73396_ + 2 o p_73397_ + a (Lapf;)Lha; m_226760_ + static + 0 o p_226761_ + a (Lcng;Ldrs;IIIIIILdcb;Z)V m_73453_ + 0 o p_73454_ + 1 o p_73455_ + 2 o p_73456_ + 3 o p_73457_ + 4 o p_73458_ + 5 o p_73459_ + 6 o p_73460_ + 7 o p_73461_ + 8 o p_73462_ + 9 o p_73463_ + a (Ldse;Ldsf;Lapf;)V m_214092_ + 0 o p_226835_ + 1 o p_226836_ + 2 o p_226837_ + a (Ldcb;)Z m_163572_ + 0 o p_163573_ + a (Lcls;Lgu;Ldcb;)Ldcb; m_73407_ + static + 0 o p_73408_ + 1 o p_73409_ + 2 o p_73410_ + a (II)I m_73392_ + 0 o p_73393_ + 1 o p_73394_ + a (Lcng;Ldrs;Lapf;FIIILdcb;)V m_226803_ + 0 o p_226804_ + 1 o p_226805_ + 2 o p_226806_ + 3 o p_226807_ + 4 o p_226808_ + 5 o p_226809_ + 6 o p_226810_ + 7 o p_226811_ + a (Lcnb;Ldrs;Lapf;Lgu;Lacq;Ldcb;)Z m_226762_ + 0 o p_226763_ + 1 o p_226764_ + 2 o p_226765_ + 3 o p_226766_ + 4 o p_226767_ + 5 o p_226768_ + a (Lcng;Ldrs;Lapf;FIIIIIILdcb;Ldcb;ZZ)V m_226788_ + 0 o p_226789_ + 1 o p_226790_ + 2 o p_226791_ + 3 o p_226792_ + 4 o p_226793_ + 5 o p_226794_ + 6 o p_226795_ + 7 o p_226796_ + 8 o p_226797_ + 9 o p_226798_ + 10 o p_226799_ + 11 o p_226800_ + 12 o p_226801_ + 13 o p_226802_ + a (I)V m_226758_ + 0 o p_226759_ + a (Lcmp;IIILdrs;)Z m_142085_ + 0 o p_163553_ + 1 o p_163554_ + 2 o p_163555_ + 3 o p_163556_ + 4 o p_163557_ + a (Lha;)V m_73519_ + 0 o p_73520_ + a (Lcng;Ldrs;Ldrs;Ldcb;Ldcb;Z)V m_163558_ + 0 o p_163559_ + 1 o p_163560_ + 2 o p_163561_ + 3 o p_163562_ + 4 o p_163563_ + 5 o p_163564_ + a (Lcng;Ldrs;Ldrs;ZLapf;Ldse$a;)V m_226828_ + 0 o p_226829_ + 1 o p_226830_ + 2 o p_226831_ + 3 o p_226832_ + 4 o p_226833_ + 5 o p_226834_ + a (Lcng;Lcne;Lddy;Lapf;Ldrs;Lclt;Lgu;)V m_213694_ + 0 o p_226769_ + 1 o p_226770_ + 2 o p_226771_ + 3 o p_226772_ + 4 o p_226773_ + 5 o p_226774_ + 6 o p_226775_ + a (Lclt;I)Z m_73411_ + 0 o p_73412_ + 1 o p_73413_ + a (Lcng;Ldrs;IIIIII)V m_73535_ + 0 o p_73536_ + 1 o p_73537_ + 2 o p_73538_ + 3 o p_73539_ + 4 o p_73540_ + 5 o p_73541_ + 6 o p_73542_ + 7 o p_73543_ + a (Lqr;Lrk;)V m_163577_ + static + 0 o p_163578_ + 1 o p_163579_ + a (Ldsq;Lqr;)V m_183620_ + 0 o p_192646_ + 1 o p_192647_ + a (Lcng;Ldcb;IIILdrs;)V m_73434_ + 0 o p_73435_ + 1 o p_73436_ + 2 o p_73437_ + 3 o p_73438_ + 4 o p_73439_ + 5 o p_73440_ + a (Lcng;Ldrs;Lapf;IIILacq;)Z m_213787_ + 0 o p_226812_ + 1 o p_226813_ + 2 o p_226814_ + 3 o p_226815_ + 4 o p_226816_ + 5 o p_226817_ + 6 o p_226818_ + a (Ldsq;)Lqr; m_192644_ + 0 o p_192645_ + a (Lcls;IIILdrs;)Ldcb; m_73398_ + 0 o p_73399_ + 1 o p_73400_ + 2 o p_73401_ + 3 o p_73402_ + 4 o p_73403_ + a (IIILha;III)Ldrs; m_163541_ + static + 0 o p_163542_ + 1 o p_163543_ + 2 o p_163544_ + 3 o p_163545_ + 4 o p_163546_ + 5 o p_163547_ + 6 o p_163548_ + a (Ljava/util/List;Ldrs;)Ldse; m_192648_ + static + 0 o p_192649_ + 1 o p_192650_ + b ()Ljava/lang/IllegalStateException; m_192653_ + static + b (III)Lgu$a; m_163582_ + 0 o p_163583_ + 1 o p_163584_ + 2 o p_163585_ + b (Lcmp;IIILdrs;)Z m_73414_ + 0 o p_73415_ + 1 o p_73416_ + 2 o p_73417_ + 3 o p_73418_ + 4 o p_73419_ + b (Lcng;Ldcb;IIILdrs;)V m_73528_ + 0 o p_73529_ + 1 o p_73530_ + 2 o p_73531_ + 3 o p_73532_ + 4 o p_73533_ + 5 o p_73534_ + b (II)I m_73525_ + 0 o p_73526_ + 1 o p_73527_ + b (I)I m_73544_ + 0 o p_73545_ + c ()Ljava/lang/IllegalArgumentException; m_163586_ + static + f ()Ldrs; m_73547_ + g ()I m_73548_ + h ()Lgu; m_142171_ + i ()Lha; m_73549_ + j ()Lcui; m_163587_ + k ()Ldsr; m_210000_ +dse$1 net/minecraft/world/level/levelgen/structure/StructurePiece$1 + a f_73551_ + ()V + static +dse$a net/minecraft/world/level/levelgen/structure/StructurePiece$BlockSelector + a f_73553_ + ()V + a (Lapf;IIIZ)V m_213766_ + 0 o p_226838_ + 1 o p_226839_ + 2 o p_226840_ + 3 o p_226841_ + 4 o p_226842_ + a ()Ldcb; m_73555_ +dsf net/minecraft/world/level/levelgen/structure/StructurePieceAccessor + a (Ldrs;)Ldse; m_141921_ + 0 o p_163588_ + a (Ldse;)V m_142679_ + 0 o p_163589_ +dsg net/minecraft/world/level/levelgen/structure/StructureSet + a f_210001_ + b f_210002_ + c f_210003_ + d f_210004_ + ()V + static + (Lhe;Ldsx;)V + 0 o p_210007_ + 1 o p_210008_ + (Ljava/util/List;Ldsx;)V + 0 o f_210003_ + 1 o f_210004_ + a (Lhe;I)Ldsg$a; m_210017_ + static + 0 o p_210018_ + 1 o p_210019_ + a ()Ljava/util/List; f_210003_ + a (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; m_210013_ + static + 0 o p_210014_ + a (Lhe;)Ldsg$a; m_210015_ + static + 0 o p_210016_ + b ()Ldsx; f_210004_ + equals (Ljava/lang/Object;)Z equals + 0 o p_210022_ + hashCode ()I hashCode + toString ()Ljava/lang/String; toString +dsg$a net/minecraft/world/level/levelgen/structure/StructureSet$StructureSelectionEntry + a f_210025_ + b f_210026_ + c f_210027_ + ()V + static + (Lhe;I)V + 0 o f_210026_ + 1 o f_210027_ + a ()Lhe; f_210026_ + a (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; m_210033_ + static + 0 o p_210034_ + b ()I f_210027_ + equals (Ljava/lang/Object;)Z equals + 0 o p_210039_ + hashCode ()I hashCode + toString ()Ljava/lang/String; toString +dsh net/minecraft/world/level/levelgen/structure/StructureSpawnOverride + a f_210042_ + b f_210043_ + c f_210044_ + ()V + static + (Ldsh$a;Lbcl;)V + 0 o f_210043_ + 1 o f_210044_ + a ()Ldsh$a; f_210043_ + a (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; m_210050_ + static + 0 o p_210051_ + b ()Lbcl; f_210044_ + equals (Ljava/lang/Object;)Z equals + 0 o p_210054_ + hashCode ()I hashCode + toString ()Ljava/lang/String; toString +dsh$a net/minecraft/world/level/levelgen/structure/StructureSpawnOverride$BoundingBoxType + a PIECE + b STRUCTURE + c f_210060_ + d f_210061_ + e $VALUES + ()V + static + (Ljava/lang/String;ILjava/lang/String;)V + 0 o p_210065_ + 1 o p_210066_ + 2 o p_210067_ + a ()[Ldsh$a; m_210071_ + static + c ()Ljava/lang/String; m_7912_ + valueOf (Ljava/lang/String;)Ldsh$a; valueOf + static + 0 o p_210074_ + values ()[Ldsh$a; values + static +dsi net/minecraft/world/level/levelgen/structure/StructureStart + a f_163590_ + b f_73561_ + c f_226843_ + d f_226844_ + e f_192654_ + f f_163592_ + g f_73568_ + h f_163593_ + ()V + static + (Ldsa;Lclt;ILdsp;)V + 0 o p_226846_ + 1 o p_226847_ + 2 o p_226848_ + 3 o p_226849_ + a ()Ldrs; m_73601_ + a (Lcng;Lcne;Lddy;Lapf;Ldrs;Lclt;)V m_226850_ + 0 o p_226851_ + 1 o p_226852_ + 2 o p_226853_ + 3 o p_226854_ + 4 o p_226855_ + 5 o p_226856_ + a (Ldsq;Lclt;)Lqr; m_192660_ + 0 o p_192661_ + 1 o p_192662_ + a (Ldsq;Lqr;J)Ldsi; m_226857_ + static + 0 o p_226858_ + 1 o p_226859_ + 2 o p_226860_ + b ()Z m_73603_ + c ()Lclt; m_163625_ + d ()Z m_73606_ + e ()V m_73607_ + f ()I m_73608_ + g ()I m_73609_ + h ()Ldsa; m_226861_ + i ()Ljava/util/List; m_73602_ +dsj net/minecraft/world/level/levelgen/structure/StructureType + a f_226862_ + b f_226863_ + c f_226864_ + d f_226865_ + e f_226866_ + f f_226867_ + g f_226868_ + h f_226869_ + i f_226870_ + j f_226871_ + k f_226872_ + l f_226873_ + m f_226874_ + n f_226875_ + o f_226876_ + p f_226877_ + ()V + static + a (Lcom/mojang/serialization/Codec;)Lcom/mojang/serialization/Codec; m_226879_ + static + 0 o p_226880_ + a (Ljava/lang/String;Lcom/mojang/serialization/Codec;)Ldsj; m_226881_ + static + 0 o p_226882_ + 1 o p_226883_ + codec ()Lcom/mojang/serialization/Codec; m_226884_ +dsk net/minecraft/world/level/levelgen/structure/TemplateStructurePiece + a f_163658_ + b f_73656_ + c f_73657_ + d f_73658_ + h f_73659_ + ()V + static + (Ldsr;Lqr;Ldvu;Ljava/util/function/Function;)V + 0 o p_226894_ + 1 o p_226895_ + 2 o p_226896_ + 3 o p_226897_ + (Ldsr;ILdvu;Lacq;Ljava/lang/String;Ldvp;Lgu;)V + 0 o p_226886_ + 1 o p_226887_ + 2 o p_226888_ + 3 o p_226889_ + 4 o p_226890_ + 5 o p_226891_ + 6 o p_226892_ + a (Lcng;Lcne;Lddy;Lapf;Ldrs;Lclt;Lgu;)V m_213694_ + 0 o p_226899_ + 1 o p_226900_ + 2 o p_226901_ + 3 o p_226902_ + 4 o p_226903_ + 5 o p_226904_ + 6 o p_226905_ + a ()Lcvz; m_6830_ + a (Ldsq;Lqr;)V m_183620_ + 0 o p_192690_ + 1 o p_192691_ + a (III)V m_6324_ + 0 o p_73668_ + 1 o p_73669_ + 2 o p_73670_ + a (Ljava/lang/String;Lgu;Lcnb;Lapf;Ldrs;)V m_213704_ + 0 o p_226906_ + 1 o p_226907_ + 2 o p_226908_ + 3 o p_226909_ + 4 o p_226910_ + b ()Lacq; m_142415_ + c ()Ldvt; m_226911_ + d ()Lgu; m_226912_ + e ()Ldvp; m_226913_ +dsl net/minecraft/world/level/levelgen/structure/TerrainAdjustment + a NONE + b BURY + c BEARD_THIN + d BEARD_BOX + e f_226918_ + f f_226919_ + g $VALUES + ()V + static + (Ljava/lang/String;ILjava/lang/String;)V + 0 o p_226923_ + 1 o p_226924_ + 2 o p_226925_ + a ()[Ldsl; m_226926_ + static + c ()Ljava/lang/String; m_7912_ + valueOf (Ljava/lang/String;)Ldsl; valueOf + static + 0 o p_226929_ + values ()[Ldsl; values + static +dsm net/minecraft/world/level/levelgen/structure/package-info +dsn net/minecraft/world/level/levelgen/structure/pieces/PieceGenerator + generatePieces (Ldss;Ldsn$a;)V m_197325_ + 0 o p_197326_ + 1 o p_197327_ +dsn$a net/minecraft/world/level/levelgen/structure/pieces/PieceGenerator$Context + a f_197328_ + b f_192703_ + c f_226931_ + d f_192705_ + e f_192707_ + f f_192708_ + g f_192709_ + (Ldms;Lddy;Ldvu;Lclt;Lcmo;Ldij;J)V + 0 o f_197328_ + 1 o f_192703_ + 2 o f_226931_ + 3 o f_192705_ + 4 o f_192707_ + 5 o f_192708_ + 6 o f_192709_ + a ()Ldms; f_197328_ + b ()Lddy; f_192703_ + c ()Ldvu; f_226931_ + d ()Lclt; f_192705_ + e ()Lcmo; f_192707_ + equals (Ljava/lang/Object;)Z equals + 0 o p_192735_ + f ()Ldij; f_192708_ + g ()J f_192709_ + hashCode ()I hashCode + toString ()Ljava/lang/String; toString +dso net/minecraft/world/level/levelgen/structure/pieces/PieceGeneratorSupplier + a (Ljava/util/function/Predicate;Ljava/util/Optional;Ldso$a;)Ljava/util/Optional; m_197341_ + static + 0 o p_197342_ + 1 o p_197343_ + 2 o p_197344_ + a (Ldhk$a;Ldso$a;)Z m_197338_ + static + 0 o p_197339_ + 1 o p_197340_ + checkForBiomeOnTop (Ldhk$a;)Ljava/util/function/Predicate; m_197345_ + static + 0 o p_197346_ + createGenerator (Ldso$a;)Ljava/util/Optional; m_197347_ + 0 o p_197348_ + simple (Ljava/util/function/Predicate;Ldsn;)Ldso; m_197349_ + static + 0 o p_197350_ + 1 o p_197351_ +dso$a net/minecraft/world/level/levelgen/structure/pieces/PieceGeneratorSupplier$Context + a f_197352_ + b f_197353_ + c f_226941_ + d f_197354_ + e f_197355_ + f f_197356_ + g f_197357_ + h f_197358_ + i f_226942_ + j f_197360_ + (Lddy;Lcno;Ldhy;JLclt;Ldms;Lcmo;Ljava/util/function/Predicate;Ldvu;Lhs;)V + 0 o f_197352_ + 1 o f_197353_ + 2 o f_226941_ + 3 o f_197354_ + 4 o f_197355_ + 5 o f_197356_ + 6 o f_197357_ + 7 o f_197358_ + 8 o f_226942_ + 9 o f_197360_ + a (Ldhk$a;)Z m_197380_ + 0 o p_197381_ + a ()Lddy; f_197352_ + b ()Lcno; f_197353_ + c ()Ldhy; f_226941_ + d ()J f_197354_ + e ()Lclt; f_197355_ + equals (Ljava/lang/Object;)Z equals + 0 o p_197387_ + f ()Ldms; f_197356_ + g ()Lcmo; f_197357_ + h ()Ljava/util/function/Predicate; f_197358_ + hashCode ()I hashCode + i ()Ldvu; f_226942_ + j ()Lhs; f_197360_ + toString ()Ljava/lang/String; toString +dsp net/minecraft/world/level/levelgen/structure/pieces/PiecesContainer + a f_192741_ + b f_192742_ + c f_192743_ + d f_192744_ + ()V + static + (Ljava/util/List;)V + 0 o f_192741_ + a ()Z m_192748_ + a (Lgu;)Z m_192751_ + 0 o p_192752_ + a (Lqx;Ldsq;)Ldsp; m_192753_ + static + 0 o p_192754_ + 1 o p_192755_ + a (Ldsq;)Lrk; m_192749_ + 0 o p_192750_ + b ()Ldrs; m_192756_ + c ()Ljava/util/List; f_192741_ + equals (Ljava/lang/Object;)Z equals + 0 o p_192759_ + hashCode ()I hashCode + toString ()Ljava/lang/String; toString +dsq net/minecraft/world/level/levelgen/structure/pieces/StructurePieceSerializationContext + a f_192762_ + b f_192763_ + c f_226956_ + (Lakx;Lhs;Ldvu;)V + 0 o f_192762_ + 1 o f_192763_ + 2 o f_226956_ + a (Laif;)Ldsq; m_192770_ + static + 0 o p_192771_ + a ()Lakx; f_192762_ + b ()Lhs; f_192763_ + c ()Ldvu; f_226956_ + equals (Ljava/lang/Object;)Z equals + 0 o p_192775_ + hashCode ()I hashCode + toString ()Ljava/lang/String; toString +dsr net/minecraft/world/level/levelgen/structure/pieces/StructurePieceType + A f_210095_ + B f_210096_ + C f_210097_ + D f_210098_ + E f_210099_ + F f_210100_ + G f_210101_ + H f_210102_ + I f_210103_ + J f_210104_ + K f_210105_ + L f_210106_ + M f_210107_ + N f_210108_ + O f_210109_ + P f_210110_ + Q f_210111_ + R f_210112_ + S f_210113_ + T f_210114_ + U f_210115_ + V f_210116_ + W f_210117_ + X f_210118_ + Y f_210119_ + Z f_210120_ + a f_210121_ + aa f_210122_ + ab f_210123_ + ac f_210124_ + ad f_210125_ + b f_210126_ + c f_210127_ + d f_210128_ + e f_210129_ + f f_210130_ + g f_210131_ + h f_210132_ + i f_210133_ + j f_210134_ + k f_210135_ + l f_210136_ + m f_210137_ + n f_210138_ + o f_210139_ + p f_210140_ + q f_210141_ + r f_210142_ + s f_210143_ + t f_210144_ + u f_210145_ + v f_210146_ + w f_210147_ + x f_210148_ + y f_210149_ + z f_210150_ + ()V + static + a (Ldsr;Ljava/lang/String;)Ldsr; m_210158_ + static + 0 o p_210159_ + 1 o p_210160_ + a (Ldsr$a;Ljava/lang/String;)Ldsr; m_210152_ + static + 0 o p_210153_ + 1 o p_210154_ + a (Ldsr$b;Ljava/lang/String;)Ldsr; m_210155_ + static + 0 o p_210156_ + 1 o p_210157_ + load (Ldsq;Lqr;)Ldse; m_207333_ + 0 o p_210161_ + 1 o p_210162_ +dsr$a net/minecraft/world/level/levelgen/structure/pieces/StructurePieceType$ContextlessType + load (Lqr;)Ldse; m_210166_ + 0 o p_210167_ + load (Ldsq;Lqr;)Ldse; m_207333_ + 0 o p_210164_ + 1 o p_210165_ +dsr$b net/minecraft/world/level/levelgen/structure/pieces/StructurePieceType$StructureTemplateType + load (Ldsq;Lqr;)Ldse; m_207333_ + 0 o p_210169_ + 1 o p_210170_ + load (Ldvu;Lqr;)Ldse; m_226962_ + 0 o p_226963_ + 1 o p_226964_ +dss net/minecraft/world/level/levelgen/structure/pieces/StructurePiecesBuilder + a f_192778_ + ()V + a (Ldrs;)Ldse; m_141921_ + 0 o p_192789_ + a ()Ldsp; m_192780_ + a (I)V m_192781_ + 0 o p_192782_ + a (Lapf;II)V m_226970_ + 0 o p_226971_ + 1 o p_226972_ + 2 o p_226973_ + a (Ldse;)V m_142679_ + 0 o p_192791_ + a (IILapf;I)I m_226965_ + 0 o p_226966_ + 1 o p_226967_ + 2 o p_226968_ + 3 o p_226969_ + b ()V m_192796_ + c ()Z m_192797_ + d ()Ldrs; m_192798_ +dst net/minecraft/world/level/levelgen/structure/pieces/package-info +dsu net/minecraft/world/level/levelgen/structure/placement/ConcentricRingsStructurePlacement + a f_204949_ + c f_204950_ + d f_204951_ + e f_204952_ + f f_226974_ + ()V + static + (IIILhi;)V + 0 o p_226976_ + 1 o p_226977_ + 2 o p_226978_ + 3 o p_226979_ + (Lhz;Ldsx$c;FILjava/util/Optional;IIILhi;)V + 0 o p_226981_ + 1 o p_226982_ + 2 o p_226983_ + 3 o p_226984_ + 4 o p_226985_ + 5 o p_226986_ + 6 o p_226987_ + 7 o p_226988_ + 8 o p_226989_ + a (Lddz;II)Z m_214090_ + 0 o p_256631_ + 1 o p_256202_ + 2 o p_255915_ + a ()I m_204965_ + b (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/Products$P9; m_226996_ + static + 0 o p_226997_ + b ()I m_204966_ + c ()I m_204967_ + c (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; m_204959_ + static + 0 o p_204960_ + d ()Lhi; m_226998_ + e ()Ldsy; m_203443_ +dsv net/minecraft/world/level/levelgen/structure/placement/RandomSpreadStructurePlacement + a f_204972_ + c f_204973_ + d f_204974_ + e f_204975_ + ()V + static + (Lhz;Ldsx$c;FILjava/util/Optional;IILdsw;)V + 0 o p_227000_ + 1 o p_227001_ + 2 o p_227002_ + 3 o p_227003_ + 4 o p_227004_ + 5 o p_227005_ + 6 o p_227006_ + 7 o p_227007_ + (IILdsw;I)V + 0 o p_204980_ + 1 o p_204981_ + 2 o p_204982_ + 3 o p_204983_ + a (Ldsv;)Lcom/mojang/serialization/DataResult; m_285838_ + static + 0 o p_286361_ + a (Lddz;II)Z m_214090_ + 0 o p_256267_ + 1 o p_256050_ + 2 o p_255975_ + a ()I m_205003_ + a (JII)Lclt; m_227008_ + 0 o p_227009_ + 1 o p_227010_ + 2 o p_227011_ + b (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; m_204995_ + static + 0 o p_204996_ + b ()I m_205004_ + c ()Ldsw; m_205005_ + d ()Ljava/lang/String; m_274295_ + static + e ()Ldsy; m_203443_ +dsw net/minecraft/world/level/levelgen/structure/placement/RandomSpreadType + a LINEAR + b TRIANGULAR + c f_205014_ + d f_205016_ + e $VALUES + ()V + static + (Ljava/lang/String;ILjava/lang/String;)V + 0 o p_205020_ + 1 o p_205021_ + 2 o p_205022_ + a (Lapf;I)I m_227018_ + 0 o p_227019_ + 1 o p_227020_ + a ()[Ldsw; m_205029_ + static + c ()Ljava/lang/String; m_7912_ + valueOf (Ljava/lang/String;)Ldsw; valueOf + static + 0 o p_205032_ + values ()[Ldsw; values + static +dsw$1 net/minecraft/world/level/levelgen/structure/placement/RandomSpreadType$1 + a f_205034_ + ()V + static +dsx net/minecraft/world/level/levelgen/structure/placement/StructurePlacement + a f_227021_ + b f_205036_ + c f_227022_ + d f_227023_ + e f_227024_ + f f_227025_ + g f_227026_ + ()V + static + (Lhz;Ldsx$c;FILjava/util/Optional;)V + 0 o p_227028_ + 1 o p_227029_ + 2 o p_227030_ + 3 o p_227031_ + 4 o p_227032_ + a (Lclt;)Lgu; m_227039_ + 0 o p_227040_ + a (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/Products$P5; m_227041_ + static + 0 o p_227042_ + a (Lddz;II)Z m_214090_ + 0 o p_256034_ + 1 o p_227046_ + 2 o p_227047_ + a (JIIIF)Z m_227033_ + static + 0 o p_227034_ + 1 o p_227035_ + 2 o p_227036_ + 3 o p_227037_ + 4 o p_227038_ + b (Lddz;II)Z m_255071_ + 0 o p_256635_ + 1 o p_255959_ + 2 o p_256065_ + b (JIIIF)Z m_227048_ + static + 0 o p_227049_ + 1 o p_227050_ + 2 o p_227051_ + 3 o p_227052_ + 4 o p_227053_ + c (JIIIF)Z m_227060_ + static + 0 o p_227061_ + 1 o p_227062_ + 2 o p_227063_ + 3 o p_227064_ + 4 o p_227065_ + d (JIIIF)Z m_227066_ + static + 0 o p_227067_ + 1 o p_227068_ + 2 o p_227069_ + 3 o p_227070_ + 4 o p_227071_ + e ()Ldsy; m_203443_ + f ()Lhz; m_227072_ + g ()Ldsx$c; m_227073_ + h ()F m_227074_ + i ()I m_227075_ + j ()Ljava/util/Optional; m_227076_ +dsx$a net/minecraft/world/level/levelgen/structure/placement/StructurePlacement$ExclusionZone + a f_227077_ + b f_227078_ + c f_227079_ + ()V + static + (Lhe;I)V + 0 o f_227078_ + 1 o f_227079_ + a (Lddz;II)Z m_254908_ + 0 o p_255745_ + 1 o p_255634_ + 2 o p_255892_ + a ()Lhe; f_227078_ + a (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; m_257362_ + static + 0 o p_259015_ + b ()I f_227079_ + equals (Ljava/lang/Object;)Z equals + 0 o p_227095_ + hashCode ()I hashCode + toString ()Ljava/lang/String; toString +dsx$b net/minecraft/world/level/levelgen/structure/placement/StructurePlacement$FrequencyReducer + shouldGenerate (JIIIF)Z m_227098_ + 0 o p_227099_ + 1 o p_227100_ + 2 o p_227101_ + 3 o p_227102_ + 4 o p_227103_ +dsx$c net/minecraft/world/level/levelgen/structure/placement/StructurePlacement$FrequencyReductionMethod + a DEFAULT + b LEGACY_TYPE_1 + c LEGACY_TYPE_2 + d LEGACY_TYPE_3 + e f_227108_ + f f_227109_ + g f_227110_ + h $VALUES + ()V + static + (Ljava/lang/String;ILjava/lang/String;Ldsx$b;)V + 0 o p_227114_ + 1 o p_227115_ + 2 o p_227116_ + 3 o p_227117_ + a (JIIIF)Z m_227119_ + 0 o p_227120_ + 1 o p_227121_ + 2 o p_227122_ + 3 o p_227123_ + 4 o p_227124_ + a ()[Ldsx$c; m_227118_ + static + c ()Ljava/lang/String; m_7912_ + valueOf (Ljava/lang/String;)Ldsx$c; valueOf + static + 0 o p_227127_ + values ()[Ldsx$c; values + static +dsy net/minecraft/world/level/levelgen/structure/placement/StructurePlacementType + a f_205041_ + b f_205042_ + ()V + static + a (Lcom/mojang/serialization/Codec;)Lcom/mojang/serialization/Codec; m_205044_ + static + 0 o p_205045_ + a (Ljava/lang/String;Lcom/mojang/serialization/Codec;)Ldsy; m_205046_ + static + 0 o p_205047_ + 1 o p_205048_ + codec ()Lcom/mojang/serialization/Codec; m_205049_ +dsz net/minecraft/world/level/levelgen/structure/placement/package-info +dt net/minecraft/commands/Commands + a f_165682_ + b f_165683_ + c f_165684_ + d f_165685_ + e f_165686_ + f f_82089_ + g f_82090_ + ()V + static + (Ldt$a;Ldm;)V + 0 o p_230943_ + 1 o p_230944_ + a (Ltj;Lts;)Lts; m_82135_ + static + 0 o p_82136_ + 1 o p_82137_ + a ()Lcom/mojang/brigadier/CommandDispatcher; m_82094_ + a (Ldu;)Z m_82125_ + static + 0 o p_82126_ + a (Ldt$b;)Ljava/util/function/Predicate; m_82120_ + static + 0 o p_82121_ + a (Lds;Ljava/lang/String;)I m_230957_ + 0 o p_230958_ + 1 o p_230959_ + a (Lcom/mojang/brigadier/ParseResults;)Lcom/mojang/brigadier/exceptions/CommandSyntaxException; m_82097_ + static + 0 o p_82098_ + a (Ldt$b;Ljava/lang/String;)Z m_82122_ + static + 0 o p_82123_ + 1 o p_82124_ + a (Lcom/mojang/brigadier/tree/CommandNode;Lcom/mojang/brigadier/tree/CommandNode;Lds;Ljava/util/Map;)V m_82112_ + 0 o p_82113_ + 1 o p_82114_ + 2 o p_82115_ + 3 o p_82116_ + a (Lcom/mojang/brigadier/ParseResults;Ljava/util/function/UnaryOperator;)Lcom/mojang/brigadier/ParseResults; m_242611_ + static + 0 o p_242928_ + 1 o p_242890_ + a (Lcom/mojang/brigadier/ParseResults;Ljava/lang/String;)I m_242674_ + 0 o p_242844_ + 1 o p_242841_ + a (Ljava/lang/String;Lcom/mojang/brigadier/arguments/ArgumentType;)Lcom/mojang/brigadier/builder/RequiredArgumentBuilder; m_82129_ + static + 0 o p_82130_ + 1 o p_82131_ + a (Lcom/mojang/brigadier/context/CommandContext;)I m_82101_ + static + 0 o p_82102_ + a (Laig;)V m_82095_ + 0 o p_82096_ + a (Ljava/lang/String;)Lcom/mojang/brigadier/builder/LiteralArgumentBuilder; m_82127_ + static + 0 o p_82128_ + a (Ljava/lang/String;Lts;)Lts; m_82132_ + static + 0 o p_82133_ + 1 o p_82134_ + a (Lcom/mojang/brigadier/context/CommandContext;ZI)V m_230953_ + static + 0 o p_230954_ + 1 o p_230955_ + 2 o p_230956_ + a (Lhg$b;)Ldm; m_255082_ + static + 0 o p_256243_ + a (Lcom/mojang/brigadier/CommandDispatcher;Lcom/mojang/brigadier/tree/CommandNode;Lcom/mojang/brigadier/tree/CommandNode;Lcom/mojang/brigadier/tree/CommandNode;Ljava/util/Collection;)V m_230945_ + static + 0 o p_230946_ + 1 o p_230947_ + 2 o p_230948_ + 3 o p_230949_ + 4 o p_230950_ + a (Lcom/mojang/brigadier/arguments/ArgumentType;)Ljava/lang/String; m_230951_ + static + 0 o p_230952_ + b (Lcom/mojang/brigadier/arguments/ArgumentType;)Z m_230960_ + static + 0 o p_230961_ + b (Ljava/lang/String;)Ljava/lang/String; m_230962_ + static + 0 o p_230963_ + b ()V m_82138_ + static +dt$1 net/minecraft/commands/Commands$1 + a f_254752_ + (Lhg$b;)V + 0 o p_256249_ + a (Lacp;)Lhg; m_227133_ + 0 o p_256244_ +dt$1$1 net/minecraft/commands/Commands$1$1 + a f_254699_ + b f_254721_ + (Ldt$1;Lhg;Lhg$c;)V + 0 o p_255951_ + 1 o p_255755_ + 2 o p_256592_ + a (Lanl;)Ljava/util/Optional; m_254901_ + 0 o p_255936_ + a (Lhg$c;Lanl;)Lhi$c; m_255396_ + static + 0 o p_256137_ + 1 o p_255853_ + b (Lanl;)Lhi$c; m_254956_ + 0 o p_255953_ +dt$a net/minecraft/commands/Commands$CommandSelection + a ALL + b DEDICATED + c INTEGRATED + d f_82144_ + e f_82145_ + f $VALUES + ()V + static + (Ljava/lang/String;IZZ)V + 0 o p_82149_ + 1 o p_82150_ + 2 o p_82151_ + 3 o p_82152_ + a ()[Ldt$a; m_165687_ + static + valueOf (Ljava/lang/String;)Ldt$a; valueOf + static + 0 o p_82158_ + values ()[Ldt$a; values + static +dt$b net/minecraft/commands/Commands$ParseFunction + parse (Lcom/mojang/brigadier/StringReader;)V m_82160_ + 0 o p_82161_ +dta net/minecraft/world/level/levelgen/structure/pools/EmptyPoolElement + a f_210174_ + b f_210175_ + ()V + static + ()V + a (Ldvu;Lgu;Lcvz;)Ldrs; m_214015_ + 0 o p_227172_ + 1 o p_227173_ + 2 o p_227174_ + a (Ldvu;Lcng;Lcne;Lddy;Lgu;Lgu;Lcvz;Ldrs;Lapf;Z)Z m_213695_ + 0 o p_227158_ + 1 o p_227159_ + 2 o p_227160_ + 3 o p_227161_ + 4 o p_227162_ + 5 o p_227163_ + 6 o p_227164_ + 7 o p_227165_ + 8 o p_227166_ + 9 o p_227167_ + a (Ldvu;Lcvz;)Lhz; m_213577_ + 0 o p_227169_ + 1 o p_227170_ + a (Ldvu;Lgu;Lcvz;Lapf;)Ljava/util/List; m_213638_ + 0 o p_227176_ + 1 o p_227177_ + 2 o p_227178_ + 3 o p_227179_ + a ()Ldti; m_207234_ + b ()Ldta; m_210202_ + static + toString ()Ljava/lang/String; toString +dtb net/minecraft/world/level/levelgen/structure/pools/FeaturePoolElement + a f_210204_ + b f_210205_ + c f_210206_ + ()V + static + (Lhe;Ldtj$a;)V + 0 o p_210209_ + 1 o p_210210_ + a (Ldvu;Lgu;Lcvz;)Ldrs; m_214015_ + 0 o p_227195_ + 1 o p_227196_ + 2 o p_227197_ + a (Ldvu;Lcng;Lcne;Lddy;Lgu;Lgu;Lcvz;Ldrs;Lapf;Z)Z m_213695_ + 0 o p_227181_ + 1 o p_227182_ + 2 o p_227183_ + 3 o p_227184_ + 4 o p_227185_ + 5 o p_227186_ + 6 o p_227187_ + 7 o p_227188_ + 8 o p_227189_ + 9 o p_227190_ + a (Ldvu;Lcvz;)Lhz; m_213577_ + 0 o p_227192_ + 1 o p_227193_ + a (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; m_210212_ + static + 0 o p_210213_ + a (Ldvu;Lgu;Lcvz;Lapf;)Ljava/util/List; m_213638_ + 0 o p_227199_ + 1 o p_227200_ + 2 o p_227201_ + 3 o p_227202_ + a ()Ldti; m_207234_ + a (Ldtb;)Lhe; m_210214_ + static + 0 o p_210215_ + b ()Lqr; m_210239_ + toString ()Ljava/lang/String; toString +dtc net/minecraft/world/level/levelgen/structure/pools/JigsawJunction + a f_210241_ + b f_210242_ + c f_210243_ + d f_210244_ + e f_210245_ + (IIIILdtj$a;)V + 0 o p_210247_ + 1 o p_210248_ + 2 o p_210249_ + 3 o p_210250_ + 4 o p_210251_ + a (Lcom/mojang/serialization/DynamicOps;)Lcom/mojang/serialization/Dynamic; m_210255_ + 0 o p_210256_ + a (Lcom/mojang/serialization/Dynamic;)Ldtc; m_210253_ + static + 0 o p_210254_ + a ()I m_210252_ + b ()I m_210257_ + c ()I m_210258_ + d ()I m_210259_ + e ()Ldtj$a; m_210260_ + equals (Ljava/lang/Object;)Z equals + 0 o p_210262_ + hashCode ()I hashCode + toString ()Ljava/lang/String; toString +dtd net/minecraft/world/level/levelgen/structure/pools/JigsawPlacement + a f_210265_ + ()V + static + ()V + a (Laif;Lhe;Lacq;ILgu;Z)Z m_227203_ + static + 0 o p_227204_ + 1 o p_227205_ + 2 o p_227206_ + 3 o p_227207_ + 4 o p_227208_ + 5 o p_227209_ + a (Ldrw;IIIIILdrs;Ldsa$a;ZLddy;Ldvu;Lcmo;Ldij;Lhr;Ldss;)V m_227222_ + static + 0 o p_227223_ + 1 o p_227224_ + 2 o p_227225_ + 3 o p_227226_ + 4 o p_227227_ + 5 o p_227228_ + 6 o p_227229_ + 7 o p_227230_ + 8 o p_227231_ + 9 o p_227232_ + 10 o p_227233_ + 11 o p_227234_ + 12 o p_227235_ + 13 o p_227236_ + 14 o p_227237_ + a (Lhe;)Z m_227254_ + static + 0 o p_227255_ + a (Ldth;Lacq;Lgu;Lcvz;Ldvu;Ldij;)Ljava/util/Optional; m_227247_ + static + 0 o p_227248_ + 1 o p_227249_ + 2 o p_227250_ + 3 o p_227251_ + 4 o p_227252_ + 5 o p_227253_ + a (Lacp;)Ljava/lang/String; m_245026_ + static + 0 o p_248484_ + a (Ldhy;IZLddy;Ldvu;Lcmo;Lapf;Lhr;Ldrw;Ljava/util/List;Lefb;)V m_227210_ + static + 0 o p_227211_ + 1 o p_227212_ + 2 o p_227213_ + 3 o p_227214_ + 4 o p_227215_ + 5 o p_227216_ + 6 o p_227217_ + 7 o p_227218_ + 8 o p_227219_ + 9 o p_227220_ + 10 o p_227221_ + a (Ldsa$a;Lhe;Ljava/util/Optional;ILgu;ZLjava/util/Optional;I)Ljava/util/Optional; m_227238_ + static + 0 o p_227239_ + 1 o p_227240_ + 2 o p_227241_ + 3 o p_227242_ + 4 o p_227243_ + 5 o p_227244_ + 6 o p_227245_ + 7 o p_227246_ +dtd$a net/minecraft/world/level/levelgen/structure/pools/JigsawPlacement$PieceState + a f_210307_ + b f_210308_ + c f_210309_ + (Ldrw;Lorg/apache/commons/lang3/mutable/MutableObject;I)V + 0 o p_210311_ + 1 o p_210312_ + 2 o p_210313_ +dtd$b net/minecraft/world/level/levelgen/structure/pools/JigsawPlacement$Placer + a f_210314_ + b f_210315_ + c f_210317_ + d f_227256_ + e f_210319_ + f f_210320_ + g f_210321_ + (Lhr;ILddy;Ldvu;Ljava/util/List;Lapf;)V + 0 o p_227258_ + 1 o p_227259_ + 2 o p_227260_ + 3 o p_227261_ + 4 o p_227262_ + 5 o p_227263_ + a (Ldrs;Ldvt$c;)I m_254828_ + 0 o p_255597_ + 1 o p_255598_ + a (Ldvt$c;)Lacp; m_254924_ + static + 0 o p_256491_ + a (Lhe;)Ljava/lang/Integer; m_254831_ + 0 o p_255601_ + a (Lacp;)Ljava/lang/String; m_254829_ + static + 0 o p_255599_ + a (Ldrw;Lorg/apache/commons/lang3/mutable/MutableObject;IZLcmo;Ldhy;)V m_227264_ + 0 o p_227265_ + 1 o p_227266_ + 2 o p_227267_ + 3 o p_227268_ + 4 o p_227269_ + 5 o p_227270_ + b (Lhe;)Ljava/lang/Integer; m_254827_ + 0 o p_255596_ + c (Lhe;)Lhe; m_254830_ + static + 0 o p_255600_ +dte net/minecraft/world/level/levelgen/structure/pools/LegacySinglePoolElement + a f_210345_ + ()V + static + (Lcom/mojang/datafixers/util/Either;Lhe;Ldtj$a;)V + 0 o p_210348_ + 1 o p_210349_ + 2 o p_210350_ + a (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; m_210356_ + static + 0 o p_210357_ + a (Lcvz;Ldrs;Z)Ldvp; m_207169_ + 0 o p_210353_ + 1 o p_210354_ + 2 o p_210355_ + a ()Ldti; m_207234_ + toString ()Ljava/lang/String; toString +dtf net/minecraft/world/level/levelgen/structure/pools/ListPoolElement + a f_210359_ + b f_210360_ + ()V + static + (Ljava/util/List;Ldtj$a;)V + 0 o p_210363_ + 1 o p_210364_ + a (Ldvu;Lgu;Lcvz;Ldth;)Ldrs; m_227294_ + static + 0 o p_227295_ + 1 o p_227296_ + 2 o p_227297_ + 3 o p_227298_ + a ()Ldti; m_207234_ + a (Ldtf;)Ljava/util/List; m_210368_ + static + 0 o p_210369_ + a (Ldtj$a;Ldth;)V m_210374_ + static + 0 o p_210375_ + 1 o p_210376_ + a (Ldvu;Lgu;Lcvz;)Ldrs; m_214015_ + 0 o p_227286_ + 1 o p_227287_ + 2 o p_227288_ + a (Ldvu;Lcng;Lcne;Lddy;Lgu;Lgu;Lcvz;Ldrs;Lapf;Z)Z m_213695_ + 0 o p_227272_ + 1 o p_227273_ + 2 o p_227274_ + 3 o p_227275_ + 4 o p_227276_ + 5 o p_227277_ + 6 o p_227278_ + 7 o p_227279_ + 8 o p_227280_ + 9 o p_227281_ + a (Ldvu;Lcvz;)Lhz; m_213577_ + 0 o p_227283_ + 1 o p_227284_ + a (Ldth;)Z m_210370_ + static + 0 o p_210371_ + a (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; m_210366_ + static + 0 o p_210367_ + a (Ldvu;Lgu;Lcvz;Lapf;)Ljava/util/List; m_213638_ + 0 o p_227290_ + 1 o p_227291_ + 2 o p_227292_ + 3 o p_227293_ + a (Ldtj$a;)Ldth; m_207247_ + 0 o p_210373_ + b ()Ljava/lang/IllegalStateException; m_210405_ + static + b (Ldtj$a;)V m_210406_ + 0 o p_210407_ + toString ()Ljava/lang/String; toString +dtg net/minecraft/world/level/levelgen/structure/pools/SinglePoolElement + a f_210409_ + b f_210410_ + c f_210411_ + d f_210412_ + ()V + static + (Lcom/mojang/datafixers/util/Either;Lhe;Ldtj$a;)V + 0 o p_210415_ + 1 o p_210416_ + 2 o p_210417_ + a (Ldtg;)Lcom/mojang/datafixers/util/Either; m_210430_ + static + 0 o p_210431_ + a (Lcom/mojang/datafixers/util/Either;Lcom/mojang/serialization/DynamicOps;Ljava/lang/Object;)Lcom/mojang/serialization/DataResult; m_210424_ + static + 0 o p_210425_ + 1 o p_210426_ + 2 o p_210427_ + a (Ldvu;)Ldvt; m_227299_ + 0 o p_227300_ + a ()Ldti; m_207234_ + a (Ldvu;Lgu;Lcvz;Z)Ljava/util/List; m_227324_ + 0 o p_227325_ + 1 o p_227326_ + 2 o p_227327_ + 3 o p_227328_ + a (Ldvu;Lgu;Lcvz;)Ldrs; m_214015_ + 0 o p_227316_ + 1 o p_227317_ + 2 o p_227318_ + a (Ldvu;Lcng;Lcne;Lddy;Lgu;Lgu;Lcvz;Ldrs;Lapf;Z)Z m_213695_ + 0 o p_227302_ + 1 o p_227303_ + 2 o p_227304_ + 3 o p_227305_ + 4 o p_227306_ + 5 o p_227307_ + 6 o p_227308_ + 7 o p_227309_ + 8 o p_227310_ + 9 o p_227311_ + a (Ldvu;Lcvz;)Lhz; m_213577_ + 0 o p_227313_ + 1 o p_227314_ + a (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; m_210428_ + static + 0 o p_210429_ + a (Ldvu;Lgu;Lcvz;Lapf;)Ljava/util/List; m_213638_ + 0 o p_227320_ + 1 o p_227321_ + 2 o p_227322_ + 3 o p_227323_ + a (Lcvz;Ldrs;Z)Ldvp; m_207169_ + 0 o p_210421_ + 1 o p_210422_ + 2 o p_210423_ + b ()Lcom/mojang/serialization/codecs/RecordCodecBuilder; m_210462_ + static + b (Ldtg;)Lhe; m_210463_ + static + 0 o p_210464_ + c ()Lcom/mojang/serialization/codecs/RecordCodecBuilder; m_210465_ + static + h ()Ljava/lang/String; m_274296_ + static + toString ()Ljava/lang/String; toString +dth net/minecraft/world/level/levelgen/structure/pools/StructurePoolElement + a f_254734_ + b f_210467_ + e f_210468_ + ()V + static + (Ldtj$a;)V + 0 o p_210471_ + a (Lhe;Ldtj$a;)Ldtb; m_210504_ + static + 0 o p_210505_ + 1 o p_210506_ + a (Ljava/lang/String;)Ljava/util/function/Function; m_210507_ + static + 0 o p_210508_ + a (Lcmn;Ldvt$c;Lgu;Lcvz;Lapf;Ldrs;)V m_227329_ + 0 o p_227330_ + 1 o p_227331_ + 2 o p_227332_ + 3 o p_227333_ + 4 o p_227334_ + 5 o p_227335_ + a ()Ldti; m_207234_ + a (Ljava/lang/String;Ldtj$a;)Ldtg; m_254832_ + static + 0 o p_255602_ + 1 o p_255603_ + a (Ljava/util/List;)Ljava/util/function/Function; m_210519_ + static + 0 o p_210520_ + a (Ljava/util/List;Ldtj$a;)Ldtf; m_210521_ + static + 0 o p_210522_ + 1 o p_210523_ + a (Ldvu;Lgu;Lcvz;)Ldrs; m_214015_ + 0 o p_227348_ + 1 o p_227349_ + 2 o p_227350_ + a (Ldvu;Lcng;Lcne;Lddy;Lgu;Lgu;Lcvz;Ldrs;Lapf;Z)Z m_213695_ + 0 o p_227336_ + 1 o p_227337_ + 2 o p_227338_ + 3 o p_227339_ + 4 o p_227340_ + 5 o p_227341_ + 6 o p_227342_ + 7 o p_227343_ + 8 o p_227344_ + 9 o p_227345_ + a (Ldvu;Lcvz;)Lhz; m_213577_ + 0 o p_227346_ + 1 o p_227347_ + a (Ldvu;Lgu;Lcvz;Lapf;)Ljava/util/List; m_213638_ + 0 o p_227351_ + 1 o p_227352_ + 2 o p_227353_ + 3 o p_227354_ + a (Ldtj$a;)Ldth; m_207247_ + 0 o p_210479_ + a (Ljava/lang/String;Lhe;Ldtj$a;)Ldtg; m_210515_ + static + 0 o p_210516_ + 1 o p_210517_ + 2 o p_210518_ + a (Lhe;)Ljava/util/function/Function; m_210502_ + static + 0 o p_210503_ + a (Ldtj$a;Ljava/util/function/Function;)Ldth; m_210480_ + static + 0 o p_210481_ + 1 o p_210482_ + a (Ljava/lang/String;Lhe;)Ljava/util/function/Function; m_210512_ + static + 0 o p_210513_ + 1 o p_210514_ + b (Ldtj$a;)Ldta; m_210524_ + static + 0 o p_210525_ + b (Ljava/lang/String;Lhe;Ldtj$a;)Ldte; m_210534_ + static + 0 o p_210535_ + 1 o p_210536_ + 2 o p_210537_ + b (Ljava/lang/String;Ldtj$a;)Ldte; m_254833_ + static + 0 o p_255604_ + 1 o p_255605_ + b (Ljava/lang/String;Lhe;)Ljava/util/function/Function; m_210531_ + static + 0 o p_210532_ + 1 o p_210533_ + b (Ljava/lang/String;)Ljava/util/function/Function; m_210526_ + static + 0 o p_210527_ + d ()Lcom/mojang/serialization/codecs/RecordCodecBuilder; m_210538_ + static + e ()Ldtj$a; m_210539_ + f ()I m_210540_ + g ()Ljava/util/function/Function; m_210541_ + static +dti net/minecraft/world/level/levelgen/structure/pools/StructurePoolElementType + a f_210542_ + b f_210543_ + c f_210544_ + d f_210545_ + e f_210546_ + ()V + static + a (Lcom/mojang/serialization/Codec;)Lcom/mojang/serialization/Codec; m_210548_ + static + 0 o p_210549_ + a (Ljava/lang/String;Lcom/mojang/serialization/Codec;)Ldti; m_210550_ + static + 0 o p_210551_ + 1 o p_210552_ + codec ()Lcom/mojang/serialization/Codec; m_210553_ +dtj net/minecraft/world/level/levelgen/structure/pools/StructureTemplatePool + a f_210554_ + b f_210555_ + c f_210557_ + d f_254652_ + e f_210559_ + f f_210560_ + g f_210561_ + h f_210562_ + ()V + static + (Lhe;Ljava/util/List;)V + 0 o p_255747_ + 1 o p_255919_ + (Lhe;Ljava/util/List;Ldtj$a;)V + 0 o p_255795_ + 1 o p_256083_ + 2 o p_255642_ + a ()Lhe; m_254935_ + a (Lapf;)Ldth; m_227355_ + 0 o p_227356_ + a (Ldtj;)Ljava/util/List; m_210578_ + static + 0 o p_210579_ + a (Ldth;)Z m_210576_ + static + 0 o p_210577_ + a (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; m_254834_ + static + 0 o p_255606_ + a (Ldvu;)I m_227357_ + 0 o p_227358_ + a (Ldvu;Ldth;)I m_227359_ + static + 0 o p_227360_ + 1 o p_227361_ + b (Lapf;)Ljava/util/List; m_227362_ + 0 o p_227363_ + b ()I m_210590_ +dtj$a net/minecraft/world/level/levelgen/structure/pools/StructureTemplatePool$Projection + a TERRAIN_MATCHING + b RIGID + c f_210593_ + d f_210595_ + e f_210596_ + f $VALUES + ()V + static + (Ljava/lang/String;ILjava/lang/String;Lcom/google/common/collect/ImmutableList;)V + 0 o p_210600_ + 1 o p_210601_ + 2 o p_210602_ + 3 o p_210603_ + a (Ljava/lang/String;)Ldtj$a; m_210607_ + static + 0 o p_210608_ + a ()Ljava/lang/String; m_210604_ + b ()Lcom/google/common/collect/ImmutableList; m_210609_ + c ()Ljava/lang/String; m_7912_ + d ()[Ldtj$a; m_210611_ + static + valueOf (Ljava/lang/String;)Ldtj$a; valueOf + static + 0 o p_210613_ + values ()[Ldtj$a; values + static +dtk net/minecraft/world/level/levelgen/structure/pools/package-info +dtl net/minecraft/world/level/levelgen/structure/structures/BuriedTreasurePieces + ()V +dtl$a net/minecraft/world/level/levelgen/structure/structures/BuriedTreasurePieces$BuriedTreasurePiece + (Lgu;)V + 0 o p_227366_ + (Lqr;)V + 0 o p_227368_ + a (Lcng;Lcne;Lddy;Lapf;Ldrs;Lclt;Lgu;)V m_213694_ + 0 o p_227370_ + 1 o p_227371_ + 2 o p_227372_ + 3 o p_227373_ + 4 o p_227374_ + 5 o p_227375_ + 6 o p_227376_ + a (Ldsq;Lqr;)V m_183620_ + 0 o p_227378_ + 1 o p_227379_ + b (Ldcb;)Z m_227380_ + 0 o p_227381_ +dtm net/minecraft/world/level/levelgen/structure/structures/BuriedTreasureStructure + d f_227382_ + ()V + static + (Ldsa$c;)V + 0 o p_227385_ + a (Ldss;Ldsa$a;)V m_227391_ + static + 0 o p_227392_ + 1 o p_227393_ + a (Ldsa$a;Ldss;)V m_227388_ + static + 0 o p_227389_ + 1 o p_227390_ + a (Ldsa$a;)Ljava/util/Optional; m_214086_ + 0 o p_227387_ + e ()Ldsj; m_213658_ +dtn net/minecraft/world/level/levelgen/structure/structures/DesertPyramidPiece + h f_227395_ + i f_227396_ + j f_227397_ + k f_271477_ + l f_278492_ + (Lapf;II)V + 0 o p_227399_ + 1 o p_227400_ + 2 o p_227401_ + (Lqr;)V + 0 o p_227403_ + a (Lcng;Ldrs;IIIII)V m_271833_ + 0 o p_273438_ + 1 o p_273058_ + 2 o p_272638_ + 3 o p_272826_ + 4 o p_273026_ + 5 o p_272750_ + 6 o p_272639_ + a (Lcng;Ldrs;)V m_272053_ + 0 o p_272769_ + 1 o p_273155_ + a (IIIIII)V m_278669_ + 0 o p_279483_ + 1 o p_279321_ + 2 o p_279271_ + 3 o p_279471_ + 4 o p_279229_ + 5 o p_279111_ + a (Lcng;Lcne;Lddy;Lapf;Ldrs;Lclt;Lgu;)V m_213694_ + 0 o p_227405_ + 1 o p_227406_ + 2 o p_227407_ + 3 o p_227408_ + 4 o p_227409_ + 5 o p_227410_ + 6 o p_227411_ + a (Ldsq;Lqr;)V m_183620_ + 0 o p_227413_ + 1 o p_227414_ + a (Lgu;Lcng;Ldrs;)V m_271901_ + 0 o p_272997_ + 1 o p_272699_ + 2 o p_273559_ + a (Lcng;IIILdrs;)V m_271881_ + 0 o p_272965_ + 1 o p_272618_ + 2 o p_273415_ + 3 o p_273110_ + 4 o p_272645_ + b (Lgu;Lcng;Ldrs;)V m_272212_ + 0 o p_272733_ + 1 o p_273390_ + 2 o p_273517_ + b ()Ljava/util/List; m_271942_ + c (III)V m_278861_ + 0 o p_279401_ + 1 o p_279451_ + 2 o p_279265_ + c ()Lgu; m_278617_ +dto net/minecraft/world/level/levelgen/structure/structures/DesertPyramidStructure + d f_227415_ + ()V + static + (Ldsa$c;)V + 0 o p_227418_ + a (Lcng;Lcne;Lddy;Lapf;Ldrs;Lclt;Ldsp;)V m_214110_ + 0 o p_273644_ + 1 o p_272615_ + 2 o p_273655_ + 3 o p_272939_ + 4 o p_273179_ + 5 o p_273334_ + 6 o p_273575_ + a (Lgu;Lczr;)V m_276758_ + static + 0 o p_277327_ + 1 o p_277328_ + a (Ldrs;Lcng;Lgu;)V m_278858_ + static + 0 o p_279472_ + 1 o p_279193_ + 2 o p_279136_ + e ()Ldsj; m_213658_ +dtp net/minecraft/world/level/levelgen/structure/structures/EndCityPieces + a f_227420_ + b f_227421_ + c f_227422_ + d f_227423_ + e f_227424_ + f f_227425_ + g f_227426_ + ()V + static + ()V + a (Ljava/util/List;Ldtp$a;)Ldtp$a; m_227450_ + static + 0 o p_227451_ + 1 o p_227452_ + a (Ldvu;Ldtp$b;ILdtp$a;Lgu;Ljava/util/List;Lapf;)Z m_227436_ + static + 0 o p_227437_ + 1 o p_227438_ + 2 o p_227439_ + 3 o p_227440_ + 4 o p_227441_ + 5 o p_227442_ + 6 o p_227443_ + a (Ldvu;Ldtp$a;Lgu;Ljava/lang/String;Lcvz;Z)Ldtp$a; m_227429_ + static + 0 o p_227430_ + 1 o p_227431_ + 2 o p_227432_ + 3 o p_227433_ + 4 o p_227434_ + 5 o p_227435_ + a (Ldvu;Lgu;Lcvz;Ljava/util/List;Lapf;)V m_227444_ + static + 0 o p_227445_ + 1 o p_227446_ + 2 o p_227447_ + 3 o p_227448_ + 4 o p_227449_ +dtp$1 net/minecraft/world/level/levelgen/structure/structures/EndCityPieces$1 + ()V + a ()V m_213717_ + a (Ldvu;ILdtp$a;Lgu;Ljava/util/List;Lapf;)Z m_214120_ + 0 o p_227456_ + 1 o p_227457_ + 2 o p_227458_ + 3 o p_227459_ + 4 o p_227460_ + 5 o p_227461_ +dtp$2 net/minecraft/world/level/levelgen/structure/structures/EndCityPieces$2 + ()V + a ()V m_213717_ + a (Ldvu;ILdtp$a;Lgu;Ljava/util/List;Lapf;)Z m_214120_ + 0 o p_227465_ + 1 o p_227466_ + 2 o p_227467_ + 3 o p_227468_ + 4 o p_227469_ + 5 o p_227470_ +dtp$3 net/minecraft/world/level/levelgen/structure/structures/EndCityPieces$3 + a f_227471_ + ()V + a ()V m_213717_ + a (Ldvu;ILdtp$a;Lgu;Ljava/util/List;Lapf;)Z m_214120_ + 0 o p_227475_ + 1 o p_227476_ + 2 o p_227477_ + 3 o p_227478_ + 4 o p_227479_ + 5 o p_227480_ +dtp$4 net/minecraft/world/level/levelgen/structure/structures/EndCityPieces$4 + ()V + a ()V m_213717_ + a (Ldvu;ILdtp$a;Lgu;Ljava/util/List;Lapf;)Z m_214120_ + 0 o p_227484_ + 1 o p_227485_ + 2 o p_227486_ + 3 o p_227487_ + 4 o p_227488_ + 5 o p_227489_ +dtp$a net/minecraft/world/level/levelgen/structure/structures/EndCityPieces$EndCityPiece + (Ldvu;Ljava/lang/String;Lgu;Lcvz;Z)V + 0 o p_227491_ + 1 o p_227492_ + 2 o p_227493_ + 3 o p_227494_ + 4 o p_227495_ + (Ldvu;Lqr;)V + 0 o p_227497_ + 1 o p_227498_ + a (Ljava/lang/String;)Lacq; m_227502_ + static + 0 o p_227503_ + a (Ldsq;Lqr;)V m_183620_ + 0 o p_227500_ + 1 o p_227501_ + a (Lqr;Lacq;)Ldvp; m_227510_ + static + 0 o p_227511_ + 1 o p_227512_ + a (ZLcvz;)Ldvp; m_227513_ + static + 0 o p_227514_ + 1 o p_227515_ + a (Ljava/lang/String;Lgu;Lcnb;Lapf;Ldrs;)V m_213704_ + 0 o p_227505_ + 1 o p_227506_ + 2 o p_227507_ + 3 o p_227508_ + 4 o p_227509_ + b ()Lacq; m_142415_ +dtp$b net/minecraft/world/level/levelgen/structure/structures/EndCityPieces$SectionGenerator + a ()V m_213717_ + a (Ldvu;ILdtp$a;Lgu;Ljava/util/List;Lapf;)Z m_214120_ + 0 o p_227517_ + 1 o p_227518_ + 2 o p_227519_ + 3 o p_227520_ + 4 o p_227521_ + 5 o p_227522_ +dtq net/minecraft/world/level/levelgen/structure/structures/EndCityStructure + d f_227523_ + ()V + static + (Ldsa$c;)V + 0 o p_227526_ + a (Lgu;Lcvz;Ldsa$a;Ldss;)V m_227534_ + 0 o p_227535_ + 1 o p_227536_ + 2 o p_227537_ + 3 o p_227538_ + a (Ldss;Lgu;Lcvz;Ldsa$a;)V m_227529_ + 0 o p_227530_ + 1 o p_227531_ + 2 o p_227532_ + 3 o p_227533_ + a (Ldsa$a;)Ljava/util/Optional; m_214086_ + 0 o p_227528_ + e ()Ldsj; m_213658_ +dtr net/minecraft/world/level/levelgen/structure/structures/IglooPieces + a f_227540_ + b f_227541_ + c f_227542_ + d f_227543_ + e f_227544_ + f f_227545_ + ()V + static + ()V + a (Ldvu;Lgu;Lcvz;Ldsf;Lapf;)V m_227548_ + static + 0 o p_227549_ + 1 o p_227550_ + 2 o p_227551_ + 3 o p_227552_ + 4 o p_227553_ +dtr$a net/minecraft/world/level/levelgen/structure/structures/IglooPieces$IglooPiece + (Ldvu;Lqr;)V + 0 o p_227561_ + 1 o p_227562_ + (Ldvu;Lacq;Lgu;Lcvz;I)V + 0 o p_227555_ + 1 o p_227556_ + 2 o p_227557_ + 3 o p_227558_ + 4 o p_227559_ + a (Lcvz;Lacq;)Ldvp; m_227575_ + static + 0 o p_227576_ + 1 o p_227577_ + a (Lcng;Lcne;Lddy;Lapf;Ldrs;Lclt;Lgu;)V m_213694_ + 0 o p_227568_ + 1 o p_227569_ + 2 o p_227570_ + 3 o p_227571_ + 4 o p_227572_ + 5 o p_227573_ + 6 o p_227574_ + a (Lacq;Lgu;I)Lgu; m_227563_ + static + 0 o p_227564_ + 1 o p_227565_ + 2 o p_227566_ + a (Ldsq;Lqr;)V m_183620_ + 0 o p_227579_ + 1 o p_227580_ + a (Lqr;Lacq;)Ldvp; m_227587_ + static + 0 o p_227588_ + 1 o p_227589_ + a (Ljava/lang/String;Lgu;Lcnb;Lapf;Ldrs;)V m_213704_ + 0 o p_227582_ + 1 o p_227583_ + 2 o p_227584_ + 3 o p_227585_ + 4 o p_227586_ +dts net/minecraft/world/level/levelgen/structure/structures/IglooStructure + d f_227590_ + ()V + static + (Ldsa$c;)V + 0 o p_227593_ + a (Ldss;Ldsa$a;)V m_227599_ + 0 o p_227600_ + 1 o p_227601_ + a (Ldsa$a;Ldss;)V m_227596_ + 0 o p_227597_ + 1 o p_227598_ + a (Ldsa$a;)Ljava/util/Optional; m_214086_ + 0 o p_227595_ + e ()Ldsj; m_213658_ +dtt net/minecraft/world/level/levelgen/structure/structures/JigsawStructure + d f_227603_ + e f_227604_ + f f_227605_ + g f_227606_ + h f_227607_ + i f_227608_ + j f_227609_ + k f_227610_ + l f_227611_ + ()V + static + (Ldsa$c;Lhe;ILdqh;Z)V + 0 o p_227614_ + 1 o p_227615_ + 2 o p_227616_ + 3 o p_227617_ + 4 o p_227618_ + (Ldsa$c;Lhe;ILdqh;ZLdhk$a;)V + 0 o p_227620_ + 1 o p_227621_ + 2 o p_227622_ + 3 o p_227623_ + 4 o p_227624_ + 5 o p_227625_ + (Ldsa$c;Lhe;Ljava/util/Optional;ILdqh;ZLjava/util/Optional;I)V + 0 o p_227627_ + 1 o p_227628_ + 2 o p_227629_ + 3 o p_227630_ + 4 o p_227631_ + 5 o p_227632_ + 6 o p_227633_ + 7 o p_227634_ + a (Ldtt;)Lcom/mojang/serialization/DataResult; m_286028_ + static + 0 o p_286886_ + a (Ldsa$a;)Ljava/util/Optional; m_214086_ + 0 o p_227636_ + b (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; m_227639_ + static + 0 o p_227640_ + b (Ldtt;)Ljava/lang/Integer; m_227641_ + static + 0 o p_227642_ + c (Ldtt;)Ljava/util/Optional; m_227643_ + static + 0 o p_227644_ + d (Ldtt;)Ljava/lang/Boolean; m_227645_ + static + 0 o p_227646_ + e ()Ldsj; m_213658_ + e (Ldtt;)Ldqh; m_227648_ + static + 0 o p_227649_ + f (Ldtt;)Ljava/lang/Integer; m_227651_ + static + 0 o p_227652_ + f ()Ljava/lang/String; m_274297_ + static + g (Ldtt;)Ljava/util/Optional; m_227653_ + static + 0 o p_227654_ + h (Ldtt;)Lhe; m_227655_ + static + 0 o p_227656_ +dtt$1 net/minecraft/world/level/levelgen/structure/structures/JigsawStructure$1 + a f_227657_ + ()V + static +dtu net/minecraft/world/level/levelgen/structure/structures/JungleTemplePiece + h f_227659_ + i f_227660_ + j f_227661_ + k f_227662_ + l f_227663_ + m f_227664_ + n f_227665_ + ()V + static + (Lapf;II)V + 0 o p_227668_ + 1 o p_227669_ + 2 o p_227670_ + (Lqr;)V + 0 o p_227672_ + a (Lcng;Lcne;Lddy;Lapf;Ldrs;Lclt;Lgu;)V m_213694_ + 0 o p_227674_ + 1 o p_227675_ + 2 o p_227676_ + 3 o p_227677_ + 4 o p_227678_ + 5 o p_227679_ + 6 o p_227680_ + a (Ldsq;Lqr;)V m_183620_ + 0 o p_227682_ + 1 o p_227683_ +dtu$a net/minecraft/world/level/levelgen/structure/structures/JungleTemplePiece$MossStoneSelector + ()V + a (Lapf;IIIZ)V m_213766_ + 0 o p_227686_ + 1 o p_227687_ + 2 o p_227688_ + 3 o p_227689_ + 4 o p_227690_ +dtv net/minecraft/world/level/levelgen/structure/structures/JungleTempleStructure + d f_227691_ + ()V + static + (Ldsa$c;)V + 0 o p_227694_ + e ()Ldsj; m_213658_ +dtw net/minecraft/world/level/levelgen/structure/structures/MineshaftPieces + a f_227696_ + b f_227697_ + c f_227698_ + d f_227699_ + e f_227700_ + f f_227701_ + g f_227702_ + h f_227703_ + ()V + static + ()V + a (Ldsf;Lapf;IIILha;ILdtx$a;)Ldtw$c; m_227715_ + static + 0 o p_227716_ + 1 o p_227717_ + 2 o p_227718_ + 3 o p_227719_ + 4 o p_227720_ + 5 o p_227721_ + 6 o p_227722_ + 7 o p_227723_ + a (Ldse;Ldsf;Lapf;IIILha;I)Ldtw$c; m_227706_ + static + 0 o p_227707_ + 1 o p_227708_ + 2 o p_227709_ + 3 o p_227710_ + 4 o p_227711_ + 5 o p_227712_ + 6 o p_227713_ + 7 o p_227714_ +dtw$1 net/minecraft/world/level/levelgen/structure/structures/MineshaftPieces$1 + a f_227724_ + ()V + static +dtw$a net/minecraft/world/level/levelgen/structure/structures/MineshaftPieces$MineShaftCorridor + b f_227726_ + c f_227727_ + d f_227728_ + h f_227729_ + (ILapf;Ldrs;Lha;Ldtx$a;)V + 0 o p_227731_ + 1 o p_227732_ + 2 o p_227733_ + 3 o p_227734_ + 4 o p_227735_ + (Lqr;)V + 0 o p_227737_ + a (Lcng;Ldrs;IIII)Z m_227762_ + 0 o p_227763_ + 1 o p_227764_ + 2 o p_227765_ + 3 o p_227766_ + 4 o p_227767_ + 5 o p_227768_ + a (Lcng;Ldrs;III)V m_227756_ + 0 o p_227757_ + 1 o p_227758_ + 2 o p_227759_ + 3 o p_227760_ + 4 o p_227761_ + a (Lcng;Ldcb;Lgu$a;II)V m_227750_ + static + 0 o p_227751_ + 1 o p_227752_ + 2 o p_227753_ + 3 o p_227754_ + 4 o p_227755_ + a (Ldse;Ldsf;Lapf;)V m_214092_ + 0 o p_227795_ + 1 o p_227796_ + 2 o p_227797_ + a (Lcng;Ldrs;IIIIILapf;)V m_227769_ + 0 o p_227770_ + 1 o p_227771_ + 2 o p_227772_ + 3 o p_227773_ + 4 o p_227774_ + 5 o p_227775_ + 6 o p_227776_ + 7 o p_227777_ + a (Lcng;Lcne;Lddy;Lapf;Ldrs;Lclt;Lgu;)V m_213694_ + 0 o p_227743_ + 1 o p_227744_ + 2 o p_227745_ + 3 o p_227746_ + 4 o p_227747_ + 5 o p_227748_ + 6 o p_227749_ + a (Lcmp;Lgu;Ldcb;)Z m_227738_ + 0 o p_227739_ + 1 o p_227740_ + 2 o p_227741_ + a (Ldsq;Lqr;)V m_183620_ + 0 o p_227806_ + 1 o p_227807_ + a (Lcng;Ldrs;Lapf;IIILacq;)Z m_213787_ + 0 o p_227787_ + 1 o p_227788_ + 2 o p_227789_ + 3 o p_227790_ + 4 o p_227791_ + 5 o p_227792_ + 6 o p_227793_ + a (Ldsf;Lapf;IIILha;)Ldrs; m_227798_ + static + 0 o p_227799_ + 1 o p_227800_ + 2 o p_227801_ + 3 o p_227802_ + 4 o p_227803_ + 5 o p_227804_ + a (Lcng;Ldrs;Lapf;FIII)V m_227778_ + 0 o p_227779_ + 1 o p_227780_ + 2 o p_227781_ + 3 o p_227782_ + 4 o p_227783_ + 5 o p_227784_ + 6 o p_227785_ + b (Lcmp;Lgu;Ldcb;)Z m_227808_ + 0 o p_227809_ + 1 o p_227810_ + 2 o p_227811_ + b (Lcng;Ldcb;IIILdrs;)V m_73528_ + 0 o p_227813_ + 1 o p_227814_ + 2 o p_227815_ + 3 o p_227816_ + 4 o p_227817_ + 5 o p_227818_ + c (Lcng;Ldcb;IIILdrs;)V m_227819_ + 0 o p_227820_ + 1 o p_227821_ + 2 o p_227822_ + 3 o p_227823_ + 4 o p_227824_ + 5 o p_227825_ +dtw$b net/minecraft/world/level/levelgen/structure/structures/MineshaftPieces$MineShaftCrossing + b f_227826_ + c f_227827_ + (ILdrs;Lha;Ldtx$a;)V + 0 o p_227829_ + 1 o p_227830_ + 2 o p_227831_ + 3 o p_227832_ + (Lqr;)V + 0 o p_227834_ + a (Lcng;Lcne;Lddy;Lapf;Ldrs;Lclt;Lgu;)V m_213694_ + 0 o p_227836_ + 1 o p_227837_ + 2 o p_227838_ + 3 o p_227839_ + 4 o p_227840_ + 5 o p_227841_ + 6 o p_227842_ + a (Ldsq;Lqr;)V m_183620_ + 0 o p_227862_ + 1 o p_227863_ + a (Lcng;Ldrs;IIII)V m_227843_ + 0 o p_227844_ + 1 o p_227845_ + 2 o p_227846_ + 3 o p_227847_ + 4 o p_227848_ + 5 o p_227849_ + a (Ldsf;Lapf;IIILha;)Ldrs; m_227854_ + static + 0 o p_227855_ + 1 o p_227856_ + 2 o p_227857_ + 3 o p_227858_ + 4 o p_227859_ + 5 o p_227860_ + a (Ldse;Ldsf;Lapf;)V m_214092_ + 0 o p_227851_ + 1 o p_227852_ + 2 o p_227853_ +dtw$c net/minecraft/world/level/levelgen/structure/structures/MineshaftPieces$MineShaftPiece + a f_227864_ + (Ldsr;Lqr;)V + 0 o p_227872_ + 1 o p_227873_ + (Ldsr;ILdtx$a;Ldrs;)V + 0 o p_227867_ + 1 o p_227868_ + 2 o p_227869_ + 3 o p_227870_ + a (Ldsq;Lqr;)V m_183620_ + 0 o p_227898_ + 1 o p_227899_ + a (Lcmp;IIILdrs;)Z m_142085_ + 0 o p_227885_ + 1 o p_227886_ + 2 o p_227887_ + 3 o p_227888_ + 4 o p_227889_ + a (Lcls;Ldrs;IIII)Z m_227874_ + 0 o p_227875_ + 1 o p_227876_ + 2 o p_227877_ + 3 o p_227878_ + 4 o p_227879_ + 5 o p_227880_ + a (Lcmn;Ldrs;)Z m_227881_ + 0 o p_227882_ + 1 o p_227883_ + a (Lcng;Ldrs;Ldcb;III)V m_227890_ + 0 o p_227891_ + 1 o p_227892_ + 2 o p_227893_ + 3 o p_227894_ + 4 o p_227895_ + 5 o p_227896_ +dtw$d net/minecraft/world/level/levelgen/structure/structures/MineshaftPieces$MineShaftRoom + b f_227900_ + (ILapf;IILdtx$a;)V + 0 o p_227902_ + 1 o p_227903_ + 2 o p_227904_ + 3 o p_227905_ + 4 o p_227906_ + (Lqr;)V + 0 o p_227908_ + a (Lcng;Lcne;Lddy;Lapf;Ldrs;Lclt;Lgu;)V m_213694_ + 0 o p_227914_ + 1 o p_227915_ + 2 o p_227916_ + 3 o p_227917_ + 4 o p_227918_ + 5 o p_227919_ + 6 o p_227920_ + a (Lqr;Lrk;)V m_227928_ + static + 0 o p_227929_ + 1 o p_227930_ + a (Ldsq;Lqr;)V m_183620_ + 0 o p_227926_ + 1 o p_227927_ + a (III)V m_6324_ + 0 o p_227910_ + 1 o p_227911_ + 2 o p_227912_ + a (Ldse;Ldsf;Lapf;)V m_214092_ + 0 o p_227922_ + 1 o p_227923_ + 2 o p_227924_ +dtw$e net/minecraft/world/level/levelgen/structure/structures/MineshaftPieces$MineShaftStairs + (ILdrs;Lha;Ldtx$a;)V + 0 o p_227932_ + 1 o p_227933_ + 2 o p_227934_ + 3 o p_227935_ + (Lqr;)V + 0 o p_227937_ + a (Lcng;Lcne;Lddy;Lapf;Ldrs;Lclt;Lgu;)V m_213694_ + 0 o p_227939_ + 1 o p_227940_ + 2 o p_227941_ + 3 o p_227942_ + 4 o p_227943_ + 5 o p_227944_ + 6 o p_227945_ + a (Ldsf;Lapf;IIILha;)Ldrs; m_227950_ + static + 0 o p_227951_ + 1 o p_227952_ + 2 o p_227953_ + 3 o p_227954_ + 4 o p_227955_ + 5 o p_227956_ + a (Ldse;Ldsf;Lapf;)V m_214092_ + 0 o p_227947_ + 1 o p_227948_ + 2 o p_227949_ +dtx net/minecraft/world/level/levelgen/structure/structures/MineshaftStructure + d f_227957_ + e f_227958_ + ()V + static + (Ldsa$c;Ldtx$a;)V + 0 o p_227961_ + 1 o p_227962_ + a (Ldss;Ldsa$a;)I m_227965_ + 0 o p_227966_ + 1 o p_227967_ + a (Ldtx;)Ldtx$a; m_227968_ + static + 0 o p_227969_ + a (Ldsa$a;)Ljava/util/Optional; m_214086_ + 0 o p_227964_ + b (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; m_227970_ + static + 0 o p_227971_ + e ()Ldsj; m_213658_ +dtx$a net/minecraft/world/level/levelgen/structure/structures/MineshaftStructure$Type + a NORMAL + b MESA + c f_227975_ + d f_262747_ + e f_227976_ + f f_227977_ + g f_227978_ + h f_227979_ + i $VALUES + ()V + static + (Ljava/lang/String;ILjava/lang/String;Lcpn;Lcpn;Lcpn;)V + 0 o p_227983_ + 1 o p_227984_ + 2 o p_227985_ + 3 o p_227986_ + 4 o p_227987_ + 5 o p_227988_ + a (I)Ldtx$a; m_227990_ + static + 0 o p_227991_ + a ()Ljava/lang/String; m_227989_ + b ()Ldcb; m_227992_ + c ()Ljava/lang/String; m_7912_ + d ()Ldcb; m_227994_ + e ()Ldcb; m_227995_ + f ()[Ldtx$a; m_227996_ + static + valueOf (Ljava/lang/String;)Ldtx$a; valueOf + static + 0 o p_227998_ + values ()[Ldtx$a; values + static +dty net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces + a f_228000_ + b f_228001_ + c f_228002_ + d f_228003_ + e f_228004_ + ()V + static + ()V + a (Ldty$n;Ldsf;Lapf;IIILha;I)Ldty$m; m_228007_ + static + 0 o p_228008_ + 1 o p_228009_ + 2 o p_228010_ + 3 o p_228011_ + 4 o p_228012_ + 5 o p_228013_ + 6 o p_228014_ + 7 o p_228015_ +dty$1 net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$1 + a f_228016_ + ()V + static +dty$a net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$BridgeCrossing + a f_228018_ + b f_228019_ + c f_228020_ + (Ldsr;Lqr;)V + 0 o p_228030_ + 1 o p_228031_ + (ILdrs;Lha;)V + 0 o p_228026_ + 1 o p_228027_ + 2 o p_228028_ + (IILha;)V + 0 o p_228022_ + 1 o p_228023_ + 2 o p_228024_ + (Lqr;)V + 0 o p_228033_ + a (Ldsf;IIILha;I)Ldty$a; m_228046_ + static + 0 o p_228047_ + 1 o p_228048_ + 2 o p_228049_ + 3 o p_228050_ + 4 o p_228051_ + 5 o p_228052_ + a (Lcng;Lcne;Lddy;Lapf;Ldrs;Lclt;Lgu;)V m_213694_ + 0 o p_228035_ + 1 o p_228036_ + 2 o p_228037_ + 3 o p_228038_ + 4 o p_228039_ + 5 o p_228040_ + 6 o p_228041_ + a (Ldse;Ldsf;Lapf;)V m_214092_ + 0 o p_228043_ + 1 o p_228044_ + 2 o p_228045_ +dty$b net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$BridgeEndFiller + a f_228053_ + b f_228054_ + c f_228055_ + d f_228056_ + (ILapf;Ldrs;Lha;)V + 0 o p_228058_ + 1 o p_228059_ + 2 o p_228060_ + 3 o p_228061_ + (Lqr;)V + 0 o p_228063_ + a (Lcng;Lcne;Lddy;Lapf;Ldrs;Lclt;Lgu;)V m_213694_ + 0 o p_228065_ + 1 o p_228066_ + 2 o p_228067_ + 3 o p_228068_ + 4 o p_228069_ + 5 o p_228070_ + 6 o p_228071_ + a (Ldsq;Lqr;)V m_183620_ + 0 o p_228081_ + 1 o p_228082_ + a (Ldsf;Lapf;IIILha;I)Ldty$b; m_228072_ + static + 0 o p_228073_ + 1 o p_228074_ + 2 o p_228075_ + 3 o p_228076_ + 4 o p_228077_ + 5 o p_228078_ + 6 o p_228079_ +dty$c net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$BridgeStraight + a f_228083_ + b f_228084_ + c f_228085_ + (ILapf;Ldrs;Lha;)V + 0 o p_228087_ + 1 o p_228088_ + 2 o p_228089_ + 3 o p_228090_ + (Lqr;)V + 0 o p_228092_ + a (Lcng;Lcne;Lddy;Lapf;Ldrs;Lclt;Lgu;)V m_213694_ + 0 o p_228094_ + 1 o p_228095_ + 2 o p_228096_ + 3 o p_228097_ + 4 o p_228098_ + 5 o p_228099_ + 6 o p_228100_ + a (Ldsf;Lapf;IIILha;I)Ldty$c; m_228105_ + static + 0 o p_228106_ + 1 o p_228107_ + 2 o p_228108_ + 3 o p_228109_ + 4 o p_228110_ + 5 o p_228111_ + 6 o p_228112_ + a (Ldse;Ldsf;Lapf;)V m_214092_ + 0 o p_228102_ + 1 o p_228103_ + 2 o p_228104_ +dty$d net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$CastleCorridorStairsPiece + a f_228113_ + b f_228114_ + c f_228115_ + (ILdrs;Lha;)V + 0 o p_228117_ + 1 o p_228118_ + 2 o p_228119_ + (Lqr;)V + 0 o p_228121_ + a (Lcng;Lcne;Lddy;Lapf;Ldrs;Lclt;Lgu;)V m_213694_ + 0 o p_228123_ + 1 o p_228124_ + 2 o p_228125_ + 3 o p_228126_ + 4 o p_228127_ + 5 o p_228128_ + 6 o p_228129_ + a (Ldsf;IIILha;I)Ldty$d; m_228134_ + static + 0 o p_228135_ + 1 o p_228136_ + 2 o p_228137_ + 3 o p_228138_ + 4 o p_228139_ + 5 o p_228140_ + a (Ldse;Ldsf;Lapf;)V m_214092_ + 0 o p_228131_ + 1 o p_228132_ + 2 o p_228133_ +dty$e net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$CastleCorridorTBalconyPiece + a f_228141_ + b f_228142_ + c f_228143_ + (ILdrs;Lha;)V + 0 o p_228145_ + 1 o p_228146_ + 2 o p_228147_ + (Lqr;)V + 0 o p_228149_ + a (Lcng;Lcne;Lddy;Lapf;Ldrs;Lclt;Lgu;)V m_213694_ + 0 o p_228151_ + 1 o p_228152_ + 2 o p_228153_ + 3 o p_228154_ + 4 o p_228155_ + 5 o p_228156_ + 6 o p_228157_ + a (Ldsf;IIILha;I)Ldty$e; m_228162_ + static + 0 o p_228163_ + 1 o p_228164_ + 2 o p_228165_ + 3 o p_228166_ + 4 o p_228167_ + 5 o p_228168_ + a (Ldse;Ldsf;Lapf;)V m_214092_ + 0 o p_228159_ + 1 o p_228160_ + 2 o p_228161_ +dty$f net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$CastleEntrance + a f_228169_ + b f_228170_ + c f_228171_ + (ILapf;Ldrs;Lha;)V + 0 o p_228173_ + 1 o p_228174_ + 2 o p_228175_ + 3 o p_228176_ + (Lqr;)V + 0 o p_228178_ + a (Lcng;Lcne;Lddy;Lapf;Ldrs;Lclt;Lgu;)V m_213694_ + 0 o p_228180_ + 1 o p_228181_ + 2 o p_228182_ + 3 o p_228183_ + 4 o p_228184_ + 5 o p_228185_ + 6 o p_228186_ + a (Ldsf;Lapf;IIILha;I)Ldty$f; m_228191_ + static + 0 o p_228192_ + 1 o p_228193_ + 2 o p_228194_ + 3 o p_228195_ + 4 o p_228196_ + 5 o p_228197_ + 6 o p_228198_ + a (Ldse;Ldsf;Lapf;)V m_214092_ + 0 o p_228188_ + 1 o p_228189_ + 2 o p_228190_ +dty$g net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$CastleSmallCorridorCrossingPiece + a f_228199_ + b f_228200_ + c f_228201_ + (ILdrs;Lha;)V + 0 o p_228203_ + 1 o p_228204_ + 2 o p_228205_ + (Lqr;)V + 0 o p_228207_ + a (Lcng;Lcne;Lddy;Lapf;Ldrs;Lclt;Lgu;)V m_213694_ + 0 o p_228209_ + 1 o p_228210_ + 2 o p_228211_ + 3 o p_228212_ + 4 o p_228213_ + 5 o p_228214_ + 6 o p_228215_ + a (Ldse;Ldsf;Lapf;)V m_214092_ + 0 o p_228217_ + 1 o p_228218_ + 2 o p_228219_ + a (Ldsf;IIILha;I)Ldty$g; m_228220_ + static + 0 o p_228221_ + 1 o p_228222_ + 2 o p_228223_ + 3 o p_228224_ + 4 o p_228225_ + 5 o p_228226_ +dty$h net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$CastleSmallCorridorLeftTurnPiece + a f_228227_ + b f_228228_ + c f_228229_ + d f_228230_ + (ILapf;Ldrs;Lha;)V + 0 o p_228232_ + 1 o p_228233_ + 2 o p_228234_ + 3 o p_228235_ + (Lqr;)V + 0 o p_228237_ + a (Lcng;Lcne;Lddy;Lapf;Ldrs;Lclt;Lgu;)V m_213694_ + 0 o p_228239_ + 1 o p_228240_ + 2 o p_228241_ + 3 o p_228242_ + 4 o p_228243_ + 5 o p_228244_ + 6 o p_228245_ + a (Ldsq;Lqr;)V m_183620_ + 0 o p_228259_ + 1 o p_228260_ + a (Ldse;Ldsf;Lapf;)V m_214092_ + 0 o p_228247_ + 1 o p_228248_ + 2 o p_228249_ + a (Ldsf;Lapf;IIILha;I)Ldty$h; m_228250_ + static + 0 o p_228251_ + 1 o p_228252_ + 2 o p_228253_ + 3 o p_228254_ + 4 o p_228255_ + 5 o p_228256_ + 6 o p_228257_ +dty$i net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$CastleSmallCorridorPiece + a f_228261_ + b f_228262_ + c f_228263_ + (ILdrs;Lha;)V + 0 o p_228265_ + 1 o p_228266_ + 2 o p_228267_ + (Lqr;)V + 0 o p_228269_ + a (Lcng;Lcne;Lddy;Lapf;Ldrs;Lclt;Lgu;)V m_213694_ + 0 o p_228271_ + 1 o p_228272_ + 2 o p_228273_ + 3 o p_228274_ + 4 o p_228275_ + 5 o p_228276_ + 6 o p_228277_ + a (Ldsf;IIILha;I)Ldty$i; m_228282_ + static + 0 o p_228283_ + 1 o p_228284_ + 2 o p_228285_ + 3 o p_228286_ + 4 o p_228287_ + 5 o p_228288_ + a (Ldse;Ldsf;Lapf;)V m_214092_ + 0 o p_228279_ + 1 o p_228280_ + 2 o p_228281_ +dty$j net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$CastleSmallCorridorRightTurnPiece + a f_228289_ + b f_228290_ + c f_228291_ + d f_228292_ + (ILapf;Ldrs;Lha;)V + 0 o p_228294_ + 1 o p_228295_ + 2 o p_228296_ + 3 o p_228297_ + (Lqr;)V + 0 o p_228299_ + a (Lcng;Lcne;Lddy;Lapf;Ldrs;Lclt;Lgu;)V m_213694_ + 0 o p_228301_ + 1 o p_228302_ + 2 o p_228303_ + 3 o p_228304_ + 4 o p_228305_ + 5 o p_228306_ + 6 o p_228307_ + a (Ldsq;Lqr;)V m_183620_ + 0 o p_228321_ + 1 o p_228322_ + a (Ldse;Ldsf;Lapf;)V m_214092_ + 0 o p_228309_ + 1 o p_228310_ + 2 o p_228311_ + a (Ldsf;Lapf;IIILha;I)Ldty$j; m_228312_ + static + 0 o p_228313_ + 1 o p_228314_ + 2 o p_228315_ + 3 o p_228316_ + 4 o p_228317_ + 5 o p_228318_ + 6 o p_228319_ +dty$k net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$CastleStalkRoom + a f_228323_ + b f_228324_ + c f_228325_ + (ILdrs;Lha;)V + 0 o p_228327_ + 1 o p_228328_ + 2 o p_228329_ + (Lqr;)V + 0 o p_228331_ + a (Lcng;Lcne;Lddy;Lapf;Ldrs;Lclt;Lgu;)V m_213694_ + 0 o p_228333_ + 1 o p_228334_ + 2 o p_228335_ + 3 o p_228336_ + 4 o p_228337_ + 5 o p_228338_ + 6 o p_228339_ + a (Ldsf;IIILha;I)Ldty$k; m_228344_ + static + 0 o p_228345_ + 1 o p_228346_ + 2 o p_228347_ + 3 o p_228348_ + 4 o p_228349_ + 5 o p_228350_ + a (Ldse;Ldsf;Lapf;)V m_214092_ + 0 o p_228341_ + 1 o p_228342_ + 2 o p_228343_ +dty$l net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$MonsterThrone + a f_228351_ + b f_228352_ + c f_228353_ + d f_228354_ + (ILdrs;Lha;)V + 0 o p_228356_ + 1 o p_228357_ + 2 o p_228358_ + (Lqr;)V + 0 o p_228360_ + a (Ldsf;IIIILha;)Ldty$l; m_228369_ + static + 0 o p_228370_ + 1 o p_228371_ + 2 o p_228372_ + 3 o p_228373_ + 4 o p_228374_ + 5 o p_228375_ + a (Lcng;Lcne;Lddy;Lapf;Ldrs;Lclt;Lgu;)V m_213694_ + 0 o p_228362_ + 1 o p_228363_ + 2 o p_228364_ + 3 o p_228365_ + 4 o p_228366_ + 5 o p_228367_ + 6 o p_228368_ + a (Ldsq;Lqr;)V m_183620_ + 0 o p_228377_ + 1 o p_228378_ +dty$m net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$NetherBridgePiece + (Ldsr;Lqr;)V + 0 o p_228384_ + 1 o p_228385_ + (Ldsr;ILdrs;)V + 0 o p_228380_ + 1 o p_228381_ + 2 o p_228382_ + a (Ldsq;Lqr;)V m_183620_ + 0 o p_228389_ + 1 o p_228390_ + a (Ljava/util/List;)I m_228418_ + 0 o p_228419_ + a (Ldty$q;Ldsf;Lapf;IIILha;IZ)Ldse; m_228391_ + 0 o p_228392_ + 1 o p_228393_ + 2 o p_228394_ + 3 o p_228395_ + 4 o p_228396_ + 5 o p_228397_ + 6 o p_228398_ + 7 o p_228399_ + 8 o p_228400_ + a (Ldrs;)Z m_228386_ + static + 0 o p_228387_ + a (Ldty$q;Ljava/util/List;Ldsf;Lapf;IIILha;I)Ldty$m; m_228408_ + 0 o p_228409_ + 1 o p_228410_ + 2 o p_228411_ + 3 o p_228412_ + 4 o p_228413_ + 5 o p_228414_ + 6 o p_228415_ + 7 o p_228416_ + 8 o p_228417_ + a (Ldty$q;Ldsf;Lapf;IIZ)Ldse; m_228401_ + 0 o p_228402_ + 1 o p_228403_ + 2 o p_228404_ + 3 o p_228405_ + 4 o p_228406_ + 5 o p_228407_ + b (Ldty$q;Ldsf;Lapf;IIZ)Ldse; m_228420_ + 0 o p_228421_ + 1 o p_228422_ + 2 o p_228423_ + 3 o p_228424_ + 4 o p_228425_ + 5 o p_228426_ + c (Ldty$q;Ldsf;Lapf;IIZ)Ldse; m_228427_ + 0 o p_228428_ + 1 o p_228429_ + 2 o p_228430_ + 3 o p_228431_ + 4 o p_228432_ + 5 o p_228433_ +dty$n net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$PieceWeight + a f_228434_ + b f_228435_ + c f_228436_ + d f_228437_ + e f_228438_ + (Ljava/lang/Class;IIZ)V + 0 o p_228444_ + 1 o p_228445_ + 2 o p_228446_ + 3 o p_228447_ + (Ljava/lang/Class;II)V + 0 o p_228440_ + 1 o p_228441_ + 2 o p_228442_ + a ()Z m_228448_ + a (I)Z m_228449_ + 0 o p_228450_ +dty$o net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$RoomCrossing + a f_228451_ + b f_228452_ + c f_228453_ + (ILdrs;Lha;)V + 0 o p_228455_ + 1 o p_228456_ + 2 o p_228457_ + (Lqr;)V + 0 o p_228459_ + a (Lcng;Lcne;Lddy;Lapf;Ldrs;Lclt;Lgu;)V m_213694_ + 0 o p_228461_ + 1 o p_228462_ + 2 o p_228463_ + 3 o p_228464_ + 4 o p_228465_ + 5 o p_228466_ + 6 o p_228467_ + a (Ldsf;IIILha;I)Ldty$o; m_228472_ + static + 0 o p_228473_ + 1 o p_228474_ + 2 o p_228475_ + 3 o p_228476_ + 4 o p_228477_ + 5 o p_228478_ + a (Ldse;Ldsf;Lapf;)V m_214092_ + 0 o p_228469_ + 1 o p_228470_ + 2 o p_228471_ +dty$p net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$StairsRoom + a f_228479_ + b f_228480_ + c f_228481_ + (ILdrs;Lha;)V + 0 o p_228483_ + 1 o p_228484_ + 2 o p_228485_ + (Lqr;)V + 0 o p_228487_ + a (Lcng;Lcne;Lddy;Lapf;Ldrs;Lclt;Lgu;)V m_213694_ + 0 o p_228489_ + 1 o p_228490_ + 2 o p_228491_ + 3 o p_228492_ + 4 o p_228493_ + 5 o p_228494_ + 6 o p_228495_ + a (Ldsf;IIIILha;)Ldty$p; m_228500_ + static + 0 o p_228501_ + 1 o p_228502_ + 2 o p_228503_ + 3 o p_228504_ + 4 o p_228505_ + 5 o p_228506_ + a (Ldse;Ldsf;Lapf;)V m_214092_ + 0 o p_228497_ + 1 o p_228498_ + 2 o p_228499_ +dty$q net/minecraft/world/level/levelgen/structure/structures/NetherFortressPieces$StartPiece + a f_228507_ + b f_228508_ + c f_228509_ + d f_228510_ + (Lapf;II)V + 0 o p_228512_ + 1 o p_228513_ + 2 o p_228514_ + (Lqr;)V + 0 o p_228516_ +dtz net/minecraft/world/level/levelgen/structure/structures/NetherFortressStructure + d f_228517_ + e f_228518_ + ()V + static + (Ldsa$c;)V + 0 o p_228521_ + a (Ldss;Ldsa$a;)V m_228527_ + static + 0 o p_228528_ + 1 o p_228529_ + a (Ldsa$a;Ldss;)V m_228524_ + static + 0 o p_228525_ + 1 o p_228526_ + a (Ldsa$a;)Ljava/util/Optional; m_214086_ + 0 o p_228523_ + e ()Ldsj; m_213658_ +du net/minecraft/commands/SharedSuggestionProvider + A ()Ljava/util/Collection; m_6284_ + a (Ljava/lang/Iterable;Ljava/lang/String;Ljava/lang/String;Ljava/util/function/Function;Ljava/util/function/Consumer;)V m_82938_ + static + 0 o p_82939_ + 1 o p_82940_ + 2 o p_82941_ + 3 o p_82942_ + 4 o p_82943_ + a (Lcom/mojang/brigadier/suggestion/SuggestionsBuilder;Ljava/lang/String;Lacq;)V m_82914_ + static + 0 o p_82915_ + 1 o p_82916_ + 2 o p_82917_ + a (Lcom/mojang/brigadier/context/CommandContext;)Ljava/util/concurrent/CompletableFuture; m_212155_ + 0 o p_212334_ + a ([Ljava/lang/String;Lcom/mojang/brigadier/suggestion/SuggestionsBuilder;)Ljava/util/concurrent/CompletableFuture; m_82967_ + static + 0 o p_82968_ + 1 o p_82969_ + a (Lacp;Ldu$a;Lcom/mojang/brigadier/suggestion/SuggestionsBuilder;Lcom/mojang/brigadier/context/CommandContext;)Ljava/util/concurrent/CompletableFuture; m_212095_ + 0 o p_212339_ + 1 o p_212340_ + 2 o p_212341_ + 3 o p_212342_ + a (Ljava/lang/Iterable;Lcom/mojang/brigadier/suggestion/SuggestionsBuilder;Ljava/util/function/Function;Ljava/util/function/Function;)Ljava/util/concurrent/CompletableFuture; m_82933_ + static + 0 o p_82934_ + 1 o p_82935_ + 2 o p_82936_ + 3 o p_82937_ + a (Lcom/mojang/brigadier/suggestion/SuggestionsBuilder;Ljava/util/function/Function;Ljava/util/function/Function;Ljava/lang/Object;)V m_82918_ + static + 0 o p_82919_ + 1 o p_82920_ + 2 o p_82921_ + 3 o p_82922_ + a (Ljava/util/stream/Stream;Lcom/mojang/brigadier/suggestion/SuggestionsBuilder;)Ljava/util/concurrent/CompletableFuture; m_82957_ + static + 0 o p_82958_ + 1 o p_82959_ + a (Ljava/lang/Iterable;Lcom/mojang/brigadier/suggestion/SuggestionsBuilder;Ljava/lang/String;)Ljava/util/concurrent/CompletableFuture; m_82929_ + static + 0 o p_82930_ + 1 o p_82931_ + 2 o p_82932_ + a (Ljava/lang/String;Ljava/util/Collection;Lcom/mojang/brigadier/suggestion/SuggestionsBuilder;Ljava/util/function/Predicate;)Ljava/util/concurrent/CompletableFuture; m_82952_ + static + 0 o p_82953_ + 1 o p_82954_ + 2 o p_82955_ + 3 o p_82956_ + a (Lcom/mojang/brigadier/suggestion/SuggestionsBuilder;Lacq;)V m_82923_ + static + 0 o p_82924_ + 1 o p_82925_ + a (Ljava/lang/Iterable;Ljava/lang/String;Ljava/util/function/Function;Ljava/util/function/Consumer;)V m_82944_ + static + 0 o p_82945_ + 1 o p_82946_ + 2 o p_82947_ + 3 o p_82948_ + a (Lhr;Ldu$a;Lcom/mojang/brigadier/suggestion/SuggestionsBuilder;)V m_212335_ + 0 o p_212336_ + 1 o p_212337_ + 2 o p_212338_ + a (Ljava/util/stream/Stream;Lcom/mojang/brigadier/suggestion/SuggestionsBuilder;Ljava/lang/String;)Ljava/util/concurrent/CompletableFuture; m_205106_ + static + 0 o p_205107_ + 1 o p_205108_ + 2 o p_205109_ + a (Ljava/lang/Iterable;Lcom/mojang/brigadier/suggestion/SuggestionsBuilder;)Ljava/util/concurrent/CompletableFuture; m_82926_ + static + 0 o p_82927_ + 1 o p_82928_ + a (Ljava/util/stream/Stream;Lcom/mojang/brigadier/suggestion/SuggestionsBuilder;Ljava/util/function/Function;Ljava/util/function/Function;)Ljava/util/concurrent/CompletableFuture; m_82960_ + static + 0 o p_82961_ + 1 o p_82962_ + 2 o p_82963_ + 3 o p_82964_ + a (Ljava/lang/String;Ljava/lang/String;)Z m_82949_ + static + 0 o p_82950_ + 1 o p_82951_ + a (Lacq;)Lacq; m_82965_ + static + 0 o p_82966_ + b (Lacq;)Lacq; m_82984_ + static + 0 o p_82985_ + b (Ljava/lang/Iterable;Lcom/mojang/brigadier/suggestion/SuggestionsBuilder;Ljava/util/function/Function;Ljava/util/function/Function;)Ljava/util/concurrent/CompletableFuture; m_165916_ + static + 0 o p_165917_ + 1 o p_165918_ + 2 o p_165919_ + 3 o p_165920_ + b (Ljava/lang/String;Ljava/util/Collection;Lcom/mojang/brigadier/suggestion/SuggestionsBuilder;Ljava/util/function/Predicate;)Ljava/util/concurrent/CompletableFuture; m_82976_ + static + 0 o p_82977_ + 1 o p_82978_ + 2 o p_82979_ + 3 o p_82980_ + b (Ljava/util/stream/Stream;Lcom/mojang/brigadier/suggestion/SuggestionsBuilder;)Ljava/util/concurrent/CompletableFuture; m_82981_ + static + 0 o p_82982_ + 1 o p_82983_ + b (Ljava/lang/Iterable;Lcom/mojang/brigadier/suggestion/SuggestionsBuilder;)Ljava/util/concurrent/CompletableFuture; m_82970_ + static + 0 o p_82971_ + 1 o p_82972_ + b (Ljava/lang/String;Ljava/lang/String;)Z m_82973_ + static + 0 o p_82974_ + 1 o p_82975_ + c (I)Z m_6761_ + 0 o p_82986_ + q ()Ljava/util/Collection; m_5982_ + r ()Ljava/util/Collection; m_5983_ + s ()Ljava/util/stream/Stream; m_5984_ + t ()Ljava/util/stream/Stream; m_6860_ + u ()Ljava/util/Set; m_6553_ + v ()Lhs; m_5894_ + w ()Lcaw; m_245239_ + x ()Ljava/util/Collection; m_240700_ + y ()Ljava/util/Collection; m_6264_ + z ()Ljava/util/Collection; m_6265_ +du$a net/minecraft/commands/SharedSuggestionProvider$ElementSuggestionType + a TAGS + b ELEMENTS + c ALL + d $VALUES + ()V + static + (Ljava/lang/String;I)V + 0 o p_212349_ + 1 o p_212350_ + a ()Z m_212351_ + b ()Z m_212352_ + c ()[Ldu$a; m_212353_ + static + valueOf (Ljava/lang/String;)Ldu$a; valueOf + static + 0 o p_212355_ + values ()[Ldu$a; values + static +du$b net/minecraft/commands/SharedSuggestionProvider$TextCoordinates + a f_82987_ + b f_82988_ + c f_82989_ + d f_82990_ + e f_82991_ + ()V + static + (Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;)V + 0 o p_82994_ + 1 o p_82995_ + 2 o p_82996_ +dua net/minecraft/world/level/levelgen/structure/structures/NetherFossilPieces + a f_228531_ + ()V + static + ()V + a (Ldvu;Ldsf;Lapf;Lgu;)V m_228534_ + static + 0 o p_228535_ + 1 o p_228536_ + 2 o p_228537_ + 3 o p_228538_ +dua$a net/minecraft/world/level/levelgen/structure/structures/NetherFossilPieces$NetherFossilPiece + (Ldvu;Lacq;Lgu;Lcvz;)V + 0 o p_228540_ + 1 o p_228541_ + 2 o p_228542_ + 3 o p_228543_ + (Ldvu;Lqr;)V + 0 o p_228545_ + 1 o p_228546_ + a (Lcng;Lcne;Lddy;Lapf;Ldrs;Lclt;Lgu;)V m_213694_ + 0 o p_228548_ + 1 o p_228549_ + 2 o p_228550_ + 3 o p_228551_ + 4 o p_228552_ + 5 o p_228553_ + 6 o p_228554_ + a (Ldsq;Lqr;)V m_183620_ + 0 o p_228558_ + 1 o p_228559_ + a (Lqr;Lacq;)Ldvp; m_228566_ + static + 0 o p_228567_ + 1 o p_228568_ + a (Lcvz;)Ldvp; m_228555_ + static + 0 o p_228556_ + a (Ljava/lang/String;Lgu;Lcnb;Lapf;Ldrs;)V m_213704_ + 0 o p_228561_ + 1 o p_228562_ + 2 o p_228563_ + 3 o p_228564_ + 4 o p_228565_ +dub net/minecraft/world/level/levelgen/structure/structures/NetherFossilStructure + d f_228569_ + e f_228570_ + ()V + static + (Ldsa$c;Ldqh;)V + 0 o p_228573_ + 1 o p_228574_ + a (Ldsa$a;Ldij;Lgu;Ldss;)V m_228577_ + static + 0 o p_228578_ + 1 o p_228579_ + 2 o p_228580_ + 3 o p_228581_ + a (Ldub;)Ldqh; m_228582_ + static + 0 o p_228583_ + a (Ldsa$a;)Ljava/util/Optional; m_214086_ + 0 o p_228576_ + b (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; m_228584_ + static + 0 o p_228585_ + e ()Ldsj; m_213658_ +duc net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces + ()V +duc$1 net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$1 + a f_228588_ + ()V + static +duc$a net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$FitDoubleXRoom + ()V + a (Lha;Lduc$v;Lapf;)Lduc$r; m_214153_ + 0 o p_228594_ + 1 o p_228595_ + 2 o p_228596_ + a (Lduc$v;)Z m_213925_ + 0 o p_228592_ +duc$b net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$FitDoubleXYRoom + ()V + a (Lha;Lduc$v;Lapf;)Lduc$r; m_214153_ + 0 o p_228601_ + 1 o p_228602_ + 2 o p_228603_ + a (Lduc$v;)Z m_213925_ + 0 o p_228599_ +duc$c net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$FitDoubleYRoom + ()V + a (Lha;Lduc$v;Lapf;)Lduc$r; m_214153_ + 0 o p_228608_ + 1 o p_228609_ + 2 o p_228610_ + a (Lduc$v;)Z m_213925_ + 0 o p_228606_ +duc$d net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$FitDoubleYZRoom + ()V + a (Lha;Lduc$v;Lapf;)Lduc$r; m_214153_ + 0 o p_228615_ + 1 o p_228616_ + 2 o p_228617_ + a (Lduc$v;)Z m_213925_ + 0 o p_228613_ +duc$e net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$FitDoubleZRoom + ()V + a (Lha;Lduc$v;Lapf;)Lduc$r; m_214153_ + 0 o p_228622_ + 1 o p_228623_ + 2 o p_228624_ + a (Lduc$v;)Z m_213925_ + 0 o p_228620_ +duc$f net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$FitSimpleRoom + ()V + a (Lha;Lduc$v;Lapf;)Lduc$r; m_214153_ + 0 o p_228629_ + 1 o p_228630_ + 2 o p_228631_ + a (Lduc$v;)Z m_213925_ + 0 o p_228627_ +duc$g net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$FitSimpleTopRoom + ()V + a (Lha;Lduc$v;Lapf;)Lduc$r; m_214153_ + 0 o p_228636_ + 1 o p_228637_ + 2 o p_228638_ + a (Lduc$v;)Z m_213925_ + 0 o p_228634_ +duc$h net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$MonumentBuilding + C f_228639_ + D f_228640_ + E f_228641_ + F f_228642_ + G f_228643_ + H f_228644_ + I f_228645_ + a f_228646_ + (Lapf;IILha;)V + 0 o p_228648_ + 1 o p_228649_ + 2 o p_228650_ + 3 o p_228651_ + (Lqr;)V + 0 o p_228653_ + a (Lcng;Lcne;Lddy;Lapf;Ldrs;Lclt;Lgu;)V m_213694_ + 0 o p_228659_ + 1 o p_228660_ + 2 o p_228661_ + 3 o p_228662_ + 4 o p_228663_ + 5 o p_228664_ + 6 o p_228665_ + a (ZILcng;Lapf;Ldrs;)V m_228666_ + 0 o p_228667_ + 1 o p_228668_ + 2 o p_228669_ + 3 o p_228670_ + 4 o p_228671_ + a (Lcng;Lapf;Ldrs;)V m_228654_ + 0 o p_228655_ + 1 o p_228656_ + 2 o p_228657_ + b (Lapf;)Ljava/util/List; m_228672_ + 0 o p_228673_ + b (Lcng;Lapf;Ldrs;)V m_228674_ + 0 o p_228675_ + 1 o p_228676_ + 2 o p_228677_ + c (Lcng;Lapf;Ldrs;)V m_228678_ + 0 o p_228679_ + 1 o p_228680_ + 2 o p_228681_ + d (Lcng;Lapf;Ldrs;)V m_228682_ + 0 o p_228683_ + 1 o p_228684_ + 2 o p_228685_ + e (Lcng;Lapf;Ldrs;)V m_228686_ + 0 o p_228687_ + 1 o p_228688_ + 2 o p_228689_ + f (Lcng;Lapf;Ldrs;)V m_228690_ + 0 o p_228691_ + 1 o p_228692_ + 2 o p_228693_ +duc$i net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$MonumentRoomFitter + a (Lha;Lduc$v;Lapf;)Lduc$r; m_214153_ + 0 o p_228695_ + 1 o p_228696_ + 2 o p_228697_ + a (Lduc$v;)Z m_213925_ + 0 o p_228694_ +duc$j net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$OceanMonumentCoreRoom + (Lha;Lduc$v;)V + 0 o p_228699_ + 1 o p_228700_ + (Lqr;)V + 0 o p_228702_ + a (Lcng;Lcne;Lddy;Lapf;Ldrs;Lclt;Lgu;)V m_213694_ + 0 o p_228704_ + 1 o p_228705_ + 2 o p_228706_ + 3 o p_228707_ + 4 o p_228708_ + 5 o p_228709_ + 6 o p_228710_ +duc$k net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$OceanMonumentDoubleXRoom + (Lha;Lduc$v;)V + 0 o p_228712_ + 1 o p_228713_ + (Lqr;)V + 0 o p_228715_ + a (Lcng;Lcne;Lddy;Lapf;Ldrs;Lclt;Lgu;)V m_213694_ + 0 o p_228717_ + 1 o p_228718_ + 2 o p_228719_ + 3 o p_228720_ + 4 o p_228721_ + 5 o p_228722_ + 6 o p_228723_ +duc$l net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$OceanMonumentDoubleXYRoom + (Lha;Lduc$v;)V + 0 o p_228725_ + 1 o p_228726_ + (Lqr;)V + 0 o p_228728_ + a (Lcng;Lcne;Lddy;Lapf;Ldrs;Lclt;Lgu;)V m_213694_ + 0 o p_228730_ + 1 o p_228731_ + 2 o p_228732_ + 3 o p_228733_ + 4 o p_228734_ + 5 o p_228735_ + 6 o p_228736_ +duc$m net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$OceanMonumentDoubleYRoom + (Lha;Lduc$v;)V + 0 o p_228738_ + 1 o p_228739_ + (Lqr;)V + 0 o p_228741_ + a (Lcng;Lcne;Lddy;Lapf;Ldrs;Lclt;Lgu;)V m_213694_ + 0 o p_228743_ + 1 o p_228744_ + 2 o p_228745_ + 3 o p_228746_ + 4 o p_228747_ + 5 o p_228748_ + 6 o p_228749_ +duc$n net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$OceanMonumentDoubleYZRoom + (Lha;Lduc$v;)V + 0 o p_228751_ + 1 o p_228752_ + (Lqr;)V + 0 o p_228754_ + a (Lcng;Lcne;Lddy;Lapf;Ldrs;Lclt;Lgu;)V m_213694_ + 0 o p_228756_ + 1 o p_228757_ + 2 o p_228758_ + 3 o p_228759_ + 4 o p_228760_ + 5 o p_228761_ + 6 o p_228762_ +duc$o net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$OceanMonumentDoubleZRoom + (Lha;Lduc$v;)V + 0 o p_228764_ + 1 o p_228765_ + (Lqr;)V + 0 o p_228767_ + a (Lcng;Lcne;Lddy;Lapf;Ldrs;Lclt;Lgu;)V m_213694_ + 0 o p_228769_ + 1 o p_228770_ + 2 o p_228771_ + 3 o p_228772_ + 4 o p_228773_ + 5 o p_228774_ + 6 o p_228775_ +duc$p net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$OceanMonumentEntryRoom + (Lha;Lduc$v;)V + 0 o p_228777_ + 1 o p_228778_ + (Lqr;)V + 0 o p_228780_ + a (Lcng;Lcne;Lddy;Lapf;Ldrs;Lclt;Lgu;)V m_213694_ + 0 o p_228782_ + 1 o p_228783_ + 2 o p_228784_ + 3 o p_228785_ + 4 o p_228786_ + 5 o p_228787_ + 6 o p_228788_ +duc$q net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$OceanMonumentPenthouse + (Lqr;)V + 0 o p_228793_ + (Lha;Ldrs;)V + 0 o p_228790_ + 1 o p_228791_ + a (Lcng;Lcne;Lddy;Lapf;Ldrs;Lclt;Lgu;)V m_213694_ + 0 o p_228795_ + 1 o p_228796_ + 2 o p_228797_ + 3 o p_228798_ + 4 o p_228799_ + 5 o p_228800_ + 6 o p_228801_ +duc$r net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$OceanMonumentPiece + A f_228802_ + B f_228803_ + b f_228804_ + c f_228805_ + d f_228806_ + h f_228807_ + i f_228808_ + j f_228809_ + k f_228810_ + l f_228811_ + m f_228812_ + n f_228813_ + o f_228814_ + p f_228815_ + q f_228816_ + r f_228817_ + s f_228818_ + t f_228819_ + u f_228820_ + v f_228821_ + w f_228822_ + x f_228823_ + y f_228824_ + z f_228825_ + ()V + static + (Ldsr;Lha;ILdrs;)V + 0 o p_228836_ + 1 o p_228837_ + 2 o p_228838_ + 3 o p_228839_ + (Ldsr;Lqr;)V + 0 o p_228841_ + 1 o p_228842_ + (Ldsr;ILha;Lduc$v;III)V + 0 o p_228828_ + 1 o p_228829_ + 2 o p_228830_ + 3 o p_228831_ + 4 o p_228832_ + 5 o p_228833_ + 6 o p_228834_ + a (Lcng;Ldrs;III)V m_247483_ + 0 o p_251919_ + 1 o p_248944_ + 2 o p_251311_ + 3 o p_249326_ + 4 o p_252095_ + a (Ldsq;Lqr;)V m_183620_ + 0 o p_228872_ + 1 o p_228873_ + a (Lcng;Ldrs;IIZ)V m_228859_ + 0 o p_228860_ + 1 o p_228861_ + 2 o p_228862_ + 3 o p_228863_ + 4 o p_228864_ + a (Ldrs;IIII)Z m_228865_ + 0 o p_228866_ + 1 o p_228867_ + 2 o p_228868_ + 3 o p_228869_ + 4 o p_228870_ + a (Lha;Lduc$v;III)Ldrs; m_228874_ + static + 0 o p_228875_ + 1 o p_228876_ + 2 o p_228877_ + 3 o p_228878_ + 4 o p_228879_ + a (Lcng;Ldrs;IIIIIILdcb;)V m_228849_ + 0 o p_228850_ + 1 o p_228851_ + 2 o p_228852_ + 3 o p_228853_ + 4 o p_228854_ + 5 o p_228855_ + 6 o p_228856_ + 7 o p_228857_ + 8 o p_228858_ + b (Lcng;Ldrs;IIIIII)V m_228880_ + 0 o p_228881_ + 1 o p_228882_ + 2 o p_228883_ + 3 o p_228884_ + 4 o p_228885_ + 5 o p_228886_ + 6 o p_228887_ + 7 o p_228888_ + c (III)I m_228889_ + static + 0 o p_228890_ + 1 o p_228891_ + 2 o p_228892_ +duc$s net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$OceanMonumentSimpleRoom + a f_228893_ + (Lqr;)V + 0 o p_228899_ + (Lha;Lduc$v;Lapf;)V + 0 o p_228895_ + 1 o p_228896_ + 2 o p_228897_ + a (Lcng;Lcne;Lddy;Lapf;Ldrs;Lclt;Lgu;)V m_213694_ + 0 o p_228901_ + 1 o p_228902_ + 2 o p_228903_ + 3 o p_228904_ + 4 o p_228905_ + 5 o p_228906_ + 6 o p_228907_ +duc$t net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$OceanMonumentSimpleTopRoom + (Lha;Lduc$v;)V + 0 o p_228909_ + 1 o p_228910_ + (Lqr;)V + 0 o p_228912_ + a (Lcng;Lcne;Lddy;Lapf;Ldrs;Lclt;Lgu;)V m_213694_ + 0 o p_228914_ + 1 o p_228915_ + 2 o p_228916_ + 3 o p_228917_ + 4 o p_228918_ + 5 o p_228919_ + 6 o p_228920_ +duc$u net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$OceanMonumentWingRoom + a f_228921_ + (Lha;Ldrs;I)V + 0 o p_228923_ + 1 o p_228924_ + 2 o p_228925_ + (Lqr;)V + 0 o p_228927_ + a (Lcng;Lcne;Lddy;Lapf;Ldrs;Lclt;Lgu;)V m_213694_ + 0 o p_228929_ + 1 o p_228930_ + 2 o p_228931_ + 3 o p_228932_ + 4 o p_228933_ + 5 o p_228934_ + 6 o p_228935_ +duc$v net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$RoomDefinition + a f_228936_ + b f_228937_ + c f_228938_ + d f_228939_ + e f_228940_ + f f_228941_ + (I)V + 0 o p_228943_ + a (Lha;Lduc$v;)V m_228947_ + 0 o p_228948_ + 1 o p_228949_ + a ()V m_228944_ + a (I)Z m_228945_ + 0 o p_228946_ + b ()Z m_228950_ + c ()I m_228951_ +dud net/minecraft/world/level/levelgen/structure/structures/OceanMonumentStructure + d f_228952_ + ()V + static + (Ldsa$c;)V + 0 o p_228955_ + a (Ldss;Ldsa$a;)V m_228968_ + static + 0 o p_228969_ + 1 o p_228970_ + a (Lclt;JLdsp;)Ldsp; m_228956_ + static + 0 o p_228957_ + 1 o p_228958_ + 2 o p_228959_ + a (Lclt;Ldij;)Ldse; m_228960_ + static + 0 o p_228961_ + 1 o p_228962_ + a (Ldsa$a;Ldss;)V m_228965_ + static + 0 o p_228966_ + 1 o p_228967_ + a (Ldsa$a;)Ljava/util/Optional; m_214086_ + 0 o p_228964_ + e ()Ldsj; m_213658_ +due net/minecraft/world/level/levelgen/structure/structures/OceanRuinPieces + a f_276678_ + b f_276541_ + c f_228972_ + d f_228973_ + e f_228974_ + f f_228975_ + g f_228976_ + h f_228977_ + i f_228978_ + j f_228979_ + ()V + static + ()V + a (Lapf;Lgu;)Ljava/util/List; m_228984_ + static + 0 o p_228985_ + 1 o p_228986_ + a (Lapf;)Lacq; m_228982_ + static + 0 o p_228983_ + a (Lcpn;Lcpn;Lacq;)Ldvq; m_277092_ + static + 0 o p_277376_ + 1 o p_277934_ + 2 o p_277968_ + a (Ldvu;Lapf;Lcvz;Lgu;Lduf;Ldsf;)V m_228987_ + static + 0 o p_228988_ + 1 o p_228989_ + 2 o p_228990_ + 3 o p_228991_ + 4 o p_228992_ + 5 o p_228993_ + a (Ldvu;Lgu;Lcvz;Ldsf;Lapf;Lduf;ZF)V m_229001_ + static + 0 o p_229002_ + 1 o p_229003_ + 2 o p_229004_ + 3 o p_229005_ + 4 o p_229006_ + 5 o p_229007_ + 6 o p_229008_ + 7 o p_229009_ + a (Ldvu;Lgu;Lcvz;Ldsf;Lapf;Lduf;)V m_228994_ + static + 0 o p_228995_ + 1 o p_228996_ + 2 o p_228997_ + 3 o p_228998_ + 4 o p_228999_ + 5 o p_229000_ + b (Lapf;)Lacq; m_229010_ + static + 0 o p_229011_ +due$1 net/minecraft/world/level/levelgen/structure/structures/OceanRuinPieces$1 + a f_229012_ + ()V + static +due$a net/minecraft/world/level/levelgen/structure/structures/OceanRuinPieces$OceanRuinPiece + h f_229014_ + i f_229015_ + j f_229016_ + (Ldvu;Lqr;Lcvz;FLduf$a;Z)V + 0 o p_277563_ + 1 o p_277610_ + 2 o p_277637_ + 3 o p_277437_ + 4 o p_277873_ + 5 o p_277924_ + (Ldvu;Lacq;Lgu;Lcvz;FLduf$a;Z)V + 0 o p_229018_ + 1 o p_229019_ + 2 o p_229020_ + 3 o p_229021_ + 4 o p_229022_ + 5 o p_229023_ + 6 o p_229024_ + a (Lcng;Lcne;Lddy;Lapf;Ldrs;Lclt;Lgu;)V m_213694_ + 0 o p_229029_ + 1 o p_229030_ + 2 o p_229031_ + 3 o p_229032_ + 4 o p_229033_ + 5 o p_229034_ + 6 o p_229035_ + a (Ldvu;Lqr;)Ldue$a; m_277007_ + static + 0 o p_277874_ + 1 o p_277773_ + a (Ldsq;Lqr;)V m_183620_ + 0 o p_229039_ + 1 o p_229040_ + a (Lcvz;FLduf$a;)Ldvp; m_277082_ + static + 0 o p_277572_ + 1 o p_277489_ + 2 o p_277631_ + a (Lcvz;FLduf$a;Lacq;)Ldvp; m_276759_ + static + 0 o p_277329_ + 1 o p_277330_ + 2 o p_277331_ + 3 o p_277332_ + a (Lgu;Lcls;Lgu;)I m_229041_ + 0 o p_229042_ + 1 o p_229043_ + 2 o p_229044_ + a (Ljava/lang/String;Lgu;Lcnb;Lapf;Ldrs;)V m_213704_ + 0 o p_229046_ + 1 o p_229047_ + 2 o p_229048_ + 3 o p_229049_ + 4 o p_229050_ +duf net/minecraft/world/level/levelgen/structure/structures/OceanRuinStructure + d f_229054_ + e f_229055_ + f f_229056_ + g f_229057_ + ()V + static + (Ldsa$c;Lduf$a;FF)V + 0 o p_229060_ + 1 o p_229061_ + 2 o p_229062_ + 3 o p_229063_ + a (Ldss;Ldsa$a;)V m_229069_ + 0 o p_229070_ + 1 o p_229071_ + a (Ldsa$a;Ldss;)V m_229066_ + 0 o p_229067_ + 1 o p_229068_ + a (Ldsa$a;)Ljava/util/Optional; m_214086_ + 0 o p_229065_ + a (Lduf;)Ljava/lang/Float; m_229072_ + static + 0 o p_229073_ + b (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; m_229074_ + static + 0 o p_229075_ + b (Lduf;)Ljava/lang/Float; m_229076_ + static + 0 o p_229077_ + c (Lduf;)Lduf$a; m_229078_ + static + 0 o p_229079_ + e ()Ldsj; m_213658_ +duf$a net/minecraft/world/level/levelgen/structure/structures/OceanRuinStructure$Type + a WARM + b COLD + c f_229083_ + d f_229084_ + e $VALUES + ()V + static + (Ljava/lang/String;ILjava/lang/String;)V + 0 o p_229088_ + 1 o p_229089_ + 2 o p_229090_ + a ()Ljava/lang/String; m_229091_ + b ()[Lduf$a; m_229092_ + static + c ()Ljava/lang/String; m_7912_ + valueOf (Ljava/lang/String;)Lduf$a; valueOf + static + 0 o p_229095_ + values ()[Lduf$a; values + static +dug net/minecraft/world/level/levelgen/structure/structures/RuinedPortalPiece + h f_229097_ + i f_229098_ + j f_229099_ + k f_229100_ + l f_229101_ + m f_229102_ + ()V + static + (Ldvu;Lgu;Ldug$b;Ldug$a;Lacq;Ldvt;Lcvz;Lcui;Lgu;)V + 0 o p_229105_ + 1 o p_229106_ + 2 o p_229107_ + 3 o p_229108_ + 4 o p_229109_ + 5 o p_229110_ + 6 o p_229111_ + 7 o p_229112_ + 8 o p_229113_ + (Ldvu;Lqr;)V + 0 o p_229115_ + 1 o p_229116_ + a (Lcpn;FLcpn;)Ldvi; m_229144_ + static + 0 o p_229145_ + 1 o p_229146_ + 2 o p_229147_ + a (Lcui;Lcvz;Ldug$b;Lgu;Ldug$a;)Ldvp; m_229151_ + static + 0 o p_229152_ + 1 o p_229153_ + 2 o p_229154_ + 3 o p_229155_ + 4 o p_229156_ + a (Ldug$b;)Ldhk$a; m_229160_ + static + 0 o p_229161_ + a (Lapf;Lcmn;)V m_229117_ + 0 o p_229118_ + 1 o p_229119_ + a (Lapf;Lcmn;Lgu;)V m_229120_ + 0 o p_229121_ + 1 o p_229122_ + 2 o p_229123_ + a (Ljava/lang/String;Lgu;Lcnb;Lapf;Ldrs;)V m_213704_ + 0 o p_229170_ + 1 o p_229171_ + 2 o p_229172_ + 3 o p_229173_ + 4 o p_229174_ + a (Ldug$b;Ldug$a;)Ldvi; m_229162_ + static + 0 o p_229163_ + 1 o p_229164_ + a (Lcmn;IILdug$b;)I m_229128_ + static + 0 o p_229129_ + 1 o p_229130_ + 2 o p_229131_ + 3 o p_229132_ + a (Lapf;Lcng;Lgu;)V m_229124_ + 0 o p_229125_ + 1 o p_229126_ + 2 o p_229127_ + a (Lcpn;Lcpn;)Ldvi; m_229148_ + static + 0 o p_229149_ + 1 o p_229150_ + a (Lcng;Lcne;Lddy;Lapf;Ldrs;Lclt;Lgu;)V m_213694_ + 0 o p_229137_ + 1 o p_229138_ + 2 o p_229139_ + 3 o p_229140_ + 4 o p_229141_ + 5 o p_229142_ + 6 o p_229143_ + a (Lqr;Lrk;)V m_229175_ + static + 0 o p_229176_ + 1 o p_229177_ + a (Ldsq;Lqr;)V m_183620_ + 0 o p_229158_ + 1 o p_229159_ + a (Lcmn;Lgu;)Z m_229133_ + 0 o p_229134_ + 1 o p_229135_ + a (Ldvu;Lqr;Lacq;)Ldvp; m_229165_ + static + 0 o p_229166_ + 1 o p_229167_ + 2 o p_229168_ + b (Lapf;Lcmn;)V m_229178_ + 0 o p_229179_ + 1 o p_229180_ + b (Ldvu;Lqr;Lacq;)Ldvp; m_229185_ + static + 0 o p_229186_ + 1 o p_229187_ + 2 o p_229188_ + b (Lapf;Lcmn;Lgu;)V m_229181_ + 0 o p_229182_ + 1 o p_229183_ + 2 o p_229184_ + c (Lapf;Lcmn;Lgu;)V m_229189_ + 0 o p_229190_ + 1 o p_229191_ + 2 o p_229192_ + d (Lapf;Lcmn;Lgu;)V m_229193_ + 0 o p_229194_ + 1 o p_229195_ + 2 o p_229196_ +dug$a net/minecraft/world/level/levelgen/structure/structures/RuinedPortalPiece$Properties + a f_229197_ + b f_229198_ + c f_229199_ + d f_229200_ + e f_229201_ + f f_229202_ + g f_229203_ + ()V + static + (ZFZZZZ)V + 0 o p_229207_ + 1 o p_229208_ + 2 o p_229209_ + 3 o p_229210_ + 4 o p_229211_ + 5 o p_229212_ + ()V + a (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; m_229213_ + static + 0 o p_229214_ + a (Ldug$a;)Ljava/lang/Boolean; m_229215_ + static + 0 o p_229216_ + b (Ldug$a;)Ljava/lang/Boolean; m_229217_ + static + 0 o p_229218_ + c (Ldug$a;)Ljava/lang/Boolean; m_229219_ + static + 0 o p_229220_ + d (Ldug$a;)Ljava/lang/Boolean; m_229221_ + static + 0 o p_229222_ + e (Ldug$a;)Ljava/lang/Float; m_229223_ + static + 0 o p_229224_ + f (Ldug$a;)Ljava/lang/Boolean; m_229225_ + static + 0 o p_229226_ +dug$b net/minecraft/world/level/levelgen/structure/structures/RuinedPortalPiece$VerticalPlacement + a ON_LAND_SURFACE + b PARTLY_BURIED + c ON_OCEAN_FLOOR + d IN_MOUNTAIN + e UNDERGROUND + f IN_NETHER + g f_229233_ + h f_229234_ + i $VALUES + ()V + static + (Ljava/lang/String;ILjava/lang/String;)V + 0 o p_229238_ + 1 o p_229239_ + 2 o p_229240_ + a (Ljava/lang/String;)Ldug$b; m_229242_ + static + 0 o p_229243_ + a ()Ljava/lang/String; m_229241_ + b ()[Ldug$b; m_229244_ + static + c ()Ljava/lang/String; m_7912_ + valueOf (Ljava/lang/String;)Ldug$b; valueOf + static + 0 o p_229247_ + values ()[Ldug$b; values + static +duh net/minecraft/world/level/levelgen/structure/structures/RuinedPortalStructure + d f_229249_ + e f_229250_ + f f_229251_ + g f_229252_ + h f_229253_ + i f_229254_ + ()V + static + (Ldsa$c;Lduh$a;)V + 0 o p_229257_ + 1 o p_229258_ + (Ldsa$c;Ljava/util/List;)V + 0 o p_229260_ + 1 o p_229261_ + a (Lduh;)Ljava/util/List; m_229298_ + static + 0 o p_229299_ + a (Lapf;II)I m_229262_ + static + 0 o p_229263_ + 1 o p_229264_ + 2 o p_229265_ + a (Ldij;F)Z m_229281_ + static + 0 o p_229282_ + 1 o p_229283_ + a (Lddy;Lcmo;Ldhy;Lgu;)Lcmy; m_229276_ + static + 0 o p_229277_ + 1 o p_229278_ + 2 o p_229279_ + 3 o p_229280_ + a (Lapf;Lddy;Ldug$b;ZIILdrs;Lcmo;Ldhy;)I m_229266_ + static + 0 o p_229267_ + 1 o p_229268_ + 2 o p_229269_ + 3 o p_229270_ + 4 o p_229271_ + 5 o p_229272_ + 6 o p_229273_ + 7 o p_229274_ + 8 o p_229275_ + a (Lduh$a;Ldug$a;Lgu;Ldsa$a;Ldhy;Lacq;Ldvt;Lcvz;Lcui;Lgu;Ldss;)V m_229286_ + static + 0 o p_229287_ + 1 o p_229288_ + 2 o p_229289_ + 3 o p_229290_ + 4 o p_229291_ + 5 o p_229292_ + 6 o p_229293_ + 7 o p_229294_ + 8 o p_229295_ + 9 o p_229296_ + 10 o p_229297_ + a (Lgu;Lhe;)Z m_229300_ + static + 0 o p_229301_ + 1 o p_229302_ + a (Ldsa$a;)Ljava/util/Optional; m_214086_ + 0 o p_229285_ + b (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; m_229303_ + static + 0 o p_229304_ + e ()Ldsj; m_213658_ +duh$a net/minecraft/world/level/levelgen/structure/structures/RuinedPortalStructure$Setup + a f_229306_ + b f_229307_ + c f_229308_ + d f_229309_ + e f_229310_ + f f_229311_ + g f_229312_ + h f_229313_ + i f_229314_ + ()V + static + (Ldug$b;FFZZZZF)V + 0 o f_229307_ + 1 o f_229308_ + 2 o f_229309_ + 3 o f_229310_ + 4 o f_229311_ + 5 o f_229312_ + 6 o f_229313_ + 7 o f_229314_ + a ()Ldug$b; f_229307_ + a (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; m_229326_ + static + 0 o p_229327_ + b ()F f_229308_ + c ()F f_229309_ + d ()Z f_229310_ + e ()Z f_229311_ + equals (Ljava/lang/Object;)Z equals + 0 o p_229333_ + f ()Z f_229312_ + g ()Z f_229313_ + h ()F f_229314_ + hashCode ()I hashCode + toString ()Ljava/lang/String; toString +dui net/minecraft/world/level/levelgen/structure/structures/ShipwreckPieces + a f_229339_ + b f_229340_ + c f_229341_ + d f_229342_ + ()V + static + ()V + a (Ldvu;Lgu;Lcvz;Ldsf;Lapf;Z)V m_229345_ + static + 0 o p_229346_ + 1 o p_229347_ + 2 o p_229348_ + 3 o p_229349_ + 4 o p_229350_ + 5 o p_229351_ +dui$a net/minecraft/world/level/levelgen/structure/structures/ShipwreckPieces$ShipwreckPiece + h f_229352_ + (Ldvu;Lqr;)V + 0 o p_229360_ + 1 o p_229361_ + (Ldvu;Lacq;Lgu;Lcvz;Z)V + 0 o p_229354_ + 1 o p_229355_ + 2 o p_229356_ + 3 o p_229357_ + 4 o p_229358_ + a (Lcng;Lcne;Lddy;Lapf;Ldrs;Lclt;Lgu;)V m_213694_ + 0 o p_229363_ + 1 o p_229364_ + 2 o p_229365_ + 3 o p_229366_ + 4 o p_229367_ + 5 o p_229368_ + 6 o p_229369_ + a (Ldsq;Lqr;)V m_183620_ + 0 o p_229373_ + 1 o p_229374_ + a (Lqr;Lacq;)Ldvp; m_229381_ + static + 0 o p_229382_ + 1 o p_229383_ + a (Lcvz;)Ldvp; m_229370_ + static + 0 o p_229371_ + a (Ljava/lang/String;Lgu;Lcnb;Lapf;Ldrs;)V m_213704_ + 0 o p_229376_ + 1 o p_229377_ + 2 o p_229378_ + 3 o p_229379_ + 4 o p_229380_ +duj net/minecraft/world/level/levelgen/structure/structures/ShipwreckStructure + d f_229384_ + e f_229385_ + ()V + static + (Ldsa$c;Z)V + 0 o p_229388_ + 1 o p_229389_ + a (Ldss;Ldsa$a;)V m_229395_ + 0 o p_229396_ + 1 o p_229397_ + a (Ldsa$a;Ldss;)V m_229392_ + 0 o p_229393_ + 1 o p_229394_ + a (Ldsa$a;)Ljava/util/Optional; m_214086_ + 0 o p_229391_ + a (Lduj;)Ljava/lang/Boolean; m_229398_ + static + 0 o p_229399_ + b (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; m_229400_ + static + 0 o p_229401_ + e ()Ldsj; m_213658_ +duk net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces + a f_229403_ + b f_229404_ + c f_229405_ + d f_229406_ + e f_229407_ + f f_229408_ + g f_229409_ + h f_229410_ + i f_229411_ + j f_229412_ + k f_229413_ + ()V + static + ()V + a (Lduk$m;Ldsf;Lapf;IIILha;I)Lduk$p; m_229417_ + static + 0 o p_229418_ + 1 o p_229419_ + 2 o p_229420_ + 3 o p_229421_ + 4 o p_229422_ + 5 o p_229423_ + 6 o p_229424_ + 7 o p_229425_ + a ()V m_229416_ + static + a (Ljava/lang/Class;Ldsf;Lapf;IIILha;I)Lduk$p; m_229426_ + static + 0 o p_229427_ + 1 o p_229428_ + 2 o p_229429_ + 3 o p_229430_ + 4 o p_229431_ + 5 o p_229432_ + 6 o p_229433_ + 7 o p_229434_ + b (Lduk$m;Ldsf;Lapf;IIILha;I)Ldse; m_229436_ + static + 0 o p_229437_ + 1 o p_229438_ + 2 o p_229439_ + 3 o p_229440_ + 4 o p_229441_ + 5 o p_229442_ + 6 o p_229443_ + 7 o p_229444_ + b ()Z m_229435_ + static +duk$1 net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$1 + (Ljava/lang/Class;II)V + 0 o p_229446_ + 1 o p_229447_ + 2 o p_229448_ + a (I)Z m_214198_ + 0 o p_229450_ +duk$2 net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$2 + (Ljava/lang/Class;II)V + 0 o p_229452_ + 1 o p_229453_ + 2 o p_229454_ + a (I)Z m_214198_ + 0 o p_229456_ +duk$3 net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$3 + a f_229457_ + b f_229458_ + ()V + static +duk$a net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$ChestCorridor + a f_229460_ + b f_229461_ + c f_229462_ + d f_229463_ + (ILapf;Ldrs;Lha;)V + 0 o p_229465_ + 1 o p_229466_ + 2 o p_229467_ + 3 o p_229468_ + (Lqr;)V + 0 o p_229470_ + a (Lcng;Lcne;Lddy;Lapf;Ldrs;Lclt;Lgu;)V m_213694_ + 0 o p_229472_ + 1 o p_229473_ + 2 o p_229474_ + 3 o p_229475_ + 4 o p_229476_ + 5 o p_229477_ + 6 o p_229478_ + a (Ldsq;Lqr;)V m_183620_ + 0 o p_229492_ + 1 o p_229493_ + a (Ldse;Ldsf;Lapf;)V m_214092_ + 0 o p_229480_ + 1 o p_229481_ + 2 o p_229482_ + a (Ldsf;Lapf;IIILha;I)Lduk$a; m_229483_ + static + 0 o p_229484_ + 1 o p_229485_ + 2 o p_229486_ + 3 o p_229487_ + 4 o p_229488_ + 5 o p_229489_ + 6 o p_229490_ +duk$b net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$FillerCorridor + a f_229494_ + (ILdrs;Lha;)V + 0 o p_229496_ + 1 o p_229497_ + 2 o p_229498_ + (Lqr;)V + 0 o p_229500_ + a (Lcng;Lcne;Lddy;Lapf;Ldrs;Lclt;Lgu;)V m_213694_ + 0 o p_229502_ + 1 o p_229503_ + 2 o p_229504_ + 3 o p_229505_ + 4 o p_229506_ + 5 o p_229507_ + 6 o p_229508_ + a (Ldsq;Lqr;)V m_183620_ + 0 o p_229517_ + 1 o p_229518_ + a (Ldsf;Lapf;IIILha;)Ldrs; m_229509_ + static + 0 o p_229510_ + 1 o p_229511_ + 2 o p_229512_ + 3 o p_229513_ + 4 o p_229514_ + 5 o p_229515_ +duk$c net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$FiveCrossing + a f_229519_ + b f_229520_ + c f_229521_ + d f_229522_ + i f_229523_ + j f_229524_ + k f_229525_ + (ILapf;Ldrs;Lha;)V + 0 o p_229527_ + 1 o p_229528_ + 2 o p_229529_ + 3 o p_229530_ + (Lqr;)V + 0 o p_229532_ + a (Ldsf;Lapf;IIILha;I)Lduk$c; m_229545_ + static + 0 o p_229546_ + 1 o p_229547_ + 2 o p_229548_ + 3 o p_229549_ + 4 o p_229550_ + 5 o p_229551_ + 6 o p_229552_ + a (Lcng;Lcne;Lddy;Lapf;Ldrs;Lclt;Lgu;)V m_213694_ + 0 o p_229534_ + 1 o p_229535_ + 2 o p_229536_ + 3 o p_229537_ + 4 o p_229538_ + 5 o p_229539_ + 6 o p_229540_ + a (Ldsq;Lqr;)V m_183620_ + 0 o p_229554_ + 1 o p_229555_ + a (Ldse;Ldsf;Lapf;)V m_214092_ + 0 o p_229542_ + 1 o p_229543_ + 2 o p_229544_ +duk$d net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$LeftTurn + (ILapf;Ldrs;Lha;)V + 0 o p_229557_ + 1 o p_229558_ + 2 o p_229559_ + 3 o p_229560_ + (Lqr;)V + 0 o p_229562_ + a (Lcng;Lcne;Lddy;Lapf;Ldrs;Lclt;Lgu;)V m_213694_ + 0 o p_229564_ + 1 o p_229565_ + 2 o p_229566_ + 3 o p_229567_ + 4 o p_229568_ + 5 o p_229569_ + 6 o p_229570_ + a (Ldsf;Lapf;IIILha;I)Lduk$d; m_229575_ + static + 0 o p_229576_ + 1 o p_229577_ + 2 o p_229578_ + 3 o p_229579_ + 4 o p_229580_ + 5 o p_229581_ + 6 o p_229582_ + a (Ldse;Ldsf;Lapf;)V m_214092_ + 0 o p_229572_ + 1 o p_229573_ + 2 o p_229574_ +duk$e net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$Library + a f_229583_ + b f_229584_ + c f_229585_ + d f_229586_ + i f_229587_ + (ILapf;Ldrs;Lha;)V + 0 o p_229589_ + 1 o p_229590_ + 2 o p_229591_ + 3 o p_229592_ + (Lqr;)V + 0 o p_229594_ + a (Lcng;Lcne;Lddy;Lapf;Ldrs;Lclt;Lgu;)V m_213694_ + 0 o p_229596_ + 1 o p_229597_ + 2 o p_229598_ + 3 o p_229599_ + 4 o p_229600_ + 5 o p_229601_ + 6 o p_229602_ + a (Ldsf;Lapf;IIILha;I)Lduk$e; m_229603_ + static + 0 o p_229604_ + 1 o p_229605_ + 2 o p_229606_ + 3 o p_229607_ + 4 o p_229608_ + 5 o p_229609_ + 6 o p_229610_ + a (Ldsq;Lqr;)V m_183620_ + 0 o p_229612_ + 1 o p_229613_ +duk$f net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$PieceWeight + a f_229614_ + b f_229615_ + c f_229616_ + d f_229617_ + (Ljava/lang/Class;II)V + 0 o p_229619_ + 1 o p_229620_ + 2 o p_229621_ + a ()Z m_229622_ + a (I)Z m_214198_ + 0 o p_229623_ +duk$g net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$PortalRoom + a f_229624_ + b f_229625_ + c f_229626_ + d f_229627_ + (ILdrs;Lha;)V + 0 o p_229629_ + 1 o p_229630_ + 2 o p_229631_ + (Lqr;)V + 0 o p_229633_ + a (Lcng;Lcne;Lddy;Lapf;Ldrs;Lclt;Lgu;)V m_213694_ + 0 o p_229635_ + 1 o p_229636_ + 2 o p_229637_ + 3 o p_229638_ + 4 o p_229639_ + 5 o p_229640_ + 6 o p_229641_ + a (Ldsq;Lqr;)V m_183620_ + 0 o p_229654_ + 1 o p_229655_ + a (Ldsf;IIILha;I)Lduk$g; m_229646_ + static + 0 o p_229647_ + 1 o p_229648_ + 2 o p_229649_ + 3 o p_229650_ + 4 o p_229651_ + 5 o p_229652_ + a (Ldse;Ldsf;Lapf;)V m_214092_ + 0 o p_229643_ + 1 o p_229644_ + 2 o p_229645_ +duk$h net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$PrisonHall + a f_229656_ + b f_229657_ + c f_229658_ + (ILapf;Ldrs;Lha;)V + 0 o p_229660_ + 1 o p_229661_ + 2 o p_229662_ + 3 o p_229663_ + (Lqr;)V + 0 o p_229665_ + a (Lcng;Lcne;Lddy;Lapf;Ldrs;Lclt;Lgu;)V m_213694_ + 0 o p_229667_ + 1 o p_229668_ + 2 o p_229669_ + 3 o p_229670_ + 4 o p_229671_ + 5 o p_229672_ + 6 o p_229673_ + a (Ldsf;Lapf;IIILha;I)Lduk$h; m_229678_ + static + 0 o p_229679_ + 1 o p_229680_ + 2 o p_229681_ + 3 o p_229682_ + 4 o p_229683_ + 5 o p_229684_ + 6 o p_229685_ + a (Ldse;Ldsf;Lapf;)V m_214092_ + 0 o p_229675_ + 1 o p_229676_ + 2 o p_229677_ +duk$i net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$RightTurn + (ILapf;Ldrs;Lha;)V + 0 o p_229687_ + 1 o p_229688_ + 2 o p_229689_ + 3 o p_229690_ + (Lqr;)V + 0 o p_229692_ + a (Lcng;Lcne;Lddy;Lapf;Ldrs;Lclt;Lgu;)V m_213694_ + 0 o p_229694_ + 1 o p_229695_ + 2 o p_229696_ + 3 o p_229697_ + 4 o p_229698_ + 5 o p_229699_ + 6 o p_229700_ + a (Ldsf;Lapf;IIILha;I)Lduk$i; m_229705_ + static + 0 o p_229706_ + 1 o p_229707_ + 2 o p_229708_ + 3 o p_229709_ + 4 o p_229710_ + 5 o p_229711_ + 6 o p_229712_ + a (Ldse;Ldsf;Lapf;)V m_214092_ + 0 o p_229702_ + 1 o p_229703_ + 2 o p_229704_ +duk$j net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$RoomCrossing + a f_229713_ + b f_229714_ + c f_229715_ + d f_229716_ + (ILapf;Ldrs;Lha;)V + 0 o p_229718_ + 1 o p_229719_ + 2 o p_229720_ + 3 o p_229721_ + (Lqr;)V + 0 o p_229723_ + a (Lcng;Lcne;Lddy;Lapf;Ldrs;Lclt;Lgu;)V m_213694_ + 0 o p_229725_ + 1 o p_229726_ + 2 o p_229727_ + 3 o p_229728_ + 4 o p_229729_ + 5 o p_229730_ + 6 o p_229731_ + a (Ldsq;Lqr;)V m_183620_ + 0 o p_229745_ + 1 o p_229746_ + a (Ldsf;Lapf;IIILha;I)Lduk$j; m_229736_ + static + 0 o p_229737_ + 1 o p_229738_ + 2 o p_229739_ + 3 o p_229740_ + 4 o p_229741_ + 5 o p_229742_ + 6 o p_229743_ + a (Ldse;Ldsf;Lapf;)V m_214092_ + 0 o p_229733_ + 1 o p_229734_ + 2 o p_229735_ +duk$k net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$SmoothStoneSelector + ()V + a (Lapf;IIIZ)V m_213766_ + 0 o p_229749_ + 1 o p_229750_ + 2 o p_229751_ + 3 o p_229752_ + 4 o p_229753_ +duk$l net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$StairsDown + a f_229754_ + b f_229755_ + c f_229756_ + d f_229757_ + (ILapf;Ldrs;Lha;)V + 0 o p_229759_ + 1 o p_229760_ + 2 o p_229761_ + 3 o p_229762_ + (Ldsr;Lqr;)V + 0 o p_229770_ + 1 o p_229771_ + (Ldsr;IIILha;)V + 0 o p_229764_ + 1 o p_229765_ + 2 o p_229766_ + 3 o p_229767_ + 4 o p_229768_ + (Lqr;)V + 0 o p_229773_ + a (Lcng;Lcne;Lddy;Lapf;Ldrs;Lclt;Lgu;)V m_213694_ + 0 o p_229775_ + 1 o p_229776_ + 2 o p_229777_ + 3 o p_229778_ + 4 o p_229779_ + 5 o p_229780_ + 6 o p_229781_ + a (Ldsq;Lqr;)V m_183620_ + 0 o p_229795_ + 1 o p_229796_ + a (Ldsf;Lapf;IIILha;I)Lduk$l; m_229786_ + static + 0 o p_229787_ + 1 o p_229788_ + 2 o p_229789_ + 3 o p_229790_ + 4 o p_229791_ + 5 o p_229792_ + 6 o p_229793_ + a (Ldse;Ldsf;Lapf;)V m_214092_ + 0 o p_229783_ + 1 o p_229784_ + 2 o p_229785_ +duk$m net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$StartPiece + a f_229797_ + b f_229798_ + c f_229799_ + (Lapf;II)V + 0 o p_229801_ + 1 o p_229802_ + 2 o p_229803_ + (Lqr;)V + 0 o p_229805_ + h ()Lgu; m_142171_ +duk$n net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$Straight + a f_229807_ + b f_229808_ + c f_229809_ + d f_229810_ + i f_229811_ + (ILapf;Ldrs;Lha;)V + 0 o p_229813_ + 1 o p_229814_ + 2 o p_229815_ + 3 o p_229816_ + (Lqr;)V + 0 o p_229818_ + a (Lcng;Lcne;Lddy;Lapf;Ldrs;Lclt;Lgu;)V m_213694_ + 0 o p_229820_ + 1 o p_229821_ + 2 o p_229822_ + 3 o p_229823_ + 4 o p_229824_ + 5 o p_229825_ + 6 o p_229826_ + a (Ldsq;Lqr;)V m_183620_ + 0 o p_229840_ + 1 o p_229841_ + a (Ldsf;Lapf;IIILha;I)Lduk$n; m_229831_ + static + 0 o p_229832_ + 1 o p_229833_ + 2 o p_229834_ + 3 o p_229835_ + 4 o p_229836_ + 5 o p_229837_ + 6 o p_229838_ + a (Ldse;Ldsf;Lapf;)V m_214092_ + 0 o p_229828_ + 1 o p_229829_ + 2 o p_229830_ +duk$o net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$StraightStairsDown + a f_229842_ + b f_229843_ + c f_229844_ + (ILapf;Ldrs;Lha;)V + 0 o p_229846_ + 1 o p_229847_ + 2 o p_229848_ + 3 o p_229849_ + (Lqr;)V + 0 o p_229851_ + a (Lcng;Lcne;Lddy;Lapf;Ldrs;Lclt;Lgu;)V m_213694_ + 0 o p_229853_ + 1 o p_229854_ + 2 o p_229855_ + 3 o p_229856_ + 4 o p_229857_ + 5 o p_229858_ + 6 o p_229859_ + a (Ldse;Ldsf;Lapf;)V m_214092_ + 0 o p_229861_ + 1 o p_229862_ + 2 o p_229863_ + a (Ldsf;Lapf;IIILha;I)Lduk$o; m_229864_ + static + 0 o p_229865_ + 1 o p_229866_ + 2 o p_229867_ + 3 o p_229868_ + 4 o p_229869_ + 5 o p_229870_ + 6 o p_229871_ +duk$p net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$StrongholdPiece + h f_229872_ + (Ldsr;Lqr;)V + 0 o p_229878_ + 1 o p_229879_ + (Ldsr;ILdrs;)V + 0 o p_229874_ + 1 o p_229875_ + 2 o p_229876_ + a (Lduk$m;Ldsf;Lapf;II)Ldse; m_229893_ + 0 o p_229894_ + 1 o p_229895_ + 2 o p_229896_ + 3 o p_229897_ + 4 o p_229898_ + a (Ldsq;Lqr;)V m_183620_ + 0 o p_229891_ + 1 o p_229892_ + a (Lcng;Lapf;Ldrs;Lduk$p$a;III)V m_229880_ + 0 o p_229881_ + 1 o p_229882_ + 2 o p_229883_ + 3 o p_229884_ + 4 o p_229885_ + 5 o p_229886_ + 6 o p_229887_ + a (Ldrs;)Z m_229888_ + static + 0 o p_229889_ + b (Lduk$m;Ldsf;Lapf;II)Ldse; m_229901_ + 0 o p_229902_ + 1 o p_229903_ + 2 o p_229904_ + 3 o p_229905_ + 4 o p_229906_ + b (Lapf;)Lduk$p$a; m_229899_ + 0 o p_229900_ + c (Lduk$m;Ldsf;Lapf;II)Ldse; m_229907_ + 0 o p_229908_ + 1 o p_229909_ + 2 o p_229910_ + 3 o p_229911_ + 4 o p_229912_ +duk$p$a net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$StrongholdPiece$SmallDoorType + a OPENING + b WOOD_DOOR + c GRATES + d IRON_DOOR + e $VALUES + ()V + static + (Ljava/lang/String;I)V + 0 o p_229920_ + 1 o p_229921_ + a ()[Lduk$p$a; m_229922_ + static + valueOf (Ljava/lang/String;)Lduk$p$a; valueOf + static + 0 o p_229924_ + values ()[Lduk$p$a; values + static +duk$q net/minecraft/world/level/levelgen/structure/structures/StrongholdPieces$Turn + a f_229926_ + b f_229927_ + c f_229928_ + (Ldsr;Lqr;)V + 0 o p_229934_ + 1 o p_229935_ + (Ldsr;ILdrs;)V + 0 o p_229930_ + 1 o p_229931_ + 2 o p_229932_ +dul net/minecraft/world/level/levelgen/structure/structures/StrongholdStructure + d f_229936_ + ()V + static + (Ldsa$c;)V + 0 o p_229939_ + a (Ldss;Ldsa$a;)V m_229945_ + static + 0 o p_229946_ + 1 o p_229947_ + a (Ldsa$a;Ldss;)V m_229942_ + static + 0 o p_229943_ + 1 o p_229944_ + a (Ldsa$a;)Ljava/util/Optional; m_214086_ + 0 o p_229941_ + e ()Ldsj; m_213658_ +dum net/minecraft/world/level/levelgen/structure/structures/SwampHutPiece + h f_229949_ + i f_229950_ + (Lapf;II)V + 0 o p_229952_ + 1 o p_229953_ + 2 o p_229954_ + (Lqr;)V + 0 o p_229956_ + a (Lcng;Lcne;Lddy;Lapf;Ldrs;Lclt;Lgu;)V m_213694_ + 0 o p_229961_ + 1 o p_229962_ + 2 o p_229963_ + 3 o p_229964_ + 4 o p_229965_ + 5 o p_229966_ + 6 o p_229967_ + a (Ldsq;Lqr;)V m_183620_ + 0 o p_229969_ + 1 o p_229970_ + a (Lcnb;Ldrs;)V m_229957_ + 0 o p_229958_ + 1 o p_229959_ +dun net/minecraft/world/level/levelgen/structure/structures/SwampHutStructure + d f_229971_ + ()V + static + (Ldsa$c;)V + 0 o p_229974_ + a (Ldss;Ldsa$a;)V m_229980_ + static + 0 o p_229981_ + 1 o p_229982_ + a (Ldsa$a;Ldss;)V m_229977_ + static + 0 o p_229978_ + 1 o p_229979_ + a (Ldsa$a;)Ljava/util/Optional; m_214086_ + 0 o p_229976_ + e ()Ldsj; m_213658_ +duo net/minecraft/world/level/levelgen/structure/structures/WoodlandMansionPieces + ()V + a ([Ljava/lang/String;)V main + static + 0 o p_229992_ + a (Ldvu;Lgu;Lcvz;Ljava/util/List;Lapf;)V m_229985_ + static + 0 o p_229986_ + 1 o p_229987_ + 2 o p_229988_ + 3 o p_229989_ + 4 o p_229990_ +duo$a net/minecraft/world/level/levelgen/structure/structures/WoodlandMansionPieces$FirstFloorRoomCollection + ()V + a (Lapf;)Ljava/lang/String; m_214126_ + 0 o p_229995_ + a (Lapf;Z)Ljava/lang/String; m_213986_ + 0 o p_229997_ + 1 o p_229998_ + b (Lapf;Z)Ljava/lang/String; m_213985_ + 0 o p_230002_ + 1 o p_230003_ + b (Lapf;)Ljava/lang/String; m_214127_ + 0 o p_230000_ + c (Lapf;)Ljava/lang/String; m_214128_ + 0 o p_230005_ + d (Lapf;)Ljava/lang/String; m_214124_ + 0 o p_230007_ + e (Lapf;)Ljava/lang/String; m_214125_ + 0 o p_230009_ +duo$b net/minecraft/world/level/levelgen/structure/structures/WoodlandMansionPieces$FloorRoomCollection + ()V + a (Lapf;)Ljava/lang/String; m_214126_ + 0 o p_230011_ + a (Lapf;Z)Ljava/lang/String; m_213986_ + 0 o p_230012_ + 1 o p_230013_ + b (Lapf;Z)Ljava/lang/String; m_213985_ + 0 o p_230015_ + 1 o p_230016_ + b (Lapf;)Ljava/lang/String; m_214127_ + 0 o p_230014_ + c (Lapf;)Ljava/lang/String; m_214128_ + 0 o p_230017_ + d (Lapf;)Ljava/lang/String; m_214124_ + 0 o p_230018_ + e (Lapf;)Ljava/lang/String; m_214125_ + 0 o p_230019_ +duo$c net/minecraft/world/level/levelgen/structure/structures/WoodlandMansionPieces$MansionGrid + a f_230020_ + b f_230021_ + c f_230022_ + d f_230023_ + e f_230024_ + f f_230025_ + g f_230026_ + h f_230027_ + i f_230028_ + j f_230029_ + k f_230030_ + l f_230031_ + m f_230032_ + n f_230033_ + o f_230034_ + p f_230035_ + q f_230036_ + r f_230037_ + s f_230038_ + t f_230039_ + u f_230040_ + v f_230041_ + (Lapf;)V + 0 o p_230043_ + a (Lduo$g;IIII)Z m_230051_ + 0 o p_230052_ + 1 o p_230053_ + 2 o p_230054_ + 3 o p_230055_ + 4 o p_230056_ + a (Lduo$g;)Z m_230045_ + 0 o p_230046_ + a (Lduo$g;Lduo$g;)V m_230063_ + 0 o p_230064_ + 1 o p_230065_ + a ()V m_230044_ + a (Lduo$g;II)Z m_230047_ + static + 0 o p_230048_ + 1 o p_230049_ + 2 o p_230050_ + a (Lduo$g;IILha;I)V m_230057_ + 0 o p_230058_ + 1 o p_230059_ + 2 o p_230060_ + 3 o p_230061_ + 4 o p_230062_ + b (Lduo$g;IIII)Lha; m_230067_ + 0 o p_230068_ + 1 o p_230069_ + 2 o p_230070_ + 3 o p_230071_ + 4 o p_230072_ + b ()V m_230066_ +duo$d net/minecraft/world/level/levelgen/structure/structures/WoodlandMansionPieces$MansionPiecePlacer + a f_230073_ + b f_230074_ + c f_230075_ + d f_230076_ + (Ldvu;Lapf;)V + 0 o p_230078_ + 1 o p_230079_ + a (Ljava/util/List;Lgu;Lcvz;Lha;Lduo$b;)V m_230108_ + 0 o p_230109_ + 1 o p_230110_ + 2 o p_230111_ + 3 o p_230112_ + 4 o p_230113_ + a (Ljava/util/List;Lduo$e;)V m_230085_ + 0 o p_230086_ + 1 o p_230087_ + a (Lgu;Lcvz;Ljava/util/List;Lduo$c;)V m_230080_ + 0 o p_230081_ + 1 o p_230082_ + 2 o p_230083_ + 3 o p_230084_ + a (Ljava/util/List;Lgu;Lcvz;Lduo$g;Lduo$g;)V m_230102_ + 0 o p_230103_ + 1 o p_230104_ + 2 o p_230105_ + 3 o p_230106_ + 4 o p_230107_ + a (Ljava/util/List;Lgu;Lcvz;Lha;Lha;Lduo$b;)V m_230114_ + 0 o p_230115_ + 1 o p_230116_ + 2 o p_230117_ + 3 o p_230118_ + 4 o p_230119_ + 5 o p_230120_ + a (Ljava/util/List;Lduo$e;Lduo$g;Lha;IIII)V m_230088_ + 0 o p_230089_ + 1 o p_230090_ + 2 o p_230091_ + 3 o p_230092_ + 4 o p_230093_ + 5 o p_230094_ + 6 o p_230095_ + 7 o p_230096_ + a (Ljava/util/List;Lgu;Lcvz;Lduo$b;)V m_230097_ + 0 o p_230098_ + 1 o p_230099_ + 2 o p_230100_ + 3 o p_230101_ + a (Ljava/util/List;Lgu;Lcvz;Lha;Lha;Lduo$b;Z)V m_230121_ + 0 o p_230122_ + 1 o p_230123_ + 2 o p_230124_ + 3 o p_230125_ + 4 o p_230126_ + 5 o p_230127_ + 6 o p_230128_ + b (Ljava/util/List;Lduo$e;)V m_230129_ + 0 o p_230130_ + 1 o p_230131_ + c (Ljava/util/List;Lduo$e;)V m_230132_ + 0 o p_230133_ + 1 o p_230134_ + d (Ljava/util/List;Lduo$e;)V m_230135_ + 0 o p_230136_ + 1 o p_230137_ +duo$e net/minecraft/world/level/levelgen/structure/structures/WoodlandMansionPieces$PlacementData + a f_230138_ + b f_230139_ + c f_230140_ + ()V +duo$f net/minecraft/world/level/levelgen/structure/structures/WoodlandMansionPieces$SecondFloorRoomCollection + ()V + a (Lapf;)Ljava/lang/String; m_214126_ + 0 o p_230144_ + a (Lapf;Z)Ljava/lang/String; m_213986_ + 0 o p_230146_ + 1 o p_230147_ + b (Lapf;Z)Ljava/lang/String; m_213985_ + 0 o p_230151_ + 1 o p_230152_ + b (Lapf;)Ljava/lang/String; m_214127_ + 0 o p_230149_ + c (Lapf;)Ljava/lang/String; m_214128_ + 0 o p_230154_ + d (Lapf;)Ljava/lang/String; m_214124_ + 0 o p_230156_ + e (Lapf;)Ljava/lang/String; m_214125_ + 0 o p_230158_ +duo$g net/minecraft/world/level/levelgen/structure/structures/WoodlandMansionPieces$SimpleGrid + a f_230159_ + b f_230160_ + c f_230161_ + d f_230162_ + (III)V + 0 o p_230164_ + 1 o p_230165_ + 2 o p_230166_ + a (IIII)V m_230174_ + 0 o p_230175_ + 1 o p_230176_ + 2 o p_230177_ + 3 o p_230178_ + a (IIIII)V m_230179_ + 0 o p_230180_ + 1 o p_230181_ + 2 o p_230182_ + 3 o p_230183_ + 4 o p_230184_ + a (III)V m_230170_ + 0 o p_230171_ + 1 o p_230172_ + 2 o p_230173_ + a (II)I m_230167_ + 0 o p_230168_ + 1 o p_230169_ + b (III)Z m_230185_ + 0 o p_230186_ + 1 o p_230187_ + 2 o p_230188_ +duo$h net/minecraft/world/level/levelgen/structure/structures/WoodlandMansionPieces$ThirdFloorRoomCollection + ()V +duo$i net/minecraft/world/level/levelgen/structure/structures/WoodlandMansionPieces$WoodlandMansionPiece + (Ldvu;Lqr;)V + 0 o p_230202_ + 1 o p_230203_ + (Ldvu;Ljava/lang/String;Lgu;Lcvz;)V + 0 o p_230191_ + 1 o p_230192_ + 2 o p_230193_ + 3 o p_230194_ + (Ldvu;Ljava/lang/String;Lgu;Lcvz;Lcui;)V + 0 o p_230196_ + 1 o p_230197_ + 2 o p_230198_ + 3 o p_230199_ + 4 o p_230200_ + a (Ljava/lang/String;)Lacq; m_230210_ + static + 0 o p_230211_ + a (Ldsq;Lqr;)V m_183620_ + 0 o p_230208_ + 1 o p_230209_ + a (Lcui;Lcvz;)Ldvp; m_230204_ + static + 0 o p_230205_ + 1 o p_230206_ + a (Lqr;Lacq;)Ldvp; m_230218_ + static + 0 o p_230219_ + 1 o p_230220_ + a (Ljava/lang/String;Lgu;Lcnb;Lapf;Ldrs;)V m_213704_ + 0 o p_230213_ + 1 o p_230214_ + 2 o p_230215_ + 3 o p_230216_ + 4 o p_230217_ + b ()Lacq; m_142415_ +dup net/minecraft/world/level/levelgen/structure/structures/WoodlandMansionStructure + d f_230222_ + ()V + static + (Ldsa$c;)V + 0 o p_230225_ + a (Lcng;Lcne;Lddy;Lapf;Ldrs;Lclt;Ldsp;)V m_214110_ + 0 o p_230227_ + 1 o p_230228_ + 2 o p_230229_ + 3 o p_230230_ + 4 o p_230231_ + 5 o p_230232_ + 6 o p_230233_ + a (Ldsa$a;Lgu;Lcvz;Ldss;)V m_230236_ + 0 o p_230237_ + 1 o p_230238_ + 2 o p_230239_ + 3 o p_230240_ + a (Ldss;Ldsa$a;Lgu;Lcvz;)V m_230241_ + 0 o p_230242_ + 1 o p_230243_ + 2 o p_230244_ + 3 o p_230245_ + a (Ldsa$a;)Ljava/util/Optional; m_214086_ + 0 o p_230235_ + e ()Ldsj; m_213658_ +duq net/minecraft/world/level/levelgen/structure/structures/package-info +dur net/minecraft/world/level/levelgen/structure/templatesystem/AlwaysTrueTest + a f_73953_ + b f_73954_ + ()V + static + ()V + a ()Ldvo; m_7319_ + a (Ldcb;Lapf;)Z m_213865_ + 0 o p_230248_ + 1 o p_230249_ + b ()Ldur; m_73961_ + static +dus net/minecraft/world/level/levelgen/structure/templatesystem/AxisAlignedLinearPosTest + a f_73962_ + b f_73963_ + d f_73964_ + e f_73965_ + f f_73966_ + g f_73967_ + ()V + static + (FFIILha$a;)V + 0 o p_73970_ + 1 o p_73971_ + 2 o p_73972_ + 3 o p_73973_ + 4 o p_73974_ + a (Lgu;Lgu;Lgu;Lapf;)Z m_213782_ + 0 o p_230251_ + 1 o p_230252_ + 2 o p_230253_ + 3 o p_230254_ + a (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; m_73976_ + static + 0 o p_73977_ + a (Ldus;)Lha$a; m_163710_ + static + 0 o p_163711_ + a ()Ldvh; m_6158_ + b (Ldus;)Ljava/lang/Integer; m_163712_ + static + 0 o p_163713_ + c (Ldus;)Ljava/lang/Integer; m_163714_ + static + 0 o p_163715_ + d (Ldus;)Ljava/lang/Float; m_163716_ + static + 0 o p_163717_ + e (Ldus;)Ljava/lang/Float; m_163718_ + static + 0 o p_163719_ +dut net/minecraft/world/level/levelgen/structure/templatesystem/BlackstoneReplaceProcessor + a f_73993_ + b f_73994_ + c f_73995_ + ()V + static + ()V + a ()Ldvs; m_6953_ + a (Ljava/util/HashMap;)V m_74006_ + static + 0 o p_74007_ + a (Lcmp;Lgu;Lgu;Ldvt$c;Ldvt$c;Ldvp;)Ldvt$c; m_7382_ + 0 o p_74000_ + 1 o p_74001_ + 2 o p_74002_ + 3 o p_74003_ + 4 o p_74004_ + 5 o p_74005_ + b ()Ldut; m_74008_ + static +duu net/minecraft/world/level/levelgen/structure/templatesystem/BlockAgeProcessor + a f_74009_ + b f_163720_ + c f_163721_ + d f_163722_ + e f_163723_ + f f_74010_ + ()V + static + (F)V + 0 o p_74013_ + a (Lapf;Ldcb;)Ldcb; m_230260_ + 0 o p_230261_ + 1 o p_230262_ + a ()Ldvs; m_6953_ + a (Lapf;)Ldcb; m_230255_ + 0 o p_230256_ + a (Lapf;Lcpn;)Ldcb; m_230257_ + static + 0 o p_230258_ + 1 o p_230259_ + a (Lapf;[Ldcb;[Ldcb;)Ldcb; m_230266_ + 0 o p_230267_ + 1 o p_230268_ + 2 o p_230269_ + a (Lapf;[Ldcb;)Ldcb; m_230263_ + static + 0 o p_230264_ + 1 o p_230265_ + a (Lduu;)Ljava/lang/Float; m_74022_ + static + 0 o p_74023_ + a (Lcmp;Lgu;Lgu;Ldvt$c;Ldvt$c;Ldvp;)Ldvt$c; m_7382_ + 0 o p_74016_ + 1 o p_74017_ + 2 o p_74018_ + 3 o p_74019_ + 4 o p_74020_ + 5 o p_74021_ + b (Lapf;)Ldcb; m_230270_ + 0 o p_230271_ + c (Lapf;)Ldcb; m_230272_ + 0 o p_230273_ + d (Lapf;)Ldcb; m_230274_ + 0 o p_230275_ +duv net/minecraft/world/level/levelgen/structure/templatesystem/BlockIgnoreProcessor + a f_74045_ + b f_74046_ + c f_74047_ + d f_74048_ + e f_74049_ + ()V + static + (Ljava/util/List;)V + 0 o p_74052_ + a ()Ldvs; m_6953_ + a (Lduv;)Ljava/util/List; m_74061_ + static + 0 o p_74062_ + a (Lcmp;Lgu;Lgu;Ldvt$c;Ldvt$c;Ldvp;)Ldvt$c; m_7382_ + 0 o p_74055_ + 1 o p_74056_ + 2 o p_74057_ + 3 o p_74058_ + 4 o p_74059_ + 5 o p_74060_ +duw net/minecraft/world/level/levelgen/structure/templatesystem/BlockMatchTest + a f_74063_ + b f_74064_ + ()V + static + (Lcpn;)V + 0 o p_74067_ + a (Lduw;)Lcpn; m_74072_ + static + 0 o p_74073_ + a ()Ldvo; m_7319_ + a (Ldcb;Lapf;)Z m_213865_ + 0 o p_230277_ + 1 o p_230278_ +dux net/minecraft/world/level/levelgen/structure/templatesystem/BlockRotProcessor + a f_74074_ + b f_230279_ + c f_74075_ + ()V + static + (Ljava/util/Optional;F)V + 0 o p_230284_ + 1 o p_230285_ + (Lhi;F)V + 0 o p_255622_ + 1 o p_256468_ + (F)V + 0 o p_74078_ + a ()Ldvs; m_6953_ + a (Ldux;)Ljava/lang/Float; m_230288_ + static + 0 o p_230289_ + a (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; m_257363_ + static + 0 o p_259016_ + a (Lcmp;Lgu;Lgu;Ldvt$c;Ldvt$c;Ldvp;)Ldvt$c; m_7382_ + 0 o p_74081_ + 1 o p_74082_ + 2 o p_74083_ + 3 o p_74084_ + 4 o p_74085_ + 5 o p_74086_ + b (Ldux;)Ljava/util/Optional; m_230290_ + static + 0 o p_230291_ +duy net/minecraft/world/level/levelgen/structure/templatesystem/BlockStateMatchTest + a f_74089_ + b f_74090_ + ()V + static + (Ldcb;)V + 0 o p_74093_ + a (Lduy;)Ldcb; m_74098_ + static + 0 o p_74099_ + a ()Ldvo; m_7319_ + a (Ldcb;Lapf;)Z m_213865_ + 0 o p_230293_ + 1 o p_230294_ +duz net/minecraft/world/level/levelgen/structure/templatesystem/CappedProcessor + a f_276424_ + b f_276605_ + c f_276479_ + ()V + static + (Ldvq;Lbdc;)V + 0 o p_277972_ + 1 o p_277402_ + a (Lduz;)Lbdc; m_277153_ + static + 0 o p_277680_ + a ()Ldvs; m_6953_ + a (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; m_276771_ + static + 0 o p_277598_ + a (Lcnb;Lgu;Lgu;Ljava/util/List;Ljava/util/List;Ldvp;)Ljava/util/List; m_276976_ + 0 o p_278291_ + 1 o p_278055_ + 2 o p_277825_ + 3 o p_277746_ + 4 o p_277676_ + 5 o p_277728_ + b (Lduz;)Ldvq; m_276769_ + static + 0 o p_277456_ +dv net/minecraft/commands/arguments/AngleArgument + a f_83803_ + b f_166217_ + c f_83804_ + ()V + static + ()V + a (Lcom/mojang/brigadier/StringReader;)Ldv$a; parse + 0 o p_83809_ + a (Lcom/mojang/brigadier/context/CommandContext;Ljava/lang/String;)F m_83810_ + static + 0 o p_83811_ + 1 o p_83812_ + a ()Ldv; m_83807_ + static + getExamples ()Ljava/util/Collection; getExamples + parse (Lcom/mojang/brigadier/StringReader;)Ljava/lang/Object; parse + 0 o p_83815_ +dv$a net/minecraft/commands/arguments/AngleArgument$SingleAngle + a f_83816_ + b f_83817_ + (FZ)V + 0 o p_83819_ + 1 o p_83820_ + a (Lds;)F m_83825_ + 0 o p_83826_ +dva net/minecraft/world/level/levelgen/structure/templatesystem/GravityProcessor + a f_74100_ + b f_74101_ + c f_74102_ + ()V + static + (Ldhk$a;I)V + 0 o p_74105_ + 1 o p_74106_ + a ()Ldvs; m_6953_ + a (Ldva;)Ljava/lang/Integer; m_163726_ + static + 0 o p_163727_ + a (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; m_74115_ + static + 0 o p_74116_ + a (Lcmp;Lgu;Lgu;Ldvt$c;Ldvt$c;Ldvp;)Ldvt$c; m_7382_ + 0 o p_74109_ + 1 o p_74110_ + 2 o p_74111_ + 3 o p_74112_ + 4 o p_74113_ + 5 o p_74114_ + b (Ldva;)Ldhk$a; m_163728_ + static + 0 o p_163729_ +dvb net/minecraft/world/level/levelgen/structure/templatesystem/JigsawReplacementProcessor + a f_74121_ + b f_74122_ + c f_276536_ + ()V + static + ()V + a ()Ldvs; m_6953_ + a (Lcmp;Lgu;Lgu;Ldvt$c;Ldvt$c;Ldvp;)Ldvt$c; m_7382_ + 0 o p_74127_ + 1 o p_74128_ + 2 o p_74129_ + 3 o p_74130_ + 4 o p_74131_ + 5 o p_74132_ + b ()Ldvb; m_74133_ + static +dvc net/minecraft/world/level/levelgen/structure/templatesystem/LavaSubmergedBlockProcessor + a f_74134_ + b f_74135_ + ()V + static + ()V + a ()Ldvs; m_6953_ + a (Lcmp;Lgu;Lgu;Ldvt$c;Ldvt$c;Ldvp;)Ldvt$c; m_7382_ + 0 o p_74140_ + 1 o p_74141_ + 2 o p_74142_ + 3 o p_74143_ + 4 o p_74144_ + 5 o p_74145_ + b ()Ldvc; m_74146_ + static +dvd net/minecraft/world/level/levelgen/structure/templatesystem/LinearPosTest + a f_74147_ + b f_74148_ + d f_74149_ + e f_74150_ + f f_74151_ + ()V + static + (FFII)V + 0 o p_74154_ + 1 o p_74155_ + 2 o p_74156_ + 3 o p_74157_ + a (Ldvd;)Ljava/lang/Integer; m_163730_ + static + 0 o p_163731_ + a (Lgu;Lgu;Lgu;Lapf;)Z m_213782_ + 0 o p_230296_ + 1 o p_230297_ + 2 o p_230298_ + 3 o p_230299_ + a (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; m_74159_ + static + 0 o p_74160_ + a ()Ldvh; m_6158_ + b (Ldvd;)Ljava/lang/Integer; m_163732_ + static + 0 o p_163733_ + c (Ldvd;)Ljava/lang/Float; m_163734_ + static + 0 o p_163735_ + d (Ldvd;)Ljava/lang/Float; m_163736_ + static + 0 o p_163737_ +dve net/minecraft/world/level/levelgen/structure/templatesystem/NopProcessor + a f_74174_ + b f_74175_ + ()V + static + ()V + a ()Ldvs; m_6953_ + b ()Ldve; m_74186_ + static +dvf net/minecraft/world/level/levelgen/structure/templatesystem/PosAlwaysTrueTest + a f_74187_ + b f_74188_ + ()V + static + ()V + a (Lgu;Lgu;Lgu;Lapf;)Z m_213782_ + 0 o p_230301_ + 1 o p_230302_ + 2 o p_230303_ + 3 o p_230304_ + a ()Ldvh; m_6158_ + b ()Ldvf; m_74197_ + static +dvg net/minecraft/world/level/levelgen/structure/templatesystem/PosRuleTest + c f_74198_ + ()V + static + ()V + a (Lgu;Lgu;Lgu;Lapf;)Z m_213782_ + 0 o p_230305_ + 1 o p_230306_ + 2 o p_230307_ + 3 o p_230308_ + a ()Ldvh; m_6158_ +dvh net/minecraft/world/level/levelgen/structure/templatesystem/PosRuleTestType + a f_74205_ + b f_74206_ + c f_74207_ + ()V + static + a (Ljava/lang/String;Lcom/mojang/serialization/Codec;)Ldvh; m_74211_ + static + 0 o p_74212_ + 1 o p_74213_ + a (Lcom/mojang/serialization/Codec;)Lcom/mojang/serialization/Codec; m_74209_ + static + 0 o p_74210_ + codec ()Lcom/mojang/serialization/Codec; m_74214_ +dvi net/minecraft/world/level/levelgen/structure/templatesystem/ProcessorRule + a f_276568_ + b f_74215_ + c f_74216_ + d f_74217_ + e f_74218_ + f f_74219_ + g f_276504_ + ()V + static + (Ldvn;Ldvn;Ldvg;Ldcb;Ldwb;)V + 0 o p_277678_ + 1 o p_277379_ + 2 o p_278018_ + 3 o p_277412_ + 4 o p_277808_ + (Ldvn;Ldvn;Ldvg;Ldcb;)V + 0 o p_74227_ + 1 o p_74228_ + 2 o p_74229_ + 3 o p_74230_ + (Ldvn;Ldvn;Ldcb;)V + 0 o p_74223_ + 1 o p_74224_ + 2 o p_74225_ + a (Ldcb;Ldcb;Lgu;Lgu;Lgu;Lapf;)Z m_230309_ + 0 o p_230310_ + 1 o p_230311_ + 2 o p_230312_ + 3 o p_230313_ + 4 o p_230314_ + 5 o p_230315_ + a (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; m_276761_ + static + 0 o p_277334_ + a ()Ldcb; m_74237_ + a (Lapf;Lqr;)Lqr; m_276991_ + 0 o p_277551_ + 1 o p_277867_ + a (Ldvi;)Ldwb; m_276760_ + static + 0 o p_277333_ + b (Ldvi;)Ldcb; m_163740_ + static + 0 o p_163741_ + c (Ldvi;)Ldvg; m_163742_ + static + 0 o p_163743_ + d (Ldvi;)Ldvn; m_163744_ + static + 0 o p_163745_ + e (Ldvi;)Ldvn; m_163746_ + static + 0 o p_163747_ +dvj net/minecraft/world/level/levelgen/structure/templatesystem/ProtectedBlockProcessor + a f_163748_ + b f_163749_ + ()V + static + (Lanl;)V + 0 o p_205051_ + a (Ldvj;)Lanl; m_205052_ + static + 0 o p_205053_ + a ()Ldvs; m_6953_ + a (Lcmp;Lgu;Lgu;Ldvt$c;Ldvt$c;Ldvp;)Ldvt$c; m_7382_ + 0 o p_163755_ + 1 o p_163756_ + 2 o p_163757_ + 3 o p_163758_ + 4 o p_163759_ + 5 o p_163760_ +dvk net/minecraft/world/level/levelgen/structure/templatesystem/RandomBlockMatchTest + a f_74258_ + b f_74259_ + d f_74260_ + ()V + static + (Lcpn;F)V + 0 o p_74263_ + 1 o p_74264_ + a (Ldvk;)Ljava/lang/Float; m_163763_ + static + 0 o p_163764_ + a ()Ldvo; m_7319_ + a (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; m_257364_ + static + 0 o p_259017_ + a (Ldcb;Lapf;)Z m_213865_ + 0 o p_230317_ + 1 o p_230318_ + b (Ldvk;)Lcpn; m_163765_ + static + 0 o p_163766_ +dvl net/minecraft/world/level/levelgen/structure/templatesystem/RandomBlockStateMatchTest + a f_74275_ + b f_74276_ + d f_74277_ + ()V + static + (Ldcb;F)V + 0 o p_74280_ + 1 o p_74281_ + a (Ldvl;)Ljava/lang/Float; m_163767_ + static + 0 o p_163768_ + a ()Ldvo; m_7319_ + a (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; m_74286_ + static + 0 o p_74287_ + a (Ldcb;Lapf;)Z m_213865_ + 0 o p_230320_ + 1 o p_230321_ + b (Ldvl;)Ldcb; m_163769_ + static + 0 o p_163770_ +dvm net/minecraft/world/level/levelgen/structure/templatesystem/RuleProcessor + a f_74292_ + b f_74293_ + ()V + static + (Ljava/util/List;)V + 0 o p_74296_ + a ()Ldvs; m_6953_ + a (Ldvm;)Ljava/util/List; m_74305_ + static + 0 o p_74306_ + a (Lcmp;Lgu;Lgu;Ldvt$c;Ldvt$c;Ldvp;)Ldvt$c; m_7382_ + 0 o p_74299_ + 1 o p_74300_ + 2 o p_74301_ + 3 o p_74302_ + 4 o p_74303_ + 5 o p_74304_ +dvn net/minecraft/world/level/levelgen/structure/templatesystem/RuleTest + c f_74307_ + ()V + static + ()V + a ()Ldvo; m_7319_ + a (Ldcb;Lapf;)Z m_213865_ + 0 o p_230322_ + 1 o p_230323_ +dvo net/minecraft/world/level/levelgen/structure/templatesystem/RuleTestType + a f_74312_ + b f_74313_ + c f_74314_ + d f_74315_ + e f_74316_ + f f_74317_ + ()V + static + a (Lcom/mojang/serialization/Codec;)Lcom/mojang/serialization/Codec; m_74319_ + static + 0 o p_74320_ + a (Ljava/lang/String;Lcom/mojang/serialization/Codec;)Ldvo; m_74321_ + static + 0 o p_74322_ + 1 o p_74323_ + codec ()Lcom/mojang/serialization/Codec; m_74324_ +dvp net/minecraft/world/level/levelgen/structure/templatesystem/StructurePlaceSettings + a f_74361_ + b f_74362_ + c f_74363_ + d f_74364_ + e f_74366_ + f f_74367_ + g f_74368_ + h f_74369_ + i f_74370_ + j f_74371_ + k f_74372_ + ()V + a (Lapf;)Ldvp; m_230324_ + 0 o p_230325_ + a (Z)Ldvp; m_74392_ + 0 o p_74393_ + a (Ldrs;)Ldvp; m_74381_ + 0 o p_74382_ + a ()Ldvp; m_74374_ + a (Lgu;)Ldvp; m_74385_ + 0 o p_74386_ + a (Lcvz;)Ldvp; m_74379_ + 0 o p_74380_ + a (Lcui;)Ldvp; m_74377_ + 0 o p_74378_ + a (Ldvq;)Ldvp; m_74383_ + 0 o p_74384_ + a (Ljava/util/List;Lgu;)Ldvt$a; m_74387_ + 0 o p_74388_ + 1 o p_74389_ + b (Z)Ldvp; m_163782_ + 0 o p_163783_ + b ()Ldvp; m_74394_ + b (Lgu;)Lapf; m_230326_ + 0 o p_230327_ + b (Ldvq;)Ldvp; m_74397_ + 0 o p_74398_ + c (Z)Ldvp; m_74402_ + 0 o p_74403_ + c ()Lcui; m_74401_ + d (Z)Ldvp; m_74405_ + 0 o p_74406_ + d ()Lcvz; m_74404_ + e ()Lgu; m_74407_ + f ()Z m_74408_ + g ()Ldrs; m_74409_ + h ()Z m_74410_ + i ()Ljava/util/List; m_74411_ + j ()Z m_74413_ + k ()Z m_74414_ +dvq net/minecraft/world/level/levelgen/structure/templatesystem/StructureProcessor + ()V + a ()Ldvs; m_6953_ + a (Lcnb;Lgu;Lgu;Ljava/util/List;Ljava/util/List;Ldvp;)Ljava/util/List; m_276976_ + 0 o p_278247_ + 1 o p_277590_ + 2 o p_277935_ + 3 o p_278070_ + 4 o p_278053_ + 5 o p_277497_ + a (Lcmp;Lgu;Lgu;Ldvt$c;Ldvt$c;Ldvp;)Ldvt$c; m_7382_ + 0 o p_74416_ + 1 o p_74417_ + 2 o p_74418_ + 3 o p_74419_ + 4 o p_74420_ + 5 o p_74421_ +dvr net/minecraft/world/level/levelgen/structure/templatesystem/StructureProcessorList + a f_74422_ + (Ljava/util/List;)V + 0 o p_74424_ + a ()Ljava/util/List; m_74425_ + toString ()Ljava/lang/String; toString +dvs net/minecraft/world/level/levelgen/structure/templatesystem/StructureProcessorType + a f_74465_ + b f_74466_ + c f_74467_ + d f_74468_ + e f_74456_ + f f_74457_ + g f_74458_ + h f_74459_ + i f_74460_ + j f_74461_ + k f_74462_ + l f_74463_ + m f_74464_ + n f_163784_ + o f_276421_ + ()V + static + a (Lcom/mojang/serialization/Codec;)Lcom/mojang/serialization/Codec; m_74472_ + static + 0 o p_74473_ + a (Lcom/mojang/datafixers/util/Either;)Ldvr; m_74470_ + static + 0 o p_74471_ + a (Ljava/lang/String;Lcom/mojang/serialization/Codec;)Ldvs; m_74476_ + static + 0 o p_74477_ + 1 o p_74478_ + a (Ldvr;)Ldvr; m_163785_ + static + 0 o p_163786_ + b (Ldvr;)Ldvr; m_163787_ + static + 0 o p_163788_ + codec ()Lcom/mojang/serialization/Codec; m_74481_ +dvt net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate + a f_163789_ + b f_163790_ + c f_163791_ + d f_163792_ + e f_163793_ + f f_163794_ + g f_163795_ + h f_163796_ + i f_163797_ + j f_163798_ + k f_163799_ + l f_74482_ + m f_74483_ + n f_74484_ + o f_74485_ + ()V + a (Ljava/lang/String;)V m_74612_ + 0 o p_74613_ + a ([D)Lqx; m_74623_ + 0 o p_74624_ + a (Lgu;Lcvz;Lgu;Lcui;)Ldrs; m_74598_ + 0 o p_74599_ + 1 o p_74600_ + 2 o p_74601_ + 3 o p_74602_ + a (Lgu;Lcui;Lcvz;Lgu;)Lgu; m_74593_ + static + 0 o p_74594_ + 1 o p_74595_ + 2 o p_74596_ + 3 o p_74597_ + a (IIILcmn;ILha;III)V m_74488_ + static + 0 o p_74489_ + 1 o p_74490_ + 2 o p_74491_ + 3 o p_74492_ + 4 o p_74493_ + 5 o p_74494_ + 6 o p_74495_ + 7 o p_74496_ + 8 o p_74497_ + a (Lcvz;)Lhz; m_163808_ + 0 o p_163809_ + a (Lgu;Ldvp;Lcpn;)Ljava/util/List; m_74603_ + 0 o p_74604_ + 1 o p_74605_ + 2 o p_74606_ + a (Ldvp;Lgu;)Lgu; m_74563_ + static + 0 o p_74564_ + 1 o p_74565_ + a (Lgu;Lcui;Lcvz;)Lgu; m_74583_ + 0 o p_74584_ + 1 o p_74585_ + 2 o p_74586_ + a (Lcnb;Lgu;Lgu;Ldvp;Lapf;I)Z m_230328_ + 0 o p_230329_ + 1 o p_230330_ + 2 o p_230331_ + 3 o p_230332_ + 4 o p_230333_ + 5 o p_230334_ + a (Lcnb;Lgu;Lcui;Lcvz;Lgu;Ldrs;Z)V m_74523_ + 0 o p_74524_ + 1 o p_74525_ + 2 o p_74526_ + 3 o p_74527_ + 4 o p_74528_ + 5 o p_74529_ + 6 o p_74530_ + a (Lqr;)Lqr; m_74618_ + 0 o p_74619_ + a ([I)Lqx; m_74625_ + 0 o p_74626_ + a (Lhf;Lqr;)V m_246595_ + 0 o p_255773_ + 1 o p_248574_ + a ()Lhz; m_163801_ + a (Ldvt$c;)I m_74571_ + static + 0 o p_74572_ + a (Lcnb;Lgu;Lgu;Ldvp;Ljava/util/List;)Ljava/util/List; m_74517_ + static + 0 o p_278297_ + 1 o p_74519_ + 2 o p_74520_ + 3 o p_74521_ + 4 o p_74522_ + a (Ljava/util/List;Ljava/util/List;Ljava/util/List;)Ljava/util/List; m_74614_ + static + 0 o p_74615_ + 1 o p_74616_ + 2 o p_74617_ + a (Lcnb;Lqr;)Ljava/util/Optional; m_74543_ + static + 0 o p_74544_ + 1 o p_74545_ + a (Lhf;Lqx;Lqx;)V m_247272_ + 0 o p_256546_ + 1 o p_251056_ + 2 o p_251493_ + a (Lcmm;Lgu;Lhz;ZLcpn;)V m_163802_ + 0 o p_163803_ + 1 o p_163804_ + 2 o p_163805_ + 3 o p_163806_ + 4 o p_163807_ + a (Lgu;Ldvp;Lcpn;Z)Lit/unimi/dsi/fastutil/objects/ObjectArrayList; m_230335_ + 0 o p_230336_ + 1 o p_230337_ + 2 o p_230338_ + 3 o p_230339_ + a (Lbfj;)Z m_74498_ + static + 0 o p_74499_ + a (Lcvz;Lcui;Leei;ZLcnb;Lqr;Lbfj;)V m_274299_ + static + 0 o p_275184_ + 1 o p_275185_ + 2 o p_275186_ + 3 o p_275187_ + 4 o p_275188_ + 5 o p_275189_ + 6 o p_275190_ + a (Ldvp;Lgu;Ldvp;Lgu;)Lgu; m_74566_ + 0 o p_74567_ + 1 o p_74568_ + 2 o p_74569_ + 3 o p_74570_ + a (Ldvt$c;Ljava/util/List;Ljava/util/List;Ljava/util/List;)V m_74573_ + static + 0 o p_74574_ + 1 o p_74575_ + 2 o p_74576_ + 3 o p_74577_ + a (Lcmn;ILeer;III)V m_74510_ + static + 0 o p_74511_ + 1 o p_74512_ + 2 o p_74513_ + 3 o p_74514_ + 4 o p_74515_ + 5 o p_74516_ + a (Lgu;Lcui;Lcvz;II)Lgu; m_74587_ + static + 0 o p_74588_ + 1 o p_74589_ + 2 o p_74590_ + 3 o p_74591_ + 4 o p_74592_ + a (Lgu;Lcvz;Lgu;Lcui;Lhz;)Ldrs; m_163810_ + static + 0 o p_163811_ + 1 o p_163812_ + 2 o p_163813_ + 3 o p_163814_ + 4 o p_163815_ + a (Lcmm;Lgu;Lgu;)V m_74500_ + 0 o p_74501_ + 1 o p_74502_ + 2 o p_74503_ + a (Leei;Lcui;Lcvz;Lgu;)Leei; m_74578_ + static + 0 o p_74579_ + 1 o p_74580_ + 2 o p_74581_ + 3 o p_74582_ + b (Ldvt$c;)I m_74636_ + static + 0 o p_74637_ + b (Ldvp;Lgu;)Ldrs; m_74633_ + 0 o p_74634_ + 1 o p_74635_ + b ()Ljava/lang/String; m_74627_ + c (Ldvt$c;)I m_74640_ + static + 0 o p_74641_ +dvt$1 net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate$1 + a f_74642_ + b f_74643_ + ()V + static +dvt$a net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate$Palette + a f_74645_ + b f_74646_ + (Ljava/util/List;)V + 0 o p_74648_ + a (Lcpn;)Ljava/util/List; m_74653_ + 0 o p_74654_ + a (Lcpn;Ldvt$c;)Z m_163816_ + static + 0 o p_163817_ + 1 o p_163818_ + a ()Ljava/util/List; m_74652_ + b (Lcpn;)Ljava/util/List; m_74658_ + 0 o p_74659_ +dvt$b net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate$SimplePalette + a f_74660_ + b f_74661_ + c f_74662_ + ()V + static + ()V + a (I)Ldcb; m_74667_ + 0 o p_74668_ + a (Ldcb;)I m_74669_ + 0 o p_74670_ + a (Ldcb;I)V m_74671_ + 0 o p_74672_ + 1 o p_74673_ + iterator ()Ljava/util/Iterator; iterator +dvt$c net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate$StructureBlockInfo + a f_74675_ + b f_74676_ + c f_74677_ + (Lgu;Ldcb;Lqr;)V + 0 o f_74675_ + 1 o f_74676_ + 2 o f_74677_ + a ()Lgu; f_74675_ + b ()Ldcb; f_74676_ + c ()Lqr; f_74677_ + equals (Ljava/lang/Object;)Z equals + 0 o p_277366_ + hashCode ()I hashCode + toString ()Ljava/lang/String; toString +dvt$d net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate$StructureEntityInfo + a f_74683_ + b f_74684_ + c f_74685_ + (Leei;Lgu;Lqr;)V + 0 o p_74687_ + 1 o p_74688_ + 2 o p_74689_ +dvu net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager + a f_230340_ + b f_230341_ + c f_230342_ + d f_230343_ + e f_230344_ + f f_230345_ + g f_230346_ + h f_230347_ + i f_230348_ + j f_230349_ + k f_243724_ + l f_244413_ + ()V + static + (Lakx;Ldyy$c;Lcom/mojang/datafixers/DataFixer;Lhf;)V + 0 o p_249872_ + 1 o p_249864_ + 2 o p_249868_ + 3 o p_256126_ + a (Lacq;Ljava/lang/String;)Ljava/nio/file/Path; m_230361_ + 0 o p_230362_ + 1 o p_230363_ + a (Lqr;)Ldvt; m_230404_ + 0 o p_230405_ + a (Lacq;)Ldvt; m_230359_ + 0 o p_230360_ + a (Ljava/lang/String;Ljava/nio/file/Path;)Z m_230379_ + static + 0 o p_230380_ + 1 o p_230381_ + a (Ljava/nio/file/Path;Ljava/lang/String;Ljava/lang/String;)Ljava/util/stream/Stream; m_230394_ + 0 o p_230395_ + 1 o p_230396_ + 2 o p_230397_ + a (Ljava/nio/file/Path;Ljava/nio/file/Path;)Ljava/lang/String; m_230401_ + 0 o p_230402_ + 1 o p_230403_ + a (Ljava/lang/String;Ljava/util/function/Function;Ljava/nio/file/Path;Ljava/nio/file/Path;Ljava/util/function/Consumer;)V m_230382_ + 0 o p_230383_ + 1 o p_230384_ + 2 o p_230385_ + 3 o p_230386_ + 4 o p_230387_ + a (Ljava/io/InputStream;)Ldvt; m_230377_ + 0 o p_230378_ + a (Ljava/nio/file/Path;)Ljava/util/stream/Stream; m_230388_ + 0 o p_230389_ + a ()Ljava/util/stream/Stream; m_230355_ + a (Ljava/nio/file/Path;Ljava/lang/Throwable;)V m_230398_ + static + 0 o p_230399_ + 1 o p_230400_ + a (Lacq;Ljava/nio/file/Path;)Ljava/util/Optional; m_230367_ + 0 o p_230368_ + 1 o p_230369_ + a (Lakx;)V m_230370_ + 0 o p_230371_ + a (Ldvu$a;Ljava/util/function/Consumer;)Ljava/util/Optional; m_230372_ + 0 o p_230373_ + 1 o p_230374_ + a (Ljava/nio/file/Path;Lacq;Ljava/lang/String;)Ljava/nio/file/Path; m_230390_ + static + 0 o p_230391_ + 1 o p_230392_ + 2 o p_230393_ + a (Lacq;Ljava/lang/Throwable;)V m_230364_ + static + 0 o p_230365_ + 1 o p_230366_ + a (ILjava/lang/String;)Ljava/lang/String; m_230356_ + static + 0 o p_230357_ + 1 o p_230358_ + a (Ldvu$b;)Ljava/util/stream/Stream; m_230375_ + static + 0 o p_230376_ + b (Lacq;)Ljava/util/Optional; m_230407_ + 0 o p_230408_ + b (Ljava/nio/file/Path;)Ljava/util/stream/Stream; m_230409_ + 0 o p_230410_ + b ()Ljava/util/stream/Stream; m_230406_ + b (Ljava/nio/file/Path;Lacq;Ljava/lang/String;)Ljava/nio/file/Path; m_230411_ + static + 0 o p_230412_ + 1 o p_230413_ + 2 o p_230414_ + c (Lacq;)Z m_230416_ + 0 o p_230417_ + c (Ljava/nio/file/Path;)Z m_230418_ + static + 0 o p_230419_ + c ()Ljava/util/stream/Stream; m_230415_ + d ()Ljava/util/stream/Stream; m_230420_ + d (Lacq;)V m_230421_ + 0 o p_230422_ + d (Ljava/nio/file/Path;)Ljava/io/InputStream; m_230423_ + static + 0 o p_230424_ + e (Lacq;)Ljava/util/Optional; m_230425_ + 0 o p_230426_ + f (Lacq;)Ljava/util/Optional; m_230427_ + 0 o p_230428_ + g (Lacq;)Ljava/util/Optional; m_230429_ + 0 o p_230430_ + h (Lacq;)Ljava/util/Optional; m_230431_ + 0 o p_230432_ + i (Lacq;)Ljava/io/InputStream; m_230437_ + 0 o p_230438_ +dvu$a net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager$InputStreamOpener + open ()Ljava/io/InputStream; m_230439_ +dvu$b net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplateManager$Source + a f_230440_ + b f_230441_ + (Ljava/util/function/Function;Ljava/util/function/Supplier;)V + 0 o f_230440_ + 1 o f_230441_ + a ()Ljava/util/function/Function; f_230440_ + b ()Ljava/util/function/Supplier; f_230441_ + equals (Ljava/lang/Object;)Z equals + 0 o p_230448_ + hashCode ()I hashCode + toString ()Ljava/lang/String; toString +dvv net/minecraft/world/level/levelgen/structure/templatesystem/TagMatchTest + a f_74690_ + b f_74691_ + ()V + static + (Lanl;)V + 0 o p_205063_ + a ()Ldvo; m_7319_ + a (Ldcb;Lapf;)Z m_213865_ + 0 o p_230452_ + 1 o p_230453_ + a (Ldvv;)Lanl; m_205064_ + static + 0 o p_205065_ +dvw net/minecraft/world/level/levelgen/structure/templatesystem/package-info +dvx net/minecraft/world/level/levelgen/structure/templatesystem/rule/blockentity/AppendLoot + a f_276688_ + b f_276677_ + d f_276575_ + ()V + static + (Lacq;)V + 0 o p_277694_ + a (Lqr;Lrk;)V m_276972_ + static + 0 o p_277415_ + 1 o p_277353_ + a ()Ldwc; m_276855_ + a (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; m_276930_ + static + 0 o p_277957_ + a (Ldvx;)Lacq; m_276970_ + static + 0 o p_277581_ + a (Lapf;Lqr;)Lqr; m_276854_ + 0 o p_277994_ + 1 o p_277854_ +dvy net/minecraft/world/level/levelgen/structure/templatesystem/rule/blockentity/AppendStatic + a f_276564_ + b f_276635_ + ()V + static + (Lqr;)V + 0 o p_277900_ + a ()Ldwc; m_276855_ + a (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; m_276792_ + static + 0 o p_277505_ + a (Ldvy;)Lqr; m_277045_ + static + 0 o p_278105_ + a (Lapf;Lqr;)Lqr; m_276854_ + 0 o p_277835_ + 1 o p_277892_ +dvz net/minecraft/world/level/levelgen/structure/templatesystem/rule/blockentity/Clear + a f_276500_ + b f_276495_ + ()V + static + ()V + a ()Ldwc; m_276855_ + a (Lapf;Lqr;)Lqr; m_276854_ + 0 o p_277601_ + 1 o p_277931_ +dw net/minecraft/commands/arguments/ArgumentSignatures + a f_240907_ + b f_240908_ + c f_231046_ + d f_231047_ + ()V + static + (Lsf;)V + 0 o p_231052_ + (Ljava/util/List;)V + 0 o f_240908_ + a (Ljava/lang/String;)Lth; m_240943_ + 0 o p_241493_ + a (Ltn;Ldw$b;)Ldw; m_245158_ + static + 0 o p_251621_ + 1 o p_248653_ + a (Ldw$b;Ltn$a;)Ldw$a; m_244747_ + static + 0 o p_247961_ + 1 o p_247962_ + a ()Ljava/util/List; f_240908_ + a (Lsf;Ldw$a;)V m_240917_ + static + 0 o p_241214_ + 1 o p_241215_ + a (Lsf;)V m_231061_ + 0 o p_231062_ + equals (Ljava/lang/Object;)Z equals + 0 o p_231071_ + hashCode ()I hashCode + toString ()Ljava/lang/String; toString +dw$a net/minecraft/commands/arguments/ArgumentSignatures$Entry + a f_240910_ + b f_240879_ + (Lsf;)V + 0 o p_241305_ + (Ljava/lang/String;Lth;)V + 0 o f_240910_ + 1 o f_240879_ + a ()Ljava/lang/String; f_240910_ + a (Lsf;)V m_241062_ + 0 o p_241403_ + b ()Lth; f_240879_ + equals (Ljava/lang/Object;)Z equals + 0 o p_241409_ + hashCode ()I hashCode + toString ()Ljava/lang/String; toString +dw$b net/minecraft/commands/arguments/ArgumentSignatures$Signer + sign (Ljava/lang/String;)Lth; m_241068_ + 0 o p_241389_ +dwa net/minecraft/world/level/levelgen/structure/templatesystem/rule/blockentity/Passthrough + a f_276645_ + b f_276690_ + ()V + static + ()V + a ()Ldwc; m_276855_ + a (Lapf;Lqr;)Lqr; m_276854_ + 0 o p_277737_ + 1 o p_277665_ +dwb net/minecraft/world/level/levelgen/structure/templatesystem/rule/blockentity/RuleBlockEntityModifier + c f_276484_ + ()V + static + a ()Ldwc; m_276855_ + a (Lapf;Lqr;)Lqr; m_276854_ + 0 o p_277745_ + 1 o p_277965_ +dwc net/minecraft/world/level/levelgen/structure/templatesystem/rule/blockentity/RuleBlockEntityModifierType + a f_276455_ + b f_276528_ + c f_276423_ + d f_276561_ + ()V + static + a (Lcom/mojang/serialization/Codec;)Lcom/mojang/serialization/Codec; m_276912_ + static + 0 o p_277475_ + a (Ljava/lang/String;Lcom/mojang/serialization/Codec;)Ldwc; m_276888_ + static + 0 o p_277659_ + 1 o p_277876_ + codec ()Lcom/mojang/serialization/Codec; m_276894_ +dwd net/minecraft/world/level/levelgen/structure/templatesystem/rule/blockentity/package-info +dwe net/minecraft/world/level/levelgen/synth/BlendedNoise + a f_210616_ + e f_230454_ + f f_230455_ + g f_164288_ + h f_164289_ + i f_164290_ + j f_230456_ + k f_230457_ + l f_230458_ + m f_230459_ + n f_230460_ + o f_210617_ + p f_192799_ + q f_192800_ + ()V + static + (Lapf;DDDDD)V + 0 o p_230462_ + 1 o p_230463_ + 2 o p_230464_ + 3 o p_230465_ + 4 o p_230466_ + 5 o p_230467_ + (Ldwi;Ldwi;Ldwi;DDDDD)V + 0 o p_230469_ + 1 o p_230470_ + 2 o p_230471_ + 3 o p_230472_ + 4 o p_230473_ + 5 o p_230474_ + 6 o p_230475_ + 7 o p_230476_ + a (Ldhd$b;)D m_207386_ + 0 o p_210621_ + a (Ljava/lang/StringBuilder;)V m_192817_ + 0 o p_192818_ + a (DDDDD)Ldwe; m_230477_ + static + 0 o p_230478_ + 1 o p_230479_ + 2 o p_230480_ + 3 o p_230481_ + 4 o p_230482_ + a ()D m_207402_ + a (Ldwe;)Ljava/lang/Double; m_230487_ + static + 0 o p_230488_ + a (Lapf;)Ldwe; m_230483_ + 0 o p_230484_ + a (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; m_230485_ + static + 0 o p_230486_ + b ()D m_207401_ + b (Ldwe;)Ljava/lang/Double; m_230489_ + static + 0 o p_230490_ + c (Ldwe;)Ljava/lang/Double; m_230492_ + static + 0 o p_230493_ + c ()Laou; m_214023_ + d (Ldwe;)Ljava/lang/Double; m_230494_ + static + 0 o p_230495_ + e (Ldwe;)Ljava/lang/Double; m_230496_ + static + 0 o p_230497_ +dwf net/minecraft/world/level/levelgen/synth/ImprovedNoise + a f_75321_ + b f_75322_ + c f_75323_ + d f_164305_ + e f_75324_ + (Lapf;)V + 0 o p_230499_ + a (Ljava/lang/StringBuilder;)V m_192823_ + 0 o p_192824_ + a (DDD)D m_164308_ + 0 o p_164309_ + 1 o p_164310_ + 2 o p_164311_ + a (DDDDD)D m_75327_ + 0 o p_75328_ + 1 o p_75329_ + 2 o p_75330_ + 3 o p_75331_ + 4 o p_75332_ + a (IIIDDDD)D m_164317_ + 0 o p_164318_ + 1 o p_164319_ + 2 o p_164320_ + 3 o p_164321_ + 4 o p_164322_ + 5 o p_164323_ + 6 o p_164324_ + a (IDDD)D m_75335_ + static + 0 o p_75336_ + 1 o p_75337_ + 2 o p_75338_ + 3 o p_75339_ + a (IIIDDD[D)D m_164325_ + 0 o p_164326_ + 1 o p_164327_ + 2 o p_164328_ + 3 o p_164329_ + 4 o p_164330_ + 5 o p_164331_ + 6 o p_164332_ + a (DDD[D)D m_164312_ + 0 o p_164313_ + 1 o p_164314_ + 2 o p_164315_ + 3 o p_164316_ + a (I)I m_75333_ + 0 o p_75334_ +dwg net/minecraft/world/level/levelgen/synth/NoiseUtils + ()V + a (Ljava/lang/StringBuilder;DDD[B)V m_192825_ + static + 0 o p_192826_ + 1 o p_192827_ + 2 o p_192828_ + 3 o p_192829_ + 4 o p_192830_ + a (DD)D m_164334_ + static + 0 o p_164335_ + 1 o p_164336_ + a (Ljava/lang/StringBuilder;DDD[I)V m_192831_ + static + 0 o p_192832_ + 1 o p_192833_ + 2 o p_192834_ + 3 o p_192835_ + 4 o p_192836_ +dwh net/minecraft/world/level/levelgen/synth/NormalNoise + a f_164344_ + b f_164345_ + c f_75373_ + d f_75374_ + e f_75375_ + f f_210624_ + g f_210625_ + (Lapf;Ldwh$a;Z)V + 0 o p_230501_ + 1 o p_230502_ + 2 o p_230503_ + a (Ljava/lang/StringBuilder;)V m_192846_ + 0 o p_192847_ + a (DDD)D m_75380_ + 0 o p_75381_ + 1 o p_75382_ + 2 o p_75383_ + a (I)D m_75384_ + static + 0 o p_75385_ + a (Lapf;I[D)Ldwh; m_230504_ + static + 0 o p_230505_ + 1 o p_230506_ + 2 o p_230507_ + a (Lapf;Ldwh$a;)Ldwh; m_230508_ + static + 0 o p_230509_ + 1 o p_230510_ + a ()D m_210630_ + b (Lapf;Ldwh$a;)Ldwh; m_230511_ + static + 0 o p_230512_ + 1 o p_230513_ + b ()Ldwh$a; m_192842_ +dwh$a net/minecraft/world/level/levelgen/synth/NormalNoise$NoiseParameters + a f_192851_ + b f_192852_ + c f_192853_ + d f_192854_ + ()V + static + (ID[D)V + 0 o p_192857_ + 1 o p_192858_ + 2 o p_192859_ + (ILjava/util/List;)V + 0 o p_192861_ + 1 o p_192862_ + (ILit/unimi/dsi/fastutil/doubles/DoubleList;)V + 0 o f_192853_ + 1 o f_192854_ + a (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; m_192864_ + static + 0 o p_192865_ + a ()I f_192853_ + a (DLit/unimi/dsi/fastutil/doubles/DoubleArrayList;)V m_210634_ + static + 0 o p_210635_ + 1 o p_210636_ + b ()Lit/unimi/dsi/fastutil/doubles/DoubleList; f_192854_ + equals (Ljava/lang/Object;)Z equals + 0 o p_210638_ + hashCode ()I hashCode + toString ()Ljava/lang/String; toString +dwi net/minecraft/world/level/levelgen/synth/PerlinNoise + a f_164358_ + b f_75390_ + c f_192867_ + d f_75391_ + e f_75392_ + f f_75393_ + g f_210641_ + (Lapf;Lcom/mojang/datafixers/util/Pair;Z)V + 0 o p_230515_ + 1 o p_230516_ + 2 o p_230517_ + a (Lapf;)V m_230518_ + static + 0 o p_230519_ + a (Ljava/lang/StringBuilder;)V m_192890_ + 0 o p_192891_ + a (Lapf;Ljava/util/List;)Ldwi; m_230529_ + static + 0 o p_230530_ + 1 o p_230531_ + a (DDD)D m_75408_ + 0 o p_75409_ + 1 o p_75410_ + 2 o p_75411_ + a (Lapf;ILit/unimi/dsi/fastutil/doubles/DoubleList;)Ldwi; m_230525_ + static + 0 o p_230526_ + 1 o p_230527_ + 2 o p_230528_ + a (Ljava/lang/Double;)Ljava/lang/String; m_241762_ + static + 0 o p_192889_ + a ()D m_210642_ + a (D)D m_210643_ + 0 o p_210644_ + a (Lapf;Ljava/util/stream/IntStream;)Ldwi; m_230532_ + static + 0 o p_230533_ + 1 o p_230534_ + a (I)Ldwf; m_75424_ + 0 o p_75425_ + a (Lit/unimi/dsi/fastutil/ints/IntSortedSet;)Lcom/mojang/datafixers/util/Pair; m_75430_ + static + 0 o p_75431_ + a (DDDDDZ)D m_75417_ + 0 o p_75418_ + 1 o p_75419_ + 2 o p_75420_ + 3 o p_75421_ + 4 o p_75422_ + 5 o p_75423_ + a (Lapf;ID[D)Ldwi; m_230520_ + static + 0 o p_230521_ + 1 o p_230522_ + 2 o p_230523_ + 3 o p_230524_ + b (Lapf;ILit/unimi/dsi/fastutil/doubles/DoubleList;)Ldwi; m_230535_ + static + 0 o p_230536_ + 1 o p_230537_ + 2 o p_230538_ + b (D)D m_75406_ + static + 0 o p_75407_ + b (Ljava/lang/Double;)Z m_192896_ + static + 0 o p_192897_ + b ()I m_192872_ + b (Lapf;Ljava/util/stream/IntStream;)Ldwi; m_230539_ + static + 0 o p_230540_ + 1 o p_230541_ + c (D)D m_210649_ + 0 o p_210650_ + c ()Lit/unimi/dsi/fastutil/doubles/DoubleList; m_192892_ +dwj net/minecraft/world/level/levelgen/synth/PerlinSimplexNoise + a f_75432_ + b f_75433_ + c f_75434_ + (Lapf;Lit/unimi/dsi/fastutil/ints/IntSortedSet;)V + 0 o p_230543_ + 1 o p_230544_ + (Lapf;Ljava/util/List;)V + 0 o p_230546_ + 1 o p_230547_ + a (DDZ)D m_75449_ + 0 o p_75450_ + 1 o p_75451_ + 2 o p_75452_ +dwk net/minecraft/world/level/levelgen/synth/SimplexNoise + a f_75453_ + b f_75454_ + c f_75455_ + d f_75456_ + e f_75457_ + f f_75458_ + g f_75459_ + h f_75460_ + ()V + static + (Lapf;)V + 0 o p_230549_ + a (DDD)D m_75467_ + 0 o p_75468_ + 1 o p_75469_ + 2 o p_75470_ + a (IDDDD)D m_75473_ + 0 o p_75474_ + 1 o p_75475_ + 2 o p_75476_ + 3 o p_75477_ + 4 o p_75478_ + a (I)I m_75471_ + 0 o p_75472_ + a (DD)D m_75464_ + 0 o p_75465_ + 1 o p_75466_ + a ([IDDD)D m_75479_ + static + 0 o p_75480_ + 1 o p_75481_ + 2 o p_75482_ + 3 o p_75483_ +dwl net/minecraft/world/level/levelgen/synth/package-info +dwm net/minecraft/world/level/lighting/BlockLightEngine + g f_75489_ + (Ldel;)V + 0 o p_75492_ + (Ldel;Ldwn;)V + 0 o p_278252_ + 1 o p_278255_ + a (JJ)V m_284321_ + 0 o p_285435_ + 1 o p_285230_ + a (J)V m_75858_ + 0 o p_285169_ + a (Lgu;Ldcb;)V m_284140_ + 0 o p_285266_ + 1 o p_285452_ + a (JLdcb;)I m_284436_ + 0 o p_285243_ + 1 o p_284973_ + a (JJI)V m_284316_ + 0 o p_285500_ + 1 o p_285410_ + 2 o p_285492_ + b (Lclt;)V m_142519_ + 0 o p_285274_ +dwn net/minecraft/world/level/lighting/BlockLightSectionStorage + (Ldel;)V + 0 o p_75511_ + a (J)I m_6181_ + 0 o p_75513_ +dwn$a net/minecraft/world/level/lighting/BlockLightSectionStorage$BlockDataLayerStorageMap + (Lit/unimi/dsi/fastutil/longs/Long2ObjectOpenHashMap;)V + 0 o p_75515_ + a ()Ldwn$a; m_5972_ + b ()Ldwp; m_5972_ +dwo net/minecraft/world/level/lighting/ChunkSkyLightSources + a f_283790_ + b f_283752_ + c f_283758_ + d f_283905_ + e f_283859_ + f f_283783_ + (Lcmo;)V + 0 o p_285502_ + a (Lcls;Lgu;Ldcb;Lgu;Ldcb;)Z m_284529_ + static + 0 o p_285329_ + 1 o p_285258_ + 2 o p_285219_ + 3 o p_285288_ + 4 o p_285512_ + a (I)V m_284134_ + 0 o p_285311_ + a (Lddx;)V m_284271_ + 0 o p_285152_ + a (Lddx;III)I m_284264_ + 0 o p_285214_ + 1 o p_285171_ + 2 o p_285021_ + 3 o p_285226_ + a ()I m_284191_ + a (Lcls;IILgu;Ldcb;Lgu;Ldcb;)Z m_284301_ + 0 o p_285066_ + 1 o p_285184_ + 2 o p_285101_ + 3 o p_285446_ + 4 o p_285185_ + 5 o p_285103_ + 6 o p_285009_ + a (Lcls;III)Z m_284521_ + 0 o p_285514_ + 1 o p_284999_ + 2 o p_285358_ + 3 o p_284944_ + a (II)I m_284402_ + 0 o p_285247_ + 1 o p_285082_ + a (Lcls;Lgu;Ldcb;)I m_284300_ + 0 o p_285279_ + 1 o p_285119_ + 2 o p_285096_ + b (II)V m_284514_ + 0 o p_285323_ + 1 o p_285220_ + b (I)I m_284474_ + 0 o p_284951_ + c (II)I m_284186_ + static + 0 o p_284980_ + 1 o p_285277_ + c (I)I m_284557_ + 0 o p_284953_ +dwp net/minecraft/world/level/lighting/DataLayerStorageMap + a f_75518_ + b f_164421_ + c f_75519_ + d f_75520_ + e f_75521_ + (Lit/unimi/dsi/fastutil/longs/Long2ObjectOpenHashMap;)V + 0 o p_75523_ + a (J)Lded; m_75524_ + 0 o p_281841_ + a (JLded;)V m_75526_ + 0 o p_75527_ + 1 o p_75528_ + b ()Ldwp; m_5972_ + b (J)Z m_75529_ + 0 o p_75530_ + c (J)Lded; m_75532_ + 0 o p_75533_ + c ()V m_75531_ + d (J)Lded; m_75535_ + 0 o p_75536_ + d ()V m_75534_ +dwq net/minecraft/world/level/lighting/DynamicGraphMinFixedPoint + a f_164422_ + b f_278118_ + c f_75539_ + d f_75541_ + e f_278132_ + f f_75537_ + (III)V + 0 o p_75543_ + 1 o p_75544_ + 2 o p_75545_ + a (JJIZ)V m_75576_ + 0 o p_75577_ + 1 o p_75578_ + 2 o p_75579_ + 3 o p_75580_ + a (JJIIIZ)V m_75569_ + 0 o p_75570_ + 1 o p_75571_ + 2 o p_75572_ + 3 o p_75573_ + 4 o p_75574_ + 5 o p_75575_ + a (JI)V m_7351_ + 0 o p_75552_ + 1 o p_75553_ + a (JJI)I m_6357_ + 0 o p_75566_ + 1 o p_75567_ + 2 o p_75568_ + a (JIZ)V m_7900_ + 0 o p_75563_ + 1 o p_75564_ + 2 o p_75565_ + a (Ljava/util/function/LongPredicate;)V m_75581_ + 0 o p_75582_ + a (Ljava/util/function/LongPredicate;Lit/unimi/dsi/fastutil/longs/LongList;J)V m_75583_ + static + 0 o p_75584_ + 1 o p_75585_ + 2 o p_75586_ + a (II)I m_278160_ + 0 o p_278256_ + 1 o p_278328_ + a (J)Z m_6163_ + 0 o p_75551_ + b (JJIZ)V m_75593_ + 0 o p_75594_ + 1 o p_75595_ + 2 o p_75596_ + 3 o p_75597_ + b (JJI)I m_6359_ + 0 o p_75590_ + 1 o p_75591_ + 2 o p_75592_ + b ()Z m_75587_ + b (I)I m_75588_ + 0 o p_75589_ + c (J)I m_6172_ + 0 o p_75599_ + c ()I m_75598_ + e (J)V m_75600_ + 0 o p_75601_ + f (J)V m_6185_ + 0 o p_75602_ +dwq$1 net/minecraft/world/level/lighting/DynamicGraphMinFixedPoint$1 + a f_278131_ + b f_75604_ + (Ldwq;IFI)V + 0 o p_75606_ + 1 o p_75607_ + 2 o p_75608_ + 3 o p_75609_ + rehash (I)V rehash + 0 o p_75611_ +dwr net/minecraft/world/level/lighting/LayerLightEventListener + a (Lhx;)Lded; m_8079_ + 0 o p_75709_ + b (Lgu;)I m_7768_ + 0 o p_75710_ +dwr$a net/minecraft/world/level/lighting/LayerLightEventListener$DummyLightLayerEventListener + a INSTANCE + b $VALUES + ()V + static + (Ljava/lang/String;I)V + 0 o p_75715_ + 1 o p_75716_ + E_ ()Z m_75808_ + a (Lclt;Z)V m_9335_ + 0 o p_164431_ + 1 o p_164432_ + a (Lhx;Z)V m_6191_ + 0 o p_75720_ + 1 o p_75721_ + a (Lgu;)V m_7174_ + 0 o p_164434_ + a ()I m_9323_ + a (Lhx;)Lded; m_8079_ + 0 o p_75718_ + b (Lclt;)V m_142519_ + 0 o p_285209_ + b (Lgu;)I m_7768_ + 0 o p_75723_ + c ()[Ldwr$a; m_164438_ + static + valueOf (Ljava/lang/String;)Ldwr$a; valueOf + static + 0 o p_75725_ + values ()[Ldwr$a; values + static +dws net/minecraft/world/level/lighting/LayerLightSectionStorage + a f_75739_ + b f_283872_ + c f_75731_ + d f_75732_ + e f_75733_ + f f_75734_ + g f_75735_ + h f_283847_ + i f_75738_ + j f_283775_ + k f_75741_ + l f_75742_ + (Lcmv;Ldel;Ldwp;)V + 0 o p_75745_ + 1 o p_75746_ + 2 o p_75747_ + a (Ldwp;J)Lded; m_75761_ + 0 o p_75762_ + 1 o p_75763_ + a ()Z m_6808_ + a (JLded;)V m_284542_ + 0 o p_285403_ + 1 o p_285498_ + a (J)I m_6181_ + 0 o p_75786_ + a (JI)V m_75772_ + 0 o p_75773_ + 1 o p_75774_ + a (JB)V m_284336_ + 0 o p_285451_ + 1 o p_285078_ + a (JZ)Lded; m_75758_ + 0 o p_75759_ + 1 o p_75760_ + a (Ldwv;)V m_284283_ + 0 o p_285081_ + b (J)Z m_75791_ + 0 o p_75792_ + b (JZ)V m_284259_ + 0 o p_285065_ + 1 o p_284938_ + b ()V m_75790_ + c (JZ)V m_75782_ + 0 o p_75783_ + 1 o p_75784_ + c (J)Lded; m_284157_ + 0 o p_285278_ + d (JZ)V m_75787_ + 0 o p_75788_ + 1 o p_75789_ + d (J)Lded; m_75793_ + 0 o p_75794_ + e (J)I m_75795_ + 0 o p_75796_ + f (J)V m_280483_ + 0 o p_281610_ + g (J)Lded; m_7667_ + 0 o p_75797_ + h (J)V m_6177_ + 0 o p_75798_ + i (J)V m_6187_ + 0 o p_75799_ + j (J)Z m_284382_ + 0 o p_285433_ + k (J)Ldws$b; m_284291_ + 0 o p_285114_ + l (J)V m_284497_ + 0 o p_285124_ + m (J)V m_284475_ + 0 o p_285477_ +dws$a net/minecraft/world/level/lighting/LayerLightSectionStorage$SectionState + a f_283943_ + b f_283742_ + c f_283815_ + d f_283868_ + e f_283852_ + ()V + a (BZ)B m_284365_ + static + 0 o p_284954_ + 1 o p_285420_ + a (B)Z m_284490_ + static + 0 o p_285105_ + a (BI)B m_284236_ + static + 0 o p_285516_ + 1 o p_285426_ + b (B)I m_284522_ + static + 0 o p_285437_ + c (B)Ldws$b; m_284376_ + static + 0 o p_285064_ +dws$b net/minecraft/world/level/lighting/LayerLightSectionStorage$SectionType + a EMPTY + b LIGHT_ONLY + c LIGHT_AND_DATA + d f_283935_ + e $VALUES + ()V + static + (Ljava/lang/String;ILjava/lang/String;)V + 0 o p_285416_ + 1 o p_285404_ + 2 o p_285063_ + a ()Ljava/lang/String; m_284377_ + b ()[Ldws$b; m_284484_ + static + valueOf (Ljava/lang/String;)Ldws$b; valueOf + static + 0 o p_285164_ + values ()[Ldws$b; values + static +dwt net/minecraft/world/level/lighting/LevelLightEngine + a f_75802_ + b f_164444_ + c f_164445_ + d f_75803_ + (Ldel;ZZ)V + 0 o p_75805_ + 1 o p_75806_ + 2 o p_75807_ + E_ ()Z m_75808_ + a (Lclt;Z)V m_9335_ + 0 o p_285439_ + 1 o p_285012_ + a (Lhx;Z)V m_6191_ + 0 o p_75827_ + 1 o p_75828_ + a (Lgu;I)I m_75831_ + 0 o p_75832_ + 1 o p_75833_ + a (Lgu;)V m_7174_ + 0 o p_75823_ + a (Lcmv;Lhx;)Ljava/lang/String; m_75816_ + 0 o p_75817_ + 1 o p_75818_ + a ()I m_9323_ + a (Lcmv;Lhx;Lded;)V m_284126_ + 0 o p_285328_ + 1 o p_284962_ + 2 o p_285035_ + a (Lcmv;)Ldwr; m_75814_ + 0 o p_75815_ + a (Lhx;)Z m_284439_ + 0 o p_285319_ + b (Lcmv;Lhx;)Ldws$b; m_284493_ + 0 o p_285008_ + 1 o p_285336_ + b (Lclt;Z)V m_6462_ + 0 o p_75829_ + 1 o p_75830_ + b (Lclt;)V m_142519_ + 0 o p_284998_ + c ()I m_164446_ + d ()I m_164447_ + e ()I m_164448_ +dwu net/minecraft/world/level/lighting/LeveledPriorityQueue + a f_278119_ + b f_278115_ + c f_278122_ + (II)V + 0 o p_278289_ + 1 o p_278259_ + a (JII)V m_278203_ + 0 o p_278232_ + 1 o p_278338_ + 2 o p_278345_ + a ()J m_278178_ + a (I)V m_278149_ + 0 o p_278303_ + a (JI)V m_278202_ + 0 o p_278311_ + 1 o p_278335_ + b ()Z m_278192_ +dwu$1 net/minecraft/world/level/lighting/LeveledPriorityQueue$1 + a f_278129_ + b f_278133_ + (Ldwu;IFI)V + 0 o p_278318_ + 1 o p_278340_ + 2 o p_278275_ + 3 o p_278292_ + rehash (I)V rehash + 0 o p_278313_ +dwv net/minecraft/world/level/lighting/LightEngine + a f_283746_ + b f_283739_ + c f_283854_ + d f_283814_ + e f_283884_ + f f_283849_ + g f_283747_ + h f_283863_ + i f_283823_ + j f_283934_ + k f_283920_ + l f_283860_ + m f_283833_ + n f_283888_ + ()V + static + (Ldel;Ldws;)V + 0 o p_285189_ + 1 o p_284964_ + E_ ()Z m_75808_ + a (Ldcb;JLha;)Lefb; m_284428_ + 0 o p_285136_ + 1 o p_285517_ + 2 o p_285376_ + a (Lhx;Z)V m_6191_ + 0 o p_285167_ + 1 o p_284934_ + a ()I m_9323_ + a (II)Ldek; m_284303_ + 0 o p_284967_ + 1 o p_285447_ + a (Ldcb;)Z m_284265_ + static + 0 o p_285133_ + a (Ldcb;Lgu;)I m_284404_ + 0 o p_285084_ + 1 o p_285057_ + a (JLded;)V m_284203_ + 0 o p_285221_ + 1 o p_285427_ + a (Lclt;Z)V m_9335_ + 0 o p_285116_ + 1 o p_285522_ + a (Lgu;)V m_7174_ + 0 o p_285352_ + a (JJ)V m_284321_ + 0 o p_284941_ + 1 o p_285213_ + a (Lhx;)Lded; m_8079_ + 0 o p_285093_ + a (Lcls;Lgu;Ldcb;Lha;)Lefb; m_284189_ + static + 0 o p_285472_ + 1 o p_285229_ + 2 o p_285020_ + 3 o p_285455_ + a (JLdcb;JLdcb;Lha;)Z m_284187_ + 0 o p_285115_ + 1 o p_285154_ + 2 o p_284957_ + 3 o p_285155_ + 4 o p_285327_ + a (J)V m_75858_ + 0 o p_285507_ + a (Lcls;Lgu;Ldcb;Ldcb;)Z m_284387_ + static + 0 o p_285159_ + 1 o p_284985_ + 2 o p_285110_ + 3 o p_285372_ + a (JJI)V m_284316_ + 0 o p_285325_ + 1 o p_285026_ + 2 o p_285197_ + a (Lcls;Ldcb;Lgu;Ldcb;Lgu;Lha;I)I m_284282_ + static + 0 o p_285330_ + 1 o p_285453_ + 2 o p_285187_ + 3 o p_285318_ + 4 o p_285240_ + 5 o p_285196_ + 6 o p_285248_ + b (JJ)V m_284343_ + 0 o p_285228_ + 1 o p_285464_ + b (Lclt;Z)V m_284245_ + 0 o p_285314_ + 1 o p_284937_ + b (J)Ljava/lang/String; m_284216_ + 0 o p_285363_ + b (Lgu;)I m_7768_ + 0 o p_285149_ + c (J)Ldws$b; m_284437_ + 0 o p_285320_ + c (Lgu;)Ldcb; m_284512_ + 0 o p_285338_ + c ()V m_284550_ + c (JJ)V m_284218_ + 0 o p_285223_ + 1 o p_285022_ + d ()I m_284361_ + e ()I m_284399_ +dwv$a net/minecraft/world/level/lighting/LightEngine$QueueEntry + a f_283813_ + b f_283763_ + c f_283912_ + d f_283794_ + e f_283865_ + f f_283793_ + ()V + a (ILha;)J m_284546_ + static + 0 o p_285429_ + 1 o p_285207_ + a (IZ)J m_284185_ + static + 0 o p_285199_ + 1 o p_284986_ + a (I)J m_284290_ + static + 0 o p_285144_ + a (J)I m_284170_ + static + 0 o p_285483_ + a (JLha;)Z m_284416_ + static + 0 o p_285347_ + 1 o p_285291_ + a (IZLha;)J m_284188_ + static + 0 o p_285091_ + 1 o p_285186_ + 2 o p_285382_ + a (ZZZZZ)J m_284543_ + static + 0 o p_285487_ + 1 o p_285390_ + 2 o p_285476_ + 3 o p_285505_ + 4 o p_285127_ + a (JI)J m_284455_ + static + 0 o p_285234_ + 1 o p_285042_ + b (IZLha;)J m_284128_ + static + 0 o p_285025_ + 1 o p_285384_ + 2 o p_285072_ + b (J)Z m_284390_ + static + 0 o p_285436_ + b (JLha;)J m_284335_ + static + 0 o p_285295_ + 1 o p_285016_ + c (J)Z m_284312_ + static + 0 o p_285348_ + c (JLha;)J m_284441_ + static + 0 o p_285366_ + 1 o p_285489_ +dww net/minecraft/world/level/lighting/LightEventListener + E_ ()Z m_75808_ + a (Lclt;Z)V m_9335_ + 0 o p_164452_ + 1 o p_164453_ + a (Lhx;Z)V m_6191_ + 0 o p_75837_ + 1 o p_75838_ + a (Lgu;)V m_7174_ + 0 o p_164454_ + a (Lgu;Z)V m_75834_ + 0 o p_75835_ + 1 o p_75836_ + a ()I m_9323_ + b (Lclt;)V m_142519_ + 0 o p_285263_ +dwx net/minecraft/world/level/lighting/SkyLightEngine + g f_283759_ + h f_283845_ + i f_283756_ + j f_283853_ + k f_283855_ + ()V + static + (Ldel;Ldwy;)V + 0 o p_282215_ + 1 o p_282341_ + (Ldel;)V + 0 o p_75843_ + a (Lha;II)Z m_284202_ + static + 0 o p_285014_ + 1 o p_284991_ + 2 o p_285468_ + a (Lclt;Z)V m_9335_ + 0 o p_285459_ + 1 o p_285013_ + a (JLha;IZI)V m_284181_ + 0 o p_284965_ + 1 o p_285308_ + 2 o p_284977_ + 3 o p_285001_ + 4 o p_285052_ + a (III)I m_284344_ + 0 o p_285058_ + 1 o p_285191_ + 2 o p_285111_ + a (JJ)V m_284321_ + 0 o p_285015_ + 1 o p_285395_ + a (IIII)V m_284317_ + 0 o p_285475_ + 1 o p_285138_ + 2 o p_285130_ + 3 o p_285112_ + a (I)Z m_284444_ + static + 0 o p_285004_ + a (J)V m_75858_ + 0 o p_75859_ + a (JJI)V m_284316_ + 0 o p_285341_ + 1 o p_285204_ + 2 o p_285003_ + b (II)Ldwo; m_284231_ + 0 o p_285270_ + 1 o p_285307_ + b (Lclt;)V m_142519_ + 0 o p_285333_ + b (IIII)V m_284375_ + 0 o p_285241_ + 1 o p_285212_ + 2 o p_284972_ + 3 o p_285134_ + b (III)V m_284427_ + 0 o p_285053_ + 1 o p_285140_ + 2 o p_285337_ + d (J)I m_284210_ + 0 o p_285356_ +dwx$1 net/minecraft/world/level/lighting/SkyLightEngine$1 + a f_283792_ + ()V + static +dwy net/minecraft/world/level/lighting/SkyLightSectionStorage + (Ldel;)V + 0 o p_75868_ + a (J)I m_6181_ + 0 o p_75880_ + a (I)Z m_75870_ + 0 o p_278270_ + a (Lded;)Lded; m_182512_ + static + 0 o p_182513_ + c ()I m_284293_ + e (JZ)I m_164457_ + 0 o p_164458_ + 1 o p_164459_ + g (J)Lded; m_7667_ + 0 o p_75883_ + h (J)V m_6177_ + 0 o p_75885_ + i (J)V m_6187_ + 0 o p_75887_ + l (J)Z m_75890_ + 0 o p_75891_ + m (J)I m_284384_ + 0 o p_285094_ +dwy$a net/minecraft/world/level/lighting/SkyLightSectionStorage$SkyDataLayerStorageMap + b f_75900_ + c f_75901_ + (Lit/unimi/dsi/fastutil/longs/Long2ObjectOpenHashMap;Lit/unimi/dsi/fastutil/longs/Long2IntOpenHashMap;I)V + 0 o p_75903_ + 1 o p_75904_ + 2 o p_75905_ + a ()Ldwy$a; m_5972_ + b ()Ldwp; m_5972_ +dwz net/minecraft/world/level/lighting/SpatialLongSet + a f_164460_ + (IF)V + 0 o p_164462_ + 1 o p_164463_ + add (J)Z add + 0 o p_164465_ + isEmpty ()Z isEmpty + rem (J)Z rem + 0 o p_164468_ + removeFirstLong ()J removeFirstLong + size ()I size +dwz$a net/minecraft/world/level/lighting/SpatialLongSet$InternalMap + a f_164471_ + b f_164472_ + c f_164473_ + d f_164474_ + e f_164475_ + g f_164476_ + h f_164477_ + i f_164478_ + j f_164479_ + k f_164480_ + ()V + static + (IF)V + 0 o p_164483_ + 1 o p_164484_ + a ()J m_164485_ + a (IJ)Z m_164486_ + 0 o p_164487_ + 1 o p_164488_ + a (JI)J m_164491_ + static + 0 o p_164492_ + 1 o p_164493_ + a (J)J m_164489_ + static + 0 o p_164490_ + b (IJ)Z m_164494_ + 0 o p_164495_ + 1 o p_164496_ + b (J)I m_164497_ + static + 0 o p_164498_ + c (J)Z m_164499_ + 0 o p_164500_ + d (J)Z m_164501_ + 0 o p_164502_ + e (J)Z m_164503_ + 0 o p_164504_ + rehash (I)V rehash + 0 o p_164506_ +dx net/minecraft/commands/arguments/ColorArgument + a f_85459_ + b f_85460_ + ()V + static + ()V + a (Lcom/mojang/brigadier/context/CommandContext;Ljava/lang/String;)Ln; m_85466_ + static + 0 o p_85467_ + 1 o p_85468_ + a (Ljava/lang/Object;)Lcom/mojang/brigadier/Message; m_85469_ + static + 0 o p_85470_ + a ()Ldx; m_85463_ + static + a (Lcom/mojang/brigadier/StringReader;)Ln; parse + 0 o p_85465_ + getExamples ()Ljava/util/Collection; getExamples + listSuggestions (Lcom/mojang/brigadier/context/CommandContext;Lcom/mojang/brigadier/suggestion/SuggestionsBuilder;)Ljava/util/concurrent/CompletableFuture; listSuggestions + 0 o p_85473_ + 1 o p_85474_ + parse (Lcom/mojang/brigadier/StringReader;)Ljava/lang/Object; parse + 0 o p_85476_ +dxa net/minecraft/world/level/lighting/package-info +dxb net/minecraft/world/level/material/EmptyFluid + ()V + a (Lcmp;)I m_6718_ + 0 o p_75922_ + a (Lcls;Lgu;Ldxe;)Leei; m_7000_ + 0 o p_75918_ + 1 o p_75919_ + 2 o p_75920_ + a (Ldxe;)F m_7427_ + 0 o p_75924_ + a ()Lcfu; m_6859_ + a (Ldxe;Lcls;Lgu;)F m_6098_ + 0 o p_75926_ + 1 o p_75927_ + 2 o p_75928_ + a (Ldxe;Lcls;Lgu;Ldxd;Lha;)Z m_5486_ + 0 o p_75930_ + 1 o p_75931_ + 2 o p_75932_ + 3 o p_75933_ + 4 o p_75934_ + b (Ldxe;)Ldcb; m_5804_ + 0 o p_75937_ + b (Ldxe;Lcls;Lgu;)Lefb; m_7999_ + 0 o p_75939_ + 1 o p_75940_ + 2 o p_75941_ + b ()Z m_6759_ + c ()F m_6752_ + c (Ldxe;)Z m_7444_ + 0 o p_75944_ + d (Ldxe;)I m_7430_ + 0 o p_75946_ +dxc net/minecraft/world/level/material/FlowingFluid + a f_75947_ + b f_75948_ + e f_164507_ + f f_75949_ + g f_75950_ + ()V + static + ()V + a (Lcmp;Lgu;)I m_76019_ + 0 o p_76020_ + 1 o p_76021_ + a (Lcls;Lgu;Lha;)Z m_75990_ + 0 o p_75991_ + 1 o p_75992_ + 2 o p_75993_ + a (Z)Ldxe; m_76068_ + 0 o p_76069_ + a (Lcmp;Lgu;S)Lcom/mojang/datafixers/util/Pair; m_284125_ + static + 0 o p_284930_ + 1 o p_284931_ + 2 o p_284932_ + a (Lcls;Lgu;Ldcb;Ldxd;)Z m_75972_ + 0 o p_75973_ + 1 o p_75974_ + 2 o p_75975_ + 3 o p_75976_ + a (Lcmm;Lgu;Ldxe;)V m_76010_ + 0 o p_255851_ + 1 o p_76012_ + 2 o p_76013_ + a (Ldxe;Lcls;Lgu;)F m_6098_ + 0 o p_76050_ + 1 o p_76051_ + 2 o p_76052_ + a (Lcmm;Lgu;Ldxe;Ldxe;)I m_6886_ + 0 o p_75998_ + 1 o p_75999_ + 2 o p_76000_ + 3 o p_76001_ + a (Lcmm;Lgu;Ldxe;Ldcb;)V m_76014_ + 0 o p_256644_ + 1 o p_76016_ + 2 o p_76017_ + 3 o p_76018_ + a (Lgu;Lgu;)S m_76058_ + static + 0 o p_76059_ + 1 o p_76060_ + a (Lcls;Ldxd;Lgu;Ldcb;Lha;Lgu;Ldcb;Ldxe;)Z m_75963_ + 0 o p_75964_ + 1 o p_75965_ + 2 o p_75966_ + 3 o p_75967_ + 4 o p_75968_ + 5 o p_75969_ + 6 o p_75970_ + 7 o p_75971_ + a (Ldcc$a;)V m_7180_ + 0 o p_76046_ + a (Lcls;Lgu;Ldxe;)Leei; m_7000_ + 0 o p_75987_ + 1 o p_75988_ + 2 o p_75989_ + a (IZ)Ldxe; m_75953_ + 0 o p_75954_ + 1 o p_75955_ + a (Lcmm;Lgu;S)Lcom/mojang/datafixers/util/Pair; m_284124_ + static + 0 o p_284927_ + 1 o p_284928_ + 2 o p_284929_ + a (Ldxe;)F m_7427_ + 0 o p_76048_ + a (Lha;Lcls;Lgu;Ldcb;Lgu;Ldcb;)Z m_76061_ + 0 o p_76062_ + 1 o p_76063_ + 2 o p_76064_ + 3 o p_76065_ + 4 o p_76066_ + 5 o p_76067_ + a (Lcls;Ldxd;Lgu;Ldcb;Lgu;Ldcb;)Z m_75956_ + 0 o p_75957_ + 1 o p_75958_ + 2 o p_75959_ + 3 o p_75960_ + 4 o p_75961_ + 5 o p_75962_ + a (Lcmm;Lgu;Lgu;Ldcb;S)Z m_254836_ + 0 o p_255608_ + 1 o p_255609_ + 2 o p_255610_ + 3 o p_255611_ + 4 o p_255612_ + a (Lcls;Lgu;Ldcb;Lha;Lgu;Ldcb;Ldxe;Ldxd;)Z m_75977_ + 0 o p_75978_ + 1 o p_75979_ + 2 o p_75980_ + 3 o p_75981_ + 4 o p_75982_ + 5 o p_75983_ + 6 o p_75984_ + 7 o p_75985_ + a (Lgu;Lcmp;Ldcb;S)Z m_192908_ + 0 o p_192909_ + 1 o p_192910_ + 2 o p_192911_ + 3 o p_192912_ + a (Lcmn;Lgu;Ldcb;Lha;Ldxe;)V m_6364_ + 0 o p_76005_ + 1 o p_76006_ + 2 o p_76007_ + 3 o p_76008_ + 4 o p_76009_ + a (Lcmm;Lgu;Ldcb;)Ldxe; m_76035_ + 0 o p_256464_ + 1 o p_76037_ + 2 o p_76038_ + a (Lcmm;)Z m_6760_ + 0 o p_256009_ + a (Lcmn;Lgu;Ldcb;)V m_7456_ + 0 o p_76002_ + 1 o p_76003_ + 2 o p_76004_ + a (Lcmp;Lgu;ILha;Ldcb;Lgu;Lit/unimi/dsi/fastutil/shorts/Short2ObjectMap;Lit/unimi/dsi/fastutil/shorts/Short2BooleanMap;)I m_76026_ + 0 o p_76027_ + 1 o p_76028_ + 2 o p_76029_ + 3 o p_76030_ + 4 o p_76031_ + 5 o p_76032_ + 6 o p_76033_ + 7 o p_76034_ + b (Ldxe;Lcls;Lgu;)Lefb; m_7999_ + 0 o p_76084_ + 1 o p_76085_ + 2 o p_76086_ + b (Lcmp;)I m_6719_ + 0 o p_76074_ + b (Lcls;Lgu;Ldxe;)Lefb; m_76070_ + static + 0 o p_76071_ + 1 o p_76072_ + 2 o p_76073_ + b (Lcmm;Lgu;Ldcb;)Ljava/util/Map; m_76079_ + 0 o p_256191_ + 1 o p_76081_ + 2 o p_76082_ + b (Lcmm;Lgu;Ldxe;)V m_6292_ + 0 o p_75995_ + 1 o p_75996_ + 2 o p_75997_ + c (Lcmp;)I m_6713_ + 0 o p_76087_ + c (Ldxe;Lcls;Lgu;)Z m_76088_ + static + 0 o p_76089_ + 1 o p_76090_ + 2 o p_76091_ + d (Ldxe;)I m_7430_ + 0 o p_164509_ + d ()Ldxd; m_5615_ + e (Ldxe;)I m_76092_ + static + 0 o p_76093_ + e ()Ldxd; m_5613_ + g (Ldxe;)Z m_76094_ + 0 o p_76095_ + h (Ldxe;)Z m_76096_ + 0 o p_76097_ + l ()Lit/unimi/dsi/fastutil/objects/Object2ByteLinkedOpenHashMap; m_76098_ + static +dxc$1 net/minecraft/world/level/material/FlowingFluid$1 + (I)V + 0 o p_76100_ + rehash (I)V rehash + 0 o p_76102_ +dxd net/minecraft/world/level/material/Fluid + a f_76103_ + b f_205066_ + c f_76104_ + d f_76105_ + ()V + static + ()V + a (Ldxe;Lcls;Lgu;)F m_6098_ + 0 o p_76124_ + 1 o p_76125_ + 2 o p_76126_ + a (Ldxe;Lcls;Lgu;Ldxd;Lha;)Z m_5486_ + 0 o p_76127_ + 1 o p_76128_ + 2 o p_76129_ + 3 o p_76130_ + 4 o p_76131_ + a (Lcmp;)I m_6718_ + 0 o p_76120_ + a (Ldcc$a;)V m_7180_ + 0 o p_76121_ + a (Lcmm;Lgu;Ldxe;Lapf;)V m_213811_ + 0 o p_230550_ + 1 o p_230551_ + 2 o p_230552_ + 3 o p_230553_ + a (Lcls;Lgu;Ldxe;)Leei; m_7000_ + 0 o p_76110_ + 1 o p_76111_ + 2 o p_76112_ + a (Ldxd;)Z m_6212_ + 0 o p_76122_ + a (Ldxe;)F m_7427_ + 0 o p_76123_ + a ()Lcfu; m_6859_ + a (Lanl;)Z m_205067_ + 0 o p_205068_ + b (Ldxe;Lcls;Lgu;)Lefb; m_7999_ + 0 o p_76137_ + 1 o p_76138_ + 2 o p_76139_ + b (Lcmm;Lgu;Ldxe;Lapf;)V m_213812_ + 0 o p_230554_ + 1 o p_230555_ + 2 o p_230556_ + 3 o p_230557_ + b (Ldxe;)Ldcb; m_5804_ + 0 o p_76136_ + b ()Z m_6759_ + b (Lcmm;Lgu;Ldxe;)V m_6292_ + 0 o p_76113_ + 1 o p_76114_ + 2 o p_76115_ + c ()F m_6752_ + c (Ldxe;)Z m_7444_ + 0 o p_76140_ + d (Ldxe;)I m_7430_ + 0 o p_76141_ + f (Ldxe;)V m_76142_ + 0 o p_76143_ + f ()Ldcc; m_76144_ + g ()Ldxe; m_76145_ + h ()Lit; m_7792_ + i ()Z m_6685_ + j ()Ljava/util/Optional; m_142520_ + k ()Lhe$c; m_205069_ +dxe net/minecraft/world/level/material/FluidState + a f_76146_ + b f_164510_ + g f_164511_ + ()V + static + (Ldxd;Lcom/google/common/collect/ImmutableMap;Lcom/mojang/serialization/MapCodec;)V + 0 o p_76149_ + 1 o p_76150_ + 2 o p_76151_ + a (Lcmm;Lgu;Lapf;)V m_230558_ + 0 o p_230559_ + 1 o p_230560_ + 2 o p_230561_ + a (Lcls;Lgu;)F m_76155_ + 0 o p_76156_ + 1 o p_76157_ + a (Lcls;Lgu;Ldxd;Lha;)Z m_76158_ + 0 o p_76159_ + 1 o p_76160_ + 2 o p_76161_ + 3 o p_76162_ + a (Lhi;)Z m_205072_ + 0 o p_205073_ + a (Ldxd;)Z m_164512_ + 0 o p_164513_ + a (Lanl;)Z m_205070_ + 0 o p_205071_ + a ()Ldxd; m_76152_ + a (Lcmm;Lgu;)V m_76163_ + 0 o p_76164_ + 1 o p_76165_ + b (Lcmm;Lgu;Lapf;)V m_230562_ + 0 o p_230563_ + 1 o p_230564_ + 2 o p_230565_ + b (Ldxd;)Z m_192917_ + 0 o p_192918_ + b (Lcls;Lgu;)Z m_76171_ + 0 o p_76172_ + 1 o p_76173_ + b ()Z m_76170_ + c ()Z m_76178_ + c (Lcls;Lgu;)Leei; m_76179_ + 0 o p_76180_ + 1 o p_76181_ + d (Lcls;Lgu;)Lefb; m_76183_ + 0 o p_76184_ + 1 o p_76185_ + d ()F m_76182_ + e ()I m_76186_ + f ()Z m_76187_ + g ()Ldcb; m_76188_ + h ()Lit; m_76189_ + i ()F m_76190_ + j ()Lhe; m_205074_ + k ()Ljava/util/stream/Stream; m_205075_ +dxf net/minecraft/world/level/material/Fluids + a f_76191_ + b f_76192_ + c f_76193_ + d f_76194_ + e f_76195_ + ()V + static + ()V + a (Ljava/lang/String;Ldxd;)Ldxd; m_76197_ + static + 0 o p_76198_ + 1 o p_76199_ +dxg net/minecraft/world/level/material/FogType + a LAVA + b WATER + c POWDER_SNOW + d NONE + e $VALUES + ()V + static + (Ljava/lang/String;I)V + 0 o p_164522_ + 1 o p_164523_ + a ()[Ldxg; m_164524_ + static + valueOf (Ljava/lang/String;)Ldxg; valueOf + static + 0 o p_164526_ + values ()[Ldxg; values + static +dxh net/minecraft/world/level/material/LavaFluid + e f_164528_ + ()V + a (Lcmp;)I m_6718_ + 0 o p_76226_ + a (Lcmm;Lgu;Ldxe;Lapf;)V m_213811_ + 0 o p_230567_ + 1 o p_230568_ + 2 o p_230569_ + 3 o p_230570_ + a (Ldxd;)Z m_6212_ + 0 o p_76231_ + a ()Lcfu; m_6859_ + a (Ldxe;Lcls;Lgu;Ldxd;Lha;)Z m_5486_ + 0 o p_76233_ + 1 o p_76234_ + 2 o p_76235_ + 3 o p_76236_ + 4 o p_76237_ + a (Lcmm;Lgu;Ldxe;Ldxe;)I m_6886_ + 0 o p_76203_ + 1 o p_76204_ + 2 o p_76205_ + 3 o p_76206_ + a (Lcmn;Lgu;Ldcb;Lha;Ldxe;)V m_6364_ + 0 o p_76220_ + 1 o p_76221_ + 2 o p_76222_ + 3 o p_76223_ + 4 o p_76224_ + a (Lcmn;Lgu;)V m_76212_ + 0 o p_76213_ + 1 o p_76214_ + a (Lcmn;Lgu;Ldcb;)V m_7456_ + 0 o p_76216_ + 1 o p_76217_ + 2 o p_76218_ + a (Lcmm;)Z m_6760_ + 0 o p_256295_ + a (Lcmp;Lgu;)Z m_76227_ + 0 o p_76228_ + 1 o p_76229_ + b (Lcmp;)I m_6719_ + 0 o p_76244_ + b (Ldxe;)Ldcb; m_5804_ + 0 o p_76249_ + b (Lcmp;Lgu;)Z m_76245_ + 0 o p_76246_ + 1 o p_76247_ + b (Lcmm;Lgu;Ldxe;Lapf;)V m_213812_ + 0 o p_230572_ + 1 o p_230573_ + 2 o p_230574_ + 3 o p_230575_ + c ()F m_6752_ + c (Lcmp;)I m_6713_ + 0 o p_76252_ + d ()Ldxd; m_5615_ + e ()Ldxd; m_5613_ + h ()Lit; m_7792_ + i ()Z m_6685_ + j ()Ljava/util/Optional; m_142520_ +dxh$a net/minecraft/world/level/material/LavaFluid$Flowing + ()V + a (Ldcc$a;)V m_7180_ + 0 o p_76260_ + c (Ldxe;)Z m_7444_ + 0 o p_76262_ + d (Ldxe;)I m_7430_ + 0 o p_76264_ +dxh$b net/minecraft/world/level/material/LavaFluid$Source + ()V + c (Ldxe;)Z m_7444_ + 0 o p_76267_ + d (Ldxe;)I m_7430_ + 0 o p_76269_ +dxi net/minecraft/world/level/material/MapColor + A f_283748_ + B f_283784_ + C f_283913_ + D f_283927_ + E f_283757_ + F f_283821_ + G f_283933_ + H f_283812_ + I f_283819_ + J f_283820_ + K f_283919_ + L f_283895_ + M f_283850_ + N f_283791_ + O f_283843_ + P f_283778_ + Q f_283870_ + R f_283861_ + S f_283907_ + T f_283846_ + U f_283892_ + V f_283908_ + W f_283774_ + X f_283856_ + Y f_283798_ + Z f_283771_ + a f_283808_ + aa f_283909_ + ab f_283804_ + ac f_283883_ + ad f_283745_ + ae f_283749_ + af f_283807_ + ag f_283898_ + ah f_283875_ + ai f_283877_ + aj f_283769_ + ak f_283871_ + al f_283805_ + am f_283862_ + b f_283824_ + c f_283761_ + d f_283930_ + e f_283816_ + f f_283828_ + g f_283906_ + h f_283915_ + i f_283811_ + j f_283744_ + k f_283762_ + l f_283947_ + m f_283864_ + n f_283825_ + o f_283942_ + p f_283750_ + q f_283931_ + r f_283869_ + s f_283832_ + t f_283916_ + u f_283765_ + v f_283818_ + w f_283779_ + x f_283772_ + y f_283889_ + z f_283743_ + ()V + static + (II)V + 0 o p_285303_ + 1 o p_284979_ + a (I)Ldxi; m_284175_ + static + 0 o p_285273_ + a (Ldxi$a;)I m_284280_ + 0 o p_285401_ + b (Ldxi$a;)B m_284523_ + 0 o p_285070_ + b (I)I m_284315_ + static + 0 o p_285190_ + c (I)Ldxi; m_284381_ + static + 0 o p_285180_ +dxi$a net/minecraft/world/level/material/MapColor$Brightness + a LOW + b NORMAL + c HIGH + d LOWEST + e f_283941_ + f f_283785_ + g f_283939_ + h $VALUES + ()V + static + (Ljava/lang/String;III)V + 0 o p_285460_ + 1 o p_285518_ + 2 o p_284956_ + 3 o p_285069_ + a (I)Ldxi$a; m_284351_ + static + 0 o p_284960_ + a ()[Ldxi$a; m_284371_ + static + b (I)Ldxi$a; m_284389_ + static + 0 o p_285089_ + valueOf (Ljava/lang/String;)Ldxi$a; valueOf + static + 0 o p_285175_ + values ()[Ldxi$a; values + static +dxj net/minecraft/world/level/material/PushReaction + a NORMAL + b DESTROY + c BLOCK + d IGNORE + e PUSH_ONLY + f $VALUES + ()V + static + (Ljava/lang/String;I)V + 0 o p_76437_ + 1 o p_76438_ + a ()[Ldxj; m_164537_ + static + valueOf (Ljava/lang/String;)Ldxj; valueOf + static + 0 o p_76440_ + values ()[Ldxj; values + static +dxk net/minecraft/world/level/material/WaterFluid + ()V + a (Lcmp;)I m_6718_ + 0 o p_76454_ + a (Lcmm;Lgu;Ldxe;Lapf;)V m_213811_ + 0 o p_230606_ + 1 o p_230607_ + 2 o p_230608_ + 3 o p_230609_ + a (Ldxd;)Z m_6212_ + 0 o p_76456_ + a ()Lcfu; m_6859_ + a (Ldxe;Lcls;Lgu;Ldxd;Lha;)Z m_5486_ + 0 o p_76458_ + 1 o p_76459_ + 2 o p_76460_ + 3 o p_76461_ + 4 o p_76462_ + a (Lcmm;)Z m_6760_ + 0 o p_256670_ + a (Lcmn;Lgu;Ldcb;)V m_7456_ + 0 o p_76450_ + 1 o p_76451_ + 2 o p_76452_ + b (Lcmp;)I m_6719_ + 0 o p_76464_ + b (Ldxe;)Ldcb; m_5804_ + 0 o p_76466_ + c ()F m_6752_ + c (Lcmp;)I m_6713_ + 0 o p_76469_ + d ()Ldxd; m_5615_ + e ()Ldxd; m_5613_ + h ()Lit; m_7792_ + j ()Ljava/util/Optional; m_142520_ +dxk$a net/minecraft/world/level/material/WaterFluid$Flowing + ()V + a (Ldcc$a;)V m_7180_ + 0 o p_76476_ + c (Ldxe;)Z m_7444_ + 0 o p_76478_ + d (Ldxe;)I m_7430_ + 0 o p_76480_ +dxk$b net/minecraft/world/level/material/WaterFluid$Source + ()V + c (Ldxe;)Z m_7444_ + 0 o p_76483_ + d (Ldxe;)I m_7430_ + 0 o p_76485_ +dxl net/minecraft/world/level/material/package-info +dxm net/minecraft/world/level/package-info +dxn net/minecraft/world/level/pathfinder/AmphibiousNodeEvaluator + l f_164655_ + m f_164656_ + n f_164657_ + (Z)V + 0 o p_164659_ + a (Lcmz;Lbgb;)V m_6028_ + 0 o p_164671_ + 1 o p_164672_ + a (Lcls;III)Ldxp; m_8086_ + 0 o p_164666_ + 1 o p_164667_ + 2 o p_164668_ + 3 o p_164669_ + a ()Ldxr; m_7171_ + a (DDD)Ldxx; m_7568_ + 0 o p_164662_ + 1 o p_164663_ + 2 o p_164664_ + a ([Ldxr;Ldxr;)I m_6065_ + 0 o p_164676_ + 1 o p_164677_ + b (Ldxr;Ldxr;)Z m_230610_ + 0 o p_230611_ + 1 o p_230612_ + b ()V m_6802_ + c ()Z m_141974_ +dxo net/minecraft/world/level/pathfinder/BinaryHeap + a f_77078_ + b f_77079_ + ()V + a (Ldxr;F)V m_77086_ + 0 o p_77087_ + 1 o p_77088_ + a (I)V m_77082_ + 0 o p_77083_ + a ()V m_77081_ + a (Ldxr;)Ldxr; m_77084_ + 0 o p_77085_ + b ()Ldxr; m_164680_ + b (I)V m_77089_ + 0 o p_77090_ + b (Ldxr;)V m_164681_ + 0 o p_164682_ + c ()Ldxr; m_77091_ + d ()I m_164683_ + e ()Z m_77092_ + f ()[Ldxr; m_164684_ +dxp net/minecraft/world/level/pathfinder/BlockPathTypes + A $VALUES + a BLOCKED + b OPEN + c WALKABLE + d WALKABLE_DOOR + e TRAPDOOR + f POWDER_SNOW + g DANGER_POWDER_SNOW + h FENCE + i LAVA + j WATER + k WATER_BORDER + l RAIL + m UNPASSABLE_RAIL + n DANGER_FIRE + o DAMAGE_FIRE + p DANGER_OTHER + q DAMAGE_OTHER + r DOOR_OPEN + s DOOR_WOOD_CLOSED + t DOOR_IRON_CLOSED + u BREACH + v LEAVES + w STICKY_HONEY + x COCOA + y DAMAGE_CAUTIOUS + z f_77117_ + ()V + static + (Ljava/lang/String;IF)V + 0 o p_77121_ + 1 o p_77122_ + 2 o p_77123_ + a ()F m_77124_ + b ()[Ldxp; m_164686_ + static + valueOf (Ljava/lang/String;)Ldxp; valueOf + static + 0 o p_77126_ + values ()[Ldxp; values + static +dxq net/minecraft/world/level/pathfinder/FlyNodeEvaluator + l f_164687_ + m f_262722_ + n f_262734_ + ()V + a (Lcmz;Lbgb;)V m_6028_ + 0 o p_77261_ + 1 o p_77262_ + a (Lgu;)Z m_262494_ + 0 o p_262645_ + a ()Ldxr; m_7171_ + a (DDD)Ldxx; m_7568_ + 0 o p_77229_ + 1 o p_77230_ + 2 o p_77231_ + a (Lbgb;)Ljava/lang/Iterable; m_262869_ + 0 o p_263108_ + a (IIIJ)Ldxp; m_264025_ + 0 o p_265007_ + 1 o p_265008_ + 2 o p_265009_ + 3 o p_265010_ + a (III)Ldxr; m_262834_ + 0 o p_262970_ + 1 o p_263018_ + 2 o p_262947_ + a (Lcls;III)Ldxp; m_8086_ + 0 o p_77245_ + 1 o p_77246_ + 2 o p_77247_ + 3 o p_77248_ + a ([Ldxr;Ldxr;)I m_6065_ + 0 o p_77266_ + 1 o p_77267_ + a (Lcls;IIILbgb;)Ldxp; m_7209_ + 0 o p_265753_ + 1 o p_265243_ + 2 o p_265376_ + 3 o p_265253_ + 4 o p_265367_ + b (Ldxr;)Z m_77263_ + 0 o p_77264_ + b ()V m_6802_ + c (Ldxr;)Z m_77269_ + 0 o p_77270_ + c (III)Ldxp; m_164693_ + 0 o p_164694_ + 1 o p_164695_ + 2 o p_164696_ +dxr net/minecraft/world/level/pathfinder/Node + a f_77271_ + b f_77272_ + c f_77273_ + d f_77274_ + e f_77275_ + f f_77276_ + g f_77277_ + h f_77278_ + i f_77279_ + j f_77280_ + k f_77281_ + l f_77282_ + m f_77283_ + (III)V + 0 o p_77285_ + 1 o p_77286_ + 2 o p_77287_ + a ()Lgu; m_77288_ + a (Lsf;)V m_164699_ + 0 o p_164700_ + a (Lsf;Ldxr;)V m_262841_ + static + 0 o p_262984_ + 1 o p_263009_ + a (III)Ldxr; m_77289_ + 0 o p_77290_ + 1 o p_77291_ + 2 o p_77292_ + a (Ldxr;)F m_77293_ + 0 o p_77294_ + a (Lgu;)F m_164697_ + 0 o p_164698_ + b (Lsf;)Ldxr; m_77301_ + static + 0 o p_77302_ + b (III)I m_77295_ + static + 0 o p_77296_ + 1 o p_77297_ + 2 o p_77298_ + b (Ldxr;)F m_230613_ + 0 o p_230614_ + b (Lgu;)F m_164702_ + 0 o p_164703_ + b ()Leei; m_164701_ + c (Ldxr;)F m_77299_ + 0 o p_77300_ + c ()Z m_77303_ + c (Lgu;)F m_77306_ + 0 o p_77307_ + d (Ldxr;)F m_77304_ + 0 o p_77305_ + equals (Ljava/lang/Object;)Z equals + 0 o p_77309_ + hashCode ()I hashCode + toString ()Ljava/lang/String; toString +dxs net/minecraft/world/level/pathfinder/NodeEvaluator + a f_77312_ + b f_77313_ + c f_77314_ + d f_77315_ + e f_77316_ + f f_77317_ + g f_77318_ + h f_77319_ + i f_77320_ + j f_254713_ + ()V + a (Lcmz;Lbgb;)V m_6028_ + 0 o p_77347_ + 1 o p_77348_ + a ()Ldxr; m_7171_ + a (Ldxr;)Ldxx; m_230615_ + 0 o p_230616_ + a (Z)V m_77351_ + 0 o p_77352_ + a (DDD)Ldxx; m_7568_ + 0 o p_77322_ + 1 o p_77323_ + 2 o p_77324_ + a (Lcls;III)Ldxp; m_8086_ + 0 o p_77333_ + 1 o p_77334_ + 2 o p_77335_ + 3 o p_77336_ + a (IIII)Ldxr; m_77328_ + static + 0 o p_77329_ + 1 o p_77330_ + 2 o p_77331_ + 3 o p_77332_ + a ([Ldxr;Ldxr;)I m_6065_ + 0 o p_77353_ + 1 o p_77354_ + a (Lcls;IIILbgb;)Ldxp; m_7209_ + 0 o p_77337_ + 1 o p_77338_ + 2 o p_77339_ + 3 o p_77340_ + 4 o p_77341_ + b (Lgu;)Ldxr; m_77349_ + 0 o p_77350_ + b (III)Ldxr; m_5676_ + 0 o p_77325_ + 1 o p_77326_ + 2 o p_77327_ + b (Z)V m_77355_ + 0 o p_77356_ + b ()V m_6802_ + c (Z)V m_77358_ + 0 o p_77359_ + d (Z)V m_254850_ + 0 o p_255862_ + d ()Z m_77357_ + e ()Z m_77360_ + f ()Z m_77361_ + g ()Z m_255100_ +dxt net/minecraft/world/level/pathfinder/Path + a f_77362_ + b f_77363_ + c f_77364_ + d f_77365_ + e f_77366_ + f f_77367_ + g f_77368_ + h f_77369_ + (Ljava/util/List;Lgu;Z)V + 0 o p_77371_ + 1 o p_77372_ + 2 o p_77373_ + a (Lbfj;I)Leei; m_77382_ + 0 o p_77383_ + 1 o p_77384_ + a (Lsf;)V m_164704_ + 0 o p_164705_ + a ([Ldxr;[Ldxr;Ljava/util/Set;)V m_164709_ + 0 o p_164710_ + 1 o p_164711_ + 2 o p_164712_ + a ()V m_77374_ + a (Ldxt;)Z m_77385_ + 0 o p_77386_ + a (Lbfj;)Leei; m_77380_ + 0 o p_77381_ + a (Lsf;Ldxx;)V m_164706_ + static + 0 o p_164707_ + 1 o p_164708_ + a (I)Ldxr; m_77375_ + 0 o p_77376_ + a (ILdxr;)V m_77377_ + 0 o p_77378_ + 1 o p_77379_ + b (Lsf;)Ldxt; m_77390_ + static + 0 o p_77391_ + b (I)V m_77388_ + 0 o p_77389_ + b ()Z m_77387_ + c (I)V m_77393_ + 0 o p_77394_ + c ()Z m_77392_ + d (I)Lgu; m_77396_ + 0 o p_77397_ + d ()Ldxr; m_77395_ + e ()I m_77398_ + f ()I m_77399_ + g ()Lgu; m_77400_ + h ()Ldxr; m_77401_ + i ()Ldxr; m_77402_ + j ()Z m_77403_ + k ()[Ldxr; m_77404_ + l ()[Ldxr; m_77405_ + m ()Lgu; m_77406_ + n ()F m_77407_ + toString ()Ljava/lang/String; toString +dxu net/minecraft/world/level/pathfinder/PathComputationType + a LAND + b WATER + c AIR + d $VALUES + ()V + static + (Ljava/lang/String;I)V + 0 o p_77415_ + 1 o p_77416_ + a ()[Ldxu; m_164713_ + static + valueOf (Ljava/lang/String;)Ldxu; valueOf + static + 0 o p_77418_ + values ()[Ldxu; values + static +dxv net/minecraft/world/level/pathfinder/PathFinder + a f_164714_ + b f_77420_ + c f_77421_ + d f_77422_ + e f_164715_ + f f_77423_ + (Ldxs;I)V + 0 o p_77425_ + 1 o p_77426_ + a (Ldxr;Ljava/util/Set;)F m_77444_ + 0 o p_77445_ + 1 o p_77446_ + a (Lban;Ldxr;Ljava/util/Map;FIF)Ldxt; m_164716_ + 0 o p_164717_ + 1 o p_164718_ + 2 o p_164719_ + 3 o p_164720_ + 4 o p_164721_ + 5 o p_164722_ + a (Lcmz;Lbgb;Ljava/util/Set;FIF)Ldxt; m_77427_ + 0 o p_77428_ + 1 o p_77429_ + 2 o p_77430_ + 3 o p_77431_ + 4 o p_77432_ + 5 o p_77433_ + a (Ldxr;Ldxr;)F m_214208_ + 0 o p_230617_ + 1 o p_230618_ + a (Ljava/util/Map;Ldxx;)Ldxt; m_77449_ + 0 o p_77450_ + 1 o p_77451_ + a (Ldxr;Lgu;Z)Ldxt; m_77434_ + 0 o p_77435_ + 1 o p_77436_ + 2 o p_77437_ + a (Lgu;)Ldxx; m_77447_ + 0 o p_77448_ + b (Ljava/util/Map;Ldxx;)Ldxt; m_77452_ + 0 o p_77453_ + 1 o p_77454_ +dxw net/minecraft/world/level/pathfinder/SwimNodeEvaluator + k f_77455_ + l f_192951_ + (Z)V + 0 o p_77457_ + a (Lcmz;Lbgb;)V m_6028_ + 0 o p_192959_ + 1 o p_192960_ + a ()Ldxr; m_7171_ + a (DDD)Ldxx; m_7568_ + 0 o p_77459_ + 1 o p_77460_ + 2 o p_77461_ + a (Ldxr;Ldxr;Ldxr;)Z m_192963_ + 0 o p_192964_ + 1 o p_192965_ + 2 o p_192966_ + a (IIIJ)Ldxp; m_192953_ + 0 o p_192954_ + 1 o p_192955_ + 2 o p_192956_ + 3 o p_192957_ + a (III)Ldxr; m_262844_ + 0 o p_263032_ + 1 o p_263066_ + 2 o p_263105_ + a (Lcls;III)Ldxp; m_8086_ + 0 o p_77467_ + 1 o p_77468_ + 2 o p_77469_ + 3 o p_77470_ + a ([Ldxr;Ldxr;)I m_6065_ + 0 o p_77483_ + 1 o p_77484_ + a (Lcls;IIILbgb;)Ldxp; m_7209_ + 0 o p_77472_ + 1 o p_77473_ + 2 o p_77474_ + 3 o p_77475_ + 4 o p_77476_ + b (Ldxr;)Z m_192961_ + 0 o p_192962_ + b ()V m_6802_ + c (III)Ldxp; m_192967_ + 0 o p_192968_ + 1 o p_192969_ + 2 o p_192970_ +dxx net/minecraft/world/level/pathfinder/Target + m f_77494_ + n f_77495_ + o f_77496_ + (Ldxr;)V + 0 o p_77502_ + (III)V + 0 o p_77498_ + 1 o p_77499_ + 2 o p_77500_ + a (FLdxr;)V m_77503_ + 0 o p_77504_ + 1 o p_77505_ + c (Lsf;)Ldxx; m_77506_ + static + 0 o p_77507_ + d ()Ldxr; m_77508_ + e ()V m_77509_ + f ()Z m_164723_ +dxy net/minecraft/world/level/pathfinder/WalkNodeEvaluator + k f_164724_ + l f_254631_ + m f_77545_ + n f_77546_ + ()V + a (Leed;)Z m_77634_ + 0 o p_77635_ + a (IIILbgb;J)Ldxp; m_264026_ + 0 o p_265011_ + 1 o p_265012_ + 2 o p_265013_ + 3 o p_265014_ + 4 o p_265015_ + a (Lbgb;Lgu;)Ldxp; m_77572_ + 0 o p_77573_ + 1 o p_77574_ + a (Lcls;Lgu;)D m_77611_ + static + 0 o p_77612_ + 1 o p_77613_ + a (DDD)Ldxx; m_7568_ + 0 o p_77550_ + 1 o p_77551_ + 2 o p_77552_ + a (Lcls;Lgu$a;Ldxp;)Ldxp; m_77607_ + static + 0 o p_77608_ + 1 o p_77609_ + 2 o p_77610_ + a (IIILdxp;F)Ldxr; m_230619_ + 0 o p_230620_ + 1 o p_230621_ + 2 o p_230622_ + 3 o p_230623_ + 4 o p_230624_ + a (III)Ldxr; m_230627_ + 0 o p_230628_ + 1 o p_230629_ + 2 o p_230630_ + a (Lcls;III)Ldxp; m_8086_ + 0 o p_77576_ + 1 o p_77577_ + 2 o p_77578_ + 3 o p_77579_ + a (Ldcb;)Z m_77622_ + static + 0 o p_77623_ + a (Ldxp;)Z m_230625_ + static + 0 o p_230626_ + a (Lcls;Lgu$a;)Ldxp; m_77604_ + static + 0 o p_77605_ + 1 o p_77606_ + a (Lcmz;Lbgb;)V m_6028_ + 0 o p_77620_ + 1 o p_77621_ + a (Lgu;)Z m_262494_ + 0 o p_262596_ + a (IIIIDLha;Ldxp;)Ldxr; m_164725_ + 0 o p_164726_ + 1 o p_164727_ + 2 o p_164728_ + 3 o p_164729_ + 4 o p_164730_ + 5 o p_164731_ + 6 o p_164732_ + a (Lcls;IIILjava/util/EnumSet;Ldxp;Lgu;)Ldxp; m_264561_ + 0 o p_265227_ + 1 o p_265066_ + 2 o p_265537_ + 3 o p_265771_ + 4 o p_265263_ + 5 o p_265458_ + 6 o p_265515_ + a ()Ldxr; m_7171_ + a (Lcls;Lgu;Ldxp;)Ldxp; m_264405_ + 0 o p_265305_ + 1 o p_265350_ + 2 o p_265551_ + a (Ldxr;Ldxr;Ldxr;Ldxr;)Z m_77629_ + 0 o p_77630_ + 1 o p_77631_ + 2 o p_77632_ + 3 o p_77633_ + a (Leed;Ljava/lang/Object;)Z m_192971_ + 0 o p_192972_ + 1 o p_192973_ + a (Ldxr;Ldxr;)Z m_77626_ + 0 o p_77627_ + 1 o p_77628_ + a ([Ldxr;Ldxr;)I m_6065_ + 0 o p_77640_ + 1 o p_77641_ + a (Lbgb;III)Ldxp; m_77567_ + 0 o p_77568_ + 1 o p_77569_ + 2 o p_77570_ + 3 o p_77571_ + a (Lcls;IIILbgb;)Ldxp; m_7209_ + 0 o p_265141_ + 1 o p_265661_ + 2 o p_265757_ + 3 o p_265716_ + 4 o p_265398_ + b (Ldxr;)Z m_77624_ + 0 o p_77625_ + b (Lcls;Lgu;)Ldxp; m_77643_ + static + 0 o p_77644_ + 1 o p_77645_ + b ()V m_6802_ + c (Lgu;)Ldxr; m_230631_ + 0 o p_230632_ + c ()Z m_141974_ + d (Lgu;)D m_142213_ + 0 o p_164733_ + h ()D m_255203_ +dxz net/minecraft/world/level/pathfinder/package-info +dy net/minecraft/commands/arguments/ComponentArgument + a f_87110_ + b f_87111_ + ()V + static + ()V + a (Lcom/mojang/brigadier/context/CommandContext;Ljava/lang/String;)Lsw; m_87117_ + static + 0 o p_87118_ + 1 o p_87119_ + a ()Ldy; m_87114_ + static + a (Ljava/lang/Object;)Lcom/mojang/brigadier/Message; m_87120_ + static + 0 o p_87121_ + a (Lcom/mojang/brigadier/StringReader;)Lsw; parse + 0 o p_87116_ + getExamples ()Ljava/util/Collection; getExamples + parse (Lcom/mojang/brigadier/StringReader;)Ljava/lang/Object; parse + 0 o p_87124_ +dya net/minecraft/world/level/portal/PortalForcer + a f_164734_ + b f_164735_ + c f_164736_ + d f_164737_ + e f_164738_ + f f_164739_ + g f_164740_ + h f_164741_ + i f_164742_ + j f_164743_ + k f_164744_ + l f_164745_ + m f_164746_ + n f_77648_ + (Laif;)V + 0 o p_77650_ + a (Lgu$a;)Z m_245373_ + 0 o p_248971_ + a (Lgu;Lha$a;)Ljava/util/Optional; m_77666_ + 0 o p_77667_ + 1 o p_77668_ + a (Lgu;Lbra;)D m_192982_ + static + 0 o p_192983_ + 1 o p_192984_ + a (Lgu;Lgu$a;Lha;I)Z m_77661_ + 0 o p_77662_ + 1 o p_77663_ + 2 o p_77664_ + 3 o p_77665_ + a (Ldcb;Lgu;)Z m_192976_ + 0 o p_192977_ + 1 o p_192978_ + a (Lgu;ZLdds;)Ljava/util/Optional; m_192985_ + 0 o p_192986_ + 1 o p_192987_ + 2 o p_192988_ + a (Lbra;)Ll$a; m_192974_ + 0 o p_192975_ + a (Lhe;)Z m_230633_ + static + 0 o p_230634_ + a (Ldds;Lbra;)Z m_192979_ + static + 0 o p_192980_ + 1 o p_192981_ + b (Lbra;)Z m_192989_ + 0 o p_192990_ + c (Lbra;)I m_192991_ + static + 0 o p_192992_ +dyb net/minecraft/world/level/portal/PortalInfo + a f_77676_ + b f_77677_ + c f_77678_ + d f_77679_ + (Leei;Leei;FF)V + 0 o p_77681_ + 1 o p_77682_ + 2 o p_77683_ + 3 o p_77684_ +dyc net/minecraft/world/level/portal/PortalShape + a f_164750_ + b f_164751_ + c f_164752_ + d f_164753_ + e f_77685_ + f f_256985_ + g f_256802_ + h f_77686_ + i f_77687_ + j f_77688_ + k f_77689_ + l f_77690_ + m f_77691_ + n f_77692_ + ()V + static + (Lcmn;Lgu;Lha$a;)V + 0 o p_77695_ + 1 o p_77696_ + 2 o p_77697_ + a (Ldcb;Lgu;)V m_77723_ + 0 o p_77724_ + 1 o p_77725_ + a (Lgu$a;)I m_77728_ + 0 o p_77729_ + a (Ll$a;Lha$a;Leei;Lbfk;)Leei; m_77738_ + static + 0 o p_77739_ + 1 o p_77740_ + 2 o p_77741_ + 3 o p_77742_ + a (Leei;Laif;Lbfj;Lbfk;)Leei; m_257963_ + static + 0 o p_260315_ + 1 o p_259704_ + 2 o p_259626_ + 3 o p_259816_ + a (DLeei;)Leei; m_257365_ + static + 0 o p_259018_ + 1 o p_259019_ + a (Lcmn;Lgu;Ljava/util/function/Predicate;Lha$a;)Ljava/util/Optional; m_77712_ + static + 0 o p_77713_ + 1 o p_77714_ + 2 o p_77715_ + 3 o p_77716_ + a (Lgu$a;I)Z m_77730_ + 0 o p_77731_ + 1 o p_77732_ + a (Laif;Ll$a;Lha$a;Leei;Lbfj;Leei;FF)Ldyb; m_257966_ + static + 0 o p_259301_ + 1 o p_259931_ + 2 o p_259901_ + 3 o p_259630_ + 4 o p_259166_ + 5 o p_260043_ + 6 o p_259853_ + 7 o p_259667_ + a (Lgu;Lha;)I m_77735_ + 0 o p_77736_ + 1 o p_77737_ + a (Ldyc;)Z m_77726_ + static + 0 o p_77727_ + a (Lcmn;Lgu;Lha$a;)Ljava/util/Optional; m_77708_ + static + 0 o p_77709_ + 1 o p_77710_ + 2 o p_77711_ + a ()Z m_77698_ + a (Ldcb;Lcls;Lgu;)Z m_77719_ + static + 0 o p_77720_ + 1 o p_77721_ + 2 o p_77722_ + a (Ldcb;)Z m_77717_ + static + 0 o p_77718_ + a (Lgu;)Lgu; m_77733_ + 0 o p_77734_ + b ()V m_77743_ + c ()Z m_77744_ + d ()I m_77745_ + e ()I m_77746_ +dyd net/minecraft/world/level/portal/package-info +dye net/minecraft/world/level/redstone/CollectingNeighborUpdater + b f_230635_ + c f_230636_ + d f_230637_ + e f_230638_ + f f_230639_ + g f_230640_ + ()V + static + (Lcmm;I)V + 0 o p_230643_ + 1 o p_230644_ + a (Ldcb;Lgu;Lcpn;Lgu;Z)V m_213858_ + 0 o p_230647_ + 1 o p_230648_ + 2 o p_230649_ + 3 o p_230650_ + 4 o p_230651_ + a (Lgu;Lcpn;Lgu;)V m_214026_ + 0 o p_230653_ + 1 o p_230654_ + 2 o p_230655_ + a (Lgu;Ldye$c;)V m_230660_ + 0 o p_230661_ + 1 o p_230662_ + a ()V m_230645_ + a (Lha;Ldcb;Lgu;Lgu;II)V m_213547_ + 0 o p_230664_ + 1 o p_230665_ + 2 o p_230666_ + 3 o p_230667_ + 4 o p_230668_ + 5 o p_230669_ + a (Lgu;Lcpn;Lha;)V m_214152_ + 0 o p_230657_ + 1 o p_230658_ + 2 o p_230659_ +dye$a net/minecraft/world/level/redstone/CollectingNeighborUpdater$FullNeighborUpdate + a f_230670_ + b f_230671_ + c f_230672_ + d f_230673_ + e f_230674_ + (Ldcb;Lgu;Lcpn;Lgu;Z)V + 0 o f_230670_ + 1 o f_230671_ + 2 o f_230672_ + 3 o f_230673_ + 4 o f_230674_ + a (Lcmm;)Z m_213563_ + 0 o p_230683_ + a ()Ldcb; f_230670_ + b ()Lgu; f_230671_ + c ()Lcpn; f_230672_ + d ()Lgu; f_230673_ + e ()Z f_230674_ + equals (Ljava/lang/Object;)Z equals + 0 o p_230689_ + hashCode ()I hashCode + toString ()Ljava/lang/String; toString +dye$b net/minecraft/world/level/redstone/CollectingNeighborUpdater$MultiNeighborUpdate + a f_230692_ + b f_230693_ + c f_230694_ + d f_230695_ + (Lgu;Lcpn;Lha;)V + 0 o p_230697_ + 1 o p_230698_ + 2 o p_230699_ + a (Lcmm;)Z m_213563_ + 0 o p_230701_ +dye$c net/minecraft/world/level/redstone/CollectingNeighborUpdater$NeighborUpdates + a (Lcmm;)Z m_213563_ + 0 o p_230702_ +dye$d net/minecraft/world/level/redstone/CollectingNeighborUpdater$ShapeUpdate + a f_230703_ + b f_230704_ + c f_230705_ + d f_230706_ + e f_230707_ + f f_276599_ + (Lha;Ldcb;Lgu;Lgu;II)V + 0 o f_230703_ + 1 o f_230704_ + 2 o f_230705_ + 3 o f_230706_ + 4 o f_230707_ + 5 o f_276599_ + a (Lcmm;)Z m_213563_ + 0 o p_230716_ + a ()Lha; f_230703_ + b ()Ldcb; f_230704_ + c ()Lgu; f_230705_ + d ()Lgu; f_230706_ + e ()I f_230707_ + equals (Ljava/lang/Object;)Z equals + 0 o p_230722_ + f ()I f_276599_ + hashCode ()I hashCode + toString ()Ljava/lang/String; toString +dye$e net/minecraft/world/level/redstone/CollectingNeighborUpdater$SimpleNeighborUpdate + a f_230725_ + b f_230726_ + c f_230727_ + (Lgu;Lcpn;Lgu;)V + 0 o f_230725_ + 1 o f_230726_ + 2 o f_230727_ + a (Lcmm;)Z m_213563_ + 0 o p_230734_ + a ()Lgu; f_230725_ + b ()Lcpn; f_230726_ + c ()Lgu; f_230727_ + equals (Ljava/lang/Object;)Z equals + 0 o p_230738_ + hashCode ()I hashCode + toString ()Ljava/lang/String; toString +dyf net/minecraft/world/level/redstone/InstantNeighborUpdater + b f_230741_ + (Lcmm;)V + 0 o p_230743_ + a (Ldcb;Lgu;Lcpn;Lgu;Z)V m_213858_ + 0 o p_230745_ + 1 o p_230746_ + 2 o p_230747_ + 3 o p_230748_ + 4 o p_230749_ + a (Lgu;Lcpn;Lgu;)V m_214026_ + 0 o p_230751_ + 1 o p_230752_ + 2 o p_230753_ + a (Lha;Ldcb;Lgu;Lgu;II)V m_213547_ + 0 o p_230755_ + 1 o p_230756_ + 2 o p_230757_ + 3 o p_230758_ + 4 o p_230759_ + 5 o p_230760_ +dyg net/minecraft/world/level/redstone/NeighborUpdater + a f_230761_ + ()V + static + a (Ldcb;Lgu;Lcpn;Lgu;Z)V m_213858_ + 0 o p_230780_ + 1 o p_230781_ + 2 o p_230782_ + 3 o p_230783_ + 4 o p_230784_ + a (Lcmm;Ldcb;Lgu;Lcpn;Lgu;Z)V m_230763_ + static + 0 o p_230764_ + 1 o p_230765_ + 2 o p_230766_ + 3 o p_230767_ + 4 o p_230768_ + 5 o p_230769_ + a (Lcpn;)Ljava/lang/String; m_257366_ + static + 0 o p_259020_ + a (Lgu;Lcpn;Lgu;)V m_214026_ + 0 o p_230785_ + 1 o p_230786_ + 2 o p_230787_ + a (Lha;Ldcb;Lgu;Lgu;II)V m_213547_ + 0 o p_230791_ + 1 o p_230792_ + 2 o p_230793_ + 3 o p_230794_ + 4 o p_230795_ + 5 o p_230796_ + a (Lcmn;Lha;Ldcb;Lgu;Lgu;II)V m_230770_ + static + 0 o p_230771_ + 1 o p_230772_ + 2 o p_230773_ + 3 o p_230774_ + 4 o p_230775_ + 5 o p_230776_ + 6 o p_230777_ + a (Lgu;Lcpn;Lha;)V m_214152_ + 0 o p_230788_ + 1 o p_230789_ + 2 o p_230790_ +dyh net/minecraft/world/level/redstone/Redstone + a f_164754_ + b f_164755_ + c f_164756_ + ()V +dyi net/minecraft/world/level/redstone/package-info +dyj net/minecraft/world/level/saveddata/SavedData + a f_77751_ + b f_77753_ + ()V + static + ()V + a (Lqr;)Lqr; m_7176_ + 0 o p_77763_ + a (Ljava/io/File;)V m_77757_ + 0 o p_77758_ + a (Z)V m_77760_ + 0 o p_77761_ + b ()V m_77762_ + c ()Z m_77764_ +dyk net/minecraft/world/level/saveddata/maps/MapBanner + a f_77766_ + b f_77767_ + c f_77768_ + (Lgu;Lcen;Lsw;)V + 0 o p_77770_ + 1 o p_77771_ + 2 o p_77772_ + a (Lcls;Lgu;)Ldyk; m_77774_ + static + 0 o p_77775_ + 1 o p_77776_ + a (Lqr;)Ldyk; m_77777_ + static + 0 o p_77778_ + a ()Lgu; m_77773_ + b ()Lcen; m_164759_ + c ()Ldyl$a; m_77782_ + d ()Lsw; m_77783_ + e ()Lqr; m_77784_ + equals (Ljava/lang/Object;)Z equals + 0 o p_77786_ + f ()Ljava/lang/String; m_77787_ + hashCode ()I hashCode +dyk$1 net/minecraft/world/level/saveddata/maps/MapBanner$1 + a f_77789_ + ()V + static +dyl net/minecraft/world/level/saveddata/maps/MapDecoration + a f_77791_ + b f_77792_ + c f_77793_ + d f_77794_ + e f_77795_ + (Ldyl$a;BBBLsw;)V + 0 o p_77797_ + 1 o p_77798_ + 2 o p_77799_ + 3 o p_77800_ + 4 o p_77801_ + a ()B m_77802_ + b ()Ldyl$a; m_77803_ + c ()B m_77804_ + d ()B m_77805_ + e ()B m_77806_ + equals (Ljava/lang/Object;)Z equals + 0 o p_77808_ + f ()Z m_77809_ + g ()Lsw; m_77810_ + hashCode ()I hashCode +dyl$a net/minecraft/world/level/saveddata/maps/MapDecoration$Type + A RED_X + B f_77813_ + C f_77814_ + D f_77815_ + E f_181294_ + F $VALUES + a PLAYER + b FRAME + c RED_MARKER + d BLUE_MARKER + e TARGET_X + f TARGET_POINT + g PLAYER_OFF_MAP + h PLAYER_OFF_LIMITS + i MANSION + j MONUMENT + k BANNER_WHITE + l BANNER_ORANGE + m BANNER_MAGENTA + n BANNER_LIGHT_BLUE + o BANNER_YELLOW + p BANNER_LIME + q BANNER_PINK + r BANNER_GRAY + s BANNER_LIGHT_GRAY + t BANNER_CYAN + u BANNER_PURPLE + v BANNER_BLUE + w BANNER_BROWN + x BANNER_GREEN + y BANNER_RED + z BANNER_BLACK + ()V + static + (Ljava/lang/String;IZZ)V + 0 o p_181302_ + 1 o p_181303_ + 2 o p_181304_ + 3 o p_181305_ + (Ljava/lang/String;IZIZ)V + 0 o p_181296_ + 1 o p_181297_ + 2 o p_181298_ + 3 o p_181299_ + 4 o p_181300_ + a (B)Ldyl$a; m_77854_ + static + 0 o p_77855_ + a ()B m_77853_ + b ()Z m_77856_ + c ()Z m_77857_ + d ()I m_77858_ + e ()Z m_181306_ + f ()[Ldyl$a; m_164760_ + static + valueOf (Ljava/lang/String;)Ldyl$a; valueOf + static + 0 o p_77860_ + values ()[Ldyl$a; values + static +dym net/minecraft/world/level/saveddata/maps/MapFrame + a f_77862_ + b f_77863_ + c f_77864_ + (Lgu;II)V + 0 o p_77866_ + 1 o p_77867_ + 2 o p_77868_ + a (Lqr;)Ldym; m_77872_ + static + 0 o p_77873_ + a ()Lqr; m_77869_ + a (Lgu;)Ljava/lang/String; m_77870_ + static + 0 o p_77871_ + b ()Lgu; m_77874_ + c ()I m_77875_ + d ()I m_77876_ + e ()Ljava/lang/String; m_77877_ +dyn net/minecraft/world/level/saveddata/maps/MapIndex + a f_164761_ + b f_77878_ + ()V + a (Lqr;)Lqr; m_7176_ + 0 o p_77884_ + a ()I m_77880_ + b (Lqr;)Ldyn; m_164762_ + static + 0 o p_164763_ +dyo net/minecraft/world/level/saveddata/maps/MapItemSavedData + a f_164764_ + b f_181307_ + c f_256718_ + d f_256789_ + e f_77887_ + f f_77890_ + g f_77891_ + h f_77892_ + i f_77895_ + j f_164765_ + k f_164766_ + l f_77888_ + m f_77889_ + n f_77893_ + o f_77896_ + p f_77897_ + q f_77894_ + r f_77898_ + s f_181308_ + ()V + static + (IIBZZZLacp;)V + 0 o p_164768_ + 1 o p_164769_ + 2 o p_164770_ + 3 o p_164771_ + 4 o p_164772_ + 5 o p_164773_ + 6 o p_164774_ + a (BZLacp;)Ldyo; m_164776_ + static + 0 o p_164777_ + 1 o p_164778_ + 2 o p_164779_ + a (DDBZZLacp;)Ldyo; m_164780_ + static + 0 o p_164781_ + 1 o p_164782_ + 2 o p_164783_ + 3 o p_164784_ + 4 o p_164785_ + 5 o p_164786_ + a (Ljava/lang/String;)V m_164799_ + 0 o p_164800_ + a (Lcls;II)V m_77930_ + 0 o p_77931_ + 1 o p_77932_ + 2 o p_77933_ + a (Lbyo;Lcfz;)V m_77918_ + 0 o p_77919_ + 1 o p_77920_ + a (II)V m_164789_ + 0 o p_164790_ + 1 o p_164791_ + a (IIB)Z m_164792_ + 0 o p_164793_ + 1 o p_164794_ + 2 o p_164795_ + a ()Ldyo; m_164775_ + a (Lqr;)Lqr; m_7176_ + 0 o p_77956_ + a (I)Ldyo; m_164787_ + 0 o p_164788_ + a (ILbyo;)Luo; m_164796_ + 0 o p_164797_ + 1 o p_164798_ + a (Lgu;I)V m_77947_ + 0 o p_77948_ + 1 o p_77949_ + a (Ljava/util/List;)V m_164801_ + 0 o p_164802_ + a (Lcfz;Lgu;Ljava/lang/String;Ldyl$a;)V m_77925_ + static + 0 o p_77926_ + 1 o p_77927_ + 2 o p_77928_ + 3 o p_77929_ + a (Lqr;Lrk;)V m_77952_ + static + 0 o p_77953_ + 1 o p_77954_ + a (Lcmn;Lgu;)Z m_77934_ + 0 o p_77935_ + 1 o p_77936_ + a (Ldyl$a;Lcmn;Ljava/lang/String;DDDLsw;)V m_77937_ + 0 o p_77938_ + 1 o p_77939_ + 2 o p_77940_ + 3 o p_77941_ + 4 o p_77942_ + 5 o p_77943_ + 6 o p_77944_ + a (Lbyo;)Ldyo$a; m_77916_ + 0 o p_77917_ + b (Lqr;)Ldyo; m_164807_ + static + 0 o p_164808_ + b (IIB)V m_164803_ + 0 o p_164804_ + 1 o p_164805_ + 2 o p_164806_ + b (I)Z m_181312_ + 0 o p_181313_ + c (Lqr;)Ljava/lang/IllegalArgumentException; m_77957_ + static + 0 o p_77958_ + d ()Ljava/util/Collection; m_164809_ + e ()Z m_164810_ + f ()Ljava/lang/Iterable; m_164811_ + g ()V m_164812_ +dyo$a net/minecraft/world/level/saveddata/maps/MapItemSavedData$HoldingPlayer + a f_77959_ + b f_77960_ + c f_77961_ + d f_77962_ + e f_77963_ + f f_77964_ + g f_77965_ + h f_77966_ + i f_164813_ + j f_77967_ + (Ldyo;Lbyo;)V + 0 o p_77969_ + 1 o p_77970_ + a ()Ldyo$b; m_164814_ + a (II)V m_164817_ + 0 o p_164818_ + 1 o p_164819_ + a (I)Luo; m_164815_ + 0 o p_164816_ + b ()V m_164820_ +dyo$b net/minecraft/world/level/saveddata/maps/MapItemSavedData$MapPatch + a f_164821_ + b f_164822_ + c f_164823_ + d f_164824_ + e f_164825_ + (IIII[B)V + 0 o p_164827_ + 1 o p_164828_ + 2 o p_164829_ + 3 o p_164830_ + 4 o p_164831_ + a (Ldyo;)V m_164832_ + 0 o p_164833_ +dyp net/minecraft/world/level/saveddata/maps/package-info +dyq net/minecraft/world/level/saveddata/package-info +dyr net/minecraft/world/level/storage/CommandStorage + a f_164834_ + b f_78032_ + c f_78033_ + (Ldyu;)V + 0 o p_78035_ + a (Ljava/lang/String;)Ldyr$a; m_164835_ + 0 o p_164836_ + a (Lacq;Lqr;)V m_78046_ + 0 o p_78047_ + 1 o p_78048_ + a (Lacq;)Lqr; m_78044_ + 0 o p_78045_ + a ()Ljava/util/stream/Stream; m_78036_ + a (Ljava/lang/String;Lqr;)Ldyr$a; m_164837_ + 0 o p_164838_ + 1 o p_164839_ + a (Ljava/util/Map$Entry;)Ljava/util/stream/Stream; m_164840_ + static + 0 o p_164841_ + b (Ljava/lang/String;Lqr;)Ldyr$a; m_164842_ + 0 o p_164843_ + 1 o p_164844_ + b (Ljava/lang/String;)Ljava/lang/String; m_78037_ + static + 0 o p_78038_ + c (Ljava/lang/String;)Ldyr$a; m_164845_ + 0 o p_164846_ +dyr$a net/minecraft/world/level/storage/CommandStorage$Container + a f_164847_ + b f_78055_ + ()V + a (Lqr;)Lqr; m_7176_ + 0 o p_78075_ + a (Ljava/lang/String;Lqr;)V m_78063_ + 0 o p_78064_ + 1 o p_78065_ + a (Ljava/lang/String;)Lqr; m_78058_ + 0 o p_78059_ + a (Ljava/lang/String;Ljava/lang/String;)Lacq; m_78060_ + static + 0 o p_78061_ + 1 o p_78062_ + a (Lqr;Ljava/lang/String;Lqr;)V m_78068_ + static + 0 o p_78069_ + 1 o p_78070_ + 2 o p_78071_ + b (Ljava/lang/String;)Ljava/util/stream/Stream; m_78072_ + 0 o p_78073_ + b (Lqr;)Ldyr$a; m_164849_ + 0 o p_164850_ +dys net/minecraft/world/level/storage/DataVersion + a f_192993_ + b f_192994_ + c f_192995_ + ()V + static + (I)V + 0 o p_192998_ + (ILjava/lang/String;)V + 0 o p_193000_ + 1 o p_193001_ + a ()Z m_193002_ + a (Ldys;)Z m_193003_ + 0 o p_193004_ + b ()Ljava/lang/String; m_193005_ + c ()I m_193006_ +dyt net/minecraft/world/level/storage/DerivedLevelData + a f_78076_ + b f_78077_ + (Ldze;Ldzd;)V + 0 o p_78079_ + 1 o p_78080_ + a (Z)V m_5557_ + 0 o p_78100_ + a ()I m_6789_ + a (Ljava/util/UUID;)V m_8115_ + 0 o p_78096_ + a (Lcmj;)V m_5458_ + 0 o p_78089_ + a (I)V m_6393_ + 0 o p_78085_ + a (F)V m_7113_ + 0 o p_78083_ + a (Ldds$c;)V m_7831_ + 0 o p_78091_ + a (Lgu;F)V m_7250_ + 0 o p_78093_ + 1 o p_78094_ + a (Lp;Lcmo;)V m_142471_ + 0 o p_164852_ + 1 o p_164853_ + a (J)V m_6253_ + 0 o p_78087_ + b (Z)V m_5565_ + 0 o p_78107_ + b (I)V m_6395_ + 0 o p_78103_ + b (J)V m_6247_ + 0 o p_78105_ + b ()I m_6527_ + c ()I m_6526_ + c (I)V m_6397_ + 0 o p_78110_ + c (Z)V m_5555_ + 0 o p_78112_ + d (I)V m_6400_ + 0 o p_78115_ + d ()F m_6790_ + e ()J m_6793_ + e (I)V m_6398_ + 0 o p_78118_ + f (I)V m_6399_ + 0 o p_78121_ + f ()J m_6792_ + g ()Ljava/lang/String; m_5462_ + g (I)V m_6391_ + 0 o p_78124_ + h (I)V m_6387_ + 0 o p_78127_ + h ()I m_6537_ + i ()Z m_6534_ + j ()I m_6558_ + k ()Z m_6533_ + l ()I m_6531_ + m ()Lcmj; m_5464_ + n ()Z m_5466_ + o ()Z m_5468_ + p ()Z m_6535_ + q ()Lcmi; m_5470_ + r ()Ldds$c; m_5813_ + s ()Lbdu; m_5472_ + t ()Z m_5474_ + u ()Ledv; m_7540_ + v ()I m_6530_ + w ()I m_6528_ + x ()Ljava/util/UUID; m_142403_ +dyu net/minecraft/world/level/storage/DimensionDataStorage + a f_78143_ + b f_78144_ + c f_78145_ + d f_78146_ + ()V + static + (Ljava/io/File;Lcom/mojang/datafixers/DataFixer;)V + 0 o p_78149_ + 1 o p_78150_ + a (Ljava/util/function/Function;Ljava/util/function/Supplier;Ljava/lang/String;)Ldyj; m_164861_ + 0 o p_164862_ + 1 o p_164863_ + 2 o p_164864_ + a (Ljava/lang/String;I)Lqr; m_78158_ + 0 o p_78159_ + 1 o p_78160_ + a (Ljava/lang/String;Ldyj;)V m_164855_ + 0 o p_164856_ + 1 o p_164857_ + a ()V m_78151_ + a (Ljava/lang/String;)Ljava/io/File; m_78156_ + 0 o p_78157_ + a (Ljava/util/function/Function;Ljava/lang/String;)Ldyj; m_164858_ + 0 o p_164859_ + 1 o p_164860_ + a (Ljava/io/PushbackInputStream;)Z m_78154_ + 0 o p_78155_ + b (Ljava/lang/String;Ldyj;)V m_164865_ + 0 o p_164866_ + 1 o p_164867_ + b (Ljava/util/function/Function;Ljava/lang/String;)Ldyj; m_164868_ + 0 o p_164869_ + 1 o p_164870_ +dyv net/minecraft/world/level/storage/LevelData + a (Lcmo;)Ljava/lang/String; m_164871_ + 0 o p_164872_ + a ()I m_6789_ + a (Lp;Lcmo;)V m_142471_ + 0 o p_164873_ + 1 o p_164874_ + b ()I m_6527_ + b (Z)V m_5565_ + 0 o p_78171_ + c ()I m_6526_ + d ()F m_6790_ + e ()J m_6793_ + f ()J m_6792_ + g ()Ljava/lang/String; m_241764_ + i ()Z m_6534_ + k ()Z m_6533_ + n ()Z m_5466_ + q ()Lcmi; m_5470_ + s ()Lbdu; m_5472_ + t ()Z m_5474_ +dyw net/minecraft/world/level/storage/LevelResource + a f_78174_ + b f_78175_ + c f_78176_ + d f_78177_ + e f_78178_ + f f_230800_ + g f_230801_ + h f_230802_ + i f_78179_ + j f_78180_ + k f_78181_ + l f_78182_ + m f_78183_ + ()V + static + (Ljava/lang/String;)V + 0 o p_78186_ + a ()Ljava/lang/String; m_78187_ + toString ()Ljava/lang/String; toString +dyx net/minecraft/world/level/storage/LevelStorageException + a f_230803_ + (Lsw;)V + 0 o p_230805_ + a ()Lsw; m_230806_ +dyy net/minecraft/world/level/storage/LevelStorageSource + a f_289824_ + b f_78191_ + c f_78192_ + d f_78193_ + e f_202311_ + f f_289833_ + g f_78194_ + h f_78195_ + i f_78196_ + j f_289816_ + ()V + static + (Ljava/nio/file/Path;Ljava/nio/file/Path;Ledy;Lcom/mojang/datafixers/DataFixer;)V + 0 o p_289985_ + 1 o p_289978_ + 2 o p_289922_ + 3 o p_289940_ + a (Ldyy$a;)Ljava/util/concurrent/CompletableFuture; m_230813_ + 0 o p_230814_ + a (Ldyy$b;)Ldyz; m_230815_ + 0 o p_230816_ + a (Lcom/mojang/serialization/DynamicOps;Lcnf;Lhr;Lcom/mojang/serialization/Lifecycle;Ljava/nio/file/Path;Lcom/mojang/datafixers/DataFixer;)Lcom/mojang/datafixers/util/Pair; m_264027_ + static + 0 o p_265016_ + 1 o p_265017_ + 2 o p_265018_ + 3 o p_265019_ + 4 o p_265020_ + 5 o p_265021_ + a (Ljava/nio/file/Path;)Ledy; m_289881_ + static + 0 o p_289968_ + a (Ldyy$b;Ljava/util/function/BiFunction;)Ljava/lang/Object; m_230817_ + 0 o p_230818_ + 1 o p_230819_ + a (Lcom/mojang/serialization/Dynamic;)Lcnf; m_245610_ + static + 0 o p_250884_ + a (Ljava/util/List;)Ljava/util/List; m_230831_ + static + 0 o p_230832_ + a (Ldyy$b;Z)Ljava/util/function/BiFunction; m_230820_ + 0 o p_230821_ + 1 o p_230822_ + a ()Ljava/lang/String; m_164909_ + a (Ldyy$b;ZLjava/nio/file/Path;Lcom/mojang/datafixers/DataFixer;)Ldyz; m_289842_ + 0 o p_289914_ + 1 o p_289915_ + 2 o p_289916_ + 3 o p_289917_ + a (Lcom/mojang/serialization/DynamicOps;Lcnf;Lhr;Lcom/mojang/serialization/Lifecycle;)Ljava/util/function/BiFunction; m_245503_ + static + 0 o p_250592_ + 1 o p_249054_ + 2 o p_249363_ + 3 o p_251214_ + a (Ljava/nio/file/Path;Lcom/mojang/datafixers/DataFixer;)Lcnf; m_230828_ + static + 0 o p_230829_ + 1 o p_230830_ + a (Lacq;)V m_245033_ + static + 0 o p_248503_ + a (Lcom/mojang/serialization/Dynamic;Lcom/mojang/datafixers/DataFixer;I)Lcom/mojang/serialization/DataResult; m_247212_ + static + 0 o p_251661_ + 1 o p_251712_ + 2 o p_250368_ + a (Ljava/lang/String;)Z m_78240_ + 0 o p_78241_ + b (Ldyy$b;)Z m_230834_ + static + 0 o p_230835_ + b ()Ldyy$a; m_230833_ + b (Lcom/mojang/serialization/Dynamic;)Lcaw; m_247076_ + static + 0 o p_249466_ + b (Ljava/lang/String;)Z m_78255_ + 0 o p_78256_ + b (Ljava/nio/file/Path;)Ldyy; m_78242_ + static + 0 o p_78243_ + c ()Ljava/nio/file/Path; m_78257_ + c (Ljava/nio/file/Path;)Lrk; m_230836_ + static + 0 o p_230837_ + c (Lcom/mojang/serialization/Dynamic;)Ljava/util/stream/Stream; m_245030_ + static + 0 o p_248492_ + c (Ljava/lang/String;)Ldyy$c; m_289864_ + 0 o p_289980_ + d (Ljava/lang/String;)Ldyy$c; m_78260_ + 0 o p_78261_ + d ()Ljava/nio/file/Path; m_78262_ + d (Ljava/nio/file/Path;)Z m_230838_ + static + 0 o p_230839_ + e ()Ledy; m_289863_ + e (Ljava/lang/String;)Ljava/nio/file/Path; m_289874_ + 0 o p_289974_ + f ()I m_78265_ +dyy$a net/minecraft/world/level/storage/LevelStorageSource$LevelCandidates + a f_230840_ + (Ljava/util/List;)V + 0 o f_230840_ + a ()Z m_230843_ + b ()Ljava/util/List; f_230840_ + equals (Ljava/lang/Object;)Z equals + 0 o p_230846_ + hashCode ()I hashCode + iterator ()Ljava/util/Iterator; iterator + toString ()Ljava/lang/String; toString +dyy$b net/minecraft/world/level/storage/LevelStorageSource$LevelDirectory + a f_230850_ + (Ljava/nio/file/Path;)V + 0 o f_230850_ + a ()Ljava/lang/String; m_230853_ + a (Ljava/time/LocalDateTime;)Ljava/nio/file/Path; m_230856_ + 0 o p_230857_ + a (Ldyw;)Ljava/nio/file/Path; m_230854_ + 0 o p_230855_ + b ()Ljava/nio/file/Path; m_230858_ + c ()Ljava/nio/file/Path; m_230859_ + d ()Ljava/nio/file/Path; m_230860_ + e ()Ljava/nio/file/Path; m_230861_ + equals (Ljava/lang/Object;)Z equals + 0 o p_230863_ + f ()Ljava/nio/file/Path; f_230850_ + hashCode ()I hashCode + toString ()Ljava/lang/String; toString +dyy$c net/minecraft/world/level/storage/LevelStorageSource$LevelStorageAccess + a f_78269_ + b f_78270_ + c f_230867_ + d f_78272_ + e f_78273_ + (Ldyy;Ljava/lang/String;Ljava/nio/file/Path;)V + 0 o p_289971_ + 1 o p_289967_ + 2 o p_289988_ + a (Lhs;Ldze;Lqr;)V m_78290_ + 0 o p_78291_ + 1 o p_78292_ + 2 o p_78293_ + a (Ljava/lang/String;)V m_78297_ + 0 o p_78298_ + a (Lcom/mojang/serialization/DynamicOps;Lcnf;Lhr;Lcom/mojang/serialization/Lifecycle;)Lcom/mojang/datafixers/util/Pair; m_246049_ + 0 o p_248747_ + 1 o p_251873_ + 2 o p_249187_ + 3 o p_249736_ + a ()Ljava/lang/String; m_78277_ + a (Lacp;)Ljava/nio/file/Path; m_197394_ + 0 o p_197395_ + a (Lhs;Ldze;)V m_78287_ + 0 o p_78288_ + 1 o p_78289_ + a (Ldyw;)Ljava/nio/file/Path; m_78283_ + 0 o p_78284_ + b ()Ldzb; m_78301_ + c ()Ldyz; m_78308_ + close ()V close + d ()Lcnf; m_247706_ + e ()Ljava/util/Optional; m_182514_ + f ()V m_78311_ + g ()J m_78312_ + h ()V m_78313_ +dyy$c$1 net/minecraft/world/level/storage/LevelStorageSource$LevelStorageAccess$1 + a f_78314_ + b f_78315_ + (Ldyy$c;Ljava/nio/file/Path;)V + 0 o p_78317_ + 1 o p_78318_ + a (Ljava/nio/file/Path;Ljava/nio/file/attribute/BasicFileAttributes;)Ljava/nio/file/FileVisitResult; visitFile + 0 o p_78323_ + 1 o p_78324_ + a (Ljava/nio/file/Path;Ljava/io/IOException;)Ljava/nio/file/FileVisitResult; postVisitDirectory + 0 o p_78320_ + 1 o p_78321_ + postVisitDirectory (Ljava/lang/Object;Ljava/io/IOException;)Ljava/nio/file/FileVisitResult; postVisitDirectory + 0 o p_78326_ + 1 o p_78327_ + visitFile (Ljava/lang/Object;Ljava/nio/file/attribute/BasicFileAttributes;)Ljava/nio/file/FileVisitResult; visitFile + 0 o p_78329_ + 1 o p_78330_ +dyy$c$2 net/minecraft/world/level/storage/LevelStorageSource$LevelStorageAccess$2 + a f_78331_ + b f_78332_ + c f_78333_ + (Ldyy$c;Ljava/nio/file/Path;Ljava/util/zip/ZipOutputStream;)V + 0 o p_78335_ + 1 o p_78336_ + 2 o p_78337_ + a (Ljava/nio/file/Path;Ljava/nio/file/attribute/BasicFileAttributes;)Ljava/nio/file/FileVisitResult; visitFile + 0 o p_78339_ + 1 o p_78340_ + visitFile (Ljava/lang/Object;Ljava/nio/file/attribute/BasicFileAttributes;)Ljava/nio/file/FileVisitResult; visitFile + 0 o p_78342_ + 1 o p_78343_ +dyz net/minecraft/world/level/storage/LevelSummary + a f_78344_ + b f_78345_ + c f_78346_ + d f_193019_ + e f_78348_ + f f_244135_ + g f_78349_ + h f_78350_ + (Lcmq;Ldza;Ljava/lang/String;ZZZLjava/nio/file/Path;)V + 0 o p_251217_ + 1 o p_249179_ + 2 o p_250462_ + 3 o p_252096_ + 4 o p_251054_ + 5 o p_252271_ + 6 o p_252001_ + a (Ldyz;)I compareTo + 0 o p_78360_ + a ()Ljava/lang/String; m_78358_ + a (Lts;)Lts; m_264381_ + static + 0 o p_265611_ + b ()Ljava/lang/String; m_78361_ + c ()Ljava/nio/file/Path; m_230875_ + compareTo (Ljava/lang/Object;)I compareTo + 0 o p_78364_ + d ()Z m_193020_ + e ()Z m_246454_ + f ()J m_78366_ + g ()Lcmq; m_164913_ + h ()Lcmj; m_78367_ + i ()Z m_78368_ + j ()Z m_78369_ + k ()Ltj; m_78370_ + l ()Ldza; m_78371_ + m ()Z m_78372_ + n ()Z m_78373_ + o ()Ldyz$a; m_164914_ + p ()Z m_78375_ + q ()Z m_164916_ + r ()Z m_193021_ + s ()Lsw; m_78376_ + t ()Lsw; m_78377_ +dyz$a net/minecraft/world/level/storage/LevelSummary$BackupStatus + a NONE + b DOWNGRADE + c UPGRADE_TO_SNAPSHOT + d f_164920_ + e f_164921_ + f f_164922_ + g $VALUES + ()V + static + (Ljava/lang/String;IZZLjava/lang/String;)V + 0 o p_164926_ + 1 o p_164927_ + 2 o p_164928_ + 3 o p_164929_ + 4 o p_164930_ + a ()Z m_164931_ + b ()Z m_164932_ + c ()Ljava/lang/String; m_164933_ + d ()[Ldyz$a; m_164934_ + static + valueOf (Ljava/lang/String;)Ldyz$a; valueOf + static + 0 o p_164936_ + values ()[Ldyz$a; values + static +dyz$b net/minecraft/world/level/storage/LevelSummary$SymlinkLevelSummary + (Ljava/lang/String;Ljava/nio/file/Path;)V + 0 o p_289942_ + 1 o p_289953_ + a (Lts;)Lts; m_289857_ + static + 0 o p_289961_ + b ()Ljava/lang/String; m_78361_ + compareTo (Ljava/lang/Object;)I compareTo + 0 o p_289945_ + f ()J m_78366_ + q ()Z m_164916_ + s ()Lsw; m_78376_ +dz net/minecraft/commands/arguments/CompoundTagArgument + a f_87654_ + ()V + static + ()V + a (Lcom/mojang/brigadier/context/CommandContext;Ljava/lang/String;)Lqr; m_87660_ + static + 0 o p_87661_ + 1 o p_87662_ + a (Lcom/mojang/brigadier/StringReader;)Lqr; parse + 0 o p_87659_ + a ()Ldz; m_87657_ + static + getExamples ()Ljava/util/Collection; getExamples + parse (Lcom/mojang/brigadier/StringReader;)Ljava/lang/Object; parse + 0 o p_87665_ +dza net/minecraft/world/level/storage/LevelVersion + a f_78378_ + b f_78379_ + c f_78380_ + d f_78381_ + e f_78382_ + (IJLjava/lang/String;ILjava/lang/String;Z)V + 0 o p_193023_ + 1 o p_193024_ + 2 o p_193025_ + 3 o p_193026_ + 4 o p_193027_ + 5 o p_193028_ + a (Lcom/mojang/serialization/Dynamic;)Ldza; m_78390_ + static + 0 o p_78391_ + a ()I m_78389_ + b ()J m_78392_ + c ()Ljava/lang/String; m_78393_ + d ()Ldys; m_193029_ + e ()Z m_78395_ +dzb net/minecraft/world/level/storage/PlayerDataStorage + a f_78425_ + b f_78426_ + c f_78427_ + ()V + static + (Ldyy$c;Lcom/mojang/datafixers/DataFixer;)V + 0 o p_78430_ + 1 o p_78431_ + a ()[Ljava/lang/String; m_78432_ + a (Lbyo;)V m_78433_ + 0 o p_78434_ + b (Lbyo;)Lqr; m_78435_ + 0 o p_78436_ +dzc net/minecraft/world/level/storage/PrimaryLevelData + A f_78463_ + B f_78464_ + C f_78465_ + D f_78466_ + E f_78467_ + F f_78437_ + G f_78438_ + H f_78439_ + I f_78440_ + J f_276525_ + K f_78441_ + a f_202314_ + b f_164940_ + e f_78442_ + f f_78443_ + g f_244409_ + h f_244368_ + i f_78445_ + j f_78446_ + k f_78447_ + l f_78448_ + m f_78449_ + n f_78450_ + o f_78451_ + p f_78452_ + q f_78453_ + r f_78454_ + s f_78455_ + t f_78456_ + u f_78457_ + v f_78458_ + w f_78459_ + x f_78460_ + y f_78461_ + z f_78462_ + ()V + static + (Lcom/mojang/datafixers/DataFixer;ILqr;ZIIIFJJIIIZIZZZLdds$c;IILjava/util/UUID;Ljava/util/Set;Ljava/util/Set;Ledv;Lqr;Ldfn$a;Lcmq;Ldii;Ldzc$a;Lcom/mojang/serialization/Lifecycle;)V + 0 o p_277859_ + 1 o p_277672_ + 2 o p_277888_ + 3 o p_278109_ + 4 o p_277714_ + 5 o p_278088_ + 6 o p_278037_ + 7 o p_277542_ + 8 o p_277414_ + 9 o p_277635_ + 10 o p_277595_ + 11 o p_277794_ + 12 o p_278007_ + 13 o p_277943_ + 14 o p_277674_ + 15 o p_277644_ + 16 o p_277749_ + 17 o p_278004_ + 18 o p_277729_ + 19 o p_277856_ + 20 o p_278051_ + 21 o p_277341_ + 22 o p_277989_ + 23 o p_277399_ + 24 o p_277860_ + 25 o p_277936_ + 26 o p_289764_ + 27 o p_278064_ + 28 o p_278072_ + 29 o p_277548_ + 30 o p_277915_ + (Lcmq;Ldii;Ldzc$a;Lcom/mojang/serialization/Lifecycle;)V + 0 o p_251081_ + 1 o p_251666_ + 2 o p_252268_ + 3 o p_251714_ + A ()Ldii; m_246337_ + B ()Z m_5961_ + C ()Z m_7513_ + D ()Lcom/mojang/serialization/Lifecycle; m_5754_ + E ()Ldfn$a; m_6564_ + F ()Lcnf; m_6645_ + G ()Lqr; m_6587_ + H ()Z m_6565_ + I ()Ljava/util/Set; m_6161_ + J ()Ljava/util/Set; m_276907_ + K ()Ldzd; m_5996_ + L ()Lcmq; m_5926_ + N ()V m_78512_ + a (Ldfn$a;)V m_5915_ + 0 o p_289770_ + a (Z)V m_5557_ + 0 o p_78562_ + a (Lqr;)V m_5917_ + 0 o p_78571_ + a (Lhs;Lqr;Lqr;)V m_78545_ + 0 o p_78546_ + 1 o p_78547_ + 2 o p_78548_ + a (Lbdu;)V m_6166_ + 0 o p_78521_ + a (Ljava/util/UUID;)V m_8115_ + 0 o p_78553_ + a (Lcmj;)V m_5458_ + 0 o p_78525_ + a (F)V m_7113_ + 0 o p_78515_ + a (Lgu;F)V m_7250_ + 0 o p_78540_ + 1 o p_78541_ + a (Lcom/mojang/serialization/Dynamic;Lcom/mojang/datafixers/DataFixer;ILqr;Lcmq;Ldza;Ldzc$a;Ldii;Lcom/mojang/serialization/Lifecycle;)Ldzc; m_78530_ + static + 0 o p_78531_ + 1 o p_78532_ + 2 o p_78533_ + 3 o p_78534_ + 4 o p_78535_ + 5 o p_78536_ + 6 o p_250651_ + 7 o p_251864_ + 8 o p_78538_ + a (Lcnf;)V m_245843_ + 0 o p_252328_ + a (Lqr;Lrk;)V m_245034_ + static + 0 o p_248504_ + 1 o p_248505_ + a (Ljava/lang/String;Z)V m_7955_ + 0 o p_78550_ + 1 o p_78551_ + a (J)V m_6253_ + 0 o p_78519_ + a (Lhs;Lqr;)Lqr; m_6626_ + 0 o p_78543_ + 1 o p_78544_ + a ()I m_6789_ + a (Lcom/mojang/serialization/DataResult$PartialResult;)V m_245035_ + static + 0 o p_248506_ + a (Ljava/util/Set;)Lqx; m_277055_ + static + 0 o p_277880_ + a (I)V m_6393_ + 0 o p_78517_ + a (Ldds$c;)V m_7831_ + 0 o p_78527_ + a (Lp;Lcmo;)V m_142471_ + 0 o p_164972_ + 1 o p_164973_ + a (Lcom/mojang/serialization/Dynamic;)Ljava/util/stream/Stream; m_276762_ + static + 0 o p_277335_ + b (Z)V m_5565_ + 0 o p_78576_ + b (J)V m_6247_ + 0 o p_78567_ + b (Lqr;Lrk;)V m_78572_ + static + 0 o p_78573_ + 1 o p_78574_ + b (Lcom/mojang/serialization/Dynamic;)Ljava/util/stream/Stream; m_78528_ + static + 0 o p_78529_ + b (I)V m_6395_ + 0 o p_78565_ + b ()I m_6527_ + c ()I m_6526_ + c (I)V m_6397_ + 0 o p_78579_ + c (Z)V m_5555_ + 0 o p_78581_ + d (I)V m_6400_ + 0 o p_78584_ + d ()F m_6790_ + d (Z)V m_5560_ + 0 o p_78586_ + e (I)V m_6398_ + 0 o p_78589_ + e ()J m_6793_ + f (I)V m_6399_ + 0 o p_78592_ + f ()J m_6792_ + g (I)V m_6391_ + 0 o p_78595_ + g ()Ljava/lang/String; m_5462_ + h ()I m_6537_ + h (I)V m_6387_ + 0 o p_78598_ + i ()Z m_6534_ + j ()I m_6558_ + k ()Z m_6533_ + l ()I m_6531_ + m ()Lcmj; m_5464_ + n ()Z m_5466_ + o ()Z m_5468_ + p ()Z m_6535_ + q ()Lcmi; m_5470_ + r ()Ldds$c; m_5813_ + s ()Lbdu; m_5472_ + t ()Z m_5474_ + u ()Ledv; m_7540_ + v ()I m_6530_ + w ()I m_6528_ + x ()Ljava/util/UUID; m_142403_ + y ()Lqr; m_6614_ + z ()I m_6517_ +dzc$a net/minecraft/world/level/storage/PrimaryLevelData$SpecialWorldProperty + a NONE + b FLAT + c DEBUG + d $VALUES + ()V + static + (Ljava/lang/String;I)V + 0 o p_249033_ + 1 o p_248939_ + a ()[Ldzc$a; m_245155_ + static + valueOf (Ljava/lang/String;)Ldzc$a; valueOf + static + 0 o p_249824_ + values ()[Ldzc$a; values + static +dzd net/minecraft/world/level/storage/ServerLevelData + a (Z)V m_5557_ + 0 o p_78623_ + a (Ljava/util/UUID;)V m_8115_ + 0 o p_78620_ + a (Lcmj;)V m_5458_ + 0 o p_78618_ + a (I)V m_6393_ + 0 o p_78616_ + a (Ldds$c;)V m_7831_ + 0 o p_78619_ + a (Lp;Lcmo;)V m_142471_ + 0 o p_164976_ + 1 o p_164977_ + a (J)V m_6253_ + 0 o p_78617_ + b (J)V m_6247_ + 0 o p_78624_ + c (Z)V m_5555_ + 0 o p_78625_ + e (I)V m_6398_ + 0 o p_78626_ + f (I)V m_6399_ + 0 o p_78627_ + g ()Ljava/lang/String; m_5462_ + g (I)V m_6391_ + 0 o p_78628_ + h (I)V m_6387_ + 0 o p_78629_ + h ()I m_6537_ + j ()I m_6558_ + l ()I m_6531_ + m ()Lcmj; m_5464_ + o ()Z m_5468_ + p ()Z m_6535_ + r ()Ldds$c; m_5813_ + u ()Ledv; m_7540_ + v ()I m_6530_ + w ()I m_6528_ + x ()Ljava/util/UUID; m_142403_ + y ()Ljava/lang/String; m_241765_ + z ()Ljava/lang/String; m_241766_ +dze net/minecraft/world/level/storage/WorldData + c f_164978_ + d f_164979_ + A ()Ldii; m_246337_ + B ()Z m_5961_ + C ()Z m_7513_ + D ()Lcom/mojang/serialization/Lifecycle; m_5754_ + E ()Ldfn$a; m_6564_ + F ()Lcnf; m_6645_ + G ()Lqr; m_6587_ + H ()Z m_6565_ + I ()Ljava/util/Set; m_6161_ + J ()Ljava/util/Set; m_276907_ + K ()Ldzd; m_5996_ + L ()Lcmq; m_5926_ + M ()Lcaw; m_247623_ + a (Ldfn$a;)V m_5915_ + 0 o p_289783_ + a (Lqr;)V m_5917_ + 0 o p_78643_ + a (Lhs;Lqr;)Lqr; m_6626_ + 0 o p_78636_ + 1 o p_78637_ + a (Lbdu;)V m_6166_ + 0 o p_78633_ + a (Lcmj;)V m_5458_ + 0 o p_78635_ + a ()Ljava/lang/String; m_241767_ + a (Lcnf;)V m_245843_ + 0 o p_250014_ + a (Ljava/lang/String;Z)V m_7955_ + 0 o p_78638_ + 1 o p_78639_ + a (Lp;)V m_5461_ + 0 o p_78640_ + b ()Ljava/lang/String; m_78642_ + c ()Ljava/lang/String; m_276763_ + d ()Ljava/lang/String; m_78644_ + d (Z)V m_5560_ + 0 o p_78645_ + g ()Ljava/lang/String; m_5462_ + i (I)Ljava/lang/String; m_78646_ + 0 o p_78647_ + m ()Lcmj; m_5464_ + n ()Z m_5466_ + o ()Z m_5468_ + q ()Lcmi; m_5470_ + s ()Lbdu; m_5472_ + t ()Z m_5474_ + y ()Lqr; m_6614_ + z ()I m_6517_ +dzf net/minecraft/world/level/storage/WritableLevelData + a (F)V m_7113_ + 0 o p_78648_ + a (Lgu;F)V m_7250_ + 0 o p_78649_ + 1 o p_78650_ + b (I)V m_6395_ + 0 o p_78651_ + c (I)V m_6397_ + 0 o p_78652_ + d (I)V m_6400_ + 0 o p_78653_ +dzg net/minecraft/world/level/storage/loot/BuiltInLootTables + A f_78686_ + B f_78687_ + C f_78688_ + D f_78689_ + E f_78690_ + F f_78691_ + G f_78692_ + H f_78693_ + I f_78694_ + J f_78695_ + K f_78696_ + L f_78697_ + M f_78698_ + N f_78699_ + O f_78700_ + P f_230876_ + Q f_230877_ + R f_78701_ + S f_78702_ + T f_78703_ + U f_78704_ + V f_78705_ + W f_78706_ + X f_78707_ + Y f_78708_ + Z f_78709_ + a f_78712_ + aA f_283841_ + aB f_78738_ + aC f_276662_ + aD f_276661_ + aE f_279573_ + aF f_279604_ + aG f_276611_ + aH f_276614_ + aI f_78739_ + aJ f_78713_ + aa f_78710_ + ab f_78711_ + ac f_78714_ + ad f_78715_ + ae f_78716_ + af f_78717_ + ag f_78718_ + ah f_78719_ + ai f_78720_ + aj f_78721_ + ak f_78722_ + al f_78723_ + am f_78724_ + an f_78725_ + ao f_78726_ + ap f_78727_ + aq f_78728_ + ar f_78729_ + as f_78730_ + at f_78731_ + au f_78732_ + av f_78733_ + aw f_78734_ + ax f_78735_ + ay f_78736_ + az f_78737_ + b f_78740_ + c f_78741_ + d f_78742_ + e f_78743_ + f f_78744_ + g f_78745_ + h f_78746_ + i f_78747_ + j f_78748_ + k f_78749_ + l f_78750_ + m f_78751_ + n f_78752_ + o f_78753_ + p f_78754_ + q f_78755_ + r f_78756_ + s f_78757_ + t f_78758_ + u f_78759_ + v f_78760_ + w f_78761_ + x f_78762_ + y f_78763_ + z f_78764_ + ()V + static + ()V + a (Ljava/lang/String;)Lacq; m_78767_ + static + 0 o p_78768_ + a ()Ljava/util/Set; m_78766_ + static + a (Lacq;)Lacq; m_78769_ + static + 0 o p_78770_ +dzh net/minecraft/world/level/storage/loot/Deserializers + ()V + a ()Lcom/google/gson/GsonBuilder; m_78798_ + static + b ()Lcom/google/gson/GsonBuilder; m_78799_ + static + c ()Lcom/google/gson/GsonBuilder; m_78800_ + static +dzi net/minecraft/world/level/storage/loot/GsonAdapterFactory + ()V + a (Lhr;Ljava/lang/String;Ljava/lang/String;Ljava/util/function/Function;)Ldzi$a; m_78801_ + static + 0 o p_78802_ + 1 o p_78803_ + 2 o p_78804_ + 3 o p_78805_ +dzi$a net/minecraft/world/level/storage/loot/GsonAdapterFactory$Builder + a f_78806_ + b f_78807_ + c f_78808_ + d f_78809_ + e f_164983_ + f f_78810_ + (Lhr;Ljava/lang/String;Ljava/lang/String;Ljava/util/function/Function;)V + 0 o p_78812_ + 1 o p_78813_ + 2 o p_78814_ + 3 o p_78815_ + a (Ldzu;)Ldzi$a; m_164984_ + 0 o p_164985_ + a (Ldzu;Ldzi$b;)Ldzi$a; m_164986_ + 0 o p_164987_ + 1 o p_164988_ + a ()Ljava/lang/Object; m_78822_ +dzi$b net/minecraft/world/level/storage/loot/GsonAdapterFactory$InlineSerializer + a (Lcom/google/gson/JsonElement;Lcom/google/gson/JsonDeserializationContext;)Ljava/lang/Object; m_142268_ + 0 o p_164989_ + 1 o p_164990_ + a (Ljava/lang/Object;Lcom/google/gson/JsonSerializationContext;)Lcom/google/gson/JsonElement; m_142413_ + 0 o p_164991_ + 1 o p_164992_ +dzi$c net/minecraft/world/level/storage/loot/GsonAdapterFactory$JsonAdapter + a f_78829_ + b f_78830_ + c f_78831_ + d f_78832_ + e f_78833_ + f f_164993_ + (Lhr;Ljava/lang/String;Ljava/lang/String;Ljava/util/function/Function;Ldzu;Lcom/mojang/datafixers/util/Pair;)V + 0 o p_164995_ + 1 o p_164996_ + 2 o p_164997_ + 3 o p_164998_ + 4 o p_164999_ + 5 o p_165000_ + deserialize (Lcom/google/gson/JsonElement;Ljava/lang/reflect/Type;Lcom/google/gson/JsonDeserializationContext;)Ljava/lang/Object; deserialize + 0 o p_78848_ + 1 o p_78849_ + 2 o p_78850_ + serialize (Ljava/lang/Object;Ljava/lang/reflect/Type;Lcom/google/gson/JsonSerializationContext;)Lcom/google/gson/JsonElement; serialize + 0 o p_78852_ + 1 o p_78853_ + 2 o p_78854_ +dzj net/minecraft/world/level/storage/loot/IntRange + a f_165001_ + b f_165002_ + c f_165003_ + d f_165004_ + (Ledf;Ledf;)V + 0 o p_165006_ + 1 o p_165007_ + a (Ldzk;I)I m_165014_ + 0 o p_165015_ + 1 o p_165016_ + a (II)Ldzj; m_165011_ + static + 0 o p_165012_ + 1 o p_165013_ + a (I)Ldzj; m_165009_ + static + 0 o p_165010_ + a (Ledf;Ledf;Ldzk;I)Z m_165021_ + static + 0 o p_165022_ + 1 o p_165023_ + 2 o p_165024_ + 3 o p_165025_ + a ()Ljava/util/Set; m_165008_ + a (Ledf;Ldzk;I)Z m_165017_ + static + 0 o p_165018_ + 1 o p_165019_ + 2 o p_165020_ + b (Ledf;Ledf;Ldzk;I)I m_165035_ + static + 0 o p_165036_ + 1 o p_165037_ + 2 o p_165038_ + 3 o p_165039_ + b (Ldzk;I)Z m_165028_ + 0 o p_165029_ + 1 o p_165030_ + b (Ledf;Ldzk;I)I m_165031_ + static + 0 o p_165032_ + 1 o p_165033_ + 2 o p_165034_ + b (I)Ldzj; m_165026_ + static + 0 o p_165027_ + c (Ldzk;I)Z m_165042_ + static + 0 o p_165043_ + 1 o p_165044_ + c (I)Ldzj; m_165040_ + static + 0 o p_165041_ + c (Ledf;Ldzk;I)Z m_165045_ + static + 0 o p_165046_ + 1 o p_165047_ + 2 o p_165048_ + d (Ldzk;I)I m_165049_ + static + 0 o p_165050_ + 1 o p_165051_ + d (Ledf;Ldzk;I)I m_165052_ + static + 0 o p_165053_ + 1 o p_165054_ + 2 o p_165055_ +dzj$a net/minecraft/world/level/storage/loot/IntRange$IntChecker + test (Ldzk;I)Z m_165056_ + 0 o p_165057_ + 1 o p_165058_ +dzj$b net/minecraft/world/level/storage/loot/IntRange$IntLimiter + apply (Ldzk;I)I m_165059_ + 0 o p_165060_ + 1 o p_165061_ +dzj$c net/minecraft/world/level/storage/loot/IntRange$Serializer + ()V + a (Lcom/google/gson/JsonElement;Ljava/lang/reflect/Type;Lcom/google/gson/JsonDeserializationContext;)Ldzj; deserialize + 0 o p_165064_ + 1 o p_165065_ + 2 o p_165066_ + a (Ldzj;Ljava/lang/reflect/Type;Lcom/google/gson/JsonSerializationContext;)Lcom/google/gson/JsonElement; serialize + 0 o p_165068_ + 1 o p_165069_ + 2 o p_165070_ + deserialize (Lcom/google/gson/JsonElement;Ljava/lang/reflect/Type;Lcom/google/gson/JsonDeserializationContext;)Ljava/lang/Object; deserialize + 0 o p_165072_ + 1 o p_165073_ + 2 o p_165074_ + serialize (Ljava/lang/Object;Ljava/lang/reflect/Type;Lcom/google/gson/JsonSerializationContext;)Lcom/google/gson/JsonElement; serialize + 0 o p_165076_ + 1 o p_165077_ + 2 o p_165078_ +dzk net/minecraft/world/level/storage/loot/LootContext + a f_78914_ + b f_78907_ + c f_278421_ + d f_278466_ + (Ldzq;Lapf;Ldzo;)V + 0 o p_287722_ + 1 o p_287702_ + 2 o p_287619_ + a (Ldzs;)Ldzk$c; m_278811_ + static + 0 o p_279327_ + a (Ldzk$c;)Z m_278628_ + 0 o p_279182_ + a (Leaz;)Ldzk$c; m_278853_ + static + 0 o p_279163_ + a ()Ldzo; m_278643_ + a (Lebt;)Z m_78936_ + 0 o p_78937_ + a (Leck;)Ldzk$c; m_278785_ + static + 0 o p_279250_ + a (Lacq;Ljava/util/function/Consumer;)V m_78942_ + 0 o p_78943_ + 1 o p_78944_ + b (Lebt;)Ljava/lang/Object; m_165124_ + 0 o p_165125_ + b ()Lapf; m_230907_ + b (Ldzk$c;)Z m_278759_ + 0 o p_279152_ + c ()F m_78945_ + c (Ldzk$c;)V m_278639_ + 0 o p_279198_ + c (Lebt;)Ljava/lang/Object; m_78953_ + 0 o p_78954_ + d ()Laif; m_78952_ +dzk$a net/minecraft/world/level/storage/loot/LootContext$Builder + a f_78956_ + b f_78958_ + (Ldzq;)V + 0 o p_287628_ + a ()Laif; m_78962_ + a (Lacq;)Ldzk; m_287259_ + 0 o p_287626_ + a (J)Ldzk$a; m_78965_ + 0 o p_78966_ +dzk$b net/minecraft/world/level/storage/loot/LootContext$EntityTarget + a THIS + b KILLER + c DIRECT_KILLER + d KILLER_PLAYER + e f_78994_ + f f_78995_ + g $VALUES + ()V + static + (Ljava/lang/String;ILjava/lang/String;Lebt;)V + 0 o p_78999_ + 1 o p_79000_ + 2 o p_79001_ + 3 o p_79002_ + a ()Lebt; m_79003_ + a (Ljava/lang/String;)Ldzk$b; m_79006_ + static + 0 o p_79007_ + b ()[Ldzk$b; m_165126_ + static + valueOf (Ljava/lang/String;)Ldzk$b; valueOf + static + 0 o p_79009_ + values ()[Ldzk$b; values + static +dzk$b$a net/minecraft/world/level/storage/loot/LootContext$EntityTarget$Serializer + ()V + a (Lcom/google/gson/stream/JsonReader;)Ldzk$b; read + 0 o p_79013_ + a (Lcom/google/gson/stream/JsonWriter;Ldzk$b;)V write + 0 o p_79015_ + 1 o p_79016_ + read (Lcom/google/gson/stream/JsonReader;)Ljava/lang/Object; read + 0 o p_79018_ + write (Lcom/google/gson/stream/JsonWriter;Ljava/lang/Object;)V write + 0 o p_79020_ + 1 o p_79021_ +dzk$c net/minecraft/world/level/storage/loot/LootContext$VisitedEntry + a f_278478_ + b f_278374_ + (Ldzp;Ljava/lang/Object;)V + 0 o f_278478_ + 1 o f_278374_ + a ()Ldzp; f_278478_ + b ()Ljava/lang/Object; f_278374_ + equals (Ljava/lang/Object;)Z equals + 0 o p_279464_ + hashCode ()I hashCode + toString ()Ljava/lang/String; toString +dzl net/minecraft/world/level/storage/loot/LootContextUser + a (Ldzv;)V m_6169_ + 0 o p_79022_ + a ()Ljava/util/Set; m_6231_ +dzm net/minecraft/world/level/storage/loot/LootDataId + a f_278383_ + b f_278500_ + (Ldzp;Lacq;)V + 0 o f_278383_ + 1 o f_278500_ + a ()Ldzp; f_278383_ + b ()Lacq; f_278500_ + equals (Ljava/lang/Object;)Z equals + 0 o p_279091_ + hashCode ()I hashCode + toString ()Ljava/lang/String; toString +dzn net/minecraft/world/level/storage/loot/LootDataManager + a f_278474_ + b f_278476_ + c f_278415_ + d f_278404_ + ()V + static + ()V + a (Lcom/google/common/collect/ImmutableMap$Builder;Ldzp;Lcom/google/common/collect/ImmutableMultimap$Builder;Lacq;Ljava/lang/Object;)V m_278819_ + static + 0 o p_279346_ + 1 o p_279474_ + 2 o p_279293_ + 3 o p_279130_ + 4 o p_279313_ + a (Lakr$a;Lakx;Lban;Lban;Ljava/util/concurrent/Executor;Ljava/util/concurrent/Executor;)Ljava/util/concurrent/CompletableFuture; m_5540_ + 0 o p_279240_ + 1 o p_279377_ + 2 o p_279135_ + 3 o p_279088_ + 4 o p_279148_ + 5 o p_279169_ + a (Lcom/google/common/collect/ImmutableMap$Builder;Lcom/google/common/collect/ImmutableMultimap$Builder;Ldzp;Ljava/util/Map;)V m_278729_ + static + 0 o p_279218_ + 1 o p_279385_ + 2 o p_279449_ + 3 o p_279262_ + a (Lakx;Ldzp;Ljava/util/Map;)V m_278660_ + static + 0 o p_279108_ + 1 o p_279341_ + 2 o p_279432_ + a (Lakx;Ljava/util/concurrent/Executor;Ljava/util/Map;Ldzp;)Ljava/util/concurrent/CompletableFuture; m_278675_ + static + 0 o p_279491_ + 1 o p_279434_ + 2 o p_279356_ + 3 o p_279242_ + a (Ldzp;)Ljava/util/Collection; m_278706_ + 0 o p_279455_ + a (Ljava/util/Map;)V m_278787_ + 0 o p_279426_ + a (Ljava/util/Map;Ljava/lang/Void;)V m_278738_ + 0 o p_279210_ + 1 o p_279096_ + a (Ljava/lang/String;Ljava/lang/String;)V m_278659_ + static + 0 o p_279487_ + 1 o p_279312_ + a ([Leck;)Leck; m_278755_ + static + 0 o p_279415_ + a (Ldzp;Lakx;Ljava/util/concurrent/Executor;Ljava/util/Map;)Ljava/util/concurrent/CompletableFuture; m_278800_ + static + 0 o p_279205_ + 1 o p_279441_ + 2 o p_279233_ + 3 o p_279241_ + a (Ldzp;Ljava/util/Map;Lacq;Lcom/google/gson/JsonElement;)V m_278807_ + static + 0 o p_279362_ + 1 o p_279442_ + 2 o p_279416_ + 3 o p_279151_ + a (Ldzv;Ldzm;Ljava/lang/Object;)V m_278621_ + static + 0 o p_279270_ + 1 o p_279249_ + 2 o p_279342_ + a ([Leaz;)Leaz; m_278704_ + static + 0 o p_279450_ + a (I)[Ljava/util/concurrent/CompletableFuture; m_278638_ + static + 0 o p_279126_ + a (Ljava/util/Map;Lacq;Ljava/lang/Object;)V m_278668_ + static + 0 o p_279324_ + 1 o p_279290_ + 2 o p_279295_ + b (Ldzv;Ldzm;Ljava/lang/Object;)V m_278719_ + static + 0 o p_279192_ + 1 o p_279387_ + 2 o p_279087_ + getElement (Ldzm;)Ljava/lang/Object; m_278667_ + 0 o p_279467_ +dzn$1 net/minecraft/world/level/storage/loot/LootDataManager$1 + a f_278380_ + b f_278498_ + (Ldzn;Ljava/util/Map;)V + 0 o p_279206_ + 1 o p_279160_ + getElement (Ldzm;)Ljava/lang/Object; m_278667_ + 0 o p_279194_ +dzn$a net/minecraft/world/level/storage/loot/LootDataManager$CompositePredicate + a f_278503_ + b f_278433_ + ([Leck;)V + 0 o p_279376_ + a (Ldzv;)V m_6169_ + 0 o p_279208_ + a (Ldzk;)Z test + 0 o p_279232_ + b ()Lecl; m_7940_ + test (Ljava/lang/Object;)Z test + 0 o p_279221_ +dzn$b net/minecraft/world/level/storage/loot/LootDataManager$FunctionSequence + a f_278417_ + b f_278409_ + ([Leaz;)V + 0 o p_279339_ + a (Ldzv;)V m_6169_ + 0 o p_279400_ + a (Lcfz;Ldzk;)Lcfz; apply + 0 o p_279166_ + 1 o p_279343_ + apply (Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object; apply + 0 o p_279102_ + 1 o p_279355_ + b ()Leba; m_7162_ +dzo net/minecraft/world/level/storage/loot/LootDataResolver + getElement (Ldzp;Lacq;)Ljava/lang/Object; m_278789_ + 0 o p_279423_ + 1 o p_279277_ + getElement (Ldzm;)Ljava/lang/Object; m_278667_ + 0 o p_279309_ + getElementOptional (Ldzp;Lacq;)Ljava/util/Optional; m_278615_ + 0 o p_279350_ + 1 o p_279323_ + getElementOptional (Ldzm;)Ljava/util/Optional; m_278739_ + 0 o p_279486_ + getLootTable (Lacq;)Ldzs; m_278676_ + 0 o p_279456_ +dzp net/minecraft/world/level/storage/loot/LootDataType + a f_278407_ + b f_278496_ + c f_278413_ + d f_278425_ + e f_278508_ + f f_278485_ + g f_278462_ + h f_278443_ + ()V + static + (Lcom/google/gson/Gson;Ljava/util/function/BiFunction;Ljava/lang/String;Ldzp$a;)V + 0 o p_279334_ + 1 o p_279478_ + 2 o p_279433_ + 3 o p_279363_ + a (Ldzv;Ldzm;Ldzs;)V m_278847_ + static + 0 o p_279333_ + 1 o p_279227_ + 2 o p_279406_ + a (Ljava/lang/Class;)Ljava/util/function/BiFunction; m_278629_ + static + 0 o p_279251_ + a (Ldzv;Ldzm;Ldzl;)V m_278672_ + static + 0 o p_279353_ + 1 o p_279374_ + 2 o p_279097_ + a (Ljava/lang/Class;Lcom/google/gson/Gson;Ljava/lang/String;)Ljava/util/function/BiFunction; m_278634_ + static + 0 o p_279127_ + 1 o p_279398_ + 2 o p_279358_ + a (Ljava/lang/Class;Ljava/util/function/Function;Ljava/lang/Class;Lcom/google/gson/Gson;Ljava/lang/String;)Ljava/util/function/BiFunction; m_278664_ + static + 0 o p_279158_ + 1 o p_279317_ + 2 o p_279272_ + 3 o p_279462_ + 4 o p_279351_ + a (Lcom/google/gson/Gson;Ljava/lang/Class;Ljava/util/function/Function;Ljava/lang/Class;Ljava/lang/String;Lacq;Lcom/google/gson/JsonElement;)Ljava/util/Optional; m_278814_ + static + 0 o p_279284_ + 1 o p_279388_ + 2 o p_279402_ + 3 o p_279457_ + 4 o p_279354_ + 5 o p_279495_ + 6 o p_279409_ + a (Lcom/google/gson/Gson;Ljava/lang/Class;Ljava/lang/String;Lacq;Lcom/google/gson/JsonElement;)Ljava/util/Optional; m_278728_ + static + 0 o p_279254_ + 1 o p_279439_ + 2 o p_279211_ + 3 o p_279297_ + 4 o p_279222_ + a (Lacq;Lcom/google/gson/JsonElement;)Ljava/util/Optional; m_278763_ + 0 o p_279253_ + 1 o p_279330_ + a (Ljava/lang/Class;Ljava/util/function/Function;)Ljava/util/function/BiFunction; m_278813_ + static + 0 o p_279337_ + 1 o p_279252_ + a (Ldzv;Ldzm;Ljava/lang/Object;)V m_278701_ + 0 o p_279366_ + 1 o p_279106_ + 2 o p_279124_ + a ()Lcom/google/gson/Gson; m_278857_ + b ()Ljava/lang/String; m_278624_ + c ()Ljava/util/stream/Stream; m_278779_ + static + d ()Ldzp$a; m_278693_ + static + e ()Ldzp$a; m_278846_ + static +dzp$a net/minecraft/world/level/storage/loot/LootDataType$Validator + run (Ldzv;Ldzm;Ljava/lang/Object;)V m_278714_ + 0 o p_279419_ + 1 o p_279145_ + 2 o p_279326_ +dzq net/minecraft/world/level/storage/loot/LootParams + a f_286983_ + b f_286977_ + c f_286955_ + d f_286957_ + (Laif;Ljava/util/Map;Ljava/util/Map;F)V + 0 o p_287766_ + 1 o p_287705_ + 2 o p_287642_ + 3 o p_287671_ + a (Lebt;)Z m_287166_ + 0 o p_287749_ + a ()Laif; m_287182_ + a (Lacq;Ljava/util/function/Consumer;)V m_287256_ + 0 o p_287768_ + 1 o p_287711_ + b (Lebt;)Ljava/lang/Object; m_287156_ + 0 o p_287670_ + b ()F m_287164_ + c (Lebt;)Ljava/lang/Object; m_287251_ + 0 o p_287644_ + d (Lebt;)Ljava/lang/Object; m_287267_ + 0 o p_287769_ +dzq$a net/minecraft/world/level/storage/loot/LootParams$Builder + a f_286934_ + b f_286945_ + c f_286986_ + d f_287000_ + (Laif;)V + 0 o p_287594_ + a (Lebt;)Ljava/lang/Object; m_287261_ + 0 o p_287646_ + a (Lebt;Ljava/lang/Object;)Ldzq$a; m_287286_ + 0 o p_287706_ + 1 o p_287606_ + a (Lacq;Ldzq$b;)Ldzq$a; m_287145_ + 0 o p_287734_ + 1 o p_287724_ + a (F)Ldzq$a; m_287239_ + 0 o p_287703_ + a ()Laif; m_287258_ + a (Lebu;)Ldzq; m_287235_ + 0 o p_287701_ + b (Lebt;Ljava/lang/Object;)Ldzq$a; m_287289_ + 0 o p_287680_ + 1 o p_287630_ + b (Lebt;)Ljava/lang/Object; m_287159_ + 0 o p_287759_ +dzq$b net/minecraft/world/level/storage/loot/LootParams$DynamicDrop + add (Ljava/util/function/Consumer;)V m_287291_ + 0 o p_287584_ +dzr net/minecraft/world/level/storage/loot/LootPool + a f_79023_ + b f_79024_ + c f_79025_ + d f_79026_ + e f_79027_ + f f_79028_ + g f_79029_ + ([Leaf;[Leck;[Leaz;Ledf;Ledf;)V + 0 o p_165128_ + 1 o p_165129_ + 2 o p_165130_ + 3 o p_165131_ + 4 o p_165132_ + a ()Ldzr$a; m_79043_ + static + a (Ldzv;)V m_79051_ + 0 o p_79052_ + a (Ldzk;Ljava/util/List;Lorg/apache/commons/lang3/mutable/MutableInt;Leae;)V m_79044_ + static + 0 o p_79045_ + 1 o p_79046_ + 2 o p_79047_ + 3 o p_79048_ + a (Ljava/util/function/Consumer;Ldzk;)V m_79053_ + 0 o p_79054_ + 1 o p_79055_ + b (Ljava/util/function/Consumer;Ldzk;)V m_79058_ + 0 o p_79059_ + 1 o p_79060_ +dzr$a net/minecraft/world/level/storage/loot/LootPool$Builder + a f_79067_ + b f_79068_ + c f_79069_ + d f_79070_ + e f_79071_ + ()V + a (Ledf;)Ldzr$a; m_165133_ + 0 o p_165134_ + a ()Ldzr$a; m_79073_ + a (Leaf$a;)Ldzr$a; m_79076_ + 0 o p_79077_ + a (Leaz$a;)Ldzr$a; m_79078_ + 0 o p_79079_ + a (Leck$a;)Ldzr$a; m_79080_ + 0 o p_79081_ + b (Leck$a;)Lecd; m_79080_ + 0 o p_230916_ + b (Ledf;)Ldzr$a; m_165135_ + 0 o p_165136_ + b ()Ldzr; m_79082_ + b (Leaz$a;)Leaw; m_79078_ + 0 o p_230914_ + c ()Leaw; m_79073_ + d ()Lecd; m_79073_ +dzr$b net/minecraft/world/level/storage/loot/LootPool$Serializer + ()V + a (Ldzr;Ljava/lang/reflect/Type;Lcom/google/gson/JsonSerializationContext;)Lcom/google/gson/JsonElement; serialize + 0 o p_79094_ + 1 o p_79095_ + 2 o p_79096_ + a (Lcom/google/gson/JsonElement;Ljava/lang/reflect/Type;Lcom/google/gson/JsonDeserializationContext;)Ldzr; deserialize + 0 o p_79090_ + 1 o p_79091_ + 2 o p_79092_ + deserialize (Lcom/google/gson/JsonElement;Ljava/lang/reflect/Type;Lcom/google/gson/JsonDeserializationContext;)Ljava/lang/Object; deserialize + 0 o p_79098_ + 1 o p_79099_ + 2 o p_79100_ + serialize (Ljava/lang/Object;Ljava/lang/reflect/Type;Lcom/google/gson/JsonSerializationContext;)Lcom/google/gson/JsonElement; serialize + 0 o p_79102_ + 1 o p_79103_ + 2 o p_79104_ +dzs net/minecraft/world/level/storage/loot/LootTable + a f_79105_ + b f_79106_ + c f_79107_ + d f_79108_ + e f_286958_ + f f_79109_ + g f_79110_ + h f_79111_ + ()V + static + (Lebu;Lacq;[Ldzr;[Leaz;)V + 0 o p_287716_ + 1 o p_287737_ + 2 o p_287700_ + 3 o p_287663_ + a (Ldzq;JLjava/util/function/Consumer;)V m_287276_ + 0 o p_287748_ + 1 o p_287729_ + 2 o p_287583_ + a (Ldzk;Ljava/util/function/Consumer;)V m_79131_ + 0 o p_79132_ + 1 o p_79133_ + a (Ldzv;)V m_79136_ + 0 o p_79137_ + a (Laif;Ljava/util/function/Consumer;Lcfz;)V m_287134_ + static + 0 o p_287568_ + 1 o p_287569_ + 2 o p_287570_ + a (Lit/unimi/dsi/fastutil/objects/ObjectArrayList;ILapf;)V m_230924_ + 0 o p_230925_ + 1 o p_230926_ + 2 o p_230927_ + a (Ldzq;)Lit/unimi/dsi/fastutil/objects/ObjectArrayList; m_287195_ + 0 o p_287616_ + a ()Lebu; m_79122_ + a (Laif;Ljava/util/function/Consumer;)Ljava/util/function/Consumer; m_246283_ + static + 0 o p_287765_ + 1 o p_251308_ + a (Ldzq;Ljava/util/function/Consumer;)V m_287190_ + 0 o p_287669_ + 1 o p_287781_ + a (Ldzq;J)Lit/unimi/dsi/fastutil/objects/ObjectArrayList; m_287214_ + 0 o p_287574_ + 1 o p_287773_ + a (Lbdq;Ldzq;J)V m_287188_ + 0 o p_287662_ + 1 o p_287743_ + 2 o p_287585_ + a (Lbdq;Lapf;)Ljava/util/List; m_230919_ + 0 o p_230920_ + 1 o p_230921_ + a (Ldzk;)Lit/unimi/dsi/fastutil/objects/ObjectArrayList; m_230922_ + 0 o p_230923_ + b (Ldzq;Ljava/util/function/Consumer;)V m_287228_ + 0 o p_287704_ + 1 o p_287617_ + b ()Ldzs$a; m_79147_ + static + b (Ldzk;Ljava/util/function/Consumer;)V m_79148_ + 0 o p_79149_ + 1 o p_79150_ +dzs$a net/minecraft/world/level/storage/loot/LootTable$Builder + a f_79156_ + b f_79157_ + c f_79158_ + d f_287003_ + ()V + a ()Ldzs$a; m_79073_ + a (Lebu;)Ldzs$a; m_79165_ + 0 o p_79166_ + a (Lacq;)Ldzs$a; m_287223_ + 0 o p_287667_ + a (Ldzr$a;)Ldzs$a; m_79161_ + 0 o p_79162_ + a (Leaz$a;)Ldzs$a; m_79078_ + 0 o p_79164_ + b ()Ldzs; m_79167_ + b (Leaz$a;)Leaw; m_79078_ + 0 o p_230929_ + c ()Leaw; m_79073_ +dzs$b net/minecraft/world/level/storage/loot/LootTable$Serializer + ()V + a (Lcom/google/gson/JsonElement;Ljava/lang/reflect/Type;Lcom/google/gson/JsonDeserializationContext;)Ldzs; deserialize + 0 o p_79173_ + 1 o p_79174_ + 2 o p_79175_ + a (Ldzs;Ljava/lang/reflect/Type;Lcom/google/gson/JsonSerializationContext;)Lcom/google/gson/JsonElement; serialize + 0 o p_79177_ + 1 o p_79178_ + 2 o p_79179_ + deserialize (Lcom/google/gson/JsonElement;Ljava/lang/reflect/Type;Lcom/google/gson/JsonDeserializationContext;)Ljava/lang/Object; deserialize + 0 o p_79181_ + 1 o p_79182_ + 2 o p_79183_ + serialize (Ljava/lang/Object;Ljava/lang/reflect/Type;Lcom/google/gson/JsonSerializationContext;)Lcom/google/gson/JsonElement; serialize + 0 o p_79185_ + 1 o p_79186_ + 2 o p_79187_ +dzt net/minecraft/world/level/storage/loot/Serializer + a (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;)Ljava/lang/Object; m_7561_ + 0 o p_79323_ + 1 o p_79324_ + a (Lcom/google/gson/JsonObject;Ljava/lang/Object;Lcom/google/gson/JsonSerializationContext;)V m_6170_ + 0 o p_79325_ + 1 o p_79326_ + 2 o p_79327_ +dzu net/minecraft/world/level/storage/loot/SerializerType + a f_79328_ + (Ldzt;)V + 0 o p_79330_ + a ()Ldzt; m_79331_ +dzv net/minecraft/world/level/storage/loot/ValidationContext + a f_79332_ + b f_79333_ + c f_79334_ + d f_278480_ + e f_278483_ + f f_79339_ + (Lebu;Ldzo;)V + 0 o p_279447_ + 1 o p_279446_ + (Lcom/google/common/collect/Multimap;Ljava/util/function/Supplier;Lebu;Ldzo;Ljava/util/Set;)V + 0 o p_279202_ + 1 o p_279184_ + 2 o p_279485_ + 3 o p_279476_ + 4 o p_279392_ + a (Lebu;)Ldzv; m_79355_ + 0 o p_79356_ + a (Ljava/lang/String;)V m_79357_ + 0 o p_79358_ + a ()Lcom/google/common/collect/Multimap; m_79352_ + a (Ldzl;)V m_79353_ + 0 o p_79354_ + a (Ljava/lang/String;Ldzm;)Ldzv; m_278632_ + 0 o p_279180_ + 1 o p_279438_ + a (Ldzm;)Z m_278820_ + 0 o p_279178_ + b ()Ldzo; m_278720_ + b (Ljava/lang/String;)Ldzv; m_79365_ + 0 o p_79366_ + c (Ljava/lang/String;)Ljava/lang/String; m_79373_ + 0 o p_79374_ + c ()Ljava/lang/String; m_79364_ + d ()Ljava/lang/String; m_79372_ + static + d (Ljava/lang/String;)Ljava/lang/String; m_79377_ + 0 o p_79378_ +dzw net/minecraft/world/level/storage/loot/entries/AlternativesEntry + ([Leaf;[Leck;)V + 0 o p_79384_ + 1 o p_79385_ + a ([Ldzx;)Ldzx; m_5690_ + 0 o p_79390_ + a ([Ldzx;Ldzk;Ljava/util/function/Consumer;)Z m_79391_ + static + 0 o p_79392_ + 1 o p_79393_ + 2 o p_79394_ + a (Ldzv;)V m_6165_ + 0 o p_79388_ + a ([Leaf$a;)Ldzw$a; m_79395_ + static + 0 o p_79396_ + a (Ljava/util/Collection;Ljava/util/function/Function;)Ldzw$a; m_230933_ + static + 0 o p_230934_ + 1 o p_230935_ + a ()Leag; m_6751_ + a (I)[Leaf$a; m_230931_ + static + 0 o p_230932_ +dzw$a net/minecraft/world/level/storage/loot/entries/AlternativesEntry$Builder + a f_79397_ + ([Leaf$a;)V + 0 o p_79399_ + a (Leaf$a;)Ldzw$a; m_7170_ + 0 o p_79402_ + a ()Ldzw$a; m_6897_ + at_ ()Leaf$a; m_6897_ + b ()Leaf; m_7512_ +dzx net/minecraft/world/level/storage/loot/entries/ComposableEntryContainer + a f_79405_ + b f_79406_ + ()V + static + a (Ldzx;Ldzk;Ljava/util/function/Consumer;)Z m_79413_ + 0 o p_79414_ + 1 o p_79415_ + 2 o p_79416_ + a (Ldzk;Ljava/util/function/Consumer;)Z m_79408_ + static + 0 o p_79409_ + 1 o p_79410_ + and (Ldzx;)Ldzx; m_79411_ + 0 o p_79412_ + b (Ldzx;Ldzk;Ljava/util/function/Consumer;)Z m_79422_ + 0 o p_79423_ + 1 o p_79424_ + 2 o p_79425_ + b (Ldzk;Ljava/util/function/Consumer;)Z m_79417_ + static + 0 o p_79418_ + 1 o p_79419_ + expand (Ldzk;Ljava/util/function/Consumer;)Z m_6562_ + 0 o p_79426_ + 1 o p_79427_ + or (Ldzx;)Ldzx; m_79420_ + 0 o p_79421_ +dzy net/minecraft/world/level/storage/loot/entries/CompositeEntryBase + c f_79428_ + e f_79429_ + ([Leaf;[Leck;)V + 0 o p_79431_ + 1 o p_79432_ + a ([Ldzx;)Ldzx; m_5690_ + 0 o p_79437_ + a (Ldzv;)V m_6165_ + 0 o p_79434_ + a (Ldzy$a;)Leaf$b; m_79435_ + static + 0 o p_79436_ + expand (Ldzk;Ljava/util/function/Consumer;)Z m_6562_ + 0 o p_79439_ + 1 o p_79440_ +dzy$1 net/minecraft/world/level/storage/loot/entries/CompositeEntryBase$1 + a f_79441_ + (Ldzy$a;)V + 0 o p_79443_ + a (Lcom/google/gson/JsonObject;Leaf;Lcom/google/gson/JsonSerializationContext;)V m_7219_ + 0 o p_79453_ + 1 o p_79454_ + 2 o p_79455_ + a (Lcom/google/gson/JsonObject;Ldzy;Lcom/google/gson/JsonSerializationContext;)V m_7219_ + 0 o p_79449_ + 1 o p_79450_ + 2 o p_79451_ + a (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;[Leck;)Ldzy; m_5921_ + 0 o p_79445_ + 1 o p_79446_ + 2 o p_79447_ + b (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;[Leck;)Leaf; m_5921_ + 0 o p_79457_ + 1 o p_79458_ + 2 o p_79459_ +dzy$a net/minecraft/world/level/storage/loot/entries/CompositeEntryBase$CompositeEntryConstructor + create ([Leaf;[Leck;)Ldzy; m_79460_ + 0 o p_79461_ + 1 o p_79462_ +dzz net/minecraft/world/level/storage/loot/entries/DynamicLoot + i f_79463_ + (Lacq;II[Leck;[Leaz;)V + 0 o p_79465_ + 1 o p_79466_ + 2 o p_79467_ + 3 o p_79468_ + 4 o p_79469_ + a (Lacq;II[Leck;[Leaz;)Leah; m_79485_ + static + 0 o p_79486_ + 1 o p_79487_ + 2 o p_79488_ + 3 o p_79489_ + 4 o p_79490_ + a ()Leag; m_6751_ + a (Ljava/util/function/Consumer;Ldzk;)V m_6948_ + 0 o p_79481_ + 1 o p_79482_ + a (Lacq;)Leah$a; m_79483_ + static + 0 o p_79484_ +dzz$a net/minecraft/world/level/storage/loot/entries/DynamicLoot$Serializer + ()V + a (Lcom/google/gson/JsonObject;Leah;Lcom/google/gson/JsonSerializationContext;)V m_7219_ + 0 o p_79508_ + 1 o p_79509_ + 2 o p_79510_ + a (Lcom/google/gson/JsonObject;Ldzz;Lcom/google/gson/JsonSerializationContext;)V m_7219_ + 0 o p_79500_ + 1 o p_79501_ + 2 o p_79502_ + a (Lcom/google/gson/JsonObject;Leaf;Lcom/google/gson/JsonSerializationContext;)V m_7219_ + 0 o p_79504_ + 1 o p_79505_ + 2 o p_79506_ + a (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;II[Leck;[Leaz;)Ldzz; m_7267_ + 0 o p_79493_ + 1 o p_79494_ + 2 o p_79495_ + 3 o p_79496_ + 4 o p_79497_ + 5 o p_79498_ + b (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;II[Leck;[Leaz;)Leah; m_7267_ + 0 o p_79512_ + 1 o p_79513_ + 2 o p_79514_ + 3 o p_79515_ + 4 o p_79516_ + 5 o p_79517_ +e com/mojang/math/GivensParameters + a f_276143_ + b f_276137_ + (FF)V + 0 o f_276143_ + 1 o f_276137_ + a (FF)Le; m_276229_ + static + 0 o p_276277_ + 1 o p_276305_ + a ()Le; m_276224_ + a (F)Le; m_276195_ + static + 0 o p_276260_ + a (Lorg/joml/Quaternionf;)Lorg/joml/Quaternionf; m_276196_ + 0 o p_276271_ + a (Lorg/joml/Matrix3f;)Lorg/joml/Matrix3f; m_276201_ + 0 o p_276268_ + b ()F m_276191_ + b (Lorg/joml/Quaternionf;)Lorg/joml/Quaternionf; m_276212_ + 0 o p_276323_ + b (Lorg/joml/Matrix3f;)Lorg/joml/Matrix3f; m_276214_ + 0 o p_276274_ + c ()F m_276211_ + c (Lorg/joml/Matrix3f;)Lorg/joml/Matrix3f; m_276210_ + 0 o p_276317_ + c (Lorg/joml/Quaternionf;)Lorg/joml/Quaternionf; m_276202_ + 0 o p_276281_ + d ()F f_276143_ + e ()F f_276137_ + equals (Ljava/lang/Object;)Z equals + 0 o p_276283_ + hashCode ()I hashCode + toString ()Ljava/lang/String; toString +ea net/minecraft/commands/arguments/DimensionArgument + a f_88801_ + b f_88802_ + ()V + static + ()V + a ()Lea; m_88805_ + static + a (Ljava/lang/Object;)Lcom/mojang/brigadier/Message; m_88811_ + static + 0 o p_88812_ + a (Lacp;)Ljava/lang/String; m_88813_ + static + 0 o p_88814_ + a (Lcom/mojang/brigadier/context/CommandContext;Ljava/lang/String;)Laif; m_88808_ + static + 0 o p_88809_ + 1 o p_88810_ + a (Lcom/mojang/brigadier/StringReader;)Lacq; parse + 0 o p_88807_ + getExamples ()Ljava/util/Collection; getExamples + listSuggestions (Lcom/mojang/brigadier/context/CommandContext;Lcom/mojang/brigadier/suggestion/SuggestionsBuilder;)Ljava/util/concurrent/CompletableFuture; listSuggestions + 0 o p_88817_ + 1 o p_88818_ + parse (Lcom/mojang/brigadier/StringReader;)Ljava/lang/Object; parse + 0 o p_88820_ +eaa net/minecraft/world/level/storage/loot/entries/EmptyLootItem + (II[Leck;[Leaz;)V + 0 o p_79519_ + 1 o p_79520_ + 2 o p_79521_ + 3 o p_79522_ + a ()Leag; m_6751_ + a (Ljava/util/function/Consumer;Ldzk;)V m_6948_ + 0 o p_79531_ + 1 o p_79532_ + b ()Leah$a; m_79533_ + static +eaa$a net/minecraft/world/level/storage/loot/entries/EmptyLootItem$Serializer + ()V + a (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;II[Leck;[Leaz;)Leaa; m_7267_ + 0 o p_79536_ + 1 o p_79537_ + 2 o p_79538_ + 3 o p_79539_ + 4 o p_79540_ + 5 o p_79541_ + b (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;II[Leck;[Leaz;)Leah; m_7267_ + 0 o p_79543_ + 1 o p_79544_ + 2 o p_79545_ + 3 o p_79546_ + 4 o p_79547_ + 5 o p_79548_ +eab net/minecraft/world/level/storage/loot/entries/EntryGroup + ([Leaf;[Leck;)V + 0 o p_79550_ + 1 o p_79551_ + a ([Ldzx;)Ldzx; m_5690_ + 0 o p_79559_ + a ([Leaf$a;)Leab$a; m_165137_ + static + 0 o p_165138_ + a ([Ldzx;Ldzk;Ljava/util/function/Consumer;)Z m_79560_ + static + 0 o p_79561_ + 1 o p_79562_ + 2 o p_79563_ + a (Ldzx;Ldzx;Ldzk;Ljava/util/function/Consumer;)Z m_79553_ + static + 0 o p_79554_ + 1 o p_79555_ + 2 o p_79556_ + 3 o p_79557_ + a ()Leag; m_6751_ +eab$a net/minecraft/world/level/storage/loot/entries/EntryGroup$Builder + a f_165139_ + ([Leaf$a;)V + 0 o p_165141_ + a ()Leab$a; m_6897_ + at_ ()Leaf$a; m_6897_ + b (Leaf$a;)Leab$a; m_142719_ + 0 o p_165145_ + b ()Leaf; m_7512_ +eac net/minecraft/world/level/storage/loot/entries/LootItem + i f_79564_ + (Lcfu;II[Leck;[Leaz;)V + 0 o p_79566_ + 1 o p_79567_ + 2 o p_79568_ + 3 o p_79569_ + 4 o p_79570_ + a (Lcml;II[Leck;[Leaz;)Leah; m_79581_ + static + 0 o p_79582_ + 1 o p_79583_ + 2 o p_79584_ + 3 o p_79585_ + 4 o p_79586_ + a ()Leag; m_6751_ + a (Ljava/util/function/Consumer;Ldzk;)V m_6948_ + 0 o p_79590_ + 1 o p_79591_ + a (Lcml;)Leah$a; m_79579_ + static + 0 o p_79580_ +eac$a net/minecraft/world/level/storage/loot/entries/LootItem$Serializer + ()V + a (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;II[Leck;[Leaz;)Leac; m_7267_ + 0 o p_79594_ + 1 o p_79595_ + 2 o p_79596_ + 3 o p_79597_ + 4 o p_79598_ + 5 o p_79599_ + a (Lcom/google/gson/JsonObject;Leah;Lcom/google/gson/JsonSerializationContext;)V m_7219_ + 0 o p_79609_ + 1 o p_79610_ + 2 o p_79611_ + a (Lcom/google/gson/JsonObject;Leaf;Lcom/google/gson/JsonSerializationContext;)V m_7219_ + 0 o p_79605_ + 1 o p_79606_ + 2 o p_79607_ + a (Lcom/google/gson/JsonObject;Leac;Lcom/google/gson/JsonSerializationContext;)V m_7219_ + 0 o p_79601_ + 1 o p_79602_ + 2 o p_79603_ + b (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;II[Leck;[Leaz;)Leah; m_7267_ + 0 o p_79613_ + 1 o p_79614_ + 2 o p_79615_ + 3 o p_79616_ + 4 o p_79617_ + 5 o p_79618_ +ead net/minecraft/world/level/storage/loot/entries/LootPoolEntries + a f_79619_ + b f_79620_ + c f_79621_ + d f_79622_ + e f_79623_ + f f_79624_ + g f_79625_ + h f_79626_ + ()V + static + ()V + a (Ljava/lang/String;Ldzt;)Leag; m_79629_ + static + 0 o p_79630_ + 1 o p_79631_ + a ()Ljava/lang/Object; m_79628_ + static +eae net/minecraft/world/level/storage/loot/entries/LootPoolEntry + a (F)I m_7067_ + 0 o p_79632_ + a (Ljava/util/function/Consumer;Ldzk;)V m_6941_ + 0 o p_79633_ + 1 o p_79634_ +eaf net/minecraft/world/level/storage/loot/entries/LootPoolEntryContainer + c f_79635_ + d f_79636_ + ([Leck;)V + 0 o p_79638_ + a (Ldzv;)V m_6165_ + 0 o p_79641_ + a (Ldzk;)Z m_79639_ + 0 o p_79640_ + a ()Leag; m_6751_ +eaf$a net/minecraft/world/level/storage/loot/entries/LootPoolEntryContainer$Builder + a f_79642_ + ()V + a (Leaf$a;)Ldzw$a; m_7170_ + 0 o p_79644_ + a (Leck$a;)Leaf$a; m_79080_ + 0 o p_79646_ + at_ ()Leaf$a; m_6897_ + b (Leck$a;)Lecd; m_79080_ + 0 o p_230937_ + b (Leaf$a;)Leab$a; m_142719_ + 0 o p_165148_ + b ()Leaf; m_7512_ + c (Leaf$a;)Leaj$a; m_142639_ + 0 o p_165149_ + d ()Lecd; m_79073_ + e ()Leaf$a; m_79073_ + f ()[Leck; m_79651_ +eaf$b net/minecraft/world/level/storage/loot/entries/LootPoolEntryContainer$Serializer + ()V + a (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;)Ljava/lang/Object; m_7561_ + 0 o p_79654_ + 1 o p_79655_ + a (Lcom/google/gson/JsonObject;Leaf;Lcom/google/gson/JsonSerializationContext;)V m_7219_ + 0 o p_79656_ + 1 o p_79657_ + 2 o p_79658_ + a (Lcom/google/gson/JsonObject;Ljava/lang/Object;Lcom/google/gson/JsonSerializationContext;)V m_6170_ + 0 o p_79660_ + 1 o p_79661_ + 2 o p_79662_ + b (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;)Leaf; m_7561_ + 0 o p_79664_ + 1 o p_79665_ + b (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;[Leck;)Leaf; m_5921_ + 0 o p_79666_ + 1 o p_79667_ + 2 o p_79668_ + b (Lcom/google/gson/JsonObject;Leaf;Lcom/google/gson/JsonSerializationContext;)V m_6170_ + 0 o p_79670_ + 1 o p_79671_ + 2 o p_79672_ +eag net/minecraft/world/level/storage/loot/entries/LootPoolEntryType + (Ldzt;)V + 0 o p_79674_ +eah net/minecraft/world/level/storage/loot/entries/LootPoolSingletonContainer + c f_165150_ + e f_165151_ + f f_79675_ + g f_79676_ + h f_79677_ + i f_79678_ + j f_79679_ + (II[Leck;[Leaz;)V + 0 o p_79681_ + 1 o p_79682_ + 2 o p_79683_ + 3 o p_79684_ + a (Ldzv;)V m_6165_ + 0 o p_79686_ + a (Ljava/util/function/Consumer;Ldzk;)V m_6948_ + 0 o p_79691_ + 1 o p_79692_ + a (Leah$d;)Leah$a; m_79687_ + static + 0 o p_79688_ + expand (Ldzk;Ljava/util/function/Consumer;)Z m_6562_ + 0 o p_79694_ + 1 o p_79695_ +eah$1 net/minecraft/world/level/storage/loot/entries/LootPoolSingletonContainer$1 + a f_79696_ + (Leah;)V + 0 o p_79698_ + a (Ljava/util/function/Consumer;Ldzk;)V m_6941_ + 0 o p_79700_ + 1 o p_79701_ +eah$a net/minecraft/world/level/storage/loot/entries/LootPoolSingletonContainer$Builder + a f_79702_ + b f_79703_ + c f_79704_ + ()V + a ()[Leaz; m_79706_ + a (I)Leah$a; m_79707_ + 0 o p_79708_ + a (Leaz$a;)Leah$a; m_79078_ + 0 o p_79710_ + b (Leaz$a;)Leaw; m_79078_ + 0 o p_230940_ + b (I)Leah$a; m_79711_ + 0 o p_79712_ + c ()Leaw; m_79073_ +eah$b net/minecraft/world/level/storage/loot/entries/LootPoolSingletonContainer$DummyBuilder + c f_79715_ + (Leah$d;)V + 0 o p_79717_ + at_ ()Leaf$a; m_6897_ + b ()Leaf; m_7512_ + g ()Leah$b; m_6897_ +eah$c net/minecraft/world/level/storage/loot/entries/LootPoolSingletonContainer$EntryBase + b f_79721_ + (Leah;)V + 0 o p_79723_ + a (F)I m_7067_ + 0 o p_79725_ +eah$d net/minecraft/world/level/storage/loot/entries/LootPoolSingletonContainer$EntryConstructor + build (II[Leck;[Leaz;)Leah; m_79726_ + 0 o p_79727_ + 1 o p_79728_ + 2 o p_79729_ + 3 o p_79730_ +eah$e net/minecraft/world/level/storage/loot/entries/LootPoolSingletonContainer$Serializer + ()V + a (Lcom/google/gson/JsonObject;Leah;Lcom/google/gson/JsonSerializationContext;)V m_7219_ + 0 o p_79741_ + 1 o p_79742_ + 2 o p_79743_ + a (Lcom/google/gson/JsonObject;Leaf;Lcom/google/gson/JsonSerializationContext;)V m_7219_ + 0 o p_79737_ + 1 o p_79738_ + 2 o p_79739_ + a (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;[Leck;)Leah; m_5921_ + 0 o p_79733_ + 1 o p_79734_ + 2 o p_79735_ + b (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;[Leck;)Leaf; m_5921_ + 0 o p_79751_ + 1 o p_79752_ + 2 o p_79753_ + b (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;II[Leck;[Leaz;)Leah; m_7267_ + 0 o p_79744_ + 1 o p_79745_ + 2 o p_79746_ + 3 o p_79747_ + 4 o p_79748_ + 5 o p_79749_ +eai net/minecraft/world/level/storage/loot/entries/LootTableReference + i f_79754_ + (Lacq;II[Leck;[Leaz;)V + 0 o p_79756_ + 1 o p_79757_ + 2 o p_79758_ + 3 o p_79759_ + 4 o p_79760_ + a (Ldzv;Ldzm;Ldzs;)V m_278605_ + 0 o p_279076_ + 1 o p_279077_ + 2 o p_279078_ + a (Ldzv;)V m_6165_ + 0 o p_79770_ + a (Lacq;II[Leck;[Leaz;)Leah; m_79778_ + static + 0 o p_79779_ + 1 o p_79780_ + 2 o p_79781_ + 3 o p_79782_ + 4 o p_79783_ + a ()Leag; m_6751_ + a (Ljava/util/function/Consumer;Ldzk;)V m_6948_ + 0 o p_79774_ + 1 o p_79775_ + a (Lacq;)Leah$a; m_79776_ + static + 0 o p_79777_ + b (Ldzv;)V m_278606_ + 0 o p_279079_ +eai$a net/minecraft/world/level/storage/loot/entries/LootTableReference$Serializer + ()V + a (Lcom/google/gson/JsonObject;Leah;Lcom/google/gson/JsonSerializationContext;)V m_7219_ + 0 o p_79797_ + 1 o p_79798_ + 2 o p_79799_ + a (Lcom/google/gson/JsonObject;Leaf;Lcom/google/gson/JsonSerializationContext;)V m_7219_ + 0 o p_79793_ + 1 o p_79794_ + 2 o p_79795_ + a (Lcom/google/gson/JsonObject;Leai;Lcom/google/gson/JsonSerializationContext;)V m_7219_ + 0 o p_79801_ + 1 o p_79802_ + 2 o p_79803_ + a (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;II[Leck;[Leaz;)Leai; m_7267_ + 0 o p_79786_ + 1 o p_79787_ + 2 o p_79788_ + 3 o p_79789_ + 4 o p_79790_ + 5 o p_79791_ + b (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;II[Leck;[Leaz;)Leah; m_7267_ + 0 o p_79805_ + 1 o p_79806_ + 2 o p_79807_ + 3 o p_79808_ + 4 o p_79809_ + 5 o p_79810_ +eaj net/minecraft/world/level/storage/loot/entries/SequentialEntry + ([Leaf;[Leck;)V + 0 o p_79812_ + 1 o p_79813_ + a ([Ldzx;)Ldzx; m_5690_ + 0 o p_79816_ + a ([Ldzx;Ldzk;Ljava/util/function/Consumer;)Z m_79817_ + static + 0 o p_79818_ + 1 o p_79819_ + 2 o p_79820_ + a ([Leaf$a;)Leaj$a; m_165152_ + static + 0 o p_165153_ + a ()Leag; m_6751_ +eaj$a net/minecraft/world/level/storage/loot/entries/SequentialEntry$Builder + a f_165154_ + ([Leaf$a;)V + 0 o p_165156_ + a ()Leaj$a; m_6897_ + at_ ()Leaf$a; m_6897_ + b ()Leaf; m_7512_ + c (Leaf$a;)Leaj$a; m_142639_ + 0 o p_165160_ +eak net/minecraft/world/level/storage/loot/entries/TagEntry + i f_79821_ + j f_79822_ + (Lanl;ZII[Leck;[Leaz;)V + 0 o p_205078_ + 1 o p_205079_ + 2 o p_205080_ + 3 o p_205081_ + 4 o p_205082_ + 5 o p_205083_ + a (Ljava/util/function/Consumer;Lhe;)V m_205092_ + static + 0 o p_205093_ + 1 o p_205094_ + a (Lanl;)Leah$a; m_205084_ + static + 0 o p_205085_ + a ()Leag; m_6751_ + a (Ljava/util/function/Consumer;Ldzk;)V m_6948_ + 0 o p_79854_ + 1 o p_79855_ + a (Lanl;II[Leck;[Leaz;)Leah; m_205086_ + static + 0 o p_205087_ + 1 o p_205088_ + 2 o p_205089_ + 3 o p_205090_ + 4 o p_205091_ + a (Ldzk;Ljava/util/function/Consumer;)Z m_79845_ + 0 o p_79846_ + 1 o p_79847_ + b (Lanl;)Leah$a; m_205095_ + static + 0 o p_205096_ + b (Lanl;II[Leck;[Leaz;)Leah; m_205097_ + static + 0 o p_205098_ + 1 o p_205099_ + 2 o p_205100_ + 3 o p_205101_ + 4 o p_205102_ + expand (Ldzk;Ljava/util/function/Consumer;)Z m_6562_ + 0 o p_79861_ + 1 o p_79862_ +eak$1 net/minecraft/world/level/storage/loot/entries/TagEntry$1 + a f_79863_ + c f_79864_ + (Leak;Lhe;)V + 0 o p_205104_ + 1 o p_205105_ + a (Ljava/util/function/Consumer;Ldzk;)V m_6941_ + 0 o p_79869_ + 1 o p_79870_ +eak$a net/minecraft/world/level/storage/loot/entries/TagEntry$Serializer + ()V + a (Lcom/google/gson/JsonObject;Leah;Lcom/google/gson/JsonSerializationContext;)V m_7219_ + 0 o p_79884_ + 1 o p_79885_ + 2 o p_79886_ + a (Lcom/google/gson/JsonObject;Leaf;Lcom/google/gson/JsonSerializationContext;)V m_7219_ + 0 o p_79880_ + 1 o p_79881_ + 2 o p_79882_ + a (Lcom/google/gson/JsonObject;Leak;Lcom/google/gson/JsonSerializationContext;)V m_7219_ + 0 o p_79888_ + 1 o p_79889_ + 2 o p_79890_ + a (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;II[Leck;[Leaz;)Leak; m_7267_ + 0 o p_79873_ + 1 o p_79874_ + 2 o p_79875_ + 3 o p_79876_ + 4 o p_79877_ + 5 o p_79878_ + b (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;II[Leck;[Leaz;)Leah; m_7267_ + 0 o p_79892_ + 1 o p_79893_ + 2 o p_79894_ + 3 o p_79895_ + 4 o p_79896_ + 5 o p_79897_ +eal net/minecraft/world/level/storage/loot/entries/package-info +eam net/minecraft/world/level/storage/loot/functions/ApplyBonusCount + a f_79898_ + b f_79899_ + c f_79900_ + ()V + static + ([Leck;Lckg;Leam$b;)V + 0 o p_79903_ + 1 o p_79904_ + 2 o p_79905_ + a (Lckg;FI)Leay$a; m_79917_ + static + 0 o p_79918_ + 1 o p_79919_ + 2 o p_79920_ + a (Lckg;I[Leck;)Leaz; m_79929_ + static + 0 o p_79930_ + 1 o p_79931_ + 2 o p_79932_ + a (Lckg;[Leck;)Leaz; m_79933_ + static + 0 o p_79934_ + 1 o p_79935_ + a (Lckg;IF[Leck;)Leaz; m_79924_ + static + 0 o p_79925_ + 1 o p_79926_ + 2 o p_79927_ + 3 o p_79928_ + a ()Ljava/util/Set; m_6231_ + a (Lckg;)Leay$a; m_79915_ + static + 0 o p_79916_ + a (Lckg;I)Leay$a; m_79921_ + static + 0 o p_79922_ + 1 o p_79923_ + a (Lcfz;Ldzk;)Lcfz; m_7372_ + 0 o p_79913_ + 1 o p_79914_ + b ()Leba; m_7162_ + b (Lckg;[Leck;)Leaz; m_79941_ + static + 0 o p_79942_ + 1 o p_79943_ + b (Lckg;)Leay$a; m_79939_ + static + 0 o p_79940_ +eam$a net/minecraft/world/level/storage/loot/functions/ApplyBonusCount$BinomialWithBonusCount + a f_79947_ + b f_79948_ + c f_79949_ + ()V + static + (IF)V + 0 o p_79952_ + 1 o p_79953_ + a (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonSerializationContext;)V m_6417_ + 0 o p_79959_ + 1 o p_79960_ + a (Lapf;II)I m_213779_ + 0 o p_230965_ + 1 o p_230966_ + 2 o p_230967_ + a ()Lacq; m_5713_ + a (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;)Leam$b; m_79955_ + static + 0 o p_79956_ + 1 o p_79957_ +eam$b net/minecraft/world/level/storage/loot/functions/ApplyBonusCount$Formula + a (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonSerializationContext;)V m_6417_ + 0 o p_79965_ + 1 o p_79966_ + a (Lapf;II)I m_213779_ + 0 o p_230968_ + 1 o p_230969_ + 2 o p_230970_ + a ()Lacq; m_5713_ +eam$c net/minecraft/world/level/storage/loot/functions/ApplyBonusCount$FormulaDeserializer + deserialize (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;)Leam$b; m_79970_ + 0 o p_79971_ + 1 o p_79972_ +eam$d net/minecraft/world/level/storage/loot/functions/ApplyBonusCount$OreDrops + a f_79973_ + ()V + static + ()V + a (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonSerializationContext;)V m_6417_ + 0 o p_79983_ + 1 o p_79984_ + a (Lapf;II)I m_213779_ + 0 o p_230972_ + 1 o p_230973_ + 2 o p_230974_ + a ()Lacq; m_5713_ + a (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;)Leam$b; m_79979_ + static + 0 o p_79980_ + 1 o p_79981_ +eam$e net/minecraft/world/level/storage/loot/functions/ApplyBonusCount$Serializer + ()V + a (Lcom/google/gson/JsonObject;Leay;Lcom/google/gson/JsonSerializationContext;)V m_6170_ + 0 o p_79999_ + 1 o p_80000_ + 2 o p_80001_ + a (Lacq;)Lcom/google/gson/JsonParseException; m_80006_ + static + 0 o p_80007_ + a (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;[Leck;)Leam; m_6821_ + 0 o p_79991_ + 1 o p_79992_ + 2 o p_79993_ + a (Lcom/google/gson/JsonObject;Ljava/lang/Object;Lcom/google/gson/JsonSerializationContext;)V m_6170_ + 0 o p_80003_ + 1 o p_80004_ + 2 o p_80005_ + a (Lcom/google/gson/JsonObject;Leam;Lcom/google/gson/JsonSerializationContext;)V m_6170_ + 0 o p_79995_ + 1 o p_79996_ + 2 o p_79997_ + b (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;[Leck;)Leay; m_6821_ + 0 o p_80009_ + 1 o p_80010_ + 2 o p_80011_ +eam$f net/minecraft/world/level/storage/loot/functions/ApplyBonusCount$UniformBonusCount + a f_80012_ + b f_80013_ + ()V + static + (I)V + 0 o p_80016_ + a (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonSerializationContext;)V m_6417_ + 0 o p_80022_ + 1 o p_80023_ + a (Lapf;II)I m_213779_ + 0 o p_230976_ + 1 o p_230977_ + 2 o p_230978_ + a ()Lacq; m_5713_ + a (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;)Leam$b; m_80018_ + static + 0 o p_80019_ + 1 o p_80020_ +ean net/minecraft/world/level/storage/loot/functions/ApplyExplosionDecay + ([Leck;)V + 0 o p_80029_ + a (Lcfz;Ldzk;)Lcfz; m_7372_ + 0 o p_80034_ + 1 o p_80035_ + b ()Leba; m_7162_ + c ()Leay$a; m_80037_ + static +ean$a net/minecraft/world/level/storage/loot/functions/ApplyExplosionDecay$Serializer + ()V + a (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;[Leck;)Lean; m_6821_ + 0 o p_80040_ + 1 o p_80041_ + 2 o p_80042_ + b (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;[Leck;)Leay; m_6821_ + 0 o p_80044_ + 1 o p_80045_ + 2 o p_80046_ +eao net/minecraft/world/level/storage/loot/functions/CopyBlockState + a f_80047_ + b f_80048_ + ([Leck;Lcpn;Ljava/util/Set;)V + 0 o p_80050_ + 1 o p_80051_ + 2 o p_80052_ + a (Ldcb;Ldde;)Ljava/lang/String; m_80064_ + static + 0 o p_80065_ + 1 o p_80066_ + a ()Ljava/util/Set; m_6231_ + a (Lcfz;Ldzk;)Lcfz; m_7372_ + 0 o p_80060_ + 1 o p_80061_ + a (Lcpn;)Leao$a; m_80062_ + static + 0 o p_80063_ + a (Lqr;Ldcb;Ldde;)V m_80069_ + static + 0 o p_80070_ + 1 o p_80071_ + 2 o p_80072_ + b ()Leba; m_7162_ +eao$a net/minecraft/world/level/storage/loot/functions/CopyBlockState$Builder + a f_80076_ + b f_80077_ + (Lcpn;)V + 0 o p_80079_ + a ()Leao$a; m_6477_ + a (Ldde;)Leao$a; m_80084_ + 0 o p_80085_ + b ()Leaz; m_7453_ + c ()Leay$a; m_6477_ +eao$b net/minecraft/world/level/storage/loot/functions/CopyBlockState$Serializer + ()V + a (Lcom/google/gson/JsonObject;Leay;Lcom/google/gson/JsonSerializationContext;)V m_6170_ + 0 o p_80101_ + 1 o p_80102_ + 2 o p_80103_ + a (Lacq;)Ljava/lang/IllegalArgumentException; m_80112_ + static + 0 o p_80113_ + a (Lcom/google/gson/JsonObject;Ljava/lang/Object;Lcom/google/gson/JsonSerializationContext;)V m_6170_ + 0 o p_80105_ + 1 o p_80106_ + 2 o p_80107_ + a (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;[Leck;)Leao; m_6821_ + 0 o p_80093_ + 1 o p_80094_ + 2 o p_80095_ + a (Lcom/google/gson/JsonArray;Ldde;)V m_80089_ + static + 0 o p_80090_ + 1 o p_80091_ + a (Ljava/util/Set;Ldcc;Lcom/google/gson/JsonElement;)V m_80108_ + static + 0 o p_80109_ + 1 o p_80110_ + 2 o p_80111_ + a (Lcom/google/gson/JsonObject;Leao;Lcom/google/gson/JsonSerializationContext;)V m_6170_ + 0 o p_80097_ + 1 o p_80098_ + 2 o p_80099_ + b (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;[Leck;)Leay; m_6821_ + 0 o p_80115_ + 1 o p_80116_ + 2 o p_80117_ +eap net/minecraft/world/level/storage/loot/functions/CopyNameFunction + a f_80175_ + ([Leck;Leap$a;)V + 0 o p_80177_ + 1 o p_80178_ + a (Leap$a;[Leck;)Leaz; m_80189_ + static + 0 o p_80190_ + 1 o p_80191_ + a ()Ljava/util/Set; m_6231_ + a (Lcfz;Ldzk;)Lcfz; m_7372_ + 0 o p_80185_ + 1 o p_80186_ + a (Leap$a;)Leay$a; m_80187_ + static + 0 o p_80188_ + b ()Leba; m_7162_ +eap$a net/minecraft/world/level/storage/loot/functions/CopyNameFunction$NameSource + a THIS + b KILLER + c KILLER_PLAYER + d BLOCK_ENTITY + e f_80199_ + f f_80200_ + g $VALUES + ()V + static + (Ljava/lang/String;ILjava/lang/String;Lebt;)V + 0 o p_80204_ + 1 o p_80205_ + 2 o p_80206_ + 3 o p_80207_ + a ()[Leap$a; m_165173_ + static + a (Ljava/lang/String;)Leap$a; m_80208_ + static + 0 o p_80209_ + valueOf (Ljava/lang/String;)Leap$a; valueOf + static + 0 o p_80211_ + values ()[Leap$a; values + static +eap$b net/minecraft/world/level/storage/loot/functions/CopyNameFunction$Serializer + ()V + a (Lcom/google/gson/JsonObject;Leay;Lcom/google/gson/JsonSerializationContext;)V m_6170_ + 0 o p_80223_ + 1 o p_80224_ + 2 o p_80225_ + a (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;[Leck;)Leap; m_6821_ + 0 o p_80215_ + 1 o p_80216_ + 2 o p_80217_ + a (Lcom/google/gson/JsonObject;Leap;Lcom/google/gson/JsonSerializationContext;)V m_6170_ + 0 o p_80219_ + 1 o p_80220_ + 2 o p_80221_ + a (Lcom/google/gson/JsonObject;Ljava/lang/Object;Lcom/google/gson/JsonSerializationContext;)V m_6170_ + 0 o p_80227_ + 1 o p_80228_ + 2 o p_80229_ + b (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;[Leck;)Leay; m_6821_ + 0 o p_80231_ + 1 o p_80232_ + 2 o p_80233_ +eaq net/minecraft/world/level/storage/loot/functions/CopyNbtFunction + a f_80234_ + b f_80235_ + ([Leck;Lecy;Ljava/util/List;)V + 0 o p_165175_ + 1 o p_165176_ + 2 o p_165177_ + a (Ldzk$b;)Leaq$a; m_165178_ + static + 0 o p_165179_ + a (Lcfz;Lrk;Leaq$b;)V m_80252_ + static + 0 o p_80253_ + 1 o p_80254_ + 2 o p_80255_ + a (Lecy;)Leaq$a; m_165180_ + static + 0 o p_165181_ + a ()Ljava/util/Set; m_6231_ + a (Ljava/lang/String;)Leh$g; m_80267_ + static + 0 o p_80268_ + a (Lcfz;Ldzk;)Lcfz; m_7372_ + 0 o p_80250_ + 1 o p_80251_ + b ()Leba; m_7162_ +eaq$a net/minecraft/world/level/storage/loot/functions/CopyNbtFunction$Builder + a f_80271_ + b f_80272_ + (Lecy;)V + 0 o p_165183_ + a ()Leaq$a; m_6477_ + a (Ljava/lang/String;Ljava/lang/String;)Leaq$a; m_80279_ + 0 o p_80280_ + 1 o p_80281_ + a (Ljava/lang/String;Ljava/lang/String;Leaq$c;)Leaq$a; m_80282_ + 0 o p_80283_ + 1 o p_80284_ + 2 o p_80285_ + b ()Leaz; m_7453_ + c ()Leay$a; m_6477_ +eaq$b net/minecraft/world/level/storage/loot/functions/CopyNbtFunction$CopyOperation + a f_80288_ + b f_80289_ + c f_80290_ + d f_80291_ + e f_80292_ + (Ljava/lang/String;Ljava/lang/String;Leaq$c;)V + 0 o p_80294_ + 1 o p_80295_ + 2 o p_80296_ + a ()Lcom/google/gson/JsonObject; m_80302_ + a (Lcom/google/gson/JsonObject;)Leaq$b; m_80303_ + static + 0 o p_80304_ + a (Ljava/util/function/Supplier;Lrk;)V m_80305_ + 0 o p_80306_ + 1 o p_80307_ +eaq$c net/minecraft/world/level/storage/loot/functions/CopyNbtFunction$MergeStrategy + a REPLACE + b APPEND + c MERGE + d f_80335_ + e $VALUES + ()V + static + (Ljava/lang/String;ILjava/lang/String;)V + 0 o p_80339_ + 1 o p_80340_ + 2 o p_80341_ + a (Lrk;Leh$g;Ljava/util/List;)V m_6706_ + 0 o p_80351_ + 1 o p_80352_ + 2 o p_80353_ + a (Ljava/lang/String;)Leaq$c; m_80349_ + static + 0 o p_80350_ + a ()[Leaq$c; m_165184_ + static + valueOf (Ljava/lang/String;)Leaq$c; valueOf + static + 0 o p_80355_ + values ()[Leaq$c; values + static +eaq$c$1 net/minecraft/world/level/storage/loot/functions/CopyNbtFunction$MergeStrategy$1 + (Ljava/lang/String;ILjava/lang/String;)V + 0 o p_80358_ + 1 o p_80359_ + 2 o p_80360_ + a (Lrk;Leh$g;Ljava/util/List;)V m_6706_ + 0 o p_80362_ + 1 o p_80363_ + 2 o p_80364_ +eaq$c$2 net/minecraft/world/level/storage/loot/functions/CopyNbtFunction$MergeStrategy$2 + (Ljava/lang/String;ILjava/lang/String;)V + 0 o p_80366_ + 1 o p_80367_ + 2 o p_80368_ + a (Lrk;Leh$g;Ljava/util/List;)V m_6706_ + 0 o p_80373_ + 1 o p_80374_ + 2 o p_80375_ + a (Lrk;Lrk;)V m_165185_ + static + 0 o p_165186_ + 1 o p_165187_ + a (Ljava/util/List;Lrk;)V m_80369_ + static + 0 o p_80370_ + 1 o p_80371_ +eaq$c$3 net/minecraft/world/level/storage/loot/functions/CopyNbtFunction$MergeStrategy$3 + (Ljava/lang/String;ILjava/lang/String;)V + 0 o p_80380_ + 1 o p_80381_ + 2 o p_80382_ + a (Lrk;Leh$g;Ljava/util/List;)V m_6706_ + 0 o p_80387_ + 1 o p_80388_ + 2 o p_80389_ + a (Lrk;Lrk;)V m_165188_ + static + 0 o p_165189_ + 1 o p_165190_ + a (Ljava/util/List;Lrk;)V m_80383_ + static + 0 o p_80384_ + 1 o p_80385_ +eaq$d net/minecraft/world/level/storage/loot/functions/CopyNbtFunction$Serializer + ()V + a (Lcom/google/gson/JsonObject;Leay;Lcom/google/gson/JsonSerializationContext;)V m_6170_ + 0 o p_80403_ + 1 o p_80404_ + 2 o p_80405_ + a (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;[Leck;)Leaq; m_6821_ + 0 o p_80395_ + 1 o p_80396_ + 2 o p_80397_ + a (Lcom/google/gson/JsonObject;Ljava/lang/Object;Lcom/google/gson/JsonSerializationContext;)V m_6170_ + 0 o p_80407_ + 1 o p_80408_ + 2 o p_80409_ + a (Lcom/google/gson/JsonObject;Leaq;Lcom/google/gson/JsonSerializationContext;)V m_6170_ + 0 o p_80399_ + 1 o p_80400_ + 2 o p_80401_ + b (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;[Leck;)Leay; m_6821_ + 0 o p_80411_ + 1 o p_80412_ + 2 o p_80413_ +ear net/minecraft/world/level/storage/loot/functions/EnchantRandomlyFunction + a f_80414_ + b f_80415_ + ()V + static + ([Leck;Ljava/util/Collection;)V + 0 o p_80418_ + 1 o p_80419_ + a ([Leck;)Leaz; m_80437_ + static + 0 o p_80438_ + a (ZLcfz;Lckg;)Z m_80433_ + static + 0 o p_80434_ + 1 o p_80435_ + 2 o p_80436_ + a (Lcfz;Ldzk;)Lcfz; m_7372_ + 0 o p_80429_ + 1 o p_80430_ + a (Lcfz;Lckg;Lapf;)Lcfz; m_230979_ + static + 0 o p_230980_ + 1 o p_230981_ + 2 o p_230982_ + b ()Leba; m_7162_ + c ()Lear$a; m_165191_ + static + d ()Leay$a; m_80440_ + static +ear$a net/minecraft/world/level/storage/loot/functions/EnchantRandomlyFunction$Builder + a f_80441_ + ()V + a ()Lear$a; m_6477_ + a (Lckg;)Lear$a; m_80444_ + 0 o p_80445_ + b ()Leaz; m_7453_ + c ()Leay$a; m_6477_ +ear$b net/minecraft/world/level/storage/loot/functions/EnchantRandomlyFunction$Serializer + ()V + a (Lcom/google/gson/JsonObject;Leay;Lcom/google/gson/JsonSerializationContext;)V m_6170_ + 0 o p_80458_ + 1 o p_80459_ + 2 o p_80460_ + a (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;[Leck;)Lear; m_6821_ + 0 o p_80450_ + 1 o p_80451_ + 2 o p_80452_ + a (Lcom/google/gson/JsonObject;Ljava/lang/Object;Lcom/google/gson/JsonSerializationContext;)V m_6170_ + 0 o p_80462_ + 1 o p_80463_ + 2 o p_80464_ + a (Lcom/google/gson/JsonObject;Lear;Lcom/google/gson/JsonSerializationContext;)V m_6170_ + 0 o p_80454_ + 1 o p_80455_ + 2 o p_80456_ + a (Ljava/lang/String;)Lcom/google/gson/JsonSyntaxException; m_80465_ + static + 0 o p_80466_ + b (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;[Leck;)Leay; m_6821_ + 0 o p_80468_ + 1 o p_80469_ + 2 o p_80470_ +eas net/minecraft/world/level/storage/loot/functions/EnchantWithLevelsFunction + a f_80471_ + b f_80472_ + ([Leck;Ledf;Z)V + 0 o p_165193_ + 1 o p_165194_ + 2 o p_165195_ + a (Ledf;)Leas$a; m_165196_ + static + 0 o p_165197_ + a ()Ljava/util/Set; m_6231_ + a (Lcfz;Ldzk;)Lcfz; m_7372_ + 0 o p_80483_ + 1 o p_80484_ + b ()Leba; m_7162_ +eas$a net/minecraft/world/level/storage/loot/functions/EnchantWithLevelsFunction$Builder + a f_80492_ + b f_80493_ + (Ledf;)V + 0 o p_165200_ + a ()Leas$a; m_6477_ + b ()Leaz; m_7453_ + c ()Leay$a; m_6477_ + e ()Leas$a; m_80499_ +eas$b net/minecraft/world/level/storage/loot/functions/EnchantWithLevelsFunction$Serializer + ()V + a (Lcom/google/gson/JsonObject;Leay;Lcom/google/gson/JsonSerializationContext;)V m_6170_ + 0 o p_80510_ + 1 o p_80511_ + 2 o p_80512_ + a (Lcom/google/gson/JsonObject;Leas;Lcom/google/gson/JsonSerializationContext;)V m_6170_ + 0 o p_80506_ + 1 o p_80507_ + 2 o p_80508_ + a (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;[Leck;)Leas; m_6821_ + 0 o p_80502_ + 1 o p_80503_ + 2 o p_80504_ + a (Lcom/google/gson/JsonObject;Ljava/lang/Object;Lcom/google/gson/JsonSerializationContext;)V m_6170_ + 0 o p_80514_ + 1 o p_80515_ + 2 o p_80516_ + b (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;[Leck;)Leay; m_6821_ + 0 o p_80518_ + 1 o p_80519_ + 2 o p_80520_ +eat net/minecraft/world/level/storage/loot/functions/ExplorationMapFunction + a f_230983_ + b f_165201_ + c f_80522_ + d f_165202_ + e f_165203_ + f f_165204_ + h f_80523_ + i f_80524_ + j f_80525_ + k f_80526_ + l f_80527_ + m f_80528_ + ()V + static + ([Leck;Lanl;Ldyl$a;BIZ)V + 0 o p_210652_ + 1 o p_210653_ + 2 o p_210654_ + 3 o p_210655_ + 4 o p_210656_ + 5 o p_210657_ + a ()Ljava/util/Set; m_6231_ + a (Lcfz;Ldzk;)Lcfz; m_7372_ + 0 o p_80547_ + 1 o p_80548_ + b ()Leba; m_7162_ + c ()Leat$a; m_80554_ + static +eat$a net/minecraft/world/level/storage/loot/functions/ExplorationMapFunction$Builder + a f_80562_ + b f_80563_ + c f_80564_ + d f_80565_ + e f_80566_ + ()V + a (B)Leat$a; m_80569_ + 0 o p_80570_ + a (Z)Leat$a; m_80575_ + 0 o p_80576_ + a ()Leat$a; m_6477_ + a (Ldyl$a;)Leat$a; m_80573_ + 0 o p_80574_ + a (Lanl;)Leat$a; m_210658_ + 0 o p_210659_ + a (I)Leat$a; m_165205_ + 0 o p_165206_ + b ()Leaz; m_7453_ + c ()Leay$a; m_6477_ +eat$b net/minecraft/world/level/storage/loot/functions/ExplorationMapFunction$Serializer + ()V + a (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;[Leck;)Leat; m_6821_ + 0 o p_80583_ + 1 o p_80584_ + 2 o p_80585_ + a (Lcom/google/gson/JsonObject;Leay;Lcom/google/gson/JsonSerializationContext;)V m_6170_ + 0 o p_80591_ + 1 o p_80592_ + 2 o p_80593_ + a (Lcom/google/gson/JsonObject;Ljava/lang/Object;Lcom/google/gson/JsonSerializationContext;)V m_6170_ + 0 o p_80595_ + 1 o p_80596_ + 2 o p_80597_ + a (Lcom/google/gson/JsonObject;)Lanl; m_210660_ + static + 0 o p_210661_ + a (Lcom/google/gson/JsonObject;Leat;Lcom/google/gson/JsonSerializationContext;)V m_6170_ + 0 o p_80587_ + 1 o p_80588_ + 2 o p_80589_ + b (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;[Leck;)Leay; m_6821_ + 0 o p_80599_ + 1 o p_80600_ + 2 o p_80601_ +eau net/minecraft/world/level/storage/loot/functions/FillPlayerHead + a f_80602_ + ([Leck;Ldzk$b;)V + 0 o p_80604_ + 1 o p_80605_ + a (Ldzk$b;[Leck;)Leaz; m_165209_ + static + 0 o p_165210_ + 1 o p_165211_ + a ()Ljava/util/Set; m_6231_ + a (Ldzk$b;)Leay$a; m_165207_ + static + 0 o p_165208_ + a (Lcfz;Ldzk;)Lcfz; m_7372_ + 0 o p_80608_ + 1 o p_80609_ + b ()Leba; m_7162_ +eau$a net/minecraft/world/level/storage/loot/functions/FillPlayerHead$Serializer + ()V + a (Lcom/google/gson/JsonObject;Leay;Lcom/google/gson/JsonSerializationContext;)V m_6170_ + 0 o p_80623_ + 1 o p_80624_ + 2 o p_80625_ + a (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;[Leck;)Leau; m_6821_ + 0 o p_80615_ + 1 o p_80616_ + 2 o p_80617_ + a (Lcom/google/gson/JsonObject;Leau;Lcom/google/gson/JsonSerializationContext;)V m_6170_ + 0 o p_80619_ + 1 o p_80620_ + 2 o p_80621_ + a (Lcom/google/gson/JsonObject;Ljava/lang/Object;Lcom/google/gson/JsonSerializationContext;)V m_6170_ + 0 o p_80627_ + 1 o p_80628_ + 2 o p_80629_ + b (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;[Leck;)Leay; m_6821_ + 0 o p_80631_ + 1 o p_80632_ + 2 o p_80633_ +eav net/minecraft/world/level/storage/loot/functions/FunctionReference + a f_278448_ + b f_278490_ + ()V + static + ([Leck;Lacq;)V + 0 o p_279226_ + 1 o p_279246_ + a (Ldzv;)V m_6169_ + 0 o p_279281_ + a (Lacq;)Leay$a; m_278647_ + static + 0 o p_279115_ + a (Ldzv;Ldzm;Leaz;)V m_278678_ + 0 o p_279244_ + 1 o p_279397_ + 2 o p_279367_ + a (Lcfz;Ldzk;)Lcfz; m_7372_ + 0 o p_279458_ + 1 o p_279370_ + a (Lacq;[Leck;)Leaz; m_278670_ + static + 0 o p_279197_ + 1 o p_279452_ + b ()Leba; m_7162_ + b (Ldzv;)V m_278708_ + 0 o p_279405_ +eav$a net/minecraft/world/level/storage/loot/functions/FunctionReference$Serializer + ()V + a (Lcom/google/gson/JsonObject;Leay;Lcom/google/gson/JsonSerializationContext;)V m_6170_ + 0 o p_279373_ + 1 o p_279089_ + 2 o p_279479_ + a (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;[Leck;)Leav; m_6821_ + 0 o p_279189_ + 1 o p_279307_ + 2 o p_279314_ + a (Lcom/google/gson/JsonObject;Leav;Lcom/google/gson/JsonSerializationContext;)V m_6170_ + 0 o p_279239_ + 1 o p_279287_ + 2 o p_279375_ + a (Lcom/google/gson/JsonObject;Ljava/lang/Object;Lcom/google/gson/JsonSerializationContext;)V m_6170_ + 0 o p_279489_ + 1 o p_279098_ + 2 o p_279352_ + b (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;[Leck;)Leay; m_6821_ + 0 o p_279154_ + 1 o p_279095_ + 2 o p_279336_ +eaw net/minecraft/world/level/storage/loot/functions/FunctionUserBuilder + a ([Ljava/lang/Object;Ljava/util/function/Function;)Leaw; m_230987_ + 0 o p_230988_ + 1 o p_230989_ + a (Ljava/lang/Iterable;Ljava/util/function/Function;)Leaw; m_230984_ + 0 o p_230985_ + 1 o p_230986_ + b (Leaz$a;)Leaw; m_79078_ + 0 o p_230990_ + c ()Leaw; m_79073_ +eax net/minecraft/world/level/storage/loot/functions/LimitCount + a f_80635_ + ([Leck;Ldzj;)V + 0 o p_165213_ + 1 o p_165214_ + a (Ldzj;)Leay$a; m_165215_ + static + 0 o p_165216_ + a (Ldzj;[Leck;)Leaz; m_165217_ + static + 0 o p_165218_ + 1 o p_165219_ + a ()Ljava/util/Set; m_6231_ + a (Lcfz;Ldzk;)Lcfz; m_7372_ + 0 o p_80644_ + 1 o p_80645_ + b ()Leba; m_7162_ +eax$a net/minecraft/world/level/storage/loot/functions/LimitCount$Serializer + ()V + a (Lcom/google/gson/JsonObject;Leay;Lcom/google/gson/JsonSerializationContext;)V m_6170_ + 0 o p_80664_ + 1 o p_80665_ + 2 o p_80666_ + a (Lcom/google/gson/JsonObject;Leax;Lcom/google/gson/JsonSerializationContext;)V m_6170_ + 0 o p_80660_ + 1 o p_80661_ + 2 o p_80662_ + a (Lcom/google/gson/JsonObject;Ljava/lang/Object;Lcom/google/gson/JsonSerializationContext;)V m_6170_ + 0 o p_80668_ + 1 o p_80669_ + 2 o p_80670_ + a (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;[Leck;)Leax; m_6821_ + 0 o p_80656_ + 1 o p_80657_ + 2 o p_80658_ + b (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;[Leck;)Leay; m_6821_ + 0 o p_80672_ + 1 o p_80673_ + 2 o p_80674_ +eay net/minecraft/world/level/storage/loot/functions/LootItemConditionalFunction + a f_80675_ + g f_80676_ + ([Leck;)V + 0 o p_80678_ + a (Ljava/util/function/Function;)Leay$a; m_80683_ + static + 0 o p_80684_ + a (Ldzv;)V m_6169_ + 0 o p_80682_ + a (Lcfz;Ldzk;)Lcfz; m_7372_ + 0 o p_80679_ + 1 o p_80680_ + apply (Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object; apply + 0 o p_80686_ + 1 o p_80687_ + b (Lcfz;Ldzk;)Lcfz; apply + 0 o p_80689_ + 1 o p_80690_ +eay$a net/minecraft/world/level/storage/loot/functions/LootItemConditionalFunction$Builder + a f_80691_ + ()V + a (Leck$a;)Leay$a; m_79080_ + 0 o p_80694_ + b (Leck$a;)Lecd; m_79080_ + 0 o p_230992_ + c ()Leay$a; m_6477_ + d ()Lecd; m_79073_ + f ()Leay$a; m_79073_ + g ()[Leck; m_80699_ +eay$b net/minecraft/world/level/storage/loot/functions/LootItemConditionalFunction$DummyBuilder + a f_80700_ + (Ljava/util/function/Function;)V + 0 o p_80702_ + a ()Leay$b; m_6477_ + b ()Leaz; m_7453_ + c ()Leay$a; m_6477_ +eay$c net/minecraft/world/level/storage/loot/functions/LootItemConditionalFunction$Serializer + ()V + a (Lcom/google/gson/JsonObject;Leay;Lcom/google/gson/JsonSerializationContext;)V m_6170_ + 0 o p_80711_ + 1 o p_80712_ + 2 o p_80713_ + a (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;)Ljava/lang/Object; m_7561_ + 0 o p_80708_ + 1 o p_80709_ + a (Lcom/google/gson/JsonObject;Ljava/lang/Object;Lcom/google/gson/JsonSerializationContext;)V m_6170_ + 0 o p_80715_ + 1 o p_80716_ + 2 o p_80717_ + b (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;[Leck;)Leay; m_6821_ + 0 o p_80721_ + 1 o p_80722_ + 2 o p_80723_ + b (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;)Leay; m_7561_ + 0 o p_80719_ + 1 o p_80720_ +eaz net/minecraft/world/level/storage/loot/functions/LootItemFunction + a (Ljava/util/function/BiFunction;Ljava/util/function/Consumer;Ldzk;)Ljava/util/function/Consumer; m_80724_ + static + 0 o p_80725_ + 1 o p_80726_ + 2 o p_80727_ + a (Ljava/util/function/Consumer;Ljava/util/function/BiFunction;Ldzk;Lcfz;)V m_80728_ + static + 0 o p_80729_ + 1 o p_80730_ + 2 o p_80731_ + 3 o p_80732_ + b ()Leba; m_7162_ +eaz$a net/minecraft/world/level/storage/loot/functions/LootItemFunction$Builder + b ()Leaz; m_7453_ +eb net/minecraft/commands/arguments/EntityAnchorArgument + a f_90346_ + b f_90347_ + ()V + static + ()V + a ()Leb; m_90350_ + static + a (Lcom/mojang/brigadier/StringReader;)Leb$a; parse + 0 o p_90352_ + a (Lcom/mojang/brigadier/context/CommandContext;Ljava/lang/String;)Leb$a; m_90353_ + static + 0 o p_90354_ + 1 o p_90355_ + a (Ljava/lang/Object;)Lcom/mojang/brigadier/Message; m_90356_ + static + 0 o p_90357_ + getExamples ()Ljava/util/Collection; getExamples + listSuggestions (Lcom/mojang/brigadier/context/CommandContext;Lcom/mojang/brigadier/suggestion/SuggestionsBuilder;)Ljava/util/concurrent/CompletableFuture; listSuggestions + 0 o p_90360_ + 1 o p_90361_ + parse (Lcom/mojang/brigadier/StringReader;)Ljava/lang/Object; parse + 0 o p_90363_ +eb$a net/minecraft/commands/arguments/EntityAnchorArgument$Anchor + a FEET + b EYES + c f_90366_ + d f_90367_ + e f_90368_ + f $VALUES + ()V + static + (Ljava/lang/String;ILjava/lang/String;Ljava/util/function/BiFunction;)V + 0 o p_90372_ + 1 o p_90373_ + 2 o p_90374_ + 3 o p_90375_ + a (Lbfj;)Leei; m_90377_ + 0 o p_90378_ + a (Ljava/lang/String;)Leb$a; m_90384_ + static + 0 o p_90385_ + a ()[Leb$a; m_167593_ + static + a (Leei;Lbfj;)Leei; m_90381_ + static + 0 o p_90382_ + 1 o p_90383_ + a (Ljava/util/HashMap;)V m_90386_ + static + 0 o p_90387_ + a (Lds;)Leei; m_90379_ + 0 o p_90380_ + b (Leei;Lbfj;)Leei; m_90388_ + static + 0 o p_90389_ + 1 o p_90390_ + valueOf (Ljava/lang/String;)Leb$a; valueOf + static + 0 o p_90392_ + values ()[Leb$a; values + static +eba net/minecraft/world/level/storage/loot/functions/LootItemFunctionType + (Ldzt;)V + 0 o p_80734_ +ebb net/minecraft/world/level/storage/loot/functions/LootItemFunctions + A f_278442_ + a f_80735_ + b f_80736_ + c f_80737_ + d f_80738_ + e f_165221_ + f f_80739_ + g f_80740_ + h f_80741_ + i f_80742_ + j f_80743_ + k f_80744_ + l f_80745_ + m f_80746_ + n f_80747_ + o f_80748_ + p f_80749_ + q f_80750_ + r f_80751_ + s f_80752_ + t f_80753_ + u f_80754_ + v f_80755_ + w f_80756_ + x f_165222_ + y f_193030_ + z f_230994_ + ()V + static + ()V + a (Ljava/util/function/BiFunction;Ljava/util/function/BiFunction;Lcfz;Ldzk;)Lcfz; m_80765_ + static + 0 o p_80766_ + 1 o p_80767_ + 2 o p_80768_ + 3 o p_80769_ + a (Ljava/lang/String;Ldzt;)Leba; m_80762_ + static + 0 o p_80763_ + 1 o p_80764_ + a ([Ljava/util/function/BiFunction;Lcfz;Ldzk;)Lcfz; m_80772_ + static + 0 o p_80773_ + 1 o p_80774_ + 2 o p_80775_ + a (Lcfz;Ldzk;)Lcfz; m_80759_ + static + 0 o p_80760_ + 1 o p_80761_ + a ([Ljava/util/function/BiFunction;)Ljava/util/function/BiFunction; m_80770_ + static + 0 o p_80771_ + a ()Ljava/lang/Object; m_80758_ + static +ebc net/minecraft/world/level/storage/loot/functions/LootingEnchantFunction + a f_165224_ + b f_80776_ + c f_80777_ + ([Leck;Ledf;I)V + 0 o p_165226_ + 1 o p_165227_ + 2 o p_165228_ + a ()Ljava/util/Set; m_6231_ + a (Lcfz;Ldzk;)Lcfz; m_7372_ + 0 o p_80789_ + 1 o p_80790_ + a (Ledf;)Lebc$a; m_165229_ + static + 0 o p_165230_ + b ()Leba; m_7162_ + c ()Z m_80798_ +ebc$a net/minecraft/world/level/storage/loot/functions/LootingEnchantFunction$Builder + a f_80801_ + b f_80802_ + (Ledf;)V + 0 o p_165232_ + a (I)Lebc$a; m_80806_ + 0 o p_80807_ + a ()Lebc$a; m_6477_ + b ()Leaz; m_7453_ + c ()Leay$a; m_6477_ +ebc$b net/minecraft/world/level/storage/loot/functions/LootingEnchantFunction$Serializer + ()V + a (Lcom/google/gson/JsonObject;Leay;Lcom/google/gson/JsonSerializationContext;)V m_6170_ + 0 o p_80816_ + 1 o p_80817_ + 2 o p_80818_ + a (Lcom/google/gson/JsonObject;Lebc;Lcom/google/gson/JsonSerializationContext;)V m_6170_ + 0 o p_80820_ + 1 o p_80821_ + 2 o p_80822_ + a (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;[Leck;)Lebc; m_6821_ + 0 o p_80812_ + 1 o p_80813_ + 2 o p_80814_ + a (Lcom/google/gson/JsonObject;Ljava/lang/Object;Lcom/google/gson/JsonSerializationContext;)V m_6170_ + 0 o p_80824_ + 1 o p_80825_ + 2 o p_80826_ + b (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;[Leck;)Leay; m_6821_ + 0 o p_80828_ + 1 o p_80829_ + 2 o p_80830_ +ebd net/minecraft/world/level/storage/loot/functions/SetAttributesFunction + a f_80831_ + ([Leck;Ljava/util/List;)V + 0 o p_80833_ + 1 o p_80834_ + a (Lebd$b;)Ljava/util/stream/Stream; m_278607_ + static + 0 o p_279080_ + a (Ljava/lang/String;Lbhb;Lbhe$a;Ledf;)Lebd$c; m_165235_ + static + 0 o p_165236_ + 1 o p_165237_ + 2 o p_165238_ + 3 o p_165239_ + a ()Ljava/util/Set; m_6231_ + a (Lcfz;Ldzk;)Lcfz; m_7372_ + 0 o p_80840_ + 1 o p_80841_ + b ()Leba; m_7162_ + c ()Lebd$a; m_165241_ + static +ebd$1 net/minecraft/world/level/storage/loot/functions/SetAttributesFunction$1 + a f_80845_ + ()V + static +ebd$a net/minecraft/world/level/storage/loot/functions/SetAttributesFunction$Builder + a f_165242_ + ()V + a (Lebd$c;)Lebd$a; m_165245_ + 0 o p_165246_ + a ()Lebd$a; m_6477_ + b ()Leaz; m_7453_ + c ()Leay$a; m_6477_ +ebd$b net/minecraft/world/level/storage/loot/functions/SetAttributesFunction$Modifier + a f_80847_ + b f_80848_ + c f_80849_ + d f_80850_ + e f_80851_ + f f_80852_ + (Ljava/lang/String;Lbhb;Lbhe$a;Ledf;[Lbfo;Ljava/util/UUID;)V + 0 o p_165250_ + 1 o p_165251_ + 2 o p_165252_ + 3 o p_165253_ + 4 o p_165254_ + 5 o p_165255_ + a (Lbhe$a;)Ljava/lang/String; m_80860_ + static + 0 o p_80861_ + a (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;)Lebd$b; m_80862_ + static + 0 o p_80863_ + 1 o p_80864_ + a (Lcom/google/gson/JsonSerializationContext;)Lcom/google/gson/JsonObject; m_80865_ + 0 o p_80866_ + a (Ljava/lang/String;)Lbhe$a; m_80869_ + static + 0 o p_80870_ +ebd$c net/minecraft/world/level/storage/loot/functions/SetAttributesFunction$ModifierBuilder + a f_165256_ + b f_165257_ + c f_165258_ + d f_165259_ + e f_165260_ + f f_165261_ + (Ljava/lang/String;Lbhb;Lbhe$a;Ledf;)V + 0 o p_165263_ + 1 o p_165264_ + 2 o p_165265_ + 3 o p_165266_ + a (Lbfo;)Lebd$c; m_165268_ + 0 o p_165269_ + a ()Lebd$b; m_165267_ + a (Ljava/util/UUID;)Lebd$c; m_165270_ + 0 o p_165271_ +ebd$d net/minecraft/world/level/storage/loot/functions/SetAttributesFunction$Serializer + ()V + a (Lcom/google/gson/JsonObject;Leay;Lcom/google/gson/JsonSerializationContext;)V m_6170_ + 0 o p_80887_ + 1 o p_80888_ + 2 o p_80889_ + a (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;[Leck;)Lebd; m_6821_ + 0 o p_80883_ + 1 o p_80884_ + 2 o p_80885_ + a (Lcom/google/gson/JsonObject;Ljava/lang/Object;Lcom/google/gson/JsonSerializationContext;)V m_6170_ + 0 o p_80895_ + 1 o p_80896_ + 2 o p_80897_ + a (Lcom/google/gson/JsonObject;Lebd;Lcom/google/gson/JsonSerializationContext;)V m_6170_ + 0 o p_80891_ + 1 o p_80892_ + 2 o p_80893_ + b (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;[Leck;)Leay; m_6821_ + 0 o p_80899_ + 1 o p_80900_ + 2 o p_80901_ +ebe net/minecraft/world/level/storage/loot/functions/SetBannerPatternFunction + a f_165272_ + b f_165273_ + ([Leck;Ljava/util/List;Z)V + 0 o p_165275_ + 1 o p_165276_ + 2 o p_165277_ + a (Z)Lebe$a; m_165282_ + static + 0 o p_165283_ + a (Lcfz;Ldzk;)Lcfz; m_7372_ + 0 o p_165280_ + 1 o p_165281_ + b ()Leba; m_7162_ +ebe$a net/minecraft/world/level/storage/loot/functions/SetBannerPatternFunction$Builder + a f_165284_ + b f_165285_ + (Z)V + 0 o p_165287_ + a (Lacp;Lcen;)Lebe$a; m_230995_ + 0 o p_230996_ + 1 o p_230997_ + a ()Lebe$a; m_6477_ + a (Lhe;Lcen;)Lebe$a; m_230998_ + 0 o p_230999_ + 1 o p_231000_ + b ()Leaz; m_7453_ + c ()Leay$a; m_6477_ +ebe$b net/minecraft/world/level/storage/loot/functions/SetBannerPatternFunction$Serializer + ()V + a (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;[Leck;)Lebe; m_6821_ + 0 o p_165299_ + 1 o p_165300_ + 2 o p_165301_ + a (Lcom/google/gson/JsonObject;Leay;Lcom/google/gson/JsonSerializationContext;)V m_6170_ + 0 o p_165303_ + 1 o p_165304_ + 2 o p_165305_ + a (Lcom/google/gson/JsonObject;Lebe;Lcom/google/gson/JsonSerializationContext;)V m_6170_ + 0 o p_165307_ + 1 o p_165308_ + 2 o p_165309_ + a (Lcom/google/gson/JsonArray;Lcom/mojang/datafixers/util/Pair;)V m_231001_ + static + 0 o p_231002_ + 1 o p_231003_ + a (Lcom/google/gson/JsonObject;Ljava/lang/Object;Lcom/google/gson/JsonSerializationContext;)V m_6170_ + 0 o p_165311_ + 1 o p_165312_ + 2 o p_165313_ + a (Lcom/mojang/datafixers/util/Pair;)Lcom/google/gson/JsonSyntaxException; m_231004_ + static + 0 o p_231005_ + b (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;[Leck;)Leay; m_6821_ + 0 o p_165315_ + 1 o p_165316_ + 2 o p_165317_ +ebf net/minecraft/world/level/storage/loot/functions/SetContainerContents + a f_80902_ + b f_193031_ + ([Leck;Lczp;Ljava/util/List;)V + 0 o p_193033_ + 1 o p_193034_ + 2 o p_193035_ + a (Lczp;)Lebf$a; m_193036_ + static + 0 o p_193037_ + a (Ldzv;)V m_6169_ + 0 o p_80918_ + a (Ldzk;Lhn;Leaf;)V m_80913_ + static + 0 o p_80914_ + 1 o p_80915_ + 2 o p_80916_ + a (Ldzk;Lhn;Leae;)V m_287135_ + static + 0 o p_287571_ + 1 o p_287572_ + 2 o p_287573_ + a (Lcfz;Ldzk;)Lcfz; m_7372_ + 0 o p_80911_ + 1 o p_80912_ + b ()Leba; m_7162_ +ebf$a net/minecraft/world/level/storage/loot/functions/SetContainerContents$Builder + a f_80927_ + b f_193038_ + (Lczp;)V + 0 o p_193040_ + a ()Lebf$a; m_6477_ + a (Leaf$a;)Lebf$a; m_80930_ + 0 o p_80931_ + b ()Leaz; m_7453_ + c ()Leay$a; m_6477_ +ebf$b net/minecraft/world/level/storage/loot/functions/SetContainerContents$Serializer + ()V + a (Lcom/google/gson/JsonObject;Leay;Lcom/google/gson/JsonSerializationContext;)V m_6170_ + 0 o p_80940_ + 1 o p_80941_ + 2 o p_80942_ + a (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;[Leck;)Lebf; m_6821_ + 0 o p_80936_ + 1 o p_80937_ + 2 o p_80938_ + a (Lacq;)Lcom/google/gson/JsonSyntaxException; m_193041_ + static + 0 o p_193042_ + a (Lcom/google/gson/JsonObject;Ljava/lang/Object;Lcom/google/gson/JsonSerializationContext;)V m_6170_ + 0 o p_80948_ + 1 o p_80949_ + 2 o p_80950_ + a (Lcom/google/gson/JsonObject;Lebf;Lcom/google/gson/JsonSerializationContext;)V m_6170_ + 0 o p_80944_ + 1 o p_80945_ + 2 o p_80946_ + b (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;[Leck;)Leay; m_6821_ + 0 o p_80952_ + 1 o p_80953_ + 2 o p_80954_ +ebg net/minecraft/world/level/storage/loot/functions/SetContainerLootTable + a f_80955_ + b f_80956_ + c f_193043_ + ([Leck;Lacq;JLczp;)V + 0 o p_193045_ + 1 o p_193046_ + 2 o p_193047_ + 3 o p_193048_ + a (Lczp;Lacq;J)Leay$a; m_193052_ + static + 0 o p_193053_ + 1 o p_193054_ + 2 o p_193055_ + a (Lacq;JLczp;[Leck;)Leaz; m_193056_ + static + 0 o p_193057_ + 1 o p_193058_ + 2 o p_193059_ + 3 o p_193060_ + a (Ldzv;)V m_6169_ + 0 o p_80970_ + a (Lacq;Lczp;[Leck;)Leaz; m_193061_ + static + 0 o p_193062_ + 1 o p_193063_ + 2 o p_193064_ + a (Lcfz;Ldzk;)Lcfz; m_7372_ + 0 o p_80967_ + 1 o p_80968_ + a (Lczp;Lacq;)Leay$a; m_193049_ + static + 0 o p_193050_ + 1 o p_193051_ + b ()Leba; m_7162_ +ebg$a net/minecraft/world/level/storage/loot/functions/SetContainerLootTable$Serializer + ()V + a (Lcom/google/gson/JsonObject;Lebg;Lcom/google/gson/JsonSerializationContext;)V m_6170_ + 0 o p_80986_ + 1 o p_80987_ + 2 o p_80988_ + a (Lcom/google/gson/JsonObject;Leay;Lcom/google/gson/JsonSerializationContext;)V m_6170_ + 0 o p_80982_ + 1 o p_80983_ + 2 o p_80984_ + a (Lacq;)Lcom/google/gson/JsonSyntaxException; m_193065_ + static + 0 o p_193066_ + a (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;[Leck;)Lebg; m_6821_ + 0 o p_80978_ + 1 o p_80979_ + 2 o p_80980_ + a (Lcom/google/gson/JsonObject;Ljava/lang/Object;Lcom/google/gson/JsonSerializationContext;)V m_6170_ + 0 o p_80990_ + 1 o p_80991_ + 2 o p_80992_ + b (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;[Leck;)Leay; m_6821_ + 0 o p_80994_ + 1 o p_80995_ + 2 o p_80996_ +ebh net/minecraft/world/level/storage/loot/functions/SetEnchantmentsFunction + a f_165334_ + b f_165335_ + ([Leck;Ljava/util/Map;Z)V + 0 o p_165337_ + 1 o p_165338_ + 2 o p_165339_ + a (Ljava/util/Map;Lckg;I)V m_165355_ + static + 0 o p_165356_ + 1 o p_165357_ + 2 o p_165358_ + a (Ledf;)Ljava/util/stream/Stream; m_278608_ + static + 0 o p_279081_ + a (Lit/unimi/dsi/fastutil/objects/Object2IntMap;Ldzk;Lckg;Ledf;)V m_165350_ + static + 0 o p_165351_ + 1 o p_165352_ + 2 o p_165353_ + 3 o p_165354_ + a ()Ljava/util/Set; m_6231_ + a (Ljava/util/Map;Lckg;Ljava/lang/Integer;)V m_165359_ + static + 0 o p_165360_ + 1 o p_165361_ + 2 o p_165362_ + a (Lcfz;Ldzk;)Lcfz; m_7372_ + 0 o p_165346_ + 1 o p_165347_ + a (Lcfz;Lckg;Ljava/lang/Integer;)V m_165341_ + static + 0 o p_165342_ + 1 o p_165343_ + 2 o p_165344_ + b ()Leba; m_7162_ + b (Ljava/util/Map;Lckg;Ljava/lang/Integer;)V m_165364_ + static + 0 o p_165365_ + 1 o p_165366_ + 2 o p_165367_ +ebh$a net/minecraft/world/level/storage/loot/functions/SetEnchantmentsFunction$Builder + a f_165368_ + b f_165369_ + (Z)V + 0 o p_165372_ + ()V + a ()Lebh$a; m_6477_ + a (Lckg;Ledf;)Lebh$a; m_165374_ + 0 o p_165375_ + 1 o p_165376_ + b ()Leaz; m_7453_ + c ()Leay$a; m_6477_ +ebh$b net/minecraft/world/level/storage/loot/functions/SetEnchantmentsFunction$Serializer + ()V + a (Lcom/google/gson/JsonObject;Leay;Lcom/google/gson/JsonSerializationContext;)V m_6170_ + 0 o p_165390_ + 1 o p_165391_ + 2 o p_165392_ + a (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;[Leck;)Lebh; m_6821_ + 0 o p_165381_ + 1 o p_165382_ + 2 o p_165383_ + a (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonSerializationContext;Lckg;Ledf;)V m_257367_ + static + 0 o p_259021_ + 1 o p_259022_ + 2 o p_259023_ + 3 o p_259024_ + a (Lcom/google/gson/JsonObject;Lebh;Lcom/google/gson/JsonSerializationContext;)V m_6170_ + 0 o p_165394_ + 1 o p_165395_ + 2 o p_165396_ + a (Lcom/google/gson/JsonObject;Ljava/lang/Object;Lcom/google/gson/JsonSerializationContext;)V m_6170_ + 0 o p_165398_ + 1 o p_165399_ + 2 o p_165400_ + a (Ljava/lang/String;)Lcom/google/gson/JsonSyntaxException; m_165401_ + static + 0 o p_165402_ + b (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;[Leck;)Leay; m_6821_ + 0 o p_165404_ + 1 o p_165405_ + 2 o p_165406_ +ebi net/minecraft/world/level/storage/loot/functions/SetInstrumentFunction + a f_231006_ + ([Leck;Lanl;)V + 0 o p_231008_ + 1 o p_231009_ + a (Lanl;[Leck;)Leaz; m_231013_ + static + 0 o p_231014_ + 1 o p_231015_ + a (Lcfz;Ldzk;)Lcfz; m_7372_ + 0 o p_231017_ + 1 o p_231018_ + a (Lanl;)Leay$a; m_231011_ + static + 0 o p_231012_ + b ()Leba; m_7162_ +ebi$a net/minecraft/world/level/storage/loot/functions/SetInstrumentFunction$Serializer + ()V + a (Lcom/google/gson/JsonObject;Leay;Lcom/google/gson/JsonSerializationContext;)V m_6170_ + 0 o p_231025_ + 1 o p_231026_ + 2 o p_231027_ + a (Lcom/google/gson/JsonObject;Lebi;Lcom/google/gson/JsonSerializationContext;)V m_6170_ + 0 o p_231029_ + 1 o p_231030_ + 2 o p_231031_ + a (Lcom/google/gson/JsonObject;Ljava/lang/Object;Lcom/google/gson/JsonSerializationContext;)V m_6170_ + 0 o p_231033_ + 1 o p_231034_ + 2 o p_231035_ + a (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;[Leck;)Lebi; m_6821_ + 0 o p_231021_ + 1 o p_231022_ + 2 o p_231023_ + b (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;[Leck;)Leay; m_6821_ + 0 o p_231037_ + 1 o p_231038_ + 2 o p_231039_ +ebj net/minecraft/world/level/storage/loot/functions/SetItemCountFunction + a f_80997_ + b f_165407_ + ([Leck;Ledf;Z)V + 0 o p_165409_ + 1 o p_165410_ + 2 o p_165411_ + a (Ledf;[Leck;)Leaz; m_165421_ + static + 0 o p_165422_ + 1 o p_165423_ + a (Ledf;Z[Leck;)Leaz; m_165417_ + static + 0 o p_165418_ + 1 o p_165419_ + 2 o p_165420_ + a (Ledf;)Leay$a; m_165412_ + static + 0 o p_165413_ + a ()Ljava/util/Set; m_6231_ + a (Lcfz;Ldzk;)Lcfz; m_7372_ + 0 o p_81006_ + 1 o p_81007_ + a (Ledf;Z)Leay$a; m_165414_ + static + 0 o p_165415_ + 1 o p_165416_ + b ()Leba; m_7162_ +ebj$a net/minecraft/world/level/storage/loot/functions/SetItemCountFunction$Serializer + ()V + a (Lcom/google/gson/JsonObject;Leay;Lcom/google/gson/JsonSerializationContext;)V m_6170_ + 0 o p_81022_ + 1 o p_81023_ + 2 o p_81024_ + a (Lcom/google/gson/JsonObject;Lebj;Lcom/google/gson/JsonSerializationContext;)V m_6170_ + 0 o p_81026_ + 1 o p_81027_ + 2 o p_81028_ + a (Lcom/google/gson/JsonObject;Ljava/lang/Object;Lcom/google/gson/JsonSerializationContext;)V m_6170_ + 0 o p_81030_ + 1 o p_81031_ + 2 o p_81032_ + a (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;[Leck;)Lebj; m_6821_ + 0 o p_81018_ + 1 o p_81019_ + 2 o p_81020_ + b (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;[Leck;)Leay; m_6821_ + 0 o p_81034_ + 1 o p_81035_ + 2 o p_81036_ +ebk net/minecraft/world/level/storage/loot/functions/SetItemDamageFunction + a f_81037_ + b f_81038_ + c f_165425_ + ()V + static + ([Leck;Ledf;Z)V + 0 o p_165427_ + 1 o p_165428_ + 2 o p_165429_ + a (Ledf;[Leck;)Leaz; m_165439_ + static + 0 o p_165440_ + 1 o p_165441_ + a (Ledf;Z[Leck;)Leaz; m_165435_ + static + 0 o p_165436_ + 1 o p_165437_ + 2 o p_165438_ + a (Ledf;)Leay$a; m_165430_ + static + 0 o p_165431_ + a ()Ljava/util/Set; m_6231_ + a (Lcfz;Ldzk;)Lcfz; m_7372_ + 0 o p_81048_ + 1 o p_81049_ + a (Ledf;Z)Leay$a; m_165432_ + static + 0 o p_165433_ + 1 o p_165434_ + b ()Leba; m_7162_ +ebk$a net/minecraft/world/level/storage/loot/functions/SetItemDamageFunction$Serializer + ()V + a (Lcom/google/gson/JsonObject;Leay;Lcom/google/gson/JsonSerializationContext;)V m_6170_ + 0 o p_81064_ + 1 o p_81065_ + 2 o p_81066_ + a (Lcom/google/gson/JsonObject;Ljava/lang/Object;Lcom/google/gson/JsonSerializationContext;)V m_6170_ + 0 o p_81072_ + 1 o p_81073_ + 2 o p_81074_ + a (Lcom/google/gson/JsonObject;Lebk;Lcom/google/gson/JsonSerializationContext;)V m_6170_ + 0 o p_81068_ + 1 o p_81069_ + 2 o p_81070_ + a (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;[Leck;)Lebk; m_6821_ + 0 o p_81060_ + 1 o p_81061_ + 2 o p_81062_ + b (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;[Leck;)Leay; m_6821_ + 0 o p_81076_ + 1 o p_81077_ + 2 o p_81078_ +ebl net/minecraft/world/level/storage/loot/functions/SetLoreFunction + a f_81079_ + b f_81080_ + c f_81081_ + ([Leck;ZLjava/util/List;Ldzk$b;)V + 0 o p_81083_ + 1 o p_81084_ + 2 o p_81085_ + 3 o p_81086_ + a (Lcfz;Z)Lqx; m_81091_ + 0 o p_81092_ + 1 o p_81093_ + a ()Ljava/util/Set; m_6231_ + a (Lcfz;Ldzk;)Lcfz; m_7372_ + 0 o p_81089_ + 1 o p_81090_ + b ()Leba; m_7162_ + c ()Lebl$a; m_165443_ + static +ebl$a net/minecraft/world/level/storage/loot/functions/SetLoreFunction$Builder + a f_165444_ + b f_165445_ + c f_165446_ + ()V + a ()Lebl$a; m_6477_ + a (Ldzk$b;)Lebl$a; m_165449_ + 0 o p_165450_ + a (Lsw;)Lebl$a; m_165451_ + 0 o p_165452_ + a (Z)Lebl$a; m_165453_ + 0 o p_165454_ + b ()Leaz; m_7453_ + c ()Leay$a; m_6477_ +ebl$b net/minecraft/world/level/storage/loot/functions/SetLoreFunction$Serializer + ()V + a (Lcom/google/gson/JsonObject;Leay;Lcom/google/gson/JsonSerializationContext;)V m_6170_ + 0 o p_81107_ + 1 o p_81108_ + 2 o p_81109_ + a (Lcom/google/gson/JsonObject;Lebl;Lcom/google/gson/JsonSerializationContext;)V m_6170_ + 0 o p_81111_ + 1 o p_81112_ + 2 o p_81113_ + a (Lcom/google/gson/JsonObject;Ljava/lang/Object;Lcom/google/gson/JsonSerializationContext;)V m_6170_ + 0 o p_81115_ + 1 o p_81116_ + 2 o p_81117_ + a (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;[Leck;)Lebl; m_6821_ + 0 o p_81103_ + 1 o p_81104_ + 2 o p_81105_ + b (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;[Leck;)Leay; m_6821_ + 0 o p_81119_ + 1 o p_81120_ + 2 o p_81121_ +ebm net/minecraft/world/level/storage/loot/functions/SetNameFunction + a f_81122_ + b f_81123_ + c f_81124_ + ()V + static + ([Leck;Lsw;Ldzk$b;)V + 0 o p_81127_ + 1 o p_81128_ + 2 o p_81129_ + a (Lsw;)Leay$a; m_165457_ + static + 0 o p_165458_ + a (Lsw;Ldzk$b;)Leay$a; m_165459_ + static + 0 o p_165460_ + 1 o p_165461_ + a (Lds;Lbfj;Lsw;)Lsw; m_81144_ + static + 0 o p_81145_ + 1 o p_81146_ + 2 o p_81147_ + a (Ldzk;Ldzk$b;)Ljava/util/function/UnaryOperator; m_81139_ + static + 0 o p_81140_ + 1 o p_81141_ + a (Lsw;[Leck;)Leaz; m_165466_ + static + 0 o p_165467_ + 1 o p_165468_ + a ()Ljava/util/Set; m_6231_ + a (Lsw;Ldzk$b;[Leck;)Leaz; m_165462_ + static + 0 o p_165463_ + 1 o p_165464_ + 2 o p_165465_ + a (Lcfz;Ldzk;)Lcfz; m_7372_ + 0 o p_81137_ + 1 o p_81138_ + b ()Leba; m_7162_ + b (Lsw;)Lsw; m_81151_ + static + 0 o p_81152_ +ebm$a net/minecraft/world/level/storage/loot/functions/SetNameFunction$Serializer + ()V + a (Lcom/google/gson/JsonObject;Leay;Lcom/google/gson/JsonSerializationContext;)V m_6170_ + 0 o p_81159_ + 1 o p_81160_ + 2 o p_81161_ + a (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;[Leck;)Lebm; m_6821_ + 0 o p_81155_ + 1 o p_81156_ + 2 o p_81157_ + a (Lcom/google/gson/JsonObject;Ljava/lang/Object;Lcom/google/gson/JsonSerializationContext;)V m_6170_ + 0 o p_81167_ + 1 o p_81168_ + 2 o p_81169_ + a (Lcom/google/gson/JsonObject;Lebm;Lcom/google/gson/JsonSerializationContext;)V m_6170_ + 0 o p_81163_ + 1 o p_81164_ + 2 o p_81165_ + b (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;[Leck;)Leay; m_6821_ + 0 o p_81171_ + 1 o p_81172_ + 2 o p_81173_ +ebn net/minecraft/world/level/storage/loot/functions/SetNbtFunction + a f_81174_ + ([Leck;Lqr;)V + 0 o p_81176_ + 1 o p_81177_ + a (Lqr;)Leay$a; m_81187_ + static + 0 o p_81188_ + a (Lqr;[Leck;)Leaz; m_81189_ + static + 0 o p_81190_ + 1 o p_81191_ + a (Lcfz;Ldzk;)Lcfz; m_7372_ + 0 o p_81183_ + 1 o p_81184_ + b ()Leba; m_7162_ +ebn$a net/minecraft/world/level/storage/loot/functions/SetNbtFunction$Serializer + ()V + a (Lcom/google/gson/JsonObject;Leay;Lcom/google/gson/JsonSerializationContext;)V m_6170_ + 0 o p_81199_ + 1 o p_81200_ + 2 o p_81201_ + a (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;[Leck;)Lebn; m_6821_ + 0 o p_81195_ + 1 o p_81196_ + 2 o p_81197_ + a (Lcom/google/gson/JsonObject;Ljava/lang/Object;Lcom/google/gson/JsonSerializationContext;)V m_6170_ + 0 o p_81207_ + 1 o p_81208_ + 2 o p_81209_ + a (Lcom/google/gson/JsonObject;Lebn;Lcom/google/gson/JsonSerializationContext;)V m_6170_ + 0 o p_81203_ + 1 o p_81204_ + 2 o p_81205_ + b (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;[Leck;)Leay; m_6821_ + 0 o p_81211_ + 1 o p_81212_ + 2 o p_81213_ +ebo net/minecraft/world/level/storage/loot/functions/SetPotionFunction + a f_193067_ + ([Leck;Lchw;)V + 0 o p_193069_ + 1 o p_193070_ + a (Lchw;[Leck;)Leaz; m_193077_ + static + 0 o p_193078_ + 1 o p_193079_ + a (Lchw;)Leay$a; m_193075_ + static + 0 o p_193076_ + a (Lcfz;Ldzk;)Lcfz; m_7372_ + 0 o p_193073_ + 1 o p_193074_ + b ()Leba; m_7162_ +ebo$a net/minecraft/world/level/storage/loot/functions/SetPotionFunction$Serializer + ()V + a (Lcom/google/gson/JsonObject;Leay;Lcom/google/gson/JsonSerializationContext;)V m_6170_ + 0 o p_193086_ + 1 o p_193087_ + 2 o p_193088_ + a (Lcom/google/gson/JsonObject;Lebo;Lcom/google/gson/JsonSerializationContext;)V m_6170_ + 0 o p_193090_ + 1 o p_193091_ + 2 o p_193092_ + a (Lcom/google/gson/JsonObject;Ljava/lang/Object;Lcom/google/gson/JsonSerializationContext;)V m_6170_ + 0 o p_193094_ + 1 o p_193095_ + 2 o p_193096_ + a (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;[Leck;)Lebo; m_6821_ + 0 o p_193082_ + 1 o p_193083_ + 2 o p_193084_ + a (Ljava/lang/String;)Lcom/google/gson/JsonSyntaxException; m_193097_ + static + 0 o p_193098_ + b (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;[Leck;)Leay; m_6821_ + 0 o p_193100_ + 1 o p_193101_ + 2 o p_193102_ +ebp net/minecraft/world/level/storage/loot/functions/SetStewEffectFunction + a f_81214_ + ([Leck;Ljava/util/Map;)V + 0 o p_81216_ + 1 o p_81217_ + a (Ledf;)Ljava/util/stream/Stream; m_278609_ + static + 0 o p_279082_ + a ()Ljava/util/Set; m_6231_ + a (Lcfz;Ldzk;)Lcfz; m_7372_ + 0 o p_81223_ + 1 o p_81224_ + b ()Leba; m_7162_ + c ()Lebp$a; m_81228_ + static +ebp$a net/minecraft/world/level/storage/loot/functions/SetStewEffectFunction$Builder + a f_81229_ + ()V + a ()Lebp$a; m_6477_ + a (Lbey;Ledf;)Lebp$a; m_165472_ + 0 o p_165473_ + 1 o p_165474_ + b ()Leaz; m_7453_ + c ()Leay$a; m_6477_ +ebp$b net/minecraft/world/level/storage/loot/functions/SetStewEffectFunction$Serializer + ()V + a (Lcom/google/gson/JsonObject;Leay;Lcom/google/gson/JsonSerializationContext;)V m_6170_ + 0 o p_81243_ + 1 o p_81244_ + 2 o p_81245_ + a (Lcom/google/gson/JsonObject;Ljava/lang/Object;Lcom/google/gson/JsonSerializationContext;)V m_6170_ + 0 o p_81251_ + 1 o p_81252_ + 2 o p_81253_ + a (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;[Leck;)Lebp; m_6821_ + 0 o p_81239_ + 1 o p_81240_ + 2 o p_81241_ + a (Lcom/google/gson/JsonObject;Lebp;Lcom/google/gson/JsonSerializationContext;)V m_6170_ + 0 o p_81247_ + 1 o p_81248_ + 2 o p_81249_ + a (Ljava/lang/String;)Lcom/google/gson/JsonSyntaxException; m_81254_ + static + 0 o p_81255_ + b (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;[Leck;)Leay; m_6821_ + 0 o p_81257_ + 1 o p_81258_ + 2 o p_81259_ +ebq net/minecraft/world/level/storage/loot/functions/SmeltItemFunction + a f_81260_ + ()V + static + ([Leck;)V + 0 o p_81263_ + a (Lcfz;Ldzk;)Lcfz; m_7372_ + 0 o p_81268_ + 1 o p_81269_ + b ()Leba; m_7162_ + c ()Leay$a; m_81271_ + static +ebq$a net/minecraft/world/level/storage/loot/functions/SmeltItemFunction$Serializer + ()V + a (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;[Leck;)Lebq; m_6821_ + 0 o p_81274_ + 1 o p_81275_ + 2 o p_81276_ + b (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;[Leck;)Leay; m_6821_ + 0 o p_81278_ + 1 o p_81279_ + 2 o p_81280_ +ebr net/minecraft/world/level/storage/loot/functions/package-info +ebs net/minecraft/world/level/storage/loot/package-info +ebt net/minecraft/world/level/storage/loot/parameters/LootContextParam + a f_81281_ + (Lacq;)V + 0 o p_81283_ + a ()Lacq; m_81284_ + toString ()Ljava/lang/String; toString +ebu net/minecraft/world/level/storage/loot/parameters/LootContextParamSet + a f_81385_ + b f_81386_ + (Ljava/util/Set;Ljava/util/Set;)V + 0 o p_81388_ + 1 o p_81389_ + a (Lebt;)Z m_165475_ + 0 o p_165476_ + a (Ldzv;Ldzl;)V m_81395_ + 0 o p_81396_ + 1 o p_81397_ + a ()Ljava/util/Set; m_81394_ + b (Lebt;)Ljava/lang/String; m_81399_ + 0 o p_81400_ + b ()Ljava/util/Set; m_81398_ + c ()Lebu$a; m_165477_ + static + toString ()Ljava/lang/String; toString +ebu$a net/minecraft/world/level/storage/loot/parameters/LootContextParamSet$Builder + a f_81402_ + b f_81403_ + ()V + a (Lebt;)Lebu$a; m_81406_ + 0 o p_81407_ + a ()Lebu; m_81405_ + b (Lebt;)Lebu$a; m_81408_ + 0 o p_81409_ +ebv net/minecraft/world/level/storage/loot/parameters/LootContextParamSets + a f_81410_ + b f_81411_ + c f_81412_ + d f_81413_ + e f_81414_ + f f_81415_ + g f_271368_ + h f_81416_ + i f_81417_ + j f_81418_ + k f_81419_ + l f_285637_ + m f_81420_ + n f_81421_ + o f_81422_ + ()V + static + ()V + a (Lebu$a;)V m_81424_ + static + 0 o p_81425_ + a (Lebu;)Lacq; m_81426_ + static + 0 o p_81427_ + a (Lacq;)Lebu; m_81431_ + static + 0 o p_81432_ + a (Ljava/lang/String;Ljava/util/function/Consumer;)Lebu; m_81428_ + static + 0 o p_81429_ + 1 o p_81430_ + b (Lebu$a;)V m_81433_ + static + 0 o p_81434_ + c (Lebu$a;)V m_285732_ + static + 0 o p_286218_ + d (Lebu$a;)V m_81437_ + static + 0 o p_81438_ + e (Lebu$a;)V m_81435_ + static + 0 o p_81436_ + f (Lebu$a;)V m_81439_ + static + 0 o p_81440_ + g (Lebu$a;)V m_81441_ + static + 0 o p_81442_ + h (Lebu$a;)V m_271683_ + static + 0 o p_272589_ + i (Lebu$a;)V m_81443_ + static + 0 o p_81444_ + j (Lebu$a;)V m_81445_ + static + 0 o p_81446_ + k (Lebu$a;)V m_81447_ + static + 0 o p_81448_ + l (Lebu$a;)V m_81449_ + static + 0 o p_81450_ + m (Lebu$a;)V m_81451_ + static + 0 o p_81452_ + n (Lebu$a;)V m_81453_ + static + 0 o p_81454_ +ebw net/minecraft/world/level/storage/loot/parameters/LootContextParams + a f_81455_ + b f_81456_ + c f_81457_ + d f_81458_ + e f_81459_ + f f_81460_ + g f_81461_ + h f_81462_ + i f_81463_ + j f_81464_ + ()V + static + ()V + a (Ljava/lang/String;)Lebt; m_81466_ + static + 0 o p_81467_ +ebx net/minecraft/world/level/storage/loot/parameters/package-info +eby net/minecraft/world/level/storage/loot/predicates/AllOfCondition + ([Leck;)V + 0 o p_286723_ + a ([Leck$a;)Leby$a; m_285871_ + static + 0 o p_286873_ + b ()Lecl; m_7940_ +eby$a net/minecraft/world/level/storage/loot/predicates/AllOfCondition$Builder + ([Leck$a;)V + 0 o p_286842_ + a ([Leck;)Leck; m_285950_ + 0 o p_286816_ + and (Leck$a;)Leby$a; m_285747_ + 0 o p_286760_ +eby$b net/minecraft/world/level/storage/loot/predicates/AllOfCondition$Serializer + ()V + a ([Leck;)Leby; m_285830_ + 0 o p_286223_ + b ([Leck;)Lecb; m_285830_ + 0 o p_286349_ +ebz net/minecraft/world/level/storage/loot/predicates/AnyOfCondition + ([Leck;)V + 0 o p_286532_ + a ([Leck$a;)Lebz$a; m_285758_ + static + 0 o p_286239_ + b ()Lecl; m_7940_ +ebz$a net/minecraft/world/level/storage/loot/predicates/AnyOfCondition$Builder + ([Leck$a;)V + 0 o p_286497_ + a ([Leck;)Leck; m_285950_ + 0 o p_286715_ + or (Leck$a;)Lebz$a; m_285888_ + 0 o p_286344_ +ebz$b net/minecraft/world/level/storage/loot/predicates/AnyOfCondition$Serializer + ()V + a ([Leck;)Lebz; m_285830_ + 0 o p_286467_ + b ([Leck;)Lecb; m_285830_ + 0 o p_286805_ +ec net/minecraft/commands/arguments/EntityArgument + a f_91436_ + b f_91437_ + c f_91438_ + d f_91439_ + e f_91440_ + f f_91441_ + g f_91442_ + h f_91443_ + i f_91444_ + ()V + static + (ZZ)V + 0 o p_91447_ + 1 o p_91448_ + a (Lcom/mojang/brigadier/StringReader;)Lga; parse + 0 o p_91451_ + a (Ldu;Lcom/mojang/brigadier/suggestion/SuggestionsBuilder;)V m_91455_ + 0 o p_91456_ + 1 o p_91457_ + a (Lcom/mojang/brigadier/context/CommandContext;Ljava/lang/String;)Lbfj; m_91452_ + static + 0 o p_91453_ + 1 o p_91454_ + a ()Lec; m_91449_ + static + b (Lcom/mojang/brigadier/context/CommandContext;Ljava/lang/String;)Ljava/util/Collection; m_91461_ + static + 0 o p_91462_ + 1 o p_91463_ + b ()Lec; m_91460_ + static + c ()Lec; m_91466_ + static + c (Lcom/mojang/brigadier/context/CommandContext;Ljava/lang/String;)Ljava/util/Collection; m_91467_ + static + 0 o p_91468_ + 1 o p_91469_ + d ()Lec; m_91470_ + static + d (Lcom/mojang/brigadier/context/CommandContext;Ljava/lang/String;)Ljava/util/Collection; m_91471_ + static + 0 o p_91472_ + 1 o p_91473_ + e (Lcom/mojang/brigadier/context/CommandContext;Ljava/lang/String;)Laig; m_91474_ + static + 0 o p_91475_ + 1 o p_91476_ + f (Lcom/mojang/brigadier/context/CommandContext;Ljava/lang/String;)Ljava/util/Collection; m_91477_ + static + 0 o p_91478_ + 1 o p_91479_ + getExamples ()Ljava/util/Collection; getExamples + listSuggestions (Lcom/mojang/brigadier/context/CommandContext;Lcom/mojang/brigadier/suggestion/SuggestionsBuilder;)Ljava/util/concurrent/CompletableFuture; listSuggestions + 0 o p_91482_ + 1 o p_91483_ + parse (Lcom/mojang/brigadier/StringReader;)Ljava/lang/Object; parse + 0 o p_91485_ +ec$a net/minecraft/commands/arguments/EntityArgument$Info + a f_231262_ + b f_231263_ + ()V + a (Lgg$a;Lcom/google/gson/JsonObject;)V m_213719_ + 0 o p_231276_ + 1 o p_231277_ + a (Lcom/mojang/brigadier/arguments/ArgumentType;)Lgg$a; m_214163_ + 0 o p_231266_ + a (Lgg$a;Lsf;)V m_214155_ + 0 o p_231279_ + 1 o p_231280_ + a (Lec$a$a;Lcom/google/gson/JsonObject;)V m_213719_ + 0 o p_231268_ + 1 o p_231269_ + a (Lec;)Lec$a$a; m_214163_ + 0 o p_231274_ + a (Lec$a$a;Lsf;)V m_214155_ + 0 o p_231271_ + 1 o p_231272_ + a (Lsf;)Lec$a$a; m_213618_ + 0 o p_231282_ + b (Lsf;)Lgg$a; m_213618_ + 0 o p_231284_ +ec$a$a net/minecraft/commands/arguments/EntityArgument$Info$Template + a f_231285_ + b f_231286_ + c f_231287_ + (Lec$a;ZZ)V + 0 o p_231289_ + 1 o p_231290_ + 2 o p_231291_ + a ()Lgg; m_213709_ + a (Ldm;)Lec; m_213879_ + 0 o p_231294_ + b (Ldm;)Lcom/mojang/brigadier/arguments/ArgumentType; m_213879_ + 0 o p_231296_ +eca net/minecraft/world/level/storage/loot/predicates/BonusLevelTableCondition + a f_81507_ + b f_81508_ + (Lckg;[F)V + 0 o p_81510_ + 1 o p_81511_ + a (Ldzk;)Z test + 0 o p_81521_ + a ()Ljava/util/Set; m_6231_ + a (Lckg;[F)Leck$a; m_81517_ + static + 0 o p_81518_ + 1 o p_81519_ + b (Lckg;[F)Leck; m_81525_ + static + 0 o p_81526_ + 1 o p_81527_ + b ()Lecl; m_7940_ + test (Ljava/lang/Object;)Z test + 0 o p_81531_ +eca$a net/minecraft/world/level/storage/loot/predicates/BonusLevelTableCondition$Serializer + ()V + a (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;)Ljava/lang/Object; m_7561_ + 0 o p_81534_ + 1 o p_81535_ + a (Lacq;)Lcom/google/gson/JsonParseException; m_81544_ + static + 0 o p_81545_ + a (Lcom/google/gson/JsonObject;Leca;Lcom/google/gson/JsonSerializationContext;)V m_6170_ + 0 o p_81537_ + 1 o p_81538_ + 2 o p_81539_ + a (Lcom/google/gson/JsonObject;Ljava/lang/Object;Lcom/google/gson/JsonSerializationContext;)V m_6170_ + 0 o p_81541_ + 1 o p_81542_ + 2 o p_81543_ + b (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;)Leca; m_7561_ + 0 o p_81547_ + 1 o p_81548_ +ecb net/minecraft/world/level/storage/loot/predicates/CompositeLootItemCondition + a f_285609_ + b f_285616_ + ([Leck;Ljava/util/function/Predicate;)V + 0 o p_286437_ + 1 o p_286771_ + a (Ldzv;)V m_6169_ + 0 o p_286819_ + a (Ldzk;)Z test + 0 o p_286298_ + test (Ljava/lang/Object;)Z test + 0 o p_286320_ +ecb$a net/minecraft/world/level/storage/loot/predicates/CompositeLootItemCondition$Builder + a f_285633_ + ([Leck$a;)V + 0 o p_286619_ + a (Leck$a;)V m_286010_ + 0 o p_286677_ + a ([Leck;)Leck; m_285950_ + 0 o p_286469_ + a (I)[Leck; m_285756_ + static + 0 o p_286455_ + build ()Leck; m_6409_ +ecb$b net/minecraft/world/level/storage/loot/predicates/CompositeLootItemCondition$Serializer + ()V + a (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;)Ljava/lang/Object; m_7561_ + 0 o p_286345_ + 1 o p_286358_ + a (Lcom/google/gson/JsonObject;Ljava/lang/Object;Lcom/google/gson/JsonSerializationContext;)V m_6170_ + 0 o p_286785_ + 1 o p_286371_ + 2 o p_286902_ + a (Lcom/google/gson/JsonObject;Lecb;Lcom/google/gson/JsonSerializationContext;)V m_6170_ + 0 o p_286342_ + 1 o p_286412_ + 2 o p_286331_ + b ([Leck;)Lecb; m_285830_ + 0 o p_286604_ + b (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;)Lecb; m_7561_ + 0 o p_286509_ + 1 o p_286321_ +ecc net/minecraft/world/level/storage/loot/predicates/ConditionReference + a f_81549_ + b f_81550_ + ()V + static + (Lacq;)V + 0 o p_81553_ + a (Ldzv;Ldzm;Leck;)V m_278610_ + 0 o p_279083_ + 1 o p_279084_ + 2 o p_279085_ + a (Ldzv;)V m_6169_ + 0 o p_81560_ + a (Ldzk;)Z test + 0 o p_81558_ + a (Lacq;)Leck$a; m_165480_ + static + 0 o p_165481_ + b (Lacq;)Leck; m_165482_ + static + 0 o p_165483_ + b (Ldzv;)V m_278611_ + 0 o p_279086_ + b ()Lecl; m_7940_ + test (Ljava/lang/Object;)Z test + 0 o p_81565_ +ecc$a net/minecraft/world/level/storage/loot/predicates/ConditionReference$Serializer + ()V + a (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;)Ljava/lang/Object; m_7561_ + 0 o p_81568_ + 1 o p_81569_ + a (Lcom/google/gson/JsonObject;Lecc;Lcom/google/gson/JsonSerializationContext;)V m_6170_ + 0 o p_81571_ + 1 o p_81572_ + 2 o p_81573_ + a (Lcom/google/gson/JsonObject;Ljava/lang/Object;Lcom/google/gson/JsonSerializationContext;)V m_6170_ + 0 o p_81575_ + 1 o p_81576_ + 2 o p_81577_ + b (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;)Lecc; m_7561_ + 0 o p_81579_ + 1 o p_81580_ +ecd net/minecraft/world/level/storage/loot/predicates/ConditionUserBuilder + a_ (Ljava/lang/Iterable;Ljava/util/function/Function;)Lecd; m_231040_ + 0 o p_231041_ + 1 o p_231042_ + b (Leck$a;)Lecd; m_79080_ + 0 o p_231043_ + d ()Lecd; m_79073_ +ece net/minecraft/world/level/storage/loot/predicates/DamageSourceCondition + a f_81582_ + (Lbd;)V + 0 o p_81584_ + a (Lbd$a;)Leck$a; m_81589_ + static + 0 o p_81590_ + a (Ldzk;)Z test + 0 o p_81592_ + a ()Ljava/util/Set; m_6231_ + b ()Lecl; m_7940_ + b (Lbd$a;)Leck; m_81596_ + static + 0 o p_81597_ + test (Ljava/lang/Object;)Z test + 0 o p_81599_ +ece$a net/minecraft/world/level/storage/loot/predicates/DamageSourceCondition$Serializer + ()V + a (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;)Ljava/lang/Object; m_7561_ + 0 o p_81602_ + 1 o p_81603_ + a (Lcom/google/gson/JsonObject;Lece;Lcom/google/gson/JsonSerializationContext;)V m_6170_ + 0 o p_81605_ + 1 o p_81606_ + 2 o p_81607_ + a (Lcom/google/gson/JsonObject;Ljava/lang/Object;Lcom/google/gson/JsonSerializationContext;)V m_6170_ + 0 o p_81609_ + 1 o p_81610_ + 2 o p_81611_ + b (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;)Lece; m_7561_ + 0 o p_81613_ + 1 o p_81614_ +ecf net/minecraft/world/level/storage/loot/predicates/EntityHasScoreCondition + a f_81615_ + b f_81616_ + (Ljava/util/Map;Ldzk$b;)V + 0 o p_81618_ + 1 o p_81619_ + a (Ldzk;Lbfj;Lefg;Ljava/lang/String;Ldzj;)Z m_165490_ + 0 o p_165491_ + 1 o p_165492_ + 2 o p_165493_ + 3 o p_165494_ + 4 o p_165495_ + a (Ldzk$b;)Lecf$a; m_165488_ + static + 0 o p_165489_ + a (Ldzk;)Z test + 0 o p_81631_ + a (Ldzj;)Ljava/util/stream/Stream; m_165486_ + static + 0 o p_165487_ + a ()Ljava/util/Set; m_6231_ + b ()Lecl; m_7940_ + test (Ljava/lang/Object;)Z test + 0 o p_81638_ +ecf$a net/minecraft/world/level/storage/loot/predicates/EntityHasScoreCondition$Builder + a f_165496_ + b f_165497_ + (Ldzk$b;)V + 0 o p_165499_ + a (Ljava/lang/String;Ldzj;)Lecf$a; m_165500_ + 0 o p_165501_ + 1 o p_165502_ + build ()Leck; m_6409_ +ecf$b net/minecraft/world/level/storage/loot/predicates/EntityHasScoreCondition$Serializer + ()V + a (Lcom/google/gson/JsonObject;Lecf;Lcom/google/gson/JsonSerializationContext;)V m_6170_ + 0 o p_81644_ + 1 o p_81645_ + 2 o p_81646_ + a (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;)Ljava/lang/Object; m_7561_ + 0 o p_81641_ + 1 o p_81642_ + a (Lcom/google/gson/JsonObject;Ljava/lang/Object;Lcom/google/gson/JsonSerializationContext;)V m_6170_ + 0 o p_81648_ + 1 o p_81649_ + 2 o p_81650_ + b (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;)Lecf; m_7561_ + 0 o p_81652_ + 1 o p_81653_ +ecg net/minecraft/world/level/storage/loot/predicates/ExplosionCondition + a f_81654_ + ()V + static + ()V + a (Ldzk;)Z test + 0 o p_81659_ + a ()Ljava/util/Set; m_6231_ + b ()Lecl; m_7940_ + c ()Leck$a; m_81661_ + static + d ()Leck; m_81663_ + static + test (Ljava/lang/Object;)Z test + 0 o p_81665_ +ecg$a net/minecraft/world/level/storage/loot/predicates/ExplosionCondition$Serializer + ()V + a (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;)Ljava/lang/Object; m_7561_ + 0 o p_81668_ + 1 o p_81669_ + a (Lcom/google/gson/JsonObject;Lecg;Lcom/google/gson/JsonSerializationContext;)V m_6170_ + 0 o p_81671_ + 1 o p_81672_ + 2 o p_81673_ + a (Lcom/google/gson/JsonObject;Ljava/lang/Object;Lcom/google/gson/JsonSerializationContext;)V m_6170_ + 0 o p_81675_ + 1 o p_81676_ + 2 o p_81677_ + b (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;)Lecg; m_7561_ + 0 o p_81679_ + 1 o p_81680_ +ech net/minecraft/world/level/storage/loot/predicates/InvertedLootItemCondition + a f_81681_ + (Leck;)V + 0 o p_81683_ + a (Ldzv;)V m_6169_ + 0 o p_81691_ + a (Ldzk;)Z test + 0 o p_81689_ + a ()Ljava/util/Set; m_6231_ + a (Leck$a;)Leck$a; m_81694_ + static + 0 o p_81695_ + a (Lech;)Leck; m_81697_ + static + 0 o p_81698_ + b ()Lecl; m_7940_ + test (Ljava/lang/Object;)Z test + 0 o p_81700_ +ech$a net/minecraft/world/level/storage/loot/predicates/InvertedLootItemCondition$Serializer + ()V + a (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;)Ljava/lang/Object; m_7561_ + 0 o p_81703_ + 1 o p_81704_ + a (Lcom/google/gson/JsonObject;Lech;Lcom/google/gson/JsonSerializationContext;)V m_6170_ + 0 o p_81706_ + 1 o p_81707_ + 2 o p_81708_ + a (Lcom/google/gson/JsonObject;Ljava/lang/Object;Lcom/google/gson/JsonSerializationContext;)V m_6170_ + 0 o p_81710_ + 1 o p_81711_ + 2 o p_81712_ + b (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;)Lech; m_7561_ + 0 o p_81714_ + 1 o p_81715_ +eci net/minecraft/world/level/storage/loot/predicates/LocationCheck + a f_81716_ + b f_81717_ + (Lch;Lgu;)V + 0 o p_81719_ + 1 o p_81720_ + a (Lch$a;Lgu;)Leck$a; m_81727_ + static + 0 o p_81728_ + 1 o p_81729_ + a (Ldzk;)Z test + 0 o p_81731_ + a (Lch$a;)Leck$a; m_81725_ + static + 0 o p_81726_ + b ()Lecl; m_7940_ + b (Lch$a;Lgu;)Leck; m_81737_ + static + 0 o p_81738_ + 1 o p_81739_ + b (Lch$a;)Leck; m_81735_ + static + 0 o p_81736_ + test (Ljava/lang/Object;)Z test + 0 o p_81743_ +eci$a net/minecraft/world/level/storage/loot/predicates/LocationCheck$Serializer + ()V + a (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;)Ljava/lang/Object; m_7561_ + 0 o p_81746_ + 1 o p_81747_ + a (Lcom/google/gson/JsonObject;Ljava/lang/Object;Lcom/google/gson/JsonSerializationContext;)V m_6170_ + 0 o p_81753_ + 1 o p_81754_ + 2 o p_81755_ + a (Lcom/google/gson/JsonObject;Leci;Lcom/google/gson/JsonSerializationContext;)V m_6170_ + 0 o p_81749_ + 1 o p_81750_ + 2 o p_81751_ + b (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;)Leci; m_7561_ + 0 o p_81757_ + 1 o p_81758_ +ecj net/minecraft/world/level/storage/loot/predicates/LootItemBlockStatePropertyCondition + a f_81759_ + b f_81760_ + (Lcpn;Lcz;)V + 0 o p_81762_ + 1 o p_81763_ + a (Ldzk;)Z test + 0 o p_81772_ + a (Lcpn;)Lecj$a; m_81769_ + static + 0 o p_81770_ + a ()Ljava/util/Set; m_6231_ + b ()Lecl; m_7940_ + test (Ljava/lang/Object;)Z test + 0 o p_81779_ +ecj$a net/minecraft/world/level/storage/loot/predicates/LootItemBlockStatePropertyCondition$Builder + a f_81780_ + b f_81781_ + (Lcpn;)V + 0 o p_81783_ + a (Lcz$a;)Lecj$a; m_81784_ + 0 o p_81785_ + build ()Leck; m_6409_ +ecj$b net/minecraft/world/level/storage/loot/predicates/LootItemBlockStatePropertyCondition$Serializer + ()V + a (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;)Ljava/lang/Object; m_7561_ + 0 o p_81792_ + 1 o p_81793_ + a (Lcom/google/gson/JsonObject;Lecj;Lcom/google/gson/JsonSerializationContext;)V m_6170_ + 0 o p_81795_ + 1 o p_81796_ + 2 o p_81797_ + a (Lcpn;Ljava/lang/String;)V m_81788_ + static + 0 o p_81789_ + 1 o p_81790_ + a (Lacq;)Ljava/lang/IllegalArgumentException; m_81802_ + static + 0 o p_81803_ + a (Lcom/google/gson/JsonObject;Ljava/lang/Object;Lcom/google/gson/JsonSerializationContext;)V m_6170_ + 0 o p_81799_ + 1 o p_81800_ + 2 o p_81801_ + b (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;)Lecj; m_7561_ + 0 o p_81805_ + 1 o p_81806_ +eck net/minecraft/world/level/storage/loot/predicates/LootItemCondition + b ()Lecl; m_7940_ +eck$a net/minecraft/world/level/storage/loot/predicates/LootItemCondition$Builder + and (Leck$a;)Leby$a; m_285747_ + 0 o p_286363_ + build ()Leck; m_6409_ + invert ()Leck$a; m_81807_ + or (Leck$a;)Lebz$a; m_285888_ + 0 o p_286316_ +ecl net/minecraft/world/level/storage/loot/predicates/LootItemConditionType + (Ldzt;)V + 0 o p_81810_ +ecm net/minecraft/world/level/storage/loot/predicates/LootItemConditions + a f_81811_ + b f_285643_ + c f_285646_ + d f_81813_ + e f_81814_ + f f_81815_ + g f_81816_ + h f_81817_ + i f_81818_ + j f_81819_ + k f_81820_ + l f_81821_ + m f_81822_ + n f_81823_ + o f_81824_ + p f_81825_ + q f_81826_ + r f_165504_ + ()V + static + ()V + a ([Ljava/util/function/Predicate;)Ljava/util/function/Predicate; m_81834_ + static + 0 o p_81835_ + a (Ljava/lang/String;Ldzt;)Lecl; m_81831_ + static + 0 o p_81832_ + 1 o p_81833_ + a (Ljava/lang/Object;)Z m_81829_ + static + 0 o p_81830_ + a ([Ljava/util/function/Predicate;Ljava/lang/Object;)Z m_81836_ + static + 0 o p_81837_ + 1 o p_81838_ + a ()Ljava/lang/Object; m_81828_ + static + b (Ljava/lang/Object;)Z m_81839_ + static + 0 o p_81840_ + b ([Ljava/util/function/Predicate;)Ljava/util/function/Predicate; m_81841_ + static + 0 o p_81842_ + b ([Ljava/util/function/Predicate;Ljava/lang/Object;)Z m_81843_ + static + 0 o p_81844_ + 1 o p_81845_ +ecn net/minecraft/world/level/storage/loot/predicates/LootItemEntityPropertyCondition + a f_81846_ + b f_81847_ + (Lbo;Ldzk$b;)V + 0 o p_81849_ + 1 o p_81850_ + a (Lbo$a;Ldzk$b;)Leck; m_81856_ + static + 0 o p_81857_ + 1 o p_81858_ + a (Ldzk$b;)Leck$a; m_81862_ + static + 0 o p_81863_ + a (Ldzk;)Z test + 0 o p_81871_ + a ()Ljava/util/Set; m_6231_ + a (Ldzk$b;Lbo;)Leck$a; m_81867_ + static + 0 o p_81868_ + 1 o p_81869_ + a (Lbo;Ldzk$b;)Leck; m_81859_ + static + 0 o p_81860_ + 1 o p_81861_ + a (Ldzk$b;Lbo$a;)Leck$a; m_81864_ + static + 0 o p_81865_ + 1 o p_81866_ + b ()Lecl; m_7940_ + test (Ljava/lang/Object;)Z test + 0 o p_81878_ +ecn$a net/minecraft/world/level/storage/loot/predicates/LootItemEntityPropertyCondition$Serializer + ()V + a (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;)Ljava/lang/Object; m_7561_ + 0 o p_81881_ + 1 o p_81882_ + a (Lcom/google/gson/JsonObject;Ljava/lang/Object;Lcom/google/gson/JsonSerializationContext;)V m_6170_ + 0 o p_81888_ + 1 o p_81889_ + 2 o p_81890_ + a (Lcom/google/gson/JsonObject;Lecn;Lcom/google/gson/JsonSerializationContext;)V m_6170_ + 0 o p_81884_ + 1 o p_81885_ + 2 o p_81886_ + b (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;)Lecn; m_7561_ + 0 o p_81892_ + 1 o p_81893_ +eco net/minecraft/world/level/storage/loot/predicates/LootItemKilledByPlayerCondition + a f_81894_ + ()V + static + ()V + a (Ldzk;)Z test + 0 o p_81899_ + a ()Ljava/util/Set; m_6231_ + b ()Lecl; m_7940_ + c ()Leck$a; m_81901_ + static + d ()Leck; m_81903_ + static + test (Ljava/lang/Object;)Z test + 0 o p_81905_ +eco$a net/minecraft/world/level/storage/loot/predicates/LootItemKilledByPlayerCondition$Serializer + ()V + a (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;)Ljava/lang/Object; m_7561_ + 0 o p_81908_ + 1 o p_81909_ + a (Lcom/google/gson/JsonObject;Leco;Lcom/google/gson/JsonSerializationContext;)V m_6170_ + 0 o p_81911_ + 1 o p_81912_ + 2 o p_81913_ + a (Lcom/google/gson/JsonObject;Ljava/lang/Object;Lcom/google/gson/JsonSerializationContext;)V m_6170_ + 0 o p_81915_ + 1 o p_81916_ + 2 o p_81917_ + b (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;)Leco; m_7561_ + 0 o p_81919_ + 1 o p_81920_ +ecp net/minecraft/world/level/storage/loot/predicates/LootItemRandomChanceCondition + a f_81921_ + (F)V + 0 o p_81923_ + a (Ldzk;)Z test + 0 o p_81930_ + a (F)Leck$a; m_81927_ + static + 0 o p_81928_ + b ()Lecl; m_7940_ + b (F)Leck; m_81934_ + static + 0 o p_81935_ + test (Ljava/lang/Object;)Z test + 0 o p_81937_ +ecp$a net/minecraft/world/level/storage/loot/predicates/LootItemRandomChanceCondition$Serializer + ()V + a (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;)Ljava/lang/Object; m_7561_ + 0 o p_81940_ + 1 o p_81941_ + a (Lcom/google/gson/JsonObject;Ljava/lang/Object;Lcom/google/gson/JsonSerializationContext;)V m_6170_ + 0 o p_81947_ + 1 o p_81948_ + 2 o p_81949_ + a (Lcom/google/gson/JsonObject;Lecp;Lcom/google/gson/JsonSerializationContext;)V m_6170_ + 0 o p_81943_ + 1 o p_81944_ + 2 o p_81945_ + b (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;)Lecp; m_7561_ + 0 o p_81951_ + 1 o p_81952_ +ecq net/minecraft/world/level/storage/loot/predicates/LootItemRandomChanceWithLootingCondition + a f_81953_ + b f_81954_ + (FF)V + 0 o p_81956_ + 1 o p_81957_ + a (FF)Leck$a; m_81963_ + static + 0 o p_81964_ + 1 o p_81965_ + a (Ldzk;)Z test + 0 o p_81967_ + a ()Ljava/util/Set; m_6231_ + b ()Lecl; m_7940_ + b (FF)Leck; m_81971_ + static + 0 o p_81972_ + 1 o p_81973_ + test (Ljava/lang/Object;)Z test + 0 o p_81977_ +ecq$a net/minecraft/world/level/storage/loot/predicates/LootItemRandomChanceWithLootingCondition$Serializer + ()V + a (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;)Ljava/lang/Object; m_7561_ + 0 o p_81980_ + 1 o p_81981_ + a (Lcom/google/gson/JsonObject;Lecq;Lcom/google/gson/JsonSerializationContext;)V m_6170_ + 0 o p_81983_ + 1 o p_81984_ + 2 o p_81985_ + a (Lcom/google/gson/JsonObject;Ljava/lang/Object;Lcom/google/gson/JsonSerializationContext;)V m_6170_ + 0 o p_81987_ + 1 o p_81988_ + 2 o p_81989_ + b (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;)Lecq; m_7561_ + 0 o p_81991_ + 1 o p_81992_ +ecr net/minecraft/world/level/storage/loot/predicates/MatchTool + a f_81993_ + (Lbz;)V + 0 o p_81995_ + a (Lbz$a;)Leck$a; m_81997_ + static + 0 o p_81998_ + a (Ldzk;)Z test + 0 o p_82000_ + a ()Ljava/util/Set; m_6231_ + b ()Lecl; m_7940_ + b (Lbz$a;)Leck; m_82004_ + static + 0 o p_82005_ + test (Ljava/lang/Object;)Z test + 0 o p_82007_ +ecr$a net/minecraft/world/level/storage/loot/predicates/MatchTool$Serializer + ()V + a (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;)Ljava/lang/Object; m_7561_ + 0 o p_82010_ + 1 o p_82011_ + a (Lcom/google/gson/JsonObject;Lecr;Lcom/google/gson/JsonSerializationContext;)V m_6170_ + 0 o p_82013_ + 1 o p_82014_ + 2 o p_82015_ + a (Lcom/google/gson/JsonObject;Ljava/lang/Object;Lcom/google/gson/JsonSerializationContext;)V m_6170_ + 0 o p_82017_ + 1 o p_82018_ + 2 o p_82019_ + b (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;)Lecr; m_7561_ + 0 o p_82021_ + 1 o p_82022_ +ecs net/minecraft/world/level/storage/loot/predicates/TimeCheck + a f_82023_ + b f_82024_ + (Ljava/lang/Long;Ldzj;)V + 0 o p_165507_ + 1 o p_165508_ + a (Ldzj;)Lecs$a; m_165509_ + static + 0 o p_165510_ + a (Ldzk;)Z test + 0 o p_82033_ + a ()Ljava/util/Set; m_6231_ + b ()Lecl; m_7940_ + test (Ljava/lang/Object;)Z test + 0 o p_82040_ +ecs$a net/minecraft/world/level/storage/loot/predicates/TimeCheck$Builder + a f_165512_ + b f_165513_ + (Ldzj;)V + 0 o p_165515_ + a ()Lecs; m_6409_ + a (J)Lecs$a; m_165516_ + 0 o p_165517_ + build ()Leck; m_6409_ +ecs$b net/minecraft/world/level/storage/loot/predicates/TimeCheck$Serializer + ()V + a (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;)Ljava/lang/Object; m_7561_ + 0 o p_82043_ + 1 o p_82044_ + a (Lcom/google/gson/JsonObject;Ljava/lang/Object;Lcom/google/gson/JsonSerializationContext;)V m_6170_ + 0 o p_82050_ + 1 o p_82051_ + 2 o p_82052_ + a (Lcom/google/gson/JsonObject;Lecs;Lcom/google/gson/JsonSerializationContext;)V m_6170_ + 0 o p_82046_ + 1 o p_82047_ + 2 o p_82048_ + b (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;)Lecs; m_7561_ + 0 o p_82054_ + 1 o p_82055_ +ect net/minecraft/world/level/storage/loot/predicates/ValueCheckCondition + a f_165520_ + b f_165521_ + (Ledf;Ldzj;)V + 0 o p_165523_ + 1 o p_165524_ + a (Ldzk;)Z test + 0 o p_165527_ + a (Ledf;Ldzj;)Leck$a; m_165528_ + static + 0 o p_165529_ + 1 o p_165530_ + a ()Ljava/util/Set; m_6231_ + b ()Lecl; m_7940_ + b (Ledf;Ldzj;)Leck; m_165532_ + static + 0 o p_165533_ + 1 o p_165534_ + test (Ljava/lang/Object;)Z test + 0 o p_165536_ +ect$a net/minecraft/world/level/storage/loot/predicates/ValueCheckCondition$Serializer + ()V + a (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;)Ljava/lang/Object; m_7561_ + 0 o p_165539_ + 1 o p_165540_ + a (Lcom/google/gson/JsonObject;Lect;Lcom/google/gson/JsonSerializationContext;)V m_6170_ + 0 o p_165542_ + 1 o p_165543_ + 2 o p_165544_ + a (Lcom/google/gson/JsonObject;Ljava/lang/Object;Lcom/google/gson/JsonSerializationContext;)V m_6170_ + 0 o p_165546_ + 1 o p_165547_ + 2 o p_165548_ + b (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;)Lect; m_7561_ + 0 o p_165550_ + 1 o p_165551_ +ecu net/minecraft/world/level/storage/loot/predicates/WeatherCheck + a f_82056_ + b f_82057_ + (Ljava/lang/Boolean;Ljava/lang/Boolean;)V + 0 o p_82059_ + 1 o p_82060_ + a (Ldzk;)Z test + 0 o p_82066_ + b ()Lecl; m_7940_ + c ()Lecu$a; m_165552_ + static + test (Ljava/lang/Object;)Z test + 0 o p_82073_ +ecu$a net/minecraft/world/level/storage/loot/predicates/WeatherCheck$Builder + a f_165553_ + b f_165554_ + ()V + a (Ljava/lang/Boolean;)Lecu$a; m_165556_ + 0 o p_165557_ + a ()Lecu; m_6409_ + b (Ljava/lang/Boolean;)Lecu$a; m_165559_ + 0 o p_165560_ + build ()Leck; m_6409_ +ecu$b net/minecraft/world/level/storage/loot/predicates/WeatherCheck$Serializer + ()V + a (Lcom/google/gson/JsonObject;Lecu;Lcom/google/gson/JsonSerializationContext;)V m_6170_ + 0 o p_82079_ + 1 o p_82080_ + 2 o p_82081_ + a (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;)Ljava/lang/Object; m_7561_ + 0 o p_82076_ + 1 o p_82077_ + a (Lcom/google/gson/JsonObject;Ljava/lang/Object;Lcom/google/gson/JsonSerializationContext;)V m_6170_ + 0 o p_82083_ + 1 o p_82084_ + 2 o p_82085_ + b (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;)Lecu; m_7561_ + 0 o p_82087_ + 1 o p_82088_ +ecv net/minecraft/world/level/storage/loot/predicates/package-info +ecw net/minecraft/world/level/storage/loot/providers/nbt/ContextNbtProvider + a f_165562_ + b f_165563_ + c f_165564_ + d f_165565_ + ()V + static + (Lecw$a;)V + 0 o p_165568_ + a (Ljava/lang/String;)Lecw; m_165574_ + static + 0 o p_165575_ + a (Ldzk;)Lrk; m_142301_ + 0 o p_165573_ + a ()Lecx; m_142624_ + a (Ldzk$b;)Lecy; m_165570_ + static + 0 o p_165571_ + b (Ldzk$b;)Lecw$a; m_165577_ + static + 0 o p_165578_ + b ()Ljava/util/Set; m_142677_ +ecw$1 net/minecraft/world/level/storage/loot/providers/nbt/ContextNbtProvider$1 + ()V + a (Ldzk;)Lrk; m_142135_ + 0 o p_165582_ + a ()Ljava/lang/String; m_142016_ + b ()Ljava/util/Set; m_142524_ +ecw$2 net/minecraft/world/level/storage/loot/providers/nbt/ContextNbtProvider$2 + a f_165584_ + (Ldzk$b;)V + 0 o p_165586_ + a (Ldzk;)Lrk; m_142135_ + 0 o p_165589_ + a ()Ljava/lang/String; m_142016_ + b ()Ljava/util/Set; m_142524_ +ecw$a net/minecraft/world/level/storage/loot/providers/nbt/ContextNbtProvider$Getter + a (Ldzk;)Lrk; m_142135_ + 0 o p_165591_ + a ()Ljava/lang/String; m_142016_ + b ()Ljava/util/Set; m_142524_ +ecw$b net/minecraft/world/level/storage/loot/providers/nbt/ContextNbtProvider$InlineSerializer + ()V + a (Lcom/google/gson/JsonElement;Lcom/google/gson/JsonDeserializationContext;)Ljava/lang/Object; m_142268_ + 0 o p_165594_ + 1 o p_165595_ + a (Ljava/lang/Object;Lcom/google/gson/JsonSerializationContext;)Lcom/google/gson/JsonElement; m_142413_ + 0 o p_165600_ + 1 o p_165601_ + a (Lecw;Lcom/google/gson/JsonSerializationContext;)Lcom/google/gson/JsonElement; m_142413_ + 0 o p_165597_ + 1 o p_165598_ + b (Lcom/google/gson/JsonElement;Lcom/google/gson/JsonDeserializationContext;)Lecw; m_142268_ + 0 o p_165603_ + 1 o p_165604_ +ecw$c net/minecraft/world/level/storage/loot/providers/nbt/ContextNbtProvider$Serializer + ()V + a (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;)Ljava/lang/Object; m_7561_ + 0 o p_165607_ + 1 o p_165608_ + a (Lcom/google/gson/JsonObject;Lecw;Lcom/google/gson/JsonSerializationContext;)V m_6170_ + 0 o p_165610_ + 1 o p_165611_ + 2 o p_165612_ + a (Lcom/google/gson/JsonObject;Ljava/lang/Object;Lcom/google/gson/JsonSerializationContext;)V m_6170_ + 0 o p_165614_ + 1 o p_165615_ + 2 o p_165616_ + b (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;)Lecw; m_7561_ + 0 o p_165618_ + 1 o p_165619_ +ecx net/minecraft/world/level/storage/loot/providers/nbt/LootNbtProviderType + (Ldzt;)V + 0 o p_165621_ +ecy net/minecraft/world/level/storage/loot/providers/nbt/NbtProvider + a (Ldzk;)Lrk; m_142301_ + 0 o p_165622_ + a ()Lecx; m_142624_ + b ()Ljava/util/Set; m_142677_ +ecz net/minecraft/world/level/storage/loot/providers/nbt/NbtProviders + a f_165623_ + b f_165624_ + ()V + static + ()V + a (Ljava/lang/String;Ldzt;)Lecx; m_165628_ + static + 0 o p_165629_ + 1 o p_165630_ + a ()Ljava/lang/Object; m_165627_ + static +ed net/minecraft/commands/arguments/GameModeArgument + a f_257050_ + b f_256868_ + c f_256859_ + ()V + static + ()V + a ()Led; m_257772_ + static + a (Ljava/lang/Object;)Lcom/mojang/brigadier/Message; m_257624_ + static + 0 o p_260119_ + a (Lcom/mojang/brigadier/context/CommandContext;Ljava/lang/String;)Lcmj; m_257804_ + static + 0 o p_259927_ + 1 o p_260246_ + a (Lcom/mojang/brigadier/StringReader;)Lcmj; parse + 0 o p_260111_ + getExamples ()Ljava/util/Collection; getExamples + listSuggestions (Lcom/mojang/brigadier/context/CommandContext;Lcom/mojang/brigadier/suggestion/SuggestionsBuilder;)Ljava/util/concurrent/CompletableFuture; listSuggestions + 0 o p_259767_ + 1 o p_259515_ + parse (Lcom/mojang/brigadier/StringReader;)Ljava/lang/Object; parse + 0 o p_259420_ +eda net/minecraft/world/level/storage/loot/providers/nbt/StorageNbtProvider + a f_165631_ + (Lacq;)V + 0 o p_165633_ + a (Ldzk;)Lrk; m_142301_ + 0 o p_165636_ + a ()Lecx; m_142624_ + b ()Ljava/util/Set; m_142677_ +eda$a net/minecraft/world/level/storage/loot/providers/nbt/StorageNbtProvider$Serializer + ()V + a (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;)Ljava/lang/Object; m_7561_ + 0 o p_165640_ + 1 o p_165641_ + a (Lcom/google/gson/JsonObject;Leda;Lcom/google/gson/JsonSerializationContext;)V m_6170_ + 0 o p_165643_ + 1 o p_165644_ + 2 o p_165645_ + a (Lcom/google/gson/JsonObject;Ljava/lang/Object;Lcom/google/gson/JsonSerializationContext;)V m_6170_ + 0 o p_165647_ + 1 o p_165648_ + 2 o p_165649_ + b (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;)Leda; m_7561_ + 0 o p_165651_ + 1 o p_165652_ +edb net/minecraft/world/level/storage/loot/providers/nbt/package-info +edc net/minecraft/world/level/storage/loot/providers/number/BinomialDistributionGenerator + a f_165653_ + b f_165654_ + (Ledf;Ledf;)V + 0 o p_165656_ + 1 o p_165657_ + a (IF)Ledc; m_165659_ + static + 0 o p_165660_ + 1 o p_165661_ + a ()Ljava/util/Set; m_6231_ + a (Ldzk;)I m_142683_ + 0 o p_165663_ + b (Ldzk;)F m_142688_ + 0 o p_165666_ + b ()Lede; m_142587_ +edc$a net/minecraft/world/level/storage/loot/providers/number/BinomialDistributionGenerator$Serializer + ()V + a (Lcom/google/gson/JsonObject;Ledc;Lcom/google/gson/JsonSerializationContext;)V m_6170_ + 0 o p_165672_ + 1 o p_165673_ + 2 o p_165674_ + a (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;)Ljava/lang/Object; m_7561_ + 0 o p_165669_ + 1 o p_165670_ + a (Lcom/google/gson/JsonObject;Ljava/lang/Object;Lcom/google/gson/JsonSerializationContext;)V m_6170_ + 0 o p_165676_ + 1 o p_165677_ + 2 o p_165678_ + b (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;)Ledc; m_7561_ + 0 o p_165680_ + 1 o p_165681_ +edd net/minecraft/world/level/storage/loot/providers/number/ConstantValue + a f_165688_ + (F)V + 0 o p_165690_ + a (F)Ledd; m_165692_ + static + 0 o p_165693_ + b (Ldzk;)F m_142688_ + 0 o p_165695_ + b ()Lede; m_142587_ + equals (Ljava/lang/Object;)Z equals + 0 o p_165697_ + hashCode ()I hashCode +edd$a net/minecraft/world/level/storage/loot/providers/number/ConstantValue$InlineSerializer + ()V + a (Lcom/google/gson/JsonElement;Lcom/google/gson/JsonDeserializationContext;)Ljava/lang/Object; m_142268_ + 0 o p_165701_ + 1 o p_165702_ + a (Ljava/lang/Object;Lcom/google/gson/JsonSerializationContext;)Lcom/google/gson/JsonElement; m_142413_ + 0 o p_165707_ + 1 o p_165708_ + a (Ledd;Lcom/google/gson/JsonSerializationContext;)Lcom/google/gson/JsonElement; m_142413_ + 0 o p_165704_ + 1 o p_165705_ + b (Lcom/google/gson/JsonElement;Lcom/google/gson/JsonDeserializationContext;)Ledd; m_142268_ + 0 o p_165710_ + 1 o p_165711_ +edd$b net/minecraft/world/level/storage/loot/providers/number/ConstantValue$Serializer + ()V + a (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;)Ljava/lang/Object; m_7561_ + 0 o p_165714_ + 1 o p_165715_ + a (Lcom/google/gson/JsonObject;Ledd;Lcom/google/gson/JsonSerializationContext;)V m_6170_ + 0 o p_165717_ + 1 o p_165718_ + 2 o p_165719_ + a (Lcom/google/gson/JsonObject;Ljava/lang/Object;Lcom/google/gson/JsonSerializationContext;)V m_6170_ + 0 o p_165721_ + 1 o p_165722_ + 2 o p_165723_ + b (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;)Ledd; m_7561_ + 0 o p_165725_ + 1 o p_165726_ +ede net/minecraft/world/level/storage/loot/providers/number/LootNumberProviderType + (Ldzt;)V + 0 o p_165728_ +edf net/minecraft/world/level/storage/loot/providers/number/NumberProvider + a (Ldzk;)I m_142683_ + 0 o p_165729_ + b (Ldzk;)F m_142688_ + 0 o p_165730_ + b ()Lede; m_142587_ +edg net/minecraft/world/level/storage/loot/providers/number/NumberProviders + a f_165731_ + b f_165732_ + c f_165733_ + d f_165734_ + ()V + static + ()V + a (Ljava/lang/String;Ldzt;)Lede; m_165738_ + static + 0 o p_165739_ + 1 o p_165740_ + a ()Ljava/lang/Object; m_165737_ + static +edh net/minecraft/world/level/storage/loot/providers/number/ScoreboardValue + a f_165741_ + b f_165742_ + c f_165743_ + (Ledn;Ljava/lang/String;F)V + 0 o p_165745_ + 1 o p_165746_ + 2 o p_165747_ + a (Ldzk$b;Ljava/lang/String;)Ledh; m_165749_ + static + 0 o p_165750_ + 1 o p_165751_ + a (Ldzk$b;Ljava/lang/String;F)Ledh; m_165752_ + static + 0 o p_165753_ + 1 o p_165754_ + 2 o p_165755_ + a ()Ljava/util/Set; m_6231_ + b (Ldzk;)F m_142688_ + 0 o p_165758_ + b ()Lede; m_142587_ +edh$a net/minecraft/world/level/storage/loot/providers/number/ScoreboardValue$Serializer + ()V + a (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;)Ljava/lang/Object; m_7561_ + 0 o p_165761_ + 1 o p_165762_ + a (Lcom/google/gson/JsonObject;Ljava/lang/Object;Lcom/google/gson/JsonSerializationContext;)V m_6170_ + 0 o p_165768_ + 1 o p_165769_ + 2 o p_165770_ + a (Lcom/google/gson/JsonObject;Ledh;Lcom/google/gson/JsonSerializationContext;)V m_6170_ + 0 o p_165764_ + 1 o p_165765_ + 2 o p_165766_ + b (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;)Ledh; m_7561_ + 0 o p_165772_ + 1 o p_165773_ +edi net/minecraft/world/level/storage/loot/providers/number/UniformGenerator + a f_165774_ + b f_165775_ + (Ledf;Ledf;)V + 0 o p_165777_ + 1 o p_165778_ + a (FF)Ledi; m_165780_ + static + 0 o p_165781_ + 1 o p_165782_ + a ()Ljava/util/Set; m_6231_ + a (Ldzk;)I m_142683_ + 0 o p_165784_ + b (Ldzk;)F m_142688_ + 0 o p_165787_ + b ()Lede; m_142587_ +edi$a net/minecraft/world/level/storage/loot/providers/number/UniformGenerator$Serializer + ()V + a (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;)Ljava/lang/Object; m_7561_ + 0 o p_165790_ + 1 o p_165791_ + a (Lcom/google/gson/JsonObject;Ledi;Lcom/google/gson/JsonSerializationContext;)V m_6170_ + 0 o p_165793_ + 1 o p_165794_ + 2 o p_165795_ + a (Lcom/google/gson/JsonObject;Ljava/lang/Object;Lcom/google/gson/JsonSerializationContext;)V m_6170_ + 0 o p_165797_ + 1 o p_165798_ + 2 o p_165799_ + b (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;)Ledi; m_7561_ + 0 o p_165801_ + 1 o p_165802_ +edj net/minecraft/world/level/storage/loot/providers/number/package-info +edk net/minecraft/world/level/storage/loot/providers/score/ContextScoreboardNameProvider + a f_165803_ + (Ldzk$b;)V + 0 o p_165805_ + a (Ldzk$b;)Ledn; m_165807_ + static + 0 o p_165808_ + a ()Ledm; m_142680_ + a (Ldzk;)Ljava/lang/String; m_142600_ + 0 o p_165810_ + b ()Ljava/util/Set; m_142636_ +edk$a net/minecraft/world/level/storage/loot/providers/score/ContextScoreboardNameProvider$InlineSerializer + ()V + a (Ledk;Lcom/google/gson/JsonSerializationContext;)Lcom/google/gson/JsonElement; m_142413_ + 0 o p_165817_ + 1 o p_165818_ + a (Lcom/google/gson/JsonElement;Lcom/google/gson/JsonDeserializationContext;)Ljava/lang/Object; m_142268_ + 0 o p_165814_ + 1 o p_165815_ + a (Ljava/lang/Object;Lcom/google/gson/JsonSerializationContext;)Lcom/google/gson/JsonElement; m_142413_ + 0 o p_165820_ + 1 o p_165821_ + b (Lcom/google/gson/JsonElement;Lcom/google/gson/JsonDeserializationContext;)Ledk; m_142268_ + 0 o p_165823_ + 1 o p_165824_ +edk$b net/minecraft/world/level/storage/loot/providers/score/ContextScoreboardNameProvider$Serializer + ()V + a (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;)Ljava/lang/Object; m_7561_ + 0 o p_165827_ + 1 o p_165828_ + a (Lcom/google/gson/JsonObject;Ledk;Lcom/google/gson/JsonSerializationContext;)V m_6170_ + 0 o p_165830_ + 1 o p_165831_ + 2 o p_165832_ + a (Lcom/google/gson/JsonObject;Ljava/lang/Object;Lcom/google/gson/JsonSerializationContext;)V m_6170_ + 0 o p_165834_ + 1 o p_165835_ + 2 o p_165836_ + b (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;)Ledk; m_7561_ + 0 o p_165838_ + 1 o p_165839_ +edl net/minecraft/world/level/storage/loot/providers/score/FixedScoreboardNameProvider + a f_165840_ + (Ljava/lang/String;)V + 0 o p_165842_ + a (Ljava/lang/String;)Ledn; m_165846_ + static + 0 o p_165847_ + a ()Ledm; m_142680_ + a (Ldzk;)Ljava/lang/String; m_142600_ + 0 o p_165845_ + b ()Ljava/util/Set; m_142636_ + c ()Ljava/lang/String; m_165849_ +edl$a net/minecraft/world/level/storage/loot/providers/score/FixedScoreboardNameProvider$Serializer + ()V + a (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;)Ljava/lang/Object; m_7561_ + 0 o p_165852_ + 1 o p_165853_ + a (Lcom/google/gson/JsonObject;Ljava/lang/Object;Lcom/google/gson/JsonSerializationContext;)V m_6170_ + 0 o p_165859_ + 1 o p_165860_ + 2 o p_165861_ + a (Lcom/google/gson/JsonObject;Ledl;Lcom/google/gson/JsonSerializationContext;)V m_6170_ + 0 o p_165855_ + 1 o p_165856_ + 2 o p_165857_ + b (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonDeserializationContext;)Ledl; m_7561_ + 0 o p_165863_ + 1 o p_165864_ +edm net/minecraft/world/level/storage/loot/providers/score/LootScoreProviderType + (Ldzt;)V + 0 o p_165866_ +edn net/minecraft/world/level/storage/loot/providers/score/ScoreboardNameProvider + a ()Ledm; m_142680_ + a (Ldzk;)Ljava/lang/String; m_142600_ + 0 o p_165867_ + b ()Ljava/util/Set; m_142636_ +edo net/minecraft/world/level/storage/loot/providers/score/ScoreboardNameProviders + a f_165868_ + b f_165869_ + ()V + static + ()V + a (Ljava/lang/String;Ldzt;)Ledm; m_165873_ + static + 0 o p_165874_ + 1 o p_165875_ + a ()Ljava/lang/Object; m_165872_ + static +edp net/minecraft/world/level/storage/loot/providers/score/package-info +edq net/minecraft/world/level/storage/package-info +edr net/minecraft/world/level/timers/FunctionCallback + a f_82162_ + (Lacq;)V + 0 o p_82164_ + a (Lade;Ldn;)V m_82175_ + static + 0 o p_82176_ + 1 o p_82177_ + a (Lnet/minecraft/server/MinecraftServer;Ledv;J)V m_5821_ + 0 o p_82172_ + 1 o p_82173_ + 2 o p_82174_ + handle (Ljava/lang/Object;Ledv;J)V m_5821_ + 0 o p_82168_ + 1 o p_82169_ + 2 o p_82170_ +edr$a net/minecraft/world/level/timers/FunctionCallback$Serializer + ()V + a (Lqr;Ledr;)V m_6585_ + 0 o p_82182_ + 1 o p_82183_ + a (Lqr;Ledt;)V m_6585_ + 0 o p_82185_ + 1 o p_82186_ + a (Lqr;)Ledr; m_6006_ + 0 o p_82180_ + b (Lqr;)Ledt; m_6006_ + 0 o p_82188_ +eds net/minecraft/world/level/timers/FunctionTagCallback + a f_82189_ + (Lacq;)V + 0 o p_82191_ + a (Lnet/minecraft/server/MinecraftServer;Ledv;J)V m_5821_ + 0 o p_82199_ + 1 o p_82200_ + 2 o p_82201_ + handle (Ljava/lang/Object;Ledv;J)V m_5821_ + 0 o p_82195_ + 1 o p_82196_ + 2 o p_82197_ +eds$a net/minecraft/world/level/timers/FunctionTagCallback$Serializer + ()V + a (Lqr;Leds;)V m_6585_ + 0 o p_82206_ + 1 o p_82207_ + a (Lqr;Ledt;)V m_6585_ + 0 o p_82209_ + 1 o p_82210_ + a (Lqr;)Leds; m_6006_ + 0 o p_82204_ + b (Lqr;)Ledt; m_6006_ + 0 o p_82212_ +edt net/minecraft/world/level/timers/TimerCallback + handle (Ljava/lang/Object;Ledv;J)V m_5821_ + 0 o p_82213_ + 1 o p_82214_ + 2 o p_82215_ +edt$a net/minecraft/world/level/timers/TimerCallback$Serializer + a f_82216_ + b f_82217_ + (Lacq;Ljava/lang/Class;)V + 0 o p_82219_ + 1 o p_82220_ + a (Lqr;Ledt;)V m_6585_ + 0 o p_82222_ + 1 o p_82223_ + a ()Lacq; m_82221_ + b (Lqr;)Ledt; m_6006_ + 0 o p_82225_ + b ()Ljava/lang/Class; m_82224_ +edu net/minecraft/world/level/timers/TimerCallbacks + a f_82226_ + b f_82227_ + c f_82228_ + d f_82229_ + ()V + static + ()V + a (Ljava/lang/Class;)Ledt$a; m_82236_ + 0 o p_82237_ + a (Lqr;)Ledt; m_82238_ + 0 o p_82239_ + a (Ledt;)Lqr; m_82234_ + 0 o p_82235_ + a (Ledt$a;)Ledu; m_82232_ + 0 o p_82233_ +edv net/minecraft/world/level/timers/TimerQueue + a f_82240_ + b f_165876_ + c f_165877_ + d f_165878_ + e f_82241_ + f f_82242_ + g f_82243_ + h f_82244_ + ()V + static + (Ledu;Ljava/util/stream/Stream;)V + 0 o p_82249_ + 1 o p_82250_ + (Ledu;)V + 0 o p_82247_ + a (Ljava/lang/String;JLedt;)V m_82261_ + 0 o p_82262_ + 1 o p_82263_ + 2 o p_82264_ + a (Lqr;)V m_82265_ + 0 o p_82266_ + a (Ljava/lang/String;)I m_82259_ + 0 o p_82260_ + a (Lcom/mojang/serialization/Dynamic;)V m_264030_ + 0 o p_265027_ + a ()Ljava/util/Set; m_82251_ + a (Ledv$a;)Lqr; m_82254_ + 0 o p_82255_ + a (Ljava/lang/Object;J)V m_82256_ + 0 o p_82257_ + 1 o p_82258_ + b ()Lqx; m_82267_ + b (Ledv$a;)Lcom/google/common/primitives/UnsignedLong; m_82268_ + static + 0 o p_82269_ + c (Ledv$a;)J m_82271_ + static + 0 o p_82272_ + c ()Ljava/util/Comparator; m_82270_ + static +edv$a net/minecraft/world/level/timers/TimerQueue$Event + a f_82273_ + b f_82274_ + c f_82275_ + d f_82276_ + (JLcom/google/common/primitives/UnsignedLong;Ljava/lang/String;Ledt;)V + 0 o p_82278_ + 1 o p_82279_ + 2 o p_82280_ + 3 o p_82281_ +edw net/minecraft/world/level/timers/package-info +edx net/minecraft/world/level/validation/ContentValidationException + a f_289822_ + b f_289835_ + (Ljava/nio/file/Path;Ljava/util/List;)V + 0 o p_289932_ + 1 o p_289984_ + a (Ljava/nio/file/Path;Ljava/util/List;)Ljava/lang/String; m_289907_ + static + 0 o p_289929_ + 1 o p_289979_ + a (Ledz;)Ljava/lang/String; m_289904_ + static + 0 o p_289919_ + getMessage ()Ljava/lang/String; getMessage +edy net/minecraft/world/level/validation/DirectoryValidator + a f_289823_ + (Leea;)V + 0 o p_289976_ + a (Ljava/nio/file/Path;Z)Ljava/util/List; m_289885_ + 0 o p_289943_ + 1 o p_289926_ + a (Ljava/nio/file/Path;Ljava/util/List;)V m_289900_ + 0 o p_289934_ + 1 o p_289972_ +edy$1 net/minecraft/world/level/validation/DirectoryValidator$1 + a f_289831_ + b f_289834_ + (Ledy;Ljava/util/List;)V + 0 o p_289923_ + 1 o p_289951_ + a (Ljava/nio/file/Path;Ljava/nio/file/attribute/BasicFileAttributes;)Ljava/nio/file/FileVisitResult; preVisitDirectory + 0 o p_289946_ + 1 o p_289950_ + b (Ljava/nio/file/Path;Ljava/nio/file/attribute/BasicFileAttributes;)Ljava/nio/file/FileVisitResult; visitFile + 0 o p_289986_ + 1 o p_289991_ + c (Ljava/nio/file/Path;Ljava/nio/file/attribute/BasicFileAttributes;)V m_289903_ + 0 o p_289935_ + 1 o p_289941_ + preVisitDirectory (Ljava/lang/Object;Ljava/nio/file/attribute/BasicFileAttributes;)Ljava/nio/file/FileVisitResult; preVisitDirectory + 0 o p_289990_ + 1 o p_289928_ + visitFile (Ljava/lang/Object;Ljava/nio/file/attribute/BasicFileAttributes;)Ljava/nio/file/FileVisitResult; visitFile + 0 o p_289957_ + 1 o p_289965_ +edz net/minecraft/world/level/validation/ForbiddenSymlinkInfo + a f_289826_ + b f_289840_ + (Ljava/nio/file/Path;Ljava/nio/file/Path;)V + 0 o f_289826_ + 1 o f_289840_ + a ()Ljava/nio/file/Path; f_289826_ + b ()Ljava/nio/file/Path; f_289840_ + equals (Ljava/lang/Object;)Z equals + 0 o p_289970_ + hashCode ()I hashCode + toString ()Ljava/lang/String; toString +ee net/minecraft/commands/arguments/GameProfileArgument + a f_94580_ + b f_94581_ + ()V + static + ()V + a (Lcom/mojang/brigadier/StringReader;)Lee$a; parse + 0 o p_94586_ + a ()Lee; m_94584_ + static + a (Lcom/mojang/brigadier/context/CommandContext;Ljava/lang/String;)Ljava/util/Collection; m_94590_ + static + 0 o p_94591_ + 1 o p_94592_ + a (Lcom/mojang/brigadier/context/CommandContext;Lcom/mojang/brigadier/suggestion/SuggestionsBuilder;)V m_94587_ + static + 0 o p_94588_ + 1 o p_94589_ + a (Ljava/lang/String;Lds;)Ljava/util/Collection; m_94593_ + static + 0 o p_94594_ + 1 o p_94595_ + getExamples ()Ljava/util/Collection; getExamples + listSuggestions (Lcom/mojang/brigadier/context/CommandContext;Lcom/mojang/brigadier/suggestion/SuggestionsBuilder;)Ljava/util/concurrent/CompletableFuture; listSuggestions + 0 o p_94598_ + 1 o p_94599_ + parse (Lcom/mojang/brigadier/StringReader;)Ljava/lang/Object; parse + 0 o p_94601_ +ee$a net/minecraft/commands/arguments/GameProfileArgument$Result + getNames (Lds;)Ljava/util/Collection; m_6474_ + 0 o p_94602_ +ee$b net/minecraft/commands/arguments/GameProfileArgument$SelectorResult + a f_94603_ + (Lga;)V + 0 o p_94605_ + getNames (Lds;)Ljava/util/Collection; m_6474_ + 0 o p_94607_ +eea net/minecraft/world/level/validation/PathAllowList + a f_289832_ + b f_289821_ + c f_289820_ + d f_289818_ + ()V + static + (Ljava/util/List;)V + 0 o p_289956_ + a (Ljava/lang/String;)Ljava/util/stream/Stream; m_289846_ + static + 0 o p_289962_ + a (Ljava/nio/file/FileSystem;)Ljava/nio/file/PathMatcher; m_289852_ + 0 o p_289975_ + a (Ljava/io/BufferedReader;)Leea; m_289888_ + static + 0 o p_289921_ + a (Ljava/util/List;Ljava/nio/file/Path;)Z m_289899_ + static + 0 o p_289952_ + 1 o p_289927_ + a (Ljava/nio/file/FileSystem;Ljava/lang/String;)Ljava/nio/file/PathMatcher; m_289896_ + 0 o p_289969_ + 1 o p_289958_ + a (Ljava/nio/file/Path;)Z m_289909_ + static + 0 o p_289982_ + a (Ljava/nio/file/FileSystem;Leea$a;)Ljava/nio/file/PathMatcher; m_289847_ + static + 0 o p_289930_ + 1 o p_289937_ + b (Ljava/nio/file/Path;)Z m_289878_ + static + 0 o p_289987_ + matches (Ljava/nio/file/Path;)Z matches + 0 o p_289964_ +eea$a net/minecraft/world/level/validation/PathAllowList$ConfigEntry + a f_289830_ + b f_289839_ + (Leea$b;Ljava/lang/String;)V + 0 o f_289830_ + 1 o f_289839_ + a (Ljava/lang/String;)Ljava/util/Optional; m_289870_ + static + 0 o p_289947_ + a ()Leea$b; f_289830_ + a (Ljava/nio/file/FileSystem;)Ljava/nio/file/PathMatcher; m_289895_ + 0 o p_289936_ + b ()Ljava/lang/String; f_289839_ + b (Ljava/lang/String;)Leea$a; m_289843_ + static + 0 o p_289983_ + c (Ljava/lang/String;)Leea$a; m_289886_ + static + 0 o p_289944_ + d (Ljava/lang/String;)Leea$a; m_289845_ + static + 0 o p_289918_ + equals (Ljava/lang/Object;)Z equals + 0 o p_289959_ + hashCode ()I hashCode + toString ()Ljava/lang/String; toString +eea$b net/minecraft/world/level/validation/PathAllowList$EntryType + a f_289828_ + b f_289838_ + ()V + static + a (Ljava/lang/String;Ljava/nio/file/Path;)Z m_289860_ + static + 0 o p_289966_ + 1 o p_289955_ + a (Ljava/nio/file/FileSystem;Ljava/lang/String;)Ljava/nio/file/PathMatcher; m_289851_ + static + 0 o p_289949_ + 1 o p_289938_ + compile (Ljava/nio/file/FileSystem;Ljava/lang/String;)Ljava/nio/file/PathMatcher; m_289905_ + 0 o p_289924_ + 1 o p_289948_ +eeb net/minecraft/world/level/validation/package-info +eec net/minecraft/world/package-info +eed net/minecraft/world/phys/AABB + a f_82288_ + b f_82289_ + c f_82290_ + d f_82291_ + e f_82292_ + f f_82293_ + g f_165879_ + (Lgu;)V + 0 o p_82305_ + (DDDDDD)V + 0 o p_82295_ + 1 o p_82296_ + 2 o p_82297_ + 3 o p_82298_ + 4 o p_82299_ + 5 o p_82300_ + (Leei;Leei;)V + 0 o p_82302_ + 1 o p_82303_ + (Lgu;Lgu;)V + 0 o p_82307_ + 1 o p_82308_ + a (Ljava/lang/Iterable;Leei;Leei;Lgu;)Leee; m_82342_ + static + 0 o p_82343_ + 1 o p_82344_ + 2 o p_82345_ + 3 o p_82346_ + a ()D m_82309_ + a (Lha$a;)D m_82340_ + 0 o p_82341_ + a (Lgu;)Leed; m_82338_ + 0 o p_82339_ + a (Leei;)Leed; m_82333_ + static + 0 o p_82334_ + a (Leed;)Leed; m_82323_ + 0 o p_82324_ + a (DDDDDD)Z m_82314_ + 0 o p_82315_ + 1 o p_82316_ + 2 o p_82317_ + 3 o p_82318_ + 4 o p_82319_ + 5 o p_82320_ + a (Leei;Leei;)Z m_82335_ + 0 o p_82336_ + 1 o p_82337_ + a (Leei;DDD)Leed; m_165882_ + static + 0 o p_165883_ + 1 o p_165884_ + 2 o p_165885_ + 3 o p_165886_ + a ([DLha;DDDDDDDDLha;DDD)Lha; m_82347_ + static + 0 o p_82348_ + 1 o p_82349_ + 2 o p_82350_ + 3 o p_82351_ + 4 o p_82352_ + 5 o p_82353_ + 6 o p_82354_ + 7 o p_82355_ + 8 o p_82356_ + 9 o p_82357_ + 10 o p_82358_ + 11 o p_82359_ + 12 o p_82360_ + 13 o p_82361_ + a (DDD)Leed; m_82310_ + 0 o p_82311_ + 1 o p_82312_ + 2 o p_82313_ + a (D)Leed; m_165880_ + 0 o p_165881_ + a (Leed;Leei;[DLha;DDD)Lha; m_82325_ + static + 0 o p_82326_ + 1 o p_82327_ + 2 o p_82328_ + 3 o p_82329_ + 4 o p_82330_ + 5 o p_82331_ + 6 o p_82332_ + a (Ldrs;)Leed; m_82321_ + static + 0 o p_82322_ + b (Leei;Leei;)Ljava/util/Optional; m_82371_ + 0 o p_82372_ + 1 o p_82373_ + b (Leed;)Leed; m_82367_ + 0 o p_82368_ + b (Leei;)Leed; m_82369_ + 0 o p_82370_ + b (Lha$a;)D m_82374_ + 0 o p_82375_ + b (D)Leed; m_165887_ + 0 o p_165888_ + b ()D m_82362_ + b (DDD)Leed; m_82363_ + 0 o p_82364_ + 1 o p_82365_ + 2 o p_82366_ + c ()D m_82376_ + c (Leed;)Z m_82381_ + 0 o p_82382_ + c (D)Leed; m_165889_ + 0 o p_165890_ + c (DDD)Leed; m_82377_ + 0 o p_82378_ + 1 o p_82379_ + 2 o p_82380_ + c (Leei;)Leed; m_82383_ + 0 o p_82384_ + d ()D m_82385_ + d (D)Leed; m_165891_ + 0 o p_165892_ + d (DDD)Leed; m_82386_ + 0 o p_82387_ + 1 o p_82388_ + 2 o p_82389_ + d (Leei;)Z m_82390_ + 0 o p_82391_ + e (D)Leed; m_165893_ + 0 o p_165894_ + e ()Z m_82392_ + e (DDD)Z m_82393_ + 0 o p_82394_ + 1 o p_82395_ + 2 o p_82396_ + e (Leei;)D m_272282_ + 0 o p_273572_ + equals (Ljava/lang/Object;)Z equals + 0 o p_82398_ + f (D)Leed; m_165895_ + 0 o p_165896_ + f ()Leei; m_82399_ + f (DDD)Leed; m_165897_ + 0 o p_165898_ + 1 o p_165899_ + 2 o p_165900_ + g (D)Leed; m_82400_ + 0 o p_82401_ + h (D)Leed; m_82406_ + 0 o p_82407_ + hashCode ()I hashCode + toString ()Ljava/lang/String; toString +eee net/minecraft/world/phys/BlockHitResult + b f_82410_ + c f_82411_ + d f_82412_ + e f_82413_ + (Leei;Lha;Lgu;Z)V + 0 o p_82415_ + 1 o p_82416_ + 2 o p_82417_ + 3 o p_82418_ + (ZLeei;Lha;Lgu;Z)V + 0 o p_82420_ + 1 o p_82421_ + 2 o p_82422_ + 3 o p_82423_ + 4 o p_82424_ + a (Leei;Lha;Lgu;)Leee; m_82426_ + static + 0 o p_82427_ + 1 o p_82428_ + 2 o p_82429_ + a (Lgu;)Leee; m_82430_ + 0 o p_82431_ + a ()Lgu; m_82425_ + a (Lha;)Leee; m_82432_ + 0 o p_82433_ + b ()Lha; m_82434_ + c ()Leeg$a; m_6662_ + d ()Z m_82436_ +eef net/minecraft/world/phys/EntityHitResult + b f_82437_ + (Lbfj;Leei;)V + 0 o p_82441_ + 1 o p_82442_ + (Lbfj;)V + 0 o p_82439_ + a ()Lbfj; m_82443_ + c ()Leeg$a; m_6662_ +eeg net/minecraft/world/phys/HitResult + a f_82445_ + (Leei;)V + 0 o p_82447_ + a (Lbfj;)D m_82448_ + 0 o p_82449_ + c ()Leeg$a; m_6662_ + e ()Leei; m_82450_ +eeg$a net/minecraft/world/phys/HitResult$Type + a MISS + b BLOCK + c ENTITY + d $VALUES + ()V + static + (Ljava/lang/String;I)V + 0 o p_82457_ + 1 o p_82458_ + a ()[Leeg$a; m_165901_ + static + valueOf (Ljava/lang/String;)Leeg$a; valueOf + static + 0 o p_82460_ + values ()[Leeg$a; values + static +eeh net/minecraft/world/phys/Vec2 + a f_82462_ + b f_82463_ + c f_82464_ + d f_82465_ + e f_82466_ + f f_82467_ + g f_82468_ + h f_82469_ + i f_82470_ + j f_82471_ + ()V + static + (FF)V + 0 o p_82474_ + 1 o p_82475_ + a (F)Leeh; m_165903_ + 0 o p_165904_ + a (Leeh;)F m_165905_ + 0 o p_165906_ + a ()Leeh; m_165902_ + b (Leeh;)Leeh; m_165910_ + 0 o p_165911_ + b (F)Leeh; m_165908_ + 0 o p_165909_ + b ()F m_165907_ + c (Leeh;)Z m_82476_ + 0 o p_82477_ + c ()F m_165912_ + d (Leeh;)F m_165914_ + 0 o p_165915_ + d ()Leeh; m_165913_ +eei net/minecraft/world/phys/Vec3 + a f_231074_ + b f_82478_ + c f_82479_ + d f_82480_ + e f_82481_ + ()V + static + (DDD)V + 0 o p_82484_ + 1 o p_82485_ + 2 o p_82486_ + (Lorg/joml/Vector3f;)V + 0 o p_253821_ + a (Lhz;)Leei; m_82528_ + static + 0 o p_82529_ + a (Leei;D)Leei; m_165921_ + 0 o p_165922_ + 1 o p_165923_ + a (DDD)Leei; m_82492_ + 0 o p_82493_ + 1 o p_82494_ + 2 o p_82495_ + a (I)Leei; m_82501_ + static + 0 o p_82502_ + a (Lha;D)Leei; m_231075_ + 0 o p_231076_ + 1 o p_231077_ + a (Lha$a;)D m_82507_ + 0 o p_82508_ + a (FF)Leei; m_82498_ + static + 0 o p_82499_ + 1 o p_82500_ + a (Lha$a;D)Leei; m_193103_ + 0 o p_193104_ + 1 o p_193105_ + a (Lho;D)Z m_82509_ + 0 o p_82510_ + 1 o p_82511_ + a (Ljava/util/List;)Lcom/mojang/serialization/DataResult; m_231078_ + static + 0 o p_231079_ + a (Leeh;)Leei; m_82503_ + static + 0 o p_82504_ + a (Ljava/util/EnumSet;)Leei; m_82517_ + 0 o p_82518_ + a (F)Leei; m_82496_ + 0 o p_82497_ + a (Lhz;D)Leei; m_82514_ + static + 0 o p_82515_ + 1 o p_82516_ + a (Lapf;F)Leei; m_272010_ + 0 o p_272810_ + 1 o p_273473_ + a (D)Leei; m_82490_ + 0 o p_82491_ + a ()D m_7096_ + a (Lhz;DDD)Leei; m_272021_ + static + 0 o p_272866_ + 1 o p_273680_ + 2 o p_273668_ + 3 o p_273687_ + a (Leei;)Leei; m_82505_ + 0 o p_82506_ + b (Leei;)D m_82526_ + 0 o p_82527_ + b (Ljava/util/List;)Leei; m_231080_ + static + 0 o p_231081_ + b (Lhz;)Leei; m_82512_ + static + 0 o p_82513_ + b (DDD)Leei; m_82520_ + 0 o p_82521_ + 1 o p_82522_ + 2 o p_82523_ + b ()D m_7098_ + b (F)Leei; m_82524_ + 0 o p_82525_ + c ()D m_7094_ + c (Lhz;)Leei; m_82539_ + static + 0 o p_82540_ + c (F)Leei; m_82535_ + 0 o p_82536_ + c (DDD)D m_82531_ + 0 o p_82532_ + 1 o p_82533_ + 2 o p_82534_ + c (Leei;)Leei; m_82537_ + 0 o p_82538_ + d (DDD)Leei; m_82542_ + 0 o p_82543_ + 1 o p_82544_ + 2 o p_82545_ + d ()Leei; m_82541_ + d (Leei;)Leei; m_82546_ + 0 o p_82547_ + e ()Leei; m_82548_ + e (Leei;)Leei; m_82549_ + 0 o p_82550_ + equals (Ljava/lang/Object;)Z equals + 0 o p_82552_ + f ()D m_82553_ + f (Leei;)D m_82554_ + 0 o p_82555_ + g ()D m_82556_ + g (Leei;)D m_82557_ + 0 o p_82558_ + h ()D m_165924_ + h (Leei;)Leei; m_82559_ + 0 o p_82560_ + hashCode ()I hashCode + i (Leei;)Ljava/util/List; m_231082_ + static + 0 o p_231083_ + i ()D m_165925_ + j ()Lorg/joml/Vector3f; m_252839_ + toString ()Ljava/lang/String; toString +eej net/minecraft/world/phys/package-info +eek net/minecraft/world/phys/shapes/ArrayVoxelShape + b f_82563_ + c f_82564_ + d f_82565_ + (Leer;[D[D[D)V + 0 o p_82572_ + 1 o p_82573_ + 2 o p_82574_ + 3 o p_82575_ + (Leer;Lit/unimi/dsi/fastutil/doubles/DoubleList;Lit/unimi/dsi/fastutil/doubles/DoubleList;Lit/unimi/dsi/fastutil/doubles/DoubleList;)V + 0 o p_82567_ + 1 o p_82568_ + 2 o p_82569_ + 3 o p_82570_ + a (Lha$a;)Lit/unimi/dsi/fastutil/doubles/DoubleList; m_7700_ + 0 o p_82577_ +eek$1 net/minecraft/world/phys/shapes/ArrayVoxelShape$1 + a f_82578_ + ()V + static +eel net/minecraft/world/phys/shapes/BitSetDiscreteVoxelShape + d f_82580_ + e f_82581_ + f f_82582_ + g f_82583_ + h f_82584_ + i f_82585_ + j f_82586_ + (III)V + 0 o p_82588_ + 1 o p_82589_ + 2 o p_82590_ + (Leer;)V + 0 o p_82602_ + a (IIIZ)V m_165942_ + 0 o p_165943_ + 1 o p_165944_ + 2 o p_165945_ + 3 o p_165946_ + a (Leeu;Leeu;Leem;Leer;Leer;Leel;[IIII)Z m_82662_ + static + 0 o p_82663_ + 1 o p_82664_ + 2 o p_82665_ + 3 o p_82666_ + 4 o p_82667_ + 5 o p_82668_ + 6 o p_82669_ + 7 o p_82670_ + 8 o p_82671_ + 9 o p_82672_ + a (III)I m_82604_ + 0 o p_82605_ + 1 o p_82606_ + 2 o p_82607_ + a (IIIIIIIII)Leel; m_165932_ + static + 0 o p_165933_ + 1 o p_165934_ + 2 o p_165935_ + 3 o p_165936_ + 4 o p_165937_ + 5 o p_165938_ + 6 o p_165939_ + 7 o p_165940_ + 8 o p_165941_ + a (IIIII)Z m_165926_ + 0 o p_165927_ + 1 o p_165928_ + 2 o p_165929_ + 3 o p_165930_ + 4 o p_165931_ + a ()Z m_6224_ + a (Lha$a;)I m_6538_ + 0 o p_82674_ + a (Leer;Leer$b;Z)V m_165963_ + static + 0 o p_165964_ + 1 o p_165965_ + 2 o p_165966_ + a (Leeu;Leem;Leer;ILeer;ILeel;I[I[ZIII)Z m_165967_ + static + 0 o p_165968_ + 1 o p_165969_ + 2 o p_165970_ + 3 o p_165971_ + 4 o p_165972_ + 5 o p_165973_ + 6 o p_165974_ + 7 o p_165975_ + 8 o p_165976_ + 9 o p_165977_ + 10 o p_165978_ + 11 o p_165979_ + 12 o p_165980_ + a (Leem;Leer;IILeer;IILeel;II[I[ZIII)Z m_165947_ + static + 0 o p_165948_ + 1 o p_165949_ + 2 o p_165950_ + 3 o p_165951_ + 4 o p_165952_ + 5 o p_165953_ + 6 o p_165954_ + 7 o p_165955_ + 8 o p_165956_ + 9 o p_165957_ + 10 o p_165958_ + 11 o p_165959_ + 12 o p_165960_ + 13 o p_165961_ + 14 o p_165962_ + a (IIII)Z m_82608_ + 0 o p_82609_ + 1 o p_82610_ + 2 o p_82611_ + 3 o p_82612_ + a (Leer;Leer;Leeu;Leeu;Leeu;Leem;)Leel; m_82641_ + static + 0 o p_82642_ + 1 o p_82643_ + 2 o p_82644_ + 3 o p_82645_ + 4 o p_82646_ + 5 o p_82647_ + b (Lha$a;)I m_6536_ + 0 o p_82680_ + b (IIII)V m_165981_ + 0 o p_165982_ + 1 o p_165983_ + 2 o p_165984_ + 3 o p_165985_ + b (III)Z m_6696_ + 0 o p_82676_ + 1 o p_82677_ + 2 o p_82678_ + c (III)V m_142703_ + 0 o p_165987_ + 1 o p_165988_ + 2 o p_165989_ +eem net/minecraft/world/phys/shapes/BooleanOp + a f_82681_ + b f_82682_ + c f_82683_ + d f_82684_ + e f_82685_ + f f_82686_ + g f_82687_ + h f_82688_ + i f_82689_ + j f_82690_ + k f_82691_ + l f_82692_ + m f_82693_ + n f_82694_ + o f_82695_ + p f_82696_ + ()V + static + a (ZZ)Z m_82698_ + static + 0 o p_82699_ + 1 o p_82700_ + apply (ZZ)Z m_82701_ + 0 o p_82702_ + 1 o p_82703_ + b (ZZ)Z m_82704_ + static + 0 o p_82705_ + 1 o p_82706_ + c (ZZ)Z m_82707_ + static + 0 o p_82708_ + 1 o p_82709_ + d (ZZ)Z m_82710_ + static + 0 o p_82711_ + 1 o p_82712_ + e (ZZ)Z m_82713_ + static + 0 o p_82714_ + 1 o p_82715_ + f (ZZ)Z m_82716_ + static + 0 o p_82717_ + 1 o p_82718_ + g (ZZ)Z m_82719_ + static + 0 o p_82720_ + 1 o p_82721_ + h (ZZ)Z m_82722_ + static + 0 o p_82723_ + 1 o p_82724_ + i (ZZ)Z m_82725_ + static + 0 o p_82726_ + 1 o p_82727_ + j (ZZ)Z m_82728_ + static + 0 o p_82729_ + 1 o p_82730_ + k (ZZ)Z m_82731_ + static + 0 o p_82732_ + 1 o p_82733_ + l (ZZ)Z m_82734_ + static + 0 o p_82735_ + 1 o p_82736_ + m (ZZ)Z m_82737_ + static + 0 o p_82738_ + 1 o p_82739_ + n (ZZ)Z m_82740_ + static + 0 o p_82741_ + 1 o p_82742_ + o (ZZ)Z m_82743_ + static + 0 o p_82744_ + 1 o p_82745_ + p (ZZ)Z m_82746_ + static + 0 o p_82747_ + 1 o p_82748_ +een net/minecraft/world/phys/shapes/CollisionContext + a (Lbfj;)Leen; m_82750_ + static + 0 o p_82751_ + a (Lefb;Lgu;Z)Z m_6513_ + 0 o p_82755_ + 1 o p_82756_ + 2 o p_82757_ + a (Lcfu;)Z m_7142_ + 0 o p_82752_ + a ()Leen; m_82749_ + static + a (Ldxe;Ldxe;)Z m_203682_ + 0 o p_205110_ + 1 o p_205111_ + b ()Z m_6226_ +eeo net/minecraft/world/phys/shapes/CubePointRange + a f_82758_ + (I)V + 0 o p_82760_ + getDouble (I)D getDouble + 0 o p_82762_ + size ()I size +eep net/minecraft/world/phys/shapes/CubeVoxelShape + (Leer;)V + 0 o p_82765_ + a (Lha$a;)Lit/unimi/dsi/fastutil/doubles/DoubleList; m_7700_ + 0 o p_82767_ + a (Lha$a;D)I m_6595_ + 0 o p_82769_ + 1 o p_82770_ +eeq net/minecraft/world/phys/shapes/DiscreteCubeMerger + a f_82771_ + b f_165991_ + c f_165992_ + (II)V + 0 o p_82776_ + 1 o p_82777_ + a (Leeu$a;)Z m_6200_ + 0 o p_82780_ + a ()Lit/unimi/dsi/fastutil/doubles/DoubleList; m_6241_ + size ()I size +eer net/minecraft/world/phys/shapes/DiscreteVoxelShape + a f_82781_ + b f_82782_ + c f_82783_ + d f_82784_ + ()V + static + (III)V + 0 o p_82787_ + 1 o p_82788_ + 2 o p_82789_ + a (Lha$a;II)I m_165994_ + 0 o p_165995_ + 1 o p_165996_ + 2 o p_165997_ + a (Leer$a;Lgs;)V m_82812_ + 0 o p_82813_ + 1 o p_82814_ + a (Leer$b;Lgs;Z)V m_82815_ + 0 o p_82816_ + 1 o p_82817_ + 2 o p_82818_ + a (Leer$a;)V m_82810_ + 0 o p_82811_ + a (Leer$b;Z)V m_82819_ + 0 o p_82820_ + 1 o p_82821_ + a ()Z m_6224_ + a (Lha$a;)I m_6538_ + 0 o p_82827_ + a (Lgs;III)Z m_82822_ + 0 o p_82823_ + 1 o p_82824_ + 2 o p_82825_ + 3 o p_82826_ + b (Lgs;III)Z m_82835_ + 0 o p_82836_ + 1 o p_82837_ + 2 o p_82838_ + 3 o p_82839_ + b (Lha$a;)I m_6536_ + 0 o p_82840_ + b (Leer$b;Z)V m_82832_ + 0 o p_82833_ + 1 o p_82834_ + b ()I m_82828_ + b (Lha$a;II)I m_82841_ + 0 o p_82842_ + 1 o p_82843_ + 2 o p_82844_ + b (III)Z m_6696_ + 0 o p_82829_ + 1 o p_82830_ + 2 o p_82831_ + c (III)V m_142703_ + 0 o p_165998_ + 1 o p_165999_ + 2 o p_166000_ + c ()I m_82845_ + c (Lha$a;)I m_82850_ + 0 o p_82851_ + d (III)Z m_82846_ + 0 o p_82847_ + 1 o p_82848_ + 2 o p_82849_ + d ()I m_82852_ +eer$a net/minecraft/world/phys/shapes/DiscreteVoxelShape$IntFaceConsumer + consume (Lha;III)V m_82853_ + 0 o p_82854_ + 1 o p_82855_ + 2 o p_82856_ + 3 o p_82857_ +eer$b net/minecraft/world/phys/shapes/DiscreteVoxelShape$IntLineConsumer + consume (IIIIII)V m_82858_ + 0 o p_82859_ + 1 o p_82860_ + 2 o p_82861_ + 3 o p_82862_ + 4 o p_82863_ + 5 o p_82864_ +ees net/minecraft/world/phys/shapes/EntityCollisionContext + a f_82865_ + b f_82866_ + c f_82867_ + d f_82868_ + e f_82869_ + f f_166002_ + ()V + static + (ZDLcfz;Ljava/util/function/Predicate;Lbfj;)V + 0 o p_198916_ + 1 o p_198917_ + 2 o p_198918_ + 3 o p_198919_ + 4 o p_198920_ + (Lbfj;)V + 0 o p_82872_ + a (Lefb;Lgu;Z)Z m_6513_ + 0 o p_82886_ + 1 o p_82887_ + 2 o p_82888_ + a (Ldxe;)Z m_205112_ + static + 0 o p_205113_ + a (Lcfu;)Z m_7142_ + 0 o p_82879_ + a (Ldxe;Ldxe;)Z m_203682_ + 0 o p_205115_ + 1 o p_205116_ + b (Ldxe;)Z m_205117_ + static + 0 o p_205118_ + b ()Z m_6226_ + c ()Lbfj; m_193113_ +ees$1 net/minecraft/world/phys/shapes/EntityCollisionContext$1 + (ZDLcfz;Ljava/util/function/Predicate;Lbfj;)V + 0 o p_198922_ + 1 o p_198923_ + 2 o p_198924_ + 3 o p_198925_ + 4 o p_198926_ + a (Lefb;Lgu;Z)Z m_6513_ + 0 o p_82898_ + 1 o p_82899_ + 2 o p_82900_ +eet net/minecraft/world/phys/shapes/IdenticalMerger + a f_82901_ + (Lit/unimi/dsi/fastutil/doubles/DoubleList;)V + 0 o p_82903_ + a (Leeu$a;)Z m_6200_ + 0 o p_82906_ + a ()Lit/unimi/dsi/fastutil/doubles/DoubleList; m_6241_ + size ()I size +eeu net/minecraft/world/phys/shapes/IndexMerger + a (Leeu$a;)Z m_6200_ + 0 o p_82907_ + a ()Lit/unimi/dsi/fastutil/doubles/DoubleList; m_6241_ + size ()I size +eeu$a net/minecraft/world/phys/shapes/IndexMerger$IndexConsumer + merge (III)Z m_82908_ + 0 o p_82909_ + 1 o p_82910_ + 2 o p_82911_ +eev net/minecraft/world/phys/shapes/IndirectMerger + a f_166021_ + b f_82997_ + c f_82998_ + d f_82999_ + e f_166022_ + ()V + static + (Lit/unimi/dsi/fastutil/doubles/DoubleList;Lit/unimi/dsi/fastutil/doubles/DoubleList;ZZ)V + 0 o p_83001_ + 1 o p_83002_ + 2 o p_83003_ + 3 o p_83004_ + a (Leeu$a;)Z m_6200_ + 0 o p_83007_ + a ()Lit/unimi/dsi/fastutil/doubles/DoubleList; m_6241_ + size ()I size +eew net/minecraft/world/phys/shapes/NonOverlappingMerger + a f_83008_ + b f_83009_ + c f_83010_ + (Lit/unimi/dsi/fastutil/doubles/DoubleList;Lit/unimi/dsi/fastutil/doubles/DoubleList;Z)V + 0 o p_83012_ + 1 o p_83013_ + 2 o p_83014_ + a (Leeu$a;)Z m_6200_ + 0 o p_83017_ + a (Leeu$a;III)Z m_83018_ + static + 0 o p_83019_ + 1 o p_83020_ + 2 o p_83021_ + 3 o p_83022_ + a ()Lit/unimi/dsi/fastutil/doubles/DoubleList; m_6241_ + b (Leeu$a;)Z m_83023_ + 0 o p_83024_ + getDouble (I)D getDouble + 0 o p_83026_ + size ()I size +eex net/minecraft/world/phys/shapes/OffsetDoubleList + a f_83028_ + b f_83029_ + (Lit/unimi/dsi/fastutil/doubles/DoubleList;D)V + 0 o p_83031_ + 1 o p_83032_ + getDouble (I)D getDouble + 0 o p_83034_ + size ()I size +eey net/minecraft/world/phys/shapes/Shapes + a f_166025_ + b f_166026_ + c f_83036_ + d f_83037_ + e f_83038_ + ()V + static + ()V + a ()Lefb; m_83040_ + static + a (Leeu;Leeu;Leeu;Leer;Leer;Leem;)Z m_83103_ + static + 0 o p_83104_ + 1 o p_83105_ + 2 o p_83106_ + 3 o p_83107_ + 4 o p_83108_ + 5 o p_83109_ + a (Lefb;Lefb;)Lefb; m_83110_ + static + 0 o p_83111_ + 1 o p_83112_ + a (DDDDDD)Lefb; m_83048_ + static + 0 o p_83049_ + 1 o p_83050_ + 2 o p_83051_ + 3 o p_83052_ + 4 o p_83053_ + 5 o p_83054_ + a (II)J m_83055_ + static + 0 o p_83056_ + 1 o p_83057_ + a (Leeu;Leem;Leer;ILeer;IIII)Z m_166039_ + static + 0 o p_166040_ + 1 o p_166041_ + 2 o p_166042_ + 3 o p_166043_ + 4 o p_166044_ + 5 o p_166045_ + 6 o p_166046_ + 7 o p_166047_ + 8 o p_166048_ + a (Leed;)Lefb; m_83064_ + static + 0 o p_83065_ + a (Lefb;Lha;)Lefb; m_83121_ + static + 0 o p_83122_ + 1 o p_83123_ + a (Lefb;Lefb;Leem;)Lefb; m_83113_ + static + 0 o p_83114_ + 1 o p_83115_ + 2 o p_83116_ + a (Lefb;Lefb;Lha;)Z m_83117_ + static + 0 o p_83118_ + 1 o p_83119_ + 2 o p_83120_ + a (ILit/unimi/dsi/fastutil/doubles/DoubleList;Lit/unimi/dsi/fastutil/doubles/DoubleList;ZZ)Leeu; m_83058_ + static + 0 o p_83059_ + 1 o p_83060_ + 2 o p_83061_ + 3 o p_83062_ + 4 o p_83063_ + a (Leem;Leer;IILeer;IIIII)Z m_166028_ + static + 0 o p_166029_ + 1 o p_166030_ + 2 o p_166031_ + 3 o p_166032_ + 4 o p_166033_ + 5 o p_166034_ + 6 o p_166035_ + 7 o p_166036_ + 8 o p_166037_ + 9 o p_166038_ + a (Lha$a;Leed;Ljava/lang/Iterable;D)D m_193135_ + static + 0 o p_193136_ + 1 o p_193137_ + 2 o p_193138_ + 3 o p_193139_ + a (Lefb;[Lefb;)Lefb; m_83124_ + static + 0 o p_83125_ + 1 o p_83126_ + a (DD)I m_83041_ + static + 0 o p_83042_ + 1 o p_83043_ + a (Leeu;Leeu;Leem;Leer;Leer;III)Z m_83094_ + static + 0 o p_83095_ + 1 o p_83096_ + 2 o p_83097_ + 3 o p_83098_ + 4 o p_83099_ + 5 o p_83100_ + 6 o p_83101_ + 7 o p_83102_ + b ()Lefb; m_83144_ + static + b (DDDDDD)Lefb; m_166049_ + static + 0 o p_166050_ + 1 o p_166051_ + 2 o p_166052_ + 3 o p_166053_ + 4 o p_166054_ + 5 o p_166055_ + b (Lefb;Lefb;Leem;)Lefb; m_83148_ + static + 0 o p_83149_ + 1 o p_83150_ + 2 o p_83151_ + b (Lefb;Lefb;Lha;)Z m_83152_ + static + 0 o p_83153_ + 1 o p_83154_ + 2 o p_83155_ + b (Lefb;Lefb;)Z m_83145_ + static + 0 o p_83146_ + 1 o p_83147_ + c (Lefb;Lefb;Leem;)Z m_83157_ + static + 0 o p_83158_ + 1 o p_83159_ + 2 o p_83160_ + c ()Leep; m_83156_ + static +eey$a net/minecraft/world/phys/shapes/Shapes$DoubleLineConsumer + consume (DDDDDD)V m_83161_ + 0 o p_83162_ + 1 o p_83163_ + 2 o p_83164_ + 3 o p_83165_ + 4 o p_83166_ + 5 o p_83167_ +eez net/minecraft/world/phys/shapes/SliceShape + b f_83168_ + c f_83169_ + d f_83170_ + ()V + static + (Lefb;Lha$a;I)V + 0 o p_83173_ + 1 o p_83174_ + 2 o p_83175_ + a (Lha$a;)Lit/unimi/dsi/fastutil/doubles/DoubleList; m_7700_ + 0 o p_83181_ + a (Leer;Lha$a;I)Leer; m_83176_ + static + 0 o p_83177_ + 1 o p_83178_ + 2 o p_83179_ +ef net/minecraft/commands/arguments/HeightmapTypeArgument + a f_273851_ + ()V + static + ()V + a ()Lef; m_274509_ + static + a (I)[Ldhk$a; m_274499_ + static + 0 o p_275295_ + a (Lcom/mojang/brigadier/context/CommandContext;Ljava/lang/String;)Ldhk$a; m_274370_ + static + 0 o p_275445_ + 1 o p_275449_ + a (Ljava/lang/String;)Ljava/lang/String; m_274434_ + 0 o p_275666_ + b ()[Ldhk$a; m_274452_ + static + b (Ljava/lang/String;)Ljava/lang/String; m_274454_ + static + 0 o p_275334_ +efa net/minecraft/world/phys/shapes/SubShape + d f_83182_ + e f_83183_ + f f_83184_ + g f_83185_ + h f_83186_ + i f_83187_ + j f_83188_ + (Leer;IIIIII)V + 0 o p_83190_ + 1 o p_83191_ + 2 o p_83192_ + 3 o p_83193_ + 4 o p_83194_ + 5 o p_83195_ + 6 o p_83196_ + a (Lha$a;I)I m_166056_ + 0 o p_166057_ + 1 o p_166058_ + a (Lha$a;)I m_6538_ + 0 o p_83204_ + b (Lha$a;)I m_6536_ + 0 o p_83210_ + b (III)Z m_6696_ + 0 o p_83206_ + 1 o p_83207_ + 2 o p_83208_ + c (III)V m_142703_ + 0 o p_166060_ + 1 o p_166061_ + 2 o p_166062_ +efb net/minecraft/world/phys/shapes/VoxelShape + a f_83211_ + b f_83212_ + (Leer;)V + 0 o p_83214_ + a ()Leed; m_83215_ + a (DLha$a;I)Z m_166063_ + 0 o p_166064_ + 1 o p_166065_ + 2 o p_166066_ + a (Leei;)Ljava/util/Optional; m_166067_ + 0 o p_166068_ + a (Leey$a;Lit/unimi/dsi/fastutil/doubles/DoubleList;Lit/unimi/dsi/fastutil/doubles/DoubleList;Lit/unimi/dsi/fastutil/doubles/DoubleList;IIIIII)V m_83234_ + static + 0 o p_83235_ + 1 o p_83236_ + 2 o p_83237_ + 3 o p_83238_ + 4 o p_83239_ + 5 o p_83240_ + 6 o p_83241_ + 7 o p_83242_ + 8 o p_83243_ + 9 o p_83244_ + a (Leei;[Leei;DDDDDD)V m_166069_ + static + 0 o p_166070_ + 1 o p_166071_ + 2 o p_166072_ + 3 o p_166073_ + 4 o p_166074_ + 5 o p_166075_ + 6 o p_166076_ + 7 o p_166077_ + a (Leey$a;IIIIII)V m_83226_ + 0 o p_83227_ + 1 o p_83228_ + 2 o p_83229_ + 3 o p_83230_ + 4 o p_83231_ + 5 o p_83232_ + 6 o p_83233_ + a (DDD)Lefb; m_83216_ + 0 o p_83217_ + 1 o p_83218_ + 2 o p_83219_ + a (Lha$a;)Lit/unimi/dsi/fastutil/doubles/DoubleList; m_7700_ + 0 o p_83249_ + a (Lha$a;DD)D m_166078_ + 0 o p_166079_ + 1 o p_166080_ + 2 o p_166081_ + a (Lha;)Lefb; m_83263_ + 0 o p_83264_ + a (Lgs;Leed;D)D m_83245_ + 0 o p_83246_ + 1 o p_83247_ + 2 o p_83248_ + a (Lha$a;Leed;D)D m_83259_ + 0 o p_83260_ + 1 o p_83261_ + 2 o p_83262_ + a (Lha$a;I)D m_83256_ + 0 o p_83257_ + 1 o p_83258_ + a (Lha$a;D)I m_6595_ + 0 o p_83250_ + 1 o p_83251_ + a (Leey$a;)V m_83224_ + 0 o p_83225_ + a (Leei;Leei;Lgu;)Leee; m_83220_ + 0 o p_83221_ + 1 o p_83222_ + 2 o p_83223_ + a (Ljava/util/List;DDDDDD)V m_83265_ + static + 0 o p_83266_ + 1 o p_83267_ + 2 o p_83268_ + 3 o p_83269_ + 4 o p_83270_ + 5 o p_83271_ + 6 o p_83272_ + a ([Lefb;DDDDDD)V m_83273_ + static + 0 o p_83274_ + 1 o p_83275_ + 2 o p_83276_ + 3 o p_83277_ + 4 o p_83278_ + 5 o p_83279_ + 6 o p_83280_ + b (Lha$a;DD)D m_83290_ + 0 o p_83291_ + 1 o p_83292_ + 2 o p_83293_ + b (Lha;)Lefb; m_83294_ + 0 o p_83295_ + b (Leey$a;)V m_83286_ + 0 o p_83287_ + b (Lha$a;)D m_83288_ + 0 o p_83289_ + b ()Z m_83281_ + c ()Lefb; m_83296_ + c (Lha$a;)D m_83297_ + 0 o p_83298_ + d ()Ljava/util/List; m_83299_ + toString ()Ljava/lang/String; toString +efc net/minecraft/world/phys/shapes/package-info +efd net/minecraft/world/scores/Objective + a f_83301_ + b f_83302_ + c f_83303_ + d f_83304_ + e f_83305_ + f f_83306_ + (Lefg;Ljava/lang/String;Lefj;Lsw;Lefj$a;)V + 0 o p_83308_ + 1 o p_83309_ + 2 o p_83310_ + 3 o p_83311_ + 4 o p_83312_ + a (Lsw;)V m_83316_ + 0 o p_83317_ + a (Lefj$a;)V m_83314_ + 0 o p_83315_ + a (Lts;)Lts; m_83318_ + 0 o p_83319_ + a ()Lefg; m_83313_ + b ()Ljava/lang/String; m_83320_ + c ()Lefj; m_83321_ + d ()Lsw; m_83322_ + e ()Lsw; m_83323_ + f ()Lefj$a; m_83324_ + g ()Lsw; m_83325_ +efe net/minecraft/world/scores/PlayerTeam + a f_166084_ + b f_166085_ + c f_83326_ + d f_83327_ + e f_83328_ + f f_83329_ + g f_83330_ + h f_83331_ + i f_83332_ + j f_83333_ + k f_83334_ + l f_83335_ + m f_83336_ + n f_83337_ + o f_83338_ + (Lefg;Ljava/lang/String;)V + 0 o p_83340_ + 1 o p_83341_ + a (Z)V m_83355_ + 0 o p_83356_ + a (Lefi$a;)V m_83344_ + 0 o p_83345_ + a ()Lefg; m_166086_ + a (I)V m_83342_ + 0 o p_83343_ + a (Lefi;Lsw;)Ltj; m_83348_ + static + 0 o p_83349_ + 1 o p_83350_ + a (Lsw;)V m_83353_ + 0 o p_83354_ + a (Lefi$b;)V m_83346_ + 0 o p_83347_ + a (Ln;)V m_83351_ + 0 o p_83352_ + b (Lefi$b;)V m_83358_ + 0 o p_83359_ + b (Z)V m_83362_ + 0 o p_83363_ + b ()Ljava/lang/String; m_5758_ + b (Lsw;)V m_83360_ + 0 o p_83361_ + c ()Lsw; m_83364_ + c (Lsw;)V m_83365_ + 0 o p_83366_ + d ()Ltj; m_83367_ + d (Lsw;)Ltj; m_6870_ + 0 o p_83369_ + e ()Lsw; m_83370_ + f ()Lsw; m_83371_ + g ()Ljava/util/Collection; m_6809_ + h ()Z m_6260_ + i ()Z m_6259_ + j ()Lefi$b; m_7470_ + k ()Lefi$b; m_7468_ + l ()Lefi$a; m_7156_ + m ()I m_83378_ + n ()Ln; m_7414_ +eff net/minecraft/world/scores/Score + a f_83380_ + b f_83381_ + c f_83382_ + d f_83383_ + e f_83384_ + f f_83385_ + g f_83386_ + ()V + static + (Lefg;Lefd;Ljava/lang/String;)V + 0 o p_83389_ + 1 o p_83390_ + 2 o p_83391_ + a (Leff;Leff;)I m_83395_ + static + 0 o p_83396_ + 1 o p_83397_ + a (I)V m_83393_ + 0 o p_83394_ + a (Z)V m_83398_ + 0 o p_83399_ + a ()V m_83392_ + b (I)V m_83402_ + 0 o p_83403_ + b ()I m_83400_ + c ()V m_83401_ + d ()Lefd; m_83404_ + e ()Ljava/lang/String; m_83405_ + f ()Lefg; m_83406_ + g ()Z m_83407_ +efg net/minecraft/world/scores/Scoreboard + a f_166087_ + b f_166088_ + c f_166089_ + d f_166090_ + e f_166091_ + f f_166092_ + g f_199933_ + h f_83408_ + i f_83409_ + j f_83410_ + k f_83411_ + l f_83412_ + m f_83413_ + n f_83414_ + ()V + static + ()V + a (Ljava/lang/String;Lefd;)V m_5973_ + 0 o p_83432_ + 1 o p_83433_ + a (Lqx;Leff;)V m_166094_ + static + 0 o p_166095_ + 1 o p_166096_ + a (Lefd;)V m_7092_ + 0 o p_83422_ + a (I)Lefd; m_83416_ + 0 o p_83417_ + a (Lqx;Ljava/util/Collection;)V m_83450_ + static + 0 o p_83451_ + 1 o p_83452_ + a (Lefj;Ljava/lang/String;Ljava/util/function/Consumer;)V m_83427_ + 0 o p_83428_ + 1 o p_83429_ + 2 o p_83430_ + a (Ljava/lang/String;)V m_7182_ + 0 o p_83431_ + a (Lefj;)Ljava/util/List; m_83425_ + static + 0 o p_83426_ + a (Leff;)V m_5734_ + 0 o p_83424_ + a (Ljava/util/function/Consumer;Ljava/lang/String;Lefd;)V m_83441_ + 0 o p_83442_ + 1 o p_83443_ + 2 o p_83444_ + a (Lbfj;)V m_83420_ + 0 o p_83421_ + a (Ljava/lang/String;Lefe;)Z m_6546_ + 0 o p_83434_ + 1 o p_83435_ + a (Ljava/lang/String;Lefj;Lsw;Lefj$a;)Lefd; m_83436_ + 0 o p_83437_ + 1 o p_83438_ + 2 o p_83439_ + 3 o p_83440_ + a (Lefe;)V m_7650_ + 0 o p_83423_ + a (ILefd;)V m_7136_ + 0 o p_83418_ + 1 o p_83419_ + a (Lqx;)V m_83445_ + 0 o p_83446_ + b (Lefe;)V m_7645_ + 0 o p_83456_ + b (Ljava/lang/String;Lefd;)Z m_83461_ + 0 o p_83462_ + 1 o p_83463_ + b (Leff;)Z m_166097_ + static + 0 o p_166098_ + b (I)Ljava/lang/String; m_83453_ + static + 0 o p_83454_ + b (Ljava/lang/String;)Z m_83459_ + 0 o p_83460_ + b (Lefd;)V m_7091_ + 0 o p_83455_ + b (Ljava/lang/String;Lefe;)V m_6519_ + 0 o p_83464_ + 1 o p_83465_ + c (Lefd;)V m_7093_ + 0 o p_83467_ + c ()Ljava/util/Collection; m_83466_ + c (Lefe;)V m_7644_ + 0 o p_83468_ + c (Ljava/lang/String;Lefd;)Leff; m_83471_ + 0 o p_83472_ + 1 o p_83473_ + c (Ljava/lang/String;)Lefd; m_83469_ + 0 o p_83470_ + d (Lefe;)V m_83475_ + 0 o p_83476_ + d ()Ljava/util/Collection; m_83474_ + d (Ljava/lang/String;Lefd;)V m_83479_ + 0 o p_83480_ + 1 o p_83481_ + d (Ljava/lang/String;)Lefd; m_83477_ + 0 o p_83478_ + e (Ljava/lang/String;Lefd;)Leff; m_83485_ + 0 o p_83486_ + 1 o p_83487_ + e ()Ljava/util/Collection; m_83482_ + e (Ljava/lang/String;)Ljava/util/Map; m_83483_ + 0 o p_83484_ + f (Ljava/lang/String;)Lefe; m_83489_ + 0 o p_83490_ + f ()Ljava/util/Collection; m_83488_ + g ()Ljava/util/Collection; m_83491_ + g (Ljava/lang/String;)Lefe; m_83492_ + 0 o p_83493_ + h (Ljava/lang/String;)Z m_83495_ + 0 o p_83496_ + h ()[Ljava/lang/String; m_83494_ + static + i (Lefd;)Ljava/util/Collection; m_83498_ + 0 o p_83499_ + i ()Lqx; m_83497_ + i (Ljava/lang/String;)Lefe; m_83500_ + 0 o p_83501_ + j (Lefd;)V m_83502_ + 0 o p_83503_ + j (Ljava/lang/String;)I m_83504_ + static + 0 o p_83505_ + k (Ljava/lang/String;)Ljava/util/Map; m_83506_ + static + 0 o p_83507_ +efh net/minecraft/world/scores/ScoreboardSaveData + a f_166099_ + b f_83509_ + (Lefg;)V + 0 o p_166101_ + a (Lefe;Lqx;)V m_83514_ + 0 o p_83515_ + 1 o p_83516_ + a (Lqr;Lefj;)V m_83521_ + 0 o p_83522_ + 1 o p_83523_ + a (Lqr;)Lqr; m_7176_ + 0 o p_83527_ + a (Lqx;)V m_83524_ + 0 o p_83525_ + a ()Lqx; m_83513_ + b (Lqr;)Lefh; m_166102_ + 0 o p_166103_ + b (Lqx;)V m_83528_ + 0 o p_83529_ + c (Lqr;)V m_83530_ + 0 o p_83531_ + d (Lqr;)V m_83532_ + 0 o p_83533_ + d ()Lqx; m_83534_ +efi net/minecraft/world/scores/Team + ()V + a (Lefi;)Z m_83536_ + 0 o p_83537_ + b ()Ljava/lang/String; m_5758_ + d (Lsw;)Ltj; m_6870_ + 0 o p_83538_ + g ()Ljava/util/Collection; m_6809_ + h ()Z m_6260_ + i ()Z m_6259_ + j ()Lefi$b; m_7470_ + k ()Lefi$b; m_7468_ + l ()Lefi$a; m_7156_ + n ()Ln; m_7414_ +efi$a net/minecraft/world/scores/Team$CollisionRule + a ALWAYS + b NEVER + c PUSH_OTHER_TEAMS + d PUSH_OWN_TEAM + e f_83543_ + f f_83544_ + g f_83545_ + h $VALUES + ()V + static + (Ljava/lang/String;ILjava/lang/String;I)V + 0 o p_83549_ + 1 o p_83550_ + 2 o p_83551_ + 3 o p_83552_ + a (Lefi$a;)Lefi$a; m_83553_ + static + 0 o p_83554_ + a (Ljava/lang/String;)Lefi$a; m_83555_ + static + 0 o p_83556_ + a ()Lsw; m_83557_ + b (Lefi$a;)Ljava/lang/String; m_83558_ + static + 0 o p_83559_ + b ()[Lefi$a; m_166104_ + static + valueOf (Ljava/lang/String;)Lefi$a; valueOf + static + 0 o p_83561_ + values ()[Lefi$a; values + static +efi$b net/minecraft/world/scores/Team$Visibility + a ALWAYS + b NEVER + c HIDE_FOR_OTHER_TEAMS + d HIDE_FOR_OWN_TEAM + e f_83567_ + f f_83568_ + g f_83569_ + h $VALUES + ()V + static + (Ljava/lang/String;ILjava/lang/String;I)V + 0 o p_83573_ + 1 o p_83574_ + 2 o p_83575_ + 3 o p_83576_ + a (Ljava/lang/String;)Lefi$b; m_83579_ + static + 0 o p_83580_ + a (Lefi$b;)Lefi$b; m_83577_ + static + 0 o p_83578_ + a ()[Ljava/lang/String; m_166105_ + static + b ()Lsw; m_83581_ + b (Lefi$b;)Ljava/lang/String; m_83582_ + static + 0 o p_83583_ + c ()[Lefi$b; m_166106_ + static + valueOf (Ljava/lang/String;)Lefi$b; valueOf + static + 0 o p_83585_ + values ()[Lefi$b; values + static +efj net/minecraft/world/scores/criteria/ObjectiveCriteria + a f_83588_ + b f_83589_ + c f_83590_ + d f_83591_ + e f_83592_ + f f_83593_ + g f_83594_ + h f_83595_ + i f_83596_ + j f_83597_ + k f_83598_ + l f_83599_ + m f_83600_ + n f_166107_ + o f_166108_ + p f_83601_ + q f_83602_ + r f_83603_ + ()V + static + (Ljava/lang/String;)V + 0 o p_83606_ + (Ljava/lang/String;ZLefj$a;)V + 0 o p_83608_ + 1 o p_83609_ + 2 o p_83610_ + a (Ljava/lang/String;)Ljava/util/Optional; m_83614_ + static + 0 o p_83615_ + a (Ljava/lang/String;ZLefj$a;)Lefj; m_166109_ + static + 0 o p_166110_ + 1 o p_166111_ + 2 o p_166112_ + a (Ljava/lang/String;ILamq;)Ljava/util/Optional; m_83616_ + static + 0 o p_83617_ + 1 o p_83618_ + 2 o p_83619_ + a (Lamq;Lacq;)Ljava/util/Optional; m_83611_ + static + 0 o p_83612_ + 1 o p_83613_ + b (Ljava/lang/String;)Lefj; m_166113_ + static + 0 o p_166114_ + c ()Ljava/util/Set; m_166115_ + static + d ()Ljava/lang/String; m_83620_ + e ()Z m_83621_ + f ()Lefj$a; m_83622_ +efj$a net/minecraft/world/scores/criteria/ObjectiveCriteria$RenderType + a INTEGER + b HEARTS + c f_262724_ + d f_83625_ + e $VALUES + ()V + static + (Ljava/lang/String;ILjava/lang/String;)V + 0 o p_83630_ + 1 o p_83631_ + 2 o p_83632_ + a (Ljava/lang/String;)Lefj$a; m_83634_ + static + 0 o p_83635_ + a ()Ljava/lang/String; m_83633_ + b ()[Lefj$a; m_166116_ + static + c ()Ljava/lang/String; m_7912_ + valueOf (Ljava/lang/String;)Lefj$a; valueOf + static + 0 o p_83637_ + values ()[Lefj$a; values + static +efk net/minecraft/world/scores/criteria/package-info +efl net/minecraft/world/scores/package-info +efm net/minecraft/world/ticks/BlackholeTickAccess + a f_193140_ + b f_193141_ + ()V + static + ()V + a ()Lefw; m_193144_ + static + b ()Lefp; m_193145_ + static +efm$1 net/minecraft/world/ticks/BlackholeTickAccess$1 + ()V + a (Left;)V m_183393_ + 0 o p_193149_ + a ()I m_183574_ + a (Lgu;Ljava/lang/Object;)Z m_183582_ + 0 o p_193151_ + 1 o p_193152_ +efm$2 net/minecraft/world/ticks/BlackholeTickAccess$2 + ()V + a (Left;)V m_183393_ + 0 o p_193156_ + a ()I m_183574_ + a (Lgu;Ljava/lang/Object;)Z m_183582_ + 0 o p_193158_ + 1 o p_193159_ + b (Lgu;Ljava/lang/Object;)Z m_183588_ + 0 o p_193161_ + 1 o p_193162_ +efn net/minecraft/world/ticks/ContainerSingleItem + a ()V m_6211_ + ab_ ()Z m_7983_ + ar_ ()Lcfz; m_272036_ + b (I)Lcfz; m_8016_ + 0 o p_273409_ + b (Lcfz;)V m_272287_ + 0 o p_273635_ + b ()I m_6643_ + j ()Lcfz; m_272108_ +efo net/minecraft/world/ticks/LevelChunkTicks + a f_193163_ + b f_193164_ + c f_193165_ + d f_193166_ + (Ljava/util/List;)V + 0 o p_193169_ + ()V + a ()I m_183574_ + a (Lqx;Ljava/util/function/Function;Lclt;)Lefo; m_193185_ + static + 0 o p_193186_ + 1 o p_193187_ + 2 o p_193188_ + a (Lgu;Ljava/lang/Object;)Z m_183582_ + 0 o p_193179_ + 1 o p_193180_ + a (Ljava/util/function/BiConsumer;)V m_193181_ + 0 o p_193182_ + a (Left;)V m_183393_ + 0 o p_193177_ + a (J)V m_193171_ + 0 o p_193172_ + a (JLjava/util/function/Function;)Lqx; m_183237_ + 0 o p_193174_ + 1 o p_193175_ + a (Ljava/util/function/Predicate;)V m_193183_ + 0 o p_193184_ + b (JLjava/util/function/Function;)Lrk; m_183237_ + 0 o p_193191_ + 1 o p_193192_ + b ()Left; m_193189_ + b (Left;)V m_193193_ + 0 o p_193194_ + c ()Left; m_193195_ + d ()Ljava/util/stream/Stream; m_193196_ +efp net/minecraft/world/ticks/LevelTickAccess + b (Lgu;Ljava/lang/Object;)Z m_183588_ + 0 o p_193197_ + 1 o p_193198_ +efq net/minecraft/world/ticks/LevelTicks + a f_193199_ + b f_193200_ + c f_193201_ + d f_193202_ + e f_193203_ + f f_193204_ + g f_193205_ + h f_193206_ + i f_193207_ + j f_193208_ + ()V + static + (Ljava/util/function/LongPredicate;Ljava/util/function/Supplier;)V + 0 o p_193211_ + 1 o p_193212_ + a (JILban;)V m_193221_ + 0 o p_193222_ + 1 o p_193223_ + 2 o p_193224_ + a (Ljava/util/function/Predicate;JLefo;)V m_193274_ + 0 o p_193275_ + 1 o p_193276_ + 2 o p_193277_ + a (Lclt;Lefo;)V m_193231_ + 0 o p_193232_ + 1 o p_193233_ + a ()I m_183574_ + a (Lclt;)V m_193229_ + 0 o p_193230_ + a (Lgu;Ljava/lang/Object;)Z m_183582_ + 0 o p_193254_ + 1 o p_193255_ + a (Ldrs;Lefq$a;)V m_193236_ + 0 o p_193237_ + 1 o p_193238_ + a (Lefo;Lefo;)I m_193245_ + static + 0 o p_193246_ + 1 o p_193247_ + a (Ljava/util/function/BiConsumer;)V m_193272_ + 0 o p_193273_ + a (Lhz;JJLeft;)V m_193256_ + 0 o p_193257_ + 1 o p_193258_ + 2 o p_193259_ + 3 o p_193260_ + a (Ldrs;Left;)Z m_200920_ + static + 0 o p_200921_ + 1 o p_200922_ + a (Left;)V m_183393_ + 0 o p_193252_ + a (Ljava/util/Queue;Lefo;JI)V m_193267_ + 0 o p_193268_ + 1 o p_193269_ + 2 o p_193270_ + 3 o p_193271_ + a (JILjava/util/function/BiConsumer;)V m_193225_ + 0 o p_193226_ + 1 o p_193227_ + 2 o p_193228_ + a (Ldrs;)V m_193234_ + 0 o p_193235_ + a (Lefq;Ldrs;Lhz;)V m_264560_ + 0 o p_265554_ + 1 o p_265172_ + 2 o p_265318_ + a (Ljava/util/function/Predicate;Ljava/util/List;JLefo;)V m_200928_ + static + 0 o p_200929_ + 1 o p_200930_ + 2 o p_200931_ + 3 o p_200932_ + a (Ldrs;Lhz;)V m_193242_ + 0 o p_193243_ + 1 o p_193244_ + a (JI)V m_193218_ + 0 o p_193219_ + 1 o p_193220_ + a (I)Z m_193214_ + 0 o p_193215_ + a (J)V m_193216_ + 0 o p_193217_ + a (Lefo;Left;)V m_193248_ + 0 o p_193249_ + 1 o p_193250_ + a (Lit/unimi/dsi/fastutil/longs/Long2LongOpenHashMap;)V m_193261_ + static + 0 o p_193262_ + b (Lgu;Ljava/lang/Object;)Z m_183588_ + 0 o p_193282_ + 1 o p_193283_ + b (Ldrs;Left;)Z m_193239_ + static + 0 o p_193240_ + 1 o p_193241_ + b (Left;)V m_193279_ + 0 o p_193280_ + b ()V m_193278_ + c (Left;)V m_193285_ + 0 o p_193286_ + c ()V m_193284_ + d ()V m_193287_ +efq$a net/minecraft/world/ticks/LevelTicks$PosAndContainerConsumer + accept (JLefo;)V m_193288_ + 0 o p_193289_ + 1 o p_193290_ +efr net/minecraft/world/ticks/ProtoChunkTicks + a f_193291_ + b f_193292_ + ()V + a (Lqx;Ljava/util/function/Function;Lclt;)Lefr; m_193302_ + static + 0 o p_193303_ + 1 o p_193304_ + 2 o p_193305_ + a (Left;)V m_183393_ + 0 o p_193298_ + a (Lefs;)V m_193295_ + 0 o p_193296_ + a ()I m_183574_ + a (Lgu;Ljava/lang/Object;)Z m_183582_ + 0 o p_193300_ + 1 o p_193301_ + b (JLjava/util/function/Function;)Lrk; m_183237_ + 0 o p_193308_ + 1 o p_193309_ + b ()Ljava/util/List; m_193306_ +efs net/minecraft/world/ticks/SavedTick + a f_193310_ + b f_193311_ + c f_193312_ + d f_193313_ + e f_193314_ + f f_193315_ + g f_193316_ + h f_193317_ + i f_193318_ + j f_193319_ + k f_193320_ + ()V + static + (Ljava/lang/Object;Lgu;ILefx;)V + 0 o f_193311_ + 1 o f_193312_ + 2 o f_193313_ + 3 o f_193314_ + a (Ljava/lang/Object;Lgu;)Lefs; m_193335_ + static + 0 o p_193336_ + 1 o p_193337_ + a (JJ)Left; m_193328_ + 0 o p_193329_ + 1 o p_193330_ + a (Lqr;Ljava/util/function/Function;)Ljava/util/Optional; m_210669_ + static + 0 o p_210670_ + 1 o p_210671_ + a (Ljava/util/function/Function;)Lqr; m_193343_ + 0 o p_193344_ + a (Ljava/lang/String;Lgu;ILefx;)Lqr; m_193338_ + static + 0 o p_193339_ + 1 o p_193340_ + 2 o p_193341_ + 3 o p_193342_ + a (Lqr;Ljava/lang/Object;)Lefs; m_210666_ + static + 0 o p_210667_ + 1 o p_210668_ + a (JLjava/util/function/Consumer;Lefs;)V m_210662_ + static + 0 o p_210663_ + 1 o p_210664_ + 2 o p_210665_ + a (Left;Ljava/util/function/Function;J)Lqr; m_193331_ + static + 0 o p_193332_ + 1 o p_193333_ + 2 o p_193334_ + a (Lqx;Ljava/util/function/Function;Lclt;Ljava/util/function/Consumer;)V m_193350_ + static + 0 o p_193351_ + 1 o p_193352_ + 2 o p_193353_ + 3 o p_193354_ + a ()Ljava/lang/Object; f_193311_ + b ()Lgu; f_193312_ + c ()I f_193313_ + d ()Lefx; f_193314_ + equals (Ljava/lang/Object;)Z equals + 0 o p_193359_ + hashCode ()I hashCode + toString ()Ljava/lang/String; toString +efs$1 net/minecraft/world/ticks/SavedTick$1 + ()V + a (Lefs;)I hashCode + 0 o p_193364_ + a (Lefs;Lefs;)Z equals + 0 o p_193366_ + 1 o p_193367_ + equals (Ljava/lang/Object;Ljava/lang/Object;)Z equals + 0 o p_193369_ + 1 o p_193370_ + hashCode (Ljava/lang/Object;)I hashCode + 0 o p_193372_ +eft net/minecraft/world/ticks/ScheduledTick + a f_193373_ + b f_193374_ + c f_193375_ + d f_193376_ + e f_193377_ + f f_193378_ + g f_193379_ + h f_193380_ + ()V + static + (Ljava/lang/Object;Lgu;JJ)V + 0 o p_193383_ + 1 o p_193384_ + 2 o p_193385_ + 3 o p_193386_ + (Ljava/lang/Object;Lgu;JLefx;J)V + 0 o f_193376_ + 1 o f_193377_ + 2 o f_193378_ + 3 o f_193379_ + 4 o f_193380_ + a (Left;Left;)I m_193394_ + static + 0 o p_193395_ + 1 o p_193396_ + a (Ljava/lang/Object;Lgu;)Left; m_193397_ + static + 0 o p_193398_ + 1 o p_193399_ + a ()Ljava/lang/Object; f_193376_ + b ()Lgu; f_193377_ + b (Left;Left;)I m_193405_ + static + 0 o p_193406_ + 1 o p_193407_ + c ()J f_193378_ + d ()Lefx; f_193379_ + e ()J f_193380_ + equals (Ljava/lang/Object;)Z equals + 0 o p_193412_ + hashCode ()I hashCode + toString ()Ljava/lang/String; toString +eft$1 net/minecraft/world/ticks/ScheduledTick$1 + ()V + a (Left;Left;)Z equals + 0 o p_193419_ + 1 o p_193420_ + a (Left;)I hashCode + 0 o p_193417_ + equals (Ljava/lang/Object;Ljava/lang/Object;)Z equals + 0 o p_193422_ + 1 o p_193423_ + hashCode (Ljava/lang/Object;)I hashCode + 0 o p_193425_ +efu net/minecraft/world/ticks/SerializableTickContainer + b (JLjava/util/function/Function;)Lrk; m_183237_ + 0 o p_193426_ + 1 o p_193427_ +efv net/minecraft/world/ticks/TickAccess + a (Left;)V m_183393_ + 0 o p_193428_ + a ()I m_183574_ + a (Lgu;Ljava/lang/Object;)Z m_183582_ + 0 o p_193429_ + 1 o p_193430_ +efw net/minecraft/world/ticks/TickContainerAccess +efx net/minecraft/world/ticks/TickPriority + a EXTREMELY_HIGH + b VERY_HIGH + c HIGH + d NORMAL + e LOW + f VERY_LOW + g EXTREMELY_LOW + h f_193438_ + i $VALUES + ()V + static + (Ljava/lang/String;II)V + 0 o p_193442_ + 1 o p_193443_ + 2 o p_193444_ + a (I)Lefx; m_193446_ + static + 0 o p_193447_ + a ()I m_193445_ + b ()[Lefx; m_193448_ + static + valueOf (Ljava/lang/String;)Lefx; valueOf + static + 0 o p_193450_ + values ()[Lefx; values + static +efy net/minecraft/world/ticks/WorldGenTickAccess + a f_193452_ + (Ljava/util/function/Function;)V + 0 o p_193454_ + a (Left;)V m_183393_ + 0 o p_193457_ + a ()I m_183574_ + a (Lgu;Ljava/lang/Object;)Z m_183582_ + 0 o p_193459_ + 1 o p_193460_ + b (Lgu;Ljava/lang/Object;)Z m_183588_ + 0 o p_193462_ + 1 o p_193463_ +efz net/minecraft/world/ticks/package-info +eg net/minecraft/commands/arguments/MessageArgument + a f_96829_ + ()V + static + ()V + a (Ljava/util/function/Consumer;Lds;Ltl;)V m_247736_ + static + 0 o p_250000_ + 1 o p_252335_ + 2 o p_249420_ + a (Ltl;Ljava/util/concurrent/CompletableFuture;Ljava/util/concurrent/CompletableFuture;Ljava/util/function/Consumer;Ljava/lang/Void;)V m_244749_ + static + 0 o p_247966_ + 1 o p_247967_ + 2 o p_247968_ + 3 o p_247969_ + 4 o p_247970_ + a ()Leg; m_96832_ + static + a (Lcom/mojang/brigadier/context/CommandContext;Ljava/lang/String;Ljava/util/function/Consumer;)V m_245478_ + static + 0 o p_249433_ + 1 o p_248718_ + 2 o p_249460_ + a (Ljava/util/concurrent/CompletableFuture;Ljava/util/function/Consumer;Ltl;Ljava/util/concurrent/Executor;)Ljava/util/concurrent/CompletableFuture; m_244750_ + static + 0 o p_247971_ + 1 o p_247972_ + 2 o p_247973_ + 3 o p_247974_ + a (Ljava/util/function/Consumer;Ltl;Lsw;)V m_244748_ + static + 0 o p_247963_ + 1 o p_247964_ + 2 o p_247965_ + a (Lds;Ltl;)Ljava/util/concurrent/CompletableFuture; m_246606_ + static + 0 o p_252063_ + 1 o p_251184_ + a (Lcom/mojang/brigadier/context/CommandContext;Ljava/lang/String;)Lsw; m_96835_ + static + 0 o p_96836_ + 1 o p_96837_ + a (Lcom/mojang/brigadier/StringReader;)Leg$a; parse + 0 o p_96834_ + a (Ljava/util/concurrent/CompletableFuture;Ljava/util/concurrent/CompletableFuture;Ltl;Ljava/util/function/Consumer;Ljava/util/concurrent/Executor;)Ljava/util/concurrent/CompletableFuture; m_244751_ + static + 0 o p_247975_ + 1 o p_247976_ + 2 o p_247977_ + 3 o p_247978_ + 4 o p_247979_ + b (Ljava/util/function/Consumer;Lds;Ltl;)V m_247098_ + static + 0 o p_249162_ + 1 o p_248759_ + 2 o p_252332_ + getExamples ()Ljava/util/Collection; getExamples + parse (Lcom/mojang/brigadier/StringReader;)Ljava/lang/Object; parse + 0 o p_96840_ +eg$a net/minecraft/commands/arguments/MessageArgument$Message + a f_96841_ + b f_96842_ + (Ljava/lang/String;[Leg$b;)V + 0 o p_96844_ + 1 o p_96845_ + a (Lcom/mojang/brigadier/StringReader;Z)Leg$a; m_96846_ + static + 0 o p_96847_ + 1 o p_96848_ + a (Lds;Z)Lsw; m_96849_ + 0 o p_96850_ + 1 o p_96851_ + a (Lds;)Lsw; m_232196_ + 0 o p_232197_ + a ()Ljava/lang/String; m_169112_ + b ()[Leg$b; m_169113_ +eg$b net/minecraft/commands/arguments/MessageArgument$Part + a f_96852_ + b f_96853_ + c f_96854_ + (IILga;)V + 0 o p_96856_ + 1 o p_96857_ + 2 o p_96858_ + a (Lds;)Lsw; m_96860_ + 0 o p_96861_ + a ()I m_96859_ + b ()I m_96862_ + c ()Lga; m_169114_ +ega com/mojang/blaze3d/Blaze3D + ()V + a (Legu;F)V m_166118_ + static + 0 o p_166119_ + 1 o p_166120_ + a ()V m_83639_ + static + b (Legu;F)V m_166121_ + static + 0 o p_166122_ + 1 o p_166123_ + b ()D m_83640_ + static +egb com/mojang/blaze3d/DontObfuscate +egc com/mojang/blaze3d/FieldsAreNonnullByDefault +egd com/mojang/blaze3d/MethodsReturnNonnullByDefault +ege com/mojang/blaze3d/audio/Channel + a f_166124_ + b f_83641_ + c f_166125_ + d f_83642_ + e f_83643_ + f f_83644_ + g f_83645_ + ()V + static + (I)V + 0 o p_83648_ + a (Ljavax/sound/sampled/AudioFormat;I)I m_83660_ + static + 0 o p_83661_ + 1 o p_83662_ + a (Z)V m_83663_ + 0 o p_83664_ + a ()Lege; m_83649_ + static + a (I)V m_83652_ + 0 o p_83653_ + a (F)V m_83650_ + 0 o p_83651_ + a (Legj;)V m_83656_ + 0 o p_83657_ + a (Lfyu;)V m_83658_ + 0 o p_83659_ + a (Leei;)V m_83654_ + 0 o p_83655_ + b (Z)V m_83670_ + 0 o p_83671_ + b (I)V m_83668_ + 0 o p_83669_ + b (F)V m_83666_ + 0 o p_83667_ + b ()V m_83665_ + c (F)V m_83673_ + 0 o p_83674_ + c (I)V m_83675_ + 0 o p_83676_ + c ()V m_83672_ + d ()V m_83677_ + e ()V m_83678_ + f ()V m_83679_ + g ()Z m_166126_ + h ()Z m_83680_ + i ()V m_83681_ + j ()V m_83682_ + k ()I m_83683_ + l ()I m_83684_ +egf com/mojang/blaze3d/audio/Library + a f_83685_ + b f_193464_ + c f_166128_ + d f_193465_ + e f_83687_ + f f_193466_ + g f_193467_ + h f_83688_ + i f_83689_ + j f_83690_ + k f_83691_ + ()V + static + ()V + a (Lege;)V m_83695_ + 0 o p_83696_ + a ()Ljava/lang/String; m_193468_ + static + a (Z)V m_241879_ + 0 o p_242278_ + a (Ljava/lang/String;)J m_193472_ + static + 0 o p_193473_ + a (Ljava/lang/String;Z)V m_231084_ + 0 o p_231085_ + 1 o p_231086_ + a (Legf$c;)Lege; m_83697_ + 0 o p_83698_ + b (Ljava/lang/String;)Ljava/util/OptionalLong; m_193475_ + static + 0 o p_193476_ + b ()Ljava/lang/String; m_193471_ + c ()Z m_193474_ + d ()V m_83699_ + e ()Legg; m_83700_ + f ()Ljava/lang/String; m_83701_ + g ()Ljava/util/List; m_193477_ + h ()Z m_193478_ + i ()I m_83703_ +egf$1 com/mojang/blaze3d/audio/Library$1 + ()V + a ()Lege; m_5574_ + a (Lege;)Z m_5658_ + 0 o p_83708_ + b ()V m_6471_ + c ()I m_6492_ + d ()I m_6500_ +egf$a com/mojang/blaze3d/audio/Library$ChannelPool + a ()Lege; m_5574_ + a (Lege;)Z m_5658_ + 0 o p_83712_ + b ()V m_6471_ + c ()I m_6492_ + d ()I m_6500_ +egf$b com/mojang/blaze3d/audio/Library$CountingChannelPool + a f_83713_ + b f_83714_ + (I)V + 0 o p_83716_ + a ()Lege; m_5574_ + a (Lege;)Z m_5658_ + 0 o p_83719_ + b ()V m_6471_ + c ()I m_6492_ + d ()I m_6500_ +egf$c com/mojang/blaze3d/audio/Library$Pool + a STATIC + b STREAMING + c $VALUES + ()V + static + (Ljava/lang/String;I)V + 0 o p_83728_ + 1 o p_83729_ + a ()[Legf$c; m_166129_ + static + valueOf (Ljava/lang/String;)Legf$c; valueOf + static + 0 o p_83731_ + values ()[Legf$c; values + static +egg com/mojang/blaze3d/audio/Listener + a f_83733_ + b f_83734_ + ()V + a (Lorg/joml/Vector3f;Lorg/joml/Vector3f;)V m_252991_ + 0 o p_254324_ + 1 o p_253810_ + a (Leei;)V m_83739_ + 0 o p_83740_ + a (F)V m_83737_ + 0 o p_83738_ + a ()Leei; m_83736_ + b ()F m_83744_ + c ()V m_83745_ +egh com/mojang/blaze3d/audio/OggAudioStream + a f_166130_ + b f_83746_ + c f_83747_ + d f_83748_ + e f_83749_ + (Ljava/io/InputStream;)V + 0 o p_83751_ + a (Legh$a;)Z m_83755_ + 0 o p_83756_ + a (Ljava/nio/FloatBuffer;Ljava/nio/FloatBuffer;Legh$a;)V m_83760_ + 0 o p_83761_ + 1 o p_83762_ + 2 o p_83763_ + a (Ljava/nio/FloatBuffer;Legh$a;)V m_83757_ + 0 o p_83758_ + 1 o p_83759_ + a ()Ljavax/sound/sampled/AudioFormat; m_6206_ + a (I)Ljava/nio/ByteBuffer; m_7118_ + 0 o p_83754_ + b ()Ljava/nio/ByteBuffer; m_83764_ + c ()Z m_83765_ + close ()V close + d ()V m_83767_ +egh$a com/mojang/blaze3d/audio/OggAudioStream$OutputConcat + a f_83768_ + b f_83769_ + c f_83770_ + d f_83771_ + (I)V + 0 o p_83773_ + a ()Ljava/nio/ByteBuffer; m_83774_ + a (F)V m_83775_ + 0 o p_83776_ + b ()V m_83779_ +egi com/mojang/blaze3d/audio/OpenAlUtil + a f_83780_ + ()V + static + ()V + a (Ljavax/sound/sampled/AudioFormat;)I m_83789_ + static + 0 o p_83790_ + a (JLjava/lang/String;)Z m_83784_ + static + 0 o p_83785_ + 1 o p_83786_ + a (I)Ljava/lang/String; m_83782_ + static + 0 o p_83783_ + a (Ljava/lang/String;)Z m_83787_ + static + 0 o p_83788_ + b (I)Ljava/lang/String; m_83791_ + static + 0 o p_83792_ +egj com/mojang/blaze3d/audio/SoundBuffer + a f_83793_ + b f_83794_ + c f_83795_ + d f_83796_ + (Ljava/nio/ByteBuffer;Ljavax/sound/sampled/AudioFormat;)V + 0 o p_83798_ + 1 o p_83799_ + a ()Ljava/util/OptionalInt; m_83800_ + b ()V m_83801_ + c ()Ljava/util/OptionalInt; m_83802_ +egk com/mojang/blaze3d/audio/package-info +egl com/mojang/blaze3d/font/GlyphInfo + a ()F m_5619_ + a (Z)F m_83827_ + 0 o p_83828_ + b ()F m_5645_ + bake (Ljava/util/function/Function;)Lerr; m_213604_ + 0 o p_231088_ + getAdvance ()F m_7403_ +egl$a com/mojang/blaze3d/font/GlyphInfo$SpaceGlyphInfo + bake (Ljava/util/function/Function;)Lerr; m_213604_ + 0 o p_231090_ +egm com/mojang/blaze3d/font/GlyphProvider + a ()Lit/unimi/dsi/fastutil/ints/IntSet; m_6990_ + a (I)Legl; m_214022_ + 0 o p_231091_ + close ()V close +egn com/mojang/blaze3d/font/SheetGlyphInfo + a (II)V m_213958_ + 0 o p_231092_ + 1 o p_231093_ + a ()I m_213962_ + b ()I m_213961_ + c ()Z m_213965_ + d ()F m_213963_ + e ()F m_231094_ + f ()F m_231095_ + g ()F m_231096_ + h ()F m_231097_ + i ()F m_213966_ + j ()F m_213964_ +ego com/mojang/blaze3d/font/SpaceProvider + a f_231098_ + (Ljava/util/Map;)V + 0 o p_286456_ + a ()Lit/unimi/dsi/fastutil/ints/IntSet; m_6990_ + a (Ljava/lang/Float;)F m_285664_ + static + 0 o p_286115_ + a (Ljava/lang/Integer;Ljava/lang/Float;)V m_285663_ + 0 o p_286113_ + 1 o p_286114_ + a (I)Legl; m_214022_ + 0 o p_231105_ +ego$a com/mojang/blaze3d/font/SpaceProvider$Definition + a f_285661_ + c f_285580_ + ()V + static + (Ljava/util/Map;)V + 0 o f_285580_ + a (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; m_286087_ + static + 0 o p_286766_ + a ()Lery; m_285843_ + a (Lakx;)Legm; m_285951_ + 0 o p_286243_ + b ()Lcom/mojang/datafixers/util/Either; m_285782_ + c ()Ljava/util/Map; f_285580_ + equals (Ljava/lang/Object;)Z equals + 0 o p_286537_ + hashCode ()I hashCode + toString ()Ljava/lang/String; toString +egp com/mojang/blaze3d/font/TrueTypeGlyphProvider + a f_83837_ + b f_83838_ + c f_83839_ + d f_83840_ + e f_83841_ + f f_83842_ + g f_83843_ + h f_83844_ + (Ljava/nio/ByteBuffer;Lorg/lwjgl/stb/STBTTFontinfo;FFFFLjava/lang/String;)V + 0 o p_83846_ + 1 o p_83847_ + 2 o p_83848_ + 3 o p_83849_ + 4 o p_83850_ + 5 o p_83851_ + 6 o p_83852_ + a ()Lit/unimi/dsi/fastutil/ints/IntSet; m_6990_ + a (F)F m_231113_ + 0 o p_231114_ + a (I)Legl; m_214022_ + 0 o p_231116_ + b ()Lorg/lwjgl/stb/STBTTFontinfo; m_287161_ + b (I)Z m_231117_ + 0 o p_231118_ + close ()V close +egp$a com/mojang/blaze3d/font/TrueTypeGlyphProvider$Glyph + a f_83873_ + b f_83874_ + c f_83875_ + d f_83876_ + e f_83877_ + f f_83878_ + g f_83879_ + (Legp;IIIIFFI)V + 0 o p_83881_ + 1 o p_83882_ + 2 o p_83883_ + 3 o p_83884_ + 4 o p_83885_ + 5 o p_83886_ + 6 o p_83887_ + 7 o p_83888_ + bake (Ljava/util/function/Function;)Lerr; m_213604_ + 0 o p_231120_ + getAdvance ()F m_7403_ +egp$a$1 com/mojang/blaze3d/font/TrueTypeGlyphProvider$Glyph$1 + a f_231121_ + (Legp$a;)V + 0 o p_231123_ + a (II)V m_213958_ + 0 o p_231126_ + 1 o p_231127_ + a ()I m_213962_ + b ()I m_213961_ + c ()Z m_213965_ + d ()F m_213963_ + i ()F m_213966_ + j ()F m_213964_ +egq com/mojang/blaze3d/font/package-info +egr com/mojang/blaze3d/package-info +egs com/mojang/blaze3d/pipeline/MainTarget + a f_166132_ + b f_166133_ + l f_166134_ + ()V + static + (II)V + 0 o p_166137_ + 1 o p_166138_ + a (Legs$b;)Z m_166139_ + 0 o p_166140_ + b (II)V m_166141_ + 0 o p_166142_ + 1 o p_166143_ + b (Legs$b;)Z m_166144_ + 0 o p_166145_ + c (II)Legs$b; m_166146_ + 0 o p_166147_ + 1 o p_166148_ + d (II)V m_166149_ + 0 o p_166150_ + 1 o p_166151_ +egs$a com/mojang/blaze3d/pipeline/MainTarget$AttachmentState + a NONE + b COLOR + c DEPTH + d COLOR_DEPTH + e f_166156_ + f $VALUES + ()V + static + (Ljava/lang/String;I)V + 0 o p_166160_ + 1 o p_166161_ + a (Legs$a;)Legs$a; m_166163_ + 0 o p_166164_ + a ()[Legs$a; m_166162_ + static + valueOf (Ljava/lang/String;)Legs$a; valueOf + static + 0 o p_166166_ + values ()[Legs$a; values + static +egs$b com/mojang/blaze3d/pipeline/MainTarget$Dimension + a f_166168_ + b f_166169_ + (II)V + 0 o p_166171_ + 1 o p_166172_ + a (II)Ljava/util/List; m_166173_ + static + 0 o p_166174_ + 1 o p_166175_ + equals (Ljava/lang/Object;)Z equals + 0 o p_166177_ + hashCode ()I hashCode + toString ()Ljava/lang/String; toString +egt com/mojang/blaze3d/pipeline/RenderCall + execute ()V m_83909_ +egu com/mojang/blaze3d/pipeline/RenderPipeline + a f_83910_ + b f_166180_ + c f_83911_ + d f_166181_ + e f_83912_ + f f_83913_ + ()V + a ()Z m_166182_ + a (Legt;)V m_166183_ + 0 o p_166184_ + b ()Z m_166185_ + c ()V m_166186_ + d ()Z m_166187_ + e ()Z m_166188_ + f ()V m_166189_ + g ()V m_166190_ + h ()Ljava/util/concurrent/ConcurrentLinkedQueue; m_166191_ + i ()Ljava/util/concurrent/ConcurrentLinkedQueue; m_166192_ + j ()Ljava/util/concurrent/ConcurrentLinkedQueue; m_166193_ +egv com/mojang/blaze3d/pipeline/RenderTarget + a f_166194_ + b f_166195_ + c f_83915_ + d f_83916_ + e f_83917_ + f f_83918_ + g f_83919_ + h f_83920_ + i f_83923_ + j f_83924_ + k f_83922_ + l f_166196_ + m f_166197_ + n f_83921_ + (Z)V + 0 o p_166199_ + a (II)V m_83938_ + 0 o p_83939_ + 1 o p_83940_ + a (Z)V m_83947_ + 0 o p_83948_ + a (Legv;)V m_83945_ + 0 o p_83946_ + a (FFFF)V m_83931_ + 0 o p_83932_ + 1 o p_83933_ + 2 o p_83934_ + 3 o p_83935_ + a ()V m_83930_ + a (IIZ)V m_83941_ + 0 o p_83942_ + 1 o p_83943_ + 2 o p_83944_ + a (I)V m_83936_ + 0 o p_83937_ + b (IIZ)V m_83950_ + 0 o p_83951_ + 1 o p_83952_ + 2 o p_83953_ + b (Z)V m_83954_ + 0 o p_83955_ + b ()V m_83949_ + c ()V m_83956_ + c (Z)V m_83961_ + 0 o p_83962_ + c (IIZ)V m_83957_ + 0 o p_83958_ + 1 o p_83959_ + 2 o p_83960_ + d (IIZ)V m_83964_ + 0 o p_83965_ + 1 o p_83966_ + 2 o p_83967_ + d (Z)V m_166200_ + 0 o p_166201_ + d ()V m_83963_ + e ()V m_83970_ + e (IIZ)V m_83971_ + 0 o p_83972_ + 1 o p_83973_ + 2 o p_83974_ + f (IIZ)V m_166202_ + 0 o p_166203_ + 1 o p_166204_ + 2 o p_166205_ + f ()I m_83975_ + g (IIZ)V m_166206_ + 0 o p_166207_ + 1 o p_166208_ + 2 o p_166209_ + g ()I m_83980_ + h ()V m_166210_ + static + i ()[F m_166211_ + static +egw com/mojang/blaze3d/pipeline/TextureTarget + (IIZZ)V + 0 o p_166213_ + 1 o p_166214_ + 2 o p_166215_ + 3 o p_166216_ +egx com/mojang/blaze3d/pipeline/package-info +egy com/mojang/blaze3d/platform/ClipboardManager + a f_166218_ + b f_83986_ + ()V + a (JLorg/lwjgl/glfw/GLFWErrorCallbackI;)Ljava/lang/String; m_83995_ + 0 o p_83996_ + 1 o p_83997_ + a (JLjava/lang/String;)V m_83988_ + 0 o p_83989_ + 1 o p_83990_ + a (JLjava/nio/ByteBuffer;[B)V m_83991_ + static + 0 o p_83992_ + 1 o p_83993_ + 2 o p_83994_ +egz com/mojang/blaze3d/platform/DebugMemoryUntracker + a f_83998_ + ()V + static + ()V + a (Lorg/lwjgl/system/Pointer;)V m_84003_ + static + 0 o p_84004_ + a (J)V m_84001_ + static + 0 o p_84002_ + a ()Ljava/lang/invoke/MethodHandle; m_84000_ + static +eh net/minecraft/commands/arguments/NbtPathArgument + a f_99482_ + b f_263133_ + c f_99483_ + d f_99484_ + e f_263135_ + f f_263128_ + g f_169530_ + h f_169531_ + i f_169532_ + j f_169533_ + k f_169534_ + l f_287792_ + ()V + static + ()V + a (Lcom/mojang/brigadier/context/CommandContext;Ljava/lang/String;)Leh$g; m_99498_ + static + 0 o p_99499_ + 1 o p_99500_ + a (Lcom/mojang/brigadier/StringReader;)Leh$g; parse + 0 o p_99491_ + a (C)Z m_99488_ + static + 0 o p_99489_ + a (Ljava/lang/Object;)Lcom/mojang/brigadier/Message; m_263143_ + static + 0 o p_263252_ + a ()Leh; m_99487_ + static + a (Lqr;Lrk;)Z m_99505_ + static + 0 o p_99506_ + 1 o p_99507_ + a (Lqr;)Ljava/util/function/Predicate; m_99510_ + static + 0 o p_99511_ + a (Lcom/mojang/brigadier/StringReader;Z)Leh$h; m_99495_ + static + 0 o p_99496_ + 1 o p_99497_ + a (Lcom/mojang/brigadier/StringReader;Ljava/lang/String;)Leh$h; m_99492_ + static + 0 o p_99493_ + 1 o p_99494_ + b (Ljava/lang/Object;)Lcom/mojang/brigadier/Message; m_263144_ + static + 0 o p_263253_ + b (Lcom/mojang/brigadier/StringReader;)Ljava/lang/String; m_99508_ + static + 0 o p_99509_ + c (Ljava/lang/Object;)Lcom/mojang/brigadier/Message; m_99501_ + static + 0 o p_99502_ + getExamples ()Ljava/util/Collection; getExamples + parse (Lcom/mojang/brigadier/StringReader;)Ljava/lang/Object; parse + 0 o p_99514_ +eh$a net/minecraft/commands/arguments/NbtPathArgument$AllElementsNode + a f_99515_ + ()V + static + ()V + a (Lrk;Ljava/util/List;)V m_7273_ + 0 o p_99522_ + 1 o p_99523_ + a ()Lrk; m_7510_ + a (Lrk;Ljava/util/function/Supplier;)I m_5571_ + 0 o p_99525_ + 1 o p_99526_ + a (Lrk;)I m_6015_ + 0 o p_99520_ + a (Lrk;Ljava/util/function/Supplier;Ljava/util/List;)V m_7876_ + 0 o p_99528_ + 1 o p_99529_ + 2 o p_99530_ +eh$b net/minecraft/commands/arguments/NbtPathArgument$CompoundChildNode + a f_99531_ + (Ljava/lang/String;)V + 0 o p_99533_ + a (Lrk;Ljava/util/List;)V m_7273_ + 0 o p_99538_ + 1 o p_99539_ + a ()Lrk; m_7510_ + a (Lrk;Ljava/util/function/Supplier;)I m_5571_ + 0 o p_99541_ + 1 o p_99542_ + a (Lrk;)I m_6015_ + 0 o p_99536_ + a (Lrk;Ljava/util/function/Supplier;Ljava/util/List;)V m_7876_ + 0 o p_99544_ + 1 o p_99545_ + 2 o p_99546_ +eh$c net/minecraft/commands/arguments/NbtPathArgument$IndexedElementNode + a f_99547_ + (I)V + 0 o p_99549_ + a (Lrk;Ljava/util/List;)V m_7273_ + 0 o p_99554_ + 1 o p_99555_ + a ()Lrk; m_7510_ + a (Lrk;Ljava/util/function/Supplier;)I m_5571_ + 0 o p_99557_ + 1 o p_99558_ + a (Lrk;)I m_6015_ + 0 o p_99552_ + a (Lrk;Ljava/util/function/Supplier;Ljava/util/List;)V m_7876_ + 0 o p_99560_ + 1 o p_99561_ + 2 o p_99562_ +eh$d net/minecraft/commands/arguments/NbtPathArgument$MatchElementNode + a f_99563_ + b f_99564_ + (Lqr;)V + 0 o p_99566_ + a (Ljava/util/List;Lorg/apache/commons/lang3/mutable/MutableBoolean;Lrk;)V m_99568_ + static + 0 o p_99569_ + 1 o p_99570_ + 2 o p_99571_ + a (Lrk;Ljava/util/List;)V m_7273_ + 0 o p_99575_ + 1 o p_99576_ + a ()Lrk; m_7510_ + a (Lrk;Ljava/util/function/Supplier;)I m_5571_ + 0 o p_99578_ + 1 o p_99579_ + a (Lrk;)I m_6015_ + 0 o p_99573_ + a (Lrk;Ljava/util/function/Supplier;Ljava/util/List;)V m_7876_ + 0 o p_99581_ + 1 o p_99582_ + 2 o p_99583_ +eh$e net/minecraft/commands/arguments/NbtPathArgument$MatchObjectNode + a f_99584_ + b f_99585_ + c f_99586_ + (Ljava/lang/String;Lqr;)V + 0 o p_99588_ + 1 o p_99589_ + a (Lrk;Ljava/util/List;)V m_7273_ + 0 o p_99594_ + 1 o p_99595_ + a ()Lrk; m_7510_ + a (Lrk;Ljava/util/function/Supplier;)I m_5571_ + 0 o p_99597_ + 1 o p_99598_ + a (Lrk;)I m_6015_ + 0 o p_99592_ + a (Lrk;Ljava/util/function/Supplier;Ljava/util/List;)V m_7876_ + 0 o p_99600_ + 1 o p_99601_ + 2 o p_99602_ +eh$f net/minecraft/commands/arguments/NbtPathArgument$MatchRootObjectNode + a f_99603_ + (Lqr;)V + 0 o p_99605_ + a (Lrk;Ljava/util/List;)V m_7273_ + 0 o p_99610_ + 1 o p_99611_ + a ()Lrk; m_7510_ + a (Lrk;Ljava/util/function/Supplier;)I m_5571_ + 0 o p_99613_ + 1 o p_99614_ + a (Lrk;)I m_6015_ + 0 o p_99608_ + a (Lrk;Ljava/util/function/Supplier;Ljava/util/List;)V m_7876_ + 0 o p_99616_ + 1 o p_99617_ + 2 o p_99618_ +eh$g net/minecraft/commands/arguments/NbtPathArgument$NbtPath + a f_99619_ + b f_99620_ + c f_99621_ + (Ljava/lang/String;[Leh$h;Lit/unimi/dsi/fastutil/objects/Object2IntMap;)V + 0 o p_99623_ + 1 o p_99624_ + 2 o p_99625_ + a (Lrk;I)Z m_263222_ + static + 0 o p_263392_ + 1 o p_263386_ + a (Lrk;)Ljava/util/List; m_99638_ + 0 o p_99639_ + a (Leh$h;)Lcom/mojang/brigadier/exceptions/CommandSyntaxException; m_99626_ + 0 o p_99627_ + a ()I m_263200_ + a (Lorg/apache/commons/lang3/mutable/MutableBoolean;Lrk;)Lrk; m_263145_ + static + 0 o p_263254_ + 1 o p_263255_ + a (Ljava/lang/Integer;Ljava/lang/Integer;)Ljava/lang/Integer; m_99632_ + static + 0 o p_99633_ + 1 o p_99634_ + a (Ljava/util/List;Ljava/util/function/Function;)I m_99635_ + static + 0 o p_99636_ + 1 o p_99637_ + a (Leh$h;Lorg/apache/commons/lang3/mutable/MutableBoolean;Lrk;Lrk;)Ljava/lang/Integer; m_263146_ + static + 0 o p_263256_ + 1 o p_263257_ + 2 o p_263258_ + 3 o p_263259_ + a (Lrk;Ljava/util/function/Supplier;)Ljava/util/List; m_99640_ + 0 o p_99641_ + 1 o p_99642_ + a (Lrk;Lrk;)I m_169535_ + 0 o p_169536_ + 1 o p_169537_ + a (ILqr;Ljava/util/List;)I m_263172_ + 0 o p_263397_ + 1 o p_263348_ + 2 o p_263419_ + b (Lrk;)I m_99643_ + 0 o p_99644_ + c (Lrk;)I m_99648_ + 0 o p_99649_ + d (Lrk;)Ljava/util/List; m_99650_ + 0 o p_99651_ + toString ()Ljava/lang/String; toString +eh$h net/minecraft/commands/arguments/NbtPathArgument$Node + a (Ljava/util/List;Ljava/util/function/Supplier;)Ljava/util/List; m_99658_ + 0 o p_99659_ + 1 o p_99660_ + a (Lrk;Ljava/util/List;)V m_7273_ + 0 o p_99666_ + 1 o p_99667_ + a (Ljava/util/List;)Ljava/util/List; m_99653_ + 0 o p_99654_ + a (Ljava/util/function/Supplier;Lrk;Ljava/util/List;)V m_99661_ + 0 o p_99662_ + 1 o p_99663_ + 2 o p_99664_ + a ()Lrk; m_7510_ + a (Lrk;Ljava/util/function/Supplier;)I m_5571_ + 0 o p_99668_ + 1 o p_99669_ + a (Lrk;)I m_6015_ + 0 o p_99665_ + a (Ljava/util/List;Ljava/util/function/BiConsumer;)Ljava/util/List; m_99655_ + 0 o p_99656_ + 1 o p_99657_ + a (Lrk;Ljava/util/function/Supplier;Ljava/util/List;)V m_7876_ + 0 o p_99670_ + 1 o p_99671_ + 2 o p_99672_ +eha com/mojang/blaze3d/platform/DisplayData + a f_84005_ + b f_84006_ + c f_84007_ + d f_84008_ + e f_84009_ + (IILjava/util/OptionalInt;Ljava/util/OptionalInt;Z)V + 0 o p_84011_ + 1 o p_84012_ + 2 o p_84013_ + 3 o p_84014_ + 4 o p_84015_ +ehb com/mojang/blaze3d/platform/GlDebug + a f_84028_ + b f_166220_ + c f_166221_ + d f_166222_ + e f_84032_ + f f_84033_ + g f_166223_ + ()V + static + ()V + a (IIIIIJJ)V m_84038_ + static + 0 o p_84039_ + 1 o p_84040_ + 2 o p_84041_ + 3 o p_84042_ + 4 o p_84043_ + 5 o p_84044_ + 6 o p_84045_ + a ()Ljava/util/List; m_166225_ + static + a (IZ)V m_84049_ + static + 0 o p_84050_ + 1 o p_84051_ + a (I)Ljava/lang/String; m_84055_ + static + 0 o p_84056_ + b (I)Ljava/lang/String; m_84057_ + static + 0 o p_84058_ + b ()Z m_166226_ + static + c (I)Ljava/lang/String; m_84059_ + static + 0 o p_84060_ + d (I)Ljava/lang/String; m_84036_ + static + 0 o p_84037_ +ehb$a com/mojang/blaze3d/platform/GlDebug$LogEntry + a f_166227_ + b f_166228_ + c f_166229_ + d f_166230_ + e f_166231_ + f f_166232_ + (IIIILjava/lang/String;)V + 0 o p_166234_ + 1 o p_166235_ + 2 o p_166236_ + 3 o p_166237_ + 4 o p_166238_ + a (IIIILjava/lang/String;)Z m_166239_ + 0 o p_166240_ + 1 o p_166241_ + 2 o p_166242_ + 3 o p_166243_ + 4 o p_166244_ + toString ()Ljava/lang/String; toString +ehc com/mojang/blaze3d/platform/GlUtil + ()V + a ()Ljava/lang/String; m_84818_ + static + a (I)Ljava/nio/ByteBuffer; m_166247_ + static + 0 o p_166248_ + a (Ljava/nio/Buffer;)V m_166251_ + static + 0 o p_166252_ + b ()Ljava/lang/String; m_84819_ + static + c ()Ljava/lang/String; m_84820_ + static + d ()Ljava/lang/String; m_84821_ + static +ehd com/mojang/blaze3d/platform/IconSet + a RELEASE + b SNAPSHOT + c f_279589_ + d $VALUES + ()V + static + (Ljava/lang/String;I[Ljava/lang/String;)V + 0 o p_283251_ + 1 o p_283697_ + 2 o p_281663_ + a (Lajl;)Ljava/util/List; m_280284_ + 0 o p_281372_ + a (Lajl;Ljava/lang/String;)Lakp; m_280117_ + 0 o p_281570_ + 1 o p_281345_ + a ()[Lehd; m_280441_ + static + b (Lajl;)Lakp; m_280095_ + 0 o p_281289_ + valueOf (Ljava/lang/String;)Lehd; valueOf + static + 0 o p_282685_ + values ()[Lehd; values + static +ehe com/mojang/blaze3d/platform/InputConstants + A f_166253_ + B f_166254_ + C f_166255_ + D f_166256_ + E f_166257_ + F f_166258_ + G f_166259_ + H f_166260_ + I f_166261_ + J f_166262_ + K f_166263_ + L f_166264_ + M f_166265_ + N f_166266_ + O f_166267_ + P f_166268_ + Q f_166269_ + R f_166270_ + S f_166271_ + T f_166272_ + U f_166273_ + V f_166274_ + W f_166275_ + X f_166276_ + Y f_166277_ + Z f_166278_ + a f_166279_ + aA f_166280_ + aB f_166281_ + aC f_166282_ + aD f_166283_ + aE f_166284_ + aF f_166285_ + aG f_166286_ + aH f_166287_ + aI f_166288_ + aJ f_166289_ + aK f_166290_ + aL f_166291_ + aM f_166292_ + aN f_166293_ + aO f_166294_ + aP f_166295_ + aQ f_166296_ + aR f_166297_ + aS f_166298_ + aT f_166299_ + aU f_166300_ + aV f_166301_ + aW f_166302_ + aX f_166303_ + aY f_166304_ + aZ f_166305_ + aa f_166306_ + ab f_166307_ + ac f_166308_ + ad f_166309_ + ae f_166310_ + af f_166311_ + ag f_166312_ + ah f_166313_ + ai f_166314_ + aj f_166315_ + ak f_166316_ + al f_166317_ + am f_166318_ + an f_166319_ + ao f_166320_ + ap f_166321_ + aq f_166322_ + ar f_166323_ + as f_166324_ + at f_166325_ + au f_166326_ + av f_166327_ + aw f_166328_ + ax f_166329_ + ay f_166330_ + az f_166331_ + b f_166332_ + ba f_166333_ + bb f_166334_ + bc f_166335_ + bd f_166336_ + be f_166337_ + bf f_166338_ + bg f_166339_ + bh f_166340_ + bi f_166341_ + bj f_166342_ + bk f_166343_ + bl f_166344_ + bm f_166345_ + bn f_166346_ + bo f_166347_ + bp f_166348_ + bq f_166349_ + br f_166350_ + bs f_166351_ + bt f_166352_ + bu f_166353_ + bv f_84822_ + bw f_166354_ + bx f_84824_ + c f_166355_ + d f_166356_ + e f_166357_ + f f_166358_ + g f_166359_ + h f_166360_ + i f_166361_ + j f_166362_ + k f_166363_ + l f_166364_ + m f_166365_ + n f_166366_ + o f_166367_ + p f_166368_ + q f_166369_ + r f_166370_ + s f_166371_ + t f_166372_ + u f_166373_ + v f_166374_ + w f_166375_ + x f_166376_ + y f_166377_ + z f_166378_ + ()V + static + ()V + a ()Z m_84826_ + static + a (JLorg/lwjgl/glfw/GLFWCursorPosCallbackI;Lorg/lwjgl/glfw/GLFWMouseButtonCallbackI;Lorg/lwjgl/glfw/GLFWScrollCallbackI;Lorg/lwjgl/glfw/GLFWDropCallbackI;)V m_84838_ + static + 0 o p_84839_ + 1 o p_84840_ + 2 o p_84841_ + 3 o p_84842_ + 4 o p_84843_ + a (JIDD)V m_84833_ + static + 0 o p_84834_ + 1 o p_84835_ + 2 o p_84836_ + 3 o p_84837_ + a (Ljava/lang/String;)Lehe$a; m_84851_ + static + 0 o p_84852_ + a (JZ)V m_84848_ + static + 0 o p_84849_ + 1 o p_84850_ + a (JLorg/lwjgl/glfw/GLFWKeyCallbackI;Lorg/lwjgl/glfw/GLFWCharModsCallbackI;)V m_84844_ + static + 0 o p_84845_ + 1 o p_84846_ + 2 o p_84847_ + a (JI)Z m_84830_ + static + 0 o p_84831_ + 1 o p_84832_ + a (II)Lehe$a; m_84827_ + static + 0 o p_84828_ + 1 o p_84829_ +ehe$a com/mojang/blaze3d/platform/InputConstants$Key + a f_84853_ + b f_84854_ + c f_84855_ + d f_84856_ + e f_84857_ + ()V + static + (Ljava/lang/String;Lehe$b;I)V + 0 o p_84860_ + 1 o p_84861_ + 2 o p_84862_ + a (Lehe$b;ILjava/lang/String;)Lsw; m_84869_ + static + 0 o p_84870_ + 1 o p_84871_ + 2 o p_84872_ + a ()Lehe$b; m_84868_ + b ()I m_84873_ + c ()Ljava/lang/String; m_84874_ + d ()Lsw; m_84875_ + e ()Ljava/util/OptionalInt; m_84876_ + equals (Ljava/lang/Object;)Z equals + 0 o p_84878_ + hashCode ()I hashCode + toString ()Ljava/lang/String; toString +ehe$b com/mojang/blaze3d/platform/InputConstants$Type + a KEYSYM + b SCANCODE + c MOUSE + d f_287790_ + e f_84885_ + f f_84886_ + g f_84887_ + h $VALUES + ()V + static + (Ljava/lang/String;ILjava/lang/String;Ljava/util/function/BiFunction;)V + 0 o p_84891_ + 1 o p_84892_ + 2 o p_84893_ + 3 o p_84894_ + a (I)Lehe$a; m_84895_ + 0 o p_84896_ + a (Lehe$b;Ljava/lang/String;I)V m_84899_ + static + 0 o p_84900_ + 1 o p_84901_ + 2 o p_84902_ + a ()[Lehe$b; m_166380_ + static + a (Ljava/lang/Integer;Ljava/lang/String;)Lsw; m_84903_ + static + 0 o p_84904_ + 1 o p_84905_ + b (Ljava/lang/Integer;Ljava/lang/String;)Lsw; m_84910_ + static + 0 o p_84911_ + 1 o p_84912_ + b (I)Lehe$a; m_84906_ + 0 o p_84907_ + c (Ljava/lang/Integer;Ljava/lang/String;)Lsw; m_287794_ + static + 0 o p_288232_ + 1 o p_288233_ + valueOf (Ljava/lang/String;)Lehe$b; valueOf + static + 0 o p_84917_ + values ()[Lehe$b; values + static +ehf com/mojang/blaze3d/platform/Lighting + a f_84919_ + b f_84920_ + c f_84921_ + d f_84922_ + e f_166381_ + f f_166382_ + ()V + static + ()V + a (Lorg/joml/Matrix4f;)V m_252995_ + static + 0 o p_254421_ + a ()V m_84930_ + static + b (Lorg/joml/Matrix4f;)V m_252756_ + static + 0 o p_254246_ + b ()V m_84931_ + static + c ()V m_166384_ + static +ehg com/mojang/blaze3d/platform/MacosUtil + a f_182515_ + ()V + a (Lakp;)V m_247671_ + static + 0 o p_250929_ + a (J)V m_182517_ + static + 0 o p_182518_ + a (Lca/weblite/objc/NSObject;)Z m_182519_ + static + 0 o p_182520_ + b (Lca/weblite/objc/NSObject;)V m_182523_ + static + 0 o p_182524_ + b (J)Ljava/util/Optional; m_182521_ + static + 0 o p_182522_ +ehh com/mojang/blaze3d/platform/MemoryTracker + a f_182525_ + ()V + static + ()V + a (Ljava/nio/ByteBuffer;I)Ljava/nio/ByteBuffer; m_182529_ + static + 0 o p_182530_ + 1 o p_182531_ + a (I)Ljava/nio/ByteBuffer; m_182527_ + static + 0 o p_182528_ +ehi com/mojang/blaze3d/platform/Monitor + a f_84936_ + b f_84937_ + c f_84938_ + d f_84939_ + e f_84940_ + (J)V + 0 o p_84942_ + a (Ljava/util/Optional;)Lehm; m_84948_ + 0 o p_84949_ + a ()V m_84943_ + a (Lehm;)I m_84946_ + 0 o p_84947_ + a (I)Lehm; m_84944_ + 0 o p_84945_ + b ()Lehm; m_84950_ + c ()I m_84951_ + d ()I m_84952_ + e ()I m_84953_ + f ()J m_84954_ + toString ()Ljava/lang/String; toString +ehj com/mojang/blaze3d/platform/MonitorCreator + createMonitor (J)Lehi; m_84956_ + 0 o p_84957_ +ehk com/mojang/blaze3d/platform/NativeImage + a f_84958_ + b f_84959_ + c f_84960_ + d f_84961_ + e f_84962_ + f f_84963_ + g f_84964_ + h f_84965_ + ()V + static + (IIZ)V + 0 o p_84968_ + 1 o p_84969_ + 2 o p_84970_ + (Lehk$a;IIZ)V + 0 o p_84972_ + 1 o p_84973_ + 2 o p_84974_ + 3 o p_84975_ + (Lehk$a;IIZJ)V + 0 o p_84977_ + 1 o p_84978_ + 2 o p_84979_ + 3 o p_84980_ + 4 o p_84981_ + a (IIIZ)V m_85040_ + 0 o p_85041_ + 1 o p_85042_ + 2 o p_85043_ + 3 o p_85044_ + a (IIIILehk;)V m_85034_ + 0 o p_85035_ + 1 o p_85036_ + 2 o p_85037_ + 3 o p_85038_ + 4 o p_85039_ + a ([B)Lehk; m_271751_ + static + 0 o p_273041_ + a (Lehk$a;Ljava/nio/ByteBuffer;)Lehk; m_85051_ + static + 0 o p_85052_ + 1 o p_85053_ + a (Ljava/util/function/IntUnaryOperator;)Lehk; m_266528_ + 0 o p_267084_ + a (Ljava/nio/channels/WritableByteChannel;)Z m_85064_ + 0 o p_85065_ + a (IIIIIIZZ)V m_85025_ + 0 o p_85026_ + 1 o p_85027_ + 2 o p_85028_ + 3 o p_85029_ + 4 o p_85030_ + 5 o p_85031_ + 6 o p_85032_ + 7 o p_85033_ + a (III)V m_84988_ + 0 o p_84989_ + 1 o p_84990_ + 2 o p_84991_ + a (ZZ)V m_85081_ + static + 0 o p_85082_ + 1 o p_85083_ + a (Ljava/nio/file/Path;)V m_85066_ + 0 o p_85067_ + a (II)I m_84985_ + 0 o p_84986_ + 1 o p_84987_ + a (Lehk;)V m_85054_ + 0 o p_85055_ + a (Ljava/io/InputStream;)Lehk; m_85058_ + static + 0 o p_85059_ + a (IIIIIIIZZ)V m_85003_ + 0 o p_85004_ + 1 o p_85005_ + 2 o p_85006_ + 3 o p_85007_ + 4 o p_85008_ + 5 o p_85009_ + 6 o p_85010_ + 7 o p_85011_ + 8 o p_85012_ + a (F)V m_166400_ + 0 o p_166401_ + a (Ljava/nio/ByteBuffer;)Lehk; m_85062_ + static + 0 o p_85063_ + a (IIIII)V m_84997_ + 0 o p_84998_ + 1 o p_84999_ + 2 o p_85000_ + 3 o p_85001_ + 4 o p_85002_ + a ()I m_84982_ + a (Lehk;IIIIIIZZ)V m_260930_ + 0 o p_261644_ + 1 o p_262056_ + 2 o p_261490_ + 3 o p_261959_ + 4 o p_262110_ + 5 o p_261522_ + 6 o p_261505_ + 7 o p_261480_ + 8 o p_261622_ + a (IIB)V m_166402_ + 0 o p_166403_ + 1 o p_166404_ + 2 o p_166405_ + a (Lehk$a;Ljava/io/InputStream;)Lehk; m_85048_ + static + 0 o p_85049_ + 1 o p_85050_ + a (Lorg/lwjgl/stb/STBTTFontinfo;IIIFFFFII)V m_85068_ + 0 o p_85069_ + 1 o p_85070_ + 2 o p_85071_ + 3 o p_85072_ + 4 o p_85073_ + 5 o p_85074_ + 6 o p_85075_ + 7 o p_85076_ + 8 o p_85077_ + 9 o p_85078_ + a (IIIIIIIZZZZ)V m_85013_ + 0 o p_85014_ + 1 o p_85015_ + 2 o p_85016_ + 3 o p_85017_ + 4 o p_85018_ + 5 o p_85019_ + 6 o p_85020_ + 7 o p_85021_ + 8 o p_85022_ + 9 o p_85023_ + 10 o p_85024_ + a (Ljava/io/File;)V m_85056_ + 0 o p_85057_ + a (IZ)V m_85045_ + 0 o p_85046_ + 1 o p_85047_ + b (Ljava/util/function/IntUnaryOperator;)V m_284481_ + 0 o p_285490_ + b (II)B m_166408_ + 0 o p_166409_ + 1 o p_166410_ + b (IIIIIIIZZZZ)V m_85090_ + 0 o p_85091_ + 1 o p_85092_ + 2 o p_85093_ + 3 o p_85094_ + 4 o p_85095_ + 5 o p_85096_ + 6 o p_85097_ + 7 o p_85098_ + 8 o p_85099_ + 9 o p_85100_ + 10 o p_85101_ + b ()I m_85084_ + b (III)V m_166411_ + 0 o p_166412_ + 1 o p_166413_ + 2 o p_166414_ + c (IIIIIIIZZZZ)V m_85105_ + 0 o p_85106_ + 1 o p_85107_ + 2 o p_85108_ + 3 o p_85109_ + 4 o p_85110_ + 5 o p_85111_ + 6 o p_85112_ + 7 o p_85113_ + 8 o p_85114_ + 9 o p_85115_ + 10 o p_85116_ + c (II)B m_166415_ + 0 o p_166416_ + 1 o p_166417_ + c ()Lehk$a; m_85102_ + close ()V close + d ()[I m_266370_ + d (II)B m_166418_ + 0 o p_166419_ + 1 o p_166420_ + e (II)B m_85087_ + 0 o p_85088_ + 1 o p_85089_ + e ()[I m_85118_ + f (II)Z m_166422_ + 0 o p_166423_ + 1 o p_166424_ + f ()V m_166421_ + g ()[B m_85121_ + h ()V m_85122_ + i ()V m_85123_ + j ()V m_85124_ + toString ()Ljava/lang/String; toString +ehk$a com/mojang/blaze3d/platform/NativeImage$Format + a RGBA + b RGB + c LUMINANCE_ALPHA + d LUMINANCE + e f_85130_ + f f_85131_ + g f_85132_ + h f_85133_ + i f_85134_ + j f_85135_ + k f_85136_ + l f_85137_ + m f_85138_ + n f_85139_ + o f_85140_ + p f_85141_ + q f_85142_ + r $VALUES + ()V + static + (Ljava/lang/String;IIIZZZZZIIIIIZ)V + 0 o p_85146_ + 1 o p_85147_ + 2 o p_85148_ + 3 o p_85149_ + 4 o p_85150_ + 5 o p_85151_ + 6 o p_85152_ + 7 o p_85153_ + 8 o p_85154_ + 9 o p_85155_ + 10 o p_85156_ + 11 o p_85157_ + 12 o p_85158_ + 13 o p_85159_ + 14 o p_85160_ + a ()I m_85161_ + a (I)Lehk$a; m_85167_ + static + 0 o p_85168_ + b ()V m_85166_ + c ()V m_85169_ + d ()I m_85170_ + e ()Z m_166425_ + f ()Z m_166426_ + g ()Z m_166427_ + h ()Z m_166428_ + i ()Z m_85171_ + j ()I m_166429_ + k ()I m_166430_ + l ()I m_166431_ + m ()I m_166432_ + n ()I m_85172_ + o ()Z m_166433_ + p ()Z m_166434_ + q ()Z m_166435_ + r ()Z m_85173_ + s ()I m_166436_ + t ()I m_166437_ + u ()I m_166438_ + v ()I m_85174_ + valueOf (Ljava/lang/String;)Lehk$a; valueOf + static + 0 o p_85177_ + values ()[Lehk$a; values + static + w ()Z m_85175_ + x ()[Lehk$a; m_166439_ + static +ehk$b com/mojang/blaze3d/platform/NativeImage$InternalGlFormat + a RGBA + b RGB + c RG + d RED + e f_85184_ + f $VALUES + ()V + static + (Ljava/lang/String;II)V + 0 o p_85188_ + 1 o p_85189_ + 2 o p_85190_ + a ()I m_85191_ + b ()[Lehk$b; m_166442_ + static + valueOf (Ljava/lang/String;)Lehk$b; valueOf + static + 0 o p_85193_ + values ()[Lehk$b; values + static +ehk$c com/mojang/blaze3d/platform/NativeImage$WriteCallback + a f_85195_ + b f_85196_ + (Ljava/nio/channels/WritableByteChannel;)V + 0 o p_85198_ + a ()V m_85202_ + invoke (JJI)V invoke + 0 o p_85204_ + 1 o p_85205_ + 2 o p_85206_ +ehl com/mojang/blaze3d/platform/ScreenManager + a f_212357_ + b f_85262_ + c f_85263_ + ()V + static + (Lehj;)V + 0 o p_85265_ + a (J)Lehi; m_85271_ + 0 o p_85272_ + a (Lehn;)Lehi; m_85276_ + 0 o p_85277_ + a (III)I m_85267_ + static + 0 o p_85268_ + 1 o p_85269_ + 2 o p_85270_ + a ()V m_85266_ + a (JI)V m_85273_ + 0 o p_85274_ + 1 o p_85275_ +ehm com/mojang/blaze3d/platform/VideoMode + a f_85313_ + b f_85314_ + c f_85315_ + d f_85316_ + e f_85317_ + f f_85318_ + g f_85319_ + ()V + static + (Lorg/lwjgl/glfw/GLFWVidMode;)V + 0 o p_85331_ + (IIIIII)V + 0 o p_85322_ + 1 o p_85323_ + 2 o p_85324_ + 3 o p_85325_ + 4 o p_85326_ + 5 o p_85327_ + (Lorg/lwjgl/glfw/GLFWVidMode$Buffer;)V + 0 o p_85329_ + a (Ljava/lang/String;)Ljava/util/Optional; m_85333_ + static + 0 o p_85334_ + a ()I m_85332_ + b ()I m_85335_ + c ()I m_85336_ + d ()I m_85337_ + e ()I m_85338_ + equals (Ljava/lang/Object;)Z equals + 0 o p_85340_ + f ()I m_85341_ + g ()Ljava/lang/String; m_85342_ + hashCode ()I hashCode + toString ()Ljava/lang/String; toString +ehn com/mojang/blaze3d/platform/Window + a f_85345_ + b f_85346_ + c f_85347_ + d f_85348_ + e f_85349_ + f f_85350_ + g f_85351_ + h f_85352_ + i f_85353_ + j f_85354_ + k f_85355_ + l f_85356_ + m f_85357_ + n f_85358_ + o f_85359_ + p f_85360_ + q f_85361_ + r f_85362_ + s f_85363_ + t f_85364_ + u f_85365_ + v f_85366_ + w f_85367_ + x f_85368_ + y f_85369_ + ()V + static + (Leho;Lehl;Leha;Ljava/lang/String;Ljava/lang/String;)V + 0 o p_85372_ + 1 o p_85373_ + 2 o p_85374_ + 3 o p_85375_ + 4 o p_85376_ + a (Ljava/lang/String;)V m_85403_ + 0 o p_85404_ + a (JII)V m_85388_ + 0 o p_85389_ + 1 o p_85390_ + 2 o p_85391_ + a (IZ)I m_85385_ + 0 o p_85386_ + 1 o p_85387_ + a (II)V m_166447_ + 0 o p_166448_ + 1 o p_166449_ + a (IJ)V m_85382_ + 0 o p_85383_ + 1 o p_85384_ + a (Z)V m_85409_ + 0 o p_85410_ + a ()I m_85377_ + a (Ljava/util/function/BiConsumer;)V m_85407_ + static + 0 o p_85408_ + a (JZ)V m_85392_ + 0 o p_85393_ + 1 o p_85394_ + a (Lajl;Lehd;)V m_280655_ + 0 o p_281860_ + 1 o p_282155_ + a (D)V m_85378_ + 0 o p_85379_ + a (I)V m_85380_ + 0 o p_85381_ + a (Ljava/util/Optional;)V m_85405_ + 0 o p_85406_ + b (Ljava/lang/String;)V m_85422_ + 0 o p_85423_ + b (Z)V m_85424_ + 0 o p_85425_ + b (IJ)V m_85412_ + static + 0 o p_85413_ + 1 o p_85414_ + b (JII)V m_85415_ + 0 o p_85416_ + 1 o p_85417_ + 2 o p_85418_ + b (I)V m_166450_ + 0 o p_166451_ + b (JZ)V m_85419_ + 0 o p_85420_ + 1 o p_85421_ + b ()Z m_85411_ + c (JII)V m_85427_ + 0 o p_85428_ + 1 o p_85429_ + 2 o p_85430_ + c (I)V m_166452_ + 0 o p_166453_ + c ()V m_85426_ + c (Z)V m_85431_ + 0 o p_85432_ + close ()V close + d ()I m_85434_ + e ()V m_85435_ + f ()Ljava/util/Optional; m_85436_ + g ()V m_85437_ + h ()V m_85438_ + i ()J m_85439_ + j ()Z m_85440_ + k ()I m_85441_ + l ()I m_85442_ + m ()I m_85443_ + n ()I m_85444_ + o ()I m_85445_ + p ()I m_85446_ + q ()I m_85447_ + r ()I m_85448_ + s ()D m_85449_ + t ()Lehi; m_85450_ + u ()V m_85451_ + v ()V m_85452_ + w ()V m_85453_ +ehn$a com/mojang/blaze3d/platform/Window$WindowInitFailed + (Ljava/lang/String;)V + 0 o p_85455_ +eho com/mojang/blaze3d/platform/WindowEventHandler + a ()V m_5741_ + a (Z)V m_7440_ + 0 o p_85477_ + b ()V m_5740_ +ehp com/mojang/blaze3d/platform/package-info +ehq com/mojang/blaze3d/preprocessor/GlslPreprocessor + a f_166454_ + b f_166455_ + c f_166456_ + d f_166457_ + e f_166458_ + ()V + static + ()V + a (Ljava/lang/String;)Ljava/util/List; m_166461_ + 0 o p_166462_ + a (ZLjava/lang/String;)Ljava/lang/String; m_142138_ + 0 o p_166480_ + 1 o p_166481_ + a (Ljava/lang/String;I)Ljava/lang/String; m_166463_ + 0 o p_166464_ + 1 o p_166465_ + a (Ljava/lang/String;Ljava/util/regex/Matcher;I)Z m_166476_ + static + 0 o p_166477_ + 1 o p_166478_ + 2 o p_166479_ + a (Ljava/lang/String;Lehq$a;Ljava/lang/String;)Ljava/util/List; m_166469_ + 0 o p_166470_ + 1 o p_166471_ + 2 o p_166472_ + a (Ljava/lang/String;Lehq$a;)Ljava/lang/String; m_166466_ + 0 o p_166467_ + 1 o p_166468_ + a (Ljava/lang/String;Ljava/util/regex/Matcher;)Z m_166473_ + static + 0 o p_166474_ + 1 o p_166475_ +ehq$a com/mojang/blaze3d/preprocessor/GlslPreprocessor$Context + a f_166482_ + b f_166483_ + ()V +ehr com/mojang/blaze3d/preprocessor/package-info +ehs com/mojang/blaze3d/shaders/AbstractUniform + ()V + a (Lorg/joml/Matrix3f;)V m_200759_ + 0 o p_254112_ + a (II)V m_142326_ + 0 o p_166537_ + 1 o p_166538_ + a (III)V m_142693_ + 0 o p_166539_ + 1 o p_166540_ + 2 o p_166541_ + a (FFFFFFFFFFFFFFFF)V m_141978_ + 0 o p_166520_ + 1 o p_166521_ + 2 o p_166522_ + 3 o p_166523_ + 4 o p_166524_ + 5 o p_166525_ + 6 o p_166526_ + 7 o p_166527_ + 8 o p_166528_ + 9 o p_166529_ + 10 o p_166530_ + 11 o p_166531_ + 12 o p_166532_ + 13 o p_166533_ + 14 o p_166534_ + 15 o p_166535_ + a (FFFF)V m_5805_ + 0 o p_85485_ + 1 o p_85486_ + 2 o p_85487_ + 3 o p_85488_ + a (FFFFFF)V m_141964_ + 0 o p_166485_ + 1 o p_166486_ + 2 o p_166487_ + 3 o p_166488_ + 4 o p_166489_ + 5 o p_166490_ + a (FFFFFFFFFFFF)V m_142604_ + 0 o p_166508_ + 1 o p_166509_ + 2 o p_166510_ + 3 o p_166511_ + 4 o p_166512_ + 5 o p_166513_ + 6 o p_166514_ + 7 o p_166515_ + 8 o p_166516_ + 9 o p_166517_ + 10 o p_166518_ + 11 o p_166519_ + a ([F)V m_5941_ + 0 o p_85494_ + a (I)V m_142617_ + 0 o p_166536_ + a (F)V m_5985_ + 0 o p_85479_ + a (FF)V m_7971_ + 0 o p_85480_ + 1 o p_85481_ + a (Lorg/joml/Vector4f;)V m_142558_ + 0 o p_254449_ + a (IIII)V m_7401_ + 0 o p_85489_ + 1 o p_85490_ + 2 o p_85491_ + 3 o p_85492_ + a (Lorg/joml/Matrix4f;)V m_5679_ + 0 o p_254214_ + a (FFF)V m_5889_ + 0 o p_85482_ + 1 o p_85483_ + 2 o p_85484_ + a (FFFFFFFFF)V m_142217_ + 0 o p_166499_ + 1 o p_166500_ + 2 o p_166501_ + 3 o p_166502_ + 4 o p_166503_ + 5 o p_166504_ + 6 o p_166505_ + 7 o p_166506_ + 8 o p_166507_ + a (Lorg/joml/Vector3f;)V m_142276_ + 0 o p_254315_ + a (FFFFFFFF)V m_142005_ + 0 o p_166491_ + 1 o p_166492_ + 2 o p_166493_ + 3 o p_166494_ + 4 o p_166495_ + 5 o p_166496_ + 6 o p_166497_ + 7 o p_166498_ + b (FFFF)V m_5808_ + 0 o p_85495_ + 1 o p_85496_ + 2 o p_85497_ + 3 o p_85498_ + b (FFFFFF)V m_141963_ + 0 o p_166544_ + 1 o p_166545_ + 2 o p_166546_ + 3 o p_166547_ + 4 o p_166548_ + 5 o p_166549_ + b (FFFFFFFFFFFF)V m_142605_ + 0 o p_166558_ + 1 o p_166559_ + 2 o p_166560_ + 3 o p_166561_ + 4 o p_166562_ + 5 o p_166563_ + 6 o p_166564_ + 7 o p_166565_ + 8 o p_166566_ + 9 o p_166567_ + 10 o p_166568_ + 11 o p_166569_ + b (FFFFFFFF)V m_142004_ + 0 o p_166550_ + 1 o p_166551_ + 2 o p_166552_ + 3 o p_166553_ + 4 o p_166554_ + 5 o p_166555_ + 6 o p_166556_ + 7 o p_166557_ + b (IIII)V m_142492_ + 0 o p_166570_ + 1 o p_166571_ + 2 o p_166572_ + 3 o p_166573_ + c (FFFF)V m_142588_ + 0 o p_166574_ + 1 o p_166575_ + 2 o p_166576_ + 3 o p_166577_ +eht com/mojang/blaze3d/shaders/BlendMode + a f_85499_ + b f_85500_ + c f_85501_ + d f_85502_ + e f_85503_ + f f_85504_ + g f_85505_ + h f_85506_ + (III)V + 0 o p_85509_ + 1 o p_85510_ + 2 o p_85511_ + (IIIII)V + 0 o p_85513_ + 1 o p_85514_ + 2 o p_85515_ + 3 o p_85516_ + 4 o p_85517_ + ()V + (ZZIIIII)V + 0 o p_85519_ + 1 o p_85520_ + 2 o p_85521_ + 3 o p_85522_ + 4 o p_85523_ + 5 o p_85524_ + 6 o p_85525_ + a ()V m_85526_ + a (Ljava/lang/String;)I m_85527_ + static + 0 o p_85528_ + b (Ljava/lang/String;)I m_85530_ + static + 0 o p_85531_ + b ()Z m_85529_ + equals (Ljava/lang/Object;)Z equals + 0 o p_85533_ + hashCode ()I hashCode +ehu com/mojang/blaze3d/shaders/Effect +ehv com/mojang/blaze3d/shaders/EffectProgram + a f_166578_ + b f_166579_ + ()V + static + (Lehx$a;ILjava/lang/String;)V + 0 o p_166582_ + 1 o p_166583_ + 2 o p_166584_ + a (Lehx$a;Ljava/lang/String;Ljava/io/InputStream;Ljava/lang/String;)Lehv; m_166588_ + static + 0 o p_166589_ + 1 o p_166590_ + 2 o p_166591_ + 3 o p_166592_ + a (Lehu;)V m_166586_ + 0 o p_166587_ + a ()V m_85543_ +ehv$1 com/mojang/blaze3d/shaders/EffectProgram$1 + ()V + a (ZLjava/lang/String;)Ljava/lang/String; m_142138_ + 0 o p_166595_ + 1 o p_166596_ +ehw com/mojang/blaze3d/shaders/FogShape + a SPHERE + b CYLINDER + c f_202317_ + d $VALUES + ()V + static + (Ljava/lang/String;II)V + 0 o p_202321_ + 1 o p_202322_ + 2 o p_202323_ + a ()I m_202324_ + b ()[Lehw; m_202325_ + static + valueOf (Ljava/lang/String;)Lehw; valueOf + static + 0 o p_202327_ + values ()[Lehw; values + static +ehx com/mojang/blaze3d/shaders/Program + a f_166598_ + b f_85535_ + c f_85536_ + d f_85537_ + (Lehx$a;ILjava/lang/String;)V + 0 o p_85540_ + 1 o p_85541_ + 2 o p_85542_ + a (Lehz;)V m_166610_ + 0 o p_166611_ + a ()V m_85543_ + a (Lehx$a;Ljava/lang/String;Ljava/io/InputStream;Ljava/lang/String;Lehq;)Lehx; m_166604_ + static + 0 o p_166605_ + 1 o p_166606_ + 2 o p_166607_ + 3 o p_166608_ + 4 o p_166609_ + b ()Ljava/lang/String; m_85551_ + b (Lehx$a;Ljava/lang/String;Ljava/io/InputStream;Ljava/lang/String;Lehq;)I m_166612_ + static + 0 o p_166613_ + 1 o p_166614_ + 2 o p_166615_ + 3 o p_166616_ + 4 o p_166617_ + c ()I m_166618_ +ehx$a com/mojang/blaze3d/shaders/Program$Type + a VERTEX + b FRAGMENT + c f_85554_ + d f_85555_ + e f_85556_ + f f_85557_ + g $VALUES + ()V + static + (Ljava/lang/String;ILjava/lang/String;Ljava/lang/String;I)V + 0 o p_85561_ + 1 o p_85562_ + 2 o p_85563_ + 3 o p_85564_ + 4 o p_85565_ + a ()Ljava/lang/String; m_85566_ + b ()Ljava/lang/String; m_85569_ + c ()Ljava/util/Map; m_85570_ + d ()I m_85571_ + e ()[Lehx$a; m_166619_ + static + valueOf (Ljava/lang/String;)Lehx$a; valueOf + static + 0 o p_85573_ + values ()[Lehx$a; values + static +ehy com/mojang/blaze3d/shaders/ProgramManager + a f_85575_ + ()V + static + ()V + a (Lehz;)V m_166621_ + static + 0 o p_166622_ + a (I)V m_85578_ + static + 0 o p_85579_ + a ()I m_85577_ + static + b (Lehz;)V m_166623_ + static + 0 o p_166624_ +ehz com/mojang/blaze3d/shaders/Shader + a ()I m_108943_ + b ()V m_108957_ + c ()Lehx; m_108962_ + d ()Lehx; m_108964_ + e ()V m_142662_ +ei net/minecraft/commands/arguments/NbtTagArgument + a f_100656_ + ()V + static + ()V + a (Lcom/mojang/brigadier/StringReader;)Lrk; parse + 0 o p_100661_ + a ()Lei; m_100659_ + static + a (Lcom/mojang/brigadier/context/CommandContext;Ljava/lang/String;)Lrk; m_100662_ + static + 0 o p_100663_ + 1 o p_100664_ + getExamples ()Ljava/util/Collection; getExamples + parse (Lcom/mojang/brigadier/StringReader;)Ljava/lang/Object; parse + 0 o p_100667_ +eia com/mojang/blaze3d/shaders/Uniform + a f_166625_ + b f_166626_ + c f_166627_ + d f_166628_ + e f_166629_ + f f_166630_ + g f_166631_ + h f_166632_ + i f_166633_ + j f_166634_ + k f_166635_ + l f_85584_ + m f_166636_ + n f_85585_ + o f_85586_ + p f_85587_ + q f_85588_ + r f_85589_ + s f_85590_ + t f_85591_ + u f_85592_ + ()V + static + (Ljava/lang/String;IILehz;)V + 0 o p_166638_ + 1 o p_166639_ + 2 o p_166640_ + 3 o p_166641_ + a (Lorg/joml/Matrix3f;)V m_200759_ + 0 o p_254556_ + a (II)V m_142326_ + 0 o p_166704_ + 1 o p_166705_ + a (IILjava/lang/CharSequence;)V m_166710_ + static + 0 o p_166711_ + 1 o p_166712_ + 2 o p_166713_ + a (IF)V m_166700_ + 0 o p_166701_ + 1 o p_166702_ + a (III)V m_142693_ + 0 o p_166707_ + 1 o p_166708_ + 2 o p_166709_ + a (FFFFFFFFFFFFFFFF)V m_141978_ + 0 o p_166682_ + 1 o p_166683_ + 2 o p_166684_ + 3 o p_166685_ + 4 o p_166686_ + 5 o p_166687_ + 6 o p_166688_ + 7 o p_166689_ + 8 o p_166690_ + 9 o p_166691_ + 10 o p_166692_ + 11 o p_166693_ + 12 o p_166694_ + 13 o p_166695_ + 14 o p_166696_ + 15 o p_166697_ + a (FFFF)V m_5805_ + 0 o p_85610_ + 1 o p_85611_ + 2 o p_85612_ + 3 o p_85613_ + a (Ljava/lang/String;)I m_85629_ + static + 0 o p_85630_ + a (FFFFFF)V m_141964_ + 0 o p_166643_ + 1 o p_166644_ + 2 o p_166645_ + 3 o p_166646_ + 4 o p_166647_ + 5 o p_166648_ + a (FFFFFFFFFFFF)V m_142604_ + 0 o p_166669_ + 1 o p_166670_ + 2 o p_166671_ + 3 o p_166672_ + 4 o p_166673_ + 5 o p_166674_ + 6 o p_166675_ + 7 o p_166676_ + 8 o p_166677_ + 9 o p_166678_ + 10 o p_166679_ + 11 o p_166680_ + a ([F)V m_5941_ + 0 o p_85632_ + a (I)V m_142617_ + 0 o p_166699_ + a (F)V m_5985_ + 0 o p_85601_ + a ()Ljava/lang/String; m_85599_ + a (FF)V m_7971_ + 0 o p_85603_ + 1 o p_85604_ + a (Lorg/joml/Vector4f;)V m_142558_ + 0 o p_254360_ + a (IIII)V m_7401_ + 0 o p_85620_ + 1 o p_85621_ + 2 o p_85622_ + 3 o p_85623_ + a (Lorg/joml/Matrix4f;)V m_5679_ + 0 o p_254249_ + a (FFF)V m_5889_ + 0 o p_85606_ + 1 o p_85607_ + 2 o p_85608_ + a (ILjava/lang/CharSequence;)I m_85624_ + static + 0 o p_85625_ + 1 o p_85626_ + a (FFFFFFFFF)V m_142217_ + 0 o p_166659_ + 1 o p_166660_ + 2 o p_166661_ + 3 o p_166662_ + 4 o p_166663_ + 5 o p_166664_ + 6 o p_166665_ + 7 o p_166666_ + 8 o p_166667_ + a (Lorg/joml/Vector3f;)V m_142276_ + 0 o p_253931_ + a (FFFFFFFF)V m_142005_ + 0 o p_166650_ + 1 o p_166651_ + 2 o p_166652_ + 3 o p_166653_ + 4 o p_166654_ + 5 o p_166655_ + 6 o p_166656_ + 7 o p_166657_ + b (FFFF)V m_5808_ + 0 o p_85635_ + 1 o p_85636_ + 2 o p_85637_ + 3 o p_85638_ + b (ILjava/lang/CharSequence;)I m_85639_ + static + 0 o p_85640_ + 1 o p_85641_ + b (FFFFFF)V m_141963_ + 0 o p_166719_ + 1 o p_166720_ + 2 o p_166721_ + 3 o p_166722_ + 4 o p_166723_ + 5 o p_166724_ + b (II)V m_85616_ + static + 0 o p_85617_ + 1 o p_85618_ + b (FFFFFFFFFFFF)V m_142605_ + 0 o p_166735_ + 1 o p_166736_ + 2 o p_166737_ + 3 o p_166738_ + 4 o p_166739_ + 5 o p_166740_ + 6 o p_166741_ + 7 o p_166742_ + 8 o p_166743_ + 9 o p_166744_ + 10 o p_166745_ + 11 o p_166746_ + b (I)V m_85614_ + 0 o p_85615_ + b (FFFFFFFF)V m_142004_ + 0 o p_166726_ + 1 o p_166727_ + 2 o p_166728_ + 3 o p_166729_ + 4 o p_166730_ + 5 o p_166731_ + 6 o p_166732_ + 7 o p_166733_ + b (IIII)V m_142492_ + 0 o p_166748_ + 1 o p_166749_ + 2 o p_166750_ + 3 o p_166751_ + b ()V m_85633_ + c ()I m_166752_ + c (FFFF)V m_142588_ + 0 o p_166754_ + 1 o p_166755_ + 2 o p_166756_ + 3 o p_166757_ + close ()V close + d ()I m_166758_ + e ()I m_166759_ + f ()Ljava/nio/IntBuffer; m_166760_ + g ()Ljava/nio/FloatBuffer; m_166761_ + h ()V m_85642_ + i ()V m_85644_ + j ()V m_85645_ + k ()V m_85646_ +eib com/mojang/blaze3d/shaders/package-info +eic com/mojang/blaze3d/systems/TimerQuery + a f_231138_ + ()V + a ()Ljava/util/Optional; m_231140_ + static + b ()V m_231141_ + c ()Leic$a; m_231142_ +eic$a com/mojang/blaze3d/systems/TimerQuery$FrameProfile + a f_231143_ + b f_231144_ + c f_231145_ + d f_231146_ + (I)V + 0 o p_231148_ + a ()V m_231149_ + b ()Z m_231150_ + c ()J m_231151_ +eic$b com/mojang/blaze3d/systems/TimerQuery$TimerQueryLazyLoader + a f_231152_ + ()V + static + ()V + a ()Leic; m_231155_ + static +eid com/mojang/blaze3d/systems/package-info +eie com/mojang/blaze3d/vertex/BufferBuilder + f f_166763_ + g f_85647_ + h f_85648_ + i f_231156_ + j f_231157_ + k f_85652_ + l f_85654_ + m f_85655_ + n f_85656_ + o f_85658_ + p f_85657_ + q f_85659_ + r f_85660_ + s f_85661_ + t f_166766_ + u f_276463_ + v f_166762_ + ()V + static + (I)V + 0 o p_85664_ + a (IS)V m_5586_ + 0 o p_85700_ + 1 o p_85701_ + a (Leio$b;Leio;)V m_166779_ + 0 o p_166780_ + 1 o p_166781_ + a (ILeio$a;)Lit/unimi/dsi/fastutil/ints/IntConsumer; m_231158_ + 0 o p_231159_ + 1 o p_231160_ + a (IF)V m_5832_ + 0 o p_85689_ + 1 o p_85690_ + a (Leio$a;)V m_166786_ + 0 o p_166787_ + a (FFFFFFFFFIIFFF)V m_5954_ + 0 o p_85671_ + 1 o p_85672_ + 2 o p_85673_ + 3 o p_85674_ + 4 o p_85675_ + 5 o p_85676_ + 6 o p_85677_ + 7 o p_85678_ + 8 o p_85679_ + 9 o p_85680_ + 10 o p_85681_ + 11 o p_85682_ + 12 o p_85683_ + 13 o p_85684_ + a (Lorg/apache/commons/lang3/mutable/MutableInt;I)V m_231161_ + 0 o p_231162_ + 1 o p_231163_ + a (IB)V m_5672_ + 0 o p_85686_ + 1 o p_85687_ + a ()Leie$c; m_166770_ + a (Leio;)V m_85704_ + 0 o p_85705_ + a (IIII)Lein; m_6122_ + 0 o p_85692_ + 1 o p_85693_ + 2 o p_85694_ + 3 o p_85695_ + a (Leir;)V m_277127_ + 0 o p_277454_ + a (Leie$c;)V m_166775_ + 0 o p_166776_ + b (Lorg/apache/commons/lang3/mutable/MutableInt;I)V m_231165_ + 0 o p_231166_ + 1 o p_231167_ + b ()Z m_231164_ + c ()Leie$b; m_231168_ + c (II)Ljava/nio/ByteBuffer; m_231169_ + 0 o p_231170_ + 1 o p_231171_ + d (I)V m_85722_ + 0 o p_85723_ + d ()Leie$b; m_231175_ + e ()V m_5752_ + e (I)I m_85725_ + static + 0 o p_85726_ + f ()V m_5751_ + g ()V m_85729_ + h ()V m_85730_ + i ()Leip; m_6297_ + j ()Z m_85732_ + l ()V m_85665_ + m ()[Lorg/joml/Vector3f; m_166794_ + n ()V m_231176_ + o ()Leie$b; m_231177_ + p ()V m_231178_ + q ()V m_231179_ +eie$1 com/mojang/blaze3d/vertex/BufferBuilder$1 + a f_166795_ + ()V + static +eie$a com/mojang/blaze3d/vertex/BufferBuilder$DrawState + a f_85733_ + b f_85734_ + c f_166797_ + d f_85735_ + e f_166798_ + f f_166799_ + g f_166800_ + (Leio;IILeio$b;Leio$a;ZZ)V + 0 o f_85733_ + 1 o f_85734_ + 2 o f_166797_ + 3 o f_85735_ + 4 o f_166798_ + 5 o f_166799_ + 6 o f_166800_ + a ()I m_166812_ + b ()I m_231180_ + c ()I m_231181_ + d ()I m_231182_ + e ()I m_231183_ + equals (Ljava/lang/Object;)Z equals + 0 o p_231185_ + f ()I m_166813_ + g ()Leio; f_85733_ + h ()I f_85734_ + hashCode ()I hashCode + i ()I f_166797_ + j ()Leio$b; f_85735_ + k ()Leio$a; f_166798_ + l ()Z f_166799_ + m ()Z f_166800_ + n ()I m_166816_ + toString ()Ljava/lang/String; toString +eie$b com/mojang/blaze3d/vertex/BufferBuilder$RenderedBuffer + a f_231188_ + b f_231189_ + c f_231190_ + d f_231191_ + (Leie;ILeie$a;)V + 0 o p_231193_ + 1 o p_231194_ + 2 o p_231195_ + a ()Ljava/nio/ByteBuffer; m_231196_ + b ()Ljava/nio/ByteBuffer; m_231197_ + c ()Leie$a; m_231198_ + d ()Z m_231199_ + e ()V m_231200_ +eie$c com/mojang/blaze3d/vertex/BufferBuilder$SortState + a f_166817_ + b f_166818_ + c f_166819_ + d f_276566_ + (Leio$b;I[Lorg/joml/Vector3f;Leir;)V + 0 o p_278011_ + 1 o p_277510_ + 2 o p_278102_ + 3 o p_277855_ +eif com/mojang/blaze3d/vertex/BufferUploader + a f_231201_ + ()V + a (Leio;)Leim; m_231206_ + static + 0 o p_231207_ + a (Leie$b;)V m_231202_ + static + 0 o p_231203_ + a ()V m_166835_ + static + a (Leim;)V m_231204_ + static + 0 o p_231205_ + b (Leie$b;)V m_231209_ + static + 0 o p_231210_ + b ()V m_231208_ + static + c (Leie$b;)V m_231211_ + static + 0 o p_231212_ + d (Leie$b;)Leim; m_231213_ + static + 0 o p_231214_ + e (Leie$b;)V m_231215_ + static + 0 o p_231216_ +eig com/mojang/blaze3d/vertex/BufferVertexConsumer + a (FFF)Lein; m_5601_ + 0 o p_85798_ + 1 o p_85799_ + 2 o p_85800_ + a (IS)V m_5586_ + 0 o p_85791_ + 1 o p_85792_ + a (IIII)Lein; m_6122_ + 0 o p_85787_ + 1 o p_85788_ + 2 o p_85789_ + 3 o p_85790_ + a (IF)V m_5832_ + 0 o p_85781_ + 1 o p_85782_ + a (DDD)Lein; m_5483_ + 0 o p_85771_ + 1 o p_85772_ + 2 o p_85773_ + a (II)Lein; m_7122_ + 0 o p_85784_ + 1 o p_85785_ + a (F)B m_85774_ + static + 0 o p_85775_ + a (IB)V m_5672_ + 0 o p_85779_ + 1 o p_85780_ + a (SSI)Lein; m_85793_ + 0 o p_85794_ + 1 o p_85795_ + 2 o p_85796_ + a (FF)Lein; m_7421_ + 0 o p_85777_ + 1 o p_85778_ + b (II)Lein; m_7120_ + 0 o p_85802_ + 1 o p_85803_ + f ()V m_5751_ + i ()Leip; m_6297_ +eih com/mojang/blaze3d/vertex/DefaultVertexFormat + a f_85804_ + b f_85805_ + c f_85806_ + d f_85807_ + e f_85808_ + f f_85809_ + g f_85810_ + h f_166849_ + i f_166850_ + j f_85811_ + k f_85812_ + l f_85813_ + m f_85814_ + n f_85815_ + o f_166851_ + p f_85816_ + q f_85817_ + r f_85818_ + s f_85819_ + t f_85820_ + u f_85821_ + v f_85822_ + ()V + static + ()V +eii com/mojang/blaze3d/vertex/DefaultedVertexConsumer + a f_85824_ + b f_85825_ + c f_85826_ + d f_85827_ + e f_85828_ + ()V + b (IIII)V m_7404_ + 0 o p_85830_ + 1 o p_85831_ + 2 o p_85832_ + 3 o p_85833_ + k ()V m_141991_ +eij com/mojang/blaze3d/vertex/PoseStack + a f_85834_ + ()V + a (Lorg/joml/Quaternionf;FFF)V m_272245_ + 0 o p_272904_ + 1 o p_273581_ + 2 o p_272655_ + 3 o p_273275_ + a (Lorg/joml/Matrix4f;)V m_252931_ + 0 o p_254128_ + a (FFF)V m_252880_ + 0 o p_254202_ + 1 o p_253782_ + 2 o p_254238_ + a (Ljava/util/ArrayDeque;)V m_252549_ + static + 0 o p_85848_ + a (DDD)V m_85837_ + 0 o p_85838_ + 1 o p_85839_ + 2 o p_85840_ + a ()V m_85836_ + a (Lorg/joml/Quaternionf;)V m_252781_ + 0 o p_254385_ + b (FFF)V m_85841_ + 0 o p_85842_ + 1 o p_85843_ + 2 o p_85844_ + b ()V m_85849_ + c ()Leij$a; m_85850_ + d ()Z m_85851_ + e ()V m_166856_ +eij$a com/mojang/blaze3d/vertex/PoseStack$Pose + a f_85852_ + b f_85853_ + (Lorg/joml/Matrix4f;Lorg/joml/Matrix3f;)V + 0 o p_254509_ + 1 o p_254348_ + a ()Lorg/joml/Matrix4f; m_252922_ + b ()Lorg/joml/Matrix3f; m_252943_ +eik com/mojang/blaze3d/vertex/SheetedDecalTextureGenerator + f f_85867_ + g f_85868_ + h f_85869_ + i f_256811_ + j f_85870_ + k f_85871_ + l f_85872_ + m f_85873_ + n f_85874_ + o f_85875_ + p f_85876_ + q f_85877_ + r f_85878_ + (Lein;Lorg/joml/Matrix4f;Lorg/joml/Matrix3f;F)V + 0 o p_260211_ + 1 o p_259178_ + 2 o p_259698_ + 3 o p_259312_ + a (FFF)Lein; m_5601_ + 0 o p_85900_ + 1 o p_85901_ + 2 o p_85902_ + a ()V m_85883_ + a (IIII)Lein; m_6122_ + 0 o p_85895_ + 1 o p_85896_ + 2 o p_85897_ + 3 o p_85898_ + a (DDD)Lein; m_5483_ + 0 o p_85885_ + 1 o p_85886_ + 2 o p_85887_ + a (FF)Lein; m_7421_ + 0 o p_85889_ + 1 o p_85890_ + a (II)Lein; m_7122_ + 0 o p_85892_ + 1 o p_85893_ + b (II)Lein; m_7120_ + 0 o p_85904_ + 1 o p_85905_ + e ()V m_5752_ +eil com/mojang/blaze3d/vertex/Tesselator + a f_166857_ + b f_166858_ + c f_85907_ + d f_85908_ + ()V + static + (I)V + 0 o p_85912_ + ()V + a ()Leil; m_85913_ + static + b ()V m_85914_ + c ()Leie; m_85915_ +eim com/mojang/blaze3d/vertex/VertexBuffer + a f_285574_ + b f_231217_ + c f_166860_ + d f_166862_ + e f_85917_ + f f_166865_ + g f_166861_ + h f_166863_ + i f_166864_ + (Leim$a;)V + 0 o p_286252_ + a (Lorg/joml/Matrix4f;Lorg/joml/Matrix4f;Lfki;)V m_253207_ + 0 o p_254480_ + 1 o p_254555_ + 2 o p_253993_ + a (Leie$b;)V m_231221_ + 0 o p_231222_ + a ()V m_85921_ + a (Leie$a;Ljava/nio/ByteBuffer;)Leio; m_231218_ + 0 o p_231219_ + 1 o p_231220_ + b (Lorg/joml/Matrix4f;Lorg/joml/Matrix4f;Lfki;)V m_166876_ + 0 o p_253705_ + 1 o p_253737_ + 2 o p_166879_ + b (Leie$a;Ljava/nio/ByteBuffer;)Lcom/mojang/blaze3d/systems/RenderSystem$a; m_231223_ + 0 o p_231224_ + 1 o p_231225_ + b ()V m_85931_ + static + c ()V m_166882_ + c (Lorg/joml/Matrix4f;Lorg/joml/Matrix4f;Lfki;)V m_252550_ + 0 o p_253281_ + 1 o p_253282_ + 2 o p_253283_ + close ()V close + d ()Leio; m_166892_ + e ()Z m_231230_ + f ()Leio$a; m_231231_ +eim$a com/mojang/blaze3d/vertex/VertexBuffer$Usage + a STATIC + b DYNAMIC + c f_285654_ + d $VALUES + ()V + static + (Ljava/lang/String;II)V + 0 o p_286324_ + 1 o p_286797_ + 2 o p_286680_ + a ()[Leim$a; m_285873_ + static + valueOf (Ljava/lang/String;)Leim$a; valueOf + static + 0 o p_286538_ + values ()[Leim$a; values + static +ein com/mojang/blaze3d/vertex/VertexConsumer + a (FFF)Lein; m_5601_ + 0 o p_86005_ + 1 o p_86006_ + 2 o p_86007_ + a (Leij$a;Lfkr;[FFFF[IIZ)V m_85995_ + 0 o p_85996_ + 1 o p_85997_ + 2 o p_85998_ + 3 o p_85999_ + 4 o p_86000_ + 5 o p_86001_ + 6 o p_86002_ + 7 o p_86003_ + 8 o p_86004_ + a (IIII)Lein; m_6122_ + 0 o p_85973_ + 1 o p_85974_ + 2 o p_85975_ + 3 o p_85976_ + a (FFFF)Lein; m_85950_ + 0 o p_85951_ + 1 o p_85952_ + 2 o p_85953_ + 3 o p_85954_ + a (DDD)Lein; m_5483_ + 0 o p_85945_ + 1 o p_85946_ + 2 o p_85947_ + a (Leij$a;Lfkr;FFFII)V m_85987_ + 0 o p_85988_ + 1 o p_85989_ + 2 o p_85990_ + 3 o p_85991_ + 4 o p_85992_ + 5 o p_85993_ + 6 o p_85994_ + a (II)Lein; m_7122_ + 0 o p_85971_ + 1 o p_85972_ + a (FFFFFFFFFIIFFF)V m_5954_ + 0 o p_85955_ + 1 o p_85956_ + 2 o p_85957_ + 3 o p_85958_ + 4 o p_85959_ + 5 o p_85960_ + 6 o p_85961_ + 7 o p_85962_ + 8 o p_85963_ + 9 o p_85964_ + 10 o p_85965_ + 11 o p_85966_ + 12 o p_85967_ + 13 o p_85968_ + a (I)Lein; m_193479_ + 0 o p_193480_ + a (Lorg/joml/Matrix3f;FFF)Lein; m_252939_ + 0 o p_253747_ + 1 o p_254430_ + 2 o p_253877_ + 3 o p_254167_ + a (FF)Lein; m_7421_ + 0 o p_85948_ + 1 o p_85949_ + a (Lorg/joml/Matrix4f;FFF)Lein; m_252986_ + 0 o p_254075_ + 1 o p_254519_ + 2 o p_253869_ + 3 o p_253980_ + b (I)Lein; m_85969_ + 0 o p_85970_ + b (IIII)V m_7404_ + 0 o p_166901_ + 1 o p_166902_ + 2 o p_166903_ + 3 o p_166904_ + b (II)Lein; m_7120_ + 0 o p_86010_ + 1 o p_86011_ + c (I)Lein; m_86008_ + 0 o p_86009_ + e ()V m_5752_ + k ()V m_141991_ +eio com/mojang/blaze3d/vertex/VertexFormat + a f_86012_ + b f_166905_ + c f_86013_ + d f_86014_ + e f_231232_ + (Lcom/google/common/collect/ImmutableMap;)V + 0 o p_166910_ + a ()I m_86017_ + b ()I m_86020_ + c ()Lcom/google/common/collect/ImmutableList; m_86023_ + d ()Lcom/google/common/collect/ImmutableList; m_166911_ + e ()V m_166912_ + equals (Ljava/lang/Object;)Z equals + 0 o p_86026_ + f ()V m_86024_ + g ()Leim; m_231233_ + h ()V m_166916_ + hashCode ()I hashCode + i ()V m_166917_ + toString ()Ljava/lang/String; toString +eio$1 com/mojang/blaze3d/vertex/VertexFormat$1 + a f_166918_ + ()V + static +eio$a com/mojang/blaze3d/vertex/VertexFormat$IndexType + a SHORT + b INT + c f_166923_ + d f_166924_ + e $VALUES + ()V + static + (Ljava/lang/String;III)V + 0 o p_166928_ + 1 o p_166929_ + 2 o p_166930_ + 3 o p_166931_ + a ()[Leio$a; m_166932_ + static + a (I)Leio$a; m_166933_ + static + 0 o p_166934_ + valueOf (Ljava/lang/String;)Leio$a; valueOf + static + 0 o p_166936_ + values ()[Leio$a; values + static +eio$b com/mojang/blaze3d/vertex/VertexFormat$Mode + a LINES + b LINE_STRIP + c DEBUG_LINES + d DEBUG_LINE_STRIP + e TRIANGLES + f TRIANGLE_STRIP + g TRIANGLE_FAN + h QUADS + i f_166946_ + j f_166947_ + k f_166948_ + l f_231234_ + m $VALUES + ()V + static + (Ljava/lang/String;IIIIZ)V + 0 o p_231236_ + 1 o p_231237_ + 2 o p_231238_ + 3 o p_231239_ + 4 o p_231240_ + 5 o p_231241_ + a (I)I m_166958_ + 0 o p_166959_ + a ()[Leio$b; m_166957_ + static + valueOf (Ljava/lang/String;)Leio$b; valueOf + static + 0 o p_166961_ + values ()[Leio$b; values + static +eip com/mojang/blaze3d/vertex/VertexFormatElement + a f_86030_ + b f_86031_ + c f_86032_ + d f_86033_ + e f_86034_ + (ILeip$a;Leip$b;I)V + 0 o p_86037_ + 1 o p_86038_ + 2 o p_86039_ + 3 o p_86040_ + a (I)V m_166963_ + 0 o p_166964_ + a (IJI)V m_166965_ + 0 o p_166966_ + 1 o p_166967_ + 2 o p_166968_ + a (ILeip$b;)Z m_86042_ + 0 o p_86043_ + 1 o p_86044_ + a ()Leip$a; m_86041_ + b ()Leip$b; m_86048_ + c ()I m_166969_ + d ()I m_86049_ + e ()I m_86050_ + equals (Ljava/lang/Object;)Z equals + 0 o p_86053_ + f ()Z m_166970_ + hashCode ()I hashCode + toString ()Ljava/lang/String; toString +eip$a com/mojang/blaze3d/vertex/VertexFormatElement$Type + a FLOAT + b UBYTE + c BYTE + d USHORT + e SHORT + f UINT + g INT + h f_86063_ + i f_86064_ + j f_86065_ + k $VALUES + ()V + static + (Ljava/lang/String;IILjava/lang/String;I)V + 0 o p_86069_ + 1 o p_86070_ + 2 o p_86071_ + 3 o p_86072_ + 4 o p_86073_ + a ()I m_86074_ + b ()Ljava/lang/String; m_86075_ + c ()I m_86076_ + d ()[Leip$a; m_166971_ + static + valueOf (Ljava/lang/String;)Leip$a; valueOf + static + 0 o p_86078_ + values ()[Leip$a; values + static +eip$b com/mojang/blaze3d/vertex/VertexFormatElement$Usage + a POSITION + b NORMAL + c COLOR + d UV + e PADDING + f GENERIC + g f_86086_ + h f_86087_ + i f_86088_ + j $VALUES + ()V + static + (Ljava/lang/String;ILjava/lang/String;Leip$b$b;Leip$b$a;)V + 0 o p_166973_ + 1 o p_166974_ + 2 o p_166975_ + 3 o p_166976_ + 4 o p_166977_ + a (II)V m_166978_ + 0 o p_166979_ + 1 o p_166980_ + a ()Ljava/lang/String; m_86097_ + a (IIIJII)V m_166981_ + 0 o p_166982_ + 1 o p_166983_ + 2 o p_166984_ + 3 o p_166985_ + 4 o p_166986_ + 5 o p_166987_ + b (II)V m_166989_ + static + 0 o p_166990_ + 1 o p_166991_ + b (IIIJII)V m_166992_ + static + 0 o p_166993_ + 1 o p_166994_ + 2 o p_166995_ + 3 o p_166996_ + 4 o p_166997_ + 5 o p_166998_ + b ()[Leip$b; m_166988_ + static + c (IIIJII)V m_167002_ + static + 0 o p_167003_ + 1 o p_167004_ + 2 o p_167005_ + 3 o p_167006_ + 4 o p_167007_ + 5 o p_167008_ + c (II)V m_166999_ + static + 0 o p_167000_ + 1 o p_167001_ + d (II)V m_167009_ + static + 0 o p_167010_ + 1 o p_167011_ + d (IIIJII)V m_167012_ + static + 0 o p_167013_ + 1 o p_167014_ + 2 o p_167015_ + 3 o p_167016_ + 4 o p_167017_ + 5 o p_167018_ + e (II)V m_167019_ + static + 0 o p_167020_ + 1 o p_167021_ + e (IIIJII)V m_167022_ + static + 0 o p_167023_ + 1 o p_167024_ + 2 o p_167025_ + 3 o p_167026_ + 4 o p_167027_ + 5 o p_167028_ + f (IIIJII)V m_167032_ + static + 0 o p_167033_ + 1 o p_167034_ + 2 o p_167035_ + 3 o p_167036_ + 4 o p_167037_ + 5 o p_167038_ + f (II)V m_167029_ + static + 0 o p_167030_ + 1 o p_167031_ + g (IIIJII)V m_167042_ + static + 0 o p_167043_ + 1 o p_167044_ + 2 o p_167045_ + 3 o p_167046_ + 4 o p_167047_ + 5 o p_167048_ + g (II)V m_167039_ + static + 0 o p_167040_ + 1 o p_167041_ + valueOf (Ljava/lang/String;)Leip$b; valueOf + static + 0 o p_86160_ + values ()[Leip$b; values + static +eip$b$a com/mojang/blaze3d/vertex/VertexFormatElement$Usage$ClearState + clearBufferState (II)V m_167049_ + 0 o p_167050_ + 1 o p_167051_ +eip$b$b com/mojang/blaze3d/vertex/VertexFormatElement$Usage$SetupState + setupBufferState (IIIJII)V m_167052_ + 0 o p_167053_ + 1 o p_167054_ + 2 o p_167055_ + 3 o p_167056_ + 4 o p_167057_ + 5 o p_167058_ +eiq com/mojang/blaze3d/vertex/VertexMultiConsumer + ()V + a ([Lein;)Lein; m_167063_ + static + 0 o p_167064_ + a (Lein;)Lein; m_167061_ + static + 0 o p_167062_ + a (Lein;Lein;)Lein; m_86168_ + static + 0 o p_86169_ + 1 o p_86170_ + a ()Lein; m_167060_ + static +eiq$a com/mojang/blaze3d/vertex/VertexMultiConsumer$Double + a f_86171_ + b f_86172_ + (Lein;Lein;)V + 0 o p_86174_ + 1 o p_86175_ + a (FFF)Lein; m_5601_ + 0 o p_86207_ + 1 o p_86208_ + 2 o p_86209_ + a (IIII)Lein; m_6122_ + 0 o p_86202_ + 1 o p_86203_ + 2 o p_86204_ + 3 o p_86205_ + a (DDD)Lein; m_5483_ + 0 o p_86177_ + 1 o p_86178_ + 2 o p_86179_ + a (FF)Lein; m_7421_ + 0 o p_86181_ + 1 o p_86182_ + a (II)Lein; m_7122_ + 0 o p_86199_ + 1 o p_86200_ + a (FFFFFFFFFIIFFF)V m_5954_ + 0 o p_86184_ + 1 o p_86185_ + 2 o p_86186_ + 3 o p_86187_ + 4 o p_86188_ + 5 o p_86189_ + 6 o p_86190_ + 7 o p_86191_ + 8 o p_86192_ + 9 o p_86193_ + 10 o p_86194_ + 11 o p_86195_ + 12 o p_86196_ + 13 o p_86197_ + b (IIII)V m_7404_ + 0 o p_167066_ + 1 o p_167067_ + 2 o p_167068_ + 3 o p_167069_ + b (II)Lein; m_7120_ + 0 o p_86211_ + 1 o p_86212_ + e ()V m_5752_ + k ()V m_141991_ +eiq$b com/mojang/blaze3d/vertex/VertexMultiConsumer$Multiple + a f_167071_ + ([Lein;)V + 0 o p_167073_ + a (FFF)Lein; m_5601_ + 0 o p_167147_ + 1 o p_167148_ + 2 o p_167149_ + a (Ljava/util/function/Consumer;)V m_167144_ + 0 o p_167145_ + a (IIII)Lein; m_6122_ + 0 o p_167130_ + 1 o p_167131_ + 2 o p_167132_ + 3 o p_167133_ + a (DDD)Lein; m_5483_ + 0 o p_167075_ + 1 o p_167076_ + 2 o p_167077_ + a (IILein;)V m_167140_ + static + 0 o p_167141_ + 1 o p_167142_ + 2 o p_167143_ + a (II)Lein; m_7122_ + 0 o p_167127_ + 1 o p_167128_ + a (FFFFFFFFFIIFFF)V m_5954_ + 0 o p_167087_ + 1 o p_167088_ + 2 o p_167089_ + 3 o p_167090_ + 4 o p_167091_ + 5 o p_167092_ + 6 o p_167093_ + 7 o p_167094_ + 8 o p_167095_ + 9 o p_167096_ + 10 o p_167097_ + 11 o p_167098_ + 12 o p_167099_ + 13 o p_167100_ + a (FFLein;)V m_167122_ + static + 0 o p_167123_ + 1 o p_167124_ + 2 o p_167125_ + a (IIIILein;)V m_167134_ + static + 0 o p_167135_ + 1 o p_167136_ + 2 o p_167137_ + 3 o p_167138_ + 4 o p_167139_ + a (FFFFFFFFFIIFFFLein;)V m_167101_ + static + 0 o p_167102_ + 1 o p_167103_ + 2 o p_167104_ + 3 o p_167105_ + 4 o p_167106_ + 5 o p_167107_ + 6 o p_167108_ + 7 o p_167109_ + 8 o p_167110_ + 9 o p_167111_ + 10 o p_167112_ + 11 o p_167113_ + 12 o p_167114_ + 13 o p_167115_ + 14 o p_167116_ + a (DDDLein;)V m_167078_ + static + 0 o p_167079_ + 1 o p_167080_ + 2 o p_167081_ + 3 o p_167082_ + a (FF)Lein; m_7421_ + 0 o p_167084_ + 1 o p_167085_ + a (FFFLein;)V m_167117_ + static + 0 o p_167118_ + 1 o p_167119_ + 2 o p_167120_ + 3 o p_167121_ + b (IILein;)V m_167164_ + static + 0 o p_167165_ + 1 o p_167166_ + 2 o p_167167_ + b (IIII)V m_7404_ + 0 o p_167154_ + 1 o p_167155_ + 2 o p_167156_ + 3 o p_167157_ + b (II)Lein; m_7120_ + 0 o p_167151_ + 1 o p_167152_ + b (IIIILein;)V m_167158_ + static + 0 o p_167159_ + 1 o p_167160_ + 2 o p_167161_ + 3 o p_167162_ + 4 o p_167163_ + e ()V m_5752_ + k ()V m_141991_ +eir com/mojang/blaze3d/vertex/VertexSorting + a f_276450_ + b f_276633_ + ()V + static + a (Lorg/joml/Vector3f;)Leir; m_276997_ + static + 0 o p_277725_ + a ([FII)I m_276941_ + static + 0 o p_277478_ + 1 o p_277443_ + 2 o p_277864_ + a (Leir$a;)Leir; m_277161_ + static + 0 o p_277530_ + a (Leir$a;[Lorg/joml/Vector3f;)[I m_277155_ + static + 0 o p_277384_ + 1 o p_278083_ + a (FFF)Leir; m_277071_ + static + 0 o p_277642_ + 1 o p_277654_ + 2 o p_278092_ + b (Lorg/joml/Vector3f;)F m_277160_ + static + 0 o p_277433_ + sort ([Lorg/joml/Vector3f;)[I m_277065_ + 0 o p_277527_ +eir$a com/mojang/blaze3d/vertex/VertexSorting$DistanceFunction + apply (Lorg/joml/Vector3f;)F m_276875_ + 0 o p_277761_ +eis com/mojang/blaze3d/vertex/package-info +eit com/mojang/realmsclient/KeyCombo + a f_86221_ + b f_86222_ + c f_86223_ + ([C)V + 0 o p_167171_ + ([CLjava/lang/Runnable;)V + 0 o p_86225_ + 1 o p_86226_ + a (C)Z m_86228_ + 0 o p_86229_ + a ()V m_86227_ + b ()V m_167172_ + static + toString ()Ljava/lang/String; toString +eiu com/mojang/realmsclient/RealmsMainScreen + G f_86302_ + H f_86303_ + I f_86305_ + J f_86306_ + K f_86307_ + L f_86308_ + M f_86311_ + N f_86312_ + O f_86231_ + P f_86232_ + Q f_86233_ + R f_273868_ + S f_86237_ + T f_86238_ + U f_86239_ + V f_86240_ + W f_86241_ + X f_86243_ + Y f_86244_ + Z f_271303_ + a f_86257_ + aA f_86275_ + aB f_86276_ + aC f_86277_ + aD f_86278_ + aE f_86279_ + aF f_86280_ + aG f_86281_ + aH f_86282_ + aI f_86283_ + aJ f_167174_ + aK f_86285_ + aL f_86286_ + aM f_86287_ + aN f_86288_ + aO f_86289_ + aP f_86291_ + aQ f_86292_ + aR f_86293_ + aS f_86294_ + aT f_86295_ + aU f_86296_ + aV f_86297_ + aW f_86298_ + aX f_86299_ + aY f_86258_ + aZ f_86259_ + aa f_271231_ + ab f_271441_ + ac f_86245_ + ad f_86246_ + ae f_86247_ + af f_86248_ + ag f_86249_ + ah f_86253_ + ai f_167175_ + aj f_167173_ + ak f_271378_ + al f_271412_ + am f_271271_ + an f_271314_ + ao f_278420_ + ap f_278497_ + aq f_278430_ + ar f_278488_ + as f_278451_ + at f_278457_ + au f_86254_ + av f_238705_ + aw f_238533_ + ax f_273876_ + ay f_86256_ + az f_86274_ + b f_86300_ + ba f_86260_ + bb f_86261_ + bc f_86262_ + bd f_86263_ + be f_212359_ + bf f_86265_ + bg f_86266_ + bh f_273903_ + bi f_86268_ + bj f_86269_ + bk f_86270_ + bl f_86271_ + bm f_86272_ + bn f_86273_ + c f_86301_ + ()V + static + (Leuq;)V + 0 o p_86315_ + A (Leiu;)Leov; m_274440_ + static + 0 o p_275371_ + B (Leiu;)Leov; m_274485_ + static + 0 o p_275606_ + B ()Z m_86318_ + C ()Z m_86321_ + static + C (Leiu;)Leov; m_167221_ + static + 0 o p_167222_ + D ()Z m_86324_ + D (Leiu;)Leov; m_167209_ + static + 0 o p_167210_ + E ()V m_274604_ + E (Leiu;)Lenn; m_278839_ + static + 0 o p_279105_ + F ()V m_240107_ + G ()V m_86327_ + H ()Ljava/util/List; m_86330_ + I ()V m_86336_ + J ()V m_86342_ + K ()V m_86345_ + L ()V m_86348_ + M ()V m_86351_ + N ()V m_86357_ + O ()Lejq; m_193481_ + P ()V m_86360_ + Q ()I m_86363_ + R ()I m_86366_ + S ()V m_231242_ + T ()V m_86372_ + U ()V m_86375_ + V ()V m_86378_ + static + a (Ljava/util/List;Ljava/lang/Object;)V m_273957_ + 0 o p_274629_ + 1 o p_274630_ + a (DDI)Z m_6375_ + 0 o p_86397_ + 1 o p_86398_ + 2 o p_86399_ + a (III)Z m_7933_ + 0 o p_86401_ + 1 o p_86402_ + 2 o p_86403_ + a (ZLejq;)V m_193493_ + 0 o p_193494_ + 1 o p_193495_ + a (Leiu;Lsw;)V m_258074_ + static + 0 o p_259883_ + 1 o p_259777_ + a (CLeit;)V m_231243_ + static + 0 o p_231244_ + 1 o p_231245_ + a (Leiu$i;Ljava/util/function/Consumer;)V m_274332_ + static + 0 o p_275561_ + 1 o p_275686_ + a (Ljava/util/UUID;Lejp;)Z m_273951_ + static + 0 o p_274620_ + 1 o p_274621_ + a (Lepi;)V m_279669_ + 0 o p_280683_ + a (Ljava/util/UUID;Ljava/lang/Object;)V m_273958_ + 0 o p_274631_ + 1 o p_274632_ + a (CI)Z m_5534_ + 0 o p_86388_ + 1 o p_86389_ + a (Lejq;Leuq;)V m_86515_ + 0 o p_86516_ + 1 o p_86517_ + a ()Z m_86528_ + a (Ljava/util/List;Leiz;)Ljava/lang/Object; m_273954_ + static + 0 o p_274624_ + 1 o p_274625_ + a (Leox;IIZIIZZ)V m_280162_ + 0 o p_282435_ + 1 o p_283627_ + 2 o p_282268_ + 3 o p_282717_ + 4 o p_282793_ + 5 o p_283443_ + 6 o p_282143_ + 7 o p_282764_ + a (Ljava/util/UUID;Leiz;)Ljava/lang/Object; m_273956_ + static + 0 o p_274627_ + 1 o p_274628_ + a (Leiu$i;Lenn;)Ljava/lang/Object; m_273959_ + static + 0 o p_274633_ + 1 o p_274634_ + a (Z)V m_167190_ + 0 o p_167191_ + a (Leox;IIIII)V m_280377_ + 0 o p_283382_ + 1 o p_282134_ + 2 o p_283200_ + 3 o p_281673_ + 4 o p_282920_ + 5 o p_282554_ + a (Ljava/lang/Throwable;)Ljava/lang/Void; m_273955_ + static + 0 o p_274626_ + a (Ljava/util/UUID;)V m_274580_ + 0 o p_275349_ + a (Lekq;)Lelx$c; m_86354_ + 0 o p_238836_ + a (Ljava/lang/Integer;)V m_279668_ + 0 o p_280682_ + a (Lejq;)V m_86513_ + 0 o p_86514_ + a (Leox;IIF)V m_88315_ + 0 o p_282736_ + 1 o p_283347_ + 2 o p_282480_ + 3 o p_283485_ + a (Lacq;)Z m_238851_ + static + 0 o p_231247_ + a (Lejv;)V m_238846_ + 0 o p_238847_ + a (DD)Z m_86393_ + 0 o p_86394_ + 1 o p_86395_ + a (Leiu$h;Lejp;)V m_274411_ + 0 o p_275392_ + 1 o p_275492_ + a (Lakx;)V m_86406_ + static + 0 o p_86407_ + a (Leiu;)Lenn; m_167186_ + static + 0 o p_167187_ + a (Ljava/lang/Boolean;)V m_231251_ + 0 o p_238839_ + a (Lekq;Lejo;)V m_238848_ + 0 o p_238849_ + 1 o p_231355_ + a (Leox;IIII)V m_280597_ + 0 o p_282859_ + 1 o p_283367_ + 2 o p_283231_ + 3 o p_281593_ + 4 o p_281773_ + a (Lejq;Z)V m_231248_ + 0 o p_231249_ + 1 o p_231253_ + a (Leiu;Leqt;)V m_271543_ + static + 0 o p_272288_ + 1 o p_272289_ + a (Lejq;Leiu$d;)Z m_238843_ + static + 0 o p_238844_ + 1 o p_231250_ + b (Lepi;)V m_86678_ + 0 o p_86679_ + b (Lejq;)Z m_86562_ + 0 o p_86563_ + b (Leox;IIII)V m_280236_ + 0 o p_283235_ + 1 o p_281895_ + 2 o p_283564_ + 3 o p_281543_ + 4 o p_282977_ + b (Lacq;)Z m_238841_ + static + 0 o p_193492_ + b (Leiu;)Lenn; m_167192_ + static + 0 o p_167193_ + b ()V m_7856_ + c (Lejq;)Z m_86594_ + 0 o p_86595_ + c ()V m_264589_ + c (Leox;)V m_86626_ + 0 o p_282133_ + c (Leox;IIII)V m_280129_ + 0 o p_281685_ + 1 o p_282388_ + 2 o p_282489_ + 3 o p_281732_ + 4 o p_283445_ + c (Leox;IIF)V m_280475_ + 0 o p_283329_ + 1 o p_290033_ + 2 o p_290032_ + 3 o p_290030_ + c (Ljava/util/List;)V m_273952_ + 0 o p_274622_ + c (Lepi;)V m_86621_ + 0 o p_86622_ + c (Leiu;)Lenn; m_167194_ + static + 0 o p_167195_ + d (Leox;)V m_86601_ + 0 o p_282858_ + d (Lepi;)V m_86671_ + 0 o p_86672_ + d (Ljava/util/List;)V m_275762_ + 0 o p_275856_ + d ()V m_264302_ + d (Lejq;)Z m_86619_ + 0 o p_86620_ + d (Leiu;)Lenn; m_86544_ + static + 0 o p_86545_ + e (Lepi;)V m_86658_ + 0 o p_86659_ + e (Lejq;)Z m_86644_ + 0 o p_86645_ + e ()V m_272189_ + e (Leiu;)Lenn; m_86582_ + static + 0 o p_86583_ + f (Lejq;)V m_193499_ + 0 o p_193500_ + f ()V m_86600_ + f (Lepi;)V m_231254_ + static + 0 o p_231255_ + f (Leiu;)Lenn; m_167196_ + static + 0 o p_167197_ + g (Lejq;)V m_86656_ + 0 o p_86657_ + g ()V m_193498_ + g (Lepi;)V m_279667_ + 0 o p_280681_ + g (Leiu;)Lenn; m_167198_ + static + 0 o p_167199_ + h ()Leiu; m_86660_ + h (Lepi;)V m_86596_ + 0 o p_86597_ + h (Lejq;)V m_86669_ + 0 o p_86670_ + h (Leiu;)Lenn; m_167201_ + static + 0 o p_167202_ + i (Lejq;)V m_86676_ + 0 o p_86677_ + i (Leiu;)Lenn; m_86632_ + static + 0 o p_86633_ + j (Lejq;)Z m_86683_ + 0 o p_86684_ + j (Leiu;)Lenn; m_86654_ + static + 0 o p_86655_ + k (Leiu;)Lenn; m_86667_ + static + 0 o p_86668_ + k (Lejq;)Z m_86688_ + 0 o p_86689_ + l (Leiu;)Lenn; m_86674_ + static + 0 o p_86675_ + m (Leiu;)Lenn; m_86681_ + static + 0 o p_86682_ + n (Leiu;)Leov; m_231256_ + static + 0 o p_231257_ + o (Leiu;)Leov; m_274513_ + static + 0 o p_275711_ + p (Leiu;)Leov; m_167205_ + static + 0 o p_167206_ + q (Leiu;)Lenn; m_167203_ + static + 0 o p_167204_ + r (Leiu;)Lenn; m_278724_ + static + 0 o p_279247_ + s (Leiu;)Lenn; m_278804_ + static + 0 o p_279156_ + t (Leiu;)Leov; m_274617_ + static + 0 o p_275390_ + u (Leiu;)Leov; m_167215_ + static + 0 o p_167216_ + v (Leiu;)Leov; m_167211_ + static + 0 o p_167212_ + w (Leiu;)Leov; m_167219_ + static + 0 o p_167220_ + x (Leiu;)Leov; m_167223_ + static + 0 o p_167224_ + y (Leiu;)Leov; m_167225_ + static + 0 o p_167226_ + z (Leiu;)Leov; m_167176_ + static + 0 o p_167177_ +eiu$1 com/mojang/realmsclient/RealmsMainScreen$1 + a f_86733_ + (Leiu;Ljava/lang/String;)V + 0 o p_86735_ + 1 o p_86736_ + a (Lekm;)V m_231260_ + 0 o p_231261_ + a ()V m_86740_ + b ()V m_86741_ + run ()V run +eiu$2 com/mojang/realmsclient/RealmsMainScreen$2 + a f_86743_ + (Leiu;Ljava/lang/String;)V + 0 o p_86745_ + 1 o p_86746_ + a (Lekm;)V m_86748_ + 0 o p_86749_ + a ()V m_86747_ + run ()V run +eiu$3 com/mojang/realmsclient/RealmsMainScreen$3 + a f_86751_ + (Leiu;Ljava/lang/String;)V + 0 o p_86753_ + 1 o p_86754_ + run ()V run +eiu$4 com/mojang/realmsclient/RealmsMainScreen$4 + a f_86756_ + (Leiu;Ljava/lang/String;)V + 0 o p_86758_ + 1 o p_86759_ + run ()V run +eiu$5 com/mojang/realmsclient/RealmsMainScreen$5 + a f_193501_ + b f_86761_ + (Leiu;Ljava/lang/String;Lejq;)V + 0 o p_193503_ + 1 o p_193504_ + 2 o p_193505_ + a (Lekm;)V m_86767_ + 0 o p_86768_ + a (Lejq;)V m_86765_ + 0 o p_86766_ + run ()V run +eiu$a com/mojang/realmsclient/RealmsMainScreen$ButtonEntry + a f_273854_ + c f_273936_ + d f_273836_ + (Leiu;Lepi;)V + 0 o p_275462_ + 1 o p_275726_ + a (III)Z m_7933_ + 0 o p_275630_ + 1 o p_275328_ + 2 o p_275519_ + a ()Lsw; m_142172_ + a (DDI)Z m_6375_ + 0 o p_275240_ + 1 o p_275616_ + 2 o p_275528_ + a (Leox;IIIIIIIZF)V m_6311_ + 0 o p_283542_ + 1 o p_282029_ + 2 o p_281480_ + 3 o p_281377_ + 4 o p_283160_ + 5 o p_281920_ + 6 o p_283267_ + 7 o p_281282_ + 8 o p_281269_ + 9 o p_282372_ +eiu$b com/mojang/realmsclient/RealmsMainScreen$CloseButton + a f_86770_ + (Leiu;)V + 0 o p_86772_ + a (Leiu;Lepi;)V m_86773_ + static + 0 o p_86774_ + 1 o p_86775_ +eiu$c com/mojang/realmsclient/RealmsMainScreen$CrossButton + (Lepi$c;Lsw;)V + 0 o p_275420_ + 1 o p_275193_ + (IILepi$c;Lsw;)V + 0 o p_275644_ + 1 o p_275716_ + 2 o p_275547_ + 3 o p_275717_ + b (Leox;IIF)V m_87963_ + 0 o p_281814_ + 1 o p_281517_ + 2 o p_282662_ + 3 o p_283217_ +eiu$d com/mojang/realmsclient/RealmsMainScreen$Entry + b f_86781_ + (Leiu;)V + 0 o p_86783_ + b ()Lejq; m_183377_ +eiu$e com/mojang/realmsclient/RealmsMainScreen$NewsButton + a f_86799_ + b f_278375_ + (Leiu;)V + 0 o p_86801_ + a (Leiu;Lepi;)V m_273960_ + static + 0 o p_274635_ + 1 o p_274636_ + b (Leox;IIF)V m_87963_ + 0 o p_281287_ + 1 o p_282698_ + 2 o p_282096_ + 3 o p_283518_ +eiu$f com/mojang/realmsclient/RealmsMainScreen$NotificationMessageEntry + a f_273824_ + c f_273834_ + d f_273894_ + e f_273853_ + f f_273835_ + g f_273924_ + h f_273947_ + i f_273817_ + j f_273902_ + k f_273811_ + l f_273937_ + (Leiu;Lsw;Lejp;)V + 0 o p_275733_ + 1 o p_275215_ + 2 o p_275494_ + a (I)V m_274357_ + 0 o p_275670_ + a (III)Z m_7933_ + 0 o p_275646_ + 1 o p_275453_ + 2 o p_275621_ + a (Lejp;Lepi;)V m_274379_ + 0 o p_275708_ + 1 o p_275478_ + a ()Lsw; m_142172_ + a (Leox;IIIIIIIZF)V m_6311_ + 0 o p_281768_ + 1 o p_275375_ + 2 o p_275358_ + 3 o p_275447_ + 4 o p_275694_ + 5 o p_275477_ + 6 o p_275710_ + 7 o p_275677_ + 8 o p_275542_ + 9 o p_275323_ + a (DDI)Z m_6375_ + 0 o p_275209_ + 1 o p_275338_ + 2 o p_275560_ + a (Leox;IIFLepf;)V m_279670_ + static + 0 o p_280684_ + 1 o p_280685_ + 2 o p_280686_ + 3 o p_280687_ + 4 o p_280688_ + b (I)V m_274589_ + 0 o p_275267_ + b (Leox;IIIIIIIZF)V m_274437_ + 0 o p_281374_ + 1 o p_282622_ + 2 o p_283656_ + 3 o p_281830_ + 4 o p_281651_ + 5 o p_283685_ + 6 o p_281784_ + 7 o p_282510_ + 8 o p_283146_ + 9 o p_283324_ +eiu$g com/mojang/realmsclient/RealmsMainScreen$PendingInvitesButton + C f_278406_ + D f_278403_ + E f_278506_ + F f_278435_ + G f_278376_ + H f_278408_ + I f_278385_ + J f_278453_ + K f_278437_ + a f_86810_ + ()V + static + (Leiu;)V + 0 o p_86812_ + a (Leiu;Lepi;)V m_278766_ + static + 0 o p_279429_ + 1 o p_279110_ + a ()V m_86821_ + a (Leox;)V m_280587_ + 0 o p_282293_ + b (Leox;IIF)V m_87963_ + 0 o p_281409_ + 1 o p_282719_ + 2 o p_282753_ + 3 o p_281312_ +eiu$h com/mojang/realmsclient/RealmsMainScreen$RealmSelectionList + a f_86822_ + (Leiu;)V + 0 o p_86825_ + a (Lepc$a;)V m_6987_ + 0 o p_86846_ + a (Leiu$d;)V m_6987_ + 0 o p_86849_ + a ()I m_5775_ + b ()I m_5759_ +eiu$i com/mojang/realmsclient/RealmsMainScreen$RealmsCall + request (Leiz;)Ljava/lang/Object; m_274420_ + 0 o p_275639_ +eiu$j com/mojang/realmsclient/RealmsMainScreen$ServerEntry + a f_86852_ + c f_167228_ + d f_86853_ + (Leiu;Lejq;)V + 0 o p_86855_ + 1 o p_86856_ + a (Lejq;Leox;IIIIII)V m_271912_ + 0 o p_272798_ + 1 o p_283451_ + 2 o p_273706_ + 3 o p_272591_ + 4 o p_273561_ + 5 o p_273468_ + 6 o p_273073_ + 7 o p_273187_ + a (III)Z m_7933_ + 0 o p_279120_ + 1 o p_279121_ + 2 o p_279296_ + a ()Lsw; m_142172_ + a (Lejq;Leox;IIII)V m_280291_ + 0 o p_281434_ + 1 o p_283436_ + 2 o p_282392_ + 3 o p_283179_ + 4 o p_282272_ + 5 o p_281903_ + a (Leox;IIIIIIIZF)V m_6311_ + 0 o p_283093_ + 1 o p_281645_ + 2 o p_283047_ + 3 o p_283525_ + 4 o p_282321_ + 5 o p_282391_ + 6 o p_281913_ + 7 o p_282475_ + 8 o p_282378_ + 9 o p_282843_ + a (DDI)Z m_6375_ + 0 o p_86858_ + 1 o p_86859_ + 2 o p_86860_ + b ()Lejq; m_183377_ + b (Lejq;Leox;IIII)V m_280176_ + 0 o p_282180_ + 1 o p_281405_ + 2 o p_281795_ + 3 o p_282842_ + 4 o p_283593_ + 5 o p_281798_ +eiu$k com/mojang/realmsclient/RealmsMainScreen$TrialEntry + a f_86903_ + (Leiu;)V + 0 o p_86905_ + a ()Lsw; m_142172_ + a (Leox;IIIIIIIZF)V m_6311_ + 0 o p_282936_ + 1 o p_282868_ + 2 o p_282346_ + 3 o p_281297_ + 4 o p_282360_ + 5 o p_283241_ + 6 o p_282253_ + 7 o p_282299_ + 8 o p_282018_ + 9 o p_281364_ + a (DDI)Z m_6375_ + 0 o p_86910_ + 1 o p_86911_ + 2 o p_86912_ + a (Leox;IIIII)V m_86913_ + 0 o p_283578_ + 1 o p_86915_ + 2 o p_86916_ + 3 o p_86917_ + 4 o p_86918_ + 5 o p_86919_ +eiv com/mojang/realmsclient/Unit + a B + b KB + c MB + d GB + e f_167231_ + f $VALUES + ()V + static + (Ljava/lang/String;I)V + 0 o p_86938_ + 1 o p_86939_ + a (J)Leiv; m_86940_ + static + 0 o p_86941_ + a (JLeiv;)D m_86942_ + static + 0 o p_86943_ + 1 o p_86944_ + a ()[Leiv; m_167232_ + static + b (J)Ljava/lang/String; m_86945_ + static + 0 o p_86946_ + b (JLeiv;)Ljava/lang/String; m_86947_ + static + 0 o p_86948_ + 1 o p_86949_ + valueOf (Ljava/lang/String;)Leiv; valueOf + static + 0 o p_86951_ + values ()[Leiv; values + static +eiw com/mojang/realmsclient/client/FileDownload + a f_86953_ + b f_86954_ + c f_86955_ + d f_86956_ + e f_86957_ + f f_86958_ + g f_86959_ + h f_86960_ + i f_86961_ + j f_86962_ + k f_86963_ + ()V + static + ()V + a (Ljava/io/File;)V m_86987_ + static + 0 o p_86988_ + a (Lekg;Leld$a;Ljava/lang/String;Ldyy;)V m_86977_ + 0 o p_86978_ + 1 o p_86979_ + 2 o p_86980_ + 3 o p_86981_ + a ()V m_86966_ + a (Ljava/lang/String;Ljava/io/File;Ldyy;)V m_86991_ + 0 o p_86992_ + 1 o p_86993_ + 2 o p_86994_ + a (Lekg;Ljava/lang/String;Leld$a;Ldyy;)V m_86982_ + 0 o p_86983_ + 1 o p_86984_ + 2 o p_86985_ + 3 o p_86986_ + a (Ljava/lang/String;)J m_86989_ + 0 o p_86990_ + b ()Z m_86995_ + b (Ljava/lang/String;)Ljava/lang/String; m_87001_ + static + 0 o p_87002_ + c ()Z m_87003_ + d ()Z m_87009_ +eiw$a com/mojang/realmsclient/client/FileDownload$DownloadCountingOutputStream + a f_87012_ + (Ljava/io/OutputStream;)V + 0 o p_193509_ + a (Ljava/awt/event/ActionListener;)V m_87016_ + 0 o p_87017_ + afterWrite (I)V afterWrite + 0 o p_87019_ +eiw$b com/mojang/realmsclient/client/FileDownload$ProgressListener + a f_87020_ + b f_87021_ + c f_87022_ + d f_87023_ + e f_87024_ + (Leiw;Ljava/lang/String;Ljava/io/File;Ldyy;Leld$a;)V + 0 o p_87026_ + 1 o p_87027_ + 2 o p_87028_ + 3 o p_87029_ + 4 o p_87030_ + actionPerformed (Ljava/awt/event/ActionEvent;)V actionPerformed + 0 o p_87039_ +eiw$c com/mojang/realmsclient/client/FileDownload$ResourcePackProgressListener + a f_87040_ + b f_87041_ + c f_87042_ + d f_87043_ + (Leiw;Ljava/io/File;Leld$a;Lekg;)V + 0 o p_87045_ + 1 o p_87046_ + 2 o p_87047_ + 3 o p_87048_ + actionPerformed (Ljava/awt/event/ActionEvent;)V actionPerformed + 0 o p_87056_ +eix com/mojang/realmsclient/client/FileUpload + a f_87057_ + b f_167233_ + c f_167234_ + d f_87058_ + e f_87059_ + f f_87060_ + g f_87061_ + h f_87062_ + i f_87063_ + j f_87064_ + k f_87065_ + l f_87066_ + m f_87067_ + n f_87068_ + ()V + static + (Ljava/io/File;JILeke;Leoc;Ljava/lang/String;Lejd;)V + 0 o p_87071_ + 1 o p_87072_ + 2 o p_87073_ + 3 o p_87074_ + 4 o p_87075_ + 5 o p_87076_ + 6 o p_87077_ + a (Ljava/util/function/Consumer;)V m_87084_ + 0 o p_87085_ + a (I)Lelv; m_87079_ + 0 o p_87080_ + a (Lorg/apache/http/HttpResponse;)J m_87086_ + 0 o p_87087_ + a (JI)Z m_87081_ + 0 o p_87082_ + 1 o p_87083_ + a (Lorg/apache/http/client/methods/HttpPost;)V m_87091_ + 0 o p_87092_ + a (Lorg/apache/http/client/methods/HttpPost;Lorg/apache/http/impl/client/CloseableHttpClient;)V m_87093_ + 0 o p_87094_ + 1 o p_87095_ + a ()V m_87078_ + a (Lorg/apache/http/HttpResponse;Lelv$a;)V m_87088_ + 0 o p_87089_ + 1 o p_87090_ + b (JI)Lelv; m_87097_ + 0 o p_87098_ + 1 o p_87099_ + b ()Z m_87096_ + c ()Lelv; m_87100_ +eix$a com/mojang/realmsclient/client/FileUpload$CustomInputStreamEntity + a f_87101_ + b f_87102_ + c f_87103_ + (Ljava/io/InputStream;JLejd;)V + 0 o p_87105_ + 1 o p_87106_ + 2 o p_87107_ + writeTo (Ljava/io/OutputStream;)V writeTo + 0 o p_87109_ +eiy com/mojang/realmsclient/client/Ping + ()V + a ()Ljava/util/List; m_87125_ + static + a ([Leiy$a;)Ljava/util/List; m_87130_ + static + 0 o p_87131_ + a (Ljava/lang/String;)I m_87126_ + static + 0 o p_87127_ + b ()J m_87132_ + static +eiy$a com/mojang/realmsclient/client/Ping$Region + a US_EAST_1 + b US_WEST_2 + c US_WEST_1 + d EU_WEST_1 + e AP_SOUTHEAST_1 + f AP_SOUTHEAST_2 + g AP_NORTHEAST_1 + h SA_EAST_1 + i f_87141_ + j f_87142_ + k $VALUES + ()V + static + (Ljava/lang/String;ILjava/lang/String;Ljava/lang/String;)V + 0 o p_87146_ + 1 o p_87147_ + 2 o p_87148_ + 3 o p_87149_ + a ()[Leiy$a; m_167236_ + static + valueOf (Ljava/lang/String;)Leiy$a; valueOf + static + 0 o p_87155_ + values ()[Leiy$a; values + static +eiz com/mojang/realmsclient/client/RealmsClient + A f_167274_ + B f_167237_ + C f_167238_ + D f_167239_ + E f_167240_ + F f_167241_ + G f_167242_ + H f_167243_ + I f_167244_ + J f_167245_ + K f_167246_ + L f_167247_ + M f_167248_ + N f_167249_ + O f_167250_ + P f_167251_ + Q f_167252_ + R f_167253_ + S f_273827_ + T f_273877_ + U f_167254_ + V f_87163_ + a f_87157_ + b f_87158_ + c f_87159_ + d f_87160_ + e f_87161_ + f f_87162_ + g f_167255_ + h f_167256_ + i f_167257_ + j f_167258_ + k f_167259_ + l f_167260_ + m f_167261_ + n f_167262_ + o f_273928_ + p f_167263_ + q f_167264_ + r f_167265_ + s f_167266_ + t f_167267_ + u f_167268_ + v f_167269_ + w f_167270_ + x f_167271_ + y f_167272_ + z f_167273_ + ()V + static + (Ljava/lang/String;Ljava/lang/String;Lenn;)V + 0 o p_87166_ + 1 o p_87167_ + 2 o p_87168_ + a (JLemi;)Ljava/lang/Boolean; m_167275_ + 0 o p_167276_ + 1 o p_167277_ + a (Lejc;)Ljava/lang/String; m_87195_ + 0 o p_87196_ + a (IILejq$c;)Leki; m_87170_ + 0 o p_87171_ + 1 o p_87172_ + 2 o p_87173_ + a (Lejj;)Z m_87197_ + 0 o p_87198_ + a (Ljava/lang/String;Ljava/lang/String;)Ljava/lang/String; m_87203_ + 0 o p_87204_ + 1 o p_87205_ + a (Ljava/util/List;)V m_274582_ + 0 o p_275212_ + a ()Leiz; m_87169_ + static + a (Lenn;)Leiz; m_239151_ + static + 0 o p_239152_ + a (JLjava/lang/String;Ljava/lang/String;)V m_87191_ + 0 o p_87192_ + 1 o p_87193_ + 2 o p_87194_ + a (Ljava/lang/String;)V m_87201_ + 0 o p_87202_ + a (JILejx;)V m_87179_ + 0 o p_87180_ + 1 o p_87181_ + 2 o p_87182_ + a (I)Ljava/lang/String; m_200936_ + static + 0 o p_200937_ + a (JLjava/lang/String;)V m_87183_ + 0 o p_87184_ + 1 o p_87185_ + a (Lejl;)V m_87199_ + 0 o p_87200_ + a (J)Lejq; m_87174_ + 0 o p_87175_ + a (JI)Z m_87176_ + 0 o p_87177_ + 1 o p_87178_ + a (Leiz$b;)V m_289606_ + static + 0 o p_289648_ + b (JLjava/lang/String;)Lejq; m_87212_ + 0 o p_87213_ + 1 o p_87214_ + b (JLjava/lang/String;Ljava/lang/String;)V m_87215_ + 0 o p_87216_ + 1 o p_87217_ + 2 o p_87218_ + b (Ljava/util/List;)V m_274401_ + 0 o p_275407_ + b (JI)Lekg; m_87209_ + 0 o p_87210_ + 1 o p_87211_ + b (Ljava/lang/String;)V m_87219_ + 0 o p_87220_ + b (J)Lekc; m_167278_ + 0 o p_167279_ + b ()V m_87206_ + static + c ()V m_87221_ + static + c (JLjava/lang/String;)V m_87224_ + 0 o p_87225_ + 1 o p_87226_ + c (J)Lejr; m_87207_ + 0 o p_87208_ + c (Ljava/util/List;)Lcom/google/gson/JsonArray; m_274462_ + static + 0 o p_275393_ + c (Ljava/lang/String;)Ljava/lang/String; m_87227_ + 0 o p_87228_ + d ()V m_87229_ + static + d (JLjava/lang/String;)Ljava/lang/Boolean; m_87232_ + 0 o p_87233_ + 1 o p_87234_ + d (J)V m_87222_ + 0 o p_87223_ + e ()Lejs; m_87235_ + e (JLjava/lang/String;)Leji; m_87238_ + 0 o p_87239_ + 1 o p_87240_ + e (J)Lejg; m_87230_ + 0 o p_87231_ + f (J)Ljava/lang/Boolean; m_87236_ + 0 o p_87237_ + f (JLjava/lang/String;)Leji; m_87244_ + 0 o p_87245_ + 1 o p_87246_ + f ()Ljava/util/List; m_274314_ + g (J)Ljava/lang/Boolean; m_87242_ + 0 o p_87243_ + g (JLjava/lang/String;)Ljava/lang/Boolean; m_87250_ + 0 o p_87251_ + 1 o p_87252_ + g ()Lejv; m_87241_ + h (J)Lekd; m_87248_ + 0 o p_87249_ + h ()Ljava/lang/Boolean; m_87247_ + h (JLjava/lang/String;)Leke; m_87256_ + 0 o p_87257_ + 1 o p_87258_ + i (J)V m_87254_ + 0 o p_87255_ + i ()Ljava/lang/Boolean; m_87253_ + j ()Leiz$a; m_87259_ + k ()I m_87260_ + l ()Lejk; m_87261_ + m ()V m_87262_ + n ()Lejo; m_87263_ + o ()Ljava/lang/Boolean; m_87264_ + p ()Ljava/util/Optional; m_289610_ + static +eiz$a com/mojang/realmsclient/client/RealmsClient$CompatibleVersionResponse + a COMPATIBLE + b OUTDATED + c OTHER + d $VALUES + ()V + static + (Ljava/lang/String;I)V + 0 o p_87271_ + 1 o p_87272_ + a ()[Leiz$a; m_167280_ + static + valueOf (Ljava/lang/String;)Leiz$a; valueOf + static + 0 o p_87274_ + values ()[Leiz$a; values + static +eiz$b com/mojang/realmsclient/client/RealmsClient$Environment + a PRODUCTION + b STAGE + c LOCAL + d f_87279_ + e f_87280_ + f $VALUES + ()V + static + (Ljava/lang/String;ILjava/lang/String;Ljava/lang/String;)V + 0 o p_87284_ + 1 o p_87285_ + 2 o p_87286_ + 3 o p_87287_ + a (Ljava/lang/String;)Ljava/util/Optional; m_289598_ + static + 0 o p_289688_ + a ()[Leiz$b; m_167281_ + static + valueOf (Ljava/lang/String;)Leiz$b; valueOf + static + 0 o p_87289_ + values ()[Leiz$b; values + static +ej net/minecraft/commands/arguments/ObjectiveArgument + a f_101952_ + b f_101953_ + c f_101954_ + ()V + static + ()V + a ()Lej; m_101957_ + static + a (Ljava/lang/Object;)Lcom/mojang/brigadier/Message; m_101968_ + static + 0 o p_101969_ + a (Lcom/mojang/brigadier/context/CommandContext;Ljava/lang/String;)Lefd; m_101960_ + static + 0 o p_101961_ + 1 o p_101962_ + a (Lcom/mojang/brigadier/StringReader;)Ljava/lang/String; parse + 0 o p_101959_ + b (Ljava/lang/Object;)Lcom/mojang/brigadier/Message; m_101970_ + static + 0 o p_101971_ + b (Lcom/mojang/brigadier/context/CommandContext;Ljava/lang/String;)Lefd; m_101965_ + static + 0 o p_101966_ + 1 o p_101967_ + getExamples ()Ljava/util/Collection; getExamples + listSuggestions (Lcom/mojang/brigadier/context/CommandContext;Lcom/mojang/brigadier/suggestion/SuggestionsBuilder;)Ljava/util/concurrent/CompletableFuture; listSuggestions + 0 o p_101974_ + 1 o p_101975_ + parse (Lcom/mojang/brigadier/StringReader;)Ljava/lang/Object; parse + 0 o p_101977_ +eja com/mojang/realmsclient/client/RealmsClientConfig + a f_87291_ + ()V + a ()Ljava/net/Proxy; m_87292_ + static + a (Ljava/net/Proxy;)V m_87293_ + static + 0 o p_87294_ +ejb com/mojang/realmsclient/client/RealmsError + a f_87295_ + b f_87296_ + c f_87297_ + ()V + static + (Ljava/lang/String;I)V + 0 o p_87300_ + 1 o p_87301_ + a (Ljava/lang/String;)Lejb; m_87303_ + static + 0 o p_87304_ + a ()Ljava/lang/String; m_87302_ + b ()I m_87305_ +ejc com/mojang/realmsclient/client/Request + a f_87306_ + b f_87307_ + c f_87308_ + d f_167283_ + e f_167284_ + (Ljava/lang/String;II)V + 0 o p_87310_ + 1 o p_87311_ + 2 o p_87312_ + a (Ljava/io/InputStream;)Ljava/lang/String; m_87314_ + 0 o p_87315_ + a (Ljava/lang/String;)Lejc; m_87316_ + static + 0 o p_87317_ + a (Ljava/lang/String;Ljava/lang/String;II)Lejc; m_87325_ + static + 0 o p_87326_ + 1 o p_87327_ + 2 o p_87328_ + 3 o p_87329_ + a ()I m_87313_ + a (Ljava/lang/String;II)Lejc; m_87318_ + static + 0 o p_87319_ + 1 o p_87320_ + 2 o p_87321_ + a (Ljava/net/HttpURLConnection;Ljava/lang/String;)Ljava/lang/String; m_87332_ + static + 0 o p_87333_ + 1 o p_87334_ + a (Ljava/lang/String;Ljava/lang/String;)V m_87322_ + 0 o p_87323_ + 1 o p_87324_ + a (Ljava/net/HttpURLConnection;)I m_87330_ + static + 0 o p_87331_ + a (Ljava/net/HttpURLConnection;Ljava/lang/String;Ljava/lang/String;)V m_87335_ + static + 0 o p_87336_ + 1 o p_87337_ + 2 o p_87338_ + b (Ljava/lang/String;Ljava/lang/String;)Lejc; m_167285_ + 0 o p_167286_ + 1 o p_167287_ + b (Ljava/lang/String;)Lejc; m_87340_ + static + 0 o p_87341_ + b ()I m_87339_ + b (Ljava/lang/String;Ljava/lang/String;II)Lejc; m_87345_ + static + 0 o p_87346_ + 1 o p_87347_ + 2 o p_87348_ + 3 o p_87349_ + c (Ljava/lang/String;)Ljava/lang/String; m_87351_ + 0 o p_87352_ + c ()Ljava/lang/String; m_87350_ + c (Ljava/lang/String;Ljava/lang/String;)Lejc; m_87342_ + static + 0 o p_87343_ + 1 o p_87344_ + d ()Lejc; m_87356_ + d (Ljava/lang/String;Ljava/lang/String;)Lejc; m_87353_ + static + 0 o p_87354_ + 1 o p_87355_ + e ()Lejc; m_7218_ + f ()V m_87357_ +ejc$a com/mojang/realmsclient/client/Request$Delete + (Ljava/lang/String;II)V + 0 o p_87359_ + 1 o p_87360_ + 2 o p_87361_ + e ()Lejc; m_7218_ + f ()Lejc$a; m_7218_ +ejc$b com/mojang/realmsclient/client/Request$Get + (Ljava/lang/String;II)V + 0 o p_87365_ + 1 o p_87366_ + 2 o p_87367_ + e ()Lejc; m_7218_ + f ()Lejc$b; m_7218_ +ejc$c com/mojang/realmsclient/client/Request$Post + c f_87370_ + (Ljava/lang/String;Ljava/lang/String;II)V + 0 o p_87372_ + 1 o p_87373_ + 2 o p_87374_ + 3 o p_87375_ + e ()Lejc; m_7218_ + f ()Lejc$c; m_7218_ +ejc$d com/mojang/realmsclient/client/Request$Put + c f_87378_ + (Ljava/lang/String;Ljava/lang/String;II)V + 0 o p_87380_ + 1 o p_87381_ + 2 o p_87382_ + 3 o p_87383_ + e ()Lejc; m_7218_ + f ()Lejc$d; m_7218_ +ejd com/mojang/realmsclient/client/UploadStatus + a f_87386_ + b f_87387_ + ()V +eje com/mojang/realmsclient/client/package-info +ejf com/mojang/realmsclient/dto/Backup + a f_87389_ + b f_87390_ + c f_87391_ + d f_87392_ + e f_87393_ + f f_87394_ + g f_87395_ + ()V + static + ()V + a ()Z m_87398_ + a (Lcom/google/gson/JsonElement;)Lejf; m_87399_ + static + 0 o p_87400_ + a (Z)V m_87403_ + 0 o p_87404_ +ejg com/mojang/realmsclient/dto/BackupList + a f_87405_ + b f_87406_ + ()V + static + ()V + a (Ljava/lang/String;)Lejg; m_87409_ + static + 0 o p_87410_ +ejh com/mojang/realmsclient/dto/GuardedSerializer + a f_87411_ + ()V + a (Lcom/google/gson/JsonElement;)Ljava/lang/String; m_274558_ + 0 o p_275638_ + a (Ljava/lang/String;Ljava/lang/Class;)Lejz; m_87415_ + 0 o p_87416_ + 1 o p_87417_ + a (Lejz;)Ljava/lang/String; m_87413_ + 0 o p_87414_ +eji com/mojang/realmsclient/dto/Ops + a f_87418_ + ()V + a (Ljava/lang/String;)Leji; m_87420_ + static + 0 o p_87421_ +ejj com/mojang/realmsclient/dto/PendingInvite + a f_87422_ + b f_87423_ + c f_87424_ + d f_87425_ + e f_87426_ + f f_87427_ + ()V + static + ()V + a (Lcom/google/gson/JsonObject;)Lejj; m_87430_ + static + 0 o p_87431_ +ejk com/mojang/realmsclient/dto/PendingInvitesList + a f_87432_ + b f_87433_ + ()V + static + ()V + a (Ljava/lang/String;)Lejk; m_87436_ + static + 0 o p_87437_ +ejl com/mojang/realmsclient/dto/PingResult + a f_87438_ + b f_87439_ + ()V +ejm com/mojang/realmsclient/dto/PlayerInfo + a f_87441_ + b f_87442_ + c f_87443_ + d f_87444_ + e f_87445_ + ()V + a (Ljava/lang/String;)V m_87448_ + 0 o p_87449_ + a ()Ljava/lang/String; m_87447_ + a (Z)V m_87450_ + 0 o p_87451_ + b ()Ljava/lang/String; m_87452_ + b (Ljava/lang/String;)V m_87453_ + 0 o p_87454_ + b (Z)V m_87455_ + 0 o p_87456_ + c (Z)V m_87458_ + 0 o p_87459_ + c ()Z m_87457_ + d ()Z m_87460_ + e ()Z m_87461_ +ejn com/mojang/realmsclient/dto/RealmsDescriptionDto + a f_87462_ + b f_87463_ + (Ljava/lang/String;Ljava/lang/String;)V + 0 o p_87465_ + 1 o p_87466_ +ejo com/mojang/realmsclient/dto/RealmsNews + a f_87467_ + b f_87468_ + ()V + static + ()V + a (Ljava/lang/String;)Lejo; m_87471_ + static + 0 o p_87472_ +ejp com/mojang/realmsclient/dto/RealmsNotification + a f_273874_ + b f_273846_ + c f_273940_ + d f_273826_ + e f_273860_ + f f_273896_ + g f_273948_ + h f_273813_ + i f_273916_ + j f_273939_ + ()V + static + (Ljava/util/UUID;ZZLjava/lang/String;)V + 0 o p_275316_ + 1 o p_275303_ + 2 o p_275497_ + 3 o p_275401_ + a ()Z m_274594_ + a (Ljava/lang/String;)Ljava/util/List; m_274572_ + static + 0 o p_275464_ + a (Lcom/google/gson/JsonObject;)Lejp; m_274477_ + static + 0 o p_275549_ + b ()Z m_274416_ + c ()Ljava/util/UUID; m_274400_ +ejp$a com/mojang/realmsclient/dto/RealmsNotification$VisitUrl + a f_273925_ + b f_273863_ + c f_273906_ + d f_273914_ + e f_273949_ + f f_273945_ + (Lejp;Ljava/lang/String;Lejw;Lejw;)V + 0 o p_275564_ + 1 o p_275312_ + 2 o p_275433_ + 3 o p_275541_ + a (Leuq;)Lepi; m_274431_ + 0 o p_275412_ + a (Lejp;Lcom/google/gson/JsonObject;)Lejp$a; m_274551_ + static + 0 o p_275651_ + 1 o p_275278_ + d ()Lsw; m_274603_ +ejq com/mojang/realmsclient/dto/RealmsServer + a f_87473_ + b f_87474_ + c f_87475_ + d f_87476_ + e f_87477_ + f f_87478_ + g f_87479_ + h f_87480_ + i f_87481_ + j f_87482_ + k f_87483_ + l f_87484_ + m f_87485_ + n f_87486_ + o f_87487_ + p f_87488_ + q f_87489_ + r f_87490_ + s f_87491_ + ()V + static + ()V + a (Ljava/lang/String;)V m_87508_ + 0 o p_87509_ + a (Lejm;Lejm;)I m_87501_ + static + 0 o p_87502_ + 1 o p_87503_ + a (Lcom/google/gson/JsonArray;)Ljava/util/List; m_87497_ + static + 0 o p_87498_ + a (Lcom/google/gson/JsonObject;)Lejq; m_87499_ + static + 0 o p_87500_ + a (Leju;)V m_87506_ + 0 o p_87507_ + a ()Ljava/lang/String; m_87494_ + a (I)Ljava/lang/String; m_87495_ + 0 o p_87496_ + a (Lejq;)V m_87504_ + static + 0 o p_87505_ + a (Ljava/util/Map;)Ljava/util/Map; m_87510_ + 0 o p_87511_ + b (Lcom/google/gson/JsonArray;)Ljava/util/Map; m_87513_ + static + 0 o p_87514_ + b ()Ljava/lang/String; m_87512_ + b (Ljava/lang/String;)V m_87515_ + 0 o p_87516_ + c (Ljava/lang/String;)Lejq; m_87518_ + static + 0 o p_87519_ + c ()Ljava/lang/String; m_87517_ + clone ()Ljava/lang/Object; clone + d (Ljava/lang/String;)Lffd; m_87522_ + 0 o p_87523_ + d ()Lejq; clone + e ()Ljava/util/Map; m_87524_ + static + e (Ljava/lang/String;)Lejq$b; m_87525_ + static + 0 o p_87526_ + equals (Ljava/lang/Object;)Z equals + 0 o p_87528_ + f (Ljava/lang/String;)Lejq$c; m_87529_ + static + 0 o p_87530_ + hashCode ()I hashCode +ejq$a com/mojang/realmsclient/dto/RealmsServer$McoServerComparator + a f_87532_ + (Ljava/lang/String;)V + 0 o p_87534_ + a (Lejq;Lejq;)I compare + 0 o p_87536_ + 1 o p_87537_ + compare (Ljava/lang/Object;Ljava/lang/Object;)I compare + 0 o p_87539_ + 1 o p_87540_ +ejq$b com/mojang/realmsclient/dto/RealmsServer$State + a CLOSED + b OPEN + c UNINITIALIZED + d $VALUES + ()V + static + (Ljava/lang/String;I)V + 0 o p_87547_ + 1 o p_87548_ + a ()[Lejq$b; m_167288_ + static + valueOf (Ljava/lang/String;)Lejq$b; valueOf + static + 0 o p_87550_ + values ()[Lejq$b; values + static +ejq$c com/mojang/realmsclient/dto/RealmsServer$WorldType + a NORMAL + b MINIGAME + c ADVENTUREMAP + d EXPERIENCE + e INSPIRATION + f $VALUES + ()V + static + (Ljava/lang/String;I)V + 0 o p_87560_ + 1 o p_87561_ + a ()[Lejq$c; m_167289_ + static + valueOf (Ljava/lang/String;)Lejq$c; valueOf + static + 0 o p_87563_ + values ()[Lejq$c; values + static +ejr com/mojang/realmsclient/dto/RealmsServerAddress + a f_87565_ + b f_87566_ + c f_87567_ + d f_87568_ + ()V + static + ()V + a (Ljava/lang/String;)Lejr; m_87571_ + static + 0 o p_87572_ +ejs com/mojang/realmsclient/dto/RealmsServerList + a f_87573_ + b f_87574_ + ()V + static + ()V + a (Ljava/lang/String;)Lejs; m_87577_ + static + 0 o p_87578_ +ejt com/mojang/realmsclient/dto/RealmsServerPing + a f_87579_ + b f_87580_ + ()V +eju com/mojang/realmsclient/dto/RealmsServerPlayerList + a f_87582_ + b f_87583_ + c f_87584_ + d f_87585_ + ()V + static + ()V + a (Lcom/google/gson/JsonObject;)Leju; m_87590_ + static + 0 o p_87591_ + a (Lcom/google/gson/JsonArray;)Ljava/util/List; m_87588_ + static + 0 o p_87589_ +ejv com/mojang/realmsclient/dto/RealmsServerPlayerLists + a f_87592_ + b f_87593_ + ()V + static + ()V + a (Ljava/lang/String;)Lejv; m_87596_ + static + 0 o p_87597_ +ejw com/mojang/realmsclient/dto/RealmsText + a f_273889_ + b f_273818_ + c f_273881_ + d f_273935_ + (Ljava/lang/String;[Ljava/lang/Object;)V + 0 o p_275727_ + 1 o p_275314_ + a (Lsw;)Lsw; m_274597_ + 0 o p_275681_ + a (Lcom/google/gson/JsonObject;)Lejw; m_274486_ + static + 0 o p_275381_ +ejx com/mojang/realmsclient/dto/RealmsWorldOptions + a f_87598_ + b f_87599_ + c f_87600_ + d f_87601_ + e f_87602_ + f f_87603_ + g f_87604_ + h f_87605_ + i f_87606_ + j f_87608_ + k f_87609_ + l f_87611_ + m f_87607_ + n f_167290_ + o f_167291_ + p f_167292_ + q f_167293_ + r f_167294_ + s f_167295_ + t f_167296_ + u f_167297_ + v f_167298_ + w f_167299_ + x f_167300_ + y f_87612_ + ()V + static + (ZZZZIZIIZLjava/lang/String;)V + 0 o p_167302_ + 1 o p_167303_ + 2 o p_167304_ + 3 o p_167305_ + 4 o p_167306_ + 5 o p_167307_ + 6 o p_167308_ + 7 o p_167309_ + 8 o p_167310_ + 9 o p_167311_ + a ()Lejx; m_87625_ + static + a (Z)V m_87630_ + 0 o p_87631_ + a (I)Ljava/lang/String; m_87626_ + 0 o p_87627_ + a (Lcom/google/gson/JsonObject;)Lejx; m_87628_ + static + 0 o p_87629_ + b ()Lejx; m_87632_ + static + b (I)Ljava/lang/String; m_87633_ + 0 o p_87634_ + c ()Ljava/lang/String; m_87635_ + clone ()Ljava/lang/Object; clone + d ()Lejx; clone +ejy com/mojang/realmsclient/dto/RealmsWorldResetDto + a f_87638_ + b f_87639_ + c f_87640_ + d f_87641_ + (Ljava/lang/String;JIZ)V + 0 o p_87643_ + 1 o p_87644_ + 2 o p_87645_ + 3 o p_87646_ +ejz com/mojang/realmsclient/dto/ReflectionBasedSerialization +ek net/minecraft/commands/arguments/ObjectiveCriteriaArgument + a f_102551_ + b f_102552_ + ()V + static + ()V + a (Lcom/mojang/brigadier/context/CommandContext;Ljava/lang/String;)Lefj; m_102565_ + static + 0 o p_102566_ + 1 o p_102567_ + a (Lamq;Ljava/lang/Object;)Ljava/lang/String; m_102556_ + 0 o p_102557_ + 1 o p_102558_ + a (Lcom/mojang/brigadier/StringReader;)Lefj; parse + 0 o p_102560_ + a (Ljava/lang/Object;)Lcom/mojang/brigadier/Message; m_102568_ + static + 0 o p_102569_ + a (Lcom/mojang/brigadier/StringReader;ILjava/lang/String;)Lcom/mojang/brigadier/exceptions/CommandSyntaxException; m_102561_ + static + 0 o p_102562_ + 1 o p_102563_ + 2 o p_102564_ + a ()Lek; m_102555_ + static + getExamples ()Ljava/util/Collection; getExamples + listSuggestions (Lcom/mojang/brigadier/context/CommandContext;Lcom/mojang/brigadier/suggestion/SuggestionsBuilder;)Ljava/util/concurrent/CompletableFuture; listSuggestions + 0 o p_102572_ + 1 o p_102573_ + parse (Lcom/mojang/brigadier/StringReader;)Ljava/lang/Object; parse + 0 o p_102575_ +eka com/mojang/realmsclient/dto/RegionPingResult + a f_87647_ + b f_87648_ + (Ljava/lang/String;I)V + 0 o p_87650_ + 1 o p_87651_ + a ()I m_87652_ + toString ()Ljava/lang/String; toString +ekb com/mojang/realmsclient/dto/ServerActivity + a f_167312_ + b f_167313_ + c f_167314_ + ()V + a (Lcom/google/gson/JsonObject;)Lekb; m_167316_ + static + 0 o p_167317_ +ekc com/mojang/realmsclient/dto/ServerActivityList + a f_167318_ + b f_167319_ + ()V + a (Ljava/lang/String;)Lekc; m_167321_ + static + 0 o p_167322_ +ekd com/mojang/realmsclient/dto/Subscription + a f_87666_ + b f_87667_ + c f_87668_ + d f_87669_ + ()V + static + ()V + a (Ljava/lang/String;)Lekd; m_87672_ + static + 0 o p_87673_ + b (Ljava/lang/String;)Lekd$a; m_87674_ + static + 0 o p_87675_ +ekd$a com/mojang/realmsclient/dto/Subscription$SubscriptionType + a NORMAL + b RECURRING + c $VALUES + ()V + static + (Ljava/lang/String;I)V + 0 o p_87681_ + 1 o p_87682_ + a ()[Lekd$a; m_167323_ + static + valueOf (Ljava/lang/String;)Lekd$a; valueOf + static + 0 o p_87684_ + values ()[Lekd$a; values + static +eke com/mojang/realmsclient/dto/UploadInfo + a f_87686_ + b f_167324_ + c f_167325_ + d f_87687_ + e f_87688_ + f f_87689_ + g f_87690_ + ()V + static + (ZLjava/lang/String;Ljava/net/URI;)V + 0 o p_87693_ + 1 o p_87694_ + 2 o p_87695_ + a (Ljava/lang/String;I)Ljava/net/URI; m_87702_ + static + 0 o p_87703_ + 1 o p_87704_ + a (Ljava/lang/String;)Leke; m_87700_ + static + 0 o p_87701_ + a (Ljava/lang/String;Ljava/util/regex/Matcher;)Ljava/lang/String; m_87705_ + static + 0 o p_87706_ + 1 o p_87707_ + a ()Ljava/lang/String; m_87696_ + a (II)I m_87697_ + static + 0 o p_87698_ + 1 o p_87699_ + b ()Ljava/net/URI; m_87708_ + b (Ljava/lang/String;)Ljava/lang/String; m_87709_ + static + 0 o p_87710_ + c ()Z m_87711_ +ekf com/mojang/realmsclient/dto/ValueObject + ()V + a (Ljava/lang/reflect/Field;)Ljava/lang/String; m_87713_ + static + 0 o p_87714_ + b (Ljava/lang/reflect/Field;)Z m_87715_ + static + 0 o p_87716_ + toString ()Ljava/lang/String; toString +ekg com/mojang/realmsclient/dto/WorldDownload + a f_87718_ + b f_87719_ + c f_87720_ + d f_87721_ + ()V + static + ()V + a (Ljava/lang/String;)Lekg; m_87724_ + static + 0 o p_87725_ +ekh com/mojang/realmsclient/dto/WorldTemplate + a f_87726_ + b f_87727_ + c f_87728_ + d f_87729_ + e f_87730_ + f f_87731_ + g f_87732_ + h f_87733_ + i f_87734_ + j f_87735_ + ()V + static + ()V + a (Lcom/google/gson/JsonObject;)Lekh; m_87738_ + static + 0 o p_87739_ +ekh$a com/mojang/realmsclient/dto/WorldTemplate$WorldTemplateType + a WORLD_TEMPLATE + b MINIGAME + c ADVENTUREMAP + d EXPERIENCE + e INSPIRATION + f $VALUES + ()V + static + (Ljava/lang/String;I)V + 0 o p_87748_ + 1 o p_87749_ + a ()[Lekh$a; m_167326_ + static + valueOf (Ljava/lang/String;)Lekh$a; valueOf + static + 0 o p_87751_ + values ()[Lekh$a; values + static +eki com/mojang/realmsclient/dto/WorldTemplatePaginatedList + a f_87753_ + b f_87754_ + c f_87755_ + d f_87756_ + e f_87757_ + ()V + static + (I)V + 0 o p_87761_ + ()V + a ()Z m_167327_ + a (Ljava/lang/String;)Leki; m_87762_ + static + 0 o p_87763_ +ekj com/mojang/realmsclient/dto/package-info +ekk com/mojang/realmsclient/exception/RealmsDefaultUncaughtExceptionHandler + a f_87764_ + (Lorg/slf4j/Logger;)V + 0 o p_202332_ + uncaughtException (Ljava/lang/Thread;Ljava/lang/Throwable;)V uncaughtException + 0 o p_87768_ + 1 o p_87769_ +ekl com/mojang/realmsclient/exception/RealmsHttpException + (Ljava/lang/String;Ljava/lang/Exception;)V + 0 o p_87771_ + 1 o p_87772_ +ekm com/mojang/realmsclient/exception/RealmsServiceException + a f_87773_ + b f_200940_ + c f_200941_ + (ILjava/lang/String;Lejb;)V + 0 o p_87783_ + 1 o p_87784_ + 2 o p_87785_ + (ILjava/lang/String;)V + 0 o p_200943_ + 1 o p_200944_ + a (I)I m_200945_ + 0 o p_200946_ + getMessage ()Ljava/lang/String; getMessage +ekn com/mojang/realmsclient/exception/RetryCallException + d f_167328_ + e f_87787_ + (II)V + 0 o p_87789_ + 1 o p_87790_ +eko com/mojang/realmsclient/exception/package-info +ekp com/mojang/realmsclient/gui/ErrorCallback + a (Ljava/lang/String;)V m_87791_ + 0 o p_87792_ + a (Lsw;)V m_5673_ + 0 o p_87793_ +ekq com/mojang/realmsclient/gui/RealmsDataFetcher + a f_238549_ + b f_273926_ + c f_87797_ + d f_87800_ + e f_238709_ + f f_87799_ + g f_238681_ + h f_238737_ + (Leiz;)V + 0 o p_238853_ + a (Leiz;)Ljava/util/List; m_167339_ + static + 0 o p_238854_ +ekr com/mojang/realmsclient/gui/RealmsNewsManager + a f_238804_ + b f_238831_ + c f_238573_ + (Lemd;)V + 0 o p_239304_ + a ()Z m_239499_ + a (Lejo;)V m_239190_ + 0 o p_239191_ + b ()Ljava/lang/String; m_240058_ + b (Lejo;)Lemd$a; m_240152_ + 0 o p_240153_ +eks com/mojang/realmsclient/gui/RealmsServerList + a f_238634_ + b f_238560_ + c f_238698_ + (Lenn;)V + 0 o p_239233_ + a (Lejq;)Ljava/util/List; m_240076_ + 0 o p_240077_ + a (Ljava/util/List;)Ljava/util/List; m_239868_ + 0 o p_239869_ +ekt com/mojang/realmsclient/gui/RealmsWorldSlotButton + A f_87922_ + C f_87923_ + D f_87924_ + E f_286987_ + F f_87925_ + G f_87926_ + H f_87914_ + I f_87916_ + a f_87917_ + b f_87918_ + c f_231297_ + d f_87919_ + e f_87920_ + f f_87921_ + ()V + static + (IIIILjava/util/function/Supplier;Ljava/util/function/Consumer;ILepi$c;)V + 0 o p_87929_ + 1 o p_87930_ + 2 o p_87931_ + 3 o p_87932_ + 4 o p_87933_ + 5 o p_87934_ + 6 o p_87935_ + 7 o p_87936_ + a (Leox;IIIIZLjava/lang/String;IJLjava/lang/String;ZZLekt$a;Lsw;)V m_280493_ + 0 o p_282493_ + 1 o p_282407_ + 2 o p_283212_ + 3 o p_283646_ + 4 o p_283633_ + 5 o p_282019_ + 6 o p_283553_ + 7 o p_283521_ + 8 o p_281546_ + 9 o p_283361_ + 10 o p_283516_ + 11 o p_281611_ + 12 o p_281804_ + 13 o p_282910_ + a (Lejq;Ljava/lang/String;ZZLekt$a;)Lcom/mojang/datafixers/util/Pair; m_87953_ + 0 o p_87954_ + 1 o p_87955_ + 2 o p_87956_ + 3 o p_87957_ + 4 o p_87958_ + a ()Lekt$b; m_87937_ + a (Leox;II)V m_280498_ + 0 o p_281366_ + 1 o p_281849_ + 2 o p_283407_ + a (Lejq;ZZ)Lekt$a; m_87959_ + static + 0 o p_87960_ + 1 o p_87961_ + 2 o p_87962_ + b (Leox;IIF)V m_87963_ + 0 o p_282947_ + 1 o p_87965_ + 2 o p_87966_ + 3 o p_87967_ + b ()V m_87968_ +ekt$a com/mojang/realmsclient/gui/RealmsWorldSlotButton$Action + a NOTHING + b SWITCH_SLOT + c JOIN + d $VALUES + ()V + static + (Ljava/lang/String;I)V + 0 o p_87975_ + 1 o p_87976_ + a ()[Lekt$a; m_167351_ + static + valueOf (Ljava/lang/String;)Lekt$a; valueOf + static + 0 o p_87978_ + values ()[Lekt$a; values + static +ekt$b com/mojang/realmsclient/gui/RealmsWorldSlotButton$State + a f_87980_ + b f_87981_ + c f_87982_ + d f_87983_ + e f_87984_ + f f_87985_ + g f_87986_ + h f_87987_ + (ZLjava/lang/String;JLjava/lang/String;ZZLekt$a;Lsw;)V + 0 o p_87989_ + 1 o p_87990_ + 2 o p_87991_ + 3 o p_87992_ + 4 o p_87993_ + 5 o p_87994_ + 6 o p_87995_ + 7 o p_87996_ +eku com/mojang/realmsclient/gui/RowButton + a f_88007_ + b f_88008_ + c f_88009_ + d f_88010_ + (IIII)V + 0 o p_88012_ + 1 o p_88013_ + 2 o p_88014_ + 3 o p_88015_ + a (I)V m_7516_ + 0 o p_88017_ + a (Leox;IIII)V m_88018_ + 0 o p_281584_ + 1 o p_88020_ + 2 o p_88021_ + 3 o p_88022_ + 4 o p_88023_ + a (Leox;IIZ)V m_7537_ + 0 o p_281291_ + 1 o p_88025_ + 2 o p_88026_ + 3 o p_88027_ + a (Lgam;Leqc$a;Ljava/util/List;IDD)V m_88036_ + static + 0 o p_88037_ + 1 o p_88038_ + 2 o p_88039_ + 3 o p_88040_ + 4 o p_88041_ + 5 o p_88042_ + a ()I m_88016_ + a (Leox;Ljava/util/List;Lgam;IIII)V m_280516_ + static + 0 o p_281401_ + 1 o p_283164_ + 2 o p_282348_ + 3 o p_282527_ + 4 o p_281326_ + 5 o p_281575_ + 6 o p_282538_ + b ()I m_88043_ +ekv com/mojang/realmsclient/gui/package-info +ekw com/mojang/realmsclient/gui/screens/RealmsBackupInfoScreen + G f_88046_ + a f_167352_ + b f_88044_ + c f_88045_ + ()V + static + (Leuq;Lejf;)V + 0 o p_88048_ + 1 o p_88049_ + a (Lekw;)Leov; m_287274_ + static + 0 o p_287643_ + a (Ljava/lang/String;)Lsw; m_88073_ + 0 o p_88074_ + a (Lepi;)V m_279671_ + 0 o p_280689_ + a (Ljava/lang/String;Ljava/lang/String;)Lsw; m_88067_ + 0 o p_88068_ + 1 o p_88069_ + a (III)Z m_7933_ + 0 o p_88051_ + 1 o p_88052_ + 2 o p_88053_ + a (Leox;IIF)V m_88315_ + 0 o p_282729_ + 1 o p_282525_ + 2 o p_281883_ + 3 o p_281644_ + b (Ljava/lang/String;)Lsw; m_88075_ + 0 o p_88076_ + b (Lekw;)Leov; m_287193_ + static + 0 o p_287710_ + b ()V m_7856_ + f ()V m_86600_ +ekw$a com/mojang/realmsclient/gui/screens/RealmsBackupInfoScreen$BackupInfoList + a f_88079_ + (Lekw;Lenn;)V + 0 o p_88081_ + 1 o p_88082_ + a (Ljava/lang/String;Ljava/lang/String;)V m_88083_ + 0 o p_88084_ + 1 o p_88085_ +ekw$b com/mojang/realmsclient/gui/screens/RealmsBackupInfoScreen$BackupInfoListEntry + a f_88086_ + b f_286974_ + c f_286978_ + d f_286935_ + e f_286960_ + f f_286961_ + g f_286970_ + h f_286952_ + i f_286990_ + j f_286941_ + k f_286932_ + l f_287001_ + m f_88087_ + n f_88088_ + ()V + static + (Lekw;Ljava/lang/String;Ljava/lang/String;)V + 0 o p_88090_ + 1 o p_88091_ + 2 o p_88092_ + a (Ljava/lang/String;)Lsw; m_287178_ + 0 o p_287652_ + a ()Lsw; m_142172_ + a (Leox;IIIIIIIZF)V m_6311_ + 0 o p_282911_ + 1 o p_281482_ + 2 o p_283643_ + 3 o p_282795_ + 4 o p_283291_ + 5 o p_282540_ + 6 o p_282181_ + 7 o p_283535_ + 8 o p_281916_ + 9 o p_282116_ +ekx com/mojang/realmsclient/gui/screens/RealmsBackupScreen + G f_88113_ + H f_88114_ + I f_88115_ + J f_88116_ + K f_88118_ + L f_88119_ + M f_88121_ + N f_88122_ + O f_88123_ + P f_88104_ + Q f_88105_ + R f_88106_ + S f_88107_ + T f_88108_ + U f_167355_ + a f_88110_ + b f_88111_ + c f_88112_ + ()V + static + (Lela;Lejq;I)V + 0 o p_88126_ + 1 o p_88127_ + 2 o p_88128_ + B ()V m_88204_ + C ()Z m_88205_ + D ()Z m_88206_ + E ()V m_88207_ + F ()V m_88208_ + G ()V m_88209_ + a (Lepi;)V m_279673_ + 0 o p_280691_ + a (I)V m_88166_ + 0 o p_88167_ + a (Lekx;)Lenn; m_167356_ + static + 0 o p_167357_ + a (III)Z m_7933_ + 0 o p_88133_ + 1 o p_88134_ + 2 o p_88135_ + a (Leox;IIF)V m_88315_ + 0 o p_283405_ + 1 o p_282020_ + 2 o p_282404_ + 3 o p_281280_ + b (Lekx;)Leov; m_167358_ + static + 0 o p_167359_ + b ()V m_7856_ + b (Lepi;)V m_279674_ + 0 o p_280692_ + c (Lepi;)V m_88178_ + 0 o p_88179_ + c (Z)V m_279672_ + 0 o p_280690_ + c (Lekx;)Leov; m_167360_ + static + 0 o p_167361_ + d (Lepi;)V m_88184_ + 0 o p_88185_ + d (Lekx;)Lenn; m_278623_ + static + 0 o p_279101_ + e (Z)V m_279675_ + 0 o p_280693_ +ekx$1 com/mojang/realmsclient/gui/screens/RealmsBackupScreen$1 + a f_88210_ + (Lekx;Ljava/lang/String;)V + 0 o p_88212_ + 1 o p_88213_ + a (Ljava/util/List;)V m_279676_ + 0 o p_280694_ + run ()V run +ekx$a com/mojang/realmsclient/gui/screens/RealmsBackupScreen$BackupObjectSelectionList + a f_88217_ + (Lekx;)V + 0 o p_88219_ + a (Lepc$a;)V m_6987_ + 0 o p_88239_ + a (I)V m_7109_ + 0 o p_88225_ + a (Lejf;)V m_88234_ + 0 o p_88235_ + a ()I m_5775_ + a (Leox;)V m_7733_ + 0 o p_282900_ + a (Lekx$b;)V m_6987_ + 0 o p_88237_ + b (I)V m_88241_ + 0 o p_88242_ + b ()I m_5759_ + c ()I m_5756_ +ekx$b com/mojang/realmsclient/gui/screens/RealmsBackupScreen$Entry + a f_88246_ + b f_278395_ + c f_278387_ + d f_88247_ + e f_278436_ + f f_278378_ + g f_278470_ + (Lekx;Lejf;)V + 0 o p_88249_ + 1 o p_88250_ + a (Ljava/util/Date;)Ljava/lang/String; m_88275_ + 0 o p_88276_ + a (Ljava/lang/String;)V m_278753_ + 0 o p_279195_ + a (Lepi;)V m_278673_ + 0 o p_279191_ + a (ILeox;IIFLepf;)V m_279677_ + static + 0 o p_280695_ + 1 o p_280696_ + 2 o p_280697_ + 3 o p_280698_ + 4 o p_280699_ + 5 o p_280700_ + a (Lejf;)V m_278830_ + 0 o p_279365_ + a ()Lsw; m_142172_ + a (DDI)Z m_6375_ + 0 o p_279279_ + 1 o p_279118_ + 2 o p_279445_ + a (Leox;IIIIIIIZF)V m_6311_ + 0 o p_281408_ + 1 o p_281974_ + 2 o p_282495_ + 3 o p_282463_ + 4 o p_281562_ + 5 o p_282782_ + 6 o p_281638_ + 7 o p_283190_ + 8 o p_283105_ + 9 o p_282066_ + b ()V m_278829_ + b (Lepi;)V m_278652_ + 0 o p_279278_ + d ()V m_278718_ +eky com/mojang/realmsclient/gui/screens/RealmsBrokenWorldScreen + G f_88285_ + H f_88286_ + I f_88287_ + J f_88289_ + K f_88290_ + L f_88291_ + M f_88292_ + N f_88293_ + a f_88283_ + b f_167363_ + c f_88284_ + ()V + static + (Leuq;Leiu;JZ)V + 0 o p_88296_ + 1 o p_88297_ + 2 o p_88298_ + 3 o p_88299_ + B ()V m_88350_ + C ()V m_88351_ + D ()Z m_88352_ + E ()V m_181319_ + F ()V m_279685_ + G ()V m_279679_ + H ()V m_279684_ + I ()V m_279681_ + a (Lepi;)V m_88332_ + 0 o p_88333_ + a (III)Z m_7933_ + 0 o p_88304_ + 1 o p_88305_ + 2 o p_88306_ + a (I)I m_88301_ + 0 o p_88302_ + a (Leox;IIIIZLjava/lang/String;IJLjava/lang/String;Z)V m_280068_ + 0 o p_281929_ + 1 o p_283393_ + 2 o p_281553_ + 3 o p_283523_ + 4 o p_282823_ + 5 o p_283032_ + 6 o p_283498_ + 7 o p_283330_ + 8 o p_283588_ + 9 o p_282484_ + 10 o p_282283_ + a (IZ)V m_279678_ + 0 o p_280701_ + 1 o p_280702_ + a (J)V m_88313_ + 0 o p_88314_ + a (Lejq;)V m_181317_ + 0 o p_181318_ + a (ILepi;)V m_279683_ + 0 o p_280706_ + 1 o p_280707_ + a (Leox;IIF)V m_88315_ + 0 o p_282934_ + 1 o p_88317_ + 2 o p_88318_ + 3 o p_88319_ + au_ ()Lsw; m_142562_ + b (ILepi;)V m_287011_ + 0 o p_287301_ + 1 o p_287302_ + b (IZ)V m_279682_ + 0 o p_280704_ + 1 o p_280705_ + b (I)V m_88335_ + 0 o p_88336_ + b (J)V m_279680_ + 0 o p_280703_ + b ()V m_7856_ + c ()V m_88300_ + c (ILepi;)V m_88345_ + 0 o p_88346_ + 1 o p_88347_ + f ()V m_86600_ +ekz com/mojang/realmsclient/gui/screens/RealmsClientOutdatedScreen + G f_88362_ + a f_88360_ + b f_231302_ + c f_88361_ + ()V + static + (Leuq;)V + 0 o p_231304_ + B ()[Lsw; m_231305_ + a (Lepi;)V m_279687_ + 0 o p_280710_ + a (III)Z m_7933_ + 0 o p_88369_ + 1 o p_88370_ + 2 o p_88371_ + a (Leox;IIF)V m_88315_ + 0 o p_283142_ + 1 o p_88374_ + 2 o p_88375_ + 3 o p_88376_ + b ()V m_7856_ +el net/minecraft/commands/arguments/OperationArgument + a f_103264_ + b f_103265_ + c f_103266_ + ()V + static + ()V + a (Lcom/mojang/brigadier/context/CommandContext;Ljava/lang/String;)Lel$a; m_103275_ + static + 0 o p_103276_ + 1 o p_103277_ + a ()Lel; m_103269_ + static + a (Leff;Leff;)V m_103278_ + static + 0 o p_103279_ + 1 o p_103280_ + a (II)I m_103270_ + static + 0 o p_103271_ + 1 o p_103272_ + a (Ljava/lang/String;)Lel$a; m_103281_ + static + 0 o p_103282_ + a (Lcom/mojang/brigadier/StringReader;)Lel$a; parse + 0 o p_103274_ + b (Ljava/lang/String;)Lel$b; m_103286_ + static + 0 o p_103287_ + b (II)I m_263893_ + static + 0 o p_264713_ + 1 o p_264714_ + c (II)I m_103288_ + static + 0 o p_103289_ + 1 o p_103290_ + d (II)I m_103291_ + static + 0 o p_103292_ + 1 o p_103293_ + e (II)I m_103294_ + static + 0 o p_103295_ + 1 o p_103296_ + f (II)I m_103297_ + static + 0 o p_103298_ + 1 o p_103299_ + getExamples ()Ljava/util/Collection; getExamples + listSuggestions (Lcom/mojang/brigadier/context/CommandContext;Lcom/mojang/brigadier/suggestion/SuggestionsBuilder;)Ljava/util/concurrent/CompletableFuture; listSuggestions + 0 o p_103302_ + 1 o p_103303_ + parse (Lcom/mojang/brigadier/StringReader;)Ljava/lang/Object; parse + 0 o p_103305_ +el$a net/minecraft/commands/arguments/OperationArgument$Operation + apply (Leff;Leff;)V m_6407_ + 0 o p_103306_ + 1 o p_103307_ +el$b net/minecraft/commands/arguments/OperationArgument$SimpleOperation + apply (II)I m_103308_ + 0 o p_103309_ + 1 o p_103310_ + apply (Leff;Leff;)V m_6407_ + 0 o p_103312_ + 1 o p_103313_ +ela com/mojang/realmsclient/gui/screens/RealmsConfigureWorldScreen + G f_88398_ + H f_88399_ + I f_167372_ + J f_88400_ + K f_88403_ + L f_88404_ + M f_88405_ + N f_88406_ + O f_88407_ + P f_167373_ + Q f_167374_ + R f_88408_ + S f_88380_ + T f_88381_ + U f_88382_ + V f_88383_ + W f_88384_ + X f_88385_ + Y f_88386_ + Z f_88387_ + a f_88395_ + aa f_88388_ + ab f_88389_ + ac f_88390_ + ad f_88391_ + ae f_88392_ + af f_88393_ + ag f_88394_ + ah f_167375_ + b f_88396_ + c f_88397_ + ()V + static + (Leiu;J)V + 0 o p_88411_ + 1 o p_88412_ + B ()V m_88525_ + C ()V m_88528_ + D ()V m_88533_ + E ()Z m_88534_ + F ()V m_88535_ + G ()V m_88536_ + H ()V m_279701_ + I ()V m_279702_ + J ()V m_279693_ + K ()V m_279696_ + L ()V m_279689_ + M ()Lejq; m_167381_ + N ()V m_279695_ + O ()V m_279688_ + P ()V m_279699_ + a (Lekm;)V m_279700_ + 0 o p_280721_ + a (Lejq;IZ)V m_279697_ + 0 o p_280717_ + 1 o p_280718_ + 2 o p_280719_ + a (ZLeuq;)V m_88459_ + 0 o p_88460_ + 1 o p_88461_ + a (Leox;IIIII)V m_280675_ + 0 o p_283478_ + 1 o p_281486_ + 2 o p_283460_ + 3 o p_282257_ + 4 o p_283127_ + 5 o p_282411_ + a (III)Z m_7933_ + 0 o p_88417_ + 1 o p_88418_ + 2 o p_88419_ + a (Leuq;)V m_88452_ + 0 o p_88453_ + a (II)I m_88465_ + 0 o p_88466_ + 1 o p_88467_ + a (Lejx;)V m_88444_ + 0 o p_88445_ + a (Lsw;)V m_167398_ + 0 o p_167399_ + a (J)V m_88426_ + 0 o p_88427_ + a (Lejq;)V m_88438_ + 0 o p_88439_ + a (Leox;IIF)V m_88315_ + 0 o p_282982_ + 1 o p_281739_ + 2 o p_283097_ + 3 o p_282528_ + a (Lepi;)V m_88450_ + 0 o p_88451_ + a (ILejq;)V m_88420_ + 0 o p_88421_ + 1 o p_88422_ + a (I)Lekt; m_167385_ + 0 o p_167386_ + a (Lekh;)V m_167394_ + 0 o p_167395_ + a (Leox;Lsw;II)V m_280084_ + 0 o p_281972_ + 1 o p_282839_ + 2 o p_283007_ + 3 o p_283386_ + a (Ljava/lang/String;Ljava/lang/String;)V m_88454_ + 0 o p_88455_ + 1 o p_88456_ + a (Leox;IIII)V m_88489_ + 0 o p_281709_ + 1 o p_88491_ + 2 o p_88492_ + 3 o p_88493_ + 4 o p_88494_ + a (ILepi;)V m_167387_ + 0 o p_167388_ + 1 o p_167389_ + b (ILejq;)V m_88468_ + 0 o p_88469_ + 1 o p_88470_ + b (Leox;IIII)V m_280590_ + 0 o p_283277_ + 1 o p_283238_ + 2 o p_282189_ + 3 o p_281748_ + 4 o p_282829_ + b (Lepi;)V m_88484_ + 0 o p_88485_ + b (Lejq;IZ)V m_279691_ + 0 o p_280712_ + 1 o p_280713_ + 2 o p_280714_ + b (J)V m_279704_ + 0 o p_280723_ + b (I)I m_88463_ + 0 o p_88464_ + b (Lejq;)V m_181330_ + 0 o p_181331_ + b ()V m_7856_ + c (I)I m_88487_ + 0 o p_88488_ + c (Leox;IIII)V m_280267_ + 0 o p_283165_ + 1 o p_283465_ + 2 o p_282847_ + 3 o p_281579_ + 4 o p_283400_ + c ()V m_88413_ + c (Lepi;)V m_167406_ + 0 o p_167407_ + d (Lepi;)V m_279705_ + 0 o p_280724_ + d (Leox;IIII)V m_280544_ + 0 o p_282771_ + 1 o p_282927_ + 2 o p_282519_ + 3 o p_282695_ + 4 o p_282579_ + d ()Lela; m_88486_ + e (Lepi;)V m_279692_ + 0 o p_280715_ + f ()V m_86600_ + f (Lepi;)V m_279698_ + 0 o p_280720_ + g (Lepi;)V m_279690_ + 0 o p_280711_ + h (Lepi;)V m_279706_ + 0 o p_280725_ + i (Lepi;)V m_279694_ + 0 o p_280716_ + j (Lepi;)V m_279703_ + 0 o p_280722_ +ela$1 com/mojang/realmsclient/gui/screens/RealmsConfigureWorldScreen$1 + a f_88543_ + ()V + static +elb com/mojang/realmsclient/gui/screens/RealmsConfirmScreen + a f_88545_ + b f_88546_ + c f_88547_ + (Lit/unimi/dsi/fastutil/booleans/BooleanConsumer;Lsw;Lsw;)V + 0 o p_88550_ + 1 o p_88551_ + 2 o p_88552_ + a (Lepi;)V m_88558_ + 0 o p_88559_ + a (Leox;IIF)V m_88315_ + 0 o p_282610_ + 1 o p_282200_ + 2 o p_283480_ + 3 o p_281259_ + b ()V m_7856_ + b (Lepi;)V m_88561_ + 0 o p_88562_ +elc com/mojang/realmsclient/gui/screens/RealmsCreateRealmScreen + G f_88567_ + H f_88568_ + I f_88569_ + J f_88570_ + a f_88564_ + b f_88565_ + c f_88566_ + ()V + static + (Lejq;Leiu;)V + 0 o p_88574_ + 1 o p_88575_ + B ()V m_88595_ + C ()Z m_88596_ + D ()V m_279707_ + E ()V m_279709_ + F ()V m_279708_ + a (Lepi;)V m_279710_ + 0 o p_280726_ + a (CI)Z m_5534_ + 0 o p_88577_ + 1 o p_88578_ + a (III)Z m_7933_ + 0 o p_88580_ + 1 o p_88581_ + 2 o p_88582_ + a (Leox;IIF)V m_88315_ + 0 o p_283245_ + 1 o p_283409_ + 2 o p_282805_ + 3 o p_282071_ + b ()V m_7856_ + b (Lepi;)V m_88591_ + 0 o p_88592_ + f ()V m_86600_ +eld com/mojang/realmsclient/gui/screens/RealmsDownloadLatestWorldScreen + G f_263743_ + H f_263777_ + I f_263771_ + J f_88611_ + K f_88612_ + L f_88613_ + M f_88614_ + N f_88615_ + O f_88616_ + P f_88617_ + Q f_88618_ + R f_88619_ + S f_88620_ + T f_88621_ + U f_88622_ + V f_88599_ + W f_88600_ + X f_88601_ + Y f_88602_ + Z f_88603_ + a f_88609_ + aa f_88604_ + ab f_88605_ + ac f_88606_ + ad f_88607_ + ae f_88608_ + b f_88610_ + c f_263827_ + ()V + static + (Leuq;Lekg;Ljava/lang/String;Lit/unimi/dsi/fastutil/booleans/BooleanConsumer;)V + 0 o p_88625_ + 1 o p_88626_ + 2 o p_88627_ + 3 o p_88628_ + B ()V m_88655_ + C ()Lsw; m_167409_ + D ()V m_88656_ + E ()V m_88657_ + F ()V m_88658_ + G ()V m_88659_ + a (Lepi;)V m_88641_ + 0 o p_88642_ + a (Ljava/lang/String;)J m_88646_ + 0 o p_88647_ + a (Leox;J)V m_280316_ + 0 o p_283338_ + 1 o p_281931_ + a (III)Z m_7933_ + 0 o p_88630_ + 1 o p_88631_ + 2 o p_88632_ + a (Leox;IIF)V m_88315_ + 0 o p_282124_ + 1 o p_88635_ + 2 o p_88636_ + 3 o p_88637_ + b ()V m_7856_ + c (Z)V m_279711_ + 0 o p_280727_ + c (Leox;)V m_280494_ + 0 o p_281948_ + d (Leox;)V m_88648_ + 0 o p_281556_ + e (Leox;)V m_88653_ + 0 o p_282236_ + f ()V m_86600_ +eld$a com/mojang/realmsclient/gui/screens/RealmsDownloadLatestWorldScreen$DownloadStatus + a f_88660_ + b f_88661_ + ()V +ele com/mojang/realmsclient/gui/screens/RealmsGenericErrorScreen + a f_88665_ + b f_200947_ + c f_200948_ + (Lsw;Lsw;Leuq;)V + 0 o p_88675_ + 1 o p_88676_ + 2 o p_88677_ + (Lekm;Leuq;)V + 0 o p_88669_ + 1 o p_88670_ + (Lsw;Leuq;)V + 0 o p_88672_ + 1 o p_88673_ + a (Lekm;)Lele$a; m_288216_ + static + 0 o p_288965_ + a (Lsw;Lsw;)Lele$a; m_288196_ + static + 0 o p_289010_ + 1 o p_289015_ + a (Lepi;)V m_279712_ + 0 o p_280728_ + a (Lsw;)Lele$a; m_288225_ + static + 0 o p_289003_ + a (Leox;IIF)V m_88315_ + 0 o p_283497_ + 1 o p_88680_ + 2 o p_88681_ + 3 o p_88682_ + au_ ()Lsw; m_142562_ + b ()V m_7856_ +ele$a com/mojang/realmsclient/gui/screens/RealmsGenericErrorScreen$ErrorMessage + a f_287789_ + b f_287787_ + (Lsw;Lsw;)V + 0 o f_287789_ + 1 o f_287787_ + a ()Lsw; f_287789_ + b ()Lsw; f_287787_ + equals (Ljava/lang/Object;)Z equals + 0 o p_289019_ + hashCode ()I hashCode + toString ()Ljava/lang/String; toString +elf com/mojang/realmsclient/gui/screens/RealmsInviteScreen + G f_88695_ + H f_88696_ + I f_289576_ + J f_88697_ + K f_88698_ + L f_88699_ + M f_289575_ + a f_88693_ + b f_88694_ + c f_289578_ + ()V + static + (Lela;Leuq;Lejq;)V + 0 o p_88703_ + 1 o p_88704_ + 2 o p_88705_ + B ()V m_88724_ + a (Lepi;)V m_279713_ + 0 o p_280729_ + a (JLjava/lang/String;)Lejq; m_289581_ + static + 0 o p_289619_ + 1 o p_289620_ + a (III)Z m_7933_ + 0 o p_88707_ + 1 o p_88708_ + 2 o p_88709_ + a (Lsw;)V m_289601_ + 0 o p_289685_ + a (Lejq;)V m_289580_ + 0 o p_289618_ + a (Leox;IIF)V m_88315_ + 0 o p_282206_ + 1 o p_283415_ + 2 o p_282016_ + 3 o p_283011_ + b (Lts;)Lts; m_289583_ + static + 0 o p_289622_ + b ()V m_7856_ + b (Lepi;)V m_88720_ + 0 o p_88721_ + c (Lts;)Lts; m_289579_ + static + 0 o p_289617_ + d (Lts;)Lts; m_289582_ + static + 0 o p_289621_ + f ()V m_86600_ +elg com/mojang/realmsclient/gui/screens/RealmsLongConfirmationScreen + G f_88726_ + H f_88727_ + I f_88728_ + J f_88729_ + a f_88725_ + b f_286953_ + c f_286975_ + ()V + static + (Lit/unimi/dsi/fastutil/booleans/BooleanConsumer;Lelg$a;Lsw;Lsw;Z)V + 0 o p_88731_ + 1 o p_88732_ + 2 o p_88733_ + 3 o p_88734_ + 4 o p_88735_ + a (Lepi;)V m_88745_ + 0 o p_88746_ + a (III)Z m_7933_ + 0 o p_88737_ + 1 o p_88738_ + 2 o p_88739_ + a (Leox;IIF)V m_88315_ + 0 o p_282797_ + 1 o p_88742_ + 2 o p_88743_ + 3 o p_88744_ + au_ ()Lsw; m_142562_ + b ()V m_7856_ + b (Lepi;)V m_88748_ + 0 o p_88749_ + c (Lepi;)V m_88750_ + 0 o p_88751_ +elg$a com/mojang/realmsclient/gui/screens/RealmsLongConfirmationScreen$Type + a WARNING + b INFO + c f_88754_ + d f_88755_ + e $VALUES + ()V + static + (Ljava/lang/String;ILsw;I)V + 0 o p_287634_ + 1 o p_287697_ + 2 o p_287726_ + 3 o p_287605_ + a ()[Lelg$a; m_167412_ + static + valueOf (Ljava/lang/String;)Lelg$a; valueOf + static + 0 o p_88764_ + values ()[Lelg$a; values + static +elh com/mojang/realmsclient/gui/screens/RealmsLongRunningMcoTaskScreen + G f_88768_ + H f_88769_ + I f_88770_ + J f_88771_ + K f_88772_ + L f_88773_ + M f_88774_ + N f_167413_ + a f_88766_ + b f_167414_ + c f_88767_ + ()V + static + (Leuq;Lemo;)V + 0 o p_88777_ + 1 o p_88778_ + B ()V m_88799_ + C ()V m_279714_ + a (Lepi;)V m_88789_ + 0 o p_88790_ + a (III)Z m_7933_ + 0 o p_88781_ + 1 o p_88782_ + 2 o p_88783_ + a (Lsw;)V m_5673_ + 0 o p_88792_ + a (Leox;IIF)V m_88315_ + 0 o p_282789_ + 1 o p_88786_ + 2 o p_88787_ + 3 o p_88788_ + b (Lsw;)V m_88796_ + 0 o p_88797_ + b ()V m_7856_ + b (Lepi;)V m_88794_ + 0 o p_88795_ + c ()Z m_88779_ + f ()V m_86600_ +eli com/mojang/realmsclient/gui/screens/RealmsNotificationsScreen + G f_273879_ + H f_238623_ + I f_273898_ + J f_88825_ + K f_88826_ + L f_88827_ + M f_88828_ + N f_88829_ + O f_273905_ + P f_273899_ + Q f_273849_ + a f_88821_ + b f_88822_ + c f_88823_ + ()V + static + ()V + B ()Leli$a; m_274595_ + C ()Z m_88848_ + D ()Z m_88849_ + E ()V m_88850_ + a (Lekq;Lelx$c;)V m_274584_ + 0 o p_275490_ + 1 o p_275623_ + a (Ljava/lang/Integer;)V m_239520_ + 0 o p_239521_ + a (Ljava/lang/Boolean;)V m_239493_ + static + 0 o p_239494_ + a (Lekq;Lejo;)V m_238944_ + static + 0 o p_238945_ + 1 o p_238946_ + a (Leox;IIF)V m_88315_ + 0 o p_282587_ + 1 o p_282992_ + 2 o p_283028_ + 3 o p_281605_ + ay_ ()V m_274333_ + b (Lekq;Lelx$c;)V m_274585_ + 0 o p_275619_ + 1 o p_275628_ + b ()V m_7856_ + c (Leox;)V m_280451_ + 0 o p_282966_ + c (Ljava/util/List;)V m_273962_ + static + 0 o p_274637_ + f ()V m_86600_ +eli$1 com/mojang/realmsclient/gui/screens/RealmsNotificationsScreen$1 + a f_88851_ + (Leli;Ljava/lang/String;)V + 0 o p_88853_ + 1 o p_88854_ + run ()V run +eli$2 com/mojang/realmsclient/gui/screens/RealmsNotificationsScreen$2 + a f_273929_ + (Leli;)V + 0 o p_275676_ + a ()Z m_274328_ + a (Lekq;)Lelx$c; m_274316_ + 0 o p_275318_ +eli$3 com/mojang/realmsclient/gui/screens/RealmsNotificationsScreen$3 + a f_273900_ + (Leli;)V + 0 o p_275581_ + a ()Z m_274328_ + a (Lekq;)Lelx$c; m_274316_ + 0 o p_275731_ +eli$a com/mojang/realmsclient/gui/screens/RealmsNotificationsScreen$DataFetcherConfiguration + a ()Z m_274328_ + a (Lekq;)Lelx$c; m_274316_ + 0 o p_275608_ +elj com/mojang/realmsclient/gui/screens/RealmsParentalConsentScreen + a f_88856_ + b f_88857_ + c f_88858_ + ()V + static + (Leuq;)V + 0 o p_88861_ + a (Lepi;)V m_279715_ + 0 o p_280730_ + a (Leox;IIF)V m_88315_ + 0 o p_282593_ + 1 o p_282889_ + 2 o p_283522_ + 3 o p_281349_ + au_ ()Lsw; m_142562_ + b ()V m_7856_ + b (Lepi;)V m_88870_ + static + 0 o p_88871_ + c (Lepi;)V m_88872_ + static + 0 o p_88873_ +elk com/mojang/realmsclient/gui/screens/RealmsPendingInvitesScreen + G f_88877_ + H f_88878_ + I f_88879_ + J f_88880_ + K f_88881_ + L f_88882_ + M f_88883_ + N f_88885_ + O f_88886_ + P f_88887_ + a f_88874_ + b f_88875_ + c f_88876_ + ()V + static + (Leuq;Lsw;)V + 0 o p_279260_ + 1 o p_279122_ + B ()V m_88957_ + a (Lepi;)V m_88919_ + 0 o p_88920_ + a (I)V m_88892_ + 0 o p_88893_ + a (Leox;Lsw;II)V m_280517_ + 0 o p_282344_ + 1 o p_283454_ + 2 o p_281609_ + 3 o p_283288_ + a (Lelk;)Lenn; m_88908_ + static + 0 o p_88909_ + a (III)Z m_7933_ + 0 o p_88895_ + 1 o p_88896_ + 2 o p_88897_ + a (Leox;IIF)V m_88315_ + 0 o p_282787_ + 1 o p_88900_ + 2 o p_88901_ + 3 o p_88902_ + b (I)V m_88922_ + 0 o p_88923_ + b (Lelk;)Lenn; m_167417_ + static + 0 o p_167418_ + b ()V m_7856_ + b (Lepi;)V m_279716_ + 0 o p_280731_ + c (Lepi;)V m_88939_ + 0 o p_88940_ + c (I)V m_88932_ + 0 o p_88933_ + c (Lelk;)Lenn; m_167419_ + static + 0 o p_167420_ + d (Lelk;)Leov; m_167421_ + static + 0 o p_167422_ + e (Lelk;)Leov; m_167423_ + static + 0 o p_167424_ + f (Lelk;)Leov; m_167425_ + static + 0 o p_167426_ + i (I)Z m_88962_ + 0 o p_88963_ +elk$1 com/mojang/realmsclient/gui/screens/RealmsPendingInvitesScreen$1 + a f_88964_ + (Lelk;Ljava/lang/String;)V + 0 o p_88966_ + 1 o p_88967_ + a (Lejj;)Lelk$a; m_88968_ + 0 o p_88969_ + a (Ljava/util/List;)V m_88970_ + 0 o p_88971_ + run ()V run +elk$2 com/mojang/realmsclient/gui/screens/RealmsPendingInvitesScreen$2 + a f_88973_ + b f_88974_ + (Lelk;Ljava/lang/String;I)V + 0 o p_88976_ + 1 o p_88977_ + 2 o p_88978_ + a (I)V m_88979_ + 0 o p_88980_ + run ()V run +elk$3 com/mojang/realmsclient/gui/screens/RealmsPendingInvitesScreen$3 + a f_88982_ + b f_88983_ + (Lelk;Ljava/lang/String;I)V + 0 o p_88985_ + 1 o p_88986_ + 2 o p_88987_ + a (I)V m_88988_ + 0 o p_88989_ + run ()V run +elk$a com/mojang/realmsclient/gui/screens/RealmsPendingInvitesScreen$Entry + a f_88991_ + b f_167427_ + c f_88992_ + d f_88993_ + (Lelk;Lejj;)V + 0 o p_88995_ + 1 o p_88996_ + a ()Lsw; m_142172_ + a (Leox;Lejj;IIII)V m_280468_ + 0 o p_281764_ + 1 o p_282748_ + 2 o p_282810_ + 3 o p_282994_ + 4 o p_283639_ + 5 o p_283659_ + a (Leox;IIIIIIIZF)V m_6311_ + 0 o p_281445_ + 1 o p_281806_ + 2 o p_283610_ + 3 o p_282909_ + 4 o p_281705_ + 5 o p_281977_ + 6 o p_282983_ + 7 o p_281655_ + 8 o p_282274_ + 9 o p_282862_ + a (DDI)Z m_6375_ + 0 o p_88998_ + 1 o p_88999_ + 2 o p_89000_ +elk$a$a com/mojang/realmsclient/gui/screens/RealmsPendingInvitesScreen$Entry$AcceptRowButton + e f_89025_ + (Lelk$a;)V + 0 o p_89027_ + a (I)V m_7516_ + 0 o p_89029_ + a (Leox;IIZ)V m_7537_ + 0 o p_282151_ + 1 o p_283695_ + 2 o p_282436_ + 3 o p_282168_ +elk$a$b com/mojang/realmsclient/gui/screens/RealmsPendingInvitesScreen$Entry$RejectRowButton + e f_89035_ + (Lelk$a;)V + 0 o p_89037_ + a (I)V m_7516_ + 0 o p_89039_ + a (Leox;IIZ)V m_7537_ + 0 o p_282457_ + 1 o p_281421_ + 2 o p_281260_ + 3 o p_281476_ +elk$b com/mojang/realmsclient/gui/screens/RealmsPendingInvitesScreen$PendingInvitationSelectionList + a f_89045_ + (Lelk;)V + 0 o p_89047_ + a (Lepc$a;)V m_6987_ + 0 o p_89055_ + a (Lelk$a;)V m_6987_ + 0 o p_89053_ + a (I)V m_7109_ + 0 o p_89049_ + a ()I m_5775_ + a (Leox;)V m_7733_ + 0 o p_282494_ + b (I)V m_89057_ + 0 o p_89058_ + b ()I m_5759_ + c (I)V m_89060_ + 0 o p_89061_ +ell com/mojang/realmsclient/gui/screens/RealmsPlayerScreen + G f_89076_ + H f_89077_ + I f_286965_ + J f_89078_ + K f_89079_ + L f_89080_ + M f_278447_ + N f_89083_ + O f_89084_ + P f_89085_ + Q f_89086_ + R f_89063_ + S f_89065_ + T f_89066_ + U f_89069_ + V f_89070_ + a f_89073_ + b f_89074_ + c f_89075_ + ()V + static + (Lela;Lejq;)V + 0 o p_89089_ + 1 o p_89090_ + B ()V m_89188_ + C ()V m_89189_ + a (Lepi;)V m_89121_ + 0 o p_89122_ + a (Lell;)Leov; m_167431_ + static + 0 o p_167432_ + a (I)I m_167429_ + static + 0 o p_167430_ + a (III)Z m_7933_ + 0 o p_89094_ + 1 o p_89095_ + 2 o p_89096_ + a (Leox;IIF)V m_88315_ + 0 o p_281762_ + 1 o p_282648_ + 2 o p_282676_ + 3 o p_281822_ + a (Lejm;Z)V m_278516_ + 0 o p_278867_ + 1 o p_278868_ + a (Leji;)V m_89107_ + 0 o p_89108_ + b (I)I m_89091_ + static + 0 o p_89092_ + b ()V m_7856_ + b (Lepi;)V m_278517_ + 0 o p_278869_ + c (Lepi;)V m_278515_ + 0 o p_278866_ + c (I)I m_89124_ + static + 0 o p_89125_ + d (Lepi;)V m_279717_ + 0 o p_280732_ + i (I)Z m_89190_ + 0 o p_89191_ + j (I)V m_89192_ + 0 o p_89193_ + k (I)V m_89194_ + 0 o p_89195_ + l (I)V m_89196_ + 0 o p_89197_ +ell$a com/mojang/realmsclient/gui/screens/RealmsPlayerScreen$Entry + a f_89200_ + b f_278386_ + c f_278444_ + d f_278454_ + e f_278391_ + f f_89201_ + g f_278389_ + h f_278432_ + i f_278388_ + j f_278510_ + (Lell;Lejm;)V + 0 o p_89203_ + 1 o p_89204_ + a (ILeox;IIFLepf;)V m_279718_ + static + 0 o p_280733_ + 1 o p_280734_ + 2 o p_280735_ + 3 o p_280736_ + 4 o p_280737_ + 5 o p_280738_ + a ()Lsw; m_142172_ + a (ILepi;)V m_278685_ + 0 o p_279443_ + 1 o p_279383_ + a (DDI)Z m_6375_ + 0 o p_279264_ + 1 o p_279493_ + 2 o p_279168_ + a (Leox;IIIIIIIZF)V m_6311_ + 0 o p_282985_ + 1 o p_281343_ + 2 o p_283042_ + 3 o p_282863_ + 4 o p_281381_ + 5 o p_282692_ + 6 o p_283240_ + 7 o p_282706_ + 8 o p_283067_ + 9 o p_282230_ + b (ILepi;)V m_278731_ + 0 o p_279186_ + 1 o p_279435_ + b ()V m_278747_ + c (ILepi;)V m_278710_ + 0 o p_279360_ + 1 o p_279099_ +ell$b com/mojang/realmsclient/gui/screens/RealmsPlayerScreen$InvitedObjectSelectionList + a f_89226_ + (Lell;)V + 0 o p_89228_ + a (Lepc$a;)V m_6987_ + 0 o p_89248_ + a (I)V m_7109_ + 0 o p_89234_ + a (Lell$a;)V m_6987_ + 0 o p_89246_ + a ()I m_5775_ + a (Leox;)V m_7733_ + 0 o p_282559_ + a (Lejm;)V m_89243_ + 0 o p_89244_ + b (I)V m_89250_ + 0 o p_89251_ + b ()I m_5759_ + c ()I m_5756_ + d ()V m_278791_ +elm com/mojang/realmsclient/gui/screens/RealmsResetNormalWorldScreen + G f_167435_ + H f_89271_ + I f_89273_ + a f_89266_ + b f_167436_ + c f_89270_ + ()V + static + (Ljava/util/function/Consumer;Lsw;)V + 0 o p_167438_ + 1 o p_167439_ + a (Lepi;)V m_89287_ + 0 o p_89288_ + a (Lepp;Ljava/lang/Boolean;)V m_167443_ + 0 o p_167444_ + 1 o p_167445_ + a (Lepp;Lemc;)V m_167440_ + 0 o p_167441_ + 1 o p_167442_ + a (Leox;IIF)V m_88315_ + 0 o p_281862_ + 1 o p_282455_ + 2 o p_281572_ + 3 o p_282211_ + aw_ ()V m_7379_ + b ()V m_7856_ + b (Lepi;)V m_89290_ + 0 o p_89291_ + f ()V m_86600_ +eln com/mojang/realmsclient/gui/screens/RealmsResetWorldScreen + G f_89316_ + H f_89320_ + I f_89321_ + J f_89322_ + K f_89323_ + L f_89324_ + M f_89325_ + N f_89326_ + O f_89300_ + P f_89301_ + Q f_89302_ + R f_89303_ + S f_89304_ + T f_89305_ + U f_89306_ + V f_89310_ + W f_89311_ + X f_89312_ + a f_89313_ + b f_89314_ + c f_89315_ + ()V + static + (Leuq;Lejq;Ljava/lang/Runnable;Ljava/lang/Runnable;)V + 0 o p_89329_ + 1 o p_89330_ + 2 o p_89331_ + 3 o p_89332_ + (Leuq;Lejq;Lsw;Ljava/lang/Runnable;Ljava/lang/Runnable;)V + 0 o p_167448_ + 1 o p_167449_ + 2 o p_167450_ + 3 o p_167451_ + 4 o p_167452_ + (Leuq;Lejq;Lsw;Lsw;ILsw;Ljava/lang/Runnable;Ljava/lang/Runnable;)V + 0 o p_89334_ + 1 o p_89335_ + 2 o p_89336_ + 3 o p_89337_ + 4 o p_89338_ + 5 o p_89339_ + 6 o p_89340_ + 7 o p_89341_ + a (Lepi;)V m_279720_ + 0 o p_280740_ + a (Leox;IILsw;Lacq;ZZ)V m_280014_ + 0 o p_283049_ + 1 o p_282569_ + 2 o p_282343_ + 3 o p_281871_ + 4 o p_281613_ + 5 o p_282720_ + 6 o p_282971_ + a (III)Z m_7933_ + 0 o p_89346_ + 1 o p_89347_ + 2 o p_89348_ + a (Ljava/lang/Runnable;)V m_89382_ + 0 o p_89383_ + a (I)V m_89343_ + 0 o p_89344_ + a (Lemo;)V m_167457_ + 0 o p_167458_ + a (Lemi;)V m_167455_ + 0 o p_167456_ + a (Lekh;)V m_167453_ + 0 o p_167454_ + a (Lsw;)V m_89389_ + 0 o p_89390_ + a (Leln;)Lenn; m_89366_ + static + 0 o p_89367_ + a (Leox;IIF)V m_88315_ + 0 o p_282623_ + 1 o p_282142_ + 2 o p_281508_ + 3 o p_283104_ + au_ ()Lsw; m_142562_ + b (Ljava/lang/Runnable;)V m_167464_ + 0 o p_167465_ + b (Lepi;)V m_279725_ + 0 o p_280745_ + b (Lekh;)V m_181336_ + 0 o p_181337_ + b (Lemi;)V m_181338_ + 0 o p_181339_ + b (I)I m_89392_ + 0 o p_89393_ + b ()V m_7856_ + c (Lepi;)V m_279719_ + 0 o p_280739_ + c (Ljava/lang/Runnable;)V m_279723_ + 0 o p_280743_ + d (Lepi;)V m_279722_ + 0 o p_280742_ + e (Lepi;)V m_279724_ + 0 o p_280744_ + f (Lepi;)V m_279726_ + 0 o p_280746_ + g (Lepi;)V m_279721_ + 0 o p_280741_ +eln$1 com/mojang/realmsclient/gui/screens/RealmsResetWorldScreen$1 + a f_89422_ + (Leln;Ljava/lang/String;)V + 0 o p_89424_ + 1 o p_89425_ + a (Leki;Leki;Leki;Leki;)V m_89426_ + 0 o p_89427_ + 1 o p_89428_ + 2 o p_89429_ + 3 o p_89430_ + run ()V run +eln$a com/mojang/realmsclient/gui/screens/RealmsResetWorldScreen$FrameButton + a f_89435_ + b f_89436_ + (Leln;IILsw;Lacq;Lepi$c;)V + 0 o p_89438_ + 1 o p_89439_ + 2 o p_89440_ + 3 o p_89441_ + 4 o p_89442_ + 5 o p_89443_ + b (Leox;IIF)V m_87963_ + 0 o p_282595_ + 1 o p_282741_ + 2 o p_283560_ + 3 o p_281923_ +elo com/mojang/realmsclient/gui/screens/RealmsSelectFileToUploadScreen + G f_89485_ + H f_89486_ + I f_89487_ + J f_89488_ + K f_89489_ + L f_89490_ + M f_89491_ + N f_89492_ + O f_89493_ + P f_89494_ + Q f_89481_ + a f_89482_ + b f_286962_ + c f_89483_ + ()V + static + (JILeln;Ljava/lang/Runnable;)V + 0 o p_89498_ + 1 o p_89499_ + 2 o p_89500_ + 3 o p_89501_ + B ()V m_89551_ + C ()V m_89552_ + a (Lepi;)V m_279727_ + 0 o p_280747_ + a (Lelo;)Leov; m_167466_ + static + 0 o p_167467_ + a (I)I m_89503_ + static + 0 o p_89504_ + a (III)Z m_7933_ + 0 o p_89506_ + 1 o p_89507_ + 2 o p_89508_ + a (Ldyz;)Lsw; m_89534_ + static + 0 o p_89535_ + a (Leox;IIF)V m_88315_ + 0 o p_281244_ + 1 o p_282772_ + 2 o p_281746_ + 3 o p_281757_ + au_ ()Lsw; m_142562_ + b (Lts;)Lts; m_263854_ + static + 0 o p_264655_ + b (Lelo;)Leov; m_167469_ + static + 0 o p_167470_ + b (Ldyz;)Ljava/lang/String; m_89538_ + static + 0 o p_89539_ + b ()V m_7856_ + b (Lepi;)V m_231306_ + 0 o p_231307_ + c (Ldyz;)Z m_193516_ + static + 0 o p_193517_ + c (Lelo;)Leov; m_167471_ + static + 0 o p_167472_ +elo$a com/mojang/realmsclient/gui/screens/RealmsSelectFileToUploadScreen$Entry + a f_89553_ + b f_89554_ + c f_89555_ + d f_89556_ + e f_89557_ + (Lelo;Ldyz;)V + 0 o p_89559_ + 1 o p_89560_ + a (Leox;III)V m_280233_ + 0 o p_282872_ + 1 o p_283187_ + 2 o p_283611_ + 3 o p_282173_ + a ()Lsw; m_142172_ + a (Leox;IIIIIIIZF)V m_6311_ + 0 o p_282307_ + 1 o p_281918_ + 2 o p_281770_ + 3 o p_282954_ + 4 o p_281599_ + 5 o p_281852_ + 6 o p_283452_ + 7 o p_282531_ + 8 o p_283120_ + 9 o p_282082_ + a (DDI)Z m_6375_ + 0 o p_89562_ + 1 o p_89563_ + 2 o p_89564_ +elo$b com/mojang/realmsclient/gui/screens/RealmsSelectFileToUploadScreen$WorldSelectionList + a f_89582_ + (Lelo;)V + 0 o p_89584_ + a (Lepc$a;)V m_6987_ + 0 o p_89594_ + a (Ldyz;)V m_89587_ + 0 o p_89588_ + a (Lelo$a;)V m_6987_ + 0 o p_89592_ + a ()I m_5775_ + a (Leox;)V m_7733_ + 0 o p_281249_ +elp com/mojang/realmsclient/gui/screens/RealmsSelectWorldTemplateScreen + G f_89608_ + H f_89609_ + I f_89610_ + J f_167479_ + K f_89612_ + L f_89613_ + M f_89615_ + N f_89616_ + O f_89617_ + P f_89618_ + Q f_89597_ + R f_89598_ + S f_89599_ + T f_89600_ + U f_89601_ + V f_89602_ + W f_89603_ + X f_89604_ + a f_89605_ + b f_89606_ + c f_89607_ + ()V + static + (Lsw;Ljava/util/function/Consumer;Lejq$c;)V + 0 o p_167481_ + 1 o p_167482_ + 2 o p_167483_ + (Lsw;Ljava/util/function/Consumer;Lejq$c;Leki;)V + 0 o p_167485_ + 1 o p_167486_ + 2 o p_167487_ + 3 o p_167488_ + B ()V m_89718_ + C ()Z m_89721_ + D ()Z m_89724_ + E ()Lekh; m_89727_ + F ()Z m_89730_ + G ()V m_89736_ + H ()Z m_89737_ + I ()V m_89738_ + J ()V m_89739_ + a ([Lsw;)V m_89682_ + 0 o p_89683_ + a (Lepi;)V m_89678_ + 0 o p_89679_ + a (Leki;)V m_89653_ + 0 o p_89654_ + a (DDI)Z m_6375_ + 0 o p_89629_ + 1 o p_89630_ + 2 o p_89631_ + a (Lemg$b;)I m_279728_ + 0 o p_280748_ + a (I)I m_167489_ + static + 0 o p_167490_ + a (Leox;Lsw;II)V m_280015_ + 0 o p_281524_ + 1 o p_281755_ + 2 o p_282387_ + 3 o p_281491_ + a (Leox;IILjava/util/List;)V m_280418_ + 0 o p_282398_ + 1 o p_282163_ + 2 o p_282021_ + 3 o p_282203_ + a (Leki;Leiz;)Lcom/mojang/datafixers/util/Either; m_89655_ + 0 o p_89656_ + 1 o p_89657_ + a (Leox;IIF)V m_88315_ + 0 o p_282162_ + 1 o p_89640_ + 2 o p_89641_ + 3 o p_89642_ + a (Lelp;)Lenn; m_167491_ + static + 0 o p_167492_ + au_ ()Lsw; m_142562_ + aw_ ()V m_7379_ + b (Lepi;)V m_89690_ + 0 o p_89691_ + b (Lelp;)Leov; m_167495_ + static + 0 o p_167496_ + b ()V m_7856_ + c (Lepi;)V m_89695_ + 0 o p_89696_ + c (Lelp;)Leov; m_167497_ + static + 0 o p_167498_ + d (Lepi;)V m_89700_ + 0 o p_89701_ + d (Lelp;)Leov; m_167499_ + static + 0 o p_167500_ + e (Lelp;)Leov; m_167501_ + static + 0 o p_167502_ + f ()V m_86600_ + f (Lelp;)Leov; m_167503_ + static + 0 o p_167504_ + g (Lelp;)Leov; m_167505_ + static + 0 o p_167506_ +elp$1 com/mojang/realmsclient/gui/screens/RealmsSelectWorldTemplateScreen$1 + a f_89740_ + b f_89741_ + (Lelp;Ljava/lang/String;Leki;)V + 0 o p_89743_ + 1 o p_89744_ + 2 o p_89745_ + a (Lcom/mojang/datafixers/util/Either;)Leki; m_89746_ + 0 o p_89747_ + run ()V run +elp$a com/mojang/realmsclient/gui/screens/RealmsSelectWorldTemplateScreen$Entry + a f_89749_ + b f_89750_ + (Lelp;Lekh;)V + 0 o p_89752_ + 1 o p_89753_ + a (Leox;Lekh;IIII)V m_280486_ + 0 o p_282991_ + 1 o p_281775_ + 2 o p_281335_ + 3 o p_282289_ + 4 o p_281708_ + 5 o p_281391_ + a ()Lsw; m_142172_ + a (Leox;IIIILjava/lang/String;Ljava/lang/String;Ljava/lang/String;)V m_280395_ + 0 o p_281993_ + 1 o p_281797_ + 2 o p_281328_ + 3 o p_283015_ + 4 o p_281905_ + 5 o p_281390_ + 6 o p_281552_ + 7 o p_281807_ + a (Leox;IIIIIIIZF)V m_6311_ + 0 o p_281796_ + 1 o p_282160_ + 2 o p_281759_ + 3 o p_282961_ + 4 o p_281497_ + 5 o p_282427_ + 6 o p_283550_ + 7 o p_282955_ + 8 o p_282866_ + 9 o p_281452_ + a (Leox;IIIILekh;)V m_280563_ + 0 o p_282450_ + 1 o p_281877_ + 2 o p_282680_ + 3 o p_281921_ + 4 o p_283193_ + 5 o p_282405_ +elp$b com/mojang/realmsclient/gui/screens/RealmsSelectWorldTemplateScreen$WorldTemplateObjectSelectionList + a f_89790_ + (Lelp;)V + 0 o p_89792_ + (Lelp;Ljava/lang/Iterable;)V + 0 o p_89794_ + 1 o p_89795_ + a (Lepc$a;)V m_6987_ + 0 o p_89809_ + a ()I m_5775_ + a (Lekh;)V m_89804_ + 0 o p_89805_ + a (DDI)Z m_6375_ + 0 o p_89797_ + 1 o p_89798_ + 2 o p_89799_ + a (Lelp$a;)V m_6987_ + 0 o p_89807_ + a (Leox;)V m_7733_ + 0 o p_282384_ + b (I)Lekh; m_89811_ + 0 o p_89812_ + b (Lelp$a;)Lekh; m_89813_ + static + 0 o p_89814_ + b ()I m_5759_ + d ()Z m_89817_ + e ()Ljava/util/List; m_89818_ +elq com/mojang/realmsclient/gui/screens/RealmsSettingsScreen + G f_89821_ + H f_89822_ + I f_89823_ + J f_89824_ + K f_89825_ + a f_167508_ + b f_89819_ + c f_89820_ + ()V + static + (Lela;Lejq;)V + 0 o p_89829_ + 1 o p_89830_ + a (Lepi;)V m_287012_ + 0 o p_287303_ + a (III)Z m_7933_ + 0 o p_89833_ + 1 o p_89834_ + 2 o p_89835_ + a (Leox;IIF)V m_88315_ + 0 o p_283580_ + 1 o p_281307_ + 2 o p_282074_ + 3 o p_282669_ + b ()V m_7856_ + b (Lepi;)V m_279729_ + 0 o p_280749_ + c (Lepi;)V m_89846_ + 0 o p_89847_ + c (Z)V m_279730_ + 0 o p_280750_ + e ()V m_89831_ + f ()V m_86600_ +elr com/mojang/realmsclient/gui/screens/RealmsSlotOptionsScreen + G f_167511_ + H f_167512_ + I f_89876_ + J f_167513_ + K f_231308_ + L f_89877_ + M f_89878_ + N f_89879_ + O f_89881_ + P f_89882_ + Q f_89852_ + R f_89853_ + S f_231309_ + T f_231310_ + U f_89854_ + V f_89855_ + W f_89856_ + X f_89857_ + Y f_89858_ + Z f_89859_ + a f_89870_ + aa f_89860_ + ab f_89865_ + b f_89871_ + c f_89872_ + ()V + static + (Lela;Lejx;Lejq$c;I)V + 0 o p_89886_ + 1 o p_89887_ + 2 o p_89888_ + 3 o p_89889_ + B ()V m_89940_ + a (Ljava/lang/String;)V m_231313_ + 0 o p_231314_ + a (Lepi;)V m_279734_ + 0 o p_280758_ + a (Ljava/util/function/Consumer;Z)V m_279733_ + 0 o p_280756_ + 1 o p_280757_ + a (Lepp;Ljava/lang/Boolean;)V m_167521_ + 0 o p_167522_ + 1 o p_167523_ + a (Lsw;Ljava/util/function/Consumer;)Lepp$b; m_231323_ + 0 o p_231324_ + 1 o p_231325_ + a (Ljava/util/List;Ljava/lang/Object;I)I m_167528_ + static + 0 o p_167529_ + 1 o p_167530_ + 2 o p_167531_ + a (Lepp;Lepp;Lbdu;)V m_167517_ + 0 o p_167518_ + 1 o p_167519_ + 2 o p_167520_ + a (Lepp;Lcmj;)V m_167514_ + 0 o p_167515_ + 1 o p_167516_ + a (Ljava/lang/Boolean;)V m_231311_ + 0 o p_231312_ + a (III)Z m_7933_ + 0 o p_89891_ + 1 o p_89892_ + 2 o p_89893_ + a (Ljava/util/List;II)Ljava/lang/Object; m_167524_ + static + 0 o p_167525_ + 1 o p_167526_ + 2 o p_167527_ + a (Leox;IIF)V m_88315_ + 0 o p_283210_ + 1 o p_283172_ + 2 o p_281531_ + 3 o p_283191_ + a (Ljava/util/function/Consumer;Lsw;Lepp;Ljava/lang/Boolean;)V m_279732_ + 0 o p_280752_ + 1 o p_280753_ + 2 o p_280754_ + 3 o p_280755_ + au_ ()Lsw; m_142562_ + b (Ljava/lang/Boolean;)V m_231326_ + 0 o p_231327_ + b (Lepp;Ljava/lang/Boolean;)V m_167533_ + 0 o p_167534_ + 1 o p_167535_ + b ()V m_7856_ + b (Lepi;)V m_89909_ + 0 o p_89910_ + c (Lepp;Ljava/lang/Boolean;)V m_167545_ + 0 o p_167546_ + 1 o p_167547_ + c (Ljava/lang/Boolean;)V m_231328_ + 0 o p_231329_ + f ()V m_86600_ +elr$a com/mojang/realmsclient/gui/screens/RealmsSlotOptionsScreen$SettingsSlider + a f_89941_ + h f_89942_ + i f_89943_ + (Lelr;IIIIFF)V + 0 o p_89945_ + 1 o p_89946_ + 2 o p_89947_ + 3 o p_89948_ + 4 o p_89949_ + 5 o p_89950_ + 6 o p_89951_ + a ()V m_5697_ + a (DD)V m_5716_ + 0 o p_89954_ + 1 o p_89955_ + b (DD)V m_7691_ + 0 o p_89957_ + 1 o p_89958_ + b ()V m_5695_ +els com/mojang/realmsclient/gui/screens/RealmsSubscriptionInfoScreen + G f_89966_ + H f_89967_ + I f_89968_ + J f_89969_ + K f_182537_ + L f_276373_ + M f_89974_ + N f_89975_ + O f_89976_ + P f_89960_ + Q f_89961_ + R f_89962_ + a f_89963_ + b f_89964_ + c f_89965_ + ()V + static + (Leuq;Lejq;Leuq;)V + 0 o p_89979_ + 1 o p_89980_ + 2 o p_89981_ + a (Lepi;)V m_279736_ + 0 o p_280760_ + a (I)Lsw; m_89983_ + 0 o p_89984_ + a (III)Z m_7933_ + 0 o p_89986_ + 1 o p_89987_ + 2 o p_89988_ + a (J)V m_89989_ + 0 o p_89990_ + a (Leox;IIF)V m_88315_ + 0 o p_282831_ + 1 o p_281266_ + 2 o p_281799_ + 3 o p_282330_ + a (Lels;)Lenn; m_167549_ + static + 0 o p_167550_ + au_ ()Lsw; m_142562_ + b (J)Lsw; m_182538_ + static + 0 o p_182539_ + b (Lels;)Lenn; m_167552_ + static + 0 o p_167553_ + b ()V m_7856_ + b (Lepi;)V m_287013_ + 0 o p_287304_ + c (Lepi;)V m_279737_ + 0 o p_280761_ + c (Z)V m_90011_ + 0 o p_90012_ +els$1 com/mojang/realmsclient/gui/screens/RealmsSubscriptionInfoScreen$1 + a f_90016_ + (Lels;Ljava/lang/String;)V + 0 o p_90018_ + 1 o p_90019_ + a ()V m_90020_ + run ()V run +elt com/mojang/realmsclient/gui/screens/RealmsTermsScreen + G f_90025_ + H f_90026_ + I f_90027_ + J f_90028_ + K f_90029_ + a f_90022_ + b f_90023_ + c f_90024_ + ()V + static + (Leuq;Leiu;Lejq;)V + 0 o p_90033_ + 1 o p_90034_ + 2 o p_90035_ + B ()V m_90056_ + a (Lepi;)V m_279738_ + 0 o p_280762_ + a (III)Z m_7933_ + 0 o p_90041_ + 1 o p_90042_ + 2 o p_90043_ + a (Leox;IIF)V m_88315_ + 0 o p_281619_ + 1 o p_283526_ + 2 o p_282002_ + 3 o p_282536_ + a (DDI)Z m_6375_ + 0 o p_90037_ + 1 o p_90038_ + 2 o p_90039_ + au_ ()Lsw; m_142562_ + b ()V m_7856_ + b (Lepi;)V m_90053_ + 0 o p_90054_ +elu com/mojang/realmsclient/gui/screens/RealmsUploadScreen + G f_263749_ + H f_263693_ + I f_263789_ + J f_90069_ + K f_90070_ + L f_90071_ + M f_90072_ + N f_90073_ + O f_90074_ + P f_90075_ + Q f_90076_ + R f_90077_ + S f_90078_ + T f_90079_ + U f_90080_ + V f_90057_ + W f_90058_ + X f_90059_ + Y f_90060_ + Z f_90061_ + a f_90067_ + aa f_90062_ + ab f_90063_ + ac f_90064_ + ad f_90065_ + ae f_90066_ + b f_90068_ + c f_263667_ + ()V + static + (JILeln;Ldyz;Ljava/lang/Runnable;)V + 0 o p_90083_ + 1 o p_90084_ + 2 o p_90085_ + 3 o p_90086_ + 4 o p_90087_ + B ()V m_90127_ + C ()V m_90128_ + D ()Lsw; m_167558_ + E ()V m_90129_ + F ()V m_90130_ + G ()V m_90131_ + H ()V m_279739_ + a ([Lsw;)V m_90112_ + 0 o p_90113_ + a (Lepi;)V m_90103_ + 0 o p_90104_ + a (Lorg/apache/commons/compress/archivers/tar/TarArchiveOutputStream;Ljava/lang/String;Ljava/lang/String;Z)V m_90107_ + 0 o p_90108_ + 1 o p_90109_ + 2 o p_90110_ + 3 o p_90111_ + a (Leox;J)V m_280334_ + 0 o p_282279_ + 1 o p_282827_ + a (JLelv;)V m_167555_ + 0 o p_167556_ + 1 o p_167557_ + a (III)Z m_7933_ + 0 o p_90089_ + 1 o p_90090_ + 2 o p_90091_ + a (Ljava/io/File;)Z m_90105_ + 0 o p_90106_ + a (Leox;IIF)V m_88315_ + 0 o p_282140_ + 1 o p_90097_ + 2 o p_90098_ + 3 o p_90099_ + b (Ljava/io/File;)Ljava/io/File; m_90119_ + 0 o p_90120_ + b ()V m_7856_ + b (Lepi;)V m_90117_ + 0 o p_90118_ + c (Leox;)V m_280401_ + 0 o p_283121_ + d (Leox;)V m_90121_ + 0 o p_282575_ + e (Leox;)V m_90124_ + 0 o p_281884_ + f ()V m_86600_ +elv com/mojang/realmsclient/gui/screens/UploadResult + a f_90133_ + b f_90134_ + (ILjava/lang/String;)V + 0 o p_90136_ + 1 o p_90137_ +elv$a com/mojang/realmsclient/gui/screens/UploadResult$Builder + a f_90142_ + b f_90143_ + ()V + a (I)Lelv$a; m_90146_ + 0 o p_90147_ + a (Ljava/lang/String;)Lelv$a; m_90148_ + 0 o p_90149_ + a ()Lelv; m_90145_ +elw com/mojang/realmsclient/gui/screens/package-info +elx com/mojang/realmsclient/gui/task/DataFetcher + a f_238747_ + b f_238658_ + c f_238755_ + d f_238834_ + ()V + static + (Ljava/util/concurrent/Executor;Ljava/util/concurrent/TimeUnit;Lapv;)V + 0 o p_239381_ + 1 o p_239382_ + 2 o p_239383_ + a ()Lelx$c; m_239139_ + a (Ljava/lang/String;Ljava/util/concurrent/Callable;Ljava/time/Duration;Lely;)Lelx$e; m_239622_ + 0 o p_239623_ + 1 o p_239624_ + 2 o p_239625_ + 3 o p_239626_ +elx$a com/mojang/realmsclient/gui/task/DataFetcher$ComputationResult + a f_238822_ + b f_238664_ + (Lcom/mojang/datafixers/util/Either;J)V + 0 o f_238822_ + 1 o f_238664_ + a ()Lcom/mojang/datafixers/util/Either; f_238822_ + b ()J f_238664_ + equals (Ljava/lang/Object;)Z equals + 0 o p_239550_ + hashCode ()I hashCode + toString ()Ljava/lang/String; toString +elx$b com/mojang/realmsclient/gui/task/DataFetcher$SubscribedTask + a f_238821_ + b f_238778_ + c f_238835_ + d f_238534_ + (Lelx;Lelx$e;Ljava/util/function/Consumer;)V + 0 o p_239958_ + 1 o p_239959_ + 2 o p_239960_ + a ()V m_240045_ + a (J)V m_239225_ + 0 o p_239226_ + b ()V m_240119_ + c ()V m_239278_ +elx$c com/mojang/realmsclient/gui/task/DataFetcher$Subscription + a f_238725_ + b f_238520_ + (Lelx;)V + 0 o p_239632_ + a ()V m_240009_ + a (Lelx$e;Ljava/util/function/Consumer;)V m_239441_ + 0 o p_239442_ + 1 o p_239443_ + b ()V m_239355_ + c ()V m_240120_ +elx$d com/mojang/realmsclient/gui/task/DataFetcher$SuccessfulComputationResult + a f_238529_ + b f_238539_ + (Ljava/lang/Object;J)V + 0 o f_238529_ + 1 o f_238539_ + a ()Ljava/lang/Object; f_238529_ + b ()J f_238539_ + equals (Ljava/lang/Object;)Z equals + 0 o p_240174_ + hashCode ()I hashCode + toString ()Ljava/lang/String; toString +elx$e com/mojang/realmsclient/gui/task/DataFetcher$Task + a f_238738_ + b f_238608_ + c f_238640_ + d f_238571_ + e f_238639_ + f f_238827_ + g f_238610_ + h f_238812_ + (Lelx;Ljava/lang/String;Ljava/util/concurrent/Callable;JLely;)V + 0 o p_239073_ + 1 o p_239074_ + 2 o p_239075_ + 3 o p_239076_ + 4 o p_239077_ + a (JLjava/lang/Exception;)V m_239279_ + 0 o p_239280_ + 1 o p_239281_ + a ()V m_239964_ + a (J)V m_239709_ + 0 o p_239710_ + a (JLjava/lang/Object;)V m_239689_ + 0 o p_239690_ + 1 o p_239691_ + b ()Lelx$a; m_239554_ +ely com/mojang/realmsclient/gui/task/RepeatedDelayStrategy + a f_238691_ + ()V + static + a ()J m_239029_ + a (I)Lely; m_239255_ + static + 0 o p_239256_ + b ()J m_239153_ +ely$1 com/mojang/realmsclient/gui/task/RepeatedDelayStrategy$1 + ()V + a ()J m_239029_ + b ()J m_239153_ +ely$2 com/mojang/realmsclient/gui/task/RepeatedDelayStrategy$2 + b f_238793_ + c f_238635_ + d f_238730_ + ()V + static + (I)V + 0 o p_239866_ + a ()J m_239029_ + b ()J m_239153_ +elz com/mojang/realmsclient/gui/task/package-info +em net/minecraft/commands/arguments/ParticleArgument + a f_103927_ + b f_103928_ + c f_243802_ + ()V + static + (Ldm;)V + 0 o p_249844_ + a (Ldm;)Lem; m_245999_ + static + 0 o p_251304_ + a (Lacq;)Lcom/mojang/brigadier/exceptions/CommandSyntaxException; m_103942_ + static + 0 o p_103943_ + a (Ljava/lang/Object;)Lcom/mojang/brigadier/Message; m_103940_ + static + 0 o p_103941_ + a (Lcom/mojang/brigadier/StringReader;Lhg;)Lit; m_247456_ + static + 0 o p_249275_ + 1 o p_251929_ + a (Lcom/mojang/brigadier/StringReader;)Lit; parse + 0 o p_103933_ + a (Lcom/mojang/brigadier/StringReader;Liu;)Lit; m_103934_ + static + 0 o p_103935_ + 1 o p_103936_ + a (Lcom/mojang/brigadier/context/CommandContext;Ljava/lang/String;)Lit; m_103937_ + static + 0 o p_103938_ + 1 o p_103939_ + b (Lcom/mojang/brigadier/StringReader;Lhg;)Liu; m_245039_ + static + 0 o p_249621_ + 1 o p_248983_ + getExamples ()Ljava/util/Collection; getExamples + listSuggestions (Lcom/mojang/brigadier/context/CommandContext;Lcom/mojang/brigadier/suggestion/SuggestionsBuilder;)Ljava/util/concurrent/CompletableFuture; listSuggestions + 0 o p_103948_ + 1 o p_103949_ + parse (Lcom/mojang/brigadier/StringReader;)Ljava/lang/Object; parse + 0 o p_103951_ +ema com/mojang/realmsclient/package-info +emb com/mojang/realmsclient/util/JsonUtils + ()V + a (Ljava/lang/String;Lcom/google/gson/JsonObject;Ljava/util/UUID;)Ljava/util/UUID; m_274562_ + static + 0 o p_275342_ + 1 o p_275515_ + 2 o p_275232_ + a (Ljava/lang/String;Lcom/google/gson/JsonObject;J)J m_90157_ + static + 0 o p_90158_ + 1 o p_90159_ + 2 o p_90160_ + a (Ljava/lang/String;Lcom/google/gson/JsonObject;Z)Z m_90165_ + static + 0 o p_90166_ + 1 o p_90167_ + 2 o p_90168_ + a (Ljava/lang/String;Lcom/google/gson/JsonObject;Ljava/lang/String;)Ljava/lang/String; m_90161_ + static + 0 o p_90162_ + 1 o p_90163_ + 2 o p_90164_ + a (Ljava/lang/String;Lcom/google/gson/JsonObject;I)I m_90153_ + static + 0 o p_90154_ + 1 o p_90155_ + 2 o p_90156_ + a (Ljava/lang/String;Lcom/google/gson/JsonObject;Ljava/util/function/Function;)Ljava/lang/Object; m_274579_ + static + 0 o p_275573_ + 1 o p_275650_ + 2 o p_275655_ + a (Ljava/lang/String;Lcom/google/gson/JsonObject;)Ljava/lang/String; m_274305_ + static + 0 o p_275692_ + 1 o p_275706_ + b (Ljava/lang/String;Lcom/google/gson/JsonObject;)Ljava/util/Date; m_90150_ + static + 0 o p_90151_ + 1 o p_90152_ +emc com/mojang/realmsclient/util/LevelType + a DEFAULT + b FLAT + c LARGE_BIOMES + d AMPLIFIED + e f_167598_ + f f_167599_ + g $VALUES + ()V + static + (Ljava/lang/String;IILacp;)V + 0 o p_239481_ + 1 o p_239482_ + 2 o p_239483_ + 3 o p_239484_ + a ()Lsw; m_167607_ + b ()I m_167608_ + c ()[Lemc; m_167609_ + static + valueOf (Ljava/lang/String;)Lemc; valueOf + static + 0 o p_167611_ + values ()[Lemc; values + static +emd com/mojang/realmsclient/util/RealmsPersistence + a f_167613_ + b f_90169_ + c f_240227_ + ()V + static + ()V + a (Lemd$a;)V m_167616_ + 0 o p_167617_ + a ()Lemd$a; m_167615_ + b ()Lemd$a; m_90171_ + static + b (Lemd$a;)V m_90172_ + static + 0 o p_90173_ + c ()Ljava/nio/file/Path; m_90174_ + static +emd$a com/mojang/realmsclient/util/RealmsPersistence$RealmsPersistenceData + a f_90175_ + b f_90176_ + ()V +eme com/mojang/realmsclient/util/RealmsTextureManager + a f_90178_ + b f_90181_ + c f_90182_ + ()V + static + ()V + a (Ljava/lang/String;)Lehk; m_269309_ + static + 0 o p_270725_ + a (Ljava/lang/String;Ljava/lang/String;)Lacq; m_269474_ + static + 0 o p_270945_ + 1 o p_270612_ + b (Ljava/lang/String;Ljava/lang/String;)Lacq; m_90196_ + static + 0 o p_90197_ + 1 o p_90198_ +eme$a com/mojang/realmsclient/util/RealmsTextureManager$RealmsTexture + a f_90205_ + b f_90206_ + (Ljava/lang/String;Lacq;)V + 0 o f_90205_ + 1 o f_90206_ + a ()Ljava/lang/String; f_90205_ + b ()Lacq; f_90206_ + equals (Ljava/lang/Object;)Z equals + 0 o p_270178_ + hashCode ()I hashCode + toString ()Ljava/lang/String; toString +emf com/mojang/realmsclient/util/RealmsUtil + a f_90216_ + b f_286936_ + c f_268555_ + d f_167619_ + e f_167620_ + f f_167621_ + ()V + static + ()V + a (Leox;IIILjava/lang/String;)V m_280319_ + static + 0 o p_281255_ + 1 o p_281818_ + 2 o p_281791_ + 3 o p_282088_ + 4 o p_282512_ + a (J)Lsw; m_287183_ + static + 0 o p_287679_ + a (Ljava/lang/String;)Ljava/lang/String; m_90221_ + static + 0 o p_90222_ + a (Ljava/util/Date;)Lsw; m_287255_ + static + 0 o p_287698_ + b (Ljava/lang/String;)Lcom/mojang/authlib/GameProfile; m_269239_ + static + 0 o p_270932_ +emf$1 com/mojang/realmsclient/util/RealmsUtil$1 + ()V + a (Ljava/lang/String;)Lcom/mojang/authlib/GameProfile; load + 0 o p_90229_ + load (Ljava/lang/Object;)Ljava/lang/Object; load + 0 o p_90231_ +emg com/mojang/realmsclient/util/TextRenderingUtils + ()V + a (Ljava/util/List;Ljava/util/List;)Ljava/util/List; m_90259_ + static + 0 o p_90260_ + 1 o p_90261_ + a (Ljava/lang/String;)Ljava/util/List; m_90248_ + static + 0 o p_90249_ + a (Ljava/lang/String;[Lemg$b;)Ljava/util/List; m_90256_ + static + 0 o p_90257_ + 1 o p_90258_ + a (Ljava/lang/String;Ljava/util/List;)Ljava/util/List; m_90253_ + static + 0 o p_90254_ + 1 o p_90255_ + a (Ljava/lang/String;Ljava/lang/String;)Ljava/util/List; m_90250_ + static + 0 o p_90251_ + 1 o p_90252_ +emg$a com/mojang/realmsclient/util/TextRenderingUtils$Line + a f_90262_ + ([Lemg$b;)V + 0 o p_167625_ + (Ljava/util/List;)V + 0 o p_90264_ + equals (Ljava/lang/Object;)Z equals + 0 o p_90266_ + hashCode ()I hashCode + toString ()Ljava/lang/String; toString +emg$b com/mojang/realmsclient/util/TextRenderingUtils$LineSegment + a f_90269_ + b f_90270_ + c f_90271_ + (Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;)V + 0 o p_90275_ + 1 o p_90276_ + 2 o p_90277_ + (Ljava/lang/String;)V + 0 o p_90273_ + a ()Ljava/lang/String; m_90278_ + a (Ljava/lang/String;)Lemg$b; m_90279_ + static + 0 o p_90280_ + a (Ljava/lang/String;Ljava/lang/String;)Lemg$b; m_90281_ + static + 0 o p_90282_ + 1 o p_90283_ + b ()Z m_90284_ + c ()Ljava/lang/String; m_90285_ + equals (Ljava/lang/Object;)Z equals + 0 o p_90287_ + hashCode ()I hashCode + toString ()Ljava/lang/String; toString +emh com/mojang/realmsclient/util/UploadTokenCache + a f_90290_ + ()V + static + ()V + a (JLjava/lang/String;)V m_90294_ + static + 0 o p_90295_ + 1 o p_90296_ + a (J)Ljava/lang/String; m_90292_ + static + 0 o p_90293_ + b (J)V m_90297_ + static + 0 o p_90298_ +emi com/mojang/realmsclient/util/WorldGenerationInfo + a f_167627_ + b f_167628_ + c f_167629_ + (Ljava/lang/String;Lemc;Z)V + 0 o p_167631_ + 1 o p_167632_ + 2 o p_167633_ + a ()Ljava/lang/String; m_167634_ + b ()Lemc; m_167635_ + c ()Z m_167636_ +emj com/mojang/realmsclient/util/package-info +emk com/mojang/realmsclient/util/task/CloseServerTask + c f_202333_ + d f_90299_ + e f_90300_ + ()V + static + (Lejq;Lela;)V + 0 o p_90302_ + 1 o p_90303_ + run ()V run +eml com/mojang/realmsclient/util/task/ConnectTask + c f_90305_ + d f_90306_ + e f_90307_ + (Leuq;Lejq;Lejr;)V + 0 o p_90309_ + 1 o p_90310_ + 2 o p_90311_ + a ()V m_5520_ + b ()V m_5519_ + run ()V run +emm com/mojang/realmsclient/util/task/DownloadTask + c f_202335_ + d f_90315_ + e f_90316_ + f f_90317_ + g f_90318_ + ()V + static + (JILjava/lang/String;Leuq;)V + 0 o p_90320_ + 1 o p_90321_ + 2 o p_90322_ + 3 o p_90323_ + a (Z)V m_90324_ + static + 0 o p_90325_ + run ()V run +emn com/mojang/realmsclient/util/task/GetServerDetailsTask + c f_202337_ + d f_90327_ + e f_90328_ + f f_90329_ + g f_90330_ + ()V + static + (Leiu;Leuq;Lejq;Ljava/util/concurrent/locks/ReentrantLock;)V + 0 o p_90332_ + 1 o p_90333_ + 2 o p_90334_ + 3 o p_90335_ + a (Lejr;Ljava/util/function/Function;Z)V m_167642_ + 0 o p_167643_ + 1 o p_167644_ + 2 o p_167645_ + a (Lejr;Ljava/util/function/Function;)Lelg; m_167639_ + 0 o p_167640_ + 1 o p_167641_ + a (Lejr;)Lelh; m_167637_ + 0 o p_167638_ + a (Lejr;Ljava/lang/Throwable;)Ljava/lang/Void; m_287014_ + 0 o p_287305_ + 1 o p_287306_ + a (Ljava/util/function/Function;Lejr;)V m_167648_ + static + 0 o p_167649_ + 1 o p_167650_ + b (Lejr;)Ljava/util/concurrent/CompletableFuture; m_167651_ + 0 o p_167652_ + e ()Lejr; m_167653_ + run ()V run +emo com/mojang/realmsclient/util/task/LongRunningTask + a f_167654_ + b f_90395_ + c f_90394_ + ()V + static + ()V + a (Lenn;Leuq;)V m_90402_ + static + 0 o p_90403_ + 1 o p_90404_ + a (Lsw;)V m_5673_ + 0 o p_90408_ + a ()V m_5520_ + a (Leuq;)V m_90405_ + static + 0 o p_90406_ + a (J)V m_167655_ + static + 0 o p_167656_ + a (Lelh;)V m_90400_ + 0 o p_90401_ + b (Lsw;)V m_90409_ + 0 o p_90410_ + b ()V m_5519_ + c ()Z m_90411_ + d ()V m_90412_ +emp com/mojang/realmsclient/util/task/OpenServerTask + c f_202342_ + d f_90413_ + e f_90414_ + f f_90415_ + g f_90416_ + h f_181342_ + ()V + static + (Lejq;Leuq;Leiu;ZLenn;)V + 0 o p_181344_ + 1 o p_181345_ + 2 o p_181346_ + 3 o p_181347_ + 4 o p_181348_ + e ()V m_181349_ + run ()V run +emq com/mojang/realmsclient/util/task/ResettingGeneratedWorldTask + c f_167657_ + (Lemi;JLsw;Ljava/lang/Runnable;)V + 0 o p_167659_ + 1 o p_167660_ + 2 o p_167661_ + 3 o p_167662_ + a (Leiz;J)V m_142381_ + 0 o p_167664_ + 1 o p_167665_ +emr com/mojang/realmsclient/util/task/ResettingTemplateWorldTask + c f_167666_ + (Lekh;JLsw;Ljava/lang/Runnable;)V + 0 o p_167668_ + 1 o p_167669_ + 2 o p_167670_ + 3 o p_167671_ + a (Leiz;J)V m_142381_ + 0 o p_167673_ + 1 o p_167674_ +ems com/mojang/realmsclient/util/task/ResettingWorldTask + c f_202344_ + d f_90427_ + e f_90428_ + f f_90429_ + ()V + static + (JLsw;Ljava/lang/Runnable;)V + 0 o p_167676_ + 1 o p_167677_ + 2 o p_167678_ + a (Leiz;J)V m_142381_ + 0 o p_167679_ + 1 o p_167680_ + run ()V run +emt com/mojang/realmsclient/util/task/RestoreTask + c f_202346_ + d f_90439_ + e f_90440_ + f f_90441_ + ()V + static + (Lejf;JLela;)V + 0 o p_90443_ + 1 o p_90444_ + 2 o p_90445_ + run ()V run +emu com/mojang/realmsclient/util/task/SwitchMinigameTask + c f_202348_ + d f_90447_ + e f_90448_ + f f_90449_ + ()V + static + (JLekh;Lela;)V + 0 o p_90451_ + 1 o p_90452_ + 2 o p_90453_ + run ()V run +emv com/mojang/realmsclient/util/task/SwitchSlotTask + c f_202350_ + d f_90455_ + e f_90456_ + f f_90457_ + ()V + static + (JILjava/lang/Runnable;)V + 0 o p_90459_ + 1 o p_90460_ + 2 o p_90461_ + run ()V run +emw com/mojang/realmsclient/util/task/WorldCreationTask + c f_202352_ + d f_90463_ + e f_90464_ + f f_90465_ + g f_90466_ + ()V + static + (JLjava/lang/String;Ljava/lang/String;Leuq;)V + 0 o p_90468_ + 1 o p_90469_ + 2 o p_90470_ + 3 o p_90471_ + run ()V run +emx com/mojang/realmsclient/util/task/package-info +emy net/minecraft/client/AttackIndicatorStatus + a OFF + b CROSSHAIR + c HOTBAR + d f_90498_ + e f_90499_ + f f_90500_ + g $VALUES + ()V + static + (Ljava/lang/String;IILjava/lang/String;)V + 0 o p_90504_ + 1 o p_90505_ + 2 o p_90506_ + 3 o p_90507_ + a (I)Lemy; m_90509_ + static + 0 o p_90510_ + a ()I m_35965_ + b ()Ljava/lang/String; m_35968_ + d ()[Lemy; m_167682_ + static + valueOf (Ljava/lang/String;)Lemy; valueOf + static + 0 o p_90515_ + values ()[Lemy; values + static +emz net/minecraft/client/Camera + a f_167683_ + b f_90549_ + c f_90550_ + d f_90551_ + e f_90552_ + f f_90553_ + g f_90554_ + h f_90555_ + i f_90556_ + j f_90557_ + k f_90558_ + l f_90559_ + m f_90560_ + n f_90562_ + o f_90563_ + ()V + a (FF)V m_90572_ + 0 o p_90573_ + 1 o p_90574_ + a (D)D m_90566_ + 0 o p_90567_ + a (Leei;)V m_90581_ + 0 o p_90582_ + a (DDD)V m_90568_ + 0 o p_90569_ + 1 o p_90570_ + 2 o p_90571_ + a ()V m_90565_ + a (Lcls;Lbfj;ZZF)V m_90575_ + 0 o p_90576_ + 1 o p_90577_ + 2 o p_90578_ + 3 o p_90579_ + 4 o p_90580_ + b (DDD)V m_90584_ + 0 o p_90585_ + 1 o p_90586_ + 2 o p_90587_ + b ()Leei; m_90583_ + c ()Lgu; m_90588_ + d ()F m_90589_ + e ()F m_90590_ + f ()Lorg/joml/Quaternionf; m_253121_ + g ()Lbfj; m_90592_ + h ()Z m_90593_ + i ()Z m_90594_ + j ()Lemz$a; m_167684_ + k ()Ldxg; m_167685_ + l ()Lorg/joml/Vector3f; m_253058_ + m ()Lorg/joml/Vector3f; m_253028_ + n ()Lorg/joml/Vector3f; m_252775_ + o ()V m_90598_ +emz$a net/minecraft/client/Camera$NearPlane + a f_167687_ + b f_167688_ + c f_167689_ + (Leei;Leei;Leei;)V + 0 o p_167691_ + 1 o p_167692_ + 2 o p_167693_ + a ()Leei; m_167694_ + a (FF)Leei; m_167695_ + 0 o p_167696_ + 1 o p_167697_ + b ()Leei; m_167698_ + c ()Leei; m_167699_ + d ()Leei; m_167700_ +en net/minecraft/commands/arguments/RangeArgument + a ()Len$b; m_105404_ + static + b ()Len$a; m_105405_ + static +en$a net/minecraft/commands/arguments/RangeArgument$Floats + a f_105406_ + ()V + static + ()V + a (Lcom/mojang/brigadier/context/CommandContext;Ljava/lang/String;)Lcj$c; m_170804_ + static + 0 o p_170805_ + 1 o p_170806_ + a (Lcom/mojang/brigadier/StringReader;)Lcj$c; parse + 0 o p_170803_ + getExamples ()Ljava/util/Collection; getExamples + parse (Lcom/mojang/brigadier/StringReader;)Ljava/lang/Object; parse + 0 o p_105413_ +en$b net/minecraft/commands/arguments/RangeArgument$Ints + a f_105414_ + ()V + static + ()V + a (Lcom/mojang/brigadier/context/CommandContext;Ljava/lang/String;)Lcj$d; m_105419_ + static + 0 o p_105420_ + 1 o p_105421_ + a (Lcom/mojang/brigadier/StringReader;)Lcj$d; parse + 0 o p_105418_ + getExamples ()Ljava/util/Collection; getExamples + parse (Lcom/mojang/brigadier/StringReader;)Ljava/lang/Object; parse + 0 o p_105424_ +ena net/minecraft/client/CameraType + a FIRST_PERSON + b THIRD_PERSON_BACK + c THIRD_PERSON_FRONT + d f_90602_ + e f_90603_ + f f_90604_ + g $VALUES + ()V + static + (Ljava/lang/String;IZZ)V + 0 o p_90608_ + 1 o p_90609_ + 2 o p_90610_ + 3 o p_90611_ + a ()Z m_90612_ + b ()Z m_90613_ + c ()Lena; m_90614_ + d ()[Lena; m_167703_ + static + valueOf (Ljava/lang/String;)Lena; valueOf + static + 0 o p_90616_ + values ()[Lena; values + static +enb net/minecraft/client/ClientRecipeBook + c f_90618_ + d f_90619_ + e f_90620_ + ()V + static + ()V + a (Ljava/lang/Iterable;Lhs;)V m_266394_ + 0 o p_266814_ + 1 o p_266878_ + a (Ljava/util/Map;Lenw;)Ljava/util/stream/Stream; m_167704_ + static + 0 o p_167705_ + 1 o p_167706_ + a (Lhs;Ljava/util/List;)Leyg; m_266118_ + static + 0 o p_266604_ + 1 o p_266605_ + a (Ljava/lang/Iterable;)Ljava/util/Map; m_90642_ + static + 0 o p_90643_ + a (Ljava/util/Map;Lhs;Lcom/google/common/collect/ImmutableList$Builder;Lenw;Ljava/util/List;)V m_266117_ + static + 0 o p_266599_ + 1 o p_266600_ + 2 o p_266601_ + 3 o p_266602_ + 4 o p_266603_ + a (Ljava/util/Map;Lenw;Ljava/util/List;)V m_90635_ + static + 0 o p_90636_ + 1 o p_90637_ + 2 o p_90638_ + a (Lenw;)Ljava/util/List; m_90623_ + 0 o p_90624_ + b ()Ljava/util/List; m_90639_ + b (Lenw;)Ljava/util/List; m_90640_ + static + 0 o p_90641_ + c (Lenw;)Ljava/util/List; m_90644_ + static + 0 o p_90645_ + g (Lcjc;)Lenw; m_90646_ + static + 0 o p_90647_ + h (Lcjc;)Ljava/lang/Object; m_257059_ + static + 0 o p_258109_ +enb$1 net/minecraft/client/ClientRecipeBook$1 + a f_244493_ + b f_244126_ + ()V + static +enc net/minecraft/client/CloudStatus + a OFF + b FAST + c FANCY + d f_231330_ + e f_90655_ + f $VALUES + ()V + static + (Ljava/lang/String;IILjava/lang/String;)V + 0 o p_231332_ + 1 o p_231333_ + 2 o p_231334_ + 3 o p_231335_ + a ()I m_35965_ + b ()Ljava/lang/String; m_35968_ + d ()[Lenc; m_167711_ + static + valueOf (Ljava/lang/String;)Lenc; valueOf + static + 0 o p_90670_ + values ()[Lenc; values + static +end net/minecraft/client/ComponentCollector + a f_90672_ + ()V + a ()Lta; m_90674_ + a (Lta;)V m_90675_ + 0 o p_90676_ + b ()Lta; m_90677_ + c ()V m_167712_ +ene net/minecraft/client/DebugQueryHandler + a f_90697_ + b f_90698_ + c f_90699_ + (Lfex;)V + 0 o p_90701_ + a (ILqr;)Z m_90705_ + 0 o p_90706_ + 1 o p_90707_ + a (Ljava/util/function/Consumer;)I m_90711_ + 0 o p_90712_ + a (Lgu;Ljava/util/function/Consumer;)V m_90708_ + 0 o p_90709_ + 1 o p_90710_ + a (ILjava/util/function/Consumer;)V m_90702_ + 0 o p_90703_ + 1 o p_90704_ +enf net/minecraft/client/GameNarrator + a f_93310_ + b f_93311_ + c f_240371_ + d f_93313_ + ()V + static + (Lenn;)V + 0 o p_240577_ + a (Ljava/lang/String;)V m_93319_ + 0 o p_93320_ + a (Z)V m_288189_ + 0 o p_289016_ + a (Lenp;)V m_93317_ + 0 o p_93318_ + a ()Z m_93316_ + a (Lsw;)V m_263194_ + 0 o p_263413_ + b (Lsw;)V m_263195_ + 0 o p_263389_ + b (Ljava/lang/String;)V m_168787_ + 0 o p_168788_ + b ()V m_93328_ + c (Lsw;)V m_168785_ + 0 o p_168786_ + c ()V m_93329_ + d ()Lenp; m_93330_ +enf$a net/minecraft/client/GameNarrator$NarratorInitException + (Ljava/lang/String;)V + 0 o p_288985_ +eng net/minecraft/client/GraphicsStatus + a FAST + b FANCY + c FABULOUS + d f_90763_ + e f_90764_ + f f_90765_ + g $VALUES + ()V + static + (Ljava/lang/String;IILjava/lang/String;)V + 0 o p_90769_ + 1 o p_90770_ + 2 o p_90771_ + 3 o p_90772_ + a ()I m_35965_ + a (I)Leng; m_90774_ + static + 0 o p_90775_ + b ()Ljava/lang/String; m_35968_ + d ()[Leng; m_167803_ + static + toString ()Ljava/lang/String; toString + valueOf (Ljava/lang/String;)Leng; valueOf + static + 0 o p_90782_ + values ()[Leng; values + static +eng$1 net/minecraft/client/GraphicsStatus$1 + a f_90784_ + ()V + static +enh net/minecraft/client/GuiMessage + a f_90786_ + b f_240363_ + c f_240905_ + d f_240352_ + (ILsw;Lth;Leni;)V + 0 o f_90786_ + 1 o f_240363_ + 2 o f_240905_ + 3 o f_240352_ + a ()I f_90786_ + b ()Lsw; f_240363_ + c ()Lth; f_240905_ + d ()Leni; f_240352_ + equals (Ljava/lang/Object;)Z equals + 0 o p_240638_ + hashCode ()I hashCode + toString ()Ljava/lang/String; toString +enh$a net/minecraft/client/GuiMessage$Line + a f_240350_ + b f_240339_ + c f_240351_ + d f_240367_ + (ILaom;Leni;Z)V + 0 o f_240350_ + 1 o f_240339_ + 2 o f_240351_ + 3 o f_240367_ + a ()I f_240350_ + b ()Laom; f_240339_ + c ()Leni; f_240351_ + d ()Z f_240367_ + equals (Ljava/lang/Object;)Z equals + 0 o p_240535_ + hashCode ()I hashCode + toString ()Ljava/lang/String; toString +eni net/minecraft/client/GuiMessageTag + a f_240386_ + b f_240355_ + c f_240381_ + d f_240342_ + e f_244099_ + f f_256832_ + g f_240380_ + h f_240377_ + i f_240384_ + j f_240357_ + k f_240673_ + l f_256799_ + m f_240362_ + n f_240343_ + ()V + static + (ILeni$a;Lsw;Ljava/lang/String;)V + 0 o f_240386_ + 1 o f_240355_ + 2 o f_240381_ + 3 o f_240342_ + a ()Leni; m_240701_ + static + a (Ljava/lang/String;)Leni; m_240466_ + static + 0 o p_242878_ + b ()Leni; m_257673_ + static + c ()Leni; m_240400_ + static + d ()I f_240386_ + e ()Leni$a; f_240355_ + equals (Ljava/lang/Object;)Z equals + 0 o p_240542_ + f ()Lsw; f_240381_ + g ()Ljava/lang/String; f_240342_ + hashCode ()I hashCode + toString ()Ljava/lang/String; toString +eni$a net/minecraft/client/GuiMessageTag$Icon + a CHAT_MODIFIED + b f_240366_ + c f_240349_ + d f_240358_ + e f_240372_ + f $VALUES + ()V + static + (Ljava/lang/String;IIIII)V + 0 o p_240537_ + 1 o p_240620_ + 2 o p_240599_ + 3 o p_240544_ + 4 o p_240607_ + 5 o p_240531_ + a ()[Leni$a; m_240404_ + static + a (Leox;II)V m_280252_ + 0 o p_282284_ + 1 o p_282597_ + 2 o p_283579_ + valueOf (Ljava/lang/String;)Leni$a; valueOf + static + 0 o p_240592_ + values ()[Leni$a; values + static +enj net/minecraft/client/HotbarManager + a f_167804_ + b f_90796_ + c f_90797_ + d f_90798_ + e f_90799_ + f f_90800_ + ()V + static + (Ljava/io/File;Lcom/mojang/datafixers/DataFixer;)V + 0 o p_90803_ + 1 o p_90804_ + a ()V m_90805_ + a (I)Lfja; m_90806_ + 0 o p_90807_ + b ()V m_90808_ +enk net/minecraft/client/InputType + a NONE + b MOUSE + c KEYBOARD_ARROW + d KEYBOARD_TAB + e $VALUES + ()V + static + (Ljava/lang/String;I)V + 0 o p_265630_ + 1 o p_265342_ + a ()Z m_264588_ + b ()Z m_264505_ + c ()[Lenk; m_264153_ + static + valueOf (Ljava/lang/String;)Lenk; valueOf + static + 0 o p_265378_ + values ()[Lenk; values + static +enl net/minecraft/client/KeyMapping + a f_167805_ + b f_167806_ + c f_167807_ + d f_167808_ + e f_167809_ + f f_167810_ + g f_167811_ + h f_90809_ + i f_90810_ + j f_90811_ + k f_90812_ + l f_90813_ + m f_90814_ + n f_90815_ + o f_90816_ + p f_90817_ + q f_90818_ + ()V + static + (Ljava/lang/String;ILjava/lang/String;)V + 0 o p_90821_ + 1 o p_90822_ + 2 o p_90823_ + (Ljava/lang/String;Lehe$b;ILjava/lang/String;)V + 0 o p_90825_ + 1 o p_90826_ + 2 o p_90827_ + 3 o p_90828_ + a (II)Z m_90832_ + 0 o p_90833_ + 1 o p_90834_ + a (Ljava/util/HashMap;)V m_90844_ + static + 0 o p_90845_ + a (Z)V m_7249_ + 0 o p_90846_ + a (Ljava/lang/String;)Ljava/util/function/Supplier; m_90842_ + static + 0 o p_90843_ + a (Lehe$a;Z)V m_90837_ + static + 0 o p_90838_ + 1 o p_90839_ + a ()V m_90829_ + static + a (Lehe$a;)V m_90835_ + static + 0 o p_90836_ + a (Lenl;)I compareTo + 0 o p_90841_ + a (I)Z m_90830_ + 0 o p_90831_ + b (Ljava/lang/String;)Lsw; m_90852_ + static + 0 o p_90853_ + b (Lenl;)Z m_90850_ + 0 o p_90851_ + b (Lehe$a;)V m_90848_ + 0 o p_90849_ + b ()V m_90847_ + static + c ()V m_289723_ + static + compareTo (Ljava/lang/Object;)I compareTo + 0 o p_90856_ + d ()V m_90854_ + static + e ()Z m_90857_ + f ()Ljava/lang/String; m_90858_ + g ()Z m_90859_ + h ()Ljava/lang/String; m_90860_ + i ()Lehe$a; m_90861_ + j ()Z m_90862_ + k ()Lsw; m_90863_ + l ()Z m_90864_ + m ()Ljava/lang/String; m_90865_ + n ()V m_90866_ +enm net/minecraft/client/KeyboardHandler + a f_167812_ + b f_90867_ + c f_90869_ + d f_90870_ + e f_90871_ + f f_90872_ + g f_90873_ + (Lenn;)V + 0 o p_90875_ + a (Ljava/lang/String;)V m_90911_ + 0 o p_90912_ + a (JII)V m_90889_ + 0 o p_90890_ + 1 o p_90891_ + 2 o p_90892_ + a (IJ)V m_90877_ + 0 o p_90878_ + 1 o p_90879_ + a (ILeuq;[ZIII)V m_260734_ + static + 0 o p_261328_ + 1 o p_261329_ + 2 o p_261330_ + 3 o p_261331_ + 4 o p_261332_ + 5 o p_261333_ + a (ZZ)V m_90928_ + 0 o p_90929_ + 1 o p_90930_ + a (Leqt;CI)V m_90903_ + static + 0 o p_90904_ + 1 o p_90905_ + 2 o p_90906_ + a (Ln;Lsw;)V m_167824_ + 0 o p_167825_ + 1 o p_167826_ + a (Lacq;Lbfj;Lqr;)V m_90918_ + 0 o p_90919_ + 1 o p_90920_ + 2 o p_90921_ + a (Leqt;II)V m_90907_ + static + 0 o p_90908_ + 1 o p_90909_ + 2 o p_90910_ + a (Ljava/nio/file/Path;Lts;)Lts; m_276074_ + static + 0 o p_276096_ + 1 o p_276097_ + a (Lacq;Leei;Lqr;)V m_90922_ + 0 o p_90923_ + 1 o p_90924_ + 2 o p_90925_ + a (Ljava/lang/String;[Ljava/lang/Object;)V m_90913_ + 0 o p_90914_ + 1 o p_90915_ + a (Ldcb;Lgu;Lqr;)V m_90899_ + 0 o p_90900_ + 1 o p_90901_ + 2 o p_90902_ + a ()Ljava/lang/String; m_90876_ + a (JIIII)V m_90893_ + 0 o p_90894_ + 1 o p_90895_ + 2 o p_90896_ + 3 o p_90897_ + 4 o p_90898_ + a (Lsw;)V m_167822_ + 0 o p_167823_ + a (I)Z m_167813_ + 0 o p_167814_ + a (J)V m_90887_ + 0 o p_90888_ + b (Ljava/lang/String;[Ljava/lang/Object;)V m_90948_ + 0 o p_90949_ + 1 o p_90950_ + b (JII)V m_90934_ + 0 o p_90935_ + 1 o p_90936_ + 2 o p_90937_ + b (I)Z m_90932_ + 0 o p_90933_ + b (JIIII)V m_90938_ + 0 o p_90939_ + 1 o p_90940_ + 2 o p_90941_ + 3 o p_90942_ + 4 o p_90943_ + b (Lsw;)V m_90916_ + 0 o p_90917_ + b (Ldcb;Lgu;Lqr;)V m_90944_ + 0 o p_90945_ + 1 o p_90946_ + 2 o p_90947_ + b ()V m_90931_ + c (JII)V m_167827_ + 0 o p_167828_ + 1 o p_167829_ + 2 o p_167830_ + c (Ljava/lang/String;[Ljava/lang/Object;)V m_167837_ + 0 o p_167838_ + 1 o p_167839_ + c (Lsw;)V m_167840_ + 0 o p_167841_ + c (JIIII)V m_167831_ + 0 o p_167832_ + 1 o p_167833_ + 2 o p_167834_ + 3 o p_167835_ + 4 o p_167836_ +enm$1 net/minecraft/client/KeyboardHandler$1 + a f_90963_ + ()V + static +enn net/minecraft/client/Minecraft + A f_90977_ + B f_167842_ + C f_90978_ + D f_90979_ + E f_90980_ + F f_90981_ + G f_90982_ + H f_167843_ + I f_205119_ + J f_90983_ + K f_90984_ + L f_90985_ + M f_90986_ + N f_90987_ + O f_90988_ + P f_90989_ + Q f_90990_ + R f_90991_ + S f_90993_ + T f_90994_ + U f_90995_ + V f_90997_ + W f_90998_ + X f_90999_ + Y f_91000_ + Z f_263699_ + a f_91002_ + aA f_91051_ + aB f_91052_ + aC f_91053_ + aD f_91054_ + aE f_91003_ + aF f_91005_ + aG f_91006_ + aH f_167844_ + aI f_167845_ + aJ f_260676_ + aK f_231337_ + aL f_238717_ + aM f_278504_ + aN f_91007_ + aO f_91009_ + aP f_91010_ + aQ f_91011_ + aR f_91012_ + aS f_91013_ + aT f_91014_ + aU f_91015_ + aV f_91016_ + aW f_91081_ + aX f_91017_ + aY f_91018_ + aZ f_91019_ + aa f_91001_ + ab f_91029_ + ac f_91030_ + ad f_91031_ + ae f_91032_ + af f_91033_ + ag f_91034_ + ah f_91035_ + ai f_91036_ + aj f_243783_ + ak f_243981_ + al f_91038_ + am f_91039_ + an f_91040_ + ao f_91041_ + ap f_91042_ + aq f_91043_ + ar f_91044_ + as f_91045_ + at f_91046_ + au f_91047_ + av f_205120_ + aw f_231338_ + ax f_91048_ + ay f_193584_ + az f_91050_ + b f_91055_ + ba f_91020_ + bb f_91021_ + bc f_260560_ + bd f_91022_ + be f_91023_ + bf f_91024_ + bg f_91025_ + bh f_91026_ + bi f_91027_ + bj f_91028_ + bk f_91056_ + bl f_167846_ + bm f_167847_ + bn f_231340_ + bo f_231341_ + bp f_231342_ + bq f_231343_ + br f_240365_ + bs f_240378_ + bt f_238638_ + bu f_91057_ + c f_91058_ + d f_91059_ + e f_167848_ + f f_91060_ + g f_91061_ + h f_91062_ + i f_243022_ + j f_91063_ + k f_91064_ + l f_91065_ + m f_91066_ + n f_91067_ + o f_91068_ + p f_91069_ + q f_91070_ + r f_91072_ + s f_91073_ + t f_91074_ + u f_91075_ + v f_91076_ + w f_91077_ + x f_91078_ + y f_91079_ + z f_91080_ + ()V + static + (Lezy;)V + 0 o p_91084_ + A ()Z m_261227_ + B ()Z m_261210_ + C ()Z m_91400_ + D ()Z m_168021_ + E ()Z m_239929_ + F ()Lcom/mojang/authlib/minecraft/BanDetails; m_239210_ + G ()Lenn$a; m_168022_ + H ()Z m_91402_ + I ()Lfex; m_91403_ + J ()Z m_91404_ + static + K ()Z m_91405_ + static + L ()Z m_91085_ + static + M ()Z m_91086_ + static + N ()Lenn; m_91087_ + static + O ()Ljava/util/concurrent/CompletableFuture; m_91088_ + P ()Lffd; m_91089_ + Q ()Z m_91090_ + R ()Z m_91091_ + S ()Lfyp; m_91092_ + T ()Z m_257720_ + U ()Leoc; m_91094_ + V ()Lcom/mojang/authlib/properties/PropertyMap; m_91095_ + W ()Ljava/net/Proxy; m_91096_ + X ()Lfuw; m_91097_ + Y ()Lakx; m_91098_ + Z ()Laki; m_91099_ + a (Lab;Ljava/util/List;)Ljava/nio/file/Path; m_167856_ + 0 o p_167857_ + 1 o p_167858_ + a (Lfyk$a;)Lfyl; m_231372_ + 0 o p_231373_ + a (Ljava/util/function/Consumer;Ljava/nio/file/Path;)V m_231402_ + static + 0 o p_231403_ + 1 o p_231404_ + a (Ljava/lang/String;Ldyy$c;Laki;Ladk;Z)V m_261031_ + 0 o p_261891_ + 1 o p_261564_ + 2 o p_261826_ + 3 o p_261470_ + 4 o p_261465_ + a (Ljava/io/File;II)Lsw; m_167899_ + 0 o p_167900_ + 1 o p_167901_ + 2 o p_167902_ + a (ZLjava/util/concurrent/CompletableFuture;Ljava/util/Optional;)V m_271547_ + 0 o p_272297_ + 1 o p_272298_ + 2 o p_272299_ + a (Lenk;)V m_264033_ + 0 o p_265509_ + a (Ljava/util/List;)V m_254754_ + 0 o p_255439_ + a (Ljava/util/Optional;)V m_210744_ + 0 o p_210745_ + a (ZLbaq;)Lban; m_167970_ + 0 o p_167971_ + 1 o p_167972_ + a (Ljava/util/function/Consumer;DI)V m_231352_ + static + 0 o p_238862_ + 1 o p_238863_ + 2 o p_238864_ + a (Lfyk$a;Ljava/util/List;)V m_231374_ + 0 o p_231375_ + 1 o p_231376_ + a (Lcom/mojang/authlib/yggdrasil/YggdrasilAuthenticationService;Lezy;)Lcom/mojang/authlib/minecraft/UserApiService; m_193585_ + 0 o p_193586_ + 1 o p_193587_ + a (Leic;)V m_231362_ + 0 o p_231363_ + a (Z)V m_7440_ + 0 o p_91261_ + a (Lab;Lenn;Lfwb;Ljava/lang/String;Lenr;)Lab; m_167850_ + static + 0 o p_167851_ + 1 o p_167852_ + 2 o p_167853_ + 3 o p_167854_ + 4 o p_167855_ + a (Leuq;)V m_91152_ + 0 o p_91153_ + a (Ljava/util/function/Consumer;Ljava/util/concurrent/CompletableFuture;Ljava/util/concurrent/CompletableFuture;)V m_231405_ + static + 0 o p_231406_ + 1 o p_231407_ + 2 o p_231408_ + a (Lenn;)Ljava/lang/String; m_231364_ + static + 0 o p_231365_ + a (Leuk;)V m_91150_ + 0 o p_91151_ + a (ZLjava/lang/Throwable;)V m_271548_ + 0 o p_272300_ + 1 o p_272301_ + a (Ljava/lang/Throwable;)V m_91239_ + 0 o p_91240_ + a (Ljava/util/function/Consumer;)Z m_167946_ + 0 o p_167947_ + a (Lacq;)Ljava/util/function/Function; m_91258_ + 0 o p_91259_ + a (Leiz;Lakt;Lezy;Z)V m_278518_ + 0 o p_278870_ + 1 o p_278871_ + 2 o p_278872_ + 3 o p_278873_ + a (Lfew;)V m_91156_ + 0 o p_91157_ + a (Ljava/io/File;IIII)Lsw; m_167903_ + 0 o p_167904_ + 1 o p_167905_ + 2 o p_167906_ + 3 o p_167907_ + 4 o p_167908_ + a (Lenr;)Ljava/lang/String; m_231366_ + static + 0 o p_231367_ + a (Lenn;Lfwb;Ljava/lang/String;Lenr;Lo;)V m_167872_ + static + 0 o p_167873_ + 1 o p_167874_ + 2 o p_167875_ + 3 o p_167876_ + 4 o p_167877_ + a (Ljava/util/function/Consumer;Lbam;)V m_231399_ + 0 o p_231400_ + 1 o p_231401_ + a (Lsw;)V m_271937_ + 0 o p_273566_ + a (Leox;Lbam;)V m_280564_ + 0 o p_281277_ + 1 o p_281574_ + a (Ljava/lang/String;)V m_91326_ + 0 o p_91327_ + a (Lbam;)V m_231350_ + static + 0 o p_231351_ + a (IJ)V m_91113_ + 0 o p_91114_ + 1 o p_91115_ + a (Ljava/util/concurrent/CompletableFuture;)Ljava/util/concurrent/CompletionStage; m_231390_ + static + 0 o p_231391_ + a ()V m_5741_ + a (Ljava/io/File;Lts;)Lts; m_231377_ + static + 0 o p_231378_ + 1 o p_231379_ + a (Ljava/nio/file/Path;Lts;)Lts; m_231395_ + static + 0 o p_238865_ + 1 o p_231387_ + a (Lo;)V m_231412_ + 0 o p_231413_ + a (Ljava/util/function/Consumer;Lsw;)V m_231409_ + static + 0 o p_231410_ + 1 o p_231411_ + a (Leyg;)Ljava/util/stream/Stream; m_266120_ + static + 0 o p_266608_ + a (I)V m_91111_ + 0 o p_91112_ + a (Lbfj;)V m_91118_ + 0 o p_91119_ + a (Lfwb;)Ljava/lang/String; m_263856_ + static + 0 o p_264659_ + a (Ljava/util/UUID;)Z m_91246_ + 0 o p_91247_ + a (Lffq;)V m_239476_ + 0 o p_239477_ + a (Leyg;Lcjc;)Lacq; m_266121_ + static + 0 o p_266609_ + 1 o p_266610_ + a (Leiz;Lakt;Lezy$c;)V m_278684_ + 0 o p_279285_ + 1 o p_279164_ + 2 o p_279146_ + a (Ladk;)Ljava/lang/String; m_231344_ + static + 0 o p_231345_ + a (Ldyy$c;Laki;Ladk;Ladh;Ljava/lang/Thread;)Lfyp; m_231356_ + 0 o p_231357_ + 1 o p_231358_ + 2 o p_231359_ + 3 o p_231360_ + 4 o p_231361_ + a (Lcfz;)Ljava/util/stream/Stream; m_231429_ + static + 0 o p_231353_ + a (Lab;Ljava/util/function/Consumer;Ljava/util/List;)V m_231346_ + 0 o p_231347_ + 1 o p_231348_ + 2 o p_231349_ + a (Ljava/lang/Throwable;Lsw;)V m_91241_ + 0 o p_91242_ + 1 o p_91243_ + a (Lcfz;Lczn;)V m_263196_ + 0 o p_263370_ + 1 o p_263368_ + aA ()Lgaf; m_91301_ + aB ()Z m_91302_ + aC ()Lenj; m_91303_ + aD ()Lfwx; m_91304_ + aE ()Lfvt; m_91305_ + aF ()Lfvs; m_91306_ + aG ()Lban; m_91307_ + aH ()Lais; m_167983_ + aI ()Lfvv; m_91310_ + aJ ()Leuk; m_91265_ + aK ()Leys; m_91266_ + aL ()Z m_91267_ + aM ()Lehn; m_91268_ + aN ()Lfkd; m_91269_ + aO ()Lfea; m_167973_ + aP ()Z m_167974_ + aQ ()V m_193588_ + aR ()Lenv; m_231416_ + aS ()Lapj; m_231417_ + aT ()Lenk; m_264529_ + aU ()Lenf; m_240477_ + aV ()Lffg; m_240442_ + aW ()Lffs; m_239211_ + aX ()Lekq; m_239420_ + aY ()Lfjg; m_278644_ + aZ ()V m_286052_ + aa ()Lajo; m_246804_ + ab ()Lfvn; m_247489_ + ac ()Ljava/nio/file/Path; m_245161_ + ad ()Lfwb; m_91102_ + ae ()Z m_91103_ + af ()Z m_91104_ + ag ()Lfjr; m_91105_ + ah ()Lfzc; m_91106_ + ai ()Lame; m_91107_ + aj ()Lcom/mojang/authlib/minecraft/MinecraftSessionService; m_91108_ + ak ()Lfvu; m_91109_ + al ()Lbfj; m_91288_ + am ()Lfko; m_91289_ + an ()Lfow; m_91290_ + ao ()Lflt; m_167982_ + ap ()Lfpw; m_91291_ + aq ()Laoo; m_91293_ + ar ()Z m_91294_ + as ()Lcom/mojang/datafixers/DataFixer; m_91295_ + au ()Ljava/lang/Thread; m_6304_ + av ()F m_91296_ + aw ()F m_91297_ + ax ()Leoo; m_91298_ + ay ()Z m_91299_ + az ()Lerh; m_91300_ + b (Ljava/io/File;Lts;)Lts; m_231424_ + static + 0 o p_231425_ + 1 o p_231426_ + b (Z)V m_91336_ + 0 o p_91337_ + b (Lbfj;)Z m_91314_ + 0 o p_91315_ + b (ZLbaq;)V m_91338_ + 0 o p_91339_ + 1 o p_91340_ + b (Ljava/util/List;)Lfyi; m_91316_ + static + 0 o p_231451_ + b (Ljava/lang/Object;)Z m_210782_ + static + 0 o p_210783_ + b (Leyg;)Ljava/util/stream/Stream; m_266122_ + static + 0 o p_266611_ + b (Ljava/lang/String;)Ljava/lang/String; m_231427_ + static + 0 o p_231428_ + b (I)V m_91312_ + 0 o p_91313_ + b (Lsw;)V m_231414_ + static + 0 o p_231415_ + b (Lo;)V m_231439_ + 0 o p_231440_ + b (Lfew;)V m_91324_ + 0 o p_91325_ + b (Leuq;)V m_91320_ + 0 o p_91321_ + b (Leyg;Lcjc;)Ljava/util/stream/Stream; m_266119_ + static + 0 o p_266606_ + 1 o p_266607_ + b (Lcfz;)Ljava/util/stream/Stream; m_257063_ + static + 0 o p_91317_ + b (Ljava/util/function/Consumer;Lbam;)V m_231433_ + 0 o p_231434_ + 1 o p_231435_ + b (Ljava/util/concurrent/CompletableFuture;)V m_231431_ + static + 0 o p_231432_ + b (Ljava/util/function/Consumer;Ljava/nio/file/Path;)V m_231436_ + 0 o p_231437_ + 1 o p_231438_ + b ()V m_5740_ + bA ()V m_231445_ + bB ()V m_285666_ + bC ()I m_210774_ + ba ()Ljava/lang/String; m_91270_ + bb ()V m_272186_ + bc ()V m_91271_ + bd ()Z m_91272_ + static + be ()V m_91273_ + bf ()Z m_91274_ + bg ()I m_91275_ + bh ()V m_167975_ + bi ()V m_231418_ + bj ()Z m_202354_ + bs ()V m_91277_ + bt ()Z m_91278_ + bu ()V m_91279_ + bv ()V m_91280_ + bw ()Ljava/lang/String; m_210770_ + static + bx ()Ljava/lang/String; m_231419_ + static + by ()Ljava/lang/String; m_231443_ + static + bz ()Z m_238868_ + static + c (Leuq;)V m_91346_ + 0 o p_91347_ + c ()V m_91341_ + c (Ljava/util/concurrent/CompletableFuture;)V m_231452_ + 0 o p_231453_ + c (Lo;)V m_91332_ + static + 0 o p_91333_ + c (I)Laio; m_231446_ + 0 o p_231447_ + c (Ljava/lang/String;)Z m_231448_ + static + 0 o p_231449_ + c (Lsw;)V m_231441_ + static + 0 o p_231442_ + c (Ljava/util/List;)Lfyi; m_231354_ + static + 0 o p_231430_ + c (Z)V m_91358_ + 0 o p_91359_ + c (Lcfz;)Ljava/util/stream/Stream; m_257060_ + static + 0 o p_210797_ + close ()V close + d (Lsw;)Ljava/lang/String; m_231454_ + static + 0 o p_231455_ + d (Ljava/util/List;)Lfyi; m_231385_ + static + 0 o p_231389_ + d (Leuq;)V m_91362_ + 0 o p_91363_ + d ()Laoz; m_193589_ + static + d (Ljava/lang/String;)Z m_210808_ + static + 0 o p_210809_ + d (Lo;)Lo; m_91354_ + 0 o p_91355_ + d (Z)V m_91372_ + 0 o p_91373_ + e (Lo;)Lo; m_231460_ + static + 0 o p_231461_ + e (Lsw;)Ljava/lang/String; m_210806_ + static + 0 o p_210807_ + e ()V m_91374_ + e (Ljava/lang/Runnable;)Z m_6362_ + 0 o p_91365_ + e (Z)Ljava/util/concurrent/CompletableFuture; m_168019_ + 0 o p_168020_ + f (Ljava/lang/Runnable;)Ljava/lang/Runnable; m_6681_ + 0 o p_91376_ + f (Z)V m_91383_ + 0 o p_91384_ + f ()Legv; m_91385_ + f (Lo;)Lo; m_231462_ + 0 o p_231463_ + f (Lsw;)V m_271549_ + 0 o p_272302_ + g (Z)V m_91386_ + 0 o p_91387_ + g ()Ljava/lang/String; m_91388_ + h (Z)V m_238186_ + 0 o p_243338_ + h ()Ljava/lang/String; m_91389_ + i ()Z m_91390_ + j ()Ljava/util/concurrent/CompletableFuture; m_91391_ + k ()Ldyy; m_91392_ + l ()V m_91393_ + m ()I m_260875_ + n ()J m_261169_ + o ()V m_91394_ + p ()V m_91395_ + q ()Z m_91396_ + r ()Lfyx; m_91397_ + s ()V m_91398_ + t ()Lfzg; m_261007_ + u ()D m_231464_ + v ()Lffc; m_231465_ + w ()Lezk; m_231466_ + y ()V m_91399_ + z ()Z m_260979_ +enn$1 net/minecraft/client/Minecraft$1 + a f_91406_ + ()V + static +enn$a net/minecraft/client/Minecraft$ChatStatus + a ENABLED + b DISABLED_BY_OPTIONS + c DISABLED_BY_LAUNCHER + d DISABLED_BY_PROFILE + e f_238170_ + f f_168027_ + g $VALUES + ()V + static + (Ljava/lang/String;ILsw;)V + 0 o p_168031_ + 1 o p_168032_ + 2 o p_168033_ + a ()Lsw; m_168034_ + a (Z)Z m_142594_ + 0 o p_168035_ + b ()[Lenn$a; m_168036_ + static + valueOf (Ljava/lang/String;)Lenn$a; valueOf + static + 0 o p_168038_ + values ()[Lenn$a; values + static +enn$a$1 net/minecraft/client/Minecraft$ChatStatus$1 + (Ljava/lang/String;ILsw;)V + 0 o p_168041_ + 1 o p_168042_ + 2 o p_168043_ + a (Z)Z m_142594_ + 0 o p_168045_ +enn$a$2 net/minecraft/client/Minecraft$ChatStatus$2 + (Ljava/lang/String;ILsw;)V + 0 o p_168047_ + 1 o p_168048_ + 2 o p_168049_ + a (Z)Z m_142594_ + 0 o p_168051_ +enn$a$3 net/minecraft/client/Minecraft$ChatStatus$3 + (Ljava/lang/String;ILsw;)V + 0 o p_168053_ + 1 o p_168054_ + 2 o p_168055_ + a (Z)Z m_142594_ + 0 o p_168057_ +enn$a$4 net/minecraft/client/Minecraft$ChatStatus$4 + (Ljava/lang/String;ILsw;)V + 0 o p_168059_ + 1 o p_168060_ + 2 o p_168061_ + a (Z)Z m_142594_ + 0 o p_168063_ +eno net/minecraft/client/MouseHandler + a f_91503_ + b f_91504_ + c f_91505_ + d f_91506_ + e f_91507_ + f f_91508_ + g f_91509_ + h f_91510_ + i f_91511_ + j f_91512_ + k f_91513_ + l f_91514_ + m f_91515_ + n f_91516_ + o f_91517_ + p f_91518_ + q f_91519_ + r f_91520_ + (Lenn;)V + 0 o p_91522_ + a (JIJ)V m_91535_ + 0 o p_91536_ + 1 o p_91537_ + 2 o p_91538_ + a (Leuq;DDDD)V m_168072_ + 0 o p_168073_ + 1 o p_168074_ + 2 o p_168075_ + 3 o p_168076_ + 4 o p_168077_ + a ([ZLeuq;DDI)V m_168078_ + static + 0 o p_168079_ + 1 o p_168080_ + 2 o p_168081_ + 3 o p_168082_ + 4 o p_168083_ + a (J[Ljava/nio/file/Path;)V m_168065_ + 0 o p_168066_ + 1 o p_168067_ + a ()V m_91523_ + a (Leuq;DD)V m_263857_ + static + 0 o p_264660_ + 1 o p_264661_ + 2 o p_264662_ + a (JLjava/util/List;)V m_91539_ + 0 o p_91540_ + 1 o p_91541_ + a (JDD)V m_91526_ + 0 o p_91527_ + 1 o p_91528_ + 2 o p_91529_ + a (JIII)V m_91530_ + 0 o p_91531_ + 1 o p_91532_ + 2 o p_91533_ + 3 o p_91534_ + a (J)V m_91524_ + 0 o p_91525_ + b ([ZLeuq;DDI)V m_168084_ + static + 0 o p_168085_ + 1 o p_168086_ + 2 o p_168087_ + 3 o p_168088_ + 4 o p_168089_ + b (JDD)V m_91561_ + 0 o p_91562_ + 1 o p_91563_ + 2 o p_91564_ + b (JIII)V m_91565_ + 0 o p_91566_ + 1 o p_91567_ + 2 o p_91568_ + 3 o p_91569_ + b ()Z m_91560_ + c ()Z m_168090_ + c (JIII)V m_168091_ + 0 o p_168092_ + 1 o p_168093_ + 2 o p_168094_ + 3 o p_168095_ + c (JDD)V m_91575_ + 0 o p_91576_ + 1 o p_91577_ + 2 o p_91578_ + d (JDD)V m_168096_ + 0 o p_168097_ + 1 o p_168098_ + 2 o p_168099_ + d ()Z m_91584_ + e (JDD)V m_91590_ + 0 o p_91591_ + 1 o p_91592_ + 2 o p_91593_ + e ()D m_91589_ + f ()D m_91594_ + f (JDD)V m_168100_ + 0 o p_168101_ + 1 o p_168102_ + 2 o p_168103_ + g ()V m_91599_ + h ()Z m_91600_ + i ()V m_91601_ + j ()V m_91602_ + k ()V m_91603_ +enp net/minecraft/client/NarratorStatus + a OFF + b ALL + c CHAT + d SYSTEM + e f_91608_ + f f_91609_ + g f_91610_ + h $VALUES + ()V + static + (Ljava/lang/String;IILjava/lang/String;)V + 0 o p_91614_ + 1 o p_91615_ + 2 o p_91616_ + 3 o p_91617_ + a (I)Lenp; m_91619_ + static + 0 o p_91620_ + a ()I m_91618_ + b ()Lsw; m_91621_ + c ()Z m_240504_ + d ()Z m_240472_ + e ()[Lenp; m_168104_ + static + valueOf (Ljava/lang/String;)Lenp; valueOf + static + 0 o p_91625_ + values ()[Lenp; values + static +enq net/minecraft/client/OptionInstance + a f_231471_ + b f_260471_ + c f_231472_ + d f_231474_ + e f_231475_ + f f_231476_ + g f_231477_ + h f_231478_ + i f_231479_ + j f_231480_ + k f_231481_ + ()V + static + (Ljava/lang/String;Lenq$l;Lenq$b;Lenq$n;Lcom/mojang/serialization/Codec;Ljava/lang/Object;Ljava/util/function/Consumer;)V + 0 o p_259964_ + 1 o p_260354_ + 2 o p_259496_ + 3 o p_259090_ + 4 o p_259043_ + 5 o p_259396_ + 6 o p_260147_ + (Ljava/lang/String;Lenq$l;Lenq$b;Lenq$n;Ljava/lang/Object;Ljava/util/function/Consumer;)V + 0 o p_260248_ + 1 o p_259437_ + 2 o p_259148_ + 3 o p_259590_ + 4 o p_260067_ + 5 o p_259392_ + a (Ljava/lang/String;Lenq$l;ZLjava/util/function/Consumer;)Lenq; m_257874_ + static + 0 o p_259289_ + 1 o p_260210_ + 2 o p_259359_ + 3 o p_259975_ + a (Ljava/lang/String;ZLjava/util/function/Consumer;)Lenq; m_231528_ + static + 0 o p_231529_ + 1 o p_231530_ + 2 o p_231531_ + a (Ljava/lang/String;Z)Lenq; m_231525_ + static + 0 o p_231526_ + 1 o p_231527_ + a (Lenq$b;Ljava/lang/Object;)Lsw; m_231504_ + 0 o p_231505_ + 1 o p_231506_ + a (Ljava/lang/String;Lenq$l;Lenq$b;ZLjava/util/function/Consumer;)Lenq; m_260965_ + static + 0 o p_262002_ + 1 o p_261507_ + 2 o p_262099_ + 3 o p_262136_ + 4 o p_261984_ + a (Lenr;IIILjava/util/function/Consumer;)Lepf; m_261194_ + 0 o p_261971_ + 1 o p_261486_ + 2 o p_261569_ + 3 o p_261677_ + 4 o p_261912_ + a (Lsw;Ljava/lang/Boolean;)Lsw; m_231543_ + static + 0 o p_231544_ + 1 o p_231545_ + a (Lsw;)Lenq$l; m_231535_ + static + 0 o p_231536_ + a (Lsw;Ljava/lang/Object;)Leqp; m_257065_ + static + 0 o p_258115_ + 1 o p_258116_ + a (Ljava/lang/Object;)V m_231514_ + 0 o p_231515_ + a (Ljava/lang/String;Lenq$l;Z)Lenq; m_257536_ + static + 0 o p_259291_ + 1 o p_260306_ + 2 o p_259985_ + a (Lenr;III)Lepf; m_231507_ + 0 o p_231508_ + 1 o p_231509_ + 2 o p_231510_ + 3 o p_231511_ + a (Ljava/lang/Boolean;)V m_231512_ + static + 0 o p_231513_ + a (Lsw;Lapc;)Lsw; m_231537_ + static + 0 o p_231538_ + 1 o p_231539_ + a ()Lenq$l; m_231498_ + static + b (Ljava/lang/Boolean;)V m_231547_ + static + 0 o p_231548_ + b ()Lenq$b; m_231546_ + static + b (Ljava/lang/Object;)Ljava/lang/Object; m_231549_ + 0 o p_231550_ + c (Ljava/lang/Object;)V m_260737_ + static + 0 o p_261336_ + c ()Ljava/lang/Object; m_231551_ + d (Ljava/lang/Object;)Leqp; m_257064_ + static + 0 o p_258114_ + d ()Lcom/mojang/serialization/Codec; m_231554_ + e ()Lenq$n; m_231555_ + toString ()Ljava/lang/String; toString +enq$a net/minecraft/client/OptionInstance$AltEnum + a f_231557_ + b f_231558_ + c f_231559_ + d f_231560_ + e f_231561_ + (Ljava/util/List;Ljava/util/List;Ljava/util/function/BooleanSupplier;Lenq$d$a;Lcom/mojang/serialization/Codec;)V + 0 o f_231557_ + 1 o f_231558_ + 2 o f_231559_ + 3 o f_231560_ + 4 o f_231561_ + a (Ljava/lang/Object;)Ljava/util/Optional; m_214064_ + 0 o p_231570_ + a ()Lepp$c; m_213889_ + b ()Ljava/util/List; f_231557_ + c ()Ljava/util/List; f_231558_ + d ()Ljava/util/function/BooleanSupplier; f_231559_ + e ()Lenq$d$a; m_213569_ + equals (Ljava/lang/Object;)Z equals + 0 o p_231576_ + f ()Lcom/mojang/serialization/Codec; m_213664_ + hashCode ()I hashCode + toString ()Ljava/lang/String; toString +enq$b net/minecraft/client/OptionInstance$CaptionBasedToString + toString (Lsw;Ljava/lang/Object;)Lsw; m_231580_ + 0 o p_231581_ + 1 o p_231582_ +enq$c net/minecraft/client/OptionInstance$ClampingLazyMaxIntRange + a f_231583_ + b f_231584_ + c f_276069_ + (ILjava/util/function/IntSupplier;I)V + 0 o f_231583_ + 1 o f_231584_ + 2 o f_276069_ + a (Ljava/lang/Object;)Ljava/util/Optional; m_214064_ + 0 o p_231592_ + a (Ljava/lang/Integer;I)Ljava/lang/String; m_273968_ + 0 o p_274647_ + 1 o p_274648_ + a ()Lepp$c; m_213889_ + a (Ljava/lang/Integer;)Ljava/util/Optional; m_214064_ + 0 o p_231590_ + b ()I m_214118_ + c (Ljava/lang/Integer;)Lcom/mojang/serialization/DataResult; m_276075_ + 0 o p_276098_ + c ()Z m_214105_ + d ()I m_214123_ + equals (Ljava/lang/Object;)Z equals + 0 o p_231599_ + f ()Lcom/mojang/serialization/Codec; m_213664_ + g ()Ljava/util/function/IntSupplier; f_231584_ + h ()I f_276069_ + hashCode ()I hashCode + toString ()Ljava/lang/String; toString +enq$d net/minecraft/client/OptionInstance$CycleableValueSet + a ()Lepp$c; m_213889_ + a (Lenq;Lenr;Ljava/util/function/Consumer;Lepp;Ljava/lang/Object;)V m_260739_ + 0 o p_261344_ + 1 o p_261345_ + 2 o p_261346_ + 3 o p_261347_ + 4 o p_261348_ + a (Lenq$l;IIILenr;Ljava/util/function/Consumer;Lenq;)Lepf; m_260738_ + 0 o p_261337_ + 1 o p_261338_ + 2 o p_261339_ + 3 o p_261340_ + 4 o p_261341_ + 5 o p_261342_ + 6 o p_261343_ + a (Lenq$l;Lenr;IIILjava/util/function/Consumer;)Ljava/util/function/Function; m_213823_ + 0 o p_261801_ + 1 o p_261824_ + 2 o p_261649_ + 3 o p_262114_ + 4 o p_261536_ + 5 o p_261642_ + e ()Lenq$d$a; m_213569_ +enq$d$a net/minecraft/client/OptionInstance$CycleableValueSet$ValueSetter + set (Lenq;Ljava/lang/Object;)V m_231622_ + 0 o p_231623_ + 1 o p_231624_ +enq$e net/minecraft/client/OptionInstance$Enum + a f_231625_ + b f_231626_ + (Ljava/util/List;Lcom/mojang/serialization/Codec;)V + 0 o f_231625_ + 1 o f_231626_ + a (Ljava/lang/Object;)Ljava/util/Optional; m_214064_ + 0 o p_231632_ + a ()Lepp$c; m_213889_ + b ()Ljava/util/List; f_231625_ + equals (Ljava/lang/Object;)Z equals + 0 o p_231635_ + f ()Lcom/mojang/serialization/Codec; m_213664_ + hashCode ()I hashCode + toString ()Ljava/lang/String; toString +enq$f net/minecraft/client/OptionInstance$IntRange + a f_231639_ + b f_231640_ + (II)V + 0 o f_231639_ + 1 o f_231640_ + a (Ljava/lang/Object;)Ljava/util/Optional; m_214064_ + 0 o p_231647_ + a (Ljava/lang/Integer;)Ljava/util/Optional; m_214064_ + 0 o p_231645_ + b ()I m_214118_ + d ()I m_214123_ + equals (Ljava/lang/Object;)Z equals + 0 o p_231651_ + f ()Lcom/mojang/serialization/Codec; m_213664_ + hashCode ()I hashCode + toString ()Ljava/lang/String; toString +enq$g net/minecraft/client/OptionInstance$IntRangeBase + a (D)Ljava/lang/Integer; m_213729_ + 0 o p_231656_ + a (Ljava/util/function/IntFunction;Ljava/util/function/ToIntFunction;)Lenq$k; m_231657_ + 0 o p_231658_ + 1 o p_231659_ + b (D)Ljava/lang/Object; m_213729_ + 0 o p_231661_ + b (Ljava/lang/Integer;)D m_213640_ + 0 o p_231663_ + b ()I m_214118_ + b (Ljava/lang/Object;)D m_213640_ + 0 o p_231665_ + d ()I m_214123_ +enq$g$1 net/minecraft/client/OptionInstance$IntRangeBase$1 + a f_231666_ + b f_231667_ + c f_231668_ + (Lenq$g;Ljava/util/function/ToIntFunction;Ljava/util/function/IntFunction;)V + 0 o p_231670_ + 1 o p_231671_ + 2 o p_231672_ + a (Ljava/lang/Object;)Ljava/util/Optional; m_214064_ + 0 o p_231674_ + b (D)Ljava/lang/Object; m_213729_ + 0 o p_231676_ + b (Ljava/lang/Object;)D m_213640_ + 0 o p_231678_ + f ()Lcom/mojang/serialization/Codec; m_213664_ +enq$h net/minecraft/client/OptionInstance$LazyEnum + a f_231680_ + b f_231681_ + c f_231682_ + (Ljava/util/function/Supplier;Ljava/util/function/Function;Lcom/mojang/serialization/Codec;)V + 0 o f_231680_ + 1 o f_231681_ + 2 o f_231682_ + a (Ljava/lang/Object;)Ljava/util/Optional; m_214064_ + 0 o p_231689_ + a ()Lepp$c; m_213889_ + b ()Ljava/util/function/Supplier; f_231680_ + c ()Ljava/util/function/Function; f_231681_ + equals (Ljava/lang/Object;)Z equals + 0 o p_231693_ + f ()Lcom/mojang/serialization/Codec; m_213664_ + hashCode ()I hashCode + toString ()Ljava/lang/String; toString +enq$i net/minecraft/client/OptionInstance$OptionInstanceSliderButton + h f_231697_ + i f_231698_ + j f_256889_ + k f_260531_ + (Lenr;IIIILenq;Lenq$k;Lenq$l;Ljava/util/function/Consumer;)V + 0 o p_261713_ + 1 o p_261873_ + 2 o p_261656_ + 3 o p_261799_ + 4 o p_261893_ + 5 o p_262129_ + 6 o p_261995_ + 7 o p_261963_ + 8 o p_261829_ + a ()V m_5697_ + b ()V m_5695_ +enq$j net/minecraft/client/OptionInstance$SliderableOrCyclableValueSet + a (Lenq$l;Lenr;IIILjava/util/function/Consumer;)Ljava/util/function/Function; m_213823_ + 0 o p_261786_ + 1 o p_262030_ + 2 o p_261940_ + 3 o p_262149_ + 4 o p_261495_ + 5 o p_261881_ + c ()Z m_214105_ +enq$k net/minecraft/client/OptionInstance$SliderableValueSet + a (Lenr;IIILenq$l;Ljava/util/function/Consumer;Lenq;)Lepf; m_260740_ + 0 o p_261349_ + 1 o p_261350_ + 2 o p_261351_ + 3 o p_261352_ + 4 o p_261353_ + 5 o p_261354_ + 6 o p_261355_ + a (Lenq$l;Lenr;IIILjava/util/function/Consumer;)Ljava/util/function/Function; m_213823_ + 0 o p_261993_ + 1 o p_262177_ + 2 o p_261706_ + 3 o p_261683_ + 4 o p_261573_ + 5 o p_261969_ + b (D)Ljava/lang/Object; m_213729_ + 0 o p_231731_ + b (Ljava/lang/Object;)D m_213640_ + 0 o p_231732_ +enq$l net/minecraft/client/OptionInstance$TooltipSupplier + apply (Ljava/lang/Object;)Leqp; m_257630_ + 0 o p_259319_ +enq$m net/minecraft/client/OptionInstance$UnitDouble + a INSTANCE + b $VALUES + ()V + static + (Ljava/lang/String;I)V + 0 o p_231737_ + 1 o p_231738_ + a (Ljava/lang/Double;)Ljava/util/Optional; m_214064_ + 0 o p_231747_ + a (D)Ljava/lang/Double; m_213729_ + 0 o p_231741_ + a (Ljava/lang/Object;)Ljava/util/Optional; m_214064_ + 0 o p_231749_ + a (Ljava/lang/Boolean;)Ljava/lang/Double; m_231744_ + static + 0 o p_231745_ + a ()[Lenq$m; m_231739_ + static + a (Lcom/mojang/datafixers/util/Either;)Ljava/lang/Double; m_231742_ + static + 0 o p_231743_ + a (Ljava/util/function/DoubleFunction;Ljava/util/function/ToDoubleFunction;)Lenq$k; m_231750_ + 0 o p_231751_ + 1 o p_231752_ + b (Ljava/lang/Double;)D m_213640_ + 0 o p_231756_ + b (D)Ljava/lang/Object; m_213729_ + 0 o p_231754_ + b (Ljava/lang/Object;)D m_213640_ + 0 o p_231758_ + c (Ljava/lang/Double;)Ljava/lang/Double; m_231759_ + static + 0 o p_231760_ + f ()Lcom/mojang/serialization/Codec; m_213664_ + valueOf (Ljava/lang/String;)Lenq$m; valueOf + static + 0 o p_231763_ + values ()[Lenq$m; values + static +enq$m$1 net/minecraft/client/OptionInstance$UnitDouble$1 + a f_231765_ + b f_231766_ + c f_231767_ + (Lenq$m;Ljava/util/function/ToDoubleFunction;Ljava/util/function/DoubleFunction;)V + 0 o p_231769_ + 1 o p_231770_ + 2 o p_231771_ + a (Ljava/lang/Object;)Ljava/util/Optional; m_214064_ + 0 o p_231773_ + b (D)Ljava/lang/Object; m_213729_ + 0 o p_231775_ + b (Ljava/lang/Object;)D m_213640_ + 0 o p_231777_ + f ()Lcom/mojang/serialization/Codec; m_213664_ +enq$n net/minecraft/client/OptionInstance$ValueSet + a (Ljava/lang/Object;)Ljava/util/Optional; m_214064_ + 0 o p_231784_ + a (Lenq$l;Lenr;IIILjava/util/function/Consumer;)Ljava/util/function/Function; m_213823_ + 0 o p_231779_ + 1 o p_231780_ + 2 o p_231781_ + 3 o p_231782_ + 4 o p_231783_ + 5 o p_261976_ + f ()Lcom/mojang/serialization/Codec; m_213664_ +enr net/minecraft/client/Options + A f_92088_ + B f_92089_ + C f_92090_ + D f_92091_ + E f_92092_ + F f_92093_ + G f_92094_ + H f_92095_ + I f_92096_ + J f_92097_ + K f_92098_ + L f_92099_ + M f_92100_ + N f_92101_ + O f_92102_ + P f_92103_ + Q f_92104_ + R f_92105_ + S f_92054_ + T f_92055_ + U f_92056_ + V f_92057_ + W f_92058_ + X f_92059_ + Y f_92060_ + Z f_92062_ + a f_168406_ + aA f_231794_ + aB f_231785_ + aC f_92115_ + aD f_92116_ + aE f_231786_ + aF f_231787_ + aG f_231788_ + aH f_193769_ + aI f_92119_ + aJ f_92120_ + aK f_92121_ + aL f_92122_ + aM f_244402_ + aN f_273812_ + aO f_273910_ + aP f_92108_ + aQ f_92127_ + aR f_92131_ + aS f_92132_ + aT f_92133_ + aU f_92134_ + aV f_92135_ + aW f_263815_ + aX f_263718_ + aY f_92027_ + aZ f_92029_ + aa f_92063_ + ab f_92064_ + ac f_92065_ + ad f_92066_ + ae f_92067_ + af f_278127_ + ag f_92075_ + ah f_263744_ + ai f_92076_ + aj f_92077_ + ak f_92078_ + al f_92079_ + am f_92107_ + an f_168408_ + ao f_231789_ + ap f_168413_ + aq f_231790_ + ar f_231791_ + as f_92053_ + at f_92106_ + au f_193768_ + av f_193765_ + aw f_92112_ + ax f_92113_ + ay f_231792_ + az f_231793_ + b f_168407_ + bA f_92080_ + bB f_231808_ + bC f_231809_ + bD f_92081_ + bE f_92082_ + bF f_231810_ + bG f_92084_ + bH f_193763_ + bI f_231797_ + bJ f_231798_ + bK f_92110_ + bL f_92111_ + bM f_92068_ + bN f_260656_ + bO f_260461_ + bP f_231799_ + bQ f_92069_ + bR f_231800_ + bS f_92070_ + bT f_231801_ + bU f_231802_ + bV f_267409_ + bW f_267458_ + bX f_267450_ + bY f_267462_ + bZ f_268597_ + ba f_92032_ + bb f_92033_ + bc f_92034_ + bd f_92036_ + be f_256834_ + bf f_92037_ + bg f_92038_ + bh f_92039_ + bi f_92040_ + bj f_92041_ + bk f_92042_ + bl f_92043_ + bm f_92044_ + bn f_92045_ + bo f_92046_ + bp f_231804_ + bq f_193762_ + br f_92047_ + bs f_244498_ + bt f_92049_ + bu f_231805_ + bv f_231806_ + bw f_231807_ + bx f_92050_ + by f_92051_ + bz f_92052_ + c f_168409_ + ca f_268427_ + cb f_92071_ + cc f_276073_ + cd f_92072_ + ce f_92073_ + cf f_231803_ + cg f_193764_ + d f_168410_ + e f_168411_ + f f_168412_ + g f_193766_ + h f_231811_ + i f_92117_ + j f_92118_ + k f_92123_ + l f_92124_ + m f_92125_ + n f_92126_ + o f_92128_ + p f_92129_ + q f_92028_ + r f_92030_ + s f_92031_ + t f_168405_ + u f_92035_ + v f_92083_ + w f_210816_ + x f_92085_ + y f_92086_ + z f_92087_ + ()V + static + (Lenn;Ljava/io/File;)V + 0 o p_92138_ + 1 o p_92139_ + A ()Lenq; m_232121_ + B ()Lenq; m_232122_ + C ()Lenq; m_232123_ + D ()Lenq; m_231812_ + E ()Lenq; m_257871_ + F ()Lenq; m_231813_ + G ()Lenq; m_231814_ + H ()Lenq; m_231815_ + I ()Lenq; m_231816_ + J ()Lenq; m_231817_ + K ()Lenq; m_231818_ + L ()Lenq; m_231819_ + M ()Lenq; m_231820_ + N ()Lenq; m_231821_ + O ()Lenq; m_231822_ + P ()Lenq; m_231823_ + Q ()Lenq; m_231824_ + R ()Lenq; m_231825_ + S ()Lenq; m_231826_ + T ()Lenq; m_231827_ + U ()Lenq; m_231828_ + V ()Lenq; m_231829_ + W ()Lenq; m_231830_ + X ()Lenq; m_231831_ + Y ()Lenq; m_231832_ + Z ()Lenq; m_231833_ + a (Lenr$a;)V m_168427_ + 0 o p_168428_ + a (Lsw;Ljava/lang/Double;)Lsw; m_231912_ + static + 0 o p_231913_ + 1 o p_231914_ + a (Lqr;)Lqr; m_92164_ + 0 o p_92165_ + a (Lsw;Leng;)Lsw; m_231903_ + static + 0 o p_231904_ + 1 o p_231905_ + a (Lenp;)V m_240389_ + 0 o p_231860_ + a (Lbym;)V m_232102_ + static + 0 o p_268018_ + a ()Lenq; m_231838_ + a (Lsw;D)Lsw; m_231897_ + static + 0 o p_231898_ + 1 o p_231899_ + a (Ljava/lang/String;Lami;)Lenq; m_247249_ + 0 o p_250353_ + 1 o p_249262_ + a (Lami;)F m_92147_ + 0 o p_92148_ + a (Lenq;Leng;)V m_231861_ + static + 0 o p_231862_ + 1 o p_231863_ + a (D)I m_231839_ + static + 0 o p_231840_ + a (Lsw;Ljava/lang/String;)Lsw; m_231918_ + static + 0 o p_231919_ + 1 o p_231920_ + a (Lcom/mojang/datafixers/util/Pair;)Ljava/lang/String; m_231847_ + static + 0 o p_231848_ + a (Lenl;Lehe$a;)V m_92159_ + 0 o p_92160_ + 1 o p_92161_ + a (Lena;)V m_92157_ + 0 o p_92158_ + a (Lami;Ljava/lang/Double;)V m_244657_ + static + 0 o p_247767_ + 1 o p_247768_ + a (Lsw;Ljava/lang/Boolean;)Lsw; m_260741_ + static + 0 o p_261356_ + 1 o p_261357_ + a (Leng;)V m_231870_ + static + 0 o p_268192_ + a (Ljava/lang/Integer;)V m_231855_ + static + 0 o p_268325_ + a (Lsw;I)Lsw; m_231900_ + static + 0 o p_231901_ + 1 o p_231902_ + a (Lsw;Lenp;)Lsw; m_240390_ + 0 o p_231907_ + 1 o p_231908_ + a (Ljava/lang/Double;)V m_263858_ + static + 0 o p_270408_ + a (Lcom/mojang/datafixers/util/Either;)Lenc; m_231938_ + static + 0 o p_231939_ + a (Lqr;Ljava/lang/String;)V m_231894_ + static + 0 o p_231895_ + 1 o p_231896_ + a (Lbyp;Z)V m_168418_ + 0 o p_168419_ + 1 o p_168420_ + a (Ljava/util/EnumMap;)V m_244656_ + 0 o p_247766_ + a (Ljava/lang/Boolean;)V m_231948_ + static + 0 o p_268147_ + a (Lbft;)V m_231841_ + 0 o p_231842_ + a (Lens;)V m_268764_ + static + 0 o p_269611_ + a (Lbyp;)Z m_168416_ + 0 o p_168417_ + a (Ljava/lang/String;)Z m_168435_ + static + 0 o p_168436_ + a (Lenc;)V m_231853_ + static + 0 o p_231854_ + a (Lsw;Ljava/lang/Integer;)Lsw; m_231915_ + static + 0 o p_231916_ + 1 o p_270801_ + a (I)I m_92143_ + 0 o p_92144_ + a (Laki;)V m_274546_ + 0 o p_275268_ + a (Lsw;Lsw;)Lsw; m_231921_ + static + 0 o p_231922_ + 1 o p_231923_ + a (Lemy;)V m_231987_ + static + 0 o p_268185_ + a (F)F m_92141_ + 0 o p_92142_ + a (Lenu;)V m_231843_ + static + 0 o p_268073_ + aA ()Z m_231934_ + static + aa ()Lenq; m_231834_ + ab ()Lenq; m_231836_ + ac ()Lenq; m_231837_ + ad ()Lenq; m_261324_ + ae ()Lenq; m_231924_ + af ()Lenq; m_231925_ + ag ()Lenq; m_231926_ + ah ()Lenq; m_267805_ + ai ()Lenq; m_267782_ + aj ()Lenq; m_269326_ + ak ()Lenq; m_231927_ + al ()Lenq; m_231928_ + am ()Lenq; m_231929_ + an ()Lenq; m_231930_ + ao ()Lenq; m_231931_ + ap ()V m_92140_ + aq ()V m_92169_ + ar ()V m_92172_ + as ()Lenc; m_92174_ + at ()Z m_92175_ + au ()Lena; m_92176_ + av ()Ljava/io/File; m_168450_ + aw ()Ljava/lang/String; m_168451_ + ax ()I m_193772_ + ay ()Ljava/util/List; m_231932_ + static + az ()I m_231933_ + static + b (Lsw;Ljava/lang/Integer;)Lsw; m_231961_ + static + 0 o p_231962_ + 1 o p_268036_ + b (Laki;)V m_92145_ + 0 o p_92146_ + b (Lbft;)Ljava/lang/String; m_231936_ + static + 0 o p_231937_ + b (Ljava/lang/Double;)V m_260742_ + static + 0 o p_268127_ + b (Lsw;Ljava/lang/Boolean;)Lsw; m_231909_ + static + 0 o p_231910_ + 1 o p_231911_ + b (Lenc;)Lcom/mojang/datafixers/util/Either; m_231940_ + static + 0 o p_231941_ + b (Lami;)Lenq; m_246669_ + 0 o p_251574_ + b (Ljava/lang/String;)Z m_168440_ + static + 0 o p_168441_ + b (I)V m_193770_ + 0 o p_193771_ + b ()Lenq; m_231935_ + b (Lenu;)Leqp; m_257067_ + static + 0 o p_258118_ + b (Lbyp;Z)V m_92154_ + 0 o p_92155_ + 1 o p_92156_ + b (F)I m_92170_ + 0 o p_92171_ + b (Lsw;Ljava/lang/Double;)Lsw; m_268763_ + static + 0 o p_269609_ + 1 o p_269610_ + b (Ljava/lang/Boolean;)V m_231971_ + static + 0 o p_265526_ + b (Ljava/lang/Integer;)V m_231991_ + static + 0 o p_231992_ + b (Lsw;I)Lsw; m_231952_ + static + 0 o p_231953_ + 1 o p_231954_ + b (Leng;)Z m_231942_ + static + 0 o p_231943_ + c ()Lenq; m_231964_ + c (Lsw;Ljava/lang/Double;)Lsw; m_267501_ + static + 0 o p_267838_ + 1 o p_267839_ + c (Lsw;Ljava/lang/Boolean;)Lsw; m_231955_ + static + 0 o p_231956_ + 1 o p_231957_ + c (Ljava/lang/Double;)V m_241717_ + static + 0 o p_267960_ + c (Ljava/lang/String;)Ljava/util/List; m_168442_ + static + 0 o p_168443_ + c (Lsw;Ljava/lang/Integer;)Lsw; m_231981_ + static + 0 o p_231982_ + 1 o p_231983_ + c (Leng;)Leqp; m_257066_ + static + 0 o p_258117_ + c (I)D m_231965_ + static + 0 o p_231966_ + c (Ljava/lang/Integer;)V m_267500_ + static + 0 o p_270071_ + c (Ljava/lang/Boolean;)V m_231989_ + static + 0 o p_261689_ + d (Ljava/lang/Double;)V m_231868_ + static + 0 o p_265799_ + d (Lsw;Ljava/lang/Integer;)Lsw; m_231998_ + static + 0 o p_231999_ + 1 o p_232000_ + d (Lsw;Ljava/lang/Double;)Lsw; m_267499_ + static + 0 o p_267835_ + 1 o p_267836_ + d (Ljava/lang/Integer;)V m_231950_ + static + 0 o p_231951_ + d (Ljava/lang/String;)V m_263137_ + static + 0 o p_275584_ + d ()Lenq; m_231984_ + d (Ljava/lang/Boolean;)V m_231969_ + 0 o p_231970_ + d (I)Ljava/lang/Double; m_263860_ + static + 0 o p_264666_ + d (Lsw;Ljava/lang/Boolean;)Lsw; m_231975_ + static + 0 o p_231976_ + 1 o p_231977_ + e ()Lenq; m_232001_ + e (Ljava/lang/Double;)V m_231973_ + static + 0 o p_231877_ + e (Ljava/lang/Boolean;)V m_231874_ + static + 0 o p_231875_ + e (Ljava/lang/String;)Ljava/util/Optional; m_232010_ + static + 0 o p_232011_ + e (Ljava/lang/Integer;)Ljava/lang/Double; m_232008_ + static + 0 o p_232009_ + e (Lsw;Ljava/lang/Double;)Lsw; m_244655_ + static + 0 o p_231959_ + 1 o p_231960_ + e (Lsw;Ljava/lang/Integer;)Lsw; m_232015_ + static + 0 o p_232016_ + 1 o p_232017_ + e (I)Ljava/lang/Double; m_231985_ + static + 0 o p_231986_ + f (Ljava/lang/String;)Lbft; m_232027_ + static + 0 o p_232028_ + f (I)Ljava/lang/Integer; m_232002_ + static + 0 o p_232003_ + f (Ljava/lang/Double;)V m_231876_ + static + 0 o p_231949_ + f (Lsw;Ljava/lang/Integer;)Lsw; m_232032_ + static + 0 o p_232033_ + 1 o p_232034_ + f (Lsw;Ljava/lang/Double;)Lsw; m_231958_ + static + 0 o p_231979_ + 1 o p_231980_ + f ()Lenq; m_232018_ + f (Ljava/lang/Boolean;)V m_263138_ + static + 0 o p_275545_ + f (Ljava/lang/Integer;)V m_232025_ + static + 0 o p_232026_ + g ()Lenq; m_232035_ + g (Ljava/lang/String;)Lenc; m_232042_ + static + 0 o p_232043_ + g (Lsw;Ljava/lang/Double;)Lsw; m_231978_ + static + 0 o p_231996_ + 1 o p_231997_ + g (Lsw;Ljava/lang/Integer;)Lsw; m_232047_ + static + 0 o p_232048_ + 1 o p_232049_ + g (Ljava/lang/Integer;)V m_232023_ + static + 0 o p_268254_ + g (Ljava/lang/Boolean;)Leqp; m_257068_ + static + 0 o p_231858_ + g (Ljava/lang/Double;)Ljava/lang/Integer; m_232006_ + static + 0 o p_232007_ + g (I)Ljava/lang/Double; m_232019_ + static + 0 o p_232020_ + h (Lsw;Ljava/lang/Double;)Lsw; m_231995_ + static + 0 o p_262709_ + 1 o p_262710_ + h (Ljava/lang/Double;)V m_231946_ + static + 0 o p_268246_ + h (Ljava/lang/Integer;)V m_232085_ + static + 0 o p_232086_ + h ()Lenq; m_232050_ + h (Ljava/lang/Boolean;)V m_232021_ + 0 o p_232022_ + i ()Lenq; m_232060_ + i (Ljava/lang/Boolean;)V m_232036_ + static + 0 o p_232037_ + i (Lsw;Ljava/lang/Double;)Lsw; m_241716_ + static + 0 o p_232013_ + 1 o p_232014_ + i (Ljava/lang/Double;)V m_231851_ + static + 0 o p_268049_ + i (Ljava/lang/Integer;)I m_232093_ + static + 0 o p_232094_ + j ()Lenq; m_232070_ + j (Lsw;Ljava/lang/Double;)Lsw; m_263859_ + static + 0 o p_264664_ + 1 o p_270572_ + j (Ljava/lang/Double;)I m_263861_ + static + 0 o p_264667_ + j (Ljava/lang/Boolean;)V m_232051_ + static + 0 o p_232052_ + k (Lsw;Ljava/lang/Double;)Lsw; m_241715_ + static + 0 o p_232030_ + 1 o p_232031_ + k ()Lenq; m_232080_ + k (Ljava/lang/Boolean;)V m_232061_ + static + 0 o p_232062_ + k (Ljava/lang/Double;)V m_240679_ + static + 0 o p_232039_ + l (Ljava/lang/Boolean;)V m_275764_ + 0 o p_275860_ + l ()Lenq; m_232090_ + l (Ljava/lang/Double;)I m_232053_ + static + 0 o p_232054_ + l (Lsw;Ljava/lang/Double;)Lsw; m_232044_ + static + 0 o p_232045_ + 1 o p_232046_ + m ()Lenq; m_232098_ + m (Ljava/lang/Boolean;)V m_231849_ + static + 0 o p_263512_ + m (Ljava/lang/Double;)V m_232063_ + static + 0 o p_232064_ + m (Lsw;Ljava/lang/Double;)Lsw; m_232057_ + static + 0 o p_232058_ + 1 o p_232059_ + n (Ljava/lang/Double;)V m_232073_ + static + 0 o p_232074_ + n ()Lenq; m_232101_ + n (Lsw;Ljava/lang/Double;)Lsw; m_232067_ + static + 0 o p_232068_ + 1 o p_232069_ + n (Ljava/lang/Boolean;)Lenc; m_232081_ + static + 0 o p_232082_ + o ()Lenq; m_232104_ + o (Ljava/lang/Double;)V m_232083_ + static + 0 o p_232084_ + o (Lsw;Ljava/lang/Double;)Lsw; m_232077_ + static + 0 o p_232078_ + 1 o p_232079_ + p (Lsw;Ljava/lang/Double;)Lsw; m_232087_ + static + 0 o p_232088_ + 1 o p_232089_ + p ()Lenq; m_245201_ + p (Ljava/lang/Double;)V m_232091_ + static + 0 o p_232092_ + q ()Lenq; m_274330_ + q (Lsw;Ljava/lang/Double;)Lsw; m_232095_ + static + 0 o p_232096_ + 1 o p_232097_ + q (Ljava/lang/Double;)V m_232038_ + static + 0 o p_232109_ + r (Ljava/lang/Double;)V m_232099_ + static + 0 o p_232100_ + r ()Lenq; m_232107_ + s ()Lenq; m_232110_ + s (Ljava/lang/Double;)V m_232108_ + static + 0 o p_232103_ + t (Ljava/lang/Double;)V m_232105_ + static + 0 o p_232106_ + t ()Lenq; m_232113_ + u ()Lenq; m_232116_ + u (Ljava/lang/Double;)V m_232040_ + static + 0 o p_265235_ + v (Ljava/lang/Double;)I m_232111_ + static + 0 o p_232112_ + v ()Lenq; m_232117_ + w (Ljava/lang/Double;)V m_232114_ + static + 0 o p_232115_ + w ()Lenq; m_232118_ + x ()Lenq; m_264038_ + y ()Lenq; m_232119_ + z ()Lenq; m_232120_ +enr$1 net/minecraft/client/Options$1 + ()V +enr$2 net/minecraft/client/Options$2 + a f_168453_ + b f_168454_ + (Lenr;Lqr;)V + 0 o p_168456_ + 1 o p_168457_ + a (Ljava/lang/String;Lenq;Lcom/mojang/serialization/DataResult$PartialResult;)V m_232127_ + static + 0 o p_232128_ + 1 o p_232129_ + 2 o p_232130_ + a (Ljava/lang/String;Z)Z m_142682_ + 0 o p_168483_ + 1 o p_168484_ + a (Ljava/lang/String;I)I m_142708_ + 0 o p_168467_ + 1 o p_168468_ + a (Ljava/lang/String;Ljava/lang/String;)Ljava/lang/String; m_141943_ + 0 o p_168480_ + 1 o p_168481_ + a (Ljava/lang/String;Lenq;)V m_213982_ + 0 o p_232125_ + 1 o p_232126_ + a (Ljava/lang/String;F)F m_142432_ + 0 o p_168464_ + 1 o p_168465_ + a (Ljava/lang/String;)Ljava/lang/String; m_168458_ + 0 o p_168459_ + a (Ljava/lang/String;Ljava/lang/Object;Ljava/util/function/Function;Ljava/util/function/Function;)Ljava/lang/Object; m_142634_ + 0 o p_168470_ + 1 o p_168471_ + 2 o p_168472_ + 3 o p_168473_ +enr$3 net/minecraft/client/Options$3 + a f_168485_ + b f_168486_ + (Lenr;Ljava/io/PrintWriter;)V + 0 o p_168488_ + 1 o p_168489_ + a (Ljava/lang/String;)V m_168490_ + 0 o p_168491_ + a (Lenq;Lcom/mojang/serialization/DataResult$PartialResult;)V m_232131_ + static + 0 o p_232132_ + 1 o p_232133_ + a (Ljava/lang/String;Z)Z m_142682_ + 0 o p_168515_ + 1 o p_168516_ + a (Ljava/lang/String;I)I m_142708_ + 0 o p_168499_ + 1 o p_168500_ + a (Ljava/lang/String;Ljava/lang/String;)Ljava/lang/String; m_141943_ + 0 o p_168512_ + 1 o p_168513_ + a (Ljava/lang/String;Lenq;)V m_213982_ + 0 o p_232135_ + 1 o p_232136_ + a (Ljava/lang/String;Ljava/io/PrintWriter;Lcom/google/gson/JsonElement;)V m_232137_ + 0 o p_232138_ + 1 o p_232139_ + 2 o p_232140_ + a (Ljava/lang/String;F)F m_142432_ + 0 o p_168496_ + 1 o p_168497_ + a (Ljava/lang/String;Ljava/lang/Object;Ljava/util/function/Function;Ljava/util/function/Function;)Ljava/lang/Object; m_142634_ + 0 o p_168502_ + 1 o p_168503_ + 2 o p_168504_ + 3 o p_168505_ +enr$4 net/minecraft/client/Options$4 + a f_232141_ + b f_232142_ + c f_168517_ + ()V + static +enr$a net/minecraft/client/Options$FieldAccess + a (Ljava/lang/String;Z)Z m_142682_ + 0 o p_168535_ + 1 o p_168536_ + a (Ljava/lang/String;I)I m_142708_ + 0 o p_168523_ + 1 o p_168524_ + a (Ljava/lang/String;Ljava/lang/String;)Ljava/lang/String; m_141943_ + 0 o p_168533_ + 1 o p_168534_ + a (Ljava/lang/String;Lenq;)V m_213982_ + 0 o p_232143_ + 1 o p_232144_ + a (Ljava/lang/String;F)F m_142432_ + 0 o p_168521_ + 1 o p_168522_ + a (Ljava/lang/String;Ljava/lang/Object;Ljava/util/function/Function;Ljava/util/function/Function;)Ljava/lang/Object; m_142634_ + 0 o p_168525_ + 1 o p_168526_ + 2 o p_168527_ + 3 o p_168528_ +ens net/minecraft/client/ParticleStatus + a ALL + b DECREASED + c MINIMAL + d f_92185_ + e f_92186_ + f f_92187_ + g $VALUES + ()V + static + (Ljava/lang/String;IILjava/lang/String;)V + 0 o p_92191_ + 1 o p_92192_ + 2 o p_92193_ + 3 o p_92194_ + a ()I m_35965_ + a (I)Lens; m_92196_ + static + 0 o p_92197_ + b ()Ljava/lang/String; m_35968_ + d ()[Lens; m_168537_ + static + valueOf (Ljava/lang/String;)Lens; valueOf + static + 0 o p_92202_ + values ()[Lens; values + static +ent net/minecraft/client/PeriodicNotificationManager + a f_205285_ + b f_205286_ + c f_205287_ + d f_205288_ + e f_205289_ + f f_205290_ + ()V + static + (Lacq;Lit/unimi/dsi/fastutil/objects/Object2BooleanFunction;)V + 0 o p_205293_ + 1 o p_205294_ + a (Lakx;Lban;)Ljava/util/Map; m_5944_ + 0 o p_205300_ + 1 o p_205301_ + a (JLent$a;)J m_205296_ + static + 0 o p_205297_ + 1 o p_205298_ + a (Lent$a;)J m_205304_ + static + 0 o p_205305_ + a (Ljava/util/Map$Entry;)Z m_205315_ + 0 o p_205316_ + a (Ljava/util/Map;Lakx;Lban;)V m_5787_ + 0 o p_205318_ + 1 o p_205319_ + 2 o p_205320_ + a (Ljava/util/List;)J m_205310_ + 0 o p_205311_ + a (Ljava/lang/Object;Lakx;Lban;)V m_5787_ + 0 o p_205307_ + 1 o p_205308_ + 2 o p_205309_ + a ()V m_205295_ + a (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; m_205302_ + static + 0 o p_205303_ + a (Ljava/util/List;J)J m_205312_ + 0 o p_205313_ + 1 o p_205314_ + b ()Ljava/lang/IllegalStateException; m_205321_ + b (Lakx;Lban;)Ljava/lang/Object; m_5944_ + 0 o p_205323_ + 1 o p_205324_ + b (Lent$a;)Z m_205325_ + static + 0 o p_205326_ + close ()V close +ent$a net/minecraft/client/PeriodicNotificationManager$Notification + a f_205328_ + b f_205329_ + c f_205330_ + d f_205331_ + (JJLjava/lang/String;Ljava/lang/String;)V + 0 o f_205328_ + 1 o f_205329_ + 2 o f_205330_ + 3 o f_205331_ + a ()J f_205328_ + b ()J f_205329_ + c ()Ljava/lang/String; f_205330_ + d ()Ljava/lang/String; f_205331_ + equals (Ljava/lang/Object;)Z equals + 0 o p_205342_ + hashCode ()I hashCode + toString ()Ljava/lang/String; toString +ent$b net/minecraft/client/PeriodicNotificationManager$NotificationTask + a f_205345_ + b f_205346_ + c f_205347_ + d f_205348_ + (Ljava/util/List;JJ)V + 0 o p_205350_ + 1 o p_205351_ + 2 o p_205352_ + a (Lent$a;J)V m_205353_ + static + 0 o p_205354_ + 1 o p_205355_ + a (Ljava/util/List;J)Lent$b; m_205356_ + 0 o p_205357_ + 1 o p_205358_ + run ()V run +enu net/minecraft/client/PrioritizeChunkUpdates + a NONE + b PLAYER_AFFECTED + c NEARBY + d f_193776_ + e f_193777_ + f f_193778_ + g $VALUES + ()V + static + (Ljava/lang/String;IILjava/lang/String;)V + 0 o p_193782_ + 1 o p_193783_ + 2 o p_193784_ + 3 o p_193785_ + a ()I m_35965_ + a (I)Lenu; m_193787_ + static + 0 o p_193788_ + b ()Ljava/lang/String; m_35968_ + d ()[Lenu; m_193792_ + static + valueOf (Ljava/lang/String;)Lenu; valueOf + static + 0 o p_193794_ + values ()[Lenu; values + static +env net/minecraft/client/Realms32BitWarningStatus + a f_232198_ + b f_232199_ + c f_232200_ + d f_232201_ + ()V + static + (Lenn;)V + 0 o p_232204_ + a ()Ljava/lang/Boolean; m_232205_ + a (Leuq;)V m_232208_ + 0 o p_232209_ + a (Lejq;)Z m_232206_ + 0 o p_232207_ + b ()Z m_232210_ +enw net/minecraft/client/RecipeBookCategories + a CRAFTING_SEARCH + b CRAFTING_BUILDING_BLOCKS + c CRAFTING_REDSTONE + d CRAFTING_EQUIPMENT + e CRAFTING_MISC + f FURNACE_SEARCH + g FURNACE_FOOD + h FURNACE_BLOCKS + i FURNACE_MISC + j BLAST_FURNACE_SEARCH + k BLAST_FURNACE_BLOCKS + l BLAST_FURNACE_MISC + m SMOKER_SEARCH + n SMOKER_FOOD + o STONECUTTER + p SMITHING + q CAMPFIRE + r UNKNOWN + s f_92256_ + t f_92257_ + u f_92258_ + v f_92259_ + w f_92260_ + x f_92261_ + y $VALUES + ()V + static + (Ljava/lang/String;I[Lcfz;)V + 0 o p_92265_ + 1 o p_92266_ + 2 o p_92267_ + a ()Ljava/util/List; m_92268_ + a (Lccq;)Ljava/util/List; m_92269_ + static + 0 o p_92270_ + b ()[Lenw; m_168550_ + static + valueOf (Ljava/lang/String;)Lenw; valueOf + static + 0 o p_92272_ + values ()[Lenw; values + static +enw$1 net/minecraft/client/RecipeBookCategories$1 + a f_92274_ + ()V + static +enx net/minecraft/client/ResourceLoadStateTracker + a f_168551_ + b f_168552_ + c f_168553_ + ()V + static + ()V + a (Ljava/lang/Throwable;)V m_168560_ + 0 o p_168561_ + a (Lenx$b;Ljava/util/List;)V m_168557_ + 0 o p_168558_ + 1 o p_168559_ + a ()V m_168556_ + a (Lo;)V m_168562_ + 0 o p_168563_ +enx$a net/minecraft/client/ResourceLoadStateTracker$RecoveryInfo + a f_168564_ + (Ljava/lang/Throwable;)V + 0 o p_168566_ + a ()Ljava/lang/String; m_168567_ + a (Lp;)V m_168568_ + 0 o p_168569_ +enx$b net/minecraft/client/ResourceLoadStateTracker$ReloadReason + a INITIAL + b MANUAL + c UNKNOWN + d f_168573_ + e $VALUES + ()V + static + (Ljava/lang/String;ILjava/lang/String;)V + 0 o p_168577_ + 1 o p_168578_ + 2 o p_168579_ + a ()[Lenx$b; m_168580_ + static + valueOf (Ljava/lang/String;)Lenx$b; valueOf + static + 0 o p_168582_ + values ()[Lenx$b; values + static +enx$c net/minecraft/client/ResourceLoadStateTracker$ReloadState + a f_168584_ + b f_168585_ + c f_168586_ + d f_168587_ + (Lenx$b;Ljava/util/List;)V + 0 o p_168589_ + 1 o p_168590_ + a ()Ljava/lang/String; m_168591_ + a (Lp;)V m_168592_ + 0 o p_168593_ +eny net/minecraft/client/Screenshot + a f_260508_ + b f_92276_ + c f_168594_ + d f_168595_ + e f_168596_ + f f_168597_ + g f_168598_ + h f_168599_ + ()V + static + (Ljava/io/File;III)V + 0 o p_168601_ + 1 o p_168602_ + 2 o p_168603_ + 3 o p_168604_ + a (Ljava/io/File;Legv;Ljava/util/function/Consumer;)V m_92289_ + static + 0 o p_92290_ + 1 o p_92293_ + 2 o p_92294_ + a (Lehk;Ljava/io/File;Ljava/util/function/Consumer;)V m_92283_ + static + 0 o p_92284_ + 1 o p_92285_ + 2 o p_92286_ + a (Ljava/io/File;)Ljava/io/File; m_92287_ + static + 0 o p_92288_ + a (Ljava/nio/ByteBuffer;IIII)V m_168609_ + 0 o p_168610_ + 1 o p_168611_ + 2 o p_168612_ + 3 o p_168613_ + 4 o p_168614_ + a ()V m_168605_ + a (Ljava/io/File;Lts;)Lts; m_168606_ + static + 0 o p_168607_ + 1 o p_168608_ + a (Ljava/io/File;Ljava/lang/String;Legv;Ljava/util/function/Consumer;)V m_92295_ + static + 0 o p_92296_ + 1 o p_92297_ + 2 o p_92300_ + 3 o p_92301_ + a (Legv;)Lehk; m_92279_ + static + 0 o p_92282_ + b ()Ljava/io/File; m_168615_ + b (Ljava/io/File;Ljava/lang/String;Legv;Ljava/util/function/Consumer;)V m_92305_ + static + 0 o p_92306_ + 1 o p_92307_ + 2 o p_92310_ + 3 o p_92311_ + c (Ljava/io/File;Ljava/lang/String;Legv;Ljava/util/function/Consumer;)V m_182556_ + static + 0 o p_182557_ + 1 o p_182558_ + 2 o p_182559_ + 3 o p_182560_ +enz net/minecraft/client/StringSplitter + a f_92333_ + (Lenz$f;)V + 0 o p_92335_ + a (Laom;I)Lts; m_92338_ + 0 o p_92339_ + 1 o p_92340_ + a (Ljava/util/List;Lts;Ljava/lang/String;)Ljava/util/Optional; m_92380_ + static + 0 o p_92381_ + 1 o p_92382_ + 2 o p_92383_ + a (Ljava/util/List;Lta;Ljava/lang/Boolean;)V m_92376_ + static + 0 o p_92377_ + 1 o p_92378_ + 2 o p_92379_ + a (Lta;)F m_92384_ + 0 o p_92385_ + a (Lta;ILts;Lta;)Ljava/util/List; m_168621_ + 0 o p_168622_ + 1 o p_168623_ + 2 o p_168624_ + 3 o p_168625_ + a (Lta;ILts;)Lta; m_92389_ + 0 o p_92390_ + 1 o p_92391_ + 2 o p_92392_ + a (Lorg/apache/commons/lang3/mutable/MutableFloat;ILts;I)Z m_92398_ + 0 o p_92399_ + 1 o p_92400_ + 2 o p_92401_ + 3 o p_92402_ + a (Ljava/lang/String;)F m_92353_ + 0 o p_92354_ + a (Ljava/lang/String;ILts;ZLenz$d;)V m_92364_ + 0 o p_92365_ + 1 o p_92366_ + 2 o p_92367_ + 3 o p_92368_ + 4 o p_92369_ + a (Laom;)F m_92336_ + 0 o p_92337_ + a (Lta;ILts;Ljava/util/function/BiConsumer;)V m_92393_ + 0 o p_92394_ + 1 o p_92395_ + 2 o p_92396_ + 3 o p_92397_ + a (Lorg/apache/commons/lang3/mutable/MutableFloat;ILorg/apache/commons/lang3/mutable/MutableInt;ILts;I)Z m_92403_ + 0 o p_92404_ + 1 o p_92405_ + 2 o p_92406_ + 3 o p_92407_ + 4 o p_92408_ + 5 o p_92409_ + a (Ljava/util/List;Lta;Lta;Ljava/lang/Boolean;)V m_168616_ + static + 0 o p_168617_ + 1 o p_168618_ + 2 o p_168619_ + 3 o p_168620_ + a (Lenz$e;Lorg/apache/commons/lang3/mutable/MutableObject;ILts;I)Z m_92345_ + static + 0 o p_92346_ + 1 o p_92347_ + 2 o p_92348_ + 3 o p_92349_ + 4 o p_92350_ + a (Ljava/lang/String;IIZ)I m_92355_ + static + 0 o p_92356_ + 1 o p_92357_ + 2 o p_92358_ + 3 o p_92359_ + a (Lta;I)Lts; m_92386_ + 0 o p_92387_ + 1 o p_92388_ + a (Lenz$e;Lts;Ljava/lang/String;)Ljava/util/Optional; m_92341_ + static + 0 o p_92342_ + 1 o p_92343_ + 2 o p_92344_ + a (Ljava/lang/String;ILts;)I m_92360_ + 0 o p_92361_ + 1 o p_92362_ + 2 o p_92363_ + a (Ljava/util/List;Ljava/lang/String;Lts;II)V m_92370_ + static + 0 o p_92371_ + 1 o p_92372_ + 2 o p_92373_ + 3 o p_92374_ + 4 o p_92375_ + b (Lorg/apache/commons/lang3/mutable/MutableFloat;ILts;I)Z m_92418_ + 0 o p_92419_ + 1 o p_92420_ + 2 o p_92421_ + 3 o p_92422_ + b (Ljava/lang/String;ILts;)Ljava/lang/String; m_92410_ + 0 o p_92411_ + 1 o p_92412_ + 2 o p_92413_ + b (Lta;ILts;)Ljava/util/List; m_92414_ + 0 o p_92415_ + 1 o p_92416_ + 2 o p_92417_ + c (Ljava/lang/String;ILts;)Ljava/lang/String; m_92423_ + 0 o p_92424_ + 1 o p_92425_ + 2 o p_92426_ + c (Lorg/apache/commons/lang3/mutable/MutableFloat;ILts;I)Z m_92427_ + 0 o p_92428_ + 1 o p_92429_ + 2 o p_92430_ + 3 o p_92431_ + d (Ljava/lang/String;ILts;)I m_168626_ + 0 o p_168627_ + 1 o p_168628_ + 2 o p_168629_ + e (Ljava/lang/String;ILts;)Ljava/lang/String; m_168630_ + 0 o p_168631_ + 1 o p_168632_ + 2 o p_168633_ + f (Ljava/lang/String;ILts;)I m_168634_ + 0 o p_168635_ + 1 o p_168636_ + 2 o p_168637_ + g (Ljava/lang/String;ILts;)Ljava/util/List; m_92432_ + 0 o p_92433_ + 1 o p_92434_ + 2 o p_92435_ +enz$1 net/minecraft/client/StringSplitter$1 + a f_92436_ + b f_92437_ + c f_92438_ + (Lenz;Lenz$e;)V + 0 o p_92440_ + 1 o p_92441_ + accept (Lts;Ljava/lang/String;)Ljava/util/Optional; m_7164_ + 0 o p_92443_ + 1 o p_92444_ +enz$a net/minecraft/client/StringSplitter$FlatComponents + a f_92445_ + b f_92446_ + (Ljava/util/List;)V + 0 o p_92448_ + a ()Lta; m_92449_ + a (Lenz$c;)Ljava/lang/String; m_92458_ + static + 0 o p_92459_ + a (I)C m_92450_ + 0 o p_92451_ + a (IILts;)Lta; m_92452_ + 0 o p_92453_ + 1 o p_92454_ + 2 o p_92455_ +enz$b net/minecraft/client/StringSplitter$LineBreakFinder + a f_92460_ + b f_92461_ + c f_92462_ + d f_92463_ + e f_92464_ + f f_92465_ + g f_92466_ + h f_92467_ + i f_92468_ + j f_92469_ + (Lenz;F)V + 0 o p_92471_ + 1 o p_92472_ + a (I)V m_92474_ + 0 o p_92475_ + a ()I m_92473_ + a (ILts;)Z m_92476_ + 0 o p_92477_ + 1 o p_92478_ + accept (ILts;I)Z m_6411_ + 0 o p_92480_ + 1 o p_92481_ + 2 o p_92482_ + b ()Lts; m_92483_ + c ()Z m_92484_ +enz$c net/minecraft/client/StringSplitter$LineComponent + c f_92485_ + d f_92486_ + (Ljava/lang/String;Lts;)V + 0 o p_92488_ + 1 o p_92489_ + a (Lta$b;Lts;)Ljava/util/Optional; m_7451_ + 0 o p_92495_ + 1 o p_92496_ + a (Lta$a;)Ljava/util/Optional; m_5651_ + 0 o p_92493_ +enz$d net/minecraft/client/StringSplitter$LinePosConsumer + accept (Lts;II)V m_92499_ + 0 o p_92500_ + 1 o p_92501_ + 2 o p_92502_ +enz$e net/minecraft/client/StringSplitter$WidthLimitedCharSink + a f_92503_ + b f_92504_ + c f_92505_ + (Lenz;F)V + 0 o p_92507_ + 1 o p_92508_ + a ()I m_92509_ + accept (ILts;I)Z m_6411_ + 0 o p_92511_ + 1 o p_92512_ + 2 o p_92513_ + b ()V m_92514_ +enz$f net/minecraft/client/StringSplitter$WidthProvider + getWidth (ILts;)F m_92515_ + 0 o p_92516_ + 1 o p_92517_ +eo net/minecraft/commands/arguments/ResourceArgument + a f_244450_ + b f_243885_ + c f_244573_ + d f_244234_ + e f_244609_ + f f_243861_ + ()V + static + (Ldm;Lacp;)V + 0 o p_248597_ + 1 o p_251778_ + a (Lcom/mojang/brigadier/context/CommandContext;Ljava/lang/String;)Lhe$c; m_245688_ + static + 0 o p_248753_ + 1 o p_251157_ + a (Lcom/mojang/brigadier/context/CommandContext;Ljava/lang/String;Lacp;)Lhe$c; m_246781_ + static + 0 o p_251788_ + 1 o p_251996_ + 2 o p_250077_ + a (Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;)Lcom/mojang/brigadier/Message; m_245927_ + static + 0 o p_250883_ + 1 o p_249983_ + 2 o p_249882_ + a (Lacq;)Lcom/mojang/brigadier/exceptions/CommandSyntaxException; m_246316_ + 0 o p_250563_ + a (Ldm;Lacp;)Leo; m_247102_ + static + 0 o p_249973_ + 1 o p_251405_ + a (Ljava/lang/Object;)Lcom/mojang/brigadier/Message; m_246539_ + static + 0 o p_248875_ + a (Lcom/mojang/brigadier/StringReader;)Lhe$c; parse + 0 o p_250909_ + a (Ljava/lang/Object;Ljava/lang/Object;)Lcom/mojang/brigadier/Message; m_246504_ + static + 0 o p_248525_ + 1 o p_251552_ + b (Lcom/mojang/brigadier/context/CommandContext;Ljava/lang/String;)Lhe$c; m_245599_ + static + 0 o p_250819_ + 1 o p_252256_ + c (Lcom/mojang/brigadier/context/CommandContext;Ljava/lang/String;)Lhe$c; m_247467_ + static + 0 o p_250288_ + 1 o p_250856_ + d (Lcom/mojang/brigadier/context/CommandContext;Ljava/lang/String;)Lhe$c; m_246260_ + static + 0 o p_251258_ + 1 o p_252322_ + e (Lcom/mojang/brigadier/context/CommandContext;Ljava/lang/String;)Lhe$c; m_247713_ + static + 0 o p_251880_ + 1 o p_250243_ + f (Lcom/mojang/brigadier/context/CommandContext;Ljava/lang/String;)Lhe$c; m_247201_ + static + 0 o p_250521_ + 1 o p_249927_ + g (Lcom/mojang/brigadier/context/CommandContext;Ljava/lang/String;)Lhe$c; m_245369_ + static + 0 o p_248656_ + 1 o p_248713_ + getExamples ()Ljava/util/Collection; getExamples + listSuggestions (Lcom/mojang/brigadier/context/CommandContext;Lcom/mojang/brigadier/suggestion/SuggestionsBuilder;)Ljava/util/concurrent/CompletableFuture; listSuggestions + 0 o p_249391_ + 1 o p_251197_ + parse (Lcom/mojang/brigadier/StringReader;)Ljava/lang/Object; parse + 0 o p_249740_ +eo$a net/minecraft/commands/arguments/ResourceArgument$Info + ()V + a (Lsf;)Leo$a$a; m_213618_ + 0 o p_248958_ + a (Lgg$a;Lcom/google/gson/JsonObject;)V m_213719_ + 0 o p_249254_ + 1 o p_251748_ + a (Lcom/mojang/brigadier/arguments/ArgumentType;)Lgg$a; m_214163_ + 0 o p_248659_ + a (Lgg$a;Lsf;)V m_214155_ + 0 o p_251098_ + 1 o p_252311_ + a (Leo$a$a;Lsf;)V m_214155_ + 0 o p_250470_ + 1 o p_248658_ + a (Leo;)Leo$a$a; m_214163_ + 0 o p_250667_ + a (Leo$a$a;Lcom/google/gson/JsonObject;)V m_213719_ + 0 o p_251267_ + 1 o p_250142_ + b (Lsf;)Lgg$a; m_213618_ + 0 o p_249547_ +eo$a$a net/minecraft/commands/arguments/ResourceArgument$Info$Template + a f_244442_ + b f_244472_ + (Leo$a;Lacp;)V + 0 o p_249924_ + 1 o p_250598_ + a (Ldm;)Leo; m_213879_ + 0 o p_251900_ + a ()Lgg; m_213709_ + b (Ldm;)Lcom/mojang/brigadier/arguments/ArgumentType; m_213879_ + 0 o p_251448_ +eoa net/minecraft/client/Timer + a f_92518_ + b f_92519_ + c f_92520_ + d f_92521_ + (FJ)V + 0 o p_92523_ + 1 o p_92524_ + a (J)I m_92525_ + 0 o p_92526_ +eob net/minecraft/client/ToggleKeyMapping + h f_92527_ + (Ljava/lang/String;ILjava/lang/String;Ljava/util/function/BooleanSupplier;)V + 0 o p_92529_ + 1 o p_92530_ + 2 o p_92531_ + 3 o p_92532_ + a (Z)V m_7249_ + 0 o p_92534_ + n ()V m_289748_ +eoc net/minecraft/client/User + a f_92535_ + b f_92536_ + c f_92537_ + d f_193796_ + e f_193797_ + f f_92538_ + (Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Ljava/util/Optional;Ljava/util/Optional;Leoc$a;)V + 0 o p_193799_ + 1 o p_193800_ + 2 o p_193801_ + 3 o p_193802_ + 4 o p_193803_ + 5 o p_193804_ + a ()Ljava/lang/String; m_92544_ + b ()Ljava/lang/String; m_92545_ + c ()Ljava/lang/String; m_92546_ + d ()Ljava/lang/String; m_92547_ + e ()Ljava/util/Optional; m_193805_ + f ()Ljava/util/Optional; m_193806_ + g ()Ljava/util/UUID; m_240411_ + h ()Lcom/mojang/authlib/GameProfile; m_92548_ + i ()Leoc$a; m_168638_ +eoc$a net/minecraft/client/User$Type + a LEGACY + b MOJANG + c MSA + d f_92551_ + e f_92552_ + f $VALUES + ()V + static + (Ljava/lang/String;ILjava/lang/String;)V + 0 o p_92556_ + 1 o p_92557_ + 2 o p_92558_ + a (Ljava/lang/String;)Leoc$a; m_92561_ + static + 0 o p_92562_ + a ()Ljava/lang/String; m_193808_ + a (Leoc$a;)Ljava/lang/String; m_92559_ + static + 0 o p_92560_ + b ()[Leoc$a; m_168639_ + static + valueOf (Ljava/lang/String;)Leoc$a; valueOf + static + 0 o p_92564_ + values ()[Leoc$a; values + static +eod net/minecraft/client/animation/AnimationChannel + a f_232211_ + b f_232212_ + (Leod$c;[Leof;)V + 0 o f_232211_ + 1 o f_232212_ + a ()Leod$c; f_232211_ + b ()[Leof; f_232212_ + equals (Ljava/lang/Object;)Z equals + 0 o p_232219_ + hashCode ()I hashCode + toString ()Ljava/lang/String; toString +eod$a net/minecraft/client/animation/AnimationChannel$Interpolation + apply (Lorg/joml/Vector3f;F[Leof;IIF)Lorg/joml/Vector3f; m_232222_ + 0 o p_253818_ + 1 o p_232224_ + 2 o p_232225_ + 3 o p_232226_ + 4 o p_232227_ + 5 o p_232228_ +eod$b net/minecraft/client/animation/AnimationChannel$Interpolations + a f_232229_ + b f_232230_ + ()V + static + ()V + a (Lorg/joml/Vector3f;F[Leof;IIF)Lorg/joml/Vector3f; m_232233_ + static + 0 o p_254076_ + 1 o p_232235_ + 2 o p_232236_ + 3 o p_232237_ + 4 o p_232238_ + 5 o p_232239_ + b (Lorg/joml/Vector3f;F[Leof;IIF)Lorg/joml/Vector3f; m_252556_ + static + 0 o p_253292_ + 1 o p_253293_ + 2 o p_253294_ + 3 o p_253295_ + 4 o p_253296_ + 5 o p_253297_ +eod$c net/minecraft/client/animation/AnimationChannel$Target + apply (Lfee;Lorg/joml/Vector3f;)V m_232247_ + 0 o p_232248_ + 1 o p_253771_ +eod$d net/minecraft/client/animation/AnimationChannel$Targets + a f_232250_ + b f_232251_ + c f_232252_ + ()V + static + ()V +eoe net/minecraft/client/animation/AnimationDefinition + a f_232255_ + b f_232256_ + c f_232257_ + (FZLjava/util/Map;)V + 0 o f_232255_ + 1 o f_232256_ + 2 o f_232257_ + a ()F f_232255_ + b ()Z f_232256_ + c ()Ljava/util/Map; f_232257_ + equals (Ljava/lang/Object;)Z equals + 0 o p_232266_ + hashCode ()I hashCode + toString ()Ljava/lang/String; toString +eoe$a net/minecraft/client/animation/AnimationDefinition$Builder + a f_232269_ + b f_232270_ + c f_232271_ + (F)V + 0 o p_232273_ + a (F)Leoe$a; m_232275_ + static + 0 o p_232276_ + a (Ljava/lang/String;)Ljava/util/List; m_232277_ + static + 0 o p_232278_ + a (Ljava/lang/String;Leod;)Leoe$a; m_232279_ + 0 o p_232280_ + 1 o p_232281_ + a ()Leoe$a; m_232274_ + b ()Leoe; m_232282_ +eof net/minecraft/client/animation/Keyframe + a f_232283_ + b f_232284_ + c f_232285_ + (FLorg/joml/Vector3f;Leod$a;)V + 0 o f_232283_ + 1 o f_232284_ + 2 o f_232285_ + a ()F f_232283_ + b ()Lorg/joml/Vector3f; f_232284_ + c ()Leod$a; f_232285_ + equals (Ljava/lang/Object;)Z equals + 0 o p_232294_ + hashCode ()I hashCode + toString ()Ljava/lang/String; toString +eog net/minecraft/client/animation/KeyframeAnimations + ()V + a (Lfbo;Leoe;JFLorg/joml/Vector3f;)V m_232319_ + static + 0 o p_232320_ + 1 o p_232321_ + 2 o p_232322_ + 3 o p_232323_ + 4 o p_253861_ + a (Ljava/util/List;FLorg/joml/Vector3f;FLfee;)V m_232325_ + static + 0 o p_232326_ + 1 o p_232327_ + 2 o p_254546_ + 3 o p_232329_ + 4 o p_232330_ + a (FLorg/joml/Vector3f;FLfee;Leod;)V m_287796_ + static + 0 o p_288237_ + 1 o p_288238_ + 2 o p_288239_ + 3 o p_288240_ + 4 o p_288241_ + a (DDD)Lorg/joml/Vector3f; m_253004_ + static + 0 o p_253806_ + 1 o p_253647_ + 2 o p_254396_ + a (FFF)Lorg/joml/Vector3f; m_253126_ + static + 0 o p_253691_ + 1 o p_254046_ + 2 o p_254461_ + a (Leoe;J)F m_232316_ + static + 0 o p_232317_ + 1 o p_232318_ + a (F[Leof;I)Z m_232312_ + static + 0 o p_232313_ + 1 o p_232314_ + 2 o p_232315_ + b (FFF)Lorg/joml/Vector3f; m_253186_ + static + 0 o p_254402_ + 1 o p_253917_ + 2 o p_254397_ +eoh net/minecraft/client/animation/definitions/CamelAnimation + a f_244081_ + b f_243801_ + c f_252502_ + d f_244495_ + e f_243786_ + f f_243891_ + ()V + static + ()V +eoi net/minecraft/client/animation/definitions/FrogAnimation + a f_232335_ + b f_232336_ + c f_232337_ + d f_232338_ + e f_232339_ + f f_232340_ + ()V + static + ()V +eoj net/minecraft/client/animation/definitions/SnifferAnimation + a f_278126_ + b f_271364_ + c f_271108_ + d f_271534_ + e f_271269_ + f f_271495_ + g f_271455_ + h f_271160_ + i f_271223_ + ()V + static + ()V +eok net/minecraft/client/animation/definitions/WardenAnimation + a f_232343_ + b f_232344_ + c f_232345_ + d f_232346_ + e f_232347_ + f f_232348_ + ()V + static + ()V +eol net/minecraft/client/animation/definitions/package-info +eom net/minecraft/client/animation/package-info +eon net/minecraft/client/color/block/BlockColor + getColor (Ldcb;Lclp;Lgu;I)I m_92566_ + 0 o p_92567_ + 1 o p_92568_ + 2 o p_92569_ + 3 o p_92570_ +eoo net/minecraft/client/color/block/BlockColors + a f_168640_ + b f_92571_ + c f_92572_ + ()V + a ()Leoo; m_92574_ + static + a (Leon;[Lcpn;)V m_92589_ + 0 o p_92590_ + 1 o p_92591_ + a (Ljava/util/Set;[Lcpn;)V m_92592_ + 0 o p_92593_ + 1 o p_92594_ + a (Ldde;[Lcpn;)V m_92586_ + 0 o p_92587_ + 1 o p_92588_ + a (Ldcb;Lcmm;Lgu;)I m_92582_ + 0 o p_92583_ + 1 o p_92584_ + 2 o p_92585_ + a (Lcpn;)Ljava/util/Set; m_92575_ + 0 o p_92576_ + a (Ldcb;Lclp;Lgu;I)I m_92577_ + 0 o p_92578_ + 1 o p_92579_ + 2 o p_92580_ + 3 o p_92581_ + b (Ldcb;Lclp;Lgu;I)I m_92595_ + static + 0 o p_92596_ + 1 o p_92597_ + 2 o p_92598_ + 3 o p_92599_ + c (Ldcb;Lclp;Lgu;I)I m_92600_ + static + 0 o p_92601_ + 1 o p_92602_ + 2 o p_92603_ + 3 o p_92604_ + d (Ldcb;Lclp;Lgu;I)I m_92605_ + static + 0 o p_92606_ + 1 o p_92607_ + 2 o p_92608_ + 3 o p_92609_ + e (Ldcb;Lclp;Lgu;I)I m_92610_ + static + 0 o p_92611_ + 1 o p_92612_ + 2 o p_92613_ + 3 o p_92614_ + f (Ldcb;Lclp;Lgu;I)I m_92615_ + static + 0 o p_92616_ + 1 o p_92617_ + 2 o p_92618_ + 3 o p_92619_ + g (Ldcb;Lclp;Lgu;I)I m_92620_ + static + 0 o p_92621_ + 1 o p_92622_ + 2 o p_92623_ + 3 o p_92624_ + h (Ldcb;Lclp;Lgu;I)I m_92625_ + static + 0 o p_92626_ + 1 o p_92627_ + 2 o p_92628_ + 3 o p_92629_ + i (Ldcb;Lclp;Lgu;I)I m_92630_ + static + 0 o p_92631_ + 1 o p_92632_ + 2 o p_92633_ + 3 o p_92634_ + j (Ldcb;Lclp;Lgu;I)I m_92635_ + static + 0 o p_92636_ + 1 o p_92637_ + 2 o p_92638_ + 3 o p_92639_ + k (Ldcb;Lclp;Lgu;I)I m_276172_ + static + 0 o p_276241_ + 1 o p_276242_ + 2 o p_276243_ + 3 o p_276244_ + l (Ldcb;Lclp;Lgu;I)I m_276171_ + static + 0 o p_276237_ + 1 o p_276238_ + 2 o p_276239_ + 3 o p_276240_ + m (Ldcb;Lclp;Lgu;I)I m_276170_ + static + 0 o p_276233_ + 1 o p_276234_ + 2 o p_276235_ + 3 o p_276236_ +eop net/minecraft/client/color/block/BlockTintCache + a f_168641_ + b f_92650_ + c f_92651_ + d f_92652_ + e f_193809_ + (Ljava/util/function/ToIntFunction;)V + 0 o p_193811_ + a (Lgu;)I m_193812_ + 0 o p_193813_ + a (II)V m_92655_ + 0 o p_92656_ + 1 o p_92657_ + a ()V m_92654_ + b (II)Leop$a; m_193814_ + 0 o p_193815_ + 1 o p_193816_ +eop$a net/minecraft/client/color/block/BlockTintCache$CacheData + a f_193817_ + b f_193818_ + c f_193819_ + d f_262289_ + ()V + static + ()V + a ()Z m_262488_ + a (I)[I m_193823_ + 0 o p_193824_ + b (I)[I m_193825_ + 0 o p_193826_ + b ()V m_262378_ + c ()[I m_193822_ +eop$b net/minecraft/client/color/block/BlockTintCache$LatestCacheInfo + a f_92665_ + b f_92666_ + c f_92667_ + ()V +eoq net/minecraft/client/color/block/package-info +eor net/minecraft/client/color/item/ItemColor + getColor (Lcfz;I)I m_92671_ + 0 o p_92672_ + 1 o p_92673_ +eos net/minecraft/client/color/item/ItemColors + a f_168642_ + b f_92674_ + ()V + a (Leoo;Lcfz;I)I m_92685_ + static + 0 o p_92686_ + 1 o p_92687_ + 2 o p_92688_ + a (Lcfz;I)I m_92676_ + 0 o p_92677_ + 1 o p_92678_ + a (Leoo;)Leos; m_92683_ + static + 0 o p_92684_ + a (Lche;Lcfz;I)I m_92679_ + static + 0 o p_92680_ + 1 o p_92681_ + 2 o p_92682_ + a (Leor;[Lcml;)V m_92689_ + 0 o p_92690_ + 1 o p_92691_ + b (Lcfz;I)I m_232351_ + static + 0 o p_232352_ + 1 o p_232353_ + c (Lcfz;I)I m_92692_ + static + 0 o p_92693_ + 1 o p_92694_ + d (Lcfz;I)I m_92695_ + static + 0 o p_92696_ + 1 o p_92697_ + e (Lcfz;I)I m_92698_ + static + 0 o p_92699_ + 1 o p_92700_ + f (Lcfz;I)I m_92701_ + static + 0 o p_92702_ + 1 o p_92703_ + g (Lcfz;I)I m_92704_ + static + 0 o p_92705_ + 1 o p_92706_ + h (Lcfz;I)I m_92707_ + static + 0 o p_92708_ + 1 o p_92709_ +eot net/minecraft/client/color/item/package-info +eou net/minecraft/client/gui/ComponentPath + a (Leqt;)Leou; m_264401_ + static + 0 o p_265344_ + a (Leqt;[Leqs;)Leou; m_264492_ + static + 0 o p_265555_ + 1 o p_265487_ + a (Leqs;Leou;)Leou; m_264334_ + static + 0 o p_265254_ + 1 o p_265405_ + a (Z)V m_264432_ + 0 o p_265077_ + a ()Leqt; m_264222_ +eou$a net/minecraft/client/gui/ComponentPath$Leaf + a f_263802_ + (Leqt;)V + 0 o f_263802_ + a (Z)V m_264432_ + 0 o p_265248_ + a ()Leqt; m_264222_ + equals (Ljava/lang/Object;)Z equals + 0 o p_265539_ + hashCode ()I hashCode + toString ()Ljava/lang/String; toString +eou$b net/minecraft/client/gui/ComponentPath$Path + a f_263715_ + b f_263808_ + (Leqs;Leou;)V + 0 o f_263715_ + 1 o f_263808_ + a (Z)V m_264432_ + 0 o p_265230_ + a ()Leqt; m_264222_ + b ()Leqs; m_264222_ + c ()Leou; f_263808_ + equals (Ljava/lang/Object;)Z equals + 0 o p_265602_ + hashCode ()I hashCode + toString ()Ljava/lang/String; toString +eov net/minecraft/client/gui/Font + a f_193827_ + b f_92710_ + c f_92711_ + d f_168643_ + e f_92712_ + f f_92713_ + g f_242994_ + h f_92714_ + ()V + static + (Ljava/util/function/Function;Z)V + 0 o p_243253_ + 1 o p_243245_ + a (Leov$b;[FIFIIILts;I)Z m_168654_ + 0 o p_168655_ + 1 o p_168656_ + 2 o p_168657_ + 3 o p_168658_ + 4 o p_168659_ + 5 o p_168660_ + 6 o p_168661_ + 7 o p_168662_ + 8 o p_168663_ + a (Laom;FFIILorg/joml/Matrix4f;Lfjx;I)V m_168645_ + 0 o p_168646_ + 1 o p_168647_ + 2 o p_168648_ + 3 o p_168649_ + 4 o p_168650_ + 5 o p_254170_ + 6 o p_168652_ + 7 o p_168653_ + a (Lta;)I m_92852_ + 0 o p_92853_ + a (ILts;)F m_243025_ + 0 o p_92722_ + 1 o p_92723_ + a (Ljava/lang/String;IZ)Ljava/lang/String; m_92837_ + 0 o p_92838_ + 1 o p_92839_ + 2 o p_92840_ + a (Ljava/lang/String;I)Ljava/lang/String; m_92834_ + 0 o p_92835_ + 1 o p_92836_ + a ()Z m_92718_ + a (Ljava/lang/String;FFIZLorg/joml/Matrix4f;Lfjx;Leov$a;II)I m_271703_ + 0 o p_272751_ + 1 o p_272661_ + 2 o p_273129_ + 3 o p_273272_ + 4 o p_273209_ + 5 o p_272940_ + 6 o p_273017_ + 7 o p_272608_ + 8 o p_273365_ + 9 o p_272755_ + a (Lerr;ZZFFFLorg/joml/Matrix4f;Lein;FFFFI)V m_253238_ + 0 o p_254105_ + 1 o p_254001_ + 2 o p_254262_ + 3 o p_254256_ + 4 o p_253753_ + 5 o p_253629_ + 6 o p_254014_ + 7 o p_253852_ + 8 o p_254317_ + 9 o p_253809_ + 10 o p_253870_ + 11 o p_254287_ + 12 o p_253905_ + a (Lta;I)Lta; m_92854_ + 0 o p_92855_ + 1 o p_92856_ + a (Laom;FFIZLorg/joml/Matrix4f;Lfjx;Leov$a;II)I m_272191_ + 0 o p_273262_ + 1 o p_273006_ + 2 o p_273254_ + 3 o p_273375_ + 4 o p_273674_ + 5 o p_273525_ + 6 o p_272624_ + 7 o p_273418_ + 8 o p_273330_ + 9 o p_272981_ + a (Ljava/lang/String;FFIZLorg/joml/Matrix4f;Lfjx;Leov$a;IIZ)I m_272078_ + 0 o p_272780_ + 1 o p_272811_ + 2 o p_272610_ + 3 o p_273422_ + 4 o p_273016_ + 5 o p_273443_ + 6 o p_273387_ + 7 o p_273551_ + 8 o p_272706_ + 9 o p_273114_ + 10 o p_273022_ + a (I)I m_92719_ + static + 0 o p_92720_ + a (Laom;)I m_92724_ + 0 o p_92725_ + a (Lacq;)Lern; m_92863_ + 0 o p_92864_ + a (Ljava/lang/String;)Ljava/lang/String; m_92801_ + 0 o p_92802_ + a (Lsw;FFIZLorg/joml/Matrix4f;Lfjx;Leov$a;II)I m_272077_ + 0 o p_273032_ + 1 o p_273249_ + 2 o p_273594_ + 3 o p_273714_ + 4 o p_273050_ + 5 o p_272974_ + 6 o p_273695_ + 7 o p_272782_ + 8 o p_272603_ + 9 o p_273632_ + b (Lta;I)I m_239133_ + 0 o p_239134_ + 1 o p_239135_ + b (Laom;FFIZLorg/joml/Matrix4f;Lfjx;Leov$a;II)I m_272085_ + 0 o p_273025_ + 1 o p_273121_ + 2 o p_272717_ + 3 o p_273653_ + 4 o p_273531_ + 5 o p_273265_ + 6 o p_273560_ + 7 o p_273342_ + 8 o p_273373_ + 9 o p_273266_ + b (Ljava/lang/String;)I m_92895_ + 0 o p_92896_ + b (Ljava/lang/String;FFIZLorg/joml/Matrix4f;Lfjx;Leov$a;II)F m_271978_ + 0 o p_273765_ + 1 o p_273532_ + 2 o p_272783_ + 3 o p_273217_ + 4 o p_273583_ + 5 o p_272734_ + 6 o p_272595_ + 7 o p_273610_ + 8 o p_273727_ + 9 o p_273199_ + b (Ljava/lang/String;I)I m_92920_ + 0 o p_92921_ + 1 o p_92922_ + b ()Lenz; m_92865_ + b (Ljava/lang/String;FFIZLorg/joml/Matrix4f;Lfjx;Leov$a;IIZ)I m_271880_ + 0 o p_273658_ + 1 o p_273086_ + 2 o p_272883_ + 3 o p_273547_ + 4 o p_272778_ + 5 o p_272662_ + 6 o p_273012_ + 7 o p_273381_ + 8 o p_272855_ + 9 o p_272745_ + 10 o p_272785_ + c (Laom;FFIZLorg/joml/Matrix4f;Lfjx;Leov$a;II)F m_271992_ + 0 o p_273322_ + 1 o p_272632_ + 2 o p_273541_ + 3 o p_273200_ + 4 o p_273312_ + 5 o p_273276_ + 6 o p_273392_ + 7 o p_272625_ + 8 o p_273774_ + 9 o p_273371_ + c (Lta;I)Ljava/util/List; m_92923_ + 0 o p_92924_ + 1 o p_92925_ +eov$a net/minecraft/client/gui/Font$DisplayMode + a NORMAL + b SEE_THROUGH + c POLYGON_OFFSET + d $VALUES + ()V + static + (Ljava/lang/String;I)V + 0 o p_181356_ + 1 o p_181357_ + a ()[Leov$a; m_181358_ + static + valueOf (Ljava/lang/String;)Leov$a; valueOf + static + 0 o p_181360_ + values ()[Leov$a; values + static +eov$b net/minecraft/client/gui/Font$StringRenderOutput + a f_92937_ + b f_92938_ + c f_92939_ + d f_92940_ + e f_92941_ + f f_92942_ + g f_92943_ + h f_92944_ + i f_92945_ + j f_181362_ + k f_92947_ + l f_92948_ + m f_92949_ + n f_92950_ + (Leov;Lfjx;FFIZLorg/joml/Matrix4f;Leov$a;I)V + 0 o p_181364_ + 1 o p_181365_ + 2 o p_181366_ + 3 o p_181367_ + 4 o p_181368_ + 5 o p_181369_ + 6 o p_254510_ + 7 o p_181371_ + 8 o p_181372_ + a (IF)F m_92961_ + 0 o p_92962_ + 1 o p_92963_ + a (Lerr$a;)V m_92964_ + 0 o p_92965_ + accept (ILts;I)Z m_6411_ + 0 o p_92967_ + 1 o p_92968_ + 2 o p_92969_ +eow net/minecraft/client/gui/Gui + A f_238167_ + B f_92993_ + C f_92994_ + D f_92995_ + E f_92996_ + F f_92997_ + G f_92998_ + H f_92999_ + I f_93000_ + J f_93001_ + K f_93002_ + L f_92970_ + M f_92971_ + N f_92972_ + O f_92973_ + P f_92974_ + Q f_92975_ + R f_92976_ + S f_92977_ + T f_92978_ + U f_193828_ + V f_193829_ + W f_168664_ + a f_92980_ + b f_92981_ + c f_92982_ + d f_92983_ + e f_168665_ + f f_168666_ + g f_279580_ + h f_92984_ + i f_193830_ + j f_168667_ + k f_168668_ + l f_168669_ + m f_168670_ + n f_168671_ + o f_168672_ + p f_168673_ + q f_168674_ + r f_193831_ + s f_92985_ + t f_92986_ + u f_92987_ + v f_92988_ + w f_92989_ + x f_92990_ + y f_92991_ + z f_92992_ + ()V + static + (Lenn;Lfpw;)V + 0 o p_232355_ + 1 o p_232356_ + a (Lbgk;Leox;I)V m_280069_ + 0 o p_282774_ + 1 o p_282939_ + 2 o p_283351_ + a (Z)V m_193832_ + 0 o p_193833_ + a (III)V m_168684_ + 0 o p_168685_ + 1 o p_168686_ + 2 o p_168687_ + a (Leox;Lacq;F)V m_280155_ + 0 o p_282304_ + 1 o p_281622_ + 2 o p_281504_ + a (Leox;Lbfj;)V m_280154_ + 0 o p_283063_ + 1 o p_283439_ + a (Leox;Lefd;)V m_280030_ + 0 o p_282008_ + 1 o p_283455_ + a (Leeg;)Z m_93024_ + 0 o p_93025_ + a (Lsw;Z)V m_93063_ + 0 o p_93064_ + 1 o p_93065_ + a (Leox;I)V m_280276_ + 0 o p_281906_ + 1 o p_282731_ + a (Leox;Leov;III)V m_93039_ + 0 o p_282548_ + 1 o p_93041_ + 2 o p_93042_ + 3 o p_93043_ + 4 o p_93044_ + a (Lsw;)V m_93055_ + 0 o p_93056_ + a (FLeox;)V m_280518_ + 0 o p_283031_ + 1 o p_282108_ + a (Leox;FIILfuv;)V m_279741_ + static + 0 o p_280766_ + 1 o p_280767_ + 2 o p_280768_ + 3 o p_280769_ + 4 o p_280770_ + a (Leox;IIFLbyo;Lcfz;I)V m_280585_ + 0 o p_283283_ + 1 o p_283213_ + 2 o p_281301_ + 3 o p_281885_ + 4 o p_283644_ + 5 o p_283317_ + 6 o p_283261_ + a (Lbfz;)I m_93022_ + 0 o p_93023_ + a (Leff;)Z m_93026_ + static + 0 o p_93027_ + a ()V m_93006_ + a (Leox;)V m_280523_ + 0 o p_282812_ + a (Leox;Leow$a;IIIZZ)V m_280593_ + 0 o p_283024_ + 1 o p_281393_ + 2 o p_283636_ + 3 o p_283279_ + 4 o p_283188_ + 5 o p_283440_ + 6 o p_282496_ + a (Lbfj;)V m_93020_ + 0 o p_93021_ + a (I)I m_93012_ + 0 o p_93013_ + a (Leox;Lbyo;IIIIFIIIZ)V m_168688_ + 0 o p_282497_ + 1 o p_168690_ + 2 o p_168691_ + 3 o p_168692_ + 4 o p_168693_ + 5 o p_168694_ + 6 o p_168695_ + 7 o p_168696_ + 8 o p_168697_ + 9 o p_168698_ + 10 o p_168699_ + a (Leox;F)V m_280421_ + 0 o p_282884_ + 1 o p_282611_ + b (Z)V m_238397_ + 0 o p_238398_ + b (Leox;F)V m_280278_ + 0 o p_282069_ + 1 o p_283442_ + b (Leox;)V m_280295_ + 0 o p_283501_ + b (Lsw;)V m_168711_ + 0 o p_168712_ + b ()Z m_238351_ + c ()V m_168713_ + c (Leox;)V m_280339_ + 0 o p_281825_ + c (Lsw;)V m_168714_ + 0 o p_168715_ + c (Leox;F)V m_280379_ + 0 o p_283375_ + 1 o p_283296_ + d ()Lepj; m_93076_ + d (Leox;)V m_280130_ + 0 o p_282828_ + e (Leox;)V m_280173_ + 0 o p_283143_ + e ()I m_93079_ + f ()Leov; m_93082_ + f (Leox;)V m_280250_ + 0 o p_283368_ + g ()Leqw; m_93085_ + g (Leox;)V m_280266_ + 0 o p_282761_ + h ()Leqg; m_93088_ + i ()V m_93089_ + j ()Leph; m_93090_ + k ()V m_93091_ + l ()Lbyo; m_93092_ + m ()Lbfz; m_93093_ + n ()V m_93066_ + o ()V m_193836_ +eow$a net/minecraft/client/gui/Gui$HeartType + a CONTAINER + b NORMAL + c POISIONED + d WITHERED + e ABSORBING + f FROZEN + g f_168722_ + h f_168723_ + i $VALUES + ()V + static + (Ljava/lang/String;IIZ)V + 0 o p_168727_ + 1 o p_168728_ + 2 o p_168729_ + 3 o p_168730_ + a (Lbyo;)Leow$a; m_168732_ + static + 0 o p_168733_ + a (ZZ)I m_168734_ + 0 o p_168735_ + 1 o p_168736_ + a ()[Leow$a; m_168731_ + static + valueOf (Ljava/lang/String;)Leow$a; valueOf + static + 0 o p_168738_ + values ()[Leow$a; values + static +eox net/minecraft/client/gui/GuiGraphics + a f_289044_ + b f_289038_ + c f_279564_ + d f_279544_ + e f_279612_ + f f_279627_ + g f_279587_ + h f_285610_ + (Lenn;Lfjx$a;)V + 0 o p_283406_ + 1 o p_282238_ + (Lenn;Leij;Lfjx$a;)V + 0 o p_282144_ + 1 o p_281551_ + 2 o p_281460_ + a (Lcfz;II)V m_280480_ + 0 o p_281978_ + 1 o p_282647_ + 2 o p_281944_ + a (Lfkf;IIII)V m_285844_ + 0 o p_286630_ + 1 o p_286453_ + 2 o p_286247_ + 3 o p_286814_ + 4 o p_286623_ + a (Lfkf;IIIIIII)V m_285978_ + 0 o p_286522_ + 1 o p_286535_ + 2 o p_286839_ + 3 o p_286242_ + 4 o p_286856_ + 5 o p_286809_ + 6 o p_286833_ + 7 o p_286706_ + a (Leov;Lcfz;IILjava/lang/String;)V m_280302_ + 0 o p_282005_ + 1 o p_283349_ + 2 o p_282641_ + 3 o p_282146_ + 4 o p_282803_ + a (IIIIII)V m_280046_ + 0 o p_281437_ + 1 o p_283660_ + 2 o p_282606_ + 3 o p_283413_ + 4 o p_283428_ + 5 o p_283253_ + a (Leov;Ljava/util/List;Ljava/util/Optional;II)V m_280677_ + 0 o p_283128_ + 1 o p_282716_ + 2 o p_281682_ + 3 o p_283678_ + 4 o p_281696_ + a (II)Lit/unimi/dsi/fastutil/ints/IntIterator; m_280358_ + static + 0 o p_282197_ + 1 o p_282161_ + a (Lesz;)V m_280185_ + 0 o p_281569_ + a (IIIIILfuv;FFFF)V m_280565_ + 0 o p_282416_ + 1 o p_282989_ + 2 o p_282618_ + 3 o p_282755_ + 4 o p_281717_ + 5 o p_281874_ + 6 o p_283559_ + 7 o p_282730_ + 8 o p_283530_ + 9 o p_282246_ + a (Lbfz;Lcfz;III)V m_280638_ + 0 o p_282154_ + 1 o p_282777_ + 2 o p_282110_ + 3 o p_281371_ + 4 o p_283572_ + a (Lfkf;IIIIII)V m_285795_ + 0 o p_286711_ + 1 o p_286234_ + 2 o p_286444_ + 3 o p_286244_ + 4 o p_286411_ + 5 o p_286671_ + 6 o p_286599_ + a (Leov;Lsw;IIIZ)I m_280614_ + 0 o p_281547_ + 1 o p_282131_ + 2 o p_282857_ + 3 o p_281250_ + 4 o p_282195_ + 5 o p_282791_ + a (Leov;Lsw;II)V m_280557_ + 0 o p_282269_ + 1 o p_282572_ + 2 o p_282044_ + 3 o p_282545_ + a (Leov;Ljava/util/List;IILexi;)V m_280497_ + 0 o p_282675_ + 1 o p_282615_ + 2 o p_283230_ + 3 o p_283417_ + 4 o p_282442_ + a (Leov;Ljava/lang/String;IIIZ)I m_280056_ + 0 o p_283343_ + 1 o p_281896_ + 2 o p_283569_ + 3 o p_283418_ + 4 o p_281560_ + 5 o p_282130_ + a (Lacq;IIFFIIII)V m_280163_ + 0 o p_283272_ + 1 o p_283605_ + 2 o p_281879_ + 3 o p_282809_ + 4 o p_282942_ + 5 o p_281922_ + 6 o p_282385_ + 7 o p_282596_ + 8 o p_281699_ + a (Leov;Ljava/util/List;II)V m_280666_ + 0 o p_282739_ + 1 o p_281832_ + 2 o p_282191_ + 3 o p_282446_ + a (Leov;Laom;III)V m_280364_ + 0 o p_282592_ + 1 o p_281854_ + 2 o p_281573_ + 3 o p_283511_ + 4 o p_282577_ + a (IIII)V m_280656_ + 0 o p_283318_ + 1 o p_281662_ + 2 o p_281346_ + 3 o p_281672_ + a (IIIII)V m_280509_ + 0 o p_282988_ + 1 o p_282861_ + 2 o p_281278_ + 3 o p_281710_ + 4 o p_281470_ + a (Lcfz;IIII)V m_280064_ + 0 o p_282786_ + 1 o p_282502_ + 2 o p_282976_ + 3 o p_281592_ + 4 o p_282314_ + a (Lacq;IIIFFIIII)V m_280398_ + 0 o p_283573_ + 1 o p_283574_ + 2 o p_283670_ + 3 o p_283545_ + 4 o p_283029_ + 5 o p_283061_ + 6 o p_282845_ + 7 o p_282558_ + 8 o p_282832_ + 9 o p_281851_ + a (Lbfz;Lcmm;Lcfz;III)V m_280053_ + 0 o p_283524_ + 1 o p_282461_ + 2 o p_283653_ + 3 o p_283141_ + 4 o p_282560_ + 5 o p_282425_ + a (Leov;Lta;IIII)V m_280554_ + 0 o p_281494_ + 1 o p_283463_ + 2 o p_282183_ + 3 o p_283250_ + 4 o p_282564_ + 5 o p_282629_ + a (Leov;Ljava/util/List;Lexi;II)V m_280547_ + 0 o p_281627_ + 1 o p_283313_ + 2 o p_283571_ + 3 o p_282367_ + 4 o p_282806_ + a (Lacq;IIIIII)V m_280218_ + 0 o p_283377_ + 1 o p_281970_ + 2 o p_282111_ + 3 o p_283134_ + 4 o p_282778_ + 5 o p_281478_ + 6 o p_281821_ + a ()I m_280182_ + a (FFFF)V m_280246_ + 0 o p_281272_ + 1 o p_281734_ + 2 o p_282022_ + 3 o p_281752_ + a (Lfkf;IIIII)V m_285944_ + 0 o p_286602_ + 1 o p_286738_ + 2 o p_286614_ + 3 o p_286741_ + 4 o p_286610_ + 5 o p_286560_ + a (Lacq;IIIIFFIIII)V m_280411_ + 0 o p_282034_ + 1 o p_283671_ + 2 o p_282377_ + 3 o p_282058_ + 4 o p_281939_ + 5 o p_282285_ + 6 o p_283199_ + 7 o p_282186_ + 8 o p_282322_ + 9 o p_282481_ + 10 o p_281887_ + a (Leov;Lcfz;II)V m_280370_ + 0 o p_281721_ + 1 o p_281514_ + 2 o p_282056_ + 3 o p_282683_ + a (Leov;Lsw;III)V m_280653_ + 0 o p_282901_ + 1 o p_282456_ + 2 o p_283083_ + 3 o p_282276_ + 4 o p_281457_ + a (IIIIIII)V m_280120_ + 0 o p_282702_ + 1 o p_282331_ + 2 o p_281415_ + 3 o p_283118_ + 4 o p_282419_ + 5 o p_281954_ + 6 o p_282607_ + a (Lacq;IIIIIIIIII)V m_280027_ + 0 o p_282543_ + 1 o p_281513_ + 2 o p_281865_ + 3 o p_282482_ + 4 o p_282661_ + 5 o p_282068_ + 6 o p_281294_ + 7 o p_281681_ + 8 o p_281957_ + 9 o p_282300_ + 10 o p_282769_ + a (Lacq;IIIIIFFFFFFFF)V m_280479_ + 0 o p_283254_ + 1 o p_283092_ + 2 o p_281930_ + 3 o p_282113_ + 4 o p_281388_ + 5 o p_283583_ + 6 o p_281327_ + 7 o p_281676_ + 8 o p_283166_ + 9 o p_282630_ + 10 o p_282800_ + 11 o p_282850_ + 12 o p_282375_ + 13 o p_282754_ + a (Lacq;IIIIIIIIIIII)V m_280195_ + 0 o p_282712_ + 1 o p_283509_ + 2 o p_283259_ + 3 o p_283273_ + 4 o p_282043_ + 5 o p_281430_ + 6 o p_281412_ + 7 o p_282566_ + 8 o p_281971_ + 9 o p_282879_ + 10 o p_281529_ + 11 o p_281924_ + 12 o p_281407_ + a (Lacq;IIIIIIIFFII)V m_280312_ + 0 o p_282639_ + 1 o p_282732_ + 2 o p_283541_ + 3 o p_281760_ + 4 o p_283298_ + 5 o p_283429_ + 6 o p_282193_ + 7 o p_281980_ + 8 o p_282660_ + 9 o p_281522_ + 10 o p_282315_ + 11 o p_281436_ + a (Lacq;IIIIIFFFF)V m_280444_ + 0 o p_283461_ + 1 o p_281399_ + 2 o p_283222_ + 3 o p_283615_ + 4 o p_283430_ + 5 o p_281729_ + 6 o p_283247_ + 7 o p_282598_ + 8 o p_282883_ + 9 o p_283017_ + a (Ljava/lang/Runnable;)V m_286007_ + 0 o p_286277_ + a (Lcfz;)Ljava/lang/String; m_280474_ + static + 0 o p_282449_ + a (Lacq;IIIIIIIII)V m_280260_ + 0 o p_282546_ + 1 o p_282275_ + 2 o p_281581_ + 3 o p_283274_ + 4 o p_281626_ + 5 o p_283005_ + 6 o p_282047_ + 7 o p_282125_ + 8 o p_283423_ + 9 o p_281424_ + a (Leov;Lts;II)V m_280304_ + 0 o p_282584_ + 1 o p_282156_ + 2 o p_283623_ + 3 o p_282114_ + a (IIIIILfuv;)V m_280159_ + 0 o p_282225_ + 1 o p_281487_ + 2 o p_281985_ + 3 o p_281329_ + 4 o p_283035_ + 5 o p_281614_ + a (Lbfz;Lcmm;Lcfz;IIII)V m_280405_ + 0 o p_282619_ + 1 o p_281754_ + 2 o p_281675_ + 3 o p_281271_ + 4 o p_282210_ + 5 o p_283260_ + 6 o p_281995_ + a (Lacq;IIIIIIII)V m_280543_ + 0 o p_283059_ + 1 o p_283575_ + 2 o p_283192_ + 3 o p_281790_ + 4 o p_283642_ + 5 o p_282691_ + 6 o p_281912_ + 7 o p_281728_ + 8 o p_282324_ + a (Lcfz;III)V m_280256_ + 0 o p_282262_ + 1 o p_283221_ + 2 o p_283496_ + 3 o p_283435_ + a (Leov;Ljava/lang/String;III)V m_280137_ + 0 o p_282122_ + 1 o p_282898_ + 2 o p_281490_ + 3 o p_282853_ + 4 o p_281258_ + a (Leov;Laom;IIIZ)I m_280649_ + 0 o p_282636_ + 1 o p_281596_ + 2 o p_281586_ + 3 o p_282816_ + 4 o p_281743_ + 5 o p_282394_ + a (Ljava/util/List;Lcdf;)V m_280645_ + static + 0 o p_283071_ + 1 o p_282969_ + a (Lein;IIIIIII)V m_280584_ + 0 o p_286862_ + 1 o p_283414_ + 2 o p_281397_ + 3 o p_283587_ + 4 o p_281521_ + 5 o p_283505_ + 6 o p_283131_ + 7 o p_282949_ + b (Lfkf;IIII)V m_285886_ + 0 o p_286607_ + 1 o p_286309_ + 2 o p_286480_ + 3 o p_286707_ + 4 o p_286855_ + b (IIIII)V m_280637_ + 0 o p_281496_ + 1 o p_282076_ + 2 o p_281334_ + 3 o p_283576_ + 4 o p_283618_ + b (Lcfz;II)V m_280203_ + 0 o p_281946_ + 1 o p_283299_ + 2 o p_283674_ + b (Leov;Laom;III)I m_280648_ + 0 o p_283019_ + 1 o p_283376_ + 2 o p_283379_ + 3 o p_283346_ + 4 o p_282119_ + b (Leov;Lsw;III)I m_280430_ + 0 o p_281653_ + 1 o p_283140_ + 2 o p_283102_ + 3 o p_282347_ + 4 o p_281429_ + b (Leov;Ljava/lang/String;III)I m_280488_ + 0 o p_282003_ + 1 o p_281403_ + 2 o p_282714_ + 3 o p_282041_ + 4 o p_281908_ + b (IIIIII)V m_280024_ + 0 o p_283290_ + 1 o p_283278_ + 2 o p_282670_ + 3 o p_281698_ + 4 o p_283374_ + 5 o p_283076_ + b (Leov;Ljava/util/List;II)V m_280245_ + 0 o p_282192_ + 1 o p_282297_ + 2 o p_281680_ + 3 o p_283325_ + b (Lcfz;)Ljava/lang/String; m_280149_ + static + 0 o p_282365_ + b ()I m_280206_ + b (Leov;Lcfz;II)V m_280153_ + 0 o p_282308_ + 1 o p_282781_ + 2 o p_282687_ + 3 o p_282292_ + b (IIII)V m_280315_ + 0 o p_282951_ + 1 o p_281591_ + 2 o p_281568_ + 3 o p_282718_ + c (Lcfz;)Ljava/lang/String; m_280240_ + static + 0 o p_282539_ + c (IIII)V m_280588_ + 0 o p_281479_ + 1 o p_282788_ + 2 o p_282924_ + 3 o p_282826_ + c ()Leij; m_280168_ + d (Lcfz;)Ljava/lang/String; m_280124_ + static + 0 o p_283086_ + d ()Lfjx$a; m_280091_ + d (IIII)V m_285667_ + 0 o p_286117_ + 1 o p_286118_ + 2 o p_286119_ + 3 o p_286120_ + e ()V m_280262_ + f ()V m_280618_ + g ()V m_286081_ + h ()V m_287246_ +eox$a net/minecraft/client/gui/GuiGraphics$ScissorStack + a f_279656_ + ()V + a ()Lesz; m_280462_ + a (Lesz;)Lesz; m_280318_ + 0 o p_281812_ +eoy net/minecraft/client/gui/MapRenderer + a f_93253_ + b f_93254_ + c f_168763_ + d f_168764_ + e f_93255_ + f f_93256_ + ()V + static + (Lfuw;)V + 0 o p_93259_ + a (Leij;Lfjx;ILdyo;ZI)V m_168771_ + 0 o p_168772_ + 1 o p_168773_ + 2 o p_168774_ + 3 o p_168775_ + 4 o p_168776_ + 5 o p_168777_ + a (Ldyo;Ljava/lang/Integer;Leoy$a;)Leoy$a; m_182561_ + 0 o p_182562_ + 1 o p_182563_ + 2 o p_182564_ + a ()V m_93260_ + a (ILdyo;)V m_168765_ + 0 o p_168766_ + 1 o p_168767_ + b (ILdyo;)Leoy$a; m_168778_ + 0 o p_168779_ + 1 o p_168780_ + close ()V close +eoy$a net/minecraft/client/gui/MapRenderer$MapInstance + a f_93279_ + b f_93280_ + c f_93281_ + d f_93282_ + e f_182565_ + (Leoy;ILdyo;)V + 0 o p_168782_ + 1 o p_168783_ + 2 o p_168784_ + a (Ldyo;)V m_182567_ + 0 o p_182568_ + a ()V m_182566_ + a (Leij;Lfjx;ZI)V m_93291_ + 0 o p_93292_ + 1 o p_93293_ + 2 o p_93294_ + 3 o p_93295_ + b ()V m_93290_ + close ()V close +eoz net/minecraft/client/gui/components/AbstractButton + g f_273923_ + h f_273820_ + i f_273885_ + j f_275753_ + k f_275757_ + l f_273867_ + (IIIILsw;)V + 0 o p_93365_ + 1 o p_93366_ + 2 o p_93367_ + 3 o p_93368_ + 4 o p_93369_ + a (III)Z m_7933_ + 0 o p_93374_ + 1 o p_93375_ + 2 o p_93376_ + a (Leox;Leov;I)V m_280139_ + 0 o p_283366_ + 1 o p_283054_ + 2 o p_281656_ + a ()I m_274533_ + a (DD)V m_5716_ + 0 o p_93371_ + 1 o p_93372_ + b (Leox;IIF)V m_87963_ + 0 o p_281670_ + 1 o p_282682_ + 2 o p_281714_ + 3 o p_282542_ + c ()V m_5691_ +ep net/minecraft/commands/arguments/ResourceKeyArgument + a f_212361_ + b f_212363_ + c f_233246_ + d f_233247_ + e f_212364_ + ()V + static + (Lacp;)V + 0 o p_212367_ + a (Lcom/mojang/brigadier/context/CommandContext;Lacp;)Lhr; m_212378_ + static + 0 o p_212379_ + 1 o p_212380_ + a (Lcom/mojang/brigadier/context/CommandContext;Ljava/lang/String;)Lhe$c; m_245341_ + static + 0 o p_249310_ + 1 o p_250729_ + a (Lcom/mojang/brigadier/exceptions/DynamicCommandExceptionType;Lacp;)Lcom/mojang/brigadier/exceptions/CommandSyntaxException; m_233248_ + static + 0 o p_233249_ + 1 o p_233250_ + a (Ljava/lang/Object;)Lcom/mojang/brigadier/Message; m_233263_ + static + 0 o p_233264_ + a (Lacp;)Lep; m_212386_ + static + 0 o p_212387_ + a (Lcom/mojang/brigadier/context/CommandContext;Ljava/lang/String;Lacp;Lcom/mojang/brigadier/exceptions/DynamicCommandExceptionType;)Lacp; m_212373_ + static + 0 o p_212374_ + 1 o p_212375_ + 2 o p_212376_ + 3 o p_212377_ + a (Lcom/mojang/brigadier/StringReader;)Lacp; parse + 0 o p_212369_ + b (Ljava/lang/Object;)Lcom/mojang/brigadier/Message; m_212384_ + static + 0 o p_212385_ + b (Lcom/mojang/brigadier/context/CommandContext;Ljava/lang/String;Lacp;Lcom/mojang/brigadier/exceptions/DynamicCommandExceptionType;)Lhe$c; m_246813_ + static + 0 o p_248662_ + 1 o p_252172_ + 2 o p_249701_ + 3 o p_249790_ + b (Lcom/mojang/brigadier/context/CommandContext;Ljava/lang/String;)Lhe$c; m_247318_ + static + 0 o p_248804_ + 1 o p_251331_ + b (Lcom/mojang/brigadier/exceptions/DynamicCommandExceptionType;Lacp;)Lcom/mojang/brigadier/exceptions/CommandSyntaxException; m_233260_ + static + 0 o p_233261_ + 1 o p_233262_ + c (Ljava/lang/Object;)Lcom/mojang/brigadier/Message; m_212391_ + static + 0 o p_212392_ + c (Lcom/mojang/brigadier/context/CommandContext;Ljava/lang/String;)Lhe$c; m_247435_ + static + 0 o p_252203_ + 1 o p_250407_ + getExamples ()Ljava/util/Collection; getExamples + listSuggestions (Lcom/mojang/brigadier/context/CommandContext;Lcom/mojang/brigadier/suggestion/SuggestionsBuilder;)Ljava/util/concurrent/CompletableFuture; listSuggestions + 0 o p_212399_ + 1 o p_212400_ + parse (Lcom/mojang/brigadier/StringReader;)Ljava/lang/Object; parse + 0 o p_212402_ +ep$a net/minecraft/commands/arguments/ResourceKeyArgument$Info + ()V + a (Lgg$a;Lcom/google/gson/JsonObject;)V m_213719_ + 0 o p_233283_ + 1 o p_233284_ + a (Lsf;)Lep$a$a; m_213618_ + 0 o p_233289_ + a (Lep;)Lep$a$a; m_214163_ + 0 o p_233281_ + a (Lcom/mojang/brigadier/arguments/ArgumentType;)Lgg$a; m_214163_ + 0 o p_233273_ + a (Lgg$a;Lsf;)V m_214155_ + 0 o p_233286_ + 1 o p_233287_ + a (Lep$a$a;Lsf;)V m_214155_ + 0 o p_233278_ + 1 o p_233279_ + a (Lep$a$a;Lcom/google/gson/JsonObject;)V m_213719_ + 0 o p_233275_ + 1 o p_233276_ + b (Lsf;)Lgg$a; m_213618_ + 0 o p_233291_ +ep$a$a net/minecraft/commands/arguments/ResourceKeyArgument$Info$Template + a f_233292_ + b f_233293_ + (Lep$a;Lacp;)V + 0 o p_233295_ + 1 o p_233296_ + a (Ldm;)Lep; m_213879_ + 0 o p_233299_ + a ()Lgg; m_213709_ + b (Ldm;)Lcom/mojang/brigadier/arguments/ArgumentType; m_213879_ + 0 o p_233301_ +epa net/minecraft/client/gui/components/AbstractOptionSliderButton + a f_93377_ + (Lenr;IIIID)V + 0 o p_93379_ + 1 o p_93380_ + 2 o p_93381_ + 3 o p_93382_ + 4 o p_93383_ + 5 o p_93384_ +epb net/minecraft/client/gui/components/AbstractScrollWidget + a f_238809_ + b f_238810_ + c f_238748_ + d f_238777_ + e f_238564_ + f f_238779_ + (IIIILsw;)V + 0 o p_240025_ + 1 o p_240026_ + 2 o p_240027_ + 3 o p_240028_ + 4 o p_240029_ + a (D)V m_240206_ + 0 o p_240207_ + a (DDIDD)Z m_7979_ + 0 o p_239639_ + 1 o p_239640_ + 2 o p_239641_ + 3 o p_239642_ + 4 o p_239643_ + a (II)Z m_239942_ + 0 o p_239943_ + 1 o p_239944_ + a ()I m_239244_ + a (DDI)Z m_6375_ + 0 o p_240170_ + 1 o p_240171_ + 2 o p_240172_ + a (DDD)Z m_6050_ + 0 o p_239308_ + 1 o p_239309_ + 2 o p_239310_ + a (III)Z m_7933_ + 0 o p_276060_ + 1 o p_276046_ + 2 o p_276030_ + a (Leox;IIII)V m_289749_ + 0 o p_289776_ + 1 o p_289792_ + 2 o p_289795_ + 3 o p_289775_ + 4 o p_289762_ + a (Leox;)V m_239516_ + 0 o p_283178_ + b (Leox;)V m_240048_ + 0 o p_282207_ + b ()I m_240012_ + b (Leox;IIF)V m_87963_ + 0 o p_282213_ + 1 o p_282468_ + 2 o p_282209_ + 3 o p_283300_ + b (DDI)Z m_6348_ + 0 o p_239063_ + 1 o p_239064_ + 2 o p_239065_ + c (Leox;IIF)V m_239197_ + 0 o p_282975_ + 1 o p_239199_ + 2 o p_239200_ + 3 o p_239201_ + c ()D m_239030_ + c (Leox;)V m_264041_ + 0 o p_282305_ + c (DD)Z m_239606_ + 0 o p_239607_ + 1 o p_239608_ + d ()I m_239509_ + e ()Z m_239656_ + f ()I m_239019_ + g ()D m_239725_ + v ()I m_240211_ + w ()I m_239044_ +epc net/minecraft/client/gui/components/AbstractSelectionList + a f_93385_ + b f_93386_ + c f_93387_ + d f_93388_ + e f_93389_ + f f_93390_ + g f_93391_ + h f_93392_ + i f_93393_ + j f_93394_ + k f_93395_ + l f_93396_ + m f_93397_ + n f_93398_ + o f_93399_ + p f_93400_ + q f_93401_ + r f_93402_ + s f_168789_ + (Lenn;IIIII)V + 0 o p_93404_ + 1 o p_93405_ + 2 o p_93406_ + 3 o p_93407_ + 4 o p_93408_ + 5 o p_93409_ + a (Lepc$a;)V m_6987_ + 0 o p_93462_ + a (II)V m_6205_ + 0 o p_93431_ + 1 o p_93432_ + a (Z)V m_93471_ + 0 o p_93472_ + a (DDI)Z m_6375_ + 0 o p_93420_ + 1 o p_93421_ + 2 o p_93422_ + a (Leox;IIIII)V m_240140_ + 0 o p_283589_ + 1 o p_240142_ + 2 o p_240143_ + 3 o p_240144_ + 4 o p_240145_ + 5 o p_240146_ + a (Leox;IIFIIIII)V m_238964_ + 0 o p_282205_ + 1 o p_238966_ + 2 o p_238967_ + 3 o p_238968_ + 4 o p_238969_ + 5 o p_238970_ + 6 o p_238971_ + 7 o p_238972_ + 8 o p_238973_ + a (D)V m_93410_ + 0 o p_93411_ + a (DDIDD)Z m_7979_ + 0 o p_93424_ + 1 o p_93425_ + 2 o p_93426_ + 3 o p_93427_ + 4 o p_93428_ + a (Lesx;Ljava/util/function/Predicate;Lepc$a;)Lepc$a; m_264238_ + 0 o p_265159_ + 1 o p_265109_ + 2 o p_265379_ + a (IIII)V m_93437_ + 0 o p_93438_ + 1 o p_93439_ + 2 o p_93440_ + 3 o p_93441_ + a (Leqt;)V m_7522_ + 0 o p_265738_ + a (Ljava/util/Collection;)V m_5988_ + 0 o p_93470_ + a (Leox;IIF)V m_88315_ + 0 o p_282708_ + 1 o p_283242_ + 2 o p_282891_ + 3 o p_283683_ + a (ZI)V m_93473_ + 0 o p_93474_ + 1 o p_93475_ + a ()I m_5775_ + a (DDD)Z m_6050_ + 0 o p_93416_ + 1 o p_93417_ + 2 o p_93418_ + a (Leox;II)V m_7415_ + 0 o p_282337_ + 1 o p_93444_ + 2 o p_93445_ + a (Leox;)V m_7733_ + 0 o p_283512_ + a (I)V m_93429_ + 0 o p_93430_ + a (DD)Lepc$a; m_93412_ + 0 o p_93413_ + 1 o p_93414_ + a (Lesx;)Lepc$a; m_264254_ + 0 o p_265160_ + a (Lesx;Ljava/util/function/Predicate;)Lepc$a; m_264620_ + 0 o p_265210_ + 1 o p_265604_ + a (Lesp;Lepc$a;)V m_168790_ + 0 o p_168791_ + 1 o p_168792_ + a_ (DD)Z m_5953_ + 0 o p_93479_ + 1 o p_93480_ + b (Leox;IIF)V m_239227_ + 0 o p_282079_ + 1 o p_239229_ + 2 o p_239230_ + 3 o p_239231_ + b (Z)V m_93488_ + 0 o p_93489_ + b (Lepc$a;)I m_7085_ + 0 o p_93487_ + b (Leox;II)V m_7154_ + 0 o p_281477_ + 1 o p_93459_ + 2 o p_93460_ + b (DDI)Z m_6348_ + 0 o p_93491_ + 1 o p_93492_ + 2 o p_93493_ + b (Leox;)V m_280310_ + 0 o p_282811_ + b ()I m_5759_ + c ()I m_5756_ + c (Z)V m_93496_ + 0 o p_93497_ + c (DDI)V m_93481_ + 0 o p_93482_ + 1 o p_93483_ + 2 o p_93484_ + c (Lepc$a;)V m_239857_ + 0 o p_239858_ + d (Lepc$a;)Z m_239045_ + 0 o p_239046_ + d (I)Lepc$a; m_93500_ + 0 o p_93501_ + e (Lepc$a;)V m_93494_ + 0 o p_93495_ + e (I)Z m_7987_ + 0 o p_93504_ + f ()Lepc$a; m_93511_ + f (I)V m_93507_ + 0 o p_93508_ + f (Lepc$a;)V m_93498_ + 0 o p_93499_ + g (I)I m_7610_ + 0 o p_93512_ + g (Lepc$a;)Z m_93502_ + 0 o p_93503_ + g ()Lepc$a; m_264567_ + h (Lepc$a;)V m_93505_ + 0 o p_93506_ + h (I)I m_93485_ + 0 o p_93486_ + h ()Lepc$a; m_7222_ + i ()Ljava/util/List; m_6702_ + i (I)Lepc$a; m_93514_ + 0 o p_93515_ + i (Lepc$a;)Z m_93509_ + static + 0 o p_93510_ + j ()V m_93516_ + k ()I m_5773_ + l ()D m_93517_ + m ()I m_93518_ + n ()I m_168793_ + o ()I m_5747_ + p ()I m_93520_ + q ()Lesn$a; m_142684_ + r ()Lepc$a; m_168795_ + s ()Lesz; m_264198_ + t ()Leqt; m_7222_ +epc$1 net/minecraft/client/gui/components/AbstractSelectionList$1 + a f_263843_ + ()V + static +epc$a net/minecraft/client/gui/components/AbstractSelectionList$Entry + a f_93521_ + ()V + a (Leox;IIIIIIIZF)V m_6311_ + 0 o p_283112_ + 1 o p_93524_ + 2 o p_93525_ + 3 o p_93526_ + 4 o p_93527_ + 5 o p_93528_ + 6 o p_93529_ + 7 o p_93530_ + 8 o p_93531_ + 9 o p_93532_ + aB_ ()Z m_93696_ + a_ (DD)Z m_5953_ + 0 o p_93537_ + 1 o p_93538_ + b (Leox;IIIIIIIZF)V m_274437_ + 0 o p_282673_ + 1 o p_275556_ + 2 o p_275667_ + 3 o p_275713_ + 4 o p_275408_ + 5 o p_275330_ + 6 o p_275603_ + 7 o p_275450_ + 8 o p_275434_ + 9 o p_275384_ + b_ (Z)V m_93692_ + 0 o p_265302_ +epc$b net/minecraft/client/gui/components/AbstractSelectionList$TrackedList + a f_93549_ + b f_93550_ + (Lepc;)V + 0 o p_93552_ + a (ILepc$a;)Lepc$a; set + 0 o p_93559_ + 1 o p_93560_ + a (I)Lepc$a; get + 0 o p_93557_ + add (ILjava/lang/Object;)V add + 0 o p_93562_ + 1 o p_93563_ + b (ILepc$a;)V add + 0 o p_93567_ + 1 o p_93568_ + b (I)Lepc$a; remove + 0 o p_93565_ + get (I)Ljava/lang/Object; get + 0 o p_93570_ + remove (I)Ljava/lang/Object; remove + 0 o p_93572_ + set (ILjava/lang/Object;)Ljava/lang/Object; set + 0 o p_93574_ + 1 o p_93575_ + size ()I size +epd net/minecraft/client/gui/components/AbstractSliderButton + a f_263683_ + b f_273913_ + c f_273852_ + d f_275758_ + e f_275750_ + f f_273931_ + g f_93577_ + h f_263696_ + i f_263653_ + j f_263685_ + k f_263817_ + l f_263751_ + u f_263731_ + v f_263690_ + w f_263772_ + ()V + static + (IIIILsw;D)V + 0 o p_93579_ + 1 o p_93580_ + 2 o p_93581_ + 3 o p_93582_ + 4 o p_93583_ + 5 o p_93584_ + a (D)V m_93585_ + 0 o p_93586_ + a (DDDD)V m_7212_ + 0 o p_93591_ + 1 o p_93592_ + 2 o p_93593_ + 3 o p_93594_ + a (DD)V m_5716_ + 0 o p_93588_ + 1 o p_93589_ + a (Lesp;)V m_168797_ + 0 o p_168798_ + a (Lfzc;)V m_7435_ + 0 o p_93605_ + a (III)Z m_7933_ + 0 o p_93596_ + 1 o p_93597_ + 2 o p_93598_ + a ()V m_5697_ + aE_ ()Ltj; m_5646_ + b (Leox;IIF)V m_87963_ + 0 o p_283427_ + 1 o p_281447_ + 2 o p_282852_ + 3 o p_282409_ + b (D)V m_93611_ + 0 o p_93612_ + b (DD)V m_7691_ + 0 o p_93609_ + 1 o p_93610_ + b ()V m_5695_ + b_ (Z)V m_93692_ + 0 o p_265705_ + e ()I m_264355_ + f ()I m_264270_ +epe net/minecraft/client/gui/components/AbstractStringWidget + a f_268594_ + b f_268558_ + (IIIILsw;Leov;)V + 0 o p_270910_ + 1 o p_270297_ + 2 o p_270088_ + 3 o p_270842_ + 4 o p_270063_ + 5 o p_270327_ + a (Lesp;)V m_168797_ + 0 o p_270859_ + a ()Leov; m_269100_ + a (I)Lepe; m_269033_ + 0 o p_270638_ + b ()I m_269468_ +epf net/minecraft/client/gui/components/AbstractWidget + a f_273912_ + b f_273840_ + c f_93620_ + d f_93621_ + e f_93614_ + f f_267443_ + g f_93616_ + h f_256816_ + i f_256936_ + j f_256960_ + k f_256916_ + m f_93617_ + n f_267372_ + o f_93618_ + p f_93619_ + q f_93622_ + r f_93623_ + s f_93624_ + t f_93625_ + ()V + static + (IIIILsw;)V + 0 o p_93629_ + 1 o p_93630_ + 2 o p_93631_ + 3 o p_93632_ + 4 o p_93633_ + a (Leox;Leov;II)V m_280372_ + 0 o p_281857_ + 1 o p_282790_ + 2 o p_282664_ + 3 o p_282944_ + a (Lsw;)Ltj; m_168799_ + static + 0 o p_168800_ + a (DDDD)V m_7212_ + 0 o p_93636_ + 1 o p_93637_ + 2 o p_93638_ + 3 o p_93639_ + a (DDI)Z m_6375_ + 0 o p_93641_ + 1 o p_93642_ + 2 o p_93643_ + a (Lesp;)V m_168797_ + 0 o p_259858_ + a ()V m_257936_ + a (DDIDD)Z m_7979_ + 0 o p_93645_ + 1 o p_93646_ + 2 o p_93647_ + 3 o p_93648_ + 4 o p_93649_ + a (Ljava/util/function/Consumer;)V m_264134_ + 0 o p_265566_ + a (F)V m_93650_ + 0 o p_93651_ + a (Leox;Lacq;IIIIIIIII)V m_280322_ + 0 o p_283546_ + 1 o p_281674_ + 2 o p_281808_ + 3 o p_282444_ + 4 o p_283651_ + 5 o p_281601_ + 6 o p_283472_ + 7 o p_282390_ + 8 o p_281441_ + 9 o p_281711_ + 10 o p_281541_ + a (DD)V m_5716_ + 0 o p_93634_ + 1 o p_93635_ + a (Leox;Leov;Lsw;IIIII)V m_280138_ + static + 0 o p_281620_ + 1 o p_282651_ + 2 o p_281467_ + 3 o p_283621_ + 4 o p_282084_ + 5 o p_283398_ + 6 o p_281938_ + 7 o p_283471_ + a (Lfzc;)V m_7435_ + 0 o p_93665_ + a (Leqp;)V m_257544_ + 0 o p_259796_ + a (Lesv;)Leou; m_264064_ + 0 o p_265640_ + a (Leox;IIF)V m_88315_ + 0 o p_282421_ + 1 o p_93658_ + 2 o p_93659_ + 3 o p_93660_ + aB_ ()Z m_93696_ + aC_ ()I m_267579_ + aD_ ()Z m_142518_ + aE_ ()Ltj; m_5646_ + a_ (DD)Z m_5953_ + 0 o p_93672_ + 1 o p_93673_ + b (Leox;IIF)V m_87963_ + 0 o p_282139_ + 1 o p_268034_ + 2 o p_268009_ + 3 o p_268085_ + b (Lesp;)V m_142291_ + 0 o p_259921_ + b (DDI)Z m_6348_ + 0 o p_93684_ + 1 o p_93685_ + 2 o p_93686_ + b (DD)V m_7691_ + 0 o p_93669_ + 1 o p_93670_ + b (I)V m_257427_ + 0 o p_259732_ + b (Lsw;)V m_93666_ + 0 o p_93667_ + b_ (Z)V m_93692_ + 0 o p_93693_ + c (I)Z m_7972_ + 0 o p_93652_ + c (Lesp;)V m_168802_ + 0 o p_168803_ + d (I)V m_93674_ + 0 o p_93675_ + d (DD)Z m_93680_ + 0 o p_93681_ + 1 o p_93682_ + e (I)V m_252865_ + 0 o p_254495_ + f (I)V m_253211_ + 0 o p_253718_ + g (I)V m_267708_ + 0 o p_268123_ + h ()I m_93694_ + i ()Lexi; m_262860_ + j ()Leqp; m_278622_ + k ()I m_5711_ + l ()Lsw; m_6035_ + m ()Z m_274382_ + n ()Z m_198029_ + p ()I m_252754_ + q ()Lesn$a; m_142684_ + r ()I m_252907_ + s ()Lesz; m_264198_ +epg net/minecraft/client/gui/components/AccessibilityOnboardingTextWidget + a f_263807_ + b f_263703_ + c f_263820_ + d f_263672_ + e f_263813_ + (Leov;Lsw;I)V + 0 o p_265441_ + 1 o p_265136_ + 2 o p_265628_ + a (Lesp;)V m_168797_ + 0 o p_265791_ + a (Lfzc;)V m_7435_ + 0 o p_265780_ + b (Leox;IIF)V m_87963_ + 0 o p_283425_ + 1 o p_267981_ + 2 o p_268038_ + 3 o p_268050_ +eph net/minecraft/client/gui/components/BossHealthOverlay + a f_93697_ + b f_168805_ + c f_168806_ + d f_168807_ + e f_93698_ + f f_93699_ + ()V + static + (Lenn;)V + 0 o p_93702_ + a (Leox;IILbdn;)V m_280106_ + 0 o p_283672_ + 1 o p_283570_ + 2 o p_283306_ + 3 o p_283156_ + a ()V m_93703_ + a (Leox;)V m_280652_ + 0 o p_283175_ + a (Lvc;)V m_93711_ + 0 o p_93712_ + a (Leox;IILbdn;II)V m_280093_ + 0 o p_281657_ + 1 o p_283675_ + 2 o p_282498_ + 3 o p_281288_ + 4 o p_283619_ + 5 o p_281636_ + b ()Z m_93713_ + c ()Z m_93714_ + d ()Z m_93715_ +eph$1 net/minecraft/client/gui/components/BossHealthOverlay$1 + a f_168808_ + (Leph;)V + 0 o p_168810_ + a (Ljava/util/UUID;F)V m_142653_ + 0 o p_168814_ + 1 o p_168815_ + a (Ljava/util/UUID;Lsw;)V m_142366_ + 0 o p_168821_ + 1 o p_168822_ + a (Ljava/util/UUID;)V m_142751_ + 0 o p_168812_ + a (Ljava/util/UUID;Lsw;FLbdn$a;Lbdn$b;ZZZ)V m_142107_ + 0 o p_168824_ + 1 o p_168825_ + 2 o p_168826_ + 3 o p_168827_ + 4 o p_168828_ + 5 o p_168829_ + 6 o p_168830_ + 7 o p_168831_ + a (Ljava/util/UUID;Lbdn$a;Lbdn$b;)V m_142358_ + 0 o p_168817_ + 1 o p_168818_ + 2 o p_168819_ + a (Ljava/util/UUID;ZZZ)V m_142513_ + 0 o p_168833_ + 1 o p_168834_ + 2 o p_168835_ + 3 o p_168836_ +epi net/minecraft/client/gui/components/Button + u f_238663_ + v f_238716_ + w f_238808_ + x f_252438_ + y f_93717_ + z f_252416_ + ()V + static + (IIIILsw;Lepi$c;Lepi$b;)V + 0 o p_259075_ + 1 o p_259271_ + 2 o p_260232_ + 3 o p_260028_ + 4 o p_259351_ + 5 o p_260152_ + 6 o p_259552_ + a (Lesp;)V m_168797_ + 0 o p_259196_ + a (Lsw;Lepi$c;)Lepi$a; m_253074_ + static + 0 o p_254439_ + 1 o p_254567_ + a (Ljava/util/function/Supplier;)Ltj; m_252557_ + static + 0 o p_253298_ + a ()Ltj; m_289584_ + aE_ ()Ltj; m_5646_ + c ()V m_5691_ +epi$a net/minecraft/client/gui/components/Button$Builder + a f_252401_ + b f_252468_ + c f_256855_ + d f_252538_ + e f_252462_ + f f_252510_ + g f_252447_ + h f_252431_ + (Lsw;Lepi$c;)V + 0 o p_254097_ + 1 o p_253761_ + a (Leqp;)Lepi$a; m_257505_ + 0 o p_259609_ + a (Lepi$b;)Lepi$a; m_252778_ + 0 o p_253638_ + a (II)Lepi$a; m_252794_ + 0 o p_254538_ + 1 o p_254216_ + a (I)Lepi$a; m_252780_ + 0 o p_254259_ + a ()Lepi; m_253136_ + a (IIII)Lepi$a; m_252987_ + 0 o p_254166_ + 1 o p_253872_ + 2 o p_254522_ + 3 o p_253985_ + b (II)Lepi$a; m_253046_ + 0 o p_253727_ + 1 o p_254457_ +epi$b net/minecraft/client/gui/components/Button$CreateNarration + createNarrationMessage (Ljava/util/function/Supplier;)Ltj; m_253229_ + 0 o p_253695_ +epi$c net/minecraft/client/gui/components/Button$OnPress + onPress (Lepi;)V m_93750_ + 0 o p_93751_ +epj net/minecraft/client/gui/components/ChatComponent + a f_93757_ + b f_168843_ + c f_240336_ + d f_240385_ + e f_240337_ + f f_244226_ + g f_243892_ + h f_244190_ + i f_93758_ + j f_93759_ + k f_93760_ + l f_93761_ + m f_93763_ + n f_93764_ + o f_244052_ + ()V + static + (Lenn;)V + 0 o p_93768_ + a (Ljava/lang/String;)V m_93783_ + 0 o p_93784_ + a (Z)V m_93795_ + 0 o p_93796_ + a (Leox;IILeni$a;)V m_280134_ + 0 o p_283206_ + 1 o p_281677_ + 2 o p_281878_ + 3 o p_282783_ + a (Lenh;)Lenh; m_246885_ + 0 o p_249789_ + a (ILepj$a;)Z m_245406_ + 0 o p_250971_ + 1 o p_250713_ + a (D)I m_93798_ + static + 0 o p_93799_ + a ()V m_246602_ + a (Lth;)V m_240953_ + 0 o p_241324_ + a (DD)Z m_93772_ + 0 o p_93773_ + 1 o p_93774_ + a (I)V m_205360_ + 0 o p_205361_ + a (Lsw;Lth;ILeni;Z)V m_240465_ + 0 o p_240562_ + 1 o p_241566_ + 2 o p_240583_ + 3 o p_240624_ + 4 o p_240558_ + a (Lsw;Lth;Leni;)V m_240964_ + 0 o p_241484_ + 1 o p_241323_ + 2 o p_241297_ + a (Lenh$a;)I m_240495_ + 0 o p_240622_ + a (Lsw;Leni;)V m_242648_ + 0 o p_242919_ + 1 o p_242840_ + a (Leox;III)V m_280165_ + 0 o p_282077_ + 1 o p_283491_ + 2 o p_282406_ + 3 o p_283111_ + a (Lsw;)V m_93785_ + 0 o p_93786_ + a (DLenh$a;Leni;)Z m_240447_ + 0 o p_240619_ + 1 o p_240547_ + 2 o p_240637_ + b (I)D m_93775_ + static + 0 o p_93776_ + b (D)I m_93811_ + static + 0 o p_93812_ + b (DD)Lts; m_93800_ + 0 o p_93801_ + 1 o p_93802_ + b (Lth;)Lepj$a; m_245423_ + 0 o p_251812_ + b ()V m_93769_ + c (DD)Leni; m_240463_ + 0 o p_240576_ + 1 o p_240554_ + c (D)D m_240491_ + 0 o p_240580_ + c ()Ljava/util/List; m_93797_ + d (D)D m_240485_ + 0 o p_240548_ + d (DD)I m_246107_ + 0 o p_249245_ + 1 o p_252282_ + d ()V m_93810_ + e ()I m_93813_ + e (DD)I m_247428_ + 0 o p_249099_ + 1 o p_250008_ + f ()I m_93814_ + g ()D m_93815_ + h ()D m_232477_ + static + i ()I m_93816_ + j ()Z m_93817_ + k ()V m_246025_ + l ()V m_241120_ + m ()Z m_93818_ + n ()I m_240691_ +epj$a net/minecraft/client/gui/components/ChatComponent$DelayedMessageDeletion + a f_244186_ + b f_244411_ + (Lth;I)V + 0 o f_244186_ + 1 o f_244411_ + a ()Lth; f_244186_ + b ()I f_244411_ + equals (Ljava/lang/Object;)Z equals + 0 o p_248705_ + hashCode ()I hashCode + toString ()Ljava/lang/String; toString +epk net/minecraft/client/gui/components/Checkbox + a f_93821_ + b f_168844_ + c f_93822_ + d f_93823_ + ()V + static + (IIIILsw;Z)V + 0 o p_93826_ + 1 o p_93827_ + 2 o p_93828_ + 3 o p_93829_ + 4 o p_93830_ + 5 o p_93831_ + (IIIILsw;ZZ)V + 0 o p_93833_ + 1 o p_93834_ + 2 o p_93835_ + 3 o p_93836_ + 4 o p_93837_ + 5 o p_93838_ + 6 o p_93839_ + a (Lesp;)V m_168797_ + 0 o p_260253_ + a ()Z m_93840_ + b (Leox;IIF)V m_87963_ + 0 o p_283124_ + 1 o p_282925_ + 2 o p_282705_ + 3 o p_282612_ + c ()V m_5691_ +epl net/minecraft/client/gui/components/CommandSuggestions + a f_93847_ + b f_93848_ + c f_93849_ + d f_93850_ + e f_93851_ + f f_93852_ + g f_93853_ + h f_93854_ + i f_93855_ + j f_93856_ + k f_93857_ + l f_93858_ + m f_93859_ + n f_93860_ + o f_93861_ + p f_93862_ + q f_93863_ + r f_93864_ + s f_93865_ + t f_93866_ + u f_93867_ + v f_93868_ + ()V + static + (Lenn;Leuq;Lepr;Leov;ZZIIZI)V + 0 o p_93871_ + 1 o p_93872_ + 2 o p_93873_ + 3 o p_93874_ + 4 o p_93875_ + 5 o p_93876_ + 6 o p_93877_ + 7 o p_93878_ + 8 o p_93879_ + 9 o p_93880_ + a (Ln;)Z m_93920_ + 0 o p_289002_ + a (D)Z m_93882_ + 0 o p_93883_ + a (Ljava/lang/String;Ljava/lang/String;)Ljava/lang/String; m_93927_ + static + 0 o p_93928_ + 1 o p_93929_ + a (Z)V m_93922_ + 0 o p_93923_ + a (Ljava/lang/String;)I m_93912_ + static + 0 o p_93913_ + a (DDI)Z m_93884_ + 0 o p_93885_ + 1 o p_93886_ + 2 o p_93887_ + a (Lcom/mojang/brigadier/ParseResults;Ljava/lang/String;I)Laom; m_93892_ + static + 0 o p_93893_ + 1 o p_93894_ + 2 o p_93895_ + a (Lcom/mojang/brigadier/suggestion/Suggestions;)Ljava/util/List; m_93898_ + 0 o p_93899_ + a (III)Z m_93888_ + 0 o p_93889_ + 1 o p_93890_ + 2 o p_93891_ + a ()V m_241889_ + a (Lcom/mojang/brigadier/exceptions/CommandSyntaxException;)Laom; m_93896_ + static + 0 o p_93897_ + a (Leox;II)V m_280540_ + 0 o p_282650_ + 1 o p_282266_ + 2 o p_281963_ + a (Leox;)V m_280123_ + 0 o p_282763_ + a (Ljava/lang/String;I)Laom; m_93914_ + 0 o p_93915_ + 1 o p_93916_ + b (Leox;II)Z m_280467_ + 0 o p_283503_ + 1 o p_281628_ + 2 o p_282260_ + b (Z)V m_93930_ + 0 o p_93931_ + b ()V m_93881_ + c ()Lsw; m_272218_ + d ()V m_93932_ + e ()V m_93935_ +epl$a net/minecraft/client/gui/components/CommandSuggestions$SuggestionsList + a f_93946_ + b f_93947_ + c f_93948_ + d f_93949_ + e f_93950_ + f f_93951_ + g f_93952_ + h f_93953_ + i f_93954_ + (Lepl;IIILjava/util/List;Z)V + 0 o p_93956_ + 1 o p_93957_ + 2 o p_93958_ + 3 o p_93959_ + 4 o p_93960_ + 5 o p_93961_ + a (D)Z m_93971_ + 0 o p_93972_ + a (I)V m_93973_ + 0 o p_93974_ + a (III)Z m_93975_ + 0 o p_93976_ + 1 o p_93977_ + 2 o p_93978_ + a ()V m_93970_ + a (Leox;II)V m_280328_ + 0 o p_282264_ + 1 o p_283591_ + 2 o p_283236_ + b ()Lsw; m_168847_ + b (I)V m_93986_ + 0 o p_93987_ + b (III)Z m_93988_ + 0 o p_93989_ + 1 o p_93990_ + 2 o p_93991_ +epm net/minecraft/client/gui/components/CommonButtons + ()V + a (Lepi$c;)Leqo; m_271983_ + static + 0 o p_273337_ + b (Lepi$c;)Leqo; m_272052_ + static + 0 o p_273354_ +epn net/minecraft/client/gui/components/ComponentRenderUtils + a f_93993_ + ()V + static + ()V + a (Ljava/util/List;Lta;Ljava/lang/Boolean;)V m_94001_ + static + 0 o p_94002_ + 1 o p_94003_ + 2 o p_94004_ + a (Lend;Lts;Ljava/lang/String;)Ljava/util/Optional; m_93995_ + static + 0 o p_93996_ + 1 o p_93997_ + 2 o p_93998_ + a (Lta;ILeov;)Ljava/util/List; m_94005_ + static + 0 o p_94006_ + 1 o p_94007_ + 2 o p_94008_ + a (Ljava/lang/String;)Ljava/lang/String; m_93999_ + static + 0 o p_94000_ +epo net/minecraft/client/gui/components/ContainerObjectSelectionList + (Lenn;IIIII)V + 0 o p_94010_ + 1 o p_94011_ + 2 o p_94012_ + 3 o p_94013_ + 4 o p_94014_ + 5 o p_94015_ + a (Lepo$a;)Z m_264057_ + static + 0 o p_265784_ + a (Lesv;)Leou; m_264064_ + 0 o p_265385_ + a (Leqt;)V m_7522_ + 0 o p_265559_ + b (Lesp;)V m_142291_ + 0 o p_168851_ + e (I)Z m_7987_ + 0 o p_94019_ + q ()Lesn$a; m_142684_ +epo$1 net/minecraft/client/gui/components/ContainerObjectSelectionList$1 + a f_263717_ + ()V + static +epo$a net/minecraft/client/gui/components/ContainerObjectSelectionList$Entry + a f_94020_ + b f_168853_ + c f_94021_ + ()V + a (Lesv;I)Leou; m_264176_ + 0 o p_265435_ + 1 o p_265432_ + a (DDI)Z m_6375_ + 0 o p_265453_ + 1 o p_265297_ + 2 o p_265697_ + a (Lesp;)V m_168854_ + 0 o p_168855_ + a (Lesv;)Leou; m_264064_ + 0 o p_265672_ + a (Leqt;)V m_7522_ + 0 o p_94024_ + aA_ ()Z m_7282_ + aB_ ()Z m_93696_ + a_ (DD)Z m_5953_ + 0 o p_265562_ + 1 o p_265190_ + b ()Ljava/util/List; m_142437_ + b (Leox;IIIIIIIZF)V m_274437_ + 0 o p_282614_ + 1 o p_282177_ + 2 o p_282773_ + 3 o p_282153_ + 4 o p_281485_ + 5 o p_281509_ + 6 o p_281284_ + 7 o p_283319_ + 8 o p_282150_ + 9 o p_282024_ + b_ (Z)V m_93692_ + 0 o p_265750_ + c_ (Z)V m_7897_ + 0 o p_94028_ + t ()Leqt; m_7222_ +epp net/minecraft/client/gui/components/CycleButton + a f_168856_ + b f_168857_ + c f_168858_ + d f_168859_ + e f_168860_ + f f_168861_ + u f_168862_ + v f_168863_ + w f_168864_ + x f_168866_ + y f_168865_ + ()V + static + (IIIILsw;Lsw;ILjava/lang/Object;Lepp$c;Ljava/util/function/Function;Ljava/util/function/Function;Lepp$b;Lenq$l;Z)V + 0 o p_232484_ + 1 o p_232485_ + 2 o p_232486_ + 3 o p_232487_ + 4 o p_232488_ + 5 o p_232489_ + 6 o p_232490_ + 7 o p_232491_ + 8 o p_232492_ + 9 o p_232493_ + 10 o p_232494_ + 11 o p_232495_ + 12 o p_232496_ + 13 o p_232497_ + a (I)V m_168908_ + 0 o p_168909_ + a (Lsw;Lsw;)Lepp$a; m_168896_ + static + 0 o p_168897_ + 1 o p_168898_ + a (Ljava/util/function/Function;)Lepp$a; m_168894_ + static + 0 o p_168895_ + a (Lsw;Lsw;Ljava/lang/Boolean;)Lsw; m_168899_ + static + 0 o p_168900_ + 1 o p_168901_ + 2 o p_168902_ + a (Ljava/lang/Object;)V m_168892_ + 0 o p_168893_ + a (Ljava/lang/Boolean;)Lsw; m_168890_ + static + 0 o p_168891_ + a (DDD)Z m_6050_ + 0 o p_168885_ + 1 o p_168886_ + 2 o p_168887_ + a (Lesp;)V m_168797_ + 0 o p_168889_ + a ()Ljava/lang/Object; m_168883_ + aE_ ()Ltj; m_5646_ + b (Z)Lepp$a; m_168916_ + static + 0 o p_168917_ + b (Ljava/lang/Object;)V m_168905_ + 0 o p_168906_ + b ()Ltj; m_168904_ + c (Ljava/lang/Object;)Lsw; m_168910_ + 0 o p_168911_ + c ()V m_5691_ + d (Ljava/lang/Object;)Ltj; m_168912_ + 0 o p_168913_ + e ()Lepp$a; m_168919_ + static + f ()V m_257795_ + h (I)Ljava/lang/Object; m_168914_ + 0 o p_168915_ +epp$a net/minecraft/client/gui/components/CycleButton$Builder + a f_168920_ + b f_168921_ + c f_168922_ + d f_168923_ + e f_168924_ + f f_168925_ + g f_168926_ + (Ljava/util/function/Function;)V + 0 o p_168928_ + a (Lenq$l;)Lepp$a; m_232498_ + 0 o p_232499_ + a ()Lepp$a; m_168929_ + a (Lepp;Ljava/lang/Object;)V m_168945_ + static + 0 o p_168946_ + 1 o p_168947_ + a (Ljava/util/function/BooleanSupplier;Ljava/util/List;Ljava/util/List;)Lepp$a; m_168955_ + 0 o p_168956_ + 1 o p_168957_ + 2 o p_168958_ + a (Ljava/util/function/Function;)Lepp$a; m_168959_ + 0 o p_168960_ + a (IIIILsw;)Lepp; m_168930_ + 0 o p_168931_ + 1 o p_168932_ + 2 o p_168933_ + 3 o p_168934_ + 4 o p_168935_ + a (Ljava/lang/Object;)Lepp$a; m_168948_ + 0 o p_168949_ + a (Lepp$c;)Lepp$a; m_232500_ + 0 o p_232501_ + a ([Ljava/lang/Object;)Lepp$a; m_168961_ + 0 o p_168962_ + a (Ljava/util/List;Ljava/util/List;)Lepp$a; m_168952_ + 0 o p_168953_ + 1 o p_168954_ + a (IIIILsw;Lepp$b;)Lepp; m_168936_ + 0 o p_168937_ + 1 o p_168938_ + 2 o p_168939_ + 3 o p_168940_ + 4 o p_168941_ + 5 o p_168942_ + a (Ljava/util/Collection;)Lepp$a; m_232502_ + 0 o p_232503_ + b (Ljava/lang/Object;)Leqp; m_257070_ + static + 0 o p_168964_ +epp$b net/minecraft/client/gui/components/CycleButton$OnValueChange + onValueChange (Lepp;Ljava/lang/Object;)V m_168965_ + 0 o p_168966_ + 1 o p_168967_ +epp$c net/minecraft/client/gui/components/CycleButton$ValueListSupplier + a ()Ljava/util/List; m_142477_ + a (Ljava/util/Collection;)Lepp$c; m_232504_ + static + 0 o p_232505_ + a (Ljava/util/function/BooleanSupplier;Ljava/util/List;Ljava/util/List;)Lepp$c; m_168970_ + static + 0 o p_168971_ + 1 o p_168972_ + 2 o p_168973_ + b ()Ljava/util/List; m_142478_ +epp$c$1 net/minecraft/client/gui/components/CycleButton$ValueListSupplier$1 + a f_168974_ + (Ljava/util/List;)V + 0 o p_168976_ + a ()Ljava/util/List; m_142477_ + b ()Ljava/util/List; m_142478_ +epp$c$2 net/minecraft/client/gui/components/CycleButton$ValueListSupplier$2 + a f_168979_ + b f_168980_ + c f_168981_ + (Ljava/util/function/BooleanSupplier;Ljava/util/List;Ljava/util/List;)V + 0 o p_168983_ + 1 o p_168984_ + 2 o p_168985_ + a ()Ljava/util/List; m_142477_ + b ()Ljava/util/List; m_142478_ +epq net/minecraft/client/gui/components/DebugScreenOverlay + a f_168988_ + b f_168989_ + c f_168990_ + d f_168991_ + e f_94029_ + f f_94030_ + g f_232506_ + h f_94031_ + i f_94032_ + j f_94033_ + k f_94034_ + l f_94035_ + m f_94036_ + n f_168992_ + o f_168993_ + p f_168994_ + ()V + static + (Lenn;)V + 0 o p_94039_ + a (Lfyp;)Ljava/util/Optional; m_287797_ + 0 o p_288242_ + a (Leox;Laoo;IIZ)V m_280604_ + 0 o p_282273_ + 1 o p_281838_ + 2 o p_283392_ + 3 o p_282726_ + 4 o p_282824_ + a (Lddx;)Ldei; m_205370_ + static + 0 o p_205371_ + a ()V m_94040_ + a (Lhe;)Ljava/lang/String; m_205374_ + static + 0 o p_205375_ + a (Lacp;)Ljava/lang/String; m_205376_ + static + 0 o p_205377_ + a (Leox;)V m_94056_ + 0 o p_281427_ + a (IIII)I m_94045_ + 0 o p_94046_ + 1 o p_94047_ + 2 o p_94048_ + 3 o p_94049_ + a (Ljava/util/EnumMap;)V m_94069_ + static + 0 o p_94070_ + a (Lanl;)Ljava/lang/String; m_205378_ + static + 0 o p_205379_ + a (Lcnk;)Ljava/lang/String; m_205366_ + static + 0 o p_205367_ + a (Lit/unimi/dsi/fastutil/objects/Object2IntMap;Lbgc;)Ljava/lang/String; m_94066_ + static + 0 o p_94067_ + 1 o p_94068_ + a (J)J m_94050_ + static + 0 o p_94051_ + a (Lahp$a;)Ldei; m_205362_ + static + 0 o p_205363_ + a (Leox;Ljava/util/List;Z)V m_286013_ + 0 o p_286519_ + 1 o p_286665_ + 2 o p_286644_ + a (Lcom/mojang/datafixers/util/Either;)Ldei; m_205368_ + static + 0 o p_205369_ + a (IIF)I m_94041_ + 0 o p_94042_ + 1 o p_94043_ + 2 o p_94044_ + a (Ljava/util/Map$Entry;)Ljava/lang/String; m_94071_ + 0 o p_94072_ + b (Leox;)V m_280186_ + 0 o p_281525_ + b ()Ljava/util/List; m_94075_ + b (Lanl;)Ljava/lang/String; m_205364_ + static + 0 o p_205365_ + c (Leox;)V m_280532_ + 0 o p_281261_ + c ()Ljava/util/List; m_94078_ + d ()Laif; m_94081_ + d (Leox;)V m_285668_ + 0 o p_286121_ + e ()Ljava/lang/String; m_94082_ + f ()Lcmm; m_94083_ + g ()Ldei; m_94084_ + h ()Ldei; m_94085_ +epq$1 net/minecraft/client/gui/components/DebugScreenOverlay$1 + a f_94086_ + ()V + static +epq$a net/minecraft/client/gui/components/DebugScreenOverlay$AllocationRateCalculator + a f_232507_ + b f_232508_ + c f_232509_ + d f_232510_ + e f_232511_ + f f_232512_ + ()V + static + ()V + a ()J m_232515_ + static + a (J)J m_232516_ + 0 o p_232517_ +epr net/minecraft/client/gui/components/EditBox + A f_94101_ + C f_94102_ + D f_94103_ + E f_94104_ + F f_94088_ + G f_94089_ + H f_94090_ + I f_94091_ + J f_256828_ + a f_168999_ + b f_169000_ + c f_169001_ + d f_169002_ + e f_169003_ + f f_169004_ + g f_169005_ + h f_169006_ + i f_169007_ + j f_94092_ + k f_94093_ + l f_94094_ + u f_94095_ + v f_94096_ + w f_94097_ + x f_94098_ + y f_94099_ + z f_94100_ + (Leov;IIIILepr;Lsw;)V + 0 o p_94106_ + 1 o p_94107_ + 2 o p_94108_ + 3 o p_94109_ + 4 o p_94110_ + 5 o p_94111_ + 6 o p_94112_ + (Leov;IIIILsw;)V + 0 o p_94114_ + 1 o p_94115_ + 2 o p_94116_ + 3 o p_94117_ + 4 o p_94118_ + 5 o p_94119_ + A ()Z m_94222_ + a (III)Z m_7933_ + 0 o p_94132_ + 1 o p_94133_ + 2 o p_94134_ + a (II)I m_94128_ + 0 o p_94129_ + 1 o p_94130_ + a (Lfzc;)V m_7435_ + 0 o p_279245_ + a (Ljava/lang/String;)V m_94144_ + 0 o p_94145_ + a (Ljava/util/function/BiFunction;)V m_94149_ + 0 o p_94150_ + a (CI)Z m_5534_ + 0 o p_94122_ + 1 o p_94123_ + a (Lesp;)V m_168797_ + 0 o p_259237_ + a (IIZ)I m_94140_ + 0 o p_94141_ + 1 o p_94142_ + 2 o p_94143_ + a ()V m_94120_ + a (I)V m_94176_ + 0 o p_94177_ + a (DD)V m_5716_ + 0 o p_279417_ + 1 o p_279437_ + a (Ljava/lang/String;Ljava/lang/Integer;)Laom; m_94146_ + static + 0 o p_94147_ + 1 o p_94148_ + a (Leox;IIII)V m_264315_ + 0 o p_281400_ + 1 o p_265338_ + 2 o p_265693_ + 3 o p_265618_ + 4 o p_265584_ + a (Lesv;)Leou; m_264064_ + 0 o p_265216_ + a (Ljava/util/function/Predicate;)V m_94153_ + 0 o p_94154_ + aE_ ()Ltj; m_5646_ + a_ (DD)Z m_5953_ + 0 o p_94157_ + 1 o p_94158_ + b (Leox;IIF)V m_87963_ + 0 o p_283252_ + 1 o p_281594_ + 2 o p_282100_ + 3 o p_283101_ + b (Z)V m_94182_ + 0 o p_94183_ + b (Ljava/util/function/Consumer;)V m_94151_ + 0 o p_94152_ + b (Ljava/lang/String;)V m_94164_ + 0 o p_94165_ + b ()Ljava/lang/String; m_94155_ + b_ (Z)V m_93692_ + 0 o p_265520_ + c (Lsw;)V m_257771_ + 0 o p_259584_ + c (Z)V m_94186_ + 0 o p_94187_ + c (Ljava/lang/String;)V m_94167_ + 0 o p_94168_ + d (Ljava/lang/String;)V m_94174_ + 0 o p_94175_ + d (Z)V m_94190_ + 0 o p_94191_ + e ()Ljava/lang/String; m_94173_ + e (Z)V m_94194_ + 0 o p_94195_ + f ()V m_94198_ + g ()V m_94201_ + h (I)V m_94180_ + 0 o p_94181_ + i (I)I m_94184_ + 0 o p_94185_ + j (I)V m_94188_ + 0 o p_94189_ + k (I)V m_94192_ + 0 o p_94193_ + l (I)V m_94196_ + 0 o p_94197_ + m (I)V m_94199_ + 0 o p_94200_ + n (I)V m_94202_ + 0 o p_94203_ + o (I)V m_94205_ + 0 o p_94206_ + p (I)V m_94208_ + 0 o p_94209_ + q (I)I m_94211_ + 0 o p_94212_ + r (I)V m_94217_ + 0 o p_94218_ + s (I)I m_94220_ + 0 o p_94221_ + u ()Z m_94204_ + v ()I m_94207_ + w ()I m_94210_ + x ()Z m_94213_ + y ()I m_94216_ + z ()Z m_94219_ +eps net/minecraft/client/gui/components/FittingMultiLineTextWidget + a f_289701_ + b f_289706_ + (IIIILsw;Leov;)V + 0 o p_289785_ + 1 o p_289777_ + 2 o p_289760_ + 3 o p_289801_ + 4 o p_289788_ + 5 o p_289781_ + a (I)Leps; m_289737_ + 0 o p_289780_ + a (Lesp;)V m_168797_ + 0 o p_289784_ + b (Leox;)V m_240048_ + 0 o p_289758_ + b (Leox;IIF)V m_87963_ + 0 o p_289802_ + 1 o p_289778_ + 2 o p_289798_ + 3 o p_289804_ + c (Leox;IIF)V m_239197_ + 0 o p_289766_ + 1 o p_289790_ + 2 o p_289786_ + 3 o p_289767_ + d (I)V m_93674_ + 0 o p_289765_ + f ()I m_239019_ + g ()D m_239725_ +ept net/minecraft/client/gui/components/ImageButton + A f_94228_ + b f_94223_ + c f_94224_ + d f_94225_ + e f_94226_ + f f_94227_ + (IIIIIIILacq;IILepi$c;)V + 0 o p_94230_ + 1 o p_94231_ + 2 o p_94232_ + 3 o p_94233_ + 4 o p_94234_ + 5 o p_94235_ + 6 o p_94236_ + 7 o p_94237_ + 8 o p_94238_ + 9 o p_94239_ + 10 o p_94240_ + (IIIIIIILacq;Lepi$c;)V + 0 o p_94269_ + 1 o p_94270_ + 2 o p_94271_ + 3 o p_94272_ + 4 o p_94273_ + 5 o p_94274_ + 6 o p_94275_ + 7 o p_94276_ + 8 o p_94277_ + (IIIIIIILacq;IILepi$c;Lsw;)V + 0 o p_94256_ + 1 o p_94257_ + 2 o p_94258_ + 3 o p_94259_ + 4 o p_94260_ + 5 o p_94261_ + 6 o p_94262_ + 7 o p_94263_ + 8 o p_94264_ + 9 o p_94265_ + 10 o p_94266_ + 11 o p_94267_ + (IIIIIILacq;Lepi$c;)V + 0 o p_169011_ + 1 o p_169012_ + 2 o p_169013_ + 3 o p_169014_ + 4 o p_169015_ + 5 o p_169016_ + 6 o p_169017_ + 7 o p_169018_ + b (Leox;IIF)V m_87963_ + 0 o p_283502_ + 1 o p_281473_ + 2 o p_283021_ + 3 o p_282518_ +epu net/minecraft/client/gui/components/ImageWidget + a f_273859_ + (IIIILacq;)V + 0 o p_275421_ + 1 o p_275294_ + 2 o p_275403_ + 3 o p_275631_ + 4 o p_275648_ + (IILacq;)V + 0 o p_275550_ + 1 o p_275723_ + 2 o p_275649_ + a (Lesp;)V m_168797_ + 0 o p_275454_ + b (Leox;IIF)V m_87963_ + 0 o p_283475_ + 1 o p_281265_ + 2 o p_281555_ + 3 o p_282690_ +epv net/minecraft/client/gui/components/LerpingBossEvent + h f_94286_ + i f_94287_ + j f_169019_ + (Ljava/util/UUID;Lsw;FLbdn$a;Lbdn$b;ZZZ)V + 0 o p_169021_ + 1 o p_169022_ + 2 o p_169023_ + 3 o p_169024_ + 4 o p_169025_ + 5 o p_169026_ + 6 o p_169027_ + 7 o p_169028_ + a (F)V m_142711_ + 0 o p_169030_ + k ()F m_142717_ +epw net/minecraft/client/gui/components/LockIconButton + a f_94297_ + (IILepi$c;)V + 0 o p_94299_ + 1 o p_94300_ + 2 o p_94301_ + a ()Z m_94302_ + aE_ ()Ltj; m_5646_ + b (Z)V m_94309_ + 0 o p_94310_ + b (Leox;IIF)V m_87963_ + 0 o p_282701_ + 1 o p_282638_ + 2 o p_283565_ + 3 o p_282549_ +epw$a net/minecraft/client/gui/components/LockIconButton$Icon + a LOCKED + b LOCKED_HOVER + c LOCKED_DISABLED + d UNLOCKED + e UNLOCKED_HOVER + f UNLOCKED_DISABLED + g f_94317_ + h f_94318_ + i $VALUES + ()V + static + (Ljava/lang/String;III)V + 0 o p_94322_ + 1 o p_94323_ + 2 o p_94324_ + 3 o p_94325_ + a ()I m_94326_ + b ()I m_94327_ + c ()[Lepw$a; m_169032_ + static + valueOf (Ljava/lang/String;)Lepw$a; valueOf + static + 0 o p_94329_ + values ()[Lepw$a; values + static +epx net/minecraft/client/gui/components/LogoRenderer + a f_263712_ + b f_278419_ + c f_263806_ + d f_263835_ + e f_263775_ + f f_263676_ + g f_278428_ + h f_278414_ + i f_278429_ + j f_278399_ + k f_278377_ + l f_278401_ + m f_278513_ + n f_263665_ + o f_263708_ + ()V + static + (Z)V + 0 o p_265300_ + a (Leox;IFI)V m_280118_ + 0 o p_281856_ + 1 o p_281512_ + 2 o p_281290_ + 3 o p_282296_ + a (Leox;IF)V m_280037_ + 0 o p_282217_ + 1 o p_283270_ + 2 o p_282051_ +epy net/minecraft/client/gui/components/MultiLineEditBox + a f_238826_ + b f_238688_ + c f_238647_ + d f_238712_ + e f_238758_ + f f_238790_ + g f_238653_ + h f_238540_ + i f_238824_ + (Leov;IIIILsw;Lsw;)V + 0 o p_239008_ + 1 o p_239009_ + 2 o p_239010_ + 3 o p_239011_ + 4 o p_239012_ + 5 o p_239013_ + 6 o p_239014_ + a (Ljava/lang/String;)V m_240159_ + 0 o p_240160_ + a (DDIDD)Z m_7979_ + 0 o p_238978_ + 1 o p_238979_ + 2 o p_238980_ + 3 o p_238981_ + 4 o p_238982_ + a (I)V m_239313_ + 0 o p_239314_ + a (CI)Z m_5534_ + 0 o p_239387_ + 1 o p_239388_ + a (DDI)Z m_6375_ + 0 o p_239101_ + 1 o p_239102_ + 2 o p_239103_ + a (Lesp;)V m_168797_ + 0 o p_259393_ + a (III)Z m_7933_ + 0 o p_239433_ + 1 o p_239434_ + 2 o p_239435_ + a (Leox;)V m_239516_ + 0 o p_282551_ + b (Leox;IIII)V m_280065_ + 0 o p_282092_ + 1 o p_282814_ + 2 o p_282908_ + 3 o p_281451_ + 4 o p_281765_ + b (Ljava/util/function/Consumer;)V m_239273_ + 0 o p_239274_ + c (Leox;IIF)V m_239197_ + 0 o p_283676_ + 1 o p_281538_ + 2 o p_283033_ + 3 o p_281767_ + e ()Z m_239656_ + f ()I m_239019_ + f (DD)V m_239275_ + 0 o p_239276_ + 1 o p_239277_ + g ()D m_239725_ + u ()Ljava/lang/String; m_239249_ + v ()V m_239213_ + w ()V m_239911_ + x ()D m_239745_ +epz net/minecraft/client/gui/components/MultiLineLabel + a f_94331_ + ()V + static + a (Leov;Ljava/util/List;)Lepz; m_169036_ + static + 0 o p_169037_ + 1 o p_169038_ + a (Leov;Lta;II)Lepz; m_94345_ + static + 0 o p_94346_ + 1 o p_94347_ + 2 o p_94348_ + 3 o p_94349_ + a ()I m_5770_ + a (Leov;Lta;I)Lepz; m_94341_ + static + 0 o p_94342_ + 1 o p_94343_ + 2 o p_94344_ + a (Leox;IIIII)V m_207298_ + 0 o p_282120_ + 1 o p_210818_ + 2 o p_210819_ + 3 o p_210820_ + 4 o p_210821_ + 5 o p_210822_ + a (Leox;II)I m_6276_ + 0 o p_281749_ + 1 o p_94334_ + 2 o p_94335_ + a (Leov;Laom;)Lepz$a; m_169033_ + static + 0 o p_169034_ + 1 o p_169035_ + a (Leox;IIII)I m_6514_ + 0 o p_281785_ + 1 o p_94337_ + 2 o p_94338_ + 3 o p_94339_ + 4 o p_94340_ + a (Leov;[Lsw;)Lepz; m_94350_ + static + 0 o p_94351_ + 1 o p_94352_ + b ()I m_214161_ + b (Leov;Laom;)Lepz$a; m_94358_ + static + 0 o p_94359_ + 1 o p_94360_ + b (Leov;Ljava/util/List;)Lepz; m_94361_ + static + 0 o p_94362_ + 1 o p_94363_ + b (Leox;IIII)I m_6508_ + 0 o p_282655_ + 1 o p_94365_ + 2 o p_94366_ + 3 o p_94367_ + 4 o p_94368_ + c (Leov;Laom;)Lepz$a; m_94369_ + static + 0 o p_94370_ + 1 o p_94371_ + c (Leox;IIII)I m_6516_ + 0 o p_281982_ + 1 o p_94354_ + 2 o p_94355_ + 3 o p_94356_ + 4 o p_94357_ + d (Leov;Laom;)Lepz$a; m_94372_ + static + 0 o p_94373_ + 1 o p_94374_ +epz$1 net/minecraft/client/gui/components/MultiLineLabel$1 + ()V + a (Leox;II)I m_6276_ + 0 o p_283287_ + 1 o p_94383_ + 2 o p_94384_ + a (Leox;IIII)I m_6514_ + 0 o p_283384_ + 1 o p_94395_ + 2 o p_94396_ + 3 o p_94397_ + 4 o p_94398_ + a ()I m_5770_ + a (Leox;IIIII)V m_207298_ + 0 o p_283208_ + 1 o p_210825_ + 2 o p_210826_ + 3 o p_210827_ + 4 o p_210828_ + 5 o p_210829_ + b (Leox;IIII)I m_6508_ + 0 o p_283077_ + 1 o p_94379_ + 2 o p_94380_ + 3 o p_282157_ + 4 o p_282742_ + b ()I m_214161_ + c (Leox;IIII)I m_6516_ + 0 o p_283645_ + 1 o p_94389_ + 2 o p_94390_ + 3 o p_94391_ + 4 o p_94392_ +epz$2 net/minecraft/client/gui/components/MultiLineLabel$2 + b f_94400_ + c f_94399_ + d f_232519_ + (Ljava/util/List;Leov;)V + 0 o p_232521_ + 1 o p_232522_ + a (Leox;II)I m_6276_ + 0 o p_283492_ + 1 o p_283184_ + 2 o p_282078_ + a (Leox;IIII)I m_6514_ + 0 o p_281603_ + 1 o p_281267_ + 2 o p_281819_ + 3 o p_281545_ + 4 o p_282780_ + a ()I m_5770_ + a (Lepz$a;)I m_232523_ + static + 0 o p_232524_ + a (Leox;IIIII)V m_207298_ + 0 o p_281633_ + 1 o p_210832_ + 2 o p_210833_ + 3 o p_210834_ + 4 o p_210835_ + 5 o p_210836_ + b (Leox;IIII)I m_6508_ + 0 o p_282318_ + 1 o p_283665_ + 2 o p_283416_ + 3 o p_281919_ + 4 o p_281686_ + b (Lepz$a;)I m_232526_ + static + 0 o p_232527_ + b ()I m_214161_ + c (Leox;IIII)I m_6516_ + 0 o p_281782_ + 1 o p_282841_ + 2 o p_283554_ + 3 o p_282768_ + 4 o p_283499_ +epz$a net/minecraft/client/gui/components/MultiLineLabel$TextWithWidth + a f_94427_ + b f_94428_ + (Laom;I)V + 0 o p_94430_ + 1 o p_94431_ +eq net/minecraft/commands/arguments/ResourceLocationArgument + a f_106977_ + b f_106978_ + c f_106979_ + d f_106980_ + e f_171024_ + ()V + static + ()V + a ()Leq; m_106984_ + static + a (Lacq;)Lcom/mojang/brigadier/exceptions/CommandSyntaxException; m_212420_ + static + 0 o p_212421_ + a (Ljava/lang/Object;)Lcom/mojang/brigadier/Message; m_106990_ + static + 0 o p_106991_ + a (Lcom/mojang/brigadier/context/CommandContext;Ljava/lang/String;)Lae; m_106987_ + static + 0 o p_106988_ + 1 o p_106989_ + a (Lcom/mojang/brigadier/StringReader;)Lacq; parse + 0 o p_106986_ + b (Lcom/mojang/brigadier/context/CommandContext;Ljava/lang/String;)Lcjc; m_106994_ + static + 0 o p_106995_ + 1 o p_106996_ + b (Ljava/lang/Object;)Lcom/mojang/brigadier/Message; m_106997_ + static + 0 o p_106998_ + c (Lcom/mojang/brigadier/context/CommandContext;Ljava/lang/String;)Leck; m_107001_ + static + 0 o p_107002_ + 1 o p_107003_ + c (Ljava/lang/Object;)Lcom/mojang/brigadier/Message; m_107004_ + static + 0 o p_107005_ + d (Lcom/mojang/brigadier/context/CommandContext;Ljava/lang/String;)Leaz; m_171031_ + static + 0 o p_171032_ + 1 o p_171033_ + d (Ljava/lang/Object;)Lcom/mojang/brigadier/Message; m_107009_ + static + 0 o p_107010_ + e (Lcom/mojang/brigadier/context/CommandContext;Ljava/lang/String;)Lacq; m_107011_ + static + 0 o p_107012_ + 1 o p_107013_ + getExamples ()Ljava/util/Collection; getExamples + parse (Lcom/mojang/brigadier/StringReader;)Ljava/lang/Object; parse + 0 o p_107016_ +eqa net/minecraft/client/gui/components/MultiLineTextWidget + a f_268685_ + b f_268603_ + c f_268539_ + d f_260670_ + (Lsw;Leov;)V + 0 o p_270532_ + 1 o p_270639_ + (IILsw;Leov;)V + 0 o p_270325_ + 1 o p_270355_ + 2 o p_270069_ + 3 o p_270673_ + a (Leov;Leqa$a;)Lepz; m_269442_ + static + 0 o p_270321_ + 1 o p_270516_ + a (I)Lepe; m_269033_ + 0 o p_270651_ + b (Z)Leqa; m_269484_ + 0 o p_270493_ + b (Leox;IIF)V m_87963_ + 0 o p_282535_ + 1 o p_261774_ + 2 o p_261640_ + 3 o p_261514_ + e ()Leqa$a; m_269393_ + h (I)Leqa; m_269033_ + 0 o p_270378_ + h ()I m_93694_ + i (I)Leqa; m_269098_ + 0 o p_270776_ + j (I)Leqa; m_269328_ + 0 o p_270085_ + k ()I m_5711_ +eqa$a net/minecraft/client/gui/components/MultiLineTextWidget$CacheKey + a f_268701_ + b f_268646_ + c f_268550_ + (Lsw;ILjava/util/OptionalInt;)V + 0 o f_268701_ + 1 o f_268646_ + 2 o f_268550_ + a ()Lsw; f_268701_ + b ()I f_268646_ + c ()Ljava/util/OptionalInt; f_268550_ + equals (Ljava/lang/Object;)Z equals + 0 o p_270650_ + hashCode ()I hashCode + toString ()Ljava/lang/String; toString +eqb net/minecraft/client/gui/components/MultilineTextField + a f_238667_ + b f_238620_ + c f_238538_ + d f_238722_ + e f_238645_ + f f_238566_ + g f_238550_ + h f_238557_ + i f_238569_ + j f_238603_ + k f_238527_ + l f_238625_ + (Leov;I)V + 0 o p_239611_ + 1 o p_239612_ + a (Leqq;I)V m_239797_ + 0 o p_239798_ + 1 o p_239799_ + a (Ljava/lang/String;)V m_239677_ + 0 o p_239678_ + a (Z)V m_239950_ + 0 o p_239951_ + a ()I m_239390_ + a (Ljava/lang/Runnable;)V m_239257_ + 0 o p_239258_ + a (Ljava/util/function/Consumer;)V m_239919_ + 0 o p_239920_ + a (I)V m_240162_ + 0 o p_240163_ + a (DD)V m_239578_ + 0 o p_239579_ + 1 o p_239580_ + a (Lts;II)V m_239845_ + 0 o p_239846_ + 1 o p_239847_ + 2 o p_239848_ + b (Ljava/lang/String;)V m_240015_ + 0 o p_240016_ + b (I)V m_239474_ + 0 o p_239475_ + b ()Z m_239629_ + c ()Ljava/lang/String; m_239618_ + c (Ljava/lang/String;)Ljava/lang/String; m_239842_ + 0 o p_239843_ + c (I)Leqb$a; m_239144_ + 0 o p_239145_ + d (I)V m_239393_ + 0 o p_239394_ + d ()I m_239456_ + d (Ljava/lang/String;)Ljava/lang/String; m_239417_ + 0 o p_239418_ + e ()Leqb$a; m_239982_ + e (Ljava/lang/String;)V m_239234_ + static + 0 o p_239235_ + e (I)Z m_239711_ + 0 o p_239712_ + f ()I m_239340_ + f (I)Leqb$a; m_239854_ + 0 o p_239855_ + g ()I m_239268_ + g (I)I m_240092_ + 0 o p_240093_ + h ()Ljava/lang/Iterable; m_239290_ + i ()Z m_239344_ + j ()Ljava/lang/String; m_240059_ + k ()Leqb$a; m_239637_ + l ()Leqb$a; m_239361_ + m ()Leqb$a; m_240043_ + n ()V m_239743_ + o ()V m_239915_ + p ()V m_239744_ + static +eqb$1 net/minecraft/client/gui/components/MultilineTextField$1 + a f_238786_ + ()V + static +eqb$a net/minecraft/client/gui/components/MultilineTextField$StringView + a f_238590_ + b f_238654_ + c f_238547_ + ()V + static + (II)V + 0 o f_238590_ + 1 o f_238654_ + a ()I f_238590_ + b ()I f_238654_ + equals (Ljava/lang/Object;)Z equals + 0 o p_239694_ + hashCode ()I hashCode + toString ()Ljava/lang/String; toString +eqc net/minecraft/client/gui/components/ObjectSelectionList + a f_169039_ + ()V + static + (Lenn;IIIII)V + 0 o p_94442_ + 1 o p_94443_ + 2 o p_94444_ + 3 o p_94445_ + 4 o p_94446_ + 5 o p_94447_ + a (Lesv;)Leou; m_264064_ + 0 o p_265150_ + b (Lesp;)V m_142291_ + 0 o p_169042_ +eqc$a net/minecraft/client/gui/components/ObjectSelectionList$Entry + ()V + a ()Lsw; m_142172_ + aB_ ()Z m_93696_ + a_ (DD)Z m_5953_ + 0 o p_265279_ + 1 o p_265781_ + b (Lesp;)V m_142291_ + 0 o p_169044_ + b (Leox;IIIIIIIZF)V m_274437_ + 0 o p_282970_ + 1 o p_283544_ + 2 o p_281356_ + 3 o p_281461_ + 4 o p_281718_ + 5 o p_281894_ + 6 o p_281499_ + 7 o p_282926_ + 8 o p_283280_ + 9 o p_283117_ + b_ (Z)V m_93692_ + 0 o p_265144_ +eqd net/minecraft/client/gui/components/OptionsList + (Lenn;IIIII)V + 0 o p_94465_ + 1 o p_94466_ + 2 o p_94467_ + 3 o p_94468_ + 4 o p_94469_ + 5 o p_94470_ + a (Lenq;)I m_232528_ + 0 o p_232529_ + a (Lenq;Lenq;)V m_232530_ + 0 o p_232531_ + 1 o p_232532_ + a ([Lenq;)V m_232533_ + 0 o p_232534_ + b (Lenq;)Lepf; m_232535_ + 0 o p_232536_ + b ()I m_5759_ + c (DD)Ljava/util/Optional; m_94480_ + 0 o p_94481_ + 1 o p_94482_ + c ()I m_5756_ +eqd$a net/minecraft/client/gui/components/OptionsList$Entry + a f_169045_ + b f_94485_ + (Ljava/util/Map;)V + 0 o p_169047_ + a (ILeox;IIFLepf;)V m_279743_ + static + 0 o p_280771_ + 1 o p_280772_ + 2 o p_280773_ + 3 o p_280774_ + 4 o p_280775_ + 5 o p_280776_ + a (Lenr;ILenq;)Leqd$a; m_232537_ + static + 0 o p_232538_ + 1 o p_232539_ + 2 o p_232540_ + a (Lenr;ILenq;Lenq;)Leqd$a; m_232541_ + static + 0 o p_232542_ + 1 o p_232543_ + 2 o p_232544_ + 3 o p_232545_ + a (Leox;IIIIIIIZF)V m_6311_ + 0 o p_281311_ + 1 o p_94497_ + 2 o p_94498_ + 3 o p_94499_ + 4 o p_94500_ + 5 o p_94501_ + 6 o p_94502_ + 7 o p_94503_ + 8 o p_94504_ + 9 o p_94505_ + b ()Ljava/util/List; m_142437_ + i ()Ljava/util/List; m_6702_ +eqe net/minecraft/client/gui/components/PlainTextButton + a f_211751_ + b f_211752_ + c f_211753_ + (IIIILsw;Lepi$c;Leov;)V + 0 o p_211755_ + 1 o p_211756_ + 2 o p_211757_ + 3 o p_211758_ + 4 o p_211759_ + 5 o p_211760_ + 6 o p_211761_ + b (Leox;IIF)V m_87963_ + 0 o p_283309_ + 1 o p_282710_ + 2 o p_282486_ + 3 o p_281727_ +eqf net/minecraft/client/gui/components/PlayerFaceRenderer + a f_238683_ + b f_238628_ + c f_238605_ + d f_238606_ + e f_238559_ + f f_238759_ + g f_238692_ + h f_238562_ + i f_238699_ + j f_238780_ + ()V + a (Leox;Lacq;IIIZ)V m_280078_ + static + 0 o p_282228_ + 1 o p_282835_ + 2 o p_282585_ + 3 o p_282234_ + 4 o p_282576_ + 5 o p_281523_ + a (Leox;Lacq;III)V m_280354_ + static + 0 o p_281827_ + 1 o p_281637_ + 2 o p_282126_ + 3 o p_281693_ + 4 o p_281565_ + a (Leox;Lacq;IIIZZ)V m_280029_ + static + 0 o p_283244_ + 1 o p_281495_ + 2 o p_282035_ + 3 o p_282441_ + 4 o p_281801_ + 5 o p_283149_ + 6 o p_283555_ +eqg net/minecraft/client/gui/components/PlayerTabOverlay + a f_169049_ + b f_169050_ + c f_169051_ + d f_169052_ + e f_169053_ + f f_169054_ + g f_169055_ + h f_169056_ + i f_169057_ + j f_243768_ + k f_279565_ + l f_94519_ + m f_94520_ + n f_94521_ + o f_94522_ + p f_94524_ + q f_244278_ + ()V + static + (Lenn;Leow;)V + 0 o p_94527_ + 1 o p_94528_ + a (Lffb;Ltj;)Lsw; m_94551_ + 0 o p_94552_ + 1 o p_94553_ + a (Ljava/util/Set;Ljava/util/UUID;)Z m_246165_ + static + 0 o p_249360_ + 1 o p_248583_ + a (Leox;ILefg;Lefd;)V m_280406_ + 0 o p_281484_ + 1 o p_283602_ + 2 o p_282338_ + 3 o p_282369_ + a (Leox;IIILffb;)V m_280020_ + 0 o p_283286_ + 1 o p_281809_ + 2 o p_282801_ + 3 o p_282223_ + 4 o p_282986_ + a (Z)V m_94556_ + 0 o p_94557_ + a (IIILjava/util/UUID;Leox;I)V m_280237_ + 0 o p_282904_ + 1 o p_283173_ + 2 o p_282149_ + 3 o p_283348_ + 4 o p_281723_ + 5 o p_281354_ + a (Lefd;ILjava/lang/String;IILjava/util/UUID;Leox;)V m_280582_ + 0 o p_283381_ + 1 o p_282557_ + 2 o p_283058_ + 3 o p_283533_ + 4 o p_281254_ + 5 o p_283099_ + 6 o p_282280_ + a (Lsw;)V m_94554_ + 0 o p_94555_ + a ()V m_94529_ + a (Lffb;)Lsw; m_94549_ + 0 o p_94550_ + a (ILjava/util/UUID;)Leqg$a; m_246766_ + static + 0 o p_251546_ + 1 o p_249546_ + b ()Ljava/util/List; m_264246_ + b (Lsw;)V m_94558_ + 0 o p_94559_ + b (Lffb;)Ljava/util/UUID; m_245935_ + static + 0 o p_250472_ + c (Lffb;)Ljava/lang/String; m_252560_ + static + 0 o p_253305_ + d (Lffb;)Ljava/lang/String; m_268767_ + static + 0 o p_269613_ + e (Lffb;)I m_252561_ + static + 0 o p_253306_ +eqg$a net/minecraft/client/gui/components/PlayerTabOverlay$HealthState + a f_244325_ + b f_244222_ + c f_243756_ + d f_243946_ + e f_244019_ + f f_243817_ + g f_244517_ + (I)V + 0 o p_250562_ + a (IJ)V m_245265_ + 0 o p_251066_ + 1 o p_251460_ + a ()I m_247739_ + a (J)Z m_246447_ + 0 o p_251847_ +eqh net/minecraft/client/gui/components/Renderable + a (Leox;IIF)V m_88315_ + 0 o p_281245_ + 1 o p_253973_ + 2 o p_254325_ + 3 o p_254004_ +eqi net/minecraft/client/gui/components/SplashRenderer + a f_279554_ + b f_279542_ + c f_279574_ + d f_279585_ + e f_279658_ + f f_279597_ + ()V + static + (Ljava/lang/String;)V + 0 o p_283500_ + a (Leox;ILeov;I)V m_280672_ + 0 o p_282218_ + 1 o p_281824_ + 2 o p_281962_ + 3 o p_282586_ +eqj net/minecraft/client/gui/components/StateSwitchingButton + a f_94608_ + b f_94609_ + c f_94610_ + d f_94611_ + e f_94612_ + f f_94613_ + (IIIIZ)V + 0 o p_94615_ + 1 o p_94616_ + 2 o p_94617_ + 3 o p_94618_ + 4 o p_94619_ + a (IIIILacq;)V m_94624_ + 0 o p_94625_ + 1 o p_94626_ + 2 o p_94627_ + 3 o p_94628_ + 4 o p_94629_ + a (Lesp;)V m_168797_ + 0 o p_259073_ + a ()Z m_94620_ + b (Z)V m_94635_ + 0 o p_94636_ + b (Leox;IIF)V m_87963_ + 0 o p_283051_ + 1 o p_283010_ + 2 o p_281379_ + 3 o p_283453_ +eqk net/minecraft/client/gui/components/StringWidget + a f_267370_ + (Lsw;Leov;)V + 0 o p_268211_ + 1 o p_267963_ + (IILsw;Leov;)V + 0 o p_268183_ + 1 o p_268082_ + 2 o p_268069_ + 3 o p_268121_ + (IIIILsw;Leov;)V + 0 o p_268199_ + 1 o p_268137_ + 2 o p_268178_ + 3 o p_268169_ + 4 o p_268285_ + 5 o p_268047_ + a (I)Lepe; m_269033_ + 0 o p_270909_ + b (F)Leqk; m_267568_ + 0 o p_267947_ + b (Leox;IIF)V m_87963_ + 0 o p_281367_ + 1 o p_268221_ + 2 o p_268001_ + 3 o p_268214_ + e ()Leqk; m_267769_ + f ()Leqk; m_267729_ + g ()Leqk; m_267574_ + h (I)Leqk; m_269033_ + 0 o p_270680_ +eql net/minecraft/client/gui/components/SubtitleOverlay + a f_169070_ + b f_94637_ + c f_94638_ + d f_94639_ + (Lenn;)V + 0 o p_94641_ + a (Leox;)V m_280227_ + 0 o p_282562_ + a (Lfxy;Lfzd;)V m_6985_ + 0 o p_94645_ + 1 o p_94646_ +eql$a net/minecraft/client/gui/components/SubtitleOverlay$Subtitle + a f_94648_ + b f_94649_ + c f_94650_ + (Lsw;Leei;)V + 0 o p_169072_ + 1 o p_169073_ + a (Leei;)V m_94656_ + 0 o p_94657_ + a ()Lsw; m_94655_ + b ()J m_94658_ + c ()Leei; m_94659_ +eqm net/minecraft/client/gui/components/TabButton + a f_273920_ + b f_273933_ + c f_273828_ + d f_273883_ + e f_273822_ + f f_273861_ + g f_273873_ + h f_273895_ + i f_273921_ + j f_273844_ + k f_273884_ + l f_273837_ + ()V + static + (Lera;Leqz;II)V + 0 o p_275399_ + 1 o p_275391_ + 2 o p_275340_ + 3 o p_275364_ + a (Lesp;)V m_168797_ + 0 o p_275465_ + a (Lfzc;)V m_7435_ + 0 o p_276302_ + a (Leox;Leov;I)V m_274488_ + 0 o p_282917_ + 1 o p_275208_ + 2 o p_275293_ + a ()I m_274514_ + b ()Leqz; m_274356_ + b (Leox;IIF)V m_87963_ + 0 o p_283350_ + 1 o p_283437_ + 2 o p_281595_ + 3 o p_282117_ + b (Leox;Leov;I)V m_274365_ + 0 o p_282383_ + 1 o p_275475_ + 2 o p_275367_ + e ()Z m_274319_ +eqn net/minecraft/client/gui/components/TabOrderedElement + aC_ ()I m_267579_ +eqo net/minecraft/client/gui/components/TextAndImageButton + A f_267392_ + C f_267457_ + D f_267436_ + E f_267434_ + a f_273941_ + b f_273904_ + c f_273857_ + d f_273911_ + e f_273880_ + f f_273871_ + (Lsw;IIIIIIIIILacq;Lepi$c;)V + 0 o p_268357_ + 1 o p_268106_ + 2 o p_268141_ + 3 o p_268331_ + 4 o p_268045_ + 5 o p_268300_ + 6 o p_268151_ + 7 o p_267955_ + 8 o p_268114_ + 9 o p_268103_ + 10 o p_268067_ + 11 o p_268052_ + a (Lsw;Lacq;Lepi$c;)Leqo$a; m_267772_ + static + 0 o p_268304_ + 1 o p_268277_ + 2 o p_268297_ + a (Leox;Leov;I)V m_280139_ + 0 o p_281792_ + 1 o p_283239_ + 2 o p_283135_ + a ()I m_267702_ + b ()I m_267831_ + b (Leox;IIF)V m_87963_ + 0 o p_282062_ + 1 o p_283189_ + 2 o p_283584_ + 3 o p_283402_ +eqo$a net/minecraft/client/gui/components/TextAndImageButton$Builder + a f_267375_ + b f_267378_ + c f_267427_ + d f_267472_ + e f_267366_ + f f_267451_ + g f_267364_ + h f_267408_ + i f_267430_ + j f_267387_ + k f_267417_ + l f_267433_ + (Lsw;Lacq;Lepi$c;)V + 0 o p_267988_ + 1 o p_268260_ + 2 o p_268075_ + a ()Leqo; m_267775_ + a (I)Leqo$a; m_267809_ + 0 o p_268008_ + a (II)Leqo$a; m_267752_ + 0 o p_267995_ + 1 o p_268187_ + b (II)Leqo$a; m_267570_ + 0 o p_268306_ + 1 o p_268207_ + c (II)Leqo$a; m_267765_ + 0 o p_268087_ + 1 o p_268011_ + d (II)Leqo$a; m_267643_ + 0 o p_268166_ + 1 o p_268310_ +eqp net/minecraft/client/gui/components/Tooltip + a f_257026_ + b f_256850_ + c f_256766_ + d f_257004_ + (Lsw;Lsw;)V + 0 o p_260262_ + 1 o p_260005_ + a (Lsw;Lsw;)Leqp; m_257563_ + static + 0 o p_259571_ + 1 o p_259174_ + a (Lenn;)Ljava/util/List; m_257408_ + 0 o p_260243_ + a (Lsw;)Leqp; m_257550_ + static + 0 o p_259142_ + a (Lenn;Lsw;)Ljava/util/List; m_257868_ + static + 0 o p_259133_ + 1 o p_260172_ + b (Lesp;)V m_142291_ + 0 o p_260330_ +eqq net/minecraft/client/gui/components/Whence + a ABSOLUTE + b RELATIVE + c END + d $VALUES + ()V + static + (Ljava/lang/String;I)V + 0 o p_239707_ + 1 o p_239708_ + a ()[Leqq; m_239202_ + static + valueOf (Ljava/lang/String;)Leqq; valueOf + static + 0 o p_239772_ + values ()[Leqq; values + static +eqr net/minecraft/client/gui/components/events/AbstractContainerEventHandler + a f_94673_ + b f_94674_ + ()V + a (Leqt;)V m_7522_ + 0 o p_94677_ + aA_ ()Z m_7282_ + c_ (Z)V m_7897_ + 0 o p_94681_ + t ()Leqt; m_7222_ +eqs net/minecraft/client/gui/components/events/ContainerEventHandler + a (CI)Z m_5534_ + 0 o p_94683_ + 1 o p_94684_ + a (DDI)Z m_6375_ + 0 o p_94695_ + 1 o p_94696_ + 2 o p_94697_ + a (DDD)Z m_6050_ + 0 o p_94686_ + 1 o p_94687_ + 2 o p_94688_ + a (III)Z m_7933_ + 0 o p_94710_ + 1 o p_94711_ + 2 o p_94712_ + a (Lesv$c;)Leou; m_264559_ + 0 o p_265354_ + a (Lesv$a;)Leou; m_264187_ + 0 o p_265760_ + a (DDDLeqt;)Z m_94689_ + static + 0 o p_94690_ + 1 o p_94691_ + 2 o p_94692_ + 3 o p_94693_ + a (DDILeqt;)Z m_94704_ + static + 0 o p_94705_ + 1 o p_94706_ + 2 o p_94707_ + 3 o p_94708_ + a (DDIDD)Z m_7979_ + 0 o p_94699_ + 1 o p_94700_ + 2 o p_94701_ + 3 o p_94702_ + 4 o p_94703_ + a (Lesz;Lesx;Leqt;Lesv;)Leou; m_264458_ + 0 o p_265054_ + 1 o p_265167_ + 2 o p_265476_ + 3 o p_265762_ + a (Lesv;)Leou; m_264064_ + 0 o p_265668_ + a (Lesx;Leqt;)Ljava/lang/Integer; m_263865_ + static + 0 o p_264675_ + 1 o p_264676_ + a (Leqt;)V m_7522_ + 0 o p_94713_ + aA_ ()Z m_7282_ + aB_ ()Z m_93696_ + aF_ ()Leou; m_264435_ + b (Leqt;)V m_94725_ + 0 o p_94726_ + b (DDI)Z m_6348_ + 0 o p_94722_ + 1 o p_94723_ + 2 o p_94724_ + b (Lesx;Leqt;)Ljava/lang/Integer; m_263864_ + static + 0 o p_264673_ + 1 o p_264674_ + b (Lesz;Lesx;Leqt;Lesv;)Leou; m_264486_ + 0 o p_265390_ + 1 o p_265687_ + 2 o p_265498_ + 3 o p_265048_ + b (III)Z m_7920_ + 0 o p_94715_ + 1 o p_94716_ + 2 o p_94717_ + b_ (Z)V m_93692_ + 0 o p_265504_ + c (Leqt;)I m_289585_ + static + 0 o p_289623_ + c_ (Z)V m_7897_ + 0 o p_94720_ + d (DD)Ljava/util/Optional; m_94729_ + 0 o p_94730_ + 1 o p_94731_ + i ()Ljava/util/List; m_6702_ + t ()Leqt; m_7222_ +eqt net/minecraft/client/gui/components/events/GuiEventListener + B f_212360_ + a (DDIDD)Z m_7979_ + 0 o p_94740_ + 1 o p_94741_ + 2 o p_94742_ + 3 o p_94743_ + 4 o p_94744_ + a (CI)Z m_5534_ + 0 o p_94732_ + 1 o p_94733_ + a (DDI)Z m_6375_ + 0 o p_94737_ + 1 o p_94738_ + 2 o p_94739_ + a (DDD)Z m_6050_ + 0 o p_94734_ + 1 o p_94735_ + 2 o p_94736_ + a (III)Z m_7933_ + 0 o p_94745_ + 1 o p_94746_ + 2 o p_94747_ + a (Lesv;)Leou; m_264064_ + 0 o p_265234_ + aB_ ()Z m_93696_ + aF_ ()Leou; m_264435_ + a_ (DD)Z m_5953_ + 0 o p_94748_ + 1 o p_94749_ + b (DDI)Z m_6348_ + 0 o p_94753_ + 1 o p_94754_ + 2 o p_94755_ + b (III)Z m_7920_ + 0 o p_94750_ + 1 o p_94751_ + 2 o p_94752_ + b_ (Z)V m_93692_ + 0 o p_265728_ + e (DD)V m_94757_ + 0 o p_94758_ + 1 o p_94759_ + s ()Lesz; m_264198_ +equ net/minecraft/client/gui/components/events/package-info +eqv net/minecraft/client/gui/components/package-info +eqw net/minecraft/client/gui/components/spectator/SpectatorGui + a f_94760_ + b f_94761_ + c f_169074_ + d f_169075_ + e f_94762_ + f f_94763_ + g f_94764_ + ()V + static + (Lenn;)V + 0 o p_94767_ + a (Leox;IIFFLezr;)V m_280643_ + 0 o p_281411_ + 1 o p_283536_ + 2 o p_281853_ + 3 o p_282693_ + 4 o p_281955_ + 5 o p_283370_ + a ()Z m_94768_ + a (I)V m_94771_ + 0 o p_94772_ + a (Leox;FIILezt;)V m_280016_ + 0 o p_282945_ + 1 o p_281688_ + 2 o p_281726_ + 3 o p_281730_ + 4 o p_282361_ + a (Lezp;)V m_7613_ + 0 o p_94792_ + a (Leox;)V m_280623_ + 0 o p_281458_ + b (Leox;)V m_280365_ + 0 o p_283107_ + b (I)V m_205380_ + 0 o p_205381_ + b ()V m_94793_ + c ()F m_94794_ +eqx net/minecraft/client/gui/components/spectator/package-info +eqy net/minecraft/client/gui/components/tabs/GridLayoutTab + a f_267367_ + b f_267410_ + (Lsw;)V + 0 o p_268022_ + a (Ljava/util/function/Consumer;)V m_267609_ + 0 o p_268098_ + a ()Lsw; m_267600_ + a (Lesz;)V m_267697_ + 0 o p_268281_ +eqz net/minecraft/client/gui/components/tabs/Tab + a (Ljava/util/function/Consumer;)V m_267609_ + 0 o p_268213_ + a ()Lsw; m_267600_ + a (Lesz;)V m_267697_ + 0 o p_268081_ + b ()V m_267681_ +er net/minecraft/commands/arguments/ResourceOrTagArgument + a f_244398_ + b f_244215_ + c f_243833_ + d f_243664_ + e f_244158_ + ()V + static + (Ldm;Lacp;)V + 0 o p_249382_ + 1 o p_251209_ + a (Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;)Lcom/mojang/brigadier/Message; m_245090_ + static + 0 o p_250188_ + 1 o p_252173_ + 2 o p_251453_ + a (Lacp;Lhe$c;)Lcom/mojang/brigadier/exceptions/CommandSyntaxException; m_245818_ + static + 0 o p_249333_ + 1 o p_252340_ + a (Lacq;)Lcom/mojang/brigadier/exceptions/CommandSyntaxException; m_246102_ + 0 o p_249000_ + a (Ler$c;Lacp;)Lcom/mojang/brigadier/exceptions/CommandSyntaxException; m_247081_ + static + 0 o p_248779_ + 1 o p_251357_ + a (Lcom/mojang/brigadier/context/CommandContext;Ljava/lang/String;Lacp;)Ler$c; m_245464_ + static + 0 o p_249001_ + 1 o p_251520_ + 2 o p_250370_ + a (Ljava/lang/Object;Ljava/lang/Object;)Lcom/mojang/brigadier/Message; m_246859_ + static + 0 o p_250953_ + 1 o p_249704_ + a (Ldm;Lacp;)Ler; m_247455_ + static + 0 o p_251101_ + 1 o p_248888_ + a (Lcom/mojang/brigadier/StringReader;)Ler$c; parse + 0 o p_250860_ + a (Lacp;Lhi$c;)Lcom/mojang/brigadier/exceptions/CommandSyntaxException; m_245664_ + static + 0 o p_249856_ + 1 o p_250301_ + b (Lacq;)Lcom/mojang/brigadier/exceptions/CommandSyntaxException; m_245252_ + 0 o p_250469_ + getExamples ()Ljava/util/Collection; getExamples + listSuggestions (Lcom/mojang/brigadier/context/CommandContext;Lcom/mojang/brigadier/suggestion/SuggestionsBuilder;)Ljava/util/concurrent/CompletableFuture; listSuggestions + 0 o p_250223_ + 1 o p_252354_ + parse (Lcom/mojang/brigadier/StringReader;)Ljava/lang/Object; parse + 0 o p_248627_ +er$a net/minecraft/commands/arguments/ResourceOrTagArgument$Info + ()V + a (Lsf;)Ler$a$a; m_213618_ + 0 o p_250205_ + a (Lgg$a;Lcom/google/gson/JsonObject;)V m_213719_ + 0 o p_252221_ + 1 o p_251893_ + a (Lcom/mojang/brigadier/arguments/ArgumentType;)Lgg$a; m_214163_ + 0 o p_251473_ + a (Lgg$a;Lsf;)V m_214155_ + 0 o p_252217_ + 1 o p_248566_ + a (Ler;)Ler$a$a; m_214163_ + 0 o p_252206_ + a (Ler$a$a;Lcom/google/gson/JsonObject;)V m_213719_ + 0 o p_251957_ + 1 o p_249067_ + a (Ler$a$a;Lsf;)V m_214155_ + 0 o p_250419_ + 1 o p_249726_ + b (Lsf;)Lgg$a; m_213618_ + 0 o p_251729_ +er$a$a net/minecraft/commands/arguments/ResourceOrTagArgument$Info$Template + a f_244454_ + b f_244221_ + (Ler$a;Lacp;)V + 0 o p_250619_ + 1 o p_250107_ + a ()Lgg; m_213709_ + a (Ldm;)Ler; m_213879_ + 0 o p_251386_ + b (Ldm;)Lcom/mojang/brigadier/arguments/ArgumentType; m_213879_ + 0 o p_251039_ +er$b net/minecraft/commands/arguments/ResourceOrTagArgument$ResourceResult + a f_243689_ + (Lhe$c;)V + 0 o f_243689_ + a ()Lcom/mojang/datafixers/util/Either; m_245347_ + a (Lhe;)Z test + 0 o p_249230_ + a (Lacp;)Ljava/util/Optional; m_245172_ + 0 o p_250007_ + b ()Ljava/lang/String; m_245443_ + c ()Lhe$c; f_243689_ + equals (Ljava/lang/Object;)Z equals + 0 o p_251125_ + hashCode ()I hashCode + test (Ljava/lang/Object;)Z test + 0 o p_249121_ + toString ()Ljava/lang/String; toString +er$c net/minecraft/commands/arguments/ResourceOrTagArgument$Result + a ()Lcom/mojang/datafixers/util/Either; m_245347_ + a (Lacp;)Ljava/util/Optional; m_245172_ + 0 o p_249572_ + b ()Ljava/lang/String; m_245443_ +er$d net/minecraft/commands/arguments/ResourceOrTagArgument$TagResult + a f_244078_ + (Lhi$c;)V + 0 o f_244078_ + a ()Lcom/mojang/datafixers/util/Either; m_245347_ + a (Lhe;)Z test + 0 o p_252187_ + a (Lacp;)Ljava/util/Optional; m_245172_ + 0 o p_250945_ + b ()Ljava/lang/String; m_245443_ + c ()Lhi$c; f_244078_ + equals (Ljava/lang/Object;)Z equals + 0 o p_251815_ + hashCode ()I hashCode + test (Ljava/lang/Object;)Z test + 0 o p_249233_ + toString ()Ljava/lang/String; toString +era net/minecraft/client/gui/components/tabs/TabManager + a f_267431_ + b f_267452_ + c f_267400_ + d f_267478_ + (Ljava/util/function/Consumer;Ljava/util/function/Consumer;)V + 0 o p_268279_ + 1 o p_268196_ + a ()Leqz; m_267695_ + a (Lesz;)V m_267817_ + 0 o p_268042_ + a (Leqz;Z)V m_276088_ + 0 o p_276109_ + 1 o p_276120_ + b ()V m_267621_ +erb net/minecraft/client/gui/components/tabs/TabNavigationBar + a f_268741_ + b f_273832_ + c f_273831_ + d f_273887_ + e f_273890_ + f f_273942_ + g f_267467_ + h f_267401_ + i f_267380_ + j f_267495_ + ()V + static + (ILera;Ljava/lang/Iterable;)V + 0 o p_275379_ + 1 o p_275624_ + 2 o p_275279_ + a (I)V m_267604_ + 0 o p_268094_ + a (Lera;I)Lerb$a; m_267630_ + static + 0 o p_268126_ + 1 o p_268070_ + a (Lesv;)Leou; m_264064_ + 0 o p_275418_ + a (IZ)V m_276089_ + 0 o p_276107_ + 1 o p_276125_ + a (Leqt;)V m_7522_ + 0 o p_275675_ + a (Leox;IIF)V m_88315_ + 0 o p_281720_ + 1 o p_282085_ + 2 o p_281687_ + 3 o p_283048_ + a (Lesp;Leqm;)V m_274560_ + 0 o p_275386_ + 1 o p_275397_ + b (I)Z m_269419_ + 0 o p_270495_ + b (Lesp;)V m_142291_ + 0 o p_275583_ + b (Lesp;Leqm;)V m_273976_ + 0 o p_274662_ + 1 o p_274663_ + b ()V m_267766_ + b_ (Z)V m_93692_ + 0 o p_275488_ + c (I)I m_269123_ + 0 o p_270508_ + d ()I m_269025_ + e ()Leqm; m_274517_ + f ()Ljava/util/Optional; m_273975_ + i ()Ljava/util/List; m_6702_ + q ()Lesn$a; m_142684_ + s ()Lesz; m_264198_ +erb$a net/minecraft/client/gui/components/tabs/TabNavigationBar$Builder + a f_267429_ + b f_267468_ + c f_267496_ + (Lera;I)V + 0 o p_268334_ + 1 o p_267986_ + a ()Lerb; m_267625_ + a ([Leqz;)Lerb$a; m_267824_ + 0 o p_268144_ +erc net/minecraft/client/gui/components/tabs/package-info +erd net/minecraft/client/gui/components/toasts/AdvancementToast + a f_263764_ + e f_94795_ + f f_94796_ + (Lae;)V + 0 o p_94798_ + a (Leox;Lerh;J)Lerg$a; m_7172_ + 0 o p_281813_ + 1 o p_282243_ + 2 o p_282604_ +ere net/minecraft/client/gui/components/toasts/RecipeToast + a f_169076_ + e f_94803_ + f f_94804_ + g f_94805_ + h f_94806_ + i f_94807_ + ()V + static + (Lcjc;)V + 0 o p_94810_ + a (Leox;Lerh;J)Lerg$a; m_7172_ + 0 o p_281667_ + 1 o p_281321_ + 2 o p_281779_ + a (Lcjc;)V m_94811_ + 0 o p_94812_ + a (Lerh;Lcjc;)V m_94817_ + static + 0 o p_94818_ + 1 o p_94819_ +erf net/minecraft/client/gui/components/toasts/SystemToast + a f_169078_ + e f_243015_ + f f_243021_ + g f_94820_ + h f_94821_ + i f_94822_ + j f_94823_ + k f_94824_ + l f_94825_ + (Lerf$a;Lsw;Lsw;)V + 0 o p_94832_ + 1 o p_94833_ + 2 o p_94834_ + (Lerf$a;Lsw;Ljava/util/List;I)V + 0 o p_94827_ + 1 o p_94828_ + 2 o p_94829_ + 3 o p_94830_ + a (Leox;Lerh;J)Lerg$a; m_7172_ + 0 o p_281624_ + 1 o p_282333_ + 2 o p_282762_ + a (Lerh;Lerf$a;Lsw;Lsw;)V m_94855_ + static + 0 o p_94856_ + 1 o p_94857_ + 2 o p_94858_ + 3 o p_94859_ + a (Lenn;Lerf$a;Lsw;Lsw;)Lerf; m_94847_ + static + 0 o p_94848_ + 1 o p_94849_ + 2 o p_94850_ + 3 o p_94851_ + a (Lsw;Lsw;)V m_94862_ + 0 o p_94863_ + 1 o p_94864_ + a (Lenn;Ljava/lang/String;)V m_94852_ + static + 0 o p_94853_ + 1 o p_94854_ + a ()I m_7828_ + a (Lsw;)Lcom/google/common/collect/ImmutableList; m_94860_ + static + 0 o p_94861_ + a (Leox;Lerh;IIII)V m_280654_ + 0 o p_281840_ + 1 o p_281283_ + 2 o p_281750_ + 3 o p_282371_ + 4 o p_283613_ + 5 o p_282880_ + b (Lerh;Lerf$a;Lsw;Lsw;)V m_94869_ + static + 0 o p_94870_ + 1 o p_94871_ + 2 o p_94872_ + 3 o p_94873_ + b ()I m_94899_ + b (Lenn;Ljava/lang/String;)V m_94866_ + static + 0 o p_94867_ + 1 o p_94868_ + c (Lenn;Ljava/lang/String;)V m_94875_ + static + 0 o p_94876_ + 1 o p_94877_ + c ()Lerf$a; m_7283_ + d ()Ljava/lang/Object; m_7283_ +erf$a net/minecraft/client/gui/components/toasts/SystemToast$SystemToastIds + a TUTORIAL_HINT + b NARRATOR_TOGGLE + c WORLD_BACKUP + d PACK_LOAD_FAILURE + e WORLD_ACCESS_FAILURE + f PACK_COPY_FAILURE + g PERIODIC_NOTIFICATION + h UNSECURE_SERVER_WARNING + i f_232547_ + j $VALUES + ()V + static + (Ljava/lang/String;IJ)V + 0 o p_232549_ + 1 o p_232550_ + 2 o p_232551_ + (Ljava/lang/String;I)V + 0 o p_94888_ + 1 o p_94889_ + a ()[Lerf$a; m_169079_ + static + valueOf (Ljava/lang/String;)Lerf$a; valueOf + static + 0 o p_94891_ + values ()[Lerf$a; values + static +erg net/minecraft/client/gui/components/toasts/Toast + b f_94893_ + c f_94894_ + d f_243003_ + ()V + static + a (Leox;Lerh;J)Lerg$a; m_7172_ + 0 o p_281969_ + 1 o p_94897_ + 2 o p_94898_ + a ()I m_7828_ + b ()I m_94899_ + d ()Ljava/lang/Object; m_7283_ + e ()I m_243110_ +erg$a net/minecraft/client/gui/components/toasts/Toast$Visibility + a SHOW + b HIDE + c f_94902_ + d $VALUES + ()V + static + (Ljava/lang/String;ILamg;)V + 0 o p_94906_ + 1 o p_94907_ + 2 o p_94908_ + a (Lfzc;)V m_94909_ + 0 o p_94910_ + a ()[Lerg$a; m_169080_ + static + valueOf (Ljava/lang/String;)Lerg$a; valueOf + static + 0 o p_94912_ + values ()[Lerg$a; values + static +erh net/minecraft/client/gui/components/toasts/ToastComponent + a f_243005_ + b f_243024_ + c f_94914_ + d f_94915_ + e f_242998_ + f f_94916_ + (Lenn;)V + 0 o p_94918_ + a (ILeox;Lerh$a;)Z m_279745_ + 0 o p_280778_ + 1 o p_280779_ + 2 o p_280780_ + a (Ljava/lang/Class;Ljava/lang/Object;)Lerg; m_94926_ + 0 o p_94927_ + 1 o p_94928_ + a (Lerg;)V m_94922_ + 0 o p_94923_ + a (I)I m_243100_ + 0 o p_243272_ + a ()V m_94919_ + a (Leox;)V m_94920_ + 0 o p_283249_ + b (Lerg;)Z m_243085_ + 0 o p_243239_ + b ()Lenn; m_94929_ + c ()D m_264542_ + d ()I m_243097_ +erh$a net/minecraft/client/gui/components/toasts/ToastComponent$ToastInstance + a f_94930_ + b f_169082_ + c f_94931_ + d f_242993_ + e f_243000_ + f f_94932_ + g f_94933_ + h f_94934_ + (Lerh;Lerg;II)V + 0 o p_243250_ + 1 o p_243319_ + 2 o p_243300_ + 3 o p_243224_ + a (ILeox;)Z m_280442_ + 0 o p_282887_ + 1 o p_283668_ + a (J)F m_94947_ + 0 o p_94948_ + a ()Lerg; m_94942_ +eri net/minecraft/client/gui/components/toasts/TutorialToast + a f_169083_ + e f_169084_ + f f_169085_ + g f_169086_ + h f_94949_ + i f_94950_ + j f_94951_ + k f_94952_ + l f_94953_ + m f_94954_ + n f_94955_ + o f_94956_ + (Leri$a;Lsw;Lsw;Z)V + 0 o p_94958_ + 1 o p_94959_ + 2 o p_94960_ + 3 o p_94961_ + a (Leox;Lerh;J)Lerg$a; m_7172_ + 0 o p_283197_ + 1 o p_283009_ + 2 o p_281902_ + a (F)V m_94962_ + 0 o p_94963_ + c ()V m_94968_ +eri$a net/minecraft/client/gui/components/toasts/TutorialToast$Icons + a MOVEMENT_KEYS + b MOUSE + c TREE + d RECIPE_BOOK + e WOODEN_PLANKS + f SOCIAL_INTERACTIONS + g RIGHT_CLICK + h f_94975_ + i f_94976_ + j $VALUES + ()V + static + (Ljava/lang/String;III)V + 0 o p_94980_ + 1 o p_94981_ + 2 o p_94982_ + 3 o p_94983_ + a (Leox;II)V m_280006_ + 0 o p_282818_ + 1 o p_283064_ + 2 o p_282765_ + a ()[Leri$a; m_169088_ + static + valueOf (Ljava/lang/String;)Leri$a; valueOf + static + 0 o p_94990_ + values ()[Leri$a; values + static +erj net/minecraft/client/gui/components/toasts/package-info +erk net/minecraft/client/gui/font/AllMissingGlyphProvider + ()V + a ()Lit/unimi/dsi/fastutil/ints/IntSet; m_6990_ + a (I)Legl; m_214022_ + 0 o p_232553_ +erl net/minecraft/client/gui/font/CodepointMap + a f_283858_ + b f_283879_ + c f_283806_ + d f_283822_ + e f_283789_ + f f_283911_ + g f_283938_ + h f_283773_ + (Ljava/util/function/IntFunction;Ljava/util/function/IntFunction;)V + 0 o p_285284_ + 1 o p_285275_ + a (ILjava/util/function/IntFunction;)Ljava/lang/Object; m_284450_ + 0 o p_285365_ + 1 o p_285147_ + a (Lerl$a;)V m_284150_ + 0 o p_285048_ + a (Lit/unimi/dsi/fastutil/ints/IntOpenHashSet;ILjava/lang/Object;)V m_284551_ + static + 0 o p_285454_ + 1 o p_285165_ + 2 o p_285389_ + a ()V m_284192_ + a (I)Ljava/lang/Object; m_284412_ + 0 o p_285131_ + a (ILjava/lang/Object;)Ljava/lang/Object; m_284506_ + 0 o p_285321_ + 1 o p_285073_ + b (I)Ljava/lang/Object; m_284320_ + 0 o p_285488_ + b ()Lit/unimi/dsi/fastutil/ints/IntSet; m_284498_ +erl$a net/minecraft/client/gui/font/CodepointMap$Output + accept (ILjava/lang/Object;)V m_284511_ + 0 o p_285163_ + 1 o p_285313_ +erm net/minecraft/client/gui/font/FontManager + a f_94996_ + b f_94997_ + c f_169089_ + d f_244245_ + e f_283881_ + f f_94998_ + g f_283839_ + h f_94999_ + i f_95000_ + j f_95001_ + ()V + static + (Lfuw;)V + 0 o p_95005_ + a (Lakr$a;Lakx;Lban;Lban;Ljava/util/concurrent/Executor;Ljava/util/concurrent/Executor;)Ljava/util/concurrent/CompletableFuture; m_5540_ + 0 o p_285160_ + 1 o p_285231_ + 2 o p_285232_ + 3 o p_285262_ + 4 o p_284975_ + 5 o p_285218_ + a (Lern;)V m_95009_ + static + 0 o p_95010_ + a (Ljava/util/List;Ljava/util/Map;Ljava/lang/Void;)Lerm$d; m_283959_ + static + 0 o p_284593_ + 1 o p_284594_ + 2 o p_284595_ + a (Ljava/util/Map$Entry;Lacq;Lakx;Ljava/util/concurrent/Executor;)Lerm$e; m_283963_ + 0 o p_284604_ + 1 o p_284605_ + 2 o p_284606_ + 3 o p_284607_ + a (Ljava/util/List;Lacq;)Ljava/util/List; m_284270_ + static + 0 o p_284976_ + 1 o p_285272_ + a (Lerm$e;Lerm$a;Lerx$b;)V m_285670_ + static + 0 o p_286127_ + 1 o p_286128_ + 2 o p_286129_ + a (Lerm$a;Lerx$a;Lakx;Ljava/util/concurrent/Executor;)Ljava/util/concurrent/CompletableFuture; m_284357_ + 0 o p_285113_ + 1 o p_286561_ + 2 o p_285424_ + 3 o p_285371_ + a (Ljava/util/List;I)V m_283966_ + static + 0 o p_284613_ + 1 o p_284614_ + a (Ljava/util/Map;Lacq;Ljava/util/List;)V m_283957_ + static + 0 o p_284588_ + 1 o p_284589_ + 2 o p_284590_ + a (Lerm$d;Lban;)V m_284460_ + 0 o p_284939_ + 1 o p_285407_ + a (Lban;Lerm$d;)V m_283964_ + 0 o p_284608_ + 1 o p_284609_ + a (Lacq;Ljava/util/List;)V m_283971_ + 0 o p_284627_ + 1 o p_284628_ + a (Lerm$a;Lakx;Ljava/util/concurrent/Executor;Lerm$e;Lerx$a;)V m_285669_ + 0 o p_286122_ + 1 o p_286123_ + 2 o p_286124_ + 3 o p_286125_ + 4 o p_286126_ + a (Ljava/util/List;)Ljava/util/Map; m_284517_ + 0 o p_285282_ + a (Ljava/util/Map;)V m_95011_ + 0 o p_95012_ + a (Ljava/util/List;Legm;)V m_284489_ + 0 o p_285520_ + 1 o p_285397_ + a (Legm;Ljava/util/concurrent/Executor;Ljava/util/List;)Ljava/util/concurrent/CompletableFuture; m_283954_ + 0 o p_284583_ + 1 o p_284584_ + 2 o p_284585_ + a (Lerx$a;Lakx;Lerm$a;)Ljava/util/Optional; m_285671_ + static + 0 o p_286130_ + 1 o p_286131_ + 2 o p_286132_ + a (Ljava/util/List;Legm;Ljava/util/concurrent/Executor;Ljava/util/List;)Ljava/util/concurrent/CompletionStage; m_283967_ + 0 o p_284615_ + 1 o p_284616_ + 2 o p_284617_ + 3 o p_284618_ + a (Ljava/util/concurrent/Executor;Ljava/util/List;)Ljava/util/concurrent/CompletionStage; m_283958_ + 0 o p_284591_ + 1 o p_284592_ + a ()Leov; m_95006_ + a (Lakx;Ljava/util/concurrent/Executor;)Ljava/util/concurrent/CompletableFuture; m_284410_ + 0 o p_285252_ + 1 o p_284969_ + a (Ljava/util/Map;Lacq;Lerm$e;)V m_283968_ + static + 0 o p_284619_ + 1 o p_284620_ + 2 o p_284621_ + a (I)[Ljava/util/concurrent/CompletableFuture; m_283956_ + static + 0 o p_284587_ + a (Laof;Lerm$e;)V m_283970_ + static + 0 o p_284625_ + 1 o p_284626_ + a (Lacq;)Lacq; m_284164_ + 0 o p_285141_ + b (Ljava/util/List;Legm;)V m_283961_ + 0 o p_284597_ + 1 o p_284598_ + b (Lacq;)Lern; m_283960_ + 0 o p_284596_ + b ()Leov; m_243082_ + c (Lacq;)Lern; m_283955_ + 0 o p_284586_ + close ()V close +erm$a net/minecraft/client/gui/font/FontManager$BuilderId + a f_283782_ + b f_283885_ + c f_283900_ + (Lacq;Ljava/lang/String;I)V + 0 o f_283782_ + 1 o f_283885_ + 2 o f_283900_ + a ()Lacq; f_283782_ + b ()Ljava/lang/String; f_283885_ + c ()I f_283900_ + equals (Ljava/lang/Object;)Z equals + 0 o p_285107_ + hashCode ()I hashCode + toString ()Ljava/lang/String; toString +erm$b net/minecraft/client/gui/font/FontManager$BuilderResult + a f_283838_ + b f_283894_ + (Lerm$a;Lcom/mojang/datafixers/util/Either;)V + 0 o f_283838_ + 1 o f_283894_ + a ()Lerm$a; f_283838_ + a (Ljava/util/function/Function;)Ljava/util/Optional; m_284215_ + 0 o p_284942_ + a (Ljava/util/function/Function;Lacq;)Ljava/util/Optional; m_284205_ + 0 o p_284933_ + 1 o p_285367_ + a (Ljava/util/concurrent/CompletableFuture;)Ljava/util/Optional; m_284229_ + static + 0 o p_285332_ + b ()Lcom/mojang/datafixers/util/Either; f_283894_ + equals (Ljava/lang/Object;)Z equals + 0 o p_285102_ + hashCode ()I hashCode + toString ()Ljava/lang/String; toString +erm$c net/minecraft/client/gui/font/FontManager$FontDefinitionFile + a f_285562_ + b f_285612_ + ()V + static + (Ljava/util/List;)V + 0 o f_285612_ + a ()Ljava/util/List; f_285612_ + a (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; m_285893_ + static + 0 o p_286425_ + equals (Ljava/lang/Object;)Z equals + 0 o p_286874_ + hashCode ()I hashCode + toString ()Ljava/lang/String; toString +erm$d net/minecraft/client/gui/font/FontManager$Preparation + a f_283921_ + b f_283866_ + (Ljava/util/Map;Ljava/util/List;)V + 0 o f_283921_ + 1 o f_283866_ + a ()Ljava/util/Map; f_283921_ + b ()Ljava/util/List; f_283866_ + equals (Ljava/lang/Object;)Z equals + 0 o p_285059_ + hashCode ()I hashCode + toString ()Ljava/lang/String; toString +erm$e net/minecraft/client/gui/font/FontManager$UnresolvedBuilderBundle + a f_283760_ + b f_283826_ + c f_283897_ + (Lacq;)V + 0 o p_284984_ + (Lacq;Ljava/util/List;Ljava/util/Set;)V + 0 o f_283760_ + 1 o f_283826_ + 2 o f_283897_ + a (Lerm$a;Lerx$b;)V m_286066_ + 0 o p_286837_ + 1 o p_286500_ + a (Ljava/util/function/Consumer;)V m_284213_ + 0 o p_285391_ + a (Lerm$a;Ljava/util/concurrent/CompletableFuture;)V m_284288_ + 0 o p_284935_ + 1 o p_284966_ + a ()Lacq; f_283760_ + a (Lerm$b;)Ljava/util/stream/Stream; m_284307_ + static + 0 o p_285041_ + a (Ljava/util/function/Function;)Ljava/util/Optional; m_284241_ + 0 o p_285118_ + b ()Ljava/util/List; f_283826_ + b (Ljava/util/function/Consumer;)V m_284346_ + 0 o p_285405_ + c ()Ljava/util/Set; f_283897_ + d ()Ljava/util/stream/Stream; m_284148_ + equals (Ljava/lang/Object;)Z equals + 0 o p_285342_ + hashCode ()I hashCode + toString ()Ljava/lang/String; toString +ern net/minecraft/client/gui/font/FontSet + a f_95050_ + b f_242991_ + c f_95051_ + d f_95052_ + e f_95053_ + f f_95054_ + g f_95055_ + h f_95056_ + i f_95057_ + j f_95058_ + k f_95059_ + ()V + static + (Lfuw;Lacq;)V + 0 o p_95062_ + 1 o p_95063_ + a ()Lerr; m_95064_ + a (I)Lerr; m_95078_ + 0 o p_95079_ + a (Ljava/util/List;)V m_95071_ + 0 o p_95072_ + a (IZ)Legl; m_243128_ + 0 o p_243235_ + 1 o p_243251_ + a (Ljava/util/List;Ljava/util/Set;I)V m_232558_ + 0 o p_232559_ + 1 o p_232560_ + 2 o p_232561_ + a (Legn;)Lerr; m_232556_ + 0 o p_232557_ + a (Legl;)Lerr; m_95067_ + 0 o p_95068_ + b (I)Lern$a; m_243121_ + 0 o p_243321_ + b (Legl;)Z m_243068_ + static + 0 o p_243323_ + b ()V m_95077_ + c ()V m_95080_ + c (I)Lerr; m_232564_ + 0 o p_232565_ + close ()V close + d (I)Lit/unimi/dsi/fastutil/ints/IntList; m_232566_ + static + 0 o p_232567_ + e (I)[[Lern$a; m_283975_ + static + 0 o p_284632_ + f (I)[Lern$a; m_283974_ + static + 0 o p_284631_ + g (I)[[Lerr; m_283972_ + static + 0 o p_284629_ + h (I)[Lerr; m_283973_ + static + 0 o p_284630_ +ern$a net/minecraft/client/gui/font/FontSet$GlyphInfoFilter + a f_243013_ + b f_243006_ + c f_243023_ + ()V + static + (Legl;Legl;)V + 0 o f_243013_ + 1 o f_243006_ + a (Z)Legl; m_243099_ + 0 o p_243218_ + a ()Legl; f_243013_ + b ()Legl; f_243006_ + equals (Ljava/lang/Object;)Z equals + 0 o p_243310_ + hashCode ()I hashCode + toString ()Ljava/lang/String; toString +ero net/minecraft/client/gui/font/FontTexture + e f_169092_ + f f_283837_ + g f_95094_ + h f_95095_ + (Lerp;Z)V + 0 o p_285000_ + 1 o p_285085_ + a (Lakx;)V m_6704_ + 0 o p_95101_ + a (I)I m_284333_ + static + 0 o p_285145_ + a (Legn;)Lerr; m_232568_ + 0 o p_232569_ + a (Lacq;Ljava/nio/file/Path;)V m_276079_ + 0 o p_285121_ + 1 o p_285511_ + close ()V close +ero$a net/minecraft/client/gui/font/FontTexture$Node + a f_95105_ + b f_95106_ + c f_95107_ + d f_95108_ + e f_95109_ + f f_95110_ + g f_95111_ + (IIII)V + 0 o p_95113_ + 1 o p_95114_ + 2 o p_95115_ + 3 o p_95116_ + a (Legn;)Lero$a; m_232570_ + 0 o p_232571_ +erp net/minecraft/client/gui/font/GlyphRenderTypes + a f_283780_ + b f_283831_ + c f_283751_ + (Lfkf;Lfkf;Lfkf;)V + 0 o f_283780_ + 1 o f_283831_ + 2 o f_283751_ + a ()Lfkf; f_283780_ + a (Leov$a;)Lfkf; m_284370_ + 0 o p_285259_ + a (Lacq;)Lerp; m_284520_ + static + 0 o p_285411_ + b ()Lfkf; f_283831_ + b (Lacq;)Lerp; m_284354_ + static + 0 o p_285486_ + c ()Lfkf; f_283751_ + equals (Ljava/lang/Object;)Z equals + 0 o p_285092_ + hashCode ()I hashCode + toString ()Ljava/lang/String; toString +erp$1 net/minecraft/client/gui/font/GlyphRenderTypes$1 + a f_283946_ + ()V + static +erq net/minecraft/client/gui/font/TextFieldHelper + a f_95129_ + b f_95130_ + c f_95131_ + d f_95132_ + e f_95133_ + f f_95134_ + g f_95135_ + (Ljava/util/function/Supplier;Ljava/util/function/Consumer;Ljava/util/function/Supplier;Ljava/util/function/Consumer;Ljava/util/function/Predicate;)V + 0 o p_95137_ + 1 o p_95138_ + 2 o p_95139_ + 3 o p_95140_ + 4 o p_95141_ + a (Ljava/lang/String;)V m_95158_ + 0 o p_95159_ + a (Lenn;Ljava/lang/String;)V m_95155_ + static + 0 o p_95156_ + 1 o p_95157_ + a (II)V m_95147_ + 0 o p_95148_ + 1 o p_95149_ + a (Z)V m_95176_ + 0 o p_95177_ + a (Lenn;)Ljava/util/function/Supplier; m_95153_ + static + 0 o p_95154_ + a ()V m_95142_ + a (IZLerq$a;)V m_232575_ + 0 o p_232576_ + 1 o p_232577_ + 2 o p_232578_ + a (C)Z m_95143_ + 0 o p_95144_ + a (Ljava/lang/String;Ljava/lang/String;)V m_95160_ + 0 o p_95161_ + 1 o p_95162_ + a (ILerq$a;)V m_232572_ + 0 o p_232573_ + 1 o p_232574_ + a (I)Z m_95145_ + 0 o p_95146_ + a (IZ)V m_95150_ + 0 o p_95151_ + 1 o p_95152_ + b (IZ)V m_95166_ + 0 o p_95167_ + 1 o p_95168_ + b (Z)V m_95186_ + 0 o p_95187_ + b (I)V m_169093_ + 0 o p_169094_ + b (Ljava/lang/String;)Ljava/lang/String; m_95174_ + 0 o p_95175_ + b (Lenn;)Ljava/lang/String; m_95169_ + static + 0 o p_95170_ + b (Lenn;Ljava/lang/String;)V m_95171_ + static + 0 o p_95172_ + 1 o p_95173_ + b ()V m_95165_ + c (I)V m_169095_ + 0 o p_169096_ + c ()V m_95178_ + c (Z)V m_95163_ + 0 o p_95164_ + c (IZ)V m_95179_ + 0 o p_95180_ + 1 o p_95181_ + c (Ljava/lang/String;)Ljava/lang/String; m_95184_ + 0 o p_95185_ + c (Lenn;)Ljava/util/function/Consumer; m_95182_ + static + 0 o p_95183_ + d (I)V m_232579_ + 0 o p_232580_ + d (Lenn;)Ljava/lang/String; m_95191_ + static + 0 o p_95192_ + d ()V m_95188_ + e ()V m_169097_ + e (I)V m_95189_ + 0 o p_95190_ + f ()V m_95193_ + f (I)V m_169098_ + 0 o p_169099_ + g ()I m_95194_ + g (I)V m_169100_ + 0 o p_169101_ + h (I)I m_95195_ + 0 o p_95196_ + h ()I m_95197_ + i ()Z m_95198_ +erq$1 net/minecraft/client/gui/font/TextFieldHelper$1 + a f_232581_ + ()V + static +erq$a net/minecraft/client/gui/font/TextFieldHelper$CursorStep + a CHARACTER + b WORD + c $VALUES + ()V + static + (Ljava/lang/String;I)V + 0 o p_232588_ + 1 o p_232589_ + a ()[Lerq$a; m_232590_ + static + valueOf (Ljava/lang/String;)Lerq$a; valueOf + static + 0 o p_232592_ + values ()[Lerq$a; values + static +err net/minecraft/client/gui/font/glyphs/BakedGlyph + a f_283799_ + b f_95201_ + c f_95202_ + d f_95203_ + e f_95204_ + f f_95205_ + g f_95206_ + h f_95207_ + i f_95208_ + (Lerp;FFFFFFFF)V + 0 o p_285527_ + 1 o p_285271_ + 2 o p_284970_ + 3 o p_285098_ + 4 o p_285023_ + 5 o p_285242_ + 6 o p_285043_ + 7 o p_285100_ + 8 o p_284948_ + a (ZFFLorg/joml/Matrix4f;Lein;FFFFI)V m_5626_ + 0 o p_95227_ + 1 o p_95228_ + 2 o p_95229_ + 3 o p_253706_ + 4 o p_95231_ + 5 o p_95232_ + 6 o p_95233_ + 7 o p_95234_ + 8 o p_95235_ + 9 o p_95236_ + a (Lerr$a;Lorg/joml/Matrix4f;Lein;I)V m_95220_ + 0 o p_95221_ + 1 o p_254370_ + 2 o p_95223_ + 3 o p_95224_ + a (Leov$a;)Lfkf; m_181387_ + 0 o p_181388_ +err$a net/minecraft/client/gui/font/glyphs/BakedGlyph$Effect + a f_95237_ + b f_95238_ + c f_95239_ + d f_95240_ + e f_95241_ + f f_95242_ + g f_95243_ + h f_95244_ + i f_95245_ + (FFFFFFFFF)V + 0 o p_95247_ + 1 o p_95248_ + 2 o p_95249_ + 3 o p_95250_ + 4 o p_95251_ + 5 o p_95252_ + 6 o p_95253_ + 7 o p_95254_ + 8 o p_95255_ +ers net/minecraft/client/gui/font/glyphs/EmptyGlyph + a f_232594_ + ()V + static + ()V + a (ZFFLorg/joml/Matrix4f;Lein;FFFFI)V m_5626_ + 0 o p_95278_ + 1 o p_95279_ + 2 o p_95280_ + 3 o p_253794_ + 4 o p_95282_ + 5 o p_95283_ + 6 o p_95284_ + 7 o p_95285_ + 8 o p_95286_ + 9 o p_95287_ +ert net/minecraft/client/gui/font/glyphs/SpecialGlyphs + a WHITE + b MISSING + c f_232598_ + d $VALUES + ()V + static + (Ljava/lang/String;ILjava/util/function/Supplier;)V + 0 o p_232602_ + 1 o p_232603_ + 2 o p_232604_ + a (IILert$a;)Lehk; m_232608_ + static + 0 o p_232609_ + 1 o p_232610_ + 2 o p_232611_ + a (II)I m_232605_ + static + 0 o p_232606_ + 1 o p_232607_ + b (II)I m_232612_ + static + 0 o p_232613_ + 1 o p_232614_ + bake (Ljava/util/function/Function;)Lerr; m_213604_ + 0 o p_232616_ + c ()Lehk; m_232617_ + static + d ()Lehk; m_232618_ + static + e ()[Lert; m_232619_ + static + getAdvance ()F m_7403_ + valueOf (Ljava/lang/String;)Lert; valueOf + static + 0 o p_232622_ + values ()[Lert; values + static +ert$1 net/minecraft/client/gui/font/glyphs/SpecialGlyphs$1 + a f_232624_ + (Lert;)V + 0 o p_232626_ + a (II)V m_213958_ + 0 o p_232629_ + 1 o p_232630_ + a ()I m_213962_ + b ()I m_213961_ + c ()Z m_213965_ + d ()F m_213963_ +ert$a net/minecraft/client/gui/font/glyphs/SpecialGlyphs$PixelProvider + getColor (II)I m_232634_ + 0 o p_232635_ + 1 o p_232636_ +eru net/minecraft/client/gui/font/glyphs/package-info +erv net/minecraft/client/gui/font/package-info +erw net/minecraft/client/gui/font/providers/BitmapProvider + a f_95328_ + b f_95329_ + c f_95330_ + ()V + static + (Lehk;Lerl;)V + 0 o p_285380_ + 1 o p_285445_ + a ()Lit/unimi/dsi/fastutil/ints/IntSet; m_6990_ + a (I)Legl; m_214022_ + 0 o p_232638_ + close ()V close +erw$a net/minecraft/client/gui/font/providers/BitmapProvider$Definition + a f_285606_ + c f_285631_ + d f_285660_ + e f_285577_ + f f_285611_ + g f_285599_ + ()V + static + (Lacq;II[[I)V + 0 o f_285631_ + 1 o f_285660_ + 2 o f_285577_ + 3 o f_285611_ + a (Lehk;IIII)I m_285979_ + 0 o p_286449_ + 1 o p_286656_ + 2 o p_286554_ + 3 o p_286657_ + 4 o p_286307_ + a (Ljava/util/List;)[[I m_285986_ + static + 0 o p_286900_ + a (Lerw$a;)Lcom/mojang/serialization/DataResult; m_285746_ + static + 0 o p_286662_ + a (Lakx;)Legm; m_286048_ + 0 o p_286694_ + a ([[I)Lcom/mojang/serialization/DataResult; m_285860_ + static + 0 o p_286348_ + a ([II)Ljava/lang/String; m_285761_ + static + 0 o p_286712_ + 1 o p_286790_ + a (I)[[Lerw$b; m_285954_ + static + 0 o p_286759_ + a (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; m_285930_ + static + 0 o p_286905_ + a ()Lery; m_285843_ + b (Lerw$a;)Ljava/lang/String; m_285989_ + static + 0 o p_286688_ + b ([[I)Ljava/util/List; m_286109_ + static + 0 o p_286828_ + b (I)[Lerw$b; m_285991_ + static + 0 o p_286343_ + b ()Lcom/mojang/datafixers/util/Either; m_285782_ + c ()Lacq; f_285631_ + d ()I f_285660_ + e ()I f_285577_ + equals (Ljava/lang/Object;)Z equals + 0 o p_286334_ + f ()[[I f_285611_ + g ()Ljava/lang/String; m_286085_ + static + h ()Ljava/lang/String; m_285912_ + static + hashCode ()I hashCode + toString ()Ljava/lang/String; toString +erw$b net/minecraft/client/gui/font/providers/BitmapProvider$Glyph + a f_95363_ + b f_95364_ + c f_95365_ + d f_95366_ + e f_95367_ + f f_95368_ + g f_95369_ + h f_95370_ + (FLehk;IIIIII)V + 0 o f_95363_ + 1 o f_95364_ + 2 o f_95365_ + 3 o f_95366_ + 4 o f_95367_ + 5 o f_95368_ + 6 o f_95369_ + 7 o f_95370_ + bake (Ljava/util/function/Function;)Lerr; m_213604_ + 0 o p_232640_ + c ()F f_95363_ + d ()Lehk; f_95364_ + e ()I f_95365_ + equals (Ljava/lang/Object;)Z equals + 0 o p_232645_ + f ()I f_95366_ + g ()I f_95367_ + getAdvance ()F m_7403_ + h ()I f_95368_ + hashCode ()I hashCode + i ()I f_95369_ + j ()I f_95370_ + toString ()Ljava/lang/String; toString +erw$b$1 net/minecraft/client/gui/font/providers/BitmapProvider$Glyph$1 + a f_232653_ + (Lerw$b;)V + 0 o p_232655_ + a (II)V m_213958_ + 0 o p_232658_ + 1 o p_232659_ + a ()I m_213962_ + b ()I m_213961_ + c ()Z m_213965_ + d ()F m_213963_ + j ()F m_213964_ +erx net/minecraft/client/gui/font/providers/GlyphProviderDefinition + b f_285650_ + ()V + static + a (Lery;)Lcom/mojang/serialization/Codec; m_286025_ + static + 0 o p_286256_ + a ()Lery; m_285843_ + b ()Lcom/mojang/datafixers/util/Either; m_285782_ +erx$a net/minecraft/client/gui/font/providers/GlyphProviderDefinition$Loader + load (Lakx;)Legm; m_285964_ + 0 o p_286639_ +erx$b net/minecraft/client/gui/font/providers/GlyphProviderDefinition$Reference + a f_285563_ + (Lacq;)V + 0 o f_285563_ + a ()Lacq; f_285563_ + equals (Ljava/lang/Object;)Z equals + 0 o p_286392_ + hashCode ()I hashCode + toString ()Ljava/lang/String; toString +ery net/minecraft/client/gui/font/providers/GlyphProviderType + a BITMAP + b TTF + c SPACE + d UNIHEX + e REFERENCE + f f_285607_ + g f_285630_ + h f_285583_ + i $VALUES + ()V + static + (Ljava/lang/String;ILjava/lang/String;Lcom/mojang/serialization/MapCodec;)V + 0 o p_286896_ + 1 o p_286631_ + 2 o p_286573_ + 3 o p_286248_ + a ()Lcom/mojang/serialization/MapCodec; m_285822_ + b ()[Lery; m_285865_ + static + c ()Ljava/lang/String; m_7912_ + valueOf (Ljava/lang/String;)Lery; valueOf + static + 0 o p_286399_ + values ()[Lery; values + static +erz net/minecraft/client/gui/font/providers/ProviderReferenceDefinition + a f_285617_ + c f_285571_ + ()V + static + (Lacq;)V + 0 o f_285571_ + a (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; m_286001_ + static + 0 o p_286521_ + a ()Lery; m_285843_ + b ()Lcom/mojang/datafixers/util/Either; m_285782_ + c ()Lacq; f_285571_ + equals (Ljava/lang/Object;)Z equals + 0 o p_286305_ + hashCode ()I hashCode + toString ()Ljava/lang/String; toString +es net/minecraft/commands/arguments/ResourceOrTagKeyArgument + a f_244586_ + b f_243745_ + ()V + static + (Lacp;)V + 0 o p_248579_ + a (Lcom/mojang/brigadier/context/CommandContext;Ljava/lang/String;Lacp;Lcom/mojang/brigadier/exceptions/DynamicCommandExceptionType;)Les$c; m_246379_ + static + 0 o p_252162_ + 1 o p_248628_ + 2 o p_249008_ + 3 o p_251387_ + a (Lacp;)Les; m_247494_ + static + 0 o p_249175_ + a (Lcom/mojang/brigadier/StringReader;)Les$c; parse + 0 o p_250307_ + a (Lcom/mojang/brigadier/exceptions/DynamicCommandExceptionType;Les$c;)Lcom/mojang/brigadier/exceptions/CommandSyntaxException; m_246963_ + static + 0 o p_248809_ + 1 o p_250573_ + getExamples ()Ljava/util/Collection; getExamples + listSuggestions (Lcom/mojang/brigadier/context/CommandContext;Lcom/mojang/brigadier/suggestion/SuggestionsBuilder;)Ljava/util/concurrent/CompletableFuture; listSuggestions + 0 o p_251659_ + 1 o p_251141_ + parse (Lcom/mojang/brigadier/StringReader;)Ljava/lang/Object; parse + 0 o p_248934_ +es$a net/minecraft/commands/arguments/ResourceOrTagKeyArgument$Info + ()V + a (Les$a$a;Lsf;)V m_214155_ + 0 o p_252211_ + 1 o p_248784_ + a (Lgg$a;Lcom/google/gson/JsonObject;)V m_213719_ + 0 o p_252086_ + 1 o p_252302_ + a (Les;)Les$a$a; m_214163_ + 0 o p_250422_ + a (Lcom/mojang/brigadier/arguments/ArgumentType;)Lgg$a; m_214163_ + 0 o p_252277_ + a (Les$a$a;Lcom/google/gson/JsonObject;)V m_213719_ + 0 o p_250715_ + 1 o p_249208_ + a (Lgg$a;Lsf;)V m_214155_ + 0 o p_250670_ + 1 o p_250155_ + a (Lsf;)Les$a$a; m_213618_ + 0 o p_250656_ + b (Lsf;)Lgg$a; m_213618_ + 0 o p_249850_ +es$a$a net/minecraft/commands/arguments/ResourceOrTagKeyArgument$Info$Template + a f_244288_ + b f_243844_ + (Les$a;Lacp;)V + 0 o p_249026_ + 1 o p_251992_ + a ()Lgg; m_213709_ + a (Ldm;)Les; m_213879_ + 0 o p_251559_ + b (Ldm;)Lcom/mojang/brigadier/arguments/ArgumentType; m_213879_ + 0 o p_248991_ +es$b net/minecraft/commands/arguments/ResourceOrTagKeyArgument$ResourceResult + a f_243909_ + (Lacp;)V + 0 o f_243909_ + a ()Lcom/mojang/datafixers/util/Either; m_245276_ + a (Lhe;)Z test + 0 o p_250257_ + a (Lacp;)Ljava/util/Optional; m_245137_ + 0 o p_251369_ + b ()Ljava/lang/String; m_245390_ + c ()Lacp; f_243909_ + equals (Ljava/lang/Object;)Z equals + 0 o p_251998_ + hashCode ()I hashCode + test (Ljava/lang/Object;)Z test + 0 o p_251305_ + toString ()Ljava/lang/String; toString +es$c net/minecraft/commands/arguments/ResourceOrTagKeyArgument$Result + a ()Lcom/mojang/datafixers/util/Either; m_245276_ + a (Lacp;)Ljava/util/Optional; m_245137_ + 0 o p_251612_ + b ()Ljava/lang/String; m_245390_ +es$d net/minecraft/commands/arguments/ResourceOrTagKeyArgument$TagResult + a f_244059_ + (Lanl;)V + 0 o f_244059_ + a ()Lcom/mojang/datafixers/util/Either; m_245276_ + a (Lhe;)Z test + 0 o p_252238_ + a (Lacp;)Ljava/util/Optional; m_245137_ + 0 o p_251833_ + b ()Ljava/lang/String; m_245390_ + c ()Lanl; f_244059_ + equals (Ljava/lang/Object;)Z equals + 0 o p_249677_ + hashCode ()I hashCode + test (Ljava/lang/Object;)Z test + 0 o p_250426_ + toString ()Ljava/lang/String; toString +esa net/minecraft/client/gui/font/providers/TrueTypeGlyphProviderDefinition + a f_285645_ + c f_285564_ + d f_285590_ + e f_285576_ + f f_285584_ + g f_285657_ + h f_285652_ + ()V + static + (Lacq;FFLesa$a;Ljava/lang/String;)V + 0 o f_285564_ + 1 o f_285590_ + 2 o f_285576_ + 3 o f_285584_ + 4 o f_285657_ + a (Lakx;)Legm; m_285764_ + 0 o p_286229_ + a (Ljava/lang/String;)Ljava/lang/String; m_286082_ + static + 0 o p_286306_ + a (Lcom/mojang/datafixers/util/Either;)Ljava/lang/String; m_285839_ + static + 0 o p_286728_ + a (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; m_286057_ + static + 0 o p_286284_ + a ()Lery; m_285843_ + a (Ljava/util/List;)Ljava/lang/String; m_285849_ + static + 0 o p_286852_ + b ()Lcom/mojang/datafixers/util/Either; m_285782_ + c ()Lacq; f_285564_ + d ()F f_285590_ + e ()F f_285576_ + equals (Ljava/lang/Object;)Z equals + 0 o p_286854_ + f ()Lesa$a; f_285584_ + g ()Ljava/lang/String; f_285657_ + hashCode ()I hashCode + toString ()Ljava/lang/String; toString +esa$a net/minecraft/client/gui/font/providers/TrueTypeGlyphProviderDefinition$Shift + a f_285613_ + b f_285647_ + c f_285596_ + d f_285597_ + ()V + static + (FF)V + 0 o f_285596_ + 1 o f_285597_ + a (Ljava/util/List;)Lcom/mojang/serialization/DataResult; m_285877_ + static + 0 o p_286374_ + a (Lesa$a;)Ljava/util/List; m_285852_ + static + 0 o p_286274_ + a ()F f_285596_ + b (Ljava/util/List;)Lesa$a; m_285960_ + static + 0 o p_286746_ + b ()F f_285597_ + equals (Ljava/lang/Object;)Z equals + 0 o p_286407_ + hashCode ()I hashCode + toString ()Ljava/lang/String; toString +esb net/minecraft/client/gui/font/providers/UnihexProvider + a f_283764_ + b f_283936_ + c f_283802_ + d f_283803_ + e f_283929_ + f f_283800_ + g f_283867_ + h f_283901_ + ()V + static + (Lerl;)V + 0 o p_285457_ + a (Ljava/nio/IntBuffer;III)V m_284420_ + static + 0 o p_285211_ + 1 o p_285508_ + 2 o p_285312_ + 3 o p_285412_ + a (ILit/unimi/dsi/fastutil/bytes/ByteList;I)I m_284323_ + static + 0 o p_285205_ + 1 o p_285268_ + 2 o p_285345_ + a ()Lit/unimi/dsi/fastutil/ints/IntSet; m_6990_ + a (IB)I m_284556_ + static + 0 o p_284952_ + 1 o p_285036_ + a (Ljava/nio/IntBuffer;Lesb$f;II)V m_284448_ + static + 0 o p_285283_ + 1 o p_285485_ + 2 o p_284940_ + 3 o p_284950_ + a (Ljava/io/InputStream;Lit/unimi/dsi/fastutil/bytes/ByteList;I)Z m_284179_ + static + 0 o p_284994_ + 1 o p_285351_ + 2 o p_285177_ + a (I)Legl; m_214022_ + 0 o p_285239_ + a (Ljava/io/InputStream;Lesb$h;)V m_284537_ + static + 0 o p_285315_ + 1 o p_285353_ +esb$a net/minecraft/client/gui/font/providers/UnihexProvider$ByteContents + a f_283836_ + ([B)V + 0 o f_283836_ + a (I)I m_284144_ + 0 o p_285203_ + a ()I m_284266_ + a (ILit/unimi/dsi/fastutil/bytes/ByteList;)Lesb$f; m_284446_ + static + 0 o p_285080_ + 1 o p_285481_ + b ()[B f_283836_ + equals (Ljava/lang/Object;)Z equals + 0 o p_284989_ + hashCode ()I hashCode + toString ()Ljava/lang/String; toString +esb$b net/minecraft/client/gui/font/providers/UnihexProvider$Definition + a f_285591_ + c f_285560_ + d f_285626_ + ()V + static + (Lacq;Ljava/util/List;)V + 0 o p_286378_ + 1 o p_286770_ + a (Lerl;ILesb$f;)V m_285853_ + static + 0 o p_286415_ + 1 o p_286721_ + 2 o p_286722_ + a (Lakx;)Legm; m_285976_ + 0 o p_286472_ + a (Ljava/io/InputStream;)Lesb; m_285832_ + 0 o p_286795_ + a (Lesb$b;)Ljava/util/List; m_286103_ + static + 0 o p_286528_ + a (I)[[Lesb$d; m_285914_ + static + 0 o p_286340_ + a (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; m_285863_ + static + 0 o p_286579_ + a ()Lery; m_285843_ + b (Lesb$b;)Lacq; m_285801_ + static + 0 o p_286591_ + b ()Lcom/mojang/datafixers/util/Either; m_285782_ + b (I)[Lesb$d; m_285918_ + static + 0 o p_286831_ + c (I)[[Lesb$f; m_286098_ + static + 0 o p_286615_ + d (I)[Lesb$f; m_285894_ + static + 0 o p_286908_ +esb$c net/minecraft/client/gui/font/providers/UnihexProvider$Dimensions + a f_283777_ + b f_283924_ + c f_283768_ + d f_283776_ + ()V + static + (II)V + 0 o f_283768_ + 1 o f_283776_ + a (I)I m_284152_ + static + 0 o p_285195_ + a (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; m_284253_ + static + 0 o p_285497_ + a ()I m_284373_ + a (II)I m_284209_ + static + 0 o p_285339_ + 1 o p_285120_ + b (I)I m_284305_ + static + 0 o p_285419_ + b ()I f_283768_ + c ()I f_283776_ + equals (Ljava/lang/Object;)Z equals + 0 o p_285019_ + hashCode ()I hashCode + toString ()Ljava/lang/String; toString +esb$d net/minecraft/client/gui/font/providers/UnihexProvider$Glyph + a f_283857_ + b f_283887_ + c f_283848_ + (Lesb$f;II)V + 0 o f_283857_ + 1 o f_283887_ + 2 o f_283848_ + a ()F m_5619_ + b ()F m_5645_ + bake (Ljava/util/function/Function;)Lerr; m_213604_ + 0 o p_285377_ + c ()I m_284480_ + d ()Lesb$f; f_283857_ + e ()I f_283887_ + equals (Ljava/lang/Object;)Z equals + 0 o p_285317_ + f ()I f_283848_ + getAdvance ()F m_7403_ + hashCode ()I hashCode + toString ()Ljava/lang/String; toString +esb$d$1 net/minecraft/client/gui/font/providers/UnihexProvider$Glyph$1 + a f_283899_ + (Lesb$d;)V + 0 o p_285151_ + a (II)V m_213958_ + 0 o p_285473_ + 1 o p_285510_ + a ()I m_213962_ + b ()I m_213961_ + c ()Z m_213965_ + d ()F m_213963_ +esb$e net/minecraft/client/gui/font/providers/UnihexProvider$IntContents + a f_283738_ + b f_283787_ + c f_283925_ + ([II)V + 0 o f_283738_ + 1 o f_283787_ + a (I)I m_284144_ + 0 o p_285172_ + a ()I m_284266_ + a (ILit/unimi/dsi/fastutil/bytes/ByteList;)Lesb$f; m_284358_ + static + 0 o p_285222_ + 1 o p_285346_ + b ()[I f_283738_ + b (ILit/unimi/dsi/fastutil/bytes/ByteList;)Lesb$f; m_284350_ + static + 0 o p_285362_ + 1 o p_285123_ + equals (Ljava/lang/Object;)Z equals + 0 o p_285302_ + hashCode ()I hashCode + toString ()Ljava/lang/String; toString +esb$f net/minecraft/client/gui/font/providers/UnihexProvider$LineData + a (I)I m_284144_ + 0 o p_285166_ + a ()I m_284266_ + c ()I m_284440_ + d ()I m_284261_ +esb$g net/minecraft/client/gui/font/providers/UnihexProvider$OverrideRange + a f_283923_ + b f_283797_ + c f_283851_ + d f_283891_ + e f_283834_ + ()V + static + (IILesb$c;)V + 0 o f_283797_ + 1 o f_283851_ + 2 o f_283891_ + a (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; m_284139_ + static + 0 o p_285088_ + a ()I f_283797_ + a (Lesb$g;)Lcom/mojang/serialization/DataResult; m_284184_ + static + 0 o p_285215_ + b (Lesb$g;)Ljava/lang/String; m_284308_ + static + 0 o p_285095_ + b ()I f_283851_ + c ()Lesb$c; f_283891_ + equals (Ljava/lang/Object;)Z equals + 0 o p_285264_ + hashCode ()I hashCode + toString ()Ljava/lang/String; toString +esb$h net/minecraft/client/gui/font/providers/UnihexProvider$ReaderOutput + accept (ILesb$f;)V m_284281_ + 0 o p_285139_ + 1 o p_284982_ +esb$i net/minecraft/client/gui/font/providers/UnihexProvider$ShortContents + a f_283874_ + ([S)V + 0 o f_283874_ + a (I)I m_284144_ + 0 o p_285158_ + a ()I m_284266_ + a (ILit/unimi/dsi/fastutil/bytes/ByteList;)Lesb$f; m_284334_ + static + 0 o p_285528_ + 1 o p_284958_ + b ()[S f_283874_ + equals (Ljava/lang/Object;)Z equals + 0 o p_284987_ + hashCode ()I hashCode + toString ()Ljava/lang/String; toString +esc net/minecraft/client/gui/font/providers/package-info +esd net/minecraft/client/gui/layouts/AbstractLayout + a f_263674_ + b f_263818_ + c f_263829_ + d f_263844_ + (IIII)V + 0 o p_265185_ + 1 o p_265789_ + 2 o p_265792_ + 3 o p_265443_ + a (ILesi;)V m_264378_ + 0 o p_265589_ + 1 o p_265586_ + b (ILesi;)V m_264178_ + 0 o p_265356_ + 1 o p_265043_ + e (I)V m_252865_ + 0 o p_265701_ + f (I)V m_253211_ + 0 o p_265155_ + h ()I m_93694_ + k ()I m_5711_ + p ()I m_252754_ + r ()I m_252907_ +esd$a net/minecraft/client/gui/layouts/AbstractLayout$AbstractChildWrapper + a f_263728_ + b f_263678_ + (Lesi;Lesj;)V + 0 o p_265145_ + 1 o p_265309_ + a (II)V m_264032_ + 0 o p_265766_ + 1 o p_265689_ + a ()I m_264608_ + b (II)V m_264572_ + 0 o p_265384_ + 1 o p_265375_ + b ()I m_264477_ +ese net/minecraft/client/gui/layouts/FrameLayout + c f_263788_ + d f_263834_ + e f_263810_ + f f_263739_ + (IIII)V + 0 o p_265719_ + 1 o p_265042_ + 2 o p_265587_ + 3 o p_265682_ + (II)V + 0 o p_270073_ + 1 o p_270705_ + ()V + a (Lesi;Lesz;FF)V m_274605_ + static + 0 o p_275320_ + 1 o p_275389_ + 2 o p_275607_ + 3 o p_275662_ + a ()Lesj; m_264364_ + a (Lesi;)Lesi; m_264557_ + 0 o p_265071_ + a (Lesi;Lesz;)V m_267781_ + static + 0 o p_268229_ + 1 o p_268113_ + a (Lesi;IIIIFF)V m_264460_ + static + 0 o p_265662_ + 1 o p_265497_ + 2 o p_265030_ + 3 o p_265535_ + 4 o p_265427_ + 5 o p_265271_ + 6 o p_265365_ + a (I)Lese; m_264240_ + 0 o p_265646_ + a (Lesi;IIII)V m_264159_ + static + 0 o p_265197_ + 1 o p_265518_ + 2 o p_265334_ + 3 o p_265540_ + 4 o p_265632_ + a (IIILjava/util/function/Consumer;F)V m_264274_ + static + 0 o p_265164_ + 1 o p_265100_ + 2 o p_265351_ + 3 o p_265614_ + 4 o p_265428_ + a (Lesi;Lesj;)Lesi; m_264564_ + 0 o p_265386_ + 1 o p_265532_ + a (II)Lese; m_264232_ + 0 o p_265169_ + 1 o p_265616_ + a (Ljava/util/function/Consumer;Lese$a;)V m_264122_ + static + 0 o p_265115_ + 1 o p_265653_ + b ()Lesj; m_264088_ + b (I)Lese; m_264444_ + 0 o p_265764_ + b (Ljava/util/function/Consumer;)V m_264090_ + 0 o p_265070_ + c ()V m_264036_ +ese$a net/minecraft/client/gui/layouts/FrameLayout$ChildContainer + (Lesi;Lesj;)V + 0 o p_265667_ + 1 o p_265430_ +esf net/minecraft/client/gui/layouts/GridLayout + c f_263670_ + d f_263660_ + e f_263692_ + f f_267432_ + g f_267488_ + (II)V + 0 o p_265045_ + 1 o p_265035_ + ()V + a (Lesi;IILesj;)Lesi; m_264075_ + 0 o p_265061_ + 1 o p_265080_ + 2 o p_265105_ + 3 o p_265057_ + a (Lesi;IIII)Lesi; m_264188_ + 0 o p_265590_ + 1 o p_265556_ + 2 o p_265323_ + 3 o p_265531_ + 4 o p_265352_ + a ()Lesj; m_264626_ + a (I)Lesf; m_267749_ + 0 o p_268135_ + a (Lesi;II)Lesi; m_264379_ + 0 o p_265485_ + 1 o p_265720_ + 2 o p_265679_ + a (Lesi;IIIILesj;)Lesi; m_264167_ + 0 o p_265031_ + 1 o p_265582_ + 2 o p_265782_ + 3 o p_265612_ + 4 o p_265448_ + 5 o p_265579_ + b ()Lesj; m_264211_ + b (I)Lesf; m_267750_ + 0 o p_268237_ + b (Ljava/util/function/Consumer;)V m_264090_ + 0 o p_265389_ + c (I)Lesf; m_267612_ + 0 o p_268351_ + c ()V m_264036_ + d (I)Lesf$b; m_264606_ + 0 o p_265327_ +esf$a net/minecraft/client/gui/layouts/GridLayout$CellInhabitant + c f_263652_ + d f_263837_ + e f_263786_ + f f_263773_ + (Lesi;IIIILesj;)V + 0 o p_265063_ + 1 o p_265675_ + 2 o p_265198_ + 3 o p_265625_ + 4 o p_265517_ + 5 o p_265036_ + c ()I m_264275_ + d ()I m_264085_ +esf$b net/minecraft/client/gui/layouts/GridLayout$RowHelper + a f_263754_ + b f_263722_ + c f_263661_ + (Lesf;I)V + 0 o p_265452_ + 1 o p_265633_ + a (Lesi;Lesj;)Lesi; m_264206_ + 0 o p_265411_ + 1 o p_265755_ + a (Lesi;)Lesi; m_264139_ + 0 o p_265455_ + a (Lesi;ILesj;)Lesi; m_264276_ + 0 o p_265200_ + 1 o p_265044_ + 2 o p_265797_ + a (Lesi;I)Lesi; m_264108_ + 0 o p_265413_ + 1 o p_265491_ + a ()Lesf; m_267613_ + b ()Lesj; m_264551_ + c ()Lesj; m_264502_ +esg net/minecraft/client/gui/layouts/HeaderAndFooterLayout + a f_268474_ + b f_276136_ + c f_268720_ + d f_268592_ + e f_268466_ + f f_268706_ + g f_268509_ + h f_268680_ + (Leuq;)V + 0 o p_270234_ + (Leuq;I)V + 0 o p_270404_ + 1 o p_270984_ + (Leuq;II)V + 0 o p_270083_ + 1 o p_270134_ + 2 o p_270996_ + a (I)V m_269413_ + 0 o p_270260_ + a ()I m_269040_ + a (Lesi;)Lesi; m_269471_ + 0 o p_270636_ + a (Lesi;Lesj;)Lesi; m_269342_ + 0 o p_270870_ + 1 o p_270558_ + b (I)V m_269376_ + 0 o p_270135_ + b ()I m_269355_ + b (Lesi;)Lesi; m_269281_ + 0 o p_270951_ + b (Lesi;Lesj;)Lesi; m_269450_ + 0 o p_270362_ + 1 o p_270492_ + b (Ljava/util/function/Consumer;)V m_264090_ + 0 o p_270213_ + c (Lesi;)Lesi; m_268999_ + 0 o p_270895_ + c (Lesi;Lesj;)Lesi; m_269340_ + 0 o p_270611_ + 1 o p_270075_ + c ()V m_264036_ + d ()Lesj; m_269068_ + e ()Lesj; m_269403_ + e (I)V m_252865_ + 0 o p_270309_ + f ()Lesj; m_269493_ + f (I)V m_253211_ + 0 o p_270318_ + h ()I m_93694_ + k ()I m_5711_ + p ()I m_252754_ + r ()I m_252907_ +esh net/minecraft/client/gui/layouts/Layout + a (Ljava/util/function/Consumer;)V m_264134_ + 0 o p_270962_ + a (Ljava/util/function/Consumer;Lesi;)V m_269147_ + static + 0 o p_270412_ + 1 o p_270634_ + a (Lesi;)V m_269338_ + static + 0 o p_270565_ + b (Ljava/util/function/Consumer;)V m_264090_ + 0 o p_270255_ + c ()V m_264036_ +esi net/minecraft/client/gui/layouts/LayoutElement + a (Ljava/util/function/Consumer;)V m_264134_ + 0 o p_265082_ + b (II)V m_264152_ + 0 o p_265617_ + 1 o p_265577_ + e (I)V m_252865_ + 0 o p_265236_ + f (I)V m_253211_ + 0 o p_265404_ + h ()I m_93694_ + k ()I m_5711_ + p ()I m_252754_ + r ()I m_252907_ + s ()Lesz; m_264198_ +esj net/minecraft/client/gui/layouts/LayoutSettings + a (F)Lesj; m_264498_ + 0 o p_265729_ + a (FF)Lesj; m_264510_ + 0 o p_265408_ + 1 o p_265269_ + a ()Lesj; m_264463_ + a (IIII)Lesj; m_264129_ + 0 o p_265186_ + 1 o p_265177_ + 2 o p_265631_ + 3 o p_265369_ + a (I)Lesj; m_264174_ + 0 o p_265143_ + a (II)Lesj; m_264414_ + 0 o p_265473_ + 1 o p_265776_ + b (F)Lesj; m_264221_ + 0 o p_265557_ + b ()Lesj; m_264356_ + b (I)Lesj; m_264400_ + 0 o p_265709_ + c (I)Lesj; m_264311_ + 0 o p_265644_ + c ()Lesj; m_264443_ + d (I)Lesj; m_264398_ + 0 o p_265608_ + d ()Lesj; m_264070_ + e ()Lesj; m_264623_ + e (I)Lesj; m_264154_ + 0 o p_265758_ + f ()Lesj; m_264524_ + f (I)Lesj; m_264215_ + 0 o p_265366_ + g ()Lesj; m_264040_ + g (I)Lesj; m_264184_ + 0 o p_265142_ + h ()Lesj$a; m_264426_ + i ()Lesj; m_264214_ + static +esj$a net/minecraft/client/gui/layouts/LayoutSettings$LayoutSettingsImpl + a f_263656_ + b f_263738_ + c f_263822_ + d f_263651_ + e f_263758_ + f f_263809_ + (Lesj$a;)V + 0 o p_265146_ + ()V + a (FF)Lesj; m_264510_ + 0 o p_265220_ + 1 o p_265090_ + a (IIII)Lesj; m_264129_ + 0 o p_265451_ + 1 o p_265250_ + 2 o p_265046_ + 3 o p_265460_ + a (I)Lesj; m_264174_ + 0 o p_265565_ + a (F)Lesj; m_264498_ + 0 o p_265464_ + a (II)Lesj; m_264414_ + 0 o p_265353_ + 1 o p_265444_ + b (IIII)Lesj$a; m_264129_ + 0 o p_265241_ + 1 o p_265325_ + 2 o p_265634_ + 3 o p_265174_ + b (I)Lesj; m_264400_ + 0 o p_265028_ + b (F)Lesj; m_264221_ + 0 o p_265439_ + b (II)Lesj$a; m_264414_ + 0 o p_265284_ + 1 o p_265730_ + b (FF)Lesj$a; m_264510_ + 0 o p_265459_ + 1 o p_265051_ + c (F)Lesj$a; m_264498_ + 0 o p_265331_ + c (I)Lesj; m_264311_ + 0 o p_265588_ + d (I)Lesj; m_264398_ + 0 o p_265078_ + d (F)Lesj$a; m_264221_ + 0 o p_265657_ + e (I)Lesj; m_264154_ + 0 o p_265748_ + f (I)Lesj; m_264215_ + 0 o p_265242_ + g ()Lesj; m_264040_ + g (I)Lesj; m_264184_ + 0 o p_265523_ + h (I)Lesj$a; m_264174_ + 0 o p_265467_ + h ()Lesj$a; m_264426_ + i (I)Lesj$a; m_264400_ + 0 o p_265137_ + j ()Lesj$a; m_264040_ + j (I)Lesj$a; m_264311_ + 0 o p_265512_ + k (I)Lesj$a; m_264398_ + 0 o p_265595_ + l (I)Lesj$a; m_264154_ + 0 o p_265336_ + m (I)Lesj$a; m_264215_ + 0 o p_265592_ + n (I)Lesj$a; m_264184_ + 0 o p_265151_ +esk net/minecraft/client/gui/layouts/LinearLayout + c f_263650_ + d f_263711_ + e f_263686_ + (IILesk$b;)V + 0 o p_265093_ + 1 o p_265502_ + 2 o p_265112_ + (IIIILesk$b;)V + 0 o p_265489_ + 1 o p_265500_ + 2 o p_265233_ + 3 o p_265301_ + 4 o p_265341_ + a (Lesi;Lesj;)Lesi; m_264512_ + 0 o p_265475_ + 1 o p_265684_ + a ()Lesj; m_264453_ + a (Ljava/util/function/Consumer;Lesk$a;)V m_264223_ + static + 0 o p_265157_ + 1 o p_265178_ + a (Lesi;)Lesi; m_264406_ + 0 o p_265140_ + b ()Lesj; m_264286_ + b (Ljava/util/function/Consumer;)V m_264090_ + 0 o p_265508_ + c ()V m_264036_ +esk$1 net/minecraft/client/gui/layouts/LinearLayout$1 + a f_263841_ + ()V + static +esk$a net/minecraft/client/gui/layouts/LinearLayout$ChildContainer + (Lesi;Lesj;)V + 0 o p_265706_ + 1 o p_265131_ +esk$b net/minecraft/client/gui/layouts/LinearLayout$Orientation + a HORIZONTAL + b VERTICAL + c $VALUES + ()V + static + (Ljava/lang/String;I)V + 0 o p_265610_ + 1 o p_265277_ + a ()[Lesk$b; m_264596_ + static + a (Lesk$a;I)V m_264587_ + 0 o p_265660_ + 1 o p_265194_ + a (Lesi;)I m_264056_ + 0 o p_265322_ + a (Lesk$a;)I m_264173_ + 0 o p_265173_ + a (Lesk$a;II)V m_264630_ + 0 o p_265536_ + 1 o p_265313_ + 2 o p_265295_ + b (Lesk$a;)I m_264503_ + 0 o p_265345_ + b (Lesi;)I m_264137_ + 0 o p_265570_ + c (Lesi;)I m_264407_ + 0 o p_265209_ + d (Lesi;)I m_264117_ + 0 o p_265676_ + valueOf (Ljava/lang/String;)Lesk$b; valueOf + static + 0 o p_265307_ + values ()[Lesk$b; values + static +esl net/minecraft/client/gui/layouts/SpacerElement + a f_263668_ + b f_263726_ + c f_263679_ + d f_263666_ + (IIII)V + 0 o p_265199_ + 1 o p_265495_ + 2 o p_265101_ + 3 o p_265469_ + (II)V + 0 o p_265229_ + 1 o p_265527_ + a (Ljava/util/function/Consumer;)V m_264134_ + 0 o p_265477_ + a (I)Lesl; m_264527_ + static + 0 o p_265056_ + b (I)Lesl; m_264252_ + static + 0 o p_265087_ + e (I)V m_252865_ + 0 o p_265605_ + f (I)V m_253211_ + 0 o p_265406_ + h ()I m_93694_ + k ()I m_5711_ + p ()I m_252754_ + r ()I m_252907_ +esm net/minecraft/client/gui/layouts/package-info +esn net/minecraft/client/gui/narration/NarratableEntry + aD_ ()Z m_142518_ + q ()Lesn$a; m_142684_ +esn$a net/minecraft/client/gui/narration/NarratableEntry$NarrationPriority + a NONE + b HOVERED + c FOCUSED + d $VALUES + ()V + static + (Ljava/lang/String;I)V + 0 o p_169121_ + 1 o p_169122_ + a ()Z m_169123_ + b ()[Lesn$a; m_169124_ + static + valueOf (Ljava/lang/String;)Lesn$a; valueOf + static + 0 o p_169126_ + values ()[Lesn$a; values + static +eso net/minecraft/client/gui/narration/NarratedElementType + a TITLE + b POSITION + c HINT + d USAGE + e $VALUES + ()V + static + (Ljava/lang/String;I)V + 0 o p_169135_ + 1 o p_169136_ + a ()[Leso; m_169137_ + static + valueOf (Ljava/lang/String;)Leso; valueOf + static + 0 o p_169139_ + values ()[Leso; values + static +esp net/minecraft/client/gui/narration/NarrationElementOutput + a ()Lesp; m_142047_ + a (Leso;Ljava/lang/String;)V m_169143_ + 0 o p_169144_ + 1 o p_169145_ + a (Leso;Lesr;)V m_142549_ + 0 o p_169141_ + 1 o p_169142_ + a (Leso;Lsw;)V m_169146_ + 0 o p_169147_ + 1 o p_169148_ + a (Leso;[Lsw;)V m_169149_ + 0 o p_169150_ + 1 o p_169151_ +esq net/minecraft/client/gui/narration/NarrationSupplier + b (Lesp;)V m_142291_ + 0 o p_169152_ +esr net/minecraft/client/gui/narration/NarrationThunk + a f_169153_ + b f_169154_ + c f_169155_ + ()V + static + (Ljava/lang/Object;Ljava/util/function/BiConsumer;)V + 0 o p_169158_ + 1 o p_169159_ + a (Ljava/util/List;)Lesr; m_169162_ + static + 0 o p_169163_ + a (Ljava/util/function/Consumer;)V m_169168_ + 0 o p_169169_ + a (Ljava/util/List;Ljava/util/function/Consumer;Ljava/util/List;)V m_169164_ + static + 0 o p_169165_ + 1 o p_169166_ + 2 o p_169167_ + a (Ljava/util/function/Consumer;Lapz;)V m_169170_ + static + 0 o p_169171_ + 1 o p_169172_ + a (Lsw;)Lesr; m_169176_ + static + 0 o p_169177_ + a (Ljava/lang/String;)Lesr; m_169160_ + static + 0 o p_169161_ + a (Ljava/util/function/Consumer;Lsw;)V m_169173_ + static + 0 o p_169174_ + 1 o p_169175_ + equals (Ljava/lang/Object;)Z equals + 0 o p_169179_ + hashCode ()I hashCode +ess net/minecraft/client/gui/narration/ScreenNarrationCollector + a f_169181_ + b f_169182_ + ()V + a (Less$a;)Ljava/lang/Integer; m_169184_ + static + 0 o p_169185_ + a (ZLjava/util/function/Consumer;Less$a;Less$b;)V m_169190_ + 0 o p_169191_ + 1 o p_169192_ + 2 o p_169193_ + 3 o p_169194_ + a (Ljava/util/function/Consumer;)V m_169186_ + 0 o p_169187_ + a (Z)Ljava/lang/String; m_169188_ + 0 o p_169189_ + b (Less$a;)Leso; m_169195_ + static + 0 o p_169196_ +ess$1 net/minecraft/client/gui/narration/ScreenNarrationCollector$1 + a f_169197_ + b f_169198_ + c f_169199_ + (Less;Ljava/lang/StringBuilder;)V + 0 o p_169201_ + 1 o p_169202_ + a (Ljava/lang/String;)V accept + 0 o p_169204_ + accept (Ljava/lang/Object;)V accept + 0 o p_169206_ +ess$a net/minecraft/client/gui/narration/ScreenNarrationCollector$EntryKey + a f_169207_ + b f_169208_ + (Leso;I)V + 0 o p_169210_ + 1 o p_169211_ +ess$b net/minecraft/client/gui/narration/ScreenNarrationCollector$NarrationEntry + a f_169212_ + b f_169213_ + c f_169214_ + ()V + a (ILesr;)Less$b; m_169216_ + 0 o p_169217_ + 1 o p_169218_ +ess$c net/minecraft/client/gui/narration/ScreenNarrationCollector$Output + a f_169219_ + b f_169220_ + (Less;I)V + 0 o p_169222_ + 1 o p_169223_ + a ()Lesp; m_142047_ + a (Leso;Lesr;)V m_142549_ + 0 o p_169226_ + 1 o p_169227_ + a (Less$a;)Less$b; m_169228_ + static + 0 o p_169229_ +est net/minecraft/client/gui/narration/package-info +esu net/minecraft/client/gui/navigation/CommonInputs + ()V + a (I)Z m_278691_ + static + 0 o p_279282_ +esv net/minecraft/client/gui/navigation/FocusNavigationEvent + a ()Lesx; m_264101_ +esv$a net/minecraft/client/gui/navigation/FocusNavigationEvent$ArrowNavigation + a f_263812_ + (Lesx;)V + 0 o f_263812_ + a ()Lesx; m_264101_ + b ()Lesx; f_263812_ + equals (Ljava/lang/Object;)Z equals + 0 o p_265575_ + hashCode ()I hashCode + toString ()Ljava/lang/String; toString +esv$b net/minecraft/client/gui/navigation/FocusNavigationEvent$InitialFocus + ()V + a ()Lesx; m_264101_ +esv$c net/minecraft/client/gui/navigation/FocusNavigationEvent$TabNavigation + a f_263782_ + (Z)V + 0 o f_263782_ + a ()Lesx; m_264101_ + b ()Z f_263782_ + equals (Ljava/lang/Object;)Z equals + 0 o p_265793_ + hashCode ()I hashCode + toString ()Ljava/lang/String; toString +esw net/minecraft/client/gui/navigation/ScreenAxis + a HORIZONTAL + b VERTICAL + c $VALUES + ()V + static + (Ljava/lang/String;I)V + 0 o p_265486_ + 1 o p_265744_ + a (Z)Lesx; m_264217_ + 0 o p_265698_ + a ()Lesw; m_264385_ + b ()Lesx; m_264292_ + c ()Lesx; m_264569_ + d ()[Lesw; m_264488_ + static + valueOf (Ljava/lang/String;)Lesw; valueOf + static + 0 o p_265516_ + values ()[Lesw; values + static +esw$1 net/minecraft/client/gui/navigation/ScreenAxis$1 + a f_263669_ + ()V + static +esx net/minecraft/client/gui/navigation/ScreenDirection + a UP + b DOWN + c LEFT + d RIGHT + e f_263848_ + f $VALUES + ()V + static + (Ljava/lang/String;I)V + 0 o p_265103_ + 1 o p_265118_ + a (II)Z m_264526_ + 0 o p_265461_ + 1 o p_265553_ + a ()Lesw; m_264093_ + b (II)Z m_264627_ + 0 o p_265215_ + 1 o p_265040_ + b ()Lesx; m_264089_ + c (II)I m_264228_ + 0 o p_265081_ + 1 o p_265641_ + c ()Z m_264119_ + d ()Lit/unimi/dsi/fastutil/ints/IntComparator; m_264394_ + e ()[Lesx; m_264227_ + static + valueOf (Ljava/lang/String;)Lesx; valueOf + static + 0 o p_265244_ + values ()[Lesx; values + static +esx$1 net/minecraft/client/gui/navigation/ScreenDirection$1 + a f_263734_ + ()V + static +esy net/minecraft/client/gui/navigation/ScreenPosition + a f_263719_ + b f_263694_ + (II)V + 0 o f_263719_ + 1 o f_263694_ + a (Lesw;II)Lesy; m_264208_ + static + 0 o p_265175_ + 1 o p_265751_ + 2 o p_265120_ + a ()I f_263719_ + a (Lesx;)Lesy; m_264438_ + 0 o p_265084_ + a (Lesw;)I m_264196_ + 0 o p_265656_ + b ()I f_263694_ + equals (Ljava/lang/Object;)Z equals + 0 o p_265333_ + hashCode ()I hashCode + toString ()Ljava/lang/String; toString +esy$1 net/minecraft/client/gui/navigation/ScreenPosition$1 + a f_263709_ + b f_263713_ + ()V + static +esz net/minecraft/client/gui/navigation/ScreenRectangle + a f_263846_ + b f_263770_ + c f_263800_ + d f_263720_ + ()V + static + (IIII)V + 0 o p_265721_ + 1 o p_265116_ + 2 o p_265225_ + 3 o p_265493_ + (Lesy;II)V + 0 o f_263846_ + 1 o f_263770_ + 2 o f_263800_ + a (Lesz;Lesw;)Z m_264632_ + 0 o p_265306_ + 1 o p_265340_ + a (Lesw;)I m_264323_ + 0 o p_265463_ + a (Lesz;)Z m_264295_ + 0 o p_265652_ + a ()Lesz; m_264427_ + static + a (Lesx;)Lesz; m_264049_ + 0 o p_265714_ + a (Lesw;IIII)Lesz; m_264109_ + static + 0 o p_265648_ + 1 o p_265317_ + 2 o p_265685_ + 3 o p_265218_ + 4 o p_265226_ + b ()I m_274449_ + b (Lesx;)I m_264095_ + 0 o p_265778_ + b (Lesw;)I m_264037_ + 0 o p_265694_ + b (Lesz;)Lesz; m_275842_ + 0 o p_276058_ + c ()I m_274349_ + c (Lesx;)Lesz; m_264525_ + 0 o p_265704_ + d ()I m_274563_ + e ()I m_274445_ + equals (Ljava/lang/Object;)Z equals + 0 o p_265117_ + f ()Lesy; f_263846_ + g ()I f_263770_ + h ()I f_263800_ + hashCode ()I hashCode + toString ()Ljava/lang/String; toString +esz$1 net/minecraft/client/gui/navigation/ScreenRectangle$1 + a f_263804_ + ()V + static +et net/minecraft/commands/arguments/ScoreHolderArgument + a f_108210_ + b f_108211_ + c f_108212_ + d f_108213_ + ()V + static + (Z)V + 0 o p_108216_ + a ()Let; m_108217_ + static + a (Lcom/mojang/brigadier/context/CommandContext;Ljava/lang/String;Ljava/util/function/Supplier;)Ljava/util/Collection; m_108226_ + static + 0 o p_108227_ + 1 o p_108228_ + 2 o p_108229_ + a (Lcom/mojang/brigadier/context/CommandContext;Ljava/lang/String;)Ljava/lang/String; m_108223_ + static + 0 o p_108224_ + 1 o p_108225_ + a (Lds;Ljava/util/function/Supplier;)Ljava/util/Collection; m_108230_ + static + 0 o p_108231_ + 1 o p_108232_ + a (Ljava/util/Collection;Lds;Ljava/util/function/Supplier;)Ljava/util/Collection; m_108235_ + static + 0 o p_108236_ + 1 o p_108237_ + 2 o p_108238_ + a (Lcom/mojang/brigadier/context/CommandContext;Lcom/mojang/brigadier/suggestion/SuggestionsBuilder;)Ljava/util/concurrent/CompletableFuture; m_108220_ + static + 0 o p_108221_ + 1 o p_108222_ + a (Lcom/mojang/brigadier/StringReader;)Let$b; parse + 0 o p_108219_ + b (Lcom/mojang/brigadier/context/CommandContext;Lcom/mojang/brigadier/suggestion/SuggestionsBuilder;)V m_171604_ + static + 0 o p_171605_ + 1 o p_171606_ + b ()Let; m_108239_ + static + b (Lcom/mojang/brigadier/context/CommandContext;Ljava/lang/String;)Ljava/util/Collection; m_108243_ + static + 0 o p_108244_ + 1 o p_108245_ + c (Lcom/mojang/brigadier/context/CommandContext;Ljava/lang/String;)Ljava/util/Collection; m_108246_ + static + 0 o p_108247_ + 1 o p_108248_ + getExamples ()Ljava/util/Collection; getExamples + parse (Lcom/mojang/brigadier/StringReader;)Ljava/lang/Object; parse + 0 o p_108251_ +et$a net/minecraft/commands/arguments/ScoreHolderArgument$Info + a f_233461_ + ()V + a (Lgg$a;Lcom/google/gson/JsonObject;)V m_213719_ + 0 o p_233474_ + 1 o p_233475_ + a (Lsf;)Let$a$a; m_213618_ + 0 o p_233480_ + a (Lcom/mojang/brigadier/arguments/ArgumentType;)Lgg$a; m_214163_ + 0 o p_233464_ + a (Let$a$a;Lcom/google/gson/JsonObject;)V m_213719_ + 0 o p_233466_ + 1 o p_233467_ + a (Lgg$a;Lsf;)V m_214155_ + 0 o p_233477_ + 1 o p_233478_ + a (Let;)Let$a$a; m_214163_ + 0 o p_233472_ + a (Let$a$a;Lsf;)V m_214155_ + 0 o p_233469_ + 1 o p_233470_ + b (Lsf;)Lgg$a; m_213618_ + 0 o p_233482_ +et$a$a net/minecraft/commands/arguments/ScoreHolderArgument$Info$Template + a f_233483_ + b f_233484_ + (Let$a;Z)V + 0 o p_233486_ + 1 o p_233487_ + a ()Lgg; m_213709_ + a (Ldm;)Let; m_213879_ + 0 o p_233490_ + b (Ldm;)Lcom/mojang/brigadier/arguments/ArgumentType; m_213879_ + 0 o p_233492_ +et$b net/minecraft/commands/arguments/ScoreHolderArgument$Result + getNames (Lds;Ljava/util/function/Supplier;)Ljava/util/Collection; m_6582_ + 0 o p_108252_ + 1 o p_108253_ +et$c net/minecraft/commands/arguments/ScoreHolderArgument$SelectorResult + a f_108254_ + (Lga;)V + 0 o p_108256_ + getNames (Lds;Ljava/util/function/Supplier;)Ljava/util/Collection; m_6582_ + 0 o p_108258_ + 1 o p_108259_ +eta net/minecraft/client/gui/navigation/package-info +etb net/minecraft/client/gui/package-info +etc net/minecraft/client/gui/screens/AccessibilityOnboardingScreen + a f_263845_ + b f_263779_ + c f_263756_ + k f_263849_ + l f_263761_ + m f_263816_ + n f_265927_ + o f_263729_ + p f_263677_ + q f_263759_ + ()V + static + (Lenr;)V + 0 o p_265483_ + B ()V m_264570_ + a (Lepi;)V m_267504_ + 0 o p_267841_ + a (Leuq;)V m_272081_ + 0 o p_272914_ + a (Leox;IIF)V m_88315_ + 0 o p_282353_ + 1 o p_265135_ + 2 o p_265032_ + 3 o p_265387_ + aw_ ()V m_7379_ + b ()V m_7856_ + b (Lepi;)V m_279746_ + 0 o p_280781_ + c (Lepi;)V m_279747_ + 0 o p_280782_ + l ()I m_264189_ +etd net/minecraft/client/gui/screens/AccessibilityOptionsScreen + (Leuq;Lenr;)V + 0 o p_95504_ + 1 o p_95505_ + a (Lepi;)V m_279750_ + 0 o p_280785_ + a (Lenr;)[Lenq; m_232690_ + static + 0 o p_232691_ + b ()V m_7856_ + b (Lepi;)V m_279749_ + 0 o p_280784_ + c (Z)V m_279748_ + 0 o p_280783_ + e ()V m_7853_ +ete net/minecraft/client/gui/screens/AlertScreen + a f_238636_ + b f_238618_ + c f_95516_ + k f_95515_ + l f_95514_ + m f_238724_ + (Ljava/lang/Runnable;Lsw;Lsw;)V + 0 o p_95519_ + 1 o p_95520_ + 2 o p_95521_ + (Ljava/lang/Runnable;Lsw;Lsw;Lsw;Z)V + 0 o p_239327_ + 1 o p_239328_ + 2 o p_239329_ + 3 o p_239330_ + 4 o p_239331_ + a (Lepi;)V m_95532_ + 0 o p_95533_ + a (Leox;IIF)V m_88315_ + 0 o p_281989_ + 1 o p_281583_ + 2 o p_282152_ + 3 o p_282198_ + au_ ()Lsw; m_142562_ + av_ ()Z m_6913_ + b ()V m_7856_ +etf net/minecraft/client/gui/screens/BackupConfirmScreen + a f_95536_ + b f_169233_ + c f_95537_ + k f_95538_ + l f_95539_ + m f_95540_ + n f_95541_ + (Leuq;Letf$a;Lsw;Lsw;Z)V + 0 o p_95543_ + 1 o p_95544_ + 2 o p_95545_ + 3 o p_95546_ + 4 o p_95547_ + a (Lepi;)V m_279751_ + 0 o p_280786_ + a (III)Z m_7933_ + 0 o p_95549_ + 1 o p_95550_ + 2 o p_95551_ + a (Leox;IIF)V m_88315_ + 0 o p_282759_ + 1 o p_282356_ + 2 o p_282725_ + 3 o p_281518_ + av_ ()Z m_6913_ + b ()V m_7856_ + b (Lepi;)V m_95561_ + 0 o p_95562_ + c (Lepi;)V m_95563_ + 0 o p_95564_ +etf$a net/minecraft/client/gui/screens/BackupConfirmScreen$Listener + proceed (ZZ)V m_95565_ + 0 o p_95566_ + 1 o p_95567_ +etg net/minecraft/client/gui/screens/BanNoticeScreen + a f_238586_ + b f_238702_ + ()V + static + ()V + a (Lit/unimi/dsi/fastutil/booleans/BooleanConsumer;Lcom/mojang/authlib/minecraft/BanDetails;)Letj; m_239967_ + static + 0 o p_239968_ + 1 o p_239969_ + a (Lcom/mojang/authlib/minecraft/BanDetails;)Lsw; m_239952_ + static + 0 o p_239953_ + b (Lcom/mojang/authlib/minecraft/BanDetails;)Lsw; m_239137_ + static + 0 o p_239138_ + c (Lcom/mojang/authlib/minecraft/BanDetails;)Lsw; m_239533_ + static + 0 o p_239534_ + d (Lcom/mojang/authlib/minecraft/BanDetails;)Lsw; m_239318_ + static + 0 o p_239319_ + e (Lcom/mojang/authlib/minecraft/BanDetails;)Lsw; m_239879_ + static + 0 o p_239880_ + f (Lcom/mojang/authlib/minecraft/BanDetails;)Z m_239500_ + static + 0 o p_239501_ +eth net/minecraft/client/gui/screens/ChatOptionsScreen + (Leuq;Lenr;)V + 0 o p_95571_ + 1 o p_95572_ +eti net/minecraft/client/gui/screens/ChatScreen + a f_169234_ + b f_95573_ + c f_169235_ + k f_240354_ + l f_95574_ + m f_95575_ + n f_95576_ + o f_95577_ + ()V + static + (Ljava/lang/String;)V + 0 o p_95579_ + a (Lenn;II)V m_6574_ + 0 o p_95600_ + 1 o p_95601_ + 2 o p_95602_ + a (I)V m_95588_ + 0 o p_95589_ + a (DD)Lts; m_232701_ + 0 o p_232702_ + 1 o p_232703_ + a (Ljava/lang/String;)Ljava/lang/String; m_232706_ + 0 o p_232707_ + a (DDI)Z m_6375_ + 0 o p_95585_ + 1 o p_95586_ + 2 o p_95587_ + a (DDD)Z m_6050_ + 0 o p_95581_ + 1 o p_95582_ + 2 o p_95583_ + a (Lesp;)V m_142228_ + 0 o p_169238_ + a (III)Z m_7933_ + 0 o p_95591_ + 1 o p_95592_ + 2 o p_95593_ + a (Ljava/lang/String;Z)V m_6697_ + 0 o p_95606_ + 1 o p_95607_ + a (Leox;IIF)V m_88315_ + 0 o p_282470_ + 1 o p_282674_ + 2 o p_282014_ + 3 o p_283132_ + ax_ ()V m_7861_ + az_ ()Z m_7043_ + b (Ljava/lang/String;Z)Z m_241797_ + 0 o p_242400_ + 1 o p_242161_ + b (Ljava/lang/String;)V m_95610_ + 0 o p_95611_ + b ()V m_7856_ + c (Ljava/lang/String;)V m_95612_ + 0 o p_95613_ + f ()V m_86600_ +eti$1 net/minecraft/client/gui/screens/ChatScreen$1 + d f_95616_ + (Leti;Leov;IIIILsw;)V + 0 o p_95618_ + 1 o p_95619_ + 2 o p_95620_ + 3 o p_95621_ + 4 o p_95622_ + 5 o p_95623_ + 6 o p_95624_ + aE_ ()Ltj; m_5646_ +etj net/minecraft/client/gui/screens/ConfirmLinkScreen + k f_169239_ + l f_169240_ + m f_95628_ + n f_95629_ + ()V + static + (Lit/unimi/dsi/fastutil/booleans/BooleanConsumer;Ljava/lang/String;Z)V + 0 o p_95631_ + 1 o p_95632_ + 2 o p_95633_ + (Lit/unimi/dsi/fastutil/booleans/BooleanConsumer;Lsw;Lsw;Ljava/lang/String;Lsw;Z)V + 0 o p_240191_ + 1 o p_240192_ + 2 o p_240193_ + 3 o p_240194_ + 4 o p_240195_ + 5 o p_240196_ + (Lit/unimi/dsi/fastutil/booleans/BooleanConsumer;Lsw;Ljava/lang/String;Lsw;Z)V + 0 o p_239991_ + 1 o p_239992_ + 2 o p_239993_ + 3 o p_239994_ + 4 o p_239995_ + (Lit/unimi/dsi/fastutil/booleans/BooleanConsumer;Lsw;Ljava/lang/String;Z)V + 0 o p_238329_ + 1 o p_238330_ + 2 o p_238331_ + 3 o p_238332_ + a (ZLjava/lang/String;)Ltj; m_239179_ + static + 0 o p_239180_ + 1 o p_239181_ + a (I)V m_141972_ + 0 o p_169243_ + a (Ljava/lang/String;Leuq;Z)V m_274480_ + static + 0 o p_275417_ + 1 o p_275593_ + 2 o p_275446_ + a (Ljava/lang/String;Leuq;ZLepi;)V m_273977_ + static + 0 o p_274664_ + 1 o p_274665_ + 2 o p_274666_ + 3 o p_274667_ + a (Ljava/lang/String;Lenn;Leuq;Z)V m_273978_ + static + 0 o p_274668_ + 1 o p_274669_ + 2 o p_274670_ + 3 o p_274671_ + a (Leox;IIF)V m_88315_ + 0 o p_281548_ + 1 o p_281671_ + 2 o p_283205_ + 3 o p_283628_ + b (Ljava/lang/String;Leuq;Z)Lepi$c; m_274609_ + static + 0 o p_275241_ + 1 o p_275326_ + 2 o p_275642_ + b (Lepi;)V m_169244_ + 0 o p_169245_ + c (Lepi;)V m_169246_ + 0 o p_169247_ + c (Z)Ltj; m_240013_ + static + 0 o p_240014_ + d (Lepi;)V m_169248_ + 0 o p_169249_ + j ()V m_95646_ +etk net/minecraft/client/gui/screens/ConfirmScreen + a f_95647_ + b f_95648_ + c f_95649_ + k f_238524_ + l f_95651_ + m f_238703_ + n f_95652_ + o f_169251_ + (Lit/unimi/dsi/fastutil/booleans/BooleanConsumer;Lsw;Lsw;Lsw;Lsw;)V + 0 o p_95658_ + 1 o p_95659_ + 2 o p_95660_ + 3 o p_95661_ + 4 o p_95662_ + (Lit/unimi/dsi/fastutil/booleans/BooleanConsumer;Lsw;Lsw;)V + 0 o p_95654_ + 1 o p_95655_ + 2 o p_95656_ + B ()I m_239018_ + C ()I m_239348_ + a (Lepi;)V m_169253_ + 0 o p_169254_ + a (I)V m_141972_ + 0 o p_169252_ + a (III)Z m_7933_ + 0 o p_95666_ + 1 o p_95667_ + 2 o p_95668_ + a (Leox;IIF)V m_88315_ + 0 o p_281588_ + 1 o p_283592_ + 2 o p_283446_ + 3 o p_282443_ + au_ ()Lsw; m_142562_ + av_ ()Z m_6913_ + b (I)V m_95663_ + 0 o p_95664_ + b ()V m_7856_ + b (Lepi;)V m_169256_ + 0 o p_169257_ + c (Lepi;)V m_169258_ + 0 o p_169259_ + f ()V m_86600_ + l ()I m_239963_ +etl net/minecraft/client/gui/screens/ConnectScreen + a f_169260_ + b f_95682_ + c f_95683_ + k f_169261_ + l f_290019_ + m f_95684_ + n f_290020_ + o f_95685_ + p f_95686_ + q f_95687_ + r f_95688_ + s f_278471_ + ()V + static + (Leuq;Lsw;)V + 0 o p_279215_ + 1 o p_279228_ + a (Lepi;)V m_290022_ + 0 o p_289624_ + a (Lsw;)V m_95717_ + 0 o p_95718_ + a (Leuq;Lenn;Lfga;Lffd;Z)V m_278792_ + static + 0 o p_279473_ + 1 o p_279200_ + 2 o p_279150_ + 3 o p_279481_ + 4 o p_279117_ + a (Leox;IIF)V m_88315_ + 0 o p_283201_ + 1 o p_95701_ + 2 o p_95702_ + 3 o p_95703_ + a (Lenn;Lfga;Lffd;)V m_247688_ + 0 o p_251955_ + 1 o p_249536_ + 2 o p_252078_ + av_ ()Z m_6913_ + b ()V m_7856_ + f ()V m_86600_ +etl$1 net/minecraft/client/gui/screens/ConnectScreen$1 + a f_169272_ + b f_169273_ + c f_244070_ + d f_95729_ + (Letl;Ljava/lang/String;Lfga;Lenn;Lffd;)V + 0 o p_254316_ + 1 o p_254118_ + 2 o p_254245_ + 3 o p_253911_ + 4 o p_254500_ + a (Lenn;Ljava/lang/String;)V m_278521_ + 0 o p_278875_ + 1 o p_278876_ + a (Lenn;)V m_278522_ + 0 o p_278877_ + run ()V run +etm net/minecraft/client/gui/screens/CreateBuffetWorldScreen + a f_95742_ + b f_95743_ + c f_95744_ + k f_95745_ + l f_95746_ + m f_95747_ + n f_95748_ + ()V + static + (Leuq;Lezi;Ljava/util/function/Consumer;)V + 0 o p_232732_ + 1 o p_232733_ + 2 o p_232734_ + B ()Ljava/util/Optional; m_257071_ + a (Lepi;)V m_279754_ + 0 o p_280789_ + a (Leox;IIF)V m_88315_ + 0 o p_281766_ + 1 o p_95757_ + 2 o p_95758_ + 3 o p_95759_ + a (Letm$a$a;)Z m_232737_ + 0 o p_232738_ + aw_ ()V m_7379_ + b ()V m_7856_ + b (Lepi;)V m_279753_ + 0 o p_280788_ + l ()V m_95775_ +etm$a net/minecraft/client/gui/screens/CreateBuffetWorldScreen$BiomeList + a f_95776_ + (Letm;)V + 0 o p_95778_ + a (Letm$a$a;)V m_6987_ + 0 o p_95785_ + a (Lepc$a;)V m_6987_ + 0 o p_95783_ + a (Letm$a;Lepc$a;)V m_203136_ + static + 0 o p_203137_ + 1 o p_203138_ + a (Lhe$c;)Letm$a$a; m_205388_ + 0 o p_205389_ + b (Letm$a$a;)Ljava/lang/String; m_203141_ + static + 0 o p_203142_ +etm$a$a net/minecraft/client/gui/screens/CreateBuffetWorldScreen$BiomeList$Entry + a f_95791_ + b f_95792_ + c f_95793_ + (Letm$a;Lhe$c;)V + 0 o p_205391_ + 1 o p_205392_ + a ()Lsw; m_142172_ + a (Leox;IIIIIIIZF)V m_6311_ + 0 o p_281315_ + 1 o p_282451_ + 2 o p_283356_ + 3 o p_283563_ + 4 o p_282677_ + 5 o p_283473_ + 6 o p_283681_ + 7 o p_281493_ + 8 o p_281302_ + 9 o p_283122_ + a (DDI)Z m_6375_ + 0 o p_95798_ + 1 o p_95799_ + 2 o p_95800_ +etn net/minecraft/client/gui/screens/CreateFlatWorldScreen + a f_95814_ + b f_169285_ + c f_169286_ + k f_169287_ + l f_169288_ + m f_169289_ + n f_169290_ + o f_169291_ + p f_95815_ + q f_95816_ + r f_95817_ + s f_95818_ + t f_95819_ + u f_95820_ + (Leza;Ljava/util/function/Consumer;Ldqd;)V + 0 o p_95822_ + 1 o p_95823_ + 2 o p_95824_ + B ()Z m_95848_ + a (Lepi;)V m_279757_ + 0 o p_280792_ + a (Ldqd;)V m_95825_ + 0 o p_95826_ + a (Leox;IIF)V m_88315_ + 0 o p_282393_ + 1 o p_95829_ + 2 o p_95830_ + 3 o p_95831_ + aw_ ()V m_7379_ + b ()V m_7856_ + b (Lepi;)V m_279756_ + 0 o p_280791_ + c (Lepi;)V m_279755_ + 0 o p_280790_ + d (Lepi;)V m_95844_ + 0 o p_95845_ + j ()Ldqd; m_95846_ + l ()V m_95847_ +etn$a net/minecraft/client/gui/screens/CreateFlatWorldScreen$DetailsList + a f_95849_ + l f_279578_ + ()V + static + (Letn;)V + 0 o p_95851_ + a (Lepc$a;)V m_6987_ + 0 o p_95853_ + a (Letn$a$a;)V m_6987_ + 0 o p_95855_ + c ()I m_5756_ + d ()V m_95860_ +etn$a$a net/minecraft/client/gui/screens/CreateFlatWorldScreen$DetailsList$Entry + a f_95861_ + (Letn$a;)V + 0 o p_95863_ + a ()Lsw; m_142172_ + a (Leox;IILcfz;)V m_280326_ + 0 o p_281733_ + 1 o p_282373_ + 2 o p_282844_ + 3 o p_281263_ + a (Leox;II)V m_280140_ + 0 o p_282271_ + 1 o p_281324_ + 2 o p_283171_ + a (Ldcb;)Lcfz; m_169293_ + 0 o p_169294_ + a (Leox;IIIIIIIZF)V m_6311_ + 0 o p_281319_ + 1 o p_281943_ + 2 o p_283629_ + 3 o p_283315_ + 4 o p_282974_ + 5 o p_281870_ + 6 o p_283341_ + 7 o p_281639_ + 8 o p_282715_ + 9 o p_281937_ + a (DDI)Z m_6375_ + 0 o p_95868_ + 1 o p_95869_ + 2 o p_95870_ +eto net/minecraft/client/gui/screens/CreditsAndAttributionScreen + a f_276148_ + b f_276164_ + c f_276162_ + k f_276138_ + l f_276166_ + m f_276161_ + n f_276155_ + o f_276154_ + ()V + static + (Leuq;)V + 0 o p_276298_ + B ()V m_279758_ + a (Lepi;)V m_276223_ + 0 o p_276311_ + a (Leox;IIF)V m_88315_ + 0 o p_282447_ + 1 o p_282980_ + 2 o p_281933_ + 3 o p_282766_ + aG_ ()V m_267719_ + aw_ ()V m_7379_ + b ()V m_7856_ + b (Lepi;)V m_276208_ + 0 o p_276287_ + l ()V m_276184_ +etp net/minecraft/client/gui/screens/DatapackLoadFailureScreen + a f_95891_ + b f_95892_ + (Ljava/lang/Runnable;)V + 0 o p_95894_ + a (Lepi;)V m_279759_ + 0 o p_280793_ + a (Leox;IIF)V m_88315_ + 0 o p_283519_ + 1 o p_282196_ + 2 o p_283357_ + 3 o p_283026_ + av_ ()Z m_6913_ + b ()V m_7856_ + b (Lepi;)V m_95904_ + 0 o p_95905_ +etq net/minecraft/client/gui/screens/DeathScreen + a f_95906_ + b f_95907_ + c f_95908_ + k f_95909_ + l f_169295_ + m f_262755_ + (Lsw;Z)V + 0 o p_95911_ + 1 o p_95912_ + B ()V m_95934_ + a (Lepi;)V m_279762_ + 0 o p_280796_ + a (DDI)Z m_6375_ + 0 o p_95914_ + 1 o p_95915_ + 2 o p_95916_ + a (I)Lts; m_95917_ + 0 o p_95918_ + a (Leox;IIF)V m_88315_ + 0 o p_283488_ + 1 o p_283551_ + 2 o p_283002_ + 3 o p_281981_ + av_ ()Z m_6913_ + az_ ()Z m_7043_ + b ()V m_7856_ + b (Lepi;)V m_279760_ + 0 o p_280794_ + c (Z)V m_272014_ + 0 o p_273413_ + e (Z)V m_279761_ + 0 o p_280795_ + f ()V m_86600_ + l ()V m_262825_ +etq$a net/minecraft/client/gui/screens/DeathScreen$TitleConfirmScreen + (Lit/unimi/dsi/fastutil/booleans/BooleanConsumer;Lsw;Lsw;Lsw;Lsw;)V + 0 o p_273707_ + 1 o p_273255_ + 2 o p_273747_ + 3 o p_273434_ + 4 o p_273416_ +etr net/minecraft/client/gui/screens/DemoIntroScreen + a f_95935_ + b f_95936_ + c f_95937_ + ()V + static + ()V + a (Lepi;)V m_279764_ + 0 o p_280798_ + a (Leox;)V m_280273_ + 0 o p_283391_ + a (Leox;IIF)V m_88315_ + 0 o p_281247_ + 1 o p_281844_ + 2 o p_283693_ + 3 o p_281842_ + b ()V m_7856_ + b (Lepi;)V m_279763_ + static + 0 o p_280797_ +ets net/minecraft/client/gui/screens/DirectJoinServerScreen + a f_95952_ + b f_95953_ + c f_95954_ + k f_95955_ + l f_95956_ + m f_95957_ + ()V + static + (Leuq;Lit/unimi/dsi/fastutil/booleans/BooleanConsumer;Lffd;)V + 0 o p_95960_ + 1 o p_95961_ + 2 o p_95962_ + B ()V m_95987_ + a (Ljava/lang/String;)V m_95982_ + 0 o p_95983_ + a (Lepi;)V m_95976_ + 0 o p_95977_ + a (Lenn;II)V m_6574_ + 0 o p_95973_ + 1 o p_95974_ + 2 o p_95975_ + a (III)Z m_7933_ + 0 o p_95964_ + 1 o p_95965_ + 2 o p_95966_ + a (Leox;IIF)V m_88315_ + 0 o p_282464_ + 1 o p_95969_ + 2 o p_95970_ + 3 o p_95971_ + aw_ ()V m_7379_ + ax_ ()V m_7861_ + b ()V m_7856_ + b (Lepi;)V m_95980_ + 0 o p_95981_ + f ()V m_86600_ + l ()V m_95986_ +ett net/minecraft/client/gui/screens/DisconnectedScreen + a f_278465_ + b f_278482_ + c f_95990_ + k f_95988_ + l f_278396_ + m f_278455_ + ()V + static + (Leuq;Lsw;Lsw;)V + 0 o p_95993_ + 1 o p_95994_ + 2 o p_95995_ + (Leuq;Lsw;Lsw;Lsw;)V + 0 o p_279153_ + 1 o p_279183_ + 2 o p_279332_ + 3 o p_279257_ + a (Lepi;)V m_279766_ + 0 o p_280800_ + a (Leox;IIF)V m_88315_ + 0 o p_281787_ + 1 o p_282952_ + 2 o p_283158_ + 3 o p_282166_ + aG_ ()V m_267719_ + au_ ()Lsw; m_142562_ + av_ ()Z m_6913_ + b ()V m_7856_ + b (Lepi;)V m_279765_ + 0 o p_280799_ +etu net/minecraft/client/gui/screens/EditServerScreen + a f_96005_ + b f_96006_ + c f_96007_ + k f_96008_ + l f_96009_ + m f_96010_ + n f_96011_ + o f_96013_ + ()V + static + (Leuq;Lit/unimi/dsi/fastutil/booleans/BooleanConsumer;Lffd;)V + 0 o p_96017_ + 1 o p_96018_ + 2 o p_96019_ + B ()V m_169305_ + a (Ljava/lang/String;)V m_169301_ + 0 o p_169302_ + a (Lepi;)V m_169296_ + 0 o p_169297_ + a (Lepp;Lffd$a;)V m_169298_ + 0 o p_169299_ + 1 o p_169300_ + a (Lenn;II)V m_6574_ + 0 o p_96026_ + 1 o p_96027_ + 2 o p_96028_ + a (Leox;IIF)V m_88315_ + 0 o p_282351_ + 1 o p_96022_ + 2 o p_96023_ + 3 o p_96024_ + aw_ ()V m_7379_ + b (Ljava/lang/String;)V m_169303_ + 0 o p_169304_ + b ()V m_7856_ + b (Lepi;)V m_96029_ + 0 o p_96030_ + f ()V m_86600_ + l ()V m_96045_ +etv net/minecraft/client/gui/screens/ErrorScreen + a f_96047_ + (Lsw;Lsw;)V + 0 o p_96049_ + 1 o p_96050_ + a (Lepi;)V m_279767_ + 0 o p_280801_ + a (Leox;IIF)V m_88315_ + 0 o p_281469_ + 1 o p_96053_ + 2 o p_96054_ + 3 o p_96055_ + av_ ()Z m_6913_ + b ()V m_7856_ +etw net/minecraft/client/gui/screens/FaviconTexture + a f_289036_ + b f_289028_ + c f_289045_ + d f_289034_ + e f_289037_ + f f_289043_ + g f_289029_ + ()V + static + (Lfuw;Lacq;)V + 0 o p_289556_ + 1 o p_289549_ + a ()V m_289218_ + a (Lfuw;Ljava/lang/String;)Letw; m_289210_ + static + 0 o p_289550_ + 1 o p_289565_ + a (Lehk;)V m_289201_ + 0 o p_289543_ + b (Lfuw;Ljava/lang/String;)Letw; m_289187_ + static + 0 o p_289553_ + 1 o p_289535_ + b ()Lacq; m_289196_ + c ()V m_289229_ + close ()V close +etx net/minecraft/client/gui/screens/GenericDirtMessageScreen + (Lsw;)V + 0 o p_96061_ + a (Leox;IIF)V m_88315_ + 0 o p_281274_ + 1 o p_283012_ + 2 o p_282072_ + 3 o p_282608_ + av_ ()Z m_6913_ +ety net/minecraft/client/gui/screens/GenericWaitingScreen + a f_238805_ + b f_238592_ + c f_238731_ + k f_240231_ + l f_238770_ + m f_238734_ + n f_238521_ + o f_238767_ + p f_240233_ + (Lsw;Lsw;Lsw;Ljava/lang/Runnable;I)V + 0 o p_240300_ + 1 o p_240301_ + 2 o p_240302_ + 3 o p_240303_ + 4 o p_240304_ + a (Lepi;)V m_239907_ + 0 o p_239908_ + a (Lsw;Lsw;Lsw;Ljava/lang/Runnable;)Lety; m_240290_ + static + 0 o p_240291_ + 1 o p_240292_ + 2 o p_240293_ + 3 o p_240294_ + a (Lsw;Lsw;Ljava/lang/Runnable;)Lety; m_240309_ + static + 0 o p_240310_ + 1 o p_240311_ + 2 o p_240312_ + a (Leox;IIF)V m_88315_ + 0 o p_283537_ + 1 o p_239719_ + 2 o p_239720_ + 3 o p_239721_ + au_ ()Lsw; m_142562_ + av_ ()Z m_6913_ + aw_ ()V m_7379_ + b ()V m_7856_ + f ()V m_86600_ +etz net/minecraft/client/gui/screens/InBedChatScreen + c f_263129_ + ()V + a (Lepi;)V m_96073_ + 0 o p_96074_ + a (III)Z m_7933_ + 0 o p_96070_ + 1 o p_96071_ + 2 o p_96072_ + a (CI)Z m_5534_ + 0 o p_263331_ + 1 o p_263427_ + a (Leox;IIF)V m_88315_ + 0 o p_281659_ + 1 o p_283403_ + 2 o p_281737_ + 3 o p_282201_ + aw_ ()V m_7379_ + b ()V m_7856_ + k ()V m_193839_ + l ()V m_96077_ +eu net/minecraft/commands/arguments/ScoreboardSlotArgument + a f_109192_ + b f_109193_ + ()V + static + ()V + a (Lcom/mojang/brigadier/context/CommandContext;Ljava/lang/String;)I m_109199_ + static + 0 o p_109200_ + 1 o p_109201_ + a ()Leu; m_109196_ + static + a (Lcom/mojang/brigadier/StringReader;)Ljava/lang/Integer; parse + 0 o p_109198_ + a (Ljava/lang/Object;)Lcom/mojang/brigadier/Message; m_109202_ + static + 0 o p_109203_ + getExamples ()Ljava/util/Collection; getExamples + listSuggestions (Lcom/mojang/brigadier/context/CommandContext;Lcom/mojang/brigadier/suggestion/SuggestionsBuilder;)Ljava/util/concurrent/CompletableFuture; listSuggestions + 0 o p_109206_ + 1 o p_109207_ + parse (Lcom/mojang/brigadier/StringReader;)Ljava/lang/Object; parse + 0 o p_109209_ +eua net/minecraft/client/gui/screens/LanguageSelectScreen + c f_96078_ + k f_96079_ + l f_96080_ + ()V + static + (Leuq;Lenr;Lfwb;)V + 0 o p_96085_ + 1 o p_96086_ + 2 o p_96087_ + a (Lepi;)V m_287798_ + 0 o p_288243_ + a (III)Z m_7933_ + 0 o p_289001_ + 1 o p_288978_ + 2 o p_289021_ + a (Leox;IIF)V m_88315_ + 0 o p_283397_ + 1 o p_96090_ + 2 o p_96091_ + 3 o p_96092_ + b ()V m_7856_ + l ()V m_288190_ +eua$a net/minecraft/client/gui/screens/LanguageSelectScreen$LanguageSelectionList + a f_96100_ + (Leua;Lenn;)V + 0 o p_96102_ + 1 o p_96103_ + a (Leua$a;)I m_169306_ + static + 0 o p_169307_ + a (Ljava/lang/String;Ljava/lang/String;Lfwa;)V m_264519_ + 0 o p_265065_ + 1 o p_265492_ + 2 o p_265377_ + a (Leox;)V m_7733_ + 0 o p_282399_ + b ()I m_5759_ + c ()I m_5756_ +eua$a$a net/minecraft/client/gui/screens/LanguageSelectScreen$LanguageSelectionList$Entry + a f_96115_ + b f_263697_ + c f_96116_ + d f_287791_ + (Leua$a;Ljava/lang/String;Lfwa;)V + 0 o p_265638_ + 1 o p_265319_ + 2 o p_265357_ + a ()Lsw; m_142172_ + a (Leox;IIIIIIIZF)V m_6311_ + 0 o p_282025_ + 1 o p_283548_ + 2 o p_282485_ + 3 o p_282109_ + 4 o p_283314_ + 5 o p_283303_ + 6 o p_281337_ + 7 o p_283527_ + 8 o p_283295_ + 9 o p_282169_ + a (DDI)Z m_6375_ + 0 o p_96122_ + 1 o p_96123_ + 2 o p_96124_ + b ()V m_96120_ +eub net/minecraft/client/gui/screens/LevelLoadingScreen + a f_169309_ + b f_96138_ + c f_96139_ + k f_169310_ + l f_96140_ + ()V + static + (Lais;)V + 0 o p_96143_ + a (Lit/unimi/dsi/fastutil/objects/Object2IntOpenHashMap;)V m_279769_ + static + 0 o p_280803_ + a (Leox;Lais;IIII)V m_96149_ + static + 0 o p_283467_ + 1 o p_96151_ + 2 o p_96152_ + 3 o p_96153_ + 4 o p_96154_ + 5 o p_96155_ + a (ILeox;IIIIILais;III)V m_285672_ + static + 0 o p_286133_ + 1 o p_286134_ + 2 o p_286135_ + 3 o p_286136_ + 4 o p_286137_ + 5 o p_286138_ + 6 o p_286139_ + 7 o p_286140_ + 8 o p_286141_ + 9 o p_286142_ + 10 o p_286143_ + a (Leox;IIF)V m_88315_ + 0 o p_283534_ + 1 o p_96146_ + 2 o p_96147_ + 3 o p_96148_ + aH_ ()Z m_264396_ + av_ ()Z m_6913_ + ax_ ()V m_7861_ + b (Lesp;)V m_142227_ + 0 o p_169312_ + l ()Ljava/lang/String; m_169313_ +euc net/minecraft/client/gui/screens/LoadingDotsText + a f_232740_ + b f_232741_ + ()V + static + ()V + a (J)Ljava/lang/String; m_232744_ + static + 0 o p_232745_ +eud net/minecraft/client/gui/screens/LoadingOverlay + a f_169314_ + b f_169315_ + c f_96160_ + d f_169316_ + e f_169317_ + f f_96161_ + g f_169318_ + h f_169319_ + i f_169320_ + j f_169321_ + k f_169322_ + l f_169323_ + m f_96163_ + n f_96164_ + o f_96165_ + p f_96166_ + q f_96167_ + r f_96168_ + s f_96169_ + ()V + static + (Lenn;Lakt;Ljava/util/function/Consumer;Z)V + 0 o p_96172_ + 1 o p_96173_ + 2 o p_96174_ + 3 o p_96175_ + a ()Z m_7859_ + a (Lenn;)V m_96189_ + static + 0 o p_96190_ + a (Leox;IIIIF)V m_96182_ + 0 o p_283125_ + 1 o p_96184_ + 2 o p_96185_ + 3 o p_96186_ + 4 o p_96187_ + 5 o p_96188_ + a (II)I m_169324_ + static + 0 o p_169325_ + 1 o p_169326_ + a (Leox;IIF)V m_88315_ + 0 o p_281839_ + 1 o p_282704_ + 2 o p_283650_ + 3 o p_283394_ + b ()I m_169327_ + static +eud$a net/minecraft/client/gui/screens/LoadingOverlay$LogoTexture + ()V + b (Lakx;)Lfuo$a; m_6335_ + 0 o p_96194_ +eue net/minecraft/client/gui/screens/MenuScreens + a f_96195_ + b f_96196_ + ()V + static + ()V + a (Lcck;Lenn;ILsw;)V m_96201_ + static + 0 o p_96202_ + 1 o p_96203_ + 2 o p_96204_ + 3 o p_96205_ + a ()Z m_96198_ + static + a (Lcck;Leue$a;)V m_96206_ + static + 0 o p_96207_ + 1 o p_96208_ + a (Lcck;)Leue$a; m_96199_ + static + 0 o p_96200_ +eue$a net/minecraft/client/gui/screens/MenuScreens$ScreenConstructor + a (Lsw;Lcck;Lenn;I)V m_96209_ + 0 o p_96210_ + 1 o p_96211_ + 2 o p_96212_ + 3 o p_96213_ + create (Lcbf;Lbyn;Lsw;)Leuq; m_96214_ + 0 o p_96215_ + 1 o p_96216_ + 2 o p_96217_ +euf net/minecraft/client/gui/screens/MouseSettingsScreen + c f_96218_ + (Leuq;Lenr;)V + 0 o p_96222_ + 1 o p_96223_ + a (Lepi;)V m_279770_ + 0 o p_280804_ + a (Lenr;)[Lenq; m_232748_ + static + 0 o p_232749_ + a (I)[Lenq; m_232746_ + static + 0 o p_232747_ + a (Leox;IIF)V m_88315_ + 0 o p_281246_ + 1 o p_282657_ + 2 o p_282507_ + 3 o p_282093_ + b ()V m_7856_ +eug net/minecraft/client/gui/screens/OnlineOptionsScreen + l f_260696_ + (Leuq;Lenr;[Lenq;Lenq;)V + 0 o p_261979_ + 1 o p_261924_ + 2 o p_262151_ + 3 o p_261692_ + a (Lcom/mojang/datafixers/util/Unit;)V m_261325_ + static + 0 o p_261717_ + a (Lenn;Leuq;Lenr;)Leug; m_260896_ + static + 0 o p_262120_ + 1 o p_261548_ + 2 o p_261609_ + a (Lbdu;Lsw;Lcom/mojang/datafixers/util/Unit;)Lsw; m_260895_ + static + 0 o p_262026_ + 1 o p_261484_ + 2 o p_262113_ + a (Lfew;)Lenq; m_287799_ + static + 0 o p_288244_ + b ()V m_7856_ +euh net/minecraft/client/gui/screens/OptionsScreen + a f_260695_ + b f_260601_ + c f_260552_ + k f_260474_ + l f_260529_ + m f_260541_ + n f_260611_ + o f_260624_ + p f_260594_ + q f_276165_ + r f_260607_ + s f_96235_ + t f_96236_ + u f_96237_ + v f_96238_ + ()V + static + (Leuq;Lenr;)V + 0 o p_96242_ + 1 o p_96243_ + B ()Leuq; m_276173_ + C ()Leuq; m_260755_ + D ()Leuq; m_260747_ + E ()Leuq; m_279773_ + F ()Leuq; m_260746_ + G ()Leuq; m_279776_ + H ()Leuq; m_260752_ + I ()Leuq; m_260753_ + J ()Leuq; m_260745_ + K ()Leuq; m_260751_ + a (Ljava/util/function/Supplier;Lepi;)V m_279774_ + 0 o p_280807_ + 1 o p_280808_ + a (Lepi;)V m_279771_ + 0 o p_280805_ + a (Lsw;Ljava/util/function/Supplier;)Lepi; m_260993_ + 0 o p_261565_ + 1 o p_262119_ + a (Lenn;Lepp;Lbdu;)V m_193852_ + static + 0 o p_193853_ + 1 o p_193854_ + 2 o p_193855_ + a (IILjava/lang/String;Lenn;)Lepp; m_260961_ + static + 0 o p_262051_ + 1 o p_261805_ + 2 o p_261598_ + 3 o p_261922_ + a (Leox;IIF)V m_88315_ + 0 o p_283520_ + 1 o p_281826_ + 2 o p_283378_ + 3 o p_281975_ + a (Laki;)V m_274373_ + 0 o p_275714_ + ax_ ()V m_7861_ + b (Lepi;)V m_279772_ + 0 o p_280806_ + b ()V m_7856_ + c (Lepi;)V m_279775_ + 0 o p_280809_ + c (Z)V m_96260_ + 0 o p_96261_ + l ()Lesi; m_264034_ +eui net/minecraft/client/gui/screens/OptionsSubScreen + a f_96281_ + b f_96282_ + (Leuq;Lenr;Lsw;)V + 0 o p_96284_ + 1 o p_96285_ + 2 o p_96286_ + a (Leox;Leqd;IIF)V m_280419_ + 0 o p_282011_ + 1 o p_281793_ + 2 o p_281640_ + 3 o p_281598_ + 4 o p_281558_ + aw_ ()V m_7379_ + ax_ ()V m_7861_ +euj net/minecraft/client/gui/screens/OutOfMemoryScreen + a f_232750_ + ()V + a (Lepi;)V m_279778_ + 0 o p_280811_ + a (Leox;IIF)V m_88315_ + 0 o p_283359_ + 1 o p_96296_ + 2 o p_96297_ + 3 o p_96298_ + av_ ()Z m_6913_ + b ()V m_7856_ + b (Lepi;)V m_279777_ + 0 o p_280810_ +euk net/minecraft/client/gui/screens/Overlay + ()V + a ()Z m_7859_ +eul net/minecraft/client/gui/screens/PauseScreen + A f_252482_ + a f_262286_ + b f_262258_ + c f_262248_ + k f_262268_ + l f_262229_ + m f_262276_ + n f_262216_ + o f_262255_ + p f_262322_ + q f_262226_ + r f_262318_ + s f_262210_ + t f_262254_ + u f_262217_ + v f_262246_ + w f_262212_ + x f_262287_ + y f_262313_ + z f_96306_ + ()V + static + (Z)V + 0 o p_96308_ + B ()V m_261092_ + C ()Leuq; m_262340_ + D ()Leuq; m_279783_ + E ()Leuq; m_279782_ + F ()Leuq; m_279785_ + a (Lsw;Ljava/lang/String;)Lepi; m_262461_ + 0 o p_262593_ + 1 o p_262659_ + a (Ljava/util/function/Supplier;Lepi;)V m_279784_ + 0 o p_280816_ + 1 o p_280817_ + a (Lepi;)V m_279781_ + 0 o p_280815_ + a (Lsw;Ljava/util/function/Supplier;)Lepi; m_262456_ + 0 o p_262567_ + 1 o p_262581_ + a (Ljava/lang/String;)Leuq; m_262341_ + 0 o p_262522_ + a (Leox;IIF)V m_88315_ + 0 o p_281899_ + 1 o p_281431_ + 2 o p_283183_ + 3 o p_281435_ + b (Ljava/lang/String;Z)V m_279779_ + 0 o p_280812_ + 1 o p_280813_ + b ()V m_7856_ + b (Lepi;)V m_279780_ + 0 o p_280814_ + f ()V m_86600_ + l ()V m_96338_ +eum net/minecraft/client/gui/screens/PopupScreen + a f_169340_ + b f_169341_ + c f_169342_ + k f_169343_ + l f_96339_ + m f_96340_ + n f_96341_ + o f_96342_ + p f_96343_ + (Lsw;Ljava/util/List;Lcom/google/common/collect/ImmutableList;)V + 0 o p_96345_ + 1 o p_96346_ + 2 o p_96347_ + a (Leox;IIF)V m_88315_ + 0 o p_283167_ + 1 o p_96350_ + 2 o p_96351_ + 3 o p_96352_ + au_ ()Lsw; m_142562_ + av_ ()Z m_6913_ + b ()V m_7856_ +eum$a net/minecraft/client/gui/screens/PopupScreen$ButtonOption + a f_96359_ + b f_96360_ + (Lsw;Lepi$c;)V + 0 o p_96362_ + 1 o p_96363_ +eun net/minecraft/client/gui/screens/PresetFlatWorldScreen + a f_232751_ + b f_96368_ + c f_169346_ + k f_169347_ + l f_169348_ + m f_169349_ + n f_169350_ + o f_169351_ + p f_169352_ + q f_169353_ + r f_96370_ + s f_96371_ + t f_96372_ + u f_96373_ + v f_96374_ + w f_96375_ + x f_96376_ + ()V + static + (Letn;)V + 0 o p_96379_ + a (Lhf;Ljava/lang/String;I)Ldqa; m_257877_ + static + 0 o p_259695_ + 1 o p_259185_ + 2 o p_259723_ + a (Lepi;)V m_279787_ + 0 o p_280823_ + a (Lenn;II)V m_6574_ + 0 o p_96390_ + 1 o p_96391_ + 2 o p_96392_ + a (Ljava/lang/String;Lhe$c;)Lhe$c; m_254756_ + static + 0 o p_255441_ + 1 o p_255442_ + a (Lhf;Lhf;Lhf;Lhf;Ljava/lang/String;Ldqd;)Ldqd; m_257717_ + static + 0 o p_259084_ + 1 o p_259583_ + 2 o p_259610_ + 3 o p_259243_ + 4 o p_259508_ + 5 o p_259417_ + a (DDD)Z m_6050_ + 0 o p_96381_ + 1 o p_96382_ + 2 o p_96383_ + a (Lhf;Ljava/lang/String;)Ljava/util/List; m_257841_ + static + 0 o p_259080_ + 1 o p_260301_ + a (Lhf;Lhf;Lhf;Lhf;Lepi;)V m_279786_ + 0 o p_280818_ + 1 o p_280819_ + 2 o p_280820_ + 3 o p_280821_ + 4 o p_280822_ + a (Leox;IIF)V m_88315_ + 0 o p_282713_ + 1 o p_281914_ + 2 o p_283700_ + 3 o p_283598_ + a (Ldqd;)Ljava/lang/String; m_205393_ + static + 0 o p_205394_ + a (Lacq;)Lacp; m_257073_ + static + 0 o p_258126_ + aw_ ()V m_7379_ + b ()V m_7856_ + c (Z)V m_96449_ + 0 o p_96450_ + f ()V m_86600_ + l ()Ljava/lang/IllegalStateException; m_205403_ + static +eun$a net/minecraft/client/gui/screens/PresetFlatWorldScreen$PresetsList + a f_96462_ + (Leun;Lhs;Lcaw;)V + 0 o p_260073_ + 1 o p_259278_ + 2 o p_259076_ + a (Lepc$a;)V m_6987_ + 0 o p_96470_ + a (III)Z m_7933_ + 0 o p_96466_ + 1 o p_96467_ + 2 o p_96468_ + a (Leun$a$a;)V m_6987_ + 0 o p_96472_ + a (Lacp;)Ljava/lang/String; m_257490_ + static + 0 o p_259357_ + a (Ldqa;)Lcpn; m_258055_ + static + 0 o p_259579_ + a (Lcaw;Lcpn;)Z m_257800_ + static + 0 o p_259348_ + 1 o p_259421_ +eun$a$a net/minecraft/client/gui/screens/PresetFlatWorldScreen$PresetsList$Entry + a f_96476_ + b f_279577_ + c f_169357_ + d f_232755_ + ()V + static + (Leun$a;Lhe;)V + 0 o p_232757_ + 1 o p_232758_ + a (Leox;IILcfu;)V m_280449_ + 0 o p_283196_ + 1 o p_282036_ + 2 o p_281683_ + 3 o p_282242_ + a ()Lsw; m_142172_ + a (Lacp;)Lsw; m_232759_ + static + 0 o p_232760_ + a (Leox;II)V m_280169_ + 0 o p_281359_ + 1 o p_282978_ + 2 o p_283152_ + a (Leox;IIIIIIIZF)V m_6311_ + 0 o p_283649_ + 1 o p_281641_ + 2 o p_281959_ + 3 o p_281428_ + 4 o p_282594_ + 5 o p_283493_ + 6 o p_283234_ + 7 o p_283185_ + 8 o p_282302_ + 9 o p_282855_ + a (DDI)Z m_6375_ + 0 o p_96481_ + 1 o p_96482_ + 2 o p_96483_ + b ()V m_96479_ +euo net/minecraft/client/gui/screens/ProgressScreen + a f_96506_ + b f_96507_ + c f_96508_ + k f_96509_ + l f_169362_ + (Z)V + 0 o p_169364_ + a (I)V m_6952_ + 0 o p_96513_ + a (Lsw;)V m_6309_ + 0 o p_96520_ + a ()V m_7730_ + a (Leox;IIF)V m_88315_ + 0 o p_283582_ + 1 o p_96516_ + 2 o p_96517_ + 3 o p_96518_ + aH_ ()Z m_264396_ + av_ ()Z m_6913_ + b (Lsw;)V m_6308_ + 0 o p_96523_ + c (Lsw;)V m_6307_ + 0 o p_96525_ +eup net/minecraft/client/gui/screens/ReceivingLevelScreen + a f_96526_ + b f_202370_ + c f_202371_ + k f_202372_ + l f_202373_ + ()V + static + ()V + a (Leox;IIF)V m_88315_ + 0 o p_281489_ + 1 o p_282902_ + 2 o p_283018_ + 3 o p_281251_ + aH_ ()Z m_264396_ + av_ ()Z m_6913_ + aw_ ()V m_7379_ + az_ ()Z m_7043_ + f ()V m_86600_ + l ()V m_202375_ +euq net/minecraft/client/gui/screens/Screen + a f_96536_ + b f_96537_ + c f_169367_ + d f_279548_ + e f_96539_ + f f_96541_ + g f_96543_ + h f_96544_ + i f_96547_ + j f_289574_ + k f_96540_ + l f_169368_ + m f_267454_ + n f_169369_ + o f_96538_ + p f_169370_ + q f_169371_ + r f_169372_ + s f_169373_ + t f_169374_ + u f_169375_ + v f_169376_ + w f_169377_ + x f_169365_ + y f_262730_ + ()V + static + (Lsw;)V + 0 o p_96550_ + A ()Lame; m_278176_ + B ()V m_264131_ + F ()Z m_169419_ + a (III)Z m_7933_ + 0 o p_96552_ + 1 o p_96553_ + 2 o p_96554_ + a (Ljava/net/URI;)V m_96589_ + 0 o p_96590_ + a (Lenn;Lcfz;)Ljava/util/List; m_280152_ + static + 0 o p_281881_ + 1 o p_282833_ + a (Ljava/util/List;)V m_7400_ + 0 o p_96591_ + a (Ljava/util/List;Lesn;)Leuq$b; m_169400_ + static + 0 o p_169401_ + 1 o p_169402_ + a (Ljava/lang/String;Z)V m_6697_ + 0 o p_96587_ + 1 o p_96588_ + a (Ljava/lang/String;CI)Z m_96583_ + 0 o p_96584_ + 1 o p_96585_ + 2 o p_96586_ + a (J)V m_169378_ + 0 o p_169379_ + a (Leox;IIF)V m_88315_ + 0 o p_281549_ + 1 o p_281550_ + 2 o p_282878_ + 3 o p_282465_ + a (Ljava/util/List;Lexi;Z)V m_262861_ + 0 o p_262939_ + 1 o p_263078_ + 2 o p_263107_ + a (Leou;)V m_264158_ + 0 o p_265308_ + a (Lesx;)Lesv$a; m_264409_ + 0 o p_265049_ + a (Ljava/lang/Runnable;Ljava/lang/String;Ljava/lang/String;)V m_96579_ + static + 0 o p_96580_ + 1 o p_96581_ + 2 o p_96582_ + a (Lesp;)V m_142228_ + 0 o p_169396_ + a (JZ)V m_169380_ + 0 o p_169381_ + 1 o p_169382_ + a ([Lepf;)V m_202376_ + static + 0 o p_202377_ + a (Lts;)Z m_5561_ + 0 o p_96592_ + a (Leqh;)Leqh; m_169394_ + 0 o p_254514_ + a (Leox;)V m_280273_ + 0 o p_283688_ + a (Ljava/lang/Runnable;)V m_289588_ + 0 o p_289626_ + a (Lenn;II)V m_6574_ + 0 o p_96575_ + 1 o p_96576_ + 2 o p_96577_ + a (Leqp;Lexi;Z)V m_262791_ + 0 o p_262992_ + 1 o p_262980_ + 2 o p_262988_ + aG_ ()V m_267719_ + aH_ ()Z m_264396_ + a_ (DD)Z m_5953_ + 0 o p_96595_ + 1 o p_96596_ + au_ ()Lsw; m_142562_ + av_ ()Z m_6913_ + aw_ ()V m_7379_ + ax_ ()V m_7861_ + ay_ ()V m_274333_ + az_ ()Z m_7043_ + b (Leox;IIF)V m_280264_ + 0 o p_282345_ + 1 o p_283456_ + 2 o p_283586_ + 3 o p_282339_ + b (Lesp;)V m_142227_ + 0 o p_169403_ + b (Ljava/util/List;)V m_257959_ + 0 o p_259937_ + b (Ljava/lang/String;)Ljava/lang/String; m_169404_ + static + 0 o p_169405_ + b (Ljava/lang/Runnable;)V m_289587_ + 0 o p_289625_ + b (Lenn;II)V m_6575_ + 0 o p_96607_ + 1 o p_96608_ + 2 o p_96609_ + b (Leox;)V m_280039_ + 0 o p_282281_ + b ()V m_7856_ + c (Leqt;)V m_264313_ + 0 o p_265756_ + c (Z)V m_96622_ + 0 o p_96623_ + d (Leqt;)Leqt; m_142416_ + 0 o p_169406_ + d (I)Z m_96628_ + static + 0 o p_96629_ + d (Lsw;)V m_257404_ + 0 o p_259986_ + d (Z)V m_169407_ + 0 o p_169408_ + e (Leqt;)Leqt; m_7787_ + 0 o p_96625_ + e (I)Z m_96630_ + static + 0 o p_96631_ + e (Z)V m_169409_ + 0 o p_169410_ + f (Leqt;)V m_169411_ + 0 o p_169412_ + f (I)Z m_96632_ + static + 0 o p_96633_ + f ()V m_86600_ + g (I)Z m_96634_ + static + 0 o p_96635_ + i ()Ljava/util/List; m_6702_ + l ()Lesv$c; m_264442_ + m ()Lsw; m_96636_ + n ()V m_169413_ + o ()V m_232761_ + p ()Z m_96637_ + static + q ()Z m_96638_ + static + r ()Z m_96639_ + static + s ()Lesz; m_264198_ + v ()V m_169414_ + w ()V m_169415_ + x ()V m_169416_ + y ()V m_169417_ + z ()V m_169418_ +euq$a net/minecraft/client/gui/screens/Screen$DeferredTooltipRendering + a f_262736_ + b f_262758_ + (Ljava/util/List;Lexi;)V + 0 o f_262736_ + 1 o f_262758_ + a ()Ljava/util/List; f_262736_ + b ()Lexi; f_262758_ + equals (Ljava/lang/Object;)Z equals + 0 o p_263099_ + hashCode ()I hashCode + toString ()Ljava/lang/String; toString +euq$b net/minecraft/client/gui/screens/Screen$NarratableSearchResult + a f_169420_ + b f_169421_ + c f_169422_ + (Lesn;ILesn$a;)V + 0 o p_169424_ + 1 o p_169425_ + 2 o p_169426_ +eur net/minecraft/client/gui/screens/ShareToLanScreen + a f_262314_ + b f_262301_ + c f_96640_ + k f_96641_ + l f_96642_ + m f_257007_ + n f_257045_ + o f_256909_ + p f_257022_ + q f_96643_ + r f_169427_ + s f_96647_ + t f_256852_ + u f_256803_ + ()V + static + (Leuq;)V + 0 o p_96650_ + a (Lepi;Ljava/lang/String;)V m_257075_ + 0 o p_258129_ + 1 o p_258130_ + a (Lepp;Lcmj;)V m_169428_ + 0 o p_169429_ + 1 o p_169430_ + a (Ljava/lang/String;)Lsw; m_257854_ + 0 o p_259426_ + a (Lepi;)V m_279788_ + 0 o p_280824_ + a (Lepp;Ljava/lang/Boolean;)V m_169431_ + 0 o p_169432_ + 1 o p_169433_ + a (Lfyp;Lepi;)V m_279789_ + 0 o p_280825_ + 1 o p_280826_ + a (Leox;IIF)V m_88315_ + 0 o p_281738_ + 1 o p_96653_ + 2 o p_96654_ + 3 o p_96655_ + b ()V m_7856_ + f ()V m_86600_ +eus net/minecraft/client/gui/screens/SimpleOptionsSubScreen + c f_96666_ + k f_96668_ + l f_96667_ + (Leuq;Lenr;Lsw;[Lenq;)V + 0 o p_232763_ + 1 o p_232764_ + 2 o p_232765_ + 3 o p_232766_ + a (Lepi;)V m_279790_ + 0 o p_280827_ + a (Leox;IIF)V m_88315_ + 0 o p_283632_ + 1 o p_283304_ + 2 o p_283302_ + 3 o p_282245_ + b ()V m_7856_ + e ()V m_7853_ + l ()V m_96682_ +eut net/minecraft/client/gui/screens/SkinCustomizationScreen + (Leuq;Lenr;)V + 0 o p_96684_ + 1 o p_96685_ + a (Lbyp;Lepp;Ljava/lang/Boolean;)V m_169434_ + 0 o p_169435_ + 1 o p_169436_ + 2 o p_169437_ + a (Lepi;)V m_279791_ + 0 o p_280828_ + a (Leox;IIF)V m_88315_ + 0 o p_282063_ + 1 o p_283510_ + 2 o p_283109_ + 3 o p_283448_ + b ()V m_7856_ +euu net/minecraft/client/gui/screens/SoundOptionsScreen + c f_244146_ + (Leuq;Lenr;)V + 0 o p_96702_ + 1 o p_96703_ + a (Lepi;)V m_279792_ + 0 o p_280829_ + a (Lenr;)[Lenq; m_245969_ + static + 0 o p_250217_ + a (I)[Lenq; m_244663_ + static + 0 o p_247778_ + a (Lami;)Lenq; m_244664_ + 0 o p_247779_ + a (Leox;IIF)V m_88315_ + 0 o p_281823_ + 1 o p_282932_ + 2 o p_281927_ + 3 o p_281292_ + b (Lami;)Z m_244665_ + static + 0 o p_247780_ + b ()V m_7856_ + l ()[Lenq; m_246998_ +euv net/minecraft/client/gui/screens/SymlinkWarningScreen + a f_289817_ + b f_289825_ + c f_289827_ + k f_289819_ + ()V + static + (Leuq;)V + 0 o p_289989_ + a (Lepi;)V m_289873_ + 0 o p_289963_ + a (Leox;IIF)V m_88315_ + 0 o p_289954_ + 1 o p_289981_ + 2 o p_289931_ + 3 o p_289925_ + aG_ ()V m_267719_ + au_ ()Lsw; m_142562_ + aw_ ()V m_7379_ + b ()V m_7856_ + b (Lepi;)V m_289880_ + 0 o p_289939_ + c (Lepi;)V m_289887_ + static + 0 o p_289977_ +euw net/minecraft/client/gui/screens/TitleScreen + a f_169438_ + b f_96716_ + c f_96717_ + k f_169439_ + l f_96718_ + m f_96721_ + n f_96722_ + o f_96726_ + p f_96729_ + q f_96714_ + r f_96715_ + s f_232768_ + t f_263781_ + ()V + static + (ZLepx;)V + 0 o p_265779_ + 1 o p_265067_ + (Z)V + 0 o p_96733_ + ()V + B ()Lsw; m_240255_ + C ()Z m_96792_ + D ()V m_96793_ + E ()Lepx; m_263871_ + static + a (Lepi;)V m_232769_ + 0 o p_232770_ + a (II)V m_96763_ + 0 o p_96764_ + 1 o p_96765_ + a (DDI)Z m_6375_ + 0 o p_96735_ + 1 o p_96736_ + 2 o p_96737_ + a (Lfuw;Ljava/util/concurrent/Executor;)Ljava/util/concurrent/CompletableFuture; m_96754_ + static + 0 o p_96755_ + 1 o p_96756_ + a (Leox;IIF)V m_88315_ + 0 o p_282860_ + 1 o p_281753_ + 2 o p_283539_ + 3 o p_282628_ + a (ZLepi;)V m_279799_ + 0 o p_280836_ + 1 o p_280837_ + av_ ()Z m_6913_ + ax_ ()V m_7861_ + ay_ ()V m_274333_ + az_ ()Z m_7043_ + b (Lepi;)V m_210871_ + 0 o p_210872_ + b (II)V m_96772_ + 0 o p_96773_ + 1 o p_96774_ + b ()V m_7856_ + c (Lepi;)V m_279796_ + 0 o p_280833_ + c (Z)V m_96777_ + 0 o p_96778_ + d (Lepi;)V m_279795_ + 0 o p_280832_ + e (Lepi;)V m_279797_ + 0 o p_280834_ + f ()V m_86600_ + f (Lepi;)V m_279798_ + 0 o p_280835_ + g (Lepi;)V m_279794_ + 0 o p_280831_ + h (Lepi;)V m_279800_ + 0 o p_280838_ + i (Lepi;)V m_279793_ + 0 o p_280830_ + l ()Z m_96789_ +euw$a net/minecraft/client/gui/screens/TitleScreen$WarningLabel + a f_232780_ + b f_232781_ + c f_232782_ + d f_232783_ + (Leov;Lepz;II)V + 0 o f_232780_ + 1 o f_232781_ + 2 o f_232782_ + 3 o f_232783_ + a (Leox;I)V m_280409_ + 0 o p_281783_ + 1 o p_281383_ + a ()Leov; f_232780_ + b ()Lepz; f_232781_ + c ()I f_232782_ + d ()I f_232783_ + equals (Ljava/lang/Object;)Z equals + 0 o p_232797_ + hashCode ()I hashCode + toString ()Ljava/lang/String; toString +eux net/minecraft/client/gui/screens/VideoSettingsScreen + c f_96794_ + k f_96795_ + l f_96796_ + m f_96797_ + n f_96798_ + o f_96801_ + p f_96802_ + q f_96803_ + ()V + static + (Leuq;Lenr;)V + 0 o p_96806_ + 1 o p_96807_ + a (Lehi;Lsw;Ljava/lang/Integer;)Lsw; m_232804_ + static + 0 o p_232805_ + 1 o p_232806_ + 2 o p_232807_ + a (Lepi;)V m_279802_ + 0 o p_280840_ + a (Lehn;Lepi;)V m_279803_ + 0 o p_280841_ + 1 o p_280842_ + a (DDI)Z m_6375_ + 0 o p_96809_ + 1 o p_96810_ + 2 o p_96811_ + a (DDD)Z m_6050_ + 0 o p_278332_ + 1 o p_278334_ + 2 o p_278285_ + a (Lenr;)[Lenq; m_232811_ + static + 0 o p_232812_ + a (Lehi;Lehn;Ljava/lang/Integer;)V m_232800_ + static + 0 o p_232801_ + 1 o p_232802_ + 2 o p_232803_ + a (Leox;IIF)V m_88315_ + 0 o p_282311_ + 1 o p_283219_ + 2 o p_282352_ + 3 o p_283266_ + ax_ ()V m_7861_ + b ()V m_7856_ + b (Lepi;)V m_279801_ + 0 o p_280839_ +euy net/minecraft/client/gui/screens/WinScreen + a f_96863_ + b f_96866_ + c f_169463_ + k f_169464_ + l f_96867_ + m f_169466_ + n f_181393_ + o f_96868_ + p f_96869_ + q f_169467_ + r f_96871_ + s f_96872_ + t f_96873_ + u f_181391_ + v f_181392_ + w f_96874_ + x f_169462_ + y f_283835_ + z f_263706_ + ()V + static + (ZLjava/lang/Runnable;)V + 0 o p_276286_ + 1 o p_276294_ + A ()Lame; m_278176_ + B ()V m_96895_ + C ()V m_169482_ + a (Ljava/lang/String;)V m_181397_ + 0 o p_181398_ + a (Lsw;Z)V m_169472_ + 0 o p_169473_ + 1 o p_169474_ + a (Ljava/lang/String;Leuy$a;)V m_197398_ + 0 o p_197399_ + 1 o p_197400_ + a (III)Z m_7933_ + 0 o p_169469_ + 1 o p_169470_ + 2 o p_169471_ + a (Ljava/io/Reader;)V m_232817_ + 0 o p_232818_ + a (Leox;IIF)V m_88315_ + 0 o p_281907_ + 1 o p_282364_ + 2 o p_282696_ + 3 o p_281316_ + aw_ ()V m_7379_ + ax_ ()V m_7861_ + b (Ljava/io/Reader;)V m_232819_ + 0 o p_232820_ + b ()V m_7856_ + b (III)Z m_7920_ + 0 o p_169476_ + 1 o p_169477_ + 2 o p_169478_ + c (Leox;)V m_280337_ + 0 o p_282239_ + f ()V m_86600_ + l ()F m_181399_ +euy$a net/minecraft/client/gui/screens/WinScreen$CreditsReader + read (Ljava/io/Reader;)V m_232821_ + 0 o p_232822_ +euz net/minecraft/client/gui/screens/achievement/StatsScreen + A f_169486_ + C f_169487_ + D f_169488_ + a f_96896_ + c f_96897_ + k f_279607_ + l f_96898_ + m f_96899_ + n f_96900_ + o f_96901_ + p f_96902_ + q f_96903_ + r f_169489_ + s f_169490_ + t f_169491_ + u f_169492_ + v f_169493_ + w f_169494_ + x f_169495_ + y f_169484_ + z f_169485_ + ()V + static + (Leuq;Lams;)V + 0 o p_96906_ + 1 o p_96907_ + B ()V m_96975_ + C ()V m_7819_ + D ()Leqc; m_96983_ + a (Leqc;)V m_96924_ + 0 o p_96925_ + a (Leox;IILcfu;)V m_280600_ + 0 o p_282402_ + 1 o p_283228_ + 2 o p_283232_ + 3 o p_282368_ + a (Lepi;)V m_279804_ + 0 o p_280843_ + a (Lamo;)Ljava/lang/String; m_96946_ + static + 0 o p_96947_ + a (I)I m_96908_ + 0 o p_96909_ + a (Leuz;)Leov; m_169496_ + static + 0 o p_169497_ + a (Leox;IIII)V m_280288_ + 0 o p_281402_ + 1 o p_283145_ + 2 o p_283100_ + 3 o p_282128_ + 4 o p_281483_ + a (Leox;IIF)V m_88315_ + 0 o p_281866_ + 1 o p_96914_ + 2 o p_96915_ + 3 o p_96916_ + az_ ()Z m_7043_ + b (Lepi;)V m_96948_ + 0 o p_96949_ + b (Leuz;)Leov; m_169498_ + static + 0 o p_169499_ + b ()V m_7856_ + c (Lepi;)V m_96958_ + 0 o p_96959_ + c (Leuz;)Leov; m_96926_ + static + 0 o p_96927_ + d (Lepi;)V m_96962_ + 0 o p_96963_ + d (Leuz;)Leov; m_169500_ + static + 0 o p_169501_ + e (Leuz;)Leov; m_96960_ + static + 0 o p_96961_ + f (Leuz;)Leov; m_96964_ + static + 0 o p_96965_ + g (Leuz;)Leov; m_169502_ + static + 0 o p_169503_ + h (Leuz;)Leov; m_169504_ + static + 0 o p_169505_ + i (Leuz;)Leov; m_169506_ + static + 0 o p_169507_ + j (Leuz;)Leov; m_169508_ + static + 0 o p_169509_ + k (Leuz;)Leov; m_96966_ + static + 0 o p_96967_ + l (Leuz;)Leov; m_96968_ + static + 0 o p_96969_ + l ()V m_96972_ + m (Leuz;)Leov; m_169510_ + static + 0 o p_169511_ +euz$a net/minecraft/client/gui/screens/achievement/StatsScreen$GeneralStatisticsList + a f_96992_ + (Leuz;Lenn;)V + 0 o p_96994_ + 1 o p_96995_ + a (Leox;)V m_7733_ + 0 o p_282785_ + a (Lamo;)Ljava/lang/String; m_96996_ + static + 0 o p_96997_ +euz$a$a net/minecraft/client/gui/screens/achievement/StatsScreen$GeneralStatisticsList$Entry + a f_97000_ + b f_97001_ + c f_97002_ + (Leuz$a;Lamo;)V + 0 o p_97004_ + 1 o p_97005_ + a ()Lsw; m_142172_ + a (Leox;IIIIIIIZF)V m_6311_ + 0 o p_283043_ + 1 o p_97012_ + 2 o p_97013_ + 3 o p_97014_ + 4 o p_97015_ + 5 o p_97016_ + 6 o p_97017_ + 7 o p_97018_ + 8 o p_97019_ + 9 o p_97020_ + b ()Ljava/lang/String; m_169513_ +euz$b net/minecraft/client/gui/screens/achievement/StatsScreen$ItemStatisticsList + a f_97021_ + l f_97022_ + m f_97023_ + n f_97025_ + o f_97026_ + p f_97027_ + q f_97028_ + r f_97029_ + (Leuz;Lenn;)V + 0 o p_97031_ + 1 o p_97032_ + a (Leox;Lsw;II)V m_280389_ + 0 o p_283023_ + 1 o p_282505_ + 2 o p_282229_ + 3 o p_282222_ + a (Lcfu;)Lsw; m_97040_ + 0 o p_97041_ + a (II)V m_6205_ + 0 o p_97036_ + 1 o p_97037_ + a (Lamq;)V m_97038_ + 0 o p_97039_ + a (Leox;II)V m_7415_ + 0 o p_282214_ + 1 o p_97050_ + 2 o p_97051_ + a (Leox;)V m_7733_ + 0 o p_281850_ + a (I)Lamq; m_97033_ + 0 o p_97034_ + b (Leox;II)V m_7154_ + 0 o p_283203_ + 1 o p_97046_ + 2 o p_97047_ + b (Lamq;)I m_97058_ + 0 o p_97059_ + b ()I m_5759_ + c ()I m_5756_ +euz$b$a net/minecraft/client/gui/screens/achievement/StatsScreen$ItemStatisticsList$ItemRow + a f_97074_ + b f_169514_ + (Leuz$b;Lcfu;)V + 0 o p_169516_ + 1 o p_169517_ + a ()Lsw; m_142172_ + a (Leox;Lamo;IIZ)V m_97091_ + 0 o p_282544_ + 1 o p_97093_ + 2 o p_97094_ + 3 o p_97095_ + 4 o p_97096_ + a (Leox;IIIIIIIZF)V m_6311_ + 0 o p_283614_ + 1 o p_97082_ + 2 o p_97083_ + 3 o p_97084_ + 4 o p_97085_ + 5 o p_97086_ + 6 o p_97087_ + 7 o p_97088_ + 8 o p_97089_ + 9 o p_97090_ + b ()Lcfu; m_169519_ +euz$b$b net/minecraft/client/gui/screens/achievement/StatsScreen$ItemStatisticsList$ItemRowComparator + a f_169520_ + (Leuz$b;)V + 0 o p_169522_ + a (Leuz$b$a;Leuz$b$a;)I compare + 0 o p_169524_ + 1 o p_169525_ + compare (Ljava/lang/Object;Ljava/lang/Object;)I compare + 0 o p_169527_ + 1 o p_169528_ +euz$c net/minecraft/client/gui/screens/achievement/StatsScreen$MobsStatisticsList + a f_97097_ + (Leuz;Lenn;)V + 0 o p_97099_ + 1 o p_97100_ + a (Leox;)V m_7733_ + 0 o p_282935_ +euz$c$a net/minecraft/client/gui/screens/achievement/StatsScreen$MobsStatisticsList$MobRow + a f_97103_ + b f_97105_ + c f_97106_ + d f_97107_ + e f_97108_ + f f_97109_ + (Leuz$c;Lbfn;)V + 0 o p_97111_ + 1 o p_97112_ + a ()Lsw; m_142172_ + a (Leox;IIIIIIIZF)V m_6311_ + 0 o p_283265_ + 1 o p_97115_ + 2 o p_97116_ + 3 o p_97117_ + 4 o p_97118_ + 5 o p_97119_ + 6 o p_97120_ + 7 o p_97121_ + 8 o p_97122_ + 9 o p_97123_ +ev net/minecraft/commands/arguments/SignedArgument +eva net/minecraft/client/gui/screens/achievement/StatsUpdateListener + b f_97124_ + ()V + static + C ()V m_7819_ +evb net/minecraft/client/gui/screens/achievement/package-info +evc net/minecraft/client/gui/screens/advancements/AdvancementTab + a f_97126_ + b f_97127_ + c f_97128_ + d f_97129_ + e f_97130_ + f f_97131_ + g f_97132_ + h f_97133_ + i f_97134_ + j f_97135_ + k f_97136_ + l f_97137_ + m f_97138_ + n f_97139_ + o f_97140_ + p f_97141_ + q f_97142_ + r f_97143_ + (Lenn;Levg;Levd;ILae;Lan;)V + 0 o p_97145_ + 1 o p_97146_ + 2 o p_97147_ + 3 o p_97148_ + 4 o p_97149_ + 5 o p_97150_ + a (Lenn;Levg;ILae;)Levc; m_97170_ + static + 0 o p_97171_ + 1 o p_97172_ + 2 o p_97173_ + 3 o p_97174_ + a (Leox;IIZ)V m_280105_ + 0 o p_282671_ + 1 o p_282721_ + 2 o p_282964_ + 3 o p_283052_ + a (Leve;Lae;)V m_97175_ + 0 o p_97176_ + 1 o p_97177_ + a (DD)V m_97151_ + 0 o p_97152_ + 1 o p_97153_ + a ()Levd; m_169538_ + a (Leox;IIII)V m_280571_ + 0 o p_282892_ + 1 o p_283658_ + 2 o p_282602_ + 3 o p_282652_ + 4 o p_283595_ + a (IIDD)Z m_97154_ + 0 o p_97155_ + 1 o p_97156_ + 2 o p_97157_ + 3 o p_97158_ + a (Leox;II)V m_280485_ + 0 o p_282895_ + 1 o p_283419_ + 2 o p_283293_ + a (Lae;)V m_97178_ + 0 o p_97179_ + b (Leox;II)V m_280047_ + 0 o p_282728_ + 1 o p_282962_ + 2 o p_281511_ + b ()I m_169539_ + b (Lae;)Leve; m_97180_ + 0 o p_97181_ + c ()Lae; m_97182_ + d ()Lsw; m_97189_ + e ()Lan; m_169540_ + f ()Levg; m_97190_ +evd net/minecraft/client/gui/screens/advancements/AdvancementTabType + a ABOVE + b BELOW + c LEFT + d RIGHT + e f_97195_ + f f_97196_ + g f_97197_ + h f_97198_ + i f_97199_ + j $VALUES + ()V + static + (Ljava/lang/String;IIIIII)V + 0 o p_97203_ + 1 o p_97204_ + 2 o p_97205_ + 3 o p_97206_ + 4 o p_97207_ + 5 o p_97208_ + 6 o p_97209_ + a (Leox;IIZI)V m_280111_ + 0 o p_283216_ + 1 o p_282432_ + 2 o p_283617_ + 3 o p_282320_ + 4 o p_281898_ + a (Leox;IIILcfz;)V m_280639_ + 0 o p_281370_ + 1 o p_283209_ + 2 o p_282807_ + 3 o p_282968_ + 4 o p_283383_ + a (I)I m_97211_ + 0 o p_97212_ + a (IIIDD)Z m_97213_ + 0 o p_97214_ + 1 o p_97215_ + 2 o p_97216_ + 3 o p_97217_ + 4 o p_97218_ + a ()I m_97210_ + b ()[Levd; m_169541_ + static + b (I)I m_97232_ + 0 o p_97233_ + valueOf (Ljava/lang/String;)Levd; valueOf + static + 0 o p_97235_ + values ()[Levd; values + static +evd$1 net/minecraft/client/gui/screens/advancements/AdvancementTabType$1 + a f_97237_ + ()V + static +eve net/minecraft/client/gui/screens/advancements/AdvancementWidget + a f_97239_ + b f_169542_ + c f_169543_ + d f_169544_ + e f_169545_ + f f_169546_ + g f_169547_ + h f_169548_ + i f_169549_ + j f_169550_ + k f_169551_ + l f_169552_ + m f_169553_ + n f_97240_ + o f_97241_ + p f_97242_ + q f_97243_ + r f_97244_ + s f_97245_ + t f_97246_ + u f_97247_ + v f_97248_ + w f_97249_ + x f_97250_ + y f_97251_ + z f_97252_ + ()V + static + (Levc;Lenn;Lae;Lan;)V + 0 o p_97255_ + 1 o p_97256_ + 2 o p_97257_ + 3 o p_97258_ + a (Leox;IIFII)V m_280255_ + 0 o p_283068_ + 1 o p_281304_ + 2 o p_281253_ + 3 o p_281848_ + 4 o p_282097_ + 5 o p_281537_ + a (Leve;)V m_97306_ + 0 o p_97307_ + a (Leox;IIZ)V m_97298_ + 0 o p_281947_ + 1 o p_97300_ + 2 o p_97301_ + 3 o p_97302_ + a ()I m_169554_ + a (Lsw;I)Ljava/util/List; m_97308_ + 0 o p_97309_ + 1 o p_97310_ + a (Leox;II)V m_280229_ + 0 o p_281958_ + 1 o p_281323_ + 2 o p_283679_ + a (IIII)Z m_97259_ + 0 o p_97260_ + 1 o p_97261_ + 2 o p_97262_ + 3 o p_97263_ + a (Lae;)Leve; m_97311_ + 0 o p_97312_ + a (Lenz;Ljava/util/List;)F m_97303_ + static + 0 o p_97304_ + 1 o p_97305_ + a (Lag;)V m_97264_ + 0 o p_97265_ + b ()V m_97313_ + c ()I m_97314_ + d ()I m_97315_ +evf net/minecraft/client/gui/screens/advancements/AdvancementWidgetType + a OBTAINED + b UNOBTAINED + c f_97318_ + d $VALUES + ()V + static + (Ljava/lang/String;II)V + 0 o p_97322_ + 1 o p_97323_ + 2 o p_97324_ + a ()I m_97325_ + b ()[Levf; m_169555_ + static + valueOf (Ljava/lang/String;)Levf; valueOf + static + 0 o p_97327_ + values ()[Levf; values + static +evg net/minecraft/client/gui/screens/advancements/AdvancementsScreen + A f_97336_ + C f_97337_ + a f_97330_ + b f_169556_ + c f_169557_ + k f_169558_ + l f_169559_ + m f_169560_ + n f_169561_ + o f_169562_ + p f_169563_ + q f_97329_ + r f_169564_ + s f_169565_ + t f_169566_ + u f_169567_ + v f_97331_ + w f_97332_ + x f_97333_ + y f_97334_ + z f_97335_ + ()V + static + (Lfet;)V + 0 o p_97340_ + a (DDIDD)Z m_7979_ + 0 o p_97347_ + 1 o p_97348_ + 2 o p_97349_ + 3 o p_97350_ + 4 o p_97351_ + a (Lae;Lag;)V m_7922_ + 0 o p_97368_ + 1 o p_97369_ + a (DDI)Z m_6375_ + 0 o p_97343_ + 1 o p_97344_ + 2 o p_97345_ + a (III)Z m_7933_ + 0 o p_97353_ + 1 o p_97354_ + 2 o p_97355_ + a (Leox;IIII)V m_97373_ + 0 o p_282012_ + 1 o p_97375_ + 2 o p_97376_ + 3 o p_97377_ + 4 o p_97378_ + a ()V m_7204_ + a (Leox;II)V m_280088_ + 0 o p_283395_ + 1 o p_281890_ + 2 o p_282532_ + a (Leox;IIF)V m_88315_ + 0 o p_282589_ + 1 o p_282255_ + 2 o p_283354_ + 3 o p_283123_ + a (Lae;)V m_5513_ + 0 o p_97366_ + ax_ ()V m_7861_ + b (Leox;IIII)V m_280355_ + 0 o p_282784_ + 1 o p_283556_ + 2 o p_282458_ + 3 o p_281519_ + 4 o p_283371_ + b (Lae;)V m_5504_ + 0 o p_97372_ + b ()V m_7856_ + c (Lae;)V m_5505_ + 0 o p_97380_ + d (Lae;)V m_5516_ + 0 o p_97388_ + e (Lae;)V m_6896_ + 0 o p_97391_ + f (Lae;)Leve; m_97392_ + 0 o p_97393_ + g (Lae;)Levc; m_97394_ + 0 o p_97395_ +evh net/minecraft/client/gui/screens/advancements/package-info +evi net/minecraft/client/gui/screens/controls/ControlsScreen + c f_202378_ + (Leuq;Lenr;)V + 0 o p_97519_ + 1 o p_97520_ + a (Lepi;)V m_279806_ + 0 o p_280845_ + a (Leox;IIF)V m_88315_ + 0 o p_282220_ + 1 o p_281404_ + 2 o p_281386_ + 3 o p_281394_ + b ()V m_7856_ + b (Lepi;)V m_279805_ + 0 o p_280844_ + c (Lepi;)V m_279807_ + 0 o p_280846_ +evj net/minecraft/client/gui/screens/controls/KeyBindsList + a f_193858_ + l f_193859_ + (Levk;Lenn;)V + 0 o p_193861_ + 1 o p_193862_ + a (Levj;)Lenn; m_193863_ + static + 0 o p_193864_ + b ()I m_5759_ + b (Levj;)Lenn; m_193865_ + static + 0 o p_193866_ + c ()I m_5756_ + c (Levj;)Lenn; m_193868_ + static + 0 o p_193869_ + d (Levj;)Lenn; m_193871_ + static + 0 o p_193872_ + d ()V m_269130_ + e (Levj;)Lenn; m_193873_ + static + 0 o p_193874_ + e ()V m_269365_ + f (Levj;)Lenn; m_193875_ + static + 0 o p_193876_ + g (Levj;)Lenn; m_193877_ + static + 0 o p_193878_ + h (Levj;)Lenn; m_193879_ + static + 0 o p_193880_ +evj$a net/minecraft/client/gui/screens/controls/KeyBindsList$CategoryEntry + a f_193881_ + b f_193882_ + c f_193883_ + (Levj;Lsw;)V + 0 o p_193885_ + 1 o p_193886_ + a (Lesv;)Leou; m_264064_ + 0 o p_265391_ + a (Leox;IIIIIIIZF)V m_6311_ + 0 o p_281285_ + 1 o p_281396_ + 2 o p_283616_ + 3 o p_281333_ + 4 o p_282287_ + 5 o p_283549_ + 6 o p_283684_ + 7 o p_283258_ + 8 o p_281563_ + 9 o p_283186_ + b ()Ljava/util/List; m_142437_ + d ()V m_264257_ + i ()Ljava/util/List; m_6702_ +evj$a$1 net/minecraft/client/gui/screens/controls/KeyBindsList$CategoryEntry$1 + a f_193902_ + (Levj$a;)V + 0 o p_193904_ + b (Lesp;)V m_142291_ + 0 o p_193906_ + q ()Lesn$a; m_142684_ +evj$b net/minecraft/client/gui/screens/controls/KeyBindsList$Entry + ()V + d ()V m_264257_ +evj$c net/minecraft/client/gui/screens/controls/KeyBindsList$KeyEntry + a f_193909_ + b f_193910_ + c f_193911_ + d f_193912_ + e f_193913_ + f f_268447_ + (Levj;Lenl;Lsw;)V + 0 o p_193915_ + 1 o p_193916_ + 2 o p_193917_ + a (Lenl;Lepi;)V m_268769_ + 0 o p_269615_ + 1 o p_269616_ + a (Lsw;Ljava/util/function/Supplier;)Ltj; m_252565_ + static + 0 o p_253312_ + 1 o p_253313_ + a (Lenl;Lsw;Ljava/util/function/Supplier;)Ltj; m_252564_ + static + 0 o p_253309_ + 1 o p_253310_ + 2 o p_253311_ + a (Leox;IIIIIIIZF)V m_6311_ + 0 o p_281805_ + 1 o p_281298_ + 2 o p_282357_ + 3 o p_281373_ + 4 o p_283433_ + 5 o p_281932_ + 6 o p_282224_ + 7 o p_282053_ + 8 o p_282605_ + 9 o p_281432_ + b (Lenl;Lepi;)V m_268770_ + 0 o p_269617_ + 1 o p_269618_ + b ()Ljava/util/List; m_142437_ + d ()V m_264257_ + i ()Ljava/util/List; m_6702_ +evk net/minecraft/client/gui/screens/controls/KeyBindsScreen + c f_193975_ + k f_193976_ + l f_193977_ + m f_193978_ + (Leuq;Lenr;)V + 0 o p_193980_ + 1 o p_193981_ + a (Lepi;)V m_279808_ + 0 o p_280847_ + a (III)Z m_7933_ + 0 o p_193987_ + 1 o p_193988_ + 2 o p_193989_ + a (Leox;IIF)V m_88315_ + 0 o p_282556_ + 1 o p_193992_ + 2 o p_193993_ + 3 o p_193994_ + a (DDI)Z m_6375_ + 0 o p_193983_ + 1 o p_193984_ + 2 o p_193985_ + b ()V m_7856_ + b (Lepi;)V m_268771_ + 0 o p_269619_ +evl net/minecraft/client/gui/screens/controls/package-info +evm net/minecraft/client/gui/screens/debug/GameModeSwitcherScreen + a f_97541_ + b f_169582_ + c f_169583_ + k f_169584_ + l f_169585_ + m f_169586_ + n f_169587_ + o f_97542_ + p f_97543_ + q f_97544_ + r f_97545_ + s f_97546_ + t f_97547_ + u f_97548_ + v f_97549_ + ()V + static + ()V + B ()V m_97576_ + C ()Z m_97577_ + a (III)Z m_7933_ + 0 o p_97553_ + 1 o p_97554_ + 2 o p_97555_ + a (Leox;IIF)V m_88315_ + 0 o p_281834_ + 1 o p_283223_ + 2 o p_282178_ + 3 o p_281339_ + a (Lenn;Levm$a;)V m_280040_ + static + 0 o p_281340_ + 1 o p_281358_ + az_ ()Z m_7043_ + b ()V m_7856_ + l ()Lcmj; m_97575_ +evm$1 net/minecraft/client/gui/screens/debug/GameModeSwitcherScreen$1 + a f_97578_ + b f_97579_ + ()V + static +evm$a net/minecraft/client/gui/screens/debug/GameModeSwitcherScreen$GameModeIcon + a CREATIVE + b SURVIVAL + c ADVENTURE + d SPECTATOR + e f_97585_ + f f_169590_ + g f_97586_ + h f_97587_ + i f_97588_ + j f_169591_ + k $VALUES + ()V + static + (Ljava/lang/String;ILsw;Ljava/lang/String;Lcfz;)V + 0 o p_97592_ + 1 o p_97593_ + 2 o p_97594_ + 3 o p_97595_ + 4 o p_97596_ + a (Lcmj;)Levm$a; m_280074_ + static + 0 o p_283307_ + a ()Lsw; m_97597_ + a (Leox;II)V m_280357_ + 0 o p_282609_ + 1 o p_283301_ + 2 o p_281692_ + b ()Ljava/lang/String; m_97611_ + c ()Levm$a; m_280506_ + d ()[Levm$a; m_169592_ + static + valueOf (Ljava/lang/String;)Levm$a; valueOf + static + 0 o p_97620_ + values ()[Levm$a; values + static +evm$b net/minecraft/client/gui/screens/debug/GameModeSwitcherScreen$GameModeSlot + a f_97622_ + b f_97623_ + c f_97624_ + (Levm;Levm$a;II)V + 0 o p_97626_ + 1 o p_97627_ + 2 o p_97628_ + 3 o p_97629_ + a (Lesp;)V m_168797_ + 0 o p_259120_ + a (Leox;)V m_280023_ + 0 o p_281786_ + b (Leox;)V m_280608_ + 0 o p_281820_ + b (Z)V m_97643_ + 0 o p_97644_ + b (Leox;IIF)V m_87963_ + 0 o p_281380_ + 1 o p_283094_ + 2 o p_283558_ + 3 o p_282631_ + n ()Z m_198029_ +evn net/minecraft/client/gui/screens/debug/package-info +evo net/minecraft/client/gui/screens/inventory/AbstractCommandBlockEditScreen + a f_97646_ + b f_97647_ + c f_97648_ + k f_97649_ + l f_97650_ + m f_97652_ + n f_97653_ + o f_97654_ + p f_97655_ + ()V + static + ()V + B ()I m_7821_ + C ()V m_97695_ + a (Ljava/lang/String;)V m_97688_ + 0 o p_97689_ + a (Lcln;)V m_6372_ + 0 o p_97670_ + a (Lepi;)V m_289589_ + 0 o p_289627_ + a (Lenn;II)V m_6574_ + 0 o p_97677_ + 1 o p_97678_ + 2 o p_97679_ + a (Lepp;Ljava/lang/Boolean;)V m_169595_ + 0 o p_169596_ + 1 o p_169597_ + a (DDI)Z m_6375_ + 0 o p_97663_ + 1 o p_97664_ + 2 o p_97665_ + a (DDD)Z m_6050_ + 0 o p_97659_ + 1 o p_97660_ + 2 o p_97661_ + a (III)Z m_7933_ + 0 o p_97667_ + 1 o p_97668_ + 2 o p_97669_ + a (Leox;IIF)V m_88315_ + 0 o p_283074_ + 1 o p_97673_ + 2 o p_97674_ + 3 o p_97675_ + b ()V m_7856_ + b (Lepi;)V m_97690_ + 0 o p_97691_ + c (Z)V m_169598_ + 0 o p_169599_ + f ()V m_86600_ + l ()Lcln; m_6556_ +evo$1 net/minecraft/client/gui/screens/inventory/AbstractCommandBlockEditScreen$1 + d f_97696_ + (Levo;Leov;IIIILsw;)V + 0 o p_97698_ + 1 o p_97699_ + 2 o p_97700_ + 3 o p_97701_ + 4 o p_97702_ + 5 o p_97703_ + 6 o p_97704_ + aE_ ()Ltj; m_5646_ +evp net/minecraft/client/gui/screens/inventory/AbstractContainerScreen + A f_97707_ + C f_97708_ + D f_97709_ + E f_97710_ + F f_97711_ + G f_97712_ + H f_97713_ + I f_97714_ + J f_97715_ + K f_97716_ + L f_97717_ + M f_97718_ + N f_97719_ + O f_97720_ + P f_97721_ + Q f_97722_ + R f_97723_ + S f_97724_ + a f_97725_ + b f_169603_ + c f_97726_ + k f_97727_ + l f_97728_ + m f_97729_ + n f_97730_ + o f_97731_ + p f_97732_ + q f_169604_ + r f_97734_ + s f_97735_ + t f_97736_ + u f_97737_ + v f_97738_ + w f_169605_ + x f_169600_ + y f_169602_ + z f_97706_ + ()V + static + (Lcbf;Lbyn;Lsw;)V + 0 o p_97741_ + 1 o p_97742_ + 2 o p_97743_ + B ()V m_181908_ + C ()Lcbf; m_6262_ + F ()V m_97818_ + a (II)Z m_97805_ + 0 o p_97806_ + 1 o p_97807_ + a (DDIII)Z m_7467_ + 0 o p_97757_ + 1 o p_97758_ + 2 o p_97759_ + 3 o p_97760_ + 4 o p_97761_ + a (Lccx;DD)Z m_97774_ + 0 o p_97775_ + 1 o p_97776_ + 2 o p_97777_ + a (DDI)Z m_6375_ + 0 o p_97748_ + 1 o p_97749_ + 2 o p_97750_ + a (Leox;FII)V m_7286_ + 0 o p_283065_ + 1 o p_97788_ + 2 o p_97789_ + 3 o p_97790_ + a (III)Z m_7933_ + 0 o p_97765_ + 1 o p_97766_ + 2 o p_97767_ + a (Leox;II)V m_280072_ + 0 o p_283594_ + 1 o p_282171_ + 2 o p_281909_ + a (DD)Lccx; m_97744_ + 0 o p_97745_ + 1 o p_97746_ + a (Lccx;IILcbo;)V m_6597_ + 0 o p_97778_ + 1 o p_97779_ + 2 o p_97780_ + 3 o p_97781_ + a (IIIIDD)Z m_6774_ + 0 o p_97768_ + 1 o p_97769_ + 2 o p_97770_ + 3 o p_97771_ + 4 o p_97772_ + 5 o p_97773_ + a (DDIDD)Z m_7979_ + 0 o p_97752_ + 1 o p_97753_ + 2 o p_97754_ + 3 o p_97755_ + 4 o p_97756_ + a (I)V m_97762_ + 0 o p_97763_ + a (Lcfz;)Ljava/util/List; m_280553_ + 0 o p_283689_ + a (Leox;Lcfz;IILjava/lang/String;)V m_280211_ + 0 o p_282567_ + 1 o p_281330_ + 2 o p_281772_ + 3 o p_281689_ + 4 o p_282568_ + a (Leox;Lccx;)V m_280092_ + 0 o p_281607_ + 1 o p_282613_ + a (Leox;III)V m_280359_ + static + 0 o p_283692_ + 1 o p_281453_ + 2 o p_281915_ + 3 o p_283504_ + a (Leox;IIF)V m_88315_ + 0 o p_283479_ + 1 o p_283661_ + 2 o p_281248_ + 3 o p_281886_ + aw_ ()V m_7379_ + ax_ ()V m_7861_ + az_ ()Z m_7043_ + b (Leox;II)V m_280003_ + 0 o p_281635_ + 1 o p_282681_ + 2 o p_283686_ + b (DDI)Z m_6348_ + 0 o p_97812_ + 1 o p_97813_ + 2 o p_97814_ + b ()V m_7856_ + f ()V m_86600_ + l ()V m_238391_ +evq net/minecraft/client/gui/screens/inventory/AbstractFurnaceScreen + w f_97819_ + x f_97820_ + y f_97821_ + z f_97822_ + ()V + static + (Lcbg;Lexy;Lbyn;Lsw;Lacq;)V + 0 o p_97825_ + 1 o p_97826_ + 2 o p_97827_ + 3 o p_97828_ + 4 o p_97829_ + B ()V m_181908_ + D ()V m_6916_ + E ()Leyc; m_5564_ + a (Lepi;)V m_289590_ + 0 o p_289628_ + a (DDIII)Z m_7467_ + 0 o p_97838_ + 1 o p_97839_ + 2 o p_97840_ + 3 o p_97841_ + 4 o p_97842_ + a (CI)Z m_5534_ + 0 o p_97831_ + 1 o p_97832_ + a (DDI)Z m_6375_ + 0 o p_97834_ + 1 o p_97835_ + 2 o p_97836_ + a (Leox;FII)V m_7286_ + 0 o p_282928_ + 1 o p_281631_ + 2 o p_281252_ + 3 o p_281891_ + a (III)Z m_7933_ + 0 o p_97844_ + 1 o p_97845_ + 2 o p_97846_ + a (Lccx;IILcbo;)V m_6597_ + 0 o p_97848_ + 1 o p_97849_ + 2 o p_97850_ + 3 o p_97851_ + a (Leox;IIF)V m_88315_ + 0 o p_282573_ + 1 o p_97859_ + 2 o p_97860_ + 3 o p_97861_ + b ()V m_7856_ +evr net/minecraft/client/gui/screens/inventory/AbstractSignEditScreen + a f_244069_ + b f_244140_ + c f_276619_ + k f_244359_ + l f_276451_ + m f_244564_ + n f_244562_ + o f_243993_ + (Ldav;ZZLsw;)V + 0 o p_277792_ + 1 o p_277607_ + 2 o p_278039_ + 3 o p_277393_ + (Ldav;ZZ)V + 0 o p_277842_ + 1 o p_277719_ + 2 o p_277969_ + B ()Z m_276846_ + C ()V m_245712_ + D ()Ljava/lang/String; m_246292_ + a (Ljava/lang/String;)V m_276998_ + 0 o p_277913_ + a (Lepi;)V m_247127_ + 0 o p_251194_ + a (CI)Z m_5534_ + 0 o p_252008_ + 1 o p_251178_ + a (Leox;Ldcb;)V m_245490_ + 0 o p_281459_ + 1 o p_250054_ + a (III)Z m_7933_ + 0 o p_252300_ + 1 o p_250424_ + 2 o p_250697_ + a (I)[Ljava/lang/String; m_245491_ + static + 0 o p_249111_ + a (ZI)Lsw; m_276701_ + 0 o p_277213_ + 1 o p_277214_ + a (Leox;IIF)V m_88315_ + 0 o p_282418_ + 1 o p_281700_ + 2 o p_283040_ + 3 o p_282799_ + aw_ ()V m_7379_ + ax_ ()V m_7861_ + az_ ()Z m_7043_ + b (Ljava/lang/String;)Z m_279811_ + 0 o p_280850_ + b (Leox;Ldcb;)V m_280050_ + 0 o p_282672_ + 1 o p_283056_ + b ()V m_7856_ + c (Leox;)V m_280362_ + 0 o p_282006_ + d (Leox;)V m_280079_ + 0 o p_282366_ + f ()V m_86600_ + l ()Lorg/joml/Vector3f; m_245038_ +evs net/minecraft/client/gui/screens/inventory/AnvilScreen + w f_97869_ + x f_97870_ + y f_97871_ + z f_169611_ + ()V + static + (Lcbh;Lbyn;Lsw;)V + 0 o p_97874_ + 1 o p_97875_ + 2 o p_97876_ + B ()V m_181908_ + D ()V m_5653_ + a (Leox;FII)V m_7286_ + 0 o p_283345_ + 1 o p_283412_ + 2 o p_282871_ + 3 o p_281306_ + a (Lcbf;ILcfz;)V m_7934_ + 0 o p_97882_ + 1 o p_97883_ + 2 o p_97884_ + a (Ljava/lang/String;)V m_97898_ + 0 o p_97899_ + a (Lenn;II)V m_6574_ + 0 o p_97886_ + 1 o p_97887_ + 2 o p_97888_ + a (III)Z m_7933_ + 0 o p_97878_ + 1 o p_97879_ + 2 o p_97880_ + b (Leox;II)V m_280003_ + 0 o p_281442_ + 1 o p_282417_ + 2 o p_283022_ + c (Leox;IIF)V m_6691_ + 0 o p_283449_ + 1 o p_283263_ + 2 o p_281526_ + 3 o p_282957_ + c (Leox;II)V m_266390_ + 0 o p_282905_ + 1 o p_283237_ + 2 o p_282237_ +evt net/minecraft/client/gui/screens/inventory/BeaconScreen + A f_97908_ + C f_97909_ + w f_97903_ + x f_97904_ + y f_97905_ + z f_169612_ + ()V + static + (Lcbi;Lbyn;Lsw;)V + 0 o p_97912_ + 1 o p_97913_ + 2 o p_97914_ + B ()V m_181908_ + D ()V m_169626_ + a (Levt;)Lenn; m_169624_ + static + 0 o p_169625_ + a (ILevt$a;)V m_169613_ + static + 0 o p_169614_ + 1 o p_169615_ + a (Leox;FII)V m_7286_ + 0 o p_282454_ + 1 o p_282185_ + 2 o p_282362_ + 3 o p_282987_ + a (Lepf;)V m_169616_ + 0 o p_169617_ + a (Leox;IIF)V m_88315_ + 0 o p_283062_ + 1 o p_282876_ + 2 o p_282015_ + 3 o p_281395_ + b (Leox;II)V m_280003_ + 0 o p_283369_ + 1 o p_282699_ + 2 o p_281296_ + b (Levt;)Lenn; m_169620_ + static + 0 o p_169621_ + b ()V m_7856_ + c (Levt;)Lenn; m_169622_ + static + 0 o p_169623_ +evt$1 net/minecraft/client/gui/screens/inventory/BeaconScreen$1 + a f_97963_ + b f_97964_ + (Levt;Lcbi;)V + 0 o p_97966_ + 1 o p_97967_ + a (Lcbf;ILcfz;)V m_7934_ + 0 o p_97973_ + 1 o p_97974_ + 2 o p_97975_ + a (Lcbf;II)V m_142153_ + 0 o p_169628_ + 1 o p_169629_ + 2 o p_169630_ +evt$a net/minecraft/client/gui/screens/inventory/BeaconScreen$BeaconButton + a (I)V m_142400_ + 0 o p_169631_ +evt$b net/minecraft/client/gui/screens/inventory/BeaconScreen$BeaconCancelButton + a f_97979_ + (Levt;II)V + 0 o p_97981_ + 1 o p_97982_ + 2 o p_97983_ + a (I)V m_142400_ + 0 o p_169636_ + c ()V m_5691_ +evt$c net/minecraft/client/gui/screens/inventory/BeaconScreen$BeaconConfirmButton + a f_97989_ + (Levt;II)V + 0 o p_97991_ + 1 o p_97992_ + 2 o p_97993_ + a (I)V m_142400_ + 0 o p_169638_ + c ()V m_5691_ +evt$d net/minecraft/client/gui/screens/inventory/BeaconScreen$BeaconPowerButton + a f_169639_ + b f_97999_ + c f_98002_ + d f_98000_ + e f_98001_ + (Levt;IILbey;ZI)V + 0 o p_169641_ + 1 o p_169642_ + 2 o p_169643_ + 3 o p_169644_ + 4 o p_169645_ + 5 o p_169646_ + a (I)V m_142400_ + 0 o p_169648_ + a (Leox;)V m_6805_ + 0 o p_282265_ + a (Lbey;)V m_169649_ + 0 o p_169650_ + aE_ ()Ltj; m_5646_ + b (Lbey;)Ltj; m_141934_ + 0 o p_169652_ + c ()V m_5691_ +evt$e net/minecraft/client/gui/screens/inventory/BeaconScreen$BeaconScreenButton + a f_98020_ + (II)V + 0 o p_98022_ + 1 o p_98023_ + (IILsw;)V + 0 o p_169654_ + 1 o p_169655_ + 2 o p_169656_ + a (Lesp;)V m_168797_ + 0 o p_259705_ + a ()Z m_98024_ + a (Leox;)V m_6805_ + 0 o p_283292_ + b (Z)V m_98031_ + 0 o p_98032_ + b (Leox;IIF)V m_87963_ + 0 o p_281837_ + 1 o p_281780_ + 2 o p_283603_ + 3 o p_283562_ +evt$f net/minecraft/client/gui/screens/inventory/BeaconScreen$BeaconSpriteScreenButton + a f_98033_ + b f_98034_ + (IIIILsw;)V + 0 o p_169663_ + 1 o p_169664_ + 2 o p_169665_ + 3 o p_169666_ + 4 o p_169667_ + a (Leox;)V m_6805_ + 0 o p_283624_ +evt$g net/minecraft/client/gui/screens/inventory/BeaconScreen$BeaconUpgradePowerButton + c f_169672_ + (Levt;IILbey;)V + 0 o p_169674_ + 1 o p_169675_ + 2 o p_169676_ + 3 o p_169677_ + a (I)V m_142400_ + 0 o p_169679_ + b (Lbey;)Ltj; m_141934_ + 0 o p_169681_ +evu net/minecraft/client/gui/screens/inventory/BlastFurnaceScreen + x f_98042_ + ()V + static + (Lcbj;Lbyn;Lsw;)V + 0 o p_98045_ + 1 o p_98046_ + 2 o p_98047_ +evv net/minecraft/client/gui/screens/inventory/BookEditScreen + A f_98049_ + C f_98050_ + D f_98051_ + E f_98052_ + F f_98053_ + G f_98054_ + H f_98055_ + I f_98056_ + J f_98057_ + K f_98058_ + L f_98059_ + a f_169682_ + b f_169683_ + c f_169685_ + k f_169686_ + l f_98060_ + m f_98061_ + n f_98062_ + o f_98063_ + p f_98064_ + q f_98065_ + r f_98066_ + s f_98067_ + t f_98068_ + u f_98069_ + v f_98070_ + w f_98071_ + x f_98072_ + y f_98073_ + z f_98048_ + ()V + static + (Lbyo;Lcfz;Lbdw;)V + 0 o p_98076_ + 1 o p_98077_ + 2 o p_98078_ + B ()I m_98181_ + C ()V m_98182_ + D ()V m_98183_ + E ()V m_98184_ + F ()V m_98185_ + G ()V m_98186_ + H ()V m_98187_ + I ()V m_98188_ + J ()V m_98189_ + K ()V m_98190_ + L ()Ljava/lang/String; m_98191_ + M ()Levv$a; m_98079_ + N ()V m_98080_ + O ()V m_98081_ + P ()Levv$a; m_98082_ + Q ()Ljava/lang/String; m_98083_ + a (DDI)Z m_6375_ + 0 o p_98088_ + 1 o p_98089_ + 2 o p_98090_ + a (Lorg/apache/commons/lang3/mutable/MutableInt;Ljava/lang/String;Lorg/apache/commons/lang3/mutable/MutableBoolean;Lit/unimi/dsi/fastutil/ints/IntList;Ljava/util/List;Lts;II)V m_98126_ + 0 o p_98127_ + 1 o p_98128_ + 2 o p_98129_ + 3 o p_98130_ + 4 o p_98131_ + 5 o p_98132_ + 6 o p_98133_ + 7 o p_98134_ + a (III)Z m_7933_ + 0 o p_98100_ + 1 o p_98101_ + 2 o p_98102_ + a ([II)I m_98149_ + static + 0 o p_98150_ + 1 o p_98151_ + a (Leox;Levv$c;Z)V m_280220_ + 0 o p_281833_ + 1 o p_282190_ + 2 o p_282412_ + a (DDIDD)Z m_7979_ + 0 o p_98092_ + 1 o p_98093_ + 2 o p_98094_ + 3 o p_98095_ + 4 o p_98096_ + a (Leox;[Lfkc;)V m_264248_ + 0 o p_282188_ + 1 o p_265482_ + a (Levv$c;Levv$c;)Lfkc; m_98116_ + 0 o p_98117_ + 1 o p_98118_ + a (Leox;IIF)V m_88315_ + 0 o p_281724_ + 1 o p_282965_ + 2 o p_283294_ + 3 o p_281293_ + a (Ljava/lang/String;)V m_98147_ + 0 o p_98148_ + a (Lepi;)V m_98112_ + 0 o p_98113_ + a (CI)Z m_5534_ + 0 o p_98085_ + 1 o p_98086_ + a (Levv$c;)Levv$c; m_98114_ + 0 o p_98115_ + a (I)V m_98097_ + 0 o p_98098_ + a (Ljava/lang/String;Lenz;IIII)Lfkc; m_98119_ + 0 o p_98120_ + 1 o p_98121_ + 2 o p_98122_ + 3 o p_98123_ + 4 o p_98124_ + 5 o p_98125_ + b (Lepi;)V m_98143_ + 0 o p_98144_ + b (Levv$c;)Levv$c; m_98145_ + 0 o p_98146_ + b (Ljava/lang/String;)V m_98158_ + 0 o p_98159_ + b (I)V m_98141_ + 0 o p_98142_ + b ()V m_7856_ + c (Ljava/lang/String;)Z m_98169_ + static + 0 o p_98170_ + c (Lepi;)V m_98156_ + 0 o p_98157_ + c (III)Z m_98152_ + 0 o p_98153_ + 1 o p_98154_ + 2 o p_98155_ + c (Z)V m_98160_ + 0 o p_98161_ + d (Lepi;)V m_279813_ + 0 o p_280852_ + d (Ljava/lang/String;)V m_98174_ + 0 o p_98175_ + d (III)Z m_98163_ + 0 o p_98164_ + 1 o p_98165_ + 2 o p_98166_ + e (Ljava/lang/String;)Z m_279814_ + 0 o p_280853_ + e (Z)V m_182574_ + 0 o p_182575_ + e (Lepi;)V m_279812_ + 0 o p_280851_ + f ()V m_86600_ + f (Lepi;)V m_98176_ + 0 o p_98177_ + l ()Ljava/lang/String; m_98180_ +evv$a net/minecraft/client/gui/screens/inventory/BookEditScreen$DisplayCache + a f_98192_ + b f_98193_ + c f_98194_ + d f_98195_ + e f_98196_ + f f_98197_ + g f_98198_ + ()V + static + (Ljava/lang/String;Levv$c;Z[I[Levv$b;[Lfkc;)V + 0 o p_98201_ + 1 o p_98202_ + 2 o p_98203_ + 3 o p_98204_ + 4 o p_98205_ + 5 o p_98206_ + a (I)I m_98208_ + 0 o p_98209_ + a (II)I m_98210_ + 0 o p_98211_ + 1 o p_98212_ + a (Leov;Levv$c;)I m_98213_ + 0 o p_98214_ + 1 o p_98215_ + b (I)I m_98218_ + 0 o p_98219_ +evv$b net/minecraft/client/gui/screens/inventory/BookEditScreen$LineInfo + a f_98226_ + b f_98227_ + c f_98228_ + d f_98229_ + e f_98230_ + (Lts;Ljava/lang/String;II)V + 0 o p_98232_ + 1 o p_98233_ + 2 o p_98234_ + 3 o p_98235_ +evv$c net/minecraft/client/gui/screens/inventory/BookEditScreen$Pos2i + a f_98246_ + b f_98247_ + (II)V + 0 o p_98249_ + 1 o p_98250_ +evw net/minecraft/client/gui/screens/inventory/BookViewScreen + a f_169687_ + b f_169688_ + c f_169689_ + k f_98251_ + l f_98252_ + m f_169690_ + n f_169691_ + o f_169692_ + p f_169693_ + q f_98253_ + r f_98254_ + s f_98255_ + t f_98256_ + u f_98257_ + v f_98258_ + w f_98259_ + x f_98260_ + ()V + static + (Levw$a;)V + 0 o p_98264_ + (Levw$a;Z)V + 0 o p_98266_ + 1 o p_98267_ + ()V + B ()V m_98301_ + C ()I m_98300_ + D ()V m_7811_ + E ()V m_7815_ + F ()V m_141919_ + G ()V m_98302_ + a (Lepi;)V m_98286_ + 0 o p_98287_ + a (DD)Lts; m_98268_ + 0 o p_98269_ + 1 o p_98270_ + a (DDI)Z m_6375_ + 0 o p_98272_ + 1 o p_98273_ + 2 o p_98274_ + a (III)Z m_7933_ + 0 o p_98278_ + 1 o p_98279_ + 2 o p_98280_ + a (Lqr;Lqx;I)Ljava/lang/String; m_169699_ + static + 0 o p_169700_ + 1 o p_169701_ + 2 o p_169702_ + a (Lts;)Z m_5561_ + 0 o p_98293_ + a (Lqr;)Ljava/util/List; m_169694_ + static + 0 o p_169695_ + a (Levw$a;)V m_98288_ + 0 o p_98289_ + a (Lqr;Ljava/util/function/Consumer;)V m_169696_ + static + 0 o p_169697_ + 1 o p_169698_ + a (I)Z m_98275_ + 0 o p_98276_ + a (Leox;IIF)V m_88315_ + 0 o p_281997_ + 1 o p_281262_ + 2 o p_283321_ + 3 o p_282251_ + b (Lepi;)V m_98296_ + 0 o p_98297_ + b (I)Z m_7735_ + 0 o p_98295_ + b ()V m_7856_ + c (Lepi;)V m_289591_ + 0 o p_289629_ + l ()V m_7829_ +evw$1 net/minecraft/client/gui/screens/inventory/BookViewScreen$1 + ()V + a (I)Lta; m_7303_ + 0 o p_98306_ + a ()I m_5732_ +evw$a net/minecraft/client/gui/screens/inventory/BookViewScreen$BookAccess + a (Lcfz;)Levw$a; m_98308_ + static + 0 o p_98309_ + a (I)Lta; m_7303_ + 0 o p_98307_ + a ()I m_5732_ + b (I)Lta; m_98310_ + 0 o p_98311_ +evw$b net/minecraft/client/gui/screens/inventory/BookViewScreen$WritableBookAccess + a f_98312_ + (Lcfz;)V + 0 o p_98314_ + a (I)Lta; m_7303_ + 0 o p_98317_ + a ()I m_5732_ + b (Lcfz;)Ljava/util/List; m_98318_ + static + 0 o p_98319_ +evw$c net/minecraft/client/gui/screens/inventory/BookViewScreen$WrittenBookAccess + a f_98320_ + (Lcfz;)V + 0 o p_98322_ + a (I)Lta; m_7303_ + 0 o p_98325_ + a ()I m_5732_ + b (Lcfz;)Ljava/util/List; m_98326_ + static + 0 o p_98327_ +evx net/minecraft/client/gui/screens/inventory/BrewingStandScreen + w f_98328_ + x f_98329_ + ()V + static + (Lcbk;Lbyn;Lsw;)V + 0 o p_98332_ + 1 o p_98333_ + 2 o p_98334_ + a (Leox;FII)V m_7286_ + 0 o p_282963_ + 1 o p_282080_ + 2 o p_283365_ + 3 o p_283150_ + a (Leox;IIF)V m_88315_ + 0 o p_283297_ + 1 o p_283600_ + 2 o p_282033_ + 3 o p_283410_ + b ()V m_7856_ +evy net/minecraft/client/gui/screens/inventory/CartographyTableScreen + w f_98346_ + ()V + static + (Lcbl;Lbyn;Lsw;)V + 0 o p_98349_ + 1 o p_98350_ + 2 o p_98351_ + a (Leox;FII)V m_7286_ + 0 o p_282101_ + 1 o p_282697_ + 2 o p_282380_ + 3 o p_282327_ + a (Leox;Ljava/lang/Integer;Ldyo;IIF)V m_280090_ + 0 o p_282298_ + 1 o p_281648_ + 2 o p_282897_ + 3 o p_281632_ + 4 o p_282115_ + 5 o p_283388_ + a (Leox;IIF)V m_88315_ + 0 o p_281331_ + 1 o p_281706_ + 2 o p_282996_ + 3 o p_283037_ + a (Leox;Ljava/lang/Integer;Ldyo;ZZZZ)V m_280549_ + 0 o p_282167_ + 1 o p_282064_ + 2 o p_282045_ + 3 o p_282086_ + 4 o p_283531_ + 5 o p_282645_ + 6 o p_281646_ +evz net/minecraft/client/gui/screens/inventory/CommandBlockEditScreen + m f_98374_ + n f_98375_ + o f_98376_ + p f_98377_ + q f_98378_ + r f_98379_ + s f_98380_ + (Lczx;)V + 0 o p_98382_ + B ()I m_7821_ + D ()V m_98398_ + a (Lcln;)V m_6372_ + 0 o p_98384_ + a (Lenn;II)V m_6574_ + 0 o p_98386_ + 1 o p_98387_ + 2 o p_98388_ + a (Lepp;Ljava/lang/Boolean;)V m_169723_ + 0 o p_169724_ + 1 o p_169725_ + a (Lepp;Lczx$a;)V m_169720_ + 0 o p_169721_ + 1 o p_169722_ + a (Lczx$a;)Lsw; m_287018_ + static + 0 o p_287312_ + b (Lepp;Ljava/lang/Boolean;)V m_169726_ + 0 o p_169727_ + 1 o p_169728_ + b ()V m_7856_ + e (Z)V m_169729_ + 0 o p_169730_ + l ()Lcln; m_6556_ +evz$1 net/minecraft/client/gui/screens/inventory/CommandBlockEditScreen$1 + a f_98403_ + ()V + static +ew net/minecraft/commands/arguments/SlotArgument + a f_111271_ + b f_111272_ + c f_111273_ + ()V + static + ()V + a (Lcom/mojang/brigadier/context/CommandContext;Ljava/lang/String;)I m_111279_ + static + 0 o p_111280_ + 1 o p_111281_ + a (Lcom/mojang/brigadier/StringReader;)Ljava/lang/Integer; parse + 0 o p_111278_ + a (Ljava/lang/Object;)Lcom/mojang/brigadier/Message; m_111282_ + static + 0 o p_111283_ + a (Ljava/util/HashMap;)V m_111284_ + static + 0 o p_111285_ + a ()Lew; m_111276_ + static + getExamples ()Ljava/util/Collection; getExamples + listSuggestions (Lcom/mojang/brigadier/context/CommandContext;Lcom/mojang/brigadier/suggestion/SuggestionsBuilder;)Ljava/util/concurrent/CompletableFuture; listSuggestions + 0 o p_111288_ + 1 o p_111289_ + parse (Lcom/mojang/brigadier/StringReader;)Ljava/lang/Object; parse + 0 o p_111291_ +ewa net/minecraft/client/gui/screens/inventory/ContainerScreen + w f_98405_ + x f_98406_ + ()V + static + (Lcbm;Lbyn;Lsw;)V + 0 o p_98409_ + 1 o p_98410_ + 2 o p_98411_ + a (Leox;FII)V m_7286_ + 0 o p_283694_ + 1 o p_282334_ + 2 o p_282603_ + 3 o p_282158_ + a (Leox;IIF)V m_88315_ + 0 o p_282060_ + 1 o p_282533_ + 2 o p_281661_ + 3 o p_281873_ +ewb net/minecraft/client/gui/screens/inventory/CraftingScreen + w f_98442_ + x f_98443_ + y f_98444_ + z f_98445_ + ()V + static + (Lcbu;Lbyn;Lsw;)V + 0 o p_98448_ + 1 o p_98449_ + 2 o p_98450_ + B ()V m_181908_ + D ()V m_6916_ + E ()Leyc; m_5564_ + a (IIIIDD)Z m_6774_ + 0 o p_98462_ + 1 o p_98463_ + 2 o p_98464_ + 3 o p_98465_ + 4 o p_98466_ + 5 o p_98467_ + a (Lepi;)V m_289592_ + 0 o p_289630_ + a (DDIII)Z m_7467_ + 0 o p_98456_ + 1 o p_98457_ + 2 o p_98458_ + 3 o p_98459_ + 4 o p_98460_ + a (DDI)Z m_6375_ + 0 o p_98452_ + 1 o p_98453_ + 2 o p_98454_ + a (Leox;FII)V m_7286_ + 0 o p_283540_ + 1 o p_282132_ + 2 o p_283078_ + 3 o p_283647_ + a (Lccx;IILcbo;)V m_6597_ + 0 o p_98469_ + 1 o p_98470_ + 2 o p_98471_ + 3 o p_98472_ + a (Leox;IIF)V m_88315_ + 0 o p_282508_ + 1 o p_98480_ + 2 o p_98481_ + 3 o p_98482_ + b ()V m_7856_ +ewc net/minecraft/client/gui/screens/inventory/CreativeInventoryListener + a f_98490_ + (Lenn;)V + 0 o p_98492_ + a (Lcbf;ILcfz;)V m_7934_ + 0 o p_98498_ + 1 o p_98499_ + 2 o p_98500_ + a (Lcbf;II)V m_142153_ + 0 o p_169732_ + 1 o p_169733_ + 2 o p_169734_ +ewd net/minecraft/client/gui/screens/inventory/CreativeModeInventoryScreen + A f_169738_ + C f_169739_ + D f_169740_ + E f_169741_ + F f_169742_ + G f_98505_ + H f_98506_ + I f_169743_ + J f_98507_ + K f_98508_ + L f_98509_ + M f_98510_ + N f_98511_ + O f_98512_ + P f_98513_ + Q f_98514_ + R f_98515_ + S f_98516_ + T f_256872_ + w f_98504_ + x f_169735_ + y f_169736_ + z f_169737_ + ()V + static + (Lbyo;Lcaw;Z)V + 0 o p_259788_ + 1 o p_260074_ + 2 o p_259569_ + B ()V m_181908_ + D ()Z m_258017_ + E ()V m_98630_ + G ()Z m_98631_ + a (Ljava/lang/String;)V m_98619_ + 0 o p_98620_ + a (Lcef;DD)Z m_98562_ + 0 o p_98563_ + 1 o p_98564_ + 2 o p_98565_ + a (DDIII)Z m_7467_ + 0 o p_98541_ + 1 o p_98542_ + 2 o p_98543_ + 3 o p_98544_ + 4 o p_98545_ + a (CI)Z m_5534_ + 0 o p_98521_ + 1 o p_98522_ + a (Ljava/lang/String;Lacq;)Z m_98607_ + static + 0 o p_98608_ + 1 o p_98609_ + a (Leox;Lcef;)V m_280560_ + 0 o p_283590_ + 1 o p_283489_ + a (DDI)Z m_6375_ + 0 o p_98531_ + 1 o p_98532_ + 2 o p_98533_ + a (Leox;FII)V m_7286_ + 0 o p_282663_ + 1 o p_282504_ + 2 o p_282089_ + 3 o p_282249_ + a (DDD)Z m_6050_ + 0 o p_98527_ + 1 o p_98528_ + 2 o p_98529_ + a (Lcfz;Ljava/util/List;Lanl;)V m_205404_ + static + 0 o p_205405_ + 1 o p_205406_ + 2 o p_205407_ + a (III)Z m_7933_ + 0 o p_98547_ + 1 o p_98548_ + 2 o p_98549_ + a (Lbyo;)Z m_257869_ + 0 o p_259959_ + a (Lccx;IILcbo;)V m_6597_ + 0 o p_98556_ + 1 o p_98557_ + 2 o p_98558_ + 3 o p_98559_ + a (Lenn;IZZ)V m_98598_ + static + 0 o p_98599_ + 1 o p_98600_ + 2 o p_98601_ + 3 o p_98602_ + a (DD)Z m_98523_ + 0 o p_98524_ + 1 o p_98525_ + a (DDIDD)Z m_7979_ + 0 o p_98535_ + 1 o p_98536_ + 2 o p_98537_ + 3 o p_98538_ + 4 o p_98539_ + a (Ljava/util/function/Predicate;Lanl;)Z m_205408_ + static + 0 o p_205409_ + 1 o p_205410_ + a (Lenn;II)V m_6574_ + 0 o p_98595_ + 1 o p_98596_ + 2 o p_98597_ + a (Lcfz;)Ljava/util/List; m_280553_ + 0 o p_281769_ + a (Lccx;)Z m_98553_ + 0 o p_98554_ + a (Lcaw;ZLhg$b;)V m_257967_ + 0 o p_259501_ + 1 o p_259713_ + 2 o p_270898_ + a (Leox;Lcef;II)Z m_280537_ + 0 o p_282317_ + 1 o p_282244_ + 2 o p_283469_ + 3 o p_283411_ + a (Lcef;)V m_98560_ + 0 o p_98561_ + a (Ljava/lang/String;Ljava/lang/String;Lacq;)Z m_98603_ + static + 0 o p_98604_ + 1 o p_98605_ + 2 o p_98606_ + a (Ljava/util/Collection;)V m_257687_ + 0 o p_261591_ + a (Leox;IIF)V m_88315_ + 0 o p_283000_ + 1 o p_281317_ + 2 o p_282770_ + 3 o p_281295_ + ax_ ()V m_7861_ + b (Leox;II)V m_280003_ + 0 o p_283168_ + 1 o p_281774_ + 2 o p_281466_ + b (Lcef;)I m_258094_ + 0 o p_260136_ + b (DDI)Z m_6348_ + 0 o p_98622_ + 1 o p_98623_ + 2 o p_98624_ + b ()V m_7856_ + b (III)Z m_7920_ + 0 o p_98612_ + 1 o p_98613_ + 2 o p_98614_ + c (Lcef;)I m_257995_ + 0 o p_260181_ +ewd$a net/minecraft/client/gui/screens/inventory/CreativeModeInventoryScreen$CustomCreativeSlot + (Lbdq;III)V + 0 o p_98633_ + 1 o p_98634_ + 2 o p_98635_ + 3 o p_98636_ + a (Lbyo;)Z m_8010_ + 0 o p_98638_ +ewd$b net/minecraft/client/gui/screens/inventory/CreativeModeInventoryScreen$ItemPickerMenu + k f_98639_ + l f_169749_ + (Lbyo;)V + 0 o p_98641_ + a (Lbyo;I)Lcfz; m_7648_ + 0 o p_98650_ + 1 o p_98651_ + a (F)I m_257485_ + 0 o p_259664_ + a (Lbyo;)Z m_6875_ + 0 o p_98645_ + a (FD)F m_258092_ + 0 o p_259841_ + 1 o p_260358_ + a (Lcfz;Lccx;)Z m_5882_ + 0 o p_98647_ + 1 o p_98648_ + b (Lccx;)Z m_5622_ + 0 o p_98653_ + b (F)V m_98642_ + 0 o p_98643_ + b (Lcfz;)V m_142503_ + 0 o p_169751_ + e (I)F m_257538_ + 0 o p_259315_ + g ()Lcfz; m_142621_ + l ()I m_257935_ + m ()Z m_98654_ +ewd$c net/minecraft/client/gui/screens/inventory/CreativeModeInventoryScreen$SlotWrapper + a f_98655_ + (Lccx;III)V + 0 o p_98657_ + 1 o p_98658_ + 2 o p_98659_ + 3 o p_98660_ + a (Lcfz;)Z m_5857_ + 0 o p_98670_ + a (Lbyo;Lcfz;)V m_142406_ + 0 o p_169754_ + 1 o p_169755_ + a ()I m_6641_ + a (I)Lcfz; m_6201_ + 0 o p_98663_ + a (Lbyo;)Z m_8010_ + 0 o p_98665_ + a_ (Lcfz;)I m_5866_ + 0 o p_98675_ + b ()Z m_6659_ + c ()Lcom/mojang/datafixers/util/Pair; m_7543_ + d (Lcfz;)V m_269060_ + 0 o p_271008_ + d ()V m_6654_ + e ()Lcfz; m_7993_ + e (Lcfz;)V m_5852_ + 0 o p_98679_ + f ()Z m_6657_ +ewe net/minecraft/client/gui/screens/inventory/CyclingSlotBackground + a f_265999_ + b f_265991_ + c f_265954_ + d f_265871_ + e f_266106_ + f f_266101_ + g f_265868_ + (I)V + 0 o p_267314_ + a (F)F m_266271_ + 0 o p_266904_ + a (Ljava/util/List;)V m_266287_ + 0 o p_267074_ + a (Lccx;Lacq;FLeox;II)V m_280347_ + 0 o p_283532_ + 1 o p_283004_ + 2 o p_282627_ + 3 o p_282825_ + 4 o p_281375_ + 5 o p_283041_ + a (Lcbf;Leox;FII)V m_266270_ + 0 o p_267293_ + 1 o p_282894_ + 2 o p_266785_ + 3 o p_266711_ + 4 o p_266841_ +ewf net/minecraft/client/gui/screens/inventory/DispenserScreen + w f_98682_ + ()V + static + (Lcbw;Lbyn;Lsw;)V + 0 o p_98685_ + 1 o p_98686_ + 2 o p_98687_ + a (Leox;FII)V m_7286_ + 0 o p_283137_ + 1 o p_282476_ + 2 o p_281600_ + 3 o p_283194_ + a (Leox;IIF)V m_88315_ + 0 o p_283282_ + 1 o p_282467_ + 2 o p_282129_ + 3 o p_281965_ + b ()V m_7856_ +ewg net/minecraft/client/gui/screens/inventory/EffectRenderingInventoryScreen + (Lcbf;Lbyn;Lsw;)V + 0 o p_98701_ + 1 o p_98702_ + 2 o p_98703_ + F ()Z m_194018_ + a (Lbfa;)Lsw; m_194000_ + 0 o p_194001_ + a (Leox;IILjava/lang/Iterable;)V m_280417_ + 0 o p_281462_ + 1 o p_283484_ + 2 o p_282057_ + 3 o p_281986_ + a (Leox;IILjava/lang/Iterable;Z)V m_280172_ + 0 o p_281540_ + 1 o p_282479_ + 2 o p_283680_ + 3 o p_282013_ + 4 o p_283630_ + a (Leox;IIF)V m_88315_ + 0 o p_283027_ + 1 o p_281444_ + 2 o p_282953_ + 3 o p_281666_ + b (Leox;IILjava/lang/Iterable;Z)V m_280301_ + 0 o p_282745_ + 1 o p_282521_ + 2 o p_282291_ + 3 o p_282642_ + 4 o p_281536_ + c (Leox;II)V m_280113_ + 0 o p_281945_ + 1 o p_282601_ + 2 o p_282335_ +ewh net/minecraft/client/gui/screens/inventory/EnchantmentNames + a f_98727_ + b f_98728_ + c f_98729_ + d f_98730_ + e f_98731_ + ()V + static + ()V + a (Leov;I)Lta; m_98737_ + 0 o p_98738_ + 1 o p_98739_ + a (J)V m_98735_ + 0 o p_98736_ + a ()Lewh; m_98734_ + static +ewi net/minecraft/client/gui/screens/inventory/EnchantmentScreen + A f_98744_ + C f_98745_ + D f_98746_ + E f_98747_ + F f_98748_ + G f_98750_ + H f_169756_ + I f_98751_ + w f_98740_ + x f_98741_ + y f_98742_ + z f_98743_ + ()V + static + (Lcbx;Lbyn;Lsw;)V + 0 o p_98754_ + 1 o p_98755_ + 2 o p_98756_ + B ()V m_181908_ + D ()V m_98772_ + a (Leox;FII)V m_7286_ + 0 o p_282430_ + 1 o p_282530_ + 2 o p_281621_ + 3 o p_283333_ + a (Leox;IIF)V m_88315_ + 0 o p_283462_ + 1 o p_282491_ + 2 o p_281953_ + 3 o p_282182_ + a (DDI)Z m_6375_ + 0 o p_98758_ + 1 o p_98759_ + 2 o p_98760_ + b ()V m_7856_ + c (Leox;IIF)V m_289602_ + 0 o p_289697_ + 1 o p_289667_ + 2 o p_289669_ + 3 o p_289670_ +ewj net/minecraft/client/gui/screens/inventory/FurnaceScreen + x f_98773_ + ()V + static + (Lcbz;Lbyn;Lsw;)V + 0 o p_98776_ + 1 o p_98777_ + 2 o p_98778_ +ewk net/minecraft/client/gui/screens/inventory/GrindstoneScreen + w f_98779_ + ()V + static + (Lccb;Lbyn;Lsw;)V + 0 o p_98782_ + 1 o p_98783_ + 2 o p_98784_ + a (Leox;FII)V m_7286_ + 0 o p_281991_ + 1 o p_282138_ + 2 o p_282937_ + 3 o p_281956_ + a (Leox;IIF)V m_88315_ + 0 o p_283326_ + 1 o p_281847_ + 2 o p_283310_ + 3 o p_283486_ +ewl net/minecraft/client/gui/screens/inventory/HangingSignEditScreen + b f_243962_ + c f_243728_ + k f_244604_ + l f_244207_ + m f_243720_ + ()V + static + (Ldav;ZZ)V + 0 o p_278017_ + 1 o p_277942_ + 2 o p_277778_ + a (Leox;Ldcb;)V m_245490_ + 0 o p_282580_ + 1 o p_283648_ + b (Leox;Ldcb;)V m_280050_ + 0 o p_282472_ + 1 o p_282359_ + l ()Lorg/joml/Vector3f; m_245038_ +ewm net/minecraft/client/gui/screens/inventory/HopperScreen + w f_98795_ + ()V + static + (Lccc;Lbyn;Lsw;)V + 0 o p_98798_ + 1 o p_98799_ + 2 o p_98800_ + a (Leox;FII)V m_7286_ + 0 o p_281616_ + 1 o p_282737_ + 2 o p_281678_ + 3 o p_281465_ + a (Leox;IIF)V m_88315_ + 0 o p_282918_ + 1 o p_282102_ + 2 o p_282423_ + 3 o p_282621_ +ewn net/minecraft/client/gui/screens/inventory/HorseInventoryScreen + w f_98811_ + x f_98812_ + y f_98813_ + z f_98814_ + ()V + static + (Lccd;Lbyn;Lbtk;)V + 0 o p_98817_ + 1 o p_98818_ + 2 o p_98819_ + a (Leox;FII)V m_7286_ + 0 o p_282553_ + 1 o p_282998_ + 2 o p_282929_ + 3 o p_283133_ + a (Leox;IIF)V m_88315_ + 0 o p_281697_ + 1 o p_282103_ + 2 o p_283529_ + 3 o p_283079_ +ewo net/minecraft/client/gui/screens/inventory/InventoryScreen + A f_98835_ + C f_98836_ + w f_98830_ + x f_98831_ + y f_98832_ + z f_98833_ + ()V + static + (Lbyo;)V + 0 o p_98839_ + B ()V m_181908_ + D ()V m_6916_ + E ()Leyc; m_5564_ + a (IIIIDD)Z m_6774_ + 0 o p_98858_ + 1 o p_98859_ + 2 o p_98860_ + 3 o p_98861_ + 4 o p_98862_ + 5 o p_98863_ + a (Leox;IIIFFLbfz;)V m_274545_ + static + 0 o p_282802_ + 1 o p_275688_ + 2 o p_275245_ + 3 o p_275535_ + 4 o p_275604_ + 5 o p_275546_ + 6 o p_275689_ + a (Lepi;)V m_289593_ + 0 o p_289631_ + a (DDIII)Z m_7467_ + 0 o p_98845_ + 1 o p_98846_ + 2 o p_98847_ + 3 o p_98848_ + 4 o p_98849_ + a (Lfow;Lbfz;Leox;)V m_279817_ + static + 0 o p_280856_ + 1 o p_280857_ + 2 o p_280858_ + a (DDI)Z m_6375_ + 0 o p_98841_ + 1 o p_98842_ + 2 o p_98843_ + a (Leox;FII)V m_7286_ + 0 o p_281500_ + 1 o p_281299_ + 2 o p_283481_ + 3 o p_281831_ + a (Leox;IIILorg/joml/Quaternionf;Lorg/joml/Quaternionf;Lbfz;)V m_280432_ + static + 0 o p_282665_ + 1 o p_283622_ + 2 o p_283401_ + 3 o p_281360_ + 4 o p_281880_ + 5 o p_282882_ + 6 o p_282466_ + a (Lccx;IILcbo;)V m_6597_ + 0 o p_98865_ + 1 o p_98866_ + 2 o p_98867_ + 3 o p_98868_ + a (Leox;IIF)V m_88315_ + 0 o p_283246_ + 1 o p_98876_ + 2 o p_98877_ + 3 o p_98878_ + b (Leox;II)V m_280003_ + 0 o p_281654_ + 1 o p_283517_ + 2 o p_283464_ + b (DDI)Z m_6348_ + 0 o p_98893_ + 1 o p_98894_ + 2 o p_98895_ + b ()V m_7856_ +ewp net/minecraft/client/gui/screens/inventory/ItemCombinerScreen + w f_98899_ + (Lccf;Lbyn;Lsw;Lacq;)V + 0 o p_98901_ + 1 o p_98902_ + 2 o p_98903_ + 3 o p_98904_ + D ()V m_5653_ + a (Leox;FII)V m_7286_ + 0 o p_282749_ + 1 o p_283494_ + 2 o p_283098_ + 3 o p_282054_ + a (Lcbf;ILcfz;)V m_7934_ + 0 o p_98910_ + 1 o p_98911_ + 2 o p_98912_ + a (Leox;IIF)V m_88315_ + 0 o p_281810_ + 1 o p_283312_ + 2 o p_283420_ + 3 o p_282956_ + a (Lcbf;II)V m_142153_ + 0 o p_169759_ + 1 o p_169760_ + 2 o p_169761_ + ax_ ()V m_7861_ + b ()V m_7856_ + c (Leox;IIF)V m_6691_ + 0 o p_283399_ + 1 o p_98928_ + 2 o p_98929_ + 3 o p_98930_ + c (Leox;II)V m_266390_ + 0 o p_281990_ + 1 o p_266822_ + 2 o p_267045_ +ewq net/minecraft/client/gui/screens/inventory/JigsawBlockEditScreen + a f_169762_ + b f_98933_ + c f_98934_ + k f_98935_ + l f_98936_ + m f_98937_ + n f_98938_ + o f_98939_ + p f_98940_ + q f_98941_ + r f_98942_ + s f_98943_ + t f_98944_ + u f_98945_ + v f_98946_ + w f_169763_ + x f_98932_ + ()V + static + (Ldam;)V + 0 o p_98949_ + B ()V m_98991_ + C ()V m_98992_ + D ()V m_98993_ + E ()V m_98994_ + a (Ljava/lang/String;)V m_98976_ + 0 o p_98977_ + a (Lepi;)V m_98963_ + 0 o p_98964_ + a (Lenn;II)V m_6574_ + 0 o p_98960_ + 1 o p_98961_ + 2 o p_98962_ + a (Lepp;Ljava/lang/Boolean;)V m_169767_ + 0 o p_169768_ + 1 o p_169769_ + a (III)Z m_7933_ + 0 o p_98951_ + 1 o p_98952_ + 2 o p_98953_ + a (Lepp;Ldam$a;)V m_169764_ + 0 o p_169765_ + 1 o p_169766_ + a (Leox;IIF)V m_88315_ + 0 o p_282514_ + 1 o p_98956_ + 2 o p_98957_ + 3 o p_98958_ + aw_ ()V m_7379_ + b (Ljava/lang/String;)V m_98980_ + 0 o p_98981_ + b ()V m_7856_ + b (Lepi;)V m_98972_ + 0 o p_98973_ + c (Lepi;)V m_98978_ + 0 o p_98979_ + c (Ljava/lang/String;)V m_98985_ + 0 o p_98986_ + f ()V m_86600_ + l ()V m_98990_ +ewq$1 net/minecraft/client/gui/screens/inventory/JigsawBlockEditScreen$1 + a f_98996_ + (Lewq;IIIILsw;D)V + 0 o p_98998_ + 1 o p_98999_ + 2 o p_99000_ + 3 o p_99001_ + 4 o p_99002_ + 5 o p_99003_ + 6 o p_99004_ + a ()V m_5697_ + b ()V m_5695_ +ewr net/minecraft/client/gui/screens/inventory/LecternScreen + q f_99017_ + r f_99018_ + (Lcch;Lbyn;Lsw;)V + 0 o p_99020_ + 1 o p_99021_ + 2 o p_99022_ + C ()Lcbf; m_6262_ + D ()V m_7811_ + E ()V m_7815_ + F ()V m_141919_ + G ()Lcch; m_6262_ + H ()V m_99044_ + I ()V m_99045_ + a (Lepi;)V m_99023_ + 0 o p_99024_ + aw_ ()V m_7379_ + ax_ ()V m_7861_ + az_ ()Z m_7043_ + b (I)Z m_7735_ + 0 o p_99031_ + b ()V m_7856_ + b (Lepi;)V m_99032_ + 0 o p_99033_ + c (I)V m_99036_ + 0 o p_99037_ + l ()V m_7829_ +ewr$1 net/minecraft/client/gui/screens/inventory/LecternScreen$1 + a f_99046_ + (Lewr;)V + 0 o p_99048_ + a (Lcbf;ILcfz;)V m_7934_ + 0 o p_99054_ + 1 o p_99055_ + 2 o p_99056_ + a (Lcbf;II)V m_142153_ + 0 o p_169772_ + 1 o p_169773_ + 2 o p_169774_ +ews net/minecraft/client/gui/screens/inventory/LoomScreen + A f_169779_ + C f_169780_ + D f_169781_ + E f_169782_ + F f_169783_ + G f_99062_ + H f_99063_ + I f_99064_ + J f_99065_ + K f_99066_ + L f_99067_ + M f_99069_ + N f_99070_ + O f_99071_ + P f_232823_ + w f_99060_ + x f_169776_ + y f_169777_ + z f_169778_ + ()V + static + (Lcci;Lbyn;Lsw;)V + 0 o p_99075_ + 1 o p_99076_ + 2 o p_99077_ + D ()I m_232828_ + E ()V m_99112_ + a (Leox;FII)V m_7286_ + 0 o p_282870_ + 1 o p_281777_ + 2 o p_283331_ + 3 o p_283087_ + a (DDIDD)Z m_7979_ + 0 o p_99087_ + 1 o p_99088_ + 2 o p_99089_ + 3 o p_99090_ + 4 o p_99091_ + a (DDD)Z m_6050_ + 0 o p_99079_ + 1 o p_99080_ + 2 o p_99081_ + a (DDIII)Z m_7467_ + 0 o p_99093_ + 1 o p_99094_ + 2 o p_99095_ + 3 o p_99096_ + 4 o p_99097_ + a (Leox;IIF)V m_88315_ + 0 o p_283513_ + 1 o p_282700_ + 2 o p_282637_ + 3 o p_281433_ + a (Leox;Lhe;II)V m_280599_ + 0 o p_282452_ + 1 o p_281940_ + 2 o p_281872_ + 3 o p_282995_ + a (DDI)Z m_6375_ + 0 o p_99083_ + 1 o p_99084_ + 2 o p_99085_ + b ()V m_7856_ +ewt net/minecraft/client/gui/screens/inventory/MenuAccess + C ()Lcbf; m_6262_ +ewu net/minecraft/client/gui/screens/inventory/MerchantScreen + A f_169788_ + C f_169789_ + D f_169790_ + E f_169791_ + F f_169792_ + G f_169793_ + H f_169794_ + I f_169795_ + J f_169796_ + K f_169797_ + L f_169798_ + M f_169799_ + N f_169800_ + O f_169801_ + P f_169802_ + Q f_99114_ + R f_99115_ + S f_99116_ + T f_99117_ + U f_99118_ + V f_99119_ + W f_99120_ + w f_99113_ + x f_169785_ + y f_169786_ + z f_169787_ + ()V + static + (Lccm;Lbyn;Lsw;)V + 0 o p_99123_ + 1 o p_99124_ + 2 o p_99125_ + D ()V m_99200_ + a (DDIDD)Z m_7979_ + 0 o p_99135_ + 1 o p_99136_ + 2 o p_99137_ + 3 o p_99138_ + 4 o p_99139_ + a (Leox;IILclk;)V m_280298_ + 0 o p_281426_ + 1 o p_283008_ + 2 o p_283085_ + 3 o p_282094_ + a (Lepi;)V m_99173_ + 0 o p_99174_ + a (Lewu;)Leov; m_280104_ + static + 0 o p_281576_ + a (DDI)Z m_6375_ + 0 o p_99131_ + 1 o p_99132_ + 2 o p_99133_ + a (Leox;FII)V m_7286_ + 0 o p_283072_ + 1 o p_281275_ + 2 o p_282312_ + 3 o p_282984_ + a (DDD)Z m_6050_ + 0 o p_99127_ + 1 o p_99128_ + 2 o p_99129_ + a (I)Z m_99140_ + 0 o p_99141_ + a (Leox;IILcll;)V m_280219_ + 0 o p_283030_ + 1 o p_283154_ + 2 o p_281664_ + 3 o p_282877_ + a (Leox;IIF)V m_88315_ + 0 o p_283487_ + 1 o p_281994_ + 2 o p_282099_ + 3 o p_281815_ + a (Leox;Lclk;II)V m_280526_ + 0 o p_283020_ + 1 o p_281926_ + 2 o p_282752_ + 3 o p_282179_ + a (Leox;Lcfz;Lcfz;II)V m_280127_ + 0 o p_281357_ + 1 o p_283466_ + 2 o p_282046_ + 3 o p_282403_ + 4 o p_283601_ + b (Leox;II)V m_280003_ + 0 o p_283337_ + 1 o p_282009_ + 2 o p_283691_ + b (Lewu;)Leov; m_280591_ + static + 0 o p_282067_ + b ()V m_7856_ + c (Lewu;)Leov; m_280189_ + static + 0 o p_282026_ +ewu$a net/minecraft/client/gui/screens/inventory/MerchantScreen$TradeOfferButton + a f_99201_ + b f_99202_ + (Lewu;IIILepi$c;)V + 0 o p_99204_ + 1 o p_99205_ + 2 o p_99206_ + 3 o p_99207_ + 4 o p_99208_ + a ()I m_99209_ + a (Leox;II)V m_280089_ + 0 o p_281313_ + 1 o p_283342_ + 2 o p_283060_ +ewv net/minecraft/client/gui/screens/inventory/MinecartCommandBlockEditScreen + m f_99214_ + (Lcln;)V + 0 o p_99216_ + B ()I m_7821_ + a (Lcln;)V m_6372_ + 0 o p_99218_ + b ()V m_7856_ + l ()Lcln; m_6556_ +eww net/minecraft/client/gui/screens/inventory/PageButton + a f_99222_ + b f_99223_ + (IIZLepi$c;Z)V + 0 o p_99225_ + 1 o p_99226_ + 2 o p_99227_ + 3 o p_99228_ + 4 o p_99229_ + a (Lfzc;)V m_7435_ + 0 o p_99231_ + b (Leox;IIF)V m_87963_ + 0 o p_283468_ + 1 o p_282922_ + 2 o p_283637_ + 3 o p_282459_ +ewx net/minecraft/client/gui/screens/inventory/ShulkerBoxScreen + w f_99237_ + ()V + static + (Lccu;Lbyn;Lsw;)V + 0 o p_99240_ + 1 o p_99241_ + 2 o p_99242_ + a (Leox;FII)V m_7286_ + 0 o p_281362_ + 1 o p_283080_ + 2 o p_281303_ + 3 o p_283275_ + a (Leox;IIF)V m_88315_ + 0 o p_281745_ + 1 o p_282145_ + 2 o p_282358_ + 3 o p_283566_ +ewy net/minecraft/client/gui/screens/inventory/SignEditScreen + b f_244337_ + c f_244300_ + k f_244494_ + l f_99253_ + ()V + static + (Ldav;ZZ)V + 0 o p_277919_ + 1 o p_277579_ + 2 o p_277693_ + a (Leox;Ldcb;)V m_245490_ + 0 o p_281440_ + 1 o p_282401_ + b (Leox;Ldcb;)V m_280050_ + 0 o p_282503_ + 1 o p_282571_ + b ()V m_7856_ + l ()Lorg/joml/Vector3f; m_245038_ +ewz net/minecraft/client/gui/screens/inventory/SmithingScreen + A f_265925_ + C f_266081_ + D f_99287_ + E f_265861_ + F f_265993_ + G f_266043_ + H f_266014_ + I f_265883_ + J f_265886_ + K f_266080_ + L f_266007_ + M f_265938_ + N f_266104_ + O f_265904_ + P f_265934_ + Q f_265945_ + R f_265973_ + S f_265920_ + T f_266031_ + w f_265852_ + x f_266067_ + y f_265867_ + z f_266017_ + ()V + static + (Lccy;Lbyn;Lsw;)V + 0 o p_99290_ + 1 o p_99291_ + 2 o p_99292_ + B ()V m_181908_ + D ()V m_5653_ + E ()Ljava/util/Optional; m_266259_ + F ()Z m_266329_ + a (Lcbf;ILcfz;)V m_7934_ + 0 o p_267217_ + 1 o p_266842_ + 2 o p_267208_ + a (Leox;FII)V m_7286_ + 0 o p_283264_ + 1 o p_267158_ + 2 o p_267266_ + 3 o p_266722_ + a (Leox;IILsw;)V m_279819_ + 0 o p_280860_ + 1 o p_280861_ + 2 o p_280862_ + 3 o p_280863_ + a (Leox;IIF)V m_88315_ + 0 o p_281961_ + 1 o p_282410_ + 2 o p_283013_ + 3 o p_282408_ + b (Lcfz;)V m_267709_ + 0 o p_268225_ + c (Leox;II)V m_266390_ + 0 o p_281835_ + 1 o p_283389_ + 2 o p_282634_ + d (Leox;II)V m_266311_ + 0 o p_281668_ + 1 o p_267192_ + 2 o p_266859_ +ex net/minecraft/commands/arguments/StringRepresentableArgument + a f_234055_ + b f_234056_ + c f_234057_ + ()V + static + (Lcom/mojang/serialization/Codec;Ljava/util/function/Supplier;)V + 0 o p_234060_ + 1 o p_234061_ + a (Lcom/mojang/brigadier/StringReader;)Ljava/lang/Enum; parse + 0 o p_234063_ + a (Ljava/lang/Object;)Ljava/lang/String; m_234064_ + static + 0 o p_234065_ + a (Ljava/lang/String;)Ljava/lang/String; m_274434_ + 0 o p_275436_ + b (Ljava/lang/Object;)Ljava/lang/String; m_234068_ + static + 0 o p_234069_ + b (Ljava/lang/String;)Lcom/mojang/brigadier/exceptions/CommandSyntaxException; m_234066_ + static + 0 o p_234067_ + c (Ljava/lang/Object;)Lcom/mojang/brigadier/Message; m_234070_ + static + 0 o p_234071_ + getExamples ()Ljava/util/Collection; getExamples + listSuggestions (Lcom/mojang/brigadier/context/CommandContext;Lcom/mojang/brigadier/suggestion/SuggestionsBuilder;)Ljava/util/concurrent/CompletableFuture; listSuggestions + 0 o p_234074_ + 1 o p_234075_ + parse (Lcom/mojang/brigadier/StringReader;)Ljava/lang/Object; parse + 0 o p_234077_ +exa net/minecraft/client/gui/screens/inventory/SmokerScreen + x f_99297_ + ()V + static + (Lccz;Lbyn;Lsw;)V + 0 o p_99300_ + 1 o p_99301_ + 2 o p_99302_ +exb net/minecraft/client/gui/screens/inventory/StonecutterScreen + A f_169829_ + C f_169830_ + D f_169831_ + E f_169832_ + F f_169833_ + G f_169834_ + H f_99304_ + I f_99305_ + J f_99306_ + K f_99307_ + w f_99303_ + x f_169826_ + y f_169827_ + z f_169828_ + ()V + static + (Lcdb;Lbyn;Lsw;)V + 0 o p_99310_ + 1 o p_99311_ + 2 o p_99312_ + D ()I m_99352_ + E ()Z m_99353_ + F ()V m_99354_ + a (DDIDD)Z m_7979_ + 0 o p_99322_ + 1 o p_99323_ + 2 o p_99324_ + 3 o p_99325_ + 4 o p_99326_ + a (Leox;IIIII)V m_280299_ + 0 o p_282733_ + 1 o p_282136_ + 2 o p_282147_ + 3 o p_281987_ + 4 o p_281276_ + 5 o p_282688_ + a (DDI)Z m_6375_ + 0 o p_99318_ + 1 o p_99319_ + 2 o p_99320_ + a (Leox;FII)V m_7286_ + 0 o p_283115_ + 1 o p_282453_ + 2 o p_282940_ + 3 o p_282328_ + a (DDD)Z m_6050_ + 0 o p_99314_ + 1 o p_99315_ + 2 o p_99316_ + a (Leox;II)V m_280072_ + 0 o p_282396_ + 1 o p_283157_ + 2 o p_282258_ + a (Leox;IIF)V m_88315_ + 0 o p_281735_ + 1 o p_282517_ + 2 o p_282840_ + 3 o p_282389_ + b (Leox;III)V m_280605_ + 0 o p_281999_ + 1 o p_282658_ + 2 o p_282563_ + 3 o p_283352_ +exc net/minecraft/client/gui/screens/inventory/StructureBlockEditScreen + A f_99358_ + C f_99359_ + D f_99360_ + E f_99361_ + F f_99362_ + G f_99363_ + H f_99364_ + I f_99365_ + J f_99366_ + K f_99369_ + L f_99370_ + M f_99371_ + N f_99372_ + O f_99373_ + P f_99374_ + Q f_99376_ + R f_169835_ + S f_99378_ + T f_99379_ + U f_99380_ + V f_99382_ + a f_99381_ + b f_99383_ + c f_99384_ + k f_99385_ + l f_99386_ + m f_99387_ + n f_99388_ + o f_99389_ + p f_99390_ + q f_169836_ + r f_169837_ + s f_99391_ + t f_99392_ + u f_99393_ + v f_99394_ + w f_99395_ + x f_99355_ + y f_99356_ + z f_99357_ + ()V + static + (Ldba;)V + 0 o p_99398_ + B ()V m_99447_ + C ()V m_99464_ + a (Lepi;)V m_169840_ + 0 o p_169841_ + a (Ldba$a;)Z m_99403_ + 0 o p_99404_ + a (Ljava/lang/String;)J m_99426_ + 0 o p_99427_ + a (Lexc;Ljava/lang/String;CI)Z m_99416_ + static + 0 o p_99417_ + 1 o p_99418_ + 2 o p_99419_ + 3 o p_99420_ + a (III)Z m_7933_ + 0 o p_99400_ + 1 o p_99401_ + 2 o p_99402_ + a (Lenn;II)V m_6574_ + 0 o p_99411_ + 1 o p_99412_ + 2 o p_99413_ + a (Lepp;Ljava/lang/Boolean;)V m_169848_ + 0 o p_169849_ + 1 o p_169850_ + a (Lddl;)V m_169838_ + 0 o p_169839_ + a (Lepp;Lddl;)V m_169845_ + 0 o p_169846_ + 1 o p_169847_ + a (Leox;IIF)V m_88315_ + 0 o p_281951_ + 1 o p_99407_ + 2 o p_99408_ + 3 o p_99409_ + a (Lepp;Lcui;)V m_169842_ + 0 o p_169843_ + 1 o p_169844_ + aw_ ()V m_7379_ + az_ ()Z m_7043_ + b (Ljava/lang/String;)F m_99430_ + 0 o p_99431_ + b (Lddl;)Lsw; m_169851_ + static + 0 o p_169852_ + b (Lepp;Ljava/lang/Boolean;)V m_169855_ + 0 o p_169856_ + 1 o p_169857_ + b (Lepi;)V m_169853_ + 0 o p_169854_ + b ()V m_7856_ + c (Lepi;)V m_99414_ + 0 o p_99415_ + c (Lepp;Ljava/lang/Boolean;)V m_169860_ + 0 o p_169861_ + 1 o p_169862_ + c (Ljava/lang/String;)I m_99435_ + 0 o p_99436_ + c (Lddl;)Z m_169858_ + static + 0 o p_169859_ + d (Lepi;)V m_99424_ + 0 o p_99425_ + e (Lepi;)V m_279821_ + 0 o p_280865_ + f ()V m_86600_ + f (Lepi;)V m_279820_ + 0 o p_280864_ + g (Lepi;)V m_279822_ + 0 o p_280866_ + h (Lepi;)V m_99456_ + 0 o p_99457_ + i (Lepi;)V m_99459_ + 0 o p_99460_ + l ()V m_99444_ +exc$1 net/minecraft/client/gui/screens/inventory/StructureBlockEditScreen$1 + d f_99466_ + (Lexc;Leov;IIIILsw;)V + 0 o p_99468_ + 1 o p_99469_ + 2 o p_99470_ + 3 o p_99471_ + 4 o p_99472_ + 5 o p_99473_ + 6 o p_99474_ + a (CI)Z m_5534_ + 0 o p_99476_ + 1 o p_99477_ +exc$2 net/minecraft/client/gui/screens/inventory/StructureBlockEditScreen$2 + a f_99479_ + b f_99480_ + ()V + static +exd net/minecraft/client/gui/screens/inventory/package-info +exe net/minecraft/client/gui/screens/inventory/tooltip/BelowOrAboveWidgetTooltipPositioner + a f_262738_ + (Lepf;)V + 0 o p_263116_ + a (IIIIII)Lorg/joml/Vector2ic; m_262814_ + 0 o p_282513_ + 1 o p_281649_ + 2 o p_283308_ + 3 o p_282740_ + 4 o p_281398_ + 5 o p_283404_ +exf net/minecraft/client/gui/screens/inventory/tooltip/ClientBundleTooltip + a f_169863_ + b f_169864_ + c f_169865_ + d f_169866_ + e f_169867_ + f f_169868_ + g f_169869_ + h f_169870_ + ()V + static + (Lcde;)V + 0 o p_169873_ + a (IIIILeox;)V m_275840_ + 0 o p_276018_ + 1 o p_276015_ + 2 o p_276048_ + 3 o p_276056_ + 4 o p_283218_ + a (Leov;)I m_142069_ + 0 o p_169901_ + a (Leov;IILeox;)V m_183452_ + 0 o p_194042_ + 1 o p_194043_ + 2 o p_194044_ + 3 o p_282522_ + a (Leox;IILexf$a;)V m_280004_ + 0 o p_281273_ + 1 o p_282428_ + 2 o p_281897_ + 3 o p_281917_ + a ()I m_142103_ + a (IIIZLeox;Leov;)V m_280665_ + 0 o p_283180_ + 1 o p_282972_ + 2 o p_282547_ + 3 o p_283053_ + 4 o p_283625_ + 5 o p_281863_ + b ()I m_169910_ + c ()I m_169911_ +exf$a net/minecraft/client/gui/screens/inventory/tooltip/ClientBundleTooltip$Texture + a SLOT + b BLOCKED_SLOT + c BORDER_VERTICAL + d BORDER_HORIZONTAL_TOP + e BORDER_HORIZONTAL_BOTTOM + f BORDER_CORNER_TOP + g BORDER_CORNER_BOTTOM + h f_169919_ + i f_169920_ + j f_169921_ + k f_169922_ + l $VALUES + ()V + static + (Ljava/lang/String;IIIII)V + 0 o p_169926_ + 1 o p_169927_ + 2 o p_169928_ + 3 o p_169929_ + 4 o p_169930_ + 5 o p_169931_ + a ()[Lexf$a; m_169932_ + static + valueOf (Ljava/lang/String;)Lexf$a; valueOf + static + 0 o p_169934_ + values ()[Lexf$a; values + static +exg net/minecraft/client/gui/screens/inventory/tooltip/ClientTextTooltip + a f_169936_ + (Laom;)V + 0 o p_169938_ + a (Leov;IILorg/joml/Matrix4f;Lfjx$a;)V m_142440_ + 0 o p_254285_ + 1 o p_254192_ + 2 o p_253697_ + 3 o p_253880_ + 4 o p_254231_ + a (Leov;)I m_142069_ + 0 o p_169941_ + a ()I m_142103_ +exh net/minecraft/client/gui/screens/inventory/tooltip/ClientTooltipComponent + a (Leov;IILorg/joml/Matrix4f;Lfjx$a;)V m_142440_ + 0 o p_169953_ + 1 o p_169954_ + 2 o p_169955_ + 3 o p_253692_ + 4 o p_169957_ + a (Leov;)I m_142069_ + 0 o p_169952_ + a (Leov;IILeox;)V m_183452_ + 0 o p_194048_ + 1 o p_194049_ + 2 o p_194050_ + 3 o p_283459_ + a (Laom;)Lexh; m_169948_ + static + 0 o p_169949_ + a ()I m_142103_ + a (Lcdf;)Lexh; m_169950_ + static + 0 o p_169951_ +exi net/minecraft/client/gui/screens/inventory/tooltip/ClientTooltipPositioner + a (IIIIII)Lorg/joml/Vector2ic; m_262814_ + 0 o p_263026_ + 1 o p_262969_ + 2 o p_262971_ + 3 o p_263058_ + 4 o p_281643_ + 5 o p_282590_ +exj net/minecraft/client/gui/screens/inventory/tooltip/DefaultTooltipPositioner + a f_262752_ + ()V + static + ()V + a (IIIIII)Lorg/joml/Vector2ic; m_262814_ + 0 o p_281867_ + 1 o p_282915_ + 2 o p_283108_ + 3 o p_282881_ + 4 o p_283243_ + 5 o p_282104_ + a (IILorg/joml/Vector2i;II)V m_280500_ + 0 o p_282431_ + 1 o p_282309_ + 2 o p_282004_ + 3 o p_283148_ + 4 o p_281715_ +exk net/minecraft/client/gui/screens/inventory/tooltip/MenuTooltipPositioner + a f_267404_ + b f_267414_ + c f_267383_ + d f_267390_ + e f_267435_ + (Lepf;)V + 0 o p_268223_ + a (IIIIII)Lorg/joml/Vector2ic; m_262814_ + 0 o p_283490_ + 1 o p_282509_ + 2 o p_282684_ + 3 o p_281703_ + 4 o p_281348_ + 5 o p_283657_ + a (III)I m_267810_ + static + 0 o p_268188_ + 1 o p_268026_ + 2 o p_268015_ +exl net/minecraft/client/gui/screens/inventory/tooltip/TooltipRenderUtil + a f_262731_ + b f_262753_ + c f_262741_ + d f_262749_ + e f_262756_ + f f_262737_ + g f_262744_ + h f_262725_ + i f_262743_ + ()V + a (Leox;IIIIIII)V m_280115_ + static + 0 o p_282000_ + 1 o p_282055_ + 2 o p_281580_ + 3 o p_283284_ + 4 o p_282599_ + 5 o p_283432_ + 6 o p_282907_ + 7 o p_283153_ + a (Leox;IIIIII)V m_280556_ + static + 0 o p_282478_ + 1 o p_282583_ + 2 o p_283262_ + 3 o p_283161_ + 4 o p_283322_ + 5 o p_282624_ + 6 o p_282756_ + a (Leox;IIIII)V m_280205_ + static + 0 o p_282666_ + 1 o p_281901_ + 2 o p_281846_ + 3 o p_281559_ + 4 o p_283336_ + 5 o p_283422_ + b (Leox;IIIIII)V m_280538_ + static + 0 o p_281392_ + 1 o p_282294_ + 2 o p_283353_ + 3 o p_282640_ + 4 o p_281964_ + 5 o p_283211_ + 6 o p_282349_ + b (Leox;IIIII)V m_280387_ + static + 0 o p_281270_ + 1 o p_281928_ + 2 o p_281561_ + 3 o p_283155_ + 4 o p_282552_ + 5 o p_282221_ + c (Leox;IIIII)V m_280217_ + static + 0 o p_282981_ + 1 o p_282028_ + 2 o p_282141_ + 3 o p_281771_ + 4 o p_282734_ + 5 o p_281979_ +exm net/minecraft/client/gui/screens/inventory/tooltip/package-info +exn net/minecraft/client/gui/screens/multiplayer/JoinMultiplayerScreen + a f_263797_ + b f_263689_ + c f_263727_ + k f_263805_ + l f_99673_ + m f_99674_ + n f_99675_ + o f_99676_ + p f_99677_ + q f_99678_ + r f_99679_ + s f_99680_ + t f_99681_ + u f_99682_ + v f_99683_ + w f_99684_ + x f_99685_ + ()V + static + (Leuq;)V + 0 o p_99688_ + B ()V m_99730_ + C ()Lfff; m_99731_ + D ()Lffe; m_99732_ + E ()V m_99733_ + a (Lepi;)V m_279823_ + 0 o p_280867_ + a (III)Z m_7933_ + 0 o p_99690_ + 1 o p_99691_ + 2 o p_99692_ + a (Lexq$a;)V m_99700_ + 0 o p_99701_ + a (Lffd;)V m_99702_ + 0 o p_99703_ + a (Leox;IIF)V m_88315_ + 0 o p_281617_ + 1 o p_281629_ + 2 o p_281983_ + 3 o p_283431_ + ax_ ()V m_7861_ + b (Lepi;)V m_99705_ + 0 o p_99706_ + b ()V m_7856_ + c (Lepi;)V m_99709_ + 0 o p_99710_ + c (Z)V m_99711_ + 0 o p_99712_ + c (Ljava/util/List;)V m_99707_ + 0 o p_99708_ + d (Lepi;)V m_99714_ + 0 o p_99715_ + e (Z)V m_99716_ + 0 o p_99717_ + e (Lepi;)V m_279825_ + 0 o p_280869_ + f (Z)V m_99721_ + 0 o p_99722_ + f ()V m_86600_ + f (Lepi;)V m_279824_ + 0 o p_280868_ + g (Z)V m_99725_ + 0 o p_99726_ + g (Lepi;)V m_99727_ + 0 o p_99728_ + l ()V m_99729_ +exo net/minecraft/client/gui/screens/multiplayer/Realms32bitWarningScreen + b f_210892_ + c f_210893_ + k f_210894_ + l f_210895_ + m f_232849_ + ()V + static + (Leuq;)V + 0 o p_210898_ + a (Lepi;)V m_279826_ + 0 o p_280870_ + a (I)V m_207212_ + 0 o p_210900_ +exp net/minecraft/client/gui/screens/multiplayer/SafetyScreen + b f_99735_ + c f_99736_ + k f_99737_ + l f_99738_ + m f_232850_ + ()V + static + (Leuq;)V + 0 o p_99743_ + a (Lepi;)V m_279827_ + 0 o p_280871_ + a (I)V m_207212_ + 0 o p_210904_ + b (Lepi;)V m_279828_ + 0 o p_280872_ +exq net/minecraft/client/gui/screens/multiplayer/ServerSelectionList + a f_99756_ + l f_99757_ + m f_99758_ + n f_99759_ + o f_279631_ + p f_99760_ + q f_99761_ + r f_99762_ + s f_263833_ + t f_263836_ + u f_263746_ + v f_263785_ + w f_99766_ + x f_99767_ + y f_99768_ + z f_99755_ + ()V + static + (Lexn;Lenn;IIIII)V + 0 o p_99771_ + 1 o p_99772_ + 2 o p_99773_ + 3 o p_99774_ + 4 o p_99775_ + 5 o p_99776_ + 6 o p_99777_ + a (Lexq$a;)V m_6987_ + 0 o p_99790_ + a (Lepc$a;)V m_6987_ + 0 o p_99786_ + a (Ljava/util/List;)V m_99799_ + 0 o p_99800_ + a (Lexq;I)I m_169966_ + static + 0 o p_169967_ + 1 o p_169968_ + a (Lexq;Lepc$a;)V m_169969_ + static + 0 o p_169970_ + 1 o p_169971_ + a (III)Z m_7933_ + 0 o p_99782_ + 1 o p_99783_ + 2 o p_99784_ + a (Lffe;)V m_99797_ + 0 o p_99798_ + a (Lts;)Lts; m_263877_ + static + 0 o p_264688_ + b (Lts;)Lts; m_263878_ + static + 0 o p_264689_ + b ()I m_5759_ + b (Lexq;Lepc$a;)V m_169974_ + static + 0 o p_169975_ + 1 o p_169976_ + c (Lexq;Lepc$a;)V m_169977_ + static + 0 o p_169978_ + 1 o p_169979_ + c ()I m_5756_ + d ()V m_289224_ + e ()V m_99780_ +exq$a net/minecraft/client/gui/screens/multiplayer/ServerSelectionList$Entry + ()V + close ()V close +exq$b net/minecraft/client/gui/screens/multiplayer/ServerSelectionList$LANHeader + a f_99815_ + ()V + a ()Lsw; m_142172_ + a (Leox;IIIIIIIZF)V m_6311_ + 0 o p_281475_ + 1 o p_282477_ + 2 o p_282819_ + 3 o p_282001_ + 4 o p_281911_ + 5 o p_283126_ + 6 o p_282303_ + 7 o p_281998_ + 8 o p_282625_ + 9 o p_281811_ +exq$c net/minecraft/client/gui/screens/multiplayer/ServerSelectionList$NetworkServerEntry + a f_99828_ + b f_99829_ + c f_169981_ + d f_99830_ + e f_99831_ + f f_99832_ + g f_99833_ + ()V + static + (Lexn;Lfyq;)V + 0 o p_99836_ + 1 o p_99837_ + a ()Lsw; m_142172_ + a (Leox;IIIIIIIZF)V m_6311_ + 0 o p_282600_ + 1 o p_282649_ + 2 o p_283641_ + 3 o p_282277_ + 4 o p_283034_ + 5 o p_281533_ + 6 o p_282746_ + 7 o p_281454_ + 8 o p_283673_ + 9 o p_282694_ + a (DDI)Z m_6375_ + 0 o p_99840_ + 1 o p_99841_ + 2 o p_99842_ + b ()Lfyq; m_99838_ + d ()Lsw; m_264484_ +exq$d net/minecraft/client/gui/screens/multiplayer/ServerSelectionList$OnlineServerEntry + a f_99854_ + b f_169983_ + c f_169984_ + d f_169985_ + e f_169986_ + f f_169987_ + g f_169988_ + h f_169989_ + i f_169990_ + j f_99855_ + k f_99856_ + l f_99857_ + m f_99860_ + n f_271423_ + o f_99861_ + (Lexq;Lexn;Lffd;)V + 0 o p_99863_ + 1 o p_99864_ + 2 o p_99865_ + a (II)V m_99871_ + 0 o p_99872_ + 1 o p_99873_ + a ()Lsw; m_142172_ + a (Leox;IILacq;)V m_280396_ + 0 o p_281338_ + 1 o p_283001_ + 2 o p_282834_ + 3 o p_282534_ + a (Leox;IIIIIIIZF)V m_6311_ + 0 o p_281406_ + 1 o p_281506_ + 2 o p_282921_ + 3 o p_281363_ + 4 o p_283596_ + 5 o p_281630_ + 6 o p_283567_ + 7 o p_282864_ + 8 o p_282999_ + 9 o p_281423_ + a (DDI)Z m_6375_ + 0 o p_99868_ + 1 o p_99869_ + 2 o p_99870_ + a (III)Z m_7933_ + 0 o p_99875_ + 1 o p_99876_ + 2 o p_99877_ + a ([B)Z m_99896_ + 0 o p_273176_ + b ()V m_99866_ + close ()V close + d ()Lffd; m_99898_ + e ()Z m_264063_ + f ()Z m_264399_ + g ()Z m_99899_ + h ()V m_99900_ + i ()V m_169992_ +exr net/minecraft/client/gui/screens/multiplayer/WarningScreen + a f_210910_ + b f_210912_ + c f_210913_ + k f_210914_ + l f_210915_ + (Lsw;Lsw;Lsw;Lsw;)V + 0 o p_232852_ + 1 o p_232853_ + 2 o p_232854_ + 3 o p_232855_ + (Lsw;Lsw;Lsw;)V + 0 o p_239894_ + 1 o p_239895_ + 2 o p_239896_ + a (I)V m_207212_ + 0 o p_210922_ + a (Leox;IIF)V m_88315_ + 0 o p_282073_ + 1 o p_283174_ + 2 o p_282617_ + 3 o p_282654_ + au_ ()Lsw; m_142562_ + b ()V m_7856_ + c (Leox;)V m_280550_ + 0 o p_281725_ + l ()I m_214169_ +exs net/minecraft/client/gui/screens/multiplayer/package-info +ext net/minecraft/client/gui/screens/package-info +exu net/minecraft/client/gui/screens/packs/PackSelectionModel + a f_99902_ + b f_99903_ + c f_99904_ + d f_99905_ + e f_99906_ + f f_99907_ + (Ljava/lang/Runnable;Ljava/util/function/Function;Laki;Ljava/util/function/Consumer;)V + 0 o p_99909_ + 1 o p_99910_ + 2 o p_99911_ + 3 o p_99912_ + a ()Ljava/util/stream/Stream; m_99913_ + a (Lakg;)Lexu$a; m_99914_ + 0 o p_99915_ + b ()Ljava/util/stream/Stream; m_99918_ + b (Lakg;)Lexu$a; m_99919_ + 0 o p_99920_ + c ()V m_99923_ + d ()V m_99926_ + e ()V m_274342_ +exu$a net/minecraft/client/gui/screens/packs/PackSelectionModel$Entry + a ()Lacq; m_6876_ + b ()Lakh; m_7709_ + c ()Ljava/lang/String; m_264249_ + d ()Lsw; m_7356_ + e ()Lsw; m_7359_ + f ()Lakj; m_7485_ + g ()Lsw; m_99929_ + h ()Z m_7867_ + i ()Z m_7844_ + j ()V m_7849_ + k ()V m_7850_ + l ()V m_7852_ + m ()V m_7845_ + n ()Z m_7857_ + o ()Z m_99930_ + p ()Z m_99931_ + q ()Z m_7802_ + r ()Z m_7803_ +exu$b net/minecraft/client/gui/screens/packs/PackSelectionModel$EntryBase + a f_99932_ + b f_99933_ + (Lexu;Lakg;)V + 0 o p_99935_ + 1 o p_99936_ + a (I)V m_99938_ + 0 o p_99939_ + a ()Lacq; m_6876_ + b ()Lakh; m_7709_ + c ()Ljava/lang/String; m_264249_ + d ()Lsw; m_7356_ + e ()Lsw; m_7359_ + f ()Lakj; m_7485_ + h ()Z m_7867_ + i ()Z m_7844_ + l ()V m_7852_ + m ()V m_7845_ + q ()Z m_7802_ + r ()Z m_7803_ + s ()Ljava/util/List; m_6956_ + t ()Ljava/util/List; m_6958_ + u ()V m_99950_ + v ()V m_274458_ +exu$c net/minecraft/client/gui/screens/packs/PackSelectionModel$SelectedPackEntry + b f_99951_ + (Lexu;Lakg;)V + 0 o p_99953_ + 1 o p_99954_ + j ()V m_7849_ + k ()V m_7850_ + n ()Z m_7857_ + s ()Ljava/util/List; m_6956_ + t ()Ljava/util/List; m_6958_ +exu$d net/minecraft/client/gui/screens/packs/PackSelectionModel$UnselectedPackEntry + b f_99960_ + (Lexu;Lakg;)V + 0 o p_99962_ + 1 o p_99963_ + j ()V m_7849_ + k ()V m_7850_ + n ()Z m_7857_ + s ()Ljava/util/List; m_6956_ + t ()Ljava/util/List; m_6958_ +exv net/minecraft/client/gui/screens/packs/PackSelectionScreen + a f_99969_ + b f_169993_ + c f_99970_ + k f_99971_ + l f_169994_ + m f_99972_ + n f_99973_ + o f_99975_ + p f_99976_ + q f_99977_ + r f_99978_ + s f_99979_ + t f_99980_ + u f_99981_ + ()V + static + (Laki;Ljava/util/function/Consumer;Ljava/nio/file/Path;Lsw;)V + 0 o p_275398_ + 1 o p_275659_ + 2 o p_275522_ + 3 o p_275337_ + B ()V m_100039_ + C ()V m_100040_ + D ()V m_100041_ + a (Ljava/util/List;Z)V m_279830_ + 0 o p_280876_ + 1 o p_280877_ + a (Lakg;Ljava/lang/String;)Lacq; m_279831_ + 0 o p_280878_ + 1 o p_280879_ + a (Lakg;)Lacq; m_99989_ + 0 o p_99990_ + a (Lepi;)V m_100035_ + 0 o p_100036_ + a (Ljava/nio/file/Path;Lorg/apache/commons/lang3/mutable/MutableBoolean;Ljava/nio/file/Path;)V m_170006_ + static + 0 o p_170007_ + 1 o p_170008_ + 2 o p_170009_ + a (Ljava/util/List;)V m_7400_ + 0 o p_100029_ + a (Lexw;Ljava/lang/String;Lexu$a;)V m_279829_ + 0 o p_280873_ + 1 o p_280874_ + 2 o p_280875_ + a (Lexw;Ljava/util/stream/Stream;)V m_100013_ + 0 o p_100014_ + 1 o p_100015_ + a (Lexw;)V m_264285_ + 0 o p_265419_ + a (Lfuw;Lakg;)Lacq; m_100016_ + 0 o p_100017_ + 1 o p_100018_ + a (Ljava/nio/file/Path;Ljava/nio/file/Path;Lorg/apache/commons/lang3/mutable/MutableBoolean;Ljava/nio/file/Path;)V m_170001_ + static + 0 o p_170002_ + 1 o p_170003_ + 2 o p_170004_ + 3 o p_170005_ + a (Lenn;Ljava/util/List;Ljava/nio/file/Path;)V m_99999_ + static + 0 o p_100000_ + 1 o p_100001_ + 2 o p_100002_ + a (Leox;IIF)V m_88315_ + 0 o p_281318_ + 1 o p_99996_ + 2 o p_99997_ + 3 o p_99998_ + aw_ ()V m_7379_ + b ()V m_7856_ + b (Lepi;)V m_244670_ + 0 o p_100004_ + f ()V m_86600_ + l ()V m_264462_ +exv$a net/minecraft/client/gui/screens/packs/PackSelectionScreen$Watcher + a f_100042_ + b f_100043_ + (Ljava/nio/file/Path;)V + 0 o p_250327_ + a ()Z m_100046_ + a (Ljava/nio/file/Path;)Lexv$a; m_245748_ + static + 0 o p_252119_ + b (Ljava/nio/file/Path;)V m_100049_ + 0 o p_100050_ + close ()V close +exw net/minecraft/client/gui/screens/packs/TransferableSelectionList + a f_100052_ + l f_100053_ + m f_100054_ + n f_100055_ + o f_263433_ + ()V + static + (Lenn;Lexv;IILsw;)V + 0 o p_265029_ + 1 o p_265777_ + 2 o p_265774_ + 3 o p_265153_ + 4 o p_265124_ + a (III)Z m_7933_ + 0 o p_265499_ + 1 o p_265510_ + 2 o p_265548_ + a (Leox;II)V m_7415_ + 0 o p_282135_ + 1 o p_282032_ + 2 o p_283198_ + a (Lexw;I)I m_170023_ + static + 0 o p_170024_ + 1 o p_170025_ + b ()I m_5759_ + c ()I m_5756_ +exw$a net/minecraft/client/gui/screens/packs/TransferableSelectionList$PackEntry + a f_100075_ + b f_170026_ + c f_170027_ + d f_170028_ + e f_170029_ + f f_170030_ + g f_170031_ + h f_170032_ + i f_170033_ + j f_170034_ + k f_100077_ + l f_100078_ + m f_100079_ + n f_100080_ + o f_100081_ + p f_100082_ + (Lenn;Lexw;Lexu$a;)V + 0 o p_265717_ + 1 o p_265075_ + 2 o p_265360_ + a ()Lsw; m_142172_ + a (Leox;IIIIIIIZF)V m_6311_ + 0 o p_281314_ + 1 o p_283311_ + 2 o p_281984_ + 3 o p_282250_ + 4 o p_281869_ + 5 o p_283138_ + 6 o p_282529_ + 7 o p_282107_ + 8 o p_282429_ + 9 o p_282306_ + a (DDI)Z m_6375_ + 0 o p_100090_ + 1 o p_100091_ + 2 o p_100092_ + a (Lenn;Lsw;)Laom; m_100104_ + static + 0 o p_100105_ + 1 o p_100106_ + b ()Ljava/lang/String; m_264411_ + b (Z)V m_263880_ + 0 o p_264693_ + b (Lenn;Lsw;)Lepz; m_100109_ + static + 0 o p_100110_ + 1 o p_100111_ + d ()V m_264233_ + e ()Z m_100088_ + f ()V m_264048_ + g ()V m_264565_ + h ()Z m_266298_ +exx net/minecraft/client/gui/screens/packs/package-info +exy net/minecraft/client/gui/screens/recipebook/AbstractFurnaceRecipeBookComponent + h f_100113_ + ()V + a (Lccx;)V m_6904_ + 0 o p_100120_ + a (Lcfu;)Z m_279832_ + 0 o p_280880_ + a ()V m_5674_ + a (Lcjc;Ljava/util/List;)V m_7173_ + 0 o p_100122_ + 1 o p_100123_ + b ()Ljava/util/Set; m_7690_ +exz net/minecraft/client/gui/screens/recipebook/BlastingRecipeBookComponent + h f_100131_ + ()V + static + ()V + b ()Ljava/util/Set; m_7690_ + d ()Lsw; m_5815_ +ey net/minecraft/commands/arguments/TeamArgument + a f_112084_ + b f_112085_ + ()V + static + ()V + a (Lcom/mojang/brigadier/context/CommandContext;Ljava/lang/String;)Lefe; m_112091_ + static + 0 o p_112092_ + 1 o p_112093_ + a (Ljava/lang/Object;)Lcom/mojang/brigadier/Message; m_112094_ + static + 0 o p_112095_ + a ()Ley; m_112088_ + static + a (Lcom/mojang/brigadier/StringReader;)Ljava/lang/String; parse + 0 o p_112090_ + getExamples ()Ljava/util/Collection; getExamples + listSuggestions (Lcom/mojang/brigadier/context/CommandContext;Lcom/mojang/brigadier/suggestion/SuggestionsBuilder;)Ljava/util/concurrent/CompletableFuture; listSuggestions + 0 o p_112098_ + 1 o p_112099_ + parse (Lcom/mojang/brigadier/StringReader;)Ljava/lang/Object; parse + 0 o p_112101_ +eya net/minecraft/client/gui/screens/recipebook/GhostRecipe + a f_100136_ + b f_100137_ + c f_100138_ + ()V + a (Leox;Lenn;IIZF)V m_280269_ + 0 o p_282081_ + 1 o p_281341_ + 2 o p_283169_ + 3 o p_282326_ + 4 o p_282174_ + 5 o p_282256_ + a ()V m_100140_ + a (I)Leya$a; m_100141_ + 0 o p_100142_ + a (Lcjc;)V m_100147_ + 0 o p_100148_ + a (Lciz;II)V m_100143_ + 0 o p_100144_ + 1 o p_100145_ + 2 o p_100146_ + b ()I m_100158_ + c ()Lcjc; m_100159_ +eya$a net/minecraft/client/gui/screens/recipebook/GhostRecipe$GhostIngredient + a f_100160_ + b f_100161_ + c f_100162_ + d f_100163_ + (Leya;Lciz;II)V + 0 o p_100165_ + 1 o p_100166_ + 2 o p_100167_ + 3 o p_100168_ + a ()I m_100169_ + b ()I m_100170_ + c ()Lcfz; m_100171_ +eyb net/minecraft/client/gui/screens/recipebook/OverlayRecipeComponent + a f_267446_ + b f_100172_ + c f_170036_ + d f_170037_ + e f_170038_ + f f_100173_ + g f_100174_ + h f_100175_ + i f_100176_ + j f_100177_ + k f_100178_ + l f_100179_ + m f_100180_ + n f_100181_ + ()V + static + ()V + a ()Leyg; m_100184_ + a (Lenn;Leyg;IIIIF)V m_100194_ + 0 o p_100195_ + 1 o p_100196_ + 2 o p_100197_ + 3 o p_100198_ + 4 o p_100199_ + 5 o p_100200_ + 6 o p_100201_ + a (Leox;IIF)V m_88315_ + 0 o p_281618_ + 1 o p_282646_ + 2 o p_283687_ + 3 o p_283147_ + a (DDI)Z m_6375_ + 0 o p_100186_ + 1 o p_100187_ + 2 o p_100188_ + aB_ ()Z m_93696_ + a_ (DD)Z m_5953_ + 0 o p_100208_ + 1 o p_100209_ + b ()Lcjc; m_100206_ + b (Z)V m_100204_ + 0 o p_100205_ + b_ (Z)V m_93692_ + 0 o p_265597_ + d ()Z m_100212_ +eyb$a net/minecraft/client/gui/screens/recipebook/OverlayRecipeComponent$OverlayRecipeButton + a f_100226_ + b f_100227_ + c f_100228_ + d f_100229_ + (Leyb;IILcjc;Z)V + 0 o p_100231_ + 1 o p_100232_ + 2 o p_100233_ + 3 o p_100234_ + 4 o p_100235_ + a (Lesp;)V m_168797_ + 0 o p_259646_ + a (Ljava/util/Iterator;IIII)V m_5817_ + 0 o p_100240_ + 1 o p_100241_ + 2 o p_100242_ + 3 o p_100243_ + 4 o p_100244_ + a (Lcjc;)V m_6222_ + 0 o p_100236_ + b (Leox;IIF)V m_87963_ + 0 o p_283557_ + 1 o p_283483_ + 2 o p_282919_ + 3 o p_282165_ +eyb$a$a net/minecraft/client/gui/screens/recipebook/OverlayRecipeComponent$OverlayRecipeButton$Pos + a f_100250_ + b f_100251_ + c f_100252_ + d f_100253_ + (Leyb$a;II[Lcfz;)V + 0 o p_100255_ + 1 o p_100256_ + 2 o p_100257_ + 3 o p_100258_ +eyb$b net/minecraft/client/gui/screens/recipebook/OverlayRecipeComponent$OverlaySmeltingRecipeButton + c f_100259_ + (Leyb;IILcjc;Z)V + 0 o p_100261_ + 1 o p_100262_ + 2 o p_100263_ + 3 o p_100264_ + 4 o p_100265_ + a (Lcjc;)V m_6222_ + 0 o p_100267_ +eyc net/minecraft/client/gui/screens/recipebook/RecipeBookComponent + a f_100268_ + b f_170042_ + c f_170043_ + d f_100269_ + e f_100270_ + f f_100271_ + g f_100272_ + h f_100273_ + i f_170044_ + j f_100274_ + k f_100275_ + l f_100276_ + m f_100277_ + n f_100278_ + o f_100279_ + p f_100280_ + q f_100281_ + r f_100282_ + s f_100283_ + t f_100284_ + u f_100285_ + v f_100286_ + w f_100287_ + x f_170041_ + y f_181400_ + ()V + static + ()V + a (Ljava/lang/String;)V m_100335_ + 0 o p_100336_ + a (Leox;IIZF)V m_280128_ + 0 o p_283634_ + 1 o p_283327_ + 2 o p_282027_ + 3 o p_283495_ + 4 o p_283514_ + a (Ljava/util/Iterator;IIII)V m_5817_ + 0 o p_100338_ + 1 o p_100339_ + 2 o p_100340_ + 3 o p_100341_ + 4 o p_100342_ + a (CI)Z m_5534_ + 0 o p_100291_ + 1 o p_100292_ + a (DDI)Z m_6375_ + 0 o p_100294_ + 1 o p_100295_ + 2 o p_100296_ + a (III)Z m_7933_ + 0 o p_100306_ + 1 o p_100307_ + 2 o p_100308_ + a (Leyg;)Z m_100330_ + static + 0 o p_100331_ + a ()V m_5674_ + a (II)I m_181401_ + 0 o p_181402_ + 1 o p_181403_ + a (Ljava/util/List;Lepf;)V m_170047_ + static + 0 o p_170048_ + 1 o p_170049_ + a (IILenn;ZLccp;)V m_100309_ + 0 o p_100310_ + 1 o p_100311_ + 2 o p_100312_ + 3 o p_100313_ + 4 o p_100314_ + a (Lccx;)V m_6904_ + 0 o p_100315_ + a (Ljava/util/List;)V m_7262_ + 0 o p_100344_ + a (Lit/unimi/dsi/fastutil/objects/ObjectSet;Leyg;)Z m_100332_ + static + 0 o p_100333_ + 1 o p_100334_ + a (Leye;)Z m_100328_ + 0 o p_100329_ + a (Lcjc;Ljava/util/List;)V m_7173_ + 0 o p_100316_ + 1 o p_100317_ + a (DDIIIII)Z m_100297_ + 0 o p_100298_ + 1 o p_100299_ + 2 o p_100300_ + 3 o p_100301_ + 4 o p_100302_ + 5 o p_100303_ + 6 o p_100304_ + a (Leox;IIII)V m_280545_ + 0 o p_281740_ + 1 o p_281520_ + 2 o p_282050_ + 3 o p_282836_ + 4 o p_282758_ + a (Leox;IIF)V m_88315_ + 0 o p_283597_ + 1 o p_282668_ + 2 o p_283506_ + 3 o p_282813_ + aB_ ()Z m_93696_ + a_ (DD)Z m_5953_ + 0 o p_100353_ + 1 o p_100354_ + b (Leox;IIII)V m_280622_ + 0 o p_282776_ + 1 o p_282886_ + 2 o p_281571_ + 3 o p_282948_ + 4 o p_283050_ + b (Lesp;)V m_142291_ + 0 o p_170046_ + b (Leyg;)Z m_100359_ + static + 0 o p_100360_ + b (Z)V m_100369_ + 0 o p_100370_ + b ()V m_257619_ + b (III)Z m_7920_ + 0 o p_100356_ + 1 o p_100357_ + 2 o p_100358_ + b_ (Z)V m_93692_ + 0 o p_265089_ + c (Z)V m_100382_ + 0 o p_100383_ + c (Leyg;)Z m_100367_ + static + 0 o p_100368_ + d (Leyg;)V m_100380_ + 0 o p_100381_ + d ()Lsw; m_5815_ + e ()V m_181404_ + f ()V m_100384_ + g ()Z m_100385_ + h ()V m_100386_ + i ()V m_100387_ + j ()V m_100388_ + k ()Z m_170050_ + l ()V m_100351_ + m ()V m_100389_ + n ()Z m_100391_ + p ()V m_100392_ + q ()Lesn$a; m_142684_ + r ()Z m_100393_ +eyd net/minecraft/client/gui/screens/recipebook/RecipeBookPage + a f_170052_ + b f_100394_ + c f_100395_ + d f_100396_ + e f_100397_ + f f_100398_ + g f_100399_ + h f_100400_ + i f_100401_ + j f_100402_ + k f_100403_ + l f_100404_ + m f_100405_ + n f_100406_ + ()V + a (Ljava/util/List;Z)V m_100436_ + 0 o p_100437_ + 1 o p_100438_ + a (Ljava/util/function/Consumer;)V m_170053_ + 0 o p_170054_ + a (Lenn;II)V m_100428_ + 0 o p_100429_ + 1 o p_100430_ + 2 o p_100431_ + a (Ljava/util/List;)V m_100434_ + 0 o p_100435_ + a (Leox;IIIIF)V m_280282_ + 0 o p_281416_ + 1 o p_281888_ + 2 o p_281904_ + 3 o p_282278_ + 4 o p_282424_ + 5 o p_281712_ + a (DDIIIII)Z m_100409_ + 0 o p_100410_ + 1 o p_100411_ + 2 o p_100412_ + 3 o p_100413_ + 4 o p_100414_ + 5 o p_100415_ + 6 o p_100416_ + a ()Lcjc; m_100408_ + a (Leyc;)V m_100432_ + 0 o p_100433_ + a (Leox;II)V m_280625_ + 0 o p_283690_ + 1 o p_282626_ + 2 o p_282490_ + b ()Leyg; m_100439_ + c ()V m_100440_ + d ()Lenn; m_100441_ + e ()Lamk; m_100442_ + f ()V m_100443_ + g ()V m_100444_ +eye net/minecraft/client/gui/screens/recipebook/RecipeBookTabButton + g f_100445_ + h f_170055_ + i f_100446_ + (Lenw;)V + 0 o p_100448_ + a (Leox;Lfpw;)V m_280194_ + 0 o p_281802_ + 1 o p_282499_ + a (Lenb;)Z m_100449_ + 0 o p_100450_ + a (Lenn;)V m_100451_ + 0 o p_100452_ + b ()Lenw; m_100455_ + b (Leox;IIF)V m_87963_ + 0 o p_283195_ + 1 o p_283508_ + 2 o p_281788_ + 3 o p_283269_ +eyf net/minecraft/client/gui/screens/recipebook/RecipeButton + a f_170056_ + b f_100461_ + c f_170057_ + d f_170058_ + e f_100462_ + f f_100463_ + g f_100464_ + h f_100465_ + i f_100466_ + j f_100467_ + k f_100468_ + ()V + static + ()V + a ()Leyg; m_100471_ + a (Lesp;)V m_168797_ + 0 o p_170060_ + a (Leyg;Leyd;)V m_100479_ + 0 o p_100480_ + 1 o p_100481_ + b ()Z m_100482_ + b (Leox;IIF)V m_87963_ + 0 o p_281385_ + 1 o p_282779_ + 2 o p_282744_ + 3 o p_282439_ + c (I)Z m_7972_ + 0 o p_100473_ + e ()Lcjc; m_100488_ + f ()Ljava/util/List; m_280187_ + g ()Ljava/util/List; m_100490_ + k ()I m_5711_ +eyg net/minecraft/client/gui/screens/recipebook/RecipeCollection + a f_265919_ + b f_100491_ + c f_100492_ + d f_100493_ + e f_100494_ + f f_100495_ + (Lhs;Ljava/util/List;)V + 0 o p_266782_ + 1 o p_267051_ + a (Lamk;)V m_100499_ + 0 o p_100500_ + a ()Lhs; m_266543_ + a (Lbys;IILamk;)V m_100501_ + 0 o p_100502_ + 1 o p_100503_ + 2 o p_100504_ + 3 o p_100505_ + a (Lhs;Ljava/util/List;)Z m_100508_ + static + 0 o p_267210_ + 1 o p_100509_ + a (Z)Ljava/util/List; m_100510_ + 0 o p_100511_ + a (Lcjc;)Z m_100506_ + 0 o p_100507_ + b (Z)Ljava/util/List; m_100513_ + 0 o p_100514_ + b ()Z m_100498_ + c ()Z m_100512_ + d ()Z m_100515_ + e ()Ljava/util/List; m_100516_ + f ()Z m_100517_ +eyh net/minecraft/client/gui/screens/recipebook/RecipeShownListener + a (Ljava/util/List;)V m_7262_ + 0 o p_100518_ +eyi net/minecraft/client/gui/screens/recipebook/RecipeUpdateListener + D ()V m_6916_ + E ()Leyc; m_5564_ +eyj net/minecraft/client/gui/screens/recipebook/SmeltingRecipeBookComponent + h f_100519_ + ()V + static + ()V + b ()Ljava/util/Set; m_7690_ + d ()Lsw; m_5815_ +eyk net/minecraft/client/gui/screens/recipebook/SmokingRecipeBookComponent + h f_100524_ + ()V + static + ()V + b ()Ljava/util/Set; m_7690_ + d ()Lsw; m_5815_ +eyl net/minecraft/client/gui/screens/recipebook/package-info +eym net/minecraft/client/gui/screens/reporting/ChatReportScreen + A f_238816_ + C f_238551_ + D f_238775_ + E f_238561_ + F f_252515_ + G f_238773_ + a f_238525_ + b f_238565_ + c f_238807_ + k f_238678_ + l f_238671_ + m f_238745_ + n f_238558_ + o f_238771_ + p f_238723_ + q f_238607_ + r f_238545_ + s f_238530_ + t f_238795_ + u f_238783_ + v f_240228_ + w f_240232_ + x f_238555_ + y f_238568_ + z f_238596_ + ()V + static + (Leuq;Lffs;Ljava/util/UUID;)V + 0 o p_239116_ + 1 o p_239117_ + 2 o p_239118_ + (Leuq;Lffs;Lffo;)V + 0 o p_253839_ + 1 o p_254386_ + 2 o p_254309_ + (Leuq;Lffs;Lffo$b;)V + 0 o p_254505_ + 1 o p_254531_ + 2 o p_253775_ + B ()V m_240000_ + C ()V m_240265_ + D ()V m_252889_ + E ()V m_253119_ + F ()I m_239357_ + G ()I m_239146_ + H ()I m_239871_ + I ()I m_239033_ + J ()I m_239320_ + K ()I m_239099_ + L ()I m_240099_ + M ()I m_239485_ + N ()I m_239333_ + O ()V m_279835_ + P ()V m_279834_ + a (Ljava/lang/String;)V m_252569_ + 0 o p_240036_ + a (Lepi;)V m_239741_ + 0 o p_239742_ + a (Lffr;)V m_252567_ + 0 o p_239513_ + a (Ljava/util/concurrent/CompletableFuture;)V m_279838_ + 0 o p_280884_ + a (Lffo$a;)V m_242956_ + 0 o p_242967_ + a (Ljava/lang/Throwable;)V m_240313_ + 0 o p_240314_ + a (Lffo$c;)V m_279837_ + 0 o p_280883_ + a (Lffo;)V m_252570_ + 0 o p_239697_ + a (Ljava/lang/Object;Ljava/lang/Throwable;)Ljava/lang/Object; m_239881_ + 0 o p_240236_ + 1 o p_240237_ + a (Lsw;)V m_242964_ + 0 o p_242978_ + a (Leox;IIF)V m_88315_ + 0 o p_283069_ + 1 o p_239923_ + 2 o p_239924_ + 3 o p_239925_ + aw_ ()V m_7379_ + ax_ ()V m_7861_ + b (DDI)Z m_6348_ + 0 o p_239350_ + 1 o p_239351_ + 2 o p_239352_ + b (Lepi;)V m_239970_ + 0 o p_239971_ + b (Lffo$a;)Leqp; m_257078_ + static + 0 o p_258134_ + b ()V m_7856_ + c (Lepi;)V m_279833_ + 0 o p_280881_ + d (Lepi;)V m_279836_ + 0 o p_280882_ + f ()V m_86600_ + l ()V m_239041_ +eym$a net/minecraft/client/gui/screens/reporting/ChatReportScreen$DiscardReportWarningScreen + b f_238642_ + c f_238729_ + k f_238704_ + l f_238630_ + m f_252405_ + n f_238679_ + ()V + static + (Leym;)V + 0 o p_240089_ + a (Lepi;)V m_279840_ + 0 o p_280886_ + a (I)V m_207212_ + 0 o p_239753_ + av_ ()Z m_6913_ + aw_ ()V m_7379_ + b (Lepi;)V m_279839_ + 0 o p_280885_ + c (Lepi;)V m_239524_ + 0 o p_239525_ + c (Leox;)V m_280550_ + 0 o p_282506_ +eyn net/minecraft/client/gui/screens/reporting/ChatSelectionLogFiller + a f_238669_ + b f_243871_ + c f_238535_ + d f_252430_ + e f_244035_ + f f_244006_ + g f_244367_ + (Lffs;Ljava/util/function/Predicate;)V + 0 o p_251076_ + 1 o p_250367_ + a (Leyn$a;Lffk$a;)Z m_253069_ + 0 o p_254300_ + 1 o p_253803_ + a (ILeyn$a;)V m_239015_ + 0 o p_239016_ + 1 o p_239017_ +eyn$a net/minecraft/client/gui/screens/reporting/ChatSelectionLogFiller$Output + a (Lsw;)V m_239556_ + 0 o p_239557_ + a (ILffk$a;)V m_239761_ + 0 o p_239762_ + 1 o p_251438_ +eyo net/minecraft/client/gui/screens/reporting/ChatSelectionScreen + a f_238718_ + b f_238622_ + c f_238797_ + k f_238651_ + l f_238763_ + m f_238785_ + n f_238686_ + o f_238567_ + p f_238817_ + q f_238733_ + ()V + static + (Leuq;Lffs;Lffo;Ljava/util/function/Consumer;)V + 0 o p_239090_ + 1 o p_239091_ + 2 o p_239092_ + 3 o p_239093_ + B ()V m_239043_ + C ()V m_239634_ + a (Lepi;)V m_239590_ + 0 o p_239591_ + a (Lffk;)Z m_241847_ + 0 o p_242240_ + a (Leyo;)Leov; m_239237_ + static + 0 o p_239238_ + a (Leox;IIF)V m_88315_ + 0 o p_282899_ + 1 o p_239287_ + 2 o p_239288_ + 3 o p_239289_ + au_ ()Lsw; m_142562_ + aw_ ()V m_7379_ + b (Lepi;)V m_239859_ + 0 o p_239860_ + b (Leyo;)Leov; m_240165_ + static + 0 o p_240166_ + b ()V m_7856_ + c (Leyo;)Leov; m_239465_ + static + 0 o p_239466_ + d (Leyo;)Leov; m_238942_ + static + 0 o p_238943_ + e (Leyo;)Leov; m_239862_ + static + 0 o p_239863_ + f (Leyo;)Leov; m_240004_ + static + 0 o p_240005_ + g (Leyo;)Leov; m_240419_ + static + 0 o p_240635_ + h (Leyo;)Leov; m_239184_ + static + 0 o p_239185_ + i (Leyo;)Leov; m_239506_ + static + 0 o p_239507_ + j (Leyo;)Leov; m_239965_ + static + 0 o p_239966_ + k (Leyo;)Leov; m_240197_ + static + 0 o p_240198_ + l (Leyo;)Leov; m_240425_ + static + 0 o p_240538_ + l ()V m_239478_ + m (Leyo;)Leov; m_239654_ + static + 0 o p_239655_ +eyo$a net/minecraft/client/gui/screens/reporting/ChatSelectionScreen$ChatSelectionList + a f_238829_ + l f_238832_ + (Leyo;Lenn;I)V + 0 o p_239059_ + 1 o p_239060_ + 2 o p_239061_ + a (D)V m_93410_ + 0 o p_239021_ + a (Lepc$a;)V m_6987_ + 0 o p_265613_ + a (Leyo$a$b;)V m_6987_ + 0 o p_265249_ + a (ILffk$a;)V m_239761_ + 0 o p_242846_ + 1 o p_242909_ + a (Leyo$a;)Lenn; m_240268_ + static + 0 o p_240269_ + a (Lesx;)Lepc$a; m_264254_ + 0 o p_265332_ + a (III)Z m_7933_ + 0 o p_239322_ + 1 o p_239323_ + 2 o p_239324_ + a (Lsw;)V m_239556_ + 0 o p_239876_ + a (Lffk$a;Z)V m_240017_ + 0 o p_242229_ + 1 o p_240019_ + a (Leox;IIFIIIII)V m_238964_ + 0 o p_281532_ + 1 o p_239775_ + 2 o p_239776_ + 3 o p_239777_ + 4 o p_239778_ + 5 o p_239779_ + 6 o p_239780_ + 7 o p_239781_ + 8 o p_239782_ + b (Lesx;)Leyo$a$b; m_264254_ + 0 o p_265203_ + b ()I m_5759_ + b (Leyo$a$b;)Z m_240326_ + 0 o p_240327_ + c ()I m_5756_ + d ()I m_239954_ + e ()I m_239341_ +eyo$a$a net/minecraft/client/gui/screens/reporting/ChatSelectionScreen$ChatSelectionList$DividerEntry + a f_238611_ + c f_238646_ + d f_238728_ + (Leyo$a;Lsw;)V + 0 o p_239671_ + 1 o p_239672_ + a ()Lsw; m_142172_ + a (Leox;IIIIIIIZF)V m_6311_ + 0 o p_283635_ + 1 o p_239815_ + 2 o p_239816_ + 3 o p_239817_ + 4 o p_239818_ + 5 o p_239819_ + 6 o p_239820_ + 7 o p_239821_ + 8 o p_239822_ + 9 o p_239823_ +eyo$a$b net/minecraft/client/gui/screens/reporting/ChatSelectionScreen$ChatSelectionList$Entry + b f_238585_ + (Leyo$a;)V + 0 o p_239445_ + a ()Lsw; m_142172_ + b ()Z m_239825_ + d ()Z m_238989_ + e ()Z m_240270_ +eyo$a$c net/minecraft/client/gui/screens/reporting/ChatSelectionScreen$ChatSelectionList$Heading + a f_238587_ + b f_238665_ + (Ljava/util/UUID;Leyo$a$b;)V + 0 o f_238587_ + 1 o f_238665_ + a (Leyo$a$c;)Z m_239747_ + 0 o p_239748_ + a ()Ljava/util/UUID; f_238587_ + b ()Leyo$a$b; f_238665_ + equals (Ljava/lang/Object;)Z equals + 0 o p_239723_ + hashCode ()I hashCode + toString ()Ljava/lang/String; toString +eyo$a$d net/minecraft/client/gui/screens/reporting/ChatSelectionScreen$ChatSelectionList$MessageEntry + a f_238833_ + c f_240226_ + d f_240229_ + e f_240224_ + f f_238672_ + g f_240345_ + h f_238546_ + i f_238660_ + j f_238609_ + k f_238726_ + l f_240368_ + m f_240376_ + n f_238811_ + o f_238593_ + ()V + static + (Leyo$a;ILsw;Lsw;Leni;ZZ)V + 0 o p_240574_ + 1 o p_240650_ + 2 o p_240525_ + 3 o p_240539_ + 4 o p_240551_ + 5 o p_240596_ + 6 o p_240615_ + a ()Lsw; m_142172_ + a (Leox;IIIIIIIZF)V m_6311_ + 0 o p_281361_ + 1 o p_239596_ + 2 o p_239597_ + 3 o p_239598_ + 4 o p_239599_ + 5 o p_239600_ + 6 o p_239601_ + 7 o p_239602_ + 8 o p_239603_ + 9 o p_239604_ + a (Leox;IIIII)V m_240479_ + 0 o p_281776_ + 1 o p_240566_ + 2 o p_240565_ + 3 o p_240581_ + 4 o p_240614_ + 5 o p_240612_ + a (DDI)Z m_6375_ + 0 o p_239729_ + 1 o p_239730_ + 2 o p_239731_ + a (III)Z m_7933_ + 0 o p_239368_ + 1 o p_239369_ + 2 o p_239370_ + a (Leox;III)V m_280452_ + 0 o p_281342_ + 1 o p_281492_ + 2 o p_283046_ + 3 o p_283458_ + b ()Z m_239825_ + d ()Z m_238989_ + e ()Z m_240270_ + f ()I m_239870_ + g ()I m_239492_ + h ()Z m_240066_ +eyo$a$e net/minecraft/client/gui/screens/reporting/ChatSelectionScreen$ChatSelectionList$MessageHeadingEntry + a f_238721_ + c f_238676_ + d f_238600_ + e f_238674_ + f f_238556_ + (Leyo$a;Lcom/mojang/authlib/GameProfile;Lsw;Z)V + 0 o p_240079_ + 1 o p_240080_ + 2 o p_240081_ + 3 o p_240082_ + a (Leox;IIIIIIIZF)V m_6311_ + 0 o p_281320_ + 1 o p_283177_ + 2 o p_282422_ + 3 o p_282017_ + 4 o p_282555_ + 5 o p_283255_ + 6 o p_283682_ + 7 o p_281582_ + 8 o p_282259_ + 9 o p_283561_ +eyo$a$f net/minecraft/client/gui/screens/reporting/ChatSelectionScreen$ChatSelectionList$PaddingEntry + a f_238760_ + (Leyo$a;)V + 0 o p_240051_ + a (Leox;IIIIIIIZF)V m_6311_ + 0 o p_282007_ + 1 o p_240110_ + 2 o p_240111_ + 3 o p_240112_ + 4 o p_240113_ + 5 o p_240114_ + 6 o p_240115_ + 7 o p_240116_ + 8 o p_240117_ + 9 o p_240118_ +eyp net/minecraft/client/gui/screens/reporting/ReportReasonSelectionScreen + a f_238588_ + b f_238612_ + c f_240235_ + k f_238753_ + l f_238813_ + m f_238582_ + n f_238542_ + o f_238652_ + p f_238643_ + q f_238613_ + r f_240344_ + s f_238626_ + ()V + static + (Leuq;Lffr;Ljava/util/function/Consumer;)V + 0 o p_239438_ + 1 o p_239439_ + 2 o p_239440_ + B ()I m_239885_ + C ()I m_239650_ + D ()I m_239996_ + E ()I m_239592_ + a (Lepi;)V m_279843_ + 0 o p_280889_ + a (Leyp;)Leov; m_239216_ + static + 0 o p_239217_ + a (Leox;IIF)V m_88315_ + 0 o p_282815_ + 1 o p_283039_ + 2 o p_283620_ + 3 o p_281336_ + aw_ ()V m_7379_ + b (Leyp;)Leov; m_239698_ + static + 0 o p_239699_ + b ()V m_7856_ + b (Lepi;)V m_279841_ + 0 o p_280887_ + c (Z)V m_279842_ + 0 o p_280888_ + l ()I m_240065_ +eyp$a net/minecraft/client/gui/screens/reporting/ReportReasonSelectionScreen$ReasonSelectionList + a f_238751_ + (Leyp;Lenn;)V + 0 o p_239714_ + 1 o p_239715_ + a (Lepc$a;)V m_6987_ + 0 o p_240608_ + a (Lffr;)Leyp$a$a; m_239167_ + 0 o p_239168_ + a (Leyp$a$a;)V m_6987_ + 0 o p_240601_ + a (Lffr;Leyp$a$a;)Z m_239291_ + static + 0 o p_239292_ + 1 o p_239293_ + b ()I m_5759_ + c ()I m_5756_ +eyp$a$a net/minecraft/client/gui/screens/reporting/ReportReasonSelectionScreen$ReasonSelectionList$Entry + a f_238684_ + b f_238519_ + (Leyp$a;Lffr;)V + 0 o p_239266_ + 1 o p_239267_ + a ()Lsw; m_142172_ + a (Leox;IIIIIIIZF)V m_6311_ + 0 o p_281941_ + 1 o p_281450_ + 2 o p_281781_ + 3 o p_283334_ + 4 o p_283073_ + 5 o p_282523_ + 6 o p_282667_ + 7 o p_281567_ + 8 o p_282095_ + 9 o p_283305_ + a (DDI)Z m_6375_ + 0 o p_240021_ + 1 o p_240022_ + 2 o p_240023_ + b ()Lffr; m_239824_ +eyq net/minecraft/client/gui/screens/reporting/package-info +eyr net/minecraft/client/gui/screens/social/PlayerEntry + A f_238715_ + C f_242995_ + D f_240656_ + E f_240657_ + F f_240655_ + G f_170069_ + H f_170061_ + I f_170062_ + J f_170063_ + K f_170064_ + a f_100529_ + b f_100530_ + c f_100531_ + d f_100532_ + e f_100533_ + f f_238820_ + g f_170065_ + h f_100534_ + i f_100535_ + j f_100536_ + k f_100537_ + l f_100538_ + m f_100539_ + n f_240676_ + o f_240670_ + p f_243019_ + q f_252399_ + r f_100540_ + s f_100541_ + t f_238614_ + u f_100544_ + v f_100545_ + w f_100546_ + x f_100547_ + y f_100548_ + z f_100549_ + ()V + static + (Lenn;Leyu;Ljava/util/UUID;Ljava/lang/String;Ljava/util/function/Supplier;Z)V + 0 o p_243293_ + 1 o p_243214_ + 2 o p_243288_ + 3 o p_243311_ + 4 o p_243309_ + 5 o p_243297_ + a (Ltj;)Ltj; m_100594_ + 0 o p_100595_ + a (ZLsw;)V m_100596_ + 0 o p_100597_ + 1 o p_100598_ + a (Leox;IIIIIIIZF)V m_6311_ + 0 o p_282434_ + 1 o p_283281_ + 2 o p_281503_ + 3 o p_282112_ + 4 o p_282838_ + 5 o p_282747_ + 6 o p_282231_ + 7 o p_282048_ + 8 o p_281660_ + 9 o p_283055_ + a (Lffs;Lenn;Leyu;Ljava/util/UUID;Lepi;)V m_260759_ + static + 0 o p_261369_ + 1 o p_261370_ + 2 o p_261371_ + 3 o p_261372_ + 4 o p_238875_ + a (Lenn;Leyu;Lffs;Ljava/util/UUID;)V m_260758_ + static + 0 o p_261365_ + 1 o p_261366_ + 2 o p_261367_ + 3 o p_261368_ + a (Leys;Ljava/util/UUID;Ljava/lang/String;Lepi;)V m_170070_ + 0 o p_170071_ + 1 o p_170072_ + 2 o p_170073_ + 3 o p_170074_ + b ()Ljava/util/List; m_142437_ + b (Leys;Ljava/util/UUID;Ljava/lang/String;Lepi;)V m_100608_ + 0 o p_100609_ + 1 o p_100610_ + 2 o p_100611_ + 3 o p_100612_ + c (Z)V m_100619_ + 0 o p_100620_ + d ()Ljava/lang/String; m_100600_ + d (Z)V m_240730_ + 0 o p_240771_ + e (Z)V m_262454_ + 0 o p_262638_ + e ()Ljava/util/UUID; m_100618_ + f ()Z m_240725_ + g ()Z m_240694_ + h ()Leqp; m_260909_ + i ()Ljava/util/List; m_6702_ + j ()Lsw; m_100621_ +eyr$1 net/minecraft/client/gui/screens/social/PlayerEntry$1 + a f_100622_ + (Leyr;IIIIIIILacq;IILepi$c;Lsw;)V + 0 o p_260096_ + 1 o p_259980_ + 2 o p_259403_ + 3 o p_259679_ + 4 o p_259859_ + 5 o p_260283_ + 6 o p_260029_ + 7 o p_260114_ + 8 o p_259082_ + 9 o p_259216_ + 10 o p_260009_ + 11 o p_259117_ + 12 o p_259172_ + aE_ ()Ltj; m_5646_ +eyr$2 net/minecraft/client/gui/screens/social/PlayerEntry$2 + a f_100639_ + (Leyr;IIIIIIILacq;IILepi$c;Lsw;)V + 0 o p_259556_ + 1 o p_259265_ + 2 o p_259180_ + 3 o p_259644_ + 4 o p_260153_ + 5 o p_259188_ + 6 o p_259025_ + 7 o p_259849_ + 8 o p_259987_ + 9 o p_259726_ + 10 o p_260189_ + 11 o p_259625_ + 12 o p_260311_ + aE_ ()Ltj; m_5646_ +eyr$3 net/minecraft/client/gui/screens/social/PlayerEntry$3 + a f_170096_ + (Leyr;IIIIIIILacq;IILepi$c;Lsw;)V + 0 o p_260302_ + 1 o p_259455_ + 2 o p_259106_ + 3 o p_259628_ + 4 o p_259605_ + 5 o p_260062_ + 6 o p_260290_ + 7 o p_260280_ + 8 o p_259528_ + 9 o p_260331_ + 10 o p_260199_ + 11 o p_259665_ + 12 o p_259256_ + aE_ ()Ltj; m_5646_ +eys net/minecraft/client/gui/screens/social/PlayerSocialManager + a f_100668_ + b f_100669_ + c f_100670_ + d f_100671_ + e f_194054_ + f f_194055_ + (Lenn;Lcom/mojang/authlib/minecraft/UserApiService;)V + 0 o p_194057_ + 1 o p_194058_ + a (Lffb;)V m_100676_ + 0 o p_100677_ + a (Ljava/util/UUID;)V m_100680_ + 0 o p_100681_ + a ()V m_194059_ + a (Ljava/lang/String;)Ljava/util/UUID; m_100678_ + 0 o p_100679_ + b (Ljava/util/UUID;)V m_100682_ + 0 o p_100683_ + b ()V m_194060_ + c (Ljava/util/UUID;)Z m_100684_ + 0 o p_100685_ + c ()Ljava/util/Set; m_100675_ + d (Ljava/util/UUID;)Z m_100686_ + 0 o p_100687_ + e (Ljava/util/UUID;)Z m_100688_ + 0 o p_100689_ + f (Ljava/util/UUID;)V m_100690_ + 0 o p_100691_ +eyt net/minecraft/client/gui/screens/social/SocialInteractionsPlayerList + a f_100692_ + l f_100694_ + m f_100695_ + (Leyu;Lenn;IIIII)V + 0 o p_100697_ + 1 o p_100698_ + 2 o p_100699_ + 3 o p_100700_ + 4 o p_100701_ + 5 o p_100702_ + 6 o p_100703_ + a (Ljava/lang/String;)V m_100717_ + 0 o p_100718_ + a (Ljava/util/Collection;D)V m_240705_ + 0 o p_240809_ + 1 o p_240830_ + a (Lcom/mojang/authlib/GameProfile;)Lacq; m_100709_ + 0 o p_240240_ + a (Lcom/mojang/authlib/GameProfile;Ljava/util/UUID;)Leyr; m_243027_ + 0 o p_243146_ + 1 o p_243147_ + a (Ljava/util/Map;Z)V m_240708_ + 0 o p_240780_ + 1 o p_240827_ + a (Ljava/util/Collection;Ljava/util/Map;)V m_240718_ + 0 o p_240813_ + 1 o p_240796_ + a (Ljava/util/UUID;)V m_100722_ + 0 o p_100723_ + a (Ljava/util/Collection;DZ)V m_240702_ + 0 o p_240798_ + 1 o p_240792_ + 2 o p_240829_ + a (Lffh;)Ljava/util/Collection; m_246121_ + static + 0 o p_250748_ + a (Lffb;Leyu$a;)V m_100714_ + 0 o p_100715_ + 1 o p_100716_ + a (Leyr;)Z m_240241_ + 0 o p_100710_ + b (Leox;)V m_280310_ + 0 o p_281892_ + b (Leyr;)Ljava/lang/Integer; m_252575_ + static + 0 o p_240745_ + c (Leyr;)Ljava/lang/Integer; m_243352_ + 0 o p_240744_ + d ()Z m_100724_ + e ()V m_240704_ + v ()V m_100725_ +eyu net/minecraft/client/gui/screens/social/SocialInteractionsScreen + A f_170135_ + C f_170136_ + D f_100748_ + E f_100749_ + F f_100726_ + G f_100727_ + H f_100728_ + I f_100729_ + J f_100730_ + K f_100731_ + L f_100732_ + M f_100733_ + N f_100734_ + a f_100736_ + b f_170138_ + c f_170137_ + k f_100737_ + l f_100738_ + m f_100739_ + n f_100740_ + o f_100741_ + p f_100742_ + q f_100743_ + r f_100744_ + s f_100745_ + t f_100746_ + u f_100747_ + v f_170140_ + w f_170131_ + x f_170132_ + y f_170133_ + z f_170134_ + ()V + static + ()V + B ()I m_100801_ + C ()I m_100802_ + a (Ljava/lang/String;)V m_100788_ + 0 o p_100789_ + a (Lffb;)V m_100775_ + 0 o p_100776_ + a (Lepi;)V m_279844_ + 0 o p_280890_ + a (Leyu$a;)V m_100771_ + 0 o p_100772_ + a (III)Z m_7933_ + 0 o p_100757_ + 1 o p_100758_ + 2 o p_100759_ + a (Ljava/util/UUID;)V m_100779_ + 0 o p_100780_ + a (Lenn;)V m_100767_ + 0 o p_100768_ + a (Leox;)V m_280273_ + 0 o p_283202_ + a (Leox;IIF)V m_88315_ + 0 o p_282516_ + 1 o p_100764_ + 2 o p_100765_ + 3 o p_100766_ + au_ ()Lsw; m_142562_ + az_ ()Z m_7043_ + b ()V m_7856_ + b (Lepi;)V m_100784_ + 0 o p_100785_ + c (Lepi;)V m_100790_ + 0 o p_100791_ + c (Z)V m_279845_ + 0 o p_280891_ + d (Lepi;)V m_100795_ + 0 o p_240243_ + f ()V m_86600_ + l ()I m_100799_ +eyu$1 net/minecraft/client/gui/screens/social/SocialInteractionsScreen$1 + d f_100803_ + (Leyu;Leov;IIIILsw;)V + 0 o p_100805_ + 1 o p_100806_ + 2 o p_100807_ + 3 o p_100808_ + 4 o p_100809_ + 5 o p_100810_ + 6 o p_100811_ + aE_ ()Ltj; m_5646_ +eyu$2 net/minecraft/client/gui/screens/social/SocialInteractionsScreen$2 + a f_100813_ + ()V + static +eyu$a net/minecraft/client/gui/screens/social/SocialInteractionsScreen$Page + a ALL + b HIDDEN + c BLOCKED + d $VALUES + ()V + static + (Ljava/lang/String;I)V + 0 o p_100821_ + 1 o p_100822_ + a ()[Leyu$a; m_170144_ + static + valueOf (Ljava/lang/String;)Leyu$a; valueOf + static + 0 o p_100824_ + values ()[Leyu$a; values + static +eyv net/minecraft/client/gui/screens/social/package-info +eyw net/minecraft/client/gui/screens/telemetry/TelemetryEventWidget + a f_260678_ + b f_260637_ + c f_260658_ + d f_260432_ + e f_260606_ + f f_260489_ + g f_260673_ + ()V + static + (IIIILeov;)V + 0 o p_261584_ + 1 o p_261895_ + 2 o p_261803_ + 3 o p_261967_ + 4 o p_261662_ + a (D)V m_240206_ + 0 o p_261736_ + a (Ljava/util/function/DoubleConsumer;)V m_261118_ + 0 o p_261686_ + a (Leyw$b;Lfzl;)V m_261199_ + 0 o p_261823_ + 1 o p_262127_ + a (Leox;IIFLepf;)V m_279846_ + static + 0 o p_280892_ + 1 o p_280893_ + 2 o p_280894_ + 3 o p_280895_ + 4 o p_280896_ + a (Lesp;)V m_168797_ + 0 o p_261538_ + a (Lfzl;Leyw$b;)V m_260944_ + 0 o p_262105_ + 1 o p_261932_ + b (Z)V m_261018_ + 0 o p_261772_ + c (Leox;IIF)V m_239197_ + 0 o p_283081_ + 1 o p_283426_ + 2 o p_282414_ + 3 o p_283358_ + c (Z)Leyw$a; m_261270_ + 0 o p_261628_ + f ()I m_239019_ + g ()D m_239725_ + v ()I m_261310_ +eyw$a net/minecraft/client/gui/screens/telemetry/TelemetryEventWidget$Content + a f_260717_ + b f_260488_ + (Lesf;Lsw;)V + 0 o f_260717_ + 1 o f_260488_ + a ()Lesf; f_260717_ + b ()Lsw; f_260488_ + equals (Ljava/lang/Object;)Z equals + 0 o p_261502_ + hashCode ()I hashCode + toString ()Ljava/lang/String; toString +eyw$b net/minecraft/client/gui/screens/telemetry/TelemetryEventWidget$ContentBuilder + a f_260618_ + b f_260715_ + c f_260584_ + d f_260525_ + e f_260507_ + (I)V + 0 o p_261784_ + a (Leov;Lsw;)V m_260980_ + 0 o p_261503_ + 1 o p_261550_ + a (Leov;Lsw;I)V m_261152_ + 0 o p_261894_ + 1 o p_261816_ + 2 o p_261721_ + a (I)V m_260899_ + 0 o p_261997_ + a ()Leyw$a; m_261135_ + b (Leov;Lsw;)V m_261236_ + 0 o p_261496_ + 1 o p_261670_ +eyx net/minecraft/client/gui/screens/telemetry/TelemetryInfoScreen + a f_260462_ + b f_260608_ + c f_260486_ + k f_260498_ + l f_260718_ + m f_260671_ + n f_260521_ + o f_260514_ + p f_260692_ + ()V + static + (Leuq;Lenr;)V + 0 o p_261720_ + 1 o p_262019_ + a (D)V m_260998_ + 0 o p_262168_ + a (Lepi;)V m_260814_ + 0 o p_261672_ + a (Lepf;Lepf;)Lesf; m_264243_ + 0 o p_265763_ + 1 o p_265710_ + a (Ljava/lang/Boolean;)V m_261011_ + 0 o p_261857_ + a (Leyx;Leqt;)V m_263882_ + static + 0 o p_264695_ + 1 o p_264696_ + a (Leox;IIF)V m_88315_ + 0 o p_281800_ + 1 o p_283129_ + 2 o p_283666_ + 3 o p_282837_ + au_ ()Lsw; m_142562_ + aw_ ()V m_7379_ + b ()V m_7856_ + b (Lepi;)V m_260900_ + 0 o p_261531_ + c (Lepi;)V m_261269_ + 0 o p_261840_ + c (Z)V m_279847_ + 0 o p_280897_ + l ()Lepf; m_260955_ +eyy net/minecraft/client/gui/screens/telemetry/package-info +eyz net/minecraft/client/gui/screens/worldselection/ConfirmExperimentalFeaturesScreen + a f_244576_ + b f_244027_ + c f_244466_ + k f_268547_ + l f_268664_ + m f_244340_ + n f_244180_ + o f_268508_ + ()V + static + (Ljava/util/Collection;Lit/unimi/dsi/fastutil/booleans/BooleanConsumer;)V + 0 o p_252011_ + 1 o p_250152_ + a (Leyz;Leqt;)V m_268776_ + static + 0 o p_269624_ + 1 o p_269625_ + a (Lepi;)V m_245914_ + 0 o p_250397_ + a (Leox;IIF)V m_88315_ + 0 o p_282635_ + 1 o p_281935_ + 2 o p_283434_ + 3 o p_282471_ + aG_ ()V m_267719_ + au_ ()Lsw; m_142562_ + aw_ ()V m_7379_ + b ()V m_7856_ + b (Lepi;)V m_245513_ + 0 o p_252248_ + c (Lepi;)V m_279848_ + 0 o p_280898_ +eyz$a net/minecraft/client/gui/screens/worldselection/ConfirmExperimentalFeaturesScreen$DetailsScreen + a f_244011_ + b f_244097_ + (Leyz;)V + 0 o p_249890_ + a (Lepi;)V m_245813_ + 0 o p_251286_ + a (Leyz$a;)Leov; m_247094_ + static + 0 o p_249808_ + a (Leox;IIF)V m_88315_ + 0 o p_281368_ + 1 o p_281413_ + 2 o p_281557_ + 3 o p_282492_ + aw_ ()V m_7379_ + b (Leyz$a;)Lenn; m_245404_ + static + 0 o p_249528_ + b ()V m_7856_ + c (Leyz$a;)Leov; m_245549_ + static + 0 o p_251978_ +eyz$a$a net/minecraft/client/gui/screens/worldselection/ConfirmExperimentalFeaturesScreen$DetailsScreen$PackList + a f_243827_ + (Leyz$a;Lenn;Ljava/util/Collection;)V + 0 o p_251813_ + 1 o p_249776_ + 2 o p_251183_ + b ()I m_5759_ +eyz$a$b net/minecraft/client/gui/screens/worldselection/ConfirmExperimentalFeaturesScreen$DetailsScreen$PackListEntry + a f_244507_ + b f_244480_ + c f_244046_ + d f_243880_ + (Leyz$a;Lsw;Lsw;Lepz;)V + 0 o p_249049_ + 1 o p_250724_ + 2 o p_248883_ + 3 o p_250949_ + a ()Lsw; m_142172_ + a (Leox;IIIIIIIZF)V m_6311_ + 0 o p_282199_ + 1 o p_282727_ + 2 o p_283089_ + 3 o p_283116_ + 4 o p_281268_ + 5 o p_283038_ + 6 o p_283070_ + 7 o p_282448_ + 8 o p_281417_ + 9 o p_283226_ +ez net/minecraft/commands/arguments/TemplateMirrorArgument + ()V + a (Lcom/mojang/brigadier/context/CommandContext;Ljava/lang/String;)Lcui; m_234344_ + static + 0 o p_234345_ + 1 o p_234346_ + a ()Lex; m_234343_ + static +eza net/minecraft/client/gui/screens/worldselection/CreateWorldScreen + A f_100855_ + C f_100831_ + D f_100832_ + E f_267391_ + F f_267490_ + a f_273823_ + b f_273875_ + c f_279536_ + k f_267463_ + l f_267486_ + m f_267453_ + n f_267356_ + o f_100848_ + p f_170147_ + q f_100849_ + r f_100852_ + s f_268721_ + t f_267456_ + u f_232866_ + v f_267420_ + w f_267460_ + x f_267389_ + y f_267424_ + z f_268587_ + ()V + static + (Lenn;Leuq;Lezi;Ljava/util/Optional;Ljava/util/OptionalLong;)V + 0 o p_276053_ + 1 o p_276049_ + 2 o p_276047_ + 3 o p_276013_ + 4 o p_276031_ + B ()V m_100967_ + C ()V m_100972_ + D ()Ljava/nio/file/Path; m_100968_ + E ()V m_100976_ + F ()Ljava/util/Optional; m_232868_ + a (Ljava/util/function/Consumer;Ljava/lang/Void;Ljava/lang/Throwable;)Ljava/lang/Object; m_279849_ + 0 o p_280899_ + 1 o p_280900_ + 2 o p_280901_ + a (Lakn;Lada;Lhl;Leza$a;)Lezi; m_244671_ + static + 0 o p_247788_ + 1 o p_247789_ + 2 o p_247790_ + 3 o p_247791_ + a (Lcom/mojang/serialization/DynamicOps;Lcom/google/gson/JsonElement;)Lcom/mojang/serialization/DataResult; m_232893_ + static + 0 o p_232894_ + 1 o p_232895_ + a (III)Z m_7933_ + 0 o p_100875_ + 1 o p_100876_ + 2 o p_100877_ + a (Laki;Lcnf;)Ladj$c; m_245574_ + static + 0 o p_251829_ + 1 o p_251555_ + a (Ljava/nio/file/Path;Lenn;)Ljava/nio/file/Path; m_100906_ + static + 0 o p_100907_ + 1 o p_100908_ + a (Ljava/nio/file/Path;)Z m_232920_ + 0 o p_232921_ + a (Lenn;Leuq;Lcmq;Lezi;Ljava/nio/file/Path;)Leza; m_275847_ + static + 0 o p_276017_ + 1 o p_276029_ + 2 o p_276055_ + 3 o p_276028_ + 4 o p_276040_ + a (Laki;Lcnf;Ljava/util/function/Consumer;Z)V m_268780_ + 0 o p_269632_ + 1 o p_269633_ + 2 o p_269634_ + 3 o p_269635_ + a (Ladj$a;)Ladj$b; m_244673_ + 0 o p_247793_ + a (Lenn;Lsw;)V m_232899_ + static + 0 o p_232900_ + 1 o p_232901_ + a (Lcnf;)V m_269545_ + 0 o p_270214_ + a (Lenn;Leuq;)V m_232896_ + static + 0 o p_232897_ + 1 o p_232898_ + a (Ldzc$a;Lhl;Lcom/mojang/serialization/Lifecycle;)V m_245184_ + 0 o p_250577_ + 1 o p_249152_ + 2 o p_249994_ + a (Leox;IIF)V m_88315_ + 0 o p_282137_ + 1 o p_283640_ + 2 o p_281243_ + 3 o p_282743_ + a (Ldif$b;Lhl;Lcom/mojang/serialization/Lifecycle;)V m_244678_ + 0 o p_247804_ + 1 o p_247805_ + 2 o p_247806_ + a (Lepi;)V m_232902_ + 0 o p_232903_ + a (Ljava/util/function/Consumer;Z)V m_268777_ + 0 o p_269626_ + 1 o p_269627_ + a (Lorg/apache/commons/lang3/mutable/MutableObject;Ljava/nio/file/Path;Ljava/nio/file/Path;)V m_232930_ + static + 0 o p_232931_ + 1 o p_232932_ + 2 o p_232933_ + a (Leza;)Lenn; m_267796_ + static + 0 o p_268000_ + a (Ljava/util/List;Ljava/lang/String;)Z m_232925_ + static + 0 o p_232926_ + 1 o p_232927_ + a (Leza;Leqt;)V m_267821_ + static + 0 o p_268341_ + 1 o p_268270_ + a (Ljava/nio/file/Path;Ljava/nio/file/Path;Ljava/nio/file/Path;)V m_100912_ + static + 0 o p_100913_ + 1 o p_100914_ + 2 o p_100915_ + a (Laki;ZLjava/util/function/Consumer;)V m_269443_ + 0 o p_270299_ + 1 o p_270896_ + 2 o p_270760_ + a (Lepf;)V m_267511_ + 0 o p_267851_ + a (Laki;Lcnf;Ljava/util/function/Consumer;)V m_269431_ + 0 o p_270272_ + 1 o p_270573_ + 2 o p_270552_ + a (Ljava/nio/file/Path;Ljava/nio/file/Path;)Z m_232922_ + static + 0 o p_232923_ + 1 o p_232924_ + a (Laki;)V m_268782_ + 0 o p_269637_ + aG_ ()V m_267719_ + aw_ ()V m_7379_ + b (Lepi;)V m_232937_ + 0 o p_232938_ + b (Ljava/nio/file/Path;Ljava/nio/file/Path;)V m_232943_ + 0 o p_232944_ + 1 o p_232945_ + b (Lakn;Lada;Lhl;Leza$a;)Lezi; m_244676_ + static + 0 o p_247798_ + 1 o p_247799_ + 2 o p_247800_ + 3 o p_247801_ + b (Laki;)V m_268781_ + 0 o p_269636_ + b (Leza;)Leov; m_267793_ + static + 0 o p_267956_ + b (Ladj$a;)Ladj$b; m_244672_ + static + 0 o p_247792_ + b (Leox;)V m_280039_ + 0 o p_281950_ + b (Ljava/nio/file/Path;)V m_232941_ + static + 0 o p_232942_ + b (Lcnf;)V m_267734_ + 0 o p_268186_ + b (Leza;Leqt;)V m_267512_ + static + 0 o p_267852_ + 1 o p_267853_ + b ()V m_7856_ + c (Leza;)Leov; m_267581_ + static + 0 o p_267958_ + c (Lcnf;)Lcom/mojang/datafixers/util/Pair; m_267637_ + 0 o p_268328_ + c (Z)Lcmq; m_205447_ + 0 o p_205448_ + d (Leqt;)Leqt; m_142416_ + 0 o p_170199_ + d (Leza;)Leov; m_267682_ + static + 0 o p_268164_ + e (Leqt;)Leqt; m_7787_ + 0 o p_100948_ + e (Leza;)Lenn; m_267602_ + static + 0 o p_267972_ + f (Leza;)Lenn; m_267763_ + static + 0 o p_268315_ + f ()V m_86600_ + g (Leza;)Lenn; m_267746_ + static + 0 o p_268278_ + l ()Lezj; m_267748_ +eza$a net/minecraft/client/gui/screens/worldselection/CreateWorldScreen$DataPackReloadCookie + a f_243966_ + b f_243979_ + (Ldig;Lcnf;)V + 0 o f_243966_ + 1 o f_243979_ + a ()Ldig; f_243966_ + b ()Lcnf; f_243979_ + equals (Ljava/lang/Object;)Z equals + 0 o p_250700_ + hashCode ()I hashCode + toString ()Ljava/lang/String; toString +eza$b net/minecraft/client/gui/screens/worldselection/CreateWorldScreen$GameTab + b f_267363_ + c f_267405_ + d f_267376_ + e f_267368_ + ()V + static + (Leza;)V + 0 o p_268170_ + a (Lezj;)V m_275774_ + 0 o p_275871_ + a (Lepi;)V m_268784_ + 0 o p_269641_ + a (Lepp;Ljava/lang/Boolean;)V m_267575_ + 0 o p_268200_ + 1 o p_268324_ + a (Lepp;Lezj;)V m_279850_ + 0 o p_280902_ + 1 o p_280903_ + a (Ljava/lang/Boolean;)Leqp; m_267596_ + static + 0 o p_267952_ + a (Lezj$a;)Lsw; m_267645_ + static + 0 o p_268080_ + a (Lepp;Lezj$a;)V m_267685_ + 0 o p_268266_ + 1 o p_268208_ + a (Lepp;Lbdu;)V m_267565_ + 0 o p_267962_ + 1 o p_268338_ + b (Lepp;Lezj;)V m_279851_ + 0 o p_280904_ + 1 o p_280905_ + b ()V m_267681_ + c (Lepp;Lezj;)V m_279852_ + static + 0 o p_280906_ + 1 o p_280907_ +eza$c net/minecraft/client/gui/screens/worldselection/CreateWorldScreen$MoreTab + b f_267448_ + c f_267379_ + d f_267394_ + e f_267461_ + ()V + static + (Leza;)V + 0 o p_268071_ + a (Lepi;)V m_267578_ + 0 o p_268345_ + a (Ljava/util/Optional;)V m_267671_ + 0 o p_268107_ + b (Lepi;)V m_268785_ + 0 o p_269642_ + c (Lepi;)V m_267801_ + 0 o p_268028_ + c ()V m_267650_ +eza$d net/minecraft/client/gui/screens/worldselection/CreateWorldScreen$WorldTab + b f_267438_ + c f_267449_ + d f_267381_ + e f_267413_ + f f_267384_ + g f_267474_ + h f_267471_ + i f_267459_ + j f_267437_ + k f_267412_ + l f_267365_ + ()V + static + (Leza;)V + 0 o p_268204_ + a (Lezj;)V m_279854_ + 0 o p_280910_ + a (Ljava/lang/String;)V m_267567_ + 0 o p_268342_ + a (Lepi;)V m_267586_ + 0 o p_268355_ + a (Lesf$b;Lesi;)V m_267830_ + static + 0 o p_268216_ + 1 o p_267961_ + a (Lepp;Lezj;)V m_279853_ + 0 o p_280908_ + 1 o p_280909_ + a (Lepp;)Ltj; m_267591_ + static + 0 o p_268292_ + a (Lepp;Lezj$b;)V m_267668_ + 0 o p_268242_ + 1 o p_267954_ + a (Lezh;Lezj;)V m_267705_ + static + 0 o p_268340_ + 1 o p_268209_ + b ()V m_267681_ + c ()V m_267652_ + d ()Lepp$c; m_267806_ + e ()Z m_267785_ + f ()Z m_267636_ +eza$d$1 net/minecraft/client/gui/screens/worldselection/CreateWorldScreen$WorldTab$1 + d f_267477_ + e f_267479_ + (Leza$d;Leov;IIIILsw;Leza;)V + 0 o p_268323_ + 1 o p_268059_ + 2 o p_268247_ + 3 o p_267975_ + 4 o p_268263_ + 5 o p_268115_ + 6 o p_268195_ + 7 o p_268003_ + aE_ ()Ltj; m_5646_ +eza$d$2 net/minecraft/client/gui/screens/worldselection/CreateWorldScreen$WorldTab$2 + a f_267476_ + (Leza$d;)V + 0 o p_268241_ + a ()Ljava/util/List; m_142477_ + b ()Ljava/util/List; m_142478_ +ezb net/minecraft/client/gui/screens/worldselection/EditGameRulesScreen + a f_101044_ + b f_101045_ + c f_101046_ + k f_101047_ + l f_101048_ + m f_101049_ + (Lcmi;Ljava/util/function/Consumer;)V + 0 o p_101051_ + 1 o p_101052_ + a (Lepi;)V m_101072_ + 0 o p_101073_ + a (Lezb;Leqt;)V m_267513_ + static + 0 o p_267854_ + 1 o p_267855_ + a (Lezb;)Lenn; m_101062_ + static + 0 o p_101063_ + a (Lezb$f;)V m_101060_ + 0 o p_101061_ + a (Leox;IIF)V m_88315_ + 0 o p_282252_ + 1 o p_281351_ + 2 o p_282537_ + 3 o p_281589_ + aw_ ()V m_7379_ + b (Lezb;)Lenn; m_101076_ + static + 0 o p_101077_ + b (Lezb$f;)V m_101074_ + 0 o p_101075_ + b ()V m_7856_ + b (Lepi;)V m_101058_ + 0 o p_101059_ + c (Lezb;)Lenn; m_101083_ + static + 0 o p_101084_ + d (Lezb;)Lenn; m_101085_ + static + 0 o p_101086_ + e (Lezb;)Lenn; m_101088_ + static + 0 o p_101089_ + f (Lezb;)Lenn; m_101090_ + static + 0 o p_101091_ + g (Lezb;)Lenn; m_170209_ + static + 0 o p_170210_ + h (Lezb;)Leov; m_170211_ + static + 0 o p_170212_ + l ()V m_101094_ +ezb$a net/minecraft/client/gui/screens/worldselection/EditGameRulesScreen$BooleanRuleEntry + a f_101097_ + d f_101098_ + (Lezb;Lsw;Ljava/util/List;Ljava/lang/String;Lcmi$a;)V + 0 o p_101100_ + 1 o p_101101_ + 2 o p_101102_ + 3 o p_101103_ + 4 o p_101104_ + a (Ljava/lang/String;Lepp;)Ltj; m_170217_ + static + 0 o p_170218_ + 1 o p_170219_ + a (Lcmi$a;Lepp;Ljava/lang/Boolean;)V m_170213_ + static + 0 o p_170214_ + 1 o p_170215_ + 2 o p_170216_ + a (Leox;IIIIIIIZF)V m_6311_ + 0 o p_281587_ + 1 o p_281471_ + 2 o p_281257_ + 3 o p_282541_ + 4 o p_282993_ + 5 o p_283543_ + 6 o p_281322_ + 7 o p_282930_ + 8 o p_283227_ + 9 o p_283364_ +ezb$b net/minecraft/client/gui/screens/worldselection/EditGameRulesScreen$CategoryRuleEntry + a f_101137_ + b f_101138_ + (Lezb;Lsw;)V + 0 o p_101140_ + 1 o p_101141_ + a (Leox;IIIIIIIZF)V m_6311_ + 0 o p_283335_ + 1 o p_283214_ + 2 o p_283476_ + 3 o p_281365_ + 4 o p_281817_ + 5 o p_283006_ + 6 o p_282893_ + 7 o p_282500_ + 8 o p_283421_ + 9 o p_282445_ + b ()Ljava/util/List; m_142437_ + i ()Ljava/util/List; m_6702_ +ezb$b$1 net/minecraft/client/gui/screens/worldselection/EditGameRulesScreen$CategoryRuleEntry$1 + a f_170221_ + (Lezb$b;)V + 0 o p_170223_ + b (Lesp;)V m_142291_ + 0 o p_170225_ + q ()Lesn$a; m_142684_ +ezb$c net/minecraft/client/gui/screens/worldselection/EditGameRulesScreen$EntryFactory + create (Lsw;Ljava/util/List;Ljava/lang/String;Lcmi$g;)Lezb$f; m_101154_ + 0 o p_101155_ + 1 o p_101156_ + 2 o p_101157_ + 3 o p_101158_ +ezb$d net/minecraft/client/gui/screens/worldselection/EditGameRulesScreen$GameRuleEntry + a f_101159_ + b f_101160_ + c f_101161_ + (Lezb;Ljava/util/List;Lsw;)V + 0 o p_101163_ + 1 o p_101164_ + 2 o p_101165_ + a (Leox;II)V m_280223_ + 0 o p_282711_ + 1 o p_281539_ + 2 o p_281414_ + b ()Ljava/util/List; m_142437_ + i ()Ljava/util/List; m_6702_ +ezb$e net/minecraft/client/gui/screens/worldselection/EditGameRulesScreen$IntegerRuleEntry + a f_101171_ + d f_101172_ + (Lezb;Lsw;Ljava/util/List;Ljava/lang/String;Lcmi$d;)V + 0 o p_101174_ + 1 o p_101175_ + 2 o p_101176_ + 3 o p_101177_ + 4 o p_101178_ + a (Lcmi$d;Ljava/lang/String;)V m_101179_ + 0 o p_101180_ + 1 o p_101181_ + a (Leox;IIIIIIIZF)V m_6311_ + 0 o p_281756_ + 1 o p_281882_ + 2 o p_281876_ + 3 o p_283136_ + 4 o p_283044_ + 5 o p_282526_ + 6 o p_282433_ + 7 o p_281816_ + 8 o p_282227_ + 9 o p_281751_ +ezb$f net/minecraft/client/gui/screens/worldselection/EditGameRulesScreen$RuleEntry + a f_101193_ + (Ljava/util/List;)V + 0 o p_194062_ +ezb$g net/minecraft/client/gui/screens/worldselection/EditGameRulesScreen$RuleList + a f_101200_ + (Lezb;Lcmi;)V + 0 o p_101202_ + 1 o p_101203_ + a (Ljava/util/Map$Entry;)V m_101209_ + 0 o p_101210_ + a (Leox;IIF)V m_88315_ + 0 o p_283604_ + 1 o p_281425_ + 2 o p_282248_ + 3 o p_281463_ + b (Ljava/util/Map$Entry;)V m_170228_ + 0 o p_170229_ +ezb$g$1 net/minecraft/client/gui/screens/worldselection/EditGameRulesScreen$RuleList$1 + a f_101213_ + b f_101214_ + c f_101215_ + d f_101216_ + (Lezb$g;Lezb;Lcmi;Ljava/util/Map;)V + 0 o p_101218_ + 1 o p_101219_ + 2 o p_101220_ + 3 o p_101221_ + a (Lcmi$b;)Ljava/util/Map; m_101222_ + static + 0 o p_101223_ + a (Lcmi$e;Lezb$c;)V m_101224_ + 0 o p_101225_ + 1 o p_101226_ + a (Lsw;Ljava/util/List;Ljava/lang/String;Lcmi$d;)Lezb$f; m_101232_ + 0 o p_101233_ + 1 o p_101234_ + 2 o p_101235_ + 3 o p_101236_ + a (Lsw;Ljava/util/List;Ljava/lang/String;Lcmi$a;)Lezb$f; m_101227_ + 0 o p_101228_ + 1 o p_101229_ + 2 o p_101230_ + 3 o p_101231_ + b (Lcmi$e;Lcmi$f;)V m_6891_ + 0 o p_101238_ + 1 o p_101239_ + c (Lcmi$e;Lcmi$f;)V m_6894_ + 0 o p_101241_ + 1 o p_101242_ +ezc net/minecraft/client/gui/screens/worldselection/EditWorldScreen + a f_101243_ + b f_101245_ + c f_101246_ + k f_101247_ + l f_101248_ + m f_101249_ + ()V + static + (Lit/unimi/dsi/fastutil/booleans/BooleanConsumer;Ldyy$c;)V + 0 o p_101252_ + 1 o p_101253_ + a (Ldyy;Ljava/lang/String;)V m_101260_ + static + 0 o p_101261_ + 1 o p_101262_ + a (Ljava/lang/String;)V m_279857_ + 0 o p_280914_ + a (Lepi;)V m_101272_ + 0 o p_101273_ + a (Lenn;II)V m_6574_ + 0 o p_101269_ + 1 o p_101270_ + 2 o p_101271_ + a (ZZ)V m_279855_ + 0 o p_280911_ + 1 o p_280912_ + a (Ldyy$c;)Z m_101258_ + static + 0 o p_101259_ + a (Leox;IIF)V m_88315_ + 0 o p_281742_ + 1 o p_101265_ + 2 o p_101266_ + 3 o p_101267_ + a (Ljava/nio/file/Path;)Z m_182586_ + static + 0 o p_182587_ + aw_ ()V m_7379_ + b (Ljava/nio/file/Path;)V m_182593_ + static + 0 o p_182594_ + b ()V m_7856_ + b (Lepi;)V m_279856_ + 0 o p_280913_ + c (Lepi;)V m_279858_ + 0 o p_280915_ + d (Lepi;)V m_101291_ + 0 o p_101292_ + e (Lepi;)V m_101293_ + 0 o p_101294_ + f ()V m_86600_ + f (Lepi;)V m_279859_ + 0 o p_280916_ + g (Lepi;)V m_101279_ + 0 o p_101280_ + l ()V m_101295_ +ezd net/minecraft/client/gui/screens/worldselection/ExperimentsScreen + a f_268424_ + b f_268430_ + c f_268615_ + k f_268626_ + l f_268670_ + m f_268531_ + (Leuq;Laki;Ljava/util/function/Consumer;)V + 0 o p_270165_ + 1 o p_270308_ + 2 o p_270392_ + a (Lezd;Leqt;)V m_269193_ + static + 0 o p_270281_ + 1 o p_270313_ + a (Ljava/util/List;Ljava/util/List;Lakg;Ljava/lang/Boolean;)V m_269086_ + static + 0 o p_270821_ + 1 o p_270786_ + 2 o p_270540_ + 3 o p_270780_ + a (Lepi;)V m_273999_ + 0 o p_274702_ + a (Lakg;Ljava/lang/Boolean;)V m_269201_ + 0 o p_270384_ + 1 o p_270491_ + a (Lakg;)Lsw; m_269049_ + static + 0 o p_270861_ + a (Lezh$a;Lakg;Ljava/lang/Boolean;)V m_269499_ + 0 o p_270347_ + 1 o p_270880_ + 2 o p_270874_ + a (Leox;IIF)V m_88315_ + 0 o p_283515_ + 1 o p_283170_ + 2 o p_283248_ + 3 o p_283106_ + aG_ ()V m_267719_ + aw_ ()V m_7379_ + b (Lakg;)Z m_269286_ + 0 o p_270989_ + b ()V m_7856_ + b (Lepi;)V m_269497_ + 0 o p_270336_ + l ()V m_269544_ +eze net/minecraft/client/gui/screens/worldselection/OptimizeWorldScreen + a f_101298_ + b f_101299_ + c f_101300_ + k f_101301_ + ()V + static + (Lit/unimi/dsi/fastutil/booleans/BooleanConsumer;Lcom/mojang/datafixers/DataFixer;Ldyy$c;Lcmq;ZLhr;)V + 0 o p_251295_ + 1 o p_250489_ + 2 o p_248781_ + 3 o p_251180_ + 4 o p_250358_ + 5 o p_248690_ + a (Lit/unimi/dsi/fastutil/objects/Object2IntOpenCustomHashMap;)V m_101323_ + static + 0 o p_101324_ + a (Lenn;Lit/unimi/dsi/fastutil/booleans/BooleanConsumer;Lcom/mojang/datafixers/DataFixer;Ldyy$c;Z)Leze; m_101315_ + static + 0 o p_101316_ + 1 o p_101317_ + 2 o p_101318_ + 3 o p_101319_ + 4 o p_101320_ + a (Lepi;)V m_101321_ + 0 o p_101322_ + a (Leox;IIF)V m_88315_ + 0 o p_281829_ + 1 o p_101312_ + 2 o p_101313_ + 3 o p_101314_ + aw_ ()V m_7379_ + ax_ ()V m_7861_ + b ()V m_7856_ + f ()V m_86600_ +ezf net/minecraft/client/gui/screens/worldselection/PresetEditor + a f_232950_ + ()V + static + a (Ldqd;Lhs$b;Ldif;)Ldif; m_254761_ + static + 0 o p_255453_ + 1 o p_255454_ + 2 o p_255455_ + a (Lhe;)Lezi$a; m_232952_ + static + 0 o p_248835_ + a (Leza;Lezi;)Leuq; m_232961_ + static + 0 o p_232962_ + 1 o p_232963_ + a (Lhe;Lhs$b;Ldif;)Ldif; m_257080_ + static + 0 o p_258136_ + 1 o p_258137_ + 2 o p_258138_ + a (Leza;Ldqd;)V m_267516_ + static + 0 o p_267858_ + 1 o p_267859_ + a (Ldqd;)Lezi$a; m_232967_ + static + 0 o p_250871_ + a (Leza;Lhe;)V m_267517_ + static + 0 o p_267860_ + 1 o p_267861_ + b (Leza;Lezi;)Leuq; m_254760_ + static + 0 o p_232974_ + 1 o p_232975_ + createEditScreen (Leza;Lezi;)Leuq; m_232976_ + 0 o p_232977_ + 1 o p_232978_ +ezg net/minecraft/client/gui/screens/worldselection/SelectWorldScreen + a f_244251_ + b f_101329_ + c f_101330_ + k f_170237_ + l f_101332_ + m f_101333_ + n f_101334_ + o f_101335_ + p f_101336_ + ()V + static + (Leuq;)V + 0 o p_101338_ + a (Ljava/lang/String;)V m_232986_ + 0 o p_232980_ + a (Lepi;)V m_244686_ + 0 o p_247821_ + a (CI)Z m_5534_ + 0 o p_101340_ + 1 o p_101341_ + a (ZZ)V m_276090_ + 0 o p_276122_ + 1 o p_276113_ + a (III)Z m_7933_ + 0 o p_101347_ + 1 o p_101348_ + 2 o p_101349_ + a (Leox;IIF)V m_88315_ + 0 o p_282382_ + 1 o p_281534_ + 2 o p_281859_ + 3 o p_283289_ + aw_ ()V m_7379_ + ax_ ()V m_7861_ + b ()V m_7856_ + b (Lepi;)V m_279860_ + 0 o p_280917_ + c (Lepi;)V m_101375_ + 0 o p_101373_ + d (Lepi;)V m_101377_ + 0 o p_101376_ + e (Lepi;)V m_232981_ + 0 o p_101378_ + f ()V m_86600_ + f (Lepi;)V m_279861_ + 0 o p_280918_ + g (Lepi;)V m_232979_ + 0 o p_232984_ +ezh net/minecraft/client/gui/screens/worldselection/SwitchGrid + a f_267419_ + b f_267482_ + (Ljava/util/List;)V + 0 o p_268257_ + a ()V m_267819_ + a (I)Lezh$a; m_267742_ + static + 0 o p_268344_ +ezh$a net/minecraft/client/gui/screens/worldselection/SwitchGrid$Builder + a f_267465_ + b f_267393_ + c f_267428_ + d f_268625_ + e f_268635_ + f f_268462_ + (I)V + 0 o p_267987_ + a (Ljava/util/function/Consumer;)Lezh; m_267588_ + 0 o p_268301_ + a (IZ)Lezh$a; m_269141_ + 0 o p_270730_ + 1 o p_270594_ + a ()V m_269089_ + a (Lsw;Ljava/util/function/BooleanSupplier;Ljava/util/function/Consumer;)Lezh$d; m_267583_ + 0 o p_268004_ + 1 o p_268017_ + 2 o p_268320_ + a (I)Lezh$a; m_267620_ + 0 o p_267998_ + b (I)Lezh$a; m_269119_ + 0 o p_270750_ +ezh$b net/minecraft/client/gui/screens/worldselection/SwitchGrid$InfoUnderneathSettings + a f_268439_ + b f_268690_ + (IZ)V + 0 o f_268439_ + 1 o f_268690_ + a ()I f_268439_ + b ()Z f_268690_ + equals (Ljava/lang/Object;)Z equals + 0 o p_270770_ + hashCode ()I hashCode + toString ()Ljava/lang/String; toString +ezh$c net/minecraft/client/gui/screens/worldselection/SwitchGrid$LabeledSwitch + a f_267423_ + b f_267403_ + c f_267483_ + (Lepp;Ljava/util/function/BooleanSupplier;Ljava/util/function/BooleanSupplier;)V + 0 o f_267423_ + 1 o f_267403_ + 2 o f_267483_ + a ()V m_267626_ + b ()Lepp; f_267423_ + c ()Ljava/util/function/BooleanSupplier; f_267403_ + d ()Ljava/util/function/BooleanSupplier; f_267483_ + equals (Ljava/lang/Object;)Z equals + 0 o p_270340_ + hashCode ()I hashCode + toString ()Ljava/lang/String; toString +ezh$d net/minecraft/client/gui/screens/worldselection/SwitchGrid$SwitchBuilder + a f_267484_ + b f_267416_ + c f_267466_ + d f_267377_ + e f_267360_ + f f_267480_ + (Lsw;Ljava/util/function/BooleanSupplier;Ljava/util/function/Consumer;I)V + 0 o p_268282_ + 1 o p_268294_ + 2 o p_268132_ + 3 o p_268250_ + a (Ljava/util/function/BooleanSupplier;)Lezh$d; m_267757_ + 0 o p_267966_ + a (Lezh$a;Lesf;ILezh$b;)V m_268788_ + 0 o p_269646_ + 1 o p_269647_ + 2 o p_269648_ + 3 o p_269649_ + a (Lsw;)Lezh$d; m_267664_ + 0 o p_268240_ + a (Leqp;Ljava/lang/Boolean;)Leqp; m_268786_ + static + 0 o p_269643_ + 1 o p_269644_ + a (Lezh$a;Lesf;I)Lezh$c; m_269062_ + 0 o p_270513_ + 1 o p_271004_ + 2 o p_270506_ + a (Lepp;Ljava/lang/Boolean;)V m_267807_ + 0 o p_267942_ + 1 o p_268251_ + a (Lepp;)Ltj; m_267723_ + 0 o p_268230_ + b (Lepp;)Ltj; m_268787_ + 0 o p_269645_ +ezi net/minecraft/client/gui/screens/worldselection/WorldCreationContext + a f_244272_ + b f_244375_ + c f_243796_ + d f_243708_ + e f_232990_ + f f_243842_ + (Ldig;Lhl;Lada;Lcnf;)V + 0 o p_249130_ + 1 o p_248513_ + 2 o p_251786_ + 3 o p_248593_ + (Ldii;Ldif;Lhl;Lada;Lcnf;)V + 0 o p_249836_ + 1 o p_250641_ + 2 o p_251794_ + 3 o p_250560_ + 4 o p_248539_ + (Ldii;Lhr;Ldif;Lhl;Lada;Lcnf;)V + 0 o f_244272_ + 1 o f_244375_ + 2 o f_243796_ + 3 o f_243708_ + 4 o f_232990_ + 5 o f_243842_ + a (Lezi$b;)Lezi; m_246527_ + 0 o p_252288_ + a (Lezi$a;)Lezi; m_245713_ + 0 o p_250676_ + a (Ldii;Ldif;)Lezi; m_245725_ + 0 o p_249492_ + 1 o p_250298_ + a ()Lhs$b; m_246480_ + b ()Ldii; f_244272_ + c ()Lhr; f_244375_ + d ()Ldif; f_243796_ + e ()Lhl; f_243708_ + equals (Ljava/lang/Object;)Z equals + 0 o p_233007_ + f ()Lada; f_232990_ + g ()Lcnf; f_243842_ + hashCode ()I hashCode + toString ()Ljava/lang/String; toString +ezi$a net/minecraft/client/gui/screens/worldselection/WorldCreationContext$DimensionsUpdater +ezi$b net/minecraft/client/gui/screens/worldselection/WorldCreationContext$OptionsModifier +ezj net/minecraft/client/gui/screens/worldselection/WorldCreationUiState + a f_275748_ + b f_267497_ + c f_267359_ + d f_267395_ + e f_267425_ + f f_267470_ + g f_267382_ + h f_267386_ + i f_267455_ + j f_275760_ + k f_275749_ + l f_267426_ + m f_267491_ + n f_267439_ + o f_267369_ + p f_267407_ + ()V + static + (Ljava/nio/file/Path;Lezi;Ljava/util/Optional;Ljava/util/OptionalLong;)V + 0 o p_276024_ + 1 o p_276050_ + 2 o p_276022_ + 3 o p_276014_ + a (Lezi;Lacp;)Ljava/util/Optional; m_267788_ + static + 0 o p_268284_ + 1 o p_267974_ + a (Ljava/lang/String;)V m_267649_ + 0 o p_268167_ + a (Lhr;Lanl;)Ljava/util/Optional; m_267811_ + static + 0 o p_268296_ + 1 o p_268097_ + a (Z)V m_267601_ + 0 o p_267969_ + a (Lezi$a;)V m_267717_ + 0 o p_268314_ + a (Lezi;)V m_267692_ + 0 o p_268313_ + a (Lezj$b;)V m_267576_ + 0 o p_268117_ + a (Lhi$c;)Ljava/util/List; m_267627_ + static + 0 o p_268149_ + a (Lbdu;)V m_267754_ + 0 o p_268032_ + a (ZLdii;)Ldii; m_267720_ + static + 0 o p_268348_ + 1 o p_267945_ + a ()V m_267758_ + a (Lhe;Lhs$b;Ldif;)Ldif; m_267798_ + static + 0 o p_268302_ + 1 o p_268134_ + 2 o p_268035_ + a (Lhr;)Ljava/util/List; m_267658_ + static + 0 o p_268091_ + a (Ljava/util/function/Consumer;)V m_267755_ + 0 o p_267938_ + a (Ljava/util/List;)Z m_267813_ + static + 0 o p_268066_ + a (Lezi;Ljava/util/Optional;)Ljava/util/Optional; m_267777_ + static + 0 o p_268025_ + 1 o p_268184_ + a (Lezj$a;)V m_267616_ + 0 o p_268231_ + a (Lcnf;)Z m_267710_ + 0 o p_268016_ + a (Lcmi;)V m_267656_ + 0 o p_268203_ + a (Ldii;)Ldii; m_267677_ + 0 o p_267957_ + b (ZLdii;)Ldii; m_267822_ + static + 0 o p_268307_ + 1 o p_268360_ + b (Ljava/lang/String;)V m_267759_ + 0 o p_268100_ + b (Z)V m_267770_ + 0 o p_268090_ + b ()Ljava/lang/String; m_267597_ + c ()Ljava/lang/String; m_275837_ + c (Z)V m_267666_ + 0 o p_268236_ + c (Ljava/lang/String;)Ljava/lang/String; m_275848_ + 0 o p_276032_ + d ()Lezj$a; m_267761_ + e ()Lbdu; m_267816_ + f ()Z m_267790_ + g ()Z m_267823_ + h ()Ljava/lang/String; m_267707_ + i ()Z m_267615_ + j ()Z m_267593_ + k ()Lezi; m_267573_ + l ()Z m_267735_ + m ()Lezj$b; m_267828_ + n ()Lezf; m_267744_ + o ()Ljava/util/List; m_267815_ + p ()Ljava/util/List; m_267674_ + q ()Lcmi; m_267721_ + r ()V m_267608_ +ezj$a net/minecraft/client/gui/screens/worldselection/WorldCreationUiState$SelectedGameMode + a SURVIVAL + b HARDCORE + c CREATIVE + d DEBUG + e f_267485_ + f f_267396_ + g f_267442_ + h $VALUES + ()V + static + (Ljava/lang/String;ILjava/lang/String;Lcmj;)V + 0 o p_268044_ + 1 o p_268287_ + 2 o p_268033_ + 3 o p_268252_ + a ()Lsw; m_267564_ + b ()[Lezj$a; m_267789_ + static + valueOf (Ljava/lang/String;)Lezj$a; valueOf + static + 0 o p_268027_ + values ()[Lezj$a; values + static +ezj$b net/minecraft/client/gui/screens/worldselection/WorldCreationUiState$WorldTypeEntry + a f_267398_ + b f_267418_ + ()V + static + (Lhe;)V + 0 o f_267398_ + a (Lacp;)Z m_267678_ + static + 0 o p_268224_ + a ()Lsw; m_267572_ + b ()Z m_267589_ + b (Lacp;)Lsw; m_267580_ + static + 0 o p_268048_ + c ()Lhe; f_267398_ + equals (Ljava/lang/Object;)Z equals + 0 o p_268349_ + hashCode ()I hashCode + toString ()Ljava/lang/String; toString +ezk net/minecraft/client/gui/screens/worldselection/WorldOpenFlows + a f_233088_ + b f_233089_ + c f_233090_ + ()V + static + (Lenn;Ldyy;)V + 0 o p_233093_ + 1 o p_233094_ + a (Leuq;Ljava/lang/String;ZZ)V m_233145_ + 0 o p_233146_ + 1 o p_233147_ + 2 o p_233148_ + 3 o p_233149_ + a (Leuq;Ljava/lang/String;Z)V m_233136_ + 0 o p_233137_ + 1 o p_233138_ + 2 o p_233139_ + a (Ljava/lang/String;Ljava/lang/Runnable;ZZ)V m_233169_ + 0 o p_233170_ + 1 o p_233171_ + 2 o p_233172_ + 3 o p_233173_ + a (Ljava/util/function/Function;Lcmq;Ldii;Ladj$a;)Ladj$b; m_257083_ + static + 0 o p_258142_ + 1 o p_258143_ + 2 o p_258144_ + 3 o p_258145_ + a (Ljava/lang/Runnable;Lenn;Leza;Z)V m_233150_ + static + 0 o p_233151_ + 1 o p_233152_ + 2 o p_233153_ + 3 o p_233154_ + a (Ladj$d;Ladj$f;Ladj$e;)Ljava/lang/Object; m_246486_ + 0 o p_250997_ + 1 o p_251759_ + 2 o p_249635_ + a (Leuq;Ljava/lang/String;ZLjava/lang/Runnable;)V m_233140_ + 0 o p_233141_ + 1 o p_233142_ + 2 o p_233143_ + 3 o p_233144_ + a (Ldyy$c;Lada;Lhl;Ldze;)V m_245064_ + 0 o p_250919_ + 1 o p_248897_ + 2 o p_250801_ + 3 o p_251654_ + a (Lenn;Leza;Lcom/mojang/serialization/Lifecycle;Ljava/lang/Runnable;Z)V m_269260_ + static + 0 o p_270593_ + 1 o p_270733_ + 2 o p_270539_ + 3 o p_270158_ + 4 o p_270709_ + a (Lakn;Lada;Lhl;Lezk$a;)Lcom/mojang/datafixers/util/Pair; m_244696_ + static + 0 o p_247840_ + 1 o p_247841_ + 2 o p_247842_ + 3 o p_247843_ + a (Ljava/lang/String;)Ldyy$c; m_233155_ + 0 o p_233156_ + a (Ljava/lang/Throwable;)Ljava/lang/Void; m_233174_ + 0 o p_233175_ + a (Ljava/lang/String;Lcmq;Ldii;Ljava/util/function/Function;)V m_233157_ + 0 o p_233158_ + 1 o p_233159_ + 2 o p_249243_ + 3 o p_249252_ + a (Leuq;)V m_233131_ + 0 o p_233132_ + a (Ldyy$c;)Lcom/mojang/datafixers/util/Pair; m_246225_ + 0 o p_249540_ + a (Ldyy$c;ZLaki;)Ladk; m_233122_ + 0 o p_233123_ + 1 o p_233124_ + 2 o p_233125_ + a (Ljava/lang/Void;)Ljava/lang/Boolean; m_233176_ + static + 0 o p_233177_ + a (Ljava/lang/String;Ldyy$c;Laki;Ladk;Leuq;Ljava/lang/Boolean;)V m_260762_ + 0 o p_261376_ + 1 o p_261377_ + 2 o p_261378_ + 3 o p_261379_ + 4 o p_261380_ + 5 o p_233168_ + a (Ldyy$c;Ljava/lang/String;)V m_233116_ + static + 0 o p_233117_ + 1 o p_233118_ + a ()Ljava/util/concurrent/CompletableFuture; m_233095_ + a (Ldyy$c;Z)Ladk; m_233119_ + 0 o p_233120_ + 1 o p_233121_ + a (Ldyy$c;Ladj$a;)Ladj$b; m_244700_ + static + 0 o p_247856_ + 1 o p_247857_ + a (Leuq;Ljava/lang/String;)V m_233133_ + 0 o p_233134_ + 1 o p_233135_ + b (Ldyy$c;ZLaki;)Ladj$d; m_247188_ + 0 o p_249986_ + 1 o p_248615_ + 2 o p_249167_ + b (Ldyy$c;Ladj$a;)Ladj$b; m_244698_ + static + 0 o p_247850_ + 1 o p_247851_ + b (Leuq;Ljava/lang/String;Z)V m_233178_ + 0 o p_233179_ + 1 o p_233180_ + 2 o p_233181_ + b ()V m_275780_ + b (Ljava/lang/Throwable;)Ljava/util/concurrent/CompletionStage; m_233182_ + 0 o p_233183_ +ezk$a net/minecraft/client/gui/screens/worldselection/WorldOpenFlows$1Data + a f_244166_ + b f_244534_ + c f_244151_ + (Lcmq;Ldii;Lhr;)V + 0 o f_244166_ + 1 o f_244534_ + 2 o f_244151_ + a ()Lcmq; f_244166_ + b ()Ldii; f_244534_ + c ()Lhr; f_244151_ + equals (Ljava/lang/Object;)Z equals + 0 o p_249359_ + hashCode ()I hashCode + toString ()Ljava/lang/String; toString +ezl net/minecraft/client/gui/screens/worldselection/WorldSelectionList + a f_101645_ + l f_101646_ + m f_101647_ + n f_101648_ + o f_101649_ + p f_101650_ + q f_101651_ + r f_101652_ + s f_101653_ + t f_194113_ + u f_101654_ + v f_238666_ + w f_238575_ + x f_238624_ + y f_233184_ + ()V + static + (Lezg;Lenn;IIIIILjava/lang/String;Lezl;)V + 0 o p_239540_ + 1 o p_239541_ + 2 o p_239542_ + 3 o p_239543_ + 4 o p_239544_ + 5 o p_239545_ + 6 o p_239546_ + 7 o p_239547_ + 8 o p_239548_ + a (Ljava/lang/String;)V m_239900_ + 0 o p_239901_ + a (Lepc$a;)V m_6987_ + 0 o p_101671_ + a (Lezl;)Lenn; m_233191_ + static + 0 o p_233192_ + a (Ljava/util/List;)V m_239664_ + 0 o p_239665_ + a (Lezl$a;)V m_6987_ + 0 o p_233190_ + a (Ljava/lang/String;Ljava/util/List;)V m_233198_ + 0 o p_233199_ + 1 o p_233200_ + a (Ljava/lang/String;Ldyz;)Z m_233195_ + 0 o p_233196_ + 1 o p_233197_ + a (III)Z m_7933_ + 0 o p_289017_ + 1 o p_288966_ + 2 o p_289020_ + a (Lsw;)V m_233211_ + 0 o p_233212_ + a (Ljava/lang/Throwable;)Ljava/util/List; m_233201_ + 0 o p_233202_ + a (Leox;IIF)V m_88315_ + 0 o p_283323_ + 1 o p_282039_ + 2 o p_283339_ + 3 o p_281472_ + b ()I m_5759_ + b (Lesp;)V m_142291_ + 0 o p_233188_ + c ()I m_5756_ + d ()Ljava/util/Optional; m_101684_ + e ()Lezg; m_101685_ + j ()V m_93516_ + v ()Ljava/util/List; m_239987_ + w ()V m_233206_ + x ()Ljava/util/concurrent/CompletableFuture; m_233213_ + y ()V m_233214_ + z ()V m_233215_ +ezl$a net/minecraft/client/gui/screens/worldselection/WorldSelectionList$Entry + ()V + b ()Z m_214209_ + close ()V close +ezl$b net/minecraft/client/gui/screens/worldselection/WorldSelectionList$LoadingHeader + a f_233218_ + b f_233219_ + ()V + static + (Lenn;)V + 0 o p_233222_ + a ()Lsw; m_142172_ + a (Leox;IIIIIIIZF)V m_6311_ + 0 o p_282319_ + 1 o p_283207_ + 2 o p_281352_ + 3 o p_283332_ + 4 o p_282400_ + 5 o p_282912_ + 6 o p_282760_ + 7 o p_281344_ + 8 o p_283655_ + 9 o p_283696_ + b ()Z m_214209_ +ezl$c net/minecraft/client/gui/screens/worldselection/WorldSelectionList$WorldListEntry + a f_101692_ + b f_170312_ + c f_170313_ + d f_170314_ + e f_170315_ + f f_170316_ + g f_170317_ + h f_170318_ + i f_170319_ + j f_101693_ + k f_101694_ + l f_101695_ + m f_101698_ + n f_101697_ + o f_101699_ + (Lezl;Lezl;Ldyz;)V + 0 o p_101701_ + 1 o p_101702_ + 2 o p_101703_ + a (Ldyy$c;Ljava/lang/String;Z)V m_233241_ + 0 o p_233242_ + 1 o p_233243_ + 2 o p_233244_ + a ()Lsw; m_142172_ + a (Leox;IIIIIIIZF)V m_6311_ + 0 o p_281612_ + 1 o p_281353_ + 2 o p_283181_ + 3 o p_282820_ + 4 o p_282420_ + 5 o p_281855_ + 6 o p_283204_ + 7 o p_283025_ + 8 o p_283396_ + 9 o p_282938_ + a (DDI)Z m_6375_ + 0 o p_101706_ + 1 o p_101707_ + 2 o p_101708_ + a (ZZ)V m_289841_ + 0 o p_289912_ + 1 o p_289913_ + a (Lcmq;Lezi;Ljava/nio/file/Path;Z)V m_275781_ + 0 o p_275879_ + 1 o p_275880_ + 2 o p_275881_ + 3 o p_275882_ + b (Z)V m_170321_ + 0 o p_170322_ + b ()Z m_214209_ + c (Z)V m_101740_ + 0 o p_101741_ + close ()V close + d ()V m_101704_ + e ()V m_101738_ + f ()V m_170323_ + g ()V m_101739_ + h ()V m_101743_ + i ()Ljava/lang/String; m_170324_ + j ()V m_289856_ + k ()V m_101744_ + l ()V m_101745_ + m ()V m_101746_ + n ()V m_233245_ + o ()V m_170327_ +ezm net/minecraft/client/gui/screens/worldselection/package-info +ezn net/minecraft/client/gui/spectator/PlayerMenuItem + a f_101752_ + b f_101753_ + c f_101754_ + (Lcom/mojang/authlib/GameProfile;)V + 0 o p_101756_ + a (Leox;FI)V m_6252_ + 0 o p_282282_ + 1 o p_282686_ + 2 o p_282849_ + a (Lezp;)V m_7608_ + 0 o p_101762_ + aI_ ()Lsw; m_7869_ + aJ_ ()Z m_7304_ +ezo net/minecraft/client/gui/spectator/RootSpectatorMenuCategory + a f_101765_ + b f_101766_ + ()V + static + ()V + a ()Ljava/util/List; m_5919_ + b ()Lsw; m_5878_ +ezp net/minecraft/client/gui/spectator/SpectatorMenu + a f_101771_ + b f_101772_ + c f_101773_ + d f_101774_ + e f_101775_ + f f_170328_ + g f_101776_ + h f_101777_ + i f_101778_ + j f_101779_ + k f_101780_ + l f_101781_ + m f_101782_ + ()V + static + (Lezs;)V + 0 o p_101785_ + a ()Ljava/util/List; m_101786_ + a (I)Lezr; m_101787_ + 0 o p_101788_ + a (Lezq;)V m_101794_ + 0 o p_101795_ + b ()Lezr; m_101796_ + b (I)V m_101797_ + 0 o p_101798_ + c ()Lezq; m_101799_ + d ()V m_101800_ + e ()I m_101801_ + f ()Lezt; m_101802_ +ezp$1 net/minecraft/client/gui/spectator/SpectatorMenu$1 + ()V + a (Leox;FI)V m_6252_ + 0 o p_283652_ + 1 o p_101809_ + 2 o p_101810_ + a (Lezp;)V m_7608_ + 0 o p_101812_ + aI_ ()Lsw; m_7869_ + aJ_ ()Z m_7304_ +ezp$a net/minecraft/client/gui/spectator/SpectatorMenu$CloseSpectatorItem + ()V + a (Leox;FI)V m_6252_ + 0 o p_283113_ + 1 o p_282295_ + 2 o p_282511_ + a (Lezp;)V m_7608_ + 0 o p_101823_ + aI_ ()Lsw; m_7869_ + aJ_ ()Z m_7304_ +ezp$b net/minecraft/client/gui/spectator/SpectatorMenu$ScrollMenuItem + a f_101826_ + b f_101827_ + (IZ)V + 0 o p_101829_ + 1 o p_101830_ + a (Leox;FI)V m_6252_ + 0 o p_281376_ + 1 o p_282065_ + 2 o p_282653_ + a (Lezp;)V m_7608_ + 0 o p_101836_ + aI_ ()Lsw; m_7869_ + aJ_ ()Z m_7304_ +ezq net/minecraft/client/gui/spectator/SpectatorMenuCategory + a ()Ljava/util/List; m_5919_ + b ()Lsw; m_5878_ +ezr net/minecraft/client/gui/spectator/SpectatorMenuItem + a (Leox;FI)V m_6252_ + 0 o p_282591_ + 1 o p_101840_ + 2 o p_101841_ + a (Lezp;)V m_7608_ + 0 o p_101842_ + aI_ ()Lsw; m_7869_ + aJ_ ()Z m_7304_ +ezs net/minecraft/client/gui/spectator/SpectatorMenuListener + a (Lezp;)V m_7613_ + 0 o p_101843_ +ezt net/minecraft/client/gui/spectator/categories/SpectatorPage + a f_170329_ + b f_101845_ + c f_101846_ + (Ljava/util/List;I)V + 0 o p_170331_ + 1 o p_170332_ + a (I)Lezr; m_101851_ + 0 o p_101852_ + a ()I m_101853_ +ezu net/minecraft/client/gui/spectator/categories/TeleportToPlayerMenuCategory + a f_101854_ + b f_101855_ + c f_101856_ + d f_101857_ + ()V + static + (Ljava/util/Collection;)V + 0 o p_101861_ + ()V + a (Leox;FI)V m_6252_ + 0 o p_281992_ + 1 o p_281684_ + 2 o p_281889_ + a (Lffb;)Lezr; m_252581_ + static + 0 o p_253334_ + a ()Ljava/util/List; m_5919_ + a (Lezp;)V m_7608_ + 0 o p_101868_ + aI_ ()Lsw; m_7869_ + aJ_ ()Z m_7304_ + b ()Lsw; m_5878_ + b (Lffb;)Z m_252583_ + static + 0 o p_253336_ + c (Lffb;)Ljava/util/UUID; m_252582_ + static + 0 o p_253335_ +ezv net/minecraft/client/gui/spectator/categories/TeleportToTeamMenuCategory + a f_101875_ + b f_101876_ + c f_101877_ + ()V + static + ()V + a (Leox;FI)V m_6252_ + 0 o p_282933_ + 1 o p_283568_ + 2 o p_281803_ + a (Lenn;Lefg;)Ljava/util/List; m_257833_ + static + 0 o p_260258_ + 1 o p_259249_ + a ()Ljava/util/List; m_5919_ + a (Lezp;)V m_7608_ + 0 o p_101886_ + a (Lenn;Lefe;)Ljava/util/stream/Stream; m_257827_ + static + 0 o p_259756_ + 1 o p_260025_ + aI_ ()Lsw; m_7869_ + aJ_ ()Z m_7304_ + b ()Lsw; m_5878_ +ezv$a net/minecraft/client/gui/spectator/categories/TeleportToTeamMenuCategory$TeamSelectionItem + a f_101891_ + b f_256959_ + c f_101893_ + (Lefe;Ljava/util/List;Lacq;)V + 0 o p_259176_ + 1 o p_259231_ + 2 o p_260113_ + a (Leox;FI)V m_6252_ + 0 o p_283215_ + 1 o p_282946_ + 2 o p_283438_ + a (Lenn;Lefe;)Ljava/util/Optional; m_257760_ + static + 0 o p_260048_ + 1 o p_259058_ + a (Lezp;)V m_7608_ + 0 o p_101902_ + aI_ ()Lsw; m_7869_ + aJ_ ()Z m_7304_ +ezw net/minecraft/client/gui/spectator/categories/package-info +ezx net/minecraft/client/gui/spectator/package-info +ezy net/minecraft/client/main/GameConfig + a f_101905_ + b f_101906_ + c f_101907_ + d f_101908_ + e f_278410_ + (Lezy$d;Leha;Lezy$a;Lezy$b;Lezy$c;)V + 0 o p_279448_ + 1 o p_279368_ + 2 o p_279174_ + 3 o p_279138_ + 4 o p_279425_ +ezy$a net/minecraft/client/main/GameConfig$FolderData + a f_101916_ + b f_101917_ + c f_101918_ + d f_101919_ + (Ljava/io/File;Ljava/io/File;Ljava/io/File;Ljava/lang/String;)V + 0 o p_101921_ + 1 o p_101922_ + 2 o p_101923_ + 3 o p_101924_ + a ()Ljava/nio/file/Path; m_246261_ +ezy$b net/minecraft/client/main/GameConfig$GameData + a f_101926_ + b f_101927_ + c f_101928_ + d f_101929_ + e f_101930_ + (ZLjava/lang/String;Ljava/lang/String;ZZ)V + 0 o p_101932_ + 1 o p_101933_ + 2 o p_101934_ + 3 o p_101935_ + 4 o p_101936_ +ezy$c net/minecraft/client/main/GameConfig$QuickPlayData + a f_278493_ + b f_278449_ + c f_278424_ + d f_278402_ + (Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;)V + 0 o f_278493_ + 1 o f_278449_ + 2 o f_278424_ + 3 o f_278402_ + a ()Z m_278736_ + b ()Ljava/lang/String; f_278493_ + c ()Ljava/lang/String; f_278449_ + d ()Ljava/lang/String; f_278424_ + e ()Ljava/lang/String; f_278402_ + equals (Ljava/lang/Object;)Z equals + 0 o p_279161_ + hashCode ()I hashCode + toString ()Ljava/lang/String; toString +ezy$d net/minecraft/client/main/GameConfig$UserData + a f_101942_ + b f_101943_ + c f_101944_ + d f_101945_ + (Leoc;Lcom/mojang/authlib/properties/PropertyMap;Lcom/mojang/authlib/properties/PropertyMap;Ljava/net/Proxy;)V + 0 o p_101947_ + 1 o p_101948_ + 2 o p_101949_ + 3 o p_101950_ +ezz net/minecraft/client/main/SilentInitException + (Ljava/lang/String;)V + 0 o p_101979_ + (Ljava/lang/String;Ljava/lang/Throwable;)V + 0 o p_170334_ + 1 o p_170335_ +f com/mojang/math/MatrixUtil + a f_252537_ + b f_276163_ + ()V + static + ()V + a (Lorg/joml/Matrix3f;Lorg/joml/Matrix3f;Lorg/joml/Quaternionf;Lorg/joml/Quaternionf;)V m_276219_ + static + 0 o p_276262_ + 1 o p_276279_ + 2 o p_276314_ + 3 o p_276299_ + a (Lorg/joml/Matrix3f;)Lorg/apache/commons/lang3/tuple/Triple; m_253103_ + static + 0 o p_253947_ + a (Lorg/joml/Matrix3f;Lorg/joml/Matrix3f;)V m_276192_ + static + 0 o p_276319_ + 1 o p_276263_ + a (Lorg/joml/Matrix3f;I)Lorg/joml/Quaternionf; m_276221_ + static + 0 o p_276278_ + 1 o p_276269_ + a (FFF)Le; m_276207_ + static + 0 o p_276275_ + 1 o p_276276_ + 2 o p_276282_ + a (Lorg/joml/Matrix4f;F)Lorg/joml/Matrix4f; m_253023_ + static + 0 o p_254173_ + 1 o p_253864_ + a (FF)Le; m_252892_ + static + 0 o p_253897_ + 1 o p_254413_ +fa net/minecraft/commands/arguments/TemplateRotationArgument + ()V + a ()Lfa; m_234414_ + static + a (Lcom/mojang/brigadier/context/CommandContext;Ljava/lang/String;)Lcvz; m_234415_ + static + 0 o p_234416_ + 1 o p_234417_ +faa net/minecraft/client/main/package-info +fab net/minecraft/client/model/AbstractZombieModel + (Lfee;)V + 0 o p_170337_ + a (Lbfj;FFFFF)V m_6973_ + 0 o p_101986_ + 1 o p_101987_ + 2 o p_101988_ + 3 o p_101989_ + 4 o p_101990_ + 5 o p_101991_ + a (Lbfz;FFFFF)V m_6973_ + 0 o p_101993_ + 1 o p_101994_ + 2 o p_101995_ + 3 o p_101996_ + 4 o p_101997_ + 5 o p_101998_ + a (Lbwc;FFFFF)V m_6973_ + 0 o p_102001_ + 1 o p_102002_ + 2 o p_102003_ + 3 o p_102004_ + 4 o p_102005_ + 5 o p_102006_ + a (Lbwc;)Z m_7134_ + 0 o p_101999_ +fac net/minecraft/client/model/AgeableHierarchicalModel + a f_271539_ + b f_271124_ + (FF)V + 0 o p_273694_ + 1 o p_273578_ + (FFLjava/util/function/Function;)V + 0 o p_273130_ + 1 o p_273302_ + 2 o p_273636_ + a (Leij;Lein;IIFFFF)V m_7695_ + 0 o p_273029_ + 1 o p_272763_ + 2 o p_273665_ + 3 o p_272602_ + 4 o p_273190_ + 5 o p_273731_ + 6 o p_272609_ + 7 o p_273331_ +fad net/minecraft/client/model/AgeableListModel + a f_102007_ + b f_170338_ + f f_170339_ + g f_102010_ + h f_102011_ + i f_102012_ + (ZFF)V + 0 o p_102023_ + 1 o p_102024_ + 2 o p_102025_ + (Ljava/util/function/Function;ZFFFFF)V + 0 o p_102015_ + 1 o p_102016_ + 2 o p_102017_ + 3 o p_102018_ + 4 o p_102019_ + 5 o p_102020_ + 6 o p_102021_ + (ZFFFFF)V + 0 o p_102027_ + 1 o p_102028_ + 2 o p_102029_ + 3 o p_102030_ + 4 o p_102031_ + 5 o p_102032_ + ()V + a (Leij;Lein;IIFFFFLfee;)V m_102042_ + static + 0 o p_102043_ + 1 o p_102044_ + 2 o p_102045_ + 3 o p_102046_ + 4 o p_102047_ + 5 o p_102048_ + 6 o p_102049_ + 7 o p_102050_ + 8 o p_102051_ + a (Leij;Lein;IIFFFF)V m_7695_ + 0 o p_102034_ + 1 o p_102035_ + 2 o p_102036_ + 3 o p_102037_ + 4 o p_102038_ + 5 o p_102039_ + 6 o p_102040_ + 7 o p_102041_ + a ()Ljava/lang/Iterable; m_5607_ + b (Leij;Lein;IIFFFFLfee;)V m_102052_ + static + 0 o p_102053_ + 1 o p_102054_ + 2 o p_102055_ + 3 o p_102056_ + 4 o p_102057_ + 5 o p_102058_ + 6 o p_102059_ + 7 o p_102060_ + 8 o p_102061_ + b ()Ljava/lang/Iterable; m_5608_ + c (Leij;Lein;IIFFFFLfee;)V m_102062_ + static + 0 o p_102063_ + 1 o p_102064_ + 2 o p_102065_ + 3 o p_102066_ + 4 o p_102067_ + 5 o p_102068_ + 6 o p_102069_ + 7 o p_102070_ + 8 o p_102071_ + d (Leij;Lein;IIFFFFLfee;)V m_102072_ + static + 0 o p_102073_ + 1 o p_102074_ + 2 o p_102075_ + 3 o p_102076_ + 4 o p_102077_ + 5 o p_102078_ + 6 o p_102079_ + 7 o p_102080_ + 8 o p_102081_ +fae net/minecraft/client/model/AllayModel + a f_233302_ + b f_238177_ + f f_233303_ + g f_233304_ + h f_233305_ + i f_233306_ + j f_233307_ + k f_233308_ + l f_233309_ + m f_233310_ + (Lfee;)V + 0 o p_233312_ + a (Lbsp;FFFFF)V m_6973_ + 0 o p_233325_ + 1 o p_233326_ + 2 o p_233327_ + 3 o p_233328_ + 4 o p_233329_ + 5 o p_233330_ + a (Lbfj;FFFFF)V m_6973_ + 0 o p_233315_ + 1 o p_233316_ + 2 o p_233317_ + 3 o p_233318_ + 4 o p_233319_ + 5 o p_233320_ + a (Lbft;Leij;)V m_6002_ + 0 o p_233322_ + 1 o p_233323_ + a ()Lfee; m_142109_ + b ()Lfek; m_233340_ + static +faf net/minecraft/client/model/AnimationUtils + ()V + a (Lfee;Lfee;Lbgb;FF)V m_102091_ + static + 0 o p_102092_ + 1 o p_102093_ + 2 o p_102094_ + 3 o p_102095_ + 4 o p_102096_ + a (Lfee;Lfee;Lbfz;Z)V m_102086_ + static + 0 o p_102087_ + 1 o p_102088_ + 2 o p_102089_ + 3 o p_102090_ + a (Lfee;Lfee;Lfee;Z)V m_102097_ + static + 0 o p_102098_ + 1 o p_102099_ + 2 o p_102100_ + 3 o p_102101_ + a (Lfee;Lfee;F)V m_102082_ + static + 0 o p_102083_ + 1 o p_102084_ + 2 o p_102085_ + a (Lfee;Lfee;ZFF)V m_102102_ + static + 0 o p_102103_ + 1 o p_102104_ + 2 o p_102105_ + 3 o p_102106_ + 4 o p_102107_ + a (Lfee;FF)V m_170341_ + static + 0 o p_170342_ + 1 o p_170343_ + 2 o p_170344_ +fag net/minecraft/client/model/ArmedModel + a (Lbft;Leij;)V m_6002_ + 0 o p_102108_ + 1 o p_102109_ +fah net/minecraft/client/model/ArmorStandArmorModel + (Lfee;)V + 0 o p_170346_ + a (Lbux;FFFFF)V m_6973_ + 0 o p_102131_ + 1 o p_102132_ + 2 o p_102133_ + 3 o p_102134_ + 4 o p_102135_ + 5 o p_102136_ + a (Lbfj;FFFFF)V m_6973_ + 0 o p_102117_ + 1 o p_102118_ + 2 o p_102119_ + 3 o p_102120_ + 4 o p_102121_ + 5 o p_102122_ + a (Lfei;)Lfek; m_170347_ + static + 0 o p_170348_ + a (Lbfz;FFFFF)V m_6973_ + 0 o p_102124_ + 1 o p_102125_ + 2 o p_102126_ + 3 o p_102127_ + 4 o p_102128_ + 5 o p_102129_ +fai net/minecraft/client/model/ArmorStandModel + A f_102139_ + B f_102140_ + a f_170349_ + b f_170350_ + w f_170351_ + x f_170352_ + y f_170353_ + z f_170354_ + (Lfee;)V + 0 o p_170356_ + a (Lbux;FFFFF)V m_6973_ + 0 o p_102177_ + 1 o p_102178_ + 2 o p_102179_ + 3 o p_102180_ + 4 o p_102181_ + 5 o p_102182_ + a (Lbux;FFF)V m_6839_ + 0 o p_102172_ + 1 o p_102173_ + 2 o p_102174_ + 3 o p_102175_ + a (Lbfj;FFFFF)V m_6973_ + 0 o p_102150_ + 1 o p_102151_ + 2 o p_102152_ + 3 o p_102153_ + 4 o p_102154_ + 5 o p_102155_ + a (Lbfj;FFF)V m_6839_ + 0 o p_102145_ + 1 o p_102146_ + 2 o p_102147_ + 3 o p_102148_ + a (Lbfz;FFFFF)V m_6973_ + 0 o p_102165_ + 1 o p_102166_ + 2 o p_102167_ + 3 o p_102168_ + 4 o p_102169_ + 5 o p_102170_ + a (Lbft;Leij;)V m_6002_ + 0 o p_102157_ + 1 o p_102158_ + a (Lbfz;FFF)V m_6839_ + 0 o p_102160_ + 1 o p_102161_ + 2 o p_102162_ + 3 o p_102163_ + b ()Ljava/lang/Iterable; m_5608_ + c ()Lfek; m_170357_ + static +faj net/minecraft/client/model/AxolotlModel + a f_170358_ + b f_170359_ + f f_170360_ + g f_170361_ + h f_170362_ + i f_170363_ + j f_170364_ + k f_170365_ + l f_170366_ + m f_170367_ + n f_170368_ + (Lfee;)V + 0 o p_170370_ + a (Lbss;FF)V m_170390_ + 0 o p_170391_ + 1 o p_170392_ + 2 o p_170393_ + a (FFF)F m_170377_ + 0 o p_170378_ + 1 o p_170379_ + 2 o p_170380_ + a (F)V m_170372_ + 0 o p_170373_ + a ()Ljava/lang/Iterable; m_5607_ + a (Lfee;FFF)V m_170403_ + 0 o p_170404_ + 1 o p_170405_ + 2 o p_170406_ + 3 o p_170407_ + a (Lbss;)V m_170388_ + 0 o p_170389_ + a (Lbfj;FFFFF)V m_6973_ + 0 o p_170382_ + 1 o p_170383_ + 2 o p_170384_ + 3 o p_170385_ + 4 o p_170386_ + 5 o p_170387_ + a (Lfee;)Lorg/joml/Vector3f; m_253263_ + 0 o p_254355_ + a (Lbss;FFFFF)V m_6973_ + 0 o p_170395_ + 1 o p_170396_ + 2 o p_170397_ + 3 o p_170398_ + 4 o p_170399_ + 5 o p_170400_ + a (FF)F m_170374_ + 0 o p_170375_ + 1 o p_170376_ + a (Lfee;Lorg/joml/Vector3f;)V m_252862_ + 0 o p_254301_ + 1 o p_253783_ + b (F)V m_170412_ + 0 o p_170413_ + b ()Ljava/lang/Iterable; m_5608_ + b (FF)V m_170414_ + 0 o p_170415_ + 1 o p_170416_ + c ()Lfek; m_170417_ + static + c (FF)V m_170418_ + 0 o p_170419_ + 1 o p_170420_ + d (FF)V m_170422_ + 0 o p_170423_ + 1 o p_170424_ + d ()V m_170421_ +fak net/minecraft/client/model/BatModel + a f_170425_ + b f_102184_ + f f_102185_ + g f_102186_ + h f_102187_ + i f_102188_ + j f_102189_ + (Lfee;)V + 0 o p_170427_ + a (Lbfj;FFFFF)V m_6973_ + 0 o p_102193_ + 1 o p_102194_ + 2 o p_102195_ + 3 o p_102196_ + 4 o p_102197_ + 5 o p_102198_ + a (Lbrg;FFFFF)V m_6973_ + 0 o p_102200_ + 1 o p_102201_ + 2 o p_102202_ + 3 o p_102203_ + 4 o p_102204_ + 5 o p_102205_ + a ()Lfee; m_142109_ + b ()Lfek; m_170428_ + static +fal net/minecraft/client/model/BeeModel + a f_170430_ + b f_170431_ + f f_170432_ + g f_170433_ + h f_170434_ + i f_170435_ + j f_170436_ + k f_170437_ + l f_102206_ + m f_102208_ + n f_102209_ + o f_102210_ + p f_102211_ + q f_102212_ + r f_102213_ + s f_102214_ + t f_102215_ + u f_102216_ + (Lfee;)V + 0 o p_170439_ + a (Lbrm;FFF)V m_6839_ + 0 o p_102232_ + 1 o p_102233_ + 2 o p_102234_ + 3 o p_102235_ + a (Lbfj;FFFFF)V m_6973_ + 0 o p_102225_ + 1 o p_102226_ + 2 o p_102227_ + 3 o p_102228_ + 4 o p_102229_ + 5 o p_102230_ + a (Lbfj;FFF)V m_6839_ + 0 o p_102220_ + 1 o p_102221_ + 2 o p_102222_ + 3 o p_102223_ + a ()Ljava/lang/Iterable; m_5607_ + a (Lbrm;FFFFF)V m_6973_ + 0 o p_102237_ + 1 o p_102238_ + 2 o p_102239_ + 3 o p_102240_ + 4 o p_102241_ + 5 o p_102242_ + b ()Ljava/lang/Iterable; m_5608_ + c ()Lfek; m_170440_ + static +fam net/minecraft/client/model/BlazeModel + a f_170441_ + b f_102244_ + f f_102245_ + (Lfee;)V + 0 o p_170443_ + a (Lbfj;FFFFF)V m_6973_ + 0 o p_102250_ + 1 o p_102251_ + 2 o p_102252_ + 3 o p_102253_ + 4 o p_102254_ + 5 o p_102255_ + a (I)Ljava/lang/String; m_170445_ + static + 0 o p_170446_ + a (Lfee;I)Lfee; m_170447_ + static + 0 o p_170448_ + 1 o p_170449_ + a ()Lfee; m_142109_ + b ()Lfek; m_170444_ + static +fan net/minecraft/client/model/BoatModel + a f_170451_ + b f_170452_ + f f_170453_ + g f_170454_ + h f_170455_ + i f_170456_ + j f_170457_ + k f_170458_ + l f_170459_ + m f_170460_ + n f_102257_ + o f_102258_ + (Lfee;)V + 0 o p_250599_ + a (Lfee;)Lcom/google/common/collect/ImmutableList$Builder; m_245539_ + 0 o p_252283_ + a (Lcah;FFFFF)V m_6973_ + 0 o p_102269_ + 1 o p_102270_ + 2 o p_102271_ + 3 o p_102272_ + 4 o p_102273_ + 5 o p_102274_ + a (Lbfj;FFFFF)V m_6973_ + 0 o p_102262_ + 1 o p_102263_ + 2 o p_102264_ + 3 o p_102265_ + 4 o p_102266_ + 5 o p_102267_ + a (Lcah;ILfee;F)V m_170464_ + static + 0 o p_170465_ + 1 o p_170466_ + 2 o p_170467_ + 3 o p_170468_ + a (Lfen;)V m_246203_ + static + 0 o p_250572_ + a ()Lfek; m_246613_ + static + b ()Lcom/google/common/collect/ImmutableList; m_6195_ + c ()Lfee; m_102282_ + d ()Ljava/lang/Iterable; m_6195_ +fao net/minecraft/client/model/BookModel + a f_170469_ + b f_170470_ + c f_170471_ + d f_170472_ + e f_170473_ + f f_102283_ + g f_102284_ + h f_102285_ + i f_102286_ + j f_102287_ + k f_102288_ + (Lfee;)V + 0 o p_170475_ + a ()Lfek; m_170476_ + static + a (Leij;Lein;IIFFFF)V m_7695_ + 0 o p_102298_ + 1 o p_102299_ + 2 o p_102300_ + 3 o p_102301_ + 4 o p_102302_ + 5 o p_102303_ + 6 o p_102304_ + 7 o p_102305_ + a (FFFF)V m_102292_ + 0 o p_102293_ + 1 o p_102294_ + 2 o p_102295_ + 3 o p_102296_ + b (Leij;Lein;IIFFFF)V m_102316_ + 0 o p_102317_ + 1 o p_102318_ + 2 o p_102319_ + 3 o p_102320_ + 4 o p_102321_ + 5 o p_102322_ + 6 o p_102323_ + 7 o p_102324_ +fap net/minecraft/client/model/CamelModel + a f_244125_ + b f_267464_ + f f_273934_ + g f_273950_ + h f_243938_ + i f_244155_ + j f_244351_ + k f_244519_ + l f_243837_ + m f_244588_ + n f_243743_ + (Lfee;)V + 0 o p_251834_ + a (Lbfj;FFFFF)V m_6973_ + 0 o p_248612_ + 1 o p_249283_ + 2 o p_251307_ + 3 o p_252276_ + 4 o p_252318_ + 5 o p_249763_ + a (Leij;Lein;IIFFFF)V m_7695_ + 0 o p_250278_ + 1 o p_251678_ + 2 o p_249298_ + 3 o p_251841_ + 4 o p_250541_ + 5 o p_248890_ + 6 o p_250527_ + 7 o p_250536_ + a (Lbsx;)V m_246444_ + 0 o p_251765_ + a (Lbsx;FFF)V m_245891_ + 0 o p_250436_ + 1 o p_249176_ + 2 o p_251814_ + 3 o p_248796_ + a (Lbsx;FFFFF)V m_6973_ + 0 o p_250657_ + 1 o p_250501_ + 2 o p_249554_ + 3 o p_249527_ + 4 o p_248774_ + 5 o p_250710_ + a ()Lfee; m_142109_ + b ()Lfek; m_245580_ + static +faq net/minecraft/client/model/CatModel + q f_102325_ + r f_102326_ + s f_102327_ + (Lfee;)V + 0 o p_170478_ + a (Lbfj;FFFFF)V m_6973_ + 0 o p_102336_ + 1 o p_102337_ + 2 o p_102338_ + 3 o p_102339_ + 4 o p_102340_ + 5 o p_102341_ + a (Lbro;FFFFF)V m_6973_ + 0 o p_102348_ + 1 o p_102349_ + 2 o p_102350_ + 3 o p_102351_ + 4 o p_102352_ + 5 o p_102353_ + a (Lbfj;FFF)V m_6839_ + 0 o p_102331_ + 1 o p_102332_ + 2 o p_102333_ + 3 o p_102334_ + a (Lbro;FFF)V m_6839_ + 0 o p_102343_ + 1 o p_102344_ + 2 o p_102345_ + 3 o p_102346_ +far net/minecraft/client/model/ChestBoatModel + a f_244355_ + b f_243894_ + f f_244136_ + (Lfee;)V + 0 o p_251933_ + a (Lfee;)Lcom/google/common/collect/ImmutableList$Builder; m_245539_ + 0 o p_250198_ + e ()Lfek; m_247175_ + static +fas net/minecraft/client/model/ChestRaftModel + a f_243734_ + b f_244449_ + f f_244598_ + (Lfee;)V + 0 o p_248562_ + a (Lfee;)Lcom/google/common/collect/ImmutableList$Builder; m_245164_ + 0 o p_251688_ + a ()Lfek; m_246875_ + static +fat net/minecraft/client/model/ChestedHorseModel + g f_170479_ + h f_170480_ + (Lfee;)V + 0 o p_170482_ + a (Lbfj;FFFFF)V m_6973_ + 0 o p_102359_ + 1 o p_102360_ + 2 o p_102361_ + 3 o p_102362_ + 4 o p_102363_ + 5 o p_102364_ + a (Lbtk;FFFFF)V m_6973_ + 0 o p_102373_ + 1 o p_102374_ + 2 o p_102375_ + 3 o p_102376_ + 4 o p_102377_ + 5 o p_102378_ + a (Lbtj;FFFFF)V m_6973_ + 0 o p_102366_ + 1 o p_102367_ + 2 o p_102368_ + 3 o p_102369_ + 4 o p_102370_ + 5 o p_102371_ + c ()Lfek; m_170483_ + static +fau net/minecraft/client/model/ChickenModel + a f_170484_ + b f_102381_ + f f_102382_ + g f_170485_ + h f_170486_ + i f_170487_ + j f_170488_ + k f_102387_ + l f_102388_ + (Lfee;)V + 0 o p_170490_ + a (Lbfj;FFFFF)V m_6973_ + 0 o p_102392_ + 1 o p_102393_ + 2 o p_102394_ + 3 o p_102395_ + 4 o p_102396_ + 5 o p_102397_ + a ()Ljava/lang/Iterable; m_5607_ + b ()Ljava/lang/Iterable; m_5608_ + c ()Lfek; m_170491_ + static +fav net/minecraft/client/model/CodModel + a f_170492_ + b f_102405_ + (Lfee;)V + 0 o p_170494_ + a (Lbfj;FFFFF)V m_6973_ + 0 o p_102409_ + 1 o p_102410_ + 2 o p_102411_ + 3 o p_102412_ + 4 o p_102413_ + 5 o p_102414_ + a ()Lfee; m_142109_ + b ()Lfek; m_170495_ + static +faw net/minecraft/client/model/ColorableAgeableListModel + a f_102415_ + b f_102416_ + f f_102417_ + ()V + a (FFF)V m_102419_ + 0 o p_102420_ + 1 o p_102421_ + 2 o p_102422_ + a (Leij;Lein;IIFFFF)V m_7695_ + 0 o p_102424_ + 1 o p_102425_ + 2 o p_102426_ + 3 o p_102427_ + 4 o p_102428_ + 5 o p_102429_ + 6 o p_102430_ + 7 o p_102431_ +fax net/minecraft/client/model/ColorableHierarchicalModel + a f_170497_ + b f_170498_ + f f_170499_ + ()V + a (FFF)V m_170501_ + 0 o p_170502_ + 1 o p_170503_ + 2 o p_170504_ + a (Leij;Lein;IIFFFF)V m_7695_ + 0 o p_170506_ + 1 o p_170507_ + 2 o p_170508_ + 3 o p_170509_ + 4 o p_170510_ + 5 o p_170511_ + 6 o p_170512_ + 7 o p_170513_ +fay net/minecraft/client/model/CowModel + (Lfee;)V + 0 o p_170515_ + c ()Lfek; m_170516_ + static + d ()Lfee; m_102450_ +faz net/minecraft/client/model/CreeperModel + a f_170517_ + b f_102451_ + f f_170518_ + g f_170519_ + h f_170520_ + i f_170521_ + j f_170522_ + (Lfee;)V + 0 o p_170524_ + a (Lbfj;FFFFF)V m_6973_ + 0 o p_102463_ + 1 o p_102464_ + 2 o p_102465_ + 3 o p_102466_ + 4 o p_102467_ + 5 o p_102468_ + a (Lfei;)Lfek; m_170525_ + static + 0 o p_170526_ + a ()Lfee; m_142109_ +fb net/minecraft/commands/arguments/TimeArgument + a f_113031_ + b f_113032_ + c f_263648_ + d f_113034_ + e f_263655_ + ()V + static + (I)V + 0 o p_265107_ + a ()Lfb; m_113037_ + static + a (I)Lfb; m_264474_ + static + 0 o p_265722_ + a (Lcom/mojang/brigadier/StringReader;)Ljava/lang/Integer; parse + 0 o p_113039_ + a (Ljava/lang/Object;Ljava/lang/Object;)Lcom/mojang/brigadier/Message; m_263894_ + static + 0 o p_264715_ + 1 o p_264716_ + getExamples ()Ljava/util/Collection; getExamples + listSuggestions (Lcom/mojang/brigadier/context/CommandContext;Lcom/mojang/brigadier/suggestion/SuggestionsBuilder;)Ljava/util/concurrent/CompletableFuture; listSuggestions + 0 o p_113044_ + 1 o p_113045_ + parse (Lcom/mojang/brigadier/StringReader;)Ljava/lang/Object; parse + 0 o p_113047_ +fb$a net/minecraft/commands/arguments/TimeArgument$Info + ()V + a (Lgg$a;Lcom/google/gson/JsonObject;)V m_213719_ + 0 o p_265221_ + 1 o p_265609_ + a (Lfb$a$a;Lsf;)V m_214155_ + 0 o p_265434_ + 1 o p_265320_ + a (Lcom/mojang/brigadier/arguments/ArgumentType;)Lgg$a; m_214163_ + 0 o p_265133_ + a (Lfb;)Lfb$a$a; m_214163_ + 0 o p_265544_ + a (Lgg$a;Lsf;)V m_214155_ + 0 o p_265622_ + 1 o p_265576_ + a (Lsf;)Lfb$a$a; m_213618_ + 0 o p_265324_ + a (Lfb$a$a;Lcom/google/gson/JsonObject;)V m_213719_ + 0 o p_265110_ + 1 o p_265629_ + b (Lsf;)Lgg$a; m_213618_ + 0 o p_265707_ +fb$a$a net/minecraft/commands/arguments/TimeArgument$Info$Template + a f_263741_ + b f_263698_ + (Lfb$a;I)V + 0 o p_265212_ + 1 o p_265096_ + a ()Lgg; m_213709_ + a (Ldm;)Lfb; m_213879_ + 0 o p_265466_ + b (Ldm;)Lcom/mojang/brigadier/arguments/ArgumentType; m_213879_ + 0 o p_265796_ +fba net/minecraft/client/model/DolphinModel + a f_170528_ + b f_102469_ + f f_102470_ + g f_102471_ + (Lfee;)V + 0 o p_170530_ + a (Lbfj;FFFFF)V m_6973_ + 0 o p_102475_ + 1 o p_102476_ + 2 o p_102477_ + 3 o p_102478_ + 4 o p_102479_ + 5 o p_102480_ + a ()Lfee; m_142109_ + b ()Lfek; m_170531_ + static +fbb net/minecraft/client/model/DrownedModel + (Lfee;)V + 0 o p_170534_ + a (Lbwv;FFF)V m_6839_ + 0 o p_102521_ + 1 o p_102522_ + 2 o p_102523_ + 3 o p_102524_ + a (Lbfj;FFFFF)V m_6973_ + 0 o p_102495_ + 1 o p_102496_ + 2 o p_102497_ + 3 o p_102498_ + 4 o p_102499_ + 5 o p_102500_ + a (Lbwv;FFFFF)V m_6973_ + 0 o p_102526_ + 1 o p_102527_ + 2 o p_102528_ + 3 o p_102529_ + 4 o p_102530_ + 5 o p_102531_ + a (Lfei;)Lfek; m_170535_ + static + 0 o p_170536_ + a (Lbfj;FFF)V m_6839_ + 0 o p_102490_ + 1 o p_102491_ + 2 o p_102492_ + 3 o p_102493_ + a (Lbfz;FFFFF)V m_6973_ + 0 o p_102507_ + 1 o p_102508_ + 2 o p_102509_ + 3 o p_102510_ + 4 o p_102511_ + 5 o p_102512_ + a (Lbfz;FFF)V m_6839_ + 0 o p_102502_ + 1 o p_102503_ + 2 o p_102504_ + 3 o p_102505_ + a (Lbwc;FFFFF)V m_6973_ + 0 o p_102514_ + 1 o p_102515_ + 2 o p_102516_ + 3 o p_102517_ + 4 o p_102518_ + 5 o p_102519_ +fbc net/minecraft/client/model/ElytraModel + a f_102532_ + b f_102533_ + (Lfee;)V + 0 o p_170538_ + a (Lbfj;FFFFF)V m_6973_ + 0 o p_102537_ + 1 o p_102538_ + 2 o p_102539_ + 3 o p_102540_ + 4 o p_102541_ + 5 o p_102542_ + a ()Ljava/lang/Iterable; m_5607_ + a (Lbfz;FFFFF)V m_6973_ + 0 o p_102544_ + 1 o p_102545_ + 2 o p_102546_ + 3 o p_102547_ + 4 o p_102548_ + 5 o p_102549_ + b ()Ljava/lang/Iterable; m_5608_ + c ()Lfek; m_170539_ + static +fbd net/minecraft/client/model/EndermanModel + a f_102576_ + b f_102577_ + (Lfee;)V + 0 o p_170541_ + a (Lbfj;FFFFF)V m_6973_ + 0 o p_102581_ + 1 o p_102582_ + 2 o p_102583_ + 3 o p_102584_ + 4 o p_102585_ + 5 o p_102586_ + a (Lbfz;FFFFF)V m_6973_ + 0 o p_102588_ + 1 o p_102589_ + 2 o p_102590_ + 3 o p_102591_ + 4 o p_102592_ + 5 o p_102593_ + c ()Lfek; m_170542_ + static +fbe net/minecraft/client/model/EndermiteModel + a f_102596_ + b f_102594_ + f f_102595_ + g f_170543_ + h f_102597_ + ()V + static + (Lfee;)V + 0 o p_170545_ + a (Lbfj;FFFFF)V m_6973_ + 0 o p_102602_ + 1 o p_102603_ + 2 o p_102604_ + 3 o p_102605_ + 4 o p_102606_ + 5 o p_102607_ + a (I)Ljava/lang/String; m_170547_ + static + 0 o p_170548_ + a ()Lfee; m_142109_ + b ()Lfek; m_170546_ + static +fbf net/minecraft/client/model/EntityModel + c f_102608_ + d f_102609_ + e f_102610_ + ()V + (Ljava/util/function/Function;)V + 0 o p_102613_ + a (Lbfj;FFFFF)V m_6973_ + 0 o p_102618_ + 1 o p_102619_ + 2 o p_102620_ + 3 o p_102621_ + 4 o p_102622_ + 5 o p_102623_ + a (Lbfj;FFF)V m_6839_ + 0 o p_102614_ + 1 o p_102615_ + 2 o p_102616_ + 3 o p_102617_ + a (Lfbf;)V m_102624_ + 0 o p_102625_ +fbg net/minecraft/client/model/EvokerFangsModel + a f_170550_ + b f_170551_ + f f_170552_ + g f_170553_ + h f_102626_ + i f_102627_ + j f_102628_ + (Lfee;)V + 0 o p_170555_ + a (Lbfj;FFFFF)V m_6973_ + 0 o p_102632_ + 1 o p_102633_ + 2 o p_102634_ + 3 o p_102635_ + 4 o p_102636_ + 5 o p_102637_ + a ()Lfee; m_142109_ + b ()Lfek; m_170556_ + static +fbh net/minecraft/client/model/FoxModel + a f_102638_ + b f_102642_ + f f_170558_ + g f_170559_ + h f_170560_ + i f_170561_ + j f_102647_ + k f_170562_ + l f_170563_ + m f_170564_ + n f_102648_ + (Lfee;)V + 0 o p_170566_ + a (Lbrv;FFF)V m_6839_ + 0 o p_102664_ + 1 o p_102665_ + 2 o p_102666_ + 3 o p_102667_ + a (Lbfj;FFFFF)V m_6973_ + 0 o p_102657_ + 1 o p_102658_ + 2 o p_102659_ + 3 o p_102660_ + 4 o p_102661_ + 5 o p_102662_ + a (Lbfj;FFF)V m_6839_ + 0 o p_102652_ + 1 o p_102653_ + 2 o p_102654_ + 3 o p_102655_ + a ()Ljava/lang/Iterable; m_5607_ + a (Lbrv;FFFFF)V m_6973_ + 0 o p_102669_ + 1 o p_102670_ + 2 o p_102671_ + 3 o p_102672_ + 4 o p_102673_ + 5 o p_102674_ + b ()Ljava/lang/Iterable; m_5608_ + c ()Lfek; m_170567_ + static +fbi net/minecraft/client/model/FrogModel + a f_233349_ + b f_267447_ + f f_267373_ + g f_233351_ + h f_233352_ + i f_233353_ + j f_233354_ + k f_233355_ + l f_233356_ + m f_233357_ + n f_233358_ + o f_233359_ + p f_233360_ + (Lfee;)V + 0 o p_233362_ + a (Lbfj;FFFFF)V m_6973_ + 0 o p_233365_ + 1 o p_233366_ + 2 o p_233367_ + 3 o p_233368_ + 4 o p_233369_ + 5 o p_233370_ + a (Lbta;FFFFF)V m_6973_ + 0 o p_233372_ + 1 o p_233373_ + 2 o p_233374_ + 3 o p_233375_ + 4 o p_233376_ + 5 o p_233377_ + a ()Lfee; m_142109_ + b ()Lfek; m_233378_ + static +fbj net/minecraft/client/model/GhastModel + a f_170568_ + b f_102676_ + (Lfee;)V + 0 o p_170570_ + a (Lbfj;FFFFF)V m_6973_ + 0 o p_102681_ + 1 o p_102682_ + 2 o p_102683_ + 3 o p_102684_ + 4 o p_102685_ + 5 o p_102686_ + a (I)Ljava/lang/String; m_170572_ + static + 0 o p_170573_ + a ()Lfee; m_142109_ + b ()Lfek; m_170571_ + static +fbk net/minecraft/client/model/GiantZombieModel + (Lfee;)V + 0 o p_170576_ + a (Lbvx;)Z m_7134_ + 0 o p_102692_ + a (Lbwc;)Z m_7134_ + 0 o p_102694_ +fbl net/minecraft/client/model/GoatModel + (Lfee;)V + 0 o p_170578_ + a (Lbfj;FFFFF)V m_6973_ + 0 o p_170580_ + 1 o p_170581_ + 2 o p_170582_ + 3 o p_170583_ + 4 o p_170584_ + 5 o p_170585_ + a (Lbtg;FFFFF)V m_6973_ + 0 o p_170587_ + 1 o p_170588_ + 2 o p_170589_ + 3 o p_170590_ + 4 o p_170591_ + 5 o p_170592_ + c ()Lfek; m_170593_ + static +fbm net/minecraft/client/model/GuardianModel + a f_102695_ + b f_102696_ + f f_102697_ + g f_102698_ + h f_102699_ + i f_102700_ + j f_170594_ + k f_170595_ + l f_170596_ + m f_170597_ + n f_170598_ + o f_102701_ + p f_102702_ + q f_102703_ + r f_102704_ + ()V + static + (Lfee;)V + 0 o p_170600_ + a (Lbfj;FFFFF)V m_6973_ + 0 o p_102712_ + 1 o p_102713_ + 2 o p_102714_ + 3 o p_102715_ + 4 o p_102716_ + 5 o p_102717_ + a (I)Ljava/lang/String; m_170602_ + static + 0 o p_170603_ + a (IFF)F m_170604_ + static + 0 o p_170605_ + 1 o p_170606_ + 2 o p_170607_ + a (Lbvy;FFFFF)V m_6973_ + 0 o p_102719_ + 1 o p_102720_ + 2 o p_102721_ + 3 o p_102722_ + 4 o p_102723_ + 5 o p_102724_ + a (FF)V m_102708_ + 0 o p_102709_ + 1 o p_102710_ + a ()Lfee; m_142109_ + b ()Lfek; m_170601_ + static + b (IFF)F m_170609_ + static + 0 o p_170610_ + 1 o p_170611_ + 2 o p_170612_ + c (IFF)F m_170613_ + static + 0 o p_170614_ + 1 o p_170615_ + 2 o p_170616_ + d (IFF)F m_170617_ + static + 0 o p_170618_ + 1 o p_170619_ + 2 o p_170620_ +fbn net/minecraft/client/model/HeadedModel + d ()Lfee; m_5585_ +fbo net/minecraft/client/model/HierarchicalModel + a f_233379_ + ()V + static + ()V + (Ljava/util/function/Function;)V + 0 o p_170623_ + a (Ljava/lang/String;)Ljava/util/Optional; m_233393_ + 0 o p_233394_ + a (Leij;Lein;IIFFFF)V m_7695_ + 0 o p_170625_ + 1 o p_170626_ + 2 o p_170627_ + 3 o p_170628_ + 4 o p_170629_ + 5 o p_170630_ + 6 o p_170631_ + 7 o p_170632_ + a (Leoe;)V m_288214_ + 0 o p_288996_ + a (Lbff;Leoe;FF)V m_233385_ + 0 o p_233386_ + 1 o p_233387_ + 2 o p_233388_ + 3 o p_233389_ + a (Leoe;FFFF)V m_267799_ + 0 o p_268159_ + 1 o p_268057_ + 2 o p_268347_ + 3 o p_268138_ + 4 o p_268165_ + a (Leoe;Lbff;)V m_252584_ + 0 o p_253337_ + 1 o p_233392_ + a (Lbff;Leoe;F)V m_233381_ + 0 o p_233382_ + 1 o p_233383_ + 2 o p_233384_ + a (Ljava/lang/String;Lfee;)Lfee; m_233395_ + static + 0 o p_233396_ + 1 o p_233397_ + a ()Lfee; m_142109_ + b (Ljava/lang/String;Lfee;)Z m_233398_ + static + 0 o p_233399_ + 1 o p_233400_ +fbp net/minecraft/client/model/HoglinModel + a f_170633_ + b f_170634_ + f f_102725_ + g f_102726_ + h f_102727_ + i f_102728_ + j f_170635_ + k f_170636_ + l f_170637_ + m f_170638_ + n f_102733_ + (Lfee;)V + 0 o p_170640_ + a (Lbgb;FFFFF)V m_6973_ + 0 o p_102744_ + 1 o p_102745_ + 2 o p_102746_ + 3 o p_102747_ + 4 o p_102748_ + 5 o p_102749_ + a (Lbfj;FFFFF)V m_6973_ + 0 o p_102737_ + 1 o p_102738_ + 2 o p_102739_ + 3 o p_102740_ + 4 o p_102741_ + 5 o p_102742_ + a ()Ljava/lang/Iterable; m_5607_ + b ()Ljava/lang/Iterable; m_5608_ + c ()Lfek; m_170641_ + static +fbq net/minecraft/client/model/HorseModel + A f_170642_ + B f_170643_ + C f_170644_ + D f_170645_ + E f_170646_ + F f_102761_ + G f_102762_ + H f_102763_ + a f_170647_ + b f_102751_ + f f_102752_ + g f_170648_ + h f_170649_ + i f_170650_ + j f_170651_ + k f_170652_ + l f_170653_ + m f_170654_ + n f_170655_ + o f_170656_ + p f_170657_ + q f_170658_ + r f_170659_ + s f_170660_ + t f_170661_ + u f_170662_ + w f_170663_ + x f_170664_ + y f_170665_ + z f_170666_ + (Lfee;)V + 0 o p_170668_ + a (Lbfj;FFFFF)V m_6973_ + 0 o p_102773_ + 1 o p_102774_ + 2 o p_102775_ + 3 o p_102776_ + 4 o p_102777_ + 5 o p_102778_ + a (Lbfj;FFF)V m_6839_ + 0 o p_102768_ + 1 o p_102769_ + 2 o p_102770_ + 3 o p_102771_ + a (Lfei;)Lfem; m_170669_ + static + 0 o p_170670_ + a (Lbtk;FFFFF)V m_6973_ + 0 o p_102785_ + 1 o p_102786_ + 2 o p_102787_ + 3 o p_102788_ + 4 o p_102789_ + 5 o p_102790_ + a ()Ljava/lang/Iterable; m_5607_ + a (Lbtk;FFF)V m_6839_ + 0 o p_102780_ + 1 o p_102781_ + 2 o p_102782_ + 3 o p_102783_ + b ()Ljava/lang/Iterable; m_5608_ +fbr net/minecraft/client/model/HumanoidArmorModel + (Lfee;)V + 0 o p_270765_ + a (Lfei;)Lfem; m_269566_ + static + 0 o p_270527_ +fbs net/minecraft/client/model/HumanoidModel + a f_268560_ + b f_170671_ + f f_170673_ + g f_170674_ + h f_268570_ + i f_233401_ + j f_233402_ + k f_102808_ + l f_102809_ + m f_102810_ + n f_102811_ + o f_102812_ + p f_102813_ + q f_102814_ + r f_102815_ + s f_102816_ + t f_102817_ + u f_102818_ + w f_170672_ + x f_170675_ + (Lfee;)V + 0 o p_170677_ + (Lfee;Ljava/util/function/Function;)V + 0 o p_170679_ + 1 o p_170680_ + a (FFF)F m_102835_ + 0 o p_102836_ + 1 o p_102837_ + 2 o p_102838_ + a ()Ljava/lang/Iterable; m_5607_ + a (Lfbs;)V m_102872_ + 0 o p_102873_ + a (Lbfz;F)V m_7884_ + 0 o p_102858_ + 1 o p_102859_ + a (Lbfz;FFF)V m_6839_ + 0 o p_102861_ + 1 o p_102862_ + 2 o p_102863_ + 3 o p_102864_ + a (Lbfz;)V m_102875_ + 0 o p_102876_ + a (Lbft;)Lfee; m_102851_ + 0 o p_102852_ + a (Lbfj;FFFFF)V m_6973_ + 0 o p_102845_ + 1 o p_102846_ + 2 o p_102847_ + 3 o p_102848_ + 4 o p_102849_ + 5 o p_102850_ + a (F)F m_102833_ + 0 o p_102834_ + a (Lbfj;FFF)V m_6839_ + 0 o p_102840_ + 1 o p_102841_ + 2 o p_102842_ + 3 o p_102843_ + a (Lfei;F)Lfem; m_170681_ + static + 0 o p_170682_ + 1 o p_170683_ + a (Lbfz;FFFFF)V m_6973_ + 0 o p_102866_ + 1 o p_102867_ + 2 o p_102868_ + 3 o p_102869_ + 4 o p_102870_ + 5 o p_102871_ + a (Lbft;Leij;)V m_6002_ + 0 o p_102854_ + 1 o p_102855_ + b (Lbfz;)V m_102878_ + 0 o p_102879_ + b ()Ljava/lang/Iterable; m_5608_ + c (Lbfz;)Lbft; m_102856_ + 0 o p_102857_ + d ()Lfee; m_5585_ + d_ (Z)V m_8009_ + 0 o p_102880_ +fbs$1 net/minecraft/client/model/HumanoidModel$1 + a f_102881_ + ()V + static +fbs$a net/minecraft/client/model/HumanoidModel$ArmPose + a EMPTY + b ITEM + c BLOCK + d BOW_AND_ARROW + e THROW_SPEAR + f CROSSBOW_CHARGE + g CROSSBOW_HOLD + h SPYGLASS + i TOOT_HORN + j BRUSH + k f_102890_ + l $VALUES + ()V + static + (Ljava/lang/String;IZ)V + 0 o p_102894_ + 1 o p_102895_ + 2 o p_102896_ + a ()Z m_102897_ + b ()[Lfbs$a; m_170685_ + static + valueOf (Ljava/lang/String;)Lfbs$a; valueOf + static + 0 o p_102899_ + values ()[Lfbs$a; values + static +fbt net/minecraft/client/model/IllagerModel + a f_170686_ + b f_102901_ + f f_102902_ + g f_102904_ + h f_102905_ + i f_102906_ + j f_102907_ + k f_102908_ + (Lfee;)V + 0 o p_170688_ + a (Lbvk;FFFFF)V m_6973_ + 0 o p_102928_ + 1 o p_102929_ + 2 o p_102930_ + 3 o p_102931_ + 4 o p_102932_ + 5 o p_102933_ + a (Lbft;)Lfee; m_102922_ + 0 o p_102923_ + a (Lbfj;FFFFF)V m_6973_ + 0 o p_102916_ + 1 o p_102917_ + 2 o p_102918_ + 3 o p_102919_ + 4 o p_102920_ + 5 o p_102921_ + a (Lbft;Leij;)V m_6002_ + 0 o p_102925_ + 1 o p_102926_ + a ()Lfee; m_142109_ + b ()Lfek; m_170689_ + static + c ()Lfee; m_102934_ + d ()Lfee; m_5585_ +fbu net/minecraft/client/model/IronGolemModel + a f_170691_ + b f_102936_ + f f_170692_ + g f_170693_ + h f_170694_ + i f_170695_ + (Lfee;)V + 0 o p_170697_ + a (Lbfj;FFFFF)V m_6973_ + 0 o p_102950_ + 1 o p_102951_ + 2 o p_102952_ + 3 o p_102953_ + 4 o p_102954_ + 5 o p_102955_ + a (Lbrx;FFFFF)V m_6973_ + 0 o p_102962_ + 1 o p_102963_ + 2 o p_102964_ + 3 o p_102965_ + 4 o p_102966_ + 5 o p_102967_ + a (Lbfj;FFF)V m_6839_ + 0 o p_102945_ + 1 o p_102946_ + 2 o p_102947_ + 3 o p_102948_ + a (Lbrx;FFF)V m_6839_ + 0 o p_102957_ + 1 o p_102958_ + 2 o p_102959_ + 3 o p_102960_ + a ()Lfee; m_142109_ + b ()Lfek; m_170698_ + static + c ()Lfee; m_102968_ +fbv net/minecraft/client/model/LavaSlimeModel + a f_170700_ + b f_170701_ + f f_102969_ + (Lfee;)V + 0 o p_170703_ + a (Lbfj;FFFFF)V m_6973_ + 0 o p_102980_ + 1 o p_102981_ + 2 o p_102982_ + 3 o p_102983_ + 4 o p_102984_ + 5 o p_102985_ + a (Lbfj;FFF)V m_6839_ + 0 o p_102975_ + 1 o p_102976_ + 2 o p_102977_ + 3 o p_102978_ + a (Lbwl;FFF)V m_6839_ + 0 o p_102987_ + 1 o p_102988_ + 2 o p_102989_ + 3 o p_102990_ + a (I)Ljava/lang/String; m_170705_ + static + 0 o p_170706_ + a (Lbwl;FFFFF)V m_6973_ + 0 o p_102992_ + 1 o p_102993_ + 2 o p_102994_ + 3 o p_102995_ + 4 o p_102996_ + 5 o p_102997_ + a (Lfee;I)Lfee; m_170707_ + static + 0 o p_170708_ + 1 o p_170709_ + a ()Lfee; m_142109_ + b ()Lfek; m_170704_ + static +fbw net/minecraft/client/model/LeashKnotModel + a f_170711_ + b f_170712_ + f f_102999_ + (Lfee;)V + 0 o p_170714_ + a (Lbfj;FFFFF)V m_6973_ + 0 o p_103003_ + 1 o p_103004_ + 2 o p_103005_ + 3 o p_103006_ + 4 o p_103007_ + 5 o p_103008_ + a ()Lfee; m_142109_ + b ()Lfek; m_170715_ + static +fbx net/minecraft/client/model/ListModel + ()V + (Ljava/util/function/Function;)V + 0 o p_103011_ + a (Leij;Lein;IIFFFFLfee;)V m_103021_ + static + 0 o p_103022_ + 1 o p_103023_ + 2 o p_103024_ + 3 o p_103025_ + 4 o p_103026_ + 5 o p_103027_ + 6 o p_103028_ + 7 o p_103029_ + 8 o p_103030_ + a (Leij;Lein;IIFFFF)V m_7695_ + 0 o p_103013_ + 1 o p_103014_ + 2 o p_103015_ + 3 o p_103016_ + 4 o p_103017_ + 5 o p_103018_ + 6 o p_103019_ + 7 o p_103020_ + d ()Ljava/lang/Iterable; m_6195_ +fby net/minecraft/client/model/LlamaModel + a f_103031_ + b f_103032_ + f f_170717_ + g f_170718_ + h f_170719_ + i f_170720_ + j f_170721_ + k f_170722_ + (Lfee;)V + 0 o p_170724_ + a (Leij;Lein;IIFFFFLfee;)V m_103064_ + static + 0 o p_103065_ + 1 o p_103066_ + 2 o p_103067_ + 3 o p_103068_ + 4 o p_103069_ + 5 o p_103070_ + 6 o p_103071_ + 7 o p_103072_ + 8 o p_103073_ + a (Lbfj;FFFFF)V m_6973_ + 0 o p_103042_ + 1 o p_103043_ + 2 o p_103044_ + 3 o p_103045_ + 4 o p_103046_ + 5 o p_103047_ + a (Lfei;)Lfek; m_170725_ + static + 0 o p_170726_ + a (Leij;Lein;IIFFFF)V m_7695_ + 0 o p_103056_ + 1 o p_103057_ + 2 o p_103058_ + 3 o p_103059_ + 4 o p_103060_ + 5 o p_103061_ + 6 o p_103062_ + 7 o p_103063_ + a (Lbtj;FFFFF)V m_6973_ + 0 o p_103049_ + 1 o p_103050_ + 2 o p_103051_ + 3 o p_103052_ + 4 o p_103053_ + 5 o p_103054_ + b (Leij;Lein;IIFFFFLfee;)V m_103074_ + static + 0 o p_103075_ + 1 o p_103076_ + 2 o p_103077_ + 3 o p_103078_ + 4 o p_103079_ + 5 o p_103080_ + 6 o p_103081_ + 7 o p_103082_ + 8 o p_103083_ +fbz net/minecraft/client/model/LlamaSpitModel + a f_170727_ + b f_170728_ + (Lfee;)V + 0 o p_170730_ + a (Lbfj;FFFFF)V m_6973_ + 0 o p_103090_ + 1 o p_103091_ + 2 o p_103092_ + 3 o p_103093_ + 4 o p_103094_ + 5 o p_103095_ + a ()Lfee; m_142109_ + b ()Lfek; m_170731_ + static +fc net/minecraft/commands/arguments/UuidArgument + a f_113845_ + b f_113846_ + c f_113847_ + ()V + static + ()V + a ()Lfc; m_113850_ + static + a (Lcom/mojang/brigadier/context/CommandContext;Ljava/lang/String;)Ljava/util/UUID; m_113853_ + static + 0 o p_113854_ + 1 o p_113855_ + a (Lcom/mojang/brigadier/StringReader;)Ljava/util/UUID; parse + 0 o p_113852_ + getExamples ()Ljava/util/Collection; getExamples + parse (Lcom/mojang/brigadier/StringReader;)Ljava/lang/Object; parse + 0 o p_113858_ +fca net/minecraft/client/model/MinecartModel + a f_170733_ + (Lfee;)V + 0 o p_170737_ + a (Lbfj;FFFFF)V m_6973_ + 0 o p_103100_ + 1 o p_103101_ + 2 o p_103102_ + 3 o p_103103_ + 4 o p_103104_ + 5 o p_103105_ + a ()Lfee; m_142109_ + b ()Lfek; m_170738_ + static +fcb net/minecraft/client/model/Model + v f_103106_ + (Ljava/util/function/Function;)V + 0 o p_103110_ + a (Leij;Lein;IIFFFF)V m_7695_ + 0 o p_103111_ + 1 o p_103112_ + 2 o p_103113_ + 3 o p_103114_ + 4 o p_103115_ + 5 o p_103116_ + 6 o p_103117_ + 7 o p_103118_ + a (Lacq;)Lfkf; m_103119_ + 0 o p_103120_ +fcc net/minecraft/client/model/ModelUtils + ()V + a (FFF)F m_103125_ + static + 0 o p_103126_ + 1 o p_103127_ + 2 o p_103128_ +fcd net/minecraft/client/model/OcelotModel + A f_170741_ + B f_170742_ + C f_170743_ + D f_170744_ + E f_170745_ + F f_170746_ + G f_170747_ + H f_170748_ + a f_170749_ + b f_170750_ + f f_170751_ + g f_170752_ + h f_170753_ + i f_170754_ + j f_170755_ + k f_170756_ + l f_103133_ + m f_103134_ + n f_103135_ + o f_103136_ + p f_103137_ + q f_170757_ + r f_170758_ + s f_170759_ + t f_170760_ + u f_170761_ + w f_170762_ + x f_170763_ + y f_170764_ + z f_170765_ + (Lfee;)V + 0 o p_170767_ + a (Lbfj;FFFFF)V m_6973_ + 0 o p_103147_ + 1 o p_103148_ + 2 o p_103149_ + 3 o p_103150_ + 4 o p_103151_ + 5 o p_103152_ + a (Lbfj;FFF)V m_6839_ + 0 o p_103142_ + 1 o p_103143_ + 2 o p_103144_ + 3 o p_103145_ + a (Lfei;)Lfem; m_170768_ + static + 0 o p_170769_ + a ()Ljava/lang/Iterable; m_5607_ + b ()Ljava/lang/Iterable; m_5608_ +fce net/minecraft/client/model/PandaModel + j f_103154_ + k f_103155_ + l f_103156_ + (Lfee;)V + 0 o p_170771_ + a (Lbfj;FFFFF)V m_6973_ + 0 o p_103166_ + 1 o p_103167_ + 2 o p_103168_ + 3 o p_103169_ + 4 o p_103170_ + 5 o p_103171_ + a (Lbfj;FFF)V m_6839_ + 0 o p_103161_ + 1 o p_103162_ + 2 o p_103163_ + 3 o p_103164_ + a (Lbsa;FFF)V m_6839_ + 0 o p_103173_ + 1 o p_103174_ + 2 o p_103175_ + 3 o p_103176_ + a (Lbsa;FFFFF)V m_6973_ + 0 o p_103178_ + 1 o p_103179_ + 2 o p_103180_ + 3 o p_103181_ + 4 o p_103182_ + 5 o p_103183_ + c ()Lfek; m_170772_ + static +fcf net/minecraft/client/model/ParrotModel + a f_170773_ + b f_170774_ + f f_103184_ + g f_103185_ + h f_170775_ + i f_170776_ + j f_103188_ + k f_103192_ + l f_170777_ + m f_170778_ + (Lfee;)V + 0 o p_170780_ + a (Lbsb;FFFFF)V m_6973_ + 0 o p_103217_ + 1 o p_103218_ + 2 o p_103219_ + 3 o p_103220_ + 4 o p_103221_ + 5 o p_103222_ + a (Lbfj;FFFFF)V m_6973_ + 0 o p_103203_ + 1 o p_103204_ + 2 o p_103205_ + 3 o p_103206_ + 4 o p_103207_ + 5 o p_103208_ + a (Lbfj;FFF)V m_6839_ + 0 o p_103198_ + 1 o p_103199_ + 2 o p_103200_ + 3 o p_103201_ + a (Lbsb;FFF)V m_6839_ + 0 o p_103212_ + 1 o p_103213_ + 2 o p_103214_ + 3 o p_103215_ + a (Leij;Lein;IIFFFFI)V m_103223_ + 0 o p_103224_ + 1 o p_103225_ + 2 o p_103226_ + 3 o p_103227_ + 4 o p_103228_ + 5 o p_103229_ + 6 o p_103230_ + 7 o p_103231_ + 8 o p_103232_ + a (Lfcf$a;IFFFFF)V m_103241_ + 0 o p_103242_ + 1 o p_103243_ + 2 o p_103244_ + 3 o p_103245_ + 4 o p_103246_ + 5 o p_103247_ + 6 o p_103248_ + a (Lbsb;)Lfcf$a; m_103209_ + static + 0 o p_103210_ + a (Lfcf$a;)V m_103239_ + 0 o p_103240_ + a ()Lfee; m_142109_ + b ()Lfek; m_170781_ + static +fcf$1 net/minecraft/client/model/ParrotModel$1 + a f_103249_ + ()V + static +fcf$a net/minecraft/client/model/ParrotModel$State + a FLYING + b STANDING + c SITTING + d PARTY + e ON_SHOULDER + f $VALUES + ()V + static + (Ljava/lang/String;I)V + 0 o p_103259_ + 1 o p_103260_ + a ()[Lfcf$a; m_170783_ + static + valueOf (Ljava/lang/String;)Lfcf$a; valueOf + static + 0 o p_103262_ + values ()[Lfcf$a; values + static +fcg net/minecraft/client/model/PhantomModel + a f_170784_ + b f_170785_ + f f_170786_ + g f_103315_ + h f_103316_ + i f_103317_ + j f_103318_ + k f_103319_ + l f_103320_ + (Lfee;)V + 0 o p_170788_ + a (Lbwe;FFFFF)V m_6973_ + 0 o p_170791_ + 1 o p_170792_ + 2 o p_170793_ + 3 o p_170794_ + 4 o p_170795_ + 5 o p_170796_ + a (Lbfj;FFFFF)V m_6973_ + 0 o p_103324_ + 1 o p_103325_ + 2 o p_103326_ + 3 o p_103327_ + 4 o p_103328_ + 5 o p_103329_ + a ()Lfee; m_142109_ + b ()Lfek; m_170789_ + static +fch net/minecraft/client/model/PigModel + (Lfee;)V + 0 o p_170799_ + a (Lfei;)Lfek; m_170800_ + static + 0 o p_170801_ +fci net/minecraft/client/model/PiglinHeadModel + a f_260496_ + b f_260542_ + c f_260517_ + (Lfee;)V + 0 o p_261926_ + a (FFF)V m_6251_ + 0 o p_261561_ + 1 o p_261750_ + 2 o p_261549_ + a ()Lfem; m_261259_ + static + a (Leij;Lein;IIFFFF)V m_7695_ + 0 o p_261809_ + 1 o p_261744_ + 2 o p_261711_ + 3 o p_262032_ + 4 o p_262022_ + 5 o p_261949_ + 6 o p_261474_ + 7 o p_261957_ +fcj net/minecraft/client/model/PiglinModel + A f_170808_ + B f_103337_ + C f_103338_ + D f_103333_ + E f_103334_ + a f_170807_ + (Lfee;)V + 0 o p_170810_ + a (Lbgb;FFFFF)V m_6973_ + 0 o p_103366_ + 1 o p_103367_ + 2 o p_103368_ + 3 o p_103369_ + 4 o p_103370_ + 5 o p_103371_ + a (Lbfj;FFFFF)V m_6973_ + 0 o p_103344_ + 1 o p_103345_ + 2 o p_103346_ + 3 o p_103347_ + 4 o p_103348_ + 5 o p_103349_ + a (Lbgb;F)V m_7884_ + 0 o p_103363_ + 1 o p_103364_ + a (Lfei;Lfem;)V m_260936_ + static + 0 o p_262174_ + 1 o p_262011_ + a (Lfei;)Lfem; m_170811_ + static + 0 o p_170812_ + a (Lbgb;)V m_103360_ + 0 o p_103361_ + a (Lbfz;FFFFF)V m_6973_ + 0 o p_103354_ + 1 o p_103355_ + 2 o p_103356_ + 3 o p_103357_ + 4 o p_103358_ + 5 o p_103359_ + a (Lbfz;F)V m_7884_ + 0 o p_103351_ + 1 o p_103352_ +fck net/minecraft/client/model/PlayerModel + A f_170817_ + B f_170818_ + C f_170819_ + D f_170813_ + E f_170814_ + F f_170815_ + G f_103373_ + H f_103379_ + I f_103380_ + a f_170816_ + b f_103374_ + w f_103375_ + x f_103376_ + y f_103377_ + z f_103378_ + (Lfee;Z)V + 0 o p_170821_ + 1 o p_170822_ + a (Lfei;Z)Lfem; m_170825_ + static + 0 o p_170826_ + 1 o p_170827_ + a (Lbfj;FFFFF)V m_6973_ + 0 o p_103385_ + 1 o p_103386_ + 2 o p_103387_ + 3 o p_103388_ + 4 o p_103389_ + 5 o p_103390_ + a (Lfee;)Z m_170823_ + static + 0 o p_170824_ + a (Lbfz;FFFFF)V m_6973_ + 0 o p_103395_ + 1 o p_103396_ + 2 o p_103397_ + 3 o p_103398_ + 4 o p_103399_ + 5 o p_103400_ + a (Lbft;Leij;)V m_6002_ + 0 o p_103392_ + 1 o p_103393_ + a (Lapf;)Lfee; m_233438_ + 0 o p_233439_ + a (Leij;Lein;II)V m_103401_ + 0 o p_103402_ + 1 o p_103403_ + 2 o p_103404_ + 3 o p_103405_ + b ()Ljava/lang/Iterable; m_5608_ + b (Leij;Lein;II)V m_103411_ + 0 o p_103412_ + 1 o p_103413_ + 2 o p_103414_ + 3 o p_103415_ + d_ (Z)V m_8009_ + 0 o p_103419_ +fcl net/minecraft/client/model/PolarBearModel + (Lfee;)V + 0 o p_170829_ + a (Lbfj;FFFFF)V m_6973_ + 0 o p_103422_ + 1 o p_103423_ + 2 o p_103424_ + 3 o p_103425_ + 4 o p_103426_ + 5 o p_103427_ + a (Lbsd;FFFFF)V m_6973_ + 0 o p_103429_ + 1 o p_103430_ + 2 o p_103431_ + 3 o p_103432_ + 4 o p_103433_ + 5 o p_103434_ + c ()Lfek; m_170830_ + static +fcm net/minecraft/client/model/PufferfishBigModel + a f_170831_ + b f_170832_ + f f_170833_ + (Lfee;)V + 0 o p_170835_ + a (Lbfj;FFFFF)V m_6973_ + 0 o p_103451_ + 1 o p_103452_ + 2 o p_103453_ + 3 o p_103454_ + 4 o p_103455_ + 5 o p_103456_ + a ()Lfee; m_142109_ + b ()Lfek; m_170836_ + static +fcn net/minecraft/client/model/PufferfishMidModel + a f_170838_ + b f_170839_ + f f_170840_ + (Lfee;)V + 0 o p_170842_ + a (Lbfj;FFFFF)V m_6973_ + 0 o p_103471_ + 1 o p_103472_ + 2 o p_103473_ + 3 o p_103474_ + 4 o p_103475_ + 5 o p_103476_ + a ()Lfee; m_142109_ + b ()Lfek; m_170843_ + static +fco net/minecraft/client/model/PufferfishSmallModel + a f_170845_ + b f_170846_ + f f_170847_ + (Lfee;)V + 0 o p_170849_ + a (Lbfj;FFFFF)V m_6973_ + 0 o p_103486_ + 1 o p_103487_ + 2 o p_103488_ + 3 o p_103489_ + 4 o p_103490_ + 5 o p_103491_ + a ()Lfee; m_142109_ + b ()Lfek; m_170850_ + static +fcp net/minecraft/client/model/QuadrupedModel + a f_103492_ + b f_103493_ + f f_170852_ + g f_170853_ + h f_170854_ + i f_170855_ + (Lfee;ZFFFFI)V + 0 o p_170857_ + 1 o p_170858_ + 2 o p_170859_ + 3 o p_170860_ + 4 o p_170861_ + 5 o p_170862_ + 6 o p_170863_ + a (Lbfj;FFFFF)V m_6973_ + 0 o p_103509_ + 1 o p_103510_ + 2 o p_103511_ + 3 o p_103512_ + 4 o p_103513_ + 5 o p_103514_ + a (ILfei;)Lfem; m_170864_ + static + 0 o p_170865_ + 1 o p_170866_ + a ()Ljava/lang/Iterable; m_5607_ + b ()Ljava/lang/Iterable; m_5608_ +fcq net/minecraft/client/model/RabbitModel + a f_170867_ + b f_170868_ + f f_170869_ + g f_170870_ + h f_170871_ + i f_170872_ + j f_170873_ + k f_170874_ + l f_103520_ + m f_170875_ + n f_170876_ + o f_103523_ + p f_170877_ + q f_170878_ + r f_103526_ + s f_103527_ + t f_103528_ + u f_170879_ + (Lfee;)V + 0 o p_170881_ + a (Leij;Lein;IIFFFFLfee;)V m_103563_ + static + 0 o p_103564_ + 1 o p_103565_ + 2 o p_103566_ + 3 o p_103567_ + 4 o p_103568_ + 5 o p_103569_ + 6 o p_103570_ + 7 o p_103571_ + 8 o p_103572_ + a (Lbfj;FFFFF)V m_6973_ + 0 o p_103536_ + 1 o p_103537_ + 2 o p_103538_ + 3 o p_103539_ + 4 o p_103540_ + 5 o p_103541_ + a (Lbfj;FFF)V m_6839_ + 0 o p_103531_ + 1 o p_103532_ + 2 o p_103533_ + 3 o p_103534_ + a ()Lfek; m_170882_ + static + a (Leij;Lein;IIFFFF)V m_7695_ + 0 o p_103555_ + 1 o p_103556_ + 2 o p_103557_ + 3 o p_103558_ + 4 o p_103559_ + 5 o p_103560_ + 6 o p_103561_ + 7 o p_103562_ + a (Lbsf;FFFFF)V m_6973_ + 0 o p_103548_ + 1 o p_103549_ + 2 o p_103550_ + 3 o p_103551_ + 4 o p_103552_ + 5 o p_103553_ + a (Lbsf;FFF)V m_6839_ + 0 o p_103543_ + 1 o p_103544_ + 2 o p_103545_ + 3 o p_103546_ + b (Leij;Lein;IIFFFFLfee;)V m_103578_ + static + 0 o p_103579_ + 1 o p_103580_ + 2 o p_103581_ + 3 o p_103582_ + 4 o p_103583_ + 5 o p_103584_ + 6 o p_103585_ + 7 o p_103586_ + 8 o p_103587_ + c (Leij;Lein;IIFFFFLfee;)V m_103588_ + static + 0 o p_103589_ + 1 o p_103590_ + 2 o p_103591_ + 3 o p_103592_ + 4 o p_103593_ + 5 o p_103594_ + 6 o p_103595_ + 7 o p_103596_ + 8 o p_103597_ +fcr net/minecraft/client/model/RaftModel + a f_243712_ + b f_244253_ + f f_243674_ + g f_244618_ + h f_243747_ + i f_244557_ + (Lfee;)V + 0 o p_251383_ + a (Lfee;)Lcom/google/common/collect/ImmutableList$Builder; m_245164_ + 0 o p_250773_ + a (Lcah;FFFFF)V m_6973_ + 0 o p_249733_ + 1 o p_249202_ + 2 o p_252219_ + 3 o p_249366_ + 4 o p_249759_ + 5 o p_250286_ + a (Lbfj;FFFFF)V m_6973_ + 0 o p_248863_ + 1 o p_251784_ + 2 o p_250063_ + 3 o p_250318_ + 4 o p_250448_ + 5 o p_249561_ + a (Lcah;ILfee;F)V m_247198_ + static + 0 o p_250792_ + 1 o p_249947_ + 2 o p_248943_ + 3 o p_251990_ + a (Lfen;)V m_246042_ + static + 0 o p_250262_ + b ()Lfek; m_247376_ + static + c ()Lcom/google/common/collect/ImmutableList; m_6195_ + d ()Ljava/lang/Iterable; m_6195_ +fcs net/minecraft/client/model/RavagerModel + a f_170883_ + b f_103598_ + f f_103599_ + g f_170884_ + h f_170885_ + i f_170886_ + j f_170887_ + k f_103605_ + (Lfee;)V + 0 o p_170889_ + a (Lbwh;FFFFF)V m_6973_ + 0 o p_103626_ + 1 o p_103627_ + 2 o p_103628_ + 3 o p_103629_ + 4 o p_103630_ + 5 o p_103631_ + a (Lbfj;FFFFF)V m_6973_ + 0 o p_103614_ + 1 o p_103615_ + 2 o p_103616_ + 3 o p_103617_ + 4 o p_103618_ + 5 o p_103619_ + a (Lbfj;FFF)V m_6839_ + 0 o p_103609_ + 1 o p_103610_ + 2 o p_103611_ + 3 o p_103612_ + a (Lbwh;FFF)V m_6839_ + 0 o p_103621_ + 1 o p_103622_ + 2 o p_103623_ + 3 o p_103624_ + a ()Lfee; m_142109_ + b ()Lfek; m_170890_ + static +fct net/minecraft/client/model/SalmonModel + a f_170892_ + b f_170893_ + f f_170894_ + g f_103633_ + (Lfee;)V + 0 o p_170896_ + a (Lbfj;FFFFF)V m_6973_ + 0 o p_103640_ + 1 o p_103641_ + 2 o p_103642_ + 3 o p_103643_ + 4 o p_103644_ + 5 o p_103645_ + a ()Lfee; m_142109_ + b ()Lfek; m_170897_ + static +fcu net/minecraft/client/model/SheepFurModel + j f_103646_ + (Lfee;)V + 0 o p_170900_ + a (Lbsh;FFFFF)V m_6973_ + 0 o p_103666_ + 1 o p_103667_ + 2 o p_103668_ + 3 o p_103669_ + 4 o p_103670_ + 5 o p_103671_ + a (Lbfj;FFFFF)V m_6973_ + 0 o p_103654_ + 1 o p_103655_ + 2 o p_103656_ + 3 o p_103657_ + 4 o p_103658_ + 5 o p_103659_ + a (Lbfj;FFF)V m_6839_ + 0 o p_103649_ + 1 o p_103650_ + 2 o p_103651_ + 3 o p_103652_ + a (Lbsh;FFF)V m_6839_ + 0 o p_103661_ + 1 o p_103662_ + 2 o p_103663_ + 3 o p_103664_ + c ()Lfek; m_170901_ + static +fcv net/minecraft/client/model/SheepModel + j f_103672_ + (Lfee;)V + 0 o p_170903_ + a (Lbsh;FFFFF)V m_6973_ + 0 o p_103692_ + 1 o p_103693_ + 2 o p_103694_ + 3 o p_103695_ + 4 o p_103696_ + 5 o p_103697_ + a (Lbfj;FFFFF)V m_6973_ + 0 o p_103680_ + 1 o p_103681_ + 2 o p_103682_ + 3 o p_103683_ + 4 o p_103684_ + 5 o p_103685_ + a (Lbfj;FFF)V m_6839_ + 0 o p_103675_ + 1 o p_103676_ + 2 o p_103677_ + 3 o p_103678_ + a (Lbsh;FFF)V m_6839_ + 0 o p_103687_ + 1 o p_103688_ + 2 o p_103689_ + 3 o p_103690_ + c ()Lfek; m_170904_ + static +fcw net/minecraft/client/model/ShieldModel + a f_170905_ + b f_170906_ + c f_170907_ + d f_170908_ + e f_170909_ + f f_103698_ + g f_103699_ + (Lfee;)V + 0 o p_170911_ + a ()Lfek; m_170912_ + static + a (Leij;Lein;IIFFFF)V m_7695_ + 0 o p_103703_ + 1 o p_103704_ + 2 o p_103705_ + 3 o p_103706_ + 4 o p_103707_ + 5 o p_103708_ + 6 o p_103709_ + 7 o p_103710_ + b ()Lfee; m_103701_ + c ()Lfee; m_103711_ +fcx net/minecraft/client/model/ShulkerBulletModel + a f_170913_ + b f_170914_ + f f_103712_ + (Lfee;)V + 0 o p_170916_ + a (Lbfj;FFFFF)V m_6973_ + 0 o p_103716_ + 1 o p_103717_ + 2 o p_103718_ + 3 o p_103719_ + 4 o p_103720_ + 5 o p_103721_ + a ()Lfee; m_142109_ + b ()Lfek; m_170917_ + static +fcy net/minecraft/client/model/ShulkerModel + a f_170919_ + b f_170920_ + f f_103722_ + g f_103723_ + h f_103724_ + (Lfee;)V + 0 o p_170922_ + a (Lbfj;FFFFF)V m_6973_ + 0 o p_103728_ + 1 o p_103729_ + 2 o p_103730_ + 3 o p_103731_ + 4 o p_103732_ + 5 o p_103733_ + a ()Lfek; m_170923_ + static + a (Lbwi;FFFFF)V m_6973_ + 0 o p_103735_ + 1 o p_103736_ + 2 o p_103737_ + 3 o p_103738_ + 4 o p_103739_ + 5 o p_103740_ + b ()Lfee; m_103742_ + c ()Lfee; m_103743_ + d ()Ljava/lang/Iterable; m_6195_ +fcz net/minecraft/client/model/SilverfishModel + a f_170924_ + b f_170925_ + f f_103744_ + g f_103745_ + h f_103748_ + i f_103749_ + ()V + static + (Lfee;)V + 0 o p_170927_ + a (Lbfj;FFFFF)V m_6973_ + 0 o p_103754_ + 1 o p_103755_ + 2 o p_103756_ + 3 o p_103757_ + 4 o p_103758_ + 5 o p_103759_ + a (I)Ljava/lang/String; m_170929_ + static + 0 o p_170930_ + a (Lfee;I)Lfee; m_170931_ + static + 0 o p_170932_ + 1 o p_170933_ + a ()Lfee; m_142109_ + b (Lfee;I)Lfee; m_170937_ + static + 0 o p_170938_ + 1 o p_170939_ + b (I)Ljava/lang/String; m_170935_ + static + 0 o p_170936_ + b ()Lfek; m_170928_ + static +fd net/minecraft/commands/arguments/blocks/BlockInput + a f_114662_ + b f_114663_ + c f_114664_ + (Ldcb;Ljava/util/Set;Lqr;)V + 0 o p_114666_ + 1 o p_114667_ + 2 o p_114668_ + a (Ldcf;)Z test + 0 o p_114675_ + a ()Ldcb; m_114669_ + a (Laif;Lgu;I)Z m_114670_ + 0 o p_114671_ + 1 o p_114672_ + 2 o p_114673_ + a (Laif;Lgu;)Z m_173523_ + 0 o p_173524_ + 1 o p_173525_ + b ()Ljava/util/Set; m_173526_ + test (Ljava/lang/Object;)Z test + 0 o p_114677_ +fda net/minecraft/client/model/SkeletonModel + (Lfee;)V + 0 o p_170941_ + a (Lbgb;FFF)V m_6839_ + 0 o p_103793_ + 1 o p_103794_ + 2 o p_103795_ + 3 o p_103796_ + a (Lbgb;FFFFF)V m_6973_ + 0 o p_103798_ + 1 o p_103799_ + 2 o p_103800_ + 3 o p_103801_ + 4 o p_103802_ + 5 o p_103803_ + a (Lbfj;FFFFF)V m_6973_ + 0 o p_103771_ + 1 o p_103772_ + 2 o p_103773_ + 3 o p_103774_ + 4 o p_103775_ + 5 o p_103776_ + a (Lbfj;FFF)V m_6839_ + 0 o p_103766_ + 1 o p_103767_ + 2 o p_103768_ + 3 o p_103769_ + a (Lbfz;FFFFF)V m_6973_ + 0 o p_103786_ + 1 o p_103787_ + 2 o p_103788_ + 3 o p_103789_ + 4 o p_103790_ + 5 o p_103791_ + a (Lbft;Leij;)V m_6002_ + 0 o p_103778_ + 1 o p_103779_ + a (Lbfz;FFF)V m_6839_ + 0 o p_103781_ + 1 o p_103782_ + 2 o p_103783_ + 3 o p_103784_ + c ()Lfek; m_170942_ + static +fdb net/minecraft/client/model/SkullModel + a f_103804_ + b f_170943_ + (Lfee;)V + 0 o p_170945_ + a (FFF)V m_6251_ + 0 o p_103811_ + 1 o p_103812_ + 2 o p_103813_ + a ()Lfem; m_170946_ + static + a (Leij;Lein;IIFFFF)V m_7695_ + 0 o p_103815_ + 1 o p_103816_ + 2 o p_103817_ + 3 o p_103818_ + 4 o p_103819_ + 5 o p_103820_ + 6 o p_103821_ + 7 o p_103822_ + b ()Lfek; m_170947_ + static + c ()Lfek; m_170948_ + static +fdc net/minecraft/client/model/SkullModelBase + ()V + a (FFF)V m_6251_ + 0 o p_170950_ + 1 o p_170951_ + 2 o p_170952_ +fdd net/minecraft/client/model/SlimeModel + a f_170953_ + (Lfee;)V + 0 o p_170955_ + a (Lbfj;FFFFF)V m_6973_ + 0 o p_103831_ + 1 o p_103832_ + 2 o p_103833_ + 3 o p_103834_ + 4 o p_103835_ + 5 o p_103836_ + a ()Lfee; m_142109_ + b ()Lfek; m_170956_ + static + c ()Lfek; m_170958_ + static +fde net/minecraft/client/model/SnifferModel + a f_276540_ + b f_278124_ + f f_271235_ + g f_273862_ + (Lfee;)V + 0 o p_272867_ + a (Lbfj;FFFFF)V m_6973_ + 0 o p_272623_ + 1 o p_273304_ + 2 o p_272970_ + 3 o p_273393_ + 4 o p_273603_ + 5 o p_272911_ + a (Lbtx;FFFFF)V m_6973_ + 0 o p_273213_ + 1 o p_273252_ + 2 o p_273344_ + 3 o p_272633_ + 4 o p_272774_ + 5 o p_273206_ + a ()Lfee; m_142109_ + b ()Lfek; m_271896_ + static +fdf net/minecraft/client/model/SnowGolemModel + a f_170959_ + b f_170960_ + f f_170961_ + g f_103839_ + h f_170962_ + i f_170963_ + (Lfee;)V + 0 o p_170965_ + a (Lbfj;FFFFF)V m_6973_ + 0 o p_103845_ + 1 o p_103846_ + 2 o p_103847_ + 3 o p_103848_ + 4 o p_103849_ + 5 o p_103850_ + a ()Lfee; m_142109_ + b ()Lfek; m_170966_ + static + c ()Lfee; m_103851_ +fdg net/minecraft/client/model/SpiderModel + a f_170968_ + b f_170969_ + f f_170970_ + g f_170971_ + h f_170972_ + i f_170973_ + j f_170974_ + k f_103852_ + l f_170975_ + m f_170976_ + n f_170977_ + o f_170978_ + p f_170979_ + q f_170980_ + r f_170981_ + s f_170982_ + (Lfee;)V + 0 o p_170984_ + a (Lbfj;FFFFF)V m_6973_ + 0 o p_103866_ + 1 o p_103867_ + 2 o p_103868_ + 3 o p_103869_ + 4 o p_103870_ + 5 o p_103871_ + a ()Lfee; m_142109_ + b ()Lfek; m_170985_ + static +fdh net/minecraft/client/model/SquidModel + a f_103873_ + b f_170987_ + (Lfee;)V + 0 o p_170989_ + a (Lbfj;FFFFF)V m_6973_ + 0 o p_103878_ + 1 o p_103879_ + 2 o p_103880_ + 3 o p_103881_ + 4 o p_103882_ + 5 o p_103883_ + a (I)Ljava/lang/String; m_170991_ + static + 0 o p_170992_ + a (Lfee;I)Lfee; m_170993_ + static + 0 o p_170994_ + 1 o p_170995_ + a ()Lfee; m_142109_ + b ()Lfek; m_170990_ + static +fdi net/minecraft/client/model/StriderModel + a f_170997_ + b f_170998_ + f f_170999_ + g f_171000_ + h f_171001_ + i f_171002_ + j f_171003_ + k f_103884_ + l f_103885_ + m f_103886_ + n f_171004_ + o f_171005_ + p f_171006_ + q f_171007_ + r f_171008_ + s f_171009_ + (Lfee;)V + 0 o p_171011_ + a (Lbfj;FFFFF)V m_6973_ + 0 o p_103896_ + 1 o p_103897_ + 2 o p_103898_ + 3 o p_103899_ + 4 o p_103900_ + 5 o p_103901_ + a (Lbwp;FFFFF)V m_6973_ + 0 o p_103903_ + 1 o p_103904_ + 2 o p_103905_ + 3 o p_103906_ + 4 o p_103907_ + 5 o p_103908_ + a ()Lfee; m_142109_ + b ()Lfek; m_171012_ + static +fdj net/minecraft/client/model/TadpoleModel + a f_233440_ + b f_233441_ + (Lfee;)V + 0 o p_233443_ + a (Lbtd;FFFFF)V m_6973_ + 0 o p_233453_ + 1 o p_233454_ + 2 o p_233455_ + 3 o p_233456_ + 4 o p_233457_ + 5 o p_233458_ + a (Lbfj;FFFFF)V m_6973_ + 0 o p_233446_ + 1 o p_233447_ + 2 o p_233448_ + 3 o p_233449_ + 4 o p_233450_ + 5 o p_233451_ + a ()Ljava/lang/Iterable; m_5607_ + b ()Ljava/lang/Iterable; m_5608_ + c ()Lfek; m_233460_ + static +fdk net/minecraft/client/model/TridentModel + a f_103914_ + b f_171014_ + ()V + static + (Lfee;)V + 0 o p_171016_ + a ()Lfek; m_171017_ + static + a (Leij;Lein;IIFFFF)V m_7695_ + 0 o p_103919_ + 1 o p_103920_ + 2 o p_103921_ + 3 o p_103922_ + 4 o p_103923_ + 5 o p_103924_ + 6 o p_103925_ + 7 o p_103926_ +fdl net/minecraft/client/model/TropicalFishModelA + a f_171018_ + b f_103953_ + (Lfee;)V + 0 o p_171020_ + a (Lbfj;FFFFF)V m_6973_ + 0 o p_103961_ + 1 o p_103962_ + 2 o p_103963_ + 3 o p_103964_ + 4 o p_103965_ + 5 o p_103966_ + a (Lfei;)Lfek; m_171021_ + static + 0 o p_171022_ + a ()Lfee; m_142109_ +fdm net/minecraft/client/model/TropicalFishModelB + a f_171034_ + b f_103968_ + (Lfee;)V + 0 o p_171036_ + a (Lbfj;FFFFF)V m_6973_ + 0 o p_103977_ + 1 o p_103978_ + 2 o p_103979_ + 3 o p_103980_ + 4 o p_103981_ + 5 o p_103982_ + a (Lfei;)Lfek; m_171037_ + static + 0 o p_171038_ + a ()Lfee; m_142109_ +fdn net/minecraft/client/model/TurtleModel + j f_171040_ + k f_103983_ + (Lfee;)V + 0 o p_171042_ + a (Lbfj;FFFFF)V m_6973_ + 0 o p_103987_ + 1 o p_103988_ + 2 o p_103989_ + 3 o p_103990_ + 4 o p_103991_ + 5 o p_103992_ + a (Leij;Lein;IIFFFF)V m_7695_ + 0 o p_104001_ + 1 o p_104002_ + 2 o p_104003_ + 3 o p_104004_ + 4 o p_104005_ + 5 o p_104006_ + 6 o p_104007_ + 7 o p_104008_ + a (Lbsm;FFFFF)V m_6973_ + 0 o p_103994_ + 1 o p_103995_ + 2 o p_103996_ + 3 o p_103997_ + 4 o p_103998_ + 5 o p_103999_ + b ()Ljava/lang/Iterable; m_5608_ + c ()Lfek; m_171043_ + static +fdo net/minecraft/client/model/VexModel + a f_257017_ + b f_256999_ + f f_257013_ + g f_256879_ + h f_104011_ + i f_104010_ + j f_263122_ + (Lfee;)V + 0 o p_171045_ + a (Lbwq;FFFFF)V m_6973_ + 0 o p_104028_ + 1 o p_104029_ + 2 o p_104030_ + 3 o p_104031_ + 4 o p_104032_ + 5 o p_104033_ + a (Lbfj;FFFFF)V m_6973_ + 0 o p_104014_ + 1 o p_104015_ + 2 o p_104016_ + 3 o p_104017_ + 4 o p_104018_ + 5 o p_104019_ + a (Lcfz;Lcfz;F)V m_264076_ + 0 o p_265484_ + 1 o p_265329_ + 2 o p_265125_ + a (Lbft;Leij;)V m_6002_ + 0 o p_259770_ + 1 o p_260351_ + a ()Lfee; m_142109_ + a (Leij;Z)V m_263220_ + 0 o p_263343_ + 1 o p_263414_ + b ()Lfek; m_171046_ + static +fdp net/minecraft/client/model/VillagerHeadModel + a (Z)V m_7491_ + 0 o p_104035_ +fdq net/minecraft/client/model/VillagerModel + a f_104044_ + b f_171047_ + f f_104036_ + g f_104037_ + h f_104038_ + i f_171048_ + j f_171049_ + (Lfee;)V + 0 o p_171051_ + a (Lbfj;FFFFF)V m_6973_ + 0 o p_104053_ + 1 o p_104054_ + 2 o p_104055_ + 3 o p_104056_ + 4 o p_104057_ + 5 o p_104058_ + a (Z)V m_7491_ + 0 o p_104060_ + a ()Lfee; m_142109_ + b ()Lfem; m_171052_ + static + d ()Lfee; m_5585_ +fdr net/minecraft/client/model/WardenModel + a f_233493_ + b f_233494_ + f f_233495_ + g f_233496_ + h f_233497_ + i f_233498_ + j f_233499_ + k f_233500_ + l f_233501_ + m f_233502_ + n f_233503_ + o f_233504_ + p f_233505_ + q f_233506_ + r f_233507_ + s f_233508_ + t f_233509_ + u f_233510_ + (Lfee;)V + 0 o p_233512_ + a (F)V m_233514_ + 0 o p_233515_ + a (Lbxs;FFFFF)V m_6973_ + 0 o p_233531_ + 1 o p_233532_ + 2 o p_233533_ + 3 o p_233534_ + 4 o p_233535_ + 5 o p_233536_ + a (FF)V m_233516_ + 0 o p_233517_ + 1 o p_233518_ + a (Lbfj;FFFFF)V m_6973_ + 0 o p_233520_ + 1 o p_233521_ + 2 o p_233522_ + 3 o p_233523_ + 4 o p_233524_ + 5 o p_233525_ + a (Lbxs;FF)V m_233526_ + 0 o p_233527_ + 1 o p_233528_ + 2 o p_233529_ + a ()Lfee; m_142109_ + b ()Lfek; m_233537_ + static + b (FF)V m_233538_ + 0 o p_233539_ + 1 o p_233540_ + c ()Ljava/util/List; m_233541_ + d ()Ljava/util/List; m_233542_ + e ()Ljava/util/List; m_233543_ + f ()Ljava/util/List; m_233544_ + g ()V m_233545_ +fds net/minecraft/client/model/WaterPatchModel + c ()Lfee; m_102282_ +fdt net/minecraft/client/model/WitchModel + b f_104062_ + (Lfee;)V + 0 o p_171055_ + a (Lbfj;FFFFF)V m_6973_ + 0 o p_104067_ + 1 o p_104068_ + 2 o p_104069_ + 3 o p_104070_ + 4 o p_104071_ + 5 o p_104072_ + b (Z)V m_104074_ + 0 o p_104075_ + c ()Lfek; m_171056_ + static + e ()Lfee; m_104073_ +fdu net/minecraft/client/model/WitherBossModel + a f_171057_ + b f_171058_ + f f_171059_ + g f_171060_ + h f_171061_ + i f_171062_ + j f_171063_ + k f_171064_ + l f_171065_ + m f_171066_ + n f_171067_ + o f_171068_ + (Lfee;)V + 0 o p_171070_ + a (Lbuv;Lfee;I)V m_171071_ + static + 0 o p_171072_ + 1 o p_171073_ + 2 o p_171074_ + a (Lbfj;FFFFF)V m_6973_ + 0 o p_104088_ + 1 o p_104089_ + 2 o p_104090_ + 3 o p_104091_ + 4 o p_104092_ + 5 o p_104093_ + a (Lfei;)Lfek; m_171075_ + static + 0 o p_171076_ + a (Lbfj;FFF)V m_6839_ + 0 o p_104083_ + 1 o p_104084_ + 2 o p_104085_ + 3 o p_104086_ + a (Lbuv;FFFFF)V m_6973_ + 0 o p_104100_ + 1 o p_104101_ + 2 o p_104102_ + 3 o p_104103_ + 4 o p_104104_ + 5 o p_104105_ + a (Lbuv;FFF)V m_6839_ + 0 o p_104095_ + 1 o p_104096_ + 2 o p_104097_ + 3 o p_104098_ + a ()Lfee; m_142109_ +fdv net/minecraft/client/model/WolfModel + a f_171078_ + b f_171079_ + f f_171080_ + g f_104107_ + h f_104108_ + i f_104109_ + j f_171081_ + k f_171082_ + l f_171083_ + m f_171084_ + n f_104114_ + o f_104115_ + p f_104116_ + q f_171085_ + (Lfee;)V + 0 o p_171087_ + a (Lbfj;FFFFF)V m_6973_ + 0 o p_104125_ + 1 o p_104126_ + 2 o p_104127_ + 3 o p_104128_ + 4 o p_104129_ + 5 o p_104130_ + a (Lbfj;FFF)V m_6839_ + 0 o p_104120_ + 1 o p_104121_ + 2 o p_104122_ + 3 o p_104123_ + a ()Ljava/lang/Iterable; m_5607_ + a (Lbso;FFFFF)V m_6973_ + 0 o p_104137_ + 1 o p_104138_ + 2 o p_104139_ + 3 o p_104140_ + 4 o p_104141_ + 5 o p_104142_ + a (Lbso;FFF)V m_6839_ + 0 o p_104132_ + 1 o p_104133_ + 2 o p_104134_ + 3 o p_104135_ + b ()Ljava/lang/Iterable; m_5608_ + c ()Lfek; m_171088_ + static +fdw net/minecraft/client/model/ZombieModel + (Lfee;)V + 0 o p_171090_ + a (Lbwv;)Z m_7134_ + 0 o p_104155_ + a (Lbwc;)Z m_7134_ + 0 o p_104153_ +fdx net/minecraft/client/model/ZombieVillagerModel + a f_104156_ + (Lfee;)V + 0 o p_171092_ + a (Lbfj;FFFFF)V m_6973_ + 0 o p_104161_ + 1 o p_104162_ + 2 o p_104163_ + 3 o p_104164_ + 4 o p_104165_ + 5 o p_104166_ + a (Lbwv;FFFFF)V m_6973_ + 0 o p_104175_ + 1 o p_104176_ + 2 o p_104177_ + 3 o p_104178_ + 4 o p_104179_ + 5 o p_104180_ + a (Lfei;)Lfek; m_171093_ + static + 0 o p_171094_ + a (Z)V m_7491_ + 0 o p_104182_ + a (Lbfz;FFFFF)V m_6973_ + 0 o p_104168_ + 1 o p_104169_ + 2 o p_104170_ + 3 o p_104171_ + 4 o p_104172_ + 5 o p_104173_ + c ()Lfek; m_171095_ + static +fdy net/minecraft/client/model/dragon/DragonHeadModel + a f_104183_ + b f_104184_ + (Lfee;)V + 0 o p_171097_ + a (FFF)V m_6251_ + 0 o p_104188_ + 1 o p_104189_ + 2 o p_104190_ + a ()Lfek; m_171098_ + static + a (Leij;Lein;IIFFFF)V m_7695_ + 0 o p_104192_ + 1 o p_104193_ + 2 o p_104194_ + 3 o p_104195_ + 4 o p_104196_ + 5 o p_104197_ + 6 o p_104198_ + 7 o p_104199_ +fdz net/minecraft/client/model/dragon/package-info +fe net/minecraft/commands/arguments/blocks/BlockPredicateArgument + a f_115566_ + b f_234624_ + ()V + static + (Ldm;)V + 0 o p_234626_ + a (Lcom/mojang/brigadier/StringReader;)Lfe$b; parse + 0 o p_115572_ + a (Lhg;Lcom/mojang/brigadier/StringReader;)Lfe$b; m_234633_ + static + 0 o p_234634_ + 1 o p_234635_ + a (Lfg$b;)Lfe$b; m_234631_ + static + 0 o p_234632_ + a (Lcom/mojang/brigadier/context/CommandContext;Ljava/lang/String;)Ljava/util/function/Predicate; m_115573_ + static + 0 o p_115574_ + 1 o p_115575_ + a (Lfg$a;)Lfe$b; m_234629_ + static + 0 o p_234630_ + a (Ldm;)Lfe; m_234627_ + static + 0 o p_234628_ + getExamples ()Ljava/util/Collection; getExamples + listSuggestions (Lcom/mojang/brigadier/context/CommandContext;Lcom/mojang/brigadier/suggestion/SuggestionsBuilder;)Ljava/util/concurrent/CompletableFuture; listSuggestions + 0 o p_115587_ + 1 o p_115588_ + parse (Lcom/mojang/brigadier/StringReader;)Ljava/lang/Object; parse + 0 o p_115590_ +fe$a net/minecraft/commands/arguments/blocks/BlockPredicateArgument$BlockPredicate + a f_115591_ + b f_115592_ + c f_115593_ + (Ldcb;Ljava/util/Set;Lqr;)V + 0 o p_115595_ + 1 o p_115596_ + 2 o p_115597_ + a ()Z m_183631_ + a (Ldcf;)Z test + 0 o p_115599_ + test (Ljava/lang/Object;)Z test + 0 o p_115601_ +fe$b net/minecraft/commands/arguments/blocks/BlockPredicateArgument$Result + a ()Z m_183631_ +fe$c net/minecraft/commands/arguments/blocks/BlockPredicateArgument$TagPredicate + a f_115604_ + b f_115605_ + c f_115606_ + (Lhi;Ljava/util/Map;Lqr;)V + 0 o p_234637_ + 1 o p_234638_ + 2 o p_234639_ + a ()Z m_183631_ + a (Ldcf;)Z test + 0 o p_115617_ + test (Ljava/lang/Object;)Z test + 0 o p_115619_ +fea net/minecraft/client/model/geom/EntityModelSet + a f_171099_ + ()V + a (Lakx;)V m_6213_ + 0 o p_171102_ + a (Lfec;)Lfee; m_171103_ + 0 o p_171104_ +feb net/minecraft/client/model/geom/LayerDefinitions + a f_171105_ + b f_171106_ + c f_171107_ + ()V + static + ()V + a (Lcom/google/common/collect/ImmutableMap$Builder;Lfek;Lddo;)V m_244702_ + static + 0 o p_247862_ + 1 o p_247863_ + 2 o p_247864_ + a (Lcom/google/common/collect/ImmutableMap;Lfec;)Z m_171115_ + static + 0 o p_171116_ + 1 o p_171117_ + a ()Ljava/util/Map; m_171110_ + static + b (Lcom/google/common/collect/ImmutableMap$Builder;Lfek;Lddo;)V m_171111_ + static + 0 o p_171112_ + 1 o p_171113_ + 2 o p_171114_ +fec net/minecraft/client/model/geom/ModelLayerLocation + a f_171118_ + b f_171119_ + (Lacq;Ljava/lang/String;)V + 0 o p_171121_ + 1 o p_171122_ + a ()Lacq; m_171123_ + b ()Ljava/lang/String; m_171124_ + equals (Ljava/lang/Object;)Z equals + 0 o p_171126_ + hashCode ()I hashCode + toString ()Ljava/lang/String; toString +fed net/minecraft/client/model/geom/ModelLayers + A f_171284_ + B f_171285_ + C f_171129_ + D f_171130_ + E f_271426_ + F f_271216_ + G f_171131_ + H f_171132_ + I f_171133_ + J f_171134_ + K f_171135_ + L f_171136_ + M f_171137_ + N f_171138_ + O f_171139_ + P f_171140_ + Q f_171141_ + R f_171142_ + S f_171143_ + T f_171144_ + U f_171145_ + V f_171146_ + W f_171147_ + X f_171148_ + Y f_233546_ + Z f_171149_ + a f_233547_ + aA f_171203_ + aB f_171204_ + aC f_171205_ + aD f_171206_ + aE f_171207_ + aF f_171156_ + aG f_171157_ + aH f_260668_ + aI f_171158_ + aJ f_171159_ + aK f_171160_ + aL f_171161_ + aM f_171162_ + aN f_171163_ + aO f_171164_ + aP f_171165_ + aQ f_171166_ + aR f_171167_ + aS f_171168_ + aT f_171169_ + aU f_171170_ + aV f_171171_ + aW f_171172_ + aX f_171173_ + aY f_171174_ + aZ f_171175_ + aa f_171150_ + ab f_171151_ + ac f_171152_ + ad f_171153_ + ae f_171154_ + af f_171182_ + ag f_171183_ + ah f_171184_ + ai f_171185_ + aj f_171186_ + ak f_171187_ + al f_171188_ + am f_171189_ + an f_171190_ + ao f_171191_ + ap f_171192_ + aq f_171193_ + ar f_171194_ + as f_171195_ + at f_171196_ + au f_171197_ + av f_171198_ + aw f_171199_ + ax f_171200_ + ay f_171201_ + az f_171202_ + b f_171155_ + bA f_171253_ + bB f_171254_ + bC f_171255_ + bD f_171256_ + bE f_171257_ + bF f_171258_ + bG f_171259_ + bH f_171260_ + bI f_171209_ + bJ f_171210_ + bK f_171211_ + bL f_233548_ + bM f_171212_ + bN f_171213_ + bO f_171214_ + bP f_171215_ + bQ f_171216_ + bR f_171217_ + bS f_171218_ + bT f_171219_ + bU f_171220_ + bV f_171221_ + bW f_171222_ + bX f_171223_ + bY f_171224_ + bZ f_171225_ + ba f_171176_ + bb f_171177_ + bc f_171178_ + bd f_171179_ + be f_171180_ + bf f_171181_ + bg f_171235_ + bh f_171236_ + bi f_171237_ + bj f_171238_ + bk f_171239_ + bl f_171240_ + bm f_171241_ + bn f_171242_ + bo f_271465_ + bp f_171243_ + bq f_171244_ + br f_171245_ + bs f_171246_ + bt f_171247_ + bu f_171248_ + bv f_171249_ + bw f_171250_ + bx f_171251_ + by f_171252_ + bz f_233549_ + c f_171208_ + ca f_171226_ + cb f_171227_ + cc f_171228_ + cd f_171229_ + ce f_171230_ + cf f_171231_ + cg f_171232_ + ch f_171233_ + ci f_171234_ + cj f_171262_ + d f_171261_ + e f_171263_ + f f_171264_ + g f_171265_ + h f_171266_ + i f_171267_ + j f_171268_ + k f_171269_ + l f_171270_ + m f_171271_ + n f_171272_ + o f_171273_ + p f_244030_ + q f_171274_ + r f_171275_ + s f_171276_ + t f_171277_ + u f_171278_ + v f_171279_ + w f_171280_ + x f_171281_ + y f_171282_ + z f_171283_ + ()V + static + ()V + a (Lcah$b;)Lfec; m_246688_ + static + 0 o p_252002_ + a (Ljava/lang/String;)Lfec; m_171293_ + static + 0 o p_171294_ + a (Lddo;)Lfec; m_171291_ + static + 0 o p_171292_ + a ()Ljava/util/stream/Stream; m_171288_ + static + a (Ljava/lang/String;Ljava/lang/String;)Lfec; m_171295_ + static + 0 o p_171296_ + 1 o p_171297_ + b (Lcah$b;)Lfec; m_246069_ + static + 0 o p_248520_ + b (Lddo;)Lfec; m_247439_ + static + 0 o p_252225_ + b (Ljava/lang/String;Ljava/lang/String;)Lfec; m_171300_ + static + 0 o p_171301_ + 1 o p_171302_ + b (Ljava/lang/String;)Lfec; m_171298_ + static + 0 o p_171299_ + c (Ljava/lang/String;)Lfec; m_171303_ + static + 0 o p_171304_ + c (Lcah$b;)Lfec; m_171289_ + static + 0 o p_171290_ + d (Lcah$b;)Lfec; m_233550_ + static + 0 o p_233551_ +fee net/minecraft/client/model/geom/ModelPart + a f_233552_ + b f_104200_ + c f_104201_ + d f_104202_ + e f_104203_ + f f_104204_ + g f_104205_ + h f_233553_ + i f_233554_ + j f_233555_ + k f_104207_ + l f_233556_ + m f_104212_ + n f_104213_ + o f_233557_ + (Ljava/util/List;Ljava/util/Map;)V + 0 o p_171306_ + 1 o p_171307_ + a (Leij;Lfee$d;)V m_171309_ + 0 o p_171310_ + 1 o p_171311_ + a (Leij$a;Lein;IIFFFF)V m_104290_ + 0 o p_104291_ + 1 o p_104292_ + 2 o p_104293_ + 3 o p_104294_ + 4 o p_104295_ + 5 o p_104296_ + 6 o p_104297_ + 7 o p_104298_ + a (Lfee;)V m_104315_ + 0 o p_104316_ + a (Lfeg;)V m_233560_ + 0 o p_233561_ + a (Leij;Lein;IIFFFF)V m_104306_ + 0 o p_104307_ + 1 o p_104308_ + 2 o p_104309_ + 3 o p_104310_ + 4 o p_104311_ + 5 o p_104312_ + 6 o p_104313_ + 7 o p_104314_ + a (Lapf;)Lfee$a; m_233558_ + 0 o p_233559_ + a (Leij;Lfee$d;Ljava/lang/String;)V m_171312_ + 0 o p_171313_ + 1 o p_171314_ + 2 o p_171315_ + a (Leij;Lein;II)V m_104301_ + 0 o p_104302_ + 1 o p_104303_ + 2 o p_104304_ + 3 o p_104305_ + a (Leij;)V m_104299_ + 0 o p_104300_ + a (FFF)V m_104227_ + 0 o p_104228_ + 1 o p_104229_ + 2 o p_104230_ + a ()Lfeg; m_171308_ + a (Ljava/lang/String;)Z m_233562_ + 0 o p_233563_ + a (Lorg/joml/Vector3f;)V m_252854_ + 0 o p_253873_ + a (Leij;Lfee$d;Ljava/lang/String;Ljava/lang/String;Lfee;)V m_171316_ + static + 0 o p_171317_ + 1 o p_171318_ + 2 o p_171319_ + 3 o p_171320_ + 4 o p_171321_ + b (Lorg/joml/Vector3f;)V m_252899_ + 0 o p_253983_ + b (Lfeg;)V m_171322_ + 0 o p_171323_ + b (FFF)V m_171327_ + 0 o p_171328_ + 1 o p_171329_ + 2 o p_171330_ + b (Ljava/lang/String;)Lfee; m_171324_ + 0 o p_171325_ + b ()Lfeg; m_233566_ + c (Lorg/joml/Vector3f;)V m_253072_ + 0 o p_253957_ + c ()V m_233569_ + d ()Z m_171326_ + e ()Ljava/util/stream/Stream; m_171331_ +fee$a net/minecraft/client/model/geom/ModelPart$Cube + a f_104335_ + b f_104336_ + c f_104337_ + d f_104338_ + e f_104339_ + f f_104340_ + g f_104341_ + (IIFFFFFFFFFZFFLjava/util/Set;)V + 0 o p_273701_ + 1 o p_273034_ + 2 o p_272824_ + 3 o p_273777_ + 4 o p_273748_ + 5 o p_273722_ + 6 o p_273763_ + 7 o p_272823_ + 8 o p_272945_ + 9 o p_272790_ + 10 o p_272870_ + 11 o p_273589_ + 12 o p_273591_ + 13 o p_273313_ + 14 o p_273291_ + a (Leij$a;Lein;IIFFFF)V m_171332_ + 0 o p_171333_ + 1 o p_171334_ + 2 o p_171335_ + 3 o p_171336_ + 4 o p_171337_ + 5 o p_171338_ + 6 o p_171339_ + 7 o p_171340_ +fee$b net/minecraft/client/model/geom/ModelPart$Polygon + a f_104359_ + b f_104360_ + ([Lfee$c;FFFFFFZLha;)V + 0 o p_104362_ + 1 o p_104363_ + 2 o p_104364_ + 3 o p_104365_ + 4 o p_104366_ + 5 o p_104367_ + 6 o p_104368_ + 7 o p_104369_ + 8 o p_104370_ +fee$c net/minecraft/client/model/geom/ModelPart$Vertex + a f_104371_ + b f_104372_ + c f_104373_ + (FFFFF)V + 0 o p_104375_ + 1 o p_104376_ + 2 o p_104377_ + 3 o p_104378_ + 4 o p_104379_ + (Lorg/joml/Vector3f;FF)V + 0 o p_253667_ + 1 o p_253662_ + 2 o p_254308_ + a (FF)Lfee$c; m_104384_ + 0 o p_104385_ + 1 o p_104386_ +fee$d net/minecraft/client/model/geom/ModelPart$Visitor + visit (Leij$a;Ljava/lang/String;ILfee$a;)V m_171341_ + 0 o p_171342_ + 1 o p_171343_ + 2 o p_171344_ + 3 o p_171345_ +fef net/minecraft/client/model/geom/PartNames + A f_171401_ + B f_171402_ + C f_171346_ + D f_171347_ + E f_171348_ + F f_171349_ + G f_171350_ + H f_171351_ + I f_171352_ + J f_171353_ + K f_171354_ + L f_171355_ + M f_171356_ + N f_171357_ + O f_171358_ + P f_171359_ + Q f_171360_ + R f_171361_ + S f_171362_ + T f_171363_ + U f_171364_ + V f_171365_ + W f_171366_ + X f_171367_ + Y f_171368_ + Z f_171369_ + a f_171372_ + aa f_171370_ + ab f_171371_ + ac f_171373_ + ad f_171374_ + ae f_171375_ + af f_171376_ + ag f_171377_ + ah f_233572_ + ai f_233573_ + aj f_233574_ + ak f_233575_ + al f_233576_ + am f_233577_ + an f_233578_ + ao f_233579_ + ap f_233580_ + aq f_233581_ + ar f_233582_ + as f_233583_ + at f_233584_ + au f_233585_ + b f_171378_ + c f_171379_ + d f_171380_ + e f_171381_ + f f_171382_ + g f_171383_ + h f_171384_ + i f_171385_ + j f_171386_ + k f_171387_ + l f_171388_ + m f_171389_ + n f_171390_ + o f_171391_ + p f_171392_ + q f_171393_ + r f_171394_ + s f_171395_ + t f_171396_ + u f_171397_ + v f_271385_ + w f_271292_ + x f_171398_ + y f_171399_ + z f_171400_ + ()V +feg net/minecraft/client/model/geom/PartPose + a f_171404_ + b f_171405_ + c f_171406_ + d f_171407_ + e f_171408_ + f f_171409_ + g f_171410_ + ()V + static + (FFFFFF)V + 0 o p_171413_ + 1 o p_171414_ + 2 o p_171415_ + 3 o p_171416_ + 4 o p_171417_ + 5 o p_171418_ + a (FFF)Lfeg; m_171419_ + static + 0 o p_171420_ + 1 o p_171421_ + 2 o p_171422_ + a (FFFFFF)Lfeg; m_171423_ + static + 0 o p_171424_ + 1 o p_171425_ + 2 o p_171426_ + 3 o p_171427_ + 4 o p_171428_ + 5 o p_171429_ + b (FFF)Lfeg; m_171430_ + static + 0 o p_171431_ + 1 o p_171432_ + 2 o p_171433_ +feh net/minecraft/client/model/geom/builders/CubeDefinition + a f_171434_ + b f_171435_ + c f_171436_ + d f_171437_ + e f_171438_ + f f_171439_ + g f_171440_ + h f_271491_ + (Ljava/lang/String;FFFFFFFFLfei;ZFFLjava/util/Set;)V + 0 o p_273024_ + 1 o p_273620_ + 2 o p_273436_ + 3 o p_273139_ + 4 o p_273013_ + 5 o p_272874_ + 6 o p_273100_ + 7 o p_273756_ + 8 o p_273105_ + 9 o p_272818_ + 10 o p_273585_ + 11 o p_272829_ + 12 o p_273119_ + 13 o p_273201_ + a (II)Lfee$a; m_171455_ + 0 o p_171456_ + 1 o p_171457_ +fei net/minecraft/client/model/geom/builders/CubeDeformation + a f_171458_ + b f_171459_ + c f_171460_ + d f_171461_ + ()V + static + (FFF)V + 0 o p_171466_ + 1 o p_171467_ + 2 o p_171468_ + (F)V + 0 o p_171464_ + a (FFF)Lfei; m_171471_ + 0 o p_171472_ + 1 o p_171473_ + 2 o p_171474_ + a (F)Lfei; m_171469_ + 0 o p_171470_ +fej net/minecraft/client/model/geom/builders/CubeListBuilder + a f_271199_ + b f_171475_ + c f_171476_ + d f_171477_ + e f_171478_ + ()V + static + ()V + a (Z)Lfej; m_171555_ + 0 o p_171556_ + a (FFFFFFLjava/util/Set;)Lfej; m_271786_ + 0 o p_272653_ + 1 o p_273044_ + 2 o p_272720_ + 3 o p_273739_ + 4 o p_273613_ + 5 o p_273328_ + 6 o p_273277_ + a (Ljava/lang/String;FFFIIILfei;II)Lfej; m_171544_ + 0 o p_171545_ + 1 o p_171546_ + 2 o p_171547_ + 3 o p_171548_ + 4 o p_171549_ + 5 o p_171550_ + 6 o p_171551_ + 7 o p_171552_ + 8 o p_171553_ + 9 o p_171554_ + a (FFFFFFLfei;)Lfej; m_171488_ + 0 o p_171489_ + 1 o p_171490_ + 2 o p_171491_ + 3 o p_171492_ + 4 o p_171493_ + 5 o p_171494_ + 6 o p_171495_ + a (II)Lfej; m_171514_ + 0 o p_171515_ + 1 o p_171516_ + a (Ljava/lang/String;FFFFFFLfei;)Lfej; m_171525_ + 0 o p_171526_ + 1 o p_171527_ + 2 o p_171528_ + 3 o p_171529_ + 4 o p_171530_ + 5 o p_171531_ + 6 o p_171532_ + 7 o p_171533_ + a (FFFFFFLfei;FF)Lfej; m_171496_ + 0 o p_171497_ + 1 o p_171498_ + 2 o p_171499_ + 3 o p_171500_ + 4 o p_171501_ + 5 o p_171502_ + 6 o p_171503_ + 7 o p_171504_ + 8 o p_171505_ + a (Ljava/lang/String;FFFIIIII)Lfej; m_171534_ + 0 o p_171535_ + 1 o p_171536_ + 2 o p_171537_ + 3 o p_171538_ + 4 o p_171539_ + 5 o p_171540_ + 6 o p_171541_ + 7 o p_171542_ + 8 o p_171543_ + a (Ljava/lang/String;FFFFFF)Lfej; m_171517_ + 0 o p_171518_ + 1 o p_171519_ + 2 o p_171520_ + 3 o p_171521_ + 4 o p_171522_ + 5 o p_171523_ + 6 o p_171524_ + a (FFFFFFZ)Lfej; m_171506_ + 0 o p_171507_ + 1 o p_171508_ + 2 o p_171509_ + 3 o p_171510_ + 4 o p_171511_ + 5 o p_171512_ + 6 o p_171513_ + a ()Lfej; m_171480_ + a (FFFFFF)Lfej; m_171481_ + 0 o p_171482_ + 1 o p_171483_ + 2 o p_171484_ + 3 o p_171485_ + 4 o p_171486_ + 5 o p_171487_ + b ()Ljava/util/List; m_171557_ + c ()Lfej; m_171558_ + static +fek net/minecraft/client/model/geom/builders/LayerDefinition + a f_171559_ + b f_171560_ + (Lfem;Lfel;)V + 0 o p_171562_ + 1 o p_171563_ + a (Lfem;II)Lfek; m_171565_ + static + 0 o p_171566_ + 1 o p_171567_ + 2 o p_171568_ + a ()Lfee; m_171564_ +fel net/minecraft/client/model/geom/builders/MaterialDefinition + a f_171569_ + b f_171570_ + (II)V + 0 o p_171572_ + 1 o p_171573_ +fem net/minecraft/client/model/geom/builders/MeshDefinition + a f_171574_ + ()V + a ()Lfen; m_171576_ +fen net/minecraft/client/model/geom/builders/PartDefinition + a f_171577_ + b f_171578_ + c f_171579_ + (Ljava/util/List;Lfeg;)V + 0 o p_171581_ + 1 o p_171582_ + a (IILfeh;)Lfee$a; m_171586_ + static + 0 o p_171587_ + 1 o p_171588_ + 2 o p_171589_ + a (IILjava/util/Map$Entry;)Lfee; m_171590_ + static + 0 o p_171591_ + 1 o p_171592_ + 2 o p_171593_ + a (II)Lfee; m_171583_ + 0 o p_171584_ + 1 o p_171585_ + a (Ljava/lang/String;)Lfen; m_171597_ + 0 o p_171598_ + a (Lfee;Lfee;)Lfee; m_171594_ + static + 0 o p_171595_ + 1 o p_171596_ + a (Ljava/lang/String;Lfej;Lfeg;)Lfen; m_171599_ + 0 o p_171600_ + 1 o p_171601_ + 2 o p_171602_ +feo net/minecraft/client/model/geom/builders/UVPair + a f_171607_ + b f_171608_ + (FF)V + 0 o p_171610_ + 1 o p_171611_ + a ()F m_171612_ + b ()F m_171613_ + toString ()Ljava/lang/String; toString +fep net/minecraft/client/model/geom/builders/package-info +feq net/minecraft/client/model/geom/package-info +fer net/minecraft/client/model/package-info +fes net/minecraft/client/multiplayer/AccountProfileKeyPairManager + b f_252448_ + c f_252471_ + d f_252484_ + e f_252526_ + f f_252423_ + g f_252428_ + h f_252478_ + ()V + static + (Lcom/mojang/authlib/minecraft/UserApiService;Ljava/util/UUID;Ljava/nio/file/Path;)V + 0 o p_253640_ + 1 o p_254415_ + 2 o p_253813_ + a ()Ljava/util/concurrent/CompletableFuture; m_252904_ + a (Lcom/mojang/authlib/minecraft/UserApiService;)Lbyq; m_253252_ + 0 o p_253844_ + a (Lcom/mojang/authlib/yggdrasil/response/KeyPairResponse;)Lbyr$a; m_253196_ + static + 0 o p_253834_ + a (Ljava/util/Optional;)Ljava/util/concurrent/CompletableFuture; m_253041_ + 0 o p_254074_ + a (Lcom/google/gson/JsonElement;)V m_252881_ + 0 o p_254406_ + a (Lbyq;)V m_253216_ + 0 o p_254227_ + b (Lbyq;)Z m_252791_ + static + 0 o p_254127_ + b (Ljava/util/Optional;)Ljava/util/Optional; m_252828_ + 0 o p_253736_ + b ()Z m_253130_ + c ()Ljava/util/Optional; m_252827_ + d ()Ljava/util/Optional; m_253254_ +fet net/minecraft/client/multiplayer/ClientAdvancements + a f_104387_ + b f_104388_ + c f_285594_ + d f_104389_ + e f_104390_ + f f_104391_ + g f_104392_ + ()V + static + (Lenn;Lfzp;)V + 0 o p_286782_ + 1 o p_286391_ + a (Lfet$a;)V m_104397_ + 0 o p_104398_ + a (Lyt;)V m_104399_ + 0 o p_104400_ + a ()Laf; m_104396_ + a (Lae;Z)V m_104401_ + 0 o p_104402_ + 1 o p_104403_ +fet$a net/minecraft/client/multiplayer/ClientAdvancements$Listener + a (Lae;Lag;)V m_7922_ + 0 o p_104404_ + 1 o p_104405_ + e (Lae;)V m_6896_ + 0 o p_104406_ +feu net/minecraft/client/multiplayer/ClientChunkCache + a f_104407_ + b f_104408_ + c f_104409_ + d f_104410_ + e f_104411_ + ()V + static + (Lfew;I)V + 0 o p_104414_ + 1 o p_104415_ + a (Ldei;II)Z m_104438_ + static + 0 o p_104439_ + 1 o p_104440_ + 2 o p_104441_ + a (I)V m_104416_ + 0 o p_104417_ + a (IILsf;)V m_274444_ + 0 o p_275374_ + 1 o p_275226_ + 2 o p_275745_ + a (IILsf;Lqr;Ljava/util/function/Consumer;)Ldei; m_194116_ + 0 o p_194117_ + 1 o p_194118_ + 2 o p_194119_ + 3 o p_194120_ + 4 o p_194121_ + a (Lcmv;Lhx;)V m_6506_ + 0 o p_104436_ + 1 o p_104437_ + a (Ljava/util/function/BooleanSupplier;Z)V m_201698_ + 0 o p_202421_ + 1 o p_202422_ + a (IILdec;Z)Lddx; m_7587_ + 0 o p_104427_ + 1 o p_104428_ + 2 o p_104429_ + 3 o p_104430_ + b (IILdec;Z)Ldei; m_7587_ + 0 o p_104451_ + 1 o p_104452_ + 2 o p_104453_ + 3 o p_104454_ + b (I)I m_104448_ + static + 0 o p_104449_ + d (II)V m_104455_ + 0 o p_104456_ + 1 o p_104457_ + e ()Ljava/lang/String; m_6754_ + e (II)V m_104459_ + 0 o p_104460_ + 1 o p_104461_ + j ()I m_8482_ + p ()Ldwt; m_7827_ + q ()Lcls; m_7653_ +feu$a net/minecraft/client/multiplayer/ClientChunkCache$Storage + a f_104465_ + b f_104466_ + c f_104467_ + d f_104468_ + e f_104469_ + f f_104470_ + g f_104471_ + (Lfeu;I)V + 0 o p_104473_ + 1 o p_104474_ + a (I)Ldei; m_104479_ + 0 o p_104480_ + a (Ljava/lang/String;)V m_171622_ + 0 o p_171623_ + a (ILdei;)V m_104484_ + 0 o p_104485_ + 1 o p_104486_ + a (ILdei;Ldei;)Ldei; m_104487_ + 0 o p_104488_ + 1 o p_104489_ + 2 o p_104490_ + a (II)I m_104481_ + 0 o p_104482_ + 1 o p_104483_ + b (II)Z m_104500_ + 0 o p_104501_ + 1 o p_104502_ +fev net/minecraft/client/multiplayer/ClientHandshakePacketListenerImpl + a f_104518_ + b f_104519_ + c f_243717_ + d f_104520_ + e f_104521_ + f f_104522_ + g f_104523_ + h f_260722_ + i f_260612_ + j f_285614_ + ()V + static + (Lsd;Lenn;Lffd;Leuq;ZLjava/time/Duration;Ljava/util/function/Consumer;)V + 0 o p_261697_ + 1 o p_261835_ + 2 o p_261938_ + 3 o p_261783_ + 4 o p_261562_ + 5 o p_261673_ + 6 o p_261945_ + a (Ljava/lang/String;)V m_285854_ + 0 o p_286653_ + a (Ljavax/crypto/Cipher;Ljavax/crypto/Cipher;)V m_233591_ + 0 o p_233592_ + 1 o p_233593_ + a (Ljava/lang/String;Labn;Ljavax/crypto/Cipher;Ljavax/crypto/Cipher;)V m_233586_ + 0 o p_233587_ + 1 o p_233588_ + 2 o p_233589_ + 3 o p_233590_ + a ()Z m_6198_ + a (Labg;)V m_7056_ + 0 o p_104547_ + a (Labj;)V m_5800_ + 0 o p_104553_ + a (Labh;)V m_7318_ + 0 o p_104549_ + a (Labi;)V m_5693_ + 0 o p_104551_ + a (Lsw;)V m_7026_ + 0 o p_104543_ + a (Labf;)V m_7254_ + 0 o p_104545_ + b (Ljava/lang/String;)Lsw; m_104531_ + 0 o p_104532_ + c ()Lcom/mojang/authlib/minecraft/MinecraftSessionService; m_104554_ +few net/minecraft/client/multiplayer/ClientLevel + D f_104561_ + E f_104562_ + F f_104563_ + G f_104564_ + H f_104565_ + I f_104566_ + J f_104555_ + K f_104556_ + L f_171628_ + M f_104557_ + N f_104558_ + O f_104559_ + P f_194122_ + Q f_194123_ + R f_233599_ + S f_194124_ + a f_233600_ + b f_171629_ + c f_194125_ + d f_194126_ + e f_171630_ + f f_171631_ + ()V + static + (Lfex;Lfew$a;Lacp;Lhe;IILjava/util/function/Supplier;Lfjv;ZJ)V + 0 o p_205505_ + 1 o p_205506_ + 2 o p_205507_ + 3 o p_205508_ + 4 o p_205509_ + 5 o p_205510_ + 6 o p_205511_ + 7 o p_205512_ + 8 o p_205513_ + 9 o p_205514_ + E ()Ldgb; m_142646_ + F ()Ljava/lang/String; m_46464_ + G ()Lcaw; m_246046_ + I ()Lefg; m_6188_ + J ()Ldeb; m_7726_ + K ()Lefp; m_183324_ + L ()Lefp; m_183326_ + U ()V m_7462_ + a (Lit/unimi/dsi/fastutil/objects/Object2ObjectArrayMap;)V m_194169_ + 0 o p_194170_ + a ()Lffv; m_233601_ + a (DDDDDDLqr;)V m_7228_ + 0 o p_104585_ + 1 o p_104586_ + 2 o p_104587_ + 3 o p_104588_ + 4 o p_104589_ + 5 o p_104590_ + 6 o p_104591_ + a (Lit;DDDDDD)V m_7106_ + 0 o p_104706_ + 1 o p_104707_ + 2 o p_104708_ + 3 o p_104709_ + 4 o p_104710_ + 5 o p_104711_ + 6 o p_104712_ + a (DDDLamg;Lami;FFZ)V m_7785_ + 0 o p_104600_ + 1 o p_104601_ + 2 o p_104602_ + 3 o p_104603_ + 4 o p_104604_ + 5 o p_104605_ + 6 o p_104606_ + 7 o p_104607_ + a (ILbfj;)V m_104627_ + 0 o p_104628_ + 1 o p_104629_ + a (Lgu;)I m_194167_ + 0 o p_194168_ + a (Lbyo;DDDLhe;Lami;FFJ)V m_262808_ + 0 o p_263381_ + 1 o p_263372_ + 2 o p_263404_ + 3 o p_263365_ + 4 o p_263335_ + 5 o p_263417_ + 6 o p_263416_ + 7 o p_263349_ + 8 o p_263408_ + a (Ljava/util/function/BooleanSupplier;)V m_104726_ + 0 o p_104727_ + a (Lefg;)V m_104669_ + 0 o p_104670_ + a (III)Lhe; m_203675_ + 0 o p_205516_ + 1 o p_205517_ + 2 o p_205518_ + a (Lbyo;Lbfj;Lhe;Lami;FFJ)V m_213890_ + 0 o p_263514_ + 1 o p_263536_ + 2 o p_263518_ + 3 o p_263487_ + 4 o p_263538_ + 5 o p_263524_ + 6 o p_263509_ + a (ILbfj$c;)V m_171642_ + 0 o p_171643_ + 1 o p_171644_ + a (Lo;)Lp; m_6026_ + 0 o p_104729_ + a (Lclt;Lclx;Leop;)V m_194152_ + static + 0 o p_194153_ + 1 o p_194154_ + 2 o p_194155_ + a (Lbyo;ILgu;I)V m_5898_ + 0 o p_104654_ + 1 o p_104655_ + 2 o p_104656_ + 3 o p_104657_ + a (Lgu;Ldcb;Leei;)V m_233647_ + 0 o p_233648_ + 1 o p_233649_ + 2 o p_233650_ + a (Luo;)V m_5503_ + 0 o p_104734_ + a (Leei;F)Leei; m_171660_ + 0 o p_171661_ + 1 o p_171662_ + a (DDDLamg;Lami;FFZJ)V m_233602_ + 0 o p_233603_ + 1 o p_233604_ + 2 o p_233605_ + 3 o p_233606_ + 4 o p_233607_ + 5 o p_233608_ + 6 o p_233609_ + 7 o p_233610_ + 8 o p_233611_ + a (Ljava/lang/Runnable;)V m_194171_ + 0 o p_194172_ + a (Lgu;Ldcb;II)Z m_6933_ + 0 o p_233643_ + 1 o p_233644_ + 2 o p_233645_ + 3 o p_233646_ + a (Lbfj;)V m_104639_ + 0 o p_104640_ + a (Lgu;Ldcb;)V m_142052_ + 0 o p_171667_ + 1 o p_171668_ + a (Ljava/util/Map;)V m_171672_ + 0 o p_171673_ + a (Lit;ZDDDDDD)V m_6493_ + 0 o p_104714_ + 1 o p_104715_ + 2 o p_104716_ + 3 o p_104717_ + 4 o p_104718_ + 5 o p_104719_ + 6 o p_104720_ + 7 o p_104721_ + a (Lgu;Ldcb;Lit;Z)V m_104689_ + 0 o p_104690_ + 1 o p_104691_ + 2 o p_104692_ + 3 o p_104693_ + a (DDDDDLit;)V m_104592_ + 0 o p_104593_ + 1 o p_104594_ + 2 o p_104595_ + 3 o p_104596_ + 4 o p_104597_ + 5 o p_104598_ + a (ILgu;I)V m_6801_ + 0 o p_104634_ + 1 o p_104635_ + 2 o p_104636_ + a (Lgu;Ldcb;Ldcb;I)V m_7260_ + 0 o p_104685_ + 1 o p_104686_ + 2 o p_104687_ + 3 o p_104688_ + a (Lha;Z)F m_7717_ + 0 o p_104703_ + 1 o p_104704_ + a (Lgu;Lit;Lefb;D)V m_104694_ + 0 o p_104695_ + 1 o p_104696_ + 2 o p_104697_ + 3 o p_104698_ + a (Ldei;)V m_104665_ + 0 o p_104666_ + a (Ljava/lang/String;)Ldyo; m_7489_ + 0 o p_104725_ + a (Lgu;Lclx;)I m_6171_ + 0 o p_104700_ + 1 o p_104701_ + a (Lgu;F)V m_104752_ + 0 o p_104753_ + 1 o p_104754_ + a (IIIILapf;Lcpn;Lgu$a;)V m_233612_ + 0 o p_233613_ + 1 o p_233614_ + 2 o p_233615_ + 3 o p_233616_ + 4 o p_233617_ + 5 o p_233618_ + 6 o p_233619_ + a (ILfiv;)V m_104630_ + 0 o p_104631_ + 1 o p_104632_ + a (Lcnm;III)Leei; m_194159_ + static + 0 o p_194160_ + 1 o p_194161_ + 2 o p_194162_ + 3 o p_194163_ + a (I)Lbfj; m_6815_ + 0 o p_104609_ + a (Lclt;)V m_171649_ + 0 o p_171650_ + a (Lclx;Leop;)V m_194156_ + static + 0 o p_194157_ + 1 o p_194158_ + a (Ljava/lang/String;Ldyo;)V m_142325_ + 0 o p_171670_ + 1 o p_171671_ + a (Lgu$a;Lcnj;)V m_263888_ + 0 o p_264702_ + 1 o p_264703_ + a (Lbfj;Lbfj;)V m_104641_ + 0 o p_104642_ + 1 o p_104643_ + a (Ldgl;Leei;Ldgl$a;)V m_214171_ + 0 o p_233639_ + 1 o p_233640_ + 2 o p_233641_ + b (J)V m_104637_ + 0 o p_104638_ + b (ILbfj;)V m_104739_ + 0 o p_104740_ + 1 o p_104741_ + b (Lgu;Ldcb;Ldcb;)V m_6550_ + 0 o p_104759_ + 1 o p_104760_ + 2 o p_104761_ + b (Lgu;Ldcb;I)V m_233653_ + 0 o p_233654_ + 1 o p_233655_ + 2 o p_233656_ + b (Lit;ZDDDDDD)V m_6485_ + 0 o p_104774_ + 1 o p_104775_ + 2 o p_104776_ + 3 o p_104777_ + 4 o p_104778_ + 5 o p_104779_ + 6 o p_104780_ + 7 o p_104781_ + b (Lgu;)I m_194176_ + 0 o p_194177_ + b (III)V m_104784_ + 0 o p_104785_ + 1 o p_104786_ + 2 o p_104787_ + b (Lit;DDDDDD)V m_7107_ + 0 o p_104766_ + 1 o p_104767_ + 2 o p_104768_ + 3 o p_104769_ + 4 o p_104770_ + 5 o p_104771_ + 6 o p_104772_ + b (Lgu;Lclx;)I m_104762_ + 0 o p_104763_ + 1 o p_104764_ + b (ILgu;I)V m_6798_ + 0 o p_104743_ + 1 o p_104744_ + 2 o p_104745_ + b (II)Z m_7232_ + 0 o p_104737_ + 1 o p_104738_ + b (I)V m_233651_ + 0 o p_233652_ + b (Ljava/lang/String;Ldyo;)V m_257583_ + 0 o p_259652_ + 1 o p_259308_ + b ()V m_194141_ + c ()Z m_194173_ + c (Lgu;)I m_194180_ + 0 o p_194181_ + c (III)V m_104793_ + 0 o p_104794_ + 1 o p_104795_ + 2 o p_104796_ + c (J)V m_104746_ + 0 o p_104747_ + c (I)V m_6580_ + 0 o p_104783_ + c (Lbfj;)Ljava/lang/String; m_257084_ + static + 0 o p_258146_ + d ()Lfjm; m_104583_ + d (Lbfj;)V m_194182_ + 0 o p_194183_ + e ()Ljava/lang/Iterable; m_104735_ + f ()V m_104804_ + g (F)F m_104805_ + 0 o p_104806_ + g ()V m_104810_ + h (F)Leei; m_104808_ + 0 o p_104809_ + h ()I m_104813_ + h (I)V m_194174_ + 0 o p_194175_ + h (Lbfj;)Z m_183599_ + 0 o p_194185_ + i (F)F m_104811_ + 0 o p_104812_ + i ()Lfeu; m_7726_ + j ()I m_104819_ + k ()Lfew$a; m_6106_ + l ()Ljava/util/Map; m_171684_ + m ()I m_194186_ + o ()V m_104826_ + p ()Lcpn; m_194187_ + q ()Lcjd; m_7465_ + s ()Ljava/lang/String; m_194188_ + t ()I m_7354_ + toString ()Ljava/lang/String; toString + u ()Ljava/lang/String; m_194189_ + u_ ()Ldyv; m_6106_ + v ()Ljava/util/List; m_6907_ +few$1 net/minecraft/client/multiplayer/ClientLevel$1 + a f_104828_ + ()V + static +few$a net/minecraft/client/multiplayer/ClientLevel$ClientLevelData + a f_104830_ + b f_104831_ + c f_104832_ + d f_104833_ + e f_104834_ + f f_104835_ + g f_104836_ + h f_104837_ + i f_104838_ + j f_104839_ + k f_104840_ + l f_104841_ + (Lbdu;ZZ)V + 0 o p_104843_ + 1 o p_104844_ + 2 o p_104845_ + a (Z)V m_104858_ + 0 o p_104859_ + a ()I m_6789_ + a (Lcmo;)D m_171687_ + 0 o p_171688_ + a (Lbdu;)V m_104851_ + 0 o p_104852_ + a (F)V m_7113_ + 0 o p_104848_ + a (Lgu;F)V m_7250_ + 0 o p_104854_ + 1 o p_104855_ + a (Lp;Lcmo;)V m_142471_ + 0 o p_171690_ + 1 o p_171691_ + a (J)V m_104849_ + 0 o p_104850_ + b (Z)V m_5565_ + 0 o p_104866_ + b (I)V m_6395_ + 0 o p_104862_ + b (J)V m_104863_ + 0 o p_104864_ + b ()I m_6527_ + c ()I m_6526_ + c (I)V m_6397_ + 0 o p_104869_ + d (I)V m_6400_ + 0 o p_104872_ + d ()F m_6790_ + e ()J m_6793_ + f ()J m_6792_ + g ()F m_205519_ + i ()Z m_6534_ + k ()Z m_6533_ + n ()Z m_5466_ + q ()Lcmi; m_5470_ + s ()Lbdu; m_5472_ + t ()Z m_5474_ +few$b net/minecraft/client/multiplayer/ClientLevel$EntityCallbacks + a f_171692_ + (Lfew;)V + 0 o p_171694_ + a (Lbfj;)V m_141989_ + 0 o p_171696_ + a (Ljava/lang/Object;)V m_214006_ + 0 o p_233658_ + b (Lbfj;)V m_141986_ + 0 o p_171700_ + b (Ljava/lang/Object;)V m_141981_ + 0 o p_171698_ + c (Lbfj;)V m_141987_ + 0 o p_171704_ + c (Ljava/lang/Object;)V m_141985_ + 0 o p_171702_ + d (Ljava/lang/Object;)V m_141983_ + 0 o p_171706_ + d (Lbfj;)V m_141983_ + 0 o p_171708_ + e (Ljava/lang/Object;)V m_141987_ + 0 o p_171710_ + e (Lbfj;)V m_141985_ + 0 o p_171712_ + f (Ljava/lang/Object;)V m_141986_ + 0 o p_171714_ + f (Lbfj;)V m_141981_ + 0 o p_171716_ + g (Ljava/lang/Object;)V m_141989_ + 0 o p_171718_ + g (Lbfj;)V m_214006_ + 0 o p_233660_ +fex net/minecraft/client/multiplayer/ClientPacketListener + A f_104902_ + B f_104903_ + C f_244039_ + D f_194191_ + E f_252517_ + F f_240902_ + G f_244346_ + H f_244113_ + a f_104883_ + b f_104884_ + c f_242953_ + d f_242949_ + e f_244321_ + f f_243809_ + g f_243949_ + h f_104885_ + i f_268637_ + j f_244115_ + k f_104886_ + l f_104887_ + m f_104888_ + n f_104889_ + o f_104890_ + p f_104892_ + q f_244156_ + r f_104893_ + s f_104894_ + t f_104896_ + u f_104897_ + v f_194190_ + w f_104898_ + x f_104899_ + y f_104900_ + z f_104901_ + ()V + static + (Lenn;Leuq;Lsd;Lffd;Lcom/mojang/authlib/GameProfile;Lfzp;)V + 0 o p_253924_ + 1 o p_254239_ + 2 o p_253614_ + 3 o p_254072_ + 4 o p_254079_ + 5 o p_262115_ + a (Lwd;)V m_183388_ + 0 o p_194241_ + a (Lyg;)V m_183623_ + 0 o p_194245_ + a (Lxs;)V m_8065_ + 0 o p_105080_ + a (Lut;)V m_7708_ + 0 o p_104960_ + a (Lvp;)V m_7413_ + 0 o p_105004_ + a (Lvx;)V m_7616_ + 0 o p_105016_ + a (Lwl;)V m_7865_ + 0 o p_105036_ + a (Lyo;)V m_213990_ + 0 o p_233708_ + a (Lwt;)V m_213629_ + 0 o p_233702_ + a (Lxk;)V m_142456_ + 0 o p_171779_ + a (Lvh;)V m_7589_ + 0 o p_104988_ + a (Lxc;)V m_182047_ + 0 o p_182633_ + a (Lyw;)V m_7915_ + 0 o p_105130_ + a (Lvm;)V m_5735_ + 0 o p_105000_ + a (Lwz;)V m_7244_ + 0 o p_105054_ + a (Lxn;)V m_142238_ + 0 o p_171785_ + a (Lyj;)V m_142442_ + 0 o p_171793_ + a (Lwi;)V m_5998_ + 0 o p_105030_ + a (Lyb;)V m_5547_ + 0 o p_105098_ + a (Lxv;)V m_5556_ + 0 o p_105086_ + a (Ljava/util/Optional;)V m_252585_ + 0 o p_253339_ + a (Lwa;)V m_142237_ + 0 o p_171767_ + a (Lcaw;)Z m_246351_ + 0 o p_250605_ + a (Lxf;)V m_7992_ + 0 o p_105066_ + a (Lyr;)V m_8001_ + 0 o p_105122_ + a (Lvu;)V m_7628_ + 0 o p_105010_ + a (Lwq;)V m_141955_ + 0 o p_171769_ + a (Lacq;)Ljava/lang/IllegalArgumentException; m_233661_ + static + 0 o p_233662_ + a (Lsw;)V m_7026_ + 0 o p_104954_ + a (Lve;)V m_6664_ + 0 o p_104984_ + a (Lwy;)V m_214045_ + 0 o p_250115_ + a (Lyi;)V m_7885_ + 0 o p_105108_ + a (Lvn;)V m_7701_ + 0 o p_105002_ + a (Lxm;)V m_142686_ + 0 o p_171783_ + a (Lwj;)V m_7633_ + 0 o p_105032_ + a (Lxu;)V m_6571_ + 0 o p_105084_ + a (Lya;)V m_6747_ + 0 o p_105096_ + a (Lwb;)V m_7231_ + 0 o p_105020_ + a (Lvv;)V m_7345_ + 0 o p_105012_ + a (Lyq;)V m_6148_ + 0 o p_105120_ + a (Lxe;)V m_5587_ + 0 o p_105064_ + a ()Z m_6198_ + a (Lwr;)V m_7339_ + 0 o p_105046_ + a (Luo;)V m_104955_ + 0 o p_104956_ + a (Ljava/net/URL;Ljava/lang/String;ZZ)V m_244704_ + 0 o p_247866_ + 1 o p_247867_ + 2 o p_247868_ + 3 o p_233690_ + a (Lvf;)V m_274374_ + 0 o p_275437_ + a (Lefe;Lye$b;)V m_233668_ + static + 0 o p_233669_ + 1 o p_233670_ + a (IILwh;)V m_194248_ + 0 o p_194249_ + 1 o p_194250_ + 2 o p_194251_ + a (Lyy;)V m_5859_ + 0 o p_105134_ + a (Lxp;)V m_142696_ + 0 o p_171789_ + a (Luw;)V m_7271_ + 0 o p_104970_ + a (Ljava/time/Instant;JLtd$a;Ljava/lang/String;)Lth; m_244707_ + 0 o p_247872_ + 1 o p_247873_ + 2 o p_247874_ + 3 o p_247875_ + a (Lvk;)V m_6837_ + 0 o p_104996_ + a (I)V m_205520_ + 0 o p_205521_ + a (Lyl;)V m_5863_ + 0 o p_105112_ + a (Lbfj;)V m_233663_ + 0 o p_233664_ + a (Lvs;)V m_6008_ + 0 o p_105008_ + a (Lgu;Ldcb;)V m_283976_ + 0 o p_284633_ + 1 o p_284634_ + a (Lyd;)V m_6403_ + 0 o p_105102_ + a (Lwg;)V m_183514_ + 0 o p_194243_ + a (Lxx;)V m_5599_ + 0 o p_105090_ + a (Lwy$a;Lwy$b;Lffb;)V m_247639_ + 0 o p_248954_ + 1 o p_251310_ + 2 o p_251146_ + a (Lwo;)V m_5980_ + 0 o p_105042_ + a (Lyt;)V m_5498_ + 0 o p_105126_ + a (Lxh;)V m_5771_ + 0 o p_105070_ + a (Lenb;Leyg;)V m_205538_ + static + 0 o p_205539_ + 1 o p_205540_ + a (Lacp;Lano$a;)V m_205560_ + 0 o p_205561_ + 1 o p_205562_ + a (IILwc;)V m_194198_ + 0 o p_194199_ + 1 o p_194200_ + 2 o p_194201_ + a (Luz;)V m_7545_ + 0 o p_104976_ + a (Laak$a;)V m_105135_ + 0 o p_105136_ + a (Lww;)V m_142747_ + 0 o p_171775_ + a (Lvc;)V m_7685_ + 0 o p_104982_ + a (Luz;Lczn;)V m_205555_ + 0 o p_205556_ + 1 o p_205557_ + a (Ltl;Z)V m_242011_ + 0 o p_242356_ + 1 o p_242455_ + a (Lvl;)V m_7257_ + 0 o p_104998_ + a (Lux;)V m_214108_ + 0 o p_233698_ + a (Lxo;)V m_142056_ + 0 o p_171787_ + a (Lyk;)V m_142185_ + 0 o p_171795_ + a (Lwy$b;Lffb;)V m_245842_ + 0 o p_248806_ + 1 o p_251136_ + a (Lxw;)V m_6455_ + 0 o p_105088_ + a (Lyc;)V m_7957_ + 0 o p_105100_ + a (Lys;)V m_6435_ + 0 o p_105124_ + a (Lxg;)V m_6176_ + 0 o p_105068_ + a (Lbfj;Lcom/mojang/datafixers/util/Pair;)V m_205526_ + static + 0 o p_205527_ + 1 o p_205528_ + a (Lvt;)V m_7039_ + 0 o p_251920_ + a (Ljava/lang/String;)Lffb; m_104938_ + 0 o p_104939_ + a (Lwp;)V m_8047_ + 0 o p_105044_ + a (Ljava/lang/Throwable;)Ljava/lang/Void; m_233679_ + 0 o p_233680_ + a (Lsw;Lsw;)Lsw; m_171759_ + static + 0 o p_171760_ + 1 o p_171761_ + a (Lwx;)V m_213565_ + 0 o p_248731_ + a (Lvd;)V m_264308_ + 0 o p_265195_ + a (Lbyq;)V m_260951_ + 0 o p_261475_ + a (Lacp;)Ljava/lang/IllegalStateException; m_205558_ + static + 0 o p_205559_ + a (Luu;)V m_6482_ + 0 o p_104966_ + a (Lxr;)V m_5612_ + 0 o p_105078_ + a (Lwe;)V m_7704_ + 0 o p_105024_ + a (Lyf;)V m_7519_ + 0 o p_105106_ + a (Lvq;)V m_269082_ + 0 o p_270800_ + a (Lbyo;)Lcfz; m_104927_ + static + 0 o p_104928_ + a (Ldei;II)V m_194212_ + 0 o p_194213_ + 1 o p_194214_ + 2 o p_194215_ + a (Lxz;)V m_7277_ + 0 o p_105094_ + a (IILdwt;Lcmv;Ljava/util/BitSet;Ljava/util/BitSet;Ljava/util/Iterator;)V m_171734_ + 0 o p_171735_ + 1 o p_171736_ + 2 o p_171737_ + 3 o p_171738_ + 4 o p_171739_ + 5 o p_171740_ + 6 o p_171741_ + a (Lvy;)V m_6905_ + 0 o p_105018_ + a (Lhs$d;)V m_257085_ + static + 0 o p_205542_ + a (Lxj;)V m_213672_ + 0 o p_233704_ + a (Lwm;)V m_7410_ + 0 o p_105038_ + a (Lyn;)V m_7183_ + 0 o p_105116_ + a (Ljava/util/UUID;)Lffb; m_104949_ + 0 o p_104950_ + a (Lvi;)V m_7443_ + 0 o p_104990_ + a (Lwu;)V m_142234_ + 0 o p_171771_ + a (Lxb;)V m_8076_ + 0 o p_105058_ + a (Lyv;)V m_241155_ + 0 o p_251591_ + a (Lva;)V m_7364_ + 0 o p_104978_ + a (Luv;)V m_7791_ + 0 o p_104968_ + a (Lxq;)V m_6447_ + 0 o p_105076_ + a (Lwf;)V m_7406_ + 0 o p_105026_ + a (Lvj;)V m_7776_ + 0 o p_104994_ + a (Lye;)V m_5582_ + 0 o p_105104_ + a (Lvr;)V m_241037_ + 0 o p_241325_ + a (Lxy;)V m_8048_ + 0 o p_105092_ + a (Lclt;)V m_285673_ + 0 o p_286144_ + a (Lvb;)V m_6773_ + 0 o p_104980_ + a (Ljava/util/concurrent/CompletableFuture;)V m_104951_ + 0 o p_104952_ + a (Lxi;)V m_7553_ + 0 o p_105072_ + a (Lwn;)V m_6503_ + 0 o p_105040_ + a (Lym;)V m_8068_ + 0 o p_105114_ + a (Lxa;)V m_5682_ + 0 o p_105056_ + a (Luy;)V m_5943_ + 0 o p_104974_ + a (Lwv;)V m_142058_ + 0 o p_171773_ + a (Lcbf;Lcjc;)V m_233665_ + 0 o p_233666_ + 1 o p_233667_ + a (Lyu;)V m_7710_ + 0 o p_105128_ + a (Lyh;)V m_141913_ + 0 o p_171791_ + a (Lus;)V m_6771_ + 0 o p_104958_ + a (Luo;Ljava/util/function/BooleanSupplier;Ljava/time/Duration;)V m_269234_ + 0 o p_270433_ + 1 o p_270843_ + 2 o p_270497_ + a (Lxl;)V m_142612_ + 0 o p_171781_ + a (Lvo;)V m_240695_ + 0 o p_240832_ + a (Lxt;)V m_7299_ + 0 o p_105082_ + a (Lvz;)V m_264143_ + 0 o p_265581_ + a (Lvw;)V m_5729_ + 0 o p_105014_ + a (Lxd;)V m_6476_ + 0 o p_105062_ + a (Lyp;)V m_6235_ + 0 o p_105118_ + a (Lwk;)V m_7330_ + 0 o p_105034_ + a (Lyx;)V m_6327_ + 0 o p_105132_ + a (Lvg;)V m_142766_ + 0 o p_171765_ + a (Lws;)V m_5767_ + 0 o p_105048_ + a (Ljava/net/URL;Ljava/lang/String;ZLxe;)V m_233681_ + 0 o p_233682_ + 1 o p_233683_ + 2 o p_233684_ + 3 o p_233685_ + a (Lenb;Lcjc;)V m_271558_ + 0 o p_272313_ + 1 o p_272314_ + b (Ljava/util/Optional;)V m_252587_ + 0 o p_253341_ + b (IILwh;)V m_233711_ + 0 o p_233712_ + 1 o p_233713_ + 2 o p_233714_ + b (Lvw;)V m_194252_ + 0 o p_194253_ + b (Ljava/lang/String;)V m_246175_ + 0 o p_249888_ + c ()V m_9933_ + c (IILwh;)V m_205571_ + 0 o p_205572_ + 1 o p_205573_ + 2 o p_205574_ + c (Ljava/lang/String;)V m_246623_ + 0 o p_250092_ + d (Ljava/lang/String;)Z m_246979_ + 0 o p_251509_ + d ()Lfez; m_105137_ + e (Ljava/lang/String;)Ljava/net/URL; m_233709_ + static + 0 o p_233710_ + e ()V m_261044_ + f (Ljava/lang/String;)Lcom/mojang/brigadier/ParseResults; m_245186_ + 0 o p_249982_ + f ()Lcjd; m_105141_ + g ()Lsd; m_104910_ + h ()Ljava/util/Collection; m_246170_ + i ()Ljava/util/Collection; m_105142_ + j ()Ljava/util/Collection; m_105143_ + k ()Lcom/mojang/authlib/GameProfile; m_105144_ + l ()Lfet; m_105145_ + m ()Lcom/mojang/brigadier/CommandDispatcher; m_105146_ + n ()Lfew; m_105147_ + o ()Lene; m_105149_ + p ()Ljava/util/UUID; m_105150_ + q ()Ljava/util/Set; m_105151_ + r ()Lhs; m_105152_ + s ()Lffd; m_245416_ + t ()Lcaw; m_247016_ + u ()Z m_253150_ + v ()V m_269212_ + w ()V m_247711_ + x ()V m_233715_ + y ()Z m_268789_ + static + z ()V m_276175_ +fex$1 net/minecraft/client/multiplayer/ClientPacketListener$1 + a f_105155_ + b f_244123_ + c f_105158_ + ()V + static +fex$a net/minecraft/client/multiplayer/ClientPacketListener$DeferredPacket + a f_268574_ + b f_268477_ + c f_268654_ + (Luo;Ljava/util/function/BooleanSupplier;J)V + 0 o f_268574_ + 1 o f_268477_ + 2 o f_268654_ + a ()Luo; f_268574_ + b ()Ljava/util/function/BooleanSupplier; f_268477_ + c ()J f_268654_ + equals (Ljava/lang/Object;)Z equals + 0 o p_270990_ + hashCode ()I hashCode + toString ()Ljava/lang/String; toString +fey net/minecraft/client/multiplayer/ClientRegistryLayer + a STATIC + b REMOTE + c f_243766_ + d f_243969_ + e $VALUES + ()V + static + (Ljava/lang/String;I)V + 0 o p_251964_ + 1 o p_251823_ + a ()Lhl; m_245874_ + static + b ()[Lfey; m_247567_ + static + valueOf (Ljava/lang/String;)Lfey; valueOf + static + 0 o p_250227_ + values ()[Lfey; values + static +fez net/minecraft/client/multiplayer/ClientSuggestionProvider + a f_105160_ + b f_105161_ + c f_105162_ + d f_105163_ + e f_240667_ + (Lfex;Lenn;)V + 0 o p_105165_ + 1 o p_105166_ + A ()Ljava/util/Collection; m_6284_ + a (D)Ljava/lang/String; m_105167_ + static + 0 o p_105168_ + a (Lcom/mojang/brigadier/context/CommandContext;)Ljava/util/concurrent/CompletableFuture; m_212155_ + 0 o p_212423_ + a (Ldu$a;Lcom/mojang/brigadier/suggestion/SuggestionsBuilder;Lhr;)Ljava/util/concurrent/CompletableFuture; m_212424_ + 0 o p_212425_ + 1 o p_212426_ + 2 o p_212427_ + a (Lacp;Ldu$a;Lcom/mojang/brigadier/suggestion/SuggestionsBuilder;Lcom/mojang/brigadier/context/CommandContext;)Ljava/util/concurrent/CompletableFuture; m_212095_ + 0 o p_212429_ + 1 o p_212430_ + 2 o p_212431_ + 3 o p_212432_ + a (I)Ljava/lang/String; m_105169_ + static + 0 o p_105170_ + a (Lvo$a;Ljava/util/List;)V m_240713_ + 0 o p_240810_ + 1 o p_240765_ + a (ILcom/mojang/brigadier/suggestion/Suggestions;)V m_105171_ + 0 o p_105172_ + 1 o p_105173_ + b (Lcom/mojang/brigadier/context/CommandContext;)Ljava/util/concurrent/CompletableFuture; m_212433_ + 0 o p_212434_ + c (I)Z m_6761_ + 0 o p_105178_ + q ()Ljava/util/Collection; m_5982_ + r ()Ljava/util/Collection; m_5983_ + s ()Ljava/util/stream/Stream; m_5984_ + t ()Ljava/util/stream/Stream; m_6860_ + u ()Ljava/util/Set; m_6553_ + v ()Lhs; m_5894_ + w ()Lcaw; m_245239_ + x ()Ljava/util/Collection; m_240700_ + y ()Ljava/util/Collection; m_6264_ + z ()Ljava/util/Collection; m_6265_ +fez$1 net/minecraft/client/multiplayer/ClientSuggestionProvider$1 + a f_240658_ + ()V + static +ff net/minecraft/commands/arguments/blocks/BlockStateArgument + a f_116117_ + b f_234647_ + ()V + static + (Ldm;)V + 0 o p_234649_ + a (Lcom/mojang/brigadier/context/CommandContext;Ljava/lang/String;)Lfd; m_116123_ + static + 0 o p_116124_ + 1 o p_116125_ + a (Ldm;)Lff; m_234650_ + static + 0 o p_234651_ + a (Lcom/mojang/brigadier/StringReader;)Lfd; parse + 0 o p_116122_ + getExamples ()Ljava/util/Collection; getExamples + listSuggestions (Lcom/mojang/brigadier/context/CommandContext;Lcom/mojang/brigadier/suggestion/SuggestionsBuilder;)Ljava/util/concurrent/CompletableFuture; listSuggestions + 0 o p_116128_ + 1 o p_116129_ + parse (Lcom/mojang/brigadier/StringReader;)Ljava/lang/Object; parse + 0 o p_116131_ +ffa net/minecraft/client/multiplayer/MultiPlayerGameMode + a f_105188_ + b f_105189_ + c f_105190_ + d f_105191_ + e f_105192_ + f f_105193_ + g f_105194_ + h f_105195_ + i f_105196_ + j f_105197_ + k f_105198_ + l f_105200_ + ()V + static + (Lenn;Lfex;)V + 0 o p_105203_ + 1 o p_105204_ + a (Lcfz;I)V m_105241_ + 0 o p_105242_ + 1 o p_105243_ + a (II)V m_105208_ + 0 o p_105209_ + 1 o p_105210_ + a (Lcfz;)V m_105239_ + 0 o p_105240_ + a (Lbdw;Lbyo;Lorg/apache/commons/lang3/mutable/MutableObject;I)Luo; m_233716_ + 0 o p_233717_ + 1 o p_233718_ + 2 o p_233719_ + 3 o p_233720_ + a (Lbyo;Lbfj;)V m_105223_ + 0 o p_105224_ + 1 o p_105225_ + a (Lfew;Lams;Lenb;ZZ)Lfiy; m_105250_ + 0 o p_105251_ + 1 o p_105252_ + 2 o p_105253_ + 3 o p_105254_ + 4 o p_105255_ + a (Lfiy;Lbdw;Leee;)Lbdx; m_233732_ + 0 o p_233733_ + 1 o p_233734_ + 2 o p_233735_ + a ()Z m_105205_ + a (Lcmj;)V m_105279_ + 0 o p_105280_ + a (Lbyo;)V m_105221_ + 0 o p_105222_ + a (Ldcb;Lgu;Lha;I)Luo; m_233724_ + 0 o p_233725_ + 1 o p_233726_ + 2 o p_233727_ + 3 o p_233728_ + a (Lfew;Lffw;)V m_233729_ + 0 o p_233730_ + 1 o p_233731_ + a (Lbyo;Lbfj;Leef;Lbdw;)Lbdx; m_105230_ + 0 o p_105231_ + 1 o p_105232_ + 2 o p_105233_ + 3 o p_105234_ + a (Lgu;)Z m_105267_ + 0 o p_105268_ + a (Lgu;Lha;I)Luo; m_233736_ + 0 o p_233737_ + 1 o p_233738_ + 2 o p_233739_ + a (IIILcbo;Lbyo;)V m_171799_ + 0 o p_171800_ + 1 o p_171801_ + 2 o p_171802_ + 3 o p_171803_ + 4 o p_171804_ + a (I)V m_105206_ + 0 o p_105207_ + a (ILcjc;Z)V m_105217_ + 0 o p_105218_ + 1 o p_105219_ + 2 o p_105220_ + a (Lbyo;Lbfj;Lbdw;)Lbdx; m_105226_ + 0 o p_105227_ + 1 o p_105228_ + 2 o p_105229_ + a (Lfew;Lams;Lenb;)Lfiy; m_105246_ + 0 o p_105247_ + 1 o p_105248_ + 2 o p_105249_ + a (Lbyo;Lbdw;)Lbdx; m_233721_ + 0 o p_233722_ + 1 o p_233723_ + a (Lorg/apache/commons/lang3/mutable/MutableObject;Lfiy;Lbdw;Leee;I)Luo; m_233740_ + 0 o p_233741_ + 1 o p_233742_ + 2 o p_233743_ + 3 o p_233744_ + 4 o p_233745_ + a (Lgu;Lha;)Z m_105269_ + 0 o p_105270_ + 1 o p_105271_ + a (Lcmj;Lcmj;)V m_171805_ + 0 o p_171806_ + 1 o p_171807_ + b (Lfiy;Lbdw;Leee;)Lbdx; m_233746_ + 0 o p_233747_ + 1 o p_233748_ + 2 o p_233749_ + b (Lbyo;)V m_105277_ + 0 o p_105278_ + b (Lgu;Lha;)Z m_105283_ + 0 o p_105284_ + 1 o p_105285_ + b (Lgu;)Z m_105281_ + 0 o p_105282_ + b (Lgu;Lha;I)Luo; m_233750_ + 0 o p_233751_ + 1 o p_233752_ + 2 o p_233753_ + b ()V m_105276_ + c (Lgu;Lha;I)Luo; m_233754_ + 0 o p_233755_ + 1 o p_233756_ + 2 o p_233757_ + c ()F m_105286_ + d ()V m_105287_ + e ()Z m_105288_ + f ()Z m_105289_ + g ()Z m_105290_ + h ()Z m_105291_ + i ()Z m_105292_ + j ()Z m_105293_ + k ()Lcmj; m_105294_ + l ()Lcmj; m_105295_ + m ()Z m_105296_ + n ()I m_287167_ + o ()V m_105297_ +ffb net/minecraft/client/multiplayer/PlayerInfo + a f_105298_ + b f_105299_ + c f_105300_ + d f_105301_ + e f_105302_ + f f_105303_ + g f_105304_ + h f_244238_ + i f_240895_ + (Lcom/mojang/authlib/GameProfile;Z)V + 0 o p_253609_ + 1 o p_254409_ + a (I)V m_105313_ + 0 o p_105314_ + a (Z)V m_253204_ + 0 o p_254536_ + a (Lcom/mojang/authlib/minecraft/MinecraftProfileTexture$Type;Lacq;Lcom/mojang/authlib/minecraft/MinecraftProfileTexture;)V m_105319_ + 0 o p_105320_ + 1 o p_105321_ + 2 o p_105322_ + a (Lsw;)V m_105323_ + 0 o p_105324_ + a ()Lcom/mojang/authlib/GameProfile; m_105312_ + a (Ltm;)V m_246479_ + 0 o p_249599_ + a (Lcmj;)V m_105317_ + 0 o p_105318_ + b (Z)Ltr; m_253000_ + static + 0 o p_254311_ + b ()Ltm; m_247593_ + c ()Ltr; m_241043_ + d ()Z m_247101_ + e ()Lcmj; m_105325_ + f ()I m_105330_ + g ()Z m_171808_ + h ()Z m_105335_ + i ()Ljava/lang/String; m_105336_ + j ()Lacq; m_105337_ + k ()Lacq; m_105338_ + l ()Lacq; m_105339_ + m ()Lefe; m_105340_ + n ()V m_105341_ + o ()Lsw; m_105342_ +ffc net/minecraft/client/multiplayer/ProfileKeyPairManager + a f_252532_ + ()V + static + a (Lcom/mojang/authlib/minecraft/UserApiService;Leoc;Ljava/nio/file/Path;)Lffc; m_252915_ + static + 0 o p_253925_ + 1 o p_254501_ + 2 o p_254206_ + a ()Ljava/util/concurrent/CompletableFuture; m_252904_ + b ()Z m_253130_ +ffc$1 net/minecraft/client/multiplayer/ProfileKeyPairManager$1 + ()V + a ()Ljava/util/concurrent/CompletableFuture; m_252904_ + b ()Z m_253130_ +ffd net/minecraft/client/multiplayer/ServerData + a f_105362_ + b f_105363_ + c f_105364_ + d f_105365_ + e f_263840_ + f f_105366_ + g f_105367_ + h f_105368_ + i f_105369_ + j f_105370_ + k f_271489_ + l f_105371_ + m f_271511_ + n f_105373_ + o f_242950_ + ()V + static + (Ljava/lang/String;Ljava/lang/String;Z)V + 0 o p_105375_ + 1 o p_105376_ + 2 o p_105377_ + a (Z)V m_242965_ + 0 o p_242972_ + a ()Lqr; m_105378_ + a (Lqr;)Lffd; m_105385_ + static + 0 o p_105386_ + a (Lffd;)V m_233803_ + 0 o p_233804_ + a (Lffd$a;)V m_105379_ + 0 o p_105380_ + a ([B)V m_271813_ + 0 o p_272760_ + b ()Lffd$a; m_105387_ + b (Lffd;)V m_105381_ + 0 o p_105382_ + c ()[B m_271916_ + d ()Z m_105389_ + e ()Z m_242962_ +ffd$a net/minecraft/client/multiplayer/ServerData$ServerPackStatus + a ENABLED + b DISABLED + c PROMPT + d f_105393_ + e $VALUES + ()V + static + (Ljava/lang/String;ILjava/lang/String;)V + 0 o p_105397_ + 1 o p_105398_ + 2 o p_105399_ + a ()Lsw; m_105400_ + b ()[Lffd$a; m_171809_ + static + valueOf (Ljava/lang/String;)Lffd$a; valueOf + static + 0 o p_105402_ + values ()[Lffd$a; values + static +ffe net/minecraft/client/multiplayer/ServerList + a f_105425_ + b f_233836_ + c f_233837_ + d f_105426_ + e f_105427_ + f f_233838_ + ()V + static + (Lenn;)V + 0 o p_105430_ + a (ILffd;)V m_105437_ + 0 o p_105438_ + 1 o p_105439_ + a (I)Lffd; m_105432_ + 0 o p_105433_ + a (II)V m_105434_ + 0 o p_105435_ + 1 o p_105436_ + a (Lffd;Ljava/util/List;)Z m_233839_ + static + 0 o p_233840_ + 1 o p_233841_ + a (Lffd;Z)V m_233842_ + 0 o p_233843_ + 1 o p_233844_ + a (Ljava/lang/String;)Lffd; m_233845_ + 0 o p_233846_ + a ()V m_105431_ + a (Lffd;)V m_105440_ + 0 o p_105441_ + b (Ljava/lang/String;)Lffd; m_233847_ + 0 o p_233848_ + b ()V m_105442_ + b (Lffd;)V m_105446_ + static + 0 o p_105447_ + c ()I m_105445_ + c (Lffd;)V m_233849_ + static + 0 o p_233850_ +fff net/minecraft/client/multiplayer/ServerStatusPinger + a f_105448_ + b f_105449_ + c f_171810_ + d f_105450_ + ()V + static + ()V + a (II)Lsw; m_105466_ + static + 0 o p_105467_ + 1 o p_105468_ + a ()V m_105453_ + a (Lts;)Lts; m_264509_ + static + 0 o p_265659_ + a (Lffd;Ljava/lang/Runnable;)V m_105459_ + 0 o p_105460_ + 1 o p_105461_ + a (Lsw;Lffd;)V m_171814_ + 0 o p_171815_ + 1 o p_171816_ + a (Ljava/net/InetSocketAddress;Lffd;)V m_171811_ + 0 o p_171812_ + 1 o p_171813_ + b ()V m_105465_ +fff$1 net/minecraft/client/multiplayer/ServerStatusPinger$1 + a f_105471_ + b f_105472_ + c f_105473_ + d f_171817_ + e f_105474_ + f f_105475_ + g f_105476_ + h f_105477_ + (Lfff;Lsd;Lffd;Ljava/lang/Runnable;Ljava/net/InetSocketAddress;)V + 0 o p_171819_ + 1 o p_171820_ + 2 o p_171821_ + 3 o p_171822_ + 4 o p_171823_ + a (Lffd;Ljava/lang/Runnable;Labt$a;)V m_271709_ + static + 0 o p_272887_ + 1 o p_273186_ + 2 o p_272704_ + a (Lffd;Labt$b;)V m_271999_ + static + 0 o p_272779_ + 1 o p_273230_ + a (Lffd;Labt$c;)V m_272281_ + static + 0 o p_272776_ + 1 o p_273307_ + a ()Z m_6198_ + a (Lsw;)V m_7026_ + 0 o p_105485_ + a (Lffd;)V m_272044_ + static + 0 o p_273287_ + a (Labr;)V m_7017_ + 0 o p_105487_ + a (Labs;)V m_6440_ + 0 o p_105489_ + b (Lffd;)V m_272230_ + static + 0 o p_273651_ +fff$2 net/minecraft/client/multiplayer/ServerStatusPinger$2 + a f_105490_ + b f_105491_ + c f_105492_ + (Lfff;Ljava/net/InetSocketAddress;Lffd;)V + 0 o p_171825_ + 1 o p_171826_ + 2 o p_171827_ + initChannel (Lio/netty/channel/Channel;)V initChannel + 0 o p_105498_ +fff$2$1 net/minecraft/client/multiplayer/ServerStatusPinger$2$1 + a f_105499_ + (Lfff$2;)V + 0 o p_105501_ + a (Lio/netty/channel/ChannelHandlerContext;Lio/netty/buffer/ByteBuf;)V channelRead0 + 0 o p_105503_ + 1 o p_105504_ + channelActive (Lio/netty/channel/ChannelHandlerContext;)V channelActive + 0 o p_105506_ + channelRead0 (Lio/netty/channel/ChannelHandlerContext;Ljava/lang/Object;)V channelRead0 + 0 o p_105508_ + 1 o p_105509_ + exceptionCaught (Lio/netty/channel/ChannelHandlerContext;Ljava/lang/Throwable;)V exceptionCaught + 0 o p_105511_ + 1 o p_105512_ +ffg net/minecraft/client/multiplayer/chat/ChatListener + a f_240348_ + b f_240677_ + c f_240660_ + d f_240659_ + (Lenn;)V + 0 o p_240569_ + a (D)V m_240692_ + 0 o p_240785_ + a (Lth;Ljava/util/function/BooleanSupplier;)V m_246163_ + 0 o p_249408_ + 1 o p_250870_ + a (Lsw;Lss$a;)V m_245141_ + 0 o p_250375_ + 1 o p_251256_ + a (Lsw;)Ljava/util/UUID; m_240473_ + 0 o p_240595_ + a (Lss$a;Lsw;)V m_241119_ + 0 o p_241352_ + 1 o p_243262_ + a (Lsw;Ljava/time/Instant;)V m_240498_ + 0 o p_240609_ + 1 o p_240541_ + a (Lth;Lffg$a;)Z m_244711_ + static + 0 o p_247886_ + 1 o p_247887_ + a (Lsw;Z)V m_240494_ + 0 o p_240522_ + 1 o p_240642_ + a (Ltl;Lsw;Ljava/time/Instant;)Lffi; m_245744_ + 0 o p_251246_ + 1 o p_250576_ + 2 o p_249995_ + a (Ltl;Lcom/mojang/authlib/GameProfile;Lss$a;)V m_247425_ + 0 o p_251553_ + 1 o p_250022_ + 2 o p_252158_ + a (Ljava/util/UUID;)Z m_240963_ + 0 o p_241343_ + a (Lss$a;Ltl;Lsw;Lcom/mojang/authlib/GameProfile;ZLjava/time/Instant;)Z m_246494_ + 0 o p_251766_ + 1 o p_249430_ + 2 o p_249231_ + 3 o p_249177_ + 4 o p_251638_ + 5 o p_249665_ + a ()V m_240688_ + a (Lss$a;Lsw;Ljava/time/Instant;)Z m_244709_ + 0 o p_247877_ + 1 o p_247878_ + 2 o p_247879_ + a (Lth;)Z m_240956_ + 0 o p_241445_ + a (Ltl;Lss$a;Lcom/mojang/authlib/GameProfile;Lffi;)V m_245326_ + 0 o p_252155_ + 1 o p_249730_ + 2 o p_248589_ + 3 o p_248881_ + b (Lss$a;Ltl;Lsw;Lcom/mojang/authlib/GameProfile;ZLjava/time/Instant;)Z m_244710_ + 0 o p_247880_ + 1 o p_247881_ + 2 o p_247882_ + 3 o p_247883_ + 4 o p_247884_ + 5 o p_247885_ + b ()V m_240711_ + c ()J m_242024_ + d ()V m_241954_ + e ()Z m_240706_ +ffg$a net/minecraft/client/multiplayer/chat/ChatListener$Message + a f_244535_ + b f_244088_ + (Lth;Ljava/util/function/BooleanSupplier;)V + 0 o f_244535_ + 1 o f_244088_ + a ()Z m_240698_ + b ()Lth; f_244535_ + c ()Ljava/util/function/BooleanSupplier; f_244088_ + equals (Ljava/lang/Object;)Z equals + 0 o p_251600_ + hashCode ()I hashCode + toString ()Ljava/lang/String; toString +ffh net/minecraft/client/multiplayer/chat/ChatLog + a f_243822_ + b f_244261_ + (I)V + 0 o p_251403_ + (ILjava/util/List;)V + 0 o p_254212_ + 1 o p_253624_ + a (II)[Lffj; m_252894_ + static + 0 o p_254420_ + 1 o p_253908_ + a ()I m_246004_ + a (I)Lcom/mojang/serialization/Codec; m_252737_ + static + 0 o p_253922_ + a (Lffj;)V m_239651_ + 0 o p_242319_ + a (ILjava/util/List;)Lcom/mojang/serialization/DataResult; m_274000_ + static + 0 o p_274703_ + 1 o p_274704_ + b (II)Ljava/lang/String; m_274001_ + static + 0 o p_274705_ + 1 o p_274706_ + b (I)Lffj; m_239049_ + 0 o p_239050_ + b ()I m_245950_ + c (I)I m_245303_ + 0 o p_249044_ + c ()Ljava/util/List; m_252924_ + d ()I m_253001_ +ffi net/minecraft/client/multiplayer/chat/ChatTrustLevel + a SECURE + b MODIFIED + c NOT_SECURE + d f_252530_ + e f_252433_ + f $VALUES + ()V + static + (Ljava/lang/String;ILjava/lang/String;)V + 0 o p_254304_ + 1 o p_254135_ + 2 o p_254190_ + a (Ltl;)Leni; m_240405_ + 0 o p_240632_ + a (Lsw;)Z m_246526_ + static + 0 o p_251011_ + a (Ltl;Lsw;Ljava/time/Instant;)Lffi; m_245358_ + static + 0 o p_248663_ + 1 o p_248544_ + 2 o p_252024_ + a (Lts;Ljava/lang/String;)Ljava/util/Optional; m_247462_ + static + 0 o p_251711_ + 1 o p_250844_ + a ()Z m_240450_ + a (Lts;)Z m_246638_ + static + 0 o p_251347_ + a (Ltl;Lsw;)Z m_247746_ + static + 0 o p_252093_ + 1 o p_250811_ + b ()[Lffi; m_240444_ + static + c ()Ljava/lang/String; m_7912_ + valueOf (Ljava/lang/String;)Lffi; valueOf + static + 0 o p_240640_ + values ()[Lffi; values + static +ffi$1 net/minecraft/client/multiplayer/chat/ChatTrustLevel$1 + a f_240370_ + ()V + static +ffj net/minecraft/client/multiplayer/chat/LoggedChatEvent + a f_252439_ + ()V + static + a ()Lffj$a; m_252883_ +ffj$a net/minecraft/client/multiplayer/chat/LoggedChatEvent$Type + a PLAYER + b SYSTEM + c f_252489_ + d f_252477_ + e $VALUES + ()V + static + (Ljava/lang/String;ILjava/lang/String;Ljava/util/function/Supplier;)V + 0 o p_254071_ + 1 o p_253938_ + 2 o p_254335_ + 3 o p_254115_ + a ()Lcom/mojang/serialization/Codec; m_252861_ + b ()Lcom/mojang/serialization/Codec; m_253152_ + static + c ()Ljava/lang/String; m_7912_ + d ()Lcom/mojang/serialization/Codec; m_252746_ + static + e ()[Lffj$a; m_252918_ + static + valueOf (Ljava/lang/String;)Lffj$a; valueOf + static + 0 o p_253822_ + values ()[Lffj$a; values + static +ffk net/minecraft/client/multiplayer/chat/LoggedChatMessage + a (Lcom/mojang/authlib/GameProfile;Ltl;Lffi;)Lffk$a; m_261049_ + static + 0 o p_261832_ + 1 o p_261491_ + 2 o p_262141_ + a (Ljava/util/UUID;)Z m_241866_ + 0 o p_242315_ + a (Lsw;Ljava/time/Instant;)Lffk$b; m_241821_ + static + 0 o p_242325_ + 1 o p_242334_ + b ()Lsw; m_241831_ + c ()Lsw; m_241813_ +ffk$a net/minecraft/client/multiplayer/chat/LoggedChatMessage$Player + b f_252425_ + c f_241668_ + d f_241690_ + e f_241609_ + f f_241693_ + ()V + static + (Lcom/mojang/authlib/GameProfile;Ltl;Lffi;)V + 0 o f_241668_ + 1 o f_241690_ + 2 o f_241609_ + a (Ljava/util/UUID;)Z m_241866_ + 0 o p_242210_ + a ()Lffj$a; m_252883_ + a (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; m_260763_ + static + 0 o p_261382_ + b ()Lsw; m_241831_ + c ()Lsw; m_241813_ + d ()Lsw; m_241865_ + e ()Ljava/util/UUID; m_241803_ + equals (Ljava/lang/Object;)Z equals + 0 o p_242245_ + f ()Lcom/mojang/authlib/GameProfile; f_241668_ + g ()Ltl; f_241690_ + h ()Lffi; f_241609_ + hashCode ()I hashCode + i ()Lsw; m_241827_ + toString ()Ljava/lang/String; toString +ffk$b net/minecraft/client/multiplayer/chat/LoggedChatMessage$System + b f_252498_ + c f_241673_ + d f_241622_ + ()V + static + (Lsw;Ljava/time/Instant;)V + 0 o f_241673_ + 1 o f_241622_ + a (Ljava/util/UUID;)Z m_241866_ + 0 o p_242173_ + a ()Lffj$a; m_252883_ + a (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; m_253117_ + static + 0 o p_253996_ + b ()Lsw; m_241831_ + d ()Lsw; f_241673_ + e ()Ljava/time/Instant; f_241622_ + equals (Ljava/lang/Object;)Z equals + 0 o p_242394_ + hashCode ()I hashCode + toString ()Ljava/lang/String; toString +ffl net/minecraft/client/multiplayer/chat/package-info +ffm net/minecraft/client/multiplayer/chat/report/AbuseReportSender + a (Ljava/util/UUID;Lcom/mojang/authlib/minecraft/report/AbuseReport;)Ljava/util/concurrent/CompletableFuture; m_239469_ + 0 o p_239838_ + 1 o p_239839_ + a ()Z m_238990_ + a (Lffq;Lcom/mojang/authlib/minecraft/UserApiService;)Lffm; m_239535_ + static + 0 o p_239536_ + 1 o p_239537_ + b ()Lcom/mojang/authlib/minecraft/report/AbuseReportLimits; m_239479_ +ffm$1 net/minecraft/client/multiplayer/chat/report/AbuseReportSender$1 + a f_238719_ + ()V + static +ffm$a net/minecraft/client/multiplayer/chat/report/AbuseReportSender$SendException + (Lsw;Ljava/lang/Throwable;)V + 0 o p_239646_ + 1 o p_239647_ +ffm$b net/minecraft/client/multiplayer/chat/report/AbuseReportSender$Services + a f_238713_ + b f_238677_ + c f_238570_ + d f_238579_ + e f_238657_ + ()V + static + (Lffq;Lcom/mojang/authlib/minecraft/UserApiService;)V + 0 o f_238713_ + 1 o f_238677_ + a (Lcom/mojang/authlib/exceptions/MinecraftClientException;)Lsw; m_240067_ + 0 o p_240068_ + a (Lcom/mojang/authlib/exceptions/MinecraftClientHttpException;)Lsw; m_239704_ + 0 o p_239705_ + a (Ljava/util/UUID;Lcom/mojang/authlib/minecraft/report/AbuseReport;)Ljava/util/concurrent/CompletableFuture; m_239469_ + 0 o p_239470_ + 1 o p_239471_ + a ()Z m_238990_ + b ()Lcom/mojang/authlib/minecraft/report/AbuseReportLimits; m_239479_ + b (Ljava/util/UUID;Lcom/mojang/authlib/minecraft/report/AbuseReport;)Lcom/mojang/datafixers/util/Unit; m_244712_ + 0 o p_247888_ + 1 o p_247889_ + c ()Lffq; f_238713_ + d ()Lcom/mojang/authlib/minecraft/UserApiService; f_238677_ + equals (Ljava/lang/Object;)Z equals + 0 o p_238985_ + hashCode ()I hashCode + toString ()Ljava/lang/String; toString +ffn net/minecraft/client/multiplayer/chat/report/BanReason + a GENERIC_VIOLATION + b FALSE_REPORTING + c HATE_SPEECH + d HATE_TERRORISM_NOTORIOUS_FIGURE + e HARASSMENT_OR_BULLYING + f DEFAMATION_IMPERSONATION_FALSE_INFORMATION + g DRUGS + h FRAUD + i SPAM_OR_ADVERTISING + j NUDITY_OR_PORNOGRAPHY + k SEXUALLY_INAPPROPRIATE + l EXTREME_VIOLENCE_OR_GORE + m IMMINENT_HARM_TO_PERSON_OR_PROPERTY + n f_271148_ + o $VALUES + ()V + static + (Ljava/lang/String;ILjava/lang/String;)V + 0 o p_273207_ + 1 o p_273600_ + 2 o p_273623_ + a ()Lsw; m_271811_ + a (I)Lffn; m_271684_ + static + 0 o p_272793_ + b ()[Lffn; m_271764_ + static + valueOf (Ljava/lang/String;)Lffn; valueOf + static + 0 o p_272908_ + values ()[Lffn; values + static +ffo net/minecraft/client/multiplayer/chat/report/ChatReportBuilder + a f_252499_ + b f_238736_ + (Lffo$b;Lcom/mojang/authlib/minecraft/report/AbuseReportLimits;)V + 0 o p_254092_ + 1 o p_254265_ + (Ljava/util/UUID;Lcom/mojang/authlib/minecraft/report/AbuseReportLimits;)V + 0 o p_239528_ + 1 o p_239529_ + a (Ljava/lang/String;)V m_239079_ + 0 o p_239080_ + a (I)V m_239051_ + 0 o p_239052_ + a (Lffh;)Lcom/mojang/authlib/minecraft/report/ReportEvidence; m_239182_ + 0 o p_239183_ + a (Lffr;)V m_239097_ + 0 o p_239098_ + a (Ljava/util/List;ILffk$a;)V m_244713_ + 0 o p_247890_ + 1 o p_247891_ + 2 o p_247892_ + a (Lffk$a;Z)Lcom/mojang/authlib/minecraft/report/ReportChatMessage; m_246289_ + 0 o p_251321_ + 1 o p_252182_ + a ()Lffo$b; m_253002_ + a (Lffs;)Lcom/mojang/datafixers/util/Either; m_240128_ + 0 o p_240129_ + b ()Ljava/util/UUID; m_239436_ + b (I)Z m_240221_ + 0 o p_243333_ + c ()Lit/unimi/dsi/fastutil/ints/IntSet; m_239716_ + d ()Ljava/lang/String; m_238976_ + e ()Lffr; m_239339_ + f ()Z m_252870_ + g ()Lffo$a; m_239332_ + h ()Lffo; m_239582_ +ffo$a net/minecraft/client/multiplayer/chat/report/ChatReportBuilder$CannotBuildReason + a f_238819_ + b f_238619_ + c f_238799_ + d f_238583_ + e f_238631_ + ()V + static + (Lsw;)V + 0 o f_238631_ + a ()Lsw; f_238631_ + equals (Ljava/lang/Object;)Z equals + 0 o p_240127_ + hashCode ()I hashCode + toString ()Ljava/lang/String; toString +ffo$b net/minecraft/client/multiplayer/chat/report/ChatReportBuilder$ChatReport + a f_252523_ + b f_252481_ + c f_252413_ + d f_252536_ + e f_252475_ + f f_252421_ + g f_252479_ + (Lffo;Ljava/util/UUID;Ljava/time/Instant;Ljava/util/UUID;)V + 0 o p_254069_ + 1 o p_254298_ + 2 o p_253854_ + 3 o p_253630_ + a (Ljava/util/UUID;)Z m_252787_ + 0 o p_253762_ + a ()Lffo$b; m_252798_ + a (ILcom/mojang/authlib/minecraft/report/AbuseReportLimits;)V m_252761_ + 0 o p_254375_ + 1 o p_254456_ +ffo$c net/minecraft/client/multiplayer/chat/report/ChatReportBuilder$Result + a f_238815_ + b f_238727_ + (Ljava/util/UUID;Lcom/mojang/authlib/minecraft/report/AbuseReport;)V + 0 o f_238815_ + 1 o f_238727_ + a ()Ljava/util/UUID; f_238815_ + b ()Lcom/mojang/authlib/minecraft/report/AbuseReport; f_238727_ + equals (Ljava/lang/Object;)Z equals + 0 o p_238996_ + hashCode ()I hashCode + toString ()Ljava/lang/String; toString +ffp net/minecraft/client/multiplayer/chat/report/ChatReportContextBuilder + a f_244017_ + b f_244428_ + (I)V + 0 o p_252198_ + a (Lffh;Lit/unimi/dsi/fastutil/ints/IntCollection;Lffp$b;)V m_246644_ + 0 o p_249467_ + 1 o p_250295_ + 2 o p_251946_ + a ()Z m_247717_ + a (Ltl;)V m_246365_ + 0 o p_252057_ + b (Ltl;)Z m_246673_ + 0 o p_250059_ +ffp$a net/minecraft/client/multiplayer/chat/report/ChatReportContextBuilder$Collector + a f_244297_ + b f_244002_ + c f_244412_ + d f_244348_ + e f_243826_ + (Lffp;Ltl;)V + 0 o p_249037_ + 1 o p_249708_ + a ()Z m_246153_ + a (Ltl;)Z m_245354_ + 0 o p_252313_ +ffp$b net/minecraft/client/multiplayer/chat/report/ChatReportContextBuilder$Handler + accept (ILffk$a;)V m_247017_ + 0 o p_248905_ + 1 o p_249564_ +ffq net/minecraft/client/multiplayer/chat/report/ReportEnvironment + a f_238774_ + b f_238655_ + (Ljava/lang/String;Lffq$a;)V + 0 o f_238774_ + 1 o f_238655_ + a (Ljava/lang/String;)Lffq; m_238998_ + static + 0 o p_238999_ + a (Lffq$a;)Lffq; m_239955_ + static + 0 o p_239956_ + a (Lejq;)Lffq; m_239764_ + static + 0 o p_239765_ + a ()Lffq; m_239898_ + static + b ()Lcom/mojang/authlib/yggdrasil/request/AbuseReportRequest$ClientInfo; m_239120_ + c ()Lcom/mojang/authlib/yggdrasil/request/AbuseReportRequest$ThirdPartyServerInfo; m_239166_ + d ()Lcom/mojang/authlib/yggdrasil/request/AbuseReportRequest$RealmInfo; m_239906_ + e ()Ljava/lang/String; f_238774_ + equals (Ljava/lang/Object;)Z equals + 0 o p_240047_ + f ()Lffq$a; f_238655_ + g ()Ljava/lang/String; m_239334_ + static + hashCode ()I hashCode + toString ()Ljava/lang/String; toString +ffq$a net/minecraft/client/multiplayer/chat/report/ReportEnvironment$Server +ffq$a$a net/minecraft/client/multiplayer/chat/report/ReportEnvironment$Server$Realm + a f_238769_ + b f_238670_ + (JI)V + 0 o f_238769_ + 1 o f_238670_ + (Lejq;)V + 0 o p_239068_ + a ()J f_238769_ + b ()I f_238670_ + equals (Ljava/lang/Object;)Z equals + 0 o p_239377_ + hashCode ()I hashCode + toString ()Ljava/lang/String; toString +ffq$a$b net/minecraft/client/multiplayer/chat/report/ReportEnvironment$Server$ThirdParty + a f_238648_ + (Ljava/lang/String;)V + 0 o f_238648_ + a ()Ljava/lang/String; f_238648_ + equals (Ljava/lang/Object;)Z equals + 0 o p_240220_ + hashCode ()I hashCode + toString ()Ljava/lang/String; toString +ffr net/minecraft/client/multiplayer/chat/report/ReportReason + a HATE_SPEECH + b TERRORISM_OR_VIOLENT_EXTREMISM + c CHILD_SEXUAL_EXPLOITATION_OR_ABUSE + d IMMINENT_HARM + e NON_CONSENSUAL_INTIMATE_IMAGERY + f HARASSMENT_OR_BULLYING + g DEFAMATION_IMPERSONATION_FALSE_INFORMATION + h SELF_HARM_OR_SUICIDE + i ALCOHOL_TOBACCO_DRUGS + j f_238735_ + k f_238806_ + l f_238818_ + m $VALUES + ()V + static + (Ljava/lang/String;ILjava/lang/String;)V + 0 o p_272707_ + 1 o p_272746_ + 2 o p_273339_ + a ()Ljava/lang/String; m_239892_ + b ()Lsw; m_239342_ + c ()Lsw; m_240151_ + d ()[Lffr; m_240189_ + static + valueOf (Ljava/lang/String;)Lffr; valueOf + static + 0 o p_239416_ + values ()[Lffr; values + static +ffs net/minecraft/client/multiplayer/chat/report/ReportingContext + a f_238714_ + b f_238706_ + c f_238644_ + d f_238743_ + e f_252449_ + (Lffm;Lffq;Lffh;)V + 0 o p_239187_ + 1 o p_239188_ + 2 o p_239189_ + a (Lffq;Lcom/mojang/authlib/minecraft/UserApiService;)Lffs; m_239685_ + static + 0 o p_239686_ + 1 o p_239687_ + a (Ljava/util/UUID;)Z m_253247_ + 0 o p_254340_ + a (Lffq;)Z m_239733_ + 0 o p_239734_ + a (Lenn;Leuq;Lffo$b;Ljava/lang/Runnable;Z)V m_260764_ + 0 o p_261383_ + 1 o p_261384_ + 2 o p_261385_ + 3 o p_261386_ + 4 o p_261387_ + a ()Lffm; m_240161_ + a (Lffo$b;)V m_253037_ + 0 o p_254293_ + a (Lenn;Leuq;Ljava/lang/Runnable;Z)V m_261157_ + 0 o p_261771_ + 1 o p_261866_ + 2 o p_262031_ + 3 o p_261540_ + b ()Lffh; m_239899_ + c ()Z m_253142_ +fft net/minecraft/client/multiplayer/chat/report/package-info +ffu net/minecraft/client/multiplayer/package-info +ffv net/minecraft/client/multiplayer/prediction/BlockStatePredictionHandler + a f_233851_ + b f_233852_ + c f_233853_ + ()V + a (ILfew;)V m_233856_ + 0 o p_233857_ + 1 o p_233858_ + a (Ldcb;Lfiy;Ljava/lang/Long;Lffv$a;)Lffv$a; m_289052_ + 0 o p_289240_ + 1 o p_289241_ + 2 o p_289242_ + 3 o p_289243_ + a (Lgu;Ldcb;Lfiy;)V m_233867_ + 0 o p_233868_ + 1 o p_233869_ + 2 o p_233870_ + a (Lgu;Ldcb;)Z m_233864_ + 0 o p_233865_ + 1 o p_233866_ + a ()Lffv; m_233855_ + b ()I m_233871_ + c ()Z m_233872_ + close ()V close +ffv$a net/minecraft/client/multiplayer/prediction/BlockStatePredictionHandler$ServerVerifiedState + a f_233874_ + b f_233875_ + c f_233876_ + (ILdcb;Leei;)V + 0 o p_233878_ + 1 o p_233879_ + 2 o p_233880_ + a (Ldcb;)V m_233883_ + 0 o p_233884_ + a (I)Lffv$a; m_233881_ + 0 o p_233882_ +ffw net/minecraft/client/multiplayer/prediction/PredictiveAction + predict (I)Luo; m_233885_ + 0 o p_233886_ +ffx net/minecraft/client/multiplayer/prediction/package-info +ffy net/minecraft/client/multiplayer/resolver/AddressCheck + a (Lfga;)Z m_142408_ + 0 o p_171830_ + a ()Lffy; m_171828_ + static + a (Lffz;)Z m_142649_ + 0 o p_171829_ +ffy$1 net/minecraft/client/multiplayer/resolver/AddressCheck$1 + a f_171831_ + (Lcom/google/common/collect/ImmutableList;)V + 0 o p_171833_ + a (Ljava/lang/String;Ljava/lang/String;Ljava/util/function/Predicate;)Z m_171838_ + static + 0 o p_171839_ + 1 o p_171840_ + 2 o p_171841_ + a (Ljava/lang/String;Ljava/util/function/Predicate;)Z m_171842_ + static + 0 o p_171843_ + 1 o p_171844_ + a (Lfga;)Z m_142408_ + 0 o p_171837_ + a (Lffz;)Z m_142649_ + 0 o p_171835_ +ffz net/minecraft/client/multiplayer/resolver/ResolvedServerAddress + a ()Ljava/lang/String; m_142727_ + a (Ljava/net/InetSocketAddress;)Lffz; m_171845_ + static + 0 o p_171846_ + b ()Ljava/lang/String; m_142728_ + c ()I m_142599_ + d ()Ljava/net/InetSocketAddress; m_142641_ +ffz$1 net/minecraft/client/multiplayer/resolver/ResolvedServerAddress$1 + a f_171847_ + (Ljava/net/InetSocketAddress;)V + 0 o p_171849_ + a ()Ljava/lang/String; m_142727_ + b ()Ljava/lang/String; m_142728_ + c ()I m_142599_ + d ()Ljava/net/InetSocketAddress; m_142641_ +fg net/minecraft/commands/arguments/blocks/BlockStateParser + A f_116759_ + a f_116741_ + b f_116742_ + c f_116743_ + d f_116744_ + e f_116745_ + f f_116746_ + g f_116747_ + h f_234669_ + i f_174101_ + j f_174102_ + k f_174103_ + l f_174104_ + m f_174105_ + n f_174106_ + o f_116748_ + p f_234670_ + q f_116749_ + r f_116750_ + s f_234671_ + t f_116751_ + u f_116752_ + v f_116753_ + w f_116754_ + x f_116755_ + y f_116756_ + z f_116757_ + ()V + static + (Lhg;Lcom/mojang/brigadier/StringReader;ZZ)V + 0 o p_234673_ + 1 o p_234674_ + 2 o p_234675_ + 3 o p_234676_ + a (Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;)Lcom/mojang/brigadier/Message; m_116794_ + static + 0 o p_116795_ + 1 o p_116796_ + 2 o p_116797_ + a (Lcom/mojang/brigadier/suggestion/SuggestionsBuilder;)Ljava/util/concurrent/CompletableFuture; m_234683_ + 0 o p_234684_ + a (Ldde;Ljava/lang/String;I)V m_116775_ + 0 o p_116776_ + 1 o p_116777_ + 2 o p_116778_ + a (Lhg;Lcom/mojang/brigadier/suggestion/SuggestionsBuilder;ZZ)Ljava/util/concurrent/CompletableFuture; m_234695_ + static + 0 o p_234696_ + 1 o p_234697_ + 2 o p_234698_ + 3 o p_234699_ + a ()V m_234677_ + a (Lacp;)Ljava/lang/String; m_234681_ + static + 0 o p_234682_ + a (Ldde;Lcom/mojang/brigadier/suggestion/SuggestionsBuilder;)Ljava/util/concurrent/CompletableFuture; m_234688_ + static + 0 o p_234689_ + 1 o p_234690_ + a (Lcom/mojang/brigadier/suggestion/SuggestionsBuilder;Ldde;)Lcom/mojang/brigadier/suggestion/SuggestionsBuilder; m_116786_ + static + 0 o p_116787_ + 1 o p_116788_ + a (Ljava/lang/StringBuilder;Ldde;Ljava/lang/Comparable;)V m_116802_ + static + 0 o p_116803_ + 1 o p_116804_ + 2 o p_116805_ + a (I)Lcom/mojang/brigadier/exceptions/CommandSyntaxException; m_116765_ + 0 o p_116766_ + a (Ldcb;)Ljava/lang/String; m_116769_ + static + 0 o p_116770_ + a (Ljava/lang/Object;)Lcom/mojang/brigadier/Message; m_234708_ + static + 0 o p_234709_ + a (Ljava/lang/String;Lcom/mojang/brigadier/suggestion/SuggestionsBuilder;)Ljava/util/concurrent/CompletableFuture; m_234710_ + 0 o p_234711_ + 1 o p_234712_ + a (ILacq;)Lcom/mojang/brigadier/exceptions/CommandSyntaxException; m_234678_ + 0 o p_234679_ + 1 o p_234680_ + a (Ljava/lang/Object;Ljava/lang/Object;)Lcom/mojang/brigadier/Message; m_116791_ + static + 0 o p_116792_ + 1 o p_116793_ + a (Lhg;Lcom/mojang/brigadier/StringReader;Z)Lfg$a; m_234691_ + static + 0 o p_234692_ + 1 o p_234693_ + 2 o p_234694_ + a (Lhg;Ljava/lang/String;Z)Lfg$a; m_245437_ + static + 0 o p_251394_ + 1 o p_248677_ + 2 o p_250430_ + a (Lcom/mojang/brigadier/suggestion/SuggestionsBuilder;Ljava/lang/String;)Ljava/util/concurrent/CompletableFuture; m_234685_ + 0 o p_234686_ + 1 o p_234687_ + b (Lhg;Ljava/lang/String;Z)Lcom/mojang/datafixers/util/Either; m_247724_ + static + 0 o p_252082_ + 1 o p_251830_ + 2 o p_249125_ + b (Lcom/mojang/brigadier/suggestion/SuggestionsBuilder;)Ljava/util/concurrent/CompletableFuture; m_234714_ + 0 o p_234715_ + b (Ljava/lang/Object;)Lcom/mojang/brigadier/Message; m_116789_ + static + 0 o p_116790_ + b ()Z m_234713_ + b (Lhg;Lcom/mojang/brigadier/StringReader;Z)Lcom/mojang/datafixers/util/Either; m_234716_ + static + 0 o p_234717_ + 1 o p_234718_ + 2 o p_234719_ + b (Ljava/lang/Object;Ljava/lang/Object;)Lcom/mojang/brigadier/Message; m_116812_ + static + 0 o p_116813_ + 1 o p_116814_ + c (Ljava/lang/Object;Ljava/lang/Object;)Lcom/mojang/brigadier/Message; m_116819_ + static + 0 o p_116820_ + 1 o p_116821_ + c (Lcom/mojang/brigadier/suggestion/SuggestionsBuilder;)Ljava/util/concurrent/CompletableFuture; m_234728_ + 0 o p_234729_ + c ()V m_116826_ + d (Lcom/mojang/brigadier/suggestion/SuggestionsBuilder;)Ljava/util/concurrent/CompletableFuture; m_234730_ + 0 o p_234731_ + d ()V m_116830_ + e (Lcom/mojang/brigadier/suggestion/SuggestionsBuilder;)Ljava/util/concurrent/CompletableFuture; m_234732_ + 0 o p_234733_ + e ()V m_116834_ + f ()V m_116838_ + f (Lcom/mojang/brigadier/suggestion/SuggestionsBuilder;)Ljava/util/concurrent/CompletableFuture; m_234734_ + 0 o p_234735_ + g ()V m_116842_ + g (Lcom/mojang/brigadier/suggestion/SuggestionsBuilder;)Ljava/util/concurrent/CompletableFuture; m_234736_ + 0 o p_234737_ + h (Lcom/mojang/brigadier/suggestion/SuggestionsBuilder;)Ljava/util/concurrent/CompletableFuture; m_234738_ + 0 o p_234739_ + i (Lcom/mojang/brigadier/suggestion/SuggestionsBuilder;)Ljava/util/concurrent/CompletableFuture; m_234740_ + 0 o p_234741_ + j (Lcom/mojang/brigadier/suggestion/SuggestionsBuilder;)Ljava/util/concurrent/CompletableFuture; m_234742_ + 0 o p_234743_ + k (Lcom/mojang/brigadier/suggestion/SuggestionsBuilder;)Ljava/util/concurrent/CompletableFuture; m_234744_ + 0 o p_234745_ + l (Lcom/mojang/brigadier/suggestion/SuggestionsBuilder;)Ljava/util/concurrent/CompletableFuture; m_234746_ + 0 o p_234747_ +fg$a net/minecraft/commands/arguments/blocks/BlockStateParser$BlockResult + a f_234748_ + b f_234749_ + c f_234750_ + (Ldcb;Ljava/util/Map;Lqr;)V + 0 o f_234748_ + 1 o f_234749_ + 2 o f_234750_ + a ()Ldcb; f_234748_ + b ()Ljava/util/Map; f_234749_ + c ()Lqr; f_234750_ + equals (Ljava/lang/Object;)Z equals + 0 o p_234759_ + hashCode ()I hashCode + toString ()Ljava/lang/String; toString +fg$b net/minecraft/commands/arguments/blocks/BlockStateParser$TagResult + a f_234762_ + b f_234763_ + c f_234764_ + (Lhi;Ljava/util/Map;Lqr;)V + 0 o f_234762_ + 1 o f_234763_ + 2 o f_234764_ + a ()Lhi; f_234762_ + b ()Ljava/util/Map; f_234763_ + c ()Lqr; f_234764_ + equals (Ljava/lang/Object;)Z equals + 0 o p_234773_ + hashCode ()I hashCode + toString ()Ljava/lang/String; toString +fga net/minecraft/client/multiplayer/resolver/ServerAddress + a f_171854_ + b f_171855_ + c f_171856_ + ()V + static + (Lcom/google/common/net/HostAndPort;)V + 0 o p_171859_ + (Ljava/lang/String;I)V + 0 o p_171861_ + 1 o p_171862_ + a (Ljava/lang/String;)Lfga; m_171864_ + static + 0 o p_171865_ + a ()Ljava/lang/String; m_171863_ + b (Ljava/lang/String;)Z m_171867_ + static + 0 o p_171868_ + b ()I m_171866_ + c (Ljava/lang/String;)I m_171869_ + static + 0 o p_171870_ + equals (Ljava/lang/Object;)Z equals + 0 o p_171872_ + hashCode ()I hashCode + toString ()Ljava/lang/String; toString +fgb net/minecraft/client/multiplayer/resolver/ServerAddressResolver + a f_171874_ + b f_171875_ + ()V + static + a (Lfga;)Ljava/util/Optional; m_171877_ + static + 0 o p_171878_ + resolve (Lfga;)Ljava/util/Optional; m_171879_ + 0 o p_171880_ +fgc net/minecraft/client/multiplayer/resolver/ServerNameResolver + a f_171881_ + b f_171882_ + c f_171883_ + d f_171884_ + ()V + static + (Lfgb;Lfgd;Lffy;)V + 0 o p_171887_ + 1 o p_171888_ + 2 o p_171889_ + a (Lfga;)Ljava/util/Optional; m_171890_ + 0 o p_171891_ +fgd net/minecraft/client/multiplayer/resolver/ServerRedirectHandler + a f_171892_ + b f_171893_ + ()V + static + a (Lfga;)Ljava/util/Optional; m_171896_ + static + 0 o p_171897_ + a (Ljavax/naming/directory/DirContext;Lfga;)Ljava/util/Optional; m_171898_ + static + 0 o p_171899_ + 1 o p_171900_ + createDnsSrvRedirectHandler ()Lfgd; m_171895_ + static + lookupRedirect (Lfga;)Ljava/util/Optional; m_171901_ + 0 o p_171902_ +fge net/minecraft/client/multiplayer/resolver/package-info +fgf net/minecraft/client/package-info +fgg net/minecraft/client/particle/AshParticle + (Lfew;DDDDDDFLfih;)V + 0 o p_105514_ + 1 o p_105515_ + 2 o p_105516_ + 3 o p_105517_ + 4 o p_105518_ + 5 o p_105519_ + 6 o p_105520_ + 7 o p_105521_ + 8 o p_105522_ +fgg$a net/minecraft/client/particle/AshParticle$Provider + a f_105523_ + (Lfih;)V + 0 o p_105525_ + a (Liy;Lfew;DDDDDD)Lfhm; m_6966_ + 0 o p_105536_ + 1 o p_105537_ + 2 o p_105538_ + 3 o p_105539_ + 4 o p_105540_ + 5 o p_105541_ + 6 o p_105542_ + 7 o p_105543_ + createParticle (Lit;Lfew;DDDDDD)Lfhm; m_6966_ + 0 o p_105527_ + 1 o p_105528_ + 2 o p_105529_ + 3 o p_105530_ + 4 o p_105531_ + 5 o p_105532_ + 6 o p_105533_ + 7 o p_105534_ +fgh net/minecraft/client/particle/AttackSweepParticle + a f_105544_ + (Lfew;DDDDLfih;)V + 0 o p_105546_ + 1 o p_105547_ + 2 o p_105548_ + 3 o p_105549_ + 4 o p_105550_ + 5 o p_105551_ + a (F)I m_6355_ + 0 o p_105562_ + a ()V m_5989_ + b ()Lfhq; m_7556_ +fgh$a net/minecraft/client/particle/AttackSweepParticle$Provider + a f_105564_ + (Lfih;)V + 0 o p_105566_ + a (Liy;Lfew;DDDDDD)Lfhm; m_6966_ + 0 o p_105577_ + 1 o p_105578_ + 2 o p_105579_ + 3 o p_105580_ + 4 o p_105581_ + 5 o p_105582_ + 6 o p_105583_ + 7 o p_105584_ + createParticle (Lit;Lfew;DDDDDD)Lfhm; m_6966_ + 0 o p_105568_ + 1 o p_105569_ + 2 o p_105570_ + 3 o p_105571_ + 4 o p_105572_ + 5 o p_105573_ + 6 o p_105574_ + 7 o p_105575_ +fgi net/minecraft/client/particle/BaseAshSmokeParticle + a f_105620_ + (Lfew;DDDFFFDDDFLfih;FIFZ)V + 0 o p_171904_ + 1 o p_171905_ + 2 o p_171906_ + 3 o p_171907_ + 4 o p_171908_ + 5 o p_171909_ + 6 o p_171910_ + 7 o p_171911_ + 8 o p_171912_ + 9 o p_171913_ + 10 o p_171914_ + 11 o p_171915_ + 12 o p_171916_ + 13 o p_171917_ + 14 o p_171918_ + 15 o p_171919_ + a ()V m_5989_ + b (F)F m_5902_ + 0 o p_105642_ + b ()Lfhq; m_7556_ +fgj net/minecraft/client/particle/BlockMarker + (Lfew;DDDLdcb;)V + 0 o p_194267_ + 1 o p_194268_ + 2 o p_194269_ + 3 o p_194270_ + 4 o p_194271_ + b (F)F m_5902_ + 0 o p_194274_ + b ()Lfhq; m_7556_ +fgj$a net/minecraft/client/particle/BlockMarker$Provider + ()V + a (Lin;Lfew;DDDDDD)Lfhm; m_6966_ + 0 o p_194277_ + 1 o p_194278_ + 2 o p_194279_ + 3 o p_194280_ + 4 o p_194281_ + 5 o p_194282_ + 6 o p_194283_ + 7 o p_194284_ + createParticle (Lit;Lfew;DDDDDD)Lfhm; m_6966_ + 0 o p_194286_ + 1 o p_194287_ + 2 o p_194288_ + 3 o p_194289_ + 4 o p_194290_ + 5 o p_194291_ + 6 o p_194292_ + 7 o p_194293_ +fgk net/minecraft/client/particle/BreakingItemParticle + a f_105643_ + b f_105644_ + (Lfew;DDDDDDLcfz;)V + 0 o p_105646_ + 1 o p_105647_ + 2 o p_105648_ + 3 o p_105649_ + 4 o p_105650_ + 5 o p_105651_ + 6 o p_105652_ + 7 o p_105653_ + (Lfew;DDDLcfz;)V + 0 o p_105665_ + 1 o p_105666_ + 2 o p_105667_ + 3 o p_105668_ + 4 o p_105669_ + b ()Lfhq; m_7556_ + c ()F m_5970_ + d ()F m_5952_ + e ()F m_5951_ + f ()F m_5950_ +fgk$a net/minecraft/client/particle/BreakingItemParticle$Provider + ()V + a (Lir;Lfew;DDDDDD)Lfhm; m_6966_ + 0 o p_105677_ + 1 o p_105678_ + 2 o p_105679_ + 3 o p_105680_ + 4 o p_105681_ + 5 o p_105682_ + 6 o p_105683_ + 7 o p_105684_ + createParticle (Lit;Lfew;DDDDDD)Lfhm; m_6966_ + 0 o p_105686_ + 1 o p_105687_ + 2 o p_105688_ + 3 o p_105689_ + 4 o p_105690_ + 5 o p_105691_ + 6 o p_105692_ + 7 o p_105693_ +fgk$b net/minecraft/client/particle/BreakingItemParticle$SlimeProvider + ()V + a (Liy;Lfew;DDDDDD)Lfhm; m_6966_ + 0 o p_105705_ + 1 o p_105706_ + 2 o p_105707_ + 3 o p_105708_ + 4 o p_105709_ + 5 o p_105710_ + 6 o p_105711_ + 7 o p_105712_ + createParticle (Lit;Lfew;DDDDDD)Lfhm; m_6966_ + 0 o p_105696_ + 1 o p_105697_ + 2 o p_105698_ + 3 o p_105699_ + 4 o p_105700_ + 5 o p_105701_ + 6 o p_105702_ + 7 o p_105703_ +fgk$c net/minecraft/client/particle/BreakingItemParticle$SnowballProvider + ()V + a (Liy;Lfew;DDDDDD)Lfhm; m_6966_ + 0 o p_105724_ + 1 o p_105725_ + 2 o p_105726_ + 3 o p_105727_ + 4 o p_105728_ + 5 o p_105729_ + 6 o p_105730_ + 7 o p_105731_ + createParticle (Lit;Lfew;DDDDDD)Lfhm; m_6966_ + 0 o p_105715_ + 1 o p_105716_ + 2 o p_105717_ + 3 o p_105718_ + 4 o p_105719_ + 5 o p_105720_ + 6 o p_105721_ + 7 o p_105722_ +fgl net/minecraft/client/particle/BubbleColumnUpParticle + (Lfew;DDDDDD)V + 0 o p_105733_ + 1 o p_105734_ + 2 o p_105735_ + 3 o p_105736_ + 4 o p_105737_ + 5 o p_105738_ + 6 o p_105739_ + a ()V m_5989_ + b ()Lfhq; m_7556_ +fgl$a net/minecraft/client/particle/BubbleColumnUpParticle$Provider + a f_105751_ + (Lfih;)V + 0 o p_105753_ + a (Liy;Lfew;DDDDDD)Lfhm; m_6966_ + 0 o p_105764_ + 1 o p_105765_ + 2 o p_105766_ + 3 o p_105767_ + 4 o p_105768_ + 5 o p_105769_ + 6 o p_105770_ + 7 o p_105771_ + createParticle (Lit;Lfew;DDDDDD)Lfhm; m_6966_ + 0 o p_105755_ + 1 o p_105756_ + 2 o p_105757_ + 3 o p_105758_ + 4 o p_105759_ + 5 o p_105760_ + 6 o p_105761_ + 7 o p_105762_ +fgm net/minecraft/client/particle/BubbleParticle + (Lfew;DDDDDD)V + 0 o p_105773_ + 1 o p_105774_ + 2 o p_105775_ + 3 o p_105776_ + 4 o p_105777_ + 5 o p_105778_ + 6 o p_105779_ + a ()V m_5989_ + b ()Lfhq; m_7556_ +fgm$a net/minecraft/client/particle/BubbleParticle$Provider + a f_105791_ + (Lfih;)V + 0 o p_105793_ + a (Liy;Lfew;DDDDDD)Lfhm; m_6966_ + 0 o p_105804_ + 1 o p_105805_ + 2 o p_105806_ + 3 o p_105807_ + 4 o p_105808_ + 5 o p_105809_ + 6 o p_105810_ + 7 o p_105811_ + createParticle (Lit;Lfew;DDDDDD)Lfhm; m_6966_ + 0 o p_105795_ + 1 o p_105796_ + 2 o p_105797_ + 3 o p_105798_ + 4 o p_105799_ + 5 o p_105800_ + 6 o p_105801_ + 7 o p_105802_ +fgn net/minecraft/client/particle/BubblePopParticle + a f_105812_ + (Lfew;DDDDDDLfih;)V + 0 o p_105814_ + 1 o p_105815_ + 2 o p_105816_ + 3 o p_105817_ + 4 o p_105818_ + 5 o p_105819_ + 6 o p_105820_ + 7 o p_105821_ + a ()V m_5989_ + b ()Lfhq; m_7556_ +fgn$a net/minecraft/client/particle/BubblePopParticle$Provider + a f_105834_ + (Lfih;)V + 0 o p_105836_ + a (Liy;Lfew;DDDDDD)Lfhm; m_6966_ + 0 o p_105847_ + 1 o p_105848_ + 2 o p_105849_ + 3 o p_105850_ + 4 o p_105851_ + 5 o p_105852_ + 6 o p_105853_ + 7 o p_105854_ + createParticle (Lit;Lfew;DDDDDD)Lfhm; m_6966_ + 0 o p_105838_ + 1 o p_105839_ + 2 o p_105840_ + 3 o p_105841_ + 4 o p_105842_ + 5 o p_105843_ + 6 o p_105844_ + 7 o p_105845_ +fgo net/minecraft/client/particle/CampfireSmokeParticle + (Lfew;DDDDDDZ)V + 0 o p_105856_ + 1 o p_105857_ + 2 o p_105858_ + 3 o p_105859_ + 4 o p_105860_ + 5 o p_105861_ + 6 o p_105862_ + 7 o p_105863_ + a ()V m_5989_ + b ()Lfhq; m_7556_ +fgo$a net/minecraft/client/particle/CampfireSmokeParticle$CosyProvider + a f_105876_ + (Lfih;)V + 0 o p_105878_ + a (Liy;Lfew;DDDDDD)Lfhm; m_6966_ + 0 o p_105889_ + 1 o p_105890_ + 2 o p_105891_ + 3 o p_105892_ + 4 o p_105893_ + 5 o p_105894_ + 6 o p_105895_ + 7 o p_105896_ + createParticle (Lit;Lfew;DDDDDD)Lfhm; m_6966_ + 0 o p_105880_ + 1 o p_105881_ + 2 o p_105882_ + 3 o p_105883_ + 4 o p_105884_ + 5 o p_105885_ + 6 o p_105886_ + 7 o p_105887_ +fgo$b net/minecraft/client/particle/CampfireSmokeParticle$SignalProvider + a f_105897_ + (Lfih;)V + 0 o p_105899_ + a (Liy;Lfew;DDDDDD)Lfhm; m_6966_ + 0 o p_105910_ + 1 o p_105911_ + 2 o p_105912_ + 3 o p_105913_ + 4 o p_105914_ + 5 o p_105915_ + 6 o p_105916_ + 7 o p_105917_ + createParticle (Lit;Lfew;DDDDDD)Lfhm; m_6966_ + 0 o p_105901_ + 1 o p_105902_ + 2 o p_105903_ + 3 o p_105904_ + 4 o p_105905_ + 5 o p_105906_ + 6 o p_105907_ + 7 o p_105908_ +fgp net/minecraft/client/particle/CherryParticle + F f_276480_ + G f_276422_ + H f_276657_ + I f_276609_ + J f_276535_ + K f_276513_ + a f_276642_ + b f_276664_ + (Lfew;DDDLfih;)V + 0 o p_277612_ + 1 o p_278010_ + 2 o p_277614_ + 3 o p_277673_ + 4 o p_277465_ + a ()V m_5989_ + b ()Lfhq; m_7556_ +fgq net/minecraft/client/particle/CritParticle + (Lfew;DDDDDD)V + 0 o p_105919_ + 1 o p_105920_ + 2 o p_105921_ + 3 o p_105922_ + 4 o p_105923_ + 5 o p_105924_ + 6 o p_105925_ + a ()V m_5989_ + b (F)F m_5902_ + 0 o p_105938_ + b ()Lfhq; m_7556_ +fgq$a net/minecraft/client/particle/CritParticle$DamageIndicatorProvider + a f_105939_ + (Lfih;)V + 0 o p_105941_ + a (Liy;Lfew;DDDDDD)Lfhm; m_6966_ + 0 o p_105952_ + 1 o p_105953_ + 2 o p_105954_ + 3 o p_105955_ + 4 o p_105956_ + 5 o p_105957_ + 6 o p_105958_ + 7 o p_105959_ + createParticle (Lit;Lfew;DDDDDD)Lfhm; m_6966_ + 0 o p_105943_ + 1 o p_105944_ + 2 o p_105945_ + 3 o p_105946_ + 4 o p_105947_ + 5 o p_105948_ + 6 o p_105949_ + 7 o p_105950_ +fgq$b net/minecraft/client/particle/CritParticle$MagicProvider + a f_105960_ + (Lfih;)V + 0 o p_105962_ + a (Liy;Lfew;DDDDDD)Lfhm; m_6966_ + 0 o p_105973_ + 1 o p_105974_ + 2 o p_105975_ + 3 o p_105976_ + 4 o p_105977_ + 5 o p_105978_ + 6 o p_105979_ + 7 o p_105980_ + createParticle (Lit;Lfew;DDDDDD)Lfhm; m_6966_ + 0 o p_105964_ + 1 o p_105965_ + 2 o p_105966_ + 3 o p_105967_ + 4 o p_105968_ + 5 o p_105969_ + 6 o p_105970_ + 7 o p_105971_ +fgq$c net/minecraft/client/particle/CritParticle$Provider + a f_105981_ + (Lfih;)V + 0 o p_105983_ + a (Liy;Lfew;DDDDDD)Lfhm; m_6966_ + 0 o p_105994_ + 1 o p_105995_ + 2 o p_105996_ + 3 o p_105997_ + 4 o p_105998_ + 5 o p_105999_ + 6 o p_106000_ + 7 o p_106001_ + createParticle (Lit;Lfew;DDDDDD)Lfhm; m_6966_ + 0 o p_105985_ + 1 o p_105986_ + 2 o p_105987_ + 3 o p_105988_ + 4 o p_105989_ + 5 o p_105990_ + 6 o p_105991_ + 7 o p_105992_ +fgr net/minecraft/client/particle/DragonBreathParticle + F f_171920_ + G f_171921_ + H f_171922_ + I f_171923_ + J f_171924_ + K f_171925_ + L f_106002_ + M f_106003_ + a f_171926_ + b f_171927_ + (Lfew;DDDDDDLfih;)V + 0 o p_106005_ + 1 o p_106006_ + 2 o p_106007_ + 3 o p_106008_ + 4 o p_106009_ + 5 o p_106010_ + 6 o p_106011_ + 7 o p_106012_ + a ()V m_5989_ + b (F)F m_5902_ + 0 o p_106026_ + b ()Lfhq; m_7556_ +fgr$a net/minecraft/client/particle/DragonBreathParticle$Provider + a f_106027_ + (Lfih;)V + 0 o p_106029_ + a (Liy;Lfew;DDDDDD)Lfhm; m_6966_ + 0 o p_106040_ + 1 o p_106041_ + 2 o p_106042_ + 3 o p_106043_ + 4 o p_106044_ + 5 o p_106045_ + 6 o p_106046_ + 7 o p_106047_ + createParticle (Lit;Lfew;DDDDDD)Lfhm; m_6966_ + 0 o p_106031_ + 1 o p_106032_ + 2 o p_106033_ + 3 o p_106034_ + 4 o p_106035_ + 5 o p_106036_ + 6 o p_106037_ + 7 o p_106038_ +fgs net/minecraft/client/particle/DripParticle + a f_106048_ + b f_106049_ + (Lfew;DDDLdxd;)V + 0 o p_106051_ + 1 o p_106052_ + 2 o p_106053_ + 3 o p_106054_ + 4 o p_106055_ + a (Liy;Lfew;DDDDDD)Lfim; m_272020_ + static + 0 o p_272626_ + 1 o p_273102_ + 2 o p_273456_ + 3 o p_272984_ + 4 o p_273398_ + 5 o p_272880_ + 6 o p_273725_ + 7 o p_273051_ + a (F)I m_6355_ + 0 o p_106065_ + a ()V m_5989_ + b ()Lfhq; m_7556_ + b (Liy;Lfew;DDDDDD)Lfim; m_271915_ + static + 0 o p_273627_ + 1 o p_273486_ + 2 o p_273309_ + 3 o p_273125_ + 4 o p_272992_ + 5 o p_273177_ + 6 o p_273537_ + 7 o p_272846_ + c (Liy;Lfew;DDDDDD)Lfim; m_272109_ + static + 0 o p_273228_ + 1 o p_273622_ + 2 o p_273666_ + 3 o p_273570_ + 4 o p_273214_ + 5 o p_273664_ + 6 o p_273595_ + 7 o p_272690_ + d (Liy;Lfew;DDDDDD)Lfim; m_272026_ + static + 0 o p_273238_ + 1 o p_273752_ + 2 o p_272651_ + 3 o p_273625_ + 4 o p_273136_ + 5 o p_273204_ + 6 o p_272797_ + 7 o p_273362_ + e (Liy;Lfew;DDDDDD)Lfim; m_271885_ + static + 0 o p_273607_ + 1 o p_272692_ + 2 o p_273544_ + 3 o p_272768_ + 4 o p_272726_ + 5 o p_273719_ + 6 o p_272833_ + 7 o p_272949_ + f (Liy;Lfew;DDDDDD)Lfim; m_272107_ + static + 0 o p_273557_ + 1 o p_273367_ + 2 o p_272749_ + 3 o p_272697_ + 4 o p_272849_ + 5 o p_273144_ + 6 o p_273170_ + 7 o p_272932_ + g ()Ldxd; m_171928_ + g (Liy;Lfew;DDDDDD)Lfim; m_272030_ + static + 0 o p_273140_ + 1 o p_273042_ + 2 o p_272969_ + 3 o p_273737_ + 4 o p_273454_ + 5 o p_273211_ + 6 o p_273723_ + 7 o p_273474_ + h ()V m_5956_ + h (Liy;Lfew;DDDDDD)Lfim; m_271744_ + static + 0 o p_273477_ + 1 o p_273770_ + 2 o p_272822_ + 3 o p_273147_ + 4 o p_272597_ + 5 o p_273614_ + 6 o p_273085_ + 7 o p_273097_ + i (Liy;Lfew;DDDDDD)Lfim; m_272002_ + static + 0 o p_273781_ + 1 o p_272876_ + 2 o p_273499_ + 3 o p_273028_ + 4 o p_273663_ + 5 o p_273004_ + 6 o p_272801_ + 7 o p_272665_ + i ()V m_5949_ + j (Liy;Lfew;DDDDDD)Lfim; m_271993_ + static + 0 o p_272684_ + 1 o p_273226_ + 2 o p_273142_ + 3 o p_273070_ + 4 o p_273153_ + 5 o p_273735_ + 6 o p_273317_ + 7 o p_273234_ + k (Liy;Lfew;DDDDDD)Lfim; m_271789_ + static + 0 o p_273453_ + 1 o p_273616_ + 2 o p_272691_ + 3 o p_272725_ + 4 o p_273259_ + 5 o p_273634_ + 6 o p_273065_ + 7 o p_273428_ + l (Liy;Lfew;DDDDDD)Lfim; m_271760_ + static + 0 o p_272890_ + 1 o p_273172_ + 2 o p_272954_ + 3 o p_272803_ + 4 o p_273427_ + 5 o p_273081_ + 6 o p_273047_ + 7 o p_272960_ + m (Liy;Lfew;DDDDDD)Lfim; m_272129_ + static + 0 o p_273349_ + 1 o p_272672_ + 2 o p_272820_ + 3 o p_273386_ + 4 o p_272886_ + 5 o p_272935_ + 6 o p_273715_ + 7 o p_273202_ + n (Liy;Lfew;DDDDDD)Lfim; m_272261_ + static + 0 o p_273654_ + 1 o p_272678_ + 2 o p_272637_ + 3 o p_273253_ + 4 o p_273293_ + 5 o p_273363_ + 6 o p_273132_ + 7 o p_273215_ + o (Liy;Lfew;DDDDDD)Lfim; m_271935_ + static + 0 o p_273120_ + 1 o p_272664_ + 2 o p_272879_ + 3 o p_272592_ + 4 o p_272967_ + 5 o p_272834_ + 6 o p_273440_ + 7 o p_272888_ + p (Liy;Lfew;DDDDDD)Lfim; m_271941_ + static + 0 o p_272859_ + 1 o p_273478_ + 2 o p_273621_ + 3 o p_273279_ + 4 o p_273227_ + 5 o p_273061_ + 6 o p_273257_ + 7 o p_273164_ + q (Liy;Lfew;DDDDDD)Lfim; m_272251_ + static + 0 o p_272836_ + 1 o p_273162_ + 2 o p_273543_ + 3 o p_273247_ + 4 o p_272921_ + 5 o p_273397_ + 6 o p_273472_ + 7 o p_273488_ +fgs$a net/minecraft/client/particle/DripParticle$CoolingDripHangParticle + (Lfew;DDDLdxd;Lit;)V + 0 o p_106068_ + 1 o p_106069_ + 2 o p_106070_ + 3 o p_106071_ + 4 o p_106072_ + 5 o p_106073_ + h ()V m_5956_ +fgs$b net/minecraft/client/particle/DripParticle$DripHangParticle + b f_106083_ + (Lfew;DDDLdxd;Lit;)V + 0 o p_106085_ + 1 o p_106086_ + 2 o p_106087_ + 3 o p_106088_ + 4 o p_106089_ + 5 o p_106090_ + h ()V m_5956_ + i ()V m_5949_ +fgs$c net/minecraft/client/particle/DripParticle$DripLandParticle + (Lfew;DDDLdxd;)V + 0 o p_106102_ + 1 o p_106103_ + 2 o p_106104_ + 3 o p_106105_ + 4 o p_106106_ +fgs$d net/minecraft/client/particle/DripParticle$DripstoneFallAndLandParticle + (Lfew;DDDLdxd;Lit;)V + 0 o p_171930_ + 1 o p_171931_ + 2 o p_171932_ + 3 o p_171933_ + 4 o p_171934_ + 5 o p_171935_ + i ()V m_5949_ +fgs$e net/minecraft/client/particle/DripParticle$FallAndLandParticle + b f_106114_ + (Lfew;DDDLdxd;Lit;)V + 0 o p_106116_ + 1 o p_106117_ + 2 o p_106118_ + 3 o p_106119_ + 4 o p_106120_ + 5 o p_106121_ + i ()V m_5949_ +fgs$f net/minecraft/client/particle/DripParticle$FallingParticle + (Lfew;DDDLdxd;)V + 0 o p_106132_ + 1 o p_106133_ + 2 o p_106134_ + 3 o p_106135_ + 4 o p_106136_ + (Lfew;DDDLdxd;I)V + 0 o p_172022_ + 1 o p_172023_ + 2 o p_172024_ + 3 o p_172025_ + 4 o p_172026_ + 5 o p_172027_ + i ()V m_5949_ +fgs$g net/minecraft/client/particle/DripParticle$HoneyFallAndLandParticle + (Lfew;DDDLdxd;Lit;)V + 0 o p_106146_ + 1 o p_106147_ + 2 o p_106148_ + 3 o p_106149_ + 4 o p_106150_ + 5 o p_106151_ + i ()V m_5949_ +fgt net/minecraft/client/particle/DustColorTransitionParticle + a f_172050_ + b f_172051_ + (Lfew;DDDDDDLio;Lfih;)V + 0 o p_172053_ + 1 o p_172054_ + 2 o p_172055_ + 3 o p_172056_ + 4 o p_172057_ + 5 o p_172058_ + 6 o p_172059_ + 7 o p_172060_ + 8 o p_172061_ + a (Lorg/joml/Vector3f;F)Lorg/joml/Vector3f; m_252968_ + 0 o p_254318_ + 1 o p_254472_ + a (Lein;Lemz;F)V m_5744_ + 0 o p_172063_ + 1 o p_172064_ + 2 o p_172065_ + f (F)V m_172069_ + 0 o p_172070_ +fgt$a net/minecraft/client/particle/DustColorTransitionParticle$Provider + a f_172071_ + (Lfih;)V + 0 o p_172073_ + a (Lio;Lfew;DDDDDD)Lfhm; m_6966_ + 0 o p_172075_ + 1 o p_172076_ + 2 o p_172077_ + 3 o p_172078_ + 4 o p_172079_ + 5 o p_172080_ + 6 o p_172081_ + 7 o p_172082_ + createParticle (Lit;Lfew;DDDDDD)Lfhm; m_6966_ + 0 o p_172084_ + 1 o p_172085_ + 2 o p_172086_ + 3 o p_172087_ + 4 o p_172088_ + 5 o p_172089_ + 6 o p_172090_ + 7 o p_172091_ +fgu net/minecraft/client/particle/DustParticle + (Lfew;DDDDDDLip;Lfih;)V + 0 o p_106415_ + 1 o p_106416_ + 2 o p_106417_ + 3 o p_106418_ + 4 o p_106419_ + 5 o p_106420_ + 6 o p_106421_ + 7 o p_106422_ + 8 o p_106423_ +fgu$a net/minecraft/client/particle/DustParticle$Provider + a f_106439_ + (Lfih;)V + 0 o p_106441_ + a (Lip;Lfew;DDDDDD)Lfhm; m_6966_ + 0 o p_106443_ + 1 o p_106444_ + 2 o p_106445_ + 3 o p_106446_ + 4 o p_106447_ + 5 o p_106448_ + 6 o p_106449_ + 7 o p_106450_ + createParticle (Lit;Lfew;DDDDDD)Lfhm; m_6966_ + 0 o p_106452_ + 1 o p_106453_ + 2 o p_106454_ + 3 o p_106455_ + 4 o p_106456_ + 5 o p_106457_ + 6 o p_106458_ + 7 o p_106459_ +fgv net/minecraft/client/particle/DustParticleBase + a f_172092_ + (Lfew;DDDDDDLiq;Lfih;)V + 0 o p_172094_ + 1 o p_172095_ + 2 o p_172096_ + 3 o p_172097_ + 4 o p_172098_ + 5 o p_172099_ + 6 o p_172100_ + 7 o p_172101_ + 8 o p_172102_ + a ()V m_5989_ + a (FF)F m_172104_ + 0 o p_172105_ + 1 o p_172106_ + b (F)F m_5902_ + 0 o p_172109_ + b ()Lfhq; m_7556_ +fgw net/minecraft/client/particle/EnchantmentTableParticle + F f_106460_ + a f_106461_ + b f_106462_ + (Lfew;DDDDDD)V + 0 o p_106464_ + 1 o p_106465_ + 2 o p_106466_ + 3 o p_106467_ + 4 o p_106468_ + 5 o p_106469_ + 6 o p_106470_ + a (F)I m_6355_ + 0 o p_106486_ + a (DDD)V m_6257_ + 0 o p_106482_ + 1 o p_106483_ + 2 o p_106484_ + a ()V m_5989_ + b ()Lfhq; m_7556_ +fgw$a net/minecraft/client/particle/EnchantmentTableParticle$NautilusProvider + a f_106488_ + (Lfih;)V + 0 o p_106490_ + a (Liy;Lfew;DDDDDD)Lfhm; m_6966_ + 0 o p_106501_ + 1 o p_106502_ + 2 o p_106503_ + 3 o p_106504_ + 4 o p_106505_ + 5 o p_106506_ + 6 o p_106507_ + 7 o p_106508_ + createParticle (Lit;Lfew;DDDDDD)Lfhm; m_6966_ + 0 o p_106492_ + 1 o p_106493_ + 2 o p_106494_ + 3 o p_106495_ + 4 o p_106496_ + 5 o p_106497_ + 6 o p_106498_ + 7 o p_106499_ +fgw$b net/minecraft/client/particle/EnchantmentTableParticle$Provider + a f_106509_ + (Lfih;)V + 0 o p_106511_ + a (Liy;Lfew;DDDDDD)Lfhm; m_6966_ + 0 o p_106522_ + 1 o p_106523_ + 2 o p_106524_ + 3 o p_106525_ + 4 o p_106526_ + 5 o p_106527_ + 6 o p_106528_ + 7 o p_106529_ + createParticle (Lit;Lfew;DDDDDD)Lfhm; m_6966_ + 0 o p_106513_ + 1 o p_106514_ + 2 o p_106515_ + 3 o p_106516_ + 4 o p_106517_ + 5 o p_106518_ + 6 o p_106519_ + 7 o p_106520_ +fgx net/minecraft/client/particle/EndRodParticle + (Lfew;DDDDDDLfih;)V + 0 o p_106531_ + 1 o p_106532_ + 2 o p_106533_ + 3 o p_106534_ + 4 o p_106535_ + 5 o p_106536_ + 6 o p_106537_ + 7 o p_106538_ + a (DDD)V m_6257_ + 0 o p_106550_ + 1 o p_106551_ + 2 o p_106552_ +fgx$a net/minecraft/client/particle/EndRodParticle$Provider + a f_106553_ + (Lfih;)V + 0 o p_106555_ + a (Liy;Lfew;DDDDDD)Lfhm; m_6966_ + 0 o p_106566_ + 1 o p_106567_ + 2 o p_106568_ + 3 o p_106569_ + 4 o p_106570_ + 5 o p_106571_ + 6 o p_106572_ + 7 o p_106573_ + createParticle (Lit;Lfew;DDDDDD)Lfhm; m_6966_ + 0 o p_106557_ + 1 o p_106558_ + 2 o p_106559_ + 3 o p_106560_ + 4 o p_106561_ + 5 o p_106562_ + 6 o p_106563_ + 7 o p_106564_ +fgy net/minecraft/client/particle/ExplodeParticle + a f_106574_ + (Lfew;DDDDDDLfih;)V + 0 o p_106576_ + 1 o p_106577_ + 2 o p_106578_ + 3 o p_106579_ + 4 o p_106580_ + 5 o p_106581_ + 6 o p_106582_ + 7 o p_106583_ + a ()V m_5989_ + b ()Lfhq; m_7556_ +fgy$a net/minecraft/client/particle/ExplodeParticle$Provider + a f_106586_ + (Lfih;)V + 0 o p_106588_ + a (Liy;Lfew;DDDDDD)Lfhm; m_6966_ + 0 o p_106599_ + 1 o p_106600_ + 2 o p_106601_ + 3 o p_106602_ + 4 o p_106603_ + 5 o p_106604_ + 6 o p_106605_ + 7 o p_106606_ + createParticle (Lit;Lfew;DDDDDD)Lfhm; m_6966_ + 0 o p_106590_ + 1 o p_106591_ + 2 o p_106592_ + 3 o p_106593_ + 4 o p_106594_ + 5 o p_106595_ + 6 o p_106596_ + 7 o p_106597_ +fgz net/minecraft/client/particle/FallingDustParticle + a f_106607_ + b f_106608_ + (Lfew;DDDFFFLfih;)V + 0 o p_106610_ + 1 o p_106611_ + 2 o p_106612_ + 3 o p_106613_ + 4 o p_106614_ + 5 o p_106615_ + 6 o p_106616_ + 7 o p_106617_ + a ()V m_5989_ + b (F)F m_5902_ + 0 o p_106631_ + b ()Lfhq; m_7556_ +fgz$a net/minecraft/client/particle/FallingDustParticle$Provider + a f_106632_ + (Lfih;)V + 0 o p_106634_ + a (Lin;Lfew;DDDDDD)Lfhm; m_6966_ + 0 o p_106636_ + 1 o p_106637_ + 2 o p_106638_ + 3 o p_106639_ + 4 o p_106640_ + 5 o p_106641_ + 6 o p_106642_ + 7 o p_106643_ + createParticle (Lit;Lfew;DDDDDD)Lfhm; m_6966_ + 0 o p_106645_ + 1 o p_106646_ + 2 o p_106647_ + 3 o p_106648_ + 4 o p_106649_ + 5 o p_106650_ + 6 o p_106651_ + 7 o p_106652_ +fh net/minecraft/commands/arguments/blocks/package-info +fha net/minecraft/client/particle/FireworkParticles + ()V +fha$1 net/minecraft/client/particle/FireworkParticles$1 + a f_106653_ + ()V + static +fha$a net/minecraft/client/particle/FireworkParticles$FlashProvider + a f_106655_ + (Lfih;)V + 0 o p_106657_ + a (Liy;Lfew;DDDDDD)Lfhm; m_6966_ + 0 o p_106668_ + 1 o p_106669_ + 2 o p_106670_ + 3 o p_106671_ + 4 o p_106672_ + 5 o p_106673_ + 6 o p_106674_ + 7 o p_106675_ + createParticle (Lit;Lfew;DDDDDD)Lfhm; m_6966_ + 0 o p_106659_ + 1 o p_106660_ + 2 o p_106661_ + 3 o p_106662_ + 4 o p_106663_ + 5 o p_106664_ + 6 o p_106665_ + 7 o p_106666_ +fha$b net/minecraft/client/particle/FireworkParticles$OverlayParticle + (Lfew;DDD)V + 0 o p_106677_ + 1 o p_106678_ + 2 o p_106679_ + 3 o p_106680_ + a (Lein;Lemz;F)V m_5744_ + 0 o p_106688_ + 1 o p_106689_ + 2 o p_106690_ + b (F)F m_5902_ + 0 o p_106693_ + b ()Lfhq; m_7556_ +fha$c net/minecraft/client/particle/FireworkParticles$SparkParticle + F f_106694_ + G f_106695_ + H f_106696_ + I f_106697_ + J f_106698_ + K f_106699_ + b f_106700_ + (Lfew;DDDDDDLfho;Lfih;)V + 0 o p_106702_ + 1 o p_106703_ + 2 o p_106704_ + 3 o p_106705_ + 4 o p_106706_ + 5 o p_106707_ + 6 o p_106708_ + 7 o p_106709_ + 8 o p_106710_ + a ()V m_5989_ + a (Z)V m_106727_ + 0 o p_106728_ + a (Lein;Lemz;F)V m_5744_ + 0 o p_106724_ + 1 o p_106725_ + 2 o p_106726_ + b (Z)V m_106729_ + 0 o p_106730_ +fha$d net/minecraft/client/particle/FireworkParticles$SparkProvider + a f_106731_ + (Lfih;)V + 0 o p_106733_ + a (Liy;Lfew;DDDDDD)Lfhm; m_6966_ + 0 o p_106744_ + 1 o p_106745_ + 2 o p_106746_ + 3 o p_106747_ + 4 o p_106748_ + 5 o p_106749_ + 6 o p_106750_ + 7 o p_106751_ + createParticle (Lit;Lfew;DDDDDD)Lfhm; m_6966_ + 0 o p_106735_ + 1 o p_106736_ + 2 o p_106737_ + 3 o p_106738_ + 4 o p_106739_ + 5 o p_106740_ + 6 o p_106741_ + 7 o p_106742_ +fha$e net/minecraft/client/particle/FireworkParticles$Starter + D f_106752_ + E f_106753_ + a f_106754_ + b f_106755_ + (Lfew;DDDDDDLfho;Lqr;)V + 0 o p_106757_ + 1 o p_106758_ + 2 o p_106759_ + 3 o p_106760_ + 4 o p_106761_ + 5 o p_106762_ + 6 o p_106763_ + 7 o p_106764_ + 8 o p_106765_ + a ()V m_5989_ + a (D[[D[I[IZZZ)V m_106785_ + 0 o p_106786_ + 1 o p_106787_ + 2 o p_106788_ + 3 o p_106789_ + 4 o p_106790_ + 5 o p_106791_ + 6 o p_106792_ + a (DDDDDD[I[IZZ)V m_106767_ + 0 o p_106768_ + 1 o p_106769_ + 2 o p_106770_ + 3 o p_106771_ + 4 o p_106772_ + 5 o p_106773_ + 6 o p_106774_ + 7 o p_106775_ + 8 o p_106776_ + 9 o p_106777_ + a (DI[I[IZZ)V m_106778_ + 0 o p_106779_ + 1 o p_106780_ + 2 o p_106781_ + 3 o p_106782_ + 4 o p_106783_ + 5 o p_106784_ + a ([I[IZZ)V m_106793_ + 0 o p_106794_ + 1 o p_106795_ + 2 o p_106796_ + 3 o p_106797_ + c ()Z m_106798_ +fhb net/minecraft/client/particle/FlameParticle + (Lfew;DDDDDD)V + 0 o p_106800_ + 1 o p_106801_ + 2 o p_106802_ + 3 o p_106803_ + 4 o p_106804_ + 5 o p_106805_ + 6 o p_106806_ + a (F)I m_6355_ + 0 o p_106821_ + a (DDD)V m_6257_ + 0 o p_106817_ + 1 o p_106818_ + 2 o p_106819_ + b (F)F m_5902_ + 0 o p_106824_ + b ()Lfhq; m_7556_ +fhb$a net/minecraft/client/particle/FlameParticle$Provider + a f_106825_ + (Lfih;)V + 0 o p_106827_ + a (Liy;Lfew;DDDDDD)Lfhm; m_6966_ + 0 o p_106838_ + 1 o p_106839_ + 2 o p_106840_ + 3 o p_106841_ + 4 o p_106842_ + 5 o p_106843_ + 6 o p_106844_ + 7 o p_106845_ + createParticle (Lit;Lfew;DDDDDD)Lfhm; m_6966_ + 0 o p_106829_ + 1 o p_106830_ + 2 o p_106831_ + 3 o p_106832_ + 4 o p_106833_ + 5 o p_106834_ + 6 o p_106835_ + 7 o p_106836_ +fhb$b net/minecraft/client/particle/FlameParticle$SmallFlameProvider + a f_172111_ + (Lfih;)V + 0 o p_172113_ + a (Liy;Lfew;DDDDDD)Lfhm; m_6966_ + 0 o p_172124_ + 1 o p_172125_ + 2 o p_172126_ + 3 o p_172127_ + 4 o p_172128_ + 5 o p_172129_ + 6 o p_172130_ + 7 o p_172131_ + createParticle (Lit;Lfew;DDDDDD)Lfhm; m_6966_ + 0 o p_172115_ + 1 o p_172116_ + 2 o p_172117_ + 3 o p_172118_ + 4 o p_172119_ + 5 o p_172120_ + 6 o p_172121_ + 7 o p_172122_ +fhc net/minecraft/client/particle/GlowParticle + a f_172132_ + b f_172133_ + ()V + static + (Lfew;DDDDDDLfih;)V + 0 o p_172136_ + 1 o p_172137_ + 2 o p_172138_ + 3 o p_172139_ + 4 o p_172140_ + 5 o p_172141_ + 6 o p_172142_ + 7 o p_172143_ + a (F)I m_6355_ + 0 o p_172146_ + a ()V m_5989_ + b ()Lfhq; m_7556_ +fhc$a net/minecraft/client/particle/GlowParticle$ElectricSparkProvider + a f_172148_ + b f_172149_ + (Lfih;)V + 0 o p_172151_ + a (Liy;Lfew;DDDDDD)Lfhm; m_6966_ + 0 o p_172162_ + 1 o p_172163_ + 2 o p_172164_ + 3 o p_172165_ + 4 o p_172166_ + 5 o p_172167_ + 6 o p_172168_ + 7 o p_172169_ + createParticle (Lit;Lfew;DDDDDD)Lfhm; m_6966_ + 0 o p_172153_ + 1 o p_172154_ + 2 o p_172155_ + 3 o p_172156_ + 4 o p_172157_ + 5 o p_172158_ + 6 o p_172159_ + 7 o p_172160_ +fhc$b net/minecraft/client/particle/GlowParticle$GlowSquidProvider + a f_172170_ + (Lfih;)V + 0 o p_172172_ + a (Liy;Lfew;DDDDDD)Lfhm; m_6966_ + 0 o p_172183_ + 1 o p_172184_ + 2 o p_172185_ + 3 o p_172186_ + 4 o p_172187_ + 5 o p_172188_ + 6 o p_172189_ + 7 o p_172190_ + createParticle (Lit;Lfew;DDDDDD)Lfhm; m_6966_ + 0 o p_172174_ + 1 o p_172175_ + 2 o p_172176_ + 3 o p_172177_ + 4 o p_172178_ + 5 o p_172179_ + 6 o p_172180_ + 7 o p_172181_ +fhc$c net/minecraft/client/particle/GlowParticle$ScrapeProvider + a f_172191_ + b f_172192_ + (Lfih;)V + 0 o p_172194_ + a (Liy;Lfew;DDDDDD)Lfhm; m_6966_ + 0 o p_172205_ + 1 o p_172206_ + 2 o p_172207_ + 3 o p_172208_ + 4 o p_172209_ + 5 o p_172210_ + 6 o p_172211_ + 7 o p_172212_ + createParticle (Lit;Lfew;DDDDDD)Lfhm; m_6966_ + 0 o p_172196_ + 1 o p_172197_ + 2 o p_172198_ + 3 o p_172199_ + 4 o p_172200_ + 5 o p_172201_ + 6 o p_172202_ + 7 o p_172203_ +fhc$d net/minecraft/client/particle/GlowParticle$WaxOffProvider + a f_172213_ + b f_172214_ + (Lfih;)V + 0 o p_172216_ + a (Liy;Lfew;DDDDDD)Lfhm; m_6966_ + 0 o p_172227_ + 1 o p_172228_ + 2 o p_172229_ + 3 o p_172230_ + 4 o p_172231_ + 5 o p_172232_ + 6 o p_172233_ + 7 o p_172234_ + createParticle (Lit;Lfew;DDDDDD)Lfhm; m_6966_ + 0 o p_172218_ + 1 o p_172219_ + 2 o p_172220_ + 3 o p_172221_ + 4 o p_172222_ + 5 o p_172223_ + 6 o p_172224_ + 7 o p_172225_ +fhc$e net/minecraft/client/particle/GlowParticle$WaxOnProvider + a f_172235_ + b f_172236_ + (Lfih;)V + 0 o p_172238_ + a (Liy;Lfew;DDDDDD)Lfhm; m_6966_ + 0 o p_172249_ + 1 o p_172250_ + 2 o p_172251_ + 3 o p_172252_ + 4 o p_172253_ + 5 o p_172254_ + 6 o p_172255_ + 7 o p_172256_ + createParticle (Lit;Lfew;DDDDDD)Lfhm; m_6966_ + 0 o p_172240_ + 1 o p_172241_ + 2 o p_172242_ + 3 o p_172243_ + 4 o p_172244_ + 5 o p_172245_ + 6 o p_172246_ + 7 o p_172247_ +fhd net/minecraft/client/particle/HeartParticle + (Lfew;DDD)V + 0 o p_106847_ + 1 o p_106848_ + 2 o p_106849_ + 3 o p_106850_ + b (F)F m_5902_ + 0 o p_106860_ + b ()Lfhq; m_7556_ +fhd$a net/minecraft/client/particle/HeartParticle$AngryVillagerProvider + a f_106861_ + (Lfih;)V + 0 o p_106863_ + a (Liy;Lfew;DDDDDD)Lfhm; m_6966_ + 0 o p_106874_ + 1 o p_106875_ + 2 o p_106876_ + 3 o p_106877_ + 4 o p_106878_ + 5 o p_106879_ + 6 o p_106880_ + 7 o p_106881_ + createParticle (Lit;Lfew;DDDDDD)Lfhm; m_6966_ + 0 o p_106865_ + 1 o p_106866_ + 2 o p_106867_ + 3 o p_106868_ + 4 o p_106869_ + 5 o p_106870_ + 6 o p_106871_ + 7 o p_106872_ +fhd$b net/minecraft/client/particle/HeartParticle$Provider + a f_106882_ + (Lfih;)V + 0 o p_106884_ + a (Liy;Lfew;DDDDDD)Lfhm; m_6966_ + 0 o p_106895_ + 1 o p_106896_ + 2 o p_106897_ + 3 o p_106898_ + 4 o p_106899_ + 5 o p_106900_ + 6 o p_106901_ + 7 o p_106902_ + createParticle (Lit;Lfew;DDDDDD)Lfhm; m_6966_ + 0 o p_106886_ + 1 o p_106887_ + 2 o p_106888_ + 3 o p_106889_ + 4 o p_106890_ + 5 o p_106891_ + 6 o p_106892_ + 7 o p_106893_ +fhe net/minecraft/client/particle/HugeExplosionParticle + a f_106903_ + (Lfew;DDDDLfih;)V + 0 o p_106905_ + 1 o p_106906_ + 2 o p_106907_ + 3 o p_106908_ + 4 o p_106909_ + 5 o p_106910_ + a (F)I m_6355_ + 0 o p_106921_ + a ()V m_5989_ + b ()Lfhq; m_7556_ +fhe$a net/minecraft/client/particle/HugeExplosionParticle$Provider + a f_106923_ + (Lfih;)V + 0 o p_106925_ + a (Liy;Lfew;DDDDDD)Lfhm; m_6966_ + 0 o p_106936_ + 1 o p_106937_ + 2 o p_106938_ + 3 o p_106939_ + 4 o p_106940_ + 5 o p_106941_ + 6 o p_106942_ + 7 o p_106943_ + createParticle (Lit;Lfew;DDDDDD)Lfhm; m_6966_ + 0 o p_106927_ + 1 o p_106928_ + 2 o p_106929_ + 3 o p_106930_ + 4 o p_106931_ + 5 o p_106932_ + 6 o p_106933_ + 7 o p_106934_ +fhf net/minecraft/client/particle/HugeExplosionSeedParticle + a f_106944_ + b f_106945_ + (Lfew;DDD)V + 0 o p_106947_ + 1 o p_106948_ + 2 o p_106949_ + 3 o p_106950_ + a ()V m_5989_ +fhf$a net/minecraft/client/particle/HugeExplosionSeedParticle$Provider + ()V + a (Liy;Lfew;DDDDDD)Lfhm; m_6966_ + 0 o p_106969_ + 1 o p_106970_ + 2 o p_106971_ + 3 o p_106972_ + 4 o p_106973_ + 5 o p_106974_ + 6 o p_106975_ + 7 o p_106976_ + createParticle (Lit;Lfew;DDDDDD)Lfhm; m_6966_ + 0 o p_106960_ + 1 o p_106961_ + 2 o p_106962_ + 3 o p_106963_ + 4 o p_106964_ + 5 o p_106965_ + 6 o p_106966_ + 7 o p_106967_ +fhg net/minecraft/client/particle/ItemPickupParticle + D f_107021_ + E f_107017_ + F f_107018_ + G f_107019_ + a f_172257_ + b f_107020_ + (Lfow;Lfkd;Lfew;Lbfj;Lbfj;)V + 0 o p_107023_ + 1 o p_107024_ + 2 o p_107025_ + 3 o p_107026_ + 4 o p_107027_ + (Lfow;Lfkd;Lfew;Lbfj;Lbfj;Leei;)V + 0 o p_107029_ + 1 o p_107030_ + 2 o p_107031_ + 3 o p_107032_ + 4 o p_107033_ + 5 o p_107034_ + a ()V m_5989_ + a (Lein;Lemz;F)V m_5744_ + 0 o p_107039_ + 1 o p_107040_ + 2 o p_107041_ + a (Lbfj;)Lbfj; m_107036_ + 0 o p_107037_ + b ()Lfhq; m_7556_ +fhh net/minecraft/client/particle/LargeSmokeParticle + (Lfew;DDDDDDLfih;)V + 0 o p_107044_ + 1 o p_107045_ + 2 o p_107046_ + 3 o p_107047_ + 4 o p_107048_ + 5 o p_107049_ + 6 o p_107050_ + 7 o p_107051_ +fhh$a net/minecraft/client/particle/LargeSmokeParticle$Provider + a f_107052_ + (Lfih;)V + 0 o p_107054_ + a (Liy;Lfew;DDDDDD)Lfhm; m_6966_ + 0 o p_107065_ + 1 o p_107066_ + 2 o p_107067_ + 3 o p_107068_ + 4 o p_107069_ + 5 o p_107070_ + 6 o p_107071_ + 7 o p_107072_ + createParticle (Lit;Lfew;DDDDDD)Lfhm; m_6966_ + 0 o p_107056_ + 1 o p_107057_ + 2 o p_107058_ + 3 o p_107059_ + 4 o p_107060_ + 5 o p_107061_ + 6 o p_107062_ + 7 o p_107063_ +fhi net/minecraft/client/particle/LavaParticle + (Lfew;DDD)V + 0 o p_107074_ + 1 o p_107075_ + 2 o p_107076_ + 3 o p_107077_ + a (F)I m_6355_ + 0 o p_107086_ + a ()V m_5989_ + b (F)F m_5902_ + 0 o p_107089_ + b ()Lfhq; m_7556_ +fhi$a net/minecraft/client/particle/LavaParticle$Provider + a f_107090_ + (Lfih;)V + 0 o p_107092_ + a (Liy;Lfew;DDDDDD)Lfhm; m_6966_ + 0 o p_107103_ + 1 o p_107104_ + 2 o p_107105_ + 3 o p_107106_ + 4 o p_107107_ + 5 o p_107108_ + 6 o p_107109_ + 7 o p_107110_ + createParticle (Lit;Lfew;DDDDDD)Lfhm; m_6966_ + 0 o p_107094_ + 1 o p_107095_ + 2 o p_107096_ + 3 o p_107097_ + 4 o p_107098_ + 5 o p_107099_ + 6 o p_107100_ + 7 o p_107101_ +fhj net/minecraft/client/particle/MobAppearanceParticle + a f_107111_ + b f_107112_ + (Lfew;DDD)V + 0 o p_107114_ + 1 o p_107115_ + 2 o p_107116_ + 3 o p_107117_ + a (Lein;Lemz;F)V m_5744_ + 0 o p_107125_ + 1 o p_107126_ + 2 o p_107127_ + b ()Lfhq; m_7556_ +fhj$a net/minecraft/client/particle/MobAppearanceParticle$Provider + ()V + a (Liy;Lfew;DDDDDD)Lfhm; m_6966_ + 0 o p_107140_ + 1 o p_107141_ + 2 o p_107142_ + 3 o p_107143_ + 4 o p_107144_ + 5 o p_107145_ + 6 o p_107146_ + 7 o p_107147_ + createParticle (Lit;Lfew;DDDDDD)Lfhm; m_6966_ + 0 o p_107131_ + 1 o p_107132_ + 2 o p_107133_ + 3 o p_107134_ + 4 o p_107135_ + 5 o p_107136_ + 6 o p_107137_ + 7 o p_107138_ +fhk net/minecraft/client/particle/NoRenderParticle + (Lfew;DDD)V + 0 o p_107149_ + 1 o p_107150_ + 2 o p_107151_ + 3 o p_107152_ + (Lfew;DDDDDD)V + 0 o p_107154_ + 1 o p_107155_ + 2 o p_107156_ + 3 o p_107157_ + 4 o p_107158_ + 5 o p_107159_ + 6 o p_107160_ + a (Lein;Lemz;F)V m_5744_ + 0 o p_107162_ + 1 o p_107163_ + 2 o p_107164_ + b ()Lfhq; m_7556_ +fhl net/minecraft/client/particle/NoteParticle + (Lfew;DDDD)V + 0 o p_107167_ + 1 o p_107168_ + 2 o p_107169_ + 3 o p_107170_ + 4 o p_107171_ + b (F)F m_5902_ + 0 o p_107182_ + b ()Lfhq; m_7556_ +fhl$a net/minecraft/client/particle/NoteParticle$Provider + a f_107183_ + (Lfih;)V + 0 o p_107185_ + a (Liy;Lfew;DDDDDD)Lfhm; m_6966_ + 0 o p_107196_ + 1 o p_107197_ + 2 o p_107198_ + 3 o p_107199_ + 4 o p_107200_ + 5 o p_107201_ + 6 o p_107202_ + 7 o p_107203_ + createParticle (Lit;Lfew;DDDDDD)Lfhm; m_6966_ + 0 o p_107187_ + 1 o p_107188_ + 2 o p_107189_ + 3 o p_107190_ + 4 o p_107191_ + 5 o p_107192_ + 6 o p_107193_ + 7 o p_107194_ +fhm net/minecraft/client/particle/Particle + A f_107204_ + B f_172258_ + C f_172259_ + D f_107207_ + E f_107205_ + a f_107206_ + b f_197408_ + c f_107208_ + d f_107209_ + e f_107210_ + f f_107211_ + g f_107212_ + h f_107213_ + i f_107214_ + j f_107215_ + k f_107216_ + l f_107217_ + m f_107218_ + n f_107219_ + o f_107220_ + p f_107221_ + q f_107222_ + r f_107223_ + s f_107224_ + t f_107225_ + u f_107226_ + v f_107227_ + w f_107228_ + x f_107229_ + y f_107230_ + z f_107231_ + ()V + static + (Lfew;DDD)V + 0 o p_107234_ + 1 o p_107235_ + 2 o p_107236_ + 3 o p_107237_ + (Lfew;DDDDDD)V + 0 o p_107239_ + 1 o p_107240_ + 2 o p_107241_ + 3 o p_107242_ + 4 o p_107243_ + 5 o p_107244_ + 6 o p_107245_ + a (Leed;)V m_107259_ + 0 o p_107260_ + a (I)V m_107257_ + 0 o p_107258_ + a (FFF)V m_107253_ + 0 o p_107254_ + 1 o p_107255_ + 2 o p_107256_ + a (F)I m_6355_ + 0 o p_107249_ + a (DDD)V m_6257_ + 0 o p_107246_ + 1 o p_107247_ + 2 o p_107248_ + a ()V m_5989_ + a (Lein;Lemz;F)V m_5744_ + 0 o p_107261_ + 1 o p_107262_ + 2 o p_107263_ + b (DDD)V m_172260_ + 0 o p_172261_ + 1 o p_172262_ + 2 o p_172263_ + b ()Lfhq; m_7556_ + b (FF)V m_107250_ + 0 o p_107251_ + 1 o p_107252_ + c (DDD)V m_107264_ + 0 o p_107265_ + 1 o p_107266_ + 2 o p_107267_ + c (F)Lfhm; m_107268_ + 0 o p_107269_ + d (F)Lfhm; m_6569_ + 0 o p_107270_ + e (F)V m_107271_ + 0 o p_107272_ + j ()I m_107273_ + k ()V m_107274_ + l ()V m_107275_ + m ()Z m_107276_ + n ()Leed; m_107277_ + o ()Ljava/util/Optional; m_142654_ + toString ()Ljava/lang/String; toString +fhn net/minecraft/client/particle/ParticleDescription + a f_107279_ + (Ljava/util/List;)V + 0 o p_107281_ + a (Lcom/google/gson/JsonObject;)Lfhn; m_107285_ + static + 0 o p_107286_ + a ()Ljava/util/List; m_107282_ + a (Lcom/google/gson/JsonElement;)Ljava/lang/String; m_107283_ + static + 0 o p_107284_ +fho net/minecraft/client/particle/ParticleEngine + a f_107287_ + b f_243727_ + c f_243929_ + d f_260634_ + e f_172264_ + f f_107288_ + g f_107289_ + h f_107290_ + i f_107291_ + j f_107292_ + k f_107293_ + l f_107294_ + m f_107295_ + n f_107296_ + o f_172265_ + ()V + static + (Lfew;Lfuw;)V + 0 o p_107299_ + 1 o p_107300_ + a (Lakr$a;Lakx;Lban;Lban;Ljava/util/concurrent/Executor;Ljava/util/concurrent/Executor;)Ljava/util/concurrent/CompletableFuture; m_5540_ + 0 o p_107305_ + 1 o p_107306_ + 2 o p_107307_ + 3 o p_107308_ + 4 o p_107309_ + 5 o p_107310_ + a (Lit;DDDDDD)Lfhm; m_107370_ + 0 o p_107371_ + 1 o p_107372_ + 2 o p_107373_ + 3 o p_107374_ + 4 o p_107375_ + 5 o p_107376_ + 6 o p_107377_ + a (Lis;)Z m_172279_ + 0 o p_172280_ + a (Liu;Lfhp$a;)V m_272137_ + 0 o p_273423_ + 1 o p_273134_ + a (Lacq;Lakv;)Ljava/util/Optional; m_245118_ + 0 o p_250648_ + 1 o p_248793_ + a (Lfih;Liy;Lfew;DDDDDD)Lfhm; m_276703_ + static + 0 o p_277216_ + 1 o p_277217_ + 2 o p_277218_ + 3 o p_277219_ + 4 o p_277220_ + 5 o p_277221_ + 6 o p_277222_ + 7 o p_277223_ + 8 o p_277224_ + a (Ljava/util/List;Ljava/util/concurrent/Executor;Lacq;Lakv;)V m_244716_ + 0 o p_247901_ + 1 o p_247902_ + 2 o p_247903_ + 3 o p_247904_ + a (Liu;Lfhp;)V m_107381_ + 0 o p_107382_ + 1 o p_107383_ + a (Lgu;Ldcb;DDDDDD)V m_172270_ + 0 o p_172271_ + 1 o p_172272_ + 2 o p_172273_ + 3 o p_172274_ + 4 o p_172275_ + 5 o p_172276_ + 6 o p_172277_ + 7 o p_172278_ + a (Lfhp$a;Lfih;)Lfhp; m_271560_ + static + 0 o p_272319_ + 1 o p_272320_ + a (Lbfj;Lit;I)V m_107332_ + 0 o p_107333_ + 1 o p_107334_ + 2 o p_107335_ + a ()V m_107301_ + a (Liu;Lfho$c;)V m_107378_ + 0 o p_107379_ + 1 o p_107380_ + a (Lakx;)Ljava/util/Map; m_244722_ + static + 0 o p_247915_ + a (Lfuq$a;Ljava/util/Set;Lfuv;Lfho$a;)V m_244719_ + 0 o p_247908_ + 1 o p_247909_ + 2 o p_247910_ + 3 o p_247911_ + a (Lban;Ljava/util/concurrent/CompletableFuture;Ljava/util/concurrent/CompletableFuture;Ljava/lang/Void;)V m_244715_ + 0 o p_247897_ + 1 o p_247898_ + 2 o p_247899_ + 3 o p_247900_ + a (Lgu;Ldcb;)V m_107355_ + 0 o p_107356_ + 1 o p_107357_ + a (Leij;Lfjx$a;Lfjw;Lemz;F)V m_107336_ + 0 o p_107337_ + 1 o p_107338_ + 2 o p_107339_ + 3 o p_107340_ + 4 o p_107341_ + a (Lfih;)Lfhp; m_276702_ + static + 0 o p_277215_ + a (Lbfj;Lit;)V m_107329_ + 0 o p_107330_ + 1 o p_107331_ + a (Lfhq;)Ljava/util/Queue; m_107346_ + static + 0 o p_107347_ + a (Lfhq;Ljava/util/Queue;)V m_287801_ + 0 o p_288249_ + 1 o p_288250_ + a (Ljava/util/concurrent/Executor;Ljava/util/Map;)Ljava/util/concurrent/CompletionStage; m_244721_ + 0 o p_247913_ + 1 o p_247914_ + a (Lfhm;)V m_107344_ + 0 o p_107345_ + a (Lis;I)V m_172281_ + 0 o p_172282_ + 1 o p_172283_ + a (Lfhp$a;Lfih;Lit;Lfew;DDDDDD)Lfhm; m_271561_ + static + 0 o p_272321_ + 1 o p_272322_ + 2 o p_272323_ + 3 o p_272324_ + 4 o p_272325_ + 5 o p_272326_ + 6 o p_272327_ + 7 o p_272328_ + 8 o p_272329_ + 9 o p_272330_ + a (Lgu;Lha;)V m_107367_ + 0 o p_107368_ + 1 o p_107369_ + a (Ljava/util/Collection;)V m_107384_ + 0 o p_107385_ + a (Lfew;)V m_107342_ + 0 o p_107343_ + b (Lis;)V m_172288_ + 0 o p_172289_ + b (Lacq;Lakv;)Lfho$a; m_244717_ + 0 o p_247905_ + 1 o p_247906_ + b (Lit;DDDDDD)Lfhm; m_107395_ + 0 o p_107396_ + 1 o p_107397_ + 2 o p_107398_ + 3 o p_107399_ + 4 o p_107400_ + 5 o p_107401_ + 6 o p_107402_ + b (Lfhm;)V m_107393_ + 0 o p_107394_ + b ()V m_107388_ + d ()Ljava/lang/String; m_107403_ + e ()V m_107404_ + f ()V m_263560_ +fho$a net/minecraft/client/particle/ParticleEngine$1ParticleDefinition + a f_244103_ + b f_243741_ + (Lacq;Ljava/util/Optional;)V + 0 o f_244103_ + 1 o f_243741_ + a ()Lacq; f_244103_ + b ()Ljava/util/Optional; f_243741_ + equals (Ljava/lang/Object;)Z equals + 0 o p_251926_ + hashCode ()I hashCode + toString ()Ljava/lang/String; toString +fho$b net/minecraft/client/particle/ParticleEngine$MutableSpriteSet + a f_107406_ + ()V + a (Ljava/util/List;)V m_107415_ + 0 o p_107416_ + a (II)Lfuv; m_5819_ + 0 o p_107413_ + 1 o p_107414_ + a (Lapf;)Lfuv; m_213979_ + 0 o p_233889_ +fho$c net/minecraft/client/particle/ParticleEngine$SpriteParticleRegistration + create (Lfih;)Lfhp; m_107419_ + 0 o p_107420_ +fhp net/minecraft/client/particle/ParticleProvider + createParticle (Lit;Lfew;DDDDDD)Lfhm; m_6966_ + 0 o p_107421_ + 1 o p_107422_ + 2 o p_107423_ + 3 o p_107424_ + 4 o p_107425_ + 5 o p_107426_ + 6 o p_107427_ + 7 o p_107428_ +fhp$a net/minecraft/client/particle/ParticleProvider$Sprite + createParticle (Lit;Lfew;DDDDDD)Lfim; m_272232_ + 0 o p_273550_ + 1 o p_273071_ + 2 o p_273160_ + 3 o p_273576_ + 4 o p_272710_ + 5 o p_273652_ + 6 o p_273457_ + 7 o p_272840_ +fhq net/minecraft/client/particle/ParticleRenderType + a f_107429_ + b f_107430_ + c f_107431_ + d f_107432_ + e f_107433_ + f f_107434_ + ()V + static + a (Leie;Lfuw;)V m_6505_ + 0 o p_107436_ + 1 o p_107437_ + a (Leil;)V m_6294_ + 0 o p_107438_ +fhq$1 net/minecraft/client/particle/ParticleRenderType$1 + ()V + a (Leie;Lfuw;)V m_6505_ + 0 o p_107441_ + 1 o p_107442_ + a (Leil;)V m_6294_ + 0 o p_107444_ + toString ()Ljava/lang/String; toString +fhq$2 net/minecraft/client/particle/ParticleRenderType$2 + ()V + a (Leie;Lfuw;)V m_6505_ + 0 o p_107448_ + 1 o p_107449_ + a (Leil;)V m_6294_ + 0 o p_107451_ + toString ()Ljava/lang/String; toString +fhq$3 net/minecraft/client/particle/ParticleRenderType$3 + ()V + a (Leie;Lfuw;)V m_6505_ + 0 o p_107455_ + 1 o p_107456_ + a (Leil;)V m_6294_ + 0 o p_107458_ + toString ()Ljava/lang/String; toString +fhq$4 net/minecraft/client/particle/ParticleRenderType$4 + ()V + a (Leie;Lfuw;)V m_6505_ + 0 o p_107462_ + 1 o p_107463_ + a (Leil;)V m_6294_ + 0 o p_107465_ + toString ()Ljava/lang/String; toString +fhq$5 net/minecraft/client/particle/ParticleRenderType$5 + ()V + a (Leie;Lfuw;)V m_6505_ + 0 o p_107469_ + 1 o p_107470_ + a (Leil;)V m_6294_ + 0 o p_107472_ + toString ()Ljava/lang/String; toString +fhq$6 net/minecraft/client/particle/ParticleRenderType$6 + ()V + a (Leie;Lfuw;)V m_6505_ + 0 o p_107476_ + 1 o p_107477_ + a (Leil;)V m_6294_ + 0 o p_107479_ + toString ()Ljava/lang/String; toString +fhr net/minecraft/client/particle/PlayerCloudParticle + a f_107481_ + (Lfew;DDDDDDLfih;)V + 0 o p_107483_ + 1 o p_107484_ + 2 o p_107485_ + 3 o p_107486_ + 4 o p_107487_ + 5 o p_107488_ + 6 o p_107489_ + 7 o p_107490_ + a ()V m_5989_ + b (F)F m_5902_ + 0 o p_107504_ + b ()Lfhq; m_7556_ +fhr$a net/minecraft/client/particle/PlayerCloudParticle$Provider + a f_107505_ + (Lfih;)V + 0 o p_107507_ + a (Liy;Lfew;DDDDDD)Lfhm; m_6966_ + 0 o p_107518_ + 1 o p_107519_ + 2 o p_107520_ + 3 o p_107521_ + 4 o p_107522_ + 5 o p_107523_ + 6 o p_107524_ + 7 o p_107525_ + createParticle (Lit;Lfew;DDDDDD)Lfhm; m_6966_ + 0 o p_107509_ + 1 o p_107510_ + 2 o p_107511_ + 3 o p_107512_ + 4 o p_107513_ + 5 o p_107514_ + 6 o p_107515_ + 7 o p_107516_ +fhr$b net/minecraft/client/particle/PlayerCloudParticle$SneezeProvider + a f_107526_ + (Lfih;)V + 0 o p_107528_ + a (Liy;Lfew;DDDDDD)Lfhm; m_6966_ + 0 o p_107539_ + 1 o p_107540_ + 2 o p_107541_ + 3 o p_107542_ + 4 o p_107543_ + 5 o p_107544_ + 6 o p_107545_ + 7 o p_107546_ + createParticle (Lit;Lfew;DDDDDD)Lfhm; m_6966_ + 0 o p_107530_ + 1 o p_107531_ + 2 o p_107532_ + 3 o p_107533_ + 4 o p_107534_ + 5 o p_107535_ + 6 o p_107536_ + 7 o p_107537_ +fhs net/minecraft/client/particle/PortalParticle + F f_107547_ + a f_107548_ + b f_107549_ + (Lfew;DDDDDD)V + 0 o p_107551_ + 1 o p_107552_ + 2 o p_107553_ + 3 o p_107554_ + 4 o p_107555_ + 5 o p_107556_ + 6 o p_107557_ + a (F)I m_6355_ + 0 o p_107564_ + a (DDD)V m_6257_ + 0 o p_107560_ + 1 o p_107561_ + 2 o p_107562_ + a ()V m_5989_ + b (F)F m_5902_ + 0 o p_107567_ + b ()Lfhq; m_7556_ +fhs$a net/minecraft/client/particle/PortalParticle$Provider + a f_107568_ + (Lfih;)V + 0 o p_107570_ + a (Liy;Lfew;DDDDDD)Lfhm; m_6966_ + 0 o p_107581_ + 1 o p_107582_ + 2 o p_107583_ + 3 o p_107584_ + 4 o p_107585_ + 5 o p_107586_ + 6 o p_107587_ + 7 o p_107588_ + createParticle (Lit;Lfew;DDDDDD)Lfhm; m_6966_ + 0 o p_107572_ + 1 o p_107573_ + 2 o p_107574_ + 3 o p_107575_ + 4 o p_107576_ + 5 o p_107577_ + 6 o p_107578_ + 7 o p_107579_ +fht net/minecraft/client/particle/ReversePortalParticle + (Lfew;DDDDDD)V + 0 o p_107590_ + 1 o p_107591_ + 2 o p_107592_ + 3 o p_107593_ + 4 o p_107594_ + 5 o p_107595_ + 6 o p_107596_ + a ()V m_5989_ + b (F)F m_5902_ + 0 o p_107608_ +fht$a net/minecraft/client/particle/ReversePortalParticle$ReversePortalProvider + a f_107609_ + (Lfih;)V + 0 o p_107611_ + a (Liy;Lfew;DDDDDD)Lfhm; m_6966_ + 0 o p_107622_ + 1 o p_107623_ + 2 o p_107624_ + 3 o p_107625_ + 4 o p_107626_ + 5 o p_107627_ + 6 o p_107628_ + 7 o p_107629_ + createParticle (Lit;Lfew;DDDDDD)Lfhm; m_6966_ + 0 o p_107613_ + 1 o p_107614_ + 2 o p_107615_ + 3 o p_107616_ + 4 o p_107617_ + 5 o p_107618_ + 6 o p_107619_ + 7 o p_107620_ +fhu net/minecraft/client/particle/RisingParticle + (Lfew;DDDDDD)V + 0 o p_107631_ + 1 o p_107632_ + 2 o p_107633_ + 3 o p_107634_ + 4 o p_107635_ + 5 o p_107636_ + 6 o p_107637_ +fhv net/minecraft/client/particle/SculkChargeParticle + a f_233890_ + (Lfew;DDDDDDLfih;)V + 0 o p_233892_ + 1 o p_233893_ + 2 o p_233894_ + 3 o p_233895_ + 4 o p_233896_ + 5 o p_233897_ + 6 o p_233898_ + 7 o p_233899_ + a (F)I m_6355_ + 0 o p_233902_ + a ()V m_5989_ + b ()Lfhq; m_7556_ +fhv$a net/minecraft/client/particle/SculkChargeParticle$Provider + a f_233904_ + (Lfih;)V + 0 o f_233904_ + a ()Lfih; f_233904_ + a (Liw;Lfew;DDDDDD)Lfhm; m_6966_ + 0 o p_233918_ + 1 o p_233919_ + 2 o p_233920_ + 3 o p_233921_ + 4 o p_233922_ + 5 o p_233923_ + 6 o p_233924_ + 7 o p_233925_ + createParticle (Lit;Lfew;DDDDDD)Lfhm; m_6966_ + 0 o p_233909_ + 1 o p_233910_ + 2 o p_233911_ + 3 o p_233912_ + 4 o p_233913_ + 5 o p_233914_ + 6 o p_233915_ + 7 o p_233916_ + equals (Ljava/lang/Object;)Z equals + 0 o p_233927_ + hashCode ()I hashCode + toString ()Ljava/lang/String; toString +fhw net/minecraft/client/particle/SculkChargePopParticle + a f_233930_ + (Lfew;DDDDDDLfih;)V + 0 o p_233932_ + 1 o p_233933_ + 2 o p_233934_ + 3 o p_233935_ + 4 o p_233936_ + 5 o p_233937_ + 6 o p_233938_ + 7 o p_233939_ + a (F)I m_6355_ + 0 o p_233942_ + a ()V m_5989_ + b ()Lfhq; m_7556_ +fhw$a net/minecraft/client/particle/SculkChargePopParticle$Provider + a f_233944_ + (Lfih;)V + 0 o f_233944_ + a ()Lfih; f_233944_ + a (Liy;Lfew;DDDDDD)Lfhm; m_6966_ + 0 o p_233958_ + 1 o p_233959_ + 2 o p_233960_ + 3 o p_233961_ + 4 o p_233962_ + 5 o p_233963_ + 6 o p_233964_ + 7 o p_233965_ + createParticle (Lit;Lfew;DDDDDD)Lfhm; m_6966_ + 0 o p_233949_ + 1 o p_233950_ + 2 o p_233951_ + 3 o p_233952_ + 4 o p_233953_ + 5 o p_233954_ + 6 o p_233955_ + 7 o p_233956_ + equals (Ljava/lang/Object;)Z equals + 0 o p_233967_ + hashCode ()I hashCode + toString ()Ljava/lang/String; toString +fhx net/minecraft/client/particle/ShriekParticle + F f_233970_ + G f_233971_ + a f_233972_ + b f_233973_ + ()V + static + (Lfew;DDDI)V + 0 o p_233976_ + 1 o p_233977_ + 2 o p_233978_ + 3 o p_233979_ + 4 o p_233980_ + a (F)I m_6355_ + 0 o p_233983_ + a ()V m_5989_ + a (Lein;Lemz;FLjava/util/function/Consumer;)V m_233988_ + 0 o p_233989_ + 1 o p_233990_ + 2 o p_233991_ + 3 o p_233992_ + a (Lorg/joml/Quaternionf;)V m_252589_ + static + 0 o p_253346_ + a (Lein;Lemz;F)V m_5744_ + 0 o p_233985_ + 1 o p_233986_ + 2 o p_233987_ + a (Lein;Lorg/joml/Vector3f;FFI)V m_252793_ + 0 o p_254493_ + 1 o p_253752_ + 2 o p_254250_ + 3 o p_254047_ + 4 o p_253814_ + b (F)F m_5902_ + 0 o p_234003_ + b ()Lfhq; m_7556_ + b (Lorg/joml/Quaternionf;)V m_252590_ + static + 0 o p_253347_ +fhx$a net/minecraft/client/particle/ShriekParticle$Provider + a f_234006_ + (Lfih;)V + 0 o p_234008_ + a (Lix;Lfew;DDDDDD)Lfhm; m_6966_ + 0 o p_234019_ + 1 o p_234020_ + 2 o p_234021_ + 3 o p_234022_ + 4 o p_234023_ + 5 o p_234024_ + 6 o p_234025_ + 7 o p_234026_ + createParticle (Lit;Lfew;DDDDDD)Lfhm; m_6966_ + 0 o p_234010_ + 1 o p_234011_ + 2 o p_234012_ + 3 o p_234013_ + 4 o p_234014_ + 5 o p_234015_ + 6 o p_234016_ + 7 o p_234017_ +fhy net/minecraft/client/particle/SimpleAnimatedParticle + F f_107641_ + G f_107642_ + H f_107643_ + a f_107644_ + b f_107640_ + (Lfew;DDDLfih;F)V + 0 o p_107647_ + 1 o p_107648_ + 2 o p_107649_ + 3 o p_107650_ + 4 o p_107651_ + 5 o p_107652_ + a (F)I m_6355_ + 0 o p_107655_ + a ()V m_5989_ + b ()Lfhq; m_7556_ + b (I)V m_107657_ + 0 o p_107658_ + c (I)V m_107659_ + 0 o p_107660_ +fhz net/minecraft/client/particle/SingleQuadParticle + D f_107663_ + (Lfew;DDD)V + 0 o p_107665_ + 1 o p_107666_ + 2 o p_107667_ + 3 o p_107668_ + (Lfew;DDDDDD)V + 0 o p_107670_ + 1 o p_107671_ + 2 o p_107672_ + 3 o p_107673_ + 4 o p_107674_ + 5 o p_107675_ + 6 o p_107676_ + a (Lein;Lemz;F)V m_5744_ + 0 o p_107678_ + 1 o p_107679_ + 2 o p_107680_ + b (F)F m_5902_ + 0 o p_107681_ + c ()F m_5970_ + d (F)Lfhm; m_6569_ + 0 o p_107683_ + d ()F m_5952_ + e ()F m_5951_ + f ()F m_5950_ +fi net/minecraft/commands/arguments/coordinates/BlockPosArgument + a f_118234_ + b f_118235_ + c f_174394_ + d f_118236_ + ()V + static + ()V + a (Lcom/mojang/brigadier/context/CommandContext;Ljava/lang/String;)Lgu; m_118242_ + static + 0 o p_118243_ + 1 o p_118244_ + a ()Lfi; m_118239_ + static + a (Lcom/mojang/brigadier/context/CommandContext;Laif;Ljava/lang/String;)Lgu; m_264205_ + static + 0 o p_265283_ + 1 o p_265219_ + 2 o p_265677_ + a (Lcom/mojang/brigadier/StringReader;)Lfk; parse + 0 o p_118241_ + b (Lcom/mojang/brigadier/context/CommandContext;Ljava/lang/String;)Lgu; m_264582_ + static + 0 o p_265651_ + 1 o p_265039_ + c (Lcom/mojang/brigadier/context/CommandContext;Ljava/lang/String;)Lgu; m_174395_ + static + 0 o p_174396_ + 1 o p_174397_ + getExamples ()Ljava/util/Collection; getExamples + listSuggestions (Lcom/mojang/brigadier/context/CommandContext;Lcom/mojang/brigadier/suggestion/SuggestionsBuilder;)Ljava/util/concurrent/CompletableFuture; listSuggestions + 0 o p_118250_ + 1 o p_118251_ + parse (Lcom/mojang/brigadier/StringReader;)Ljava/lang/Object; parse + 0 o p_118253_ +fia net/minecraft/client/particle/SmokeParticle + (Lfew;DDDDDDFLfih;)V + 0 o p_107685_ + 1 o p_107686_ + 2 o p_107687_ + 3 o p_107688_ + 4 o p_107689_ + 5 o p_107690_ + 6 o p_107691_ + 7 o p_107692_ + 8 o p_107693_ +fia$a net/minecraft/client/particle/SmokeParticle$Provider + a f_107694_ + (Lfih;)V + 0 o p_107696_ + a (Liy;Lfew;DDDDDD)Lfhm; m_6966_ + 0 o p_107707_ + 1 o p_107708_ + 2 o p_107709_ + 3 o p_107710_ + 4 o p_107711_ + 5 o p_107712_ + 6 o p_107713_ + 7 o p_107714_ + createParticle (Lit;Lfew;DDDDDD)Lfhm; m_6966_ + 0 o p_107698_ + 1 o p_107699_ + 2 o p_107700_ + 3 o p_107701_ + 4 o p_107702_ + 5 o p_107703_ + 6 o p_107704_ + 7 o p_107705_ +fib net/minecraft/client/particle/SnowflakeParticle + a f_172290_ + (Lfew;DDDDDDLfih;)V + 0 o p_172292_ + 1 o p_172293_ + 2 o p_172294_ + 3 o p_172295_ + 4 o p_172296_ + 5 o p_172297_ + 6 o p_172298_ + 7 o p_172299_ + a ()V m_5989_ + b ()Lfhq; m_7556_ +fib$a net/minecraft/client/particle/SnowflakeParticle$Provider + a f_172302_ + (Lfih;)V + 0 o p_172304_ + a (Liy;Lfew;DDDDDD)Lfhm; m_6966_ + 0 o p_172315_ + 1 o p_172316_ + 2 o p_172317_ + 3 o p_172318_ + 4 o p_172319_ + 5 o p_172320_ + 6 o p_172321_ + 7 o p_172322_ + createParticle (Lit;Lfew;DDDDDD)Lfhm; m_6966_ + 0 o p_172306_ + 1 o p_172307_ + 2 o p_172308_ + 3 o p_172309_ + 4 o p_172310_ + 5 o p_172311_ + 6 o p_172312_ + 7 o p_172313_ +fic net/minecraft/client/particle/SonicBoomParticle + (Lfew;DDDDLfih;)V + 0 o p_234028_ + 1 o p_234029_ + 2 o p_234030_ + 3 o p_234031_ + 4 o p_234032_ + 5 o p_234033_ +fic$a net/minecraft/client/particle/SonicBoomParticle$Provider + a f_234034_ + (Lfih;)V + 0 o p_234036_ + a (Liy;Lfew;DDDDDD)Lfhm; m_6966_ + 0 o p_234047_ + 1 o p_234048_ + 2 o p_234049_ + 3 o p_234050_ + 4 o p_234051_ + 5 o p_234052_ + 6 o p_234053_ + 7 o p_234054_ + createParticle (Lit;Lfew;DDDDDD)Lfhm; m_6966_ + 0 o p_234038_ + 1 o p_234039_ + 2 o p_234040_ + 3 o p_234041_ + 4 o p_234042_ + 5 o p_234043_ + 6 o p_234044_ + 7 o p_234045_ +fid net/minecraft/client/particle/SoulParticle + a f_234078_ + b f_107715_ + (Lfew;DDDDDDLfih;)V + 0 o p_107717_ + 1 o p_107718_ + 2 o p_107719_ + 3 o p_107720_ + 4 o p_107721_ + 5 o p_107722_ + 6 o p_107723_ + 7 o p_107724_ + a (F)I m_6355_ + 0 o p_234080_ + a ()V m_5989_ + b ()Lfhq; m_7556_ +fid$a net/minecraft/client/particle/SoulParticle$EmissiveProvider + a f_234081_ + (Lfih;)V + 0 o p_234083_ + a (Liy;Lfew;DDDDDD)Lfhm; m_6966_ + 0 o p_234094_ + 1 o p_234095_ + 2 o p_234096_ + 3 o p_234097_ + 4 o p_234098_ + 5 o p_234099_ + 6 o p_234100_ + 7 o p_234101_ + createParticle (Lit;Lfew;DDDDDD)Lfhm; m_6966_ + 0 o p_234085_ + 1 o p_234086_ + 2 o p_234087_ + 3 o p_234088_ + 4 o p_234089_ + 5 o p_234090_ + 6 o p_234091_ + 7 o p_234092_ +fid$b net/minecraft/client/particle/SoulParticle$Provider + a f_107737_ + (Lfih;)V + 0 o p_107739_ + a (Liy;Lfew;DDDDDD)Lfhm; m_6966_ + 0 o p_107750_ + 1 o p_107751_ + 2 o p_107752_ + 3 o p_107753_ + 4 o p_107754_ + 5 o p_107755_ + 6 o p_107756_ + 7 o p_107757_ + createParticle (Lit;Lfew;DDDDDD)Lfhm; m_6966_ + 0 o p_107741_ + 1 o p_107742_ + 2 o p_107743_ + 3 o p_107744_ + 4 o p_107745_ + 5 o p_107746_ + 6 o p_107747_ + 7 o p_107748_ +fie net/minecraft/client/particle/SpellParticle + a f_107758_ + b f_107759_ + ()V + static + (Lfew;DDDDDDLfih;)V + 0 o p_107762_ + 1 o p_107763_ + 2 o p_107764_ + 3 o p_107765_ + 4 o p_107766_ + 5 o p_107767_ + 6 o p_107768_ + 7 o p_107769_ + a ()V m_5989_ + b ()Lfhq; m_7556_ + g ()Z m_172323_ +fie$a net/minecraft/client/particle/SpellParticle$AmbientMobProvider + a f_107782_ + (Lfih;)V + 0 o p_107784_ + a (Liy;Lfew;DDDDDD)Lfhm; m_6966_ + 0 o p_107795_ + 1 o p_107796_ + 2 o p_107797_ + 3 o p_107798_ + 4 o p_107799_ + 5 o p_107800_ + 6 o p_107801_ + 7 o p_107802_ + createParticle (Lit;Lfew;DDDDDD)Lfhm; m_6966_ + 0 o p_107786_ + 1 o p_107787_ + 2 o p_107788_ + 3 o p_107789_ + 4 o p_107790_ + 5 o p_107791_ + 6 o p_107792_ + 7 o p_107793_ +fie$b net/minecraft/client/particle/SpellParticle$InstantProvider + a f_107803_ + (Lfih;)V + 0 o p_107805_ + a (Liy;Lfew;DDDDDD)Lfhm; m_6966_ + 0 o p_107816_ + 1 o p_107817_ + 2 o p_107818_ + 3 o p_107819_ + 4 o p_107820_ + 5 o p_107821_ + 6 o p_107822_ + 7 o p_107823_ + createParticle (Lit;Lfew;DDDDDD)Lfhm; m_6966_ + 0 o p_107807_ + 1 o p_107808_ + 2 o p_107809_ + 3 o p_107810_ + 4 o p_107811_ + 5 o p_107812_ + 6 o p_107813_ + 7 o p_107814_ +fie$c net/minecraft/client/particle/SpellParticle$MobProvider + a f_107824_ + (Lfih;)V + 0 o p_107826_ + a (Liy;Lfew;DDDDDD)Lfhm; m_6966_ + 0 o p_107837_ + 1 o p_107838_ + 2 o p_107839_ + 3 o p_107840_ + 4 o p_107841_ + 5 o p_107842_ + 6 o p_107843_ + 7 o p_107844_ + createParticle (Lit;Lfew;DDDDDD)Lfhm; m_6966_ + 0 o p_107828_ + 1 o p_107829_ + 2 o p_107830_ + 3 o p_107831_ + 4 o p_107832_ + 5 o p_107833_ + 6 o p_107834_ + 7 o p_107835_ +fie$d net/minecraft/client/particle/SpellParticle$Provider + a f_107845_ + (Lfih;)V + 0 o p_107847_ + a (Liy;Lfew;DDDDDD)Lfhm; m_6966_ + 0 o p_107858_ + 1 o p_107859_ + 2 o p_107860_ + 3 o p_107861_ + 4 o p_107862_ + 5 o p_107863_ + 6 o p_107864_ + 7 o p_107865_ + createParticle (Lit;Lfew;DDDDDD)Lfhm; m_6966_ + 0 o p_107849_ + 1 o p_107850_ + 2 o p_107851_ + 3 o p_107852_ + 4 o p_107853_ + 5 o p_107854_ + 6 o p_107855_ + 7 o p_107856_ +fie$e net/minecraft/client/particle/SpellParticle$WitchProvider + a f_107866_ + (Lfih;)V + 0 o p_107868_ + a (Liy;Lfew;DDDDDD)Lfhm; m_6966_ + 0 o p_107879_ + 1 o p_107880_ + 2 o p_107881_ + 3 o p_107882_ + 4 o p_107883_ + 5 o p_107884_ + 6 o p_107885_ + 7 o p_107886_ + createParticle (Lit;Lfew;DDDDDD)Lfhm; m_6966_ + 0 o p_107870_ + 1 o p_107871_ + 2 o p_107872_ + 3 o p_107873_ + 4 o p_107874_ + 5 o p_107875_ + 6 o p_107876_ + 7 o p_107877_ +fif net/minecraft/client/particle/SpitParticle + (Lfew;DDDDDDLfih;)V + 0 o p_107888_ + 1 o p_107889_ + 2 o p_107890_ + 3 o p_107891_ + 4 o p_107892_ + 5 o p_107893_ + 6 o p_107894_ + 7 o p_107895_ +fif$a net/minecraft/client/particle/SpitParticle$Provider + a f_107907_ + (Lfih;)V + 0 o p_107909_ + a (Liy;Lfew;DDDDDD)Lfhm; m_6966_ + 0 o p_107920_ + 1 o p_107921_ + 2 o p_107922_ + 3 o p_107923_ + 4 o p_107924_ + 5 o p_107925_ + 6 o p_107926_ + 7 o p_107927_ + createParticle (Lit;Lfew;DDDDDD)Lfhm; m_6966_ + 0 o p_107911_ + 1 o p_107912_ + 2 o p_107913_ + 3 o p_107914_ + 4 o p_107915_ + 5 o p_107916_ + 6 o p_107917_ + 7 o p_107918_ +fig net/minecraft/client/particle/SplashParticle + (Lfew;DDDDDD)V + 0 o p_107929_ + 1 o p_107930_ + 2 o p_107931_ + 3 o p_107932_ + 4 o p_107933_ + 5 o p_107934_ + 6 o p_107935_ +fig$a net/minecraft/client/particle/SplashParticle$Provider + a f_107945_ + (Lfih;)V + 0 o p_107947_ + a (Liy;Lfew;DDDDDD)Lfhm; m_6966_ + 0 o p_107958_ + 1 o p_107959_ + 2 o p_107960_ + 3 o p_107961_ + 4 o p_107962_ + 5 o p_107963_ + 6 o p_107964_ + 7 o p_107965_ + createParticle (Lit;Lfew;DDDDDD)Lfhm; m_6966_ + 0 o p_107949_ + 1 o p_107950_ + 2 o p_107951_ + 3 o p_107952_ + 4 o p_107953_ + 5 o p_107954_ + 6 o p_107955_ + 7 o p_107956_ +fih net/minecraft/client/particle/SpriteSet + a (II)Lfuv; m_5819_ + 0 o p_107966_ + 1 o p_107967_ + a (Lapf;)Lfuv; m_213979_ + 0 o p_234102_ +fii net/minecraft/client/particle/SquidInkParticle + (Lfew;DDDDDDILfih;)V + 0 o p_172325_ + 1 o p_172326_ + 2 o p_172327_ + 3 o p_172328_ + 4 o p_172329_ + 5 o p_172330_ + 6 o p_172331_ + 7 o p_172332_ + 8 o p_172333_ + a ()V m_5989_ +fii$a net/minecraft/client/particle/SquidInkParticle$GlowInkProvider + a f_172334_ + (Lfih;)V + 0 o p_172336_ + a (Liy;Lfew;DDDDDD)Lfhm; m_6966_ + 0 o p_172347_ + 1 o p_172348_ + 2 o p_172349_ + 3 o p_172350_ + 4 o p_172351_ + 5 o p_172352_ + 6 o p_172353_ + 7 o p_172354_ + createParticle (Lit;Lfew;DDDDDD)Lfhm; m_6966_ + 0 o p_172338_ + 1 o p_172339_ + 2 o p_172340_ + 3 o p_172341_ + 4 o p_172342_ + 5 o p_172343_ + 6 o p_172344_ + 7 o p_172345_ +fii$b net/minecraft/client/particle/SquidInkParticle$Provider + a f_107989_ + (Lfih;)V + 0 o p_107991_ + a (Liy;Lfew;DDDDDD)Lfhm; m_6966_ + 0 o p_108002_ + 1 o p_108003_ + 2 o p_108004_ + 3 o p_108005_ + 4 o p_108006_ + 5 o p_108007_ + 6 o p_108008_ + 7 o p_108009_ + createParticle (Lit;Lfew;DDDDDD)Lfhm; m_6966_ + 0 o p_107993_ + 1 o p_107994_ + 2 o p_107995_ + 3 o p_107996_ + 4 o p_107997_ + 5 o p_107998_ + 6 o p_107999_ + 7 o p_108000_ +fij net/minecraft/client/particle/SuspendedParticle + (Lfew;Lfih;DDDDDD)V + 0 o p_172409_ + 1 o p_172410_ + 2 o p_172411_ + 3 o p_172412_ + 4 o p_172413_ + 5 o p_172414_ + 6 o p_172415_ + 7 o p_172416_ + (Lfew;Lfih;DDD)V + 0 o p_172403_ + 1 o p_172404_ + 2 o p_172405_ + 3 o p_172406_ + 4 o p_172407_ + b ()Lfhq; m_7556_ +fij$a net/minecraft/client/particle/SuspendedParticle$CrimsonSporeProvider + a f_108040_ + (Lfih;)V + 0 o p_108042_ + a (Liy;Lfew;DDDDDD)Lfhm; m_6966_ + 0 o p_108053_ + 1 o p_108054_ + 2 o p_108055_ + 3 o p_108056_ + 4 o p_108057_ + 5 o p_108058_ + 6 o p_108059_ + 7 o p_108060_ + createParticle (Lit;Lfew;DDDDDD)Lfhm; m_6966_ + 0 o p_108044_ + 1 o p_108045_ + 2 o p_108046_ + 3 o p_108047_ + 4 o p_108048_ + 5 o p_108049_ + 6 o p_108050_ + 7 o p_108051_ +fij$b net/minecraft/client/particle/SuspendedParticle$SporeBlossomAirProvider + a f_172417_ + (Lfih;)V + 0 o p_172419_ + a (Liy;Lfew;DDDDDD)Lfhm; m_6966_ + 0 o p_172430_ + 1 o p_172431_ + 2 o p_172432_ + 3 o p_172433_ + 4 o p_172434_ + 5 o p_172435_ + 6 o p_172436_ + 7 o p_172437_ + createParticle (Lit;Lfew;DDDDDD)Lfhm; m_6966_ + 0 o p_172421_ + 1 o p_172422_ + 2 o p_172423_ + 3 o p_172424_ + 4 o p_172425_ + 5 o p_172426_ + 6 o p_172427_ + 7 o p_172428_ +fij$b$1 net/minecraft/client/particle/SuspendedParticle$SporeBlossomAirProvider$1 + a f_172438_ + (Lfij$b;Lfew;Lfih;DDDDDD)V + 0 o p_172440_ + 1 o p_172441_ + 2 o p_172442_ + 3 o p_172443_ + 4 o p_172444_ + 5 o p_172445_ + 6 o p_172446_ + 7 o p_172447_ + 8 o p_172448_ + o ()Ljava/util/Optional; m_142654_ +fij$c net/minecraft/client/particle/SuspendedParticle$UnderwaterProvider + a f_108061_ + (Lfih;)V + 0 o p_108063_ + a (Liy;Lfew;DDDDDD)Lfhm; m_6966_ + 0 o p_108074_ + 1 o p_108075_ + 2 o p_108076_ + 3 o p_108077_ + 4 o p_108078_ + 5 o p_108079_ + 6 o p_108080_ + 7 o p_108081_ + createParticle (Lit;Lfew;DDDDDD)Lfhm; m_6966_ + 0 o p_108065_ + 1 o p_108066_ + 2 o p_108067_ + 3 o p_108068_ + 4 o p_108069_ + 5 o p_108070_ + 6 o p_108071_ + 7 o p_108072_ +fij$d net/minecraft/client/particle/SuspendedParticle$WarpedSporeProvider + a f_108082_ + (Lfih;)V + 0 o p_108084_ + a (Liy;Lfew;DDDDDD)Lfhm; m_6966_ + 0 o p_108095_ + 1 o p_108096_ + 2 o p_108097_ + 3 o p_108098_ + 4 o p_108099_ + 5 o p_108100_ + 6 o p_108101_ + 7 o p_108102_ + createParticle (Lit;Lfew;DDDDDD)Lfhm; m_6966_ + 0 o p_108086_ + 1 o p_108087_ + 2 o p_108088_ + 3 o p_108089_ + 4 o p_108090_ + 5 o p_108091_ + 6 o p_108092_ + 7 o p_108093_ +fik net/minecraft/client/particle/SuspendedTownParticle + (Lfew;DDDDDD)V + 0 o p_108104_ + 1 o p_108105_ + 2 o p_108106_ + 3 o p_108107_ + 4 o p_108108_ + 5 o p_108109_ + 6 o p_108110_ + a (DDD)V m_6257_ + 0 o p_108122_ + 1 o p_108123_ + 2 o p_108124_ + a ()V m_5989_ + b ()Lfhq; m_7556_ +fik$a net/minecraft/client/particle/SuspendedTownParticle$ComposterFillProvider + a f_108126_ + (Lfih;)V + 0 o p_108128_ + a (Liy;Lfew;DDDDDD)Lfhm; m_6966_ + 0 o p_108139_ + 1 o p_108140_ + 2 o p_108141_ + 3 o p_108142_ + 4 o p_108143_ + 5 o p_108144_ + 6 o p_108145_ + 7 o p_108146_ + createParticle (Lit;Lfew;DDDDDD)Lfhm; m_6966_ + 0 o p_108130_ + 1 o p_108131_ + 2 o p_108132_ + 3 o p_108133_ + 4 o p_108134_ + 5 o p_108135_ + 6 o p_108136_ + 7 o p_108137_ +fik$b net/minecraft/client/particle/SuspendedTownParticle$DolphinSpeedProvider + a f_108147_ + (Lfih;)V + 0 o p_108149_ + a (Liy;Lfew;DDDDDD)Lfhm; m_6966_ + 0 o p_108160_ + 1 o p_108161_ + 2 o p_108162_ + 3 o p_108163_ + 4 o p_108164_ + 5 o p_108165_ + 6 o p_108166_ + 7 o p_108167_ + createParticle (Lit;Lfew;DDDDDD)Lfhm; m_6966_ + 0 o p_108151_ + 1 o p_108152_ + 2 o p_108153_ + 3 o p_108154_ + 4 o p_108155_ + 5 o p_108156_ + 6 o p_108157_ + 7 o p_108158_ +fik$c net/minecraft/client/particle/SuspendedTownParticle$EggCrackProvider + a f_276491_ + (Lfih;)V + 0 o p_277756_ + a (Liy;Lfew;DDDDDD)Lfhm; m_6966_ + 0 o p_277584_ + 1 o p_277587_ + 2 o p_277722_ + 3 o p_277508_ + 4 o p_277797_ + 5 o p_277537_ + 6 o p_277578_ + 7 o p_277397_ + createParticle (Lit;Lfew;DDDDDD)Lfhm; m_6966_ + 0 o p_277368_ + 1 o p_277576_ + 2 o p_277798_ + 3 o p_277560_ + 4 o p_277731_ + 5 o p_277543_ + 6 o p_277890_ + 7 o p_277605_ +fik$d net/minecraft/client/particle/SuspendedTownParticle$HappyVillagerProvider + a f_108168_ + (Lfih;)V + 0 o p_108170_ + a (Liy;Lfew;DDDDDD)Lfhm; m_6966_ + 0 o p_108181_ + 1 o p_108182_ + 2 o p_108183_ + 3 o p_108184_ + 4 o p_108185_ + 5 o p_108186_ + 6 o p_108187_ + 7 o p_108188_ + createParticle (Lit;Lfew;DDDDDD)Lfhm; m_6966_ + 0 o p_108172_ + 1 o p_108173_ + 2 o p_108174_ + 3 o p_108175_ + 4 o p_108176_ + 5 o p_108177_ + 6 o p_108178_ + 7 o p_108179_ +fik$e net/minecraft/client/particle/SuspendedTownParticle$Provider + a f_108189_ + (Lfih;)V + 0 o p_108191_ + a (Liy;Lfew;DDDDDD)Lfhm; m_6966_ + 0 o p_108202_ + 1 o p_108203_ + 2 o p_108204_ + 3 o p_108205_ + 4 o p_108206_ + 5 o p_108207_ + 6 o p_108208_ + 7 o p_108209_ + createParticle (Lit;Lfew;DDDDDD)Lfhm; m_6966_ + 0 o p_108193_ + 1 o p_108194_ + 2 o p_108195_ + 3 o p_108196_ + 4 o p_108197_ + 5 o p_108198_ + 6 o p_108199_ + 7 o p_108200_ +fil net/minecraft/client/particle/TerrainParticle + F f_108278_ + a f_108280_ + b f_108277_ + (Lfew;DDDDDDLdcb;)V + 0 o p_108282_ + 1 o p_108283_ + 2 o p_108284_ + 3 o p_108285_ + 4 o p_108286_ + 5 o p_108287_ + 6 o p_108288_ + 7 o p_108289_ + (Lfew;DDDDDDLdcb;Lgu;)V + 0 o p_172451_ + 1 o p_172452_ + 2 o p_172453_ + 3 o p_172454_ + 4 o p_172455_ + 5 o p_172456_ + 6 o p_172457_ + 7 o p_172458_ + 8 o p_172459_ + a (F)I m_6355_ + 0 o p_108291_ + b ()Lfhq; m_7556_ + c ()F m_5970_ + d ()F m_5952_ + e ()F m_5951_ + f ()F m_5950_ +fil$a net/minecraft/client/particle/TerrainParticle$Provider + ()V + a (Lin;Lfew;DDDDDD)Lfhm; m_6966_ + 0 o p_108304_ + 1 o p_108305_ + 2 o p_108306_ + 3 o p_108307_ + 4 o p_108308_ + 5 o p_108309_ + 6 o p_108310_ + 7 o p_108311_ + createParticle (Lit;Lfew;DDDDDD)Lfhm; m_6966_ + 0 o p_108313_ + 1 o p_108314_ + 2 o p_108315_ + 3 o p_108316_ + 4 o p_108317_ + 5 o p_108318_ + 6 o p_108319_ + 7 o p_108320_ +fim net/minecraft/client/particle/TextureSheetParticle + E f_108321_ + (Lfew;DDD)V + 0 o p_108323_ + 1 o p_108324_ + 2 o p_108325_ + 3 o p_108326_ + (Lfew;DDDDDD)V + 0 o p_108328_ + 1 o p_108329_ + 2 o p_108330_ + 3 o p_108331_ + 4 o p_108332_ + 5 o p_108333_ + 6 o p_108334_ + a (Lfih;)V m_108335_ + 0 o p_108336_ + a (Lfuv;)V m_108337_ + 0 o p_108338_ + b (Lfih;)V m_108339_ + 0 o p_108340_ + c ()F m_5970_ + d ()F m_5952_ + e ()F m_5951_ + f ()F m_5950_ +fin net/minecraft/client/particle/TotemParticle + (Lfew;DDDDDDLfih;)V + 0 o p_108346_ + 1 o p_108347_ + 2 o p_108348_ + 3 o p_108349_ + 4 o p_108350_ + 5 o p_108351_ + 6 o p_108352_ + 7 o p_108353_ +fin$a net/minecraft/client/particle/TotemParticle$Provider + a f_108364_ + (Lfih;)V + 0 o p_108366_ + a (Liy;Lfew;DDDDDD)Lfhm; m_6966_ + 0 o p_108377_ + 1 o p_108378_ + 2 o p_108379_ + 3 o p_108380_ + 4 o p_108381_ + 5 o p_108382_ + 6 o p_108383_ + 7 o p_108384_ + createParticle (Lit;Lfew;DDDDDD)Lfhm; m_6966_ + 0 o p_108368_ + 1 o p_108369_ + 2 o p_108370_ + 3 o p_108371_ + 4 o p_108372_ + 5 o p_108373_ + 6 o p_108374_ + 7 o p_108375_ +fio net/minecraft/client/particle/TrackingEmitter + D f_108385_ + E f_108386_ + a f_108387_ + b f_108388_ + (Lfew;Lbfj;Lit;)V + 0 o p_108390_ + 1 o p_108391_ + 2 o p_108392_ + (Lfew;Lbfj;Lit;ILeei;)V + 0 o p_108399_ + 1 o p_108400_ + 2 o p_108401_ + 3 o p_108402_ + 4 o p_108403_ + (Lfew;Lbfj;Lit;I)V + 0 o p_108394_ + 1 o p_108395_ + 2 o p_108396_ + 3 o p_108397_ + a ()V m_5989_ +fip net/minecraft/client/particle/VibrationSignalParticle + F f_244341_ + G f_244335_ + H f_243886_ + a f_234103_ + b f_243819_ + (Lfew;DDDLdgp;I)V + 0 o p_234105_ + 1 o p_234106_ + 2 o p_234107_ + 3 o p_234108_ + 4 o p_234109_ + 5 o p_234110_ + a (F)I m_6355_ + 0 o p_172469_ + a ()V m_5989_ + a (Lein;Lemz;FLjava/util/function/Consumer;)V m_172478_ + 0 o p_172479_ + 1 o p_172480_ + 2 o p_172481_ + 3 o p_172482_ + a (Lein;Lemz;F)V m_5744_ + 0 o p_172475_ + 1 o p_172476_ + 2 o p_172477_ + a (FFFLorg/joml/Quaternionf;)V m_252591_ + static + 0 o p_253348_ + 1 o p_253349_ + 2 o p_253350_ + 3 o p_253351_ + b ()Lfhq; m_7556_ + b (FFFLorg/joml/Quaternionf;)V m_252592_ + static + 0 o p_253352_ + 1 o p_253353_ + 2 o p_253354_ + 3 o p_253355_ +fip$a net/minecraft/client/particle/VibrationSignalParticle$Provider + a f_172488_ + (Lfih;)V + 0 o p_172490_ + a (Liz;Lfew;DDDDDD)Lfhm; m_6966_ + 0 o p_172501_ + 1 o p_172502_ + 2 o p_172503_ + 3 o p_172504_ + 4 o p_172505_ + 5 o p_172506_ + 6 o p_172507_ + 7 o p_172508_ + createParticle (Lit;Lfew;DDDDDD)Lfhm; m_6966_ + 0 o p_172492_ + 1 o p_172493_ + 2 o p_172494_ + 3 o p_172495_ + 4 o p_172496_ + 5 o p_172497_ + 6 o p_172498_ + 7 o p_172499_ +fiq net/minecraft/client/particle/WakeParticle + a f_108405_ + (Lfew;DDDDDDLfih;)V + 0 o p_108407_ + 1 o p_108408_ + 2 o p_108409_ + 3 o p_108410_ + 4 o p_108411_ + 5 o p_108412_ + 6 o p_108413_ + 7 o p_108414_ + a ()V m_5989_ + b ()Lfhq; m_7556_ +fiq$a net/minecraft/client/particle/WakeParticle$Provider + a f_108427_ + (Lfih;)V + 0 o p_108429_ + a (Liy;Lfew;DDDDDD)Lfhm; m_6966_ + 0 o p_108440_ + 1 o p_108441_ + 2 o p_108442_ + 3 o p_108443_ + 4 o p_108444_ + 5 o p_108445_ + 6 o p_108446_ + 7 o p_108447_ + createParticle (Lit;Lfew;DDDDDD)Lfhm; m_6966_ + 0 o p_108431_ + 1 o p_108432_ + 2 o p_108433_ + 3 o p_108434_ + 4 o p_108435_ + 5 o p_108436_ + 6 o p_108437_ + 7 o p_108438_ +fir net/minecraft/client/particle/WaterCurrentDownParticle + a f_108448_ + (Lfew;DDD)V + 0 o p_108450_ + 1 o p_108451_ + 2 o p_108452_ + 3 o p_108453_ + a ()V m_5989_ + b ()Lfhq; m_7556_ +fir$a net/minecraft/client/particle/WaterCurrentDownParticle$Provider + a f_108462_ + (Lfih;)V + 0 o p_108464_ + a (Liy;Lfew;DDDDDD)Lfhm; m_6966_ + 0 o p_108475_ + 1 o p_108476_ + 2 o p_108477_ + 3 o p_108478_ + 4 o p_108479_ + 5 o p_108480_ + 6 o p_108481_ + 7 o p_108482_ + createParticle (Lit;Lfew;DDDDDD)Lfhm; m_6966_ + 0 o p_108466_ + 1 o p_108467_ + 2 o p_108468_ + 3 o p_108469_ + 4 o p_108470_ + 5 o p_108471_ + 6 o p_108472_ + 7 o p_108473_ +fis net/minecraft/client/particle/WaterDropParticle + (Lfew;DDD)V + 0 o p_108484_ + 1 o p_108485_ + 2 o p_108486_ + 3 o p_108487_ + a ()V m_5989_ + b ()Lfhq; m_7556_ +fis$a net/minecraft/client/particle/WaterDropParticle$Provider + a f_108490_ + (Lfih;)V + 0 o p_108492_ + a (Liy;Lfew;DDDDDD)Lfhm; m_6966_ + 0 o p_108503_ + 1 o p_108504_ + 2 o p_108505_ + 3 o p_108506_ + 4 o p_108507_ + 5 o p_108508_ + 6 o p_108509_ + 7 o p_108510_ + createParticle (Lit;Lfew;DDDDDD)Lfhm; m_6966_ + 0 o p_108494_ + 1 o p_108495_ + 2 o p_108496_ + 3 o p_108497_ + 4 o p_108498_ + 5 o p_108499_ + 6 o p_108500_ + 7 o p_108501_ +fit net/minecraft/client/particle/WhiteAshParticle + a f_172509_ + (Lfew;DDDDDDFLfih;)V + 0 o p_108512_ + 1 o p_108513_ + 2 o p_108514_ + 3 o p_108515_ + 4 o p_108516_ + 5 o p_108517_ + 6 o p_108518_ + 7 o p_108519_ + 8 o p_108520_ +fit$a net/minecraft/client/particle/WhiteAshParticle$Provider + a f_108521_ + (Lfih;)V + 0 o p_108523_ + a (Liy;Lfew;DDDDDD)Lfhm; m_6966_ + 0 o p_108534_ + 1 o p_108535_ + 2 o p_108536_ + 3 o p_108537_ + 4 o p_108538_ + 5 o p_108539_ + 6 o p_108540_ + 7 o p_108541_ + createParticle (Lit;Lfew;DDDDDD)Lfhm; m_6966_ + 0 o p_108525_ + 1 o p_108526_ + 2 o p_108527_ + 3 o p_108528_ + 4 o p_108529_ + 5 o p_108530_ + 6 o p_108531_ + 7 o p_108532_ +fiu net/minecraft/client/particle/package-info +fiv net/minecraft/client/player/AbstractClientPlayer + b f_271420_ + c f_108542_ + cl f_108546_ + d f_108543_ + e f_108544_ + f f_108545_ + g f_172517_ + (Lfew;Lcom/mojang/authlib/GameProfile;)V + 0 o p_250460_ + 1 o p_249912_ + G_ ()Z m_5833_ + a ()Z m_108555_ + a (Lacq;Ljava/lang/String;)V m_172521_ + static + 0 o p_172522_ + 1 o p_172523_ + b ()Lffb; m_108558_ + b (F)Leei; m_272267_ + 0 o p_272943_ + c (Ljava/lang/String;)Lacq; m_108556_ + static + 0 o p_108557_ + c ()Z m_108559_ + d ()Lacq; m_108560_ + e ()Lacq; m_108561_ + f ()Z m_7500_ + h ()Z m_108562_ + i ()Lacq; m_108563_ + j ()Ljava/lang/String; m_108564_ + l ()V m_8119_ + m ()F m_108565_ +fiw net/minecraft/client/player/Input + a f_108566_ + b f_108567_ + c f_108568_ + d f_108569_ + e f_108570_ + f f_108571_ + g f_108572_ + h f_108573_ + ()V + a (ZF)V m_214106_ + 0 o p_234115_ + 1 o p_234116_ + a ()Leeh; m_108575_ + b ()Z m_108577_ +fix net/minecraft/client/player/KeyboardInput + i f_108578_ + (Lenr;)V + 0 o p_108580_ + a (ZZ)F m_205577_ + static + 0 o p_205578_ + 1 o p_205579_ + a (ZF)V m_214106_ + 0 o p_234118_ + 1 o p_234119_ +fiy net/minecraft/client/player/LocalPlayer + cA f_197409_ + cB f_234120_ + cC f_108591_ + cD f_108592_ + cE f_108593_ + cF f_108594_ + cG f_108595_ + cH f_108596_ + cI f_108597_ + cJ f_108598_ + cK f_108599_ + cL f_108600_ + cM f_108601_ + cN f_108602_ + cO f_108603_ + cP f_108604_ + cQ f_108605_ + cR f_108606_ + cS f_108607_ + cT f_108608_ + cU f_108609_ + cV f_108610_ + cW f_108611_ + cX f_108612_ + cY f_108613_ + cZ f_108614_ + cl f_108617_ + cm f_108618_ + cn f_108619_ + co f_108583_ + cp f_108585_ + cq f_108586_ + cr f_108587_ + cs f_108588_ + ct f_108589_ + cu f_108590_ + cv f_172525_ + cw f_172526_ + cx f_172527_ + cy f_172528_ + cz f_172529_ + da f_108615_ + db f_108616_ + g f_234121_ + ()V + static + (Lenn;Lfew;Lfex;Lams;Lenb;ZZ)V + 0 o p_108621_ + 1 o p_108622_ + 2 o p_108623_ + 3 o p_108624_ + 4 o p_108625_ + 5 o p_108626_ + 6 o p_108627_ + A ()F m_108634_ + B ()I m_8088_ + C ()Z m_108635_ + D ()Z m_108636_ + E ()V m_172530_ + G ()Z m_108637_ + I ()Z m_108638_ + J ()F m_108639_ + K ()V m_108640_ + L ()V m_254869_ + M ()V m_108641_ + N ()Z m_108731_ + O ()Z m_108732_ + P ()Z m_264082_ + Q ()Z m_108733_ + R ()Z m_255269_ + U ()Z m_143387_ + a (Lcln;)V m_7907_ + 0 o p_108678_ + a (Z)Z m_108700_ + 0 o p_108701_ + a (Lefb;)Ljava/util/stream/Stream; m_238886_ + static + 0 o p_234124_ + a (Lbgf;Leei;)V m_6478_ + 0 o p_108670_ + 1 o p_108671_ + a (Lczx;)V m_7698_ + 0 o p_108680_ + a (Ldam;)V m_7569_ + 0 o p_108682_ + a (Lcmj;)V m_287171_ + 0 o p_287675_ + a (Lcjc;)V m_108675_ + 0 o p_108676_ + a (Lamg;Lami;FF)V m_6330_ + 0 o p_108655_ + 1 o p_108656_ + 2 o p_108657_ + 3 o p_108658_ + a (Lben;F)Z m_6469_ + 0 o p_108662_ + 1 o p_108663_ + a (Lsw;Z)V m_5661_ + 0 o p_108696_ + 1 o p_108697_ + a (Ldav;Z)V m_7739_ + 0 o p_277970_ + 1 o p_277980_ + a (Lcfz;Lbdw;)V m_6986_ + 0 o p_108673_ + 1 o p_108674_ + a (Lsw;)V m_213846_ + 0 o p_234129_ + a (Laby;)V m_7350_ + 0 o p_108699_ + a (Lbfj;Z)Z m_7998_ + 0 o p_108667_ + 1 o p_108668_ + a (Lbdw;)V m_6674_ + 0 o p_108660_ + a (FII)V m_108644_ + 0 o p_108645_ + 1 o p_108646_ + 2 o p_108647_ + a (Lamg;FF)V m_5496_ + 0 o p_108651_ + 1 o p_108652_ + 2 o p_108653_ + a (I)V m_108648_ + 0 o p_108649_ + a (Ldba;)V m_5966_ + 0 o p_108686_ + a (Lbfj;)V m_5704_ + 0 o p_108665_ + a (Lcfz;Lcfz;Lcbn;)V m_141945_ + 0 o p_172532_ + 1 o p_172533_ + 2 o p_172534_ + aZ ()Z m_5842_ + b (Z)V m_108711_ + 0 o p_108712_ + b (Lbfj;)V m_5700_ + 0 o p_108710_ + b (B)V m_7822_ + 0 o p_108643_ + b (Leei;)Z m_196406_ + 0 o p_197411_ + bA ()V m_6038_ + bP ()Z m_6144_ + bU ()Z m_6047_ + b_ ()V m_8107_ + bg ()Z m_5843_ + bv ()V m_6083_ + c (DD)V m_108704_ + 0 o p_108705_ + 1 o p_108706_ + c (F)V m_108760_ + 0 o p_108761_ + c (Lbdw;)V m_6672_ + 0 o p_108718_ + c (Lbfj;)Z m_264231_ + 0 o p_265184_ + c (Lbey;)Lbfa; m_6234_ + 0 o p_108720_ + cV ()Z m_21515_ + d (Ljava/lang/String;)V m_108748_ + 0 o p_108749_ + dO ()Z m_6039_ + dX ()V m_6153_ + dz ()F m_213816_ + f (Lben;F)V m_6475_ + 0 o p_108729_ + 1 o p_108730_ + f (FF)V m_108743_ + 0 o p_108744_ + 1 o p_108745_ + fG ()Z m_7602_ + fL ()V m_7583_ + fc ()V m_6140_ + fi ()Z m_6117_ + fj ()Lbdw; m_7655_ + fo ()V m_5810_ + fq ()Z m_5791_ + g ()Z m_7578_ + g (F)F m_5686_ + 0 o p_108742_ + h (F)F m_5675_ + 0 o p_108753_ + i (Lgu;)Z m_108746_ + 0 o p_108747_ + l ()V m_8119_ + o ()F m_108762_ + p ()V m_108763_ + q (F)Leei; m_7398_ + 0 o p_108758_ + q ()V m_6915_ + s ()V m_108765_ + s (F)V m_5634_ + 0 o p_108708_ + t ()V m_108628_ + u ()Ljava/lang/String; m_108629_ + v ()Lams; m_108630_ + w ()V m_6885_ + x ()Lenb; m_108631_ + y ()Z m_108632_ + z ()Lbgk; m_245714_ +fiz net/minecraft/client/player/RemotePlayer + cl f_271363_ + g f_271343_ + (Lfew;Lcom/mojang/authlib/GameProfile;)V + 0 o p_252213_ + 1 o p_250471_ + a (D)Z m_6783_ + 0 o p_108770_ + a (Lben;F)Z m_6469_ + 0 o p_108772_ + 1 o p_108773_ + a (Lsw;)V m_213846_ + 0 o p_234163_ + b_ ()V m_8107_ + fH ()V m_7594_ + l (DDD)V m_6001_ + 0 o p_273090_ + 1 o p_272647_ + 2 o p_273555_ + l ()V m_8119_ +fj net/minecraft/commands/arguments/coordinates/ColumnPosArgument + a f_118985_ + b f_118986_ + ()V + static + ()V + a ()Lfj; m_118989_ + static + a (Lcom/mojang/brigadier/context/CommandContext;Ljava/lang/String;)Lahv; m_118992_ + static + 0 o p_118993_ + 1 o p_118994_ + a (Lcom/mojang/brigadier/StringReader;)Lfk; parse + 0 o p_118991_ + getExamples ()Ljava/util/Collection; getExamples + listSuggestions (Lcom/mojang/brigadier/context/CommandContext;Lcom/mojang/brigadier/suggestion/SuggestionsBuilder;)Ljava/util/concurrent/CompletableFuture; listSuggestions + 0 o p_118997_ + 1 o p_118998_ + parse (Lcom/mojang/brigadier/StringReader;)Ljava/lang/Object; parse + 0 o p_119000_ +fja net/minecraft/client/player/inventory/Hotbar + a f_108780_ + ()V + a (Lqx;)V m_108783_ + 0 o p_108784_ + a ()Lqx; m_108782_ + delegate ()Ljava/util/List; delegate + delegate ()Ljava/util/Collection; delegate + delegate ()Ljava/lang/Object; delegate + isEmpty ()Z isEmpty +fjb net/minecraft/client/player/inventory/package-info +fjc net/minecraft/client/player/package-info +fjd net/minecraft/client/profiling/ClientMetricsSamplersProvider + a f_172536_ + b f_172537_ + c f_172538_ + (Ljava/util/function/LongSupplier;Lfjv;)V + 0 o p_172540_ + 1 o p_172541_ + a (Ljava/util/function/Supplier;)Ljava/util/Set; m_142531_ + 0 o p_172544_ + a ()V m_172542_ +fje net/minecraft/client/profiling/package-info +fjf net/minecraft/client/quickplay/QuickPlay + a f_278484_ + b f_278439_ + c f_278412_ + d f_278373_ + e f_278381_ + f f_278468_ + g f_278499_ + ()V + static + ()V + a (JLejq;)Z m_278783_ + static + 0 o p_279129_ + 1 o p_279424_ + a (Ljava/lang/String;Lenn;Ljava/lang/String;Ljava/lang/String;Leiz;)V m_287802_ + static + 0 o p_288251_ + 1 o p_288252_ + 2 o p_288253_ + 3 o p_288254_ + 4 o p_288255_ + a (Lenn;Ljava/lang/String;)V m_278782_ + static + 0 o p_279420_ + 1 o p_279459_ + a (Lenn;Leiz;Ljava/lang/String;)V m_278851_ + static + 0 o p_279320_ + 1 o p_279468_ + 2 o p_279371_ + a (Lenn;Lezy$c;Lakt;Leiz;)V m_278613_ + static + 0 o p_279319_ + 1 o p_279291_ + 2 o p_279328_ + 3 o p_279322_ + b (Lenn;Ljava/lang/String;)V m_278767_ + static + 0 o p_279276_ + 1 o p_279128_ +fjg net/minecraft/client/quickplay/QuickPlayLog + a f_278416_ + b f_278438_ + c f_278422_ + d f_278473_ + e f_278423_ + ()V + static + (Ljava/lang/String;)V + 0 o p_279463_ + a (Ljava/lang/String;)Lfjg; m_278648_ + static + 0 o p_279275_ + a (Lenn;)V m_278768_ + 0 o p_279258_ + a (Lfjg$c;Ljava/lang/String;Ljava/lang/String;)V m_278642_ + 0 o p_279380_ + 1 o p_279427_ + 2 o p_279470_ + a (Lcom/google/gson/JsonElement;)V m_278671_ + 0 o p_279238_ + b (Lenn;)V m_278666_ + 0 o p_279248_ +fjg$1 net/minecraft/client/quickplay/QuickPlayLog$1 + (Ljava/lang/String;)V + 0 o p_279410_ + a (Lenn;)V m_278768_ + 0 o p_279484_ + a (Lfjg$c;Ljava/lang/String;Ljava/lang/String;)V m_278642_ + 0 o p_279348_ + 1 o p_279305_ + 2 o p_279177_ +fjg$a net/minecraft/client/quickplay/QuickPlayLog$QuickPlayEntry + a f_278431_ + b f_278426_ + c f_278512_ + d f_278456_ + ()V + static + (Lfjg$b;Ljava/time/Instant;Lcmj;)V + 0 o f_278426_ + 1 o f_278512_ + 2 o f_278456_ + a ()Lfjg$b; f_278426_ + a (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; m_278695_ + static + 0 o p_279196_ + b ()Ljava/time/Instant; f_278512_ + c ()Lcmj; f_278456_ + equals (Ljava/lang/Object;)Z equals + 0 o p_279480_ + hashCode ()I hashCode + toString ()Ljava/lang/String; toString +fjg$b net/minecraft/client/quickplay/QuickPlayLog$QuickPlayWorld + a f_278511_ + b f_278464_ + c f_278460_ + d f_278469_ + ()V + static + (Lfjg$c;Ljava/lang/String;Ljava/lang/String;)V + 0 o f_278464_ + 1 o f_278460_ + 2 o f_278469_ + a ()Lfjg$c; f_278464_ + a (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; m_278843_ + static + 0 o p_279181_ + b ()Ljava/lang/String; f_278460_ + c ()Ljava/lang/String; f_278469_ + equals (Ljava/lang/Object;)Z equals + 0 o p_279171_ + hashCode ()I hashCode + toString ()Ljava/lang/String; toString +fjg$c net/minecraft/client/quickplay/QuickPlayLog$Type + a SINGLEPLAYER + b MULTIPLAYER + c REALMS + d f_278494_ + e f_278427_ + f $VALUES + ()V + static + (Ljava/lang/String;ILjava/lang/String;)V + 0 o p_279214_ + 1 o p_279216_ + 2 o p_279349_ + a ()[Lfjg$c; m_278856_ + static + c ()Ljava/lang/String; m_7912_ + valueOf (Ljava/lang/String;)Lfjg$c; valueOf + static + 0 o p_279142_ + values ()[Lfjg$c; values + static +fjh net/minecraft/client/quickplay/package-info +fji net/minecraft/client/renderer/BiomeColors + a f_108789_ + b f_108790_ + c f_108791_ + ()V + static + ()V + a (Lclp;Lgu;Lclx;)I m_108796_ + static + 0 o p_108797_ + 1 o p_108798_ + 2 o p_108799_ + a (Lcnk;DD)I m_108800_ + static + 0 o p_108801_ + 1 o p_108802_ + 2 o p_108803_ + a (Lclp;Lgu;)I m_108793_ + static + 0 o p_108794_ + 1 o p_108795_ + b (Lclp;Lgu;)I m_108804_ + static + 0 o p_108805_ + 1 o p_108806_ + b (Lcnk;DD)I m_108807_ + static + 0 o p_108808_ + 1 o p_108809_ + 2 o p_108810_ + c (Lclp;Lgu;)I m_108811_ + static + 0 o p_108812_ + 1 o p_108813_ +fjj net/minecraft/client/renderer/BlockEntityWithoutLevelRenderer + a f_108815_ + b f_108816_ + c f_108817_ + d f_108818_ + e f_108819_ + f f_108820_ + g f_108821_ + h f_108822_ + i f_271254_ + j f_108823_ + k f_108824_ + l f_172546_ + m f_172547_ + n f_172548_ + ()V + static + (Lflt;Lfea;)V + 0 o p_172550_ + 1 o p_172551_ + a (Lcen;)Ldau; m_172556_ + static + 0 o p_172557_ + a (Lcfz;Lcfw;Leij;Lfjx;II)V m_108829_ + 0 o p_108830_ + 1 o p_270899_ + 2 o p_108832_ + 3 o p_108833_ + 4 o p_108834_ + 5 o p_108835_ + a (Lakx;)V m_6213_ + 0 o p_172555_ + a (I)[Ldau; m_172552_ + static + 0 o p_172553_ + a (Lqr;Lcom/mojang/authlib/GameProfile;)V m_172558_ + static + 0 o p_172559_ + 1 o p_172560_ +fjk net/minecraft/client/renderer/ChunkBufferBuilderPack + a f_108836_ + ()V + a ()V m_108838_ + a (Lfkf;)Leie; m_108839_ + 0 o p_108840_ + b (Lfkf;)Leie; m_108842_ + static + 0 o p_108843_ + b ()V m_108841_ + c (Lfkf;)Lfkf; m_108844_ + static + 0 o p_108845_ +fjl net/minecraft/client/renderer/CubeMap + a f_172561_ + b f_108846_ + (Lacq;)V + 0 o p_108848_ + a (Lenn;FFF)V m_108849_ + 0 o p_108850_ + 1 o p_108851_ + 2 o p_108852_ + 3 o p_108853_ + a (Lfuw;Ljava/util/concurrent/Executor;)Ljava/util/concurrent/CompletableFuture; m_108854_ + 0 o p_108855_ + 1 o p_108856_ +fjm net/minecraft/client/renderer/DimensionSpecialEffects + a f_108857_ + b f_108858_ + c f_108859_ + d f_108860_ + e f_108861_ + f f_108862_ + g f_108863_ + ()V + static + (FZLfjm$d;ZZ)V + 0 o p_108866_ + 1 o p_108867_ + 2 o p_108868_ + 3 o p_108869_ + 4 o p_108870_ + a (FF)[F m_7518_ + 0 o p_108872_ + 1 o p_108873_ + a (II)Z m_5781_ + 0 o p_108874_ + 1 o p_108875_ + a (Leei;F)Leei; m_5927_ + 0 o p_108878_ + 1 o p_108879_ + a ()F m_108871_ + a (Lit/unimi/dsi/fastutil/objects/Object2ObjectArrayMap;)V m_108880_ + static + 0 o p_108881_ + a (Ldfk;)Lfjm; m_108876_ + static + 0 o p_108877_ + b ()Z m_108882_ + c ()Lfjm$d; m_108883_ + d ()Z m_108884_ + e ()Z m_108885_ +fjm$a net/minecraft/client/renderer/DimensionSpecialEffects$EndEffects + ()V + a (II)Z m_5781_ + 0 o p_108891_ + 1 o p_108892_ + a (FF)[F m_7518_ + 0 o p_108888_ + 1 o p_108889_ + a (Leei;F)Leei; m_5927_ + 0 o p_108894_ + 1 o p_108895_ +fjm$b net/minecraft/client/renderer/DimensionSpecialEffects$NetherEffects + ()V + a (II)Z m_5781_ + 0 o p_108898_ + 1 o p_108899_ + a (Leei;F)Leei; m_5927_ + 0 o p_108901_ + 1 o p_108902_ +fjm$c net/minecraft/client/renderer/DimensionSpecialEffects$OverworldEffects + a f_172562_ + ()V + a (II)Z m_5781_ + 0 o p_108905_ + 1 o p_108906_ + a (Leei;F)Leei; m_5927_ + 0 o p_108908_ + 1 o p_108909_ +fjm$d net/minecraft/client/renderer/DimensionSpecialEffects$SkyType + a NONE + b NORMAL + c END + d $VALUES + ()V + static + (Ljava/lang/String;I)V + 0 o p_108916_ + 1 o p_108917_ + a ()[Lfjm$d; m_172563_ + static + valueOf (Ljava/lang/String;)Lfjm$d; valueOf + static + 0 o p_108919_ + values ()[Lfjm$d; values + static +fjn net/minecraft/client/renderer/EffectInstance + a f_172564_ + b f_108921_ + c f_108922_ + d f_172565_ + e f_108923_ + f f_108924_ + g f_108925_ + h f_108926_ + i f_108927_ + j f_108928_ + k f_108929_ + l f_108930_ + m f_108931_ + n f_108932_ + o f_108933_ + p f_108934_ + q f_108935_ + r f_108936_ + s f_108937_ + t f_108938_ + ()V + static + (Lakx;Ljava/lang/String;)V + 0 o p_108941_ + 1 o p_108942_ + a (Lcom/google/gson/JsonObject;)Leht; m_108950_ + static + 0 o p_108951_ + a (Ljava/lang/String;Ljava/util/function/IntSupplier;)V m_108954_ + 0 o p_108955_ + 1 o p_108956_ + a (Ljava/lang/String;)Leia; m_108952_ + 0 o p_108953_ + a (Lakx;Lehx$a;Ljava/lang/String;)Lehv; m_172566_ + static + 0 o p_172567_ + 1 o p_172568_ + 2 o p_172569_ + a ()I m_108943_ + a (Lcom/google/gson/JsonElement;)V m_108948_ + 0 o p_108949_ + b (Ljava/lang/String;)Lehs; m_108960_ + 0 o p_108961_ + b (Lcom/google/gson/JsonElement;)V m_108958_ + 0 o p_108959_ + b ()V m_108957_ + c ()Lehx; m_108962_ + close ()V close + d ()Lehx; m_108964_ + e ()V m_142662_ + f ()V m_108965_ + g ()V m_108966_ + h ()Ljava/lang/String; m_172571_ + i ()V m_108967_ +fjo net/minecraft/client/renderer/FaceInfo + a DOWN + b UP + c NORTH + d SOUTH + e WEST + f EAST + g f_108974_ + h f_108975_ + i $VALUES + ()V + static + (Ljava/lang/String;I[Lfjo$b;)V + 0 o p_108979_ + 1 o p_108980_ + 2 o p_108981_ + a (I)Lfjo$b; m_108982_ + 0 o p_108983_ + a ([Lfjo;)V m_108986_ + static + 0 o p_108987_ + a ()[Lfjo; m_172572_ + static + a (Lha;)Lfjo; m_108984_ + static + 0 o p_108985_ + valueOf (Ljava/lang/String;)Lfjo; valueOf + static + 0 o p_108989_ + values ()[Lfjo; values + static +fjo$a net/minecraft/client/renderer/FaceInfo$Constants + a f_108991_ + b f_108992_ + c f_108993_ + d f_108994_ + e f_108995_ + f f_108996_ + ()V + static + ()V +fjo$b net/minecraft/client/renderer/FaceInfo$VertexInfo + a f_108998_ + b f_108999_ + c f_109000_ + (III)V + 0 o p_109002_ + 1 o p_109003_ + 2 o p_109004_ +fjp net/minecraft/client/renderer/FogRenderer + a f_172574_ + b f_172575_ + c f_234164_ + d f_109010_ + e f_109011_ + f f_109012_ + g f_109013_ + h f_109014_ + i f_109015_ + ()V + static + ()V + a (Lbfj;F)Lfjp$e; m_234165_ + static + 0 o p_234166_ + 1 o p_234167_ + a (Lemz;Lfjp$d;FZF)V m_234172_ + static + 0 o p_234173_ + 1 o p_234174_ + 2 o p_234175_ + 3 o p_234176_ + 4 o p_234177_ + a (Lemz;FLfew;IF)V m_109018_ + static + 0 o p_109019_ + 1 o p_109020_ + 2 o p_109021_ + 3 o p_109022_ + 4 o p_109023_ + a ()V m_109017_ + static + a (Lfew;Lcnm;FIII)Leei; m_109029_ + static + 0 o p_109030_ + 1 o p_109031_ + 2 o p_109032_ + 3 o p_109033_ + 4 o p_109034_ + 5 o p_109035_ + a (Lbfz;FLfjp$e;)Z m_234168_ + static + 0 o p_234169_ + 1 o p_234170_ + 2 o p_234171_ + b ()V m_109036_ + static +fjp$a net/minecraft/client/renderer/FogRenderer$BlindnessFogFunction + ()V + a ()Lbey; m_213948_ + a (Lfjp$c;Lbfz;Lbfa;FF)V m_213725_ + 0 o p_234181_ + 1 o p_234182_ + 2 o p_234183_ + 3 o p_234184_ + 4 o p_234185_ +fjp$b net/minecraft/client/renderer/FogRenderer$DarknessFogFunction + ()V + a ()Lbey; m_213948_ + a (Lfjp$c;Lbfz;Lbfa;FF)V m_213725_ + 0 o p_234194_ + 1 o p_234195_ + 2 o p_234196_ + 3 o p_234197_ + 4 o p_234198_ + a (Lbfz;Lbfa;FF)F m_213936_ + 0 o p_234189_ + 1 o p_234190_ + 2 o p_234191_ + 3 o p_234192_ +fjp$c net/minecraft/client/renderer/FogRenderer$FogData + a f_234199_ + b f_234200_ + c f_234201_ + d f_234202_ + (Lfjp$d;)V + 0 o p_234204_ +fjp$d net/minecraft/client/renderer/FogRenderer$FogMode + a FOG_SKY + b FOG_TERRAIN + c $VALUES + ()V + static + (Ljava/lang/String;I)V + 0 o p_109042_ + 1 o p_109043_ + a ()[Lfjp$d; m_172577_ + static + valueOf (Ljava/lang/String;)Lfjp$d; valueOf + static + 0 o p_109045_ + values ()[Lfjp$d; values + static +fjp$e net/minecraft/client/renderer/FogRenderer$MobEffectFogFunction + a ()Lbey; m_213948_ + a (Lfjp$c;Lbfz;Lbfa;FF)V m_213725_ + 0 o p_234212_ + 1 o p_234213_ + 2 o p_234214_ + 3 o p_234215_ + 4 o p_234216_ + a (Lbfz;Lbfa;FF)F m_213936_ + 0 o p_234208_ + 1 o p_234209_ + 2 o p_234210_ + 3 o p_234211_ + a (Lbfz;F)Z m_234205_ + 0 o p_234206_ + 1 o p_234207_ +fjq net/minecraft/client/renderer/GameRenderer + A f_109075_ + B f_109076_ + C f_109077_ + D f_109078_ + E f_109079_ + F f_109080_ + G f_109047_ + H f_109048_ + I f_109049_ + J f_109050_ + K f_109051_ + L f_109052_ + M f_109053_ + N f_109054_ + O f_172578_ + P f_172579_ + Q f_172580_ + R f_172581_ + S f_172582_ + T f_172583_ + U f_172586_ + V f_172587_ + W f_172588_ + X f_172589_ + Y f_172590_ + Z f_172591_ + a f_172592_ + aA f_172633_ + aB f_172593_ + aC f_172594_ + aD f_172595_ + aE f_172596_ + aF f_172597_ + aG f_172598_ + aH f_268423_ + aI f_172599_ + aJ f_172600_ + aK f_268525_ + aL f_172601_ + aM f_172602_ + aN f_172603_ + aO f_172604_ + aP f_172605_ + aQ f_172606_ + aR f_172607_ + aS f_285653_ + aT f_285598_ + aU f_285623_ + aV f_285569_ + aa f_172608_ + ab f_172609_ + ac f_172610_ + ad f_172611_ + ae f_172612_ + af f_172613_ + ag f_172614_ + ah f_172615_ + ai f_172616_ + aj f_172617_ + ak f_172618_ + al f_172619_ + am f_172620_ + an f_234217_ + ao f_172621_ + ap f_172622_ + aq f_172623_ + ar f_172624_ + as f_172625_ + at f_172626_ + au f_172627_ + av f_172628_ + aw f_172629_ + ax f_172630_ + ay f_172631_ + az f_172632_ + b f_109055_ + c f_172634_ + d f_109056_ + e f_172635_ + f f_109057_ + g f_109058_ + h f_172636_ + i f_289032_ + j f_109059_ + k f_109060_ + l f_109061_ + m f_109062_ + n f_109063_ + o f_109064_ + p f_109065_ + q f_109066_ + r f_109067_ + s f_109068_ + t f_109069_ + u f_109070_ + v f_109071_ + w f_109072_ + x f_182638_ + y f_109073_ + z f_109074_ + ()V + static + (Lenn;Lfjt;Lakx;Lfkd;)V + 0 o p_234219_ + 1 o p_234220_ + 2 o p_234221_ + 3 o p_234222_ + A (Lfki;)V m_172821_ + static + 0 o p_172822_ + A ()Lfki; m_172643_ + static + B (Lfki;)V m_172824_ + static + 0 o p_172825_ + B ()Lfki; m_172646_ + static + C ()Lfki; m_172649_ + static + C (Lfki;)V m_172827_ + static + 0 o p_172828_ + D ()Lfki; m_172652_ + static + D (Lfki;)V m_172830_ + static + 0 o p_172831_ + E (Lfki;)V m_172833_ + static + 0 o p_172834_ + E ()Lfki; m_172655_ + static + F (Lfki;)V m_172836_ + static + 0 o p_172837_ + F ()Lfki; m_172658_ + static + G (Lfki;)V m_172839_ + static + 0 o p_172840_ + G ()Lfki; m_172661_ + static + H (Lfki;)V m_172638_ + static + 0 o p_172639_ + H ()Lfki; m_172664_ + static + I (Lfki;)V m_172641_ + static + 0 o p_172642_ + I ()Lfki; m_172667_ + static + J (Lfki;)V m_172644_ + static + 0 o p_172645_ + J ()Lfki; m_172670_ + static + K (Lfki;)V m_172647_ + static + 0 o p_172648_ + K ()Lfki; m_172673_ + static + L (Lfki;)V m_172650_ + static + 0 o p_172651_ + L ()Lfki; m_172676_ + static + M (Lfki;)V m_172653_ + static + 0 o p_172654_ + M ()Lfki; m_172679_ + static + N ()Lfki; m_234223_ + static + N (Lfki;)V m_172656_ + static + 0 o p_172657_ + O (Lfki;)V m_172659_ + static + 0 o p_172660_ + O ()Lfki; m_172682_ + static + P (Lfki;)V m_172662_ + static + 0 o p_172663_ + P ()Lfki; m_172685_ + static + Q (Lfki;)V m_172665_ + static + 0 o p_172666_ + Q ()Lfki; m_172688_ + static + R ()Lfki; m_172691_ + static + R (Lfki;)V m_172668_ + static + 0 o p_172669_ + S (Lfki;)V m_172671_ + static + 0 o p_172672_ + S ()Lfki; m_172694_ + static + T (Lfki;)V m_172674_ + static + 0 o p_172675_ + T ()Lfki; m_172697_ + static + U (Lfki;)V m_172677_ + static + 0 o p_172678_ + U ()Lfki; m_172700_ + static + V ()Lfki; m_172703_ + static + V (Lfki;)V m_172680_ + static + 0 o p_172681_ + W (Lfki;)V m_172683_ + static + 0 o p_172684_ + W ()Lfki; m_172706_ + static + X (Lfki;)V m_172686_ + static + 0 o p_172687_ + X ()Lfki; m_172709_ + static + Y ()Lfki; m_172712_ + static + Y (Lfki;)V m_172689_ + static + 0 o p_172690_ + Z (Lfki;)V m_172692_ + static + 0 o p_172693_ + Z ()Lfki; m_172738_ + static + a (II)V m_109097_ + 0 o p_109098_ + 1 o p_109099_ + a (Leij;F)V m_109117_ + 0 o p_109118_ + 1 o p_109119_ + a (Lfki;)V m_285676_ + static + 0 o p_286147_ + a (FJZ)V m_109093_ + 0 o p_109094_ + 1 o p_109095_ + 2 o p_109096_ + a (Lorg/joml/Matrix4f;)V m_252879_ + 0 o p_253668_ + a (Ljava/lang/String;)Lfki; m_172734_ + 0 o p_172735_ + a (Leij;Lemz;F)V m_109120_ + 0 o p_109121_ + 1 o p_109122_ + 2 o p_109123_ + a (Lcfz;)V m_109113_ + 0 o p_109114_ + a ()Z m_172715_ + a (Lala;Ljava/lang/String;Leio;)Lfki; m_172724_ + 0 o p_172725_ + 1 o p_172726_ + 2 o p_172727_ + a (FJLeij;)V m_109089_ + 0 o p_109090_ + 1 o p_109091_ + 2 o p_109092_ + a (Lbfj;)V m_109106_ + 0 o p_109107_ + a (Leox;F)V m_280083_ + 0 o p_282460_ + 1 o p_282656_ + a (Z)V m_172736_ + 0 o p_172737_ + a (Ljava/nio/file/Path;)V m_182642_ + 0 o p_182643_ + a (Lemz;FZ)D m_109141_ + 0 o p_109142_ + 1 o p_109143_ + 2 o p_109144_ + a (F)V m_109087_ + 0 o p_109088_ + a (FFF)V m_172718_ + 0 o p_172719_ + 1 o p_172720_ + 2 o p_172721_ + a (IIF)V m_109100_ + 0 o p_109101_ + 1 o p_109102_ + 2 o p_109103_ + a (Lcom/mojang/datafixers/util/Pair;)V m_234224_ + 0 o p_234225_ + a (D)Lorg/joml/Matrix4f; m_253088_ + 0 o p_254507_ + a (Lbfz;F)F m_109108_ + static + 0 o p_109109_ + 1 o p_109110_ + a (Lehk;Ljava/nio/file/Path;)V m_234226_ + static + 0 o p_234227_ + 1 o p_234228_ + a (Lala;)V m_172722_ + 0 o p_172723_ + a (Lacq;)V m_109128_ + 0 o p_109129_ + aA ()Ljava/lang/String; m_234231_ + aB ()Ljava/lang/String; m_172760_ + aC ()Ljava/lang/String; m_234232_ + aD ()Ljava/lang/String; m_172762_ + aa (Lfki;)V m_172695_ + static + 0 o p_172696_ + aa ()Lfki; m_172741_ + static + ab ()Lfki; m_172744_ + static + ab (Lfki;)V m_172698_ + static + 0 o p_172699_ + ac ()Lfki; m_172745_ + static + ac (Lfki;)V m_172701_ + static + 0 o p_172702_ + ad (Lfki;)V m_172704_ + static + 0 o p_172705_ + ad ()Lfki; m_172746_ + static + ae (Lfki;)V m_172707_ + static + 0 o p_172708_ + ae ()Lfki; m_172747_ + static + af ()Lfki; m_172748_ + static + af (Lfki;)V m_172710_ + static + 0 o p_172711_ + ag (Lfki;)V m_172713_ + static + 0 o p_172714_ + ag ()Lfki; m_172749_ + static + ah ()Lfki; m_269563_ + static + ai ()Lfki; m_172750_ + static + aj ()Lfki; m_172751_ + static + ak ()Lfki; m_269511_ + static + al ()Lfki; m_172752_ + static + am ()Lfki; m_172753_ + static + an ()Lfki; m_172754_ + static + ao ()Lfki; m_172755_ + static + ap ()Lfki; m_172756_ + static + aq ()Lfki; m_172757_ + static + ar ()Lfki; m_172758_ + static + as ()Lfki; m_285858_ + static + at ()Lfki; m_285975_ + static + au ()Lfki; m_285738_ + static + av ()Lfki; m_285862_ + static + aw ()V m_172759_ + ax ()V m_109156_ + ay ()V m_182644_ + az ()Z m_109158_ + b (Z)V m_172775_ + 0 o p_172776_ + b (Lbfj;)Z m_234236_ + static + 0 o p_234237_ + b (F)F m_109131_ + 0 o p_109132_ + b (Lfki;)V m_285674_ + static + 0 o p_286145_ + b (Ljava/nio/file/Path;)V m_234238_ + 0 o p_234239_ + b (Lala;)V m_172767_ + 0 o p_250719_ + b (II)Ljava/lang/String; m_234233_ + 0 o p_234234_ + 1 o p_234235_ + b (Lcom/mojang/datafixers/util/Pair;)V m_172728_ + static + 0 o p_172729_ + b (Leij;F)V m_109138_ + 0 o p_109139_ + 1 o p_109140_ + b ()V m_109086_ + c ()V m_109130_ + c (Z)V m_172779_ + 0 o p_172780_ + c (Lfki;)V m_285675_ + static + 0 o p_286146_ + close ()V close + d ()V m_172783_ + d (Lfki;)V m_285677_ + static + 0 o p_286148_ + e (Lfki;)V m_234229_ + static + 0 o p_234230_ + e ()Lakr; m_247116_ + f ()V m_109148_ + f (Lfki;)V m_172732_ + static + 0 o p_172733_ + g (Lfki;)V m_172773_ + static + 0 o p_172774_ + g ()Lfka; m_109149_ + h ()F m_172790_ + h (Lfki;)V m_172777_ + static + 0 o p_172778_ + i (Lfki;)V m_172781_ + static + 0 o p_172782_ + i ()V m_109150_ + j (Lfki;)V m_172784_ + static + 0 o p_172785_ + j ()Leoy; m_109151_ + k ()Lenn; m_172797_ + k (Lfki;)V m_172786_ + static + 0 o p_172787_ + l (Lfki;)V m_268792_ + static + 0 o p_269656_ + l ()F m_109152_ + m (Lfki;)V m_172788_ + static + 0 o p_172789_ + m ()Lemz; m_109153_ + n ()Lfjw; m_109154_ + n (Lfki;)V m_172791_ + static + 0 o p_172792_ + o (Lfki;)V m_268793_ + static + 0 o p_269657_ + o ()Lfum; m_109155_ + p (Lfki;)V m_172793_ + static + 0 o p_172794_ + p ()Lfki; m_172808_ + static + q ()Lfki; m_172811_ + static + q (Lfki;)V m_172795_ + static + 0 o p_172796_ + r ()Lfki; m_172814_ + static + r (Lfki;)V m_172798_ + static + 0 o p_172799_ + s (Lfki;)V m_172800_ + static + 0 o p_172801_ + s ()Lfki; m_172817_ + static + t (Lfki;)V m_172802_ + static + 0 o p_172803_ + t ()Lfki; m_172820_ + static + u (Lfki;)V m_172804_ + static + 0 o p_172805_ + u ()Lfki; m_172829_ + static + v ()Lfki; m_172832_ + static + v (Lfki;)V m_172806_ + static + 0 o p_172807_ + w (Lfki;)V m_172809_ + static + 0 o p_172810_ + w ()Lfki; m_172835_ + static + x (Lfki;)V m_172812_ + static + 0 o p_172813_ + x ()Lfki; m_172838_ + static + y ()Lfki; m_172637_ + static + y (Lfki;)V m_172815_ + static + 0 o p_172816_ + z ()Lfki; m_172640_ + static + z (Lfki;)V m_172818_ + static + 0 o p_172819_ +fjq$1 net/minecraft/client/renderer/GameRenderer$1 + a f_244403_ + (Lfjq;)V + 0 o p_251822_ + a (Lfjq$a;Lakx;Lban;)V m_5787_ + 0 o p_251168_ + 1 o p_248902_ + 2 o p_251909_ + a (Ljava/lang/Object;Lakx;Lban;)V m_5787_ + 0 o p_249816_ + 1 o p_250183_ + 2 o p_251827_ + a (Ljava/util/Map;Lacq;Lakv;)V m_245944_ + static + 0 o p_252037_ + 1 o p_250354_ + 2 o p_250712_ + a (Lacq;)Z m_246544_ + static + 0 o p_251575_ + a ([B)Ljava/io/InputStream; m_246929_ + static + 0 o p_251362_ + a (Lakx;Lban;)Lfjq$a; m_5944_ + 0 o p_251213_ + 1 o p_251006_ + b (Lakx;Lban;)Ljava/lang/Object; m_5944_ + 0 o p_250788_ + 1 o p_252240_ + c ()Ljava/lang/String; m_7812_ +fjq$a net/minecraft/client/renderer/GameRenderer$ResourceCache + a f_244315_ + b f_243825_ + (Lala;Ljava/util/Map;)V + 0 o f_244315_ + 1 o f_243825_ + a ()Lala; f_244315_ + b ()Ljava/util/Map; f_243825_ + equals (Ljava/lang/Object;)Z equals + 0 o p_249329_ + getResource (Lacq;)Ljava/util/Optional; m_213713_ + 0 o p_251007_ + hashCode ()I hashCode + toString ()Ljava/lang/String; toString +fjr net/minecraft/client/renderer/GpuWarnlistManager + a f_109210_ + b f_109211_ + c f_109212_ + d f_109213_ + e f_109214_ + f f_109215_ + ()V + static + ()V + a (Lfjr$a;Lakx;Lban;)V m_5787_ + 0 o p_109226_ + 1 o p_109227_ + 2 o p_109228_ + a (Lcom/google/gson/JsonArray;Ljava/util/List;)V m_109222_ + static + 0 o p_109223_ + 1 o p_109224_ + a (Lakx;Lban;)Lfjr$a; m_5944_ + 0 o p_109220_ + 1 o p_109221_ + a ()Z m_109218_ + a (Ljava/lang/Object;Lakx;Lban;)V m_5787_ + 0 o p_109230_ + 1 o p_109231_ + 2 o p_109232_ + a (Ljava/lang/StringBuilder;Ljava/lang/String;Ljava/lang/String;)V m_109233_ + static + 0 o p_109234_ + 1 o p_109235_ + 2 o p_109236_ + a (Ljava/util/List;Lcom/google/gson/JsonElement;)V m_109237_ + static + 0 o p_109238_ + 1 o p_109239_ + b (Lakx;Lban;)Ljava/lang/Object; m_5944_ + 0 o p_109242_ + 1 o p_109243_ + b ()Z m_109240_ + c (Lakx;Lban;)Lcom/google/gson/JsonObject; m_109244_ + static + 0 o p_109245_ + 1 o p_109246_ + d ()V m_109247_ + e ()V m_109248_ + f ()V m_109249_ + g ()Z m_109250_ + h ()Z m_109251_ + i ()V m_109252_ + j ()Ljava/lang/String; m_109253_ + k ()Ljava/lang/String; m_109254_ + l ()Ljava/lang/String; m_109255_ + m ()Ljava/lang/String; m_109256_ +fjr$a net/minecraft/client/renderer/GpuWarnlistManager$Preparations + a f_109257_ + b f_109258_ + c f_109259_ + (Ljava/util/List;Ljava/util/List;Ljava/util/List;)V + 0 o p_109261_ + 1 o p_109262_ + 2 o p_109263_ + a ()Lcom/google/common/collect/ImmutableMap; m_109269_ + a (Ljava/util/List;Ljava/lang/String;)Ljava/lang/String; m_109272_ + static + 0 o p_109273_ + 1 o p_109274_ +fjs net/minecraft/client/renderer/ItemBlockRenderTypes + a f_109275_ + b f_109276_ + c f_109277_ + ()V + static + ()V + a (Ldcb;Z)Lfkf; m_109284_ + static + 0 o p_109285_ + 1 o p_109286_ + a (Ldxe;)Lfkf; m_109287_ + static + 0 o p_109288_ + a (Ldcb;)Lfkf; m_109282_ + static + 0 o p_109283_ + a (Lcfz;Z)Lfkf; m_109279_ + static + 0 o p_109280_ + 1 o p_109281_ + a (Ljava/util/HashMap;)V m_109289_ + static + 0 o p_109290_ + a (Z)V m_109291_ + static + 0 o p_109292_ + b (Ldcb;)Lfkf; m_109293_ + static + 0 o p_109294_ + b (Ljava/util/HashMap;)V m_276704_ + static + 0 o p_277225_ +fjt net/minecraft/client/renderer/ItemInHandRenderer + A f_172842_ + B f_172843_ + C f_172844_ + D f_172845_ + E f_172846_ + F f_172847_ + G f_172848_ + H f_172849_ + I f_172850_ + J f_172851_ + K f_172852_ + L f_172853_ + M f_172854_ + N f_172855_ + O f_172856_ + P f_172857_ + Q f_172858_ + R f_172859_ + S f_172860_ + T f_172861_ + U f_172862_ + V f_172863_ + W f_172864_ + X f_172865_ + Y f_172866_ + Z f_172867_ + a f_109297_ + aA f_109305_ + aB f_109306_ + aC f_109307_ + aa f_172868_ + ab f_172869_ + ac f_172870_ + ad f_172871_ + ae f_172872_ + af f_172873_ + ag f_172874_ + ah f_172875_ + ai f_172876_ + aj f_172877_ + ak f_172878_ + al f_172879_ + am f_172880_ + an f_172881_ + ao f_172882_ + ap f_172883_ + aq f_172884_ + ar f_172885_ + as f_172886_ + at f_172887_ + au f_109299_ + av f_109300_ + aw f_109301_ + ax f_109302_ + ay f_109303_ + az f_109304_ + b f_109298_ + c f_172888_ + d f_172889_ + e f_172890_ + f f_172891_ + g f_172892_ + h f_172893_ + i f_172894_ + j f_172895_ + k f_172896_ + l f_172897_ + m f_172898_ + n f_172899_ + o f_172900_ + p f_172901_ + q f_172902_ + r f_172903_ + s f_172904_ + t f_172905_ + u f_172906_ + v f_172907_ + w f_172908_ + x f_172909_ + y f_172910_ + z f_172911_ + ()V + static + (Lenn;Lfow;Lfpw;)V + 0 o p_234241_ + 1 o p_234242_ + 2 o p_234243_ + a (Lbfz;Lcfz;Lcfw;ZLeij;Lfjx;I)V m_269530_ + 0 o p_270072_ + 1 o p_270793_ + 2 o p_270837_ + 3 o p_270203_ + 4 o p_270974_ + 5 o p_270686_ + 6 o p_270103_ + a (Leij;Lfjx;IFFF)V m_109339_ + 0 o p_109340_ + 1 o p_109341_ + 2 o p_109342_ + 3 o p_109343_ + 4 o p_109344_ + 5 o p_109345_ + a (Leij;FLbft;Lcfz;)V m_109330_ + 0 o p_109331_ + 1 o p_109332_ + 2 o p_109333_ + 3 o p_109334_ + a (Lcfz;)Z m_172912_ + static + 0 o p_172913_ + a (Leij;Lfjx;IFFLbft;)V m_109346_ + 0 o p_109347_ + 1 o p_109348_ + 2 o p_109349_ + 3 o p_109350_ + 4 o p_109351_ + 5 o p_109352_ + a (Lfiv;FFLbdw;FLcfz;FLeij;Lfjx;I)V m_109371_ + 0 o p_109372_ + 1 o p_109373_ + 2 o p_109374_ + 3 o p_109375_ + 4 o p_109376_ + 5 o p_109377_ + 6 o p_109378_ + 7 o p_109379_ + 8 o p_109380_ + 9 o p_109381_ + a (Leij;FLbft;Lcfz;F)V m_271982_ + 0 o p_273513_ + 1 o p_273245_ + 2 o p_273726_ + 3 o p_272809_ + 4 o p_273333_ + a (Lbdw;)V m_109320_ + 0 o p_109321_ + a (Leij;Lfjx;ILbft;)V m_109361_ + 0 o p_109362_ + 1 o p_109363_ + 2 o p_109364_ + 3 o p_109365_ + a (F)F m_109312_ + 0 o p_109313_ + a ()V m_109311_ + a (Leij;Lfjx;ILcfz;)V m_109366_ + 0 o p_109367_ + 1 o p_109368_ + 2 o p_109369_ + 3 o p_109370_ + a (FLeij;Lfjx$a;Lfiy;I)V m_109314_ + 0 o p_109315_ + 1 o p_109316_ + 2 o p_109317_ + 3 o p_109318_ + 4 o p_109319_ + a (Leij;Lbft;F)V m_109335_ + 0 o p_109336_ + 1 o p_109337_ + 2 o p_109338_ + a (Lfiy;)Lfjt$a; m_172914_ + static + 0 o p_172915_ + a (Leij;Lfjx;IFLbft;FLcfz;)V m_109353_ + 0 o p_109354_ + 1 o p_109355_ + 2 o p_109356_ + 3 o p_109357_ + 4 o p_109358_ + 5 o p_109359_ + 6 o p_109360_ + b (Leij;Lbft;F)V m_109382_ + 0 o p_109383_ + 1 o p_109384_ + 2 o p_109385_ + b (Lfiy;)Lfjt$a; m_172916_ + static + 0 o p_172917_ +fjt$1 net/minecraft/client/renderer/ItemInHandRenderer$1 + a f_109386_ + ()V + static +fjt$a net/minecraft/client/renderer/ItemInHandRenderer$HandRenderSelection + a RENDER_BOTH_HANDS + b RENDER_MAIN_HAND_ONLY + c RENDER_OFF_HAND_ONLY + d f_172921_ + e f_172922_ + f $VALUES + ()V + static + (Ljava/lang/String;IZZ)V + 0 o p_172926_ + 1 o p_172927_ + 2 o p_172928_ + 3 o p_172929_ + a ()[Lfjt$a; m_172930_ + static + a (Lbdw;)Lfjt$a; m_172931_ + static + 0 o p_172932_ + valueOf (Ljava/lang/String;)Lfjt$a; valueOf + static + 0 o p_172934_ + values ()[Lfjt$a; values + static +fju net/minecraft/client/renderer/ItemModelShaper + a f_109388_ + b f_109389_ + c f_109390_ + (Lfwx;)V + 0 o p_109392_ + a (Lcfu;Lfwy;)V m_109396_ + 0 o p_109397_ + 1 o p_109398_ + a (Lcfz;)Lfwr; m_109406_ + 0 o p_109407_ + a (Lcfu;)Lfwr; m_109394_ + 0 o p_109395_ + a ()Lfwx; m_109393_ + b (Lcfu;)I m_109404_ + static + 0 o p_109405_ + b ()V m_109403_ +fjv net/minecraft/client/renderer/LevelRenderer + A f_194297_ + B f_109468_ + C f_194298_ + D f_109469_ + E f_109471_ + F f_109472_ + G f_109473_ + H f_109474_ + I f_109475_ + J f_109476_ + K f_109477_ + L f_109408_ + M f_109409_ + N f_109410_ + O f_109411_ + P f_109412_ + Q f_109413_ + R f_109414_ + S f_109415_ + T f_109416_ + U f_109417_ + V f_109418_ + W f_109419_ + X f_109420_ + Y f_109421_ + Z f_109422_ + a f_172937_ + aA f_194299_ + aB f_109450_ + aC f_109451_ + aD f_109452_ + aa f_109423_ + ab f_109424_ + ac f_109425_ + ad f_109426_ + ae f_109427_ + af f_109428_ + ag f_109429_ + ah f_109430_ + ai f_109431_ + aj f_109432_ + ak f_109433_ + al f_109435_ + am f_109436_ + an f_109438_ + ao f_109439_ + ap f_109440_ + aq f_172938_ + ar f_109441_ + as f_109442_ + at f_109443_ + au f_109444_ + av f_109445_ + aw f_109446_ + ax f_109447_ + ay f_194300_ + az f_194301_ + b f_109434_ + c f_109453_ + d f_194302_ + e f_172941_ + f f_194303_ + g f_194304_ + h f_172942_ + i f_172943_ + j f_172944_ + k f_172945_ + l f_194305_ + m f_109454_ + n f_109455_ + o f_109456_ + p f_109457_ + q f_109458_ + r f_109459_ + s f_109460_ + t f_109461_ + u f_109463_ + v f_172946_ + w f_109464_ + x f_109465_ + y f_194306_ + z f_194307_ + ()V + static + (Lenn;Lfow;Lflt;Lfkd;)V + 0 o p_234245_ + 1 o p_234246_ + 2 o p_234247_ + 3 o p_234248_ + A ()V m_109835_ + B ()V m_109836_ + C ()V m_109837_ + a (IIIZ)V m_109501_ + 0 o p_109502_ + 1 o p_109503_ + 2 o p_109504_ + 3 o p_109505_ + a (Z)Lens; m_109767_ + 0 o p_109768_ + a (Lfmw;)V m_194354_ + 0 o p_194355_ + a (II)V m_109487_ + 0 o p_109488_ + 1 o p_109489_ + a (Lfjw;FDDD)V m_109703_ + 0 o p_109704_ + 1 o p_109705_ + 2 o p_109706_ + 3 o p_109707_ + 4 o p_109708_ + a (III)V m_109490_ + 0 o p_109491_ + 1 o p_109492_ + 2 o p_109493_ + a (Ljava/util/Collection;Ljava/util/Collection;)V m_109762_ + 0 o p_109763_ + 1 o p_109764_ + a (Lfkf;Leij;DDDLorg/joml/Matrix4f;)V m_172993_ + 0 o p_172994_ + 1 o p_172995_ + 2 o p_172996_ + 3 o p_172997_ + 4 o p_172998_ + 5 o p_254039_ + a (Lcmm;Lgu;Z)V m_109550_ + 0 o p_109551_ + 1 o p_109552_ + 2 o p_109553_ + a (Lit;DDDDDD)V m_109735_ + 0 o p_109736_ + 1 o p_109737_ + 2 o p_109738_ + 3 o p_109739_ + 4 o p_109740_ + 5 o p_109741_ + 6 o p_109742_ + a (Lcls;Lgu;Ldcb;Ldcb;I)V m_109544_ + 0 o p_109545_ + 1 o p_109546_ + 2 o p_109547_ + 3 o p_109548_ + 4 o p_109549_ + a (Lgu;)Z m_202430_ + 0 o p_202431_ + a (Lein;Lorg/joml/Matrix4f;IIIIIII)V m_269092_ + 0 o p_270858_ + 1 o p_270341_ + 2 o p_270702_ + 3 o p_270959_ + 4 o p_270732_ + 5 o p_270363_ + 6 o p_270273_ + 7 o p_270934_ + 8 o p_270916_ + a (Leie;F)Leie$b; m_234267_ + static + 0 o p_234268_ + 1 o p_234269_ + a (Lemz;Leei;Z)V m_234291_ + 0 o p_234292_ + 1 o p_234293_ + 2 o p_234294_ + a (Leie;)Leie$b; m_234259_ + 0 o p_234260_ + a (F)Leei; m_285956_ + static + 0 o p_286899_ + a (Lemz;FZF)V m_234286_ + static + 0 o p_234287_ + 1 o p_234288_ + 2 o p_234289_ + 3 o p_234290_ + a (Lemz;)V m_109693_ + 0 o p_109694_ + a (Lfjx$a;Lein;Lfkf;)Lein; m_234295_ + static + 0 o p_234296_ + 1 o p_234297_ + 2 o p_234298_ + a (Leij;Lorg/joml/Matrix4f;FDDD)V m_253054_ + 0 o p_254145_ + 1 o p_254537_ + 2 o p_254364_ + 3 o p_253843_ + 4 o p_253663_ + 5 o p_253795_ + a (Lemz;Ljava/util/Queue;)V m_194343_ + 0 o p_194344_ + 1 o p_194345_ + a (Ljava/util/LinkedHashSet;Lfjv$c;Leei;Ljava/util/Queue;Z)V m_194362_ + 0 o p_194363_ + 1 o p_194364_ + 2 o p_194365_ + 3 o p_194366_ + 4 o p_194367_ + a (Lein;Leij$a;DDDFFFFDDDDDD)V m_234270_ + static + 0 o p_234271_ + 1 o p_234272_ + 2 o p_234273_ + 3 o p_234274_ + 4 o p_234275_ + 5 o p_234276_ + 6 o p_234277_ + 7 o p_234278_ + 8 o p_234279_ + 9 o p_234280_ + 10 o p_234281_ + 11 o p_234282_ + 12 o p_234283_ + 13 o p_234284_ + 14 o p_234285_ + a (Lamg;Lgu;)V m_109514_ + 0 o p_109515_ + 1 o p_109516_ + a (FFFF)Leei; m_285739_ + static + 0 o p_286907_ + 1 o p_286536_ + 2 o p_286318_ + 3 o p_286590_ + a (Lit;ZZDDDDDD)V m_109752_ + 0 o p_109753_ + 1 o p_109754_ + 2 o p_109755_ + 3 o p_109756_ + 4 o p_109757_ + 5 o p_109758_ + 6 o p_109759_ + 7 o p_109760_ + 8 o p_109761_ + a (Leij;Lein;Lbfj;DDDLgu;Ldcb;)V m_109637_ + 0 o p_109638_ + 1 o p_109639_ + 2 o p_109640_ + 3 o p_109641_ + 4 o p_109642_ + 5 o p_109643_ + 6 o p_109644_ + 7 o p_109645_ + a (Lbfj;DDDFLeij;Lfjx;)V m_109517_ + 0 o p_109518_ + 1 o p_109519_ + 2 o p_109520_ + 3 o p_109521_ + 4 o p_109522_ + 5 o p_109523_ + 6 o p_109524_ + a (Lgu;Ldcb;Ldcb;)V m_109721_ + 0 o p_109722_ + 1 o p_109723_ + 2 o p_109724_ + a (Leij;FJZLemz;Lfjq;Lfjw;Lorg/joml/Matrix4f;)V m_109599_ + 0 o p_109600_ + 1 o p_109601_ + 2 o p_109602_ + 3 o p_109603_ + 4 o p_109604_ + 5 o p_109605_ + 6 o p_109606_ + 7 o p_254120_ + a (DDD)Ljava/lang/String; m_234249_ + 0 o p_234250_ + 1 o p_234251_ + 2 o p_234252_ + a ()V m_109482_ + a (Leij;Lein;Lefb;DDDFFFF)V m_109782_ + static + 0 o p_109783_ + 1 o p_109784_ + 2 o p_109785_ + 3 o p_109786_ + 4 o p_109787_ + 5 o p_109788_ + 6 o p_109789_ + 7 o p_109790_ + 8 o p_109791_ + 9 o p_109792_ + a (Leij;Lein;Leed;FFFF)V m_109646_ + static + 0 o p_109647_ + 1 o p_109648_ + 2 o p_109649_ + 3 o p_109650_ + 4 o p_109651_ + 5 o p_109652_ + 6 o p_109653_ + a (Lfkf;)Ljava/lang/String; m_234299_ + static + 0 o p_234300_ + a (Lapf;)Leei; m_234257_ + static + 0 o p_234258_ + a (Lit;ZDDDDDD)V m_109743_ + 0 o p_109744_ + 1 o p_109745_ + 2 o p_109746_ + 3 o p_109747_ + 4 o p_109748_ + 5 o p_109749_ + 6 o p_109750_ + 7 o p_109751_ + a (Lemz;Lfmw;ZZ)V m_194338_ + 0 o p_194339_ + 1 o p_194340_ + 2 o p_194341_ + 3 o p_194342_ + a (Leij;Lorg/joml/Matrix4f;FLemz;ZLjava/lang/Runnable;)V m_202423_ + 0 o p_202424_ + 1 o p_254034_ + 2 o p_202426_ + 3 o p_202427_ + 4 o p_202428_ + 5 o p_202429_ + a (Lfmp$c;)V m_194352_ + 0 o p_194353_ + a (Leij;Lein;DDDDDDFFFF)V m_109608_ + static + 0 o p_109609_ + 1 o p_109610_ + 2 o p_109611_ + 3 o p_109612_ + 4 o p_109613_ + 5 o p_109614_ + 6 o p_109615_ + 7 o p_109616_ + 8 o p_109617_ + 9 o p_109618_ + 10 o p_109619_ + 11 o p_109620_ + a (Lclp;Lgu;)I m_109541_ + static + 0 o p_109542_ + 1 o p_109543_ + a (IIIIII)V m_109494_ + 0 o p_109495_ + 1 o p_109496_ + 2 o p_109497_ + 3 o p_109498_ + 4 o p_109499_ + 5 o p_109500_ + a (Leij;)V m_109588_ + 0 o p_109589_ + a (Lein;Lorg/joml/Matrix4f;I)V m_269236_ + 0 o p_270950_ + 1 o p_270118_ + 2 o p_270865_ + a (Lein;DDDDDDFFFF)V m_172965_ + static + 0 o p_172966_ + 1 o p_172967_ + 2 o p_172968_ + 3 o p_172969_ + 4 o p_172970_ + 5 o p_172971_ + 6 o p_172972_ + 7 o p_172973_ + 8 o p_172974_ + 9 o p_172975_ + 10 o p_172976_ + a (Leij;Lein;FFFFFFFFFF)V m_269282_ + static + 0 o p_270352_ + 1 o p_271015_ + 2 o p_270144_ + 3 o p_270901_ + 4 o p_270546_ + 5 o p_270102_ + 6 o p_270605_ + 7 o p_271006_ + 8 o p_270864_ + 9 o p_270181_ + 10 o p_270220_ + 11 o p_270293_ + a (Leie;DDDLeei;)Leie$b; m_234261_ + 0 o p_234262_ + 1 o p_234263_ + 2 o p_234264_ + 3 o p_234265_ + 4 o p_234266_ + a (ILgu;I)V m_109506_ + 0 o p_109507_ + 1 o p_109508_ + 2 o p_109509_ + a (Lgu;Lfmp$c;)Z m_194359_ + 0 o p_194360_ + 1 o p_194361_ + a (Lorg/joml/Matrix4f;Lorg/joml/Matrix4f;DDDLfmw;)V m_252964_ + 0 o p_253756_ + 1 o p_253787_ + 2 o p_254187_ + 3 o p_253833_ + 4 o p_254547_ + 5 o p_253954_ + a (Lclp;Ldcb;Lgu;)I m_109537_ + static + 0 o p_109538_ + 1 o p_109539_ + 2 o p_109540_ + a (J)Ljava/util/SortedSet; m_234253_ + static + 0 o p_234254_ + a (Leij;Leei;Lorg/joml/Matrix4f;)V m_253210_ + 0 o p_253986_ + 1 o p_253766_ + 2 o p_254341_ + a (Leij;Lein;Lefb;DDDFFFFZ)V m_285900_ + static + 0 o p_286791_ + 1 o p_286416_ + 2 o p_286863_ + 3 o p_286432_ + 4 o p_286836_ + 5 o p_286774_ + 6 o p_286612_ + 7 o p_286516_ + 8 o p_286787_ + 9 o p_286300_ + 10 o p_286443_ + a (Lgu;Z)V m_109732_ + 0 o p_109733_ + 1 o p_109734_ + a (Lajl;)Ltj; m_244728_ + static + 0 o p_234256_ + a (Leij;Lfjx;Lemz;)V m_269240_ + 0 o p_271014_ + 1 o p_270107_ + 2 o p_270483_ + a (Laho;)V m_109765_ + 0 o p_109766_ + a (Leij;Lein;DDDDDDFFFFFFF)V m_109621_ + static + 0 o p_109622_ + 1 o p_109623_ + 2 o p_109624_ + 3 o p_109625_ + 4 o p_109626_ + 5 o p_109627_ + 6 o p_109628_ + 7 o p_109629_ + 8 o p_109630_ + 9 o p_109631_ + 10 o p_109632_ + 11 o p_109633_ + 12 o p_109634_ + 13 o p_109635_ + 14 o p_109636_ + a (Lakx;)V m_6213_ + 0 o p_109513_ + a (Lgu;Lfjv$a;)D m_234301_ + static + 0 o p_234302_ + 1 o p_234303_ + a (Lgu;Lfmp$c;Lha;)Lfmp$c; m_109728_ + 0 o p_109729_ + 1 o p_109730_ + 2 o p_109731_ + a (Lfew;)V m_109701_ + 0 o p_109702_ + b (Lemz;)Z m_234310_ + 0 o p_234311_ + b (Lit;ZDDDDDD)Lfhm; m_109795_ + 0 o p_109796_ + 1 o p_109797_ + 2 o p_109798_ + 3 o p_109799_ + 4 o p_109800_ + 5 o p_109801_ + 6 o p_109802_ + 7 o p_109803_ + b (J)J m_234308_ + 0 o p_234309_ + b (Leij;)V m_109780_ + 0 o p_109781_ + b (Lit;ZZDDDDDD)Lfhm; m_109804_ + 0 o p_109805_ + 1 o p_109806_ + 2 o p_109807_ + 3 o p_109808_ + 4 o p_109809_ + 5 o p_109810_ + 6 o p_109811_ + 7 o p_109812_ + 8 o p_109813_ + b (III)V m_109770_ + 0 o p_109771_ + 1 o p_109772_ + 2 o p_109773_ + b (Leij;Lein;DDDDDDFFFF)V m_269208_ + static + 0 o p_270343_ + 1 o p_270926_ + 2 o p_270503_ + 3 o p_270353_ + 4 o p_270642_ + 5 o p_270676_ + 6 o p_270711_ + 7 o p_270601_ + 8 o p_270523_ + 9 o p_270382_ + 10 o p_270089_ + 11 o p_270335_ + b (ILgu;I)V m_234304_ + 0 o p_234305_ + 1 o p_234306_ + 2 o p_234307_ + b ()V m_109769_ + c (Lemz;)V m_194370_ + 0 o p_194371_ + c (ILgu;I)V m_109774_ + 0 o p_109775_ + 1 o p_109776_ + 2 o p_109777_ + close ()V close + d ()Z m_109817_ + d (Lemz;)V m_173012_ + 0 o p_173013_ + e ()V m_173014_ + f ()V m_109818_ + g ()Ljava/lang/String; m_109820_ + h ()Lfmp; m_173015_ + i ()D m_173016_ + j ()D m_173017_ + k ()I m_109821_ + l ()Ljava/lang/String; m_109822_ + m ()V m_173018_ + n ()V m_173019_ + o ()V m_109823_ + p ()V m_109824_ + q ()Z m_109825_ + r ()V m_109826_ + s ()Legv; m_109827_ + t ()Legv; m_109828_ + u ()Legv; m_109829_ + v ()Legv; m_109830_ + w ()Legv; m_109831_ + x ()Legv; m_109832_ + y ()V m_109833_ + z ()V m_109834_ +fjv$a net/minecraft/client/renderer/LevelRenderer$RenderChunkInfo + a f_109839_ + b f_173020_ + c f_109841_ + d f_109842_ + (Lfmp$c;Lha;I)V + 0 o p_173022_ + 1 o p_173023_ + 2 o p_173024_ + a (BLha;)V m_109854_ + 0 o p_109855_ + 1 o p_109856_ + a ()Z m_173025_ + a (III)Z m_274540_ + 0 o p_275489_ + 1 o p_275424_ + 2 o p_275596_ + a (I)Z m_173026_ + 0 o p_173027_ + a (Lha;)Z m_109859_ + 0 o p_109860_ + b (Lha;)V m_173028_ + 0 o p_173029_ + equals (Ljava/lang/Object;)Z equals + 0 o p_194373_ + hashCode ()I hashCode +fjv$b net/minecraft/client/renderer/LevelRenderer$RenderChunkStorage + a f_194375_ + b f_194376_ + (I)V + 0 o p_194378_ +fjv$c net/minecraft/client/renderer/LevelRenderer$RenderInfoMap + a f_173030_ + (I)V + 0 o p_173033_ + a (Lfmp$c;)Lfjv$a; m_173035_ + 0 o p_173036_ + a (Lfmp$c;Lfjv$a;)V m_173037_ + 0 o p_173038_ + 1 o p_173039_ +fjv$d net/minecraft/client/renderer/LevelRenderer$TransparencyShaderException + (Ljava/lang/String;Ljava/lang/Throwable;)V + 0 o p_109868_ + 1 o p_109869_ +fjw net/minecraft/client/renderer/LightTexture + a f_173040_ + b f_173041_ + c f_173042_ + d f_109870_ + e f_109871_ + f f_109872_ + g f_109873_ + h f_109874_ + i f_109875_ + j f_109876_ + (Lfjq;Lenn;)V + 0 o p_109878_ + 1 o p_109879_ + a (F)V m_109881_ + 0 o p_109882_ + a (I)I m_109883_ + static + 0 o p_109884_ + a (Ldfk;I)F m_234316_ + static + 0 o p_234317_ + 1 o p_234318_ + a (Lbfz;FF)F m_234312_ + 0 o p_234313_ + 1 o p_234314_ + 2 o p_234315_ + a ()V m_109880_ + a (II)I m_109885_ + static + 0 o p_109886_ + 1 o p_109887_ + a (Lorg/joml/Vector3f;)V m_252983_ + static + 0 o p_254122_ + b (F)F m_234319_ + 0 o p_234320_ + b (I)I m_109894_ + static + 0 o p_109895_ + b ()V m_109891_ + c (F)F m_109892_ + 0 o p_109893_ + c ()V m_109896_ + close ()V close +fjx net/minecraft/client/renderer/MultiBufferSource + a (Leie;)Lfjx$a; m_109898_ + static + 0 o p_109899_ + a (Ljava/util/Map;Leie;)Lfjx$a; m_109900_ + static + 0 o p_109901_ + 1 o p_109902_ + getBuffer (Lfkf;)Lein; m_6299_ + 0 o p_109903_ +fjx$a net/minecraft/client/renderer/MultiBufferSource$BufferSource + a f_109904_ + b f_109905_ + c f_109906_ + d f_109907_ + (Leie;Ljava/util/Map;)V + 0 o p_109909_ + 1 o p_109910_ + a (Lfkf;)V m_109912_ + 0 o p_109913_ + a ()V m_173043_ + b (Lfkf;)Leie; m_109914_ + 0 o p_109915_ + b ()V m_109911_ + c (Lfkf;)V m_109916_ + 0 o p_109917_ + getBuffer (Lfkf;)Lein; m_6299_ + 0 o p_109919_ +fjy net/minecraft/client/renderer/OutlineBufferSource + a f_109920_ + b f_109921_ + c f_109922_ + d f_109923_ + e f_109924_ + f f_109925_ + (Lfjx$a;)V + 0 o p_109927_ + a (IIII)V m_109929_ + 0 o p_109930_ + 1 o p_109931_ + 2 o p_109932_ + 3 o p_109933_ + a ()V m_109928_ + getBuffer (Lfkf;)Lein; m_6299_ + 0 o p_109935_ +fjy$a net/minecraft/client/renderer/OutlineBufferSource$EntityOutlineGenerator + f f_109936_ + g f_109937_ + h f_109938_ + i f_109939_ + j f_109940_ + k f_109941_ + (Lein;IIII)V + 0 o p_109943_ + 1 o p_109944_ + 2 o p_109945_ + 3 o p_109946_ + 4 o p_109947_ + a (FFF)Lein; m_5601_ + 0 o p_109986_ + 1 o p_109987_ + 2 o p_109988_ + a (IIII)Lein; m_6122_ + 0 o p_109981_ + 1 o p_109982_ + 2 o p_109983_ + 3 o p_109984_ + a (DDD)Lein; m_5483_ + 0 o p_109956_ + 1 o p_109957_ + 2 o p_109958_ + a (FF)Lein; m_7421_ + 0 o p_109960_ + 1 o p_109961_ + a (II)Lein; m_7122_ + 0 o p_109978_ + 1 o p_109979_ + a (FFFFFFFFFIIFFF)V m_5954_ + 0 o p_109963_ + 1 o p_109964_ + 2 o p_109965_ + 3 o p_109966_ + 4 o p_109967_ + 5 o p_109968_ + 6 o p_109969_ + 7 o p_109970_ + 8 o p_109971_ + 9 o p_109972_ + 10 o p_109973_ + 11 o p_109974_ + 12 o p_109975_ + 13 o p_109976_ + b (IIII)V m_7404_ + 0 o p_109993_ + 1 o p_109994_ + 2 o p_109995_ + 3 o p_109996_ + b (II)Lein; m_7120_ + 0 o p_109990_ + 1 o p_109991_ + e ()V m_5752_ + k ()V m_141991_ +fjz net/minecraft/client/renderer/PanoramaRenderer + a f_109998_ + b f_109999_ + c f_244569_ + d f_244463_ + (Lfjl;)V + 0 o p_110002_ + a (FF)V m_110003_ + 0 o p_110004_ + 1 o p_110005_ + b (FF)F m_246245_ + static + 0 o p_249058_ + 1 o p_249548_ +fk net/minecraft/commands/arguments/coordinates/Coordinates + a ()Z m_6888_ + a (Lds;)Leei; m_6955_ + 0 o p_119566_ + b ()Z m_6892_ + b (Lds;)Leeh; m_6970_ + 0 o p_119567_ + c (Lds;)Lgu; m_119568_ + 0 o p_119569_ + c ()Z m_6900_ +fka net/minecraft/client/renderer/PostChain + a f_173045_ + b f_110006_ + c f_110007_ + d f_110008_ + e f_110009_ + f f_110010_ + g f_110011_ + h f_110012_ + i f_110013_ + j f_110014_ + k f_110015_ + l f_110016_ + (Lfuw;Lakx;Legv;Lacq;)V + 0 o p_110018_ + 1 o p_110019_ + 2 o p_110020_ + 3 o p_110021_ + a (Lfuw;Lacq;)V m_110033_ + 0 o p_110034_ + 1 o p_110035_ + a (F)V m_110023_ + 0 o p_110024_ + a (II)V m_110025_ + 0 o p_110026_ + 1 o p_110027_ + a ()Ljava/lang/String; m_110022_ + a (Ljava/lang/String;II)V m_110038_ + 0 o p_110039_ + 1 o p_110040_ + 2 o p_110041_ + a (Ljava/lang/String;)Legv; m_110036_ + 0 o p_110037_ + a (Lfuw;Lcom/google/gson/JsonElement;)V m_110030_ + 0 o p_110031_ + 1 o p_110032_ + a (Ljava/lang/String;Legv;Legv;)Lfkb; m_110042_ + 0 o p_110043_ + 1 o p_110044_ + 2 o p_110045_ + a (Lcom/google/gson/JsonElement;)V m_110028_ + 0 o p_110029_ + b (Ljava/lang/String;)Legv; m_110049_ + 0 o p_110050_ + b (Lcom/google/gson/JsonElement;)V m_110047_ + 0 o p_110048_ + b ()V m_110046_ + c (Ljava/lang/String;)Lact; m_234321_ + static + 0 o p_234322_ + close ()V close +fkb net/minecraft/client/renderer/PostPass + a f_110052_ + b f_110053_ + c f_110054_ + d f_110055_ + e f_110056_ + f f_110057_ + g f_110058_ + h f_110059_ + (Lakx;Ljava/lang/String;Legv;Legv;)V + 0 o p_110061_ + 1 o p_110062_ + 2 o p_110063_ + 3 o p_110064_ + a (Ljava/lang/String;Ljava/util/function/IntSupplier;II)V m_110069_ + 0 o p_110070_ + 1 o p_110071_ + 2 o p_110072_ + 3 o p_110073_ + a (Lorg/joml/Matrix4f;)V m_253214_ + 0 o p_253811_ + a (F)V m_110065_ + 0 o p_110066_ + a ()Ljava/lang/String; m_173046_ + b ()Lfjn; m_110074_ + close ()V close +fkc net/minecraft/client/renderer/Rect2i + a f_110076_ + b f_110077_ + c f_110078_ + d f_110079_ + (IIII)V + 0 o p_110081_ + 1 o p_110082_ + 2 o p_110083_ + 3 o p_110084_ + a (Lfkc;)Lfkc; m_173052_ + 0 o p_173053_ + a (I)V m_173047_ + 0 o p_173048_ + a (II)V m_173049_ + 0 o p_173050_ + 1 o p_173051_ + a ()I m_110085_ + b (II)Z m_110087_ + 0 o p_110088_ + 1 o p_110089_ + b (I)V m_173054_ + 0 o p_173055_ + b ()I m_110086_ + c (I)V m_173056_ + 0 o p_173057_ + c ()I m_110090_ + d (I)V m_173058_ + 0 o p_173059_ + d ()I m_110091_ +fkd net/minecraft/client/renderer/RenderBuffers + a f_110092_ + b f_110093_ + c f_110094_ + d f_110095_ + e f_110096_ + ()V + a (Lit/unimi/dsi/fastutil/objects/Object2ObjectLinkedOpenHashMap;Lfkf;)V m_110101_ + static + 0 o p_110102_ + 1 o p_110103_ + a (Lit/unimi/dsi/fastutil/objects/Object2ObjectLinkedOpenHashMap;)V m_268794_ + 0 o p_269658_ + a ()Lfjk; m_110098_ + b ()Lfjx$a; m_110104_ + b (Lit/unimi/dsi/fastutil/objects/Object2ObjectLinkedOpenHashMap;Lfkf;)V m_173060_ + static + 0 o p_173061_ + 1 o p_173062_ + c ()Lfjx$a; m_110108_ + d ()Lfjy; m_110109_ +fke net/minecraft/client/renderer/RenderStateShard + A f_173064_ + B f_173065_ + C f_173066_ + D f_234323_ + E f_173067_ + F f_173068_ + G f_173069_ + H f_173070_ + I f_173071_ + J f_173072_ + K f_173073_ + L f_173074_ + M f_173075_ + N f_173076_ + O f_173077_ + P f_173078_ + Q f_173079_ + R f_173080_ + S f_173081_ + T f_173082_ + U f_173083_ + V f_173084_ + W f_173085_ + X f_173086_ + Y f_268568_ + Z f_173087_ + a f_267492_ + aA f_110113_ + aB f_285579_ + aC f_110114_ + aD f_110115_ + aE f_110116_ + aF f_110117_ + aG f_110118_ + aH f_110119_ + aI f_110123_ + aJ f_110124_ + aK f_110125_ + aL f_110126_ + aM f_110127_ + aN f_110128_ + aO f_110129_ + aP f_110130_ + aQ f_285585_ + aR f_285603_ + aS f_173089_ + aT f_110131_ + aU f_110132_ + aa f_173088_ + ab f_268491_ + ac f_173090_ + ad f_173091_ + ae f_173092_ + af f_173093_ + ag f_173094_ + ah f_173095_ + ai f_285573_ + aj f_285619_ + ak f_285642_ + al f_285582_ + am f_110145_ + an f_110146_ + ao f_110147_ + ap f_110148_ + aq f_110150_ + ar f_110151_ + as f_110152_ + at f_110153_ + au f_110154_ + av f_110155_ + aw f_110158_ + ax f_110110_ + ay f_110111_ + az f_110112_ + b f_110133_ + c f_110134_ + d f_110135_ + e f_110136_ + f f_110137_ + g f_110138_ + h f_110139_ + i f_173096_ + j f_173099_ + k f_173100_ + l f_173101_ + m f_173102_ + n f_173103_ + o f_173104_ + p f_173105_ + q f_173106_ + r f_173107_ + s f_173108_ + t f_173109_ + u f_173110_ + v f_173111_ + w f_173112_ + x f_173113_ + y f_173114_ + z f_173063_ + ()V + static + (Ljava/lang/String;Ljava/lang/Runnable;Ljava/lang/Runnable;)V + 0 o p_110161_ + 1 o p_110162_ + 2 o p_110163_ + A ()V m_110167_ + static + B ()V m_110168_ + static + C ()V m_110169_ + static + D ()V m_110170_ + static + E ()V m_110171_ + static + F ()V m_110172_ + static + G ()V m_110173_ + static + H ()V m_110174_ + static + I ()V m_110175_ + static + J ()V m_110176_ + static + K ()V m_110177_ + static + L ()V m_110178_ + static + M ()V m_110179_ + static + N ()V m_110180_ + static + O ()V m_110181_ + static + P ()V m_110182_ + static + Q ()V m_110183_ + static + R ()V m_110184_ + static + a ()V m_110185_ + a (F)V m_110186_ + static + 0 o p_110187_ + b ()V m_110188_ + c ()V m_285678_ + static + d ()V m_285679_ + static + e ()V m_285681_ + static + f ()V m_285680_ + static + g ()V m_110199_ + static + h ()V m_110200_ + static + i ()V m_110201_ + static + j ()V m_110202_ + static + k ()V m_110203_ + static + l ()V m_110204_ + static + m ()V m_110205_ + static + n ()V m_110206_ + static + o ()V m_110207_ + static + p ()V m_110208_ + static + q ()V m_110209_ + static + r ()V m_110211_ + static + s ()V m_110212_ + static + t ()V m_110213_ + static + toString ()Ljava/lang/String; toString + u ()V m_110214_ + static + v ()V m_110215_ + static + w ()V m_110216_ + static + x ()V m_110164_ + static + y ()V m_110165_ + static + z ()V m_110166_ + static +fke$a net/minecraft/client/renderer/RenderStateShard$BooleanStateShard + aS f_110227_ + (Ljava/lang/String;Ljava/lang/Runnable;Ljava/lang/Runnable;Z)V + 0 o p_110229_ + 1 o p_110230_ + 2 o p_110231_ + 3 o p_110232_ + toString ()Ljava/lang/String; toString +fke$b net/minecraft/client/renderer/RenderStateShard$ColorLogicStateShard + (Ljava/lang/String;Ljava/lang/Runnable;Ljava/lang/Runnable;)V + 0 o p_286784_ + 1 o p_286884_ + 2 o p_286375_ +fke$c net/minecraft/client/renderer/RenderStateShard$CullStateShard + (Z)V + 0 o p_110238_ + a (Z)V m_110239_ + static + 0 o p_110240_ + b (Z)V m_110241_ + static + 0 o p_110242_ +fke$d net/minecraft/client/renderer/RenderStateShard$DepthTestStateShard + aS f_110243_ + (Ljava/lang/String;I)V + 0 o p_110246_ + 1 o p_110247_ + a (I)V m_110248_ + static + 0 o p_110249_ + b (I)V m_110250_ + static + 0 o p_110251_ + toString ()Ljava/lang/String; toString +fke$e net/minecraft/client/renderer/RenderStateShard$EmptyTextureStateShard + (Ljava/lang/Runnable;Ljava/lang/Runnable;)V + 0 o p_173117_ + 1 o p_173118_ + ()V + c ()Ljava/util/Optional; m_142706_ + d ()V m_173119_ + static + e ()V m_173120_ + static +fke$f net/minecraft/client/renderer/RenderStateShard$LayeringStateShard + (Ljava/lang/String;Ljava/lang/Runnable;Ljava/lang/Runnable;)V + 0 o p_110267_ + 1 o p_110268_ + 2 o p_110269_ +fke$g net/minecraft/client/renderer/RenderStateShard$LightmapStateShard + (Z)V + 0 o p_110271_ + a (Z)V m_110272_ + static + 0 o p_110273_ + b (Z)V m_110274_ + static + 0 o p_110275_ +fke$h net/minecraft/client/renderer/RenderStateShard$LineStateShard + aS f_110276_ + (Ljava/util/OptionalDouble;)V + 0 o p_110278_ + a (Ljava/util/OptionalDouble;)V m_110279_ + static + 0 o p_110280_ + b (Ljava/util/OptionalDouble;)V m_110281_ + static + 0 o p_110282_ + toString ()Ljava/lang/String; toString +fke$i net/minecraft/client/renderer/RenderStateShard$MultiTextureStateShard + aS f_173121_ + (Lcom/google/common/collect/ImmutableList;)V + 0 o p_173123_ + a (Lcom/google/common/collect/ImmutableList;)V m_173124_ + static + 0 o p_173125_ + c ()Ljava/util/Optional; m_142706_ + d ()Lfke$i$a; m_173127_ + static + e ()V m_173128_ + static +fke$i$a net/minecraft/client/renderer/RenderStateShard$MultiTextureStateShard$Builder + a f_173129_ + ()V + a (Lacq;ZZ)Lfke$i$a; m_173132_ + 0 o p_173133_ + 1 o p_173134_ + 2 o p_173135_ + a ()Lfke$i; m_173131_ +fke$j net/minecraft/client/renderer/RenderStateShard$OffsetTexturingStateShard + (FF)V + 0 o p_110290_ + 1 o p_110291_ + a (FF)V m_252593_ + static + 0 o p_253356_ + 1 o p_253357_ + c ()V m_110295_ + static +fke$k net/minecraft/client/renderer/RenderStateShard$OutputStateShard + (Ljava/lang/String;Ljava/lang/Runnable;Ljava/lang/Runnable;)V + 0 o p_110300_ + 1 o p_110301_ + 2 o p_110302_ +fke$l net/minecraft/client/renderer/RenderStateShard$OverlayStateShard + (Z)V + 0 o p_110304_ + a (Z)V m_110305_ + static + 0 o p_110306_ + b (Z)V m_110307_ + static + 0 o p_110308_ +fke$m net/minecraft/client/renderer/RenderStateShard$ShaderStateShard + aS f_173136_ + (Ljava/util/function/Supplier;)V + 0 o p_173139_ + ()V + a (Ljava/util/function/Supplier;)V m_173140_ + static + 0 o p_173141_ + c ()V m_173142_ + static + d ()V m_173143_ + static + e ()Lfki; m_173144_ + static + f ()V m_173145_ + static + toString ()Ljava/lang/String; toString +fke$n net/minecraft/client/renderer/RenderStateShard$TextureStateShard + aS f_110328_ + aT f_110329_ + aU f_110330_ + (Lacq;ZZ)V + 0 o p_110333_ + 1 o p_110334_ + 2 o p_110335_ + a (Lacq;ZZ)V m_263890_ + static + 0 o p_264708_ + 1 o p_264709_ + 2 o p_264710_ + c ()Ljava/util/Optional; m_142706_ + d ()V m_110345_ + static + toString ()Ljava/lang/String; toString +fke$o net/minecraft/client/renderer/RenderStateShard$TexturingStateShard + (Ljava/lang/String;Ljava/lang/Runnable;Ljava/lang/Runnable;)V + 0 o p_110349_ + 1 o p_110350_ + 2 o p_110351_ +fke$p net/minecraft/client/renderer/RenderStateShard$TransparencyStateShard + (Ljava/lang/String;Ljava/lang/Runnable;Ljava/lang/Runnable;)V + 0 o p_110353_ + 1 o p_110354_ + 2 o p_110355_ +fke$q net/minecraft/client/renderer/RenderStateShard$WriteMaskStateShard + aS f_110356_ + aT f_110357_ + (ZZ)V + 0 o p_110359_ + 1 o p_110360_ + a (ZZ)V m_110361_ + static + 0 o p_110362_ + 1 o p_110363_ + b (ZZ)V m_110364_ + static + 0 o p_110365_ + 1 o p_110366_ + toString ()Ljava/lang/String; toString +fkf net/minecraft/client/renderer/RenderType + aS f_173148_ + aT f_173149_ + aU f_173150_ + aV f_173151_ + aW f_110371_ + aX f_173152_ + aY f_173153_ + aZ f_173154_ + bA f_110382_ + bB f_110383_ + bC f_110384_ + bD f_110385_ + bE f_110386_ + bF f_173172_ + bG f_173173_ + bH f_268665_ + bI f_173174_ + bJ f_181442_ + bK f_181443_ + bL f_173175_ + bM f_268619_ + bN f_173176_ + bO f_110387_ + bP f_110388_ + bQ f_173158_ + bR f_173159_ + bS f_268753_ + bT f_268540_ + bU f_268519_ + bV f_279582_ + bW f_285558_ + bX f_285624_ + bY f_285662_ + bZ f_285639_ + ba f_110372_ + bb f_110373_ + bc f_110374_ + bd f_110375_ + be f_110376_ + bf f_110377_ + bg f_173155_ + bh f_173156_ + bi f_173157_ + bj f_173160_ + bk f_173161_ + bl f_173162_ + bm f_173163_ + bn f_173164_ + bo f_234325_ + bp f_173165_ + bq f_173166_ + br f_173167_ + bs f_173168_ + bt f_173169_ + bu f_173170_ + bv f_173171_ + bw f_110378_ + bx f_110379_ + by f_110380_ + bz f_110381_ + ca f_234324_ + cb f_110389_ + cc f_110390_ + cd f_110391_ + ce f_110392_ + cf f_110393_ + cg f_110394_ + ()V + static + (Ljava/lang/String;Leio;Leio$b;IZZLjava/lang/Runnable;Ljava/lang/Runnable;)V + 0 o p_173178_ + 1 o p_173179_ + 2 o p_173180_ + 3 o p_173181_ + 4 o p_173182_ + 5 o p_173183_ + 6 o p_173184_ + 7 o p_173185_ + A (Lacq;)Lfkf; m_285685_ + static + 0 o p_286152_ + A ()Lfkf; m_269166_ + static + B (Lacq;)Lfkf; m_285701_ + static + 0 o p_286172_ + B ()Lfkf; m_280070_ + static + C (Lacq;)Lfkf; m_285692_ + static + 0 o p_286161_ + C ()Lfkf; m_285907_ + static + D (Lacq;)Lfkf; m_285703_ + static + 0 o p_286174_ + D ()Lfkf; m_286086_ + static + E ()Lfkf; m_285783_ + static + E (Lacq;)Lfkf; m_285699_ + static + 0 o p_286170_ + F ()Lfkf; m_285811_ + static + F (Lacq;)Lfkf; m_285683_ + static + 0 o p_286150_ + G (Lacq;)Lfkf; m_285684_ + static + 0 o p_286151_ + G ()Ljava/util/List; m_110506_ + static + H ()I m_110507_ + H (Lacq;)Lfkf; m_285691_ + static + 0 o p_286160_ + I (Lacq;)Lfkf; m_285700_ + static + 0 o p_286171_ + I ()Leio; m_110508_ + J (Lacq;)Lfkf; m_285698_ + static + 0 o p_286169_ + J ()Leio$b; m_173186_ + K (Lacq;)Lfkf; m_285695_ + static + 0 o p_286165_ + K ()Ljava/util/Optional; m_7280_ + L (Lacq;)Lfkf; m_285687_ + static + 0 o p_286155_ + L ()Z m_5492_ + M ()Z m_110405_ + M (Lacq;)Lfkf; m_285702_ + static + 0 o p_286173_ + N ()Z m_234326_ + N (Lacq;)Lfkf; m_285690_ + static + 0 o p_286159_ + O ()Ljava/util/Optional; m_110406_ + O (Lacq;)Lfkf; m_285682_ + static + 0 o p_286149_ + P ()Lfkf$b; m_110408_ + static + Q ()Lfkf$b; m_110409_ + static + a (Ljava/lang/String;Leio;Leio$b;IZZLfkf$b;)Lfkf$a; m_173215_ + static + 0 o p_173216_ + 1 o p_173217_ + 2 o p_173218_ + 3 o p_173219_ + 4 o p_173220_ + 5 o p_173221_ + 6 o p_173222_ + a (Lacq;)Lfkf; m_110431_ + static + 0 o p_110432_ + a (Lacq;Ljava/lang/Boolean;)Lfkf; m_234329_ + static + 0 o p_234330_ + 1 o p_234331_ + a (Leie;Leir;)V m_276775_ + 0 o p_277996_ + 1 o p_277677_ + a (Lfke$m;)Lfkf$b; m_173207_ + static + 0 o p_173208_ + a (Lacq;FF)Lfkf; m_110436_ + static + 0 o p_110437_ + 1 o p_110438_ + 2 o p_110439_ + a (D)Lfkf; m_269399_ + static + 0 o p_270166_ + a (Ljava/lang/Double;)Lfkf$a; m_285693_ + static + 0 o p_286162_ + a (Lacq;Z)Lfkf; m_110443_ + static + 0 o p_110444_ + 1 o p_110445_ + a (Ljava/lang/String;Leio;Leio$b;ILfkf$b;)Lfkf$a; m_173209_ + static + 0 o p_173210_ + 1 o p_173211_ + 2 o p_173212_ + 3 o p_173213_ + 4 o p_173214_ + b (Lacq;)Lfkf; m_110446_ + static + 0 o p_110447_ + b (Lacq;Ljava/lang/Boolean;)Lfkf; m_285694_ + static + 0 o p_286163_ + 1 o p_286164_ + b (Lacq;Z)Lfkf; m_110448_ + static + 0 o p_110449_ + 1 o p_110450_ + c (Lacq;)Lfkf; m_110452_ + static + 0 o p_110453_ + c ()Lfkf; m_110451_ + static + c (Lacq;Ljava/lang/Boolean;)Lfkf; m_285688_ + static + 0 o p_286156_ + 1 o p_286157_ + c (Lacq;Z)Lfkf; m_110454_ + static + 0 o p_110455_ + 1 o p_110456_ + d (Lacq;)Lfkf; m_110458_ + static + 0 o p_110459_ + d ()Lfkf; m_110457_ + static + d (Lacq;Z)Lfkf; m_234335_ + static + 0 o p_234336_ + 1 o p_234337_ + d (Lacq;Ljava/lang/Boolean;)Lfkf; m_285686_ + static + 0 o p_286153_ + 1 o p_286154_ + e (Lacq;)Lfkf; m_110464_ + static + 0 o p_110465_ + e ()Lfkf; m_110463_ + static + e (Lacq;Ljava/lang/Boolean;)Lfkf; m_285696_ + static + 0 o p_286166_ + 1 o p_286167_ + e (Lacq;Z)Lfkf; m_110460_ + static + 0 o p_110461_ + 1 o p_110462_ + f (Lacq;)Lfkf; m_110467_ + static + 0 o p_110468_ + f ()Lfkf; m_110466_ + static + g (Lacq;)Lfkf; m_110470_ + static + 0 o p_110471_ + g ()Lfkf; m_110469_ + static + h (Lacq;)Lfkf; m_110473_ + static + 0 o p_110474_ + h ()Lfkf; m_110472_ + static + i (Lacq;)Lfkf; m_234338_ + static + 0 o p_234339_ + i ()Lfkf; m_110475_ + static + j (Lacq;)Lfkf; m_110476_ + static + 0 o p_110477_ + j ()Lfkf; m_110478_ + static + k (Lacq;)Lfkf; m_110479_ + static + 0 o p_110480_ + k ()Lfkf; m_110481_ + static + l ()Lfkf; m_110484_ + static + l (Lacq;)Lfkf; m_110482_ + static + 0 o p_110483_ + m ()Lfkf; m_110487_ + static + m (Lacq;)Lfkf; m_110485_ + static + 0 o p_110486_ + n ()Lfkf; m_110490_ + static + n (Lacq;)Lfkf; m_173235_ + static + 0 o p_173236_ + o ()Lfkf; m_110493_ + static + o (Lacq;)Lfkf; m_110488_ + static + 0 o p_110489_ + p ()Lfkf; m_110496_ + static + p (Lacq;)Lfkf; m_110491_ + static + 0 o p_110492_ + q ()Lfkf; m_110499_ + static + q (Lacq;)Lfkf; m_110494_ + static + 0 o p_110495_ + r ()Lfkf; m_269058_ + static + r (Lacq;)Lfkf; m_110497_ + static + 0 o p_110498_ + s (Lacq;)Lfkf; m_173237_ + static + 0 o p_173238_ + s ()Lfkf; m_269508_ + static + t (Lacq;)Lfkf; m_181444_ + static + 0 o p_181445_ + t ()Lfkf; m_110502_ + static + toString ()Ljava/lang/String; toString + u (Lacq;)Lfkf; m_181446_ + static + 0 o p_181447_ + u ()Lfkf; m_110503_ + static + v (Lacq;)Lfkf; m_110500_ + static + 0 o p_110501_ + v ()Lfkf; m_173239_ + static + w (Lacq;)Lfkf; m_173240_ + static + 0 o p_173241_ + w ()Lfkf; m_173242_ + static + x (Lacq;)Lfkf; m_285697_ + static + 0 o p_286168_ + x ()Lfkf; m_110504_ + static + y (Lacq;)Lfkf; m_285689_ + static + 0 o p_286158_ + y ()Lfkf; m_173247_ + static + z (Lacq;)Lfkf; m_285704_ + static + 0 o p_286175_ + z ()Lfkf; m_269313_ + static +fkf$a net/minecraft/client/renderer/RenderType$CompositeRenderType + aY f_173256_ + aZ f_110511_ + ba f_110513_ + bb f_110514_ + ()V + static + (Ljava/lang/String;Leio;Leio$b;IZZLfkf$b;)V + 0 o p_173258_ + 1 o p_173259_ + 2 o p_173260_ + 3 o p_173261_ + 4 o p_173262_ + 5 o p_173263_ + 6 o p_173264_ + K ()Ljava/util/Optional; m_7280_ + L ()Z m_5492_ + P ()Lfkf$b; m_173265_ + a (Lacq;Lfke$c;)Lfkf; m_285705_ + static + 0 o p_286176_ + 1 o p_286177_ + a (Lfkf$b;)V m_173266_ + static + 0 o p_173267_ + a (Lfkf$b;Lacq;)Lfkf; m_173268_ + static + 0 o p_173269_ + 1 o p_173270_ + b (Lfkf$b;)V m_110526_ + static + 0 o p_110527_ + toString ()Ljava/lang/String; toString +fkf$b net/minecraft/client/renderer/RenderType$CompositeState + a f_110576_ + b f_173274_ + c f_110577_ + d f_110581_ + e f_110582_ + f f_110583_ + g f_110584_ + h f_110586_ + i f_110587_ + j f_110588_ + k f_110589_ + l f_110590_ + m f_285566_ + n f_110591_ + o f_110592_ + (Lfke$e;Lfke$m;Lfke$p;Lfke$d;Lfke$c;Lfke$g;Lfke$l;Lfke$f;Lfke$k;Lfke$o;Lfke$q;Lfke$h;Lfke$b;Lfkf$c;)V + 0 o p_286632_ + 1 o p_286843_ + 2 o p_286280_ + 3 o p_286228_ + 4 o p_286226_ + 5 o p_286744_ + 6 o p_286754_ + 7 o p_286895_ + 8 o p_286435_ + 9 o p_286893_ + 10 o p_286628_ + 11 o p_286768_ + 12 o p_286578_ + 13 o p_286290_ + a ()Lfkf$b$a; m_110628_ + static + toString ()Ljava/lang/String; toString +fkf$b$a net/minecraft/client/renderer/RenderType$CompositeState$CompositeStateBuilder + a f_110641_ + b f_173289_ + c f_110642_ + d f_110646_ + e f_110647_ + f f_110648_ + g f_110649_ + h f_110651_ + i f_110652_ + j f_110653_ + k f_110654_ + l f_110655_ + m f_285600_ + ()V + a (Lfke$p;)Lfkf$b$a; m_110685_ + 0 o p_110686_ + a (Lfke$d;)Lfkf$b$a; m_110663_ + 0 o p_110664_ + a (Lfke$f;)Lfkf$b$a; m_110669_ + 0 o p_110670_ + a (Lfke$m;)Lfkf$b$a; m_173292_ + 0 o p_173293_ + a (Lfke$k;)Lfkf$b$a; m_110675_ + 0 o p_110676_ + a (Z)Lfkf$b; m_110691_ + 0 o p_110692_ + a (Lfke$g;)Lfkf$b$a; m_110671_ + 0 o p_110672_ + a (Lfkf$c;)Lfkf$b; m_110689_ + 0 o p_110690_ + a (Lfke$c;)Lfkf$b$a; m_110661_ + 0 o p_110662_ + a (Lfke$e;)Lfkf$b$a; m_173290_ + 0 o p_173291_ + a (Lfke$q;)Lfkf$b$a; m_110687_ + 0 o p_110688_ + a (Lfke$o;)Lfkf$b$a; m_110683_ + 0 o p_110684_ + a (Lfke$l;)Lfkf$b$a; m_110677_ + 0 o p_110678_ + a (Lfke$h;)Lfkf$b$a; m_110673_ + 0 o p_110674_ + a (Lfke$b;)Lfkf$b$a; m_286027_ + 0 o p_286236_ +fkf$c net/minecraft/client/renderer/RenderType$OutlineProperty + a NONE + b IS_OUTLINE + c AFFECTS_OUTLINE + d f_110696_ + e $VALUES + ()V + static + (Ljava/lang/String;ILjava/lang/String;)V + 0 o p_110700_ + 1 o p_110701_ + 2 o p_110702_ + a ()[Lfkf$c; m_173294_ + static + toString ()Ljava/lang/String; toString + valueOf (Ljava/lang/String;)Lfkf$c; valueOf + static + 0 o p_110705_ + values ()[Lfkf$c; values + static +fkg net/minecraft/client/renderer/RunningTrimmedMean + a f_110707_ + b f_110708_ + c f_110709_ + (I)V + 0 o p_110711_ + a (J)J m_110712_ + 0 o p_110713_ +fkh net/minecraft/client/renderer/ScreenEffectRenderer + a f_110714_ + ()V + static + ()V + a (Lenn;Leij;)V m_110718_ + static + 0 o p_110719_ + 1 o p_110720_ + a (Lbyo;)Ldcb; m_110716_ + static + 0 o p_110717_ + a (Lfuv;Leij;)V m_173296_ + static + 0 o p_173297_ + 1 o p_173298_ + b (Lenn;Leij;)V m_110725_ + static + 0 o p_110726_ + 1 o p_110727_ + c (Lenn;Leij;)V m_110728_ + static + 0 o p_110729_ + 1 o p_110730_ +fki net/minecraft/client/renderer/ShaderInstance + A f_173330_ + B f_173331_ + C f_173332_ + D f_173333_ + E f_173299_ + F f_173300_ + G f_173301_ + H f_173302_ + I f_173303_ + J f_173304_ + K f_173305_ + L f_173306_ + M f_173307_ + a f_173321_ + b f_173308_ + c f_173309_ + d f_200956_ + e f_173310_ + f f_173311_ + g f_173312_ + h f_173313_ + i f_173314_ + j f_267422_ + k f_173315_ + l f_173316_ + m f_173317_ + n f_202432_ + o f_173318_ + p f_173319_ + q f_173320_ + r f_244364_ + s f_173322_ + t f_173323_ + u f_173324_ + v f_173325_ + w f_173326_ + x f_173327_ + y f_173328_ + z f_173329_ + ()V + static + (Lala;Ljava/lang/String;Leio;)V + 0 o p_173336_ + 1 o p_173337_ + 2 o p_173338_ + a (Lcom/google/gson/JsonObject;)Leht; m_173346_ + static + 0 o p_173347_ + a (Ljava/lang/String;)Leia; m_173348_ + 0 o p_173349_ + a (Ljava/lang/String;Ljava/lang/Object;)V m_173350_ + 0 o p_173351_ + 1 o p_173352_ + a ()I m_108943_ + a (Lala;Lehx$a;Ljava/lang/String;)Lehx; m_173340_ + static + 0 o p_173341_ + 1 o p_173342_ + 2 o p_173343_ + a (Lcom/google/gson/JsonElement;)V m_173344_ + 0 o p_173345_ + b (Ljava/lang/String;)Lehs; m_173356_ + 0 o p_173357_ + b (Lcom/google/gson/JsonElement;)V m_173354_ + 0 o p_173355_ + b ()V m_108957_ + c ()Lehx; m_108962_ + close ()V close + d ()Lehx; m_108964_ + e ()V m_142662_ + f ()V m_173362_ + g ()V m_173363_ + h ()Leio; m_173364_ + i ()Ljava/lang/String; m_173365_ + j ()V m_173366_ +fki$1 net/minecraft/client/renderer/ShaderInstance$1 + a f_173367_ + b f_173368_ + c f_173369_ + (Ljava/lang/String;Lala;)V + 0 o p_173371_ + 1 o p_173372_ + a (ZLjava/lang/String;)Ljava/lang/String; m_142138_ + 0 o p_173374_ + 1 o p_173375_ +fkj net/minecraft/client/renderer/Sheets + A f_110755_ + B f_110756_ + C f_110757_ + D f_110758_ + E f_110759_ + F f_110760_ + G f_266092_ + H f_110731_ + I f_110732_ + J f_110733_ + K f_110734_ + a f_110735_ + b f_110736_ + c f_110737_ + d f_110738_ + e f_110739_ + f f_110740_ + g f_265912_ + h f_271463_ + i f_110741_ + j f_110742_ + k f_110743_ + l f_244291_ + m f_173376_ + n f_173377_ + o f_271486_ + p f_110744_ + q f_110745_ + r f_110746_ + s f_110747_ + t f_110748_ + u f_110749_ + v f_110750_ + w f_110751_ + x f_110752_ + y f_110753_ + z f_110754_ + ()V + static + ()V + a (Ldct;Lfwu;Lfwu;Lfwu;)Lfwu; m_110771_ + static + 0 o p_110772_ + 1 o p_110773_ + 2 o p_110774_ + 3 o p_110775_ + a (Lddo;)Lfwu; m_173381_ + static + 0 o p_173382_ + a (Ljava/util/function/Consumer;)V m_110780_ + static + 0 o p_110781_ + a (Lczn;Ldct;Z)Lfwu; m_110767_ + static + 0 o p_110768_ + 1 o p_110769_ + 2 o p_110770_ + a ()Lfkf; m_110762_ + static + a (Lacp;)Lfwu; m_234347_ + static + 0 o p_234348_ + a (I)[Lfwu; m_110763_ + static + 0 o p_110764_ + a (Ljava/lang/String;)Lfwu; m_110778_ + static + 0 o p_110779_ + a (Lcen;)Lfwu; m_110765_ + static + 0 o p_110766_ + b ()Lfkf; m_110782_ + static + b (Lddo;)Lfwu; m_246984_ + static + 0 o p_250958_ + b (Lacp;)Lfwu; m_234349_ + static + 0 o p_234350_ + b (Ljava/lang/String;)Lfwu; m_110783_ + static + 0 o p_110784_ + c ()Lfkf; m_110785_ + static + c (Lddo;)Lfwu; m_173385_ + static + 0 o p_173386_ + c (Lacp;)Lfwu; m_272280_ + static + 0 o p_273567_ + d ()Lfkf; m_110786_ + static + d (Lddo;)Lfwu; m_245275_ + static + 0 o p_251735_ + d (Lacp;)Lfwu; m_234351_ + static + 0 o p_234352_ + e ()Lfkf; m_110787_ + static + e (Lacp;)Lfwu; m_234353_ + static + 0 o p_234354_ + f ()Lfkf; m_246640_ + static + f (Lacp;)Lfwu; m_272215_ + static + 0 o p_272805_ + g ()Lfkf; m_110788_ + static + h ()Lfkf; m_266442_ + static + i ()Lfkf; m_110789_ + static + j ()Lfkf; m_110790_ + static + k ()Lfkf; m_110791_ + static + l ()Lfkf; m_110792_ + static +fkj$1 net/minecraft/client/renderer/Sheets$1 + a f_110793_ + ()V + static +fkk net/minecraft/client/renderer/SpriteCoordinateExpander + a f_110795_ + b f_110796_ + (Lein;Lfuv;)V + 0 o p_110798_ + 1 o p_110799_ + a (FFF)Lein; m_5601_ + 0 o p_110831_ + 1 o p_110832_ + 2 o p_110833_ + a (IIII)Lein; m_6122_ + 0 o p_110826_ + 1 o p_110827_ + 2 o p_110828_ + 3 o p_110829_ + a (DDD)Lein; m_5483_ + 0 o p_110801_ + 1 o p_110802_ + 2 o p_110803_ + a (FF)Lein; m_7421_ + 0 o p_110805_ + 1 o p_110806_ + a (II)Lein; m_7122_ + 0 o p_110823_ + 1 o p_110824_ + a (FFFFFFFFFIIFFF)V m_5954_ + 0 o p_110808_ + 1 o p_110809_ + 2 o p_110810_ + 3 o p_110811_ + 4 o p_110812_ + 5 o p_110813_ + 6 o p_110814_ + 7 o p_110815_ + 8 o p_110816_ + 9 o p_110817_ + 10 o p_110818_ + 11 o p_110819_ + 12 o p_110820_ + 13 o p_110821_ + b (IIII)V m_7404_ + 0 o p_173392_ + 1 o p_173393_ + 2 o p_173394_ + 3 o p_173395_ + b (II)Lein; m_7120_ + 0 o p_110835_ + 1 o p_110836_ + e ()V m_5752_ + k ()V m_141991_ +fkl net/minecraft/client/renderer/ViewArea + a f_110838_ + b f_110839_ + c f_110840_ + d f_110841_ + e f_110842_ + f f_110843_ + (Lfmp;Lcmm;ILfjv;)V + 0 o p_110845_ + 1 o p_110846_ + 2 o p_110847_ + 3 o p_110848_ + a (IIIZ)V m_110859_ + 0 o p_110860_ + 1 o p_110861_ + 2 o p_110862_ + 3 o p_110863_ + a (I)V m_110853_ + 0 o p_110854_ + a (III)I m_110855_ + 0 o p_110856_ + 1 o p_110857_ + 2 o p_110858_ + a ()V m_110849_ + a (Lgu;)Lfmp$c; m_110866_ + 0 o p_110867_ + a (Lfmp;)V m_110864_ + 0 o p_110865_ + a (DD)V m_110850_ + 0 o p_110851_ + 1 o p_110852_ +fkm net/minecraft/client/renderer/VirtualScreen + a f_110868_ + b f_110869_ + (Lenn;)V + 0 o p_110871_ + a (Leha;Ljava/lang/String;Ljava/lang/String;)Lehn; m_110872_ + 0 o p_110873_ + 1 o p_110874_ + 2 o p_110875_ + close ()V close +fkn net/minecraft/client/renderer/block/BlockModelShaper + a f_110877_ + b f_110878_ + (Lfwx;)V + 0 o p_110880_ + a (Ljava/util/Map;)V m_245515_ + 0 o p_248582_ + a (Ldcb;)Lfuv; m_110882_ + 0 o p_110883_ + a (Ldde;Ljava/lang/Comparable;)Ljava/lang/String; m_110884_ + static + 0 o p_110885_ + 1 o p_110886_ + a (Lacq;Ldcb;)Lfwy; m_110889_ + static + 0 o p_110890_ + 1 o p_110891_ + a ()Lfwx; m_110881_ + b (Ldcb;)Lfwr; m_110893_ + 0 o p_110894_ + b (Ljava/util/Map;)Ljava/lang/String; m_110887_ + static + 0 o p_110888_ + c (Ldcb;)Lfwy; m_110895_ + static + 0 o p_110896_ +fko net/minecraft/client/renderer/block/BlockRenderDispatcher + a f_110899_ + b f_110900_ + c f_173397_ + d f_110901_ + e f_110902_ + f f_110903_ + (Lfkn;Lfjj;Leoo;)V + 0 o p_173399_ + 1 o p_173400_ + 2 o p_173401_ + a (Ldcb;Lgu;Lclp;Leij;Lein;ZLapf;)V m_234355_ + 0 o p_234356_ + 1 o p_234357_ + 2 o p_234358_ + 3 o p_234359_ + 4 o p_234360_ + 5 o p_234361_ + 6 o p_234362_ + a (Ldcb;)Lfwr; m_110910_ + 0 o p_110911_ + a (Lgu;Lclp;Lein;Ldcb;Ldxe;)V m_234363_ + 0 o p_234364_ + 1 o p_234365_ + 2 o p_234366_ + 3 o p_234367_ + 4 o p_234368_ + a (Lakx;)V m_6213_ + 0 o p_110909_ + a (Ldcb;Lgu;Lclp;Leij;Lein;)V m_110918_ + 0 o p_110919_ + 1 o p_110920_ + 2 o p_110921_ + 3 o p_110922_ + 4 o p_110923_ + a ()Lfkn; m_110907_ + a (Ldcb;Leij;Lfjx;II)V m_110912_ + 0 o p_110913_ + 1 o p_110914_ + 2 o p_110915_ + 3 o p_110916_ + 4 o p_110917_ + b ()Lfkq; m_110937_ +fko$1 net/minecraft/client/renderer/block/BlockRenderDispatcher$1 + a f_110938_ + ()V + static +fkp net/minecraft/client/renderer/block/LiquidBlockRenderer + a f_173402_ + b f_110940_ + c f_110941_ + d f_110942_ + ()V + a ([FF)V m_203188_ + 0 o p_203189_ + 1 o p_203190_ + a (Lcls;Lha;FLgu;Ldcb;)Z m_110978_ + static + 0 o p_110979_ + 1 o p_110980_ + 2 o p_110981_ + 3 o p_110982_ + 4 o p_110983_ + a (Lclp;Ldxd;FFFLgu;)F m_203149_ + 0 o p_203150_ + 1 o p_203151_ + 2 o p_203152_ + 3 o p_203153_ + 4 o p_203154_ + 5 o p_203155_ + a (Lclp;Lgu;Ldxe;Ldcb;Lha;Ldxe;)Z m_203166_ + static + 0 o p_203167_ + 1 o p_203168_ + 2 o p_203169_ + 3 o p_203170_ + 4 o p_203171_ + 5 o p_203172_ + a (Lcls;Lgu;Ldcb;Lha;)Z m_110959_ + static + 0 o p_110960_ + 1 o p_110961_ + 2 o p_110962_ + 3 o p_110963_ + a (Lcls;Lgu;Lha;FLdcb;)Z m_203179_ + static + 0 o p_203180_ + 1 o p_203181_ + 2 o p_203182_ + 3 o p_203183_ + 4 o p_203184_ + a (Lclp;Lgu;)I m_110945_ + 0 o p_110946_ + 1 o p_110947_ + a (Lclp;Lgu;Lein;Ldcb;Ldxe;)V m_234369_ + 0 o p_234370_ + 1 o p_234371_ + 2 o p_234372_ + 3 o p_234373_ + 4 o p_234374_ + a (Lclp;Ldxd;Lgu;)F m_203156_ + 0 o p_203157_ + 1 o p_203158_ + 2 o p_203159_ + a (Lclp;Ldxd;Lgu;Ldcb;Ldxe;)F m_203160_ + 0 o p_203161_ + 1 o p_203162_ + 2 o p_203163_ + 3 o p_203164_ + 4 o p_203165_ + a (Ldxe;Ldxe;)Z m_203185_ + static + 0 o p_203186_ + 1 o p_203187_ + a (Lein;DDDFFFFFI)V m_110984_ + 0 o p_110985_ + 1 o p_110986_ + 2 o p_110987_ + 3 o p_110988_ + 4 o p_110989_ + 5 o p_110990_ + 6 o p_110991_ + 7 o p_110992_ + 8 o p_110993_ + 9 o p_110994_ + a ()V m_110944_ +fkp$1 net/minecraft/client/renderer/block/LiquidBlockRenderer$1 + a f_203191_ + ()V + static +fkq net/minecraft/client/renderer/block/ModelBlockRenderer + a f_173403_ + b f_173404_ + c f_173405_ + d f_110995_ + e f_173406_ + f f_110996_ + ()V + static + (Leoo;)V + 0 o p_110999_ + a (Lclp;Ldcb;Lgu;Lein;Leij$a;Lfkr;FFFFIIIII)V m_111023_ + 0 o p_111024_ + 1 o p_111025_ + 2 o p_111026_ + 3 o p_111027_ + 4 o p_111028_ + 5 o p_111029_ + 6 o p_111030_ + 7 o p_111031_ + 8 o p_111032_ + 9 o p_111033_ + 10 o p_111034_ + 11 o p_111035_ + 12 o p_111036_ + 13 o p_111037_ + 14 o p_111038_ + a (Lclp;Ldcb;Lgu;IIZLeij;Lein;Ljava/util/List;Ljava/util/BitSet;)V m_111001_ + 0 o p_111002_ + 1 o p_111003_ + 2 o p_111004_ + 3 o p_111005_ + 4 o p_111006_ + 5 o p_111007_ + 6 o p_111008_ + 7 o p_111009_ + 8 o p_111010_ + 9 o p_111011_ + a (Lclp;Lfwr;Ldcb;Lgu;Leij;Lein;ZLapf;JI)V m_234379_ + 0 o p_234380_ + 1 o p_234381_ + 2 o p_234382_ + 3 o p_234383_ + 4 o p_234384_ + 5 o p_234385_ + 6 o p_234386_ + 7 o p_234387_ + 8 o p_234388_ + 9 o p_234389_ + a (Leij$a;Lein;FFFLjava/util/List;II)V m_111058_ + static + 0 o p_111059_ + 1 o p_111060_ + 2 o p_111061_ + 3 o p_111062_ + 4 o p_111063_ + 5 o p_111064_ + 6 o p_111065_ + 7 o p_111066_ + a (Lclp;Ldcb;Lgu;Leij;Lein;Ljava/util/List;[FLjava/util/BitSet;Lfkq$b;I)V m_111012_ + 0 o p_111013_ + 1 o p_111014_ + 2 o p_111015_ + 3 o p_111016_ + 4 o p_111017_ + 5 o p_111018_ + 6 o p_111019_ + 7 o p_111020_ + 8 o p_111021_ + 9 o p_111022_ + a ()V m_111000_ + static + a (Leij$a;Lein;Ldcb;Lfwr;FFFII)V m_111067_ + 0 o p_111068_ + 1 o p_111069_ + 2 o p_111070_ + 3 o p_111071_ + 4 o p_111072_ + 5 o p_111073_ + 6 o p_111074_ + 7 o p_111075_ + 8 o p_111076_ + a (Lclp;Ldcb;Lgu;[ILha;[FLjava/util/BitSet;)V m_111039_ + 0 o p_111040_ + 1 o p_111041_ + 2 o p_111042_ + 3 o p_111043_ + 4 o p_111044_ + 5 o p_111045_ + 6 o p_111046_ + b (Lclp;Lfwr;Ldcb;Lgu;Leij;Lein;ZLapf;JI)V m_234390_ + 0 o p_234391_ + 1 o p_234392_ + 2 o p_234393_ + 3 o p_234394_ + 4 o p_234395_ + 5 o p_234396_ + 6 o p_234397_ + 7 o p_234398_ + 8 o p_234399_ + 9 o p_234400_ + b ()V m_111077_ + static + c (Lclp;Lfwr;Ldcb;Lgu;Leij;Lein;ZLapf;JI)V m_234401_ + 0 o p_234402_ + 1 o p_234403_ + 2 o p_234404_ + 3 o p_234405_ + 4 o p_234406_ + 5 o p_234407_ + 6 o p_234408_ + 7 o p_234409_ + 8 o p_234410_ + 9 o p_234411_ +fkq$1 net/minecraft/client/renderer/block/ModelBlockRenderer$1 + a f_111102_ + ()V + static +fkq$a net/minecraft/client/renderer/block/ModelBlockRenderer$AdjacencyInfo + a DOWN + b UP + c NORTH + d SOUTH + e WEST + f EAST + g f_111110_ + h f_111111_ + i f_111112_ + j f_111113_ + k f_111114_ + l f_111115_ + m f_111116_ + n $VALUES + ()V + static + (Ljava/lang/String;I[Lha;FZ[Lfkq$e;[Lfkq$e;[Lfkq$e;[Lfkq$e;)V + 0 o p_111120_ + 1 o p_111121_ + 2 o p_111122_ + 3 o p_111123_ + 4 o p_111124_ + 5 o p_111125_ + 6 o p_111126_ + 7 o p_111127_ + 8 o p_111128_ + a ([Lfkq$a;)V m_111133_ + static + 0 o p_111134_ + a (Lha;)Lfkq$a; m_111131_ + static + 0 o p_111132_ + a ()[Lfkq$a; m_173407_ + static + valueOf (Ljava/lang/String;)Lfkq$a; valueOf + static + 0 o p_111146_ + values ()[Lfkq$a; values + static +fkq$b net/minecraft/client/renderer/block/ModelBlockRenderer$AmbientOcclusionFace + a f_111149_ + b f_111150_ + ()V + a (IIII)I m_111153_ + 0 o p_111154_ + 1 o p_111155_ + 2 o p_111156_ + 3 o p_111157_ + a (Lclp;Ldcb;Lgu;Lha;[FLjava/util/BitSet;Z)V m_111167_ + 0 o p_111168_ + 1 o p_111169_ + 2 o p_111170_ + 3 o p_111171_ + 4 o p_111172_ + 5 o p_111173_ + 6 o p_111174_ + a (IIIIFFFF)I m_111158_ + 0 o p_111159_ + 1 o p_111160_ + 2 o p_111161_ + 3 o p_111162_ + 4 o p_111163_ + 5 o p_111164_ + 6 o p_111165_ + 7 o p_111166_ +fkq$c net/minecraft/client/renderer/block/ModelBlockRenderer$AmbientVertexRemap + a DOWN + b UP + c NORTH + d SOUTH + e WEST + f EAST + g f_111185_ + h f_111186_ + i f_111187_ + j f_111188_ + k f_111189_ + l $VALUES + ()V + static + (Ljava/lang/String;IIIII)V + 0 o p_111193_ + 1 o p_111194_ + 2 o p_111195_ + 3 o p_111196_ + 4 o p_111197_ + 5 o p_111198_ + a (Lha;)Lfkq$c; m_111201_ + static + 0 o p_111202_ + a ([Lfkq$c;)V m_111203_ + static + 0 o p_111204_ + a ()[Lfkq$c; m_173408_ + static + valueOf (Ljava/lang/String;)Lfkq$c; valueOf + static + 0 o p_111212_ + values ()[Lfkq$c; values + static +fkq$d net/minecraft/client/renderer/block/ModelBlockRenderer$Cache + a f_111214_ + b f_111215_ + c f_111216_ + ()V + a (Ldcb;Lclp;Lgu;)I m_111221_ + 0 o p_111222_ + 1 o p_111223_ + 2 o p_111224_ + a ()V m_111220_ + b (Ldcb;Lclp;Lgu;)F m_111226_ + 0 o p_111227_ + 1 o p_111228_ + 2 o p_111229_ + b ()V m_111225_ + c ()Lit/unimi/dsi/fastutil/longs/Long2FloatLinkedOpenHashMap; m_111230_ + d ()Lit/unimi/dsi/fastutil/longs/Long2IntLinkedOpenHashMap; m_111231_ +fkq$d$1 net/minecraft/client/renderer/block/ModelBlockRenderer$Cache$1 + a f_111232_ + (Lfkq$d;IF)V + 0 o p_111234_ + 1 o p_111235_ + 2 o p_111236_ + rehash (I)V rehash + 0 o p_111238_ +fkq$d$2 net/minecraft/client/renderer/block/ModelBlockRenderer$Cache$2 + a f_111239_ + (Lfkq$d;IF)V + 0 o p_111241_ + 1 o p_111242_ + 2 o p_111243_ + rehash (I)V rehash + 0 o p_111245_ +fkq$e net/minecraft/client/renderer/block/ModelBlockRenderer$SizeInfo + a DOWN + b UP + c NORTH + d SOUTH + e WEST + f EAST + g FLIP_DOWN + h FLIP_UP + i FLIP_NORTH + j FLIP_SOUTH + k FLIP_WEST + l FLIP_EAST + m f_111258_ + n $VALUES + ()V + static + (Ljava/lang/String;ILha;Z)V + 0 o p_111262_ + 1 o p_111263_ + 2 o p_111264_ + 3 o p_111265_ + a ()[Lfkq$e; m_173409_ + static + valueOf (Ljava/lang/String;)Lfkq$e; valueOf + static + 0 o p_111269_ + values ()[Lfkq$e; values + static +fkr net/minecraft/client/renderer/block/model/BakedQuad + a f_111292_ + b f_111293_ + c f_111294_ + d f_111295_ + e f_111296_ + ([IILha;Lfuv;Z)V + 0 o p_111298_ + 1 o p_111299_ + 2 o p_111300_ + 3 o p_111301_ + 4 o p_111302_ + a ()Lfuv; m_173410_ + b ()[I m_111303_ + c ()Z m_111304_ + d ()I m_111305_ + e ()Lha; m_111306_ + f ()Z m_111307_ +fks net/minecraft/client/renderer/block/model/BlockElement + a f_111308_ + b f_111309_ + c f_111310_ + d f_111311_ + e f_111312_ + f f_173411_ + g f_173412_ + h f_173413_ + (Lorg/joml/Vector3f;Lorg/joml/Vector3f;Ljava/util/Map;Lfku;Z)V + 0 o p_253626_ + 1 o p_254426_ + 2 o p_254454_ + 3 o p_254229_ + 4 o p_253661_ + a (Lha;)[F m_111320_ + 0 o p_111321_ + a ()V m_111319_ +fks$1 net/minecraft/client/renderer/block/model/BlockElement$1 + a f_111322_ + ()V + static +fks$a net/minecraft/client/renderer/block/model/BlockElement$Deserializer + a f_173414_ + ()V + a (Lcom/google/gson/JsonObject;)Lfku; m_111332_ + 0 o p_111333_ + a (Lcom/google/gson/JsonElement;Ljava/lang/reflect/Type;Lcom/google/gson/JsonDeserializationContext;)Lfks; deserialize + 0 o p_111329_ + 1 o p_111330_ + 2 o p_111331_ + a (Lcom/google/gson/JsonObject;Ljava/lang/String;)Lorg/joml/Vector3f; m_111334_ + 0 o p_111335_ + 1 o p_111336_ + a (Lcom/google/gson/JsonDeserializationContext;Lcom/google/gson/JsonObject;)Ljava/util/Map; m_111325_ + 0 o p_111326_ + 1 o p_111327_ + a (Ljava/lang/String;)Lha; m_111337_ + 0 o p_111338_ + b (Lcom/google/gson/JsonObject;)F m_111342_ + 0 o p_111343_ + b (Lcom/google/gson/JsonDeserializationContext;Lcom/google/gson/JsonObject;)Ljava/util/Map; m_111339_ + 0 o p_111340_ + 1 o p_111341_ + c (Lcom/google/gson/JsonObject;)Lha$a; m_111344_ + 0 o p_111345_ + d (Lcom/google/gson/JsonObject;)Lorg/joml/Vector3f; m_111352_ + 0 o p_111353_ + deserialize (Lcom/google/gson/JsonElement;Ljava/lang/reflect/Type;Lcom/google/gson/JsonDeserializationContext;)Ljava/lang/Object; deserialize + 0 o p_111349_ + 1 o p_111350_ + 2 o p_111351_ + e (Lcom/google/gson/JsonObject;)Lorg/joml/Vector3f; m_111346_ + 0 o p_111347_ +fkt net/minecraft/client/renderer/block/model/BlockElementFace + a f_173415_ + b f_111354_ + c f_111355_ + d f_111356_ + e f_111357_ + (Lha;ILjava/lang/String;Lfkv;)V + 0 o p_111359_ + 1 o p_111360_ + 2 o p_111361_ + 3 o p_111362_ +fkt$a net/minecraft/client/renderer/block/model/BlockElementFace$Deserializer + a f_173416_ + ()V + a (Lcom/google/gson/JsonElement;Ljava/lang/reflect/Type;Lcom/google/gson/JsonDeserializationContext;)Lfkt; deserialize + 0 o p_111365_ + 1 o p_111366_ + 2 o p_111367_ + a (Lcom/google/gson/JsonObject;)I m_111368_ + 0 o p_111369_ + b (Lcom/google/gson/JsonObject;)Ljava/lang/String; m_111370_ + 0 o p_111371_ + c (Lcom/google/gson/JsonObject;)Lha; m_111372_ + 0 o p_111373_ + deserialize (Lcom/google/gson/JsonElement;Ljava/lang/reflect/Type;Lcom/google/gson/JsonDeserializationContext;)Ljava/lang/Object; deserialize + 0 o p_111375_ + 1 o p_111376_ + 2 o p_111377_ +fku net/minecraft/client/renderer/block/model/BlockElementRotation + a f_111378_ + b f_111379_ + c f_111380_ + d f_111381_ + (Lorg/joml/Vector3f;Lha$a;FZ)V + 0 o f_111378_ + 1 o f_111379_ + 2 o f_111380_ + 3 o f_111381_ + a ()Lorg/joml/Vector3f; f_111378_ + b ()Lha$a; f_111379_ + c ()F f_111380_ + d ()Z f_111381_ + equals (Ljava/lang/Object;)Z equals + 0 o p_254260_ + hashCode ()I hashCode + toString ()Ljava/lang/String; toString +fkv net/minecraft/client/renderer/block/model/BlockFaceUV + a f_111387_ + b f_111388_ + ([FI)V + 0 o p_111390_ + 1 o p_111391_ + a (I)F m_111392_ + 0 o p_111393_ + a ([F)V m_111394_ + 0 o p_111395_ + b (I)F m_111396_ + 0 o p_111397_ + c (I)I m_111398_ + 0 o p_111399_ + d (I)I m_111400_ + 0 o p_111401_ +fkv$a net/minecraft/client/renderer/block/model/BlockFaceUV$Deserializer + a f_173417_ + ()V + a (Lcom/google/gson/JsonObject;)I m_111407_ + 0 o p_111408_ + a (Lcom/google/gson/JsonElement;Ljava/lang/reflect/Type;Lcom/google/gson/JsonDeserializationContext;)Lfkv; deserialize + 0 o p_111404_ + 1 o p_111405_ + 2 o p_111406_ + b (Lcom/google/gson/JsonObject;)[F m_111409_ + 0 o p_111410_ + deserialize (Lcom/google/gson/JsonElement;Ljava/lang/reflect/Type;Lcom/google/gson/JsonDeserializationContext;)Ljava/lang/Object; deserialize + 0 o p_111412_ + 1 o p_111413_ + 2 o p_111414_ +fkw net/minecraft/client/renderer/block/model/BlockModel + a f_111415_ + b f_173418_ + c f_111416_ + d f_111417_ + e f_111418_ + f f_111419_ + g f_111420_ + h f_111421_ + i f_173419_ + j f_271537_ + k f_111422_ + l f_111423_ + m f_111424_ + n f_111425_ + o f_111426_ + ()V + static + (Lacq;Ljava/util/List;Ljava/util/Map;Ljava/lang/Boolean;Lfkw$b;Lfld;Ljava/util/List;)V + 0 o p_273263_ + 1 o p_272668_ + 2 o p_272821_ + 3 o p_272676_ + 4 o p_273072_ + 5 o p_273480_ + 6 o p_273099_ + a (Ljava/lang/String;)Lfkw; m_111463_ + static + 0 o p_111464_ + a (Lcfw;)Lflc; m_269178_ + 0 o p_270662_ + a ()Ljava/util/List; m_111436_ + a (Lfwv;Lfkw;Ljava/util/function/Function;Lfwz;Lacq;Z)Lfwr; m_111449_ + 0 o p_249720_ + 1 o p_111451_ + 2 o p_111452_ + 3 o p_111453_ + 4 o p_111454_ + 5 o p_111455_ + a (Ljava/util/function/Function;Lfla;)V m_244730_ + 0 o p_247931_ + 1 o p_247932_ + a (Ljava/io/Reader;)Lfkw; m_111461_ + static + 0 o p_111462_ + a (Lfwv;Lfkw;)Lflb; m_246736_ + 0 o p_250138_ + 1 o p_251800_ + a (Lfwv;Ljava/util/function/Function;Lfwz;Lacq;)Lfwr; m_7611_ + 0 o p_252120_ + 1 o p_250023_ + 2 o p_251130_ + 3 o p_252208_ + a (Ljava/util/function/Function;)V m_5500_ + 0 o p_249059_ + a (Lfks;Lfkt;Lfuv;Lha;Lfwz;Lacq;)Lfkr; m_111437_ + static + 0 o p_111438_ + 1 o p_111439_ + 2 o p_111440_ + 3 o p_111441_ + 4 o p_111442_ + 5 o p_111443_ + b (Ljava/lang/String;)Z m_111477_ + 0 o p_111478_ + b ()Z m_111476_ + c (Ljava/lang/String;)Lfwu; m_111480_ + 0 o p_111481_ + c ()Lfkw$b; m_111479_ + d (Ljava/lang/String;)Lcom/mojang/datafixers/util/Either; m_111485_ + 0 o p_111486_ + d ()Z m_173420_ + e (Ljava/lang/String;)Z m_111488_ + static + 0 o p_111489_ + e ()Ljava/util/List; m_111484_ + f ()Ljava/util/Collection; m_7970_ + g ()Lfkw; m_111490_ + h ()Lfld; m_111491_ + toString ()Ljava/lang/String; toString +fkw$a net/minecraft/client/renderer/block/model/BlockModel$Deserializer + ()V + a (Lcom/google/gson/JsonObject;)Ljava/lang/Boolean; m_271865_ + 0 o p_273052_ + a (Lacq;Ljava/lang/String;)Lcom/mojang/datafixers/util/Either; m_111503_ + static + 0 o p_111504_ + 1 o p_111505_ + a (Lcom/google/gson/JsonDeserializationContext;Lcom/google/gson/JsonObject;)Ljava/util/List; m_111494_ + 0 o p_111495_ + 1 o p_111496_ + a (Lcom/google/gson/JsonElement;Ljava/lang/reflect/Type;Lcom/google/gson/JsonDeserializationContext;)Lfkw; deserialize + 0 o p_111498_ + 1 o p_111499_ + 2 o p_111500_ + b (Lcom/google/gson/JsonObject;)Ljava/util/Map; m_111509_ + 0 o p_111510_ + b (Lcom/google/gson/JsonDeserializationContext;Lcom/google/gson/JsonObject;)Ljava/util/List; m_111506_ + 0 o p_111507_ + 1 o p_111508_ + c (Lcom/google/gson/JsonObject;)Ljava/lang/String; m_111511_ + 0 o p_111512_ + deserialize (Lcom/google/gson/JsonElement;Ljava/lang/reflect/Type;Lcom/google/gson/JsonDeserializationContext;)Ljava/lang/Object; deserialize + 0 o p_111514_ + 1 o p_111515_ + 2 o p_111516_ +fkw$b net/minecraft/client/renderer/block/model/BlockModel$GuiLight + a FRONT + b SIDE + c f_111519_ + d $VALUES + ()V + static + (Ljava/lang/String;ILjava/lang/String;)V + 0 o p_111523_ + 1 o p_111524_ + 2 o p_111525_ + a (Ljava/lang/String;)Lfkw$b; m_111527_ + static + 0 o p_111528_ + a ()Z m_111526_ + b ()[Lfkw$b; m_173422_ + static + valueOf (Ljava/lang/String;)Lfkw$b; valueOf + static + 0 o p_111530_ + values ()[Lfkw$b; values + static +fkw$c net/minecraft/client/renderer/block/model/BlockModel$LoopException + (Ljava/lang/String;)V + 0 o p_173424_ +fkx net/minecraft/client/renderer/block/model/BlockModelDefinition + a f_111532_ + b f_111533_ + (Ljava/util/Map;Lflj;)V + 0 o p_111537_ + 1 o p_111538_ + (Ljava/util/List;)V + 0 o p_111535_ + a (Lfkx$a;Ljava/io/Reader;)Lfkx; m_111540_ + static + 0 o p_111541_ + 1 o p_111542_ + a (Lfkx$a;Lcom/google/gson/JsonElement;)Lfkx; m_247114_ + static + 0 o p_249700_ + 1 o p_250730_ + a ()Ljava/util/Map; m_111539_ + a (Ljava/lang/String;)Z m_173425_ + 0 o p_173426_ + b ()Ljava/util/Set; m_173427_ + b (Ljava/lang/String;)Lfle; m_173428_ + 0 o p_173429_ + c ()Z m_111543_ + d ()Lflj; m_111544_ + equals (Ljava/lang/Object;)Z equals + 0 o p_111546_ + hashCode ()I hashCode +fkx$a net/minecraft/client/renderer/block/model/BlockModelDefinition$Context + a f_111548_ + b f_111549_ + ()V + a (Ldcc;)V m_111552_ + 0 o p_111553_ + a ()Ldcc; m_111551_ +fkx$b net/minecraft/client/renderer/block/model/BlockModelDefinition$Deserializer + ()V + a (Lcom/google/gson/JsonElement;Ljava/lang/reflect/Type;Lcom/google/gson/JsonDeserializationContext;)Lfkx; deserialize + 0 o p_111559_ + 1 o p_111560_ + 2 o p_111561_ + a (Lcom/google/gson/JsonDeserializationContext;Lcom/google/gson/JsonObject;)Ljava/util/Map; m_111555_ + 0 o p_111556_ + 1 o p_111557_ + b (Lcom/google/gson/JsonDeserializationContext;Lcom/google/gson/JsonObject;)Lflj; m_111562_ + 0 o p_111563_ + 1 o p_111564_ + deserialize (Lcom/google/gson/JsonElement;Ljava/lang/reflect/Type;Lcom/google/gson/JsonDeserializationContext;)Ljava/lang/Object; deserialize + 0 o p_111566_ + 1 o p_111567_ + 2 o p_111568_ +fkx$c net/minecraft/client/renderer/block/model/BlockModelDefinition$MissingVariantException + a f_173430_ + (Lfkx;)V + 0 o p_173432_ +fky net/minecraft/client/renderer/block/model/FaceBakery + a f_173433_ + b f_173434_ + c f_173435_ + d f_111569_ + e f_111570_ + f f_173436_ + ()V + static + ()V + a ([IILha;Lfkv;[FLfuv;Lj;Lfku;Z)V m_111620_ + 0 o p_111621_ + 1 o p_111622_ + 2 o p_111623_ + 3 o p_111624_ + 4 o p_111625_ + 5 o p_111626_ + 6 o p_111627_ + 7 o p_111628_ + 8 o p_111629_ + a ([I)Lha; m_111612_ + static + 0 o p_111613_ + a (Lorg/joml/Vector3f;Lorg/joml/Vector3f;Lorg/joml/Matrix4f;Lorg/joml/Vector3f;)V m_252821_ + 0 o p_253804_ + 1 o p_253835_ + 2 o p_253730_ + 3 o p_254056_ + a (Lfkv;Lha;Lj;Lacq;)Lfkv; m_111581_ + static + 0 o p_111582_ + 1 o p_111583_ + 2 o p_111584_ + 3 o p_111585_ + a (Lorg/joml/Vector3f;Lfku;)V m_252985_ + 0 o p_254412_ + 1 o p_254150_ + a (Lfkv;Lfuv;Lha;[FLj;Lfku;Z)[I m_111573_ + 0 o p_111574_ + 1 o p_111575_ + 2 o p_111576_ + 3 o p_111577_ + 4 o p_111578_ + 5 o p_111579_ + 6 o p_111580_ + a (Lorg/joml/Vector3f;Lorg/joml/Vector3f;)[F m_111592_ + 0 o p_254153_ + 1 o p_253934_ + a (Lacq;)Ljava/lang/String; m_111610_ + static + 0 o p_111611_ + a ([ILha;)V m_111630_ + 0 o p_111631_ + 1 o p_111632_ + a (Lorg/joml/Vector3f;Lorg/joml/Vector3f;Lfkt;Lfuv;Lha;Lfwz;Lfku;ZLacq;)Lfkr; m_111600_ + 0 o p_253895_ + 1 o p_253976_ + 2 o p_111603_ + 3 o p_111604_ + 4 o p_111605_ + 5 o p_111606_ + 6 o p_111607_ + 7 o p_111608_ + 8 o p_111609_ + a ([IILorg/joml/Vector3f;Lfuv;Lfkv;)V m_111614_ + 0 o p_111615_ + 1 o p_111616_ + 2 o p_254291_ + 3 o p_111618_ + 4 o p_111619_ + a (Lorg/joml/Vector3f;Lj;)V m_253132_ + 0 o p_254561_ + 1 o p_253793_ +fky$1 net/minecraft/client/renderer/block/model/FaceBakery$1 + a f_111633_ + ()V + static +fkz net/minecraft/client/renderer/block/model/ItemModelGenerator + a f_111635_ + b f_173437_ + c f_173438_ + ()V + static + ()V + a (ILjava/lang/String;Lfup;)Ljava/util/List; m_111638_ + 0 o p_111639_ + 1 o p_111640_ + 2 o p_251768_ + a (Lfup;)Ljava/util/List; m_247383_ + 0 o p_250338_ + a (Lfup;Ljava/lang/String;I)Ljava/util/List; m_111661_ + 0 o p_248810_ + 1 o p_111663_ + 2 o p_111664_ + a (Ljava/util/List;Lfkz$b;II)V m_111665_ + 0 o p_111666_ + 1 o p_111667_ + 2 o p_111668_ + 3 o p_111669_ + a (Ljava/util/function/Function;Lfkw;)Lfkw; m_111670_ + 0 o p_111671_ + 1 o p_111672_ + a (IILfup;Ljava/util/List;I)V m_173439_ + 0 o p_173440_ + 1 o p_173441_ + 2 o p_251156_ + 3 o p_173443_ + 4 o p_173444_ + a (Lfkz$b;Ljava/util/List;Lfup;IIIIIZ)V m_246249_ + 0 o p_251572_ + 1 o p_248882_ + 2 o p_249847_ + 3 o p_250616_ + 4 o p_251416_ + 5 o p_249664_ + 6 o p_250174_ + 7 o p_250897_ + 8 o p_248773_ + a (Lfup;IIIII)Z m_245924_ + 0 o p_249650_ + 1 o p_250692_ + 2 o p_251914_ + 3 o p_252343_ + 4 o p_250258_ + 5 o p_248997_ +fkz$1 net/minecraft/client/renderer/block/model/ItemModelGenerator$1 + a f_111673_ + ()V + static +fkz$a net/minecraft/client/renderer/block/model/ItemModelGenerator$Span + a f_111675_ + b f_111676_ + c f_111677_ + d f_111678_ + (Lfkz$b;II)V + 0 o p_111680_ + 1 o p_111681_ + 2 o p_111682_ + a (I)V m_111684_ + 0 o p_111685_ + a ()Lfkz$b; m_111683_ + b ()I m_111686_ + c ()I m_111687_ + d ()I m_111688_ +fkz$b net/minecraft/client/renderer/block/model/ItemModelGenerator$SpanFacing + a UP + b DOWN + c LEFT + d RIGHT + e f_111693_ + f f_111694_ + g f_111695_ + h $VALUES + ()V + static + (Ljava/lang/String;ILha;II)V + 0 o p_111699_ + 1 o p_111700_ + 2 o p_111701_ + 3 o p_111702_ + 4 o p_111703_ + a ()Lha; m_111704_ + b ()I m_111707_ + c ()I m_111708_ + d ()Z m_111709_ + e ()[Lfkz$b; m_173445_ + static + valueOf (Ljava/lang/String;)Lfkz$b; valueOf + static + 0 o p_111711_ + values ()[Lfkz$b; values + static +fl net/minecraft/commands/arguments/coordinates/LocalCoordinates + a f_174681_ + b f_119898_ + c f_119899_ + d f_119900_ + (DDD)V + 0 o p_119902_ + 1 o p_119903_ + 2 o p_119904_ + a (Lcom/mojang/brigadier/StringReader;)Lfl; m_119906_ + static + 0 o p_119907_ + a ()Z m_6888_ + a (Lcom/mojang/brigadier/StringReader;I)D m_119908_ + static + 0 o p_119909_ + 1 o p_119910_ + a (Lds;)Leei; m_6955_ + 0 o p_119912_ + b ()Z m_6892_ + b (Lds;)Leeh; m_6970_ + 0 o p_119915_ + c ()Z m_6900_ + equals (Ljava/lang/Object;)Z equals + 0 o p_119918_ + hashCode ()I hashCode +fla net/minecraft/client/renderer/block/model/ItemOverride + a f_111713_ + b f_111714_ + (Lacq;Ljava/util/List;)V + 0 o p_173447_ + 1 o p_173448_ + a ()Lacq; m_111718_ + b ()Ljava/util/stream/Stream; m_173449_ +fla$a net/minecraft/client/renderer/block/model/ItemOverride$Deserializer + ()V + a (Lcom/google/gson/JsonElement;Ljava/lang/reflect/Type;Lcom/google/gson/JsonDeserializationContext;)Lfla; deserialize + 0 o p_111725_ + 1 o p_111726_ + 2 o p_111727_ + a (Ljava/util/Map$Entry;)Lfla$b; m_173452_ + static + 0 o p_173453_ + a (Lcom/google/gson/JsonObject;)Ljava/util/List; m_173450_ + 0 o p_173451_ + deserialize (Lcom/google/gson/JsonElement;Ljava/lang/reflect/Type;Lcom/google/gson/JsonDeserializationContext;)Ljava/lang/Object; deserialize + 0 o p_111731_ + 1 o p_111732_ + 2 o p_111733_ +fla$b net/minecraft/client/renderer/block/model/ItemOverride$Predicate + a f_173454_ + b f_173455_ + (Lacq;F)V + 0 o p_173457_ + 1 o p_173458_ + a ()Lacq; m_173459_ + b ()F m_173460_ +flb net/minecraft/client/renderer/block/model/ItemOverrides + a f_111734_ + b f_265997_ + c f_111735_ + d f_173461_ + ()V + static + (Lfwv;Lfkw;Ljava/util/List;)V + 0 o p_251211_ + 1 o p_111741_ + 2 o p_111743_ + ()V + a (Lit/unimi/dsi/fastutil/objects/Object2IntMap;Lfla$b;)Lflb$b; m_173475_ + static + 0 o p_173476_ + 1 o p_173477_ + a (Lfwr;Lcfz;Lfew;Lbfz;I)Lfwr; m_173464_ + 0 o p_173465_ + 1 o p_173466_ + 2 o p_173467_ + 3 o p_173468_ + 4 o p_173469_ + a (I)[Lflb$b; m_173462_ + static + 0 o p_173463_ + a (Lfwv;Lfkw;Lfla;)Lfwr; m_246989_ + 0 o p_249483_ + 1 o p_251965_ + 2 o p_250816_ + b (I)[Lacq; m_173478_ + static + 0 o p_173479_ +flb$a net/minecraft/client/renderer/block/model/ItemOverrides$BakedOverride + a f_173480_ + b f_173481_ + ([Lflb$b;Lfwr;)V + 0 o p_173483_ + 1 o p_173484_ + a ([F)Z m_173485_ + 0 o p_173486_ +flb$b net/minecraft/client/renderer/block/model/ItemOverrides$PropertyMatcher + a f_173487_ + b f_173488_ + (IF)V + 0 o p_173490_ + 1 o p_173491_ +flc net/minecraft/client/renderer/block/model/ItemTransform + a f_111754_ + b f_111755_ + c f_111756_ + d f_111757_ + ()V + static + (Lorg/joml/Vector3f;Lorg/joml/Vector3f;Lorg/joml/Vector3f;)V + 0 o p_254427_ + 1 o p_254496_ + 2 o p_254022_ + a (ZLeij;)V m_111763_ + 0 o p_111764_ + 1 o p_111765_ + equals (Ljava/lang/Object;)Z equals + 0 o p_111767_ + hashCode ()I hashCode +flc$a net/minecraft/client/renderer/block/model/ItemTransform$Deserializer + a f_173492_ + b f_173493_ + c f_111769_ + d f_111770_ + e f_111771_ + ()V + static + ()V + a (Lcom/google/gson/JsonElement;Ljava/lang/reflect/Type;Lcom/google/gson/JsonDeserializationContext;)Lflc; deserialize + 0 o p_111775_ + 1 o p_111776_ + 2 o p_111777_ + a (Lcom/google/gson/JsonObject;Ljava/lang/String;Lorg/joml/Vector3f;)Lorg/joml/Vector3f; m_111778_ + 0 o p_111779_ + 1 o p_111780_ + 2 o p_253777_ + deserialize (Lcom/google/gson/JsonElement;Ljava/lang/reflect/Type;Lcom/google/gson/JsonDeserializationContext;)Ljava/lang/Object; deserialize + 0 o p_111783_ + 1 o p_111784_ + 2 o p_111785_ +fld net/minecraft/client/renderer/block/model/ItemTransforms + a f_111786_ + b f_111787_ + c f_111788_ + d f_111789_ + e f_111790_ + f f_111791_ + g f_111792_ + h f_111793_ + i f_111794_ + ()V + static + (Lflc;Lflc;Lflc;Lflc;Lflc;Lflc;Lflc;Lflc;)V + 0 o p_111798_ + 1 o p_111799_ + 2 o p_111800_ + 3 o p_111801_ + 4 o p_111802_ + 5 o p_111803_ + 6 o p_111804_ + 7 o p_111805_ + ()V + (Lfld;)V + 0 o p_111807_ + a (Lcfw;)Lflc; m_269404_ + 0 o p_270619_ + b (Lcfw;)Z m_269504_ + 0 o p_270365_ +fld$1 net/minecraft/client/renderer/block/model/ItemTransforms$1 + a f_268689_ + ()V + static +fld$a net/minecraft/client/renderer/block/model/ItemTransforms$Deserializer + ()V + a (Lcom/google/gson/JsonDeserializationContext;Lcom/google/gson/JsonObject;Lcfw;)Lflc; m_269518_ + 0 o p_270385_ + 1 o p_270436_ + 2 o p_270100_ + a (Lcom/google/gson/JsonElement;Ljava/lang/reflect/Type;Lcom/google/gson/JsonDeserializationContext;)Lfld; deserialize + 0 o p_111820_ + 1 o p_111821_ + 2 o p_111822_ + deserialize (Lcom/google/gson/JsonElement;Ljava/lang/reflect/Type;Lcom/google/gson/JsonDeserializationContext;)Ljava/lang/Object; deserialize + 0 o p_111824_ + 1 o p_111825_ + 2 o p_111826_ +fle net/minecraft/client/renderer/block/model/MultiVariant + a f_111845_ + (Ljava/util/List;)V + 0 o p_111847_ + a (Lfwv;Ljava/util/function/Function;Lfwz;Lacq;)Lfwr; m_7611_ + 0 o p_249016_ + 1 o p_111851_ + 2 o p_111852_ + 3 o p_111853_ + a ()Ljava/util/List; m_111848_ + a (Ljava/util/function/Function;Lacq;)V m_244731_ + static + 0 o p_247933_ + 1 o p_247934_ + a (Ljava/util/function/Function;)V m_5500_ + 0 o p_249314_ + equals (Ljava/lang/Object;)Z equals + 0 o p_111862_ + f ()Ljava/util/Collection; m_7970_ + hashCode ()I hashCode +fle$a net/minecraft/client/renderer/block/model/MultiVariant$Deserializer + ()V + a (Lcom/google/gson/JsonElement;Ljava/lang/reflect/Type;Lcom/google/gson/JsonDeserializationContext;)Lfle; deserialize + 0 o p_111867_ + 1 o p_111868_ + 2 o p_111869_ + deserialize (Lcom/google/gson/JsonElement;Ljava/lang/reflect/Type;Lcom/google/gson/JsonDeserializationContext;)Ljava/lang/Object; deserialize + 0 o p_111871_ + 1 o p_111872_ + 2 o p_111873_ +flf net/minecraft/client/renderer/block/model/Variant + a f_111874_ + b f_111875_ + c f_111876_ + d f_111877_ + (Lacq;Lj;ZI)V + 0 o p_111879_ + 1 o p_111880_ + 2 o p_111881_ + 3 o p_111882_ + a ()Lacq; m_111883_ + b ()Lj; m_6189_ + c ()Z m_7538_ + d ()I m_111886_ + equals (Ljava/lang/Object;)Z equals + 0 o p_111888_ + hashCode ()I hashCode + toString ()Ljava/lang/String; toString +flf$a net/minecraft/client/renderer/block/model/Variant$Deserializer + a f_173495_ + b f_173496_ + c f_173497_ + d f_173498_ + ()V + a (Lcom/google/gson/JsonElement;Ljava/lang/reflect/Type;Lcom/google/gson/JsonDeserializationContext;)Lflf; deserialize + 0 o p_111893_ + 1 o p_111894_ + 2 o p_111895_ + a (Lcom/google/gson/JsonObject;)Lfws; m_111896_ + 0 o p_111897_ + b (Lcom/google/gson/JsonObject;)Lacq; m_111898_ + 0 o p_111899_ + c (Lcom/google/gson/JsonObject;)I m_111900_ + 0 o p_111901_ + d (Lcom/google/gson/JsonObject;)Z m_111902_ + 0 o p_111903_ + deserialize (Lcom/google/gson/JsonElement;Ljava/lang/reflect/Type;Lcom/google/gson/JsonDeserializationContext;)Ljava/lang/Object; deserialize + 0 o p_111905_ + 1 o p_111906_ + 2 o p_111907_ +flg net/minecraft/client/renderer/block/model/multipart/AndCondition + a f_173499_ + d f_111908_ + (Ljava/lang/Iterable;)V + 0 o p_111910_ + a (Ldcb;Ljava/util/function/Predicate;)Z m_173500_ + static + 0 o p_173501_ + 1 o p_173502_ + a (Ldcc;Lflh;)Ljava/util/function/Predicate; m_111914_ + static + 0 o p_111915_ + 1 o p_111916_ + a (Ljava/util/List;Ldcb;)Z m_111917_ + static + 0 o p_111918_ + 1 o p_111919_ + getPredicate (Ldcc;)Ljava/util/function/Predicate; m_7289_ + 0 o p_111921_ +flh net/minecraft/client/renderer/block/model/multipart/Condition + b f_111922_ + c f_111923_ + ()V + static + a (Ldcb;)Z m_173503_ + static + 0 o p_173504_ + a (Ldcc;)Ljava/util/function/Predicate; m_111927_ + static + 0 o p_111928_ + b (Ldcc;)Ljava/util/function/Predicate; m_111931_ + static + 0 o p_111932_ + b (Ldcb;)Z m_173505_ + static + 0 o p_173506_ + getPredicate (Ldcc;)Ljava/util/function/Predicate; m_7289_ + 0 o p_111933_ +fli net/minecraft/client/renderer/block/model/multipart/KeyValueCondition + a f_111934_ + d f_111935_ + e f_111936_ + ()V + static + (Ljava/lang/String;Ljava/lang/String;)V + 0 o p_111939_ + 1 o p_111940_ + a (Ldde;Ljava/util/Optional;Ldcb;)Z m_111948_ + static + 0 o p_111949_ + 1 o p_111950_ + 2 o p_111951_ + a (Ldcb;Ljava/util/function/Predicate;)Z m_173507_ + static + 0 o p_173508_ + 1 o p_173509_ + a (Ldcc;Ldde;Ljava/lang/String;)Ljava/util/function/Predicate; m_111944_ + 0 o p_111945_ + 1 o p_111946_ + 2 o p_111947_ + a (Ljava/util/List;Ldcb;)Z m_111952_ + static + 0 o p_111953_ + 1 o p_111954_ + b (Ldcc;Ldde;Ljava/lang/String;)Ljava/util/function/Predicate; m_111955_ + 0 o p_111956_ + 1 o p_111957_ + 2 o p_111958_ + getPredicate (Ldcc;)Ljava/util/function/Predicate; m_7289_ + 0 o p_111960_ + toString ()Ljava/lang/String; toString +flj net/minecraft/client/renderer/block/model/multipart/MultiPart + a f_111962_ + b f_111963_ + (Ldcc;Ljava/util/List;)V + 0 o p_111965_ + 1 o p_111966_ + a (Lfwv;Ljava/util/function/Function;Lfwz;Lacq;)Lfwr; m_7611_ + 0 o p_249988_ + 1 o p_111972_ + 2 o p_111973_ + 3 o p_111974_ + a ()Ljava/util/List; m_111967_ + a (Ljava/util/function/Function;)V m_5500_ + 0 o p_251539_ + a (Lfll;)Ljava/util/stream/Stream; m_111968_ + static + 0 o p_111969_ + a (Ljava/util/function/Function;Lfll;)V m_244732_ + static + 0 o p_247935_ + 1 o p_247936_ + b ()Ljava/util/Set; m_111982_ + equals (Ljava/lang/Object;)Z equals + 0 o p_111984_ + f ()Ljava/util/Collection; m_7970_ + hashCode ()I hashCode +flj$a net/minecraft/client/renderer/block/model/multipart/MultiPart$Deserializer + a f_111987_ + (Lfkx$a;)V + 0 o p_111989_ + a (Lcom/google/gson/JsonDeserializationContext;Lcom/google/gson/JsonArray;)Ljava/util/List; m_111990_ + 0 o p_111991_ + 1 o p_111992_ + a (Lcom/google/gson/JsonElement;Ljava/lang/reflect/Type;Lcom/google/gson/JsonDeserializationContext;)Lflj; deserialize + 0 o p_111994_ + 1 o p_111995_ + 2 o p_111996_ + deserialize (Lcom/google/gson/JsonElement;Ljava/lang/reflect/Type;Lcom/google/gson/JsonDeserializationContext;)Ljava/lang/Object; deserialize + 0 o p_111998_ + 1 o p_111999_ + 2 o p_112000_ +flk net/minecraft/client/renderer/block/model/multipart/OrCondition + a f_173510_ + d f_112001_ + (Ljava/lang/Iterable;)V + 0 o p_112003_ + a (Ldcb;Ljava/util/function/Predicate;)Z m_173511_ + static + 0 o p_173512_ + 1 o p_173513_ + a (Ldcc;Lflh;)Ljava/util/function/Predicate; m_112007_ + static + 0 o p_112008_ + 1 o p_112009_ + a (Ljava/util/List;Ldcb;)Z m_112010_ + static + 0 o p_112011_ + 1 o p_112012_ + getPredicate (Ldcc;)Ljava/util/function/Predicate; m_7289_ + 0 o p_112014_ +fll net/minecraft/client/renderer/block/model/multipart/Selector + a f_112015_ + b f_112016_ + (Lflh;Lfle;)V + 0 o p_112018_ + 1 o p_112019_ + a ()Lfle; m_112020_ + a (Ldcc;)Ljava/util/function/Predicate; m_112021_ + 0 o p_112022_ + equals (Ljava/lang/Object;)Z equals + 0 o p_112024_ + hashCode ()I hashCode +fll$a net/minecraft/client/renderer/block/model/multipart/Selector$Deserializer + ()V + a (Ljava/util/Map$Entry;)Lflh; m_112035_ + static + 0 o p_112036_ + a (Lcom/google/gson/JsonElement;)Lflh; m_112027_ + static + 0 o p_112028_ + a (Lcom/google/gson/JsonElement;Ljava/lang/reflect/Type;Lcom/google/gson/JsonDeserializationContext;)Lfll; deserialize + 0 o p_112030_ + 1 o p_112031_ + 2 o p_112032_ + a (Lcom/google/gson/JsonObject;)Lflh; m_112033_ + static + 0 o p_112034_ + b (Lcom/google/gson/JsonElement;)Lflh; m_112037_ + static + 0 o p_112038_ + b (Lcom/google/gson/JsonObject;)Lflh; m_112039_ + 0 o p_112040_ + deserialize (Lcom/google/gson/JsonElement;Ljava/lang/reflect/Type;Lcom/google/gson/JsonDeserializationContext;)Ljava/lang/Object; deserialize + 0 o p_112042_ + 1 o p_112043_ + 2 o p_112044_ +flm net/minecraft/client/renderer/block/model/multipart/package-info +fln net/minecraft/client/renderer/block/model/package-info +flo net/minecraft/client/renderer/block/package-info +flp net/minecraft/client/renderer/blockentity/BannerRenderer + a f_173514_ + b f_173515_ + c f_173516_ + d f_173517_ + e f_173518_ + f f_173519_ + g f_112045_ + h f_112046_ + i f_112047_ + (Lflv$a;)V + 0 o p_173521_ + a (Lfee;Leij;Lfjx;II[FLfwu;)V m_234418_ + static + 0 o p_234419_ + 1 o p_234420_ + 2 o p_234421_ + 3 o p_234422_ + 4 o p_234423_ + 5 o p_234424_ + 6 o p_234425_ + a (Leij;Lfjx;IILfee;Lfwu;ZLjava/util/List;)V m_112065_ + static + 0 o p_112066_ + 1 o p_112067_ + 2 o p_112068_ + 3 o p_112069_ + 4 o p_112070_ + 5 o p_112071_ + 6 o p_112072_ + 7 o p_112073_ + a (Lczn;FLeij;Lfjx;II)V m_6922_ + 0 o p_112059_ + 1 o p_112060_ + 2 o p_112061_ + 3 o p_112062_ + 4 o p_112063_ + 5 o p_112064_ + a ()Lfek; m_173522_ + static + a (Leij;Lfjx;IILfee;Lfwu;ZLjava/util/List;Z)V m_112074_ + static + 0 o p_112075_ + 1 o p_112076_ + 2 o p_112077_ + 3 o p_112078_ + 4 o p_112079_ + 5 o p_112080_ + 6 o p_112081_ + 7 o p_112082_ + 8 o p_112083_ + a (Lczd;FLeij;Lfjx;II)V m_6922_ + 0 o p_112052_ + 1 o p_112053_ + 2 o p_112054_ + 3 o p_112055_ + 4 o p_112056_ + 5 o p_112057_ + a (ZLacp;)Lfwu; m_234426_ + static + 0 o p_234427_ + 1 o p_234428_ +flq net/minecraft/client/renderer/blockentity/BeaconRenderer + a f_112102_ + b f_173527_ + ()V + static + (Lflv$a;)V + 0 o p_173529_ + a (Lczn;)Z m_5932_ + 0 o p_112147_ + a (Lczi;FLeij;Lfjx;II)V m_6922_ + 0 o p_112140_ + 1 o p_112141_ + 2 o p_112142_ + 3 o p_112143_ + 4 o p_112144_ + 5 o p_112145_ + a (Leij;Lfjx;Lacq;FFJII[FFF)V m_112184_ + static + 0 o p_112185_ + 1 o p_112186_ + 2 o p_112187_ + 3 o p_112188_ + 4 o p_112189_ + 5 o p_112190_ + 6 o p_112191_ + 7 o p_112192_ + 8 o p_112193_ + 9 o p_112194_ + 10 o p_112195_ + a (Lczi;)Z m_5932_ + 0 o p_112138_ + a (Leij;Lein;FFFFIIFFFFFFFFFFFF)V m_112155_ + static + 0 o p_112156_ + 1 o p_112157_ + 2 o p_112158_ + 3 o p_112159_ + 4 o p_112160_ + 5 o p_112161_ + 6 o p_112162_ + 7 o p_112163_ + 8 o p_112164_ + 9 o p_112165_ + 10 o p_112166_ + 11 o p_112167_ + 12 o p_112168_ + 13 o p_112169_ + 14 o p_112170_ + 15 o p_112171_ + 16 o p_112172_ + 17 o p_112173_ + 18 o p_112174_ + 19 o p_112175_ + a (Leij;Lfjx;FJII[F)V m_112176_ + static + 0 o p_112177_ + 1 o p_112178_ + 2 o p_112179_ + 3 o p_112180_ + 4 o p_112181_ + 5 o p_112182_ + 6 o p_112183_ + a (Lczn;Leei;)Z m_142756_ + 0 o p_173534_ + 1 o p_173535_ + a (Lczn;FLeij;Lfjx;II)V m_6922_ + 0 o p_112149_ + 1 o p_112150_ + 2 o p_112151_ + 3 o p_112152_ + 4 o p_112153_ + 5 o p_112154_ + a (Lczi;Leei;)Z m_142756_ + 0 o p_173531_ + 1 o p_173532_ + a (Lorg/joml/Matrix4f;Lorg/joml/Matrix3f;Lein;FFFFIIFFFFFFFF)V m_112119_ + static + 0 o p_253960_ + 1 o p_254005_ + 2 o p_112122_ + 3 o p_112123_ + 4 o p_112124_ + 5 o p_112125_ + 6 o p_112126_ + 7 o p_112127_ + 8 o p_112128_ + 9 o p_112129_ + 10 o p_112130_ + 11 o p_112131_ + 12 o p_112132_ + 13 o p_112133_ + 14 o p_112134_ + 15 o p_112135_ + 16 o p_112136_ + a (Lorg/joml/Matrix4f;Lorg/joml/Matrix3f;Lein;FFFFIFFFF)V m_253258_ + static + 0 o p_253955_ + 1 o p_253713_ + 2 o p_253894_ + 3 o p_253871_ + 4 o p_253841_ + 5 o p_254568_ + 6 o p_254361_ + 7 o p_254357_ + 8 o p_254451_ + 9 o p_254240_ + 10 o p_254117_ + 11 o p_253698_ + aK_ ()I m_142163_ +flr net/minecraft/client/renderer/blockentity/BedRenderer + a f_173537_ + b f_173538_ + (Lflv$a;)V + 0 o p_173540_ + a (Lczn;FLeij;Lfjx;II)V m_6922_ + 0 o p_112212_ + 1 o p_112213_ + 2 o p_112214_ + 3 o p_112215_ + 4 o p_112216_ + 5 o p_112217_ + a (Lcmn;Lgu;)Z m_112201_ + static + 0 o p_112202_ + 1 o p_112203_ + a (Lczj;FLeij;Lfjx;II)V m_6922_ + 0 o p_112205_ + 1 o p_112206_ + 2 o p_112207_ + 3 o p_112208_ + 4 o p_112209_ + 5 o p_112210_ + a (Leij;Lfjx;Lfee;Lha;Lfwu;IIZ)V m_173541_ + 0 o p_173542_ + 1 o p_173543_ + 2 o p_173544_ + 3 o p_173545_ + 4 o p_173546_ + 5 o p_173547_ + 6 o p_173548_ + 7 o p_173549_ + b ()Lfek; m_173550_ + static + c ()Lfek; m_173551_ + static +fls net/minecraft/client/renderer/blockentity/BellRenderer + a f_112227_ + b f_173552_ + c f_112228_ + ()V + static + (Lflv$a;)V + 0 o p_173554_ + a (Lczl;FLeij;Lfjx;II)V m_6922_ + 0 o p_112233_ + 1 o p_112234_ + 2 o p_112235_ + 3 o p_112236_ + 4 o p_112237_ + 5 o p_112238_ + a (Lczn;FLeij;Lfjx;II)V m_6922_ + 0 o p_112240_ + 1 o p_112241_ + 2 o p_112242_ + 3 o p_112243_ + 4 o p_112244_ + 5 o p_112245_ + b ()Lfek; m_173555_ + static +flt net/minecraft/client/renderer/blockentity/BlockEntityRenderDispatcher + a f_112248_ + b f_112249_ + c f_112250_ + d f_112251_ + e f_112253_ + f f_173556_ + g f_173557_ + h f_234429_ + i f_234430_ + (Leov;Lfea;Ljava/util/function/Supplier;Ljava/util/function/Supplier;Ljava/util/function/Supplier;)V + 0 o p_234432_ + 1 o p_234433_ + 2 o p_234434_ + 3 o p_234435_ + 4 o p_234436_ + a (Lczn;Ljava/lang/Runnable;)V m_112278_ + static + 0 o p_112279_ + 1 o p_112280_ + a (Lflu;Lczn;FLeij;Lfjx;)V m_112284_ + static + 0 o p_112285_ + 1 o p_112286_ + 2 o p_112287_ + 3 o p_112288_ + 4 o p_112289_ + a (Lcmm;)V m_112257_ + 0 o p_112258_ + a (Lczn;Leij;Lfjx;II)Z m_112272_ + 0 o p_112273_ + 1 o p_112274_ + 2 o p_112275_ + 3 o p_112276_ + 4 o p_112277_ + a (Lflu;Lczn;Leij;Lfjx;II)V m_112290_ + static + 0 o p_112291_ + 1 o p_112292_ + 2 o p_112293_ + 3 o p_112294_ + 4 o p_112295_ + 5 o p_112296_ + a (Lakx;)V m_6213_ + 0 o p_173563_ + a (Lczn;FLeij;Lfjx;)V m_112267_ + 0 o p_112268_ + 1 o p_112269_ + 2 o p_112270_ + 3 o p_112271_ + a (Lcmm;Lemz;Leeg;)V m_173564_ + 0 o p_173565_ + 1 o p_173566_ + 2 o p_173567_ + a (Lczn;)Lflu; m_112265_ + 0 o p_112266_ + b (Lflu;Lczn;FLeij;Lfjx;)V m_112297_ + static + 0 o p_112298_ + 1 o p_112299_ + 2 o p_112300_ + 3 o p_112301_ + 4 o p_112302_ +flu net/minecraft/client/renderer/blockentity/BlockEntityRenderer + a (Lczn;Leei;)Z m_142756_ + 0 o p_173568_ + 1 o p_173569_ + a (Lczn;FLeij;Lfjx;II)V m_6922_ + 0 o p_112307_ + 1 o p_112308_ + 2 o p_112309_ + 3 o p_112310_ + 4 o p_112311_ + 5 o p_112312_ + a (Lczn;)Z m_5932_ + 0 o p_112306_ + aK_ ()I m_142163_ +flv net/minecraft/client/renderer/blockentity/BlockEntityRendererProvider + create (Lflv$a;)Lflu; m_173570_ + 0 o p_173571_ +flv$a net/minecraft/client/renderer/blockentity/BlockEntityRendererProvider$Context + a f_173572_ + b f_173573_ + c f_234437_ + d f_234438_ + e f_173574_ + f f_173575_ + (Lflt;Lfko;Lfpw;Lfow;Lfea;Leov;)V + 0 o p_234440_ + 1 o p_234441_ + 2 o p_234442_ + 3 o p_234443_ + 4 o p_234444_ + 5 o p_234445_ + a ()Lflt; m_173581_ + a (Lfec;)Lfee; m_173582_ + 0 o p_173583_ + b ()Lfko; m_173584_ + c ()Lfow; m_234446_ + d ()Lfpw; m_234447_ + e ()Lfea; m_173585_ + f ()Leov; m_173586_ +flw net/minecraft/client/renderer/blockentity/BlockEntityRenderers + a f_173587_ + ()V + static + ()V + a (Lflv$a;)Ljava/util/Map; m_173598_ + static + 0 o p_173599_ + a (Lcom/google/common/collect/ImmutableMap$Builder;Lflv$a;Lczp;Lflv;)V m_257086_ + static + 0 o p_258148_ + 1 o p_258149_ + 2 o p_258150_ + 3 o p_258151_ + a (Lczp;Lflv;)V m_173590_ + static + 0 o p_173591_ + 1 o p_173592_ +flx net/minecraft/client/renderer/blockentity/BrightnessCombiner + ()V + a (Lczn;)Lit/unimi/dsi/fastutil/ints/Int2IntFunction; m_7693_ + 0 o p_112318_ + a (Lczn;Lczn;I)I m_112322_ + static + 0 o p_112323_ + 1 o p_112324_ + 2 o p_112325_ + a (Ljava/lang/Object;)Ljava/lang/Object; m_7693_ + 0 o p_112327_ + a (Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object; m_6959_ + 0 o p_112329_ + 1 o p_112330_ + a (Lczn;Lczn;)Lit/unimi/dsi/fastutil/ints/Int2IntFunction; m_6959_ + 0 o p_112320_ + 1 o p_112321_ + a (I)I m_112315_ + static + 0 o p_112316_ + a ()Lit/unimi/dsi/fastutil/ints/Int2IntFunction; m_6502_ + b ()Ljava/lang/Object; m_6502_ + b (I)I m_112332_ + static + 0 o p_112333_ +fly net/minecraft/client/renderer/blockentity/BrushableBlockRenderer + a f_276519_ + (Lflv$a;)V + 0 o p_277899_ + a (Lczr;FLeij;Lfjx;II)V m_6922_ + 0 o p_277712_ + 1 o p_277981_ + 2 o p_277490_ + 3 o p_278015_ + 4 o p_277463_ + 5 o p_277346_ + a (Lha;I)[F m_277029_ + 0 o p_278030_ + 1 o p_277997_ + a (Lczn;FLeij;Lfjx;II)V m_6922_ + 0 o p_278054_ + 1 o p_277517_ + 2 o p_277839_ + 3 o p_277710_ + 4 o p_277647_ + 5 o p_277383_ +fly$1 net/minecraft/client/renderer/blockentity/BrushableBlockRenderer$1 + a f_276538_ + ()V + static +flz net/minecraft/client/renderer/blockentity/CampfireRenderer + a f_173600_ + b f_234448_ + (Lflv$a;)V + 0 o p_173602_ + a (Lczt;FLeij;Lfjx;II)V m_6922_ + 0 o p_112344_ + 1 o p_112345_ + 2 o p_112346_ + 3 o p_112347_ + 4 o p_112348_ + 5 o p_112349_ + a (Lczn;FLeij;Lfjx;II)V m_6922_ + 0 o p_112337_ + 1 o p_112338_ + 2 o p_112339_ + 3 o p_112340_ + 4 o p_112341_ + 5 o p_112342_ +fm net/minecraft/commands/arguments/coordinates/RotationArgument + a f_120475_ + b f_120476_ + ()V + static + ()V + a (Lcom/mojang/brigadier/context/CommandContext;Ljava/lang/String;)Lfk; m_120482_ + static + 0 o p_120483_ + 1 o p_120484_ + a (Lcom/mojang/brigadier/StringReader;)Lfk; parse + 0 o p_120481_ + a ()Lfm; m_120479_ + static + getExamples ()Ljava/util/Collection; getExamples + parse (Lcom/mojang/brigadier/StringReader;)Ljava/lang/Object; parse + 0 o p_120487_ +fma net/minecraft/client/renderer/blockentity/ChestRenderer + a f_173603_ + b f_173604_ + c f_173605_ + d f_112350_ + e f_112351_ + f f_112352_ + g f_112353_ + h f_112354_ + i f_112355_ + j f_112356_ + k f_112357_ + l f_112358_ + m f_112359_ + (Lflv$a;)V + 0 o p_173607_ + a (Lczn;FLeij;Lfjx;II)V m_6922_ + 0 o p_112363_ + 1 o p_112364_ + 2 o p_112365_ + 3 o p_112366_ + 4 o p_112367_ + 5 o p_112368_ + a (Leij;Lein;Lfee;Lfee;Lfee;FII)V m_112369_ + 0 o p_112370_ + 1 o p_112371_ + 2 o p_112372_ + 3 o p_112373_ + 4 o p_112374_ + 5 o p_112375_ + 6 o p_112376_ + 7 o p_112377_ + b ()Lfek; m_173608_ + static + c ()Lfek; m_173609_ + static + d ()Lfek; m_173610_ + static +fmb net/minecraft/client/renderer/blockentity/ConduitRenderer + a f_112378_ + b f_112379_ + c f_112380_ + d f_112381_ + e f_112382_ + f f_112383_ + g f_112384_ + h f_112385_ + i f_112386_ + j f_112387_ + k f_173611_ + ()V + static + (Lflv$a;)V + 0 o p_173613_ + a (Lczn;FLeij;Lfjx;II)V m_6922_ + 0 o p_112392_ + 1 o p_112393_ + 2 o p_112394_ + 3 o p_112395_ + 4 o p_112396_ + 5 o p_112397_ + a (Lczz;FLeij;Lfjx;II)V m_6922_ + 0 o p_112399_ + 1 o p_112400_ + 2 o p_112401_ + 3 o p_112402_ + 4 o p_112403_ + 5 o p_112404_ + b ()Lfek; m_173614_ + static + c ()Lfek; m_173615_ + static + d ()Lfek; m_173616_ + static + e ()Lfek; m_173617_ + static +fmc net/minecraft/client/renderer/blockentity/DecoratedPotRenderer + a f_271506_ + b f_271523_ + c f_271422_ + d f_271482_ + e f_271240_ + f f_271233_ + g f_271097_ + h f_271260_ + i f_271153_ + j f_271321_ + k f_271265_ + l f_271161_ + m f_271413_ + n f_271443_ + o f_271185_ + (Lflv$a;)V + 0 o p_272872_ + a (Ldac;FLeij;Lfjx;II)V m_6922_ + 0 o p_273776_ + 1 o p_273103_ + 2 o p_273455_ + 3 o p_273010_ + 4 o p_273407_ + 5 o p_273059_ + a (Lczn;FLeij;Lfjx;II)V m_6922_ + 0 o p_273082_ + 1 o p_273219_ + 2 o p_272843_ + 3 o p_272742_ + 4 o p_273608_ + 5 o p_273439_ + a (Lfee;Leij;Lfjx;IILfwu;)V m_271954_ + 0 o p_273495_ + 1 o p_272899_ + 2 o p_273582_ + 3 o p_273242_ + 4 o p_273108_ + 5 o p_273173_ + a (Lcfu;)Lfwu; m_271834_ + static + 0 o p_272698_ + b ()Lfek; m_272233_ + static + c ()Lfek; m_272062_ + static +fmd net/minecraft/client/renderer/blockentity/EnchantTableRenderer + a f_112405_ + b f_112406_ + ()V + static + (Lflv$a;)V + 0 o p_173619_ + a (Lczn;FLeij;Lfjx;II)V m_6922_ + 0 o p_112411_ + 1 o p_112412_ + 2 o p_112413_ + 3 o p_112414_ + 4 o p_112415_ + 5 o p_112416_ + a (Ldag;FLeij;Lfjx;II)V m_6922_ + 0 o p_112418_ + 1 o p_112419_ + 2 o p_112420_ + 3 o p_112421_ + 4 o p_112422_ + 5 o p_112423_ +fme net/minecraft/client/renderer/blockentity/HangingSignRenderer + a f_244131_ + b f_244095_ + c f_244118_ + d f_244072_ + e f_244584_ + f f_243690_ + g f_244159_ + h f_244071_ + i f_278461_ + j f_278477_ + k f_278502_ + l f_244009_ + ()V + static + (Lflv$a;)V + 0 o p_248772_ + a (Lflv$a;Lddo;)Lfme$a; m_245648_ + static + 0 o p_252261_ + 1 o p_251956_ + a (Leij;IILfcb;Lein;)V m_245885_ + 0 o p_251159_ + 1 o p_249874_ + 2 o p_249794_ + 3 o p_248746_ + 4 o p_249165_ + a (Lddo;)Lfwu; m_245629_ + 0 o p_251791_ + a (Leij;FLdcb;)V m_276777_ + 0 o p_277807_ + 1 o p_277917_ + 2 o p_277638_ + a (Lczn;FLeij;Lfjx;II)V m_6922_ + 0 o p_249617_ + 1 o p_250308_ + 2 o p_250118_ + 3 o p_251673_ + 4 o p_250384_ + 5 o p_251683_ + a (Ldav;FLeij;Lfjx;II)V m_6922_ + 0 o p_249482_ + 1 o p_249273_ + 2 o p_250062_ + 3 o p_250878_ + 4 o p_249035_ + 5 o p_252030_ + b (Lddo;)Lddo; m_246656_ + static + 0 o p_249901_ + b ()F m_278770_ + c ()F m_278631_ + d ()Leei; m_278725_ + e ()Lfek; m_247112_ + static +fme$a net/minecraft/client/renderer/blockentity/HangingSignRenderer$HangingSignModel + a f_244554_ + b f_244294_ + c f_244373_ + d f_243977_ + (Lfee;)V + 0 o p_249124_ + a (Ldcb;)V m_246561_ + 0 o p_250268_ + a (Leij;Lein;IIFFFF)V m_7695_ + 0 o p_251590_ + 1 o p_249470_ + 2 o p_250912_ + 3 o p_251773_ + 4 o p_248839_ + 5 o p_249626_ + 6 o p_251131_ + 7 o p_249679_ +fmf net/minecraft/client/renderer/blockentity/LecternRenderer + a f_112424_ + (Lflv$a;)V + 0 o p_173621_ + a (Ldao;FLeij;Lfjx;II)V m_6922_ + 0 o p_112435_ + 1 o p_112436_ + 2 o p_112437_ + 3 o p_112438_ + 4 o p_112439_ + 5 o p_112440_ + a (Lczn;FLeij;Lfjx;II)V m_6922_ + 0 o p_112428_ + 1 o p_112429_ + 2 o p_112430_ + 3 o p_112431_ + 4 o p_112432_ + 5 o p_112433_ +fmg net/minecraft/client/renderer/blockentity/PistonHeadRenderer + a f_112441_ + (Lflv$a;)V + 0 o p_173623_ + a (Ldbx;FLeij;Lfjx;II)V m_6922_ + 0 o p_112452_ + 1 o p_112453_ + 2 o p_112454_ + 3 o p_112455_ + 4 o p_112456_ + 5 o p_112457_ + a (Lczn;FLeij;Lfjx;II)V m_6922_ + 0 o p_112445_ + 1 o p_112446_ + 2 o p_112447_ + 3 o p_112448_ + 4 o p_112449_ + 5 o p_112450_ + a (Lgu;Ldcb;Leij;Lfjx;Lcmm;ZI)V m_112458_ + 0 o p_112459_ + 1 o p_112460_ + 2 o p_112461_ + 3 o p_112462_ + 4 o p_112463_ + 5 o p_112464_ + 6 o p_112465_ + aK_ ()I m_142163_ +fmh net/minecraft/client/renderer/blockentity/ShulkerBoxRenderer + a f_112466_ + (Lflv$a;)V + 0 o p_173626_ + a (Ldau;FLeij;Lfjx;II)V m_6922_ + 0 o p_112478_ + 1 o p_112479_ + 2 o p_112480_ + 3 o p_112481_ + 4 o p_112482_ + 5 o p_112483_ + a (Lczn;FLeij;Lfjx;II)V m_6922_ + 0 o p_112471_ + 1 o p_112472_ + 2 o p_112473_ + 3 o p_112474_ + 4 o p_112475_ + 5 o p_112476_ +fmi net/minecraft/client/renderer/blockentity/SignRenderer + a f_173629_ + b f_173630_ + c f_173631_ + d f_278501_ + e f_278459_ + f f_173632_ + g f_173633_ + ()V + static + (Lflv$a;)V + 0 o p_173636_ + a (Ldav;Leij;Lfjx;IILdcb;Lcwn;Lddo;Lfcb;)V m_278756_ + 0 o p_279389_ + 1 o p_279331_ + 2 o p_279303_ + 3 o p_279396_ + 4 o p_279203_ + 5 o p_279391_ + 6 o p_279224_ + 7 o p_279162_ + 8 o p_279444_ + a (Lflv$a;Lddo;)Lfmi$a; m_173649_ + static + 0 o p_173650_ + 1 o p_173651_ + a (Leij;IILfcb;Lein;)V m_245885_ + 0 o p_250252_ + 1 o p_249399_ + 2 o p_249042_ + 3 o p_250082_ + 4 o p_251093_ + a (Leij;Lfjx;IILddo;Lfcb;)V m_278784_ + 0 o p_279104_ + 1 o p_279408_ + 2 o p_279494_ + 3 o p_279344_ + 4 o p_279170_ + 5 o p_279159_ + a (Ldaw;)I m_173639_ + static + 0 o p_277914_ + a (Lddo;)Lfwu; m_245629_ + 0 o p_251961_ + a (Leij;ZLeei;)V m_278823_ + 0 o p_279133_ + 1 o p_279134_ + 2 o p_279280_ + a (Lgu;I)Z m_277119_ + static + 0 o p_277741_ + 1 o p_278022_ + a (ILsw;)Laom; m_276705_ + 0 o p_277226_ + 1 o p_277227_ + a (Leij;FLdcb;)V m_276777_ + 0 o p_278074_ + 1 o p_277875_ + 2 o p_277559_ + a (Lgu;Ldaw;Leij;Lfjx;IIIZ)V m_278841_ + 0 o p_279403_ + 1 o p_279361_ + 2 o p_279234_ + 3 o p_279338_ + 4 o p_279300_ + 5 o p_279179_ + 6 o p_279357_ + 7 o p_279325_ + a (Lczn;FLeij;Lfjx;II)V m_6922_ + 0 o p_112490_ + 1 o p_112491_ + 2 o p_112492_ + 3 o p_112493_ + 4 o p_112494_ + 5 o p_112495_ + a (Ldav;FLeij;Lfjx;II)V m_6922_ + 0 o p_112497_ + 1 o p_112498_ + 2 o p_112499_ + 3 o p_112500_ + 4 o p_112501_ + 5 o p_112502_ + a (Lfea;Lddo;)Lfmi$a; m_173646_ + static + 0 o p_173647_ + 1 o p_173648_ + b (Lddo;)Lddo; m_173644_ + static + 0 o p_173645_ + b ()F m_278770_ + c ()F m_278631_ + d ()Leei; m_278725_ + f ()Lfek; m_173654_ + static +fmi$a net/minecraft/client/renderer/blockentity/SignRenderer$SignModel + a f_173655_ + b f_112507_ + (Lfee;)V + 0 o p_173657_ + a (Leij;Lein;IIFFFF)V m_7695_ + 0 o p_112510_ + 1 o p_112511_ + 2 o p_112512_ + 3 o p_112513_ + 4 o p_112514_ + 5 o p_112515_ + 6 o p_112516_ + 7 o p_112517_ +fmj net/minecraft/client/renderer/blockentity/SkullBlockRenderer + a f_173658_ + b f_112519_ + ()V + static + (Lflv$a;)V + 0 o p_173660_ + a (Lha;FFLeij;Lfjx;ILfdc;Lfkf;)V m_173663_ + static + 0 o p_173664_ + 1 o p_173665_ + 2 o p_173666_ + 3 o p_173667_ + 4 o p_173668_ + 5 o p_173669_ + 6 o p_173670_ + 7 o p_173671_ + a (Lczn;FLeij;Lfjx;II)V m_6922_ + 0 o p_112527_ + 1 o p_112528_ + 2 o p_112529_ + 3 o p_112530_ + 4 o p_112531_ + 5 o p_112532_ + a (Ldax;FLeij;Lfjx;II)V m_6922_ + 0 o p_112534_ + 1 o p_112535_ + 2 o p_112536_ + 3 o p_112537_ + 4 o p_112538_ + 5 o p_112539_ + a (Ljava/util/HashMap;)V m_260765_ + static + 0 o p_261388_ + a (Lfea;)Ljava/util/Map; m_173661_ + static + 0 o p_173662_ + a (Lcwp$a;Lcom/mojang/authlib/GameProfile;)Lfkf; m_112523_ + static + 0 o p_112524_ + 1 o p_112525_ +fmk net/minecraft/client/renderer/blockentity/SpawnerRenderer + a f_234449_ + (Lflv$a;)V + 0 o p_173673_ + a (Lczn;FLeij;Lfjx;II)V m_6922_ + 0 o p_112556_ + 1 o p_112557_ + 2 o p_112558_ + 3 o p_112559_ + 4 o p_112560_ + 5 o p_112561_ + a (Ldaz;FLeij;Lfjx;II)V m_6922_ + 0 o p_112563_ + 1 o p_112564_ + 2 o p_112565_ + 3 o p_112566_ + 4 o p_112567_ + 5 o p_112568_ +fml net/minecraft/client/renderer/blockentity/StructureBlockRenderer + (Lflv$a;)V + 0 o p_173675_ + a (Ldba;FLeij;Lfjx;II)V m_6922_ + 0 o p_112583_ + 1 o p_112584_ + 2 o p_112585_ + 3 o p_112586_ + 4 o p_112587_ + 5 o p_112588_ + a (Ldba;)Z m_5932_ + 0 o p_112581_ + a (Lczn;FLeij;Lfjx;II)V m_6922_ + 0 o p_112574_ + 1 o p_112575_ + 2 o p_112576_ + 3 o p_112577_ + 4 o p_112578_ + 5 o p_112579_ + a (Ldba;Lein;Lgu;Leij;)V m_173676_ + 0 o p_173677_ + 1 o p_173678_ + 2 o p_173679_ + 3 o p_173680_ + a (Lczn;)Z m_5932_ + 0 o p_112572_ + aK_ ()I m_142163_ +fml$1 net/minecraft/client/renderer/blockentity/StructureBlockRenderer$1 + a f_112595_ + b f_112596_ + ()V + static +fmm net/minecraft/client/renderer/blockentity/TheEndGatewayRenderer + c f_112598_ + ()V + static + (Lflv$a;)V + 0 o p_173683_ + a (Ldbc;FLeij;Lfjx;II)V m_6922_ + 0 o p_112620_ + 1 o p_112621_ + 2 o p_112622_ + 3 o p_112623_ + 4 o p_112624_ + 5 o p_112625_ + a (Lczn;FLeij;Lfjx;II)V m_6922_ + 0 o p_112606_ + 1 o p_112607_ + 2 o p_112608_ + 3 o p_112609_ + 4 o p_112610_ + 5 o p_112611_ + a (Ldbb;FLeij;Lfjx;II)V m_6922_ + 0 o p_112613_ + 1 o p_112614_ + 2 o p_112615_ + 3 o p_112616_ + 4 o p_112617_ + 5 o p_112618_ + aK_ ()I m_142163_ + b ()F m_142491_ + c ()F m_142489_ + d ()Lfkf; m_142330_ +fmn net/minecraft/client/renderer/blockentity/TheEndPortalRenderer + a f_112626_ + b f_112627_ + ()V + static + (Lflv$a;)V + 0 o p_173689_ + a (Ldbc;Lorg/joml/Matrix4f;Lein;)V m_173690_ + 0 o p_173691_ + 1 o p_254024_ + 2 o p_173693_ + a (Ldbc;Lorg/joml/Matrix4f;Lein;FFFFFFFFLha;)V m_252771_ + 0 o p_253949_ + 1 o p_254247_ + 2 o p_254390_ + 3 o p_254147_ + 4 o p_253639_ + 5 o p_254107_ + 6 o p_254109_ + 7 o p_254021_ + 8 o p_254458_ + 9 o p_254086_ + 10 o p_254310_ + 11 o p_253619_ + a (Ldbc;FLeij;Lfjx;II)V m_6922_ + 0 o p_112650_ + 1 o p_112651_ + 2 o p_112652_ + 3 o p_112653_ + 4 o p_112654_ + 5 o p_112655_ + a (Lczn;FLeij;Lfjx;II)V m_6922_ + 0 o p_112637_ + 1 o p_112638_ + 2 o p_112639_ + 3 o p_112640_ + 4 o p_112641_ + 5 o p_112642_ + b ()F m_142491_ + c ()F m_142489_ + d ()Lfkf; m_142330_ +fmo net/minecraft/client/renderer/blockentity/package-info +fmp net/minecraft/client/renderer/chunk/ChunkRenderDispatcher + a f_112672_ + b f_173707_ + c f_173708_ + d f_194400_ + e f_194401_ + f f_194402_ + g f_194403_ + h f_112674_ + i f_112675_ + j f_112676_ + k f_112677_ + l f_112678_ + m f_112679_ + n f_112680_ + o f_112681_ + p f_112682_ + q f_112683_ + ()V + static + (Lfew;Lfjv;Ljava/util/concurrent/Executor;ZLfjk;)V + 0 o p_194405_ + 1 o p_194406_ + 2 o p_194407_ + 3 o p_194408_ + 4 o p_194409_ + a (Lfmp$c$a;)V m_112709_ + 0 o p_112710_ + a (Lfmp$c;Lfms;)V m_200431_ + 0 o p_200432_ + 1 o p_200433_ + a (Ljava/util/concurrent/CompletableFuture;)Ljava/util/concurrent/CompletionStage; m_194415_ + static + 0 o p_194416_ + a (Lfmp$c$a;Lfjk;)Ljava/util/concurrent/CompletableFuture; m_194412_ + static + 0 o p_194413_ + 1 o p_194414_ + a (Leie$b;Leim;)Ljava/util/concurrent/CompletableFuture; m_234450_ + 0 o p_234451_ + 1 o p_234452_ + a (Lfjk;Lfmp$a;Ljava/lang/Throwable;)V m_234456_ + 0 o p_234457_ + 1 o p_234458_ + 2 o p_234459_ + a (Leim;Leie$b;)V m_234453_ + static + 0 o p_234454_ + 1 o p_234455_ + a ()Ljava/lang/String; m_112719_ + a (Lfmp$a;Lfjk;)V m_234460_ + 0 o p_234461_ + 1 o p_234462_ + a (Leei;)V m_112693_ + 0 o p_112694_ + a (Lfew;)V m_194410_ + 0 o p_194411_ + b (Lfmp$c$a;)V m_234463_ + 0 o p_234464_ + b ()I m_173712_ + c ()I m_173713_ + d ()I m_173714_ + e ()Leei; m_112727_ + f ()V m_194417_ + g ()V m_112731_ + h ()Z m_112732_ + i ()V m_112733_ + j ()V m_112734_ + k ()Lfmp$c$a; m_194418_ + l ()V m_112735_ +fmp$a net/minecraft/client/renderer/chunk/ChunkRenderDispatcher$ChunkTaskResult + a SUCCESSFUL + b CANCELLED + c $VALUES + ()V + static + (Ljava/lang/String;I)V + 0 o p_112743_ + 1 o p_112744_ + a ()[Lfmp$a; m_173715_ + static + valueOf (Ljava/lang/String;)Lfmp$a; valueOf + static + 0 o p_112746_ + values ()[Lfmp$a; values + static +fmp$b net/minecraft/client/renderer/chunk/ChunkRenderDispatcher$CompiledChunk + a f_112748_ + b f_112749_ + c f_112752_ + d f_112753_ + e f_112754_ + ()V + static + ()V + a ()Z m_112757_ + a (Lfkf;)Z m_112758_ + 0 o p_112759_ + a (Lha;Lha;)Z m_7259_ + 0 o p_112771_ + 1 o p_112772_ + b ()Ljava/util/List; m_112773_ +fmp$b$1 net/minecraft/client/renderer/chunk/ChunkRenderDispatcher$CompiledChunk$1 + ()V + a (Lha;Lha;)Z m_7259_ + 0 o p_112782_ + 1 o p_112783_ +fmp$c net/minecraft/client/renderer/chunk/ChunkRenderDispatcher$RenderChunk + a f_173716_ + b f_173717_ + c f_112784_ + d f_112786_ + e f_202433_ + f f_112787_ + g f_112788_ + h f_112789_ + i f_112790_ + j f_112785_ + k f_112792_ + l f_112793_ + m f_112794_ + n f_112795_ + (Lfmp;IIII)V + 0 o p_202435_ + 1 o p_202436_ + 2 o p_202437_ + 3 o p_202438_ + 4 o p_202439_ + a (Lfmp;Lfms;)V m_200434_ + 0 o p_200435_ + 1 o p_200436_ + a (III)V m_112801_ + 0 o p_112802_ + 1 o p_112803_ + 2 o p_112804_ + a (Z)V m_112828_ + 0 o p_112829_ + a ()Z m_112798_ + a (Lfms;)Lfmp$c$a; m_200437_ + 0 o p_200438_ + a (Lgu;)Z m_112822_ + 0 o p_112823_ + a (Lfkf;Lfmp;)Z m_112809_ + 0 o p_112810_ + 1 o p_112811_ + a (Leie;)V m_112805_ + 0 o p_112806_ + a (Lha;)Lgu; m_112824_ + 0 o p_112825_ + a (Lfkf;)Leim; m_112807_ + 0 o p_112808_ + a ([Lgu$a;)V m_112830_ + static + 0 o p_112831_ + a (Ljava/util/Collection;)V m_234465_ + 0 o p_234466_ + b ()Leed; m_202440_ + b (Lfms;)V m_200439_ + 0 o p_200440_ + b (Lfkf;)Leim; m_285706_ + static + 0 o p_286178_ + c ()D m_112832_ + c (Lfkf;)Lfkf; m_112836_ + static + 0 o p_112837_ + d ()Lfmp$b; m_112835_ + e ()V m_112838_ + f ()Lgu; m_112839_ + g ()V m_112840_ + h ()Z m_112841_ + i ()Z m_112842_ + j ()Z m_194419_ + k ()V m_112846_ +fmp$c$a net/minecraft/client/renderer/chunk/ChunkRenderDispatcher$RenderChunk$ChunkCompileTask + a f_112847_ + b f_112848_ + c f_194420_ + d f_112849_ + (Lfmp$c;DZ)V + 0 o p_194422_ + 1 o p_194423_ + 2 o p_194424_ + a (Lfmp$c$a;)I compareTo + 0 o p_112855_ + a (Lfjk;)Ljava/util/concurrent/CompletableFuture; m_5869_ + 0 o p_112853_ + a ()V m_6204_ + b ()Ljava/lang/String; m_183497_ + compareTo (Ljava/lang/Object;)I compareTo + 0 o p_112857_ +fmp$c$b net/minecraft/client/renderer/chunk/ChunkRenderDispatcher$RenderChunk$RebuildTask + e f_112858_ + f f_112859_ + (Lfmp$c;DLfmr;Z)V + 0 o p_194426_ + 1 o p_194427_ + 2 o p_194428_ + 3 o p_194429_ + a (Lfmp$b;Ljava/util/List;Ljava/lang/Throwable;)Lfmp$a; m_234472_ + 0 o p_234473_ + 1 o p_234474_ + 2 o p_234475_ + a (Lfmp$c$b$a;Lczn;)V m_234476_ + 0 o p_234477_ + 1 o p_234478_ + a (Lfjk;)Ljava/util/concurrent/CompletableFuture; m_5869_ + 0 o p_112872_ + a (FFFLfjk;)Lfmp$c$b$a; m_234467_ + 0 o p_234468_ + 1 o p_234469_ + 2 o p_234470_ + 3 o p_234471_ + a ()V m_6204_ + a (Ljava/util/List;Lfmp$b;Lfkf;Leie$b;)V m_234479_ + 0 o p_234480_ + 1 o p_234481_ + 2 o p_234482_ + 3 o p_234483_ + b ()Ljava/lang/String; m_183497_ +fmp$c$b$a net/minecraft/client/renderer/chunk/ChunkRenderDispatcher$RenderChunk$RebuildTask$CompileResults + a f_234484_ + b f_234485_ + c f_234486_ + d f_234487_ + e f_234488_ + ()V +fmp$c$c net/minecraft/client/renderer/chunk/ChunkRenderDispatcher$RenderChunk$ResortTransparencyTask + e f_112885_ + f f_112886_ + (Lfmp$c;DLfmp$b;)V + 0 o p_112888_ + 1 o p_112889_ + 2 o p_112890_ + a (Lfmp$a;Ljava/lang/Throwable;)Lfmp$a; m_234490_ + 0 o p_234491_ + 1 o p_234492_ + a (Lfjk;)Ljava/util/concurrent/CompletableFuture; m_5869_ + 0 o p_112893_ + a ()V m_6204_ + a (Ljava/lang/Void;)Lfmp$a; m_112897_ + static + 0 o p_112898_ + b ()Ljava/lang/String; m_183497_ +fmq net/minecraft/client/renderer/chunk/RenderChunk + a f_200441_ + b f_200442_ + c f_200443_ + d f_200444_ + (Ldei;)V + 0 o p_200446_ + a (Lgu;)Lczn; m_200451_ + 0 o p_200452_ + a (III)Ljava/lang/String; m_200447_ + 0 o p_200448_ + 1 o p_200449_ + 2 o p_200450_ + b (Lgu;)Ldcb; m_200453_ + 0 o p_200454_ +fmr net/minecraft/client/renderer/chunk/RenderChunkRegion + a f_112905_ + b f_112908_ + c f_112899_ + d f_112900_ + (Lcmm;II[[Lfmq;)V + 0 o p_200456_ + 1 o p_200457_ + 2 o p_200458_ + 3 o p_200459_ + C_ ()I m_141937_ + D_ ()I m_141928_ + a (Lgu;Lclx;)I m_6171_ + 0 o p_112937_ + 1 o p_112938_ + a (Lha;Z)F m_7717_ + 0 o p_112940_ + 1 o p_112941_ + a_ (Lgu;)Ldcb; m_8055_ + 0 o p_112947_ + b_ (Lgu;)Ldxe; m_6425_ + 0 o p_112943_ + c_ (Lgu;)Lczn; m_7702_ + 0 o p_112945_ + s_ ()Ldwt; m_5518_ +fms net/minecraft/client/renderer/chunk/RenderRegionCache + a f_200460_ + ()V + a (Lcmm;Lgu;Lgu;I)Lfmr; m_200465_ + 0 o p_200466_ + 1 o p_200467_ + 2 o p_200468_ + 3 o p_200469_ + a (Lcmm;J)Lfms$a; m_200462_ + static + 0 o p_200463_ + 1 o p_200464_ + a (Lgu;Lgu;II[[Lfms$a;)Z m_200470_ + static + 0 o p_200471_ + 1 o p_200472_ + 2 o p_200473_ + 3 o p_200474_ + 4 o p_200475_ +fms$a net/minecraft/client/renderer/chunk/RenderRegionCache$ChunkInfo + a f_200476_ + b f_200477_ + (Ldei;)V + 0 o p_200479_ + a ()Ldei; m_200480_ + b ()Lfmq; m_200481_ +fmt net/minecraft/client/renderer/chunk/VisGraph + a f_173723_ + b f_173724_ + c f_173725_ + d f_173726_ + e f_173727_ + f f_173728_ + g f_173729_ + h f_112949_ + i f_112950_ + j f_112951_ + k f_173730_ + l f_112952_ + m f_112953_ + n f_112954_ + o f_112955_ + ()V + static + ()V + a (ILha;)I m_112965_ + 0 o p_112966_ + 1 o p_112967_ + a ([I)V m_112973_ + static + 0 o p_112974_ + a (III)I m_112961_ + static + 0 o p_112962_ + 1 o p_112963_ + 2 o p_112964_ + a ()Lfmu; m_112958_ + a (Lgu;)V m_112971_ + 0 o p_112972_ + a (ILjava/util/Set;)V m_112968_ + 0 o p_112969_ + 1 o p_112970_ + a (I)Ljava/util/Set; m_112959_ + 0 o p_112960_ + b (Lgu;)I m_112975_ + static + 0 o p_112976_ +fmt$1 net/minecraft/client/renderer/chunk/VisGraph$1 + a f_112977_ + ()V + static +fmu net/minecraft/client/renderer/chunk/VisibilitySet + a f_112979_ + b f_112980_ + ()V + static + ()V + a (Ljava/util/Set;)V m_112990_ + 0 o p_112991_ + a (Z)V m_112992_ + 0 o p_112993_ + a (Lha;Lha;)Z m_112983_ + 0 o p_112984_ + 1 o p_112985_ + a (Lha;Lha;Z)V m_112986_ + 0 o p_112987_ + 1 o p_112988_ + 2 o p_112989_ + toString ()Ljava/lang/String; toString +fmv net/minecraft/client/renderer/chunk/package-info +fmw net/minecraft/client/renderer/culling/Frustum + a f_194437_ + b f_252531_ + c f_252406_ + d f_194438_ + e f_112996_ + f f_112997_ + g f_112998_ + (Lorg/joml/Matrix4f;Lorg/joml/Matrix4f;)V + 0 o p_254207_ + 1 o p_254535_ + (Lfmw;)V + 0 o p_194440_ + a (Leed;)Z m_113029_ + 0 o p_113030_ + a (DDD)V m_113002_ + 0 o p_113003_ + 1 o p_113004_ + 2 o p_113005_ + a (I)Lfmw; m_194441_ + 0 o p_194442_ + a (Lorg/joml/Matrix4f;Lorg/joml/Matrix4f;)V m_253155_ + 0 o p_253909_ + 1 o p_254521_ + a (DDDDDD)Z m_113006_ + 0 o p_113007_ + 1 o p_113008_ + 2 o p_113009_ + 3 o p_113010_ + 4 o p_113011_ + 5 o p_113012_ +fmx net/minecraft/client/renderer/culling/package-info +fmy net/minecraft/client/renderer/debug/BeeDebugRenderer + A f_113048_ + B f_113049_ + C f_113050_ + D f_113051_ + a f_173737_ + b f_173738_ + c f_173739_ + d f_173740_ + e f_173741_ + f f_173742_ + g f_173743_ + h f_173744_ + i f_173745_ + j f_173746_ + k f_173747_ + l f_173748_ + m f_173749_ + n f_173750_ + o f_173751_ + p f_173752_ + q f_173753_ + r f_173754_ + s f_173755_ + t f_173756_ + u f_173757_ + v f_173758_ + w f_173759_ + x f_173760_ + y f_173761_ + z f_173762_ + (Lenn;)V + 0 o p_113053_ + a (ILfmy$a;)Z m_173765_ + static + 0 o p_173766_ + 1 o p_173767_ + a (Lfmy$a;)V m_113066_ + 0 o p_113067_ + a (Leij;Lfjx;DDD)V m_7790_ + 0 o p_113061_ + 1 o p_113062_ + 2 o p_113063_ + 3 o p_113064_ + 4 o p_113065_ + a (Lgu;Lfmy$a;)Z m_113085_ + static + 0 o p_113086_ + 1 o p_113087_ + a (Leij;Lfjx;Lfmy$b;Ljava/util/Collection;)V m_269169_ + 0 o p_270194_ + 1 o p_270431_ + 2 o p_270658_ + 3 o p_270946_ + a (Leij;Lfjx;Ljava/lang/String;Lgu;II)V m_269380_ + static + 0 o p_270438_ + 1 o p_270244_ + 2 o p_270486_ + 3 o p_270062_ + 4 o p_270574_ + 5 o p_270228_ + a (Leij;Lfjx;Ljava/util/Map$Entry;)V m_268820_ + static + 0 o p_269693_ + 1 o p_269694_ + 2 o p_269695_ + a ()V m_5630_ + a (JLjava/util/Map$Entry;)Z m_113055_ + static + 0 o p_113056_ + 1 o p_113057_ + a (Leij;Lfjx;Lfmy$a;)V m_269467_ + 0 o p_270424_ + 1 o p_270123_ + 2 o p_270137_ + a (Leij;Lfjx;Lgu;)V m_269172_ + static + 0 o p_270133_ + 1 o p_270766_ + 2 o p_270687_ + a (I)V m_173763_ + 0 o p_173764_ + a (Lbfj;)V m_113058_ + 0 o p_113059_ + a (Lgu;Ljava/util/Map;Leij;Lfjx;Lfmy$b;)V m_268819_ + 0 o p_269688_ + 1 o p_269689_ + 2 o p_269690_ + 3 o p_269691_ + 4 o p_269692_ + a (Lfmy$b;)V m_113071_ + 0 o p_113072_ + a (Ljava/util/Collection;)Ljava/lang/String; m_113115_ + static + 0 o p_113116_ + a (Lfmy$a;Lgu;)Ljava/lang/String; m_113068_ + 0 o p_113069_ + 1 o p_113070_ + a (Ljava/util/Map$Entry;)Z m_113131_ + 0 o p_113132_ + a (Leij;Lfjx;)V m_269283_ + 0 o p_270886_ + 1 o p_270808_ + a (Leij;Lfjx;Lho;ILjava/lang/String;IF)V m_269015_ + static + 0 o p_270426_ + 1 o p_270600_ + 2 o p_270548_ + 3 o p_270592_ + 4 o p_270198_ + 5 o p_270792_ + 6 o p_270938_ + a (Ljava/util/Map;Lfmy$a;)V m_113119_ + static + 0 o p_113120_ + 1 o p_113121_ + a (Lgu;)Ljava/util/Collection; m_113129_ + 0 o p_113130_ + a (Leij;Lfjx;Ljava/lang/String;Lfmy$b;II)V m_269057_ + static + 0 o p_270915_ + 1 o p_270663_ + 2 o p_270119_ + 3 o p_270243_ + 4 o p_270930_ + 5 o p_270094_ + a (Leij;Lfjx;Lgu;Ljava/util/List;)V m_269584_ + 0 o p_270949_ + 1 o p_270718_ + 2 o p_270550_ + 3 o p_270221_ + a (Lgu;Leij;Lfjx;Lgu;Ljava/util/List;)V m_268821_ + 0 o p_269696_ + 1 o p_269697_ + 2 o p_269698_ + 3 o p_269699_ + 4 o p_269700_ + a (Ljava/util/Map;Lfmy$a;Lgu;)V m_173768_ + static + 0 o p_173769_ + 1 o p_173770_ + 2 o p_173771_ + b (Lgu;)Ljava/util/List; m_113139_ + static + 0 o p_113140_ + b (Lfmy$a;)Z m_113142_ + 0 o p_113143_ + b (Leij;Lfjx;Lfmy$a;)V m_269284_ + 0 o p_270154_ + 1 o p_270397_ + 2 o p_270783_ + b (Leij;Lfjx;)V m_269561_ + 0 o p_270578_ + 1 o p_270098_ + b (Ljava/util/Map;Lfmy$a;)V m_113133_ + static + 0 o p_113134_ + 1 o p_113135_ + b (Lfmy$b;)Ljava/util/Set; m_173772_ + 0 o p_173773_ + b ()V m_113126_ + c (Leij;Lfjx;Lfmy$a;)V m_268822_ + 0 o p_269701_ + 1 o p_269702_ + 2 o p_269703_ + c ()V m_113136_ + c (Lgu;)Ljava/util/Set; m_173774_ + static + 0 o p_173775_ + c (Lfmy$a;)Z m_113147_ + 0 o p_113148_ + d ()Ljava/util/Map; m_113146_ + d (Lgu;)Ljava/util/Set; m_173776_ + static + 0 o p_173777_ + e ()Lemz; m_113154_ + f ()Ljava/util/Map; m_113155_ + g ()V m_113156_ +fmy$a net/minecraft/client/renderer/debug/BeeDebugRenderer$BeeInfo + a f_113157_ + b f_113158_ + c f_113159_ + d f_113160_ + e f_113161_ + f f_113162_ + g f_113163_ + h f_113164_ + i f_113165_ + (Ljava/util/UUID;ILho;Ldxt;Lgu;Lgu;I)V + 0 o p_113167_ + 1 o p_113168_ + 2 o p_113169_ + 3 o p_113170_ + 4 o p_113171_ + 5 o p_113172_ + 6 o p_113173_ + a (Lgu;)Z m_113175_ + 0 o p_113176_ + a ()Ljava/util/UUID; m_113174_ + b ()Ljava/lang/String; m_113177_ + c ()Z m_113178_ + toString ()Ljava/lang/String; toString +fmy$b net/minecraft/client/renderer/debug/BeeDebugRenderer$HiveInfo + a f_113180_ + b f_113181_ + c f_113182_ + d f_113183_ + e f_113184_ + f f_113185_ + (Lgu;Ljava/lang/String;IIZJ)V + 0 o p_113187_ + 1 o p_113188_ + 2 o p_113189_ + 3 o p_113190_ + 4 o p_113191_ + 5 o p_113192_ +fmz net/minecraft/client/renderer/debug/BrainDebugRenderer + A f_173808_ + B f_173809_ + C f_173778_ + D f_173779_ + E f_173780_ + F f_173781_ + G f_173782_ + H f_173783_ + I f_173784_ + J f_113194_ + K f_113195_ + L f_113196_ + M f_113197_ + a f_113193_ + b f_173785_ + c f_173786_ + d f_173787_ + e f_173788_ + f f_173789_ + g f_173790_ + h f_173791_ + i f_173792_ + j f_173793_ + k f_234493_ + l f_173794_ + m f_173795_ + n f_173796_ + o f_173797_ + p f_173798_ + q f_173799_ + r f_173800_ + s f_173801_ + t f_173802_ + u f_173803_ + v f_234494_ + w f_173804_ + x f_173805_ + y f_173806_ + z f_173807_ + ()V + static + (Lenn;)V + 0 o p_113200_ + a (Leij;Lfjx;DDDLfmz$a;)V m_268824_ + 0 o p_269709_ + 1 o p_269710_ + 2 o p_269711_ + 3 o p_269712_ + 4 o p_269713_ + 5 o p_269714_ + a (Leij;Lfjx;Lfmz$b;)V m_269122_ + 0 o p_270999_ + 1 o p_270627_ + 2 o p_270986_ + a (Leij;Lfjx;DDD)V m_7790_ + 0 o p_113214_ + 1 o p_113215_ + 2 o p_113216_ + 3 o p_113217_ + 4 o p_113218_ + a (Leij;Lfjx;Ljava/lang/String;Lgu;II)V m_269385_ + static + 0 o p_270640_ + 1 o p_270809_ + 2 o p_270632_ + 3 o p_270082_ + 4 o p_270078_ + 5 o p_270440_ + a (Lfmz$b;)V m_113226_ + 0 o p_113227_ + a ()V m_5630_ + a (Leij;Lfjx;Lgu;)V m_269464_ + static + 0 o p_270066_ + 1 o p_270965_ + 2 o p_270159_ + a (ILfmz$a;)Z m_173812_ + static + 0 o p_173813_ + 1 o p_173814_ + a (Leij;Lfjx;Lfmz$a;DDD)V m_269424_ + 0 o p_270435_ + 1 o p_270439_ + 2 o p_270979_ + 3 o p_270109_ + 4 o p_270342_ + 5 o p_270834_ + a (Lgu;Lfmz$a;)Z m_113233_ + static + 0 o p_113234_ + 1 o p_113235_ + a (I)V m_173810_ + 0 o p_173811_ + a (Lbfj;)V m_113211_ + 0 o p_113212_ + a (Lgu;)V m_113228_ + 0 o p_113229_ + a (Lgu;I)V m_113230_ + 0 o p_113231_ + 1 o p_113232_ + a (Ljava/util/Map$Entry;)Z m_113262_ + 0 o p_113263_ + a (Leij;Lfjx;Lho;ILjava/lang/String;IF)V m_269502_ + static + 0 o p_270664_ + 1 o p_270816_ + 2 o p_270715_ + 3 o p_270126_ + 4 o p_270487_ + 5 o p_270218_ + 6 o p_270737_ + a (Lfmz$a;)V m_113219_ + 0 o p_113220_ + a (Leij;Lfjx;Ljava/lang/String;Lfmz$b;II)V m_269588_ + static + 0 o p_270498_ + 1 o p_270609_ + 2 o p_270070_ + 3 o p_270677_ + 4 o p_270143_ + 5 o p_271011_ + a (Leij;Lfjx;Lgu;Ljava/util/List;)V m_269509_ + 0 o p_270206_ + 1 o p_270976_ + 2 o p_270670_ + 3 o p_270882_ + a (Lgu;Leij;Lfjx;Lgu;Ljava/util/List;)V m_268823_ + 0 o p_269704_ + 1 o p_269705_ + 2 o p_269706_ + 3 o p_269707_ + 4 o p_269708_ + a (Lgu;Leij;Lfjx;Lfmz$b;)V m_268825_ + 0 o p_269715_ + 1 o p_269716_ + 2 o p_269717_ + 3 o p_269718_ + b (Leij;Lfjx;Lfmz$a;DDD)V m_269312_ + 0 o p_270145_ + 1 o p_270489_ + 2 o p_270259_ + 3 o p_270922_ + 4 o p_270468_ + 5 o p_270838_ + b (Leij;Lfjx;DDD)V m_269077_ + 0 o p_270747_ + 1 o p_270289_ + 2 o p_270303_ + 3 o p_270416_ + 4 o p_270542_ + b (Lgu;)Ljava/util/Collection; m_113284_ + 0 o p_113285_ + b (Lfmz$a;)Z m_113265_ + 0 o p_113266_ + b (Lfmz$b;)Ljava/util/Set; m_113282_ + 0 o p_113283_ + b ()V m_113264_ + b (Lgu;Lfmz$a;)Z m_113276_ + static + 0 o p_113277_ + 1 o p_113278_ + c (Lfmz$a;)Z m_113280_ + 0 o p_113281_ + c (Lgu;)Ljava/util/Collection; m_113289_ + 0 o p_113290_ + c ()Ljava/util/Map; m_113279_ + c (Lfmz$b;)Ljava/util/Set; m_113287_ + 0 o p_113288_ + d (Lgu;)Ljava/util/List; m_113291_ + static + 0 o p_113292_ + d ()V m_113286_ +fmz$a net/minecraft/client/renderer/debug/BrainDebugRenderer$BrainDump + a f_113293_ + b f_113294_ + c f_113295_ + d f_113296_ + e f_113297_ + f f_113298_ + g f_113299_ + h f_113300_ + i f_113301_ + j f_113302_ + k f_113303_ + l f_234495_ + m f_113304_ + n f_113305_ + o f_113306_ + p f_113307_ + q f_113308_ + r f_113309_ + (Ljava/util/UUID;ILjava/lang/String;Ljava/lang/String;IFFLho;Ljava/lang/String;Ldxt;ZI)V + 0 o p_234497_ + 1 o p_234498_ + 2 o p_234499_ + 3 o p_234500_ + 4 o p_234501_ + 5 o p_234502_ + 6 o p_234503_ + 7 o p_234504_ + 8 o p_234505_ + 9 o p_234506_ + 10 o p_234507_ + 11 o p_234508_ + a (Lgu;)Z m_113326_ + 0 o p_113327_ + a ()Ljava/util/UUID; m_113322_ + b (Lgu;)Z m_113331_ + 0 o p_113332_ +fmz$b net/minecraft/client/renderer/debug/BrainDebugRenderer$PoiInfo + a f_113333_ + b f_113334_ + c f_113335_ + (Lgu;Ljava/lang/String;I)V + 0 o p_113337_ + 1 o p_113338_ + 2 o p_113339_ +fn net/minecraft/commands/arguments/coordinates/SwizzleArgument + a f_120803_ + b f_120804_ + ()V + static + ()V + a (Lcom/mojang/brigadier/context/CommandContext;Ljava/lang/String;)Ljava/util/EnumSet; m_120810_ + static + 0 o p_120811_ + 1 o p_120812_ + a (Lcom/mojang/brigadier/StringReader;)Ljava/util/EnumSet; parse + 0 o p_120809_ + a ()Lfn; m_120807_ + static + getExamples ()Ljava/util/Collection; getExamples + parse (Lcom/mojang/brigadier/StringReader;)Ljava/lang/Object; parse + 0 o p_120815_ +fna net/minecraft/client/renderer/debug/ChunkBorderRenderer + a f_113354_ + b f_194450_ + c f_194451_ + ()V + static + (Lenn;)V + 0 o p_113356_ + a (Leij;Lfjx;DDD)V m_7790_ + 0 o p_113358_ + 1 o p_113359_ + 2 o p_113360_ + 3 o p_113361_ + 4 o p_113362_ +fnb net/minecraft/client/renderer/debug/ChunkDebugRenderer + a f_113363_ + b f_113364_ + c f_113365_ + d f_113366_ + (Lenn;)V + 0 o p_113368_ + a (Leij;Lfjx;DDD)V m_7790_ + 0 o p_113370_ + 1 o p_113371_ + 2 o p_113372_ + 3 o p_113373_ + 4 o p_113374_ +fnb$a net/minecraft/client/renderer/debug/ChunkDebugRenderer$ChunkData + a f_113377_ + b f_113378_ + c f_113379_ + (Lfnb;Lfyp;DD)V + 0 o p_113381_ + 1 o p_113382_ + 2 o p_113383_ + 3 o p_113384_ + a (Lfyp;Lacp;II)Ljava/util/Map; m_113393_ + 0 o p_113394_ + 1 o p_113395_ + 2 o p_113396_ + 3 o p_113397_ +fnc net/minecraft/client/renderer/debug/CollisionBoxRenderer + a f_113400_ + b f_113401_ + c f_113402_ + (Lenn;)V + 0 o p_113404_ + a (Leij;Lfjx;DDD)V m_7790_ + 0 o p_113408_ + 1 o p_113409_ + 2 o p_113410_ + 3 o p_113411_ + 4 o p_113412_ +fnd net/minecraft/client/renderer/debug/DebugRenderer + a f_113413_ + b f_113414_ + c f_113415_ + d f_113416_ + e f_113417_ + f f_285648_ + g f_113418_ + h f_113420_ + i f_113421_ + j f_113422_ + k f_113423_ + l f_113424_ + m f_113425_ + n f_113426_ + o f_113427_ + p f_113428_ + q f_113429_ + r f_113430_ + s f_173815_ + t f_279550_ + u f_113431_ + (Lenn;)V + 0 o p_113433_ + a (Leij;Lfjx;DDDDDDFFFF)V m_269008_ + static + 0 o p_270616_ + 1 o p_270769_ + 2 o p_270653_ + 3 o p_270967_ + 4 o p_270556_ + 5 o p_270724_ + 6 o p_270427_ + 7 o p_270138_ + 8 o p_270391_ + 9 o p_270093_ + 10 o p_270312_ + 11 o p_270567_ + a (Lbfj;)Z m_113446_ + static + 0 o p_113447_ + a (Leij;Lfjx;Ljava/lang/String;IIII)V m_269055_ + static + 0 o p_270671_ + 1 o p_271023_ + 2 o p_270521_ + 3 o p_270729_ + 4 o p_270562_ + 5 o p_270828_ + 6 o p_270164_ + a (Leij;Lfjx;Ljava/lang/String;DDDIF)V m_269569_ + static + 0 o p_270216_ + 1 o p_270684_ + 2 o p_270564_ + 3 o p_270935_ + 4 o p_270856_ + 5 o p_270908_ + 6 o p_270180_ + 7 o p_270685_ + a (Leij;Lfjx$a;DDD)V m_113457_ + 0 o p_113458_ + 1 o p_113459_ + 2 o p_113460_ + 3 o p_113461_ + 4 o p_113462_ + a (Leij;Lfjx;Ljava/lang/String;DDDIFZFZ)V m_269439_ + static + 0 o p_270649_ + 1 o p_270695_ + 2 o p_270703_ + 3 o p_270942_ + 4 o p_270292_ + 5 o p_270885_ + 6 o p_270956_ + 7 o p_270657_ + 8 o p_270731_ + 9 o p_270825_ + 10 o p_270222_ + a (Lbfj;I)Ljava/util/Optional; m_113448_ + static + 0 o p_113449_ + 1 o p_113450_ + a (Leij;Lfjx;Lgu;FFFFF)V m_269371_ + static + 0 o p_270877_ + 1 o p_270925_ + 2 o p_270480_ + 3 o p_270569_ + 4 o p_270315_ + 5 o p_270182_ + 6 o p_270862_ + 7 o p_270973_ + a (Leij;Lfjx;Leed;FFFF)V m_269311_ + static + 0 o p_271017_ + 1 o p_270356_ + 2 o p_270833_ + 3 o p_270850_ + 4 o p_270249_ + 5 o p_270654_ + 6 o p_270476_ + a ()V m_113434_ + a (Leij;Lfjx;Ljava/lang/String;DDDI)V m_269271_ + static + 0 o p_270905_ + 1 o p_270581_ + 2 o p_270305_ + 3 o p_270645_ + 4 o p_270746_ + 5 o p_270364_ + 6 o p_270977_ + a (Leij;Lfjx;Lgu;Lgu;FFFF)V m_269451_ + static + 0 o p_270169_ + 1 o p_270417_ + 2 o p_270790_ + 3 o p_270610_ + 4 o p_270515_ + 5 o p_270494_ + 6 o p_270869_ + 7 o p_270844_ + b ()Z m_113506_ +fnd$a net/minecraft/client/renderer/debug/DebugRenderer$SimpleDebugRenderer + a ()V m_5630_ + a (Leij;Lfjx;DDD)V m_7790_ + 0 o p_113507_ + 1 o p_113508_ + 2 o p_113509_ + 3 o p_113510_ + 4 o p_113511_ +fne net/minecraft/client/renderer/debug/GameEventListenerRenderer + a f_173816_ + b f_173817_ + c f_173818_ + d f_173819_ + e f_173820_ + (Lenn;)V + 0 o p_173822_ + a (Ldgp;I)V m_173830_ + 0 o p_173831_ + 1 o p_173832_ + a (Leij;Lein;DDDLeei;)V m_268826_ + static + 0 o p_269719_ + 1 o p_269720_ + 2 o p_269721_ + 3 o p_269722_ + 4 o p_269723_ + 5 o p_269724_ + a (Lfne$b;Leij;Lein;DDDLeei;)V m_268827_ + static + 0 o p_269725_ + 1 o p_269726_ + 2 o p_269727_ + 3 o p_269728_ + 4 o p_269729_ + 5 o p_269730_ + 6 o p_269731_ + a (Leij;Lfjx;Leed;FFFF)V m_269429_ + static + 0 o p_270351_ + 1 o p_270763_ + 2 o p_270205_ + 3 o p_270707_ + 4 o p_270538_ + 5 o p_270314_ + 6 o p_270966_ + a (Leij;Lfjx;DDD)V m_7790_ + 0 o p_173846_ + 1 o p_173847_ + 2 o p_173848_ + 3 o p_173849_ + 4 o p_173850_ + a (Ldgl;Leei;)V m_234513_ + 0 o p_234514_ + 1 o p_234515_ + a (Lcmm;Leei;Lfne$b;)Z m_234509_ + static + 0 o p_234510_ + 1 o p_234511_ + 2 o p_234512_ + a (Leij;Lfjx;Leei;)V m_274003_ + static + 0 o p_274711_ + 1 o p_274712_ + 2 o p_274713_ +fne$a net/minecraft/client/renderer/debug/GameEventListenerRenderer$TrackedGameEvent + a f_173861_ + b f_173862_ + c f_173863_ + (JLdgl;Leei;)V + 0 o f_173861_ + 1 o f_173862_ + 2 o f_173863_ + a ()Z m_173868_ + b ()J f_173861_ + c ()Ldgl; f_173862_ + d ()Leei; f_173863_ + equals (Ljava/lang/Object;)Z equals + 0 o p_234536_ + hashCode ()I hashCode + toString ()Ljava/lang/String; toString +fne$b net/minecraft/client/renderer/debug/GameEventListenerRenderer$TrackedListener + a f_173869_ + b f_173870_ + (Ldgp;I)V + 0 o p_173872_ + 1 o p_173873_ + a (Laif;Ldgl;Ldgl$a;Leei;)Z m_214068_ + 0 o p_234540_ + 1 o p_249278_ + 2 o p_250285_ + 3 o p_250758_ + a (Lcmm;Leei;)Z m_234542_ + 0 o p_234543_ + 1 o p_234544_ + a (Leei;Leei;)Z m_234545_ + static + 0 o p_234546_ + 1 o p_234547_ + a ()Ldgp; m_142460_ + a (Lcmm;)Ljava/util/Optional; m_173875_ + 0 o p_173876_ + b ()I m_142078_ +fnf net/minecraft/client/renderer/debug/GameTestDebugRenderer + a f_173886_ + b f_113512_ + ()V + a ()V m_5630_ + a (Leij;Lfjx;Lgu;Lfnf$a;)V m_269452_ + 0 o p_270274_ + 1 o p_271018_ + 2 o p_270918_ + 3 o p_270827_ + a (Leij;Lfjx;DDD)V m_7790_ + 0 o p_113519_ + 1 o p_113520_ + 2 o p_113521_ + 3 o p_113522_ + 4 o p_113523_ + a (Lgu;ILjava/lang/String;I)V m_113524_ + 0 o p_113525_ + 1 o p_113526_ + 2 o p_113527_ + 3 o p_113528_ + a (JLjava/util/Map$Entry;)Z m_113515_ + static + 0 o p_113516_ + 1 o p_113517_ + b (Leij;Lfjx;Lgu;Lfnf$a;)V m_268829_ + 0 o p_269735_ + 1 o p_269736_ + 2 o p_269737_ + 3 o p_269738_ +fnf$a net/minecraft/client/renderer/debug/GameTestDebugRenderer$Marker + a f_113532_ + b f_113533_ + c f_113534_ + (ILjava/lang/String;J)V + 0 o p_113536_ + 1 o p_113537_ + 2 o p_113538_ + a ()F m_113539_ + b ()F m_113540_ + c ()F m_113541_ + d ()F m_113542_ +fng net/minecraft/client/renderer/debug/GoalSelectorDebugRenderer + a f_173887_ + b f_113543_ + c f_113544_ + (Lenn;)V + 0 o p_113546_ + a (ILjava/util/List;)V m_113548_ + 0 o p_113549_ + 1 o p_113550_ + a (I)V m_173888_ + 0 o p_173889_ + a ()V m_5630_ + a (Lgu;Leij;Lfjx;Ljava/lang/Integer;Ljava/util/List;)V m_268830_ + static + 0 o p_269739_ + 1 o p_269740_ + 2 o p_269741_ + 3 o p_269742_ + 4 o p_269743_ + a (Leij;Lfjx;DDD)V m_7790_ + 0 o p_113552_ + 1 o p_113553_ + 2 o p_113554_ + 3 o p_113555_ + 4 o p_113556_ +fng$a net/minecraft/client/renderer/debug/GoalSelectorDebugRenderer$DebugGoal + a f_113561_ + b f_113562_ + c f_113563_ + d f_113564_ + (Lgu;ILjava/lang/String;Z)V + 0 o p_113566_ + 1 o p_113567_ + 2 o p_113568_ + 3 o p_113569_ +fnh net/minecraft/client/renderer/debug/HeightMapRenderer + a f_113570_ + b f_173890_ + c f_173891_ + (Lenn;)V + 0 o p_113572_ + a (Ldhk$a;)Lorg/joml/Vector3f; m_113573_ + 0 o p_113574_ + a (Leij;Lfjx;DDD)V m_7790_ + 0 o p_113576_ + 1 o p_113577_ + 2 o p_113578_ + 3 o p_113579_ + 4 o p_113580_ +fnh$1 net/minecraft/client/renderer/debug/HeightMapRenderer$1 + a f_113581_ + ()V + static +fni net/minecraft/client/renderer/debug/LightDebugRenderer + a f_113583_ + b f_173892_ + (Lenn;)V + 0 o p_113585_ + a (Leij;Lfjx;DDD)V m_7790_ + 0 o p_113587_ + 1 o p_113588_ + 2 o p_113589_ + 3 o p_113590_ + 4 o p_113591_ +fnj net/minecraft/client/renderer/debug/LightSectionDebugRenderer + a f_279526_ + b f_279660_ + c f_279653_ + d f_279579_ + e f_279566_ + f f_279558_ + g f_279524_ + h f_279532_ + ()V + static + (Lenn;Lcmv;)V + 0 o p_283340_ + 1 o p_283096_ + a (Leij;Lein;DDDIIIIIILorg/joml/Vector4f;)V m_280135_ + static + 0 o p_283045_ + 1 o p_282888_ + 2 o p_283424_ + 3 o p_283677_ + 4 o p_283390_ + 5 o p_281439_ + 6 o p_282106_ + 7 o p_282462_ + 8 o p_282216_ + 9 o p_281474_ + 10 o p_281542_ + 11 o p_283667_ + a (Lhx;Lfjx;Leij;DDDLorg/joml/Vector4f;IIIIII)V m_280371_ + static + 0 o p_282395_ + 1 o p_281566_ + 2 o p_282241_ + 3 o p_281604_ + 4 o p_282822_ + 5 o p_282679_ + 6 o p_281741_ + 7 o p_283441_ + 8 o p_283631_ + 9 o p_282083_ + 10 o p_281900_ + 11 o p_281481_ + 12 o p_283547_ + a (Lhx;Leij;Lein;DDDLorg/joml/Vector4f;Lha;III)V m_280041_ + static + 0 o p_283256_ + 1 o p_283362_ + 2 o p_282913_ + 3 o p_281650_ + 4 o p_282885_ + 5 o p_283182_ + 6 o p_283626_ + 7 o p_282087_ + 8 o p_283360_ + 9 o p_282854_ + 10 o p_282233_ + a (Leij;Leer;Lhx;Lfjx;DDDLorg/joml/Vector4f;)V m_280110_ + static + 0 o p_282890_ + 1 o p_282950_ + 2 o p_281925_ + 3 o p_281516_ + 4 o p_281554_ + 5 o p_283233_ + 6 o p_281690_ + 7 o p_282916_ + a (Leij;Lein;Lha;DDDIIILorg/joml/Vector4f;)V m_280142_ + static + 0 o p_283612_ + 1 o p_281996_ + 2 o p_282340_ + 3 o p_281988_ + 4 o p_282440_ + 5 o p_282235_ + 6 o p_282751_ + 7 o p_282270_ + 8 o p_282159_ + 9 o p_283316_ + a (Leij;Lfjx;DDD)V m_7790_ + 0 o p_281418_ + 1 o p_282487_ + 2 o p_282164_ + 3 o p_282565_ + 4 o p_281615_ + a (Leij;Leer;Lhx;Lein;DDDLorg/joml/Vector4f;)V m_280198_ + static + 0 o p_283088_ + 1 o p_281747_ + 2 o p_282941_ + 3 o p_283103_ + 4 o p_281419_ + 5 o p_282520_ + 6 o p_281976_ + 7 o p_282342_ +fnj$1 net/minecraft/client/renderer/debug/LightSectionDebugRenderer$1 + a f_279556_ + ()V + static +fnj$a net/minecraft/client/renderer/debug/LightSectionDebugRenderer$SectionData + a f_279657_ + b f_279596_ + c f_279546_ + (Ldwt;Lhx;ILcmv;)V + 0 o p_283220_ + 1 o p_282370_ + 2 o p_282804_ + 3 o p_283151_ +fnk net/minecraft/client/renderer/debug/NeighborsUpdateRenderer + a f_113592_ + b f_113593_ + (Lenn;)V + 0 o p_113595_ + a (Ljava/lang/Long;)Ljava/util/Map; m_113605_ + static + 0 o p_113606_ + a (Leij;Lfjx;DDD)V m_7790_ + 0 o p_113600_ + 1 o p_113601_ + 2 o p_113602_ + 3 o p_113603_ + 4 o p_113604_ + a (JLgu;)V m_113596_ + 0 o p_113597_ + 1 o p_113598_ +fnl net/minecraft/client/renderer/debug/PathfindingRenderer + a f_113607_ + b f_113608_ + c f_113609_ + d f_173893_ + e f_173894_ + f f_173895_ + g f_173896_ + h f_173897_ + i f_173898_ + j f_173899_ + k f_173900_ + ()V + a (Lgu;DDD)F m_113634_ + static + 0 o p_113635_ + 1 o p_113636_ + 2 o p_113637_ + 3 o p_113638_ + a (Leij;Lfjx;DDD)V m_7790_ + 0 o p_113629_ + 1 o p_113630_ + 2 o p_113631_ + 3 o p_113632_ + 4 o p_113633_ + a (Leij;Lein;Ldxt;DDD)V m_269170_ + static + 0 o p_270666_ + 1 o p_270602_ + 2 o p_270511_ + 3 o p_270524_ + 4 o p_270163_ + 5 o p_270176_ + a (ILdxt;F)V m_113611_ + 0 o p_113612_ + 1 o p_113613_ + 2 o p_113614_ + a (Leij;Lfjx;Ldxt;FZZDDD)V m_269027_ + static + 0 o p_270399_ + 1 o p_270359_ + 2 o p_270189_ + 3 o p_270841_ + 4 o p_270481_ + 5 o p_270748_ + 6 o p_270187_ + 7 o p_270252_ + 8 o p_270371_ +fnm net/minecraft/client/renderer/debug/RaidDebugRenderer + a f_173901_ + b f_173902_ + c f_113647_ + d f_113648_ + (Lenn;)V + 0 o p_113650_ + a (Leij;Lfjx;Lgu;)V m_269099_ + static + 0 o p_270914_ + 1 o p_270517_ + 2 o p_270208_ + a (Leij;Lfjx;Ljava/lang/String;Lgu;I)V m_269257_ + static + 0 o p_270092_ + 1 o p_270518_ + 2 o p_270237_ + 3 o p_270941_ + 4 o p_270307_ + a (Leij;Lfjx;DDD)V m_7790_ + 0 o p_113652_ + 1 o p_113653_ + 2 o p_113654_ + 3 o p_113655_ + 4 o p_113656_ + a (Ljava/util/Collection;)V m_113663_ + 0 o p_113664_ + b ()Lemz; m_113665_ +fnn net/minecraft/client/renderer/debug/SolidFaceRenderer + a f_113666_ + (Lenn;)V + 0 o p_113668_ + a (Leij;Lfjx;DDD)V m_7790_ + 0 o p_113670_ + 1 o p_113671_ + 2 o p_113672_ + 3 o p_113673_ + 4 o p_113674_ +fno net/minecraft/client/renderer/debug/StructureRenderer + a f_113675_ + b f_113676_ + c f_113677_ + d f_113678_ + e f_173903_ + (Lenn;)V + 0 o p_113680_ + a (Ldrs;Ljava/util/List;Ljava/util/List;Ldfk;)V m_113682_ + 0 o p_113683_ + 1 o p_113684_ + 2 o p_113685_ + 3 o p_113686_ + a ()V m_5630_ + a (Leij;Lfjx;DDD)V m_7790_ + 0 o p_113688_ + 1 o p_113689_ + 2 o p_113690_ + 3 o p_113691_ + 4 o p_113692_ +fnp net/minecraft/client/renderer/debug/SupportBlockRenderer + a f_285628_ + b f_285602_ + c f_285572_ + (Lenn;)V + 0 o p_286424_ + a (Lgu;Leij;DDDLfjx;DFFF)V m_285847_ + 0 o p_286268_ + 1 o p_286592_ + 2 o p_286463_ + 3 o p_286552_ + 4 o p_286660_ + 5 o p_286314_ + 6 o p_286880_ + 7 o p_286918_ + 8 o p_286304_ + 9 o p_286672_ + a (Lbfj;)D m_285734_ + 0 o p_286713_ + a (Leij;Lfjx;DDDLbfj;Ljava/util/function/DoubleSupplier;FFF)V m_286095_ + 0 o p_286525_ + 1 o p_286495_ + 2 o p_286696_ + 3 o p_286417_ + 4 o p_286386_ + 5 o p_286273_ + 6 o p_286458_ + 7 o p_286487_ + 8 o p_286710_ + 9 o p_286793_ + a (Leij;Lfjx;DDD)V m_7790_ + 0 o p_286297_ + 1 o p_286436_ + 2 o p_286291_ + 3 o p_286388_ + 4 o p_286330_ + a (Ljava/util/function/DoubleSupplier;Lbfj;Leij;DDDLfjx;FFFLgu;)V m_285890_ + 0 o p_286493_ + 1 o p_286811_ + 2 o p_286464_ + 3 o p_286501_ + 4 o p_286867_ + 5 o p_286743_ + 6 o p_286848_ + 7 o p_286551_ + 8 o p_286655_ + 9 o p_286451_ + 10 o p_286428_ + b (Lbfj;)D m_286110_ + 0 o p_286230_ + b ()D m_286040_ + static +fnq net/minecraft/client/renderer/debug/VillageSectionsDebugRenderer + a f_173904_ + b f_113693_ + ()V + a (Leij;Lfjx;Lhx;)V m_269445_ + static + 0 o p_270832_ + 1 o p_270443_ + 2 o p_271021_ + a (Lgu;Leij;Lfjx;Lhx;)V m_268831_ + static + 0 o p_269744_ + 1 o p_269745_ + 2 o p_269746_ + 3 o p_269747_ + a ()V m_5630_ + a (Leij;Lfjx;DDD)V m_7790_ + 0 o p_113701_ + 1 o p_113702_ + 2 o p_113703_ + 3 o p_113704_ + 4 o p_113705_ + a (Lhx;)V m_113709_ + 0 o p_113710_ + b (Lhx;)V m_113711_ + 0 o p_113712_ +fnr net/minecraft/client/renderer/debug/WaterDebugRenderer + a f_113715_ + (Lenn;)V + 0 o p_113717_ + a (Leij;Lfjx;DDD)V m_7790_ + 0 o p_113719_ + 1 o p_113720_ + 2 o p_113721_ + 3 o p_113722_ + 4 o p_113723_ +fns net/minecraft/client/renderer/debug/WorldGenAttemptRenderer + a f_113724_ + b f_113725_ + c f_113726_ + d f_113727_ + e f_113728_ + f f_113729_ + ()V + a (Leij;Lfjx;DDD)V m_7790_ + 0 o p_113732_ + 1 o p_113733_ + 2 o p_113734_ + 3 o p_113735_ + 4 o p_113736_ + a (Lgu;FFFFF)V m_113737_ + 0 o p_113738_ + 1 o p_113739_ + 2 o p_113740_ + 3 o p_113741_ + 4 o p_113742_ + 5 o p_113743_ +fnt net/minecraft/client/renderer/debug/package-info +fnu net/minecraft/client/renderer/entity/AbstractHorseRenderer + a f_113744_ + (Lfoy$a;Lfbq;F)V + 0 o p_173906_ + 1 o p_173907_ + 2 o p_173908_ + a (Lbtk;Leij;F)V m_7546_ + 0 o p_113754_ + 1 o p_113755_ + 2 o p_113756_ + a (Lbfz;Leij;F)V m_7546_ + 0 o p_113750_ + 1 o p_113751_ + 2 o p_113752_ +fnv net/minecraft/client/renderer/entity/AbstractZombieRenderer + a f_113757_ + ()V + static + (Lfoy$a;Lfdw;Lfdw;Lfdw;)V + 0 o p_173910_ + 1 o p_173911_ + 2 o p_173912_ + 3 o p_173913_ + a (Lbfj;)Lacq; m_5478_ + 0 o p_113765_ + a (Lbwv;)Lacq; m_5478_ + 0 o p_113771_ + a (Lbfz;)Z m_5936_ + 0 o p_113767_ + b (Lbwv;)Z m_5936_ + 0 o p_113773_ +fnw net/minecraft/client/renderer/entity/AllayRenderer + a f_234548_ + ()V + static + (Lfoy$a;)V + 0 o p_234551_ + a (Lbfj;Lgu;)I m_6086_ + 0 o p_234555_ + 1 o p_234556_ + a (Lbfj;)Lacq; m_5478_ + 0 o p_234553_ + a (Lbsp;)Lacq; m_5478_ + 0 o p_234558_ + a (Lbsp;Lgu;)I m_6086_ + 0 o p_234560_ + 1 o p_234561_ +fnx net/minecraft/client/renderer/entity/ArmorStandRenderer + a f_113780_ + ()V + static + (Lfoy$a;)V + 0 o p_173915_ + a (Lbux;ZZZ)Lfkf; m_7225_ + 0 o p_113806_ + 1 o p_113807_ + 2 o p_113808_ + 3 o p_113809_ + a (Lbfz;ZZZ)Lfkf; m_7225_ + 0 o p_113793_ + 1 o p_113794_ + 2 o p_113795_ + 3 o p_113796_ + a (Lbfj;)Lacq; m_5478_ + 0 o p_113785_ + a (Lbfz;Leij;FFF)V m_7523_ + 0 o p_113787_ + 1 o p_113788_ + 2 o p_113789_ + 3 o p_113790_ + 4 o p_113791_ + a (Lbux;Leij;FFF)V m_7523_ + 0 o p_113800_ + 1 o p_113801_ + 2 o p_113802_ + 3 o p_113803_ + 4 o p_113804_ + a (Lbux;)Lacq; m_5478_ + 0 o p_113798_ + b (Lbux;)Z m_6512_ + 0 o p_113815_ + b (Lbfz;)Z m_6512_ + 0 o p_113813_ + b (Lbfj;)Z m_6512_ + 0 o p_113811_ +fny net/minecraft/client/renderer/entity/ArrowRenderer + (Lfoy$a;)V + 0 o p_173917_ + a (Lbyu;FFLeij;Lfjx;I)V m_7392_ + 0 o p_113839_ + 1 o p_113840_ + 2 o p_113841_ + 3 o p_113842_ + 4 o p_113843_ + 5 o p_113844_ + a (Lbfj;FFLeij;Lfjx;I)V m_7392_ + 0 o p_113819_ + 1 o p_113820_ + 2 o p_113821_ + 3 o p_113822_ + 4 o p_113823_ + 5 o p_113824_ + a (Lorg/joml/Matrix4f;Lorg/joml/Matrix3f;Lein;IIIFFIIII)V m_253099_ + 0 o p_254392_ + 1 o p_254011_ + 2 o p_253902_ + 3 o p_254058_ + 4 o p_254338_ + 5 o p_254196_ + 6 o p_254003_ + 7 o p_254165_ + 8 o p_253982_ + 9 o p_254037_ + 10 o p_254038_ + 11 o p_254271_ +fnz net/minecraft/client/renderer/entity/AxolotlRenderer + a f_173918_ + ()V + static + (Lfoy$a;)V + 0 o p_173921_ + a (Lbfj;)Lacq; m_5478_ + 0 o p_173923_ + a (Ljava/util/HashMap;)V m_262768_ + static + 0 o p_242076_ + a (Lbss;)Lacq; m_5478_ + 0 o p_173925_ +fo net/minecraft/commands/arguments/coordinates/Vec2Argument + a f_120816_ + b f_120817_ + c f_120818_ + ()V + static + (Z)V + 0 o p_120821_ + a (Lcom/mojang/brigadier/context/CommandContext;Ljava/lang/String;)Leeh; m_120825_ + static + 0 o p_120826_ + 1 o p_120827_ + a (Z)Lfo; m_174954_ + static + 0 o p_174955_ + a ()Lfo; m_120822_ + static + a (Lcom/mojang/brigadier/StringReader;)Lfk; parse + 0 o p_120824_ + getExamples ()Ljava/util/Collection; getExamples + listSuggestions (Lcom/mojang/brigadier/context/CommandContext;Lcom/mojang/brigadier/suggestion/SuggestionsBuilder;)Ljava/util/concurrent/CompletableFuture; listSuggestions + 0 o p_120830_ + 1 o p_120831_ + parse (Lcom/mojang/brigadier/StringReader;)Ljava/lang/Object; parse + 0 o p_120833_ +foa net/minecraft/client/renderer/entity/BatRenderer + a f_113859_ + ()V + static + (Lfoy$a;)V + 0 o p_173929_ + a (Lbrg;Leij;F)V m_7546_ + 0 o p_113878_ + 1 o p_113879_ + 2 o p_113880_ + a (Lbfj;)Lacq; m_5478_ + 0 o p_113864_ + a (Lbrg;)Lacq; m_5478_ + 0 o p_113876_ + a (Lbfz;Leij;FFF)V m_7523_ + 0 o p_113870_ + 1 o p_113871_ + 2 o p_113872_ + 3 o p_113873_ + 4 o p_113874_ + a (Lbrg;Leij;FFF)V m_7523_ + 0 o p_113882_ + 1 o p_113883_ + 2 o p_113884_ + 3 o p_113885_ + 4 o p_113886_ + a (Lbfz;Leij;F)V m_7546_ + 0 o p_113866_ + 1 o p_113867_ + 2 o p_113868_ +fob net/minecraft/client/renderer/entity/BeeRenderer + a f_113887_ + i f_113888_ + j f_113889_ + k f_113890_ + ()V + static + (Lfoy$a;)V + 0 o p_173931_ + a (Lbrm;)Lacq; m_5478_ + 0 o p_113897_ + a (Lbfj;)Lacq; m_5478_ + 0 o p_113895_ +foc net/minecraft/client/renderer/entity/BlazeRenderer + a f_113898_ + ()V + static + (Lfoy$a;)V + 0 o p_173933_ + a (Lbfj;Lgu;)I m_6086_ + 0 o p_113905_ + 1 o p_113906_ + a (Lbvm;)Lacq; m_5478_ + 0 o p_113908_ + a (Lbfj;)Lacq; m_5478_ + 0 o p_113903_ + a (Lbvm;Lgu;)I m_6086_ + 0 o p_113910_ + 1 o p_113911_ +fod net/minecraft/client/renderer/entity/BoatRenderer + a f_173934_ + (Lfoy$a;Z)V + 0 o p_234563_ + 1 o p_234564_ + a (Lfoy$a;Lcah$b;Z)Lfbx; m_245348_ + 0 o p_248834_ + 1 o p_249317_ + 2 o p_250093_ + a (Lcah$b;Z)Ljava/lang/String; m_234565_ + static + 0 o p_234566_ + 1 o p_234567_ + a (ZLfoy$a;Lcah$b;)Lcom/mojang/datafixers/util/Pair; m_244734_ + 0 o p_247939_ + 1 o p_247940_ + 2 o p_247941_ + a (Lcah$b;)Lcah$b; m_173937_ + static + 0 o p_173938_ + a (Lbfj;)Lacq; m_5478_ + 0 o p_113918_ + a (Lcah;)Lacq; m_5478_ + 0 o p_113927_ + a (Lcah;FFLeij;Lfjx;I)V m_7392_ + 0 o p_113929_ + 1 o p_113930_ + 2 o p_113931_ + 3 o p_113932_ + 4 o p_113933_ + 5 o p_113934_ + a (Lbfj;FFLeij;Lfjx;I)V m_7392_ + 0 o p_113920_ + 1 o p_113921_ + 2 o p_113922_ + 3 o p_113923_ + 4 o p_113924_ + 5 o p_113925_ +foe net/minecraft/client/renderer/entity/CamelRenderer + a f_244220_ + ()V + static + (Lfoy$a;Lfec;)V + 0 o p_251790_ + 1 o p_249929_ + a (Lbfj;)Lacq; m_5478_ + 0 o p_250702_ + a (Lbsx;)Lacq; m_5478_ + 0 o p_249584_ +fof net/minecraft/client/renderer/entity/CatRenderer + (Lfoy$a;)V + 0 o p_173943_ + a (Lbfj;)Lacq; m_5478_ + 0 o p_113938_ + a (Lbro;Leij;F)V m_7546_ + 0 o p_113952_ + 1 o p_113953_ + 2 o p_113954_ + a (Lbfz;Leij;FFF)V m_7523_ + 0 o p_113944_ + 1 o p_113945_ + 2 o p_113946_ + 3 o p_113947_ + 4 o p_113948_ + a (Lbro;)Lacq; m_5478_ + 0 o p_113950_ + a (Lbro;Leij;FFF)V m_7523_ + 0 o p_113956_ + 1 o p_113957_ + 2 o p_113958_ + 3 o p_113959_ + 4 o p_113960_ + a (Lbfz;Leij;F)V m_7546_ + 0 o p_113940_ + 1 o p_113941_ + 2 o p_113942_ +fog net/minecraft/client/renderer/entity/CaveSpiderRenderer + a f_113961_ + i f_173944_ + ()V + static + (Lfoy$a;)V + 0 o p_173946_ + a (Lbfj;)Lacq; m_5478_ + 0 o p_113966_ + a (Lbvn;Leij;F)V m_7546_ + 0 o p_113974_ + 1 o p_113975_ + 2 o p_113976_ + a (Lbwn;)Lacq; m_5478_ + 0 o p_113978_ + a (Lbvn;)Lacq; m_5478_ + 0 o p_113972_ + a (Lbfz;Leij;F)V m_7546_ + 0 o p_113968_ + 1 o p_113969_ + 2 o p_113970_ +foh net/minecraft/client/renderer/entity/ChestedHorseRenderer + a f_113979_ + ()V + static + (Lfoy$a;FLfec;)V + 0 o p_173948_ + 1 o p_173949_ + 2 o p_173950_ + a (Lbfj;)Lacq; m_5478_ + 0 o p_113985_ + a (Lbtj;)Lacq; m_5478_ + 0 o p_113987_ +foi net/minecraft/client/renderer/entity/ChickenRenderer + a f_113988_ + ()V + static + (Lfoy$a;)V + 0 o p_173952_ + a (Lbrq;)Lacq; m_5478_ + 0 o p_113998_ + a (Lbfj;)Lacq; m_5478_ + 0 o p_113993_ + a (Lbrq;F)F m_6930_ + 0 o p_114000_ + 1 o p_114001_ + a (Lbfz;F)F m_6930_ + 0 o p_113995_ + 1 o p_113996_ +foj net/minecraft/client/renderer/entity/CodRenderer + a f_114002_ + ()V + static + (Lfoy$a;)V + 0 o p_173954_ + a (Lbrr;)Lacq; m_5478_ + 0 o p_114015_ + a (Lbrr;Leij;FFF)V m_7523_ + 0 o p_114017_ + 1 o p_114018_ + 2 o p_114019_ + 3 o p_114020_ + 4 o p_114021_ + a (Lbfj;)Lacq; m_5478_ + 0 o p_114007_ + a (Lbfz;Leij;FFF)V m_7523_ + 0 o p_114009_ + 1 o p_114010_ + 2 o p_114011_ + 3 o p_114012_ + 4 o p_114013_ +fok net/minecraft/client/renderer/entity/CowRenderer + a f_114022_ + ()V + static + (Lfoy$a;)V + 0 o p_173956_ + a (Lbrs;)Lacq; m_5478_ + 0 o p_114029_ + a (Lbfj;)Lacq; m_5478_ + 0 o p_114027_ +fol net/minecraft/client/renderer/entity/CreeperRenderer + a f_114030_ + ()V + static + (Lfoy$a;)V + 0 o p_173958_ + a (Lbvo;Leij;F)V m_7546_ + 0 o p_114046_ + 1 o p_114047_ + 2 o p_114048_ + a (Lbfj;)Lacq; m_5478_ + 0 o p_114035_ + a (Lbvo;F)F m_6931_ + 0 o p_114043_ + 1 o p_114044_ + a (Lbvo;)Lacq; m_5478_ + 0 o p_114041_ + a (Lbfz;Leij;F)V m_7546_ + 0 o p_114037_ + 1 o p_114038_ + 2 o p_114039_ + b (Lbfz;F)F m_6931_ + 0 o p_114050_ + 1 o p_114051_ +fom net/minecraft/client/renderer/entity/DisplayRenderer + a f_268749_ + (Lfoy$a;)V + 0 o p_270168_ + a (Lbfi;FFLeij;Lfjx;I)V m_7392_ + 0 o p_270405_ + 1 o p_270225_ + 2 o p_270279_ + 3 o p_270728_ + 4 o p_270209_ + 5 o p_270298_ + a (Lbfj;)Lacq; m_5478_ + 0 o p_270596_ + a (Lbfi;)Lacq; m_5478_ + 0 o p_270675_ + a (Lbfi$j;Lbfi;)Lorg/joml/Quaternionf; m_269592_ + 0 o p_277846_ + 1 o p_271013_ + a (Lbfi;Ljava/lang/Object;Leij;Lfjx;IF)V m_276924_ + 0 o p_277862_ + 1 o p_277363_ + 2 o p_277686_ + 3 o p_277429_ + 4 o p_278023_ + 5 o p_277453_ + a (Lbfj;FFLeij;Lfjx;I)V m_7392_ + 0 o p_270580_ + 1 o p_270822_ + 2 o p_270423_ + 3 o p_270117_ + 4 o p_270319_ + 5 o p_270659_ + b (Lbfi;)Ljava/lang/Object; m_269580_ + 0 o p_270246_ +fom$1 net/minecraft/client/renderer/entity/DisplayRenderer$1 + a f_268432_ + b f_268734_ + ()V + static +fom$a net/minecraft/client/renderer/entity/DisplayRenderer$BlockDisplayRenderer + a f_268487_ + (Lfoy$a;)V + 0 o p_270283_ + a (Lbfj;)Lacq; m_5478_ + 0 o p_270771_ + a (Lbfi$b;)Lbfi$b$a; m_269580_ + 0 o p_277721_ + a (Lbfi;Ljava/lang/Object;Leij;Lfjx;IF)V m_276924_ + 0 o p_277716_ + 1 o p_277388_ + 2 o p_277971_ + 3 o p_277377_ + 4 o p_277770_ + 5 o p_277491_ + a (Lbfi$b;Lbfi$b$a;Leij;Lfjx;IF)V m_276924_ + 0 o p_277939_ + 1 o p_277885_ + 2 o p_277831_ + 3 o p_277554_ + 4 o p_278071_ + 5 o p_277847_ + a (Lbfj;FFLeij;Lfjx;I)V m_7392_ + 0 o p_270681_ + 1 o p_270406_ + 2 o p_270195_ + 3 o p_270328_ + 4 o p_270815_ + 5 o p_270471_ + b (Lbfi;)Ljava/lang/Object; m_269580_ + 0 o p_277547_ +fom$b net/minecraft/client/renderer/entity/DisplayRenderer$ItemDisplayRenderer + a f_268604_ + (Lfoy$a;)V + 0 o p_270110_ + a (Lbfj;)Lacq; m_5478_ + 0 o p_270955_ + a (Lbfi;Ljava/lang/Object;Leij;Lfjx;IF)V m_276924_ + 0 o p_277430_ + 1 o p_277891_ + 2 o p_277361_ + 3 o p_277912_ + 4 o p_277474_ + 5 o p_278032_ + a (Lbfi$g;)Lbfi$g$a; m_269580_ + 0 o p_277464_ + a (Lbfi$g;Lbfi$g$a;Leij;Lfjx;IF)V m_276924_ + 0 o p_277863_ + 1 o p_277481_ + 2 o p_277889_ + 3 o p_277509_ + 4 o p_277861_ + 5 o p_277670_ + a (Lbfj;FFLeij;Lfjx;I)V m_7392_ + 0 o p_270413_ + 1 o p_270939_ + 2 o p_270504_ + 3 o p_270672_ + 4 o p_270415_ + 5 o p_270929_ + b (Lbfi;)Ljava/lang/Object; m_269580_ + 0 o p_277636_ +fom$c net/minecraft/client/renderer/entity/DisplayRenderer$TextDisplayRenderer + a f_268575_ + (Lfoy$a;)V + 0 o p_271012_ + a (Lsw;I)Lbfi$k$b; m_269268_ + 0 o p_270823_ + 1 o p_270893_ + a (Lbfi$k;)Lbfi$k$e; m_269580_ + 0 o p_277947_ + a (Lbfj;)Lacq; m_5478_ + 0 o p_270751_ + a (Lbfi;Ljava/lang/Object;Leij;Lfjx;IF)V m_276924_ + 0 o p_278043_ + 1 o p_277752_ + 2 o p_277503_ + 3 o p_278036_ + 4 o p_278079_ + 5 o p_277784_ + a (Lbfi$k;Lbfi$k$e;Leij;Lfjx;IF)V m_276924_ + 0 o p_277522_ + 1 o p_277620_ + 2 o p_277536_ + 3 o p_277845_ + 4 o p_278046_ + 5 o p_277769_ + a (Lbfj;FFLeij;Lfjx;I)V m_7392_ + 0 o p_270451_ + 1 o p_270613_ + 2 o p_270265_ + 3 o p_270499_ + 4 o p_270096_ + 5 o p_270626_ + b (Lbfi;)Ljava/lang/Object; m_269580_ + 0 o p_277901_ +fon net/minecraft/client/renderer/entity/DolphinRenderer + a f_114052_ + ()V + static + (Lfoy$a;)V + 0 o p_173960_ + a (Lbfj;)Lacq; m_5478_ + 0 o p_114057_ + a (Lbrt;)Lacq; m_5478_ + 0 o p_114059_ +foo net/minecraft/client/renderer/entity/DragonFireballRenderer + a f_114060_ + f f_114061_ + ()V + static + (Lfoy$a;)V + 0 o p_173962_ + a (Lbyx;Lgu;)I m_6086_ + 0 o p_114087_ + 1 o p_114088_ + a (Lbfj;Lgu;)I m_6086_ + 0 o p_114075_ + 1 o p_114076_ + a (Lbfj;)Lacq; m_5478_ + 0 o p_114066_ + a (Lein;Lorg/joml/Matrix4f;Lorg/joml/Matrix3f;IFIII)V m_253219_ + static + 0 o p_254095_ + 1 o p_254477_ + 2 o p_253948_ + 3 o p_253829_ + 4 o p_253995_ + 5 o p_254031_ + 6 o p_253641_ + 7 o p_254243_ + a (Lbyx;FFLeij;Lfjx;I)V m_7392_ + 0 o p_114080_ + 1 o p_114081_ + 2 o p_114082_ + 3 o p_114083_ + 4 o p_114084_ + 5 o p_114085_ + a (Lbyx;)Lacq; m_5478_ + 0 o p_114078_ + a (Lbfj;FFLeij;Lfjx;I)V m_7392_ + 0 o p_114068_ + 1 o p_114069_ + 2 o p_114070_ + 3 o p_114071_ + 4 o p_114072_ + 5 o p_114073_ +fop net/minecraft/client/renderer/entity/DrownedRenderer + a f_114098_ + ()V + static + (Lfoy$a;)V + 0 o p_173964_ + a (Lbfz;Leij;FFF)V m_7523_ + 0 o p_114103_ + 1 o p_114104_ + 2 o p_114105_ + 3 o p_114106_ + 4 o p_114107_ + a (Lbwv;)Lacq; m_5478_ + 0 o p_114115_ + a (Lbvq;Leij;FFF)V m_7523_ + 0 o p_114109_ + 1 o p_114110_ + 2 o p_114111_ + 3 o p_114112_ + 4 o p_114113_ +foq net/minecraft/client/renderer/entity/ElderGuardianRenderer + a f_114116_ + ()V + static + (Lfoy$a;)V + 0 o p_173966_ + a (Lbfj;)Lacq; m_5478_ + 0 o p_114121_ + a (Lbvy;Leij;F)V m_7546_ + 0 o p_114129_ + 1 o p_114130_ + 2 o p_114131_ + a (Lbvy;)Lacq; m_5478_ + 0 o p_114127_ + a (Lbfz;Leij;F)V m_7546_ + 0 o p_114123_ + 1 o p_114124_ + 2 o p_114125_ +fos net/minecraft/client/renderer/entity/EndCrystalRenderer + a f_114132_ + f f_114133_ + g f_114134_ + h f_173967_ + i f_173968_ + j f_114135_ + k f_114136_ + l f_114137_ + ()V + static + (Lfoy$a;)V + 0 o p_173970_ + a (Lbua;)Lacq; m_5478_ + 0 o p_114157_ + a (Lbfj;)Lacq; m_5478_ + 0 o p_114142_ + a (Lbfj;Lfmw;DDD)Z m_5523_ + 0 o p_114151_ + 1 o p_114152_ + 2 o p_114153_ + 3 o p_114154_ + 4 o p_114155_ + a ()Lfek; m_173971_ + static + a (Lbua;FFLeij;Lfjx;I)V m_7392_ + 0 o p_114162_ + 1 o p_114163_ + 2 o p_114164_ + 3 o p_114165_ + 4 o p_114166_ + 5 o p_114167_ + a (Lbua;F)F m_114158_ + static + 0 o p_114159_ + 1 o p_114160_ + a (Lbua;Lfmw;DDD)Z m_5523_ + 0 o p_114169_ + 1 o p_114170_ + 2 o p_114171_ + 3 o p_114172_ + 4 o p_114173_ + a (Lbfj;FFLeij;Lfjx;I)V m_7392_ + 0 o p_114144_ + 1 o p_114145_ + 2 o p_114146_ + 3 o p_114147_ + 4 o p_114148_ + 5 o p_114149_ +fot net/minecraft/client/renderer/entity/EnderDragonRenderer + a f_114174_ + f f_114175_ + g f_114176_ + h f_114177_ + i f_114178_ + j f_114179_ + k f_114180_ + l f_114181_ + m f_114182_ + n f_114183_ + ()V + static + (Lfoy$a;)V + 0 o p_173973_ + a (Lein;Lorg/joml/Matrix4f;I)V m_253170_ + static + 0 o p_254498_ + 1 o p_253891_ + 2 o p_254278_ + a (Lbub;FFLeij;Lfjx;I)V m_7392_ + 0 o p_114208_ + 1 o p_114209_ + 2 o p_114210_ + 3 o p_114211_ + 4 o p_114212_ + 5 o p_114213_ + a (Lbfj;)Lacq; m_5478_ + 0 o p_114197_ + a (Lbub;)Lacq; m_5478_ + 0 o p_114206_ + a (Lein;Lorg/joml/Matrix4f;FF)V m_252912_ + static + 0 o p_253956_ + 1 o p_254053_ + 2 o p_253704_ + 3 o p_253701_ + a ()Lfek; m_173974_ + static + a (Lbfj;FFLeij;Lfjx;I)V m_7392_ + 0 o p_114199_ + 1 o p_114200_ + 2 o p_114201_ + 3 o p_114202_ + 4 o p_114203_ + 5 o p_114204_ + a (FFFFILeij;Lfjx;I)V m_114187_ + static + 0 o p_114188_ + 1 o p_114189_ + 2 o p_114190_ + 3 o p_114191_ + 4 o p_114192_ + 5 o p_114193_ + 6 o p_114194_ + 7 o p_114195_ + b (Lein;Lorg/joml/Matrix4f;FF)V m_253012_ + static + 0 o p_253850_ + 1 o p_254379_ + 2 o p_253729_ + 3 o p_254030_ + c (Lein;Lorg/joml/Matrix4f;FF)V m_252736_ + static + 0 o p_254184_ + 1 o p_254082_ + 2 o p_253649_ + 3 o p_253694_ +fot$a net/minecraft/client/renderer/entity/EnderDragonRenderer$DragonModel + a f_114235_ + b f_114236_ + f f_114237_ + g f_114238_ + h f_114239_ + i f_114240_ + j f_114241_ + k f_114242_ + l f_114243_ + m f_114244_ + n f_114245_ + o f_114246_ + p f_114247_ + q f_114248_ + r f_114249_ + s f_114250_ + t f_114251_ + u f_114252_ + w f_114253_ + x f_114254_ + y f_114233_ + z f_114234_ + (Lfee;)V + 0 o p_173976_ + a (Lbub;FFF)V m_6839_ + 0 o p_114269_ + 1 o p_114270_ + 2 o p_114271_ + 3 o p_114272_ + a (Lbfj;FFFFF)V m_6973_ + 0 o p_114262_ + 1 o p_114263_ + 2 o p_114264_ + 3 o p_114265_ + 4 o p_114266_ + 5 o p_114267_ + a (Lbub;FFFFF)V m_6973_ + 0 o p_114274_ + 1 o p_114275_ + 2 o p_114276_ + 3 o p_114277_ + 4 o p_114278_ + 5 o p_114279_ + a (Leij;Lein;IIFLfee;Lfee;Lfee;Lfee;Lfee;Lfee;Lfee;F)V m_173977_ + 0 o p_173978_ + 1 o p_173979_ + 2 o p_173980_ + 3 o p_173981_ + 4 o p_173982_ + 5 o p_173983_ + 6 o p_173984_ + 7 o p_173985_ + 8 o p_173986_ + 9 o p_173987_ + 10 o p_173988_ + 11 o p_173989_ + 12 o p_173990_ + a (Lbfj;FFF)V m_6839_ + 0 o p_114257_ + 1 o p_114258_ + 2 o p_114259_ + 3 o p_114260_ + a (Leij;Lein;IIFFFF)V m_7695_ + 0 o p_114281_ + 1 o p_114282_ + 2 o p_114283_ + 3 o p_114284_ + 4 o p_114285_ + 5 o p_114286_ + 6 o p_114287_ + 7 o p_114288_ +fou net/minecraft/client/renderer/entity/EndermanRenderer + a f_114302_ + i f_114303_ + ()V + static + (Lfoy$a;)V + 0 o p_173992_ + a (Lbfj;F)Leei; m_7860_ + 0 o p_114310_ + 1 o p_114311_ + a (Lbfj;)Lacq; m_5478_ + 0 o p_114308_ + a (Lbgb;FFLeij;Lfjx;I)V m_7392_ + 0 o p_114327_ + 1 o p_114328_ + 2 o p_114329_ + 3 o p_114330_ + 4 o p_114331_ + 5 o p_114332_ + a (Lbvs;FFLeij;Lfjx;I)V m_7392_ + 0 o p_114339_ + 1 o p_114340_ + 2 o p_114341_ + 3 o p_114342_ + 4 o p_114343_ + 5 o p_114344_ + a (Lbvs;F)Leei; m_7860_ + 0 o p_114336_ + 1 o p_114337_ + a (Lbfz;FFLeij;Lfjx;I)V m_7392_ + 0 o p_114320_ + 1 o p_114321_ + 2 o p_114322_ + 3 o p_114323_ + 4 o p_114324_ + 5 o p_114325_ + a (Lbvs;)Lacq; m_5478_ + 0 o p_114334_ + a (Lbfj;FFLeij;Lfjx;I)V m_7392_ + 0 o p_114313_ + 1 o p_114314_ + 2 o p_114315_ + 3 o p_114316_ + 4 o p_114317_ + 5 o p_114318_ +fov net/minecraft/client/renderer/entity/EndermiteRenderer + a f_114345_ + ()V + static + (Lfoy$a;)V + 0 o p_173994_ + a (Lbfj;)Lacq; m_5478_ + 0 o p_114350_ + a (Lbvt;)F m_6441_ + 0 o p_114352_ + b (Lbvt;)Lacq; m_5478_ + 0 o p_114354_ + c (Lbfz;)F m_6441_ + 0 o p_114356_ +fow net/minecraft/client/renderer/entity/EntityRenderDispatcher + a f_114357_ + b f_114358_ + c f_114359_ + d f_114360_ + e f_114361_ + f f_276493_ + g f_276586_ + h f_114362_ + i f_114363_ + j f_114366_ + k f_114367_ + l f_173995_ + m f_234576_ + n f_234577_ + o f_114365_ + p f_173996_ + q f_114368_ + r f_114369_ + ()V + static + (Lenn;Lfuw;Lfpw;Lfko;Leov;Lenr;Lfea;)V + 0 o p_234579_ + 1 o p_234580_ + 2 o p_234581_ + 3 o p_234582_ + 4 o p_234583_ + 5 o p_234584_ + 6 o p_234585_ + a (Leij$a;Lein;FFFFF)V m_114414_ + static + 0 o p_114415_ + 1 o p_114416_ + 2 o p_114417_ + 3 o p_114418_ + 4 o p_114419_ + 5 o p_114420_ + 6 o p_114421_ + a (Leij$a;Lein;Lddx;Lcmp;Lgu;DDDFF)V m_277056_ + static + 0 o p_277956_ + 1 o p_277533_ + 2 o p_277501_ + 3 o p_277622_ + 4 o p_277911_ + 5 o p_277682_ + 6 o p_278099_ + 7 o p_277806_ + 8 o p_277844_ + 9 o p_277496_ + a (DDD)D m_114378_ + 0 o p_114379_ + 1 o p_114380_ + 2 o p_114381_ + a (Lbfj;)Lfox; m_114382_ + 0 o p_114383_ + a (Lakx;)V m_6213_ + 0 o p_174004_ + a (Leij;Lfjx;Lbfj;)V m_114453_ + 0 o p_114454_ + 1 o p_114455_ + 2 o p_114456_ + a (Z)V m_114468_ + 0 o p_114469_ + a (Lbfj;F)I m_114394_ + 0 o p_114395_ + 1 o p_114396_ + a (Lbfj;DDDFFLeij;Lfjx;I)V m_114384_ + 0 o p_114385_ + 1 o p_114386_ + 2 o p_114387_ + 3 o p_114388_ + 4 o p_114389_ + 5 o p_114390_ + 6 o p_114391_ + 7 o p_114392_ + 8 o p_114393_ + a (Lcmm;)V m_114406_ + 0 o p_114407_ + a ()Z m_114377_ + a (Leij$a;Lein;FFFFFF)V m_114422_ + static + 0 o p_114423_ + 1 o p_114424_ + 2 o p_114425_ + 3 o p_114426_ + 4 o p_114427_ + 5 o p_114428_ + 6 o p_114429_ + 7 o p_114430_ + a (Lcmm;Lemz;Lbfj;)V m_114408_ + 0 o p_114409_ + 1 o p_114410_ + 2 o p_114411_ + a (Lbfj;Lfmw;DDD)Z m_114397_ + 0 o p_114398_ + 1 o p_114399_ + 2 o p_114400_ + 3 o p_114401_ + 4 o p_114402_ + a (Leij;Lfjx;Lbfj;FFLcmp;F)V m_114457_ + static + 0 o p_114458_ + 1 o p_114459_ + 2 o p_114460_ + 3 o p_114461_ + 4 o p_114462_ + 5 o p_114463_ + 6 o p_114464_ + a (Lorg/joml/Quaternionf;)V m_252923_ + 0 o p_254264_ + a (Leij;Lein;Lbfj;F)V m_114441_ + static + 0 o p_114442_ + 1 o p_114443_ + 2 o p_114444_ + 3 o p_114445_ + b ()Lorg/joml/Quaternionf; m_253208_ + b (Lbfj;)D m_114471_ + 0 o p_114472_ + b (Z)V m_114473_ + 0 o p_114474_ + d ()Lfjt; m_234586_ +fox net/minecraft/client/renderer/entity/EntityRenderer + a f_174005_ + b f_174006_ + c f_114476_ + d f_114477_ + e f_114478_ + (Lfoy$a;)V + 0 o p_174008_ + a (Lbfj;Lgu;)I m_6086_ + 0 o p_114496_ + 1 o p_114497_ + a (Lbfj;F)Leei; m_7860_ + 0 o p_114483_ + 1 o p_114484_ + a (Lbfj;)Lacq; m_5478_ + 0 o p_114482_ + a (Lbfj;Lfmw;DDD)Z m_5523_ + 0 o p_114491_ + 1 o p_114492_ + 2 o p_114493_ + 3 o p_114494_ + 4 o p_114495_ + a (Lbfj;Lsw;Leij;Lfjx;I)V m_7649_ + 0 o p_114498_ + 1 o p_114499_ + 2 o p_114500_ + 3 o p_114501_ + 4 o p_114502_ + a (Lbfj;FFLeij;Lfjx;I)V m_7392_ + 0 o p_114485_ + 1 o p_114486_ + 2 o p_114487_ + 3 o p_114488_ + 4 o p_114489_ + 5 o p_114490_ + b (Lbfj;F)I m_114505_ + 0 o p_114506_ + 1 o p_114507_ + b (Lbfj;Lgu;)I m_114508_ + 0 o p_114509_ + 1 o p_114510_ + b (Lbfj;)Z m_6512_ + 0 o p_114504_ + b ()Leov; m_114481_ +foy net/minecraft/client/renderer/entity/EntityRendererProvider + create (Lfoy$a;)Lfox; m_174009_ + 0 o p_174010_ +foy$a net/minecraft/client/renderer/entity/EntityRendererProvider$Context + a f_174011_ + b f_174012_ + c f_234587_ + d f_234588_ + e f_174013_ + f f_174014_ + g f_174015_ + (Lfow;Lfpw;Lfko;Lfjt;Lakx;Lfea;Leov;)V + 0 o p_234590_ + 1 o p_234591_ + 2 o p_234592_ + 3 o p_234593_ + 4 o p_234594_ + 5 o p_234595_ + 6 o p_234596_ + a ()Lfow; m_174022_ + a (Lfec;)Lfee; m_174023_ + 0 o p_174024_ + b ()Lfpw; m_174025_ + c ()Lfko; m_234597_ + d ()Lfjt; m_234598_ + e ()Lakx; m_174026_ + f ()Lfea; m_174027_ + g ()Lfwx; m_266367_ + h ()Leov; m_174028_ +foz net/minecraft/client/renderer/entity/EntityRenderers + a f_174029_ + b f_174030_ + c f_174031_ + d f_174032_ + ()V + static + ()V + A (Lfoy$a;)Lfox; m_174095_ + static + 0 o p_174096_ + B (Lfoy$a;)Lfox; m_174097_ + static + 0 o p_174098_ + a (Lcom/google/common/collect/ImmutableMap$Builder;Lfoy$a;Lbfn;Lfoy;)V m_257087_ + static + 0 o p_258152_ + 1 o p_258153_ + 2 o p_258154_ + 3 o p_258155_ + a (Lfoy$a;)Ljava/util/Map; m_174049_ + static + 0 o p_174050_ + a ()Z m_174035_ + static + a (Lcom/google/common/collect/ImmutableMap$Builder;Lfoy$a;Ljava/lang/String;Lfoy;)V m_234604_ + static + 0 o p_234605_ + 1 o p_234606_ + 2 o p_234607_ + 3 o p_234608_ + a (Lbfn;Lfoy;)V m_174036_ + static + 0 o p_174037_ + 1 o p_174038_ + b (Lfoy$a;)Ljava/util/Map; m_174051_ + static + 0 o p_174052_ + c (Lfoy$a;)Lfox; m_234609_ + static + 0 o p_234610_ + d (Lfoy$a;)Lfox; m_234611_ + static + 0 o p_234612_ + e (Lfoy$a;)Lfox; m_174053_ + static + 0 o p_174054_ + f (Lfoy$a;)Lfox; m_174055_ + static + 0 o p_174056_ + g (Lfoy$a;)Lfox; m_174057_ + static + 0 o p_174058_ + h (Lfoy$a;)Lfox; m_174059_ + static + 0 o p_174060_ + i (Lfoy$a;)Lfox; m_174061_ + static + 0 o p_174062_ + j (Lfoy$a;)Lfox; m_174063_ + static + 0 o p_174064_ + k (Lfoy$a;)Lfox; m_174065_ + static + 0 o p_174066_ + l (Lfoy$a;)Lfox; m_174067_ + static + 0 o p_174068_ + m (Lfoy$a;)Lfox; m_174069_ + static + 0 o p_174070_ + n (Lfoy$a;)Lfox; m_174071_ + static + 0 o p_174072_ + o (Lfoy$a;)Lfox; m_174073_ + static + 0 o p_174074_ + p (Lfoy$a;)Lfox; m_174075_ + static + 0 o p_174076_ + q (Lfoy$a;)Lfox; m_174077_ + static + 0 o p_174078_ + r (Lfoy$a;)Lfox; m_174079_ + static + 0 o p_174080_ + s (Lfoy$a;)Lfox; m_174081_ + static + 0 o p_174082_ + t (Lfoy$a;)Lfox; m_174083_ + static + 0 o p_174084_ + u (Lfoy$a;)Lfox; m_174085_ + static + 0 o p_174086_ + v (Lfoy$a;)Lfox; m_174087_ + static + 0 o p_174088_ + w (Lfoy$a;)Lfox; m_174089_ + static + 0 o p_174090_ + x (Lfoy$a;)Lfox; m_174091_ + static + 0 o p_174092_ + y (Lfoy$a;)Lfox; m_244735_ + static + 0 o p_247942_ + z (Lfoy$a;)Lfox; m_174093_ + static + 0 o p_174094_ +fp net/minecraft/commands/arguments/coordinates/Vec3Argument + a f_120834_ + b f_120835_ + c f_120836_ + d f_120837_ + ()V + static + (Z)V + 0 o p_120840_ + a (Lcom/mojang/brigadier/context/CommandContext;Ljava/lang/String;)Leei; m_120844_ + static + 0 o p_120845_ + 1 o p_120846_ + a ()Lfp; m_120841_ + static + a (Lcom/mojang/brigadier/StringReader;)Lfk; parse + 0 o p_120843_ + a (Z)Lfp; m_120847_ + static + 0 o p_120848_ + b (Lcom/mojang/brigadier/context/CommandContext;Ljava/lang/String;)Lfk; m_120849_ + static + 0 o p_120850_ + 1 o p_120851_ + getExamples ()Ljava/util/Collection; getExamples + listSuggestions (Lcom/mojang/brigadier/context/CommandContext;Lcom/mojang/brigadier/suggestion/SuggestionsBuilder;)Ljava/util/concurrent/CompletableFuture; listSuggestions + 0 o p_120854_ + 1 o p_120855_ + parse (Lcom/mojang/brigadier/StringReader;)Ljava/lang/Object; parse + 0 o p_120857_ +fpa net/minecraft/client/renderer/entity/EvokerFangsRenderer + a f_114511_ + f f_114512_ + ()V + static + (Lfoy$a;)V + 0 o p_174100_ + a (Lbfj;)Lacq; m_5478_ + 0 o p_114517_ + a (Lbyy;FFLeij;Lfjx;I)V m_7392_ + 0 o p_114528_ + 1 o p_114529_ + 2 o p_114530_ + 3 o p_114531_ + 4 o p_114532_ + 5 o p_114533_ + a (Lbyy;)Lacq; m_5478_ + 0 o p_114526_ + a (Lbfj;FFLeij;Lfjx;I)V m_7392_ + 0 o p_114519_ + 1 o p_114520_ + 2 o p_114521_ + 3 o p_114522_ + 4 o p_114523_ + 5 o p_114524_ +fpb net/minecraft/client/renderer/entity/EvokerRenderer + a f_114534_ + ()V + static + (Lfoy$a;)V + 0 o p_174108_ + a (Lbfj;)Lacq; m_5478_ + 0 o p_114539_ + a (Lbwm;)Lacq; m_5478_ + 0 o p_114541_ +fpb$1 net/minecraft/client/renderer/entity/EvokerRenderer$1 + a f_114542_ + (Lfpb;Lfqt;Lfjt;)V + 0 o p_234614_ + 1 o p_234615_ + 2 o p_234616_ + a (Leij;Lfjx;ILbfj;FFFFFF)V m_6494_ + 0 o p_114547_ + 1 o p_114548_ + 2 o p_114549_ + 3 o p_114550_ + 4 o p_114551_ + 5 o p_114552_ + 6 o p_114553_ + 7 o p_114554_ + 8 o p_114555_ + 9 o p_114556_ + a (Leij;Lfjx;ILbwm;FFFFFF)V m_6494_ + 0 o p_114569_ + 1 o p_114570_ + 2 o p_114571_ + 3 o p_114572_ + 4 o p_114573_ + 5 o p_114574_ + 6 o p_114575_ + 7 o p_114576_ + 8 o p_114577_ + 9 o p_114578_ + a (Leij;Lfjx;ILbfz;FFFFFF)V m_6494_ + 0 o p_114558_ + 1 o p_114559_ + 2 o p_114560_ + 3 o p_114561_ + 4 o p_114562_ + 5 o p_114563_ + 6 o p_114564_ + 7 o p_114565_ + 8 o p_114566_ + 9 o p_114567_ +fpc net/minecraft/client/renderer/entity/ExperienceOrbRenderer + a f_114579_ + f f_114580_ + ()V + static + (Lfoy$a;)V + 0 o p_174110_ + a (Lbfp;FFLeij;Lfjx;I)V m_7392_ + 0 o p_114599_ + 1 o p_114600_ + 2 o p_114601_ + 3 o p_114602_ + 4 o p_114603_ + 5 o p_114604_ + a (Lbfj;Lgu;)I m_6086_ + 0 o p_114594_ + 1 o p_114595_ + a (Lein;Lorg/joml/Matrix4f;Lorg/joml/Matrix3f;FFIIIFFI)V m_252863_ + static + 0 o p_254515_ + 1 o p_253946_ + 2 o p_253754_ + 3 o p_253952_ + 4 o p_254066_ + 5 o p_254283_ + 6 o p_254566_ + 7 o p_253882_ + 8 o p_254434_ + 9 o p_254223_ + 10 o p_254372_ + a (Lbfj;)Lacq; m_5478_ + 0 o p_114585_ + a (Lbfp;Lgu;)I m_6086_ + 0 o p_114606_ + 1 o p_114607_ + a (Lbfp;)Lacq; m_5478_ + 0 o p_114597_ + a (Lbfj;FFLeij;Lfjx;I)V m_7392_ + 0 o p_114587_ + 1 o p_114588_ + 2 o p_114589_ + 3 o p_114590_ + 4 o p_114591_ + 5 o p_114592_ +fpd net/minecraft/client/renderer/entity/FallingBlockRenderer + a f_234617_ + (Lfoy$a;)V + 0 o p_174112_ + a (Lbvg;FFLeij;Lfjx;I)V m_7392_ + 0 o p_114634_ + 1 o p_114635_ + 2 o p_114636_ + 3 o p_114637_ + 4 o p_114638_ + 5 o p_114639_ + a (Lbfj;)Lacq; m_5478_ + 0 o p_114623_ + a (Lbvg;)Lacq; m_5478_ + 0 o p_114632_ + a (Lbfj;FFLeij;Lfjx;I)V m_7392_ + 0 o p_114625_ + 1 o p_114626_ + 2 o p_114627_ + 3 o p_114628_ + 4 o p_114629_ + 5 o p_114630_ +fpe net/minecraft/client/renderer/entity/FireworkEntityRenderer + a f_114640_ + (Lfoy$a;)V + 0 o p_174114_ + a (Lbfj;)Lacq; m_5478_ + 0 o p_114645_ + a (Lbzb;FFLeij;Lfjx;I)V m_7392_ + 0 o p_114656_ + 1 o p_114657_ + 2 o p_114658_ + 3 o p_114659_ + 4 o p_114660_ + 5 o p_114661_ + a (Lbzb;)Lacq; m_5478_ + 0 o p_114654_ + a (Lbfj;FFLeij;Lfjx;I)V m_7392_ + 0 o p_114647_ + 1 o p_114648_ + 2 o p_114649_ + 3 o p_114650_ + 4 o p_114651_ + 5 o p_114652_ +fpf net/minecraft/client/renderer/entity/FishingHookRenderer + a f_114678_ + f f_114679_ + g f_174115_ + ()V + static + (Lfoy$a;)V + 0 o p_174117_ + a (FFFLein;Leij$a;FF)V m_174118_ + static + 0 o p_174119_ + 1 o p_174120_ + 2 o p_174121_ + 3 o p_174122_ + 4 o p_174123_ + 5 o p_174124_ + 6 o p_174125_ + a (Lbfj;)Lacq; m_5478_ + 0 o p_114694_ + a (Lein;Lorg/joml/Matrix4f;Lorg/joml/Matrix3f;IFIII)V m_253251_ + static + 0 o p_254464_ + 1 o p_254085_ + 2 o p_253962_ + 3 o p_254296_ + 4 o p_253632_ + 5 o p_254132_ + 6 o p_254171_ + 7 o p_254026_ + a (II)F m_114690_ + static + 0 o p_114691_ + 1 o p_114692_ + a (Lbzc;)Lacq; m_5478_ + 0 o p_114703_ + a (Lbzc;FFLeij;Lfjx;I)V m_7392_ + 0 o p_114705_ + 1 o p_114706_ + 2 o p_114707_ + 3 o p_114708_ + 4 o p_114709_ + 5 o p_114710_ + a (Lbfj;FFLeij;Lfjx;I)V m_7392_ + 0 o p_114696_ + 1 o p_114697_ + 2 o p_114698_ + 3 o p_114699_ + 4 o p_114700_ + 5 o p_114701_ +fpg net/minecraft/client/renderer/entity/FoxRenderer + a f_114720_ + i f_114721_ + j f_114722_ + k f_114723_ + ()V + static + (Lfoy$a;)V + 0 o p_174127_ + a (Lbfj;)Lacq; m_5478_ + 0 o p_114728_ + a (Lbrv;Leij;FFF)V m_7523_ + 0 o p_114738_ + 1 o p_114739_ + 2 o p_114740_ + 3 o p_114741_ + 4 o p_114742_ + a (Lbfz;Leij;FFF)V m_7523_ + 0 o p_114730_ + 1 o p_114731_ + 2 o p_114732_ + 3 o p_114733_ + 4 o p_114734_ + a (Lbrv;)Lacq; m_5478_ + 0 o p_114736_ +fph net/minecraft/client/renderer/entity/FrogRenderer + (Lfoy$a;)V + 0 o p_234619_ + a (Lbta;)Lacq; m_5478_ + 0 o p_234623_ + a (Lbfj;)Lacq; m_5478_ + 0 o p_234621_ +fpi net/minecraft/client/renderer/entity/GhastRenderer + a f_114743_ + i f_114744_ + ()V + static + (Lfoy$a;)V + 0 o p_174129_ + a (Lbfj;)Lacq; m_5478_ + 0 o p_114749_ + a (Lbvw;Leij;F)V m_7546_ + 0 o p_114757_ + 1 o p_114758_ + 2 o p_114759_ + a (Lbvw;)Lacq; m_5478_ + 0 o p_114755_ + a (Lbfz;Leij;F)V m_7546_ + 0 o p_114751_ + 1 o p_114752_ + 2 o p_114753_ +fpj net/minecraft/client/renderer/entity/GiantMobRenderer + a f_114760_ + i f_114761_ + ()V + static + (Lfoy$a;F)V + 0 o p_174131_ + 1 o p_174132_ + a (Lbvx;Leij;F)V m_7546_ + 0 o p_114775_ + 1 o p_114776_ + 2 o p_114777_ + a (Lbfj;)Lacq; m_5478_ + 0 o p_114767_ + a (Lbvx;)Lacq; m_5478_ + 0 o p_114773_ + a (Lbfz;Leij;F)V m_7546_ + 0 o p_114769_ + 1 o p_114770_ + 2 o p_114771_ +fpk net/minecraft/client/renderer/entity/GlowSquidRenderer + a f_174133_ + ()V + static + (Lfoy$a;Lfdh;)V + 0 o p_174136_ + 1 o p_174137_ + a (Lbfj;Lgu;)I m_6086_ + 0 o p_174141_ + 1 o p_174142_ + a (Lbfj;)Lacq; m_5478_ + 0 o p_174139_ + a (Lbfr;Lgu;)I m_6086_ + 0 o p_174146_ + 1 o p_174147_ + a (Lbfr;)Lacq; m_5478_ + 0 o p_174144_ + a (Lbsk;)Lacq; m_5478_ + 0 o p_174149_ +fpl net/minecraft/client/renderer/entity/GoatRenderer + a f_174150_ + ()V + static + (Lfoy$a;)V + 0 o p_174153_ + a (Lbfj;)Lacq; m_5478_ + 0 o p_174155_ + a (Lbtg;)Lacq; m_5478_ + 0 o p_174157_ +fpm net/minecraft/client/renderer/entity/GuardianRenderer + a f_114778_ + i f_114779_ + j f_114780_ + ()V + static + (Lfoy$a;)V + 0 o p_174159_ + (Lfoy$a;FLfec;)V + 0 o p_174161_ + 1 o p_174162_ + 2 o p_174163_ + a (Lein;Lorg/joml/Matrix4f;Lorg/joml/Matrix3f;FFFIIIFF)V m_252738_ + static + 0 o p_253637_ + 1 o p_253920_ + 2 o p_253881_ + 3 o p_253994_ + 4 o p_254492_ + 5 o p_254474_ + 6 o p_254080_ + 7 o p_253655_ + 8 o p_254133_ + 9 o p_254233_ + 10 o p_253939_ + a (Lbfj;)Lacq; m_5478_ + 0 o p_114788_ + a (Lbgb;Lfmw;DDD)Z m_5523_ + 0 o p_114821_ + 1 o p_114822_ + 2 o p_114823_ + 3 o p_114824_ + 4 o p_114825_ + a (Lbfz;FFLeij;Lfjx;I)V m_7392_ + 0 o p_114807_ + 1 o p_114808_ + 2 o p_114809_ + 3 o p_114810_ + 4 o p_114811_ + 5 o p_114812_ + a (Lbfz;DF)Leei; m_114802_ + 0 o p_114803_ + 1 o p_114804_ + 2 o p_114805_ + a (Lbvy;FFLeij;Lfjx;I)V m_7392_ + 0 o p_114829_ + 1 o p_114830_ + 2 o p_114831_ + 3 o p_114832_ + 4 o p_114833_ + 5 o p_114834_ + a (Lbvy;)Lacq; m_5478_ + 0 o p_114827_ + a (Lbgb;FFLeij;Lfjx;I)V m_7392_ + 0 o p_114814_ + 1 o p_114815_ + 2 o p_114816_ + 3 o p_114817_ + 4 o p_114818_ + 5 o p_114819_ + a (Lbfj;Lfmw;DDD)Z m_5523_ + 0 o p_114797_ + 1 o p_114798_ + 2 o p_114799_ + 3 o p_114800_ + 4 o p_114801_ + a (Lbvy;Lfmw;DDD)Z m_5523_ + 0 o p_114836_ + 1 o p_114837_ + 2 o p_114838_ + 3 o p_114839_ + 4 o p_114840_ + a (Lbfj;FFLeij;Lfjx;I)V m_7392_ + 0 o p_114790_ + 1 o p_114791_ + 2 o p_114792_ + 3 o p_114793_ + 4 o p_114794_ + 5 o p_114795_ +fpn net/minecraft/client/renderer/entity/HoglinRenderer + a f_114853_ + ()V + static + (Lfoy$a;)V + 0 o p_174165_ + a (Lbwy;)Lacq; m_5478_ + 0 o p_114862_ + a (Lbfj;)Lacq; m_5478_ + 0 o p_114858_ + a (Lbfz;)Z m_5936_ + 0 o p_114860_ + b (Lbwy;)Z m_5936_ + 0 o p_114864_ +fpo net/minecraft/client/renderer/entity/HorseRenderer + a f_114865_ + ()V + static + (Lfoy$a;)V + 0 o p_174167_ + a (Lbfj;)Lacq; m_5478_ + 0 o p_114870_ + a (Ljava/util/EnumMap;)V m_114873_ + static + 0 o p_114874_ + a (Lbtm;)Lacq; m_5478_ + 0 o p_114872_ +fpp net/minecraft/client/renderer/entity/HumanoidMobRenderer + (Lfoy$a;Lfbs;FFFF)V + 0 o p_174173_ + 1 o p_174174_ + 2 o p_174175_ + 3 o p_174176_ + 4 o p_174177_ + 5 o p_174178_ + (Lfoy$a;Lfbs;F)V + 0 o p_174169_ + 1 o p_174170_ + 2 o p_174171_ +fpq net/minecraft/client/renderer/entity/HuskRenderer + a f_114892_ + ()V + static + (Lfoy$a;)V + 0 o p_174180_ + a (Lbfj;)Lacq; m_5478_ + 0 o p_114897_ + a (Lbwv;)Lacq; m_5478_ + 0 o p_114905_ + a (Lbwv;Leij;F)V m_7546_ + 0 o p_114907_ + 1 o p_114908_ + 2 o p_114909_ + a (Lbfz;Leij;F)V m_7546_ + 0 o p_114899_ + 1 o p_114900_ + 2 o p_114901_ +fpr net/minecraft/client/renderer/entity/IllagerRenderer + (Lfoy$a;Lfbt;F)V + 0 o p_174182_ + 1 o p_174183_ + 2 o p_174184_ + a (Lbvk;Leij;F)V m_7546_ + 0 o p_114919_ + 1 o p_114920_ + 2 o p_114921_ + a (Lbfz;Leij;F)V m_7546_ + 0 o p_114915_ + 1 o p_114916_ + 2 o p_114917_ +fps net/minecraft/client/renderer/entity/IllusionerRenderer + a f_114922_ + ()V + static + (Lfoy$a;)V + 0 o p_174186_ + a (Lbfj;)Lacq; m_5478_ + 0 o p_114927_ + a (Lbgb;FFLeij;Lfjx;I)V m_7392_ + 0 o p_114943_ + 1 o p_114944_ + 2 o p_114945_ + 3 o p_114946_ + 4 o p_114947_ + 5 o p_114948_ + a (Lbfz;FFLeij;Lfjx;I)V m_7392_ + 0 o p_114936_ + 1 o p_114937_ + 2 o p_114938_ + 3 o p_114939_ + 4 o p_114940_ + 5 o p_114941_ + a (Lbwa;FFLeij;Lfjx;I)V m_7392_ + 0 o p_114952_ + 1 o p_114953_ + 2 o p_114954_ + 3 o p_114955_ + 4 o p_114956_ + 5 o p_114957_ + a (Lbwa;)Lacq; m_5478_ + 0 o p_114950_ + a (Lbfj;FFLeij;Lfjx;I)V m_7392_ + 0 o p_114929_ + 1 o p_114930_ + 2 o p_114931_ + 3 o p_114932_ + 4 o p_114933_ + 5 o p_114934_ + b (Lbwa;)Z m_5933_ + 0 o p_114959_ + d (Lbfz;)Z m_5933_ + 0 o p_114961_ +fps$1 net/minecraft/client/renderer/entity/IllusionerRenderer$1 + a f_114962_ + (Lfps;Lfqt;Lfjt;)V + 0 o p_234642_ + 1 o p_234643_ + 2 o p_234644_ + a (Leij;Lfjx;ILbfj;FFFFFF)V m_6494_ + 0 o p_114967_ + 1 o p_114968_ + 2 o p_114969_ + 3 o p_114970_ + 4 o p_114971_ + 5 o p_114972_ + 6 o p_114973_ + 7 o p_114974_ + 8 o p_114975_ + 9 o p_114976_ + a (Leij;Lfjx;ILbfz;FFFFFF)V m_6494_ + 0 o p_114978_ + 1 o p_114979_ + 2 o p_114980_ + 3 o p_114981_ + 4 o p_114982_ + 5 o p_114983_ + 6 o p_114984_ + 7 o p_114985_ + 8 o p_114986_ + 9 o p_114987_ + a (Leij;Lfjx;ILbwa;FFFFFF)V m_6494_ + 0 o p_114989_ + 1 o p_114990_ + 2 o p_114991_ + 3 o p_114992_ + 4 o p_114993_ + 5 o p_114994_ + 6 o p_114995_ + 7 o p_114996_ + 8 o p_114997_ + 9 o p_114998_ +fpt net/minecraft/client/renderer/entity/IronGolemRenderer + a f_114999_ + ()V + static + (Lfoy$a;)V + 0 o p_174188_ + a (Lbrx;)Lacq; m_5478_ + 0 o p_115012_ + a (Lbfj;)Lacq; m_5478_ + 0 o p_115004_ + a (Lbrx;Leij;FFF)V m_7523_ + 0 o p_115014_ + 1 o p_115015_ + 2 o p_115016_ + 3 o p_115017_ + 4 o p_115018_ + a (Lbfz;Leij;FFF)V m_7523_ + 0 o p_115006_ + 1 o p_115007_ + 2 o p_115008_ + 3 o p_115009_ + 4 o p_115010_ +fpu net/minecraft/client/renderer/entity/ItemEntityRenderer + a f_174189_ + f f_174190_ + g f_174191_ + h f_174192_ + i f_174193_ + j f_174194_ + k f_174195_ + l f_174196_ + m f_115019_ + n f_115020_ + (Lfoy$a;)V + 0 o p_174198_ + a (Lbfj;)Lacq; m_5478_ + 0 o p_115025_ + a (Lcfz;)I m_115042_ + 0 o p_115043_ + a (Lbvh;FFLeij;Lfjx;I)V m_7392_ + 0 o p_115036_ + 1 o p_115037_ + 2 o p_115038_ + 3 o p_115039_ + 4 o p_115040_ + 5 o p_115041_ + a (Lbvh;)Lacq; m_5478_ + 0 o p_115034_ + a (Lbfj;FFLeij;Lfjx;I)V m_7392_ + 0 o p_115027_ + 1 o p_115028_ + 2 o p_115029_ + 3 o p_115030_ + 4 o p_115031_ + 5 o p_115032_ +fpv net/minecraft/client/renderer/entity/ItemFrameRenderer + a f_174199_ + f f_174200_ + g f_115044_ + h f_115045_ + i f_174201_ + j f_174202_ + k f_115047_ + l f_234645_ + ()V + static + (Lfoy$a;)V + 0 o p_174204_ + a (Lbfj;)Lacq; m_5478_ + 0 o p_115053_ + a (Lbva;Lcfz;)Lfwy; m_174212_ + 0 o p_174213_ + 1 o p_174214_ + a (Lbva;F)Leei; m_7860_ + 0 o p_115073_ + 1 o p_115074_ + a (Lbfj;Lsw;Leij;Lfjx;I)V m_7649_ + 0 o p_115065_ + 1 o p_115066_ + 2 o p_115067_ + 3 o p_115068_ + 4 o p_115069_ + a (Lbva;FFLeij;Lfjx;I)V m_7392_ + 0 o p_115076_ + 1 o p_115077_ + 2 o p_115078_ + 3 o p_115079_ + 4 o p_115080_ + 5 o p_115081_ + a (Lbva;)Lacq; m_5478_ + 0 o p_115071_ + a (Lbfj;Lgu;)I m_6086_ + 0 o p_174206_ + 1 o p_174207_ + a (Lbfj;F)Leei; m_7860_ + 0 o p_115055_ + 1 o p_115056_ + a (Lbva;Lsw;Leij;Lfjx;I)V m_7649_ + 0 o p_115083_ + 1 o p_115084_ + 2 o p_115085_ + 3 o p_115086_ + 4 o p_115087_ + a (Lbva;Lgu;)I m_6086_ + 0 o p_174216_ + 1 o p_174217_ + a (Lbfj;FFLeij;Lfjx;I)V m_7392_ + 0 o p_115058_ + 1 o p_115059_ + 2 o p_115060_ + 3 o p_115061_ + 4 o p_115062_ + 5 o p_115063_ + a (Lbva;II)I m_174208_ + 0 o p_174209_ + 1 o p_174210_ + 2 o p_174211_ + b (Lbva;)Z m_6512_ + 0 o p_115091_ + b (Lbfj;)Z m_6512_ + 0 o p_115089_ +fpw net/minecraft/client/renderer/entity/ItemRenderer + a f_273897_ + b f_273833_ + c f_174221_ + d f_174222_ + e f_174218_ + f f_174219_ + g f_174220_ + h f_256734_ + i f_244055_ + j f_243706_ + k f_115094_ + l f_244324_ + m f_244537_ + n f_265848_ + o f_115095_ + p f_115096_ + q f_115097_ + r f_174223_ + ()V + static + (Lenn;Lfuw;Lfwx;Leos;Lfjj;)V + 0 o p_266926_ + 1 o p_266774_ + 2 o p_266850_ + 3 o p_267016_ + 4 o p_267049_ + a (Lcfz;)Z m_285827_ + static + 0 o p_286353_ + a (Lfjx;Lfkf;ZZ)Lein; m_115184_ + static + 0 o p_115185_ + 1 o p_115186_ + 2 o p_115187_ + 3 o p_115188_ + a (Lakx;)V m_6213_ + 0 o p_115105_ + a (Lcfz;Lcfw;ZLeij;Lfjx;IILfwr;)V m_115143_ + 0 o p_115144_ + 1 o p_270188_ + 2 o p_115146_ + 3 o p_115147_ + 4 o p_115148_ + 5 o p_115149_ + 6 o p_115150_ + 7 o p_115151_ + a (Lbfz;Lcfz;Lcfw;ZLeij;Lfjx;Lcmm;III)V m_269491_ + 0 o p_270101_ + 1 o p_270637_ + 2 o p_270437_ + 3 o p_270434_ + 4 o p_270230_ + 5 o p_270411_ + 6 o p_270641_ + 7 o p_270595_ + 8 o p_270927_ + 9 o p_270845_ + a ()Lfju; m_115103_ + a (Lfwr;Lcfz;IILeij;Lein;)V m_115189_ + 0 o p_115190_ + 1 o p_115191_ + 2 o p_115192_ + 3 o p_115193_ + 4 o p_115194_ + 5 o p_115195_ + a (Lfjx;Lfkf;Leij$a;)Lein; m_115180_ + static + 0 o p_115181_ + 1 o p_115182_ + 2 o p_115183_ + a (Lcfz;Lcfw;IILeij;Lfjx;Lcmm;I)V m_269128_ + 0 o p_270761_ + 1 o p_270648_ + 2 o p_270410_ + 3 o p_270894_ + 4 o p_270430_ + 5 o p_270457_ + 6 o p_270149_ + 7 o p_270509_ + a (Leij;Lein;Ljava/util/List;Lcfz;II)V m_115162_ + 0 o p_115163_ + 1 o p_115164_ + 2 o p_115165_ + 3 o p_115166_ + 4 o p_115167_ + 5 o p_115168_ + a (Lcfz;Lcmm;Lbfz;I)Lfwr; m_174264_ + 0 o p_174265_ + 1 o p_174266_ + 2 o p_174267_ + 3 o p_174268_ + b (Lfjx;Lfkf;Leij$a;)Lein; m_115207_ + static + 0 o p_115208_ + 1 o p_115209_ + 2 o p_115210_ + b (Lfjx;Lfkf;ZZ)Lein; m_115211_ + static + 0 o p_115212_ + 1 o p_115213_ + 2 o p_115214_ + 3 o p_115215_ + c (Lfjx;Lfkf;ZZ)Lein; m_115222_ + static + 0 o p_115223_ + 1 o p_115224_ + 2 o p_115225_ + 3 o p_115226_ +fpx net/minecraft/client/renderer/entity/LeashKnotRenderer + a f_115229_ + f f_115230_ + ()V + static + (Lfoy$a;)V + 0 o p_174284_ + a (Lbfj;)Lacq; m_5478_ + 0 o p_115235_ + a (Lbvb;FFLeij;Lfjx;I)V m_7392_ + 0 o p_115246_ + 1 o p_115247_ + 2 o p_115248_ + 3 o p_115249_ + 4 o p_115250_ + 5 o p_115251_ + a (Lbvb;)Lacq; m_5478_ + 0 o p_115244_ + a (Lbfj;FFLeij;Lfjx;I)V m_7392_ + 0 o p_115237_ + 1 o p_115238_ + 2 o p_115239_ + 3 o p_115240_ + 4 o p_115241_ + 5 o p_115242_ +fpy net/minecraft/client/renderer/entity/LightningBoltRenderer + (Lfoy$a;)V + 0 o p_174286_ + a (Lbfy;FFLeij;Lfjx;I)V m_7392_ + 0 o p_115266_ + 1 o p_115267_ + 2 o p_115268_ + 3 o p_115269_ + 4 o p_115270_ + 5 o p_115271_ + a (Lbfj;)Lacq; m_5478_ + 0 o p_115255_ + a (Lbfy;)Lacq; m_5478_ + 0 o p_115264_ + a (Lorg/joml/Matrix4f;Lein;FFIFFFFFFFZZZZ)V m_115272_ + static + 0 o p_253966_ + 1 o p_115274_ + 2 o p_115275_ + 3 o p_115276_ + 4 o p_115277_ + 5 o p_115278_ + 6 o p_115279_ + 7 o p_115280_ + 8 o p_115281_ + 9 o p_115282_ + 10 o p_115283_ + 11 o p_115284_ + 12 o p_115285_ + 13 o p_115286_ + 14 o p_115287_ + 15 o p_115288_ + a (Lbfj;FFLeij;Lfjx;I)V m_7392_ + 0 o p_115257_ + 1 o p_115258_ + 2 o p_115259_ + 3 o p_115260_ + 4 o p_115261_ + 5 o p_115262_ +fpz net/minecraft/client/renderer/entity/LivingEntityRenderer + a f_115289_ + f f_115290_ + g f_115291_ + h f_174287_ + ()V + static + (Lfoy$a;Lfbf;F)V + 0 o p_174289_ + 1 o p_174290_ + 2 o p_174291_ + a (Lbfz;FFLeij;Lfjx;I)V m_7392_ + 0 o p_115308_ + 1 o p_115309_ + 2 o p_115310_ + 3 o p_115311_ + 4 o p_115312_ + 5 o p_115313_ + a (Lftg;)Z m_115326_ + 0 o p_115327_ + a (Lbfz;ZZZ)Lfkf; m_7225_ + 0 o p_115322_ + 1 o p_115323_ + 2 o p_115324_ + 3 o p_115325_ + a (Lbfz;Leij;FFF)V m_7523_ + 0 o p_115317_ + 1 o p_115318_ + 2 o p_115319_ + 3 o p_115320_ + 4 o p_115321_ + a (Lha;)F m_115328_ + static + 0 o p_115329_ + a ()Lfbf; m_7200_ + a (Lbfz;F)F m_6930_ + 0 o p_115305_ + 1 o p_115306_ + a (Lbfz;)Z m_5936_ + 0 o p_115304_ + a (Lbfj;FFLeij;Lfjx;I)V m_7392_ + 0 o p_115298_ + 1 o p_115299_ + 2 o p_115300_ + 3 o p_115301_ + 4 o p_115302_ + 5 o p_115303_ + a (Lbfz;Leij;F)V m_7546_ + 0 o p_115314_ + 1 o p_115315_ + 2 o p_115316_ + b (Lbfj;)Z m_6512_ + 0 o p_115331_ + b (Lbfz;F)F m_6931_ + 0 o p_115334_ + 1 o p_115335_ + b (Lbfz;)Z m_6512_ + 0 o p_115333_ + c (Lbfz;F)I m_115338_ + static + 0 o p_115339_ + 1 o p_115340_ + c (Lbfz;)F m_6441_ + 0 o p_115337_ + d (Lbfz;F)F m_115342_ + 0 o p_115343_ + 1 o p_115344_ + d (Lbfz;)Z m_5933_ + 0 o p_115341_ + e (Lbfz;)Z m_194453_ + static + 0 o p_194454_ +fpz$1 net/minecraft/client/renderer/entity/LivingEntityRenderer$1 + a f_115345_ + b f_115346_ + ()V + static +fq net/minecraft/commands/arguments/coordinates/WorldCoordinate + a f_120858_ + b f_120859_ + c f_175084_ + d f_120860_ + e f_120861_ + ()V + static + (ZD)V + 0 o p_120864_ + 1 o p_120865_ + a (D)D m_120867_ + 0 o p_120868_ + a ()Z m_120866_ + a (Lcom/mojang/brigadier/StringReader;Z)Lfq; m_120871_ + static + 0 o p_120872_ + 1 o p_120873_ + a (Lcom/mojang/brigadier/StringReader;)Lfq; m_120869_ + static + 0 o p_120870_ + b (Lcom/mojang/brigadier/StringReader;)Z m_120874_ + static + 0 o p_120875_ + equals (Ljava/lang/Object;)Z equals + 0 o p_120877_ + hashCode ()I hashCode +fqa net/minecraft/client/renderer/entity/LlamaRenderer + a f_262249_ + i f_262269_ + j f_262241_ + k f_262320_ + ()V + static + (Lfoy$a;Lfec;)V + 0 o p_174293_ + 1 o p_174294_ + a (Lbtn;)Lacq; m_5478_ + 0 o p_115355_ + a (Lbfj;)Lacq; m_5478_ + 0 o p_115353_ +fqa$1 net/minecraft/client/renderer/entity/LlamaRenderer$1 + a f_262225_ + ()V + static +fqb net/minecraft/client/renderer/entity/LlamaSpitRenderer + a f_115356_ + f f_115357_ + ()V + static + (Lfoy$a;)V + 0 o p_174296_ + a (Lbzf;)Lacq; m_5478_ + 0 o p_115371_ + a (Lbzf;FFLeij;Lfjx;I)V m_7392_ + 0 o p_115373_ + 1 o p_115374_ + 2 o p_115375_ + 3 o p_115376_ + 4 o p_115377_ + 5 o p_115378_ + a (Lbfj;)Lacq; m_5478_ + 0 o p_115362_ + a (Lbfj;FFLeij;Lfjx;I)V m_7392_ + 0 o p_115364_ + 1 o p_115365_ + 2 o p_115366_ + 3 o p_115367_ + 4 o p_115368_ + 5 o p_115369_ +fqc net/minecraft/client/renderer/entity/MagmaCubeRenderer + a f_115379_ + ()V + static + (Lfoy$a;)V + 0 o p_174298_ + a (Lbfj;Lgu;)I m_6086_ + 0 o p_115386_ + 1 o p_115387_ + a (Lbwb;Leij;F)V m_7546_ + 0 o p_115395_ + 1 o p_115396_ + 2 o p_115397_ + a (Lbfj;)Lacq; m_5478_ + 0 o p_115384_ + a (Lbgb;FFLeij;Lfjx;I)V m_7392_ + 0 o p_265674_ + 1 o p_265712_ + 2 o p_265037_ + 3 o p_265310_ + 4 o p_265788_ + 5 o p_265732_ + a (Lbwb;FFLeij;Lfjx;I)V m_7392_ + 0 o p_265315_ + 1 o p_265620_ + 2 o p_265669_ + 3 o p_265647_ + 4 o p_265147_ + 5 o p_265465_ + a (Lbfz;FFLeij;Lfjx;I)V m_7392_ + 0 o p_265361_ + 1 o p_265494_ + 2 o p_265246_ + 3 o p_265149_ + 4 o p_265456_ + 5 o p_265053_ + a (Lbwb;Lgu;)I m_6086_ + 0 o p_115399_ + 1 o p_115400_ + a (Lbwb;)Lacq; m_5478_ + 0 o p_115393_ + a (Lbfj;FFLeij;Lfjx;I)V m_7392_ + 0 o p_265415_ + 1 o p_265286_ + 2 o p_265073_ + 3 o p_265645_ + 4 o p_265228_ + 5 o p_265348_ + a (Lbfz;Leij;F)V m_7546_ + 0 o p_115389_ + 1 o p_115390_ + 2 o p_115391_ +fqd net/minecraft/client/renderer/entity/MinecartRenderer + a f_115401_ + f f_115402_ + g f_234646_ + ()V + static + (Lfoy$a;Lfec;)V + 0 o p_174300_ + 1 o p_174301_ + a (Lcaf;FLdcb;Leij;Lfjx;I)V m_7002_ + 0 o p_115424_ + 1 o p_115425_ + 2 o p_115426_ + 3 o p_115427_ + 4 o p_115428_ + 5 o p_115429_ + a (Lcaf;FFLeij;Lfjx;I)V m_7392_ + 0 o p_115418_ + 1 o p_115419_ + 2 o p_115420_ + 3 o p_115421_ + 4 o p_115422_ + 5 o p_115423_ + a (Lbfj;)Lacq; m_5478_ + 0 o p_115407_ + a (Lcaf;)Lacq; m_5478_ + 0 o p_115416_ + a (Lbfj;FFLeij;Lfjx;I)V m_7392_ + 0 o p_115409_ + 1 o p_115410_ + 2 o p_115411_ + 3 o p_115412_ + 4 o p_115413_ + 5 o p_115414_ +fqe net/minecraft/client/renderer/entity/MobRenderer + h f_174302_ + (Lfoy$a;Lfbf;F)V + 0 o p_174304_ + 1 o p_174305_ + 2 o p_174306_ + a (Lein;Lorg/joml/Matrix4f;FFFIIIIFFFFIZ)V m_174307_ + static + 0 o p_174308_ + 1 o p_254405_ + 2 o p_174310_ + 3 o p_174311_ + 4 o p_174312_ + 5 o p_174313_ + 6 o p_174314_ + 7 o p_174315_ + 8 o p_174316_ + 9 o p_174317_ + 10 o p_174318_ + 11 o p_174319_ + 12 o p_174320_ + 13 o p_174321_ + 14 o p_174322_ + a (Lbgb;Lfmw;DDD)Z m_5523_ + 0 o p_115468_ + 1 o p_115469_ + 2 o p_115470_ + 3 o p_115471_ + 4 o p_115472_ + a (Lbgb;FFLeij;Lfjx;I)V m_7392_ + 0 o p_115455_ + 1 o p_115456_ + 2 o p_115457_ + 3 o p_115458_ + 4 o p_115459_ + 5 o p_115460_ + a (Lbfj;Lfmw;DDD)Z m_5523_ + 0 o p_115442_ + 1 o p_115443_ + 2 o p_115444_ + 3 o p_115445_ + 4 o p_115446_ + a (Lbfz;FFLeij;Lfjx;I)V m_7392_ + 0 o p_115448_ + 1 o p_115449_ + 2 o p_115450_ + 3 o p_115451_ + 4 o p_115452_ + 5 o p_115453_ + a (Lbgb;FLeij;Lfjx;Lbfj;)V m_115461_ + 0 o p_115462_ + 1 o p_115463_ + 2 o p_115464_ + 3 o p_115465_ + 4 o p_115466_ + a (Lbgb;)Z m_6512_ + 0 o p_115506_ + a (Lbfj;FFLeij;Lfjx;I)V m_7392_ + 0 o p_115435_ + 1 o p_115436_ + 2 o p_115437_ + 3 o p_115438_ + 4 o p_115439_ + 5 o p_115440_ + b (Lbfz;)Z m_6512_ + 0 o p_115504_ + b (Lbfj;)Z m_6512_ + 0 o p_115502_ +fqf net/minecraft/client/renderer/entity/MushroomCowRenderer + a f_115507_ + ()V + static + (Lfoy$a;)V + 0 o p_174324_ + a (Lbry;)Lacq; m_5478_ + 0 o p_115514_ + a (Lbfj;)Lacq; m_5478_ + 0 o p_115512_ + a (Ljava/util/HashMap;)V m_115515_ + static + 0 o p_115516_ +fqg net/minecraft/client/renderer/entity/NoopRenderer + (Lfoy$a;)V + 0 o p_174326_ + a (Lbfj;)Lacq; m_5478_ + 0 o p_174328_ +fqh net/minecraft/client/renderer/entity/OcelotRenderer + a f_115517_ + ()V + static + (Lfoy$a;)V + 0 o p_174330_ + a (Lbrz;)Lacq; m_5478_ + 0 o p_115524_ + a (Lbfj;)Lacq; m_5478_ + 0 o p_115522_ +fqi net/minecraft/client/renderer/entity/PaintingRenderer + (Lfoy$a;)V + 0 o p_174332_ + a (Leij;Lein;Lbvc;IILfuv;Lfuv;)V m_115558_ + 0 o p_115559_ + 1 o p_115560_ + 2 o p_115561_ + 3 o p_115562_ + 4 o p_115563_ + 5 o p_115564_ + 6 o p_115565_ + a (Lbfj;)Lacq; m_5478_ + 0 o p_115528_ + a (Lorg/joml/Matrix4f;Lorg/joml/Matrix3f;Lein;FFFFFIIII)V m_253084_ + 0 o p_253885_ + 1 o p_253799_ + 2 o p_254114_ + 3 o p_254164_ + 4 o p_254459_ + 5 o p_254183_ + 6 o p_253615_ + 7 o p_254448_ + 8 o p_253660_ + 9 o p_254342_ + 10 o p_253757_ + 11 o p_254101_ + a (Lbvc;)Lacq; m_5478_ + 0 o p_115550_ + a (Lbvc;FFLeij;Lfjx;I)V m_7392_ + 0 o p_115552_ + 1 o p_115553_ + 2 o p_115554_ + 3 o p_115555_ + 4 o p_115556_ + 5 o p_115557_ + a (Lbfj;FFLeij;Lfjx;I)V m_7392_ + 0 o p_115530_ + 1 o p_115531_ + 2 o p_115532_ + 3 o p_115533_ + 4 o p_115534_ + 5 o p_115535_ +fqj net/minecraft/client/renderer/entity/PandaRenderer + a f_115620_ + ()V + static + (Lfoy$a;)V + 0 o p_174334_ + a (Lbsa;)Lacq; m_5478_ + 0 o p_115639_ + a (Lbfj;)Lacq; m_5478_ + 0 o p_115631_ + a (FFIFF)F m_115624_ + 0 o p_115625_ + 1 o p_115626_ + 2 o p_115627_ + 3 o p_115628_ + 4 o p_115629_ + a (Ljava/util/EnumMap;)V m_115646_ + static + 0 o p_115647_ + a (Lbfz;Leij;FFF)V m_7523_ + 0 o p_115633_ + 1 o p_115634_ + 2 o p_115635_ + 3 o p_115636_ + 4 o p_115637_ + a (Lbsa;Leij;FFF)V m_7523_ + 0 o p_115641_ + 1 o p_115642_ + 2 o p_115643_ + 3 o p_115644_ + 4 o p_115645_ +fqk net/minecraft/client/renderer/entity/ParrotRenderer + a f_262196_ + i f_262214_ + j f_262263_ + k f_262242_ + l f_262278_ + ()V + static + (Lfoy$a;)V + 0 o p_174336_ + a (Lbsb$b;)Lacq; m_262360_ + static + 0 o p_262577_ + a (Lbsb;)Lacq; m_5478_ + 0 o p_115658_ + a (Lbfj;)Lacq; m_5478_ + 0 o p_115653_ + a (Lbsb;F)F m_6930_ + 0 o p_115660_ + 1 o p_115661_ + a (Lbfz;F)F m_6930_ + 0 o p_115655_ + 1 o p_115656_ +fqk$1 net/minecraft/client/renderer/entity/ParrotRenderer$1 + a f_262232_ + ()V + static +fql net/minecraft/client/renderer/entity/PhantomRenderer + a f_115662_ + ()V + static + (Lfoy$a;)V + 0 o p_174338_ + a (Lbfj;)Lacq; m_5478_ + 0 o p_115667_ + a (Lbfz;Leij;FFF)V m_7523_ + 0 o p_115673_ + 1 o p_115674_ + 2 o p_115675_ + 3 o p_115676_ + 4 o p_115677_ + a (Lbwe;)Lacq; m_5478_ + 0 o p_115679_ + a (Lbwe;Leij;FFF)V m_7523_ + 0 o p_115685_ + 1 o p_115686_ + 2 o p_115687_ + 3 o p_115688_ + 4 o p_115689_ + a (Lbwe;Leij;F)V m_7546_ + 0 o p_115681_ + 1 o p_115682_ + 2 o p_115683_ + a (Lbfz;Leij;F)V m_7546_ + 0 o p_115669_ + 1 o p_115670_ + 2 o p_115671_ +fqm net/minecraft/client/renderer/entity/PigRenderer + a f_115690_ + ()V + static + (Lfoy$a;)V + 0 o p_174340_ + a (Lbsc;)Lacq; m_5478_ + 0 o p_115697_ + a (Lbfj;)Lacq; m_5478_ + 0 o p_115695_ +fqn net/minecraft/client/renderer/entity/PiglinRenderer + a f_174341_ + i f_174342_ + ()V + static + (Lfoy$a;Lfec;Lfec;Lfec;Z)V + 0 o p_174344_ + 1 o p_174345_ + 2 o p_174346_ + 3 o p_174347_ + 4 o p_174348_ + a (Lbfj;)Lacq; m_5478_ + 0 o p_115704_ + a (Lfea;Lfec;Z)Lfcj; m_174349_ + static + 0 o p_174350_ + 1 o p_174351_ + 2 o p_174352_ + a (Lbfz;)Z m_5936_ + 0 o p_115706_ + b (Lbgb;)Lacq; m_5478_ + 0 o p_115708_ + c (Lbgb;)Z m_5936_ + 0 o p_115712_ +fqo net/minecraft/client/renderer/entity/PillagerRenderer + a f_115713_ + ()V + static + (Lfoy$a;)V + 0 o p_174354_ + a (Lbfj;)Lacq; m_5478_ + 0 o p_115718_ + a (Lbwf;)Lacq; m_5478_ + 0 o p_115720_ +fqp net/minecraft/client/renderer/entity/PolarBearRenderer + a f_115721_ + ()V + static + (Lfoy$a;)V + 0 o p_174356_ + a (Lbsd;)Lacq; m_5478_ + 0 o p_115732_ + a (Lbfj;)Lacq; m_5478_ + 0 o p_115726_ + a (Lbsd;Leij;F)V m_7546_ + 0 o p_115734_ + 1 o p_115735_ + 2 o p_115736_ + a (Lbfz;Leij;F)V m_7546_ + 0 o p_115728_ + 1 o p_115729_ + 2 o p_115730_ +fqq net/minecraft/client/renderer/entity/PufferfishRenderer + a f_115737_ + i f_115738_ + j f_115739_ + k f_115740_ + l f_115741_ + ()V + static + (Lfoy$a;)V + 0 o p_174358_ + a (Lbse;FFLeij;Lfjx;I)V m_7392_ + 0 o p_115777_ + 1 o p_115778_ + 2 o p_115779_ + 3 o p_115780_ + 4 o p_115781_ + 5 o p_115782_ + a (Lbfj;)Lacq; m_5478_ + 0 o p_115746_ + a (Lbgb;FFLeij;Lfjx;I)V m_7392_ + 0 o p_115768_ + 1 o p_115769_ + 2 o p_115770_ + 3 o p_115771_ + 4 o p_115772_ + 5 o p_115773_ + a (Lbfz;Leij;FFF)V m_7523_ + 0 o p_115762_ + 1 o p_115763_ + 2 o p_115764_ + 3 o p_115765_ + 4 o p_115766_ + a (Lbfz;FFLeij;Lfjx;I)V m_7392_ + 0 o p_115755_ + 1 o p_115756_ + 2 o p_115757_ + 3 o p_115758_ + 4 o p_115759_ + 5 o p_115760_ + a (Lbse;)Lacq; m_5478_ + 0 o p_115775_ + a (Lbse;Leij;FFF)V m_7523_ + 0 o p_115784_ + 1 o p_115785_ + 2 o p_115786_ + 3 o p_115787_ + 4 o p_115788_ + a (Lbfj;FFLeij;Lfjx;I)V m_7392_ + 0 o p_115748_ + 1 o p_115749_ + 2 o p_115750_ + 3 o p_115751_ + 4 o p_115752_ + 5 o p_115753_ +fqr net/minecraft/client/renderer/entity/RabbitRenderer + a f_115789_ + i f_115790_ + j f_115791_ + k f_115792_ + l f_115793_ + m f_115794_ + n f_115795_ + o f_115796_ + ()V + static + (Lfoy$a;)V + 0 o p_174360_ + a (Lbfj;)Lacq; m_5478_ + 0 o p_115801_ + a (Lbsf;)Lacq; m_5478_ + 0 o p_115803_ +fqr$1 net/minecraft/client/renderer/entity/RabbitRenderer$1 + a f_262283_ + ()V + static +fqs net/minecraft/client/renderer/entity/RavagerRenderer + a f_115804_ + ()V + static + (Lfoy$a;)V + 0 o p_174362_ + a (Lbfj;)Lacq; m_5478_ + 0 o p_115809_ + a (Lbwh;)Lacq; m_5478_ + 0 o p_115811_ +fqt net/minecraft/client/renderer/entity/RenderLayerParent + a (Lbfj;)Lacq; m_5478_ + 0 o p_115812_ + a ()Lfbf; m_7200_ +fqu net/minecraft/client/renderer/entity/SalmonRenderer + a f_115813_ + ()V + static + (Lfoy$a;)V + 0 o p_174364_ + a (Lbfj;)Lacq; m_5478_ + 0 o p_115818_ + a (Lbfz;Leij;FFF)V m_7523_ + 0 o p_115820_ + 1 o p_115821_ + 2 o p_115822_ + 3 o p_115823_ + 4 o p_115824_ + a (Lbsg;)Lacq; m_5478_ + 0 o p_115826_ + a (Lbsg;Leij;FFF)V m_7523_ + 0 o p_115828_ + 1 o p_115829_ + 2 o p_115830_ + 3 o p_115831_ + 4 o p_115832_ +fqv net/minecraft/client/renderer/entity/SheepRenderer + a f_115833_ + ()V + static + (Lfoy$a;)V + 0 o p_174366_ + a (Lbfj;)Lacq; m_5478_ + 0 o p_115838_ + a (Lbsh;)Lacq; m_5478_ + 0 o p_115840_ +fqw net/minecraft/client/renderer/entity/ShulkerBulletRenderer + a f_115841_ + f f_115842_ + g f_115843_ + ()V + static + (Lfoy$a;)V + 0 o p_174368_ + a (Lbfj;Lgu;)I m_6086_ + 0 o p_115857_ + 1 o p_115858_ + a (Lbzi;Lgu;)I m_6086_ + 0 o p_115869_ + 1 o p_115870_ + a (Lbfj;)Lacq; m_5478_ + 0 o p_115848_ + a (Lbzi;FFLeij;Lfjx;I)V m_7392_ + 0 o p_115862_ + 1 o p_115863_ + 2 o p_115864_ + 3 o p_115865_ + 4 o p_115866_ + 5 o p_115867_ + a (Lbzi;)Lacq; m_5478_ + 0 o p_115860_ + a (Lbfj;FFLeij;Lfjx;I)V m_7392_ + 0 o p_115850_ + 1 o p_115851_ + 2 o p_115852_ + 3 o p_115853_ + 4 o p_115854_ + 5 o p_115855_ +fqx net/minecraft/client/renderer/entity/ShulkerRenderer + a f_115871_ + i f_115872_ + ()V + static + (Lfoy$a;)V + 0 o p_174370_ + a (Lbwi;F)Leei; m_7860_ + 0 o p_115904_ + 1 o p_115905_ + a (Lfwu;)Lacq; m_115918_ + static + 0 o p_115919_ + a (Lbfj;)Lacq; m_5478_ + 0 o p_115879_ + a (I)[Lacq; m_115876_ + static + 0 o p_115877_ + a (Lbgb;Lfmw;DDD)Z m_5523_ + 0 o p_115896_ + 1 o p_115897_ + 2 o p_115898_ + 3 o p_115899_ + 4 o p_115900_ + a (Lbwi;)Lacq; m_5478_ + 0 o p_115902_ + a (Lbwi;Leij;FFF)V m_7523_ + 0 o p_115907_ + 1 o p_115908_ + 2 o p_115909_ + 3 o p_115910_ + 4 o p_115911_ + a (Lbfj;F)Leei; m_7860_ + 0 o p_115881_ + 1 o p_115882_ + a (Lcen;)Lacq; m_174375_ + static + 0 o p_174376_ + a (Lbwi;Lfmw;Leei;)Z m_174371_ + static + 0 o p_174372_ + 1 o p_174373_ + 2 o p_174374_ + a (Lbfj;Lfmw;DDD)Z m_5523_ + 0 o p_115884_ + 1 o p_115885_ + 2 o p_115886_ + 3 o p_115887_ + 4 o p_115888_ + a (Lbfz;Leij;FFF)V m_7523_ + 0 o p_115890_ + 1 o p_115891_ + 2 o p_115892_ + 3 o p_115893_ + 4 o p_115894_ + a (Lbwi;Lfmw;DDD)Z m_5523_ + 0 o p_115913_ + 1 o p_115914_ + 2 o p_115915_ + 3 o p_115916_ + 4 o p_115917_ +fqy net/minecraft/client/renderer/entity/SilverfishRenderer + a f_115920_ + ()V + static + (Lfoy$a;)V + 0 o p_174378_ + a (Lbfj;)Lacq; m_5478_ + 0 o p_115925_ + a (Lbwj;)F m_6441_ + 0 o p_115927_ + b (Lbwj;)Lacq; m_5478_ + 0 o p_115929_ + c (Lbfz;)F m_6441_ + 0 o p_115931_ +fqz net/minecraft/client/renderer/entity/SkeletonRenderer + a f_115932_ + ()V + static + (Lfoy$a;)V + 0 o p_174380_ + (Lfoy$a;Lfec;Lfec;Lfec;)V + 0 o p_174382_ + 1 o p_174383_ + 2 o p_174384_ + 3 o p_174385_ + a (Lbvl;)Lacq; m_5478_ + 0 o p_115941_ + a (Lbfj;)Lacq; m_5478_ + 0 o p_115937_ + a (Lbfz;)Z m_5936_ + 0 o p_174387_ + b (Lbvl;)Z m_5936_ + 0 o p_174389_ +fr net/minecraft/commands/arguments/coordinates/WorldCoordinates + a f_120879_ + b f_120880_ + c f_120881_ + (Lfq;Lfq;Lfq;)V + 0 o p_120883_ + 1 o p_120884_ + 2 o p_120885_ + a (DDD)Lfr; m_175085_ + static + 0 o p_175086_ + 1 o p_175087_ + 2 o p_175088_ + a (Lcom/mojang/brigadier/StringReader;Z)Lfr; m_120889_ + static + 0 o p_120890_ + 1 o p_120891_ + a ()Z m_6888_ + a (Lcom/mojang/brigadier/StringReader;)Lfr; m_120887_ + static + 0 o p_120888_ + a (Lds;)Leei; m_6955_ + 0 o p_120893_ + a (Leeh;)Lfr; m_175089_ + static + 0 o p_175090_ + b (Lds;)Leeh; m_6970_ + 0 o p_120896_ + b ()Z m_6892_ + c ()Z m_6900_ + d ()Lfr; m_120898_ + static + equals (Ljava/lang/Object;)Z equals + 0 o p_120900_ + hashCode ()I hashCode +fra net/minecraft/client/renderer/entity/SlimeRenderer + a f_115942_ + ()V + static + (Lfoy$a;)V + 0 o p_174391_ + a (Lbwl;FFLeij;Lfjx;I)V m_7392_ + 0 o p_115976_ + 1 o p_115977_ + 2 o p_115978_ + 3 o p_115979_ + 4 o p_115980_ + 5 o p_115981_ + a (Lbwl;)Lacq; m_5478_ + 0 o p_115974_ + a (Lbwl;Leij;F)V m_7546_ + 0 o p_115983_ + 1 o p_115984_ + 2 o p_115985_ + a (Lbfj;)Lacq; m_5478_ + 0 o p_115947_ + a (Lbgb;FFLeij;Lfjx;I)V m_7392_ + 0 o p_115967_ + 1 o p_115968_ + 2 o p_115969_ + 3 o p_115970_ + 4 o p_115971_ + 5 o p_115972_ + a (Lbfz;FFLeij;Lfjx;I)V m_7392_ + 0 o p_115956_ + 1 o p_115957_ + 2 o p_115958_ + 3 o p_115959_ + 4 o p_115960_ + 5 o p_115961_ + a (Lbfj;FFLeij;Lfjx;I)V m_7392_ + 0 o p_115949_ + 1 o p_115950_ + 2 o p_115951_ + 3 o p_115952_ + 4 o p_115953_ + 5 o p_115954_ + a (Lbfz;Leij;F)V m_7546_ + 0 o p_115963_ + 1 o p_115964_ + 2 o p_115965_ +frb net/minecraft/client/renderer/entity/SnifferRenderer + a f_271201_ + ()V + static + (Lfoy$a;)V + 0 o p_272933_ + a (Lbtx;)Lacq; m_5478_ + 0 o p_273552_ + a (Lbfj;)Lacq; m_5478_ + 0 o p_273221_ +frc net/minecraft/client/renderer/entity/SnowGolemRenderer + a f_115986_ + ()V + static + (Lfoy$a;)V + 0 o p_174393_ + a (Lbsj;)Lacq; m_5478_ + 0 o p_115993_ + a (Lbfj;)Lacq; m_5478_ + 0 o p_115991_ +frd net/minecraft/client/renderer/entity/SpectralArrowRenderer + a f_115994_ + ()V + static + (Lfoy$a;)V + 0 o p_174399_ + a (Lbzl;)Lacq; m_5478_ + 0 o p_116001_ + a (Lbfj;)Lacq; m_5478_ + 0 o p_115999_ +fre net/minecraft/client/renderer/entity/SpiderRenderer + a f_116002_ + ()V + static + (Lfoy$a;)V + 0 o p_174401_ + (Lfoy$a;Lfec;)V + 0 o p_174403_ + 1 o p_174404_ + a (Lbfj;)Lacq; m_5478_ + 0 o p_116007_ + a (Lbwn;)Lacq; m_5478_ + 0 o p_116009_ + b (Lbwn;)F m_6441_ + 0 o p_116011_ + c (Lbfz;)F m_6441_ + 0 o p_116013_ +frf net/minecraft/client/renderer/entity/SquidRenderer + a f_116014_ + ()V + static + (Lfoy$a;Lfdh;)V + 0 o p_174406_ + 1 o p_174407_ + a (Lbsk;Leij;FFF)V m_7523_ + 0 o p_116035_ + 1 o p_116036_ + 2 o p_116037_ + 3 o p_116038_ + 4 o p_116039_ + a (Lbsk;F)F m_6930_ + 0 o p_116032_ + 1 o p_116033_ + a (Lbfj;)Lacq; m_5478_ + 0 o p_116019_ + a (Lbfz;Leij;FFF)V m_7523_ + 0 o p_116024_ + 1 o p_116025_ + 2 o p_116026_ + 3 o p_116027_ + 4 o p_116028_ + a (Lbfz;F)F m_6930_ + 0 o p_116021_ + 1 o p_116022_ + a (Lbsk;)Lacq; m_5478_ + 0 o p_116030_ +frg net/minecraft/client/renderer/entity/StrayRenderer + a f_116040_ + ()V + static + (Lfoy$a;)V + 0 o p_174409_ + a (Lbvl;)Lacq; m_5478_ + 0 o p_116049_ + a (Lbfj;)Lacq; m_5478_ + 0 o p_116045_ +frh net/minecraft/client/renderer/entity/StriderRenderer + a f_116050_ + i f_116051_ + ()V + static + (Lfoy$a;)V + 0 o p_174411_ + a (Lbwp;Leij;F)V m_7546_ + 0 o p_116066_ + 1 o p_116067_ + 2 o p_116068_ + a (Lbfj;)Lacq; m_5478_ + 0 o p_116056_ + a (Lbwp;)Lacq; m_5478_ + 0 o p_116064_ + a (Lbfz;)Z m_5936_ + 0 o p_116058_ + a (Lbfz;Leij;F)V m_7546_ + 0 o p_116060_ + 1 o p_116061_ + 2 o p_116062_ + b (Lbwp;)Z m_5936_ + 0 o p_116070_ +fri net/minecraft/client/renderer/entity/TadpoleRenderer + a f_234652_ + ()V + static + (Lfoy$a;)V + 0 o p_234655_ + a (Lbfj;)Lacq; m_5478_ + 0 o p_234657_ + a (Lbtd;)Lacq; m_5478_ + 0 o p_234659_ +frj net/minecraft/client/renderer/entity/ThrownItemRenderer + a f_174412_ + f f_116071_ + g f_116072_ + h f_116073_ + (Lfoy$a;)V + 0 o p_174414_ + (Lfoy$a;FZ)V + 0 o p_174416_ + 1 o p_174417_ + 2 o p_174418_ + a (Lbfj;Lgu;)I m_6086_ + 0 o p_116092_ + 1 o p_116093_ + a (Lbfj;)Lacq; m_5478_ + 0 o p_116083_ + a (Lbfj;FFLeij;Lfjx;I)V m_7392_ + 0 o p_116085_ + 1 o p_116086_ + 2 o p_116087_ + 3 o p_116088_ + 4 o p_116089_ + 5 o p_116090_ +frk net/minecraft/client/renderer/entity/ThrownTridentRenderer + a f_116094_ + f f_116095_ + ()V + static + (Lfoy$a;)V + 0 o p_174420_ + a (Lbzs;)Lacq; m_5478_ + 0 o p_116109_ + a (Lbfj;)Lacq; m_5478_ + 0 o p_116100_ + a (Lbzs;FFLeij;Lfjx;I)V m_7392_ + 0 o p_116111_ + 1 o p_116112_ + 2 o p_116113_ + 3 o p_116114_ + 4 o p_116115_ + 5 o p_116116_ + a (Lbfj;FFLeij;Lfjx;I)V m_7392_ + 0 o p_116102_ + 1 o p_116103_ + 2 o p_116104_ + 3 o p_116105_ + 4 o p_116106_ + 5 o p_116107_ +frl net/minecraft/client/renderer/entity/TippableArrowRenderer + a f_116132_ + f f_116133_ + ()V + static + (Lfoy$a;)V + 0 o p_174422_ + a (Lbfj;)Lacq; m_5478_ + 0 o p_116138_ + a (Lbyw;)Lacq; m_5478_ + 0 o p_116140_ +frm net/minecraft/client/renderer/entity/TntMinecartRenderer + f f_234660_ + (Lfoy$a;)V + 0 o p_174424_ + a (Lcaf;FLdcb;Leij;Lfjx;I)V m_7002_ + 0 o p_116144_ + 1 o p_116145_ + 2 o p_116146_ + 3 o p_116147_ + 4 o p_116148_ + 5 o p_116149_ + a (Lcar;FLdcb;Leij;Lfjx;I)V m_7002_ + 0 o p_116151_ + 1 o p_116152_ + 2 o p_116153_ + 3 o p_116154_ + 4 o p_116155_ + 5 o p_116156_ + a (Lfko;Ldcb;Leij;Lfjx;IZ)V m_234661_ + static + 0 o p_234662_ + 1 o p_234663_ + 2 o p_234664_ + 3 o p_234665_ + 4 o p_234666_ + 5 o p_234667_ +frn net/minecraft/client/renderer/entity/TntRenderer + a f_234668_ + (Lfoy$a;)V + 0 o p_174426_ + a (Lbvi;FFLeij;Lfjx;I)V m_7392_ + 0 o p_116177_ + 1 o p_116178_ + 2 o p_116179_ + 3 o p_116180_ + 4 o p_116181_ + 5 o p_116182_ + a (Lbfj;)Lacq; m_5478_ + 0 o p_116166_ + a (Lbvi;)Lacq; m_5478_ + 0 o p_116175_ + a (Lbfj;FFLeij;Lfjx;I)V m_7392_ + 0 o p_116168_ + 1 o p_116169_ + 2 o p_116170_ + 3 o p_116171_ + 4 o p_116172_ + 5 o p_116173_ +fro net/minecraft/client/renderer/entity/TropicalFishRenderer + a f_116183_ + i f_116184_ + j f_262282_ + k f_262236_ + ()V + static + (Lfoy$a;)V + 0 o p_174428_ + a (Lbfj;)Lacq; m_5478_ + 0 o p_116188_ + a (Lbgb;FFLeij;Lfjx;I)V m_7392_ + 0 o p_116210_ + 1 o p_116211_ + 2 o p_116212_ + 3 o p_116213_ + 4 o p_116214_ + 5 o p_116215_ + a (Lbfz;Leij;FFF)V m_7523_ + 0 o p_116204_ + 1 o p_116205_ + 2 o p_116206_ + 3 o p_116207_ + 4 o p_116208_ + a (Lbfz;FFLeij;Lfjx;I)V m_7392_ + 0 o p_116197_ + 1 o p_116198_ + 2 o p_116199_ + 3 o p_116200_ + 4 o p_116201_ + 5 o p_116202_ + a (Lbsl;Leij;FFF)V m_7523_ + 0 o p_116226_ + 1 o p_116227_ + 2 o p_116228_ + 3 o p_116229_ + 4 o p_116230_ + a (Lbsl;)Lacq; m_5478_ + 0 o p_116217_ + a (Lbsl;FFLeij;Lfjx;I)V m_7392_ + 0 o p_116219_ + 1 o p_116220_ + 2 o p_116221_ + 3 o p_116222_ + 4 o p_116223_ + 5 o p_116224_ + a (Lbfj;FFLeij;Lfjx;I)V m_7392_ + 0 o p_116190_ + 1 o p_116191_ + 2 o p_116192_ + 3 o p_116193_ + 4 o p_116194_ + 5 o p_116195_ +fro$1 net/minecraft/client/renderer/entity/TropicalFishRenderer$1 + a f_262201_ + ()V + static +frp net/minecraft/client/renderer/entity/TurtleRenderer + a f_116231_ + ()V + static + (Lfoy$a;)V + 0 o p_174430_ + a (Lbfj;)Lacq; m_5478_ + 0 o p_116236_ + a (Lbgb;FFLeij;Lfjx;I)V m_7392_ + 0 o p_116252_ + 1 o p_116253_ + 2 o p_116254_ + 3 o p_116255_ + 4 o p_116256_ + 5 o p_116257_ + a (Lbfz;FFLeij;Lfjx;I)V m_7392_ + 0 o p_116245_ + 1 o p_116246_ + 2 o p_116247_ + 3 o p_116248_ + 4 o p_116249_ + 5 o p_116250_ + a (Lbsm;)Lacq; m_5478_ + 0 o p_116259_ + a (Lbsm;FFLeij;Lfjx;I)V m_7392_ + 0 o p_116261_ + 1 o p_116262_ + 2 o p_116263_ + 3 o p_116264_ + 4 o p_116265_ + 5 o p_116266_ + a (Lbfj;FFLeij;Lfjx;I)V m_7392_ + 0 o p_116238_ + 1 o p_116239_ + 2 o p_116240_ + 3 o p_116241_ + 4 o p_116242_ + 5 o p_116243_ +frq net/minecraft/client/renderer/entity/UndeadHorseRenderer + a f_116267_ + ()V + static + (Lfoy$a;Lfec;)V + 0 o p_174432_ + 1 o p_174433_ + a (Lbfj;)Lacq; m_5478_ + 0 o p_116272_ + a (Lbtk;)Lacq; m_5478_ + 0 o p_116274_ +frr net/minecraft/client/renderer/entity/VexRenderer + a f_116275_ + i f_116276_ + ()V + static + (Lfoy$a;)V + 0 o p_174435_ + a (Lbfj;Lgu;)I m_6086_ + 0 o p_116283_ + 1 o p_116284_ + a (Lbwq;)Lacq; m_5478_ + 0 o p_116292_ + a (Lbfj;)Lacq; m_5478_ + 0 o p_116281_ + a (Lbwq;Lgu;)I m_6086_ + 0 o p_116298_ + 1 o p_116299_ +frs net/minecraft/client/renderer/entity/VillagerRenderer + a f_116300_ + ()V + static + (Lfoy$a;)V + 0 o p_174437_ + a (Lbfj;)Lacq; m_5478_ + 0 o p_116306_ + a (Lbyb;)Lacq; m_5478_ + 0 o p_116312_ + a (Lbyb;Leij;F)V m_7546_ + 0 o p_116314_ + 1 o p_116315_ + 2 o p_116316_ + a (Lbfz;Leij;F)V m_7546_ + 0 o p_116308_ + 1 o p_116309_ + 2 o p_116310_ +frt net/minecraft/client/renderer/entity/VindicatorRenderer + a f_116317_ + ()V + static + (Lfoy$a;)V + 0 o p_174439_ + a (Lbwr;)Lacq; m_5478_ + 0 o p_116324_ + a (Lbfj;)Lacq; m_5478_ + 0 o p_116322_ +frt$1 net/minecraft/client/renderer/entity/VindicatorRenderer$1 + a f_116325_ + (Lfrt;Lfqt;Lfjt;)V + 0 o p_234777_ + 1 o p_234778_ + 2 o p_234779_ + a (Leij;Lfjx;ILbfj;FFFFFF)V m_6494_ + 0 o p_116330_ + 1 o p_116331_ + 2 o p_116332_ + 3 o p_116333_ + 4 o p_116334_ + 5 o p_116335_ + 6 o p_116336_ + 7 o p_116337_ + 8 o p_116338_ + 9 o p_116339_ + a (Leij;Lfjx;ILbfz;FFFFFF)V m_6494_ + 0 o p_116341_ + 1 o p_116342_ + 2 o p_116343_ + 3 o p_116344_ + 4 o p_116345_ + 5 o p_116346_ + 6 o p_116347_ + 7 o p_116348_ + 8 o p_116349_ + 9 o p_116350_ + a (Leij;Lfjx;ILbwr;FFFFFF)V m_6494_ + 0 o p_116352_ + 1 o p_116353_ + 2 o p_116354_ + 3 o p_116355_ + 4 o p_116356_ + 5 o p_116357_ + 6 o p_116358_ + 7 o p_116359_ + 8 o p_116360_ + 9 o p_116361_ +fru net/minecraft/client/renderer/entity/WanderingTraderRenderer + a f_116362_ + ()V + static + (Lfoy$a;)V + 0 o p_174441_ + a (Lbyh;)Lacq; m_5478_ + 0 o p_116373_ + a (Lbyh;Leij;F)V m_7546_ + 0 o p_116375_ + 1 o p_116376_ + 2 o p_116377_ + a (Lbfj;)Lacq; m_5478_ + 0 o p_116367_ + a (Lbfz;Leij;F)V m_7546_ + 0 o p_116369_ + 1 o p_116370_ + 2 o p_116371_ +frv net/minecraft/client/renderer/entity/WardenRenderer + a f_234780_ + i f_234781_ + j f_234782_ + k f_234783_ + l f_234784_ + ()V + static + (Lfoy$a;)V + 0 o p_234787_ + a (Lbfj;)Lacq; m_5478_ + 0 o p_234789_ + a (Lbxs;)Lacq; m_5478_ + 0 o p_234791_ + a (Lbxs;FF)F m_234792_ + static + 0 o p_234793_ + 1 o p_234794_ + 2 o p_234795_ + b (Lbxs;FF)F m_234796_ + static + 0 o p_234797_ + 1 o p_234798_ + 2 o p_234799_ + c (Lbxs;FF)F m_234800_ + static + 0 o p_234801_ + 1 o p_234802_ + 2 o p_234803_ + d (Lbxs;FF)F m_234804_ + static + 0 o p_234805_ + 1 o p_234806_ + 2 o p_234807_ + e (Lbxs;FF)F m_234808_ + static + 0 o p_234809_ + 1 o p_234810_ + 2 o p_234811_ +frw net/minecraft/client/renderer/entity/WitchRenderer + a f_116378_ + ()V + static + (Lfoy$a;)V + 0 o p_174443_ + a (Lbws;)Lacq; m_5478_ + 0 o p_116410_ + a (Lbfj;)Lacq; m_5478_ + 0 o p_116383_ + a (Lbws;Leij;F)V m_7546_ + 0 o p_116419_ + 1 o p_116420_ + 2 o p_116421_ + a (Lbgb;FFLeij;Lfjx;I)V m_7392_ + 0 o p_116403_ + 1 o p_116404_ + 2 o p_116405_ + 3 o p_116406_ + 4 o p_116407_ + 5 o p_116408_ + a (Lbfz;FFLeij;Lfjx;I)V m_7392_ + 0 o p_116392_ + 1 o p_116393_ + 2 o p_116394_ + 3 o p_116395_ + 4 o p_116396_ + 5 o p_116397_ + a (Lbfj;FFLeij;Lfjx;I)V m_7392_ + 0 o p_116385_ + 1 o p_116386_ + 2 o p_116387_ + 3 o p_116388_ + 4 o p_116389_ + 5 o p_116390_ + a (Lbws;FFLeij;Lfjx;I)V m_7392_ + 0 o p_116412_ + 1 o p_116413_ + 2 o p_116414_ + 3 o p_116415_ + 4 o p_116416_ + 5 o p_116417_ + a (Lbfz;Leij;F)V m_7546_ + 0 o p_116399_ + 1 o p_116400_ + 2 o p_116401_ +frx net/minecraft/client/renderer/entity/WitherBossRenderer + a f_116422_ + i f_116423_ + ()V + static + (Lfoy$a;)V + 0 o p_174445_ + a (Lbfj;Lgu;)I m_6086_ + 0 o p_116430_ + 1 o p_116431_ + a (Lbuv;Lgu;)I m_6086_ + 0 o p_116443_ + 1 o p_116444_ + a (Lbuv;)Lacq; m_5478_ + 0 o p_116437_ + a (Lbfj;)Lacq; m_5478_ + 0 o p_116428_ + a (Lbuv;Leij;F)V m_7546_ + 0 o p_116439_ + 1 o p_116440_ + 2 o p_116441_ + a (Lbfz;Leij;F)V m_7546_ + 0 o p_116433_ + 1 o p_116434_ + 2 o p_116435_ +fry net/minecraft/client/renderer/entity/WitherSkeletonRenderer + a f_116445_ + ()V + static + (Lfoy$a;)V + 0 o p_174447_ + a (Lbvl;Leij;F)V m_7546_ + 0 o p_116460_ + 1 o p_116461_ + 2 o p_116462_ + a (Lbvl;)Lacq; m_5478_ + 0 o p_116458_ + a (Lbfj;)Lacq; m_5478_ + 0 o p_116450_ + a (Lbfz;Leij;F)V m_7546_ + 0 o p_116452_ + 1 o p_116453_ + 2 o p_116454_ +frz net/minecraft/client/renderer/entity/WitherSkullRenderer + a f_116463_ + f f_116464_ + g f_116465_ + ()V + static + (Lfoy$a;)V + 0 o p_174449_ + a (Lbfj;Lgu;)I m_6086_ + 0 o p_116479_ + 1 o p_116480_ + a (Lbzt;)Lacq; m_5478_ + 0 o p_116482_ + a (Lbfj;)Lacq; m_5478_ + 0 o p_116470_ + a (Lbzt;Lgu;)I m_6086_ + 0 o p_116491_ + 1 o p_116492_ + a ()Lfek; m_174450_ + static + a (Lbzt;FFLeij;Lfjx;I)V m_7392_ + 0 o p_116484_ + 1 o p_116485_ + 2 o p_116486_ + 3 o p_116487_ + 4 o p_116488_ + 5 o p_116489_ + a (Lbfj;FFLeij;Lfjx;I)V m_7392_ + 0 o p_116472_ + 1 o p_116473_ + 2 o p_116474_ + 3 o p_116475_ + 4 o p_116476_ + 5 o p_116477_ +fs net/minecraft/commands/arguments/coordinates/package-info +fsa net/minecraft/client/renderer/entity/WolfRenderer + a f_116493_ + i f_116494_ + j f_116495_ + ()V + static + (Lfoy$a;)V + 0 o p_174452_ + a (Lbfj;)Lacq; m_5478_ + 0 o p_116500_ + a (Lbgb;FFLeij;Lfjx;I)V m_7392_ + 0 o p_116519_ + 1 o p_116520_ + 2 o p_116521_ + 3 o p_116522_ + 4 o p_116523_ + 5 o p_116524_ + a (Lbso;F)F m_6930_ + 0 o p_116528_ + 1 o p_116529_ + a (Lbfz;FFLeij;Lfjx;I)V m_7392_ + 0 o p_116512_ + 1 o p_116513_ + 2 o p_116514_ + 3 o p_116515_ + 4 o p_116516_ + 5 o p_116517_ + a (Lbfz;F)F m_6930_ + 0 o p_116509_ + 1 o p_116510_ + a (Lbso;FFLeij;Lfjx;I)V m_7392_ + 0 o p_116531_ + 1 o p_116532_ + 2 o p_116533_ + 3 o p_116534_ + 4 o p_116535_ + 5 o p_116536_ + a (Lbso;)Lacq; m_5478_ + 0 o p_116526_ + a (Lbfj;FFLeij;Lfjx;I)V m_7392_ + 0 o p_116502_ + 1 o p_116503_ + 2 o p_116504_ + 3 o p_116505_ + 4 o p_116506_ + 5 o p_116507_ +fsb net/minecraft/client/renderer/entity/ZoglinRenderer + a f_116537_ + ()V + static + (Lfoy$a;)V + 0 o p_174454_ + a (Lbfj;)Lacq; m_5478_ + 0 o p_116542_ + a (Lbwu;)Lacq; m_5478_ + 0 o p_116544_ +fsc net/minecraft/client/renderer/entity/ZombieRenderer + (Lfoy$a;)V + 0 o p_174456_ + (Lfoy$a;Lfec;Lfec;Lfec;)V + 0 o p_174458_ + 1 o p_174459_ + 2 o p_174460_ + 3 o p_174461_ +fsd net/minecraft/client/renderer/entity/ZombieVillagerRenderer + a f_116547_ + ()V + static + (Lfoy$a;)V + 0 o p_174463_ + a (Lbfj;)Lacq; m_5478_ + 0 o p_116553_ + a (Lbww;)Lacq; m_5478_ + 0 o p_116559_ + a (Lbfz;)Z m_5936_ + 0 o p_116555_ + b (Lbww;)Z m_5936_ + 0 o p_116561_ +fse net/minecraft/client/renderer/entity/layers/ArrowLayer + a f_116562_ + (Lfoy$a;Lfpz;)V + 0 o p_174465_ + 1 o p_174466_ + a (Leij;Lfjx;ILbfj;FFFF)V m_5558_ + 0 o p_116569_ + 1 o p_116570_ + 2 o p_116571_ + 3 o p_116572_ + 4 o p_116573_ + 5 o p_116574_ + 6 o p_116575_ + 7 o p_116576_ + a (Lbfz;)I m_7040_ + 0 o p_116567_ +fsf net/minecraft/client/renderer/entity/layers/BeeStingerLayer + a f_116577_ + ()V + static + (Lfpz;)V + 0 o p_116580_ + a (Leij;Lfjx;ILbfj;FFFF)V m_5558_ + 0 o p_116584_ + 1 o p_116585_ + 2 o p_116586_ + 3 o p_116587_ + 4 o p_116588_ + 5 o p_116589_ + 6 o p_116590_ + 7 o p_116591_ + a (Lbfz;)I m_7040_ + 0 o p_116582_ + a (Lein;Lorg/joml/Matrix4f;Lorg/joml/Matrix3f;FIFFI)V m_253245_ + static + 0 o p_254470_ + 1 o p_254513_ + 2 o p_254052_ + 3 o p_253749_ + 4 o p_254520_ + 5 o p_254099_ + 6 o p_253914_ + 7 o p_254168_ +fsg net/minecraft/client/renderer/entity/layers/CapeLayer + (Lfqt;)V + 0 o p_116602_ + a (Leij;Lfjx;ILbfj;FFFFFF)V m_6494_ + 0 o p_116604_ + 1 o p_116605_ + 2 o p_116606_ + 3 o p_116607_ + 4 o p_116608_ + 5 o p_116609_ + 6 o p_116610_ + 7 o p_116611_ + 8 o p_116612_ + 9 o p_116613_ + a (Leij;Lfjx;ILfiv;FFFFFF)V m_6494_ + 0 o p_116615_ + 1 o p_116616_ + 2 o p_116617_ + 3 o p_116618_ + 4 o p_116619_ + 5 o p_116620_ + 6 o p_116621_ + 7 o p_116622_ + 8 o p_116623_ + 9 o p_116624_ +fsh net/minecraft/client/renderer/entity/layers/CarriedBlockLayer + a f_234812_ + (Lfqt;Lfko;)V + 0 o p_234814_ + 1 o p_234815_ + a (Leij;Lfjx;ILbfj;FFFFFF)V m_6494_ + 0 o p_116628_ + 1 o p_116629_ + 2 o p_116630_ + 3 o p_116631_ + 4 o p_116632_ + 5 o p_116633_ + 6 o p_116634_ + 7 o p_116635_ + 8 o p_116636_ + 9 o p_116637_ + a (Leij;Lfjx;ILbvs;FFFFFF)V m_6494_ + 0 o p_116639_ + 1 o p_116640_ + 2 o p_116641_ + 3 o p_116642_ + 4 o p_116643_ + 5 o p_116644_ + 6 o p_116645_ + 7 o p_116646_ + 8 o p_116647_ + 9 o p_116648_ +fsi net/minecraft/client/renderer/entity/layers/CatCollarLayer + a f_116649_ + b f_116650_ + ()V + static + (Lfqt;Lfea;)V + 0 o p_174468_ + 1 o p_174469_ + a (Leij;Lfjx;ILbro;FFFFFF)V m_6494_ + 0 o p_116666_ + 1 o p_116667_ + 2 o p_116668_ + 3 o p_116669_ + 4 o p_116670_ + 5 o p_116671_ + 6 o p_116672_ + 7 o p_116673_ + 8 o p_116674_ + 9 o p_116675_ + a (Leij;Lfjx;ILbfj;FFFFFF)V m_6494_ + 0 o p_116655_ + 1 o p_116656_ + 2 o p_116657_ + 3 o p_116658_ + 4 o p_116659_ + 5 o p_116660_ + 6 o p_116661_ + 7 o p_116662_ + 8 o p_116663_ + 9 o p_116664_ +fsj net/minecraft/client/renderer/entity/layers/CreeperPowerLayer + a f_116676_ + b f_116677_ + ()V + static + (Lfqt;Lfea;)V + 0 o p_174471_ + 1 o p_174472_ + a (F)F m_7631_ + 0 o p_116683_ + a ()Lacq; m_7029_ + b ()Lfbf; m_7193_ +fsk net/minecraft/client/renderer/entity/layers/CrossedArmsItemLayer + a f_234816_ + (Lfqt;Lfjt;)V + 0 o p_234818_ + 1 o p_234819_ + a (Leij;Lfjx;ILbfj;FFFFFF)V m_6494_ + 0 o p_116688_ + 1 o p_116689_ + 2 o p_116690_ + 3 o p_116691_ + 4 o p_116692_ + 5 o p_116693_ + 6 o p_116694_ + 7 o p_116695_ + 8 o p_116696_ + 9 o p_116697_ + a (Leij;Lfjx;ILbfz;FFFFFF)V m_6494_ + 0 o p_116699_ + 1 o p_116700_ + 2 o p_116701_ + 3 o p_116702_ + 4 o p_116703_ + 5 o p_116704_ + 6 o p_116705_ + 7 o p_116706_ + 8 o p_116707_ + 9 o p_116708_ +fsl net/minecraft/client/renderer/entity/layers/CustomHeadLayer + a f_116709_ + b f_116710_ + c f_116711_ + d f_174473_ + e f_234820_ + (Lfqt;Lfea;Lfjt;)V + 0 o p_234829_ + 1 o p_234830_ + 2 o p_234831_ + (Lfqt;Lfea;FFFLfjt;)V + 0 o p_234822_ + 1 o p_234823_ + 2 o p_234824_ + 3 o p_234825_ + 4 o p_234826_ + 5 o p_234827_ + a (Leij;Lfjx;ILbfj;FFFFFF)V m_6494_ + 0 o p_116720_ + 1 o p_116721_ + 2 o p_116722_ + 3 o p_116723_ + 4 o p_116724_ + 5 o p_116725_ + 6 o p_116726_ + 7 o p_116727_ + 8 o p_116728_ + 9 o p_116729_ + a (Leij;Lfjx;ILbfz;FFFFFF)V m_6494_ + 0 o p_116731_ + 1 o p_116732_ + 2 o p_116733_ + 3 o p_116734_ + 4 o p_116735_ + 5 o p_116736_ + 6 o p_116737_ + 7 o p_116738_ + 8 o p_116739_ + 9 o p_116740_ + a (Leij;Z)V m_174483_ + static + 0 o p_174484_ + 1 o p_174485_ +fsm net/minecraft/client/renderer/entity/layers/Deadmau5EarsLayer + (Lfqt;)V + 0 o p_116860_ + a (Leij;Lfjx;ILbfj;FFFFFF)V m_6494_ + 0 o p_116862_ + 1 o p_116863_ + 2 o p_116864_ + 3 o p_116865_ + 4 o p_116866_ + 5 o p_116867_ + 6 o p_116868_ + 7 o p_116869_ + 8 o p_116870_ + 9 o p_116871_ + a (Leij;Lfjx;ILfiv;FFFFFF)V m_6494_ + 0 o p_116873_ + 1 o p_116874_ + 2 o p_116875_ + 3 o p_116876_ + 4 o p_116877_ + 5 o p_116878_ + 6 o p_116879_ + 7 o p_116880_ + 8 o p_116881_ + 9 o p_116882_ +fsn net/minecraft/client/renderer/entity/layers/DolphinCarryingItemLayer + a f_234832_ + (Lfqt;Lfjt;)V + 0 o p_234834_ + 1 o p_234835_ + a (Leij;Lfjx;ILbfj;FFFFFF)V m_6494_ + 0 o p_116886_ + 1 o p_116887_ + 2 o p_116888_ + 3 o p_116889_ + 4 o p_116890_ + 5 o p_116891_ + 6 o p_116892_ + 7 o p_116893_ + 8 o p_116894_ + 9 o p_116895_ + a (Leij;Lfjx;ILbrt;FFFFFF)V m_6494_ + 0 o p_116897_ + 1 o p_116898_ + 2 o p_116899_ + 3 o p_116900_ + 4 o p_116901_ + 5 o p_116902_ + 6 o p_116903_ + 7 o p_116904_ + 8 o p_116905_ + 9 o p_116906_ +fso net/minecraft/client/renderer/entity/layers/DrownedOuterLayer + a f_116907_ + b f_116908_ + ()V + static + (Lfqt;Lfea;)V + 0 o p_174490_ + 1 o p_174491_ + a (Leij;Lfjx;ILbfj;FFFFFF)V m_6494_ + 0 o p_116913_ + 1 o p_116914_ + 2 o p_116915_ + 3 o p_116916_ + 4 o p_116917_ + 5 o p_116918_ + 6 o p_116919_ + 7 o p_116920_ + 8 o p_116921_ + 9 o p_116922_ + a (Leij;Lfjx;ILbvq;FFFFFF)V m_6494_ + 0 o p_116924_ + 1 o p_116925_ + 2 o p_116926_ + 3 o p_116927_ + 4 o p_116928_ + 5 o p_116929_ + 6 o p_116930_ + 7 o p_116931_ + 8 o p_116932_ + 9 o p_116933_ +fsp net/minecraft/client/renderer/entity/layers/ElytraLayer + a f_116934_ + b f_116935_ + ()V + static + (Lfqt;Lfea;)V + 0 o p_174493_ + 1 o p_174494_ + a (Leij;Lfjx;ILbfj;FFFFFF)V m_6494_ + 0 o p_116940_ + 1 o p_116941_ + 2 o p_116942_ + 3 o p_116943_ + 4 o p_116944_ + 5 o p_116945_ + 6 o p_116946_ + 7 o p_116947_ + 8 o p_116948_ + 9 o p_116949_ + a (Leij;Lfjx;ILbfz;FFFFFF)V m_6494_ + 0 o p_116951_ + 1 o p_116952_ + 2 o p_116953_ + 3 o p_116954_ + 4 o p_116955_ + 5 o p_116956_ + 6 o p_116957_ + 7 o p_116958_ + 8 o p_116959_ + 9 o p_116960_ +fsq net/minecraft/client/renderer/entity/layers/EnderEyesLayer + a f_116961_ + ()V + static + (Lfqt;)V + 0 o p_116964_ + a ()Lfkf; m_5708_ +fsr net/minecraft/client/renderer/entity/layers/EnergySwirlLayer + (Lfqt;)V + 0 o p_116967_ + a (Leij;Lfjx;ILbfj;FFFFFF)V m_6494_ + 0 o p_116970_ + 1 o p_116971_ + 2 o p_116972_ + 3 o p_116973_ + 4 o p_116974_ + 5 o p_116975_ + 6 o p_116976_ + 7 o p_116977_ + 8 o p_116978_ + 9 o p_116979_ + a (F)F m_7631_ + 0 o p_116968_ + a ()Lacq; m_7029_ + b ()Lfbf; m_7193_ +fss net/minecraft/client/renderer/entity/layers/EyesLayer + (Lfqt;)V + 0 o p_116981_ + a (Leij;Lfjx;ILbfj;FFFFFF)V m_6494_ + 0 o p_116983_ + 1 o p_116984_ + 2 o p_116985_ + 3 o p_116986_ + 4 o p_116987_ + 5 o p_116988_ + 6 o p_116989_ + 7 o p_116990_ + 8 o p_116991_ + 9 o p_116992_ + a ()Lfkf; m_5708_ +fst net/minecraft/client/renderer/entity/layers/FoxHeldItemLayer + a f_234836_ + (Lfqt;Lfjt;)V + 0 o p_234838_ + 1 o p_234839_ + a (Leij;Lfjx;ILbfj;FFFFFF)V m_6494_ + 0 o p_116996_ + 1 o p_116997_ + 2 o p_116998_ + 3 o p_116999_ + 4 o p_117000_ + 5 o p_117001_ + 6 o p_117002_ + 7 o p_117003_ + 8 o p_117004_ + 9 o p_117005_ + a (Leij;Lfjx;ILbrv;FFFFFF)V m_6494_ + 0 o p_117007_ + 1 o p_117008_ + 2 o p_117009_ + 3 o p_117010_ + 4 o p_117011_ + 5 o p_117012_ + 6 o p_117013_ + 7 o p_117014_ + 8 o p_117015_ + 9 o p_117016_ +fsu net/minecraft/client/renderer/entity/layers/HorseArmorLayer + a f_117017_ + (Lfqt;Lfea;)V + 0 o p_174496_ + 1 o p_174497_ + a (Leij;Lfjx;ILbtm;FFFFFF)V m_6494_ + 0 o p_117032_ + 1 o p_117033_ + 2 o p_117034_ + 3 o p_117035_ + 4 o p_117036_ + 5 o p_117037_ + 6 o p_117038_ + 7 o p_117039_ + 8 o p_117040_ + 9 o p_117041_ + a (Leij;Lfjx;ILbfj;FFFFFF)V m_6494_ + 0 o p_117021_ + 1 o p_117022_ + 2 o p_117023_ + 3 o p_117024_ + 4 o p_117025_ + 5 o p_117026_ + 6 o p_117027_ + 7 o p_117028_ + 8 o p_117029_ + 9 o p_117030_ +fsv net/minecraft/client/renderer/entity/layers/HorseMarkingLayer + a f_117042_ + ()V + static + (Lfqt;)V + 0 o p_117045_ + a (Leij;Lfjx;ILbtm;FFFFFF)V m_6494_ + 0 o p_117058_ + 1 o p_117059_ + 2 o p_117060_ + 3 o p_117061_ + 4 o p_117062_ + 5 o p_117063_ + 6 o p_117064_ + 7 o p_117065_ + 8 o p_117066_ + 9 o p_117067_ + a (Leij;Lfjx;ILbfj;FFFFFF)V m_6494_ + 0 o p_117047_ + 1 o p_117048_ + 2 o p_117049_ + 3 o p_117050_ + 4 o p_117051_ + 5 o p_117052_ + 6 o p_117053_ + 7 o p_117054_ + 8 o p_117055_ + 9 o p_117056_ + a (Ljava/util/EnumMap;)V m_117068_ + static + 0 o p_117069_ +fsw net/minecraft/client/renderer/entity/layers/HumanoidArmorLayer + a f_117070_ + b f_117071_ + c f_117072_ + d f_266073_ + ()V + static + (Lfqt;Lfbs;Lfbs;Lfwx;)V + 0 o p_267286_ + 1 o p_267110_ + 2 o p_267150_ + 3 o p_267238_ + a (Lfbs;Lbfo;)V m_117125_ + 0 o p_117126_ + 1 o p_117127_ + a (Leij;Lfjx;ILcdj;Lfbs;ZFFFLjava/lang/String;)V m_289609_ + 0 o p_289664_ + 1 o p_289689_ + 2 o p_289681_ + 3 o p_289650_ + 4 o p_289658_ + 5 o p_289668_ + 6 o p_289678_ + 7 o p_289674_ + 8 o p_289693_ + 9 o p_289682_ + a (Lcdk;Leij;Lfjx;ILcib;Lfbs;Z)V m_289604_ + 0 o p_289690_ + 1 o p_289687_ + 2 o p_289643_ + 3 o p_289683_ + 4 o p_289692_ + 5 o p_289663_ + 6 o p_289651_ + a (Lcdj;Leij;Lfjx;ILfbs;ZLcib;)V m_289594_ + 0 o p_289632_ + 1 o p_289633_ + 2 o p_289634_ + 3 o p_289635_ + 4 o p_289636_ + 5 o p_289637_ + 6 o p_289638_ + a (Lbfo;)Lfbs; m_117078_ + 0 o p_117079_ + a (Leij;Lfjx;ILbfz;FFFFFF)V m_6494_ + 0 o p_117096_ + 1 o p_117097_ + 2 o p_117098_ + 3 o p_117099_ + 4 o p_117100_ + 5 o p_117101_ + 6 o p_117102_ + 7 o p_117103_ + 8 o p_117104_ + 9 o p_117105_ + a (Leij;Lfjx;Lbfz;Lbfo;ILfbs;)V m_117118_ + 0 o p_117119_ + 1 o p_117120_ + 2 o p_117121_ + 3 o p_117122_ + 4 o p_117123_ + 5 o p_117124_ + a (Leij;Lfjx;ILbfj;FFFFFF)V m_6494_ + 0 o p_117085_ + 1 o p_117086_ + 2 o p_117087_ + 3 o p_117088_ + 4 o p_117089_ + 5 o p_117090_ + 6 o p_117091_ + 7 o p_117092_ + 8 o p_117093_ + 9 o p_117094_ + a (Lcdj;ZLjava/lang/String;)Lacq; m_117080_ + 0 o p_117081_ + 1 o p_117082_ + 2 o p_117083_ + a (Leij;Lfjx;ILfbs;)V m_289597_ + 0 o p_289673_ + 1 o p_289654_ + 2 o p_289649_ + 3 o p_289659_ + b (Lbfo;)Z m_117128_ + 0 o p_117129_ +fsw$1 net/minecraft/client/renderer/entity/layers/HumanoidArmorLayer$1 + a f_117130_ + ()V + static +fsx net/minecraft/client/renderer/entity/layers/IronGolemCrackinessLayer + a f_117132_ + ()V + static + (Lfqt;)V + 0 o p_117135_ + a (Leij;Lfjx;ILbfj;FFFFFF)V m_6494_ + 0 o p_117137_ + 1 o p_117138_ + 2 o p_117139_ + 3 o p_117140_ + 4 o p_117141_ + 5 o p_117142_ + 6 o p_117143_ + 7 o p_117144_ + 8 o p_117145_ + 9 o p_117146_ + a (Leij;Lfjx;ILbrx;FFFFFF)V m_6494_ + 0 o p_117148_ + 1 o p_117149_ + 2 o p_117150_ + 3 o p_117151_ + 4 o p_117152_ + 5 o p_117153_ + 6 o p_117154_ + 7 o p_117155_ + 8 o p_117156_ + 9 o p_117157_ +fsy net/minecraft/client/renderer/entity/layers/IronGolemFlowerLayer + a f_234840_ + (Lfqt;Lfko;)V + 0 o p_234842_ + 1 o p_234843_ + a (Leij;Lfjx;ILbfj;FFFFFF)V m_6494_ + 0 o p_117161_ + 1 o p_117162_ + 2 o p_117163_ + 3 o p_117164_ + 4 o p_117165_ + 5 o p_117166_ + 6 o p_117167_ + 7 o p_117168_ + 8 o p_117169_ + 9 o p_117170_ + a (Leij;Lfjx;ILbrx;FFFFFF)V m_6494_ + 0 o p_117172_ + 1 o p_117173_ + 2 o p_117174_ + 3 o p_117175_ + 4 o p_117176_ + 5 o p_117177_ + 6 o p_117178_ + 7 o p_117179_ + 8 o p_117180_ + 9 o p_117181_ +fsz net/minecraft/client/renderer/entity/layers/ItemInHandLayer + a f_234844_ + (Lfqt;Lfjt;)V + 0 o p_234846_ + 1 o p_234847_ + a (Leij;Lfjx;ILbfj;FFFFFF)V m_6494_ + 0 o p_117193_ + 1 o p_117194_ + 2 o p_117195_ + 3 o p_117196_ + 4 o p_117197_ + 5 o p_117198_ + 6 o p_117199_ + 7 o p_117200_ + 8 o p_117201_ + 9 o p_117202_ + a (Lbfz;Lcfz;Lcfw;Lbft;Leij;Lfjx;I)V m_117184_ + 0 o p_117185_ + 1 o p_117186_ + 2 o p_270970_ + 3 o p_117188_ + 4 o p_117189_ + 5 o p_117190_ + 6 o p_117191_ + a (Leij;Lfjx;ILbfz;FFFFFF)V m_6494_ + 0 o p_117204_ + 1 o p_117205_ + 2 o p_117206_ + 3 o p_117207_ + 4 o p_117208_ + 5 o p_117209_ + 6 o p_117210_ + 7 o p_117211_ + 8 o p_117212_ + 9 o p_117213_ +ft net/minecraft/commands/arguments/item/FunctionArgument + a f_120902_ + b f_120903_ + c f_120904_ + ()V + static + ()V + a (Lcom/mojang/brigadier/context/CommandContext;Lacq;)Ldn; m_120928_ + static + 0 o p_120929_ + 1 o p_120930_ + a (Lacq;)Lcom/mojang/brigadier/exceptions/CommandSyntaxException; m_120918_ + static + 0 o p_120919_ + a ()Lft; m_120907_ + static + a (Ljava/lang/Object;)Lcom/mojang/brigadier/Message; m_120916_ + static + 0 o p_120917_ + a (Lcom/mojang/brigadier/StringReader;)Lft$a; parse + 0 o p_120909_ + a (Lcom/mojang/brigadier/context/CommandContext;Ljava/lang/String;)Ljava/util/Collection; m_120910_ + static + 0 o p_120911_ + 1 o p_120912_ + b (Lcom/mojang/brigadier/context/CommandContext;Lacq;)Ljava/util/Collection; m_235273_ + static + 0 o p_235274_ + 1 o p_235275_ + b (Ljava/lang/Object;)Lcom/mojang/brigadier/Message; m_120926_ + static + 0 o p_120927_ + b (Lcom/mojang/brigadier/context/CommandContext;Ljava/lang/String;)Lcom/mojang/datafixers/util/Pair; m_120920_ + static + 0 o p_120921_ + 1 o p_120922_ + getExamples ()Ljava/util/Collection; getExamples + parse (Lcom/mojang/brigadier/StringReader;)Ljava/lang/Object; parse + 0 o p_120936_ +ft$1 net/minecraft/commands/arguments/item/FunctionArgument$1 + a f_120937_ + b f_120938_ + (Lft;Lacq;)V + 0 o p_120940_ + 1 o p_120941_ + a (Lcom/mojang/brigadier/context/CommandContext;)Ljava/util/Collection; m_7588_ + 0 o p_120943_ + b (Lcom/mojang/brigadier/context/CommandContext;)Lcom/mojang/datafixers/util/Pair; m_5911_ + 0 o p_120945_ +ft$2 net/minecraft/commands/arguments/item/FunctionArgument$2 + a f_120946_ + b f_120947_ + (Lft;Lacq;)V + 0 o p_120949_ + 1 o p_120950_ + a (Lcom/mojang/brigadier/context/CommandContext;)Ljava/util/Collection; m_7588_ + 0 o p_120952_ + b (Lcom/mojang/brigadier/context/CommandContext;)Lcom/mojang/datafixers/util/Pair; m_5911_ + 0 o p_120954_ +ft$a net/minecraft/commands/arguments/item/FunctionArgument$Result + a (Lcom/mojang/brigadier/context/CommandContext;)Ljava/util/Collection; m_7588_ + 0 o p_120955_ + b (Lcom/mojang/brigadier/context/CommandContext;)Lcom/mojang/datafixers/util/Pair; m_5911_ + 0 o p_120956_ +fta net/minecraft/client/renderer/entity/layers/LlamaDecorLayer + a f_117214_ + b f_117215_ + c f_117216_ + ()V + static + (Lfqt;Lfea;)V + 0 o p_174499_ + 1 o p_174500_ + a (Leij;Lfjx;ILbfj;FFFFFF)V m_6494_ + 0 o p_117221_ + 1 o p_117222_ + 2 o p_117223_ + 3 o p_117224_ + 4 o p_117225_ + 5 o p_117226_ + 6 o p_117227_ + 7 o p_117228_ + 8 o p_117229_ + 9 o p_117230_ + a (Leij;Lfjx;ILbtn;FFFFFF)V m_6494_ + 0 o p_117232_ + 1 o p_117233_ + 2 o p_117234_ + 3 o p_117235_ + 4 o p_117236_ + 5 o p_117237_ + 6 o p_117238_ + 7 o p_117239_ + 8 o p_117240_ + 9 o p_117241_ +ftb net/minecraft/client/renderer/entity/layers/MushroomCowMushroomLayer + a f_234848_ + (Lfqt;Lfko;)V + 0 o p_234850_ + 1 o p_234851_ + a (Leij;Lfjx;IZLdcb;ILfwr;)V m_234852_ + 0 o p_234853_ + 1 o p_234854_ + 2 o p_234855_ + 3 o p_234856_ + 4 o p_234857_ + 5 o p_234858_ + 6 o p_234859_ + a (Leij;Lfjx;ILbfj;FFFFFF)V m_6494_ + 0 o p_117245_ + 1 o p_117246_ + 2 o p_117247_ + 3 o p_117248_ + 4 o p_117249_ + 5 o p_117250_ + 6 o p_117251_ + 7 o p_117252_ + 8 o p_117253_ + 9 o p_117254_ + a (Leij;Lfjx;ILbry;FFFFFF)V m_6494_ + 0 o p_117256_ + 1 o p_117257_ + 2 o p_117258_ + 3 o p_117259_ + 4 o p_117260_ + 5 o p_117261_ + 6 o p_117262_ + 7 o p_117263_ + 8 o p_117264_ + 9 o p_117265_ +ftc net/minecraft/client/renderer/entity/layers/PandaHoldsItemLayer + a f_234860_ + (Lfqt;Lfjt;)V + 0 o p_234862_ + 1 o p_234863_ + a (Leij;Lfjx;ILbsa;FFFFFF)V m_6494_ + 0 o p_117280_ + 1 o p_117281_ + 2 o p_117282_ + 3 o p_117283_ + 4 o p_117284_ + 5 o p_117285_ + 6 o p_117286_ + 7 o p_117287_ + 8 o p_117288_ + 9 o p_117289_ + a (Leij;Lfjx;ILbfj;FFFFFF)V m_6494_ + 0 o p_117269_ + 1 o p_117270_ + 2 o p_117271_ + 3 o p_117272_ + 4 o p_117273_ + 5 o p_117274_ + 6 o p_117275_ + 7 o p_117276_ + 8 o p_117277_ + 9 o p_117278_ +ftd net/minecraft/client/renderer/entity/layers/ParrotOnShoulderLayer + a f_117290_ + (Lfqt;Lfea;)V + 0 o p_174511_ + 1 o p_174512_ + a (Leij;Lfjx;ILbfj;FFFFFF)V m_6494_ + 0 o p_117296_ + 1 o p_117297_ + 2 o p_117298_ + 3 o p_117299_ + 4 o p_117300_ + 5 o p_117301_ + 6 o p_117302_ + 7 o p_117303_ + 8 o p_117304_ + 9 o p_117305_ + a (Lbfn;)Z m_117293_ + static + 0 o p_117294_ + a (Leij;Lfjx;ILbyo;FFFFFF)V m_6494_ + 0 o p_117307_ + 1 o p_117308_ + 2 o p_117309_ + 3 o p_117310_ + 4 o p_117311_ + 5 o p_117312_ + 6 o p_117313_ + 7 o p_117314_ + 8 o p_117315_ + 9 o p_117316_ + a (Leij;Lfjx;ILbyo;FFFFZ)V m_117317_ + 0 o p_117318_ + 1 o p_117319_ + 2 o p_117320_ + 3 o p_117321_ + 4 o p_117322_ + 5 o p_117323_ + 6 o p_117324_ + 7 o p_117325_ + 8 o p_117326_ + a (Leij;ZLbyo;Lqr;Lfjx;IFFFFLbfn;)V m_262347_ + 0 o p_262528_ + 1 o p_262529_ + 2 o p_262530_ + 3 o p_262531_ + 4 o p_262532_ + 5 o p_262533_ + 6 o p_262534_ + 7 o p_262535_ + 8 o p_262536_ + 9 o p_262537_ + 10 o p_262538_ +fte net/minecraft/client/renderer/entity/layers/PhantomEyesLayer + a f_117339_ + ()V + static + (Lfqt;)V + 0 o p_117342_ + a ()Lfkf; m_5708_ +ftf net/minecraft/client/renderer/entity/layers/PlayerItemInHandLayer + a f_234864_ + b f_174513_ + c f_174514_ + (Lfqt;Lfjt;)V + 0 o p_234866_ + 1 o p_234867_ + a (Lbfz;Lcfz;Lbft;Leij;Lfjx;I)V m_174517_ + 0 o p_174518_ + 1 o p_174519_ + 2 o p_174520_ + 3 o p_174521_ + 4 o p_174522_ + 5 o p_174523_ + a (Lbfz;Lcfz;Lcfw;Lbft;Leij;Lfjx;I)V m_117184_ + 0 o p_270884_ + 1 o p_270379_ + 2 o p_270607_ + 3 o p_270324_ + 4 o p_270124_ + 5 o p_270414_ + 6 o p_270295_ +ftg net/minecraft/client/renderer/entity/layers/RenderLayer + a f_117344_ + (Lfqt;)V + 0 o p_117346_ + a (Leij;Lfjx;ILbfj;FFFFFF)V m_6494_ + 0 o p_117349_ + 1 o p_117350_ + 2 o p_117351_ + 3 o p_117352_ + 4 o p_117353_ + 5 o p_117354_ + 6 o p_117355_ + 7 o p_117356_ + 8 o p_117357_ + 9 o p_117358_ + a (Lbfj;)Lacq; m_117347_ + 0 o p_117348_ + a (Lfbf;Lacq;Leij;Lfjx;ILbfz;FFF)V m_117376_ + static + 0 o p_117377_ + 1 o p_117378_ + 2 o p_117379_ + 3 o p_117380_ + 4 o p_117381_ + 5 o p_117382_ + 6 o p_117383_ + 7 o p_117384_ + 8 o p_117385_ + a (Lfbf;Lfbf;Lacq;Leij;Lfjx;ILbfz;FFFFFFFFF)V m_117359_ + static + 0 o p_117360_ + 1 o p_117361_ + 2 o p_117362_ + 3 o p_117363_ + 4 o p_117364_ + 5 o p_117365_ + 6 o p_117366_ + 7 o p_117367_ + 8 o p_117368_ + 9 o p_117369_ + 10 o p_117370_ + 11 o p_117371_ + 12 o p_117372_ + 13 o p_117373_ + 14 o p_117374_ + 15 o p_117375_ + c ()Lfbf; m_117386_ +fth net/minecraft/client/renderer/entity/layers/SaddleLayer + a f_117387_ + b f_117388_ + (Lfqt;Lfbf;Lacq;)V + 0 o p_117390_ + 1 o p_117391_ + 2 o p_117392_ + a (Leij;Lfjx;ILbfj;FFFFFF)V m_6494_ + 0 o p_117394_ + 1 o p_117395_ + 2 o p_117396_ + 3 o p_117397_ + 4 o p_117398_ + 5 o p_117399_ + 6 o p_117400_ + 7 o p_117401_ + 8 o p_117402_ + 9 o p_117403_ +fti net/minecraft/client/renderer/entity/layers/SheepFurLayer + a f_117404_ + b f_117405_ + ()V + static + (Lfqt;Lfea;)V + 0 o p_174533_ + 1 o p_174534_ + a (Leij;Lfjx;ILbfj;FFFFFF)V m_6494_ + 0 o p_117410_ + 1 o p_117411_ + 2 o p_117412_ + 3 o p_117413_ + 4 o p_117414_ + 5 o p_117415_ + 6 o p_117416_ + 7 o p_117417_ + 8 o p_117418_ + 9 o p_117419_ + a (Leij;Lfjx;ILbsh;FFFFFF)V m_6494_ + 0 o p_117421_ + 1 o p_117422_ + 2 o p_117423_ + 3 o p_117424_ + 4 o p_117425_ + 5 o p_117426_ + 6 o p_117427_ + 7 o p_117428_ + 8 o p_117429_ + 9 o p_117430_ +ftj net/minecraft/client/renderer/entity/layers/ShulkerHeadLayer + (Lfqt;)V + 0 o p_117432_ + a (Leij;Lfjx;ILbfj;FFFFFF)V m_6494_ + 0 o p_117434_ + 1 o p_117435_ + 2 o p_117436_ + 3 o p_117437_ + 4 o p_117438_ + 5 o p_117439_ + 6 o p_117440_ + 7 o p_117441_ + 8 o p_117442_ + 9 o p_117443_ + a (Leij;Lfjx;ILbwi;FFFFFF)V m_6494_ + 0 o p_117445_ + 1 o p_117446_ + 2 o p_117447_ + 3 o p_117448_ + 4 o p_117449_ + 5 o p_117450_ + 6 o p_117451_ + 7 o p_117452_ + 8 o p_117453_ + 9 o p_117454_ +ftk net/minecraft/client/renderer/entity/layers/SlimeOuterLayer + a f_117455_ + (Lfqt;Lfea;)V + 0 o p_174536_ + 1 o p_174537_ + a (Leij;Lfjx;ILbfj;FFFFFF)V m_6494_ + 0 o p_117459_ + 1 o p_117460_ + 2 o p_117461_ + 3 o p_117462_ + 4 o p_117463_ + 5 o p_117464_ + 6 o p_117465_ + 7 o p_117466_ + 8 o p_117467_ + 9 o p_117468_ + a (Leij;Lfjx;ILbfz;FFFFFF)V m_6494_ + 0 o p_117470_ + 1 o p_117471_ + 2 o p_117472_ + 3 o p_117473_ + 4 o p_117474_ + 5 o p_117475_ + 6 o p_117476_ + 7 o p_117477_ + 8 o p_117478_ + 9 o p_117479_ +ftl net/minecraft/client/renderer/entity/layers/SnowGolemHeadLayer + a f_234868_ + b f_234869_ + (Lfqt;Lfko;Lfpw;)V + 0 o p_234871_ + 1 o p_234872_ + 2 o p_234873_ + a (Leij;Lfjx;ILbsj;FFFFFF)V m_6494_ + 0 o p_117494_ + 1 o p_117495_ + 2 o p_117496_ + 3 o p_117497_ + 4 o p_117498_ + 5 o p_117499_ + 6 o p_117500_ + 7 o p_117501_ + 8 o p_117502_ + 9 o p_117503_ + a (Leij;Lfjx;ILbfj;FFFFFF)V m_6494_ + 0 o p_117483_ + 1 o p_117484_ + 2 o p_117485_ + 3 o p_117486_ + 4 o p_117487_ + 5 o p_117488_ + 6 o p_117489_ + 7 o p_117490_ + 8 o p_117491_ + 9 o p_117492_ +ftm net/minecraft/client/renderer/entity/layers/SpiderEyesLayer + a f_117504_ + ()V + static + (Lfqt;)V + 0 o p_117507_ + a ()Lfkf; m_5708_ +ftn net/minecraft/client/renderer/entity/layers/SpinAttackEffectLayer + a f_117509_ + b f_174538_ + c f_117510_ + ()V + static + (Lfqt;Lfea;)V + 0 o p_174540_ + 1 o p_174541_ + a (Leij;Lfjx;ILbfj;FFFFFF)V m_6494_ + 0 o p_117515_ + 1 o p_117516_ + 2 o p_117517_ + 3 o p_117518_ + 4 o p_117519_ + 5 o p_117520_ + 6 o p_117521_ + 7 o p_117522_ + 8 o p_117523_ + 9 o p_117524_ + a ()Lfek; m_174542_ + static + a (Leij;Lfjx;ILbfz;FFFFFF)V m_6494_ + 0 o p_117526_ + 1 o p_117527_ + 2 o p_117528_ + 3 o p_117529_ + 4 o p_117530_ + 5 o p_117531_ + 6 o p_117532_ + 7 o p_117533_ + 8 o p_117534_ + 9 o p_117535_ +fto net/minecraft/client/renderer/entity/layers/StrayClothingLayer + a f_117536_ + b f_117537_ + ()V + static + (Lfqt;Lfea;)V + 0 o p_174544_ + 1 o p_174545_ + a (Leij;Lfjx;ILbgb;FFFFFF)V m_6494_ + 0 o p_117553_ + 1 o p_117554_ + 2 o p_117555_ + 3 o p_117556_ + 4 o p_117557_ + 5 o p_117558_ + 6 o p_117559_ + 7 o p_117560_ + 8 o p_117561_ + 9 o p_117562_ + a (Leij;Lfjx;ILbfj;FFFFFF)V m_6494_ + 0 o p_117542_ + 1 o p_117543_ + 2 o p_117544_ + 3 o p_117545_ + 4 o p_117546_ + 5 o p_117547_ + 6 o p_117548_ + 7 o p_117549_ + 8 o p_117550_ + 9 o p_117551_ +ftp net/minecraft/client/renderer/entity/layers/StuckInBodyLayer + (Lfpz;)V + 0 o p_117564_ + a (Leij;Lfjx;ILbfj;FFFFFF)V m_6494_ + 0 o p_117575_ + 1 o p_117576_ + 2 o p_117577_ + 3 o p_117578_ + 4 o p_117579_ + 5 o p_117580_ + 6 o p_117581_ + 7 o p_117582_ + 8 o p_117583_ + 9 o p_117584_ + a (Leij;Lfjx;ILbfj;FFFF)V m_5558_ + 0 o p_117566_ + 1 o p_117567_ + 2 o p_117568_ + 3 o p_117569_ + 4 o p_117570_ + 5 o p_117571_ + 6 o p_117572_ + 7 o p_117573_ + a (Lbfz;)I m_7040_ + 0 o p_117565_ + a (Leij;Lfjx;ILbfz;FFFFFF)V m_6494_ + 0 o p_117586_ + 1 o p_117587_ + 2 o p_117588_ + 3 o p_117589_ + 4 o p_117590_ + 5 o p_117591_ + 6 o p_117592_ + 7 o p_117593_ + 8 o p_117594_ + 9 o p_117595_ +ftq net/minecraft/client/renderer/entity/layers/TropicalFishPatternLayer + a f_262267_ + b f_262199_ + c f_262234_ + d f_262270_ + e f_262298_ + f f_262260_ + g f_262290_ + h f_262297_ + i f_262197_ + j f_262284_ + k f_262261_ + l f_262230_ + m f_117596_ + n f_117597_ + ()V + static + (Lfqt;Lfea;)V + 0 o p_174547_ + 1 o p_174548_ + a (Leij;Lfjx;ILbfj;FFFFFF)V m_6494_ + 0 o p_117601_ + 1 o p_117602_ + 2 o p_117603_ + 3 o p_117604_ + 4 o p_117605_ + 5 o p_117606_ + 6 o p_117607_ + 7 o p_117608_ + 8 o p_117609_ + 9 o p_117610_ + a (Leij;Lfjx;ILbsl;FFFFFF)V m_6494_ + 0 o p_117612_ + 1 o p_117613_ + 2 o p_117614_ + 3 o p_117615_ + 4 o p_117616_ + 5 o p_117617_ + 6 o p_117618_ + 7 o p_117619_ + 8 o p_117620_ + 9 o p_117621_ +ftq$1 net/minecraft/client/renderer/entity/layers/TropicalFishPatternLayer$1 + a f_262220_ + b f_262237_ + ()V + static +ftr net/minecraft/client/renderer/entity/layers/VillagerProfessionLayer + a f_117622_ + b f_117623_ + c f_117624_ + d f_117625_ + e f_117626_ + ()V + static + (Lfqt;Lakx;Ljava/lang/String;)V + 0 o p_174550_ + 1 o p_174551_ + 2 o p_174552_ + a (Lit/unimi/dsi/fastutil/ints/Int2ObjectOpenHashMap;)V m_117656_ + static + 0 o p_117657_ + a (Leij;Lfjx;ILbfj;FFFFFF)V m_6494_ + 0 o p_117635_ + 1 o p_117636_ + 2 o p_117637_ + 3 o p_117638_ + 4 o p_117639_ + 5 o p_117640_ + 6 o p_117641_ + 7 o p_117642_ + 8 o p_117643_ + 9 o p_117644_ + a (Ljava/lang/String;Ljava/lang/String;)Ljava/lang/String; m_244736_ + 0 o p_247943_ + 1 o p_247944_ + a (Lakv;)Ljava/util/Optional; m_234874_ + static + 0 o p_234875_ + a (Ljava/lang/String;Lgz;Ljava/lang/Object;Ljava/lang/Object;)Lfwh$a; m_257088_ + 0 o p_258156_ + 1 o p_258157_ + 2 o p_258158_ + 3 o p_258159_ + a (Leij;Lfjx;ILbfz;FFFFFF)V m_6494_ + 0 o p_117646_ + 1 o p_117647_ + 2 o p_117648_ + 3 o p_117649_ + 4 o p_117650_ + 5 o p_117651_ + 6 o p_117652_ + 7 o p_117653_ + 8 o p_117654_ + 9 o p_117655_ + a (Ljava/lang/String;Lacq;)Lacq; m_117668_ + 0 o p_117669_ + 1 o p_117670_ + a (Lit/unimi/dsi/fastutil/objects/Object2ObjectMap;Ljava/lang/String;Lgz;Ljava/lang/Object;)Lfwh$a; m_117658_ + 0 o p_117659_ + 1 o p_117660_ + 2 o p_117661_ + 3 o p_117662_ +fts net/minecraft/client/renderer/entity/layers/WardenEmissiveLayer + a f_234881_ + b f_234882_ + c f_234883_ + (Lfqt;Lacq;Lfts$a;Lfts$b;)V + 0 o p_234885_ + 1 o p_234886_ + 2 o p_234887_ + 3 o p_234888_ + a (Leij;Lfjx;ILbxs;FFFFFF)V m_6494_ + 0 o p_234902_ + 1 o p_234903_ + 2 o p_234904_ + 3 o p_234905_ + 4 o p_234906_ + 5 o p_234907_ + 6 o p_234908_ + 7 o p_234909_ + 8 o p_234910_ + 9 o p_234911_ + a (Leij;Lfjx;ILbfj;FFFFFF)V m_6494_ + 0 o p_234891_ + 1 o p_234892_ + 2 o p_234893_ + 3 o p_234894_ + 4 o p_234895_ + 5 o p_234896_ + 6 o p_234897_ + 7 o p_234898_ + 8 o p_234899_ + 9 o p_234900_ + a (Lfee;)V m_234912_ + static + 0 o p_234913_ + a ()V m_234889_ + b ()V m_234914_ + b (Lfee;)V m_234915_ + static + 0 o p_234916_ + c (Lfee;)V m_234917_ + static + 0 o p_234918_ +fts$a net/minecraft/client/renderer/entity/layers/WardenEmissiveLayer$AlphaFunction + apply (Lbxs;FF)F m_234919_ + 0 o p_234920_ + 1 o p_234921_ + 2 o p_234922_ +fts$b net/minecraft/client/renderer/entity/layers/WardenEmissiveLayer$DrawSelector + getPartsToDraw (Lfbf;)Ljava/util/List; m_234923_ + 0 o p_234924_ +ftt net/minecraft/client/renderer/entity/layers/WitchItemLayer + (Lfqt;Lfjt;)V + 0 o p_234926_ + 1 o p_234927_ + a (Leij;Lfjx;ILbfj;FFFFFF)V m_6494_ + 0 o p_117674_ + 1 o p_117675_ + 2 o p_117676_ + 3 o p_117677_ + 4 o p_117678_ + 5 o p_117679_ + 6 o p_117680_ + 7 o p_117681_ + 8 o p_117682_ + 9 o p_117683_ + a (Leij;Lfjx;ILbfz;FFFFFF)V m_6494_ + 0 o p_117685_ + 1 o p_117686_ + 2 o p_117687_ + 3 o p_117688_ + 4 o p_117689_ + 5 o p_117690_ + 6 o p_117691_ + 7 o p_117692_ + 8 o p_117693_ + 9 o p_117694_ +ftu net/minecraft/client/renderer/entity/layers/WitherArmorLayer + a f_117695_ + b f_117696_ + ()V + static + (Lfqt;Lfea;)V + 0 o p_174554_ + 1 o p_174555_ + a (F)F m_7631_ + 0 o p_117702_ + a ()Lacq; m_7029_ + b ()Lfbf; m_7193_ +ftv net/minecraft/client/renderer/entity/layers/WolfCollarLayer + a f_117704_ + ()V + static + (Lfqt;)V + 0 o p_117707_ + a (Leij;Lfjx;ILbfj;FFFFFF)V m_6494_ + 0 o p_117709_ + 1 o p_117710_ + 2 o p_117711_ + 3 o p_117712_ + 4 o p_117713_ + 5 o p_117714_ + 6 o p_117715_ + 7 o p_117716_ + 8 o p_117717_ + 9 o p_117718_ + a (Leij;Lfjx;ILbso;FFFFFF)V m_6494_ + 0 o p_117720_ + 1 o p_117721_ + 2 o p_117722_ + 3 o p_117723_ + 4 o p_117724_ + 5 o p_117725_ + 6 o p_117726_ + 7 o p_117727_ + 8 o p_117728_ + 9 o p_117729_ +ftw net/minecraft/client/renderer/entity/layers/package-info +ftx net/minecraft/client/renderer/entity/package-info +fty net/minecraft/client/renderer/entity/player/PlayerRenderer + (Lfoy$a;Z)V + 0 o p_174557_ + 1 o p_174558_ + a (Lbfj;)Lacq; m_5478_ + 0 o p_117736_ + a (Lbfz;FFLeij;Lfjx;I)V m_7392_ + 0 o p_117754_ + 1 o p_117755_ + 2 o p_117756_ + 3 o p_117757_ + 4 o p_117758_ + 5 o p_117759_ + a (Lbfj;Lsw;Leij;Lfjx;I)V m_7649_ + 0 o p_117748_ + 1 o p_117749_ + 2 o p_117750_ + 3 o p_117751_ + 4 o p_117752_ + a (Lfiv;Leij;F)V m_7546_ + 0 o p_117798_ + 1 o p_117799_ + 2 o p_117800_ + a (Leij;Lfjx;ILfiv;Lfee;Lfee;)V m_117775_ + 0 o p_117776_ + 1 o p_117777_ + 2 o p_117778_ + 3 o p_117779_ + 4 o p_117780_ + 5 o p_117781_ + a (Leij;Lfjx;ILfiv;)V m_117770_ + 0 o p_117771_ + 1 o p_117772_ + 2 o p_117773_ + 3 o p_117774_ + a (Lfiv;)Lacq; m_5478_ + 0 o p_117783_ + a (Lbfj;F)Leei; m_7860_ + 0 o p_117738_ + 1 o p_117739_ + a (Lfiv;Lbdw;)Lfbs$a; m_117794_ + static + 0 o p_117795_ + 1 o p_117796_ + a (Lfiv;Lsw;Leij;Lfjx;I)V m_7649_ + 0 o p_117808_ + 1 o p_117809_ + 2 o p_117810_ + 3 o p_117811_ + 4 o p_117812_ + a (Lbfz;Leij;FFF)V m_7523_ + 0 o p_117765_ + 1 o p_117766_ + 2 o p_117767_ + 3 o p_117768_ + 4 o p_117769_ + a (Lfiv;F)Leei; m_7860_ + 0 o p_117785_ + 1 o p_117786_ + a (Lfiv;Leij;FFF)V m_7523_ + 0 o p_117802_ + 1 o p_117803_ + 2 o p_117804_ + 3 o p_117805_ + 4 o p_117806_ + a (Lfiv;FFLeij;Lfjx;I)V m_7392_ + 0 o p_117788_ + 1 o p_117789_ + 2 o p_117790_ + 3 o p_117791_ + 4 o p_117792_ + 5 o p_117793_ + a (Lbfj;FFLeij;Lfjx;I)V m_7392_ + 0 o p_117741_ + 1 o p_117742_ + 2 o p_117743_ + 3 o p_117744_ + 4 o p_117745_ + 5 o p_117746_ + a (Lbfz;Leij;F)V m_7546_ + 0 o p_117761_ + 1 o p_117762_ + 2 o p_117763_ + b (Leij;Lfjx;ILfiv;)V m_117813_ + 0 o p_117814_ + 1 o p_117815_ + 2 o p_117816_ + 3 o p_117817_ + b (Lfiv;)V m_117818_ + 0 o p_117819_ +ftz net/minecraft/client/renderer/entity/player/package-info +fu net/minecraft/commands/arguments/item/ItemArgument + a f_120957_ + b f_235276_ + ()V + static + (Ldm;)V + 0 o p_235278_ + a (Lcom/mojang/brigadier/context/CommandContext;Ljava/lang/String;)Lfv; m_120963_ + static + 0 o p_120964_ + 1 o p_120965_ + a (Lcom/mojang/brigadier/StringReader;)Lfv; parse + 0 o p_120962_ + a (Ldm;)Lfu; m_235279_ + static + 0 o p_235280_ + getExamples ()Ljava/util/Collection; getExamples + listSuggestions (Lcom/mojang/brigadier/context/CommandContext;Lcom/mojang/brigadier/suggestion/SuggestionsBuilder;)Ljava/util/concurrent/CompletableFuture; listSuggestions + 0 o p_120968_ + 1 o p_120969_ + parse (Lcom/mojang/brigadier/StringReader;)Ljava/lang/Object; parse + 0 o p_120971_ +fua net/minecraft/client/renderer/item/ClampedItemPropertyFunction + call (Lcfz;Lfew;Lbfz;I)F m_141951_ + 0 o p_174560_ + 1 o p_174561_ + 2 o p_174562_ + 3 o p_174563_ + unclampedCall (Lcfz;Lfew;Lbfz;I)F m_142187_ + 0 o p_174564_ + 1 o p_174565_ + 2 o p_174566_ + 3 o p_174567_ +fub net/minecraft/client/renderer/item/CompassItemPropertyFunction + a f_234928_ + b f_234929_ + c f_234930_ + d f_234931_ + (Lfub$a;)V + 0 o p_234933_ + a (Lcfz;Lfew;ILbfj;)F m_234954_ + 0 o p_234955_ + 1 o p_234956_ + 2 o p_234957_ + 3 o p_234958_ + a (Lbfj;)D m_234939_ + 0 o p_234940_ + a (Lbfj;JLgu;)F m_234941_ + 0 o p_234942_ + 1 o p_234943_ + 2 o p_234944_ + a (I)I m_234934_ + 0 o p_234935_ + a (IJ)F m_234936_ + 0 o p_234937_ + 1 o p_234938_ + a (Lbfj;Lfew;)Lfew; m_234945_ + 0 o p_234946_ + 1 o p_234947_ + a (Lbfj;Lhd;)Z m_234951_ + 0 o p_234952_ + 1 o p_234953_ + a (Lbfj;Lgu;)D m_234948_ + 0 o p_234949_ + 1 o p_234950_ + unclampedCall (Lcfz;Lfew;Lbfz;I)F m_142187_ + 0 o p_234960_ + 1 o p_234961_ + 2 o p_234962_ + 3 o p_234963_ +fub$a net/minecraft/client/renderer/item/CompassItemPropertyFunction$CompassTarget + getPos (Lfew;Lcfz;Lbfj;)Lhd; m_234964_ + 0 o p_234965_ + 1 o p_234966_ + 2 o p_234967_ +fub$b net/minecraft/client/renderer/item/CompassItemPropertyFunction$CompassWobble + a f_234968_ + b f_234969_ + c f_234970_ + ()V + a (JD)V m_234974_ + 0 o p_234975_ + 1 o p_234976_ + a (J)Z m_234972_ + 0 o p_234973_ +fuc net/minecraft/client/renderer/item/ItemProperties + a f_117820_ + b f_174568_ + c f_117821_ + d f_117822_ + e f_117823_ + f f_117824_ + g f_117825_ + ()V + static + ()V + a (Lcfu;Lacq;Lfua;)V m_174570_ + static + 0 o p_174571_ + 1 o p_174572_ + 2 o p_174573_ + a (Lacq;Lfua;)Lfua; m_174581_ + static + 0 o p_174582_ + 1 o p_174583_ + a (Lcfu;Lacq;)Lfud; m_117829_ + static + 0 o p_117830_ + 1 o p_117831_ + a (Lcfz;Lfew;Lbfz;I)F m_234977_ + static + 0 o p_234978_ + 1 o p_234979_ + 2 o p_234980_ + 3 o p_234981_ + a (Lfud;)V m_174579_ + static + 0 o p_174580_ + a (Lfew;Lcfz;Lbfj;)Lhd; m_234982_ + static + 0 o p_234983_ + 1 o p_234984_ + 2 o p_234985_ + a (Lcfu;)Ljava/util/Map; m_117827_ + static + 0 o p_117828_ + b (Lfew;Lcfz;Lbfj;)Lhd; m_234991_ + static + 0 o p_234992_ + 1 o p_234993_ + 2 o p_234994_ + b (Lcfz;Lfew;Lbfz;I)F m_234986_ + static + 0 o p_234987_ + 1 o p_234988_ + 2 o p_234989_ + 3 o p_234990_ + c (Lcfz;Lfew;Lbfz;I)F m_234995_ + static + 0 o p_234996_ + 1 o p_234997_ + 2 o p_234998_ + 3 o p_234999_ + d (Lcfz;Lfew;Lbfz;I)F m_174574_ + static + 0 o p_174575_ + 1 o p_174576_ + 2 o p_174577_ + 3 o p_174578_ + e (Lcfz;Lfew;Lbfz;I)F m_174584_ + static + 0 o p_174585_ + 1 o p_174586_ + 2 o p_174587_ + 3 o p_174588_ + f (Lcfz;Lfew;Lbfz;I)F m_174589_ + static + 0 o p_174590_ + 1 o p_174591_ + 2 o p_174592_ + 3 o p_174593_ + g (Lcfz;Lfew;Lbfz;I)F m_275783_ + static + 0 o p_275887_ + 1 o p_275888_ + 2 o p_275889_ + 3 o p_275890_ + h (Lcfz;Lfew;Lbfz;I)F m_275784_ + static + 0 o p_275891_ + 1 o p_275892_ + 2 o p_275893_ + 3 o p_275894_ + i (Lcfz;Lfew;Lbfz;I)F m_174604_ + static + 0 o p_174605_ + 1 o p_174606_ + 2 o p_174607_ + 3 o p_174608_ + j (Lcfz;Lfew;Lbfz;I)F m_174609_ + static + 0 o p_174610_ + 1 o p_174611_ + 2 o p_174612_ + 3 o p_174613_ + k (Lcfz;Lfew;Lbfz;I)F m_174624_ + static + 0 o p_174625_ + 1 o p_174626_ + 2 o p_174627_ + 3 o p_174628_ + l (Lcfz;Lfew;Lbfz;I)F m_174629_ + static + 0 o p_174630_ + 1 o p_174631_ + 2 o p_174632_ + 3 o p_174633_ + m (Lcfz;Lfew;Lbfz;I)F m_271563_ + static + 0 o p_272332_ + 1 o p_272333_ + 2 o p_272334_ + 3 o p_272335_ + n (Lcfz;Lfew;Lbfz;I)F m_174634_ + static + 0 o p_174635_ + 1 o p_174636_ + 2 o p_174637_ + 3 o p_174638_ + o (Lcfz;Lfew;Lbfz;I)F m_174639_ + static + 0 o p_174640_ + 1 o p_174641_ + 2 o p_174642_ + 3 o p_174643_ + p (Lcfz;Lfew;Lbfz;I)F m_289053_ + static + 0 o p_289244_ + 1 o p_289245_ + 2 o p_289246_ + 3 o p_289247_ + q (Lcfz;Lfew;Lbfz;I)F m_174644_ + static + 0 o p_174645_ + 1 o p_174646_ + 2 o p_174647_ + 3 o p_174648_ + r (Lcfz;Lfew;Lbfz;I)F m_174649_ + static + 0 o p_174650_ + 1 o p_174651_ + 2 o p_174652_ + 3 o p_174653_ + s (Lcfz;Lfew;Lbfz;I)F m_174654_ + static + 0 o p_174655_ + 1 o p_174656_ + 2 o p_174657_ + 3 o p_174658_ + t (Lcfz;Lfew;Lbfz;I)F m_174659_ + static + 0 o p_174660_ + 1 o p_174661_ + 2 o p_174662_ + 3 o p_174663_ +fuc$1 net/minecraft/client/renderer/item/ItemProperties$1 + a f_117899_ + b f_117900_ + c f_117901_ + ()V + a (Lcmm;D)D m_117903_ + 0 o p_117904_ + 1 o p_117905_ + unclampedCall (Lcfz;Lfew;Lbfz;I)F m_142187_ + 0 o p_174665_ + 1 o p_174666_ + 2 o p_174667_ + 3 o p_174668_ +fud net/minecraft/client/renderer/item/ItemPropertyFunction + call (Lcfz;Lfew;Lbfz;I)F m_141951_ + 0 o p_174676_ + 1 o p_174677_ + 2 o p_174678_ + 3 o p_174679_ +fue net/minecraft/client/renderer/item/package-info +fuf net/minecraft/client/renderer/package-info +fug net/minecraft/client/renderer/texture/AbstractTexture + a f_174680_ + b f_117950_ + c f_117951_ + d f_117952_ + ()V + a (ZZ)V m_117960_ + 0 o p_117961_ + 1 o p_117962_ + a (Lakx;)V m_6704_ + 0 o p_117955_ + a (Lfuw;Lakx;Lacq;Ljava/util/concurrent/Executor;)V m_6479_ + 0 o p_117956_ + 1 o p_117957_ + 2 o p_117958_ + 3 o p_117959_ + a ()I m_117963_ + b ()V m_117964_ + c ()V m_117966_ + close ()V close + d ()V m_117954_ + e ()V m_117967_ +fuh net/minecraft/client/renderer/texture/Dumpable + a (Lacq;Ljava/nio/file/Path;)V m_276079_ + 0 o p_276124_ + 1 o p_276123_ +fui net/minecraft/client/renderer/texture/DynamicTexture + e f_117976_ + f f_117977_ + ()V + static + (IIZ)V + 0 o p_117980_ + 1 o p_117981_ + 2 o p_117982_ + (Lehk;)V + 0 o p_117984_ + a (Lakx;)V m_6704_ + 0 o p_117987_ + a (Lacq;Ljava/nio/file/Path;)V m_276079_ + 0 o p_276119_ + 1 o p_276105_ + a (Lehk;)V m_117988_ + 0 o p_117989_ + close ()V close + d ()V m_117985_ + e ()Lehk; m_117991_ + f ()V m_283979_ +fuj net/minecraft/client/renderer/texture/HttpTexture + f f_117993_ + g f_181889_ + h f_181890_ + i f_181891_ + j f_117994_ + k f_117995_ + l f_117996_ + m f_117997_ + n f_117998_ + o f_117999_ + ()V + static + (Ljava/io/File;Ljava/lang/String;Lacq;ZLjava/lang/Runnable;)V + 0 o p_118002_ + 1 o p_118003_ + 2 o p_118004_ + 3 o p_118005_ + 4 o p_118006_ + a (Lakx;)V m_6704_ + 0 o p_118009_ + a (Lehk;IIII)V m_118012_ + static + 0 o p_118013_ + 1 o p_118014_ + 2 o p_118015_ + 3 o p_118016_ + 4 o p_118017_ + a (Lehk;)V m_118010_ + 0 o p_118011_ + a (Ljava/io/InputStream;)Lehk; m_118018_ + 0 o p_118019_ + b (Lehk;)V m_118020_ + 0 o p_118021_ + b (Lehk;IIII)V m_118022_ + static + 0 o p_118023_ + 1 o p_118024_ + 2 o p_118025_ + 3 o p_118026_ + 4 o p_118027_ + b (Ljava/io/InputStream;)V m_174682_ + 0 o p_174683_ + c (Lakx;)V m_118030_ + 0 o p_118031_ + c (Lehk;)Lehk; m_118032_ + 0 o p_118033_ + d (Lehk;)V m_118034_ + 0 o p_118035_ + d ()V m_118007_ + e (Lehk;)V m_174684_ + 0 o p_174685_ +fuk net/minecraft/client/renderer/texture/MipmapGenerator + a f_174686_ + b f_118038_ + ()V + static + ()V + a ([Lehk;I)[Lehk; m_246246_ + static + 0 o p_251300_ + 1 o p_252326_ + a (Lehk;)Z m_246464_ + static + 0 o p_252279_ + a (I)F m_118040_ + static + 0 o p_118041_ + a ([F)V m_118057_ + static + 0 o p_118058_ + a (IIIII)I m_118042_ + static + 0 o p_118043_ + 1 o p_118044_ + 2 o p_118045_ + 3 o p_118046_ + 4 o p_118047_ + a (IIIIZ)I m_118048_ + static + 0 o p_118049_ + 1 o p_118050_ + 2 o p_118051_ + 3 o p_118052_ + 4 o p_118053_ +ful net/minecraft/client/renderer/texture/MissingTextureAtlasSprite + a f_174688_ + b f_174689_ + c f_174690_ + d f_118059_ + e f_244401_ + f f_118060_ + ()V + static + ()V + a ()Lfup; m_246104_ + static + a (II)Lehk; m_245315_ + static + 0 o p_249811_ + 1 o p_249362_ + b ()Lacq; m_118071_ + static + c ()Lfui; m_118080_ + static +fum net/minecraft/client/renderer/texture/OverlayTexture + a f_174691_ + b f_174692_ + c f_174693_ + d f_118083_ + e f_174694_ + f f_118084_ + ()V + static + ()V + a (FZ)I m_118090_ + static + 0 o p_118091_ + 1 o p_118092_ + a (F)I m_118088_ + static + 0 o p_118089_ + a ()V m_118087_ + a (Z)I m_118096_ + static + 0 o p_118097_ + a (II)I m_118093_ + static + 0 o p_118094_ + 1 o p_118095_ + b ()V m_118098_ + close ()V close +fun net/minecraft/client/renderer/texture/PreloadedTexture + f f_118100_ + (Lakx;Lacq;Ljava/util/concurrent/Executor;)V + 0 o p_118102_ + 1 o p_118103_ + 2 o p_118104_ + a (Ljava/lang/Runnable;)V m_174695_ + static + 0 o p_174696_ + a (Ljava/util/concurrent/Executor;Ljava/lang/Runnable;)V m_118122_ + static + 0 o p_118123_ + 1 o p_118124_ + a (Lakx;Lacq;)Lfuo$a; m_118106_ + static + 0 o p_118107_ + 1 o p_118108_ + a (Lfuw;)V m_118111_ + 0 o p_118112_ + a (Lfuw;Lakx;Lacq;Ljava/util/concurrent/Executor;)V m_6479_ + 0 o p_118114_ + 1 o p_118115_ + 2 o p_118116_ + 3 o p_118117_ + a (Ljava/util/concurrent/Executor;)Ljava/util/concurrent/Executor; m_118120_ + static + 0 o p_118121_ + a (Lfuo$a;)Ljava/lang/Void; m_118109_ + static + 0 o p_118110_ + b (Lakx;)Lfuo$a; m_6335_ + 0 o p_118126_ + c (Lakx;)Lfuo$a; m_118127_ + 0 o p_118128_ + d ()Ljava/util/concurrent/CompletableFuture; m_118105_ +fuo net/minecraft/client/renderer/texture/SimpleTexture + e f_118129_ + f f_118130_ + ()V + static + (Lacq;)V + 0 o p_118133_ + a (Lehk;ZZ)V m_118136_ + 0 o p_118137_ + 1 o p_118138_ + 2 o p_118139_ + a (Lakx;)V m_6704_ + 0 o p_118135_ + b (Lehk;ZZ)V m_118141_ + 0 o p_118142_ + 1 o p_118143_ + 2 o p_118144_ + b (Lakx;)Lfuo$a; m_6335_ + 0 o p_118140_ +fuo$a net/minecraft/client/renderer/texture/SimpleTexture$TextureImage + a f_118146_ + b f_118147_ + c f_118148_ + (Lfwn;Lehk;)V + 0 o p_118150_ + 1 o p_118151_ + (Ljava/io/IOException;)V + 0 o p_118153_ + a (Lakx;Lacq;)Lfuo$a; m_118155_ + static + 0 o p_118156_ + 1 o p_118157_ + a ()Lfwn; m_118154_ + b ()Lehk; m_118158_ + c ()V m_118159_ + close ()V close +fup net/minecraft/client/renderer/texture/SpriteContents + a f_243663_ + b f_243877_ + c f_244302_ + d f_244600_ + e f_243904_ + f f_243731_ + g f_244575_ + ()V + static + (Lacq;Lfwg;Lehk;Lfwe;)V + 0 o p_249787_ + 1 o p_251031_ + 2 o p_252131_ + 3 o p_250432_ + a (Ljava/util/List;II)V m_245953_ + static + 0 o p_251013_ + 1 o p_251291_ + 2 o p_251837_ + a (I)V m_246368_ + 0 o p_248864_ + a (Lfwg;IILfwe;)Lfup$a; m_247391_ + 0 o p_250817_ + 1 o p_249792_ + 2 o p_252353_ + 3 o p_250947_ + a (IIII[Lehk;)V m_247381_ + 0 o p_248895_ + 1 o p_250245_ + 2 o p_250458_ + 3 o p_251337_ + 4 o p_248825_ + a (II)V m_246850_ + 0 o p_252315_ + 1 o p_248634_ + a ()I m_246492_ + a (Lit/unimi/dsi/fastutil/ints/IntSet;I)Z m_247508_ + static + 0 o p_251708_ + 1 o p_251185_ + a (III)Z m_245970_ + 0 o p_250374_ + 1 o p_250934_ + 2 o p_249573_ + b ()I m_245330_ + c ()Lacq; m_246162_ + close ()V close + d ()Ljava/util/stream/IntStream; m_245638_ + e ()Lfur; m_246786_ + f ()I m_245088_ + g ()Ljava/lang/String; m_247509_ + h ()Ljava/lang/String; m_246599_ + i ()Ljava/lang/String; m_245776_ + toString ()Ljava/lang/String; toString +fup$a net/minecraft/client/renderer/texture/SpriteContents$AnimatedTexture + a f_244362_ + b f_243714_ + c f_244229_ + d f_244317_ + (Lfup;Ljava/util/List;IZ)V + 0 o p_249387_ + 1 o p_250968_ + 2 o p_251686_ + 3 o p_251832_ + a ()Lfur; m_246690_ + a (I)I m_245080_ + 0 o p_249475_ + a (II)V m_247129_ + 0 o p_251807_ + 1 o p_248676_ + a (III)V m_245074_ + 0 o p_250449_ + 1 o p_248877_ + 2 o p_249060_ + a (Lfup$b;)I m_247333_ + static + 0 o p_249981_ + b ()Ljava/util/stream/IntStream; m_246130_ + b (I)I m_246436_ + 0 o p_251327_ +fup$b net/minecraft/client/renderer/texture/SpriteContents$FrameInfo + a f_243751_ + b f_244553_ + (II)V + 0 o p_248909_ + 1 o p_250552_ +fup$c net/minecraft/client/renderer/texture/SpriteContents$InterpolationData + a f_244452_ + b f_244527_ + (Lfup;)V + 0 o p_249611_ + a (DII)I m_247111_ + 0 o p_250974_ + 1 o p_252151_ + 2 o p_249832_ + a (IILfup$d;)V m_245152_ + 0 o p_250513_ + 1 o p_251644_ + 2 o p_248626_ + a (Lfup$a;IIII)I m_246491_ + 0 o p_251976_ + 1 o p_250761_ + 2 o p_250049_ + 3 o p_250004_ + 4 o p_251489_ + close ()V close +fup$d net/minecraft/client/renderer/texture/SpriteContents$Ticker + a f_243791_ + b f_244631_ + c f_244511_ + d f_243921_ + e f_244570_ + (Lfup;Lfup$a;Lfup$c;)V + 0 o p_251164_ + 1 o p_249618_ + 2 o p_251097_ + a (II)V m_247697_ + 0 o p_249105_ + 1 o p_249676_ + b (II)V m_247291_ + 0 o p_252186_ + 1 o p_252319_ + close ()V close +fuq net/minecraft/client/renderer/texture/SpriteLoader + a f_244357_ + b f_244500_ + c f_243676_ + d f_276071_ + e f_276068_ + ()V + static + (Lacq;III)V + 0 o p_276126_ + 1 o p_276121_ + 2 o p_276110_ + 3 o p_276114_ + a (ILfuv;)V m_245562_ + static + 0 o p_251160_ + 1 o p_251202_ + a (Lfus$a;)Ljava/lang/String; m_245151_ + static + 0 o p_249576_ + a (Lfus;II)Ljava/util/Map; m_276091_ + 0 o p_276117_ + 1 o p_276111_ + 2 o p_276112_ + a (Ljava/util/List;Ljava/util/concurrent/Executor;)Ljava/util/concurrent/CompletableFuture; m_260809_ + static + 0 o p_261516_ + 1 o p_261791_ + a (Lakx;Lacq;)Ljava/util/List; m_260769_ + static + 0 o p_261396_ + 1 o p_261397_ + a (Ljava/util/Map;IILfup;II)V m_246510_ + 0 o p_248538_ + 1 o p_250109_ + 2 o p_251257_ + 3 o p_251421_ + 4 o p_250533_ + 5 o p_251913_ + a (Ljava/util/concurrent/Executor;Ljava/util/function/Supplier;)Ljava/util/concurrent/CompletableFuture; m_260768_ + static + 0 o p_261394_ + 1 o p_261395_ + a (ILjava/util/concurrent/Executor;Ljava/util/List;)Lfuq$a; m_260767_ + 0 o p_261391_ + 1 o p_261392_ + 2 o p_261393_ + a (Lfuu;)Lfuq; m_245483_ + static + 0 o p_249085_ + a (Lakx;Lacq;ILjava/util/concurrent/Executor;)Ljava/util/concurrent/CompletableFuture; m_260881_ + 0 o p_262108_ + 1 o p_261754_ + 2 o p_262104_ + 3 o p_261687_ + a (Ljava/util/List;ILjava/util/concurrent/Executor;)Lfuq$a; m_261295_ + 0 o p_262029_ + 1 o p_261919_ + 2 o p_261665_ + a (Lacq;Lakv;)Lfup; m_245083_ + static + 0 o p_251630_ + 1 o p_250558_ + a (Ljava/util/concurrent/Executor;Ljava/util/List;)Ljava/util/concurrent/CompletionStage; m_260766_ + static + 0 o p_261389_ + 1 o p_261390_ + a (Ljava/util/List;)Ljava/util/List; m_246118_ + static + 0 o p_252234_ + a (Ljava/util/Map;I)V m_246625_ + static + 0 o p_249498_ + 1 o p_248649_ +fuq$a net/minecraft/client/renderer/texture/SpriteLoader$Preparations + a f_243669_ + b f_244632_ + c f_244353_ + d f_243912_ + e f_243807_ + f f_244415_ + (IIILfuv;Ljava/util/Map;Ljava/util/concurrent/CompletableFuture;)V + 0 o f_243669_ + 1 o f_244632_ + 2 o f_244353_ + 3 o f_243912_ + 4 o f_243807_ + 5 o f_244415_ + a (Ljava/lang/Void;)Lfuq$a; m_245936_ + 0 o p_249056_ + a ()Ljava/util/concurrent/CompletableFuture; m_246429_ + b ()I f_243669_ + c ()I f_244632_ + d ()I f_244353_ + e ()Lfuv; f_243912_ + equals (Ljava/lang/Object;)Z equals + 0 o p_250785_ + f ()Ljava/util/Map; f_243807_ + g ()Ljava/util/concurrent/CompletableFuture; f_244415_ + hashCode ()I hashCode + toString ()Ljava/lang/String; toString +fur net/minecraft/client/renderer/texture/SpriteTicker + a (II)V m_247697_ + 0 o p_248847_ + 1 o p_250486_ + close ()V close +fus net/minecraft/client/renderer/texture/Stitcher + a f_118161_ + b f_118162_ + c f_118163_ + d f_118164_ + e f_118165_ + f f_118166_ + g f_118167_ + h f_118168_ + ()V + static + (III)V + 0 o p_118171_ + 1 o p_118172_ + 2 o p_118173_ + a (Lfus$d;)V m_118180_ + 0 o p_118181_ + a (Lfus$a;)V m_246099_ + 0 o p_249253_ + a (Lfus$b;)Z m_118178_ + 0 o p_118179_ + a ()I m_118174_ + a (II)I m_118188_ + static + 0 o p_118189_ + 1 o p_118190_ + b ()I m_118187_ + b (Lfus$b;)Z m_118191_ + 0 o p_118192_ + c (Lfus$b;)Lfus$a; m_244738_ + static + 0 o p_247946_ + c ()V m_118193_ + d (Lfus$b;)Lacq; m_244737_ + static + 0 o p_247945_ + e (Lfus$b;)Ljava/lang/Integer; m_118198_ + static + 0 o p_118199_ + f (Lfus$b;)Ljava/lang/Integer; m_118200_ + static + 0 o p_118201_ +fus$a net/minecraft/client/renderer/texture/Stitcher$Entry + a ()I m_246492_ + b ()I m_245330_ + c ()Lacq; m_246162_ +fus$b net/minecraft/client/renderer/texture/Stitcher$Holder + a f_244486_ + b f_118203_ + c f_118204_ + (Lfus$a;I)V + 0 o p_250261_ + 1 o p_250127_ + (Lfus$a;II)V + 0 o f_244486_ + 1 o f_118203_ + 2 o f_118204_ + a ()Lfus$a; f_244486_ + b ()I f_118203_ + c ()I f_118204_ + equals (Ljava/lang/Object;)Z equals + 0 o p_251865_ + hashCode ()I hashCode + toString ()Ljava/lang/String; toString +fus$c net/minecraft/client/renderer/texture/Stitcher$Region + a f_118209_ + b f_118210_ + c f_118211_ + d f_118212_ + e f_118213_ + f f_118214_ + (IIII)V + 0 o p_118216_ + 1 o p_118217_ + 2 o p_118218_ + 3 o p_118219_ + a (Lfus$d;)V m_246763_ + 0 o p_250195_ + a (Lfus$b;)Z m_118221_ + 0 o p_118222_ + a ()I m_118225_ + b ()I m_118226_ + toString ()Ljava/lang/String; toString +fus$d net/minecraft/client/renderer/texture/Stitcher$SpriteLoader + load (Lfus$a;II)V m_118228_ + 0 o p_249434_ + 1 o p_118230_ + 2 o p_118231_ +fut net/minecraft/client/renderer/texture/StitcherException + a f_118254_ + (Lfus$a;Ljava/util/Collection;)V + 0 o p_250177_ + 1 o p_248618_ + a ()Ljava/util/Collection; m_118258_ +fuu net/minecraft/client/renderer/texture/TextureAtlas + e f_118259_ + f f_118260_ + g f_118261_ + h f_118263_ + i f_118262_ + j f_118264_ + k f_118265_ + l f_118266_ + m f_276067_ + n f_276070_ + o f_276072_ + ()V + static + (Lacq;)V + 0 o p_118269_ + a (Lakx;)V m_6704_ + 0 o p_118282_ + a (Lacq;)Lfuv; m_118316_ + 0 o p_118317_ + a (Lacq;Ljava/nio/file/Path;)V m_276079_ + 0 o p_276106_ + 1 o p_276127_ + a (Ljava/nio/file/Path;Ljava/lang/String;Ljava/util/Map;)V m_260988_ + static + 0 o p_261769_ + 1 o p_262102_ + 2 o p_261722_ + a (Lfuq$a;)V m_247065_ + 0 o p_250662_ + b (Lfuq$a;)V m_247255_ + 0 o p_251993_ + d ()V m_118270_ + e ()V m_7673_ + f ()V m_118329_ + g ()Lacq; m_118330_ + h ()I m_245285_ + i ()I m_276092_ + j ()I m_276095_ +fuv net/minecraft/client/renderer/texture/TextureAtlasSprite + a f_244141_ + b f_244165_ + c f_118349_ + d f_118350_ + e f_118351_ + f f_118352_ + g f_118353_ + h f_118354_ + (Lacq;Lfup;IIII)V + 0 o p_250211_ + 1 o p_248526_ + 2 o p_248950_ + 3 o p_249741_ + 4 o p_248672_ + 5 o p_248637_ + a ()I m_174743_ + a (D)F m_118367_ + 0 o p_118368_ + a (F)F m_174727_ + 0 o p_174728_ + a (Lein;)Lein; m_118381_ + 0 o p_118382_ + b (D)F m_118393_ + 0 o p_118394_ + b (F)F m_174741_ + 0 o p_174742_ + b ()I m_174744_ + c ()F m_118409_ + d ()F m_118410_ + e ()Lfup; m_245424_ + f ()Lfuv$a; m_247406_ + g ()F m_118411_ + h ()F m_118412_ + i ()Lacq; m_247685_ + j ()V m_118416_ + k ()F m_118417_ + l ()F m_118366_ + toString ()Ljava/lang/String; toString +fuv$1 net/minecraft/client/renderer/texture/TextureAtlasSprite$1 + a f_243752_ + b f_243782_ + (Lfuv;Lfur;)V + 0 o p_248675_ + 1 o p_250522_ + a ()V m_245385_ + close ()V close +fuv$a net/minecraft/client/renderer/texture/TextureAtlasSprite$Ticker + a ()V m_245385_ + close ()V close +fuw net/minecraft/client/renderer/texture/TextureManager + a f_118466_ + b f_118467_ + c f_118468_ + d f_118469_ + e f_118470_ + f f_118471_ + ()V + static + (Lakx;)V + 0 o p_118474_ + a (Lakr$a;Lakx;Lban;Lban;Ljava/util/concurrent/Executor;Ljava/util/concurrent/Executor;)Ljava/util/concurrent/CompletableFuture; m_5540_ + 0 o p_118476_ + 1 o p_118477_ + 2 o p_118478_ + 3 o p_118479_ + 4 o p_118480_ + 5 o p_118481_ + a (Ljava/util/concurrent/CompletableFuture;)V m_244740_ + static + 0 o p_247951_ + a (Ljava/nio/file/Path;Lacq;Lfug;)V m_276077_ + static + 0 o p_276100_ + 1 o p_276101_ + 2 o p_276102_ + a (Ljava/nio/file/Path;)V m_276085_ + 0 o p_276129_ + a (Lacq;Lfug;)V m_118495_ + 0 o p_118496_ + 1 o p_118497_ + a (Ljava/lang/Runnable;)V m_118488_ + static + 0 o p_118489_ + a (Lacq;Ljava/util/concurrent/Executor;)Ljava/util/concurrent/CompletableFuture; m_118501_ + 0 o p_118502_ + 1 o p_118503_ + a (Lfug;)Ljava/lang/String; m_118486_ + static + 0 o p_118487_ + a (Ljava/lang/String;Lfui;)Lacq; m_118490_ + 0 o p_118491_ + 1 o p_118492_ + a (Lacq;Lfun;)V m_118498_ + 0 o p_118499_ + 1 o p_118500_ + a (Lakx;Ljava/util/concurrent/Executor;Ljava/util/concurrent/CompletableFuture;Ljava/lang/Void;)V m_244739_ + 0 o p_247947_ + 1 o p_247948_ + 2 o p_247949_ + 3 o p_247950_ + a (Lacq;)V m_174784_ + 0 o p_174785_ + b (Ljava/lang/Runnable;)V m_118504_ + static + 0 o p_118505_ + b (Lacq;Lfug;)Lfug; m_174786_ + 0 o p_174787_ + 1 o p_174788_ + b (Ljava/nio/file/Path;)V m_276083_ + 0 o p_276128_ + b (Lacq;)Lfug; m_118506_ + 0 o p_118507_ + c (Lacq;Lfug;)V m_118508_ + 0 o p_118509_ + 1 o p_118510_ + c (Lacq;)V m_118513_ + 0 o p_118514_ + c (Ljava/nio/file/Path;)V m_276076_ + 0 o p_276099_ + c (Ljava/lang/Runnable;)V m_118511_ + static + 0 o p_118512_ + close ()V close + d (Lacq;)V m_118519_ + 0 o p_118520_ + d (Lacq;Lfug;)Lfug; m_118515_ + 0 o p_118516_ + 1 o p_118517_ + e (Lacq;)V m_174789_ + 0 o p_174790_ + e ()V m_7673_ +fux net/minecraft/client/renderer/texture/Tickable + e ()V m_7673_ +fuy net/minecraft/client/renderer/texture/atlas/SpriteResourceLoader + a f_260482_ + b f_260445_ + c f_260697_ + ()V + static + (Ljava/util/List;)V + 0 o p_261613_ + a (Lakx;Lfuz$a;Lfuz;)V m_261183_ + static + 0 o p_261666_ + 1 o p_261978_ + 2 o p_261747_ + a (Lakx;)Ljava/util/List; m_260886_ + 0 o p_261989_ + a (Lakx;Lacq;)Lfuy; m_261166_ + static + 0 o p_261551_ + 1 o p_261709_ +fuy$1 net/minecraft/client/renderer/texture/atlas/SpriteResourceLoader$1 + a f_260443_ + b f_260614_ + (Lfuy;Ljava/util/Map;)V + 0 o p_261778_ + 1 o p_261952_ + a (Lacq;Lfuz$b;)V m_260840_ + 0 o p_262067_ + 1 o p_261936_ + a (Ljava/util/function/Predicate;)V m_260801_ + 0 o p_261939_ +fuz net/minecraft/client/renderer/texture/atlas/SpriteSource + a f_266012_ + ()V + static + a ()Lfva; m_260850_ + a (Lakx;Lfuz$a;)V m_260891_ + 0 o p_261770_ + 1 o p_261757_ +fuz$a net/minecraft/client/renderer/texture/atlas/SpriteSource$Output + a (Lacq;Lakv;)V m_261028_ + 0 o p_261841_ + 1 o p_261651_ + a (Lacq;Lfuz$b;)V m_260840_ + 0 o p_261821_ + 1 o p_261760_ + a (Ljava/util/function/Predicate;)V m_260801_ + 0 o p_261532_ + b (Lacq;Lakv;)Lfup; m_261059_ + static + 0 o p_262156_ + 1 o p_261663_ +fuz$b net/minecraft/client/renderer/texture/atlas/SpriteSource$SpriteSupplier + a ()V m_260986_ +fv net/minecraft/commands/arguments/item/ItemInput + a f_120972_ + b f_120973_ + c f_120974_ + ()V + static + (Lhe;Lqr;)V + 0 o p_235282_ + 1 o p_235283_ + a (Lcfz;)Z test + 0 o p_120984_ + a ()Lcfu; m_120979_ + a (Ljava/lang/Object;Ljava/lang/Object;)Lcom/mojang/brigadier/Message; m_120985_ + static + 0 o p_120986_ + 1 o p_120987_ + a (IZ)Lcfz; m_120980_ + 0 o p_120981_ + 1 o p_120982_ + b ()Ljava/lang/String; m_120988_ + c ()Ljava/lang/String; m_235284_ + d ()Ljava/lang/Object; m_235285_ + test (Ljava/lang/Object;)Z test + 0 o p_120990_ +fva net/minecraft/client/renderer/texture/atlas/SpriteSourceType + a f_260449_ + (Lcom/mojang/serialization/Codec;)V + 0 o f_260449_ + a ()Lcom/mojang/serialization/Codec; f_260449_ + equals (Ljava/lang/Object;)Z equals + 0 o p_261833_ + hashCode ()I hashCode + toString ()Ljava/lang/String; toString +fvb net/minecraft/client/renderer/texture/atlas/SpriteSources + a f_260457_ + b f_260490_ + c f_260627_ + d f_260546_ + e f_266099_ + f f_260540_ + g f_260500_ + h f_260551_ + i f_260548_ + ()V + static + ()V + a (Lfva;)Lcom/mojang/serialization/DataResult; m_274006_ + static + 0 o p_274716_ + a (Lacq;)Ljava/lang/String; m_274005_ + static + 0 o p_274715_ + a (Ljava/lang/String;Lcom/mojang/serialization/Codec;)Lfva; m_260887_ + static + 0 o p_262175_ + 1 o p_261464_ + b (Lacq;)Lcom/mojang/serialization/DataResult; m_274007_ + static + 0 o p_274717_ + c (Lacq;)Ljava/lang/String; m_274004_ + static + 0 o p_274714_ +fvc net/minecraft/client/renderer/texture/atlas/package-info +fvd net/minecraft/client/renderer/texture/atlas/sources/DirectoryLister + b f_260655_ + c f_260442_ + d f_260464_ + ()V + static + (Ljava/lang/String;Ljava/lang/String;)V + 0 o p_261886_ + 1 o p_261776_ + a (Lfvd;)Ljava/lang/String; m_261300_ + static + 0 o p_262146_ + a ()Lfva; m_260850_ + a (Lacj;Lfuz$a;Lacq;Lakv;)V m_260906_ + 0 o p_261553_ + 1 o p_261798_ + 2 o p_261906_ + 3 o p_261635_ + a (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; m_261073_ + static + 0 o p_262096_ + a (Lakx;Lfuz$a;)V m_260891_ + 0 o p_261582_ + 1 o p_261898_ + b (Lfvd;)Ljava/lang/String; m_261264_ + static + 0 o p_261592_ +fve net/minecraft/client/renderer/texture/atlas/sources/LazyLoadedImage + a f_265874_ + b f_265889_ + c f_266070_ + d f_266109_ + (Lacq;Lakv;I)V + 0 o p_267104_ + 1 o p_266995_ + 2 o p_266778_ + a ()Lehk; m_266167_ + b ()V m_266458_ +fvf net/minecraft/client/renderer/texture/atlas/sources/PalettedPermutations + b f_266028_ + c f_265853_ + d f_265956_ + e f_266003_ + f f_265884_ + ()V + static + (Ljava/util/List;Lacq;Ljava/util/Map;)V + 0 o p_267282_ + 1 o p_266681_ + 2 o p_266741_ + a (Ljava/util/Map;Ljava/util/function/Supplier;Lakx;Ljava/lang/String;Lacq;)V m_266309_ + static + 0 o p_266771_ + 1 o p_266716_ + 2 o p_266763_ + 3 o p_267108_ + 4 o p_266969_ + a (Ljava/util/function/Supplier;Lakx;Lacq;)Ljava/util/function/IntUnaryOperator; m_266448_ + static + 0 o p_267012_ + 1 o p_266968_ + 2 o p_267020_ + a (Lfvf;)Ljava/util/Map; m_266527_ + static + 0 o p_267234_ + a (Lakx;)[I m_266373_ + 0 o p_266955_ + a (Lakx;Lacq;)[I m_266592_ + static + 0 o p_267184_ + 1 o p_267059_ + a ()Lfva; m_260850_ + a (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; m_266460_ + static + 0 o p_266838_ + a ([I[I)Ljava/util/function/IntUnaryOperator; m_266217_ + static + 0 o p_266839_ + 1 o p_266776_ + a (Lakx;Lfuz$a;)V m_260891_ + 0 o p_267219_ + 1 o p_267250_ + a (Lit/unimi/dsi/fastutil/ints/Int2IntMap;I)I m_267542_ + static + 0 o p_267898_ + 1 o p_267899_ + b (Lfvf;)Lacq; m_266306_ + static + 0 o p_266732_ + c (Lfvf;)Ljava/util/List; m_266589_ + static + 0 o p_267300_ +fvf$a net/minecraft/client/renderer/texture/atlas/sources/PalettedPermutations$PalettedSpriteSupplier + a f_266004_ + b f_266059_ + c f_265892_ + (Lfve;Ljava/util/function/Supplier;Lacq;)V + 0 o f_266004_ + 1 o f_266059_ + 2 o f_265892_ + a ()V m_260986_ + b ()Lfup; get + c ()Lfve; f_266004_ + d ()Ljava/util/function/Supplier; f_266059_ + e ()Lacq; f_265892_ + equals (Ljava/lang/Object;)Z equals + 0 o p_267202_ + get ()Ljava/lang/Object; get + hashCode ()I hashCode + toString ()Ljava/lang/String; toString +fvg net/minecraft/client/renderer/texture/atlas/sources/SingleFile + b f_260609_ + c f_260566_ + d f_260456_ + e f_260731_ + ()V + static + (Lacq;Ljava/util/Optional;)V + 0 o p_261658_ + 1 o p_261712_ + a ()Lfva; m_260850_ + a (Lfvg;)Ljava/util/Optional; m_261182_ + static + 0 o p_261615_ + a (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; m_261205_ + static + 0 o p_261903_ + a (Lakx;Lfuz$a;)V m_260891_ + 0 o p_261920_ + 1 o p_261578_ + b (Lfvg;)Lacq; m_261151_ + static + 0 o p_261913_ +fvh net/minecraft/client/renderer/texture/atlas/sources/SourceFilter + b f_260515_ + c f_260543_ + ()V + static + (Lapg;)V + 0 o p_261654_ + a ()Lfva; m_260850_ + a (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; m_261225_ + static + 0 o p_261830_ + a (Lfvh;)Lapg; m_261008_ + static + 0 o p_262094_ + a (Lakx;Lfuz$a;)V m_260891_ + 0 o p_261888_ + 1 o p_261864_ +fvi net/minecraft/client/renderer/texture/atlas/sources/Unstitcher + b f_260484_ + c f_260712_ + d f_260559_ + e f_260565_ + f f_260518_ + g f_260650_ + ()V + static + (Lacq;Ljava/util/List;DD)V + 0 o p_261679_ + 1 o p_261974_ + 2 o p_262181_ + 3 o p_261631_ + a ()Lfva; m_260850_ + a (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; m_260876_ + static + 0 o p_262047_ + a (Lfvi;)Ljava/lang/Double; m_261096_ + static + 0 o p_262039_ + a (Lakx;Lfuz$a;)V m_260891_ + 0 o p_261498_ + 1 o p_261828_ + b (Lfvi;)Ljava/lang/Double; m_261208_ + static + 0 o p_261601_ + c (Lfvi;)Ljava/util/List; m_260837_ + static + 0 o p_261944_ + d (Lfvi;)Lacq; m_260798_ + static + 0 o p_261910_ +fvi$a net/minecraft/client/renderer/texture/atlas/sources/Unstitcher$Region + a f_260527_ + b f_260568_ + c f_260547_ + d f_260480_ + e f_260701_ + f f_260610_ + ()V + static + (Lacq;DDDD)V + 0 o f_260568_ + 1 o f_260547_ + 2 o f_260480_ + 3 o f_260701_ + 4 o f_260610_ + a ()Lacq; f_260568_ + a (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; m_261120_ + static + 0 o p_261521_ + b ()D f_260547_ + c ()D f_260480_ + d ()D f_260701_ + e ()D f_260610_ + equals (Ljava/lang/Object;)Z equals + 0 o p_261603_ + hashCode ()I hashCode + toString ()Ljava/lang/String; toString +fvi$b net/minecraft/client/renderer/texture/atlas/sources/Unstitcher$RegionInstance + a f_260587_ + b f_260703_ + c f_260604_ + d f_260617_ + (Lfve;Lfvi$a;DD)V + 0 o p_266678_ + 1 o p_267197_ + 2 o p_266911_ + 3 o p_266789_ + a ()V m_260986_ + b ()Lfup; get + get ()Ljava/lang/Object; get +fvj net/minecraft/client/renderer/texture/atlas/sources/package-info +fvk net/minecraft/client/renderer/texture/package-info +fvl net/minecraft/client/resources/ClientPackSource + b f_273850_ + c f_244347_ + d f_244333_ + e f_243857_ + f f_244581_ + g f_244290_ + h f_244267_ + ()V + static + (Ljava/nio/file/Path;)V + 0 o p_249324_ + a (Ljava/lang/String;Lakg$c;Lsw;)Lakg; m_246091_ + 0 o p_250992_ + 1 o p_250814_ + 2 o p_249835_ + a (Ljava/lang/String;)Lsw; m_245328_ + 0 o p_250421_ + a (Lajl;)Lakg; m_245806_ + 0 o p_250048_ + a (Ljava/util/function/BiConsumer;)V m_245382_ + 0 o p_249851_ + a (Ljava/nio/file/Path;)Ljava/nio/file/Path; m_247002_ + 0 o p_251339_ + a (Lajl;Ljava/lang/String;)Lajl; m_244741_ + static + 0 o p_247952_ + 1 o p_247953_ + b (Ljava/nio/file/Path;)Lajo; m_246691_ + static + 0 o p_250749_ +fvm net/minecraft/client/resources/DefaultPlayerSkin + a f_257041_ + ()V + static + ()V + a (Ljava/util/UUID;)Lacq; m_118627_ + static + 0 o p_118628_ + a ()Lacq; m_118626_ + static + b (Ljava/util/UUID;)Ljava/lang/String; m_118629_ + static + 0 o p_118630_ + c (Ljava/util/UUID;)Lfvm$b; m_257644_ + static + 0 o p_260299_ +fvm$a net/minecraft/client/resources/DefaultPlayerSkin$ModelType + a SLIM + b WIDE + c f_256945_ + d $VALUES + ()V + static + (Ljava/lang/String;ILjava/lang/String;)V + 0 o p_259966_ + 1 o p_259745_ + 2 o p_260160_ + a ()[Lfvm$a; m_257484_ + static + valueOf (Ljava/lang/String;)Lfvm$a; valueOf + static + 0 o p_259327_ + values ()[Lfvm$a; values + static +fvm$b net/minecraft/client/resources/DefaultPlayerSkin$SkinType + a f_256814_ + b f_256901_ + (Lacq;Lfvm$a;)V + 0 o f_256814_ + 1 o f_256901_ + (Ljava/lang/String;Lfvm$a;)V + 0 o p_259984_ + 1 o p_259456_ + a ()Lacq; f_256814_ + b ()Lfvm$a; f_256901_ + equals (Ljava/lang/Object;)Z equals + 0 o p_259668_ + hashCode ()I hashCode + toString ()Ljava/lang/String; toString +fvn net/minecraft/client/resources/DownloadedPackSource + a f_243667_ + b f_244551_ + c f_243735_ + d f_244627_ + e f_244475_ + f f_243792_ + g f_244023_ + h f_244074_ + i f_244572_ + j f_243680_ + k f_244082_ + ()V + static + (Ljava/io/File;)V + 0 o p_249798_ + a (Ljava/util/function/Consumer;)V m_7686_ + 0 o p_251994_ + a (Ljava/net/URL;Ljava/lang/String;Z)Ljava/util/concurrent/CompletableFuture; m_246254_ + 0 o p_249839_ + 1 o p_249218_ + 2 o p_251033_ + a (Ljava/lang/String;Ljava/io/File;Lenn;ZLjava/lang/Object;)Ljava/util/concurrent/CompletionStage; m_247083_ + 0 o p_249210_ + 1 o p_250351_ + 2 o p_248529_ + 3 o p_251855_ + 4 o p_251155_ + a ()Ljava/util/concurrent/CompletableFuture; m_246151_ + a (Ljava/io/File;Ljava/lang/String;)Lajl; m_254765_ + static + 0 o p_255463_ + 1 o p_255464_ + a (Ljava/io/File;Lenn;Ljava/lang/Throwable;)Ljava/util/concurrent/CompletionStage; m_245607_ + 0 o p_248553_ + 1 o p_250464_ + 2 o p_249744_ + a (Ljava/lang/Void;)V m_245289_ + 0 o p_250279_ + a (Ljava/lang/Throwable;Ljava/io/File;Ljava/lang/Void;)V m_246722_ + static + 0 o p_251248_ + 1 o p_251679_ + 2 o p_251750_ + a (Ljava/io/File;)V m_246169_ + static + 0 o p_251727_ + a (Lenn;Leuo;)V m_246966_ + static + 0 o p_249168_ + 1 o p_250297_ + a (Ldyy$c;)Ljava/util/concurrent/CompletableFuture; m_247400_ + 0 o p_248756_ + a (Ljava/io/File;Lakj;)Ljava/util/concurrent/CompletableFuture; m_247526_ + 0 o p_249885_ + 1 o p_251105_ + a (Ljava/lang/String;Ljava/io/File;)Z m_245350_ + 0 o p_251365_ + 1 o p_249356_ + a (Lenn;Ljava/lang/Void;)V m_247163_ + static + 0 o p_251074_ + 1 o p_248937_ + a (Lenn;Z)V m_245964_ + static + 0 o p_249780_ + 1 o p_249339_ + a (ZLenn;)V m_245230_ + static + 0 o p_252021_ + 1 o p_250186_ + b ()Ljava/util/Map; m_245308_ + static + c ()V m_245559_ +fvo net/minecraft/client/resources/FoliageColorReloadListener + a f_118656_ + ()V + static + ()V + a (Lakx;Lban;)[I m_5944_ + 0 o p_118660_ + 1 o p_118661_ + a (Ljava/lang/Object;Lakx;Lban;)V m_5787_ + 0 o p_118663_ + 1 o p_118664_ + 2 o p_118665_ + a ([ILakx;Lban;)V m_5787_ + 0 o p_118667_ + 1 o p_118668_ + 2 o p_118669_ + b (Lakx;Lban;)Ljava/lang/Object; m_5944_ + 0 o p_118671_ + 1 o p_118672_ +fvp net/minecraft/client/resources/GrassColorReloadListener + a f_118673_ + ()V + static + ()V + a (Lakx;Lban;)[I m_5944_ + 0 o p_118677_ + 1 o p_118678_ + a (Ljava/lang/Object;Lakx;Lban;)V m_5787_ + 0 o p_118680_ + 1 o p_118681_ + 2 o p_118682_ + a ([ILakx;Lban;)V m_5787_ + 0 o p_118684_ + 1 o p_118685_ + 2 o p_118686_ + b (Lakx;Lban;)Ljava/lang/Object; m_5944_ + 0 o p_118688_ + 1 o p_118689_ +fvq net/minecraft/client/resources/IndexedAssetSource + a f_244611_ + b f_244445_ + ()V + static + ()V + a (Ljava/nio/file/Path;Ljava/lang/String;)Ljava/nio/file/Path; m_245793_ + static + 0 o p_248776_ + 1 o p_250235_ +fvr net/minecraft/client/resources/LegacyStuffWrapper + ()V + a (Lakx;Lacq;)[I m_118726_ + static + 0 o p_118727_ + 1 o p_118728_ +fvs net/minecraft/client/resources/MobEffectTextureManager + (Lfuw;)V + 0 o p_118730_ + a (Lbey;)Lfuv; m_118732_ + 0 o p_118733_ +fvt net/minecraft/client/resources/PaintingTextureManager + a f_118799_ + ()V + static + (Lfuw;)V + 0 o p_118802_ + a (Lbvd;)Lfuv; m_235033_ + 0 o p_235034_ + a ()Lfuv; m_118806_ +fvu net/minecraft/client/resources/SkinManager + a f_174841_ + b f_118807_ + c f_118808_ + d f_118809_ + e f_118810_ + (Lfuw;Ljava/io/File;Lcom/mojang/authlib/minecraft/MinecraftSessionService;)V + 0 o p_118812_ + 1 o p_118813_ + 2 o p_118814_ + a (Lcom/mojang/authlib/GameProfile;ZLfvu$a;)V m_118821_ + 0 o p_118822_ + 1 o p_118823_ + 2 o p_118824_ + a (Lfvu$a;Lcom/mojang/authlib/minecraft/MinecraftProfileTexture$Type;Lacq;Lcom/mojang/authlib/minecraft/MinecraftProfileTexture;)V m_118832_ + static + 0 o p_118833_ + 1 o p_118834_ + 2 o p_118835_ + 3 o p_118836_ + a (Lcom/mojang/authlib/minecraft/MinecraftProfileTexture;Lcom/mojang/authlib/minecraft/MinecraftProfileTexture$Type;)Lacq; m_118825_ + 0 o p_118826_ + 1 o p_118827_ + a (Lcom/mojang/authlib/GameProfile;)Ljava/util/Map; m_118815_ + 0 o p_118816_ + a (Lcom/mojang/authlib/GameProfile;Lfvu$a;Z)V m_118817_ + 0 o p_118818_ + 1 o p_118819_ + 2 o p_118820_ + a (Ljava/util/Map;Lfvu$a;)V m_174842_ + 0 o p_174843_ + 1 o p_174844_ + a (Lcom/mojang/authlib/minecraft/MinecraftProfileTexture$Type;Ljava/lang/String;)Lacq; m_242632_ + static + 0 o p_242930_ + 1 o p_242947_ + a (Ljava/util/Map;Lfvu$a;Lcom/mojang/authlib/minecraft/MinecraftProfileTexture$Type;)V m_174845_ + 0 o p_174846_ + 1 o p_174847_ + 2 o p_174848_ + a (Lcom/mojang/authlib/minecraft/MinecraftProfileTexture;Lcom/mojang/authlib/minecraft/MinecraftProfileTexture$Type;Lfvu$a;)Lacq; m_118828_ + 0 o p_118829_ + 1 o p_118830_ + 2 o p_118831_ + b (Lcom/mojang/authlib/GameProfile;)Lacq; m_240306_ + 0 o p_240307_ + b (Ljava/util/Map;Lfvu$a;)V m_174849_ + 0 o p_174850_ + 1 o p_174851_ +fvu$1 net/minecraft/client/resources/SkinManager$1 + a f_118847_ + b f_118848_ + (Lfvu;Lcom/mojang/authlib/minecraft/MinecraftSessionService;)V + 0 o p_118850_ + 1 o p_118851_ + a (Ljava/lang/String;)Ljava/util/Map; load + 0 o p_118853_ + load (Ljava/lang/Object;)Ljava/lang/Object; load + 0 o p_118855_ +fvu$2 net/minecraft/client/resources/SkinManager$2 + a f_242484_ + ()V + static +fvu$a net/minecraft/client/resources/SkinManager$SkinTextureCallback + onSkinTextureAvailable (Lcom/mojang/authlib/minecraft/MinecraftProfileTexture$Type;Lacq;Lcom/mojang/authlib/minecraft/MinecraftProfileTexture;)V m_118856_ + 0 o p_118857_ + 1 o p_118858_ + 2 o p_118859_ +fvv net/minecraft/client/resources/SplashManager + a f_118860_ + b f_118861_ + c f_118862_ + d f_118863_ + ()V + static + (Leoc;)V + 0 o p_118866_ + a (Lakx;Lban;)Ljava/util/List; m_5944_ + 0 o p_118869_ + 1 o p_118870_ + a (Ljava/lang/Object;Lakx;Lban;)V m_5787_ + 0 o p_118872_ + 1 o p_118873_ + 2 o p_118874_ + a (Ljava/util/List;Lakx;Lban;)V m_5787_ + 0 o p_118878_ + 1 o p_118879_ + 2 o p_118880_ + a ()Leqi; m_280369_ + a (Ljava/lang/String;)Z m_118875_ + static + 0 o p_118876_ + b (Lakx;Lban;)Ljava/lang/Object; m_5944_ + 0 o p_118882_ + 1 o p_118883_ +fvw net/minecraft/client/resources/TextureAtlasHolder + a f_118884_ + b f_260648_ + (Lfuw;Lacq;Lacq;)V + 0 o p_262057_ + 1 o p_261554_ + 2 o p_262147_ + a (Lakr$a;Lakx;Lban;Lban;Ljava/util/concurrent/Executor;Ljava/util/concurrent/Executor;)Ljava/util/concurrent/CompletableFuture; m_5540_ + 0 o p_249641_ + 1 o p_250036_ + 2 o p_249806_ + 3 o p_250732_ + 4 o p_249427_ + 5 o p_250510_ + a (Lfuq$a;Lban;)V m_245256_ + 0 o p_252333_ + 1 o p_250624_ + a (Lacq;)Lfuv; m_118901_ + 0 o p_118902_ + a (Lban;Lfuq$a;)V m_246837_ + 0 o p_248821_ + 1 o p_249246_ + close ()V close +fvx net/minecraft/client/resources/language/ClientLanguage + b f_118909_ + c f_118910_ + d f_118911_ + ()V + static + (Ljava/util/Map;Z)V + 0 o p_118914_ + 1 o p_118915_ + a (Ljava/lang/String;Ljava/lang/String;)Ljava/lang/String; m_118919_ + 0 o p_118920_ + 1 o p_265273_ + a (Ljava/lang/String;Ljava/util/List;Ljava/util/Map;)V m_235035_ + static + 0 o p_235036_ + 1 o p_235037_ + 2 o p_235038_ + a (Lta;)Laom; m_5536_ + 0 o p_118925_ + a (Lakx;Ljava/util/List;Z)Lfvx; m_264420_ + static + 0 o p_265765_ + 1 o p_265743_ + 2 o p_265470_ + b (Ljava/lang/String;)Z m_6722_ + 0 o p_118928_ + b ()Z m_6627_ +fvy net/minecraft/client/resources/language/FormattedBidiReorder + ()V + a (Lta;Z)Laom; m_118931_ + static + 0 o p_118932_ + 1 o p_118933_ + a (Ljava/lang/String;)Ljava/lang/String; m_118929_ + static + 0 o p_118930_ +fvz net/minecraft/client/resources/language/I18n + a f_118934_ + ()V + static + ()V + a (Lqm;)V m_118941_ + static + 0 o p_118942_ + a (Ljava/lang/String;[Ljava/lang/Object;)Ljava/lang/String; m_118938_ + static + 0 o p_118939_ + 1 o p_118940_ + a (Ljava/lang/String;)Z m_118936_ + static + 0 o p_118937_ +fw net/minecraft/commands/arguments/item/ItemParser + a f_120991_ + b f_120992_ + c f_235286_ + d f_175091_ + e f_175092_ + f f_120993_ + g f_235287_ + h f_120994_ + i f_235288_ + j f_235289_ + k f_120998_ + l f_121001_ + ()V + static + (Lhg;Lcom/mojang/brigadier/StringReader;Z)V + 0 o p_235291_ + 1 o p_235292_ + 2 o p_235293_ + a (Lhg;Lcom/mojang/brigadier/StringReader;)Lfw$a; m_235305_ + static + 0 o p_235306_ + 1 o p_235307_ + a (Ljava/lang/Object;)Lcom/mojang/brigadier/Message; m_235312_ + static + 0 o p_235313_ + a (Lhg;Lcom/mojang/brigadier/suggestion/SuggestionsBuilder;Z)Ljava/util/concurrent/CompletableFuture; m_235308_ + static + 0 o p_235309_ + 1 o p_235310_ + 2 o p_235311_ + a (ILacq;)Lcom/mojang/brigadier/exceptions/CommandSyntaxException; m_235294_ + 0 o p_235295_ + 1 o p_235296_ + a (Lcom/mojang/brigadier/suggestion/SuggestionsBuilder;)Ljava/util/concurrent/CompletableFuture; m_235297_ + 0 o p_235298_ + a (Lfw;Lhi;)Lfw$b; m_235302_ + static + 0 o p_235303_ + 1 o p_235304_ + a (Lfw;Lhe;)Lfw$a; m_235299_ + static + 0 o p_235300_ + 1 o p_235301_ + a ()V m_121026_ + b (Ljava/lang/Object;)Lcom/mojang/brigadier/Message; m_121012_ + static + 0 o p_121013_ + b (ILacq;)Lcom/mojang/brigadier/exceptions/CommandSyntaxException; m_235314_ + 0 o p_235315_ + 1 o p_235316_ + b (Lhg;Lcom/mojang/brigadier/StringReader;)Lcom/mojang/datafixers/util/Either; m_235319_ + static + 0 o p_235320_ + 1 o p_235321_ + b (Lcom/mojang/brigadier/suggestion/SuggestionsBuilder;)Ljava/util/concurrent/CompletableFuture; m_235317_ + 0 o p_235318_ + b ()V m_121030_ + c (Lcom/mojang/brigadier/suggestion/SuggestionsBuilder;)Ljava/util/concurrent/CompletableFuture; m_235322_ + 0 o p_235323_ + c ()V m_121031_ + d (Lcom/mojang/brigadier/suggestion/SuggestionsBuilder;)Ljava/util/concurrent/CompletableFuture; m_235325_ + 0 o p_235326_ + d ()V m_235324_ + e ()Ljava/lang/IllegalStateException; m_235327_ + static +fw$a net/minecraft/commands/arguments/item/ItemParser$ItemResult + a f_235328_ + b f_235329_ + (Lhe;Lqr;)V + 0 o f_235328_ + 1 o f_235329_ + a ()Lhe; f_235328_ + b ()Lqr; f_235329_ + equals (Ljava/lang/Object;)Z equals + 0 o p_235336_ + hashCode ()I hashCode + toString ()Ljava/lang/String; toString +fw$b net/minecraft/commands/arguments/item/ItemParser$TagResult + a f_235339_ + b f_235340_ + (Lhi;Lqr;)V + 0 o f_235339_ + 1 o f_235340_ + a ()Lhi; f_235339_ + b ()Lqr; f_235340_ + equals (Ljava/lang/Object;)Z equals + 0 o p_235347_ + hashCode ()I hashCode + toString ()Ljava/lang/String; toString +fwa net/minecraft/client/resources/language/LanguageInfo + a f_263742_ + b f_118944_ + c f_118945_ + d f_118946_ + ()V + static + (Ljava/lang/String;Ljava/lang/String;Z)V + 0 o f_118944_ + 1 o f_118945_ + 2 o f_118946_ + a (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; m_264330_ + static + 0 o p_265767_ + a ()Lsw; m_264517_ + b ()Ljava/lang/String; f_118944_ + c ()Ljava/lang/String; f_118945_ + d ()Z f_118946_ + equals (Ljava/lang/Object;)Z equals + 0 o p_118958_ + hashCode ()I hashCode + toString ()Ljava/lang/String; toString +fwb net/minecraft/client/resources/language/LanguageManager + a f_174854_ + b f_118964_ + c f_118965_ + d f_118966_ + e f_118967_ + ()V + static + (Ljava/lang/String;)V + 0 o p_118971_ + a (Ljava/lang/String;)V m_264110_ + 0 o p_265224_ + a (Ljava/util/Map;Lajl;)V m_263891_ + static + 0 o p_264711_ + 1 o p_264712_ + a (Lakx;)V m_6213_ + 0 o p_118973_ + a ()Ljava/lang/String; m_264236_ + a (Ljava/util/stream/Stream;)Ljava/util/Map; m_118981_ + static + 0 o p_118982_ + b ()Ljava/util/SortedMap; m_264450_ + b (Ljava/lang/String;)Lfwa; m_118976_ + 0 o p_118977_ +fwc net/minecraft/client/resources/language/package-info +fwd net/minecraft/client/resources/metadata/animation/AnimationFrame + a f_174855_ + b f_119001_ + c f_119002_ + (II)V + 0 o p_119006_ + 1 o p_119007_ + (I)V + 0 o p_119004_ + a (I)I m_174856_ + 0 o p_174857_ + a ()I m_119010_ +fwe net/minecraft/client/resources/metadata/animation/AnimationMetadataSection + a f_119011_ + b f_174858_ + c f_174859_ + d f_174860_ + e f_119012_ + f f_119013_ + g f_119014_ + h f_119015_ + i f_119016_ + j f_119017_ + ()V + static + (Ljava/util/List;IIIZ)V + 0 o p_119020_ + 1 o p_119021_ + 2 o p_119022_ + 3 o p_119023_ + 4 o p_119024_ + a (II)Lfwg; m_245821_ + 0 o p_249859_ + 1 o p_250148_ + a ()I m_119030_ + a (Lfwe$a;)V m_174861_ + 0 o p_174862_ + b ()Z m_119036_ +fwe$1 net/minecraft/client/resources/metadata/animation/AnimationMetadataSection$1 + (Ljava/util/List;IIIZ)V + 0 o p_119048_ + 1 o p_119049_ + 2 o p_119050_ + 3 o p_119051_ + 4 o p_119052_ + a (II)Lfwg; m_245821_ + 0 o p_251622_ + 1 o p_252064_ +fwe$a net/minecraft/client/resources/metadata/animation/AnimationMetadataSection$FrameOutput + accept (II)V m_174863_ + 0 o p_174864_ + 1 o p_174865_ +fwf net/minecraft/client/resources/metadata/animation/AnimationMetadataSectionSerializer + ()V + a ()Ljava/lang/String; m_7991_ + a (Lcom/google/gson/JsonObject;)Ljava/lang/Object; m_6322_ + 0 o p_119062_ + a (ILcom/google/gson/JsonElement;)Lfwd; m_119058_ + 0 o p_119059_ + 1 o p_119060_ + b (Lcom/google/gson/JsonObject;)Lfwe; m_6322_ + 0 o p_119064_ +fwg net/minecraft/client/resources/metadata/animation/FrameSize + a f_244129_ + b f_244503_ + (II)V + 0 o f_244129_ + 1 o f_244503_ + a ()I f_244129_ + b ()I f_244503_ + equals (Ljava/lang/Object;)Z equals + 0 o p_251849_ + hashCode ()I hashCode + toString ()Ljava/lang/String; toString +fwh net/minecraft/client/resources/metadata/animation/VillagerMetaDataSection + a f_119065_ + b f_174866_ + c f_119066_ + ()V + static + (Lfwh$a;)V + 0 o p_119069_ + a ()Lfwh$a; m_119070_ +fwh$a net/minecraft/client/resources/metadata/animation/VillagerMetaDataSection$Hat + a NONE + b PARTIAL + c FULL + d f_119074_ + e f_119075_ + f $VALUES + ()V + static + (Ljava/lang/String;ILjava/lang/String;)V + 0 o p_119079_ + 1 o p_119080_ + 2 o p_119081_ + a (Lfwh$a;)Lfwh$a; m_119083_ + static + 0 o p_119084_ + a ()Ljava/lang/String; m_119082_ + a (Ljava/lang/String;)Lfwh$a; m_119085_ + static + 0 o p_119086_ + b ()[Lfwh$a; m_174867_ + static + valueOf (Ljava/lang/String;)Lfwh$a; valueOf + static + 0 o p_119088_ + values ()[Lfwh$a; values + static +fwi net/minecraft/client/resources/metadata/animation/VillagerMetadataSectionSerializer + ()V + a ()Ljava/lang/String; m_7991_ + a (Lcom/google/gson/JsonObject;)Ljava/lang/Object; m_6322_ + 0 o p_119093_ + b (Lcom/google/gson/JsonObject;)Lfwh; m_6322_ + 0 o p_119095_ +fwj net/minecraft/client/resources/metadata/animation/package-info +fwk net/minecraft/client/resources/metadata/language/LanguageMetadataSection + a f_263769_ + b f_263762_ + c f_263724_ + d f_119097_ + ()V + static + (Ljava/util/Map;)V + 0 o f_119097_ + a ()Ljava/util/Map; f_119097_ + equals (Ljava/lang/Object;)Z equals + 0 o p_265106_ + hashCode ()I hashCode + toString ()Ljava/lang/String; toString +fwl net/minecraft/client/resources/metadata/language/package-info +fwm net/minecraft/client/resources/metadata/package-info +fwn net/minecraft/client/resources/metadata/texture/TextureMetadataSection + a f_119108_ + b f_174870_ + c f_174871_ + d f_119109_ + e f_119110_ + ()V + static + (ZZ)V + 0 o p_119113_ + 1 o p_119114_ + a ()Z m_119115_ + b ()Z m_119116_ +fwo net/minecraft/client/resources/metadata/texture/TextureMetadataSectionSerializer + ()V + a ()Ljava/lang/String; m_7991_ + a (Lcom/google/gson/JsonObject;)Ljava/lang/Object; m_6322_ + 0 o p_119120_ + b (Lcom/google/gson/JsonObject;)Lfwn; m_6322_ + 0 o p_119122_ +fwp net/minecraft/client/resources/metadata/texture/package-info +fwq net/minecraft/client/resources/model/AtlasSet + a f_244518_ + (Ljava/util/Map;Lfuw;)V + 0 o p_249969_ + 1 o p_252059_ + a (Lfwq$a;Lfuq$a;)Lfwq$b; m_245402_ + static + 0 o p_251825_ + 1 o p_250418_ + a (Lacq;)Lfuu; m_245433_ + 0 o p_250828_ + a (Lakx;ILjava/util/concurrent/Executor;)Ljava/util/Map; m_247721_ + 0 o p_249256_ + 1 o p_251059_ + 2 o p_250751_ + a (Lfuw;Ljava/util/Map$Entry;)Lfwq$a; m_260771_ + static + 0 o p_261402_ + 1 o p_261403_ + a (Lakx;ILjava/util/concurrent/Executor;Ljava/util/Map$Entry;)Ljava/util/concurrent/CompletableFuture; m_260770_ + static + 0 o p_261398_ + 1 o p_261399_ + 2 o p_261400_ + 3 o p_261401_ + close ()V close +fwq$a net/minecraft/client/resources/model/AtlasSet$AtlasEntry + a f_244361_ + b f_260723_ + (Lfuu;Lacq;)V + 0 o f_244361_ + 1 o f_260723_ + a ()Lfuu; f_244361_ + b ()Lacq; f_260723_ + close ()V close + equals (Ljava/lang/Object;)Z equals + 0 o p_250516_ + hashCode ()I hashCode + toString ()Ljava/lang/String; toString +fwq$b net/minecraft/client/resources/model/AtlasSet$StitchResult + a f_244080_ + b f_244211_ + (Lfuu;Lfuq$a;)V + 0 o p_250381_ + 1 o p_251137_ + a (Lacq;)Lfuv; m_245551_ + 0 o p_249039_ + a ()Lfuv; m_247223_ + b ()Ljava/util/concurrent/CompletableFuture; m_246362_ + c ()V m_246239_ +fwr net/minecraft/client/resources/model/BakedModel + a (Ldcb;Lha;Lapf;)Ljava/util/List; m_213637_ + 0 o p_235039_ + 1 o p_235040_ + 2 o p_235041_ + a ()Z m_7541_ + b ()Z m_7539_ + c ()Z m_7547_ + d ()Z m_7521_ + e ()Lfuv; m_6160_ + f ()Lfld; m_7442_ + g ()Lflb; m_7343_ +fws net/minecraft/client/resources/model/BlockModelRotation + a X0_Y0 + b X0_Y90 + c X0_Y180 + d X0_Y270 + e X90_Y0 + f X90_Y90 + g X90_Y180 + h X90_Y270 + i X180_Y0 + j X180_Y90 + k X180_Y180 + l X180_Y270 + m X270_Y0 + n X270_Y90 + o X270_Y180 + p X270_Y270 + q f_174872_ + r f_119142_ + s f_119143_ + t f_119144_ + u f_119145_ + v $VALUES + ()V + static + (Ljava/lang/String;III)V + 0 o p_119149_ + 1 o p_119150_ + 2 o p_119151_ + 3 o p_119152_ + a ()Lh; m_174873_ + a (Lfws;)Lfws; m_119156_ + static + 0 o p_119157_ + a (II)Lfws; m_119153_ + static + 0 o p_119154_ + 1 o p_119155_ + b (II)I m_119159_ + static + 0 o p_119160_ + 1 o p_119161_ + b ()Lj; m_6189_ + b (Lfws;)Ljava/lang/Integer; m_119162_ + static + 0 o p_119163_ + d ()[Lfws; m_174874_ + static + valueOf (Ljava/lang/String;)Lfws; valueOf + static + 0 o p_119165_ + values ()[Lfws; values + static +fwt net/minecraft/client/resources/model/BuiltInModel + a f_119167_ + b f_119168_ + c f_119169_ + d f_119170_ + (Lfld;Lflb;Lfuv;Z)V + 0 o p_119172_ + 1 o p_119173_ + 2 o p_119174_ + 3 o p_119175_ + a (Ldcb;Lha;Lapf;)Ljava/util/List; m_213637_ + 0 o p_235043_ + 1 o p_235044_ + 2 o p_235045_ + a ()Z m_7541_ + b ()Z m_7539_ + c ()Z m_7547_ + d ()Z m_7521_ + e ()Lfuv; m_6160_ + f ()Lfld; m_7442_ + g ()Lflb; m_7343_ +fwu net/minecraft/client/resources/model/Material + a f_244523_ + b f_119187_ + c f_119188_ + d f_119189_ + ()V + static + (Lacq;Lacq;)V + 0 o p_119191_ + 1 o p_119192_ + a (Lfjx;Ljava/util/function/Function;)Lein; m_119194_ + 0 o p_119195_ + 1 o p_119196_ + a ()Lacq; m_119193_ + a (Ljava/util/function/Function;)Lfkf; m_119201_ + 0 o p_119202_ + a (Lfjx;Ljava/util/function/Function;Z)Lein; m_119197_ + 0 o p_119198_ + 1 o p_119199_ + 2 o p_119200_ + b ()Lacq; m_119203_ + c ()Lfuv; m_119204_ + equals (Ljava/lang/Object;)Z equals + 0 o p_119206_ + hashCode ()I hashCode + toString ()Ljava/lang/String; toString +fwv net/minecraft/client/resources/model/ModelBaker + a (Lacq;Lfwz;)Lfwr; m_245240_ + 0 o p_250776_ + 1 o p_251280_ + a (Lacq;)Lfxc; m_245361_ + 0 o p_252194_ +fww net/minecraft/client/resources/model/ModelBakery + A f_119238_ + B f_119239_ + C f_119240_ + D f_119241_ + E f_119242_ + F f_119209_ + G f_244132_ + H f_243866_ + I f_119210_ + J f_119211_ + K f_119212_ + L f_119213_ + M f_119214_ + N f_119215_ + O f_119217_ + P f_119218_ + a f_119219_ + b f_119220_ + c f_119221_ + d f_119222_ + e f_119223_ + f f_119224_ + g f_119225_ + h f_119226_ + i f_174875_ + j f_119227_ + k f_119228_ + l f_119229_ + m f_174876_ + n f_119230_ + o f_244202_ + p f_244378_ + q f_119231_ + r f_119232_ + s f_119233_ + t f_174877_ + u f_119235_ + v f_174878_ + w f_174879_ + x f_174880_ + y f_174881_ + z f_119237_ + ()V + static + (Leoo;Lban;Ljava/util/Map;Ljava/util/Map;)V + 0 o p_249183_ + 1 o p_252014_ + 2 o p_251087_ + 3 o p_250416_ + a (Lcom/google/common/collect/ImmutableList;Ldcc;Ljava/util/Map;Ljava/util/List;Lflj;Lcom/mojang/datafixers/util/Pair;Lfkx;Lacq;Lcom/mojang/datafixers/util/Pair;Ljava/lang/String;Lfle;)V m_119279_ + static + 0 o p_119280_ + 1 o p_119281_ + 2 o p_119282_ + 3 o p_119283_ + 4 o p_119284_ + 5 o p_119285_ + 6 o p_119286_ + 7 o p_119287_ + 8 o p_119288_ + 9 o p_119289_ + 10 o p_119290_ + a (Ljava/util/function/BiFunction;)V m_245909_ + 0 o p_248669_ + a (Lacq;Lfww$c;)Lcom/mojang/datafixers/util/Pair; m_244743_ + 0 o p_247955_ + 1 o p_247956_ + a (Lfww$e;)Ljava/util/Set; m_174893_ + static + 0 o p_174894_ + a (I)Lacq; m_119252_ + static + 0 o p_119253_ + a (Lacq;Ldcb;)V m_174903_ + 0 o p_174904_ + 1 o p_174905_ + a (Ljava/util/Map;Lacq;Lcom/mojang/datafixers/util/Pair;Ljava/util/Map;Lfwy;Ldcb;)V m_119331_ + 0 o p_119332_ + 1 o p_119333_ + 2 o p_119334_ + 3 o p_119335_ + 4 o p_119336_ + 5 o p_119337_ + a (Lfwy;)V m_119306_ + 0 o p_119307_ + a (Ljava/util/Map;Lflj;Ljava/util/List;Ldcb;)V m_119322_ + static + 0 o p_119323_ + 1 o p_119324_ + 2 o p_119325_ + 3 o p_119326_ + a (Lfxc;)V m_244742_ + 0 o p_247954_ + a (Ldcb;)V m_119263_ + 0 o p_119264_ + a (Ljava/util/function/BiFunction;Lacq;)V m_244744_ + 0 o p_247957_ + 1 o p_247958_ + a (Ldcb;Lflj;Ljava/util/List;)Lfww$e; m_174886_ + static + 0 o p_174887_ + 1 o p_174888_ + 2 o p_174889_ + a (Lacq;Ldcc;)V m_119346_ + 0 o p_119347_ + 1 o p_119348_ + a (Ldde;Ljava/lang/String;)Ljava/lang/Comparable; m_119276_ + static + 0 o p_119277_ + 1 o p_119278_ + a (Ljava/util/Map;Lfle;Ljava/util/List;Lflj;Lcom/mojang/datafixers/util/Pair;Lfkx;Ldcb;)V m_174895_ + static + 0 o p_174896_ + 1 o p_174897_ + 2 o p_174898_ + 3 o p_174899_ + 4 o p_174900_ + 5 o p_174901_ + 6 o p_174902_ + a (Lfww$e;Ljava/util/Set;)V m_283980_ + 0 o p_284640_ + 1 o p_284641_ + a (Ljava/lang/Iterable;)V m_119310_ + 0 o p_119311_ + a (Lcom/mojang/datafixers/util/Pair;Ljava/util/Map$Entry;)Z m_174890_ + static + 0 o p_174891_ + 1 o p_174892_ + a (Ldcc;Ljava/lang/String;)Ljava/util/function/Predicate; m_119273_ + static + 0 o p_119274_ + 1 o p_119275_ + a (Lfkw;)V m_119296_ + static + 0 o p_119297_ + a (Ldcb;Lfle;Ljava/util/List;)Lfww$e; m_174882_ + static + 0 o p_174883_ + 1 o p_174884_ + 2 o p_174885_ + a (Lacq;Lfxc;)V m_119352_ + 0 o p_119353_ + 1 o p_119354_ + a (Ljava/util/Map;Lacq;Ldcb;)V m_119327_ + static + 0 o p_119328_ + 1 o p_119329_ + 2 o p_119330_ + a (Lcpn;Ljava/util/Map;Ldcb;)Z m_119259_ + static + 0 o p_119260_ + 1 o p_119261_ + 2 o p_119262_ + a (Lit/unimi/dsi/fastutil/objects/Object2IntOpenHashMap;)V m_119308_ + static + 0 o p_119309_ + a (ILdcb;)V m_119254_ + 0 o p_119255_ + 1 o p_119256_ + a ()Ljava/util/Map; m_119251_ + a (Lacq;)Lfxc; m_119341_ + 0 o p_119342_ + b (Lfww$e;)Lfww$e; m_119360_ + static + 0 o p_119361_ + b (Lfkw;)V m_119358_ + static + 0 o p_119359_ + b ()Lit/unimi/dsi/fastutil/objects/Object2IntMap; m_119355_ + b (Lacq;)V m_119362_ + 0 o p_119363_ + c (Lacq;)Lfkw; m_119364_ + 0 o p_119365_ + d (Lacq;)Ldcc; m_257089_ + static + 0 o p_258160_ + e (Lacq;)Lacq; m_119370_ + static + 0 o p_119371_ +fww$a net/minecraft/client/resources/model/ModelBakery$BakedCacheKey + a f_243934_ + b f_243798_ + c f_243915_ + (Lacq;Lj;Z)V + 0 o f_243934_ + 1 o f_243798_ + 2 o f_243915_ + a ()Lacq; f_243934_ + b ()Lj; f_243798_ + c ()Z f_243915_ + equals (Ljava/lang/Object;)Z equals + 0 o p_252262_ + hashCode ()I hashCode + toString ()Ljava/lang/String; toString +fww$b net/minecraft/client/resources/model/ModelBakery$BlockStateDefinitionException + (Ljava/lang/String;)V + 0 o p_119373_ +fww$c net/minecraft/client/resources/model/ModelBakery$LoadedJson + a f_243774_ + b f_244212_ + (Ljava/lang/String;Lcom/google/gson/JsonElement;)V + 0 o f_243774_ + 1 o f_244212_ + a ()Ljava/lang/String; f_243774_ + b ()Lcom/google/gson/JsonElement; f_244212_ + equals (Ljava/lang/Object;)Z equals + 0 o p_251910_ + hashCode ()I hashCode + toString ()Ljava/lang/String; toString +fww$d net/minecraft/client/resources/model/ModelBakery$ModelBakerImpl + a f_243927_ + b f_243920_ + (Lfww;Ljava/util/function/BiFunction;Lacq;)V + 0 o p_250786_ + 1 o p_249651_ + 2 o p_251408_ + a (Lacq;Lfwz;)Lfwr; m_245240_ + 0 o p_252176_ + 1 o p_249765_ + a (Ljava/util/function/BiFunction;Lacq;Lfwu;)Lfuv; m_246280_ + static + 0 o p_251463_ + 1 o p_248728_ + 2 o p_250859_ + a (Lacq;)Lfxc; m_245361_ + 0 o p_248568_ +fww$e net/minecraft/client/resources/model/ModelBakery$ModelGroupKey + a f_119374_ + b f_119375_ + (Ljava/util/List;Ljava/util/List;)V + 0 o p_119377_ + 1 o p_119378_ + a (Ldcb;Ljava/util/Collection;)Ljava/util/List; m_119387_ + static + 0 o p_119388_ + 1 o p_119389_ + a (Ldcb;Lflj;Ljava/util/Collection;)Lfww$e; m_119379_ + static + 0 o p_119380_ + 1 o p_119381_ + 2 o p_119382_ + a (Ldcb;Lfxc;Ljava/util/Collection;)Lfww$e; m_119383_ + static + 0 o p_119384_ + 1 o p_119385_ + 2 o p_119386_ + a (Ldcc;Ldcb;Lfll;)Z m_119390_ + static + 0 o p_119391_ + 1 o p_119392_ + 2 o p_119393_ + equals (Ljava/lang/Object;)Z equals + 0 o p_119395_ + hashCode ()I hashCode +fwx net/minecraft/client/resources/model/ModelManager + a f_243848_ + b f_244614_ + c f_119397_ + d f_119398_ + e f_119399_ + f f_119401_ + g f_119402_ + h f_119403_ + i f_119404_ + ()V + static + (Lfuw;Leoo;I)V + 0 o p_119406_ + 1 o p_119407_ + 2 o p_119408_ + a (Ljava/util/Map;Lcom/google/common/collect/Multimap;Lacq;Lfwu;)Lfuv; m_246294_ + static + 0 o p_249446_ + 1 o p_249860_ + 2 o p_251469_ + 3 o p_251262_ + a (Lakr$a;Lakx;Lban;Lban;Ljava/util/concurrent/Executor;Ljava/util/concurrent/Executor;)Ljava/util/concurrent/CompletableFuture; m_5540_ + 0 o p_249079_ + 1 o p_251134_ + 2 o p_250336_ + 3 o p_252324_ + 4 o p_250550_ + 5 o p_249221_ + a (Lfwx$a;Ljava/lang/Void;)Lfwx$a; m_247745_ + static + 0 o p_249429_ + 1 o p_251581_ + a (Lban;Ljava/util/Map;Lfww;)Lfwx$a; m_245476_ + 0 o p_252136_ + 1 o p_250646_ + 2 o p_248945_ + a (Ldcb;Ldcb;)Z m_119415_ + 0 o p_119416_ + 1 o p_119417_ + a (Lfwx$a;Lban;)V m_247616_ + 0 o p_248996_ + 1 o p_251960_ + a (Lban;Lfwx$a;)V m_245893_ + 0 o p_249375_ + 1 o p_252252_ + a (Lakx;)Ljava/util/Map; m_245068_ + static + 0 o p_249426_ + a (Ljava/util/Map$Entry;)Lcom/mojang/datafixers/util/Pair; m_246264_ + static + 0 o p_251113_ + a ()Lfwr; m_119409_ + a (I)V m_119410_ + 0 o p_119411_ + a (Lfwy;)Lfwr; m_119422_ + 0 o p_119423_ + a (Lacq;)Lfuu; m_119428_ + 0 o p_119429_ + a (Lban;Ljava/util/Map;Ljava/util/Map;)Lfww; m_246505_ + 0 o p_251077_ + 1 o p_251201_ + 2 o p_251281_ + a (Ljava/util/Map;Lfwr;Ljava/util/Map;Ldcb;)V m_245561_ + static + 0 o p_250461_ + 1 o p_250293_ + 2 o p_252171_ + 3 o p_250633_ + a (Ljava/util/List;)Ljava/util/Map; m_246687_ + static + 0 o p_248966_ + a (Lban;Ljava/util/Map;Ljava/util/concurrent/CompletableFuture;Ljava/lang/Void;)Lfwx$a; m_246937_ + 0 o p_251601_ + 1 o p_250226_ + 2 o p_251585_ + 3 o p_248624_ + a (Ljava/util/concurrent/Executor;Ljava/util/Map;)Ljava/util/concurrent/CompletionStage; m_246572_ + static + 0 o p_250967_ + 1 o p_250744_ + a (Lfwx$a;)Ljava/util/concurrent/CompletionStage; m_245121_ + static + 0 o p_252255_ + a (Lfwu;)Ljava/lang/String; m_246805_ + static + 0 o p_248692_ + a (Lacq;Ljava/util/Collection;)V m_245484_ + static + 0 o p_250493_ + 1 o p_252017_ + a (Lakx;Ljava/util/concurrent/Executor;)Ljava/util/concurrent/CompletableFuture; m_246704_ + static + 0 o p_251361_ + 1 o p_252189_ + b (Lakx;Ljava/util/concurrent/Executor;)Ljava/util/concurrent/CompletableFuture; m_246899_ + static + 0 o p_252084_ + 1 o p_249943_ + b (Lakx;)Ljava/util/Map; m_246360_ + static + 0 o p_252061_ + b ()Lfkn; m_119430_ + b (I)[Ljava/util/concurrent/CompletableFuture; m_245925_ + static + 0 o p_250044_ + b (Ljava/util/concurrent/Executor;Ljava/util/Map;)Ljava/util/concurrent/CompletionStage; m_245318_ + static + 0 o p_251663_ + 1 o p_250597_ + b (Ljava/util/List;)Ljava/util/Map; m_247063_ + static + 0 o p_250813_ + b (Ljava/util/Map$Entry;)Lcom/mojang/datafixers/util/Pair; m_246478_ + static + 0 o p_251617_ + c (Ljava/util/Map$Entry;)Lfwq$b; m_247228_ + static + 0 o p_248988_ + c (I)[Ljava/util/concurrent/CompletableFuture; m_247195_ + static + 0 o p_250157_ + close ()V close +fwx$a net/minecraft/client/resources/model/ModelManager$ReloadState + a f_244394_ + b f_244619_ + c f_244561_ + d f_244177_ + e f_244037_ + (Lfww;Lfwr;Ljava/util/Map;Ljava/util/Map;Ljava/util/concurrent/CompletableFuture;)V + 0 o f_244394_ + 1 o f_244619_ + 2 o f_244561_ + 3 o f_244177_ + 4 o f_244037_ + a ()Lfww; f_244394_ + b ()Lfwr; f_244619_ + c ()Ljava/util/Map; f_244561_ + d ()Ljava/util/Map; f_244177_ + e ()Ljava/util/concurrent/CompletableFuture; f_244037_ + equals (Ljava/lang/Object;)Z equals + 0 o p_251346_ + hashCode ()I hashCode + toString ()Ljava/lang/String; toString +fwy net/minecraft/client/resources/model/ModelResourceLocation + e f_174906_ + f f_119435_ + (Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;)V + 0 o p_174908_ + 1 o p_174909_ + 2 o p_174910_ + (Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Lacq$a;)V + 0 o p_251021_ + 1 o p_249350_ + 2 o p_251656_ + 3 o p_248802_ + (Lacq;Ljava/lang/String;)V + 0 o p_119442_ + 1 o p_119443_ + c (Ljava/lang/String;Ljava/lang/String;)Lfwy; m_245263_ + static + 0 o p_251132_ + 1 o p_248987_ + equals (Ljava/lang/Object;)Z equals + 0 o p_119450_ + f ()Ljava/lang/String; m_119448_ + h (Ljava/lang/String;)Ljava/lang/String; m_246655_ + static + 0 o p_248567_ + hashCode ()I hashCode + toString ()Ljava/lang/String; toString +fwz net/minecraft/client/resources/model/ModelState + b ()Lj; m_6189_ + c ()Z m_7538_ +fx net/minecraft/commands/arguments/item/ItemPredicateArgument + a f_121033_ + b f_235350_ + ()V + static + (Ldm;)V + 0 o p_235352_ + a (Lcom/mojang/brigadier/StringReader;)Lfx$a; parse + 0 o p_121039_ + a (Ljava/util/function/Predicate;Lcfz;)Z m_235362_ + static + 0 o p_235363_ + 1 o p_235364_ + a (Lcom/mojang/brigadier/context/CommandContext;Ljava/lang/String;)Ljava/util/function/Predicate; m_121040_ + static + 0 o p_121041_ + 1 o p_121042_ + a (Ljava/util/function/Predicate;Lqr;)Lfx$a; m_235365_ + static + 0 o p_235366_ + 1 o p_235367_ + a (Lfw$a;)Lfx$a; m_235355_ + static + 0 o p_235356_ + a (Lfw$b;)Lfx$a; m_235360_ + static + 0 o p_235361_ + a (Lfw$a;Lhe;)Z m_235357_ + static + 0 o p_235358_ + 1 o p_235359_ + a (Ldm;)Lfx; m_235353_ + static + 0 o p_235354_ + a (Ljava/util/function/Predicate;Lqr;Lcfz;)Z m_235368_ + static + 0 o p_235369_ + 1 o p_235370_ + 2 o p_235371_ + getExamples ()Ljava/util/Collection; getExamples + listSuggestions (Lcom/mojang/brigadier/context/CommandContext;Lcom/mojang/brigadier/suggestion/SuggestionsBuilder;)Ljava/util/concurrent/CompletableFuture; listSuggestions + 0 o p_121054_ + 1 o p_121055_ + parse (Lcom/mojang/brigadier/StringReader;)Ljava/lang/Object; parse + 0 o p_121057_ +fx$a net/minecraft/commands/arguments/item/ItemPredicateArgument$Result +fxa net/minecraft/client/resources/model/MultiPartBakedModel + a f_119453_ + b f_119454_ + c f_119455_ + d f_119456_ + e f_119457_ + f f_119458_ + g f_119459_ + h f_119460_ + (Ljava/util/List;)V + 0 o p_119462_ + a (Ldcb;Lha;Lapf;)Ljava/util/List; m_213637_ + 0 o p_235050_ + 1 o p_235051_ + 2 o p_235052_ + a ()Z m_7541_ + b ()Z m_7539_ + c ()Z m_7547_ + d ()Z m_7521_ + e ()Lfuv; m_6160_ + f ()Lfld; m_7442_ + g ()Lflb; m_7343_ +fxa$a net/minecraft/client/resources/model/MultiPartBakedModel$Builder + a f_119474_ + ()V + a (Ljava/util/function/Predicate;Lfwr;)V m_119477_ + 0 o p_119478_ + 1 o p_119479_ + a ()Lfwr; m_119476_ +fxb net/minecraft/client/resources/model/SimpleBakedModel + a f_119480_ + b f_119481_ + c f_119482_ + d f_119483_ + e f_119484_ + f f_119485_ + g f_119486_ + h f_119487_ + (Ljava/util/List;Ljava/util/Map;ZZZLfuv;Lfld;Lflb;)V + 0 o p_119489_ + 1 o p_119490_ + 2 o p_119491_ + 3 o p_119492_ + 4 o p_119493_ + 5 o p_119494_ + 6 o p_119495_ + 7 o p_119496_ + a (Ldcb;Lha;Lapf;)Ljava/util/List; m_213637_ + 0 o p_235054_ + 1 o p_235055_ + 2 o p_235056_ + a ()Z m_7541_ + b ()Z m_7539_ + c ()Z m_7547_ + d ()Z m_7521_ + e ()Lfuv; m_6160_ + f ()Lfld; m_7442_ + g ()Lflb; m_7343_ +fxb$a net/minecraft/client/resources/model/SimpleBakedModel$Builder + a f_119508_ + b f_119509_ + c f_119510_ + d f_119511_ + e f_119512_ + f f_119513_ + g f_119514_ + h f_119515_ + (Lfkw;Lflb;Z)V + 0 o p_119517_ + 1 o p_119518_ + 2 o p_119519_ + (ZZZLfld;Lflb;)V + 0 o p_119521_ + 1 o p_119522_ + 2 o p_119523_ + 3 o p_119524_ + 4 o p_119525_ + a (Lfuv;)Lfxb$a; m_119528_ + 0 o p_119529_ + a (Lha;Lfkr;)Lfxb$a; m_119530_ + 0 o p_119531_ + 1 o p_119532_ + a (Lfkr;)Lfxb$a; m_119526_ + 0 o p_119527_ + a ()Lfxb$a; m_174911_ + b ()Lfwr; m_119533_ +fxc net/minecraft/client/resources/model/UnbakedModel + a (Lfwv;Ljava/util/function/Function;Lfwz;Lacq;)Lfwr; m_7611_ + 0 o p_250133_ + 1 o p_119535_ + 2 o p_119536_ + 3 o p_119537_ + a (Ljava/util/function/Function;)V m_5500_ + 0 o p_119538_ + f ()Ljava/util/Collection; m_7970_ +fxd net/minecraft/client/resources/model/WeightedBakedModel + a f_119540_ + b f_119541_ + c f_119542_ + (Ljava/util/List;)V + 0 o p_119544_ + a (Ldcb;Lha;Lapf;)Ljava/util/List; m_213637_ + 0 o p_235058_ + 1 o p_235059_ + 2 o p_235060_ + a ()Z m_7541_ + a (Ldcb;Lha;Lapf;Lbcj$b;)Ljava/util/List; m_235061_ + static + 0 o p_235062_ + 1 o p_235063_ + 2 o p_235064_ + 3 o p_235065_ + b ()Z m_7539_ + c ()Z m_7547_ + d ()Z m_7521_ + e ()Lfuv; m_6160_ + f ()Lfld; m_7442_ + g ()Lflb; m_7343_ +fxd$a net/minecraft/client/resources/model/WeightedBakedModel$Builder + a f_119556_ + ()V + a ()Lfwr; m_119558_ + a (Lfwr;I)Lfxd$a; m_119559_ + 0 o p_119560_ + 1 o p_119561_ +fxe net/minecraft/client/resources/model/package-info +fxf net/minecraft/client/resources/package-info +fxg net/minecraft/client/resources/sounds/AbstractSoundInstance + a f_119570_ + b f_119571_ + c f_119572_ + d f_119573_ + e f_119574_ + f f_119575_ + g f_119576_ + h f_119577_ + i f_119578_ + j f_119579_ + k f_119580_ + l f_119582_ + m f_235066_ + (Lamg;Lami;Lapf;)V + 0 o p_235072_ + 1 o p_235073_ + 2 o p_235074_ + (Lacq;Lami;Lapf;)V + 0 o p_235068_ + 1 o p_235069_ + 2 o p_235070_ + a ()Lacq; m_7904_ + a (Lfzc;)Lfzd; m_6775_ + 0 o p_119591_ + b ()Lfxv; m_5891_ + c ()Lami; m_8070_ + d ()Z m_7775_ + e ()I m_7766_ + f ()F m_7769_ + g ()F m_7783_ + h ()D m_7772_ + i ()D m_7780_ + j ()D m_7778_ + k ()Lfxy$a; m_7438_ + l ()Z m_7796_ + toString ()Ljava/lang/String; toString +fxh net/minecraft/client/resources/sounds/AbstractTickableSoundInstance + n f_119604_ + (Lamg;Lami;Lapf;)V + 0 o p_235076_ + 1 o p_235077_ + 2 o p_235078_ + m ()Z m_7801_ + n ()V m_119609_ +fxi net/minecraft/client/resources/sounds/AmbientSoundHandler + a ()V m_7551_ +fxj net/minecraft/client/resources/sounds/BeeAggressiveSoundInstance + (Lbrm;)V + 0 o p_119611_ + o ()Lfxh; m_5958_ + p ()Z m_7774_ +fxk net/minecraft/client/resources/sounds/BeeFlyingSoundInstance + (Lbrm;)V + 0 o p_119615_ + o ()Lfxh; m_5958_ + p ()Z m_7774_ +fxl net/minecraft/client/resources/sounds/BeeSoundInstance + n f_119618_ + o f_174917_ + p f_174918_ + q f_174919_ + r f_119619_ + (Lbrm;Lamg;Lami;)V + 0 o p_119621_ + 1 o p_119622_ + 2 o p_119623_ + o ()Lfxh; m_5958_ + p ()Z m_7774_ + q ()V m_7788_ + r ()Z m_7784_ + s ()Z m_7767_ + u ()F m_119627_ + v ()F m_119628_ +fxm net/minecraft/client/resources/sounds/BiomeAmbientSoundsHandler + a f_174920_ + b f_174921_ + c f_119629_ + d f_119630_ + e f_119631_ + f f_119632_ + g f_119633_ + h f_119634_ + i f_119635_ + j f_119636_ + k f_119637_ + (Lfiy;Lfzc;Lcnm;)V + 0 o p_119639_ + 1 o p_119640_ + 2 o p_119641_ + a (Lcnh;)V m_263142_ + 0 o p_119648_ + a ()V m_7551_ + a (Lcni;)V m_274008_ + 0 o p_274718_ + a (Lhe;Lcnk;Lfxm$a;)Lfxm$a; m_263141_ + 0 o p_263248_ + 1 o p_174924_ + 2 o p_174925_ + a (Lcnk;Lhe;)V m_119651_ + 0 o p_119652_ + 1 o p_263342_ + b ()F m_119654_ +fxm$a net/minecraft/client/resources/sounds/BiomeAmbientSoundsHandler$LoopSoundInstance + n f_119655_ + o f_119656_ + (Lamg;)V + 0 o p_119658_ + o ()V m_119659_ + p ()V m_119660_ + q ()V m_7788_ +fxn net/minecraft/client/resources/sounds/BubbleColumnAmbientSoundHandler + a f_119662_ + b f_119663_ + c f_119664_ + (Lfiy;)V + 0 o p_119666_ + a (Ldcb;)Z m_119668_ + static + 0 o p_119669_ + a ()V m_7551_ +fxo net/minecraft/client/resources/sounds/ElytraOnPlayerSoundInstance + n f_174926_ + o f_119670_ + p f_119671_ + (Lfiy;)V + 0 o p_119673_ + q ()V m_7788_ +fxp net/minecraft/client/resources/sounds/EntityBoundSoundInstance + n f_119675_ + (Lamg;Lami;FFLbfj;J)V + 0 o p_235080_ + 1 o p_235081_ + 2 o p_235082_ + 3 o p_235083_ + 4 o p_235084_ + 5 o p_235085_ + q ()V m_7788_ + s ()Z m_7767_ +fxq net/minecraft/client/resources/sounds/GuardianAttackSoundInstance + n f_174927_ + o f_174928_ + p f_174929_ + q f_174930_ + r f_119688_ + (Lbvy;)V + 0 o p_119690_ + q ()V m_7788_ + s ()Z m_7767_ +fxr net/minecraft/client/resources/sounds/MinecartSoundInstance + n f_174931_ + o f_174932_ + p f_174933_ + q f_174934_ + r f_174935_ + s f_119693_ + t f_119694_ + (Lcaf;)V + 0 o p_119696_ + q ()V m_7788_ + r ()Z m_7784_ + s ()Z m_7767_ +fxs net/minecraft/client/resources/sounds/RidingMinecartSoundInstance + n f_174936_ + o f_174937_ + p f_119700_ + q f_119701_ + r f_174938_ + (Lbyo;Lcaf;Z)V + 0 o p_174940_ + 1 o p_174941_ + 2 o p_174942_ + q ()V m_7788_ + r ()Z m_7784_ + s ()Z m_7767_ +fxt net/minecraft/client/resources/sounds/SimpleSoundInstance + (Lamg;Lami;FFLapf;Lgu;)V + 0 o p_235109_ + 1 o p_235110_ + 2 o p_235111_ + 3 o p_235112_ + 4 o p_235113_ + 5 o p_235114_ + (Lamg;Lami;FFLapf;ZILfxy$a;DDD)V + 0 o p_235116_ + 1 o p_235117_ + 2 o p_235118_ + 3 o p_235119_ + 4 o p_235120_ + 5 o p_235121_ + 6 o p_235122_ + 7 o p_235123_ + 8 o p_235124_ + 9 o p_235125_ + 10 o p_235126_ + (Lamg;Lami;FFLapf;DDD)V + 0 o p_235100_ + 1 o p_235101_ + 2 o p_235102_ + 3 o p_235103_ + 4 o p_235104_ + 5 o p_235105_ + 6 o p_235106_ + 7 o p_235107_ + (Lacq;Lami;FFLapf;ZILfxy$a;DDDZ)V + 0 o p_235087_ + 1 o p_235088_ + 2 o p_235089_ + 3 o p_235090_ + 4 o p_235091_ + 5 o p_235092_ + 6 o p_235093_ + 7 o p_235094_ + 8 o p_235095_ + 9 o p_235096_ + 10 o p_235097_ + 11 o p_235098_ + a (Lamg;)Lfxt; m_119745_ + static + 0 o p_119746_ + a (Lhe;F)Lfxt; m_263171_ + static + 0 o p_263418_ + 1 o p_263405_ + a (Lamg;F)Lfxt; m_119752_ + static + 0 o p_119753_ + 1 o p_119754_ + a (Lamg;Lapf;DDD)Lfxt; m_235127_ + static + 0 o p_235128_ + 1 o p_235129_ + 2 o p_235130_ + 3 o p_235131_ + 4 o p_235132_ + a (Lamg;Leei;)Lfxt; m_246411_ + static + 0 o p_249575_ + 1 o p_249600_ + a (Lamg;FF)Lfxt; m_119755_ + static + 0 o p_119756_ + 1 o p_119757_ + 2 o p_119758_ + b (Lamg;)Lfxt; m_119759_ + static + 0 o p_119760_ + b (Lamg;FF)Lfxt; m_119766_ + static + 0 o p_119767_ + 1 o p_119768_ + 2 o p_119769_ +fxu net/minecraft/client/resources/sounds/SnifferSoundInstance + n f_271268_ + o f_271261_ + p f_271453_ + (Lbtx;)V + 0 o p_273565_ + q ()V m_7788_ + s ()Z m_7767_ +fxv net/minecraft/client/resources/sounds/Sound + a f_244492_ + b f_119770_ + c f_119771_ + d f_119772_ + e f_119773_ + f f_119774_ + g f_119775_ + h f_119776_ + i f_119777_ + ()V + static + (Ljava/lang/String;Lbdf;Lbdf;ILfxv$a;ZZI)V + 0 o p_235134_ + 1 o p_235135_ + 2 o p_235136_ + 3 o p_235137_ + 4 o p_235138_ + 5 o p_235139_ + 6 o p_235140_ + 7 o p_235141_ + a (Lfyz;)V m_8054_ + 0 o p_119789_ + a ()Lacq; m_119787_ + a (Lapf;)Lfxv; m_213718_ + 0 o p_235143_ + b ()Lacq; m_119790_ + b (Lapf;)Ljava/lang/Object; m_213718_ + 0 o p_235145_ + c ()Lbdf; m_235146_ + d ()Lbdf; m_235147_ + e ()I m_7789_ + f ()Lfxv$a; m_119795_ + g ()Z m_119796_ + h ()Z m_119797_ + i ()I m_119798_ + toString ()Ljava/lang/String; toString +fxv$a net/minecraft/client/resources/sounds/Sound$Type + a FILE + b SOUND_EVENT + c f_119803_ + d $VALUES + ()V + static + (Ljava/lang/String;ILjava/lang/String;)V + 0 o p_119807_ + 1 o p_119808_ + 2 o p_119809_ + a ()[Lfxv$a; m_174943_ + static + a (Ljava/lang/String;)Lfxv$a; m_119810_ + static + 0 o p_119811_ + valueOf (Ljava/lang/String;)Lfxv$a; valueOf + static + 0 o p_119813_ + values ()[Lfxv$a; values + static +fxw net/minecraft/client/resources/sounds/SoundEventRegistration + a f_119815_ + b f_119816_ + c f_119817_ + (Ljava/util/List;ZLjava/lang/String;)V + 0 o p_119819_ + 1 o p_119820_ + 2 o p_119821_ + a ()Ljava/util/List; m_119822_ + b ()Z m_119823_ + c ()Ljava/lang/String; m_119824_ +fxx net/minecraft/client/resources/sounds/SoundEventRegistrationSerializer + a f_235148_ + ()V + static + ()V + a (Lcom/google/gson/JsonObject;Lfxv$a;)Lfxv$a; m_119832_ + 0 o p_119833_ + 1 o p_119834_ + a (Lcom/google/gson/JsonElement;Ljava/lang/reflect/Type;Lcom/google/gson/JsonDeserializationContext;)Lfxw; deserialize + 0 o p_119827_ + 1 o p_119828_ + 2 o p_119829_ + a (Lcom/google/gson/JsonObject;)Ljava/util/List; m_119830_ + 0 o p_119831_ + b (Lcom/google/gson/JsonObject;)Lfxv; m_119835_ + 0 o p_119836_ + deserialize (Lcom/google/gson/JsonElement;Ljava/lang/reflect/Type;Lcom/google/gson/JsonDeserializationContext;)Ljava/lang/Object; deserialize + 0 o p_119838_ + 1 o p_119839_ + 2 o p_119840_ +fxy net/minecraft/client/resources/sounds/SoundInstance + a ()Lacq; m_7904_ + a (Lfzc;)Lfzd; m_6775_ + 0 o p_119841_ + b ()Lfxv; m_5891_ + c ()Lami; m_8070_ + d ()Z m_7775_ + e ()I m_7766_ + f ()F m_7769_ + g ()F m_7783_ + h ()D m_7772_ + i ()D m_7780_ + j ()D m_7778_ + k ()Lfxy$a; m_7438_ + l ()Z m_7796_ + r ()Z m_7784_ + s ()Z m_7767_ + t ()Lapf; m_235150_ + static +fxy$a net/minecraft/client/resources/sounds/SoundInstance$Attenuation + a NONE + b LINEAR + c $VALUES + ()V + static + (Ljava/lang/String;I)V + 0 o p_119847_ + 1 o p_119848_ + a ()[Lfxy$a; m_174956_ + static + valueOf (Ljava/lang/String;)Lfxy$a; valueOf + static + 0 o p_119850_ + values ()[Lfxy$a; values + static +fxz net/minecraft/client/resources/sounds/TickableSoundInstance + m ()Z m_7801_ + q ()V m_7788_ +fy net/minecraft/commands/arguments/item/package-info +fya net/minecraft/client/resources/sounds/UnderwaterAmbientSoundHandler + a f_174957_ + b f_174958_ + c f_174959_ + d f_174960_ + e f_119852_ + f f_119853_ + g f_119854_ + (Lfiy;Lfzc;)V + 0 o p_119856_ + 1 o p_119857_ + a ()V m_7551_ +fyb net/minecraft/client/resources/sounds/UnderwaterAmbientSoundInstances + ()V +fyb$a net/minecraft/client/resources/sounds/UnderwaterAmbientSoundInstances$SubSound + n f_119859_ + (Lfiy;Lamg;)V + 0 o p_119861_ + 1 o p_119862_ + q ()V m_7788_ +fyb$b net/minecraft/client/resources/sounds/UnderwaterAmbientSoundInstances$UnderwaterAmbientSoundInstance + n f_174962_ + o f_119864_ + p f_119865_ + (Lfiy;)V + 0 o p_119867_ + q ()V m_7788_ +fyc net/minecraft/client/resources/sounds/package-info +fyd net/minecraft/client/searchtree/FullTextSearchTree + c f_235151_ + d f_235152_ + e f_235153_ + (Ljava/util/function/Function;Ljava/util/function/Function;Ljava/util/List;)V + 0 o p_235155_ + 1 o p_235156_ + 2 o p_235157_ + a (Ljava/lang/String;)Ljava/util/List; m_213913_ + 0 o p_235160_ + a ()V m_214078_ + a (Ljava/lang/String;Ljava/lang/String;)Ljava/util/List; m_213685_ + 0 o p_235162_ + 1 o p_235163_ +fye net/minecraft/client/searchtree/IdSearchTree + a f_235164_ + b f_235165_ + (Ljava/util/function/Function;Ljava/util/List;)V + 0 o p_235167_ + 1 o p_235168_ + a (Ljava/lang/String;)Ljava/util/List; m_213913_ + 0 o p_235169_ + a (Ljava/lang/String;Ljava/lang/String;)Ljava/util/List; m_213685_ + 0 o p_235170_ + 1 o p_235171_ + search (Ljava/lang/String;)Ljava/util/List; m_6293_ + 0 o p_235173_ +fyf net/minecraft/client/searchtree/IntersectionIterator + a f_235174_ + b f_235175_ + c f_235176_ + (Ljava/util/Iterator;Ljava/util/Iterator;Ljava/util/Comparator;)V + 0 o p_235178_ + 1 o p_235179_ + 2 o p_235180_ + computeNext ()Ljava/lang/Object; computeNext +fyg net/minecraft/client/searchtree/MergingUniqueIterator + a f_235182_ + b f_235183_ + c f_235184_ + (Ljava/util/Iterator;Ljava/util/Iterator;Ljava/util/Comparator;)V + 0 o p_235186_ + 1 o p_235187_ + 2 o p_235188_ + computeNext ()Ljava/lang/Object; computeNext +fyh net/minecraft/client/searchtree/PlainTextSearchTree + a ()Lfyh; m_235190_ + static + a (Lfym;Ljava/lang/Object;Ljava/lang/String;)V m_235191_ + static + 0 o p_235192_ + 1 o p_235193_ + 2 o p_235194_ + a (Ljava/lang/String;)Ljava/util/List; m_235195_ + static + 0 o p_235196_ + a (Ljava/util/List;Ljava/util/function/Function;)Lfyh; m_235197_ + static + 0 o p_235198_ + 1 o p_235199_ + search (Ljava/lang/String;)Ljava/util/List; m_235200_ + 0 o p_235201_ +fyi net/minecraft/client/searchtree/RefreshableSearchTree + a (Ljava/lang/String;)Ljava/util/List; m_235202_ + static + 0 o p_235203_ + a ()V m_214078_ + b ()Lfyi; m_235204_ + static +fyj net/minecraft/client/searchtree/ResourceLocationSearchTree + a (Lfym;Ljava/lang/Object;Lfym;Lacq;)V m_235206_ + static + 0 o p_235207_ + 1 o p_235208_ + 2 o p_235209_ + 3 o p_235210_ + a (Ljava/lang/String;)Ljava/util/List; m_213904_ + 0 o p_235211_ + a (Ljava/util/List;Ljava/util/function/Function;)Lfyj; m_235212_ + static + 0 o p_235213_ + 1 o p_235214_ + a ()Lfyj; m_235205_ + static + b (Ljava/lang/String;)Ljava/util/List; m_213906_ + 0 o p_235215_ +fyj$1 net/minecraft/client/searchtree/ResourceLocationSearchTree$1 + ()V + a (Ljava/lang/String;)Ljava/util/List; m_213904_ + 0 o p_235218_ + b (Ljava/lang/String;)Ljava/util/List; m_213906_ + 0 o p_235220_ +fyj$2 net/minecraft/client/searchtree/ResourceLocationSearchTree$2 + a f_235221_ + b f_235222_ + (Lfym;Lfym;)V + 0 o p_235224_ + 1 o p_235225_ + a (Ljava/lang/String;)Ljava/util/List; m_213904_ + 0 o p_235227_ + b (Ljava/lang/String;)Ljava/util/List; m_213906_ + 0 o p_235229_ +fyk net/minecraft/client/searchtree/SearchRegistry + a f_119941_ + b f_119942_ + c f_119943_ + d f_119944_ + ()V + static + ()V + a (Lfyk$a;Ljava/util/List;)V m_235235_ + 0 o p_235236_ + 1 o p_235237_ + a (Lakx;)V m_6213_ + 0 o p_119948_ + a (Lfyk$a;)Lfyl; m_235230_ + 0 o p_235231_ + a (Lfyk$a;Lfyk$b;)V m_235232_ + 0 o p_235233_ + 1 o p_235234_ + b (Lfyk$a;)Lfyk$c; m_235238_ + 0 o p_235239_ +fyk$a net/minecraft/client/searchtree/SearchRegistry$Key + ()V +fyk$b net/minecraft/client/searchtree/SearchRegistry$TreeBuilderSupplier +fyk$c net/minecraft/client/searchtree/SearchRegistry$TreeEntry + a f_235240_ + b f_235241_ + (Lfyk$b;)V + 0 o p_235243_ + a (Ljava/util/List;)V m_235245_ + 0 o p_235246_ + a ()V m_235244_ +fyl net/minecraft/client/searchtree/SearchTree + search (Ljava/lang/String;)Ljava/util/List; m_6293_ + 0 o p_119955_ +fym net/minecraft/client/searchtree/SuffixArray + a f_119956_ + b f_119957_ + c f_119958_ + d f_119959_ + e f_174963_ + f f_174964_ + g f_119960_ + h f_119961_ + i f_119962_ + j f_119963_ + k f_119964_ + ()V + static + ()V + a ([I[I[III)V m_194460_ + static + 0 o p_194461_ + 1 o p_194462_ + 2 o p_194463_ + 3 o p_194464_ + 4 o p_194465_ + a (Ljava/lang/String;)Ljava/util/List; m_119973_ + 0 o p_119974_ + a ([I[III)I m_194455_ + static + 0 o p_194456_ + 1 o p_194457_ + 2 o p_194458_ + 3 o p_194459_ + a (Ljava/lang/String;I)I m_119975_ + 0 o p_119976_ + 1 o p_119977_ + a (Ljava/lang/Object;Ljava/lang/String;)V m_119970_ + 0 o p_119971_ + 1 o p_119972_ + a ()V m_119967_ + a (I)Ljava/lang/String; m_119968_ + 0 o p_119969_ + b ()V m_119984_ +fyn net/minecraft/client/searchtree/package-info +fyo net/minecraft/client/server/IntegratedPlayerList + a f_120001_ + (Lfyp;Lhl;Ldzb;)V + 0 o p_251269_ + 1 o p_250644_ + 2 o p_249022_ + a (Ljava/net/SocketAddress;Lcom/mojang/authlib/GameProfile;)Lsw; m_6418_ + 0 o p_120007_ + 1 o p_120008_ + b ()Lfyp; m_7873_ + b (Laig;)V m_6765_ + 0 o p_120011_ + c ()Lnet/minecraft/server/MinecraftServer; m_7873_ + r ()Lqr; m_6960_ +fyp net/minecraft/client/server/IntegratedServer + n f_120014_ + o f_194466_ + p f_120015_ + q f_120016_ + r f_120017_ + s f_174966_ + t f_120018_ + u f_120019_ + v f_194467_ + ()V + static + (Ljava/lang/Thread;Lenn;Ldyy$c;Laki;Ladk;Ladh;Laip;)V + 0 o p_235248_ + 1 o p_235249_ + 2 o p_235250_ + 3 o p_235251_ + 4 o p_235252_ + 5 o p_235253_ + 6 o p_235254_ + K ()Laoz; m_183471_ + M ()I m_7010_ + N_ ()Z m_6102_ + a (Z)V m_7570_ + 0 o p_120053_ + a (Ljava/util/UUID;)V m_120046_ + 0 o p_120047_ + a ()V m_174968_ + a (Lab;)Lab; m_142424_ + 0 o p_174970_ + a (Lcmj;ZI)Z m_7386_ + 0 o p_120041_ + 1 o p_120042_ + 2 o p_120043_ + a (Lcmj;)V m_7835_ + 0 o p_120039_ + a (Lcom/mojang/authlib/GameProfile;)Z m_7779_ + 0 o p_120045_ + a (Lbyq;)V m_263547_ + 0 o p_263549_ + a (Lo;)V m_7268_ + 0 o p_120051_ + a (Ljava/util/Optional;)V m_263548_ + 0 o p_263550_ + a (Ljava/util/function/BooleanSupplier;)V m_5705_ + 0 o p_120049_ + aS ()Z m_6365_ + aX ()Lcmj; m_142359_ + b (I)I m_7186_ + 0 o p_120056_ + b ()V m_289054_ + c ()Ljava/lang/String; m_235256_ + e ()Z m_7038_ + i ()I m_7022_ + j ()I m_7034_ + k ()Z m_6983_ + l ()Z m_6982_ + m ()I m_7032_ + n ()Z m_6994_ + o ()Z m_6993_ + p ()Z m_6992_ + t ()V m_7041_ + z ()Ljava/io/File; m_6237_ +fyq net/minecraft/client/server/LanServer + a f_120072_ + b f_120073_ + c f_120074_ + (Ljava/lang/String;Ljava/lang/String;)V + 0 o p_120076_ + 1 o p_120077_ + a ()Ljava/lang/String; m_120078_ + b ()Ljava/lang/String; m_120079_ + c ()V m_120080_ +fyr net/minecraft/client/server/LanServerDetection + a f_120081_ + b f_120082_ + ()V + static + ()V +fyr$a net/minecraft/client/server/LanServerDetection$LanServerDetector + a f_120086_ + b f_120087_ + c f_120088_ + (Lfyr$b;)V + 0 o p_120090_ + run ()V run +fyr$b net/minecraft/client/server/LanServerDetection$LanServerList + a f_120092_ + b f_120093_ + ()V + a (Ljava/lang/String;Ljava/net/InetAddress;)V m_120096_ + 0 o p_120097_ + 1 o p_120098_ + a ()Ljava/util/List; m_247578_ +fys net/minecraft/client/server/LanServerPinger + a f_174974_ + b f_174975_ + c f_120101_ + d f_120102_ + e f_174976_ + f f_120103_ + g f_120104_ + h f_120105_ + i f_120106_ + ()V + static + (Ljava/lang/String;Ljava/lang/String;)V + 0 o p_120109_ + 1 o p_120110_ + a (Ljava/lang/String;Ljava/lang/String;)Ljava/lang/String; m_120113_ + static + 0 o p_120114_ + 1 o p_120115_ + a (Ljava/lang/String;)Ljava/lang/String; m_120111_ + static + 0 o p_120112_ + b (Ljava/lang/String;)Ljava/lang/String; m_120116_ + static + 0 o p_120117_ + interrupt ()V interrupt + run ()V run +fyt net/minecraft/client/server/package-info +fyu net/minecraft/client/sounds/AudioStream + a ()Ljavax/sound/sampled/AudioFormat; m_6206_ + a (I)Ljava/nio/ByteBuffer; m_7118_ + 0 o p_120120_ +fyv net/minecraft/client/sounds/ChannelAccess + a f_120121_ + b f_120122_ + c f_120123_ + (Legf;Ljava/util/concurrent/Executor;)V + 0 o p_120125_ + 1 o p_120126_ + a (Ljava/util/function/Consumer;)V m_120137_ + 0 o p_120138_ + a (Legf$c;Ljava/util/concurrent/CompletableFuture;)V m_120130_ + 0 o p_120131_ + 1 o p_120132_ + a ()V m_120127_ + a (Lfyv$a;)Lege; m_174977_ + static + 0 o p_174978_ + a (Legf$c;)Ljava/util/concurrent/CompletableFuture; m_120128_ + 0 o p_120129_ + b (Ljava/util/function/Consumer;)V m_120142_ + 0 o p_120143_ + b ()V m_120139_ + c ()V m_120144_ +fyv$a net/minecraft/client/sounds/ChannelAccess$ChannelHandle + a f_120145_ + b f_120146_ + c f_120147_ + (Lfyv;Lege;)V + 0 o p_120149_ + 1 o p_120150_ + a (Ljava/util/function/Consumer;)V m_120154_ + 0 o p_120155_ + a ()Z m_120151_ + b (Ljava/util/function/Consumer;)V m_120157_ + 0 o p_120158_ + b ()V m_120156_ +fyw net/minecraft/client/sounds/LoopingAudioStream + a f_120159_ + b f_120160_ + c f_120161_ + (Lfyw$a;Ljava/io/InputStream;)V + 0 o p_120163_ + 1 o p_120164_ + a ()Ljavax/sound/sampled/AudioFormat; m_6206_ + a (I)Ljava/nio/ByteBuffer; m_7118_ + 0 o p_120167_ + close ()V close +fyw$a net/minecraft/client/sounds/LoopingAudioStream$AudioStreamProvider + create (Ljava/io/InputStream;)Lfyu; m_120169_ + 0 o p_120170_ +fyw$b net/minecraft/client/sounds/LoopingAudioStream$NoCloseBuffer + (Ljava/io/InputStream;)V + 0 o p_120172_ + close ()V close +fyx net/minecraft/client/sounds/MusicManager + a f_174979_ + b f_120177_ + c f_120178_ + d f_120179_ + e f_120180_ + (Lenn;)V + 0 o p_120182_ + a ()V m_120183_ + a (Lame;)V m_120184_ + 0 o p_120185_ + b (Lame;)V m_278151_ + 0 o p_278295_ + b ()V m_120186_ + c (Lame;)Z m_120187_ + 0 o p_120188_ +fyy net/minecraft/client/sounds/SoundBufferLibrary + a f_120189_ + b f_120190_ + (Lala;)V + 0 o p_248900_ + a (Ljava/util/Collection;)Ljava/util/concurrent/CompletableFuture; m_120198_ + 0 o p_120199_ + a (Lacq;)Ljava/util/concurrent/CompletableFuture; m_120202_ + 0 o p_120203_ + a (Ljava/util/concurrent/CompletableFuture;)V m_120200_ + static + 0 o p_120201_ + a (Lacq;Z)Ljava/util/concurrent/CompletableFuture; m_120204_ + 0 o p_120205_ + 1 o p_120206_ + a ()V m_120193_ + a (I)[Ljava/util/concurrent/CompletableFuture; m_120194_ + static + 0 o p_120195_ + a (Lfxv;)Ljava/util/concurrent/CompletableFuture; m_120196_ + 0 o p_120197_ + b (Lacq;Z)Lfyu; m_244746_ + 0 o p_247959_ + 1 o p_247960_ + b (Lacq;)Ljava/util/concurrent/CompletableFuture; m_120207_ + 0 o p_120208_ + c (Lacq;)Legj; m_174980_ + 0 o p_174981_ +fyz net/minecraft/client/sounds/SoundEngine + A f_120229_ + B f_120230_ + C f_120231_ + D f_120232_ + E f_120233_ + a f_174982_ + b f_194469_ + c f_194470_ + d f_120214_ + e f_120215_ + f f_174983_ + g f_174984_ + h f_174985_ + i f_174986_ + j f_174987_ + k f_120216_ + l f_194471_ + m f_120217_ + n f_120218_ + o f_120219_ + p f_120220_ + q f_120221_ + r f_120222_ + s f_120223_ + t f_120224_ + u f_120225_ + v f_194472_ + w f_194473_ + x f_120226_ + y f_120227_ + z f_120228_ + ()V + static + (Lfzc;Lenr;Lala;)V + 0 o p_120236_ + 1 o p_120237_ + 2 o p_249332_ + a (Ljava/lang/String;)V m_194505_ + 0 o p_194506_ + a (FFLeei;Lege;)V m_194474_ + static + 0 o p_194475_ + 1 o p_194476_ + 2 o p_194477_ + 3 o p_194478_ + a (Z)V m_120302_ + 0 o p_120303_ + a (Lami;)F m_120258_ + 0 o p_120259_ + a (Lfyv$a;)V m_120287_ + static + 0 o p_120288_ + a (Lfxy;)V m_120274_ + 0 o p_120275_ + a (Lfzb;)V m_120295_ + 0 o p_120296_ + a ()V m_120239_ + a (Lfxy;I)V m_120276_ + 0 o p_120277_ + 1 o p_120278_ + a (Lami;F)V m_120260_ + 0 o p_120261_ + 1 o p_120262_ + a (FLami;)F m_235257_ + 0 o p_235258_ + 1 o p_235259_ + a (Lemz;)V m_120270_ + 0 o p_120271_ + a (Legj;Lege;)V m_194493_ + static + 0 o p_194494_ + 1 o p_194495_ + a (FLege;)V m_174988_ + static + 0 o p_174989_ + 1 o p_174990_ + a (Ljava/util/stream/Stream;)V m_194507_ + static + 0 o p_194508_ + a (Lfyv$a;Lfyu;)V m_194502_ + static + 0 o p_194503_ + 1 o p_194504_ + a (Leei;Lorg/joml/Vector3f;Lorg/joml/Vector3f;)V m_252595_ + 0 o p_253358_ + 1 o p_253359_ + 2 o p_253360_ + a (Lfxz;)V m_120282_ + 0 o p_120283_ + a (Lfyu;Lege;)V m_194496_ + static + 0 o p_194497_ + 1 o p_194498_ + a (Lacq;Lami;)V m_120299_ + 0 o p_120300_ + 1 o p_120301_ + a (Lfyv$a;Legj;)V m_194499_ + static + 0 o p_194500_ + 1 o p_194501_ + a (FFLfxy$a;FZZLeei;ZLege;)V m_194479_ + static + 0 o p_194480_ + 1 o p_194481_ + 2 o p_194482_ + 3 o p_194483_ + 4 o p_194484_ + 5 o p_194485_ + 6 o p_194486_ + 7 o p_194487_ + 8 o p_194488_ + a (Lfxv;)V m_120272_ + 0 o p_120273_ + a (Lfxy;Lfyv$a;)V m_120279_ + 0 o p_120280_ + 1 o p_120281_ + b (Lfxy;)Z m_120305_ + 0 o p_120306_ + b (Ljava/util/stream/Stream;)V m_194509_ + static + 0 o p_194510_ + b (Lfzb;)V m_120307_ + 0 o p_120308_ + b ()V m_120304_ + c ()V m_120311_ + c (Lfxy;)V m_120312_ + 0 o p_120313_ + d (Lfxy;)Z m_120315_ + static + 0 o p_120316_ + d ()V m_120314_ + e ()V m_120317_ + e (Lfxy;)Z m_120318_ + static + 0 o p_120319_ + f (Lfxy;)Z m_120321_ + static + 0 o p_120322_ + f ()Ljava/lang/String; m_120320_ + g ()Ljava/util/List; m_194511_ + g (Lfxy;)F m_120324_ + 0 o p_120325_ + h (Lfxy;)F m_120327_ + 0 o p_120328_ + h ()V m_120323_ + i ()Z m_194512_ + j ()V m_120326_ +fyz$a net/minecraft/client/sounds/SoundEngine$DeviceCheckState + a ONGOING + b CHANGE_DETECTED + c NO_CHANGE + d $VALUES + ()V + static + (Ljava/lang/String;I)V + 0 o p_194519_ + 1 o p_194520_ + a ()[Lfyz$a; m_194521_ + static + valueOf (Ljava/lang/String;)Lfyz$a; valueOf + static + 0 o p_194523_ + values ()[Lfyz$a; values + static +fz net/minecraft/commands/arguments/package-info +fza net/minecraft/client/sounds/SoundEngineExecutor + a f_120329_ + b f_120330_ + ()V + a ()V m_120332_ + au ()Ljava/lang/Thread; m_6304_ + b ()Ljava/lang/Thread; m_120334_ + bq ()V m_5667_ + c ()V m_120336_ + d ()Z m_120337_ + e (Ljava/lang/Runnable;)Z m_6362_ + 0 o p_120339_ + f (Ljava/lang/Runnable;)Ljava/lang/Runnable; m_6681_ + 0 o p_120341_ +fzb net/minecraft/client/sounds/SoundEventListener + a (Lfxy;Lfzd;)V m_6985_ + 0 o p_120342_ + 1 o p_120343_ +fzc net/minecraft/client/sounds/SoundManager + a f_120344_ + b f_271442_ + c f_271159_ + d f_271451_ + e f_120345_ + f f_174997_ + g f_120346_ + h f_120347_ + i f_120348_ + j f_120349_ + k f_244170_ + ()V + static + (Lenr;)V + 0 o p_250027_ + a ()Ljava/util/List; m_194525_ + a (Z)V m_120389_ + 0 o p_120390_ + a (Lfxy;)V m_120367_ + 0 o p_120368_ + a (Lakx;Lban;)Lfzc$a; m_5944_ + 0 o p_120356_ + 1 o p_120357_ + a (Lfxv;Lacq;Lala;)Z m_247403_ + static + 0 o p_250396_ + 1 o p_250879_ + 2 o p_248737_ + a (Lfzc$a;Lakx;Lban;)V m_5787_ + 0 o p_120377_ + 1 o p_120378_ + 2 o p_120379_ + a (Lfzb;)V m_120374_ + 0 o p_120375_ + a (Lfxy;I)V m_120369_ + 0 o p_120370_ + 1 o p_120371_ + a (Lacq;)Lfzd; m_120384_ + 0 o p_120385_ + a (Lami;F)V m_120358_ + 0 o p_120359_ + 1 o p_120360_ + a (Lemz;)V m_120361_ + 0 o p_120362_ + a (Ljava/lang/Object;Lakx;Lban;)V m_5787_ + 0 o p_120381_ + 1 o p_120382_ + 2 o p_120383_ + a (Lfxz;)V m_120372_ + 0 o p_120373_ + a (Lacq;Lami;)V m_120386_ + 0 o p_120387_ + 1 o p_120388_ + b (Lfxy;)V m_120399_ + 0 o p_120400_ + b (Lakx;Lban;)Ljava/lang/Object; m_5944_ + 0 o p_120393_ + 1 o p_120394_ + b (Lfzb;)V m_120401_ + 0 o p_120402_ + b ()Ljava/util/Collection; m_120354_ + c (Lfxy;)Z m_120403_ + 0 o p_120404_ + d ()V m_120391_ + e ()V m_120405_ + f ()V m_120406_ + g ()V m_120407_ + h ()Ljava/lang/String; m_120408_ + i ()V m_194526_ +fzc$1 net/minecraft/client/sounds/SoundManager$1 + ()V +fzc$2 net/minecraft/client/sounds/SoundManager$2 + a f_120411_ + ()V + static +fzc$a net/minecraft/client/sounds/SoundManager$Preparations + a f_120413_ + b f_244128_ + ()V + a (Lakx;)V m_245281_ + 0 o p_249271_ + a (Ljava/util/Map;Ljava/util/Map;Lfyz;)V m_245937_ + 0 o p_251229_ + 1 o p_251045_ + 2 o p_250302_ + a (Lacq;Lfxw;)V m_246105_ + 0 o p_250806_ + 1 o p_249632_ +fzc$a$1 net/minecraft/client/sounds/SoundManager$Preparations$1 + a f_120429_ + b f_120430_ + c f_120431_ + (Lfzc$a;Lacq;Lfxv;)V + 0 o p_120433_ + 1 o p_120434_ + 2 o p_120435_ + a (Lfyz;)V m_8054_ + 0 o p_120438_ + a (Lapf;)Lfxv; m_213718_ + 0 o p_235261_ + b (Lapf;)Ljava/lang/Object; m_213718_ + 0 o p_235263_ + e ()I m_7789_ +fzd net/minecraft/client/sounds/WeighedSoundEvents + a f_120441_ + b f_120444_ + (Lacq;Ljava/lang/String;)V + 0 o p_120446_ + 1 o p_120447_ + a (Lfyz;)V m_8054_ + 0 o p_120450_ + a (Lfze;)V m_120451_ + 0 o p_120452_ + a ()Lsw; m_120453_ + a (Lapf;)Lfxv; m_213718_ + 0 o p_235265_ + b (Lapf;)Ljava/lang/Object; m_213718_ + 0 o p_235267_ + e ()I m_7789_ +fze net/minecraft/client/sounds/Weighted + a (Lfyz;)V m_8054_ + 0 o p_120456_ + b (Lapf;)Ljava/lang/Object; m_213718_ + 0 o p_235268_ + e ()I m_7789_ +fzf net/minecraft/client/sounds/package-info +fzg net/minecraft/client/telemetry/ClientTelemetryManager + a f_260680_ + b f_260581_ + c f_260615_ + d f_260661_ + e f_260682_ + f f_260616_ + g f_285581_ + ()V + static + (Lenn;Lcom/mojang/authlib/minecraft/UserApiService;Leoc;)V + 0 o p_261610_ + 1 o p_261552_ + 2 o p_262159_ + a (Lfzo$a;Ljava/lang/String;)V m_260838_ + static + 0 o p_261625_ + 1 o p_261690_ + a (Lfzh;Lcom/mojang/authlib/minecraft/TelemetrySession;Ljava/util/Optional;)V m_261089_ + static + 0 o p_262005_ + 1 o p_261752_ + 2 o p_262038_ + a (Ljava/util/Optional;)V m_260999_ + static + 0 o p_261643_ + a (Ljava/lang/Runnable;)Ljava/lang/Thread; m_260868_ + static + 0 o p_261485_ + a ()Lfzk; m_285963_ + a (ZLjava/time/Duration;Ljava/lang/String;)Lfzp; m_285995_ + 0 o p_286373_ + 1 o p_286752_ + 2 o p_286568_ + a (Ljava/util/concurrent/CompletableFuture;Lcom/mojang/authlib/minecraft/TelemetrySession;Lfzl;Ljava/util/function/Consumer;)V m_260889_ + 0 o p_261935_ + 1 o p_261928_ + 2 o p_261827_ + 3 o p_261818_ + b (Ljava/util/Optional;)Ljava/util/concurrent/CompletionStage; m_260879_ + static + 0 o p_261737_ + b (Lfzo$a;Ljava/lang/String;)V m_260841_ + static + 0 o p_261875_ + 1 o p_261810_ + b ()Ljava/nio/file/Path; m_260914_ + c ()Lfzk; m_261052_ + close ()V close + d ()Ljava/util/concurrent/CompletableFuture; m_260933_ + static +fzh net/minecraft/client/telemetry/TelemetryEventInstance + a f_260534_ + b f_260460_ + c f_260563_ + ()V + static + (Lfzl;Lfzo;)V + 0 o f_260460_ + 1 o f_260563_ + a (Lcom/mojang/authlib/minecraft/TelemetrySession;)Lcom/mojang/authlib/minecraft/TelemetryEvent; m_261105_ + 0 o p_261645_ + a (Lfzl;Lfzn;)V m_260898_ + static + 0 o p_261904_ + 1 o p_261699_ + a ()Lfzl; f_260460_ + b ()Lfzo; f_260563_ + equals (Ljava/lang/Object;)Z equals + 0 o p_262133_ + hashCode ()I hashCode + toString ()Ljava/lang/String; toString +fzi net/minecraft/client/telemetry/TelemetryEventLog + a f_260494_ + b f_260709_ + c f_260691_ + ()V + static + (Ljava/nio/channels/FileChannel;Ljava/util/concurrent/Executor;)V + 0 o p_261731_ + 1 o p_262010_ + a (Lfzh;)V m_261271_ + 0 o p_261508_ + a ()Lfzj; m_261088_ + b (Lfzh;)V m_260910_ + 0 o p_261705_ + b ()V m_261095_ + close ()V close +fzj net/minecraft/client/telemetry/TelemetryEventLogger + log (Lfzh;)V m_260877_ + 0 o p_261961_ +fzk net/minecraft/client/telemetry/TelemetryEventSender + a f_260501_ + ()V + static + a (Ljava/util/function/Consumer;Lfzl;Ljava/util/function/Consumer;)V m_261129_ + 0 o p_262000_ + 1 o p_261694_ + 2 o p_261504_ + a (Lfzl;Ljava/util/function/Consumer;)V m_260869_ + static + 0 o p_261883_ + 1 o p_261730_ + a (Ljava/util/function/Consumer;Ljava/util/function/Consumer;Lfzo$a;)V m_261277_ + static + 0 o p_261555_ + 1 o p_262125_ + 2 o p_261539_ + decorate (Ljava/util/function/Consumer;)Lfzk; m_261189_ + 0 o p_261897_ + send (Lfzl;Ljava/util/function/Consumer;)V m_260919_ + 0 o p_261620_ + 1 o p_262079_ +fzl net/minecraft/client/telemetry/TelemetryEventType + a f_260690_ + b f_260573_ + c f_260620_ + d f_260600_ + e f_260729_ + f f_285568_ + g f_285589_ + h f_260686_ + i f_260446_ + j f_260564_ + k f_260629_ + l f_260654_ + m f_260492_ + n f_260473_ + o f_260708_ + ()V + static + (Ljava/lang/String;Ljava/lang/String;Ljava/util/List;Z)V + 0 o p_261787_ + 1 o p_262121_ + 2 o p_261987_ + 3 o p_261511_ + a (Ljava/lang/String;Ljava/lang/String;)Lfzl$a; m_261309_ + static + 0 o p_261734_ + 1 o p_261807_ + a ()Ljava/lang/String; m_260927_ + a (Ljava/lang/String;)Ltj; m_260811_ + 0 o p_261909_ + a (Lfzn;)Z m_260992_ + 0 o p_262037_ + a (Lcom/mojang/authlib/minecraft/TelemetrySession;Lfzo;)Lcom/mojang/authlib/minecraft/TelemetryEvent; m_261110_ + 0 o p_262179_ + 1 o p_262018_ + a (Lfzo;)Lfzh; m_261291_ + 0 o p_261533_ + b ()Ljava/util/List; m_261184_ + b (Ljava/lang/String;)Lcom/mojang/serialization/DataResult; m_274009_ + static + 0 o p_274719_ + c ()Lcom/mojang/serialization/Codec; m_261283_ + c (Ljava/lang/String;)Ljava/lang/String; m_274010_ + static + 0 o p_274720_ + d ()Z m_260839_ + e ()Ltj; m_261290_ + f ()Ltj; m_260935_ + g ()Ljava/util/List; m_261115_ + static + toString ()Ljava/lang/String; toString +fzl$a net/minecraft/client/telemetry/TelemetryEventType$Builder + a f_260469_ + b f_260516_ + c f_260674_ + d f_260544_ + (Ljava/lang/String;Ljava/lang/String;)V + 0 o p_261797_ + 1 o p_261777_ + a (Lfzn;)Lfzl$a; m_261219_ + 0 o p_261756_ + a ()Lfzl$a; m_260803_ + a (Ljava/util/List;)Lfzl$a; m_261244_ + 0 o p_261497_ + b ()Lfzl; m_260878_ +fzm net/minecraft/client/telemetry/TelemetryLogManager + a f_260574_ + b f_260596_ + c f_260510_ + d f_260465_ + e f_260526_ + ()V + static + (Lazz;)V + 0 o p_261728_ + a (Ljava/nio/file/Path;)Ljava/util/concurrent/CompletableFuture; m_261252_ + static + 0 o p_262078_ + a ()Ljava/util/concurrent/CompletableFuture; m_260856_ + a (Ljava/util/Optional;)V m_260905_ + static + 0 o p_261871_ + b (Ljava/nio/file/Path;)Ljava/util/Optional; m_261065_ + static + 0 o p_261958_ + b (Ljava/util/Optional;)Ljava/util/Optional; m_261021_ + static + 0 o p_262106_ + b ()Ljava/util/Optional; m_260940_ + close ()V close +fzn net/minecraft/client/telemetry/TelemetryProperty + A f_285649_ + B f_285586_ + C f_285629_ + D f_285565_ + E f_285625_ + F f_260687_ + G f_260588_ + H f_260706_ + I f_260625_ + J f_260684_ + a f_260659_ + b f_260475_ + c f_260530_ + d f_260597_ + e f_260441_ + f f_260586_ + g f_260562_ + h f_285658_ + i f_260511_ + j f_260499_ + k f_260635_ + l f_260453_ + m f_260726_ + n f_260704_ + o f_285634_ + p f_260452_ + q f_260638_ + r f_260557_ + s f_260713_ + t f_260645_ + u f_260649_ + v f_260683_ + w f_260700_ + x f_260571_ + y f_260437_ + z f_285605_ + ()V + static + (Ljava/lang/String;Ljava/lang/String;Lcom/mojang/serialization/Codec;Lfzn$a;)V + 0 o f_260687_ + 1 o f_260588_ + 2 o f_260706_ + 3 o f_260625_ + a (Lfzo;Lcom/mojang/authlib/minecraft/TelemetryPropertyContainer;)V m_261124_ + 0 o p_262111_ + 1 o p_262082_ + a (Ljava/lang/String;Ljava/lang/String;)Lfzn; m_261193_ + static + 0 o p_261605_ + 1 o p_262064_ + a (Lcom/mojang/authlib/minecraft/TelemetryPropertyContainer;Ljava/lang/String;Lfzn$c;)V m_260816_ + static + 0 o p_261518_ + 1 o p_262138_ + 2 o p_262085_ + a (Ljava/lang/String;Ljava/lang/String;Lcom/mojang/serialization/Codec;Lfzn$a;)Lfzn; m_261147_ + static + 0 o p_262052_ + 1 o p_261851_ + 2 o p_261617_ + 3 o p_261478_ + a (Lcom/mojang/authlib/minecraft/TelemetryPropertyContainer;Ljava/lang/String;Lit/unimi/dsi/fastutil/longs/LongList;)V m_260862_ + static + 0 o p_261674_ + 1 o p_262049_ + 2 o p_262118_ + a (Lcom/mojang/authlib/minecraft/TelemetryPropertyContainer;Ljava/lang/String;Ljava/util/UUID;)V m_261145_ + static + 0 o p_261704_ + 1 o p_261590_ + 2 o p_261975_ + a (Lcom/mojang/authlib/minecraft/TelemetryPropertyContainer;Ljava/lang/String;Lfzr$a;)V m_285707_ + static + 0 o p_286179_ + 1 o p_286180_ + 2 o p_286181_ + a (Lcom/mojang/authlib/minecraft/TelemetryPropertyContainer;Ljava/lang/String;Ljava/time/Instant;)V m_261080_ + static + 0 o p_261517_ + 1 o p_261626_ + 2 o p_261868_ + a (Lcom/mojang/authlib/minecraft/TelemetryPropertyContainer;Ljava/lang/String;Lfzn$b;)V m_260806_ + static + 0 o p_261849_ + 1 o p_262092_ + 2 o p_261574_ + a ()Ltj; m_261229_ + b (Ljava/lang/String;Ljava/lang/String;)Lfzn; m_261074_ + static + 0 o p_261570_ + 1 o p_261611_ + b ()Ljava/lang/String; f_260687_ + c ()Ljava/lang/String; f_260588_ + c (Ljava/lang/String;Ljava/lang/String;)Lfzn; m_261234_ + static + 0 o p_262077_ + 1 o p_261580_ + d (Ljava/lang/String;Ljava/lang/String;)Lfzn; m_286063_ + static + 0 o p_286489_ + 1 o p_286616_ + d ()Lcom/mojang/serialization/Codec; f_260706_ + e (Ljava/lang/String;Ljava/lang/String;)Lfzn; m_260851_ + static + 0 o p_261558_ + 1 o p_261707_ + e ()Lfzn$a; f_260625_ + equals (Ljava/lang/Object;)Z equals + 0 o p_261543_ + f (Ljava/lang/String;Ljava/lang/String;)Lfzn; m_285885_ + static + 0 o p_286636_ + 1 o p_286769_ + g (Ljava/lang/String;Ljava/lang/String;)Lfzn; m_261255_ + static + 0 o p_262055_ + 1 o p_261726_ + hashCode ()I hashCode + toString ()Ljava/lang/String; toString +fzn$a net/minecraft/client/telemetry/TelemetryProperty$Exporter + apply (Lcom/mojang/authlib/minecraft/TelemetryPropertyContainer;Ljava/lang/String;Ljava/lang/Object;)V m_261109_ + 0 o p_261934_ + 1 o p_261962_ + 2 o p_262012_ +fzn$b net/minecraft/client/telemetry/TelemetryProperty$GameMode + a SURVIVAL + b CREATIVE + c ADVENTURE + d SPECTATOR + e HARDCORE + f f_260532_ + g f_260535_ + h f_260720_ + i $VALUES + ()V + static + (Ljava/lang/String;ILjava/lang/String;I)V + 0 o p_261902_ + 1 o p_261544_ + 2 o p_261661_ + 3 o p_261545_ + a ()I m_261006_ + b ()[Lfzn$b; m_260807_ + static + c ()Ljava/lang/String; m_7912_ + valueOf (Ljava/lang/String;)Lfzn$b; valueOf + static + 0 o p_262058_ + values ()[Lfzn$b; values + static +fzn$c net/minecraft/client/telemetry/TelemetryProperty$ServerType + a REALM + b LOCAL + c OTHER + d f_260675_ + e f_260545_ + f $VALUES + ()V + static + (Ljava/lang/String;ILjava/lang/String;)V + 0 o p_261983_ + 1 o p_262150_ + 2 o p_261499_ + a ()[Lfzn$c; m_261195_ + static + c ()Ljava/lang/String; m_7912_ + valueOf (Ljava/lang/String;)Lfzn$c; valueOf + static + 0 o p_262157_ + values ()[Lfzn$c; values + static +fzo net/minecraft/client/telemetry/TelemetryPropertyMap + a f_260483_ + (Ljava/util/Map;)V + 0 o p_262135_ + a (Ljava/util/List;)Lcom/mojang/serialization/Codec; m_261042_ + static + 0 o p_262139_ + a ()Lfzo$a; m_261098_ + static + a (Lfzn;)Ljava/lang/Object; m_260858_ + 0 o p_261667_ + b ()Ljava/util/Set; m_260904_ + toString ()Ljava/lang/String; toString +fzo$1 net/minecraft/client/telemetry/TelemetryPropertyMap$1 + a f_260681_ + (Ljava/util/List;)V + 0 o p_261632_ + a (Lfzo;Lcom/mojang/serialization/RecordBuilder;Lfzn;)Lcom/mojang/serialization/RecordBuilder; m_260915_ + 0 o p_262128_ + 1 o p_261947_ + 2 o p_261911_ + a (Lfzn;Lfzo$a;Ljava/lang/Object;)Lfzo$a; m_260959_ + static + 0 o p_262084_ + 1 o p_262028_ + 2 o p_261796_ + a (Lfzo;Lcom/mojang/serialization/DynamicOps;Lcom/mojang/serialization/RecordBuilder;)Lcom/mojang/serialization/RecordBuilder; encode + 0 o p_261525_ + 1 o p_262068_ + 2 o p_261850_ + a (Lcom/mojang/serialization/DataResult;Lcom/mojang/serialization/DynamicOps;Lcom/mojang/serialization/MapLike;Lfzn;)Lcom/mojang/serialization/DataResult; m_261041_ + 0 o p_261892_ + 1 o p_261859_ + 2 o p_261668_ + 3 o p_261627_ + decode (Lcom/mojang/serialization/DynamicOps;Lcom/mojang/serialization/MapLike;)Lcom/mojang/serialization/DataResult; decode + 0 o p_261767_ + 1 o p_262176_ + encode (Ljava/lang/Object;Lcom/mojang/serialization/DynamicOps;Lcom/mojang/serialization/RecordBuilder;)Lcom/mojang/serialization/RecordBuilder; encode + 0 o p_261761_ + 1 o p_262165_ + 2 o p_262134_ + keys (Lcom/mojang/serialization/DynamicOps;)Ljava/util/stream/Stream; keys + 0 o p_261746_ +fzo$a net/minecraft/client/telemetry/TelemetryPropertyMap$Builder + a f_260436_ + ()V + a ()Lfzo; m_260981_ + a (Lfzn;Ljava/lang/Object;)Lfzo$a; m_261137_ + 0 o p_261681_ + 1 o p_262093_ + a (Lfzo;)Lfzo$a; m_260832_ + 0 o p_261779_ + b (Lfzn;Ljava/lang/Object;)Lfzo$a; m_285763_ + 0 o p_286534_ + 1 o p_286699_ +fzp net/minecraft/client/telemetry/WorldSessionTelemetryManager + a f_260685_ + b f_260450_ + c f_260570_ + d f_260593_ + e f_260578_ + f f_260533_ + (Lfzk;ZLjava/time/Duration;Ljava/lang/String;)V + 0 o p_286529_ + 1 o p_286429_ + 2 o p_286727_ + 3 o p_286633_ + a (Ljava/lang/String;)V m_260918_ + 0 o p_261520_ + a (Lfzo$a;)V m_260912_ + 0 o p_261981_ + a ()V m_261056_ + a (Lcmm;Lae;)V m_286034_ + 0 o p_286825_ + 1 o p_286627_ + a (J)V m_261206_ + 0 o p_261878_ + a (Lcmj;Z)V m_260888_ + 0 o p_261768_ + 1 o p_261669_ + a (Lacq;JLfzo$a;)V m_285708_ + static + 0 o p_286182_ + 1 o p_286183_ + 2 o p_286184_ + b ()V m_261141_ + c ()V m_261027_ +fzq net/minecraft/client/telemetry/events/AggregatedTelemetryEvent + a f_260549_ + b f_260454_ + c f_260572_ + d f_260520_ + e f_260699_ + ()V + a ()V m_260947_ + a (Lfzk;)V m_263206_ + 0 o p_263410_ + b (Lfzk;)V m_260819_ + 0 o p_263328_ + b ()Z m_261168_ + c ()Z m_261228_ + d ()V m_261217_ + e ()I m_261091_ + f ()V m_260835_ +fzr net/minecraft/client/telemetry/events/GameLoadTimesEvent + a f_285635_ + b f_285561_ + c f_285636_ + d f_285659_ + e f_285644_ + ()V + static + (Lcom/google/common/base/Ticker;)V + 0 o p_286506_ + a (Lfzo$a;)V m_285883_ + 0 o p_286285_ + a (Lfzn;Ljava/util/function/Function;)V m_285937_ + 0 o p_286311_ + 1 o p_286454_ + a (Lfzo$a;J)V m_285921_ + static + 0 o p_286473_ + 1 o p_286872_ + a (Lcom/google/common/base/Stopwatch;Lfzn;)Lcom/google/common/base/Stopwatch; m_285762_ + static + 0 o p_286705_ + 1 o p_286421_ + a (Lfzn;Lcom/google/common/base/Stopwatch;)V m_285977_ + 0 o p_286396_ + 1 o p_286822_ + a (Lfzo$a;Lfzn;Lcom/google/common/base/Stopwatch;)V m_285850_ + static + 0 o p_286557_ + 1 o p_286804_ + 2 o p_286275_ + a (J)V m_286069_ + 0 o p_286847_ + a (Lfzk;)V m_286019_ + 0 o p_286524_ + a (Lfzn;)V m_285833_ + 0 o p_286394_ + b (Lfzn;)V m_285901_ + 0 o p_286634_ + c (Lfzn;)Lcom/google/common/base/Stopwatch; m_286017_ + 0 o p_286494_ +fzr$a net/minecraft/client/telemetry/events/GameLoadTimesEvent$Measurement + a f_285618_ + b f_285578_ + ()V + static + (I)V + 0 o f_285578_ + a (Lfzr$a;)Ljava/lang/Integer; m_285895_ + static + 0 o p_286736_ + a ()I f_285578_ + equals (Ljava/lang/Object;)Z equals + 0 o p_286789_ + hashCode ()I hashCode + toString ()Ljava/lang/String; toString +fzs net/minecraft/client/telemetry/events/PerformanceMetricsEvent + a f_260536_ + b f_260632_ + c f_260487_ + d f_260646_ + ()V + static + ()V + a (Lfzo$a;)V m_261179_ + 0 o p_261568_ + a (Lfzk;)V m_263206_ + 0 o p_263321_ + a (J)J m_261284_ + static + 0 o p_261471_ + b (Lfzk;)V m_260819_ + 0 o p_261872_ + f ()V m_260835_ + g ()V m_260818_ + h ()V m_261164_ +fzt net/minecraft/client/telemetry/events/WorldLoadEvent + a f_260710_ + b f_260554_ + c f_260599_ + d f_285620_ + (Ljava/lang/String;)V + 0 o p_286661_ + a (Lfzo$a;)V m_261131_ + 0 o p_261869_ + a (Ljava/lang/String;)V m_261084_ + 0 o p_261964_ + a (Lfzk;)Z m_263210_ + 0 o p_263325_ + a ()Lfzn$c; m_261317_ + a (Lcmj;Z)V m_260799_ + 0 o p_261852_ + 1 o p_261831_ + b (Lfzo$a;)V m_285709_ + 0 o p_286185_ +fzt$1 net/minecraft/client/telemetry/events/WorldLoadEvent$1 + a f_260506_ + ()V + static +fzu net/minecraft/client/telemetry/events/WorldLoadTimesEvent + a f_260580_ + b f_260669_ + (ZLjava/time/Duration;)V + 0 o p_262182_ + 1 o p_261732_ + a (Lfzo$a;)V m_261266_ + 0 o p_261740_ + a (Lfzk;)V m_261125_ + 0 o p_261879_ +fzv net/minecraft/client/telemetry/events/WorldUnloadEvent + a f_263131_ + b f_260539_ + c f_260639_ + d f_260583_ + ()V + a (Ljava/time/Instant;Lfzo$a;)V m_261297_ + 0 o p_262098_ + 1 o p_261597_ + a (Lfzk;Ljava/time/Instant;)V m_260890_ + 0 o p_261469_ + 1 o p_261953_ + a ()V m_263234_ + a (J)V m_260941_ + 0 o p_261780_ + a (Lfzk;)V m_261287_ + 0 o p_262088_ + a (Ljava/time/Instant;)I m_260990_ + 0 o p_261735_ +fzw net/minecraft/client/telemetry/events/package-info +fzx net/minecraft/client/telemetry/package-info +fzy net/minecraft/client/tutorial/BundleTutorial + a f_174999_ + b f_175000_ + c f_175001_ + (Lgaf;Lenr;)V + 0 o p_175003_ + 1 o p_175004_ + a ()V m_175005_ + a (Lcfz;Lcfz;Lcbn;)V m_175006_ + 0 o p_175007_ + 1 o p_175008_ + 2 o p_175009_ + b ()V m_175010_ +fzz net/minecraft/client/tutorial/CompletedTutorialStepInstance + (Lgaf;)V + 0 o p_120459_ +g com/mojang/math/MethodsReturnNonnullByDefault +ga net/minecraft/commands/arguments/selector/EntitySelector + a f_175099_ + b f_260598_ + c f_175100_ + d f_121111_ + e f_121112_ + f f_121113_ + g f_121114_ + h f_121115_ + i f_121116_ + j f_121117_ + k f_121118_ + l f_121119_ + m f_121120_ + n f_121121_ + o f_121122_ + p f_121123_ + ()V + static + (IZZLjava/util/function/Predicate;Lcj$c;Ljava/util/function/Function;Leed;Ljava/util/function/BiConsumer;ZLjava/lang/String;Ljava/util/UUID;Lbfn;Z)V + 0 o p_121125_ + 1 o p_121126_ + 2 o p_121127_ + 3 o p_121128_ + 4 o p_121129_ + 5 o p_121130_ + 6 o p_121131_ + 7 o p_121132_ + 8 o p_121133_ + 9 o p_121134_ + 10 o p_121135_ + 11 o p_121136_ + 12 o p_121137_ + a (Lds;)Lbfj; m_121139_ + 0 o p_121140_ + a (Leed;Lbfj;)Z m_121141_ + static + 0 o p_121142_ + 1 o p_121143_ + a (Lds;Lbfj;)Z m_244752_ + static + 0 o p_247980_ + 1 o p_247981_ + a ()I m_121138_ + a (Ljava/util/List;)Lsw; m_175103_ + static + 0 o p_175104_ + a (Ljava/util/List;Laif;Leei;Ljava/util/function/Predicate;)V m_121154_ + 0 o p_121155_ + 1 o p_121156_ + 2 o p_121157_ + 3 o p_121158_ + a (Leei;Lbfj;)Z m_121146_ + 0 o p_121147_ + 1 o p_121148_ + a (Leei;Ljava/util/List;)Ljava/util/List; m_121149_ + 0 o p_121150_ + 1 o p_121151_ + a (Leei;)Ljava/util/function/Predicate; m_121144_ + 0 o p_121145_ + b (Leei;Ljava/util/List;)V m_260772_ + static + 0 o p_261404_ + 1 o p_261405_ + b (Lds;)Ljava/util/List; m_121160_ + 0 o p_121161_ + b ()Z m_121159_ + c (Lds;)Laig; m_121163_ + 0 o p_121164_ + c ()Z m_121162_ + d ()Z m_121165_ + d (Lds;)Ljava/util/List; m_121166_ + 0 o p_121167_ + e (Lds;)V m_121168_ + 0 o p_121169_ + e ()Z m_175105_ + f ()I m_261276_ + f (Lds;)Ljava/util/List; m_245733_ + 0 o p_251934_ +ga$1 net/minecraft/commands/arguments/selector/EntitySelector$1 + ()V + a (Ljava/lang/Object;)Ljava/lang/Object; m_141992_ + 0 o p_175111_ + a ()Ljava/lang/Class; m_142225_ + a (Lbfj;)Lbfj; m_141992_ + 0 o p_175109_ +gaa net/minecraft/client/tutorial/CraftPlanksTutorialStep + a f_175011_ + b f_120460_ + c f_120461_ + d f_120462_ + e f_120463_ + f f_120464_ + ()V + static + (Lgaf;)V + 0 o p_120467_ + a (Lfiy;Lanl;)Z m_205662_ + static + 0 o p_205663_ + 1 o p_205664_ + a ()V m_7737_ + a (Lcfz;)V m_6967_ + 0 o p_120470_ + b ()V m_7736_ +gab net/minecraft/client/tutorial/FindTreeTutorialStepInstance + a f_175012_ + b f_120489_ + c f_120490_ + d f_120491_ + e f_120492_ + f f_120493_ + ()V + static + (Lgaf;)V + 0 o p_120496_ + a ()V m_7737_ + a (Lfew;Leeg;)V m_7554_ + 0 o p_120501_ + 1 o p_120502_ + a (Lcfz;)V m_6967_ + 0 o p_120499_ + a (Lfiy;)Z m_120503_ + static + 0 o p_120504_ + b (Lfiy;)Z m_235271_ + static + 0 o p_235272_ + b (Lcfz;)Z m_235269_ + static + 0 o p_235270_ + b ()V m_7736_ +gac net/minecraft/client/tutorial/MovementTutorialStepInstance + a f_175013_ + b f_175014_ + c f_175015_ + d f_175016_ + e f_175017_ + f f_120506_ + g f_120507_ + h f_120508_ + i f_120509_ + j f_120510_ + k f_120511_ + l f_120512_ + m f_120513_ + n f_120514_ + o f_120515_ + p f_120516_ + q f_120517_ + r f_120518_ + s f_120519_ + ()V + static + (Lgaf;)V + 0 o p_120522_ + a ()V m_7737_ + a (Lfiw;)V m_6484_ + 0 o p_120528_ + a (DD)V m_6420_ + 0 o p_120525_ + 1 o p_120526_ + b ()V m_7736_ +gad net/minecraft/client/tutorial/OpenInventoryTutorialStep + a f_175018_ + b f_120530_ + c f_120531_ + d f_120532_ + e f_120533_ + f f_120534_ + ()V + static + (Lgaf;)V + 0 o p_120537_ + a ()V m_7737_ + b ()V m_7736_ + c ()V m_7744_ +gae net/minecraft/client/tutorial/PunchTreeTutorialStepInstance + a f_175019_ + b f_120541_ + c f_120542_ + d f_120543_ + e f_120544_ + f f_120545_ + g f_120546_ + ()V + static + (Lgaf;)V + 0 o p_120549_ + a ()V m_7737_ + a (Lcfz;)V m_6967_ + 0 o p_120552_ + a (Lfew;Lgu;Ldcb;F)V m_7464_ + 0 o p_120554_ + 1 o p_120555_ + 2 o p_120556_ + 3 o p_120557_ + b ()V m_7736_ +gaf net/minecraft/client/tutorial/Tutorial + a f_120559_ + b f_120560_ + c f_120561_ + d f_175020_ + (Lenn;Lenr;)V + 0 o p_175022_ + 1 o p_175023_ + a (Leri;Lgaf$a;)Z m_120575_ + static + 0 o p_120576_ + 1 o p_120577_ + a (Ljava/lang/String;)Lsw; m_120592_ + static + 0 o p_120593_ + a (Lcfz;Lcfz;Lcbn;)V m_175024_ + 0 o p_175025_ + 1 o p_175026_ + 2 o p_175027_ + a (Lcfz;)V m_120568_ + 0 o p_120569_ + a (Lfew;Lgu;Ldcb;F)V m_120581_ + 0 o p_120582_ + 1 o p_120583_ + 2 o p_120584_ + 3 o p_120585_ + a (DD)V m_120565_ + 0 o p_120566_ + 1 o p_120567_ + a (Leri;I)V m_120572_ + 0 o p_120573_ + 1 o p_120574_ + a (Leri;)V m_120570_ + 0 o p_120571_ + a ()V m_120564_ + a (Lfiw;)V m_120586_ + 0 o p_120587_ + a (Lfew;Leeg;)V m_120578_ + 0 o p_120579_ + 1 o p_120580_ + a (Lgah;)V m_120588_ + 0 o p_120589_ + b ()V m_120594_ + c ()V m_120595_ + d ()V m_120596_ + e ()Lenn; m_120597_ + f ()Z m_175028_ +gaf$a net/minecraft/client/tutorial/Tutorial$TimedToast + a f_120599_ + b f_120600_ + c f_120601_ + (Leri;I)V + 0 o p_120603_ + 1 o p_120604_ + a ()Z m_120609_ +gag net/minecraft/client/tutorial/TutorialStepInstance + a ()V m_7737_ + a (Lfiw;)V m_6484_ + 0 o p_120623_ + a (Lfew;Leeg;)V m_7554_ + 0 o p_120617_ + 1 o p_120618_ + a (Lcfz;)V m_6967_ + 0 o p_120616_ + a (Lfew;Lgu;Ldcb;F)V m_7464_ + 0 o p_120619_ + 1 o p_120620_ + 2 o p_120621_ + 3 o p_120622_ + a (DD)V m_6420_ + 0 o p_120614_ + 1 o p_120615_ + b ()V m_7736_ + c ()V m_7744_ +gah net/minecraft/client/tutorial/TutorialSteps + a MOVEMENT + b FIND_TREE + c PUNCH_TREE + d OPEN_INVENTORY + e CRAFT_PLANKS + f NONE + g f_120630_ + h f_120631_ + i $VALUES + ()V + static + (Ljava/lang/String;ILjava/lang/String;Ljava/util/function/Function;)V + 0 o p_120635_ + 1 o p_120636_ + 2 o p_120637_ + 3 o p_120638_ + a (Lgaf;)Lgag; m_120640_ + 0 o p_120641_ + a ()Ljava/lang/String; m_120639_ + a (Ljava/lang/String;)Lgah; m_120642_ + static + 0 o p_120643_ + b ()[Lgah; m_175029_ + static + valueOf (Ljava/lang/String;)Lgah; valueOf + static + 0 o p_120645_ + values ()[Lgah; values + static +gai net/minecraft/client/tutorial/package-info +gaj net/minecraft/realms/DisconnectedRealmsScreen + G f_120651_ + a f_120648_ + b f_120649_ + c f_120650_ + (Leuq;Lsw;Lsw;)V + 0 o p_120653_ + 1 o p_120654_ + 2 o p_120655_ + a (Lenn;Lepi;)V m_120661_ + 0 o p_120662_ + 1 o p_120663_ + a (Leox;IIF)V m_88315_ + 0 o p_282959_ + 1 o p_120658_ + 2 o p_120659_ + 3 o p_120660_ + au_ ()Lsw; m_142562_ + aw_ ()V m_7379_ + b ()V m_7856_ +gak net/minecraft/realms/RealmsConnect + a f_120687_ + b f_120688_ + c f_120689_ + d f_120690_ + ()V + static + (Leuq;)V + 0 o p_120693_ + a ()V m_120694_ + a (Lejq;Lfga;)V m_175031_ + 0 o p_175032_ + 1 o p_175033_ + b ()V m_120704_ +gak$1 net/minecraft/realms/RealmsConnect$1 + a f_120710_ + b f_120711_ + c f_120712_ + d f_120713_ + e f_120714_ + (Lgak;Ljava/lang/String;Ljava/lang/String;ILenn;Lejq;)V + 0 o p_254185_ + 1 o p_254377_ + 2 o p_253773_ + 3 o p_254078_ + 4 o p_253664_ + 5 o p_254303_ + a (Lenn;Lgaj;)V m_120727_ + static + 0 o p_120728_ + 1 o p_120729_ + a (Lsw;)V m_120725_ + static + 0 o p_120726_ + run ()V run +gal net/minecraft/realms/RealmsLabel + a f_120731_ + b f_120732_ + c f_120733_ + d f_120734_ + (Lsw;III)V + 0 o p_120736_ + 1 o p_120737_ + 2 o p_120738_ + 3 o p_120739_ + a ()Lsw; m_175034_ + a (Leox;IIF)V m_88315_ + 0 o p_281597_ + 1 o p_282874_ + 2 o p_281694_ + 3 o p_282363_ +gam net/minecraft/realms/RealmsObjectSelectionList + (IIIII)V + 0 o p_120745_ + 1 o p_120746_ + 2 o p_120747_ + 3 o p_120748_ + 4 o p_120749_ + a (I)V m_7109_ + 0 o p_120750_ + a ()I m_5775_ + a (Leqc$a;)I m_7085_ + 0 o p_120757_ + a (Ljava/util/Collection;)V m_5988_ + 0 o p_120759_ + a (IIDDII)V m_7980_ + 0 o p_120751_ + 1 o p_120752_ + 2 o p_120753_ + 3 o p_120754_ + 4 o p_120755_ + 5 o p_275741_ + b ()I m_5759_ + b (Lepc$a;)I m_7085_ + 0 o p_120761_ + c ()I m_5756_ + g (I)I m_7610_ + 0 o p_120766_ + j (I)V m_120767_ + 0 o p_120768_ + k ()I m_5773_ + o ()I m_5747_ + v ()V m_7178_ +gan net/minecraft/realms/RealmsScreen + A f_175043_ + C f_175044_ + D f_175045_ + E f_175046_ + F f_238765_ + a f_175057_ + k f_175058_ + l f_175059_ + m f_175060_ + n f_175061_ + o f_175062_ + p f_175063_ + q f_175064_ + r f_175065_ + s f_175066_ + t f_175067_ + u f_175068_ + v f_175069_ + w f_175070_ + x f_175040_ + y f_175041_ + z f_175042_ + (Lsw;)V + 0 o p_175072_ + a (Lgal;)Lgal; m_175073_ + 0 o p_175074_ + h (I)I m_120774_ + static + 0 o p_120775_ + l ()Lsw; m_175075_ +gao net/minecraft/realms/RepeatedNarrator + a f_120785_ + b f_120786_ + (Ljava/time/Duration;)V + 0 o p_120788_ + a (Lenf;Lsw;)V m_240428_ + 0 o p_240528_ + 1 o p_240604_ + a (Lsw;Lgao$a;)Lgao$a; m_175078_ + 0 o p_175079_ + 1 o p_175080_ +gao$a net/minecraft/realms/RepeatedNarrator$Params + a f_120794_ + b f_120795_ + (Lsw;Lcom/google/common/util/concurrent/RateLimiter;)V + 0 o p_175082_ + 1 o p_175083_ +gap net/minecraft/realms/package-info +gb net/minecraft/commands/arguments/selector/EntitySelectorParser + A f_121205_ + B f_121206_ + C f_121207_ + D f_121208_ + E f_121209_ + F f_121210_ + G f_121211_ + H f_121212_ + I f_121213_ + J f_121214_ + K f_121215_ + L f_121170_ + M f_121171_ + N f_121172_ + O f_121173_ + P f_121174_ + Q f_121175_ + R f_121176_ + S f_121177_ + T f_121178_ + U f_121179_ + V f_121180_ + W f_121181_ + X f_121182_ + Y f_121183_ + Z f_121184_ + a f_175112_ + aa f_121185_ + ab f_121186_ + ac f_121187_ + ad f_121188_ + ae f_121189_ + b f_175113_ + c f_175114_ + d f_175115_ + e f_121190_ + f f_121191_ + g f_121192_ + h f_121193_ + i f_121194_ + j f_121195_ + k f_121197_ + l f_121198_ + m f_121199_ + n f_121200_ + o f_175116_ + p f_175117_ + q f_175118_ + r f_175119_ + s f_175120_ + t f_175121_ + u f_175122_ + v f_175123_ + w f_121201_ + x f_121202_ + y f_121203_ + z f_121204_ + ()V + static + (Lcom/mojang/brigadier/StringReader;Z)V + 0 o p_121220_ + 1 o p_121221_ + (Lcom/mojang/brigadier/StringReader;)V + 0 o p_121218_ + A ()Z m_121222_ + B ()Z m_121223_ + C ()Z m_175124_ + D ()V m_121224_ + E ()Z m_121225_ + F ()Z m_121226_ + G ()Z m_121227_ + H ()Z m_121228_ + I ()V m_121229_ + a (Z)V m_121279_ + 0 o p_121280_ + a (Leei;Lbfj;Lbfj;)I m_175129_ + static + 0 o p_175130_ + 1 o p_175131_ + 2 o p_175132_ + a (Ldi;Ljava/util/function/ToDoubleFunction;)Ljava/util/function/Predicate; m_121254_ + 0 o p_121255_ + 1 o p_121256_ + a ()Lga; m_121230_ + a (Ljava/util/function/BiConsumer;)V m_121268_ + 0 o p_121269_ + a (D)V m_121231_ + 0 o p_121232_ + a (Ljava/util/function/ToDoubleFunction;DDLbfj;)Z m_175133_ + static + 0 o p_175134_ + 1 o p_175135_ + 2 o p_175136_ + 3 o p_175137_ + a (Leei;Ljava/util/List;)V m_121263_ + static + 0 o p_121264_ + 1 o p_121265_ + a (Ljava/util/function/BiFunction;)V m_121270_ + 0 o p_121271_ + a (Lcj$c;)V m_175127_ + 0 o p_175128_ + a (Ldi;)V m_121252_ + 0 o p_121253_ + a (Lcom/mojang/brigadier/suggestion/SuggestionsBuilder;)V m_121247_ + static + 0 o p_121248_ + a (Lbfn;)V m_121241_ + 0 o p_121242_ + a (I)V m_121237_ + 0 o p_121238_ + a (Ljava/lang/Object;)Lcom/mojang/brigadier/Message; m_121266_ + static + 0 o p_121267_ + a (Leei;)Leei; m_121257_ + 0 o p_121258_ + a (Lbfj;)Z m_287023_ + 0 o p_287322_ + a (DDD)Leed; m_121233_ + 0 o p_121234_ + 1 o p_121235_ + 2 o p_121236_ + a (Lcj$d;)V m_121245_ + 0 o p_121246_ + a (Lcom/mojang/brigadier/suggestion/SuggestionsBuilder;Ljava/util/function/Consumer;)Ljava/util/concurrent/CompletableFuture; m_121249_ + 0 o p_121250_ + 1 o p_121251_ + a (Ljava/util/function/Predicate;)V m_121272_ + 0 o p_121273_ + b (Z)V m_121302_ + 0 o p_121303_ + b (Leei;Lbfj;Lbfj;)I m_175138_ + static + 0 o p_175139_ + 1 o p_175140_ + 2 o p_175141_ + b (Lbfj;)Z m_121320_ + static + 0 o p_121321_ + b (Ljava/lang/Object;)Lcom/mojang/brigadier/Message; m_121300_ + static + 0 o p_121301_ + b (D)V m_121282_ + 0 o p_121283_ + b (Leei;Ljava/util/List;)V m_121297_ + static + 0 o p_121298_ + 1 o p_121299_ + b (Lcom/mojang/brigadier/suggestion/SuggestionsBuilder;Ljava/util/function/Consumer;)Ljava/util/concurrent/CompletableFuture; m_121286_ + 0 o p_121287_ + 1 o p_121288_ + b (Ldi;)V m_121289_ + 0 o p_121290_ + b (Leei;)Leei; m_121291_ + static + 0 o p_121292_ + b ()V m_121281_ + c (Leei;Ljava/util/List;)V m_121312_ + static + 0 o p_121313_ + 1 o p_121314_ + c ()V m_121304_ + c (Lcom/mojang/brigadier/suggestion/SuggestionsBuilder;Ljava/util/function/Consumer;)Ljava/util/concurrent/CompletableFuture; m_121309_ + 0 o p_121310_ + 1 o p_121311_ + c (D)V m_121305_ + 0 o p_121306_ + c (Z)V m_121315_ + 0 o p_121316_ + d (Lcom/mojang/brigadier/suggestion/SuggestionsBuilder;Ljava/util/function/Consumer;)Ljava/util/concurrent/CompletableFuture; m_121322_ + 0 o p_121323_ + 1 o p_121324_ + d ()V m_121317_ + d (D)V m_121318_ + 0 o p_121319_ + d (Z)V m_121328_ + 0 o p_121329_ + e (Z)V m_121336_ + 0 o p_121337_ + e ()Z m_121330_ + e (Lcom/mojang/brigadier/suggestion/SuggestionsBuilder;Ljava/util/function/Consumer;)Ljava/util/concurrent/CompletableFuture; m_121333_ + 0 o p_121334_ + 1 o p_121335_ + e (D)V m_121331_ + 0 o p_121332_ + f (Z)V m_121344_ + 0 o p_121345_ + f (Lcom/mojang/brigadier/suggestion/SuggestionsBuilder;Ljava/util/function/Consumer;)Ljava/util/concurrent/CompletableFuture; m_121341_ + 0 o p_121342_ + 1 o p_121343_ + f ()Z m_121338_ + f (D)V m_121339_ + 0 o p_121340_ + g ()Lcom/mojang/brigadier/StringReader; m_121346_ + g (Z)V m_121350_ + 0 o p_121351_ + g (Lcom/mojang/brigadier/suggestion/SuggestionsBuilder;Ljava/util/function/Consumer;)Ljava/util/concurrent/CompletableFuture; m_121347_ + 0 o p_121348_ + 1 o p_121349_ + h (Lcom/mojang/brigadier/suggestion/SuggestionsBuilder;Ljava/util/function/Consumer;)Ljava/util/concurrent/CompletableFuture; m_121353_ + 0 o p_121354_ + 1 o p_121355_ + h ()V m_121352_ + h (Z)V m_121356_ + 0 o p_121357_ + i ()Lcj$c; m_175142_ + i (Z)V m_121359_ + 0 o p_121360_ + i (Lcom/mojang/brigadier/suggestion/SuggestionsBuilder;Ljava/util/function/Consumer;)Ljava/util/concurrent/CompletableFuture; m_175143_ + 0 o p_175144_ + 1 o p_175145_ + j (Z)V m_121365_ + 0 o p_121366_ + j (Lcom/mojang/brigadier/suggestion/SuggestionsBuilder;Ljava/util/function/Consumer;)Ljava/util/concurrent/CompletableFuture; m_121362_ + static + 0 o p_121363_ + 1 o p_121364_ + j ()Lcj$d; m_121361_ + k (Z)V m_121368_ + 0 o p_121369_ + k ()Ldi; m_121367_ + l ()Ldi; m_121370_ + m ()Ljava/lang/Double; m_121371_ + n ()Ljava/lang/Double; m_121372_ + o ()Ljava/lang/Double; m_121373_ + p ()Ljava/lang/Double; m_121374_ + q ()Ljava/lang/Double; m_121375_ + r ()Ljava/lang/Double; m_121376_ + s ()Ljava/util/function/BiConsumer; m_175146_ + t ()Lga; m_121377_ + u ()Z m_121378_ + v ()Z m_121379_ + w ()Z m_121380_ + x ()Z m_121381_ + y ()Z m_121382_ + z ()Z m_121383_ +gc net/minecraft/commands/arguments/selector/options/EntitySelectorOptions + a f_121384_ + b f_121385_ + c f_121386_ + d f_121387_ + e f_121388_ + f f_121389_ + g f_121390_ + h f_121391_ + i f_121392_ + ()V + static + ()V + A (Lgb;)Z m_121394_ + static + 0 o p_121395_ + B (Lgb;)V m_121396_ + static + 0 o p_121397_ + C (Lgb;)Z m_121398_ + static + 0 o p_121399_ + D (Lgb;)V m_121400_ + static + 0 o p_121401_ + E (Lgb;)Z m_121402_ + static + 0 o p_121403_ + F (Lgb;)V m_121404_ + static + 0 o p_121405_ + G (Lgb;)Z m_121406_ + static + 0 o p_121407_ + H (Lgb;)V m_121408_ + static + 0 o p_121409_ + I (Lgb;)Z m_121410_ + static + 0 o p_121411_ + J (Lgb;)V m_121412_ + static + 0 o p_121413_ + K (Lgb;)Z m_121414_ + static + 0 o p_121415_ + L (Lgb;)V m_121416_ + static + 0 o p_121417_ + M (Lgb;)Z m_121418_ + static + 0 o p_121419_ + N (Lgb;)V m_121420_ + static + 0 o p_121421_ + O (Lgb;)Z m_121422_ + static + 0 o p_121423_ + P (Lgb;)V m_121424_ + static + 0 o p_121425_ + a (Lanl;ZLbfj;)Z m_205688_ + static + 0 o p_205689_ + 1 o p_205690_ + 2 o p_205691_ + a (Ljava/util/Map;Lag;)Z m_175167_ + static + 0 o p_175168_ + 1 o p_175169_ + a (Ljava/util/Map;Lbfj;)Z m_175170_ + static + 0 o p_175171_ + 1 o p_175172_ + a (Lbfn;ZLbfj;)Z m_175148_ + static + 0 o p_175149_ + 1 o p_175150_ + 2 o p_175151_ + a (ZLcmj;Lbfj;)Z m_175187_ + static + 0 o p_175188_ + 1 o p_175189_ + 2 o p_175190_ + a (Lgb;Ljava/lang/String;I)Lgc$a; m_121447_ + static + 0 o p_121448_ + 1 o p_121449_ + 2 o p_121450_ + a (Lgb;)Z m_121434_ + static + 0 o p_121435_ + a (Ljava/lang/String;Lgc$a;Ljava/util/function/Predicate;Lsw;)V m_121453_ + static + 0 o p_121454_ + 1 o p_121455_ + 2 o p_121456_ + 3 o p_121457_ + a (Lacq;ZLbfj;)Z m_287024_ + static + 0 o p_287323_ + 1 o p_287324_ + 2 o p_287325_ + a (Lqr;ZLbfj;)Z m_175173_ + static + 0 o p_175174_ + 1 o p_175175_ + 2 o p_175176_ + a ()V m_121426_ + static + a (Lgb;ILacq;)Lcom/mojang/brigadier/exceptions/CommandSyntaxException; m_175155_ + static + 0 o p_175156_ + 1 o p_175157_ + 2 o p_175158_ + a (Lgb;Lcom/mojang/brigadier/suggestion/SuggestionsBuilder;)V m_121440_ + static + 0 o p_121441_ + 1 o p_121442_ + a (Ljava/lang/Object;)Lcom/mojang/brigadier/Message; m_121451_ + static + 0 o p_121452_ + a (ZLag;)Z m_175181_ + static + 0 o p_175182_ + 1 o p_175183_ + a (Lgb;Lcom/mojang/brigadier/suggestion/SuggestionsBuilder;Ljava/util/function/Consumer;)Ljava/util/concurrent/CompletableFuture; m_257090_ + static + 0 o p_258161_ + 1 o p_258162_ + 2 o p_258163_ + a (ZLak;)Z m_175184_ + static + 0 o p_175185_ + 1 o p_175186_ + a (Lcom/mojang/brigadier/suggestion/SuggestionsBuilder;Ljava/util/function/Consumer;)Ljava/util/concurrent/CompletableFuture; m_175152_ + static + 0 o p_175153_ + 1 o p_175154_ + a (Ljava/lang/String;ZLbfj;)Z m_175163_ + static + 0 o p_175164_ + 1 o p_175165_ + 2 o p_175166_ + b (Ljava/lang/String;ZLbfj;)Z m_175195_ + static + 0 o p_175196_ + 1 o p_175197_ + 2 o p_175198_ + b (Ljava/util/Map;Lbfj;)Z m_175199_ + static + 0 o p_175200_ + 1 o p_175201_ + b (Ljava/lang/Object;)Lcom/mojang/brigadier/Message; m_121492_ + static + 0 o p_121493_ + b (Lgb;Lcom/mojang/brigadier/suggestion/SuggestionsBuilder;Ljava/util/function/Consumer;)Ljava/util/concurrent/CompletableFuture; m_175191_ + static + 0 o p_175192_ + 1 o p_175193_ + 2 o p_175194_ + b (Lgb;)V m_121486_ + static + 0 o p_121487_ + c (Lgb;)Z m_121505_ + static + 0 o p_121506_ + c (Ljava/lang/Object;)Lcom/mojang/brigadier/Message; m_121507_ + static + 0 o p_121508_ + c (Ljava/lang/String;ZLbfj;)Z m_175206_ + static + 0 o p_175207_ + 1 o p_175208_ + 2 o p_175209_ + d (Ljava/lang/Object;)Lcom/mojang/brigadier/Message; m_121515_ + static + 0 o p_121516_ + d (Lgb;)V m_121513_ + static + 0 o p_121514_ + e (Lgb;)Z m_121517_ + static + 0 o p_121518_ + e (Ljava/lang/Object;)Lcom/mojang/brigadier/Message; m_121519_ + static + 0 o p_121520_ + f (Lgb;)V m_121521_ + static + 0 o p_121522_ + g (Lgb;)Z m_121523_ + static + 0 o p_121524_ + h (Lgb;)V m_121525_ + static + 0 o p_121526_ + i (Lgb;)Z m_121527_ + static + 0 o p_121528_ + j (Lgb;)V m_121529_ + static + 0 o p_121530_ + k (Lgb;)Z m_121531_ + static + 0 o p_121532_ + l (Lgb;)V m_121533_ + static + 0 o p_121534_ + m (Lgb;)Z m_121535_ + static + 0 o p_121536_ + n (Lgb;)V m_121537_ + static + 0 o p_121538_ + o (Lgb;)Z m_121539_ + static + 0 o p_121540_ + p (Lgb;)V m_121541_ + static + 0 o p_121542_ + q (Lgb;)Z m_121543_ + static + 0 o p_121544_ + r (Lgb;)V m_244754_ + static + 0 o p_247983_ + s (Lgb;)Z m_121547_ + static + 0 o p_121548_ + t (Lgb;)V m_121549_ + static + 0 o p_121550_ + u (Lgb;)Z m_121551_ + static + 0 o p_121552_ + v (Lgb;)V m_121553_ + static + 0 o p_121554_ + w (Lgb;)Z m_121555_ + static + 0 o p_121556_ + x (Lgb;)V m_121557_ + static + 0 o p_121558_ + y (Lgb;)Z m_121559_ + static + 0 o p_121560_ + z (Lgb;)V m_121561_ + static + 0 o p_121562_ +gc$a net/minecraft/commands/arguments/selector/options/EntitySelectorOptions$Modifier + handle (Lgb;)V m_121563_ + 0 o p_121564_ +gc$b net/minecraft/commands/arguments/selector/options/EntitySelectorOptions$Option + a f_121565_ + b f_243902_ + c f_121567_ + (Lgc$a;Ljava/util/function/Predicate;Lsw;)V + 0 o f_121565_ + 1 o f_243902_ + 2 o f_121567_ + a ()Lgc$a; f_121565_ + b ()Ljava/util/function/Predicate; f_243902_ + c ()Lsw; f_121567_ + equals (Ljava/lang/Object;)Z equals + 0 o p_251803_ + hashCode ()I hashCode + toString ()Ljava/lang/String; toString +gd net/minecraft/commands/arguments/selector/options/package-info +ge net/minecraft/commands/arguments/selector/package-info +gf net/minecraft/commands/package-info +gg net/minecraft/commands/synchronization/ArgumentTypeInfo + a (Lgg$a;Lcom/google/gson/JsonObject;)V m_213719_ + 0 o p_235373_ + 1 o p_235374_ + a (Lcom/mojang/brigadier/arguments/ArgumentType;)Lgg$a; m_214163_ + 0 o p_235372_ + a (Lgg$a;Lsf;)V m_214155_ + 0 o p_235375_ + 1 o p_235376_ + b (Lsf;)Lgg$a; m_213618_ + 0 o p_235377_ +gg$a net/minecraft/commands/synchronization/ArgumentTypeInfo$Template + a ()Lgg; m_213709_ + b (Ldm;)Lcom/mojang/brigadier/arguments/ArgumentType; m_213879_ + 0 o p_235378_ +gh net/minecraft/commands/synchronization/ArgumentTypeInfos + a f_235379_ + ()V + static + ()V + a (Lhr;)Lgg; m_235384_ + static + 0 o p_235385_ + a (Ljava/lang/Class;)Z m_235391_ + static + 0 o p_235392_ + a (Lhr;Ljava/lang/String;Ljava/lang/Class;Lgg;)Lgg; m_235386_ + static + 0 o p_235387_ + 1 o p_235388_ + 2 o p_235389_ + 3 o p_235390_ + a (Lcom/mojang/brigadier/arguments/ArgumentType;)Lgg; m_235382_ + static + 0 o p_235383_ + b (Ljava/lang/Class;)Ljava/lang/Class; m_235395_ + static + 0 o p_235396_ + b (Lcom/mojang/brigadier/arguments/ArgumentType;)Lgg$a; m_235393_ + static + 0 o p_235394_ +gi net/minecraft/commands/synchronization/ArgumentUtils + a f_235397_ + b f_235398_ + c f_235399_ + ()V + static + ()V + a (ZZ)I m_235427_ + static + 0 o p_235428_ + 1 o p_235429_ + a (B)Z m_235402_ + static + 0 o p_235403_ + a (Lcom/mojang/brigadier/tree/CommandNode;Ljava/util/Set;Ljava/util/Set;)V m_235419_ + static + 0 o p_235420_ + 1 o p_235421_ + 2 o p_235422_ + a (Lcom/mojang/brigadier/CommandDispatcher;Lcom/mojang/brigadier/tree/CommandNode;)Lcom/google/gson/JsonObject; m_235414_ + static + 0 o p_235415_ + 1 o p_235416_ + a (Lcom/google/gson/JsonObject;Lgg;Lgg$a;)V m_235410_ + static + 0 o p_235411_ + 1 o p_235412_ + 2 o p_235413_ + a (Lcom/google/gson/JsonObject;Lgg$a;)V m_235407_ + static + 0 o p_235408_ + 1 o p_235409_ + a (Ljava/util/Set;Ljava/util/Set;Lcom/mojang/brigadier/tree/CommandNode;)V m_235423_ + static + 0 o p_235424_ + 1 o p_235425_ + 2 o p_235426_ + a (Lcom/google/gson/JsonObject;Lcom/mojang/brigadier/arguments/ArgumentType;)V m_235404_ + static + 0 o p_235405_ + 1 o p_235406_ + a (Lcom/mojang/brigadier/tree/CommandNode;)Ljava/util/Set; m_235417_ + static + 0 o p_235418_ + b (B)Z m_235430_ + static + 0 o p_235431_ +gj net/minecraft/commands/synchronization/SingletonArgumentInfo + a f_235432_ + (Ljava/util/function/Function;)V + 0 o p_235434_ + a (Ljava/util/function/Supplier;)Lgj; m_235451_ + static + 0 o p_235452_ + a (Lgg$a;Lcom/google/gson/JsonObject;)V m_213719_ + 0 o p_235438_ + 1 o p_235439_ + a (Lcom/mojang/brigadier/arguments/ArgumentType;)Lgg$a; m_214163_ + 0 o p_235436_ + a (Ljava/util/function/Function;)Lgj; m_235449_ + static + 0 o p_235450_ + a (Lgg$a;Lsf;)V m_214155_ + 0 o p_235441_ + 1 o p_235442_ + a (Ljava/util/function/Supplier;Ldm;)Lcom/mojang/brigadier/arguments/ArgumentType; m_235453_ + static + 0 o p_235454_ + 1 o p_235455_ + a (Lsf;)Lgj$a; m_213618_ + 0 o p_235457_ + a (Lgj$a;Lcom/google/gson/JsonObject;)V m_213719_ + 0 o p_235444_ + 1 o p_235445_ + a (Lgj$a;Lsf;)V m_214155_ + 0 o p_235447_ + 1 o p_235448_ + b (Lsf;)Lgg$a; m_213618_ + 0 o p_235461_ + b (Lcom/mojang/brigadier/arguments/ArgumentType;)Lgj$a; m_214163_ + 0 o p_235459_ +gj$a net/minecraft/commands/synchronization/SingletonArgumentInfo$Template + a f_235462_ + b f_235463_ + (Lgj;Ljava/util/function/Function;)V + 0 o p_235465_ + 1 o p_235466_ + a ()Lgg; m_213709_ + b (Ldm;)Lcom/mojang/brigadier/arguments/ArgumentType; m_213879_ + 0 o p_235469_ +gk net/minecraft/commands/synchronization/SuggestionProviders + a f_121641_ + b f_121642_ + c f_121643_ + d f_121645_ + e f_121646_ + f f_121647_ + ()V + static + ()V + a (Lcom/mojang/brigadier/suggestion/SuggestionProvider;)Lacq; m_121654_ + static + 0 o p_121655_ + a (Lcom/mojang/brigadier/context/CommandContext;Lcom/mojang/brigadier/suggestion/SuggestionsBuilder;)Ljava/util/concurrent/CompletableFuture; m_257091_ + static + 0 o p_258164_ + 1 o p_258165_ + a (Lcom/mojang/brigadier/context/CommandContext;Lbfn;)Z m_244756_ + static + 0 o p_247986_ + 1 o p_247987_ + a (Lbfn;)Lcom/mojang/brigadier/Message; m_212435_ + static + 0 o p_212436_ + a (Lacq;Lcom/mojang/brigadier/suggestion/SuggestionProvider;)Lcom/mojang/brigadier/suggestion/SuggestionProvider; m_121658_ + static + 0 o p_121659_ + 1 o p_121660_ + a (Lacq;)Lcom/mojang/brigadier/suggestion/SuggestionProvider; m_121656_ + static + 0 o p_121657_ + b (Lcom/mojang/brigadier/context/CommandContext;Lcom/mojang/brigadier/suggestion/SuggestionsBuilder;)Ljava/util/concurrent/CompletableFuture; m_263147_ + static + 0 o p_121667_ + 1 o p_121668_ + b (Lcom/mojang/brigadier/suggestion/SuggestionProvider;)Lcom/mojang/brigadier/suggestion/SuggestionProvider; m_121664_ + static + 0 o p_121665_ + c (Lcom/mojang/brigadier/context/CommandContext;Lcom/mojang/brigadier/suggestion/SuggestionsBuilder;)Ljava/util/concurrent/CompletableFuture; m_121669_ + static + 0 o p_121670_ + 1 o p_121671_ + d (Lcom/mojang/brigadier/context/CommandContext;Lcom/mojang/brigadier/suggestion/SuggestionsBuilder;)Ljava/util/concurrent/CompletableFuture; m_121672_ + static + 0 o p_121673_ + 1 o p_121674_ +gk$a net/minecraft/commands/synchronization/SuggestionProviders$Wrapper + a f_121675_ + b f_121676_ + (Lacq;Lcom/mojang/brigadier/suggestion/SuggestionProvider;)V + 0 o p_121678_ + 1 o p_121679_ + getSuggestions (Lcom/mojang/brigadier/context/CommandContext;Lcom/mojang/brigadier/suggestion/SuggestionsBuilder;)Ljava/util/concurrent/CompletableFuture; getSuggestions + 0 o p_121683_ + 1 o p_121684_ +gl net/minecraft/commands/synchronization/brigadier/DoubleArgumentInfo + ()V + a (Lgg$a;Lcom/google/gson/JsonObject;)V m_213719_ + 0 o p_235476_ + 1 o p_235477_ + a (Lsf;)Lgl$a; m_213618_ + 0 o p_235488_ + a (Lcom/mojang/brigadier/arguments/DoubleArgumentType;)Lgl$a; m_214163_ + 0 o p_235474_ + a (Lcom/mojang/brigadier/arguments/ArgumentType;)Lgg$a; m_214163_ + 0 o p_235472_ + a (Lgg$a;Lsf;)V m_214155_ + 0 o p_235479_ + 1 o p_235480_ + a (Lgl$a;Lsf;)V m_214155_ + 0 o p_235485_ + 1 o p_235486_ + a (Lgl$a;Lcom/google/gson/JsonObject;)V m_213719_ + 0 o p_235482_ + 1 o p_235483_ + b (Lsf;)Lgg$a; m_213618_ + 0 o p_235490_ +gl$a net/minecraft/commands/synchronization/brigadier/DoubleArgumentInfo$Template + a f_235491_ + b f_235492_ + c f_235493_ + (Lgl;DD)V + 0 o p_235495_ + 1 o p_235496_ + 2 o p_235497_ + a ()Lgg; m_213709_ + a (Ldm;)Lcom/mojang/brigadier/arguments/DoubleArgumentType; m_213879_ + 0 o p_235500_ + b (Ldm;)Lcom/mojang/brigadier/arguments/ArgumentType; m_213879_ + 0 o p_235502_ +gm net/minecraft/commands/synchronization/brigadier/FloatArgumentInfo + ()V + a (Lgm$a;Lsf;)V m_214155_ + 0 o p_235518_ + 1 o p_235519_ + a (Lgg$a;Lcom/google/gson/JsonObject;)V m_213719_ + 0 o p_235509_ + 1 o p_235510_ + a (Lsf;)Lgm$a; m_213618_ + 0 o p_235521_ + a (Lcom/mojang/brigadier/arguments/ArgumentType;)Lgg$a; m_214163_ + 0 o p_235505_ + a (Lgg$a;Lsf;)V m_214155_ + 0 o p_235512_ + 1 o p_235513_ + a (Lcom/mojang/brigadier/arguments/FloatArgumentType;)Lgm$a; m_214163_ + 0 o p_235507_ + a (Lgm$a;Lcom/google/gson/JsonObject;)V m_213719_ + 0 o p_235515_ + 1 o p_235516_ + b (Lsf;)Lgg$a; m_213618_ + 0 o p_235523_ +gm$a net/minecraft/commands/synchronization/brigadier/FloatArgumentInfo$Template + a f_235524_ + b f_235525_ + c f_235526_ + (Lgm;FF)V + 0 o p_235528_ + 1 o p_235529_ + 2 o p_235530_ + a ()Lgg; m_213709_ + a (Ldm;)Lcom/mojang/brigadier/arguments/FloatArgumentType; m_213879_ + 0 o p_235533_ + b (Ldm;)Lcom/mojang/brigadier/arguments/ArgumentType; m_213879_ + 0 o p_235535_ +gn net/minecraft/commands/synchronization/brigadier/IntegerArgumentInfo + ()V + a (Lsf;)Lgn$a; m_213618_ + 0 o p_235554_ + a (Lgg$a;Lcom/google/gson/JsonObject;)V m_213719_ + 0 o p_235542_ + 1 o p_235543_ + a (Lcom/mojang/brigadier/arguments/IntegerArgumentType;)Lgn$a; m_214163_ + 0 o p_235540_ + a (Lcom/mojang/brigadier/arguments/ArgumentType;)Lgg$a; m_214163_ + 0 o p_235538_ + a (Lgg$a;Lsf;)V m_214155_ + 0 o p_235545_ + 1 o p_235546_ + a (Lgn$a;Lcom/google/gson/JsonObject;)V m_213719_ + 0 o p_235548_ + 1 o p_235549_ + a (Lgn$a;Lsf;)V m_214155_ + 0 o p_235551_ + 1 o p_235552_ + b (Lsf;)Lgg$a; m_213618_ + 0 o p_235556_ +gn$a net/minecraft/commands/synchronization/brigadier/IntegerArgumentInfo$Template + a f_235557_ + b f_235558_ + c f_235559_ + (Lgn;II)V + 0 o p_235561_ + 1 o p_235562_ + 2 o p_235563_ + a (Ldm;)Lcom/mojang/brigadier/arguments/IntegerArgumentType; m_213879_ + 0 o p_235566_ + a ()Lgg; m_213709_ + b (Ldm;)Lcom/mojang/brigadier/arguments/ArgumentType; m_213879_ + 0 o p_235568_ +go net/minecraft/commands/synchronization/brigadier/LongArgumentInfo + ()V + a (Lgg$a;Lcom/google/gson/JsonObject;)V m_213719_ + 0 o p_235575_ + 1 o p_235576_ + a (Lsf;)Lgo$a; m_213618_ + 0 o p_235587_ + a (Lcom/mojang/brigadier/arguments/ArgumentType;)Lgg$a; m_214163_ + 0 o p_235571_ + a (Lgg$a;Lsf;)V m_214155_ + 0 o p_235578_ + 1 o p_235579_ + a (Lgo$a;Lsf;)V m_214155_ + 0 o p_235584_ + 1 o p_235585_ + a (Lgo$a;Lcom/google/gson/JsonObject;)V m_213719_ + 0 o p_235581_ + 1 o p_235582_ + a (Lcom/mojang/brigadier/arguments/LongArgumentType;)Lgo$a; m_214163_ + 0 o p_235573_ + b (Lsf;)Lgg$a; m_213618_ + 0 o p_235589_ +go$a net/minecraft/commands/synchronization/brigadier/LongArgumentInfo$Template + a f_235590_ + b f_235591_ + c f_235592_ + (Lgo;JJ)V + 0 o p_235594_ + 1 o p_235595_ + 2 o p_235596_ + a ()Lgg; m_213709_ + a (Ldm;)Lcom/mojang/brigadier/arguments/LongArgumentType; m_213879_ + 0 o p_235599_ + b (Ldm;)Lcom/mojang/brigadier/arguments/ArgumentType; m_213879_ + 0 o p_235601_ +gp net/minecraft/commands/synchronization/brigadier/StringArgumentSerializer + ()V + a (Lgg$a;Lcom/google/gson/JsonObject;)V m_213719_ + 0 o p_235607_ + 1 o p_235608_ + a (Lgp$a;Lsf;)V m_214155_ + 0 o p_235616_ + 1 o p_235617_ + a (Lcom/mojang/brigadier/arguments/ArgumentType;)Lgg$a; m_214163_ + 0 o p_235603_ + a (Lgg$a;Lsf;)V m_214155_ + 0 o p_235610_ + 1 o p_235611_ + a (Lgp$a;Lcom/google/gson/JsonObject;)V m_213719_ + 0 o p_235613_ + 1 o p_235614_ + a (Lcom/mojang/brigadier/arguments/StringArgumentType;)Lgp$a; m_214163_ + 0 o p_235605_ + a (Lsf;)Lgp$a; m_213618_ + 0 o p_235619_ + b (Lsf;)Lgg$a; m_213618_ + 0 o p_235621_ +gp$1 net/minecraft/commands/synchronization/brigadier/StringArgumentSerializer$1 + a f_121778_ + ()V + static +gp$a net/minecraft/commands/synchronization/brigadier/StringArgumentSerializer$Template + a f_235622_ + b f_235623_ + (Lgp;Lcom/mojang/brigadier/arguments/StringArgumentType$StringType;)V + 0 o p_235625_ + 1 o p_235626_ + a ()Lgg; m_213709_ + a (Ldm;)Lcom/mojang/brigadier/arguments/StringArgumentType; m_213879_ + 0 o p_235629_ + b (Ldm;)Lcom/mojang/brigadier/arguments/ArgumentType; m_213879_ + 0 o p_235631_ +gq net/minecraft/commands/synchronization/brigadier/package-info +gr net/minecraft/commands/synchronization/package-info +gs net/minecraft/core/AxisCycle + a NONE + b FORWARD + c BACKWARD + d f_121783_ + e f_121784_ + f $VALUES + ()V + static + (Ljava/lang/String;I)V + 0 o p_121788_ + 1 o p_121789_ + a ()Lgs; m_7634_ + a (Lha$a;)Lha$a; m_7314_ + 0 o p_121798_ + a (DDDLha$a;)D m_142567_ + 0 o p_175236_ + 1 o p_175237_ + 2 o p_175238_ + 3 o p_175239_ + a (IIILha$a;)I m_7758_ + 0 o p_121794_ + 1 o p_121795_ + 2 o p_121796_ + 3 o p_121797_ + a (Lha$a;Lha$a;)Lgs; m_121799_ + static + 0 o p_121800_ + 1 o p_121801_ + b ()[Lgs; m_175240_ + static + valueOf (Ljava/lang/String;)Lgs; valueOf + static + 0 o p_121803_ + values ()[Lgs; values + static +gs$1 net/minecraft/core/AxisCycle$1 + (Ljava/lang/String;I)V + 0 o p_121806_ + 1 o p_121807_ + a ()Lgs; m_7634_ + a (Lha$a;)Lha$a; m_7314_ + 0 o p_121815_ + a (DDDLha$a;)D m_142567_ + 0 o p_175242_ + 1 o p_175243_ + 2 o p_175244_ + 3 o p_175245_ + a (IIILha$a;)I m_7758_ + 0 o p_121810_ + 1 o p_121811_ + 2 o p_121812_ + 3 o p_121813_ +gs$2 net/minecraft/core/AxisCycle$2 + (Ljava/lang/String;I)V + 0 o p_121817_ + 1 o p_121818_ + a ()Lgs; m_7634_ + a (Lha$a;)Lha$a; m_7314_ + 0 o p_121826_ + a (DDDLha$a;)D m_142567_ + 0 o p_175247_ + 1 o p_175248_ + 2 o p_175249_ + 3 o p_175250_ + a (IIILha$a;)I m_7758_ + 0 o p_121821_ + 1 o p_121822_ + 2 o p_121823_ + 3 o p_121824_ +gs$3 net/minecraft/core/AxisCycle$3 + (Ljava/lang/String;I)V + 0 o p_121828_ + 1 o p_121829_ + a ()Lgs; m_7634_ + a (Lha$a;)Lha$a; m_7314_ + 0 o p_121837_ + a (DDDLha$a;)D m_142567_ + 0 o p_175252_ + 1 o p_175253_ + 2 o p_175254_ + 3 o p_175255_ + a (IIILha$a;)I m_7758_ + 0 o p_121832_ + 1 o p_121833_ + 2 o p_121834_ + 3 o p_121835_ +gt net/minecraft/core/BlockMath + a f_175256_ + b f_175257_ + c f_121840_ + ()V + static + ()V + a (Lj;)Lj; m_121842_ + static + 0 o p_121843_ + a (Ljava/util/EnumMap;)V m_121848_ + static + 0 o p_121849_ + a (Lj;Lha;Ljava/util/function/Supplier;)Lj; m_121844_ + static + 0 o p_121845_ + 1 o p_121846_ + 2 o p_121847_ + b (Ljava/util/EnumMap;)V m_121850_ + static + 0 o p_121851_ + b (Lj;)Lj; m_175259_ + static + 0 o p_175260_ +gu net/minecraft/core/BlockPos + a f_121852_ + b f_121853_ + c f_121857_ + d f_121854_ + e f_121855_ + h f_121856_ + i f_121858_ + j f_121859_ + k f_121860_ + l f_175261_ + m f_121861_ + n f_121862_ + ()V + static + (Lhz;)V + 0 o p_121877_ + (III)V + 0 o p_121869_ + 1 o p_121870_ + 2 o p_121871_ + a (Lha;I)Lgu; m_5484_ + 0 o p_121948_ + 1 o p_121949_ + a (III)J m_121882_ + static + 0 o p_121883_ + 1 o p_121884_ + 2 o p_121885_ + a (Lgu;IILjava/util/function/BiConsumer;Ljava/util/function/Predicate;)I m_276833_ + static + 0 o p_278078_ + 1 o p_277385_ + 2 o p_277666_ + 3 o p_277755_ + 4 o p_278094_ + a (JLha;)J m_121915_ + static + 0 o p_121916_ + 1 o p_121917_ + a (Leed;)Ljava/util/stream/Stream; m_121921_ + static + 0 o p_121922_ + a (J)I m_121983_ + static + 0 o p_121984_ + a (Lapf;IIIIIII)Ljava/lang/Iterable; m_235641_ + static + 0 o p_235642_ + 1 o p_235643_ + 2 o p_235644_ + 3 o p_235645_ + 4 o p_235646_ + 5 o p_235647_ + 6 o p_235648_ + 7 o p_235649_ + a (I)Lgu; m_142393_ + 0 o p_175263_ + a (Lha;)Lgu; m_121945_ + 0 o p_121946_ + a (Lapf;ILgu;I)Ljava/lang/Iterable; m_235650_ + static + 0 o p_235651_ + 1 o p_235652_ + 2 o p_235653_ + 3 o p_235654_ + a (Lgu;IILjava/util/function/Predicate;)Ljava/util/Optional; m_121930_ + static + 0 o p_121931_ + 1 o p_121932_ + 2 o p_121933_ + 3 o p_121934_ + a (IILapf;IIIII)Ljava/util/Iterator; m_235632_ + static + 0 o p_235633_ + 1 o p_235634_ + 2 o p_235635_ + 3 o p_235636_ + 4 o p_235637_ + 5 o p_235638_ + 6 o p_235639_ + 7 o p_235640_ + a ()J m_121878_ + a (Ldrs;)Ljava/util/stream/Stream; m_121919_ + static + 0 o p_121920_ + a (Ljava/util/stream/IntStream;)Lcom/mojang/serialization/DataResult; m_121966_ + static + 0 o p_121967_ + a (Lho;)Lgu; m_274446_ + static + 0 o p_275443_ + a (Lha;Lha;Lgu;I)Ljava/util/Iterator; m_121950_ + static + 0 o p_121951_ + 1 o p_121952_ + 2 o p_121953_ + 3 o p_121954_ + a (Lha$a;I)Lgu; m_5487_ + 0 o p_121943_ + 1 o p_121944_ + a (Lhz;)Lgu; m_121955_ + 0 o p_121956_ + a (Lgu;Lgu;)Ljava/lang/Iterable; m_121940_ + static + 0 o p_121941_ + 1 o p_121942_ + a (DDD)Lgu; m_274561_ + static + 0 o p_275310_ + 1 o p_275414_ + 2 o p_275737_ + a (Lgu;)Ljava/util/stream/Stream; m_284476_ + static + 0 o p_284978_ + a (Lgu;III)Ljava/lang/Iterable; m_121925_ + static + 0 o p_121926_ + 1 o p_121927_ + 2 o p_121928_ + 3 o p_121929_ + a (Lgu;ILha;Lha;)Ljava/lang/Iterable; m_121935_ + static + 0 o p_121936_ + 1 o p_121937_ + 2 o p_121938_ + 3 o p_121939_ + a (IIIIIII)Ljava/util/Iterator; m_121893_ + static + 0 o p_121894_ + 1 o p_121895_ + 2 o p_121896_ + 3 o p_121897_ + 4 o p_121898_ + 5 o p_121899_ + 6 o p_121900_ + a (Ljava/util/Queue;ILgu;)V m_276707_ + static + 0 o p_277232_ + 1 o p_277233_ + 2 o p_277234_ + a (Lcvz;)Lgu; m_7954_ + 0 o p_121918_ + a (IIIIII)Ljava/util/stream/Stream; m_121886_ + static + 0 o p_121887_ + 1 o p_121888_ + 2 o p_121889_ + 3 o p_121890_ + 4 o p_121891_ + 5 o p_121892_ + a ([I)Lgu; m_175269_ + static + 0 o p_175270_ + a (JIII)J m_121910_ + static + 0 o p_121911_ + 1 o p_121912_ + 2 o p_121913_ + 3 o p_121914_ + b (Lgu;)Ljava/util/stream/IntStream; m_121923_ + static + 0 o p_121924_ + b (Lha;I)Lhz; m_5484_ + 0 o p_121994_ + 1 o p_121995_ + b (Lha;)Lhz; m_121945_ + 0 o p_175279_ + b (Lgu;III)Ljava/util/stream/Stream; m_121985_ + static + 0 o p_121986_ + 1 o p_121987_ + 2 o p_121988_ + 3 o p_121989_ + b (Lhz;)Lgu; m_121996_ + 0 o p_121997_ + b (Lgu;Lgu;)Ljava/util/stream/Stream; m_121990_ + static + 0 o p_121991_ + 1 o p_121992_ + b (J)I m_122008_ + static + 0 o p_122009_ + b (III)Lgu; m_7918_ + 0 o p_121973_ + 1 o p_121974_ + 2 o p_121975_ + b (IIIIII)Ljava/lang/Iterable; m_121976_ + static + 0 o p_121977_ + 1 o p_121978_ + 2 o p_121979_ + 3 o p_121980_ + 4 o p_121981_ + 5 o p_121982_ + b (Lha$a;I)Lhz; m_5487_ + 0 o p_175276_ + 1 o p_175277_ + b ()Leei; m_252807_ + b (I)Lgu; m_6630_ + 0 o p_121972_ + c (IIIIII)Ljava/util/Iterator; m_122001_ + static + 0 o p_122002_ + 1 o p_122003_ + 2 o p_122004_ + 3 o p_122005_ + 4 o p_122006_ + 5 o p_122007_ + c (III)Lhz; m_7918_ + 0 o p_175281_ + 1 o p_175282_ + 2 o p_175283_ + c (I)Lgu; m_6625_ + 0 o p_122000_ + c (J)I m_122015_ + static + 0 o p_122016_ + c ()Lgu; m_7494_ + c (Lhz;)Lgu; m_7724_ + 0 o p_122011_ + d ()Lgu; m_7495_ + d (J)Lgu; m_122022_ + static + 0 o p_122023_ + d (I)Lgu; m_122013_ + 0 o p_122014_ + d (Lhz;)Lhz; m_7724_ + 0 o p_122018_ + e (Lhz;)Lhz; m_121996_ + 0 o p_175285_ + e ()Lgu; m_122012_ + e (I)Lgu; m_122020_ + 0 o p_122021_ + e (J)J m_122027_ + static + 0 o p_122028_ + f (Lhz;)Lhz; m_121955_ + 0 o p_175287_ + f ()Lgu; m_122019_ + f (I)Lgu; m_122025_ + 0 o p_122026_ + g ()Lgu; m_122024_ + g (I)Lgu; m_122030_ + 0 o p_122031_ + h ()Lgu; m_122029_ + h (I)Lgu; m_175288_ + 0 o p_175289_ + i (I)Lhz; m_122030_ + 0 o p_175291_ + i ()Lgu; m_7949_ + j (I)Lhz; m_122025_ + 0 o p_175294_ + j ()Lgu$a; m_122032_ + k ()Lhz; m_122029_ + k (I)Lhz; m_122020_ + 0 o p_175297_ + l (I)Lhz; m_122013_ + 0 o p_175300_ + l ()Lhz; m_122024_ + m ()Lhz; m_122019_ + m (I)Lhz; m_6625_ + 0 o p_122034_ + n ()Lhz; m_122012_ + n (I)Lhz; m_6630_ + 0 o p_122036_ + o ()Lhz; m_7495_ + o (I)Lhz; m_142393_ + 0 o p_175303_ + p ()Lhz; m_7494_ +gu$1 net/minecraft/core/BlockPos$1 + a f_122039_ + b f_122040_ + c f_122041_ + d f_122042_ + e f_122043_ + f f_122044_ + g f_122045_ + h f_122046_ + i f_122047_ + j f_122048_ + (IILapf;IIIII)V + 0 o p_235656_ + 1 o p_235657_ + 2 o p_235658_ + 3 o p_235659_ + 4 o p_235660_ + 5 o p_235661_ + 6 o p_235662_ + 7 o p_235663_ + a ()Lgu; computeNext + computeNext ()Ljava/lang/Object; computeNext +gu$2 net/minecraft/core/BlockPos$2 + a f_122060_ + b f_122061_ + c f_122062_ + d f_122063_ + e f_122064_ + f f_122065_ + g f_122066_ + h f_122067_ + i f_122068_ + j f_122069_ + k f_122070_ + l f_122071_ + m f_122072_ + n f_122073_ + (IIIIIII)V + 0 o p_122075_ + 1 o p_122076_ + 2 o p_122077_ + 3 o p_122078_ + 4 o p_122079_ + 5 o p_122080_ + 6 o p_122081_ + a ()Lgu; computeNext + computeNext ()Ljava/lang/Object; computeNext +gu$3 net/minecraft/core/BlockPos$3 + a f_122084_ + b f_122085_ + c f_122086_ + d f_122087_ + e f_122088_ + f f_122089_ + g f_122090_ + h f_122091_ + (IIIIII)V + 0 o p_122093_ + 1 o p_122094_ + 2 o p_122095_ + 3 o p_122096_ + 4 o p_122097_ + 5 o p_122098_ + a ()Lgu; computeNext + computeNext ()Ljava/lang/Object; computeNext +gu$4 net/minecraft/core/BlockPos$4 + a f_122101_ + b f_122102_ + c f_122103_ + d f_122104_ + e f_122105_ + f f_122106_ + g f_122107_ + h f_122108_ + i f_122109_ + j f_122110_ + k f_122111_ + l f_122112_ + m f_122113_ + (Lha;Lha;Lgu;I)V + 0 o p_122115_ + 1 o p_122116_ + 2 o p_122117_ + 3 o p_122118_ + a ()Lgu$a; computeNext + computeNext ()Ljava/lang/Object; computeNext +gu$5 net/minecraft/core/BlockPos$5 + a f_122121_ + b f_122122_ + ()V + static +gu$a net/minecraft/core/BlockPos$MutableBlockPos + (III)V + 0 o p_122130_ + 1 o p_122131_ + 2 o p_122132_ + (DDD)V + 0 o p_122126_ + 1 o p_122127_ + 2 o p_122128_ + ()V + a (Lha;I)Lgu; m_5484_ + 0 o p_122152_ + 1 o p_122153_ + a (Lha$a;II)Lgu$a; m_122147_ + 0 o p_122148_ + 1 o p_122149_ + 2 o p_122150_ + a (Lhz;III)Lgu$a; m_122154_ + 0 o p_122155_ + 1 o p_122156_ + 2 o p_122157_ + 3 o p_122158_ + a (Lha$a;I)Lgu; m_5487_ + 0 o p_122145_ + 1 o p_122146_ + a (Lgs;III)Lgu$a; m_122139_ + 0 o p_122140_ + 1 o p_122141_ + 2 o p_122142_ + 3 o p_122143_ + a (I)Lgu; m_142393_ + 0 o p_175305_ + a (Lhz;Lha;)Lgu$a; m_122159_ + 0 o p_122160_ + 1 o p_122161_ + a (Lcvz;)Lgu; m_7954_ + 0 o p_122138_ + a (Lhz;Lhz;)Lgu$a; m_175306_ + 0 o p_175307_ + 1 o p_175308_ + b (III)Lgu; m_7918_ + 0 o p_122163_ + 1 o p_122164_ + 2 o p_122165_ + b (Lha;I)Lhz; m_5484_ + 0 o p_122167_ + 1 o p_122168_ + b (Lha;)Lhz; m_121945_ + 0 o p_175317_ + b (Lha$a;I)Lhz; m_5487_ + 0 o p_175314_ + 1 o p_175315_ + b (DDD)Lgu$a; m_122169_ + 0 o p_122170_ + 1 o p_122171_ + 2 o p_122172_ + c (III)Lhz; m_7918_ + 0 o p_175319_ + 1 o p_175320_ + 2 o p_175321_ + c (Lha;)Lgu$a; m_122173_ + 0 o p_122174_ + c (Lha;I)Lgu$a; m_122175_ + 0 o p_122176_ + 1 o p_122177_ + d (Lhz;)Lhz; m_7724_ + 0 o p_122183_ + d (III)Lgu$a; m_122178_ + 0 o p_122179_ + 1 o p_122180_ + 2 o p_122181_ + e (III)Lgu$a; m_122184_ + 0 o p_122185_ + 1 o p_122186_ + 2 o p_122187_ + e (Lhz;)Lhz; m_121996_ + 0 o p_175323_ + f (Lhz;)Lhz; m_121955_ + 0 o p_175325_ + f (J)Lgu$a; m_122188_ + 0 o p_122189_ + g (Lhz;)Lgu$a; m_122190_ + 0 o p_122191_ + h (Lhz;)Lgu$a; m_122193_ + 0 o p_122194_ + i (I)Lhz; m_122030_ + 0 o p_175327_ + i ()Lgu; m_7949_ + j (I)Lhz; m_122025_ + 0 o p_175330_ + k ()Lhz; m_122029_ + k (I)Lhz; m_122020_ + 0 o p_175333_ + l ()Lhz; m_122024_ + l (I)Lhz; m_122013_ + 0 o p_175336_ + m ()Lhz; m_122019_ + m (I)Lhz; m_6625_ + 0 o p_122196_ + n ()Lhz; m_122012_ + n (I)Lhz; m_6630_ + 0 o p_122198_ + o (I)Lhz; m_142393_ + 0 o p_175339_ + o ()Lhz; m_7495_ + p (I)Lgu$a; m_142451_ + 0 o p_175341_ + p ()Lhz; m_7494_ + q (I)Lgu$a; m_142448_ + 0 o p_175343_ + r (I)Lgu$a; m_142443_ + 0 o p_175345_ + s (I)Lhz; m_142443_ + 0 o p_175347_ + t (I)Lhz; m_142448_ + 0 o p_175349_ + u (I)Lhz; m_142451_ + 0 o p_175351_ +gv net/minecraft/core/BlockSource + a ()D m_7096_ + b ()D m_7098_ + c ()D m_7094_ + d ()Lgu; m_7961_ + e ()Ldcb; m_6414_ + f ()Lczn; m_8118_ + g ()Laif; m_7727_ +gw net/minecraft/core/BlockSourceImpl + a f_122210_ + b f_122211_ + (Laif;Lgu;)V + 0 o p_122213_ + 1 o p_122214_ + a ()D m_7096_ + b ()D m_7098_ + c ()D m_7094_ + d ()Lgu; m_7961_ + e ()Ldcb; m_6414_ + f ()Lczn; m_8118_ + g ()Laif; m_7727_ +gx net/minecraft/core/Cursor3D + a f_175352_ + b f_175353_ + c f_175354_ + d f_175355_ + e f_122286_ + f f_122287_ + g f_122288_ + h f_122289_ + i f_122290_ + j f_122291_ + k f_122292_ + l f_122293_ + m f_122294_ + n f_122295_ + o f_122296_ + (IIIIII)V + 0 o p_122298_ + 1 o p_122299_ + 2 o p_122300_ + 3 o p_122301_ + 4 o p_122302_ + 5 o p_122303_ + a ()Z m_122304_ + b ()I m_122305_ + c ()I m_122306_ + d ()I m_122307_ + e ()I m_122308_ +gy net/minecraft/core/DefaultedMappedRegistry + b f_256918_ + c f_256925_ + (Ljava/lang/String;Lacp;Lcom/mojang/serialization/Lifecycle;Z)V + 0 o p_260196_ + 1 o p_259440_ + 2 o p_260260_ + 3 o p_259808_ + a (Lapf;)Ljava/util/Optional; m_213642_ + 0 o p_260255_ + a (Lacq;)Ljava/lang/Object; m_7745_ + 0 o p_260004_ + a ()Lacq; m_122315_ + a (I)Ljava/lang/Object; m_7942_ + 0 o p_259534_ + a (Ljava/lang/Object;)I m_7447_ + 0 o p_260033_ + a (ILacp;Ljava/lang/Object;Lcom/mojang/serialization/Lifecycle;)Lhe$c; m_203704_ + 0 o p_259787_ + 1 o p_259677_ + 2 o p_259430_ + 3 o p_259516_ + b (ILacp;Ljava/lang/Object;Lcom/mojang/serialization/Lifecycle;)Lhe; m_203704_ + 0 o p_259061_ + 1 o p_259424_ + 2 o p_260058_ + 3 o p_259431_ + b (Ljava/lang/Object;)Lacq; m_7981_ + 0 o p_259233_ + b (Lacq;)Ljava/util/Optional; m_6612_ + 0 o p_260078_ + v ()Ljava/util/Optional; m_257799_ +gz net/minecraft/core/DefaultedRegistry + a (Lacq;)Ljava/lang/Object; m_7745_ + 0 o p_122328_ + a ()Lacq; m_122315_ + a (I)Ljava/lang/Object; m_7942_ + 0 o p_122317_ + b (Ljava/lang/Object;)Lacq; m_7981_ + 0 o p_122330_ +h com/mojang/math/OctahedralGroup + A INVERT_Y + B INVERT_Z + C ROT_60_REF_NNN + D ROT_60_REF_NNP + E ROT_60_REF_NPN + F ROT_60_REF_NPP + G ROT_60_REF_PNN + H ROT_60_REF_PNP + I ROT_60_REF_PPN + J ROT_60_REF_PPP + K SWAP_XY + L SWAP_YZ + M SWAP_XZ + N SWAP_NEG_XY + O SWAP_NEG_YZ + P SWAP_NEG_XZ + Q ROT_90_REF_X_NEG + R ROT_90_REF_X_POS + S ROT_90_REF_Y_NEG + T ROT_90_REF_Y_POS + U ROT_90_REF_Z_NEG + V ROT_90_REF_Z_POS + X f_56473_ + Y f_56474_ + Z f_56475_ + a IDENTITY + aa f_56476_ + ab f_56478_ + ac f_56479_ + ad f_56480_ + ae f_56481_ + af f_56482_ + ag $VALUES + b ROT_180_FACE_XY + c ROT_180_FACE_XZ + d ROT_180_FACE_YZ + e ROT_120_NNN + f ROT_120_NNP + g ROT_120_NPN + h ROT_120_NPP + i ROT_120_PNN + j ROT_120_PNP + k ROT_120_PPN + l ROT_120_PPP + m ROT_180_EDGE_XY_NEG + n ROT_180_EDGE_XY_POS + o ROT_180_EDGE_XZ_NEG + p ROT_180_EDGE_XZ_POS + q ROT_180_EDGE_YZ_NEG + r ROT_180_EDGE_YZ_POS + s ROT_90_X_NEG + t ROT_90_X_POS + u ROT_90_Y_NEG + v ROT_90_Y_POS + w ROT_90_Z_NEG + x ROT_90_Z_POS + y INVERSION + z INVERT_X + ()V + static + (Ljava/lang/String;ILjava/lang/String;Li;ZZZ)V + 0 o p_56511_ + 1 o p_56512_ + 2 o p_56513_ + 3 o p_56514_ + 4 o p_56515_ + 5 o p_56516_ + 6 o p_56517_ + a (I)[Lh; m_56519_ + static + 0 o p_56520_ + a (Lha$a;)Z m_56526_ + 0 o p_56527_ + a (Lhc;)Lhc; m_56530_ + 0 o p_56531_ + a (Lh;Lh;)Z m_174945_ + static + 0 o p_174946_ + 1 o p_174947_ + a (Lh;)Lh; m_56521_ + 0 o p_56522_ + a ()Lh; m_174944_ + a ([[Lh;)V m_56532_ + static + 0 o p_56533_ + a (Lha;)Lha; m_56528_ + 0 o p_56529_ + b ()Lorg/joml/Matrix3f; m_253203_ + b (Lh;)Lh; m_56535_ + static + 0 o p_56536_ + c ()Ljava/lang/String; m_7912_ + c (Lh;)Lh; m_174949_ + static + 0 o p_174950_ + d ()Lit/unimi/dsi/fastutil/booleans/BooleanList; m_56534_ + d (Lh;)Lcom/mojang/datafixers/util/Pair; m_174951_ + static + 0 o p_174952_ + e ()[Lh; m_174953_ + static + toString ()Ljava/lang/String; toString + valueOf (Ljava/lang/String;)Lh; valueOf + static + 0 o p_56543_ + values ()[Lh; values + static +h$1 com/mojang/math/OctahedralGroup$1 + a f_56545_ + ()V + static +ha net/minecraft/core/Direction + a DOWN + b UP + c NORTH + d SOUTH + e WEST + f EAST + g f_175356_ + h f_194527_ + i f_122339_ + j f_122340_ + k f_122341_ + l f_122342_ + m f_122343_ + n f_122344_ + o f_122345_ + p f_122346_ + q f_122348_ + r f_122349_ + s $VALUES + ()V + static + (Ljava/lang/String;IIIILjava/lang/String;Lha$b;Lha$a;Lhz;)V + 0 o p_122354_ + 1 o p_122355_ + 2 o p_122356_ + 3 o p_122357_ + 4 o p_122358_ + 5 o p_122359_ + 6 o p_122360_ + 7 o p_122361_ + 8 o p_122362_ + a (FFF)Lha; m_122372_ + static + 0 o p_122373_ + 1 o p_122374_ + 2 o p_122375_ + a (DDD)Lha; m_122366_ + static + 0 o p_122367_ + 1 o p_122368_ + 2 o p_122369_ + a (Lbfj;)[Lha; m_122382_ + static + 0 o p_122383_ + a (D)Lha; m_122364_ + static + 0 o p_122365_ + a (Lha;Lha;Lha;)[Lha; m_122398_ + static + 0 o p_122399_ + 1 o p_122400_ + 2 o p_122401_ + a (Lbfj;Lha$a;)Lha; m_175357_ + static + 0 o p_175358_ + 1 o p_175359_ + a (Lorg/joml/Matrix4f;Lha;)Lha; m_252919_ + static + 0 o p_254393_ + 1 o p_254252_ + a (Ljava/lang/String;)Lha; m_122402_ + static + 0 o p_122403_ + a (Lapf;)Ljava/util/Collection; m_235667_ + static + 0 o p_235668_ + a (F)Z m_122370_ + 0 o p_122371_ + a (III)Lha; m_122378_ + static + 0 o p_278323_ + 1 o p_278296_ + 2 o p_278347_ + a (Lha$a;)Lha; m_175362_ + 0 o p_175363_ + a ()Ljava/util/stream/Stream; m_235666_ + static + a (Lha$b;Lha$a;)Lha; m_122390_ + static + 0 o p_122391_ + 1 o p_122392_ + a (Lha;)Lcom/mojang/serialization/DataResult; m_194528_ + static + 0 o p_194529_ + a (Lha$a;Lha$b;)Lha; m_122387_ + static + 0 o p_122388_ + 1 o p_122389_ + a (I)Lha; m_122376_ + static + 0 o p_122377_ + b ()Lorg/joml/Quaternionf; m_253075_ + b (Lha;)I m_235682_ + static + 0 o p_235683_ + b (I)Lha; m_122407_ + static + 0 o p_122408_ + b (Lapf;)Lha; m_235672_ + static + 0 o p_235673_ + b (Lha$a;)Lha; m_175364_ + 0 o p_175365_ + c (I)[Lha; m_235676_ + static + 0 o p_235677_ + c ()Ljava/lang/String; m_7912_ + c (Lha;)Z m_235684_ + static + 0 o p_235685_ + d (I)[Lha; m_235680_ + static + 0 o p_235681_ + d (Lha;)I m_235686_ + static + 0 o p_235687_ + d ()I m_122411_ + e ()I m_122416_ + f ()Lha$b; m_122421_ + g ()Lha; m_122424_ + h ()Lha; m_122427_ + i ()Lha; m_122428_ + j ()I m_122429_ + k ()I m_122430_ + l ()I m_122431_ + m ()Lorg/joml/Vector3f; m_253071_ + n ()Ljava/lang/String; m_122433_ + o ()Lha$a; m_122434_ + p ()F m_122435_ + q ()Lhz; m_122436_ + r ()Lha; m_175366_ + s ()Lha; m_175367_ + t ()Lha; m_175368_ + toString ()Ljava/lang/String; toString + u ()Lha; m_175369_ + v ()Ljava/lang/String; m_274012_ + static + valueOf (Ljava/lang/String;)Lha; valueOf + static + 0 o p_122439_ + values ()[Lha; values + static + w ()[Lha; m_175370_ + static +ha$1 net/minecraft/core/Direction$1 + a f_122441_ + b f_122442_ + ()V + static +ha$a net/minecraft/core/Direction$Axis + a X + b Y + c Z + d f_122448_ + e f_122447_ + f f_122450_ + g $VALUES + ()V + static + (Ljava/lang/String;ILjava/lang/String;)V + 0 o p_122454_ + 1 o p_122455_ + 2 o p_122456_ + a (DDD)D m_6150_ + 0 o p_122463_ + 1 o p_122464_ + 2 o p_122465_ + a (III)I m_7863_ + 0 o p_122466_ + 1 o p_122467_ + 2 o p_122468_ + a ()Ljava/lang/String; m_122477_ + a (Lha;)Z test + 0 o p_122472_ + a (Lapf;)Lha$a; m_235688_ + static + 0 o p_235689_ + a (Ljava/lang/String;)Lha$a; m_122473_ + static + 0 o p_122474_ + b ()Z m_122478_ + c ()Ljava/lang/String; m_7912_ + d ()Z m_122479_ + e ()Lha$c; m_122480_ + f ()[Lha$a; m_175371_ + static + test (Ljava/lang/Object;)Z test + 0 o p_122482_ + toString ()Ljava/lang/String; toString + valueOf (Ljava/lang/String;)Lha$a; valueOf + static + 0 o p_122485_ + values ()[Lha$a; values + static +ha$a$1 net/minecraft/core/Direction$Axis$1 + (Ljava/lang/String;ILjava/lang/String;)V + 0 o p_122488_ + 1 o p_122489_ + 2 o p_122490_ + a (DDD)D m_6150_ + 0 o p_122492_ + 1 o p_122493_ + 2 o p_122494_ + a (III)I m_7863_ + 0 o p_122496_ + 1 o p_122497_ + 2 o p_122498_ + test (Ljava/lang/Object;)Z test + 0 o p_122500_ +ha$a$2 net/minecraft/core/Direction$Axis$2 + (Ljava/lang/String;ILjava/lang/String;)V + 0 o p_122502_ + 1 o p_122503_ + 2 o p_122504_ + a (DDD)D m_6150_ + 0 o p_122506_ + 1 o p_122507_ + 2 o p_122508_ + a (III)I m_7863_ + 0 o p_122510_ + 1 o p_122511_ + 2 o p_122512_ + test (Ljava/lang/Object;)Z test + 0 o p_122514_ +ha$a$3 net/minecraft/core/Direction$Axis$3 + (Ljava/lang/String;ILjava/lang/String;)V + 0 o p_122516_ + 1 o p_122517_ + 2 o p_122518_ + a (DDD)D m_6150_ + 0 o p_122520_ + 1 o p_122521_ + 2 o p_122522_ + a (III)I m_7863_ + 0 o p_122524_ + 1 o p_122525_ + 2 o p_122526_ + test (Ljava/lang/Object;)Z test + 0 o p_122528_ +ha$b net/minecraft/core/Direction$AxisDirection + a POSITIVE + b NEGATIVE + c f_122531_ + d f_122532_ + e $VALUES + ()V + static + (Ljava/lang/String;IILjava/lang/String;)V + 0 o p_122536_ + 1 o p_122537_ + 2 o p_122538_ + 3 o p_122539_ + a ()I m_122540_ + b ()Ljava/lang/String; m_175372_ + c ()Lha$b; m_122541_ + d ()[Lha$b; m_175373_ + static + toString ()Ljava/lang/String; toString + valueOf (Ljava/lang/String;)Lha$b; valueOf + static + 0 o p_122544_ + values ()[Lha$b; values + static +ha$c net/minecraft/core/Direction$Plane + a HORIZONTAL + b VERTICAL + c f_122548_ + d f_122549_ + e $VALUES + ()V + static + (Ljava/lang/String;I[Lha;[Lha$a;)V + 0 o p_122553_ + 1 o p_122554_ + 2 o p_122555_ + 3 o p_122556_ + a ()Ljava/util/stream/Stream; m_122557_ + a (Lapf;)Lha; m_235690_ + 0 o p_235691_ + a (Lha;)Z test + 0 o p_122559_ + b ()[Lha$c; m_175374_ + static + b (Lapf;)Lha$a; m_235692_ + 0 o p_235693_ + c (Lapf;)Ljava/util/List; m_235694_ + 0 o p_235695_ + iterator ()Ljava/util/Iterator; iterator + test (Ljava/lang/Object;)Z test + 0 o p_122566_ + valueOf (Ljava/lang/String;)Lha$c; valueOf + static + 0 o p_122568_ + values ()[Lha$c; values + static +hb net/minecraft/core/Direction8 + a NORTH + b NORTH_EAST + c EAST + d SOUTH_EAST + e SOUTH + f SOUTH_WEST + g WEST + h NORTH_WEST + i f_122586_ + j f_235696_ + k $VALUES + ()V + static + (Ljava/lang/String;I[Lha;)V + 0 o p_122590_ + 1 o p_122591_ + 2 o p_122592_ + a ()Ljava/util/Set; m_122593_ + b ()I m_235697_ + c ()I m_235698_ + d ()[Lhb; m_175375_ + static + valueOf (Ljava/lang/String;)Lhb; valueOf + static + 0 o p_122595_ + values ()[Lhb; values + static +hc net/minecraft/core/FrontAndTop + a DOWN_EAST + b DOWN_NORTH + c DOWN_SOUTH + d DOWN_WEST + e UP_EAST + f UP_NORTH + g UP_SOUTH + h UP_WEST + i WEST_UP + j EAST_UP + k NORTH_UP + l SOUTH_UP + m f_122609_ + n f_122610_ + o f_122611_ + p f_122612_ + q $VALUES + ()V + static + (Ljava/lang/String;ILjava/lang/String;Lha;Lha;)V + 0 o p_122616_ + 1 o p_122617_ + 2 o p_122618_ + 3 o p_122619_ + 4 o p_122620_ + a (Lit/unimi/dsi/fastutil/ints/Int2ObjectOpenHashMap;)V m_175376_ + static + 0 o p_175377_ + a (Lha;Lha;)Lhc; m_122622_ + static + 0 o p_122623_ + 1 o p_122624_ + a ()Lha; m_122625_ + b (Lha;Lha;)I m_122626_ + static + 0 o p_122627_ + 1 o p_122628_ + b ()Lha; m_122629_ + c ()Ljava/lang/String; m_7912_ + d ()[Lhc; m_175378_ + static + valueOf (Ljava/lang/String;)Lhc; valueOf + static + 0 o p_122631_ + values ()[Lhc; values + static +hd net/minecraft/core/GlobalPos + a f_122633_ + b f_122634_ + c f_122635_ + ()V + static + (Lacp;Lgu;)V + 0 o p_122638_ + 1 o p_122639_ + a (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; m_122641_ + static + 0 o p_122642_ + a (Lacp;Lgu;)Lhd; m_122643_ + static + 0 o p_122644_ + 1 o p_122645_ + a ()Lacp; m_122640_ + b ()Lgu; m_122646_ + equals (Ljava/lang/Object;)Z equals + 0 o p_122648_ + hashCode ()I hashCode + toString ()Ljava/lang/String; toString +he net/minecraft/core/Holder + a (Lacp;)Z m_203565_ + 0 o p_205712_ + a (Lhh;)Z m_203401_ + 0 o p_255833_ + a (Ljava/lang/Object;)Lhe; m_205709_ + static + 0 o p_205710_ + a (Lacq;)Z m_203373_ + 0 o p_205713_ + a (Ljava/util/function/Predicate;)Z m_203425_ + 0 o p_205711_ + a (Lanl;)Z m_203656_ + 0 o p_205705_ + a ()Ljava/lang/Object; m_203334_ + b ()Z m_203633_ + c ()Ljava/util/stream/Stream; m_203616_ + d ()Lcom/mojang/datafixers/util/Either; m_203439_ + e ()Ljava/util/Optional; m_203543_ + f ()Lhe$b; m_203376_ +he$a net/minecraft/core/Holder$Direct + a f_205714_ + (Ljava/lang/Object;)V + 0 o f_205714_ + a (Lacp;)Z m_203565_ + 0 o p_205725_ + a (Lhh;)Z m_203401_ + 0 o p_256328_ + a (Lacq;)Z m_203373_ + 0 o p_205727_ + a (Lanl;)Z m_203656_ + 0 o p_205719_ + a (Ljava/util/function/Predicate;)Z m_203425_ + 0 o p_205723_ + a ()Ljava/lang/Object; m_203334_ + b ()Z m_203633_ + c ()Ljava/util/stream/Stream; m_203616_ + d ()Lcom/mojang/datafixers/util/Either; m_203439_ + e ()Ljava/util/Optional; m_203543_ + equals (Ljava/lang/Object;)Z equals + 0 o p_205733_ + f ()Lhe$b; m_203376_ + hashCode ()I hashCode + toString ()Ljava/lang/String; toString +he$b net/minecraft/core/Holder$Kind + a REFERENCE + b DIRECT + c $VALUES + ()V + static + (Ljava/lang/String;I)V + 0 o p_205742_ + 1 o p_205743_ + a ()[Lhe$b; m_205744_ + static + valueOf (Ljava/lang/String;)Lhe$b; valueOf + static + 0 o p_205746_ + values ()[Lhe$b; values + static +he$c net/minecraft/core/Holder$Reference + a f_254697_ + b f_205749_ + c f_205750_ + d f_205751_ + e f_205752_ + (Lhe$c$a;Lhh;Lacp;Ljava/lang/Object;)V + 0 o p_256425_ + 1 o p_256562_ + 2 o p_256636_ + 3 o p_255889_ + a (Lacp;)Z m_203565_ + 0 o p_205774_ + a (Lhh;)Z m_203401_ + 0 o p_256521_ + a (Lacq;)Z m_203373_ + 0 o p_205779_ + a (Lanl;)Z m_203656_ + 0 o p_205760_ + a (Lhh;Lacp;)Lhe$c; m_254896_ + static + 0 o p_255955_ + 1 o p_255958_ + a (Lhh;Ljava/lang/Object;)Lhe$c; m_255375_ + static + 0 o p_256106_ + 1 o p_255948_ + a (Ljava/util/function/Predicate;)Z m_203425_ + 0 o p_205772_ + a (Ljava/util/Collection;)V m_205769_ + 0 o p_205770_ + a ()Ljava/lang/Object; m_203334_ + b (Lacp;)V m_246870_ + 0 o p_251943_ + b (Ljava/lang/Object;)V m_247654_ + 0 o p_249418_ + b ()Z m_203633_ + c ()Ljava/util/stream/Stream; m_203616_ + d ()Lcom/mojang/datafixers/util/Either; m_203439_ + e ()Ljava/util/Optional; m_203543_ + f ()Lhe$b; m_203376_ + g ()Lacp; m_205785_ + toString ()Ljava/lang/String; toString +he$c$a net/minecraft/core/Holder$Reference$Type + a STAND_ALONE + b INTRUSIVE + c $VALUES + ()V + static + (Ljava/lang/String;I)V + 0 o p_205792_ + 1 o p_205793_ + a ()[Lhe$c$a; m_205794_ + static + valueOf (Ljava/lang/String;)Lhe$c$a; valueOf + static + 0 o p_205796_ + values ()[Lhe$c$a; values + static +hf net/minecraft/core/HolderGetter + a (Lanl;)Ljava/util/Optional; m_254901_ + 0 o p_256283_ + a (Lacp;)Ljava/util/Optional; m_254902_ + 0 o p_255645_ + b (Lacp;)Lhe$c; m_255043_ + 0 o p_255990_ + b (Lanl;)Lhi$c; m_254956_ + 0 o p_256125_ + c (Lanl;)Ljava/lang/IllegalStateException; m_255357_ + static + 0 o p_256440_ + c (Lacp;)Ljava/lang/IllegalStateException; m_255029_ + static + 0 o p_255786_ +hf$a net/minecraft/core/HolderGetter$Provider + a (Lacp;)Ljava/util/Optional; m_255095_ + 0 o p_256648_ + b (Lacp;)Lhf; m_254974_ + 0 o p_255881_ + c (Lacp;)Ljava/lang/IllegalStateException; m_255318_ + static + 0 o p_256183_ +hg net/minecraft/core/HolderLookup + a (Ljava/util/function/Predicate;)Lhg; m_255348_ + 0 o p_256028_ + b ()Ljava/util/stream/Stream; m_214062_ + c ()Ljava/util/stream/Stream; m_255209_ + d ()Ljava/util/stream/Stream; m_214063_ + e ()Ljava/util/stream/Stream; m_255107_ +hg$1 net/minecraft/core/HolderLookup$1 + a f_254636_ + b f_254633_ + (Lhg;Lhg;Ljava/util/function/Predicate;)V + 0 o p_255705_ + 1 o p_256383_ + 2 o p_256210_ + a (Ljava/util/function/Predicate;Lhe$c;)Z m_255425_ + static + 0 o p_256356_ + 1 o p_255794_ + a (Lacp;)Ljava/util/Optional; m_254902_ + 0 o p_255836_ + b (Ljava/util/function/Predicate;Lhe$c;)Z m_255004_ + static + 0 o p_256225_ + 1 o p_256496_ + b ()Ljava/util/stream/Stream; m_214062_ +hg$a net/minecraft/core/HolderLookup$Delegate + c f_254653_ + (Lhg;)V + 0 o p_256052_ + a (Lanl;)Ljava/util/Optional; m_254901_ + 0 o p_256388_ + a (Lacp;)Ljava/util/Optional; m_254902_ + 0 o p_256195_ + b ()Ljava/util/stream/Stream; m_214062_ + d ()Ljava/util/stream/Stream; m_214063_ +hg$b net/minecraft/core/HolderLookup$Provider + a (Ljava/util/stream/Stream;)Lhg$b; m_254973_ + static + 0 o p_256054_ + a ()Lhf$a; m_255325_ + a (Lhg$c;)Lhg$c; m_255063_ + static + 0 o p_256335_ + a (Lacp;)Ljava/util/Optional; m_254861_ + 0 o p_256285_ + b (Lacp;)Lhg$c; m_255025_ + 0 o p_255957_ + e (Lacp;)Ljava/lang/IllegalStateException; m_255059_ + static + 0 o p_256135_ +hg$b$1 net/minecraft/core/HolderLookup$Provider$1 + a f_254657_ + (Lhg$b;)V + 0 o p_255687_ + a (Lhg$c;)Lhf; m_254940_ + static + 0 o p_255952_ + a (Lacp;)Ljava/util/Optional; m_255095_ + 0 o p_256379_ +hg$b$2 net/minecraft/core/HolderLookup$Provider$2 + a f_254702_ + (Ljava/util/Map;)V + 0 o p_256421_ + a (Lacp;)Ljava/util/Optional; m_254861_ + 0 o p_255663_ +hg$c net/minecraft/core/HolderLookup$RegistryLookup + a (Lcaw;)Lhg; m_245140_ + 0 o p_249397_ + a (Lcaw;Ljava/lang/Object;)Z m_246849_ + static + 0 o p_249658_ + 1 o p_250240_ + f ()Lacp; m_254879_ + g ()Lcom/mojang/serialization/Lifecycle; m_254883_ +hg$c$a net/minecraft/core/HolderLookup$RegistryLookup$Delegate + ()V + a (Lanl;)Ljava/util/Optional; m_254901_ + 0 o p_256245_ + a ()Lhg$c; m_254893_ + a (Lacp;)Ljava/util/Optional; m_254902_ + 0 o p_255619_ + b ()Ljava/util/stream/Stream; m_214062_ + d ()Ljava/util/stream/Stream; m_214063_ + f ()Lacp; m_254879_ + g ()Lcom/mojang/serialization/Lifecycle; m_254883_ +hh net/minecraft/core/HolderOwner + a (Lhh;)Z m_254921_ + 0 o p_255875_ +hi net/minecraft/core/HolderSet + a (Lapf;)Ljava/util/Optional; m_213653_ + 0 o p_235712_ + a (Lhh;)Z m_207277_ + 0 o p_255749_ + a (Ljava/util/function/Function;Ljava/util/List;)Lhi$a; m_205803_ + static + 0 o p_205804_ + 1 o p_205805_ + a (Lhh;Lanl;)Lhi$c; m_255229_ + static + 0 o p_255858_ + 1 o p_256459_ + a (Lhe;)Z m_203333_ + 0 o p_205799_ + a (Ljava/util/List;)Lhi$a; m_205800_ + static + 0 o p_205801_ + a ([Lhe;)Lhi$a; m_205809_ + static + 0 o p_205810_ + a ()Ljava/util/stream/Stream; m_203614_ + a (I)Lhe; m_203662_ + 0 o p_205798_ + a (Ljava/util/function/Function;[Ljava/lang/Object;)Lhi$a; m_205806_ + static + 0 o p_205807_ + 1 o p_205808_ + b ()I m_203632_ + c ()Lcom/mojang/datafixers/util/Either; m_203440_ + d ()Ljava/util/Optional; m_245234_ +hi$a net/minecraft/core/HolderSet$Direct + a f_205811_ + b f_205812_ + (Ljava/util/List;)V + 0 o p_205814_ + a (Lhe;)Z m_203333_ + 0 o p_205816_ + c ()Lcom/mojang/datafixers/util/Either; m_203440_ + d ()Ljava/util/Optional; m_245234_ + e ()Ljava/util/List; m_203661_ + toString ()Ljava/lang/String; toString +hi$b net/minecraft/core/HolderSet$ListBacked + ()V + a (Lapf;)Ljava/util/Optional; m_213653_ + 0 o p_235714_ + a (Lhh;)Z m_207277_ + 0 o p_255876_ + a ()Ljava/util/stream/Stream; m_203614_ + a (I)Lhe; m_203662_ + 0 o p_205823_ + b ()I m_203632_ + e ()Ljava/util/List; m_203661_ + iterator ()Ljava/util/Iterator; iterator + spliterator ()Ljava/util/Spliterator; spliterator +hi$c net/minecraft/core/HolderSet$Named + a f_254711_ + b f_205829_ + c f_205830_ + (Lhh;Lanl;)V + 0 o p_256118_ + 1 o p_256597_ + a (Lhh;)Z m_207277_ + 0 o p_256542_ + a (Lhe;)Z m_203333_ + 0 o p_205834_ + b (Ljava/util/List;)V m_205835_ + 0 o p_205836_ + c ()Lcom/mojang/datafixers/util/Either; m_203440_ + d ()Ljava/util/Optional; m_245234_ + e ()Ljava/util/List; m_203661_ + f ()Lanl; m_205839_ + toString ()Ljava/lang/String; toString +hj net/minecraft/core/IdMap + a f_194530_ + a (I)Ljava/lang/Object; m_7942_ + 0 o p_122651_ + a (Ljava/lang/Object;)I m_7447_ + 0 o p_122652_ + b (I)Ljava/lang/Object; m_200957_ + 0 o p_200958_ + b ()I m_13562_ +hk net/minecraft/core/IdMapper + b f_122653_ + c f_122654_ + d f_122655_ + (I)V + 0 o p_122658_ + ()V + a (I)Ljava/lang/Object; m_7942_ + 0 o p_122661_ + a (Ljava/lang/Object;I)V m_122664_ + 0 o p_122665_ + 1 o p_122666_ + a (Ljava/lang/Object;)I m_7447_ + 0 o p_122663_ + b ()I m_13562_ + b (Ljava/lang/Object;)V m_122667_ + 0 o p_122668_ + c (I)Z m_175380_ + 0 o p_175381_ + iterator ()Ljava/util/Iterator; iterator +hl net/minecraft/core/LayeredRegistryAccess + a f_244209_ + b f_244050_ + c f_244063_ + (Ljava/util/List;)V + 0 o p_251225_ + (Ljava/util/List;Ljava/util/List;)V + 0 o p_250473_ + 1 o p_249320_ + a (Ljava/util/Map;Lhs;)V m_245684_ + static + 0 o p_251596_ + 1 o p_252003_ + a (Ljava/util/stream/Stream;)Ljava/util/Map; m_246119_ + static + 0 o p_248595_ + a (II)Lhs$b; m_247441_ + 0 o p_251526_ + 1 o p_251999_ + a ()Lhs$b; m_247579_ + a (Ljava/lang/Object;[Lhs$b;)Lhl; m_247705_ + 0 o p_252104_ + 1 o p_250492_ + a (Ljava/lang/Object;Ljava/util/List;)Lhl; m_245589_ + 0 o p_249539_ + 1 o p_250124_ + a (Ljava/util/List;)Ljava/util/List; m_247702_ + static + 0 o p_252066_ + a (Ljava/lang/Object;)Lhs$b; m_245283_ + 0 o p_250826_ + a (Ljava/util/Map;Lhs$d;)V m_245473_ + static + 0 o p_249132_ + 1 o p_250413_ + b (Ljava/lang/Object;)Lhs$b; m_246035_ + 0 o p_251335_ + c (Ljava/lang/Object;)Lhs$b; m_245317_ + 0 o p_250766_ + d (Ljava/lang/Object;)I m_247084_ + 0 o p_250144_ +hm net/minecraft/core/MappedRegistry + b f_211050_ + c f_256817_ + d f_122672_ + e f_122673_ + f f_205841_ + g f_205842_ + h f_205843_ + i f_122676_ + j f_256989_ + k f_205844_ + l f_205845_ + m f_244282_ + n f_211051_ + o f_122678_ + p f_256971_ + ()V + static + (Lacp;Lcom/mojang/serialization/Lifecycle;Z)V + 0 o p_252132_ + 1 o p_249215_ + 2 o p_251014_ + (Lacp;Lcom/mojang/serialization/Lifecycle;)V + 0 o p_249899_ + 1 o p_252249_ + a (Ljava/util/Map;Lhe$c;)V m_211799_ + static + 0 o p_211800_ + 1 o p_211801_ + a (Ljava/util/Map$Entry;)Lacq; m_211793_ + static + 0 o p_211794_ + a (Lapf;)Ljava/util/Optional; m_213642_ + 0 o p_235716_ + a (Lanl;)Lhi$c; m_203561_ + 0 o p_205895_ + a (Lhe$c;)Ljava/lang/Object; m_205865_ + static + 0 o p_205866_ + a (Lacp;Ljava/lang/Object;Lcom/mojang/serialization/Lifecycle;)Lhe$c; m_255290_ + 0 o p_256252_ + 1 o p_256591_ + 2 o p_256255_ + a (Lit/unimi/dsi/fastutil/objects/Object2IntOpenCustomHashMap;)V m_194538_ + static + 0 o p_194539_ + a (Ljava/util/Map;Lanl;Ljava/util/List;)V m_211795_ + 0 o p_211796_ + 1 o p_211797_ + 2 o p_211798_ + a (Ljava/lang/Object;)I m_7447_ + 0 o p_122706_ + a (Lacp;)Ljava/lang/Object; m_6246_ + 0 o p_122714_ + a ()Ljava/util/List; m_211053_ + a (Ljava/lang/Object;Lhe$c;)V m_244758_ + static + 0 o p_247989_ + 1 o p_247990_ + a (ILacp;Ljava/lang/Object;Lcom/mojang/serialization/Lifecycle;)Lhe$c; m_203704_ + 0 o p_256563_ + 1 o p_256594_ + 2 o p_256374_ + 3 o p_256469_ + a (Lhi$c;)V m_211791_ + static + 0 o p_211792_ + a (Lacq;)Ljava/lang/Object; m_7745_ + 0 o p_122739_ + a (Ljava/util/Map;)V m_203652_ + 0 o p_205875_ + a (I)Ljava/lang/Object; m_7942_ + 0 o p_122684_ + b (Ljava/util/Map$Entry;)Z m_211054_ + static + 0 o p_211055_ + b (Lacp;)Ljava/util/Optional; m_203636_ + 0 o p_205905_ + b (Ljava/util/Map;Lanl;Ljava/util/List;)V m_211804_ + 0 o p_211805_ + 1 o p_211806_ + 2 o p_211807_ + b (Lhe$c;)V m_211802_ + static + 0 o p_211803_ + b (ILacp;Ljava/lang/Object;Lcom/mojang/serialization/Lifecycle;)Lhe; m_203704_ + 0 o p_205853_ + 1 o p_205854_ + 2 o p_205855_ + 3 o p_205856_ + b (Ljava/lang/Object;)Lacq; m_7981_ + 0 o p_122746_ + b ()I m_13562_ + b (Lanl;)Ljava/util/Optional; m_203431_ + 0 o p_205909_ + c (Ljava/lang/Object;)Ljava/util/Optional; m_7854_ + 0 o p_122755_ + c (I)Ljava/util/Optional; m_203300_ + 0 o p_205907_ + c (Lacp;)Z m_142003_ + 0 o p_175392_ + c (Lacq;)Z m_7804_ + 0 o p_122761_ + c (Ljava/util/Map$Entry;)Lcom/mojang/datafixers/util/Pair; m_211059_ + static + 0 o p_211060_ + c ()Lacp; m_123023_ + d (Ljava/lang/Object;)Lhe; m_263177_ + 0 o p_263356_ + d (Lanl;)Lhi$c; m_211067_ + 0 o p_211068_ + d ()Lcom/mojang/serialization/Lifecycle; m_203658_ + e (Ljava/lang/Object;)Lcom/mojang/serialization/Lifecycle; m_6228_ + 0 o p_122764_ + e ()Ljava/util/Set; m_6566_ + e (Lanl;)Ljava/lang/String; m_211810_ + static + 0 o p_211811_ + f ()Ljava/util/Set; m_214010_ + f (Ljava/lang/Object;)Lhe$c; m_203693_ + 0 o p_205915_ + g ()Ljava/util/Set; m_6579_ + g (Lacp;)V m_205921_ + 0 o p_205922_ + g (Ljava/lang/Object;)Lhe$c; m_257092_ + 0 o p_258166_ + h ()Ljava/util/stream/Stream; m_203611_ + h (Lacp;)Lhe$c; m_245420_ + 0 o p_248831_ + i ()Ljava/util/stream/Stream; m_203612_ + i (Lacp;)Lhe$c; m_257095_ + 0 o p_258169_ + iterator ()Ljava/util/Iterator; iterator + j ()Ljava/util/stream/Stream; m_203613_ + j (Lacp;)Lhe$c; m_257094_ + 0 o p_258168_ + k ()Z m_142427_ + k (Lacp;)Ljava/lang/String; m_257093_ + static + 0 o p_258167_ + l ()Lhr; m_203521_ + m ()V m_203635_ + n ()Lhf; m_203505_ + o ()Lhh; m_255331_ + p ()Lhg$c; m_255303_ + toString ()Ljava/lang/String; toString + v ()V m_245419_ +hm$1 net/minecraft/core/MappedRegistry$1 + a f_254673_ + (Lhm;)V + 0 o p_256271_ + a (Lanl;)Ljava/util/Optional; m_254901_ + 0 o p_256277_ + a (Lacp;)Ljava/util/Optional; m_254902_ + 0 o p_255624_ + b ()Ljava/util/stream/Stream; m_214062_ + d ()Ljava/util/stream/Stream; m_214063_ + f ()Lacp; m_254879_ + g ()Lcom/mojang/serialization/Lifecycle; m_254883_ +hm$2 net/minecraft/core/MappedRegistry$2 + a f_256893_ + (Lhm;)V + 0 o p_259785_ + a (Lanl;)Ljava/util/Optional; m_254901_ + 0 o p_259486_ + a (Lacp;)Ljava/util/Optional; m_254902_ + 0 o p_259097_ + b (Lacp;)Lhe$c; m_255043_ + 0 o p_259750_ + b (Lanl;)Lhi$c; m_254956_ + 0 o p_260298_ +hn net/minecraft/core/NonNullList + a f_122773_ + b f_122774_ + (Ljava/util/List;Ljava/lang/Object;)V + 0 o p_122777_ + 1 o p_122778_ + a (I)Lhn; m_182647_ + static + 0 o p_182648_ + a (Ljava/lang/Object;[Ljava/lang/Object;)Lhn; m_122783_ + static + 0 o p_122784_ + 1 o p_122785_ + a (ILjava/lang/Object;)Lhn; m_122780_ + static + 0 o p_122781_ + 1 o p_122782_ + a ()Lhn; m_122779_ + static + add (ILjava/lang/Object;)V add + 0 o p_122787_ + 1 o p_122788_ + clear ()V clear + get (I)Ljava/lang/Object; get + 0 o p_122791_ + remove (I)Ljava/lang/Object; remove + 0 o p_122793_ + set (ILjava/lang/Object;)Ljava/lang/Object; set + 0 o p_122795_ + 1 o p_122796_ + size ()I size +ho net/minecraft/core/Position + a ()D m_7096_ + b ()D m_7098_ + c ()D m_7094_ +hp net/minecraft/core/PositionImpl + a f_122798_ + b f_122799_ + c f_122800_ + (DDD)V + 0 o p_122802_ + 1 o p_122803_ + 2 o p_122804_ + a ()D m_7096_ + b ()D m_7098_ + c ()D m_7094_ +hq net/minecraft/core/QuartPos + a f_175396_ + b f_175397_ + c f_194564_ + d f_175398_ + ()V + a (I)I m_175400_ + static + 0 o p_175401_ + b (I)I m_198376_ + static + 0 o p_198377_ + c (I)I m_175402_ + static + 0 o p_175403_ + d (I)I m_175404_ + static + 0 o p_175405_ + e (I)I m_175406_ + static + 0 o p_175407_ +hr net/minecraft/core/Registry + a (Lapf;)Ljava/util/Optional; m_213642_ + 0 o p_235781_ + a (Lanl;)Lhi$c; m_203561_ + 0 o p_206045_ + a (Lhr;Ljava/lang/String;Ljava/lang/Object;)Ljava/lang/Object; m_122961_ + static + 0 o p_122962_ + 1 o p_122963_ + 2 o p_122964_ + a (Lhr;Lacp;Ljava/lang/Object;)Ljava/lang/Object; m_194579_ + static + 0 o p_194580_ + 1 o p_194581_ + 2 o p_194582_ + a (Ljava/lang/Object;)I m_7447_ + 0 o p_122977_ + a (Lacp;)Ljava/lang/Object; m_6246_ + 0 o p_122980_ + a (Lhr;ILjava/lang/String;Ljava/lang/Object;)Ljava/lang/Object; m_122956_ + static + 0 o p_122957_ + 1 o p_122958_ + 2 o p_122959_ + 3 o p_122960_ + a (Lhe;)Lcom/mojang/serialization/Lifecycle; m_257097_ + 0 o p_258171_ + a (Lacq;)Ljava/lang/Object; m_7745_ + 0 o p_123002_ + a (Lhr;Lacq;Ljava/lang/Object;)Ljava/lang/Object; m_122965_ + static + 0 o p_122966_ + 1 o p_122967_ + 2 o p_122968_ + a (Lcom/mojang/serialization/DynamicOps;Lacq;)Ljava/lang/Object; m_235782_ + static + 0 o p_235783_ + 1 o p_235784_ + a (Ljava/util/Map;)V m_203652_ + 0 o p_205997_ + b (Lhr;Lacp;Ljava/lang/Object;)Lhe$c; m_263175_ + static + 0 o p_263347_ + 1 o p_263355_ + 2 o p_263428_ + b (Lacq;)Ljava/util/Optional; m_6612_ + 0 o p_123007_ + b (Lacp;)Ljava/util/Optional; m_203636_ + 0 o p_206050_ + b (Lhr;Lacq;Ljava/lang/Object;)Lhe$c; m_263174_ + static + 0 o p_263351_ + 1 o p_263363_ + 2 o p_263423_ + b (Lhe;)Lcom/mojang/serialization/Lifecycle; m_257104_ + 0 o p_258178_ + b (Ljava/lang/Object;)Lacq; m_7981_ + 0 o p_123006_ + b (Lanl;)Ljava/util/Optional; m_203431_ + 0 o p_206052_ + c (Ljava/lang/Object;)Ljava/util/Optional; m_7854_ + 0 o p_123008_ + c (I)Ljava/util/Optional; m_203300_ + 0 o p_206051_ + c (Lanl;)Ljava/lang/Iterable; m_206058_ + 0 o p_206059_ + c (Lacp;)Z m_142003_ + 0 o p_175475_ + c (Lacq;)Z m_7804_ + 0 o p_123011_ + c ()Lacp; m_123023_ + c (Lhe;)Lcom/mojang/serialization/DataResult; m_206060_ + 0 o p_206061_ + d (Ljava/lang/Object;)Lhe; m_263177_ + 0 o p_263382_ + d (Lacq;)Lcom/mojang/serialization/DataResult; m_257100_ + 0 o p_258174_ + d (Lhe;)Lcom/mojang/serialization/DataResult; m_274016_ + 0 o p_274725_ + d ()Lcom/mojang/serialization/Lifecycle; m_203658_ + d (Lacp;)Ljava/util/Optional; m_123009_ + 0 o p_123010_ + e (Ljava/lang/Object;)Lcom/mojang/serialization/Lifecycle; m_6228_ + 0 o p_123012_ + e ()Ljava/util/Set; m_6566_ + e (Lacp;)Ljava/lang/Object; m_123013_ + 0 o p_123014_ + e (Lacq;)Lcom/mojang/serialization/DataResult; m_274014_ + 0 o p_274723_ + e (Lhe;)Ljava/lang/String; m_274020_ + 0 o p_274729_ + f ()Ljava/util/Set; m_214010_ + f (Ljava/lang/Object;)Lhe$c; m_203693_ + 0 o p_206068_ + f (Lacq;)Ljava/lang/String; m_274018_ + 0 o p_274727_ + f (Lacp;)Lhe$c; m_246971_ + 0 o p_249087_ + g ()Ljava/util/Set; m_6579_ + g (Lacq;)Lcom/mojang/serialization/DataResult; m_257096_ + 0 o p_258170_ + g (Lacp;)Ljava/lang/IllegalStateException; m_257106_ + 0 o p_258180_ + g (Ljava/lang/Object;)I m_257105_ + 0 o p_258179_ + h (Ljava/lang/Object;)Lcom/mojang/serialization/DataResult; m_257103_ + 0 o p_258177_ + h (Lacq;)Lcom/mojang/serialization/DataResult; m_274015_ + 0 o p_274724_ + h ()Ljava/util/stream/Stream; m_203611_ + i (Lacq;)Ljava/lang/String; m_274019_ + 0 o p_274728_ + i ()Ljava/util/stream/Stream; m_203612_ + i (Ljava/lang/Object;)Lcom/mojang/serialization/DataResult; m_274013_ + 0 o p_274722_ + j (Ljava/lang/Object;)Ljava/lang/String; m_274017_ + 0 o p_274726_ + j ()Ljava/util/stream/Stream; m_203613_ + keys (Lcom/mojang/serialization/DynamicOps;)Ljava/util/stream/Stream; keys + 0 o p_123030_ + l ()Lhr; m_203521_ + m ()V m_203635_ + o ()Lhh; m_255331_ + p ()Lhg$c; m_255303_ + q ()Lcom/mojang/serialization/Codec; m_194605_ + r ()Lcom/mojang/serialization/Codec; m_206110_ + s ()Ljava/util/stream/Stream; m_123024_ + t ()Lhj; m_206115_ + u ()Lhg$c; m_255014_ +hr$1 net/minecraft/core/Registry$1 + b f_206134_ + (Lhr;)V + 0 o p_206136_ + a (Lhe$c;)Lhe; m_257407_ + static + 0 o p_260061_ + a (I)Ljava/lang/Object; m_7942_ + 0 o p_260267_ + a (Lhe;)I m_7447_ + 0 o p_259992_ + a (Ljava/lang/Object;)I m_7447_ + 0 o p_259039_ + b ()I m_13562_ + c (I)Lhe; m_7942_ + 0 o p_259972_ + iterator ()Ljava/util/Iterator; iterator +hr$2 net/minecraft/core/Registry$2 + a f_254694_ + (Lhr;)V + 0 o p_256187_ + a (Lanl;)Ljava/util/Optional; m_254901_ + 0 o p_259111_ + a ()Lhg$c; m_254893_ + b (Lanl;)Lhi$c; m_254956_ + 0 o p_259653_ +hs net/minecraft/core/RegistryAccess + a f_123047_ + b f_243945_ + ()V + static + a (Lhr;)Lhs$b; m_206165_ + static + 0 o p_206166_ + a (Lacp;)Ljava/util/Optional; m_254861_ + 0 o p_256275_ + a (Lhs$d;)Lcom/mojang/serialization/Lifecycle; m_257107_ + static + 0 o p_258181_ + b ()Ljava/util/stream/Stream; m_206193_ + c ()Lhs$b; m_203557_ + c (Lacp;)Ljava/util/Optional; m_6632_ + 0 o p_123085_ + d (Lacp;)Lhr; m_175515_ + 0 o p_175516_ + d ()Lcom/mojang/serialization/Lifecycle; m_211816_ + f (Lacp;)Ljava/lang/IllegalStateException; m_175521_ + static + 0 o p_175522_ +hs$1 net/minecraft/core/RegistryAccess$1 + c f_206216_ + (Lhr;)V + 0 o p_206218_ + b ()Ljava/util/stream/Stream; m_206193_ + c ()Lhs$b; m_203557_ + c (Lacp;)Ljava/util/Optional; m_6632_ + 0 o p_206220_ +hs$a net/minecraft/core/RegistryAccess$1FrozenAccess + c f_244254_ + (Lhs;Ljava/util/stream/Stream;)V + 0 o p_249148_ + 1 o p_252031_ +hs$b net/minecraft/core/RegistryAccess$Frozen +hs$c net/minecraft/core/RegistryAccess$ImmutableRegistryAccess + c f_206223_ + (Ljava/util/Map;)V + 0 o p_206225_ + (Ljava/util/stream/Stream;)V + 0 o p_206227_ + (Ljava/util/List;)V + 0 o p_248540_ + b ()Ljava/util/stream/Stream; m_206193_ + b (Lhr;)Lhr; m_244761_ + static + 0 o p_247993_ + c (Lhr;)Lhr; m_206231_ + static + 0 o p_206232_ + c (Lacp;)Ljava/util/Optional; m_6632_ + 0 o p_206229_ +hs$d net/minecraft/core/RegistryAccess$RegistryEntry + a f_206233_ + b f_206234_ + (Lacp;Lhr;)V + 0 o f_206233_ + 1 o f_206234_ + a (Lacp;Lhr;)Lhs$d; m_206243_ + static + 0 o p_206244_ + 1 o p_206245_ + a (Ljava/util/Map$Entry;)Lhs$d; m_206241_ + static + 0 o p_206242_ + a ()Lacp; f_206233_ + b ()Lhr; f_206234_ + c ()Lhs$d; m_206247_ + equals (Ljava/lang/Object;)Z equals + 0 o p_206249_ + hashCode ()I hashCode + toString ()Ljava/lang/String; toString +ht net/minecraft/core/RegistryCodecs + ()V + a (Lacp;Lcom/mojang/serialization/Lifecycle;Ljava/util/List;)Lhr; m_257110_ + static + 0 o p_258186_ + 1 o p_258187_ + 2 o p_258188_ + a (Lacp;Lcom/mojang/serialization/MapCodec;Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; m_206306_ + static + 0 o p_206307_ + 1 o p_206308_ + 2 o p_206309_ + a (Lacp;)Lcom/mojang/serialization/Codec; m_206277_ + static + 0 o p_206278_ + a (Lacp;Z)Lcom/mojang/serialization/Codec; m_206310_ + static + 0 o p_206311_ + 1 o p_206312_ + a (Lacp;Lcom/mojang/serialization/Lifecycle;Ljava/util/Map;)Lhr; m_257108_ + static + 0 o p_258182_ + 1 o p_258183_ + 2 o p_258184_ + a (Lacp;Lcom/mojang/serialization/Codec;Z)Lcom/mojang/serialization/Codec; m_206287_ + static + 0 o p_206288_ + 1 o p_206289_ + 2 o p_206290_ + a (Lacp;Lcom/mojang/serialization/Lifecycle;Lcom/mojang/serialization/Codec;)Lcom/mojang/serialization/Codec; m_206291_ + static + 0 o p_206292_ + 1 o p_206293_ + 2 o p_206294_ + a (Lhr;)Ljava/util/Map; m_257112_ + static + 0 o p_258193_ + a (Lia;Lcom/mojang/serialization/Lifecycle;Lacp;Ljava/lang/Object;)V m_257111_ + static + 0 o p_258189_ + 1 o p_258190_ + 2 o p_258191_ + 3 o p_258192_ + a (Lacp;Lcom/mojang/serialization/Codec;)Lcom/mojang/serialization/Codec; m_206279_ + static + 0 o p_206280_ + 1 o p_206281_ + a (Lacp;Lcom/mojang/serialization/MapCodec;)Lcom/mojang/serialization/MapCodec; m_206303_ + static + 0 o p_206304_ + 1 o p_206305_ + b (Lacp;Lcom/mojang/serialization/Lifecycle;Lcom/mojang/serialization/Codec;)Lcom/mojang/serialization/Codec; m_246213_ + static + 0 o p_248884_ + 1 o p_251810_ + 2 o p_250169_ + b (Lhr;)Ljava/util/List; m_257109_ + static + 0 o p_258185_ +ht$a net/minecraft/core/RegistryCodecs$RegistryEntry + a f_206354_ + b f_206355_ + c f_206356_ + (Lacp;ILjava/lang/Object;)V + 0 o f_206354_ + 1 o f_206355_ + 2 o f_206356_ + a ()Lacp; f_206354_ + b ()I f_206355_ + c ()Ljava/lang/Object; f_206356_ + equals (Ljava/lang/Object;)Z equals + 0 o p_206365_ + hashCode ()I hashCode + toString ()Ljava/lang/String; toString +hu net/minecraft/core/RegistrySetBuilder + a f_254732_ + ()V + a (Lacp;Lcom/mojang/serialization/Lifecycle;Lhu$e;)Lhu; m_255162_ + 0 o p_256446_ + 1 o p_256394_ + 2 o p_256638_ + a (Ljava/util/Map;Lhu$f;)V m_271567_ + static + 0 o p_272340_ + 1 o p_272341_ + a (Lhs$d;)Lhg$c; m_257113_ + static + 0 o p_258194_ + a (Lhu$a;Lhu$g;)Lhu$f; m_271565_ + static + 0 o p_272336_ + 1 o p_272337_ + a (Lhs;Lhg$b;)Lhg$b; m_254929_ + 0 o p_255676_ + 1 o p_255900_ + a (Lhs;)Lhg$b; m_255144_ + 0 o p_256112_ + a (Lhg$c;)Lhf; m_254882_ + static + 0 o p_255625_ + a (Lacp;Lhu$e;)Lhu; m_254916_ + 0 o p_256261_ + 1 o p_256010_ + b (Lhs;)Lhu$a; m_254900_ + 0 o p_256400_ + b (Lhs$d;)Lhg$c; m_257114_ + static + 0 o p_258195_ + b (Ljava/util/Map;Lhu$f;)V m_271566_ + static + 0 o p_272338_ + 1 o p_272339_ + b (Lhu$a;Lhu$g;)Lhg$c; m_255212_ + static + 0 o p_256554_ + 1 o p_255700_ + c (Lhu$a;Lhu$g;)V m_255427_ + static + 0 o p_256472_ + 1 o p_255629_ +hu$1 net/minecraft/core/RegistrySetBuilder$1 + a f_254693_ + (Lhh;Lhg$c;)V + 0 o p_256158_ + 1 o p_255829_ + a (Lacp;)Ljava/util/Optional; m_254902_ + 0 o p_255765_ +hu$a net/minecraft/core/RegistrySetBuilder$BuildState + a f_254680_ + b f_254749_ + c f_254690_ + d f_254644_ + e f_254627_ + (Lhu$b;Lhu$h;Ljava/util/Map;Ljava/util/Map;Ljava/util/List;)V + 0 o f_254680_ + 1 o f_254749_ + 2 o f_254690_ + 3 o f_254644_ + 4 o f_254627_ + a (Lhh;)V m_254987_ + 0 o p_256407_ + a (Lhs;Ljava/util/stream/Stream;)Lhu$a; m_255369_ + static + 0 o p_255995_ + 1 o p_256495_ + a (Lacp;Lhu$d;)V m_255346_ + 0 o p_256143_ + 1 o p_256662_ + a (Lcom/google/common/collect/ImmutableMap$Builder;Lhu$h;Lacp;)V m_254941_ + static + 0 o p_256627_ + 1 o p_256146_ + 2 o p_256603_ + a (Lhg$b;Lacq;)Ljava/util/Optional; m_255218_ + static + 0 o p_255728_ + 1 o p_255896_ + a (Lhe$c;Ljava/util/Iterator;Lhe$c;)V m_255352_ + static + 0 o p_255906_ + 1 o p_256524_ + 2 o p_256030_ + a (Lhg$b;)V m_255298_ + 0 o p_255679_ + a ()Lnm; m_255274_ + a (Lcom/google/common/collect/ImmutableMap$Builder;Lhs$d;)V m_257115_ + static + 0 o p_258196_ + 1 o p_258197_ + a (Lacp;Lhg;)Ljava/util/Optional; m_255312_ + static + 0 o p_256134_ + 1 o p_256068_ + a (Lacq;)Lhu$f; m_271568_ + static + 0 o p_272342_ + b ()V m_255228_ + c ()V m_255178_ + d ()Ljava/util/stream/Stream; m_272134_ + e ()Lhu$b; f_254680_ + equals (Ljava/lang/Object;)Z equals + 0 o p_256666_ + f ()Lhu$h; f_254749_ + g ()Ljava/util/Map; f_254690_ + h ()Ljava/util/Map; f_254644_ + hashCode ()I hashCode + i ()Ljava/util/List; f_254627_ + toString ()Ljava/lang/String; toString +hu$a$1 net/minecraft/core/RegistrySetBuilder$BuildState$1 + a f_254676_ + (Lhu$a;)V + 0 o p_256453_ + a (Lacp;)Lhf; m_255420_ + 0 o p_255961_ + a (Lacp;Ljava/lang/Object;Lcom/mojang/serialization/Lifecycle;)Lhe$c; m_255042_ + 0 o p_256176_ + 1 o p_256422_ + 2 o p_255924_ +hu$b net/minecraft/core/RegistrySetBuilder$CompositeOwner + a f_254663_ + ()V + a (Lhh;)Z m_254921_ + 0 o p_256333_ + b (Lhh;)V m_255436_ + 0 o p_256361_ +hu$c net/minecraft/core/RegistrySetBuilder$EmptyTagLookup + b f_254742_ + (Lhh;)V + 0 o p_256166_ + a (Lanl;)Ljava/util/Optional; m_254901_ + 0 o p_256664_ +hu$d net/minecraft/core/RegistrySetBuilder$RegisteredValue + a f_254685_ + b f_254641_ + (Ljava/lang/Object;Lcom/mojang/serialization/Lifecycle;)V + 0 o f_254685_ + 1 o f_254641_ + a ()Ljava/lang/Object; f_254685_ + b ()Lcom/mojang/serialization/Lifecycle; f_254641_ + equals (Ljava/lang/Object;)Z equals + 0 o p_255671_ + hashCode ()I hashCode + toString ()Ljava/lang/String; toString +hu$e net/minecraft/core/RegistrySetBuilder$RegistryBootstrap + run (Lnm;)V m_254966_ + 0 o p_255783_ +hu$f net/minecraft/core/RegistrySetBuilder$RegistryContents + a f_271195_ + b f_271144_ + c f_254715_ + (Lacp;Lcom/mojang/serialization/Lifecycle;Ljava/util/Map;)V + 0 o f_271195_ + 1 o f_271144_ + 2 o f_254715_ + a ()Lhg$c; m_254889_ + b ()Lacp; f_271195_ + c ()Lcom/mojang/serialization/Lifecycle; f_271144_ + d ()Ljava/util/Map; f_254715_ + equals (Ljava/lang/Object;)Z equals + 0 o p_255967_ + hashCode ()I hashCode + toString ()Ljava/lang/String; toString +hu$f$1 net/minecraft/core/RegistrySetBuilder$RegistryContents$1 + a f_254722_ + b f_254643_ + (Lhu$f;)V + 0 o p_256530_ + a (Lanl;)Ljava/util/Optional; m_254901_ + 0 o p_255810_ + a (Ljava/util/Map$Entry;)Lhe$c; m_255009_ + 0 o p_256193_ + a (Lacp;)Ljava/util/Optional; m_254902_ + 0 o p_255760_ + b (Ljava/util/Map$Entry;)Lhe$c; m_254922_ + 0 o p_255854_ + b ()Ljava/util/stream/Stream; m_214062_ + d ()Ljava/util/stream/Stream; m_214063_ + f ()Lacp; m_254879_ + g ()Lcom/mojang/serialization/Lifecycle; m_254883_ +hu$g net/minecraft/core/RegistrySetBuilder$RegistryStub + a f_254738_ + b f_254728_ + c f_254689_ + (Lacp;Lcom/mojang/serialization/Lifecycle;Lhu$e;)V + 0 o f_254738_ + 1 o f_254728_ + 2 o f_254689_ + a ()Lacp; f_254738_ + a (Lhu$a;)Lhu$f; m_254914_ + 0 o p_256416_ + b (Lhu$a;)V m_254946_ + 0 o p_256272_ + b ()Lcom/mojang/serialization/Lifecycle; f_254728_ + c ()Lhu$e; f_254689_ + equals (Ljava/lang/Object;)Z equals + 0 o p_256621_ + hashCode ()I hashCode + toString ()Ljava/lang/String; toString +hu$h net/minecraft/core/RegistrySetBuilder$UniversalLookup + a f_254730_ + (Lhh;)V + 0 o p_256629_ + a (Lacp;)Ljava/util/Optional; m_254902_ + 0 o p_256303_ + c (Lacp;)Lhe$c; m_255345_ + 0 o p_256298_ + d (Lacp;)Lhe$c; m_255379_ + 0 o p_256154_ +hu$i net/minecraft/core/RegistrySetBuilder$ValueAndHolder + a f_254683_ + b f_254632_ + (Lhu$d;Ljava/util/Optional;)V + 0 o f_254683_ + 1 o f_254632_ + a ()Lhu$d; f_254683_ + b ()Ljava/util/Optional; f_254632_ + equals (Ljava/lang/Object;)Z equals + 0 o p_256656_ + hashCode ()I hashCode + toString ()Ljava/lang/String; toString +hv net/minecraft/core/RegistrySynchronization + a f_244380_ + b f_244438_ + ()V + static + ()V + a (Lcom/mojang/serialization/codecs/UnboundedMapCodec;)Lcom/mojang/serialization/Codec; m_245940_ + static + 0 o p_249934_ + a (Lhl;)Ljava/util/stream/Stream; m_257599_ + static + 0 o p_259290_ + a (Lhs$d;)Lhr; m_245094_ + static + 0 o p_248951_ + a (Lhv$a;)Lcom/mojang/serialization/Codec; m_245863_ + static + 0 o p_250582_ + a ()Lcom/mojang/serialization/Codec; m_247146_ + static + a (Lhr;)Lcom/mojang/serialization/DataResult; m_257117_ + static + 0 o p_258198_ + a (Lcom/google/common/collect/ImmutableMap$Builder;Lacp;Lcom/mojang/serialization/Codec;)V m_245912_ + static + 0 o p_251643_ + 1 o p_249195_ + 2 o p_249212_ + a (Lacp;)Lcom/mojang/serialization/DataResult; m_245699_ + static + 0 o p_252190_ + a (Lhs;)Ljava/util/stream/Stream; m_247199_ + static + 0 o p_251842_ + a (Lacp;Lcom/mojang/serialization/Codec;)Lcom/mojang/serialization/Codec; m_246968_ + static + 0 o p_248862_ + 1 o p_252116_ + b (Lhs$d;)Lacp; m_246999_ + static + 0 o p_250395_ + b (Lhs;)Ljava/util/Map; m_245617_ + static + 0 o p_251578_ + b (Lacp;)Lcom/mojang/serialization/DataResult; m_246347_ + static + 0 o p_250682_ + b ()Lcom/google/common/collect/ImmutableMap; m_268833_ + static + b (Lhl;)Ljava/util/stream/Stream; m_245122_ + static + 0 o p_249066_ + c (Lacp;)Lcom/mojang/serialization/DataResult; m_274022_ + static + 0 o p_274731_ + c (Lhs$d;)Z m_246090_ + static + 0 o p_250129_ + d (Lacp;)Ljava/lang/String; m_274021_ + static + 0 o p_274730_ +hv$a net/minecraft/core/RegistrySynchronization$NetworkedRegistryData + a f_244545_ + b f_244392_ + (Lacp;Lcom/mojang/serialization/Codec;)V + 0 o f_244545_ + 1 o f_244392_ + a ()Lacp; f_244545_ + b ()Lcom/mojang/serialization/Codec; f_244392_ + equals (Ljava/lang/Object;)Z equals + 0 o p_249293_ + hashCode ()I hashCode + toString ()Ljava/lang/String; toString +hw net/minecraft/core/Rotations + a f_123146_ + b f_123147_ + c f_123148_ + (Lqx;)V + 0 o p_123154_ + (FFF)V + 0 o p_123150_ + 1 o p_123151_ + 2 o p_123152_ + a ()Lqx; m_123155_ + b ()F m_123156_ + c ()F m_123157_ + d ()F m_123158_ + e ()F m_175532_ + equals (Ljava/lang/Object;)Z equals + 0 o p_123160_ + f ()F m_175533_ + g ()F m_175534_ +hx net/minecraft/core/SectionPos + a f_175535_ + b f_175536_ + c f_175539_ + d f_175537_ + e f_175538_ + h f_175540_ + i f_175541_ + j f_175542_ + k f_175543_ + l f_175544_ + m f_175545_ + n f_175546_ + o f_175547_ + p f_175548_ + q f_175549_ + r f_175550_ + s f_175551_ + (III)V + 0 o p_123162_ + 1 o p_123163_ + 2 o p_123164_ + a (Lddx;)Lhx; m_175562_ + static + 0 o p_175563_ + a (JLha;)J m_123191_ + static + 0 o p_123192_ + 1 o p_123193_ + a (II)I m_175554_ + static + 0 o p_175555_ + 1 o p_175556_ + a (Ldfs;)Lhx; m_235861_ + static + 0 o p_235862_ + a (Lgu;)Lhx; m_123199_ + static + 0 o p_123200_ + a (Lclt;III)Ljava/util/stream/Stream; m_175557_ + static + 0 o p_175558_ + 1 o p_175559_ + 2 o p_175560_ + 3 o p_175561_ + a (III)Lhx; m_123173_ + static + 0 o p_123174_ + 1 o p_123175_ + 2 o p_123176_ + a (Lhx;I)Ljava/util/stream/Stream; m_123201_ + static + 0 o p_123202_ + 1 o p_123203_ + a (JLit/unimi/dsi/fastutil/longs/LongConsumer;)V m_194639_ + static + 0 o p_194640_ + 1 o p_194641_ + a ()I m_123170_ + a (J)Lhx; m_123184_ + static + 0 o p_123185_ + a (D)I m_175552_ + static + 0 o p_175553_ + a (S)I m_123204_ + static + 0 o p_123205_ + a (I)I m_123171_ + static + 0 o p_123172_ + a (Lho;)Lhx; m_235863_ + static + 0 o p_235864_ + a (Lclt;I)Lhx; m_123196_ + static + 0 o p_123197_ + 1 o p_123198_ + a (IIILit/unimi/dsi/fastutil/longs/LongConsumer;)V m_194634_ + static + 0 o p_194635_ + 1 o p_194636_ + 2 o p_194637_ + 3 o p_194638_ + a (IIIIII)Ljava/util/stream/Stream; m_123177_ + static + 0 o p_123178_ + 1 o p_123179_ + 2 o p_123180_ + 3 o p_123181_ + 4 o p_123182_ + 5 o p_123183_ + a (Lgu;Lit/unimi/dsi/fastutil/longs/LongConsumer;)V m_194642_ + static + 0 o p_194643_ + 1 o p_194644_ + a (JIII)J m_123186_ + static + 0 o p_123187_ + 1 o p_123188_ + 2 o p_123189_ + 3 o p_123190_ + b (J)I m_123213_ + static + 0 o p_123214_ + b (D)I m_235865_ + static + 0 o p_235866_ + b ()I m_123206_ + b (Lgu;)S m_123218_ + static + 0 o p_123219_ + b (III)J m_123209_ + static + 0 o p_123210_ + 1 o p_123211_ + 2 o p_123212_ + b (S)I m_123220_ + static + 0 o p_123221_ + b (II)J m_284454_ + static + 0 o p_285381_ + 1 o p_285068_ + b (I)I m_123207_ + static + 0 o p_123208_ + c (I)I m_123223_ + static + 0 o p_123224_ + c (S)I m_123227_ + static + 0 o p_123228_ + c ()I m_123222_ + c (III)Lhz; m_7918_ + 0 o p_175565_ + 1 o p_175566_ + 2 o p_175567_ + c (Lgu;)J m_175568_ + static + 0 o p_175569_ + c (J)I m_123225_ + static + 0 o p_123226_ + d (S)I m_123232_ + 0 o p_123233_ + d ()I m_123229_ + d (J)I m_123230_ + static + 0 o p_123231_ + d (III)Lhx; m_7918_ + 0 o p_175571_ + 1 o p_175572_ + 2 o p_175573_ + e (S)I m_123237_ + 0 o p_123238_ + e ()I m_123234_ + e (J)J m_123235_ + static + 0 o p_123236_ + f (S)I m_123242_ + 0 o p_123243_ + f ()I m_123239_ + f (J)J m_123240_ + static + 0 o p_123241_ + g ()I m_123244_ + g (S)Lgu; m_123245_ + 0 o p_123246_ + h ()I m_123247_ + i ()I m_123248_ + j ()Lgu; m_123249_ + q ()Lgu; m_123250_ + r ()Lclt; m_123251_ + s ()J m_123252_ + t ()Ljava/util/stream/Stream; m_123253_ +hx$1 net/minecraft/core/SectionPos$1 + a f_123254_ + b f_123255_ + c f_123256_ + d f_123257_ + e f_123258_ + f f_123259_ + g f_123260_ + (JIIIIIII)V + 0 o p_123262_ + 1 o p_123263_ + 2 o p_123264_ + 3 o p_123265_ + 4 o p_123266_ + 5 o p_123267_ + 6 o p_123268_ + 7 o p_123269_ + tryAdvance (Ljava/util/function/Consumer;)Z tryAdvance + 0 o p_123271_ +hy net/minecraft/core/UUIDUtil + a f_235867_ + b f_260719_ + c f_252480_ + d f_235868_ + e f_235869_ + ()V + static + ()V + a (Lcom/mojang/serialization/Dynamic;)Ljava/util/UUID; m_235877_ + static + 0 o p_235878_ + a (JJ)[I m_235872_ + static + 0 o p_235873_ + 1 o p_235874_ + a (Ljava/util/stream/IntStream;)Lcom/mojang/serialization/DataResult; m_235883_ + static + 0 o p_235884_ + a (Ljava/lang/String;Ljava/lang/IllegalArgumentException;)Ljava/lang/String; m_274026_ + static + 0 o p_274736_ + 1 o p_274737_ + a (Lcom/mojang/authlib/GameProfile;)Ljava/util/UUID; m_235875_ + static + 0 o p_235876_ + a (Lcom/mojang/datafixers/util/Either;)Ljava/util/UUID; m_252599_ + static + 0 o p_253364_ + a ([I)Ljava/util/UUID; m_235885_ + static + 0 o p_235886_ + a (Ljava/util/UUID;)[I m_235881_ + static + 0 o p_235882_ + a (Ljava/lang/String;)Ljava/util/UUID; m_235879_ + static + 0 o p_235880_ + b (Ljava/util/UUID;)[B m_241191_ + static + 0 o p_241285_ + b (Ljava/lang/String;)Lcom/mojang/serialization/DataResult; m_274025_ + static + 0 o p_274735_ + b (Ljava/lang/String;Ljava/lang/IllegalArgumentException;)Ljava/lang/String; m_274024_ + static + 0 o p_274733_ + 1 o p_274734_ + c (Ljava/util/UUID;)Ljava/util/UUID; m_252596_ + static + 0 o p_253361_ + c (Ljava/lang/String;)Lcom/mojang/serialization/DataResult; m_274023_ + static + 0 o p_274732_ + d (Ljava/util/UUID;)Ljava/util/UUID; m_252597_ + static + 0 o p_253362_ + e (Ljava/util/UUID;)Ljava/util/stream/IntStream; m_235887_ + static + 0 o p_235888_ +hz net/minecraft/core/Vec3i + a f_123285_ + b f_123286_ + c f_123289_ + f f_123287_ + g f_123288_ + ()V + static + (III)V + 0 o p_123296_ + 1 o p_123297_ + 2 o p_123298_ + a (Ljava/util/stream/IntStream;)Lcom/mojang/serialization/DataResult; m_123317_ + static + 0 o p_123318_ + a (Lhz;)Ljava/util/stream/IntStream; m_123312_ + static + 0 o p_123313_ + a (Lhz;D)Z m_123314_ + 0 o p_123315_ + 1 o p_123316_ + a ([I)Lhz; m_175585_ + static + 0 o p_175586_ + a (Lho;D)Z m_203195_ + 0 o p_203196_ + 1 o p_203197_ + a (ILhz;)Lcom/mojang/serialization/DataResult; m_274027_ + static + 0 o p_274738_ + 1 o p_274739_ + a (Lha$a;)I m_123304_ + 0 o p_123305_ + b (Lho;)D m_203193_ + 0 o p_203194_ + b (Lha;I)Lhz; m_5484_ + 0 o p_123321_ + 1 o p_123322_ + b (Lha;)Lhz; m_121945_ + 0 o p_175592_ + b (Lha$a;I)Lhz; m_5487_ + 0 o p_175590_ + 1 o p_175591_ + b (ILhz;)Ljava/lang/String; m_274028_ + static + 0 o p_274740_ + 1 o p_274741_ + c (III)Lhz; m_7918_ + 0 o p_175593_ + 1 o p_175594_ + 2 o p_175595_ + c (DDD)D m_203198_ + 0 o p_203199_ + 1 o p_203200_ + 2 o p_203201_ + compareTo (Ljava/lang/Object;)I compareTo + 0 o p_123324_ + d (Lhz;)Lhz; m_7724_ + 0 o p_123325_ + d (DDD)D m_203202_ + 0 o p_203203_ + 1 o p_203204_ + 2 o p_203205_ + e (Lhz;)Lhz; m_121996_ + 0 o p_175596_ + equals (Ljava/lang/Object;)Z equals + 0 o p_123327_ + f (Lhz;)Lhz; m_121955_ + 0 o p_175597_ + hashCode ()I hashCode + i (Lhz;)I compareTo + 0 o p_123330_ + i (I)Lhz; m_122030_ + 0 o p_175598_ + j (Lhz;)D m_123331_ + 0 o p_123332_ + j (I)Lhz; m_122025_ + 0 o p_175599_ + k (Lhz;)I m_123333_ + 0 o p_123334_ + k ()Lhz; m_122029_ + k (I)Lhz; m_122020_ + 0 o p_175600_ + l ()Lhz; m_122024_ + l (I)Lhz; m_122013_ + 0 o p_175601_ + m ()Lhz; m_122019_ + m (I)Lhz; m_6625_ + 0 o p_123335_ + n ()Lhz; m_122012_ + n (I)Lhz; m_6630_ + 0 o p_123336_ + o (I)Lhz; m_142393_ + 0 o p_175602_ + o ()Lhz; m_7495_ + p ()Lhz; m_7494_ + s (I)Lhz; m_142443_ + 0 o p_175603_ + t (I)Lhz; m_142448_ + 0 o p_175604_ + toString ()Ljava/lang/String; toString + u ()I m_123341_ + u (I)Lhz; m_142451_ + 0 o p_175605_ + v ()I m_123342_ + v (I)Lcom/mojang/serialization/Codec; m_194650_ + static + 0 o p_194651_ + w ()I m_123343_ + x ()Ljava/lang/String; m_123344_ +i com/mojang/math/SymmetricGroup3 + a P123 + b P213 + c P132 + d P231 + e P312 + f P321 + g f_109168_ + h f_109169_ + i f_175574_ + j f_109170_ + k $VALUES + ()V + static + (Ljava/lang/String;IIII)V + 0 o p_109174_ + 1 o p_109175_ + 2 o p_109176_ + 3 o p_109177_ + 4 o p_109178_ + a ()Lorg/joml/Matrix3f; m_253007_ + a (I)I m_109180_ + 0 o p_109181_ + a ([[Li;)V m_109187_ + static + 0 o p_109188_ + a (Li;)Li; m_109182_ + 0 o p_109183_ + a ([ILi;)Z m_175575_ + static + 0 o p_175576_ + 1 o p_175577_ + b ()[Li; m_175578_ + static + valueOf (Ljava/lang/String;)Li; valueOf + static + 0 o p_109190_ + values ()[Li; values + static +ia net/minecraft/core/WritableRegistry + a (Lacp;Ljava/lang/Object;Lcom/mojang/serialization/Lifecycle;)Lhe$c; m_255290_ + 0 o p_256320_ + 1 o p_255978_ + 2 o p_256625_ + b (ILacp;Ljava/lang/Object;Lcom/mojang/serialization/Lifecycle;)Lhe; m_203704_ + 0 o p_206368_ + 1 o p_206369_ + 2 o p_206370_ + 3 o p_206371_ + k ()Z m_142427_ + n ()Lhf; m_203505_ +ib net/minecraft/core/cauldron/CauldronInteraction + a f_175606_ + b f_175607_ + c f_175608_ + d f_175609_ + e f_175610_ + f f_175611_ + g f_175612_ + h f_175613_ + i f_175614_ + j f_175615_ + ()V + static + a (Lcmm;Lgu;Lbyo;Lbdw;Lcfz;Ldcb;Lamg;)Lbdx; m_175618_ + static + 0 o p_175619_ + 1 o p_175620_ + 2 o p_175621_ + 3 o p_175622_ + 4 o p_175623_ + 5 o p_175624_ + 6 o p_175625_ + a (Ldcb;Lcmm;Lgu;Lbyo;Lbdw;Lcfz;Lcfz;Ljava/util/function/Predicate;Lamg;)Lbdx; m_175635_ + static + 0 o p_175636_ + 1 o p_175637_ + 2 o p_175638_ + 3 o p_175639_ + 4 o p_175640_ + 5 o p_175641_ + 6 o p_175642_ + 7 o p_175643_ + 8 o p_175644_ + a (Lit/unimi/dsi/fastutil/objects/Object2ObjectOpenHashMap;)V m_175645_ + static + 0 o p_175646_ + a (Ljava/util/Map;)V m_175647_ + static + 0 o p_175648_ + a (Ldcb;)Z m_175626_ + static + 0 o p_175627_ + a ()Lit/unimi/dsi/fastutil/objects/Object2ObjectOpenHashMap; m_175617_ + static + a (Ldcb;Lcmm;Lgu;Lbyo;Lbdw;Lcfz;)Lbdx; m_175628_ + static + 0 o p_175629_ + 1 o p_175630_ + 2 o p_175631_ + 3 o p_175632_ + 4 o p_175633_ + 5 o p_175634_ + b (Ldcb;)Z m_175650_ + static + 0 o p_175651_ + b (Ldcb;Lcmm;Lgu;Lbyo;Lbdw;Lcfz;)Lbdx; m_278529_ + static + 0 o p_278890_ + 1 o p_278891_ + 2 o p_278892_ + 3 o p_278893_ + 4 o p_278894_ + 5 o p_278895_ + b ()V m_175649_ + static + c (Ldcb;Lcmm;Lgu;Lbyo;Lbdw;Lcfz;)Lbdx; m_175661_ + static + 0 o p_175662_ + 1 o p_175663_ + 2 o p_175664_ + 3 o p_175665_ + 4 o p_175666_ + 5 o p_175667_ + c (Ldcb;)Z m_175659_ + static + 0 o p_175660_ + d (Ldcb;Lcmm;Lgu;Lbyo;Lbdw;Lcfz;)Lbdx; m_175668_ + static + 0 o p_175669_ + 1 o p_175670_ + 2 o p_175671_ + 3 o p_175672_ + 4 o p_175673_ + 5 o p_175674_ + e (Ldcb;Lcmm;Lgu;Lbyo;Lbdw;Lcfz;)Lbdx; m_175675_ + static + 0 o p_175676_ + 1 o p_175677_ + 2 o p_175678_ + 3 o p_175679_ + 4 o p_175680_ + 5 o p_175681_ + f (Ldcb;Lcmm;Lgu;Lbyo;Lbdw;Lcfz;)Lbdx; m_175682_ + static + 0 o p_175683_ + 1 o p_175684_ + 2 o p_175685_ + 3 o p_175686_ + 4 o p_175687_ + 5 o p_175688_ + g (Ldcb;Lcmm;Lgu;Lbyo;Lbdw;Lcfz;)Lbdx; m_175689_ + static + 0 o p_175690_ + 1 o p_175691_ + 2 o p_175692_ + 3 o p_175693_ + 4 o p_175694_ + 5 o p_175695_ + h (Ldcb;Lcmm;Lgu;Lbyo;Lbdw;Lcfz;)Lbdx; m_175696_ + static + 0 o p_175697_ + 1 o p_175698_ + 2 o p_175699_ + 3 o p_175700_ + 4 o p_175701_ + 5 o p_175702_ + i (Ldcb;Lcmm;Lgu;Lbyo;Lbdw;Lcfz;)Lbdx; m_175703_ + static + 0 o p_175704_ + 1 o p_175705_ + 2 o p_175706_ + 3 o p_175707_ + 4 o p_175708_ + 5 o p_175709_ + interact (Ldcb;Lcmm;Lgu;Lbyo;Lbdw;Lcfz;)Lbdx; m_175710_ + 0 o p_175711_ + 1 o p_175712_ + 2 o p_175713_ + 3 o p_175714_ + 4 o p_175715_ + 5 o p_175716_ + j (Ldcb;Lcmm;Lgu;Lbyo;Lbdw;Lcfz;)Lbdx; m_175717_ + static + 0 o p_175718_ + 1 o p_175719_ + 2 o p_175720_ + 3 o p_175721_ + 4 o p_175722_ + 5 o p_175723_ + k (Ldcb;Lcmm;Lgu;Lbyo;Lbdw;Lcfz;)Lbdx; m_175724_ + static + 0 o p_175725_ + 1 o p_175726_ + 2 o p_175727_ + 3 o p_175728_ + 4 o p_175729_ + 5 o p_175730_ + l (Ldcb;Lcmm;Lgu;Lbyo;Lbdw;Lcfz;)Lbdx; m_175731_ + static + 0 o p_175732_ + 1 o p_175733_ + 2 o p_175734_ + 3 o p_175735_ + 4 o p_175736_ + 5 o p_175737_ + m (Ldcb;Lcmm;Lgu;Lbyo;Lbdw;Lcfz;)Lbdx; m_175738_ + static + 0 o p_175739_ + 1 o p_175740_ + 2 o p_175741_ + 3 o p_175742_ + 4 o p_175743_ + 5 o p_175744_ +ic net/minecraft/core/cauldron/package-info +id net/minecraft/core/dispenser/AbstractProjectileDispenseBehavior + ()V + a (Lgv;Lcfz;)Lcfz; m_7498_ + 0 o p_123366_ + 1 o p_123367_ + a ()F m_7101_ + a (Lgv;)V m_6823_ + 0 o p_123364_ + a (Lcmm;Lho;Lcfz;)Lbzg; m_6895_ + 0 o p_123360_ + 1 o p_123361_ + 2 o p_123362_ + b ()F m_7104_ +ie net/minecraft/core/dispenser/BoatDispenseItemBehavior + c f_123368_ + d f_123369_ + e f_235889_ + (Lcah$b;)V + 0 o p_123371_ + (Lcah$b;Z)V + 0 o p_235891_ + 1 o p_235892_ + a (Lgv;Lcfz;)Lcfz; m_7498_ + 0 o p_123375_ + 1 o p_123376_ + a (Lgv;)V m_6823_ + 0 o p_123373_ +ig net/minecraft/core/dispenser/DefaultDispenseItemBehavior + ()V + a (Lgv;Lcfz;)Lcfz; m_7498_ + 0 o p_123385_ + 1 o p_123386_ + a (Lcmm;Lcfz;ILha;Lho;)V m_123378_ + static + 0 o p_123379_ + 1 o p_123380_ + 2 o p_123381_ + 3 o p_123382_ + 4 o p_123383_ + a (Lgv;)V m_6823_ + 0 o p_123384_ + a (Lgv;Lha;)V m_123387_ + 0 o p_123388_ + 1 o p_123389_ + dispense (Lgv;Lcfz;)Lcfz; m_6115_ + 0 o p_123391_ + 1 o p_123392_ +ih net/minecraft/core/dispenser/DispenseItemBehavior + a f_181892_ + b f_123393_ + ()V + static + a (Lgv;Lcfz;)Lcfz; m_123399_ + static + 0 o p_123400_ + 1 o p_123401_ + a (Lgv;Lbfj;Lha;)V m_123395_ + static + 0 o p_123396_ + 1 o p_123397_ + 2 o p_123398_ + c ()V m_123402_ + static + dispense (Lgv;Lcfz;)Lcfz; m_6115_ + 0 o p_123403_ + 1 o p_123404_ +ih$1 net/minecraft/core/dispenser/DispenseItemBehavior$1 + ()V + a (Lcmm;Lho;Lcfz;)Lbzg; m_6895_ + 0 o p_123407_ + 1 o p_123408_ + 2 o p_123409_ +ih$10 net/minecraft/core/dispenser/DispenseItemBehavior$18 + ()V + a (Lgv;Lcfz;)Lcfz; m_7498_ + 0 o p_123412_ + 1 o p_123413_ +ih$11 net/minecraft/core/dispenser/DispenseItemBehavior$19 + ()V + a (Lgv;Lcfz;)Lcfz; m_7498_ + 0 o p_123416_ + 1 o p_123417_ +ih$12 net/minecraft/core/dispenser/DispenseItemBehavior$2 + ()V + a (Lcmm;Lho;Lcfz;)Lbzg; m_6895_ + 0 o p_123420_ + 1 o p_123421_ + 2 o p_123422_ +ih$13 net/minecraft/core/dispenser/DispenseItemBehavior$20 + ()V + a (Lgv;Lcfz;)Lcfz; m_7498_ + 0 o p_123425_ + 1 o p_123426_ +ih$14 net/minecraft/core/dispenser/DispenseItemBehavior$21 + ()V + a (Lgv;Lcfz;)Lcfz; m_7498_ + 0 o p_123429_ + 1 o p_123430_ +ih$15 net/minecraft/core/dispenser/DispenseItemBehavior$22 + ()V + a (Lgv;Lcfz;)Lcfz; m_7498_ + 0 o p_123433_ + 1 o p_123434_ +ih$16 net/minecraft/core/dispenser/DispenseItemBehavior$23 + ()V + a (Lgv;Lcfz;)Lcfz; m_7498_ + 0 o p_123437_ + 1 o p_123438_ +ih$17 net/minecraft/core/dispenser/DispenseItemBehavior$24 + c f_123439_ + ()V + a (Lgv;Lcfz;)Lcfz; m_7498_ + 0 o p_123444_ + 1 o p_123445_ + a (Lgv;Lcfz;Lcfz;)Lcfz; m_123446_ + 0 o p_123447_ + 1 o p_123448_ + 2 o p_123449_ + a (Ldca$a;)Z m_123441_ + static + 0 o p_123442_ +ih$18 net/minecraft/core/dispenser/DispenseItemBehavior$25 + ()V + a (Lgv;Lcfz;)Lcfz; m_7498_ + 0 o p_123452_ + 1 o p_123453_ +ih$19 net/minecraft/core/dispenser/DispenseItemBehavior$26 + ()V + a (Lgv;Lcfz;)Lcfz; m_7498_ + 0 o p_175747_ + 1 o p_175748_ +ih$2 net/minecraft/core/dispenser/DispenseItemBehavior$10 + ()V + a (Lgv;Lcfz;)Lcfz; m_7498_ + 0 o p_123461_ + 1 o p_123462_ + a (Lha;Lbux;)V m_276708_ + static + 0 o p_277235_ + 1 o p_277236_ +ih$20 net/minecraft/core/dispenser/DispenseItemBehavior$27 + c f_235893_ + ()V + a (Lgv;Lcfz;)Lcfz; m_7498_ + 0 o p_235896_ + 1 o p_235897_ +ih$21 net/minecraft/core/dispenser/DispenseItemBehavior$3 + ()V + a (Lcmm;Lho;Lcfz;)Lbzg; m_6895_ + 0 o p_123456_ + 1 o p_123457_ + 2 o p_123458_ +ih$22 net/minecraft/core/dispenser/DispenseItemBehavior$4 + ()V + a (Lcfz;Lbzo;)V m_123464_ + static + 0 o p_123465_ + 1 o p_123466_ + a (Lcmm;Lho;Lcfz;)Lbzg; m_6895_ + 0 o p_123468_ + 1 o p_123469_ + 2 o p_123470_ +ih$23 net/minecraft/core/dispenser/DispenseItemBehavior$5 + ()V + a (Lcmm;Lho;Lcfz;)Lbzg; m_6895_ + 0 o p_123476_ + 1 o p_123477_ + 2 o p_123478_ + a (Lcfz;Lbzk;)V m_123472_ + static + 0 o p_123473_ + 1 o p_123474_ +ih$24 net/minecraft/core/dispenser/DispenseItemBehavior$6 + ()V + a (Lcfz;Lbzq;)V m_123481_ + static + 0 o p_123482_ + 1 o p_123483_ + a ()F m_7101_ + a (Lcmm;Lho;Lcfz;)Lbzg; m_6895_ + 0 o p_123485_ + 1 o p_123486_ + 2 o p_123487_ + b ()F m_7104_ +ih$25 net/minecraft/core/dispenser/DispenseItemBehavior$7 + ()V + dispense (Lgv;Lcfz;)Lcfz; m_6115_ + 0 o p_123491_ + 1 o p_123492_ +ih$25$1 net/minecraft/core/dispenser/DispenseItemBehavior$7$1 + c f_123493_ + (Lih$25;)V + 0 o p_123495_ + a (Lcfz;Lbzr;)V m_123497_ + static + 0 o p_123498_ + 1 o p_123499_ + a ()F m_7101_ + a (Lcmm;Lho;Lcfz;)Lbzg; m_6895_ + 0 o p_123501_ + 1 o p_123502_ + 2 o p_123503_ + b ()F m_7104_ +ih$26 net/minecraft/core/dispenser/DispenseItemBehavior$8 + ()V + dispense (Lgv;Lcfz;)Lcfz; m_6115_ + 0 o p_123507_ + 1 o p_123508_ +ih$26$1 net/minecraft/core/dispenser/DispenseItemBehavior$8$1 + c f_123509_ + (Lih$26;)V + 0 o p_123511_ + a (Lcfz;Lbzr;)V m_123513_ + static + 0 o p_123514_ + 1 o p_123515_ + a ()F m_7101_ + a (Lcmm;Lho;Lcfz;)Lbzg; m_6895_ + 0 o p_123517_ + 1 o p_123518_ + 2 o p_123519_ + b ()F m_7104_ +ih$27 net/minecraft/core/dispenser/DispenseItemBehavior$9 + ()V + a (Lgv;Lcfz;)Lcfz; m_7498_ + 0 o p_123523_ + 1 o p_123524_ +ih$3 net/minecraft/core/dispenser/DispenseItemBehavior$11 + ()V + a (Lgv;Lcfz;)Lcfz; m_7498_ + 0 o p_123529_ + 1 o p_123530_ + a (Lbfz;)Z m_123526_ + static + 0 o p_123527_ +ih$4 net/minecraft/core/dispenser/DispenseItemBehavior$12 + ()V + a (Lgv;Lcfz;)Lcfz; m_7498_ + 0 o p_123535_ + 1 o p_123536_ + a (Lbtk;)Z m_289055_ + static + 0 o p_289248_ +ih$5 net/minecraft/core/dispenser/DispenseItemBehavior$13 + ()V + a (Lgv;Lcfz;)Lcfz; m_7498_ + 0 o p_123541_ + 1 o p_123542_ + a (Lbtj;)Z m_289056_ + static + 0 o p_289249_ +ih$6 net/minecraft/core/dispenser/DispenseItemBehavior$14 + ()V + a (Lgv;Lcfz;)Lcfz; m_7498_ + 0 o p_123547_ + 1 o p_123548_ + a (Lgv;)V m_6823_ + 0 o p_123545_ +ih$7 net/minecraft/core/dispenser/DispenseItemBehavior$15 + ()V + a (Lgv;Lcfz;)Lcfz; m_7498_ + 0 o p_123556_ + 1 o p_123557_ + a (Lgv;)V m_6823_ + 0 o p_123554_ + a (Lcfz;Lbzj;)V m_123550_ + static + 0 o p_123551_ + 1 o p_123552_ +ih$8 net/minecraft/core/dispenser/DispenseItemBehavior$16 + c f_123558_ + ()V + a (Lgv;Lcfz;)Lcfz; m_7498_ + 0 o p_123561_ + 1 o p_123562_ +ih$9 net/minecraft/core/dispenser/DispenseItemBehavior$17 + c f_123563_ + ()V + a (Lgv;Lcfz;)Lcfz; m_7498_ + 0 o p_123566_ + 1 o p_123567_ +ii net/minecraft/core/dispenser/OptionalDispenseItemBehavior + c f_123568_ + ()V + a ()Z m_123570_ + a (Lgv;)V m_6823_ + 0 o p_123572_ + a (Z)V m_123573_ + 0 o p_123574_ +ij net/minecraft/core/dispenser/ShearsDispenseItemBehavior + ()V + a (Lgv;Lcfz;)Lcfz; m_7498_ + 0 o p_123580_ + 1 o p_123581_ + a (Ldca$a;)Z m_202453_ + static + 0 o p_202454_ + a (Laif;Lgu;)Z m_123576_ + static + 0 o p_123577_ + 1 o p_123578_ + b (Laif;Lgu;)Z m_123582_ + static + 0 o p_123583_ + 1 o p_123584_ +ik net/minecraft/core/dispenser/ShulkerBoxDispenseBehavior + c f_175749_ + ()V + static + ()V + a (Lgv;Lcfz;)Lcfz; m_7498_ + 0 o p_123587_ + 1 o p_123588_ +il net/minecraft/core/dispenser/package-info +im net/minecraft/core/package-info +in net/minecraft/core/particles/BlockParticleOption + a f_123624_ + b f_123625_ + c f_123626_ + ()V + static + (Liu;Ldcb;)V + 0 o p_123629_ + 1 o p_123630_ + a (Liu;Ldcb;)Lin; m_123636_ + static + 0 o p_123637_ + 1 o p_123638_ + a ()Ljava/lang/String; m_5942_ + a (Liu;)Lcom/mojang/serialization/Codec; m_123634_ + static + 0 o p_123635_ + a (Lin;)Ldcb; m_123632_ + static + 0 o p_123633_ + a (Lsf;)V m_7711_ + 0 o p_123640_ + b ()Liu; m_6012_ + c ()Ldcb; m_123642_ +in$1 net/minecraft/core/particles/BlockParticleOption$1 + ()V + a (Liu;Lsf;)Lin; m_6507_ + 0 o p_123648_ + 1 o p_123649_ + a (Liu;Lcom/mojang/brigadier/StringReader;)Lin; m_5739_ + 0 o p_123645_ + 1 o p_123646_ + b (Liu;Lsf;)Lit; m_6507_ + 0 o p_123654_ + 1 o p_123655_ + b (Liu;Lcom/mojang/brigadier/StringReader;)Lit; m_5739_ + 0 o p_123651_ + 1 o p_123652_ +io net/minecraft/core/particles/DustColorTransitionOptions + a f_175751_ + b f_175752_ + c f_175753_ + d f_175754_ + i f_175755_ + ()V + static + (Lorg/joml/Vector3f;Lorg/joml/Vector3f;F)V + 0 o p_254199_ + 1 o p_254529_ + 2 o p_254178_ + a (Lio;)Ljava/lang/Float; m_175764_ + static + 0 o p_175765_ + a ()Ljava/lang/String; m_5942_ + a (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; m_252604_ + static + 0 o p_253369_ + a (Lsf;)V m_7711_ + 0 o p_175767_ + b (Lio;)Lorg/joml/Vector3f; m_252602_ + static + 0 o p_253367_ + b ()Liu; m_6012_ + c ()Lorg/joml/Vector3f; m_252988_ + c (Lio;)Lorg/joml/Vector3f; m_252603_ + static + 0 o p_253368_ + d ()Lorg/joml/Vector3f; m_253173_ +io$1 net/minecraft/core/particles/DustColorTransitionOptions$1 + ()V + a (Liu;Lcom/mojang/brigadier/StringReader;)Lio; m_5739_ + 0 o p_175777_ + 1 o p_175778_ + a (Liu;Lsf;)Lio; m_6507_ + 0 o p_175780_ + 1 o p_175781_ + b (Liu;Lsf;)Lit; m_6507_ + 0 o p_175786_ + 1 o p_175787_ + b (Liu;Lcom/mojang/brigadier/StringReader;)Lit; m_5739_ + 0 o p_175783_ + 1 o p_175784_ +ip net/minecraft/core/particles/DustParticleOptions + a f_175788_ + b f_123656_ + c f_123657_ + d f_123658_ + ()V + static + (Lorg/joml/Vector3f;F)V + 0 o p_253868_ + 1 o p_254154_ + a (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; m_252605_ + static + 0 o p_253370_ + a (Lip;)Ljava/lang/Float; m_175794_ + static + 0 o p_175795_ + b (Lip;)Lorg/joml/Vector3f; m_252606_ + static + 0 o p_253371_ + b ()Liu; m_6012_ +ip$1 net/minecraft/core/particles/DustParticleOptions$1 + ()V + a (Liu;Lcom/mojang/brigadier/StringReader;)Lip; m_5739_ + 0 o p_123689_ + 1 o p_123690_ + a (Liu;Lsf;)Lip; m_6507_ + 0 o p_123692_ + 1 o p_123693_ + b (Liu;Lsf;)Lit; m_6507_ + 0 o p_123698_ + 1 o p_123699_ + b (Liu;Lcom/mojang/brigadier/StringReader;)Lit; m_5739_ + 0 o p_123695_ + 1 o p_123696_ +iq net/minecraft/core/particles/DustParticleOptionsBase + e f_175798_ + f f_175799_ + g f_175800_ + h f_175801_ + (Lorg/joml/Vector3f;F)V + 0 o p_253672_ + 1 o p_253735_ + a ()Ljava/lang/String; m_5942_ + a (Lcom/mojang/brigadier/StringReader;)Lorg/joml/Vector3f; m_252853_ + static + 0 o p_254560_ + a (Lsf;)V m_7711_ + 0 o p_175809_ + b (Lsf;)Lorg/joml/Vector3f; m_253064_ + static + 0 o p_254279_ + e ()Lorg/joml/Vector3f; m_252837_ + f ()F m_175813_ +ir net/minecraft/core/particles/ItemParticleOption + a f_123700_ + b f_123701_ + c f_123702_ + ()V + static + (Liu;Lcfz;)V + 0 o p_123705_ + 1 o p_123706_ + a (Lir;)Lcfz; m_123708_ + static + 0 o p_123709_ + a ()Ljava/lang/String; m_5942_ + a (Liu;Lcfz;)Lir; m_123712_ + static + 0 o p_123713_ + 1 o p_123714_ + a (Liu;)Lcom/mojang/serialization/Codec; m_123710_ + static + 0 o p_123711_ + a (Lsf;)V m_7711_ + 0 o p_123716_ + b ()Liu; m_6012_ + c ()Lcfz; m_123718_ +ir$1 net/minecraft/core/particles/ItemParticleOption$1 + ()V + a (Liu;Lcom/mojang/brigadier/StringReader;)Lir; m_5739_ + 0 o p_123721_ + 1 o p_123722_ + a (Liu;Lsf;)Lir; m_6507_ + 0 o p_123724_ + 1 o p_123725_ + b (Liu;Lsf;)Lit; m_6507_ + 0 o p_123730_ + 1 o p_123731_ + b (Liu;Lcom/mojang/brigadier/StringReader;)Lit; m_5739_ + 0 o p_123727_ + 1 o p_123728_ +is net/minecraft/core/particles/ParticleGroup + a f_175814_ + b f_175815_ + ()V + static + (I)V + 0 o p_175818_ + a ()I m_175819_ +it net/minecraft/core/particles/ParticleOptions + a ()Ljava/lang/String; m_5942_ + a (Lsf;)V m_7711_ + 0 o p_123732_ + b ()Liu; m_6012_ +it$a net/minecraft/core/particles/ParticleOptions$Deserializer + b (Liu;Lsf;)Lit; m_6507_ + 0 o p_123735_ + 1 o p_123736_ + b (Liu;Lcom/mojang/brigadier/StringReader;)Lit; m_5739_ + 0 o p_123733_ + 1 o p_123734_ +iu net/minecraft/core/particles/ParticleType + a f_123737_ + b f_123738_ + (ZLit$a;)V + 0 o p_123740_ + 1 o p_123741_ + c ()Z m_123742_ + d ()Lit$a; m_123743_ + e ()Lcom/mojang/serialization/Codec; m_7652_ +iv net/minecraft/core/particles/ParticleTypes + A f_123815_ + B f_123816_ + C f_123744_ + D f_276452_ + E f_235898_ + F f_235899_ + G f_235900_ + H f_123745_ + I f_123746_ + J f_123747_ + K f_123748_ + L f_123749_ + M f_123750_ + N f_123751_ + O f_123752_ + P f_175820_ + Q f_123753_ + R f_123754_ + S f_123755_ + T f_123756_ + U f_123757_ + V f_123758_ + W f_123759_ + X f_123760_ + Y f_123761_ + Z f_123762_ + a f_123770_ + aA f_123788_ + aB f_123789_ + aC f_123790_ + aD f_175834_ + aE f_175821_ + aF f_175822_ + aG f_175823_ + aH f_175824_ + aI f_175825_ + aJ f_175826_ + aK f_175827_ + aL f_175828_ + aM f_175829_ + aN f_175830_ + aO f_175831_ + aP f_235901_ + aQ f_276512_ + aR f_123791_ + aa f_123763_ + ab f_123764_ + ac f_123765_ + ad f_123766_ + ae f_123767_ + af f_123768_ + ag f_123769_ + ah f_123771_ + ai f_123772_ + aj f_123773_ + ak f_123774_ + al f_123775_ + am f_123776_ + an f_123777_ + ao f_123778_ + ap f_123779_ + aq f_123780_ + ar f_123781_ + as f_123782_ + at f_175832_ + au f_123783_ + av f_123784_ + aw f_123785_ + ax f_175833_ + ay f_123786_ + az f_123787_ + b f_123792_ + c f_123794_ + d f_194652_ + e f_123795_ + f f_123796_ + g f_123797_ + h f_123798_ + i f_123799_ + j f_123800_ + k f_123801_ + l f_123802_ + m f_123803_ + n f_123804_ + o f_123805_ + p f_175836_ + q f_123806_ + r f_123807_ + s f_123808_ + t f_123809_ + u f_123810_ + v f_123811_ + w f_123812_ + x f_123813_ + y f_235902_ + z f_123814_ + ()V + static + ()V + a (Ljava/lang/String;Z)Liy; m_123824_ + static + 0 o p_123825_ + 1 o p_123826_ + a (Ljava/lang/String;ZLit$a;Ljava/util/function/Function;)Liu; m_235905_ + static + 0 o p_235906_ + 1 o p_235907_ + 2 o p_235908_ + 3 o p_235909_ + a (Liu;)Lcom/mojang/serialization/Codec; m_235903_ + static + 0 o p_235904_ + b (Liu;)Lcom/mojang/serialization/Codec; m_235910_ + static + 0 o p_235911_ + c (Liu;)Lcom/mojang/serialization/Codec; m_175838_ + static + 0 o p_175839_ + d (Liu;)Lcom/mojang/serialization/Codec; m_175840_ + static + 0 o p_175841_ + e (Liu;)Lcom/mojang/serialization/Codec; m_123818_ + static + 0 o p_123819_ +iv$1 net/minecraft/core/particles/ParticleTypes$1 + a f_123827_ + (ZLit$a;Ljava/util/function/Function;)V + 0 o p_123829_ + 1 o p_123830_ + 2 o p_123831_ + e ()Lcom/mojang/serialization/Codec; m_7652_ +iw net/minecraft/core/particles/SculkChargeParticleOptions + a f_235912_ + b f_235913_ + c f_235914_ + ()V + static + (F)V + 0 o f_235914_ + a ()Ljava/lang/String; m_5942_ + a (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; m_235919_ + static + 0 o p_235920_ + a (Liw;)Ljava/lang/Float; m_235921_ + static + 0 o p_235922_ + a (Lsf;)V m_7711_ + 0 o p_235924_ + b ()Liu; m_6012_ + c ()F f_235914_ + equals (Ljava/lang/Object;)Z equals + 0 o p_235928_ + hashCode ()I hashCode + toString ()Ljava/lang/String; toString +iw$1 net/minecraft/core/particles/SculkChargeParticleOptions$1 + ()V + a (Liu;Lcom/mojang/brigadier/StringReader;)Liw; m_5739_ + 0 o p_235933_ + 1 o p_235934_ + a (Liu;Lsf;)Liw; m_6507_ + 0 o p_235936_ + 1 o p_235937_ + b (Liu;Lsf;)Lit; m_6507_ + 0 o p_235942_ + 1 o p_235943_ + b (Liu;Lcom/mojang/brigadier/StringReader;)Lit; m_5739_ + 0 o p_235939_ + 1 o p_235940_ +ix net/minecraft/core/particles/ShriekParticleOption + a f_235944_ + b f_235945_ + c f_235946_ + ()V + static + (I)V + 0 o p_235949_ + a (Lix;)Ljava/lang/Integer; m_235953_ + static + 0 o p_235954_ + a ()Ljava/lang/String; m_5942_ + a (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; m_235951_ + static + 0 o p_235952_ + a (Lsf;)V m_7711_ + 0 o p_235956_ + b ()Liu; m_6012_ + c ()I m_235958_ +ix$1 net/minecraft/core/particles/ShriekParticleOption$1 + ()V + a (Liu;Lcom/mojang/brigadier/StringReader;)Lix; m_5739_ + 0 o p_235961_ + 1 o p_235962_ + a (Liu;Lsf;)Lix; m_6507_ + 0 o p_235964_ + 1 o p_235965_ + b (Liu;Lsf;)Lit; m_6507_ + 0 o p_235970_ + 1 o p_235971_ + b (Liu;Lcom/mojang/brigadier/StringReader;)Lit; m_5739_ + 0 o p_235967_ + 1 o p_235968_ +iy net/minecraft/core/particles/SimpleParticleType + a f_123833_ + b f_123834_ + ()V + static + (Z)V + 0 o p_123837_ + a ()Ljava/lang/String; m_5942_ + a (Lsf;)V m_7711_ + 0 o p_123840_ + b ()Liu; m_6012_ + e ()Lcom/mojang/serialization/Codec; m_7652_ + f ()Liy; m_6012_ +iy$1 net/minecraft/core/particles/SimpleParticleType$1 + ()V + a (Liu;Lcom/mojang/brigadier/StringReader;)Liy; m_5739_ + 0 o p_123846_ + 1 o p_123847_ + a (Liu;Lsf;)Liy; m_6507_ + 0 o p_123849_ + 1 o p_123850_ + b (Liu;Lsf;)Lit; m_6507_ + 0 o p_123855_ + 1 o p_123856_ + b (Liu;Lcom/mojang/brigadier/StringReader;)Lit; m_5739_ + 0 o p_123852_ + 1 o p_123853_ +iz net/minecraft/core/particles/VibrationParticleOption + a f_175842_ + b f_175843_ + c f_235972_ + d f_235973_ + ()V + static + (Ldgp;I)V + 0 o p_235975_ + 1 o p_235976_ + a (Liz;)Ljava/lang/Integer; m_235979_ + static + 0 o p_235980_ + a ()Ljava/lang/String; m_5942_ + a (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; m_235977_ + static + 0 o p_235978_ + a (Lsf;)V m_7711_ + 0 o p_175854_ + b (Liz;)Ldgp; m_235981_ + static + 0 o p_235982_ + b ()Liu; m_6012_ + c ()Ldgp; m_235983_ + d ()I m_235984_ +iz$1 net/minecraft/core/particles/VibrationParticleOption$1 + ()V + a (Liu;Lsf;)Liz; m_6507_ + 0 o p_175862_ + 1 o p_175863_ + a (Liu;Lcom/mojang/brigadier/StringReader;)Liz; m_5739_ + 0 o p_175859_ + 1 o p_175860_ + b (Liu;Lsf;)Lit; m_6507_ + 0 o p_175868_ + 1 o p_175869_ + b (Liu;Lcom/mojang/brigadier/StringReader;)Lit; m_5739_ + 0 o p_175865_ + 1 o p_175866_ +j com/mojang/math/Transformation + a f_268453_ + b f_268620_ + c f_121078_ + d f_121079_ + e f_121080_ + f f_121081_ + g f_121082_ + h f_121083_ + i f_121084_ + ()V + static + (Lorg/joml/Vector3f;Lorg/joml/Quaternionf;Lorg/joml/Vector3f;Lorg/joml/Quaternionf;)V + 0 o p_253831_ + 1 o p_253846_ + 2 o p_254502_ + 3 o p_253912_ + (Lorg/joml/Matrix4f;)V + 0 o p_253689_ + a (Lj;)Lj; m_121096_ + 0 o p_121097_ + a (Lj;F)Lj; m_175937_ + 0 o p_175938_ + 1 o p_175939_ + a (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; m_268760_ + static + 0 o p_269604_ + a (Lorg/joml/Vector3f;Lorg/joml/Quaternionf;Lorg/joml/Vector3f;Lorg/joml/Quaternionf;)Lorg/joml/Matrix4f; m_253227_ + static + 0 o p_254465_ + 1 o p_254416_ + 2 o p_254499_ + 3 o p_254334_ + a (Lcom/mojang/datafixers/util/Either;)Lj; m_268761_ + static + 0 o p_269605_ + a ()Lj; m_121093_ + static + b ()Lj; m_121103_ + b (Lj;)Lj; m_268758_ + static + 0 o p_269602_ + c (Lj;)Lj; m_268757_ + static + 0 o p_269601_ + c ()Lorg/joml/Matrix4f; m_252783_ + d (Lj;)Lorg/joml/Quaternionf; m_268754_ + static + 0 o p_269598_ + d ()Lorg/joml/Vector3f; m_252829_ + e ()Lorg/joml/Quaternionf; m_253244_ + e (Lj;)Lorg/joml/Vector3f; m_268759_ + static + 0 o p_269603_ + equals (Ljava/lang/Object;)Z equals + 0 o p_121108_ + f ()Lorg/joml/Vector3f; m_252900_ + f (Lj;)Lorg/joml/Quaternionf; m_268756_ + static + 0 o p_269600_ + g (Lj;)Lorg/joml/Vector3f; m_268755_ + static + 0 o p_269599_ + g ()Lorg/joml/Quaternionf; m_252848_ + h ()V m_121106_ + hashCode ()I hashCode + i ()Lj; m_276167_ + static +ja net/minecraft/core/particles/package-info +jb net/minecraft/core/registries/BuiltInRegistries + A f_256735_ + B f_256941_ + C f_256784_ + D f_256733_ + E f_256962_ + F f_256785_ + G f_257035_ + H f_256753_ + I f_256991_ + J f_257029_ + K f_256736_ + L f_256719_ + M f_256926_ + N f_256942_ + O f_256870_ + P f_256906_ + Q f_257001_ + R f_256810_ + S f_256950_ + T f_257014_ + U f_256763_ + V f_256986_ + W f_256760_ + X f_256861_ + Y f_256920_ + Z f_256742_ + a f_256779_ + aa f_256987_ + ab f_256958_ + ac f_256737_ + ad f_256914_ + ae f_256885_ + af f_256898_ + ag f_257002_ + ah f_256897_ + ai f_256846_ + aj f_256754_ + ak f_256770_ + al f_256878_ + am f_256896_ + an f_271353_ + ao f_279662_ + ap f_257047_ + aq f_256744_ + ar f_256751_ + as f_256935_ + b f_256726_ + c f_256894_ + d f_257020_ + e f_256974_ + f f_256975_ + g f_256876_ + h f_256780_ + i f_257033_ + j f_256980_ + k f_257034_ + l f_257049_ + m f_257051_ + n f_256771_ + o f_256940_ + p f_256978_ + q f_276464_ + r f_256957_ + s f_256818_ + t f_256990_ + u f_256769_ + v f_256951_ + w f_256972_ + x f_256979_ + y f_256899_ + z f_256934_ + ()V + static + ()V + A (Lhr;)Lbzz; m_257946_ + static + 0 o p_260197_ + B (Lhr;)Lcab; m_257756_ + static + 0 o p_259540_ + C (Lhr;)Lbqg; m_257887_ + static + 0 o p_259757_ + D (Lhr;)Lbpb; m_258062_ + static + 0 o p_259248_ + E (Lhr;)Lbye; m_257816_ + static + 0 o p_259037_ + F (Lhr;)Lbyg; m_257858_ + static + 0 o p_259473_ + G (Lhr;)Lamq; m_257443_ + static + 0 o p_259967_ + H (Lhr;)Ldgq; m_257425_ + static + 0 o p_259113_ + I (Lhr;)Lbhb; m_257991_ + static + 0 o p_260300_ + J (Lhr;)Lcje; m_257844_ + static + 0 o p_260230_ + K (Lhr;)Lcjf; m_257654_ + static + 0 o p_259086_ + L (Lhr;)Lcck; m_257467_ + static + 0 o p_259341_ + M (Lhr;)Ldvh; m_257705_ + static + 0 o p_259262_ + N (Lhr;)Ldwc; m_276709_ + static + 0 o p_277237_ + O (Lhr;)Ldvo; m_257632_ + static + 0 o p_259641_ + P (Lhr;)Ldec; m_257540_ + static + 0 o p_259971_ + Q (Lhr;)Lacq; m_257766_ + static + 0 o p_259833_ + R (Lhr;)Lczp; m_257390_ + static + 0 o p_259434_ + S (Lhr;)Liu; m_257954_ + static + 0 o p_260266_ + T (Lhr;)Lchw; m_257555_ + static + 0 o p_259869_ + U (Lhr;)Lcfu; m_257571_ + static + 0 o p_260227_ + V (Lhr;)Lbfn; m_257700_ + static + 0 o p_259175_ + W (Lhr;)Lckg; m_257853_ + static + 0 o p_259104_ + X (Lhr;)Lcpn; m_257716_ + static + 0 o p_259909_ + Y (Lhr;)Lbey; m_257765_ + static + 0 o p_259689_ + Z (Lhr;)Ldxd; m_257672_ + static + 0 o p_259453_ + a (Lacp;Ljava/lang/String;Ljb$a;)Lgz; m_257988_ + static + 0 o p_259887_ + 1 o p_259325_ + 2 o p_259759_ + a (Lacp;Lcom/mojang/serialization/Lifecycle;Ljb$a;)Lhr; m_258073_ + static + 0 o p_259121_ + 1 o p_259977_ + 2 o p_259874_ + a (Lhr;Lhr;)V m_257979_ + static + 0 o p_259480_ + 1 o p_259410_ + a (Ljb$a;Lia;)Ljava/lang/Object; m_258029_ + static + 0 o p_260350_ + 1 o p_259857_ + a (Lhr;)V m_257864_ + static + 0 o p_260209_ + a (Lacp;Ljava/lang/String;Lcom/mojang/serialization/Lifecycle;Ljb$a;)Lgz; m_257600_ + static + 0 o p_259400_ + 1 o p_259678_ + 2 o p_259157_ + 3 o p_259806_ + a (Lacp;Lia;Ljb$a;Lcom/mojang/serialization/Lifecycle;)Lia; m_257895_ + static + 0 o p_259230_ + 1 o p_260327_ + 2 o p_259210_ + 3 o p_259258_ + a (Lacp;Ljb$a;)Lhr; m_258002_ + static + 0 o p_260095_ + 1 o p_259057_ + a ()V m_257498_ + static + a (Lacq;Ljava/util/function/Supplier;)V m_258037_ + static + 0 o p_259863_ + 1 o p_259387_ + aa (Lhr;)Lamg; m_257614_ + static + 0 o p_260167_ + ab (Lhr;)Ldgl; m_257589_ + static + 0 o p_260052_ + b (Lacp;Ljava/lang/String;Lcom/mojang/serialization/Lifecycle;Ljb$a;)Lgz; m_257762_ + static + 0 o p_260010_ + 1 o p_260220_ + 2 o p_260139_ + 3 o p_260185_ + b (Lhr;)Lbrw; m_257942_ + static + 0 o p_259261_ + b (Lacp;Ljava/lang/String;Ljb$a;)Lgz; m_257834_ + static + 0 o p_259296_ + 1 o p_259101_ + 2 o p_259485_ + b ()V m_257453_ + static + c ()V m_257604_ + static + c (Lhr;)Ldti; m_257992_ + static + 0 o p_259361_ + d (Lhr;)Ldvs; m_257790_ + static + 0 o p_259305_ + e (Lhr;)Ldnu; m_257475_ + static + 0 o p_259370_ + f (Lhr;)Ldpl; m_258095_ + static + 0 o p_259122_ + g (Lhr;)Ldor; m_257531_ + static + 0 o p_259493_ + h (Lhr;)Ldpx; m_257888_ + static + 0 o p_259690_ + i (Lhr;)Ldof; m_258070_ + static + 0 o p_260329_ + j (Lhr;)Ldou; m_257688_ + static + 0 o p_259345_ + k (Lhr;)Ldri; m_257574_ + static + 0 o p_260335_ + l (Lhr;)Ldsj; m_257807_ + static + 0 o p_259466_ + m (Lhr;)Ldsr; m_257693_ + static + 0 o p_259722_ + n (Lhr;)Ldsy; m_257521_ + static + 0 o p_259179_ + o (Lhr;)Ldko; m_257618_ + static + 0 o p_259143_ + p (Lhr;)Ldjp; m_257371_ + static + 0 o p_260200_ + q (Lhr;)Ldis; m_257474_ + static + 0 o p_260006_ + r (Lhr;)Ldqi; m_257982_ + static + 0 o p_259663_ + s (Lhr;)Lbdd; m_257606_ + static + 0 o p_259607_ + t (Lhr;)Lbdb; m_257973_ + static + 0 o p_260093_ + u (Lhr;)Ledm; m_257434_ + static + 0 o p_259313_ + v (Lhr;)Lecx; m_258027_ + static + 0 o p_259862_ + w (Lhr;)Lede; m_257683_ + static + 0 o p_259329_ + x (Lhr;)Lecl; m_257391_ + static + 0 o p_259742_ + y (Lhr;)Leba; m_257537_ + static + 0 o p_259836_ + z (Lhr;)Leag; m_257420_ + static + 0 o p_260042_ +jb$a net/minecraft/core/registries/BuiltInRegistries$RegistryBootstrap + run (Lhr;)Ljava/lang/Object; m_257957_ + 0 o p_260128_ +jc net/minecraft/core/registries/Registries + A f_256757_ + B f_257010_ + C f_256949_ + D f_256913_ + E f_256976_ + F f_257015_ + G f_256871_ + H f_256829_ + I f_257032_ + J f_256924_ + K f_256793_ + L f_256815_ + M f_257023_ + N f_256798_ + O f_256929_ + P f_256836_ + Q f_256890_ + R f_256843_ + S f_256805_ + T f_256792_ + U f_257009_ + V f_256973_ + W f_256764_ + X f_256954_ + Y f_256768_ + Z f_256947_ + a f_257025_ + aA f_257011_ + aB f_256998_ + aC f_256948_ + aD f_266076_ + aE f_266063_ + aF f_256729_ + aG f_273919_ + aH f_256858_ + aI f_256862_ + aa f_276428_ + ab f_256723_ + ac f_256937_ + ad f_256840_ + ae f_256849_ + af f_256786_ + ag f_256888_ + ah f_257024_ + ai f_256983_ + aj f_256938_ + ak f_256845_ + al f_256963_ + am f_256749_ + an f_257019_ + ao f_271200_ + ap f_256952_ + aq f_256873_ + ar f_257003_ + as f_256911_ + at f_257040_ + au f_256787_ + av f_256724_ + aw f_256932_ + ax f_256865_ + ay f_256988_ + az f_256944_ + b f_256728_ + c f_256969_ + d f_256826_ + e f_256747_ + f f_256922_ + g f_256774_ + h f_256891_ + i f_256812_ + j f_257006_ + k f_256783_ + l f_256755_ + m f_256982_ + n f_279569_ + o f_256887_ + p f_268580_ + q f_256746_ + r f_256762_ + s f_256939_ + t f_256833_ + u f_256720_ + v f_256892_ + w f_256808_ + x f_256905_ + y f_256732_ + z f_256827_ + ()V + static + ()V + a (Ljava/lang/String;)Lacp; m_257397_ + static + 0 o p_259572_ + a (Lacp;)Lacp; m_257551_ + static + 0 o p_259475_ + b (Lacp;)Lacp; m_257452_ + static + 0 o p_260225_ +jd net/minecraft/core/registries/package-info +je net/minecraft/data/BlockFamilies + A f_175927_ + B f_175928_ + C f_175929_ + D f_175930_ + E f_175931_ + F f_175870_ + G f_175871_ + H f_175872_ + I f_175873_ + J f_175874_ + K f_175875_ + L f_175876_ + M f_175877_ + N f_175878_ + O f_175879_ + P f_175880_ + Q f_175881_ + R f_175882_ + S f_175883_ + T f_175884_ + U f_175885_ + V f_175886_ + W f_175887_ + X f_175888_ + Y f_175889_ + Z f_175890_ + a f_175896_ + aa f_175891_ + ab f_175892_ + ac f_175893_ + ad f_175894_ + ae f_175895_ + af f_175897_ + ag f_175898_ + ah f_175899_ + ai f_175900_ + aj f_175901_ + ak f_175902_ + al f_175903_ + am f_175904_ + an f_175905_ + ao f_175906_ + b f_271218_ + c f_175907_ + d f_175908_ + e f_175909_ + f f_175910_ + g f_175911_ + h f_175912_ + i f_175913_ + j f_235985_ + k f_244546_ + l f_244520_ + m f_235986_ + n f_175914_ + o f_175915_ + p f_175916_ + q f_175917_ + r f_175918_ + s f_175919_ + t f_175920_ + u f_175921_ + v f_175922_ + w f_175923_ + x f_175924_ + y f_175925_ + z f_175926_ + ()V + static + ()V + a (Lcpn;)Ljf$a; m_175935_ + static + 0 o p_175936_ + a ()Ljava/util/stream/Stream; m_175934_ + static +jf net/minecraft/data/BlockFamily + a f_175943_ + b f_175944_ + c f_244407_ + d f_175945_ + e f_175946_ + f f_175947_ + g f_175948_ + (Lcpn;)V + 0 o p_175950_ + a (Ljf$b;)Lcpn; m_175952_ + 0 o p_175953_ + a ()Lcpn; m_175951_ + a (Lcaw;)Z m_245288_ + 0 o p_250218_ + b ()Ljava/util/Map; m_175954_ + c ()Z m_175955_ + d ()Ljava/util/Optional; m_175957_ + e ()Ljava/util/Optional; m_175958_ +jf$a net/minecraft/data/BlockFamily$Builder + a f_175959_ + (Lcpn;)V + 0 o p_175961_ + a ([Lcau;)Ljf$a; m_245652_ + 0 o p_250956_ + a (Lcpn;Lcpn;)Ljf$a; m_175965_ + 0 o p_175966_ + 1 o p_175967_ + a (Ljava/lang/String;)Ljf$a; m_175968_ + 0 o p_175969_ + a ()Ljf; m_175962_ + a (Lcpn;)Ljf$a; m_175963_ + 0 o p_175964_ + b ()Ljf$a; m_175970_ + b (Lcpn;)Ljf$a; m_175971_ + 0 o p_175972_ + b (Ljava/lang/String;)Ljf$a; m_175973_ + 0 o p_175974_ + c ()Ljf$a; m_175975_ + c (Lcpn;)Ljf$a; m_245388_ + 0 o p_251947_ + d (Lcpn;)Ljf$a; m_175976_ + 0 o p_175977_ + e (Lcpn;)Ljf$a; m_175978_ + 0 o p_175979_ + f (Lcpn;)Ljf$a; m_175980_ + 0 o p_175981_ + g (Lcpn;)Ljf$a; m_246792_ + 0 o p_248790_ + h (Lcpn;)Ljf$a; m_175982_ + 0 o p_175983_ + i (Lcpn;)Ljf$a; m_247314_ + 0 o p_251301_ + j (Lcpn;)Ljf$a; m_175984_ + 0 o p_175985_ + k (Lcpn;)Ljf$a; m_175986_ + 0 o p_175987_ + l (Lcpn;)Ljf$a; m_175988_ + 0 o p_175989_ + m (Lcpn;)Ljf$a; m_175990_ + 0 o p_175991_ + n (Lcpn;)Ljf$a; m_175992_ + 0 o p_175993_ + o (Lcpn;)Ljf$a; m_175994_ + 0 o p_175995_ + p (Lcpn;)Ljf$a; m_175996_ + 0 o p_175997_ +jf$b net/minecraft/data/BlockFamily$Variant + a BUTTON + b CHISELED + c CRACKED + d CUT + e DOOR + f CUSTOM_FENCE + g FENCE + h CUSTOM_FENCE_GATE + i FENCE_GATE + j MOSAIC + k SIGN + l SLAB + m STAIRS + n PRESSURE_PLATE + o POLISHED + p TRAPDOOR + q WALL + r WALL_SIGN + s f_176013_ + t $VALUES + ()V + static + (Ljava/lang/String;ILjava/lang/String;)V + 0 o p_176017_ + 1 o p_176018_ + 2 o p_176019_ + a ()Ljava/lang/String; m_176020_ + b ()[Ljf$b; m_176021_ + static + valueOf (Ljava/lang/String;)Ljf$b; valueOf + static + 0 o p_176023_ + values ()[Ljf$b; values + static +jg net/minecraft/data/CachedOutput + a f_236016_ + ()V + static + a (Ljava/nio/file/Path;[BLcom/google/common/hash/HashCode;)V m_236018_ + static + 0 o p_236019_ + 1 o p_236020_ + 2 o p_236021_ + writeIfNeeded (Ljava/nio/file/Path;[BLcom/google/common/hash/HashCode;)V m_213871_ + 0 o p_236022_ + 1 o p_236023_ + 2 o p_236024_ +jh net/minecraft/data/DataGenerator + a f_123905_ + b f_243753_ + c f_244116_ + d f_252429_ + e f_236026_ + f f_236027_ + g f_236028_ + ()V + static + (Ljava/nio/file/Path;Lad;Z)V + 0 o p_251724_ + 1 o p_250554_ + 2 o p_251323_ + a (Ljj;Lcom/google/common/base/Stopwatch;Ljava/lang/String;Lji;)V m_253255_ + 0 o p_254327_ + 1 o p_254527_ + 2 o p_254418_ + 3 o p_253750_ + a ()V m_123917_ + a (ZLjava/lang/String;)Ljh$a; m_253030_ + 0 o p_253826_ + 1 o p_254134_ + a (Z)Ljh$a; m_253147_ + 0 o p_254422_ +jh$a net/minecraft/data/DataGenerator$PackGenerator + a f_252527_ + b f_252435_ + c f_252464_ + d f_252503_ + (Ljh;ZLjava/lang/String;Ljk;)V + 0 o p_253865_ + 1 o p_253884_ + 2 o p_254544_ + 3 o p_254363_ + a (Lji$a;)Lji; m_253108_ + 0 o p_254382_ +ji net/minecraft/data/DataProvider + a f_236067_ + b f_236068_ + c f_252483_ + ()V + static + a (Lit/unimi/dsi/fastutil/objects/Object2IntOpenHashMap;)V m_236069_ + static + 0 o p_236070_ + a (Ljg;Lcom/google/gson/JsonElement;Ljava/nio/file/Path;)Ljava/util/concurrent/CompletableFuture; m_253162_ + static + 0 o p_253653_ + 1 o p_254542_ + 2 o p_254467_ + a (Ljg;)Ljava/util/concurrent/CompletableFuture; m_213708_ + 0 o p_236071_ + a ()Ljava/lang/String; m_6055_ + a (Lcom/google/gson/JsonElement;Ljg;Ljava/nio/file/Path;)V m_252607_ + static + 0 o p_253372_ + 1 o p_253373_ + 2 o p_253374_ + a (Ljava/lang/String;)Ljava/lang/String; m_236076_ + static + 0 o p_236077_ +ji$a net/minecraft/data/DataProvider$Factory + create (Ljk;)Lji; m_253034_ + 0 o p_253851_ +jj net/minecraft/data/HashCache + a f_123926_ + b f_236078_ + c f_236079_ + d f_236080_ + e f_236081_ + f f_252445_ + g f_236083_ + h f_236084_ + i f_236085_ + j f_252434_ + ()V + static + (Ljava/nio/file/Path;Ljava/util/Collection;Lad;)V + 0 o p_236087_ + 1 o p_253748_ + 2 o p_236089_ + a (Ljava/lang/String;Ljj$d;)Ljava/util/concurrent/CompletableFuture; m_253234_ + 0 o p_253944_ + 1 o p_254321_ + a (Lorg/apache/commons/lang3/mutable/MutableInt;Ljava/util/Set;Lorg/apache/commons/lang3/mutable/MutableInt;Ljava/nio/file/Path;)V m_236102_ + 0 o p_236103_ + 1 o p_236104_ + 2 o p_236105_ + 3 o p_236106_ + a (Ljava/util/Set;Ljava/lang/String;Ljj$b;)V m_252609_ + 0 o p_253377_ + 1 o p_253378_ + 2 o p_253379_ + a (Ljava/nio/file/Path;Ljava/nio/file/Path;)Ljj$b; m_236092_ + static + 0 o p_236093_ + 1 o p_236094_ + a (Ljj$a;Ljava/lang/Object;)Ljj$e; m_252608_ + static + 0 o p_253375_ + 1 o p_253376_ + a ()V m_123937_ + a (Ljj$e;)V m_253116_ + 0 o p_253725_ + a (Ljava/lang/String;)Z m_253256_ + 0 o p_254319_ + b (Ljava/lang/String;)Ljava/nio/file/Path; m_252859_ + 0 o p_254395_ +jj$a net/minecraft/data/HashCache$CacheUpdater + b f_252426_ + c f_252505_ + d f_236113_ + e f_236114_ + f f_236115_ + g f_252460_ + (Ljj;Ljava/lang/String;Ljava/lang/String;Ljj$b;)V + 0 o p_254463_ + 1 o p_253971_ + 2 o p_254002_ + 3 o p_254244_ + a ()Ljj$e; m_253164_ + a (Ljava/nio/file/Path;Lcom/google/common/hash/HashCode;)Z m_236119_ + 0 o p_236120_ + 1 o p_236121_ + writeIfNeeded (Ljava/nio/file/Path;[BLcom/google/common/hash/HashCode;)V m_213871_ + 0 o p_236123_ + 1 o p_236124_ + 2 o p_236125_ +jj$b net/minecraft/data/HashCache$ProviderCache + a f_236126_ + b f_236127_ + (Ljava/lang/String;Lcom/google/common/collect/ImmutableMap;)V + 0 o f_236126_ + 1 o f_236127_ + a (Ljava/nio/file/Path;Ljava/nio/file/Path;Ljava/lang/String;)V m_236142_ + 0 o p_236143_ + 1 o p_236144_ + 2 o p_236145_ + a (Ljava/nio/file/Path;Ljava/nio/file/Path;)Ljj$b; m_236139_ + static + 0 o p_236140_ + 1 o p_236141_ + a (Ljava/nio/file/Path;)Lcom/google/common/hash/HashCode; m_236134_ + 0 o p_236135_ + a ()I m_236133_ + a (Lcom/google/common/collect/ImmutableMap$Builder;Ljava/nio/file/Path;Ljava/lang/String;)V m_252610_ + static + 0 o p_253380_ + 1 o p_253381_ + 2 o p_253382_ + b ()Ljava/lang/String; f_236126_ + c ()Lcom/google/common/collect/ImmutableMap; f_236127_ + equals (Ljava/lang/Object;)Z equals + 0 o p_236153_ + hashCode ()I hashCode + toString ()Ljava/lang/String; toString +jj$c net/minecraft/data/HashCache$ProviderCacheBuilder + a f_252424_ + b f_252466_ + (Ljava/lang/String;Ljava/util/concurrent/ConcurrentMap;)V + 0 o f_252424_ + 1 o f_252466_ + (Ljava/lang/String;)V + 0 o p_254186_ + a ()Ljj$b; m_252979_ + a (Ljava/nio/file/Path;Lcom/google/common/hash/HashCode;)V m_252796_ + 0 o p_254121_ + 1 o p_254288_ + b ()Ljava/lang/String; f_252424_ + c ()Ljava/util/concurrent/ConcurrentMap; f_252466_ + equals (Ljava/lang/Object;)Z equals + 0 o p_254241_ + hashCode ()I hashCode + toString ()Ljava/lang/String; toString +jj$d net/minecraft/data/HashCache$UpdateFunction + update (Ljg;)Ljava/util/concurrent/CompletableFuture; m_252999_ + 0 o p_253936_ +jj$e net/minecraft/data/HashCache$UpdateResult + a f_252422_ + b f_252528_ + c f_252492_ + (Ljava/lang/String;Ljj$b;I)V + 0 o f_252422_ + 1 o f_252528_ + 2 o f_252492_ + a ()Ljava/lang/String; f_252422_ + b ()Ljj$b; f_252528_ + c ()I f_252492_ + equals (Ljava/lang/Object;)Z equals + 0 o p_253838_ + hashCode ()I hashCode + toString ()Ljava/lang/String; toString +jk net/minecraft/data/PackOutput + a f_243723_ + (Ljava/nio/file/Path;)V + 0 o p_252039_ + a ()Ljava/nio/file/Path; m_245114_ + a (Ljk$b;Ljava/lang/String;)Ljk$a; m_245269_ + 0 o p_249479_ + 1 o p_251050_ + a (Ljk$b;)Ljava/nio/file/Path; m_247566_ + 0 o p_251669_ +jk$a net/minecraft/data/PackOutput$PathProvider + a f_244594_ + b f_244198_ + (Ljk;Ljk$b;Ljava/lang/String;)V + 0 o p_249025_ + 1 o p_251200_ + 2 o p_251982_ + a (Lacq;Ljava/lang/String;)Ljava/nio/file/Path; m_245527_ + 0 o p_250940_ + 1 o p_251208_ + a (Lacq;)Ljava/nio/file/Path; m_245731_ + 0 o p_251634_ +jk$b net/minecraft/data/PackOutput$Target + a DATA_PACK + b RESOURCE_PACK + c REPORTS + d f_244334_ + e $VALUES + ()V + static + (Ljava/lang/String;ILjava/lang/String;)V + 0 o p_248683_ + 1 o p_249114_ + 2 o p_251326_ + a ()[Ljk$b; m_245592_ + static + valueOf (Ljava/lang/String;)Ljk$b; valueOf + static + 0 o p_250079_ + values ()[Ljk$b; values + static +jl net/minecraft/data/advancements/AdvancementProvider + d f_236156_ + e f_244266_ + f f_254664_ + (Ljk;Ljava/util/concurrent/CompletableFuture;Ljava/util/List;)V + 0 o p_256529_ + 1 o p_255722_ + 2 o p_255883_ + a (Ljava/util/Set;Ljava/util/List;Ljg;Lae;)V m_252618_ + 0 o p_253394_ + 1 o p_253395_ + 2 o p_253396_ + 3 o p_253397_ + a (Ljg;)Ljava/util/concurrent/CompletableFuture; m_213708_ + 0 o p_254268_ + a ()Ljava/lang/String; m_6055_ + a (Ljg;Lhg$b;)Ljava/util/concurrent/CompletionStage; m_254775_ + 0 o p_255483_ + 1 o p_255484_ + a (I)[Ljava/util/concurrent/CompletableFuture; m_252617_ + static + 0 o p_253393_ +jm net/minecraft/data/advancements/AdvancementSubProvider + a (Ljava/lang/String;)Lae; m_266597_ + static + 0 o p_267076_ + a (Lhg$b;Ljava/util/function/Consumer;)V m_245571_ + 0 o p_255901_ + 1 o p_250888_ +jn net/minecraft/data/advancements/package-info +jo net/minecraft/data/advancements/packs/VanillaAdvancementProvider + ()V + a (Ljk;Ljava/util/concurrent/CompletableFuture;)Ljl; m_255090_ + static + 0 o p_255890_ + 1 o p_255777_ +jp net/minecraft/data/advancements/packs/VanillaAdventureAdvancements + a f_243785_ + b f_243873_ + c f_244108_ + d f_244595_ + e f_244488_ + ()V + static + ()V + a (Lcj$d;Lbo;)Lcg$a; m_246578_ + static + 0 o p_252298_ + 1 o p_251894_ + a (Lhg$b;Ljava/util/function/Consumer;)V m_245571_ + 0 o p_255887_ + 1 o p_256428_ + a (Ljava/util/Map;Lae$a;Lcfu;)V m_284397_ + static + 0 o p_285354_ + 1 o p_285386_ + 2 o p_284946_ + a (Lbfn;Lcfu;)Ldh$a; m_247530_ + static + 0 o p_249703_ + 1 o p_250746_ + a (Lae$a;)Lae$a; m_284237_ + static + 0 o p_285368_ + a (Lcpn;Lha;)Leby$a; m_285713_ + static + 0 o p_286189_ + 1 o p_286190_ + a (I)[Ljava/lang/String; m_284250_ + static + 0 o p_285038_ + a (Lha;)Leck$a; m_285711_ + static + 0 o p_286187_ + a (Lcpn;)Lam; m_286005_ + static + 0 o p_286401_ + a (Lae$a;Ljava/util/List;)Lae$a; m_246284_ + static + 0 o p_249250_ + 1 o p_251338_ + a (Ljava/util/function/Consumer;Lae;Lcny$a;)V m_274337_ + static + 0 o p_275645_ + 1 o p_275219_ + 2 o p_275211_ + b (Lcpn;)Lam; m_285999_ + static + 0 o p_286250_ + b (I)[Leck$a; m_285714_ + static + 0 o p_286191_ + b (Lae$a;)Lae$a; m_284219_ + static + 0 o p_285062_ + c (Lae$a;)Lae$a; m_284287_ + static + 0 o p_285170_ + c (I)[Leck$a; m_285712_ + static + 0 o p_286188_ + d (Lae$a;)Lae$a; m_247704_ + static + 0 o p_248814_ +jq net/minecraft/data/advancements/packs/VanillaHusbandryAdvancements + a f_243832_ + b f_244418_ + c f_244058_ + d f_244171_ + e f_244235_ + f f_243834_ + ()V + static + ()V + a (Lhg$b;Ljava/util/function/Consumer;)V m_245571_ + 0 o p_255680_ + 1 o p_251389_ + a (Lae$a;Lhe$c;)V m_285715_ + static + 0 o p_286192_ + 1 o p_286193_ + a (Lae$a;Lbfn;)V m_266128_ + static + 0 o p_266618_ + 1 o p_266619_ + a (Lae;Ljava/util/function/Consumer;Ljava/util/stream/Stream;Ljava/util/stream/Stream;)Lae; m_266572_ + static + 0 o p_267284_ + 1 o p_266923_ + 2 o p_266961_ + 3 o p_266751_ + a (Lae$a;)Lae$a; m_246845_ + static + 0 o p_249739_ + a (Lae$a;Ljava/util/stream/Stream;Ljava/util/stream/Stream;)Lae$a; m_266319_ + static + 0 o p_266978_ + 1 o p_267147_ + 2 o p_267091_ + a (Lae$a;Ljava/util/Map$Entry;)V m_245400_ + static + 0 o p_250740_ + 1 o p_249721_ + b (Lae$a;)Lae$a; m_247039_ + static + 0 o p_248532_ + b (Lae$a;Lbfn;)V m_266129_ + static + 0 o p_266620_ + 1 o p_266621_ + c (Lae$a;)Lae$a; m_246714_ + static + 0 o p_249285_ + d (Lae$a;)Lae$a; m_245640_ + static + 0 o p_248725_ + e (Lae$a;)Lae$a; m_247568_ + static + 0 o p_249232_ +jr net/minecraft/data/advancements/packs/VanillaNetherAdvancements + a f_244374_ + ()V + static + ()V + a (Lhg$b;Ljava/util/function/Consumer;)V m_245571_ + 0 o p_256338_ + 1 o p_249760_ +js net/minecraft/data/advancements/packs/VanillaStoryAdvancements + ()V + a (Lhg$b;Ljava/util/function/Consumer;)V m_245571_ + 0 o p_256574_ + 1 o p_248554_ +jt net/minecraft/data/advancements/packs/VanillaTheEndAdvancements + ()V + a (Lhg$b;Ljava/util/function/Consumer;)V m_245571_ + 0 o p_256214_ + 1 o p_250851_ +ju net/minecraft/data/advancements/packs/package-info +jv net/minecraft/data/info/BiomeParametersDumpReport + d f_236172_ + e f_236173_ + f f_254649_ + g f_273829_ + h f_273888_ + ()V + static + (Ljk;Ljava/util/concurrent/CompletableFuture;)V + 0 o p_256322_ + 1 o p_256222_ + a (Ljava/nio/file/Path;Ljava/lang/String;)V m_236193_ + static + 0 o p_236194_ + 1 o p_236195_ + a (Ljg;)Ljava/util/concurrent/CompletableFuture; m_213708_ + 0 o p_254091_ + a ()Ljava/lang/String; m_6055_ + a (Ljg;Lhg$b;)Ljava/util/concurrent/CompletionStage; m_274034_ + 0 o p_274754_ + 1 o p_274755_ + a (Ljava/nio/file/Path;Ljg;Lcom/mojang/serialization/DynamicOps;Lcom/mojang/serialization/Encoder;Ljava/lang/Object;)Ljava/util/concurrent/CompletableFuture; m_253112_ + static + 0 o p_254407_ + 1 o p_254093_ + 2 o p_253788_ + 3 o p_254276_ + 4 o p_254073_ + a (I)[Ljava/util/concurrent/CompletableFuture; m_252619_ + static + 0 o p_253398_ + a (Ljava/util/List;Ljg;Lcom/mojang/serialization/DynamicOps;Lcny$a;Lcnt$c;)V m_274035_ + 0 o p_274756_ + 1 o p_274757_ + 2 o p_274758_ + 3 o p_274759_ + 4 o p_274760_ + a (Lacq;)Ljava/nio/file/Path; m_236178_ + 0 o p_236179_ +jw net/minecraft/data/info/BlockListReport + d f_243884_ + (Ljk;)V + 0 o p_251533_ + a (Ljg;)Ljava/util/concurrent/CompletableFuture; m_213708_ + 0 o p_236197_ + a ()Ljava/lang/String; m_6055_ +jx net/minecraft/data/info/CommandsReport + d f_244606_ + e f_254639_ + (Ljk;Ljava/util/concurrent/CompletableFuture;)V + 0 o p_256167_ + 1 o p_256506_ + a (Ljg;)Ljava/util/concurrent/CompletableFuture; m_213708_ + 0 o p_253721_ + a ()Ljava/lang/String; m_6055_ + a (Ljg;Ljava/nio/file/Path;Lhg$b;)Ljava/util/concurrent/CompletionStage; m_255064_ + static + 0 o p_256668_ + 1 o p_256066_ + 2 o p_256367_ +jy net/minecraft/data/info/RegistryDumpReport + d f_244388_ + (Ljk;)V + 0 o p_249862_ + a (Lhr;)Lcom/google/gson/JsonElement; m_124058_ + static + 0 o p_124059_ + a (Ljg;)Ljava/util/concurrent/CompletableFuture; m_213708_ + 0 o p_253743_ + a (Lhr;Lcom/google/gson/JsonObject;Lhe$c;)V m_257119_ + static + 0 o p_258201_ + 1 o p_258202_ + 2 o p_211092_ + a (Lcom/google/gson/JsonObject;Lhe$c;)V m_211086_ + static + 0 o p_211087_ + 1 o p_211088_ + a ()Ljava/lang/String; m_6055_ +jz net/minecraft/data/info/package-info +k com/mojang/math/package-info +ka net/minecraft/data/loot/BlockLootSubProvider + a f_243678_ + b f_244217_ + c f_243905_ + d f_243865_ + e f_243739_ + f f_244441_ + g f_244509_ + h f_244301_ + i f_244248_ + j f_244531_ + ()V + static + (Ljava/util/Set;Lcaw;)V + 0 o p_249153_ + 1 o p_251215_ + (Ljava/util/Set;Lcaw;Ljava/util/Map;)V + 0 o p_281507_ + 1 o p_283552_ + 2 o p_282212_ + a (Lcpn;Lcml;)Ldzs$a; m_245514_ + 0 o p_249305_ + 1 o p_251905_ + a (Lcml;)Ldzs$a; m_247033_ + 0 o p_251912_ + a (Lcpn;Ldde;Ljava/lang/Comparable;)Ldzs$a; m_245178_ + 0 o p_252154_ + 1 o p_250272_ + 2 o p_250292_ + a (Lcpn;)Ldzs$a; m_247233_ + 0 o p_251313_ + a (Lcpn;Lcfu;)Ldzs$a; m_246109_ + 0 o p_250450_ + 1 o p_249745_ + a (Lcpn;Lcml;Ledf;)Ldzs$a; m_245142_ + 0 o p_251449_ + 1 o p_248558_ + 2 o p_250047_ + a (Lcml;Leaw;)Leaw; m_246108_ + 0 o p_248695_ + 1 o p_248548_ + a (Lcpn;Ljava/lang/Integer;)Leaz$a; m_271572_ + static + 0 o p_272347_ + 1 o p_272348_ + a (Lcml;Lecd;)Lecd; m_247733_ + 0 o p_249717_ + 1 o p_248851_ + a ()Ldzs$a; m_246386_ + static + a (Lcpn;Lcfu;Lcfu;Leck$a;)Ldzs$a; m_245238_ + 0 o p_249457_ + 1 o p_248599_ + 2 o p_251915_ + 3 o p_252202_ + a (Lcpn;Ldzs$a;)V m_247577_ + 0 o p_250610_ + 1 o p_249817_ + a (Lcpn;Leck$a;Leaf$a;)Ldzs$a; m_246900_ + static + 0 o p_252253_ + 1 o p_248764_ + 2 o p_249146_ + a (Lcpn;Ljava/util/function/Function;)V m_246481_ + 0 o p_251966_ + 1 o p_251699_ + a (Lcpn;Lcpn;)Ldzs$a; m_246224_ + 0 o p_248590_ + 1 o p_248735_ + a (Lcpn;Lcpn;[F)Ldzs$a; m_246047_ + 0 o p_250088_ + 1 o p_250731_ + 2 o p_248949_ + a (Lcpn;Lha;)Leaz$a; m_245661_ + static + 0 o p_250555_ + 1 o p_251536_ + a (Lcpn;Leaf$a;)Ldzs$a; m_247502_ + static + 0 o p_250203_ + 1 o p_252089_ + a (Lcml;Ledf;)Ldzs$a; m_245765_ + 0 o p_251584_ + 1 o p_249865_ + a (Lcpn;Leck$a;)Ldzs$a; m_246235_ + 0 o p_249088_ + 1 o p_251535_ + b (Lcpn;Lcfu;)Ldzs$a; m_247642_ + 0 o p_250957_ + 1 o p_249098_ + b (Lcpn;Lcpn;)V m_245693_ + 0 o p_252269_ + 1 o p_250696_ + b (Lcpn;)Ldzs$a; m_246180_ + 0 o p_252291_ + b (Lcpn;Leaf$a;)Ldzs$a; m_247184_ + static + 0 o p_252195_ + 1 o p_250102_ + b (Lcpn;Lcml;)Ldzs$a; m_245079_ + 0 o p_249959_ + 1 o p_249315_ + b (Lcpn;Ljava/lang/Integer;)Leaz$a; m_246855_ + static + 0 o p_249961_ + 1 o p_249985_ + b (Lcpn;Lcpn;[F)Ldzs$a; m_246142_ + 0 o p_249535_ + 1 o p_251505_ + 2 o p_250753_ + b (Lcml;)Ldzs$a; m_245929_ + static + 0 o p_250684_ + b ()V m_245660_ + c (Lcpn;Ljava/lang/Integer;)Leaz$a; m_247103_ + static + 0 o p_250915_ + 1 o p_249795_ + c (Lcpn;)Ldzs$a; m_247334_ + 0 o p_252164_ + c (Lcpn;Lcml;)V m_246125_ + 0 o p_248885_ + 1 o p_251883_ + c (Lcpn;Lcfu;)Ldzs$a; m_246312_ + 0 o p_249778_ + 1 o p_250678_ + c (Lcpn;Lcpn;)V m_245854_ + 0 o p_249932_ + 1 o p_252053_ + c (Lcml;)Ldzs$a; m_245335_ + static + 0 o p_252216_ + c (Lcpn;Leaf$a;)Ldzs$a; m_246160_ + static + 0 o p_250539_ + 1 o p_251459_ + d (Lcml;)Ldzs$a; m_245602_ + 0 o p_249395_ + d (Lcpn;)Ldzs$a; m_246167_ + 0 o p_251306_ + e (Lcpn;)Ldzs$a; m_246218_ + 0 o p_251511_ + f (Lcpn;)Ldzs$a; m_245671_ + 0 o p_251906_ + g (Lcpn;)Ldzs$a; m_247458_ + 0 o p_249810_ + generate (Ljava/util/function/BiConsumer;)V m_245126_ + 0 o p_249322_ + h (Lcpn;)Ldzs$a; m_247273_ + static + 0 o p_250988_ + i (Lcpn;)Ldzs$a; m_247247_ + static + 0 o p_248770_ + j (Lcpn;)Ldzs$a; m_245658_ + static + 0 o p_251070_ + k (Lcpn;)Ldzs$a; m_245349_ + 0 o p_252139_ + l (Lcpn;)Ldzs$a; m_245170_ + 0 o p_251103_ + m (Lcpn;)Ldzs$a; m_246463_ + static + 0 o p_248678_ + n (Lcpn;)Ldzs$a; m_245895_ + 0 o p_250896_ + o (Lcpn;)Ldzs$a; m_271693_ + 0 o p_273240_ + p (Lcpn;)Ldzs$a; m_246838_ + static + 0 o p_250280_ + q (Lcpn;)Ldzs$a; m_247398_ + 0 o p_252166_ + r (Lcpn;)V m_246535_ + 0 o p_251064_ + s (Lcpn;)V m_245644_ + 0 o p_250855_ + t (Lcpn;)V m_245724_ + 0 o p_249181_ + u (Lcpn;)Ldzs$a; m_246087_ + 0 o p_250193_ +kb net/minecraft/data/loot/EntityLootSubProvider + a f_244460_ + b f_244591_ + c f_265862_ + d f_266009_ + e f_244213_ + ()V + static + (Lcaw;Lcaw;)V + 0 o p_266989_ + 1 o p_267138_ + (Lcaw;)V + 0 o p_251971_ + a (Lbfn;)Z m_245552_ + static + 0 o p_249029_ + a (Ljava/util/Set;Lhe$c;Ljava/util/function/BiConsumer;Lacq;Ldzs$a;)V m_247265_ + static + 0 o p_249154_ + 1 o p_251078_ + 2 o p_250081_ + 3 o p_250376_ + 4 o p_250972_ + a (Lbfn;Ldzs$a;)V m_245309_ + 0 o p_248740_ + 1 o p_249440_ + a (Lbfn;Lacq;Ldzs$a;)V m_247520_ + 0 o p_252130_ + 1 o p_251706_ + 2 o p_249357_ + a (Lbrw;)Leck$a; m_247253_ + 0 o p_249403_ + a ()V m_246942_ + a (Ljava/util/Set;Ljava/util/function/BiConsumer;Lhe$c;)V m_266130_ + 0 o p_266622_ + 1 o p_266623_ + 2 o p_266624_ + a (Lcml;)Ldzs$a; m_246752_ + static + 0 o p_249422_ + b (Lbfn;)Ljava/util/Map; m_246961_ + static + 0 o p_251466_ + b ()Leck$a; m_245873_ + generate (Ljava/util/function/BiConsumer;)V m_245126_ + 0 o p_251751_ +kc net/minecraft/data/loot/LootTableProvider + d f_124431_ + e f_236267_ + f f_243940_ + g f_124434_ + ()V + static + (Ljk;Ljava/util/Set;Ljava/util/List;)V + 0 o p_254123_ + 1 o p_254481_ + 2 o p_253798_ + a (Ljava/util/Map;Ljava/util/Map;Lkc$a;Lacq;Ldzs$a;)V m_287804_ + static + 0 o p_288256_ + 1 o p_288257_ + 2 o p_288258_ + 3 o p_288259_ + 4 o p_288260_ + a (Ljava/util/Map;Ljava/util/Map;Lkc$a;)V m_287805_ + static + 0 o p_288261_ + 1 o p_288262_ + 2 o p_288263_ + a (Ljg;)Ljava/util/concurrent/CompletableFuture; m_213708_ + 0 o p_254060_ + a (Ljava/lang/String;Ljava/lang/String;)V m_124445_ + static + 0 o p_124446_ + 1 o p_124447_ + a ()Ljava/lang/String; m_6055_ + a (Ljg;Ljava/util/Map$Entry;)Ljava/util/concurrent/CompletableFuture; m_278531_ + 0 o p_278899_ + 1 o p_278900_ + a (I)[Ljava/util/concurrent/CompletableFuture; m_252621_ + static + 0 o p_253403_ + a (Ldzv;Lacq;Ldzs;)V m_278530_ + static + 0 o p_278896_ + 1 o p_278897_ + 2 o p_278898_ +kc$1 net/minecraft/data/loot/LootTableProvider$1 + a f_278445_ + b f_278446_ + (Lkc;Ljava/util/Map;)V + 0 o p_279132_ + 1 o p_279207_ + getElement (Ldzm;)Ljava/lang/Object; m_278667_ + 0 o p_279283_ +kc$a net/minecraft/data/loot/LootTableProvider$SubProviderEntry + a f_243941_ + b f_244144_ + (Ljava/util/function/Supplier;Lebu;)V + 0 o f_243941_ + 1 o f_244144_ + a ()Ljava/util/function/Supplier; f_243941_ + b ()Lebu; f_244144_ + equals (Ljava/lang/Object;)Z equals + 0 o p_249337_ + hashCode ()I hashCode + toString ()Ljava/lang/String; toString +kd net/minecraft/data/loot/LootTableSubProvider + generate (Ljava/util/function/BiConsumer;)V m_245126_ + 0 o p_249643_ +ke net/minecraft/data/loot/package-info +kf net/minecraft/data/loot/packs/VanillaArchaeologyLoot + ()V + generate (Ljava/util/function/BiConsumer;)V m_245126_ + 0 o p_278066_ +kg net/minecraft/data/loot/packs/VanillaBlockLoot + h f_243668_ + i f_244490_ + ()V + static + ()V + A (Lcpn;)Ldzs$a; m_247712_ + static + 0 o p_251108_ + A (Lkg;Lcpn;)Ldzs$a; m_247608_ + static + 0 o p_251032_ + 1 o p_248577_ + B (Lkg;Lcpn;)Ldzs$a; m_246986_ + static + 0 o p_249587_ + 1 o p_248952_ + B (Lcpn;)Ldzs$a; m_247633_ + 0 o p_250097_ + C (Lkg;Lcpn;)Ldzs$a; m_246380_ + static + 0 o p_251696_ + 1 o p_252160_ + C (Lcpn;)Ldzs$a; m_245460_ + 0 o p_250026_ + D (Lcpn;)Ldzs$a; m_245175_ + 0 o p_251856_ + D (Lkg;Lcpn;)Ldzs$a; m_245918_ + static + 0 o p_251169_ + 1 o p_248646_ + E (Lcpn;)Ldzs$a; m_247147_ + 0 o p_251150_ + E (Lkg;Lcpn;)Ldzs$a; m_246591_ + static + 0 o p_250868_ + 1 o p_250718_ + F (Lkg;Lcpn;)Ldzs$a; m_246204_ + static + 0 o p_248704_ + 1 o p_250875_ + F (Lcpn;)Ldzs$a; m_247157_ + 0 o p_249769_ + G (Lkg;Lcpn;)Ldzs$a; m_245673_ + static + 0 o p_249373_ + 1 o p_250906_ + G (Lcpn;)Ldzs$a; m_245770_ + 0 o p_250849_ + H (Lkg;Lcpn;)Ldzs$a; m_245144_ + static + 0 o p_249991_ + 1 o p_251370_ + H (Lcpn;)Ldzs$a; m_246147_ + 0 o p_252178_ + I (Lkg;Lcpn;)Ldzs$a; m_247066_ + static + 0 o p_249294_ + 1 o p_250955_ + I (Lcpn;)Ldzs$a; m_245044_ + 0 o p_251518_ + J (Lcpn;)Ldzs$a; m_246842_ + 0 o p_249349_ + J (Lkg;Lcpn;)Ldzs$a; m_246388_ + static + 0 o p_252107_ + 1 o p_248769_ + K (Lkg;Lcpn;)Ldzs$a; m_245218_ + static + 0 o p_252351_ + 1 o p_250962_ + K (Lcpn;)Ldzs$a; m_247296_ + 0 o p_251424_ + L (Lcpn;)Ldzs$a; m_246135_ + 0 o p_248803_ + L (Lkg;Lcpn;)Ldzs$a; m_245908_ + static + 0 o p_250652_ + 1 o p_250378_ + M (Lkg;Lcpn;)Ldzs$a; m_246450_ + static + 0 o p_248724_ + 1 o p_250222_ + M (Lcpn;)Ldzs$a; m_246695_ + 0 o p_249543_ + N (Lkg;Lcpn;)Ldzs$a; m_247352_ + static + 0 o p_248668_ + 1 o p_248838_ + N (Lcpn;)Ldzs$a; m_247485_ + 0 o p_249226_ + O (Lcpn;)Ldzs$a; m_246557_ + 0 o p_250546_ + O (Lkg;Lcpn;)Ldzs$a; m_247486_ + static + 0 o p_251102_ + 1 o p_248609_ + P (Lkg;Lcpn;)Ldzs$a; m_247151_ + static + 0 o p_251117_ + 1 o p_251205_ + P (Lcpn;)Ldzs$a; m_247215_ + 0 o p_251177_ + Q (Lkg;Lcpn;)Ldzs$a; m_246421_ + static + 0 o p_250329_ + 1 o p_249831_ + Q (Lcpn;)Ldzs$a; m_246969_ + 0 o p_250687_ + R (Lkg;Lcpn;)Ldzs$a; m_245767_ + static + 0 o p_249265_ + 1 o p_250727_ + R (Lcpn;)Ldzs$a; m_247128_ + 0 o p_249323_ + S (Lcpn;)Ldzs$a; m_246452_ + 0 o p_249875_ + S (Lkg;Lcpn;)Ldzs$a; m_245881_ + static + 0 o p_251756_ + 1 o p_250001_ + T (Lcpn;)Ldzs$a; m_247028_ + 0 o p_250898_ + T (Lkg;Lcpn;)Ldzs$a; m_245796_ + static + 0 o p_250587_ + 1 o p_248545_ + U (Lcpn;)Ldzs$a; m_246098_ + 0 o p_251035_ + U (Lkg;Lcpn;)Ldzs$a; m_247164_ + static + 0 o p_250037_ + 1 o p_252043_ + V (Lcpn;)Ldzs$a; m_246551_ + 0 o p_249219_ + V (Lkg;Lcpn;)Ldzs$a; m_245267_ + static + 0 o p_249463_ + 1 o p_250520_ + W (Lkg;Lcpn;)Ldzs$a; m_246967_ + static + 0 o p_251385_ + 1 o p_251962_ + W (Lcpn;)Ldzs$a; m_246812_ + 0 o p_252000_ + X (Lkg;Lcpn;)Ldzs$a; m_246753_ + static + 0 o p_250219_ + 1 o p_250178_ + X (Lcpn;)Ldzs$a; m_245352_ + 0 o p_251355_ + Y (Lcpn;)Ldzs$a; m_245917_ + 0 o p_249260_ + Y (Lkg;Lcpn;)Ldzs$a; m_245312_ + static + 0 o p_250833_ + 1 o p_250717_ + Z (Lkg;Lcpn;)Ldzs$a; m_245855_ + static + 0 o p_250782_ + 1 o p_250538_ + Z (Lcpn;)Ldzs$a; m_245659_ + 0 o p_250095_ + a (Ljava/lang/Integer;)Leaf$a; m_276716_ + static + 0 o p_277248_ + a (Lkg;Lcpn;)Ldzs$a; m_247123_ + static + 0 o p_248985_ + 1 o p_249777_ + a (Lcpn;Ljava/lang/Integer;)Leaf$a; m_246220_ + static + 0 o p_251441_ + 1 o p_251216_ + aA (Lkg;Lcpn;)Ldzs$a; m_271577_ + static + 0 o p_272356_ + 1 o p_272357_ + aA (Lcpn;)Ldzs$a; m_246512_ + 0 o p_252316_ + aB (Lcpn;)Ldzs$a; m_246713_ + 0 o p_251275_ + aB (Lkg;Lcpn;)Ldzs$a; m_271586_ + static + 0 o p_272373_ + 1 o p_272374_ + aC (Lcpn;)Ldzs$a; m_247716_ + 0 o p_252081_ + aC (Lkg;Lcpn;)Ldzs$a; m_271585_ + static + 0 o p_272371_ + 1 o p_272372_ + aD (Lkg;Lcpn;)Ldzs$a; m_271584_ + static + 0 o p_272369_ + 1 o p_272370_ + aD (Lcpn;)Ldzs$a; m_246607_ + 0 o p_250267_ + aE (Lcpn;)Ldzs$a; m_246024_ + 0 o p_251619_ + aE (Lkg;Lcpn;)Ldzs$a; m_271581_ + static + 0 o p_272364_ + 1 o p_272365_ + aF (Lcpn;)Ldzs$a; m_245819_ + 0 o p_250517_ + aF (Lkg;Lcpn;)Ldzs$a; m_276710_ + static + 0 o p_277238_ + 1 o p_277239_ + aG (Lcpn;)Ldzs$a; m_246234_ + 0 o p_250939_ + aG (Lkg;Lcpn;)Ldzs$a; m_276712_ + static + 0 o p_277241_ + 1 o p_277242_ + aH (Lkg;Lcpn;)Ldzs$a; m_276715_ + static + 0 o p_277246_ + 1 o p_277247_ + aH (Lcpn;)Ldzs$a; m_246406_ + 0 o p_252284_ + aI (Lcpn;)Ldzs$a; m_247375_ + 0 o p_248689_ + aI (Lkg;Lcpn;)Ldzs$a; m_247521_ + static + 0 o p_251465_ + 1 o p_248980_ + aJ (Lkg;Lcpn;)Ldzs$a; m_245374_ + static + 0 o p_251398_ + 1 o p_252348_ + aJ (Lcpn;)Ldzs$a; m_245067_ + 0 o p_249639_ + aK (Lkg;Lcpn;)Ldzs$a; m_246964_ + static + 0 o p_251095_ + 1 o p_249866_ + aK (Lcpn;)Ldzs$a; m_245440_ + 0 o p_251562_ + aL (Lcpn;)Ldzs$a; m_246111_ + 0 o p_249449_ + aL (Lkg;Lcpn;)Ldzs$a; m_246155_ + static + 0 o p_251138_ + 1 o p_250882_ + aM (Lkg;Lcpn;)Ldzs$a; m_246928_ + static + 0 o p_251599_ + 1 o p_251951_ + aM (Lcpn;)Ldzs$a; m_246935_ + 0 o p_251388_ + aN (Lkg;Lcpn;)Ldzs$a; m_246219_ + static + 0 o p_250733_ + 1 o p_251336_ + aN (Lcpn;)Ldzs$a; m_247159_ + 0 o p_250887_ + aO (Lkg;Lcpn;)Ldzs$a; m_246925_ + static + 0 o p_249722_ + 1 o p_252044_ + aO (Lcpn;)Ldzs$a; m_247278_ + 0 o p_249678_ + aP (Lcpn;)Ldzs$a; m_245983_ + 0 o p_249155_ + aP (Lkg;Lcpn;)Ldzs$a; m_245841_ + static + 0 o p_249409_ + 1 o p_249358_ + aQ (Lcpn;)Ldzs$a; m_247653_ + 0 o p_251149_ + aQ (Lkg;Lcpn;)Ldzs$a; m_245808_ + static + 0 o p_252222_ + 1 o p_248799_ + aR (Lkg;Lcpn;)Ldzs$a; m_247415_ + static + 0 o p_249774_ + 1 o p_251568_ + aR (Lcpn;)Ldzs$a; m_245823_ + 0 o p_251671_ + aS (Lkg;Lcpn;)Ldzs$a; m_247141_ + static + 0 o p_250612_ + 1 o p_249229_ + aS (Lcpn;)Ldzs$a; m_247433_ + 0 o p_251028_ + aT (Lkg;Lcpn;)Ldzs$a; m_246926_ + static + 0 o p_250989_ + 1 o p_249660_ + aT (Lcpn;)Ldzs$a; m_245972_ + 0 o p_250379_ + aU (Lkg;Lcpn;)Ldzs$a; m_246593_ + static + 0 o p_250398_ + 1 o p_249431_ + aU (Lcpn;)Ldzs$a; m_245224_ + 0 o p_252157_ + aV (Lcpn;)Ldzs$a; m_247287_ + 0 o p_251277_ + aV (Lkg;Lcpn;)Ldzs$a; m_245410_ + static + 0 o p_251694_ + 1 o p_251741_ + aW (Lcpn;)Ldzs$a; m_245518_ + 0 o p_248518_ + aW (Lkg;Lcpn;)Ldzs$a; m_245706_ + static + 0 o p_250690_ + 1 o p_250291_ + aX (Lkg;Lcpn;)Ldzs$a; m_247700_ + static + 0 o p_249287_ + 1 o p_251963_ + aX (Lcpn;)Ldzs$a; m_247004_ + 0 o p_249630_ + aY (Lkg;Lcpn;)Ldzs$a; m_247609_ + static + 0 o p_248551_ + 1 o p_249068_ + aY (Lcpn;)Ldzs$a; m_245557_ + 0 o p_249280_ + aZ (Lcpn;)Ldzs$a; m_245435_ + 0 o p_251175_ + aZ (Lkg;Lcpn;)Ldzs$a; m_247683_ + static + 0 o p_251899_ + 1 o p_250170_ + aa (Lcpn;)Ldzs$a; m_247614_ + 0 o p_250359_ + aa (Lkg;Lcpn;)Ldzs$a; m_247044_ + static + 0 o p_251420_ + 1 o p_250976_ + ab (Lcpn;)Ldzs$a; m_246482_ + 0 o p_248785_ + ab (Lkg;Lcpn;)Ldzs$a; m_246215_ + static + 0 o p_249476_ + 1 o p_251287_ + ac (Lkg;Lcpn;)Ldzs$a; m_246924_ + static + 0 o p_249150_ + 1 o p_248975_ + ac (Lcpn;)Ldzs$a; m_247429_ + 0 o p_249169_ + ad (Lcpn;)Ldzs$a; m_245434_ + 0 o p_249159_ + ad (Lkg;Lcpn;)Ldzs$a; m_245576_ + static + 0 o p_249423_ + 1 o p_252244_ + ae (Lcpn;)Ldzs$a; m_276711_ + 0 o p_277240_ + ae (Lkg;Lcpn;)Ldzs$a; m_247192_ + static + 0 o p_249544_ + 1 o p_250143_ + af (Lkg;Lcpn;)Ldzs$a; m_246065_ + static + 0 o p_250282_ + 1 o p_250337_ + af (Lcpn;)Ldzs$a; m_279871_ + 0 o p_280935_ + ag (Lkg;Lcpn;)Ldzs$a; m_245600_ + static + 0 o p_250494_ + 1 o p_250130_ + ag (Lcpn;)Ldzs$a; m_279872_ + 0 o p_280936_ + ah (Lcpn;)Ldzs$a; m_279874_ + 0 o p_280938_ + ah (Lkg;Lcpn;)Ldzs$a; m_245368_ + static + 0 o p_249497_ + 1 o p_251632_ + ai (Lkg;Lcpn;)Ldzs$a; m_246993_ + static + 0 o p_251245_ + 1 o p_248584_ + ai (Lcpn;)Ldzs$a; m_279869_ + 0 o p_280933_ + aj (Lkg;Lcpn;)Ldzs$a; m_247411_ + static + 0 o p_249005_ + 1 o p_251324_ + aj (Lcpn;)Ldzs$a; m_279875_ + 0 o p_280939_ + ak (Lkg;Lcpn;)Ldzs$a; m_245560_ + static + 0 o p_251454_ + 1 o p_249133_ + ak (Lcpn;)Ldzs$a; m_247132_ + 0 o p_249084_ + al (Lkg;Lcpn;)Ldzs$a; m_245869_ + static + 0 o p_248743_ + 1 o p_249078_ + al (Lcpn;)Ldzs$a; m_279873_ + 0 o p_280937_ + am (Lkg;Lcpn;)Ldzs$a; m_247222_ + static + 0 o p_249344_ + 1 o p_250051_ + am (Lcpn;)Ldzs$a; m_279876_ + 0 o p_280940_ + an (Lkg;Lcpn;)Ldzs$a; m_245174_ + static + 0 o p_249877_ + 1 o p_250078_ + an (Lcpn;)Ldzs$a; m_279870_ + 0 o p_280934_ + ao (Lkg;Lcpn;)Ldzs$a; m_245061_ + static + 0 o p_252079_ + 1 o p_250463_ + ao (Lcpn;)Ldzs$a; m_247226_ + static + 0 o p_250779_ + ap (Lkg;Lcpn;)Ldzs$a; m_246692_ + static + 0 o p_252251_ + 1 o p_249556_ + ap (Lcpn;)Ldzs$a; m_247036_ + static + 0 o p_250755_ + aq (Lkg;Lcpn;)Ldzs$a; m_245566_ + static + 0 o p_251107_ + 1 o p_250876_ + aq (Lcpn;)Ldzs$a; m_263148_ + 0 o p_250163_ + ar (Lcpn;)Ldzs$a; m_246403_ + static + 0 o p_249628_ + ar (Lkg;Lcpn;)Ldzs$a; m_246427_ + static + 0 o p_251805_ + 1 o p_250214_ + as (Lkg;Lcpn;)Ldzs$a; m_247405_ + static + 0 o p_252341_ + 1 o p_250477_ + as (Lcpn;)Ldzs$a; m_245749_ + static + 0 o p_250233_ + at (Lcpn;)Ldzs$a; m_247197_ + 0 o p_250064_ + at (Lkg;Lcpn;)Ldzs$a; m_276717_ + static + 0 o p_277249_ + 1 o p_277250_ + au (Lcpn;)Ldzs$a; m_246376_ + 0 o p_248918_ + au (Lkg;Lcpn;)Ldzs$a; m_276714_ + static + 0 o p_277244_ + 1 o p_277245_ + av (Lcpn;)Ldzs$a; m_245228_ + 0 o p_250228_ + av (Lkg;Lcpn;)Ldzs$a; m_271587_ + static + 0 o p_272375_ + 1 o p_272376_ + aw (Lcpn;)Ldzs$a; m_245467_ + 0 o p_250741_ + aw (Lkg;Lcpn;)Ldzs$a; m_271579_ + static + 0 o p_272360_ + 1 o p_272361_ + ax (Lcpn;)Ldzs$a; m_247134_ + 0 o p_248541_ + ax (Lkg;Lcpn;)Ldzs$a; m_271582_ + static + 0 o p_272366_ + 1 o p_272367_ + ay (Lcpn;)Ldzs$a; m_245504_ + 0 o p_250043_ + ay (Lkg;Lcpn;)Ldzs$a; m_271580_ + static + 0 o p_272362_ + 1 o p_272363_ + az (Lcpn;)Ldzs$a; m_246795_ + 0 o p_250918_ + az (Lkg;Lcpn;)Ldzs$a; m_271578_ + static + 0 o p_272358_ + 1 o p_272359_ + b (Lkg;Lcpn;)Ldzs$a; m_245904_ + static + 0 o p_250630_ + 1 o p_249321_ + b (Lcpn;Ljava/lang/Integer;)Leaf$a; m_246352_ + static + 0 o p_250960_ + 1 o p_252097_ + b ()V m_245660_ + bA (Lkg;Lcpn;)Ldzs$a; m_245500_ + static + 0 o p_248932_ + 1 o p_249255_ + bB (Lkg;Lcpn;)Ldzs$a; m_246302_ + static + 0 o p_248919_ + 1 o p_250363_ + bC (Lkg;Lcpn;)Ldzs$a; m_246266_ + static + 0 o p_249447_ + 1 o p_250611_ + bD (Lkg;Lcpn;)Ldzs$a; m_247153_ + static + 0 o p_251789_ + 1 o p_249873_ + bE (Lkg;Lcpn;)Ldzs$a; m_246036_ + static + 0 o p_251879_ + 1 o p_248946_ + bF (Lkg;Lcpn;)Ldzs$a; m_245128_ + static + 0 o p_251288_ + 1 o p_251725_ + bG (Lkg;Lcpn;)Ldzs$a; m_246516_ + static + 0 o p_249880_ + 1 o p_249953_ + bH (Lkg;Lcpn;)Ldzs$a; m_247142_ + static + 0 o p_250794_ + 1 o p_249325_ + bI (Lkg;Lcpn;)Ldzs$a; m_246800_ + static + 0 o p_251230_ + 1 o p_251237_ + bJ (Lkg;Lcpn;)Ldzs$a; m_247069_ + static + 0 o p_250523_ + 1 o p_251629_ + ba (Lkg;Lcpn;)Ldzs$a; m_247177_ + static + 0 o p_251400_ + 1 o p_249813_ + ba (Lcpn;)Ldzs$a; m_246433_ + 0 o p_248608_ + bb (Lkg;Lcpn;)Ldzs$a; m_247221_ + static + 0 o p_250445_ + 1 o p_249683_ + bb (Lcpn;)Ldzs$a; m_245928_ + 0 o p_250352_ + bc (Lkg;Lcpn;)Ldzs$a; m_245943_ + static + 0 o p_249803_ + 1 o p_252320_ + bc (Lcpn;)Ldzs$a; m_246764_ + 0 o p_250966_ + bd (Lcpn;)Ldzs$a; m_246303_ + 0 o p_249779_ + bd (Lkg;Lcpn;)Ldzs$a; m_245649_ + static + 0 o p_250768_ + 1 o p_248742_ + be (Lcpn;)Ldzs$a; m_245305_ + 0 o p_249052_ + be (Lkg;Lcpn;)Ldzs$a; m_246043_ + static + 0 o p_252091_ + 1 o p_252148_ + bf (Lkg;Lcpn;)Ldzs$a; m_247399_ + static + 0 o p_250153_ + 1 o p_251340_ + bf (Lcpn;)Ldzs$a; m_245682_ + 0 o p_251015_ + bg (Lkg;Lcpn;)Ldzs$a; m_246960_ + static + 0 o p_252141_ + 1 o p_251378_ + bg (Lcpn;)Ldzs$a; m_245962_ + 0 o p_252292_ + bh (Lkg;Lcpn;)Ldzs$a; m_247453_ + static + 0 o p_250284_ + 1 o p_249589_ + bi (Lkg;Lcpn;)Ldzs$a; m_246189_ + static + 0 o p_249569_ + 1 o p_249500_ + bj (Lkg;Lcpn;)Ldzs$a; m_246071_ + static + 0 o p_250532_ + 1 o p_249451_ + bk (Lkg;Lcpn;)Ldzs$a; m_246745_ + static + 0 o p_250386_ + 1 o p_248657_ + bl (Lkg;Lcpn;)Ldzs$a; m_245134_ + static + 0 o p_251492_ + 1 o p_252142_ + bm (Lkg;Lcpn;)Ldzs$a; m_247143_ + static + 0 o p_248901_ + 1 o p_248836_ + bn (Lkg;Lcpn;)Ldzs$a; m_247412_ + static + 0 o p_252029_ + 1 o p_250933_ + bo (Lkg;Lcpn;)Ldzs$a; m_245461_ + static + 0 o p_249123_ + 1 o p_251501_ + bp (Lkg;Lcpn;)Ldzs$a; m_246190_ + static + 0 o p_252114_ + 1 o p_250259_ + bq (Lkg;Lcpn;)Ldzs$a; m_245082_ + static + 0 o p_252236_ + 1 o p_249342_ + br (Lkg;Lcpn;)Ldzs$a; m_246620_ + static + 0 o p_249036_ + 1 o p_251720_ + bs (Lkg;Lcpn;)Ldzs$a; m_245191_ + static + 0 o p_249751_ + 1 o p_250829_ + bt (Lkg;Lcpn;)Ldzs$a; m_245519_ + static + 0 o p_248519_ + 1 o p_250985_ + bu (Lkg;Lcpn;)Ldzs$a; m_247527_ + static + 0 o p_251358_ + 1 o p_250698_ + bv (Lkg;Lcpn;)Ldzs$a; m_246243_ + static + 0 o p_249304_ + 1 o p_250571_ + bw (Lkg;Lcpn;)Ldzs$a; m_246649_ + static + 0 o p_251091_ + 1 o p_251560_ + bx (Lkg;Lcpn;)Ldzs$a; m_247032_ + static + 0 o p_249636_ + 1 o p_249031_ + by (Lkg;Lcpn;)Ldzs$a; m_245567_ + static + 0 o p_248929_ + 1 o p_250846_ + bz (Lkg;Lcpn;)Ldzs$a; m_247095_ + static + 0 o p_252233_ + 1 o p_249820_ + c (Lkg;Lcpn;)Ldzs$a; m_245628_ + static + 0 o p_250622_ + 1 o p_249038_ + c (Lcml;)Ldzs$a; m_247632_ + static + 0 o p_250387_ + c (Lcpn;Ljava/lang/Integer;)Leaz$a; m_245900_ + static + 0 o p_251371_ + 1 o p_251952_ + c ()Ldzs$a; m_277021_ + d (Lcml;)Ldzs$a; m_245370_ + static + 0 o p_252041_ + d (Lkg;Lcpn;)Ldzs$a; m_246095_ + static + 0 o p_251499_ + 1 o p_250650_ + e (Lkg;Lcpn;)Ldzs$a; m_245244_ + static + 0 o p_250823_ + 1 o p_250055_ + e (Lcml;)Ldzs$a; m_246076_ + static + 0 o p_249748_ + f (Lkg;Lcpn;)Ldzs$a; m_246738_ + static + 0 o p_249235_ + 1 o p_251637_ + f (Lcml;)Ldzs$a; m_245089_ + static + 0 o p_250181_ + g (Lkg;Lcpn;)Ldzs$a; m_245043_ + static + 0 o p_249984_ + 1 o p_250507_ + g (Lcml;)Ldzs$a; m_245176_ + static + 0 o p_251652_ + h (Lkg;Lcpn;)Ldzs$a; m_246408_ + static + 0 o p_251924_ + 1 o p_251228_ + i (Lkg;Lcpn;)Ldzs$a; m_246547_ + static + 0 o p_250586_ + 1 o p_249767_ + j (Lkg;Lcpn;)Ldzs$a; m_245877_ + static + 0 o p_248928_ + 1 o p_249072_ + k (Lkg;Lcpn;)Ldzs$a; m_245778_ + static + 0 o p_249316_ + 1 o p_250557_ + l (Lkg;Lcpn;)Ldzs$a; m_245977_ + static + 0 o p_248843_ + 1 o p_250920_ + m (Lkg;Lcpn;)Ldzs$a; m_247404_ + static + 0 o p_249771_ + 1 o p_249693_ + n (Lkg;Lcpn;)Ldzs$a; m_246894_ + static + 0 o p_248922_ + 1 o p_251753_ + o (Lkg;Lcpn;)Ldzs$a; m_247725_ + static + 0 o p_250570_ + 1 o p_249883_ + p (Lkg;Lcpn;)Ldzs$a; m_245880_ + static + 0 o p_251352_ + 1 o p_251547_ + q (Lkg;Lcpn;)Ldzs$a; m_246730_ + static + 0 o p_249443_ + 1 o p_250643_ + r (Lkg;Lcpn;)Ldzs$a; m_246021_ + static + 0 o p_249011_ + 1 o p_249288_ + s (Lkg;Lcpn;)Ldzs$a; m_245973_ + static + 0 o p_250803_ + 1 o p_251366_ + t (Lkg;Lcpn;)Ldzs$a; m_247584_ + static + 0 o p_249737_ + 1 o p_248899_ + u (Lcpn;)Ldzs$a; m_277139_ + 0 o p_277929_ + u (Lkg;Lcpn;)Ldzs$a; m_245930_ + static + 0 o p_250834_ + 1 o p_251436_ + v (Lcpn;)Ldzs$a; m_246100_ + 0 o p_252201_ + v (Lkg;Lcpn;)Ldzs$a; m_245981_ + static + 0 o p_251259_ + 1 o p_248917_ + w (Lcpn;)Ldzs$a; m_246821_ + 0 o p_248898_ + w (Lkg;Lcpn;)Ldzs$a; m_246023_ + static + 0 o p_248586_ + 1 o p_249234_ + x (Lkg;Lcpn;)Ldzs$a; m_246662_ + static + 0 o p_250187_ + 1 o p_249719_ + x (Lcpn;)Ldzs$a; m_247167_ + 0 o p_250428_ + y (Lcpn;)Ldzs$a; m_246187_ + 0 o p_248528_ + y (Lkg;Lcpn;)Ldzs$a; m_246757_ + static + 0 o p_248940_ + 1 o p_251605_ + z (Lkg;Lcpn;)Ldzs$a; m_247031_ + static + 0 o p_250944_ + 1 o p_249015_ + z (Lcpn;)Ldzs$a; m_246405_ + 0 o p_248523_ +kh net/minecraft/data/loot/packs/VanillaChestLoot + ()V + a ()Ldzs$a; m_266375_ + static + b ()Ldzs$a; m_266573_ + static + c ()Ldzs$a; m_266552_ + static + d ()Ldzs$a; m_266168_ + static + e ()Ldzs$a; m_266540_ + static + f ()Ldzs$a; m_266392_ + static + g ()Ldzs$a; m_266323_ + static + generate (Ljava/util/function/BiConsumer;)V m_245126_ + 0 o p_250931_ + h ()Ldzs$a; m_266336_ + static + i ()Ldzs$a; m_266481_ + static + j ()Ldzs$a; m_266435_ + static + k ()Ldzs$a; m_266364_ + static + l ()Ldzs$a; m_266580_ + static + m ()Ldzs$a; m_266297_ + static + n ()Ldzs$a; m_266424_ + static + o ()Ldzs$a; m_266444_ + static + p ()Ldzs$a; m_266422_ + static +ki net/minecraft/data/loot/packs/VanillaEntityLoot + ()V + a ()V m_246942_ + c ()Ldzs$a; m_266591_ + static +kj net/minecraft/data/loot/packs/VanillaFishingLoot + a f_244228_ + b f_244590_ + c f_243701_ + ()V + static + ()V + a ()Ldzs$a; m_266406_ + static + generate (Ljava/util/function/BiConsumer;)V m_245126_ + 0 o p_249559_ +kk net/minecraft/data/loot/packs/VanillaGiftLoot + ()V + generate (Ljava/util/function/BiConsumer;)V m_245126_ + 0 o p_250831_ +kl net/minecraft/data/loot/packs/VanillaLootTableProvider + ()V + a (Ljk;)Lkc; m_247452_ + static + 0 o p_250807_ +km net/minecraft/data/loot/packs/VanillaPiglinBarterLoot + ()V + generate (Ljava/util/function/BiConsumer;)V m_245126_ + 0 o p_250176_ +kn net/minecraft/data/loot/packs/package-info +ko net/minecraft/data/metadata/PackMetadataGenerator + d f_243851_ + e f_244307_ + (Ljk;)V + 0 o p_254070_ + a (Ljk;Lsw;)Lko; m_254904_ + static + 0 o p_256281_ + 1 o p_255661_ + a (Lcom/google/gson/JsonObject;Ljava/lang/String;Ljava/util/function/Supplier;)V m_245452_ + static + 0 o p_250509_ + 1 o p_249290_ + 2 o p_251317_ + a (Lajy;Ljava/lang/Object;)Lko; m_247300_ + 0 o p_252067_ + 1 o p_249511_ + a (Ljg;)Ljava/util/concurrent/CompletableFuture; m_213708_ + 0 o p_254137_ + a ()Ljava/lang/String; m_6055_ + a (Ljk;Lsw;Lcaw;)Lko; m_252835_ + static + 0 o p_253903_ + 1 o p_254497_ + 2 o p_253848_ + b (Lajy;Ljava/lang/Object;)Lcom/google/gson/JsonElement; m_247576_ + static + 0 o p_251977_ + 1 o p_248733_ +kp net/minecraft/data/metadata/package-info +kq net/minecraft/data/models/BlockModelGenerators + a f_176079_ + b f_124477_ + c f_124478_ + d f_124479_ + e f_176080_ + f f_176081_ + g f_176082_ + h f_176083_ + i f_260595_ + ()V + static + (Ljava/util/function/Consumer;Ljava/util/function/BiConsumer;Ljava/util/function/Consumer;)V + 0 o p_124481_ + 1 o p_124482_ + 2 o p_124483_ + A (Lcpn;)Ljava/util/List; m_124998_ + 0 o p_124999_ + A ()V m_176253_ + B (Lcpn;)Ljava/util/List; m_125001_ + 0 o p_125002_ + B ()V m_125006_ + C ()V m_125009_ + C (Lcpn;)V m_125004_ + 0 o p_125005_ + D ()V m_125012_ + D (Lcpn;)V m_125007_ + 0 o p_125008_ + E ()V m_124484_ + E (Lcpn;)V m_176085_ + 0 o p_176086_ + F (Lcpn;)V m_125010_ + 0 o p_125011_ + F ()V m_176087_ + G ()V m_176088_ + H ()V m_124485_ + I ()V m_176089_ + J ()V m_124486_ + K ()V m_124487_ + L ()V m_124488_ + M ()V m_236274_ + N ()V m_236275_ + O ()V m_124489_ + P ()V m_124490_ + Q ()V m_124491_ + R ()V m_176090_ + S ()V m_124493_ + T ()V m_124494_ + U ()V m_124495_ + V ()V m_124496_ + W ()V m_236276_ + X ()V m_124497_ + Y ()V m_124498_ + Z ()V m_124499_ + a (Lcpn;Ljava/lang/String;)V m_124575_ + 0 o p_124576_ + 1 o p_124577_ + a (Lhc;)Lkz; m_236300_ + 0 o p_236301_ + a (Llf;Ljava/lang/String;Llh;Lkq$d;)Lacq; m_260775_ + 0 o p_261412_ + 1 o p_261413_ + 2 o p_261414_ + 3 o p_261415_ + a (Lkv;Lku$c;Lla$a;Ldcs;Llf;)V m_260774_ + 0 o p_261407_ + 1 o p_261408_ + 2 o p_261409_ + 3 o p_261410_ + 4 o p_261411_ + a (Lcpn;Ljava/lang/String;Llf;Ljava/util/function/Function;)Lacq; m_124578_ + 0 o p_124579_ + 1 o p_124580_ + 2 o p_124581_ + 3 o p_124582_ + a (Lcpn;Lcfu;)V m_124530_ + 0 o p_124531_ + 1 o p_124532_ + a (Lkx$d;Ldcx;Lacq;Lacq;Lacq;Lacq;)Lkx$d; m_236304_ + static + 0 o p_236305_ + 1 o p_236306_ + 2 o p_236307_ + 3 o p_236308_ + 4 o p_236309_ + 5 o p_236310_ + a (Lcpn;Lacq;Llh;)V m_124603_ + 0 o p_124604_ + 1 o p_124605_ + 2 o p_124606_ + a (ILjava/lang/String;Llh;)Lacq; m_124513_ + 0 o p_124514_ + 1 o p_124515_ + 2 o p_124516_ + a (Lacq;Llh;)V m_176152_ + static + 0 o p_176153_ + 1 o p_176154_ + a (Lha;Ldcy;)Lkz; m_176116_ + 0 o p_176117_ + 1 o p_176118_ + a (Lcpn;Llh;Ljava/util/function/BiConsumer;)Lkt; m_257856_ + static + 0 o p_259670_ + 1 o p_259852_ + 2 o p_259181_ + a (Lcpn;Lacq;)V m_124797_ + 0 o p_124798_ + 1 o p_124799_ + a (Lcpn;Ljava/lang/Integer;)Lkz; m_276719_ + 0 o p_277252_ + 1 o p_277253_ + a (Lcpn;Llh;)V m_124564_ + 0 o p_124565_ + 1 o p_124566_ + a (Llj$a;[Lcpn;)V m_124685_ + 0 o p_124686_ + 1 o p_124687_ + a (Llh;Lacq;)Llh; m_176146_ + static + 0 o p_176147_ + 1 o p_176148_ + a (Lcpn;Lacq;Lkz;)V m_124599_ + 0 o p_124600_ + 1 o p_124601_ + 2 o p_124602_ + a (Lcpn;Lku$c;)V m_236293_ + static + 0 o p_236294_ + 1 o p_236295_ + a (Lcfu;)V m_124517_ + 0 o p_124518_ + a (Lcpn;Lcpn;)V m_124533_ + 0 o p_124534_ + 1 o p_124535_ + a (Lcpn;Ljava/lang/Integer;Ldcx;)Lkz; m_276720_ + static + 0 o p_277254_ + 1 o p_277255_ + 2 o p_277256_ + a (Ljava/util/function/Function;Ljava/lang/Integer;)Lkz; m_276722_ + static + 0 o p_277260_ + 1 o p_277261_ + a (Lddl;)Lkz; m_176114_ + 0 o p_176115_ + a (Lcpn;Lcpn;Ljava/util/function/BiFunction;)V m_124549_ + 0 o p_124550_ + 1 o p_124551_ + 2 o p_124552_ + a (Lcpn;Ljava/util/function/Function;)V m_124583_ + 0 o p_124584_ + 1 o p_124585_ + a (Ljava/util/List;Ljava/util/function/UnaryOperator;)Ljava/util/List; m_124682_ + static + 0 o p_124683_ + 1 o p_124684_ + a (Ljava/lang/Boolean;Ljava/lang/Boolean;)Lkz; m_176123_ + static + 0 o p_176124_ + 1 o p_176125_ + a (Lcpn;Lcpn;Lkq$e;)V m_124545_ + 0 o p_124546_ + 1 o p_124547_ + 2 o p_124548_ + a (Ldde;Ljava/lang/Comparable;Lacq;Lacq;)Lkx; m_124626_ + static + 0 o p_124627_ + 1 o p_124628_ + 2 o p_124629_ + 3 o p_124630_ + a (Lacq;)[Lkz; m_124688_ + static + 0 o p_124689_ + a (Lcpn;Lkq$e;Ldde;[I)V m_271994_ + 0 o p_273533_ + 1 o p_273521_ + 2 o p_273430_ + 3 o p_273001_ + a (Lcpn;Lacq;Lacq;Lacq;Lacq;Z)Lkt; m_124809_ + static + 0 o p_124810_ + 1 o p_124811_ + 2 o p_124812_ + 3 o p_124813_ + 4 o p_124814_ + 5 o p_251730_ + a (Lcpn;Lacq;Llh;Ljava/util/function/BiConsumer;)Lkt; m_176109_ + static + 0 o p_176110_ + 1 o p_176111_ + 2 o p_176112_ + 3 o p_176113_ + a (Ljava/lang/Comparable;Lkz;Lkz;Ljava/lang/Comparable;)Lkz; m_176126_ + static + 0 o p_176127_ + 1 o p_176128_ + 2 o p_176129_ + 3 o p_176130_ + a (Lcpn;Lcpn;Lcpn;)V m_246674_ + 0 o p_249023_ + 1 o p_250861_ + 2 o p_250943_ + a (Lkv;Lku$c;Lla$a;Ldcs;Llf;Z)V m_260948_ + 0 o p_261839_ + 1 o p_261634_ + 2 o p_262044_ + 3 o p_262163_ + 4 o p_261986_ + 5 o p_261790_ + a (Ljava/lang/Integer;Ljava/lang/Boolean;Ljava/lang/Boolean;)Lkz; m_176133_ + static + 0 o p_176134_ + 1 o p_176135_ + 2 o p_176136_ + a (Lacq;Lacq;Ljava/lang/Boolean;)Lkz; m_236277_ + static + 0 o p_236278_ + 1 o p_236279_ + 2 o p_236280_ + a (Lcpn;II)Lacq; m_176095_ + 0 o p_176096_ + 1 o p_176097_ + 2 o p_176098_ + a (I)Ljava/util/List; m_124511_ + 0 o p_124512_ + a (Lcpn;Llj$a;)V m_124586_ + 0 o p_124587_ + 1 o p_124588_ + a (Lcpn;Lacq;Lacq;Lacq;Lacq;Lacq;Lacq;Lacq;Lacq;)Lkt; m_236283_ + static + 0 o p_236284_ + 1 o p_236285_ + 2 o p_236286_ + 3 o p_236287_ + 4 o p_236288_ + 5 o p_236289_ + 6 o p_236290_ + 7 o p_236291_ + 8 o p_236292_ + a (Lcfu;Lacq;)V m_124519_ + 0 o p_124520_ + 1 o p_124521_ + a (Lcpn;Llh;Llf;)V m_124567_ + 0 o p_124568_ + 1 o p_124569_ + 2 o p_124570_ + a (Lcpn;Ldde;[I)V m_124553_ + 0 o p_124554_ + 1 o p_124555_ + 2 o p_124556_ + a ([Lacq;Ljava/lang/Integer;)Lkz; m_236311_ + static + 0 o p_236312_ + 1 o p_236313_ + a ()V m_124510_ + a (Lcpn;Lkq$e;Llh;)V m_124560_ + 0 o p_124561_ + 1 o p_124562_ + 2 o p_124563_ + a (Lacq;Lacq;Lacq;Lacq;Lacq;Lacq;Ljava/lang/Boolean;Lddf;)Lkz; m_176159_ + static + 0 o p_176160_ + 1 o p_176161_ + 2 o p_176162_ + 3 o p_176163_ + 4 o p_176164_ + 5 o p_176165_ + 6 o p_176166_ + 7 o p_176167_ + a ([ILcpn;Lkq$e;Ljava/lang/Integer;)Lkz; m_271589_ + 0 o p_272378_ + 1 o p_272379_ + 2 o p_272380_ + 3 o p_272381_ + a (Ljava/lang/String;I)Lkz; m_176137_ + static + 0 o p_176138_ + 1 o p_176139_ + a (Lcpn;Llh;Ljava/lang/Integer;)Lkz; m_176105_ + 0 o p_176106_ + 1 o p_176107_ + 2 o p_176108_ + a (Lcpn;Lkq$e;)V m_124557_ + 0 o p_124558_ + 1 o p_124559_ + a (Lcpn;Lacq;Lacq;)Lkw; m_124862_ + static + 0 o p_124863_ + 1 o p_124864_ + 2 o p_124865_ + a (Lcpn;Lacq;Lacq;Lacq;Lacq;Lacq;)Lkt; m_247086_ + static + 0 o p_248625_ + 1 o p_248654_ + 2 o p_249827_ + 3 o p_248819_ + 4 o p_251062_ + 5 o p_249076_ + a ([ILit/unimi/dsi/fastutil/ints/Int2ObjectMap;Lcpn;Ljava/lang/Integer;)Lkz; m_176168_ + 0 o p_176169_ + 1 o p_176170_ + 2 o p_176171_ + 3 o p_176172_ + a (Lhc;Lkz;)Lkz; m_124635_ + 0 o p_124636_ + 1 o p_124637_ + a (Llh;)V m_176144_ + static + 0 o p_176145_ + a (Lkv;Lacq;Lha;Lla$a;)V m_262348_ + 0 o p_262539_ + 1 o p_262540_ + 2 o p_262541_ + 3 o p_262542_ + a ([Lcpn;)V m_124713_ + 0 o p_124714_ + a (Ljava/lang/Integer;Ljava/lang/Integer;)Lacq; m_124676_ + 0 o p_124677_ + 1 o p_124678_ + a (Lcpn;)V m_124851_ + 0 o p_124852_ + a (Lcpn;Lku$c;Ldcs;)V m_236296_ + static + 0 o p_236297_ + 1 o p_236298_ + 2 o p_236299_ + a (Lcpn;Lcpn;Lcpn;Lcpn;Lcpn;Lcpn;Lcpn;Lcpn;)V m_124536_ + 0 o p_124537_ + 1 o p_124538_ + 2 o p_124539_ + 3 o p_124540_ + 4 o p_124541_ + 5 o p_124542_ + 6 o p_124543_ + 7 o p_124544_ + a (Lcpn;Lacq;Lacq;Lacq;)Lkt; m_124838_ + static + 0 o p_124839_ + 1 o p_124840_ + 2 o p_124841_ + 3 o p_124842_ + a (Lacq;Ljava/lang/Integer;)Lkz; m_176149_ + static + 0 o p_176150_ + 1 o p_176151_ + a (Lacq;Lacq;Lddi;)Lkz; m_283985_ + static + 0 o p_284645_ + 1 o p_284646_ + 2 o p_284647_ + a (Ljava/lang/Integer;)Lacq; m_278137_ + 0 o p_278206_ + a (Ldcs;Lacq;Lacq;)Lkx; m_124622_ + static + 0 o p_124623_ + 1 o p_124624_ + 2 o p_124625_ + a (Lkv;Lku$c;Lla$a;)V m_261107_ + 0 o p_261951_ + 1 o p_261482_ + 2 o p_262169_ + a (Lche;)V m_236281_ + 0 o p_236282_ + a (Lacq;Lcpn;)Lkq$a; m_124690_ + 0 o p_124691_ + 1 o p_124692_ + a (Ljf;)V m_236302_ + 0 o p_236303_ + a (Lcpn;Llj$a;Llj$a;)V m_124589_ + 0 o p_124590_ + 1 o p_124591_ + 2 o p_124592_ + a (Lkz;)Lkz; m_176142_ + static + 0 o p_176143_ + aA ()V m_176177_ + aB ()V m_194715_ + aa ()V m_124500_ + ab ()V m_124501_ + ac ()V m_176091_ + ad ()V m_276871_ + ae ()V m_236314_ + af ()V m_124502_ + ag ()V m_176092_ + ah ()V m_124503_ + ai ()V m_124504_ + aj ()V m_124505_ + ak ()V m_124506_ + al ()V m_124507_ + am ()V m_124508_ + an ()V m_124509_ + ao ()V m_124718_ + ap ()V m_124719_ + aq ()V m_124720_ + ar ()V m_124721_ + as ()V m_277113_ + at ()V m_236315_ + au ()V m_247160_ + av ()V m_124723_ + aw ()V m_124724_ + ax ()V m_176176_ + ay ()V m_124725_ + az ()V m_124726_ + b (Ljava/lang/Integer;Ljava/lang/Integer;)Ljava/util/List; m_176184_ + 0 o p_176185_ + 1 o p_176186_ + b (Lcpn;Lacq;Llh;Ljava/util/function/BiConsumer;)Lkt; m_236316_ + static + 0 o p_236317_ + 1 o p_236318_ + 2 o p_236319_ + 3 o p_236320_ + b (Lacq;Lacq;Lddi;)Lkz; m_283986_ + static + 0 o p_284648_ + 1 o p_284649_ + 2 o p_284650_ + b (Lacq;Llh;)V m_176196_ + static + 0 o p_176197_ + 1 o p_176198_ + b (Lacq;)Lkz; m_176194_ + static + 0 o p_176195_ + b (Lcpn;Llj$a;)V m_124794_ + 0 o p_124795_ + 1 o p_124796_ + b (Lcpn;Lacq;)Lkw; m_124831_ + static + 0 o p_124832_ + 1 o p_124833_ + b (Lcpn;Lcpn;)V m_124730_ + 0 o p_124731_ + 1 o p_124732_ + b ()Lkx; m_124727_ + static + b (Ljava/lang/Integer;)Lkz; m_176131_ + 0 o p_176132_ + b (Lcpn;Lcpn;Lkq$e;)V m_124733_ + 0 o p_124734_ + 1 o p_124735_ + 2 o p_124736_ + b (Llj$a;[Lcpn;)V m_124777_ + 0 o p_124778_ + 1 o p_124779_ + b (Lcpn;Lacq;Lacq;)Lkt; m_124884_ + static + 0 o p_124885_ + 1 o p_124886_ + 2 o p_124887_ + b (Lcpn;)V m_280054_ + 0 o p_282830_ + b (Lcpn;Lkq$e;)V m_124737_ + 0 o p_124738_ + 1 o p_124739_ + b (Lcpn;Lkq$e;Llh;)V m_124740_ + 0 o p_124741_ + 1 o p_124742_ + 2 o p_124743_ + b (Lkz;)Lkz; m_176187_ + static + 0 o p_176188_ + b (Llh;)V m_176189_ + static + 0 o p_176190_ + b (Lcpn;Lacq;Lacq;Lacq;)Lkt; m_124866_ + static + 0 o p_124867_ + 1 o p_124868_ + 2 o p_124869_ + 3 o p_124870_ + b (Llh;Lacq;)Llh; m_176191_ + static + 0 o p_176192_ + 1 o p_176193_ + c (Lcpn;)V m_124524_ + 0 o p_124525_ + c (Lacq;)Lkz; m_176203_ + static + 0 o p_176204_ + c (Lcpn;Lacq;Llh;Ljava/util/function/BiConsumer;)Lkt; m_176179_ + static + 0 o p_176180_ + 1 o p_176181_ + 2 o p_176182_ + 3 o p_176183_ + c (Lacq;Llh;)V m_176205_ + static + 0 o p_176206_ + 1 o p_176207_ + c (Llh;)V m_176201_ + static + 0 o p_176202_ + c (Lcpn;Llj$a;)V m_124744_ + 0 o p_124745_ + 1 o p_124746_ + c ()Lkx; m_124785_ + static + c (Lkz;)Lkz; m_176199_ + static + 0 o p_176200_ + c (Lcpn;Lcpn;)V m_124788_ + 0 o p_124789_ + 1 o p_124790_ + c (Lcpn;Lacq;)Lkw; m_124859_ + static + 0 o p_124860_ + 1 o p_124861_ + c (Lcpn;Lkq$e;)V m_124791_ + 0 o p_124792_ + 1 o p_124793_ + c (Lcpn;Lacq;Lacq;Lacq;)Lkt; m_124888_ + static + 0 o p_124889_ + 1 o p_124890_ + 2 o p_124891_ + 3 o p_124892_ + c (Lcpn;Lacq;Lacq;)Lkt; m_124904_ + static + 0 o p_124905_ + 1 o p_124906_ + 2 o p_124907_ + d ()Lkx; m_124822_ + static + d (Lcpn;Lacq;Lacq;Lacq;)Lkt; m_124908_ + static + 0 o p_124909_ + 1 o p_124910_ + 2 o p_124911_ + 3 o p_124912_ + d (Lcpn;Lacq;)Lkt; m_124881_ + static + 0 o p_124882_ + 1 o p_124883_ + d (Lacq;Llh;)V m_176214_ + static + 0 o p_176215_ + 1 o p_176216_ + d (Lcpn;Lacq;Lacq;)Lkt; m_124924_ + static + 0 o p_124925_ + 1 o p_124926_ + 2 o p_124927_ + d (Lkz;)Lkz; m_176208_ + static + 0 o p_176209_ + d (Lcpn;Llj$a;)V m_124856_ + 0 o p_124857_ + 1 o p_124858_ + d (Lacq;)Lkz; m_176212_ + static + 0 o p_176213_ + d (Llh;)V m_176210_ + static + 0 o p_176211_ + d (Lcpn;)V m_124728_ + 0 o p_124729_ + d (Lcpn;Lcpn;)Lkq$a; m_124825_ + 0 o p_124826_ + 1 o p_124827_ + e (Llh;)V m_176222_ + static + 0 o p_176223_ + e ()Lkx; m_124850_ + static + e (Lcpn;)V m_124786_ + 0 o p_124787_ + e (Lcpn;Lcpn;)V m_176217_ + 0 o p_176218_ + 1 o p_176219_ + e (Lacq;)Lkz; m_176224_ + static + 0 o p_176225_ + e (Lkz;)Lkz; m_176220_ + static + 0 o p_176221_ + e (Lcpn;Lacq;)V m_124901_ + 0 o p_124902_ + 1 o p_124903_ + e (Lcpn;Lacq;Lacq;)Lkt; m_124941_ + static + 0 o p_124942_ + 1 o p_124943_ + 2 o p_124944_ + e (Lcpn;Lacq;Lacq;Lacq;)Lkt; m_124928_ + static + 0 o p_124929_ + 1 o p_124930_ + 2 o p_124931_ + 3 o p_124932_ + f (Lcpn;)V m_124823_ + 0 o p_124824_ + f (Lcpn;Lacq;Lacq;)V m_124953_ + 0 o p_124954_ + 1 o p_124955_ + 2 o p_124956_ + f (Lcpn;Lcpn;)V m_124878_ + 0 o p_124879_ + 1 o p_124880_ + f (Lacq;)Lkz; m_176228_ + static + 0 o p_176229_ + f (Lcpn;Lacq;)V m_124921_ + 0 o p_124922_ + 1 o p_124923_ + f ()Lkx; m_124875_ + static + f (Lkz;)Lkz; m_176226_ + static + 0 o p_176227_ + g (Lcpn;)V m_276953_ + 0 o p_277651_ + g ()V m_176230_ + g (Lkz;)Lkz; m_176231_ + static + 0 o p_176232_ + g (Lacq;)Lkz; m_176233_ + static + 0 o p_176234_ + g (Lcpn;Lcpn;)V m_124918_ + 0 o p_124919_ + 1 o p_124920_ + h (Lacq;)Lkz; m_176237_ + static + 0 o p_176238_ + h (Lcpn;Lcpn;)V m_124938_ + 0 o p_124939_ + 1 o p_124940_ + h ()V m_277101_ + h (Lkz;)Lkz; m_176235_ + static + 0 o p_176236_ + h (Lcpn;)Lkq$b; m_124876_ + 0 o p_124877_ + i (Lkz;)Lkz; m_176239_ + static + 0 o p_176240_ + i ()V m_277126_ + i (Lcpn;Lcpn;)V m_124950_ + 0 o p_124951_ + 1 o p_124952_ + i (Lcpn;)V m_124896_ + 0 o p_124897_ + j (Lkz;)Lkz; m_176242_ + static + 0 o p_176243_ + j (Lcpn;Lcpn;)V m_124962_ + 0 o p_124963_ + 1 o p_124964_ + j ()V m_124895_ + j (Lcpn;)V m_124916_ + 0 o p_124917_ + k (Lkz;)Lkz; m_124893_ + static + 0 o p_124894_ + k (Lcpn;)V m_124936_ + 0 o p_124937_ + k ()V m_124915_ + k (Lcpn;Lcpn;)V m_124970_ + 0 o p_124971_ + 1 o p_124972_ + l (Lcpn;)Lkq$f; m_124948_ + 0 o p_124949_ + l (Lcpn;Lcpn;)V m_176244_ + 0 o p_176245_ + 1 o p_176246_ + l ()V m_176241_ + m (Lcpn;)V m_124960_ + 0 o p_124961_ + m ()V m_124935_ + n (Lcpn;)V m_124968_ + 0 o p_124969_ + n ()Lkx; m_124947_ + o ()V m_124959_ + o (Lcpn;)V m_124974_ + 0 o p_124975_ + p (Lcpn;)V m_272099_ + 0 o p_273441_ + p ()V m_124967_ + q (Lcpn;)V m_124977_ + 0 o p_124978_ + q ()V m_124973_ + r (Lcpn;)V m_124980_ + 0 o p_124981_ + r ()V m_124976_ + s ()V m_124979_ + s (Lcpn;)V m_176247_ + 0 o p_176248_ + t ()V m_124982_ + t (Lcpn;)V m_176249_ + 0 o p_176250_ + u ()V m_124985_ + u (Lcpn;)V m_124983_ + 0 o p_124984_ + v (Lcpn;)V m_124986_ + 0 o p_124987_ + v ()V m_124988_ + w (Lcpn;)V m_176251_ + 0 o p_176252_ + w ()V m_124991_ + x (Lcpn;)V m_124989_ + 0 o p_124990_ + x ()V m_124994_ + y (Lcpn;)V m_124992_ + 0 o p_124993_ + y ()V m_124997_ + z (Lcpn;)Ljava/util/List; m_124995_ + 0 o p_124996_ + z ()V m_125000_ +kq$1 net/minecraft/data/models/BlockModelGenerators$1 + a f_125013_ + b f_125014_ + c f_276602_ + ()V + static +kq$a net/minecraft/data/models/BlockModelGenerators$BlockEntityModelGenerator + a f_125016_ + b f_125017_ + (Lkq;Lacq;Lcpn;)V + 0 o p_125019_ + 1 o p_125020_ + 2 o p_125021_ + a ([Lcpn;)Lkq$a; m_125025_ + 0 o p_125026_ + a (Llf;[Lcpn;)Lkq$a; m_125022_ + 0 o p_125023_ + 1 o p_125024_ + b ([Lcpn;)Lkq$a; m_125027_ + 0 o p_125028_ +kq$b net/minecraft/data/models/BlockModelGenerators$BlockFamilyProvider + a f_125029_ + b f_125030_ + c f_176254_ + d f_176255_ + e f_125031_ + (Lkq;Llh;)V + 0 o p_125033_ + 1 o p_125034_ + a ([Lcpn;)Lkq$b; m_176264_ + 0 o p_176265_ + a (Ljf$b;Lcpn;)V m_176256_ + 0 o p_176257_ + 1 o p_176258_ + a (Lcpn;Llf;)Lkq$b; m_125040_ + 0 o p_125041_ + 1 o p_125042_ + a (Lcpn;)Lkq$b; m_125035_ + 0 o p_125036_ + a (Llf;Lcpn;)Lacq; m_176261_ + 0 o p_176262_ + 1 o p_176263_ + a (Ljf;)Lkq$b; m_176259_ + 0 o p_176260_ + b (Lcpn;)Lkq$b; m_125045_ + 0 o p_125046_ + b (Lcpn;Llf;)Lacq; m_176266_ + 0 o p_176267_ + 1 o p_176268_ + c (Lcpn;)Lkq$b; m_246414_ + 0 o p_250333_ + d (Lcpn;)Lkq$b; m_125047_ + 0 o p_125048_ + e (Lcpn;)Lkq$b; m_245757_ + 0 o p_248640_ + f (Lcpn;)Lkq$b; m_125049_ + 0 o p_125050_ + g (Lcpn;)Lkq$b; m_125051_ + 0 o p_125052_ + h (Lcpn;)Lkq$b; m_176269_ + 0 o p_176270_ + i (Lcpn;)Lkq$b; m_125053_ + 0 o p_125054_ + j (Lcpn;)Lkq$b; m_125055_ + 0 o p_125056_ + k (Lcpn;)Lkq$b; m_176271_ + 0 o p_176272_ + l (Lcpn;)Lkq$b; m_176273_ + 0 o p_176274_ + m (Lcpn;)V m_176275_ + 0 o p_176276_ +kq$c net/minecraft/data/models/BlockModelGenerators$BlockStateGeneratorSupplier + create (Lcpn;Lacq;Llh;Ljava/util/function/BiConsumer;)Lkt; m_176277_ + 0 o p_176278_ + 1 o p_176279_ + 2 o p_176280_ + 3 o p_176281_ +kq$d net/minecraft/data/models/BlockModelGenerators$BookSlotModelCacheKey + a f_260721_ + b f_260626_ + (Llf;Ljava/lang/String;)V + 0 o f_260721_ + 1 o f_260626_ + a ()Llf; f_260721_ + b ()Ljava/lang/String; f_260626_ + equals (Ljava/lang/Object;)Z equals + 0 o p_261822_ + hashCode ()I hashCode + toString ()Ljava/lang/String; toString +kq$e net/minecraft/data/models/BlockModelGenerators$TintState + a TINTED + b NOT_TINTED + c $VALUES + ()V + static + (Ljava/lang/String;I)V + 0 o p_125062_ + 1 o p_125063_ + a ()Llf; m_125064_ + b ()Llf; m_125065_ + c ()[Lkq$e; m_176282_ + static + valueOf (Ljava/lang/String;)Lkq$e; valueOf + static + 0 o p_125067_ + values ()[Lkq$e; values + static +kq$f net/minecraft/data/models/BlockModelGenerators$WoodProvider + a f_125069_ + b f_125070_ + (Lkq;Llh;)V + 0 o p_125072_ + 1 o p_125073_ + a (Lcpn;)Lkq$f; m_125074_ + 0 o p_125075_ + b (Lcpn;)Lkq$f; m_125076_ + 0 o p_125077_ + c (Lcpn;)Lkq$f; m_125078_ + 0 o p_125079_ + d (Lcpn;)Lkq$f; m_258006_ + 0 o p_259915_ +kr net/minecraft/data/models/ItemModelGenerators + a f_265922_ + b f_265952_ + c f_125080_ + ()V + static + (Ljava/util/function/BiConsumer;)V + 0 o p_125082_ + a (Lacq;Ljava/util/Map;Lcdk;)Lcom/google/gson/JsonObject; m_266576_ + 0 o p_266939_ + 1 o p_267324_ + 2 o p_267970_ + a (Lcfu;)V m_236321_ + 0 o p_236322_ + a (Lacq;Lacq;Lacq;Lacq;)V m_267826_ + 0 o p_268353_ + 1 o p_268162_ + 2 o p_268173_ + 3 o p_268312_ + a (Lcfu;Lcfu;Llf;)V m_125084_ + 0 o p_125085_ + 1 o p_125086_ + 2 o p_125087_ + a (Lcfu;Llf;)V m_125088_ + 0 o p_125089_ + 1 o p_125090_ + a (Lacq;Lacq;Lacq;)V m_266494_ + 0 o p_267272_ + 1 o p_266738_ + 2 o p_267328_ + a (Lcdj;Lacq;Ljava/util/Map;)Lcom/google/gson/JsonObject; m_267545_ + 0 o p_267904_ + 1 o p_267905_ + 2 o p_267906_ + a (Lcfu;Ljava/lang/String;Llf;)V m_125091_ + 0 o p_125092_ + 1 o p_125093_ + 2 o p_125094_ + a ()V m_125083_ + a (Lcdj;)V m_266208_ + 0 o p_267151_ + a (Lacq;Ljava/lang/String;)Lacq; m_266316_ + 0 o p_266817_ + 1 o p_267030_ + b (Lcfu;)V m_236323_ + 0 o p_236324_ + b (Lcdj;Lacq;Ljava/util/Map;)Lcom/google/gson/JsonObject; m_267544_ + 0 o p_267901_ + 1 o p_267902_ + 2 o p_267903_ +kr$a net/minecraft/data/models/ItemModelGenerators$TrimModelData + a f_265890_ + b f_265849_ + c f_267444_ + (Ljava/lang/String;FLjava/util/Map;)V + 0 o f_265890_ + 1 o f_265849_ + 2 o f_267444_ + a ()Ljava/lang/String; f_265890_ + a (Lcdk;)Ljava/lang/String; m_267684_ + 0 o p_268105_ + b ()F f_265849_ + c ()Ljava/util/Map; f_267444_ + equals (Ljava/lang/Object;)Z equals + 0 o p_267211_ + hashCode ()I hashCode + toString ()Ljava/lang/String; toString +ks net/minecraft/data/models/ModelProvider + d f_236325_ + e f_236326_ + (Ljk;)V + 0 o p_252226_ + a (Lcpn;)Ljava/nio/file/Path; m_244772_ + 0 o p_248016_ + a (Ljava/util/Map;Lkt;)V m_125118_ + static + 0 o p_125119_ + 1 o p_125120_ + a (Ljg;)Ljava/util/concurrent/CompletableFuture; m_213708_ + 0 o p_253790_ + a (Ljg;Ljava/util/Map;Ljava/util/function/Function;)Ljava/util/concurrent/CompletableFuture; m_252989_ + 0 o p_254549_ + 1 o p_253779_ + 2 o p_254013_ + a ()Ljava/lang/String; m_6055_ + a (Ljava/util/function/Function;Ljg;Ljava/util/Map$Entry;)Ljava/util/concurrent/CompletableFuture; m_252623_ + static + 0 o p_253406_ + 1 o p_253407_ + 2 o p_253408_ + a (I)[Ljava/util/concurrent/CompletableFuture; m_252624_ + static + 0 o p_253409_ + a (Ljava/util/Map;Lacq;Ljava/util/function/Supplier;)V m_125121_ + static + 0 o p_125122_ + 1 o p_125123_ + 2 o p_125124_ + a (Ljava/util/Set;Ljava/util/Map;Lcpn;)V m_125125_ + static + 0 o p_125126_ + 1 o p_125127_ + 2 o p_125128_ + a (Ljava/util/Map;Lcpn;)Z m_125115_ + static + 0 o p_125116_ + 1 o p_125117_ +kt net/minecraft/data/models/blockstates/BlockStateGenerator + a ()Lcpn; m_6968_ +ku net/minecraft/data/models/blockstates/Condition + a (Ldcc;)V m_7619_ + 0 o p_125136_ + a ([Lku;)Lku; m_176293_ + static + 0 o p_176294_ + a ()Lku$c; m_125135_ + static + b ([Lku;)Lku; m_125137_ + static + 0 o p_125138_ +ku$a net/minecraft/data/models/blockstates/Condition$CompositeCondition + a f_125139_ + b f_125140_ + (Lku$b;Ljava/util/List;)V + 0 o p_125142_ + 1 o p_125143_ + a (Ldcc;)V m_7619_ + 0 o p_125149_ + a (Ldcc;Lku;)V m_125150_ + static + 0 o p_125151_ + 1 o p_125152_ + b ()Lcom/google/gson/JsonElement; get + get ()Ljava/lang/Object; get +ku$b net/minecraft/data/models/blockstates/Condition$Operation + a AND + b OR + c f_125157_ + d $VALUES + ()V + static + (Ljava/lang/String;ILjava/lang/String;)V + 0 o p_125161_ + 1 o p_125162_ + 2 o p_125163_ + a ()[Lku$b; m_176295_ + static + valueOf (Ljava/lang/String;)Lku$b; valueOf + static + 0 o p_125167_ + values ()[Lku$b; values + static +ku$c net/minecraft/data/models/blockstates/Condition$TerminalCondition + a f_125169_ + ()V + a (Ldde;Ljava/util/stream/Stream;)Ljava/lang/String; m_125186_ + static + 0 o p_125187_ + 1 o p_125188_ + a (Ldcc;Ldde;)Z m_125173_ + static + 0 o p_125174_ + 1 o p_125175_ + a (Ldcc;)V m_7619_ + 0 o p_125172_ + a (Lcom/google/gson/JsonObject;Ldde;Ljava/lang/String;)V m_125189_ + static + 0 o p_125190_ + 1 o p_125191_ + 2 o p_125192_ + a (Ldde;Ljava/lang/Comparable;)Lku$c; m_125176_ + 0 o p_125177_ + 1 o p_125178_ + a (Ldde;Ljava/lang/String;)V m_125183_ + 0 o p_125184_ + 1 o p_125185_ + a (Ldde;Ljava/lang/Comparable;[Ljava/lang/Comparable;)Lku$c; m_125179_ + 0 o p_125180_ + 1 o p_125181_ + 2 o p_125182_ + b (Ldde;Ljava/lang/Comparable;[Ljava/lang/Comparable;)Lku$c; m_176299_ + 0 o p_176300_ + 1 o p_176301_ + 2 o p_176302_ + b ()Lcom/google/gson/JsonElement; get + b (Ldde;Ljava/lang/Comparable;)Lku$c; m_176296_ + 0 o p_176297_ + 1 o p_176298_ + c (Ldde;Ljava/lang/Comparable;[Ljava/lang/Comparable;)Ljava/lang/String; m_125194_ + static + 0 o p_125195_ + 1 o p_125196_ + 2 o p_125197_ + get ()Ljava/lang/Object; get +kv net/minecraft/data/models/blockstates/MultiPartGenerator + a f_125199_ + b f_125200_ + (Lcpn;)V + 0 o p_125202_ + a (Lku;Ljava/util/List;)Lkv; m_125212_ + 0 o p_125213_ + 1 o p_125214_ + a (Ldcc;Lkv$b;)V m_125206_ + static + 0 o p_125207_ + 1 o p_125208_ + a (Lkz;)Lkv; m_125218_ + 0 o p_125219_ + a ()Lcpn; m_6968_ + a (Lcpn;)Lkv; m_125204_ + static + 0 o p_125205_ + a (Ljava/util/List;)Lkv; m_125220_ + 0 o p_125221_ + a (Lku;[Lkz;)Lkv; m_125215_ + 0 o p_125216_ + 1 o p_125217_ + a (Lku;Lkz;)Lkv; m_125209_ + 0 o p_125210_ + 1 o p_125211_ + b ()Lcom/google/gson/JsonElement; get + get ()Ljava/lang/Object; get +kv$a net/minecraft/data/models/blockstates/MultiPartGenerator$ConditionalEntry + a f_125224_ + (Lku;Ljava/util/List;)V + 0 o p_125226_ + 1 o p_125227_ + a (Ldcc;)V m_5848_ + 0 o p_125233_ + a (Lcom/google/gson/JsonObject;)V m_8000_ + 0 o p_125235_ +kv$b net/minecraft/data/models/blockstates/MultiPartGenerator$Entry + a f_125236_ + (Ljava/util/List;)V + 0 o p_125238_ + a (Ldcc;)V m_5848_ + 0 o p_125243_ + a ()Lcom/google/gson/JsonElement; get + a (Lcom/google/gson/JsonObject;)V m_8000_ + 0 o p_125244_ + get ()Ljava/lang/Object; get +kw net/minecraft/data/models/blockstates/MultiVariantGenerator + a f_125246_ + b f_125247_ + c f_125248_ + d f_125249_ + (Lcpn;Ljava/util/List;)V + 0 o p_125251_ + 1 o p_125252_ + a (Ldde;)V m_125262_ + 0 o p_125263_ + a (Lkx;)Lkw; m_125271_ + 0 o p_125272_ + a (Ljava/util/List;Ljava/util/List;)Ljava/util/List; m_125277_ + static + 0 o p_125278_ + 1 o p_125279_ + a (Ljava/util/List;Lcom/google/common/collect/ImmutableList$Builder;Lkz;)V m_125273_ + static + 0 o p_125274_ + 1 o p_125275_ + 2 o p_125276_ + a (Lcpn;[Lkz;)Lkw; m_125259_ + static + 0 o p_125260_ + 1 o p_125261_ + a (Lcpn;)Lkw; m_125254_ + static + 0 o p_125255_ + a (Ljava/util/Map;Lcom/mojang/datafixers/util/Pair;)V m_125283_ + static + 0 o p_125284_ + 1 o p_125285_ + a ()Lcpn; m_6968_ + a (Lcpn;Lkz;)Lkw; m_125256_ + static + 0 o p_125257_ + 1 o p_125258_ + a (Ljava/util/Map;Lcom/google/gson/JsonObject;)V m_125280_ + static + 0 o p_125281_ + 1 o p_125282_ + a (Lcom/mojang/datafixers/util/Pair;Ljava/util/Map$Entry;)Lcom/mojang/datafixers/util/Pair; m_176307_ + static + 0 o p_176308_ + 1 o p_176309_ + a (Lcom/google/common/collect/ImmutableList$Builder;Lkz;Lkz;)V m_176303_ + static + 0 o p_176304_ + 1 o p_176305_ + 2 o p_176306_ + b (Ljava/util/Map;Lcom/mojang/datafixers/util/Pair;)Ljava/util/stream/Stream; m_125287_ + static + 0 o p_125288_ + 1 o p_125289_ + b ()Lcom/google/gson/JsonElement; get + get ()Ljava/lang/Object; get +kx net/minecraft/data/models/blockstates/PropertyDispatch + a f_125291_ + ()V + a (Ldde;Ldde;Ldde;Ldde;)Lkx$d; m_125303_ + static + 0 o p_125304_ + 1 o p_125305_ + 2 o p_125306_ + 3 o p_125307_ + a (Ldde;Lky;)Ljava/util/stream/Stream; m_125314_ + static + 0 o p_125315_ + 1 o p_125316_ + a (Ldde;Ldde;Ldde;Ldde;Ldde;)Lkx$e; m_125308_ + static + 0 o p_125309_ + 1 o p_125310_ + 2 o p_125311_ + 3 o p_125312_ + 4 o p_125313_ + a (Ldde;)Lkx$a; m_125294_ + static + 0 o p_125295_ + a (Ldde;Ldde;)Lkx$b; m_125296_ + static + 0 o p_125297_ + 1 o p_125298_ + a ()Ljava/util/Map; m_125293_ + a (Ldde;Ldde;Ldde;)Lkx$c; m_125299_ + static + 0 o p_125300_ + 1 o p_125301_ + 2 o p_125302_ + a (Lky;Ljava/util/List;)V m_125319_ + 0 o p_125320_ + 1 o p_125321_ + a (Lky;)Z m_125317_ + 0 o p_125318_ + b ()Ljava/util/List; m_7336_ + c ()V m_125322_ +kx$a net/minecraft/data/models/blockstates/PropertyDispatch$C1 + a f_125323_ + (Ldde;)V + 0 o p_125325_ + a (Ljava/lang/Comparable;Lkz;)Lkx$a; m_125329_ + 0 o p_125330_ + 1 o p_125331_ + a (Ljava/util/function/Function;)Lkx; m_125335_ + 0 o p_125336_ + a (Ljava/lang/Comparable;Ljava/util/List;)Lkx$a; m_125332_ + 0 o p_125333_ + 1 o p_125334_ + a (Ljava/util/function/Function;Ljava/lang/Comparable;)V m_176310_ + 0 o p_176311_ + 1 o p_176312_ + b (Ljava/util/function/Function;Ljava/lang/Comparable;)V m_125338_ + 0 o p_125339_ + 1 o p_125340_ + b ()Ljava/util/List; m_7336_ + b (Ljava/util/function/Function;)Lkx; m_176313_ + 0 o p_176314_ +kx$b net/minecraft/data/models/blockstates/PropertyDispatch$C2 + a f_125341_ + b f_125342_ + (Ldde;Ldde;)V + 0 o p_125344_ + 1 o p_125345_ + a (Ljava/lang/Comparable;Ljava/lang/Comparable;Ljava/util/List;)Lkx$b; m_125354_ + 0 o p_125355_ + 1 o p_125356_ + 2 o p_125357_ + a (Ljava/lang/Comparable;Ljava/util/function/BiFunction;Ljava/lang/Comparable;)V m_176315_ + 0 o p_176316_ + 1 o p_176317_ + 2 o p_176318_ + a (Ljava/util/function/BiFunction;Ljava/lang/Comparable;)V m_125364_ + 0 o p_125365_ + 1 o p_125366_ + a (Ljava/util/function/BiFunction;)Lkx; m_125362_ + 0 o p_125363_ + a (Ljava/lang/Comparable;Ljava/lang/Comparable;Lkz;)Lkx$b; m_125350_ + 0 o p_125351_ + 1 o p_125352_ + 2 o p_125353_ + b (Ljava/lang/Comparable;Ljava/util/function/BiFunction;Ljava/lang/Comparable;)V m_176319_ + 0 o p_176320_ + 1 o p_176321_ + 2 o p_176322_ + b ()Ljava/util/List; m_7336_ + b (Ljava/util/function/BiFunction;Ljava/lang/Comparable;)V m_125374_ + 0 o p_125375_ + 1 o p_125376_ + b (Ljava/util/function/BiFunction;)Lkx; m_125372_ + 0 o p_125373_ +kx$c net/minecraft/data/models/blockstates/PropertyDispatch$C3 + a f_125377_ + b f_125378_ + c f_125379_ + (Ldde;Ldde;Ldde;)V + 0 o p_125381_ + 1 o p_125382_ + 2 o p_125383_ + a (Ljava/lang/Comparable;Ljava/lang/Comparable;Ljava/lang/Comparable;Lkz;)Lkx$c; m_125391_ + 0 o p_125392_ + 1 o p_125393_ + 2 o p_125394_ + 3 o p_125395_ + a (Lkx$h;Ljava/lang/Comparable;)V m_176332_ + 0 o p_176333_ + 1 o p_176334_ + a (Ljava/lang/Comparable;Lkx$h;Ljava/lang/Comparable;)V m_176328_ + 0 o p_176329_ + 1 o p_176330_ + 2 o p_176331_ + a (Ljava/lang/Comparable;Ljava/lang/Comparable;Lkx$h;Ljava/lang/Comparable;)V m_176323_ + 0 o p_176324_ + 1 o p_176325_ + 2 o p_176326_ + 3 o p_176327_ + a (Lkx$h;)Lkx; m_125389_ + 0 o p_125390_ + a (Ljava/lang/Comparable;Ljava/lang/Comparable;Ljava/lang/Comparable;Ljava/util/List;)Lkx$c; m_125396_ + 0 o p_125397_ + 1 o p_125398_ + 2 o p_125399_ + 3 o p_125400_ + b (Ljava/lang/Comparable;Ljava/lang/Comparable;Lkx$h;Ljava/lang/Comparable;)V m_176335_ + 0 o p_176336_ + 1 o p_176337_ + 2 o p_176338_ + 3 o p_176339_ + b (Ljava/lang/Comparable;Lkx$h;Ljava/lang/Comparable;)V m_176340_ + 0 o p_176341_ + 1 o p_176342_ + 2 o p_176343_ + b (Lkx$h;Ljava/lang/Comparable;)V m_125402_ + 0 o p_125403_ + 1 o p_125404_ + b ()Ljava/util/List; m_7336_ + b (Lkx$h;)Lkx; m_176344_ + 0 o p_176345_ +kx$d net/minecraft/data/models/blockstates/PropertyDispatch$C4 + a f_125414_ + b f_125415_ + c f_125416_ + d f_125417_ + (Ldde;Ldde;Ldde;Ldde;)V + 0 o p_125419_ + 1 o p_125420_ + 2 o p_125421_ + 3 o p_125422_ + a (Lkx$g;Ljava/lang/Comparable;)V m_176363_ + 0 o p_176364_ + 1 o p_176365_ + a (Ljava/lang/Comparable;Lkx$g;Ljava/lang/Comparable;)V m_176357_ + 0 o p_176358_ + 1 o p_176359_ + 2 o p_176360_ + a (Ljava/lang/Comparable;Ljava/lang/Comparable;Ljava/lang/Comparable;Lkx$g;Ljava/lang/Comparable;)V m_176346_ + 0 o p_176347_ + 1 o p_176348_ + 2 o p_176349_ + 3 o p_176350_ + 4 o p_176351_ + a (Ljava/lang/Comparable;Ljava/lang/Comparable;Lkx$g;Ljava/lang/Comparable;)V m_176352_ + 0 o p_176353_ + 1 o p_176354_ + 2 o p_176355_ + 3 o p_176356_ + a (Lkx$g;)Lkx; m_176361_ + 0 o p_176362_ + a (Ljava/lang/Comparable;Ljava/lang/Comparable;Ljava/lang/Comparable;Ljava/lang/Comparable;Ljava/util/List;)Lkx$d; m_125435_ + 0 o p_125436_ + 1 o p_125437_ + 2 o p_125438_ + 3 o p_125439_ + 4 o p_125440_ + a (Ljava/lang/Comparable;Ljava/lang/Comparable;Ljava/lang/Comparable;Ljava/lang/Comparable;Lkz;)Lkx$d; m_125429_ + 0 o p_125430_ + 1 o p_125431_ + 2 o p_125432_ + 3 o p_125433_ + 4 o p_125434_ + b (Ljava/lang/Comparable;Ljava/lang/Comparable;Lkx$g;Ljava/lang/Comparable;)V m_176372_ + 0 o p_176373_ + 1 o p_176374_ + 2 o p_176375_ + 3 o p_176376_ + b (Ljava/lang/Comparable;Ljava/lang/Comparable;Ljava/lang/Comparable;Lkx$g;Ljava/lang/Comparable;)V m_176366_ + 0 o p_176367_ + 1 o p_176368_ + 2 o p_176369_ + 3 o p_176370_ + 4 o p_176371_ + b ()Ljava/util/List; m_7336_ + b (Lkx$g;)Lkx; m_176381_ + 0 o p_176382_ + b (Ljava/lang/Comparable;Lkx$g;Ljava/lang/Comparable;)V m_176377_ + 0 o p_176378_ + 1 o p_176379_ + 2 o p_176380_ + b (Lkx$g;Ljava/lang/Comparable;)V m_176383_ + 0 o p_176384_ + 1 o p_176385_ +kx$e net/minecraft/data/models/blockstates/PropertyDispatch$C5 + a f_125442_ + b f_125443_ + c f_125444_ + d f_125445_ + e f_125446_ + (Ldde;Ldde;Ldde;Ldde;Ldde;)V + 0 o p_125448_ + 1 o p_125449_ + 2 o p_125450_ + 3 o p_125451_ + 4 o p_125452_ + a (Ljava/lang/Comparable;Ljava/lang/Comparable;Ljava/lang/Comparable;Ljava/lang/Comparable;Lkx$f;Ljava/lang/Comparable;)V m_176386_ + 0 o p_176387_ + 1 o p_176388_ + 2 o p_176389_ + 3 o p_176390_ + 4 o p_176391_ + 5 o p_176392_ + a (Ljava/lang/Comparable;Ljava/lang/Comparable;Ljava/lang/Comparable;Ljava/lang/Comparable;Ljava/lang/Comparable;Ljava/util/List;)Lkx$e; m_125467_ + 0 o p_125468_ + 1 o p_125469_ + 2 o p_125470_ + 3 o p_125471_ + 4 o p_125472_ + 5 o p_125473_ + a (Lkx$f;)Lkx; m_176408_ + 0 o p_176409_ + a (Lkx$f;Ljava/lang/Comparable;)V m_176410_ + 0 o p_176411_ + 1 o p_176412_ + a (Ljava/lang/Comparable;Ljava/lang/Comparable;Lkx$f;Ljava/lang/Comparable;)V m_176399_ + 0 o p_176400_ + 1 o p_176401_ + 2 o p_176402_ + 3 o p_176403_ + a (Ljava/lang/Comparable;Ljava/lang/Comparable;Ljava/lang/Comparable;Lkx$f;Ljava/lang/Comparable;)V m_176393_ + 0 o p_176394_ + 1 o p_176395_ + 2 o p_176396_ + 3 o p_176397_ + 4 o p_176398_ + a (Ljava/lang/Comparable;Lkx$f;Ljava/lang/Comparable;)V m_176404_ + 0 o p_176405_ + 1 o p_176406_ + 2 o p_176407_ + a (Ljava/lang/Comparable;Ljava/lang/Comparable;Ljava/lang/Comparable;Ljava/lang/Comparable;Ljava/lang/Comparable;Lkz;)Lkx$e; m_125460_ + 0 o p_125461_ + 1 o p_125462_ + 2 o p_125463_ + 3 o p_125464_ + 4 o p_125465_ + 5 o p_125466_ + b (Lkx$f;Ljava/lang/Comparable;)V m_176437_ + 0 o p_176438_ + 1 o p_176439_ + b (Ljava/lang/Comparable;Ljava/lang/Comparable;Lkx$f;Ljava/lang/Comparable;)V m_176426_ + 0 o p_176427_ + 1 o p_176428_ + 2 o p_176429_ + 3 o p_176430_ + b (Lkx$f;)Lkx; m_176435_ + 0 o p_176436_ + b ()Ljava/util/List; m_7336_ + b (Ljava/lang/Comparable;Ljava/lang/Comparable;Ljava/lang/Comparable;Lkx$f;Ljava/lang/Comparable;)V m_176420_ + 0 o p_176421_ + 1 o p_176422_ + 2 o p_176423_ + 3 o p_176424_ + 4 o p_176425_ + b (Ljava/lang/Comparable;Lkx$f;Ljava/lang/Comparable;)V m_176431_ + 0 o p_176432_ + 1 o p_176433_ + 2 o p_176434_ + b (Ljava/lang/Comparable;Ljava/lang/Comparable;Ljava/lang/Comparable;Ljava/lang/Comparable;Lkx$f;Ljava/lang/Comparable;)V m_176413_ + 0 o p_176414_ + 1 o p_176415_ + 2 o p_176416_ + 3 o p_176417_ + 4 o p_176418_ + 5 o p_176419_ +kx$f net/minecraft/data/models/blockstates/PropertyDispatch$PentaFunction + apply (Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object; m_176440_ + 0 o p_176441_ + 1 o p_176442_ + 2 o p_176443_ + 3 o p_176444_ + 4 o p_176445_ +kx$g net/minecraft/data/models/blockstates/PropertyDispatch$QuadFunction + apply (Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object; m_176446_ + 0 o p_176447_ + 1 o p_176448_ + 2 o p_176449_ + 3 o p_176450_ +kx$h net/minecraft/data/models/blockstates/PropertyDispatch$TriFunction + apply (Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object; m_125475_ + 0 o p_125476_ + 1 o p_125477_ + 2 o p_125478_ +ky net/minecraft/data/models/blockstates/Selector + a f_125479_ + b f_125480_ + c f_125481_ + ()V + static + (Ljava/util/List;)V + 0 o p_125484_ + a ([Ldde$a;)Lky; m_125490_ + static + 0 o p_125491_ + a (Ldde$a;)Lky; m_125486_ + 0 o p_125487_ + a (Lky;)Lky; m_125488_ + 0 o p_125489_ + a ()Lky; m_125485_ + static + b ()Ljava/lang/String; m_125492_ + b (Ldde$a;)Ljava/lang/String; m_125493_ + static + 0 o p_125494_ + equals (Ljava/lang/Object;)Z equals + 0 o p_125496_ + hashCode ()I hashCode + toString ()Ljava/lang/String; toString +kz net/minecraft/data/models/blockstates/Variant + a f_125499_ + ()V + a (Lcom/google/gson/JsonArray;Lkz;)V m_125502_ + static + 0 o p_125503_ + 1 o p_125504_ + a (Lcom/google/gson/JsonObject;Llb$a;)V m_125505_ + static + 0 o p_125506_ + 1 o p_125507_ + a (Llb;Ljava/lang/Object;)Lkz; m_125511_ + 0 o p_125512_ + 1 o p_125513_ + a ()Lkz; m_125501_ + static + a (Lkz;Lkz;)Lkz; m_125508_ + static + 0 o p_125509_ + 1 o p_125510_ + a (Ljava/util/List;)Lcom/google/gson/JsonElement; m_125514_ + static + 0 o p_125515_ + b ()Lcom/google/gson/JsonElement; get + get ()Ljava/lang/Object; get +l net/minecraft/BlockUtil + ()V + a (Lgu;Lha$a;ILha$a;ILjava/util/function/Predicate;)Ll$a; m_124334_ + static + 0 o p_124335_ + 1 o p_124336_ + 2 o p_124337_ + 3 o p_124338_ + 4 o p_124339_ + 5 o p_124340_ + a ([I)Lcom/mojang/datafixers/util/Pair; m_124346_ + static + 0 o p_124347_ + a (Lcls;Lgu;Lcpn;Lha;Lcpn;)Ljava/util/Optional; m_177845_ + static + 0 o p_177846_ + 1 o p_177847_ + 2 o p_177848_ + 3 o p_177849_ + 4 o p_177850_ + a (Ljava/util/function/Predicate;Lgu$a;Lha;I)I m_124341_ + static + 0 o p_124342_ + 1 o p_124343_ + 2 o p_124344_ + 3 o p_124345_ +l$a net/minecraft/BlockUtil$FoundRectangle + a f_124348_ + b f_124349_ + c f_124350_ + (Lgu;II)V + 0 o p_124352_ + 1 o p_124353_ + 2 o p_124354_ +l$b net/minecraft/BlockUtil$IntBounds + a f_124355_ + b f_124356_ + (II)V + 0 o p_124358_ + 1 o p_124359_ + toString ()Ljava/lang/String; toString +la net/minecraft/data/models/blockstates/VariantProperties + a f_125518_ + b f_125519_ + c f_125520_ + d f_125521_ + e f_125522_ + ()V + static + ()V + a (Lla$a;)Lcom/google/gson/JsonElement; m_125524_ + static + 0 o p_125525_ + a (Lacq;)Lcom/google/gson/JsonElement; m_125526_ + static + 0 o p_125527_ + b (Lla$a;)Lcom/google/gson/JsonElement; m_125528_ + static + 0 o p_125529_ +la$a net/minecraft/data/models/blockstates/VariantProperties$Rotation + a R0 + b R90 + c R180 + d R270 + e f_125534_ + f $VALUES + ()V + static + (Ljava/lang/String;II)V + 0 o p_125538_ + 1 o p_125539_ + 2 o p_125540_ + a ()[Lla$a; m_176452_ + static + valueOf (Ljava/lang/String;)Lla$a; valueOf + static + 0 o p_125544_ + values ()[Lla$a; values + static +lb net/minecraft/data/models/blockstates/VariantProperty + a f_125546_ + b f_125547_ + (Ljava/lang/String;Ljava/util/function/Function;)V + 0 o p_125549_ + 1 o p_125550_ + a (Ljava/lang/Object;)Llb$a; m_125553_ + 0 o p_125554_ + toString ()Ljava/lang/String; toString +lb$a net/minecraft/data/models/blockstates/VariantProperty$Value + a f_125558_ + b f_125559_ + (Llb;Ljava/lang/Object;)V + 0 o p_125561_ + 1 o p_125562_ + a (Lcom/google/gson/JsonObject;)V m_125563_ + 0 o p_125564_ + a ()Llb; m_176453_ + toString ()Ljava/lang/String; toString +lc net/minecraft/data/models/blockstates/package-info +ld net/minecraft/data/models/model/DelegatedModel + a f_125566_ + (Lacq;)V + 0 o p_125568_ + a ()Lcom/google/gson/JsonElement; get + get ()Ljava/lang/Object; get +le net/minecraft/data/models/model/ModelLocationUtils + ()V + a (Lcpn;Ljava/lang/String;)Lacq; m_125578_ + static + 0 o p_125579_ + 1 o p_125580_ + a (Ljava/lang/String;)Lacq; m_125581_ + static + 0 o p_125582_ + a (Ljava/lang/String;Ljava/lang/String;)Ljava/lang/String; m_246878_ + static + 0 o p_250631_ + 1 o p_251542_ + a (Lcfu;Ljava/lang/String;)Lacq; m_125573_ + static + 0 o p_125574_ + 1 o p_125575_ + a (Lcpn;)Lacq; m_125576_ + static + 0 o p_125577_ + a (Lcfu;)Lacq; m_125571_ + static + 0 o p_125572_ + b (Ljava/lang/String;)Lacq; m_125583_ + static + 0 o p_125584_ + b (Ljava/lang/String;Ljava/lang/String;)Ljava/lang/String; m_246144_ + static + 0 o p_250056_ + 1 o p_251253_ +lf net/minecraft/data/models/model/ModelTemplate + a f_125585_ + b f_125586_ + c f_125587_ + (Ljava/util/Optional;Ljava/util/Optional;[Lli;)V + 0 o p_125589_ + 1 o p_125590_ + 2 o p_125591_ + a (Lcpn;Llh;Ljava/util/function/BiConsumer;)Lacq; m_125592_ + 0 o p_125593_ + 1 o p_125594_ + 2 o p_125595_ + a (Llh;)Ljava/util/Map; m_125608_ + 0 o p_125609_ + a (Lcom/google/gson/JsonObject;Lli;Lacq;)V m_176455_ + static + 0 o p_176456_ + 1 o p_176457_ + 2 o p_176458_ + a (Lcom/google/gson/JsonObject;Lacq;)V m_176459_ + static + 0 o p_176460_ + 1 o p_176461_ + a (Lacq;Ljava/util/Map;)Lcom/google/gson/JsonObject; m_266532_ + 0 o p_266830_ + 1 o p_266912_ + a (Llf$a;Lacq;Ljava/util/Map;)Lcom/google/gson/JsonElement; m_266131_ + static + 0 o p_266625_ + 1 o p_266626_ + 2 o p_266627_ + a (Lcpn;Ljava/lang/String;Llh;Ljava/util/function/BiConsumer;)Lacq; m_125596_ + 0 o p_125597_ + 1 o p_125598_ + 2 o p_125599_ + 3 o p_125600_ + a (Lacq;Llh;Ljava/util/function/BiConsumer;Llf$a;)Lacq; m_266561_ + 0 o p_266990_ + 1 o p_267329_ + 2 o p_266768_ + 3 o p_266906_ + a (Lacq;Llh;Ljava/util/function/BiConsumer;)Lacq; m_125612_ + 0 o p_125613_ + 1 o p_125614_ + 2 o p_125615_ + b (Lcpn;Ljava/lang/String;Llh;Ljava/util/function/BiConsumer;)Lacq; m_125616_ + 0 o p_125617_ + 1 o p_125618_ + 2 o p_125619_ + 3 o p_125620_ +lf$a net/minecraft/data/models/model/ModelTemplate$JsonFactory + create (Lacq;Ljava/util/Map;)Lcom/google/gson/JsonObject; m_266264_ + 0 o p_266987_ + 1 o p_266933_ +lg net/minecraft/data/models/model/ModelTemplates + A f_236349_ + B f_243784_ + C f_244191_ + D f_244408_ + E f_244216_ + F f_243943_ + G f_243867_ + H f_125708_ + I f_125709_ + J f_125710_ + K f_125711_ + L f_125712_ + M f_125713_ + N f_125714_ + O f_243715_ + P f_243831_ + Q f_244273_ + R f_243925_ + S f_125715_ + T f_125621_ + U f_125622_ + V f_125623_ + W f_125624_ + X f_125625_ + Y f_125626_ + Z f_125627_ + a f_125647_ + aA f_125667_ + aB f_125668_ + aC f_125669_ + aD f_125670_ + aE f_125671_ + aF f_125672_ + aG f_125673_ + aH f_125674_ + aI f_125675_ + aJ f_125676_ + aK f_260688_ + aL f_260577_ + aM f_260631_ + aN f_260440_ + aO f_260622_ + aP f_260613_ + aQ f_125677_ + aR f_125678_ + aS f_125679_ + aT f_125680_ + aU f_125681_ + aV f_125682_ + aW f_125683_ + aX f_125684_ + aY f_125685_ + aZ f_125686_ + aa f_125628_ + ab f_125629_ + ac f_125630_ + ad f_125631_ + ae f_125632_ + af f_125633_ + ag f_125634_ + ah f_125635_ + ai f_125636_ + aj f_125637_ + ak f_125638_ + al f_176462_ + am f_125639_ + an f_125640_ + ao f_125641_ + ap f_125642_ + aq f_125643_ + ar f_125644_ + as f_125645_ + at f_125646_ + au f_125665_ + av f_271241_ + aw f_271417_ + ax f_271276_ + ay f_271172_ + az f_125666_ + b f_125691_ + bA f_267487_ + bB f_125661_ + bC f_125662_ + bD f_125663_ + bE f_125664_ + bF f_176468_ + bG f_176469_ + bH f_176470_ + bI f_176471_ + bJ f_176472_ + bK f_236340_ + ba f_125687_ + bb f_125688_ + bc f_125689_ + bd f_125690_ + be f_125648_ + bf f_125649_ + bg f_125650_ + bh f_125651_ + bi f_125652_ + bj f_125653_ + bk f_125654_ + bl f_125655_ + bm f_125656_ + bn f_125657_ + bo f_176463_ + bp f_176464_ + bq f_176465_ + br f_176466_ + bs f_176467_ + bt f_278116_ + bu f_276458_ + bv f_125658_ + bw f_278495_ + bx f_125659_ + by f_125660_ + bz f_267493_ + c f_125692_ + d f_125693_ + e f_236341_ + f f_256886_ + g f_256809_ + h f_256910_ + i f_125694_ + j f_125695_ + k f_176473_ + l f_125696_ + m f_125697_ + n f_125698_ + o f_125699_ + p f_125700_ + q f_125701_ + r f_125702_ + s f_125703_ + t f_236342_ + u f_236343_ + v f_236344_ + w f_236345_ + x f_236346_ + y f_236347_ + z f_236348_ + ()V + static + ()V + a ([Lli;)Llf; m_125726_ + static + 0 o p_125727_ + a (Ljava/lang/String;Ljava/lang/String;[Lli;)Llf; m_125719_ + static + 0 o p_125720_ + 1 o p_125721_ + 2 o p_125722_ + a (Ljava/lang/String;[Lli;)Llf; m_125723_ + static + 0 o p_125724_ + 1 o p_125725_ + a (I)[Llf; m_125717_ + static + 0 o p_125718_ + b (Ljava/lang/String;[Lli;)Llf; m_125730_ + static + 0 o p_125731_ + 1 o p_125732_ + b (I)Llf; m_125728_ + static + 0 o p_125729_ +lh net/minecraft/data/models/model/TextureMapping + a f_125733_ + b f_125734_ + ()V + A (Lcpn;)Llh; m_125846_ + static + 0 o p_125847_ + B (Lcpn;)Llh; m_125848_ + static + 0 o p_125849_ + C (Lcpn;)Llh; m_125850_ + static + 0 o p_125851_ + D (Lcpn;)Llh; m_125852_ + static + 0 o p_125853_ + E (Lcpn;)Llh; m_125736_ + static + 0 o p_125737_ + F (Lcpn;)Llh; m_125738_ + static + 0 o p_125739_ + G (Lcpn;)Lacq; m_125740_ + static + 0 o p_125741_ + a (Lacq;Lacq;Lacq;)Llh; m_267703_ + static + 0 o p_268096_ + 1 o p_268084_ + 2 o p_268063_ + a (Lcfu;Ljava/lang/String;)Lacq; m_125745_ + static + 0 o p_125746_ + 1 o p_125747_ + a (Ljava/lang/String;)Llh; m_278174_ + static + 0 o p_278314_ + a (Lcpn;Lcpn;)Llh; m_125750_ + static + 0 o p_125751_ + 1 o p_125752_ + a (Ljava/lang/String;Ljava/lang/String;)Ljava/lang/String; m_247647_ + static + 0 o p_249918_ + 1 o p_252192_ + a (Lcpn;)Llh; m_125748_ + static + 0 o p_125749_ + a (Lcpn;Z)Llh; m_181476_ + static + 0 o p_181477_ + 1 o p_181478_ + a (Lcpn;Ljava/lang/String;)Lacq; m_125753_ + static + 0 o p_125754_ + 1 o p_125755_ + a (Lli;Lacq;)Llh; m_125758_ + 0 o p_125759_ + 1 o p_125760_ + a ()Ljava/util/stream/Stream; m_125742_ + a (Lcfu;)Llh; m_125743_ + static + 0 o p_125744_ + a (Lli;Lli;)Llh; m_176477_ + 0 o p_176478_ + 1 o p_176479_ + a (Lacq;)Llh; m_125761_ + static + 0 o p_125762_ + a (Z)Llh; m_236350_ + static + 0 o p_236351_ + a (Lacq;Lacq;)Llh; m_125763_ + static + 0 o p_125764_ + 1 o p_125765_ + a (Lli;)Lacq; m_125756_ + 0 o p_125757_ + b (Lli;Lacq;)Llh; m_176480_ + 0 o p_176481_ + 1 o p_176482_ + b (Lacq;)Llh; m_125776_ + static + 0 o p_125777_ + b (Lacq;Lacq;)Llh; m_176483_ + static + 0 o p_176484_ + 1 o p_176485_ + b (Lli;Lli;)Llh; m_125773_ + 0 o p_125774_ + 1 o p_125775_ + b (Ljava/lang/String;Ljava/lang/String;)Ljava/lang/String; m_245168_ + static + 0 o p_251667_ + 1 o p_248521_ + b (Lcpn;)Llh; m_125768_ + static + 0 o p_125769_ + b (Lcfu;)Llh; m_125766_ + static + 0 o p_125767_ + b (Lcpn;Lcpn;)Llh; m_125770_ + static + 0 o p_125771_ + 1 o p_125772_ + c (Lcpn;)Llh; m_125780_ + static + 0 o p_125781_ + c (Lcpn;Lcpn;)Llh; m_125782_ + static + 0 o p_125783_ + 1 o p_125784_ + c (Lacq;Lacq;)Llh; m_266401_ + static + 0 o p_267142_ + 1 o p_266884_ + c (Lcfu;)Lacq; m_125778_ + static + 0 o p_125779_ + c (Lacq;)Llh; m_125788_ + static + 0 o p_125789_ + c (Lli;Lacq;)Llh; m_125785_ + 0 o p_125786_ + 1 o p_125787_ + d (Lacq;)Llh; m_125798_ + static + 0 o p_125799_ + d (Lcpn;Lcpn;)Llh; m_125792_ + static + 0 o p_125793_ + 1 o p_125794_ + d (Lli;Lacq;)Llh; m_125795_ + static + 0 o p_125796_ + 1 o p_125797_ + d (Lcpn;)Llh; m_125790_ + static + 0 o p_125791_ + e (Lacq;)Llh; m_125802_ + static + 0 o p_125803_ + e (Lcpn;)Llh; m_125800_ + static + 0 o p_125801_ + f (Lcpn;)Llh; m_125804_ + static + 0 o p_125805_ + f (Lacq;)Llh; m_176486_ + static + 0 o p_176487_ + g (Lacq;)Llh; m_125808_ + static + 0 o p_125809_ + g (Lcpn;)Llh; m_272143_ + static + 0 o p_272596_ + h (Lcpn;)Llh; m_125806_ + static + 0 o p_125807_ + h (Lacq;)Llh; m_125812_ + static + 0 o p_125813_ + i (Lcpn;)Llh; m_125810_ + static + 0 o p_125811_ + i (Lacq;)Llh; m_125816_ + static + 0 o p_125817_ + j (Lacq;)Llh; m_176488_ + static + 0 o p_176489_ + j (Lcpn;)Llh; m_125814_ + static + 0 o p_125815_ + k (Lacq;)Llh; m_125820_ + static + 0 o p_125821_ + k (Lcpn;)Llh; m_125818_ + static + 0 o p_125819_ + l (Lcpn;)Llh; m_125822_ + static + 0 o p_125823_ + m (Lcpn;)Llh; m_278163_ + static + 0 o p_278329_ + n (Lcpn;)Llh; m_125824_ + static + 0 o p_125825_ + o (Lcpn;)Llh; m_245971_ + static + 0 o p_250135_ + p (Lcpn;)Llh; m_246624_ + static + 0 o p_250579_ + q (Lcpn;)Llh; m_125826_ + static + 0 o p_125827_ + r (Lcpn;)Llh; m_125828_ + static + 0 o p_125829_ + s (Lcpn;)Llh; m_125830_ + static + 0 o p_125831_ + t (Lcpn;)Llh; m_125832_ + static + 0 o p_125833_ + u (Lcpn;)Llh; m_125834_ + static + 0 o p_125835_ + v (Lcpn;)Llh; m_125836_ + static + 0 o p_125837_ + w (Lcpn;)Llh; m_125838_ + static + 0 o p_125839_ + x (Lcpn;)Llh; m_125840_ + static + 0 o p_125841_ + y (Lcpn;)Llh; m_125842_ + static + 0 o p_125843_ + z (Lcpn;)Llh; m_125844_ + static + 0 o p_125845_ +li net/minecraft/data/models/model/TextureSlot + A f_125856_ + B f_125857_ + C f_125858_ + D f_125859_ + E f_125860_ + F f_125861_ + G f_125862_ + H f_125863_ + I f_265929_ + J f_267385_ + K f_125864_ + L f_176490_ + M f_176491_ + N f_176492_ + O f_236352_ + P f_271285_ + Q f_125865_ + R f_125866_ + a f_125867_ + b f_125868_ + c f_125869_ + d f_125870_ + e f_125871_ + f f_125872_ + g f_125873_ + h f_125874_ + i f_125875_ + j f_125876_ + k f_125877_ + l f_125878_ + m f_125879_ + n f_125880_ + o f_125881_ + p f_125882_ + q f_125883_ + r f_125884_ + s f_125885_ + t f_125886_ + u f_125887_ + v f_125888_ + w f_125889_ + x f_125890_ + y f_125891_ + z f_125892_ + ()V + static + (Ljava/lang/String;Lli;)V + 0 o p_125895_ + 1 o p_125896_ + a (Ljava/lang/String;Lli;)Lli; m_125900_ + static + 0 o p_125901_ + 1 o p_125902_ + a ()Ljava/lang/String; m_125897_ + a (Ljava/lang/String;)Lli; m_125898_ + static + 0 o p_125899_ + b ()Lli; m_125903_ + toString ()Ljava/lang/String; toString +lj net/minecraft/data/models/model/TexturedModel + A f_125927_ + a f_125905_ + b f_125906_ + c f_125907_ + d f_125908_ + e f_125909_ + f f_125910_ + g f_125911_ + h f_125912_ + i f_125913_ + j f_271277_ + k f_271345_ + l f_271514_ + m f_271226_ + n f_125914_ + o f_125915_ + p f_125916_ + q f_125917_ + r f_125918_ + s f_125919_ + t f_125920_ + u f_125921_ + v f_125922_ + w f_125923_ + x f_125924_ + y f_125925_ + z f_125926_ + ()V + static + (Llh;Llf;)V + 0 o p_125930_ + 1 o p_125931_ + a (Ljava/util/function/Function;Llf;Lcpn;)Llj; m_125945_ + static + 0 o p_125946_ + 1 o p_125947_ + 2 o p_125948_ + a (Ljava/util/function/Function;Llf;)Llj$a; m_125942_ + static + 0 o p_125943_ + 1 o p_125944_ + a ()Llf; m_125932_ + a (Lcpn;Ljava/util/function/BiConsumer;)Lacq; m_125937_ + 0 o p_125938_ + 1 o p_125939_ + a (Lacq;)Llj; m_125949_ + static + 0 o p_125950_ + a (Ljava/util/function/Consumer;)Llj; m_125940_ + 0 o p_125941_ + a (Lcpn;Ljava/lang/String;Ljava/util/function/BiConsumer;)Lacq; m_125933_ + 0 o p_125934_ + 1 o p_125935_ + 2 o p_125936_ + b ()Llh; m_125951_ +lj$a net/minecraft/data/models/model/TexturedModel$Provider + a (Ljava/util/function/Consumer;Lcpn;)Llj; m_125961_ + 0 o p_125962_ + 1 o p_125963_ + create (Lcpn;Ljava/util/function/BiConsumer;)Lacq; m_125956_ + 0 o p_125957_ + 1 o p_125958_ + createWithSuffix (Lcpn;Ljava/lang/String;Ljava/util/function/BiConsumer;)Lacq; m_125952_ + 0 o p_125953_ + 1 o p_125954_ + 2 o p_125955_ + get (Lcpn;)Llj; m_125964_ + 0 o p_125965_ + updateTexture (Ljava/util/function/Consumer;)Llj$a; m_125959_ + 0 o p_125960_ +lk net/minecraft/data/models/model/package-info +ll net/minecraft/data/models/package-info +lm net/minecraft/data/package-info +ln net/minecraft/data/recipes/CraftingRecipeBuilder + ()V + a (Llq;)Lcis; m_245179_ + static + 0 o p_250736_ +ln$1 net/minecraft/data/recipes/CraftingRecipeBuilder$1 + a f_244028_ + ()V + static +ln$a net/minecraft/data/recipes/CraftingRecipeBuilder$CraftingResult + a f_244639_ + (Lcis;)V + 0 o p_250313_ + a (Lcom/google/gson/JsonObject;)V m_7917_ + 0 o p_250456_ +lo net/minecraft/data/recipes/FinishedRecipe + a ()Lcom/google/gson/JsonObject; m_125966_ + a (Lcom/google/gson/JsonObject;)V m_7917_ + 0 o p_125967_ + b ()Lacq; m_6445_ + c ()Lcje; m_6637_ + d ()Lcom/google/gson/JsonObject; m_5860_ + e ()Lacq; m_6448_ +lp net/minecraft/data/recipes/RecipeBuilder + a f_236353_ + ()V + static + a (Ljava/lang/String;)Llp; m_126145_ + 0 o p_176495_ + a (Ljava/util/function/Consumer;Lacq;)V m_126140_ + 0 o p_176503_ + 1 o p_176504_ + a (Ljava/util/function/Consumer;)V m_176498_ + 0 o p_176499_ + a (Lcml;)Lacq; m_176493_ + static + 0 o p_176494_ + a (Ljava/util/function/Consumer;Ljava/lang/String;)V m_176500_ + 0 o p_176501_ + 1 o p_176502_ + a (Ljava/lang/String;Lam;)Llp; m_126132_ + 0 o p_176496_ + 1 o p_176497_ + a ()Lcfu; m_142372_ +lq net/minecraft/data/recipes/RecipeCategory + a BUILDING_BLOCKS + b DECORATIONS + c REDSTONE + d TRANSPORTATION + e TOOLS + f COMBAT + g FOOD + h BREWING + i MISC + j f_244582_ + k $VALUES + ()V + static + (Ljava/lang/String;ILjava/lang/String;)V + 0 o p_249201_ + 1 o p_249770_ + 2 o p_251010_ + a ()Ljava/lang/String; m_247710_ + b ()[Llq; m_245241_ + static + valueOf (Ljava/lang/String;)Llq; valueOf + static + 0 o p_248924_ + values ()[Llq; values + static +lr net/minecraft/data/recipes/RecipeProvider + d f_236355_ + e f_236356_ + f f_244077_ + ()V + static + (Ljk;)V + 0 o p_248933_ + a (Lcml;)Lbx$a; m_125977_ + static + 0 o p_125978_ + a (Ljava/util/function/Consumer;Lcpn;Lcpn;)V m_244775_ + static + 0 o p_248021_ + 1 o p_248022_ + 2 o p_248023_ + a (Ljava/util/function/Consumer;Ljava/lang/String;Lcje;I)V m_126006_ + static + 0 o p_126007_ + 1 o p_126008_ + 2 o p_250529_ + 3 o p_126010_ + a (Ljf;Ljava/util/function/Consumer;Ljf$b;Lcpn;)V m_176526_ + static + 0 o p_176527_ + 1 o p_176528_ + 2 o p_176529_ + 3 o p_176530_ + a (Ljava/util/function/Consumer;Lcml;Lcml;)V m_126002_ + static + 0 o p_126003_ + 1 o p_126004_ + 2 o p_126005_ + a (Ljava/util/function/Consumer;Lcml;Lanl;I)V m_257929_ + static + 0 o p_259712_ + 1 o p_259052_ + 2 o p_259045_ + 3 o p_259471_ + a (Ljg;)Ljava/util/concurrent/CompletableFuture; m_213708_ + 0 o p_254020_ + a (Ljava/util/function/Consumer;Ljava/lang/String;Lcje;ILcml;Lcml;F)V m_247434_ + static + 0 o p_249398_ + 1 o p_249709_ + 2 o p_251876_ + 3 o p_249258_ + 4 o p_250669_ + 5 o p_250224_ + 6 o p_252138_ + a (Ljava/util/function/Consumer;Lcje;Ljava/util/List;Llq;Lcml;FILjava/lang/String;Ljava/lang/String;)V m_245809_ + static + 0 o p_250791_ + 1 o p_251817_ + 2 o p_249619_ + 3 o p_251154_ + 4 o p_250066_ + 5 o p_251871_ + 6 o p_251316_ + 7 o p_251450_ + 8 o p_249236_ + a (Ljava/util/function/Consumer;Llq;Lcml;Lcml;)V m_247540_ + static + 0 o p_248860_ + 1 o p_250881_ + 2 o p_252184_ + 3 o p_249710_ + a (Lcpn;)Lbk$a; m_125979_ + static + 0 o p_125980_ + a (Ljava/util/function/Consumer;Lcml;Lcml;Ljava/lang/String;)V m_176551_ + static + 0 o p_176552_ + 1 o p_176553_ + 2 o p_176554_ + 3 o p_176555_ + a (Ljava/util/Set;Ljava/util/List;Ljg;Llo;)V m_252625_ + 0 o p_253410_ + 1 o p_253411_ + 2 o p_253412_ + 3 o p_253413_ + a (Llq;Lcml;Lciz;)Llp; m_247552_ + static + 0 o p_251707_ + 1 o p_251284_ + 2 o p_248824_ + a (Ljava/util/function/Consumer;Llq;Lcml;Llq;Lcml;)V m_247655_ + static + 0 o p_249580_ + 1 o p_251203_ + 2 o p_251689_ + 3 o p_251376_ + 4 o p_248771_ + a (Lcml;Lcml;)Ljava/lang/String; m_176517_ + static + 0 o p_176518_ + 1 o p_176519_ + a (Lcaw;Ljf;)Z m_244780_ + static + 0 o p_248033_ + 1 o p_248034_ + a (Llp;Ljf$b;Ljava/lang/String;)V m_176598_ + static + 0 o p_176599_ + 1 o p_176600_ + 2 o p_176601_ + a ()Ljava/lang/String; m_6055_ + a (Ljg;Lacq;Lae$a;)Ljava/util/concurrent/CompletableFuture; m_253240_ + 0 o p_253674_ + 1 o p_254102_ + 2 o p_253712_ + a (Ljava/util/function/Consumer;Llq;Lcml;Lcml;I)V m_247298_ + static + 0 o p_249145_ + 1 o p_250609_ + 2 o p_251254_ + 3 o p_249666_ + 4 o p_251462_ + a (Ljava/util/function/Consumer;Llq;Lcml;Llq;Lcml;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;)V m_247368_ + static + 0 o p_250423_ + 1 o p_250083_ + 2 o p_250042_ + 3 o p_248977_ + 4 o p_251911_ + 5 o p_250475_ + 6 o p_248641_ + 7 o p_252237_ + 8 o p_250414_ + a (I)[Ljava/util/concurrent/CompletableFuture; m_252626_ + static + 0 o p_253414_ + a (Ljava/util/function/Consumer;Ljava/util/List;Llq;Lcml;FILjava/lang/String;)V m_246272_ + static + 0 o p_250654_ + 1 o p_250172_ + 2 o p_250588_ + 3 o p_251868_ + 4 o p_250789_ + 5 o p_252144_ + 6 o p_251687_ + a ([Lbz;)Lbx$a; m_126011_ + static + 0 o p_126012_ + a (Ljava/util/function/Consumer;Lcfu;Llq;Lcfu;)V m_246630_ + static + 0 o p_251614_ + 1 o p_250046_ + 2 o p_248986_ + 3 o p_250389_ + a (Ljava/util/function/Consumer;Llq;Lcml;Lcml;Ljava/lang/String;)V m_257994_ + static + 0 o p_259036_ + 1 o p_259247_ + 2 o p_259376_ + 3 o p_259717_ + 4 o p_260308_ + a (Ljava/util/function/Consumer;Lcml;Lanl;)V m_266564_ + static + 0 o p_267061_ + 1 o p_266974_ + 2 o p_267283_ + a (Ljava/util/function/Consumer;Lcfu;Lacq;)V m_284421_ + static + 0 o p_285086_ + 1 o p_285461_ + 2 o p_285044_ + a (Lcml;Lciz;)Llp; m_176670_ + static + 0 o p_176671_ + 1 o p_176672_ + a (Ljava/util/function/Consumer;Ljava/util/List;Ljava/util/List;Ljava/lang/String;)V m_289596_ + static + 0 o p_289666_ + 1 o p_289675_ + 2 o p_289672_ + 3 o p_289641_ + a (Ljava/util/function/Consumer;Lcml;Lcml;Ljava/lang/String;I)V m_176556_ + static + 0 o p_176557_ + 1 o p_176558_ + 2 o p_176559_ + 3 o p_176560_ + 4 o p_176561_ + a (Ljava/util/function/Consumer;Llq;Lcml;Llq;Lcml;Ljava/lang/String;Ljava/lang/String;)V m_246075_ + static + 0 o p_250488_ + 1 o p_250885_ + 2 o p_251651_ + 3 o p_250874_ + 4 o p_248576_ + 5 o p_250171_ + 6 o p_249386_ + a (Lanl;)Lbx$a; m_206406_ + static + 0 o p_206407_ + a (Ljava/util/function/Consumer;)V m_245200_ + 0 o p_251297_ + a (Lcj$d;Lcml;)Lbx$a; m_176520_ + static + 0 o p_176521_ + 1 o p_176522_ + a (Lcfu;Lcfu;)Z m_287806_ + static + 0 o p_288264_ + 1 o p_288265_ + a (Ljava/util/function/Consumer;Lcaw;)V m_247051_ + static + 0 o p_249188_ + 1 o p_251836_ + a (Ljava/util/function/Consumer;Ljf;)V m_176580_ + static + 0 o p_176581_ + 1 o p_176582_ + a (Ljf;Ljf$b;)Lcpn; m_176523_ + static + 0 o p_176524_ + 1 o p_176525_ + b (Ljava/util/function/Consumer;Ljava/util/List;Llq;Lcml;FILjava/lang/String;)V m_245412_ + static + 0 o p_248775_ + 1 o p_251504_ + 2 o p_248846_ + 3 o p_249735_ + 4 o p_248783_ + 5 o p_250303_ + 6 o p_251984_ + b (Ljava/util/function/Consumer;Llq;Lcml;Llq;Lcml;Ljava/lang/String;Ljava/lang/String;)V m_245261_ + static + 0 o p_250320_ + 1 o p_248979_ + 2 o p_249101_ + 3 o p_252036_ + 4 o p_250886_ + 5 o p_248768_ + 6 o p_250847_ + b (Ljava/util/function/Consumer;Llq;Lcml;Lcml;)V m_258049_ + static + 0 o p_260012_ + 1 o p_259186_ + 2 o p_259360_ + 3 o p_259263_ + b (Llq;Lcml;Lciz;)Lls; m_246451_ + static + 0 o p_251755_ + 1 o p_249782_ + 2 o p_250087_ + b (Ljava/util/function/Consumer;Lcml;Lcml;)V m_126021_ + static + 0 o p_126022_ + 1 o p_126023_ + 2 o p_126024_ + b (Lcml;Lcml;)Llp; m_244776_ + static + 0 o p_248024_ + 1 o p_248025_ + b (Ljava/util/function/Consumer;)V m_176610_ + static + 0 o p_176611_ + b (Ljava/util/function/Consumer;Ljf;)V m_176622_ + static + 0 o p_176623_ + 1 o p_176624_ + b (Lcml;Lciz;)Llp; m_176710_ + static + 0 o p_176711_ + 1 o p_176712_ + b (Ljava/util/function/Consumer;Lcml;Lanl;I)V m_257424_ + static + 0 o p_259910_ + 1 o p_259193_ + 2 o p_259818_ + 3 o p_259807_ + b (Lcml;)Ljava/lang/String; m_176602_ + static + 0 o p_176603_ + c (Lcml;Lciz;)Llp; m_176658_ + static + 0 o p_176659_ + 1 o p_176660_ + c (Lcml;Lcml;)Llp; m_176637_ + static + 0 o p_176638_ + 1 o p_176639_ + c (Ljava/util/function/Consumer;Lcml;Lcml;)V m_236371_ + static + 0 o p_236372_ + 1 o p_236373_ + 2 o p_236374_ + c (Llq;Lcml;Lciz;)Llp; m_247347_ + static + 0 o p_251447_ + 1 o p_251989_ + 2 o p_249211_ + c (Ljava/util/function/Consumer;Llq;Lcml;Lcml;)V m_246658_ + static + 0 o p_248880_ + 1 o p_251848_ + 2 o p_249368_ + 3 o p_252133_ + c (Lcml;)Ljava/lang/String; m_176632_ + static + 0 o p_176633_ + d (Ljava/util/function/Consumer;Lcml;Lcml;)V m_176690_ + static + 0 o p_176691_ + 1 o p_176692_ + 2 o p_176693_ + d (Ljava/util/function/Consumer;Llq;Lcml;Lcml;)V m_246382_ + static + 0 o p_251034_ + 1 o p_251148_ + 2 o p_250499_ + 3 o p_249970_ + d (Lcml;Lciz;)Llp; m_176678_ + static + 0 o p_176679_ + 1 o p_176680_ + d (Lcml;)Ljava/lang/String; m_176644_ + static + 0 o p_176645_ + d (Lcml;Lcml;)Llp; m_244774_ + static + 0 o p_248019_ + 1 o p_248020_ + d (Llq;Lcml;Lciz;)Llp; m_245864_ + static + 0 o p_249083_ + 1 o p_250754_ + 2 o p_250311_ + e (Ljava/util/function/Consumer;Lcml;Lcml;)V m_246977_ + static + 0 o p_250663_ + 1 o p_252355_ + 2 o p_250437_ + e (Ljava/util/function/Consumer;Llq;Lcml;Lcml;)V m_245931_ + static + 0 o p_251348_ + 1 o p_248719_ + 2 o p_250032_ + 3 o p_250021_ + e (Lcml;)Ljava/lang/String; m_176656_ + static + 0 o p_176657_ + e (Lcml;Lcml;)Llp; m_244783_ + static + 0 o p_248039_ + 1 o p_248040_ + e (Lcml;Lciz;)Llp; m_176684_ + static + 0 o p_176685_ + 1 o p_176686_ + e (Llq;Lcml;Lciz;)Llp; m_247174_ + static + 0 o p_249131_ + 1 o p_251242_ + 2 o p_251412_ + f (Ljava/util/function/Consumer;Llq;Lcml;Lcml;)V m_247059_ + static + 0 o p_248712_ + 1 o p_252306_ + 2 o p_249686_ + 3 o p_251100_ + f (Lcml;Lcml;)Llp; m_176673_ + static + 0 o p_176674_ + 1 o p_176675_ + f (Llq;Lcml;Lciz;)Lls; m_245792_ + static + 0 o p_250895_ + 1 o p_251147_ + 2 o p_251563_ + f (Lcml;Lciz;)Llp; m_176720_ + static + 0 o p_176721_ + 1 o p_176722_ + f (Ljava/util/function/Consumer;Lcml;Lcml;)V m_176716_ + static + 0 o p_176717_ + 1 o p_176718_ + 2 o p_176719_ + f (Lcml;)Ljava/lang/String; m_176668_ + static + 0 o p_176669_ + g (Lcml;)Ljava/lang/String; m_176676_ + static + 0 o p_176677_ + g (Ljava/util/function/Consumer;Lcml;Lcml;)V m_126073_ + static + 0 o p_126074_ + 1 o p_126075_ + 2 o p_126076_ + g (Lcml;Lciz;)Llp; m_176726_ + static + 0 o p_176727_ + 1 o p_176728_ + g (Ljava/util/function/Consumer;Llq;Lcml;Lcml;)V m_246222_ + static + 0 o p_250120_ + 1 o p_251604_ + 2 o p_251049_ + 3 o p_252267_ + g (Lcml;Lcml;)Llp; m_244773_ + static + 0 o p_248017_ + 1 o p_248018_ + h (Lcml;Lcml;)Llp; m_176687_ + static + 0 o p_176688_ + 1 o p_176689_ + h (Ljava/util/function/Consumer;Lcml;Lcml;)V m_126081_ + static + 0 o p_126082_ + 1 o p_126083_ + 2 o p_126084_ + h (Ljava/util/function/Consumer;Llq;Lcml;Lcml;)V m_247239_ + static + 0 o p_249200_ + 1 o p_248788_ + 2 o p_251925_ + 3 o p_252242_ + i (Ljava/util/function/Consumer;Lcml;Lcml;)V m_126085_ + static + 0 o p_126086_ + 1 o p_126087_ + 2 o p_126088_ + i (Lcml;Lcml;)Llp; m_244781_ + static + 0 o p_248035_ + 1 o p_248036_ + i (Ljava/util/function/Consumer;Llq;Lcml;Lcml;)V m_247600_ + static + 0 o p_251589_ + 1 o p_248911_ + 2 o p_251265_ + 3 o p_250033_ + j (Ljava/util/function/Consumer;Lcml;Lcml;)V m_126089_ + static + 0 o p_126090_ + 1 o p_126091_ + 2 o p_126092_ + j (Lcml;Lcml;)Llp; m_176697_ + static + 0 o p_176698_ + 1 o p_176699_ + k (Lcml;Lcml;)Llp; m_244779_ + static + 0 o p_248031_ + 1 o p_248032_ + k (Ljava/util/function/Consumer;Lcml;Lcml;)V m_126093_ + static + 0 o p_126094_ + 1 o p_126095_ + 2 o p_126096_ + l (Lcml;Lcml;)Llp; m_176707_ + static + 0 o p_176708_ + 1 o p_176709_ + l (Ljava/util/function/Consumer;Lcml;Lcml;)V m_126097_ + static + 0 o p_126098_ + 1 o p_126099_ + 2 o p_126100_ + m (Ljava/util/function/Consumer;Lcml;Lcml;)V m_126101_ + static + 0 o p_126102_ + 1 o p_126103_ + 2 o p_126104_ + m (Lcml;Lcml;)Llp; m_176713_ + static + 0 o p_176714_ + 1 o p_176715_ + n (Lcml;Lcml;)Llp; m_244777_ + static + 0 o p_248026_ + 1 o p_248027_ + n (Ljava/util/function/Consumer;Lcml;Lcml;)V m_176542_ + static + 0 o p_176543_ + 1 o p_176544_ + 2 o p_176545_ + o (Lcml;Lcml;)Llp; m_244782_ + static + 0 o p_248037_ + 1 o p_248038_ + o (Ljava/util/function/Consumer;Lcml;Lcml;)V m_266438_ + static + 0 o p_266734_ + 1 o p_267133_ + 2 o p_267023_ + p (Ljava/util/function/Consumer;Lcml;Lcml;)V m_176739_ + static + 0 o p_176740_ + 1 o p_176741_ + 2 o p_176742_ + p (Lcml;Lcml;)Llp; m_176732_ + static + 0 o p_176733_ + 1 o p_176734_ +ls net/minecraft/data/recipes/ShapedRecipeBuilder + b f_243672_ + c f_126106_ + d f_126107_ + e f_126108_ + f f_126109_ + g f_126110_ + h f_126111_ + i f_271093_ + (Llq;Lcml;I)V + 0 o p_249996_ + 1 o p_251475_ + 2 o p_248948_ + a (Ljava/util/function/Consumer;Lacq;)V m_126140_ + 0 o p_126141_ + 1 o p_126142_ + a (Ljava/lang/String;)Llp; m_126145_ + 0 o p_176749_ + a (Llq;Lcml;I)Lls; m_246608_ + static + 0 o p_251325_ + 1 o p_250636_ + 2 o p_249081_ + a (Ljava/lang/String;Lam;)Llp; m_126132_ + 0 o p_176751_ + 1 o p_176752_ + a ()Lcfu; m_142372_ + a (Ljava/lang/Character;Lanl;)Lls; m_206416_ + 0 o p_206417_ + 1 o p_206418_ + a (Ljava/lang/Character;Lcml;)Lls; m_126127_ + 0 o p_126128_ + 1 o p_126129_ + a (Llq;Lcml;)Lls; m_245327_ + static + 0 o p_250853_ + 1 o p_249747_ + a (Lacq;)V m_126143_ + 0 o p_126144_ + a (Z)Lls; m_271710_ + 0 o p_273326_ + a (Ljava/lang/Character;Lciz;)Lls; m_126124_ + 0 o p_126125_ + 1 o p_126126_ + b (Ljava/lang/String;Lam;)Lls; m_126132_ + 0 o p_126133_ + 1 o p_126134_ + b (Ljava/lang/String;)Lls; m_126130_ + 0 o p_126131_ + c (Ljava/lang/String;)Lls; m_126145_ + 0 o p_126146_ +ls$a net/minecraft/data/recipes/ShapedRecipeBuilder$Result + a f_126148_ + b f_126149_ + c f_126150_ + d f_126151_ + e f_126152_ + f f_126153_ + g f_126154_ + h f_126155_ + i f_271297_ + (Lacq;Lcfu;ILjava/lang/String;Lcis;Ljava/util/List;Ljava/util/Map;Lae$a;Lacq;Z)V + 0 o p_273548_ + 1 o p_273530_ + 2 o p_272738_ + 3 o p_273549_ + 4 o p_273500_ + 5 o p_273744_ + 6 o p_272991_ + 7 o p_273260_ + 8 o p_273106_ + 9 o p_272862_ + a (Lcom/google/gson/JsonObject;)V m_7917_ + 0 o p_126167_ + b ()Lacq; m_6445_ + c ()Lcje; m_6637_ + d ()Lcom/google/gson/JsonObject; m_5860_ + e ()Lacq; m_6448_ +lt net/minecraft/data/recipes/ShapelessRecipeBuilder + b f_244182_ + c f_126173_ + d f_126174_ + e f_126175_ + f f_126176_ + g f_126177_ + (Llq;Lcml;I)V + 0 o p_250837_ + 1 o p_251897_ + 2 o p_252227_ + a (Llq;Lcml;I)Llt; m_246517_ + static + 0 o p_252339_ + 1 o p_250836_ + 2 o p_249928_ + a (Ljava/util/function/Consumer;Lacq;)V m_126140_ + 0 o p_126205_ + 1 o p_126206_ + a (Ljava/lang/String;)Llp; m_126145_ + 0 o p_176779_ + a (Ljava/lang/String;Lam;)Llp; m_126132_ + 0 o p_176781_ + 1 o p_176782_ + a (Lciz;I)Llt; m_126186_ + 0 o p_126187_ + 1 o p_126188_ + a ()Lcfu; m_142372_ + a (Lanl;)Llt; m_206419_ + 0 o p_206420_ + a (Lciz;)Llt; m_126184_ + 0 o p_126185_ + a (Llq;Lcml;)Llt; m_245498_ + static + 0 o p_250714_ + 1 o p_249659_ + a (Lcml;I)Llt; m_126211_ + 0 o p_126212_ + 1 o p_126213_ + a (Lacq;)V m_126207_ + 0 o p_126208_ + b (Lcml;)Llt; m_126209_ + 0 o p_126210_ + b (Ljava/lang/String;Lam;)Llt; m_126132_ + 0 o p_126197_ + 1 o p_126198_ + b (Ljava/lang/String;)Llt; m_126145_ + 0 o p_126195_ +lt$a net/minecraft/data/recipes/ShapelessRecipeBuilder$Result + a f_126214_ + b f_126215_ + c f_126216_ + d f_126217_ + e f_126218_ + f f_126219_ + g f_126220_ + (Lacq;Lcfu;ILjava/lang/String;Lcis;Ljava/util/List;Lae$a;Lacq;)V + 0 o p_249007_ + 1 o p_248667_ + 2 o p_249014_ + 3 o p_248592_ + 4 o p_249485_ + 5 o p_252312_ + 6 o p_249909_ + 7 o p_249109_ + a (Lcom/google/gson/JsonObject;)V m_7917_ + 0 o p_126230_ + b ()Lacq; m_6445_ + c ()Lcje; m_6637_ + d ()Lcom/google/gson/JsonObject; m_5860_ + e ()Lacq; m_6448_ +lu net/minecraft/data/recipes/SimpleCookingRecipeBuilder + b f_244246_ + c f_244540_ + d f_126235_ + e f_126236_ + f f_126237_ + g f_126238_ + h f_126239_ + i f_126240_ + j f_126241_ + (Llq;Lcir;Lcml;Lciz;FILcje;)V + 0 o p_251345_ + 1 o p_251607_ + 2 o p_252112_ + 3 o p_250362_ + 4 o p_251204_ + 5 o p_250189_ + 6 o p_249915_ + a (Ljava/util/function/Consumer;Lacq;)V m_126140_ + 0 o p_126263_ + 1 o p_126264_ + a (Ljava/lang/String;)Llp; m_126145_ + 0 o p_176790_ + a (Ljava/lang/String;Lam;)Llp; m_126132_ + 0 o p_176792_ + 1 o p_176793_ + a (Lciz;Llq;Lcml;FI)Llu; m_247020_ + static + 0 o p_249393_ + 1 o p_249372_ + 2 o p_251516_ + 3 o p_252321_ + 4 o p_251916_ + a ()Lcfu; m_142372_ + a (Lciz;Llq;Lcml;FILcje;)Llu; m_247607_ + static + 0 o p_250999_ + 1 o p_248815_ + 2 o p_249766_ + 3 o p_251320_ + 4 o p_248693_ + 5 o p_250921_ + a (Lcje;Lcml;)Lcir; m_246784_ + static + 0 o p_251261_ + 1 o p_249582_ + a (Lacq;)V m_126265_ + 0 o p_126266_ + b (Ljava/lang/String;Lam;)Llu; m_126132_ + 0 o p_126255_ + 1 o p_126256_ + b (Lcml;)Lcir; m_247292_ + static + 0 o p_251938_ + b (Ljava/lang/String;)Llu; m_126145_ + 0 o p_176795_ + b (Lciz;Llq;Lcml;FI)Llu; m_245681_ + static + 0 o p_252115_ + 1 o p_249421_ + 2 o p_251247_ + 3 o p_250383_ + 4 o p_250476_ + c (Lciz;Llq;Lcml;FI)Llu; m_246179_ + static + 0 o p_249223_ + 1 o p_251240_ + 2 o p_249551_ + 3 o p_249452_ + 4 o p_250496_ + c (Lcml;)Lcir; m_246122_ + static + 0 o p_249047_ + d (Lciz;Llq;Lcml;FI)Llu; m_246159_ + static + 0 o p_248930_ + 1 o p_250319_ + 2 o p_250377_ + 3 o p_252329_ + 4 o p_250482_ +lu$a net/minecraft/data/recipes/SimpleCookingRecipeBuilder$Result + a f_126277_ + b f_126278_ + c f_244427_ + d f_126279_ + e f_126280_ + f f_126281_ + g f_126282_ + h f_126283_ + i f_126284_ + j f_126285_ + (Lacq;Ljava/lang/String;Lcir;Lciz;Lcfu;FILae$a;Lacq;Lcje;)V + 0 o p_252275_ + 1 o p_248665_ + 2 o p_251944_ + 3 o p_249473_ + 4 o p_252028_ + 5 o p_249206_ + 6 o p_251002_ + 7 o p_249151_ + 8 o p_252090_ + 9 o p_249537_ + a (Lcom/google/gson/JsonObject;)V m_7917_ + 0 o p_126297_ + b ()Lacq; m_6445_ + c ()Lcje; m_6637_ + d ()Lcom/google/gson/JsonObject; m_5860_ + e ()Lacq; m_6448_ +lv net/minecraft/data/recipes/SingleItemRecipeBuilder + b f_244239_ + c f_126302_ + d f_126303_ + e f_126304_ + f f_126305_ + g f_126306_ + h f_126307_ + (Llq;Lcje;Lciz;Lcml;I)V + 0 o p_251425_ + 1 o p_249762_ + 2 o p_251221_ + 3 o p_251302_ + 4 o p_250964_ + a (Ljava/util/function/Consumer;Lacq;)V m_126140_ + 0 o p_126327_ + 1 o p_126328_ + a (Ljava/lang/String;)Llp; m_126145_ + 0 o p_176803_ + a (Ljava/lang/String;Lam;)Llp; m_126132_ + 0 o p_176805_ + 1 o p_176806_ + a (Lciz;Llq;Lcml;)Llv; m_245264_ + static + 0 o p_248596_ + 1 o p_250503_ + 2 o p_250269_ + a (Lacq;)V m_126329_ + 0 o p_126330_ + a ()Lcfu; m_142372_ + a (Lciz;Llq;Lcml;I)Llv; m_246944_ + static + 0 o p_251375_ + 1 o p_248984_ + 2 o p_250105_ + 3 o p_249506_ + b (Ljava/lang/String;Lam;)Llv; m_126132_ + 0 o p_176810_ + 1 o p_176811_ + b (Ljava/lang/String;)Llv; m_126145_ + 0 o p_176808_ +lv$a net/minecraft/data/recipes/SingleItemRecipeBuilder$Result + a f_126331_ + b f_126332_ + c f_126333_ + d f_126334_ + e f_126335_ + f f_126336_ + g f_126337_ + h f_126338_ + (Lacq;Lcje;Ljava/lang/String;Lciz;Lcfu;ILae$a;Lacq;)V + 0 o p_126340_ + 1 o p_126341_ + 2 o p_126342_ + 3 o p_126343_ + 4 o p_126344_ + 5 o p_126345_ + 6 o p_126346_ + 7 o p_126347_ + a (Lcom/google/gson/JsonObject;)V m_7917_ + 0 o p_126349_ + b ()Lacq; m_6445_ + c ()Lcje; m_6637_ + d ()Lcom/google/gson/JsonObject; m_5860_ + e ()Lacq; m_6448_ +lw net/minecraft/data/recipes/SmithingTransformRecipeBuilder + a f_266030_ + b f_265893_ + c f_265959_ + d f_266018_ + e f_266005_ + f f_266090_ + g f_266006_ + (Lcje;Lciz;Lciz;Lciz;Llq;Lcfu;)V + 0 o p_266683_ + 1 o p_266973_ + 2 o p_267047_ + 3 o p_267009_ + 4 o p_266694_ + 5 o p_267183_ + a (Ljava/util/function/Consumer;Lacq;)V m_266371_ + 0 o p_267089_ + 1 o p_267287_ + a (Ljava/util/function/Consumer;Ljava/lang/String;)V m_266260_ + 0 o p_267068_ + 1 o p_267035_ + a (Lciz;Lciz;Lciz;Llq;Lcfu;)Llw; m_266555_ + static + 0 o p_267071_ + 1 o p_266959_ + 2 o p_266803_ + 3 o p_266757_ + 4 o p_267256_ + a (Lacq;)V m_266305_ + 0 o p_267259_ + a (Ljava/lang/String;Lam;)Llw; m_266439_ + 0 o p_266919_ + 1 o p_267277_ +lw$a net/minecraft/data/recipes/SmithingTransformRecipeBuilder$Result + a f_266011_ + b f_265962_ + c f_266002_ + d f_266112_ + e f_265903_ + f f_265972_ + g f_265855_ + h f_266094_ + (Lacq;Lcje;Lciz;Lciz;Lciz;Lcfu;Lae$a;Lacq;)V + 0 o f_266011_ + 1 o f_265962_ + 2 o f_266002_ + 3 o f_266112_ + 4 o f_265903_ + 5 o f_265972_ + 6 o f_265855_ + 7 o f_266094_ + a (Lcom/google/gson/JsonObject;)V m_7917_ + 0 o p_266713_ + b ()Lacq; m_6445_ + c ()Lcje; m_6637_ + d ()Lcom/google/gson/JsonObject; m_5860_ + e ()Lacq; m_6448_ + equals (Ljava/lang/Object;)Z equals + 0 o p_267082_ + f ()Lacq; f_266011_ + g ()Lcje; f_265962_ + h ()Lciz; f_266002_ + hashCode ()I hashCode + i ()Lciz; f_266112_ + j ()Lciz; f_265903_ + k ()Lcfu; f_265972_ + l ()Lae$a; f_265855_ + m ()Lacq; f_266094_ + toString ()Ljava/lang/String; toString +lx net/minecraft/data/recipes/SmithingTrimRecipeBuilder + a f_266062_ + b f_266051_ + c f_266042_ + d f_266046_ + e f_265957_ + f f_265915_ + (Lcje;Llq;Lciz;Lciz;Lciz;)V + 0 o p_267085_ + 1 o p_267007_ + 2 o p_266712_ + 3 o p_267018_ + 4 o p_267264_ + a (Ljava/util/function/Consumer;Lacq;)V m_266403_ + 0 o p_267231_ + 1 o p_266718_ + a (Lciz;Lciz;Lciz;Llq;)Llx; m_266182_ + static + 0 o p_266812_ + 1 o p_266843_ + 2 o p_267309_ + 3 o p_267269_ + a (Lacq;)V m_266593_ + 0 o p_267040_ + a (Ljava/lang/String;Lam;)Llx; m_266331_ + 0 o p_266882_ + 1 o p_267233_ +lx$a net/minecraft/data/recipes/SmithingTrimRecipeBuilder$Result + a f_265963_ + b f_266055_ + c f_265865_ + d f_266032_ + e f_266016_ + f f_265961_ + g f_265882_ + (Lacq;Lcje;Lciz;Lciz;Lciz;Lae$a;Lacq;)V + 0 o f_265963_ + 1 o f_266055_ + 2 o f_265865_ + 3 o f_266032_ + 4 o f_266016_ + 5 o f_265961_ + 6 o f_265882_ + a (Lcom/google/gson/JsonObject;)V m_7917_ + 0 o p_267008_ + b ()Lacq; m_6445_ + c ()Lcje; m_6637_ + d ()Lcom/google/gson/JsonObject; m_5860_ + e ()Lacq; m_6448_ + equals (Ljava/lang/Object;)Z equals + 0 o p_267306_ + f ()Lacq; f_265963_ + g ()Lcje; f_266055_ + h ()Lciz; f_265865_ + hashCode ()I hashCode + i ()Lciz; f_266032_ + j ()Lciz; f_266016_ + k ()Lae$a; f_265961_ + l ()Lacq; f_265882_ + toString ()Ljava/lang/String; toString +ly net/minecraft/data/recipes/SpecialRecipeBuilder + a f_126354_ + (Lcje;)V + 0 o p_250173_ + a (Ljava/util/function/Consumer;Ljava/lang/String;)V m_126359_ + 0 o p_126360_ + 1 o p_126361_ + a (Lcje;)Lly; m_245676_ + static + 0 o p_249458_ +ly$1 net/minecraft/data/recipes/SpecialRecipeBuilder$1 + a f_126364_ + b f_126365_ + (Lly;Lcis;Ljava/lang/String;)V + 0 o p_248591_ + 1 o p_250250_ + 2 o p_252223_ + b ()Lacq; m_6445_ + c ()Lcje; m_6637_ + d ()Lcom/google/gson/JsonObject; m_5860_ + e ()Lacq; m_6448_ +lz net/minecraft/data/recipes/package-info +m net/minecraft/CharPredicate + a (Lm;C)Z m_178288_ + 0 o p_178289_ + 1 o p_178290_ + a (C)Z m_178284_ + 0 o p_178285_ + and (Lm;)Lm; m_178286_ + 0 o p_178287_ + b (Lm;C)Z m_178293_ + 0 o p_178294_ + 1 o p_178295_ + negate ()Lm; m_178283_ + or (Lm;)Lm; m_178291_ + 0 o p_178292_ + test (C)Z m_125854_ + 0 o p_125855_ +ma net/minecraft/data/recipes/packs/BundleRecipeProvider + (Ljk;)V + 0 o p_248813_ + a (Ljava/util/function/Consumer;)V m_245200_ + 0 o p_250665_ +mb net/minecraft/data/recipes/packs/VanillaRecipeProvider + d f_243671_ + e f_243779_ + f f_243908_ + g f_244369_ + h f_243974_ + i f_244628_ + j f_244565_ + k f_244430_ + ()V + static + (Ljk;)V + 0 o p_250820_ + a (Ljava/util/function/Consumer;)V m_245200_ + 0 o p_250804_ + a (Ljg;)Ljava/util/concurrent/CompletableFuture; m_213708_ + 0 o p_254376_ + a (Lcfu;)Lacq; m_284166_ + static + 0 o p_285117_ + b (Ljava/util/function/Consumer;Lcfu;Lacq;)V m_284142_ + static + 0 o p_285006_ + 1 o p_285340_ + 2 o p_285087_ + b ()Ljava/util/Map; m_284239_ + static +mc net/minecraft/data/recipes/packs/package-info +md net/minecraft/data/registries/RegistriesDatapackGenerator + d f_254654_ + e f_254743_ + f f_254747_ + ()V + static + (Ljk;Ljava/util/concurrent/CompletableFuture;)V + 0 o p_256643_ + 1 o p_255780_ + a (Ljg;)Ljava/util/concurrent/CompletableFuture; m_213708_ + 0 o p_255785_ + a ()Ljava/lang/String; m_6055_ + a (Ljg;Lhg$b;)Ljava/util/concurrent/CompletionStage; m_254950_ + 0 o p_256324_ + 1 o p_256533_ + a (Ljava/nio/file/Path;Ljg;Lcom/mojang/serialization/DynamicOps;Lcom/mojang/serialization/Encoder;Ljava/lang/Object;)Ljava/util/concurrent/CompletableFuture; m_255283_ + static + 0 o p_255678_ + 1 o p_256438_ + 2 o p_256127_ + 3 o p_255938_ + 4 o p_256590_ + a (Lacp;Ljg;Lcom/mojang/serialization/DynamicOps;Lacl$b;Lhg$c;)Ljava/util/concurrent/CompletableFuture; m_255115_ + 0 o p_255736_ + 1 o p_256185_ + 2 o p_256612_ + 3 o p_255878_ + 4 o p_255847_ + a (Ljg;Lhg$b;Lcom/mojang/serialization/DynamicOps;Lacl$b;)Ljava/util/Optional; m_254918_ + 0 o p_256502_ + 1 o p_256492_ + 2 o p_256000_ + 3 o p_256449_ + a (Ljava/nio/file/Path;Ljava/lang/String;)V m_254960_ + static + 0 o p_255753_ + 1 o p_255999_ + a (Ljk$a;Ljg;Lcom/mojang/serialization/DynamicOps;Lacl$b;Lhe$c;)Ljava/util/concurrent/CompletableFuture; m_255356_ + static + 0 o p_255912_ + 1 o p_256375_ + 2 o p_255693_ + 3 o p_256391_ + 4 o p_256105_ + a (I)[Ljava/util/concurrent/CompletableFuture; m_255177_ + static + 0 o p_256279_ + b (Ljg;Lhg$b;Lcom/mojang/serialization/DynamicOps;Lacl$b;)Ljava/util/stream/Stream; m_255291_ + 0 o p_256268_ + 1 o p_255716_ + 2 o p_256543_ + 3 o p_256552_ + b (I)[Ljava/util/concurrent/CompletableFuture; m_255112_ + static + 0 o p_255809_ +me net/minecraft/data/registries/VanillaRegistries + a f_254635_ + ()V + static + ()V + a ()Lhg$b; m_255371_ + static + a (Lhf;Lhg;)V m_271867_ + static + 0 o p_272963_ + 1 o p_273693_ + a (Lhg$b;)V m_255148_ + static + 0 o p_256242_ + a (Lhf;Lacq;Lhe$c;Lhe;)V m_255044_ + static + 0 o p_256473_ + 1 o p_256452_ + 2 o p_256196_ + 3 o p_256657_ + a (Lhe$c;Ldre;)V m_255281_ + static + 0 o p_256437_ + 1 o p_256575_ + a (Lhf;Lacq;Lacp;)V m_254911_ + static + 0 o p_255918_ + 1 o p_255980_ + 2 o p_256188_ + a (Ldre;)Z m_254975_ + static + 0 o p_255656_ + a (Lhf;Lhe$c;)V m_254994_ + static + 0 o p_256071_ + 1 o p_256326_ +mf net/minecraft/data/registries/package-info +mg net/minecraft/data/structures/NbtToSnbt + d f_126421_ + e f_243763_ + f f_243685_ + ()V + static + (Ljk;Ljava/util/Collection;)V + 0 o p_250442_ + 1 o p_249158_ + a (Ljg;Ljava/nio/file/Path;Ljava/nio/file/Path;Ljava/nio/file/Path;)Ljava/util/concurrent/CompletableFuture; m_252627_ + static + 0 o p_253415_ + 1 o p_253416_ + 2 o p_253417_ + 3 o p_253418_ + a (Ljg;)Ljava/util/concurrent/CompletableFuture; m_213708_ + 0 o p_254274_ + a ()Ljava/lang/String; m_6055_ + a (Ljava/util/concurrent/CompletableFuture;)Ljava/util/concurrent/CompletionStage; m_252629_ + static + 0 o p_253420_ + a (Ljava/nio/file/Path;Ljava/nio/file/Path;)Ljava/lang/String; m_126435_ + static + 0 o p_126436_ + 1 o p_126437_ + a (Ljg;Ljava/nio/file/Path;Ljava/lang/String;Ljava/nio/file/Path;)Ljava/nio/file/Path; m_236381_ + static + 0 o p_236382_ + 1 o p_236383_ + 2 o p_236384_ + 3 o p_236385_ + a (Ljava/nio/file/Path;Ljg;Ljava/nio/file/Path;)Ljava/util/concurrent/CompletableFuture; m_252631_ + static + 0 o p_253422_ + 1 o p_253423_ + 2 o p_253424_ + a (Ljg;Ljava/nio/file/Path;Ljava/lang/String;)V m_236377_ + static + 0 o p_236378_ + 1 o p_236379_ + 2 o p_236380_ + a (I)[Ljava/util/concurrent/CompletableFuture; m_252630_ + static + 0 o p_253421_ + a (Ljava/nio/file/Path;)Z m_126429_ + static + 0 o p_126430_ + b (Ljg;Ljava/nio/file/Path;Ljava/nio/file/Path;Ljava/nio/file/Path;)V m_252632_ + static + 0 o p_253425_ + 1 o p_253426_ + 2 o p_253427_ + 3 o p_253428_ + b (I)[Ljava/util/concurrent/CompletableFuture; m_252628_ + static + 0 o p_253419_ +mh net/minecraft/data/structures/SnbtToNbt + d f_176815_ + e f_126443_ + f f_243879_ + g f_244258_ + h f_126445_ + ()V + static + (Ljk;Ljava/lang/Iterable;)V + 0 o p_249104_ + 1 o p_249523_ + a (Ljava/lang/String;Lqr;)Lqr; m_126460_ + 0 o p_126461_ + 1 o p_126462_ + a (Ljava/nio/file/Path;Ljg;Ljava/nio/file/Path;Ljava/nio/file/Path;)Ljava/util/concurrent/CompletableFuture; m_252633_ + 0 o p_253429_ + 1 o p_253430_ + 2 o p_253431_ + 3 o p_253432_ + a (Ljg;Lmh$c;Ljava/nio/file/Path;)V m_236393_ + 0 o p_236394_ + 1 o p_236395_ + 2 o p_236396_ + a (Lmh$a;)Lmh; m_126475_ + 0 o p_126476_ + a (Ljg;)Ljava/util/concurrent/CompletableFuture; m_213708_ + 0 o p_254336_ + a ()Ljava/lang/String; m_6055_ + a (Ljava/nio/file/Path;Ljava/lang/String;)Lmh$c; m_126465_ + 0 o p_126466_ + 1 o p_126467_ + a (Ljava/util/concurrent/CompletableFuture;)Ljava/util/concurrent/CompletionStage; m_252637_ + static + 0 o p_253441_ + a (Ljava/nio/file/Path;Ljava/nio/file/Path;)Ljava/lang/String; m_126468_ + 0 o p_126469_ + 1 o p_126470_ + a (Ljava/nio/file/Path;Ljg;Ljava/nio/file/Path;)Ljava/util/concurrent/CompletableFuture; m_252635_ + 0 o p_253434_ + 1 o p_253435_ + 2 o p_253436_ + a (I)[Ljava/util/concurrent/CompletableFuture; m_252634_ + static + 0 o p_253433_ + a (Ljava/nio/file/Path;Ljava/nio/file/Path;Ljg;Ljava/nio/file/Path;)V m_252636_ + 0 o p_253437_ + 1 o p_253438_ + 2 o p_253439_ + 3 o p_253440_ + a (Ljava/nio/file/Path;)Z m_126463_ + static + 0 o p_126464_ +mh$a net/minecraft/data/structures/SnbtToNbt$Filter + apply (Ljava/lang/String;Lqr;)Lqr; m_6392_ + 0 o p_126480_ + 1 o p_126481_ +mh$b net/minecraft/data/structures/SnbtToNbt$StructureConversionException + (Ljava/nio/file/Path;Ljava/lang/Throwable;)V + 0 o p_176820_ + 1 o p_176821_ +mh$c net/minecraft/data/structures/SnbtToNbt$TaskResult + a f_126482_ + b f_126483_ + c f_126484_ + d f_126485_ + (Ljava/lang/String;[BLjava/lang/String;Lcom/google/common/hash/HashCode;)V + 0 o f_126482_ + 1 o f_126483_ + 2 o f_126484_ + 3 o f_126485_ + a ()Ljava/lang/String; f_126482_ + b ()[B f_126483_ + c ()Ljava/lang/String; f_126484_ + d ()Lcom/google/common/hash/HashCode; f_126485_ + equals (Ljava/lang/Object;)Z equals + 0 o p_236407_ + hashCode ()I hashCode + toString ()Ljava/lang/String; toString +mi net/minecraft/data/structures/StructureUpdater + a f_126499_ + ()V + static + ()V + a (Ljava/lang/String;Lqr;)Lqr; m_176822_ + static + 0 o p_176823_ + 1 o p_176824_ + apply (Ljava/lang/String;Lqr;)Lqr; m_6392_ + 0 o p_126503_ + 1 o p_126504_ +mj net/minecraft/data/structures/package-info +mk net/minecraft/data/tags/BannerPatternTagsProvider + (Ljk;Ljava/util/concurrent/CompletableFuture;)V + 0 o p_256451_ + 1 o p_256420_ + a (Lhg$b;)V m_6577_ + 0 o p_255819_ +ml net/minecraft/data/tags/BiomeTagsProvider + (Ljk;Ljava/util/concurrent/CompletableFuture;)V + 0 o p_255800_ + 1 o p_256205_ + a (Lhg$b;)V m_6577_ + 0 o p_256485_ +mm net/minecraft/data/tags/CatVariantTagsProvider + (Ljk;Ljava/util/concurrent/CompletableFuture;)V + 0 o p_256547_ + 1 o p_256090_ + a (Lhg$b;)V m_6577_ + 0 o p_256078_ +mn net/minecraft/data/tags/DamageTypeTagsProvider + (Ljk;Ljava/util/concurrent/CompletableFuture;)V + 0 o p_270719_ + 1 o p_270256_ + a (Lhg$b;)V m_6577_ + 0 o p_270108_ +mo net/minecraft/data/tags/EntityTypeTagsProvider + (Ljk;Ljava/util/concurrent/CompletableFuture;)V + 0 o p_256095_ + 1 o p_256572_ + a (Lhg$b;)V m_6577_ + 0 o p_255894_ + a (Lbfn;)Lacp; m_255200_ + static + 0 o p_256665_ +mp net/minecraft/data/tags/FlatLevelGeneratorPresetTagsProvider + (Ljk;Ljava/util/concurrent/CompletableFuture;)V + 0 o p_256604_ + 1 o p_255962_ + a (Lhg$b;)V m_6577_ + 0 o p_255741_ +mq net/minecraft/data/tags/FluidTagsProvider + (Ljk;Ljava/util/concurrent/CompletableFuture;)V + 0 o p_255941_ + 1 o p_256600_ + a (Lhg$b;)V m_6577_ + 0 o p_256366_ + a (Ldxd;)Lacp; m_255019_ + static + 0 o p_256474_ +mr net/minecraft/data/tags/GameEventTagsProvider + d f_236425_ + ()V + static + (Ljk;Ljava/util/concurrent/CompletableFuture;)V + 0 o p_256060_ + 1 o p_255621_ + a (Ldgl;)Lacp; m_255151_ + static + 0 o p_256368_ + a (Lhg$b;)V m_6577_ + 0 o p_255981_ +ms net/minecraft/data/tags/InstrumentTagsProvider + (Ljk;Ljava/util/concurrent/CompletableFuture;)V + 0 o p_256418_ + 1 o p_256038_ + a (Lhg$b;)V m_6577_ + 0 o p_256291_ +mt net/minecraft/data/tags/IntrinsicHolderTagsProvider + d f_254687_ + (Ljk;Lacp;Ljava/util/concurrent/CompletableFuture;Ljava/util/concurrent/CompletableFuture;Ljava/util/function/Function;)V + 0 o p_275304_ + 1 o p_275709_ + 2 o p_275227_ + 3 o p_275311_ + 4 o p_275566_ + (Ljk;Lacp;Ljava/util/concurrent/CompletableFuture;Ljava/util/function/Function;)V + 0 o p_256164_ + 1 o p_256155_ + 2 o p_256488_ + 3 o p_256168_ + a (Lanl;)Lmt$a; m_206424_ + 0 o p_255730_ + b (Lanl;)Lmy$b; m_206424_ + 0 o p_255793_ +mt$a net/minecraft/data/tags/IntrinsicHolderTagsProvider$IntrinsicTagAppender + a f_254707_ + (Lani;Ljava/util/function/Function;)V + 0 o p_256108_ + 1 o p_256433_ + a (Ljava/lang/Object;)Lmt$a; m_255245_ + 0 o p_256557_ + a (Lanl;)Lmt$a; m_206428_ + 0 o p_256311_ + a ([Ljava/lang/Object;)Lmt$a; m_255179_ + 0 o p_255868_ + b (Lanl;)Lmy$b; m_206428_ + 0 o p_256651_ +mu net/minecraft/data/tags/ItemTagsProvider + d f_126528_ + g f_273814_ + (Ljk;Ljava/util/concurrent/CompletableFuture;Ljava/util/concurrent/CompletableFuture;)V + 0 o p_275343_ + 1 o p_275729_ + 2 o p_275322_ + (Ljk;Ljava/util/concurrent/CompletableFuture;Ljava/util/concurrent/CompletableFuture;Ljava/util/concurrent/CompletableFuture;)V + 0 o p_275204_ + 1 o p_275194_ + 2 o p_275207_ + 3 o p_275634_ + a (Lhg$b;Lmy$c;)Lhg$b; m_274039_ + 0 o p_274766_ + 1 o p_274767_ + a (Lmy$c;Lanl;Lanl;)V m_274037_ + 0 o p_274762_ + 1 o p_274763_ + 2 o p_274764_ + a (Lanl;Lanl;)V m_206421_ + 0 o p_206422_ + 1 o p_206423_ + a (Lcfu;)Lacp; m_274038_ + static + 0 o p_274765_ + b (Lcfu;)Lacp; m_255417_ + static + 0 o p_255790_ + b ()Ljava/util/concurrent/CompletableFuture; m_274574_ + d (Lanl;)Ljava/lang/IllegalStateException; m_274036_ + static + 0 o p_274761_ +mv net/minecraft/data/tags/PaintingVariantTagsProvider + (Ljk;Ljava/util/concurrent/CompletableFuture;)V + 0 o p_255750_ + 1 o p_256184_ + a (Lhg$b;)V m_6577_ + 0 o p_256017_ +mw net/minecraft/data/tags/PoiTypeTagsProvider + (Ljk;Ljava/util/concurrent/CompletableFuture;)V + 0 o p_256012_ + 1 o p_256617_ + a (Lhg$b;)V m_6577_ + 0 o p_256206_ +mx net/minecraft/data/tags/StructureTagsProvider + (Ljk;Ljava/util/concurrent/CompletableFuture;)V + 0 o p_256522_ + 1 o p_256661_ + a (Lhg$b;)V m_6577_ + 0 o p_256087_ +my net/minecraft/data/tags/TagsProvider + d f_126541_ + e f_236439_ + f f_254716_ + g f_275752_ + h f_275754_ + i f_273855_ + j f_126543_ + ()V + static + (Ljk;Lacp;Ljava/util/concurrent/CompletableFuture;)V + 0 o p_256596_ + 1 o p_255886_ + 2 o p_256513_ + (Ljk;Lacp;Ljava/util/concurrent/CompletableFuture;Ljava/util/concurrent/CompletableFuture;)V + 0 o p_275432_ + 1 o p_275476_ + 2 o p_275222_ + 3 o p_275565_ + a (Lanl;)Ljava/util/Optional; m_274042_ + 0 o p_274772_ + a (Ljg;)Ljava/util/concurrent/CompletableFuture; m_213708_ + 0 o p_253684_ + a (Lmy$a;Lacq;)Z m_274044_ + 0 o p_274775_ + 1 o p_274776_ + a (Lhg$c;Lacq;)Z m_254780_ + 0 o p_255495_ + 1 o p_255496_ + a ()Ljava/lang/String; m_6055_ + a (Lacq;)Lani; m_236441_ + static + 0 o p_236442_ + a (Ljg;Lmy$a;)Ljava/util/concurrent/CompletionStage; m_274043_ + 0 o p_274773_ + 1 o p_274774_ + a (Lhg$b;)V m_6577_ + 0 o p_256380_ + a (Ljava/lang/Void;)Lmy$c; m_274045_ + 0 o p_276016_ + a (Lhg$b;Lmy$c;)Lmy$a; m_274046_ + static + 0 o p_274778_ + 1 o p_274779_ + a (Ljava/util/function/Predicate;Ljava/util/function/Predicate;Lanj;)Z m_274041_ + static + 0 o p_274769_ + 1 o p_274770_ + 2 o p_274771_ + a (I)[Ljava/util/concurrent/CompletableFuture; m_252638_ + static + 0 o p_253442_ + a (Ljava/util/function/Predicate;Ljava/util/function/Predicate;Ljg;Ljava/util/Map$Entry;)Ljava/util/concurrent/CompletableFuture; m_254781_ + 0 o p_255497_ + 1 o p_275481_ + 2 o p_255498_ + 3 o p_255499_ + b ()Ljava/util/concurrent/CompletableFuture; m_274574_ + b (Lanl;)Lmy$b; m_206424_ + 0 o p_206425_ + b (Lhg$b;)Lhg$b; m_274040_ + 0 o p_274768_ + c ()Ljava/util/concurrent/CompletableFuture; m_274426_ + c (Lanl;)Lani; m_236451_ + 0 o p_236452_ + c (Lhg$b;)Lhg$b; m_275785_ + 0 o p_275895_ +my$a net/minecraft/data/tags/TagsProvider$1CombinedData + a f_273893_ + b f_273819_ + (Lhg$b;Lmy$c;)V + 0 o f_273893_ + 1 o f_273819_ + a ()Lhg$b; f_273893_ + b ()Lmy$c; f_273819_ + equals (Ljava/lang/Object;)Z equals + 0 o p_275663_ + hashCode ()I hashCode + toString ()Ljava/lang/String; toString +my$b net/minecraft/data/tags/TagsProvider$TagAppender + a f_126568_ + (Lani;)V + 0 o p_256426_ + a (Lacq;)Lmy$b; m_176839_ + 0 o p_176840_ + a (Lacp;)Lmy$b; m_255204_ + 0 o p_256138_ + a ([Lacp;)Lmy$b; m_211101_ + 0 o p_211102_ + b (Lacq;)Lmy$b; m_176841_ + 0 o p_176842_ + b (Lanl;)Lmy$b; m_206428_ + 0 o p_206429_ +my$c net/minecraft/data/tags/TagsProvider$TagLookup + a (Lanl;)Ljava/util/Optional; m_274467_ + static + 0 o p_275247_ + contains (Lanl;)Z m_274455_ + 0 o p_275413_ + empty ()Lmy$c; m_274566_ + static +mz net/minecraft/data/tags/VanillaBlockTagsProvider + (Ljk;Ljava/util/concurrent/CompletableFuture;)V + 0 o p_256406_ + 1 o p_256525_ + a (Lcpn;)Z m_283987_ + static + 0 o p_284651_ + a (Lhg$b;)V m_6577_ + 0 o p_255662_ + b (Lcpn;)Lacp; m_255382_ + static + 0 o p_255627_ +n net/minecraft/ChatFormatting + A f_126621_ + B f_126622_ + C f_126592_ + D f_126593_ + E f_126594_ + F f_126595_ + G $VALUES + a BLACK + b DARK_BLUE + c DARK_GREEN + d DARK_AQUA + e DARK_RED + f DARK_PURPLE + g GOLD + h GRAY + i DARK_GRAY + j BLUE + k GREEN + l AQUA + m RED + n LIGHT_PURPLE + o YELLOW + p WHITE + q OBFUSCATED + r BOLD + s STRIKETHROUGH + t UNDERLINE + u ITALIC + v RESET + w f_236796_ + x f_178509_ + y f_126619_ + z f_126620_ + ()V + static + (Ljava/lang/String;ILjava/lang/String;CILjava/lang/Integer;)V + 0 o p_126625_ + 1 o p_126626_ + 2 o p_126627_ + 3 o p_126628_ + 4 o p_126629_ + 5 o p_126630_ + (Ljava/lang/String;ILjava/lang/String;CZ)V + 0 o p_126632_ + 1 o p_126633_ + 2 o p_126634_ + 3 o p_126635_ + 4 o p_126636_ + (Ljava/lang/String;ILjava/lang/String;CZILjava/lang/Integer;)V + 0 o p_126638_ + 1 o p_126639_ + 2 o p_126640_ + 3 o p_126641_ + 4 o p_126642_ + 5 o p_126643_ + 6 o p_126644_ + a (I)Ln; m_126647_ + static + 0 o p_126648_ + a ()C m_178510_ + a (Ljava/lang/String;)Ljava/lang/String; m_126649_ + static + 0 o p_126650_ + a (C)Ln; m_126645_ + static + 0 o p_126646_ + a (ZZ)Ljava/util/Collection; m_126653_ + static + 0 o p_126654_ + 1 o p_126655_ + a (Ln;)Ln; m_126651_ + static + 0 o p_126652_ + b (Ljava/lang/String;)Ln; m_126657_ + static + 0 o p_126658_ + b ()I m_126656_ + b (Ln;)Ljava/lang/String; m_126659_ + static + 0 o p_126660_ + c (Ljava/lang/String;)Ljava/lang/String; m_126662_ + static + 0 o p_126663_ + c ()Ljava/lang/String; m_7912_ + d ()Z m_126661_ + e ()Z m_126664_ + f ()Ljava/lang/Integer; m_126665_ + g ()Ljava/lang/String; m_126666_ + h ()[Ln; m_178511_ + static + toString ()Ljava/lang/String; toString + valueOf (Ljava/lang/String;)Ln; valueOf + static + 0 o p_126669_ + values ()[Ln; values + static +na net/minecraft/data/tags/VanillaItemTagsProvider + (Ljk;Ljava/util/concurrent/CompletableFuture;Ljava/util/concurrent/CompletableFuture;)V + 0 o p_275657_ + 1 o p_275712_ + 2 o p_275572_ + a (Lhg$b;)V m_6577_ + 0 o p_255639_ +nb net/minecraft/data/tags/WorldPresetTagsProvider + (Ljk;Ljava/util/concurrent/CompletableFuture;)V + 0 o p_255701_ + 1 o p_255974_ + a (Lhg$b;)V m_6577_ + 0 o p_255734_ +nc net/minecraft/data/tags/package-info +nd net/minecraft/data/worldgen/AncientCityStructurePieces + a f_236459_ + ()V + static + ()V + a (Lnm;)V m_255174_ + static + 0 o p_255893_ +ne net/minecraft/data/worldgen/AncientCityStructurePools + ()V + a (Lnm;)V m_255273_ + static + 0 o p_255672_ +net/minecraft/client/ClientBrandRetriever net/minecraft/client/ClientBrandRetriever + a f_177870_ + ()V + getClientModName ()Ljava/lang/String; getClientModName + static +net/minecraft/client/main/Main net/minecraft/client/main/Main + a f_129630_ + ()V + static + ()V + a (Ljoptsimple/OptionSet;Ljoptsimple/OptionSpec;)Ljava/lang/Object; m_129638_ + static + 0 o p_129639_ + 1 o p_129640_ + a (Ljava/lang/String;)Ljava/util/Optional; m_195486_ + static + 0 o p_195487_ + a (Ljava/lang/Integer;)Ljava/util/OptionalInt; m_129634_ + static + 0 o p_129635_ + b (Ljava/lang/String;)Z m_129636_ + static + 0 o p_129637_ + main ([Ljava/lang/String;)V main + static + 0 o p_129642_ +net/minecraft/client/main/Main$1 net/minecraft/client/main/Main$1 + a f_129643_ + b f_129644_ + (Ljava/lang/String;Ljava/lang/String;)V + 0 o p_129646_ + 1 o p_129647_ + getPasswordAuthentication ()Ljava/net/PasswordAuthentication; getPasswordAuthentication +net/minecraft/client/main/Main$2 net/minecraft/client/main/Main$2 + (Ljava/lang/String;)V + 0 o p_129650_ + run ()V run +net/minecraft/client/main/Main$3 net/minecraft/client/main/Main$3 + a f_129652_ + (Ljava/lang/String;Lenn;)V + 0 o p_129654_ + 1 o p_129655_ + run ()V run +net/minecraft/data/Main net/minecraft/data/Main + ()V + a (Ljava/util/function/BiFunction;Ljava/util/concurrent/CompletableFuture;)Lji$a; m_255400_ + static + 0 o p_256618_ + 1 o p_256515_ + a (Ljk;)Lko; m_252616_ + static + 0 o p_253392_ + a (Ljava/lang/String;)Ljava/nio/file/Path; m_129658_ + static + 0 o p_129659_ + a (Ljava/nio/file/Path;Ljava/util/Collection;ZZZZZLad;Z)Ljh; m_236679_ + static + 0 o p_236680_ + 1 o p_236681_ + 2 o p_236682_ + 3 o p_236683_ + 4 o p_236684_ + 5 o p_236685_ + 6 o p_236686_ + 7 o p_236687_ + 8 o p_236688_ + a (Ljava/util/function/BiFunction;Ljava/util/concurrent/CompletableFuture;Ljk;)Lji; m_254772_ + static + 0 o p_255474_ + 1 o p_255475_ + 2 o p_255476_ + a (Ljava/util/concurrent/CompletableFuture;Lmy;Ljk;)Lna; m_274033_ + static + 0 o p_274751_ + 1 o p_274752_ + 2 o p_274753_ + a (Ljava/util/Collection;Ljk;)Lmg; m_252612_ + static + 0 o p_253385_ + 1 o p_253386_ + b (Ljava/util/Collection;Ljk;)Lmh; m_252613_ + static + 0 o p_253387_ + 1 o p_253388_ + main ([Ljava/lang/String;)V main + static + 0 o p_129669_ +net/minecraft/obfuscate/DontObfuscate net/minecraft/obfuscate/DontObfuscate +net/minecraft/server/Main net/minecraft/server/Main + a f_129670_ + ()V + static + ()V + a (Ldyy$c;Lcom/mojang/datafixers/DataFixer;ZLjava/util/function/BooleanSupplier;Lhr;)V m_195488_ + static + 0 o p_195489_ + 1 o p_195490_ + 2 o p_195491_ + 3 o p_195492_ + 4 o p_250443_ + a (Ldyy$c;Laki;Ladk;Lahg;Ladh;Ljoptsimple/OptionSet;Ljoptsimple/OptionSpec;Ljoptsimple/OptionSpec;Ljoptsimple/OptionSpec;Ljoptsimple/OptionSpec;Ljoptsimple/OptionSpec;Ljoptsimple/OptionSpec;Ljava/lang/Thread;)Lahe; m_236697_ + static + 0 o p_236698_ + 1 o p_236699_ + 2 o p_236700_ + 3 o p_236701_ + 4 o p_236702_ + 5 o p_236703_ + 6 o p_236704_ + 7 o p_236705_ + 8 o p_236706_ + 9 o p_236707_ + 10 o p_236708_ + 11 o p_236709_ + 12 o p_236710_ + a (Ladj$c;Ldyy$c;Ljoptsimple/OptionSet;Ljoptsimple/OptionSpec;Lahg;Ljoptsimple/OptionSpec;Ljava/util/concurrent/Executor;)Ljava/util/concurrent/CompletableFuture; m_244800_ + static + 0 o p_248080_ + 1 o p_248081_ + 2 o p_248082_ + 3 o p_248083_ + 4 o p_248084_ + 5 o p_248085_ + 6 o p_248086_ + a (Lahf;Ldyy$c;ZLaki;)Ladj$c; m_245383_ + static + 0 o p_248563_ + 1 o p_251359_ + 2 o p_249093_ + 3 o p_251069_ + a ()Z m_206518_ + static + a (Ljava/nio/file/Path;)V m_269308_ + static + 0 o p_270192_ + a (Ldyy$c;Ljoptsimple/OptionSet;Ljoptsimple/OptionSpec;Lahg;Ljoptsimple/OptionSpec;Ladj$a;)Ladj$b; m_244799_ + static + 0 o p_248074_ + 1 o p_248075_ + 2 o p_248076_ + 3 o p_248077_ + 4 o p_248078_ + 5 o p_248079_ + main ([Ljava/lang/String;)V main + static + 0 o p_129699_ +net/minecraft/server/Main$1 net/minecraft/server/Main$1 + a f_129700_ + (Ljava/lang/String;Lahe;)V + 0 o p_129702_ + 1 o p_129703_ + run ()V run +net/minecraft/server/MinecraftServer net/minecraft/server/MinecraftServer + A f_129754_ + B f_177873_ + C f_177874_ + D f_177875_ + E f_177876_ + F f_177877_ + G f_129755_ + H f_129756_ + I f_129757_ + J f_271173_ + K f_129758_ + L f_129759_ + M f_129760_ + N f_129761_ + O f_244176_ + P f_129762_ + Q f_129763_ + R f_129764_ + S f_129765_ + T f_129766_ + U f_129705_ + V f_129706_ + W f_129707_ + X f_129708_ + Y f_129709_ + Z f_129711_ + aa f_129712_ + ab f_236719_ + ac f_129714_ + ad f_129717_ + ae f_129718_ + af f_129724_ + ag f_129725_ + ah f_129726_ + ai f_129727_ + aj f_129728_ + ak f_129730_ + al f_129731_ + am f_129732_ + an f_129733_ + ao f_129734_ + ap f_129735_ + aq f_129736_ + ar f_129737_ + as f_129738_ + at f_129739_ + au f_129740_ + av f_236720_ + aw f_195494_ + b f_195495_ + c f_177878_ + d f_177882_ + e f_177883_ + f f_129743_ + g f_195496_ + h f_129744_ + i f_129745_ + j f_129747_ + k f_129748_ + l f_236721_ + m f_129749_ + n f_129750_ + o f_177884_ + p f_177885_ + q f_177887_ + r f_177888_ + s f_177889_ + t f_177890_ + u f_177891_ + v f_177892_ + w f_177893_ + x f_177871_ + y f_129752_ + z f_177872_ + ()V + static + (Ljava/lang/Thread;Ldyy$c;Laki;Ladk;Ljava/net/Proxy;Lcom/mojang/datafixers/DataFixer;Ladh;Laip;)V + 0 o p_236723_ + 1 o p_236724_ + 2 o p_236725_ + 3 o p_236726_ + 4 o p_236727_ + 5 o p_236728_ + 6 o p_236729_ + 7 o p_236730_ + A ()V m_276350_ + B ()Z m_7079_ + C ()Z m_129782_ + D ()Laif; m_129783_ + E ()Ljava/util/Set; m_129784_ + F ()Ljava/lang/Iterable; m_129785_ + G ()Ljava/lang/String; m_7630_ + H ()I m_7416_ + I ()I m_7418_ + J ()[Ljava/lang/String; m_7641_ + K ()Laoz; m_183471_ + L ()Ljava/security/KeyPair; m_129790_ + M ()I m_7010_ + N ()Lcom/mojang/authlib/GameProfile; m_236731_ + N_ ()Z m_6102_ + O ()Z m_129792_ + P ()V m_129793_ + Q ()Z m_7004_ + R ()Z m_129794_ + S ()Ljava/util/Optional; m_214042_ + T ()Z m_142205_ + U ()Z m_129797_ + V ()Z m_129798_ + W ()Z m_6998_ + X ()Z m_6997_ + Y ()Z m_129799_ + Z ()Z m_129915_ + a (Lakn;Lada;Ljava/lang/Throwable;)V m_212917_ + static + 0 o p_238915_ + 1 o p_212907_ + 2 o p_212908_ + a (Lds;)V m_129849_ + 0 o p_129850_ + a (Lhr;)Ljava/util/Optional; m_257134_ + static + 0 o p_258226_ + a (Laki;)Lcma; m_129817_ + static + 0 o p_129818_ + a (Lacp;)Laif; m_129880_ + 0 o p_129881_ + a (Lcmj;ZI)Z m_7386_ + 0 o p_129833_ + 1 o p_129834_ + 2 o p_129835_ + a (Ldze;)V m_129847_ + 0 o p_129848_ + a (Laif;Ldzd;ZZ)V m_177896_ + static + 0 o p_177897_ + 1 o p_177898_ + 2 o p_177899_ + 3 o p_177900_ + a (Z)V m_7570_ + 0 o p_129884_ + a (Lakg;)Ljava/lang/String; m_244801_ + static + 0 o p_248087_ + a (Ljava/util/concurrent/atomic/AtomicReference;)V m_206580_ + static + 0 o p_238920_ + a (Laif;)I m_129803_ + 0 o p_129804_ + a (Lapb$a;)Ljava/lang/String; m_212909_ + static + 0 o p_212910_ + a (Laig;)Lajd; m_7950_ + 0 o p_129814_ + a (Ljava/lang/Throwable;)Lo; m_206568_ + static + 0 o p_206569_ + a (Lcom/mojang/authlib/GameProfile;)Z m_7779_ + 0 o p_129840_ + a (Ljava/lang/Thread;Ljava/lang/Throwable;)V m_177908_ + static + 0 o p_177909_ + 1 o p_177910_ + a (Lhs$b;Lcom/google/common/collect/ImmutableList;)Ljava/util/concurrent/CompletionStage; m_244805_ + 0 o p_248091_ + 1 o p_248092_ + a (ZZZ)Z m_129885_ + 0 o p_129886_ + 1 o p_129887_ + 2 o p_129888_ + a (Ljava/util/function/Consumer;Lbam;)V m_212920_ + 0 o p_212921_ + 1 o p_212922_ + a (Lakn;Lada;)Lnet/minecraft/server/MinecraftServer$a; m_212902_ + static + 0 o p_212903_ + 1 o p_212904_ + a (Ljava/util/Collection;Lnet/minecraft/server/MinecraftServer$a;)V m_244804_ + 0 o p_248089_ + 1 o p_248090_ + a (Ljava/util/function/Function;)Lnet/minecraft/server/MinecraftServer; m_129872_ + static + 0 o p_129873_ + a (Ldyu;)V m_129841_ + 0 o p_129842_ + a (Ljava/util/function/BooleanSupplier;)V m_5705_ + 0 o p_129871_ + a (Lsw;)V m_213846_ + 0 o p_236736_ + a (Ladi;)Z m_6362_ + 0 o p_129883_ + a (Lbam;)V m_212923_ + 0 o p_177903_ + a (Laio;)V m_129815_ + 0 o p_129816_ + a (Ljava/lang/Runnable;)Ladi; m_6681_ + 0 o p_129852_ + a (Lo;)V m_7268_ + 0 o p_129874_ + a (Lsw;Lss$a;Ljava/lang/String;)V m_241158_ + 0 o p_241503_ + 1 o p_241402_ + 2 o p_241481_ + a (I)V m_129801_ + 0 o p_129802_ + a (Lalk;)V m_129823_ + 0 o p_129824_ + a (Laif;Lgu;Lbyo;)Z m_7762_ + 0 o p_129811_ + 1 o p_129812_ + 2 o p_129813_ + a (Lab;)Lab; m_142424_ + 0 o p_177901_ + a (Lcmj;)V m_7835_ + 0 o p_129832_ + a (Ljava/nio/file/Path;)V m_142116_ + 0 o p_177911_ + a (Ldyw;)Ljava/nio/file/Path; m_129843_ + 0 o p_129844_ + a (Ljava/util/Collection;)Ljava/util/concurrent/CompletableFuture; m_129861_ + 0 o p_129862_ + a (Lbdu;Z)V m_129827_ + 0 o p_129828_ + 1 o p_129829_ + a (Laif;Laid;Ldzd;Lhe$c;)V m_263900_ + static + 0 o p_264726_ + 1 o p_264727_ + 2 o p_264728_ + 3 o p_264729_ + a (Ljava/util/function/Consumer;Ljava/util/function/Consumer;)V m_177923_ + 0 o p_177924_ + 1 o p_177925_ + a (Laki;Lcma;ZLcaw;)Lcnf; m_246048_ + static + 0 o p_248681_ + 1 o p_248920_ + 2 o p_249869_ + 3 o p_251243_ + a (Ljava/util/Collection;Ljava/lang/String;)Z m_212914_ + static + 0 o p_212915_ + 1 o p_212916_ + aA ()Lade; m_129890_ + aB ()Laki; m_129891_ + aC ()Ldt; m_129892_ + aD ()Lds; m_129893_ + aE ()Lcjd; m_129894_ + aF ()Ladg; m_129896_ + aG ()Ldyr; m_129897_ + aH ()Ldzn; m_278653_ + aI ()Lcmi; m_129900_ + aJ ()Lado; m_129901_ + aK ()Z m_129902_ + aL ()F m_129903_ + aM ()Laoo; m_129904_ + aN ()Lban; m_129905_ + aO ()Z m_177927_ + aP ()V m_177928_ + aQ ()V m_177929_ + aR ()V m_236737_ + aS ()Z m_6365_ + aT ()Ldvu; m_236738_ + aU ()Ldze; m_129910_ + aV ()Lhs$b; m_206579_ + aW ()Lhl; m_247573_ + aX ()Lcmj; m_142359_ + aY ()Lakx; m_177941_ + aZ ()Z m_195518_ + a_ (Ljava/lang/String;)V m_129913_ + 0 o p_129914_ + aa ()Ljava/lang/String; m_129916_ + ab ()Z m_129918_ + ac ()Lalk; m_6846_ + ad ()Laix; m_129919_ + ae ()Z m_129920_ + af ()Z m_6370_ + ag ()I m_129921_ + ah ()I m_6396_ + ai ()Z m_6373_ + aj ()Z m_183306_ + ak ()Ljava/net/Proxy; m_177930_ + al ()I m_129924_ + am ()Lcom/mojang/authlib/minecraft/MinecraftSessionService; m_129925_ + an ()Lapj; m_284385_ + ao ()Lcom/mojang/authlib/GameProfileRepository; m_129926_ + ap ()Lalg; m_129927_ + aq ()Labt; m_129928_ + ar ()V m_129929_ + as ()I m_6329_ + at ()Z m_5660_ + au ()Ljava/lang/Thread; m_6304_ + av ()I m_6328_ + aw ()Z m_214005_ + ax ()J m_129932_ + ay ()Lcom/mojang/datafixers/DataFixer; m_129933_ + az ()Ladc; m_129889_ + b (Z)V m_129958_ + 0 o p_129959_ + b (Ladi;)V m_6367_ + 0 o p_129957_ + b (ZZZ)Z m_195514_ + 0 o p_195515_ + 1 o p_195516_ + 2 o p_195517_ + b (Laif;)V m_276346_ + 0 o p_276371_ + b (Laig;)Laih; m_177933_ + 0 o p_177934_ + b (Ljava/lang/String;)V m_129948_ + 0 o p_129949_ + b (I)I m_7186_ + 0 o p_129935_ + b (Ljava/lang/Runnable;)V m_129946_ + 0 o p_129947_ + b (Lcom/mojang/authlib/GameProfile;)V m_236740_ + 0 o p_236741_ + b (Ljava/util/Collection;)Lcom/google/common/collect/ImmutableList; m_212905_ + 0 o p_238914_ + b (Ljava/nio/file/Path;)V m_129859_ + 0 o p_129860_ + b (Laio;)V m_129940_ + 0 o p_129941_ + b (Ljava/util/function/BooleanSupplier;)V m_5703_ + 0 o p_129954_ + b (Lab;)Lab; m_177935_ + 0 o p_177936_ + bA ()Ljava/lang/String; m_177947_ + bB ()Ljava/util/Optional; m_271595_ + bC ()Z m_238924_ + bD ()Z m_202471_ + static + ba ()Z m_177942_ + bb ()V m_177943_ + bc ()Lbam; m_177944_ + bd ()I m_213994_ + be ()Lsr; m_236742_ + bf ()Z m_129960_ + bg ()Z m_129961_ + bh ()Ljava/util/Optional; m_272273_ + bi ()Labt; m_271988_ + bj ()Labt$b; m_271961_ + bs ()V m_129962_ + bt ()V m_177945_ + bu ()V m_177946_ + bv ()Ljava/lang/String; m_212925_ + bw ()Ljava/lang/String; m_202475_ + bx ()Ljava/lang/String; m_244806_ + by ()Ljava/lang/String; m_244802_ + bz ()Ljava/lang/String; m_200002_ + c (Laif;)Ljava/lang/String; m_287809_ + static + 0 o p_288269_ + c (Ljava/lang/Runnable;)V m_201446_ + 0 o p_202482_ + c (Ljava/lang/String;)Ljava/io/File; m_129971_ + 0 o p_129972_ + c (Ljava/nio/file/Path;)V m_129950_ + 0 o p_129951_ + c (I)V m_7196_ + 0 o p_129978_ + c (Z)V m_129975_ + 0 o p_129976_ + c (Laig;)V m_129938_ + 0 o p_129939_ + c (Lcom/mojang/authlib/GameProfile;)I m_129944_ + 0 o p_129945_ + close ()V close + d (Laif;)Z m_202478_ + static + 0 o p_202480_ + d (Ljava/lang/String;)V m_129989_ + 0 o p_129990_ + d (Ljava/lang/Runnable;)V m_6367_ + 0 o p_129970_ + d (Ljava/nio/file/Path;)V m_129983_ + 0 o p_129984_ + d (Z)V m_129985_ + 0 o p_129986_ + e (Ljava/nio/file/Path;)V m_129991_ + 0 o p_129992_ + e (Z)V m_129993_ + 0 o p_129994_ + e ()Z m_7038_ + e (Ljava/lang/Runnable;)Z m_6362_ + 0 o p_129980_ + e_ ()Z m_6999_ + f (Ljava/lang/Runnable;)Ljava/lang/Runnable; m_6681_ + 0 o p_129988_ + f (Z)V m_129997_ + 0 o p_129998_ + f (Ljava/nio/file/Path;)V m_129995_ + 0 o p_129996_ + g (Ljava/nio/file/Path;)V m_195521_ + 0 o p_195522_ + g (Z)V m_129999_ + 0 o p_130000_ + g ()V m_6988_ + getServerModName ()Ljava/lang/String; getServerModName + h ()Z m_7035_ + h (Z)V m_130004_ + 0 o p_130005_ + h (Ljava/nio/file/Path;)V m_202479_ + 0 o p_212927_ + i ()I m_7022_ + i (Ljava/nio/file/Path;)V m_212926_ + 0 o p_206581_ + j (Ljava/nio/file/Path;)Ljava/util/Optional; m_271593_ + static + 0 o p_272386_ + j ()I m_7034_ + k ()Z m_6983_ + k (Ljava/nio/file/Path;)Z m_271592_ + static + 0 o p_272385_ + l (Ljava/nio/file/Path;)Z m_271594_ + static + 0 o p_272387_ + l ()Z m_6982_ + m (Ljava/nio/file/Path;)V m_177953_ + static + 0 o p_177954_ + m ()I m_7032_ + n ()Z m_6994_ + n_ ()V m_130006_ + o ()Z m_6993_ + o_ ()Lcmj; m_130008_ + p ()Z m_6992_ + p_ ()V m_130012_ + q_ ()Z m_7028_ + r ()V m_7044_ + t ()V m_7041_ + u ()Ljava/lang/String; m_130009_ + v ()Z m_130010_ + w ()V m_130011_ + x ()Z m_7245_ + y ()Ljava/util/Optional; m_182649_ + z ()Ljava/io/File; m_6237_ +net/minecraft/server/MinecraftServer$1 net/minecraft/server/MinecraftServer$1 + a f_195523_ + b f_195524_ + c f_195525_ + (Lnet/minecraft/server/MinecraftServer;Ljava/util/List;Lcmi;)V + 0 o p_195527_ + 1 o p_195528_ + 2 o p_195529_ + a (Lcmi$e;Lcmi$f;)V m_6889_ + 0 o p_195531_ + 1 o p_195532_ +net/minecraft/server/MinecraftServer$a net/minecraft/server/MinecraftServer$ReloadableResources + a f_206584_ + b f_206585_ + (Lakn;Lada;)V + 0 o f_206584_ + 1 o f_206585_ + a ()Lakn; f_206584_ + b ()Lada; f_206585_ + close ()V close + equals (Ljava/lang/Object;)Z equals + 0 o p_206593_ + hashCode ()I hashCode + toString ()Ljava/lang/String; toString +net/minecraft/server/MinecraftServer$b net/minecraft/server/MinecraftServer$ServerResourcePackInfo + a f_236743_ + b f_236744_ + c f_236745_ + d f_236746_ + (Ljava/lang/String;Ljava/lang/String;ZLsw;)V + 0 o f_236743_ + 1 o f_236744_ + 2 o f_236745_ + 3 o f_236746_ + a ()Ljava/lang/String; f_236743_ + b ()Ljava/lang/String; f_236744_ + c ()Z f_236745_ + d ()Lsw; f_236746_ + equals (Ljava/lang/Object;)Z equals + 0 o p_236757_ + hashCode ()I hashCode + toString ()Ljava/lang/String; toString +net/minecraft/server/MinecraftServer$c net/minecraft/server/MinecraftServer$TimeProfiler + a f_177955_ + b f_177956_ + (JI)V + 0 o p_177958_ + 1 o p_177959_ + a (JI)Lbam; m_177960_ + 0 o p_177961_ + 1 o p_177962_ +net/minecraft/server/MinecraftServer$c$1 net/minecraft/server/MinecraftServer$TimeProfiler$1 + a f_177963_ + b f_177964_ + c f_177965_ + (Lnet/minecraft/server/MinecraftServer$c;JI)V + 0 o p_177967_ + 1 o p_177968_ + 2 o p_177969_ + a (Ljava/lang/String;)Ljava/util/List; m_6412_ + 0 o p_177972_ + a ()J m_7229_ + a (Ljava/nio/file/Path;)Z m_142444_ + 0 o p_177974_ + b ()I m_7230_ + c ()J m_7236_ + d ()I m_7317_ + e ()Ljava/lang/String; m_142368_ +net/minecraft/util/profiling/jfr/event/ChunkGenerationEvent net/minecraft/util/profiling/jfr/event/ChunkGenerationEvent + EVENT_NAME EVENT_NAME + TYPE TYPE + chunkPosX chunkPosX + chunkPosZ chunkPosZ + level level + targetStatus targetStatus + worldPosX worldPosX + worldPosZ worldPosZ + ()V + static + (Lclt;Lacp;Ljava/lang/String;)V + 0 o p_195543_ + 1 o p_195544_ + 2 o p_195545_ +net/minecraft/util/profiling/jfr/event/ChunkGenerationEvent$a net/minecraft/util/profiling/jfr/event/ChunkGenerationEvent$Fields + a f_195546_ + b f_195547_ + c f_195548_ + d f_195549_ + e f_195550_ + f f_195551_ + ()V +net/minecraft/util/profiling/jfr/event/NetworkSummaryEvent net/minecraft/util/profiling/jfr/event/NetworkSummaryEvent + EVENT_NAME EVENT_NAME + TYPE TYPE + receivedBytes receivedBytes + receivedPackets receivedPackets + remoteAddress remoteAddress + sentBytes sentBytes + sentPackets sentPackets + ()V + static + (Ljava/lang/String;)V + 0 o p_195562_ +net/minecraft/util/profiling/jfr/event/NetworkSummaryEvent$a net/minecraft/util/profiling/jfr/event/NetworkSummaryEvent$Fields + a f_195563_ + b f_195564_ + c f_195565_ + d f_195566_ + e f_195567_ + ()V +net/minecraft/util/profiling/jfr/event/NetworkSummaryEvent$b net/minecraft/util/profiling/jfr/event/NetworkSummaryEvent$SumAggregation + a f_195569_ + b f_195570_ + c f_195571_ + d f_195572_ + e f_195573_ + (Ljava/lang/String;)V + 0 o p_195575_ + a (I)V m_195577_ + 0 o p_195578_ + a ()V m_195576_ + b (I)V m_195579_ + 0 o p_195580_ +net/minecraft/util/profiling/jfr/event/PacketReceivedEvent net/minecraft/util/profiling/jfr/event/PacketReceivedEvent + NAME NAME + TYPE TYPE + ()V + static + (IILjava/net/SocketAddress;I)V + 0 o p_195585_ + 1 o p_195586_ + 2 o p_195587_ + 3 o p_195588_ +net/minecraft/util/profiling/jfr/event/PacketSentEvent net/minecraft/util/profiling/jfr/event/PacketSentEvent + NAME NAME + TYPE TYPE + ()V + static + (IILjava/net/SocketAddress;I)V + 0 o p_195593_ + 1 o p_195594_ + 2 o p_195595_ + 3 o p_195596_ +net/minecraft/util/profiling/jfr/event/ServerTickTimeEvent net/minecraft/util/profiling/jfr/event/ServerTickTimeEvent + EVENT_NAME EVENT_NAME + TYPE TYPE + averageTickDurationNanos averageTickDurationNanos + ()V + static + (F)V + 0 o p_195602_ +net/minecraft/util/profiling/jfr/event/ServerTickTimeEvent$a net/minecraft/util/profiling/jfr/event/ServerTickTimeEvent$Fields + a f_195603_ + ()V +net/minecraft/util/profiling/jfr/event/WorldLoadFinishedEvent net/minecraft/util/profiling/jfr/event/WorldLoadFinishedEvent + EVENT_NAME EVENT_NAME + TYPE TYPE + ()V + static + ()V +nf net/minecraft/data/worldgen/BastionBridgePools + ()V + a (Lnm;)V m_255231_ + static + 0 o p_255816_ +ng net/minecraft/data/worldgen/BastionHoglinStablePools + ()V + a (Lnm;)V m_255342_ + static + 0 o p_256582_ +nh net/minecraft/data/worldgen/BastionHousingUnitsPools + ()V + a (Lnm;)V m_255349_ + static + 0 o p_256423_ +ni net/minecraft/data/worldgen/BastionPieces + a f_126673_ + ()V + static + ()V + a (Lnm;)V m_255086_ + static + 0 o p_256429_ +nj net/minecraft/data/worldgen/BastionSharedPools + ()V + a (Lnm;)V m_255140_ + static + 0 o p_255917_ +nk net/minecraft/data/worldgen/BastionTreasureRoomPools + ()V + a (Lnm;)V m_255358_ + static + 0 o p_255689_ +nl net/minecraft/data/worldgen/BiomeDefaultFeatures + ()V + A (Lcnl$a;)V m_176850_ + static + 0 o p_176851_ + B (Lcnl$a;)V m_176852_ + static + 0 o p_176853_ + C (Lcnl$a;)V m_126684_ + static + 0 o p_126685_ + D (Lcnl$a;)V m_194716_ + static + 0 o p_194717_ + E (Lcnl$a;)V m_126688_ + static + 0 o p_126689_ + F (Lcnl$a;)V m_198927_ + static + 0 o p_198928_ + G (Lcnl$a;)V m_126692_ + static + 0 o p_126693_ + H (Lcnl$a;)V m_126694_ + static + 0 o p_126695_ + I (Lcnl$a;)V m_126696_ + static + 0 o p_126697_ + J (Lcnl$a;)V m_126698_ + static + 0 o p_126699_ + K (Lcnl$a;)V m_126700_ + static + 0 o p_126701_ + L (Lcnl$a;)V m_126702_ + static + 0 o p_126703_ + M (Lcnl$a;)V m_126704_ + static + 0 o p_126705_ + N (Lcnl$a;)V m_126706_ + static + 0 o p_126707_ + O (Lcnl$a;)V m_126708_ + static + 0 o p_126709_ + P (Lcnl$a;)V m_126710_ + static + 0 o p_126711_ + Q (Lcnl$a;)V m_236466_ + static + 0 o p_236467_ + R (Lcnl$a;)V m_126712_ + static + 0 o p_126713_ + S (Lcnl$a;)V m_126714_ + static + 0 o p_126715_ + T (Lcnl$a;)V m_126716_ + static + 0 o p_126717_ + U (Lcnl$a;)V m_126718_ + static + 0 o p_126719_ + V (Lcnl$a;)V m_126720_ + static + 0 o p_126721_ + W (Lcnl$a;)V m_272148_ + static + 0 o p_273728_ + X (Lcnl$a;)V m_194718_ + static + 0 o p_194719_ + Y (Lcnl$a;)V m_126722_ + static + 0 o p_126723_ + Z (Lcnl$a;)V m_126724_ + static + 0 o p_126725_ + a (Lcnl$a;)V m_194720_ + static + 0 o p_194721_ + a (Lcnw$a;III)V m_126740_ + static + 0 o p_126741_ + 1 o p_126742_ + 2 o p_126743_ + 3 o p_126744_ + a (Lcnw$a;II)V m_126736_ + static + 0 o p_126737_ + 1 o p_126738_ + 2 o p_126739_ + a (Lcnw$a;IIIZ)V m_194725_ + static + 0 o p_194726_ + 1 o p_194727_ + 2 o p_194728_ + 3 o p_194729_ + 4 o p_194730_ + a (Lcnl$a;Z)V m_194722_ + static + 0 o p_194723_ + 1 o p_194724_ + a (Lcnw$a;)V m_126734_ + static + 0 o p_126735_ + aa (Lcnl$a;)V m_126726_ + static + 0 o p_126727_ + ab (Lcnl$a;)V m_126728_ + static + 0 o p_126729_ + ac (Lcnl$a;)V m_126730_ + static + 0 o p_126731_ + ad (Lcnl$a;)V m_126745_ + static + 0 o p_126746_ + ae (Lcnl$a;)V m_126747_ + static + 0 o p_126748_ + af (Lcnl$a;)V m_198929_ + static + 0 o p_198930_ + ag (Lcnl$a;)V m_198931_ + static + 0 o p_198932_ + ah (Lcnl$a;)V m_198933_ + static + 0 o p_198934_ + ai (Lcnl$a;)V m_126751_ + static + 0 o p_126752_ + aj (Lcnl$a;)V m_126753_ + static + 0 o p_126754_ + ak (Lcnl$a;)V m_126755_ + static + 0 o p_126756_ + al (Lcnl$a;)V m_126757_ + static + 0 o p_126758_ + am (Lcnl$a;)V m_126759_ + static + 0 o p_126760_ + an (Lcnl$a;)V m_126761_ + static + 0 o p_126762_ + ao (Lcnl$a;)V m_126763_ + static + 0 o p_126764_ + ap (Lcnl$a;)V m_126765_ + static + 0 o p_126766_ + aq (Lcnl$a;)V m_194731_ + static + 0 o p_194732_ + ar (Lcnl$a;)V m_126767_ + static + 0 o p_126768_ + as (Lcnl$a;)V m_126769_ + static + 0 o p_126770_ + at (Lcnl$a;)V m_126771_ + static + 0 o p_126772_ + au (Lcnl$a;)V m_126773_ + static + 0 o p_126774_ + av (Lcnl$a;)V m_126775_ + static + 0 o p_126776_ + aw (Lcnl$a;)V m_176857_ + static + 0 o p_176858_ + b (Lcnw$a;)V m_176859_ + static + 0 o p_176860_ + b (Lcnl$a;)V m_126806_ + static + 0 o p_126807_ + c (Lcnw$a;)V m_126788_ + static + 0 o p_126789_ + c (Lcnl$a;)V m_126810_ + static + 0 o p_126811_ + d (Lcnl$a;)V m_176863_ + static + 0 o p_176864_ + d (Lcnw$a;)V m_126792_ + static + 0 o p_126793_ + e (Lcnl$a;)V m_236468_ + static + 0 o p_236469_ + e (Lcnw$a;)V m_126796_ + static + 0 o p_126797_ + f (Lcnw$a;)V m_126800_ + static + 0 o p_126801_ + f (Lcnl$a;)V m_126814_ + static + 0 o p_126815_ + g (Lcnl$a;)V m_126816_ + static + 0 o p_126817_ + g (Lcnw$a;)V m_194733_ + static + 0 o p_194734_ + h (Lcnl$a;)V m_126818_ + static + 0 o p_126819_ + h (Lcnw$a;)V m_126804_ + static + 0 o p_126805_ + i (Lcnw$a;)V m_126808_ + static + 0 o p_126809_ + i (Lcnl$a;)V m_126820_ + static + 0 o p_126821_ + j (Lcnw$a;)V m_126812_ + static + 0 o p_126813_ + j (Lcnl$a;)V m_126822_ + static + 0 o p_126823_ + k (Lcnl$a;)V m_126824_ + static + 0 o p_126825_ + l (Lcnl$a;)V m_236470_ + static + 0 o p_236471_ + m (Lcnl$a;)V m_126826_ + static + 0 o p_126827_ + n (Lcnl$a;)V m_126828_ + static + 0 o p_126829_ + o (Lcnl$a;)V m_194735_ + static + 0 o p_194736_ + p (Lcnl$a;)V m_194737_ + static + 0 o p_194738_ + q (Lcnl$a;)V m_126834_ + static + 0 o p_126835_ + r (Lcnl$a;)V m_126836_ + static + 0 o p_126837_ + s (Lcnl$a;)V m_126838_ + static + 0 o p_126839_ + t (Lcnl$a;)V m_194739_ + static + 0 o p_194740_ + u (Lcnl$a;)V m_126840_ + static + 0 o p_126841_ + v (Lcnl$a;)V m_126842_ + static + 0 o p_126843_ + w (Lcnl$a;)V m_126844_ + static + 0 o p_126845_ + x (Lcnl$a;)V m_126846_ + static + 0 o p_126847_ + y (Lcnl$a;)V m_126680_ + static + 0 o p_126681_ + z (Lcnl$a;)V m_126682_ + static + 0 o p_126683_ +nm net/minecraft/data/worldgen/BootstapContext + a (Lacp;)Lhf; m_255420_ + 0 o p_256410_ + a (Lacp;Ljava/lang/Object;Lcom/mojang/serialization/Lifecycle;)Lhe$c; m_255042_ + 0 o p_256008_ + 1 o p_256454_ + 2 o p_255725_ + a (Lacp;Ljava/lang/Object;)Lhe$c; m_255272_ + 0 o p_255743_ + 1 o p_256121_ +nn net/minecraft/data/worldgen/Carvers + a f_126848_ + b f_194741_ + c f_126849_ + d f_126853_ + ()V + static + ()V + a (Ljava/lang/String;)Lacp; m_254992_ + static + 0 o p_256085_ + a (Lnm;)V m_254873_ + static + 0 o p_255626_ +no net/minecraft/data/worldgen/DesertVillagePools + a f_126858_ + b f_254714_ + c f_254709_ + ()V + static + ()V + a (Lnm;)V m_255365_ + static + 0 o p_255787_ +np net/minecraft/data/worldgen/DimensionTypes + ()V + a (Lnm;)V m_236473_ + static + 0 o p_256376_ +nq net/minecraft/data/worldgen/NoiseData + a f_254655_ + ()V + static + ()V + a (Lnm;Lacp;ID[D)V m_255316_ + static + 0 o p_256150_ + 1 o p_255970_ + 2 o p_256539_ + 3 o p_256566_ + 4 o p_255998_ + a (Lnm;ILacp;Lacp;Lacp;Lacp;)V m_236477_ + static + 0 o p_256503_ + 1 o p_236479_ + 2 o p_236480_ + 3 o p_236481_ + 4 o p_236482_ + 5 o p_236483_ + a (Lnm;)V m_236475_ + static + 0 o p_256579_ +nr net/minecraft/data/worldgen/PillagerOutpostPools + a f_127180_ + ()V + static + ()V + a (Lnm;)V m_255390_ + static + 0 o p_256545_ +ns net/minecraft/data/worldgen/PlainVillagePools + a f_127183_ + b f_254748_ + ()V + static + ()V + a (Lnm;)V m_255172_ + static + 0 o p_256646_ +nt net/minecraft/data/worldgen/Pools + a f_127186_ + ()V + static + ()V + a (Ljava/lang/String;)Lacp; m_254871_ + static + 0 o p_256439_ + a (Lnm;)V m_255181_ + static + 0 o p_255897_ + a (Lnm;Ljava/lang/String;Ldtj;)V m_255152_ + static + 0 o p_255823_ + 1 o p_255837_ + 2 o p_256161_ +nu net/minecraft/data/worldgen/ProcessorLists + A f_127193_ + B f_127194_ + C f_127195_ + D f_177022_ + E f_177023_ + F f_177024_ + G f_236493_ + H f_236494_ + I f_236495_ + J f_279666_ + K f_279575_ + L f_279605_ + M f_127198_ + a f_127199_ + b f_127200_ + c f_127201_ + d f_127202_ + e f_127203_ + f f_127204_ + g f_127205_ + h f_127206_ + i f_127207_ + j f_127208_ + k f_127209_ + l f_127210_ + m f_127211_ + n f_127212_ + o f_127213_ + p f_127214_ + q f_127215_ + r f_127216_ + s f_127217_ + t f_127218_ + u f_127219_ + v f_127220_ + w f_127221_ + x f_127222_ + y f_127223_ + z f_127192_ + ()V + static + ()V + a (Ljava/lang/String;)Lacp; m_255337_ + static + 0 o p_256151_ + a (Lnm;Lacp;Ljava/util/List;)V m_254991_ + static + 0 o p_256641_ + 1 o p_256192_ + 2 o p_255805_ + a (Lnm;)V m_254888_ + static + 0 o p_256523_ + a (Lacq;I)Lduz; m_280251_ + static + 0 o p_282232_ + 1 o p_281868_ +nv net/minecraft/data/worldgen/SavannaVillagePools + a f_127228_ + b f_254665_ + c f_254638_ + ()V + static + ()V + a (Lnm;)V m_254944_ + static + 0 o p_256198_ +nw net/minecraft/data/worldgen/SnowyVillagePools + a f_127231_ + b f_254720_ + ()V + static + ()V + a (Lnm;)V m_255311_ + static + 0 o p_256549_ +nx net/minecraft/data/worldgen/StructureSets + a (Lnm;)V m_255117_ + static + 0 o p_256148_ +ny net/minecraft/data/worldgen/Structures + ()V + a (Lnm;)V m_255324_ + static + 0 o p_256072_ + a (Lhi;Ljava/util/Map;Ldhg$b;Ldsl;)Ldsa$c; m_255028_ + static + 0 o p_256015_ + 1 o p_256297_ + 2 o p_255729_ + 3 o p_255865_ + a (Lhi;Ldsl;)Ldsa$c; m_255238_ + static + 0 o p_256501_ + 1 o p_255704_ + a (Lbgc;)Ldsh; m_236550_ + static + 0 o p_236551_ + a (Lhi;Ldhg$b;Ldsl;)Ldsa$c; m_255131_ + static + 0 o p_255731_ + 1 o p_256551_ + 2 o p_256463_ + b (Lbgc;)Lbgc; m_236554_ + static + 0 o p_236555_ +nz net/minecraft/data/worldgen/SurfaceRuleData + A f_194804_ + B f_194771_ + C f_194772_ + D f_194773_ + E f_194774_ + F f_194775_ + G f_194776_ + H f_194777_ + I f_194778_ + a f_194779_ + b f_194780_ + c f_194781_ + d f_194782_ + e f_194783_ + f f_194784_ + g f_194785_ + h f_194786_ + i f_194787_ + j f_194788_ + k f_194789_ + l f_194790_ + m f_194791_ + n f_194792_ + o f_194793_ + p f_194794_ + q f_194795_ + r f_194796_ + s f_194797_ + t f_194798_ + u f_236556_ + v f_194799_ + w f_194800_ + x f_194801_ + y f_194802_ + z f_194803_ + ()V + static + ()V + a ()Ldib$o; m_194807_ + static + a (ZZZ)Ldib$o; m_198380_ + static + 0 o p_198381_ + 1 o p_198382_ + 2 o p_198383_ + a (I)[Ldib$o; m_198378_ + static + 0 o p_198379_ + a (Lcpn;)Ldib$o; m_194810_ + static + 0 o p_194811_ + a (D)Ldib$f; m_194808_ + static + 0 o p_194809_ + b ()Ldib$o; m_194812_ + static + c ()Ldib$o; m_194813_ + static + d ()Ldib$o; m_238362_ + static +o net/minecraft/CrashReport + a f_127499_ + b f_241641_ + c f_127500_ + d f_127501_ + e f_127503_ + f f_127504_ + g f_127505_ + h f_127506_ + i f_178624_ + ()V + static + (Ljava/lang/String;Ljava/lang/Throwable;)V + 0 o p_127509_ + 1 o p_127510_ + a (Ljava/lang/StringBuilder;)V m_127519_ + 0 o p_127520_ + a ()Ljava/lang/String; m_127511_ + a (Ljava/lang/Throwable;Ljava/lang/String;)Lo; m_127521_ + static + 0 o p_127522_ + 1 o p_127523_ + a (Ljava/lang/String;I)Lp; m_127516_ + 0 o p_127517_ + 1 o p_127518_ + a (Ljava/io/File;)Z m_127512_ + 0 o p_127513_ + a (Ljava/lang/String;)Lp; m_127514_ + 0 o p_127515_ + b ()Ljava/lang/Throwable; m_127524_ + c ()Ljava/lang/String; m_178625_ + d ()Ljava/lang/String; m_127525_ + e ()Ljava/lang/String; m_127526_ + f ()Ljava/io/File; m_127527_ + g ()Lab; m_178626_ + h ()V m_127529_ + static + i ()Ljava/lang/String; m_127531_ + static +oa net/minecraft/data/worldgen/TaigaVillagePools + a f_127303_ + b f_254670_ + ()V + static + ()V + a (Lnm;)V m_255354_ + static + 0 o p_256442_ +ob net/minecraft/data/worldgen/TerrainProvider + a f_236557_ + b f_236558_ + c f_236559_ + d f_236560_ + e f_236561_ + f f_236562_ + g f_236563_ + h f_236564_ + ()V + static + ()V + a (Lapx;Lapx;Lapx;Z)Laod; m_236635_ + static + 0 o p_236636_ + 1 o p_236637_ + 2 o p_236638_ + 3 o p_236639_ + a (FFF)F m_236568_ + static + 0 o p_236569_ + 1 o p_236570_ + 2 o p_236571_ + a (Lapx;FFFFFFLapx;)Laod; m_236577_ + static + 0 o p_236578_ + 1 o p_236579_ + 2 o p_236580_ + 3 o p_236581_ + 4 o p_236582_ + 5 o p_236583_ + 6 o p_236584_ + 7 o p_236585_ + a (Lapx;Lapx;FFLapx;)Laod; m_236607_ + static + 0 o p_236608_ + 1 o p_236609_ + 2 o p_236610_ + 3 o p_236611_ + 4 o p_236612_ + a (Lapx;Lapx;Lapx;Lapx;Z)Laod; m_236629_ + static + 0 o p_236630_ + 1 o p_236631_ + 2 o p_236632_ + 3 o p_236633_ + 4 o p_236634_ + a (Lapx;Lapx;Lapx;FZLapx;)Laod; m_236622_ + static + 0 o p_236623_ + 1 o p_236624_ + 2 o p_236625_ + 3 o p_236626_ + 4 o p_236627_ + 5 o p_236628_ + a (Lapx;Lapx;Lapx;FFFFLapx;)Laod; m_236613_ + static + 0 o p_236614_ + 1 o p_236615_ + 2 o p_236616_ + 3 o p_236617_ + 4 o p_236618_ + 5 o p_236619_ + 6 o p_236620_ + 7 o p_236621_ + a (Lapx;FLapx;)Laod; m_236586_ + static + 0 o p_236587_ + 1 o p_236588_ + 2 o p_236589_ + a (F)F m_236566_ + static + 0 o p_236567_ + a (Lapx;Lapx;FFFFFFZZLapx;)Laod; m_236595_ + static + 0 o p_236596_ + 1 o p_236597_ + 2 o p_236598_ + 3 o p_236599_ + 4 o p_236600_ + 5 o p_236601_ + 6 o p_236602_ + 7 o p_236603_ + 8 o p_236604_ + 9 o p_236605_ + 10 o p_236606_ + a (Lapx;FZLapx;)Laod; m_236590_ + static + 0 o p_236591_ + 1 o p_236592_ + 2 o p_236593_ + 3 o p_236594_ + a (FFFF)F m_236572_ + static + 0 o p_236573_ + 1 o p_236574_ + 2 o p_236575_ + 3 o p_236576_ + b (F)F m_236640_ + static + 0 o p_236641_ + b (Lapx;Lapx;Lapx;Lapx;Z)Laod; m_236642_ + static + 0 o p_236643_ + 1 o p_236644_ + 2 o p_236645_ + 3 o p_236646_ + 4 o p_236647_ + c (F)F m_236648_ + static + 0 o p_236649_ + d (F)F m_236650_ + static + 0 o p_236651_ +oc net/minecraft/data/worldgen/TrailRuinsStructurePools + a f_276659_ + ()V + static + ()V + a (Lnm;)V m_276974_ + static + 0 o p_277535_ +od net/minecraft/data/worldgen/VillagePools + ()V + a (Lnm;)V m_254971_ + static + 0 o p_256339_ +oe net/minecraft/data/worldgen/biome/BiomeData + ()V + a (Lnm;)V m_272174_ + static + 0 o p_273095_ +of net/minecraft/data/worldgen/biome/EndBiomes + ()V + a (Lhf;Lhf;)Lcnk; m_255113_ + static + 0 o p_256510_ + 1 o p_256130_ + a (Lcnl$a;)Lcnk; m_194824_ + static + 0 o p_194825_ + b (Lhf;Lhf;)Lcnk; m_255372_ + static + 0 o p_255623_ + 1 o p_255991_ + c (Lhf;Lhf;)Lcnk; m_255243_ + static + 0 o p_255719_ + 1 o p_255751_ + d (Lhf;Lhf;)Lcnk; m_255137_ + static + 0 o p_256650_ + 1 o p_256540_ + e (Lhf;Lhf;)Lcnk; m_255123_ + static + 0 o p_255848_ + 1 o p_256605_ +og net/minecraft/data/worldgen/biome/NetherBiomes + ()V + a (Lhf;Lhf;)Lcnk; m_194831_ + static + 0 o p_255840_ + 1 o p_255956_ + b (Lhf;Lhf;)Lcnk; m_194832_ + static + 0 o p_256586_ + 1 o p_256434_ + c (Lhf;Lhf;)Lcnk; m_194833_ + static + 0 o p_255798_ + 1 o p_256227_ + d (Lhf;Lhf;)Lcnk; m_194834_ + static + 0 o p_256350_ + 1 o p_256386_ + e (Lhf;Lhf;)Lcnk; m_194835_ + static + 0 o p_256156_ + 1 o p_256284_ +oh net/minecraft/data/worldgen/biome/OverworldBiomes + a f_194836_ + b f_194837_ + c f_194838_ + d f_194839_ + ()V + static + ()V + a (Lcnl$a;)V m_194869_ + static + 0 o p_194870_ + a (ZFFIILjava/lang/Integer;Ljava/lang/Integer;Lcnw$a;Lcnl$a;Lame;)Lcnk; m_271953_ + static + 0 o p_273483_ + 1 o p_272621_ + 2 o p_273588_ + 3 o p_273605_ + 4 o p_272756_ + 5 o p_272889_ + 6 o p_272657_ + 7 o p_273300_ + 8 o p_272700_ + 9 o p_272996_ + a (ZFFLcnw$a;Lcnl$a;Lame;)Lcnk; m_264144_ + static + 0 o p_265746_ + 1 o p_265800_ + 2 o p_265276_ + 3 o p_265425_ + 4 o p_265371_ + 5 o p_265636_ + a (F)I m_194843_ + static + 0 o p_194844_ + a (Lhf;Lhf;ZZ)Lcnk; m_194878_ + static + 0 o p_256294_ + 1 o p_256583_ + 2 o p_194879_ + 3 o p_194880_ + a (Lhf;Lhf;FZZZLcnw$a;Lame;)Lcnk; m_284525_ + static + 0 o p_285208_ + 1 o p_285276_ + 2 o p_285079_ + 3 o p_285393_ + 4 o p_285109_ + 5 o p_285122_ + 6 o p_285449_ + 7 o p_285440_ + a (Lhf;Lhf;ZZZ)Lcnk; m_194881_ + static + 0 o p_256382_ + 1 o p_256173_ + 2 o p_194882_ + 3 o p_194883_ + 4 o p_194884_ + a (Lhf;Lhf;)Lcnk; m_254954_ + static + 0 o p_255977_ + 1 o p_256531_ + a (Lhf;Lhf;Z)Lcnk; m_194876_ + static + 0 o p_255849_ + 1 o p_256578_ + 2 o p_194877_ + a (Lcnw$a;IILcnl$a;)Lcnk; m_194871_ + static + 0 o p_194872_ + 1 o p_194873_ + 2 o p_194874_ + 3 o p_194875_ + b (Lhf;Lhf;ZZ)Lcnk; m_194888_ + static + 0 o p_256157_ + 1 o p_255712_ + 2 o p_194889_ + 3 o p_194890_ + b (Lhf;Lhf;ZZZ)Lcnk; m_194891_ + static + 0 o p_255788_ + 1 o p_256461_ + 2 o p_194892_ + 3 o p_194893_ + 4 o p_194894_ + b (Lhf;Lhf;Z)Lcnk; m_194886_ + static + 0 o p_255703_ + 1 o p_256239_ + 2 o p_194887_ + b (Lhf;Lhf;)Lcnk; m_255074_ + static + 0 o p_256033_ + 1 o p_255651_ + c (Lhf;Lhf;)Lcnk; m_255279_ + static + 0 o p_255817_ + 1 o p_256096_ + c (Lhf;Lhf;Z)Lcnk; m_194896_ + static + 0 o p_256309_ + 1 o p_256430_ + 2 o p_194897_ + d (Lhf;Lhf;)Lcnk; m_194902_ + static + 0 o p_256064_ + 1 o p_255852_ + d (Lhf;Lhf;Z)Lcnk; m_194899_ + static + 0 o p_256141_ + 1 o p_255841_ + 2 o p_194900_ + e (Lhf;Lhf;Z)Lcnk; m_255326_ + static + 0 o p_256265_ + 1 o p_256537_ + 2 o p_255752_ + e (Lhf;Lhf;)Lcnk; m_255280_ + static + 0 o p_255775_ + 1 o p_256480_ + f (Lhf;Lhf;Z)Lcnk; m_194905_ + static + 0 o p_255660_ + 1 o p_256231_ + 2 o p_194906_ + f (Lhf;Lhf;)Lcnk; m_254955_ + static + 0 o p_256477_ + 1 o p_256024_ + g (Lhf;Lhf;)Lcnk; m_194885_ + static + 0 o p_256140_ + 1 o p_256223_ + g (Lhf;Lhf;Z)Lcnk; m_194908_ + static + 0 o p_256482_ + 1 o p_256660_ + 2 o p_194909_ + h (Lhf;Lhf;Z)Lcnk; m_194911_ + static + 0 o p_256177_ + 1 o p_255727_ + 2 o p_194912_ + h (Lhf;Lhf;)Lcnk; m_194910_ + static + 0 o p_256058_ + 1 o p_256016_ + i (Lhf;Lhf;Z)Lcnk; m_194914_ + static + 0 o p_256613_ + 1 o p_256581_ + 2 o p_194915_ + i (Lhf;Lhf;)Lcnk; m_236670_ + static + 0 o p_256353_ + 1 o p_256103_ + j (Lhf;Lhf;)Lcnk; m_255251_ + static + 0 o p_256509_ + 1 o p_256544_ + j (Lhf;Lhf;Z)Lcnk; m_272060_ + static + 0 o p_273564_ + 1 o p_273374_ + 2 o p_273710_ + k (Lhf;Lhf;)Lcnk; m_194918_ + static + 0 o p_255713_ + 1 o p_256092_ + l (Lhf;Lhf;)Lcnk; m_194917_ + static + 0 o p_256512_ + 1 o p_255908_ + m (Lhf;Lhf;)Lcnk; m_255416_ + static + 0 o p_256490_ + 1 o p_255694_ + n (Lhf;Lhf;)Lcnk; m_194920_ + static + 0 o p_255927_ + 1 o p_255982_ + o (Lhf;Lhf;)Lcnk; m_194921_ + static + 0 o p_256094_ + 1 o p_256431_ + p (Lhf;Lhf;)Lcnk; m_194922_ + static + 0 o p_255944_ + 1 o p_255654_ + q (Lhf;Lhf;)Lcnk; m_194895_ + static + 0 o p_256253_ + 1 o p_255644_ + r (Lhf;Lhf;)Lcnk; m_236671_ + static + 0 o p_256073_ + 1 o p_256212_ + s (Lhf;Lhf;)Lcnl$a; m_254986_ + static + 0 o p_256289_ + 1 o p_256514_ +oi net/minecraft/data/worldgen/biome/package-info +oj net/minecraft/data/worldgen/features/AquaticFeatures + a f_194925_ + b f_194926_ + c f_194927_ + d f_194928_ + e f_194929_ + f f_194930_ + g f_194931_ + h f_194932_ + ()V + static + ()V + a (Lnm;)V m_255426_ + static + 0 o p_256171_ +ok net/minecraft/data/worldgen/features/CaveFeatures + a f_194938_ + b f_194939_ + c f_194940_ + d f_194941_ + e f_194942_ + f f_194943_ + g f_194944_ + h f_194945_ + i f_194946_ + j f_194947_ + k f_194948_ + l f_194949_ + m f_194950_ + n f_194951_ + o f_194952_ + p f_194953_ + q f_194954_ + r f_194955_ + s f_194956_ + t f_194957_ + u f_194958_ + v f_236674_ + w f_236675_ + x f_236676_ + ()V + static + ()V + a ()Lhe; m_206466_ + static + a (Lha;)Lhe; m_206467_ + static + 0 o p_206468_ + a (Lnm;)V m_255015_ + static + 0 o p_256051_ +ol net/minecraft/data/worldgen/features/EndFeatures + a f_194982_ + b f_194983_ + c f_194984_ + d f_194985_ + e f_194986_ + ()V + static + ()V + a (Lnm;)V m_255085_ + static + 0 o p_256286_ +om net/minecraft/data/worldgen/features/FeatureUtils + ()V + a (ILhe;)Ldnf; m_206470_ + static + 0 o p_206471_ + 1 o p_206472_ + a (Lnm;Lacp;Ldko;Ldms;)V m_254977_ + static + 0 o p_256315_ + 1 o p_255983_ + 2 o p_255949_ + 3 o p_256398_ + a (Ljava/lang/String;)Lacp; m_255087_ + static + 0 o p_255643_ + a (Lnm;Lacp;Ldko;)V m_255061_ + static + 0 o p_256637_ + 1 o p_256555_ + 2 o p_255921_ + a (Ldko;Ldms;Ljava/util/List;I)Ldnf; m_206480_ + static + 0 o p_206481_ + 1 o p_206482_ + 2 o p_206483_ + 3 o p_206484_ + a (Lnm;)V m_254925_ + static + 0 o p_255869_ + a (Ldko;Ldms;Ljava/util/List;)Ldnf; m_206476_ + static + 0 o p_206477_ + 1 o p_206478_ + 2 o p_206479_ + a (Ljava/util/List;)Ldir; m_195008_ + static + 0 o p_195009_ + a (Ldko;Ldms;)Ldnf; m_206473_ + static + 0 o p_206474_ + 1 o p_206475_ +on net/minecraft/data/worldgen/features/MiscOverworldFeatures + a f_195010_ + b f_195011_ + c f_195012_ + d f_195013_ + e f_195014_ + f f_195015_ + g f_195016_ + h f_195017_ + i f_195018_ + j f_195019_ + k f_195020_ + l f_236760_ + m f_195021_ + n f_195022_ + o f_195023_ + p f_195024_ + q f_195025_ + r f_195026_ + ()V + static + ()V + a (Lnm;)V m_254957_ + static + 0 o p_256346_ +oo net/minecraft/data/worldgen/features/NetherFeatures + a f_195029_ + b f_195030_ + c f_195031_ + d f_195032_ + e f_195033_ + f f_195034_ + g f_195036_ + h f_195037_ + i f_195039_ + j f_195040_ + k f_195041_ + l f_195042_ + m f_195043_ + n f_195044_ + o f_195045_ + p f_195046_ + q f_195047_ + r f_195048_ + s f_195049_ + t f_195050_ + u f_195051_ + v f_195052_ + ()V + static + ()V + a (Lnm;)V m_255076_ + static + 0 o p_256247_ +op net/minecraft/data/worldgen/features/OreFeatures + A f_195066_ + B f_195067_ + C f_195068_ + D f_195069_ + E f_195070_ + a f_195082_ + b f_195083_ + c f_195084_ + d f_195085_ + e f_195086_ + f f_195087_ + g f_195088_ + h f_195089_ + i f_195090_ + j f_195091_ + k f_195092_ + l f_195093_ + m f_195094_ + n f_195095_ + o f_195096_ + p f_195055_ + q f_195056_ + r f_195057_ + s f_195058_ + t f_195059_ + u f_195060_ + v f_195061_ + w f_195062_ + x f_195063_ + y f_195064_ + z f_195065_ + ()V + static + ()V + a (Lnm;)V m_255127_ + static + 0 o p_256319_ +oq net/minecraft/data/worldgen/features/PileFeatures + a f_195099_ + b f_195100_ + c f_195101_ + d f_195102_ + e f_195103_ + ()V + static + ()V + a (Lnm;)V m_255052_ + static + 0 o p_256069_ +or net/minecraft/data/worldgen/features/TreeFeatures + A f_195140_ + B f_195141_ + C f_195142_ + D f_195106_ + E f_195107_ + F f_195108_ + G f_195109_ + H f_195110_ + I f_195111_ + J f_195112_ + K f_271485_ + a f_195117_ + b f_195118_ + c f_195119_ + d f_195120_ + e f_195121_ + f f_195122_ + g f_195123_ + h f_195124_ + i f_195125_ + j f_195126_ + k f_195127_ + l f_195128_ + m f_195129_ + n f_195130_ + o f_195131_ + p f_195132_ + q f_195133_ + r f_195134_ + s f_195135_ + t f_195136_ + u f_195137_ + v f_195138_ + w f_195139_ + x f_236762_ + y f_236763_ + z f_271469_ + ()V + static + ()V + a ()Ldno$a; m_195145_ + static + a (Lnm;)V m_255340_ + static + 0 o p_256317_ + a (Lcpn;Lcpn;IIII)Ldno$a; m_195146_ + static + 0 o p_195147_ + 1 o p_195148_ + 2 o p_195149_ + 3 o p_195150_ + 4 o p_195151_ + 5 o p_195152_ + b ()Ldno$a; m_195153_ + static + c ()Ldno$a; m_195154_ + static + d ()Ldno$a; m_195155_ + static + e ()Ldno$a; m_195156_ + static + f ()Ldno$a; m_271891_ + static +os net/minecraft/data/worldgen/features/VegetationFeatures + A f_195198_ + B f_195157_ + C f_195158_ + D f_195159_ + E f_195160_ + F f_195161_ + G f_195162_ + H f_195163_ + I f_195164_ + J f_195165_ + K f_195166_ + L f_195167_ + M f_195168_ + N f_195169_ + O f_195170_ + P f_195171_ + Q f_195172_ + R f_236764_ + a f_195173_ + b f_195174_ + c f_195175_ + d f_195176_ + e f_195177_ + f f_195178_ + g f_195179_ + h f_195180_ + i f_195181_ + j f_195182_ + k f_195183_ + l f_195184_ + m f_195185_ + n f_195186_ + o f_195187_ + p f_195188_ + q f_195189_ + r f_195190_ + s f_195191_ + t f_195192_ + u f_195193_ + v f_195194_ + w f_195195_ + x f_195196_ + y f_271409_ + z f_195197_ + ()V + static + ()V + a (Ldot;I)Ldnf; m_195202_ + static + 0 o p_195203_ + 1 o p_195204_ + a (Lnm;)V m_255402_ + static + 0 o p_256132_ +ot net/minecraft/data/worldgen/features/package-info +ou net/minecraft/data/worldgen/package-info +ov net/minecraft/data/worldgen/placement/AquaticPlacements + a f_195218_ + b f_195219_ + c f_195220_ + d f_195221_ + e f_195222_ + f f_195223_ + g f_195224_ + h f_195225_ + i f_195226_ + j f_195227_ + k f_195228_ + l f_195229_ + m f_195230_ + ()V + static + ()V + a (Lnm;)V m_255366_ + static + 0 o p_256301_ + a (I)Ljava/util/List; m_195233_ + static + 0 o p_195234_ +ow net/minecraft/data/worldgen/placement/CavePlacements + a f_195235_ + b f_195236_ + c f_195237_ + d f_195238_ + e f_195239_ + f f_195240_ + g f_195241_ + h f_195242_ + i f_195243_ + j f_195244_ + k f_195245_ + l f_195246_ + m f_195247_ + n f_195248_ + o f_195249_ + p f_195250_ + q f_195251_ + r f_236765_ + s f_236766_ + t f_236767_ + ()V + static + ()V + a (Lnm;)V m_254844_ + static + 0 o p_256565_ +ox net/minecraft/data/worldgen/placement/EndPlacements + a f_195254_ + b f_195255_ + c f_195256_ + d f_195257_ + ()V + static + ()V + a (Lnm;)V m_255215_ + static + 0 o p_255845_ +oy net/minecraft/data/worldgen/placement/MiscOverworldPlacements + a f_195260_ + b f_195261_ + c f_195262_ + d f_195263_ + e f_195264_ + f f_195265_ + g f_195266_ + h f_195267_ + i f_195268_ + j f_195269_ + k f_195270_ + l f_236768_ + m f_195271_ + n f_195272_ + o f_195273_ + p f_195274_ + q f_195275_ + r f_195276_ + ()V + static + ()V + a (Lnm;)V m_255422_ + static + 0 o p_255762_ +oz net/minecraft/data/worldgen/placement/NetherPlacements + a f_195279_ + b f_195280_ + c f_195281_ + d f_195282_ + e f_195283_ + f f_195284_ + g f_195285_ + h f_195286_ + i f_195287_ + j f_195288_ + k f_195289_ + l f_195290_ + m f_195291_ + n f_195292_ + o f_195293_ + p f_195294_ + q f_195295_ + r f_195296_ + s f_195298_ + t f_195299_ + ()V + static + ()V + a (Lnm;)V m_255430_ + static + 0 o p_256373_ +p net/minecraft/CrashReportCategory + a f_128137_ + b f_128138_ + c f_128139_ + (Ljava/lang/String;)V + 0 o p_178936_ + a (Ljava/lang/StringBuilder;)V m_128168_ + 0 o p_128169_ + a ()[Ljava/lang/StackTraceElement; m_128143_ + a (Lcmo;III)Ljava/lang/String; m_178942_ + static + 0 o p_178943_ + 1 o p_178944_ + 2 o p_178945_ + 3 o p_178946_ + a (I)I m_128148_ + 0 o p_128149_ + a (Lcmo;DDD)Ljava/lang/String; m_178937_ + static + 0 o p_178938_ + 1 o p_178939_ + 2 o p_178940_ + 3 o p_178941_ + a (Lcmo;Lgu;)Ljava/lang/String; m_178947_ + static + 0 o p_178948_ + 1 o p_178949_ + a (Ljava/lang/String;Ljava/lang/Object;)Lp; m_128159_ + 0 o p_128160_ + 1 o p_128161_ + a (Ljava/lang/StackTraceElement;Ljava/lang/StackTraceElement;)Z m_128156_ + 0 o p_128157_ + 1 o p_128158_ + a (Ljava/lang/String;Ljava/lang/Throwable;)V m_128162_ + 0 o p_128163_ + 1 o p_128164_ + a (Ljava/lang/String;Lq;)Lp; m_128165_ + 0 o p_128166_ + 1 o p_128167_ + a (Lp;Lcmo;Lgu;Ldcb;)V m_178950_ + static + 0 o p_178951_ + 1 o p_178952_ + 2 o p_178953_ + 3 o p_178954_ + b (Lcmo;Lgu;)Ljava/lang/String; m_178955_ + static + 0 o p_178956_ + 1 o p_178957_ + b (I)V m_128174_ + 0 o p_128175_ +p$a net/minecraft/CrashReportCategory$Entry + a f_128178_ + b f_128179_ + (Ljava/lang/String;Ljava/lang/Object;)V + 0 o p_128181_ + 1 o p_128182_ + a ()Ljava/lang/String; m_128183_ + b ()Ljava/lang/String; m_128184_ +pa net/minecraft/data/worldgen/placement/OrePlacements + A f_195302_ + B f_195303_ + C f_195304_ + D f_195305_ + E f_195306_ + F f_195307_ + G f_195308_ + H f_195309_ + I f_195310_ + J f_195311_ + K f_195312_ + L f_195313_ + M f_195314_ + a f_195315_ + b f_195316_ + c f_195317_ + d f_195318_ + e f_195319_ + f f_195320_ + g f_195321_ + h f_195322_ + i f_195323_ + j f_195324_ + k f_195325_ + l f_195326_ + m f_195327_ + n f_195328_ + o f_195329_ + p f_195330_ + q f_195331_ + r f_195332_ + s f_195333_ + t f_195334_ + u f_195335_ + v f_195336_ + w f_195337_ + x f_195338_ + y f_195339_ + z f_195340_ + ()V + static + ()V + a (Lnm;)V m_255119_ + static + 0 o p_256238_ + a (ILdrh;)Ljava/util/List; m_195343_ + static + 0 o p_195344_ + 1 o p_195345_ + a (Ldrh;Ldrh;)Ljava/util/List; m_195346_ + static + 0 o p_195347_ + 1 o p_195348_ + b (ILdrh;)Ljava/util/List; m_195349_ + static + 0 o p_195350_ + 1 o p_195351_ +pb net/minecraft/data/worldgen/placement/PlacementUtils + a f_195352_ + b f_195353_ + c f_195354_ + d f_195355_ + e f_195356_ + f f_195357_ + g f_195358_ + h f_195359_ + i f_195360_ + ()V + static + ()V + a (Ldko;Ldms;[Ldrh;)Lhe; m_206502_ + static + 0 o p_206503_ + 1 o p_206504_ + 2 o p_206505_ + a (Ldko;Ldms;)Lhe; m_206495_ + static + 0 o p_206496_ + 1 o p_206497_ + a (Lnm;Lacp;Lhe;[Ldrh;)V m_255206_ + static + 0 o p_256241_ + 1 o p_256614_ + 2 o p_255855_ + 3 o p_256413_ + a ()Ldrg; m_206517_ + static + a (Lhe;[Ldrh;)Lhe; m_206506_ + static + 0 o p_206507_ + 1 o p_206508_ + a (Ljava/lang/String;)Lacp; m_255070_ + static + 0 o p_256293_ + a (Lnm;)V m_255199_ + static + 0 o p_255779_ + a (IFI)Ldrh; m_195364_ + static + 0 o p_195365_ + 1 o p_195366_ + 2 o p_195367_ + a (Ldko;Ldms;Ldir;)Lhe; m_206498_ + static + 0 o p_206499_ + 1 o p_206500_ + 2 o p_206501_ + a (Lnm;Lacp;Lhe;Ljava/util/List;)V m_254943_ + static + 0 o p_255872_ + 1 o p_255820_ + 2 o p_255813_ + 3 o p_256042_ + a (Lcpn;)Ldqt; m_206493_ + static + 0 o p_206494_ +pc net/minecraft/data/worldgen/placement/TreePlacements + A f_195397_ + B f_195371_ + C f_271177_ + a f_195372_ + b f_195373_ + c f_195374_ + d f_195375_ + e f_195376_ + f f_195377_ + g f_195378_ + h f_236771_ + i f_271402_ + j f_195381_ + k f_195382_ + l f_195383_ + m f_195384_ + n f_195385_ + o f_195386_ + p f_195387_ + q f_195388_ + r f_236772_ + s f_195389_ + t f_195390_ + u f_195391_ + v f_195392_ + w f_195393_ + x f_195394_ + y f_195395_ + z f_195396_ + ()V + static + ()V + a (Lnm;)V m_254989_ + static + 0 o p_255688_ +pd net/minecraft/data/worldgen/placement/VegetationPlacements + A f_195471_ + B f_195400_ + C f_195401_ + D f_195402_ + E f_195403_ + F f_195404_ + G f_195405_ + H f_195406_ + I f_195407_ + J f_195408_ + K f_195409_ + L f_195410_ + M f_195411_ + N f_195412_ + O f_195413_ + P f_195414_ + Q f_195415_ + R f_195416_ + S f_195417_ + T f_197412_ + U f_195419_ + V f_271183_ + W f_195421_ + X f_195422_ + Y f_195423_ + Z f_195424_ + a f_195426_ + aa f_195425_ + ab f_195427_ + ac f_271098_ + ad f_195428_ + ae f_195429_ + af f_195430_ + ag f_195431_ + ah f_195432_ + ai f_195433_ + aj f_195434_ + ak f_195435_ + al f_195436_ + am f_195437_ + an f_195438_ + ao f_195439_ + ap f_195440_ + aq f_195441_ + ar f_195442_ + as f_195443_ + at f_195444_ + au f_195445_ + av f_195446_ + aw f_236773_ + ax f_195420_ + b f_195447_ + c f_195448_ + d f_195449_ + e f_195450_ + f f_195451_ + g f_195452_ + h f_195453_ + i f_195454_ + j f_195455_ + k f_195456_ + l f_195457_ + m f_195458_ + n f_195459_ + o f_195460_ + p f_195461_ + q f_195462_ + r f_195463_ + s f_198935_ + t f_195464_ + u f_195465_ + v f_195466_ + w f_195467_ + x f_195468_ + y f_195469_ + z f_195470_ + ()V + static + ()V + a (Ldrh;Lcpn;)Ljava/util/List; m_195481_ + static + 0 o p_195482_ + 1 o p_195483_ + a (Lnm;)V m_254976_ + static + 0 o p_255657_ + a (ILdrh;)Ljava/util/List; m_195476_ + static + 0 o p_195477_ + 1 o p_195478_ + a (Ldrh;)Ljava/util/List; m_195479_ + static + 0 o p_195480_ + a (I)Ljava/util/List; m_195474_ + static + 0 o p_195475_ + b (Ldrh;)Lcom/google/common/collect/ImmutableList$Builder; m_195484_ + static + 0 o p_195485_ +pe net/minecraft/data/worldgen/placement/VillagePlacements + a f_197413_ + b f_197414_ + c f_197415_ + d f_197416_ + e f_197417_ + f f_197418_ + g f_197419_ + h f_197420_ + i f_197421_ + j f_197422_ + k f_197423_ + l f_197424_ + m f_197425_ + ()V + static + ()V + a (Lnm;)V m_254998_ + static + 0 o p_256300_ +pf net/minecraft/data/worldgen/placement/package-info +pg net/minecraft/gametest/framework/AfterBatch + a ()Ljava/lang/String; m_177036_ +ph net/minecraft/gametest/framework/BeforeBatch + a ()Ljava/lang/String; m_177037_ +pi net/minecraft/gametest/framework/ExhaustedAttemptsException + (IILpr;)V + 0 o p_177039_ + 1 o p_177040_ + 2 o p_177041_ +pj net/minecraft/gametest/framework/GameTest + a ()I m_177042_ + b ()Ljava/lang/String; m_177043_ + c ()I m_177044_ + d ()Z m_177045_ + e ()Ljava/lang/String; m_177046_ + f ()J m_177047_ + g ()I m_177048_ + h ()I m_177049_ +pk net/minecraft/gametest/framework/GameTestAssertException + (Ljava/lang/String;)V + 0 o p_127492_ +pl net/minecraft/gametest/framework/GameTestAssertPosException + a f_127493_ + b f_127494_ + c f_127495_ + (Ljava/lang/String;Lgu;Lgu;J)V + 0 o p_177051_ + 1 o p_177052_ + 2 o p_177053_ + 3 o p_177054_ + a ()Ljava/lang/String; m_127496_ + b ()Lgu; m_177055_ + c ()Lgu; m_127497_ + getMessage ()Ljava/lang/String; getMessage +pm net/minecraft/gametest/framework/GameTestBatch + a f_177056_ + b f_127539_ + c f_127540_ + d f_127541_ + e f_177057_ + (Ljava/lang/String;Ljava/util/Collection;Ljava/util/function/Consumer;Ljava/util/function/Consumer;)V + 0 o p_177059_ + 1 o p_177060_ + 2 o p_177061_ + 3 o p_177062_ + a ()Ljava/lang/String; m_127546_ + a (Laif;)V m_127547_ + 0 o p_127548_ + b ()Ljava/util/Collection; m_127549_ + b (Laif;)V m_177063_ + 0 o p_177064_ +pn net/minecraft/gametest/framework/GameTestBatchRunner + a f_127550_ + b f_127551_ + c f_127552_ + d f_127553_ + e f_127554_ + f f_127555_ + g f_127557_ + h f_127560_ + ()V + static + (Ljava/util/Collection;Lgu;Lcvz;Laif;Lpx;I)V + 0 o p_127563_ + 1 o p_127564_ + 2 o p_127565_ + 3 o p_127566_ + 4 o p_127567_ + 5 o p_127568_ + a (Lcvz;Laif;Lpm;)Lcom/mojang/datafixers/util/Pair; m_177065_ + static + 0 o p_177066_ + 1 o p_177067_ + 2 o p_177068_ + a (Lcvz;Laif;Lqi;)Lpr; m_177069_ + static + 0 o p_177070_ + 1 o p_177071_ + 2 o p_177072_ + a (I)V m_127570_ + 0 o p_127571_ + a ()Ljava/util/List; m_127569_ + a (Ljava/util/Map;Lpr;)V m_177077_ + 0 o p_177078_ + 1 o p_177079_ + a (Lcom/mojang/datafixers/util/Pair;)Ljava/util/stream/Stream; m_177073_ + static + 0 o p_177074_ + a (Ljava/util/Collection;)Ljava/util/Map; m_177075_ + 0 o p_177076_ + b ()V m_127583_ +pn$1 net/minecraft/gametest/framework/GameTestBatchRunner$1 + a f_177080_ + b f_177081_ + c f_177082_ + d f_127586_ + (Lpn;Lqc;Lpm;I)V + 0 o p_177084_ + 1 o p_177085_ + 2 o p_177086_ + 3 o p_177087_ + a ()V m_177088_ + a (Lpr;)V m_8073_ + 0 o p_127590_ + b (Lpr;)V m_142378_ + 0 o p_177090_ + c (Lpr;)V m_8066_ + 0 o p_127592_ +po net/minecraft/gametest/framework/GameTestEvent + a f_127593_ + b f_127594_ + (Ljava/lang/Long;Ljava/lang/Runnable;)V + 0 o p_177092_ + 1 o p_177093_ + a (Ljava/lang/Runnable;)Lpo; m_177097_ + static + 0 o p_177098_ + a (JLjava/lang/Runnable;)Lpo; m_177094_ + static + 0 o p_177095_ + 1 o p_177096_ +pp net/minecraft/gametest/framework/GameTestGenerator +pq net/minecraft/gametest/framework/GameTestHelper + a f_127595_ + b f_177099_ + (Lpr;)V + 0 o p_127597_ + a (Lgu;Lbyo;)V m_246440_ + 0 o p_250131_ + 1 o p_251507_ + a (Lbfn;DDD)V m_177158_ + 0 o p_177159_ + 1 o p_177160_ + 2 o p_177161_ + 3 o p_177162_ + a (III)V m_177103_ + 0 o p_177104_ + 1 o p_177105_ + 2 o p_177106_ + a (Ldhk$a;II)I m_236774_ + 0 o p_236775_ + 1 o p_236776_ + 2 o p_236777_ + a (Ldcb;)Z m_177211_ + static + 0 o p_177212_ + a (IIILdcb;)V m_177112_ + 0 o p_177113_ + 1 o p_177114_ + 2 o p_177115_ + 3 o p_177116_ + a (Lgu;Lgu;)V m_177268_ + 0 o p_177269_ + 1 o p_177270_ + a (Ldde;Ljava/util/function/Predicate;Ldcb;)Z m_276723_ + static + 0 o p_277262_ + 1 o p_277263_ + 2 o p_277264_ + a (Ljava/lang/String;Lbfj;)V m_177286_ + 0 o p_177287_ + 1 o p_177288_ + a (Ldrs;Lgu;)V m_177224_ + 0 o p_177225_ + 1 o p_177226_ + a (Lbgb;Lgu;F)Lpv; m_177185_ + 0 o p_177186_ + 1 o p_177187_ + 2 o p_177188_ + a (Lbfj;Ljava/util/function/Predicate;Ljava/lang/String;)V m_177152_ + 0 o p_177153_ + 1 o p_177154_ + 2 o p_177155_ + a (Lcfu;FFF)Lbvh; m_177189_ + 0 o p_177190_ + 1 o p_177191_ + 2 o p_177192_ + 3 o p_177193_ + a (Ljava/lang/String;)V m_177284_ + 0 o p_177285_ + a (Lbfn;Leei;Leei;)V m_246385_ + 0 o p_252010_ + 1 o p_249488_ + 2 o p_251186_ + a (JLgu;Lcfu;)V m_177123_ + 0 o p_177124_ + 1 o p_177125_ + 2 o p_177126_ + a (Lgu;Lbfn;Ljava/util/function/Function;Ljava/lang/Object;)V m_177237_ + 0 o p_177238_ + 1 o p_177239_ + 2 o p_177240_ + 3 o p_177241_ + a (Lbfn;FFF)Lbfj; m_177163_ + 0 o p_177164_ + 1 o p_177165_ + 2 o p_177166_ + 3 o p_177167_ + a (JLjava/lang/Runnable;)V m_177127_ + 0 o p_177128_ + 1 o p_177129_ + a (Lbfn;Lgu;ID)V m_239371_ + 0 o p_239372_ + 1 o p_239373_ + 2 o p_239374_ + 3 o p_239375_ + a (Lbfn;Lgu;D)V m_177179_ + 0 o p_177180_ + 1 o p_177181_ + 2 o p_177182_ + a (Ljava/lang/Runnable;)V m_177279_ + 0 o p_177280_ + a (Lgu;Ldde;Ljava/util/function/Predicate;Ljava/lang/String;)V m_177259_ + 0 o p_177260_ + 1 o p_177261_ + 2 o p_177262_ + 3 o p_177263_ + a (Lbfj;Lgu;)V m_177140_ + 0 o p_177141_ + 1 o p_177142_ + a (I)V m_177101_ + 0 o p_177102_ + a (Lbfj;Lgu;Lgu;)Lpl; m_177143_ + 0 o p_177144_ + 1 o p_177145_ + 2 o p_177146_ + a (Leei;)Leei; m_177227_ + 0 o p_177228_ + a (Lgu;Ldcb;)V m_177252_ + 0 o p_177253_ + 1 o p_177254_ + a (Ljava/lang/String;Lgu;)V m_177289_ + 0 o p_177290_ + 1 o p_177291_ + a (Lbfj;)Z m_177130_ + static + 0 o p_177131_ + a (JLgu;)V m_177120_ + 0 o p_177121_ + 1 o p_177122_ + a (Lcfu;Lgu;)Lbvh; m_246755_ + 0 o p_251435_ + 1 o p_250287_ + a (Lbfn;Leei;)Lbfj; m_177173_ + 0 o p_177174_ + 1 o p_177175_ + a (Lcfu;Lgu;DI)V m_177198_ + 0 o p_177199_ + 1 o p_177200_ + 2 o p_177201_ + 3 o p_177202_ + a (Lgu;Lcpn;)V m_177245_ + 0 o p_177246_ + 1 o p_177247_ + a (Lgu;Lcpn;Lcpn;)Z m_177248_ + 0 o p_177249_ + 1 o p_177250_ + 2 o p_177251_ + a (Lcpn;III)V m_177203_ + 0 o p_177204_ + 1 o p_177205_ + 2 o p_177206_ + 3 o p_177207_ + a (Lgu;Ljava/util/function/Predicate;Ljava/lang/String;)V m_177271_ + 0 o p_177272_ + 1 o p_177273_ + 2 o p_177274_ + a (Lcpn;Lgu;)V m_177208_ + 0 o p_177209_ + 1 o p_177210_ + a (Lgu;Ljava/util/function/Predicate;Ljava/util/function/Supplier;)V m_177275_ + 0 o p_177276_ + 1 o p_177277_ + 2 o p_177278_ + a (Lcfu;Lcfz;)Z m_263447_ + static + 0 o p_263480_ + 1 o p_263481_ + a (Ljava/lang/Class;)V m_289214_ + 0 o p_289538_ + a (Lbfn;III)Lbfj; m_177168_ + 0 o p_177169_ + 1 o p_177170_ + 2 o p_177171_ + 3 o p_177172_ + a (Lgu;Lbyo;Leee;)V m_260894_ + 0 o p_262023_ + 1 o p_261901_ + 2 o p_262040_ + a (Lgu;Ldrs;Lgu;)V m_177264_ + 0 o p_177265_ + 1 o p_177266_ + 2 o p_177267_ + a (Lgu;Lcfu;)V m_177242_ + 0 o p_177243_ + 1 o p_177244_ + a (Lgu;Lbfn;Lcfu;)V m_263450_ + 0 o p_263501_ + 1 o p_263510_ + 2 o p_263517_ + a (Lgu;Ldde;Ljava/lang/Comparable;)V m_177255_ + 0 o p_177256_ + 1 o p_177257_ + 2 o p_177258_ + a (Lgu;J)V m_177234_ + 0 o p_177235_ + 1 o p_177236_ + a (Ljava/lang/Object;)Z m_263446_ + static + 0 o p_263479_ + a (Lbfj;III)V m_177132_ + 0 o p_177133_ + 1 o p_177134_ + 2 o p_177135_ + 3 o p_177136_ + a (Leei;Lbfj;)Z m_177229_ + static + 0 o p_177230_ + 1 o p_177231_ + a ()Laif; m_177100_ + a (Lbfn;Lgu;)Lbfj; m_177176_ + 0 o p_177177_ + 1 o p_177178_ + a (Lbyo;Lcfz;Lgu;Lha;)V m_261323_ + 0 o p_261595_ + 1 o p_262007_ + 2 o p_261973_ + 3 o p_262008_ + a (Ljava/util/function/Predicate;Ldcb;)Z m_177294_ + static + 0 o p_177295_ + 1 o p_177296_ + a (Lgu;Lha;Ljava/util/function/IntPredicate;Ljava/util/function/Supplier;)V m_289616_ + 0 o p_289644_ + 1 o p_289642_ + 2 o p_289645_ + 3 o p_289684_ + a (ZLjava/lang/String;)V m_246336_ + 0 o p_249380_ + 1 o p_248720_ + a (Ljava/lang/Runnable;J)V m_177281_ + 0 o p_177282_ + 1 o p_177283_ + a (Ldcb;Lcpn;Lcpn;)Z m_177213_ + static + 0 o p_177214_ + 1 o p_177215_ + 2 o p_177216_ + a (ILjava/lang/Runnable;)V m_177117_ + 0 o p_177118_ + 1 o p_177119_ + a (Lbfn;)V m_177156_ + 0 o p_177157_ + a (Ljava/util/function/Consumer;)V m_177292_ + 0 o p_177293_ + a (Lbfj;Ljava/util/function/Function;Ljava/lang/String;Ljava/lang/Object;)V m_177147_ + 0 o p_177148_ + 1 o p_177149_ + 2 o p_177150_ + 3 o p_177151_ + a (Lcfu;Lgu;D)V m_177194_ + 0 o p_177195_ + 1 o p_177196_ + 2 o p_177197_ + a (Lgu;)Ldcb; m_177232_ + 0 o p_177233_ + a (IIILcpn;)V m_177107_ + 0 o p_177108_ + 1 o p_177109_ + 2 o p_177110_ + 3 o p_177111_ + a (Lbfz;)Lbfz; m_177183_ + 0 o p_177184_ + a (Lbfj;Lbfj;)Z m_177137_ + static + 0 o p_177138_ + 1 o p_177139_ + b (JLjava/lang/Runnable;)V m_177306_ + 0 o p_177307_ + 1 o p_177308_ + b (Lgu;Lbfn;Lcfu;)V m_263477_ + 0 o p_263495_ + 1 o p_263521_ + 2 o p_263502_ + b (Ljava/lang/Runnable;J)V m_177363_ + 0 o p_177364_ + 1 o p_177365_ + b (Lcpn;III)V m_177336_ + 0 o p_177337_ + 1 o p_177338_ + 2 o p_177339_ + 3 o p_177340_ + b (Ljava/lang/Runnable;)V m_177361_ + 0 o p_177362_ + b (Lbfn;FFF)Lbgb; m_177316_ + 0 o p_177317_ + 1 o p_177318_ + 2 o p_177319_ + 3 o p_177320_ + b (Leei;)Leei; m_247203_ + 0 o p_251543_ + b (Lcfu;Lgu;D)V m_236778_ + 0 o p_236779_ + 1 o p_236780_ + 2 o p_236781_ + b (Lgu;)Lczn; m_177347_ + 0 o p_177348_ + b (Lbfn;DDD)V m_177311_ + 0 o p_177312_ + 1 o p_177313_ + 2 o p_177314_ + 3 o p_177315_ + b (Lbgb;Lgu;F)V m_177332_ + 0 o p_177333_ + 1 o p_177334_ + 2 o p_177335_ + b (III)V m_177302_ + 0 o p_177303_ + 1 o p_177304_ + 2 o p_177305_ + b (ZLjava/lang/String;)V m_277053_ + 0 o p_277974_ + 1 o p_277933_ + b (Lgu;Ljava/util/function/Predicate;Ljava/util/function/Supplier;)V m_177357_ + 0 o p_177358_ + 1 o p_177359_ + 2 o p_177360_ + b (Lcpn;Lgu;)V m_177341_ + 0 o p_177342_ + 1 o p_177343_ + b (Lbfn;III)Lbgb; m_177321_ + 0 o p_177322_ + 1 o p_177323_ + 2 o p_177324_ + 3 o p_177325_ + b (Lgu;Lcfu;)V m_177354_ + 0 o p_177355_ + 1 o p_177356_ + b (Lbfn;)V m_177309_ + 0 o p_177310_ + b (Ljava/lang/String;)Ljava/lang/String; m_177366_ + static + 0 o p_177367_ + b (Leei;Lbfj;)Z m_177344_ + static + 0 o p_177345_ + 1 o p_177346_ + b (Lbfn;Lgu;)Lbgb; m_177329_ + 0 o p_177330_ + 1 o p_177331_ + b (Lbfn;Lgu;D)Ljava/util/List; m_238399_ + 0 o p_238400_ + 1 o p_238401_ + 2 o p_238402_ + b (Lbfn;Leei;)Lbgb; m_177326_ + 0 o p_177327_ + 1 o p_177328_ + b (Lgu;Lbfn;Ljava/util/function/Function;Ljava/lang/Object;)V m_177349_ + 0 o p_177350_ + 1 o p_177351_ + 2 o p_177352_ + 3 o p_177353_ + b (Lbfz;)Lbfz; m_286046_ + 0 o p_286794_ + b ()V m_177301_ + c (Lgu;Lbfn;Ljava/util/function/Function;Ljava/lang/Object;)V m_177387_ + 0 o p_177388_ + 1 o p_177389_ + 2 o p_177390_ + 3 o p_177391_ + c ()Lbyo; m_246554_ + c (Ljava/lang/Runnable;)V m_177392_ + 0 o p_177393_ + c (Lgu;)V m_177385_ + 0 o p_177386_ + c (Lcpn;III)V m_177377_ + 0 o p_177378_ + 1 o p_177379_ + 2 o p_177380_ + 3 o p_177381_ + c (Ljava/lang/String;)Ljava/lang/String; m_177394_ + static + 0 o p_177395_ + c (Lbfn;Lgu;)V m_177374_ + 0 o p_177375_ + 1 o p_177376_ + c (Lcpn;Lgu;)V m_177382_ + 0 o p_177383_ + 1 o p_177384_ + c (Lbfn;III)V m_177369_ + 0 o p_177370_ + 1 o p_177371_ + 2 o p_177372_ + 3 o p_177373_ + d ()Lbyo; m_177368_ + d (Lgu;)V m_177408_ + 0 o p_177409_ + d (Ljava/lang/Runnable;)V m_177410_ + 0 o p_177411_ + d (Lbfn;Lgu;)V m_177402_ + 0 o p_177403_ + 1 o p_177404_ + d (Lcpn;Lgu;)V m_177405_ + 0 o p_177406_ + 1 o p_177407_ + d (Lbfn;III)V m_177397_ + 0 o p_177398_ + 1 o p_177399_ + 2 o p_177400_ + 3 o p_177401_ + e (Lgu;)V m_177421_ + 0 o p_177422_ + e (Lbfn;Lgu;)V m_177418_ + 0 o p_177419_ + 1 o p_177420_ + e (Lbfn;III)V m_177413_ + 0 o p_177414_ + 1 o p_177415_ + 2 o p_177416_ + 3 o p_177417_ + e ()Laig; m_287220_ + e (Ljava/lang/Runnable;)V m_177423_ + 0 o p_177424_ + f (Lgu;)V m_177434_ + 0 o p_177435_ + f ()V m_177396_ + f (Lbfn;Lgu;)V m_177431_ + 0 o p_177432_ + 1 o p_177433_ + f (Lbfn;III)V m_177426_ + 0 o p_177427_ + 1 o p_177428_ + 2 o p_177429_ + 3 o p_177430_ + g (Lgu;)V m_177440_ + 0 o p_177441_ + g (Lbfn;Lgu;)V m_177437_ + 0 o p_177438_ + 1 o p_177439_ + g ()V m_177412_ + h (Lgu;)V m_177446_ + 0 o p_177447_ + h ()Lpv; m_177425_ + h (Lbfn;Lgu;)V m_177443_ + 0 o p_177444_ + 1 o p_177445_ + i (Lgu;)Lgu; m_177449_ + 0 o p_177450_ + i ()J m_177436_ + j (Lgu;)Lgu; m_177452_ + 0 o p_177453_ + j ()V m_177442_ + k (Lgu;)V m_177455_ + 0 o p_177456_ + k ()Leed; m_177448_ + l (Lgu;)V m_177458_ + 0 o p_177459_ + l ()Leed; m_177451_ + m ()Ljava/lang/Exception; m_177454_ + static + n ()Ljava/lang/String; m_177457_ + static +pq$1 net/minecraft/gametest/framework/GameTestHelper$1 + b f_177460_ + (Lpq;Lcmm;Lgu;FLcom/mojang/authlib/GameProfile;)V + 0 o p_251411_ + 1 o p_249697_ + 2 o p_250404_ + 3 o p_249940_ + 4 o p_248826_ + G_ ()Z m_5833_ + f ()Z m_7500_ +pq$2 net/minecraft/gametest/framework/GameTestHelper$2 + b f_244589_ + (Lpq;Lcmm;Lgu;FLcom/mojang/authlib/GameProfile;)V + 0 o p_251928_ + 1 o p_251624_ + 2 o p_248786_ + 3 o p_251484_ + 4 o p_248967_ + G_ ()Z m_5833_ + f ()Z m_7500_ + g ()Z m_7578_ +pq$3 net/minecraft/gametest/framework/GameTestHelper$3 + b f_286944_ + (Lpq;Lnet/minecraft/server/MinecraftServer;Laif;Lcom/mojang/authlib/GameProfile;)V + 0 o p_287641_ + 1 o p_287719_ + 2 o p_287664_ + 3 o p_287763_ + G_ ()Z m_5833_ + f ()Z m_7500_ +pr net/minecraft/gametest/framework/GameTestInfo + a f_127598_ + b f_127599_ + c f_127600_ + d f_127601_ + e f_127602_ + f f_127603_ + g f_127604_ + h f_127605_ + i f_127606_ + j f_127607_ + k f_127608_ + l f_127609_ + m f_127610_ + n f_127611_ + o f_177469_ + (Lqi;Lcvz;Laif;)V + 0 o p_127613_ + 1 o p_127614_ + 2 o p_127615_ + A ()V m_177470_ + B ()V m_127649_ + C ()Ldba; m_177471_ + D ()V m_127650_ + a (Lpv;)V m_177475_ + 0 o p_177476_ + a (JLjava/lang/Runnable;)V m_177472_ + 0 o p_177473_ + 1 o p_177474_ + a ()V m_127616_ + a (Lps;)V m_127624_ + 0 o p_127625_ + a (Ljava/lang/Throwable;)V m_127622_ + 0 o p_127623_ + a (Lgu;)V m_127617_ + 0 o p_127618_ + a (Lgu;I)V m_127619_ + 0 o p_127620_ + 1 o p_127621_ + b (Lpv;)V m_177477_ + 0 o p_177478_ + b (Lps;)V m_127629_ + 0 o p_127630_ + b ()V m_127628_ + c ()Ljava/lang/String; m_127633_ + c (Lps;)V m_177479_ + 0 o p_177480_ + d (Lps;)V m_177481_ + 0 o p_177482_ + d ()Lgu; m_127636_ + e ()Lhz; m_177483_ + f ()Leed; m_177484_ + g ()Laif; m_127637_ + h ()Z m_127638_ + i ()Z m_127639_ + j ()Z m_127640_ + k ()Z m_127641_ + l ()J m_177485_ + m ()V m_177486_ + n ()Ljava/lang/Throwable; m_127642_ + o ()V m_177487_ + p ()J m_177488_ + q ()Lpv; m_177489_ + r ()Z m_127643_ + s ()Z m_127644_ + t ()Ljava/lang/String; m_127645_ + toString ()Ljava/lang/String; toString + u ()Lcvz; m_127646_ + v ()Lqi; m_127648_ + w ()I m_177490_ + x ()Z m_177491_ + y ()I m_177492_ + z ()I m_177493_ +ps net/minecraft/gametest/framework/GameTestListener + a (Lpr;)V m_8073_ + 0 o p_127651_ + b (Lpr;)V m_142378_ + 0 o p_177494_ + c (Lpr;)V m_8066_ + 0 o p_127652_ +pt net/minecraft/gametest/framework/GameTestRegistry + a f_177495_ + b f_177496_ + c f_177497_ + d f_177498_ + e f_177499_ + ()V + static + ()V + a ()Ljava/util/Collection; m_127658_ + static + a (Ljava/lang/String;Lqi;)Z m_127661_ + static + 0 o p_127662_ + 1 o p_127663_ + a (Ljava/lang/reflect/Method;Ljava/lang/Class;Ljava/util/function/Function;Ljava/util/Map;)V m_177505_ + static + 0 o p_177506_ + 1 o p_177507_ + 2 o p_177508_ + 3 o p_177509_ + a (Ljava/lang/Class;)V m_177501_ + static + 0 o p_177502_ + a (Lqi;)V m_127664_ + static + 0 o p_127665_ + a (Ljava/lang/reflect/Method;Ljava/lang/Object;)V m_177510_ + static + 0 o p_177511_ + 1 o p_177512_ + a (Ljava/lang/String;)Ljava/util/Collection; m_127659_ + static + 0 o p_127660_ + a (Ljava/lang/reflect/Method;)V m_177503_ + static + 0 o p_177504_ + a (Lqi;Ljava/lang/String;)Z m_127666_ + static + 0 o p_127667_ + 1 o p_127668_ + b (Ljava/lang/String;)Z m_127670_ + static + 0 o p_127671_ + b (Ljava/lang/String;Lqi;)Z m_127672_ + static + 0 o p_127673_ + 1 o p_127674_ + b (Ljava/lang/reflect/Method;)Ljava/util/Collection; m_177513_ + static + 0 o p_177514_ + b ()Ljava/util/Collection; m_127669_ + static + c ()Ljava/util/Collection; m_127675_ + static + c (Ljava/lang/reflect/Method;)Lqi; m_177515_ + static + 0 o p_177516_ + c (Ljava/lang/String;)Ljava/util/function/Consumer; m_127676_ + static + 0 o p_127677_ + d (Ljava/lang/reflect/Method;)Ljava/util/function/Consumer; m_177519_ + static + 0 o p_177520_ + d (Ljava/lang/String;)Ljava/util/function/Consumer; m_177517_ + static + 0 o p_177518_ + d ()V m_127678_ + static + e (Ljava/lang/String;)Ljava/util/Optional; m_127679_ + static + 0 o p_127680_ + f (Ljava/lang/String;)Lqi; m_127681_ + static + 0 o p_127682_ +pu net/minecraft/gametest/framework/GameTestRunner + a f_177521_ + b f_177522_ + c f_177523_ + d f_177524_ + e f_177525_ + ()V + a (Laif;Lgu;Lpx;I)V m_127694_ + static + 0 o p_127695_ + 1 o p_127696_ + 2 o p_127697_ + 3 o p_127698_ + a (Lpr;Lgu;Lpx;)V m_127742_ + static + 0 o p_127743_ + 1 o p_127744_ + 2 o p_127745_ + a (Ljava/util/Collection;Lgu;Lcvz;Laif;Lpx;I)Ljava/util/Collection; m_127726_ + static + 0 o p_127727_ + 1 o p_127728_ + 2 o p_127729_ + 3 o p_127730_ + 4 o p_127731_ + 5 o p_127732_ + a (Ljava/lang/String;Lorg/apache/commons/lang3/mutable/MutableInt;Ljava/util/function/Consumer;Ljava/util/function/Consumer;Ljava/util/List;)Lpm; m_177530_ + static + 0 o p_177531_ + 1 o p_177532_ + 2 o p_177533_ + 3 o p_177534_ + 4 o p_177535_ + a (Ljava/util/Collection;)Ljava/util/Collection; m_127724_ + static + 0 o p_127725_ + a (Laif;Lgu;)V m_177527_ + static + 0 o p_177528_ + 1 o p_177529_ + a (Laif;)V m_127685_ + static + 0 o p_127686_ + a (Ljava/util/Map$Entry;)Ljava/util/stream/Stream; m_177536_ + static + 0 o p_177537_ + b (Ljava/util/Collection;Lgu;Lcvz;Laif;Lpx;I)Ljava/util/Collection; m_127752_ + static + 0 o p_127753_ + 1 o p_127754_ + 2 o p_127755_ + 3 o p_127756_ + 4 o p_127757_ + 5 o p_127758_ + b (Laif;Lgu;)Z m_177538_ + static + 0 o p_177539_ + 1 o p_177540_ +pv net/minecraft/gametest/framework/GameTestSequence + a f_127774_ + b f_127775_ + c f_127776_ + (Lpr;)V + 0 o p_177542_ + a (JLjava/lang/Runnable;)Lpv; m_177549_ + 0 o p_177550_ + 1 o p_177551_ + a (Ljava/util/function/Supplier;)V m_177554_ + 0 o p_177555_ + a (ILjava/lang/Runnable;)Lpv; m_177546_ + 0 o p_177547_ + 1 o p_177548_ + a (I)Lpv; m_177544_ + 0 o p_177545_ + a (Ljava/lang/Runnable;)Lpv; m_177552_ + 0 o p_177553_ + a ()V m_177543_ + a (J)V m_127777_ + 0 o p_127778_ + a (Lpv$a;)V m_177556_ + 0 o p_177557_ + b (ILjava/lang/Runnable;)Lpv; m_177559_ + 0 o p_177560_ + 1 o p_177561_ + b (Ljava/lang/Runnable;)Lpv; m_177562_ + 0 o p_177563_ + b (J)V m_127779_ + 0 o p_127780_ + b (Ljava/util/function/Supplier;)V m_177564_ + 0 o p_177565_ + b ()Lpv$a; m_177558_ + c (ILjava/lang/Runnable;)V m_177567_ + 0 o p_177568_ + 1 o p_177569_ + c (Ljava/lang/Runnable;)V m_177570_ + 0 o p_177571_ + c (J)V m_127781_ + 0 o p_127782_ + c ()V m_177566_ + static + d (ILjava/lang/Runnable;)V m_177572_ + 0 o p_177573_ + 1 o p_177574_ + d (Ljava/lang/Runnable;)V m_177575_ + 0 o p_177576_ +pv$a net/minecraft/gametest/framework/GameTestSequence$Condition + a f_177577_ + b f_177578_ + c f_177579_ + (Lpv;)V + 0 o p_177581_ + a ()V m_177582_ + a (J)V m_177583_ + 0 o p_177584_ +pw net/minecraft/gametest/framework/GameTestServer + n f_177585_ + o f_177586_ + p f_236789_ + q f_177587_ + r f_177588_ + s f_177589_ + t f_243964_ + u f_177591_ + ()V + static + (Ljava/lang/Thread;Ldyy$c;Laki;Ladk;Ljava/util/Collection;Lgu;)V + 0 o p_206597_ + 1 o p_206598_ + 2 o p_206599_ + 3 o p_206600_ + 4 o p_206601_ + 5 o p_206602_ + N_ ()Z m_6102_ + a (Ljava/lang/Thread;Ldyy$c;Laki;Ljava/util/Collection;Lgu;)Lpw; m_206606_ + static + 0 o p_206607_ + 1 o p_206608_ + 2 o p_206609_ + 3 o p_206610_ + 4 o p_206611_ + a (Lab;)Lab; m_142424_ + 0 o p_177613_ + a (Lcom/mojang/authlib/GameProfile;)Z m_7779_ + 0 o p_177617_ + a (Lo;)V m_7268_ + 0 o p_177623_ + a (Ladj$c;Lcmq;Ljava/util/concurrent/Executor;)Ljava/util/concurrent/CompletableFuture; m_244785_ + static + 0 o p_248043_ + 1 o p_248044_ + 2 o p_248045_ + a (Lcmq;Ladj$a;)Ladj$b; m_257120_ + static + 0 o p_258204_ + 1 o p_258205_ + a (Ljava/util/function/BooleanSupplier;)V m_5705_ + 0 o p_177619_ + a (Lcmi;)V m_177614_ + static + 0 o p_177615_ + a (Lpr;)V m_206612_ + static + 0 o p_206613_ + b (Laif;)V m_177624_ + 0 o p_177625_ + b (Lpr;)V m_206614_ + static + 0 o p_206615_ + bf ()Z m_177628_ + e ()Z m_7038_ + g ()V m_6988_ + h ()Z m_7035_ + i ()I m_7022_ + j ()I m_7034_ + k ()Z m_6983_ + l ()Z m_6982_ + m ()I m_7032_ + n ()Z m_6994_ + o ()Z m_6993_ + p ()Z m_6992_ + p_ ()V m_130012_ +pw$1 net/minecraft/gametest/framework/GameTestServer$1 + a f_177641_ + (Lpw;Lnet/minecraft/server/MinecraftServer;Lhl;Ldzb;I)V + 0 o p_250202_ + 1 o p_249562_ + 2 o p_251417_ + 3 o p_251854_ + 4 o p_251716_ +px net/minecraft/gametest/framework/GameTestTicker + a f_177648_ + b f_127784_ + ()V + static + ()V + a ()V m_127787_ + a (Lpr;)V m_127788_ + 0 o p_127789_ + b ()V m_127790_ +py net/minecraft/gametest/framework/GameTestTimeoutException + (Ljava/lang/String;)V + 0 o p_127792_ +pz net/minecraft/gametest/framework/GlobalTestReporter + a f_177649_ + ()V + static + ()V + a ()V m_177652_ + static + a (Lpr;)V m_177653_ + static + 0 o p_177654_ + a (Lqk;)V m_177655_ + static + 0 o p_177656_ + b (Lpr;)V m_177657_ + static + 0 o p_177658_ +q net/minecraft/CrashReportDetail +qa net/minecraft/gametest/framework/JUnitLikeTestReporter + a f_177659_ + b f_177660_ + c f_177661_ + d f_177662_ + (Ljava/io/File;)V + 0 o p_177664_ + a (Ljava/io/File;)V m_177666_ + 0 o p_177667_ + a (Lpr;Ljava/lang/String;)Lorg/w3c/dom/Element; m_177670_ + 0 o p_177671_ + 1 o p_177672_ + a ()V m_142411_ + a (Lpr;)V m_8014_ + 0 o p_177669_ + b (Lpr;)V m_142335_ + 0 o p_177674_ +qb net/minecraft/gametest/framework/LogTestReporter + a f_127793_ + ()V + static + ()V + a (Lpr;)V m_8014_ + 0 o p_127797_ + b (Lpr;)V m_142335_ + 0 o p_177676_ +qc net/minecraft/gametest/framework/MultipleTestTracker + a f_177677_ + b f_177678_ + c f_177679_ + d f_177680_ + e f_177681_ + f f_127798_ + g f_127799_ + (Ljava/util/Collection;)V + 0 o p_127802_ + ()V + a (Lps;Lpr;)V m_127813_ + static + 0 o p_127814_ + 1 o p_127815_ + a (Ljava/util/function/Consumer;)V m_127807_ + 0 o p_127808_ + a ()I m_127803_ + a (Ljava/lang/StringBuffer;Lpr;)V m_127804_ + static + 0 o p_127805_ + 1 o p_127806_ + a (Lpr;)V m_127809_ + 0 o p_127810_ + a (Lps;)V m_127811_ + 0 o p_127812_ + b ()I m_127816_ + c ()I m_127817_ + d ()Z m_127818_ + e ()Z m_127819_ + f ()Ljava/util/Collection; m_177682_ + g ()Ljava/util/Collection; m_177683_ + h ()I m_127820_ + i ()Z m_127821_ + j ()Ljava/lang/String; m_127822_ + toString ()Ljava/lang/String; toString +qc$1 net/minecraft/gametest/framework/MultipleTestTracker$1 + a f_127824_ + b f_127825_ + (Lqc;Ljava/util/function/Consumer;)V + 0 o p_127827_ + 1 o p_127828_ + a (Lpr;)V m_8073_ + 0 o p_127830_ + b (Lpr;)V m_142378_ + 0 o p_177685_ + c (Lpr;)V m_8066_ + 0 o p_127832_ +qd net/minecraft/gametest/framework/ReportGameListener + a f_177686_ + b f_177687_ + c f_177688_ + d f_177689_ + e f_177690_ + (Lpr;Lpx;Lgu;)V + 0 o p_177692_ + 1 o p_177693_ + 2 o p_177694_ + a (Lpr;Ljava/lang/String;)V m_177722_ + static + 0 o p_177723_ + 1 o p_177724_ + a (Laig;)Z m_177704_ + static + 0 o p_177705_ + a (Laif;Ln;Ljava/lang/String;)V m_177700_ + static + 0 o p_177701_ + 1 o p_177702_ + 2 o p_177703_ + a (Lpr;Lcpn;)V m_177719_ + static + 0 o p_177720_ + 1 o p_177721_ + a (Ljava/lang/String;ZLjava/lang/String;)Lcfz; m_177710_ + static + 0 o p_177711_ + 1 o p_177712_ + 2 o p_177713_ + a (Ljava/lang/StringBuffer;Ljava/lang/String;)V m_177714_ + static + 0 o p_177715_ + 1 o p_177716_ + a (Laif;Lgu;Ljava/lang/String;)V m_177696_ + static + 0 o p_177697_ + 1 o p_177698_ + 2 o p_177699_ + a (Ljava/lang/String;Ln;Laig;)V m_177706_ + static + 0 o p_177707_ + 1 o p_177708_ + 2 o p_177709_ + a ()V m_177695_ + a (Lpr;)V m_8073_ + 0 o p_177718_ + a (Lpr;Ljava/lang/Throwable;)V m_177725_ + static + 0 o p_177726_ + 1 o p_177727_ + b (Lpr;Ljava/lang/String;)V m_177730_ + static + 0 o p_177731_ + 1 o p_177732_ + b (Lpr;Ljava/lang/Throwable;)V m_177733_ + static + 0 o p_177734_ + 1 o p_177735_ + b (Lpr;)V m_142378_ + 0 o p_177729_ + c (Lpr;)V m_8066_ + 0 o p_177737_ + c (Lpr;Ljava/lang/String;)V m_177738_ + static + 0 o p_177739_ + 1 o p_177740_ +qe net/minecraft/gametest/framework/StructureUtils + a f_177741_ + b f_127833_ + c f_177742_ + d f_177743_ + ()V + static + ()V + a (Lgu;Lgu;)I m_177757_ + static + 0 o p_177758_ + 1 o p_177759_ + a (Ljava/lang/String;Lgu;Lcvz;ILaif;Z)Ldba; m_127883_ + static + 0 o p_127884_ + 1 o p_127885_ + 2 o p_127886_ + 3 o p_127887_ + 4 o p_127888_ + 5 o p_127889_ + a (Lgu;Laif;Lgu;)Z m_177753_ + static + 0 o p_177754_ + 1 o p_177755_ + 2 o p_177756_ + a (Ljava/nio/file/Path;)Lqr; m_127902_ + static + 0 o p_127903_ + a (Ldba;)Leed; m_127847_ + static + 0 o p_127848_ + a (Ldrs;ILaif;)V m_127849_ + static + 0 o p_127850_ + 1 o p_127851_ + 2 o p_127852_ + a (Ljava/lang/String;Lgu;Lhz;Lcvz;Laif;)V m_177764_ + static + 0 o p_177765_ + 1 o p_177766_ + 2 o p_177767_ + 3 o p_177768_ + 4 o p_177769_ + a ([Ljava/lang/String;)V main + static + 0 o p_177771_ + a (Ljava/lang/String;Lgu;Lcvz;Laif;Z)Ldba; m_127890_ + static + 0 o p_127891_ + 1 o p_127892_ + 2 o p_127893_ + 3 o p_127894_ + 4 o p_127895_ + a (ILaif;Lgu;)V m_177745_ + static + 0 o p_177746_ + 1 o p_177747_ + 2 o p_177748_ + a (Lgu;Lgu;Laif;)Z m_127867_ + static + 0 o p_127868_ + 1 o p_127869_ + 2 o p_127870_ + a (I)Lcvz; m_127835_ + static + 0 o p_127836_ + a (Lcvz;)I m_177751_ + static + 0 o p_177752_ + a (Lgu;Lhz;Lcvz;)Ldrs; m_177760_ + static + 0 o p_177761_ + 1 o p_177762_ + 2 o p_177763_ + a (Lbfj;)Z m_177749_ + static + 0 o p_177750_ + a (Ljava/lang/String;Laif;)Ldvt; m_127880_ + static + 0 o p_127881_ + 1 o p_127882_ + a (ILgu;Laif;)V m_127841_ + static + 0 o p_127842_ + 1 o p_127843_ + 2 o p_127844_ + a (Lgu;Laif;)V m_127857_ + static + 0 o p_127858_ + 1 o p_127859_ + a (Lgu;Lgu;Lcvz;Laif;)V m_127875_ + static + 0 o p_127876_ + 1 o p_127877_ + 2 o p_127878_ + 3 o p_127879_ + a (Lgu;ILaif;)Ljava/util/Optional; m_127853_ + static + 0 o p_127854_ + 1 o p_127855_ + 2 o p_127856_ + b (Lgu;ILaif;)Lgu; m_127906_ + static + 0 o p_127907_ + 1 o p_127908_ + 2 o p_127909_ + b (Ldba;)Ldrs; m_127904_ + static + 0 o p_127905_ + b (Ljava/nio/file/Path;)V m_177772_ + static + 0 o p_177773_ + c (Ljava/nio/file/Path;)Z m_177774_ + static + 0 o p_177775_ + c (Lgu;ILaif;)Ljava/util/Collection; m_127910_ + static + 0 o p_127911_ + 1 o p_127912_ + 2 o p_127913_ +qe$1 net/minecraft/gametest/framework/StructureUtils$1 + a f_177776_ + ()V + static +qf net/minecraft/gametest/framework/TeamcityTestReporter + a f_177778_ + b f_177779_ + ()V + static + ()V + a (Lpr;)V m_8014_ + 0 o p_177783_ + b (Lpr;)V m_142335_ + 0 o p_177785_ +qg net/minecraft/gametest/framework/TestClassNameArgument + a f_127914_ + ()V + static + ()V + a (Lcom/mojang/brigadier/StringReader;)Ljava/lang/String; parse + 0 o p_127919_ + a (Lcom/mojang/brigadier/context/CommandContext;Ljava/lang/String;)Ljava/lang/String; m_127920_ + static + 0 o p_127921_ + 1 o p_127922_ + a ()Lqg; m_127917_ + static + getExamples ()Ljava/util/Collection; getExamples + listSuggestions (Lcom/mojang/brigadier/context/CommandContext;Lcom/mojang/brigadier/suggestion/SuggestionsBuilder;)Ljava/util/concurrent/CompletableFuture; listSuggestions + 0 o p_127925_ + 1 o p_127926_ + parse (Lcom/mojang/brigadier/StringReader;)Ljava/lang/Object; parse + 0 o p_127928_ +qh net/minecraft/gametest/framework/TestCommand + a f_177786_ + b f_177787_ + c f_177788_ + d f_177789_ + e f_177790_ + f f_177791_ + g f_177792_ + h f_177793_ + i f_177794_ + ()V + a (Laif;Ljava/lang/String;Ln;)V m_127933_ + static + 0 o p_127934_ + 1 o p_127935_ + 2 o p_127936_ + a (Lds;Ljava/lang/String;)I m_127959_ + static + 0 o p_127960_ + 1 o p_127961_ + a (Lds;)I m_127950_ + static + 0 o p_127951_ + a (Lqi;Laif;)V m_127993_ + static + 0 o p_127994_ + 1 o p_127995_ + a (Lds;Ljava/util/Collection;II)V m_127973_ + static + 0 o p_127974_ + 1 o p_127975_ + 2 o p_127976_ + 3 o p_127977_ + a (Laif;Lqc;)V m_127996_ + static + 0 o p_127997_ + 1 o p_127998_ + a (Ljava/lang/String;)Lsw; m_287807_ + static + 0 o p_288266_ + a (Ljava/lang/String;Lsw;)Lsw; m_287808_ + static + 0 o p_288267_ + 1 o p_288268_ + a (Lcom/mojang/brigadier/CommandDispatcher;)V m_127946_ + static + 0 o p_127947_ + a (Lds;Ljava/lang/String;II)I m_127962_ + static + 0 o p_127963_ + 1 o p_127964_ + 2 o p_127965_ + 3 o p_127966_ + a (Lds;Lqi;I)I m_127978_ + static + 0 o p_127979_ + 1 o p_127980_ + 2 o p_127981_ + a (Lpr;)V m_127991_ + static + 0 o p_127992_ + a (Ln;Ljava/lang/String;Laig;)V m_127987_ + static + 0 o p_127988_ + 1 o p_127989_ + 2 o p_127990_ + a (Laig;)Z m_127944_ + static + 0 o p_127945_ + a (Lds;I)I m_127952_ + static + 0 o p_127953_ + 1 o p_127954_ + a (Laif;Lgu;Lqc;)V m_127929_ + static + 0 o p_127930_ + 1 o p_127931_ + 2 o p_127932_ + a (Laif;Lqc;Lgu;)V m_127940_ + static + 0 o p_127941_ + 1 o p_127942_ + 2 o p_127943_ + a (Lds;II)I m_127955_ + static + 0 o p_127956_ + 1 o p_127957_ + 2 o p_127958_ + a (Lds;ZII)I m_127982_ + static + 0 o p_127983_ + 1 o p_127984_ + 2 o p_127985_ + 3 o p_127986_ + a (Lds;Ljava/lang/String;III)I m_127967_ + static + 0 o p_127968_ + 1 o p_127969_ + 2 o p_127970_ + 3 o p_127971_ + 4 o p_127972_ + a (Lcom/mojang/brigadier/context/CommandContext;)I m_127948_ + static + 0 o p_127949_ + b (Lcom/mojang/brigadier/context/CommandContext;)I m_127999_ + static + 0 o p_128000_ + b (Lds;)I m_128001_ + static + 0 o p_128002_ + b (Lds;Ljava/lang/String;)V m_128003_ + static + 0 o p_128004_ + 1 o p_128005_ + c (Lds;Ljava/lang/String;)I m_128010_ + static + 0 o p_128011_ + 1 o p_128012_ + c (Lcom/mojang/brigadier/context/CommandContext;)I m_128006_ + static + 0 o p_128007_ + c (Lds;)I m_128008_ + static + 0 o p_128009_ + d (Lcom/mojang/brigadier/context/CommandContext;)I m_128013_ + static + 0 o p_128014_ + d (Lds;Ljava/lang/String;)I m_128015_ + static + 0 o p_128016_ + 1 o p_128017_ + e (Lcom/mojang/brigadier/context/CommandContext;)I m_128018_ + static + 0 o p_128019_ + f (Lcom/mojang/brigadier/context/CommandContext;)I m_128020_ + static + 0 o p_128021_ + g (Lcom/mojang/brigadier/context/CommandContext;)I m_128022_ + static + 0 o p_128023_ + h (Lcom/mojang/brigadier/context/CommandContext;)I m_128024_ + static + 0 o p_128025_ + i (Lcom/mojang/brigadier/context/CommandContext;)I m_128026_ + static + 0 o p_128027_ + j (Lcom/mojang/brigadier/context/CommandContext;)I m_128028_ + static + 0 o p_128029_ + k (Lcom/mojang/brigadier/context/CommandContext;)I m_128030_ + static + 0 o p_128031_ + l (Lcom/mojang/brigadier/context/CommandContext;)I m_128032_ + static + 0 o p_128033_ + m (Lcom/mojang/brigadier/context/CommandContext;)I m_128034_ + static + 0 o p_128035_ + n (Lcom/mojang/brigadier/context/CommandContext;)I m_128036_ + static + 0 o p_128037_ + o (Lcom/mojang/brigadier/context/CommandContext;)I m_128038_ + static + 0 o p_128039_ + p (Lcom/mojang/brigadier/context/CommandContext;)I m_128040_ + static + 0 o p_128041_ + q (Lcom/mojang/brigadier/context/CommandContext;)I m_128042_ + static + 0 o p_128043_ + r (Lcom/mojang/brigadier/context/CommandContext;)I m_128044_ + static + 0 o p_128045_ + s (Lcom/mojang/brigadier/context/CommandContext;)I m_128046_ + static + 0 o p_128047_ + t (Lcom/mojang/brigadier/context/CommandContext;)I m_128048_ + static + 0 o p_128049_ + u (Lcom/mojang/brigadier/context/CommandContext;)I m_128050_ + static + 0 o p_128051_ + v (Lcom/mojang/brigadier/context/CommandContext;)I m_128052_ + static + 0 o p_128053_ + w (Lcom/mojang/brigadier/context/CommandContext;)I m_128054_ + static + 0 o p_128055_ + x (Lcom/mojang/brigadier/context/CommandContext;)I m_128056_ + static + 0 o p_128057_ +qh$a net/minecraft/gametest/framework/TestCommand$TestSummaryDisplayer + a f_128058_ + b f_128059_ + (Laif;Lqc;)V + 0 o p_128061_ + 1 o p_128062_ + a (Lpr;)V m_8073_ + 0 o p_128064_ + b (Lpr;)V m_142378_ + 0 o p_177797_ + c (Lpr;)V m_8066_ + 0 o p_128066_ +qi net/minecraft/gametest/framework/TestFunction + a f_128067_ + b f_128068_ + c f_128069_ + d f_128070_ + e f_177798_ + f f_177799_ + g f_128071_ + h f_128072_ + i f_128073_ + j f_128074_ + (Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Lcvz;IJZLjava/util/function/Consumer;)V + 0 o p_177820_ + 1 o p_177821_ + 2 o p_177822_ + 3 o p_177823_ + 4 o p_177824_ + 5 o p_177825_ + 6 o p_177826_ + 7 o p_177827_ + (Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Lcvz;IJZIILjava/util/function/Consumer;)V + 0 o p_177809_ + 1 o p_177810_ + 2 o p_177811_ + 3 o p_177812_ + 4 o p_177813_ + 5 o p_177814_ + 6 o p_177815_ + 7 o p_177816_ + 8 o p_177817_ + 9 o p_177818_ + (Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;IJZLjava/util/function/Consumer;)V + 0 o p_177801_ + 1 o p_177802_ + 2 o p_177803_ + 3 o p_177804_ + 4 o p_177805_ + 5 o p_177806_ + 6 o p_177807_ + a ()Ljava/lang/String; m_128075_ + a (Lpq;)V m_128076_ + 0 o p_128077_ + b ()Ljava/lang/String; m_128078_ + c ()I m_128079_ + d ()Z m_128080_ + e ()Ljava/lang/String; m_128081_ + f ()J m_128082_ + g ()Lcvz; m_128083_ + h ()Z m_177828_ + i ()I m_177829_ + j ()I m_177830_ + toString ()Ljava/lang/String; toString +qj net/minecraft/gametest/framework/TestFunctionArgument + a f_128085_ + ()V + static + ()V + a (Lcom/mojang/brigadier/StringReader;)Lqi; parse + 0 o p_128090_ + a ()Lqj; m_128088_ + static + a (Lcom/mojang/brigadier/context/CommandContext;Ljava/lang/String;)Lqi; m_128091_ + static + 0 o p_128092_ + 1 o p_128093_ + getExamples ()Ljava/util/Collection; getExamples + listSuggestions (Lcom/mojang/brigadier/context/CommandContext;Lcom/mojang/brigadier/suggestion/SuggestionsBuilder;)Ljava/util/concurrent/CompletableFuture; listSuggestions + 0 o p_128096_ + 1 o p_128097_ + parse (Lcom/mojang/brigadier/StringReader;)Ljava/lang/Object; parse + 0 o p_128099_ +qk net/minecraft/gametest/framework/TestReporter + a ()V m_142411_ + a (Lpr;)V m_8014_ + 0 o p_128100_ + b (Lpr;)V m_142335_ + 0 o p_177831_ +ql net/minecraft/gametest/framework/package-info +qm net/minecraft/locale/Language + a f_177832_ + b f_128101_ + c f_128102_ + d f_128103_ + e f_128104_ + ()V + static + ()V + a (Lqm;)V m_128114_ + static + 0 o p_128115_ + a (Ljava/io/InputStream;Ljava/util/function/BiConsumer;)V m_128108_ + static + 0 o p_128109_ + 1 o p_128110_ + a (Ljava/lang/String;Ljava/lang/String;)Ljava/lang/String; m_118919_ + 0 o p_265702_ + 1 o p_265599_ + a (Ljava/lang/String;)Ljava/lang/String; m_6834_ + 0 o p_128111_ + a ()Lqm; m_128107_ + static + a (Ljava/util/function/BiConsumer;Ljava/lang/String;)V m_280428_ + static + 0 o p_282031_ + 1 o p_283638_ + a (Lta;)Laom; m_5536_ + 0 o p_128116_ + a (Ljava/util/List;)Ljava/util/List; m_128112_ + 0 o p_128113_ + b (Ljava/lang/String;)Z m_6722_ + 0 o p_128117_ + b ()Z m_6627_ + c ()Lqm; m_128118_ + static +qm$1 net/minecraft/locale/Language$1 + b f_128119_ + (Ljava/util/Map;)V + 0 o p_128121_ + a (Ljava/lang/String;Ljava/lang/String;)Ljava/lang/String; m_118919_ + 0 o p_128127_ + 1 o p_265421_ + a (Laon;Lts;Ljava/lang/String;)Ljava/util/Optional; m_177833_ + static + 0 o p_177834_ + 1 o p_177835_ + 2 o p_177836_ + a (Lta;)Laom; m_5536_ + 0 o p_128129_ + a (Lta;Laon;)Z m_128130_ + static + 0 o p_128131_ + 1 o p_128132_ + b (Ljava/lang/String;)Z m_6722_ + 0 o p_128135_ + b ()Z m_6627_ +qn net/minecraft/locale/package-info +qo net/minecraft/nbt/ByteArrayTag + a f_128185_ + b f_263438_ + c f_128186_ + ()V + static + (Ljava/util/List;)V + 0 o p_128189_ + ([B)V + 0 o p_128191_ + a (ILrk;)Z m_7615_ + 0 o p_128199_ + 1 o p_128200_ + a ()I m_263179_ + a (I)Lqp; get + 0 o p_128194_ + a (ILqp;)Lqp; set + 0 o p_128196_ + 1 o p_128197_ + a (Ljava/io/DataOutput;)V m_6434_ + 0 o p_128202_ + a (Lro;)V m_142327_ + 0 o p_177839_ + a (Ljava/util/List;)[B m_128206_ + static + 0 o p_128207_ + a (Lrh;)Lrh$b; m_196533_ + 0 o p_197429_ + add (ILjava/lang/Object;)V add + 0 o p_128209_ + 1 o p_128210_ + b ()B m_7060_ + b (I)Lqp; remove + 0 o p_128213_ + b (ILrk;)Z m_7614_ + 0 o p_128218_ + 1 o p_128219_ + b (ILqp;)V add + 0 o p_128215_ + 1 o p_128216_ + c ()Lrm; m_6458_ + c (ILrk;)V add + 0 o p_128224_ + 1 o p_128225_ + c (I)Lrk; remove + 0 o p_128222_ + clear ()V clear + d ()Lrk; m_6426_ + d (ILrk;)Lrk; set + 0 o p_128229_ + 1 o p_128230_ + e ()[B m_128227_ + equals (Ljava/lang/Object;)Z equals + 0 o p_128233_ + f ()B m_7264_ + get (I)Ljava/lang/Object; get + 0 o p_128235_ + hashCode ()I hashCode + remove (I)Ljava/lang/Object; remove + 0 o p_128238_ + set (ILjava/lang/Object;)Ljava/lang/Object; set + 0 o p_128240_ + 1 o p_128241_ + size ()I size + toString ()Ljava/lang/String; toString +qo$1 net/minecraft/nbt/ByteArrayTag$1 + ()V + a (Ljava/io/DataInput;)V m_196159_ + 0 o p_197431_ + a ()Ljava/lang/String; m_5987_ + a (Ljava/io/DataInput;Lrh;)Lrh$b; m_196511_ + 0 o p_197433_ + 1 o p_197434_ + a (Ljava/io/DataInput;ILra;)Lqo; m_7300_ + 0 o p_128247_ + 1 o p_128248_ + 2 o p_128249_ + b ()Ljava/lang/String; m_5986_ + b (Ljava/io/DataInput;ILra;)Lrk; m_7300_ + 0 o p_128252_ + 1 o p_128253_ + 2 o p_128254_ +qp net/minecraft/nbt/ByteTag + a f_128255_ + b f_128256_ + c f_128257_ + w f_263439_ + x f_128258_ + ()V + static + (B)V + 0 o p_128261_ + a (Z)Lqp; m_128273_ + static + 0 o p_128274_ + a ()I m_263179_ + a (Ljava/io/DataOutput;)V m_6434_ + 0 o p_128269_ + a (B)Lqp; m_128266_ + static + 0 o p_128267_ + a (Lro;)V m_142327_ + 0 o p_177842_ + a (Lrh;)Lrh$b; m_196533_ + 0 o p_197436_ + b ()B m_7060_ + c ()Lrm; m_6458_ + d ()Lrk; m_6426_ + e ()Lqp; m_6426_ + equals (Ljava/lang/Object;)Z equals + 0 o p_128280_ + f ()J m_7046_ + g ()I m_7047_ + h ()S m_7053_ + hashCode ()I hashCode + i ()B m_7063_ + j ()D m_7061_ + k ()F m_7057_ + l ()Ljava/lang/Number; m_8103_ +qp$1 net/minecraft/nbt/ByteTag$1 + ()V + a ()Ljava/lang/String; m_5987_ + a (Ljava/io/DataInput;ILra;)Lqp; m_7300_ + 0 o p_128292_ + 1 o p_128293_ + 2 o p_128294_ + a (Ljava/io/DataInput;Lrh;)Lrh$b; m_196511_ + 0 o p_197438_ + 1 o p_197439_ + b ()Ljava/lang/String; m_5986_ + b (Ljava/io/DataInput;ILra;)Lrk; m_7300_ + 0 o p_128297_ + 1 o p_128298_ + 2 o p_128299_ + c ()I m_196292_ + d ()Z m_7064_ +qp$a net/minecraft/nbt/ByteTag$Cache + a f_128301_ + ()V + static + ()V +qq net/minecraft/nbt/CollectionTag + ()V + a (ILrk;)Z m_7615_ + 0 o p_128305_ + 1 o p_128306_ + add (ILjava/lang/Object;)V add + 0 o p_128308_ + 1 o p_128309_ + b (ILrk;)Z m_7614_ + 0 o p_128310_ + 1 o p_128311_ + c (ILrk;)V add + 0 o p_128315_ + 1 o p_128316_ + c (I)Lrk; remove + 0 o p_128313_ + d (ILrk;)Lrk; set + 0 o p_128318_ + 1 o p_128319_ + f ()B m_7264_ + remove (I)Ljava/lang/Object; remove + 0 o p_128321_ + set (ILjava/lang/Object;)Ljava/lang/Object; set + 0 o p_128323_ + 1 o p_128324_ +qr net/minecraft/nbt/CompoundTag + a f_128325_ + b f_128326_ + c f_263436_ + w f_263443_ + x f_128329_ + ()V + static + (Ljava/util/Map;)V + 0 o p_128333_ + ()V + a (Lrk;)Ljava/lang/String; m_274047_ + static + 0 o p_274780_ + a (Ljava/lang/String;[I)V m_128385_ + 0 o p_128386_ + 1 o p_128387_ + a (Lqr;)Lqr; m_128391_ + 0 o p_128392_ + a (Lcom/mojang/serialization/Dynamic;)Lcom/mojang/serialization/DataResult; m_274048_ + static + 0 o p_274781_ + a (Ljava/lang/String;J)V m_128356_ + 0 o p_128357_ + 1 o p_128358_ + a (Ljava/lang/String;F)V m_128350_ + 0 o p_128351_ + 1 o p_128352_ + a (Ljava/lang/String;D)V m_128347_ + 0 o p_128348_ + 1 o p_128349_ + a (Lro;)V m_142327_ + 0 o p_177857_ + a (Ljava/lang/String;Z)V m_128379_ + 0 o p_128380_ + 1 o p_128381_ + a (Lrm;Ljava/lang/String;Ljava/io/DataInput;ILra;)Lrk; m_128413_ + static + 0 o p_128414_ + 1 o p_128415_ + 2 o p_128416_ + 3 o p_128417_ + 4 o p_128418_ + a (Lrh;)Lrh$b; m_196533_ + 0 o p_197442_ + a (Ljava/lang/String;Ljava/util/UUID;)V m_128362_ + 0 o p_128363_ + 1 o p_128364_ + a ()I m_263179_ + a (Ljava/lang/String;[J)V m_128388_ + 0 o p_128389_ + 1 o p_128390_ + a (Ljava/lang/String;B)V m_128344_ + 0 o p_128345_ + 1 o p_128346_ + a (Ljava/lang/String;Lrk;Ljava/io/DataOutput;)V m_128368_ + static + 0 o p_128369_ + 1 o p_128370_ + 2 o p_128371_ + a (Ljava/lang/String;[B)V m_128382_ + 0 o p_128383_ + 1 o p_128384_ + a (Ljava/lang/String;S)V m_128376_ + 0 o p_128377_ + 1 o p_128378_ + a (Ljava/lang/String;Lrm;Ljava/lang/ClassCastException;)Lo; m_128372_ + 0 o p_128373_ + 1 o p_128374_ + 2 o p_128375_ + a (Ljava/lang/String;I)V m_128405_ + 0 o p_128406_ + 1 o p_128407_ + a (Ljava/io/DataOutput;)V m_6434_ + 0 o p_128341_ + a (Ljava/lang/String;Ljava/util/List;)V m_177853_ + 0 o p_177854_ + 1 o p_177855_ + a (Ljava/lang/String;Ljava/lang/String;)V m_128359_ + 0 o p_128360_ + 1 o p_128361_ + a (Ljava/lang/String;Lrk;)Lrk; m_128365_ + 0 o p_128366_ + 1 o p_128367_ + a (Ljava/io/DataInput;Lra;)B m_128420_ + static + 0 o p_128421_ + 1 o p_128422_ + a (Ljava/lang/String;)Ljava/util/UUID; m_128342_ + 0 o p_128343_ + b ()B m_7060_ + b (Lqr;)Lcom/mojang/serialization/Dynamic; m_128411_ + static + 0 o p_128412_ + b (Ljava/lang/String;I)Z m_128425_ + 0 o p_128426_ + 1 o p_128427_ + b (Ljava/lang/String;Ljava/util/List;)V m_128408_ + 0 o p_128409_ + 1 o p_128410_ + b (Ljava/io/DataInput;Lra;)Ljava/lang/String; m_128432_ + static + 0 o p_128433_ + 1 o p_128434_ + b (Ljava/lang/String;)Z m_128403_ + 0 o p_128404_ + c ()Lrm; m_6458_ + c (Ljava/lang/String;Ljava/util/List;)V m_128428_ + 0 o p_128429_ + 1 o p_128430_ + c (Ljava/lang/String;)Lrk; m_128423_ + 0 o p_128424_ + c (Ljava/lang/String;I)Lqx; m_128437_ + 0 o p_128438_ + 1 o p_128439_ + d (Ljava/lang/String;)B m_128435_ + 0 o p_128436_ + d ()Lrk; m_6426_ + e ()Ljava/util/Set; m_128431_ + e (Ljava/lang/String;)Z m_128441_ + 0 o p_128442_ + equals (Ljava/lang/Object;)Z equals + 0 o p_128444_ + f (Ljava/lang/String;)B m_128445_ + 0 o p_128446_ + f ()I m_128440_ + g ()Z m_128456_ + g (Ljava/lang/String;)S m_128448_ + 0 o p_128449_ + h (Ljava/lang/String;)I m_128451_ + 0 o p_128452_ + h ()Lqr; m_6426_ + hashCode ()I hashCode + i ()Ljava/util/Map; m_128450_ + i (Ljava/lang/String;)J m_128454_ + 0 o p_128455_ + j (Ljava/lang/String;)F m_128457_ + 0 o p_128458_ + k (Ljava/lang/String;)D m_128459_ + 0 o p_128460_ + l (Ljava/lang/String;)Ljava/lang/String; m_128461_ + 0 o p_128462_ + m (Ljava/lang/String;)[B m_128463_ + 0 o p_128464_ + n (Ljava/lang/String;)[I m_128465_ + 0 o p_128466_ + o (Ljava/lang/String;)[J m_128467_ + 0 o p_128468_ + p (Ljava/lang/String;)Lqr; m_128469_ + 0 o p_128470_ + q (Ljava/lang/String;)Z m_128471_ + 0 o p_128472_ + r (Ljava/lang/String;)V m_128473_ + 0 o p_128474_ + s (Ljava/lang/String;)Ljava/lang/String; m_128480_ + 0 o p_128481_ + toString ()Ljava/lang/String; toString +qr$1 net/minecraft/nbt/CompoundTag$1 + ()V + a (Ljava/io/DataInput;)V m_196159_ + 0 o p_197444_ + a ()Ljava/lang/String; m_5987_ + a (Ljava/io/DataInput;ILra;)Lqr; m_7300_ + 0 o p_128485_ + 1 o p_128486_ + 2 o p_128487_ + a (Ljava/io/DataInput;Lrh;)Lrh$b; m_196511_ + 0 o p_197446_ + 1 o p_197447_ + b ()Ljava/lang/String; m_5986_ + b (Ljava/io/DataInput;ILra;)Lrk; m_7300_ + 0 o p_128490_ + 1 o p_128491_ + 2 o p_128492_ +qr$2 net/minecraft/nbt/CompoundTag$2 + a f_197448_ + b f_197449_ + ()V + static +qs net/minecraft/nbt/DoubleTag + a f_128493_ + b f_128494_ + c f_263442_ + w f_128495_ + ()V + static + (D)V + 0 o p_128498_ + a (D)Lqs; m_128500_ + static + 0 o p_128501_ + a ()I m_263179_ + a (Ljava/io/DataOutput;)V m_6434_ + 0 o p_128503_ + a (Lro;)V m_142327_ + 0 o p_177860_ + a (Lrh;)Lrh$b; m_196533_ + 0 o p_197452_ + b ()B m_7060_ + c ()Lrm; m_6458_ + d ()Lrk; m_6426_ + e ()Lqs; m_6426_ + equals (Ljava/lang/Object;)Z equals + 0 o p_128512_ + f ()J m_7046_ + g ()I m_7047_ + h ()S m_7053_ + hashCode ()I hashCode + i ()B m_7063_ + j ()D m_7061_ + k ()F m_7057_ + l ()Ljava/lang/Number; m_8103_ +qs$1 net/minecraft/nbt/DoubleTag$1 + ()V + a ()Ljava/lang/String; m_5987_ + a (Ljava/io/DataInput;ILra;)Lqs; m_7300_ + 0 o p_128524_ + 1 o p_128525_ + 2 o p_128526_ + a (Ljava/io/DataInput;Lrh;)Lrh$b; m_196511_ + 0 o p_197454_ + 1 o p_197455_ + b ()Ljava/lang/String; m_5986_ + b (Ljava/io/DataInput;ILra;)Lrk; m_7300_ + 0 o p_128529_ + 1 o p_128530_ + 2 o p_128531_ + c ()I m_196292_ + d ()Z m_7064_ +qt net/minecraft/nbt/EndTag + a f_128533_ + b f_128534_ + c f_263430_ + ()V + static + ()V + a (Lro;)V m_142327_ + 0 o p_177863_ + a ()I m_263179_ + a (Lrh;)Lrh$b; m_196533_ + 0 o p_197458_ + a (Ljava/io/DataOutput;)V m_6434_ + 0 o p_128539_ + b ()B m_7060_ + c ()Lrm; m_6458_ + d ()Lrk; m_6426_ + e ()Lqt; m_6426_ + toString ()Ljava/lang/String; toString +qt$1 net/minecraft/nbt/EndTag$1 + ()V + a (Ljava/io/DataInput;)V m_196159_ + 0 o p_197460_ + a (Ljava/io/DataInput;ILra;)Lqt; m_7300_ + 0 o p_128550_ + 1 o p_128551_ + 2 o p_128552_ + a ()Ljava/lang/String; m_5987_ + a (Ljava/io/DataInput;Lrh;)Lrh$b; m_196511_ + 0 o p_197465_ + 1 o p_197466_ + a (Ljava/io/DataInput;I)V m_196189_ + 0 o p_197462_ + 1 o p_197463_ + b ()Ljava/lang/String; m_5986_ + b (Ljava/io/DataInput;ILra;)Lrk; m_7300_ + 0 o p_128555_ + 1 o p_128556_ + 2 o p_128557_ + d ()Z m_7064_ +qu net/minecraft/nbt/FloatTag + a f_128559_ + b f_128560_ + c f_263444_ + w f_128561_ + ()V + static + (F)V + 0 o p_128564_ + a ()I m_263179_ + a (Ljava/io/DataOutput;)V m_6434_ + 0 o p_128569_ + a (F)Lqu; m_128566_ + static + 0 o p_128567_ + a (Lro;)V m_142327_ + 0 o p_177866_ + a (Lrh;)Lrh$b; m_196533_ + 0 o p_197468_ + b ()B m_7060_ + c ()Lrm; m_6458_ + d ()Lrk; m_6426_ + e ()Lqu; m_6426_ + equals (Ljava/lang/Object;)Z equals + 0 o p_128578_ + f ()J m_7046_ + g ()I m_7047_ + h ()S m_7053_ + hashCode ()I hashCode + i ()B m_7063_ + j ()D m_7061_ + k ()F m_7057_ + l ()Ljava/lang/Number; m_8103_ +qu$1 net/minecraft/nbt/FloatTag$1 + ()V + a (Ljava/io/DataInput;ILra;)Lqu; m_7300_ + 0 o p_128590_ + 1 o p_128591_ + 2 o p_128592_ + a ()Ljava/lang/String; m_5987_ + a (Ljava/io/DataInput;Lrh;)Lrh$b; m_196511_ + 0 o p_197470_ + 1 o p_197471_ + b ()Ljava/lang/String; m_5986_ + b (Ljava/io/DataInput;ILra;)Lrk; m_7300_ + 0 o p_128595_ + 1 o p_128596_ + 2 o p_128597_ + c ()I m_196292_ + d ()Z m_7064_ +qv net/minecraft/nbt/IntArrayTag + a f_128599_ + b f_263434_ + c f_128600_ + ()V + static + ([I)V + 0 o p_128605_ + (Ljava/util/List;)V + 0 o p_128603_ + a (ILrk;)Z m_7615_ + 0 o p_128613_ + 1 o p_128614_ + a ()I m_263179_ + a (ILqw;)Lqw; set + 0 o p_128610_ + 1 o p_128611_ + a (Ljava/io/DataOutput;)V m_6434_ + 0 o p_128616_ + a (Ljava/util/List;)[I m_128620_ + static + 0 o p_128621_ + a (Lro;)V m_142327_ + 0 o p_177869_ + a (I)Lqw; get + 0 o p_128608_ + a (Lrh;)Lrh$b; m_196533_ + 0 o p_197474_ + add (ILjava/lang/Object;)V add + 0 o p_128623_ + 1 o p_128624_ + b ()B m_7060_ + b (ILrk;)Z m_7614_ + 0 o p_128632_ + 1 o p_128633_ + b (I)Lqw; remove + 0 o p_128627_ + b (ILqw;)V add + 0 o p_128629_ + 1 o p_128630_ + c ()Lrm; m_6458_ + c (ILrk;)V add + 0 o p_128638_ + 1 o p_128639_ + c (I)Lrk; remove + 0 o p_128636_ + clear ()V clear + d ()Lrk; m_6426_ + d (ILrk;)Lrk; set + 0 o p_128643_ + 1 o p_128644_ + e ()Lqv; m_6426_ + equals (Ljava/lang/Object;)Z equals + 0 o p_128647_ + f ()B m_7264_ + g ()[I m_128648_ + get (I)Ljava/lang/Object; get + 0 o p_128650_ + hashCode ()I hashCode + remove (I)Ljava/lang/Object; remove + 0 o p_128653_ + set (ILjava/lang/Object;)Ljava/lang/Object; set + 0 o p_128655_ + 1 o p_128656_ + size ()I size + toString ()Ljava/lang/String; toString +qv$1 net/minecraft/nbt/IntArrayTag$1 + ()V + a (Ljava/io/DataInput;)V m_196159_ + 0 o p_197476_ + a (Ljava/io/DataInput;ILra;)Lqv; m_7300_ + 0 o p_128662_ + 1 o p_128663_ + 2 o p_128664_ + a ()Ljava/lang/String; m_5987_ + a (Ljava/io/DataInput;Lrh;)Lrh$b; m_196511_ + 0 o p_197478_ + 1 o p_197479_ + b ()Ljava/lang/String; m_5986_ + b (Ljava/io/DataInput;ILra;)Lrk; m_7300_ + 0 o p_128667_ + 1 o p_128668_ + 2 o p_128669_ +qw net/minecraft/nbt/IntTag + a f_128670_ + b f_263440_ + c f_128671_ + ()V + static + (I)V + 0 o p_128674_ + a ()I m_263179_ + a (Ljava/io/DataOutput;)V m_6434_ + 0 o p_128682_ + a (I)Lqw; m_128679_ + static + 0 o p_128680_ + a (Lro;)V m_142327_ + 0 o p_177984_ + a (Lrh;)Lrh$b; m_196533_ + 0 o p_197481_ + b ()B m_7060_ + c ()Lrm; m_6458_ + d ()Lrk; m_6426_ + e ()Lqw; m_6426_ + equals (Ljava/lang/Object;)Z equals + 0 o p_128691_ + f ()J m_7046_ + g ()I m_7047_ + h ()S m_7053_ + hashCode ()I hashCode + i ()B m_7063_ + j ()D m_7061_ + k ()F m_7057_ + l ()Ljava/lang/Number; m_8103_ +qw$1 net/minecraft/nbt/IntTag$1 + ()V + a (Ljava/io/DataInput;ILra;)Lqw; m_7300_ + 0 o p_128703_ + 1 o p_128704_ + 2 o p_128705_ + a ()Ljava/lang/String; m_5987_ + a (Ljava/io/DataInput;Lrh;)Lrh$b; m_196511_ + 0 o p_197483_ + 1 o p_197484_ + b ()Ljava/lang/String; m_5986_ + b (Ljava/io/DataInput;ILra;)Lrk; m_7300_ + 0 o p_128708_ + 1 o p_128709_ + 2 o p_128710_ + c ()I m_196292_ + d ()Z m_7064_ +qw$a net/minecraft/nbt/IntTag$Cache + a f_128712_ + b f_177985_ + c f_177986_ + ()V + static + ()V +qx net/minecraft/nbt/ListTag + a f_128714_ + b f_263445_ + c f_128716_ + w f_128717_ + ()V + static + (Ljava/util/List;B)V + 0 o p_128721_ + 1 o p_128722_ + ()V + a (ILrk;)Z m_7615_ + 0 o p_128731_ + 1 o p_128732_ + a ()I m_263179_ + a (I)Lqr; m_128728_ + 0 o p_128729_ + a (Ljava/io/DataOutput;)V m_6434_ + 0 o p_128734_ + a (Lro;)V m_142327_ + 0 o p_177990_ + a (Lrk;)Z m_128738_ + 0 o p_128739_ + a (Lrh;)Lrh$b; m_196533_ + 0 o p_197487_ + add (ILjava/lang/Object;)V add + 0 o p_128741_ + 1 o p_128742_ + b (I)Lqx; m_128744_ + 0 o p_128745_ + b ()B m_7060_ + b (ILrk;)Z m_7614_ + 0 o p_128747_ + 1 o p_128748_ + c ()Lrm; m_6458_ + c (ILrk;)V add + 0 o p_128753_ + 1 o p_128754_ + c (I)Lrk; remove + 0 o p_128751_ + clear ()V clear + d (I)S m_128757_ + 0 o p_128758_ + d ()Lrk; m_6426_ + d (ILrk;)Lrk; set + 0 o p_128760_ + 1 o p_128761_ + e (I)I m_128763_ + 0 o p_128764_ + e ()Lqx; m_6426_ + equals (Ljava/lang/Object;)Z equals + 0 o p_128766_ + f ()B m_7264_ + f (I)[I m_128767_ + 0 o p_128768_ + g ()V m_128769_ + g (I)[J m_177991_ + 0 o p_177992_ + get (I)Ljava/lang/Object; get + 0 o p_128771_ + h (I)D m_128772_ + 0 o p_128773_ + hashCode ()I hashCode + i (I)F m_128775_ + 0 o p_128776_ + isEmpty ()Z isEmpty + j (I)Ljava/lang/String; m_128778_ + 0 o p_128779_ + k (I)Lrk; get + 0 o p_128781_ + remove (I)Ljava/lang/Object; remove + 0 o p_128783_ + set (ILjava/lang/Object;)Ljava/lang/Object; set + 0 o p_128785_ + 1 o p_128786_ + size ()I size + toString ()Ljava/lang/String; toString +qx$1 net/minecraft/nbt/ListTag$1 + ()V + a (Ljava/io/DataInput;)V m_196159_ + 0 o p_197489_ + a (Ljava/io/DataInput;ILra;)Lqx; m_7300_ + 0 o p_128792_ + 1 o p_128793_ + 2 o p_128794_ + a ()Ljava/lang/String; m_5987_ + a (Ljava/io/DataInput;Lrh;)Lrh$b; m_196511_ + 0 o p_197491_ + 1 o p_197492_ + b ()Ljava/lang/String; m_5986_ + b (Ljava/io/DataInput;ILra;)Lrk; m_7300_ + 0 o p_128797_ + 1 o p_128798_ + 2 o p_128799_ +qx$2 net/minecraft/nbt/ListTag$2 + a f_197493_ + b f_197494_ + ()V + static +qy net/minecraft/nbt/LongArrayTag + a f_128800_ + b f_263437_ + c f_128801_ + ()V + static + (Lit/unimi/dsi/fastutil/longs/LongSet;)V + 0 o p_128804_ + ([J)V + 0 o p_128808_ + (Ljava/util/List;)V + 0 o p_128806_ + a (ILrk;)Z m_7615_ + 0 o p_128816_ + 1 o p_128817_ + a ()I m_263179_ + a (Ljava/util/List;)[J m_128823_ + static + 0 o p_128824_ + a (I)Lqz; get + 0 o p_128811_ + a (ILqz;)Lqz; set + 0 o p_128813_ + 1 o p_128814_ + a (Ljava/io/DataOutput;)V m_6434_ + 0 o p_128819_ + a (Lro;)V m_142327_ + 0 o p_177995_ + a (Lrh;)Lrh$b; m_196533_ + 0 o p_197497_ + add (ILjava/lang/Object;)V add + 0 o p_128826_ + 1 o p_128827_ + b (I)Lqz; remove + 0 o p_128830_ + b ()B m_7060_ + b (ILrk;)Z m_7614_ + 0 o p_128835_ + 1 o p_128836_ + b (ILqz;)V add + 0 o p_128832_ + 1 o p_128833_ + c ()Lrm; m_6458_ + c (ILrk;)V add + 0 o p_128841_ + 1 o p_128842_ + c (I)Lrk; remove + 0 o p_128839_ + clear ()V clear + d ()Lrk; m_6426_ + d (ILrk;)Lrk; set + 0 o p_128846_ + 1 o p_128847_ + e ()Lqy; m_6426_ + equals (Ljava/lang/Object;)Z equals + 0 o p_128850_ + f ()B m_7264_ + g ()[J m_128851_ + get (I)Ljava/lang/Object; get + 0 o p_128853_ + hashCode ()I hashCode + remove (I)Ljava/lang/Object; remove + 0 o p_128856_ + set (ILjava/lang/Object;)Ljava/lang/Object; set + 0 o p_128858_ + 1 o p_128859_ + size ()I size + toString ()Ljava/lang/String; toString +qy$1 net/minecraft/nbt/LongArrayTag$1 + ()V + a (Ljava/io/DataInput;ILra;)Lqy; m_7300_ + 0 o p_128865_ + 1 o p_128866_ + 2 o p_128867_ + a (Ljava/io/DataInput;)V m_196159_ + 0 o p_197499_ + a ()Ljava/lang/String; m_5987_ + a (Ljava/io/DataInput;Lrh;)Lrh$b; m_196511_ + 0 o p_197501_ + 1 o p_197502_ + b ()Ljava/lang/String; m_5986_ + b (Ljava/io/DataInput;ILra;)Lrk; m_7300_ + 0 o p_128870_ + 1 o p_128871_ + 2 o p_128872_ +qz net/minecraft/nbt/LongTag + a f_128873_ + b f_263435_ + c f_128874_ + ()V + static + (J)V + 0 o p_128877_ + a ()I m_263179_ + a (Ljava/io/DataOutput;)V m_6434_ + 0 o p_128885_ + a (Lro;)V m_142327_ + 0 o p_177998_ + a (J)Lqz; m_128882_ + static + 0 o p_128883_ + a (Lrh;)Lrh$b; m_196533_ + 0 o p_197504_ + b ()B m_7060_ + c ()Lrm; m_6458_ + d ()Lrk; m_6426_ + e ()Lqz; m_6426_ + equals (Ljava/lang/Object;)Z equals + 0 o p_128894_ + f ()J m_7046_ + g ()I m_7047_ + h ()S m_7053_ + hashCode ()I hashCode + i ()B m_7063_ + j ()D m_7061_ + k ()F m_7057_ + l ()Ljava/lang/Number; m_8103_ +qz$1 net/minecraft/nbt/LongTag$1 + ()V + a (Ljava/io/DataInput;ILra;)Lqz; m_7300_ + 0 o p_128906_ + 1 o p_128907_ + 2 o p_128908_ + a ()Ljava/lang/String; m_5987_ + a (Ljava/io/DataInput;Lrh;)Lrh$b; m_196511_ + 0 o p_197506_ + 1 o p_197507_ + b ()Ljava/lang/String; m_5986_ + b (Ljava/io/DataInput;ILra;)Lrk; m_7300_ + 0 o p_128911_ + 1 o p_128912_ + 2 o p_128913_ + c ()I m_196292_ + d ()Z m_7064_ +qz$a net/minecraft/nbt/LongTag$Cache + a f_128915_ + b f_177999_ + c f_178000_ + ()V + static + ()V +r net/minecraft/DefaultUncaughtExceptionHandler + a f_131075_ + (Lorg/slf4j/Logger;)V + 0 o p_202576_ + uncaughtException (Ljava/lang/Thread;Ljava/lang/Throwable;)V uncaughtException + 0 o p_131079_ + 1 o p_131080_ +ra net/minecraft/nbt/NbtAccounter + a f_128917_ + b f_128918_ + c f_128919_ + ()V + static + (J)V + 0 o p_128922_ + a ()J m_263225_ + a (J)V m_128926_ + 0 o p_263515_ +ra$1 net/minecraft/nbt/NbtAccounter$1 + (J)V + 0 o p_128925_ + a (J)V m_128926_ + 0 o p_128927_ +rb net/minecraft/nbt/NbtIo + ()V + a (Ljava/io/File;Lrh;)V m_202487_ + static + 0 o p_202488_ + 1 o p_202489_ + a (Ljava/io/DataInput;ILra;)Lrk; m_128930_ + static + 0 o p_128931_ + 1 o p_128932_ + 2 o p_128933_ + a (Lrk;Ljava/io/DataOutput;)V m_128950_ + static + 0 o p_128951_ + 1 o p_128952_ + a (Ljava/io/File;)Lqr; m_128937_ + static + 0 o p_128938_ + a (Ljava/io/DataInput;)Lqr; m_128928_ + static + 0 o p_128929_ + a (Ljava/io/DataInput;Lra;)Lqr; m_128934_ + static + 0 o p_128935_ + 1 o p_128936_ + a (Lqr;Ljava/io/File;)V m_128944_ + static + 0 o p_128945_ + 1 o p_128946_ + a (Ljava/io/InputStream;Lrh;)V m_202490_ + static + 0 o p_202491_ + 1 o p_202492_ + a (Ljava/io/InputStream;)Lqr; m_128939_ + static + 0 o p_128940_ + a (Ljava/io/DataInput;Lrh;)V m_197509_ + static + 0 o p_197510_ + 1 o p_197511_ + a (Lqr;Ljava/io/OutputStream;)V m_128947_ + static + 0 o p_128948_ + 1 o p_128949_ + a (Lqr;Ljava/io/DataOutput;)V m_128941_ + static + 0 o p_128942_ + 1 o p_128943_ + b (Ljava/io/File;)Lqr; m_128953_ + static + 0 o p_128954_ + b (Lqr;Ljava/io/File;)V m_128955_ + static + 0 o p_128956_ + 1 o p_128957_ + b (Ljava/io/InputStream;)Ljava/io/DataInputStream; m_202493_ + static + 0 o p_202494_ +rb$1 net/minecraft/nbt/NbtIo$1 + a f_197512_ + ()V + static +rc net/minecraft/nbt/NbtOps + a f_128958_ + b f_244338_ + ()V + static + ()V + a (F)Lrk; createFloat + 0 o p_128974_ + a (Lqr;Ljava/lang/String;)Lcom/mojang/datafixers/util/Pair; m_129019_ + 0 o p_129020_ + 1 o p_129021_ + a (Lqr;)Lrk; m_246295_ + static + 0 o p_251041_ + a (Ljava/util/List;)Ljava/lang/String; m_274054_ + static + 0 o p_274785_ + a (Ljava/lang/Number;)Lrk; createNumeric + 0 o p_128983_ + a (Lrk;Lrc$f;)Lcom/mojang/serialization/DataResult; m_244790_ + static + 0 o p_248052_ + 1 o p_248053_ + a (Ljava/util/function/Consumer;Lrk;)V m_244789_ + static + 0 o p_248050_ + 1 o p_248051_ + a (D)Lrk; createDouble + 0 o p_128972_ + a (S)Lrk; createShort + 0 o p_129048_ + a (Lcom/mojang/serialization/DynamicOps;Lrk;)Ljava/lang/Object; convertTo + 0 o p_128980_ + 1 o p_128981_ + a (J)Lrk; createLong + 0 o p_128978_ + a (Ljava/util/List;Lrc$f;)Lcom/mojang/serialization/DataResult; m_244787_ + static + 0 o p_248047_ + 1 o p_248048_ + a (Lrk;Ljava/util/List;)Lcom/mojang/serialization/DataResult; mergeToList + 0 o p_129038_ + 1 o p_129039_ + a (Lqr;Ljava/util/function/BiConsumer;)V m_129022_ + 0 o p_129023_ + 1 o p_129024_ + a (Ljava/util/stream/LongStream;)Lrk; createLongList + 0 o p_129002_ + a (Ljava/util/List;Lqr;Lcom/mojang/datafixers/util/Pair;)V m_128991_ + static + 0 o p_128992_ + 1 o p_128993_ + 2 o p_128994_ + a (Lrk;Lcom/mojang/serialization/MapLike;)Lcom/mojang/serialization/DataResult; mergeToMap + 0 o p_129032_ + 1 o p_129033_ + a (Lrk;Ljava/lang/String;)Lrk; remove + 0 o p_129035_ + 1 o p_129036_ + a (Lrk;)Lcom/mojang/serialization/DataResult; getNumberValue + 0 o p_129030_ + a ()Lrk; empty + a (Lqr;Lqr;Ljava/lang/String;)V m_129025_ + static + 0 o p_129026_ + 1 o p_129027_ + 2 o p_129028_ + a (Ljava/util/function/BiConsumer;Lqr;Ljava/lang/String;)V m_178003_ + 0 o p_178004_ + 1 o p_178005_ + 2 o p_178006_ + a (Ljava/nio/ByteBuffer;)Lrk; createByteList + 0 o p_128990_ + a (Lrk;Lrk;Lrk;)Lcom/mojang/serialization/DataResult; mergeToMap + 0 o p_129044_ + 1 o p_129045_ + 2 o p_129046_ + a (I)Lrk; createInt + 0 o p_128976_ + a (Ljava/util/stream/IntStream;)Lrk; createIntList + 0 o p_129000_ + a (Lrk;Lrk;)Lcom/mojang/serialization/DataResult; mergeToList + 0 o p_129041_ + 1 o p_129042_ + a (Z)Lrk; createBoolean + 0 o p_129050_ + a (Ljava/util/stream/Stream;)Lrk; createMap + 0 o p_129004_ + a (Lqr;Lcom/mojang/datafixers/util/Pair;)V m_129016_ + static + 0 o p_129017_ + 1 o p_129018_ + a (Lqx;Ljava/util/function/Consumer;)V m_244791_ + static + 0 o p_248054_ + 1 o p_248055_ + a (Ljava/lang/String;)Lrk; createString + 0 o p_128985_ + a (Ljava/lang/String;Ljava/lang/String;)Z m_128986_ + static + 0 o p_128987_ + 1 o p_128988_ + a (B)Lrk; createByte + 0 o p_128963_ + b (Lrk;)Lcom/mojang/serialization/DataResult; getStringValue + 0 o p_129061_ + b ()Ljava/lang/String; m_274050_ + static + b (Lqr;Lqr;Ljava/lang/String;)V m_129056_ + static + 0 o p_129057_ + 1 o p_129058_ + 2 o p_129059_ + b (Ljava/util/stream/Stream;)Lrk; createList + 0 o p_129052_ + c (Lqr;Lqr;Ljava/lang/String;)V m_129065_ + static + 0 o p_129066_ + 1 o p_129067_ + 2 o p_129068_ + c ()Ljava/lang/String; m_274053_ + static + c (Lrk;)Lcom/mojang/serialization/DataResult; getMapValues + 0 o p_129070_ + convertTo (Lcom/mojang/serialization/DynamicOps;Ljava/lang/Object;)Ljava/lang/Object; convertTo + 0 o p_129072_ + 1 o p_129073_ + createBoolean (Z)Ljava/lang/Object; createBoolean + 0 o p_129075_ + createByte (B)Ljava/lang/Object; createByte + 0 o p_129077_ + createByteList (Ljava/nio/ByteBuffer;)Ljava/lang/Object; createByteList + 0 o p_129079_ + createDouble (D)Ljava/lang/Object; createDouble + 0 o p_129081_ + createFloat (F)Ljava/lang/Object; createFloat + 0 o p_129083_ + createInt (I)Ljava/lang/Object; createInt + 0 o p_129085_ + createIntList (Ljava/util/stream/IntStream;)Ljava/lang/Object; createIntList + 0 o p_129087_ + createList (Ljava/util/stream/Stream;)Ljava/lang/Object; createList + 0 o p_129089_ + createLong (J)Ljava/lang/Object; createLong + 0 o p_129091_ + createLongList (Ljava/util/stream/LongStream;)Ljava/lang/Object; createLongList + 0 o p_129093_ + createMap (Ljava/util/stream/Stream;)Ljava/lang/Object; createMap + 0 o p_129095_ + createNumeric (Ljava/lang/Number;)Ljava/lang/Object; createNumeric + 0 o p_129097_ + createShort (S)Ljava/lang/Object; createShort + 0 o p_129099_ + createString (Ljava/lang/String;)Ljava/lang/Object; createString + 0 o p_129101_ + d (Lrk;)Lcom/mojang/serialization/DataResult; getMapEntries + 0 o p_129103_ + d ()Ljava/lang/String; m_274062_ + static + e (Lrk;)Lcom/mojang/serialization/DataResult; getMap + 0 o p_129105_ + empty ()Ljava/lang/Object; empty + f (Lrk;)Lcom/mojang/serialization/DataResult; getStream + 0 o p_129108_ + g (Lrk;)Lcom/mojang/serialization/DataResult; getList + 0 o p_129110_ + getByteBuffer (Ljava/lang/Object;)Lcom/mojang/serialization/DataResult; getByteBuffer + 0 o p_129112_ + getIntStream (Ljava/lang/Object;)Lcom/mojang/serialization/DataResult; getIntStream + 0 o p_129114_ + getList (Ljava/lang/Object;)Lcom/mojang/serialization/DataResult; getList + 0 o p_129116_ + getLongStream (Ljava/lang/Object;)Lcom/mojang/serialization/DataResult; getLongStream + 0 o p_129118_ + getMap (Ljava/lang/Object;)Lcom/mojang/serialization/DataResult; getMap + 0 o p_129120_ + getMapEntries (Ljava/lang/Object;)Lcom/mojang/serialization/DataResult; getMapEntries + 0 o p_129122_ + getMapValues (Ljava/lang/Object;)Lcom/mojang/serialization/DataResult; getMapValues + 0 o p_129124_ + getNumberValue (Ljava/lang/Object;)Lcom/mojang/serialization/DataResult; getNumberValue + 0 o p_129126_ + getStream (Ljava/lang/Object;)Lcom/mojang/serialization/DataResult; getStream + 0 o p_129128_ + getStringValue (Ljava/lang/Object;)Lcom/mojang/serialization/DataResult; getStringValue + 0 o p_129130_ + h (Lrk;)Lcom/mojang/serialization/DataResult; getByteBuffer + 0 o p_129132_ + i (Lrk;)Lcom/mojang/serialization/DataResult; getIntStream + 0 o p_129134_ + j (Lrk;)Lcom/mojang/serialization/DataResult; getLongStream + 0 o p_129136_ + k (Lrk;)Ljava/util/Optional; m_246675_ + static + 0 o p_249503_ + l (Lrk;)Ljava/lang/String; m_274049_ + static + 0 o p_274782_ + m (Lrk;)Lrk; m_129157_ + static + 0 o p_129158_ + mapBuilder ()Lcom/mojang/serialization/RecordBuilder; mapBuilder + mergeToList (Ljava/lang/Object;Ljava/lang/Object;)Lcom/mojang/serialization/DataResult; mergeToList + 0 o p_129145_ + 1 o p_129146_ + mergeToList (Ljava/lang/Object;Ljava/util/List;)Lcom/mojang/serialization/DataResult; mergeToList + 0 o p_129148_ + 1 o p_129149_ + mergeToMap (Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;)Lcom/mojang/serialization/DataResult; mergeToMap + 0 o p_129154_ + 1 o p_129155_ + 2 o p_129156_ + mergeToMap (Ljava/lang/Object;Lcom/mojang/serialization/MapLike;)Lcom/mojang/serialization/DataResult; mergeToMap + 0 o p_129151_ + 1 o p_129152_ + n (Lrk;)Lrk; m_244788_ + static + 0 o p_248049_ + o (Lrk;)Ljava/lang/String; m_274058_ + static + 0 o p_274789_ + p (Lrk;)Ljava/lang/String; m_274059_ + static + 0 o p_274790_ + q (Lrk;)Ljava/lang/String; m_274063_ + static + 0 o p_274793_ + r (Lrk;)Ljava/lang/String; m_274051_ + static + 0 o p_274783_ + remove (Ljava/lang/Object;Ljava/lang/String;)Ljava/lang/Object; remove + 0 o p_129160_ + 1 o p_129161_ + s (Lrk;)Ljava/lang/String; m_274052_ + static + 0 o p_274784_ + t (Lrk;)Ljava/lang/String; m_274055_ + static + 0 o p_274786_ + toString ()Ljava/lang/String; toString + u (Lrk;)Lcom/mojang/serialization/DataResult; m_274057_ + static + 0 o p_274788_ + v (Lrk;)Ljava/lang/String; m_274061_ + static + 0 o p_274792_ + w (Lrk;)Lcom/mojang/serialization/DataResult; m_274056_ + static + 0 o p_274787_ + x (Lrk;)Ljava/lang/String; m_274060_ + static + 0 o p_274791_ +rc$1 net/minecraft/nbt/NbtOps$1 + a f_129163_ + b f_129164_ + (Lrc;Lqr;)V + 0 o p_129166_ + 1 o p_129167_ + a (Lqr;Ljava/lang/String;)Lcom/mojang/datafixers/util/Pair; m_129170_ + 0 o p_129171_ + 1 o p_129172_ + a (Lrk;)Lrk; get + 0 o p_129174_ + a (Ljava/lang/String;)Lrk; get + 0 o p_129169_ + entries ()Ljava/util/stream/Stream; entries + get (Ljava/lang/Object;)Ljava/lang/Object; get + 0 o p_129177_ + get (Ljava/lang/String;)Ljava/lang/Object; get + 0 o p_129179_ + toString ()Ljava/lang/String; toString +rc$a net/minecraft/nbt/NbtOps$ByteListCollector + a f_243771_ + ([B)V + 0 o p_250457_ + (B)V + 0 o p_249905_ + a (Lrk;)Lrc$f; m_246081_ + 0 o p_250723_ + a ()Lrk; m_245493_ +rc$b net/minecraft/nbt/NbtOps$HeterogenousListCollector + a f_244100_ + (Lit/unimi/dsi/fastutil/longs/LongArrayList;)V + 0 o p_249410_ + (Lit/unimi/dsi/fastutil/bytes/ByteArrayList;)V + 0 o p_248575_ + (Ljava/util/Collection;)V + 0 o p_249606_ + ()V + (Lit/unimi/dsi/fastutil/ints/IntArrayList;)V + 0 o p_250270_ + a (B)V m_247549_ + 0 o p_249160_ + a (I)V m_246415_ + 0 o p_249166_ + a (Lrk;)Lrc$f; m_246081_ + 0 o p_249045_ + a (Lqr;)Z m_246400_ + static + 0 o p_252073_ + a (J)V m_246462_ + 0 o p_249754_ + a ()Lrk; m_245493_ + b (Lrk;)Lrk; m_247665_ + static + 0 o p_252042_ + c (Lrk;)Lqr; m_247310_ + static + 0 o p_251263_ +rc$c net/minecraft/nbt/NbtOps$HomogenousListCollector + a f_244352_ + (Lqx;)V + 0 o p_249889_ + (Lrk;)V + 0 o p_249247_ + a (Lrk;)Lrc$f; m_246081_ + 0 o p_248727_ + a ()Lrk; m_245493_ +rc$d net/minecraft/nbt/NbtOps$InitialListCollector + a f_243778_ + ()V + static + ()V + a (Lrk;)Lrc$f; m_246081_ + 0 o p_251635_ + a ()Lrk; m_245493_ +rc$e net/minecraft/nbt/NbtOps$IntListCollector + a f_244530_ + (I)V + 0 o p_250274_ + ([I)V + 0 o p_249489_ + a (Lrk;)Lrc$f; m_246081_ + 0 o p_251372_ + a ()Lrk; m_245493_ +rc$f net/minecraft/nbt/NbtOps$ListCollector + a (Ljava/util/stream/Stream;)Lrc$f; m_246922_ + 0 o p_249876_ + a (Lrk;)Lrc$f; m_246081_ + 0 o p_249030_ + a (Ljava/lang/Iterable;)Lrc$f; m_246277_ + 0 o p_249781_ + a ()Lrk; m_245493_ +rc$g net/minecraft/nbt/NbtOps$LongListCollector + a f_244231_ + (J)V + 0 o p_249842_ + ([J)V + 0 o p_251409_ + a (Lrk;)Lrc$f; m_246081_ + 0 o p_252167_ + a ()Lrk; m_245493_ +rc$h net/minecraft/nbt/NbtOps$NbtRecordBuilder + a f_129181_ + (Lrc;)V + 0 o p_129183_ + a (Ljava/lang/String;Lrk;Lqr;)Lqr; append + 0 o p_129186_ + 1 o p_129187_ + 2 o p_129188_ + a ()Lqr; initBuilder + a (Lrk;)Ljava/lang/String; m_274399_ + static + 0 o p_275576_ + a (Lqr;Lrk;)Lcom/mojang/serialization/DataResult; build + 0 o p_129190_ + 1 o p_129191_ + append (Ljava/lang/String;Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object; append + 0 o p_129193_ + 1 o p_129194_ + 2 o p_129195_ + build (Ljava/lang/Object;Ljava/lang/Object;)Lcom/mojang/serialization/DataResult; build + 0 o p_129197_ + 1 o p_129198_ + initBuilder ()Ljava/lang/Object; initBuilder +rd net/minecraft/nbt/NbtUtils + a f_178007_ + b f_178008_ + c f_178009_ + d f_178010_ + e f_178011_ + f f_178012_ + g f_178013_ + h f_178014_ + i f_178015_ + j f_129200_ + k f_178016_ + l f_178017_ + ()V + static + ()V + a (ILjava/lang/StringBuilder;)Ljava/lang/StringBuilder; m_178019_ + static + 0 o p_178020_ + 1 o p_178021_ + a (Lqx;Lqr;)V m_178043_ + static + 0 o p_178044_ + 1 o p_178045_ + a (Ldcb;)Lqr; m_129202_ + static + 0 o p_129203_ + a (Ljava/lang/String;)Lqr; m_178024_ + static + 0 o p_178025_ + a (Ldde;Ljava/lang/Comparable;)Ljava/lang/String; m_129210_ + static + 0 o p_129211_ + 1 o p_129212_ + a (Lrk;)Ljava/util/UUID; m_129233_ + static + 0 o p_129234_ + a (Lrk;Z)Ljava/lang/String; m_178050_ + static + 0 o p_178051_ + 1 o p_178052_ + a (Lqr;I)Lqr; m_264046_ + static + 0 o p_265534_ + 1 o p_265686_ + a (Lqx;Lqx;Lqx;)V m_178046_ + static + 0 o p_178047_ + 1 o p_178048_ + 2 o p_178049_ + a (Lrk;Lrk;Z)Z m_129235_ + static + 0 o p_129236_ + 1 o p_129237_ + 2 o p_129238_ + a (Ldcd;Ldde;Ljava/lang/String;Lqr;Lqr;)Ldcd; m_129204_ + static + 0 o p_129205_ + 1 o p_129206_ + 2 o p_129207_ + 3 o p_129208_ + 4 o p_129209_ + a (Lqx;)D m_178041_ + static + 0 o p_178042_ + a (Lqr;Lcom/mojang/authlib/GameProfile;)Lqr; m_129230_ + static + 0 o p_129231_ + 1 o p_129232_ + a (Ldxe;)Lqr; m_178022_ + static + 0 o p_178023_ + a (Lqr;Ljava/lang/String;)Ljava/lang/String; m_178034_ + static + 0 o p_178035_ + 1 o p_178036_ + a (Lhf;Lqr;)Ldcb; m_247651_ + static + 0 o p_256363_ + 1 o p_250775_ + a (Lqr;)Lcom/mojang/authlib/GameProfile; m_129228_ + static + 0 o p_129229_ + a (Ljava/util/Map;Lqr;)Lqx; m_178031_ + static + 0 o p_178032_ + 1 o p_178033_ + a (Lqr;Ljava/lang/String;Ljava/lang/String;)V m_178037_ + static + 0 o p_178038_ + 1 o p_178039_ + 2 o p_178040_ + a (Ljava/lang/StringBuilder;Lrk;IZ)Ljava/lang/StringBuilder; m_178026_ + static + 0 o p_178027_ + 1 o p_178028_ + 2 o p_178029_ + 3 o p_178030_ + a (Ljava/util/UUID;)Lqv; m_129226_ + static + 0 o p_129227_ + a (Lgu;)Lqr; m_129224_ + static + 0 o p_129225_ + b (Lrk;)Ljava/lang/String; m_178057_ + static + 0 o p_178058_ + b (Lqr;)Lgu; m_129239_ + static + 0 o p_129240_ + b (Lqr;I)I m_264487_ + static + 0 o p_265397_ + 1 o p_265399_ + b (Lqx;)D m_178055_ + static + 0 o p_178056_ + b (Ljava/lang/String;)Lqr; m_178053_ + static + 0 o p_178054_ + c (Lrk;)Lsw; m_178061_ + static + 0 o p_178062_ + c (Lqr;)Ljava/lang/String; m_178063_ + static + 0 o p_178064_ + c (Lqx;)D m_178059_ + static + 0 o p_178060_ + d (Lqx;)I m_178065_ + static + 0 o p_178066_ + d (Lqr;)Lqr; m_178067_ + static + 0 o p_178068_ + e (Lqr;)Lqr; m_178071_ + static + 0 o p_178072_ + e (Lqx;)I m_178069_ + static + 0 o p_178070_ + f (Lqr;)Ljava/lang/String; m_178075_ + static + 0 o p_178076_ + f (Lqx;)I m_178073_ + static + 0 o p_178074_ + g (Lqr;)Lqr; m_264171_ + static + 0 o p_265050_ + h (Lqr;)Lqx; m_178077_ + static + 0 o p_178078_ + i (Lqr;)Lqx; m_178079_ + static + 0 o p_178080_ +re net/minecraft/nbt/NumericTag + ()V + f ()J m_7046_ + g ()I m_7047_ + h ()S m_7053_ + i ()B m_7063_ + j ()D m_7061_ + k ()F m_7057_ + l ()Ljava/lang/Number; m_8103_ + toString ()Ljava/lang/String; toString +rf net/minecraft/nbt/ShortTag + a f_129244_ + b f_263431_ + c f_129245_ + ()V + static + (S)V + 0 o p_129248_ + a (S)Lrf; m_129258_ + static + 0 o p_129259_ + a ()I m_263179_ + a (Ljava/io/DataOutput;)V m_6434_ + 0 o p_129254_ + a (Lro;)V m_142327_ + 0 o p_178084_ + a (Lrh;)Lrh$b; m_196533_ + 0 o p_197515_ + b ()B m_7060_ + c ()Lrm; m_6458_ + d ()Lrk; m_6426_ + e ()Lrf; m_6426_ + equals (Ljava/lang/Object;)Z equals + 0 o p_129265_ + f ()J m_7046_ + g ()I m_7047_ + h ()S m_7053_ + hashCode ()I hashCode + i ()B m_7063_ + j ()D m_7061_ + k ()F m_7057_ + l ()Ljava/lang/Number; m_8103_ +rf$1 net/minecraft/nbt/ShortTag$1 + ()V + a (Ljava/io/DataInput;ILra;)Lrf; m_7300_ + 0 o p_129277_ + 1 o p_129278_ + 2 o p_129279_ + a ()Ljava/lang/String; m_5987_ + a (Ljava/io/DataInput;Lrh;)Lrh$b; m_196511_ + 0 o p_197517_ + 1 o p_197518_ + b ()Ljava/lang/String; m_5986_ + b (Ljava/io/DataInput;ILra;)Lrk; m_7300_ + 0 o p_129282_ + 1 o p_129283_ + 2 o p_129284_ + c ()I m_196292_ + d ()Z m_7064_ +rf$a net/minecraft/nbt/ShortTag$Cache + a f_129286_ + b f_178085_ + c f_178086_ + ()V + static + ()V +rg net/minecraft/nbt/SnbtPrinterTagVisitor + a f_178088_ + b f_178089_ + c f_178090_ + d f_178091_ + e f_178092_ + f f_178093_ + g f_178094_ + h f_178095_ + i f_178096_ + j f_178097_ + k f_178098_ + l f_178099_ + m f_178100_ + n f_178101_ + o f_178102_ + p f_178103_ + ()V + static + (Ljava/lang/String;ILjava/util/List;)V + 0 o p_178107_ + 1 o p_178108_ + 2 o p_178109_ + ()V + a (Lqo;)V m_142154_ + 0 o p_178116_ + a (Lqp;)V m_141946_ + 0 o p_178118_ + a (Lrk;)Ljava/lang/String; m_178141_ + 0 o p_178142_ + a (Lqs;)V m_142121_ + 0 o p_178122_ + a ()Ljava/lang/String; m_178110_ + a (Lqt;)V m_142384_ + 0 o p_178124_ + a (Ljava/util/HashMap;)V m_178113_ + static + 0 o p_178114_ + a (Lqr;)V m_142303_ + 0 o p_178120_ + a (Ljava/lang/String;)Ljava/lang/String; m_178111_ + static + 0 o p_178112_ + a (Lqy;)V m_142309_ + 0 o p_178134_ + a (Lqv;)V m_142251_ + 0 o p_178128_ + a (Lqu;)V m_142181_ + 0 o p_178126_ + a (Lqz;)V m_142046_ + 0 o p_178136_ + a (Lqw;)V m_142045_ + 0 o p_178130_ + a (Lqx;)V m_142447_ + 0 o p_178132_ + a (Lri;)V m_142614_ + 0 o p_178140_ + a (Lrf;)V m_142183_ + 0 o p_178138_ + b (Lqr;)Ljava/util/List; m_178146_ + 0 o p_178147_ + b (Ljava/lang/String;)V m_178144_ + 0 o p_178145_ + b ()V m_178143_ +rh net/minecraft/nbt/StreamTagVisitor + a (Ljava/lang/String;)Lrh$b; m_196458_ + 0 o p_197525_ + a (I)Lrh$b; m_196353_ + 0 o p_197523_ + a (J)Lrh$b; m_196295_ + 0 o p_197524_ + a (Lrm;)Lrh$a; m_196214_ + 0 o p_197526_ + a (Lrm;I)Lrh$b; m_196339_ + 0 o p_197527_ + 1 o p_197528_ + a (B)Lrh$b; m_196209_ + 0 o p_197520_ + a (S)Lrh$b; m_196553_ + 0 o p_197531_ + a (F)Lrh$b; m_196532_ + 0 o p_197522_ + a (D)Lrh$b; m_196455_ + 0 o p_197521_ + a (Lrm;Ljava/lang/String;)Lrh$a; m_196425_ + 0 o p_197529_ + 1 o p_197530_ + a ()Lrh$b; m_196525_ + a ([B)Lrh$b; m_196152_ + 0 o p_197532_ + a ([I)Lrh$b; m_196376_ + 0 o p_197533_ + a ([J)Lrh$b; m_196280_ + 0 o p_197534_ + b (Lrm;I)Lrh$a; m_196338_ + 0 o p_197536_ + 1 o p_197537_ + b (Lrm;)Lrh$b; m_196213_ + 0 o p_197535_ + b ()Lrh$b; m_196527_ +rh$a net/minecraft/nbt/StreamTagVisitor$EntryResult + a ENTER + b SKIP + c BREAK + d HALT + e $VALUES + ()V + static + (Ljava/lang/String;I)V + 0 o p_197545_ + 1 o p_197546_ + a ()[Lrh$a; m_197547_ + static + valueOf (Ljava/lang/String;)Lrh$a; valueOf + static + 0 o p_197549_ + values ()[Lrh$a; values + static +rh$b net/minecraft/nbt/StreamTagVisitor$ValueResult + a CONTINUE + b BREAK + c HALT + d $VALUES + ()V + static + (Ljava/lang/String;I)V + 0 o p_197557_ + 1 o p_197558_ + a ()[Lrh$b; m_197559_ + static + valueOf (Ljava/lang/String;)Lrh$b; valueOf + static + 0 o p_197561_ + values ()[Lrh$b; values + static +ri net/minecraft/nbt/StringTag + A f_129290_ + a f_129288_ + b f_263432_ + c f_129289_ + w f_178149_ + x f_178150_ + y f_178151_ + z f_178152_ + ()V + static + (Ljava/lang/String;)V + 0 o p_129293_ + a ()I m_263179_ + a (Ljava/io/DataOutput;)V m_6434_ + 0 o p_129296_ + a (Ljava/lang/String;)Lri; m_129297_ + static + 0 o p_129298_ + a (Ljava/io/DataInput;)V m_197563_ + static + 0 o p_197564_ + a (Lro;)V m_142327_ + 0 o p_178154_ + a (Lrh;)Lrh$b; m_196533_ + 0 o p_197566_ + b (Ljava/lang/String;)Ljava/lang/String; m_129303_ + static + 0 o p_129304_ + b ()B m_7060_ + c ()Lrm; m_6458_ + d ()Lrk; m_6426_ + e ()Lri; m_6426_ + equals (Ljava/lang/Object;)Z equals + 0 o p_129308_ + hashCode ()I hashCode + m_ ()Ljava/lang/String; m_7916_ + toString ()Ljava/lang/String; toString +ri$1 net/minecraft/nbt/StringTag$1 + ()V + a (Ljava/io/DataInput;)V m_196159_ + 0 o p_197568_ + a (Ljava/io/DataInput;ILra;)Lri; m_7300_ + 0 o p_129315_ + 1 o p_129316_ + 2 o p_129317_ + a ()Ljava/lang/String; m_5987_ + a (Ljava/io/DataInput;Lrh;)Lrh$b; m_196511_ + 0 o p_197570_ + 1 o p_197571_ + b ()Ljava/lang/String; m_5986_ + b (Ljava/io/DataInput;ILra;)Lrk; m_7300_ + 0 o p_129320_ + 1 o p_129321_ + 2 o p_129322_ + d ()Z m_7064_ +rj net/minecraft/nbt/StringTagVisitor + a f_178155_ + b f_178156_ + ()V + static + ()V + a (Lqo;)V m_142154_ + 0 o p_178162_ + a (Lqp;)V m_141946_ + 0 o p_178164_ + a (Lrk;)Ljava/lang/String; m_178187_ + 0 o p_178188_ + a (Lqs;)V m_142121_ + 0 o p_178168_ + a (Lqt;)V m_142384_ + 0 o p_178170_ + a (Lqr;)V m_142303_ + 0 o p_178166_ + a (Ljava/lang/String;)Ljava/lang/String; m_178159_ + static + 0 o p_178160_ + a (Lqy;)V m_142309_ + 0 o p_178180_ + a (Lqv;)V m_142251_ + 0 o p_178174_ + a (Lqu;)V m_142181_ + 0 o p_178172_ + a (Lqz;)V m_142046_ + 0 o p_178182_ + a (Lqw;)V m_142045_ + 0 o p_178176_ + a (Lqx;)V m_142447_ + 0 o p_178178_ + a (Lri;)V m_142614_ + 0 o p_178186_ + a (Lrf;)V m_142183_ + 0 o p_178184_ +rk net/minecraft/nbt/Tag + d f_178189_ + e f_178190_ + f f_178191_ + g f_178192_ + h f_178193_ + i f_178194_ + j f_178195_ + k f_178196_ + l f_178197_ + m f_178198_ + n f_178199_ + o f_178200_ + p f_178201_ + q f_178202_ + r f_178203_ + s f_178204_ + t f_178205_ + u f_178206_ + v f_178207_ + a (Lro;)V m_142327_ + 0 o p_178208_ + a ()I m_263179_ + a (Lrh;)Lrh$b; m_196533_ + 0 o p_197572_ + a (Ljava/io/DataOutput;)V m_6434_ + 0 o p_129329_ + b ()B m_7060_ + b (Lrh;)V m_197573_ + 0 o p_197574_ + c ()Lrm; m_6458_ + d ()Lrk; m_6426_ + m_ ()Ljava/lang/String; m_7916_ + toString ()Ljava/lang/String; toString +rl net/minecraft/nbt/TagParser + a f_129334_ + b f_129335_ + c f_129336_ + d f_129337_ + e f_129338_ + f f_129339_ + g f_178209_ + h f_178210_ + i f_178211_ + j f_178212_ + k f_178213_ + l f_178214_ + m f_129340_ + n f_129341_ + o f_129342_ + p f_129343_ + q f_129344_ + r f_129345_ + s f_129346_ + t f_129347_ + ()V + static + (Lcom/mojang/brigadier/StringReader;)V + 0 o p_129350_ + a (C)V m_129352_ + 0 o p_129353_ + a (Ljava/lang/String;)Lqr; m_129359_ + static + 0 o p_129360_ + a (Ljava/lang/Object;)Lcom/mojang/brigadier/Message; m_129354_ + static + 0 o p_129355_ + a (Ljava/lang/Object;Ljava/lang/Object;)Lcom/mojang/brigadier/Message; m_129356_ + static + 0 o p_129357_ + 1 o p_129358_ + a (Lrm;Lrm;)Ljava/util/List; m_129361_ + 0 o p_129362_ + 1 o p_129363_ + a ()Lqr; m_129351_ + b ()Ljava/lang/String; m_129364_ + b (Ljava/lang/Object;Ljava/lang/Object;)Lcom/mojang/brigadier/Message; m_129365_ + static + 0 o p_129366_ + 1 o p_129367_ + b (Ljava/lang/String;)Lrk; m_129368_ + 0 o p_129369_ + c ()Lrk; m_129370_ + d ()Lrk; m_129371_ + e ()Lrk; m_129372_ + f ()Lqr; m_129373_ + g ()Lrk; m_129374_ + h ()Lrk; m_129375_ + i ()Z m_129376_ +rm net/minecraft/nbt/TagType + a (Ljava/io/DataInput;)V m_196159_ + 0 o p_197575_ + a ()Ljava/lang/String; m_5987_ + a (I)Lrm; m_129377_ + static + 0 o p_129378_ + a (Ljava/io/DataInput;Lrh;)Lrh$b; m_196511_ + 0 o p_197578_ + 1 o p_197579_ + a (Ljava/io/DataInput;I)V m_196189_ + 0 o p_197576_ + 1 o p_197577_ + b ()Ljava/lang/String; m_5986_ + b (Ljava/io/DataInput;Lrh;)V m_197580_ + 0 o p_197581_ + 1 o p_197582_ + b (Ljava/io/DataInput;ILra;)Lrk; m_7300_ + 0 o p_129379_ + 1 o p_129380_ + 2 o p_129381_ + d ()Z m_7064_ +rm$1 net/minecraft/nbt/TagType$1 + a f_129382_ + (I)V + 0 o p_129384_ + a (Ljava/io/DataInput;)V m_196159_ + 0 o p_197584_ + a (Ljava/io/DataInput;ILra;)Lqt; m_7300_ + 0 o p_129387_ + 1 o p_129388_ + 2 o p_129389_ + a ()Ljava/lang/String; m_5987_ + a (Ljava/io/DataInput;Lrh;)Lrh$b; m_196511_ + 0 o p_197589_ + 1 o p_197590_ + a (Ljava/io/DataInput;I)V m_196189_ + 0 o p_197586_ + 1 o p_197587_ + b ()Ljava/lang/String; m_5986_ + b (Ljava/io/DataInput;ILra;)Lrk; m_7300_ + 0 o p_129392_ + 1 o p_129393_ + 2 o p_129394_ + c ()Ljava/io/IOException; m_197591_ +rm$2 net/minecraft/nbt/TagType$2 + a f_197592_ + ()V + static +rm$a net/minecraft/nbt/TagType$StaticSize + a (Ljava/io/DataInput;)V m_196159_ + 0 o p_197595_ + a (Ljava/io/DataInput;I)V m_196189_ + 0 o p_197597_ + 1 o p_197598_ + c ()I m_196292_ +rm$b net/minecraft/nbt/TagType$VariableSize + a (Ljava/io/DataInput;I)V m_196189_ + 0 o p_197600_ + 1 o p_197601_ +rn net/minecraft/nbt/TagTypes + a f_129395_ + ()V + static + ()V + a (I)Lrm; m_129397_ + static + 0 o p_129398_ +ro net/minecraft/nbt/TagVisitor + a (Lqo;)V m_142154_ + 0 o p_178216_ + a (Lqp;)V m_141946_ + 0 o p_178217_ + a (Lqs;)V m_142121_ + 0 o p_178219_ + a (Lqt;)V m_142384_ + 0 o p_178220_ + a (Lqr;)V m_142303_ + 0 o p_178218_ + a (Lqy;)V m_142309_ + 0 o p_178225_ + a (Lqv;)V m_142251_ + 0 o p_178222_ + a (Lqu;)V m_142181_ + 0 o p_178221_ + a (Lqz;)V m_142046_ + 0 o p_178226_ + a (Lqw;)V m_142045_ + 0 o p_178223_ + a (Lqx;)V m_142447_ + 0 o p_178224_ + a (Lri;)V m_142614_ + 0 o p_178228_ + a (Lrf;)V m_142183_ + 0 o p_178227_ +rp net/minecraft/nbt/TextComponentTagVisitor + a f_178229_ + b f_178230_ + c f_178231_ + d f_178232_ + e f_178233_ + f f_178234_ + g f_178235_ + h f_178236_ + i f_178237_ + j f_178238_ + k f_178239_ + l f_178240_ + m f_178241_ + n f_178242_ + o f_178243_ + p f_178244_ + q f_178245_ + r f_178246_ + s f_178247_ + t f_178248_ + ()V + static + (Ljava/lang/String;I)V + 0 o p_178251_ + 1 o p_178252_ + a (Lqo;)V m_142154_ + 0 o p_178256_ + a (Lqp;)V m_141946_ + 0 o p_178258_ + a (Ljava/lang/String;)Lsw; m_178253_ + static + 0 o p_178254_ + a (Lqs;)V m_142121_ + 0 o p_178262_ + a (Lqt;)V m_142384_ + 0 o p_178264_ + a (Lqr;)V m_142303_ + 0 o p_178260_ + a (Lrk;)Lsw; m_178281_ + 0 o p_178282_ + a (Lqy;)V m_142309_ + 0 o p_178274_ + a (Lqv;)V m_142251_ + 0 o p_178268_ + a (Lqu;)V m_142181_ + 0 o p_178266_ + a (Lqz;)V m_142046_ + 0 o p_178276_ + a (Lqw;)V m_142045_ + 0 o p_178270_ + a (Lqx;)V m_142447_ + 0 o p_178272_ + a (Lri;)V m_142614_ + 0 o p_178280_ + a (Lrf;)V m_142183_ + 0 o p_178278_ +rq net/minecraft/nbt/package-info +rr net/minecraft/nbt/visitors/CollectFields + a f_197602_ + b f_197603_ + c f_197604_ + ([Lrt;)V + 0 o p_202496_ + a (Lrm;)Lrh$a; m_196214_ + 0 o p_197608_ + a (Lrm;Ljava/lang/String;)Lrh$a; m_196425_ + 0 o p_197610_ + 1 o p_197611_ + b (Lrm;)Lrh$b; m_196213_ + 0 o p_197614_ + b ()Lrh$b; m_196527_ + c ()I m_197615_ +rs net/minecraft/nbt/visitors/CollectToTag + a f_197662_ + b f_197663_ + c f_197664_ + ()V + a (Ljava/lang/String;)Lrh$b; m_196458_ + 0 o p_197678_ + a (B)Lrh$b; m_196209_ + 0 o p_197668_ + a (S)Lrh$b; m_196553_ + 0 o p_197693_ + a (F)Lrh$b; m_196532_ + 0 o p_197672_ + a (D)Lrh$b; m_196455_ + 0 o p_197670_ + a (Lrm;Ljava/lang/String;)Lrh$a; m_196425_ + 0 o p_197690_ + 1 o p_197691_ + a (I)Lrh$b; m_196353_ + 0 o p_197674_ + a (J)Lrh$b; m_196295_ + 0 o p_197676_ + a (Lrm;)Lrh$a; m_196214_ + 0 o p_197685_ + a (Lrm;I)Lrh$b; m_196339_ + 0 o p_197687_ + 1 o p_197688_ + a (Lqr;Lrk;)V m_197679_ + 0 o p_197680_ + 1 o p_197681_ + a (Lrk;)V m_197682_ + 0 o p_197683_ + a ()Lrh$b; m_196525_ + a ([B)Lrh$b; m_196152_ + 0 o p_197695_ + a ([I)Lrh$b; m_196376_ + 0 o p_197697_ + a ([J)Lrh$b; m_196280_ + 0 o p_197699_ + b (Lrm;I)Lrh$a; m_196338_ + 0 o p_197709_ + 1 o p_197710_ + b (Lrm;)Lrh$b; m_196213_ + 0 o p_197707_ + b (Lqr;Lrk;)V m_197701_ + 0 o p_197702_ + 1 o p_197703_ + b ()Lrh$b; m_196527_ + b (Lrk;)V m_197704_ + 0 o p_197705_ + c (Lrm;)V m_197711_ + 0 o p_197712_ + d ()Lrk; m_197713_ + e ()I m_197714_ +rt net/minecraft/nbt/visitors/FieldSelector + a f_202497_ + b f_202498_ + c f_202499_ + (Ljava/util/List;Lrm;Ljava/lang/String;)V + 0 o f_202497_ + 1 o f_202498_ + 2 o f_202499_ + (Ljava/lang/String;Lrm;Ljava/lang/String;)V + 0 o p_202506_ + 1 o p_202507_ + 2 o p_202508_ + (Lrm;Ljava/lang/String;)V + 0 o p_202514_ + 1 o p_202515_ + (Ljava/lang/String;Ljava/lang/String;Lrm;Ljava/lang/String;)V + 0 o p_202501_ + 1 o p_202502_ + 2 o p_202503_ + 3 o p_202504_ + a ()Ljava/util/List; f_202497_ + b ()Lrm; f_202498_ + c ()Ljava/lang/String; f_202499_ + equals (Ljava/lang/Object;)Z equals + 0 o p_202520_ + hashCode ()I hashCode + toString ()Ljava/lang/String; toString +ru net/minecraft/nbt/visitors/FieldTree + a f_202523_ + b f_202524_ + c f_202525_ + (ILjava/util/Map;Ljava/util/Map;)V + 0 o f_202523_ + 1 o f_202524_ + 2 o f_202525_ + (I)V + 0 o p_202527_ + a (Ljava/lang/String;)Lru; m_202533_ + 0 o p_202534_ + a (Lrt;)V m_202538_ + 0 o p_202539_ + a (Lrm;Ljava/lang/String;)Z m_202535_ + 0 o p_202536_ + 1 o p_202537_ + a ()Lru; m_202532_ + static + b ()I f_202523_ + c ()Ljava/util/Map; f_202524_ + d ()Ljava/util/Map; f_202525_ + equals (Ljava/lang/Object;)Z equals + 0 o p_202544_ + hashCode ()I hashCode + toString ()Ljava/lang/String; toString +rv net/minecraft/nbt/visitors/SkipAll + a f_197715_ + ()V + static + a (Ljava/lang/String;)Lrh$b; m_196458_ + 0 o p_197729_ + a (I)Lrh$b; m_196353_ + 0 o p_197725_ + a (J)Lrh$b; m_196295_ + 0 o p_197727_ + a (Lrm;)Lrh$a; m_196214_ + 0 o p_197731_ + a (Lrm;I)Lrh$b; m_196339_ + 0 o p_197733_ + 1 o p_197734_ + a (B)Lrh$b; m_196209_ + 0 o p_197719_ + a (S)Lrh$b; m_196553_ + 0 o p_197739_ + a (F)Lrh$b; m_196532_ + 0 o p_197723_ + a (D)Lrh$b; m_196455_ + 0 o p_197721_ + a (Lrm;Ljava/lang/String;)Lrh$a; m_196425_ + 0 o p_197736_ + 1 o p_197737_ + a ()Lrh$b; m_196525_ + a ([B)Lrh$b; m_196152_ + 0 o p_197741_ + a ([I)Lrh$b; m_196376_ + 0 o p_197743_ + a ([J)Lrh$b; m_196280_ + 0 o p_197745_ + b (Lrm;I)Lrh$a; m_196338_ + 0 o p_197750_ + 1 o p_197751_ + b (Lrm;)Lrh$b; m_196213_ + 0 o p_197748_ + b ()Lrh$b; m_196527_ +rv$1 net/minecraft/nbt/visitors/SkipAll$1 + ()V +rw net/minecraft/nbt/visitors/SkipFields + a f_202547_ + ([Lrt;)V + 0 o p_202549_ + a (Lrm;Ljava/lang/String;)Lrh$a; m_196425_ + 0 o p_202551_ + 1 o p_202552_ + b ()Lrh$b; m_196527_ +rx net/minecraft/nbt/visitors/package-info +ry net/minecraft/network/CipherBase + a f_129399_ + b f_129400_ + c f_129401_ + (Ljavax/crypto/Cipher;)V + 0 o p_129403_ + a (Lio/netty/buffer/ByteBuf;Lio/netty/buffer/ByteBuf;)V m_129406_ + 0 o p_129407_ + 1 o p_129408_ + a (Lio/netty/buffer/ByteBuf;)[B m_129404_ + 0 o p_129405_ + a (Lio/netty/channel/ChannelHandlerContext;Lio/netty/buffer/ByteBuf;)Lio/netty/buffer/ByteBuf; m_129409_ + 0 o p_129410_ + 1 o p_129411_ +rz net/minecraft/network/CipherDecoder + a f_129412_ + (Ljavax/crypto/Cipher;)V + 0 o p_129414_ + a (Lio/netty/channel/ChannelHandlerContext;Lio/netty/buffer/ByteBuf;Ljava/util/List;)V decode + 0 o p_129416_ + 1 o p_129417_ + 2 o p_129418_ + decode (Lio/netty/channel/ChannelHandlerContext;Ljava/lang/Object;Ljava/util/List;)V decode + 0 o p_129420_ + 1 o p_129421_ + 2 o p_129422_ +s net/minecraft/DefaultUncaughtExceptionHandlerWithName + a f_131799_ + (Lorg/slf4j/Logger;)V + 0 o p_202578_ + uncaughtException (Ljava/lang/Thread;Ljava/lang/Throwable;)V uncaughtException + 0 o p_131803_ + 1 o p_131804_ +sa net/minecraft/network/CipherEncoder + a f_129423_ + (Ljavax/crypto/Cipher;)V + 0 o p_129425_ + a (Lio/netty/channel/ChannelHandlerContext;Lio/netty/buffer/ByteBuf;Lio/netty/buffer/ByteBuf;)V encode + 0 o p_129427_ + 1 o p_129428_ + 2 o p_129429_ + encode (Lio/netty/channel/ChannelHandlerContext;Ljava/lang/Object;Lio/netty/buffer/ByteBuf;)V encode + 0 o p_129431_ + 1 o p_129432_ + 2 o p_129433_ +sb net/minecraft/network/CompressionDecoder + a f_182671_ + b f_182672_ + c f_129434_ + d f_129435_ + e f_182673_ + (IZ)V + 0 o p_182675_ + 1 o p_182676_ + a (IZ)V m_182677_ + 0 o p_182678_ + 1 o p_182679_ + decode (Lio/netty/channel/ChannelHandlerContext;Lio/netty/buffer/ByteBuf;Ljava/util/List;)V decode + 0 o p_129441_ + 1 o p_129442_ + 2 o p_129443_ +sc net/minecraft/network/CompressionEncoder + a f_129444_ + b f_129445_ + c f_129446_ + (I)V + 0 o p_129448_ + a (Lio/netty/channel/ChannelHandlerContext;Lio/netty/buffer/ByteBuf;Lio/netty/buffer/ByteBuf;)V encode + 0 o p_129452_ + 1 o p_129453_ + 2 o p_129454_ + a (I)V m_129449_ + 0 o p_129450_ + a ()I m_178298_ + encode (Lio/netty/channel/ChannelHandlerContext;Ljava/lang/Object;Lio/netty/buffer/ByteBuf;)V encode + 0 o p_129456_ + 1 o p_129457_ + 2 o p_129458_ +sd net/minecraft/network/Connection + a f_129459_ + b f_129460_ + c f_202554_ + d f_202555_ + e f_129461_ + f f_129462_ + g f_129463_ + h f_129464_ + i f_178299_ + j f_129465_ + k f_129466_ + l f_129467_ + m f_129468_ + n f_129469_ + o f_129470_ + p f_129471_ + q f_129472_ + r f_129473_ + s f_129474_ + t f_129475_ + u f_129476_ + v f_129477_ + w f_129478_ + x f_129479_ + y f_290021_ + ()V + static + (Lup;)V + 0 o p_129482_ + a (Lio/netty/channel/ChannelHandlerContext;Luo;)V channelRead0 + 0 o p_129487_ + 1 o p_129488_ + a (Lorg/slf4j/Marker;)V m_202556_ + static + 0 o p_202557_ + a (Lsk;)V m_129505_ + 0 o p_129506_ + a (Luo;Lsl;Lse;Lse;)V m_243087_ + 0 o p_243260_ + 1 o p_243290_ + 2 o p_243203_ + 3 o p_243307_ + a (Ljava/net/SocketAddress;)Lsd; m_129493_ + static + 0 o p_129494_ + a (Ljava/net/InetSocketAddress;Z)Lsd; m_178300_ + static + 0 o p_178301_ + 1 o p_178302_ + a (Lio/netty/channel/ChannelPipeline;Lup;)V m_264299_ + static + 0 o p_265436_ + 1 o p_265104_ + a (Ljava/net/InetSocketAddress;ZLsd;)Lio/netty/channel/ChannelFuture; m_290025_ + static + 0 o p_290034_ + 1 o p_290035_ + 2 o p_290031_ + a (Ljavax/crypto/Cipher;Ljavax/crypto/Cipher;)V m_129495_ + 0 o p_129496_ + 1 o p_129497_ + a (Luo;)V m_129512_ + 0 o p_129513_ + a ()V m_129483_ + a (Luo;Lsk;)V m_129517_ + static + 0 o p_129518_ + 1 o p_129519_ + a (Lsl;Lio/netty/util/concurrent/Future;)V m_243034_ + 0 o p_243166_ + 1 o p_243167_ + a (Lse;)V m_129498_ + 0 o p_129499_ + a (Luo;Lsl;)V m_243124_ + 0 o p_243248_ + 1 o p_243316_ + a (Lsw;)V m_129507_ + 0 o p_129508_ + a (IZ)V m_129484_ + 0 o p_129485_ + 1 o p_182682_ + b (Luo;Lsl;Lse;Lse;)V m_243035_ + 0 o p_243168_ + 1 o p_243169_ + 2 o p_243170_ + 3 o p_243171_ + b (Luo;Lsl;)V m_129520_ + 0 o p_129521_ + 1 o p_243246_ + b (Lorg/slf4j/Marker;)V m_202561_ + static + 0 o p_202562_ + b (Lsw;)V m_202558_ + 0 o p_202559_ + b ()V m_7073_ + c ()Ljava/net/SocketAddress; m_129523_ + c (Lorg/slf4j/Marker;)V m_202568_ + static + 0 o p_202569_ + channelActive (Lio/netty/channel/ChannelHandlerContext;)V channelActive + 0 o p_129525_ + channelInactive (Lio/netty/channel/ChannelHandlerContext;)V channelInactive + 0 o p_129527_ + channelRead0 (Lio/netty/channel/ChannelHandlerContext;Ljava/lang/Object;)V channelRead0 + 0 o p_129529_ + 1 o p_129530_ + d ()Z m_129531_ + e ()Lup; m_178313_ + exceptionCaught (Lio/netty/channel/ChannelHandlerContext;Ljava/lang/Throwable;)V exceptionCaught + 0 o p_129533_ + 1 o p_129534_ + f ()Lup; m_178314_ + g ()Z m_129535_ + h ()Z m_129536_ + i ()Z m_129537_ + j ()Lsk; m_129538_ + k ()Lsw; m_129539_ + l ()V m_129540_ + m ()V m_129541_ + n ()F m_129542_ + o ()F m_129543_ + p ()Lse; m_178315_ + q ()V m_129544_ + r ()Lio/netty/channel/DefaultEventLoopGroup; m_202570_ + static + s ()Lio/netty/channel/epoll/EpollEventLoopGroup; m_202571_ + static + t ()Lio/netty/channel/nio/NioEventLoopGroup; m_202572_ + static +sd$1 net/minecraft/network/Connection$1 + a f_129548_ + (Lsd;)V + 0 o p_129550_ + initChannel (Lio/netty/channel/Channel;)V initChannel + 0 o p_129552_ +sd$2 net/minecraft/network/Connection$2 + a f_129553_ + (Lsd;)V + 0 o p_129555_ + initChannel (Lio/netty/channel/Channel;)V initChannel + 0 o p_129557_ +sd$a net/minecraft/network/Connection$PacketHolder + a f_129558_ + b f_129559_ + (Luo;Lsl;)V + 0 o p_243302_ + 1 o p_243266_ +se net/minecraft/network/ConnectionProtocol + a HANDSHAKING + b PLAY + c STATUS + d LOGIN + e f_263799_ + f f_178316_ + g f_178317_ + h f_129571_ + i f_129572_ + j f_129573_ + k f_129574_ + l $VALUES + ()V + static + (Ljava/lang/String;IILse$b;)V + 0 o p_129578_ + 1 o p_129579_ + 2 o p_129580_ + 3 o p_129581_ + a (I)Lse; m_129583_ + static + 0 o p_129584_ + a (Luo;)Lse; m_129592_ + static + 0 o p_129593_ + a (Lse;Ljava/lang/Class;)V m_195613_ + static + 0 o p_195614_ + 1 o p_195615_ + a ()I m_129582_ + a (Lup;)Lun; m_264121_ + 0 o p_265790_ + a (Lse;Lup;Lse$a;)V m_263896_ + static + 0 o p_264718_ + 1 o p_264719_ + 2 o p_264720_ + a (Lup;Luo;)I m_264521_ + 0 o p_265671_ + 1 o p_265442_ + a (Lit/unimi/dsi/fastutil/ints/Int2ObjectMap;Ljava/lang/Class;Ljava/lang/Integer;)V m_195609_ + static + 0 o p_195610_ + 1 o p_195611_ + 2 o p_195612_ + a (Lup;ILsf;)Luo; m_178321_ + 0 o p_178322_ + 1 o p_178323_ + 2 o p_178324_ + b ()Lse$b; m_129600_ + static + b (Lup;)Lit/unimi/dsi/fastutil/ints/Int2ObjectMap; m_195620_ + 0 o p_195621_ + c ()[Lse; m_178325_ + static + valueOf (Ljava/lang/String;)Lse; valueOf + static + 0 o p_129602_ + values ()[Lse; values + static +se$a net/minecraft/network/ConnectionProtocol$PacketSet + a f_202573_ + b f_129604_ + c f_178326_ + d f_263664_ + e f_263747_ + ()V + static + ()V + a (Lit/unimi/dsi/fastutil/objects/Object2IntOpenHashMap;)V m_129612_ + static + 0 o p_129613_ + a (Ljava/lang/Class;Ljava/util/function/Function;)Lse$a; m_178330_ + 0 o p_178331_ + 1 o p_178332_ + a (Ljava/util/function/Consumer;)V m_264538_ + 0 o p_265213_ + a (ILsf;)Luo; m_178327_ + 0 o p_178328_ + 1 o p_178329_ + a (Lul;Lsf;)Lul; m_263898_ + static + 0 o p_264722_ + 1 o p_264723_ + a (Ljava/lang/Class;)I m_264516_ + 0 o p_265252_ + a ()Lun; m_264507_ + b (Ljava/lang/Class;Ljava/util/function/Function;)Lse$a; m_264543_ + 0 o p_265034_ + 1 o p_265591_ + b (Ljava/lang/Class;)Z m_263897_ + static + 0 o p_264721_ +se$b net/minecraft/network/ConnectionProtocol$ProtocolBuilder + a f_129619_ + ()V + a (Lup;Lse$a;)Lse$b; m_129625_ + 0 o p_129626_ + 1 o p_129627_ +sf net/minecraft/network/FriendlyByteBuf + a f_178337_ + b f_178333_ + c f_178334_ + d f_178335_ + e f_178336_ + f f_130049_ + g f_236798_ + h f_236799_ + i f_236800_ + j f_271126_ + ()V + static + (Lio/netty/buffer/ByteBuf;)V + 0 o p_130051_ + A ()Lcom/mojang/authlib/properties/PropertyMap; m_246981_ + B ()Lcom/mojang/authlib/properties/Property; m_236876_ + a (Lqr;)Lsf; m_130079_ + 0 o p_130080_ + a (Lhj;)Ljava/lang/Object; m_236816_ + 0 o p_236817_ + a (ILjava/util/function/IntFunction;I)Ljava/lang/Object; m_182683_ + static + 0 o p_182684_ + 1 o p_182685_ + 2 o p_182686_ + a (Lit/unimi/dsi/fastutil/ints/IntList;)V m_178345_ + 0 o p_178346_ + a (Ljava/lang/String;)Lsf; m_130070_ + 0 o p_130071_ + a ([I)Lsf; m_130089_ + 0 o p_130090_ + a (Ljava/util/Collection;Lsf$b;)V m_236828_ + 0 o p_236829_ + 1 o p_236830_ + a (Ljava/util/function/IntFunction;Lsf$a;)Ljava/util/Collection; m_236838_ + 0 o p_236839_ + 1 o p_236840_ + a (Lsf$b;Lsf$b;Ljava/lang/Object;Ljava/lang/Object;)V m_236853_ + 0 o p_236854_ + 1 o p_236855_ + 2 o p_236856_ + 3 o p_236857_ + a (Ljava/lang/Object;Ljava/lang/String;)Lio/netty/handler/codec/EncoderException; m_260777_ + static + 0 o p_261420_ + 1 o p_261421_ + a (Ljava/util/BitSet;)V m_178350_ + 0 o p_178351_ + a (Lqr;Ljava/lang/String;)Lio/netty/handler/codec/DecoderException; m_260778_ + static + 0 o p_261422_ + 1 o p_261423_ + a (Ljava/security/PublicKey;)Lsf; m_236824_ + 0 o p_236825_ + a (Lhj;Ljava/lang/Object;)V m_236818_ + 0 o p_236819_ + 1 o p_236820_ + a (Lcfz;)Lsf; m_130055_ + 0 o p_130056_ + a (Lcom/mojang/authlib/properties/PropertyMap;)V m_246636_ + 0 o p_248638_ + a ([B)Lsf; m_130087_ + 0 o p_130088_ + a (Lacp;)Lacp; m_236801_ + 0 o p_236802_ + a (Lsf$a;)Ljava/util/List; m_236845_ + 0 o p_236846_ + a (Lcom/mojang/serialization/DynamicOps;Lcom/mojang/serialization/Codec;)Ljava/lang/Object; m_266466_ + 0 o p_266903_ + 1 o p_267107_ + a (Lclt;)Lsf; m_178341_ + 0 o p_178342_ + a (J)I m_178339_ + static + 0 o p_178340_ + a (Ljava/util/Map;Lsf$b;Lsf$b;)V m_236831_ + 0 o p_236832_ + 1 o p_236833_ + 2 o p_236834_ + a (Lsw;)Lsf; m_130083_ + 0 o p_130084_ + a (Lcom/mojang/authlib/GameProfile;)V m_236803_ + 0 o p_236804_ + a (Lsf$b;Ljava/lang/Object;)V m_236850_ + 0 o p_236851_ + 1 o p_236852_ + a (Lhj;Lsf$a;)Lhe; m_263187_ + 0 o p_263401_ + 1 o p_263374_ + a (Ljava/lang/String;I)Lsf; m_130072_ + 0 o p_130073_ + 1 o p_130074_ + a (Ljava/util/function/Consumer;)V m_178364_ + 0 o p_178365_ + a (Lcom/mojang/authlib/properties/Property;)V m_236805_ + 0 o p_236806_ + a (Lsf$a;Lsf$a;)Ljava/util/Map; m_236847_ + 0 o p_236848_ + 1 o p_236849_ + a (Lhx;)Lsf; m_178343_ + 0 o p_178344_ + a (Lra;)Lqr; m_130081_ + 0 o p_130082_ + a (Ljava/util/function/IntFunction;Lsf$a;Lsf$a;)Ljava/util/Map; m_236841_ + 0 o p_236842_ + 1 o p_236843_ + 2 o p_236844_ + a (Lacq;)Lsf; m_130085_ + 0 o p_130086_ + a (Lorg/joml/Quaternionf;)V m_269101_ + 0 o p_270141_ + a (Lorg/joml/Vector3f;)V m_269582_ + 0 o p_270985_ + a ([JI)[J m_130093_ + 0 o p_130094_ + 1 o p_130095_ + a (Lcom/mojang/serialization/Codec;)Ljava/lang/Object; m_271872_ + 0 o p_273318_ + a (Ljava/lang/Class;)Ljava/util/EnumSet; m_247336_ + 0 o p_251289_ + a (Lhj;Lhe;Lsf$b;)V m_263218_ + 0 o p_263337_ + 1 o p_263384_ + 2 o p_263358_ + a (Lgu;)Lsf; m_130064_ + 0 o p_130065_ + a (Ljava/time/Instant;)V m_236826_ + 0 o p_236827_ + a (Ljava/util/UUID;)Lsf; m_130077_ + 0 o p_130078_ + a (Ljava/lang/Enum;)Lsf; m_130068_ + 0 o p_130069_ + a (I)I m_130053_ + static + 0 o p_130054_ + a (Lcom/mojang/serialization/DynamicOps;Lcom/mojang/serialization/Codec;Ljava/lang/Object;)V m_266332_ + 0 o p_266702_ + 1 o p_267245_ + 2 o p_266783_ + a ()Lit/unimi/dsi/fastutil/ints/IntList; m_178338_ + a (Ljava/util/EnumSet;Ljava/lang/Class;)V m_245616_ + 0 o p_250400_ + 1 o p_250673_ + a (Lcom/mojang/authlib/properties/PropertyMap;Lsf;)V m_236807_ + 0 o p_236808_ + 1 o p_236809_ + a (Lhd;)V m_236814_ + 0 o p_236815_ + a ([J)Lsf; m_130091_ + 0 o p_130092_ + a (Lcom/mojang/serialization/Codec;Ljava/lang/Object;)V m_272073_ + 0 o p_273285_ + 1 o p_272770_ + a (Lcom/mojang/datafixers/util/Either;Lsf$b;Lsf$b;)V m_236810_ + 0 o p_236811_ + 1 o p_236812_ + 2 o p_236813_ + a (Ljava/util/Optional;Lsf$b;)V m_236835_ + 0 o p_236836_ + 1 o p_236837_ + a (Ljava/lang/Object;Lsf$b;)V m_236821_ + 0 o p_236822_ + 1 o p_236823_ + a (Leee;)V m_130062_ + 0 o p_130063_ + a (Ljava/util/function/IntFunction;I)Ljava/util/function/IntFunction; m_182695_ + static + 0 o p_182696_ + 1 o p_182697_ + a (Ljava/util/BitSet;I)V m_246901_ + 0 o p_248698_ + 1 o p_248869_ + a (Ljava/util/Date;)Lsf; m_130075_ + 0 o p_130076_ + alloc ()Lio/netty/buffer/ByteBufAllocator; alloc + array ()[B array + arrayOffset ()I arrayOffset + asReadOnly ()Lio/netty/buffer/ByteBuf; asReadOnly + b ()[B m_130052_ + b (Ljava/lang/Class;)Ljava/lang/Enum; m_130066_ + 0 o p_130067_ + b (Ljava/lang/Object;Ljava/lang/String;)Lio/netty/handler/codec/EncoderException; m_271591_ + static + 0 o p_272383_ + 1 o p_272384_ + b (Ljava/lang/String;)Lio/netty/handler/codec/DecoderException; m_271590_ + static + 0 o p_272382_ + b ([J)[J m_130105_ + 0 o p_130106_ + b (I)[B m_130101_ + 0 o p_130102_ + b (Lacp;)V m_236858_ + 0 o p_236859_ + b (Lsf$a;)Ljava/util/Optional; m_236860_ + 0 o p_236861_ + b (Lsf$b;Ljava/lang/Object;)V m_236865_ + 0 o p_236866_ + 1 o p_236867_ + b (J)Lsf; m_130103_ + 0 o p_130104_ + b (Lsf$a;Lsf$a;)Lcom/mojang/datafixers/util/Either; m_236862_ + 0 o p_236863_ + 1 o p_236864_ + bytesBefore (B)I bytesBefore + 0 o p_130108_ + bytesBefore (IB)I bytesBefore + 0 o p_130110_ + 1 o p_130111_ + bytesBefore (IIB)I bytesBefore + 0 o p_130113_ + 1 o p_130114_ + 2 o p_130115_ + c (Lsf$a;)Ljava/lang/Object; m_236868_ + 0 o p_236869_ + c (I)[I m_130116_ + 0 o p_130117_ + c ()[I m_130100_ + capacity ()I capacity + capacity (I)Lio/netty/buffer/ByteBuf; capacity + 0 o p_130120_ + clear ()Lio/netty/buffer/ByteBuf; clear + compareTo (Ljava/lang/Object;)I compareTo + 0 o p_130125_ + compareTo (Lio/netty/buffer/ByteBuf;)I compareTo + 0 o p_130123_ + copy (II)Lio/netty/buffer/ByteBuf; copy + 0 o p_130128_ + 1 o p_130129_ + copy ()Lio/netty/buffer/ByteBuf; copy + d (I)Lsf; m_130130_ + 0 o p_130131_ + d ()[J m_178381_ + discardReadBytes ()Lio/netty/buffer/ByteBuf; discardReadBytes + discardSomeReadBytes ()Lio/netty/buffer/ByteBuf; discardSomeReadBytes + duplicate ()Lio/netty/buffer/ByteBuf; duplicate + e ()[B m_178382_ + e (I)Ljava/lang/String; m_130136_ + 0 o p_130137_ + ensureWritable (IZ)I ensureWritable + 0 o p_130141_ + 1 o p_130142_ + ensureWritable (I)Lio/netty/buffer/ByteBuf; ensureWritable + 0 o p_130139_ + equals (Ljava/lang/Object;)Z equals + 0 o p_130144_ + f (I)Ljava/util/BitSet; m_247358_ + 0 o p_249113_ + f ()Lgu; m_130135_ + forEachByte (IILio/netty/util/ByteProcessor;)I forEachByte + 0 o p_130146_ + 1 o p_130147_ + 2 o p_130148_ + forEachByte (Lio/netty/util/ByteProcessor;)I forEachByte + 0 o p_130150_ + forEachByteDesc (Lio/netty/util/ByteProcessor;)I forEachByteDesc + 0 o p_130156_ + forEachByteDesc (IILio/netty/util/ByteProcessor;)I forEachByteDesc + 0 o p_130152_ + 1 o p_130153_ + 2 o p_130154_ + g (I)I m_236870_ + static + 0 o p_236871_ + g ()Lclt; m_178383_ + getBoolean (I)Z getBoolean + 0 o p_130159_ + getByte (I)B getByte + 0 o p_130161_ + getBytes (I[B)Lio/netty/buffer/ByteBuf; getBytes + 0 o p_130191_ + 1 o p_130192_ + getBytes (ILio/netty/buffer/ByteBuf;I)Lio/netty/buffer/ByteBuf; getBytes + 0 o p_130166_ + 1 o p_130167_ + 2 o p_130168_ + getBytes (ILjava/nio/ByteBuffer;)Lio/netty/buffer/ByteBuf; getBytes + 0 o p_130179_ + 1 o p_130180_ + getBytes (I[BII)Lio/netty/buffer/ByteBuf; getBytes + 0 o p_130194_ + 1 o p_130195_ + 2 o p_130196_ + 3 o p_130197_ + getBytes (ILjava/nio/channels/GatheringByteChannel;I)I getBytes + 0 o p_130187_ + 1 o p_130188_ + 2 o p_130189_ + getBytes (ILjava/io/OutputStream;I)Lio/netty/buffer/ByteBuf; getBytes + 0 o p_130175_ + 1 o p_130176_ + 2 o p_130177_ + getBytes (ILio/netty/buffer/ByteBuf;)Lio/netty/buffer/ByteBuf; getBytes + 0 o p_130163_ + 1 o p_130164_ + getBytes (ILio/netty/buffer/ByteBuf;II)Lio/netty/buffer/ByteBuf; getBytes + 0 o p_130170_ + 1 o p_130171_ + 2 o p_130172_ + 3 o p_130173_ + getBytes (ILjava/nio/channels/FileChannel;JI)I getBytes + 0 o p_130182_ + 1 o p_130183_ + 2 o p_130184_ + 3 o p_130185_ + getChar (I)C getChar + 0 o p_130199_ + getCharSequence (IILjava/nio/charset/Charset;)Ljava/lang/CharSequence; getCharSequence + 0 o p_130201_ + 1 o p_130202_ + 2 o p_130203_ + getDouble (I)D getDouble + 0 o p_130205_ + getFloat (I)F getFloat + 0 o p_130207_ + getInt (I)I getInt + 0 o p_130209_ + getIntLE (I)I getIntLE + 0 o p_130211_ + getLong (I)J getLong + 0 o p_130213_ + getLongLE (I)J getLongLE + 0 o p_130215_ + getMedium (I)I getMedium + 0 o p_130217_ + getMediumLE (I)I getMediumLE + 0 o p_130219_ + getShort (I)S getShort + 0 o p_130221_ + getShortLE (I)S getShortLE + 0 o p_130223_ + getUnsignedByte (I)S getUnsignedByte + 0 o p_130225_ + getUnsignedInt (I)J getUnsignedInt + 0 o p_130227_ + getUnsignedIntLE (I)J getUnsignedIntLE + 0 o p_130229_ + getUnsignedMedium (I)I getUnsignedMedium + 0 o p_130231_ + getUnsignedMediumLE (I)I getUnsignedMediumLE + 0 o p_130233_ + getUnsignedShort (I)I getUnsignedShort + 0 o p_130235_ + getUnsignedShortLE (I)I getUnsignedShortLE + 0 o p_130237_ + h ()Lhx; m_130157_ + hasArray ()Z hasArray + hasMemoryAddress ()Z hasMemoryAddress + hashCode ()I hashCode + i ()Lhd; m_236872_ + indexOf (IIB)I indexOf + 0 o p_130244_ + 1 o p_130245_ + 2 o p_130246_ + internalNioBuffer (II)Ljava/nio/ByteBuffer; internalNioBuffer + 0 o p_130248_ + 1 o p_130249_ + isDirect ()Z isDirect + isReadOnly ()Z isReadOnly + isReadable (I)Z isReadable + 0 o p_130254_ + isReadable ()Z isReadable + isWritable (I)Z isWritable + 0 o p_130257_ + isWritable ()Z isWritable + j ()Lorg/joml/Vector3f; m_269394_ + k ()Lorg/joml/Quaternionf; m_269131_ + l ()Lsw; m_130238_ + m ()I m_130242_ + markReaderIndex ()Lio/netty/buffer/ByteBuf; markReaderIndex + markWriterIndex ()Lio/netty/buffer/ByteBuf; markWriterIndex + maxCapacity ()I maxCapacity + maxWritableBytes ()I maxWritableBytes + memoryAddress ()J memoryAddress + n ()J m_130258_ + nioBuffer ()Ljava/nio/ByteBuffer; nioBuffer + nioBuffer (II)Ljava/nio/ByteBuffer; nioBuffer + 0 o p_130270_ + 1 o p_130271_ + nioBufferCount ()I nioBufferCount + nioBuffers (II)[Ljava/nio/ByteBuffer; nioBuffers + 0 o p_130275_ + 1 o p_130276_ + nioBuffers ()[Ljava/nio/ByteBuffer; nioBuffers + o ()Ljava/util/UUID; m_130259_ + order (Ljava/nio/ByteOrder;)Lio/netty/buffer/ByteBuf; order + 0 o p_130280_ + order ()Ljava/nio/ByteOrder; order + p ()Lqr; m_130260_ + q ()Lqr; m_130261_ + r ()Lcfz; m_130267_ + readBoolean ()Z readBoolean + readByte ()B readByte + readBytes (I)Lio/netty/buffer/ByteBuf; readBytes + 0 o p_130287_ + readBytes (Ljava/nio/ByteBuffer;)Lio/netty/buffer/ByteBuf; readBytes + 0 o p_130301_ + readBytes (Lio/netty/buffer/ByteBuf;I)Lio/netty/buffer/ByteBuf; readBytes + 0 o p_130291_ + 1 o p_130292_ + readBytes (Ljava/nio/channels/GatheringByteChannel;I)I readBytes + 0 o p_130307_ + 1 o p_130308_ + readBytes (Lio/netty/buffer/ByteBuf;)Lio/netty/buffer/ByteBuf; readBytes + 0 o p_130289_ + readBytes (Ljava/nio/channels/FileChannel;JI)I readBytes + 0 o p_130303_ + 1 o p_130304_ + 2 o p_130305_ + readBytes (Ljava/io/OutputStream;I)Lio/netty/buffer/ByteBuf; readBytes + 0 o p_130298_ + 1 o p_130299_ + readBytes ([B)Lio/netty/buffer/ByteBuf; readBytes + 0 o p_130310_ + readBytes (Lio/netty/buffer/ByteBuf;II)Lio/netty/buffer/ByteBuf; readBytes + 0 o p_130294_ + 1 o p_130295_ + 2 o p_130296_ + readBytes ([BII)Lio/netty/buffer/ByteBuf; readBytes + 0 o p_130312_ + 1 o p_130313_ + 2 o p_130314_ + readChar ()C readChar + readCharSequence (ILjava/nio/charset/Charset;)Ljava/lang/CharSequence; readCharSequence + 0 o p_130317_ + 1 o p_130318_ + readDouble ()D readDouble + readFloat ()F readFloat + readInt ()I readInt + readIntLE ()I readIntLE + readLong ()J readLong + readLongLE ()J readLongLE + readMedium ()I readMedium + readMediumLE ()I readMediumLE + readRetainedSlice (I)Lio/netty/buffer/ByteBuf; readRetainedSlice + 0 o p_130328_ + readShort ()S readShort + readShortLE ()S readShortLE + readSlice (I)Lio/netty/buffer/ByteBuf; readSlice + 0 o p_130332_ + readUnsignedByte ()S readUnsignedByte + readUnsignedInt ()J readUnsignedInt + readUnsignedIntLE ()J readUnsignedIntLE + readUnsignedMedium ()I readUnsignedMedium + readUnsignedMediumLE ()I readUnsignedMediumLE + readUnsignedShort ()I readUnsignedShort + readUnsignedShortLE ()I readUnsignedShortLE + readableBytes ()I readableBytes + readerIndex ()I readerIndex + readerIndex (I)Lio/netty/buffer/ByteBuf; readerIndex + 0 o p_130343_ + refCnt ()I refCnt + release (I)Z release + 0 o p_130347_ + release ()Z release + resetReaderIndex ()Lio/netty/buffer/ByteBuf; resetReaderIndex + resetWriterIndex ()Lio/netty/buffer/ByteBuf; resetWriterIndex + retain (I)Lio/netty/buffer/ByteBuf; retain + 0 o p_130353_ + retain (I)Lio/netty/util/ReferenceCounted; retain + 0 o p_130355_ + retain ()Lio/netty/buffer/ByteBuf; retain + retain ()Lio/netty/util/ReferenceCounted; retain + retainedDuplicate ()Lio/netty/buffer/ByteBuf; retainedDuplicate + retainedSlice ()Lio/netty/buffer/ByteBuf; retainedSlice + retainedSlice (II)Lio/netty/buffer/ByteBuf; retainedSlice + 0 o p_130359_ + 1 o p_130360_ + s ()Ljava/lang/String; m_130277_ + setBoolean (IZ)Lio/netty/buffer/ByteBuf; setBoolean + 0 o p_130362_ + 1 o p_130363_ + setByte (II)Lio/netty/buffer/ByteBuf; setByte + 0 o p_130365_ + 1 o p_130366_ + setBytes (ILjava/io/InputStream;I)I setBytes + 0 o p_130380_ + 1 o p_130381_ + 2 o p_130382_ + setBytes (ILjava/nio/ByteBuffer;)Lio/netty/buffer/ByteBuf; setBytes + 0 o p_130384_ + 1 o p_130385_ + setBytes (ILio/netty/buffer/ByteBuf;I)Lio/netty/buffer/ByteBuf; setBytes + 0 o p_130371_ + 1 o p_130372_ + 2 o p_130373_ + setBytes (I[BII)Lio/netty/buffer/ByteBuf; setBytes + 0 o p_130399_ + 1 o p_130400_ + 2 o p_130401_ + 3 o p_130402_ + setBytes (ILjava/nio/channels/ScatteringByteChannel;I)I setBytes + 0 o p_130392_ + 1 o p_130393_ + 2 o p_130394_ + setBytes (ILio/netty/buffer/ByteBuf;II)Lio/netty/buffer/ByteBuf; setBytes + 0 o p_130375_ + 1 o p_130376_ + 2 o p_130377_ + 3 o p_130378_ + setBytes (ILio/netty/buffer/ByteBuf;)Lio/netty/buffer/ByteBuf; setBytes + 0 o p_130368_ + 1 o p_130369_ + setBytes (I[B)Lio/netty/buffer/ByteBuf; setBytes + 0 o p_130396_ + 1 o p_130397_ + setBytes (ILjava/nio/channels/FileChannel;JI)I setBytes + 0 o p_130387_ + 1 o p_130388_ + 2 o p_130389_ + 3 o p_130390_ + setChar (II)Lio/netty/buffer/ByteBuf; setChar + 0 o p_130404_ + 1 o p_130405_ + setCharSequence (ILjava/lang/CharSequence;Ljava/nio/charset/Charset;)I setCharSequence + 0 o p_130407_ + 1 o p_130408_ + 2 o p_130409_ + setDouble (ID)Lio/netty/buffer/ByteBuf; setDouble + 0 o p_130411_ + 1 o p_130412_ + setFloat (IF)Lio/netty/buffer/ByteBuf; setFloat + 0 o p_130414_ + 1 o p_130415_ + setIndex (II)Lio/netty/buffer/ByteBuf; setIndex + 0 o p_130417_ + 1 o p_130418_ + setInt (II)Lio/netty/buffer/ByteBuf; setInt + 0 o p_130420_ + 1 o p_130421_ + setIntLE (II)Lio/netty/buffer/ByteBuf; setIntLE + 0 o p_130423_ + 1 o p_130424_ + setLong (IJ)Lio/netty/buffer/ByteBuf; setLong + 0 o p_130426_ + 1 o p_130427_ + setLongLE (IJ)Lio/netty/buffer/ByteBuf; setLongLE + 0 o p_130429_ + 1 o p_130430_ + setMedium (II)Lio/netty/buffer/ByteBuf; setMedium + 0 o p_130432_ + 1 o p_130433_ + setMediumLE (II)Lio/netty/buffer/ByteBuf; setMediumLE + 0 o p_130435_ + 1 o p_130436_ + setShort (II)Lio/netty/buffer/ByteBuf; setShort + 0 o p_130438_ + 1 o p_130439_ + setShortLE (II)Lio/netty/buffer/ByteBuf; setShortLE + 0 o p_130441_ + 1 o p_130442_ + setZero (II)Lio/netty/buffer/ByteBuf; setZero + 0 o p_130444_ + 1 o p_130445_ + skipBytes (I)Lio/netty/buffer/ByteBuf; skipBytes + 0 o p_130447_ + slice (II)Lio/netty/buffer/ByteBuf; slice + 0 o p_130450_ + 1 o p_130451_ + slice ()Lio/netty/buffer/ByteBuf; slice + t ()Lacq; m_130281_ + toString (IILjava/nio/charset/Charset;)Ljava/lang/String; toString + 0 o p_130454_ + 1 o p_130455_ + 2 o p_130456_ + toString (Ljava/nio/charset/Charset;)Ljava/lang/String; toString + 0 o p_130458_ + toString ()Ljava/lang/String; toString + touch (Ljava/lang/Object;)Lio/netty/util/ReferenceCounted; touch + 0 o p_130464_ + touch ()Lio/netty/util/ReferenceCounted; touch + touch ()Lio/netty/buffer/ByteBuf; touch + touch (Ljava/lang/Object;)Lio/netty/buffer/ByteBuf; touch + 0 o p_130462_ + u ()Ljava/util/Date; m_130282_ + unwrap ()Lio/netty/buffer/ByteBuf; unwrap + v ()Ljava/time/Instant; m_236873_ + w ()Ljava/security/PublicKey; m_236874_ + writableBytes ()I writableBytes + writeBoolean (Z)Lio/netty/buffer/ByteBuf; writeBoolean + 0 o p_130468_ + writeByte (I)Lio/netty/buffer/ByteBuf; writeByte + 0 o p_130470_ + writeBytes (Lio/netty/buffer/ByteBuf;)Lio/netty/buffer/ByteBuf; writeBytes + 0 o p_130472_ + writeBytes (Ljava/io/InputStream;I)I writeBytes + 0 o p_130481_ + 1 o p_130482_ + writeBytes ([BII)Lio/netty/buffer/ByteBuf; writeBytes + 0 o p_130495_ + 1 o p_130496_ + 2 o p_130497_ + writeBytes (Lio/netty/buffer/ByteBuf;II)Lio/netty/buffer/ByteBuf; writeBytes + 0 o p_130477_ + 1 o p_130478_ + 2 o p_130479_ + writeBytes (Ljava/nio/channels/FileChannel;JI)I writeBytes + 0 o p_130486_ + 1 o p_130487_ + 2 o p_130488_ + writeBytes (Lio/netty/buffer/ByteBuf;I)Lio/netty/buffer/ByteBuf; writeBytes + 0 o p_130474_ + 1 o p_130475_ + writeBytes (Ljava/nio/ByteBuffer;)Lio/netty/buffer/ByteBuf; writeBytes + 0 o p_130484_ + writeBytes (Ljava/nio/channels/ScatteringByteChannel;I)I writeBytes + 0 o p_130490_ + 1 o p_130491_ + writeBytes ([B)Lio/netty/buffer/ByteBuf; writeBytes + 0 o p_130493_ + writeChar (I)Lio/netty/buffer/ByteBuf; writeChar + 0 o p_130499_ + writeCharSequence (Ljava/lang/CharSequence;Ljava/nio/charset/Charset;)I writeCharSequence + 0 o p_130501_ + 1 o p_130502_ + writeDouble (D)Lio/netty/buffer/ByteBuf; writeDouble + 0 o p_130504_ + writeFloat (F)Lio/netty/buffer/ByteBuf; writeFloat + 0 o p_130506_ + writeInt (I)Lio/netty/buffer/ByteBuf; writeInt + 0 o p_130508_ + writeIntLE (I)Lio/netty/buffer/ByteBuf; writeIntLE + 0 o p_130510_ + writeLong (J)Lio/netty/buffer/ByteBuf; writeLong + 0 o p_130512_ + writeLongLE (J)Lio/netty/buffer/ByteBuf; writeLongLE + 0 o p_130514_ + writeMedium (I)Lio/netty/buffer/ByteBuf; writeMedium + 0 o p_130516_ + writeMediumLE (I)Lio/netty/buffer/ByteBuf; writeMediumLE + 0 o p_130518_ + writeShort (I)Lio/netty/buffer/ByteBuf; writeShort + 0 o p_130520_ + writeShortLE (I)Lio/netty/buffer/ByteBuf; writeShortLE + 0 o p_130522_ + writeZero (I)Lio/netty/buffer/ByteBuf; writeZero + 0 o p_130524_ + writerIndex ()I writerIndex + writerIndex (I)Lio/netty/buffer/ByteBuf; writerIndex + 0 o p_130527_ + x ()Leee; m_130283_ + y ()Ljava/util/BitSet; m_178384_ + z ()Lcom/mojang/authlib/GameProfile; m_236875_ +sf$1 net/minecraft/network/FriendlyByteBuf$1 + a f_263134_ + ()V + static +sf$a net/minecraft/network/FriendlyByteBuf$Reader + a (Lsf;)Ljava/util/Optional; m_236877_ + 0 o p_236878_ + asOptional ()Lsf$a; m_236879_ +sf$b net/minecraft/network/FriendlyByteBuf$Writer + a (Lsf;Ljava/util/Optional;)V m_236880_ + 0 o p_236881_ + 1 o p_236882_ + asOptional ()Lsf$b; m_236883_ +sg net/minecraft/network/PacketBundlePacker + a f_263847_ + b f_263732_ + c f_263798_ + (Lup;)V + 0 o p_265129_ + a (Lio/netty/channel/ChannelHandlerContext;Luo;Ljava/util/List;)V decode + 0 o p_265208_ + 1 o p_265182_ + 2 o p_265368_ + decode (Lio/netty/channel/ChannelHandlerContext;Ljava/lang/Object;Ljava/util/List;)V decode + 0 o p_265130_ + 1 o p_265258_ + 2 o p_265649_ +sh net/minecraft/network/PacketBundleUnpacker + a f_263776_ + (Lup;)V + 0 o p_265529_ + a (Lio/netty/channel/ChannelHandlerContext;Luo;Ljava/util/List;)V encode + 0 o p_265691_ + 1 o p_265038_ + 2 o p_265735_ + encode (Lio/netty/channel/ChannelHandlerContext;Ljava/lang/Object;Ljava/util/List;)V encode + 0 o p_265311_ + 1 o p_265123_ + 2 o p_265472_ +si net/minecraft/network/PacketDecoder + a f_130528_ + b f_130530_ + ()V + static + (Lup;)V + 0 o p_130533_ + decode (Lio/netty/channel/ChannelHandlerContext;Lio/netty/buffer/ByteBuf;Ljava/util/List;)V decode + 0 o p_130535_ + 1 o p_130536_ + 2 o p_130537_ +sj net/minecraft/network/PacketEncoder + a f_130538_ + b f_130540_ + ()V + static + (Lup;)V + 0 o p_130543_ + a (Lio/netty/channel/ChannelHandlerContext;Luo;Lio/netty/buffer/ByteBuf;)V encode + 0 o p_130545_ + 1 o p_130546_ + 2 o p_130547_ + encode (Lio/netty/channel/ChannelHandlerContext;Ljava/lang/Object;Lio/netty/buffer/ByteBuf;)V encode + 0 o p_130549_ + 1 o p_130550_ + 2 o p_130551_ +sk net/minecraft/network/PacketListener + a ()Z m_6198_ + a (Lsw;)V m_7026_ + 0 o p_130552_ + b ()Z m_201767_ +sl net/minecraft/network/PacketSendListener + a ()V m_243096_ + a (Ljava/util/function/Supplier;)Lsl; m_243073_ + static + 0 o p_243289_ + a (Ljava/lang/Runnable;)Lsl; m_243092_ + static + 0 o p_243267_ + b ()Luo; m_243103_ +sl$1 net/minecraft/network/PacketSendListener$1 + a f_243012_ + (Ljava/lang/Runnable;)V + 0 o p_243276_ + a ()V m_243096_ + b ()Luo; m_243103_ +sl$2 net/minecraft/network/PacketSendListener$2 + a f_243001_ + (Ljava/util/function/Supplier;)V + 0 o p_243201_ + b ()Luo; m_243103_ +sm net/minecraft/network/RateKickingConnection + i f_130553_ + j f_130554_ + k f_130555_ + ()V + static + (I)V + 0 o p_130558_ + b ()V m_7073_ + p ()V m_130559_ +sn net/minecraft/network/SkipPacketException + (Ljava/lang/Throwable;)V + 0 o p_130563_ +so net/minecraft/network/TickablePacketListener + c ()V m_9933_ +sp net/minecraft/network/Varint21FrameDecoder + ()V + decode (Lio/netty/channel/ChannelHandlerContext;Lio/netty/buffer/ByteBuf;Ljava/util/List;)V decode + 0 o p_130566_ + 1 o p_130567_ + 2 o p_130568_ +sq net/minecraft/network/Varint21LengthFieldPrepender + a f_178385_ + ()V + a (Lio/netty/channel/ChannelHandlerContext;Lio/netty/buffer/ByteBuf;Lio/netty/buffer/ByteBuf;)V encode + 0 o p_130571_ + 1 o p_130572_ + 2 o p_130573_ + encode (Lio/netty/channel/ChannelHandlerContext;Ljava/lang/Object;Lio/netty/buffer/ByteBuf;)V encode + 0 o p_130575_ + 1 o p_130576_ + 2 o p_130577_ +sr net/minecraft/network/chat/ChatDecorator + a f_236947_ + ()V + static + a (Laig;Lsw;)Ljava/util/concurrent/CompletableFuture; m_236949_ + static + 0 o p_236950_ + 1 o p_236951_ + decorate (Laig;Lsw;)Ljava/util/concurrent/CompletableFuture; m_236961_ + 0 o p_236962_ + 1 o p_236963_ +ss net/minecraft/network/chat/ChatType + a f_237005_ + b f_238668_ + c f_130598_ + d f_237006_ + e f_240674_ + f f_240668_ + g f_241694_ + h f_241626_ + i f_237009_ + j f_237011_ + k f_237013_ + ()V + static + (Lst;Lst;)V + 0 o f_237011_ + 1 o f_237013_ + a (Lacp;Lbfj;)Lss$a; m_240980_ + static + 0 o p_241279_ + 1 o p_241483_ + a (Lsw;)Lss$a; m_240982_ + 0 o p_241506_ + a (Ljava/lang/String;)Lacp; m_237023_ + static + 0 o p_237024_ + a (Lacp;Lds;)Lss$a; m_241073_ + static + 0 o p_241345_ + 1 o p_241466_ + a ()Lst; f_237011_ + a (Lnm;)V m_237021_ + static + 0 o p_256390_ + a (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; m_240391_ + static + 0 o p_240514_ + a (Lacp;Lhs;Lsw;)Lss$a; m_240968_ + static + 0 o p_241284_ + 1 o p_241373_ + 2 o p_241455_ + b ()Lst; f_237013_ + equals (Ljava/lang/Object;)Z equals + 0 o p_237028_ + hashCode ()I hashCode + toString ()Ljava/lang/String; toString +ss$a net/minecraft/network/chat/ChatType$Bound + a f_240859_ + b f_240886_ + c f_240896_ + (Lss;Lsw;Lsw;)V + 0 o f_240859_ + 1 o f_240886_ + 2 o f_240896_ + (Lss;Lsw;)V + 0 o p_241377_ + 1 o p_241447_ + a (Lsw;)Lsw; m_240977_ + 0 o p_241411_ + a (Lhs;)Lss$b; m_240987_ + 0 o p_241362_ + a ()Lss; f_240859_ + b (Lsw;)Lsw; m_240941_ + 0 o p_241354_ + b ()Lsw; f_240886_ + c (Lsw;)Lss$a; m_241018_ + 0 o p_241530_ + c ()Lsw; f_240896_ + equals (Ljava/lang/Object;)Z equals + 0 o p_241456_ + hashCode ()I hashCode + toString ()Ljava/lang/String; toString +ss$b net/minecraft/network/chat/ChatType$BoundNetwork + a f_240870_ + b f_240862_ + c f_240865_ + (Lsf;)V + 0 o p_241341_ + (ILsw;Lsw;)V + 0 o f_240870_ + 1 o f_240862_ + 2 o f_240865_ + a (Lss;)Lss$a; m_242617_ + 0 o p_242929_ + a (Lhs;)Ljava/util/Optional; m_242652_ + 0 o p_242936_ + a ()I f_240870_ + a (Lsf;)V m_240969_ + 0 o p_241522_ + b ()Lsw; f_240862_ + c ()Lsw; f_240865_ + equals (Ljava/lang/Object;)Z equals + 0 o p_241423_ + hashCode ()I hashCode + toString ()Ljava/lang/String; toString +st net/minecraft/network/chat/ChatTypeDecoration + a f_238580_ + b f_238741_ + c f_238656_ + d f_238694_ + ()V + static + (Ljava/lang/String;Ljava/util/List;Lts;)V + 0 o f_238741_ + 1 o f_238656_ + 2 o f_238694_ + a (Ljava/lang/String;)Lst; m_239222_ + static + 0 o p_239223_ + a ()Ljava/lang/String; f_238741_ + a (Lsw;Lss$a;)Lsw; m_240955_ + 0 o p_241301_ + 1 o p_241391_ + a (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; m_239988_ + static + 0 o p_239989_ + b (Lsw;Lss$a;)[Lsw; m_241038_ + 0 o p_241365_ + 1 o p_241559_ + b ()Ljava/util/List; f_238656_ + b (Ljava/lang/String;)Lst; m_239424_ + static + 0 o p_239425_ + c ()Lts; f_238694_ + c (Ljava/lang/String;)Lst; m_240709_ + static + 0 o p_240772_ + d (Ljava/lang/String;)Lst; m_239094_ + static + 0 o p_239095_ + equals (Ljava/lang/Object;)Z equals + 0 o p_239430_ + hashCode ()I hashCode + toString ()Ljava/lang/String; toString +st$a net/minecraft/network/chat/ChatTypeDecoration$Parameter + a SENDER + b TARGET + c CONTENT + d f_238794_ + e f_238673_ + f f_238789_ + g $VALUES + ()V + static + (Ljava/lang/String;ILjava/lang/String;Lst$a$a;)V + 0 o p_239586_ + 1 o p_239587_ + 2 o p_239588_ + 3 o p_239589_ + a (Lsw;Lss$a;)Lsw; m_240974_ + 0 o p_241369_ + 1 o p_241509_ + a ()[Lst$a; m_238947_ + static + b (Lsw;Lss$a;)Lsw; m_239973_ + static + 0 o p_239974_ + 1 o p_241427_ + c (Lsw;Lss$a;)Lsw; m_240927_ + static + 0 o p_241236_ + 1 o p_241237_ + c ()Ljava/lang/String; m_7912_ + d (Lsw;Lss$a;)Lsw; m_240928_ + static + 0 o p_241238_ + 1 o p_241239_ + valueOf (Ljava/lang/String;)Lst$a; valueOf + static + 0 o p_239464_ + values ()[Lst$a; values + static +st$a$a net/minecraft/network/chat/ChatTypeDecoration$Parameter$Selector + select (Lsw;Lss$a;)Lsw; m_239619_ + 0 o p_239620_ + 1 o p_241499_ +su net/minecraft/network/chat/ClickEvent + a f_130617_ + b f_130618_ + (Lsu$a;Ljava/lang/String;)V + 0 o p_130620_ + 1 o p_130621_ + a ()Lsu$a; m_130622_ + b ()Ljava/lang/String; m_130623_ + equals (Ljava/lang/Object;)Z equals + 0 o p_130625_ + hashCode ()I hashCode + toString ()Ljava/lang/String; toString +su$a net/minecraft/network/chat/ClickEvent$Action + a OPEN_URL + b OPEN_FILE + c RUN_COMMAND + d SUGGEST_COMMAND + e CHANGE_PAGE + f COPY_TO_CLIPBOARD + g f_130634_ + h f_130635_ + i f_130636_ + j $VALUES + ()V + static + (Ljava/lang/String;ILjava/lang/String;Z)V + 0 o p_130640_ + 1 o p_130641_ + 2 o p_130642_ + 3 o p_130643_ + a ()Z m_130644_ + a (Lsu$a;)Lsu$a; m_130647_ + static + 0 o p_130648_ + a (Ljava/lang/String;)Lsu$a; m_130645_ + static + 0 o p_130646_ + b ()Ljava/lang/String; m_130649_ + c ()[Lsu$a; m_178387_ + static + valueOf (Ljava/lang/String;)Lsu$a; valueOf + static + 0 o p_130651_ + values ()[Lsu$a; values + static +sv net/minecraft/network/chat/CommonComponents + a f_237098_ + b f_130653_ + c f_130654_ + d f_130655_ + e f_130656_ + f f_130657_ + g f_130658_ + h f_286989_ + i f_130659_ + j f_263736_ + k f_130660_ + l f_275759_ + m f_238584_ + n f_289829_ + o f_289837_ + p f_130661_ + q f_178388_ + r f_178389_ + s f_238772_ + t f_263701_ + ()V + static + ()V + a (Z)Lsw; m_130666_ + static + 0 o p_130667_ + a (Lsw;Z)Ltj; m_130663_ + static + 0 o p_130664_ + 1 o p_130665_ + a (J)Ltj; m_239422_ + static + 0 o p_239423_ + a ([Lsw;)Ltj; m_267603_ + static + 0 o p_267948_ + a (Ljava/util/Collection;)Lsw; m_178391_ + static + 0 o p_178392_ + a (Lsw;Lsw;)Ltj; m_178393_ + static + 0 o p_178394_ + 1 o p_178395_ + a ()Ltj; m_264333_ + static + b (J)Ltj; m_240041_ + static + 0 o p_240042_ + b ([Lsw;)Lsw; m_178396_ + static + 0 o p_178397_ + c (J)Ltj; m_239877_ + static + 0 o p_239878_ +sw net/minecraft/network/chat/Component + a (Lsw;)Z m_240452_ + 0 o p_240571_ + a (Ljava/util/List;Lts;Ljava/lang/String;)Ljava/util/Optional; m_178401_ + static + 0 o p_178402_ + 1 o p_178403_ + 2 o p_178404_ + a (ILjava/lang/StringBuilder;Ljava/lang/String;)Ljava/util/Optional; m_130670_ + static + 0 o p_130671_ + 1 o p_130672_ + 2 o p_130673_ + a (I)Ljava/lang/String; m_130668_ + 0 o p_130669_ + a (Lts;)Ljava/util/List; m_178405_ + 0 o p_178406_ + a (Lta$b;Lts;)Ljava/util/Optional; m_7451_ + 0 o p_130679_ + 1 o p_130680_ + a ()Lts; m_7383_ + a (Ljava/lang/String;[Ljava/lang/Object;)Ltj; m_237110_ + static + 0 o p_237111_ + 1 o p_237112_ + a (Ljava/lang/String;Ljava/lang/String;[Ljava/lang/Object;)Ltj; m_264642_ + static + 0 o p_265449_ + 1 o p_265281_ + 2 o p_265785_ + a (Ljava/lang/String;)Lsw; m_130674_ + static + 0 o p_130675_ + a (Ljava/lang/String;Ljava/lang/String;)Ltj; m_264568_ + static + 0 o p_265747_ + 1 o p_265287_ + a (Ljava/lang/String;Ljava/util/Optional;)Ltj; m_237102_ + static + 0 o p_237103_ + 1 o p_237104_ + a (Lta$a;)Ljava/util/Optional; m_5651_ + 0 o p_130677_ + a (Ljava/lang/String;ZLjava/util/Optional;Ltx;)Ltj; m_237105_ + static + 0 o p_237106_ + 1 o p_237107_ + 2 o p_237108_ + 3 o p_237109_ + b ()Lsx; m_214077_ + b (Ljava/lang/String;)Ltj; m_237113_ + static + 0 o p_237114_ + b (Ljava/lang/String;Ljava/lang/String;)Ltj; m_237099_ + static + 0 o p_237100_ + 1 o p_237101_ + c (Ljava/lang/String;)Ltj; m_237115_ + static + 0 o p_237116_ + c ()Ljava/util/List; m_7360_ + d (Ljava/lang/String;)Ltj; m_237117_ + static + 0 o p_237118_ + d ()Ltj; m_6879_ + e ()Ltj; m_6881_ + f ()Laom; m_7532_ + g ()Ljava/util/List; m_240407_ + getString ()Ljava/lang/String; getString + h ()Ltj; m_237119_ + static +sw$a net/minecraft/network/chat/Component$Serializer + a f_130685_ + b f_130686_ + c f_130687_ + ()V + static + ()V + a (Ljava/lang/reflect/Type;Lcom/google/gson/JsonDeserializationContext;Lcom/google/gson/JsonObject;)Ljava/util/Optional; m_178415_ + 0 o p_178416_ + 1 o p_178417_ + 2 o p_178418_ + a (Lsw;)Ljava/lang/String; m_130703_ + static + 0 o p_130704_ + a (Lcom/mojang/brigadier/StringReader;)Ltj; m_130699_ + static + 0 o p_130700_ + a (Lcom/google/gson/JsonObject;Lcom/google/gson/JsonSerializationContext;Lsw;)V m_178407_ + 0 o p_178408_ + 1 o p_178409_ + 2 o p_178410_ + a (Lsw;Ljava/lang/reflect/Type;Lcom/google/gson/JsonSerializationContext;)Lcom/google/gson/JsonElement; serialize + 0 o p_130706_ + 1 o p_130707_ + 2 o p_130708_ + a (Lcom/google/gson/JsonElement;Ljava/lang/reflect/Type;Lcom/google/gson/JsonDeserializationContext;)Ltj; deserialize + 0 o p_130694_ + 1 o p_130695_ + 2 o p_130696_ + a (Ljava/lang/String;)Ltj; m_130701_ + static + 0 o p_130702_ + a (Lcom/google/gson/JsonElement;)Ltj; m_130691_ + static + 0 o p_130692_ + a (Lts;Lcom/google/gson/JsonObject;Lcom/google/gson/JsonSerializationContext;)V m_130709_ + 0 o p_130710_ + 1 o p_130711_ + 2 o p_130712_ + a (Ljava/lang/Object;)Ljava/lang/Object; m_237120_ + static + 0 o p_237121_ + a ()Ljava/lang/reflect/Field; m_130690_ + static + a (Lcom/google/gson/JsonSerializationContext;Lcom/google/gson/JsonObject;Ljava/util/Optional;)V m_178411_ + 0 o p_178412_ + 1 o p_178413_ + 2 o p_178414_ + a (Lcom/google/gson/stream/JsonReader;)I m_130697_ + static + 0 o p_130698_ + b (Ljava/lang/String;)Ltj; m_130714_ + static + 0 o p_130715_ + b ()Ljava/lang/reflect/Field; m_130713_ + static + b (Lsw;)Ljava/lang/String; m_237122_ + static + 0 o p_237123_ + c (Lsw;)Lcom/google/gson/JsonElement; m_130716_ + static + 0 o p_130717_ + c ()Lcom/google/gson/Gson; m_130718_ + static + deserialize (Lcom/google/gson/JsonElement;Ljava/lang/reflect/Type;Lcom/google/gson/JsonDeserializationContext;)Ljava/lang/Object; deserialize + 0 o p_130720_ + 1 o p_130721_ + 2 o p_130722_ + serialize (Ljava/lang/Object;Ljava/lang/reflect/Type;Lcom/google/gson/JsonSerializationContext;)Lcom/google/gson/JsonElement; serialize + 0 o p_130724_ + 1 o p_130725_ + 2 o p_130726_ +sx net/minecraft/network/chat/ComponentContents + a f_237124_ + ()V + static + a (Lta$b;Lts;)Ljava/util/Optional; m_213724_ + 0 o p_237130_ + 1 o p_237131_ + a (Lds;Lbfj;I)Ltj; m_213698_ + 0 o p_237126_ + 1 o p_237127_ + 2 o p_237128_ + a (Lta$a;)Ljava/util/Optional; m_213874_ + 0 o p_237129_ +sx$1 net/minecraft/network/chat/ComponentContents$1 + ()V + toString ()Ljava/lang/String; toString +sy net/minecraft/network/chat/ComponentUtils + a f_178419_ + b f_178420_ + c f_178421_ + ()V + static + ()V + a (Lsw;)Ltj; m_130748_ + static + 0 o p_130749_ + a (Ljava/util/Collection;Ljava/util/function/Function;)Lsw; m_130745_ + static + 0 o p_130746_ + 1 o p_130747_ + a (Ljava/util/Collection;Lsw;)Lsw; m_178433_ + static + 0 o p_178434_ + 1 o p_178435_ + a (Lds;Lsw;Lbfj;I)Ltj; m_130731_ + static + 0 o p_130732_ + 1 o p_130733_ + 2 o p_130734_ + 3 o p_130735_ + a (Lds;Lts;Lbfj;I)Lts; m_130736_ + static + 0 o p_130737_ + 1 o p_130738_ + 2 o p_130739_ + 3 o p_130740_ + a (Lcom/mojang/authlib/GameProfile;)Lsw; m_130727_ + static + 0 o p_130728_ + a (Ljava/lang/String;)Ltj; m_258024_ + static + 0 o p_260039_ + a (Ljava/util/Collection;Ljava/util/Optional;Ljava/util/function/Function;)Ltj; m_178429_ + static + 0 o p_178430_ + 1 o p_178431_ + 2 o p_178432_ + a (Lds;Ljava/util/Optional;Lbfj;I)Ljava/util/Optional; m_178424_ + static + 0 o p_178425_ + 1 o p_178426_ + 2 o p_178427_ + 3 o p_178428_ + a (Ltj;Lts;)Ltj; m_130750_ + static + 0 o p_130751_ + 1 o p_130752_ + a (Ljava/lang/String;Lts;)Lts; m_257121_ + static + 0 o p_258206_ + 1 o p_258207_ + a (Ljava/util/Collection;)Lsw; m_130743_ + static + 0 o p_130744_ + a (Ljava/util/Collection;Lsw;Ljava/util/function/Function;)Ltj; m_178436_ + static + 0 o p_178437_ + 1 o p_178438_ + 2 o p_178439_ + a (Lcom/mojang/brigadier/Message;)Lsw; m_130729_ + static + 0 o p_130730_ + b (Lsw;)Z m_237134_ + static + 0 o p_237135_ + b (Ljava/util/Collection;Ljava/util/function/Function;)Lsw; m_178440_ + static + 0 o p_178441_ + 1 o p_178442_ + b (Ljava/lang/String;)Lsw; m_130741_ + static + 0 o p_130742_ +sz net/minecraft/network/chat/FilterMask + a f_252533_ + b f_243007_ + c f_242999_ + d f_244521_ + e f_252488_ + f f_252493_ + g f_252450_ + h f_243009_ + i f_242988_ + j f_242996_ + ()V + static + (I)V + 0 o p_243210_ + (Ljava/util/BitSet;Lsz$a;)V + 0 o p_243243_ + 1 o p_243249_ + (Ljava/util/BitSet;)V + 0 o p_253780_ + a (Lsf;Lsz;)V m_243105_ + static + 0 o p_243308_ + 1 o p_243231_ + a (I)V m_243123_ + 0 o p_243202_ + a (Lsf;)Lsz; m_243104_ + static + 0 o p_243205_ + a (Ljava/lang/String;)Ljava/lang/String; m_243114_ + 0 o p_243317_ + a ()Z m_243095_ + b (Ljava/lang/String;)Lsw; m_246134_ + 0 o p_251709_ + b ()Z m_243067_ + c ()Lsz$a; m_252945_ + d ()Ljava/util/BitSet; m_252818_ + equals (Ljava/lang/Object;)Z equals + 0 o p_254275_ + hashCode ()I hashCode +sz$1 net/minecraft/network/chat/FilterMask$1 + a f_243008_ + ()V + static +sz$a net/minecraft/network/chat/FilterMask$Type + a PASS_THROUGH + b FULLY_FILTERED + c PARTIALLY_FILTERED + d f_252490_ + e f_252467_ + f $VALUES + ()V + static + (Ljava/lang/String;ILjava/lang/String;Ljava/util/function/Supplier;)V + 0 o p_253642_ + 1 o p_254258_ + 2 o p_253679_ + 3 o p_253988_ + a ()Lcom/mojang/serialization/Codec; m_253171_ + b ()Lcom/mojang/serialization/Codec; m_253044_ + static + c ()Ljava/lang/String; m_7912_ + d ()Lcom/mojang/serialization/Codec; m_252956_ + static + e ()Lcom/mojang/serialization/Codec; m_252790_ + static + f ()[Lsz$a; m_243133_ + static + valueOf (Ljava/lang/String;)Lsz$a; valueOf + static + 0 o p_243219_ + values ()[Lsz$a; values + static +t net/minecraft/DetectedVersion + a f_132476_ + b f_132477_ + c f_132478_ + d f_132479_ + e f_132480_ + f f_132481_ + g f_132482_ + h f_179761_ + i f_179762_ + j f_132484_ + ()V + static + ()V + (Lcom/google/gson/JsonObject;)V + 0 o p_132489_ + a (Lajm;)I m_264084_ + 0 o p_265454_ + a ()Lad; m_195834_ + static + b ()Ljava/lang/String; m_132492_ + c ()Ljava/lang/String; m_132493_ + d ()Ldys; m_183476_ + e ()I m_132495_ + f ()Ljava/util/Date; m_132491_ + g ()Z m_132498_ +ta net/minecraft/network/chat/FormattedText + a f_130759_ + b f_130760_ + ()V + static + a (Lta$b;Lts;)Ljava/util/Optional; m_7451_ + 0 o p_130771_ + 1 o p_130772_ + a (Ljava/lang/StringBuilder;Ljava/lang/String;)Ljava/util/Optional; m_130765_ + static + 0 o p_130766_ + 1 o p_130767_ + a ([Lta;)Lta; m_130773_ + static + 0 o p_130774_ + a (Lta$a;)Ljava/util/Optional; m_5651_ + 0 o p_130770_ + a (Ljava/lang/String;Lts;)Lta; m_130762_ + static + 0 o p_130763_ + 1 o p_130764_ + a (Ljava/util/List;)Lta; m_130768_ + static + 0 o p_130769_ + e (Ljava/lang/String;)Lta; m_130775_ + static + 0 o p_130776_ + getString ()Ljava/lang/String; getString +ta$1 net/minecraft/network/chat/FormattedText$1 + ()V + a (Lta$b;Lts;)Ljava/util/Optional; m_7451_ + 0 o p_130781_ + 1 o p_130782_ + a (Lta$a;)Ljava/util/Optional; m_5651_ + 0 o p_130779_ +ta$2 net/minecraft/network/chat/FormattedText$2 + c f_130783_ + (Ljava/lang/String;)V + 0 o p_130785_ + a (Lta$b;Lts;)Ljava/util/Optional; m_7451_ + 0 o p_130789_ + 1 o p_130790_ + a (Lta$a;)Ljava/util/Optional; m_5651_ + 0 o p_130787_ +ta$3 net/minecraft/network/chat/FormattedText$3 + c f_130791_ + d f_130792_ + (Ljava/lang/String;Lts;)V + 0 o p_130794_ + 1 o p_130795_ + a (Lta$b;Lts;)Ljava/util/Optional; m_7451_ + 0 o p_130799_ + 1 o p_130800_ + a (Lta$a;)Ljava/util/Optional; m_5651_ + 0 o p_130797_ +ta$4 net/minecraft/network/chat/FormattedText$4 + c f_130801_ + (Ljava/util/List;)V + 0 o p_130803_ + a (Lta$b;Lts;)Ljava/util/Optional; m_7451_ + 0 o p_130807_ + 1 o p_130808_ + a (Lta$a;)Ljava/util/Optional; m_5651_ + 0 o p_130805_ +ta$a net/minecraft/network/chat/FormattedText$ContentConsumer + accept (Ljava/lang/String;)Ljava/util/Optional; m_130809_ + 0 o p_130810_ +ta$b net/minecraft/network/chat/FormattedText$StyledContentConsumer + accept (Lts;Ljava/lang/String;)Ljava/util/Optional; m_7164_ + 0 o p_130811_ + 1 o p_130812_ +tb net/minecraft/network/chat/HoverEvent + a f_130813_ + b f_130814_ + c f_130815_ + ()V + static + (Ltb$a;Ljava/lang/Object;)V + 0 o p_130818_ + 1 o p_130819_ + a ()Ltb$a; m_130820_ + a (Lcom/google/gson/JsonObject;)Ltb; m_130821_ + static + 0 o p_130822_ + a (Ltb$a;)Ljava/lang/Object; m_130823_ + 0 o p_130824_ + b ()Lcom/google/gson/JsonObject; m_130825_ + equals (Ljava/lang/Object;)Z equals + 0 o p_130828_ + hashCode ()I hashCode + toString ()Ljava/lang/String; toString +tb$a net/minecraft/network/chat/HoverEvent$Action + a f_130831_ + b f_130832_ + c f_130833_ + d f_130834_ + e f_130835_ + f f_130836_ + g f_130837_ + h f_130838_ + i f_130839_ + ()V + static + (Ljava/lang/String;ZLjava/util/function/Function;Ljava/util/function/Function;Ljava/util/function/Function;)V + 0 o p_130842_ + 1 o p_130843_ + 2 o p_130844_ + 3 o p_130845_ + 4 o p_130846_ + a (Ltb$a;)Ltb$a; m_178443_ + static + 0 o p_178444_ + a (Ljava/lang/String;)Ltb$a; m_130852_ + static + 0 o p_130853_ + a ()Z m_130847_ + a (Lcom/google/gson/JsonElement;)Ltb; m_130848_ + 0 o p_130849_ + a (Lsw;)Ltb; m_130854_ + 0 o p_130855_ + a (Ljava/lang/Object;)Lcom/google/gson/JsonElement; m_130850_ + 0 o p_130851_ + b ()Ljava/lang/String; m_130861_ + b (Ljava/lang/Object;)Ljava/lang/Object; m_130864_ + 0 o p_130865_ + toString ()Ljava/lang/String; toString +tb$b net/minecraft/network/chat/HoverEvent$EntityTooltipInfo + a f_130871_ + b f_130872_ + c f_130873_ + d f_130874_ + (Lbfn;Ljava/util/UUID;Lsw;)V + 0 o p_130876_ + 1 o p_130877_ + 2 o p_130878_ + a (Lsw;)Ltb$b; m_130882_ + static + 0 o p_130883_ + a ()Lcom/google/gson/JsonElement; m_130879_ + a (Lcom/google/gson/JsonElement;)Ltb$b; m_130880_ + static + 0 o p_130881_ + b ()Ljava/util/List; m_130884_ + equals (Ljava/lang/Object;)Z equals + 0 o p_130886_ + hashCode ()I hashCode +tb$c net/minecraft/network/chat/HoverEvent$ItemStackInfo + a f_130888_ + b f_130889_ + c f_130890_ + d f_130891_ + (Lcfz;)V + 0 o p_130897_ + (Lcfu;ILqr;)V + 0 o p_130893_ + 1 o p_130894_ + 2 o p_130895_ + a ()Lcfz; m_130898_ + a (Lsw;)Ltb$c; m_130908_ + static + 0 o p_130909_ + a (Lcom/google/gson/JsonElement;)Ltb$c; m_130906_ + static + 0 o p_130907_ + b ()Lcom/google/gson/JsonElement; m_130905_ + equals (Ljava/lang/Object;)Z equals + 0 o p_130911_ + hashCode ()I hashCode +tc net/minecraft/network/chat/LastSeenMessages + a f_252509_ + b f_241634_ + c f_241617_ + d f_241630_ + ()V + static + (Ljava/util/List;)V + 0 o f_241630_ + a (Lti;)Ltc$a; m_247067_ + 0 o p_253961_ + a (Lti;Lth;)Lth$a; m_252644_ + static + 0 o p_253456_ + 1 o p_253457_ + a (Lapi$a;)V m_245933_ + 0 o p_251665_ + a ()Ljava/util/List; f_241630_ + equals (Ljava/lang/Object;)Z equals + 0 o p_242428_ + hashCode ()I hashCode + toString ()Ljava/lang/String; toString +tc$a net/minecraft/network/chat/LastSeenMessages$Packed + a f_244256_ + b f_244613_ + ()V + static + (Lsf;)V + 0 o p_249757_ + (Ljava/util/List;)V + 0 o f_244613_ + a ()Ljava/util/List; f_244613_ + a (Lti;)Ljava/util/Optional; m_245073_ + 0 o p_253745_ + a (Lsf;)V m_246304_ + 0 o p_250725_ + equals (Ljava/lang/Object;)Z equals + 0 o p_248722_ + hashCode ()I hashCode + toString ()Ljava/lang/String; toString +tc$b net/minecraft/network/chat/LastSeenMessages$Update + a f_243843_ + b f_244446_ + (Lsf;)V + 0 o p_242184_ + (ILjava/util/BitSet;)V + 0 o f_243843_ + 1 o f_244446_ + a ()I f_243843_ + a (Lsf;)V m_242008_ + 0 o p_242221_ + b ()Ljava/util/BitSet; f_244446_ + equals (Ljava/lang/Object;)Z equals + 0 o p_242333_ + hashCode ()I hashCode + toString ()Ljava/lang/String; toString +td net/minecraft/network/chat/LastSeenMessagesTracker + a f_244505_ + b f_244578_ + c f_244552_ + d f_243823_ + (I)V + 0 o p_242388_ + a (Lth;)V m_246067_ + 0 o p_251020_ + a (Lth;Z)Z m_245220_ + 0 o p_248926_ + 1 o p_250312_ + a ()I m_245313_ + a (Ltf;)V m_247638_ + 0 o p_250255_ + b ()Ltd$a; m_246442_ + c ()I m_245480_ +td$a net/minecraft/network/chat/LastSeenMessagesTracker$Update + a f_243872_ + b f_244473_ + (Ltc;Ltc$b;)V + 0 o f_243872_ + 1 o f_244473_ + a ()Ltc; f_243872_ + b ()Ltc$b; f_244473_ + equals (Ljava/lang/Object;)Z equals + 0 o p_251158_ + hashCode ()I hashCode + toString ()Ljava/lang/String; toString +te net/minecraft/network/chat/LastSeenMessagesValidator + a f_244465_ + b f_243950_ + c f_244339_ + (I)V + 0 o p_249951_ + a (Lth;)V m_247482_ + 0 o p_248841_ + a (Ltc$b;)Ljava/util/Optional; m_247119_ + 0 o p_248868_ + a (I)Z m_245398_ + 0 o p_251273_ + a ()I m_245741_ +tf net/minecraft/network/chat/LastSeenTrackedEntry + a f_243846_ + b f_243942_ + (Lth;Z)V + 0 o f_243846_ + 1 o f_243942_ + a ()Ltf; m_247448_ + b ()Lth; f_243846_ + c ()Z f_243942_ + equals (Ljava/lang/Object;)Z equals + 0 o p_250444_ + hashCode ()I hashCode + toString ()Ljava/lang/String; toString +tg net/minecraft/network/chat/LocalChatSession + a f_244284_ + b f_243926_ + (Ljava/util/UUID;Lbyq;)V + 0 o f_244284_ + 1 o f_243926_ + a (Lbyq;)Ltg; m_245157_ + static + 0 o p_250798_ + a (Ljava/util/UUID;)Ltp$c; m_247507_ + 0 o p_251085_ + a ()Ltm; m_245584_ + b ()Ljava/util/UUID; f_244284_ + c ()Lbyq; f_243926_ + equals (Ljava/lang/Object;)Z equals + 0 o p_251653_ + hashCode ()I hashCode + toString ()Ljava/lang/String; toString +th net/minecraft/network/chat/MessageSignature + a f_252463_ + b f_244417_ + c f_240884_ + ()V + static + ([B)V + 0 o f_240884_ + a ()Ljava/nio/ByteBuffer; m_241929_ + a (Lapj;Lapi;)Z m_245457_ + 0 o p_250998_ + 1 o p_249843_ + a (Lsf;)Lth; m_245099_ + static + 0 o p_249837_ + a (Lsf;Lth;)V m_246050_ + static + 0 o p_250642_ + 1 o p_249714_ + a (Lti;)Lth$a; m_252849_ + 0 o p_253845_ + b ()[B f_240884_ + equals (Ljava/lang/Object;)Z equals + 0 o p_237166_ + hashCode ()I hashCode + toString ()Ljava/lang/String; toString +th$a net/minecraft/network/chat/MessageSignature$Packed + a f_244178_ + b f_244111_ + c f_244020_ + (Lth;)V + 0 o p_249705_ + (ILth;)V + 0 o f_244111_ + 1 o f_244020_ + (I)V + 0 o p_250015_ + a (Lsf;)Lth$a; m_246521_ + static + 0 o p_250810_ + a ()I f_244111_ + a (Lti;)Ljava/util/Optional; m_253223_ + 0 o p_254423_ + a (Lsf;Lth$a;)V m_246314_ + static + 0 o p_251691_ + 1 o p_252193_ + b ()Lth; f_244020_ + equals (Ljava/lang/Object;)Z equals + 0 o p_249581_ + hashCode ()I hashCode + toString ()Ljava/lang/String; toString +ti net/minecraft/network/chat/MessageSignatureCache + a f_252441_ + b f_243760_ + c f_243958_ + (I)V + 0 o p_250894_ + a (I)Lth; m_252914_ + 0 o p_253967_ + a (Ljava/util/ArrayDeque;)V m_245729_ + 0 o p_251419_ + a ()Lti; m_246587_ + static + a (Ljava/util/List;)V m_246417_ + 0 o p_248560_ + a (Ltl;)V m_247208_ + 0 o p_248938_ + a (Lth;)I m_252764_ + 0 o p_254157_ +tj net/minecraft/network/chat/MutableComponent + c f_237194_ + d f_237195_ + e f_237196_ + f f_237197_ + g f_237198_ + (Lsx;Ljava/util/List;Lts;)V + 0 o p_237200_ + 1 o p_237201_ + 2 o p_237202_ + a (Ljava/util/function/UnaryOperator;)Ltj; m_130938_ + 0 o p_130939_ + a (Lsx;)Ltj; m_237204_ + static + 0 o p_237205_ + a (Ln;)Ltj; m_130940_ + 0 o p_130941_ + a ([Ln;)Ltj; m_130944_ + 0 o p_130945_ + a ()Lts; m_7383_ + b (Lsw;)Ltj; m_7220_ + 0 o p_130942_ + b ()Lsx; m_214077_ + b (Lts;)Ltj; m_6270_ + 0 o p_130943_ + c (Lts;)Ltj; m_130948_ + 0 o p_130949_ + c ()Ljava/util/List; m_7360_ + equals (Ljava/lang/Object;)Z equals + 0 o p_237209_ + f (Ljava/lang/String;)Ltj; m_130946_ + 0 o p_130947_ + f ()Laom; m_7532_ + hashCode ()I hashCode + toString ()Ljava/lang/String; toString +tk net/minecraft/network/chat/OutgoingChatMessage + a ()Lsw; m_245730_ + a (Laig;ZLss$a;)V m_246195_ + 0 o p_250979_ + 1 o p_249307_ + 2 o p_252281_ + a (Ltl;)Ltk; m_247282_ + static + 0 o p_249173_ +tk$a net/minecraft/network/chat/OutgoingChatMessage$Disguised + a f_244003_ + (Lsw;)V + 0 o f_244003_ + a ()Lsw; m_245730_ + a (Laig;ZLss$a;)V m_246195_ + 0 o p_249237_ + 1 o p_249574_ + 2 o p_250880_ + equals (Ljava/lang/Object;)Z equals + 0 o p_250096_ + hashCode ()I hashCode + toString ()Ljava/lang/String; toString +tk$b net/minecraft/network/chat/OutgoingChatMessage$Player + a f_243697_ + (Ltl;)V + 0 o f_243697_ + a ()Lsw; m_245730_ + a (Laig;ZLss$a;)V m_246195_ + 0 o p_249642_ + 1 o p_251123_ + 2 o p_251482_ + b ()Ltl; f_243697_ + equals (Ljava/lang/Object;)Z equals + 0 o p_251410_ + hashCode ()I hashCode + toString ()Ljava/lang/String; toString +tl net/minecraft/network/chat/PlayerChatMessage + a f_252410_ + b f_240359_ + c f_240369_ + d f_243882_ + e f_244279_ + f f_240885_ + g f_237215_ + h f_242992_ + i f_243787_ + ()V + static + (Ltq;Lth;Lto;Lsw;Lsz;)V + 0 o f_243882_ + 1 o f_244279_ + 2 o f_240885_ + 3 o f_237215_ + 4 o f_242992_ + a (Lapi$a;Ltq;Lto;)V m_245322_ + static + 0 o p_250661_ + 1 o p_248621_ + 2 o p_248823_ + a (Lapi$a;)V m_246814_ + 0 o p_249861_ + a (Ljava/util/UUID;Ljava/lang/String;)Ltl; m_247615_ + static + 0 o p_251783_ + 1 o p_251615_ + a (Lapj;)Z m_241121_ + 0 o p_241442_ + a (Ljava/lang/String;)Ltl; m_247306_ + static + 0 o p_249209_ + a (Ljava/util/UUID;)Z m_243088_ + 0 o p_243236_ + a (Lsz;)Ltl; m_243072_ + 0 o p_243320_ + a (Ltl;)Ljava/util/Optional; m_252645_ + static + 0 o p_253458_ + a (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; m_252647_ + static + 0 o p_253460_ + a (Lsw;)Ltl; m_241956_ + 0 o p_242164_ + a (Z)Ltl; m_243098_ + 0 o p_243223_ + a (Ljava/time/Instant;)Z m_240431_ + 0 o p_240573_ + a (Ltq;Ljava/util/Optional;Lto;Ljava/util/Optional;Lsz;)Ltl; m_252648_ + static + 0 o p_253461_ + 1 o p_253462_ + 2 o p_253463_ + 3 o p_253464_ + 4 o p_253465_ + a ()Ltl; m_239022_ + b (Ljava/time/Instant;)Z m_240414_ + 0 o p_240629_ + b ()Ljava/lang/String; m_245728_ + b (Ltl;)Ljava/util/Optional; m_252646_ + static + 0 o p_253459_ + c ()Lsw; m_245692_ + d ()Ljava/time/Instant; m_241109_ + e ()J m_241064_ + equals (Ljava/lang/Object;)Z equals + 0 o p_237251_ + f ()Ljava/util/UUID; m_245167_ + g ()Z m_245339_ + h ()Z m_245272_ + hashCode ()I hashCode + i ()Z m_243059_ + j ()Ltq; f_243882_ + k ()Lth; f_244279_ + l ()Lto; f_240885_ + m ()Lsw; f_237215_ + n ()Lsz; f_242992_ + o ()Lsw; m_245394_ + toString ()Ljava/lang/String; toString +tm net/minecraft/network/chat/RemoteChatSession + a f_244448_ + b f_243855_ + (Ljava/util/UUID;Lbyr;)V + 0 o f_244448_ + 1 o f_243855_ + a (Ljava/util/UUID;)Ltp$b; m_245959_ + 0 o p_249107_ + a ()Ltr; m_245949_ + b ()Ltm$a; m_245986_ + c ()Z m_280521_ + d ()Ljava/util/UUID; f_244448_ + e ()Lbyr; f_243855_ + equals (Ljava/lang/Object;)Z equals + 0 o p_250614_ + hashCode ()I hashCode + toString ()Ljava/lang/String; toString +tm$a net/minecraft/network/chat/RemoteChatSession$Data + a f_244232_ + b f_243937_ + (Ljava/util/UUID;Lbyr$a;)V + 0 o f_244232_ + 1 o f_243937_ + a (Lsf;Ltm$a;)V m_247658_ + static + 0 o p_248910_ + 1 o p_250537_ + a (Lsf;)Ltm$a; m_246364_ + static + 0 o p_252181_ + a (Lcom/mojang/authlib/GameProfile;Lapj;Ljava/time/Duration;)Ltm; m_247588_ + 0 o p_251231_ + 1 o p_248970_ + 2 o p_251179_ + a ()Ljava/util/UUID; f_244232_ + b ()Lbyr$a; f_243937_ + equals (Ljava/lang/Object;)Z equals + 0 o p_250315_ + hashCode ()I hashCode + toString ()Ljava/lang/String; toString +tn net/minecraft/network/chat/SignableCommand + a f_244150_ + (Ljava/util/List;)V + 0 o f_244150_ + a (Lcom/mojang/brigadier/ParseResults;)Ltn; m_246497_ + static + 0 o p_250316_ + a ()Ljava/util/List; f_244150_ + a (Ljava/lang/String;Lcom/mojang/brigadier/context/CommandContextBuilder;)Ljava/util/List; m_246854_ + static + 0 o p_252055_ + 1 o p_251770_ + equals (Ljava/lang/Object;)Z equals + 0 o p_250752_ + hashCode ()I hashCode + toString ()Ljava/lang/String; toString +tn$a net/minecraft/network/chat/SignableCommand$Argument + a f_243965_ + b f_244218_ + (Lcom/mojang/brigadier/tree/ArgumentCommandNode;Ljava/lang/String;)V + 0 o f_243965_ + 1 o f_244218_ + a ()Ljava/lang/String; m_246038_ + b ()Lcom/mojang/brigadier/tree/ArgumentCommandNode; f_243965_ + c ()Ljava/lang/String; f_244218_ + equals (Ljava/lang/Object;)Z equals + 0 o p_250877_ + hashCode ()I hashCode + toString ()Ljava/lang/String; toString +to net/minecraft/network/chat/SignedMessageBody + a f_252412_ + b f_240856_ + c f_240863_ + d f_240873_ + e f_240868_ + ()V + static + (Ljava/lang/String;Ljava/time/Instant;JLtc;)V + 0 o f_240856_ + 1 o f_240863_ + 2 o f_240873_ + 3 o f_240868_ + a (Lapi$a;)V m_245051_ + 0 o p_249654_ + a ()Ljava/lang/String; f_240856_ + a (Ljava/lang/String;)Lto; m_247681_ + static + 0 o p_249884_ + a (Lti;)Lto$a; m_253217_ + 0 o p_253671_ + a (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; m_252875_ + static + 0 o p_253722_ + b ()Ljava/time/Instant; f_240863_ + c ()J f_240873_ + d ()Ltc; f_240868_ + equals (Ljava/lang/Object;)Z equals + 0 o p_241378_ + hashCode ()I hashCode + toString ()Ljava/lang/String; toString +to$a net/minecraft/network/chat/SignedMessageBody$Packed + a f_243660_ + b f_244314_ + c f_243790_ + d f_244137_ + (Lsf;)V + 0 o p_251620_ + (Ljava/lang/String;Ljava/time/Instant;JLtc$a;)V + 0 o f_243660_ + 1 o f_244314_ + 2 o f_243790_ + 3 o f_244137_ + a (Ltc;)Lto; m_245470_ + 0 o p_249065_ + a ()Ljava/lang/String; f_243660_ + a (Lti;)Ljava/util/Optional; m_252762_ + 0 o p_253919_ + a (Lsf;)V m_247637_ + 0 o p_250247_ + b ()Ljava/time/Instant; f_244314_ + c ()J f_243790_ + d ()Ltc$a; f_244137_ + equals (Ljava/lang/Object;)Z equals + 0 o p_251927_ + hashCode ()I hashCode + toString ()Ljava/lang/String; toString +tp net/minecraft/network/chat/SignedMessageChain + a f_243812_ + b f_244563_ + ()V + static + (Ljava/util/UUID;Ljava/util/UUID;)V + 0 o p_250050_ + 1 o p_249127_ + a ()Ltq; m_246515_ + a (Lbyr;Lapj;Lth;Lto;)Ltl; m_244794_ + 0 o p_248059_ + 1 o p_248060_ + 2 o p_248061_ + 3 o p_248062_ + a (Lapk;Lto;)Lth; m_244796_ + 0 o p_248066_ + 1 o p_248067_ + a (Ltq;Lto;Lapi$a;)V m_244795_ + static + 0 o p_248063_ + 1 o p_248064_ + 2 o p_248065_ + a (Lapk;)Ltp$c; m_247027_ + 0 o p_248636_ + a (Lbyr;)Ltp$b; m_247594_ + 0 o p_249122_ +tp$a net/minecraft/network/chat/SignedMessageChain$DecodeException + a f_244583_ + (Lsw;Z)V + 0 o p_249149_ + 1 o p_250401_ + a ()Z m_246459_ +tp$b net/minecraft/network/chat/SignedMessageChain$Decoder + a f_252472_ + ()V + static + a (Ljava/util/UUID;Lth;Lto;)Ltl; m_244797_ + static + 0 o p_248068_ + 1 o p_248069_ + 2 o p_248070_ + a (Lth;Lto;)Ltl; m_252649_ + static + 0 o p_253466_ + 1 o p_253467_ + unpack (Lth;Lto;)Ltl; m_240945_ + 0 o p_249082_ + 1 o p_250981_ + unsigned (Ljava/util/UUID;)Ltp$b; m_246683_ + static + 0 o p_251747_ +tp$c net/minecraft/network/chat/SignedMessageChain$Encoder + a f_243849_ + ()V + static + a (Lto;)Lth; m_245588_ + static + 0 o p_250548_ + pack (Lto;)Lth; m_240988_ + 0 o p_250628_ +tq net/minecraft/network/chat/SignedMessageLink + a f_252474_ + b f_244066_ + c f_244443_ + d f_244370_ + ()V + static + (ILjava/util/UUID;Ljava/util/UUID;)V + 0 o f_244066_ + 1 o f_244443_ + 2 o f_244370_ + a (Lapi$a;)V m_247193_ + 0 o p_249261_ + a (Ljava/util/UUID;)Ltq; m_245187_ + static + 0 o p_251496_ + a ()Ltq; m_245146_ + a (Ljava/util/UUID;Ljava/util/UUID;)Ltq; m_245110_ + static + 0 o p_249990_ + 1 o p_248913_ + a (Ltq;)Z m_246959_ + 0 o p_250977_ + a (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; m_253264_ + static + 0 o p_253768_ + b ()I f_244066_ + c ()Ljava/util/UUID; f_244443_ + d ()Ljava/util/UUID; f_244370_ + equals (Ljava/lang/Object;)Z equals + 0 o p_250380_ + hashCode ()I hashCode + toString ()Ljava/lang/String; toString +tr net/minecraft/network/chat/SignedMessageValidator + a f_244130_ + b f_243754_ + ()V + static + a (Ltl;)Z m_247555_ + static + 0 o p_251793_ + b (Ltl;)Z m_245862_ + static + 0 o p_252109_ + updateAndValidate (Ltl;)Z m_241126_ + 0 o p_251036_ +tr$a net/minecraft/network/chat/SignedMessageValidator$KeyBased + c f_240903_ + d f_244265_ + e f_243954_ + (Lapj;)V + 0 o p_241517_ + a (Ltl;)Z m_247180_ + 0 o p_250412_ + updateAndValidate (Ltl;)Z m_241126_ + 0 o p_251182_ +ts net/minecraft/network/chat/Style + a f_131099_ + b f_237254_ + c f_131100_ + d f_131101_ + e f_131102_ + f f_131103_ + g f_131104_ + h f_131105_ + i f_131106_ + j f_131107_ + k f_131108_ + l f_131109_ + m f_131110_ + ()V + static + (Ltu;Ljava/lang/Boolean;Ljava/lang/Boolean;Ljava/lang/Boolean;Ljava/lang/Boolean;Ljava/lang/Boolean;Lsu;Ltb;Ljava/lang/String;Lacq;)V + 0 o p_131113_ + 1 o p_131114_ + 2 o p_131115_ + 3 o p_131116_ + 4 o p_131117_ + 5 o p_131118_ + 6 o p_131119_ + 7 o p_131120_ + 8 o p_131121_ + 9 o p_131122_ + a (Lacq;)Lts; m_131150_ + 0 o p_131151_ + a ()Ltu; m_131135_ + a (Ljava/util/Optional;Ljava/util/Optional;Ljava/util/Optional;Ljava/util/Optional;Ljava/util/Optional;Ljava/util/Optional;Ljava/util/Optional;Ljava/util/Optional;)Lts; m_237257_ + static + 0 o p_237258_ + 1 o p_237259_ + 2 o p_237260_ + 3 o p_237261_ + 4 o p_237262_ + 5 o p_237263_ + 6 o p_237264_ + 7 o p_237265_ + a (Lcom/mojang/serialization/codecs/RecordCodecBuilder$Instance;)Lcom/mojang/datafixers/kinds/App; m_237255_ + static + 0 o p_237256_ + a (Lts;)Lts; m_131146_ + 0 o p_131147_ + a ([Ln;)Lts; m_131152_ + 0 o p_131153_ + a (Ltb;)Lts; m_131144_ + 0 o p_131145_ + a (Ltu;)Lts; m_131148_ + 0 o p_131149_ + a (Lsu;)Lts; m_131142_ + 0 o p_131143_ + a (Ljava/lang/String;)Lts; m_131138_ + 0 o p_131139_ + a (Ljava/lang/Boolean;)Lts; m_131136_ + 0 o p_131137_ + a (I)Lts; m_178520_ + 0 o p_178521_ + a (Ln;)Lts; m_131140_ + 0 o p_131141_ + b (Lts;)Ljava/util/Optional; m_237266_ + static + 0 o p_237267_ + b (Ljava/lang/Boolean;)Lts; m_131155_ + 0 o p_131156_ + b (Ln;)Lts; m_131157_ + 0 o p_131158_ + b ()Z m_131154_ + c (Ljava/lang/Boolean;)Lts; m_131162_ + 0 o p_131163_ + c (Ln;)Lts; m_131164_ + 0 o p_131165_ + c ()Z m_131161_ + c (Lts;)Ljava/util/Optional; m_237268_ + static + 0 o p_237269_ + d (Ljava/lang/Boolean;)Lts; m_178522_ + 0 o p_178523_ + d (Lts;)Ljava/util/Optional; m_237270_ + static + 0 o p_237271_ + d ()Z m_131168_ + e (Ljava/lang/Boolean;)Lts; m_178524_ + 0 o p_178525_ + e (Lts;)Ljava/util/Optional; m_237272_ + static + 0 o p_237273_ + e ()Z m_131171_ + equals (Ljava/lang/Object;)Z equals + 0 o p_131175_ + f (Lts;)Ljava/util/Optional; m_237274_ + static + 0 o p_237275_ + f ()Z m_131176_ + g ()Z m_131179_ + g (Lts;)Ljava/util/Optional; m_237276_ + static + 0 o p_237277_ + h (Lts;)Ljava/util/Optional; m_237278_ + static + 0 o p_237279_ + h ()Lsu; m_131182_ + hashCode ()I hashCode + i (Lts;)Ljava/util/Optional; m_237280_ + static + 0 o p_237281_ + i ()Ltb; m_131186_ + j ()Ljava/lang/String; m_131189_ + k ()Lacq; m_131192_ + toString ()Ljava/lang/String; toString +ts$1 net/minecraft/network/chat/Style$1 + a f_131196_ + ()V + static +ts$a net/minecraft/network/chat/Style$1Collector + a f_237282_ + b f_237283_ + c f_237284_ + (Lts;Ljava/lang/StringBuilder;)V + 0 o p_237286_ + 1 o p_237287_ + a (Ljava/lang/String;Ljava/lang/Boolean;)V m_237289_ + 0 o p_237290_ + 1 o p_237291_ + a (Ljava/lang/String;Ljava/lang/Object;)V m_237292_ + 0 o p_237293_ + 1 o p_237294_ + a ()V m_237288_ +ts$b net/minecraft/network/chat/Style$Serializer + ()V + a (Lts;Ljava/lang/reflect/Type;Lcom/google/gson/JsonSerializationContext;)Lcom/google/gson/JsonElement; serialize + 0 o p_131209_ + 1 o p_131210_ + 2 o p_131211_ + a (Lcom/google/gson/JsonElement;Ljava/lang/reflect/Type;Lcom/google/gson/JsonDeserializationContext;)Lts; deserialize + 0 o p_131200_ + 1 o p_131201_ + 2 o p_131202_ + a (Lcom/google/gson/JsonObject;)Lacq; m_131203_ + static + 0 o p_131204_ + a (Lcom/google/gson/JsonObject;Ljava/lang/String;)Ljava/lang/Boolean; m_131205_ + static + 0 o p_131206_ + 1 o p_131207_ + b (Lcom/google/gson/JsonObject;)Ltb; m_131212_ + static + 0 o p_131213_ + c (Lcom/google/gson/JsonObject;)Lsu; m_131214_ + static + 0 o p_131215_ + d (Lcom/google/gson/JsonObject;)Ljava/lang/String; m_131216_ + static + 0 o p_131217_ + deserialize (Lcom/google/gson/JsonElement;Ljava/lang/reflect/Type;Lcom/google/gson/JsonDeserializationContext;)Ljava/lang/Object; deserialize + 0 o p_131219_ + 1 o p_131220_ + 2 o p_131221_ + e (Lcom/google/gson/JsonObject;)Ltu; m_131222_ + static + 0 o p_131223_ + serialize (Ljava/lang/Object;Ljava/lang/reflect/Type;Lcom/google/gson/JsonSerializationContext;)Lcom/google/gson/JsonElement; serialize + 0 o p_131225_ + 1 o p_131226_ + 2 o p_131227_ +tt net/minecraft/network/chat/SubStringSource + a f_131228_ + b f_131229_ + c f_131230_ + (Ljava/lang/String;Ljava/util/List;Lit/unimi/dsi/fastutil/ints/Int2IntFunction;)V + 0 o p_131232_ + 1 o p_131233_ + 2 o p_131234_ + a (Lta;Lit/unimi/dsi/fastutil/ints/Int2IntFunction;Ljava/util/function/UnaryOperator;)Ltt; m_131251_ + static + 0 o p_131252_ + 1 o p_131253_ + 2 o p_131254_ + a (Ljava/lang/StringBuilder;Ljava/util/List;ILts;I)Z m_178530_ + static + 0 o p_178531_ + 1 o p_178532_ + 2 o p_178533_ + 3 o p_178534_ + 4 o p_178535_ + a (Lta;)Ltt; m_178536_ + static + 0 o p_178537_ + a (IIZ)Ljava/util/List; m_131236_ + 0 o p_131237_ + 1 o p_131238_ + 2 o p_131239_ + a (Ljava/lang/StringBuilder;Ljava/util/List;Lts;Ljava/lang/String;)Ljava/util/Optional; m_131246_ + static + 0 o p_131247_ + 1 o p_131248_ + 2 o p_131249_ + 3 o p_131250_ + a ()Ljava/lang/String; m_131235_ + a (I)I m_178526_ + static + 0 o p_178527_ + a (Ljava/lang/String;)Ljava/lang/String; m_178528_ + static + 0 o p_178529_ +tu net/minecraft/network/chat/TextColor + a f_237295_ + b f_178538_ + c f_131255_ + d f_131256_ + e f_131257_ + f f_131258_ + ()V + static + (I)V + 0 o p_131261_ + (ILjava/lang/String;)V + 0 o p_131263_ + 1 o p_131264_ + a (Ljava/lang/String;)Ltu; m_131268_ + static + 0 o p_131269_ + a (Ltu;)Ljava/lang/String; m_237296_ + static + 0 o p_237297_ + a ()I m_131265_ + a (I)Ltu; m_131266_ + static + 0 o p_131267_ + a (Ln;)Ltu; m_131270_ + static + 0 o p_131271_ + b (Ln;)Ltu; m_237300_ + static + 0 o p_237301_ + b ()Ljava/lang/String; m_131274_ + b (Ljava/lang/String;)Lcom/mojang/serialization/DataResult; m_274065_ + static + 0 o p_274794_ + c ()Ljava/lang/String; m_131277_ + d ()Ljava/lang/String; m_274064_ + static + equals (Ljava/lang/Object;)Z equals + 0 o p_131279_ + hashCode ()I hashCode + toString ()Ljava/lang/String; toString +tv net/minecraft/network/chat/ThrowingComponent + a f_237302_ + (Lsw;)V + 0 o p_237304_ + (Lsw;Ljava/lang/Throwable;)V + 0 o p_237306_ + 1 o p_237307_ + b ()Lsw; m_237308_ +tw net/minecraft/network/chat/contents/BlockDataSource + a f_237309_ + b f_237310_ + (Ljava/lang/String;)V + 0 o p_237312_ + (Ljava/lang/String;Lfk;)V + 0 o f_237309_ + 1 o f_237310_ + a (Ljava/lang/String;)Lfk; m_237317_ + static + 0 o p_237318_ + a ()Ljava/lang/String; f_237309_ + b ()Lfk; f_237310_ + equals (Ljava/lang/Object;)Z equals + 0 o p_237321_ + getData (Lds;)Ljava/util/stream/Stream; m_213601_ + 0 o p_237323_ + hashCode ()I hashCode + toString ()Ljava/lang/String; toString +tx net/minecraft/network/chat/contents/DataSource + getData (Lds;)Ljava/util/stream/Stream; m_213601_ + 0 o p_237326_ +ty net/minecraft/network/chat/contents/EntityDataSource + a f_237327_ + b f_237328_ + (Ljava/lang/String;Lga;)V + 0 o f_237327_ + 1 o f_237328_ + (Ljava/lang/String;)V + 0 o p_237330_ + a ()Ljava/lang/String; f_237327_ + a (Ljava/lang/String;)Lga; m_237335_ + static + 0 o p_237336_ + b ()Lga; f_237328_ + equals (Ljava/lang/Object;)Z equals + 0 o p_237339_ + getData (Lds;)Ljava/util/stream/Stream; m_213601_ + 0 o p_237341_ + hashCode ()I hashCode + toString ()Ljava/lang/String; toString +tz net/minecraft/network/chat/contents/KeybindContents + b f_237344_ + c f_237345_ + (Ljava/lang/String;)V + 0 o p_237347_ + a (Lta$b;Lts;)Ljava/util/Optional; m_213724_ + 0 o p_237352_ + 1 o p_237353_ + a ()Ljava/lang/String; m_237348_ + a (Lta$a;)Ljava/util/Optional; m_213874_ + 0 o p_237350_ + b ()Lsw; m_237354_ + equals (Ljava/lang/Object;)Z equals + 0 o p_237356_ + hashCode ()I hashCode + toString ()Ljava/lang/String; toString +u net/minecraft/FieldsAreNonnullByDefault +ua net/minecraft/network/chat/contents/KeybindResolver + a f_237359_ + ()V + static + ()V + a (Ljava/util/function/Function;)V m_237364_ + static + 0 o p_237365_ + a (Ljava/lang/String;)Ljava/util/function/Supplier; m_237362_ + static + 0 o p_237363_ + b (Ljava/lang/String;)Lsw; m_237366_ + static + 0 o p_237367_ +ub net/minecraft/network/chat/contents/LiteralContents + b f_237368_ + (Ljava/lang/String;)V + 0 o f_237368_ + a (Lta$b;Lts;)Ljava/util/Optional; m_213724_ + 0 o p_237375_ + 1 o p_237376_ + a ()Ljava/lang/String; f_237368_ + a (Lta$a;)Ljava/util/Optional; m_213874_ + 0 o p_237373_ + equals (Ljava/lang/Object;)Z equals + 0 o p_237378_ + hashCode ()I hashCode + toString ()Ljava/lang/String; toString +uc net/minecraft/network/chat/contents/NbtContents + b f_237381_ + c f_237382_ + d f_237383_ + e f_237384_ + f f_237385_ + g f_237386_ + ()V + static + (Ljava/lang/String;Leh$g;ZLjava/util/Optional;Ltx;)V + 0 o p_237389_ + 1 o p_237390_ + 2 o p_237391_ + 3 o p_237392_ + 4 o p_237393_ + (Ljava/lang/String;ZLjava/util/Optional;Ltx;)V + 0 o p_237395_ + 1 o p_237396_ + 2 o p_237397_ + 3 o p_237398_ + a (Lds;Lbfj;ILjava/lang/String;)Ljava/util/stream/Stream; m_237404_ + static + 0 o p_237405_ + 1 o p_237406_ + 2 o p_237407_ + 3 o p_237408_ + a (Lqr;)Ljava/util/stream/Stream; m_237416_ + 0 o p_237417_ + a ()Ljava/lang/String; m_237399_ + a (Ljava/util/stream/Stream;Ltj;)Ltj; m_237413_ + static + 0 o p_237414_ + 1 o p_237415_ + a (Ljava/util/stream/Stream;)Ltj; m_237411_ + static + 0 o p_237412_ + a (Ltj;Ltj;Ltj;)Ltj; m_237422_ + static + 0 o p_237423_ + 1 o p_237424_ + 2 o p_237425_ + a (Lsw;Ltj;Ltj;)Ltj; m_237418_ + static + 0 o p_237419_ + 1 o p_237420_ + 2 o p_237421_ + a (Lds;Lbfj;I)Ltj; m_213698_ + 0 o p_237401_ + 1 o p_237402_ + 2 o p_237403_ + a (Ljava/lang/String;)Leh$g; m_237409_ + static + 0 o p_237410_ + b ()Z m_237426_ + c ()Ljava/util/Optional; m_237427_ + d ()Ltx; m_237428_ + equals (Ljava/lang/Object;)Z equals + 0 o p_237430_ + hashCode ()I hashCode + toString ()Ljava/lang/String; toString +ud net/minecraft/network/chat/contents/ScoreContents + b f_237433_ + c f_237434_ + d f_237435_ + e f_237436_ + (Ljava/lang/String;Ljava/lang/String;)V + 0 o p_237438_ + 1 o p_237439_ + a (Lds;)Ljava/lang/String; m_237441_ + 0 o p_237442_ + a (Lds;Lbfj;I)Ltj; m_213698_ + 0 o p_237444_ + 1 o p_237445_ + 2 o p_237446_ + a (Ljava/lang/String;Lds;)Ljava/lang/String; m_237449_ + 0 o p_237450_ + 1 o p_237451_ + a ()Ljava/lang/String; m_237440_ + a (Ljava/lang/String;)Lga; m_237447_ + static + 0 o p_237448_ + b ()Lga; m_237452_ + c ()Ljava/lang/String; m_237453_ + equals (Ljava/lang/Object;)Z equals + 0 o p_237455_ + hashCode ()I hashCode + toString ()Ljava/lang/String; toString +ue net/minecraft/network/chat/contents/SelectorContents + b f_237458_ + c f_237459_ + d f_237460_ + e f_237461_ + ()V + static + (Ljava/lang/String;Ljava/util/Optional;)V + 0 o p_237464_ + 1 o p_237465_ + a (Lta$b;Lts;)Ljava/util/Optional; m_213724_ + 0 o p_237476_ + 1 o p_237477_ + a (Lds;Lbfj;I)Ltj; m_213698_ + 0 o p_237468_ + 1 o p_237469_ + 2 o p_237470_ + a ()Ljava/lang/String; m_237466_ + a (Lta$a;)Ljava/util/Optional; m_213874_ + 0 o p_237474_ + a (Ljava/lang/String;)Lga; m_237471_ + static + 0 o p_237472_ + b ()Lga; m_237478_ + c ()Ljava/util/Optional; m_237479_ + equals (Ljava/lang/Object;)Z equals + 0 o p_237481_ + hashCode ()I hashCode + toString ()Ljava/lang/String; toString +uf net/minecraft/network/chat/contents/StorageDataSource + a f_237484_ + (Lacq;)V + 0 o f_237484_ + a ()Lacq; f_237484_ + equals (Ljava/lang/Object;)Z equals + 0 o p_237489_ + getData (Lds;)Ljava/util/stream/Stream; m_213601_ + 0 o p_237491_ + hashCode ()I hashCode + toString ()Ljava/lang/String; toString +ug net/minecraft/network/chat/contents/TranslatableContents + b f_237494_ + c f_237495_ + d f_237496_ + e f_237497_ + f f_263792_ + g f_237498_ + h f_237499_ + i f_237500_ + j f_237501_ + ()V + static + (Ljava/lang/String;Ljava/lang/String;[Ljava/lang/Object;)V + 0 o p_265775_ + 1 o p_265204_ + 2 o p_265752_ + a ()Ljava/lang/String; m_237508_ + a (Ljava/lang/String;Ljava/util/function/Consumer;)V m_237515_ + 0 o p_237516_ + 1 o p_237517_ + a (I)Lta; m_237509_ + 0 o p_237510_ + a (Lta$b;Lts;)Ljava/util/Optional; m_213724_ + 0 o p_237521_ + 1 o p_237522_ + a (Lds;Lbfj;I)Ltj; m_213698_ + 0 o p_237512_ + 1 o p_237513_ + 2 o p_237514_ + a (Lta$a;)Ljava/util/Optional; m_213874_ + 0 o p_237519_ + b ()Ljava/lang/String; m_264577_ + c ()[Ljava/lang/Object; m_237523_ + d ()V m_237524_ + equals (Ljava/lang/Object;)Z equals + 0 o p_237526_ + hashCode ()I hashCode + toString ()Ljava/lang/String; toString +uh net/minecraft/network/chat/contents/TranslatableFormatException + (Lug;Ljava/lang/String;)V + 0 o p_237533_ + 1 o p_237534_ + (Lug;Ljava/lang/Throwable;)V + 0 o p_237536_ + 1 o p_237537_ + (Lug;I)V + 0 o p_237530_ + 1 o p_237531_ +ui net/minecraft/network/chat/contents/package-info +uj net/minecraft/network/chat/package-info +uk net/minecraft/network/package-info +ul net/minecraft/network/protocol/BundleDelimiterPacket + ()V + a (Lsk;)V m_5797_ + 0 o p_265392_ + a (Lsf;)V m_5779_ + 0 o p_265437_ +um net/minecraft/network/protocol/BundlePacket + a f_263700_ + (Ljava/lang/Iterable;)V + 0 o p_265290_ + a ()Ljava/lang/Iterable; m_264216_ + a (Lsf;)V m_5779_ + 0 o p_265519_ +un net/minecraft/network/protocol/BundlerInfo + a f_263730_ + b f_263688_ + c f_263663_ + ()V + static + a (Ljava/lang/Class;Ljava/util/function/Function;Lul;)Lun; m_264118_ + static + 0 o p_265438_ + 1 o p_265627_ + 2 o p_265373_ + a (Luo;Ljava/util/function/Consumer;)V m_264360_ + 0 o p_265095_ + 1 o p_265715_ + a (Luo;)Lun$a; m_264150_ + 0 o p_265162_ +un$1 net/minecraft/network/protocol/BundlerInfo$1 + ()V + a (Luo;Ljava/util/function/Consumer;)V m_264360_ + 0 o p_265538_ + 1 o p_265064_ + a (Luo;)Lun$a; m_264150_ + 0 o p_265749_ +un$2 net/minecraft/network/protocol/BundlerInfo$2 + d f_263671_ + e f_263691_ + f f_263787_ + (Ljava/lang/Class;Lul;Ljava/util/function/Function;)V + 0 o p_265524_ + 1 o p_265772_ + 2 o p_265328_ + a (Luo;Ljava/util/function/Consumer;)V m_264360_ + 0 o p_265337_ + 1 o p_265615_ + a (Luo;)Lun$a; m_264150_ + 0 o p_265097_ +un$2$1 net/minecraft/network/protocol/BundlerInfo$2$1 + a f_263768_ + b f_263710_ + (Lun$2;)V + 0 o p_265446_ + a (Luo;)Luo; m_264116_ + 0 o p_265205_ +un$a net/minecraft/network/protocol/BundlerInfo$Bundler + a (Luo;)Luo; m_264116_ + 0 o p_265601_ +un$b net/minecraft/network/protocol/BundlerInfo$Provider + a (Lup;)Lun; m_264121_ + 0 o p_265148_ +uo net/minecraft/network/protocol/Packet + a (Lsk;)V m_5797_ + 0 o p_131342_ + a (Lsf;)V m_5779_ + 0 o p_131343_ + b ()Z m_6588_ +up net/minecraft/network/protocol/PacketFlow + a SERVERBOUND + b CLIENTBOUND + c $VALUES + ()V + static + (Ljava/lang/String;I)V + 0 o p_131349_ + 1 o p_131350_ + a ()Lup; m_178539_ + b ()[Lup; m_178540_ + static + valueOf (Ljava/lang/String;)Lup; valueOf + static + 0 o p_131352_ + values ()[Lup; values + static +uq net/minecraft/network/protocol/PacketUtils + a f_131354_ + ()V + static + ()V + a (Luo;Lsk;Laif;)V m_131359_ + static + 0 o p_131360_ + 1 o p_131361_ + 2 o p_131362_ + a (Luo;Lsk;Lbcn;)V m_131363_ + static + 0 o p_131364_ + 1 o p_131365_ + 2 o p_131366_ + a (Lsk;Luo;)V m_263899_ + static + 0 o p_264724_ + 1 o p_264725_ +ur net/minecraft/network/protocol/game/ClientGamePacketListener + a (Lwd;)V m_183388_ + 0 o p_195622_ + a (Lyg;)V m_183623_ + 0 o p_195624_ + a (Lxs;)V m_8065_ + 0 o p_131428_ + a (Lut;)V m_7708_ + 0 o p_131368_ + a (Lvp;)V m_7413_ + 0 o p_131390_ + a (Lvx;)V m_7616_ + 0 o p_131396_ + a (Lwl;)V m_7865_ + 0 o p_131406_ + a (Lyo;)V m_213990_ + 0 o p_237543_ + a (Lwt;)V m_213629_ + 0 o p_237540_ + a (Lxk;)V m_142456_ + 0 o p_178550_ + a (Lvh;)V m_7589_ + 0 o p_131382_ + a (Lxc;)V m_182047_ + 0 o p_182700_ + a (Lyw;)V m_7915_ + 0 o p_131453_ + a (Lvm;)V m_5735_ + 0 o p_131388_ + a (Lwz;)V m_7244_ + 0 o p_131415_ + a (Lxn;)V m_142238_ + 0 o p_178553_ + a (Lyj;)V m_142442_ + 0 o p_178557_ + a (Lwi;)V m_5998_ + 0 o p_131403_ + a (Lxv;)V m_5556_ + 0 o p_131431_ + a (Lyb;)V m_5547_ + 0 o p_131437_ + a (Lwa;)V m_142237_ + 0 o p_178544_ + a (Lxf;)V m_7992_ + 0 o p_131421_ + a (Lyr;)V m_8001_ + 0 o p_131449_ + a (Lvu;)V m_7628_ + 0 o p_131393_ + a (Lwq;)V m_141955_ + 0 o p_178545_ + a (Lve;)V m_6664_ + 0 o p_131380_ + a (Lwy;)V m_214045_ + 0 o p_248573_ + a (Lyi;)V m_7885_ + 0 o p_131442_ + a (Lvn;)V m_7701_ + 0 o p_131389_ + a (Lxm;)V m_142686_ + 0 o p_178552_ + a (Lwj;)V m_7633_ + 0 o p_131404_ + a (Lya;)V m_6747_ + 0 o p_131436_ + a (Lxu;)V m_6571_ + 0 o p_131430_ + a (Lwb;)V m_7231_ + 0 o p_131398_ + a (Lvv;)V m_7345_ + 0 o p_131394_ + a (Lxe;)V m_5587_ + 0 o p_131420_ + a (Lyq;)V m_6148_ + 0 o p_131448_ + a (Lwr;)V m_7339_ + 0 o p_131411_ + a (Lvf;)V m_274374_ + 0 o p_275451_ + a (Lyy;)V m_5859_ + 0 o p_131455_ + a (Lxp;)V m_142696_ + 0 o p_178555_ + a (Luw;)V m_7271_ + 0 o p_131373_ + a (Lvk;)V m_6837_ + 0 o p_131386_ + a (Lyl;)V m_5863_ + 0 o p_131444_ + a (Lvs;)V m_6008_ + 0 o p_131392_ + a (Lyd;)V m_6403_ + 0 o p_131439_ + a (Lwg;)V m_183514_ + 0 o p_195623_ + a (Lxx;)V m_5599_ + 0 o p_131433_ + a (Lwo;)V m_5980_ + 0 o p_131409_ + a (Lyt;)V m_5498_ + 0 o p_131451_ + a (Lxh;)V m_5771_ + 0 o p_131423_ + a (Luz;)V m_7545_ + 0 o p_131376_ + a (Lww;)V m_142747_ + 0 o p_178548_ + a (Lvc;)V m_7685_ + 0 o p_131379_ + a (Lvl;)V m_7257_ + 0 o p_131387_ + a (Lux;)V m_214108_ + 0 o p_237538_ + a (Lxo;)V m_142056_ + 0 o p_178554_ + a (Lyk;)V m_142185_ + 0 o p_178558_ + a (Lxw;)V m_6455_ + 0 o p_131432_ + a (Lyc;)V m_7957_ + 0 o p_131438_ + a (Lys;)V m_6435_ + 0 o p_131450_ + a (Lxg;)V m_6176_ + 0 o p_131422_ + a (Lvt;)V m_7039_ + 0 o p_251057_ + a (Lwp;)V m_8047_ + 0 o p_131410_ + a (Lwx;)V m_213565_ + 0 o p_252308_ + a (Lvd;)V m_264308_ + 0 o p_265211_ + a (Luu;)V m_6482_ + 0 o p_131371_ + a (Lwe;)V m_7704_ + 0 o p_131400_ + a (Lxr;)V m_5612_ + 0 o p_131427_ + a (Lyf;)V m_7519_ + 0 o p_131441_ + a (Lvq;)V m_269082_ + 0 o p_270900_ + a (Lxz;)V m_7277_ + 0 o p_131435_ + a (Lvy;)V m_6905_ + 0 o p_131397_ + a (Lxj;)V m_213672_ + 0 o p_237541_ + a (Lwm;)V m_7410_ + 0 o p_131407_ + a (Lyn;)V m_7183_ + 0 o p_131446_ + a (Lwu;)V m_142234_ + 0 o p_178546_ + a (Lvi;)V m_7443_ + 0 o p_131383_ + a (Lxb;)V m_8076_ + 0 o p_131417_ + a (Lyv;)V m_241155_ + 0 o p_249571_ + a (Lva;)V m_7364_ + 0 o p_131377_ + a (Luv;)V m_7791_ + 0 o p_131372_ + a (Lxq;)V m_6447_ + 0 o p_131426_ + a (Lwf;)V m_7406_ + 0 o p_131401_ + a (Lvj;)V m_7776_ + 0 o p_131385_ + a (Lye;)V m_5582_ + 0 o p_131440_ + a (Lvr;)V m_241037_ + 0 o p_241462_ + a (Lxy;)V m_8048_ + 0 o p_131434_ + a (Lvb;)V m_6773_ + 0 o p_131378_ + a (Lxi;)V m_7553_ + 0 o p_131424_ + a (Lwn;)V m_6503_ + 0 o p_131408_ + a (Lym;)V m_8068_ + 0 o p_131445_ + a (Lxa;)V m_5682_ + 0 o p_131416_ + a (Luy;)V m_5943_ + 0 o p_131375_ + a (Lwv;)V m_142058_ + 0 o p_178547_ + a (Lyu;)V m_7710_ + 0 o p_131452_ + a (Lyh;)V m_141913_ + 0 o p_178556_ + a (Lus;)V m_6771_ + 0 o p_131367_ + a (Lxl;)V m_142612_ + 0 o p_178551_ + a (Lvo;)V m_240695_ + 0 o p_240770_ + a (Lxt;)V m_7299_ + 0 o p_131429_ + a (Lvz;)V m_264143_ + 0 o p_265165_ + a (Lvw;)V m_5729_ + 0 o p_131395_ + a (Lxd;)V m_6476_ + 0 o p_131419_ + a (Lyp;)V m_6235_ + 0 o p_131447_ + a (Lwk;)V m_7330_ + 0 o p_131405_ + a (Lyx;)V m_6327_ + 0 o p_131454_ + a (Lvg;)V m_142766_ + 0 o p_178543_ + a (Lws;)V m_5767_ + 0 o p_131412_ +us net/minecraft/network/protocol/game/ClientboundAddEntityPacket + a f_178559_ + b f_178560_ + c f_131456_ + d f_131457_ + e f_131466_ + f f_131458_ + g f_131459_ + h f_131460_ + i f_131461_ + j f_131462_ + k f_131463_ + l f_131464_ + m f_131465_ + n f_237544_ + o f_131467_ + (Lbfj;I)V + 0 o p_131483_ + 1 o p_131484_ + (Lsf;)V + 0 o p_178562_ + (ILjava/util/UUID;DDDFFLbfn;ILeei;D)V + 0 o p_237546_ + 1 o p_237547_ + 2 o p_237548_ + 3 o p_237549_ + 4 o p_237550_ + 5 o p_237551_ + 6 o p_237552_ + 7 o p_237553_ + 8 o p_237554_ + 9 o p_237555_ + 10 o p_237556_ + (Lbfj;ILgu;)V + 0 o p_237558_ + 1 o p_237559_ + 2 o p_237560_ + (Lbfj;)V + 0 o p_131481_ + a (Lur;)V m_5797_ + 0 o p_131495_ + a (Lsk;)V m_5797_ + 0 o p_131493_ + a ()I m_131496_ + a (Lsf;)V m_5779_ + 0 o p_131498_ + c ()Ljava/util/UUID; m_131499_ + d ()Lbfn; m_131508_ + e ()D m_131500_ + f ()D m_131501_ + g ()D m_131502_ + h ()D m_131503_ + i ()D m_131504_ + j ()D m_131505_ + k ()F m_237566_ + l ()F m_237567_ + m ()F m_237568_ + n ()I m_131509_ +ut net/minecraft/network/protocol/game/ClientboundAddExperienceOrbPacket + a f_131510_ + b f_131511_ + c f_131512_ + d f_131513_ + e f_131514_ + (Lsf;)V + 0 o p_178564_ + (Lbfp;)V + 0 o p_131517_ + a (Lur;)V m_5797_ + 0 o p_131523_ + a (Lsk;)V m_5797_ + 0 o p_131521_ + a ()I m_131524_ + a (Lsf;)V m_5779_ + 0 o p_131526_ + c ()D m_131527_ + d ()D m_131528_ + e ()D m_131529_ + f ()I m_131530_ +uu net/minecraft/network/protocol/game/ClientboundAddPlayerPacket + a f_131587_ + b f_131588_ + c f_131589_ + d f_131590_ + e f_131591_ + f f_131592_ + g f_131593_ + (Lsf;)V + 0 o p_178570_ + (Lbyo;)V + 0 o p_131596_ + a (Lur;)V m_5797_ + 0 o p_131602_ + a (Lsk;)V m_5797_ + 0 o p_131600_ + a ()I m_131603_ + a (Lsf;)V m_5779_ + 0 o p_131605_ + c ()Ljava/util/UUID; m_131606_ + d ()D m_131607_ + e ()D m_131608_ + f ()D m_131609_ + g ()B m_131610_ + h ()B m_131611_ +uv net/minecraft/network/protocol/game/ClientboundAnimatePacket + a f_178583_ + b f_178585_ + c f_178586_ + d f_178587_ + e f_178588_ + f f_131612_ + g f_131613_ + (Lsf;)V + 0 o p_178590_ + (Lbfj;I)V + 0 o p_131616_ + 1 o p_131617_ + a (Lur;)V m_5797_ + 0 o p_131623_ + a (Lsk;)V m_5797_ + 0 o p_131621_ + a ()I m_131624_ + a (Lsf;)V m_5779_ + 0 o p_131626_ + c ()I m_131627_ +uw net/minecraft/network/protocol/game/ClientboundAwardStatsPacket + a f_131628_ + (Lsf;)V + 0 o p_178592_ + (Lit/unimi/dsi/fastutil/objects/Object2IntMap;)V + 0 o p_131631_ + a (Lur;)V m_5797_ + 0 o p_131642_ + a (Lsf;Lamo;)V m_237569_ + static + 0 o p_237570_ + 1 o p_237571_ + a (Lsk;)V m_5797_ + 0 o p_131640_ + a (Lsf;Lamq;)Lamo; m_237572_ + static + 0 o p_237573_ + 1 o p_237574_ + a ()Ljava/util/Map; m_131643_ + a (Lsf;Lsf;)Lamo; m_257122_ + static + 0 o p_258208_ + 1 o p_258209_ + a (Lsf;)V m_5779_ + 0 o p_131645_ +ux net/minecraft/network/protocol/game/ClientboundBlockChangedAckPacket + a f_237578_ + (Lsf;)V + 0 o p_237582_ + (I)V + 0 o f_237578_ + a (Lur;)V m_5797_ + 0 o p_237588_ + a (Lsk;)V m_5797_ + 0 o p_237586_ + a ()I f_237578_ + a (Lsf;)V m_5779_ + 0 o p_237584_ + equals (Ljava/lang/Object;)Z equals + 0 o p_237591_ + hashCode ()I hashCode + toString ()Ljava/lang/String; toString +uy net/minecraft/network/protocol/game/ClientboundBlockDestructionPacket + a f_131671_ + b f_131672_ + c f_131673_ + (Lsf;)V + 0 o p_178606_ + (ILgu;I)V + 0 o p_131676_ + 1 o p_131677_ + 2 o p_131678_ + a (Lur;)V m_5797_ + 0 o p_131684_ + a (Lsk;)V m_5797_ + 0 o p_131682_ + a ()I m_131685_ + a (Lsf;)V m_5779_ + 0 o p_131687_ + c ()Lgu; m_131688_ + d ()I m_131689_ +uz net/minecraft/network/protocol/game/ClientboundBlockEntityDataPacket + a f_131690_ + b f_131691_ + c f_131692_ + (Lsf;)V + 0 o p_178621_ + (Lgu;Lczp;Lqr;)V + 0 o p_195637_ + 1 o p_195638_ + 2 o p_195639_ + a (Lczn;Ljava/util/function/Function;)Luz; m_195642_ + static + 0 o p_195643_ + 1 o p_195644_ + a (Lur;)V m_5797_ + 0 o p_131703_ + a ()Lgu; m_131704_ + a (Lczn;)Luz; m_195640_ + static + 0 o p_195641_ + a (Lsk;)V m_5797_ + 0 o p_131701_ + a (Lsf;)V m_5779_ + 0 o p_131706_ + c ()Lczp; m_195645_ + d ()Lqr; m_131708_ +v net/minecraft/FileUtil + a f_133725_ + b f_179920_ + c f_133726_ + d f_244114_ + ()V + static + ()V + a (Ljava/lang/String;Ljava/lang/String;)Ljava/lang/String; m_274352_ + static + 0 o p_275543_ + 1 o p_275518_ + a (Ljava/nio/file/Path;Ljava/util/List;)Ljava/nio/file/Path; m_245247_ + static + 0 o p_251522_ + 1 o p_251495_ + a (Ljava/lang/String;)Ljava/lang/String; m_179922_ + static + 0 o p_179923_ + a ([Ljava/lang/String;)V m_245411_ + static + 0 o p_249502_ + a (Ljava/nio/file/Path;Ljava/lang/String;Ljava/lang/String;)Ljava/lang/String; m_133730_ + static + 0 o p_133731_ + 1 o p_133732_ + 2 o p_133733_ + a (Ljava/nio/file/Path;)Z m_133728_ + static + 0 o p_133729_ + b (Ljava/nio/file/Path;Ljava/lang/String;Ljava/lang/String;)Ljava/nio/file/Path; m_133736_ + static + 0 o p_133737_ + 1 o p_133738_ + 2 o p_133739_ + b (Ljava/lang/String;Ljava/lang/String;)Ljava/lang/String; m_274618_ + static + 0 o p_275632_ + 1 o p_275544_ + b (Ljava/lang/String;)Ljava/lang/String; m_179924_ + static + 0 o p_179925_ + b (Ljava/nio/file/Path;)Z m_133734_ + static + 0 o p_133735_ + c (Ljava/lang/String;)Lcom/mojang/serialization/DataResult; m_245538_ + static + 0 o p_248866_ + c (Ljava/nio/file/Path;)V m_257659_ + static + 0 o p_259902_ + d (Ljava/lang/String;)Z m_245636_ + static + 0 o p_249814_ + e (Ljava/lang/String;)Ljava/lang/String; m_274372_ + static + 0 o p_275724_ + f (Ljava/lang/String;)Ljava/lang/String; m_274428_ + static + 0 o p_275428_ +va net/minecraft/network/protocol/game/ClientboundBlockEventPacket + a f_131709_ + b f_131710_ + c f_131711_ + d f_131712_ + (Lsf;)V + 0 o p_178623_ + (Lgu;Lcpn;II)V + 0 o p_131715_ + 1 o p_131716_ + 2 o p_131717_ + 3 o p_131718_ + a (Lur;)V m_5797_ + 0 o p_131724_ + a ()Lgu; m_131725_ + a (Lsk;)V m_5797_ + 0 o p_131722_ + a (Lsf;)V m_5779_ + 0 o p_131727_ + c ()I m_131728_ + d ()I m_131729_ + e ()Lcpn; m_131730_ +vb net/minecraft/network/protocol/game/ClientboundBlockUpdatePacket + a f_131731_ + b f_131732_ + (Lsf;)V + 0 o p_178628_ + (Lgu;Ldcb;)V + 0 o p_131738_ + 1 o p_131739_ + (Lcls;Lgu;)V + 0 o p_131735_ + 1 o p_131736_ + a (Lur;)V m_5797_ + 0 o p_131745_ + a (Lsk;)V m_5797_ + 0 o p_131743_ + a ()Ldcb; m_131746_ + a (Lsf;)V m_5779_ + 0 o p_131748_ + c ()Lgu; m_131749_ +vc net/minecraft/network/protocol/game/ClientboundBossEventPacket + a f_178629_ + b f_178630_ + c f_178631_ + d f_131750_ + e f_131751_ + f f_178632_ + ()V + static + (Ljava/util/UUID;Lvc$c;)V + 0 o p_178635_ + 1 o p_178636_ + (Lsf;)V + 0 o p_178638_ + a (Lur;)V m_5797_ + 0 o p_131770_ + a (Lsk;)V m_5797_ + 0 o p_131768_ + a (Lvc$b;)V m_178643_ + 0 o p_178644_ + a (Lsf;)V m_5779_ + 0 o p_131773_ + a (ZZZ)I m_178645_ + static + 0 o p_178646_ + 1 o p_178647_ + 2 o p_178648_ + a (Lbdn;)Lvc; m_178639_ + static + 0 o p_178640_ + a (Ljava/util/UUID;)Lvc; m_178641_ + static + 0 o p_178642_ + b (Lbdn;)Lvc; m_178649_ + static + 0 o p_178650_ + c (Lbdn;)Lvc; m_178651_ + static + 0 o p_178652_ + d (Lbdn;)Lvc; m_178653_ + static + 0 o p_178654_ + e (Lbdn;)Lvc; m_178655_ + static + 0 o p_178656_ +vc$1 net/minecraft/network/protocol/game/ClientboundBossEventPacket$1 + ()V + a (Ljava/util/UUID;Lvc$b;)V m_142282_ + 0 o p_178660_ + 1 o p_178661_ + a ()Lvc$d; m_142659_ + a (Lsf;)V m_142264_ + 0 o p_178663_ +vc$a net/minecraft/network/protocol/game/ClientboundBossEventPacket$AddOperation + a f_178664_ + b f_178665_ + c f_178666_ + d f_178667_ + e f_178668_ + f f_178669_ + g f_178670_ + (Lsf;)V + 0 o p_178674_ + (Lbdn;)V + 0 o p_178672_ + a (Ljava/util/UUID;Lvc$b;)V m_142282_ + 0 o p_178677_ + 1 o p_178678_ + a ()Lvc$d; m_142659_ + a (Lsf;)V m_142264_ + 0 o p_178680_ +vc$b net/minecraft/network/protocol/game/ClientboundBossEventPacket$Handler + a (Ljava/util/UUID;F)V m_142653_ + 0 o p_178682_ + 1 o p_178683_ + a (Ljava/util/UUID;Lsw;)V m_142366_ + 0 o p_178687_ + 1 o p_178688_ + a (Ljava/util/UUID;)V m_142751_ + 0 o p_178681_ + a (Ljava/util/UUID;Lsw;FLbdn$a;Lbdn$b;ZZZ)V m_142107_ + 0 o p_178689_ + 1 o p_178690_ + 2 o p_178691_ + 3 o p_178692_ + 4 o p_178693_ + 5 o p_178694_ + 6 o p_178695_ + 7 o p_178696_ + a (Ljava/util/UUID;Lbdn$a;Lbdn$b;)V m_142358_ + 0 o p_178684_ + 1 o p_178685_ + 2 o p_178686_ + a (Ljava/util/UUID;ZZZ)V m_142513_ + 0 o p_178697_ + 1 o p_178698_ + 2 o p_178699_ + 3 o p_178700_ +vc$c net/minecraft/network/protocol/game/ClientboundBossEventPacket$Operation + a (Ljava/util/UUID;Lvc$b;)V m_142282_ + 0 o p_178701_ + 1 o p_178702_ + a ()Lvc$d; m_142659_ + a (Lsf;)V m_142264_ + 0 o p_178703_ +vc$d net/minecraft/network/protocol/game/ClientboundBossEventPacket$OperationType + a ADD + b REMOVE + c UPDATE_PROGRESS + d UPDATE_NAME + e UPDATE_STYLE + f UPDATE_PROPERTIES + g f_178710_ + h $VALUES + ()V + static + (Ljava/lang/String;ILjava/util/function/Function;)V + 0 o p_178714_ + 1 o p_178715_ + 2 o p_178716_ + a ()[Lvc$d; m_178717_ + static + a (Lsf;)Lvc$c; m_178718_ + static + 0 o p_178719_ + valueOf (Ljava/lang/String;)Lvc$d; valueOf + static + 0 o p_178721_ + values ()[Lvc$d; values + static +vc$e net/minecraft/network/protocol/game/ClientboundBossEventPacket$UpdateNameOperation + a f_178723_ + (Lsf;)V + 0 o p_178725_ + (Lsw;)V + 0 o p_178727_ + a (Ljava/util/UUID;Lvc$b;)V m_142282_ + 0 o p_178730_ + 1 o p_178731_ + a ()Lvc$d; m_142659_ + a (Lsf;)V m_142264_ + 0 o p_178733_ +vc$f net/minecraft/network/protocol/game/ClientboundBossEventPacket$UpdateProgressOperation + a f_178734_ + (Lsf;)V + 0 o p_178738_ + (F)V + 0 o p_178736_ + a (Ljava/util/UUID;Lvc$b;)V m_142282_ + 0 o p_178741_ + 1 o p_178742_ + a ()Lvc$d; m_142659_ + a (Lsf;)V m_142264_ + 0 o p_178744_ +vc$g net/minecraft/network/protocol/game/ClientboundBossEventPacket$UpdatePropertiesOperation + a f_178745_ + b f_178746_ + c f_178747_ + (Lsf;)V + 0 o p_178749_ + (ZZZ)V + 0 o p_178751_ + 1 o p_178752_ + 2 o p_178753_ + a (Ljava/util/UUID;Lvc$b;)V m_142282_ + 0 o p_178756_ + 1 o p_178757_ + a ()Lvc$d; m_142659_ + a (Lsf;)V m_142264_ + 0 o p_178759_ +vc$h net/minecraft/network/protocol/game/ClientboundBossEventPacket$UpdateStyleOperation + a f_178760_ + b f_178761_ + (Lsf;)V + 0 o p_178766_ + (Lbdn$a;Lbdn$b;)V + 0 o p_178763_ + 1 o p_178764_ + a (Ljava/util/UUID;Lvc$b;)V m_142282_ + 0 o p_178769_ + 1 o p_178770_ + a ()Lvc$d; m_142659_ + a (Lsf;)V m_142264_ + 0 o p_178772_ +vd net/minecraft/network/protocol/game/ClientboundBundlePacket + (Ljava/lang/Iterable;)V + 0 o p_265231_ + a (Lur;)V m_5797_ + 0 o p_265490_ + a (Lsk;)V m_5797_ + 0 o p_265794_ +ve net/minecraft/network/protocol/game/ClientboundChangeDifficultyPacket + a f_131805_ + b f_131806_ + (Lsf;)V + 0 o p_178774_ + (Lbdu;Z)V + 0 o p_131809_ + 1 o p_131810_ + a ()Z m_131817_ + a (Lur;)V m_5797_ + 0 o p_131816_ + a (Lsk;)V m_5797_ + 0 o p_131814_ + a (Lsf;)V m_5779_ + 0 o p_131819_ + c ()Lbdu; m_131820_ +vf net/minecraft/network/protocol/game/ClientboundChunksBiomesPacket + a f_273816_ + b f_273892_ + (Lsf;)V + 0 o p_275221_ + (Ljava/util/List;)V + 0 o f_273816_ + a (Lsf;Lvf$a;)V m_274331_ + static + 0 o p_275199_ + 1 o p_275200_ + a ()Ljava/util/List; f_273816_ + a (Lur;)V m_5797_ + 0 o p_275524_ + a (Lsk;)V m_5797_ + 0 o p_275459_ + a (Ljava/util/List;)Lvf; m_274415_ + static + 0 o p_275394_ + a (Lsf;)V m_5779_ + 0 o p_275376_ + equals (Ljava/lang/Object;)Z equals + 0 o p_275299_ + hashCode ()I hashCode + toString ()Ljava/lang/String; toString +vf$a net/minecraft/network/protocol/game/ClientboundChunksBiomesPacket$ChunkBiomeData + a f_273927_ + b f_273848_ + (Lclt;[B)V + 0 o f_273927_ + 1 o f_273848_ + (Lsf;)V + 0 o p_275255_ + (Ldei;)V + 0 o p_275569_ + a (Ldei;)I m_274587_ + static + 0 o p_275324_ + a (Lsf;)V m_274304_ + 0 o p_275467_ + a (Lsf;Ldei;)V m_274308_ + static + 0 o p_275626_ + 1 o p_275570_ + a ()Lsf; m_274543_ + b ()Lclt; f_273927_ + c ()[B f_273848_ + d ()Lio/netty/buffer/ByteBuf; m_274523_ + equals (Ljava/lang/Object;)Z equals + 0 o p_275457_ + hashCode ()I hashCode + toString ()Ljava/lang/String; toString +vg net/minecraft/network/protocol/game/ClientboundClearTitlesPacket + a f_178777_ + (Lsf;)V + 0 o p_178779_ + (Z)V + 0 o p_178781_ + a ()Z m_178788_ + a (Lur;)V m_5797_ + 0 o p_178787_ + a (Lsk;)V m_5797_ + 0 o p_178785_ + a (Lsf;)V m_5779_ + 0 o p_178783_ +vh net/minecraft/network/protocol/game/ClientboundCommandSuggestionsPacket + a f_131842_ + b f_131843_ + (Lsf;)V + 0 o p_178790_ + (ILcom/mojang/brigadier/suggestion/Suggestions;)V + 0 o p_131846_ + 1 o p_131847_ + a (Lsf;Lcom/mojang/brigadier/Message;)V m_237613_ + static + 0 o p_237614_ + 1 o p_237615_ + a (Lur;)V m_5797_ + 0 o p_131853_ + a (Lsk;)V m_5797_ + 0 o p_131851_ + a (Lsf;Lcom/mojang/brigadier/suggestion/Suggestion;)V m_237616_ + static + 0 o p_237617_ + 1 o p_237618_ + a ()I m_131854_ + a (Lcom/mojang/brigadier/context/StringRange;Lsf;)Lcom/mojang/brigadier/suggestion/Suggestion; m_178791_ + static + 0 o p_178792_ + 1 o p_178793_ + a (Lsf;)V m_5779_ + 0 o p_131856_ + c ()Lcom/mojang/brigadier/suggestion/Suggestions; m_131857_ +vi net/minecraft/network/protocol/game/ClientboundCommandsPacket + a f_178797_ + b f_178798_ + c f_178799_ + d f_178800_ + e f_178801_ + f f_178802_ + g f_178803_ + h f_237619_ + i f_237620_ + (Lcom/mojang/brigadier/tree/RootCommandNode;)V + 0 o p_131861_ + (Lsf;)V + 0 o p_178805_ + a (Ljava/util/function/BiPredicate;Ljava/util/List;Lit/unimi/dsi/fastutil/ints/IntSet;I)Z m_237633_ + static + 0 o p_237634_ + 1 o p_237635_ + 2 o p_237636_ + 3 o p_237637_ + a (Lur;)V m_5797_ + 0 o p_131878_ + a (Ljava/util/List;)V m_237628_ + static + 0 o p_237629_ + a (Ldm;)Lcom/mojang/brigadier/tree/RootCommandNode; m_237624_ + 0 o p_237625_ + a (Lsk;)V m_5797_ + 0 o p_131876_ + a (Lsf;)V m_5779_ + 0 o p_131886_ + a (Ljava/util/List;Ljava/util/function/BiPredicate;)V m_237630_ + static + 0 o p_237631_ + 1 o p_237632_ + a (Lcom/mojang/brigadier/tree/CommandNode;Lit/unimi/dsi/fastutil/objects/Object2IntMap;)Lvi$b; m_237621_ + static + 0 o p_237622_ + 1 o p_237623_ + a (Lsf;B)Lvi$e; m_237638_ + static + 0 o p_237639_ + 1 o p_237640_ + a (Lcom/mojang/brigadier/tree/RootCommandNode;)Lit/unimi/dsi/fastutil/objects/Object2IntMap; m_131862_ + static + 0 o p_131863_ + a (Lsf;Lvi$b;)V m_237641_ + static + 0 o p_237642_ + 1 o p_237643_ + a (Lit/unimi/dsi/fastutil/objects/Object2IntMap;)Ljava/util/List; m_237626_ + static + 0 o p_237627_ + b (Lsf;)Lvi$b; m_131887_ + static + 0 o p_131888_ +vi$a net/minecraft/network/protocol/game/ClientboundCommandsPacket$ArgumentNodeStub + a f_237644_ + b f_237645_ + c f_237646_ + (Ljava/lang/String;Lgg$a;Lacq;)V + 0 o p_237650_ + 1 o p_237651_ + 2 o p_237652_ + (Lcom/mojang/brigadier/tree/ArgumentCommandNode;)V + 0 o p_237648_ + a (Lcom/mojang/brigadier/suggestion/SuggestionProvider;)Lacq; m_237653_ + static + 0 o p_237654_ + a (Ldm;)Lcom/mojang/brigadier/builder/ArgumentBuilder; m_213891_ + 0 o p_237656_ + a (Lsf;Lgg$a;)V m_237659_ + static + 0 o p_237660_ + 1 o p_237661_ + a (Lsf;Lgg;Lgg$a;)V m_237662_ + static + 0 o p_237663_ + 1 o p_237664_ + 2 o p_237665_ + a (Lsf;)V m_214206_ + 0 o p_237658_ +vi$b net/minecraft/network/protocol/game/ClientboundCommandsPacket$Entry + a f_237666_ + b f_131890_ + c f_131891_ + d f_131892_ + (Lvi$e;II[I)V + 0 o p_237668_ + 1 o p_237669_ + 2 o p_237670_ + 3 o p_237671_ + a (Lit/unimi/dsi/fastutil/ints/IntSet;)Z m_237672_ + 0 o p_237673_ + a (Lsf;)V m_237674_ + 0 o p_237675_ + b (Lit/unimi/dsi/fastutil/ints/IntSet;)Z m_237676_ + 0 o p_237677_ +vi$c net/minecraft/network/protocol/game/ClientboundCommandsPacket$LiteralNodeStub + a f_237678_ + (Ljava/lang/String;)V + 0 o p_237680_ + a (Ldm;)Lcom/mojang/brigadier/builder/ArgumentBuilder; m_213891_ + 0 o p_237682_ + a (Lsf;)V m_214206_ + 0 o p_237684_ +vi$d net/minecraft/network/protocol/game/ClientboundCommandsPacket$NodeResolver + a f_237685_ + b f_237686_ + c f_237687_ + (Ldm;Ljava/util/List;)V + 0 o p_237689_ + 1 o p_237690_ + a (Lcom/mojang/brigadier/context/CommandContext;)I m_237693_ + static + 0 o p_237694_ + a (I)Lcom/mojang/brigadier/tree/CommandNode; m_237691_ + 0 o p_237692_ +vi$e net/minecraft/network/protocol/game/ClientboundCommandsPacket$NodeStub + a (Ldm;)Lcom/mojang/brigadier/builder/ArgumentBuilder; m_213891_ + 0 o p_237695_ + a (Lsf;)V m_214206_ + 0 o p_237696_ +vj net/minecraft/network/protocol/game/ClientboundContainerClosePacket + a f_131930_ + (Lsf;)V + 0 o p_178820_ + (I)V + 0 o p_131933_ + a (Lur;)V m_5797_ + 0 o p_131939_ + a (Lsk;)V m_5797_ + 0 o p_131937_ + a ()I m_178821_ + a (Lsf;)V m_5779_ + 0 o p_131941_ +vk net/minecraft/network/protocol/game/ClientboundContainerSetContentPacket + a f_131942_ + b f_182701_ + c f_131943_ + d f_182702_ + (Lsf;)V + 0 o p_178823_ + (IILhn;Lcfz;)V + 0 o p_182704_ + 1 o p_182705_ + 2 o p_182706_ + 3 o p_182707_ + a (Lur;)V m_5797_ + 0 o p_131953_ + a (Lsk;)V m_5797_ + 0 o p_131951_ + a ()I m_131954_ + a (Lsf;)V m_5779_ + 0 o p_131956_ + c ()Ljava/util/List; m_131957_ + d ()Lcfz; m_182708_ + e ()I m_182709_ +vl net/minecraft/network/protocol/game/ClientboundContainerSetDataPacket + a f_131958_ + b f_131959_ + c f_131960_ + (Lsf;)V + 0 o p_178825_ + (III)V + 0 o p_131963_ + 1 o p_131964_ + 2 o p_131965_ + a (Lur;)V m_5797_ + 0 o p_131971_ + a (Lsk;)V m_5797_ + 0 o p_131969_ + a ()I m_131972_ + a (Lsf;)V m_5779_ + 0 o p_131974_ + c ()I m_131975_ + d ()I m_131976_ +vm net/minecraft/network/protocol/game/ClientboundContainerSetSlotPacket + a f_178826_ + b f_178827_ + c f_131977_ + d f_182710_ + e f_131978_ + f f_131979_ + (Lsf;)V + 0 o p_178829_ + (IIILcfz;)V + 0 o p_131982_ + 1 o p_182713_ + 2 o p_131983_ + 3 o p_131984_ + a (Lur;)V m_5797_ + 0 o p_131990_ + a (Lsk;)V m_5797_ + 0 o p_131988_ + a ()I m_131991_ + a (Lsf;)V m_5779_ + 0 o p_131993_ + c ()I m_131994_ + d ()Lcfz; m_131995_ + e ()I m_182716_ +vn net/minecraft/network/protocol/game/ClientboundCooldownPacket + a f_131996_ + b f_131997_ + (Lcfu;I)V + 0 o p_132000_ + 1 o p_132001_ + (Lsf;)V + 0 o p_178831_ + a (Lur;)V m_5797_ + 0 o p_132007_ + a (Lsk;)V m_5797_ + 0 o p_132005_ + a ()Lcfu; m_132008_ + a (Lsf;)V m_5779_ + 0 o p_132010_ + c ()I m_132011_ +vo net/minecraft/network/protocol/game/ClientboundCustomChatCompletionsPacket + a f_240661_ + b f_240663_ + (Lsf;)V + 0 o p_243340_ + (Lvo$a;Ljava/util/List;)V + 0 o f_240661_ + 1 o f_240663_ + a ()Lvo$a; f_240661_ + a (Lur;)V m_5797_ + 0 o p_240794_ + a (Lsk;)V m_5797_ + 0 o p_240831_ + a (Lsf;)V m_5779_ + 0 o p_240782_ + c ()Ljava/util/List; f_240663_ + equals (Ljava/lang/Object;)Z equals + 0 o p_240819_ + hashCode ()I hashCode + toString ()Ljava/lang/String; toString +vo$a net/minecraft/network/protocol/game/ClientboundCustomChatCompletionsPacket$Action + a ADD + b REMOVE + c SET + d $VALUES + ()V + static + (Ljava/lang/String;I)V + 0 o p_240789_ + 1 o p_240791_ + a ()[Lvo$a; m_240733_ + static + valueOf (Ljava/lang/String;)Lvo$a; valueOf + static + 0 o p_240779_ + values ()[Lvo$a; values + static +vp net/minecraft/network/protocol/game/ClientboundCustomPayloadPacket + a f_132012_ + b f_132013_ + c f_132014_ + d f_132016_ + e f_132017_ + f f_132018_ + g f_132019_ + h f_132020_ + i f_132021_ + j f_132022_ + k f_132023_ + l f_132024_ + m f_132025_ + n f_132026_ + o f_132027_ + p f_132028_ + q f_178832_ + r f_178833_ + s f_178834_ + t f_132029_ + u f_132030_ + ()V + static + (Lsf;)V + 0 o p_178836_ + (Lacq;Lsf;)V + 0 o p_132034_ + 1 o p_132035_ + a (Lur;)V m_5797_ + 0 o p_132041_ + a ()Lacq; m_132042_ + a (Lsk;)V m_5797_ + 0 o p_132039_ + a (Lsf;)V m_5779_ + 0 o p_132044_ + c ()Lsf; m_132045_ +vq net/minecraft/network/protocol/game/ClientboundDamageEventPacket + a f_268504_ + b f_268584_ + c f_268559_ + d f_268649_ + e f_268712_ + (IIIILjava/util/Optional;)V + 0 o f_268504_ + 1 o f_268584_ + 2 o f_268559_ + 3 o f_268649_ + 4 o f_268712_ + (Lbfj;Lben;)V + 0 o p_270474_ + 1 o p_270781_ + (Lsf;)V + 0 o p_270722_ + a (Lur;)V m_5797_ + 0 o p_270510_ + a (Lcmm;)Lben; m_269591_ + 0 o p_270943_ + a (Lsk;)V m_5797_ + 0 o p_270394_ + a ()I f_268504_ + a (Lsf;Leei;)V m_269243_ + static + 0 o p_270788_ + 1 o p_270196_ + a (Lsf;)V m_5779_ + 0 o p_270971_ + a (Lsf;I)V m_269073_ + static + 0 o p_270812_ + 1 o p_270852_ + b (Lsf;)I m_269135_ + static + 0 o p_270462_ + c (Lsf;)Leei; m_269256_ + static + 0 o p_270813_ + c ()I f_268584_ + d ()I f_268559_ + e ()I f_268649_ + equals (Ljava/lang/Object;)Z equals + 0 o p_270250_ + f ()Ljava/util/Optional; f_268712_ + hashCode ()I hashCode + toString ()Ljava/lang/String; toString +vr net/minecraft/network/protocol/game/ClientboundDeleteChatPacket + a f_240904_ + (Lsf;)V + 0 o p_241415_ + (Lth$a;)V + 0 o f_240904_ + a (Lur;)V m_5797_ + 0 o p_241426_ + a (Lsk;)V m_5797_ + 0 o p_241487_ + a (Lsf;)V m_5779_ + 0 o p_241358_ + a ()Lth$a; f_240904_ + equals (Ljava/lang/Object;)Z equals + 0 o p_241454_ + hashCode ()I hashCode + toString ()Ljava/lang/String; toString +vs net/minecraft/network/protocol/game/ClientboundDisconnectPacket + a f_132075_ + (Lsf;)V + 0 o p_178841_ + (Lsw;)V + 0 o p_132078_ + a (Lur;)V m_5797_ + 0 o p_132084_ + a ()Lsw; m_132085_ + a (Lsk;)V m_5797_ + 0 o p_132082_ + a (Lsf;)V m_5779_ + 0 o p_132087_ +vt net/minecraft/network/protocol/game/ClientboundDisguisedChatPacket + a f_244491_ + b f_244252_ + (Lsf;)V + 0 o p_249018_ + (Lsw;Lss$b;)V + 0 o f_244491_ + 1 o f_244252_ + a (Lur;)V m_5797_ + 0 o p_251953_ + a ()Lsw; f_244491_ + a (Lsk;)V m_5797_ + 0 o p_251255_ + a (Lsf;)V m_5779_ + 0 o p_250975_ + b ()Z m_6588_ + c ()Lss$b; f_244252_ + equals (Ljava/lang/Object;)Z equals + 0 o p_251223_ + hashCode ()I hashCode + toString ()Ljava/lang/String; toString +vu net/minecraft/network/protocol/game/ClientboundEntityEventPacket + a f_132088_ + b f_132089_ + (Lsf;)V + 0 o p_178843_ + (Lbfj;B)V + 0 o p_132092_ + 1 o p_132093_ + a (Lur;)V m_5797_ + 0 o p_132101_ + a (Lsk;)V m_5797_ + 0 o p_132099_ + a (Lcmm;)Lbfj; m_132094_ + 0 o p_132095_ + a ()B m_132102_ + a (Lsf;)V m_5779_ + 0 o p_132104_ +vv net/minecraft/network/protocol/game/ClientboundExplodePacket + a f_132105_ + b f_132106_ + c f_132107_ + d f_132108_ + e f_132109_ + f f_132110_ + g f_132111_ + h f_132112_ + (DDDFLjava/util/List;Leei;)V + 0 o p_132115_ + 1 o p_132116_ + 2 o p_132117_ + 3 o p_132118_ + 4 o p_132119_ + 5 o p_132120_ + (Lsf;)V + 0 o p_178845_ + a (Lur;)V m_5797_ + 0 o p_132126_ + a (IIILsf;Lgu;)V m_178851_ + static + 0 o p_178852_ + 1 o p_178853_ + 2 o p_178854_ + 3 o p_178855_ + 4 o p_178856_ + a ()F m_132127_ + a (Lsk;)V m_5797_ + 0 o p_132124_ + a (Lsf;)V m_5779_ + 0 o p_132129_ + a (IIILsf;)Lgu; m_178846_ + static + 0 o p_178847_ + 1 o p_178848_ + 2 o p_178849_ + 3 o p_178850_ + c ()F m_132130_ + d ()F m_132131_ + e ()D m_132132_ + f ()D m_132133_ + g ()D m_132134_ + h ()F m_132135_ + i ()Ljava/util/List; m_132136_ +vw net/minecraft/network/protocol/game/ClientboundForgetLevelChunkPacket + a f_132137_ + b f_132138_ + (Lsf;)V + 0 o p_178858_ + (II)V + 0 o p_132141_ + 1 o p_132142_ + a (Lur;)V m_5797_ + 0 o p_132148_ + a (Lsk;)V m_5797_ + 0 o p_132146_ + a ()I m_132149_ + a (Lsf;)V m_5779_ + 0 o p_132151_ + c ()I m_132152_ +vx net/minecraft/network/protocol/game/ClientboundGameEventPacket + a f_132153_ + b f_132154_ + c f_132155_ + d f_132156_ + e f_132157_ + f f_132158_ + g f_132159_ + h f_132160_ + i f_132161_ + j f_132162_ + k f_132163_ + l f_132164_ + m f_178859_ + n f_178860_ + o f_178861_ + p f_178862_ + q f_178863_ + r f_132165_ + s f_132166_ + ()V + static + (Lvx$a;F)V + 0 o p_132170_ + 1 o p_132171_ + (Lsf;)V + 0 o p_178865_ + a ()Lvx$a; m_132178_ + a (Lur;)V m_5797_ + 0 o p_132177_ + a (Lsk;)V m_5797_ + 0 o p_132175_ + a (Lsf;)V m_5779_ + 0 o p_132180_ + c ()F m_132181_ +vx$a net/minecraft/network/protocol/game/ClientboundGameEventPacket$Type + a f_132182_ + b f_132183_ + ()V + static + (I)V + 0 o p_132186_ +vy net/minecraft/network/protocol/game/ClientboundHorseScreenOpenPacket + a f_132190_ + b f_132191_ + c f_132192_ + (Lsf;)V + 0 o p_178867_ + (III)V + 0 o p_132195_ + 1 o p_132196_ + 2 o p_132197_ + a (Lur;)V m_5797_ + 0 o p_132203_ + a (Lsk;)V m_5797_ + 0 o p_132201_ + a ()I m_132204_ + a (Lsf;)V m_5779_ + 0 o p_132206_ + c ()I m_132207_ + d ()I m_132208_ +vz net/minecraft/network/protocol/game/ClientboundHurtAnimationPacket + a f_263825_ + b f_263826_ + (Lsf;)V + 0 o p_265181_ + (IF)V + 0 o f_263825_ + 1 o f_263826_ + (Lbfz;)V + 0 o p_265293_ + a (Lur;)V m_5797_ + 0 o p_265654_ + a (Lsk;)V m_5797_ + 0 o p_265547_ + a ()I f_263825_ + a (Lsf;)V m_5779_ + 0 o p_265156_ + c ()F f_263826_ + equals (Ljava/lang/Object;)Z equals + 0 o p_265270_ + hashCode ()I hashCode + toString ()Ljava/lang/String; toString +w net/minecraft/MethodsReturnNonnullByDefault +wa net/minecraft/network/protocol/game/ClientboundInitializeBorderPacket + a f_178868_ + b f_178869_ + c f_178870_ + d f_178871_ + e f_178872_ + f f_178873_ + g f_178874_ + h f_178875_ + (Lsf;)V + 0 o p_178879_ + (Ldds;)V + 0 o p_178877_ + a (Lur;)V m_5797_ + 0 o p_178885_ + a (Lsk;)V m_5797_ + 0 o p_178883_ + a ()D m_178886_ + a (Lsf;)V m_5779_ + 0 o p_178881_ + c ()D m_178887_ + d ()D m_178888_ + e ()D m_178889_ + f ()J m_178890_ + g ()I m_178891_ + h ()I m_178892_ + i ()I m_178893_ +wb net/minecraft/network/protocol/game/ClientboundKeepAlivePacket + a f_132209_ + (Lsf;)V + 0 o p_178895_ + (J)V + 0 o p_132212_ + a ()J m_132219_ + a (Lur;)V m_5797_ + 0 o p_132218_ + a (Lsk;)V m_5797_ + 0 o p_132216_ + a (Lsf;)V m_5779_ + 0 o p_132221_ +wc net/minecraft/network/protocol/game/ClientboundLevelChunkPacketData + a f_195646_ + b f_195647_ + c f_195648_ + d f_195649_ + (Lsf;II)V + 0 o p_195653_ + 1 o p_195654_ + 2 o p_195655_ + (Ldei;)V + 0 o p_195651_ + a (Ldei;)I m_195664_ + static + 0 o p_195665_ + a (Lwc$b;II)V m_195674_ + 0 o p_195675_ + 1 o p_195676_ + 2 o p_195677_ + a (II)Ljava/util/function/Consumer; m_195657_ + 0 o p_195658_ + 1 o p_195659_ + a (Lsf;Ldei;)V m_195668_ + static + 0 o p_195669_ + 1 o p_195670_ + a ()Lsf; m_195656_ + a (Lsf;Lwc$a;)V m_195671_ + static + 0 o p_195672_ + 1 o p_195673_ + a (IILwc$b;)V m_195660_ + 0 o p_195661_ + 1 o p_195662_ + 2 o p_195663_ + a (Lsf;)V m_195666_ + 0 o p_195667_ + b ()Lqr; m_195678_ + c ()Lio/netty/buffer/ByteBuf; m_195679_ +wc$a net/minecraft/network/protocol/game/ClientboundLevelChunkPacketData$BlockEntityInfo + a f_195680_ + b f_195681_ + c f_195682_ + d f_195683_ + (Lsf;)V + 0 o p_195690_ + (IILczp;Lqr;)V + 0 o p_195685_ + 1 o p_195686_ + 2 o p_195687_ + 3 o p_195688_ + a (Lczn;)Lwc$a; m_195691_ + static + 0 o p_195692_ + a (Lsf;)V m_195693_ + 0 o p_195694_ +wc$b net/minecraft/network/protocol/game/ClientboundLevelChunkPacketData$BlockEntityTagOutput + accept (Lgu;Lczp;Lqr;)V m_195695_ + 0 o p_195696_ + 1 o p_195697_ + 2 o p_195698_ +wd net/minecraft/network/protocol/game/ClientboundLevelChunkWithLightPacket + a f_195699_ + b f_195700_ + c f_195701_ + d f_195702_ + (Lsf;)V + 0 o p_195710_ + (Ldei;Ldwt;Ljava/util/BitSet;Ljava/util/BitSet;)V + 0 o p_285290_ + 1 o p_285254_ + 2 o p_285350_ + 3 o p_285304_ + a (Lur;)V m_5797_ + 0 o p_195716_ + a (Lsk;)V m_5797_ + 0 o p_195714_ + a ()I m_195717_ + a (Lsf;)V m_5779_ + 0 o p_195712_ + c ()I m_195718_ + d ()Lwc; m_195719_ + e ()Lwh; m_195720_ +we net/minecraft/network/protocol/game/ClientboundLevelEventPacket + a f_132258_ + b f_132259_ + c f_132260_ + d f_132261_ + (Lsf;)V + 0 o p_178908_ + (ILgu;IZ)V + 0 o p_132264_ + 1 o p_132265_ + 2 o p_132266_ + 3 o p_132267_ + a ()Z m_132274_ + a (Lur;)V m_5797_ + 0 o p_132273_ + a (Lsk;)V m_5797_ + 0 o p_132271_ + a (Lsf;)V m_5779_ + 0 o p_132276_ + c ()I m_132277_ + d ()I m_132278_ + e ()Lgu; m_132279_ +wf net/minecraft/network/protocol/game/ClientboundLevelParticlesPacket + a f_132280_ + b f_132281_ + c f_132282_ + d f_132283_ + e f_132284_ + f f_132285_ + g f_132286_ + h f_132287_ + i f_132288_ + j f_132289_ + (Lit;ZDDDFFFFI)V + 0 o p_132292_ + 1 o p_132293_ + 2 o p_132294_ + 3 o p_132295_ + 4 o p_132296_ + 5 o p_132297_ + 6 o p_132298_ + 7 o p_132299_ + 8 o p_132300_ + 9 o p_132301_ + (Lsf;)V + 0 o p_178910_ + a (Lsf;Liu;)Lit; m_132304_ + 0 o p_132305_ + 1 o p_132306_ + a (Lur;)V m_5797_ + 0 o p_132310_ + a (Lsk;)V m_5797_ + 0 o p_132308_ + a (Lsf;)V m_5779_ + 0 o p_132313_ + a ()Z m_132311_ + c ()D m_132314_ + d ()D m_132315_ + e ()D m_132316_ + f ()F m_132317_ + g ()F m_132318_ + h ()F m_132319_ + i ()F m_132320_ + j ()I m_132321_ + k ()Lit; m_132322_ +wg net/minecraft/network/protocol/game/ClientboundLightUpdatePacket + a f_132323_ + b f_132324_ + c f_195721_ + (Lsf;)V + 0 o p_178918_ + (Lclt;Ldwt;Ljava/util/BitSet;Ljava/util/BitSet;)V + 0 o p_285255_ + 1 o p_285409_ + 2 o p_285387_ + 3 o p_285074_ + a (Lur;)V m_5797_ + 0 o p_132348_ + a (Lsk;)V m_5797_ + 0 o p_132346_ + a ()I m_132349_ + a (Lsf;)V m_5779_ + 0 o p_132351_ + c ()I m_132352_ + d ()Lwh; m_195722_ +wh net/minecraft/network/protocol/game/ClientboundLightUpdatePacketData + a f_195723_ + b f_195724_ + c f_195725_ + d f_195726_ + e f_195727_ + f f_195728_ + (Lsf;II)V + 0 o p_195737_ + 1 o p_195738_ + 2 o p_195739_ + (Lclt;Ldwt;Ljava/util/BitSet;Ljava/util/BitSet;)V + 0 o p_285385_ + 1 o p_285143_ + 2 o p_285253_ + 3 o p_285051_ + a ()Ljava/util/BitSet; m_195740_ + a (Lclt;Ldwt;Lcmv;ILjava/util/BitSet;Ljava/util/BitSet;Ljava/util/List;)V m_195741_ + 0 o p_195742_ + 1 o p_195743_ + 2 o p_195744_ + 3 o p_195745_ + 4 o p_195746_ + 5 o p_195747_ + 6 o p_195748_ + a (Lsf;)V m_195749_ + 0 o p_195750_ + b ()Ljava/util/BitSet; m_195751_ + b (Lsf;)[B m_195752_ + static + 0 o p_195753_ + c (Lsf;)[B m_195755_ + static + 0 o p_195756_ + c ()Ljava/util/List; m_195754_ + d ()Ljava/util/BitSet; m_195757_ + e ()Ljava/util/BitSet; m_195758_ + f ()Ljava/util/List; m_195759_ +wi net/minecraft/network/protocol/game/ClientboundLoginPacket + a f_132360_ + b f_132362_ + c f_132363_ + d f_132364_ + e f_132365_ + f f_132366_ + g f_132367_ + h f_132368_ + i f_132361_ + j f_132369_ + k f_132370_ + l f_195761_ + m f_132371_ + n f_132372_ + o f_132373_ + p f_132374_ + q f_238174_ + r f_286971_ + s f_266064_ + ()V + static + (Lsf;)V + 0 o p_178960_ + (IZLcmj;Lcmj;Ljava/util/Set;Lhs$b;Lacp;Lacp;JIIIZZZZLjava/util/Optional;I)V + 0 o f_132360_ + 1 o f_132362_ + 2 o f_132363_ + 3 o f_132364_ + 4 o f_132365_ + 5 o f_132366_ + 6 o f_132367_ + 7 o f_132368_ + 8 o f_132361_ + 9 o f_132369_ + 10 o f_132370_ + 11 o f_195761_ + 12 o f_132371_ + 13 o f_132372_ + 14 o f_132373_ + 15 o f_132374_ + 16 o f_238174_ + 17 o f_286971_ + a (Lur;)V m_5797_ + 0 o p_132397_ + a (Lsk;)V m_5797_ + 0 o p_132395_ + a ()I f_132360_ + a (Lsf;)V m_5779_ + 0 o p_132400_ + b (Lsf;)Lacp; m_257123_ + static + 0 o p_258210_ + c ()Z f_132362_ + d ()Lcmj; f_132363_ + e ()Lcmj; f_132364_ + equals (Ljava/lang/Object;)Z equals + 0 o p_195784_ + f ()Ljava/util/Set; f_132365_ + g ()Lhs$b; f_132366_ + h ()Lacp; f_132367_ + hashCode ()I hashCode + i ()Lacp; f_132368_ + j ()J f_132361_ + k ()I f_132369_ + l ()I f_132370_ + m ()I f_195761_ + n ()Z f_132371_ + o ()Z f_132372_ + p ()Z f_132373_ + q ()Z f_132374_ + r ()Ljava/util/Optional; f_238174_ + s ()I f_286971_ + toString ()Ljava/lang/String; toString +wj net/minecraft/network/protocol/game/ClientboundMapItemDataPacket + a f_132415_ + b f_132416_ + c f_132418_ + d f_132419_ + e f_178968_ + (IBZLjava/util/Collection;Ldyo$b;)V + 0 o p_178970_ + 1 o p_178971_ + 2 o p_178972_ + 3 o p_178973_ + 4 o p_178974_ + (Lsf;)V + 0 o p_178976_ + a (Ldyo;)V m_132437_ + 0 o p_132438_ + a (Lur;)V m_5797_ + 0 o p_132444_ + a (Lsk;)V m_5797_ + 0 o p_132442_ + a ()I m_132445_ + a (Lsf;)V m_5779_ + 0 o p_132447_ + a (Lsf;Ldyl;)V m_237724_ + static + 0 o p_237725_ + 1 o p_237726_ + a (Lsf;Ljava/util/List;)V m_237727_ + static + 0 o p_237728_ + 1 o p_237729_ + b (Lsf;)Ljava/util/List; m_237730_ + static + 0 o p_237731_ + c ()B m_178982_ + c (Lsf;)Ldyl; m_178980_ + static + 0 o p_178981_ + d ()Z m_178983_ +wk net/minecraft/network/protocol/game/ClientboundMerchantOffersPacket + a f_132448_ + b f_132449_ + c f_132450_ + d f_132451_ + e f_132452_ + f f_132453_ + (Lsf;)V + 0 o p_178985_ + (ILcll;IIZZ)V + 0 o p_132456_ + 1 o p_132457_ + 2 o p_132458_ + 3 o p_132459_ + 4 o p_132460_ + 5 o p_132461_ + a (Lur;)V m_5797_ + 0 o p_132467_ + a (Lsk;)V m_5797_ + 0 o p_132465_ + a ()I m_132468_ + a (Lsf;)V m_5779_ + 0 o p_132470_ + c ()Lcll; m_132471_ + d ()I m_132472_ + e ()I m_132473_ + f ()Z m_132474_ + g ()Z m_132475_ +wl net/minecraft/network/protocol/game/ClientboundMoveEntityPacket + a f_132499_ + b f_132500_ + c f_132501_ + d f_132502_ + e f_132503_ + f f_132504_ + g f_132505_ + h f_132506_ + i f_132507_ + (ISSSBBZZZ)V + 0 o p_178988_ + 1 o p_178989_ + 2 o p_178990_ + 3 o p_178991_ + 4 o p_178992_ + 5 o p_178993_ + 6 o p_178994_ + 7 o p_178995_ + 8 o p_178996_ + a (Lur;)V m_5797_ + 0 o p_132528_ + a (Lsk;)V m_5797_ + 0 o p_132526_ + a (Lcmm;)Lbfj; m_132519_ + 0 o p_132520_ + a ()S m_178997_ + c ()S m_178998_ + d ()S m_178999_ + e ()B m_132531_ + f ()B m_132532_ + g ()Z m_132533_ + h ()Z m_132534_ + i ()Z m_132535_ + toString ()Ljava/lang/String; toString +wl$a net/minecraft/network/protocol/game/ClientboundMoveEntityPacket$Pos + (ISSSZ)V + 0 o p_132539_ + 1 o p_132540_ + 2 o p_132541_ + 3 o p_132542_ + 4 o p_132543_ + a (Lsk;)V m_5797_ + 0 o p_132547_ + a (Lsf;)V m_5779_ + 0 o p_132549_ + b (Lsf;)Lwl$a; m_179000_ + static + 0 o p_179001_ +wl$b net/minecraft/network/protocol/game/ClientboundMoveEntityPacket$PosRot + (ISSSBBZ)V + 0 o p_132552_ + 1 o p_132553_ + 2 o p_132554_ + 3 o p_132555_ + 4 o p_132556_ + 5 o p_132557_ + 6 o p_132558_ + a (Lsk;)V m_5797_ + 0 o p_132562_ + a (Lsf;)V m_5779_ + 0 o p_132564_ + b (Lsf;)Lwl$b; m_179002_ + static + 0 o p_179003_ +wl$c net/minecraft/network/protocol/game/ClientboundMoveEntityPacket$Rot + (IBBZ)V + 0 o p_132567_ + 1 o p_132568_ + 2 o p_132569_ + 3 o p_132570_ + a (Lsk;)V m_5797_ + 0 o p_132574_ + a (Lsf;)V m_5779_ + 0 o p_132576_ + b (Lsf;)Lwl$c; m_179004_ + static + 0 o p_179005_ +wm net/minecraft/network/protocol/game/ClientboundMoveVehiclePacket + a f_132577_ + b f_132578_ + c f_132579_ + d f_132580_ + e f_132581_ + (Lsf;)V + 0 o p_179007_ + (Lbfj;)V + 0 o p_132584_ + a (Lur;)V m_5797_ + 0 o p_132590_ + a (Lsk;)V m_5797_ + 0 o p_132588_ + a ()D m_132591_ + a (Lsf;)V m_5779_ + 0 o p_132593_ + c ()D m_132594_ + d ()D m_132595_ + e ()F m_132596_ + f ()F m_132597_ +wn net/minecraft/network/protocol/game/ClientboundOpenBookPacket + a f_132598_ + (Lsf;)V + 0 o p_179009_ + (Lbdw;)V + 0 o p_132601_ + a (Lur;)V m_5797_ + 0 o p_132607_ + a (Lsk;)V m_5797_ + 0 o p_132605_ + a (Lsf;)V m_5779_ + 0 o p_132610_ + a ()Lbdw; m_132608_ +wo net/minecraft/network/protocol/game/ClientboundOpenScreenPacket + a f_132611_ + b f_132612_ + c f_132613_ + (Lsf;)V + 0 o p_179011_ + (ILcck;Lsw;)V + 0 o p_132616_ + 1 o p_132617_ + 2 o p_132618_ + a (Lur;)V m_5797_ + 0 o p_132624_ + a (Lsk;)V m_5797_ + 0 o p_132622_ + a ()I m_132625_ + a (Lsf;)V m_5779_ + 0 o p_132627_ + c ()Lcck; m_132628_ + d ()Lsw; m_132629_ +wp net/minecraft/network/protocol/game/ClientboundOpenSignEditorPacket + a f_132630_ + b f_276459_ + (Lsf;)V + 0 o p_179013_ + (Lgu;Z)V + 0 o p_277843_ + 1 o p_277748_ + a (Lur;)V m_5797_ + 0 o p_132639_ + a ()Lgu; m_132640_ + a (Lsk;)V m_5797_ + 0 o p_132637_ + a (Lsf;)V m_5779_ + 0 o p_132642_ + c ()Z m_276774_ +wq net/minecraft/network/protocol/game/ClientboundPingPacket + a f_179014_ + (Lsf;)V + 0 o p_179018_ + (I)V + 0 o p_179016_ + a (Lur;)V m_5797_ + 0 o p_179024_ + a (Lsk;)V m_5797_ + 0 o p_179022_ + a ()I m_179025_ + a (Lsf;)V m_5779_ + 0 o p_179020_ +wr net/minecraft/network/protocol/game/ClientboundPlaceGhostRecipePacket + a f_132643_ + b f_132644_ + (Lsf;)V + 0 o p_179027_ + (ILcjc;)V + 0 o p_132647_ + 1 o p_132648_ + a (Lur;)V m_5797_ + 0 o p_132654_ + a ()Lacq; m_132655_ + a (Lsk;)V m_5797_ + 0 o p_132652_ + a (Lsf;)V m_5779_ + 0 o p_132657_ + c ()I m_132658_ +ws net/minecraft/network/protocol/game/ClientboundPlayerAbilitiesPacket + a f_179028_ + b f_179029_ + c f_179030_ + d f_179031_ + e f_132659_ + f f_132660_ + g f_132661_ + h f_132662_ + i f_132663_ + j f_132664_ + (Lsf;)V + 0 o p_179033_ + (Lbyl;)V + 0 o p_132667_ + a ()Z m_132674_ + a (Lur;)V m_5797_ + 0 o p_132673_ + a (Lsk;)V m_5797_ + 0 o p_132671_ + a (Lsf;)V m_5779_ + 0 o p_132676_ + c ()Z m_132677_ + d ()Z m_132678_ + e ()Z m_132679_ + f ()F m_132680_ + g ()F m_132681_ +wt net/minecraft/network/protocol/game/ClientboundPlayerChatPacket + a f_243918_ + b f_244283_ + c f_243836_ + d f_244090_ + e f_243686_ + f f_243744_ + g f_240897_ + (Lsf;)V + 0 o p_237741_ + (Ljava/util/UUID;ILth;Lto$a;Lsw;Lsz;Lss$b;)V + 0 o f_243918_ + 1 o f_244283_ + 2 o f_243836_ + 3 o f_244090_ + 4 o f_243686_ + 5 o f_243744_ + 6 o f_240897_ + a (Lur;)V m_5797_ + 0 o p_237759_ + a (Lsk;)V m_5797_ + 0 o p_237757_ + a (Lsf;)V m_5779_ + 0 o p_237755_ + a ()Ljava/util/UUID; f_243918_ + b ()Z m_6588_ + c ()I f_244283_ + d ()Lth; f_243836_ + e ()Lto$a; f_244090_ + equals (Ljava/lang/Object;)Z equals + 0 o p_237765_ + f ()Lsw; f_243686_ + g ()Lsz; f_243744_ + h ()Lss$b; f_240897_ + hashCode ()I hashCode + toString ()Ljava/lang/String; toString +wu net/minecraft/network/protocol/game/ClientboundPlayerCombatEndPacket + a f_179035_ + (Lsf;)V + 0 o p_179042_ + (I)V + 0 o p_289544_ + (Lbek;)V + 0 o p_179040_ + a (Lur;)V m_5797_ + 0 o p_179048_ + a (Lsk;)V m_5797_ + 0 o p_179046_ + a (Lsf;)V m_5779_ + 0 o p_179044_ +wv net/minecraft/network/protocol/game/ClientboundPlayerCombatEnterPacket + (Lsf;)V + 0 o p_179051_ + ()V + a (Lur;)V m_5797_ + 0 o p_179057_ + a (Lsk;)V m_5797_ + 0 o p_179055_ + a (Lsf;)V m_5779_ + 0 o p_179053_ +ww net/minecraft/network/protocol/game/ClientboundPlayerCombatKillPacket + a f_179058_ + b f_179060_ + (Lsf;)V + 0 o p_179069_ + (ILsw;)V + 0 o p_289572_ + 1 o p_289546_ + a (Lur;)V m_5797_ + 0 o p_179076_ + a (Lsk;)V m_5797_ + 0 o p_179074_ + a ()I m_179078_ + a (Lsf;)V m_5779_ + 0 o p_179072_ + b ()Z m_6588_ + c ()Lsw; m_179079_ +wx net/minecraft/network/protocol/game/ClientboundPlayerInfoRemovePacket + a f_244383_ + (Lsf;)V + 0 o p_248744_ + (Ljava/util/List;)V + 0 o f_244383_ + a ()Ljava/util/List; f_244383_ + a (Lur;)V m_5797_ + 0 o p_250111_ + a (Lsk;)V m_5797_ + 0 o p_252100_ + a (Lsf;)V m_5779_ + 0 o p_249263_ + equals (Ljava/lang/Object;)Z equals + 0 o p_249804_ + hashCode ()I hashCode + toString ()Ljava/lang/String; toString +wy net/minecraft/network/protocol/game/ClientboundPlayerInfoUpdatePacket + a f_243795_ + b f_244436_ + (Ljava/util/EnumSet;Ljava/util/Collection;)V + 0 o p_251739_ + 1 o p_251579_ + (Lwy$a;Laig;)V + 0 o p_251648_ + 1 o p_252273_ + (Lsf;)V + 0 o p_251820_ + a (Lur;)V m_5797_ + 0 o p_249935_ + a (Lsk;)V m_5797_ + 0 o p_251889_ + a (Lsf;)V m_5779_ + 0 o p_249907_ + a ()Ljava/util/EnumSet; m_246097_ + a (Lsf;Lwy$b;)V m_245788_ + 0 o p_251434_ + 1 o p_252303_ + a (Ljava/util/Collection;)Lwy; m_247122_ + static + 0 o p_252314_ + b (Lsf;)Lwy$b; m_246059_ + 0 o p_249950_ + c ()Ljava/util/List; m_246778_ + d ()Ljava/util/List; m_245290_ + toString ()Ljava/lang/String; toString +wy$a net/minecraft/network/protocol/game/ClientboundPlayerInfoUpdatePacket$Action + a ADD_PLAYER + b INITIALIZE_CHAT + c UPDATE_GAME_MODE + d UPDATE_LISTED + e UPDATE_LATENCY + f UPDATE_DISPLAY_NAME + g f_243887_ + h f_243738_ + i $VALUES + ()V + static + (Ljava/lang/String;ILwy$a$a;Lwy$a$b;)V + 0 o p_249930_ + 1 o p_250394_ + 2 o p_249392_ + 3 o p_250487_ + a (Lwy$c;Lsf;)V m_247692_ + static + 0 o p_248840_ + 1 o p_251000_ + a ()[Lwy$a; m_245620_ + static + a (Lsf;Lwy$b;)V m_245686_ + static + 0 o p_251723_ + 1 o p_251870_ + b (Lwy$c;Lsf;)V m_245774_ + static + 0 o p_252263_ + 1 o p_248964_ + b (Lsf;Lwy$b;)V m_245963_ + static + 0 o p_248830_ + 1 o p_251312_ + c (Lwy$c;Lsf;)V m_245523_ + static + 0 o p_248777_ + 1 o p_248837_ + c (Lsf;Lwy$b;)V m_247090_ + static + 0 o p_249355_ + 1 o p_251658_ + d (Lsf;Lwy$b;)V m_247610_ + static + 0 o p_249222_ + 1 o p_250996_ + d (Lwy$c;Lsf;)V m_245650_ + static + 0 o p_251118_ + 1 o p_248955_ + e (Lsf;Lwy$b;)V m_252651_ + static + 0 o p_253470_ + 1 o p_253471_ + e (Lwy$c;Lsf;)V m_252650_ + static + 0 o p_253468_ + 1 o p_253469_ + f (Lsf;Lwy$b;)V m_246581_ + static + 0 o p_252022_ + 1 o p_250357_ + f (Lwy$c;Lsf;)V m_245215_ + static + 0 o p_251116_ + 1 o p_251884_ + valueOf (Ljava/lang/String;)Lwy$a; valueOf + static + 0 o p_248648_ + values ()[Lwy$a; values + static +wy$a$a net/minecraft/network/protocol/game/ClientboundPlayerInfoUpdatePacket$Action$Reader + read (Lwy$c;Lsf;)V m_247322_ + 0 o p_251859_ + 1 o p_249972_ +wy$a$b net/minecraft/network/protocol/game/ClientboundPlayerInfoUpdatePacket$Action$Writer + write (Lsf;Lwy$b;)V m_247205_ + 0 o p_249775_ + 1 o p_249783_ +wy$b net/minecraft/network/protocol/game/ClientboundPlayerInfoUpdatePacket$Entry + a f_244142_ + b f_243688_ + c f_243700_ + d f_244322_ + e f_244162_ + f f_244512_ + g f_244153_ + (Laig;)V + 0 o p_252094_ + (Ljava/util/UUID;Lcom/mojang/authlib/GameProfile;ZILcmj;Lsw;Ltm$a;)V + 0 o f_244142_ + 1 o f_243688_ + 2 o f_243700_ + 3 o f_244322_ + 4 o f_244162_ + 5 o f_244512_ + 6 o f_244153_ + a ()Ljava/util/UUID; f_244142_ + b ()Lcom/mojang/authlib/GameProfile; f_243688_ + c ()Z f_243700_ + d ()I f_244322_ + e ()Lcmj; f_244162_ + equals (Ljava/lang/Object;)Z equals + 0 o p_251152_ + f ()Lsw; f_244512_ + g ()Ltm$a; f_244153_ + hashCode ()I hashCode + toString ()Ljava/lang/String; toString +wy$c net/minecraft/network/protocol/game/ClientboundPlayerInfoUpdatePacket$EntryBuilder + a f_243856_ + b f_244042_ + c f_243955_ + d f_243762_ + e f_244148_ + f f_243869_ + g f_244393_ + (Ljava/util/UUID;)V + 0 o p_251670_ + a ()Lwy$b; m_245615_ +wz net/minecraft/network/protocol/game/ClientboundPlayerLookAtPacket + a f_132768_ + b f_132769_ + c f_132770_ + d f_132771_ + e f_132772_ + f f_132773_ + g f_132774_ + (Lsf;)V + 0 o p_179146_ + (Leb$a;Lbfj;Leb$a;)V + 0 o p_132782_ + 1 o p_132783_ + 2 o p_132784_ + (Leb$a;DDD)V + 0 o p_132777_ + 1 o p_132778_ + 2 o p_132779_ + 3 o p_132780_ + a (Lur;)V m_5797_ + 0 o p_132792_ + a (Lcmm;)Leei; m_132785_ + 0 o p_132786_ + a (Lsk;)V m_5797_ + 0 o p_132790_ + a ()Leb$a; m_132793_ + a (Lsf;)V m_5779_ + 0 o p_132795_ +x net/minecraft/Optionull + ()V + a (Ljava/lang/Object;Ljava/util/function/Function;)Ljava/lang/Object; m_269382_ + static + 0 o p_270441_ + 1 o p_270332_ + a ([I)Z m_269216_ + static + 0 o p_270127_ + a (Ljava/util/Collection;)Ljava/lang/Object; m_269359_ + static + 0 o p_270346_ + a ([J)Z m_269433_ + static + 0 o p_270148_ + a ([C)Z m_269516_ + static + 0 o p_270512_ + a ([D)Z m_269263_ + static + 0 o p_270373_ + a ([F)Z m_269501_ + static + 0 o p_270428_ + a (Ljava/lang/Object;Ljava/util/function/Function;Ljava/util/function/Supplier;)Ljava/lang/Object; m_269543_ + static + 0 o p_270820_ + 1 o p_270536_ + 2 o p_270756_ + a ([Z)Z m_269432_ + static + 0 o p_270403_ + a ([S)Z m_269165_ + static + 0 o p_270712_ + a (Ljava/util/Collection;Ljava/util/function/Supplier;)Ljava/lang/Object; m_269262_ + static + 0 o p_270529_ + 1 o p_270239_ + a (Ljava/lang/Object;Ljava/util/function/Function;Ljava/lang/Object;)Ljava/lang/Object; m_269278_ + static + 0 o p_270215_ + 1 o p_270557_ + 2 o p_270839_ + a ([Ljava/lang/Object;)Z m_269596_ + static + 0 o p_270794_ + a (Ljava/util/Collection;Ljava/lang/Object;)Ljava/lang/Object; m_269248_ + static + 0 o p_270625_ + 1 o p_270960_ + a ([B)Z m_269589_ + static + 0 o p_270775_ +xa net/minecraft/network/protocol/game/ClientboundPlayerPositionPacket + a f_132796_ + b f_132797_ + c f_132798_ + d f_132799_ + e f_132800_ + f f_132801_ + g f_132802_ + (Lsf;)V + 0 o p_179158_ + (DDDFFLjava/util/Set;I)V + 0 o p_275438_ + 1 o p_275354_ + 2 o p_275276_ + 3 o p_275280_ + 4 o p_275203_ + 5 o p_275228_ + 6 o p_275614_ + a (Lur;)V m_5797_ + 0 o p_132817_ + a (Lsk;)V m_5797_ + 0 o p_132815_ + a ()D m_132818_ + a (Lsf;)V m_5779_ + 0 o p_132820_ + c ()D m_132821_ + d ()D m_132822_ + e ()F m_132823_ + f ()F m_132824_ + g ()I m_132825_ + h ()Ljava/util/Set; m_132826_ +xb net/minecraft/network/protocol/game/ClientboundRecipePacket + a f_132849_ + b f_132850_ + c f_132851_ + d f_132852_ + (Lsf;)V + 0 o p_179162_ + (Lxb$a;Ljava/util/Collection;Ljava/util/Collection;Laml;)V + 0 o p_132855_ + 1 o p_132856_ + 2 o p_132857_ + 3 o p_132858_ + a ()Ljava/util/List; m_132865_ + a (Lur;)V m_5797_ + 0 o p_132864_ + a (Lsk;)V m_5797_ + 0 o p_132862_ + a (Lsf;)V m_5779_ + 0 o p_132867_ + c ()Ljava/util/List; m_132868_ + d ()Laml; m_132869_ + e ()Lxb$a; m_132870_ +xb$a net/minecraft/network/protocol/game/ClientboundRecipePacket$State + a INIT + b ADD + c REMOVE + d $VALUES + ()V + static + (Ljava/lang/String;I)V + 0 o p_132877_ + 1 o p_132878_ + a ()[Lxb$a; m_179163_ + static + valueOf (Ljava/lang/String;)Lxb$a; valueOf + static + 0 o p_132880_ + values ()[Lxb$a; values + static +xc net/minecraft/network/protocol/game/ClientboundRemoveEntitiesPacket + a f_182717_ + (Lsf;)V + 0 o p_182721_ + ([I)V + 0 o p_182723_ + (Lit/unimi/dsi/fastutil/ints/IntList;)V + 0 o p_182719_ + a ()Lit/unimi/dsi/fastutil/ints/IntList; m_182730_ + a (Lur;)V m_5797_ + 0 o p_182729_ + a (Lsk;)V m_5797_ + 0 o p_182727_ + a (Lsf;)V m_5779_ + 0 o p_182725_ +xd net/minecraft/network/protocol/game/ClientboundRemoveMobEffectPacket + a f_132895_ + b f_132896_ + (ILbey;)V + 0 o p_132899_ + 1 o p_132900_ + (Lsf;)V + 0 o p_179177_ + a ()Lbey; m_132909_ + a (Lur;)V m_5797_ + 0 o p_132908_ + a (Lsk;)V m_5797_ + 0 o p_132906_ + a (Lcmm;)Lbfj; m_132901_ + 0 o p_132902_ + a (Lsf;)V m_5779_ + 0 o p_132911_ +xe net/minecraft/network/protocol/game/ClientboundResourcePackPacket + a f_179178_ + b f_132912_ + c f_132913_ + d f_179179_ + e f_179180_ + (Lsf;)V + 0 o p_179187_ + (Ljava/lang/String;Ljava/lang/String;ZLsw;)V + 0 o p_179182_ + 1 o p_179183_ + 2 o p_179184_ + 3 o p_179185_ + a (Lur;)V m_5797_ + 0 o p_132923_ + a ()Ljava/lang/String; m_132924_ + a (Lsk;)V m_5797_ + 0 o p_132921_ + a (Lsf;)V m_5779_ + 0 o p_132926_ + c ()Ljava/lang/String; m_132927_ + d ()Z m_179188_ + e ()Lsw; m_179189_ +xf net/minecraft/network/protocol/game/ClientboundRespawnPacket + a f_263551_ + b f_263552_ + c f_263554_ + d f_132928_ + e f_132929_ + f f_132930_ + g f_132931_ + h f_132932_ + i f_132933_ + j f_132934_ + k f_263553_ + l f_238183_ + m f_286981_ + (Lacp;Lacp;JLcmj;Lcmj;ZZBLjava/util/Optional;I)V + 0 o p_287723_ + 1 o p_287745_ + 2 o p_287746_ + 3 o p_287624_ + 4 o p_287780_ + 5 o p_287655_ + 6 o p_287735_ + 7 o p_287694_ + 8 o p_287615_ + 9 o p_287636_ + (Lsf;)V + 0 o p_179191_ + a (B)Z m_263558_ + 0 o p_263573_ + a (Lur;)V m_5797_ + 0 o p_132951_ + a ()Lacp; m_237794_ + a (Lsk;)V m_5797_ + 0 o p_132949_ + a (Lsf;)V m_5779_ + 0 o p_132954_ + c ()Lacp; m_132955_ + d ()J m_132956_ + e ()Lcmj; m_132957_ + f ()Lcmj; m_132958_ + g ()Z m_132959_ + h ()Z m_132960_ + i ()Ljava/util/Optional; m_237785_ + j ()I m_287149_ +xg net/minecraft/network/protocol/game/ClientboundRotateHeadPacket + a f_132963_ + b f_132964_ + (Lsf;)V + 0 o p_179193_ + (Lbfj;B)V + 0 o p_132967_ + 1 o p_132968_ + a (Lur;)V m_5797_ + 0 o p_132976_ + a (Lsk;)V m_5797_ + 0 o p_132974_ + a (Lcmm;)Lbfj; m_132969_ + 0 o p_132970_ + a ()B m_132977_ + a (Lsf;)V m_5779_ + 0 o p_132979_ +xh net/minecraft/network/protocol/game/ClientboundSectionBlocksUpdatePacket + a f_179194_ + b f_132980_ + c f_132981_ + d f_132982_ + (Lsf;)V + 0 o p_179196_ + (Lhx;Lit/unimi/dsi/fastutil/shorts/ShortSet;Ldej;)V + 0 o p_284963_ + 1 o p_285027_ + 2 o p_285414_ + a (Ljava/util/function/BiConsumer;)V m_132992_ + 0 o p_132993_ + a (Lur;)V m_5797_ + 0 o p_132999_ + a (Lsk;)V m_5797_ + 0 o p_132997_ + a (Lsf;)V m_5779_ + 0 o p_133002_ +xi net/minecraft/network/protocol/game/ClientboundSelectAdvancementsTabPacket + a f_133003_ + (Lsf;)V + 0 o p_179198_ + (Lacq;)V + 0 o p_133006_ + a (Lur;)V m_5797_ + 0 o p_133012_ + a ()Lacq; m_133013_ + a (Lsk;)V m_5797_ + 0 o p_133010_ + a (Lsf;)V m_5779_ + 0 o p_133015_ +xj net/minecraft/network/protocol/game/ClientboundServerDataPacket + a f_237795_ + b f_271248_ + c f_242954_ + (Lsf;)V + 0 o p_237799_ + (Lsw;Ljava/util/Optional;Z)V + 0 o p_272598_ + 1 o p_273716_ + 2 o p_273165_ + a (Lur;)V m_5797_ + 0 o p_237809_ + a ()Lsw; m_271805_ + a (Lsk;)V m_5797_ + 0 o p_237807_ + a (Lsf;)V m_5779_ + 0 o p_237805_ + c ()Ljava/util/Optional; m_271815_ + d ()Z m_242957_ +xk net/minecraft/network/protocol/game/ClientboundSetActionBarTextPacket + a f_179199_ + (Lsf;)V + 0 o p_179201_ + (Lsw;)V + 0 o p_179203_ + a (Lur;)V m_5797_ + 0 o p_179209_ + a ()Lsw; m_179210_ + a (Lsk;)V m_5797_ + 0 o p_179207_ + a (Lsf;)V m_5779_ + 0 o p_179205_ +xl net/minecraft/network/protocol/game/ClientboundSetBorderCenterPacket + a f_179211_ + b f_179212_ + (Lsf;)V + 0 o p_179216_ + (Ldds;)V + 0 o p_179214_ + a (Lur;)V m_5797_ + 0 o p_179222_ + a (Lsk;)V m_5797_ + 0 o p_179220_ + a ()D m_179223_ + a (Lsf;)V m_5779_ + 0 o p_179218_ + c ()D m_179224_ +xm net/minecraft/network/protocol/game/ClientboundSetBorderLerpSizePacket + a f_179225_ + b f_179226_ + c f_179227_ + (Lsf;)V + 0 o p_179231_ + (Ldds;)V + 0 o p_179229_ + a (Lur;)V m_5797_ + 0 o p_179237_ + a (Lsk;)V m_5797_ + 0 o p_179235_ + a ()D m_179238_ + a (Lsf;)V m_5779_ + 0 o p_179233_ + c ()D m_179239_ + d ()J m_179240_ +xn net/minecraft/network/protocol/game/ClientboundSetBorderSizePacket + a f_179241_ + (Lsf;)V + 0 o p_179245_ + (Ldds;)V + 0 o p_179243_ + a (Lur;)V m_5797_ + 0 o p_179251_ + a (Lsk;)V m_5797_ + 0 o p_179249_ + a ()D m_179252_ + a (Lsf;)V m_5779_ + 0 o p_179247_ +xo net/minecraft/network/protocol/game/ClientboundSetBorderWarningDelayPacket + a f_179253_ + (Lsf;)V + 0 o p_179257_ + (Ldds;)V + 0 o p_179255_ + a (Lur;)V m_5797_ + 0 o p_179263_ + a (Lsk;)V m_5797_ + 0 o p_179261_ + a ()I m_179264_ + a (Lsf;)V m_5779_ + 0 o p_179259_ +xp net/minecraft/network/protocol/game/ClientboundSetBorderWarningDistancePacket + a f_179265_ + (Lsf;)V + 0 o p_179269_ + (Ldds;)V + 0 o p_179267_ + a (Lur;)V m_5797_ + 0 o p_179275_ + a (Lsk;)V m_5797_ + 0 o p_179273_ + a ()I m_179276_ + a (Lsf;)V m_5779_ + 0 o p_179271_ +xq net/minecraft/network/protocol/game/ClientboundSetCameraPacket + a f_133055_ + (Lsf;)V + 0 o p_179278_ + (Lbfj;)V + 0 o p_133058_ + a (Lur;)V m_5797_ + 0 o p_133066_ + a (Lsk;)V m_5797_ + 0 o p_133064_ + a (Lcmm;)Lbfj; m_133059_ + 0 o p_133060_ + a (Lsf;)V m_5779_ + 0 o p_133068_ +xr net/minecraft/network/protocol/game/ClientboundSetCarriedItemPacket + a f_133069_ + (Lsf;)V + 0 o p_179280_ + (I)V + 0 o p_133072_ + a (Lur;)V m_5797_ + 0 o p_133078_ + a (Lsk;)V m_5797_ + 0 o p_133076_ + a ()I m_133079_ + a (Lsf;)V m_5779_ + 0 o p_133081_ +xs net/minecraft/network/protocol/game/ClientboundSetChunkCacheCenterPacket + a f_133082_ + b f_133083_ + (Lsf;)V + 0 o p_179282_ + (II)V + 0 o p_133086_ + 1 o p_133087_ + a (Lur;)V m_5797_ + 0 o p_133093_ + a (Lsk;)V m_5797_ + 0 o p_133091_ + a ()I m_133094_ + a (Lsf;)V m_5779_ + 0 o p_133096_ + c ()I m_133097_ +xt net/minecraft/network/protocol/game/ClientboundSetChunkCacheRadiusPacket + a f_133098_ + (Lsf;)V + 0 o p_179284_ + (I)V + 0 o p_133101_ + a (Lur;)V m_5797_ + 0 o p_133107_ + a (Lsk;)V m_5797_ + 0 o p_133105_ + a ()I m_133108_ + a (Lsf;)V m_5779_ + 0 o p_133110_ +xu net/minecraft/network/protocol/game/ClientboundSetDefaultSpawnPositionPacket + a f_133111_ + b f_133112_ + (Lsf;)V + 0 o p_179286_ + (Lgu;F)V + 0 o p_133115_ + 1 o p_133116_ + a (Lur;)V m_5797_ + 0 o p_133122_ + a ()Lgu; m_133123_ + a (Lsk;)V m_5797_ + 0 o p_133120_ + a (Lsf;)V m_5779_ + 0 o p_133125_ + c ()F m_133126_ +xv net/minecraft/network/protocol/game/ClientboundSetDisplayObjectivePacket + a f_133127_ + b f_133128_ + (ILefd;)V + 0 o p_133131_ + 1 o p_133132_ + (Lsf;)V + 0 o p_179288_ + a (Lur;)V m_5797_ + 0 o p_133138_ + a (Lsk;)V m_5797_ + 0 o p_133136_ + a ()I m_133139_ + a (Lsf;)V m_5779_ + 0 o p_133141_ + c ()Ljava/lang/String; m_133142_ +xw net/minecraft/network/protocol/game/ClientboundSetEntityDataPacket + a f_252513_ + b f_133143_ + c f_133144_ + (Lsf;)V + 0 o p_179290_ + (ILjava/util/List;)V + 0 o f_133143_ + 1 o f_133144_ + a (Ljava/util/List;Lsf;)V m_252763_ + static + 0 o p_253940_ + 1 o p_253901_ + a (Lur;)V m_5797_ + 0 o p_133155_ + a (Lsk;)V m_5797_ + 0 o p_133153_ + a ()I f_133143_ + a (Lsf;)V m_5779_ + 0 o p_133158_ + b (Lsf;)Ljava/util/List; m_252908_ + static + 0 o p_253726_ + c ()Ljava/util/List; f_133144_ + equals (Ljava/lang/Object;)Z equals + 0 o p_253817_ + hashCode ()I hashCode + toString ()Ljava/lang/String; toString +xx net/minecraft/network/protocol/game/ClientboundSetEntityLinkPacket + a f_133160_ + b f_133161_ + (Lsf;)V + 0 o p_179292_ + (Lbfj;Lbfj;)V + 0 o p_133164_ + 1 o p_133165_ + a (Lur;)V m_5797_ + 0 o p_133171_ + a (Lsk;)V m_5797_ + 0 o p_133169_ + a ()I m_133172_ + a (Lsf;)V m_5779_ + 0 o p_133174_ + c ()I m_133175_ +xy net/minecraft/network/protocol/game/ClientboundSetEntityMotionPacket + a f_133176_ + b f_133177_ + c f_133178_ + d f_133179_ + (Lsf;)V + 0 o p_179294_ + (ILeei;)V + 0 o p_133182_ + 1 o p_133183_ + (Lbfj;)V + 0 o p_133185_ + a (Lur;)V m_5797_ + 0 o p_133191_ + a (Lsk;)V m_5797_ + 0 o p_133189_ + a ()I m_133192_ + a (Lsf;)V m_5779_ + 0 o p_133194_ + c ()I m_133195_ + d ()I m_133196_ + e ()I m_133197_ +xz net/minecraft/network/protocol/game/ClientboundSetEquipmentPacket + a f_179295_ + b f_133198_ + c f_133199_ + (Lsf;)V + 0 o p_179297_ + (ILjava/util/List;)V + 0 o p_133202_ + 1 o p_133203_ + a (Lur;)V m_5797_ + 0 o p_133209_ + a (Lsk;)V m_5797_ + 0 o p_133207_ + a ()I m_133210_ + a (Lsf;)V m_5779_ + 0 o p_133212_ + c ()Ljava/util/List; m_133213_ +y net/minecraft/ReportedException + a f_134758_ + (Lo;)V + 0 o p_134760_ + a ()Lo; m_134761_ + getCause ()Ljava/lang/Throwable; getCause + getMessage ()Ljava/lang/String; getMessage +ya net/minecraft/network/protocol/game/ClientboundSetExperiencePacket + a f_133214_ + b f_133215_ + c f_133216_ + (Lsf;)V + 0 o p_179299_ + (FII)V + 0 o p_133219_ + 1 o p_133220_ + 2 o p_133221_ + a (Lur;)V m_5797_ + 0 o p_133227_ + a ()F m_133228_ + a (Lsk;)V m_5797_ + 0 o p_133225_ + a (Lsf;)V m_5779_ + 0 o p_133230_ + c ()I m_133231_ + d ()I m_133232_ +yb net/minecraft/network/protocol/game/ClientboundSetHealthPacket + a f_133233_ + b f_133234_ + c f_133235_ + (Lsf;)V + 0 o p_179301_ + (FIF)V + 0 o p_133238_ + 1 o p_133239_ + 2 o p_133240_ + a (Lur;)V m_5797_ + 0 o p_133246_ + a ()F m_133247_ + a (Lsk;)V m_5797_ + 0 o p_133244_ + a (Lsf;)V m_5779_ + 0 o p_133249_ + c ()I m_133250_ + d ()F m_133251_ +yc net/minecraft/network/protocol/game/ClientboundSetObjectivePacket + a f_179302_ + b f_179303_ + c f_179304_ + d f_133252_ + e f_133253_ + f f_133254_ + g f_133255_ + (Lsf;)V + 0 o p_179306_ + (Lefd;I)V + 0 o p_133258_ + 1 o p_133259_ + a (Lur;)V m_5797_ + 0 o p_133265_ + a ()Ljava/lang/String; m_133266_ + a (Lsk;)V m_5797_ + 0 o p_133263_ + a (Lsf;)V m_5779_ + 0 o p_133268_ + c ()Lsw; m_133269_ + d ()I m_133270_ + e ()Lefj$a; m_133271_ +yd net/minecraft/network/protocol/game/ClientboundSetPassengersPacket + a f_133272_ + b f_133273_ + (Lsf;)V + 0 o p_179308_ + (Lbfj;)V + 0 o p_133276_ + a (Lur;)V m_5797_ + 0 o p_133282_ + a ()[I m_133283_ + a (Lsk;)V m_5797_ + 0 o p_133280_ + a (Lsf;)V m_5779_ + 0 o p_133285_ + c ()I m_133286_ +ye net/minecraft/network/protocol/game/ClientboundSetPlayerTeamPacket + a f_179309_ + b f_179310_ + c f_179311_ + d f_179312_ + e f_179313_ + f f_179314_ + g f_179315_ + h f_133295_ + i f_133287_ + j f_133294_ + k f_179316_ + (Lsf;)V + 0 o p_179323_ + (Ljava/lang/String;ILjava/util/Optional;Ljava/util/Collection;)V + 0 o p_179318_ + 1 o p_179319_ + 2 o p_179320_ + 3 o p_179321_ + a (Lefe;Z)Lye; m_179332_ + static + 0 o p_179333_ + 1 o p_179334_ + a (Lur;)V m_5797_ + 0 o p_133310_ + a (Lefe;)Lye; m_179326_ + static + 0 o p_179327_ + a (Lsk;)V m_5797_ + 0 o p_133308_ + a ()Lye$a; m_179335_ + a (Lsf;)V m_5779_ + 0 o p_133313_ + a (Lefe;Ljava/lang/String;Lye$a;)Lye; m_179328_ + static + 0 o p_179329_ + 1 o p_179330_ + 2 o p_179331_ + a (I)Z m_179324_ + static + 0 o p_179325_ + b (I)Z m_179336_ + static + 0 o p_179337_ + c ()Lye$a; m_179338_ + d ()Ljava/lang/String; m_133311_ + e ()Ljava/util/Collection; m_133315_ + f ()Ljava/util/Optional; m_179339_ + g ()Ljava/lang/IllegalStateException; m_179340_ +ye$a net/minecraft/network/protocol/game/ClientboundSetPlayerTeamPacket$Action + a ADD + b REMOVE + c $VALUES + ()V + static + (Ljava/lang/String;I)V + 0 o p_179346_ + 1 o p_179347_ + a ()[Lye$a; m_179348_ + static + valueOf (Ljava/lang/String;)Lye$a; valueOf + static + 0 o p_179350_ + values ()[Lye$a; values + static +ye$b net/minecraft/network/protocol/game/ClientboundSetPlayerTeamPacket$Parameters + a f_179352_ + b f_179353_ + c f_179354_ + d f_179355_ + e f_179356_ + f f_179357_ + g f_179358_ + (Lsf;)V + 0 o p_179362_ + (Lefe;)V + 0 o p_179360_ + a ()Lsw; m_179363_ + a (Lsf;)V m_179364_ + 0 o p_179365_ + b ()I m_179366_ + c ()Ln; m_179367_ + d ()Ljava/lang/String; m_179368_ + e ()Ljava/lang/String; m_179369_ + f ()Lsw; m_179370_ + g ()Lsw; m_179371_ +yf net/minecraft/network/protocol/game/ClientboundSetScorePacket + a f_133323_ + b f_133324_ + c f_133325_ + d f_133326_ + (Lsf;)V + 0 o p_179373_ + (Ladg$a;Ljava/lang/String;Ljava/lang/String;I)V + 0 o p_133329_ + 1 o p_133330_ + 2 o p_133331_ + 3 o p_133332_ + a (Lur;)V m_5797_ + 0 o p_133338_ + a ()Ljava/lang/String; m_133339_ + a (Lsk;)V m_5797_ + 0 o p_133336_ + a (Lsf;)V m_5779_ + 0 o p_133341_ + c ()Ljava/lang/String; m_133342_ + d ()I m_133343_ + e ()Ladg$a; m_133344_ +yg net/minecraft/network/protocol/game/ClientboundSetSimulationDistancePacket + a f_195796_ + (Lsf;)V + 0 o p_195800_ + (I)V + 0 o f_195796_ + a (Lur;)V m_5797_ + 0 o p_195806_ + a (Lsk;)V m_5797_ + 0 o p_195804_ + a ()I f_195796_ + a (Lsf;)V m_5779_ + 0 o p_195802_ + equals (Ljava/lang/Object;)Z equals + 0 o p_195809_ + hashCode ()I hashCode + toString ()Ljava/lang/String; toString +yh net/minecraft/network/protocol/game/ClientboundSetSubtitleTextPacket + a f_179374_ + (Lsf;)V + 0 o p_179376_ + (Lsw;)V + 0 o p_179378_ + a (Lur;)V m_5797_ + 0 o p_179384_ + a ()Lsw; m_179385_ + a (Lsk;)V m_5797_ + 0 o p_179382_ + a (Lsf;)V m_5779_ + 0 o p_179380_ +yi net/minecraft/network/protocol/game/ClientboundSetTimePacket + a f_133345_ + b f_133346_ + (Lsf;)V + 0 o p_179387_ + (JJZ)V + 0 o p_133349_ + 1 o p_133350_ + 2 o p_133351_ + a ()J m_133358_ + a (Lur;)V m_5797_ + 0 o p_133357_ + a (Lsk;)V m_5797_ + 0 o p_133355_ + a (Lsf;)V m_5779_ + 0 o p_133360_ + c ()J m_133361_ +yj net/minecraft/network/protocol/game/ClientboundSetTitleTextPacket + a f_179388_ + (Lsf;)V + 0 o p_179390_ + (Lsw;)V + 0 o p_179392_ + a (Lur;)V m_5797_ + 0 o p_179398_ + a ()Lsw; m_179399_ + a (Lsk;)V m_5797_ + 0 o p_179396_ + a (Lsf;)V m_5779_ + 0 o p_179394_ +yk net/minecraft/network/protocol/game/ClientboundSetTitlesAnimationPacket + a f_179400_ + b f_179401_ + c f_179402_ + (Lsf;)V + 0 o p_179408_ + (III)V + 0 o p_179404_ + 1 o p_179405_ + 2 o p_179406_ + a (Lur;)V m_5797_ + 0 o p_179414_ + a (Lsk;)V m_5797_ + 0 o p_179412_ + a ()I m_179415_ + a (Lsf;)V m_5779_ + 0 o p_179410_ + c ()I m_179416_ + d ()I m_179417_ +yl net/minecraft/network/protocol/game/ClientboundSoundEntityPacket + a f_133408_ + b f_133409_ + c f_133410_ + d f_133411_ + e f_133412_ + f f_237829_ + (Lsf;)V + 0 o p_179419_ + (Lhe;Lami;Lbfj;FFJ)V + 0 o p_263513_ + 1 o p_263511_ + 2 o p_263496_ + 3 o p_263519_ + 4 o p_263523_ + 5 o p_263532_ + a ()Lhe; m_263456_ + a (Lsf;Lamg;)V m_263464_ + static + 0 o p_263534_ + 1 o p_263498_ + a (Lur;)V m_5797_ + 0 o p_133425_ + a (Lsk;)V m_5797_ + 0 o p_133423_ + a (Lsf;)V m_5779_ + 0 o p_133428_ + c ()Lami; m_133429_ + d ()I m_133430_ + e ()F m_133431_ + f ()F m_133432_ + g ()J m_237837_ +ym net/minecraft/network/protocol/game/ClientboundSoundPacket + a f_179420_ + b f_133433_ + c f_133434_ + d f_133435_ + e f_133436_ + f f_133437_ + g f_133438_ + h f_133439_ + i f_237838_ + (Lsf;)V + 0 o p_179422_ + (Lhe;Lami;DDDFFJ)V + 0 o p_263366_ + 1 o p_263375_ + 2 o p_263378_ + 3 o p_263367_ + 4 o p_263394_ + 5 o p_263415_ + 6 o p_263399_ + 7 o p_263409_ + a (Lur;)V m_5797_ + 0 o p_133454_ + a (Lsk;)V m_5797_ + 0 o p_133452_ + a (Lsf;)V m_5779_ + 0 o p_133457_ + a ()Lhe; m_263229_ + a (Lsf;Lamg;)V m_263212_ + static + 0 o p_263422_ + 1 o p_263402_ + c ()Lami; m_133458_ + d ()D m_133459_ + e ()D m_133460_ + f ()D m_133461_ + g ()F m_133462_ + h ()F m_133463_ + i ()J m_237848_ +yn net/minecraft/network/protocol/game/ClientboundStopSoundPacket + a f_179423_ + b f_179424_ + c f_133464_ + d f_133465_ + (Lsf;)V + 0 o p_179426_ + (Lacq;Lami;)V + 0 o p_133468_ + 1 o p_133469_ + a (Lur;)V m_5797_ + 0 o p_133475_ + a ()Lacq; m_133476_ + a (Lsk;)V m_5797_ + 0 o p_133473_ + a (Lsf;)V m_5779_ + 0 o p_133478_ + c ()Lami; m_133479_ +yo net/minecraft/network/protocol/game/ClientboundSystemChatPacket + a f_237849_ + b f_240374_ + (Lsf;)V + 0 o p_237852_ + (Lsw;Z)V + 0 o f_237849_ + 1 o f_240374_ + a (Lur;)V m_5797_ + 0 o p_237864_ + a ()Lsw; f_237849_ + a (Lsk;)V m_5797_ + 0 o p_237862_ + a (Lsf;)V m_5779_ + 0 o p_237860_ + b ()Z m_6588_ + c ()Z f_240374_ + equals (Ljava/lang/Object;)Z equals + 0 o p_237868_ + hashCode ()I hashCode + toString ()Ljava/lang/String; toString +yp net/minecraft/network/protocol/game/ClientboundTabListPacket + a f_133480_ + b f_133481_ + (Lsf;)V + 0 o p_179428_ + (Lsw;Lsw;)V + 0 o p_179430_ + 1 o p_179431_ + a (Lur;)V m_5797_ + 0 o p_133488_ + a ()Lsw; m_133489_ + a (Lsk;)V m_5797_ + 0 o p_133486_ + a (Lsf;)V m_5779_ + 0 o p_133491_ + c ()Lsw; m_133492_ +yq net/minecraft/network/protocol/game/ClientboundTagQueryPacket + a f_133493_ + b f_133494_ + (Lsf;)V + 0 o p_179433_ + (ILqr;)V + 0 o p_133497_ + 1 o p_133498_ + a (Lur;)V m_5797_ + 0 o p_133505_ + a (Lsk;)V m_5797_ + 0 o p_133503_ + a ()I m_133506_ + a (Lsf;)V m_5779_ + 0 o p_133508_ + b ()Z m_6588_ + c ()Lqr; m_133509_ +yr net/minecraft/network/protocol/game/ClientboundTakeItemEntityPacket + a f_133510_ + b f_133511_ + c f_133512_ + (Lsf;)V + 0 o p_179435_ + (III)V + 0 o p_133515_ + 1 o p_133516_ + 2 o p_133517_ + a (Lur;)V m_5797_ + 0 o p_133523_ + a (Lsk;)V m_5797_ + 0 o p_133521_ + a ()I m_133524_ + a (Lsf;)V m_5779_ + 0 o p_133526_ + c ()I m_133527_ + d ()I m_133528_ +ys net/minecraft/network/protocol/game/ClientboundTeleportEntityPacket + a f_133529_ + b f_133530_ + c f_133531_ + d f_133532_ + e f_133533_ + f f_133534_ + g f_133535_ + (Lsf;)V + 0 o p_179437_ + (Lbfj;)V + 0 o p_133538_ + a (Lur;)V m_5797_ + 0 o p_133544_ + a (Lsk;)V m_5797_ + 0 o p_133542_ + a ()I m_133545_ + a (Lsf;)V m_5779_ + 0 o p_133547_ + c ()D m_133548_ + d ()D m_133549_ + e ()D m_133550_ + f ()B m_133551_ + g ()B m_133552_ + h ()Z m_133553_ +yt net/minecraft/network/protocol/game/ClientboundUpdateAdvancementsPacket + a f_133554_ + b f_133555_ + c f_133556_ + d f_133557_ + (Lsf;)V + 0 o p_179439_ + (ZLjava/util/Collection;Ljava/util/Set;Ljava/util/Map;)V + 0 o p_133560_ + 1 o p_133561_ + 2 o p_133562_ + 3 o p_133563_ + a (Lsf;Lae$a;)V m_179440_ + static + 0 o p_179441_ + 1 o p_179442_ + a (Lur;)V m_5797_ + 0 o p_133569_ + a (Lsk;)V m_5797_ + 0 o p_133567_ + a ()Ljava/util/Map; m_133570_ + a (Lsf;Lag;)V m_179443_ + static + 0 o p_179444_ + 1 o p_179445_ + a (Lsf;)V m_5779_ + 0 o p_133572_ + c ()Ljava/util/Set; m_133573_ + d ()Ljava/util/Map; m_133574_ + e ()Z m_133575_ +yu net/minecraft/network/protocol/game/ClientboundUpdateAttributesPacket + a f_133576_ + b f_133577_ + (Lsf;)V + 0 o p_179447_ + (ILjava/util/Collection;)V + 0 o p_133580_ + 1 o p_133581_ + a (Lsf;Lbhe;)V m_179448_ + static + 0 o p_179449_ + 1 o p_179450_ + a (Lur;)V m_5797_ + 0 o p_133587_ + a (Lsf;Lyu$a;)V m_257125_ + static + 0 o p_258212_ + 1 o p_258213_ + a (Lsk;)V m_5797_ + 0 o p_133585_ + a ()I m_133588_ + a (Lsf;)V m_5779_ + 0 o p_133590_ + b (Lsf;)Lyu$a; m_257124_ + static + 0 o p_258211_ + c (Lsf;)Lbhe; m_179456_ + static + 0 o p_179457_ + c ()Ljava/util/List; m_133591_ +yu$a net/minecraft/network/protocol/game/ClientboundUpdateAttributesPacket$AttributeSnapshot + a f_133593_ + b f_133594_ + c f_133595_ + (Lbhb;DLjava/util/Collection;)V + 0 o p_179459_ + 1 o p_179460_ + 2 o p_179461_ + a ()Lbhb; m_133601_ + b ()D m_133602_ + c ()Ljava/util/Collection; m_133603_ +yv net/minecraft/network/protocol/game/ClientboundUpdateEnabledFeaturesPacket + a f_244610_ + (Lsf;)V + 0 o p_250545_ + (Ljava/util/Set;)V + 0 o f_244610_ + a (Lur;)V m_5797_ + 0 o p_250317_ + a (Lsk;)V m_5797_ + 0 o p_250862_ + a ()Ljava/util/Set; f_244610_ + a (Lsf;)V m_5779_ + 0 o p_251972_ + equals (Ljava/lang/Object;)Z equals + 0 o p_249622_ + hashCode ()I hashCode + toString ()Ljava/lang/String; toString +yw net/minecraft/network/protocol/game/ClientboundUpdateMobEffectPacket + a f_179462_ + b f_179463_ + c f_179464_ + d f_133604_ + e f_237871_ + f f_133606_ + g f_133607_ + h f_133608_ + i f_237872_ + (Lsf;)V + 0 o p_179466_ + (ILbfa;)V + 0 o p_133611_ + 1 o p_133612_ + a (Lur;)V m_5797_ + 0 o p_133618_ + a (Lsk;)V m_5797_ + 0 o p_133616_ + a ()I m_133622_ + a (Lsf;)V m_5779_ + 0 o p_133621_ + a (Lsf;Lbfa$a;)V m_266133_ + static + 0 o p_266629_ + 1 o p_266630_ + b (Lsf;)Lbfa$a; m_266132_ + static + 0 o p_266628_ + c ()Lbey; m_237878_ + d ()B m_133624_ + e ()I m_133625_ + f ()Z m_133626_ + g ()Z m_133627_ + h ()Z m_133628_ + i ()Lbfa$a; m_237879_ +yx net/minecraft/network/protocol/game/ClientboundUpdateRecipesPacket + a f_133629_ + (Lsf;)V + 0 o p_179468_ + (Ljava/util/Collection;)V + 0 o p_133632_ + a (Lsf;Lcjc;)V m_179469_ + static + 0 o p_179470_ + 1 o p_179471_ + a ()Ljava/util/List; m_133644_ + a (Lacq;)Ljava/lang/IllegalArgumentException; m_133642_ + static + 0 o p_133643_ + a (Lur;)V m_5797_ + 0 o p_133641_ + a (Lsk;)V m_5797_ + 0 o p_133639_ + a (Lsf;)V m_5779_ + 0 o p_133646_ + b (Lsf;)Lcjc; m_133647_ + static + 0 o p_133648_ +yy net/minecraft/network/protocol/game/ClientboundUpdateTagsPacket + a f_133649_ + (Lsf;)V + 0 o p_179475_ + (Ljava/util/Map;)V + 0 o p_179473_ + a (Lur;)V m_5797_ + 0 o p_133658_ + a (Lsf;Lacp;)V m_179479_ + static + 0 o p_179480_ + 1 o p_179481_ + a (Lsk;)V m_5797_ + 0 o p_133656_ + a ()Ljava/util/Map; m_179482_ + a (Lsf;Lano$a;)V m_206652_ + static + 0 o p_206653_ + 1 o p_206654_ + a (Lsf;)V m_5779_ + 0 o p_133661_ + b (Lsf;)Lacp; m_179483_ + static + 0 o p_179484_ +yz net/minecraft/network/protocol/game/DebugEntityNameGenerator + a f_133662_ + b f_133663_ + ()V + static + ()V + a (Lapf;[Ljava/lang/String;)Ljava/lang/String; m_237880_ + static + 0 o p_237881_ + 1 o p_237882_ + a (Ljava/util/UUID;)Ljava/lang/String; m_133668_ + static + 0 o p_133669_ + a (Lbfj;)Ljava/lang/String; m_179486_ + static + 0 o p_179487_ + b (Ljava/util/UUID;)Lapf; m_237883_ + static + 0 o p_237884_ +z net/minecraft/ResourceLocationException + (Ljava/lang/String;)V + 0 o p_135421_ + (Ljava/lang/String;Ljava/lang/Throwable;)V + 0 o p_135423_ + 1 o p_135424_ +za net/minecraft/network/protocol/game/DebugPackets + a f_133672_ + ()V + static + ()V + a (Lcmm;Lbgb;Lbmw;)V m_133699_ + static + 0 o p_133700_ + 1 o p_133701_ + 2 o p_133702_ + a (Lcng;Ldsi;)V m_133711_ + static + 0 o p_133712_ + 1 o p_133713_ + a (Lsf;Lbzv;)V m_237905_ + static + 0 o p_237906_ + 1 o p_237907_ + a (Laif;Ljava/util/Collection;)V m_133688_ + static + 0 o p_133689_ + 1 o p_133690_ + a (Lcmm;Lbgb;Ldxt;F)V m_133703_ + static + 0 o p_133704_ + 1 o p_133705_ + 2 o p_133706_ + 3 o p_133707_ + a (Lbfz;)V m_133695_ + static + 0 o p_133696_ + a (Lbfz;Lsf;)V m_179498_ + static + 0 o p_179499_ + 1 o p_179500_ + a (Laif;Lsf;Lacq;)V m_133691_ + static + 0 o p_133692_ + 1 o p_133693_ + 2 o p_133694_ + a (Lsf;Lbzz;)V m_237908_ + static + 0 o p_237909_ + 1 o p_237910_ + a (Laif;Lgu;Ljava/lang/String;II)V m_133682_ + static + 0 o p_133683_ + 1 o p_133684_ + 2 o p_133685_ + 3 o p_133686_ + 4 o p_133687_ + a (Laif;Lbra;)V m_179489_ + static + 0 o p_179490_ + 1 o p_179491_ + a (Laif;Lgu;)V m_133679_ + static + 0 o p_133680_ + 1 o p_133681_ + a (Lacp;)Ljava/lang/String; m_237885_ + static + 0 o p_237886_ + a (Lcmm;Lgu;Ldcb;Lczk;)V m_179510_ + static + 0 o p_179511_ + 1 o p_179512_ + 2 o p_179513_ + 3 o p_179514_ + a (Lsf;Lboj;)V m_237902_ + static + 0 o p_237903_ + 1 o p_237904_ + a (Lsf;Ljava/lang/String;)V m_237914_ + static + 0 o p_237915_ + 1 o p_237916_ + a (Laif;Lclt;)V m_133676_ + static + 0 o p_133677_ + 1 o p_133678_ + a (Lbfz;J)Ljava/util/List; m_179495_ + static + 0 o p_179496_ + 1 o p_179497_ + a (Lhe;)Z m_237891_ + static + 0 o p_237892_ + a (Lsf;Ldxt;)V m_237911_ + static + 0 o p_237912_ + 1 o p_237913_ + a (Lcmm;Ldgn;)V m_179507_ + static + 0 o p_179508_ + 1 o p_179509_ + a (Ljava/util/List;Ljava/util/UUID;Lit/unimi/dsi/fastutil/objects/Object2IntMap;)V m_237898_ + static + 0 o p_237899_ + 1 o p_237900_ + 2 o p_237901_ + a (Lbrm;)V m_133697_ + static + 0 o p_133698_ + a (Ljava/util/List;Ljava/lang/String;Lboy;Ljava/lang/Integer;)V m_237893_ + static + 0 o p_237894_ + 1 o p_237895_ + 2 o p_237896_ + 3 o p_237897_ + a (Laif;)V m_133674_ + static + 0 o p_133675_ + a (Lcmm;Lgu;)V m_133708_ + static + 0 o p_133709_ + 1 o p_133710_ + a (Laif;Ljava/lang/Object;)Ljava/lang/String; m_179492_ + static + 0 o p_179493_ + 1 o p_179494_ + a (Lcmm;Ldgl;Leei;)V m_237887_ + static + 0 o p_237888_ + 1 o p_237889_ + 2 o p_237890_ + b (Laif;Lgu;)V m_133716_ + static + 0 o p_133717_ + 1 o p_133718_ + b (Lsf;Ldxt;)V m_237917_ + static + 0 o p_237918_ + 1 o p_237919_ + c (Laif;Lgu;)V m_133719_ + static + 0 o p_133720_ + 1 o p_133721_ + d (Laif;Lgu;)V m_133722_ + static + 0 o p_133723_ + 1 o p_133724_ +zb net/minecraft/network/protocol/game/ServerGamePacketListener + a (Lzt;)V m_6946_ + 0 o p_133754_ + a (Laal;)V m_6947_ + 0 o p_133771_ + a (Laaf;)V m_5918_ + 0 o p_133766_ + a (Laah;)V m_7982_ + 0 o p_133767_ + a (Laaj;)V m_5591_ + 0 o p_133769_ + a (Laad;)V m_7502_ + 0 o p_133764_ + a (Lzz;)V m_5938_ + 0 o p_133760_ + a (Lzn;)V m_6557_ + 0 o p_133748_ + a (Laab;)V m_7191_ + 0 o p_133762_ + a (Lzp;)V m_7951_ + 0 o p_133750_ + a (Lzr;)V m_6829_ + 0 o p_133752_ + a (Lzv;)V m_5683_ + 0 o p_133756_ + a (Lzx;)V m_7185_ + 0 o p_133758_ + a (Lzj;)V m_252797_ + 0 o p_254226_ + a (Laau;)V m_5527_ + 0 o p_133780_ + a (Laas;)V m_8019_ + 0 o p_133778_ + a (Lzl;)V m_5617_ + 0 o p_133745_ + a (Lzf;)V m_7477_ + 0 o p_133742_ + a (Lzh;)V m_214047_ + 0 o p_237920_ + a (Laao;)V m_7798_ + 0 o p_133774_ + a (Lzd;)V m_7376_ + 0 o p_133740_ + a (Laaq;)V m_6629_ + 0 o p_133776_ + a (Laaw;)V m_6936_ + 0 o p_133782_ + a (Laay;)V m_5760_ + 0 o p_133784_ + a (Laai;)V m_7411_ + 0 o p_133768_ + a (Lzu;)V m_6449_ + 0 o p_133755_ + a (Laag;)V m_142110_ + 0 o p_179536_ + a (Laam;)V m_6321_ + 0 o p_133772_ + a (Laak;)V m_7529_ + 0 o p_133770_ + a (Lzo;)V m_5914_ + 0 o p_133749_ + a (Laae;)V m_5681_ + 0 o p_133765_ + a (Lzq;)V m_7423_ + 0 o p_133751_ + a (Laac;)V m_6828_ + 0 o p_133763_ + a (Laaa;)V m_7965_ + 0 o p_133761_ + a (Lzs;)V m_7548_ + 0 o p_133753_ + a (Lzy;)V m_5659_ + 0 o p_133759_ + a (Lzw;)V m_7728_ + 0 o p_133757_ + a (Laat;)V m_7424_ + 0 o p_133779_ + a (Laar;)V m_5964_ + 0 o p_133777_ + a (Lzg;)V m_241885_ + 0 o p_242214_ + a (Lzm;)V m_7741_ + 0 o p_133746_ + a (Lzk;)V m_6272_ + 0 o p_133744_ + a (Lzi;)V m_7388_ + 0 o p_133743_ + a (Laan;)V m_5712_ + 0 o p_133773_ + a (Lze;)V m_6780_ + 0 o p_133741_ + a (Laap;)V m_7192_ + 0 o p_133775_ + a (Laav;)V m_7953_ + 0 o p_133781_ + a (Laax;)V m_6371_ + 0 o p_133783_ +zc net/minecraft/network/protocol/game/ServerPacketListener + b ()Z m_201767_ +zd net/minecraft/network/protocol/game/ServerboundAcceptTeleportationPacket + a f_133785_ + (Lsf;)V + 0 o p_179538_ + (I)V + 0 o p_133788_ + a (Lsk;)V m_5797_ + 0 o p_133792_ + a (Lzb;)V m_5797_ + 0 o p_133794_ + a ()I m_133795_ + a (Lsf;)V m_5779_ + 0 o p_133797_ +ze net/minecraft/network/protocol/game/ServerboundBlockEntityTagQuery + a f_133798_ + b f_133799_ + (Lsf;)V + 0 o p_179540_ + (ILgu;)V + 0 o p_133802_ + 1 o p_133803_ + a (Lsk;)V m_5797_ + 0 o p_133807_ + a (Lzb;)V m_5797_ + 0 o p_133809_ + a ()I m_133810_ + a (Lsf;)V m_5779_ + 0 o p_133812_ + c ()Lgu; m_133813_ +zf net/minecraft/network/protocol/game/ServerboundChangeDifficultyPacket + a f_133814_ + (Lsf;)V + 0 o p_179542_ + (Lbdu;)V + 0 o p_133817_ + a (Lsk;)V m_5797_ + 0 o p_133821_ + a (Lzb;)V m_5797_ + 0 o p_133823_ + a ()Lbdu; m_133824_ + a (Lsf;)V m_5779_ + 0 o p_133826_ +zg net/minecraft/network/protocol/game/ServerboundChatAckPacket + a f_244085_ + (Lsf;)V + 0 o p_242339_ + (I)V + 0 o f_244085_ + a (Lsk;)V m_5797_ + 0 o p_242376_ + a (Lzb;)V m_5797_ + 0 o p_242391_ + a ()I f_244085_ + a (Lsf;)V m_5779_ + 0 o p_242345_ + equals (Ljava/lang/Object;)Z equals + 0 o p_242425_ + hashCode ()I hashCode + toString ()Ljava/lang/String; toString +zh net/minecraft/network/protocol/game/ServerboundChatCommandPacket + a f_237922_ + b f_237923_ + c f_240858_ + d f_237924_ + e f_241638_ + (Lsf;)V + 0 o p_237932_ + (Ljava/lang/String;Ljava/time/Instant;JLdw;Ltc$b;)V + 0 o f_237922_ + 1 o f_237923_ + 2 o f_240858_ + 3 o f_237924_ + 4 o f_241638_ + a ()Ljava/lang/String; f_237922_ + a (Lsk;)V m_5797_ + 0 o p_237938_ + a (Lsf;)V m_5779_ + 0 o p_237936_ + a (Lzb;)V m_5797_ + 0 o p_237940_ + c ()Ljava/time/Instant; f_237923_ + d ()J f_240858_ + e ()Ldw; f_237924_ + equals (Ljava/lang/Object;)Z equals + 0 o p_237946_ + f ()Ltc$b; f_241638_ + hashCode ()I hashCode + toString ()Ljava/lang/String; toString +zi net/minecraft/network/protocol/game/ServerboundChatPacket + a f_133827_ + b f_237950_ + c f_240906_ + d f_240898_ + e f_241662_ + (Lsf;)V + 0 o p_179545_ + (Ljava/lang/String;Ljava/time/Instant;JLth;Ltc$b;)V + 0 o f_133827_ + 1 o f_237950_ + 2 o f_240906_ + 3 o f_240898_ + 4 o f_241662_ + a ()Ljava/lang/String; f_133827_ + a (Lsk;)V m_5797_ + 0 o p_133834_ + a (Lsf;)V m_5779_ + 0 o p_133839_ + a (Lzb;)V m_5797_ + 0 o p_133836_ + c ()Ljava/time/Instant; f_237950_ + d ()J f_240906_ + e ()Lth; f_240898_ + equals (Ljava/lang/Object;)Z equals + 0 o p_241485_ + f ()Ltc$b; f_241662_ + hashCode ()I hashCode + toString ()Ljava/lang/String; toString +zj net/minecraft/network/protocol/game/ServerboundChatSessionUpdatePacket + a f_252446_ + (Lsf;)V + 0 o p_254010_ + (Ltm$a;)V + 0 o f_252446_ + a ()Ltm$a; f_252446_ + a (Lsk;)V m_5797_ + 0 o p_254350_ + a (Lzb;)V m_5797_ + 0 o p_253620_ + a (Lsf;)V m_5779_ + 0 o p_253690_ + equals (Ljava/lang/Object;)Z equals + 0 o p_254362_ + hashCode ()I hashCode + toString ()Ljava/lang/String; toString +zk net/minecraft/network/protocol/game/ServerboundClientCommandPacket + a f_133840_ + (Lsf;)V + 0 o p_179547_ + (Lzk$a;)V + 0 o p_133843_ + a ()Lzk$a; m_133850_ + a (Lsk;)V m_5797_ + 0 o p_133847_ + a (Lzb;)V m_5797_ + 0 o p_133849_ + a (Lsf;)V m_5779_ + 0 o p_133852_ +zk$a net/minecraft/network/protocol/game/ServerboundClientCommandPacket$Action + a PERFORM_RESPAWN + b REQUEST_STATS + c $VALUES + ()V + static + (Ljava/lang/String;I)V + 0 o p_133858_ + 1 o p_133859_ + a ()[Lzk$a; m_179548_ + static + valueOf (Ljava/lang/String;)Lzk$a; valueOf + static + 0 o p_133861_ + values ()[Lzk$a; values + static +zl net/minecraft/network/protocol/game/ServerboundClientInformationPacket + a f_179549_ + b f_133863_ + c f_133864_ + d f_133865_ + e f_133866_ + f f_133867_ + g f_133868_ + h f_179550_ + i f_195812_ + (Ljava/lang/String;ILbym;ZILbft;ZZ)V + 0 o f_133863_ + 1 o f_133864_ + 2 o f_133865_ + 3 o f_133866_ + 4 o f_133867_ + 5 o f_133868_ + 6 o f_179550_ + 7 o f_195812_ + (Lsf;)V + 0 o p_179560_ + a ()Ljava/lang/String; f_133863_ + a (Lsk;)V m_5797_ + 0 o p_133880_ + a (Lsf;)V m_5779_ + 0 o p_133884_ + a (Lzb;)V m_5797_ + 0 o p_133882_ + c ()I f_133864_ + d ()Lbym; f_133865_ + e ()Z f_133866_ + equals (Ljava/lang/Object;)Z equals + 0 o p_195827_ + f ()I f_133867_ + g ()Lbft; f_133868_ + h ()Z f_179550_ + hashCode ()I hashCode + i ()Z f_195812_ + toString ()Ljava/lang/String; toString +zm net/minecraft/network/protocol/game/ServerboundCommandSuggestionPacket + a f_133889_ + b f_133890_ + (Lsf;)V + 0 o p_179565_ + (ILjava/lang/String;)V + 0 o p_133893_ + 1 o p_133894_ + a (Lsk;)V m_5797_ + 0 o p_133898_ + a (Lzb;)V m_5797_ + 0 o p_133900_ + a ()I m_133901_ + a (Lsf;)V m_5779_ + 0 o p_133903_ + c ()Ljava/lang/String; m_133904_ +zn net/minecraft/network/protocol/game/ServerboundContainerButtonClickPacket + a f_133923_ + b f_133924_ + (Lsf;)V + 0 o p_179567_ + (II)V + 0 o p_133927_ + 1 o p_133928_ + a (Lsk;)V m_5797_ + 0 o p_133932_ + a (Lzb;)V m_5797_ + 0 o p_133934_ + a ()I m_133935_ + a (Lsf;)V m_5779_ + 0 o p_133937_ + c ()I m_133938_ +zo net/minecraft/network/protocol/game/ServerboundContainerClickPacket + a f_182731_ + b f_133939_ + c f_182732_ + d f_133940_ + e f_133941_ + f f_133944_ + g f_179568_ + h f_179569_ + (IIIILcbo;Lcfz;Lit/unimi/dsi/fastutil/ints/Int2ObjectMap;)V + 0 o p_182734_ + 1 o p_182735_ + 2 o p_182736_ + 3 o p_182737_ + 4 o p_182738_ + 5 o p_182739_ + 6 o p_182740_ + (Lsf;)V + 0 o p_179578_ + a (Lsk;)V m_5797_ + 0 o p_133956_ + a ()I m_133959_ + a (Lsf;)V m_5779_ + 0 o p_133961_ + a (Lzb;)V m_5797_ + 0 o p_133958_ + b (Lsf;)Ljava/lang/Integer; m_179579_ + static + 0 o p_179580_ + c ()I m_133962_ + d ()I m_133963_ + e ()Lcfz; m_179581_ + f ()Lit/unimi/dsi/fastutil/ints/Int2ObjectMap; m_179582_ + g ()Lcbo; m_133966_ + h ()I m_182741_ +zp net/minecraft/network/protocol/game/ServerboundContainerClosePacket + a f_133967_ + (Lsf;)V + 0 o p_179584_ + (I)V + 0 o p_133970_ + a (Lsk;)V m_5797_ + 0 o p_133974_ + a (Lzb;)V m_5797_ + 0 o p_133976_ + a ()I m_179585_ + a (Lsf;)V m_5779_ + 0 o p_133978_ +zq net/minecraft/network/protocol/game/ServerboundCustomPayloadPacket + a f_133979_ + b f_179586_ + c f_133980_ + d f_133981_ + ()V + static + (Lsf;)V + 0 o p_179588_ + (Lacq;Lsf;)V + 0 o p_133985_ + 1 o p_133986_ + a ()Lacq; m_179589_ + a (Lsk;)V m_5797_ + 0 o p_133990_ + a (Lzb;)V m_5797_ + 0 o p_133992_ + a (Lsf;)V m_5779_ + 0 o p_133994_ + c ()Lsf; m_179590_ +zr net/minecraft/network/protocol/game/ServerboundEditBookPacket + a f_182742_ + b f_182743_ + c f_182744_ + d f_182745_ + e f_133997_ + f f_182746_ + g f_182747_ + (Lsf;)V + 0 o p_179592_ + (ILjava/util/List;Ljava/util/Optional;)V + 0 o p_182749_ + 1 o p_182750_ + 2 o p_182751_ + a (Lsf;Ljava/lang/String;)V m_182752_ + static + 0 o p_182753_ + 1 o p_182754_ + a ()Ljava/util/List; m_182755_ + a (Lsk;)V m_5797_ + 0 o p_134006_ + a (Lzb;)V m_5797_ + 0 o p_134008_ + a (Lsf;)V m_5779_ + 0 o p_134011_ + b (Lsf;)Ljava/lang/String; m_182756_ + static + 0 o p_182757_ + b (Lsf;Ljava/lang/String;)V m_182758_ + static + 0 o p_182759_ + 1 o p_182760_ + c (Lsf;)Ljava/lang/String; m_182762_ + static + 0 o p_182763_ + c ()Ljava/util/Optional; m_182761_ + d ()I m_134013_ +zs net/minecraft/network/protocol/game/ServerboundEntityTagQuery + a f_134014_ + b f_134015_ + (Lsf;)V + 0 o p_179594_ + (II)V + 0 o p_134018_ + 1 o p_134019_ + a (Lsk;)V m_5797_ + 0 o p_134023_ + a (Lzb;)V m_5797_ + 0 o p_134025_ + a ()I m_134026_ + a (Lsf;)V m_5779_ + 0 o p_134028_ + c ()I m_134029_ +zt net/minecraft/network/protocol/game/ServerboundInteractPacket + a f_134030_ + b f_134031_ + c f_134034_ + d f_179595_ + ()V + static + (Lsf;)V + 0 o p_179602_ + (IZLzt$a;)V + 0 o p_179598_ + 1 o p_179599_ + 2 o p_179600_ + a ()Z m_134061_ + a (Laif;)Lbfj; m_179603_ + 0 o p_179604_ + a (Lbfj;ZLbdw;)Lzt; m_179608_ + static + 0 o p_179609_ + 1 o p_179610_ + 2 o p_179611_ + a (Lzt$c;)V m_179617_ + 0 o p_179618_ + a (Lbfj;Z)Lzt; m_179605_ + static + 0 o p_179606_ + 1 o p_179607_ + a (Lsk;)V m_5797_ + 0 o p_134053_ + a (Lzb;)V m_5797_ + 0 o p_134055_ + a (Lbfj;ZLbdw;Leei;)Lzt; m_179612_ + static + 0 o p_179613_ + 1 o p_179614_ + 2 o p_179615_ + 3 o p_179616_ + a (Lsf;)V m_5779_ + 0 o p_134058_ +zt$1 net/minecraft/network/protocol/game/ServerboundInteractPacket$1 + ()V + a ()Lzt$b; m_142249_ + a (Lzt$c;)V m_142457_ + 0 o p_179624_ + a (Lsf;)V m_142450_ + 0 o p_179622_ +zt$a net/minecraft/network/protocol/game/ServerboundInteractPacket$Action + a ()Lzt$b; m_142249_ + a (Lzt$c;)V m_142457_ + 0 o p_179626_ + a (Lsf;)V m_142450_ + 0 o p_179625_ +zt$b net/minecraft/network/protocol/game/ServerboundInteractPacket$ActionType + a INTERACT + b ATTACK + c INTERACT_AT + d f_179630_ + e $VALUES + ()V + static + (Ljava/lang/String;ILjava/util/function/Function;)V + 0 o p_179634_ + 1 o p_179635_ + 2 o p_179636_ + a ()[Lzt$b; m_179637_ + static + a (Lsf;)Lzt$a; m_179638_ + static + 0 o p_179639_ + valueOf (Ljava/lang/String;)Lzt$b; valueOf + static + 0 o p_179641_ + values ()[Lzt$b; values + static +zt$c net/minecraft/network/protocol/game/ServerboundInteractPacket$Handler + a (Lbdw;)V m_142299_ + 0 o p_179643_ + a (Lbdw;Leei;)V m_142143_ + 0 o p_179644_ + 1 o p_179645_ + a ()V m_141994_ +zt$d net/minecraft/network/protocol/game/ServerboundInteractPacket$InteractionAction + a f_179646_ + (Lsf;)V + 0 o p_179650_ + (Lbdw;)V + 0 o p_179648_ + a ()Lzt$b; m_142249_ + a (Lzt$c;)V m_142457_ + 0 o p_179655_ + a (Lsf;)V m_142450_ + 0 o p_179653_ +zt$e net/minecraft/network/protocol/game/ServerboundInteractPacket$InteractionAtLocationAction + a f_179656_ + b f_179657_ + (Lsf;)V + 0 o p_179662_ + (Lbdw;Leei;)V + 0 o p_179659_ + 1 o p_179660_ + a ()Lzt$b; m_142249_ + a (Lzt$c;)V m_142457_ + 0 o p_179667_ + a (Lsf;)V m_142450_ + 0 o p_179665_ +zu net/minecraft/network/protocol/game/ServerboundJigsawGeneratePacket + a f_134073_ + b f_134074_ + c f_134075_ + (Lsf;)V + 0 o p_179669_ + (Lgu;IZ)V + 0 o p_134078_ + 1 o p_134079_ + 2 o p_134080_ + a ()Lgu; m_134087_ + a (Lsk;)V m_5797_ + 0 o p_134084_ + a (Lzb;)V m_5797_ + 0 o p_134086_ + a (Lsf;)V m_5779_ + 0 o p_134089_ + c ()I m_134090_ + d ()Z m_134091_ +zv net/minecraft/network/protocol/game/ServerboundKeepAlivePacket + a f_134092_ + (Lsf;)V + 0 o p_179671_ + (J)V + 0 o p_134095_ + a ()J m_134102_ + a (Lsk;)V m_5797_ + 0 o p_134099_ + a (Lzb;)V m_5797_ + 0 o p_134101_ + a (Lsf;)V m_5779_ + 0 o p_134104_ +zw net/minecraft/network/protocol/game/ServerboundLockDifficultyPacket + a f_134105_ + (Lsf;)V + 0 o p_179673_ + (Z)V + 0 o p_134108_ + a ()Z m_134115_ + a (Lsk;)V m_5797_ + 0 o p_134112_ + a (Lzb;)V m_5797_ + 0 o p_134114_ + a (Lsf;)V m_5779_ + 0 o p_134117_ +zx net/minecraft/network/protocol/game/ServerboundMovePlayerPacket + a f_134118_ + b f_134119_ + c f_134120_ + d f_134121_ + e f_134122_ + f f_134123_ + g f_134124_ + h f_134125_ + (DDDFFZZZ)V + 0 o p_179675_ + 1 o p_179676_ + 2 o p_179677_ + 3 o p_179678_ + 4 o p_179679_ + 5 o p_179680_ + 6 o p_179681_ + 7 o p_179682_ + a (D)D m_134129_ + 0 o p_134130_ + a ()Z m_134139_ + a (F)F m_134131_ + 0 o p_134132_ + a (Lsk;)V m_5797_ + 0 o p_134136_ + a (Lzb;)V m_5797_ + 0 o p_134138_ + b (D)D m_134140_ + 0 o p_134141_ + b (F)F m_134142_ + 0 o p_134143_ + c ()Z m_179683_ + c (D)D m_134146_ + 0 o p_134147_ + d ()Z m_179684_ +zx$a net/minecraft/network/protocol/game/ServerboundMovePlayerPacket$Pos + (DDDZ)V + 0 o p_134150_ + 1 o p_134151_ + 2 o p_134152_ + 3 o p_134153_ + a (Lsk;)V m_5797_ + 0 o p_134157_ + a (Lsf;)V m_5779_ + 0 o p_134159_ + b (Lsf;)Lzx$a; m_179685_ + static + 0 o p_179686_ +zx$b net/minecraft/network/protocol/game/ServerboundMovePlayerPacket$PosRot + (DDDFFZ)V + 0 o p_134162_ + 1 o p_134163_ + 2 o p_134164_ + 3 o p_134165_ + 4 o p_134166_ + 5 o p_134167_ + a (Lsk;)V m_5797_ + 0 o p_134171_ + a (Lsf;)V m_5779_ + 0 o p_134173_ + b (Lsf;)Lzx$b; m_179687_ + static + 0 o p_179688_ +zx$c net/minecraft/network/protocol/game/ServerboundMovePlayerPacket$Rot + (FFZ)V + 0 o p_134176_ + 1 o p_134177_ + 2 o p_134178_ + a (Lsk;)V m_5797_ + 0 o p_134182_ + a (Lsf;)V m_5779_ + 0 o p_134184_ + b (Lsf;)Lzx$c; m_179689_ + static + 0 o p_179690_ +zx$d net/minecraft/network/protocol/game/ServerboundMovePlayerPacket$StatusOnly + (Z)V + 0 o p_179692_ + a (Lsk;)V m_5797_ + 0 o p_179696_ + a (Lsf;)V m_5779_ + 0 o p_179694_ + b (Lsf;)Lzx$d; m_179697_ + static + 0 o p_179698_ +zy net/minecraft/network/protocol/game/ServerboundMoveVehiclePacket + a f_134185_ + b f_134186_ + c f_134187_ + d f_134188_ + e f_134189_ + (Lsf;)V + 0 o p_179700_ + (Lbfj;)V + 0 o p_134192_ + a (Lsk;)V m_5797_ + 0 o p_134196_ + a (Lzb;)V m_5797_ + 0 o p_134198_ + a ()D m_134199_ + a (Lsf;)V m_5779_ + 0 o p_134201_ + c ()D m_134202_ + d ()D m_134203_ + e ()F m_134204_ + f ()F m_134205_ +zz net/minecraft/network/protocol/game/ServerboundPaddleBoatPacket + a f_134206_ + b f_134207_ + (Lsf;)V + 0 o p_179702_ + (ZZ)V + 0 o p_134210_ + 1 o p_134211_ + a ()Z m_134218_ + a (Lsk;)V m_5797_ + 0 o p_134215_ + a (Lzb;)V m_5797_ + 0 o p_134217_ + a (Lsf;)V m_5779_ + 0 o p_134220_ + c ()Z m_134221_ diff --git a/build/resources/main/META-INF/mods.toml b/build/resources/main/META-INF/mods.toml new file mode 100644 index 000000000..af9cfdba9 --- /dev/null +++ b/build/resources/main/META-INF/mods.toml @@ -0,0 +1,28 @@ +modLoader="javafml" +loaderVersion="[47,)" +license="Not specified" + +[[mods]] +modId="custom_ore_gen" +version="1.0.0" +displayName="custom_ore_gen" +displayURL="https://lanro.eu" +credits="Created using mod maker MCreator - https://mcreator.net/about" +authors="Aulyrius cr\u00E9e via MCreator" +description="Changement de la distribution des ressources sur Minecraft, ne pas utilis\u00E9 seul sans KubeJS" + +# Start of user code block mod configuration +# End of user code block mod configuration + +[[dependencies.custom_ore_gen]] + modId="minecraft" + mandatory=true + versionRange="[1.20.1]" + ordering="AFTER" + side="BOTH" + + + + +# Start of user code block dependencies configuration +# End of user code block dependencies configuration \ No newline at end of file diff --git a/build/resources/main/assets/custom_ore_gen/blockstates/concentratedcoalore.json b/build/resources/main/assets/custom_ore_gen/blockstates/concentratedcoalore.json new file mode 100644 index 000000000..c12aa0eba --- /dev/null +++ b/build/resources/main/assets/custom_ore_gen/blockstates/concentratedcoalore.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "custom_ore_gen:block/concentratedcoalore" + } + } +} \ No newline at end of file diff --git a/build/resources/main/assets/custom_ore_gen/blockstates/concentrateddiamondore.json b/build/resources/main/assets/custom_ore_gen/blockstates/concentrateddiamondore.json new file mode 100644 index 000000000..7abf70c64 --- /dev/null +++ b/build/resources/main/assets/custom_ore_gen/blockstates/concentrateddiamondore.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "custom_ore_gen:block/concentrateddiamondore" + } + } +} \ No newline at end of file diff --git a/build/resources/main/assets/custom_ore_gen/blockstates/copperhighore.json b/build/resources/main/assets/custom_ore_gen/blockstates/copperhighore.json new file mode 100644 index 000000000..bc9248efc --- /dev/null +++ b/build/resources/main/assets/custom_ore_gen/blockstates/copperhighore.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "custom_ore_gen:block/copperhighore" + } + } +} \ No newline at end of file diff --git a/build/resources/main/assets/custom_ore_gen/blockstates/copperlowerore.json b/build/resources/main/assets/custom_ore_gen/blockstates/copperlowerore.json new file mode 100644 index 000000000..e0924c395 --- /dev/null +++ b/build/resources/main/assets/custom_ore_gen/blockstates/copperlowerore.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "custom_ore_gen:block/copperlowerore" + } + } +} \ No newline at end of file diff --git a/build/resources/main/assets/custom_ore_gen/blockstates/deepslateironore.json b/build/resources/main/assets/custom_ore_gen/blockstates/deepslateironore.json new file mode 100644 index 000000000..5243b74a6 --- /dev/null +++ b/build/resources/main/assets/custom_ore_gen/blockstates/deepslateironore.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "custom_ore_gen:block/deepslateironore" + } + } +} \ No newline at end of file diff --git a/build/resources/main/assets/custom_ore_gen/blockstates/deepslatelapisore.json b/build/resources/main/assets/custom_ore_gen/blockstates/deepslatelapisore.json new file mode 100644 index 000000000..a6a701a05 --- /dev/null +++ b/build/resources/main/assets/custom_ore_gen/blockstates/deepslatelapisore.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "custom_ore_gen:block/deepslatelapisore" + } + } +} \ No newline at end of file diff --git a/build/resources/main/assets/custom_ore_gen/blockstates/deepslatepuregoldenore.json b/build/resources/main/assets/custom_ore_gen/blockstates/deepslatepuregoldenore.json new file mode 100644 index 000000000..03a32e184 --- /dev/null +++ b/build/resources/main/assets/custom_ore_gen/blockstates/deepslatepuregoldenore.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "custom_ore_gen:block/deepslatepuregoldenore" + } + } +} \ No newline at end of file diff --git a/build/resources/main/assets/custom_ore_gen/blockstates/deepslateredstoneore.json b/build/resources/main/assets/custom_ore_gen/blockstates/deepslateredstoneore.json new file mode 100644 index 000000000..c2e134856 --- /dev/null +++ b/build/resources/main/assets/custom_ore_gen/blockstates/deepslateredstoneore.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "custom_ore_gen:block/deepslateredstoneore" + } + } +} \ No newline at end of file diff --git a/build/resources/main/assets/custom_ore_gen/blockstates/deepslatesharddiamondore.json b/build/resources/main/assets/custom_ore_gen/blockstates/deepslatesharddiamondore.json new file mode 100644 index 000000000..ddacd57bc --- /dev/null +++ b/build/resources/main/assets/custom_ore_gen/blockstates/deepslatesharddiamondore.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "custom_ore_gen:block/deepslatesharddiamondore" + } + } +} \ No newline at end of file diff --git a/build/resources/main/assets/custom_ore_gen/blockstates/highemeraldore.json b/build/resources/main/assets/custom_ore_gen/blockstates/highemeraldore.json new file mode 100644 index 000000000..af051b439 --- /dev/null +++ b/build/resources/main/assets/custom_ore_gen/blockstates/highemeraldore.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "custom_ore_gen:block/highemeraldore" + } + } +} \ No newline at end of file diff --git a/build/resources/main/assets/custom_ore_gen/blockstates/ironore.json b/build/resources/main/assets/custom_ore_gen/blockstates/ironore.json new file mode 100644 index 000000000..f814632bc --- /dev/null +++ b/build/resources/main/assets/custom_ore_gen/blockstates/ironore.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "custom_ore_gen:block/ironore" + } + } +} \ No newline at end of file diff --git a/build/resources/main/assets/custom_ore_gen/blockstates/lapisore.json b/build/resources/main/assets/custom_ore_gen/blockstates/lapisore.json new file mode 100644 index 000000000..50c07ae1f --- /dev/null +++ b/build/resources/main/assets/custom_ore_gen/blockstates/lapisore.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "custom_ore_gen:block/lapisore" + } + } +} \ No newline at end of file diff --git a/build/resources/main/assets/custom_ore_gen/blockstates/loweremeraldore.json b/build/resources/main/assets/custom_ore_gen/blockstates/loweremeraldore.json new file mode 100644 index 000000000..c7d0ffee5 --- /dev/null +++ b/build/resources/main/assets/custom_ore_gen/blockstates/loweremeraldore.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "custom_ore_gen:block/loweremeraldore" + } + } +} \ No newline at end of file diff --git a/build/resources/main/assets/custom_ore_gen/blockstates/puregoldenore.json b/build/resources/main/assets/custom_ore_gen/blockstates/puregoldenore.json new file mode 100644 index 000000000..2e3297e08 --- /dev/null +++ b/build/resources/main/assets/custom_ore_gen/blockstates/puregoldenore.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "custom_ore_gen:block/puregoldenore" + } + } +} \ No newline at end of file diff --git a/build/resources/main/assets/custom_ore_gen/blockstates/redstoneore.json b/build/resources/main/assets/custom_ore_gen/blockstates/redstoneore.json new file mode 100644 index 000000000..5890b35e6 --- /dev/null +++ b/build/resources/main/assets/custom_ore_gen/blockstates/redstoneore.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "custom_ore_gen:block/redstoneore" + } + } +} \ No newline at end of file diff --git a/build/resources/main/assets/custom_ore_gen/blockstates/sharddiamondblockore.json b/build/resources/main/assets/custom_ore_gen/blockstates/sharddiamondblockore.json new file mode 100644 index 000000000..0ac046486 --- /dev/null +++ b/build/resources/main/assets/custom_ore_gen/blockstates/sharddiamondblockore.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "custom_ore_gen:block/sharddiamondblockore" + } + } +} \ No newline at end of file diff --git a/build/resources/main/assets/custom_ore_gen/lang/en_us.json b/build/resources/main/assets/custom_ore_gen/lang/en_us.json new file mode 100644 index 000000000..819055e7d --- /dev/null +++ b/build/resources/main/assets/custom_ore_gen/lang/en_us.json @@ -0,0 +1,24 @@ +{ + "block.custom_ore_gen.lapisore": "Lapis ore", + "block.custom_ore_gen.sharddiamondblockore": "Shard diamond block ore", + "block.custom_ore_gen.concentratedcoalore": "Concentrated coal ore", + "block.custom_ore_gen.ironore": "Iron ore", + "block.custom_ore_gen.redstoneore": "Redstone ore", + "block.custom_ore_gen.deepslatelapisore": "Deepslate lapis ore", + "item.custom_ore_gen.sharddiamondpickaxe": "Shard diamond pickaxe", + "item.custom_ore_gen.diamondshard.description_0": "Diamond sparkle, to create tools or to create a diamond ", + "block.custom_ore_gen.copperhighore": "Copper high ore", + "block.custom_ore_gen.copperlowerore": "deepslate copper ore", + "block.custom_ore_gen.loweremeraldore": "Loweremeraldore", + "block.custom_ore_gen.deepslateredstoneore": "Deepslate redstone ore", + "block.custom_ore_gen.deepslateironore": "Deepslate iron ore", + "item.custom_ore_gen.sharddiamondaxe": "Sharddiamondaxe", + "block.custom_ore_gen.deepslatesharddiamondore": "Deepslate shard diamond ore", + "block.custom_ore_gen.concentrateddiamondore": "Concentrated diamond ore", + "item.custom_ore_gen.shardironore": "Shard iron ore", + "item.custom_ore_gen.diamondshard": "Diamond shard", + "block.custom_ore_gen.deepslatepuregoldenore": "Deepslate pure golden ore", + "block.custom_ore_gen.puregoldenore": "Pure golden ore", + "block.custom_ore_gen.highemeraldore": "emerald ore", + "item.custom_ore_gen.sharddiamondshovel": "Shard diamond shovel" +} \ No newline at end of file diff --git a/build/resources/main/assets/custom_ore_gen/models/block/concentratedcoalore.json b/build/resources/main/assets/custom_ore_gen/models/block/concentratedcoalore.json new file mode 100644 index 000000000..490fadcba --- /dev/null +++ b/build/resources/main/assets/custom_ore_gen/models/block/concentratedcoalore.json @@ -0,0 +1,13 @@ +{ + "parent": "block/cube", + "textures": { + "down": "minecraft:block/coal_ore", + "up": "minecraft:block/coal_ore", + "north": "minecraft:block/coal_ore", + "east": "minecraft:block/coal_ore", + "south": "minecraft:block/coal_ore", + "west": "minecraft:block/coal_ore", + "particle": "minecraft:block/coal_ore" + }, + "render_type": "solid" +} \ No newline at end of file diff --git a/build/resources/main/assets/custom_ore_gen/models/block/concentrateddiamondore.json b/build/resources/main/assets/custom_ore_gen/models/block/concentrateddiamondore.json new file mode 100644 index 000000000..7f4782620 --- /dev/null +++ b/build/resources/main/assets/custom_ore_gen/models/block/concentrateddiamondore.json @@ -0,0 +1,8 @@ +{ + "parent": "block/cube_all", + "textures": { + "all": "minecraft:block/deepslate_diamond_ore", + "particle": "minecraft:block/deepslate_diamond_ore" + }, + "render_type": "solid" +} \ No newline at end of file diff --git a/build/resources/main/assets/custom_ore_gen/models/block/copperhighore.json b/build/resources/main/assets/custom_ore_gen/models/block/copperhighore.json new file mode 100644 index 000000000..645f1bf96 --- /dev/null +++ b/build/resources/main/assets/custom_ore_gen/models/block/copperhighore.json @@ -0,0 +1,13 @@ +{ + "parent": "block/cube", + "textures": { + "down": "minecraft:block/copper_ore", + "up": "minecraft:block/copper_ore", + "north": "minecraft:block/copper_ore", + "east": "minecraft:block/copper_ore", + "south": "minecraft:block/copper_ore", + "west": "minecraft:block/copper_ore", + "particle": "minecraft:block/copper_ore" + }, + "render_type": "solid" +} \ No newline at end of file diff --git a/build/resources/main/assets/custom_ore_gen/models/block/copperlowerore.json b/build/resources/main/assets/custom_ore_gen/models/block/copperlowerore.json new file mode 100644 index 000000000..913408009 --- /dev/null +++ b/build/resources/main/assets/custom_ore_gen/models/block/copperlowerore.json @@ -0,0 +1,8 @@ +{ + "parent": "block/cube_all", + "textures": { + "all": "minecraft:block/deepslate_copper_ore", + "particle": "minecraft:block/deepslate_copper_ore" + }, + "render_type": "solid" +} \ No newline at end of file diff --git a/build/resources/main/assets/custom_ore_gen/models/block/deepslateironore.json b/build/resources/main/assets/custom_ore_gen/models/block/deepslateironore.json new file mode 100644 index 000000000..337cdb71f --- /dev/null +++ b/build/resources/main/assets/custom_ore_gen/models/block/deepslateironore.json @@ -0,0 +1,8 @@ +{ + "parent": "block/cube_all", + "textures": { + "all": "minecraft:block/deepslate_iron_ore", + "particle": "minecraft:block/deepslate_iron_ore" + }, + "render_type": "solid" +} \ No newline at end of file diff --git a/build/resources/main/assets/custom_ore_gen/models/block/deepslatelapisore.json b/build/resources/main/assets/custom_ore_gen/models/block/deepslatelapisore.json new file mode 100644 index 000000000..619586fbe --- /dev/null +++ b/build/resources/main/assets/custom_ore_gen/models/block/deepslatelapisore.json @@ -0,0 +1,13 @@ +{ + "parent": "block/cube", + "textures": { + "down": "minecraft:block/deepslate_lapis_ore", + "up": "minecraft:block/deepslate_lapis_ore", + "north": "minecraft:block/deepslate_lapis_ore", + "east": "minecraft:block/deepslate_lapis_ore", + "south": "minecraft:block/deepslate_lapis_ore", + "west": "minecraft:block/deepslate_lapis_ore", + "particle": "minecraft:block/deepslate_lapis_ore" + }, + "render_type": "solid" +} \ No newline at end of file diff --git a/build/resources/main/assets/custom_ore_gen/models/block/deepslatepuregoldenore.json b/build/resources/main/assets/custom_ore_gen/models/block/deepslatepuregoldenore.json new file mode 100644 index 000000000..22e8b8ea3 --- /dev/null +++ b/build/resources/main/assets/custom_ore_gen/models/block/deepslatepuregoldenore.json @@ -0,0 +1,8 @@ +{ + "parent": "block/cube_all", + "textures": { + "all": "minecraft:block/deepslate_gold_ore", + "particle": "minecraft:block/deepslate_gold_ore" + }, + "render_type": "solid" +} \ No newline at end of file diff --git a/build/resources/main/assets/custom_ore_gen/models/block/deepslateredstoneore.json b/build/resources/main/assets/custom_ore_gen/models/block/deepslateredstoneore.json new file mode 100644 index 000000000..b33479b7f --- /dev/null +++ b/build/resources/main/assets/custom_ore_gen/models/block/deepslateredstoneore.json @@ -0,0 +1,8 @@ +{ + "parent": "block/cube_all", + "textures": { + "all": "minecraft:block/deepslate_redstone_ore", + "particle": "minecraft:block/deepslate_redstone_ore" + }, + "render_type": "solid" +} \ No newline at end of file diff --git a/build/resources/main/assets/custom_ore_gen/models/block/deepslatesharddiamondore.json b/build/resources/main/assets/custom_ore_gen/models/block/deepslatesharddiamondore.json new file mode 100644 index 000000000..e7cc1f740 --- /dev/null +++ b/build/resources/main/assets/custom_ore_gen/models/block/deepslatesharddiamondore.json @@ -0,0 +1,13 @@ +{ + "parent": "block/cube", + "textures": { + "down": "custom_ore_gen:block/shard_diamond_ore", + "up": "custom_ore_gen:block/shard_diamond_ore", + "north": "custom_ore_gen:block/shard_diamond_ore", + "east": "custom_ore_gen:block/shard_diamond_ore", + "south": "custom_ore_gen:block/shard_diamond_ore", + "west": "custom_ore_gen:block/shard_diamond_ore", + "particle": "custom_ore_gen:block/shard_diamond_ore" + }, + "render_type": "solid" +} \ No newline at end of file diff --git a/build/resources/main/assets/custom_ore_gen/models/block/highemeraldore.json b/build/resources/main/assets/custom_ore_gen/models/block/highemeraldore.json new file mode 100644 index 000000000..e8bc9b808 --- /dev/null +++ b/build/resources/main/assets/custom_ore_gen/models/block/highemeraldore.json @@ -0,0 +1,8 @@ +{ + "parent": "block/cube_all", + "textures": { + "all": "minecraft:block/emerald_ore", + "particle": "minecraft:block/emerald_ore" + }, + "render_type": "solid" +} \ No newline at end of file diff --git a/build/resources/main/assets/custom_ore_gen/models/block/ironore.json b/build/resources/main/assets/custom_ore_gen/models/block/ironore.json new file mode 100644 index 000000000..deeb80ec4 --- /dev/null +++ b/build/resources/main/assets/custom_ore_gen/models/block/ironore.json @@ -0,0 +1,8 @@ +{ + "parent": "block/cube_all", + "textures": { + "all": "minecraft:block/iron_ore", + "particle": "minecraft:block/iron_ore" + }, + "render_type": "solid" +} \ No newline at end of file diff --git a/build/resources/main/assets/custom_ore_gen/models/block/lapisore.json b/build/resources/main/assets/custom_ore_gen/models/block/lapisore.json new file mode 100644 index 000000000..7a043df5e --- /dev/null +++ b/build/resources/main/assets/custom_ore_gen/models/block/lapisore.json @@ -0,0 +1,8 @@ +{ + "parent": "block/cube_all", + "textures": { + "all": "minecraft:block/lapis_ore", + "particle": "minecraft:block/lapis_ore" + }, + "render_type": "solid" +} \ No newline at end of file diff --git a/build/resources/main/assets/custom_ore_gen/models/block/loweremeraldore.json b/build/resources/main/assets/custom_ore_gen/models/block/loweremeraldore.json new file mode 100644 index 000000000..9e1199160 --- /dev/null +++ b/build/resources/main/assets/custom_ore_gen/models/block/loweremeraldore.json @@ -0,0 +1,8 @@ +{ + "parent": "block/cube_all", + "textures": { + "all": "minecraft:block/deepslate_emerald_ore", + "particle": "minecraft:block/deepslate_emerald_ore" + }, + "render_type": "solid" +} \ No newline at end of file diff --git a/build/resources/main/assets/custom_ore_gen/models/block/puregoldenore.json b/build/resources/main/assets/custom_ore_gen/models/block/puregoldenore.json new file mode 100644 index 000000000..fc615b85d --- /dev/null +++ b/build/resources/main/assets/custom_ore_gen/models/block/puregoldenore.json @@ -0,0 +1,8 @@ +{ + "parent": "block/cube_all", + "textures": { + "all": "minecraft:block/gold_ore", + "particle": "minecraft:block/gold_ore" + }, + "render_type": "solid" +} \ No newline at end of file diff --git a/build/resources/main/assets/custom_ore_gen/models/block/redstoneore.json b/build/resources/main/assets/custom_ore_gen/models/block/redstoneore.json new file mode 100644 index 000000000..3990ddb36 --- /dev/null +++ b/build/resources/main/assets/custom_ore_gen/models/block/redstoneore.json @@ -0,0 +1,8 @@ +{ + "parent": "block/cube_all", + "textures": { + "all": "minecraft:block/redstone_ore", + "particle": "minecraft:block/redstone_ore" + }, + "render_type": "solid" +} \ No newline at end of file diff --git a/build/resources/main/assets/custom_ore_gen/models/block/sharddiamondblockore.json b/build/resources/main/assets/custom_ore_gen/models/block/sharddiamondblockore.json new file mode 100644 index 000000000..118a6fc78 --- /dev/null +++ b/build/resources/main/assets/custom_ore_gen/models/block/sharddiamondblockore.json @@ -0,0 +1,8 @@ +{ + "parent": "block/cube_all", + "textures": { + "all": "custom_ore_gen:block/shard_diamond_ore_2", + "particle": "custom_ore_gen:block/shard_diamond_ore_2" + }, + "render_type": "solid" +} \ No newline at end of file diff --git a/build/resources/main/assets/custom_ore_gen/models/item/concentratedcoalore.json b/build/resources/main/assets/custom_ore_gen/models/item/concentratedcoalore.json new file mode 100644 index 000000000..de42fdb53 --- /dev/null +++ b/build/resources/main/assets/custom_ore_gen/models/item/concentratedcoalore.json @@ -0,0 +1,22 @@ +{ + "parent": "custom_ore_gen:block/concentratedcoalore", + "display": { + "thirdperson": { + "rotation": [ + 10, + -45, + 170 + ], + "translation": [ + 0, + 1.5, + -2.75 + ], + "scale": [ + 0.375, + 0.375, + 0.375 + ] + } + } +} \ No newline at end of file diff --git a/build/resources/main/assets/custom_ore_gen/models/item/concentrateddiamondore.json b/build/resources/main/assets/custom_ore_gen/models/item/concentrateddiamondore.json new file mode 100644 index 000000000..5c80ce544 --- /dev/null +++ b/build/resources/main/assets/custom_ore_gen/models/item/concentrateddiamondore.json @@ -0,0 +1,22 @@ +{ + "parent": "custom_ore_gen:block/concentrateddiamondore", + "display": { + "thirdperson": { + "rotation": [ + 10, + -45, + 170 + ], + "translation": [ + 0, + 1.5, + -2.75 + ], + "scale": [ + 0.375, + 0.375, + 0.375 + ] + } + } +} \ No newline at end of file diff --git a/build/resources/main/assets/custom_ore_gen/models/item/copperhighore.json b/build/resources/main/assets/custom_ore_gen/models/item/copperhighore.json new file mode 100644 index 000000000..f410c2dd2 --- /dev/null +++ b/build/resources/main/assets/custom_ore_gen/models/item/copperhighore.json @@ -0,0 +1,22 @@ +{ + "parent": "custom_ore_gen:block/copperhighore", + "display": { + "thirdperson": { + "rotation": [ + 10, + -45, + 170 + ], + "translation": [ + 0, + 1.5, + -2.75 + ], + "scale": [ + 0.375, + 0.375, + 0.375 + ] + } + } +} \ No newline at end of file diff --git a/build/resources/main/assets/custom_ore_gen/models/item/copperlowerore.json b/build/resources/main/assets/custom_ore_gen/models/item/copperlowerore.json new file mode 100644 index 000000000..3e3af9c86 --- /dev/null +++ b/build/resources/main/assets/custom_ore_gen/models/item/copperlowerore.json @@ -0,0 +1,22 @@ +{ + "parent": "custom_ore_gen:block/copperlowerore", + "display": { + "thirdperson": { + "rotation": [ + 10, + -45, + 170 + ], + "translation": [ + 0, + 1.5, + -2.75 + ], + "scale": [ + 0.375, + 0.375, + 0.375 + ] + } + } +} \ No newline at end of file diff --git a/build/resources/main/assets/custom_ore_gen/models/item/deepslateironore.json b/build/resources/main/assets/custom_ore_gen/models/item/deepslateironore.json new file mode 100644 index 000000000..c5850e04a --- /dev/null +++ b/build/resources/main/assets/custom_ore_gen/models/item/deepslateironore.json @@ -0,0 +1,22 @@ +{ + "parent": "custom_ore_gen:block/deepslateironore", + "display": { + "thirdperson": { + "rotation": [ + 10, + -45, + 170 + ], + "translation": [ + 0, + 1.5, + -2.75 + ], + "scale": [ + 0.375, + 0.375, + 0.375 + ] + } + } +} \ No newline at end of file diff --git a/build/resources/main/assets/custom_ore_gen/models/item/deepslatelapisore.json b/build/resources/main/assets/custom_ore_gen/models/item/deepslatelapisore.json new file mode 100644 index 000000000..1f17dd413 --- /dev/null +++ b/build/resources/main/assets/custom_ore_gen/models/item/deepslatelapisore.json @@ -0,0 +1,22 @@ +{ + "parent": "custom_ore_gen:block/deepslatelapisore", + "display": { + "thirdperson": { + "rotation": [ + 10, + -45, + 170 + ], + "translation": [ + 0, + 1.5, + -2.75 + ], + "scale": [ + 0.375, + 0.375, + 0.375 + ] + } + } +} \ No newline at end of file diff --git a/build/resources/main/assets/custom_ore_gen/models/item/deepslatepuregoldenore.json b/build/resources/main/assets/custom_ore_gen/models/item/deepslatepuregoldenore.json new file mode 100644 index 000000000..2361e4529 --- /dev/null +++ b/build/resources/main/assets/custom_ore_gen/models/item/deepslatepuregoldenore.json @@ -0,0 +1,22 @@ +{ + "parent": "custom_ore_gen:block/deepslatepuregoldenore", + "display": { + "thirdperson": { + "rotation": [ + 10, + -45, + 170 + ], + "translation": [ + 0, + 1.5, + -2.75 + ], + "scale": [ + 0.375, + 0.375, + 0.375 + ] + } + } +} \ No newline at end of file diff --git a/build/resources/main/assets/custom_ore_gen/models/item/deepslateredstoneore.json b/build/resources/main/assets/custom_ore_gen/models/item/deepslateredstoneore.json new file mode 100644 index 000000000..5a67db2e8 --- /dev/null +++ b/build/resources/main/assets/custom_ore_gen/models/item/deepslateredstoneore.json @@ -0,0 +1,22 @@ +{ + "parent": "custom_ore_gen:block/deepslateredstoneore", + "display": { + "thirdperson": { + "rotation": [ + 10, + -45, + 170 + ], + "translation": [ + 0, + 1.5, + -2.75 + ], + "scale": [ + 0.375, + 0.375, + 0.375 + ] + } + } +} \ No newline at end of file diff --git a/build/resources/main/assets/custom_ore_gen/models/item/deepslatesharddiamondore.json b/build/resources/main/assets/custom_ore_gen/models/item/deepslatesharddiamondore.json new file mode 100644 index 000000000..492957cd9 --- /dev/null +++ b/build/resources/main/assets/custom_ore_gen/models/item/deepslatesharddiamondore.json @@ -0,0 +1,22 @@ +{ + "parent": "custom_ore_gen:block/deepslatesharddiamondore", + "display": { + "thirdperson": { + "rotation": [ + 10, + -45, + 170 + ], + "translation": [ + 0, + 1.5, + -2.75 + ], + "scale": [ + 0.375, + 0.375, + 0.375 + ] + } + } +} \ No newline at end of file diff --git a/build/resources/main/assets/custom_ore_gen/models/item/diamondshard.json b/build/resources/main/assets/custom_ore_gen/models/item/diamondshard.json new file mode 100644 index 000000000..be96af9db --- /dev/null +++ b/build/resources/main/assets/custom_ore_gen/models/item/diamondshard.json @@ -0,0 +1,6 @@ +{ + "parent": "item/generated", + "textures": { + "layer0": "custom_ore_gen:item/shard_diamond-removebg-preview" + } +} \ No newline at end of file diff --git a/build/resources/main/assets/custom_ore_gen/models/item/highemeraldore.json b/build/resources/main/assets/custom_ore_gen/models/item/highemeraldore.json new file mode 100644 index 000000000..2b75dd530 --- /dev/null +++ b/build/resources/main/assets/custom_ore_gen/models/item/highemeraldore.json @@ -0,0 +1,22 @@ +{ + "parent": "custom_ore_gen:block/highemeraldore", + "display": { + "thirdperson": { + "rotation": [ + 10, + -45, + 170 + ], + "translation": [ + 0, + 1.5, + -2.75 + ], + "scale": [ + 0.375, + 0.375, + 0.375 + ] + } + } +} \ No newline at end of file diff --git a/build/resources/main/assets/custom_ore_gen/models/item/ironore.json b/build/resources/main/assets/custom_ore_gen/models/item/ironore.json new file mode 100644 index 000000000..c15e24e25 --- /dev/null +++ b/build/resources/main/assets/custom_ore_gen/models/item/ironore.json @@ -0,0 +1,22 @@ +{ + "parent": "custom_ore_gen:block/ironore", + "display": { + "thirdperson": { + "rotation": [ + 10, + -45, + 170 + ], + "translation": [ + 0, + 1.5, + -2.75 + ], + "scale": [ + 0.375, + 0.375, + 0.375 + ] + } + } +} \ No newline at end of file diff --git a/build/resources/main/assets/custom_ore_gen/models/item/lapisore.json b/build/resources/main/assets/custom_ore_gen/models/item/lapisore.json new file mode 100644 index 000000000..9585fe1c0 --- /dev/null +++ b/build/resources/main/assets/custom_ore_gen/models/item/lapisore.json @@ -0,0 +1,22 @@ +{ + "parent": "custom_ore_gen:block/lapisore", + "display": { + "thirdperson": { + "rotation": [ + 10, + -45, + 170 + ], + "translation": [ + 0, + 1.5, + -2.75 + ], + "scale": [ + 0.375, + 0.375, + 0.375 + ] + } + } +} \ No newline at end of file diff --git a/build/resources/main/assets/custom_ore_gen/models/item/loweremeraldore.json b/build/resources/main/assets/custom_ore_gen/models/item/loweremeraldore.json new file mode 100644 index 000000000..bd8fd4934 --- /dev/null +++ b/build/resources/main/assets/custom_ore_gen/models/item/loweremeraldore.json @@ -0,0 +1,22 @@ +{ + "parent": "custom_ore_gen:block/loweremeraldore", + "display": { + "thirdperson": { + "rotation": [ + 10, + -45, + 170 + ], + "translation": [ + 0, + 1.5, + -2.75 + ], + "scale": [ + 0.375, + 0.375, + 0.375 + ] + } + } +} \ No newline at end of file diff --git a/build/resources/main/assets/custom_ore_gen/models/item/puregoldenore.json b/build/resources/main/assets/custom_ore_gen/models/item/puregoldenore.json new file mode 100644 index 000000000..7e4ee4089 --- /dev/null +++ b/build/resources/main/assets/custom_ore_gen/models/item/puregoldenore.json @@ -0,0 +1,22 @@ +{ + "parent": "custom_ore_gen:block/puregoldenore", + "display": { + "thirdperson": { + "rotation": [ + 10, + -45, + 170 + ], + "translation": [ + 0, + 1.5, + -2.75 + ], + "scale": [ + 0.375, + 0.375, + 0.375 + ] + } + } +} \ No newline at end of file diff --git a/build/resources/main/assets/custom_ore_gen/models/item/redstoneore.json b/build/resources/main/assets/custom_ore_gen/models/item/redstoneore.json new file mode 100644 index 000000000..a9a2767f8 --- /dev/null +++ b/build/resources/main/assets/custom_ore_gen/models/item/redstoneore.json @@ -0,0 +1,22 @@ +{ + "parent": "custom_ore_gen:block/redstoneore", + "display": { + "thirdperson": { + "rotation": [ + 10, + -45, + 170 + ], + "translation": [ + 0, + 1.5, + -2.75 + ], + "scale": [ + 0.375, + 0.375, + 0.375 + ] + } + } +} \ No newline at end of file diff --git a/build/resources/main/assets/custom_ore_gen/models/item/sharddiamondaxe.json b/build/resources/main/assets/custom_ore_gen/models/item/sharddiamondaxe.json new file mode 100644 index 000000000..8cf5a6bd9 --- /dev/null +++ b/build/resources/main/assets/custom_ore_gen/models/item/sharddiamondaxe.json @@ -0,0 +1,6 @@ +{ + "parent": "item/handheld", + "textures": { + "layer0": "custom_ore_gen:item/shard_diamond_axe" + } +} \ No newline at end of file diff --git a/build/resources/main/assets/custom_ore_gen/models/item/sharddiamondblockore.json b/build/resources/main/assets/custom_ore_gen/models/item/sharddiamondblockore.json new file mode 100644 index 000000000..a90ef4c8c --- /dev/null +++ b/build/resources/main/assets/custom_ore_gen/models/item/sharddiamondblockore.json @@ -0,0 +1,22 @@ +{ + "parent": "custom_ore_gen:block/sharddiamondblockore", + "display": { + "thirdperson": { + "rotation": [ + 10, + -45, + 170 + ], + "translation": [ + 0, + 1.5, + -2.75 + ], + "scale": [ + 0.375, + 0.375, + 0.375 + ] + } + } +} \ No newline at end of file diff --git a/build/resources/main/assets/custom_ore_gen/models/item/sharddiamondpickaxe.json b/build/resources/main/assets/custom_ore_gen/models/item/sharddiamondpickaxe.json new file mode 100644 index 000000000..9924bbc2d --- /dev/null +++ b/build/resources/main/assets/custom_ore_gen/models/item/sharddiamondpickaxe.json @@ -0,0 +1,6 @@ +{ + "parent": "item/handheld", + "textures": { + "layer0": "custom_ore_gen:item/shard_diamond_pickaxe" + } +} \ No newline at end of file diff --git a/build/resources/main/assets/custom_ore_gen/models/item/sharddiamondshovel.json b/build/resources/main/assets/custom_ore_gen/models/item/sharddiamondshovel.json new file mode 100644 index 000000000..e8a00b037 --- /dev/null +++ b/build/resources/main/assets/custom_ore_gen/models/item/sharddiamondshovel.json @@ -0,0 +1,6 @@ +{ + "parent": "item/handheld", + "textures": { + "layer0": "custom_ore_gen:item/shard_diamond_shovel" + } +} \ No newline at end of file diff --git a/build/resources/main/assets/custom_ore_gen/textures/block/ash_coal.png b/build/resources/main/assets/custom_ore_gen/textures/block/ash_coal.png new file mode 100644 index 000000000..414562791 Binary files /dev/null and b/build/resources/main/assets/custom_ore_gen/textures/block/ash_coal.png differ diff --git a/build/resources/main/assets/custom_ore_gen/textures/block/ash_coal_ore.png b/build/resources/main/assets/custom_ore_gen/textures/block/ash_coal_ore.png new file mode 100644 index 000000000..53316bb48 Binary files /dev/null and b/build/resources/main/assets/custom_ore_gen/textures/block/ash_coal_ore.png differ diff --git a/build/resources/main/assets/custom_ore_gen/textures/block/coal_fragment_ore.png b/build/resources/main/assets/custom_ore_gen/textures/block/coal_fragment_ore.png new file mode 100644 index 000000000..da9766963 Binary files /dev/null and b/build/resources/main/assets/custom_ore_gen/textures/block/coal_fragment_ore.png differ diff --git a/build/resources/main/assets/custom_ore_gen/textures/block/concentrated_coal.png b/build/resources/main/assets/custom_ore_gen/textures/block/concentrated_coal.png new file mode 100644 index 000000000..466863f09 Binary files /dev/null and b/build/resources/main/assets/custom_ore_gen/textures/block/concentrated_coal.png differ diff --git a/build/resources/main/assets/custom_ore_gen/textures/block/deepslate_impure_copper_ore.png b/build/resources/main/assets/custom_ore_gen/textures/block/deepslate_impure_copper_ore.png new file mode 100644 index 000000000..ff2516a4b Binary files /dev/null and b/build/resources/main/assets/custom_ore_gen/textures/block/deepslate_impure_copper_ore.png differ diff --git a/build/resources/main/assets/custom_ore_gen/textures/block/deepslate_impure_gold_ore.png b/build/resources/main/assets/custom_ore_gen/textures/block/deepslate_impure_gold_ore.png new file mode 100644 index 000000000..2c1843bbe Binary files /dev/null and b/build/resources/main/assets/custom_ore_gen/textures/block/deepslate_impure_gold_ore.png differ diff --git a/build/resources/main/assets/custom_ore_gen/textures/block/deepslate_impure_iron_ore.png b/build/resources/main/assets/custom_ore_gen/textures/block/deepslate_impure_iron_ore.png new file mode 100644 index 000000000..220548729 Binary files /dev/null and b/build/resources/main/assets/custom_ore_gen/textures/block/deepslate_impure_iron_ore.png differ diff --git a/build/resources/main/assets/custom_ore_gen/textures/block/deepslate_pure_gold_ore.png b/build/resources/main/assets/custom_ore_gen/textures/block/deepslate_pure_gold_ore.png new file mode 100644 index 000000000..646d20840 Binary files /dev/null and b/build/resources/main/assets/custom_ore_gen/textures/block/deepslate_pure_gold_ore.png differ diff --git a/build/resources/main/assets/custom_ore_gen/textures/block/impure_copper_ore.png b/build/resources/main/assets/custom_ore_gen/textures/block/impure_copper_ore.png new file mode 100644 index 000000000..a955c9c2c Binary files /dev/null and b/build/resources/main/assets/custom_ore_gen/textures/block/impure_copper_ore.png differ diff --git a/build/resources/main/assets/custom_ore_gen/textures/block/impure_gold_ore.png b/build/resources/main/assets/custom_ore_gen/textures/block/impure_gold_ore.png new file mode 100644 index 000000000..fdf74de04 Binary files /dev/null and b/build/resources/main/assets/custom_ore_gen/textures/block/impure_gold_ore.png differ diff --git a/build/resources/main/assets/custom_ore_gen/textures/block/impure_iron.png b/build/resources/main/assets/custom_ore_gen/textures/block/impure_iron.png new file mode 100644 index 000000000..2da83c5a0 Binary files /dev/null and b/build/resources/main/assets/custom_ore_gen/textures/block/impure_iron.png differ diff --git a/build/resources/main/assets/custom_ore_gen/textures/block/impure_iron_ore.png b/build/resources/main/assets/custom_ore_gen/textures/block/impure_iron_ore.png new file mode 100644 index 000000000..3dcc2781f Binary files /dev/null and b/build/resources/main/assets/custom_ore_gen/textures/block/impure_iron_ore.png differ diff --git a/build/resources/main/assets/custom_ore_gen/textures/block/pure_golden_ore.png b/build/resources/main/assets/custom_ore_gen/textures/block/pure_golden_ore.png new file mode 100644 index 000000000..3c2932498 Binary files /dev/null and b/build/resources/main/assets/custom_ore_gen/textures/block/pure_golden_ore.png differ diff --git a/build/resources/main/assets/custom_ore_gen/textures/block/shard_diamond_deepslate_ore.png b/build/resources/main/assets/custom_ore_gen/textures/block/shard_diamond_deepslate_ore.png new file mode 100644 index 000000000..b0b7f73df Binary files /dev/null and b/build/resources/main/assets/custom_ore_gen/textures/block/shard_diamond_deepslate_ore.png differ diff --git a/build/resources/main/assets/custom_ore_gen/textures/block/shard_diamond_ore.png b/build/resources/main/assets/custom_ore_gen/textures/block/shard_diamond_ore.png new file mode 100644 index 000000000..c83f36dfa Binary files /dev/null and b/build/resources/main/assets/custom_ore_gen/textures/block/shard_diamond_ore.png differ diff --git a/build/resources/main/assets/custom_ore_gen/textures/block/shard_diamond_ore_2.png b/build/resources/main/assets/custom_ore_gen/textures/block/shard_diamond_ore_2.png new file mode 100644 index 000000000..148b5b0ce Binary files /dev/null and b/build/resources/main/assets/custom_ore_gen/textures/block/shard_diamond_ore_2.png differ diff --git a/build/resources/main/assets/custom_ore_gen/textures/block/shard_diamond_shovel.png b/build/resources/main/assets/custom_ore_gen/textures/block/shard_diamond_shovel.png new file mode 100644 index 000000000..ca9a574a1 Binary files /dev/null and b/build/resources/main/assets/custom_ore_gen/textures/block/shard_diamond_shovel.png differ diff --git a/build/resources/main/assets/custom_ore_gen/textures/item/ash_coal.png b/build/resources/main/assets/custom_ore_gen/textures/item/ash_coal.png new file mode 100644 index 000000000..20fb37e58 Binary files /dev/null and b/build/resources/main/assets/custom_ore_gen/textures/item/ash_coal.png differ diff --git a/build/resources/main/assets/custom_ore_gen/textures/item/diamond_shard.png b/build/resources/main/assets/custom_ore_gen/textures/item/diamond_shard.png new file mode 100644 index 000000000..e349a79c5 Binary files /dev/null and b/build/resources/main/assets/custom_ore_gen/textures/item/diamond_shard.png differ diff --git a/build/resources/main/assets/custom_ore_gen/textures/item/iron.png b/build/resources/main/assets/custom_ore_gen/textures/item/iron.png new file mode 100644 index 000000000..224dd7356 Binary files /dev/null and b/build/resources/main/assets/custom_ore_gen/textures/item/iron.png differ diff --git a/build/resources/main/assets/custom_ore_gen/textures/item/iron_shard.png b/build/resources/main/assets/custom_ore_gen/textures/item/iron_shard.png new file mode 100644 index 000000000..97f41141b Binary files /dev/null and b/build/resources/main/assets/custom_ore_gen/textures/item/iron_shard.png differ diff --git a/build/resources/main/assets/custom_ore_gen/textures/item/shard_diamond-removebg-preview.png b/build/resources/main/assets/custom_ore_gen/textures/item/shard_diamond-removebg-preview.png new file mode 100644 index 000000000..7731bc30f Binary files /dev/null and b/build/resources/main/assets/custom_ore_gen/textures/item/shard_diamond-removebg-preview.png differ diff --git a/build/resources/main/assets/custom_ore_gen/textures/item/shard_diamond.png b/build/resources/main/assets/custom_ore_gen/textures/item/shard_diamond.png new file mode 100644 index 000000000..7731bc30f Binary files /dev/null and b/build/resources/main/assets/custom_ore_gen/textures/item/shard_diamond.png differ diff --git a/build/resources/main/assets/custom_ore_gen/textures/item/shard_diamond_axe.png b/build/resources/main/assets/custom_ore_gen/textures/item/shard_diamond_axe.png new file mode 100644 index 000000000..e36cb6056 Binary files /dev/null and b/build/resources/main/assets/custom_ore_gen/textures/item/shard_diamond_axe.png differ diff --git a/build/resources/main/assets/custom_ore_gen/textures/item/shard_diamond_pickaxe.png b/build/resources/main/assets/custom_ore_gen/textures/item/shard_diamond_pickaxe.png new file mode 100644 index 000000000..db2915708 Binary files /dev/null and b/build/resources/main/assets/custom_ore_gen/textures/item/shard_diamond_pickaxe.png differ diff --git a/build/resources/main/assets/custom_ore_gen/textures/item/shard_diamond_shovel.png b/build/resources/main/assets/custom_ore_gen/textures/item/shard_diamond_shovel.png new file mode 100644 index 000000000..ca9a574a1 Binary files /dev/null and b/build/resources/main/assets/custom_ore_gen/textures/item/shard_diamond_shovel.png differ diff --git a/build/resources/main/assets/minecraft/blockstates/diamond_ore.json b/build/resources/main/assets/minecraft/blockstates/diamond_ore.json new file mode 100644 index 000000000..e69de29bb diff --git a/build/resources/main/custom_ore_gen-common.toml b/build/resources/main/custom_ore_gen-common.toml new file mode 100644 index 000000000..215d06345 --- /dev/null +++ b/build/resources/main/custom_ore_gen-common.toml @@ -0,0 +1,179 @@ + +#========================== +# Custom Ore Gem - Configuration +#========================== +# Ce fichier permet de personnaliser le mod Custom Ore Gem +# Modifiez ces valeurs pour ajuster la gĂ©nĂ©ration des minerais, les stats des outils et plus encore! + + +#========================== +# GĂ©nĂ©ration des Minerais +#========================== +[ore_generation] + + # Configuration du Minerai d'Éclats de Diamant + [ore_generation.shard_diamond_ore] + # Hauteur minimale de gĂ©nĂ©ration (par dĂ©faut: 0) + # Min: -64, Max: 320 + minHeight = 0 + # Hauteur maximale de gĂ©nĂ©ration (par dĂ©faut: 15) + # Min: -64, Max: 320 + maxHeight = 15 + # Nombre de filons par chunk (par dĂ©faut: 1) + # Min: 0, Max: 20 + veinsPerChunk = 1 + # Taille des filons (par dĂ©faut: 8) + # Min: 1, Max: 32 + veinSize = 8 + + # Configuration du Minerai de Diamant ConcentrĂ© + [ore_generation.concentrated_diamond_ore] + # Nombre de filons par chunk (par dĂ©faut: 1) + veinsPerChunk = 1 + # Taille des filons (par dĂ©faut: 8) + veinSize = 8 + + # Configuration du Minerai d'Or Pur + [ore_generation.pure_golden_ore] + # Nombre de filons par chunk (par dĂ©faut: 4) + veinsPerChunk = 4 + # Hauteur minimale de gĂ©nĂ©ration (par dĂ©faut: 0) + minHeight = 0 + # Hauteur maximale de gĂ©nĂ©ration (par dĂ©faut: 256) + maxHeight = 256 + + # Configuration du Minerai de Charbon ConcentrĂ© + [ore_generation.concentrated_coal_ore] + veinsPerChunk = 2 + + # Configuration des Minerais Impurs + [ore_generation.impure_ores] + # Nombre de filons de Fer Impur par chunk (par dĂ©faut: 2) + ironVeinsPerChunk = 2 + # Nombre de filons d'Or Impur par chunk (par dĂ©faut: 2) + goldVeinsPerChunk = 2 + + # Configuration des Minerais d'Émeraude + [ore_generation.emerald_ores] + # Nombre de filons de Haut Émeraude par chunk (par dĂ©faut: 1) + highVeinsPerChunk = 1 + # Nombre de filons de Bas Émeraude par chunk (par dĂ©faut: 1) + lowerVeinsPerChunk = 1 + + # Configuration des Minerais de Cuivre + [ore_generation.copper_ores] + # Nombre de filons de Haut Cuivre par chunk (par dĂ©faut: 2) + highVeinsPerChunk = 2 + # Nombre de filons de Bas Cuivre par chunk (par dĂ©faut: 2) + lowerVeinsPerChunk = 2 + + +#========================== +# Stats des Outils +#========================== +[tool_stats] + + # Configuration des Outils en Éclats de Diamant + [tool_stats.shard_diamond_tools] + # DurabilitĂ© de la Pioche (par dĂ©faut: 200) + # Min: 1, Max: 5000 + pickaxeDurability = 200 + # Vitesse de minage de la Pioche (par dĂ©faut: 7.0) + pickaxeSpeed = 7.0 + # DĂ©gĂąts d'attaque de la Pioche (par dĂ©faut: 1) + pickaxeAttackDamage = 1 + + # DurabilitĂ© de la Hache (par dĂ©faut: 200) + axeDurability = 200 + # Vitesse de minage de la Hache (par dĂ©faut: 7.0) + axeSpeed = 7.0 + # DĂ©gĂąts d'attaque de la Hache (par dĂ©faut: 6) + axeAttackDamage = 6 + + # DurabilitĂ© de la Pelle (par dĂ©faut: 200) + shovelDurability = 200 + # Vitesse de minage de la Pelle (par dĂ©faut: 4.0) + shovelSpeed = 4.0 + # DĂ©gĂąts d'attaque de la Pelle (par dĂ©faut: 2) + shovelAttackDamage = 2 + + +#========================== +# Drops des Minerais +#========================== +[drops] + + # Configuration du Minerai d'Éclats de Diamant + [drops.shard_diamond_ore] + # Nombre minimum d'Ă©clats droppĂ©s (par dĂ©faut: 1) + minDrops = 1 + # Nombre maximum d'Ă©clats droppĂ©s (par dĂ©faut: 2) + maxDrops = 2 + # Activer l'enchantement Fortune (par dĂ©faut: true) + enableFortune = true + + # Configuration du Minerai de Diamant ConcentrĂ© + [drops.concentrated_diamond_ore] + # Nombre minimum de diamants droppĂ©s (par dĂ©faut: 1) + minDrops = 1 + # Nombre maximum de diamants droppĂ©s (par dĂ©faut: 2) + maxDrops = 2 + # Activer l'enchantement Fortune (par dĂ©faut: true) + enableFortune = true + + # Configuration du Minerai de Charbon ConcentrĂ© + [drops.concentrated_coal_ore] + # Nombre minimum de charbon droppĂ© (par dĂ©faut: 2) + minDrops = 2 + # Nombre maximum de charbon droppĂ© (par dĂ©faut: 4) + maxDrops = 4 + + # Configuration du Minerai d'Or Pur + [drops.pure_golden_ore] + # Nombre minimum de pĂ©pites d'or droppĂ©es (par dĂ©faut: 2) + minDrops = 2 + # Nombre maximum de pĂ©pites d'or droppĂ©es (par dĂ©faut: 4) + maxDrops = 4 + + # Configuration du Minerai de Charbon de Cendre + [drops.ash_coal_ore] + # Nombre minimum de charbon de cendre droppĂ© (par dĂ©faut: 1) + minDrops = 1 + # Nombre maximum de charbon de cendre droppĂ© (par dĂ©faut: 2) + maxDrops = 2 + + # Configuration des Minerais Impurs + [drops.impure_ores] + # Configuration du Fer Impur + ironMinDrops = 1 + ironMaxDrops = 2 + # Configuration de l'Or Impur + goldMinDrops = 1 + goldMaxDrops = 2 + + # ExpĂ©rience droppĂ©e par les minerais personnalisĂ©s (par dĂ©faut: 2) + oreExperience = 2 + + +#========================== +# Activation des FonctionnalitĂ©s +#========================== +[features] + # Activer les Outils en Éclats de Diamant (par dĂ©faut: true) + enableShardDiamondTools = true + # Activer le Minerai d'Éclats de Diamant (par dĂ©faut: true) + enableShardDiamondOre = true + # Activer les Minerais ConcentrĂ©s (Diamant, Charbon) (par dĂ©faut: true) + enableConcentratedOres = true + # Activer les Minerais Impurs (Fer, Or) (par dĂ©faut: true) + enableImpureOres = true + # Activer le Minerai de Charbon de Cendre (par dĂ©faut: true) + enableAshCoalOre = true + # Activer le Minerai d'Or Pur (par dĂ©faut: true) + enablePureGoldenOre = true + # Activer les Minerais d'Émeraude PersonnalisĂ©s (Haut, Bas) (par dĂ©faut: true) + enableCustomEmeraldOres = true + # Activer les Minerais de Cuivre PersonnalisĂ©s (Haut, Bas) (par dĂ©faut: true) + enableCustomCopperOres = true + # Activer les Variantes de Minerais Vanilla (Fer, Redstone, Lapis, etc.) (par dĂ©faut: true) + enableVanillaOreVariants = true diff --git a/build/resources/main/data/custom_ore_gen/forge/biome_modifier/concentratedcoalore_biome_modifier.json b/build/resources/main/data/custom_ore_gen/forge/biome_modifier/concentratedcoalore_biome_modifier.json new file mode 100644 index 000000000..39aaa6eae --- /dev/null +++ b/build/resources/main/data/custom_ore_gen/forge/biome_modifier/concentratedcoalore_biome_modifier.json @@ -0,0 +1,6 @@ +{ + "type": "forge:add_features", + "biomes": "#custom_ore_gen:tempered_biomes", + "features": "custom_ore_gen:concentratedcoalore", + "step": "underground_ores" +} \ No newline at end of file diff --git a/build/resources/main/data/custom_ore_gen/forge/biome_modifier/concentrateddiamondore_biome_modifier.json b/build/resources/main/data/custom_ore_gen/forge/biome_modifier/concentrateddiamondore_biome_modifier.json new file mode 100644 index 000000000..574501f4b --- /dev/null +++ b/build/resources/main/data/custom_ore_gen/forge/biome_modifier/concentrateddiamondore_biome_modifier.json @@ -0,0 +1,6 @@ +{ + "type": "forge:add_features", + "biomes": "#custom_ore_gen:cold_biomes", + "features": "custom_ore_gen:concentrateddiamondore", + "step": "underground_ores" +} \ No newline at end of file diff --git a/build/resources/main/data/custom_ore_gen/forge/biome_modifier/copperhighore_biome_modifier.json b/build/resources/main/data/custom_ore_gen/forge/biome_modifier/copperhighore_biome_modifier.json new file mode 100644 index 000000000..9dd16987c --- /dev/null +++ b/build/resources/main/data/custom_ore_gen/forge/biome_modifier/copperhighore_biome_modifier.json @@ -0,0 +1,6 @@ +{ + "type": "forge:add_features", + "biomes": "#custom_ore_gen:hot_biomes", + "features": "custom_ore_gen:copperhighore", + "step": "underground_ores" +} \ No newline at end of file diff --git a/build/resources/main/data/custom_ore_gen/forge/biome_modifier/copperlowerore_biome_modifier.json b/build/resources/main/data/custom_ore_gen/forge/biome_modifier/copperlowerore_biome_modifier.json new file mode 100644 index 000000000..d4d417df9 --- /dev/null +++ b/build/resources/main/data/custom_ore_gen/forge/biome_modifier/copperlowerore_biome_modifier.json @@ -0,0 +1,6 @@ +{ + "type": "forge:add_features", + "biomes": "#custom_ore_gen:hot_biomes", + "features": "custom_ore_gen:copperlowerore", + "step": "underground_ores" +} \ No newline at end of file diff --git a/build/resources/main/data/custom_ore_gen/forge/biome_modifier/deepslateironore_biome_modifier.json b/build/resources/main/data/custom_ore_gen/forge/biome_modifier/deepslateironore_biome_modifier.json new file mode 100644 index 000000000..530ecf72f --- /dev/null +++ b/build/resources/main/data/custom_ore_gen/forge/biome_modifier/deepslateironore_biome_modifier.json @@ -0,0 +1,6 @@ +{ + "type": "forge:add_features", + "biomes": "#custom_ore_gen:tempered_biomes", + "features": "custom_ore_gen:deepslateironore", + "step": "underground_ores" +} \ No newline at end of file diff --git a/build/resources/main/data/custom_ore_gen/forge/biome_modifier/deepslatelapisore_biome_modifier.json b/build/resources/main/data/custom_ore_gen/forge/biome_modifier/deepslatelapisore_biome_modifier.json new file mode 100644 index 000000000..c8ff24f6c --- /dev/null +++ b/build/resources/main/data/custom_ore_gen/forge/biome_modifier/deepslatelapisore_biome_modifier.json @@ -0,0 +1,6 @@ +{ + "type": "forge:add_features", + "biomes": "#custom_ore_gen:cold_biomes", + "features": "custom_ore_gen:deepslatelapisore", + "step": "underground_ores" +} \ No newline at end of file diff --git a/build/resources/main/data/custom_ore_gen/forge/biome_modifier/deepslatepuregoldenore_biome_modifier.json b/build/resources/main/data/custom_ore_gen/forge/biome_modifier/deepslatepuregoldenore_biome_modifier.json new file mode 100644 index 000000000..24a6ac7c6 --- /dev/null +++ b/build/resources/main/data/custom_ore_gen/forge/biome_modifier/deepslatepuregoldenore_biome_modifier.json @@ -0,0 +1,6 @@ +{ + "type": "forge:add_features", + "biomes": "#custom_ore_gen:hot_biomes", + "features": "custom_ore_gen:deepslatepuregoldenore", + "step": "underground_ores" +} \ No newline at end of file diff --git a/build/resources/main/data/custom_ore_gen/forge/biome_modifier/deepslateredstoneore_biome_modifier.json b/build/resources/main/data/custom_ore_gen/forge/biome_modifier/deepslateredstoneore_biome_modifier.json new file mode 100644 index 000000000..f0a6d915d --- /dev/null +++ b/build/resources/main/data/custom_ore_gen/forge/biome_modifier/deepslateredstoneore_biome_modifier.json @@ -0,0 +1,6 @@ +{ + "type": "forge:add_features", + "biomes": "#custom_ore_gen:hot_biomes", + "features": "custom_ore_gen:deepslateredstoneore", + "step": "underground_ores" +} \ No newline at end of file diff --git a/build/resources/main/data/custom_ore_gen/forge/biome_modifier/deepslatesharddiamondore_biome_modifier.json b/build/resources/main/data/custom_ore_gen/forge/biome_modifier/deepslatesharddiamondore_biome_modifier.json new file mode 100644 index 000000000..989297fb6 --- /dev/null +++ b/build/resources/main/data/custom_ore_gen/forge/biome_modifier/deepslatesharddiamondore_biome_modifier.json @@ -0,0 +1,8 @@ +{ + "type": "forge:add_features", + "biomes": { + "type": "forge:any" + }, + "features": "custom_ore_gen:deepslatesharddiamondore", + "step": "underground_ores" +} \ No newline at end of file diff --git a/build/resources/main/data/custom_ore_gen/forge/biome_modifier/highemeraldore_biome_modifier.json b/build/resources/main/data/custom_ore_gen/forge/biome_modifier/highemeraldore_biome_modifier.json new file mode 100644 index 000000000..c1ad9897f --- /dev/null +++ b/build/resources/main/data/custom_ore_gen/forge/biome_modifier/highemeraldore_biome_modifier.json @@ -0,0 +1,6 @@ +{ + "type": "forge:add_features", + "biomes": "#custom_ore_gen:mountain_biomes", + "features": "custom_ore_gen:highemeraldore", + "step": "underground_ores" +} \ No newline at end of file diff --git a/build/resources/main/data/custom_ore_gen/forge/biome_modifier/ironore_biome_modifier.json b/build/resources/main/data/custom_ore_gen/forge/biome_modifier/ironore_biome_modifier.json new file mode 100644 index 000000000..55292fef5 --- /dev/null +++ b/build/resources/main/data/custom_ore_gen/forge/biome_modifier/ironore_biome_modifier.json @@ -0,0 +1,6 @@ +{ + "type": "forge:add_features", + "biomes": "#custom_ore_gen:tempered_biomes", + "features": "custom_ore_gen:ironore", + "step": "underground_ores" +} \ No newline at end of file diff --git a/build/resources/main/data/custom_ore_gen/forge/biome_modifier/lapisore_biome_modifier.json b/build/resources/main/data/custom_ore_gen/forge/biome_modifier/lapisore_biome_modifier.json new file mode 100644 index 000000000..acd6f44cb --- /dev/null +++ b/build/resources/main/data/custom_ore_gen/forge/biome_modifier/lapisore_biome_modifier.json @@ -0,0 +1,6 @@ +{ + "type": "forge:add_features", + "biomes": "#custom_ore_gen:cold_biomes", + "features": "custom_ore_gen:lapisore", + "step": "underground_ores" +} \ No newline at end of file diff --git a/build/resources/main/data/custom_ore_gen/forge/biome_modifier/loweremeraldore_biome_modifier.json b/build/resources/main/data/custom_ore_gen/forge/biome_modifier/loweremeraldore_biome_modifier.json new file mode 100644 index 000000000..999a93f15 --- /dev/null +++ b/build/resources/main/data/custom_ore_gen/forge/biome_modifier/loweremeraldore_biome_modifier.json @@ -0,0 +1,6 @@ +{ + "type": "forge:add_features", + "biomes": "#custom_ore_gen:rare_biomes", + "features": "custom_ore_gen:loweremeraldore", + "step": "underground_ores" +} \ No newline at end of file diff --git a/build/resources/main/data/custom_ore_gen/forge/biome_modifier/puregoldenore_biome_modifier.json b/build/resources/main/data/custom_ore_gen/forge/biome_modifier/puregoldenore_biome_modifier.json new file mode 100644 index 000000000..129ffeeb0 --- /dev/null +++ b/build/resources/main/data/custom_ore_gen/forge/biome_modifier/puregoldenore_biome_modifier.json @@ -0,0 +1,6 @@ +{ + "type": "forge:add_features", + "biomes": "#custom_ore_gen:hot_biomes", + "features": "custom_ore_gen:puregoldenore", + "step": "underground_ores" +} \ No newline at end of file diff --git a/build/resources/main/data/custom_ore_gen/forge/biome_modifier/redstoneore_biome_modifier.json b/build/resources/main/data/custom_ore_gen/forge/biome_modifier/redstoneore_biome_modifier.json new file mode 100644 index 000000000..c672f8a46 --- /dev/null +++ b/build/resources/main/data/custom_ore_gen/forge/biome_modifier/redstoneore_biome_modifier.json @@ -0,0 +1,6 @@ +{ + "type": "forge:add_features", + "biomes": "#custom_ore_gen:hot_biomes", + "features": "custom_ore_gen:redstoneore", + "step": "underground_ores" +} \ No newline at end of file diff --git a/build/resources/main/data/custom_ore_gen/forge/biome_modifier/sharddiamondblockore_biome_modifier.json b/build/resources/main/data/custom_ore_gen/forge/biome_modifier/sharddiamondblockore_biome_modifier.json new file mode 100644 index 000000000..cffdc4a5e --- /dev/null +++ b/build/resources/main/data/custom_ore_gen/forge/biome_modifier/sharddiamondblockore_biome_modifier.json @@ -0,0 +1,8 @@ +{ + "type": "forge:add_features", + "biomes": { + "type": "forge:any" + }, + "features": "custom_ore_gen:sharddiamondblockore", + "step": "underground_ores" +} \ No newline at end of file diff --git a/build/resources/main/data/custom_ore_gen/loot_tables/blocks/concentratedcoalore.json b/build/resources/main/data/custom_ore_gen/loot_tables/blocks/concentratedcoalore.json new file mode 100644 index 000000000..2b170dd1e --- /dev/null +++ b/build/resources/main/data/custom_ore_gen/loot_tables/blocks/concentratedcoalore.json @@ -0,0 +1,82 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:coal", + "weight": 1, + "conditions": [ + { + "condition": "minecraft:inverted", + "term": { + "condition": "minecraft:match_tool", + "predicate": { + "enchantments": [ + { + "enchantment": "minecraft:silk_touch", + "levels": { + "min": 1 + } + } + ] + } + } + } + ], + "functions": [ + { + "function": "set_count", + "count": { + "min": 1, + "max": 2 + } + }, + { + "function": "minecraft:apply_bonus", + "enchantment": "minecraft:fortune", + "formula": "minecraft:ore_drops" + } + ] + } + ] + }, + { + "rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:coal_ore", + "weight": 1, + "conditions": [ + { + "condition": "minecraft:match_tool", + "predicate": { + "enchantments": [ + { + "enchantment": "minecraft:silk_touch", + "levels": { + "min": 1 + } + } + ] + } + } + ], + "functions": [ + { + "function": "set_count", + "count": { + "min": 1, + "max": 1 + } + } + ] + } + ] + } + ], + "random_sequence": "custom_ore_gen:blocks/concentratedcoalore" +} \ No newline at end of file diff --git a/build/resources/main/data/custom_ore_gen/loot_tables/blocks/concentrateddiamondore.json b/build/resources/main/data/custom_ore_gen/loot_tables/blocks/concentrateddiamondore.json new file mode 100644 index 000000000..cff39b7c9 --- /dev/null +++ b/build/resources/main/data/custom_ore_gen/loot_tables/blocks/concentrateddiamondore.json @@ -0,0 +1,82 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:diamond", + "weight": 1, + "conditions": [ + { + "condition": "minecraft:inverted", + "term": { + "condition": "minecraft:match_tool", + "predicate": { + "enchantments": [ + { + "enchantment": "minecraft:silk_touch", + "levels": { + "min": 1 + } + } + ] + } + } + } + ], + "functions": [ + { + "function": "set_count", + "count": { + "min": 1, + "max": 2 + } + }, + { + "function": "minecraft:apply_bonus", + "enchantment": "minecraft:fortune", + "formula": "minecraft:ore_drops" + } + ] + } + ] + }, + { + "rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "name": "custom_ore_gen:concentrateddiamondore", + "weight": 1, + "conditions": [ + { + "condition": "minecraft:match_tool", + "predicate": { + "enchantments": [ + { + "enchantment": "minecraft:silk_touch", + "levels": { + "min": 1 + } + } + ] + } + } + ], + "functions": [ + { + "function": "set_count", + "count": { + "min": 1, + "max": 1 + } + } + ] + } + ] + } + ], + "random_sequence": "custom_ore_gen:blocks/concentrateddiamondore" +} \ No newline at end of file diff --git a/build/resources/main/data/custom_ore_gen/loot_tables/blocks/copperhighore.json b/build/resources/main/data/custom_ore_gen/loot_tables/blocks/copperhighore.json new file mode 100644 index 000000000..0dcbdc5ca --- /dev/null +++ b/build/resources/main/data/custom_ore_gen/loot_tables/blocks/copperhighore.json @@ -0,0 +1,85 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "rolls": { + "min": 1, + "max": 2 + }, + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:raw_copper", + "weight": 1, + "conditions": [ + { + "condition": "minecraft:inverted", + "term": { + "condition": "minecraft:match_tool", + "predicate": { + "enchantments": [ + { + "enchantment": "minecraft:silk_touch", + "levels": { + "min": 1 + } + } + ] + } + } + } + ], + "functions": [ + { + "function": "set_count", + "count": { + "min": 2, + "max": 5 + } + }, + { + "function": "minecraft:apply_bonus", + "enchantment": "minecraft:fortune", + "formula": "minecraft:ore_drops" + } + ] + } + ] + }, + { + "rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:copper_ore", + "weight": 1, + "conditions": [ + { + "condition": "minecraft:match_tool", + "predicate": { + "enchantments": [ + { + "enchantment": "minecraft:silk_touch", + "levels": { + "min": 1 + } + } + ] + } + } + ], + "functions": [ + { + "function": "set_count", + "count": { + "min": 1, + "max": 1 + } + } + ] + } + ] + } + ], + "random_sequence": "custom_ore_gen:blocks/copperhighore" +} \ No newline at end of file diff --git a/build/resources/main/data/custom_ore_gen/loot_tables/blocks/copperlowerore.json b/build/resources/main/data/custom_ore_gen/loot_tables/blocks/copperlowerore.json new file mode 100644 index 000000000..151d51873 --- /dev/null +++ b/build/resources/main/data/custom_ore_gen/loot_tables/blocks/copperlowerore.json @@ -0,0 +1,85 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "rolls": { + "min": 1, + "max": 2 + }, + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:raw_copper", + "weight": 1, + "conditions": [ + { + "condition": "minecraft:inverted", + "term": { + "condition": "minecraft:match_tool", + "predicate": { + "enchantments": [ + { + "enchantment": "minecraft:silk_touch", + "levels": { + "min": 1 + } + } + ] + } + } + } + ], + "functions": [ + { + "function": "set_count", + "count": { + "min": 2, + "max": 6 + } + }, + { + "function": "minecraft:apply_bonus", + "enchantment": "minecraft:fortune", + "formula": "minecraft:ore_drops" + } + ] + } + ] + }, + { + "rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:deepslate_copper_ore", + "weight": 1, + "conditions": [ + { + "condition": "minecraft:match_tool", + "predicate": { + "enchantments": [ + { + "enchantment": "minecraft:silk_touch", + "levels": { + "min": 1 + } + } + ] + } + } + ], + "functions": [ + { + "function": "set_count", + "count": { + "min": 1, + "max": 1 + } + } + ] + } + ] + } + ], + "random_sequence": "custom_ore_gen:blocks/copperlowerore" +} \ No newline at end of file diff --git a/build/resources/main/data/custom_ore_gen/loot_tables/blocks/deepslateironore.json b/build/resources/main/data/custom_ore_gen/loot_tables/blocks/deepslateironore.json new file mode 100644 index 000000000..b69560b96 --- /dev/null +++ b/build/resources/main/data/custom_ore_gen/loot_tables/blocks/deepslateironore.json @@ -0,0 +1,82 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:raw_iron", + "weight": 1, + "conditions": [ + { + "condition": "minecraft:inverted", + "term": { + "condition": "minecraft:match_tool", + "predicate": { + "enchantments": [ + { + "enchantment": "minecraft:silk_touch", + "levels": { + "min": 1 + } + } + ] + } + } + } + ], + "functions": [ + { + "function": "set_count", + "count": { + "min": 1, + "max": 1 + } + }, + { + "function": "minecraft:apply_bonus", + "enchantment": "minecraft:fortune", + "formula": "minecraft:ore_drops" + } + ] + } + ] + }, + { + "rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "name": "custom_ore_gen:deepslateironore", + "weight": 1, + "conditions": [ + { + "condition": "minecraft:match_tool", + "predicate": { + "enchantments": [ + { + "enchantment": "minecraft:silk_touch", + "levels": { + "min": 1 + } + } + ] + } + } + ], + "functions": [ + { + "function": "set_count", + "count": { + "min": 1, + "max": 1 + } + } + ] + } + ] + } + ], + "random_sequence": "custom_ore_gen:blocks/deepslateironore" +} \ No newline at end of file diff --git a/build/resources/main/data/custom_ore_gen/loot_tables/blocks/deepslatelapisore.json b/build/resources/main/data/custom_ore_gen/loot_tables/blocks/deepslatelapisore.json new file mode 100644 index 000000000..84bda5b16 --- /dev/null +++ b/build/resources/main/data/custom_ore_gen/loot_tables/blocks/deepslatelapisore.json @@ -0,0 +1,90 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:lapis_lazuli", + "weight": 1, + "conditions": [ + { + "condition": "minecraft:inverted", + "term": { + "condition": "minecraft:match_tool", + "predicate": { + "enchantments": [ + { + "enchantment": "minecraft:silk_touch", + "levels": { + "min": 1 + } + } + ] + } + } + } + ], + "functions": [ + { + "function": "set_count", + "count": { + "min": 4, + "max": 6 + } + }, + { + "function": "enchant_with_levels", + "treasure": true, + "levels": { + "min": 1, + "max": 10 + } + }, + { + "function": "minecraft:apply_bonus", + "enchantment": "minecraft:fortune", + "formula": "minecraft:ore_drops" + } + ] + } + ] + }, + { + "rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:deepslate_lapis_ore", + "weight": 1, + "conditions": [ + { + "condition": "minecraft:match_tool", + "predicate": { + "enchantments": [ + { + "enchantment": "minecraft:silk_touch", + "levels": { + "min": 1 + } + } + ] + } + } + ], + "functions": [ + { + "function": "set_count", + "count": { + "min": 1, + "max": 1 + } + } + ] + } + ] + } + ], + "random_sequence": "custom_ore_gen:blocks/deepslatelapisore" +} \ No newline at end of file diff --git a/build/resources/main/data/custom_ore_gen/loot_tables/blocks/deepslatepuregoldenore.json b/build/resources/main/data/custom_ore_gen/loot_tables/blocks/deepslatepuregoldenore.json new file mode 100644 index 000000000..da465a2da --- /dev/null +++ b/build/resources/main/data/custom_ore_gen/loot_tables/blocks/deepslatepuregoldenore.json @@ -0,0 +1,89 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "rolls": { + "min": 1, + "max": 2 + }, + "bonus_rolls": { + "min": 1, + "max": 2 + }, + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:raw_gold", + "weight": 1, + "conditions": [ + { + "condition": "minecraft:inverted", + "term": { + "condition": "minecraft:match_tool", + "predicate": { + "enchantments": [ + { + "enchantment": "minecraft:silk_touch", + "levels": { + "min": 1 + } + } + ] + } + } + } + ], + "functions": [ + { + "function": "set_count", + "count": { + "min": 1, + "max": 2 + } + }, + { + "function": "minecraft:apply_bonus", + "enchantment": "minecraft:fortune", + "formula": "minecraft:ore_drops" + } + ] + } + ] + }, + { + "rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:gold_ore", + "weight": 1, + "conditions": [ + { + "condition": "minecraft:match_tool", + "predicate": { + "enchantments": [ + { + "enchantment": "minecraft:silk_touch", + "levels": { + "min": 1 + } + } + ] + } + } + ], + "functions": [ + { + "function": "set_count", + "count": { + "min": 1, + "max": 1 + } + } + ] + } + ] + } + ], + "random_sequence": "custom_ore_gen:blocks/deepslatepuregoldenore" +} \ No newline at end of file diff --git a/build/resources/main/data/custom_ore_gen/loot_tables/blocks/deepslateredstoneore.json b/build/resources/main/data/custom_ore_gen/loot_tables/blocks/deepslateredstoneore.json new file mode 100644 index 000000000..cf979b9fc --- /dev/null +++ b/build/resources/main/data/custom_ore_gen/loot_tables/blocks/deepslateredstoneore.json @@ -0,0 +1,85 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "rolls": { + "min": 1, + "max": 2 + }, + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:redstone", + "weight": 1, + "conditions": [ + { + "condition": "minecraft:inverted", + "term": { + "condition": "minecraft:match_tool", + "predicate": { + "enchantments": [ + { + "enchantment": "minecraft:silk_touch", + "levels": { + "min": 1 + } + } + ] + } + } + } + ], + "functions": [ + { + "function": "set_count", + "count": { + "min": 4, + "max": 6 + } + }, + { + "function": "minecraft:apply_bonus", + "enchantment": "minecraft:fortune", + "formula": "minecraft:ore_drops" + } + ] + } + ] + }, + { + "rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:deepslate_redstone_ore", + "weight": 1, + "conditions": [ + { + "condition": "minecraft:match_tool", + "predicate": { + "enchantments": [ + { + "enchantment": "minecraft:silk_touch", + "levels": { + "min": 1 + } + } + ] + } + } + ], + "functions": [ + { + "function": "set_count", + "count": { + "min": 1, + "max": 1 + } + } + ] + } + ] + } + ], + "random_sequence": "custom_ore_gen:blocks/deepslateredstoneore" +} \ No newline at end of file diff --git a/build/resources/main/data/custom_ore_gen/loot_tables/blocks/deepslatesharddiamondore.json b/build/resources/main/data/custom_ore_gen/loot_tables/blocks/deepslatesharddiamondore.json new file mode 100644 index 000000000..0b062f02b --- /dev/null +++ b/build/resources/main/data/custom_ore_gen/loot_tables/blocks/deepslatesharddiamondore.json @@ -0,0 +1,82 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "name": "custom_ore_gen:diamondshard", + "weight": 1, + "conditions": [ + { + "condition": "minecraft:inverted", + "term": { + "condition": "minecraft:match_tool", + "predicate": { + "enchantments": [ + { + "enchantment": "minecraft:silk_touch", + "levels": { + "min": 1 + } + } + ] + } + } + } + ], + "functions": [ + { + "function": "set_count", + "count": { + "min": 1, + "max": 2 + } + }, + { + "function": "minecraft:apply_bonus", + "enchantment": "minecraft:fortune", + "formula": "minecraft:ore_drops" + } + ] + } + ] + }, + { + "rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "name": "custom_ore_gen:deepslatesharddiamondore", + "weight": 1, + "conditions": [ + { + "condition": "minecraft:match_tool", + "predicate": { + "enchantments": [ + { + "enchantment": "minecraft:silk_touch", + "levels": { + "min": 1 + } + } + ] + } + } + ], + "functions": [ + { + "function": "set_count", + "count": { + "min": 1, + "max": 1 + } + } + ] + } + ] + } + ], + "random_sequence": "custom_ore_gen:blocks/deepslatesharddiamondore" +} \ No newline at end of file diff --git a/build/resources/main/data/custom_ore_gen/loot_tables/blocks/highemeraldore.json b/build/resources/main/data/custom_ore_gen/loot_tables/blocks/highemeraldore.json new file mode 100644 index 000000000..2d1fc5330 --- /dev/null +++ b/build/resources/main/data/custom_ore_gen/loot_tables/blocks/highemeraldore.json @@ -0,0 +1,82 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:emerald", + "weight": 1, + "conditions": [ + { + "condition": "minecraft:inverted", + "term": { + "condition": "minecraft:match_tool", + "predicate": { + "enchantments": [ + { + "enchantment": "minecraft:silk_touch", + "levels": { + "min": 1 + } + } + ] + } + } + } + ], + "functions": [ + { + "function": "set_count", + "count": { + "min": 1, + "max": 1 + } + }, + { + "function": "minecraft:apply_bonus", + "enchantment": "minecraft:fortune", + "formula": "minecraft:ore_drops" + } + ] + } + ] + }, + { + "rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:emerald_ore", + "weight": 1, + "conditions": [ + { + "condition": "minecraft:match_tool", + "predicate": { + "enchantments": [ + { + "enchantment": "minecraft:silk_touch", + "levels": { + "min": 1 + } + } + ] + } + } + ], + "functions": [ + { + "function": "set_count", + "count": { + "min": 1, + "max": 1 + } + } + ] + } + ] + } + ], + "random_sequence": "custom_ore_gen:blocks/highemeraldore" +} \ No newline at end of file diff --git a/build/resources/main/data/custom_ore_gen/loot_tables/blocks/ironore.json b/build/resources/main/data/custom_ore_gen/loot_tables/blocks/ironore.json new file mode 100644 index 000000000..eb4426fe4 --- /dev/null +++ b/build/resources/main/data/custom_ore_gen/loot_tables/blocks/ironore.json @@ -0,0 +1,82 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:raw_iron", + "weight": 1, + "conditions": [ + { + "condition": "minecraft:inverted", + "term": { + "condition": "minecraft:match_tool", + "predicate": { + "enchantments": [ + { + "enchantment": "minecraft:silk_touch", + "levels": { + "min": 1 + } + } + ] + } + } + } + ], + "functions": [ + { + "function": "set_count", + "count": { + "min": 1, + "max": 1 + } + }, + { + "function": "minecraft:apply_bonus", + "enchantment": "minecraft:fortune", + "formula": "minecraft:ore_drops" + } + ] + } + ] + }, + { + "rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:iron_ore", + "weight": 1, + "conditions": [ + { + "condition": "minecraft:match_tool", + "predicate": { + "enchantments": [ + { + "enchantment": "minecraft:silk_touch", + "levels": { + "min": 1 + } + } + ] + } + } + ], + "functions": [ + { + "function": "set_count", + "count": { + "min": 1, + "max": 1 + } + } + ] + } + ] + } + ], + "random_sequence": "custom_ore_gen:blocks/ironore" +} \ No newline at end of file diff --git a/build/resources/main/data/custom_ore_gen/loot_tables/blocks/lapisore.json b/build/resources/main/data/custom_ore_gen/loot_tables/blocks/lapisore.json new file mode 100644 index 000000000..aedfdc171 --- /dev/null +++ b/build/resources/main/data/custom_ore_gen/loot_tables/blocks/lapisore.json @@ -0,0 +1,90 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:lapis_lazuli", + "weight": 1, + "conditions": [ + { + "condition": "minecraft:inverted", + "term": { + "condition": "minecraft:match_tool", + "predicate": { + "enchantments": [ + { + "enchantment": "minecraft:silk_touch", + "levels": { + "min": 1 + } + } + ] + } + } + } + ], + "functions": [ + { + "function": "set_count", + "count": { + "min": 4, + "max": 8 + } + }, + { + "function": "enchant_with_levels", + "treasure": true, + "levels": { + "min": 0, + "max": 5 + } + }, + { + "function": "minecraft:apply_bonus", + "enchantment": "minecraft:fortune", + "formula": "minecraft:ore_drops" + } + ] + } + ] + }, + { + "rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:lapis_ore", + "weight": 1, + "conditions": [ + { + "condition": "minecraft:match_tool", + "predicate": { + "enchantments": [ + { + "enchantment": "minecraft:silk_touch", + "levels": { + "min": 1 + } + } + ] + } + } + ], + "functions": [ + { + "function": "set_count", + "count": { + "min": 1, + "max": 1 + } + } + ] + } + ] + } + ], + "random_sequence": "custom_ore_gen:blocks/lapisore" +} \ No newline at end of file diff --git a/build/resources/main/data/custom_ore_gen/loot_tables/blocks/loweremeraldore.json b/build/resources/main/data/custom_ore_gen/loot_tables/blocks/loweremeraldore.json new file mode 100644 index 000000000..df10054af --- /dev/null +++ b/build/resources/main/data/custom_ore_gen/loot_tables/blocks/loweremeraldore.json @@ -0,0 +1,82 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:emerald", + "weight": 1, + "conditions": [ + { + "condition": "minecraft:inverted", + "term": { + "condition": "minecraft:match_tool", + "predicate": { + "enchantments": [ + { + "enchantment": "minecraft:silk_touch", + "levels": { + "min": 1 + } + } + ] + } + } + } + ], + "functions": [ + { + "function": "set_count", + "count": { + "min": 1, + "max": 2 + } + }, + { + "function": "minecraft:apply_bonus", + "enchantment": "minecraft:fortune", + "formula": "minecraft:ore_drops" + } + ] + } + ] + }, + { + "rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:deepslate_emerald_ore", + "weight": 1, + "conditions": [ + { + "condition": "minecraft:match_tool", + "predicate": { + "enchantments": [ + { + "enchantment": "minecraft:silk_touch", + "levels": { + "min": 1 + } + } + ] + } + } + ], + "functions": [ + { + "function": "set_count", + "count": { + "min": 1, + "max": 1 + } + } + ] + } + ] + } + ], + "random_sequence": "custom_ore_gen:blocks/loweremeraldore" +} \ No newline at end of file diff --git a/build/resources/main/data/custom_ore_gen/loot_tables/blocks/puregoldenore.json b/build/resources/main/data/custom_ore_gen/loot_tables/blocks/puregoldenore.json new file mode 100644 index 000000000..1cca17874 --- /dev/null +++ b/build/resources/main/data/custom_ore_gen/loot_tables/blocks/puregoldenore.json @@ -0,0 +1,89 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "rolls": { + "min": 1, + "max": 2 + }, + "bonus_rolls": { + "min": 1, + "max": 2 + }, + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:raw_gold", + "weight": 1, + "conditions": [ + { + "condition": "minecraft:inverted", + "term": { + "condition": "minecraft:match_tool", + "predicate": { + "enchantments": [ + { + "enchantment": "minecraft:silk_touch", + "levels": { + "min": 1 + } + } + ] + } + } + } + ], + "functions": [ + { + "function": "set_count", + "count": { + "min": 1, + "max": 2 + } + }, + { + "function": "minecraft:apply_bonus", + "enchantment": "minecraft:fortune", + "formula": "minecraft:ore_drops" + } + ] + } + ] + }, + { + "rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:gold_ore", + "weight": 1, + "conditions": [ + { + "condition": "minecraft:match_tool", + "predicate": { + "enchantments": [ + { + "enchantment": "minecraft:silk_touch", + "levels": { + "min": 1 + } + } + ] + } + } + ], + "functions": [ + { + "function": "set_count", + "count": { + "min": 1, + "max": 1 + } + } + ] + } + ] + } + ], + "random_sequence": "custom_ore_gen:blocks/puregoldenore" +} \ No newline at end of file diff --git a/build/resources/main/data/custom_ore_gen/loot_tables/blocks/redstoneore.json b/build/resources/main/data/custom_ore_gen/loot_tables/blocks/redstoneore.json new file mode 100644 index 000000000..166c949c3 --- /dev/null +++ b/build/resources/main/data/custom_ore_gen/loot_tables/blocks/redstoneore.json @@ -0,0 +1,82 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:redstone", + "weight": 1, + "conditions": [ + { + "condition": "minecraft:inverted", + "term": { + "condition": "minecraft:match_tool", + "predicate": { + "enchantments": [ + { + "enchantment": "minecraft:silk_touch", + "levels": { + "min": 1 + } + } + ] + } + } + } + ], + "functions": [ + { + "function": "set_count", + "count": { + "min": 4, + "max": 5 + } + }, + { + "function": "minecraft:apply_bonus", + "enchantment": "minecraft:fortune", + "formula": "minecraft:ore_drops" + } + ] + } + ] + }, + { + "rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:redstone_ore", + "weight": 1, + "conditions": [ + { + "condition": "minecraft:match_tool", + "predicate": { + "enchantments": [ + { + "enchantment": "minecraft:silk_touch", + "levels": { + "min": 1 + } + } + ] + } + } + ], + "functions": [ + { + "function": "set_count", + "count": { + "min": 1, + "max": 1 + } + } + ] + } + ] + } + ], + "random_sequence": "custom_ore_gen:blocks/redstoneore" +} \ No newline at end of file diff --git a/build/resources/main/data/custom_ore_gen/loot_tables/blocks/sharddiamondblockore.json b/build/resources/main/data/custom_ore_gen/loot_tables/blocks/sharddiamondblockore.json new file mode 100644 index 000000000..59108c0e5 --- /dev/null +++ b/build/resources/main/data/custom_ore_gen/loot_tables/blocks/sharddiamondblockore.json @@ -0,0 +1,82 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "name": "custom_ore_gen:diamondshard", + "weight": 1, + "conditions": [ + { + "condition": "minecraft:inverted", + "term": { + "condition": "minecraft:match_tool", + "predicate": { + "enchantments": [ + { + "enchantment": "minecraft:silk_touch", + "levels": { + "min": 1 + } + } + ] + } + } + } + ], + "functions": [ + { + "function": "set_count", + "count": { + "min": 1, + "max": 2 + } + }, + { + "function": "minecraft:apply_bonus", + "enchantment": "minecraft:fortune", + "formula": "minecraft:ore_drops" + } + ] + } + ] + }, + { + "rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "name": "custom_ore_gen:sharddiamondblockore", + "weight": 1, + "conditions": [ + { + "condition": "minecraft:match_tool", + "predicate": { + "enchantments": [ + { + "enchantment": "minecraft:silk_touch", + "levels": { + "min": 1 + } + } + ] + } + } + ], + "functions": [ + { + "function": "set_count", + "count": { + "min": 1, + "max": 1 + } + } + ] + } + ] + } + ], + "random_sequence": "custom_ore_gen:blocks/sharddiamondblockore" +} \ No newline at end of file diff --git a/build/resources/main/data/custom_ore_gen/recipes/axerecipe.json b/build/resources/main/data/custom_ore_gen/recipes/axerecipe.json new file mode 100644 index 000000000..6de802a1c --- /dev/null +++ b/build/resources/main/data/custom_ore_gen/recipes/axerecipe.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "misc", + "pattern": [ + "aa", + "ab", + " b" + ], + "key": { + "a": { + "item": "custom_ore_gen:diamondshard" + }, + "b": { + "item": "minecraft:stick" + } + }, + "result": { + "item": "custom_ore_gen:sharddiamondaxe", + "count": 1 + } +} \ No newline at end of file diff --git a/build/resources/main/data/custom_ore_gen/recipes/diamondshardtodiamond.json b/build/resources/main/data/custom_ore_gen/recipes/diamondshardtodiamond.json new file mode 100644 index 000000000..8ffceddd4 --- /dev/null +++ b/build/resources/main/data/custom_ore_gen/recipes/diamondshardtodiamond.json @@ -0,0 +1,18 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "misc", + "pattern": [ + "aaa", + "aaa", + "aaa" + ], + "key": { + "a": { + "item": "custom_ore_gen:diamondshard" + } + }, + "result": { + "item": "minecraft:diamond", + "count": 1 + } +} \ No newline at end of file diff --git a/build/resources/main/data/custom_ore_gen/recipes/pickaxecraft.json b/build/resources/main/data/custom_ore_gen/recipes/pickaxecraft.json new file mode 100644 index 000000000..ce86fcfb2 --- /dev/null +++ b/build/resources/main/data/custom_ore_gen/recipes/pickaxecraft.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "misc", + "pattern": [ + "aaa", + " b ", + " b " + ], + "key": { + "a": { + "item": "custom_ore_gen:diamondshard" + }, + "b": { + "item": "minecraft:stick" + } + }, + "result": { + "item": "custom_ore_gen:sharddiamondpickaxe", + "count": 1 + } +} \ No newline at end of file diff --git a/build/resources/main/data/custom_ore_gen/recipes/shovelcraft.json b/build/resources/main/data/custom_ore_gen/recipes/shovelcraft.json new file mode 100644 index 000000000..2d3839063 --- /dev/null +++ b/build/resources/main/data/custom_ore_gen/recipes/shovelcraft.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "misc", + "pattern": [ + "a", + "b", + "b" + ], + "key": { + "a": { + "item": "custom_ore_gen:diamondshard" + }, + "b": { + "item": "minecraft:stick" + } + }, + "result": { + "item": "custom_ore_gen:sharddiamondshovel", + "count": 1 + } +} \ No newline at end of file diff --git a/build/resources/main/data/custom_ore_gen/tags/worldgen/biome/cold_biomes.json b/build/resources/main/data/custom_ore_gen/tags/worldgen/biome/cold_biomes.json new file mode 100644 index 000000000..9bd287c3f --- /dev/null +++ b/build/resources/main/data/custom_ore_gen/tags/worldgen/biome/cold_biomes.json @@ -0,0 +1,20 @@ +{ + "replace": false, + "values": [ + "snowy_slopes", + "snowy_beach", + "snowy_plains", + "snowy_taiga", + "ice_spikes", + "old_growth_pine_taiga", + "old_growth_spruce_taiga", + "taiga", + "cold_ocean", + "deep_cold_ocean", + "frozen_peaks", + "jagged_peaks", + "stony_peaks", + "dripstone_caves", + "deep_dark" + ] +} \ No newline at end of file diff --git a/build/resources/main/data/custom_ore_gen/tags/worldgen/biome/hot_biomes.json b/build/resources/main/data/custom_ore_gen/tags/worldgen/biome/hot_biomes.json new file mode 100644 index 000000000..dbadbec7b --- /dev/null +++ b/build/resources/main/data/custom_ore_gen/tags/worldgen/biome/hot_biomes.json @@ -0,0 +1,17 @@ +{ + "replace": false, + "values": [ + "desert", + "badlands", + "eroded_badlands", + "wooded_badlands", + "deep_lukewarm_ocean", + "lukewarm_ocean", + "mangrove_swamp", + "warm_ocean", + "bamboo_jungle", + "jungle", + "sparse_jungle", + "deep_dark" + ] +} \ No newline at end of file diff --git a/build/resources/main/data/custom_ore_gen/tags/worldgen/biome/mountain_biomes.json b/build/resources/main/data/custom_ore_gen/tags/worldgen/biome/mountain_biomes.json new file mode 100644 index 000000000..d0ebf5b64 --- /dev/null +++ b/build/resources/main/data/custom_ore_gen/tags/worldgen/biome/mountain_biomes.json @@ -0,0 +1,12 @@ +{ + "replace": false, + "values": [ + "windswept_hills", + "windswept_gravelly_hills", + "snowy_slopes", + "frozen_peaks", + "jagged_peaks", + "stony_peaks", + "meadow" + ] +} diff --git a/build/resources/main/data/custom_ore_gen/tags/worldgen/biome/rare_biomes.json b/build/resources/main/data/custom_ore_gen/tags/worldgen/biome/rare_biomes.json new file mode 100644 index 000000000..c7af1999e --- /dev/null +++ b/build/resources/main/data/custom_ore_gen/tags/worldgen/biome/rare_biomes.json @@ -0,0 +1,15 @@ +{ + "replace": false, + "values": [ + "mushroom_fields", + "sparse_jungle", + "savanna_plateau", + "sunflower_plains", + "windswept_gravelly_hills", + "cherry_grove", + "flower_forest", + "deep_dark", + "old_growth_birch_forest", + "ice_spikes" + ] +} \ No newline at end of file diff --git a/build/resources/main/data/custom_ore_gen/tags/worldgen/biome/tempered_biomes.json b/build/resources/main/data/custom_ore_gen/tags/worldgen/biome/tempered_biomes.json new file mode 100644 index 000000000..daac06564 --- /dev/null +++ b/build/resources/main/data/custom_ore_gen/tags/worldgen/biome/tempered_biomes.json @@ -0,0 +1,20 @@ +{ + "replace": false, + "values": [ + "birch_forest", + "dark_forest", + "flower_forest", + "forest", + "old_growth_birch_forest", + "windswept_forest", + "swamp", + "mushroom_fields", + "cherry_grove", + "old_growth_pine_taiga", + "windswept_gravelly_hills", + "deep_ocean", + "ocean", + "lush_caves", + "deep_dark" + ] +} \ No newline at end of file diff --git a/build/resources/main/data/custom_ore_gen/worldgen/configured_feature/concentratedcoalore.json b/build/resources/main/data/custom_ore_gen/worldgen/configured_feature/concentratedcoalore.json new file mode 100644 index 000000000..800c88bac --- /dev/null +++ b/build/resources/main/data/custom_ore_gen/worldgen/configured_feature/concentratedcoalore.json @@ -0,0 +1,18 @@ +{ + "type": "minecraft:ore", + "config": { + "size": 17, + "discard_chance_on_air_exposure": 0, + "targets": [ + { + "target": { + "predicate_type": "tag_match", + "tag": "forge:stone" + }, + "state": { + "Name": "custom_ore_gen:concentratedcoalore" + } + } + ] + } +} \ No newline at end of file diff --git a/build/resources/main/data/custom_ore_gen/worldgen/configured_feature/concentrateddiamondore.json b/build/resources/main/data/custom_ore_gen/worldgen/configured_feature/concentrateddiamondore.json new file mode 100644 index 000000000..91c45c120 --- /dev/null +++ b/build/resources/main/data/custom_ore_gen/worldgen/configured_feature/concentrateddiamondore.json @@ -0,0 +1,18 @@ +{ + "type": "minecraft:ore", + "config": { + "size": 9, + "discard_chance_on_air_exposure": 0, + "targets": [ + { + "target": { + "predicate_type": "tag_match", + "tag": "forge:stone" + }, + "state": { + "Name": "custom_ore_gen:concentrateddiamondore" + } + } + ] + } +} \ No newline at end of file diff --git a/build/resources/main/data/custom_ore_gen/worldgen/configured_feature/copperhighore.json b/build/resources/main/data/custom_ore_gen/worldgen/configured_feature/copperhighore.json new file mode 100644 index 000000000..c5ca50def --- /dev/null +++ b/build/resources/main/data/custom_ore_gen/worldgen/configured_feature/copperhighore.json @@ -0,0 +1,18 @@ +{ + "type": "minecraft:ore", + "config": { + "size": 16, + "discard_chance_on_air_exposure": 0, + "targets": [ + { + "target": { + "predicate_type": "tag_match", + "tag": "forge:stone" + }, + "state": { + "Name": "custom_ore_gen:copperhighore" + } + } + ] + } +} \ No newline at end of file diff --git a/build/resources/main/data/custom_ore_gen/worldgen/configured_feature/copperlowerore.json b/build/resources/main/data/custom_ore_gen/worldgen/configured_feature/copperlowerore.json new file mode 100644 index 000000000..b5c3c02c5 --- /dev/null +++ b/build/resources/main/data/custom_ore_gen/worldgen/configured_feature/copperlowerore.json @@ -0,0 +1,18 @@ +{ + "type": "minecraft:ore", + "config": { + "size": 9, + "discard_chance_on_air_exposure": 0, + "targets": [ + { + "target": { + "predicate_type": "tag_match", + "tag": "forge:stone" + }, + "state": { + "Name": "custom_ore_gen:copperlowerore" + } + } + ] + } +} \ No newline at end of file diff --git a/build/resources/main/data/custom_ore_gen/worldgen/configured_feature/deepslateironore.json b/build/resources/main/data/custom_ore_gen/worldgen/configured_feature/deepslateironore.json new file mode 100644 index 000000000..ff64b6583 --- /dev/null +++ b/build/resources/main/data/custom_ore_gen/worldgen/configured_feature/deepslateironore.json @@ -0,0 +1,18 @@ +{ + "type": "minecraft:ore", + "config": { + "size": 9, + "discard_chance_on_air_exposure": 0, + "targets": [ + { + "target": { + "predicate_type": "tag_match", + "tag": "forge:stone" + }, + "state": { + "Name": "custom_ore_gen:deepslateironore" + } + } + ] + } +} \ No newline at end of file diff --git a/build/resources/main/data/custom_ore_gen/worldgen/configured_feature/deepslatelapisore.json b/build/resources/main/data/custom_ore_gen/worldgen/configured_feature/deepslatelapisore.json new file mode 100644 index 000000000..0d7123ed8 --- /dev/null +++ b/build/resources/main/data/custom_ore_gen/worldgen/configured_feature/deepslatelapisore.json @@ -0,0 +1,18 @@ +{ + "type": "minecraft:ore", + "config": { + "size": 8, + "discard_chance_on_air_exposure": 0, + "targets": [ + { + "target": { + "predicate_type": "tag_match", + "tag": "forge:stone" + }, + "state": { + "Name": "custom_ore_gen:deepslatelapisore" + } + } + ] + } +} \ No newline at end of file diff --git a/build/resources/main/data/custom_ore_gen/worldgen/configured_feature/deepslatepuregoldenore.json b/build/resources/main/data/custom_ore_gen/worldgen/configured_feature/deepslatepuregoldenore.json new file mode 100644 index 000000000..d145694c3 --- /dev/null +++ b/build/resources/main/data/custom_ore_gen/worldgen/configured_feature/deepslatepuregoldenore.json @@ -0,0 +1,18 @@ +{ + "type": "minecraft:ore", + "config": { + "size": 9, + "discard_chance_on_air_exposure": 0, + "targets": [ + { + "target": { + "predicate_type": "tag_match", + "tag": "forge:stone" + }, + "state": { + "Name": "custom_ore_gen:deepslatepuregoldenore" + } + } + ] + } +} \ No newline at end of file diff --git a/build/resources/main/data/custom_ore_gen/worldgen/configured_feature/deepslateredstoneore.json b/build/resources/main/data/custom_ore_gen/worldgen/configured_feature/deepslateredstoneore.json new file mode 100644 index 000000000..a67d9507b --- /dev/null +++ b/build/resources/main/data/custom_ore_gen/worldgen/configured_feature/deepslateredstoneore.json @@ -0,0 +1,18 @@ +{ + "type": "minecraft:ore", + "config": { + "size": 8, + "discard_chance_on_air_exposure": 0, + "targets": [ + { + "target": { + "predicate_type": "tag_match", + "tag": "forge:stone" + }, + "state": { + "Name": "custom_ore_gen:deepslateredstoneore" + } + } + ] + } +} \ No newline at end of file diff --git a/build/resources/main/data/custom_ore_gen/worldgen/configured_feature/deepslatesharddiamondore.json b/build/resources/main/data/custom_ore_gen/worldgen/configured_feature/deepslatesharddiamondore.json new file mode 100644 index 000000000..007b65016 --- /dev/null +++ b/build/resources/main/data/custom_ore_gen/worldgen/configured_feature/deepslatesharddiamondore.json @@ -0,0 +1,18 @@ +{ + "type": "minecraft:ore", + "config": { + "size": 16, + "discard_chance_on_air_exposure": 0, + "targets": [ + { + "target": { + "predicate_type": "tag_match", + "tag": "forge:stone" + }, + "state": { + "Name": "custom_ore_gen:deepslatesharddiamondore" + } + } + ] + } +} \ No newline at end of file diff --git a/build/resources/main/data/custom_ore_gen/worldgen/configured_feature/highemeraldore.json b/build/resources/main/data/custom_ore_gen/worldgen/configured_feature/highemeraldore.json new file mode 100644 index 000000000..c965ba487 --- /dev/null +++ b/build/resources/main/data/custom_ore_gen/worldgen/configured_feature/highemeraldore.json @@ -0,0 +1,18 @@ +{ + "type": "minecraft:ore", + "config": { + "size": 7, + "discard_chance_on_air_exposure": 0, + "targets": [ + { + "target": { + "predicate_type": "tag_match", + "tag": "forge:stone" + }, + "state": { + "Name": "custom_ore_gen:highemeraldore" + } + } + ] + } +} \ No newline at end of file diff --git a/build/resources/main/data/custom_ore_gen/worldgen/configured_feature/ironore.json b/build/resources/main/data/custom_ore_gen/worldgen/configured_feature/ironore.json new file mode 100644 index 000000000..3a644106c --- /dev/null +++ b/build/resources/main/data/custom_ore_gen/worldgen/configured_feature/ironore.json @@ -0,0 +1,18 @@ +{ + "type": "minecraft:ore", + "config": { + "size": 9, + "discard_chance_on_air_exposure": 0, + "targets": [ + { + "target": { + "predicate_type": "tag_match", + "tag": "forge:stone" + }, + "state": { + "Name": "custom_ore_gen:ironore" + } + } + ] + } +} \ No newline at end of file diff --git a/build/resources/main/data/custom_ore_gen/worldgen/configured_feature/lapisore.json b/build/resources/main/data/custom_ore_gen/worldgen/configured_feature/lapisore.json new file mode 100644 index 000000000..2a2f2a34c --- /dev/null +++ b/build/resources/main/data/custom_ore_gen/worldgen/configured_feature/lapisore.json @@ -0,0 +1,18 @@ +{ + "type": "minecraft:ore", + "config": { + "size": 8, + "discard_chance_on_air_exposure": 0, + "targets": [ + { + "target": { + "predicate_type": "tag_match", + "tag": "forge:stone" + }, + "state": { + "Name": "custom_ore_gen:lapisore" + } + } + ] + } +} \ No newline at end of file diff --git a/build/resources/main/data/custom_ore_gen/worldgen/configured_feature/loweremeraldore.json b/build/resources/main/data/custom_ore_gen/worldgen/configured_feature/loweremeraldore.json new file mode 100644 index 000000000..8c77c6f41 --- /dev/null +++ b/build/resources/main/data/custom_ore_gen/worldgen/configured_feature/loweremeraldore.json @@ -0,0 +1,18 @@ +{ + "type": "minecraft:ore", + "config": { + "size": 7, + "discard_chance_on_air_exposure": 0, + "targets": [ + { + "target": { + "predicate_type": "tag_match", + "tag": "forge:stone" + }, + "state": { + "Name": "custom_ore_gen:loweremeraldore" + } + } + ] + } +} \ No newline at end of file diff --git a/build/resources/main/data/custom_ore_gen/worldgen/configured_feature/puregoldenore.json b/build/resources/main/data/custom_ore_gen/worldgen/configured_feature/puregoldenore.json new file mode 100644 index 000000000..3776f7c99 --- /dev/null +++ b/build/resources/main/data/custom_ore_gen/worldgen/configured_feature/puregoldenore.json @@ -0,0 +1,18 @@ +{ + "type": "minecraft:ore", + "config": { + "size": 9, + "discard_chance_on_air_exposure": 0, + "targets": [ + { + "target": { + "predicate_type": "tag_match", + "tag": "forge:stone" + }, + "state": { + "Name": "custom_ore_gen:puregoldenore" + } + } + ] + } +} \ No newline at end of file diff --git a/build/resources/main/data/custom_ore_gen/worldgen/configured_feature/redstoneore.json b/build/resources/main/data/custom_ore_gen/worldgen/configured_feature/redstoneore.json new file mode 100644 index 000000000..64dff4c18 --- /dev/null +++ b/build/resources/main/data/custom_ore_gen/worldgen/configured_feature/redstoneore.json @@ -0,0 +1,18 @@ +{ + "type": "minecraft:ore", + "config": { + "size": 8, + "discard_chance_on_air_exposure": 0, + "targets": [ + { + "target": { + "predicate_type": "tag_match", + "tag": "forge:stone" + }, + "state": { + "Name": "custom_ore_gen:redstoneore" + } + } + ] + } +} \ No newline at end of file diff --git a/build/resources/main/data/custom_ore_gen/worldgen/configured_feature/sharddiamondblockore.json b/build/resources/main/data/custom_ore_gen/worldgen/configured_feature/sharddiamondblockore.json new file mode 100644 index 000000000..4a670d5b0 --- /dev/null +++ b/build/resources/main/data/custom_ore_gen/worldgen/configured_feature/sharddiamondblockore.json @@ -0,0 +1,18 @@ +{ + "type": "minecraft:ore", + "config": { + "size": 8, + "discard_chance_on_air_exposure": 0, + "targets": [ + { + "target": { + "predicate_type": "tag_match", + "tag": "forge:stone" + }, + "state": { + "Name": "custom_ore_gen:sharddiamondblockore" + } + } + ] + } +} \ No newline at end of file diff --git a/build/resources/main/data/custom_ore_gen/worldgen/placed_feature/concentratedcoalore.json b/build/resources/main/data/custom_ore_gen/worldgen/placed_feature/concentratedcoalore.json new file mode 100644 index 000000000..cb7d32269 --- /dev/null +++ b/build/resources/main/data/custom_ore_gen/worldgen/placed_feature/concentratedcoalore.json @@ -0,0 +1,27 @@ +{ + "feature": "custom_ore_gen:concentratedcoalore", + "placement": [ + { + "type": "minecraft:count", + "count": 10 + }, + { + "type": "minecraft:in_square" + }, + { + "type": "minecraft:height_range", + "height": { + "type": "minecraft:uniform", + "min_inclusive": { + "absolute": 0 + }, + "max_inclusive": { + "absolute": 70 + } + } + }, + { + "type": "minecraft:biome" + } + ] +} \ No newline at end of file diff --git a/build/resources/main/data/custom_ore_gen/worldgen/placed_feature/concentrateddiamondore.json b/build/resources/main/data/custom_ore_gen/worldgen/placed_feature/concentrateddiamondore.json new file mode 100644 index 000000000..50611b8c5 --- /dev/null +++ b/build/resources/main/data/custom_ore_gen/worldgen/placed_feature/concentrateddiamondore.json @@ -0,0 +1,27 @@ +{ + "feature": "custom_ore_gen:concentrateddiamondore", + "placement": [ + { + "type": "minecraft:count", + "count": 1 + }, + { + "type": "minecraft:in_square" + }, + { + "type": "minecraft:height_range", + "height": { + "type": "minecraft:trapezoid", + "min_inclusive": { + "absolute": -90 + }, + "max_inclusive": { + "absolute": 0 + } + } + }, + { + "type": "minecraft:biome" + } + ] +} \ No newline at end of file diff --git a/build/resources/main/data/custom_ore_gen/worldgen/placed_feature/copperhighore.json b/build/resources/main/data/custom_ore_gen/worldgen/placed_feature/copperhighore.json new file mode 100644 index 000000000..ce6d5ced3 --- /dev/null +++ b/build/resources/main/data/custom_ore_gen/worldgen/placed_feature/copperhighore.json @@ -0,0 +1,27 @@ +{ + "feature": "custom_ore_gen:copperhighore", + "placement": [ + { + "type": "minecraft:count", + "count": 20 + }, + { + "type": "minecraft:in_square" + }, + { + "type": "minecraft:height_range", + "height": { + "type": "minecraft:uniform", + "min_inclusive": { + "absolute": 15 + }, + "max_inclusive": { + "absolute": 256 + } + } + }, + { + "type": "minecraft:biome" + } + ] +} \ No newline at end of file diff --git a/build/resources/main/data/custom_ore_gen/worldgen/placed_feature/copperlowerore.json b/build/resources/main/data/custom_ore_gen/worldgen/placed_feature/copperlowerore.json new file mode 100644 index 000000000..b0789f820 --- /dev/null +++ b/build/resources/main/data/custom_ore_gen/worldgen/placed_feature/copperlowerore.json @@ -0,0 +1,27 @@ +{ + "feature": "custom_ore_gen:copperlowerore", + "placement": [ + { + "type": "minecraft:count", + "count": 20 + }, + { + "type": "minecraft:in_square" + }, + { + "type": "minecraft:height_range", + "height": { + "type": "minecraft:uniform", + "min_inclusive": { + "absolute": -64 + }, + "max_inclusive": { + "absolute": 0 + } + } + }, + { + "type": "minecraft:biome" + } + ] +} \ No newline at end of file diff --git a/build/resources/main/data/custom_ore_gen/worldgen/placed_feature/deepslateironore.json b/build/resources/main/data/custom_ore_gen/worldgen/placed_feature/deepslateironore.json new file mode 100644 index 000000000..218d6fcbf --- /dev/null +++ b/build/resources/main/data/custom_ore_gen/worldgen/placed_feature/deepslateironore.json @@ -0,0 +1,27 @@ +{ + "feature": "custom_ore_gen:deepslateironore", + "placement": [ + { + "type": "minecraft:count", + "count": 20 + }, + { + "type": "minecraft:in_square" + }, + { + "type": "minecraft:height_range", + "height": { + "type": "minecraft:uniform", + "min_inclusive": { + "absolute": -64 + }, + "max_inclusive": { + "absolute": 0 + } + } + }, + { + "type": "minecraft:biome" + } + ] +} \ No newline at end of file diff --git a/build/resources/main/data/custom_ore_gen/worldgen/placed_feature/deepslatelapisore.json b/build/resources/main/data/custom_ore_gen/worldgen/placed_feature/deepslatelapisore.json new file mode 100644 index 000000000..34fa4284d --- /dev/null +++ b/build/resources/main/data/custom_ore_gen/worldgen/placed_feature/deepslatelapisore.json @@ -0,0 +1,27 @@ +{ + "feature": "custom_ore_gen:deepslatelapisore", + "placement": [ + { + "type": "minecraft:count", + "count": 10 + }, + { + "type": "minecraft:in_square" + }, + { + "type": "minecraft:height_range", + "height": { + "type": "minecraft:uniform", + "min_inclusive": { + "absolute": -20 + }, + "max_inclusive": { + "absolute": 10 + } + } + }, + { + "type": "minecraft:biome" + } + ] +} \ No newline at end of file diff --git a/build/resources/main/data/custom_ore_gen/worldgen/placed_feature/deepslatepuregoldenore.json b/build/resources/main/data/custom_ore_gen/worldgen/placed_feature/deepslatepuregoldenore.json new file mode 100644 index 000000000..c8e8c9223 --- /dev/null +++ b/build/resources/main/data/custom_ore_gen/worldgen/placed_feature/deepslatepuregoldenore.json @@ -0,0 +1,27 @@ +{ + "feature": "custom_ore_gen:deepslatepuregoldenore", + "placement": [ + { + "type": "minecraft:count", + "count": 4 + }, + { + "type": "minecraft:in_square" + }, + { + "type": "minecraft:height_range", + "height": { + "type": "minecraft:trapezoid", + "min_inclusive": { + "absolute": -64 + }, + "max_inclusive": { + "absolute": 0 + } + } + }, + { + "type": "minecraft:biome" + } + ] +} \ No newline at end of file diff --git a/build/resources/main/data/custom_ore_gen/worldgen/placed_feature/deepslateredstoneore.json b/build/resources/main/data/custom_ore_gen/worldgen/placed_feature/deepslateredstoneore.json new file mode 100644 index 000000000..7f46fa33a --- /dev/null +++ b/build/resources/main/data/custom_ore_gen/worldgen/placed_feature/deepslateredstoneore.json @@ -0,0 +1,27 @@ +{ + "feature": "custom_ore_gen:deepslateredstoneore", + "placement": [ + { + "type": "minecraft:count", + "count": 10 + }, + { + "type": "minecraft:in_square" + }, + { + "type": "minecraft:height_range", + "height": { + "type": "minecraft:trapezoid", + "min_inclusive": { + "absolute": -80 + }, + "max_inclusive": { + "absolute": -30 + } + } + }, + { + "type": "minecraft:biome" + } + ] +} \ No newline at end of file diff --git a/build/resources/main/data/custom_ore_gen/worldgen/placed_feature/deepslatesharddiamondore.json b/build/resources/main/data/custom_ore_gen/worldgen/placed_feature/deepslatesharddiamondore.json new file mode 100644 index 000000000..5c537c223 --- /dev/null +++ b/build/resources/main/data/custom_ore_gen/worldgen/placed_feature/deepslatesharddiamondore.json @@ -0,0 +1,27 @@ +{ + "feature": "custom_ore_gen:deepslatesharddiamondore", + "placement": [ + { + "type": "minecraft:count", + "count": 1 + }, + { + "type": "minecraft:in_square" + }, + { + "type": "minecraft:height_range", + "height": { + "type": "minecraft:trapezoid", + "min_inclusive": { + "absolute": -70 + }, + "max_inclusive": { + "absolute": -35 + } + } + }, + { + "type": "minecraft:biome" + } + ] +} \ No newline at end of file diff --git a/build/resources/main/data/custom_ore_gen/worldgen/placed_feature/highemeraldore.json b/build/resources/main/data/custom_ore_gen/worldgen/placed_feature/highemeraldore.json new file mode 100644 index 000000000..befedd2c1 --- /dev/null +++ b/build/resources/main/data/custom_ore_gen/worldgen/placed_feature/highemeraldore.json @@ -0,0 +1,27 @@ +{ + "feature": "custom_ore_gen:highemeraldore", + "placement": [ + { + "type": "minecraft:count", + "count": 4 + }, + { + "type": "minecraft:in_square" + }, + { + "type": "minecraft:height_range", + "height": { + "type": "minecraft:uniform", + "min_inclusive": { + "absolute": 0 + }, + "max_inclusive": { + "absolute": 64 + } + } + }, + { + "type": "minecraft:biome" + } + ] +} \ No newline at end of file diff --git a/build/resources/main/data/custom_ore_gen/worldgen/placed_feature/ironore.json b/build/resources/main/data/custom_ore_gen/worldgen/placed_feature/ironore.json new file mode 100644 index 000000000..f6e9a1ab0 --- /dev/null +++ b/build/resources/main/data/custom_ore_gen/worldgen/placed_feature/ironore.json @@ -0,0 +1,27 @@ +{ + "feature": "custom_ore_gen:ironore", + "placement": [ + { + "type": "minecraft:count", + "count": 20 + }, + { + "type": "minecraft:in_square" + }, + { + "type": "minecraft:height_range", + "height": { + "type": "minecraft:uniform", + "min_inclusive": { + "absolute": 0 + }, + "max_inclusive": { + "absolute": 100 + } + } + }, + { + "type": "minecraft:biome" + } + ] +} \ No newline at end of file diff --git a/build/resources/main/data/custom_ore_gen/worldgen/placed_feature/lapisore.json b/build/resources/main/data/custom_ore_gen/worldgen/placed_feature/lapisore.json new file mode 100644 index 000000000..c3ddf1ac8 --- /dev/null +++ b/build/resources/main/data/custom_ore_gen/worldgen/placed_feature/lapisore.json @@ -0,0 +1,27 @@ +{ + "feature": "custom_ore_gen:lapisore", + "placement": [ + { + "type": "minecraft:count", + "count": 1 + }, + { + "type": "minecraft:in_square" + }, + { + "type": "minecraft:height_range", + "height": { + "type": "minecraft:trapezoid", + "min_inclusive": { + "absolute": -10 + }, + "max_inclusive": { + "absolute": 20 + } + } + }, + { + "type": "minecraft:biome" + } + ] +} \ No newline at end of file diff --git a/build/resources/main/data/custom_ore_gen/worldgen/placed_feature/loweremeraldore.json b/build/resources/main/data/custom_ore_gen/worldgen/placed_feature/loweremeraldore.json new file mode 100644 index 000000000..0732557df --- /dev/null +++ b/build/resources/main/data/custom_ore_gen/worldgen/placed_feature/loweremeraldore.json @@ -0,0 +1,27 @@ +{ + "feature": "custom_ore_gen:loweremeraldore", + "placement": [ + { + "type": "minecraft:count", + "count": 1 + }, + { + "type": "minecraft:in_square" + }, + { + "type": "minecraft:height_range", + "height": { + "type": "minecraft:trapezoid", + "min_inclusive": { + "absolute": -64 + }, + "max_inclusive": { + "absolute": 0 + } + } + }, + { + "type": "minecraft:biome" + } + ] +} \ No newline at end of file diff --git a/build/resources/main/data/custom_ore_gen/worldgen/placed_feature/puregoldenore.json b/build/resources/main/data/custom_ore_gen/worldgen/placed_feature/puregoldenore.json new file mode 100644 index 000000000..2f083af4b --- /dev/null +++ b/build/resources/main/data/custom_ore_gen/worldgen/placed_feature/puregoldenore.json @@ -0,0 +1,27 @@ +{ + "feature": "custom_ore_gen:puregoldenore", + "placement": [ + { + "type": "minecraft:count", + "count": 4 + }, + { + "type": "minecraft:in_square" + }, + { + "type": "minecraft:height_range", + "height": { + "type": "minecraft:uniform", + "min_inclusive": { + "absolute": 0 + }, + "max_inclusive": { + "absolute": 256 + } + } + }, + { + "type": "minecraft:biome" + } + ] +} \ No newline at end of file diff --git a/build/resources/main/data/custom_ore_gen/worldgen/placed_feature/redstoneore.json b/build/resources/main/data/custom_ore_gen/worldgen/placed_feature/redstoneore.json new file mode 100644 index 000000000..42c87ea75 --- /dev/null +++ b/build/resources/main/data/custom_ore_gen/worldgen/placed_feature/redstoneore.json @@ -0,0 +1,27 @@ +{ + "feature": "custom_ore_gen:redstoneore", + "placement": [ + { + "type": "minecraft:count", + "count": 8 + }, + { + "type": "minecraft:in_square" + }, + { + "type": "minecraft:height_range", + "height": { + "type": "minecraft:trapezoid", + "min_inclusive": { + "absolute": -10 + }, + "max_inclusive": { + "absolute": 20 + } + } + }, + { + "type": "minecraft:biome" + } + ] +} \ No newline at end of file diff --git a/build/resources/main/data/custom_ore_gen/worldgen/placed_feature/sharddiamondblockore.json b/build/resources/main/data/custom_ore_gen/worldgen/placed_feature/sharddiamondblockore.json new file mode 100644 index 000000000..618d2be6c --- /dev/null +++ b/build/resources/main/data/custom_ore_gen/worldgen/placed_feature/sharddiamondblockore.json @@ -0,0 +1,27 @@ +{ + "feature": "custom_ore_gen:sharddiamondblockore", + "placement": [ + { + "type": "minecraft:count", + "count": 1 + }, + { + "type": "minecraft:in_square" + }, + { + "type": "minecraft:height_range", + "height": { + "type": "minecraft:uniform", + "min_inclusive": { + "absolute": 0 + }, + "max_inclusive": { + "absolute": 15 + } + } + }, + { + "type": "minecraft:biome" + } + ] +} \ No newline at end of file diff --git a/build/resources/main/data/minecraft/tags/blocks/dirt.json b/build/resources/main/data/minecraft/tags/blocks/dirt.json new file mode 100644 index 000000000..5e8aecc98 --- /dev/null +++ b/build/resources/main/data/minecraft/tags/blocks/dirt.json @@ -0,0 +1,4 @@ +{ + "replace": false, + "values": [] +} \ No newline at end of file diff --git a/build/resources/main/data/minecraft/tags/blocks/logs.json b/build/resources/main/data/minecraft/tags/blocks/logs.json new file mode 100644 index 000000000..5e8aecc98 --- /dev/null +++ b/build/resources/main/data/minecraft/tags/blocks/logs.json @@ -0,0 +1,4 @@ +{ + "replace": false, + "values": [] +} \ No newline at end of file diff --git a/build/resources/main/data/minecraft/tags/blocks/mineable/pickaxe.json b/build/resources/main/data/minecraft/tags/blocks/mineable/pickaxe.json new file mode 100644 index 000000000..deba1de26 --- /dev/null +++ b/build/resources/main/data/minecraft/tags/blocks/mineable/pickaxe.json @@ -0,0 +1,21 @@ +{ + "replace": false, + "values": [ + "custom_ore_gen:deepslateironore", + "custom_ore_gen:ironore", + "custom_ore_gen:loweremeraldore", + "custom_ore_gen:highemeraldore", + "custom_ore_gen:copperlowerore", + "custom_ore_gen:copperhighore", + "custom_ore_gen:deepslateredstoneore", + "custom_ore_gen:redstoneore", + "custom_ore_gen:deepslatelapisore", + "custom_ore_gen:lapisore", + "custom_ore_gen:concentrateddiamondore", + "custom_ore_gen:deepslatesharddiamondore", + "custom_ore_gen:concentratedcoalore", + "custom_ore_gen:deepslatepuregoldenore", + "custom_ore_gen:puregoldenore", + "custom_ore_gen:sharddiamondblockore" + ] +} \ No newline at end of file diff --git a/build/resources/main/data/minecraft/tags/blocks/needs_iron_tool.json b/build/resources/main/data/minecraft/tags/blocks/needs_iron_tool.json new file mode 100644 index 000000000..c9d74b86b --- /dev/null +++ b/build/resources/main/data/minecraft/tags/blocks/needs_iron_tool.json @@ -0,0 +1,14 @@ +{ + "replace": false, + "values": [ + "custom_ore_gen:loweremeraldore", + "custom_ore_gen:highemeraldore", + "custom_ore_gen:copperhighore", + "custom_ore_gen:deepslateredstoneore", + "custom_ore_gen:redstoneore", + "custom_ore_gen:concentrateddiamondore", + "custom_ore_gen:deepslatesharddiamondore", + "custom_ore_gen:deepslatepuregoldenore", + "custom_ore_gen:sharddiamondblockore" + ] +} \ No newline at end of file diff --git a/build/resources/main/data/minecraft/tags/blocks/needs_stone_tool.json b/build/resources/main/data/minecraft/tags/blocks/needs_stone_tool.json new file mode 100644 index 000000000..088bf9e0a --- /dev/null +++ b/build/resources/main/data/minecraft/tags/blocks/needs_stone_tool.json @@ -0,0 +1,10 @@ +{ + "replace": false, + "values": [ + "custom_ore_gen:deepslateironore", + "custom_ore_gen:ironore", + "custom_ore_gen:copperlowerore", + "custom_ore_gen:deepslatelapisore", + "custom_ore_gen:lapisore" + ] +} \ No newline at end of file diff --git a/build/resources/main/data/minecraft/tags/items/axes.json b/build/resources/main/data/minecraft/tags/items/axes.json new file mode 100644 index 000000000..da3aa6ced --- /dev/null +++ b/build/resources/main/data/minecraft/tags/items/axes.json @@ -0,0 +1,6 @@ +{ + "replace": false, + "values": [ + "custom_ore_gen:sharddiamondaxe" + ] +} \ No newline at end of file diff --git a/build/resources/main/data/minecraft/tags/items/pickaxes.json b/build/resources/main/data/minecraft/tags/items/pickaxes.json new file mode 100644 index 000000000..84737de46 --- /dev/null +++ b/build/resources/main/data/minecraft/tags/items/pickaxes.json @@ -0,0 +1,6 @@ +{ + "replace": false, + "values": [ + "custom_ore_gen:sharddiamondpickaxe" + ] +} \ No newline at end of file diff --git a/build/resources/main/data/minecraft/tags/items/shovels.json b/build/resources/main/data/minecraft/tags/items/shovels.json new file mode 100644 index 000000000..777105900 --- /dev/null +++ b/build/resources/main/data/minecraft/tags/items/shovels.json @@ -0,0 +1,6 @@ +{ + "replace": false, + "values": [ + "custom_ore_gen:sharddiamondshovel" + ] +} \ No newline at end of file diff --git a/build/resources/main/pack.mcmeta b/build/resources/main/pack.mcmeta new file mode 100644 index 000000000..87731c929 --- /dev/null +++ b/build/resources/main/pack.mcmeta @@ -0,0 +1,6 @@ +{ + "pack": { + "pack_format": 15, + "description": "Changement de la distribution des ressources sur Minecraft, ne pas utilisĂ© seul sans KubeJS" + } +} \ No newline at end of file diff --git a/build/tmp/compileJava/previous-compilation-data.bin b/build/tmp/compileJava/previous-compilation-data.bin new file mode 100644 index 000000000..e67d3ee33 Binary files /dev/null and b/build/tmp/compileJava/previous-compilation-data.bin differ diff --git a/custom_ore_gen.mcreator b/custom_ore_gen.mcreator new file mode 100644 index 000000000..d2f585de1 --- /dev/null +++ b/custom_ore_gen.mcreator @@ -0,0 +1,849 @@ +{ + "mod_elements": [ + { + "name": "Diamondshard", + "type": "item", + "compiles": true, + "locked_code": false, + "registry_name": "diamondshard", + "metadata": { + "files": [ + "src/main/java/net/mcreator/customoregen/item/DiamondshardItem.java", + "src/main/resources/assets/custom_ore_gen/models/item/diamondshard.json" + ] + }, + "path": "~/Diamond_shard" + }, + { + "name": "Diamondshardtodiamond", + "type": "recipe", + "compiles": true, + "locked_code": false, + "registry_name": "diamondshardtodiamond", + "metadata": { + "files": [ + "src/main/resources/data/custom_ore_gen/recipes/diamondshardtodiamond.json" + ] + }, + "path": "~/Diamond_shard" + }, + { + "name": "Sharddiamondblockore", + "type": "block", + "compiles": true, + "locked_code": false, + "registry_name": "sharddiamondblockore", + "metadata": { + "files": [ + "src/main/resources/data/custom_ore_gen/worldgen/placed_feature/sharddiamondblockore.json", + "src/main/resources/assets/custom_ore_gen/blockstates/sharddiamondblockore.json", + "src/main/java/net/mcreator/customoregen/block/SharddiamondblockoreBlock.java", + "src/main/resources/assets/custom_ore_gen/models/item/sharddiamondblockore.json", + "src/main/resources/data/custom_ore_gen/forge/biome_modifier/sharddiamondblockore_biome_modifier.json", + "src/main/resources/assets/custom_ore_gen/models/block/sharddiamondblockore.json", + "src/main/resources/data/custom_ore_gen/worldgen/configured_feature/sharddiamondblockore.json" + ] + }, + "path": "~/Diamond_shard" + }, + { + "name": "Puregoldenore", + "type": "block", + "compiles": true, + "locked_code": false, + "registry_name": "puregoldenore", + "metadata": { + "files": [ + "src/main/java/net/mcreator/customoregen/block/PuregoldenoreBlock.java", + "src/main/resources/data/custom_ore_gen/worldgen/configured_feature/puregoldenore.json", + "src/main/resources/data/custom_ore_gen/forge/biome_modifier/puregoldenore_biome_modifier.json", + "src/main/resources/assets/custom_ore_gen/models/block/puregoldenore.json", + "src/main/resources/assets/custom_ore_gen/models/item/puregoldenore.json", + "src/main/resources/data/custom_ore_gen/worldgen/placed_feature/puregoldenore.json", + "src/main/resources/assets/custom_ore_gen/blockstates/puregoldenore.json" + ] + }, + "path": "~/Gold_ore" + }, + { + "name": "Deepslatepuregoldenore", + "type": "block", + "compiles": true, + "locked_code": false, + "registry_name": "deepslatepuregoldenore", + "metadata": { + "files": [ + "src/main/resources/data/custom_ore_gen/worldgen/placed_feature/deepslatepuregoldenore.json", + "src/main/resources/assets/custom_ore_gen/blockstates/deepslatepuregoldenore.json", + "src/main/java/net/mcreator/customoregen/block/DeepslatepuregoldenoreBlock.java", + "src/main/resources/data/custom_ore_gen/worldgen/configured_feature/deepslatepuregoldenore.json", + "src/main/resources/assets/custom_ore_gen/models/item/deepslatepuregoldenore.json", + "src/main/resources/assets/custom_ore_gen/models/block/deepslatepuregoldenore.json", + "src/main/resources/data/custom_ore_gen/forge/biome_modifier/deepslatepuregoldenore_biome_modifier.json" + ] + }, + "path": "~/Gold_ore" + }, + { + "name": "Deepslatepuregoldenoretable", + "type": "loottable", + "compiles": true, + "locked_code": false, + "registry_name": "deepslatepuregoldenoretable", + "metadata": { + "files": [ + "src/main/resources/data/custom_ore_gen/loot_tables/blocks/puregoldenore.json" + ] + }, + "path": "~/Gold_ore" + }, + { + "name": "Puregoldenoretable", + "type": "loottable", + "compiles": true, + "locked_code": false, + "registry_name": "puregoldenoretable", + "metadata": { + "files": [ + "src/main/resources/data/custom_ore_gen/loot_tables/blocks/deepslatepuregoldenore.json" + ] + }, + "path": "~/Gold_ore" + }, + { + "name": "Concentratedcoalore", + "type": "block", + "compiles": true, + "locked_code": false, + "registry_name": "concentratedcoalore", + "metadata": { + "files": [ + "src/main/java/net/mcreator/customoregen/block/ConcentratedcoaloreBlock.java", + "src/main/resources/assets/custom_ore_gen/models/block/concentratedcoalore.json", + "src/main/resources/data/custom_ore_gen/worldgen/placed_feature/concentratedcoalore.json", + "src/main/resources/assets/custom_ore_gen/models/item/concentratedcoalore.json", + "src/main/resources/data/custom_ore_gen/forge/biome_modifier/concentratedcoalore_biome_modifier.json", + "src/main/resources/assets/custom_ore_gen/blockstates/concentratedcoalore.json", + "src/main/resources/data/custom_ore_gen/worldgen/configured_feature/concentratedcoalore.json" + ] + }, + "path": "~/coal_ore" + }, + { + "name": "Concentratedcoaloretable", + "type": "loottable", + "compiles": true, + "locked_code": false, + "registry_name": "concentratedcoaloretable", + "metadata": { + "files": [ + "src/main/resources/data/custom_ore_gen/loot_tables/blocks/concentratedcoalore.json" + ] + }, + "path": "~/coal_ore" + }, + { + "name": "Deepslatesharddiamondore", + "type": "block", + "compiles": true, + "locked_code": false, + "registry_name": "deepslatesharddiamondore", + "metadata": { + "files": [ + "src/main/resources/data/custom_ore_gen/worldgen/placed_feature/deepslatesharddiamondore.json", + "src/main/resources/assets/custom_ore_gen/models/item/deepslatesharddiamondore.json", + "src/main/resources/assets/custom_ore_gen/blockstates/deepslatesharddiamondore.json", + "src/main/resources/assets/custom_ore_gen/models/block/deepslatesharddiamondore.json", + "src/main/resources/data/custom_ore_gen/forge/biome_modifier/deepslatesharddiamondore_biome_modifier.json", + "src/main/resources/data/custom_ore_gen/worldgen/configured_feature/deepslatesharddiamondore.json", + "src/main/java/net/mcreator/customoregen/block/DeepslatesharddiamondoreBlock.java" + ] + }, + "path": "~/Diamond_shard" + }, + { + "name": "Sharddiamondore", + "type": "loottable", + "compiles": true, + "locked_code": false, + "registry_name": "sharddiamondore", + "metadata": { + "files": [ + "src/main/resources/data/custom_ore_gen/loot_tables/blocks/sharddiamondblockore.json" + ] + }, + "path": "~/Diamond_shard" + }, + { + "name": "Deepslatesharddiamondtable", + "type": "loottable", + "compiles": true, + "locked_code": false, + "registry_name": "deepslatesharddiamondtable", + "metadata": { + "files": [ + "src/main/resources/data/custom_ore_gen/loot_tables/blocks/deepslatesharddiamondore.json" + ] + }, + "path": "~/Diamond_shard" + }, + { + "name": "Concentrateddiamondore", + "type": "block", + "compiles": true, + "locked_code": false, + "registry_name": "concentrateddiamondore", + "metadata": { + "files": [ + "src/main/java/net/mcreator/customoregen/block/ConcentrateddiamondoreBlock.java", + "src/main/resources/data/custom_ore_gen/worldgen/configured_feature/concentrateddiamondore.json", + "src/main/resources/assets/custom_ore_gen/models/block/concentrateddiamondore.json", + "src/main/resources/assets/custom_ore_gen/models/item/concentrateddiamondore.json", + "src/main/resources/assets/custom_ore_gen/blockstates/concentrateddiamondore.json", + "src/main/resources/data/custom_ore_gen/forge/biome_modifier/concentrateddiamondore_biome_modifier.json", + "src/main/resources/data/custom_ore_gen/worldgen/placed_feature/concentrateddiamondore.json" + ] + }, + "path": "~/Diamond_shard" + }, + { + "name": "Concentrateddiamondloottable", + "type": "loottable", + "compiles": true, + "locked_code": false, + "registry_name": "concentrateddiamondloottable", + "metadata": { + "files": [ + "src/main/resources/data/custom_ore_gen/loot_tables/blocks/concentrateddiamondore.json" + ] + }, + "path": "~/Diamond_shard" + }, + { + "name": "Lapisore", + "type": "block", + "compiles": true, + "locked_code": false, + "registry_name": "lapisore", + "metadata": { + "files": [ + "src/main/resources/data/custom_ore_gen/forge/biome_modifier/lapisore_biome_modifier.json", + "src/main/resources/assets/custom_ore_gen/models/item/lapisore.json", + "src/main/resources/data/custom_ore_gen/worldgen/configured_feature/lapisore.json", + "src/main/java/net/mcreator/customoregen/block/LapisoreBlock.java", + "src/main/resources/assets/custom_ore_gen/blockstates/lapisore.json", + "src/main/resources/data/custom_ore_gen/worldgen/placed_feature/lapisore.json", + "src/main/resources/assets/custom_ore_gen/models/block/lapisore.json" + ] + }, + "path": "~/lapis_ore" + }, + { + "name": "Deepslatelapisore", + "type": "block", + "compiles": true, + "locked_code": false, + "registry_name": "deepslatelapisore", + "metadata": { + "files": [ + "src/main/java/net/mcreator/customoregen/block/DeepslatelapisoreBlock.java", + "src/main/resources/assets/custom_ore_gen/models/item/deepslatelapisore.json", + "src/main/resources/assets/custom_ore_gen/blockstates/deepslatelapisore.json", + "src/main/resources/data/custom_ore_gen/forge/biome_modifier/deepslatelapisore_biome_modifier.json", + "src/main/resources/data/custom_ore_gen/worldgen/placed_feature/deepslatelapisore.json", + "src/main/resources/assets/custom_ore_gen/models/block/deepslatelapisore.json", + "src/main/resources/data/custom_ore_gen/worldgen/configured_feature/deepslatelapisore.json" + ] + }, + "path": "~/lapis_ore" + }, + { + "name": "Lapisoretable", + "type": "loottable", + "compiles": true, + "locked_code": false, + "registry_name": "lapisoretable", + "metadata": { + "files": [ + "src/main/resources/data/custom_ore_gen/loot_tables/blocks/lapisore.json" + ] + }, + "path": "~/lapis_ore" + }, + { + "name": "Redstoneore", + "type": "block", + "compiles": true, + "locked_code": false, + "registry_name": "redstoneore", + "metadata": { + "files": [ + "src/main/java/net/mcreator/customoregen/block/RedstoneoreBlock.java", + "src/main/resources/data/custom_ore_gen/forge/biome_modifier/redstoneore_biome_modifier.json", + "src/main/resources/assets/custom_ore_gen/models/item/redstoneore.json", + "src/main/resources/data/custom_ore_gen/worldgen/placed_feature/redstoneore.json", + "src/main/resources/assets/custom_ore_gen/models/block/redstoneore.json", + "src/main/resources/data/custom_ore_gen/worldgen/configured_feature/redstoneore.json", + "src/main/resources/assets/custom_ore_gen/blockstates/redstoneore.json" + ] + }, + "path": "~/redstone_ore" + }, + { + "name": "Redstoneoretable", + "type": "loottable", + "compiles": true, + "locked_code": false, + "registry_name": "redstoneoretable", + "metadata": { + "files": [ + "src/main/resources/data/custom_ore_gen/loot_tables/blocks/redstoneore.json" + ] + }, + "path": "~/redstone_ore" + }, + { + "name": "Deepslateredstoneore", + "type": "block", + "compiles": true, + "locked_code": false, + "registry_name": "deepslateredstoneore", + "metadata": { + "files": [ + "src/main/java/net/mcreator/customoregen/block/DeepslateredstoneoreBlock.java", + "src/main/resources/data/custom_ore_gen/worldgen/configured_feature/deepslateredstoneore.json", + "src/main/resources/assets/custom_ore_gen/models/block/deepslateredstoneore.json", + "src/main/resources/data/custom_ore_gen/worldgen/placed_feature/deepslateredstoneore.json", + "src/main/resources/assets/custom_ore_gen/blockstates/deepslateredstoneore.json", + "src/main/resources/data/custom_ore_gen/forge/biome_modifier/deepslateredstoneore_biome_modifier.json", + "src/main/resources/assets/custom_ore_gen/models/item/deepslateredstoneore.json" + ] + }, + "path": "~/redstone_ore" + }, + { + "name": "Deepslateredstonetable", + "type": "loottable", + "compiles": true, + "locked_code": false, + "registry_name": "deepslateredstonetable", + "metadata": { + "files": [ + "src/main/resources/data/custom_ore_gen/loot_tables/blocks/deepslateredstoneore.json" + ] + }, + "path": "~/redstone_ore" + }, + { + "name": "Copperhighore", + "type": "block", + "compiles": true, + "locked_code": false, + "registry_name": "copperhighore", + "metadata": { + "files": [ + "src/main/resources/assets/custom_ore_gen/blockstates/copperhighore.json", + "src/main/resources/data/custom_ore_gen/worldgen/placed_feature/copperhighore.json", + "src/main/resources/assets/custom_ore_gen/models/item/copperhighore.json", + "src/main/java/net/mcreator/customoregen/block/CopperhighoreBlock.java", + "src/main/resources/data/custom_ore_gen/loot_tables/blocks/copperhighore.json", + "src/main/resources/data/custom_ore_gen/forge/biome_modifier/copperhighore_biome_modifier.json", + "src/main/resources/assets/custom_ore_gen/models/block/copperhighore.json", + "src/main/resources/data/custom_ore_gen/worldgen/configured_feature/copperhighore.json" + ] + }, + "path": "~/Copper_ore" + }, + { + "name": "Copperlowerore", + "type": "block", + "compiles": true, + "locked_code": false, + "registry_name": "copperlowerore", + "metadata": { + "files": [ + "src/main/resources/data/custom_ore_gen/forge/biome_modifier/copperlowerore_biome_modifier.json", + "src/main/resources/data/custom_ore_gen/worldgen/placed_feature/copperlowerore.json", + "src/main/resources/assets/custom_ore_gen/models/block/copperlowerore.json", + "src/main/resources/data/custom_ore_gen/worldgen/configured_feature/copperlowerore.json", + "src/main/java/net/mcreator/customoregen/block/CopperloweroreBlock.java", + "src/main/resources/assets/custom_ore_gen/models/item/copperlowerore.json", + "src/main/resources/assets/custom_ore_gen/blockstates/copperlowerore.json" + ] + }, + "path": "~/Copper_ore" + }, + { + "name": "Highcopperoretable", + "type": "loottable", + "compiles": true, + "locked_code": false, + "registry_name": "highcopperoretable", + "metadata": { + "files": [ + "src/main/resources/data/custom_ore_gen/loot_tables/blocks/copperhighore.json" + ] + }, + "path": "~/Copper_ore" + }, + { + "name": "Lowercopperoretable", + "type": "loottable", + "compiles": true, + "locked_code": false, + "registry_name": "lowercopperoretable", + "metadata": { + "files": [ + "src/main/resources/data/custom_ore_gen/loot_tables/blocks/copperlowerore.json" + ] + }, + "path": "~/Copper_ore" + }, + { + "name": "Highemeraldore", + "type": "block", + "compiles": true, + "locked_code": false, + "registry_name": "highemeraldore", + "metadata": { + "files": [ + "src/main/resources/data/custom_ore_gen/worldgen/placed_feature/highemeraldore.json", + "src/main/resources/assets/custom_ore_gen/blockstates/highemeraldore.json", + "src/main/java/net/mcreator/customoregen/block/HighemeraldoreBlock.java", + "src/main/resources/data/custom_ore_gen/worldgen/configured_feature/highemeraldore.json", + "src/main/resources/data/custom_ore_gen/forge/biome_modifier/highemeraldore_biome_modifier.json", + "src/main/resources/assets/custom_ore_gen/models/item/highemeraldore.json", + "src/main/resources/assets/custom_ore_gen/models/block/highemeraldore.json" + ] + }, + "path": "~/Emerald" + }, + { + "name": "Loweremeraldore", + "type": "block", + "compiles": true, + "locked_code": false, + "registry_name": "loweremeraldore", + "metadata": { + "files": [ + "src/main/resources/assets/custom_ore_gen/blockstates/loweremeraldore.json", + "src/main/java/net/mcreator/customoregen/block/LoweremeraldoreBlock.java", + "src/main/resources/assets/custom_ore_gen/models/item/loweremeraldore.json", + "src/main/resources/assets/custom_ore_gen/models/block/loweremeraldore.json", + "src/main/resources/data/custom_ore_gen/forge/biome_modifier/loweremeraldore_biome_modifier.json", + "src/main/resources/data/custom_ore_gen/worldgen/placed_feature/loweremeraldore.json", + "src/main/resources/data/custom_ore_gen/worldgen/configured_feature/loweremeraldore.json" + ] + }, + "path": "~/Emerald" + }, + { + "name": "Emeraldoretable", + "type": "loottable", + "compiles": true, + "locked_code": false, + "registry_name": "emeraldoretable", + "metadata": { + "files": [ + "src/main/resources/data/custom_ore_gen/loot_tables/blocks/highemeraldore.json" + ] + }, + "path": "~/Emerald" + }, + { + "name": "Deepslateemeraldore", + "type": "loottable", + "compiles": true, + "locked_code": false, + "registry_name": "deepslateemeraldore", + "metadata": { + "files": [ + "src/main/resources/data/custom_ore_gen/loot_tables/blocks/loweremeraldore.json" + ] + }, + "path": "~/Emerald" + }, + { + "name": "Deepslatelapisoretable", + "type": "loottable", + "compiles": true, + "locked_code": false, + "registry_name": "deepslatelapisoretable", + "metadata": { + "files": [ + "src/main/resources/data/custom_ore_gen/loot_tables/blocks/deepslatelapisore.json" + ] + }, + "path": "~/lapis_ore" + }, + { + "name": "Sharddiamondpickaxe", + "type": "tool", + "compiles": true, + "locked_code": false, + "registry_name": "sharddiamondpickaxe", + "metadata": { + "files": [ + "src/main/java/net/mcreator/customoregen/item/SharddiamondpickaxeItem.java", + "src/main/resources/assets/custom_ore_gen/models/item/sharddiamondpickaxe.json" + ] + }, + "path": "~/Diamond_shard" + }, + { + "name": "Sharddiamondshovel", + "type": "tool", + "compiles": true, + "locked_code": false, + "registry_name": "sharddiamondshovel", + "metadata": { + "files": [ + "src/main/resources/assets/custom_ore_gen/models/item/sharddiamondshovel.json", + "src/main/java/net/mcreator/customoregen/item/SharddiamondshovelItem.java" + ] + }, + "path": "~/Diamond_shard" + }, + { + "name": "Sharddiamondaxe", + "type": "tool", + "compiles": true, + "locked_code": false, + "registry_name": "sharddiamondaxe", + "metadata": { + "files": [ + "src/main/java/net/mcreator/customoregen/item/SharddiamondaxeItem.java", + "src/main/resources/assets/custom_ore_gen/models/item/sharddiamondaxe.json" + ] + }, + "path": "~/Diamond_shard" + }, + { + "name": "Ironore", + "type": "block", + "compiles": true, + "locked_code": false, + "registry_name": "ironore", + "metadata": { + "files": [ + "src/main/resources/assets/custom_ore_gen/models/block/ironore.json", + "src/main/java/net/mcreator/customoregen/block/IronoreBlock.java", + "src/main/resources/data/custom_ore_gen/forge/biome_modifier/ironore_biome_modifier.json", + "src/main/resources/data/custom_ore_gen/worldgen/configured_feature/ironore.json", + "src/main/resources/assets/custom_ore_gen/models/item/ironore.json", + "src/main/resources/assets/custom_ore_gen/blockstates/ironore.json", + "src/main/resources/data/custom_ore_gen/worldgen/placed_feature/ironore.json" + ] + }, + "path": "~/iron_ore" + }, + { + "name": "Deepslateironore", + "type": "block", + "compiles": true, + "locked_code": false, + "registry_name": "deepslateironore", + "metadata": { + "files": [ + "src/main/resources/data/custom_ore_gen/worldgen/configured_feature/deepslateironore.json", + "src/main/resources/assets/custom_ore_gen/blockstates/deepslateironore.json", + "src/main/resources/assets/custom_ore_gen/models/block/deepslateironore.json", + "src/main/resources/data/custom_ore_gen/forge/biome_modifier/deepslateironore_biome_modifier.json", + "src/main/resources/assets/custom_ore_gen/models/item/deepslateironore.json", + "src/main/java/net/mcreator/customoregen/block/DeepslateironoreBlock.java", + "src/main/resources/data/custom_ore_gen/worldgen/placed_feature/deepslateironore.json" + ] + }, + "path": "~/iron_ore" + }, + { + "name": "Ironoretable", + "type": "loottable", + "compiles": true, + "locked_code": false, + "registry_name": "ironoretable", + "metadata": { + "files": [ + "src/main/resources/data/custom_ore_gen/loot_tables/blocks/ironore.json" + ] + }, + "path": "~/iron_ore" + }, + { + "name": "Deepslateirontable", + "type": "loottable", + "compiles": true, + "locked_code": false, + "registry_name": "deepslateirontable", + "metadata": { + "files": [ + "src/main/resources/data/custom_ore_gen/loot_tables/blocks/deepslateironore.json" + ] + }, + "path": "~/iron_ore" + }, + { + "name": "Pickaxecraft", + "type": "recipe", + "compiles": true, + "locked_code": false, + "registry_name": "pickaxecraft", + "metadata": { + "files": [ + "src/main/resources/data/custom_ore_gen/recipes/pickaxecraft.json" + ] + }, + "path": "~/Diamond_shard" + }, + { + "name": "Shovelcraft", + "type": "recipe", + "compiles": true, + "locked_code": false, + "registry_name": "shovelcraft", + "metadata": { + "files": [ + "src/main/resources/data/custom_ore_gen/recipes/shovelcraft.json" + ] + }, + "path": "~/Diamond_shard" + }, + { + "name": "Axerecipe", + "type": "recipe", + "compiles": true, + "locked_code": false, + "registry_name": "axerecipe", + "metadata": { + "files": [ + "src/main/resources/data/custom_ore_gen/recipes/axerecipe.json" + ] + }, + "path": "~/Diamond_shard" + }, + { + "name": "Oreexperience", + "type": "procedure", + "compiles": true, + "locked_code": false, + "registry_name": "oreexperience", + "metadata": { + "files": [ + "src/main/java/net/mcreator/customoregen/procedures/OreexperienceProcedure.java" + ], + "dependencies": [ + { + "name": "entity", + "type": "entity" + }, + { + "name": "x", + "type": "number" + }, + { + "name": "y", + "type": "number" + }, + { + "name": "z", + "type": "number" + }, + { + "name": "world", + "type": "world" + } + ] + } + } + ], + "variable_elements": [], + "sound_elements": [], + "tag_elements": { + "BIOMES:mod:tempered_biomes": [ + "birch_forest", + "roofed_forest", + "mutated_forest", + "forest", + "mutated_birch_forest", + "extreme_hills_with_trees", + "swamp", + "mushroom_fields", + "cherry_grove", + "redwood_taiga", + "mutated_extreme_hills", + "deep_ocean", + "ocean", + "lush_caves", + "deep_dark" + ], + "BIOMES:mod:hot_biomes": [ + "desert", + "badlands", + "mutated_mesa", + "wooded_badlands_plateau", + "deep_lukewarm_ocean", + "lukewarm_ocean", + "mangrove_swamp", + "warm_ocean", + "bamboo_jungle", + "jungle", + "jungle_edge", + "deep_dark" + ], + "BLOCKS:minecraft:needs_iron_tool": [ + "~CUSTOM:Loweremeraldore", + "~CUSTOM:Highemeraldore", + "~CUSTOM:Copperhighore", + "~CUSTOM:Deepslateredstoneore", + "~CUSTOM:Redstoneore", + "~CUSTOM:Concentrateddiamondore", + "~CUSTOM:Deepslatesharddiamondore", + "~CUSTOM:Deepslatepuregoldenore", + "~CUSTOM:Sharddiamondblockore" + ], + "BLOCKS:minecraft:mineable/pickaxe": [ + "~CUSTOM:Deepslateironore", + "~CUSTOM:Ironore", + "~CUSTOM:Loweremeraldore", + "~CUSTOM:Highemeraldore", + "~CUSTOM:Copperlowerore", + "~CUSTOM:Copperhighore", + "~CUSTOM:Deepslateredstoneore", + "~CUSTOM:Redstoneore", + "~CUSTOM:Deepslatelapisore", + "~CUSTOM:Lapisore", + "~CUSTOM:Concentrateddiamondore", + "~CUSTOM:Deepslatesharddiamondore", + "~CUSTOM:Concentratedcoalore", + "~CUSTOM:Deepslatepuregoldenore", + "~CUSTOM:Puregoldenore", + "~CUSTOM:Sharddiamondblockore" + ], + "BLOCKS:minecraft:needs_stone_tool": [ + "~CUSTOM:Deepslateironore", + "~CUSTOM:Ironore", + "~CUSTOM:Copperlowerore", + "~CUSTOM:Deepslatelapisore", + "~CUSTOM:Lapisore" + ], + "ITEMS:minecraft:pickaxes": [ + "~CUSTOM:Sharddiamondpickaxe" + ], + "ITEMS:minecraft:axes": [ + "~CUSTOM:Sharddiamondaxe" + ], + "ITEMS:minecraft:shovels": [ + "~CUSTOM:Sharddiamondshovel" + ], + "BIOMES:mod:cold_biomes": [ + "snowy_slopes", + "cold_beach", + "snowy_tundra", + "taiga_cold", + "mutated_ice_flats", + "redwood_taiga", + "mutated_redwood_taiga", + "taiga", + "cold_ocean", + "deep_cold_ocean", + "frozen_peaks", + "jagged_peaks", + "stony_peaks", + "dripstone_caves", + "deep_dark" + ], + "BIOMES:mod:rare_biomes": [ + "mushroom_fields", + "jungle_edge", + "savanna_rock", + "mutated_plains", + "mutated_extreme_hills", + "cherry_grove", + "mutated_forest", + "deep_dark", + "mutated_birch_forest", + "mutated_ice_flats" + ] + }, + "tab_element_order": {}, + "language_map": { + "en_us": { + "block.custom_ore_gen.lapisore": "Lapis ore", + "block.custom_ore_gen.sharddiamondblockore": "Shard diamond block ore", + "block.custom_ore_gen.concentratedcoalore": "Concentrated coal ore", + "block.custom_ore_gen.ironore": "Iron ore", + "block.custom_ore_gen.redstoneore": "Redstone ore", + "block.custom_ore_gen.deepslatelapisore": "Deepslate lapis ore", + "item.custom_ore_gen.sharddiamondpickaxe": "Shard diamond pickaxe", + "item.custom_ore_gen.diamondshard.description_0": "Diamond sparkle, to create tools or to create a diamond ", + "block.custom_ore_gen.copperhighore": "Copper high ore", + "block.custom_ore_gen.copperlowerore": "deepslate copper ore", + "block.custom_ore_gen.loweremeraldore": "Loweremeraldore", + "block.custom_ore_gen.deepslateredstoneore": "Deepslate redstone ore", + "block.custom_ore_gen.deepslateironore": "Deepslate iron ore", + "item.custom_ore_gen.sharddiamondaxe": "Sharddiamondaxe", + "block.custom_ore_gen.deepslatesharddiamondore": "Deepslate shard diamond ore", + "block.custom_ore_gen.concentrateddiamondore": "Concentrated diamond ore", + "item.custom_ore_gen.shardironore": "Shard iron ore", + "item.custom_ore_gen.diamondshard": "Diamond shard", + "block.custom_ore_gen.deepslatepuregoldenore": "Deepslate pure golden ore", + "block.custom_ore_gen.puregoldenore": "Pure golden ore", + "block.custom_ore_gen.highemeraldore": "emerald ore", + "item.custom_ore_gen.sharddiamondshovel": "Shard diamond shovel" + } + }, + "foldersRoot": { + "name": "~", + "children": [ + { + "name": "Diamond_shard", + "children": [] + }, + { + "name": "Gold_ore", + "children": [] + }, + { + "name": "lapis_ore", + "children": [] + }, + { + "name": "redstone_ore", + "children": [] + }, + { + "name": "Copper_ore", + "children": [] + }, + { + "name": "Emerald", + "children": [] + }, + { + "name": "iron_ore", + "children": [] + }, + { + "name": "coal_ore", + "children": [] + } + ] + }, + "workspaceSettings": { + "modid": "custom_ore_gen", + "modName": "custom_ore_gen", + "version": "1.0.0", + "description": "Changement de la distribution des ressources sur Minecraft, ne pas utilisĂ© seul sans KubeJS", + "author": "Aulyrius crĂ©e via MCreator", + "websiteURL": "https://lanro.eu", + "license": "Not specified", + "serverSideOnly": false, + "requiredMods": [], + "dependencies": [], + "dependants": [], + "mcreatorDependencies": [], + "currentGenerator": "forge-1.20.1", + "modElementsPackage": "net.mcreator.customoregen" + }, + "mcreatorVersion": 202400452410 +} \ No newline at end of file diff --git a/elements/Axerecipe.mod.json b/elements/Axerecipe.mod.json new file mode 100644 index 000000000..29b2431b7 --- /dev/null +++ b/elements/Axerecipe.mod.json @@ -0,0 +1,48 @@ +{ + "_fv": 73, + "_type": "recipe", + "definition": { + "recipeType": "Crafting", + "recipeRetstackSize": 1, + "group": "", + "cookingBookCategory": "MISC", + "xpReward": 0.0, + "cookingTime": 200, + "craftingBookCategory": "MISC", + "recipeShapeless": false, + "recipeSlots": [ + { + "value": "CUSTOM:Diamondshard" + }, + { + "value": "CUSTOM:Diamondshard" + }, + { + "value": "" + }, + { + "value": "CUSTOM:Diamondshard" + }, + { + "value": "Items.STICK" + }, + { + "value": "" + }, + { + "value": "" + }, + { + "value": "Items.STICK" + }, + { + "value": "" + } + ], + "recipeReturnStack": { + "value": "CUSTOM:Sharddiamondaxe" + }, + "name": "axerecipe", + "namespace": "mod" + } +} \ No newline at end of file diff --git a/elements/Concentratedcoalore.mod.json b/elements/Concentratedcoalore.mod.json new file mode 100644 index 000000000..10ce89872 --- /dev/null +++ b/elements/Concentratedcoalore.mod.json @@ -0,0 +1,140 @@ +{ + "_fv": 73, + "_type": "block", + "definition": { + "texture": "minecraft:coal_ore", + "textureTop": "", + "textureLeft": "", + "textureFront": "", + "textureRight": "", + "textureBack": "", + "renderType": 10, + "customModelName": "Normal", + "rotationMode": 0, + "enablePitch": false, + "emissiveRendering": false, + "displayFluidOverlay": false, + "itemTexture": "", + "particleTexture": "", + "tintType": "No tint", + "isItemTinted": false, + "hasTransparency": false, + "connectedSides": false, + "transparencyType": "SOLID", + "disableOffset": false, + "boundingBoxes": [ + { + "mx": 0.0, + "my": 0.0, + "mz": 0.0, + "Mx": 16.0, + "My": 16.0, + "Mz": 16.0, + "subtract": false + } + ], + "customProperties": [], + "name": "Concentrated coal ore", + "specialInformation": { + "fixedValue": [] + }, + "hardness": 3.0, + "resistance": 15.0, + "hasGravity": false, + "isWaterloggable": false, + "creativeTabs": [], + "destroyTool": "pickaxe", + "customDrop": { + "value": "" + }, + "dropAmount": 1, + "useLootTableForDrops": true, + "requiresCorrectTool": true, + "enchantPowerBonus": 0.0, + "plantsGrowOn": false, + "canRedstoneConnect": false, + "lightOpacity": 15, + "material": { + "value": "NONE" + }, + "tickRate": 0, + "tickRandomly": false, + "isReplaceable": false, + "canProvidePower": false, + "emittedRedstonePower": { + "fixedValue": 15.0 + }, + "colorOnMap": "DEFAULT", + "creativePickItem": { + "value": "" + }, + "offsetType": "NONE", + "aiPathNodeType": "DEFAULT", + "flammability": 0, + "fireSpreadSpeed": 0, + "isLadder": false, + "slipperiness": 0.6, + "speedFactor": 1.0, + "jumpFactor": 1.0, + "reactionToPushing": "NORMAL", + "isNotColidable": false, + "isCustomSoundType": false, + "soundOnStep": { + "value": "STONE" + }, + "breakSound": { + "value": "" + }, + "fallSound": { + "value": "" + }, + "hitSound": { + "value": "" + }, + "placeSound": { + "value": "" + }, + "stepSound": { + "value": "" + }, + "luminance": 0, + "unbreakable": false, + "vanillaToolTier": "NONE", + "isBonemealable": false, + "hasInventory": false, + "openGUIOnRightClick": false, + "inventorySize": 9, + "inventoryStackSize": 64, + "inventoryDropWhenDestroyed": true, + "inventoryComparatorPower": true, + "inventoryOutSlotIDs": [], + "inventoryInSlotIDs": [], + "hasEnergyStorage": false, + "energyInitial": 0, + "energyCapacity": 400000, + "energyMaxReceive": 200, + "energyMaxExtract": 200, + "isFluidTank": false, + "fluidCapacity": 8000, + "fluidRestrictions": [], + "onDestroyedByPlayer": { + "name": "Oreexperience" + }, + "generateFeature": true, + "restrictionBiomes": [ + { + "value": "#mod:tempered_biomes" + } + ], + "blocksToReplace": [ + { + "value": "Blocks.STONE" + } + ], + "generationShape": "UNIFORM", + "frequencyPerChunks": 10, + "frequencyOnChunk": 17, + "minGenerateHeight": 0, + "maxGenerateHeight": 70 + } +} \ No newline at end of file diff --git a/elements/Concentratedcoaloretable.mod.json b/elements/Concentratedcoaloretable.mod.json new file mode 100644 index 000000000..a786d8f29 --- /dev/null +++ b/elements/Concentratedcoaloretable.mod.json @@ -0,0 +1,57 @@ +{ + "_fv": 73, + "_type": "loottable", + "definition": { + "type": "Block", + "pools": [ + { + "minrolls": 1, + "maxrolls": 1, + "minbonusrolls": 1, + "maxbonusrolls": 1, + "hasbonusrolls": false, + "entries": [ + { + "type": "item", + "item": { + "value": "Items.COAL#0" + }, + "weight": 1, + "minCount": 1, + "maxCount": 2, + "minEnchantmentLevel": 0, + "maxEnchantmentLevel": 0, + "affectedByFortune": true, + "explosionDecay": false, + "silkTouchMode": 2 + } + ] + }, + { + "minrolls": 1, + "maxrolls": 1, + "minbonusrolls": 1, + "maxbonusrolls": 1, + "hasbonusrolls": false, + "entries": [ + { + "type": "item", + "item": { + "value": "Blocks.COAL_ORE" + }, + "weight": 1, + "minCount": 1, + "maxCount": 1, + "minEnchantmentLevel": 0, + "maxEnchantmentLevel": 0, + "affectedByFortune": false, + "explosionDecay": false, + "silkTouchMode": 1 + } + ] + } + ], + "name": "blocks/concentratedcoalore", + "namespace": "mod" + } +} \ No newline at end of file diff --git a/elements/Concentrateddiamondloottable.mod.json b/elements/Concentrateddiamondloottable.mod.json new file mode 100644 index 000000000..c156b5591 --- /dev/null +++ b/elements/Concentrateddiamondloottable.mod.json @@ -0,0 +1,57 @@ +{ + "_fv": 73, + "_type": "loottable", + "definition": { + "type": "Block", + "pools": [ + { + "minrolls": 1, + "maxrolls": 1, + "minbonusrolls": 1, + "maxbonusrolls": 1, + "hasbonusrolls": false, + "entries": [ + { + "type": "item", + "item": { + "value": "Items.DIAMOND" + }, + "weight": 1, + "minCount": 1, + "maxCount": 2, + "minEnchantmentLevel": 0, + "maxEnchantmentLevel": 0, + "affectedByFortune": true, + "explosionDecay": false, + "silkTouchMode": 2 + } + ] + }, + { + "minrolls": 1, + "maxrolls": 1, + "minbonusrolls": 1, + "maxbonusrolls": 1, + "hasbonusrolls": false, + "entries": [ + { + "type": "item", + "item": { + "value": "CUSTOM:Concentrateddiamondore" + }, + "weight": 1, + "minCount": 1, + "maxCount": 1, + "minEnchantmentLevel": 0, + "maxEnchantmentLevel": 0, + "affectedByFortune": false, + "explosionDecay": false, + "silkTouchMode": 1 + } + ] + } + ], + "name": "blocks/concentrateddiamondore", + "namespace": "mod" + } +} \ No newline at end of file diff --git a/elements/Concentrateddiamondore.mod.json b/elements/Concentrateddiamondore.mod.json new file mode 100644 index 000000000..16387f6c4 --- /dev/null +++ b/elements/Concentrateddiamondore.mod.json @@ -0,0 +1,140 @@ +{ + "_fv": 73, + "_type": "block", + "definition": { + "texture": "minecraft:deepslate_diamond_ore", + "textureTop": "", + "textureLeft": "", + "textureFront": "", + "textureRight": "", + "textureBack": "", + "renderType": 11, + "customModelName": "Single texture", + "rotationMode": 0, + "enablePitch": false, + "emissiveRendering": false, + "displayFluidOverlay": false, + "itemTexture": "", + "particleTexture": "", + "tintType": "No tint", + "isItemTinted": false, + "hasTransparency": false, + "connectedSides": false, + "transparencyType": "SOLID", + "disableOffset": false, + "boundingBoxes": [ + { + "mx": 0.0, + "my": 0.0, + "mz": 0.0, + "Mx": 16.0, + "My": 16.0, + "Mz": 16.0, + "subtract": false + } + ], + "customProperties": [], + "name": "Concentrated diamond ore", + "specialInformation": { + "fixedValue": [] + }, + "hardness": 3.0, + "resistance": 11.0, + "hasGravity": false, + "isWaterloggable": false, + "creativeTabs": [], + "destroyTool": "pickaxe", + "customDrop": { + "value": "" + }, + "dropAmount": 1, + "useLootTableForDrops": true, + "requiresCorrectTool": true, + "enchantPowerBonus": 0.0, + "plantsGrowOn": false, + "canRedstoneConnect": false, + "lightOpacity": 15, + "material": { + "value": "NONE" + }, + "tickRate": 0, + "tickRandomly": false, + "isReplaceable": false, + "canProvidePower": false, + "emittedRedstonePower": { + "fixedValue": 15.0 + }, + "colorOnMap": "DEFAULT", + "creativePickItem": { + "value": "CUSTOM:Concentrateddiamondore" + }, + "offsetType": "NONE", + "aiPathNodeType": "DEFAULT", + "flammability": 0, + "fireSpreadSpeed": 0, + "isLadder": false, + "slipperiness": 0.6, + "speedFactor": 1.0, + "jumpFactor": 1.0, + "reactionToPushing": "NORMAL", + "isNotColidable": false, + "isCustomSoundType": false, + "soundOnStep": { + "value": "STONE" + }, + "breakSound": { + "value": "" + }, + "fallSound": { + "value": "" + }, + "hitSound": { + "value": "" + }, + "placeSound": { + "value": "" + }, + "stepSound": { + "value": "" + }, + "luminance": 0, + "unbreakable": false, + "vanillaToolTier": "IRON", + "isBonemealable": false, + "hasInventory": false, + "openGUIOnRightClick": false, + "inventorySize": 9, + "inventoryStackSize": 64, + "inventoryDropWhenDestroyed": true, + "inventoryComparatorPower": true, + "inventoryOutSlotIDs": [], + "inventoryInSlotIDs": [], + "hasEnergyStorage": false, + "energyInitial": 0, + "energyCapacity": 400000, + "energyMaxReceive": 200, + "energyMaxExtract": 200, + "isFluidTank": false, + "fluidCapacity": 8000, + "fluidRestrictions": [], + "onDestroyedByPlayer": { + "name": "Oreexperience" + }, + "generateFeature": true, + "restrictionBiomes": [ + { + "value": "#mod:cold_biomes" + } + ], + "blocksToReplace": [ + { + "value": "Blocks.STONE" + } + ], + "generationShape": "TRIANGLE", + "frequencyPerChunks": 1, + "frequencyOnChunk": 9, + "minGenerateHeight": -90, + "maxGenerateHeight": 0 + } +} \ No newline at end of file diff --git a/elements/Copperhighore.mod.json b/elements/Copperhighore.mod.json new file mode 100644 index 000000000..21b967ad3 --- /dev/null +++ b/elements/Copperhighore.mod.json @@ -0,0 +1,140 @@ +{ + "_fv": 73, + "_type": "block", + "definition": { + "texture": "minecraft:copper_ore", + "textureTop": "", + "textureLeft": "", + "textureFront": "", + "textureRight": "", + "textureBack": "", + "renderType": 10, + "customModelName": "Normal", + "rotationMode": 0, + "enablePitch": false, + "emissiveRendering": false, + "displayFluidOverlay": false, + "itemTexture": "", + "particleTexture": "", + "tintType": "No tint", + "isItemTinted": false, + "hasTransparency": false, + "connectedSides": false, + "transparencyType": "SOLID", + "disableOffset": false, + "boundingBoxes": [ + { + "mx": 0.0, + "my": 0.0, + "mz": 0.0, + "Mx": 16.0, + "My": 16.0, + "Mz": 16.0, + "subtract": false + } + ], + "customProperties": [], + "name": "Copper high ore", + "specialInformation": { + "fixedValue": [] + }, + "hardness": 1.0, + "resistance": 10.0, + "hasGravity": false, + "isWaterloggable": false, + "creativeTabs": [], + "destroyTool": "pickaxe", + "customDrop": { + "value": "" + }, + "dropAmount": 1, + "useLootTableForDrops": false, + "requiresCorrectTool": true, + "enchantPowerBonus": 0.0, + "plantsGrowOn": false, + "canRedstoneConnect": false, + "lightOpacity": 15, + "material": { + "value": "NONE" + }, + "tickRate": 0, + "tickRandomly": false, + "isReplaceable": false, + "canProvidePower": false, + "emittedRedstonePower": { + "fixedValue": 15.0 + }, + "colorOnMap": "DEFAULT", + "creativePickItem": { + "value": "" + }, + "offsetType": "NONE", + "aiPathNodeType": "DEFAULT", + "flammability": 0, + "fireSpreadSpeed": 0, + "isLadder": false, + "slipperiness": 0.6, + "speedFactor": 1.0, + "jumpFactor": 1.0, + "reactionToPushing": "NORMAL", + "isNotColidable": false, + "isCustomSoundType": false, + "soundOnStep": { + "value": "GROUND" + }, + "breakSound": { + "value": "" + }, + "fallSound": { + "value": "" + }, + "hitSound": { + "value": "" + }, + "placeSound": { + "value": "" + }, + "stepSound": { + "value": "" + }, + "luminance": 0, + "unbreakable": false, + "vanillaToolTier": "IRON", + "isBonemealable": false, + "hasInventory": false, + "openGUIOnRightClick": false, + "inventorySize": 9, + "inventoryStackSize": 64, + "inventoryDropWhenDestroyed": true, + "inventoryComparatorPower": true, + "inventoryOutSlotIDs": [], + "inventoryInSlotIDs": [], + "hasEnergyStorage": false, + "energyInitial": 0, + "energyCapacity": 400000, + "energyMaxReceive": 200, + "energyMaxExtract": 200, + "isFluidTank": false, + "fluidCapacity": 8000, + "fluidRestrictions": [], + "onDestroyedByPlayer": { + "name": "Oreexperience" + }, + "generateFeature": true, + "restrictionBiomes": [ + { + "value": "#mod:hot_biomes" + } + ], + "blocksToReplace": [ + { + "value": "Blocks.STONE" + } + ], + "generationShape": "UNIFORM", + "frequencyPerChunks": 20, + "frequencyOnChunk": 16, + "minGenerateHeight": 15, + "maxGenerateHeight": 256 + } +} \ No newline at end of file diff --git a/elements/Copperlowerore.mod.json b/elements/Copperlowerore.mod.json new file mode 100644 index 000000000..2828ac8a1 --- /dev/null +++ b/elements/Copperlowerore.mod.json @@ -0,0 +1,140 @@ +{ + "_fv": 73, + "_type": "block", + "definition": { + "texture": "minecraft:deepslate_copper_ore", + "textureTop": "", + "textureLeft": "", + "textureFront": "", + "textureRight": "", + "textureBack": "", + "renderType": 11, + "customModelName": "Single texture", + "rotationMode": 0, + "enablePitch": false, + "emissiveRendering": false, + "displayFluidOverlay": false, + "itemTexture": "", + "particleTexture": "", + "tintType": "No tint", + "isItemTinted": false, + "hasTransparency": false, + "connectedSides": false, + "transparencyType": "SOLID", + "disableOffset": false, + "boundingBoxes": [ + { + "mx": 0.0, + "my": 0.0, + "mz": 0.0, + "Mx": 16.0, + "My": 16.0, + "Mz": 16.0, + "subtract": false + } + ], + "customProperties": [], + "name": "deepslate copper ore", + "specialInformation": { + "fixedValue": [] + }, + "hardness": 4.5, + "resistance": 10.0, + "hasGravity": false, + "isWaterloggable": false, + "creativeTabs": [], + "destroyTool": "pickaxe", + "customDrop": { + "value": "" + }, + "dropAmount": 1, + "useLootTableForDrops": true, + "requiresCorrectTool": true, + "enchantPowerBonus": 0.0, + "plantsGrowOn": false, + "canRedstoneConnect": false, + "lightOpacity": 15, + "material": { + "value": "NONE" + }, + "tickRate": 0, + "tickRandomly": false, + "isReplaceable": false, + "canProvidePower": false, + "emittedRedstonePower": { + "fixedValue": 15.0 + }, + "colorOnMap": "DEFAULT", + "creativePickItem": { + "value": "" + }, + "offsetType": "NONE", + "aiPathNodeType": "DEFAULT", + "flammability": 0, + "fireSpreadSpeed": 0, + "isLadder": false, + "slipperiness": 0.6, + "speedFactor": 1.0, + "jumpFactor": 1.0, + "reactionToPushing": "NORMAL", + "isNotColidable": false, + "isCustomSoundType": false, + "soundOnStep": { + "value": "STONE" + }, + "breakSound": { + "value": "" + }, + "fallSound": { + "value": "" + }, + "hitSound": { + "value": "" + }, + "placeSound": { + "value": "" + }, + "stepSound": { + "value": "" + }, + "luminance": 0, + "unbreakable": false, + "vanillaToolTier": "STONE", + "isBonemealable": false, + "hasInventory": false, + "openGUIOnRightClick": false, + "inventorySize": 9, + "inventoryStackSize": 64, + "inventoryDropWhenDestroyed": true, + "inventoryComparatorPower": true, + "inventoryOutSlotIDs": [], + "inventoryInSlotIDs": [], + "hasEnergyStorage": false, + "energyInitial": 0, + "energyCapacity": 400000, + "energyMaxReceive": 200, + "energyMaxExtract": 200, + "isFluidTank": false, + "fluidCapacity": 8000, + "fluidRestrictions": [], + "onDestroyedByPlayer": { + "name": "Oreexperience" + }, + "generateFeature": true, + "restrictionBiomes": [ + { + "value": "#mod:hot_biomes" + } + ], + "blocksToReplace": [ + { + "value": "Blocks.STONE" + } + ], + "generationShape": "UNIFORM", + "frequencyPerChunks": 20, + "frequencyOnChunk": 9, + "minGenerateHeight": -64, + "maxGenerateHeight": 0 + } +} \ No newline at end of file diff --git a/elements/Deepslateemeraldore.mod.json b/elements/Deepslateemeraldore.mod.json new file mode 100644 index 000000000..b0be209ba --- /dev/null +++ b/elements/Deepslateemeraldore.mod.json @@ -0,0 +1,57 @@ +{ + "_fv": 73, + "_type": "loottable", + "definition": { + "type": "Block", + "pools": [ + { + "minrolls": 1, + "maxrolls": 1, + "minbonusrolls": 1, + "maxbonusrolls": 1, + "hasbonusrolls": false, + "entries": [ + { + "type": "item", + "item": { + "value": "Items.EMERALD" + }, + "weight": 1, + "minCount": 1, + "maxCount": 2, + "minEnchantmentLevel": 0, + "maxEnchantmentLevel": 0, + "affectedByFortune": true, + "explosionDecay": false, + "silkTouchMode": 2 + } + ] + }, + { + "minrolls": 1, + "maxrolls": 1, + "minbonusrolls": 1, + "maxbonusrolls": 1, + "hasbonusrolls": false, + "entries": [ + { + "type": "item", + "item": { + "value": "Blocks.DEEPSLATE_EMERALD_ORE" + }, + "weight": 1, + "minCount": 1, + "maxCount": 1, + "minEnchantmentLevel": 0, + "maxEnchantmentLevel": 0, + "affectedByFortune": false, + "explosionDecay": false, + "silkTouchMode": 1 + } + ] + } + ], + "name": "blocks/loweremeraldore", + "namespace": "mod" + } +} \ No newline at end of file diff --git a/elements/Deepslateironore.mod.json b/elements/Deepslateironore.mod.json new file mode 100644 index 000000000..553e88160 --- /dev/null +++ b/elements/Deepslateironore.mod.json @@ -0,0 +1,140 @@ +{ + "_fv": 73, + "_type": "block", + "definition": { + "texture": "minecraft:deepslate_iron_ore", + "textureTop": "", + "textureLeft": "", + "textureFront": "", + "textureRight": "", + "textureBack": "", + "renderType": 11, + "customModelName": "Single texture", + "rotationMode": 0, + "enablePitch": false, + "emissiveRendering": false, + "displayFluidOverlay": false, + "itemTexture": "", + "particleTexture": "", + "tintType": "No tint", + "isItemTinted": false, + "hasTransparency": false, + "connectedSides": false, + "transparencyType": "SOLID", + "disableOffset": false, + "boundingBoxes": [ + { + "mx": 0.0, + "my": 0.0, + "mz": 0.0, + "Mx": 16.0, + "My": 16.0, + "Mz": 16.0, + "subtract": false + } + ], + "customProperties": [], + "name": "Deepslate iron ore", + "specialInformation": { + "fixedValue": [] + }, + "hardness": 3.0, + "resistance": 10.0, + "hasGravity": false, + "isWaterloggable": false, + "creativeTabs": [], + "destroyTool": "pickaxe", + "customDrop": { + "value": "" + }, + "dropAmount": 1, + "useLootTableForDrops": true, + "requiresCorrectTool": true, + "enchantPowerBonus": 0.0, + "plantsGrowOn": false, + "canRedstoneConnect": false, + "lightOpacity": 15, + "material": { + "value": "NONE" + }, + "tickRate": 0, + "tickRandomly": false, + "isReplaceable": false, + "canProvidePower": false, + "emittedRedstonePower": { + "fixedValue": 15.0 + }, + "colorOnMap": "DEFAULT", + "creativePickItem": { + "value": "" + }, + "offsetType": "NONE", + "aiPathNodeType": "DEFAULT", + "flammability": 0, + "fireSpreadSpeed": 0, + "isLadder": false, + "slipperiness": 0.6, + "speedFactor": 1.0, + "jumpFactor": 1.0, + "reactionToPushing": "NORMAL", + "isNotColidable": false, + "isCustomSoundType": false, + "soundOnStep": { + "value": "STONE" + }, + "breakSound": { + "value": "" + }, + "fallSound": { + "value": "" + }, + "hitSound": { + "value": "" + }, + "placeSound": { + "value": "" + }, + "stepSound": { + "value": "" + }, + "luminance": 0, + "unbreakable": false, + "vanillaToolTier": "STONE", + "isBonemealable": false, + "hasInventory": false, + "openGUIOnRightClick": false, + "inventorySize": 9, + "inventoryStackSize": 64, + "inventoryDropWhenDestroyed": true, + "inventoryComparatorPower": true, + "inventoryOutSlotIDs": [], + "inventoryInSlotIDs": [], + "hasEnergyStorage": false, + "energyInitial": 0, + "energyCapacity": 400000, + "energyMaxReceive": 200, + "energyMaxExtract": 200, + "isFluidTank": false, + "fluidCapacity": 8000, + "fluidRestrictions": [], + "onDestroyedByPlayer": { + "name": "Oreexperience" + }, + "generateFeature": true, + "restrictionBiomes": [ + { + "value": "#mod:tempered_biomes" + } + ], + "blocksToReplace": [ + { + "value": "Blocks.STONE" + } + ], + "generationShape": "UNIFORM", + "frequencyPerChunks": 20, + "frequencyOnChunk": 9, + "minGenerateHeight": -64, + "maxGenerateHeight": 0 + } +} \ No newline at end of file diff --git a/elements/Deepslateirontable.mod.json b/elements/Deepslateirontable.mod.json new file mode 100644 index 000000000..b219fdadb --- /dev/null +++ b/elements/Deepslateirontable.mod.json @@ -0,0 +1,57 @@ +{ + "_fv": 73, + "_type": "loottable", + "definition": { + "type": "Block", + "pools": [ + { + "minrolls": 1, + "maxrolls": 1, + "minbonusrolls": 1, + "maxbonusrolls": 1, + "hasbonusrolls": false, + "entries": [ + { + "type": "item", + "item": { + "value": "Items.RAW_IRON" + }, + "weight": 1, + "minCount": 1, + "maxCount": 1, + "minEnchantmentLevel": 0, + "maxEnchantmentLevel": 0, + "affectedByFortune": true, + "explosionDecay": false, + "silkTouchMode": 2 + } + ] + }, + { + "minrolls": 1, + "maxrolls": 1, + "minbonusrolls": 1, + "maxbonusrolls": 1, + "hasbonusrolls": false, + "entries": [ + { + "type": "item", + "item": { + "value": "CUSTOM:Deepslateironore" + }, + "weight": 1, + "minCount": 1, + "maxCount": 1, + "minEnchantmentLevel": 0, + "maxEnchantmentLevel": 0, + "affectedByFortune": false, + "explosionDecay": false, + "silkTouchMode": 1 + } + ] + } + ], + "name": "blocks/deepslateironore", + "namespace": "mod" + } +} \ No newline at end of file diff --git a/elements/Deepslatelapisore.mod.json b/elements/Deepslatelapisore.mod.json new file mode 100644 index 000000000..63db52619 --- /dev/null +++ b/elements/Deepslatelapisore.mod.json @@ -0,0 +1,140 @@ +{ + "_fv": 73, + "_type": "block", + "definition": { + "texture": "minecraft:deepslate_lapis_ore", + "textureTop": "", + "textureLeft": "", + "textureFront": "", + "textureRight": "", + "textureBack": "", + "renderType": 10, + "customModelName": "Normal", + "rotationMode": 0, + "enablePitch": false, + "emissiveRendering": false, + "displayFluidOverlay": false, + "itemTexture": "", + "particleTexture": "", + "tintType": "No tint", + "isItemTinted": false, + "hasTransparency": false, + "connectedSides": false, + "transparencyType": "SOLID", + "disableOffset": false, + "boundingBoxes": [ + { + "mx": 0.0, + "my": 0.0, + "mz": 0.0, + "Mx": 16.0, + "My": 16.0, + "Mz": 16.0, + "subtract": false + } + ], + "customProperties": [], + "name": "Deepslate lapis ore", + "specialInformation": { + "fixedValue": [] + }, + "hardness": 4.5, + "resistance": 10.0, + "hasGravity": false, + "isWaterloggable": false, + "creativeTabs": [], + "destroyTool": "pickaxe", + "customDrop": { + "value": "" + }, + "dropAmount": 1, + "useLootTableForDrops": true, + "requiresCorrectTool": true, + "enchantPowerBonus": 0.0, + "plantsGrowOn": false, + "canRedstoneConnect": false, + "lightOpacity": 15, + "material": { + "value": "NONE" + }, + "tickRate": 0, + "tickRandomly": false, + "isReplaceable": false, + "canProvidePower": false, + "emittedRedstonePower": { + "fixedValue": 15.0 + }, + "colorOnMap": "DEFAULT", + "creativePickItem": { + "value": "" + }, + "offsetType": "NONE", + "aiPathNodeType": "DEFAULT", + "flammability": 0, + "fireSpreadSpeed": 0, + "isLadder": false, + "slipperiness": 0.6, + "speedFactor": 1.0, + "jumpFactor": 1.0, + "reactionToPushing": "NORMAL", + "isNotColidable": false, + "isCustomSoundType": false, + "soundOnStep": { + "value": "STONE" + }, + "breakSound": { + "value": "" + }, + "fallSound": { + "value": "" + }, + "hitSound": { + "value": "" + }, + "placeSound": { + "value": "" + }, + "stepSound": { + "value": "" + }, + "luminance": 0, + "unbreakable": false, + "vanillaToolTier": "STONE", + "isBonemealable": false, + "hasInventory": false, + "openGUIOnRightClick": false, + "inventorySize": 9, + "inventoryStackSize": 64, + "inventoryDropWhenDestroyed": true, + "inventoryComparatorPower": true, + "inventoryOutSlotIDs": [], + "inventoryInSlotIDs": [], + "hasEnergyStorage": false, + "energyInitial": 0, + "energyCapacity": 400000, + "energyMaxReceive": 200, + "energyMaxExtract": 200, + "isFluidTank": false, + "fluidCapacity": 8000, + "fluidRestrictions": [], + "onDestroyedByPlayer": { + "name": "Oreexperience" + }, + "generateFeature": true, + "restrictionBiomes": [ + { + "value": "#mod:cold_biomes" + } + ], + "blocksToReplace": [ + { + "value": "Blocks.STONE" + } + ], + "generationShape": "UNIFORM", + "frequencyPerChunks": 10, + "frequencyOnChunk": 8, + "minGenerateHeight": -20, + "maxGenerateHeight": 10 + } +} \ No newline at end of file diff --git a/elements/Deepslatelapisoretable.mod.json b/elements/Deepslatelapisoretable.mod.json new file mode 100644 index 000000000..88537c233 --- /dev/null +++ b/elements/Deepslatelapisoretable.mod.json @@ -0,0 +1,57 @@ +{ + "_fv": 73, + "_type": "loottable", + "definition": { + "type": "Block", + "pools": [ + { + "minrolls": 1, + "maxrolls": 1, + "minbonusrolls": 1, + "maxbonusrolls": 1, + "hasbonusrolls": false, + "entries": [ + { + "type": "item", + "item": { + "value": "Items.DYE#4" + }, + "weight": 1, + "minCount": 4, + "maxCount": 6, + "minEnchantmentLevel": 1, + "maxEnchantmentLevel": 10, + "affectedByFortune": true, + "explosionDecay": false, + "silkTouchMode": 2 + } + ] + }, + { + "minrolls": 1, + "maxrolls": 1, + "minbonusrolls": 1, + "maxbonusrolls": 1, + "hasbonusrolls": false, + "entries": [ + { + "type": "item", + "item": { + "value": "Blocks.DEEPSLATE_LAPIS_ORE" + }, + "weight": 1, + "minCount": 1, + "maxCount": 1, + "minEnchantmentLevel": 0, + "maxEnchantmentLevel": 0, + "affectedByFortune": false, + "explosionDecay": false, + "silkTouchMode": 1 + } + ] + } + ], + "name": "blocks/deepslatelapisore", + "namespace": "mod" + } +} \ No newline at end of file diff --git a/elements/Deepslatepuregoldenore.mod.json b/elements/Deepslatepuregoldenore.mod.json new file mode 100644 index 000000000..e49e57927 --- /dev/null +++ b/elements/Deepslatepuregoldenore.mod.json @@ -0,0 +1,140 @@ +{ + "_fv": 73, + "_type": "block", + "definition": { + "texture": "minecraft:deepslate_gold_ore", + "textureTop": "", + "textureLeft": "", + "textureFront": "", + "textureRight": "", + "textureBack": "", + "renderType": 11, + "customModelName": "Single texture", + "rotationMode": 0, + "enablePitch": false, + "emissiveRendering": false, + "displayFluidOverlay": false, + "itemTexture": "", + "particleTexture": "", + "tintType": "No tint", + "isItemTinted": false, + "hasTransparency": false, + "connectedSides": false, + "transparencyType": "SOLID", + "disableOffset": false, + "boundingBoxes": [ + { + "mx": 0.0, + "my": 0.0, + "mz": 0.0, + "Mx": 16.0, + "My": 16.0, + "Mz": 16.0, + "subtract": false + } + ], + "customProperties": [], + "name": "Deepslate pure golden ore", + "specialInformation": { + "fixedValue": [] + }, + "hardness": 3.0, + "resistance": 10.0, + "hasGravity": false, + "isWaterloggable": false, + "creativeTabs": [], + "destroyTool": "pickaxe", + "customDrop": { + "value": "" + }, + "dropAmount": 1, + "useLootTableForDrops": true, + "requiresCorrectTool": true, + "enchantPowerBonus": 0.0, + "plantsGrowOn": false, + "canRedstoneConnect": false, + "lightOpacity": 15, + "material": { + "value": "NONE" + }, + "tickRate": 0, + "tickRandomly": false, + "isReplaceable": false, + "canProvidePower": false, + "emittedRedstonePower": { + "fixedValue": 15.0 + }, + "colorOnMap": "DEFAULT", + "creativePickItem": { + "value": "" + }, + "offsetType": "NONE", + "aiPathNodeType": "DEFAULT", + "flammability": 0, + "fireSpreadSpeed": 0, + "isLadder": false, + "slipperiness": 0.6, + "speedFactor": 1.0, + "jumpFactor": 1.0, + "reactionToPushing": "NORMAL", + "isNotColidable": false, + "isCustomSoundType": false, + "soundOnStep": { + "value": "STONE" + }, + "breakSound": { + "value": "" + }, + "fallSound": { + "value": "" + }, + "hitSound": { + "value": "" + }, + "placeSound": { + "value": "" + }, + "stepSound": { + "value": "" + }, + "luminance": 0, + "unbreakable": false, + "vanillaToolTier": "IRON", + "isBonemealable": false, + "hasInventory": false, + "openGUIOnRightClick": false, + "inventorySize": 9, + "inventoryStackSize": 64, + "inventoryDropWhenDestroyed": true, + "inventoryComparatorPower": true, + "inventoryOutSlotIDs": [], + "inventoryInSlotIDs": [], + "hasEnergyStorage": false, + "energyInitial": 0, + "energyCapacity": 400000, + "energyMaxReceive": 200, + "energyMaxExtract": 200, + "isFluidTank": false, + "fluidCapacity": 8000, + "fluidRestrictions": [], + "onDestroyedByPlayer": { + "name": "Oreexperience" + }, + "generateFeature": true, + "restrictionBiomes": [ + { + "value": "#mod:hot_biomes" + } + ], + "blocksToReplace": [ + { + "value": "Blocks.STONE" + } + ], + "generationShape": "TRIANGLE", + "frequencyPerChunks": 4, + "frequencyOnChunk": 9, + "minGenerateHeight": -64, + "maxGenerateHeight": 0 + } +} \ No newline at end of file diff --git a/elements/Deepslatepuregoldenoretable.mod.json b/elements/Deepslatepuregoldenoretable.mod.json new file mode 100644 index 000000000..e34d77ed4 --- /dev/null +++ b/elements/Deepslatepuregoldenoretable.mod.json @@ -0,0 +1,57 @@ +{ + "_fv": 73, + "_type": "loottable", + "definition": { + "type": "Block", + "pools": [ + { + "minrolls": 1, + "maxrolls": 2, + "minbonusrolls": 1, + "maxbonusrolls": 2, + "hasbonusrolls": true, + "entries": [ + { + "type": "item", + "item": { + "value": "Items.RAW_GOLD" + }, + "weight": 1, + "minCount": 1, + "maxCount": 2, + "minEnchantmentLevel": 0, + "maxEnchantmentLevel": 0, + "affectedByFortune": true, + "explosionDecay": false, + "silkTouchMode": 2 + } + ] + }, + { + "minrolls": 1, + "maxrolls": 1, + "minbonusrolls": 1, + "maxbonusrolls": 1, + "hasbonusrolls": false, + "entries": [ + { + "type": "item", + "item": { + "value": "Blocks.GOLD_ORE" + }, + "weight": 1, + "minCount": 1, + "maxCount": 1, + "minEnchantmentLevel": 0, + "maxEnchantmentLevel": 0, + "affectedByFortune": false, + "explosionDecay": false, + "silkTouchMode": 1 + } + ] + } + ], + "name": "blocks/puregoldenore", + "namespace": "mod" + } +} \ No newline at end of file diff --git a/elements/Deepslateredstoneore.mod.json b/elements/Deepslateredstoneore.mod.json new file mode 100644 index 000000000..84cc0989c --- /dev/null +++ b/elements/Deepslateredstoneore.mod.json @@ -0,0 +1,140 @@ +{ + "_fv": 73, + "_type": "block", + "definition": { + "texture": "minecraft:deepslate_redstone_ore", + "textureTop": "", + "textureLeft": "", + "textureFront": "", + "textureRight": "", + "textureBack": "", + "renderType": 11, + "customModelName": "Single texture", + "rotationMode": 0, + "enablePitch": false, + "emissiveRendering": true, + "displayFluidOverlay": false, + "itemTexture": "", + "particleTexture": "", + "tintType": "No tint", + "isItemTinted": false, + "hasTransparency": false, + "connectedSides": false, + "transparencyType": "SOLID", + "disableOffset": false, + "boundingBoxes": [ + { + "mx": 0.0, + "my": 0.0, + "mz": 0.0, + "Mx": 16.0, + "My": 16.0, + "Mz": 16.0, + "subtract": false + } + ], + "customProperties": [], + "name": "Deepslate redstone ore", + "specialInformation": { + "fixedValue": [] + }, + "hardness": 3.0, + "resistance": 10.0, + "hasGravity": false, + "isWaterloggable": false, + "creativeTabs": [], + "destroyTool": "pickaxe", + "customDrop": { + "value": "" + }, + "dropAmount": 1, + "useLootTableForDrops": true, + "requiresCorrectTool": true, + "enchantPowerBonus": 0.0, + "plantsGrowOn": false, + "canRedstoneConnect": false, + "lightOpacity": 15, + "material": { + "value": "NONE" + }, + "tickRate": 0, + "tickRandomly": false, + "isReplaceable": false, + "canProvidePower": false, + "emittedRedstonePower": { + "fixedValue": 15.0 + }, + "colorOnMap": "DEFAULT", + "creativePickItem": { + "value": "" + }, + "offsetType": "NONE", + "aiPathNodeType": "DEFAULT", + "flammability": 0, + "fireSpreadSpeed": 0, + "isLadder": false, + "slipperiness": 0.6, + "speedFactor": 1.0, + "jumpFactor": 1.0, + "reactionToPushing": "NORMAL", + "isNotColidable": false, + "isCustomSoundType": false, + "soundOnStep": { + "value": "STONE" + }, + "breakSound": { + "value": "" + }, + "fallSound": { + "value": "" + }, + "hitSound": { + "value": "" + }, + "placeSound": { + "value": "" + }, + "stepSound": { + "value": "" + }, + "luminance": 1, + "unbreakable": false, + "vanillaToolTier": "IRON", + "isBonemealable": false, + "hasInventory": false, + "openGUIOnRightClick": false, + "inventorySize": 9, + "inventoryStackSize": 64, + "inventoryDropWhenDestroyed": true, + "inventoryComparatorPower": true, + "inventoryOutSlotIDs": [], + "inventoryInSlotIDs": [], + "hasEnergyStorage": false, + "energyInitial": 0, + "energyCapacity": 400000, + "energyMaxReceive": 200, + "energyMaxExtract": 200, + "isFluidTank": false, + "fluidCapacity": 8000, + "fluidRestrictions": [], + "onDestroyedByPlayer": { + "name": "Oreexperience" + }, + "generateFeature": true, + "restrictionBiomes": [ + { + "value": "#mod:hot_biomes" + } + ], + "blocksToReplace": [ + { + "value": "Blocks.STONE" + } + ], + "generationShape": "TRIANGLE", + "frequencyPerChunks": 10, + "frequencyOnChunk": 8, + "minGenerateHeight": -80, + "maxGenerateHeight": -30 + } +} \ No newline at end of file diff --git a/elements/Deepslateredstonetable.mod.json b/elements/Deepslateredstonetable.mod.json new file mode 100644 index 000000000..d600fd8a7 --- /dev/null +++ b/elements/Deepslateredstonetable.mod.json @@ -0,0 +1,57 @@ +{ + "_fv": 73, + "_type": "loottable", + "definition": { + "type": "Block", + "pools": [ + { + "minrolls": 1, + "maxrolls": 2, + "minbonusrolls": 1, + "maxbonusrolls": 1, + "hasbonusrolls": false, + "entries": [ + { + "type": "item", + "item": { + "value": "Items.REDSTONE" + }, + "weight": 1, + "minCount": 4, + "maxCount": 6, + "minEnchantmentLevel": 0, + "maxEnchantmentLevel": 0, + "affectedByFortune": true, + "explosionDecay": false, + "silkTouchMode": 2 + } + ] + }, + { + "minrolls": 1, + "maxrolls": 1, + "minbonusrolls": 1, + "maxbonusrolls": 1, + "hasbonusrolls": false, + "entries": [ + { + "type": "item", + "item": { + "value": "Blocks.DEEPSLATE_REDSTONE_ORE" + }, + "weight": 1, + "minCount": 1, + "maxCount": 1, + "minEnchantmentLevel": 0, + "maxEnchantmentLevel": 0, + "affectedByFortune": false, + "explosionDecay": false, + "silkTouchMode": 1 + } + ] + } + ], + "name": "blocks/deepslateredstoneore", + "namespace": "mod" + } +} \ No newline at end of file diff --git a/elements/Deepslatesharddiamondore.mod.json b/elements/Deepslatesharddiamondore.mod.json new file mode 100644 index 000000000..acc65530f --- /dev/null +++ b/elements/Deepslatesharddiamondore.mod.json @@ -0,0 +1,140 @@ +{ + "_fv": 73, + "_type": "block", + "definition": { + "texture": "shard_diamond_ore", + "textureTop": "", + "textureLeft": "", + "textureFront": "", + "textureRight": "", + "textureBack": "", + "renderType": 10, + "customModelName": "Normal", + "rotationMode": 0, + "enablePitch": false, + "emissiveRendering": false, + "displayFluidOverlay": false, + "itemTexture": "", + "particleTexture": "", + "tintType": "No tint", + "isItemTinted": false, + "hasTransparency": false, + "connectedSides": false, + "transparencyType": "SOLID", + "disableOffset": false, + "boundingBoxes": [ + { + "mx": 0.0, + "my": 0.0, + "mz": 0.0, + "Mx": 16.0, + "My": 16.0, + "Mz": 16.0, + "subtract": false + } + ], + "customProperties": [], + "name": "Deepslate shard diamond ore", + "specialInformation": { + "fixedValue": [] + }, + "hardness": 3.0, + "resistance": 14.5, + "hasGravity": false, + "isWaterloggable": false, + "creativeTabs": [ + { + "value": "MATERIALS" + } + ], + "destroyTool": "pickaxe", + "customDrop": { + "value": "" + }, + "dropAmount": 1, + "useLootTableForDrops": true, + "requiresCorrectTool": true, + "enchantPowerBonus": 0.0, + "plantsGrowOn": false, + "canRedstoneConnect": false, + "lightOpacity": 15, + "material": { + "value": "NONE" + }, + "tickRate": 0, + "tickRandomly": false, + "isReplaceable": false, + "canProvidePower": false, + "emittedRedstonePower": { + "fixedValue": 15.0 + }, + "colorOnMap": "DEFAULT", + "creativePickItem": { + "value": "" + }, + "offsetType": "NONE", + "aiPathNodeType": "DEFAULT", + "flammability": 0, + "fireSpreadSpeed": 0, + "isLadder": false, + "slipperiness": 0.6, + "speedFactor": 1.0, + "jumpFactor": 1.0, + "reactionToPushing": "NORMAL", + "isNotColidable": false, + "isCustomSoundType": false, + "soundOnStep": { + "value": "STONE" + }, + "breakSound": { + "value": "" + }, + "fallSound": { + "value": "" + }, + "hitSound": { + "value": "" + }, + "placeSound": { + "value": "" + }, + "stepSound": { + "value": "" + }, + "luminance": 0, + "unbreakable": false, + "vanillaToolTier": "IRON", + "isBonemealable": false, + "hasInventory": false, + "openGUIOnRightClick": false, + "inventorySize": 9, + "inventoryStackSize": 64, + "inventoryDropWhenDestroyed": true, + "inventoryComparatorPower": true, + "inventoryOutSlotIDs": [], + "inventoryInSlotIDs": [], + "hasEnergyStorage": false, + "energyInitial": 0, + "energyCapacity": 400000, + "energyMaxReceive": 200, + "energyMaxExtract": 200, + "isFluidTank": false, + "fluidCapacity": 8000, + "fluidRestrictions": [], + "onDestroyedByPlayer": { + "name": "Oreexperience" + }, + "generateFeature": true, + "restrictionBiomes": [], + "blocksToReplace": [ + { + "value": "Blocks.STONE" + } + ], + "generationShape": "TRIANGLE", + "frequencyPerChunks": 1, + "frequencyOnChunk": 16, + "minGenerateHeight": -70, + "maxGenerateHeight": -35 + } +} \ No newline at end of file diff --git a/elements/Deepslatesharddiamondtable.mod.json b/elements/Deepslatesharddiamondtable.mod.json new file mode 100644 index 000000000..1878b0c22 --- /dev/null +++ b/elements/Deepslatesharddiamondtable.mod.json @@ -0,0 +1,57 @@ +{ + "_fv": 73, + "_type": "loottable", + "definition": { + "type": "Block", + "pools": [ + { + "minrolls": 1, + "maxrolls": 1, + "minbonusrolls": 1, + "maxbonusrolls": 1, + "hasbonusrolls": false, + "entries": [ + { + "type": "item", + "item": { + "value": "CUSTOM:Diamondshard" + }, + "weight": 1, + "minCount": 1, + "maxCount": 2, + "minEnchantmentLevel": 0, + "maxEnchantmentLevel": 0, + "affectedByFortune": true, + "explosionDecay": false, + "silkTouchMode": 2 + } + ] + }, + { + "minrolls": 1, + "maxrolls": 1, + "minbonusrolls": 1, + "maxbonusrolls": 1, + "hasbonusrolls": false, + "entries": [ + { + "type": "item", + "item": { + "value": "CUSTOM:Deepslatesharddiamondore" + }, + "weight": 1, + "minCount": 1, + "maxCount": 1, + "minEnchantmentLevel": 0, + "maxEnchantmentLevel": 0, + "affectedByFortune": false, + "explosionDecay": false, + "silkTouchMode": 1 + } + ] + } + ], + "name": "blocks/deepslatesharddiamondore", + "namespace": "mod" + } +} \ No newline at end of file diff --git a/elements/Diamondshard.mod.json b/elements/Diamondshard.mod.json new file mode 100644 index 000000000..0ded69363 --- /dev/null +++ b/elements/Diamondshard.mod.json @@ -0,0 +1,65 @@ +{ + "_fv": 73, + "_type": "item", + "definition": { + "renderType": 0, + "texture": "shard_diamond-removebg-preview", + "customModelName": "Normal", + "customProperties": {}, + "states": [], + "name": "Diamond shard", + "rarity": "RARE", + "creativeTabs": [ + { + "value": "MATERIALS" + } + ], + "stackSize": 64, + "enchantability": 0, + "useDuration": 0, + "toolType": 1.0, + "damageCount": 0, + "recipeRemainder": { + "value": "" + }, + "destroyAnyBlock": false, + "immuneToFire": false, + "stayInGridWhenCrafting": false, + "damageOnCrafting": false, + "enableMeleeDamage": false, + "damageVsEntity": 0.0, + "specialInformation": { + "fixedValue": [ + "Diamond sparkle, to create tools or to create a diamond " + ] + }, + "glowCondition": { + "fixedValue": false + }, + "inventorySize": 9, + "inventoryStackSize": 64, + "enableRanged": false, + "shootConstantly": false, + "rangedItemChargesPower": false, + "projectile": { + "value": "Arrow" + }, + "projectileDisableAmmoCheck": false, + "isFood": false, + "nutritionalValue": 4, + "saturation": 0.3, + "eatResultItem": { + "value": "" + }, + "isMeat": false, + "isAlwaysEdible": false, + "animation": "none", + "isMusicDisc": false, + "musicDiscMusic": { + "value": "" + }, + "musicDiscDescription": "", + "musicDiscLengthInTicks": 100, + "musicDiscAnalogOutput": 0 + } +} \ No newline at end of file diff --git a/elements/Diamondshardtodiamond.mod.json b/elements/Diamondshardtodiamond.mod.json new file mode 100644 index 000000000..504ecd854 --- /dev/null +++ b/elements/Diamondshardtodiamond.mod.json @@ -0,0 +1,48 @@ +{ + "_fv": 73, + "_type": "recipe", + "definition": { + "recipeType": "Crafting", + "recipeRetstackSize": 1, + "group": "", + "cookingBookCategory": "MISC", + "xpReward": 0.0, + "cookingTime": 200, + "craftingBookCategory": "MISC", + "recipeShapeless": false, + "recipeSlots": [ + { + "value": "CUSTOM:Diamondshard" + }, + { + "value": "CUSTOM:Diamondshard" + }, + { + "value": "CUSTOM:Diamondshard" + }, + { + "value": "CUSTOM:Diamondshard" + }, + { + "value": "CUSTOM:Diamondshard" + }, + { + "value": "CUSTOM:Diamondshard" + }, + { + "value": "CUSTOM:Diamondshard" + }, + { + "value": "CUSTOM:Diamondshard" + }, + { + "value": "CUSTOM:Diamondshard" + } + ], + "recipeReturnStack": { + "value": "Items.DIAMOND" + }, + "name": "diamondshardtodiamond", + "namespace": "mod" + } +} \ No newline at end of file diff --git a/elements/Emeraldoretable.mod.json b/elements/Emeraldoretable.mod.json new file mode 100644 index 000000000..e2e3a6337 --- /dev/null +++ b/elements/Emeraldoretable.mod.json @@ -0,0 +1,57 @@ +{ + "_fv": 73, + "_type": "loottable", + "definition": { + "type": "Block", + "pools": [ + { + "minrolls": 1, + "maxrolls": 1, + "minbonusrolls": 1, + "maxbonusrolls": 1, + "hasbonusrolls": false, + "entries": [ + { + "type": "item", + "item": { + "value": "Items.EMERALD" + }, + "weight": 1, + "minCount": 1, + "maxCount": 1, + "minEnchantmentLevel": 0, + "maxEnchantmentLevel": 0, + "affectedByFortune": true, + "explosionDecay": false, + "silkTouchMode": 2 + } + ] + }, + { + "minrolls": 1, + "maxrolls": 1, + "minbonusrolls": 1, + "maxbonusrolls": 1, + "hasbonusrolls": false, + "entries": [ + { + "type": "item", + "item": { + "value": "Blocks.EMERALD_ORE" + }, + "weight": 1, + "minCount": 1, + "maxCount": 1, + "minEnchantmentLevel": 0, + "maxEnchantmentLevel": 0, + "affectedByFortune": false, + "explosionDecay": false, + "silkTouchMode": 1 + } + ] + } + ], + "name": "blocks/highemeraldore", + "namespace": "mod" + } +} \ No newline at end of file diff --git a/elements/Highcopperoretable.mod.json b/elements/Highcopperoretable.mod.json new file mode 100644 index 000000000..09855d137 --- /dev/null +++ b/elements/Highcopperoretable.mod.json @@ -0,0 +1,57 @@ +{ + "_fv": 73, + "_type": "loottable", + "definition": { + "type": "Block", + "pools": [ + { + "minrolls": 1, + "maxrolls": 2, + "minbonusrolls": 1, + "maxbonusrolls": 1, + "hasbonusrolls": false, + "entries": [ + { + "type": "item", + "item": { + "value": "Items.RAW_COPPER" + }, + "weight": 1, + "minCount": 2, + "maxCount": 5, + "minEnchantmentLevel": 0, + "maxEnchantmentLevel": 0, + "affectedByFortune": true, + "explosionDecay": false, + "silkTouchMode": 2 + } + ] + }, + { + "minrolls": 1, + "maxrolls": 1, + "minbonusrolls": 1, + "maxbonusrolls": 1, + "hasbonusrolls": false, + "entries": [ + { + "type": "item", + "item": { + "value": "Blocks.COPPER_ORE" + }, + "weight": 1, + "minCount": 1, + "maxCount": 1, + "minEnchantmentLevel": 0, + "maxEnchantmentLevel": 0, + "affectedByFortune": false, + "explosionDecay": false, + "silkTouchMode": 1 + } + ] + } + ], + "name": "blocks/copperhighore", + "namespace": "mod" + } +} \ No newline at end of file diff --git a/elements/Highemeraldore.mod.json b/elements/Highemeraldore.mod.json new file mode 100644 index 000000000..a5a4d6339 --- /dev/null +++ b/elements/Highemeraldore.mod.json @@ -0,0 +1,140 @@ +{ + "_fv": 73, + "_type": "block", + "definition": { + "texture": "minecraft:emerald_ore", + "textureTop": "", + "textureLeft": "", + "textureFront": "", + "textureRight": "", + "textureBack": "", + "renderType": 11, + "customModelName": "Single texture", + "rotationMode": 0, + "enablePitch": false, + "emissiveRendering": false, + "displayFluidOverlay": false, + "itemTexture": "", + "particleTexture": "", + "tintType": "No tint", + "isItemTinted": false, + "hasTransparency": false, + "connectedSides": false, + "transparencyType": "SOLID", + "disableOffset": false, + "boundingBoxes": [ + { + "mx": 0.0, + "my": 0.0, + "mz": 0.0, + "Mx": 16.0, + "My": 16.0, + "Mz": 16.0, + "subtract": false + } + ], + "customProperties": [], + "name": "emerald ore", + "specialInformation": { + "fixedValue": [] + }, + "hardness": 3.0, + "resistance": 10.0, + "hasGravity": false, + "isWaterloggable": false, + "creativeTabs": [], + "destroyTool": "pickaxe", + "customDrop": { + "value": "" + }, + "dropAmount": 1, + "useLootTableForDrops": true, + "requiresCorrectTool": true, + "enchantPowerBonus": 0.0, + "plantsGrowOn": false, + "canRedstoneConnect": false, + "lightOpacity": 15, + "material": { + "value": "NONE" + }, + "tickRate": 0, + "tickRandomly": false, + "isReplaceable": false, + "canProvidePower": false, + "emittedRedstonePower": { + "fixedValue": 15.0 + }, + "colorOnMap": "DEFAULT", + "creativePickItem": { + "value": "" + }, + "offsetType": "NONE", + "aiPathNodeType": "DEFAULT", + "flammability": 0, + "fireSpreadSpeed": 0, + "isLadder": false, + "slipperiness": 0.6, + "speedFactor": 1.0, + "jumpFactor": 1.0, + "reactionToPushing": "NORMAL", + "isNotColidable": false, + "isCustomSoundType": false, + "soundOnStep": { + "value": "STONE" + }, + "breakSound": { + "value": "" + }, + "fallSound": { + "value": "" + }, + "hitSound": { + "value": "" + }, + "placeSound": { + "value": "" + }, + "stepSound": { + "value": "" + }, + "luminance": 0, + "unbreakable": false, + "vanillaToolTier": "IRON", + "isBonemealable": false, + "hasInventory": false, + "openGUIOnRightClick": false, + "inventorySize": 9, + "inventoryStackSize": 64, + "inventoryDropWhenDestroyed": true, + "inventoryComparatorPower": true, + "inventoryOutSlotIDs": [], + "inventoryInSlotIDs": [], + "hasEnergyStorage": false, + "energyInitial": 0, + "energyCapacity": 400000, + "energyMaxReceive": 200, + "energyMaxExtract": 200, + "isFluidTank": false, + "fluidCapacity": 8000, + "fluidRestrictions": [], + "onDestroyedByPlayer": { + "name": "Oreexperience" + }, + "generateFeature": true, + "restrictionBiomes": [ + { + "value": "#mod:rare_biomes" + } + ], + "blocksToReplace": [ + { + "value": "Blocks.STONE" + } + ], + "generationShape": "UNIFORM", + "frequencyPerChunks": 4, + "frequencyOnChunk": 7, + "minGenerateHeight": 0, + "maxGenerateHeight": 64 + } +} \ No newline at end of file diff --git a/elements/Ironore.mod.json b/elements/Ironore.mod.json new file mode 100644 index 000000000..c01346f64 --- /dev/null +++ b/elements/Ironore.mod.json @@ -0,0 +1,140 @@ +{ + "_fv": 73, + "_type": "block", + "definition": { + "texture": "minecraft:iron_ore", + "textureTop": "", + "textureLeft": "", + "textureFront": "", + "textureRight": "", + "textureBack": "", + "renderType": 11, + "customModelName": "Single texture", + "rotationMode": 0, + "enablePitch": false, + "emissiveRendering": false, + "displayFluidOverlay": false, + "itemTexture": "", + "particleTexture": "", + "tintType": "No tint", + "isItemTinted": false, + "hasTransparency": false, + "connectedSides": false, + "transparencyType": "SOLID", + "disableOffset": false, + "boundingBoxes": [ + { + "mx": 0.0, + "my": 0.0, + "mz": 0.0, + "Mx": 16.0, + "My": 16.0, + "Mz": 16.0, + "subtract": false + } + ], + "customProperties": [], + "name": "Iron ore", + "specialInformation": { + "fixedValue": [] + }, + "hardness": 2.0, + "resistance": 10.0, + "hasGravity": false, + "isWaterloggable": false, + "creativeTabs": [], + "destroyTool": "pickaxe", + "customDrop": { + "value": "" + }, + "dropAmount": 1, + "useLootTableForDrops": true, + "requiresCorrectTool": true, + "enchantPowerBonus": 0.0, + "plantsGrowOn": false, + "canRedstoneConnect": false, + "lightOpacity": 15, + "material": { + "value": "NONE" + }, + "tickRate": 0, + "tickRandomly": false, + "isReplaceable": false, + "canProvidePower": false, + "emittedRedstonePower": { + "fixedValue": 15.0 + }, + "colorOnMap": "DEFAULT", + "creativePickItem": { + "value": "" + }, + "offsetType": "NONE", + "aiPathNodeType": "DEFAULT", + "flammability": 0, + "fireSpreadSpeed": 0, + "isLadder": false, + "slipperiness": 0.6, + "speedFactor": 1.0, + "jumpFactor": 1.0, + "reactionToPushing": "NORMAL", + "isNotColidable": false, + "isCustomSoundType": false, + "soundOnStep": { + "value": "STONE" + }, + "breakSound": { + "value": "" + }, + "fallSound": { + "value": "" + }, + "hitSound": { + "value": "" + }, + "placeSound": { + "value": "" + }, + "stepSound": { + "value": "" + }, + "luminance": 0, + "unbreakable": false, + "vanillaToolTier": "STONE", + "isBonemealable": false, + "hasInventory": false, + "openGUIOnRightClick": false, + "inventorySize": 9, + "inventoryStackSize": 64, + "inventoryDropWhenDestroyed": true, + "inventoryComparatorPower": true, + "inventoryOutSlotIDs": [], + "inventoryInSlotIDs": [], + "hasEnergyStorage": false, + "energyInitial": 0, + "energyCapacity": 400000, + "energyMaxReceive": 200, + "energyMaxExtract": 200, + "isFluidTank": false, + "fluidCapacity": 8000, + "fluidRestrictions": [], + "onDestroyedByPlayer": { + "name": "Oreexperience" + }, + "generateFeature": true, + "restrictionBiomes": [ + { + "value": "#mod:tempered_biomes" + } + ], + "blocksToReplace": [ + { + "value": "Blocks.STONE" + } + ], + "generationShape": "UNIFORM", + "frequencyPerChunks": 20, + "frequencyOnChunk": 9, + "minGenerateHeight": 0, + "maxGenerateHeight": 100 + } +} \ No newline at end of file diff --git a/elements/Ironoretable.mod.json b/elements/Ironoretable.mod.json new file mode 100644 index 000000000..8c35d9070 --- /dev/null +++ b/elements/Ironoretable.mod.json @@ -0,0 +1,57 @@ +{ + "_fv": 73, + "_type": "loottable", + "definition": { + "type": "Block", + "pools": [ + { + "minrolls": 1, + "maxrolls": 1, + "minbonusrolls": 1, + "maxbonusrolls": 1, + "hasbonusrolls": false, + "entries": [ + { + "type": "item", + "item": { + "value": "Items.RAW_IRON" + }, + "weight": 1, + "minCount": 1, + "maxCount": 1, + "minEnchantmentLevel": 0, + "maxEnchantmentLevel": 0, + "affectedByFortune": true, + "explosionDecay": false, + "silkTouchMode": 2 + } + ] + }, + { + "minrolls": 1, + "maxrolls": 1, + "minbonusrolls": 1, + "maxbonusrolls": 1, + "hasbonusrolls": false, + "entries": [ + { + "type": "item", + "item": { + "value": "Blocks.IRON_ORE" + }, + "weight": 1, + "minCount": 1, + "maxCount": 1, + "minEnchantmentLevel": 0, + "maxEnchantmentLevel": 0, + "affectedByFortune": false, + "explosionDecay": false, + "silkTouchMode": 1 + } + ] + } + ], + "name": "blocks/ironore", + "namespace": "mod" + } +} \ No newline at end of file diff --git a/elements/Lapisore.mod.json b/elements/Lapisore.mod.json new file mode 100644 index 000000000..69505d5f5 --- /dev/null +++ b/elements/Lapisore.mod.json @@ -0,0 +1,140 @@ +{ + "_fv": 73, + "_type": "block", + "definition": { + "texture": "minecraft:lapis_ore", + "textureTop": "", + "textureLeft": "", + "textureFront": "", + "textureRight": "", + "textureBack": "", + "renderType": 11, + "customModelName": "Single texture", + "rotationMode": 0, + "enablePitch": false, + "emissiveRendering": false, + "displayFluidOverlay": false, + "itemTexture": "", + "particleTexture": "", + "tintType": "No tint", + "isItemTinted": false, + "hasTransparency": false, + "connectedSides": false, + "transparencyType": "SOLID", + "disableOffset": false, + "boundingBoxes": [ + { + "mx": 0.0, + "my": 0.0, + "mz": 0.0, + "Mx": 16.0, + "My": 16.0, + "Mz": 16.0, + "subtract": false + } + ], + "customProperties": [], + "name": "Lapis ore", + "specialInformation": { + "fixedValue": [] + }, + "hardness": 3.0, + "resistance": 10.0, + "hasGravity": false, + "isWaterloggable": false, + "creativeTabs": [], + "destroyTool": "pickaxe", + "customDrop": { + "value": "" + }, + "dropAmount": 1, + "useLootTableForDrops": true, + "requiresCorrectTool": true, + "enchantPowerBonus": 0.0, + "plantsGrowOn": false, + "canRedstoneConnect": false, + "lightOpacity": 15, + "material": { + "value": "NONE" + }, + "tickRate": 0, + "tickRandomly": false, + "isReplaceable": false, + "canProvidePower": false, + "emittedRedstonePower": { + "fixedValue": 15.0 + }, + "colorOnMap": "DEFAULT", + "creativePickItem": { + "value": "" + }, + "offsetType": "NONE", + "aiPathNodeType": "DEFAULT", + "flammability": 0, + "fireSpreadSpeed": 0, + "isLadder": false, + "slipperiness": 0.6, + "speedFactor": 1.0, + "jumpFactor": 1.0, + "reactionToPushing": "NORMAL", + "isNotColidable": false, + "isCustomSoundType": false, + "soundOnStep": { + "value": "STONE" + }, + "breakSound": { + "value": "" + }, + "fallSound": { + "value": "" + }, + "hitSound": { + "value": "" + }, + "placeSound": { + "value": "" + }, + "stepSound": { + "value": "" + }, + "luminance": 0, + "unbreakable": false, + "vanillaToolTier": "STONE", + "isBonemealable": false, + "hasInventory": false, + "openGUIOnRightClick": false, + "inventorySize": 9, + "inventoryStackSize": 64, + "inventoryDropWhenDestroyed": true, + "inventoryComparatorPower": true, + "inventoryOutSlotIDs": [], + "inventoryInSlotIDs": [], + "hasEnergyStorage": false, + "energyInitial": 0, + "energyCapacity": 400000, + "energyMaxReceive": 200, + "energyMaxExtract": 200, + "isFluidTank": false, + "fluidCapacity": 8000, + "fluidRestrictions": [], + "onDestroyedByPlayer": { + "name": "Oreexperience" + }, + "generateFeature": true, + "restrictionBiomes": [ + { + "value": "#mod:cold_biomes" + } + ], + "blocksToReplace": [ + { + "value": "Blocks.STONE" + } + ], + "generationShape": "TRIANGLE", + "frequencyPerChunks": 1, + "frequencyOnChunk": 8, + "minGenerateHeight": -10, + "maxGenerateHeight": 20 + } +} \ No newline at end of file diff --git a/elements/Lapisoretable.mod.json b/elements/Lapisoretable.mod.json new file mode 100644 index 000000000..7e8a5ddc4 --- /dev/null +++ b/elements/Lapisoretable.mod.json @@ -0,0 +1,57 @@ +{ + "_fv": 73, + "_type": "loottable", + "definition": { + "type": "Block", + "pools": [ + { + "minrolls": 1, + "maxrolls": 1, + "minbonusrolls": 1, + "maxbonusrolls": 1, + "hasbonusrolls": false, + "entries": [ + { + "type": "item", + "item": { + "value": "Items.DYE#4" + }, + "weight": 1, + "minCount": 4, + "maxCount": 8, + "minEnchantmentLevel": 0, + "maxEnchantmentLevel": 5, + "affectedByFortune": true, + "explosionDecay": false, + "silkTouchMode": 2 + } + ] + }, + { + "minrolls": 1, + "maxrolls": 1, + "minbonusrolls": 1, + "maxbonusrolls": 1, + "hasbonusrolls": false, + "entries": [ + { + "type": "item", + "item": { + "value": "Blocks.LAPIS_ORE" + }, + "weight": 1, + "minCount": 1, + "maxCount": 1, + "minEnchantmentLevel": 0, + "maxEnchantmentLevel": 0, + "affectedByFortune": false, + "explosionDecay": false, + "silkTouchMode": 1 + } + ] + } + ], + "name": "blocks/lapisore", + "namespace": "mod" + } +} \ No newline at end of file diff --git a/elements/Lowercopperoretable.mod.json b/elements/Lowercopperoretable.mod.json new file mode 100644 index 000000000..d206b5a80 --- /dev/null +++ b/elements/Lowercopperoretable.mod.json @@ -0,0 +1,57 @@ +{ + "_fv": 73, + "_type": "loottable", + "definition": { + "type": "Block", + "pools": [ + { + "minrolls": 1, + "maxrolls": 2, + "minbonusrolls": 1, + "maxbonusrolls": 1, + "hasbonusrolls": false, + "entries": [ + { + "type": "item", + "item": { + "value": "Items.RAW_COPPER" + }, + "weight": 1, + "minCount": 2, + "maxCount": 6, + "minEnchantmentLevel": 0, + "maxEnchantmentLevel": 0, + "affectedByFortune": true, + "explosionDecay": false, + "silkTouchMode": 2 + } + ] + }, + { + "minrolls": 1, + "maxrolls": 1, + "minbonusrolls": 1, + "maxbonusrolls": 1, + "hasbonusrolls": false, + "entries": [ + { + "type": "item", + "item": { + "value": "Blocks.DEEPSLATE_COPPER_ORE" + }, + "weight": 1, + "minCount": 1, + "maxCount": 1, + "minEnchantmentLevel": 0, + "maxEnchantmentLevel": 0, + "affectedByFortune": false, + "explosionDecay": false, + "silkTouchMode": 1 + } + ] + } + ], + "name": "blocks/copperlowerore", + "namespace": "mod" + } +} \ No newline at end of file diff --git a/elements/Loweremeraldore.mod.json b/elements/Loweremeraldore.mod.json new file mode 100644 index 000000000..db7d7a65b --- /dev/null +++ b/elements/Loweremeraldore.mod.json @@ -0,0 +1,140 @@ +{ + "_fv": 73, + "_type": "block", + "definition": { + "texture": "minecraft:deepslate_emerald_ore", + "textureTop": "", + "textureLeft": "", + "textureFront": "", + "textureRight": "", + "textureBack": "", + "renderType": 11, + "customModelName": "Single texture", + "rotationMode": 0, + "enablePitch": false, + "emissiveRendering": false, + "displayFluidOverlay": false, + "itemTexture": "", + "particleTexture": "", + "tintType": "No tint", + "isItemTinted": false, + "hasTransparency": false, + "connectedSides": false, + "transparencyType": "SOLID", + "disableOffset": false, + "boundingBoxes": [ + { + "mx": 0.0, + "my": 0.0, + "mz": 0.0, + "Mx": 16.0, + "My": 16.0, + "Mz": 16.0, + "subtract": false + } + ], + "customProperties": [], + "name": "Loweremeraldore", + "specialInformation": { + "fixedValue": [] + }, + "hardness": 4.5, + "resistance": 10.0, + "hasGravity": false, + "isWaterloggable": false, + "creativeTabs": [], + "destroyTool": "pickaxe", + "customDrop": { + "value": "" + }, + "dropAmount": 1, + "useLootTableForDrops": true, + "requiresCorrectTool": true, + "enchantPowerBonus": 0.0, + "plantsGrowOn": false, + "canRedstoneConnect": false, + "lightOpacity": 15, + "material": { + "value": "NONE" + }, + "tickRate": 0, + "tickRandomly": false, + "isReplaceable": false, + "canProvidePower": false, + "emittedRedstonePower": { + "fixedValue": 15.0 + }, + "colorOnMap": "DEFAULT", + "creativePickItem": { + "value": "" + }, + "offsetType": "NONE", + "aiPathNodeType": "DEFAULT", + "flammability": 0, + "fireSpreadSpeed": 0, + "isLadder": false, + "slipperiness": 0.6, + "speedFactor": 1.0, + "jumpFactor": 1.0, + "reactionToPushing": "NORMAL", + "isNotColidable": false, + "isCustomSoundType": false, + "soundOnStep": { + "value": "STONE" + }, + "breakSound": { + "value": "" + }, + "fallSound": { + "value": "" + }, + "hitSound": { + "value": "" + }, + "placeSound": { + "value": "" + }, + "stepSound": { + "value": "" + }, + "luminance": 0, + "unbreakable": false, + "vanillaToolTier": "IRON", + "isBonemealable": false, + "hasInventory": false, + "openGUIOnRightClick": false, + "inventorySize": 9, + "inventoryStackSize": 64, + "inventoryDropWhenDestroyed": true, + "inventoryComparatorPower": true, + "inventoryOutSlotIDs": [], + "inventoryInSlotIDs": [], + "hasEnergyStorage": false, + "energyInitial": 0, + "energyCapacity": 400000, + "energyMaxReceive": 200, + "energyMaxExtract": 200, + "isFluidTank": false, + "fluidCapacity": 8000, + "fluidRestrictions": [], + "onDestroyedByPlayer": { + "name": "Oreexperience" + }, + "generateFeature": true, + "restrictionBiomes": [ + { + "value": "#mod:rare_biomes" + } + ], + "blocksToReplace": [ + { + "value": "Blocks.STONE" + } + ], + "generationShape": "TRIANGLE", + "frequencyPerChunks": 4, + "frequencyOnChunk": 7, + "minGenerateHeight": -64, + "maxGenerateHeight": 0 + } +} \ No newline at end of file diff --git a/elements/Oreexperience.mod.json b/elements/Oreexperience.mod.json new file mode 100644 index 000000000..74d37ca99 --- /dev/null +++ b/elements/Oreexperience.mod.json @@ -0,0 +1,7 @@ +{ + "_fv": 73, + "_type": "procedure", + "definition": { + "procedurexml": "no_ext_triggerSILK_TOUCH2" + } +} \ No newline at end of file diff --git a/elements/Pickaxecraft.mod.json b/elements/Pickaxecraft.mod.json new file mode 100644 index 000000000..0a08a97fa --- /dev/null +++ b/elements/Pickaxecraft.mod.json @@ -0,0 +1,48 @@ +{ + "_fv": 73, + "_type": "recipe", + "definition": { + "recipeType": "Crafting", + "recipeRetstackSize": 1, + "group": "", + "cookingBookCategory": "MISC", + "xpReward": 0.0, + "cookingTime": 200, + "craftingBookCategory": "MISC", + "recipeShapeless": false, + "recipeSlots": [ + { + "value": "CUSTOM:Diamondshard" + }, + { + "value": "CUSTOM:Diamondshard" + }, + { + "value": "CUSTOM:Diamondshard" + }, + { + "value": "" + }, + { + "value": "Items.STICK" + }, + { + "value": "" + }, + { + "value": "" + }, + { + "value": "Items.STICK" + }, + { + "value": "" + } + ], + "recipeReturnStack": { + "value": "CUSTOM:Sharddiamondpickaxe" + }, + "name": "pickaxecraft", + "namespace": "mod" + } +} \ No newline at end of file diff --git a/elements/Puregoldenore.mod.json b/elements/Puregoldenore.mod.json new file mode 100644 index 000000000..4cf2934be --- /dev/null +++ b/elements/Puregoldenore.mod.json @@ -0,0 +1,140 @@ +{ + "_fv": 73, + "_type": "block", + "definition": { + "texture": "minecraft:gold_ore", + "textureTop": "", + "textureLeft": "", + "textureFront": "", + "textureRight": "", + "textureBack": "", + "renderType": 11, + "customModelName": "Single texture", + "rotationMode": 0, + "enablePitch": false, + "emissiveRendering": false, + "displayFluidOverlay": false, + "itemTexture": "", + "particleTexture": "", + "tintType": "No tint", + "isItemTinted": false, + "hasTransparency": false, + "connectedSides": false, + "transparencyType": "SOLID", + "disableOffset": false, + "boundingBoxes": [ + { + "mx": 0.0, + "my": 0.0, + "mz": 0.0, + "Mx": 16.0, + "My": 16.0, + "Mz": 16.0, + "subtract": false + } + ], + "customProperties": [], + "name": "Pure golden ore", + "specialInformation": { + "fixedValue": [] + }, + "hardness": 3.0, + "resistance": 10.0, + "hasGravity": false, + "isWaterloggable": false, + "creativeTabs": [], + "destroyTool": "pickaxe", + "customDrop": { + "value": "" + }, + "dropAmount": 1, + "useLootTableForDrops": true, + "requiresCorrectTool": false, + "enchantPowerBonus": 0.0, + "plantsGrowOn": false, + "canRedstoneConnect": false, + "lightOpacity": 15, + "material": { + "value": "NONE" + }, + "tickRate": 0, + "tickRandomly": false, + "isReplaceable": false, + "canProvidePower": false, + "emittedRedstonePower": { + "fixedValue": 15.0 + }, + "colorOnMap": "DEFAULT", + "creativePickItem": { + "value": "" + }, + "offsetType": "NONE", + "aiPathNodeType": "DEFAULT", + "flammability": 0, + "fireSpreadSpeed": 0, + "isLadder": false, + "slipperiness": 0.6, + "speedFactor": 1.0, + "jumpFactor": 1.0, + "reactionToPushing": "NORMAL", + "isNotColidable": false, + "isCustomSoundType": false, + "soundOnStep": { + "value": "STONE" + }, + "breakSound": { + "value": "" + }, + "fallSound": { + "value": "" + }, + "hitSound": { + "value": "" + }, + "placeSound": { + "value": "" + }, + "stepSound": { + "value": "" + }, + "luminance": 0, + "unbreakable": false, + "vanillaToolTier": "IRON", + "isBonemealable": false, + "hasInventory": false, + "openGUIOnRightClick": false, + "inventorySize": 9, + "inventoryStackSize": 64, + "inventoryDropWhenDestroyed": true, + "inventoryComparatorPower": true, + "inventoryOutSlotIDs": [], + "inventoryInSlotIDs": [], + "hasEnergyStorage": false, + "energyInitial": 0, + "energyCapacity": 400000, + "energyMaxReceive": 200, + "energyMaxExtract": 200, + "isFluidTank": false, + "fluidCapacity": 8000, + "fluidRestrictions": [], + "onDestroyedByPlayer": { + "name": "Oreexperience" + }, + "generateFeature": true, + "restrictionBiomes": [ + { + "value": "#mod:hot_biomes" + } + ], + "blocksToReplace": [ + { + "value": "Blocks.STONE" + } + ], + "generationShape": "UNIFORM", + "frequencyPerChunks": 4, + "frequencyOnChunk": 9, + "minGenerateHeight": 0, + "maxGenerateHeight": 256 + } +} \ No newline at end of file diff --git a/elements/Puregoldenoretable.mod.json b/elements/Puregoldenoretable.mod.json new file mode 100644 index 000000000..2ee7ca17c --- /dev/null +++ b/elements/Puregoldenoretable.mod.json @@ -0,0 +1,57 @@ +{ + "_fv": 73, + "_type": "loottable", + "definition": { + "type": "Block", + "pools": [ + { + "minrolls": 1, + "maxrolls": 2, + "minbonusrolls": 1, + "maxbonusrolls": 2, + "hasbonusrolls": true, + "entries": [ + { + "type": "item", + "item": { + "value": "Items.RAW_GOLD" + }, + "weight": 1, + "minCount": 1, + "maxCount": 2, + "minEnchantmentLevel": 0, + "maxEnchantmentLevel": 0, + "affectedByFortune": true, + "explosionDecay": false, + "silkTouchMode": 2 + } + ] + }, + { + "minrolls": 1, + "maxrolls": 1, + "minbonusrolls": 1, + "maxbonusrolls": 1, + "hasbonusrolls": false, + "entries": [ + { + "type": "item", + "item": { + "value": "Blocks.GOLD_ORE" + }, + "weight": 1, + "minCount": 1, + "maxCount": 1, + "minEnchantmentLevel": 0, + "maxEnchantmentLevel": 0, + "affectedByFortune": false, + "explosionDecay": false, + "silkTouchMode": 1 + } + ] + } + ], + "name": "blocks/deepslatepuregoldenore", + "namespace": "mod" + } +} \ No newline at end of file diff --git a/elements/Redstoneore.mod.json b/elements/Redstoneore.mod.json new file mode 100644 index 000000000..ea7dccd5f --- /dev/null +++ b/elements/Redstoneore.mod.json @@ -0,0 +1,140 @@ +{ + "_fv": 73, + "_type": "block", + "definition": { + "texture": "minecraft:redstone_ore", + "textureTop": "", + "textureLeft": "", + "textureFront": "", + "textureRight": "", + "textureBack": "", + "renderType": 11, + "customModelName": "Single texture", + "rotationMode": 0, + "enablePitch": false, + "emissiveRendering": false, + "displayFluidOverlay": false, + "itemTexture": "", + "particleTexture": "", + "tintType": "No tint", + "isItemTinted": false, + "hasTransparency": false, + "connectedSides": false, + "transparencyType": "SOLID", + "disableOffset": false, + "boundingBoxes": [ + { + "mx": 0.0, + "my": 0.0, + "mz": 0.0, + "Mx": 16.0, + "My": 16.0, + "Mz": 16.0, + "subtract": false + } + ], + "customProperties": [], + "name": "Redstone ore", + "specialInformation": { + "fixedValue": [] + }, + "hardness": 3.0, + "resistance": 10.0, + "hasGravity": false, + "isWaterloggable": false, + "creativeTabs": [], + "destroyTool": "pickaxe", + "customDrop": { + "value": "" + }, + "dropAmount": 1, + "useLootTableForDrops": true, + "requiresCorrectTool": true, + "enchantPowerBonus": 0.0, + "plantsGrowOn": false, + "canRedstoneConnect": false, + "lightOpacity": 15, + "material": { + "value": "NONE" + }, + "tickRate": 0, + "tickRandomly": false, + "isReplaceable": false, + "canProvidePower": false, + "emittedRedstonePower": { + "fixedValue": 15.0 + }, + "colorOnMap": "DEFAULT", + "creativePickItem": { + "value": "" + }, + "offsetType": "NONE", + "aiPathNodeType": "DEFAULT", + "flammability": 0, + "fireSpreadSpeed": 0, + "isLadder": false, + "slipperiness": 0.6, + "speedFactor": 1.0, + "jumpFactor": 1.0, + "reactionToPushing": "NORMAL", + "isNotColidable": false, + "isCustomSoundType": false, + "soundOnStep": { + "value": "STONE" + }, + "breakSound": { + "value": "" + }, + "fallSound": { + "value": "" + }, + "hitSound": { + "value": "" + }, + "placeSound": { + "value": "" + }, + "stepSound": { + "value": "" + }, + "luminance": 1, + "unbreakable": false, + "vanillaToolTier": "IRON", + "isBonemealable": false, + "hasInventory": false, + "openGUIOnRightClick": false, + "inventorySize": 9, + "inventoryStackSize": 64, + "inventoryDropWhenDestroyed": true, + "inventoryComparatorPower": true, + "inventoryOutSlotIDs": [], + "inventoryInSlotIDs": [], + "hasEnergyStorage": false, + "energyInitial": 0, + "energyCapacity": 400000, + "energyMaxReceive": 200, + "energyMaxExtract": 200, + "isFluidTank": false, + "fluidCapacity": 8000, + "fluidRestrictions": [], + "onDestroyedByPlayer": { + "name": "Oreexperience" + }, + "generateFeature": true, + "restrictionBiomes": [ + { + "value": "#mod:hot_biomes" + } + ], + "blocksToReplace": [ + { + "value": "Blocks.STONE" + } + ], + "generationShape": "TRIANGLE", + "frequencyPerChunks": 8, + "frequencyOnChunk": 8, + "minGenerateHeight": -10, + "maxGenerateHeight": 20 + } +} \ No newline at end of file diff --git a/elements/Redstoneoretable.mod.json b/elements/Redstoneoretable.mod.json new file mode 100644 index 000000000..7b2755b8a --- /dev/null +++ b/elements/Redstoneoretable.mod.json @@ -0,0 +1,57 @@ +{ + "_fv": 73, + "_type": "loottable", + "definition": { + "type": "Block", + "pools": [ + { + "minrolls": 1, + "maxrolls": 1, + "minbonusrolls": 1, + "maxbonusrolls": 1, + "hasbonusrolls": false, + "entries": [ + { + "type": "item", + "item": { + "value": "Items.REDSTONE" + }, + "weight": 1, + "minCount": 4, + "maxCount": 5, + "minEnchantmentLevel": 0, + "maxEnchantmentLevel": 0, + "affectedByFortune": true, + "explosionDecay": false, + "silkTouchMode": 2 + } + ] + }, + { + "minrolls": 1, + "maxrolls": 1, + "minbonusrolls": 1, + "maxbonusrolls": 1, + "hasbonusrolls": false, + "entries": [ + { + "type": "item", + "item": { + "value": "Blocks.REDSTONE_ORE" + }, + "weight": 1, + "minCount": 1, + "maxCount": 1, + "minEnchantmentLevel": 0, + "maxEnchantmentLevel": 0, + "affectedByFortune": false, + "explosionDecay": false, + "silkTouchMode": 1 + } + ] + } + ], + "name": "blocks/redstoneore", + "namespace": "mod" + } +} \ No newline at end of file diff --git a/elements/Sharddiamondaxe.mod.json b/elements/Sharddiamondaxe.mod.json new file mode 100644 index 000000000..48a8c2036 --- /dev/null +++ b/elements/Sharddiamondaxe.mod.json @@ -0,0 +1,35 @@ +{ + "_fv": 73, + "_type": "tool", + "definition": { + "toolType": "Axe", + "renderType": 0, + "blockingRenderType": 0, + "texture": "shard_diamond_axe", + "customModelName": "Normal", + "blockingModelName": "Normal blocking", + "name": "Sharddiamondaxe", + "specialInformation": { + "fixedValue": [] + }, + "creativeTabs": [ + { + "value": "TOOLS" + } + ], + "efficiency": 7.0, + "attackSpeed": 1.0, + "enchantability": 9, + "damageVsEntity": 2.0, + "usageCount": 412, + "glowCondition": { + "fixedValue": false + }, + "repairItems": [], + "immuneToFire": false, + "blockDropsTier": "DIAMOND", + "blocksAffected": [], + "stayInGridWhenCrafting": false, + "damageOnCrafting": false + } +} \ No newline at end of file diff --git a/elements/Sharddiamondblockore.mod.json b/elements/Sharddiamondblockore.mod.json new file mode 100644 index 000000000..076a8e9b6 --- /dev/null +++ b/elements/Sharddiamondblockore.mod.json @@ -0,0 +1,140 @@ +{ + "_fv": 73, + "_type": "block", + "definition": { + "texture": "shard_diamond_ore_2", + "textureTop": "", + "textureLeft": "", + "textureFront": "", + "textureRight": "", + "textureBack": "", + "renderType": 11, + "customModelName": "Single texture", + "rotationMode": 0, + "enablePitch": false, + "emissiveRendering": false, + "displayFluidOverlay": false, + "itemTexture": "", + "particleTexture": "", + "tintType": "No tint", + "isItemTinted": false, + "hasTransparency": false, + "connectedSides": false, + "transparencyType": "SOLID", + "disableOffset": false, + "boundingBoxes": [ + { + "mx": 0.0, + "my": 0.0, + "mz": 0.0, + "Mx": 16.0, + "My": 16.0, + "Mz": 16.0, + "subtract": false + } + ], + "customProperties": [], + "name": "Shard diamond block ore", + "specialInformation": { + "fixedValue": [] + }, + "hardness": 1.3, + "resistance": 10.0, + "hasGravity": false, + "isWaterloggable": false, + "creativeTabs": [ + { + "value": "MATERIALS" + } + ], + "destroyTool": "pickaxe", + "customDrop": { + "value": "CUSTOM:Diamondshard" + }, + "dropAmount": 2, + "useLootTableForDrops": true, + "requiresCorrectTool": true, + "enchantPowerBonus": 0.0, + "plantsGrowOn": false, + "canRedstoneConnect": false, + "lightOpacity": 15, + "material": { + "value": "NONE" + }, + "tickRate": 0, + "tickRandomly": false, + "isReplaceable": false, + "canProvidePower": false, + "emittedRedstonePower": { + "fixedValue": 15.0 + }, + "colorOnMap": "DEFAULT", + "creativePickItem": { + "value": "" + }, + "offsetType": "NONE", + "aiPathNodeType": "DEFAULT", + "flammability": 0, + "fireSpreadSpeed": 0, + "isLadder": false, + "slipperiness": 0.6, + "speedFactor": 1.0, + "jumpFactor": 1.0, + "reactionToPushing": "NORMAL", + "isNotColidable": false, + "isCustomSoundType": false, + "soundOnStep": { + "value": "STONE" + }, + "breakSound": { + "value": "" + }, + "fallSound": { + "value": "" + }, + "hitSound": { + "value": "" + }, + "placeSound": { + "value": "" + }, + "stepSound": { + "value": "" + }, + "luminance": 0, + "unbreakable": false, + "vanillaToolTier": "IRON", + "isBonemealable": false, + "hasInventory": false, + "openGUIOnRightClick": false, + "inventorySize": 9, + "inventoryStackSize": 64, + "inventoryDropWhenDestroyed": true, + "inventoryComparatorPower": true, + "inventoryOutSlotIDs": [], + "inventoryInSlotIDs": [], + "hasEnergyStorage": false, + "energyInitial": 0, + "energyCapacity": 400000, + "energyMaxReceive": 200, + "energyMaxExtract": 200, + "isFluidTank": false, + "fluidCapacity": 8000, + "fluidRestrictions": [], + "onDestroyedByPlayer": { + "name": "Oreexperience" + }, + "generateFeature": true, + "restrictionBiomes": [], + "blocksToReplace": [ + { + "value": "Blocks.STONE" + } + ], + "generationShape": "UNIFORM", + "frequencyPerChunks": 1, + "frequencyOnChunk": 8, + "minGenerateHeight": 0, + "maxGenerateHeight": 15 + } +} \ No newline at end of file diff --git a/elements/Sharddiamondore.mod.json b/elements/Sharddiamondore.mod.json new file mode 100644 index 000000000..5e58d35fe --- /dev/null +++ b/elements/Sharddiamondore.mod.json @@ -0,0 +1,57 @@ +{ + "_fv": 73, + "_type": "loottable", + "definition": { + "type": "Block", + "pools": [ + { + "minrolls": 1, + "maxrolls": 1, + "minbonusrolls": 1, + "maxbonusrolls": 1, + "hasbonusrolls": false, + "entries": [ + { + "type": "item", + "item": { + "value": "CUSTOM:Diamondshard" + }, + "weight": 1, + "minCount": 1, + "maxCount": 2, + "minEnchantmentLevel": 0, + "maxEnchantmentLevel": 0, + "affectedByFortune": true, + "explosionDecay": false, + "silkTouchMode": 2 + } + ] + }, + { + "minrolls": 1, + "maxrolls": 1, + "minbonusrolls": 1, + "maxbonusrolls": 1, + "hasbonusrolls": false, + "entries": [ + { + "type": "item", + "item": { + "value": "CUSTOM:Sharddiamondblockore" + }, + "weight": 1, + "minCount": 1, + "maxCount": 1, + "minEnchantmentLevel": 0, + "maxEnchantmentLevel": 0, + "affectedByFortune": false, + "explosionDecay": false, + "silkTouchMode": 1 + } + ] + } + ], + "name": "blocks/sharddiamondblockore", + "namespace": "mod" + } +} \ No newline at end of file diff --git a/elements/Sharddiamondpickaxe.mod.json b/elements/Sharddiamondpickaxe.mod.json new file mode 100644 index 000000000..39af4bd84 --- /dev/null +++ b/elements/Sharddiamondpickaxe.mod.json @@ -0,0 +1,39 @@ +{ + "_fv": 73, + "_type": "tool", + "definition": { + "toolType": "Pickaxe", + "renderType": 0, + "blockingRenderType": 0, + "texture": "shard_diamond_pickaxe", + "customModelName": "Normal", + "blockingModelName": "Normal blocking", + "name": "Shard diamond pickaxe", + "specialInformation": { + "fixedValue": [] + }, + "creativeTabs": [ + { + "value": "TOOLS" + } + ], + "efficiency": 7.0, + "attackSpeed": 1.0, + "enchantability": 9, + "damageVsEntity": 2.0, + "usageCount": 412, + "glowCondition": { + "fixedValue": false + }, + "repairItems": [ + { + "value": "CUSTOM:Diamondshard" + } + ], + "immuneToFire": false, + "blockDropsTier": "DIAMOND", + "blocksAffected": [], + "stayInGridWhenCrafting": false, + "damageOnCrafting": false + } +} \ No newline at end of file diff --git a/elements/Sharddiamondshovel.mod.json b/elements/Sharddiamondshovel.mod.json new file mode 100644 index 000000000..322e628a3 --- /dev/null +++ b/elements/Sharddiamondshovel.mod.json @@ -0,0 +1,39 @@ +{ + "_fv": 73, + "_type": "tool", + "definition": { + "toolType": "Spade", + "renderType": 0, + "blockingRenderType": 0, + "texture": "shard_diamond_shovel", + "customModelName": "Normal", + "blockingModelName": "Normal blocking", + "name": "Shard diamond shovel", + "specialInformation": { + "fixedValue": [] + }, + "creativeTabs": [ + { + "value": "TOOLS" + } + ], + "efficiency": 4.0, + "attackSpeed": 1.0, + "enchantability": 9, + "damageVsEntity": 2.0, + "usageCount": 412, + "glowCondition": { + "fixedValue": false + }, + "repairItems": [ + { + "value": "CUSTOM:Diamondshard" + } + ], + "immuneToFire": false, + "blockDropsTier": "DIAMOND", + "blocksAffected": [], + "stayInGridWhenCrafting": false, + "damageOnCrafting": false + } +} \ No newline at end of file diff --git a/elements/Shovelcraft.mod.json b/elements/Shovelcraft.mod.json new file mode 100644 index 000000000..9d2cc4b0e --- /dev/null +++ b/elements/Shovelcraft.mod.json @@ -0,0 +1,48 @@ +{ + "_fv": 73, + "_type": "recipe", + "definition": { + "recipeType": "Crafting", + "recipeRetstackSize": 1, + "group": "", + "cookingBookCategory": "MISC", + "xpReward": 0.0, + "cookingTime": 200, + "craftingBookCategory": "MISC", + "recipeShapeless": false, + "recipeSlots": [ + { + "value": "" + }, + { + "value": "CUSTOM:Diamondshard" + }, + { + "value": "" + }, + { + "value": "" + }, + { + "value": "Items.STICK" + }, + { + "value": "" + }, + { + "value": "" + }, + { + "value": "Items.STICK" + }, + { + "value": "" + } + ], + "recipeReturnStack": { + "value": "CUSTOM:Sharddiamondshovel" + }, + "name": "shovelcraft", + "namespace": "mod" + } +} \ No newline at end of file diff --git a/gradle.properties b/gradle.properties new file mode 100644 index 000000000..f237dcf65 --- /dev/null +++ b/gradle.properties @@ -0,0 +1,2 @@ +org.gradle.jvmargs=-Xmx3G +org.gradle.daemon=false \ No newline at end of file diff --git a/gradle/wrapper/gradle-wrapper.jar b/gradle/wrapper/gradle-wrapper.jar new file mode 100644 index 000000000..e6441136f Binary files /dev/null and b/gradle/wrapper/gradle-wrapper.jar differ diff --git a/gradle/wrapper/gradle-wrapper.properties b/gradle/wrapper/gradle-wrapper.properties new file mode 100644 index 000000000..a4413138c --- /dev/null +++ b/gradle/wrapper/gradle-wrapper.properties @@ -0,0 +1,7 @@ +distributionBase=GRADLE_USER_HOME +distributionPath=wrapper/dists +distributionUrl=https\://services.gradle.org/distributions/gradle-8.8-bin.zip +networkTimeout=10000 +validateDistributionUrl=true +zipStoreBase=GRADLE_USER_HOME +zipStorePath=wrapper/dists diff --git a/gradlew b/gradlew new file mode 100644 index 000000000..65dcd68d6 --- /dev/null +++ b/gradlew @@ -0,0 +1,244 @@ +#!/bin/sh + +# +# Copyright © 2015-2021 the original authors. +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# https://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. +# + +############################################################################## +# +# Gradle start up script for POSIX generated by Gradle. +# +# Important for running: +# +# (1) You need a POSIX-compliant shell to run this script. If your /bin/sh is +# noncompliant, but you have some other compliant shell such as ksh or +# bash, then to run this script, type that shell name before the whole +# command line, like: +# +# ksh Gradle +# +# Busybox and similar reduced shells will NOT work, because this script +# requires all of these POSIX shell features: +# * functions; +# * expansions «$var», «${var}», «${var:-default}», «${var+SET}», +# «${var#prefix}», «${var%suffix}», and «$( cmd )»; +# * compound commands having a testable exit status, especially «case»; +# * various built-in commands including «command», «set», and «ulimit». +# +# Important for patching: +# +# (2) This script targets any POSIX shell, so it avoids extensions provided +# by Bash, Ksh, etc; in particular arrays are avoided. +# +# The "traditional" practice of packing multiple parameters into a +# space-separated string is a well documented source of bugs and security +# problems, so this is (mostly) avoided, by progressively accumulating +# options in "$@", and eventually passing that to Java. +# +# Where the inherited environment variables (DEFAULT_JVM_OPTS, JAVA_OPTS, +# and GRADLE_OPTS) rely on word-splitting, this is performed explicitly; +# see the in-line comments for details. +# +# There are tweaks for specific operating systems such as AIX, CygWin, +# Darwin, MinGW, and NonStop. +# +# (3) This script is generated from the Groovy template +# https://github.com/gradle/gradle/blob/HEAD/subprojects/plugins/src/main/resources/org/gradle/api/internal/plugins/unixStartScript.txt +# within the Gradle project. +# +# You can find Gradle at https://github.com/gradle/gradle/. +# +############################################################################## + +# Attempt to set APP_HOME + +# Resolve links: $0 may be a link +app_path=$0 + +# Need this for daisy-chained symlinks. +while + APP_HOME=${app_path%"${app_path##*/}"} # leaves a trailing /; empty if no leading path + [ -h "$app_path" ] +do + ls=$( ls -ld "$app_path" ) + link=${ls#*' -> '} + case $link in #( + /*) app_path=$link ;; #( + *) app_path=$APP_HOME$link ;; + esac +done + +# This is normally unused +# shellcheck disable=SC2034 +APP_BASE_NAME=${0##*/} +APP_HOME=$( cd "${APP_HOME:-./}" && pwd -P ) || exit + +# Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script. +DEFAULT_JVM_OPTS='"-Xmx64m" "-Xms64m"' + +# Use the maximum available, or set MAX_FD != -1 to use that value. +MAX_FD=maximum + +warn () { + echo "$*" +} >&2 + +die () { + echo + echo "$*" + echo + exit 1 +} >&2 + +# OS specific support (must be 'true' or 'false'). +cygwin=false +msys=false +darwin=false +nonstop=false +case "$( uname )" in #( + CYGWIN* ) cygwin=true ;; #( + Darwin* ) darwin=true ;; #( + MSYS* | MINGW* ) msys=true ;; #( + NONSTOP* ) nonstop=true ;; +esac + +CLASSPATH=$APP_HOME/gradle/wrapper/gradle-wrapper.jar + + +# Determine the Java command to use to start the JVM. +if [ -n "$JAVA_HOME" ] ; then + if [ -x "$JAVA_HOME/jre/sh/java" ] ; then + # IBM's JDK on AIX uses strange locations for the executables + JAVACMD=$JAVA_HOME/jre/sh/java + else + JAVACMD=$JAVA_HOME/bin/java + fi + if [ ! -x "$JAVACMD" ] ; then + die "ERROR: JAVA_HOME is set to an invalid directory: $JAVA_HOME + +Please set the JAVA_HOME variable in your environment to match the +location of your Java installation." + fi +else + JAVACMD=java + which java >/dev/null 2>&1 || die "ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH. + +Please set the JAVA_HOME variable in your environment to match the +location of your Java installation." +fi + +# Increase the maximum file descriptors if we can. +if ! "$cygwin" && ! "$darwin" && ! "$nonstop" ; then + case $MAX_FD in #( + max*) + # In POSIX sh, ulimit -H is undefined. That's why the result is checked to see if it worked. + # shellcheck disable=SC3045 + MAX_FD=$( ulimit -H -n ) || + warn "Could not query maximum file descriptor limit" + esac + case $MAX_FD in #( + '' | soft) :;; #( + *) + # In POSIX sh, ulimit -n is undefined. That's why the result is checked to see if it worked. + # shellcheck disable=SC3045 + ulimit -n "$MAX_FD" || + warn "Could not set maximum file descriptor limit to $MAX_FD" + esac +fi + +# Collect all arguments for the java command, stacking in reverse order: +# * args from the command line +# * the main class name +# * -classpath +# * -D...appname settings +# * --module-path (only if needed) +# * DEFAULT_JVM_OPTS, JAVA_OPTS, and GRADLE_OPTS environment variables. + +# For Cygwin or MSYS, switch paths to Windows format before running java +if "$cygwin" || "$msys" ; then + APP_HOME=$( cygpath --path --mixed "$APP_HOME" ) + CLASSPATH=$( cygpath --path --mixed "$CLASSPATH" ) + + JAVACMD=$( cygpath --unix "$JAVACMD" ) + + # Now convert the arguments - kludge to limit ourselves to /bin/sh + for arg do + if + case $arg in #( + -*) false ;; # don't mess with options #( + /?*) t=${arg#/} t=/${t%%/*} # looks like a POSIX filepath + [ -e "$t" ] ;; #( + *) false ;; + esac + then + arg=$( cygpath --path --ignore --mixed "$arg" ) + fi + # Roll the args list around exactly as many times as the number of + # args, so each arg winds up back in the position where it started, but + # possibly modified. + # + # NB: a `for` loop captures its iteration list before it begins, so + # changing the positional parameters here affects neither the number of + # iterations, nor the values presented in `arg`. + shift # remove old arg + set -- "$@" "$arg" # push replacement arg + done +fi + +# Collect all arguments for the java command; +# * $DEFAULT_JVM_OPTS, $JAVA_OPTS, and $GRADLE_OPTS can contain fragments of +# shell script including quotes and variable substitutions, so put them in +# double quotes to make sure that they get re-expanded; and +# * put everything else in single quotes, so that it's not re-expanded. + +set -- \ + "-Dorg.gradle.appname=$APP_BASE_NAME" \ + -classpath "$CLASSPATH" \ + org.gradle.wrapper.GradleWrapperMain \ + "$@" + +# Stop when "xargs" is not available. +if ! command -v xargs >/dev/null 2>&1 +then + die "xargs is not available" +fi + +# Use "xargs" to parse quoted args. +# +# With -n1 it outputs one arg per line, with the quotes and backslashes removed. +# +# In Bash we could simply go: +# +# readarray ARGS < <( xargs -n1 <<<"$var" ) && +# set -- "${ARGS[@]}" "$@" +# +# but POSIX shell has neither arrays nor command substitution, so instead we +# post-process each arg (as a line of input to sed) to backslash-escape any +# character that might be a shell metacharacter, then use eval to reverse +# that process (while maintaining the separation between arguments), and wrap +# the whole thing up as a single "set" statement. +# +# This will of course break if any of these variables contains a newline or +# an unmatched quote. +# + +eval "set -- $( + printf '%s\n' "$DEFAULT_JVM_OPTS $JAVA_OPTS $GRADLE_OPTS" | + xargs -n1 | + sed ' s~[^-[:alnum:]+,./:=@_]~\\&~g; ' | + tr '\n' ' ' + )" '"$@"' + +exec "$JAVACMD" "$@" diff --git a/gradlew.bat b/gradlew.bat new file mode 100644 index 000000000..93e3f59f1 --- /dev/null +++ b/gradlew.bat @@ -0,0 +1,92 @@ +@rem +@rem Copyright 2015 the original author or authors. +@rem +@rem Licensed under the Apache License, Version 2.0 (the "License"); +@rem you may not use this file except in compliance with the License. +@rem You may obtain a copy of the License at +@rem +@rem https://www.apache.org/licenses/LICENSE-2.0 +@rem +@rem Unless required by applicable law or agreed to in writing, software +@rem distributed under the License is distributed on an "AS IS" BASIS, +@rem WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +@rem See the License for the specific language governing permissions and +@rem limitations under the License. +@rem + +@if "%DEBUG%"=="" @echo off +@rem ########################################################################## +@rem +@rem Gradle startup script for Windows +@rem +@rem ########################################################################## + +@rem Set local scope for the variables with windows NT shell +if "%OS%"=="Windows_NT" setlocal + +set DIRNAME=%~dp0 +if "%DIRNAME%"=="" set DIRNAME=. +@rem This is normally unused +set APP_BASE_NAME=%~n0 +set APP_HOME=%DIRNAME% + +@rem Resolve any "." and ".." in APP_HOME to make it shorter. +for %%i in ("%APP_HOME%") do set APP_HOME=%%~fi + +@rem Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script. +set DEFAULT_JVM_OPTS="-Xmx64m" "-Xms64m" + +@rem Find java.exe +if defined JAVA_HOME goto findJavaFromJavaHome + +set JAVA_EXE=java.exe +%JAVA_EXE% -version >NUL 2>&1 +if %ERRORLEVEL% equ 0 goto execute + +echo. +echo ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH. +echo. +echo Please set the JAVA_HOME variable in your environment to match the +echo location of your Java installation. + +goto fail + +:findJavaFromJavaHome +set JAVA_HOME=%JAVA_HOME:"=% +set JAVA_EXE=%JAVA_HOME%/bin/java.exe + +if exist "%JAVA_EXE%" goto execute + +echo. +echo ERROR: JAVA_HOME is set to an invalid directory: %JAVA_HOME% +echo. +echo Please set the JAVA_HOME variable in your environment to match the +echo location of your Java installation. + +goto fail + +:execute +@rem Setup the command line + +set CLASSPATH=%APP_HOME%\gradle\wrapper\gradle-wrapper.jar + + +@rem Execute Gradle +"%JAVA_EXE%" %DEFAULT_JVM_OPTS% %JAVA_OPTS% %GRADLE_OPTS% "-Dorg.gradle.appname=%APP_BASE_NAME%" -classpath "%CLASSPATH%" org.gradle.wrapper.GradleWrapperMain %* + +:end +@rem End local scope for the variables with windows NT shell +if %ERRORLEVEL% equ 0 goto mainEnd + +:fail +rem Set variable GRADLE_EXIT_CONSOLE if you need the _script_ return code instead of +rem the _cmd.exe /c_ return code! +set EXIT_CODE=%ERRORLEVEL% +if %EXIT_CODE% equ 0 set EXIT_CODE=1 +if not ""=="%GRADLE_EXIT_CONSOLE%" exit %EXIT_CODE% +exit /b %EXIT_CODE% + +:mainEnd +if "%OS%"=="Windows_NT" endlocal + +:omega diff --git a/mcreator.gradle b/mcreator.gradle new file mode 100644 index 000000000..e69de29bb diff --git a/run/config/fml.toml b/run/config/fml.toml new file mode 100644 index 000000000..e60441174 --- /dev/null +++ b/run/config/fml.toml @@ -0,0 +1,27 @@ +#Early window height +earlyWindowHeight = 480 +#Enable forge global version checking +versionCheck = true +#Should we control the window. Disabling this disables new GL features and can be bad for mods that rely on them. +earlyWindowControl = true +#Early window framebuffer scale +earlyWindowFBScale = 1 +#Early window provider +earlyWindowProvider = "fmlearlywindow" +#Early window width +earlyWindowWidth = 854 +#Early window starts maximized +earlyWindowMaximized = false +#Default config path for servers +defaultConfigPath = "defaultconfigs" +#Disables Optimized DFU client-side - already disabled on servers +disableOptimizedDFU = true +#Skip specific GL versions, may help with buggy graphics card drivers +earlyWindowSkipGLVersions = [] +#Max threads for early initialization parallelism, -1 is based on processor count +maxThreads = -1 +#Squir? +earlyWindowSquir = false +#Whether to show CPU usage stats in early window +earlyWindowShowCPU = false + diff --git a/run/config/forge-client.toml b/run/config/forge-client.toml new file mode 100644 index 000000000..178ae0e91 --- /dev/null +++ b/run/config/forge-client.toml @@ -0,0 +1,24 @@ + +#Client only settings, mostly things related to rendering +[client] + #Enable Forge to queue all chunk updates to the Chunk Update thread. + #May increase FPS significantly, but may also cause weird rendering lag. + #Not recommended for computers without a significant number of cores available. + alwaysSetupTerrainOffThread = false + #EXPERIMENTAL: Enable the Forge block rendering pipeline - fixes the lighting of custom models. + experimentalForgeLightPipelineEnabled = false + #When enabled, Forge will show any warnings that occurred during loading. + showLoadWarnings = true + #Set to true to use a combined DEPTH_STENCIL attachment instead of two separate ones. + useCombinedDepthStencilAttachment = false + #[DEPRECATED] Does nothing anymore, IPv6 addresses will be compressed always + compressLanIPv6Addresses = true + #During block model baking, manually calculates the normal for all faces. + #This was the default behavior of forge between versions 31.0 and 47.1. + #May result in differences between vanilla rendering and forge rendering. + #Will only produce differences for blocks that contain non-axis aligned faces. + #You will need to reload your resources to see results. + calculateAllNormals = false + #When enabled, a slightly biased Direction#getNearest calculation will be used to prevent normal fighting on 45 degree angle faces. + stabilizeDirectionGetNearest = true + diff --git a/run/logs/2025-12-30-1.log.gz b/run/logs/2025-12-30-1.log.gz new file mode 100644 index 000000000..cf8d84ef9 Binary files /dev/null and b/run/logs/2025-12-30-1.log.gz differ diff --git a/run/logs/2025-12-30-2.log.gz b/run/logs/2025-12-30-2.log.gz new file mode 100644 index 000000000..257fb0b47 Binary files /dev/null and b/run/logs/2025-12-30-2.log.gz differ diff --git a/run/logs/2025-12-30-3.log.gz b/run/logs/2025-12-30-3.log.gz new file mode 100644 index 000000000..a7c56d0f4 Binary files /dev/null and b/run/logs/2025-12-30-3.log.gz differ diff --git a/run/logs/debug-1.log.gz b/run/logs/debug-1.log.gz new file mode 100644 index 000000000..bd12402bf Binary files /dev/null and b/run/logs/debug-1.log.gz differ diff --git a/run/logs/debug-2.log.gz b/run/logs/debug-2.log.gz new file mode 100644 index 000000000..1709df338 Binary files /dev/null and b/run/logs/debug-2.log.gz differ diff --git a/run/logs/debug-3.log.gz b/run/logs/debug-3.log.gz new file mode 100644 index 000000000..054d6570d Binary files /dev/null and b/run/logs/debug-3.log.gz differ diff --git a/run/logs/debug.log b/run/logs/debug.log new file mode 100644 index 000000000..bc1bda471 --- /dev/null +++ b/run/logs/debug.log @@ -0,0 +1,950 @@ +[30Dec2025 13:43:02.339] [main/INFO] [cpw.mods.modlauncher.Launcher/MODLAUNCHER]: ModLauncher running: args [--launchTarget, forgeclientuserdev, --version, MOD_DEV, --assetIndex, 5, --assetsDir, C:\Users\polar\.mcreator\gradle\caches\forge_gradle\assets, --gameDir, ., --fml.forgeVersion, 47.3.0, --fml.mcVersion, 1.20.1, --fml.forgeGroup, net.minecraftforge, --fml.mcpVersion, 20230612.114412] +[30Dec2025 13:43:02.343] [main/INFO] [cpw.mods.modlauncher.Launcher/MODLAUNCHER]: ModLauncher 10.0.9+10.0.9+main.dcd20f30 starting: java version 17.0.17 by Eclipse Adoptium; OS Windows 11 arch amd64 version 10.0 +[30Dec2025 13:43:02.385] [main/DEBUG] [cpw.mods.modlauncher.LaunchServiceHandler/MODLAUNCHER]: Found launch services [fmlclientdev,forgeclient,minecraft,forgegametestserverdev,fmlserveruserdev,fmlclient,fmldatauserdev,forgeserverdev,forgeserveruserdev,forgeclientdev,forgeclientuserdev,forgeserver,forgedatadev,fmlserver,fmlclientuserdev,fmlserverdev,forgedatauserdev,testharness,forgegametestserveruserdev] +[30Dec2025 13:43:02.405] [main/DEBUG] [cpw.mods.modlauncher.NameMappingServiceHandler/MODLAUNCHER]: Found naming services : [srgtomcp] +[30Dec2025 13:43:02.422] [main/DEBUG] [cpw.mods.modlauncher.LaunchPluginHandler/MODLAUNCHER]: Found launch plugins: [mixin,eventbus,slf4jfixer,object_holder_definalize,runtime_enum_extender,capability_token_subclass,accesstransformer,runtimedistcleaner] +[30Dec2025 13:43:02.436] [main/DEBUG] [cpw.mods.modlauncher.TransformationServicesHandler/MODLAUNCHER]: Discovering transformation services +[30Dec2025 13:43:02.441] [main/DEBUG] [net.minecraftforge.fml.loading.FMLPaths/CORE]: Path GAMEDIR is C:\Users\polar\Nextcloud\DocumentsRoman\mods_mc\custom_ore_gem\run +[30Dec2025 13:43:02.442] [main/DEBUG] [net.minecraftforge.fml.loading.FMLPaths/CORE]: Path MODSDIR is C:\Users\polar\Nextcloud\DocumentsRoman\mods_mc\custom_ore_gem\run\mods +[30Dec2025 13:43:02.442] [main/DEBUG] [net.minecraftforge.fml.loading.FMLPaths/CORE]: Path CONFIGDIR is C:\Users\polar\Nextcloud\DocumentsRoman\mods_mc\custom_ore_gem\run\config +[30Dec2025 13:43:02.442] [main/DEBUG] [net.minecraftforge.fml.loading.FMLPaths/CORE]: Path FMLCONFIG is C:\Users\polar\Nextcloud\DocumentsRoman\mods_mc\custom_ore_gem\run\config\fml.toml +[30Dec2025 13:43:02.486] [main/DEBUG] [cpw.mods.modlauncher.TransformationServicesHandler/MODLAUNCHER]: Found additional transformation services from discovery services: +[30Dec2025 13:43:02.491] [main/INFO] [net.minecraftforge.fml.loading.ImmediateWindowHandler/]: Loading ImmediateWindowProvider fmlearlywindow +[30Dec2025 13:43:02.575] [main/INFO] [EARLYDISPLAY/]: Trying GL version 4.6 +[30Dec2025 13:43:02.794] [main/INFO] [EARLYDISPLAY/]: Requested GL version 4.6 got version 4.6 +[30Dec2025 13:43:02.870] [main/DEBUG] [cpw.mods.modlauncher.TransformationServicesHandler/MODLAUNCHER]: Found transformer services : [mixin,fml] +[30Dec2025 13:43:02.870] [main/DEBUG] [cpw.mods.modlauncher.TransformationServicesHandler/MODLAUNCHER]: Transformation services loading +[30Dec2025 13:43:02.870] [main/DEBUG] [cpw.mods.modlauncher.TransformationServiceDecorator/MODLAUNCHER]: Loading service mixin +[30Dec2025 13:43:02.872] [main/DEBUG] [cpw.mods.modlauncher.TransformationServiceDecorator/MODLAUNCHER]: Loaded service mixin +[30Dec2025 13:43:02.872] [main/DEBUG] [cpw.mods.modlauncher.TransformationServiceDecorator/MODLAUNCHER]: Loading service fml +[30Dec2025 13:43:02.872] [main/DEBUG] [net.minecraftforge.fml.loading.LauncherVersion/CORE]: Found FMLLauncher version 1.0 +[30Dec2025 13:43:02.873] [main/DEBUG] [net.minecraftforge.fml.loading.FMLLoader/CORE]: FML 1.0 loading +[30Dec2025 13:43:02.873] [main/DEBUG] [net.minecraftforge.fml.loading.FMLLoader/CORE]: FML found ModLauncher version : 10.0.9+10.0.9+main.dcd20f30 +[30Dec2025 13:43:02.873] [main/DEBUG] [net.minecraftforge.fml.loading.FMLLoader/CORE]: FML found AccessTransformer version : 8.0.4+66+master.c09db6d7 +[30Dec2025 13:43:02.873] [main/DEBUG] [net.minecraftforge.fml.loading.FMLLoader/CORE]: FML found EventBus version : 6.0.5+6.0.5+master.eb8e549b +[30Dec2025 13:43:02.875] [main/DEBUG] [net.minecraftforge.fml.loading.FMLLoader/CORE]: Found Runtime Dist Cleaner +[30Dec2025 13:43:02.876] [main/DEBUG] [net.minecraftforge.fml.loading.FMLLoader/CORE]: FML found CoreMod version : 5.1.6 +[30Dec2025 13:43:02.876] [main/DEBUG] [net.minecraftforge.fml.loading.FMLLoader/CORE]: Found ForgeSPI package implementation version 7.0.1+7.0.1+master.d2b38bf6 +[30Dec2025 13:43:02.876] [main/DEBUG] [net.minecraftforge.fml.loading.FMLLoader/CORE]: Found ForgeSPI package specification 5 +[30Dec2025 13:43:02.878] [main/DEBUG] [cpw.mods.modlauncher.TransformationServiceDecorator/MODLAUNCHER]: Loaded service fml +[30Dec2025 13:43:02.878] [main/DEBUG] [cpw.mods.modlauncher.TransformationServicesHandler/MODLAUNCHER]: Configuring option handling for services +[30Dec2025 13:43:02.885] [main/DEBUG] [cpw.mods.modlauncher.TransformationServicesHandler/MODLAUNCHER]: Transformation services initializing +[30Dec2025 13:43:02.886] [main/DEBUG] [cpw.mods.modlauncher.TransformationServiceDecorator/MODLAUNCHER]: Initializing transformation service mixin +[30Dec2025 13:43:02.901] [main/DEBUG] [mixin/]: MixinService [ModLauncher] was successfully booted in cpw.mods.cl.ModuleClassLoader@1a18644 +[30Dec2025 13:43:02.924] [main/INFO] [mixin/]: SpongePowered MIXIN Subsystem Version=0.8.5 Source=union:/C:/Users/polar/.mcreator/gradle/caches/modules-2/files-2.1/org.spongepowered/mixin/0.8.5/9d1c0c3a304ae6697ecd477218fa61b850bf57fc/mixin-0.8.5.jar%23128!/ Service=ModLauncher Env=CLIENT +[30Dec2025 13:43:02.930] [main/DEBUG] [mixin/]: Initialising Mixin Platform Manager +[30Dec2025 13:43:02.930] [main/DEBUG] [mixin/]: Adding mixin platform agents for container ModLauncher Root Container(ModLauncher:4f56a0a2) +[30Dec2025 13:43:02.932] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentMinecraftForge for ModLauncher Root Container(ModLauncher:4f56a0a2) +[30Dec2025 13:43:02.934] [main/DEBUG] [mixin/]: MixinPlatformAgentMinecraftForge rejected container ModLauncher Root Container(ModLauncher:4f56a0a2) +[30Dec2025 13:43:02.935] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentDefault for ModLauncher Root Container(ModLauncher:4f56a0a2) +[30Dec2025 13:43:02.935] [main/DEBUG] [mixin/]: MixinPlatformAgentDefault accepted container ModLauncher Root Container(ModLauncher:4f56a0a2) +[30Dec2025 13:43:02.938] [main/DEBUG] [cpw.mods.modlauncher.TransformationServiceDecorator/MODLAUNCHER]: Initialized transformation service mixin +[30Dec2025 13:43:02.940] [main/DEBUG] [cpw.mods.modlauncher.TransformationServiceDecorator/MODLAUNCHER]: Initializing transformation service fml +[30Dec2025 13:43:02.940] [main/DEBUG] [net.minecraftforge.fml.loading.FMLServiceProvider/CORE]: Setting up basic FML game directories +[30Dec2025 13:43:02.940] [main/DEBUG] [net.minecraftforge.fml.loading.FMLPaths/CORE]: Path GAMEDIR is C:\Users\polar\Nextcloud\DocumentsRoman\mods_mc\custom_ore_gem\run +[30Dec2025 13:43:02.941] [main/DEBUG] [net.minecraftforge.fml.loading.FMLPaths/CORE]: Path MODSDIR is C:\Users\polar\Nextcloud\DocumentsRoman\mods_mc\custom_ore_gem\run\mods +[30Dec2025 13:43:02.941] [main/DEBUG] [net.minecraftforge.fml.loading.FMLPaths/CORE]: Path CONFIGDIR is C:\Users\polar\Nextcloud\DocumentsRoman\mods_mc\custom_ore_gem\run\config +[30Dec2025 13:43:02.941] [main/DEBUG] [net.minecraftforge.fml.loading.FMLPaths/CORE]: Path FMLCONFIG is C:\Users\polar\Nextcloud\DocumentsRoman\mods_mc\custom_ore_gem\run\config\fml.toml +[30Dec2025 13:43:02.941] [main/DEBUG] [net.minecraftforge.fml.loading.FMLServiceProvider/CORE]: Loading configuration +[30Dec2025 13:43:02.944] [main/DEBUG] [net.minecraftforge.fml.loading.FMLServiceProvider/CORE]: Preparing ModFile +[30Dec2025 13:43:02.948] [main/DEBUG] [net.minecraftforge.fml.loading.FMLServiceProvider/CORE]: Preparing launch handler +[30Dec2025 13:43:02.949] [main/DEBUG] [net.minecraftforge.fml.loading.FMLLoader/CORE]: Using forgeclientuserdev as launch service +[30Dec2025 13:43:02.965] [main/DEBUG] [net.minecraftforge.fml.loading.FMLLoader/CORE]: Received command line version data : VersionInfo[forgeVersion=47.3.0, mcVersion=1.20.1, mcpVersion=20230612.114412, forgeGroup=net.minecraftforge] +[30Dec2025 13:43:02.968] [main/DEBUG] [cpw.mods.modlauncher.TransformationServiceDecorator/MODLAUNCHER]: Initialized transformation service fml +[30Dec2025 13:43:02.970] [main/DEBUG] [cpw.mods.modlauncher.NameMappingServiceHandler/MODLAUNCHER]: Current naming domain is 'mcp' +[30Dec2025 13:43:02.971] [main/DEBUG] [cpw.mods.modlauncher.NameMappingServiceHandler/MODLAUNCHER]: Identified name mapping providers {srg=srgtomcp:1234} +[30Dec2025 13:43:02.971] [main/DEBUG] [cpw.mods.modlauncher.TransformationServicesHandler/MODLAUNCHER]: Transformation services begin scanning +[30Dec2025 13:43:02.973] [main/DEBUG] [cpw.mods.modlauncher.TransformationServiceDecorator/MODLAUNCHER]: Beginning scan trigger - transformation service mixin +[30Dec2025 13:43:02.974] [main/DEBUG] [cpw.mods.modlauncher.TransformationServiceDecorator/MODLAUNCHER]: End scan trigger - transformation service mixin +[30Dec2025 13:43:02.974] [main/DEBUG] [cpw.mods.modlauncher.TransformationServiceDecorator/MODLAUNCHER]: Beginning scan trigger - transformation service fml +[30Dec2025 13:43:02.974] [main/DEBUG] [net.minecraftforge.fml.loading.FMLServiceProvider/CORE]: Initiating mod scan +[30Dec2025 13:43:02.988] [pool-2-thread-1/INFO] [EARLYDISPLAY/]: GL info: NVIDIA GeForce RTX 3070 Laptop GPU/PCIe/SSE2 GL version 4.6.0 NVIDIA 591.44, NVIDIA Corporation +[30Dec2025 13:43:02.989] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModListHandler/CORE]: Found mod coordinates from lists: [] +[30Dec2025 13:43:02.992] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModDiscoverer/CORE]: Found Mod Locators : (mods folder:null),(maven libs:null),(exploded directory:null),(minecraft:null),(userdev classpath:null) +[30Dec2025 13:43:02.992] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModDiscoverer/CORE]: Found Dependency Locators : (JarInJar:null) +[30Dec2025 13:43:03.002] [main/DEBUG] [net.minecraftforge.fml.loading.targets.CommonLaunchHandler/CORE]: Got mod coordinates examplemod%%C:\Users\polar\Nextcloud\DocumentsRoman\mods_mc\custom_ore_gem\build\resources\main;examplemod%%C:\Users\polar\Nextcloud\DocumentsRoman\mods_mc\custom_ore_gem\build\classes\java\main from env +[30Dec2025 13:43:03.003] [main/DEBUG] [net.minecraftforge.fml.loading.targets.CommonLaunchHandler/CORE]: Found supplied mod coordinates [{examplemod=[C:\Users\polar\Nextcloud\DocumentsRoman\mods_mc\custom_ore_gem\build\resources\main, C:\Users\polar\Nextcloud\DocumentsRoman\mods_mc\custom_ore_gem\build\classes\java\main]}] +[30Dec2025 13:43:03.368] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file forge-1.20.1-47.3.0_mapped_official_1.20.1-recomp.jar with {minecraft} mods - versions {1.20.1} +[30Dec2025 13:43:03.379] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:\Users\polar\.mcreator\gradle\caches\modules-2\files-2.1\net.minecraftforge\javafmllanguage\1.20.1-47.3.0\d7ebc62120f202109e300e084ca1a31a7b946a62\javafmllanguage-1.20.1-47.3.0.jar +[30Dec2025 13:43:03.380] [main/WARN] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Mod file C:\Users\polar\.mcreator\gradle\caches\modules-2\files-2.1\net.minecraftforge\javafmllanguage\1.20.1-47.3.0\d7ebc62120f202109e300e084ca1a31a7b946a62\javafmllanguage-1.20.1-47.3.0.jar is missing mods.toml file +[30Dec2025 13:43:03.386] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:\Users\polar\.mcreator\gradle\caches\modules-2\files-2.1\net.minecraftforge\lowcodelanguage\1.20.1-47.3.0\1bf3e845ea0ce750096da8c71c8364b188ab74d4\lowcodelanguage-1.20.1-47.3.0.jar +[30Dec2025 13:43:03.386] [main/WARN] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Mod file C:\Users\polar\.mcreator\gradle\caches\modules-2\files-2.1\net.minecraftforge\lowcodelanguage\1.20.1-47.3.0\1bf3e845ea0ce750096da8c71c8364b188ab74d4\lowcodelanguage-1.20.1-47.3.0.jar is missing mods.toml file +[30Dec2025 13:43:03.392] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:\Users\polar\.mcreator\gradle\caches\modules-2\files-2.1\net.minecraftforge\mclanguage\1.20.1-47.3.0\6093682e943ddccbabf70539319d7f2fe64db2e7\mclanguage-1.20.1-47.3.0.jar +[30Dec2025 13:43:03.393] [main/WARN] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Mod file C:\Users\polar\.mcreator\gradle\caches\modules-2\files-2.1\net.minecraftforge\mclanguage\1.20.1-47.3.0\6093682e943ddccbabf70539319d7f2fe64db2e7\mclanguage-1.20.1-47.3.0.jar is missing mods.toml file +[30Dec2025 13:43:03.398] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:\Users\polar\.mcreator\gradle\caches\modules-2\files-2.1\net.minecraftforge\fmlcore\1.20.1-47.3.0\3b6be96aba3e323f3c918e8ef6a96312d82d76ad\fmlcore-1.20.1-47.3.0.jar +[30Dec2025 13:43:03.398] [main/WARN] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Mod file C:\Users\polar\.mcreator\gradle\caches\modules-2\files-2.1\net.minecraftforge\fmlcore\1.20.1-47.3.0\3b6be96aba3e323f3c918e8ef6a96312d82d76ad\fmlcore-1.20.1-47.3.0.jar is missing mods.toml file +[30Dec2025 13:43:03.403] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:\Users\polar\Nextcloud\DocumentsRoman\mods_mc\custom_ore_gem\build\resources\main +[30Dec2025 13:43:03.413] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file main with {custom_ore_gen} mods - versions {1.0.0} +[30Dec2025 13:43:03.416] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate / +[30Dec2025 13:43:03.422] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file with {forge} mods - versions {47.3.0} +[30Dec2025 13:43:03.451] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.AbstractJarFileDependencyLocator/]: Failed to load resource META-INF\jarjar\metadata.json from forge-1.20.1-47.3.0_mapped_official_1.20.1-recomp.jar, it does not contain dependency information. +[30Dec2025 13:43:03.452] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.AbstractJarFileDependencyLocator/]: Failed to load resource META-INF\jarjar\metadata.json from , it does not contain dependency information. +[30Dec2025 13:43:03.452] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.AbstractJarFileDependencyLocator/]: Failed to load resource META-INF\jarjar\metadata.json from main, it does not contain dependency information. +[30Dec2025 13:43:03.453] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.AbstractJarFileDependencyLocator/]: Failed to load resource META-INF\jarjar\metadata.json from mclanguage-1.20.1-47.3.0.jar, it does not contain dependency information. +[30Dec2025 13:43:03.454] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.AbstractJarFileDependencyLocator/]: Failed to load resource META-INF\jarjar\metadata.json from javafmllanguage-1.20.1-47.3.0.jar, it does not contain dependency information. +[30Dec2025 13:43:03.454] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.AbstractJarFileDependencyLocator/]: Failed to load resource META-INF\jarjar\metadata.json from fmlcore-1.20.1-47.3.0.jar, it does not contain dependency information. +[30Dec2025 13:43:03.454] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.AbstractJarFileDependencyLocator/]: Failed to load resource META-INF\jarjar\metadata.json from lowcodelanguage-1.20.1-47.3.0.jar, it does not contain dependency information. +[30Dec2025 13:43:03.482] [main/INFO] [net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator/]: No dependencies to load found. Skipping! +[30Dec2025 13:43:03.484] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file forge-1.20.1-47.3.0_mapped_official_1.20.1-recomp.jar with {minecraft} mods - versions {1.20.1} +[30Dec2025 13:43:03.487] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFile/LOADING]: Loading mod file C:\Users\polar\.mcreator\gradle\caches\forge_gradle\minecraft_user_repo\net\minecraftforge\forge\1.20.1-47.3.0_mapped_official_1.20.1\forge-1.20.1-47.3.0_mapped_official_1.20.1-recomp.jar with languages [LanguageSpec[languageName=minecraft, acceptedVersions=1]] +[30Dec2025 13:43:03.489] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate / +[30Dec2025 13:43:03.490] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file with {forge} mods - versions {47.3.0} +[30Dec2025 13:43:03.490] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFile/LOADING]: Loading mod file / with languages [LanguageSpec[languageName=javafml, acceptedVersions=[24,]]] +[30Dec2025 13:43:03.532] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Found coremod field_to_method with Javascript path coremods/field_to_method.js +[30Dec2025 13:43:03.532] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Found coremod field_to_instanceof with Javascript path coremods/field_to_instanceof.js +[30Dec2025 13:43:03.532] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Found coremod add_bouncer_method with Javascript path coremods/add_bouncer_method.js +[30Dec2025 13:43:03.532] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Found coremod method_redirector with Javascript path coremods/method_redirector.js +[30Dec2025 13:43:03.532] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFile/LOADING]: Found coremod coremods/field_to_method.js +[30Dec2025 13:43:03.532] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFile/LOADING]: Found coremod coremods/field_to_instanceof.js +[30Dec2025 13:43:03.532] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFile/LOADING]: Found coremod coremods/add_bouncer_method.js +[30Dec2025 13:43:03.532] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFile/LOADING]: Found coremod coremods/method_redirector.js +[30Dec2025 13:43:03.534] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate C:\Users\polar\Nextcloud\DocumentsRoman\mods_mc\custom_ore_gem\build\resources\main +[30Dec2025 13:43:03.536] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file main with {custom_ore_gen} mods - versions {1.0.0} +[30Dec2025 13:43:03.536] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFile/LOADING]: Loading mod file C:\Users\polar\Nextcloud\DocumentsRoman\mods_mc\custom_ore_gem\build\resources\main with languages [LanguageSpec[languageName=javafml, acceptedVersions=[47,)]] +[30Dec2025 13:43:03.538] [main/DEBUG] [cpw.mods.modlauncher.TransformationServiceDecorator/MODLAUNCHER]: End scan trigger - transformation service fml +[30Dec2025 13:43:03.556] [main/DEBUG] [net.minecraftforge.fml.loading.LanguageLoadingProvider/CORE]: Found 3 language providers +[30Dec2025 13:43:03.556] [main/DEBUG] [net.minecraftforge.fml.loading.LanguageLoadingProvider/CORE]: Found language provider minecraft, version 1.0 +[30Dec2025 13:43:03.558] [main/DEBUG] [net.minecraftforge.fml.loading.LanguageLoadingProvider/CORE]: Found language provider lowcodefml, version 47 +[30Dec2025 13:43:03.558] [main/DEBUG] [net.minecraftforge.fml.loading.LanguageLoadingProvider/CORE]: Found language provider javafml, version 47 +[30Dec2025 13:43:03.565] [main/DEBUG] [net.minecraftforge.fml.loading.ModSorter/]: Configured system mods: [minecraft, forge] +[30Dec2025 13:43:03.565] [main/DEBUG] [net.minecraftforge.fml.loading.ModSorter/]: Found system mod: minecraft +[30Dec2025 13:43:03.565] [main/DEBUG] [net.minecraftforge.fml.loading.ModSorter/]: Found system mod: forge +[30Dec2025 13:43:03.571] [main/DEBUG] [net.minecraftforge.fml.loading.ModSorter/LOADING]: Found 1 mod requirements (1 mandatory, 0 optional) +[30Dec2025 13:43:03.573] [main/DEBUG] [net.minecraftforge.fml.loading.ModSorter/LOADING]: Found 0 mod requirements missing (0 mandatory, 0 optional) +[30Dec2025 13:43:04.040] [main/DEBUG] [net.minecraftforge.fml.loading.MCPNamingService/CORE]: Loaded 33222 method mappings from methods.csv +[30Dec2025 13:43:04.070] [main/DEBUG] [net.minecraftforge.fml.loading.MCPNamingService/CORE]: Loaded 31003 field mappings from fields.csv +[30Dec2025 13:43:04.151] [main/DEBUG] [cpw.mods.modlauncher.TransformationServicesHandler/MODLAUNCHER]: Transformation services loading transformers +[30Dec2025 13:43:04.152] [main/DEBUG] [cpw.mods.modlauncher.TransformationServiceDecorator/MODLAUNCHER]: Initializing transformers for transformation service mixin +[30Dec2025 13:43:04.154] [main/DEBUG] [cpw.mods.modlauncher.TransformationServiceDecorator/MODLAUNCHER]: Initialized transformers for transformation service mixin +[30Dec2025 13:43:04.154] [main/DEBUG] [cpw.mods.modlauncher.TransformationServiceDecorator/MODLAUNCHER]: Initializing transformers for transformation service fml +[30Dec2025 13:43:04.154] [main/DEBUG] [net.minecraftforge.fml.loading.FMLServiceProvider/CORE]: Loading coremod transformers +[30Dec2025 13:43:04.156] [main/DEBUG] [net.minecraftforge.coremod.CoreModEngine/COREMOD]: Loading CoreMod from coremods/field_to_method.js +[30Dec2025 13:43:04.514] [main/DEBUG] [net.minecraftforge.coremod.CoreModEngine/COREMOD]: CoreMod loaded successfully +[30Dec2025 13:43:04.514] [main/DEBUG] [net.minecraftforge.coremod.CoreModEngine/COREMOD]: Loading CoreMod from coremods/field_to_instanceof.js +[30Dec2025 13:43:04.620] [main/DEBUG] [net.minecraftforge.coremod.CoreModEngine/COREMOD]: CoreMod loaded successfully +[30Dec2025 13:43:04.621] [main/DEBUG] [net.minecraftforge.coremod.CoreModEngine/COREMOD]: Loading CoreMod from coremods/add_bouncer_method.js +[30Dec2025 13:43:04.682] [main/DEBUG] [net.minecraftforge.coremod.CoreModEngine/COREMOD]: CoreMod loaded successfully +[30Dec2025 13:43:04.682] [main/DEBUG] [net.minecraftforge.coremod.CoreModEngine/COREMOD]: Loading CoreMod from coremods/method_redirector.js +[30Dec2025 13:43:04.780] [main/DEBUG] [net.minecraftforge.coremod.CoreModEngine/COREMOD]: CoreMod loaded successfully +[30Dec2025 13:43:04.801] [main/DEBUG] [cpw.mods.modlauncher.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@2740e316 to Target : CLASS {Lnet/minecraft/world/level/biome/Biome;} {} {V} +[30Dec2025 13:43:04.804] [main/DEBUG] [cpw.mods.modlauncher.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@6aa7b67f to Target : CLASS {Lnet/minecraft/world/level/levelgen/structure/Structure;} {} {V} +[30Dec2025 13:43:04.806] [main/DEBUG] [cpw.mods.modlauncher.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@6bcc3f27 to Target : CLASS {Lnet/minecraft/world/effect/MobEffectInstance;} {} {V} +[30Dec2025 13:43:04.806] [main/DEBUG] [cpw.mods.modlauncher.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@79aee22a to Target : CLASS {Lnet/minecraft/world/level/block/LiquidBlock;} {} {V} +[30Dec2025 13:43:04.806] [main/DEBUG] [cpw.mods.modlauncher.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@36920bd6 to Target : CLASS {Lnet/minecraft/world/item/BucketItem;} {} {V} +[30Dec2025 13:43:04.807] [main/DEBUG] [cpw.mods.modlauncher.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@61514735 to Target : CLASS {Lnet/minecraft/world/level/block/StairBlock;} {} {V} +[30Dec2025 13:43:04.807] [main/DEBUG] [cpw.mods.modlauncher.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@6bee793f to Target : CLASS {Lnet/minecraft/world/level/block/FlowerPotBlock;} {} {V} +[30Dec2025 13:43:04.807] [main/DEBUG] [cpw.mods.modlauncher.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@655f69da to Target : CLASS {Lnet/minecraft/world/item/ItemStack;} {} {V} +[30Dec2025 13:43:04.807] [main/DEBUG] [cpw.mods.modlauncher.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@43b5021c to Target : CLASS {Lnet/minecraft/network/play/client/CClientSettingsPacket;} {} {V} +[30Dec2025 13:43:04.807] [main/DEBUG] [cpw.mods.modlauncher.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@28369db0 to Target : CLASS {Lnet/minecraft/world/level/levelgen/structure/structures/SwampHutPiece;} {} {V} +[30Dec2025 13:43:04.807] [main/DEBUG] [cpw.mods.modlauncher.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@28369db0 to Target : CLASS {Lnet/minecraft/world/entity/raid/Raid;} {} {V} +[30Dec2025 13:43:04.807] [main/DEBUG] [cpw.mods.modlauncher.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@28369db0 to Target : CLASS {Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate;} {} {V} +[30Dec2025 13:43:04.807] [main/DEBUG] [cpw.mods.modlauncher.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@28369db0 to Target : CLASS {Lnet/minecraft/world/entity/monster/Evoker$EvokerSummonSpellGoal;} {} {V} +[30Dec2025 13:43:04.807] [main/DEBUG] [cpw.mods.modlauncher.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@28369db0 to Target : CLASS {Lnet/minecraft/world/entity/ai/village/VillageSiege;} {} {V} +[30Dec2025 13:43:04.808] [main/DEBUG] [cpw.mods.modlauncher.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@28369db0 to Target : CLASS {Lnet/minecraft/world/entity/monster/Zombie;} {} {V} +[30Dec2025 13:43:04.808] [main/DEBUG] [cpw.mods.modlauncher.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@28369db0 to Target : CLASS {Lnet/minecraft/world/level/NaturalSpawner;} {} {V} +[30Dec2025 13:43:04.808] [main/DEBUG] [cpw.mods.modlauncher.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@28369db0 to Target : CLASS {Lnet/minecraft/world/level/levelgen/PhantomSpawner;} {} {V} +[30Dec2025 13:43:04.808] [main/DEBUG] [cpw.mods.modlauncher.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@28369db0 to Target : CLASS {Lnet/minecraft/world/entity/animal/horse/SkeletonTrapGoal;} {} {V} +[30Dec2025 13:43:04.808] [main/DEBUG] [cpw.mods.modlauncher.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@28369db0 to Target : CLASS {Lnet/minecraft/world/level/levelgen/structure/structures/OceanRuinPieces$OceanRuinPiece;} {} {V} +[30Dec2025 13:43:04.808] [main/DEBUG] [cpw.mods.modlauncher.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@28369db0 to Target : CLASS {Lnet/minecraft/server/commands/RaidCommand;} {} {V} +[30Dec2025 13:43:04.808] [main/DEBUG] [cpw.mods.modlauncher.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@28369db0 to Target : CLASS {Lnet/minecraft/world/entity/npc/Villager;} {} {V} +[30Dec2025 13:43:04.808] [main/DEBUG] [cpw.mods.modlauncher.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@28369db0 to Target : CLASS {Lnet/minecraft/world/entity/monster/ZombieVillager;} {} {V} +[30Dec2025 13:43:04.808] [main/DEBUG] [cpw.mods.modlauncher.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@28369db0 to Target : CLASS {Lnet/minecraft/server/commands/SummonCommand;} {} {V} +[30Dec2025 13:43:04.808] [main/DEBUG] [cpw.mods.modlauncher.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@28369db0 to Target : CLASS {Lnet/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$OceanMonumentPiece;} {} {V} +[30Dec2025 13:43:04.808] [main/DEBUG] [cpw.mods.modlauncher.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@28369db0 to Target : CLASS {Lnet/minecraft/world/entity/monster/Strider;} {} {V} +[30Dec2025 13:43:04.808] [main/DEBUG] [cpw.mods.modlauncher.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@28369db0 to Target : CLASS {Lnet/minecraft/world/level/levelgen/PatrolSpawner;} {} {V} +[30Dec2025 13:43:04.808] [main/DEBUG] [cpw.mods.modlauncher.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@28369db0 to Target : CLASS {Lnet/minecraft/world/entity/monster/Spider;} {} {V} +[30Dec2025 13:43:04.808] [main/DEBUG] [cpw.mods.modlauncher.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@28369db0 to Target : CLASS {Lnet/minecraft/world/entity/animal/frog/Tadpole;} {} {V} +[30Dec2025 13:43:04.808] [main/DEBUG] [cpw.mods.modlauncher.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@28369db0 to Target : CLASS {Lnet/minecraft/world/entity/EntityType;} {} {V} +[30Dec2025 13:43:04.808] [main/DEBUG] [cpw.mods.modlauncher.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@28369db0 to Target : CLASS {Lnet/minecraft/world/entity/npc/CatSpawner;} {} {V} +[30Dec2025 13:43:04.808] [main/DEBUG] [cpw.mods.modlauncher.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@28369db0 to Target : CLASS {Lnet/minecraft/world/level/levelgen/structure/structures/WoodlandMansionPieces$WoodlandMansionPiece;} {} {V} +[30Dec2025 13:43:04.808] [main/DEBUG] [cpw.mods.modlauncher.TransformationServiceDecorator/MODLAUNCHER]: Initialized transformers for transformation service fml +[30Dec2025 13:43:05.193] [main/DEBUG] [mixin/]: Processing prepare() for PlatformAgent[MixinPlatformAgentDefault:ModLauncher Root Container(ModLauncher:4f56a0a2)] +[30Dec2025 13:43:05.194] [main/DEBUG] [mixin/]: Processing launch tasks for PlatformAgent[MixinPlatformAgentDefault:ModLauncher Root Container(ModLauncher:4f56a0a2)] +[30Dec2025 13:43:05.194] [main/DEBUG] [mixin/]: Adding mixin platform agents for container SecureJarResource(minecraft) +[30Dec2025 13:43:05.194] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentMinecraftForge for SecureJarResource(minecraft) +[30Dec2025 13:43:05.194] [main/DEBUG] [mixin/]: MixinPlatformAgentMinecraftForge rejected container SecureJarResource(minecraft) +[30Dec2025 13:43:05.194] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentDefault for SecureJarResource(minecraft) +[30Dec2025 13:43:05.194] [main/DEBUG] [mixin/]: MixinPlatformAgentDefault accepted container SecureJarResource(minecraft) +[30Dec2025 13:43:05.194] [main/DEBUG] [mixin/]: Processing prepare() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(minecraft)] +[30Dec2025 13:43:05.194] [main/DEBUG] [mixin/]: Adding mixin platform agents for container SecureJarResource(forge) +[30Dec2025 13:43:05.194] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentMinecraftForge for SecureJarResource(forge) +[30Dec2025 13:43:05.194] [main/DEBUG] [mixin/]: MixinPlatformAgentMinecraftForge rejected container SecureJarResource(forge) +[30Dec2025 13:43:05.194] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentDefault for SecureJarResource(forge) +[30Dec2025 13:43:05.194] [main/DEBUG] [mixin/]: MixinPlatformAgentDefault accepted container SecureJarResource(forge) +[30Dec2025 13:43:05.194] [main/DEBUG] [mixin/]: Processing prepare() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(forge)] +[30Dec2025 13:43:05.195] [main/DEBUG] [mixin/]: Adding mixin platform agents for container SecureJarResource(custom_ore_gen) +[30Dec2025 13:43:05.195] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentMinecraftForge for SecureJarResource(custom_ore_gen) +[30Dec2025 13:43:05.195] [main/DEBUG] [mixin/]: MixinPlatformAgentMinecraftForge rejected container SecureJarResource(custom_ore_gen) +[30Dec2025 13:43:05.195] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentDefault for SecureJarResource(custom_ore_gen) +[30Dec2025 13:43:05.195] [main/DEBUG] [mixin/]: MixinPlatformAgentDefault accepted container SecureJarResource(custom_ore_gen) +[30Dec2025 13:43:05.195] [main/DEBUG] [mixin/]: Processing prepare() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(custom_ore_gen)] +[30Dec2025 13:43:05.196] [main/DEBUG] [mixin/]: inject() running with 4 agents +[30Dec2025 13:43:05.196] [main/DEBUG] [mixin/]: Processing inject() for PlatformAgent[MixinPlatformAgentDefault:ModLauncher Root Container(ModLauncher:4f56a0a2)] +[30Dec2025 13:43:05.196] [main/DEBUG] [mixin/]: Processing inject() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(minecraft)] +[30Dec2025 13:43:05.196] [main/DEBUG] [mixin/]: Processing inject() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(forge)] +[30Dec2025 13:43:05.196] [main/DEBUG] [mixin/]: Processing inject() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(custom_ore_gen)] +[30Dec2025 13:43:05.196] [main/INFO] [cpw.mods.modlauncher.LaunchServiceHandler/MODLAUNCHER]: Launching target 'forgeclientuserdev' with arguments [--version, MOD_DEV, --gameDir, ., --assetsDir, C:\Users\polar\.mcreator\gradle\caches\forge_gradle\assets, --assetIndex, 5] +[30Dec2025 13:43:05.248] [main/DEBUG] [mixin/]: Error cleaning class output directory: .mixin.out +[30Dec2025 13:43:05.251] [main/DEBUG] [mixin/]: Preparing mixins for MixinEnvironment[DEFAULT] +[30Dec2025 13:43:05.811] [main/DEBUG] [io.netty.util.internal.logging.InternalLoggerFactory/]: Using SLF4J as the default logging framework +[30Dec2025 13:43:05.821] [main/DEBUG] [io.netty.util.ResourceLeakDetector/]: -Dio.netty.leakDetection.level: simple +[30Dec2025 13:43:05.821] [main/DEBUG] [io.netty.util.ResourceLeakDetector/]: -Dio.netty.leakDetection.targetRecords: 4 +[30Dec2025 13:43:06.056] [main/DEBUG] [oshi.util.FileUtil/]: No oshi.properties file found from ClassLoader cpw.mods.modlauncher.TransformingClassLoader@75babb67 +[30Dec2025 13:43:06.450] [main/DEBUG] [oshi.util.FileUtil/]: No oshi.architecture.properties file found from ClassLoader cpw.mods.modlauncher.TransformingClassLoader@75babb67 +[30Dec2025 13:43:07.134] [pool-4-thread-1/DEBUG] [net.minecraftforge.coremod.transformer.CoreModBaseTransformer/COREMOD]: Transforming net/minecraft/world/entity/EntityType +[30Dec2025 13:43:07.735] [pool-4-thread-1/DEBUG] [net.minecraftforge.coremod.transformer.CoreModBaseTransformer/COREMOD]: Transforming net/minecraft/world/level/block/LiquidBlock +[30Dec2025 13:43:07.769] [pool-4-thread-1/DEBUG] [net.minecraftforge.coremod.transformer.CoreModBaseTransformer/COREMOD]: Transforming net/minecraft/world/level/block/StairBlock +[30Dec2025 13:43:07.843] [pool-4-thread-1/DEBUG] [net.minecraftforge.coremod.transformer.CoreModBaseTransformer/COREMOD]: Transforming net/minecraft/world/level/block/FlowerPotBlock +[30Dec2025 13:43:08.549] [pool-4-thread-1/DEBUG] [net.minecraftforge.coremod.transformer.CoreModBaseTransformer/COREMOD]: Transforming net/minecraft/world/item/ItemStack +[30Dec2025 13:43:09.119] [pool-4-thread-1/DEBUG] [net.minecraftforge.coremod.transformer.CoreModBaseTransformer/COREMOD]: Transforming net/minecraft/world/entity/animal/frog/Tadpole +[30Dec2025 13:43:09.172] [pool-4-thread-1/DEBUG] [net.minecraftforge.coremod.transformer.CoreModBaseTransformer/COREMOD]: Transforming net/minecraft/world/item/BucketItem +[30Dec2025 13:43:10.131] [pool-4-thread-1/DEBUG] [net.minecraftforge.coremod.transformer.CoreModBaseTransformer/COREMOD]: Transforming net/minecraft/world/entity/monster/Spider +[30Dec2025 13:43:10.195] [Datafixer Bootstrap/INFO] [com.mojang.datafixers.DataFixerBuilder/]: 188 Datafixer optimizations took 184 milliseconds +[30Dec2025 13:43:10.235] [pool-4-thread-1/DEBUG] [net.minecraftforge.coremod.transformer.CoreModBaseTransformer/COREMOD]: Transforming net/minecraft/world/entity/monster/Zombie +[30Dec2025 13:43:10.281] [pool-4-thread-1/DEBUG] [net.minecraftforge.coremod.transformer.CoreModBaseTransformer/COREMOD]: Transforming net/minecraft/world/entity/monster/ZombieVillager +[30Dec2025 13:43:10.370] [pool-4-thread-1/DEBUG] [net.minecraftforge.coremod.transformer.CoreModBaseTransformer/COREMOD]: Transforming net/minecraft/world/entity/monster/Evoker$EvokerSummonSpellGoal +[30Dec2025 13:43:10.611] [pool-4-thread-1/DEBUG] [net.minecraftforge.coremod.transformer.CoreModBaseTransformer/COREMOD]: Transforming net/minecraft/world/entity/animal/horse/SkeletonTrapGoal +[30Dec2025 13:43:10.648] [pool-4-thread-1/DEBUG] [net.minecraftforge.coremod.transformer.CoreModBaseTransformer/COREMOD]: Transforming net/minecraft/world/entity/monster/Strider +[30Dec2025 13:43:10.798] [pool-4-thread-1/DEBUG] [net.minecraftforge.coremod.transformer.CoreModBaseTransformer/COREMOD]: Transforming net/minecraft/world/entity/npc/Villager +[30Dec2025 13:43:10.915] [pool-4-thread-1/DEBUG] [net.minecraftforge.coremod.transformer.CoreModBaseTransformer/COREMOD]: Transforming net/minecraft/world/effect/MobEffectInstance +[30Dec2025 13:43:11.444] [pool-4-thread-1/DEBUG] [net.minecraftforge.coremod.transformer.CoreModBaseTransformer/COREMOD]: Transforming net/minecraft/world/level/levelgen/structure/Structure +[30Dec2025 13:43:11.480] [pool-4-thread-1/DEBUG] [net.minecraftforge.coremod.transformer.CoreModBaseTransformer/COREMOD]: Transforming net/minecraft/world/level/levelgen/structure/structures/OceanRuinPieces$OceanRuinPiece +[30Dec2025 13:43:11.491] [pool-4-thread-1/DEBUG] [net.minecraftforge.coremod.transformer.CoreModBaseTransformer/COREMOD]: Transforming net/minecraft/world/level/levelgen/structure/structures/SwampHutPiece +[30Dec2025 13:43:11.498] [pool-4-thread-1/DEBUG] [net.minecraftforge.coremod.transformer.CoreModBaseTransformer/COREMOD]: Transforming net/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$OceanMonumentPiece +[30Dec2025 13:43:11.524] [pool-4-thread-1/DEBUG] [net.minecraftforge.coremod.transformer.CoreModBaseTransformer/COREMOD]: Transforming net/minecraft/world/level/levelgen/structure/structures/WoodlandMansionPieces$WoodlandMansionPiece +[30Dec2025 13:43:11.625] [pool-4-thread-1/DEBUG] [net.minecraftforge.coremod.transformer.CoreModBaseTransformer/COREMOD]: Transforming net/minecraft/world/level/biome/Biome +[30Dec2025 13:43:11.794] [pool-4-thread-1/DEBUG] [net.minecraftforge.registries.GameData/REGISTRIES]: Creating vanilla freeze snapshot +[30Dec2025 13:43:11.797] [pool-4-thread-1/DEBUG] [net.minecraftforge.registries.ForgeRegistry/REGISTRIES]: Registry minecraft:block Sync: VANILLA -> ACTIVE +[30Dec2025 13:43:11.806] [pool-4-thread-1/DEBUG] [net.minecraftforge.registries.ForgeRegistry/REGISTRIES]: Registry minecraft:fluid Sync: VANILLA -> ACTIVE +[30Dec2025 13:43:11.806] [pool-4-thread-1/DEBUG] [net.minecraftforge.registries.ForgeRegistry/REGISTRIES]: Registry minecraft:item Sync: VANILLA -> ACTIVE +[30Dec2025 13:43:11.814] [pool-4-thread-1/DEBUG] [net.minecraftforge.registries.ForgeRegistry/REGISTRIES]: Registry minecraft:mob_effect Sync: VANILLA -> ACTIVE +[30Dec2025 13:43:11.815] [pool-4-thread-1/DEBUG] [net.minecraftforge.registries.ForgeRegistry/REGISTRIES]: Registry minecraft:sound_event Sync: VANILLA -> ACTIVE +[30Dec2025 13:43:11.823] [pool-4-thread-1/DEBUG] [net.minecraftforge.registries.ForgeRegistry/REGISTRIES]: Registry minecraft:potion Sync: VANILLA -> ACTIVE +[30Dec2025 13:43:11.823] [pool-4-thread-1/DEBUG] [net.minecraftforge.registries.ForgeRegistry/REGISTRIES]: Registry minecraft:enchantment Sync: VANILLA -> ACTIVE +[30Dec2025 13:43:11.823] [pool-4-thread-1/DEBUG] [net.minecraftforge.registries.ForgeRegistry/REGISTRIES]: Registry minecraft:entity_type Sync: VANILLA -> ACTIVE +[30Dec2025 13:43:11.824] [pool-4-thread-1/DEBUG] [net.minecraftforge.registries.ForgeRegistry/REGISTRIES]: Registry minecraft:block_entity_type Sync: VANILLA -> ACTIVE +[30Dec2025 13:43:11.825] [pool-4-thread-1/DEBUG] [net.minecraftforge.registries.ForgeRegistry/REGISTRIES]: Registry minecraft:particle_type Sync: VANILLA -> ACTIVE +[30Dec2025 13:43:11.825] [pool-4-thread-1/DEBUG] [net.minecraftforge.registries.ForgeRegistry/REGISTRIES]: Registry minecraft:menu Sync: VANILLA -> ACTIVE +[30Dec2025 13:43:11.826] [pool-4-thread-1/DEBUG] [net.minecraftforge.registries.ForgeRegistry/REGISTRIES]: Registry minecraft:painting_variant Sync: VANILLA -> ACTIVE +[30Dec2025 13:43:11.826] [pool-4-thread-1/DEBUG] [net.minecraftforge.registries.ForgeRegistry/REGISTRIES]: Registry minecraft:recipe_type Sync: VANILLA -> ACTIVE +[30Dec2025 13:43:11.826] [pool-4-thread-1/DEBUG] [net.minecraftforge.registries.ForgeRegistry/REGISTRIES]: Registry minecraft:recipe_serializer Sync: VANILLA -> ACTIVE +[30Dec2025 13:43:11.826] [pool-4-thread-1/DEBUG] [net.minecraftforge.registries.ForgeRegistry/REGISTRIES]: Registry minecraft:attribute Sync: VANILLA -> ACTIVE +[30Dec2025 13:43:11.826] [pool-4-thread-1/DEBUG] [net.minecraftforge.registries.ForgeRegistry/REGISTRIES]: Registry minecraft:stat_type Sync: VANILLA -> ACTIVE +[30Dec2025 13:43:11.826] [pool-4-thread-1/DEBUG] [net.minecraftforge.registries.ForgeRegistry/REGISTRIES]: Registry minecraft:command_argument_type Sync: VANILLA -> ACTIVE +[30Dec2025 13:43:11.826] [pool-4-thread-1/DEBUG] [net.minecraftforge.registries.ForgeRegistry/REGISTRIES]: Registry minecraft:villager_profession Sync: VANILLA -> ACTIVE +[30Dec2025 13:43:11.827] [pool-4-thread-1/DEBUG] [net.minecraftforge.registries.ForgeRegistry/REGISTRIES]: Registry minecraft:point_of_interest_type Sync: VANILLA -> ACTIVE +[30Dec2025 13:43:11.828] [pool-4-thread-1/DEBUG] [net.minecraftforge.registries.ForgeRegistry/REGISTRIES]: Registry minecraft:memory_module_type Sync: VANILLA -> ACTIVE +[30Dec2025 13:43:11.829] [pool-4-thread-1/DEBUG] [net.minecraftforge.registries.ForgeRegistry/REGISTRIES]: Registry minecraft:sensor_type Sync: VANILLA -> ACTIVE +[30Dec2025 13:43:11.829] [pool-4-thread-1/DEBUG] [net.minecraftforge.registries.ForgeRegistry/REGISTRIES]: Registry minecraft:schedule Sync: VANILLA -> ACTIVE +[30Dec2025 13:43:11.829] [pool-4-thread-1/DEBUG] [net.minecraftforge.registries.ForgeRegistry/REGISTRIES]: Registry minecraft:activity Sync: VANILLA -> ACTIVE +[30Dec2025 13:43:11.830] [pool-4-thread-1/DEBUG] [net.minecraftforge.registries.ForgeRegistry/REGISTRIES]: Registry minecraft:worldgen/carver Sync: VANILLA -> ACTIVE +[30Dec2025 13:43:11.830] [pool-4-thread-1/DEBUG] [net.minecraftforge.registries.ForgeRegistry/REGISTRIES]: Registry minecraft:worldgen/feature Sync: VANILLA -> ACTIVE +[30Dec2025 13:43:11.830] [pool-4-thread-1/DEBUG] [net.minecraftforge.registries.ForgeRegistry/REGISTRIES]: Registry minecraft:chunk_status Sync: VANILLA -> ACTIVE +[30Dec2025 13:43:11.830] [pool-4-thread-1/DEBUG] [net.minecraftforge.registries.ForgeRegistry/REGISTRIES]: Registry minecraft:worldgen/block_state_provider_type Sync: VANILLA -> ACTIVE +[30Dec2025 13:43:11.830] [pool-4-thread-1/DEBUG] [net.minecraftforge.registries.ForgeRegistry/REGISTRIES]: Registry minecraft:worldgen/foliage_placer_type Sync: VANILLA -> ACTIVE +[30Dec2025 13:43:11.831] [pool-4-thread-1/DEBUG] [net.minecraftforge.registries.ForgeRegistry/REGISTRIES]: Registry minecraft:worldgen/tree_decorator_type Sync: VANILLA -> ACTIVE +[30Dec2025 13:43:11.831] [pool-4-thread-1/DEBUG] [net.minecraftforge.registries.ForgeRegistry/REGISTRIES]: Registry minecraft:worldgen/biome Sync: VANILLA -> ACTIVE +[30Dec2025 13:43:11.838] [pool-4-thread-1/DEBUG] [net.minecraftforge.registries.GameData/REGISTRIES]: Vanilla freeze snapshot created +[30Dec2025 13:43:12.179] [Render thread/WARN] [net.minecraft.server.packs.VanillaPackResourcesBuilder/]: Assets URL 'union:/C:/Users/polar/.mcreator/gradle/caches/forge_gradle/minecraft_user_repo/net/minecraftforge/forge/1.20.1-47.3.0_mapped_official_1.20.1/forge-1.20.1-47.3.0_mapped_official_1.20.1-recomp.jar%23191!/assets/.mcassetsroot' uses unexpected schema +[30Dec2025 13:43:12.179] [Render thread/WARN] [net.minecraft.server.packs.VanillaPackResourcesBuilder/]: Assets URL 'union:/C:/Users/polar/.mcreator/gradle/caches/forge_gradle/minecraft_user_repo/net/minecraftforge/forge/1.20.1-47.3.0_mapped_official_1.20.1/forge-1.20.1-47.3.0_mapped_official_1.20.1-recomp.jar%23191!/data/.mcassetsroot' uses unexpected schema +[30Dec2025 13:43:12.216] [Render thread/INFO] [com.mojang.authlib.yggdrasil.YggdrasilAuthenticationService/]: Environment: authHost='https://authserver.mojang.com', accountsHost='https://api.mojang.com', sessionHost='https://sessionserver.mojang.com', servicesHost='https://api.minecraftservices.com', name='PROD' +[30Dec2025 13:43:12.237] [Render thread/INFO] [net.minecraft.client.Minecraft/]: Setting user: Dev +[30Dec2025 13:43:12.398] [Render thread/INFO] [net.minecraft.client.Minecraft/]: Backend library: LWJGL version 3.3.1 build 7 +[30Dec2025 13:43:12.666] [Render thread/DEBUG] [net.minecraftforge.common.ForgeI18n/CORE]: Loading I18N data entries: 6430 +[30Dec2025 13:43:12.692] [Render thread/DEBUG] [net.minecraftforge.fml.ModWorkManager/LOADING]: Using 16 threads for parallel mod-loading +[30Dec2025 13:43:12.702] [Render thread/DEBUG] [net.minecraftforge.fml.javafmlmod.FMLJavaModLanguageProvider/LOADING]: Loading FMLModContainer from classloader cpw.mods.modlauncher.TransformingClassLoader@75babb67 - got cpw.mods.cl.ModuleClassLoader@26e412ef +[30Dec2025 13:43:12.702] [Render thread/DEBUG] [net.minecraftforge.fml.javafmlmod.FMLModContainer/LOADING]: Creating FMLModContainer instance for net.minecraftforge.common.ForgeMod +[30Dec2025 13:43:12.708] [Render thread/DEBUG] [net.minecraftforge.fml.javafmlmod.FMLJavaModLanguageProvider/LOADING]: Loading FMLModContainer from classloader cpw.mods.modlauncher.TransformingClassLoader@75babb67 - got cpw.mods.cl.ModuleClassLoader@26e412ef +[30Dec2025 13:43:12.708] [Render thread/DEBUG] [net.minecraftforge.fml.javafmlmod.FMLModContainer/LOADING]: Creating FMLModContainer instance for net.mcreator.customoregen.CustomOreGenMod +[30Dec2025 13:43:12.742] [modloading-worker-0/DEBUG] [net.minecraftforge.versions.forge.ForgeVersion/CORE]: Forge Version package package net.minecraftforge.versions.forge, Forge, version 47.3 from cpw.mods.modlauncher.TransformingClassLoader@75babb67 +[30Dec2025 13:43:12.743] [modloading-worker-0/DEBUG] [net.minecraftforge.versions.forge.ForgeVersion/CORE]: Found Forge version 47.3.0 +[30Dec2025 13:43:12.743] [modloading-worker-0/DEBUG] [net.minecraftforge.versions.forge.ForgeVersion/CORE]: Found Forge spec 47.3 +[30Dec2025 13:43:12.743] [modloading-worker-0/DEBUG] [net.minecraftforge.versions.forge.ForgeVersion/CORE]: Found Forge group net.minecraftforge +[30Dec2025 13:43:12.743] [modloading-worker-0/DEBUG] [net.minecraftforge.versions.mcp.MCPVersion/CORE]: MCP Version package package net.minecraftforge.versions.mcp, Minecraft, version 1.20.1 from cpw.mods.modlauncher.TransformingClassLoader@75babb67 +[30Dec2025 13:43:12.743] [modloading-worker-0/DEBUG] [net.minecraftforge.versions.mcp.MCPVersion/CORE]: Found MC version information 1.20.1 +[30Dec2025 13:43:12.743] [modloading-worker-0/DEBUG] [net.minecraftforge.versions.mcp.MCPVersion/CORE]: Found MCP version information 20230612.114412 +[30Dec2025 13:43:12.743] [modloading-worker-0/INFO] [net.minecraftforge.common.ForgeMod/FORGEMOD]: Forge mod loading, version 47.3.0, for MC 1.20.1 with MCP 20230612.114412 +[30Dec2025 13:43:12.745] [modloading-worker-0/INFO] [net.minecraftforge.common.MinecraftForge/FORGE]: MinecraftForge v47.3.0 Initialized +[30Dec2025 13:43:12.827] [modloading-worker-0/DEBUG] [net.minecraftforge.fml.javafmlmod.AutomaticEventSubscriber/LOADING]: Attempting to inject @EventBusSubscriber classes into the eventbus for custom_ore_gen +[30Dec2025 13:43:12.831] [modloading-worker-0/DEBUG] [net.minecraftforge.fml.javafmlmod.AutomaticEventSubscriber/LOADING]: Auto-subscribing net.mcreator.customoregen.init.CustomOreGenModTabs to MOD +[30Dec2025 13:43:12.841] [modloading-worker-0/DEBUG] [io.netty.util.internal.PlatformDependent0/]: -Dio.netty.noUnsafe: false +[30Dec2025 13:43:12.841] [modloading-worker-0/DEBUG] [io.netty.util.internal.PlatformDependent0/]: Java version: 17 +[30Dec2025 13:43:12.842] [modloading-worker-0/DEBUG] [io.netty.util.internal.PlatformDependent0/]: sun.misc.Unsafe.theUnsafe: available +[30Dec2025 13:43:12.842] [modloading-worker-0/DEBUG] [io.netty.util.internal.PlatformDependent0/]: sun.misc.Unsafe.copyMemory: available +[30Dec2025 13:43:12.842] [modloading-worker-0/DEBUG] [io.netty.util.internal.PlatformDependent0/]: sun.misc.Unsafe.storeFence: available +[30Dec2025 13:43:12.843] [modloading-worker-0/DEBUG] [io.netty.util.internal.PlatformDependent0/]: java.nio.Buffer.address: available +[30Dec2025 13:43:12.843] [modloading-worker-0/DEBUG] [io.netty.util.internal.PlatformDependent0/]: direct buffer constructor: unavailable +java.lang.UnsupportedOperationException: Reflective setAccessible(true) disabled + at io.netty.util.internal.ReflectionUtil.trySetAccessible(ReflectionUtil.java:31) ~[netty-common-4.1.82.Final.jar%23151!/:4.1.82.Final] + at io.netty.util.internal.PlatformDependent0$5.run(PlatformDependent0.java:288) ~[netty-common-4.1.82.Final.jar%23151!/:4.1.82.Final] + at java.security.AccessController.doPrivileged(AccessController.java:318) ~[?:?] + at io.netty.util.internal.PlatformDependent0.(PlatformDependent0.java:282) ~[netty-common-4.1.82.Final.jar%23151!/:4.1.82.Final] + at io.netty.util.internal.PlatformDependent.isAndroid(PlatformDependent.java:333) ~[netty-common-4.1.82.Final.jar%23151!/:4.1.82.Final] + at io.netty.util.internal.PlatformDependent.(PlatformDependent.java:88) ~[netty-common-4.1.82.Final.jar%23151!/:4.1.82.Final] + at io.netty.util.ConstantPool.(ConstantPool.java:34) ~[netty-common-4.1.82.Final.jar%23151!/:4.1.82.Final] + at io.netty.util.AttributeKey$1.(AttributeKey.java:27) ~[netty-common-4.1.82.Final.jar%23151!/:4.1.82.Final] + at io.netty.util.AttributeKey.(AttributeKey.java:27) ~[netty-common-4.1.82.Final.jar%23151!/:4.1.82.Final] + at net.minecraftforge.network.NetworkConstants.(NetworkConstants.java:34) ~[forge-1.20.1-47.3.0_mapped_official_1.20.1-recomp.jar%23190%23197!/:?] + at net.minecraftforge.common.ForgeMod.(ForgeMod.java:429) ~[forge-1.20.1-47.3.0_mapped_official_1.20.1-recomp.jar%23190%23197!/:?] + at jdk.internal.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method) ~[?:?] + at jdk.internal.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:77) ~[?:?] + at jdk.internal.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45) ~[?:?] + at java.lang.reflect.Constructor.newInstanceWithCaller(Constructor.java:500) ~[?:?] + at java.lang.reflect.Constructor.newInstance(Constructor.java:481) ~[?:?] + at net.minecraftforge.fml.javafmlmod.FMLModContainer.constructMod(FMLModContainer.java:70) ~[javafmllanguage-1.20.1-47.3.0.jar%23192!/:?] + at net.minecraftforge.fml.ModContainer.lambda$buildTransitionHandler$4(ModContainer.java:124) ~[fmlcore-1.20.1-47.3.0.jar%23195!/:?] + at java.util.concurrent.CompletableFuture$AsyncRun.run(CompletableFuture.java:1804) ~[?:?] + at java.util.concurrent.CompletableFuture$AsyncRun.exec(CompletableFuture.java:1796) ~[?:?] + at java.util.concurrent.ForkJoinTask.doExec(ForkJoinTask.java:373) ~[?:?] + at java.util.concurrent.ForkJoinPool$WorkQueue.topLevelExec(ForkJoinPool.java:1182) ~[?:?] + at java.util.concurrent.ForkJoinPool.scan(ForkJoinPool.java:1655) ~[?:?] + at java.util.concurrent.ForkJoinPool.runWorker(ForkJoinPool.java:1622) ~[?:?] + at java.util.concurrent.ForkJoinWorkerThread.run(ForkJoinWorkerThread.java:165) ~[?:?] +[30Dec2025 13:43:12.844] [modloading-worker-0/DEBUG] [io.netty.util.internal.PlatformDependent0/]: java.nio.Bits.unaligned: available, true +[30Dec2025 13:43:12.846] [modloading-worker-0/DEBUG] [io.netty.util.internal.PlatformDependent0/]: jdk.internal.misc.Unsafe.allocateUninitializedArray(int): unavailable +java.lang.IllegalAccessException: class io.netty.util.internal.PlatformDependent0$7 (in module io.netty.common) cannot access class jdk.internal.misc.Unsafe (in module java.base) because module java.base does not export jdk.internal.misc to module io.netty.common + at jdk.internal.reflect.Reflection.newIllegalAccessException(Reflection.java:392) ~[?:?] + at java.lang.reflect.AccessibleObject.checkAccess(AccessibleObject.java:674) ~[?:?] + at java.lang.reflect.Method.invoke(Method.java:561) ~[?:?] + at io.netty.util.internal.PlatformDependent0$7.run(PlatformDependent0.java:410) ~[netty-common-4.1.82.Final.jar%23151!/:4.1.82.Final] + at java.security.AccessController.doPrivileged(AccessController.java:318) ~[?:?] + at io.netty.util.internal.PlatformDependent0.(PlatformDependent0.java:401) ~[netty-common-4.1.82.Final.jar%23151!/:4.1.82.Final] + at io.netty.util.internal.PlatformDependent.isAndroid(PlatformDependent.java:333) ~[netty-common-4.1.82.Final.jar%23151!/:4.1.82.Final] + at io.netty.util.internal.PlatformDependent.(PlatformDependent.java:88) ~[netty-common-4.1.82.Final.jar%23151!/:4.1.82.Final] + at io.netty.util.ConstantPool.(ConstantPool.java:34) ~[netty-common-4.1.82.Final.jar%23151!/:4.1.82.Final] + at io.netty.util.AttributeKey$1.(AttributeKey.java:27) ~[netty-common-4.1.82.Final.jar%23151!/:4.1.82.Final] + at io.netty.util.AttributeKey.(AttributeKey.java:27) ~[netty-common-4.1.82.Final.jar%23151!/:4.1.82.Final] + at net.minecraftforge.network.NetworkConstants.(NetworkConstants.java:34) ~[forge-1.20.1-47.3.0_mapped_official_1.20.1-recomp.jar%23190%23197!/:?] + at net.minecraftforge.common.ForgeMod.(ForgeMod.java:429) ~[forge-1.20.1-47.3.0_mapped_official_1.20.1-recomp.jar%23190%23197!/:?] + at jdk.internal.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method) ~[?:?] + at jdk.internal.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:77) ~[?:?] + at jdk.internal.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45) ~[?:?] + at java.lang.reflect.Constructor.newInstanceWithCaller(Constructor.java:500) ~[?:?] + at java.lang.reflect.Constructor.newInstance(Constructor.java:481) ~[?:?] + at net.minecraftforge.fml.javafmlmod.FMLModContainer.constructMod(FMLModContainer.java:70) ~[javafmllanguage-1.20.1-47.3.0.jar%23192!/:?] + at net.minecraftforge.fml.ModContainer.lambda$buildTransitionHandler$4(ModContainer.java:124) ~[fmlcore-1.20.1-47.3.0.jar%23195!/:?] + at java.util.concurrent.CompletableFuture$AsyncRun.run(CompletableFuture.java:1804) ~[?:?] + at java.util.concurrent.CompletableFuture$AsyncRun.exec(CompletableFuture.java:1796) ~[?:?] + at java.util.concurrent.ForkJoinTask.doExec(ForkJoinTask.java:373) ~[?:?] + at java.util.concurrent.ForkJoinPool$WorkQueue.topLevelExec(ForkJoinPool.java:1182) ~[?:?] + at java.util.concurrent.ForkJoinPool.scan(ForkJoinPool.java:1655) ~[?:?] + at java.util.concurrent.ForkJoinPool.runWorker(ForkJoinPool.java:1622) ~[?:?] + at java.util.concurrent.ForkJoinWorkerThread.run(ForkJoinWorkerThread.java:165) ~[?:?] +[30Dec2025 13:43:12.847] [modloading-worker-0/DEBUG] [io.netty.util.internal.PlatformDependent0/]: java.nio.DirectByteBuffer.(long, int): unavailable +[30Dec2025 13:43:12.847] [modloading-worker-0/DEBUG] [io.netty.util.internal.PlatformDependent/]: sun.misc.Unsafe: available +[30Dec2025 13:43:12.848] [modloading-worker-0/DEBUG] [io.netty.util.internal.PlatformDependent/]: maxDirectMemory: 8552185856 bytes (maybe) +[30Dec2025 13:43:12.848] [modloading-worker-0/DEBUG] [io.netty.util.internal.PlatformDependent/]: -Dio.netty.tmpdir: C:\Users\polar\AppData\Local\Temp (java.io.tmpdir) +[30Dec2025 13:43:12.848] [modloading-worker-0/DEBUG] [io.netty.util.internal.PlatformDependent/]: -Dio.netty.bitMode: 64 (sun.arch.data.model) +[30Dec2025 13:43:12.848] [modloading-worker-0/DEBUG] [io.netty.util.internal.PlatformDependent/]: Platform: Windows +[30Dec2025 13:43:12.849] [modloading-worker-0/DEBUG] [io.netty.util.internal.PlatformDependent/]: -Dio.netty.maxDirectMemory: -1 bytes +[30Dec2025 13:43:12.849] [modloading-worker-0/DEBUG] [io.netty.util.internal.PlatformDependent/]: -Dio.netty.uninitializedArrayAllocationThreshold: -1 +[30Dec2025 13:43:12.850] [modloading-worker-0/DEBUG] [io.netty.util.internal.CleanerJava9/]: java.nio.ByteBuffer.cleaner(): available +[30Dec2025 13:43:12.850] [modloading-worker-0/DEBUG] [io.netty.util.internal.PlatformDependent/]: -Dio.netty.noPreferDirect: false +[30Dec2025 13:43:12.874] [modloading-worker-0/DEBUG] [net.minecraftforge.common.ForgeMod/FORGEMOD]: Loading Network data for FML net version: FML3 +[30Dec2025 13:43:12.894] [modloading-worker-0/DEBUG] [net.minecraftforge.fml.config.ConfigTracker/CONFIG]: Config file forge-client.toml for forge tracking +[30Dec2025 13:43:12.894] [modloading-worker-0/DEBUG] [net.minecraftforge.fml.config.ConfigTracker/CONFIG]: Config file forge-server.toml for forge tracking +[30Dec2025 13:43:12.895] [modloading-worker-0/DEBUG] [net.minecraftforge.fml.ModLoadingContext/]: Attempted to register an empty config for type COMMON on mod forge +[30Dec2025 13:43:12.915] [modloading-worker-0/DEBUG] [net.minecraftforge.fml.javafmlmod.AutomaticEventSubscriber/LOADING]: Attempting to inject @EventBusSubscriber classes into the eventbus for forge +[30Dec2025 13:43:12.916] [modloading-worker-0/DEBUG] [net.minecraftforge.fml.javafmlmod.AutomaticEventSubscriber/LOADING]: Auto-subscribing net.minecraftforge.common.ForgeSpawnEggItem$CommonHandler to MOD +[30Dec2025 13:43:12.918] [modloading-worker-0/DEBUG] [net.minecraftforge.fml.javafmlmod.AutomaticEventSubscriber/LOADING]: Auto-subscribing net.minecraftforge.common.ForgeSpawnEggItem$ColorRegisterHandler to MOD +[30Dec2025 13:43:12.922] [modloading-worker-0/DEBUG] [net.minecraftforge.fml.javafmlmod.AutomaticEventSubscriber/LOADING]: Auto-subscribing net.minecraftforge.client.model.data.ModelDataManager to FORGE +[30Dec2025 13:43:12.923] [modloading-worker-0/DEBUG] [net.minecraftforge.fml.javafmlmod.AutomaticEventSubscriber/LOADING]: Auto-subscribing net.minecraftforge.client.ForgeHooksClient$ClientEvents to MOD +[30Dec2025 13:43:12.928] [modloading-worker-0/DEBUG] [net.minecraftforge.fml.javafmlmod.AutomaticEventSubscriber/LOADING]: Auto-subscribing net.minecraftforge.client.ClientForgeMod to MOD +[30Dec2025 13:43:12.957] [Render thread/DEBUG] [net.minecraftforge.registries.ObjectHolderRegistry/REGISTRIES]: Processing ObjectHolder annotations +[30Dec2025 13:43:12.984] [Render thread/DEBUG] [net.minecraftforge.registries.ObjectHolderRegistry/REGISTRIES]: Found 3880 ObjectHolder annotations +[30Dec2025 13:43:12.989] [Render thread/DEBUG] [net.minecraftforge.common.capabilities.CapabilityManager/CAPABILITIES]: Attempting to automatically register: Lnet/minecraftforge/energy/IEnergyStorage; +[30Dec2025 13:43:12.993] [Render thread/DEBUG] [net.minecraftforge.common.capabilities.CapabilityManager/CAPABILITIES]: Attempting to automatically register: Lnet/minecraftforge/fluids/capability/IFluidHandler; +[30Dec2025 13:43:12.993] [Render thread/DEBUG] [net.minecraftforge.common.capabilities.CapabilityManager/CAPABILITIES]: Attempting to automatically register: Lnet/minecraftforge/fluids/capability/IFluidHandlerItem; +[30Dec2025 13:43:12.993] [Render thread/DEBUG] [net.minecraftforge.common.capabilities.CapabilityManager/CAPABILITIES]: Attempting to automatically register: Lnet/minecraftforge/items/IItemHandler; +[30Dec2025 13:43:12.994] [Render thread/DEBUG] [net.minecraftforge.registries.GameData/REGISTRIES]: Unfreezing vanilla registries +[30Dec2025 13:43:12.998] [Render thread/DEBUG] [net.minecraftforge.registries.GameData/REGISTRIES]: Applying holder lookups: minecraft:sound_event +[30Dec2025 13:43:13.002] [Render thread/DEBUG] [net.minecraftforge.registries.GameData/REGISTRIES]: Holder lookups applied: minecraft:sound_event +[30Dec2025 13:43:13.003] [Render thread/DEBUG] [net.minecraftforge.registries.GameData/REGISTRIES]: Applying holder lookups: minecraft:fluid +[30Dec2025 13:43:13.003] [Render thread/DEBUG] [net.minecraftforge.registries.GameData/REGISTRIES]: Holder lookups applied: minecraft:fluid +[30Dec2025 13:43:13.015] [Render thread/DEBUG] [net.minecraftforge.registries.GameData/REGISTRIES]: Applying holder lookups: minecraft:block +[30Dec2025 13:43:13.016] [Render thread/DEBUG] [net.minecraftforge.registries.GameData/REGISTRIES]: Holder lookups applied: minecraft:block +[30Dec2025 13:43:13.018] [Render thread/DEBUG] [net.minecraftforge.registries.GameData/REGISTRIES]: Applying holder lookups: minecraft:attribute +[30Dec2025 13:43:13.018] [Render thread/DEBUG] [net.minecraftforge.registries.GameData/REGISTRIES]: Holder lookups applied: minecraft:attribute +[30Dec2025 13:43:13.018] [Render thread/DEBUG] [net.minecraftforge.registries.GameData/REGISTRIES]: Applying holder lookups: minecraft:mob_effect +[30Dec2025 13:43:13.020] [Render thread/DEBUG] [net.minecraftforge.registries.GameData/REGISTRIES]: Holder lookups applied: minecraft:mob_effect +[30Dec2025 13:43:13.020] [Render thread/DEBUG] [net.minecraftforge.registries.GameData/REGISTRIES]: Applying holder lookups: minecraft:particle_type +[30Dec2025 13:43:13.021] [Render thread/DEBUG] [net.minecraftforge.registries.GameData/REGISTRIES]: Holder lookups applied: minecraft:particle_type +[30Dec2025 13:43:13.028] [Render thread/DEBUG] [net.minecraftforge.registries.GameData/REGISTRIES]: Applying holder lookups: minecraft:item +[30Dec2025 13:43:13.029] [Render thread/DEBUG] [net.minecraftforge.registries.GameData/REGISTRIES]: Holder lookups applied: minecraft:item +[30Dec2025 13:43:13.029] [Render thread/DEBUG] [net.minecraftforge.registries.GameData/REGISTRIES]: Applying holder lookups: minecraft:entity_type +[30Dec2025 13:43:13.029] [Render thread/DEBUG] [net.minecraftforge.registries.GameData/REGISTRIES]: Holder lookups applied: minecraft:entity_type +[30Dec2025 13:43:13.029] [Render thread/DEBUG] [net.minecraftforge.registries.GameData/REGISTRIES]: Applying holder lookups: minecraft:sensor_type +[30Dec2025 13:43:13.031] [Render thread/DEBUG] [net.minecraftforge.registries.GameData/REGISTRIES]: Holder lookups applied: minecraft:sensor_type +[30Dec2025 13:43:13.031] [Render thread/DEBUG] [net.minecraftforge.registries.GameData/REGISTRIES]: Applying holder lookups: minecraft:memory_module_type +[30Dec2025 13:43:13.031] [Render thread/DEBUG] [net.minecraftforge.registries.GameData/REGISTRIES]: Holder lookups applied: minecraft:memory_module_type +[30Dec2025 13:43:13.031] [Render thread/DEBUG] [net.minecraftforge.registries.GameData/REGISTRIES]: Applying holder lookups: minecraft:potion +[30Dec2025 13:43:13.032] [Render thread/DEBUG] [net.minecraftforge.registries.GameData/REGISTRIES]: Holder lookups applied: minecraft:potion +[30Dec2025 13:43:13.032] [Render thread/DEBUG] [net.minecraftforge.registries.GameData/REGISTRIES]: Applying holder lookups: minecraft:game_event +[30Dec2025 13:43:13.032] [Render thread/DEBUG] [net.minecraftforge.registries.GameData/REGISTRIES]: Holder lookups applied: minecraft:game_event +[30Dec2025 13:43:13.032] [Render thread/DEBUG] [net.minecraftforge.registries.GameData/REGISTRIES]: Applying holder lookups: minecraft:enchantment +[30Dec2025 13:43:13.034] [Render thread/DEBUG] [net.minecraftforge.registries.GameData/REGISTRIES]: Holder lookups applied: minecraft:enchantment +[30Dec2025 13:43:13.034] [Render thread/DEBUG] [net.minecraftforge.registries.GameData/REGISTRIES]: Applying holder lookups: minecraft:block_entity_type +[30Dec2025 13:43:13.034] [Render thread/DEBUG] [net.minecraftforge.registries.GameData/REGISTRIES]: Holder lookups applied: minecraft:block_entity_type +[30Dec2025 13:43:13.034] [Render thread/DEBUG] [net.minecraftforge.registries.GameData/REGISTRIES]: Applying holder lookups: minecraft:painting_variant +[30Dec2025 13:43:13.036] [Render thread/DEBUG] [net.minecraftforge.registries.GameData/REGISTRIES]: Holder lookups applied: minecraft:painting_variant +[30Dec2025 13:43:13.036] [Render thread/DEBUG] [net.minecraftforge.registries.GameData/REGISTRIES]: Applying holder lookups: minecraft:stat_type +[30Dec2025 13:43:13.036] [Render thread/DEBUG] [net.minecraftforge.registries.GameData/REGISTRIES]: Holder lookups applied: minecraft:stat_type +[30Dec2025 13:43:13.036] [Render thread/DEBUG] [net.minecraftforge.registries.GameData/REGISTRIES]: Applying holder lookups: minecraft:custom_stat +[30Dec2025 13:43:13.038] [Render thread/DEBUG] [net.minecraftforge.registries.GameData/REGISTRIES]: Holder lookups applied: minecraft:custom_stat +[30Dec2025 13:43:13.038] [Render thread/DEBUG] [net.minecraftforge.registries.GameData/REGISTRIES]: Applying holder lookups: minecraft:chunk_status +[30Dec2025 13:43:13.039] [Render thread/DEBUG] [net.minecraftforge.registries.GameData/REGISTRIES]: Holder lookups applied: minecraft:chunk_status +[30Dec2025 13:43:13.039] [Render thread/DEBUG] [net.minecraftforge.registries.GameData/REGISTRIES]: Applying holder lookups: minecraft:rule_test +[30Dec2025 13:43:13.039] [Render thread/DEBUG] [net.minecraftforge.registries.GameData/REGISTRIES]: Holder lookups applied: minecraft:rule_test +[30Dec2025 13:43:13.039] [Render thread/DEBUG] [net.minecraftforge.registries.GameData/REGISTRIES]: Applying holder lookups: minecraft:rule_block_entity_modifier +[30Dec2025 13:43:13.040] [Render thread/DEBUG] [net.minecraftforge.registries.GameData/REGISTRIES]: Holder lookups applied: minecraft:rule_block_entity_modifier +[30Dec2025 13:43:13.040] [Render thread/DEBUG] [net.minecraftforge.registries.GameData/REGISTRIES]: Applying holder lookups: minecraft:pos_rule_test +[30Dec2025 13:43:13.040] [Render thread/DEBUG] [net.minecraftforge.registries.GameData/REGISTRIES]: Holder lookups applied: minecraft:pos_rule_test +[30Dec2025 13:43:13.040] [Render thread/DEBUG] [net.minecraftforge.registries.GameData/REGISTRIES]: Applying holder lookups: minecraft:menu +[30Dec2025 13:43:13.042] [Render thread/DEBUG] [net.minecraftforge.registries.GameData/REGISTRIES]: Holder lookups applied: minecraft:menu +[30Dec2025 13:43:13.042] [Render thread/DEBUG] [net.minecraftforge.registries.GameData/REGISTRIES]: Applying holder lookups: minecraft:recipe_type +[30Dec2025 13:43:13.042] [Render thread/DEBUG] [net.minecraftforge.registries.GameData/REGISTRIES]: Holder lookups applied: minecraft:recipe_type +[30Dec2025 13:43:13.054] [Render thread/DEBUG] [net.minecraftforge.registries.GameData/REGISTRIES]: Applying holder lookups: minecraft:recipe_serializer +[30Dec2025 13:43:13.055] [Render thread/DEBUG] [net.minecraftforge.registries.GameData/REGISTRIES]: Holder lookups applied: minecraft:recipe_serializer +[30Dec2025 13:43:13.055] [Render thread/DEBUG] [net.minecraftforge.registries.GameData/REGISTRIES]: Applying holder lookups: minecraft:position_source_type +[30Dec2025 13:43:13.055] [Render thread/DEBUG] [net.minecraftforge.registries.GameData/REGISTRIES]: Holder lookups applied: minecraft:position_source_type +[30Dec2025 13:43:13.057] [Render thread/DEBUG] [net.minecraftforge.registries.GameData/REGISTRIES]: Applying holder lookups: minecraft:command_argument_type +[30Dec2025 13:43:13.058] [Render thread/DEBUG] [net.minecraftforge.registries.GameData/REGISTRIES]: Holder lookups applied: minecraft:command_argument_type +[30Dec2025 13:43:13.058] [Render thread/DEBUG] [net.minecraftforge.registries.GameData/REGISTRIES]: Applying holder lookups: minecraft:villager_type +[30Dec2025 13:43:13.058] [Render thread/DEBUG] [net.minecraftforge.registries.GameData/REGISTRIES]: Holder lookups applied: minecraft:villager_type +[30Dec2025 13:43:13.058] [Render thread/DEBUG] [net.minecraftforge.registries.GameData/REGISTRIES]: Applying holder lookups: minecraft:villager_profession +[30Dec2025 13:43:13.058] [Render thread/DEBUG] [net.minecraftforge.registries.GameData/REGISTRIES]: Holder lookups applied: minecraft:villager_profession +[30Dec2025 13:43:13.058] [Render thread/DEBUG] [net.minecraftforge.registries.GameData/REGISTRIES]: Applying holder lookups: minecraft:point_of_interest_type +[30Dec2025 13:43:13.058] [Render thread/DEBUG] [net.minecraftforge.registries.GameData/REGISTRIES]: Holder lookups applied: minecraft:point_of_interest_type +[30Dec2025 13:43:13.058] [Render thread/DEBUG] [net.minecraftforge.registries.GameData/REGISTRIES]: Applying holder lookups: minecraft:schedule +[30Dec2025 13:43:13.060] [Render thread/DEBUG] [net.minecraftforge.registries.GameData/REGISTRIES]: Holder lookups applied: minecraft:schedule +[30Dec2025 13:43:13.060] [Render thread/DEBUG] [net.minecraftforge.registries.GameData/REGISTRIES]: Applying holder lookups: minecraft:activity +[30Dec2025 13:43:13.060] [Render thread/DEBUG] [net.minecraftforge.registries.GameData/REGISTRIES]: Holder lookups applied: minecraft:activity +[30Dec2025 13:43:13.061] [Render thread/DEBUG] [net.minecraftforge.registries.GameData/REGISTRIES]: Applying holder lookups: minecraft:loot_pool_entry_type +[30Dec2025 13:43:13.061] [Render thread/DEBUG] [net.minecraftforge.registries.GameData/REGISTRIES]: Holder lookups applied: minecraft:loot_pool_entry_type +[30Dec2025 13:43:13.061] [Render thread/DEBUG] [net.minecraftforge.registries.GameData/REGISTRIES]: Applying holder lookups: minecraft:loot_function_type +[30Dec2025 13:43:13.061] [Render thread/DEBUG] [net.minecraftforge.registries.GameData/REGISTRIES]: Holder lookups applied: minecraft:loot_function_type +[30Dec2025 13:43:13.065] [Render thread/DEBUG] [net.minecraftforge.registries.GameData/REGISTRIES]: Applying holder lookups: minecraft:loot_condition_type +[30Dec2025 13:43:13.066] [Render thread/DEBUG] [net.minecraftforge.registries.GameData/REGISTRIES]: Holder lookups applied: minecraft:loot_condition_type +[30Dec2025 13:43:13.066] [Render thread/DEBUG] [net.minecraftforge.registries.GameData/REGISTRIES]: Applying holder lookups: minecraft:loot_number_provider_type +[30Dec2025 13:43:13.066] [Render thread/DEBUG] [net.minecraftforge.registries.GameData/REGISTRIES]: Holder lookups applied: minecraft:loot_number_provider_type +[30Dec2025 13:43:13.066] [Render thread/DEBUG] [net.minecraftforge.registries.GameData/REGISTRIES]: Applying holder lookups: minecraft:loot_nbt_provider_type +[30Dec2025 13:43:13.066] [Render thread/DEBUG] [net.minecraftforge.registries.GameData/REGISTRIES]: Holder lookups applied: minecraft:loot_nbt_provider_type +[30Dec2025 13:43:13.066] [Render thread/DEBUG] [net.minecraftforge.registries.GameData/REGISTRIES]: Applying holder lookups: minecraft:loot_score_provider_type +[30Dec2025 13:43:13.066] [Render thread/DEBUG] [net.minecraftforge.registries.GameData/REGISTRIES]: Holder lookups applied: minecraft:loot_score_provider_type +[30Dec2025 13:43:13.067] [Render thread/DEBUG] [net.minecraftforge.registries.GameData/REGISTRIES]: Applying holder lookups: minecraft:float_provider_type +[30Dec2025 13:43:13.067] [Render thread/DEBUG] [net.minecraftforge.registries.GameData/REGISTRIES]: Holder lookups applied: minecraft:float_provider_type +[30Dec2025 13:43:13.068] [Render thread/DEBUG] [net.minecraftforge.registries.GameData/REGISTRIES]: Applying holder lookups: minecraft:int_provider_type +[30Dec2025 13:43:13.068] [Render thread/DEBUG] [net.minecraftforge.registries.GameData/REGISTRIES]: Holder lookups applied: minecraft:int_provider_type +[30Dec2025 13:43:13.068] [Render thread/DEBUG] [net.minecraftforge.registries.GameData/REGISTRIES]: Applying holder lookups: minecraft:height_provider_type +[30Dec2025 13:43:13.068] [Render thread/DEBUG] [net.minecraftforge.registries.GameData/REGISTRIES]: Holder lookups applied: minecraft:height_provider_type +[30Dec2025 13:43:13.068] [Render thread/DEBUG] [net.minecraftforge.registries.GameData/REGISTRIES]: Applying holder lookups: minecraft:block_predicate_type +[30Dec2025 13:43:13.069] [Render thread/DEBUG] [net.minecraftforge.registries.GameData/REGISTRIES]: Holder lookups applied: minecraft:block_predicate_type +[30Dec2025 13:43:13.069] [Render thread/DEBUG] [net.minecraftforge.registries.GameData/REGISTRIES]: Applying holder lookups: minecraft:worldgen/carver +[30Dec2025 13:43:13.069] [Render thread/DEBUG] [net.minecraftforge.registries.GameData/REGISTRIES]: Holder lookups applied: minecraft:worldgen/carver +[30Dec2025 13:43:13.069] [Render thread/DEBUG] [net.minecraftforge.registries.GameData/REGISTRIES]: Applying holder lookups: minecraft:worldgen/feature +[30Dec2025 13:43:13.069] [Render thread/DEBUG] [net.minecraftforge.registries.GameData/REGISTRIES]: Holder lookups applied: minecraft:worldgen/feature +[30Dec2025 13:43:13.069] [Render thread/DEBUG] [net.minecraftforge.registries.GameData/REGISTRIES]: Applying holder lookups: minecraft:worldgen/structure_processor +[30Dec2025 13:43:13.069] [Render thread/DEBUG] [net.minecraftforge.registries.GameData/REGISTRIES]: Holder lookups applied: minecraft:worldgen/structure_processor +[30Dec2025 13:43:13.069] [Render thread/DEBUG] [net.minecraftforge.registries.GameData/REGISTRIES]: Applying holder lookups: minecraft:worldgen/structure_placement +[30Dec2025 13:43:13.070] [Render thread/DEBUG] [net.minecraftforge.registries.GameData/REGISTRIES]: Holder lookups applied: minecraft:worldgen/structure_placement +[30Dec2025 13:43:13.070] [Render thread/DEBUG] [net.minecraftforge.registries.GameData/REGISTRIES]: Applying holder lookups: minecraft:worldgen/structure_piece +[30Dec2025 13:43:13.070] [Render thread/DEBUG] [net.minecraftforge.registries.GameData/REGISTRIES]: Holder lookups applied: minecraft:worldgen/structure_piece +[30Dec2025 13:43:13.070] [Render thread/DEBUG] [net.minecraftforge.registries.GameData/REGISTRIES]: Applying holder lookups: minecraft:worldgen/structure_type +[30Dec2025 13:43:13.070] [Render thread/DEBUG] [net.minecraftforge.registries.GameData/REGISTRIES]: Holder lookups applied: minecraft:worldgen/structure_type +[30Dec2025 13:43:13.070] [Render thread/DEBUG] [net.minecraftforge.registries.GameData/REGISTRIES]: Applying holder lookups: minecraft:worldgen/placement_modifier_type +[30Dec2025 13:43:13.070] [Render thread/DEBUG] [net.minecraftforge.registries.GameData/REGISTRIES]: Holder lookups applied: minecraft:worldgen/placement_modifier_type +[30Dec2025 13:43:13.070] [Render thread/DEBUG] [net.minecraftforge.registries.GameData/REGISTRIES]: Applying holder lookups: minecraft:worldgen/block_state_provider_type +[30Dec2025 13:43:13.070] [Render thread/DEBUG] [net.minecraftforge.registries.GameData/REGISTRIES]: Holder lookups applied: minecraft:worldgen/block_state_provider_type +[30Dec2025 13:43:13.070] [Render thread/DEBUG] [net.minecraftforge.registries.GameData/REGISTRIES]: Applying holder lookups: minecraft:worldgen/foliage_placer_type +[30Dec2025 13:43:13.072] [Render thread/DEBUG] [net.minecraftforge.registries.GameData/REGISTRIES]: Holder lookups applied: minecraft:worldgen/foliage_placer_type +[30Dec2025 13:43:13.072] [Render thread/DEBUG] [net.minecraftforge.registries.GameData/REGISTRIES]: Applying holder lookups: minecraft:worldgen/trunk_placer_type +[30Dec2025 13:43:13.072] [Render thread/DEBUG] [net.minecraftforge.registries.GameData/REGISTRIES]: Holder lookups applied: minecraft:worldgen/trunk_placer_type +[30Dec2025 13:43:13.072] [Render thread/DEBUG] [net.minecraftforge.registries.GameData/REGISTRIES]: Applying holder lookups: minecraft:worldgen/root_placer_type +[30Dec2025 13:43:13.072] [Render thread/DEBUG] [net.minecraftforge.registries.GameData/REGISTRIES]: Holder lookups applied: minecraft:worldgen/root_placer_type +[30Dec2025 13:43:13.072] [Render thread/DEBUG] [net.minecraftforge.registries.GameData/REGISTRIES]: Applying holder lookups: minecraft:worldgen/tree_decorator_type +[30Dec2025 13:43:13.072] [Render thread/DEBUG] [net.minecraftforge.registries.GameData/REGISTRIES]: Holder lookups applied: minecraft:worldgen/tree_decorator_type +[30Dec2025 13:43:13.072] [Render thread/DEBUG] [net.minecraftforge.registries.GameData/REGISTRIES]: Applying holder lookups: minecraft:worldgen/feature_size_type +[30Dec2025 13:43:13.072] [Render thread/DEBUG] [net.minecraftforge.registries.GameData/REGISTRIES]: Holder lookups applied: minecraft:worldgen/feature_size_type +[30Dec2025 13:43:13.072] [Render thread/DEBUG] [net.minecraftforge.registries.GameData/REGISTRIES]: Applying holder lookups: minecraft:worldgen/biome_source +[30Dec2025 13:43:13.073] [Render thread/DEBUG] [net.minecraftforge.registries.GameData/REGISTRIES]: Holder lookups applied: minecraft:worldgen/biome_source +[30Dec2025 13:43:13.073] [Render thread/DEBUG] [net.minecraftforge.registries.GameData/REGISTRIES]: Applying holder lookups: minecraft:worldgen/chunk_generator +[30Dec2025 13:43:13.073] [Render thread/DEBUG] [net.minecraftforge.registries.GameData/REGISTRIES]: Holder lookups applied: minecraft:worldgen/chunk_generator +[30Dec2025 13:43:13.073] [Render thread/DEBUG] [net.minecraftforge.registries.GameData/REGISTRIES]: Applying holder lookups: minecraft:worldgen/material_condition +[30Dec2025 13:43:13.073] [Render thread/DEBUG] [net.minecraftforge.registries.GameData/REGISTRIES]: Holder lookups applied: minecraft:worldgen/material_condition +[30Dec2025 13:43:13.073] [Render thread/DEBUG] [net.minecraftforge.registries.GameData/REGISTRIES]: Applying holder lookups: minecraft:worldgen/material_rule +[30Dec2025 13:43:13.073] [Render thread/DEBUG] [net.minecraftforge.registries.GameData/REGISTRIES]: Holder lookups applied: minecraft:worldgen/material_rule +[30Dec2025 13:43:13.073] [Render thread/DEBUG] [net.minecraftforge.registries.GameData/REGISTRIES]: Applying holder lookups: minecraft:worldgen/density_function_type +[30Dec2025 13:43:13.073] [Render thread/DEBUG] [net.minecraftforge.registries.GameData/REGISTRIES]: Holder lookups applied: minecraft:worldgen/density_function_type +[30Dec2025 13:43:13.073] [Render thread/DEBUG] [net.minecraftforge.registries.GameData/REGISTRIES]: Applying holder lookups: minecraft:worldgen/structure_pool_element +[30Dec2025 13:43:13.075] [Render thread/DEBUG] [net.minecraftforge.registries.GameData/REGISTRIES]: Holder lookups applied: minecraft:worldgen/structure_pool_element +[30Dec2025 13:43:13.075] [Render thread/DEBUG] [net.minecraftforge.registries.GameData/REGISTRIES]: Applying holder lookups: minecraft:cat_variant +[30Dec2025 13:43:13.075] [Render thread/DEBUG] [net.minecraftforge.registries.GameData/REGISTRIES]: Holder lookups applied: minecraft:cat_variant +[30Dec2025 13:43:13.076] [Render thread/DEBUG] [net.minecraftforge.registries.GameData/REGISTRIES]: Applying holder lookups: minecraft:frog_variant +[30Dec2025 13:43:13.076] [Render thread/DEBUG] [net.minecraftforge.registries.GameData/REGISTRIES]: Holder lookups applied: minecraft:frog_variant +[30Dec2025 13:43:13.076] [Render thread/DEBUG] [net.minecraftforge.registries.GameData/REGISTRIES]: Applying holder lookups: minecraft:banner_pattern +[30Dec2025 13:43:13.076] [Render thread/DEBUG] [net.minecraftforge.registries.GameData/REGISTRIES]: Holder lookups applied: minecraft:banner_pattern +[30Dec2025 13:43:13.076] [Render thread/DEBUG] [net.minecraftforge.registries.GameData/REGISTRIES]: Applying holder lookups: minecraft:instrument +[30Dec2025 13:43:13.077] [Render thread/DEBUG] [net.minecraftforge.registries.GameData/REGISTRIES]: Holder lookups applied: minecraft:instrument +[30Dec2025 13:43:13.077] [Render thread/DEBUG] [net.minecraftforge.registries.GameData/REGISTRIES]: Applying holder lookups: minecraft:decorated_pot_patterns +[30Dec2025 13:43:13.077] [Render thread/DEBUG] [net.minecraftforge.registries.GameData/REGISTRIES]: Holder lookups applied: minecraft:decorated_pot_patterns +[30Dec2025 13:43:13.077] [Render thread/DEBUG] [net.minecraftforge.registries.GameData/REGISTRIES]: Applying holder lookups: minecraft:creative_mode_tab +[30Dec2025 13:43:13.077] [Render thread/DEBUG] [net.minecraftforge.registries.GameData/REGISTRIES]: Holder lookups applied: minecraft:creative_mode_tab +[30Dec2025 13:43:13.089] [Render thread/DEBUG] [net.minecraftforge.registries.GameData/REGISTRIES]: Applying holder lookups: forge:biome_modifier_serializers +[30Dec2025 13:43:13.091] [Render thread/DEBUG] [net.minecraftforge.registries.GameData/REGISTRIES]: Holder lookups applied: forge:biome_modifier_serializers +[30Dec2025 13:43:13.092] [Render thread/DEBUG] [net.minecraftforge.registries.GameData/REGISTRIES]: Applying holder lookups: forge:display_contexts +[30Dec2025 13:43:13.092] [Render thread/DEBUG] [net.minecraftforge.registries.GameData/REGISTRIES]: Holder lookups applied: forge:display_contexts +[30Dec2025 13:43:13.092] [Render thread/DEBUG] [net.minecraftforge.registries.GameData/REGISTRIES]: Applying holder lookups: forge:entity_data_serializers +[30Dec2025 13:43:13.092] [Render thread/DEBUG] [net.minecraftforge.registries.GameData/REGISTRIES]: Holder lookups applied: forge:entity_data_serializers +[30Dec2025 13:43:13.105] [Render thread/DEBUG] [net.minecraftforge.registries.GameData/REGISTRIES]: Applying holder lookups: forge:fluid_type +[30Dec2025 13:43:13.106] [Render thread/DEBUG] [net.minecraftforge.registries.GameData/REGISTRIES]: Holder lookups applied: forge:fluid_type +[30Dec2025 13:43:13.106] [Render thread/DEBUG] [net.minecraftforge.registries.GameData/REGISTRIES]: Applying holder lookups: forge:global_loot_modifier_serializers +[30Dec2025 13:43:13.107] [Render thread/DEBUG] [net.minecraftforge.registries.GameData/REGISTRIES]: Holder lookups applied: forge:global_loot_modifier_serializers +[30Dec2025 13:43:13.113] [Render thread/DEBUG] [net.minecraftforge.registries.GameData/REGISTRIES]: Applying holder lookups: forge:holder_set_type +[30Dec2025 13:43:13.114] [Render thread/DEBUG] [net.minecraftforge.registries.GameData/REGISTRIES]: Holder lookups applied: forge:holder_set_type +[30Dec2025 13:43:13.115] [Render thread/DEBUG] [net.minecraftforge.registries.GameData/REGISTRIES]: Applying holder lookups: forge:structure_modifier_serializers +[30Dec2025 13:43:13.115] [Render thread/DEBUG] [net.minecraftforge.registries.GameData/REGISTRIES]: Holder lookups applied: forge:structure_modifier_serializers +[30Dec2025 13:43:13.115] [Render thread/DEBUG] [net.minecraftforge.registries.GameData/REGISTRIES]: Applying holder lookups: minecraft:worldgen/biome +[30Dec2025 13:43:13.115] [Render thread/DEBUG] [net.minecraftforge.registries.GameData/REGISTRIES]: Holder lookups applied: minecraft:worldgen/biome +[30Dec2025 13:43:13.264] [Render thread/DEBUG] [net.minecraftforge.client.loading.ClientModLoader/CORE]: Generating PackInfo named mod:forge for mod file / +[30Dec2025 13:43:13.269] [Render thread/DEBUG] [net.minecraftforge.client.loading.ClientModLoader/CORE]: Generating PackInfo named mod:custom_ore_gen for mod file C:\Users\polar\Nextcloud\DocumentsRoman\mods_mc\custom_ore_gem\build\resources\main +[30Dec2025 13:43:13.853] [Render thread/INFO] [net.minecraftforge.gametest.ForgeGameTestHooks/]: Enabled Gametest Namespaces: [] +[30Dec2025 13:43:13.998] [Render thread/INFO] [net.minecraft.server.packs.resources.ReloadableResourceManager/]: Reloading ResourceManager: vanilla, mod_resources +[30Dec2025 13:43:14.015] [modloading-worker-0/DEBUG] [net.minecraftforge.fml.config.ConfigTracker/CONFIG]: Loading configs type CLIENT +[30Dec2025 13:43:14.016] [modloading-worker-0/DEBUG] [net.minecraftforge.fml.config.ConfigFileTypeHandler/CONFIG]: Built TOML config for C:\Users\polar\Nextcloud\DocumentsRoman\mods_mc\custom_ore_gem\run\config\forge-client.toml +[30Dec2025 13:43:14.017] [modloading-worker-0/DEBUG] [net.minecraftforge.fml.config.ConfigFileTypeHandler/CONFIG]: Loaded TOML config file C:\Users\polar\Nextcloud\DocumentsRoman\mods_mc\custom_ore_gem\run\config\forge-client.toml +[30Dec2025 13:43:14.024] [modloading-worker-0/DEBUG] [net.minecraftforge.fml.config.ConfigFileTypeHandler/CONFIG]: Watching TOML config file C:\Users\polar\Nextcloud\DocumentsRoman\mods_mc\custom_ore_gem\run\config\forge-client.toml for changes +[30Dec2025 13:43:14.028] [modloading-worker-0/DEBUG] [net.minecraftforge.common.ForgeConfig/FORGEMOD]: Loaded forge config file forge-client.toml +[30Dec2025 13:43:14.029] [modloading-worker-0/DEBUG] [net.minecraftforge.fml.config.ConfigTracker/CONFIG]: Loading configs type COMMON +[30Dec2025 13:43:14.192] [Worker-Main-11/ERROR] [net.minecraft.client.resources.model.ModelManager/]: Failed to load blockstate minecraft:blockstates/diamond_ore.json from pack mod_resources +com.google.gson.JsonParseException: java.io.EOFException: End of input at line 1 column 1 path $ + at net.minecraft.util.GsonHelper.fromNullableJson(GsonHelper.java:436) ~[forge-1.20.1-47.3.0_mapped_official_1.20.1-recomp.jar%23191!/:?] + at net.minecraft.util.GsonHelper.fromJson(GsonHelper.java:441) ~[forge-1.20.1-47.3.0_mapped_official_1.20.1-recomp.jar%23191!/:?] + at net.minecraft.util.GsonHelper.parse(GsonHelper.java:505) ~[forge-1.20.1-47.3.0_mapped_official_1.20.1-recomp.jar%23191!/:?] + at net.minecraft.util.GsonHelper.parse(GsonHelper.java:513) ~[forge-1.20.1-47.3.0_mapped_official_1.20.1-recomp.jar%23191!/:?] + at net.minecraft.client.resources.model.ModelManager.lambda$loadBlockStates$12(ModelManager.java:137) ~[forge-1.20.1-47.3.0_mapped_official_1.20.1-recomp.jar%23191!/:?] + at java.util.concurrent.CompletableFuture$AsyncSupply.run(CompletableFuture.java:1768) ~[?:?] + at java.util.concurrent.CompletableFuture$AsyncSupply.exec(CompletableFuture.java:1760) ~[?:?] + at java.util.concurrent.ForkJoinTask.doExec(ForkJoinTask.java:373) ~[?:?] + at java.util.concurrent.ForkJoinPool$WorkQueue.topLevelExec(ForkJoinPool.java:1182) ~[?:?] + at java.util.concurrent.ForkJoinPool.scan(ForkJoinPool.java:1655) ~[?:?] + at java.util.concurrent.ForkJoinPool.runWorker(ForkJoinPool.java:1622) ~[?:?] + at java.util.concurrent.ForkJoinWorkerThread.run(ForkJoinWorkerThread.java:165) ~[?:?] +Caused by: java.io.EOFException: End of input at line 1 column 1 path $ + at com.google.gson.stream.JsonReader.nextNonWhitespace(JsonReader.java:1455) ~[gson-2.10.jar%23130!/:?] + at com.google.gson.stream.JsonReader.doPeek(JsonReader.java:558) ~[gson-2.10.jar%23130!/:?] + at com.google.gson.stream.JsonReader.peek(JsonReader.java:433) ~[gson-2.10.jar%23130!/:?] + at com.google.gson.internal.bind.TypeAdapters$28.read(TypeAdapters.java:769) ~[gson-2.10.jar%23130!/:?] + at com.google.gson.internal.bind.TypeAdapters$28.read(TypeAdapters.java:725) ~[gson-2.10.jar%23130!/:?] + at com.google.gson.internal.bind.TypeAdapters$34$1.read(TypeAdapters.java:1007) ~[gson-2.10.jar%23130!/:?] + at net.minecraft.util.GsonHelper.fromNullableJson(GsonHelper.java:434) ~[forge-1.20.1-47.3.0_mapped_official_1.20.1-recomp.jar%23191!/:?] + ... 11 more +[30Dec2025 13:43:14.252] [Worker-Main-4/INFO] [net.minecraft.client.gui.font.providers.UnihexProvider/]: Found unifont_all_no_pua-15.0.06.hex, loading +[30Dec2025 13:43:14.280] [Forge Version Check/INFO] [net.minecraftforge.fml.VersionChecker/]: [forge] Starting version check at https://files.minecraftforge.net/net/minecraftforge/forge/promotions_slim.json +[30Dec2025 13:43:15.019] [Forge Version Check/DEBUG] [net.minecraftforge.fml.VersionChecker/]: [forge] Received version check data: +{ + "homepage": "https://files.minecraftforge.net/net/minecraftforge/forge/", + "promos": { + "1.1-latest": "1.3.4.29", + "1.2.3-latest": "1.4.1.64", + "1.2.4-latest": "2.0.0.68", + "1.2.5-latest": "3.4.9.171", + "1.3.2-latest": "4.3.5.318", + "1.4.0-latest": "5.0.0.326", + "1.4.1-latest": "6.0.0.329", + "1.4.2-latest": "6.0.1.355", + "1.4.3-latest": "6.2.1.358", + "1.4.4-latest": "6.3.0.378", + "1.4.5-latest": "6.4.2.448", + "1.4.6-latest": "6.5.0.489", + "1.4.7-latest": "6.6.2.534", + "1.5-latest": "7.7.0.598", + "1.5.1-latest": "7.7.2.682", + "1.5.2-latest": "7.8.1.738", + "1.5.2-recommended": "7.8.1.738", + "1.6.1-latest": "8.9.0.775", + "1.6.2-latest": "9.10.1.871", + "1.6.2-recommended": "9.10.1.871", + "1.6.3-latest": "9.11.0.878", + "1.6.4-latest": "9.11.1.1345", + "1.6.4-recommended": "9.11.1.1345", + "1.7.2-latest": "10.12.2.1161", + "1.7.2-recommended": "10.12.2.1161", + "1.7.10-latest": "10.13.4.1614", + "1.7.10-recommended": "10.13.4.1614", + "1.8-latest": "11.14.4.1577", + "1.8-recommended": "11.14.4.1563", + "1.8.8-latest": "11.15.0.1655", + "1.8.9-latest": "11.15.1.2318", + "1.8.9-recommended": "11.15.1.2318", + "1.9-latest": "12.16.1.1938", + "1.9-recommended": "12.16.1.1887", + "1.9.4-latest": "12.17.0.2317", + "1.9.4-recommended": "12.17.0.2317", + "1.10-latest": "12.18.0.2000", + "1.10.2-latest": "12.18.3.2511", + "1.10.2-recommended": "12.18.3.2511", + "1.11-latest": "13.19.1.2199", + "1.11-recommended": "13.19.1.2189", + "1.11.2-latest": "13.20.1.2588", + "1.11.2-recommended": "13.20.1.2588", + "1.12-latest": "14.21.1.2443", + "1.12-recommended": "14.21.1.2387", + "1.12.1-latest": "14.22.1.2485", + "1.12.1-recommended": "14.22.1.2478", + "1.12.2-latest": "14.23.5.2864", + "1.12.2-recommended": "14.23.5.2859", + "1.13.2-latest": "25.0.223", + "1.14.2-latest": "26.0.63", + "1.14.3-latest": "27.0.60", + "1.14.4-latest": "28.2.27", + "1.14.4-recommended": "28.2.26", + "1.15-latest": "29.0.4", + "1.15.1-latest": "30.0.51", + "1.15.2-latest": "31.2.60", + "1.15.2-recommended": "31.2.57", + "1.16.1-latest": "32.0.108", + "1.16.2-latest": "33.0.61", + "1.16.3-latest": "34.1.42", + "1.16.3-recommended": "34.1.0", + "1.16.4-latest": "35.1.37", + "1.16.4-recommended": "35.1.4", + "1.16.5-latest": "36.2.42", + "1.16.5-recommended": "36.2.34", + "1.17.1-latest": "37.1.1", + "1.17.1-recommended": "37.1.1", + "1.18-latest": "38.0.17", + "1.18.1-latest": "39.1.2", + "1.18.1-recommended": "39.1.0", + "1.18.2-recommended": "40.3.0", + "1.18.2-latest": "40.3.12", + "1.19-latest": "41.1.0", + "1.19-recommended": "41.1.0", + "1.19.1-latest": "42.0.9", + "1.19.2-recommended": "43.5.0", + "1.19.2-latest": "43.5.2", + "1.19.3-latest": "44.1.23", + "1.19.3-recommended": "44.1.0", + "1.19.4-recommended": "45.4.0", + "1.19.4-latest": "45.4.3", + "1.20-latest": "46.0.14", + "1.20.1-recommended": "47.4.10", + "1.20.1-latest": "47.4.13", + "1.20.2-latest": "48.1.0", + "1.20.2-recommended": "48.1.0", + "1.20.3-latest": "49.0.2", + "1.20.4-latest": "49.2.4", + "1.20.4-recommended": "49.2.0", + "1.20.6-latest": "50.2.4", + "1.20.6-recommended": "50.2.0", + "1.21-latest": "51.0.33", + "1.21.1-latest": "52.1.8", + "1.21.1-recommended": "52.1.0", + "1.21.3-latest": "53.1.6", + "1.21.3-recommended": "53.1.0", + "1.21.4-latest": "54.1.11", + "1.21.4-recommended": "54.1.0", + "1.21.5-latest": "55.1.4", + "1.21.5-recommended": "55.1.0", + "1.21.6-latest": "56.0.9", + "1.21.7-latest": "57.0.3", + "1.21.8-latest": "58.1.11", + "1.21.8-recommended": "58.1.0", + "1.21.9-latest": "59.0.5", + "1.21.10-latest": "60.1.5", + "1.21.10-recommended": "60.1.0", + "1.21.11-latest": "61.0.3" + } +} +[30Dec2025 13:43:15.022] [Forge Version Check/INFO] [net.minecraftforge.fml.VersionChecker/]: [forge] Found status: OUTDATED Current: 47.3.0 Target: 47.4.10 +[30Dec2025 13:43:16.109] [modloading-worker-0/DEBUG] [net.minecraftforge.registries.GameData/REGISTRIES]: Freezing registries +[30Dec2025 13:43:16.110] [modloading-worker-0/DEBUG] [net.minecraftforge.registries.ForgeRegistry/REGISTRIES]: Registry minecraft:block Sync: FROZEN -> ACTIVE +[30Dec2025 13:43:16.123] [modloading-worker-0/DEBUG] [net.minecraftforge.registries.ForgeRegistry/REGISTRIES]: Registry minecraft:fluid Sync: FROZEN -> ACTIVE +[30Dec2025 13:43:16.123] [modloading-worker-0/DEBUG] [net.minecraftforge.registries.ForgeRegistry/REGISTRIES]: Registry minecraft:item Sync: FROZEN -> ACTIVE +[30Dec2025 13:43:16.135] [modloading-worker-0/DEBUG] [net.minecraftforge.registries.ForgeRegistry/REGISTRIES]: Registry minecraft:mob_effect Sync: FROZEN -> ACTIVE +[30Dec2025 13:43:16.135] [modloading-worker-0/DEBUG] [net.minecraftforge.registries.ForgeRegistry/REGISTRIES]: Registry minecraft:sound_event Sync: FROZEN -> ACTIVE +[30Dec2025 13:43:16.144] [modloading-worker-0/DEBUG] [net.minecraftforge.registries.ForgeRegistry/REGISTRIES]: Registry minecraft:potion Sync: FROZEN -> ACTIVE +[30Dec2025 13:43:16.144] [modloading-worker-0/DEBUG] [net.minecraftforge.registries.ForgeRegistry/REGISTRIES]: Registry minecraft:enchantment Sync: FROZEN -> ACTIVE +[30Dec2025 13:43:16.144] [modloading-worker-0/DEBUG] [net.minecraftforge.registries.ForgeRegistry/REGISTRIES]: Registry minecraft:entity_type Sync: FROZEN -> ACTIVE +[30Dec2025 13:43:16.145] [modloading-worker-0/DEBUG] [net.minecraftforge.registries.ForgeRegistry/REGISTRIES]: Registry minecraft:block_entity_type Sync: FROZEN -> ACTIVE +[30Dec2025 13:43:16.146] [modloading-worker-0/DEBUG] [net.minecraftforge.registries.ForgeRegistry/REGISTRIES]: Registry minecraft:particle_type Sync: FROZEN -> ACTIVE +[30Dec2025 13:43:16.147] [modloading-worker-0/DEBUG] [net.minecraftforge.registries.ForgeRegistry/REGISTRIES]: Registry minecraft:menu Sync: FROZEN -> ACTIVE +[30Dec2025 13:43:16.147] [modloading-worker-0/DEBUG] [net.minecraftforge.registries.ForgeRegistry/REGISTRIES]: Registry minecraft:painting_variant Sync: FROZEN -> ACTIVE +[30Dec2025 13:43:16.147] [modloading-worker-0/DEBUG] [net.minecraftforge.registries.ForgeRegistry/REGISTRIES]: Registry minecraft:recipe_type Sync: FROZEN -> ACTIVE +[30Dec2025 13:43:16.147] [modloading-worker-0/DEBUG] [net.minecraftforge.registries.ForgeRegistry/REGISTRIES]: Registry minecraft:recipe_serializer Sync: FROZEN -> ACTIVE +[30Dec2025 13:43:16.148] [modloading-worker-0/DEBUG] [net.minecraftforge.registries.ForgeRegistry/REGISTRIES]: Registry minecraft:attribute Sync: FROZEN -> ACTIVE +[30Dec2025 13:43:16.148] [modloading-worker-0/DEBUG] [net.minecraftforge.registries.ForgeRegistry/REGISTRIES]: Registry minecraft:stat_type Sync: FROZEN -> ACTIVE +[30Dec2025 13:43:16.148] [modloading-worker-0/DEBUG] [net.minecraftforge.registries.ForgeRegistry/REGISTRIES]: Registry minecraft:command_argument_type Sync: FROZEN -> ACTIVE +[30Dec2025 13:43:16.148] [modloading-worker-0/DEBUG] [net.minecraftforge.registries.ForgeRegistry/REGISTRIES]: Registry minecraft:villager_profession Sync: FROZEN -> ACTIVE +[30Dec2025 13:43:16.149] [modloading-worker-0/DEBUG] [net.minecraftforge.registries.ForgeRegistry/REGISTRIES]: Registry minecraft:point_of_interest_type Sync: FROZEN -> ACTIVE +[30Dec2025 13:43:16.151] [modloading-worker-0/DEBUG] [net.minecraftforge.registries.ForgeRegistry/REGISTRIES]: Registry minecraft:memory_module_type Sync: FROZEN -> ACTIVE +[30Dec2025 13:43:16.151] [modloading-worker-0/DEBUG] [net.minecraftforge.registries.ForgeRegistry/REGISTRIES]: Registry minecraft:sensor_type Sync: FROZEN -> ACTIVE +[30Dec2025 13:43:16.152] [modloading-worker-0/DEBUG] [net.minecraftforge.registries.ForgeRegistry/REGISTRIES]: Registry minecraft:schedule Sync: FROZEN -> ACTIVE +[30Dec2025 13:43:16.152] [modloading-worker-0/DEBUG] [net.minecraftforge.registries.ForgeRegistry/REGISTRIES]: Registry minecraft:activity Sync: FROZEN -> ACTIVE +[30Dec2025 13:43:16.153] [modloading-worker-0/DEBUG] [net.minecraftforge.registries.ForgeRegistry/REGISTRIES]: Registry minecraft:worldgen/carver Sync: FROZEN -> ACTIVE +[30Dec2025 13:43:16.153] [modloading-worker-0/DEBUG] [net.minecraftforge.registries.ForgeRegistry/REGISTRIES]: Registry minecraft:worldgen/feature Sync: FROZEN -> ACTIVE +[30Dec2025 13:43:16.153] [modloading-worker-0/DEBUG] [net.minecraftforge.registries.ForgeRegistry/REGISTRIES]: Registry minecraft:chunk_status Sync: FROZEN -> ACTIVE +[30Dec2025 13:43:16.153] [modloading-worker-0/DEBUG] [net.minecraftforge.registries.ForgeRegistry/REGISTRIES]: Registry minecraft:worldgen/block_state_provider_type Sync: FROZEN -> ACTIVE +[30Dec2025 13:43:16.154] [modloading-worker-0/DEBUG] [net.minecraftforge.registries.ForgeRegistry/REGISTRIES]: Registry minecraft:worldgen/foliage_placer_type Sync: FROZEN -> ACTIVE +[30Dec2025 13:43:16.154] [modloading-worker-0/DEBUG] [net.minecraftforge.registries.ForgeRegistry/REGISTRIES]: Registry minecraft:worldgen/tree_decorator_type Sync: FROZEN -> ACTIVE +[30Dec2025 13:43:16.154] [modloading-worker-0/DEBUG] [net.minecraftforge.registries.ForgeRegistry/REGISTRIES]: Registry minecraft:worldgen/biome Sync: FROZEN -> ACTIVE +[30Dec2025 13:43:16.154] [modloading-worker-0/DEBUG] [net.minecraftforge.registries.ForgeRegistry/REGISTRIES]: Registry forge:entity_data_serializers Sync: FROZEN -> ACTIVE +[30Dec2025 13:43:16.154] [modloading-worker-0/DEBUG] [net.minecraftforge.registries.ForgeRegistry/REGISTRIES]: Registry forge:global_loot_modifier_serializers Sync: FROZEN -> ACTIVE +[30Dec2025 13:43:16.154] [modloading-worker-0/DEBUG] [net.minecraftforge.registries.ForgeRegistry/REGISTRIES]: Registry forge:biome_modifier_serializers Sync: FROZEN -> ACTIVE +[30Dec2025 13:43:16.154] [modloading-worker-0/DEBUG] [net.minecraftforge.registries.ForgeRegistry/REGISTRIES]: Registry forge:fluid_type Sync: FROZEN -> ACTIVE +[30Dec2025 13:43:16.154] [modloading-worker-0/DEBUG] [net.minecraftforge.registries.ForgeRegistry/REGISTRIES]: Registry forge:structure_modifier_serializers Sync: FROZEN -> ACTIVE +[30Dec2025 13:43:16.154] [modloading-worker-0/DEBUG] [net.minecraftforge.registries.ForgeRegistry/REGISTRIES]: Registry forge:holder_set_type Sync: FROZEN -> ACTIVE +[30Dec2025 13:43:16.154] [modloading-worker-0/DEBUG] [net.minecraftforge.registries.ForgeRegistry/REGISTRIES]: Registry forge:display_contexts Sync: FROZEN -> ACTIVE +[30Dec2025 13:43:17.118] [modloading-worker-0/DEBUG] [net.minecraftforge.registries.GameData/REGISTRIES]: All registries frozen +[30Dec2025 13:43:17.166] [Render thread/DEBUG] [net.minecraftforge.common.ForgeI18n/CORE]: Loading I18N data entries: 6452 +[30Dec2025 13:43:17.197] [Render thread/WARN] [net.minecraft.client.sounds.SoundEngine/]: Missing sound for event: minecraft:item.goat_horn.play +[30Dec2025 13:43:17.198] [Render thread/WARN] [net.minecraft.client.sounds.SoundEngine/]: Missing sound for event: minecraft:entity.goat.screaming.horn_break +[30Dec2025 13:43:17.275] [Render thread/INFO] [com.mojang.blaze3d.audio.Library/]: OpenAL initialized on device OpenAL Soft on Casque (Arctis 7 Game) +[30Dec2025 13:43:17.275] [Render thread/INFO] [net.minecraft.client.sounds.SoundEngine/SOUNDS]: Sound engine started +[30Dec2025 13:43:17.408] [Render thread/INFO] [net.minecraft.client.renderer.texture.TextureAtlas/]: Created: 1024x512x2 minecraft:textures/atlas/blocks.png-atlas +[30Dec2025 13:43:17.414] [Render thread/INFO] [net.minecraft.client.renderer.texture.TextureAtlas/]: Created: 256x256x2 minecraft:textures/atlas/signs.png-atlas +[30Dec2025 13:43:17.414] [Render thread/INFO] [net.minecraft.client.renderer.texture.TextureAtlas/]: Created: 512x512x2 minecraft:textures/atlas/banner_patterns.png-atlas +[30Dec2025 13:43:17.415] [Render thread/INFO] [net.minecraft.client.renderer.texture.TextureAtlas/]: Created: 512x512x2 minecraft:textures/atlas/shield_patterns.png-atlas +[30Dec2025 13:43:17.416] [Render thread/INFO] [net.minecraft.client.renderer.texture.TextureAtlas/]: Created: 1024x1024x2 minecraft:textures/atlas/armor_trims.png-atlas +[30Dec2025 13:43:17.418] [Render thread/INFO] [net.minecraft.client.renderer.texture.TextureAtlas/]: Created: 256x256x2 minecraft:textures/atlas/chest.png-atlas +[30Dec2025 13:43:17.420] [Render thread/INFO] [net.minecraft.client.renderer.texture.TextureAtlas/]: Created: 128x64x2 minecraft:textures/atlas/decorated_pot.png-atlas +[30Dec2025 13:43:17.420] [Render thread/INFO] [net.minecraft.client.renderer.texture.TextureAtlas/]: Created: 512x256x2 minecraft:textures/atlas/beds.png-atlas +[30Dec2025 13:43:17.420] [Render thread/INFO] [net.minecraft.client.renderer.texture.TextureAtlas/]: Created: 512x256x2 minecraft:textures/atlas/shulker_boxes.png-atlas +[30Dec2025 13:43:17.639] [Render thread/WARN] [net.minecraft.client.renderer.ShaderInstance/]: Shader rendertype_entity_translucent_emissive could not find sampler named Sampler2 in the specified shader program. +[30Dec2025 13:43:17.690] [Render thread/INFO] [net.minecraft.client.renderer.texture.TextureAtlas/]: Created: 256x256x0 minecraft:textures/atlas/particles.png-atlas +[30Dec2025 13:43:17.692] [Render thread/INFO] [net.minecraft.client.renderer.texture.TextureAtlas/]: Created: 256x256x0 minecraft:textures/atlas/paintings.png-atlas +[30Dec2025 13:43:17.692] [Render thread/INFO] [net.minecraft.client.renderer.texture.TextureAtlas/]: Created: 128x128x0 minecraft:textures/atlas/mob_effects.png-atlas +[30Dec2025 13:43:18.190] [Realms Notification Availability checker #1/INFO] [com.mojang.realmsclient.client.RealmsClient/]: Could not authorize you against Realms server: java.lang.RuntimeException: Failed to parse into SignedJWT: 0 +[30Dec2025 13:43:20.773] [Render thread/INFO] [net.minecraftforge.registries.GameData/REGISTRIES]: Injecting existing registry data into this CLIENT instance +[30Dec2025 13:43:20.836] [Render thread/DEBUG] [net.minecraftforge.registries.ForgeRegistry/REGISTRIES]: Registry minecraft:block Sync: ACTIVE -> STAGING +[30Dec2025 13:43:20.841] [Render thread/DEBUG] [net.minecraftforge.registries.ForgeRegistry/REGISTRIES]: Registry minecraft:fluid Sync: ACTIVE -> STAGING +[30Dec2025 13:43:20.842] [Render thread/DEBUG] [net.minecraftforge.registries.ForgeRegistry/REGISTRIES]: Registry minecraft:item Sync: ACTIVE -> STAGING +[30Dec2025 13:43:20.847] [Render thread/DEBUG] [net.minecraftforge.registries.ForgeRegistry/REGISTRIES]: Registry minecraft:mob_effect Sync: ACTIVE -> STAGING +[30Dec2025 13:43:20.847] [Render thread/DEBUG] [net.minecraftforge.registries.ForgeRegistry/REGISTRIES]: Registry minecraft:sound_event Sync: ACTIVE -> STAGING +[30Dec2025 13:43:20.853] [Render thread/DEBUG] [net.minecraftforge.registries.ForgeRegistry/REGISTRIES]: Registry minecraft:potion Sync: ACTIVE -> STAGING +[30Dec2025 13:43:20.854] [Render thread/DEBUG] [net.minecraftforge.registries.ForgeRegistry/REGISTRIES]: Registry minecraft:enchantment Sync: ACTIVE -> STAGING +[30Dec2025 13:43:20.854] [Render thread/DEBUG] [net.minecraftforge.registries.ForgeRegistry/REGISTRIES]: Registry minecraft:entity_type Sync: ACTIVE -> STAGING +[30Dec2025 13:43:20.854] [Render thread/DEBUG] [net.minecraftforge.registries.ForgeRegistry/REGISTRIES]: Registry minecraft:block_entity_type Sync: ACTIVE -> STAGING +[30Dec2025 13:43:20.856] [Render thread/DEBUG] [net.minecraftforge.registries.ForgeRegistry/REGISTRIES]: Registry minecraft:particle_type Sync: ACTIVE -> STAGING +[30Dec2025 13:43:20.856] [Render thread/DEBUG] [net.minecraftforge.registries.ForgeRegistry/REGISTRIES]: Registry minecraft:menu Sync: ACTIVE -> STAGING +[30Dec2025 13:43:20.856] [Render thread/DEBUG] [net.minecraftforge.registries.ForgeRegistry/REGISTRIES]: Registry minecraft:painting_variant Sync: ACTIVE -> STAGING +[30Dec2025 13:43:20.856] [Render thread/DEBUG] [net.minecraftforge.registries.ForgeRegistry/REGISTRIES]: Registry minecraft:recipe_type Sync: ACTIVE -> STAGING +[30Dec2025 13:43:20.856] [Render thread/DEBUG] [net.minecraftforge.registries.ForgeRegistry/REGISTRIES]: Registry minecraft:recipe_serializer Sync: ACTIVE -> STAGING +[30Dec2025 13:43:20.856] [Render thread/DEBUG] [net.minecraftforge.registries.ForgeRegistry/REGISTRIES]: Registry minecraft:attribute Sync: ACTIVE -> STAGING +[30Dec2025 13:43:20.856] [Render thread/DEBUG] [net.minecraftforge.registries.ForgeRegistry/REGISTRIES]: Registry minecraft:stat_type Sync: ACTIVE -> STAGING +[30Dec2025 13:43:20.856] [Render thread/DEBUG] [net.minecraftforge.registries.ForgeRegistry/REGISTRIES]: Registry minecraft:command_argument_type Sync: ACTIVE -> STAGING +[30Dec2025 13:43:20.856] [Render thread/DEBUG] [net.minecraftforge.registries.ForgeRegistry/REGISTRIES]: Registry minecraft:villager_profession Sync: ACTIVE -> STAGING +[30Dec2025 13:43:20.856] [Render thread/DEBUG] [net.minecraftforge.registries.ForgeRegistry/REGISTRIES]: Registry minecraft:point_of_interest_type Sync: ACTIVE -> STAGING +[30Dec2025 13:43:20.858] [Render thread/DEBUG] [net.minecraftforge.registries.ForgeRegistry/REGISTRIES]: Registry minecraft:memory_module_type Sync: ACTIVE -> STAGING +[30Dec2025 13:43:20.859] [Render thread/DEBUG] [net.minecraftforge.registries.ForgeRegistry/REGISTRIES]: Registry minecraft:sensor_type Sync: ACTIVE -> STAGING +[30Dec2025 13:43:20.859] [Render thread/DEBUG] [net.minecraftforge.registries.ForgeRegistry/REGISTRIES]: Registry minecraft:schedule Sync: ACTIVE -> STAGING +[30Dec2025 13:43:20.859] [Render thread/DEBUG] [net.minecraftforge.registries.ForgeRegistry/REGISTRIES]: Registry minecraft:activity Sync: ACTIVE -> STAGING +[30Dec2025 13:43:20.860] [Render thread/DEBUG] [net.minecraftforge.registries.ForgeRegistry/REGISTRIES]: Registry minecraft:worldgen/carver Sync: ACTIVE -> STAGING +[30Dec2025 13:43:20.860] [Render thread/DEBUG] [net.minecraftforge.registries.ForgeRegistry/REGISTRIES]: Registry minecraft:worldgen/feature Sync: ACTIVE -> STAGING +[30Dec2025 13:43:20.860] [Render thread/DEBUG] [net.minecraftforge.registries.ForgeRegistry/REGISTRIES]: Registry minecraft:chunk_status Sync: ACTIVE -> STAGING +[30Dec2025 13:43:20.860] [Render thread/DEBUG] [net.minecraftforge.registries.ForgeRegistry/REGISTRIES]: Registry minecraft:worldgen/block_state_provider_type Sync: ACTIVE -> STAGING +[30Dec2025 13:43:20.860] [Render thread/DEBUG] [net.minecraftforge.registries.ForgeRegistry/REGISTRIES]: Registry minecraft:worldgen/foliage_placer_type Sync: ACTIVE -> STAGING +[30Dec2025 13:43:20.860] [Render thread/DEBUG] [net.minecraftforge.registries.ForgeRegistry/REGISTRIES]: Registry minecraft:worldgen/tree_decorator_type Sync: ACTIVE -> STAGING +[30Dec2025 13:43:20.861] [Render thread/DEBUG] [net.minecraftforge.registries.ForgeRegistry/REGISTRIES]: Registry minecraft:worldgen/biome Sync: ACTIVE -> STAGING +[30Dec2025 13:43:20.861] [Render thread/DEBUG] [net.minecraftforge.registries.ForgeRegistry/REGISTRIES]: Registry forge:entity_data_serializers Sync: ACTIVE -> STAGING +[30Dec2025 13:43:20.861] [Render thread/DEBUG] [net.minecraftforge.registries.ForgeRegistry/REGISTRIES]: Registry forge:global_loot_modifier_serializers Sync: ACTIVE -> STAGING +[30Dec2025 13:43:20.861] [Render thread/DEBUG] [net.minecraftforge.registries.ForgeRegistry/REGISTRIES]: Registry forge:biome_modifier_serializers Sync: ACTIVE -> STAGING +[30Dec2025 13:43:20.861] [Render thread/DEBUG] [net.minecraftforge.registries.ForgeRegistry/REGISTRIES]: Registry forge:fluid_type Sync: ACTIVE -> STAGING +[30Dec2025 13:43:20.861] [Render thread/DEBUG] [net.minecraftforge.registries.ForgeRegistry/REGISTRIES]: Registry forge:structure_modifier_serializers Sync: ACTIVE -> STAGING +[30Dec2025 13:43:20.861] [Render thread/DEBUG] [net.minecraftforge.registries.ForgeRegistry/REGISTRIES]: Registry forge:holder_set_type Sync: ACTIVE -> STAGING +[30Dec2025 13:43:20.861] [Render thread/DEBUG] [net.minecraftforge.registries.ForgeRegistry/REGISTRIES]: Registry forge:display_contexts Sync: ACTIVE -> STAGING +[30Dec2025 13:43:21.204] [Render thread/DEBUG] [net.minecraftforge.registries.ObjectHolderRegistry/REGISTRIES]: Applying holder lookups +[30Dec2025 13:43:21.207] [Render thread/DEBUG] [net.minecraftforge.registries.ObjectHolderRegistry/REGISTRIES]: Holder lookups applied +[30Dec2025 13:43:21.247] [Render thread/DEBUG] [net.minecraftforge.server.ServerLifecycleHooks/CORE]: Generating PackInfo named mod:forge for mod file / +[30Dec2025 13:43:21.248] [Render thread/DEBUG] [net.minecraftforge.server.ServerLifecycleHooks/CORE]: Generating PackInfo named mod:custom_ore_gen for mod file C:\Users\polar\Nextcloud\DocumentsRoman\mods_mc\custom_ore_gem\build\resources\main +[30Dec2025 13:43:22.028] [Render thread/DEBUG] [net.minecraftforge.coremod.transformer.CoreModBaseTransformer/COREMOD]: Transforming net/minecraft/server/commands/SummonCommand +[30Dec2025 13:43:22.424] [Worker-Main-11/DEBUG] [net.minecraftforge.coremod.transformer.CoreModBaseTransformer/COREMOD]: Transforming net/minecraft/world/entity/raid/Raid +[30Dec2025 13:43:22.813] [Render thread/INFO] [net.minecraft.world.item.crafting.RecipeManager/]: Loaded 7 recipes +[30Dec2025 13:43:22.909] [Render thread/INFO] [net.minecraft.advancements.AdvancementList/]: Loaded 1271 advancements +[30Dec2025 13:43:23.218] [Render thread/DEBUG] [net.minecraftforge.common.ForgeHooks/WP]: Gathering id map for writing to world save New World +[30Dec2025 13:43:23.235] [Render thread/DEBUG] [net.minecraftforge.common.ForgeHooks/WP]: ID Map collection complete New World +[30Dec2025 13:43:23.294] [Server thread/INFO] [net.minecraft.client.server.IntegratedServer/]: Starting integrated minecraft server version 1.20.1 +[30Dec2025 13:43:23.295] [Server thread/INFO] [net.minecraft.server.MinecraftServer/]: Generating keypair +[30Dec2025 13:43:23.385] [Server thread/DEBUG] [net.minecraftforge.fml.config.ConfigTracker/CONFIG]: Loading configs type SERVER +[30Dec2025 13:43:23.386] [Server thread/DEBUG] [net.minecraftforge.fml.config.ConfigFileTypeHandler/CONFIG]: Built TOML config for .\saves\New World\serverconfig\forge-server.toml +[30Dec2025 13:43:23.387] [Server thread/DEBUG] [net.minecraftforge.fml.config.ConfigFileTypeHandler/CONFIG]: Loaded TOML config file .\saves\New World\serverconfig\forge-server.toml +[30Dec2025 13:43:23.388] [Server thread/DEBUG] [net.minecraftforge.fml.config.ConfigFileTypeHandler/CONFIG]: Watching TOML config file .\saves\New World\serverconfig\forge-server.toml for changes +[30Dec2025 13:43:23.388] [Server thread/DEBUG] [net.minecraftforge.common.ForgeConfig/FORGEMOD]: Loaded forge config file forge-server.toml +[30Dec2025 13:43:23.391] [Thread-3/DEBUG] [net.minecraftforge.fml.config.ConfigFileTypeHandler/CONFIG]: Config file forge-server.toml changed, sending notifies +[30Dec2025 13:43:23.391] [Thread-3/DEBUG] [net.minecraftforge.common.ForgeConfig/FORGEMOD]: Forge config just got changed on the file system! +[30Dec2025 13:43:23.456] [Server thread/DEBUG] [net.minecraftforge.coremod.transformer.CoreModBaseTransformer/COREMOD]: Transforming net/minecraft/world/level/levelgen/PhantomSpawner +[30Dec2025 13:43:23.461] [Server thread/DEBUG] [net.minecraftforge.coremod.transformer.CoreModBaseTransformer/COREMOD]: Transforming net/minecraft/world/level/levelgen/PatrolSpawner +[30Dec2025 13:43:23.465] [Server thread/DEBUG] [net.minecraftforge.coremod.transformer.CoreModBaseTransformer/COREMOD]: Transforming net/minecraft/world/entity/npc/CatSpawner +[30Dec2025 13:43:23.470] [Server thread/DEBUG] [net.minecraftforge.coremod.transformer.CoreModBaseTransformer/COREMOD]: Transforming net/minecraft/world/entity/ai/village/VillageSiege +[30Dec2025 13:43:24.432] [Server thread/INFO] [net.minecraft.server.MinecraftServer/]: Preparing start region for dimension minecraft:overworld +[30Dec2025 13:43:25.346] [Server thread/DEBUG] [net.minecraftforge.coremod.transformer.CoreModBaseTransformer/COREMOD]: Transforming net/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate +[30Dec2025 13:43:26.427] [Render thread/INFO] [net.minecraft.server.level.progress.LoggerChunkProgressListener/]: Preparing spawn area: 0% +[30Dec2025 13:43:26.427] [Render thread/INFO] [net.minecraft.server.level.progress.LoggerChunkProgressListener/]: Preparing spawn area: 0% +[30Dec2025 13:43:26.427] [Render thread/INFO] [net.minecraft.server.level.progress.LoggerChunkProgressListener/]: Preparing spawn area: 0% +[30Dec2025 13:43:26.427] [Render thread/INFO] [net.minecraft.server.level.progress.LoggerChunkProgressListener/]: Preparing spawn area: 0% +[30Dec2025 13:43:26.467] [Render thread/INFO] [net.minecraft.server.level.progress.LoggerChunkProgressListener/]: Preparing spawn area: 0% +[30Dec2025 13:43:26.971] [Render thread/INFO] [net.minecraft.server.level.progress.LoggerChunkProgressListener/]: Preparing spawn area: 21% +[30Dec2025 13:43:27.492] [Render thread/INFO] [net.minecraft.server.level.progress.LoggerChunkProgressListener/]: Preparing spawn area: 90% +[30Dec2025 13:43:27.498] [Server thread/INFO] [net.minecraftforge.server.permission.PermissionAPI/]: Successfully initialized permission handler forge:default_handler +[30Dec2025 13:43:27.511] [Render thread/INFO] [net.minecraft.server.level.progress.LoggerChunkProgressListener/]: Time elapsed: 3059 ms +[30Dec2025 13:43:27.559] [Server thread/DEBUG] [io.netty.buffer.AbstractByteBuf/]: -Dio.netty.buffer.checkAccessible: true +[30Dec2025 13:43:27.559] [Server thread/DEBUG] [io.netty.buffer.AbstractByteBuf/]: -Dio.netty.buffer.checkBounds: true +[30Dec2025 13:43:27.559] [Server thread/DEBUG] [io.netty.util.ResourceLeakDetectorFactory/]: Loaded default ResourceLeakDetector: io.netty.util.ResourceLeakDetector@e3ed8cb +[30Dec2025 13:43:27.579] [Server thread/DEBUG] [net.minecraftforge.coremod.transformer.CoreModBaseTransformer/COREMOD]: Transforming net/minecraft/world/level/NaturalSpawner +[30Dec2025 13:43:27.623] [Server thread/INFO] [net.minecraft.client.server.IntegratedServer/]: Changing view distance to 5, from 10 +[30Dec2025 13:43:27.625] [Server thread/INFO] [net.minecraft.client.server.IntegratedServer/]: Changing simulation distance to 12, from 0 +[30Dec2025 13:43:27.649] [Render thread/DEBUG] [io.netty.channel.MultithreadEventLoopGroup/]: -Dio.netty.eventLoopThreads: 32 +[30Dec2025 13:43:27.678] [Render thread/DEBUG] [io.netty.util.internal.InternalThreadLocalMap/]: -Dio.netty.threadLocalMap.stringBuilder.initialSize: 1024 +[30Dec2025 13:43:27.678] [Render thread/DEBUG] [io.netty.util.internal.InternalThreadLocalMap/]: -Dio.netty.threadLocalMap.stringBuilder.maxSize: 4096 +[30Dec2025 13:43:27.701] [Render thread/DEBUG] [io.netty.channel.nio.NioEventLoop/]: -Dio.netty.noKeySetOptimization: false +[30Dec2025 13:43:27.701] [Render thread/DEBUG] [io.netty.channel.nio.NioEventLoop/]: -Dio.netty.selectorAutoRebuildThreshold: 512 +[30Dec2025 13:43:27.713] [Render thread/DEBUG] [io.netty.util.internal.PlatformDependent/]: org.jctools-core.MpscChunkedArrayQueue: available +[30Dec2025 13:43:27.803] [Render thread/DEBUG] [io.netty.channel.DefaultChannelId/]: -Dio.netty.processId: 39264 (auto-detected) +[30Dec2025 13:43:27.806] [Render thread/WARN] [io.netty.util.internal.SystemPropertyUtil/]: Unable to parse the boolean system property 'java.net.preferIPv6Addresses':system - using the default value: false +[30Dec2025 13:43:27.806] [Render thread/DEBUG] [io.netty.util.NetUtil/]: -Djava.net.preferIPv4Stack: false +[30Dec2025 13:43:27.806] [Render thread/DEBUG] [io.netty.util.NetUtil/]: -Djava.net.preferIPv6Addresses: false +[30Dec2025 13:43:27.833] [Render thread/DEBUG] [io.netty.util.NetUtilInitializations/]: Loopback interface: lo (Software Loopback Interface 1, 127.0.0.1) +[30Dec2025 13:43:27.840] [Render thread/DEBUG] [io.netty.util.NetUtil/]: Failed to get SOMAXCONN from sysctl and file \proc\sys\net\core\somaxconn. Default: 200 +[30Dec2025 13:43:27.953] [Render thread/DEBUG] [io.netty.channel.DefaultChannelId/]: -Dio.netty.machineId: 3c:e9:f7:ff:fe:61:6a:93 (auto-detected) +[30Dec2025 13:43:28.050] [Render thread/DEBUG] [io.netty.buffer.PooledByteBufAllocator/]: -Dio.netty.allocator.numHeapArenas: 32 +[30Dec2025 13:43:28.051] [Render thread/DEBUG] [io.netty.buffer.PooledByteBufAllocator/]: -Dio.netty.allocator.numDirectArenas: 32 +[30Dec2025 13:43:28.051] [Render thread/DEBUG] [io.netty.buffer.PooledByteBufAllocator/]: -Dio.netty.allocator.pageSize: 8192 +[30Dec2025 13:43:28.051] [Render thread/DEBUG] [io.netty.buffer.PooledByteBufAllocator/]: -Dio.netty.allocator.maxOrder: 9 +[30Dec2025 13:43:28.051] [Render thread/DEBUG] [io.netty.buffer.PooledByteBufAllocator/]: -Dio.netty.allocator.chunkSize: 4194304 +[30Dec2025 13:43:28.051] [Render thread/DEBUG] [io.netty.buffer.PooledByteBufAllocator/]: -Dio.netty.allocator.smallCacheSize: 256 +[30Dec2025 13:43:28.051] [Render thread/DEBUG] [io.netty.buffer.PooledByteBufAllocator/]: -Dio.netty.allocator.normalCacheSize: 64 +[30Dec2025 13:43:28.051] [Render thread/DEBUG] [io.netty.buffer.PooledByteBufAllocator/]: -Dio.netty.allocator.maxCachedBufferCapacity: 32768 +[30Dec2025 13:43:28.051] [Render thread/DEBUG] [io.netty.buffer.PooledByteBufAllocator/]: -Dio.netty.allocator.cacheTrimInterval: 8192 +[30Dec2025 13:43:28.051] [Render thread/DEBUG] [io.netty.buffer.PooledByteBufAllocator/]: -Dio.netty.allocator.cacheTrimIntervalMillis: 0 +[30Dec2025 13:43:28.051] [Render thread/DEBUG] [io.netty.buffer.PooledByteBufAllocator/]: -Dio.netty.allocator.useCacheForAllThreads: false +[30Dec2025 13:43:28.051] [Render thread/DEBUG] [io.netty.buffer.PooledByteBufAllocator/]: -Dio.netty.allocator.maxCachedByteBuffersPerChunk: 1023 +[30Dec2025 13:43:28.109] [Render thread/DEBUG] [io.netty.buffer.ByteBufUtil/]: -Dio.netty.allocator.type: pooled +[30Dec2025 13:43:28.109] [Render thread/DEBUG] [io.netty.buffer.ByteBufUtil/]: -Dio.netty.threadLocalDirectBufferSize: 0 +[30Dec2025 13:43:28.110] [Render thread/DEBUG] [io.netty.buffer.ByteBufUtil/]: -Dio.netty.maxThreadLocalCharBufferSize: 16384 +[30Dec2025 13:43:28.185] [Netty Local Client IO #0/DEBUG] [net.minecraftforge.network.HandshakeHandler/FMLHANDSHAKE]: Starting local connection. +[30Dec2025 13:43:28.551] [Netty Local Client IO #0/DEBUG] [io.netty.util.Recycler/]: -Dio.netty.recycler.maxCapacityPerThread: 4096 +[30Dec2025 13:43:28.551] [Netty Local Client IO #0/DEBUG] [io.netty.util.Recycler/]: -Dio.netty.recycler.ratio: 8 +[30Dec2025 13:43:28.551] [Netty Local Client IO #0/DEBUG] [io.netty.util.Recycler/]: -Dio.netty.recycler.chunkSize: 32 +[30Dec2025 13:43:28.551] [Netty Local Client IO #0/DEBUG] [io.netty.util.Recycler/]: -Dio.netty.recycler.blocking: false +[30Dec2025 13:43:28.589] [Netty Server IO #1/DEBUG] [net.minecraftforge.network.HandshakeHandler/FMLHANDSHAKE]: Starting local connection. +[30Dec2025 13:43:28.623] [Server thread/DEBUG] [net.minecraftforge.network.HandshakeHandler/FMLHANDSHAKE]: Sending ticking packet info 'net.minecraftforge.network.HandshakeMessages$S2CModData' to 'fml:handshake' sequence 0 +[30Dec2025 13:43:28.638] [Netty Local Client IO #0/DEBUG] [net.minecraftforge.network.LoginWrapper/FMLHANDSHAKE]: Recieved login wrapper packet event for channel fml:handshake with index 0 +[30Dec2025 13:43:28.665] [Server thread/DEBUG] [net.minecraftforge.network.HandshakeHandler/FMLHANDSHAKE]: Sending ticking packet info 'net.minecraftforge.network.HandshakeMessages$S2CModList' to 'fml:handshake' sequence 1 +[30Dec2025 13:43:28.665] [Netty Local Client IO #0/DEBUG] [net.minecraftforge.network.LoginWrapper/FMLHANDSHAKE]: Recieved login wrapper packet event for channel fml:handshake with index 1 +[30Dec2025 13:43:28.667] [Netty Local Client IO #0/DEBUG] [net.minecraftforge.network.HandshakeHandler/FMLHANDSHAKE]: Logging into server with mod list [minecraft, forge, custom_ore_gen] +[30Dec2025 13:43:28.670] [Netty Local Client IO #0/DEBUG] [net.minecraftforge.network.NetworkRegistry/NETREGISTRY]: Channel 'fml:loginwrapper' : Version test of 'FML3' from server : ACCEPTED +[30Dec2025 13:43:28.670] [Netty Local Client IO #0/DEBUG] [net.minecraftforge.network.NetworkRegistry/NETREGISTRY]: Channel 'forge:tier_sorting' : Version test of '1.0' from server : ACCEPTED +[30Dec2025 13:43:28.672] [Netty Local Client IO #0/DEBUG] [net.minecraftforge.network.NetworkRegistry/NETREGISTRY]: Channel 'fml:handshake' : Version test of 'FML3' from server : ACCEPTED +[30Dec2025 13:43:28.672] [Netty Local Client IO #0/DEBUG] [net.minecraftforge.network.NetworkRegistry/NETREGISTRY]: Channel 'minecraft:unregister' : Version test of 'FML3' from server : ACCEPTED +[30Dec2025 13:43:28.672] [Netty Local Client IO #0/DEBUG] [net.minecraftforge.network.NetworkRegistry/NETREGISTRY]: Channel 'custom_ore_gen:custom_ore_gen' : Version test of '1' from server : ACCEPTED +[30Dec2025 13:43:28.672] [Netty Local Client IO #0/DEBUG] [net.minecraftforge.network.NetworkRegistry/NETREGISTRY]: Channel 'fml:play' : Version test of 'FML3' from server : ACCEPTED +[30Dec2025 13:43:28.672] [Netty Local Client IO #0/DEBUG] [net.minecraftforge.network.NetworkRegistry/NETREGISTRY]: Channel 'minecraft:register' : Version test of 'FML3' from server : ACCEPTED +[30Dec2025 13:43:28.672] [Netty Local Client IO #0/DEBUG] [net.minecraftforge.network.NetworkRegistry/NETREGISTRY]: Channel 'forge:split' : Version test of '1.1' from server : ACCEPTED +[30Dec2025 13:43:28.672] [Netty Local Client IO #0/DEBUG] [net.minecraftforge.network.NetworkRegistry/NETREGISTRY]: Accepting channel list from server +[30Dec2025 13:43:28.676] [Netty Local Client IO #0/DEBUG] [net.minecraftforge.network.LoginWrapper/FMLHANDSHAKE]: Dispatching wrapped packet reply for channel fml:handshake with index 1 +[30Dec2025 13:43:28.677] [Netty Local Client IO #0/DEBUG] [net.minecraftforge.network.HandshakeHandler/FMLHANDSHAKE]: Accepted server connection +[30Dec2025 13:43:28.677] [Netty Server IO #1/DEBUG] [net.minecraftforge.network.LoginWrapper/FMLHANDSHAKE]: Recieved login wrapper packet event for channel fml:handshake with index 1 +[30Dec2025 13:43:28.677] [Netty Server IO #1/DEBUG] [net.minecraftforge.network.HandshakeHandler/FMLHANDSHAKE]: Received client indexed reply 1 of type net.minecraftforge.network.HandshakeMessages$C2SModListReply +[30Dec2025 13:43:28.677] [Netty Server IO #1/DEBUG] [net.minecraftforge.network.HandshakeHandler/FMLHANDSHAKE]: Received client connection with modlist [minecraft, forge, custom_ore_gen] +[30Dec2025 13:43:28.678] [Netty Local Client IO #0/DEBUG] [net.minecraftforge.network.HandshakeHandler/REGISTRIES]: Expecting 19 registries: [minecraft:command_argument_type, minecraft:recipe_serializer, minecraft:sound_event, minecraft:particle_type, minecraft:villager_profession, minecraft:item, minecraft:potion, minecraft:painting_variant, forge:fluid_type, minecraft:block_entity_type, forge:display_contexts, minecraft:block, forge:entity_data_serializers, minecraft:mob_effect, minecraft:stat_type, minecraft:menu, minecraft:enchantment, minecraft:fluid, minecraft:entity_type] +[30Dec2025 13:43:28.678] [Netty Server IO #1/DEBUG] [net.minecraftforge.network.NetworkRegistry/NETREGISTRY]: Channel 'fml:loginwrapper' : Version test of 'FML3' from client : ACCEPTED +[30Dec2025 13:43:28.678] [Netty Server IO #1/DEBUG] [net.minecraftforge.network.NetworkRegistry/NETREGISTRY]: Channel 'forge:tier_sorting' : Version test of '1.0' from client : ACCEPTED +[30Dec2025 13:43:28.678] [Netty Server IO #1/DEBUG] [net.minecraftforge.network.NetworkRegistry/NETREGISTRY]: Channel 'fml:handshake' : Version test of 'FML3' from client : ACCEPTED +[30Dec2025 13:43:28.678] [Netty Server IO #1/DEBUG] [net.minecraftforge.network.NetworkRegistry/NETREGISTRY]: Channel 'minecraft:unregister' : Version test of 'FML3' from client : ACCEPTED +[30Dec2025 13:43:28.678] [Netty Server IO #1/DEBUG] [net.minecraftforge.network.NetworkRegistry/NETREGISTRY]: Channel 'custom_ore_gen:custom_ore_gen' : Version test of '1' from client : ACCEPTED +[30Dec2025 13:43:28.678] [Netty Server IO #1/DEBUG] [net.minecraftforge.network.NetworkRegistry/NETREGISTRY]: Channel 'fml:play' : Version test of 'FML3' from client : ACCEPTED +[30Dec2025 13:43:28.678] [Netty Server IO #1/DEBUG] [net.minecraftforge.network.NetworkRegistry/NETREGISTRY]: Channel 'minecraft:register' : Version test of 'FML3' from client : ACCEPTED +[30Dec2025 13:43:28.678] [Netty Server IO #1/DEBUG] [net.minecraftforge.network.NetworkRegistry/NETREGISTRY]: Channel 'forge:split' : Version test of '1.1' from client : ACCEPTED +[30Dec2025 13:43:28.678] [Netty Server IO #1/DEBUG] [net.minecraftforge.network.NetworkRegistry/NETREGISTRY]: Accepting channel list from client +[30Dec2025 13:43:28.680] [Netty Server IO #1/DEBUG] [net.minecraftforge.network.HandshakeHandler/FMLHANDSHAKE]: Accepted client connection mod list +[30Dec2025 13:43:28.723] [Server thread/DEBUG] [net.minecraftforge.network.HandshakeHandler/FMLHANDSHAKE]: Sending ticking packet info 'Config forge-server.toml' to 'fml:handshake' sequence 2 +[30Dec2025 13:43:28.724] [Netty Local Client IO #0/DEBUG] [net.minecraftforge.network.LoginWrapper/FMLHANDSHAKE]: Recieved login wrapper packet event for channel fml:handshake with index 2 +[30Dec2025 13:43:28.724] [Netty Local Client IO #0/DEBUG] [net.minecraftforge.network.HandshakeHandler/FMLHANDSHAKE]: Received config sync from server +[30Dec2025 13:43:28.724] [Netty Local Client IO #0/DEBUG] [net.minecraftforge.network.LoginWrapper/FMLHANDSHAKE]: Dispatching wrapped packet reply for channel fml:handshake with index 2 +[30Dec2025 13:43:28.724] [Netty Server IO #1/DEBUG] [net.minecraftforge.network.LoginWrapper/FMLHANDSHAKE]: Recieved login wrapper packet event for channel fml:handshake with index 2 +[30Dec2025 13:43:28.725] [Netty Server IO #1/DEBUG] [net.minecraftforge.network.HandshakeHandler/FMLHANDSHAKE]: Received client indexed reply 2 of type net.minecraftforge.network.HandshakeMessages$C2SAcknowledge +[30Dec2025 13:43:28.725] [Netty Server IO #1/DEBUG] [net.minecraftforge.network.HandshakeHandler/FMLHANDSHAKE]: Received acknowledgement from client +[30Dec2025 13:43:28.770] [Server thread/DEBUG] [net.minecraftforge.network.HandshakeHandler/FMLHANDSHAKE]: Handshake complete! +[30Dec2025 13:43:28.832] [Netty Local Client IO #0/INFO] [net.minecraftforge.network.NetworkHooks/]: Connected to a modded server. +[30Dec2025 13:43:28.912] [Server thread/INFO] [net.minecraft.server.players.PlayerList/]: Dev[local:E:eb2f5935] logged in with entity id 200 at (12.784762099758028, 72.0, -0.7788851899228265) +[30Dec2025 13:43:29.028] [Server thread/INFO] [net.minecraft.server.MinecraftServer/]: Dev joined the game +[30Dec2025 13:43:29.591] [Render thread/INFO] [net.minecraft.advancements.AdvancementList/]: Loaded 16 advancements +[30Dec2025 13:43:53.371] [Render thread/DEBUG] [io.netty.util.internal.ThreadLocalRandom/]: -Dio.netty.initialSeedUniquifier: 0xd1754540a723402f +[30Dec2025 13:43:59.558] [Server thread/INFO] [net.minecraft.server.MinecraftServer/]: [Dev: Set own game mode to Survival Mode] +[30Dec2025 13:43:59.562] [Render thread/INFO] [net.minecraft.client.gui.components.ChatComponent/]: [System] [CHAT] Set own game mode to Survival Mode +[30Dec2025 13:44:12.909] [Server thread/INFO] [net.minecraft.server.MinecraftServer/]: Dev has made the advancement [Diamonds!] +[30Dec2025 13:44:12.910] [Render thread/INFO] [net.minecraft.client.gui.components.ChatComponent/]: [System] [CHAT] Dev has made the advancement [Diamonds!] +[30Dec2025 13:44:12.956] [Render thread/INFO] [net.minecraft.advancements.AdvancementList/]: Loaded 35 advancements +[30Dec2025 13:44:23.273] [Server thread/INFO] [net.minecraft.server.MinecraftServer/]: [Dev: Set own game mode to Creative Mode] +[30Dec2025 13:44:23.275] [Render thread/INFO] [net.minecraft.client.gui.components.ChatComponent/]: [System] [CHAT] Set own game mode to Creative Mode +[30Dec2025 13:44:40.682] [Server thread/INFO] [net.minecraft.server.MinecraftServer/]: [Dev: Set own game mode to Adventure Mode] +[30Dec2025 13:44:40.684] [Render thread/INFO] [net.minecraft.client.gui.components.ChatComponent/]: [System] [CHAT] Set own game mode to Adventure Mode +[30Dec2025 13:44:45.911] [Server thread/INFO] [net.minecraft.server.MinecraftServer/]: [Dev: Set own game mode to Spectator Mode] +[30Dec2025 13:44:45.913] [Render thread/INFO] [net.minecraft.client.gui.components.ChatComponent/]: [System] [CHAT] Set own game mode to Spectator Mode +[30Dec2025 13:45:34.585] [Server thread/INFO] [net.minecraft.server.MinecraftServer/]: [Dev: Set own game mode to Creative Mode] +[30Dec2025 13:45:34.587] [Render thread/INFO] [net.minecraft.client.gui.components.ChatComponent/]: [System] [CHAT] Set own game mode to Creative Mode +[30Dec2025 13:45:47.103] [Server thread/INFO] [net.minecraft.server.MinecraftServer/]: [Dev: Set own game mode to Spectator Mode] +[30Dec2025 13:45:47.105] [Render thread/INFO] [net.minecraft.client.gui.components.ChatComponent/]: [System] [CHAT] Set own game mode to Spectator Mode +[30Dec2025 13:45:53.698] [Server thread/INFO] [net.minecraft.client.server.IntegratedServer/]: Saving and pausing game... +[30Dec2025 13:45:53.710] [Server thread/INFO] [net.minecraft.server.MinecraftServer/]: Saving chunks for level 'ServerLevel[New World]'/minecraft:overworld +[30Dec2025 13:45:53.738] [Server thread/INFO] [net.minecraft.server.MinecraftServer/]: Saving chunks for level 'ServerLevel[New World]'/minecraft:the_nether +[30Dec2025 13:45:53.740] [Server thread/INFO] [net.minecraft.server.MinecraftServer/]: Saving chunks for level 'ServerLevel[New World]'/minecraft:the_end +[30Dec2025 13:45:53.744] [Server thread/DEBUG] [net.minecraftforge.common.ForgeHooks/WP]: Gathering id map for writing to world save New World +[30Dec2025 13:45:53.757] [Server thread/DEBUG] [net.minecraftforge.common.ForgeHooks/WP]: ID Map collection complete New World +[30Dec2025 13:45:54.454] [Server thread/INFO] [net.minecraft.server.network.ServerGamePacketListenerImpl/]: Dev lost connection: Disconnected +[30Dec2025 13:45:54.454] [Server thread/INFO] [net.minecraft.server.MinecraftServer/]: Dev left the game +[30Dec2025 13:45:54.462] [Server thread/INFO] [net.minecraft.server.network.ServerGamePacketListenerImpl/]: Stopping singleplayer server as player logged out +[30Dec2025 13:45:54.499] [Server thread/INFO] [net.minecraft.server.MinecraftServer/]: Stopping server +[30Dec2025 13:45:54.499] [Server thread/INFO] [net.minecraft.server.MinecraftServer/]: Saving players +[30Dec2025 13:45:54.499] [Server thread/INFO] [net.minecraft.server.MinecraftServer/]: Saving worlds +[30Dec2025 13:45:55.085] [Server thread/INFO] [net.minecraft.server.MinecraftServer/]: Saving chunks for level 'ServerLevel[New World]'/minecraft:overworld +[30Dec2025 13:45:55.717] [Server thread/INFO] [net.minecraft.server.MinecraftServer/]: Saving chunks for level 'ServerLevel[New World]'/minecraft:the_nether +[30Dec2025 13:45:55.719] [Server thread/INFO] [net.minecraft.server.MinecraftServer/]: Saving chunks for level 'ServerLevel[New World]'/minecraft:the_end +[30Dec2025 13:45:55.720] [Server thread/DEBUG] [net.minecraftforge.common.ForgeHooks/WP]: Gathering id map for writing to world save New World +[30Dec2025 13:45:55.724] [Server thread/DEBUG] [net.minecraftforge.common.ForgeHooks/WP]: ID Map collection complete New World +[30Dec2025 13:45:55.734] [Server thread/INFO] [net.minecraft.server.MinecraftServer/]: ThreadedAnvilChunkStorage (New World): All chunks are saved +[30Dec2025 13:45:55.735] [Server thread/INFO] [net.minecraft.server.MinecraftServer/]: ThreadedAnvilChunkStorage (DIM-1): All chunks are saved +[30Dec2025 13:45:55.735] [Server thread/INFO] [net.minecraft.server.MinecraftServer/]: ThreadedAnvilChunkStorage (DIM1): All chunks are saved +[30Dec2025 13:45:55.735] [Server thread/INFO] [net.minecraft.server.MinecraftServer/]: ThreadedAnvilChunkStorage: All dimensions are saved +[30Dec2025 13:45:55.749] [Server thread/DEBUG] [net.minecraftforge.registries.GameData/REGISTRIES]: Reverting to FROZEN data state. +[30Dec2025 13:45:55.749] [Server thread/DEBUG] [net.minecraftforge.registries.ForgeRegistry/REGISTRIES]: Registry minecraft:block Sync: ACTIVE -> FROZEN +[30Dec2025 13:45:55.753] [Server thread/DEBUG] [net.minecraftforge.registries.ForgeRegistry/REGISTRIES]: Registry minecraft:fluid Sync: ACTIVE -> FROZEN +[30Dec2025 13:45:55.753] [Server thread/DEBUG] [net.minecraftforge.registries.ForgeRegistry/REGISTRIES]: Registry minecraft:item Sync: ACTIVE -> FROZEN +[30Dec2025 13:45:55.758] [Server thread/DEBUG] [net.minecraftforge.registries.ForgeRegistry/REGISTRIES]: Registry minecraft:mob_effect Sync: ACTIVE -> FROZEN +[30Dec2025 13:45:55.758] [Server thread/DEBUG] [net.minecraftforge.registries.ForgeRegistry/REGISTRIES]: Registry minecraft:sound_event Sync: ACTIVE -> FROZEN +[30Dec2025 13:45:55.761] [Server thread/DEBUG] [net.minecraftforge.registries.ForgeRegistry/REGISTRIES]: Registry minecraft:potion Sync: ACTIVE -> FROZEN +[30Dec2025 13:45:55.762] [Server thread/DEBUG] [net.minecraftforge.registries.ForgeRegistry/REGISTRIES]: Registry minecraft:enchantment Sync: ACTIVE -> FROZEN +[30Dec2025 13:45:55.762] [Server thread/DEBUG] [net.minecraftforge.registries.ForgeRegistry/REGISTRIES]: Registry minecraft:entity_type Sync: ACTIVE -> FROZEN +[30Dec2025 13:45:55.762] [Server thread/DEBUG] [net.minecraftforge.registries.ForgeRegistry/REGISTRIES]: Registry minecraft:block_entity_type Sync: ACTIVE -> FROZEN +[30Dec2025 13:45:55.762] [Server thread/DEBUG] [net.minecraftforge.registries.ForgeRegistry/REGISTRIES]: Registry minecraft:particle_type Sync: ACTIVE -> FROZEN +[30Dec2025 13:45:55.763] [Server thread/DEBUG] [net.minecraftforge.registries.ForgeRegistry/REGISTRIES]: Registry minecraft:menu Sync: ACTIVE -> FROZEN +[30Dec2025 13:45:55.763] [Server thread/DEBUG] [net.minecraftforge.registries.ForgeRegistry/REGISTRIES]: Registry minecraft:painting_variant Sync: ACTIVE -> FROZEN +[30Dec2025 13:45:55.763] [Server thread/DEBUG] [net.minecraftforge.registries.ForgeRegistry/REGISTRIES]: Registry minecraft:recipe_type Sync: ACTIVE -> FROZEN +[30Dec2025 13:45:55.763] [Server thread/DEBUG] [net.minecraftforge.registries.ForgeRegistry/REGISTRIES]: Registry minecraft:recipe_serializer Sync: ACTIVE -> FROZEN +[30Dec2025 13:45:55.763] [Server thread/DEBUG] [net.minecraftforge.registries.ForgeRegistry/REGISTRIES]: Registry minecraft:attribute Sync: ACTIVE -> FROZEN +[30Dec2025 13:45:55.763] [Server thread/DEBUG] [net.minecraftforge.registries.ForgeRegistry/REGISTRIES]: Registry minecraft:stat_type Sync: ACTIVE -> FROZEN +[30Dec2025 13:45:55.763] [Server thread/DEBUG] [net.minecraftforge.registries.ForgeRegistry/REGISTRIES]: Registry minecraft:command_argument_type Sync: ACTIVE -> FROZEN +[30Dec2025 13:45:55.763] [Server thread/DEBUG] [net.minecraftforge.registries.ForgeRegistry/REGISTRIES]: Registry minecraft:villager_profession Sync: ACTIVE -> FROZEN +[30Dec2025 13:45:55.763] [Server thread/DEBUG] [net.minecraftforge.registries.ForgeRegistry/REGISTRIES]: Registry minecraft:point_of_interest_type Sync: ACTIVE -> FROZEN +[30Dec2025 13:45:55.764] [Server thread/DEBUG] [net.minecraftforge.registries.ForgeRegistry/REGISTRIES]: Registry minecraft:memory_module_type Sync: ACTIVE -> FROZEN +[30Dec2025 13:45:55.764] [Server thread/DEBUG] [net.minecraftforge.registries.ForgeRegistry/REGISTRIES]: Registry minecraft:sensor_type Sync: ACTIVE -> FROZEN +[30Dec2025 13:45:55.764] [Server thread/DEBUG] [net.minecraftforge.registries.ForgeRegistry/REGISTRIES]: Registry minecraft:schedule Sync: ACTIVE -> FROZEN +[30Dec2025 13:45:55.764] [Server thread/DEBUG] [net.minecraftforge.registries.ForgeRegistry/REGISTRIES]: Registry minecraft:activity Sync: ACTIVE -> FROZEN +[30Dec2025 13:45:55.764] [Server thread/DEBUG] [net.minecraftforge.registries.ForgeRegistry/REGISTRIES]: Registry minecraft:worldgen/carver Sync: ACTIVE -> FROZEN +[30Dec2025 13:45:55.764] [Server thread/DEBUG] [net.minecraftforge.registries.ForgeRegistry/REGISTRIES]: Registry minecraft:worldgen/feature Sync: ACTIVE -> FROZEN +[30Dec2025 13:45:55.764] [Server thread/DEBUG] [net.minecraftforge.registries.ForgeRegistry/REGISTRIES]: Registry minecraft:chunk_status Sync: ACTIVE -> FROZEN +[30Dec2025 13:45:55.766] [Server thread/DEBUG] [net.minecraftforge.registries.ForgeRegistry/REGISTRIES]: Registry minecraft:worldgen/block_state_provider_type Sync: ACTIVE -> FROZEN +[30Dec2025 13:45:55.766] [Server thread/DEBUG] [net.minecraftforge.registries.ForgeRegistry/REGISTRIES]: Registry minecraft:worldgen/foliage_placer_type Sync: ACTIVE -> FROZEN +[30Dec2025 13:45:55.766] [Server thread/DEBUG] [net.minecraftforge.registries.ForgeRegistry/REGISTRIES]: Registry minecraft:worldgen/tree_decorator_type Sync: ACTIVE -> FROZEN +[30Dec2025 13:45:55.766] [Server thread/DEBUG] [net.minecraftforge.registries.ForgeRegistry/REGISTRIES]: Registry minecraft:worldgen/biome Sync: ACTIVE -> FROZEN +[30Dec2025 13:45:55.766] [Server thread/DEBUG] [net.minecraftforge.registries.ForgeRegistry/REGISTRIES]: Registry forge:entity_data_serializers Sync: ACTIVE -> FROZEN +[30Dec2025 13:45:55.766] [Server thread/DEBUG] [net.minecraftforge.registries.ForgeRegistry/REGISTRIES]: Registry forge:global_loot_modifier_serializers Sync: ACTIVE -> FROZEN +[30Dec2025 13:45:55.766] [Server thread/DEBUG] [net.minecraftforge.registries.ForgeRegistry/REGISTRIES]: Registry forge:biome_modifier_serializers Sync: ACTIVE -> FROZEN +[30Dec2025 13:45:55.766] [Server thread/DEBUG] [net.minecraftforge.registries.ForgeRegistry/REGISTRIES]: Registry forge:fluid_type Sync: ACTIVE -> FROZEN +[30Dec2025 13:45:55.766] [Server thread/DEBUG] [net.minecraftforge.registries.ForgeRegistry/REGISTRIES]: Registry forge:structure_modifier_serializers Sync: ACTIVE -> FROZEN +[30Dec2025 13:45:55.766] [Server thread/DEBUG] [net.minecraftforge.registries.ForgeRegistry/REGISTRIES]: Registry forge:holder_set_type Sync: ACTIVE -> FROZEN +[30Dec2025 13:45:55.766] [Server thread/DEBUG] [net.minecraftforge.registries.ForgeRegistry/REGISTRIES]: Registry forge:display_contexts Sync: ACTIVE -> FROZEN +[30Dec2025 13:45:56.032] [Server thread/DEBUG] [net.minecraftforge.registries.ObjectHolderRegistry/REGISTRIES]: Applying holder lookups +[30Dec2025 13:45:56.034] [Server thread/DEBUG] [net.minecraftforge.registries.ObjectHolderRegistry/REGISTRIES]: Holder lookups applied +[30Dec2025 13:45:56.034] [Server thread/DEBUG] [net.minecraftforge.registries.GameData/REGISTRIES]: FROZEN state restored. +[30Dec2025 13:45:56.034] [Server thread/DEBUG] [net.minecraftforge.fml.config.ConfigTracker/CONFIG]: Unloading configs type SERVER +[30Dec2025 13:46:03.217] [Render thread/INFO] [net.minecraft.client.Minecraft/]: Stopping! diff --git a/run/logs/latest.log b/run/logs/latest.log new file mode 100644 index 000000000..e850cf657 --- /dev/null +++ b/run/logs/latest.log @@ -0,0 +1,122 @@ +[30Dec2025 13:43:02.339] [main/INFO] [cpw.mods.modlauncher.Launcher/MODLAUNCHER]: ModLauncher running: args [--launchTarget, forgeclientuserdev, --version, MOD_DEV, --assetIndex, 5, --assetsDir, C:\Users\polar\.mcreator\gradle\caches\forge_gradle\assets, --gameDir, ., --fml.forgeVersion, 47.3.0, --fml.mcVersion, 1.20.1, --fml.forgeGroup, net.minecraftforge, --fml.mcpVersion, 20230612.114412] +[30Dec2025 13:43:02.343] [main/INFO] [cpw.mods.modlauncher.Launcher/MODLAUNCHER]: ModLauncher 10.0.9+10.0.9+main.dcd20f30 starting: java version 17.0.17 by Eclipse Adoptium; OS Windows 11 arch amd64 version 10.0 +[30Dec2025 13:43:02.491] [main/INFO] [net.minecraftforge.fml.loading.ImmediateWindowHandler/]: Loading ImmediateWindowProvider fmlearlywindow +[30Dec2025 13:43:02.575] [main/INFO] [EARLYDISPLAY/]: Trying GL version 4.6 +[30Dec2025 13:43:02.794] [main/INFO] [EARLYDISPLAY/]: Requested GL version 4.6 got version 4.6 +[30Dec2025 13:43:02.924] [main/INFO] [mixin/]: SpongePowered MIXIN Subsystem Version=0.8.5 Source=union:/C:/Users/polar/.mcreator/gradle/caches/modules-2/files-2.1/org.spongepowered/mixin/0.8.5/9d1c0c3a304ae6697ecd477218fa61b850bf57fc/mixin-0.8.5.jar%23128!/ Service=ModLauncher Env=CLIENT +[30Dec2025 13:43:02.988] [pool-2-thread-1/INFO] [EARLYDISPLAY/]: GL info: NVIDIA GeForce RTX 3070 Laptop GPU/PCIe/SSE2 GL version 4.6.0 NVIDIA 591.44, NVIDIA Corporation +[30Dec2025 13:43:03.380] [main/WARN] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Mod file C:\Users\polar\.mcreator\gradle\caches\modules-2\files-2.1\net.minecraftforge\javafmllanguage\1.20.1-47.3.0\d7ebc62120f202109e300e084ca1a31a7b946a62\javafmllanguage-1.20.1-47.3.0.jar is missing mods.toml file +[30Dec2025 13:43:03.386] [main/WARN] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Mod file C:\Users\polar\.mcreator\gradle\caches\modules-2\files-2.1\net.minecraftforge\lowcodelanguage\1.20.1-47.3.0\1bf3e845ea0ce750096da8c71c8364b188ab74d4\lowcodelanguage-1.20.1-47.3.0.jar is missing mods.toml file +[30Dec2025 13:43:03.393] [main/WARN] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Mod file C:\Users\polar\.mcreator\gradle\caches\modules-2\files-2.1\net.minecraftforge\mclanguage\1.20.1-47.3.0\6093682e943ddccbabf70539319d7f2fe64db2e7\mclanguage-1.20.1-47.3.0.jar is missing mods.toml file +[30Dec2025 13:43:03.398] [main/WARN] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Mod file C:\Users\polar\.mcreator\gradle\caches\modules-2\files-2.1\net.minecraftforge\fmlcore\1.20.1-47.3.0\3b6be96aba3e323f3c918e8ef6a96312d82d76ad\fmlcore-1.20.1-47.3.0.jar is missing mods.toml file +[30Dec2025 13:43:03.482] [main/INFO] [net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator/]: No dependencies to load found. Skipping! +[30Dec2025 13:43:05.196] [main/INFO] [cpw.mods.modlauncher.LaunchServiceHandler/MODLAUNCHER]: Launching target 'forgeclientuserdev' with arguments [--version, MOD_DEV, --gameDir, ., --assetsDir, C:\Users\polar\.mcreator\gradle\caches\forge_gradle\assets, --assetIndex, 5] +[30Dec2025 13:43:10.195] [Datafixer Bootstrap/INFO] [com.mojang.datafixers.DataFixerBuilder/]: 188 Datafixer optimizations took 184 milliseconds +[30Dec2025 13:43:12.179] [Render thread/WARN] [net.minecraft.server.packs.VanillaPackResourcesBuilder/]: Assets URL 'union:/C:/Users/polar/.mcreator/gradle/caches/forge_gradle/minecraft_user_repo/net/minecraftforge/forge/1.20.1-47.3.0_mapped_official_1.20.1/forge-1.20.1-47.3.0_mapped_official_1.20.1-recomp.jar%23191!/assets/.mcassetsroot' uses unexpected schema +[30Dec2025 13:43:12.179] [Render thread/WARN] [net.minecraft.server.packs.VanillaPackResourcesBuilder/]: Assets URL 'union:/C:/Users/polar/.mcreator/gradle/caches/forge_gradle/minecraft_user_repo/net/minecraftforge/forge/1.20.1-47.3.0_mapped_official_1.20.1/forge-1.20.1-47.3.0_mapped_official_1.20.1-recomp.jar%23191!/data/.mcassetsroot' uses unexpected schema +[30Dec2025 13:43:12.216] [Render thread/INFO] [com.mojang.authlib.yggdrasil.YggdrasilAuthenticationService/]: Environment: authHost='https://authserver.mojang.com', accountsHost='https://api.mojang.com', sessionHost='https://sessionserver.mojang.com', servicesHost='https://api.minecraftservices.com', name='PROD' +[30Dec2025 13:43:12.237] [Render thread/INFO] [net.minecraft.client.Minecraft/]: Setting user: Dev +[30Dec2025 13:43:12.398] [Render thread/INFO] [net.minecraft.client.Minecraft/]: Backend library: LWJGL version 3.3.1 build 7 +[30Dec2025 13:43:12.743] [modloading-worker-0/INFO] [net.minecraftforge.common.ForgeMod/FORGEMOD]: Forge mod loading, version 47.3.0, for MC 1.20.1 with MCP 20230612.114412 +[30Dec2025 13:43:12.745] [modloading-worker-0/INFO] [net.minecraftforge.common.MinecraftForge/FORGE]: MinecraftForge v47.3.0 Initialized +[30Dec2025 13:43:13.853] [Render thread/INFO] [net.minecraftforge.gametest.ForgeGameTestHooks/]: Enabled Gametest Namespaces: [] +[30Dec2025 13:43:13.998] [Render thread/INFO] [net.minecraft.server.packs.resources.ReloadableResourceManager/]: Reloading ResourceManager: vanilla, mod_resources +[30Dec2025 13:43:14.192] [Worker-Main-11/ERROR] [net.minecraft.client.resources.model.ModelManager/]: Failed to load blockstate minecraft:blockstates/diamond_ore.json from pack mod_resources +com.google.gson.JsonParseException: java.io.EOFException: End of input at line 1 column 1 path $ + at net.minecraft.util.GsonHelper.fromNullableJson(GsonHelper.java:436) ~[forge-1.20.1-47.3.0_mapped_official_1.20.1-recomp.jar%23191!/:?] + at net.minecraft.util.GsonHelper.fromJson(GsonHelper.java:441) ~[forge-1.20.1-47.3.0_mapped_official_1.20.1-recomp.jar%23191!/:?] + at net.minecraft.util.GsonHelper.parse(GsonHelper.java:505) ~[forge-1.20.1-47.3.0_mapped_official_1.20.1-recomp.jar%23191!/:?] + at net.minecraft.util.GsonHelper.parse(GsonHelper.java:513) ~[forge-1.20.1-47.3.0_mapped_official_1.20.1-recomp.jar%23191!/:?] + at net.minecraft.client.resources.model.ModelManager.lambda$loadBlockStates$12(ModelManager.java:137) ~[forge-1.20.1-47.3.0_mapped_official_1.20.1-recomp.jar%23191!/:?] + at java.util.concurrent.CompletableFuture$AsyncSupply.run(CompletableFuture.java:1768) ~[?:?] + at java.util.concurrent.CompletableFuture$AsyncSupply.exec(CompletableFuture.java:1760) ~[?:?] + at java.util.concurrent.ForkJoinTask.doExec(ForkJoinTask.java:373) ~[?:?] + at java.util.concurrent.ForkJoinPool$WorkQueue.topLevelExec(ForkJoinPool.java:1182) ~[?:?] + at java.util.concurrent.ForkJoinPool.scan(ForkJoinPool.java:1655) ~[?:?] + at java.util.concurrent.ForkJoinPool.runWorker(ForkJoinPool.java:1622) ~[?:?] + at java.util.concurrent.ForkJoinWorkerThread.run(ForkJoinWorkerThread.java:165) ~[?:?] +Caused by: java.io.EOFException: End of input at line 1 column 1 path $ + at com.google.gson.stream.JsonReader.nextNonWhitespace(JsonReader.java:1455) ~[gson-2.10.jar%23130!/:?] + at com.google.gson.stream.JsonReader.doPeek(JsonReader.java:558) ~[gson-2.10.jar%23130!/:?] + at com.google.gson.stream.JsonReader.peek(JsonReader.java:433) ~[gson-2.10.jar%23130!/:?] + at com.google.gson.internal.bind.TypeAdapters$28.read(TypeAdapters.java:769) ~[gson-2.10.jar%23130!/:?] + at com.google.gson.internal.bind.TypeAdapters$28.read(TypeAdapters.java:725) ~[gson-2.10.jar%23130!/:?] + at com.google.gson.internal.bind.TypeAdapters$34$1.read(TypeAdapters.java:1007) ~[gson-2.10.jar%23130!/:?] + at net.minecraft.util.GsonHelper.fromNullableJson(GsonHelper.java:434) ~[forge-1.20.1-47.3.0_mapped_official_1.20.1-recomp.jar%23191!/:?] + ... 11 more +[30Dec2025 13:43:14.252] [Worker-Main-4/INFO] [net.minecraft.client.gui.font.providers.UnihexProvider/]: Found unifont_all_no_pua-15.0.06.hex, loading +[30Dec2025 13:43:14.280] [Forge Version Check/INFO] [net.minecraftforge.fml.VersionChecker/]: [forge] Starting version check at https://files.minecraftforge.net/net/minecraftforge/forge/promotions_slim.json +[30Dec2025 13:43:15.022] [Forge Version Check/INFO] [net.minecraftforge.fml.VersionChecker/]: [forge] Found status: OUTDATED Current: 47.3.0 Target: 47.4.10 +[30Dec2025 13:43:17.197] [Render thread/WARN] [net.minecraft.client.sounds.SoundEngine/]: Missing sound for event: minecraft:item.goat_horn.play +[30Dec2025 13:43:17.198] [Render thread/WARN] [net.minecraft.client.sounds.SoundEngine/]: Missing sound for event: minecraft:entity.goat.screaming.horn_break +[30Dec2025 13:43:17.275] [Render thread/INFO] [com.mojang.blaze3d.audio.Library/]: OpenAL initialized on device OpenAL Soft on Casque (Arctis 7 Game) +[30Dec2025 13:43:17.275] [Render thread/INFO] [net.minecraft.client.sounds.SoundEngine/SOUNDS]: Sound engine started +[30Dec2025 13:43:17.408] [Render thread/INFO] [net.minecraft.client.renderer.texture.TextureAtlas/]: Created: 1024x512x2 minecraft:textures/atlas/blocks.png-atlas +[30Dec2025 13:43:17.414] [Render thread/INFO] [net.minecraft.client.renderer.texture.TextureAtlas/]: Created: 256x256x2 minecraft:textures/atlas/signs.png-atlas +[30Dec2025 13:43:17.414] [Render thread/INFO] [net.minecraft.client.renderer.texture.TextureAtlas/]: Created: 512x512x2 minecraft:textures/atlas/banner_patterns.png-atlas +[30Dec2025 13:43:17.415] [Render thread/INFO] [net.minecraft.client.renderer.texture.TextureAtlas/]: Created: 512x512x2 minecraft:textures/atlas/shield_patterns.png-atlas +[30Dec2025 13:43:17.416] [Render thread/INFO] [net.minecraft.client.renderer.texture.TextureAtlas/]: Created: 1024x1024x2 minecraft:textures/atlas/armor_trims.png-atlas +[30Dec2025 13:43:17.418] [Render thread/INFO] [net.minecraft.client.renderer.texture.TextureAtlas/]: Created: 256x256x2 minecraft:textures/atlas/chest.png-atlas +[30Dec2025 13:43:17.420] [Render thread/INFO] [net.minecraft.client.renderer.texture.TextureAtlas/]: Created: 128x64x2 minecraft:textures/atlas/decorated_pot.png-atlas +[30Dec2025 13:43:17.420] [Render thread/INFO] [net.minecraft.client.renderer.texture.TextureAtlas/]: Created: 512x256x2 minecraft:textures/atlas/beds.png-atlas +[30Dec2025 13:43:17.420] [Render thread/INFO] [net.minecraft.client.renderer.texture.TextureAtlas/]: Created: 512x256x2 minecraft:textures/atlas/shulker_boxes.png-atlas +[30Dec2025 13:43:17.639] [Render thread/WARN] [net.minecraft.client.renderer.ShaderInstance/]: Shader rendertype_entity_translucent_emissive could not find sampler named Sampler2 in the specified shader program. +[30Dec2025 13:43:17.690] [Render thread/INFO] [net.minecraft.client.renderer.texture.TextureAtlas/]: Created: 256x256x0 minecraft:textures/atlas/particles.png-atlas +[30Dec2025 13:43:17.692] [Render thread/INFO] [net.minecraft.client.renderer.texture.TextureAtlas/]: Created: 256x256x0 minecraft:textures/atlas/paintings.png-atlas +[30Dec2025 13:43:17.692] [Render thread/INFO] [net.minecraft.client.renderer.texture.TextureAtlas/]: Created: 128x128x0 minecraft:textures/atlas/mob_effects.png-atlas +[30Dec2025 13:43:18.190] [Realms Notification Availability checker #1/INFO] [com.mojang.realmsclient.client.RealmsClient/]: Could not authorize you against Realms server: java.lang.RuntimeException: Failed to parse into SignedJWT: 0 +[30Dec2025 13:43:20.773] [Render thread/INFO] [net.minecraftforge.registries.GameData/REGISTRIES]: Injecting existing registry data into this CLIENT instance +[30Dec2025 13:43:22.813] [Render thread/INFO] [net.minecraft.world.item.crafting.RecipeManager/]: Loaded 7 recipes +[30Dec2025 13:43:22.909] [Render thread/INFO] [net.minecraft.advancements.AdvancementList/]: Loaded 1271 advancements +[30Dec2025 13:43:23.294] [Server thread/INFO] [net.minecraft.client.server.IntegratedServer/]: Starting integrated minecraft server version 1.20.1 +[30Dec2025 13:43:23.295] [Server thread/INFO] [net.minecraft.server.MinecraftServer/]: Generating keypair +[30Dec2025 13:43:24.432] [Server thread/INFO] [net.minecraft.server.MinecraftServer/]: Preparing start region for dimension minecraft:overworld +[30Dec2025 13:43:26.427] [Render thread/INFO] [net.minecraft.server.level.progress.LoggerChunkProgressListener/]: Preparing spawn area: 0% +[30Dec2025 13:43:26.427] [Render thread/INFO] [net.minecraft.server.level.progress.LoggerChunkProgressListener/]: Preparing spawn area: 0% +[30Dec2025 13:43:26.427] [Render thread/INFO] [net.minecraft.server.level.progress.LoggerChunkProgressListener/]: Preparing spawn area: 0% +[30Dec2025 13:43:26.427] [Render thread/INFO] [net.minecraft.server.level.progress.LoggerChunkProgressListener/]: Preparing spawn area: 0% +[30Dec2025 13:43:26.467] [Render thread/INFO] [net.minecraft.server.level.progress.LoggerChunkProgressListener/]: Preparing spawn area: 0% +[30Dec2025 13:43:26.971] [Render thread/INFO] [net.minecraft.server.level.progress.LoggerChunkProgressListener/]: Preparing spawn area: 21% +[30Dec2025 13:43:27.492] [Render thread/INFO] [net.minecraft.server.level.progress.LoggerChunkProgressListener/]: Preparing spawn area: 90% +[30Dec2025 13:43:27.498] [Server thread/INFO] [net.minecraftforge.server.permission.PermissionAPI/]: Successfully initialized permission handler forge:default_handler +[30Dec2025 13:43:27.511] [Render thread/INFO] [net.minecraft.server.level.progress.LoggerChunkProgressListener/]: Time elapsed: 3059 ms +[30Dec2025 13:43:27.623] [Server thread/INFO] [net.minecraft.client.server.IntegratedServer/]: Changing view distance to 5, from 10 +[30Dec2025 13:43:27.625] [Server thread/INFO] [net.minecraft.client.server.IntegratedServer/]: Changing simulation distance to 12, from 0 +[30Dec2025 13:43:27.806] [Render thread/WARN] [io.netty.util.internal.SystemPropertyUtil/]: Unable to parse the boolean system property 'java.net.preferIPv6Addresses':system - using the default value: false +[30Dec2025 13:43:28.832] [Netty Local Client IO #0/INFO] [net.minecraftforge.network.NetworkHooks/]: Connected to a modded server. +[30Dec2025 13:43:28.912] [Server thread/INFO] [net.minecraft.server.players.PlayerList/]: Dev[local:E:eb2f5935] logged in with entity id 200 at (12.784762099758028, 72.0, -0.7788851899228265) +[30Dec2025 13:43:29.028] [Server thread/INFO] [net.minecraft.server.MinecraftServer/]: Dev joined the game +[30Dec2025 13:43:29.591] [Render thread/INFO] [net.minecraft.advancements.AdvancementList/]: Loaded 16 advancements +[30Dec2025 13:43:59.558] [Server thread/INFO] [net.minecraft.server.MinecraftServer/]: [Dev: Set own game mode to Survival Mode] +[30Dec2025 13:43:59.562] [Render thread/INFO] [net.minecraft.client.gui.components.ChatComponent/]: [System] [CHAT] Set own game mode to Survival Mode +[30Dec2025 13:44:12.909] [Server thread/INFO] [net.minecraft.server.MinecraftServer/]: Dev has made the advancement [Diamonds!] +[30Dec2025 13:44:12.910] [Render thread/INFO] [net.minecraft.client.gui.components.ChatComponent/]: [System] [CHAT] Dev has made the advancement [Diamonds!] +[30Dec2025 13:44:12.956] [Render thread/INFO] [net.minecraft.advancements.AdvancementList/]: Loaded 35 advancements +[30Dec2025 13:44:23.273] [Server thread/INFO] [net.minecraft.server.MinecraftServer/]: [Dev: Set own game mode to Creative Mode] +[30Dec2025 13:44:23.275] [Render thread/INFO] [net.minecraft.client.gui.components.ChatComponent/]: [System] [CHAT] Set own game mode to Creative Mode +[30Dec2025 13:44:40.682] [Server thread/INFO] [net.minecraft.server.MinecraftServer/]: [Dev: Set own game mode to Adventure Mode] +[30Dec2025 13:44:40.684] [Render thread/INFO] [net.minecraft.client.gui.components.ChatComponent/]: [System] [CHAT] Set own game mode to Adventure Mode +[30Dec2025 13:44:45.911] [Server thread/INFO] [net.minecraft.server.MinecraftServer/]: [Dev: Set own game mode to Spectator Mode] +[30Dec2025 13:44:45.913] [Render thread/INFO] [net.minecraft.client.gui.components.ChatComponent/]: [System] [CHAT] Set own game mode to Spectator Mode +[30Dec2025 13:45:34.585] [Server thread/INFO] [net.minecraft.server.MinecraftServer/]: [Dev: Set own game mode to Creative Mode] +[30Dec2025 13:45:34.587] [Render thread/INFO] [net.minecraft.client.gui.components.ChatComponent/]: [System] [CHAT] Set own game mode to Creative Mode +[30Dec2025 13:45:47.103] [Server thread/INFO] [net.minecraft.server.MinecraftServer/]: [Dev: Set own game mode to Spectator Mode] +[30Dec2025 13:45:47.105] [Render thread/INFO] [net.minecraft.client.gui.components.ChatComponent/]: [System] [CHAT] Set own game mode to Spectator Mode +[30Dec2025 13:45:53.698] [Server thread/INFO] [net.minecraft.client.server.IntegratedServer/]: Saving and pausing game... +[30Dec2025 13:45:53.710] [Server thread/INFO] [net.minecraft.server.MinecraftServer/]: Saving chunks for level 'ServerLevel[New World]'/minecraft:overworld +[30Dec2025 13:45:53.738] [Server thread/INFO] [net.minecraft.server.MinecraftServer/]: Saving chunks for level 'ServerLevel[New World]'/minecraft:the_nether +[30Dec2025 13:45:53.740] [Server thread/INFO] [net.minecraft.server.MinecraftServer/]: Saving chunks for level 'ServerLevel[New World]'/minecraft:the_end +[30Dec2025 13:45:54.454] [Server thread/INFO] [net.minecraft.server.network.ServerGamePacketListenerImpl/]: Dev lost connection: Disconnected +[30Dec2025 13:45:54.454] [Server thread/INFO] [net.minecraft.server.MinecraftServer/]: Dev left the game +[30Dec2025 13:45:54.462] [Server thread/INFO] [net.minecraft.server.network.ServerGamePacketListenerImpl/]: Stopping singleplayer server as player logged out +[30Dec2025 13:45:54.499] [Server thread/INFO] [net.minecraft.server.MinecraftServer/]: Stopping server +[30Dec2025 13:45:54.499] [Server thread/INFO] [net.minecraft.server.MinecraftServer/]: Saving players +[30Dec2025 13:45:54.499] [Server thread/INFO] [net.minecraft.server.MinecraftServer/]: Saving worlds +[30Dec2025 13:45:55.085] [Server thread/INFO] [net.minecraft.server.MinecraftServer/]: Saving chunks for level 'ServerLevel[New World]'/minecraft:overworld +[30Dec2025 13:45:55.717] [Server thread/INFO] [net.minecraft.server.MinecraftServer/]: Saving chunks for level 'ServerLevel[New World]'/minecraft:the_nether +[30Dec2025 13:45:55.719] [Server thread/INFO] [net.minecraft.server.MinecraftServer/]: Saving chunks for level 'ServerLevel[New World]'/minecraft:the_end +[30Dec2025 13:45:55.734] [Server thread/INFO] [net.minecraft.server.MinecraftServer/]: ThreadedAnvilChunkStorage (New World): All chunks are saved +[30Dec2025 13:45:55.735] [Server thread/INFO] [net.minecraft.server.MinecraftServer/]: ThreadedAnvilChunkStorage (DIM-1): All chunks are saved +[30Dec2025 13:45:55.735] [Server thread/INFO] [net.minecraft.server.MinecraftServer/]: ThreadedAnvilChunkStorage (DIM1): All chunks are saved +[30Dec2025 13:45:55.735] [Server thread/INFO] [net.minecraft.server.MinecraftServer/]: ThreadedAnvilChunkStorage: All dimensions are saved +[30Dec2025 13:46:03.217] [Render thread/INFO] [net.minecraft.client.Minecraft/]: Stopping! diff --git a/run/options.txt b/run/options.txt new file mode 100644 index 000000000..6007d3051 --- /dev/null +++ b/run/options.txt @@ -0,0 +1,137 @@ +version:3465 +autoJump:false +operatorItemsTab:false +autoSuggestions:true +chatColors:true +chatLinks:true +chatLinksPrompt:true +enableVsync:false +entityShadows:true +forceUnicodeFont:false +discrete_mouse_scroll:false +invertYMouse:false +realmsNotifications:true +reducedDebugInfo:false +showSubtitles:false +directionalAudio:false +touchscreen:false +fullscreen:false +bobView:false +toggleCrouch:false +toggleSprint:false +darkMojangStudiosBackground:false +hideLightningFlashes:false +mouseSensitivity:0.5 +fov:0.0 +screenEffectScale:1.0 +fovEffectScale:1.0 +darknessEffectScale:1.0 +glintSpeed:0.5 +glintStrength:0.75 +damageTiltStrength:1.0 +highContrast:false +gamma:0.5 +renderDistance:5 +simulationDistance:12 +entityDistanceScaling:1.0 +guiScale:0 +particles:0 +maxFps:260 +graphicsMode:0 +ao:false +prioritizeChunkUpdates:0 +biomeBlendRadius:2 +renderClouds:"false" +resourcePacks:[] +incompatibleResourcePacks:[] +lastServer:localhost:25463 +lang:en_us +soundDevice:"" +chatVisibility:0 +chatOpacity:1.0 +chatLineSpacing:0.0 +textBackgroundOpacity:0.5 +backgroundForChatOnly:true +hideServerAddress:false +advancedItemTooltips:false +pauseOnLostFocus:true +overrideWidth:0 +overrideHeight:0 +chatHeightFocused:1.0 +chatDelay:0.0 +chatHeightUnfocused:0.4375 +chatScale:1.0 +chatWidth:1.0 +notificationDisplayTime:1.0 +mipmapLevels:2 +useNativeTransport:true +mainHand:"right" +attackIndicator:1 +narrator:0 +tutorialStep:none +mouseWheelSensitivity:1.0 +rawMouseInput:true +glDebugVerbosity:1 +skipMultiplayerWarning:true +skipRealms32bitWarning:false +hideMatchedNames:true +joinedFirstServer:false +hideBundleTutorial:false +syncChunkWrites:true +showAutosaveIndicator:true +allowServerListing:true +onlyShowSecureChat:false +panoramaScrollSpeed:1.0 +telemetryOptInExtra:false +onboardAccessibility:false +key_key.attack:key.mouse.left +key_key.use:key.mouse.right +key_key.forward:key.keyboard.w +key_key.left:key.keyboard.a +key_key.back:key.keyboard.s +key_key.right:key.keyboard.d +key_key.jump:key.keyboard.space +key_key.sneak:key.keyboard.left.shift +key_key.sprint:key.keyboard.left.control +key_key.drop:key.keyboard.q +key_key.inventory:key.keyboard.e +key_key.chat:key.keyboard.t +key_key.playerlist:key.keyboard.tab +key_key.pickItem:key.mouse.middle +key_key.command:key.keyboard.slash +key_key.socialInteractions:key.keyboard.p +key_key.screenshot:key.keyboard.f2 +key_key.togglePerspective:key.keyboard.f5 +key_key.smoothCamera:key.keyboard.unknown +key_key.fullscreen:key.keyboard.f11 +key_key.spectatorOutlines:key.keyboard.unknown +key_key.swapOffhand:key.keyboard.f +key_key.saveToolbarActivator:key.keyboard.c +key_key.loadToolbarActivator:key.keyboard.x +key_key.advancements:key.keyboard.l +key_key.hotbar.1:key.keyboard.1 +key_key.hotbar.2:key.keyboard.2 +key_key.hotbar.3:key.keyboard.3 +key_key.hotbar.4:key.keyboard.4 +key_key.hotbar.5:key.keyboard.5 +key_key.hotbar.6:key.keyboard.6 +key_key.hotbar.7:key.keyboard.7 +key_key.hotbar.8:key.keyboard.8 +key_key.hotbar.9:key.keyboard.9 +soundCategory_master:0.0 +soundCategory_music:1.0 +soundCategory_record:1.0 +soundCategory_weather:1.0 +soundCategory_block:1.0 +soundCategory_hostile:1.0 +soundCategory_neutral:1.0 +soundCategory_player:1.0 +soundCategory_ambient:1.0 +soundCategory_voice:1.0 +modelPart_cape:true +modelPart_jacket:true +modelPart_left_sleeve:true +modelPart_right_sleeve:true +modelPart_left_pants_leg:true +modelPart_right_pants_leg:true +modelPart_hat:true diff --git a/run/saves/New World/DIM-1/data/capabilities.dat b/run/saves/New World/DIM-1/data/capabilities.dat new file mode 100644 index 000000000..780b2006b Binary files /dev/null and b/run/saves/New World/DIM-1/data/capabilities.dat differ diff --git a/run/saves/New World/DIM-1/data/raids.dat b/run/saves/New World/DIM-1/data/raids.dat new file mode 100644 index 000000000..78ef01c8e Binary files /dev/null and b/run/saves/New World/DIM-1/data/raids.dat differ diff --git a/run/saves/New World/DIM1/data/capabilities.dat b/run/saves/New World/DIM1/data/capabilities.dat new file mode 100644 index 000000000..780b2006b Binary files /dev/null and b/run/saves/New World/DIM1/data/capabilities.dat differ diff --git a/run/saves/New World/DIM1/data/raids_end.dat b/run/saves/New World/DIM1/data/raids_end.dat new file mode 100644 index 000000000..78ef01c8e Binary files /dev/null and b/run/saves/New World/DIM1/data/raids_end.dat differ diff --git a/run/saves/New World/advancements/380df991-f603-344c-a090-369bad2a924a.json b/run/saves/New World/advancements/380df991-f603-344c-a090-369bad2a924a.json new file mode 100644 index 000000000..d7b7cdcdc --- /dev/null +++ b/run/saves/New World/advancements/380df991-f603-344c-a090-369bad2a924a.json @@ -0,0 +1,173 @@ +{ + "minecraft:recipes/decorations/crafting_table": { + "criteria": { + "unlock_right_away": "2025-12-30 13:19:04 +0100" + }, + "done": true + }, + "minecraft:adventure/adventuring_time": { + "criteria": { + "minecraft:beach": "2025-12-30 13:45:16 +0100", + "minecraft:river": "2025-12-30 13:45:20 +0100", + "minecraft:plains": "2025-12-30 13:19:05 +0100" + }, + "done": false + }, + "minecraft:recipes/building_blocks/stone_bricks": { + "criteria": { + "has_stone": "2025-12-30 13:39:22 +0100" + }, + "done": true + }, + "minecraft:recipes/building_blocks/stone_brick_slab_from_stone_stonecutting": { + "criteria": { + "has_stone": "2025-12-30 13:39:22 +0100" + }, + "done": true + }, + "minecraft:recipes/building_blocks/stone_brick_stairs_from_stone_stonecutting": { + "criteria": { + "has_stone": "2025-12-30 13:39:22 +0100" + }, + "done": true + }, + "minecraft:recipes/building_blocks/stone_slab_from_stone_stonecutting": { + "criteria": { + "has_stone": "2025-12-30 13:39:22 +0100" + }, + "done": true + }, + "minecraft:recipes/building_blocks/stone_bricks_from_stone_stonecutting": { + "criteria": { + "has_stone": "2025-12-30 13:39:22 +0100" + }, + "done": true + }, + "minecraft:recipes/building_blocks/stone_slab": { + "criteria": { + "has_stone": "2025-12-30 13:39:22 +0100" + }, + "done": true + }, + "minecraft:recipes/building_blocks/chiseled_stone_bricks_stone_from_stonecutting": { + "criteria": { + "has_stone": "2025-12-30 13:39:22 +0100" + }, + "done": true + }, + "minecraft:recipes/building_blocks/stone_stairs_from_stone_stonecutting": { + "criteria": { + "has_stone": "2025-12-30 13:39:22 +0100" + }, + "done": true + }, + "minecraft:recipes/redstone/stone_button": { + "criteria": { + "has_stone": "2025-12-30 13:39:22 +0100" + }, + "done": true + }, + "minecraft:recipes/decorations/stonecutter": { + "criteria": { + "has_stone": "2025-12-30 13:39:22 +0100" + }, + "done": true + }, + "minecraft:recipes/redstone/stone_pressure_plate": { + "criteria": { + "has_stone": "2025-12-30 13:39:22 +0100" + }, + "done": true + }, + "minecraft:recipes/building_blocks/smooth_stone": { + "criteria": { + "has_stone": "2025-12-30 13:39:22 +0100" + }, + "done": true + }, + "minecraft:recipes/decorations/stone_brick_walls_from_stone_stonecutting": { + "criteria": { + "has_stone": "2025-12-30 13:39:22 +0100" + }, + "done": true + }, + "minecraft:recipes/building_blocks/stone_stairs": { + "criteria": { + "has_stone": "2025-12-30 13:39:22 +0100" + }, + "done": true + }, + "minecraft:recipes/combat/diamond_leggings": { + "criteria": { + "has_diamond": "2025-12-30 13:44:12 +0100" + }, + "done": true + }, + "minecraft:recipes/combat/diamond_sword": { + "criteria": { + "has_diamond": "2025-12-30 13:44:12 +0100" + }, + "done": true + }, + "minecraft:recipes/decorations/jukebox": { + "criteria": { + "has_diamond": "2025-12-30 13:44:12 +0100" + }, + "done": true + }, + "minecraft:recipes/combat/diamond_chestplate": { + "criteria": { + "has_diamond": "2025-12-30 13:44:12 +0100" + }, + "done": true + }, + "minecraft:recipes/combat/diamond_helmet": { + "criteria": { + "has_diamond": "2025-12-30 13:44:12 +0100" + }, + "done": true + }, + "minecraft:recipes/tools/diamond_pickaxe": { + "criteria": { + "has_diamond": "2025-12-30 13:44:12 +0100" + }, + "done": true + }, + "minecraft:recipes/building_blocks/diamond_block": { + "criteria": { + "has_diamond": "2025-12-30 13:44:12 +0100" + }, + "done": true + }, + "minecraft:recipes/tools/diamond_hoe": { + "criteria": { + "has_diamond": "2025-12-30 13:44:12 +0100" + }, + "done": true + }, + "minecraft:recipes/tools/diamond_shovel": { + "criteria": { + "has_diamond": "2025-12-30 13:44:12 +0100" + }, + "done": true + }, + "minecraft:story/mine_diamond": { + "criteria": { + "diamond": "2025-12-30 13:44:12 +0100" + }, + "done": true + }, + "minecraft:recipes/tools/diamond_axe": { + "criteria": { + "has_diamond": "2025-12-30 13:44:12 +0100" + }, + "done": true + }, + "minecraft:recipes/combat/diamond_boots": { + "criteria": { + "has_diamond": "2025-12-30 13:44:12 +0100" + }, + "done": true + }, + "DataVersion": 3465 +} \ No newline at end of file diff --git a/run/saves/New World/data/capabilities.dat b/run/saves/New World/data/capabilities.dat new file mode 100644 index 000000000..780b2006b Binary files /dev/null and b/run/saves/New World/data/capabilities.dat differ diff --git a/run/saves/New World/data/raids.dat b/run/saves/New World/data/raids.dat new file mode 100644 index 000000000..78ef01c8e Binary files /dev/null and b/run/saves/New World/data/raids.dat differ diff --git a/run/saves/New World/data/random_sequences.dat b/run/saves/New World/data/random_sequences.dat new file mode 100644 index 000000000..713e67199 Binary files /dev/null and b/run/saves/New World/data/random_sequences.dat differ diff --git a/run/saves/New World/entities/r.-1.-1.mca b/run/saves/New World/entities/r.-1.-1.mca new file mode 100644 index 000000000..51ea24a0d Binary files /dev/null and b/run/saves/New World/entities/r.-1.-1.mca differ diff --git a/run/saves/New World/entities/r.-1.0.mca b/run/saves/New World/entities/r.-1.0.mca new file mode 100644 index 000000000..fd61c08e3 Binary files /dev/null and b/run/saves/New World/entities/r.-1.0.mca differ diff --git a/run/saves/New World/entities/r.0.-1.mca b/run/saves/New World/entities/r.0.-1.mca new file mode 100644 index 000000000..396be2a82 Binary files /dev/null and b/run/saves/New World/entities/r.0.-1.mca differ diff --git a/run/saves/New World/entities/r.0.0.mca b/run/saves/New World/entities/r.0.0.mca new file mode 100644 index 000000000..028de9fb8 Binary files /dev/null and b/run/saves/New World/entities/r.0.0.mca differ diff --git a/run/saves/New World/icon.png b/run/saves/New World/icon.png new file mode 100644 index 000000000..4ab4b7ed9 Binary files /dev/null and b/run/saves/New World/icon.png differ diff --git a/run/saves/New World/level.dat b/run/saves/New World/level.dat new file mode 100644 index 000000000..c50b52e97 Binary files /dev/null and b/run/saves/New World/level.dat differ diff --git a/run/saves/New World/level.dat_old b/run/saves/New World/level.dat_old new file mode 100644 index 000000000..5b3033fba Binary files /dev/null and b/run/saves/New World/level.dat_old differ diff --git a/run/saves/New World/playerdata/380df991-f603-344c-a090-369bad2a924a.dat b/run/saves/New World/playerdata/380df991-f603-344c-a090-369bad2a924a.dat new file mode 100644 index 000000000..fbd734eba Binary files /dev/null and b/run/saves/New World/playerdata/380df991-f603-344c-a090-369bad2a924a.dat differ diff --git a/run/saves/New World/playerdata/380df991-f603-344c-a090-369bad2a924a.dat_old b/run/saves/New World/playerdata/380df991-f603-344c-a090-369bad2a924a.dat_old new file mode 100644 index 000000000..635a1d213 Binary files /dev/null and b/run/saves/New World/playerdata/380df991-f603-344c-a090-369bad2a924a.dat_old differ diff --git a/run/saves/New World/poi/r.-1.-1.mca b/run/saves/New World/poi/r.-1.-1.mca new file mode 100644 index 000000000..e69de29bb diff --git a/run/saves/New World/poi/r.-1.0.mca b/run/saves/New World/poi/r.-1.0.mca new file mode 100644 index 000000000..e69de29bb diff --git a/run/saves/New World/poi/r.0.-1.mca b/run/saves/New World/poi/r.0.-1.mca new file mode 100644 index 000000000..e69de29bb diff --git a/run/saves/New World/poi/r.0.0.mca b/run/saves/New World/poi/r.0.0.mca new file mode 100644 index 000000000..e5535b86f Binary files /dev/null and b/run/saves/New World/poi/r.0.0.mca differ diff --git a/run/saves/New World/region/r.-1.-1.mca b/run/saves/New World/region/r.-1.-1.mca new file mode 100644 index 000000000..06199830e Binary files /dev/null and b/run/saves/New World/region/r.-1.-1.mca differ diff --git a/run/saves/New World/region/r.-1.0.mca b/run/saves/New World/region/r.-1.0.mca new file mode 100644 index 000000000..8de82dcbf Binary files /dev/null and b/run/saves/New World/region/r.-1.0.mca differ diff --git a/run/saves/New World/region/r.0.-1.mca b/run/saves/New World/region/r.0.-1.mca new file mode 100644 index 000000000..fee584cbf Binary files /dev/null and b/run/saves/New World/region/r.0.-1.mca differ diff --git a/run/saves/New World/region/r.0.0.mca b/run/saves/New World/region/r.0.0.mca new file mode 100644 index 000000000..690e298e0 Binary files /dev/null and b/run/saves/New World/region/r.0.0.mca differ diff --git a/run/saves/New World/serverconfig/forge-server.toml b/run/saves/New World/serverconfig/forge-server.toml new file mode 100644 index 000000000..13772cf52 --- /dev/null +++ b/run/saves/New World/serverconfig/forge-server.toml @@ -0,0 +1,20 @@ + +#Server configuration settings +[server] + #Set this to true to remove any BlockEntity that throws an error in its update method instead of closing the server and reporting a crash log. BE WARNED THIS COULD SCREW UP EVERYTHING USE SPARINGLY WE ARE NOT RESPONSIBLE FOR DAMAGES. + removeErroringBlockEntities = false + #Set this to true to remove any Entity (Note: Does not include BlockEntities) that throws an error in its tick method instead of closing the server and reporting a crash log. BE WARNED THIS COULD SCREW UP EVERYTHING USE SPARINGLY WE ARE NOT RESPONSIBLE FOR DAMAGES. + removeErroringEntities = false + #Set this to true to check the entire entity's collision bounding box for ladders instead of just the block they are in. Causes noticeable differences in mechanics so default is vanilla behavior. Default: false. + fullBoundingBoxLadders = false + #Base zombie summoning spawn chance. Allows changing the bonus zombie summoning mechanic. + #Range: 0.0 ~ 1.0 + zombieBaseSummonChance = 0.1 + #Chance that a zombie (or subclass) is a baby. Allows changing the zombie spawning mechanic. + #Range: 0.0 ~ 1.0 + zombieBabyChance = 0.05 + #The permission handler used by the server. Defaults to forge:default_handler if no such handler with that name is registered. + permissionHandler = "forge:default_handler" + #Set this to true to enable advertising the dedicated server to local LAN clients so that it shows up in the Multiplayer screen automatically. + advertiseDedicatedServerToLan = true + diff --git a/run/saves/New World/session.lock b/run/saves/New World/session.lock new file mode 100644 index 000000000..0d7e5f854 --- /dev/null +++ b/run/saves/New World/session.lock @@ -0,0 +1 @@ +☃ \ No newline at end of file diff --git a/run/saves/New World/stats/380df991-f603-344c-a090-369bad2a924a.json b/run/saves/New World/stats/380df991-f603-344c-a090-369bad2a924a.json new file mode 100644 index 000000000..6bf097057 --- /dev/null +++ b/run/saves/New World/stats/380df991-f603-344c-a090-369bad2a924a.json @@ -0,0 +1 @@ +{"stats":{"minecraft:custom":{"minecraft:jump":8,"minecraft:time_since_rest":6505,"minecraft:crouch_one_cm":44,"minecraft:leave_game":3,"minecraft:play_time":6505,"minecraft:sprint_one_cm":1246,"minecraft:damage_taken":20,"minecraft:time_since_death":6505,"minecraft:walk_one_cm":10818,"minecraft:sneak_time":340,"minecraft:total_world_time":11305,"minecraft:drop":1,"minecraft:fall_one_cm":670,"minecraft:fly_one_cm":49127},"minecraft:mined":{"custom_ore_gen:sharddiamondblockore":1,"custom_ore_gen:concentrateddiamondore":1},"minecraft:used":{"custom_ore_gen:concentrateddiamondore":2,"minecraft:stone":13,"minecraft:deepslate":11,"custom_ore_gen:sharddiamondpickaxe":2,"custom_ore_gen:sharddiamondblockore":3},"minecraft:dropped":{"custom_ore_gen:sharddiamondpickaxe":1},"minecraft:picked_up":{"custom_ore_gen:diamondshard":1,"minecraft:diamond":2}},"DataVersion":3465} \ No newline at end of file diff --git a/run/server.properties b/run/server.properties new file mode 100644 index 000000000..815c9c099 --- /dev/null +++ b/run/server.properties @@ -0,0 +1,36 @@ +generator-settings= +op-permission-level=4 +allow-nether=true +level-name=world +enable-query=false +allow-flight=true +prevent-proxy-connections=false +server-port=25463 +max-world-size=29999984 +level-type=DEFAULT +enable-rcon=false +level-seed= +force-gamemode=false +server-ip= +network-compression-threshold=256 +max-build-height=320 +spawn-npcs=true +white-list=false +spawn-animals=true +hardcore=false +snooper-enabled=true +resource-pack-sha1= +online-mode=false +resource-pack= +pvp=true +difficulty=1 +allow-cheats=true +enable-command-block=true +gamemode=1 +player-idle-timeout=0 +max-players=20 +max-tick-time=60000 +spawn-monsters=true +view-distance=10 +generate-structures=true +motd=Integrated MCreator Testing Server diff --git a/run/servers.dat b/run/servers.dat new file mode 100644 index 000000000..29d767ac5 Binary files /dev/null and b/run/servers.dat differ diff --git a/run/usercache.json b/run/usercache.json new file mode 100644 index 000000000..667fb85d0 --- /dev/null +++ b/run/usercache.json @@ -0,0 +1 @@ +[{"name":"Dev","uuid":"380df991-f603-344c-a090-369bad2a924a","expiresOn":"2026-01-30 13:43:28 +0100"}] \ No newline at end of file diff --git a/run/usernamecache.json b/run/usernamecache.json new file mode 100644 index 000000000..ab4a85d40 --- /dev/null +++ b/run/usernamecache.json @@ -0,0 +1,3 @@ +{ + "380df991-f603-344c-a090-369bad2a924a": "Dev" +} \ No newline at end of file diff --git a/settings.gradle b/settings.gradle new file mode 100644 index 000000000..93f1b806c --- /dev/null +++ b/settings.gradle @@ -0,0 +1,13 @@ +pluginManagement { + repositories { + gradlePluginPortal() + maven { + name = 'MinecraftForge' + url = 'https://maven.minecraftforge.net/' + } + } +} + +plugins { + id 'org.gradle.toolchains.foojay-resolver-convention' version '0.7.0' +} \ No newline at end of file diff --git a/src/main/java/net/mcreator/customoregen/CustomOreGenMod.java b/src/main/java/net/mcreator/customoregen/CustomOreGenMod.java new file mode 100644 index 000000000..ad25598b4 --- /dev/null +++ b/src/main/java/net/mcreator/customoregen/CustomOreGenMod.java @@ -0,0 +1,85 @@ +package net.mcreator.customoregen; + +import org.apache.logging.log4j.Logger; +import org.apache.logging.log4j.LogManager; + +import net.minecraftforge.network.simple.SimpleChannel; +import net.minecraftforge.network.NetworkRegistry; +import net.minecraftforge.network.NetworkEvent; +import net.minecraftforge.fml.util.thread.SidedThreadGroups; +import net.minecraftforge.fml.javafmlmod.FMLJavaModLoadingContext; +import net.minecraftforge.fml.common.Mod; +import net.minecraftforge.eventbus.api.SubscribeEvent; +import net.minecraftforge.eventbus.api.IEventBus; +import net.minecraftforge.event.TickEvent; +import net.minecraftforge.common.MinecraftForge; + +import net.minecraft.resources.ResourceLocation; +import net.minecraft.network.FriendlyByteBuf; + +import net.mcreator.customoregen.init.CustomOreGenModTabs; +import net.mcreator.customoregen.init.CustomOreGenModItems; +import net.mcreator.customoregen.init.CustomOreGenModBlocks; + +import java.util.function.Supplier; +import java.util.function.Function; +import java.util.function.BiConsumer; +import java.util.concurrent.ConcurrentLinkedQueue; +import java.util.List; +import java.util.Collection; +import java.util.ArrayList; +import java.util.AbstractMap; + +@Mod("custom_ore_gen") +public class CustomOreGenMod { + public static final Logger LOGGER = LogManager.getLogger(CustomOreGenMod.class); + public static final String MODID = "custom_ore_gen"; + + public CustomOreGenMod() { + // Start of user code block mod constructor + // End of user code block mod constructor + MinecraftForge.EVENT_BUS.register(this); + IEventBus bus = FMLJavaModLoadingContext.get().getModEventBus(); + + CustomOreGenModBlocks.REGISTRY.register(bus); + + CustomOreGenModItems.REGISTRY.register(bus); + + CustomOreGenModTabs.REGISTRY.register(bus); + + // Start of user code block mod init + // End of user code block mod init + } + + // Start of user code block mod methods + // End of user code block mod methods + private static final String PROTOCOL_VERSION = "1"; + public static final SimpleChannel PACKET_HANDLER = NetworkRegistry.newSimpleChannel(new ResourceLocation(MODID, MODID), () -> PROTOCOL_VERSION, PROTOCOL_VERSION::equals, PROTOCOL_VERSION::equals); + private static int messageID = 0; + + public static void addNetworkMessage(Class messageType, BiConsumer encoder, Function decoder, BiConsumer> messageConsumer) { + PACKET_HANDLER.registerMessage(messageID, messageType, encoder, decoder, messageConsumer); + messageID++; + } + + private static final Collection> workQueue = new ConcurrentLinkedQueue<>(); + + public static void queueServerWork(int tick, Runnable action) { + if (Thread.currentThread().getThreadGroup() == SidedThreadGroups.SERVER) + workQueue.add(new AbstractMap.SimpleEntry<>(action, tick)); + } + + @SubscribeEvent + public void tick(TickEvent.ServerTickEvent event) { + if (event.phase == TickEvent.Phase.END) { + List> actions = new ArrayList<>(); + workQueue.forEach(work -> { + work.setValue(work.getValue() - 1); + if (work.getValue() == 0) + actions.add(work); + }); + actions.forEach(e -> e.getKey().run()); + workQueue.removeAll(actions); + } + } +} diff --git a/src/main/java/net/mcreator/customoregen/block/ConcentratedcoaloreBlock.java b/src/main/java/net/mcreator/customoregen/block/ConcentratedcoaloreBlock.java new file mode 100644 index 000000000..a7faac7af --- /dev/null +++ b/src/main/java/net/mcreator/customoregen/block/ConcentratedcoaloreBlock.java @@ -0,0 +1,32 @@ + +package net.mcreator.customoregen.block; + +import net.minecraft.world.level.material.FluidState; +import net.minecraft.world.level.block.state.BlockState; +import net.minecraft.world.level.block.state.BlockBehaviour; +import net.minecraft.world.level.block.SoundType; +import net.minecraft.world.level.block.Block; +import net.minecraft.world.level.Level; +import net.minecraft.world.level.BlockGetter; +import net.minecraft.world.entity.player.Player; +import net.minecraft.core.BlockPos; + +import net.mcreator.customoregen.procedures.OreexperienceProcedure; + +public class ConcentratedcoaloreBlock extends Block { + public ConcentratedcoaloreBlock() { + super(BlockBehaviour.Properties.of().sound(SoundType.STONE).strength(3f, 15f).requiresCorrectToolForDrops()); + } + + @Override + public int getLightBlock(BlockState state, BlockGetter worldIn, BlockPos pos) { + return 15; + } + + @Override + public boolean onDestroyedByPlayer(BlockState blockstate, Level world, BlockPos pos, Player entity, boolean willHarvest, FluidState fluid) { + boolean retval = super.onDestroyedByPlayer(blockstate, world, pos, entity, willHarvest, fluid); + OreexperienceProcedure.execute(world, pos.getX(), pos.getY(), pos.getZ(), entity); + return retval; + } +} diff --git a/src/main/java/net/mcreator/customoregen/block/ConcentrateddiamondoreBlock.java b/src/main/java/net/mcreator/customoregen/block/ConcentrateddiamondoreBlock.java new file mode 100644 index 000000000..59cf3c900 --- /dev/null +++ b/src/main/java/net/mcreator/customoregen/block/ConcentrateddiamondoreBlock.java @@ -0,0 +1,40 @@ + +package net.mcreator.customoregen.block; + +import net.minecraft.world.phys.HitResult; +import net.minecraft.world.level.material.FluidState; +import net.minecraft.world.level.block.state.BlockState; +import net.minecraft.world.level.block.state.BlockBehaviour; +import net.minecraft.world.level.block.SoundType; +import net.minecraft.world.level.block.Block; +import net.minecraft.world.level.Level; +import net.minecraft.world.level.BlockGetter; +import net.minecraft.world.item.ItemStack; +import net.minecraft.world.entity.player.Player; +import net.minecraft.core.BlockPos; + +import net.mcreator.customoregen.procedures.OreexperienceProcedure; +import net.mcreator.customoregen.init.CustomOreGenModBlocks; + +public class ConcentrateddiamondoreBlock extends Block { + public ConcentrateddiamondoreBlock() { + super(BlockBehaviour.Properties.of().sound(SoundType.STONE).strength(3f, 11f).requiresCorrectToolForDrops()); + } + + @Override + public int getLightBlock(BlockState state, BlockGetter worldIn, BlockPos pos) { + return 15; + } + + @Override + public ItemStack getCloneItemStack(BlockState state, HitResult target, BlockGetter world, BlockPos pos, Player player) { + return new ItemStack(CustomOreGenModBlocks.CONCENTRATEDDIAMONDORE.get()); + } + + @Override + public boolean onDestroyedByPlayer(BlockState blockstate, Level world, BlockPos pos, Player entity, boolean willHarvest, FluidState fluid) { + boolean retval = super.onDestroyedByPlayer(blockstate, world, pos, entity, willHarvest, fluid); + OreexperienceProcedure.execute(world, pos.getX(), pos.getY(), pos.getZ(), entity); + return retval; + } +} diff --git a/src/main/java/net/mcreator/customoregen/block/CopperhighoreBlock.java b/src/main/java/net/mcreator/customoregen/block/CopperhighoreBlock.java new file mode 100644 index 000000000..c9bb25beb --- /dev/null +++ b/src/main/java/net/mcreator/customoregen/block/CopperhighoreBlock.java @@ -0,0 +1,32 @@ + +package net.mcreator.customoregen.block; + +import net.minecraft.world.level.material.FluidState; +import net.minecraft.world.level.block.state.BlockState; +import net.minecraft.world.level.block.state.BlockBehaviour; +import net.minecraft.world.level.block.SoundType; +import net.minecraft.world.level.block.Block; +import net.minecraft.world.level.Level; +import net.minecraft.world.level.BlockGetter; +import net.minecraft.world.entity.player.Player; +import net.minecraft.core.BlockPos; + +import net.mcreator.customoregen.procedures.OreexperienceProcedure; + +public class CopperhighoreBlock extends Block { + public CopperhighoreBlock() { + super(BlockBehaviour.Properties.of().sound(SoundType.GRAVEL).strength(1f, 10f).requiresCorrectToolForDrops()); + } + + @Override + public int getLightBlock(BlockState state, BlockGetter worldIn, BlockPos pos) { + return 15; + } + + @Override + public boolean onDestroyedByPlayer(BlockState blockstate, Level world, BlockPos pos, Player entity, boolean willHarvest, FluidState fluid) { + boolean retval = super.onDestroyedByPlayer(blockstate, world, pos, entity, willHarvest, fluid); + OreexperienceProcedure.execute(world, pos.getX(), pos.getY(), pos.getZ(), entity); + return retval; + } +} diff --git a/src/main/java/net/mcreator/customoregen/block/CopperloweroreBlock.java b/src/main/java/net/mcreator/customoregen/block/CopperloweroreBlock.java new file mode 100644 index 000000000..077a9b791 --- /dev/null +++ b/src/main/java/net/mcreator/customoregen/block/CopperloweroreBlock.java @@ -0,0 +1,32 @@ + +package net.mcreator.customoregen.block; + +import net.minecraft.world.level.material.FluidState; +import net.minecraft.world.level.block.state.BlockState; +import net.minecraft.world.level.block.state.BlockBehaviour; +import net.minecraft.world.level.block.SoundType; +import net.minecraft.world.level.block.Block; +import net.minecraft.world.level.Level; +import net.minecraft.world.level.BlockGetter; +import net.minecraft.world.entity.player.Player; +import net.minecraft.core.BlockPos; + +import net.mcreator.customoregen.procedures.OreexperienceProcedure; + +public class CopperloweroreBlock extends Block { + public CopperloweroreBlock() { + super(BlockBehaviour.Properties.of().sound(SoundType.STONE).strength(4.5f, 10f).requiresCorrectToolForDrops()); + } + + @Override + public int getLightBlock(BlockState state, BlockGetter worldIn, BlockPos pos) { + return 15; + } + + @Override + public boolean onDestroyedByPlayer(BlockState blockstate, Level world, BlockPos pos, Player entity, boolean willHarvest, FluidState fluid) { + boolean retval = super.onDestroyedByPlayer(blockstate, world, pos, entity, willHarvest, fluid); + OreexperienceProcedure.execute(world, pos.getX(), pos.getY(), pos.getZ(), entity); + return retval; + } +} diff --git a/src/main/java/net/mcreator/customoregen/block/DeepslateironoreBlock.java b/src/main/java/net/mcreator/customoregen/block/DeepslateironoreBlock.java new file mode 100644 index 000000000..5bdb4b688 --- /dev/null +++ b/src/main/java/net/mcreator/customoregen/block/DeepslateironoreBlock.java @@ -0,0 +1,32 @@ + +package net.mcreator.customoregen.block; + +import net.minecraft.world.level.material.FluidState; +import net.minecraft.world.level.block.state.BlockState; +import net.minecraft.world.level.block.state.BlockBehaviour; +import net.minecraft.world.level.block.SoundType; +import net.minecraft.world.level.block.Block; +import net.minecraft.world.level.Level; +import net.minecraft.world.level.BlockGetter; +import net.minecraft.world.entity.player.Player; +import net.minecraft.core.BlockPos; + +import net.mcreator.customoregen.procedures.OreexperienceProcedure; + +public class DeepslateironoreBlock extends Block { + public DeepslateironoreBlock() { + super(BlockBehaviour.Properties.of().sound(SoundType.STONE).strength(3f, 10f).requiresCorrectToolForDrops()); + } + + @Override + public int getLightBlock(BlockState state, BlockGetter worldIn, BlockPos pos) { + return 15; + } + + @Override + public boolean onDestroyedByPlayer(BlockState blockstate, Level world, BlockPos pos, Player entity, boolean willHarvest, FluidState fluid) { + boolean retval = super.onDestroyedByPlayer(blockstate, world, pos, entity, willHarvest, fluid); + OreexperienceProcedure.execute(world, pos.getX(), pos.getY(), pos.getZ(), entity); + return retval; + } +} diff --git a/src/main/java/net/mcreator/customoregen/block/DeepslatelapisoreBlock.java b/src/main/java/net/mcreator/customoregen/block/DeepslatelapisoreBlock.java new file mode 100644 index 000000000..d0d2629e4 --- /dev/null +++ b/src/main/java/net/mcreator/customoregen/block/DeepslatelapisoreBlock.java @@ -0,0 +1,32 @@ + +package net.mcreator.customoregen.block; + +import net.minecraft.world.level.material.FluidState; +import net.minecraft.world.level.block.state.BlockState; +import net.minecraft.world.level.block.state.BlockBehaviour; +import net.minecraft.world.level.block.SoundType; +import net.minecraft.world.level.block.Block; +import net.minecraft.world.level.Level; +import net.minecraft.world.level.BlockGetter; +import net.minecraft.world.entity.player.Player; +import net.minecraft.core.BlockPos; + +import net.mcreator.customoregen.procedures.OreexperienceProcedure; + +public class DeepslatelapisoreBlock extends Block { + public DeepslatelapisoreBlock() { + super(BlockBehaviour.Properties.of().sound(SoundType.STONE).strength(4.5f, 10f).requiresCorrectToolForDrops()); + } + + @Override + public int getLightBlock(BlockState state, BlockGetter worldIn, BlockPos pos) { + return 15; + } + + @Override + public boolean onDestroyedByPlayer(BlockState blockstate, Level world, BlockPos pos, Player entity, boolean willHarvest, FluidState fluid) { + boolean retval = super.onDestroyedByPlayer(blockstate, world, pos, entity, willHarvest, fluid); + OreexperienceProcedure.execute(world, pos.getX(), pos.getY(), pos.getZ(), entity); + return retval; + } +} diff --git a/src/main/java/net/mcreator/customoregen/block/DeepslatepuregoldenoreBlock.java b/src/main/java/net/mcreator/customoregen/block/DeepslatepuregoldenoreBlock.java new file mode 100644 index 000000000..1715153db --- /dev/null +++ b/src/main/java/net/mcreator/customoregen/block/DeepslatepuregoldenoreBlock.java @@ -0,0 +1,32 @@ + +package net.mcreator.customoregen.block; + +import net.minecraft.world.level.material.FluidState; +import net.minecraft.world.level.block.state.BlockState; +import net.minecraft.world.level.block.state.BlockBehaviour; +import net.minecraft.world.level.block.SoundType; +import net.minecraft.world.level.block.Block; +import net.minecraft.world.level.Level; +import net.minecraft.world.level.BlockGetter; +import net.minecraft.world.entity.player.Player; +import net.minecraft.core.BlockPos; + +import net.mcreator.customoregen.procedures.OreexperienceProcedure; + +public class DeepslatepuregoldenoreBlock extends Block { + public DeepslatepuregoldenoreBlock() { + super(BlockBehaviour.Properties.of().sound(SoundType.STONE).strength(3f, 10f).requiresCorrectToolForDrops()); + } + + @Override + public int getLightBlock(BlockState state, BlockGetter worldIn, BlockPos pos) { + return 15; + } + + @Override + public boolean onDestroyedByPlayer(BlockState blockstate, Level world, BlockPos pos, Player entity, boolean willHarvest, FluidState fluid) { + boolean retval = super.onDestroyedByPlayer(blockstate, world, pos, entity, willHarvest, fluid); + OreexperienceProcedure.execute(world, pos.getX(), pos.getY(), pos.getZ(), entity); + return retval; + } +} diff --git a/src/main/java/net/mcreator/customoregen/block/DeepslateredstoneoreBlock.java b/src/main/java/net/mcreator/customoregen/block/DeepslateredstoneoreBlock.java new file mode 100644 index 000000000..d28c9f32a --- /dev/null +++ b/src/main/java/net/mcreator/customoregen/block/DeepslateredstoneoreBlock.java @@ -0,0 +1,34 @@ + +package net.mcreator.customoregen.block; + +import org.checkerframework.checker.units.qual.s; + +import net.minecraft.world.level.material.FluidState; +import net.minecraft.world.level.block.state.BlockState; +import net.minecraft.world.level.block.state.BlockBehaviour; +import net.minecraft.world.level.block.SoundType; +import net.minecraft.world.level.block.Block; +import net.minecraft.world.level.Level; +import net.minecraft.world.level.BlockGetter; +import net.minecraft.world.entity.player.Player; +import net.minecraft.core.BlockPos; + +import net.mcreator.customoregen.procedures.OreexperienceProcedure; + +public class DeepslateredstoneoreBlock extends Block { + public DeepslateredstoneoreBlock() { + super(BlockBehaviour.Properties.of().sound(SoundType.STONE).strength(3f, 10f).lightLevel(s -> 1).requiresCorrectToolForDrops().hasPostProcess((bs, br, bp) -> true).emissiveRendering((bs, br, bp) -> true)); + } + + @Override + public int getLightBlock(BlockState state, BlockGetter worldIn, BlockPos pos) { + return 15; + } + + @Override + public boolean onDestroyedByPlayer(BlockState blockstate, Level world, BlockPos pos, Player entity, boolean willHarvest, FluidState fluid) { + boolean retval = super.onDestroyedByPlayer(blockstate, world, pos, entity, willHarvest, fluid); + OreexperienceProcedure.execute(world, pos.getX(), pos.getY(), pos.getZ(), entity); + return retval; + } +} diff --git a/src/main/java/net/mcreator/customoregen/block/DeepslatesharddiamondoreBlock.java b/src/main/java/net/mcreator/customoregen/block/DeepslatesharddiamondoreBlock.java new file mode 100644 index 000000000..c18fc1244 --- /dev/null +++ b/src/main/java/net/mcreator/customoregen/block/DeepslatesharddiamondoreBlock.java @@ -0,0 +1,32 @@ + +package net.mcreator.customoregen.block; + +import net.minecraft.world.level.material.FluidState; +import net.minecraft.world.level.block.state.BlockState; +import net.minecraft.world.level.block.state.BlockBehaviour; +import net.minecraft.world.level.block.SoundType; +import net.minecraft.world.level.block.Block; +import net.minecraft.world.level.Level; +import net.minecraft.world.level.BlockGetter; +import net.minecraft.world.entity.player.Player; +import net.minecraft.core.BlockPos; + +import net.mcreator.customoregen.procedures.OreexperienceProcedure; + +public class DeepslatesharddiamondoreBlock extends Block { + public DeepslatesharddiamondoreBlock() { + super(BlockBehaviour.Properties.of().sound(SoundType.STONE).strength(3f, 14.5f).requiresCorrectToolForDrops()); + } + + @Override + public int getLightBlock(BlockState state, BlockGetter worldIn, BlockPos pos) { + return 15; + } + + @Override + public boolean onDestroyedByPlayer(BlockState blockstate, Level world, BlockPos pos, Player entity, boolean willHarvest, FluidState fluid) { + boolean retval = super.onDestroyedByPlayer(blockstate, world, pos, entity, willHarvest, fluid); + OreexperienceProcedure.execute(world, pos.getX(), pos.getY(), pos.getZ(), entity); + return retval; + } +} diff --git a/src/main/java/net/mcreator/customoregen/block/HighemeraldoreBlock.java b/src/main/java/net/mcreator/customoregen/block/HighemeraldoreBlock.java new file mode 100644 index 000000000..7a20589e3 --- /dev/null +++ b/src/main/java/net/mcreator/customoregen/block/HighemeraldoreBlock.java @@ -0,0 +1,32 @@ + +package net.mcreator.customoregen.block; + +import net.minecraft.world.level.material.FluidState; +import net.minecraft.world.level.block.state.BlockState; +import net.minecraft.world.level.block.state.BlockBehaviour; +import net.minecraft.world.level.block.SoundType; +import net.minecraft.world.level.block.Block; +import net.minecraft.world.level.Level; +import net.minecraft.world.level.BlockGetter; +import net.minecraft.world.entity.player.Player; +import net.minecraft.core.BlockPos; + +import net.mcreator.customoregen.procedures.OreexperienceProcedure; + +public class HighemeraldoreBlock extends Block { + public HighemeraldoreBlock() { + super(BlockBehaviour.Properties.of().sound(SoundType.STONE).strength(3f, 10f).requiresCorrectToolForDrops()); + } + + @Override + public int getLightBlock(BlockState state, BlockGetter worldIn, BlockPos pos) { + return 15; + } + + @Override + public boolean onDestroyedByPlayer(BlockState blockstate, Level world, BlockPos pos, Player entity, boolean willHarvest, FluidState fluid) { + boolean retval = super.onDestroyedByPlayer(blockstate, world, pos, entity, willHarvest, fluid); + OreexperienceProcedure.execute(world, pos.getX(), pos.getY(), pos.getZ(), entity); + return retval; + } +} diff --git a/src/main/java/net/mcreator/customoregen/block/IronoreBlock.java b/src/main/java/net/mcreator/customoregen/block/IronoreBlock.java new file mode 100644 index 000000000..eaa7f9a1e --- /dev/null +++ b/src/main/java/net/mcreator/customoregen/block/IronoreBlock.java @@ -0,0 +1,32 @@ + +package net.mcreator.customoregen.block; + +import net.minecraft.world.level.material.FluidState; +import net.minecraft.world.level.block.state.BlockState; +import net.minecraft.world.level.block.state.BlockBehaviour; +import net.minecraft.world.level.block.SoundType; +import net.minecraft.world.level.block.Block; +import net.minecraft.world.level.Level; +import net.minecraft.world.level.BlockGetter; +import net.minecraft.world.entity.player.Player; +import net.minecraft.core.BlockPos; + +import net.mcreator.customoregen.procedures.OreexperienceProcedure; + +public class IronoreBlock extends Block { + public IronoreBlock() { + super(BlockBehaviour.Properties.of().sound(SoundType.STONE).strength(2f, 10f).requiresCorrectToolForDrops()); + } + + @Override + public int getLightBlock(BlockState state, BlockGetter worldIn, BlockPos pos) { + return 15; + } + + @Override + public boolean onDestroyedByPlayer(BlockState blockstate, Level world, BlockPos pos, Player entity, boolean willHarvest, FluidState fluid) { + boolean retval = super.onDestroyedByPlayer(blockstate, world, pos, entity, willHarvest, fluid); + OreexperienceProcedure.execute(world, pos.getX(), pos.getY(), pos.getZ(), entity); + return retval; + } +} diff --git a/src/main/java/net/mcreator/customoregen/block/LapisoreBlock.java b/src/main/java/net/mcreator/customoregen/block/LapisoreBlock.java new file mode 100644 index 000000000..c4658d787 --- /dev/null +++ b/src/main/java/net/mcreator/customoregen/block/LapisoreBlock.java @@ -0,0 +1,32 @@ + +package net.mcreator.customoregen.block; + +import net.minecraft.world.level.material.FluidState; +import net.minecraft.world.level.block.state.BlockState; +import net.minecraft.world.level.block.state.BlockBehaviour; +import net.minecraft.world.level.block.SoundType; +import net.minecraft.world.level.block.Block; +import net.minecraft.world.level.Level; +import net.minecraft.world.level.BlockGetter; +import net.minecraft.world.entity.player.Player; +import net.minecraft.core.BlockPos; + +import net.mcreator.customoregen.procedures.OreexperienceProcedure; + +public class LapisoreBlock extends Block { + public LapisoreBlock() { + super(BlockBehaviour.Properties.of().sound(SoundType.STONE).strength(3f, 10f).requiresCorrectToolForDrops()); + } + + @Override + public int getLightBlock(BlockState state, BlockGetter worldIn, BlockPos pos) { + return 15; + } + + @Override + public boolean onDestroyedByPlayer(BlockState blockstate, Level world, BlockPos pos, Player entity, boolean willHarvest, FluidState fluid) { + boolean retval = super.onDestroyedByPlayer(blockstate, world, pos, entity, willHarvest, fluid); + OreexperienceProcedure.execute(world, pos.getX(), pos.getY(), pos.getZ(), entity); + return retval; + } +} diff --git a/src/main/java/net/mcreator/customoregen/block/LoweremeraldoreBlock.java b/src/main/java/net/mcreator/customoregen/block/LoweremeraldoreBlock.java new file mode 100644 index 000000000..faac392e6 --- /dev/null +++ b/src/main/java/net/mcreator/customoregen/block/LoweremeraldoreBlock.java @@ -0,0 +1,32 @@ + +package net.mcreator.customoregen.block; + +import net.minecraft.world.level.material.FluidState; +import net.minecraft.world.level.block.state.BlockState; +import net.minecraft.world.level.block.state.BlockBehaviour; +import net.minecraft.world.level.block.SoundType; +import net.minecraft.world.level.block.Block; +import net.minecraft.world.level.Level; +import net.minecraft.world.level.BlockGetter; +import net.minecraft.world.entity.player.Player; +import net.minecraft.core.BlockPos; + +import net.mcreator.customoregen.procedures.OreexperienceProcedure; + +public class LoweremeraldoreBlock extends Block { + public LoweremeraldoreBlock() { + super(BlockBehaviour.Properties.of().sound(SoundType.STONE).strength(4.5f, 10f).requiresCorrectToolForDrops()); + } + + @Override + public int getLightBlock(BlockState state, BlockGetter worldIn, BlockPos pos) { + return 15; + } + + @Override + public boolean onDestroyedByPlayer(BlockState blockstate, Level world, BlockPos pos, Player entity, boolean willHarvest, FluidState fluid) { + boolean retval = super.onDestroyedByPlayer(blockstate, world, pos, entity, willHarvest, fluid); + OreexperienceProcedure.execute(world, pos.getX(), pos.getY(), pos.getZ(), entity); + return retval; + } +} diff --git a/src/main/java/net/mcreator/customoregen/block/PuregoldenoreBlock.java b/src/main/java/net/mcreator/customoregen/block/PuregoldenoreBlock.java new file mode 100644 index 000000000..683cbc51e --- /dev/null +++ b/src/main/java/net/mcreator/customoregen/block/PuregoldenoreBlock.java @@ -0,0 +1,32 @@ + +package net.mcreator.customoregen.block; + +import net.minecraft.world.level.material.FluidState; +import net.minecraft.world.level.block.state.BlockState; +import net.minecraft.world.level.block.state.BlockBehaviour; +import net.minecraft.world.level.block.SoundType; +import net.minecraft.world.level.block.Block; +import net.minecraft.world.level.Level; +import net.minecraft.world.level.BlockGetter; +import net.minecraft.world.entity.player.Player; +import net.minecraft.core.BlockPos; + +import net.mcreator.customoregen.procedures.OreexperienceProcedure; + +public class PuregoldenoreBlock extends Block { + public PuregoldenoreBlock() { + super(BlockBehaviour.Properties.of().sound(SoundType.STONE).strength(3f, 10f)); + } + + @Override + public int getLightBlock(BlockState state, BlockGetter worldIn, BlockPos pos) { + return 15; + } + + @Override + public boolean onDestroyedByPlayer(BlockState blockstate, Level world, BlockPos pos, Player entity, boolean willHarvest, FluidState fluid) { + boolean retval = super.onDestroyedByPlayer(blockstate, world, pos, entity, willHarvest, fluid); + OreexperienceProcedure.execute(world, pos.getX(), pos.getY(), pos.getZ(), entity); + return retval; + } +} diff --git a/src/main/java/net/mcreator/customoregen/block/RedstoneoreBlock.java b/src/main/java/net/mcreator/customoregen/block/RedstoneoreBlock.java new file mode 100644 index 000000000..9052e89fd --- /dev/null +++ b/src/main/java/net/mcreator/customoregen/block/RedstoneoreBlock.java @@ -0,0 +1,34 @@ + +package net.mcreator.customoregen.block; + +import org.checkerframework.checker.units.qual.s; + +import net.minecraft.world.level.material.FluidState; +import net.minecraft.world.level.block.state.BlockState; +import net.minecraft.world.level.block.state.BlockBehaviour; +import net.minecraft.world.level.block.SoundType; +import net.minecraft.world.level.block.Block; +import net.minecraft.world.level.Level; +import net.minecraft.world.level.BlockGetter; +import net.minecraft.world.entity.player.Player; +import net.minecraft.core.BlockPos; + +import net.mcreator.customoregen.procedures.OreexperienceProcedure; + +public class RedstoneoreBlock extends Block { + public RedstoneoreBlock() { + super(BlockBehaviour.Properties.of().sound(SoundType.STONE).strength(3f, 10f).lightLevel(s -> 1).requiresCorrectToolForDrops()); + } + + @Override + public int getLightBlock(BlockState state, BlockGetter worldIn, BlockPos pos) { + return 15; + } + + @Override + public boolean onDestroyedByPlayer(BlockState blockstate, Level world, BlockPos pos, Player entity, boolean willHarvest, FluidState fluid) { + boolean retval = super.onDestroyedByPlayer(blockstate, world, pos, entity, willHarvest, fluid); + OreexperienceProcedure.execute(world, pos.getX(), pos.getY(), pos.getZ(), entity); + return retval; + } +} diff --git a/src/main/java/net/mcreator/customoregen/block/SharddiamondblockoreBlock.java b/src/main/java/net/mcreator/customoregen/block/SharddiamondblockoreBlock.java new file mode 100644 index 000000000..bb7b4a347 --- /dev/null +++ b/src/main/java/net/mcreator/customoregen/block/SharddiamondblockoreBlock.java @@ -0,0 +1,32 @@ + +package net.mcreator.customoregen.block; + +import net.minecraft.world.level.material.FluidState; +import net.minecraft.world.level.block.state.BlockState; +import net.minecraft.world.level.block.state.BlockBehaviour; +import net.minecraft.world.level.block.SoundType; +import net.minecraft.world.level.block.Block; +import net.minecraft.world.level.Level; +import net.minecraft.world.level.BlockGetter; +import net.minecraft.world.entity.player.Player; +import net.minecraft.core.BlockPos; + +import net.mcreator.customoregen.procedures.OreexperienceProcedure; + +public class SharddiamondblockoreBlock extends Block { + public SharddiamondblockoreBlock() { + super(BlockBehaviour.Properties.of().sound(SoundType.STONE).strength(1.3f, 10f).requiresCorrectToolForDrops()); + } + + @Override + public int getLightBlock(BlockState state, BlockGetter worldIn, BlockPos pos) { + return 15; + } + + @Override + public boolean onDestroyedByPlayer(BlockState blockstate, Level world, BlockPos pos, Player entity, boolean willHarvest, FluidState fluid) { + boolean retval = super.onDestroyedByPlayer(blockstate, world, pos, entity, willHarvest, fluid); + OreexperienceProcedure.execute(world, pos.getX(), pos.getY(), pos.getZ(), entity); + return retval; + } +} diff --git a/src/main/java/net/mcreator/customoregen/config/ConfigHelper.java b/src/main/java/net/mcreator/customoregen/config/ConfigHelper.java new file mode 100644 index 000000000..b996c4cd8 --- /dev/null +++ b/src/main/java/net/mcreator/customoregen/config/ConfigHelper.java @@ -0,0 +1,70 @@ +package net.mcreator.customoregen.config; + +import net.minecraftforge.fml.ModList; + +public class ConfigHelper { + // Helper method to safely access config values + public static boolean isFeatureEnabled(String featureName) { + switch (featureName) { + case "shardDiamondTools": + return ModConfigs.FEATURES.enableShardDiamondTools.get(); + case "shardDiamondOre": + return ModConfigs.FEATURES.enableShardDiamondOre.get(); + case "concentratedOres": + return ModConfigs.FEATURES.enableConcentratedOres.get(); + case "impureOres": + return ModConfigs.FEATURES.enableImpureOres.get(); + case "ashCoalOre": + return ModConfigs.FEATURES.enableAshCoalOre.get(); + case "pureGoldenOre": + return ModConfigs.FEATURES.enablePureGoldenOre.get(); + case "customEmeraldOres": + return ModConfigs.FEATURES.enableCustomEmeraldOres.get(); + case "customCopperOres": + return ModConfigs.FEATURES.enableCustomCopperOres.get(); + case "vanillaOreVariants": + return ModConfigs.FEATURES.enableVanillaOreVariants.get(); + default: + return true; + } + } + + public static int getShardDiamondToolDurability(String toolType) { + switch (toolType) { + case "pickaxe": + return ModConfigs.TOOL_STATS.shardDiamondPickaxeDurability.get(); + case "axe": + return ModConfigs.TOOL_STATS.shardDiamondAxeDurability.get(); + case "shovel": + return ModConfigs.TOOL_STATS.shardDiamondShovelDurability.get(); + default: + return 200; + } + } + + public static float getShardDiamondToolSpeed(String toolType) { + switch (toolType) { + case "pickaxe": + return ModConfigs.TOOL_STATS.shardDiamondPickaxeSpeed.get().floatValue(); + case "axe": + return ModConfigs.TOOL_STATS.shardDiamondAxeSpeed.get().floatValue(); + case "shovel": + return ModConfigs.TOOL_STATS.shardDiamondShovelSpeed.get().floatValue(); + default: + return 7.0f; + } + } + + public static int getShardDiamondToolDamage(String toolType) { + switch (toolType) { + case "pickaxe": + return ModConfigs.TOOL_STATS.shardDiamondPickaxeAttackDamage.get(); + case "axe": + return ModConfigs.TOOL_STATS.shardDiamondAxeAttackDamage.get(); + case "shovel": + return ModConfigs.TOOL_STATS.shardDiamondShovelAttackDamage.get(); + default: + return 1; + } + } +} diff --git a/src/main/java/net/mcreator/customoregen/config/ModConfigs.java b/src/main/java/net/mcreator/customoregen/config/ModConfigs.java new file mode 100644 index 000000000..c7d40a404 --- /dev/null +++ b/src/main/java/net/mcreator/customoregen/config/ModConfigs.java @@ -0,0 +1,330 @@ +package net.mcreator.customoregen.config; + +import net.minecraftforge.common.ForgeConfigSpec; + +public class ModConfigs { + public static final ForgeConfigSpec.Builder BUILDER = new ForgeConfigSpec.Builder(); + public static final ForgeConfigSpec SPEC; + + public static final OreGenConfig ORE_GEN; + public static final ToolStatsConfig TOOL_STATS; + public static final DropsConfig DROPS; + public static final FeatureToggleConfig FEATURES; + + static { + BUILDER.push("Custom Ore Gem Configuration"); + + ORE_GEN = new OreGenConfig(BUILDER); + TOOL_STATS = new ToolStatsConfig(BUILDER); + DROPS = new DropsConfig(BUILDER); + FEATURES = new FeatureToggleConfig(BUILDER); + + BUILDER.pop(); + SPEC = BUILDER.build(); + } + + // Configuration pour la gĂ©nĂ©ration des minerais + public static class OreGenConfig { + public final ForgeConfigSpec.ConfigValue shardDiamondOreMinHeight; + public final ForgeConfigSpec.ConfigValue shardDiamondOreMaxHeight; + public final ForgeConfigSpec.ConfigValue shardDiamondOreCount; + public final ForgeConfigSpec.ConfigValue shardDiamondOreSize; + + public final ForgeConfigSpec.ConfigValue concentratedDiamondOreCount; + public final ForgeConfigSpec.ConfigValue concentratedDiamondOreSize; + + public final ForgeConfigSpec.ConfigValue pureGoldenOreCount; + public final ForgeConfigSpec.ConfigValue pureGoldenOreMinHeight; + public final ForgeConfigSpec.ConfigValue pureGoldenOreMaxHeight; + + public final ForgeConfigSpec.ConfigValue concentratedCoalOreCount; + + public final ForgeConfigSpec.ConfigValue impureIronOreCount; + public final ForgeConfigSpec.ConfigValue impureGoldOreCount; + + public final ForgeConfigSpec.ConfigValue highEmeraldOreCount; + public final ForgeConfigSpec.ConfigValue lowerEmeraldOreCount; + + public final ForgeConfigSpec.ConfigValue highCopperOreCount; + public final ForgeConfigSpec.ConfigValue lowerCopperOreCount; + + public OreGenConfig(ForgeConfigSpec.Builder builder) { + builder.push("ore_generation"); + + builder.push("shard_diamond_ore"); + shardDiamondOreMinHeight = builder + .comment("Minimum height for Shard Diamond Ore generation (default: 0)") + .defineInRange("minHeight", 0, -64, 320); + shardDiamondOreMaxHeight = builder + .comment("Maximum height for Shard Diamond Ore generation (default: 15)") + .defineInRange("maxHeight", 15, -64, 320); + shardDiamondOreCount = builder + .comment("Number of Shard Diamond Ore veins per chunk (default: 1)") + .defineInRange("veinsPerChunk", 1, 0, 20); + shardDiamondOreSize = builder + .comment("Size of Shard Diamond Ore veins (default: 8)") + .defineInRange("veinSize", 8, 1, 32); + builder.pop(); + + builder.push("concentrated_diamond_ore"); + concentratedDiamondOreCount = builder + .comment("Number of Concentrated Diamond Ore veins per chunk (default: 1)") + .defineInRange("veinsPerChunk", 1, 0, 20); + concentratedDiamondOreSize = builder + .comment("Size of Concentrated Diamond Ore veins (default: 8)") + .defineInRange("veinSize", 8, 1, 32); + builder.pop(); + + builder.push("pure_golden_ore"); + pureGoldenOreCount = builder + .comment("Number of Pure Golden Ore veins per chunk (default: 4)") + .defineInRange("veinsPerChunk", 4, 0, 20); + pureGoldenOreMinHeight = builder + .comment("Minimum height for Pure Golden Ore generation (default: 0)") + .defineInRange("minHeight", 0, -64, 320); + pureGoldenOreMaxHeight = builder + .comment("Maximum height for Pure Golden Ore generation (default: 256)") + .defineInRange("maxHeight", 256, -64, 320); + builder.pop(); + + builder.push("concentrated_coal_ore"); + concentratedCoalOreCount = builder + .comment("Number of Concentrated Coal Ore veins per chunk (default: 2)") + .defineInRange("veinsPerChunk", 2, 0, 20); + builder.pop(); + + builder.push("impure_ores"); + impureIronOreCount = builder + .comment("Number of Impure Iron Ore veins per chunk (default: 2)") + .defineInRange("ironVeinsPerChunk", 2, 0, 20); + impureGoldOreCount = builder + .comment("Number of Impure Gold Ore veins per chunk (default: 2)") + .defineInRange("goldVeinsPerChunk", 2, 0, 20); + builder.pop(); + + builder.push("emerald_ores"); + highEmeraldOreCount = builder + .comment("Number of High Emerald Ore veins per chunk (default: 1)") + .defineInRange("highVeinsPerChunk", 1, 0, 20); + lowerEmeraldOreCount = builder + .comment("Number of Lower Emerald Ore veins per chunk (default: 1)") + .defineInRange("lowerVeinsPerChunk", 1, 0, 20); + builder.pop(); + + builder.push("copper_ores"); + highCopperOreCount = builder + .comment("Number of High Copper Ore veins per chunk (default: 2)") + .defineInRange("highVeinsPerChunk", 2, 0, 20); + lowerCopperOreCount = builder + .comment("Number of Lower Copper Ore veins per chunk (default: 2)") + .defineInRange("lowerVeinsPerChunk", 2, 0, 20); + builder.pop(); + + builder.pop(); + } + } + + // Configuration pour les stats des outils + public static class ToolStatsConfig { + public final ForgeConfigSpec.ConfigValue shardDiamondPickaxeDurability; + public final ForgeConfigSpec.DoubleValue shardDiamondPickaxeSpeed; + public final ForgeConfigSpec.ConfigValue shardDiamondPickaxeAttackDamage; + + public final ForgeConfigSpec.ConfigValue shardDiamondAxeDurability; + public final ForgeConfigSpec.DoubleValue shardDiamondAxeSpeed; + public final ForgeConfigSpec.ConfigValue shardDiamondAxeAttackDamage; + + public final ForgeConfigSpec.ConfigValue shardDiamondShovelDurability; + public final ForgeConfigSpec.DoubleValue shardDiamondShovelSpeed; + public final ForgeConfigSpec.ConfigValue shardDiamondShovelAttackDamage; + + public ToolStatsConfig(ForgeConfigSpec.Builder builder) { + builder.push("tool_stats"); + + builder.push("shard_diamond_tools"); + shardDiamondPickaxeDurability = builder + .comment("Durability of Shard Diamond Pickaxe (default: 200)") + .defineInRange("pickaxeDurability", 200, 1, 5000); + shardDiamondPickaxeSpeed = builder + .comment("Mining speed of Shard Diamond Pickaxe (default: 7.0)") + .defineInRange("pickaxeSpeed", 7.0, 0.1, 20.0); + shardDiamondPickaxeAttackDamage = builder + .comment("Attack damage of Shard Diamond Pickaxe (default: 1)") + .defineInRange("pickaxeAttackDamage", 1, 0, 20); + + shardDiamondAxeDurability = builder + .comment("Durability of Shard Diamond Axe (default: 200)") + .defineInRange("axeDurability", 200, 1, 5000); + shardDiamondAxeSpeed = builder + .comment("Mining speed of Shard Diamond Axe (default: 7.0)") + .defineInRange("axeSpeed", 7.0, 0.1, 20.0); + shardDiamondAxeAttackDamage = builder + .comment("Attack damage of Shard Diamond Axe (default: 6)") + .defineInRange("axeAttackDamage", 6, 0, 20); + + shardDiamondShovelDurability = builder + .comment("Durability of Shard Diamond Shovel (default: 200)") + .defineInRange("shovelDurability", 200, 1, 5000); + shardDiamondShovelSpeed = builder + .comment("Mining speed of Shard Diamond Shovel (default: 4.0)") + .defineInRange("shovelSpeed", 4.0, 0.1, 20.0); + shardDiamondShovelAttackDamage = builder + .comment("Attack damage of Shard Diamond Shovel (default: 2)") + .defineInRange("shovelAttackDamage", 2, 0, 20); + builder.pop(); + + builder.pop(); + } + } + + // Configuration pour les drops des minerais + public static class DropsConfig { + public final ForgeConfigSpec.ConfigValue shardDiamondOreMinDrops; + public final ForgeConfigSpec.ConfigValue shardDiamondOreMaxDrops; + public final ForgeConfigSpec.ConfigValue shardDiamondOreEnableFortune; + + public final ForgeConfigSpec.ConfigValue concentratedDiamondOreMinDrops; + public final ForgeConfigSpec.ConfigValue concentratedDiamondOreMaxDrops; + public final ForgeConfigSpec.ConfigValue concentratedDiamondOreEnableFortune; + + public final ForgeConfigSpec.ConfigValue concentratedCoalOreMinDrops; + public final ForgeConfigSpec.ConfigValue concentratedCoalOreMaxDrops; + + public final ForgeConfigSpec.ConfigValue pureGoldenOreMinDrops; + public final ForgeConfigSpec.ConfigValue pureGoldenOreMaxDrops; + + public final ForgeConfigSpec.ConfigValue ashCoalOreMinDrops; + public final ForgeConfigSpec.ConfigValue ashCoalOreMaxDrops; + + public final ForgeConfigSpec.ConfigValue impureIronOreMinDrops; + public final ForgeConfigSpec.ConfigValue impureIronOreMaxDrops; + + public final ForgeConfigSpec.ConfigValue impureGoldOreMinDrops; + public final ForgeConfigSpec.ConfigValue impureGoldOreMaxDrops; + + public final ForgeConfigSpec.ConfigValue oreExperienceDrops; + + public DropsConfig(ForgeConfigSpec.Builder builder) { + builder.push("drops"); + + builder.push("shard_diamond_ore"); + shardDiamondOreMinDrops = builder + .comment("Minimum shards dropped by Shard Diamond Ore (default: 1)") + .defineInRange("minDrops", 1, 0, 64); + shardDiamondOreMaxDrops = builder + .comment("Maximum shards dropped by Shard Diamond Ore (default: 2)") + .defineInRange("maxDrops", 2, 0, 64); + shardDiamondOreEnableFortune = builder + .comment("Enable Fortune enchantment on Shard Diamond Ore (default: true)") + .define("enableFortune", true); + builder.pop(); + + builder.push("concentrated_diamond_ore"); + concentratedDiamondOreMinDrops = builder + .comment("Minimum diamonds dropped by Concentrated Diamond Ore (default: 1)") + .defineInRange("minDrops", 1, 0, 64); + concentratedDiamondOreMaxDrops = builder + .comment("Maximum diamonds dropped by Concentrated Diamond Ore (default: 2)") + .defineInRange("maxDrops", 2, 0, 64); + concentratedDiamondOreEnableFortune = builder + .comment("Enable Fortune enchantment on Concentrated Diamond Ore (default: true)") + .define("enableFortune", true); + builder.pop(); + + builder.push("concentrated_coal_ore"); + concentratedCoalOreMinDrops = builder + .comment("Minimum coal dropped by Concentrated Coal Ore (default: 2)") + .defineInRange("minDrops", 2, 0, 64); + concentratedCoalOreMaxDrops = builder + .comment("Maximum coal dropped by Concentrated Coal Ore (default: 4)") + .defineInRange("maxDrops", 4, 0, 64); + builder.pop(); + + builder.push("pure_golden_ore"); + pureGoldenOreMinDrops = builder + .comment("Minimum gold nuggets dropped by Pure Golden Ore (default: 2)") + .defineInRange("minDrops", 2, 0, 64); + pureGoldenOreMaxDrops = builder + .comment("Maximum gold nuggets dropped by Pure Golden Ore (default: 4)") + .defineInRange("maxDrops", 4, 0, 64); + builder.pop(); + + builder.push("ash_coal_ore"); + ashCoalOreMinDrops = builder + .comment("Minimum ash coal dropped by Ash Coal Ore (default: 1)") + .defineInRange("minDrops", 1, 0, 64); + ashCoalOreMaxDrops = builder + .comment("Maximum ash coal dropped by Ash Coal Ore (default: 2)") + .defineInRange("maxDrops", 2, 0, 64); + builder.pop(); + + builder.push("impure_ores"); + impureIronOreMinDrops = builder + .comment("Minimum impure iron dropped by Impure Iron Ore (default: 1)") + .defineInRange("ironMinDrops", 1, 0, 64); + impureIronOreMaxDrops = builder + .comment("Maximum impure iron dropped by Impure Iron Ore (default: 2)") + .defineInRange("ironMaxDrops", 2, 0, 64); + impureGoldOreMinDrops = builder + .comment("Minimum impure gold dropped by Impure Gold Ore (default: 1)") + .defineInRange("goldMinDrops", 1, 0, 64); + impureGoldOreMaxDrops = builder + .comment("Maximum impure gold dropped by Impure Gold Ore (default: 2)") + .defineInRange("goldMaxDrops", 2, 0, 64); + builder.pop(); + + oreExperienceDrops = builder + .comment("Experience dropped when mining custom ores (default: 2)") + .defineInRange("oreExperience", 2, 0, 100); + + builder.pop(); + } + } + + // Configuration pour activer/dĂ©sactiver les fonctionnalitĂ©s + public static class FeatureToggleConfig { + public final ForgeConfigSpec.ConfigValue enableShardDiamondTools; + public final ForgeConfigSpec.ConfigValue enableShardDiamondOre; + public final ForgeConfigSpec.ConfigValue enableConcentratedOres; + public final ForgeConfigSpec.ConfigValue enableImpureOres; + public final ForgeConfigSpec.ConfigValue enableAshCoalOre; + public final ForgeConfigSpec.ConfigValue enablePureGoldenOre; + public final ForgeConfigSpec.ConfigValue enableCustomEmeraldOres; + public final ForgeConfigSpec.ConfigValue enableCustomCopperOres; + public final ForgeConfigSpec.ConfigValue enableVanillaOreVariants; + + public FeatureToggleConfig(ForgeConfigSpec.Builder builder) { + builder.push("features"); + + enableShardDiamondTools = builder + .comment("Enable Shard Diamond Tools (default: true)") + .define("enableShardDiamondTools", true); + enableShardDiamondOre = builder + .comment("Enable Shard Diamond Ore generation (default: true)") + .define("enableShardDiamondOre", true); + enableConcentratedOres = builder + .comment("Enable Concentrated Ores (Diamond, Coal) (default: true)") + .define("enableConcentratedOres", true); + enableImpureOres = builder + .comment("Enable Impure Ores (Iron, Gold) (default: true)") + .define("enableImpureOres", true); + enableAshCoalOre = builder + .comment("Enable Ash Coal Ore (default: true)") + .define("enableAshCoalOre", true); + enablePureGoldenOre = builder + .comment("Enable Pure Golden Ore (default: true)") + .define("enablePureGoldenOre", true); + enableCustomEmeraldOres = builder + .comment("Enable Custom Emerald Ores (High, Lower) (default: true)") + .define("enableCustomEmeraldOres", true); + enableCustomCopperOres = builder + .comment("Enable Custom Copper Ores (High, Lower) (default: true)") + .define("enableCustomCopperOres", true); + enableVanillaOreVariants = builder + .comment("Enable Vanilla Ore variants (Iron, Redstone, Lapis, etc.) (default: true)") + .define("enableVanillaOreVariants", true); + + builder.pop(); + } + } +} diff --git a/src/main/java/net/mcreator/customoregen/init/CustomOreGenModBlocks.java b/src/main/java/net/mcreator/customoregen/init/CustomOreGenModBlocks.java new file mode 100644 index 000000000..ce3de1d59 --- /dev/null +++ b/src/main/java/net/mcreator/customoregen/init/CustomOreGenModBlocks.java @@ -0,0 +1,51 @@ + +/* + * MCreator note: This file will be REGENERATED on each build. + */ +package net.mcreator.customoregen.init; + +import net.minecraftforge.registries.RegistryObject; +import net.minecraftforge.registries.ForgeRegistries; +import net.minecraftforge.registries.DeferredRegister; + +import net.minecraft.world.level.block.Block; + +import net.mcreator.customoregen.block.SharddiamondblockoreBlock; +import net.mcreator.customoregen.block.RedstoneoreBlock; +import net.mcreator.customoregen.block.PuregoldenoreBlock; +import net.mcreator.customoregen.block.LoweremeraldoreBlock; +import net.mcreator.customoregen.block.LapisoreBlock; +import net.mcreator.customoregen.block.IronoreBlock; +import net.mcreator.customoregen.block.HighemeraldoreBlock; +import net.mcreator.customoregen.block.DeepslatesharddiamondoreBlock; +import net.mcreator.customoregen.block.DeepslateredstoneoreBlock; +import net.mcreator.customoregen.block.DeepslatepuregoldenoreBlock; +import net.mcreator.customoregen.block.DeepslatelapisoreBlock; +import net.mcreator.customoregen.block.DeepslateironoreBlock; +import net.mcreator.customoregen.block.CopperloweroreBlock; +import net.mcreator.customoregen.block.CopperhighoreBlock; +import net.mcreator.customoregen.block.ConcentrateddiamondoreBlock; +import net.mcreator.customoregen.block.ConcentratedcoaloreBlock; +import net.mcreator.customoregen.CustomOreGenMod; + +public class CustomOreGenModBlocks { + public static final DeferredRegister REGISTRY = DeferredRegister.create(ForgeRegistries.BLOCKS, CustomOreGenMod.MODID); + public static final RegistryObject SHARDDIAMONDBLOCKORE = REGISTRY.register("sharddiamondblockore", () -> new SharddiamondblockoreBlock()); + public static final RegistryObject PUREGOLDENORE = REGISTRY.register("puregoldenore", () -> new PuregoldenoreBlock()); + public static final RegistryObject DEEPSLATEPUREGOLDENORE = REGISTRY.register("deepslatepuregoldenore", () -> new DeepslatepuregoldenoreBlock()); + public static final RegistryObject CONCENTRATEDCOALORE = REGISTRY.register("concentratedcoalore", () -> new ConcentratedcoaloreBlock()); + public static final RegistryObject DEEPSLATESHARDDIAMONDORE = REGISTRY.register("deepslatesharddiamondore", () -> new DeepslatesharddiamondoreBlock()); + public static final RegistryObject CONCENTRATEDDIAMONDORE = REGISTRY.register("concentrateddiamondore", () -> new ConcentrateddiamondoreBlock()); + public static final RegistryObject LAPISORE = REGISTRY.register("lapisore", () -> new LapisoreBlock()); + public static final RegistryObject DEEPSLATELAPISORE = REGISTRY.register("deepslatelapisore", () -> new DeepslatelapisoreBlock()); + public static final RegistryObject REDSTONEORE = REGISTRY.register("redstoneore", () -> new RedstoneoreBlock()); + public static final RegistryObject DEEPSLATEREDSTONEORE = REGISTRY.register("deepslateredstoneore", () -> new DeepslateredstoneoreBlock()); + public static final RegistryObject COPPERHIGHORE = REGISTRY.register("copperhighore", () -> new CopperhighoreBlock()); + public static final RegistryObject COPPERLOWERORE = REGISTRY.register("copperlowerore", () -> new CopperloweroreBlock()); + public static final RegistryObject HIGHEMERALDORE = REGISTRY.register("highemeraldore", () -> new HighemeraldoreBlock()); + public static final RegistryObject LOWEREMERALDORE = REGISTRY.register("loweremeraldore", () -> new LoweremeraldoreBlock()); + public static final RegistryObject IRONORE = REGISTRY.register("ironore", () -> new IronoreBlock()); + public static final RegistryObject DEEPSLATEIRONORE = REGISTRY.register("deepslateironore", () -> new DeepslateironoreBlock()); + // Start of user code block custom blocks + // End of user code block custom blocks +} diff --git a/src/main/java/net/mcreator/customoregen/init/CustomOreGenModItems.java b/src/main/java/net/mcreator/customoregen/init/CustomOreGenModItems.java new file mode 100644 index 000000000..35da980ae --- /dev/null +++ b/src/main/java/net/mcreator/customoregen/init/CustomOreGenModItems.java @@ -0,0 +1,49 @@ + +/* + * MCreator note: This file will be REGENERATED on each build. + */ +package net.mcreator.customoregen.init; + +import net.minecraftforge.registries.RegistryObject; +import net.minecraftforge.registries.ForgeRegistries; +import net.minecraftforge.registries.DeferredRegister; + +import net.minecraft.world.level.block.Block; +import net.minecraft.world.item.Item; +import net.minecraft.world.item.BlockItem; + +import net.mcreator.customoregen.item.SharddiamondshovelItem; +import net.mcreator.customoregen.item.SharddiamondpickaxeItem; +import net.mcreator.customoregen.item.SharddiamondaxeItem; +import net.mcreator.customoregen.item.DiamondshardItem; +import net.mcreator.customoregen.CustomOreGenMod; + +public class CustomOreGenModItems { + public static final DeferredRegister REGISTRY = DeferredRegister.create(ForgeRegistries.ITEMS, CustomOreGenMod.MODID); + public static final RegistryObject DIAMONDSHARD = REGISTRY.register("diamondshard", () -> new DiamondshardItem()); + public static final RegistryObject SHARDDIAMONDBLOCKORE = block(CustomOreGenModBlocks.SHARDDIAMONDBLOCKORE); + public static final RegistryObject PUREGOLDENORE = block(CustomOreGenModBlocks.PUREGOLDENORE); + public static final RegistryObject DEEPSLATEPUREGOLDENORE = block(CustomOreGenModBlocks.DEEPSLATEPUREGOLDENORE); + public static final RegistryObject CONCENTRATEDCOALORE = block(CustomOreGenModBlocks.CONCENTRATEDCOALORE); + public static final RegistryObject DEEPSLATESHARDDIAMONDORE = block(CustomOreGenModBlocks.DEEPSLATESHARDDIAMONDORE); + public static final RegistryObject CONCENTRATEDDIAMONDORE = block(CustomOreGenModBlocks.CONCENTRATEDDIAMONDORE); + public static final RegistryObject LAPISORE = block(CustomOreGenModBlocks.LAPISORE); + public static final RegistryObject DEEPSLATELAPISORE = block(CustomOreGenModBlocks.DEEPSLATELAPISORE); + public static final RegistryObject REDSTONEORE = block(CustomOreGenModBlocks.REDSTONEORE); + public static final RegistryObject DEEPSLATEREDSTONEORE = block(CustomOreGenModBlocks.DEEPSLATEREDSTONEORE); + public static final RegistryObject COPPERHIGHORE = block(CustomOreGenModBlocks.COPPERHIGHORE); + public static final RegistryObject COPPERLOWERORE = block(CustomOreGenModBlocks.COPPERLOWERORE); + public static final RegistryObject HIGHEMERALDORE = block(CustomOreGenModBlocks.HIGHEMERALDORE); + public static final RegistryObject LOWEREMERALDORE = block(CustomOreGenModBlocks.LOWEREMERALDORE); + public static final RegistryObject SHARDDIAMONDPICKAXE = REGISTRY.register("sharddiamondpickaxe", () -> new SharddiamondpickaxeItem()); + public static final RegistryObject SHARDDIAMONDSHOVEL = REGISTRY.register("sharddiamondshovel", () -> new SharddiamondshovelItem()); + public static final RegistryObject SHARDDIAMONDAXE = REGISTRY.register("sharddiamondaxe", () -> new SharddiamondaxeItem()); + public static final RegistryObject IRONORE = block(CustomOreGenModBlocks.IRONORE); + public static final RegistryObject DEEPSLATEIRONORE = block(CustomOreGenModBlocks.DEEPSLATEIRONORE); + + // Start of user code block custom items + // End of user code block custom items + private static RegistryObject block(RegistryObject block) { + return REGISTRY.register(block.getId().getPath(), () -> new BlockItem(block.get(), new Item.Properties())); + } +} diff --git a/src/main/java/net/mcreator/customoregen/init/CustomOreGenModTabs.java b/src/main/java/net/mcreator/customoregen/init/CustomOreGenModTabs.java new file mode 100644 index 000000000..8ab6c26ca --- /dev/null +++ b/src/main/java/net/mcreator/customoregen/init/CustomOreGenModTabs.java @@ -0,0 +1,34 @@ + +/* + * MCreator note: This file will be REGENERATED on each build. + */ +package net.mcreator.customoregen.init; + +import net.minecraftforge.registries.DeferredRegister; +import net.minecraftforge.fml.common.Mod; +import net.minecraftforge.eventbus.api.SubscribeEvent; +import net.minecraftforge.event.BuildCreativeModeTabContentsEvent; + +import net.minecraft.world.item.CreativeModeTabs; +import net.minecraft.world.item.CreativeModeTab; +import net.minecraft.core.registries.Registries; + +import net.mcreator.customoregen.CustomOreGenMod; + +@Mod.EventBusSubscriber(bus = Mod.EventBusSubscriber.Bus.MOD) +public class CustomOreGenModTabs { + public static final DeferredRegister REGISTRY = DeferredRegister.create(Registries.CREATIVE_MODE_TAB, CustomOreGenMod.MODID); + + @SubscribeEvent + public static void buildTabContentsVanilla(BuildCreativeModeTabContentsEvent tabData) { + if (tabData.getTabKey() == CreativeModeTabs.INGREDIENTS) { + tabData.accept(CustomOreGenModItems.DIAMONDSHARD.get()); + tabData.accept(CustomOreGenModBlocks.SHARDDIAMONDBLOCKORE.get().asItem()); + tabData.accept(CustomOreGenModBlocks.DEEPSLATESHARDDIAMONDORE.get().asItem()); + } else if (tabData.getTabKey() == CreativeModeTabs.TOOLS_AND_UTILITIES) { + tabData.accept(CustomOreGenModItems.SHARDDIAMONDPICKAXE.get()); + tabData.accept(CustomOreGenModItems.SHARDDIAMONDSHOVEL.get()); + tabData.accept(CustomOreGenModItems.SHARDDIAMONDAXE.get()); + } + } +} diff --git a/src/main/java/net/mcreator/customoregen/item/DiamondshardItem.java b/src/main/java/net/mcreator/customoregen/item/DiamondshardItem.java new file mode 100644 index 000000000..e43d0efba --- /dev/null +++ b/src/main/java/net/mcreator/customoregen/item/DiamondshardItem.java @@ -0,0 +1,23 @@ + +package net.mcreator.customoregen.item; + +import net.minecraft.world.level.Level; +import net.minecraft.world.item.TooltipFlag; +import net.minecraft.world.item.Rarity; +import net.minecraft.world.item.ItemStack; +import net.minecraft.world.item.Item; +import net.minecraft.network.chat.Component; + +import java.util.List; + +public class DiamondshardItem extends Item { + public DiamondshardItem() { + super(new Item.Properties().stacksTo(64).rarity(Rarity.RARE)); + } + + @Override + public void appendHoverText(ItemStack itemstack, Level level, List list, TooltipFlag flag) { + super.appendHoverText(itemstack, level, list, flag); + list.add(Component.translatable("item.custom_ore_gen.diamondshard.description_0")); + } +} diff --git a/src/main/java/net/mcreator/customoregen/item/SharddiamondaxeItem.java b/src/main/java/net/mcreator/customoregen/item/SharddiamondaxeItem.java new file mode 100644 index 000000000..f61a47b64 --- /dev/null +++ b/src/main/java/net/mcreator/customoregen/item/SharddiamondaxeItem.java @@ -0,0 +1,39 @@ +package net.mcreator.customoregen.item; + +import net.minecraft.world.item.crafting.Ingredient; +import net.minecraft.world.item.Tier; +import net.minecraft.world.item.Item; +import net.minecraft.world.item.AxeItem; +import net.minecraft.world.item.ItemStack; + +import net.mcreator.customoregen.init.CustomOreGenModItems; + +public class SharddiamondaxeItem extends AxeItem { + public SharddiamondaxeItem() { + super(new Tier() { + public int getUses() { + return 200; + } + + public float getSpeed() { + return 7f; + } + + public float getAttackDamageBonus() { + return 0f; + } + + public int getLevel() { + return 3; + } + + public int getEnchantmentValue() { + return 9; + } + + public Ingredient getRepairIngredient() { + return Ingredient.of(new ItemStack(CustomOreGenModItems.DIAMONDSHARD.get())); + } + }, 1, -3f, new Item.Properties()); + } +} diff --git a/src/main/java/net/mcreator/customoregen/item/SharddiamondpickaxeItem.java b/src/main/java/net/mcreator/customoregen/item/SharddiamondpickaxeItem.java new file mode 100644 index 000000000..24b75976d --- /dev/null +++ b/src/main/java/net/mcreator/customoregen/item/SharddiamondpickaxeItem.java @@ -0,0 +1,40 @@ + +package net.mcreator.customoregen.item; + +import net.minecraft.world.item.crafting.Ingredient; +import net.minecraft.world.item.Tier; +import net.minecraft.world.item.PickaxeItem; +import net.minecraft.world.item.ItemStack; +import net.minecraft.world.item.Item; + +import net.mcreator.customoregen.init.CustomOreGenModItems; + +public class SharddiamondpickaxeItem extends PickaxeItem { + public SharddiamondpickaxeItem() { + super(new Tier() { + public int getUses() { + return 200; // Hardcoded - config not loaded yet + } + + public float getSpeed() { + return 7f; + } + + public float getAttackDamageBonus() { + return 0f; + } + + public int getLevel() { + return 3; + } + + public int getEnchantmentValue() { + return 9; + } + + public Ingredient getRepairIngredient() { + return Ingredient.of(new ItemStack(CustomOreGenModItems.DIAMONDSHARD.get())); + } + }, 1, -3f, new Item.Properties()); + } +} diff --git a/src/main/java/net/mcreator/customoregen/item/SharddiamondshovelItem.java b/src/main/java/net/mcreator/customoregen/item/SharddiamondshovelItem.java new file mode 100644 index 000000000..3a1ba86b5 --- /dev/null +++ b/src/main/java/net/mcreator/customoregen/item/SharddiamondshovelItem.java @@ -0,0 +1,40 @@ + +package net.mcreator.customoregen.item; + +import net.minecraft.world.item.crafting.Ingredient; +import net.minecraft.world.item.Tier; +import net.minecraft.world.item.ShovelItem; +import net.minecraft.world.item.ItemStack; +import net.minecraft.world.item.Item; + +import net.mcreator.customoregen.init.CustomOreGenModItems; + +public class SharddiamondshovelItem extends ShovelItem { + public SharddiamondshovelItem() { + super(new Tier() { + public int getUses() { + return 200; + } + + public float getSpeed() { + return 4f; + } + + public float getAttackDamageBonus() { + return 0f; + } + + public int getLevel() { + return 3; + } + + public int getEnchantmentValue() { + return 9; + } + + public Ingredient getRepairIngredient() { + return Ingredient.of(new ItemStack(CustomOreGenModItems.DIAMONDSHARD.get())); + } + }, 1, -3f, new Item.Properties()); + } +} diff --git a/src/main/java/net/mcreator/customoregen/procedures/ConfigurableOreDropsProcedure.java b/src/main/java/net/mcreator/customoregen/procedures/ConfigurableOreDropsProcedure.java new file mode 100644 index 000000000..3761ebbf6 --- /dev/null +++ b/src/main/java/net/mcreator/customoregen/procedures/ConfigurableOreDropsProcedure.java @@ -0,0 +1,143 @@ +package net.mcreator.customoregen.procedures; + +import net.minecraft.world.level.LevelAccessor; +import net.minecraft.world.item.ItemStack; +import net.minecraft.world.entity.Entity; +import net.minecraft.world.entity.player.Player; +import net.minecraft.world.entity.LivingEntity; +import net.minecraft.world.item.enchantment.EnchantmentHelper; +import net.minecraft.world.item.enchantment.Enchantments; +import net.minecraft.core.BlockPos; +import net.minecraft.server.level.ServerLevel; +import net.minecraft.world.level.Level; +import net.minecraft.world.level.block.state.BlockState; +import net.minecraft.world.level.block.Blocks; +import net.minecraft.world.item.Items; +import net.minecraft.world.level.storage.loot.LootParams; +import net.minecraft.world.level.storage.loot.parameters.LootContextParams; +import net.minecraft.world.level.storage.loot.LootTable; +import net.minecraft.resources.ResourceLocation; +import net.minecraft.world.level.storage.loot.BuiltInLootTables; +import net.minecraft.world.entity.item.ItemEntity; +import net.minecraft.world.entity.ExperienceOrb; + +import net.mcreator.customoregen.config.ModConfigs; +import net.mcreator.customoregen.init.CustomOreGenModItems; + +import java.util.Random; + +public class ConfigurableOreDropsProcedure { + + public static void execute(LevelAccessor world, double x, double y, double z, Entity entity, String oreType) { + if (world.isClientSide()) + return; + + Random random = new Random(); + int fortuneLevel = 0; + boolean silkTouch = false; + + // Get fortune and silk touch from the tool if mining by player + if (entity instanceof Player) { + Player player = (Player) entity; + ItemStack mainHandItem = player.getMainHandItem(); + fortuneLevel = EnchantmentHelper.getItemEnchantmentLevel(Enchantments.BLOCK_FORTUNE, mainHandItem); + silkTouch = EnchantmentHelper.getItemEnchantmentLevel(Enchantments.SILK_TOUCH, mainHandItem) > 0; + } + + // If silk touch, drop the block itself and return + if (silkTouch) { + return; // Let vanilla handle silk touch + } + + int minDrops = 1; + int maxDrops = 2; + boolean enableFortune = true; + ItemStack dropItem = ItemStack.EMPTY; + + // Configure drops based on ore type + switch (oreType) { + case "shard_diamond": + minDrops = ModConfigs.DROPS.shardDiamondOreMinDrops.get(); + maxDrops = ModConfigs.DROPS.shardDiamondOreMaxDrops.get(); + enableFortune = ModConfigs.DROPS.shardDiamondOreEnableFortune.get(); + dropItem = new ItemStack(CustomOreGenModItems.DIAMONDSHARD.get()); + break; + + case "concentrated_diamond": + minDrops = ModConfigs.DROPS.concentratedDiamondOreMinDrops.get(); + maxDrops = ModConfigs.DROPS.concentratedDiamondOreMaxDrops.get(); + enableFortune = ModConfigs.DROPS.concentratedDiamondOreEnableFortune.get(); + dropItem = new ItemStack(Items.DIAMOND); + break; + + case "concentrated_coal": + minDrops = ModConfigs.DROPS.concentratedCoalOreMinDrops.get(); + maxDrops = ModConfigs.DROPS.concentratedCoalOreMaxDrops.get(); + dropItem = new ItemStack(Items.COAL); + break; + + case "pure_golden": + minDrops = ModConfigs.DROPS.pureGoldenOreMinDrops.get(); + maxDrops = ModConfigs.DROPS.pureGoldenOreMaxDrops.get(); + dropItem = new ItemStack(Items.GOLD_NUGGET); + break; + + case "ash_coal": + minDrops = ModConfigs.DROPS.ashCoalOreMinDrops.get(); + maxDrops = ModConfigs.DROPS.ashCoalOreMaxDrops.get(); + dropItem = new ItemStack(Items.COAL); // Temporarily use coal until ASHCOAL item is created + break; + + case "impure_iron": + minDrops = ModConfigs.DROPS.impureIronOreMinDrops.get(); + maxDrops = ModConfigs.DROPS.impureIronOreMaxDrops.get(); + dropItem = new ItemStack(Items.IRON_NUGGET); // Use iron nugget until IMPUREIRON item is created + break; + + case "impure_gold": + minDrops = ModConfigs.DROPS.impureGoldOreMinDrops.get(); + maxDrops = ModConfigs.DROPS.impureGoldOreMaxDrops.get(); + dropItem = new ItemStack(Items.RAW_GOLD); + break; + + default: + return; + } + + // Calculate drops + int dropCount = minDrops + random.nextInt(maxDrops - minDrops + 1); + + // Apply fortune if enabled + if (enableFortune && fortuneLevel > 0) { + int fortuneBonus = random.nextInt(fortuneLevel + 2) - 1; + if (fortuneBonus < 0) + fortuneBonus = 0; + dropCount += fortuneBonus; + } + + // Drop the items + if (!dropItem.isEmpty() && dropCount > 0) { + dropItem.setCount(dropCount); + if (world instanceof ServerLevel) { + ItemEntity itemEntity = new ItemEntity( + (ServerLevel) world, + x + 0.5, y + 0.5, z + 0.5, + dropItem + ); + itemEntity.setDefaultPickUpDelay(); + ((ServerLevel) world).addFreshEntity(itemEntity); + } + } + + // Drop experience if configured + int expAmount = ModConfigs.DROPS.oreExperienceDrops.get(); + if (expAmount > 0 && entity instanceof Player) { + ExperienceOrb expOrb = new ExperienceOrb( + (ServerLevel) world, + x + 0.5, y + 0.5, z + 0.5, + expAmount + ); + ((ServerLevel) world).addFreshEntity(expOrb); + } + } +} diff --git a/src/main/java/net/mcreator/customoregen/procedures/OreexperienceProcedure.java b/src/main/java/net/mcreator/customoregen/procedures/OreexperienceProcedure.java new file mode 100644 index 000000000..851c26128 --- /dev/null +++ b/src/main/java/net/mcreator/customoregen/procedures/OreexperienceProcedure.java @@ -0,0 +1,23 @@ +package net.mcreator.customoregen.procedures; + +import net.minecraft.world.level.LevelAccessor; +import net.minecraft.world.item.enchantment.Enchantments; +import net.minecraft.world.item.enchantment.EnchantmentHelper; +import net.minecraft.world.item.ItemStack; +import net.minecraft.world.entity.LivingEntity; +import net.minecraft.world.entity.ExperienceOrb; +import net.minecraft.world.entity.Entity; +import net.minecraft.server.level.ServerLevel; +import net.minecraft.core.BlockPos; + +public class OreexperienceProcedure { + public static void execute(LevelAccessor world, double x, double y, double z, Entity entity) { + if (entity == null) + return; + if (!(EnchantmentHelper.getItemEnchantmentLevel(Enchantments.SILK_TOUCH, (entity instanceof LivingEntity _livEnt ? _livEnt.getMainHandItem() : ItemStack.EMPTY)) != 0)) { + world.destroyBlock(BlockPos.containing(x, y, z), false); + if (world instanceof ServerLevel _level) + _level.addFreshEntity(new ExperienceOrb(_level, x, y, z, 2)); + } + } +} diff --git a/src/main/resources/META-INF/mods.toml b/src/main/resources/META-INF/mods.toml new file mode 100644 index 000000000..af9cfdba9 --- /dev/null +++ b/src/main/resources/META-INF/mods.toml @@ -0,0 +1,28 @@ +modLoader="javafml" +loaderVersion="[47,)" +license="Not specified" + +[[mods]] +modId="custom_ore_gen" +version="1.0.0" +displayName="custom_ore_gen" +displayURL="https://lanro.eu" +credits="Created using mod maker MCreator - https://mcreator.net/about" +authors="Aulyrius cr\u00E9e via MCreator" +description="Changement de la distribution des ressources sur Minecraft, ne pas utilis\u00E9 seul sans KubeJS" + +# Start of user code block mod configuration +# End of user code block mod configuration + +[[dependencies.custom_ore_gen]] + modId="minecraft" + mandatory=true + versionRange="[1.20.1]" + ordering="AFTER" + side="BOTH" + + + + +# Start of user code block dependencies configuration +# End of user code block dependencies configuration \ No newline at end of file diff --git a/src/main/resources/assets/custom_ore_gen/blockstates/concentratedcoalore.json b/src/main/resources/assets/custom_ore_gen/blockstates/concentratedcoalore.json new file mode 100644 index 000000000..c12aa0eba --- /dev/null +++ b/src/main/resources/assets/custom_ore_gen/blockstates/concentratedcoalore.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "custom_ore_gen:block/concentratedcoalore" + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/custom_ore_gen/blockstates/concentrateddiamondore.json b/src/main/resources/assets/custom_ore_gen/blockstates/concentrateddiamondore.json new file mode 100644 index 000000000..7abf70c64 --- /dev/null +++ b/src/main/resources/assets/custom_ore_gen/blockstates/concentrateddiamondore.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "custom_ore_gen:block/concentrateddiamondore" + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/custom_ore_gen/blockstates/copperhighore.json b/src/main/resources/assets/custom_ore_gen/blockstates/copperhighore.json new file mode 100644 index 000000000..bc9248efc --- /dev/null +++ b/src/main/resources/assets/custom_ore_gen/blockstates/copperhighore.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "custom_ore_gen:block/copperhighore" + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/custom_ore_gen/blockstates/copperlowerore.json b/src/main/resources/assets/custom_ore_gen/blockstates/copperlowerore.json new file mode 100644 index 000000000..e0924c395 --- /dev/null +++ b/src/main/resources/assets/custom_ore_gen/blockstates/copperlowerore.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "custom_ore_gen:block/copperlowerore" + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/custom_ore_gen/blockstates/deepslateironore.json b/src/main/resources/assets/custom_ore_gen/blockstates/deepslateironore.json new file mode 100644 index 000000000..5243b74a6 --- /dev/null +++ b/src/main/resources/assets/custom_ore_gen/blockstates/deepslateironore.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "custom_ore_gen:block/deepslateironore" + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/custom_ore_gen/blockstates/deepslatelapisore.json b/src/main/resources/assets/custom_ore_gen/blockstates/deepslatelapisore.json new file mode 100644 index 000000000..a6a701a05 --- /dev/null +++ b/src/main/resources/assets/custom_ore_gen/blockstates/deepslatelapisore.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "custom_ore_gen:block/deepslatelapisore" + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/custom_ore_gen/blockstates/deepslatepuregoldenore.json b/src/main/resources/assets/custom_ore_gen/blockstates/deepslatepuregoldenore.json new file mode 100644 index 000000000..03a32e184 --- /dev/null +++ b/src/main/resources/assets/custom_ore_gen/blockstates/deepslatepuregoldenore.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "custom_ore_gen:block/deepslatepuregoldenore" + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/custom_ore_gen/blockstates/deepslateredstoneore.json b/src/main/resources/assets/custom_ore_gen/blockstates/deepslateredstoneore.json new file mode 100644 index 000000000..c2e134856 --- /dev/null +++ b/src/main/resources/assets/custom_ore_gen/blockstates/deepslateredstoneore.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "custom_ore_gen:block/deepslateredstoneore" + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/custom_ore_gen/blockstates/deepslatesharddiamondore.json b/src/main/resources/assets/custom_ore_gen/blockstates/deepslatesharddiamondore.json new file mode 100644 index 000000000..ddacd57bc --- /dev/null +++ b/src/main/resources/assets/custom_ore_gen/blockstates/deepslatesharddiamondore.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "custom_ore_gen:block/deepslatesharddiamondore" + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/custom_ore_gen/blockstates/highemeraldore.json b/src/main/resources/assets/custom_ore_gen/blockstates/highemeraldore.json new file mode 100644 index 000000000..af051b439 --- /dev/null +++ b/src/main/resources/assets/custom_ore_gen/blockstates/highemeraldore.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "custom_ore_gen:block/highemeraldore" + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/custom_ore_gen/blockstates/ironore.json b/src/main/resources/assets/custom_ore_gen/blockstates/ironore.json new file mode 100644 index 000000000..f814632bc --- /dev/null +++ b/src/main/resources/assets/custom_ore_gen/blockstates/ironore.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "custom_ore_gen:block/ironore" + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/custom_ore_gen/blockstates/lapisore.json b/src/main/resources/assets/custom_ore_gen/blockstates/lapisore.json new file mode 100644 index 000000000..50c07ae1f --- /dev/null +++ b/src/main/resources/assets/custom_ore_gen/blockstates/lapisore.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "custom_ore_gen:block/lapisore" + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/custom_ore_gen/blockstates/loweremeraldore.json b/src/main/resources/assets/custom_ore_gen/blockstates/loweremeraldore.json new file mode 100644 index 000000000..c7d0ffee5 --- /dev/null +++ b/src/main/resources/assets/custom_ore_gen/blockstates/loweremeraldore.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "custom_ore_gen:block/loweremeraldore" + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/custom_ore_gen/blockstates/puregoldenore.json b/src/main/resources/assets/custom_ore_gen/blockstates/puregoldenore.json new file mode 100644 index 000000000..2e3297e08 --- /dev/null +++ b/src/main/resources/assets/custom_ore_gen/blockstates/puregoldenore.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "custom_ore_gen:block/puregoldenore" + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/custom_ore_gen/blockstates/redstoneore.json b/src/main/resources/assets/custom_ore_gen/blockstates/redstoneore.json new file mode 100644 index 000000000..5890b35e6 --- /dev/null +++ b/src/main/resources/assets/custom_ore_gen/blockstates/redstoneore.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "custom_ore_gen:block/redstoneore" + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/custom_ore_gen/blockstates/sharddiamondblockore.json b/src/main/resources/assets/custom_ore_gen/blockstates/sharddiamondblockore.json new file mode 100644 index 000000000..0ac046486 --- /dev/null +++ b/src/main/resources/assets/custom_ore_gen/blockstates/sharddiamondblockore.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "custom_ore_gen:block/sharddiamondblockore" + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/custom_ore_gen/lang/en_us.json b/src/main/resources/assets/custom_ore_gen/lang/en_us.json new file mode 100644 index 000000000..819055e7d --- /dev/null +++ b/src/main/resources/assets/custom_ore_gen/lang/en_us.json @@ -0,0 +1,24 @@ +{ + "block.custom_ore_gen.lapisore": "Lapis ore", + "block.custom_ore_gen.sharddiamondblockore": "Shard diamond block ore", + "block.custom_ore_gen.concentratedcoalore": "Concentrated coal ore", + "block.custom_ore_gen.ironore": "Iron ore", + "block.custom_ore_gen.redstoneore": "Redstone ore", + "block.custom_ore_gen.deepslatelapisore": "Deepslate lapis ore", + "item.custom_ore_gen.sharddiamondpickaxe": "Shard diamond pickaxe", + "item.custom_ore_gen.diamondshard.description_0": "Diamond sparkle, to create tools or to create a diamond ", + "block.custom_ore_gen.copperhighore": "Copper high ore", + "block.custom_ore_gen.copperlowerore": "deepslate copper ore", + "block.custom_ore_gen.loweremeraldore": "Loweremeraldore", + "block.custom_ore_gen.deepslateredstoneore": "Deepslate redstone ore", + "block.custom_ore_gen.deepslateironore": "Deepslate iron ore", + "item.custom_ore_gen.sharddiamondaxe": "Sharddiamondaxe", + "block.custom_ore_gen.deepslatesharddiamondore": "Deepslate shard diamond ore", + "block.custom_ore_gen.concentrateddiamondore": "Concentrated diamond ore", + "item.custom_ore_gen.shardironore": "Shard iron ore", + "item.custom_ore_gen.diamondshard": "Diamond shard", + "block.custom_ore_gen.deepslatepuregoldenore": "Deepslate pure golden ore", + "block.custom_ore_gen.puregoldenore": "Pure golden ore", + "block.custom_ore_gen.highemeraldore": "emerald ore", + "item.custom_ore_gen.sharddiamondshovel": "Shard diamond shovel" +} \ No newline at end of file diff --git a/src/main/resources/assets/custom_ore_gen/models/block/concentratedcoalore.json b/src/main/resources/assets/custom_ore_gen/models/block/concentratedcoalore.json new file mode 100644 index 000000000..490fadcba --- /dev/null +++ b/src/main/resources/assets/custom_ore_gen/models/block/concentratedcoalore.json @@ -0,0 +1,13 @@ +{ + "parent": "block/cube", + "textures": { + "down": "minecraft:block/coal_ore", + "up": "minecraft:block/coal_ore", + "north": "minecraft:block/coal_ore", + "east": "minecraft:block/coal_ore", + "south": "minecraft:block/coal_ore", + "west": "minecraft:block/coal_ore", + "particle": "minecraft:block/coal_ore" + }, + "render_type": "solid" +} \ No newline at end of file diff --git a/src/main/resources/assets/custom_ore_gen/models/block/concentrateddiamondore.json b/src/main/resources/assets/custom_ore_gen/models/block/concentrateddiamondore.json new file mode 100644 index 000000000..7f4782620 --- /dev/null +++ b/src/main/resources/assets/custom_ore_gen/models/block/concentrateddiamondore.json @@ -0,0 +1,8 @@ +{ + "parent": "block/cube_all", + "textures": { + "all": "minecraft:block/deepslate_diamond_ore", + "particle": "minecraft:block/deepslate_diamond_ore" + }, + "render_type": "solid" +} \ No newline at end of file diff --git a/src/main/resources/assets/custom_ore_gen/models/block/copperhighore.json b/src/main/resources/assets/custom_ore_gen/models/block/copperhighore.json new file mode 100644 index 000000000..645f1bf96 --- /dev/null +++ b/src/main/resources/assets/custom_ore_gen/models/block/copperhighore.json @@ -0,0 +1,13 @@ +{ + "parent": "block/cube", + "textures": { + "down": "minecraft:block/copper_ore", + "up": "minecraft:block/copper_ore", + "north": "minecraft:block/copper_ore", + "east": "minecraft:block/copper_ore", + "south": "minecraft:block/copper_ore", + "west": "minecraft:block/copper_ore", + "particle": "minecraft:block/copper_ore" + }, + "render_type": "solid" +} \ No newline at end of file diff --git a/src/main/resources/assets/custom_ore_gen/models/block/copperlowerore.json b/src/main/resources/assets/custom_ore_gen/models/block/copperlowerore.json new file mode 100644 index 000000000..913408009 --- /dev/null +++ b/src/main/resources/assets/custom_ore_gen/models/block/copperlowerore.json @@ -0,0 +1,8 @@ +{ + "parent": "block/cube_all", + "textures": { + "all": "minecraft:block/deepslate_copper_ore", + "particle": "minecraft:block/deepslate_copper_ore" + }, + "render_type": "solid" +} \ No newline at end of file diff --git a/src/main/resources/assets/custom_ore_gen/models/block/deepslateironore.json b/src/main/resources/assets/custom_ore_gen/models/block/deepslateironore.json new file mode 100644 index 000000000..337cdb71f --- /dev/null +++ b/src/main/resources/assets/custom_ore_gen/models/block/deepslateironore.json @@ -0,0 +1,8 @@ +{ + "parent": "block/cube_all", + "textures": { + "all": "minecraft:block/deepslate_iron_ore", + "particle": "minecraft:block/deepslate_iron_ore" + }, + "render_type": "solid" +} \ No newline at end of file diff --git a/src/main/resources/assets/custom_ore_gen/models/block/deepslatelapisore.json b/src/main/resources/assets/custom_ore_gen/models/block/deepslatelapisore.json new file mode 100644 index 000000000..619586fbe --- /dev/null +++ b/src/main/resources/assets/custom_ore_gen/models/block/deepslatelapisore.json @@ -0,0 +1,13 @@ +{ + "parent": "block/cube", + "textures": { + "down": "minecraft:block/deepslate_lapis_ore", + "up": "minecraft:block/deepslate_lapis_ore", + "north": "minecraft:block/deepslate_lapis_ore", + "east": "minecraft:block/deepslate_lapis_ore", + "south": "minecraft:block/deepslate_lapis_ore", + "west": "minecraft:block/deepslate_lapis_ore", + "particle": "minecraft:block/deepslate_lapis_ore" + }, + "render_type": "solid" +} \ No newline at end of file diff --git a/src/main/resources/assets/custom_ore_gen/models/block/deepslatepuregoldenore.json b/src/main/resources/assets/custom_ore_gen/models/block/deepslatepuregoldenore.json new file mode 100644 index 000000000..22e8b8ea3 --- /dev/null +++ b/src/main/resources/assets/custom_ore_gen/models/block/deepslatepuregoldenore.json @@ -0,0 +1,8 @@ +{ + "parent": "block/cube_all", + "textures": { + "all": "minecraft:block/deepslate_gold_ore", + "particle": "minecraft:block/deepslate_gold_ore" + }, + "render_type": "solid" +} \ No newline at end of file diff --git a/src/main/resources/assets/custom_ore_gen/models/block/deepslateredstoneore.json b/src/main/resources/assets/custom_ore_gen/models/block/deepslateredstoneore.json new file mode 100644 index 000000000..b33479b7f --- /dev/null +++ b/src/main/resources/assets/custom_ore_gen/models/block/deepslateredstoneore.json @@ -0,0 +1,8 @@ +{ + "parent": "block/cube_all", + "textures": { + "all": "minecraft:block/deepslate_redstone_ore", + "particle": "minecraft:block/deepslate_redstone_ore" + }, + "render_type": "solid" +} \ No newline at end of file diff --git a/src/main/resources/assets/custom_ore_gen/models/block/deepslatesharddiamondore.json b/src/main/resources/assets/custom_ore_gen/models/block/deepslatesharddiamondore.json new file mode 100644 index 000000000..e7cc1f740 --- /dev/null +++ b/src/main/resources/assets/custom_ore_gen/models/block/deepslatesharddiamondore.json @@ -0,0 +1,13 @@ +{ + "parent": "block/cube", + "textures": { + "down": "custom_ore_gen:block/shard_diamond_ore", + "up": "custom_ore_gen:block/shard_diamond_ore", + "north": "custom_ore_gen:block/shard_diamond_ore", + "east": "custom_ore_gen:block/shard_diamond_ore", + "south": "custom_ore_gen:block/shard_diamond_ore", + "west": "custom_ore_gen:block/shard_diamond_ore", + "particle": "custom_ore_gen:block/shard_diamond_ore" + }, + "render_type": "solid" +} \ No newline at end of file diff --git a/src/main/resources/assets/custom_ore_gen/models/block/highemeraldore.json b/src/main/resources/assets/custom_ore_gen/models/block/highemeraldore.json new file mode 100644 index 000000000..e8bc9b808 --- /dev/null +++ b/src/main/resources/assets/custom_ore_gen/models/block/highemeraldore.json @@ -0,0 +1,8 @@ +{ + "parent": "block/cube_all", + "textures": { + "all": "minecraft:block/emerald_ore", + "particle": "minecraft:block/emerald_ore" + }, + "render_type": "solid" +} \ No newline at end of file diff --git a/src/main/resources/assets/custom_ore_gen/models/block/ironore.json b/src/main/resources/assets/custom_ore_gen/models/block/ironore.json new file mode 100644 index 000000000..deeb80ec4 --- /dev/null +++ b/src/main/resources/assets/custom_ore_gen/models/block/ironore.json @@ -0,0 +1,8 @@ +{ + "parent": "block/cube_all", + "textures": { + "all": "minecraft:block/iron_ore", + "particle": "minecraft:block/iron_ore" + }, + "render_type": "solid" +} \ No newline at end of file diff --git a/src/main/resources/assets/custom_ore_gen/models/block/lapisore.json b/src/main/resources/assets/custom_ore_gen/models/block/lapisore.json new file mode 100644 index 000000000..7a043df5e --- /dev/null +++ b/src/main/resources/assets/custom_ore_gen/models/block/lapisore.json @@ -0,0 +1,8 @@ +{ + "parent": "block/cube_all", + "textures": { + "all": "minecraft:block/lapis_ore", + "particle": "minecraft:block/lapis_ore" + }, + "render_type": "solid" +} \ No newline at end of file diff --git a/src/main/resources/assets/custom_ore_gen/models/block/loweremeraldore.json b/src/main/resources/assets/custom_ore_gen/models/block/loweremeraldore.json new file mode 100644 index 000000000..9e1199160 --- /dev/null +++ b/src/main/resources/assets/custom_ore_gen/models/block/loweremeraldore.json @@ -0,0 +1,8 @@ +{ + "parent": "block/cube_all", + "textures": { + "all": "minecraft:block/deepslate_emerald_ore", + "particle": "minecraft:block/deepslate_emerald_ore" + }, + "render_type": "solid" +} \ No newline at end of file diff --git a/src/main/resources/assets/custom_ore_gen/models/block/puregoldenore.json b/src/main/resources/assets/custom_ore_gen/models/block/puregoldenore.json new file mode 100644 index 000000000..fc615b85d --- /dev/null +++ b/src/main/resources/assets/custom_ore_gen/models/block/puregoldenore.json @@ -0,0 +1,8 @@ +{ + "parent": "block/cube_all", + "textures": { + "all": "minecraft:block/gold_ore", + "particle": "minecraft:block/gold_ore" + }, + "render_type": "solid" +} \ No newline at end of file diff --git a/src/main/resources/assets/custom_ore_gen/models/block/redstoneore.json b/src/main/resources/assets/custom_ore_gen/models/block/redstoneore.json new file mode 100644 index 000000000..3990ddb36 --- /dev/null +++ b/src/main/resources/assets/custom_ore_gen/models/block/redstoneore.json @@ -0,0 +1,8 @@ +{ + "parent": "block/cube_all", + "textures": { + "all": "minecraft:block/redstone_ore", + "particle": "minecraft:block/redstone_ore" + }, + "render_type": "solid" +} \ No newline at end of file diff --git a/src/main/resources/assets/custom_ore_gen/models/block/sharddiamondblockore.json b/src/main/resources/assets/custom_ore_gen/models/block/sharddiamondblockore.json new file mode 100644 index 000000000..118a6fc78 --- /dev/null +++ b/src/main/resources/assets/custom_ore_gen/models/block/sharddiamondblockore.json @@ -0,0 +1,8 @@ +{ + "parent": "block/cube_all", + "textures": { + "all": "custom_ore_gen:block/shard_diamond_ore_2", + "particle": "custom_ore_gen:block/shard_diamond_ore_2" + }, + "render_type": "solid" +} \ No newline at end of file diff --git a/src/main/resources/assets/custom_ore_gen/models/item/concentratedcoalore.json b/src/main/resources/assets/custom_ore_gen/models/item/concentratedcoalore.json new file mode 100644 index 000000000..de42fdb53 --- /dev/null +++ b/src/main/resources/assets/custom_ore_gen/models/item/concentratedcoalore.json @@ -0,0 +1,22 @@ +{ + "parent": "custom_ore_gen:block/concentratedcoalore", + "display": { + "thirdperson": { + "rotation": [ + 10, + -45, + 170 + ], + "translation": [ + 0, + 1.5, + -2.75 + ], + "scale": [ + 0.375, + 0.375, + 0.375 + ] + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/custom_ore_gen/models/item/concentrateddiamondore.json b/src/main/resources/assets/custom_ore_gen/models/item/concentrateddiamondore.json new file mode 100644 index 000000000..5c80ce544 --- /dev/null +++ b/src/main/resources/assets/custom_ore_gen/models/item/concentrateddiamondore.json @@ -0,0 +1,22 @@ +{ + "parent": "custom_ore_gen:block/concentrateddiamondore", + "display": { + "thirdperson": { + "rotation": [ + 10, + -45, + 170 + ], + "translation": [ + 0, + 1.5, + -2.75 + ], + "scale": [ + 0.375, + 0.375, + 0.375 + ] + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/custom_ore_gen/models/item/copperhighore.json b/src/main/resources/assets/custom_ore_gen/models/item/copperhighore.json new file mode 100644 index 000000000..f410c2dd2 --- /dev/null +++ b/src/main/resources/assets/custom_ore_gen/models/item/copperhighore.json @@ -0,0 +1,22 @@ +{ + "parent": "custom_ore_gen:block/copperhighore", + "display": { + "thirdperson": { + "rotation": [ + 10, + -45, + 170 + ], + "translation": [ + 0, + 1.5, + -2.75 + ], + "scale": [ + 0.375, + 0.375, + 0.375 + ] + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/custom_ore_gen/models/item/copperlowerore.json b/src/main/resources/assets/custom_ore_gen/models/item/copperlowerore.json new file mode 100644 index 000000000..3e3af9c86 --- /dev/null +++ b/src/main/resources/assets/custom_ore_gen/models/item/copperlowerore.json @@ -0,0 +1,22 @@ +{ + "parent": "custom_ore_gen:block/copperlowerore", + "display": { + "thirdperson": { + "rotation": [ + 10, + -45, + 170 + ], + "translation": [ + 0, + 1.5, + -2.75 + ], + "scale": [ + 0.375, + 0.375, + 0.375 + ] + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/custom_ore_gen/models/item/deepslateironore.json b/src/main/resources/assets/custom_ore_gen/models/item/deepslateironore.json new file mode 100644 index 000000000..c5850e04a --- /dev/null +++ b/src/main/resources/assets/custom_ore_gen/models/item/deepslateironore.json @@ -0,0 +1,22 @@ +{ + "parent": "custom_ore_gen:block/deepslateironore", + "display": { + "thirdperson": { + "rotation": [ + 10, + -45, + 170 + ], + "translation": [ + 0, + 1.5, + -2.75 + ], + "scale": [ + 0.375, + 0.375, + 0.375 + ] + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/custom_ore_gen/models/item/deepslatelapisore.json b/src/main/resources/assets/custom_ore_gen/models/item/deepslatelapisore.json new file mode 100644 index 000000000..1f17dd413 --- /dev/null +++ b/src/main/resources/assets/custom_ore_gen/models/item/deepslatelapisore.json @@ -0,0 +1,22 @@ +{ + "parent": "custom_ore_gen:block/deepslatelapisore", + "display": { + "thirdperson": { + "rotation": [ + 10, + -45, + 170 + ], + "translation": [ + 0, + 1.5, + -2.75 + ], + "scale": [ + 0.375, + 0.375, + 0.375 + ] + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/custom_ore_gen/models/item/deepslatepuregoldenore.json b/src/main/resources/assets/custom_ore_gen/models/item/deepslatepuregoldenore.json new file mode 100644 index 000000000..2361e4529 --- /dev/null +++ b/src/main/resources/assets/custom_ore_gen/models/item/deepslatepuregoldenore.json @@ -0,0 +1,22 @@ +{ + "parent": "custom_ore_gen:block/deepslatepuregoldenore", + "display": { + "thirdperson": { + "rotation": [ + 10, + -45, + 170 + ], + "translation": [ + 0, + 1.5, + -2.75 + ], + "scale": [ + 0.375, + 0.375, + 0.375 + ] + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/custom_ore_gen/models/item/deepslateredstoneore.json b/src/main/resources/assets/custom_ore_gen/models/item/deepslateredstoneore.json new file mode 100644 index 000000000..5a67db2e8 --- /dev/null +++ b/src/main/resources/assets/custom_ore_gen/models/item/deepslateredstoneore.json @@ -0,0 +1,22 @@ +{ + "parent": "custom_ore_gen:block/deepslateredstoneore", + "display": { + "thirdperson": { + "rotation": [ + 10, + -45, + 170 + ], + "translation": [ + 0, + 1.5, + -2.75 + ], + "scale": [ + 0.375, + 0.375, + 0.375 + ] + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/custom_ore_gen/models/item/deepslatesharddiamondore.json b/src/main/resources/assets/custom_ore_gen/models/item/deepslatesharddiamondore.json new file mode 100644 index 000000000..492957cd9 --- /dev/null +++ b/src/main/resources/assets/custom_ore_gen/models/item/deepslatesharddiamondore.json @@ -0,0 +1,22 @@ +{ + "parent": "custom_ore_gen:block/deepslatesharddiamondore", + "display": { + "thirdperson": { + "rotation": [ + 10, + -45, + 170 + ], + "translation": [ + 0, + 1.5, + -2.75 + ], + "scale": [ + 0.375, + 0.375, + 0.375 + ] + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/custom_ore_gen/models/item/diamondshard.json b/src/main/resources/assets/custom_ore_gen/models/item/diamondshard.json new file mode 100644 index 000000000..be96af9db --- /dev/null +++ b/src/main/resources/assets/custom_ore_gen/models/item/diamondshard.json @@ -0,0 +1,6 @@ +{ + "parent": "item/generated", + "textures": { + "layer0": "custom_ore_gen:item/shard_diamond-removebg-preview" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/custom_ore_gen/models/item/highemeraldore.json b/src/main/resources/assets/custom_ore_gen/models/item/highemeraldore.json new file mode 100644 index 000000000..2b75dd530 --- /dev/null +++ b/src/main/resources/assets/custom_ore_gen/models/item/highemeraldore.json @@ -0,0 +1,22 @@ +{ + "parent": "custom_ore_gen:block/highemeraldore", + "display": { + "thirdperson": { + "rotation": [ + 10, + -45, + 170 + ], + "translation": [ + 0, + 1.5, + -2.75 + ], + "scale": [ + 0.375, + 0.375, + 0.375 + ] + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/custom_ore_gen/models/item/ironore.json b/src/main/resources/assets/custom_ore_gen/models/item/ironore.json new file mode 100644 index 000000000..c15e24e25 --- /dev/null +++ b/src/main/resources/assets/custom_ore_gen/models/item/ironore.json @@ -0,0 +1,22 @@ +{ + "parent": "custom_ore_gen:block/ironore", + "display": { + "thirdperson": { + "rotation": [ + 10, + -45, + 170 + ], + "translation": [ + 0, + 1.5, + -2.75 + ], + "scale": [ + 0.375, + 0.375, + 0.375 + ] + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/custom_ore_gen/models/item/lapisore.json b/src/main/resources/assets/custom_ore_gen/models/item/lapisore.json new file mode 100644 index 000000000..9585fe1c0 --- /dev/null +++ b/src/main/resources/assets/custom_ore_gen/models/item/lapisore.json @@ -0,0 +1,22 @@ +{ + "parent": "custom_ore_gen:block/lapisore", + "display": { + "thirdperson": { + "rotation": [ + 10, + -45, + 170 + ], + "translation": [ + 0, + 1.5, + -2.75 + ], + "scale": [ + 0.375, + 0.375, + 0.375 + ] + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/custom_ore_gen/models/item/loweremeraldore.json b/src/main/resources/assets/custom_ore_gen/models/item/loweremeraldore.json new file mode 100644 index 000000000..bd8fd4934 --- /dev/null +++ b/src/main/resources/assets/custom_ore_gen/models/item/loweremeraldore.json @@ -0,0 +1,22 @@ +{ + "parent": "custom_ore_gen:block/loweremeraldore", + "display": { + "thirdperson": { + "rotation": [ + 10, + -45, + 170 + ], + "translation": [ + 0, + 1.5, + -2.75 + ], + "scale": [ + 0.375, + 0.375, + 0.375 + ] + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/custom_ore_gen/models/item/puregoldenore.json b/src/main/resources/assets/custom_ore_gen/models/item/puregoldenore.json new file mode 100644 index 000000000..7e4ee4089 --- /dev/null +++ b/src/main/resources/assets/custom_ore_gen/models/item/puregoldenore.json @@ -0,0 +1,22 @@ +{ + "parent": "custom_ore_gen:block/puregoldenore", + "display": { + "thirdperson": { + "rotation": [ + 10, + -45, + 170 + ], + "translation": [ + 0, + 1.5, + -2.75 + ], + "scale": [ + 0.375, + 0.375, + 0.375 + ] + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/custom_ore_gen/models/item/redstoneore.json b/src/main/resources/assets/custom_ore_gen/models/item/redstoneore.json new file mode 100644 index 000000000..a9a2767f8 --- /dev/null +++ b/src/main/resources/assets/custom_ore_gen/models/item/redstoneore.json @@ -0,0 +1,22 @@ +{ + "parent": "custom_ore_gen:block/redstoneore", + "display": { + "thirdperson": { + "rotation": [ + 10, + -45, + 170 + ], + "translation": [ + 0, + 1.5, + -2.75 + ], + "scale": [ + 0.375, + 0.375, + 0.375 + ] + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/custom_ore_gen/models/item/sharddiamondaxe.json b/src/main/resources/assets/custom_ore_gen/models/item/sharddiamondaxe.json new file mode 100644 index 000000000..8cf5a6bd9 --- /dev/null +++ b/src/main/resources/assets/custom_ore_gen/models/item/sharddiamondaxe.json @@ -0,0 +1,6 @@ +{ + "parent": "item/handheld", + "textures": { + "layer0": "custom_ore_gen:item/shard_diamond_axe" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/custom_ore_gen/models/item/sharddiamondblockore.json b/src/main/resources/assets/custom_ore_gen/models/item/sharddiamondblockore.json new file mode 100644 index 000000000..a90ef4c8c --- /dev/null +++ b/src/main/resources/assets/custom_ore_gen/models/item/sharddiamondblockore.json @@ -0,0 +1,22 @@ +{ + "parent": "custom_ore_gen:block/sharddiamondblockore", + "display": { + "thirdperson": { + "rotation": [ + 10, + -45, + 170 + ], + "translation": [ + 0, + 1.5, + -2.75 + ], + "scale": [ + 0.375, + 0.375, + 0.375 + ] + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/custom_ore_gen/models/item/sharddiamondpickaxe.json b/src/main/resources/assets/custom_ore_gen/models/item/sharddiamondpickaxe.json new file mode 100644 index 000000000..9924bbc2d --- /dev/null +++ b/src/main/resources/assets/custom_ore_gen/models/item/sharddiamondpickaxe.json @@ -0,0 +1,6 @@ +{ + "parent": "item/handheld", + "textures": { + "layer0": "custom_ore_gen:item/shard_diamond_pickaxe" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/custom_ore_gen/models/item/sharddiamondshovel.json b/src/main/resources/assets/custom_ore_gen/models/item/sharddiamondshovel.json new file mode 100644 index 000000000..e8a00b037 --- /dev/null +++ b/src/main/resources/assets/custom_ore_gen/models/item/sharddiamondshovel.json @@ -0,0 +1,6 @@ +{ + "parent": "item/handheld", + "textures": { + "layer0": "custom_ore_gen:item/shard_diamond_shovel" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/custom_ore_gen/textures/block/ash_coal.png b/src/main/resources/assets/custom_ore_gen/textures/block/ash_coal.png new file mode 100644 index 000000000..414562791 Binary files /dev/null and b/src/main/resources/assets/custom_ore_gen/textures/block/ash_coal.png differ diff --git a/src/main/resources/assets/custom_ore_gen/textures/block/ash_coal_ore.png b/src/main/resources/assets/custom_ore_gen/textures/block/ash_coal_ore.png new file mode 100644 index 000000000..53316bb48 Binary files /dev/null and b/src/main/resources/assets/custom_ore_gen/textures/block/ash_coal_ore.png differ diff --git a/src/main/resources/assets/custom_ore_gen/textures/block/coal_fragment_ore.png b/src/main/resources/assets/custom_ore_gen/textures/block/coal_fragment_ore.png new file mode 100644 index 000000000..da9766963 Binary files /dev/null and b/src/main/resources/assets/custom_ore_gen/textures/block/coal_fragment_ore.png differ diff --git a/src/main/resources/assets/custom_ore_gen/textures/block/concentrated_coal.png b/src/main/resources/assets/custom_ore_gen/textures/block/concentrated_coal.png new file mode 100644 index 000000000..466863f09 Binary files /dev/null and b/src/main/resources/assets/custom_ore_gen/textures/block/concentrated_coal.png differ diff --git a/src/main/resources/assets/custom_ore_gen/textures/block/deepslate_impure_copper_ore.png b/src/main/resources/assets/custom_ore_gen/textures/block/deepslate_impure_copper_ore.png new file mode 100644 index 000000000..ff2516a4b Binary files /dev/null and b/src/main/resources/assets/custom_ore_gen/textures/block/deepslate_impure_copper_ore.png differ diff --git a/src/main/resources/assets/custom_ore_gen/textures/block/deepslate_impure_gold_ore.png b/src/main/resources/assets/custom_ore_gen/textures/block/deepslate_impure_gold_ore.png new file mode 100644 index 000000000..2c1843bbe Binary files /dev/null and b/src/main/resources/assets/custom_ore_gen/textures/block/deepslate_impure_gold_ore.png differ diff --git a/src/main/resources/assets/custom_ore_gen/textures/block/deepslate_impure_iron_ore.png b/src/main/resources/assets/custom_ore_gen/textures/block/deepslate_impure_iron_ore.png new file mode 100644 index 000000000..220548729 Binary files /dev/null and b/src/main/resources/assets/custom_ore_gen/textures/block/deepslate_impure_iron_ore.png differ diff --git a/src/main/resources/assets/custom_ore_gen/textures/block/deepslate_pure_gold_ore.png b/src/main/resources/assets/custom_ore_gen/textures/block/deepslate_pure_gold_ore.png new file mode 100644 index 000000000..646d20840 Binary files /dev/null and b/src/main/resources/assets/custom_ore_gen/textures/block/deepslate_pure_gold_ore.png differ diff --git a/src/main/resources/assets/custom_ore_gen/textures/block/impure_copper_ore.png b/src/main/resources/assets/custom_ore_gen/textures/block/impure_copper_ore.png new file mode 100644 index 000000000..a955c9c2c Binary files /dev/null and b/src/main/resources/assets/custom_ore_gen/textures/block/impure_copper_ore.png differ diff --git a/src/main/resources/assets/custom_ore_gen/textures/block/impure_gold_ore.png b/src/main/resources/assets/custom_ore_gen/textures/block/impure_gold_ore.png new file mode 100644 index 000000000..fdf74de04 Binary files /dev/null and b/src/main/resources/assets/custom_ore_gen/textures/block/impure_gold_ore.png differ diff --git a/src/main/resources/assets/custom_ore_gen/textures/block/impure_iron.png b/src/main/resources/assets/custom_ore_gen/textures/block/impure_iron.png new file mode 100644 index 000000000..2da83c5a0 Binary files /dev/null and b/src/main/resources/assets/custom_ore_gen/textures/block/impure_iron.png differ diff --git a/src/main/resources/assets/custom_ore_gen/textures/block/impure_iron_ore.png b/src/main/resources/assets/custom_ore_gen/textures/block/impure_iron_ore.png new file mode 100644 index 000000000..3dcc2781f Binary files /dev/null and b/src/main/resources/assets/custom_ore_gen/textures/block/impure_iron_ore.png differ diff --git a/src/main/resources/assets/custom_ore_gen/textures/block/pure_golden_ore.png b/src/main/resources/assets/custom_ore_gen/textures/block/pure_golden_ore.png new file mode 100644 index 000000000..3c2932498 Binary files /dev/null and b/src/main/resources/assets/custom_ore_gen/textures/block/pure_golden_ore.png differ diff --git a/src/main/resources/assets/custom_ore_gen/textures/block/shard_diamond_deepslate_ore.png b/src/main/resources/assets/custom_ore_gen/textures/block/shard_diamond_deepslate_ore.png new file mode 100644 index 000000000..b0b7f73df Binary files /dev/null and b/src/main/resources/assets/custom_ore_gen/textures/block/shard_diamond_deepslate_ore.png differ diff --git a/src/main/resources/assets/custom_ore_gen/textures/block/shard_diamond_ore.png b/src/main/resources/assets/custom_ore_gen/textures/block/shard_diamond_ore.png new file mode 100644 index 000000000..c83f36dfa Binary files /dev/null and b/src/main/resources/assets/custom_ore_gen/textures/block/shard_diamond_ore.png differ diff --git a/src/main/resources/assets/custom_ore_gen/textures/block/shard_diamond_ore_2.png b/src/main/resources/assets/custom_ore_gen/textures/block/shard_diamond_ore_2.png new file mode 100644 index 000000000..148b5b0ce Binary files /dev/null and b/src/main/resources/assets/custom_ore_gen/textures/block/shard_diamond_ore_2.png differ diff --git a/src/main/resources/assets/custom_ore_gen/textures/block/shard_diamond_shovel.png b/src/main/resources/assets/custom_ore_gen/textures/block/shard_diamond_shovel.png new file mode 100644 index 000000000..ca9a574a1 Binary files /dev/null and b/src/main/resources/assets/custom_ore_gen/textures/block/shard_diamond_shovel.png differ diff --git a/src/main/resources/assets/custom_ore_gen/textures/item/ash_coal.png b/src/main/resources/assets/custom_ore_gen/textures/item/ash_coal.png new file mode 100644 index 000000000..20fb37e58 Binary files /dev/null and b/src/main/resources/assets/custom_ore_gen/textures/item/ash_coal.png differ diff --git a/src/main/resources/assets/custom_ore_gen/textures/item/diamond_shard.png b/src/main/resources/assets/custom_ore_gen/textures/item/diamond_shard.png new file mode 100644 index 000000000..e349a79c5 Binary files /dev/null and b/src/main/resources/assets/custom_ore_gen/textures/item/diamond_shard.png differ diff --git a/src/main/resources/assets/custom_ore_gen/textures/item/iron.png b/src/main/resources/assets/custom_ore_gen/textures/item/iron.png new file mode 100644 index 000000000..224dd7356 Binary files /dev/null and b/src/main/resources/assets/custom_ore_gen/textures/item/iron.png differ diff --git a/src/main/resources/assets/custom_ore_gen/textures/item/iron_shard.png b/src/main/resources/assets/custom_ore_gen/textures/item/iron_shard.png new file mode 100644 index 000000000..97f41141b Binary files /dev/null and b/src/main/resources/assets/custom_ore_gen/textures/item/iron_shard.png differ diff --git a/src/main/resources/assets/custom_ore_gen/textures/item/shard_diamond-removebg-preview.png b/src/main/resources/assets/custom_ore_gen/textures/item/shard_diamond-removebg-preview.png new file mode 100644 index 000000000..7731bc30f Binary files /dev/null and b/src/main/resources/assets/custom_ore_gen/textures/item/shard_diamond-removebg-preview.png differ diff --git a/src/main/resources/assets/custom_ore_gen/textures/item/shard_diamond.png b/src/main/resources/assets/custom_ore_gen/textures/item/shard_diamond.png new file mode 100644 index 000000000..7731bc30f Binary files /dev/null and b/src/main/resources/assets/custom_ore_gen/textures/item/shard_diamond.png differ diff --git a/src/main/resources/assets/custom_ore_gen/textures/item/shard_diamond_axe.png b/src/main/resources/assets/custom_ore_gen/textures/item/shard_diamond_axe.png new file mode 100644 index 000000000..e36cb6056 Binary files /dev/null and b/src/main/resources/assets/custom_ore_gen/textures/item/shard_diamond_axe.png differ diff --git a/src/main/resources/assets/custom_ore_gen/textures/item/shard_diamond_pickaxe.png b/src/main/resources/assets/custom_ore_gen/textures/item/shard_diamond_pickaxe.png new file mode 100644 index 000000000..db2915708 Binary files /dev/null and b/src/main/resources/assets/custom_ore_gen/textures/item/shard_diamond_pickaxe.png differ diff --git a/src/main/resources/assets/custom_ore_gen/textures/item/shard_diamond_shovel.png b/src/main/resources/assets/custom_ore_gen/textures/item/shard_diamond_shovel.png new file mode 100644 index 000000000..ca9a574a1 Binary files /dev/null and b/src/main/resources/assets/custom_ore_gen/textures/item/shard_diamond_shovel.png differ diff --git a/src/main/resources/assets/minecraft/blockstates/diamond_ore.json b/src/main/resources/assets/minecraft/blockstates/diamond_ore.json new file mode 100644 index 000000000..e69de29bb diff --git a/src/main/resources/custom_ore_gen-common.toml b/src/main/resources/custom_ore_gen-common.toml new file mode 100644 index 000000000..215d06345 --- /dev/null +++ b/src/main/resources/custom_ore_gen-common.toml @@ -0,0 +1,179 @@ + +#========================== +# Custom Ore Gem - Configuration +#========================== +# Ce fichier permet de personnaliser le mod Custom Ore Gem +# Modifiez ces valeurs pour ajuster la gĂ©nĂ©ration des minerais, les stats des outils et plus encore! + + +#========================== +# GĂ©nĂ©ration des Minerais +#========================== +[ore_generation] + + # Configuration du Minerai d'Éclats de Diamant + [ore_generation.shard_diamond_ore] + # Hauteur minimale de gĂ©nĂ©ration (par dĂ©faut: 0) + # Min: -64, Max: 320 + minHeight = 0 + # Hauteur maximale de gĂ©nĂ©ration (par dĂ©faut: 15) + # Min: -64, Max: 320 + maxHeight = 15 + # Nombre de filons par chunk (par dĂ©faut: 1) + # Min: 0, Max: 20 + veinsPerChunk = 1 + # Taille des filons (par dĂ©faut: 8) + # Min: 1, Max: 32 + veinSize = 8 + + # Configuration du Minerai de Diamant ConcentrĂ© + [ore_generation.concentrated_diamond_ore] + # Nombre de filons par chunk (par dĂ©faut: 1) + veinsPerChunk = 1 + # Taille des filons (par dĂ©faut: 8) + veinSize = 8 + + # Configuration du Minerai d'Or Pur + [ore_generation.pure_golden_ore] + # Nombre de filons par chunk (par dĂ©faut: 4) + veinsPerChunk = 4 + # Hauteur minimale de gĂ©nĂ©ration (par dĂ©faut: 0) + minHeight = 0 + # Hauteur maximale de gĂ©nĂ©ration (par dĂ©faut: 256) + maxHeight = 256 + + # Configuration du Minerai de Charbon ConcentrĂ© + [ore_generation.concentrated_coal_ore] + veinsPerChunk = 2 + + # Configuration des Minerais Impurs + [ore_generation.impure_ores] + # Nombre de filons de Fer Impur par chunk (par dĂ©faut: 2) + ironVeinsPerChunk = 2 + # Nombre de filons d'Or Impur par chunk (par dĂ©faut: 2) + goldVeinsPerChunk = 2 + + # Configuration des Minerais d'Émeraude + [ore_generation.emerald_ores] + # Nombre de filons de Haut Émeraude par chunk (par dĂ©faut: 1) + highVeinsPerChunk = 1 + # Nombre de filons de Bas Émeraude par chunk (par dĂ©faut: 1) + lowerVeinsPerChunk = 1 + + # Configuration des Minerais de Cuivre + [ore_generation.copper_ores] + # Nombre de filons de Haut Cuivre par chunk (par dĂ©faut: 2) + highVeinsPerChunk = 2 + # Nombre de filons de Bas Cuivre par chunk (par dĂ©faut: 2) + lowerVeinsPerChunk = 2 + + +#========================== +# Stats des Outils +#========================== +[tool_stats] + + # Configuration des Outils en Éclats de Diamant + [tool_stats.shard_diamond_tools] + # DurabilitĂ© de la Pioche (par dĂ©faut: 200) + # Min: 1, Max: 5000 + pickaxeDurability = 200 + # Vitesse de minage de la Pioche (par dĂ©faut: 7.0) + pickaxeSpeed = 7.0 + # DĂ©gĂąts d'attaque de la Pioche (par dĂ©faut: 1) + pickaxeAttackDamage = 1 + + # DurabilitĂ© de la Hache (par dĂ©faut: 200) + axeDurability = 200 + # Vitesse de minage de la Hache (par dĂ©faut: 7.0) + axeSpeed = 7.0 + # DĂ©gĂąts d'attaque de la Hache (par dĂ©faut: 6) + axeAttackDamage = 6 + + # DurabilitĂ© de la Pelle (par dĂ©faut: 200) + shovelDurability = 200 + # Vitesse de minage de la Pelle (par dĂ©faut: 4.0) + shovelSpeed = 4.0 + # DĂ©gĂąts d'attaque de la Pelle (par dĂ©faut: 2) + shovelAttackDamage = 2 + + +#========================== +# Drops des Minerais +#========================== +[drops] + + # Configuration du Minerai d'Éclats de Diamant + [drops.shard_diamond_ore] + # Nombre minimum d'Ă©clats droppĂ©s (par dĂ©faut: 1) + minDrops = 1 + # Nombre maximum d'Ă©clats droppĂ©s (par dĂ©faut: 2) + maxDrops = 2 + # Activer l'enchantement Fortune (par dĂ©faut: true) + enableFortune = true + + # Configuration du Minerai de Diamant ConcentrĂ© + [drops.concentrated_diamond_ore] + # Nombre minimum de diamants droppĂ©s (par dĂ©faut: 1) + minDrops = 1 + # Nombre maximum de diamants droppĂ©s (par dĂ©faut: 2) + maxDrops = 2 + # Activer l'enchantement Fortune (par dĂ©faut: true) + enableFortune = true + + # Configuration du Minerai de Charbon ConcentrĂ© + [drops.concentrated_coal_ore] + # Nombre minimum de charbon droppĂ© (par dĂ©faut: 2) + minDrops = 2 + # Nombre maximum de charbon droppĂ© (par dĂ©faut: 4) + maxDrops = 4 + + # Configuration du Minerai d'Or Pur + [drops.pure_golden_ore] + # Nombre minimum de pĂ©pites d'or droppĂ©es (par dĂ©faut: 2) + minDrops = 2 + # Nombre maximum de pĂ©pites d'or droppĂ©es (par dĂ©faut: 4) + maxDrops = 4 + + # Configuration du Minerai de Charbon de Cendre + [drops.ash_coal_ore] + # Nombre minimum de charbon de cendre droppĂ© (par dĂ©faut: 1) + minDrops = 1 + # Nombre maximum de charbon de cendre droppĂ© (par dĂ©faut: 2) + maxDrops = 2 + + # Configuration des Minerais Impurs + [drops.impure_ores] + # Configuration du Fer Impur + ironMinDrops = 1 + ironMaxDrops = 2 + # Configuration de l'Or Impur + goldMinDrops = 1 + goldMaxDrops = 2 + + # ExpĂ©rience droppĂ©e par les minerais personnalisĂ©s (par dĂ©faut: 2) + oreExperience = 2 + + +#========================== +# Activation des FonctionnalitĂ©s +#========================== +[features] + # Activer les Outils en Éclats de Diamant (par dĂ©faut: true) + enableShardDiamondTools = true + # Activer le Minerai d'Éclats de Diamant (par dĂ©faut: true) + enableShardDiamondOre = true + # Activer les Minerais ConcentrĂ©s (Diamant, Charbon) (par dĂ©faut: true) + enableConcentratedOres = true + # Activer les Minerais Impurs (Fer, Or) (par dĂ©faut: true) + enableImpureOres = true + # Activer le Minerai de Charbon de Cendre (par dĂ©faut: true) + enableAshCoalOre = true + # Activer le Minerai d'Or Pur (par dĂ©faut: true) + enablePureGoldenOre = true + # Activer les Minerais d'Émeraude PersonnalisĂ©s (Haut, Bas) (par dĂ©faut: true) + enableCustomEmeraldOres = true + # Activer les Minerais de Cuivre PersonnalisĂ©s (Haut, Bas) (par dĂ©faut: true) + enableCustomCopperOres = true + # Activer les Variantes de Minerais Vanilla (Fer, Redstone, Lapis, etc.) (par dĂ©faut: true) + enableVanillaOreVariants = true diff --git a/src/main/resources/data/custom_ore_gen/forge/biome_modifier/concentratedcoalore_biome_modifier.json b/src/main/resources/data/custom_ore_gen/forge/biome_modifier/concentratedcoalore_biome_modifier.json new file mode 100644 index 000000000..39aaa6eae --- /dev/null +++ b/src/main/resources/data/custom_ore_gen/forge/biome_modifier/concentratedcoalore_biome_modifier.json @@ -0,0 +1,6 @@ +{ + "type": "forge:add_features", + "biomes": "#custom_ore_gen:tempered_biomes", + "features": "custom_ore_gen:concentratedcoalore", + "step": "underground_ores" +} \ No newline at end of file diff --git a/src/main/resources/data/custom_ore_gen/forge/biome_modifier/concentrateddiamondore_biome_modifier.json b/src/main/resources/data/custom_ore_gen/forge/biome_modifier/concentrateddiamondore_biome_modifier.json new file mode 100644 index 000000000..574501f4b --- /dev/null +++ b/src/main/resources/data/custom_ore_gen/forge/biome_modifier/concentrateddiamondore_biome_modifier.json @@ -0,0 +1,6 @@ +{ + "type": "forge:add_features", + "biomes": "#custom_ore_gen:cold_biomes", + "features": "custom_ore_gen:concentrateddiamondore", + "step": "underground_ores" +} \ No newline at end of file diff --git a/src/main/resources/data/custom_ore_gen/forge/biome_modifier/copperhighore_biome_modifier.json b/src/main/resources/data/custom_ore_gen/forge/biome_modifier/copperhighore_biome_modifier.json new file mode 100644 index 000000000..9dd16987c --- /dev/null +++ b/src/main/resources/data/custom_ore_gen/forge/biome_modifier/copperhighore_biome_modifier.json @@ -0,0 +1,6 @@ +{ + "type": "forge:add_features", + "biomes": "#custom_ore_gen:hot_biomes", + "features": "custom_ore_gen:copperhighore", + "step": "underground_ores" +} \ No newline at end of file diff --git a/src/main/resources/data/custom_ore_gen/forge/biome_modifier/copperlowerore_biome_modifier.json b/src/main/resources/data/custom_ore_gen/forge/biome_modifier/copperlowerore_biome_modifier.json new file mode 100644 index 000000000..d4d417df9 --- /dev/null +++ b/src/main/resources/data/custom_ore_gen/forge/biome_modifier/copperlowerore_biome_modifier.json @@ -0,0 +1,6 @@ +{ + "type": "forge:add_features", + "biomes": "#custom_ore_gen:hot_biomes", + "features": "custom_ore_gen:copperlowerore", + "step": "underground_ores" +} \ No newline at end of file diff --git a/src/main/resources/data/custom_ore_gen/forge/biome_modifier/deepslateironore_biome_modifier.json b/src/main/resources/data/custom_ore_gen/forge/biome_modifier/deepslateironore_biome_modifier.json new file mode 100644 index 000000000..530ecf72f --- /dev/null +++ b/src/main/resources/data/custom_ore_gen/forge/biome_modifier/deepslateironore_biome_modifier.json @@ -0,0 +1,6 @@ +{ + "type": "forge:add_features", + "biomes": "#custom_ore_gen:tempered_biomes", + "features": "custom_ore_gen:deepslateironore", + "step": "underground_ores" +} \ No newline at end of file diff --git a/src/main/resources/data/custom_ore_gen/forge/biome_modifier/deepslatelapisore_biome_modifier.json b/src/main/resources/data/custom_ore_gen/forge/biome_modifier/deepslatelapisore_biome_modifier.json new file mode 100644 index 000000000..c8ff24f6c --- /dev/null +++ b/src/main/resources/data/custom_ore_gen/forge/biome_modifier/deepslatelapisore_biome_modifier.json @@ -0,0 +1,6 @@ +{ + "type": "forge:add_features", + "biomes": "#custom_ore_gen:cold_biomes", + "features": "custom_ore_gen:deepslatelapisore", + "step": "underground_ores" +} \ No newline at end of file diff --git a/src/main/resources/data/custom_ore_gen/forge/biome_modifier/deepslatepuregoldenore_biome_modifier.json b/src/main/resources/data/custom_ore_gen/forge/biome_modifier/deepslatepuregoldenore_biome_modifier.json new file mode 100644 index 000000000..24a6ac7c6 --- /dev/null +++ b/src/main/resources/data/custom_ore_gen/forge/biome_modifier/deepslatepuregoldenore_biome_modifier.json @@ -0,0 +1,6 @@ +{ + "type": "forge:add_features", + "biomes": "#custom_ore_gen:hot_biomes", + "features": "custom_ore_gen:deepslatepuregoldenore", + "step": "underground_ores" +} \ No newline at end of file diff --git a/src/main/resources/data/custom_ore_gen/forge/biome_modifier/deepslateredstoneore_biome_modifier.json b/src/main/resources/data/custom_ore_gen/forge/biome_modifier/deepslateredstoneore_biome_modifier.json new file mode 100644 index 000000000..f0a6d915d --- /dev/null +++ b/src/main/resources/data/custom_ore_gen/forge/biome_modifier/deepslateredstoneore_biome_modifier.json @@ -0,0 +1,6 @@ +{ + "type": "forge:add_features", + "biomes": "#custom_ore_gen:hot_biomes", + "features": "custom_ore_gen:deepslateredstoneore", + "step": "underground_ores" +} \ No newline at end of file diff --git a/src/main/resources/data/custom_ore_gen/forge/biome_modifier/deepslatesharddiamondore_biome_modifier.json b/src/main/resources/data/custom_ore_gen/forge/biome_modifier/deepslatesharddiamondore_biome_modifier.json new file mode 100644 index 000000000..989297fb6 --- /dev/null +++ b/src/main/resources/data/custom_ore_gen/forge/biome_modifier/deepslatesharddiamondore_biome_modifier.json @@ -0,0 +1,8 @@ +{ + "type": "forge:add_features", + "biomes": { + "type": "forge:any" + }, + "features": "custom_ore_gen:deepslatesharddiamondore", + "step": "underground_ores" +} \ No newline at end of file diff --git a/src/main/resources/data/custom_ore_gen/forge/biome_modifier/highemeraldore_biome_modifier.json b/src/main/resources/data/custom_ore_gen/forge/biome_modifier/highemeraldore_biome_modifier.json new file mode 100644 index 000000000..c1ad9897f --- /dev/null +++ b/src/main/resources/data/custom_ore_gen/forge/biome_modifier/highemeraldore_biome_modifier.json @@ -0,0 +1,6 @@ +{ + "type": "forge:add_features", + "biomes": "#custom_ore_gen:mountain_biomes", + "features": "custom_ore_gen:highemeraldore", + "step": "underground_ores" +} \ No newline at end of file diff --git a/src/main/resources/data/custom_ore_gen/forge/biome_modifier/ironore_biome_modifier.json b/src/main/resources/data/custom_ore_gen/forge/biome_modifier/ironore_biome_modifier.json new file mode 100644 index 000000000..55292fef5 --- /dev/null +++ b/src/main/resources/data/custom_ore_gen/forge/biome_modifier/ironore_biome_modifier.json @@ -0,0 +1,6 @@ +{ + "type": "forge:add_features", + "biomes": "#custom_ore_gen:tempered_biomes", + "features": "custom_ore_gen:ironore", + "step": "underground_ores" +} \ No newline at end of file diff --git a/src/main/resources/data/custom_ore_gen/forge/biome_modifier/lapisore_biome_modifier.json b/src/main/resources/data/custom_ore_gen/forge/biome_modifier/lapisore_biome_modifier.json new file mode 100644 index 000000000..acd6f44cb --- /dev/null +++ b/src/main/resources/data/custom_ore_gen/forge/biome_modifier/lapisore_biome_modifier.json @@ -0,0 +1,6 @@ +{ + "type": "forge:add_features", + "biomes": "#custom_ore_gen:cold_biomes", + "features": "custom_ore_gen:lapisore", + "step": "underground_ores" +} \ No newline at end of file diff --git a/src/main/resources/data/custom_ore_gen/forge/biome_modifier/loweremeraldore_biome_modifier.json b/src/main/resources/data/custom_ore_gen/forge/biome_modifier/loweremeraldore_biome_modifier.json new file mode 100644 index 000000000..999a93f15 --- /dev/null +++ b/src/main/resources/data/custom_ore_gen/forge/biome_modifier/loweremeraldore_biome_modifier.json @@ -0,0 +1,6 @@ +{ + "type": "forge:add_features", + "biomes": "#custom_ore_gen:rare_biomes", + "features": "custom_ore_gen:loweremeraldore", + "step": "underground_ores" +} \ No newline at end of file diff --git a/src/main/resources/data/custom_ore_gen/forge/biome_modifier/puregoldenore_biome_modifier.json b/src/main/resources/data/custom_ore_gen/forge/biome_modifier/puregoldenore_biome_modifier.json new file mode 100644 index 000000000..129ffeeb0 --- /dev/null +++ b/src/main/resources/data/custom_ore_gen/forge/biome_modifier/puregoldenore_biome_modifier.json @@ -0,0 +1,6 @@ +{ + "type": "forge:add_features", + "biomes": "#custom_ore_gen:hot_biomes", + "features": "custom_ore_gen:puregoldenore", + "step": "underground_ores" +} \ No newline at end of file diff --git a/src/main/resources/data/custom_ore_gen/forge/biome_modifier/redstoneore_biome_modifier.json b/src/main/resources/data/custom_ore_gen/forge/biome_modifier/redstoneore_biome_modifier.json new file mode 100644 index 000000000..c672f8a46 --- /dev/null +++ b/src/main/resources/data/custom_ore_gen/forge/biome_modifier/redstoneore_biome_modifier.json @@ -0,0 +1,6 @@ +{ + "type": "forge:add_features", + "biomes": "#custom_ore_gen:hot_biomes", + "features": "custom_ore_gen:redstoneore", + "step": "underground_ores" +} \ No newline at end of file diff --git a/src/main/resources/data/custom_ore_gen/forge/biome_modifier/sharddiamondblockore_biome_modifier.json b/src/main/resources/data/custom_ore_gen/forge/biome_modifier/sharddiamondblockore_biome_modifier.json new file mode 100644 index 000000000..cffdc4a5e --- /dev/null +++ b/src/main/resources/data/custom_ore_gen/forge/biome_modifier/sharddiamondblockore_biome_modifier.json @@ -0,0 +1,8 @@ +{ + "type": "forge:add_features", + "biomes": { + "type": "forge:any" + }, + "features": "custom_ore_gen:sharddiamondblockore", + "step": "underground_ores" +} \ No newline at end of file diff --git a/src/main/resources/data/custom_ore_gen/loot_tables/blocks/concentratedcoalore.json b/src/main/resources/data/custom_ore_gen/loot_tables/blocks/concentratedcoalore.json new file mode 100644 index 000000000..2b170dd1e --- /dev/null +++ b/src/main/resources/data/custom_ore_gen/loot_tables/blocks/concentratedcoalore.json @@ -0,0 +1,82 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:coal", + "weight": 1, + "conditions": [ + { + "condition": "minecraft:inverted", + "term": { + "condition": "minecraft:match_tool", + "predicate": { + "enchantments": [ + { + "enchantment": "minecraft:silk_touch", + "levels": { + "min": 1 + } + } + ] + } + } + } + ], + "functions": [ + { + "function": "set_count", + "count": { + "min": 1, + "max": 2 + } + }, + { + "function": "minecraft:apply_bonus", + "enchantment": "minecraft:fortune", + "formula": "minecraft:ore_drops" + } + ] + } + ] + }, + { + "rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:coal_ore", + "weight": 1, + "conditions": [ + { + "condition": "minecraft:match_tool", + "predicate": { + "enchantments": [ + { + "enchantment": "minecraft:silk_touch", + "levels": { + "min": 1 + } + } + ] + } + } + ], + "functions": [ + { + "function": "set_count", + "count": { + "min": 1, + "max": 1 + } + } + ] + } + ] + } + ], + "random_sequence": "custom_ore_gen:blocks/concentratedcoalore" +} \ No newline at end of file diff --git a/src/main/resources/data/custom_ore_gen/loot_tables/blocks/concentrateddiamondore.json b/src/main/resources/data/custom_ore_gen/loot_tables/blocks/concentrateddiamondore.json new file mode 100644 index 000000000..cff39b7c9 --- /dev/null +++ b/src/main/resources/data/custom_ore_gen/loot_tables/blocks/concentrateddiamondore.json @@ -0,0 +1,82 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:diamond", + "weight": 1, + "conditions": [ + { + "condition": "minecraft:inverted", + "term": { + "condition": "minecraft:match_tool", + "predicate": { + "enchantments": [ + { + "enchantment": "minecraft:silk_touch", + "levels": { + "min": 1 + } + } + ] + } + } + } + ], + "functions": [ + { + "function": "set_count", + "count": { + "min": 1, + "max": 2 + } + }, + { + "function": "minecraft:apply_bonus", + "enchantment": "minecraft:fortune", + "formula": "minecraft:ore_drops" + } + ] + } + ] + }, + { + "rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "name": "custom_ore_gen:concentrateddiamondore", + "weight": 1, + "conditions": [ + { + "condition": "minecraft:match_tool", + "predicate": { + "enchantments": [ + { + "enchantment": "minecraft:silk_touch", + "levels": { + "min": 1 + } + } + ] + } + } + ], + "functions": [ + { + "function": "set_count", + "count": { + "min": 1, + "max": 1 + } + } + ] + } + ] + } + ], + "random_sequence": "custom_ore_gen:blocks/concentrateddiamondore" +} \ No newline at end of file diff --git a/src/main/resources/data/custom_ore_gen/loot_tables/blocks/copperhighore.json b/src/main/resources/data/custom_ore_gen/loot_tables/blocks/copperhighore.json new file mode 100644 index 000000000..0dcbdc5ca --- /dev/null +++ b/src/main/resources/data/custom_ore_gen/loot_tables/blocks/copperhighore.json @@ -0,0 +1,85 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "rolls": { + "min": 1, + "max": 2 + }, + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:raw_copper", + "weight": 1, + "conditions": [ + { + "condition": "minecraft:inverted", + "term": { + "condition": "minecraft:match_tool", + "predicate": { + "enchantments": [ + { + "enchantment": "minecraft:silk_touch", + "levels": { + "min": 1 + } + } + ] + } + } + } + ], + "functions": [ + { + "function": "set_count", + "count": { + "min": 2, + "max": 5 + } + }, + { + "function": "minecraft:apply_bonus", + "enchantment": "minecraft:fortune", + "formula": "minecraft:ore_drops" + } + ] + } + ] + }, + { + "rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:copper_ore", + "weight": 1, + "conditions": [ + { + "condition": "minecraft:match_tool", + "predicate": { + "enchantments": [ + { + "enchantment": "minecraft:silk_touch", + "levels": { + "min": 1 + } + } + ] + } + } + ], + "functions": [ + { + "function": "set_count", + "count": { + "min": 1, + "max": 1 + } + } + ] + } + ] + } + ], + "random_sequence": "custom_ore_gen:blocks/copperhighore" +} \ No newline at end of file diff --git a/src/main/resources/data/custom_ore_gen/loot_tables/blocks/copperlowerore.json b/src/main/resources/data/custom_ore_gen/loot_tables/blocks/copperlowerore.json new file mode 100644 index 000000000..151d51873 --- /dev/null +++ b/src/main/resources/data/custom_ore_gen/loot_tables/blocks/copperlowerore.json @@ -0,0 +1,85 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "rolls": { + "min": 1, + "max": 2 + }, + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:raw_copper", + "weight": 1, + "conditions": [ + { + "condition": "minecraft:inverted", + "term": { + "condition": "minecraft:match_tool", + "predicate": { + "enchantments": [ + { + "enchantment": "minecraft:silk_touch", + "levels": { + "min": 1 + } + } + ] + } + } + } + ], + "functions": [ + { + "function": "set_count", + "count": { + "min": 2, + "max": 6 + } + }, + { + "function": "minecraft:apply_bonus", + "enchantment": "minecraft:fortune", + "formula": "minecraft:ore_drops" + } + ] + } + ] + }, + { + "rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:deepslate_copper_ore", + "weight": 1, + "conditions": [ + { + "condition": "minecraft:match_tool", + "predicate": { + "enchantments": [ + { + "enchantment": "minecraft:silk_touch", + "levels": { + "min": 1 + } + } + ] + } + } + ], + "functions": [ + { + "function": "set_count", + "count": { + "min": 1, + "max": 1 + } + } + ] + } + ] + } + ], + "random_sequence": "custom_ore_gen:blocks/copperlowerore" +} \ No newline at end of file diff --git a/src/main/resources/data/custom_ore_gen/loot_tables/blocks/deepslateironore.json b/src/main/resources/data/custom_ore_gen/loot_tables/blocks/deepslateironore.json new file mode 100644 index 000000000..b69560b96 --- /dev/null +++ b/src/main/resources/data/custom_ore_gen/loot_tables/blocks/deepslateironore.json @@ -0,0 +1,82 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:raw_iron", + "weight": 1, + "conditions": [ + { + "condition": "minecraft:inverted", + "term": { + "condition": "minecraft:match_tool", + "predicate": { + "enchantments": [ + { + "enchantment": "minecraft:silk_touch", + "levels": { + "min": 1 + } + } + ] + } + } + } + ], + "functions": [ + { + "function": "set_count", + "count": { + "min": 1, + "max": 1 + } + }, + { + "function": "minecraft:apply_bonus", + "enchantment": "minecraft:fortune", + "formula": "minecraft:ore_drops" + } + ] + } + ] + }, + { + "rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "name": "custom_ore_gen:deepslateironore", + "weight": 1, + "conditions": [ + { + "condition": "minecraft:match_tool", + "predicate": { + "enchantments": [ + { + "enchantment": "minecraft:silk_touch", + "levels": { + "min": 1 + } + } + ] + } + } + ], + "functions": [ + { + "function": "set_count", + "count": { + "min": 1, + "max": 1 + } + } + ] + } + ] + } + ], + "random_sequence": "custom_ore_gen:blocks/deepslateironore" +} \ No newline at end of file diff --git a/src/main/resources/data/custom_ore_gen/loot_tables/blocks/deepslatelapisore.json b/src/main/resources/data/custom_ore_gen/loot_tables/blocks/deepslatelapisore.json new file mode 100644 index 000000000..84bda5b16 --- /dev/null +++ b/src/main/resources/data/custom_ore_gen/loot_tables/blocks/deepslatelapisore.json @@ -0,0 +1,90 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:lapis_lazuli", + "weight": 1, + "conditions": [ + { + "condition": "minecraft:inverted", + "term": { + "condition": "minecraft:match_tool", + "predicate": { + "enchantments": [ + { + "enchantment": "minecraft:silk_touch", + "levels": { + "min": 1 + } + } + ] + } + } + } + ], + "functions": [ + { + "function": "set_count", + "count": { + "min": 4, + "max": 6 + } + }, + { + "function": "enchant_with_levels", + "treasure": true, + "levels": { + "min": 1, + "max": 10 + } + }, + { + "function": "minecraft:apply_bonus", + "enchantment": "minecraft:fortune", + "formula": "minecraft:ore_drops" + } + ] + } + ] + }, + { + "rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:deepslate_lapis_ore", + "weight": 1, + "conditions": [ + { + "condition": "minecraft:match_tool", + "predicate": { + "enchantments": [ + { + "enchantment": "minecraft:silk_touch", + "levels": { + "min": 1 + } + } + ] + } + } + ], + "functions": [ + { + "function": "set_count", + "count": { + "min": 1, + "max": 1 + } + } + ] + } + ] + } + ], + "random_sequence": "custom_ore_gen:blocks/deepslatelapisore" +} \ No newline at end of file diff --git a/src/main/resources/data/custom_ore_gen/loot_tables/blocks/deepslatepuregoldenore.json b/src/main/resources/data/custom_ore_gen/loot_tables/blocks/deepslatepuregoldenore.json new file mode 100644 index 000000000..da465a2da --- /dev/null +++ b/src/main/resources/data/custom_ore_gen/loot_tables/blocks/deepslatepuregoldenore.json @@ -0,0 +1,89 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "rolls": { + "min": 1, + "max": 2 + }, + "bonus_rolls": { + "min": 1, + "max": 2 + }, + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:raw_gold", + "weight": 1, + "conditions": [ + { + "condition": "minecraft:inverted", + "term": { + "condition": "minecraft:match_tool", + "predicate": { + "enchantments": [ + { + "enchantment": "minecraft:silk_touch", + "levels": { + "min": 1 + } + } + ] + } + } + } + ], + "functions": [ + { + "function": "set_count", + "count": { + "min": 1, + "max": 2 + } + }, + { + "function": "minecraft:apply_bonus", + "enchantment": "minecraft:fortune", + "formula": "minecraft:ore_drops" + } + ] + } + ] + }, + { + "rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:gold_ore", + "weight": 1, + "conditions": [ + { + "condition": "minecraft:match_tool", + "predicate": { + "enchantments": [ + { + "enchantment": "minecraft:silk_touch", + "levels": { + "min": 1 + } + } + ] + } + } + ], + "functions": [ + { + "function": "set_count", + "count": { + "min": 1, + "max": 1 + } + } + ] + } + ] + } + ], + "random_sequence": "custom_ore_gen:blocks/deepslatepuregoldenore" +} \ No newline at end of file diff --git a/src/main/resources/data/custom_ore_gen/loot_tables/blocks/deepslateredstoneore.json b/src/main/resources/data/custom_ore_gen/loot_tables/blocks/deepslateredstoneore.json new file mode 100644 index 000000000..cf979b9fc --- /dev/null +++ b/src/main/resources/data/custom_ore_gen/loot_tables/blocks/deepslateredstoneore.json @@ -0,0 +1,85 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "rolls": { + "min": 1, + "max": 2 + }, + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:redstone", + "weight": 1, + "conditions": [ + { + "condition": "minecraft:inverted", + "term": { + "condition": "minecraft:match_tool", + "predicate": { + "enchantments": [ + { + "enchantment": "minecraft:silk_touch", + "levels": { + "min": 1 + } + } + ] + } + } + } + ], + "functions": [ + { + "function": "set_count", + "count": { + "min": 4, + "max": 6 + } + }, + { + "function": "minecraft:apply_bonus", + "enchantment": "minecraft:fortune", + "formula": "minecraft:ore_drops" + } + ] + } + ] + }, + { + "rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:deepslate_redstone_ore", + "weight": 1, + "conditions": [ + { + "condition": "minecraft:match_tool", + "predicate": { + "enchantments": [ + { + "enchantment": "minecraft:silk_touch", + "levels": { + "min": 1 + } + } + ] + } + } + ], + "functions": [ + { + "function": "set_count", + "count": { + "min": 1, + "max": 1 + } + } + ] + } + ] + } + ], + "random_sequence": "custom_ore_gen:blocks/deepslateredstoneore" +} \ No newline at end of file diff --git a/src/main/resources/data/custom_ore_gen/loot_tables/blocks/deepslatesharddiamondore.json b/src/main/resources/data/custom_ore_gen/loot_tables/blocks/deepslatesharddiamondore.json new file mode 100644 index 000000000..0b062f02b --- /dev/null +++ b/src/main/resources/data/custom_ore_gen/loot_tables/blocks/deepslatesharddiamondore.json @@ -0,0 +1,82 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "name": "custom_ore_gen:diamondshard", + "weight": 1, + "conditions": [ + { + "condition": "minecraft:inverted", + "term": { + "condition": "minecraft:match_tool", + "predicate": { + "enchantments": [ + { + "enchantment": "minecraft:silk_touch", + "levels": { + "min": 1 + } + } + ] + } + } + } + ], + "functions": [ + { + "function": "set_count", + "count": { + "min": 1, + "max": 2 + } + }, + { + "function": "minecraft:apply_bonus", + "enchantment": "minecraft:fortune", + "formula": "minecraft:ore_drops" + } + ] + } + ] + }, + { + "rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "name": "custom_ore_gen:deepslatesharddiamondore", + "weight": 1, + "conditions": [ + { + "condition": "minecraft:match_tool", + "predicate": { + "enchantments": [ + { + "enchantment": "minecraft:silk_touch", + "levels": { + "min": 1 + } + } + ] + } + } + ], + "functions": [ + { + "function": "set_count", + "count": { + "min": 1, + "max": 1 + } + } + ] + } + ] + } + ], + "random_sequence": "custom_ore_gen:blocks/deepslatesharddiamondore" +} \ No newline at end of file diff --git a/src/main/resources/data/custom_ore_gen/loot_tables/blocks/highemeraldore.json b/src/main/resources/data/custom_ore_gen/loot_tables/blocks/highemeraldore.json new file mode 100644 index 000000000..2d1fc5330 --- /dev/null +++ b/src/main/resources/data/custom_ore_gen/loot_tables/blocks/highemeraldore.json @@ -0,0 +1,82 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:emerald", + "weight": 1, + "conditions": [ + { + "condition": "minecraft:inverted", + "term": { + "condition": "minecraft:match_tool", + "predicate": { + "enchantments": [ + { + "enchantment": "minecraft:silk_touch", + "levels": { + "min": 1 + } + } + ] + } + } + } + ], + "functions": [ + { + "function": "set_count", + "count": { + "min": 1, + "max": 1 + } + }, + { + "function": "minecraft:apply_bonus", + "enchantment": "minecraft:fortune", + "formula": "minecraft:ore_drops" + } + ] + } + ] + }, + { + "rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:emerald_ore", + "weight": 1, + "conditions": [ + { + "condition": "minecraft:match_tool", + "predicate": { + "enchantments": [ + { + "enchantment": "minecraft:silk_touch", + "levels": { + "min": 1 + } + } + ] + } + } + ], + "functions": [ + { + "function": "set_count", + "count": { + "min": 1, + "max": 1 + } + } + ] + } + ] + } + ], + "random_sequence": "custom_ore_gen:blocks/highemeraldore" +} \ No newline at end of file diff --git a/src/main/resources/data/custom_ore_gen/loot_tables/blocks/ironore.json b/src/main/resources/data/custom_ore_gen/loot_tables/blocks/ironore.json new file mode 100644 index 000000000..eb4426fe4 --- /dev/null +++ b/src/main/resources/data/custom_ore_gen/loot_tables/blocks/ironore.json @@ -0,0 +1,82 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:raw_iron", + "weight": 1, + "conditions": [ + { + "condition": "minecraft:inverted", + "term": { + "condition": "minecraft:match_tool", + "predicate": { + "enchantments": [ + { + "enchantment": "minecraft:silk_touch", + "levels": { + "min": 1 + } + } + ] + } + } + } + ], + "functions": [ + { + "function": "set_count", + "count": { + "min": 1, + "max": 1 + } + }, + { + "function": "minecraft:apply_bonus", + "enchantment": "minecraft:fortune", + "formula": "minecraft:ore_drops" + } + ] + } + ] + }, + { + "rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:iron_ore", + "weight": 1, + "conditions": [ + { + "condition": "minecraft:match_tool", + "predicate": { + "enchantments": [ + { + "enchantment": "minecraft:silk_touch", + "levels": { + "min": 1 + } + } + ] + } + } + ], + "functions": [ + { + "function": "set_count", + "count": { + "min": 1, + "max": 1 + } + } + ] + } + ] + } + ], + "random_sequence": "custom_ore_gen:blocks/ironore" +} \ No newline at end of file diff --git a/src/main/resources/data/custom_ore_gen/loot_tables/blocks/lapisore.json b/src/main/resources/data/custom_ore_gen/loot_tables/blocks/lapisore.json new file mode 100644 index 000000000..aedfdc171 --- /dev/null +++ b/src/main/resources/data/custom_ore_gen/loot_tables/blocks/lapisore.json @@ -0,0 +1,90 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:lapis_lazuli", + "weight": 1, + "conditions": [ + { + "condition": "minecraft:inverted", + "term": { + "condition": "minecraft:match_tool", + "predicate": { + "enchantments": [ + { + "enchantment": "minecraft:silk_touch", + "levels": { + "min": 1 + } + } + ] + } + } + } + ], + "functions": [ + { + "function": "set_count", + "count": { + "min": 4, + "max": 8 + } + }, + { + "function": "enchant_with_levels", + "treasure": true, + "levels": { + "min": 0, + "max": 5 + } + }, + { + "function": "minecraft:apply_bonus", + "enchantment": "minecraft:fortune", + "formula": "minecraft:ore_drops" + } + ] + } + ] + }, + { + "rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:lapis_ore", + "weight": 1, + "conditions": [ + { + "condition": "minecraft:match_tool", + "predicate": { + "enchantments": [ + { + "enchantment": "minecraft:silk_touch", + "levels": { + "min": 1 + } + } + ] + } + } + ], + "functions": [ + { + "function": "set_count", + "count": { + "min": 1, + "max": 1 + } + } + ] + } + ] + } + ], + "random_sequence": "custom_ore_gen:blocks/lapisore" +} \ No newline at end of file diff --git a/src/main/resources/data/custom_ore_gen/loot_tables/blocks/loweremeraldore.json b/src/main/resources/data/custom_ore_gen/loot_tables/blocks/loweremeraldore.json new file mode 100644 index 000000000..df10054af --- /dev/null +++ b/src/main/resources/data/custom_ore_gen/loot_tables/blocks/loweremeraldore.json @@ -0,0 +1,82 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:emerald", + "weight": 1, + "conditions": [ + { + "condition": "minecraft:inverted", + "term": { + "condition": "minecraft:match_tool", + "predicate": { + "enchantments": [ + { + "enchantment": "minecraft:silk_touch", + "levels": { + "min": 1 + } + } + ] + } + } + } + ], + "functions": [ + { + "function": "set_count", + "count": { + "min": 1, + "max": 2 + } + }, + { + "function": "minecraft:apply_bonus", + "enchantment": "minecraft:fortune", + "formula": "minecraft:ore_drops" + } + ] + } + ] + }, + { + "rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:deepslate_emerald_ore", + "weight": 1, + "conditions": [ + { + "condition": "minecraft:match_tool", + "predicate": { + "enchantments": [ + { + "enchantment": "minecraft:silk_touch", + "levels": { + "min": 1 + } + } + ] + } + } + ], + "functions": [ + { + "function": "set_count", + "count": { + "min": 1, + "max": 1 + } + } + ] + } + ] + } + ], + "random_sequence": "custom_ore_gen:blocks/loweremeraldore" +} \ No newline at end of file diff --git a/src/main/resources/data/custom_ore_gen/loot_tables/blocks/puregoldenore.json b/src/main/resources/data/custom_ore_gen/loot_tables/blocks/puregoldenore.json new file mode 100644 index 000000000..1cca17874 --- /dev/null +++ b/src/main/resources/data/custom_ore_gen/loot_tables/blocks/puregoldenore.json @@ -0,0 +1,89 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "rolls": { + "min": 1, + "max": 2 + }, + "bonus_rolls": { + "min": 1, + "max": 2 + }, + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:raw_gold", + "weight": 1, + "conditions": [ + { + "condition": "minecraft:inverted", + "term": { + "condition": "minecraft:match_tool", + "predicate": { + "enchantments": [ + { + "enchantment": "minecraft:silk_touch", + "levels": { + "min": 1 + } + } + ] + } + } + } + ], + "functions": [ + { + "function": "set_count", + "count": { + "min": 1, + "max": 2 + } + }, + { + "function": "minecraft:apply_bonus", + "enchantment": "minecraft:fortune", + "formula": "minecraft:ore_drops" + } + ] + } + ] + }, + { + "rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:gold_ore", + "weight": 1, + "conditions": [ + { + "condition": "minecraft:match_tool", + "predicate": { + "enchantments": [ + { + "enchantment": "minecraft:silk_touch", + "levels": { + "min": 1 + } + } + ] + } + } + ], + "functions": [ + { + "function": "set_count", + "count": { + "min": 1, + "max": 1 + } + } + ] + } + ] + } + ], + "random_sequence": "custom_ore_gen:blocks/puregoldenore" +} \ No newline at end of file diff --git a/src/main/resources/data/custom_ore_gen/loot_tables/blocks/redstoneore.json b/src/main/resources/data/custom_ore_gen/loot_tables/blocks/redstoneore.json new file mode 100644 index 000000000..166c949c3 --- /dev/null +++ b/src/main/resources/data/custom_ore_gen/loot_tables/blocks/redstoneore.json @@ -0,0 +1,82 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:redstone", + "weight": 1, + "conditions": [ + { + "condition": "minecraft:inverted", + "term": { + "condition": "minecraft:match_tool", + "predicate": { + "enchantments": [ + { + "enchantment": "minecraft:silk_touch", + "levels": { + "min": 1 + } + } + ] + } + } + } + ], + "functions": [ + { + "function": "set_count", + "count": { + "min": 4, + "max": 5 + } + }, + { + "function": "minecraft:apply_bonus", + "enchantment": "minecraft:fortune", + "formula": "minecraft:ore_drops" + } + ] + } + ] + }, + { + "rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:redstone_ore", + "weight": 1, + "conditions": [ + { + "condition": "minecraft:match_tool", + "predicate": { + "enchantments": [ + { + "enchantment": "minecraft:silk_touch", + "levels": { + "min": 1 + } + } + ] + } + } + ], + "functions": [ + { + "function": "set_count", + "count": { + "min": 1, + "max": 1 + } + } + ] + } + ] + } + ], + "random_sequence": "custom_ore_gen:blocks/redstoneore" +} \ No newline at end of file diff --git a/src/main/resources/data/custom_ore_gen/loot_tables/blocks/sharddiamondblockore.json b/src/main/resources/data/custom_ore_gen/loot_tables/blocks/sharddiamondblockore.json new file mode 100644 index 000000000..59108c0e5 --- /dev/null +++ b/src/main/resources/data/custom_ore_gen/loot_tables/blocks/sharddiamondblockore.json @@ -0,0 +1,82 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "name": "custom_ore_gen:diamondshard", + "weight": 1, + "conditions": [ + { + "condition": "minecraft:inverted", + "term": { + "condition": "minecraft:match_tool", + "predicate": { + "enchantments": [ + { + "enchantment": "minecraft:silk_touch", + "levels": { + "min": 1 + } + } + ] + } + } + } + ], + "functions": [ + { + "function": "set_count", + "count": { + "min": 1, + "max": 2 + } + }, + { + "function": "minecraft:apply_bonus", + "enchantment": "minecraft:fortune", + "formula": "minecraft:ore_drops" + } + ] + } + ] + }, + { + "rolls": 1, + "entries": [ + { + "type": "minecraft:item", + "name": "custom_ore_gen:sharddiamondblockore", + "weight": 1, + "conditions": [ + { + "condition": "minecraft:match_tool", + "predicate": { + "enchantments": [ + { + "enchantment": "minecraft:silk_touch", + "levels": { + "min": 1 + } + } + ] + } + } + ], + "functions": [ + { + "function": "set_count", + "count": { + "min": 1, + "max": 1 + } + } + ] + } + ] + } + ], + "random_sequence": "custom_ore_gen:blocks/sharddiamondblockore" +} \ No newline at end of file diff --git a/src/main/resources/data/custom_ore_gen/recipes/axerecipe.json b/src/main/resources/data/custom_ore_gen/recipes/axerecipe.json new file mode 100644 index 000000000..6de802a1c --- /dev/null +++ b/src/main/resources/data/custom_ore_gen/recipes/axerecipe.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "misc", + "pattern": [ + "aa", + "ab", + " b" + ], + "key": { + "a": { + "item": "custom_ore_gen:diamondshard" + }, + "b": { + "item": "minecraft:stick" + } + }, + "result": { + "item": "custom_ore_gen:sharddiamondaxe", + "count": 1 + } +} \ No newline at end of file diff --git a/src/main/resources/data/custom_ore_gen/recipes/diamondshardtodiamond.json b/src/main/resources/data/custom_ore_gen/recipes/diamondshardtodiamond.json new file mode 100644 index 000000000..8ffceddd4 --- /dev/null +++ b/src/main/resources/data/custom_ore_gen/recipes/diamondshardtodiamond.json @@ -0,0 +1,18 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "misc", + "pattern": [ + "aaa", + "aaa", + "aaa" + ], + "key": { + "a": { + "item": "custom_ore_gen:diamondshard" + } + }, + "result": { + "item": "minecraft:diamond", + "count": 1 + } +} \ No newline at end of file diff --git a/src/main/resources/data/custom_ore_gen/recipes/pickaxecraft.json b/src/main/resources/data/custom_ore_gen/recipes/pickaxecraft.json new file mode 100644 index 000000000..ce86fcfb2 --- /dev/null +++ b/src/main/resources/data/custom_ore_gen/recipes/pickaxecraft.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "misc", + "pattern": [ + "aaa", + " b ", + " b " + ], + "key": { + "a": { + "item": "custom_ore_gen:diamondshard" + }, + "b": { + "item": "minecraft:stick" + } + }, + "result": { + "item": "custom_ore_gen:sharddiamondpickaxe", + "count": 1 + } +} \ No newline at end of file diff --git a/src/main/resources/data/custom_ore_gen/recipes/shovelcraft.json b/src/main/resources/data/custom_ore_gen/recipes/shovelcraft.json new file mode 100644 index 000000000..2d3839063 --- /dev/null +++ b/src/main/resources/data/custom_ore_gen/recipes/shovelcraft.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "misc", + "pattern": [ + "a", + "b", + "b" + ], + "key": { + "a": { + "item": "custom_ore_gen:diamondshard" + }, + "b": { + "item": "minecraft:stick" + } + }, + "result": { + "item": "custom_ore_gen:sharddiamondshovel", + "count": 1 + } +} \ No newline at end of file diff --git a/src/main/resources/data/custom_ore_gen/tags/worldgen/biome/cold_biomes.json b/src/main/resources/data/custom_ore_gen/tags/worldgen/biome/cold_biomes.json new file mode 100644 index 000000000..9bd287c3f --- /dev/null +++ b/src/main/resources/data/custom_ore_gen/tags/worldgen/biome/cold_biomes.json @@ -0,0 +1,20 @@ +{ + "replace": false, + "values": [ + "snowy_slopes", + "snowy_beach", + "snowy_plains", + "snowy_taiga", + "ice_spikes", + "old_growth_pine_taiga", + "old_growth_spruce_taiga", + "taiga", + "cold_ocean", + "deep_cold_ocean", + "frozen_peaks", + "jagged_peaks", + "stony_peaks", + "dripstone_caves", + "deep_dark" + ] +} \ No newline at end of file diff --git a/src/main/resources/data/custom_ore_gen/tags/worldgen/biome/hot_biomes.json b/src/main/resources/data/custom_ore_gen/tags/worldgen/biome/hot_biomes.json new file mode 100644 index 000000000..dbadbec7b --- /dev/null +++ b/src/main/resources/data/custom_ore_gen/tags/worldgen/biome/hot_biomes.json @@ -0,0 +1,17 @@ +{ + "replace": false, + "values": [ + "desert", + "badlands", + "eroded_badlands", + "wooded_badlands", + "deep_lukewarm_ocean", + "lukewarm_ocean", + "mangrove_swamp", + "warm_ocean", + "bamboo_jungle", + "jungle", + "sparse_jungle", + "deep_dark" + ] +} \ No newline at end of file diff --git a/src/main/resources/data/custom_ore_gen/tags/worldgen/biome/mountain_biomes.json b/src/main/resources/data/custom_ore_gen/tags/worldgen/biome/mountain_biomes.json new file mode 100644 index 000000000..d0ebf5b64 --- /dev/null +++ b/src/main/resources/data/custom_ore_gen/tags/worldgen/biome/mountain_biomes.json @@ -0,0 +1,12 @@ +{ + "replace": false, + "values": [ + "windswept_hills", + "windswept_gravelly_hills", + "snowy_slopes", + "frozen_peaks", + "jagged_peaks", + "stony_peaks", + "meadow" + ] +} diff --git a/src/main/resources/data/custom_ore_gen/tags/worldgen/biome/rare_biomes.json b/src/main/resources/data/custom_ore_gen/tags/worldgen/biome/rare_biomes.json new file mode 100644 index 000000000..c7af1999e --- /dev/null +++ b/src/main/resources/data/custom_ore_gen/tags/worldgen/biome/rare_biomes.json @@ -0,0 +1,15 @@ +{ + "replace": false, + "values": [ + "mushroom_fields", + "sparse_jungle", + "savanna_plateau", + "sunflower_plains", + "windswept_gravelly_hills", + "cherry_grove", + "flower_forest", + "deep_dark", + "old_growth_birch_forest", + "ice_spikes" + ] +} \ No newline at end of file diff --git a/src/main/resources/data/custom_ore_gen/tags/worldgen/biome/tempered_biomes.json b/src/main/resources/data/custom_ore_gen/tags/worldgen/biome/tempered_biomes.json new file mode 100644 index 000000000..daac06564 --- /dev/null +++ b/src/main/resources/data/custom_ore_gen/tags/worldgen/biome/tempered_biomes.json @@ -0,0 +1,20 @@ +{ + "replace": false, + "values": [ + "birch_forest", + "dark_forest", + "flower_forest", + "forest", + "old_growth_birch_forest", + "windswept_forest", + "swamp", + "mushroom_fields", + "cherry_grove", + "old_growth_pine_taiga", + "windswept_gravelly_hills", + "deep_ocean", + "ocean", + "lush_caves", + "deep_dark" + ] +} \ No newline at end of file diff --git a/src/main/resources/data/custom_ore_gen/worldgen/configured_feature/concentratedcoalore.json b/src/main/resources/data/custom_ore_gen/worldgen/configured_feature/concentratedcoalore.json new file mode 100644 index 000000000..800c88bac --- /dev/null +++ b/src/main/resources/data/custom_ore_gen/worldgen/configured_feature/concentratedcoalore.json @@ -0,0 +1,18 @@ +{ + "type": "minecraft:ore", + "config": { + "size": 17, + "discard_chance_on_air_exposure": 0, + "targets": [ + { + "target": { + "predicate_type": "tag_match", + "tag": "forge:stone" + }, + "state": { + "Name": "custom_ore_gen:concentratedcoalore" + } + } + ] + } +} \ No newline at end of file diff --git a/src/main/resources/data/custom_ore_gen/worldgen/configured_feature/concentrateddiamondore.json b/src/main/resources/data/custom_ore_gen/worldgen/configured_feature/concentrateddiamondore.json new file mode 100644 index 000000000..91c45c120 --- /dev/null +++ b/src/main/resources/data/custom_ore_gen/worldgen/configured_feature/concentrateddiamondore.json @@ -0,0 +1,18 @@ +{ + "type": "minecraft:ore", + "config": { + "size": 9, + "discard_chance_on_air_exposure": 0, + "targets": [ + { + "target": { + "predicate_type": "tag_match", + "tag": "forge:stone" + }, + "state": { + "Name": "custom_ore_gen:concentrateddiamondore" + } + } + ] + } +} \ No newline at end of file diff --git a/src/main/resources/data/custom_ore_gen/worldgen/configured_feature/copperhighore.json b/src/main/resources/data/custom_ore_gen/worldgen/configured_feature/copperhighore.json new file mode 100644 index 000000000..c5ca50def --- /dev/null +++ b/src/main/resources/data/custom_ore_gen/worldgen/configured_feature/copperhighore.json @@ -0,0 +1,18 @@ +{ + "type": "minecraft:ore", + "config": { + "size": 16, + "discard_chance_on_air_exposure": 0, + "targets": [ + { + "target": { + "predicate_type": "tag_match", + "tag": "forge:stone" + }, + "state": { + "Name": "custom_ore_gen:copperhighore" + } + } + ] + } +} \ No newline at end of file diff --git a/src/main/resources/data/custom_ore_gen/worldgen/configured_feature/copperlowerore.json b/src/main/resources/data/custom_ore_gen/worldgen/configured_feature/copperlowerore.json new file mode 100644 index 000000000..b5c3c02c5 --- /dev/null +++ b/src/main/resources/data/custom_ore_gen/worldgen/configured_feature/copperlowerore.json @@ -0,0 +1,18 @@ +{ + "type": "minecraft:ore", + "config": { + "size": 9, + "discard_chance_on_air_exposure": 0, + "targets": [ + { + "target": { + "predicate_type": "tag_match", + "tag": "forge:stone" + }, + "state": { + "Name": "custom_ore_gen:copperlowerore" + } + } + ] + } +} \ No newline at end of file diff --git a/src/main/resources/data/custom_ore_gen/worldgen/configured_feature/deepslateironore.json b/src/main/resources/data/custom_ore_gen/worldgen/configured_feature/deepslateironore.json new file mode 100644 index 000000000..ff64b6583 --- /dev/null +++ b/src/main/resources/data/custom_ore_gen/worldgen/configured_feature/deepslateironore.json @@ -0,0 +1,18 @@ +{ + "type": "minecraft:ore", + "config": { + "size": 9, + "discard_chance_on_air_exposure": 0, + "targets": [ + { + "target": { + "predicate_type": "tag_match", + "tag": "forge:stone" + }, + "state": { + "Name": "custom_ore_gen:deepslateironore" + } + } + ] + } +} \ No newline at end of file diff --git a/src/main/resources/data/custom_ore_gen/worldgen/configured_feature/deepslatelapisore.json b/src/main/resources/data/custom_ore_gen/worldgen/configured_feature/deepslatelapisore.json new file mode 100644 index 000000000..0d7123ed8 --- /dev/null +++ b/src/main/resources/data/custom_ore_gen/worldgen/configured_feature/deepslatelapisore.json @@ -0,0 +1,18 @@ +{ + "type": "minecraft:ore", + "config": { + "size": 8, + "discard_chance_on_air_exposure": 0, + "targets": [ + { + "target": { + "predicate_type": "tag_match", + "tag": "forge:stone" + }, + "state": { + "Name": "custom_ore_gen:deepslatelapisore" + } + } + ] + } +} \ No newline at end of file diff --git a/src/main/resources/data/custom_ore_gen/worldgen/configured_feature/deepslatepuregoldenore.json b/src/main/resources/data/custom_ore_gen/worldgen/configured_feature/deepslatepuregoldenore.json new file mode 100644 index 000000000..d145694c3 --- /dev/null +++ b/src/main/resources/data/custom_ore_gen/worldgen/configured_feature/deepslatepuregoldenore.json @@ -0,0 +1,18 @@ +{ + "type": "minecraft:ore", + "config": { + "size": 9, + "discard_chance_on_air_exposure": 0, + "targets": [ + { + "target": { + "predicate_type": "tag_match", + "tag": "forge:stone" + }, + "state": { + "Name": "custom_ore_gen:deepslatepuregoldenore" + } + } + ] + } +} \ No newline at end of file diff --git a/src/main/resources/data/custom_ore_gen/worldgen/configured_feature/deepslateredstoneore.json b/src/main/resources/data/custom_ore_gen/worldgen/configured_feature/deepslateredstoneore.json new file mode 100644 index 000000000..a67d9507b --- /dev/null +++ b/src/main/resources/data/custom_ore_gen/worldgen/configured_feature/deepslateredstoneore.json @@ -0,0 +1,18 @@ +{ + "type": "minecraft:ore", + "config": { + "size": 8, + "discard_chance_on_air_exposure": 0, + "targets": [ + { + "target": { + "predicate_type": "tag_match", + "tag": "forge:stone" + }, + "state": { + "Name": "custom_ore_gen:deepslateredstoneore" + } + } + ] + } +} \ No newline at end of file diff --git a/src/main/resources/data/custom_ore_gen/worldgen/configured_feature/deepslatesharddiamondore.json b/src/main/resources/data/custom_ore_gen/worldgen/configured_feature/deepslatesharddiamondore.json new file mode 100644 index 000000000..007b65016 --- /dev/null +++ b/src/main/resources/data/custom_ore_gen/worldgen/configured_feature/deepslatesharddiamondore.json @@ -0,0 +1,18 @@ +{ + "type": "minecraft:ore", + "config": { + "size": 16, + "discard_chance_on_air_exposure": 0, + "targets": [ + { + "target": { + "predicate_type": "tag_match", + "tag": "forge:stone" + }, + "state": { + "Name": "custom_ore_gen:deepslatesharddiamondore" + } + } + ] + } +} \ No newline at end of file diff --git a/src/main/resources/data/custom_ore_gen/worldgen/configured_feature/highemeraldore.json b/src/main/resources/data/custom_ore_gen/worldgen/configured_feature/highemeraldore.json new file mode 100644 index 000000000..c965ba487 --- /dev/null +++ b/src/main/resources/data/custom_ore_gen/worldgen/configured_feature/highemeraldore.json @@ -0,0 +1,18 @@ +{ + "type": "minecraft:ore", + "config": { + "size": 7, + "discard_chance_on_air_exposure": 0, + "targets": [ + { + "target": { + "predicate_type": "tag_match", + "tag": "forge:stone" + }, + "state": { + "Name": "custom_ore_gen:highemeraldore" + } + } + ] + } +} \ No newline at end of file diff --git a/src/main/resources/data/custom_ore_gen/worldgen/configured_feature/ironore.json b/src/main/resources/data/custom_ore_gen/worldgen/configured_feature/ironore.json new file mode 100644 index 000000000..3a644106c --- /dev/null +++ b/src/main/resources/data/custom_ore_gen/worldgen/configured_feature/ironore.json @@ -0,0 +1,18 @@ +{ + "type": "minecraft:ore", + "config": { + "size": 9, + "discard_chance_on_air_exposure": 0, + "targets": [ + { + "target": { + "predicate_type": "tag_match", + "tag": "forge:stone" + }, + "state": { + "Name": "custom_ore_gen:ironore" + } + } + ] + } +} \ No newline at end of file diff --git a/src/main/resources/data/custom_ore_gen/worldgen/configured_feature/lapisore.json b/src/main/resources/data/custom_ore_gen/worldgen/configured_feature/lapisore.json new file mode 100644 index 000000000..2a2f2a34c --- /dev/null +++ b/src/main/resources/data/custom_ore_gen/worldgen/configured_feature/lapisore.json @@ -0,0 +1,18 @@ +{ + "type": "minecraft:ore", + "config": { + "size": 8, + "discard_chance_on_air_exposure": 0, + "targets": [ + { + "target": { + "predicate_type": "tag_match", + "tag": "forge:stone" + }, + "state": { + "Name": "custom_ore_gen:lapisore" + } + } + ] + } +} \ No newline at end of file diff --git a/src/main/resources/data/custom_ore_gen/worldgen/configured_feature/loweremeraldore.json b/src/main/resources/data/custom_ore_gen/worldgen/configured_feature/loweremeraldore.json new file mode 100644 index 000000000..8c77c6f41 --- /dev/null +++ b/src/main/resources/data/custom_ore_gen/worldgen/configured_feature/loweremeraldore.json @@ -0,0 +1,18 @@ +{ + "type": "minecraft:ore", + "config": { + "size": 7, + "discard_chance_on_air_exposure": 0, + "targets": [ + { + "target": { + "predicate_type": "tag_match", + "tag": "forge:stone" + }, + "state": { + "Name": "custom_ore_gen:loweremeraldore" + } + } + ] + } +} \ No newline at end of file diff --git a/src/main/resources/data/custom_ore_gen/worldgen/configured_feature/puregoldenore.json b/src/main/resources/data/custom_ore_gen/worldgen/configured_feature/puregoldenore.json new file mode 100644 index 000000000..3776f7c99 --- /dev/null +++ b/src/main/resources/data/custom_ore_gen/worldgen/configured_feature/puregoldenore.json @@ -0,0 +1,18 @@ +{ + "type": "minecraft:ore", + "config": { + "size": 9, + "discard_chance_on_air_exposure": 0, + "targets": [ + { + "target": { + "predicate_type": "tag_match", + "tag": "forge:stone" + }, + "state": { + "Name": "custom_ore_gen:puregoldenore" + } + } + ] + } +} \ No newline at end of file diff --git a/src/main/resources/data/custom_ore_gen/worldgen/configured_feature/redstoneore.json b/src/main/resources/data/custom_ore_gen/worldgen/configured_feature/redstoneore.json new file mode 100644 index 000000000..64dff4c18 --- /dev/null +++ b/src/main/resources/data/custom_ore_gen/worldgen/configured_feature/redstoneore.json @@ -0,0 +1,18 @@ +{ + "type": "minecraft:ore", + "config": { + "size": 8, + "discard_chance_on_air_exposure": 0, + "targets": [ + { + "target": { + "predicate_type": "tag_match", + "tag": "forge:stone" + }, + "state": { + "Name": "custom_ore_gen:redstoneore" + } + } + ] + } +} \ No newline at end of file diff --git a/src/main/resources/data/custom_ore_gen/worldgen/configured_feature/sharddiamondblockore.json b/src/main/resources/data/custom_ore_gen/worldgen/configured_feature/sharddiamondblockore.json new file mode 100644 index 000000000..4a670d5b0 --- /dev/null +++ b/src/main/resources/data/custom_ore_gen/worldgen/configured_feature/sharddiamondblockore.json @@ -0,0 +1,18 @@ +{ + "type": "minecraft:ore", + "config": { + "size": 8, + "discard_chance_on_air_exposure": 0, + "targets": [ + { + "target": { + "predicate_type": "tag_match", + "tag": "forge:stone" + }, + "state": { + "Name": "custom_ore_gen:sharddiamondblockore" + } + } + ] + } +} \ No newline at end of file diff --git a/src/main/resources/data/custom_ore_gen/worldgen/placed_feature/concentratedcoalore.json b/src/main/resources/data/custom_ore_gen/worldgen/placed_feature/concentratedcoalore.json new file mode 100644 index 000000000..cb7d32269 --- /dev/null +++ b/src/main/resources/data/custom_ore_gen/worldgen/placed_feature/concentratedcoalore.json @@ -0,0 +1,27 @@ +{ + "feature": "custom_ore_gen:concentratedcoalore", + "placement": [ + { + "type": "minecraft:count", + "count": 10 + }, + { + "type": "minecraft:in_square" + }, + { + "type": "minecraft:height_range", + "height": { + "type": "minecraft:uniform", + "min_inclusive": { + "absolute": 0 + }, + "max_inclusive": { + "absolute": 70 + } + } + }, + { + "type": "minecraft:biome" + } + ] +} \ No newline at end of file diff --git a/src/main/resources/data/custom_ore_gen/worldgen/placed_feature/concentrateddiamondore.json b/src/main/resources/data/custom_ore_gen/worldgen/placed_feature/concentrateddiamondore.json new file mode 100644 index 000000000..50611b8c5 --- /dev/null +++ b/src/main/resources/data/custom_ore_gen/worldgen/placed_feature/concentrateddiamondore.json @@ -0,0 +1,27 @@ +{ + "feature": "custom_ore_gen:concentrateddiamondore", + "placement": [ + { + "type": "minecraft:count", + "count": 1 + }, + { + "type": "minecraft:in_square" + }, + { + "type": "minecraft:height_range", + "height": { + "type": "minecraft:trapezoid", + "min_inclusive": { + "absolute": -90 + }, + "max_inclusive": { + "absolute": 0 + } + } + }, + { + "type": "minecraft:biome" + } + ] +} \ No newline at end of file diff --git a/src/main/resources/data/custom_ore_gen/worldgen/placed_feature/copperhighore.json b/src/main/resources/data/custom_ore_gen/worldgen/placed_feature/copperhighore.json new file mode 100644 index 000000000..ce6d5ced3 --- /dev/null +++ b/src/main/resources/data/custom_ore_gen/worldgen/placed_feature/copperhighore.json @@ -0,0 +1,27 @@ +{ + "feature": "custom_ore_gen:copperhighore", + "placement": [ + { + "type": "minecraft:count", + "count": 20 + }, + { + "type": "minecraft:in_square" + }, + { + "type": "minecraft:height_range", + "height": { + "type": "minecraft:uniform", + "min_inclusive": { + "absolute": 15 + }, + "max_inclusive": { + "absolute": 256 + } + } + }, + { + "type": "minecraft:biome" + } + ] +} \ No newline at end of file diff --git a/src/main/resources/data/custom_ore_gen/worldgen/placed_feature/copperlowerore.json b/src/main/resources/data/custom_ore_gen/worldgen/placed_feature/copperlowerore.json new file mode 100644 index 000000000..b0789f820 --- /dev/null +++ b/src/main/resources/data/custom_ore_gen/worldgen/placed_feature/copperlowerore.json @@ -0,0 +1,27 @@ +{ + "feature": "custom_ore_gen:copperlowerore", + "placement": [ + { + "type": "minecraft:count", + "count": 20 + }, + { + "type": "minecraft:in_square" + }, + { + "type": "minecraft:height_range", + "height": { + "type": "minecraft:uniform", + "min_inclusive": { + "absolute": -64 + }, + "max_inclusive": { + "absolute": 0 + } + } + }, + { + "type": "minecraft:biome" + } + ] +} \ No newline at end of file diff --git a/src/main/resources/data/custom_ore_gen/worldgen/placed_feature/deepslateironore.json b/src/main/resources/data/custom_ore_gen/worldgen/placed_feature/deepslateironore.json new file mode 100644 index 000000000..218d6fcbf --- /dev/null +++ b/src/main/resources/data/custom_ore_gen/worldgen/placed_feature/deepslateironore.json @@ -0,0 +1,27 @@ +{ + "feature": "custom_ore_gen:deepslateironore", + "placement": [ + { + "type": "minecraft:count", + "count": 20 + }, + { + "type": "minecraft:in_square" + }, + { + "type": "minecraft:height_range", + "height": { + "type": "minecraft:uniform", + "min_inclusive": { + "absolute": -64 + }, + "max_inclusive": { + "absolute": 0 + } + } + }, + { + "type": "minecraft:biome" + } + ] +} \ No newline at end of file diff --git a/src/main/resources/data/custom_ore_gen/worldgen/placed_feature/deepslatelapisore.json b/src/main/resources/data/custom_ore_gen/worldgen/placed_feature/deepslatelapisore.json new file mode 100644 index 000000000..34fa4284d --- /dev/null +++ b/src/main/resources/data/custom_ore_gen/worldgen/placed_feature/deepslatelapisore.json @@ -0,0 +1,27 @@ +{ + "feature": "custom_ore_gen:deepslatelapisore", + "placement": [ + { + "type": "minecraft:count", + "count": 10 + }, + { + "type": "minecraft:in_square" + }, + { + "type": "minecraft:height_range", + "height": { + "type": "minecraft:uniform", + "min_inclusive": { + "absolute": -20 + }, + "max_inclusive": { + "absolute": 10 + } + } + }, + { + "type": "minecraft:biome" + } + ] +} \ No newline at end of file diff --git a/src/main/resources/data/custom_ore_gen/worldgen/placed_feature/deepslatepuregoldenore.json b/src/main/resources/data/custom_ore_gen/worldgen/placed_feature/deepslatepuregoldenore.json new file mode 100644 index 000000000..c8e8c9223 --- /dev/null +++ b/src/main/resources/data/custom_ore_gen/worldgen/placed_feature/deepslatepuregoldenore.json @@ -0,0 +1,27 @@ +{ + "feature": "custom_ore_gen:deepslatepuregoldenore", + "placement": [ + { + "type": "minecraft:count", + "count": 4 + }, + { + "type": "minecraft:in_square" + }, + { + "type": "minecraft:height_range", + "height": { + "type": "minecraft:trapezoid", + "min_inclusive": { + "absolute": -64 + }, + "max_inclusive": { + "absolute": 0 + } + } + }, + { + "type": "minecraft:biome" + } + ] +} \ No newline at end of file diff --git a/src/main/resources/data/custom_ore_gen/worldgen/placed_feature/deepslateredstoneore.json b/src/main/resources/data/custom_ore_gen/worldgen/placed_feature/deepslateredstoneore.json new file mode 100644 index 000000000..7f46fa33a --- /dev/null +++ b/src/main/resources/data/custom_ore_gen/worldgen/placed_feature/deepslateredstoneore.json @@ -0,0 +1,27 @@ +{ + "feature": "custom_ore_gen:deepslateredstoneore", + "placement": [ + { + "type": "minecraft:count", + "count": 10 + }, + { + "type": "minecraft:in_square" + }, + { + "type": "minecraft:height_range", + "height": { + "type": "minecraft:trapezoid", + "min_inclusive": { + "absolute": -80 + }, + "max_inclusive": { + "absolute": -30 + } + } + }, + { + "type": "minecraft:biome" + } + ] +} \ No newline at end of file diff --git a/src/main/resources/data/custom_ore_gen/worldgen/placed_feature/deepslatesharddiamondore.json b/src/main/resources/data/custom_ore_gen/worldgen/placed_feature/deepslatesharddiamondore.json new file mode 100644 index 000000000..5c537c223 --- /dev/null +++ b/src/main/resources/data/custom_ore_gen/worldgen/placed_feature/deepslatesharddiamondore.json @@ -0,0 +1,27 @@ +{ + "feature": "custom_ore_gen:deepslatesharddiamondore", + "placement": [ + { + "type": "minecraft:count", + "count": 1 + }, + { + "type": "minecraft:in_square" + }, + { + "type": "minecraft:height_range", + "height": { + "type": "minecraft:trapezoid", + "min_inclusive": { + "absolute": -70 + }, + "max_inclusive": { + "absolute": -35 + } + } + }, + { + "type": "minecraft:biome" + } + ] +} \ No newline at end of file diff --git a/src/main/resources/data/custom_ore_gen/worldgen/placed_feature/highemeraldore.json b/src/main/resources/data/custom_ore_gen/worldgen/placed_feature/highemeraldore.json new file mode 100644 index 000000000..befedd2c1 --- /dev/null +++ b/src/main/resources/data/custom_ore_gen/worldgen/placed_feature/highemeraldore.json @@ -0,0 +1,27 @@ +{ + "feature": "custom_ore_gen:highemeraldore", + "placement": [ + { + "type": "minecraft:count", + "count": 4 + }, + { + "type": "minecraft:in_square" + }, + { + "type": "minecraft:height_range", + "height": { + "type": "minecraft:uniform", + "min_inclusive": { + "absolute": 0 + }, + "max_inclusive": { + "absolute": 64 + } + } + }, + { + "type": "minecraft:biome" + } + ] +} \ No newline at end of file diff --git a/src/main/resources/data/custom_ore_gen/worldgen/placed_feature/ironore.json b/src/main/resources/data/custom_ore_gen/worldgen/placed_feature/ironore.json new file mode 100644 index 000000000..f6e9a1ab0 --- /dev/null +++ b/src/main/resources/data/custom_ore_gen/worldgen/placed_feature/ironore.json @@ -0,0 +1,27 @@ +{ + "feature": "custom_ore_gen:ironore", + "placement": [ + { + "type": "minecraft:count", + "count": 20 + }, + { + "type": "minecraft:in_square" + }, + { + "type": "minecraft:height_range", + "height": { + "type": "minecraft:uniform", + "min_inclusive": { + "absolute": 0 + }, + "max_inclusive": { + "absolute": 100 + } + } + }, + { + "type": "minecraft:biome" + } + ] +} \ No newline at end of file diff --git a/src/main/resources/data/custom_ore_gen/worldgen/placed_feature/lapisore.json b/src/main/resources/data/custom_ore_gen/worldgen/placed_feature/lapisore.json new file mode 100644 index 000000000..c3ddf1ac8 --- /dev/null +++ b/src/main/resources/data/custom_ore_gen/worldgen/placed_feature/lapisore.json @@ -0,0 +1,27 @@ +{ + "feature": "custom_ore_gen:lapisore", + "placement": [ + { + "type": "minecraft:count", + "count": 1 + }, + { + "type": "minecraft:in_square" + }, + { + "type": "minecraft:height_range", + "height": { + "type": "minecraft:trapezoid", + "min_inclusive": { + "absolute": -10 + }, + "max_inclusive": { + "absolute": 20 + } + } + }, + { + "type": "minecraft:biome" + } + ] +} \ No newline at end of file diff --git a/src/main/resources/data/custom_ore_gen/worldgen/placed_feature/loweremeraldore.json b/src/main/resources/data/custom_ore_gen/worldgen/placed_feature/loweremeraldore.json new file mode 100644 index 000000000..0732557df --- /dev/null +++ b/src/main/resources/data/custom_ore_gen/worldgen/placed_feature/loweremeraldore.json @@ -0,0 +1,27 @@ +{ + "feature": "custom_ore_gen:loweremeraldore", + "placement": [ + { + "type": "minecraft:count", + "count": 1 + }, + { + "type": "minecraft:in_square" + }, + { + "type": "minecraft:height_range", + "height": { + "type": "minecraft:trapezoid", + "min_inclusive": { + "absolute": -64 + }, + "max_inclusive": { + "absolute": 0 + } + } + }, + { + "type": "minecraft:biome" + } + ] +} \ No newline at end of file diff --git a/src/main/resources/data/custom_ore_gen/worldgen/placed_feature/puregoldenore.json b/src/main/resources/data/custom_ore_gen/worldgen/placed_feature/puregoldenore.json new file mode 100644 index 000000000..2f083af4b --- /dev/null +++ b/src/main/resources/data/custom_ore_gen/worldgen/placed_feature/puregoldenore.json @@ -0,0 +1,27 @@ +{ + "feature": "custom_ore_gen:puregoldenore", + "placement": [ + { + "type": "minecraft:count", + "count": 4 + }, + { + "type": "minecraft:in_square" + }, + { + "type": "minecraft:height_range", + "height": { + "type": "minecraft:uniform", + "min_inclusive": { + "absolute": 0 + }, + "max_inclusive": { + "absolute": 256 + } + } + }, + { + "type": "minecraft:biome" + } + ] +} \ No newline at end of file diff --git a/src/main/resources/data/custom_ore_gen/worldgen/placed_feature/redstoneore.json b/src/main/resources/data/custom_ore_gen/worldgen/placed_feature/redstoneore.json new file mode 100644 index 000000000..42c87ea75 --- /dev/null +++ b/src/main/resources/data/custom_ore_gen/worldgen/placed_feature/redstoneore.json @@ -0,0 +1,27 @@ +{ + "feature": "custom_ore_gen:redstoneore", + "placement": [ + { + "type": "minecraft:count", + "count": 8 + }, + { + "type": "minecraft:in_square" + }, + { + "type": "minecraft:height_range", + "height": { + "type": "minecraft:trapezoid", + "min_inclusive": { + "absolute": -10 + }, + "max_inclusive": { + "absolute": 20 + } + } + }, + { + "type": "minecraft:biome" + } + ] +} \ No newline at end of file diff --git a/src/main/resources/data/custom_ore_gen/worldgen/placed_feature/sharddiamondblockore.json b/src/main/resources/data/custom_ore_gen/worldgen/placed_feature/sharddiamondblockore.json new file mode 100644 index 000000000..618d2be6c --- /dev/null +++ b/src/main/resources/data/custom_ore_gen/worldgen/placed_feature/sharddiamondblockore.json @@ -0,0 +1,27 @@ +{ + "feature": "custom_ore_gen:sharddiamondblockore", + "placement": [ + { + "type": "minecraft:count", + "count": 1 + }, + { + "type": "minecraft:in_square" + }, + { + "type": "minecraft:height_range", + "height": { + "type": "minecraft:uniform", + "min_inclusive": { + "absolute": 0 + }, + "max_inclusive": { + "absolute": 15 + } + } + }, + { + "type": "minecraft:biome" + } + ] +} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/blocks/dirt.json b/src/main/resources/data/minecraft/tags/blocks/dirt.json new file mode 100644 index 000000000..5e8aecc98 --- /dev/null +++ b/src/main/resources/data/minecraft/tags/blocks/dirt.json @@ -0,0 +1,4 @@ +{ + "replace": false, + "values": [] +} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/blocks/logs.json b/src/main/resources/data/minecraft/tags/blocks/logs.json new file mode 100644 index 000000000..5e8aecc98 --- /dev/null +++ b/src/main/resources/data/minecraft/tags/blocks/logs.json @@ -0,0 +1,4 @@ +{ + "replace": false, + "values": [] +} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/blocks/mineable/pickaxe.json b/src/main/resources/data/minecraft/tags/blocks/mineable/pickaxe.json new file mode 100644 index 000000000..deba1de26 --- /dev/null +++ b/src/main/resources/data/minecraft/tags/blocks/mineable/pickaxe.json @@ -0,0 +1,21 @@ +{ + "replace": false, + "values": [ + "custom_ore_gen:deepslateironore", + "custom_ore_gen:ironore", + "custom_ore_gen:loweremeraldore", + "custom_ore_gen:highemeraldore", + "custom_ore_gen:copperlowerore", + "custom_ore_gen:copperhighore", + "custom_ore_gen:deepslateredstoneore", + "custom_ore_gen:redstoneore", + "custom_ore_gen:deepslatelapisore", + "custom_ore_gen:lapisore", + "custom_ore_gen:concentrateddiamondore", + "custom_ore_gen:deepslatesharddiamondore", + "custom_ore_gen:concentratedcoalore", + "custom_ore_gen:deepslatepuregoldenore", + "custom_ore_gen:puregoldenore", + "custom_ore_gen:sharddiamondblockore" + ] +} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/blocks/needs_iron_tool.json b/src/main/resources/data/minecraft/tags/blocks/needs_iron_tool.json new file mode 100644 index 000000000..c9d74b86b --- /dev/null +++ b/src/main/resources/data/minecraft/tags/blocks/needs_iron_tool.json @@ -0,0 +1,14 @@ +{ + "replace": false, + "values": [ + "custom_ore_gen:loweremeraldore", + "custom_ore_gen:highemeraldore", + "custom_ore_gen:copperhighore", + "custom_ore_gen:deepslateredstoneore", + "custom_ore_gen:redstoneore", + "custom_ore_gen:concentrateddiamondore", + "custom_ore_gen:deepslatesharddiamondore", + "custom_ore_gen:deepslatepuregoldenore", + "custom_ore_gen:sharddiamondblockore" + ] +} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/blocks/needs_stone_tool.json b/src/main/resources/data/minecraft/tags/blocks/needs_stone_tool.json new file mode 100644 index 000000000..088bf9e0a --- /dev/null +++ b/src/main/resources/data/minecraft/tags/blocks/needs_stone_tool.json @@ -0,0 +1,10 @@ +{ + "replace": false, + "values": [ + "custom_ore_gen:deepslateironore", + "custom_ore_gen:ironore", + "custom_ore_gen:copperlowerore", + "custom_ore_gen:deepslatelapisore", + "custom_ore_gen:lapisore" + ] +} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/items/axes.json b/src/main/resources/data/minecraft/tags/items/axes.json new file mode 100644 index 000000000..da3aa6ced --- /dev/null +++ b/src/main/resources/data/minecraft/tags/items/axes.json @@ -0,0 +1,6 @@ +{ + "replace": false, + "values": [ + "custom_ore_gen:sharddiamondaxe" + ] +} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/items/pickaxes.json b/src/main/resources/data/minecraft/tags/items/pickaxes.json new file mode 100644 index 000000000..84737de46 --- /dev/null +++ b/src/main/resources/data/minecraft/tags/items/pickaxes.json @@ -0,0 +1,6 @@ +{ + "replace": false, + "values": [ + "custom_ore_gen:sharddiamondpickaxe" + ] +} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/items/shovels.json b/src/main/resources/data/minecraft/tags/items/shovels.json new file mode 100644 index 000000000..777105900 --- /dev/null +++ b/src/main/resources/data/minecraft/tags/items/shovels.json @@ -0,0 +1,6 @@ +{ + "replace": false, + "values": [ + "custom_ore_gen:sharddiamondshovel" + ] +} \ No newline at end of file diff --git a/src/main/resources/pack.mcmeta b/src/main/resources/pack.mcmeta new file mode 100644 index 000000000..87731c929 --- /dev/null +++ b/src/main/resources/pack.mcmeta @@ -0,0 +1,6 @@ +{ + "pack": { + "pack_format": 15, + "description": "Changement de la distribution des ressources sur Minecraft, ne pas utilisĂ© seul sans KubeJS" + } +} \ No newline at end of file